diff --git a/app/[locale]/auth/login/page.tsx b/app/[locale]/auth/login/page.tsx new file mode 100644 index 0000000..f39d7f3 --- /dev/null +++ b/app/[locale]/auth/login/page.tsx @@ -0,0 +1,133 @@ +'use client' + +import { useState } from 'react' +import { useRouter } from 'next/navigation' +import { useTranslations, useLocale } from 'next-intl' +import { + Container, + Paper, + Box, + Typography, + Tabs, + Tab, + Link, + Card, + CardContent, + Divider +} from '@mui/material' +import { + MenuBook, + Login as LoginIcon, + PersonAdd +} from '@mui/icons-material' +import { LoginForm } from '@/components/auth/login-form' +import { RegisterForm } from '@/components/auth/register-form' + +export default function AuthPage() { + const [activeTab, setActiveTab] = useState(0) + const router = useRouter() + const locale = useLocale() + const t = useTranslations('auth') + + const handleAuthSuccess = () => { + router.push(`/${locale}`) + } + + const handleTabChange = (event: React.SyntheticEvent, newValue: number) => { + setActiveTab(newValue) + } + + const getSubtitle = () => { + if (locale === 'en') { + return activeTab === 0 + ? 'Sign in to continue exploring Scripture' + : 'Create an account to begin your spiritual journey' + } + return activeTab === 0 + ? 'Conectează-te pentru a continua explorarea Scripturii' + : 'Creează un cont pentru a începe călătoria ta spirituală' + } + + return ( + + + + {/* Header */} + + + + + + {activeTab === 0 ? t('welcomeBack') : t('joinUs')} + + + {getSubtitle()} + + + + + + {/* Tabs */} + + } + iconPosition="start" + label={t('login')} + /> + } + iconPosition="start" + label={t('register')} + /> + + + {/* Forms */} + + {activeTab === 0 ? ( + + ) : ( + + )} + + + + + {/* Switch Form Link */} + + + {activeTab === 0 ? t('noAccount') : t('alreadyHaveAccount')}{' '} + setActiveTab(activeTab === 0 ? 1 : 0)} + sx={{ + textDecoration: 'none', + fontWeight: 600, + '&:hover': { + textDecoration: 'underline' + } + }} + > + {activeTab === 0 ? t('createAccount') : t('login')} + + + + + + + ) +} \ No newline at end of file diff --git a/app/[locale]/layout.tsx b/app/[locale]/layout.tsx index 5ce12fa..8725918 100644 --- a/app/[locale]/layout.tsx +++ b/app/[locale]/layout.tsx @@ -4,6 +4,7 @@ import { NextIntlClientProvider } from 'next-intl' import { getMessages } from 'next-intl/server' import { notFound } from 'next/navigation' import { MuiThemeProvider } from '@/components/providers/theme-provider' +import { AuthProvider } from '@/components/auth/auth-provider' import { Navigation } from '@/components/layout/navigation' import FloatingChat from '@/components/chat/floating-chat' import { merriweather, lato } from '@/lib/fonts' @@ -45,9 +46,11 @@ export default async function LocaleLayout({ - - {children} - + + + {children} + + diff --git a/app/[locale]/login/page.tsx b/app/[locale]/login/page.tsx new file mode 100644 index 0000000..342671c --- /dev/null +++ b/app/[locale]/login/page.tsx @@ -0,0 +1,32 @@ +'use client' + +import { useEffect } from 'react' +import { useRouter } from 'next/navigation' +import { useLocale } from 'next-intl' +import { Box, CircularProgress, Typography } from '@mui/material' + +export default function LoginRedirectPage() { + const router = useRouter() + const locale = useLocale() + + useEffect(() => { + // Redirect to the actual login page + router.replace(`/${locale}/auth/login`) + }, [router, locale]) + + return ( + + + + Redirecting to login... + + + ) +} \ No newline at end of file diff --git a/app/[locale]/profile/page.tsx b/app/[locale]/profile/page.tsx new file mode 100644 index 0000000..b3e7b5e --- /dev/null +++ b/app/[locale]/profile/page.tsx @@ -0,0 +1,220 @@ +'use client' + +import { useState } from 'react' +import { useTranslations } from 'next-intl' +import { useAuth } from '@/hooks/use-auth' +import { ProtectedRoute } from '@/components/auth/protected-route' +import { + Container, + Paper, + Box, + Typography, + TextField, + Button, + Avatar, + Grid, + Card, + CardContent, + Divider, + Alert, + CircularProgress +} from '@mui/material' +import { + Person, + Email, + AdminPanelSettings, + Save, + Edit +} from '@mui/icons-material' + +export default function ProfilePage() { + const { user } = useAuth() + const t = useTranslations('profile') + const [isEditing, setIsEditing] = useState(false) + const [name, setName] = useState(user?.name || '') + const [loading, setLoading] = useState(false) + const [message, setMessage] = useState('') + + const handleSave = async () => { + setLoading(true) + setMessage('') + + try { + // TODO: Implement profile update API + await new Promise(resolve => setTimeout(resolve, 1000)) // Placeholder + setMessage(t('profileUpdated')) + setIsEditing(false) + } catch (error) { + setMessage(t('updateError')) + } finally { + setLoading(false) + } + } + + const handleCancel = () => { + setName(user?.name || '') + setIsEditing(false) + } + + const getRoleTranslation = (role: string) => { + switch (role) { + case 'admin': + return t('admin') + case 'moderator': + return t('moderator') + default: + return t('user') + } + } + + return ( + + + + {/* Header */} + + + {user?.name ? user.name.charAt(0).toUpperCase() : } + + + {t('title')} + + + {t('subtitle')} + + + + + + {/* Profile Information */} + + {/* Personal Information Card */} + + + + + + {t('personalInfo')} + + {!isEditing && ( + + )} + + + + setName(e.target.value)} + disabled={!isEditing || loading} + variant="outlined" + margin="normal" + InputProps={{ + startAdornment: + }} + /> + + + + + }} + helperText={t('emailCannotChange')} + /> + + + {isEditing && ( + + + + + )} + + + + + {/* Account Details Card */} + + + + + {t('accountDetails')} + + + + + + + {t('role')} + + + {getRoleTranslation(user?.role || 'user')} + + + + + + + {t('memberSince')} + + + {new Date().toLocaleDateString()} {/* TODO: Use actual creation date */} + + + + + + + + {/* Success/Error Message */} + {message && ( + setMessage('')} + > + {message} + + )} + + + + ) +} \ No newline at end of file diff --git a/app/[locale]/settings/page.tsx b/app/[locale]/settings/page.tsx new file mode 100644 index 0000000..6cf42e5 --- /dev/null +++ b/app/[locale]/settings/page.tsx @@ -0,0 +1,230 @@ +'use client' + +import { useState } from 'react' +import { useTranslations, useLocale } from 'next-intl' +import { useAuth } from '@/hooks/use-auth' +import { ProtectedRoute } from '@/components/auth/protected-route' +import { + Container, + Paper, + Box, + Typography, + Switch, + FormControlLabel, + Select, + MenuItem, + FormControl, + InputLabel, + Grid, + Card, + CardContent, + Divider, + Alert, + Button +} from '@mui/material' +import { + Settings as SettingsIcon, + Palette, + TextFields, + Language, + Notifications, + Security, + Save +} from '@mui/icons-material' + +export default function SettingsPage() { + const { user } = useAuth() + const locale = useLocale() + const t = useTranslations('settings') + const [settings, setSettings] = useState({ + theme: user?.theme || 'light', + fontSize: user?.fontSize || 'medium', + notifications: true, + emailUpdates: false, + language: locale + }) + const [message, setMessage] = useState('') + + const handleSettingChange = (setting: string, value: any) => { + setSettings(prev => ({ + ...prev, + [setting]: value + })) + } + + const handleSave = async () => { + try { + // TODO: Implement settings update API + await new Promise(resolve => setTimeout(resolve, 1000)) // Placeholder + setMessage(t('settingsSaved')) + } catch (error) { + setMessage(t('settingsError')) + } + } + + return ( + + + + {/* Header */} + + + + {t('title')} + + + {t('subtitle')} + + + + + + + {/* Appearance Settings */} + + + + + + + {t('appearance')} + + + + + + {t('theme')} + + + + + + + {t('fontSize')} + + + + + + + + {/* Language & Notifications */} + + + + + + + {t('languageAndNotifications')} + + + + + + {t('language')} + + + + + + handleSettingChange('notifications', e.target.checked)} + /> + } + label={t('notifications')} + /> + + + + handleSettingChange('emailUpdates', e.target.checked)} + /> + } + label={t('emailUpdates')} + /> + + + + + + {/* Security Settings */} + + + + + + + {t('security')} + + + + + {t('passwordSecurity')} + + + + + + + + + {/* Save Button */} + + + + + {/* Success/Error Message */} + {message && ( + setMessage('')} + > + {message} + + )} + + + + ) +} \ No newline at end of file diff --git a/app/api/auth/login/route.ts b/app/api/auth/login/route.ts index bfbcdbd..b9f0d81 100644 --- a/app/api/auth/login/route.ts +++ b/app/api/auth/login/route.ts @@ -1,22 +1,50 @@ import { NextResponse } from 'next/server' import { validateUser, generateToken } from '@/lib/auth' import { prisma } from '@/lib/db' +import { createUserLoginSchema } from '@/lib/validation' export const runtime = 'nodejs' +function getErrorMessages(locale: string = 'ro') { + const messages = { + ro: { + fieldsRequired: 'Email și parola sunt obligatorii', + invalidCredentials: 'Email sau parolă incorectă', + serverError: 'Eroare de server', + invalidInput: 'Date de intrare invalide' + }, + en: { + fieldsRequired: 'Email and password are required', + invalidCredentials: 'Invalid email or password', + serverError: 'Server error', + invalidInput: 'Invalid input data' + } + } + return messages[locale as keyof typeof messages] || messages.ro +} + export async function POST(request: Request) { try { - const { email, password } = await request.json() + const url = new URL(request.url) + const locale = url.searchParams.get('locale') || 'ro' + const messages = getErrorMessages(locale) + + const body = await request.json() + const { email, password } = body // Validation - if (!email || !password) { - return NextResponse.json({ error: 'Email și parola sunt obligatorii' }, { status: 400 }) + const loginSchema = createUserLoginSchema(locale) + const result = loginSchema.safeParse({ email, password }) + + if (!result.success) { + const errors = result.error.errors.map(err => err.message).join(', ') + return NextResponse.json({ error: errors }, { status: 400 }) } // Validate user const user = await validateUser(email, password) if (!user) { - return NextResponse.json({ error: 'Email sau parolă incorectă' }, { status: 401 }) + return NextResponse.json({ error: messages.invalidCredentials }, { status: 401 }) } // Generate token @@ -38,11 +66,14 @@ export async function POST(request: Request) { }) return NextResponse.json({ - user: { id: user.id, email: user.email, name: user.name }, + user: { id: user.id, email: user.email, name: user.name, role: user.role, theme: user.theme, fontSize: user.fontSize }, token }) } catch (error) { console.error('Login error:', error) - return NextResponse.json({ error: 'Eroare de server' }, { status: 500 }) + const url = new URL(request.url) + const locale = url.searchParams.get('locale') || 'ro' + const messages = getErrorMessages(locale) + return NextResponse.json({ error: messages.serverError }, { status: 500 }) } } diff --git a/app/api/auth/logout/route.ts b/app/api/auth/logout/route.ts new file mode 100644 index 0000000..67b8d76 --- /dev/null +++ b/app/api/auth/logout/route.ts @@ -0,0 +1,23 @@ +import { NextResponse } from 'next/server' +import { prisma } from '@/lib/db' + +export const runtime = 'nodejs' + +export async function POST(request: Request) { + try { + const authHeader = request.headers.get('authorization') + const token = authHeader?.replace('Bearer ', '') + + if (token) { + // Remove the session from database + await prisma.session.deleteMany({ + where: { token } + }) + } + + return NextResponse.json({ success: true }) + } catch (error) { + console.error('Logout error:', error) + return NextResponse.json({ error: 'Eroare de server' }, { status: 500 }) + } +} \ No newline at end of file diff --git a/app/api/auth/me/route.ts b/app/api/auth/me/route.ts index 572ac80..507240b 100644 --- a/app/api/auth/me/route.ts +++ b/app/api/auth/me/route.ts @@ -3,23 +3,46 @@ import { getUserFromToken } from '@/lib/auth' export const runtime = 'nodejs' +function getErrorMessages(locale: string = 'ro') { + const messages = { + ro: { + tokenRequired: 'Token de autentificare necesar', + invalidToken: 'Token invalid', + serverError: 'Eroare de server' + }, + en: { + tokenRequired: 'Authentication token required', + invalidToken: 'Invalid token', + serverError: 'Server error' + } + } + return messages[locale as keyof typeof messages] || messages.ro +} + export async function GET(request: Request) { try { + const url = new URL(request.url) + const locale = url.searchParams.get('locale') || 'ro' + const messages = getErrorMessages(locale) + const authHeader = request.headers.get('authorization') const token = authHeader?.replace('Bearer ', '') if (!token) { - return NextResponse.json({ error: 'Token de autentificare necesar' }, { status: 401 }) + return NextResponse.json({ error: messages.tokenRequired }, { status: 401 }) } const user = await getUserFromToken(token) if (!user) { - return NextResponse.json({ error: 'Token invalid' }, { status: 401 }) + return NextResponse.json({ error: messages.invalidToken }, { status: 401 }) } return NextResponse.json({ user }) } catch (error) { console.error('User validation error:', error) - return NextResponse.json({ error: 'Eroare de server' }, { status: 500 }) + const url = new URL(request.url) + const locale = url.searchParams.get('locale') || 'ro' + const messages = getErrorMessages(locale) + return NextResponse.json({ error: messages.serverError }, { status: 500 }) } } diff --git a/app/api/auth/register/route.ts b/app/api/auth/register/route.ts index a1a5bc1..88564ec 100644 --- a/app/api/auth/register/route.ts +++ b/app/api/auth/register/route.ts @@ -1,17 +1,38 @@ import { NextResponse } from 'next/server' import { createUser, generateToken } from '@/lib/auth' import { prisma } from '@/lib/db' -import { userRegistrationSchema } from '@/lib/validation' +import { createUserRegistrationSchema } from '@/lib/validation' import { z } from 'zod' export const runtime = 'nodejs' +function getErrorMessages(locale: string = 'ro') { + const messages = { + ro: { + userExists: 'Utilizatorul există deja', + serverError: 'Eroare de server', + invalidInput: 'Date de intrare invalide' + }, + en: { + userExists: 'User already exists', + serverError: 'Server error', + invalidInput: 'Invalid input data' + } + } + return messages[locale as keyof typeof messages] || messages.ro +} + export async function POST(request: Request) { try { + const url = new URL(request.url) + const locale = url.searchParams.get('locale') || 'ro' + const messages = getErrorMessages(locale) + const body = await request.json() // Validate input - const result = userRegistrationSchema.safeParse(body) + const registrationSchema = createUserRegistrationSchema(locale) + const result = registrationSchema.safeParse(body) if (!result.success) { const errors = result.error.errors.map(err => err.message).join(', ') return NextResponse.json({ error: errors }, { status: 400 }) @@ -22,7 +43,7 @@ export async function POST(request: Request) { // Check if user exists const existing = await prisma.user.findUnique({ where: { email } }) if (existing) { - return NextResponse.json({ error: 'Utilizatorul există deja' }, { status: 409 }) + return NextResponse.json({ error: messages.userExists }, { status: 409 }) } // Create user @@ -39,14 +60,18 @@ export async function POST(request: Request) { }) return NextResponse.json({ - user: { id: user.id, email: user.email, name: user.name }, + user: { id: user.id, email: user.email, name: user.name, role: user.role, theme: user.theme, fontSize: user.fontSize }, token }) } catch (error) { console.error('Registration error:', error) + const url = new URL(request.url) + const locale = url.searchParams.get('locale') || 'ro' + const messages = getErrorMessages(locale) + if (error instanceof z.ZodError) { - return NextResponse.json({ error: 'Date de intrare invalide' }, { status: 400 }) + return NextResponse.json({ error: messages.invalidInput }, { status: 400 }) } - return NextResponse.json({ error: 'Eroare de server' }, { status: 500 }) + return NextResponse.json({ error: messages.serverError }, { status: 500 }) } } diff --git a/app/api/debug/schema/route.ts b/app/api/debug/schema/route.ts new file mode 100644 index 0000000..10102ba --- /dev/null +++ b/app/api/debug/schema/route.ts @@ -0,0 +1,35 @@ +import { NextResponse } from 'next/server' +import { prisma } from '@/lib/db' + +export const runtime = 'nodejs' + +export async function GET() { + try { + // Get table structure for User table + const tableInfo = await prisma.$queryRaw` + SELECT column_name, data_type, is_nullable, column_default + FROM information_schema.columns + WHERE table_name = 'User' AND table_schema = 'public' + ORDER BY ordinal_position; + ` + + // Also try to get one user record to see what fields are actually there + let sampleUser = null + try { + sampleUser = await prisma.$queryRaw`SELECT * FROM "User" LIMIT 1;` + } catch (e) { + sampleUser = { error: 'Could not fetch sample user: ' + e.message } + } + + return NextResponse.json({ + tableStructure: tableInfo, + sampleUser: sampleUser + }) + } catch (error) { + console.error('Schema debug error:', error) + return NextResponse.json({ + error: 'Schema debug failed', + details: error.message + }, { status: 500 }) + } +} \ No newline at end of file diff --git a/app/api/debug/token/route.ts b/app/api/debug/token/route.ts new file mode 100644 index 0000000..13ca661 --- /dev/null +++ b/app/api/debug/token/route.ts @@ -0,0 +1,53 @@ +import { NextResponse } from 'next/server' +import jwt from 'jsonwebtoken' + +export const runtime = 'nodejs' + +export async function POST(request: Request) { + try { + const { token } = await request.json() + + if (!token) { + return NextResponse.json({ error: 'Token required' }, { status: 400 }) + } + + // Log environment info + const hasSecret = !!process.env.JWT_SECRET + const secretPreview = process.env.JWT_SECRET ? process.env.JWT_SECRET.substring(0, 10) + '...' : 'MISSING' + + console.log('Debug: JWT_SECRET exists:', hasSecret) + console.log('Debug: JWT_SECRET preview:', secretPreview) + + // Try to decode without verification first + let decodedWithoutVerification + try { + decodedWithoutVerification = jwt.decode(token, { complete: true }) + console.log('Debug: Token decoded without verification:', !!decodedWithoutVerification) + } catch (e) { + console.log('Debug: Token decode failed:', e.message) + } + + // Try to verify + let verificationResult + try { + verificationResult = jwt.verify(token, process.env.JWT_SECRET!) + console.log('Debug: Token verification successful') + } catch (e) { + console.log('Debug: Token verification failed:', e.message) + verificationResult = { error: e.message } + } + + return NextResponse.json({ + hasSecret, + secretPreview, + decodedWithoutVerification: !!decodedWithoutVerification, + payload: decodedWithoutVerification?.payload, + verificationResult: typeof verificationResult === 'object' && 'error' in verificationResult + ? verificationResult + : { success: true, payload: verificationResult } + }) + } catch (error) { + console.error('Debug endpoint error:', error) + return NextResponse.json({ error: 'Debug failed' }, { status: 500 }) + } +} \ No newline at end of file diff --git a/app/api/debug/user/route.ts b/app/api/debug/user/route.ts new file mode 100644 index 0000000..fe8921f --- /dev/null +++ b/app/api/debug/user/route.ts @@ -0,0 +1,43 @@ +import { NextResponse } from 'next/server' +import { prisma } from '@/lib/db' + +export const runtime = 'nodejs' + +export async function POST(request: Request) { + try { + const { userId } = await request.json() + + if (!userId) { + return NextResponse.json({ error: 'userId required' }, { status: 400 }) + } + + // Use raw query to avoid Prisma client sync issues + const users = await prisma.$queryRaw` + SELECT id, email, name, role, theme, "fontSize", "createdAt", "updatedAt", "lastLoginAt" + FROM "User" + WHERE id = ${userId} + ` + const user = Array.isArray(users) && users.length > 0 ? users[0] : null + + // Also get a count of all users + const userCount = await prisma.user.count() + + // Get all user IDs for comparison + const allUsers = await prisma.user.findMany({ + select: { id: true, email: true, createdAt: true }, + orderBy: { createdAt: 'desc' }, + take: 5 + }) + + return NextResponse.json({ + searchedUserId: userId, + userExists: !!user, + user: user || null, + totalUsers: userCount, + recentUsers: allUsers + }) + } catch (error) { + console.error('User debug error:', error) + return NextResponse.json({ error: 'Debug failed', details: error.message }, { status: 500 }) + } +} \ No newline at end of file diff --git a/bibles/Biblia-Fidela-limba-romana.pdf b/bibles/Biblia-Fidela-limba-romana.pdf deleted file mode 100644 index a71127b..0000000 Binary files a/bibles/Biblia-Fidela-limba-romana.pdf and /dev/null differ diff --git a/bibles/bible-bsb.md b/bibles/bible-bsb.md new file mode 100644 index 0000000..ee7ef75 --- /dev/null +++ b/bibles/bible-bsb.md @@ -0,0 +1,246007 @@ +Holy Bible + +Berean Standard Bible + + The Holy Bible, Berean Standard Bible, BSB +Printed 2016, 2020, 2022, 2025 by Bible Hub + + + Table of Contents + +Genesis ……………………… 5 + +2 Chronicles .……….… 402 + +Daniel ……...…....……….. 793 + +Exodus ……………………. 55 + +Ezra .……………………... 436 + +Hosea ………….……..….. 808 + +Leviticus ………...……….. 96 + +Nehemiah ..…………….. 447 + +Joel ………………..……… 817 + +Numbers ……………….. 124 + +Esther ………..………….. 462 + +Amos ………..……..……. 821 + +Deuteronomy ………… 164 + +Job …..…………………….. 469 + +Obadiah ………..……….. 828 + +Joshua …………………... 198 + +Psalms ...…………………. 497 + +Jonah ………..…...………. 830 + +Judges …………………... 221 + +Proverbs ..………………. 577 + +Micah ………….....……… 832 + +Ruth ………..……………. 245 + +Ecclesiastes ......……….. 603 + +Nahum ……………..……. 838 + +1 Samuel ……………….. 249 + +Song of Solomon .…… 611 + +Habakkuk …………..….. 841 + +2 Samuel ..……………… 280 + +Isaiah ..…………………… 617 + +Zephaniah ……..………. 844 + +1 Kings ..………………… 307 + +Jeremiah ......……………. 677 + +Haggai ………..…………. 847 + +2 Kings .……….………… 339 + +Lamentations …...……. 738 + +Zechariah ………..…….. 849 + +1 Chronicles ..…………. 370 + +Ezekiel …………………... 744 + +Malachi ……..………...… 858 + +Matthew .……….…..….. 861 + +Ephesians …..…..……. 1048 + +Hebrews ..………..…… 1075 + +Mark .………..…….……... 894 + +Philippians ..……..…... 1053 + +James ..……….…….…... 1085 + +Luke .…………….…..…… 915 + +Colossians ……….…… 1057 + +1 Peter ..…………….…. 1089 + +John ………..……….……. 950 + +1 Thessalonians ..…. 1060 + +2 Peter ..…………….…. 1093 + +Acts .……………..….……. 976 + +2 Thessalonians ..…. 1063 + +1 John ..……….…….….. 1096 + +Romans .………….…… 1008 + +1 Timothy .…….….…. 1065 + +2 John ..……….…….….. 1100 + +1 Corinthians .….…… 1022 + +2 Timothy .…….….…. 1069 + +3 John ..……….…….….. 1101 + +2 Corinthians .….…… 1035 + +Titus .…….…………..… 1072 + +Jude …..…….……….….. 1102 + +Galatians ..……….……. 1043 + +Philemon .…….…….... 1074 + +Revelation …..……..… 1103 + + Preface + +Now the Bereans were more noble-minded than the Thessalonians, +for they received the message with great eagerness +and examined the Scriptures every day +to see if these teachings were true. + +– Acts 17:11 + +The Berean Standard Bible (BSB) is a modern English translation of the Holy Bible, effective for +public reading, study, memorization, and evangelism. Based on the best available manuscripts +and sources, each word is connected back to the Greek or Hebrew text to produce a transparent +text that can be studied for its root meanings. + +The BSB represents a single tier of the Berean Bible. This printing contains the full BSB text, +footnotes, section headings, and cross references. Additional components, including translation +tables, lexicons, outlines, and summaries, are free online and in a variety of apps. + +The Berean Bible Translation Committee has employed an open process where translation +tables are freely available and all comments are welcomed and considered. These sources may +also be downloaded and shared freely. Please see the Berean Bible website for a full description +of the translation committee and process. + +We pray that this text will enable readers to connect with God’s Word to study it, memorize it, +After this letter has been read among you, +share it, and proclaim it. We are inspired by the model of the early Christian church: +make sure that it is also read in the church of the Laodiceans, +and that you in turn read the letter from Laodicea. + +– Colossians 4:16 + +The Scriptures belonged to the churches and were meant to be examined, copied, and distrib- +uted. The committee hopes to follow this example by sharing all the resources with which we +have been entrusted. Just as Paul encouraged the churches to pass on his letters, the Berean Bible +is intended to be offered freely in websites, apps, software, and various text and audio formats. +Greek, Hebrew, and Aramaic Sources and Abbreviations + +NA +SBL +ECM +NE +WH +BYZ +GOC +TR + +DSS +MT + +LXX + +SP + +Aland, Novum Testamentum Graece +Nestle +Society of Biblical Literature, Greek New Testament +Editio Critica Maior, Novum Testamentum Graecum +Eberhard Nestle Novum Testamentum Graece + + Westcott and Hort, New Testament in the Original Greek + +The New Testament in the Original Greek: Byzantine Textform +Greek Orthodox Church, New Testament +Scrivener’s Textus Receptus +Stephanus Textus Receptus +Dead Sea Scrolls +Hebrew Masoretic Text: Westminster Leningrad Codex +Hebrew Masoretic Text: Biblia Hebraica Stuttgartensia +Greek OT Septuagint: Rahlfs-Hanhart Septuaginta +Greek OT Septuagint: Swete's Septuagint +Samaritan Pentateuch + + Genesis + +The Creation (John 1:1–5 ; Hebrews 11:1–3) + +The Fourth Day + +1 + +2 + +In the beginning God created the heavens +and the earth. + +Now the earth was formless and void, and dark- +ness was over the surface of the deep. And the +Spirit of God was hovering over the surface of the +The First Day +waters. + +3 + +4 + + a + +And God said, “Let there be light,” + + and +And God saw that the light +there was light. +5 +was good, and He separated the light from +the darkness. +God called the light “day,” and +the darkness He called “night.” + +b + +The Second Day + +And there was evening, and there was morn- +ing—the first day. +6 + + c + +7 + +And God said, “Let there be an expanse + + be- +tween the waters, to separate the waters +So God made the expanse +from the waters.” +and separated the waters beneath it from the +God called the +waters above. And it was so. +expanse “sky.” + +8 + +The Third Day + +And there was evening, and there was morn- +ing—the second day. +9 + +10 + +And God said, “Let the waters under the sky +be gathered into one place, so that the dry +God +land may appear.” And it was so. +called the dry land “earth,” and the gathering +of waters He called “seas.” And God saw that +11 +it was good. + +12 + +Then God said, “Let the earth bring forth +vegetation: seed-bearing plants and fruit +trees, each bearing fruit with seed according +The earth +to its kind.” And it was so. +produced vegetation: seed-bearing plants +according to their kinds and trees bearing +fruit with seed according to their kinds. And +13 +God saw that it was good. + +And there was evening, and there was + +b 5 + +day one + +c 6 + +a canopy + +a 3 + +morning—the third day. + +14 + +And God said, “Let there be lights in the ex- +panse of the sky to distinguish between the +day and the night, and let them be signs to +And +mark the seasons and days and years. +let them serve as lights in the expanse of the +16 +sky to shine upon the earth.” And it was so. + +15 + +God made two great lights: the greater +light to rule the day and the lesser light to +17 +rule the night. And He made the stars as well. + +18 + +God set these lights in the expanse of the +sky to shine upon the earth, +to preside +over the day and the night, and to separate +the light from the darkness. And God saw +19 +that it was good. + +And there was evening, and there was + +The Fifth Day + +morning—the fourth day. +20 + +21 + +And God said, “Let the waters teem with +living creatures, and let birds fly above the +earth in the open expanse of the sky.” +So +God created the great sea creatures and +every living thing that moves, with which the +waters teemed according to their kinds, and +every winged bird after its kind. And God +22 +saw that it was good. + +Then God blessed them and said, “Be fruit- +ful and multiply and fill the waters of the +23 +seas, and let birds multiply on the earth.” + +And there was evening, and there was + +The Sixth Day + +morning—the fifth day. +24 + +And God said, “Let the earth bring forth +living creatures according to their kinds: +livestock, land crawlers, and beasts of the +25 +earth according to their kinds.” And it was so. +God made the beasts of the earth accord- +ing to their kinds, the livestock according to +their kinds, and everything that crawls upon +the earth according to its kind. And God saw +a vault +a firmament +that it was good. + +Cited in 2 Cor. 4:6 + +Literally + +Or + + or + + or + +; also in verses 7, 8, 14, 15, 17, 20 + + 6 | Genesis 1:26 + +26 + +7 + +Then God said, “Let Us make man in Our +image, after Our likeness, to rule over the fish +of the sea and the birds of the air, over the + and +livestock, and over all the earth itself +every creature that crawls upon it.” + + a + + 27 + +So God created man in His own image; + in the image of God He created him; + male and female He created them. + +b + + 28 + +God blessed them and said to them, “Be +fruitful and multiply, and fill the earth and +subdue it; rule over the fish of the sea and the +birds of the air and every creature that +29 +crawls upon the earth.” + +30 + +Then God said, “Behold, I have given you +every seed-bearing plant on the face of all the +earth, and every tree whose fruit contains +And to +seed. They will be yours for food. +every beast of the earth and every bird of the +air and every creature that crawls upon the +earth—everything that has the breath of life +in it—I have given every green plant for +31 +food.” And it was so. + +And God looked upon all that He had made, + +and indeed, it was very good. + +And there was evening, and there was morn- +The Seventh Day (Ex. 16:22–30 ; Heb. 4:1–11) +ing—the sixth day. + +2 + +2 + +Thus the heavens and the earth were com- +And by the +pleted in all their vast array. +seventh day God had finished the work He had +c +been doing; so on that day He rested from all His +3 +work. + +Then God blessed the seventh day and sancti- +fied it, because on that day He rested from all the +Man and Woman in the Garden +work of creation that He had accomplished. +4 + + d + +This is the account of the heavens and the earth +when they were created, in the day that the +5 +LORD + + God made them. + +6 + +Now no shrub of the field had yet appeared on +the earth, nor had any plant of the field sprouted, +for the LORD God had not yet sent rain upon the +earth, and there was no man to cultivate the + welled up from the earth +ground. +and watered the whole surface of the ground. +a 26 +b 27 +d 4 LORD + +and over all the beasts of the earth + +But springs + + e + +Then the LORD God formed man from the dust +f +of the ground and breathed the breath of life into +8 +his nostrils, and the man became a living being. + +9 + +And the LORD God planted a garden in Eden, in +the east, where He placed the man He had +Out of the ground the LORD God gave +formed. +growth to every tree that is pleasing to the eye +and good for food. And in the middle of the gar- +den were the tree of life and the tree of the +10 +knowledge of good and evil. + +Now a river flowed out of Eden to water the +garden, and from there it branched into four +headwaters: + +11 + +The name of the first river is the Pishon; it +12 +winds through the whole land of Havilah, +And the gold of that +where there is gold. +land is pure, and bdellium and onyx are +13 +found there. + +The name of the second river is the +Gihon; it winds through the whole land of +14 +Cush. + +The name of the third river is the Tigris; it + +runs along the east side of Assyria. + +15 + +And the fourth river is the Euphrates. + +Then the LORD God took the man and placed +him in the Garden of Eden to cultivate and keep +16 +it. + +17 + +And the LORD God commanded him, “You may +eat freely from every tree of the garden, +but +you must not eat from the tree of the knowledge +of good and evil; for in the day that you eat of it, +18 +you will surely die.” + +The LORD God also said, “It is not good for the +man to be alone. I will make for him a suitable +19 +helper.” + +And out of the ground the LORD God formed +every beast of the field and every bird of the air, +and He brought them to the man to see what he +would name each one. And whatever the man +20 +called each living creature, that was its name. +The man gave names to all the livestock, to the +birds of the air, and to every beast of the field. But +21 +for Adam + + no suitable helper was found. + + g + +So the LORD God caused the man to fall into a +deep sleep, and while he slept, He took one of the + +c 2 + +GOD +MT; Syriac + or +g 20 +from the Hebrew as +15:45 + +Or + +YHWH + +e 6 +, with capital letters, represents the proper name of the God of Israel and the one true God, transliterated +the man +; cited in 1 Corinthians + +; here and throughout the Scriptures. + +Cited in Matthew 19:4 and Mark 10:6 +a living soul + +Cited in Hebrews 4:4 + +mist + +Or + +Or + +f 7 + +, as in verses 19 and 21 + +  a + +10 + +Genesis 3:19 | 7 + +22 +man’s ribs + + and closed up the area with flesh. +And from the rib that the LORD God had taken +23 +from the man, He made a woman and brought +her to him. + +And the man said: + +“This is now bone of my bones + +and flesh of my flesh; +she shall be called ‘woman,’ + +24 + +for out of man she was taken.” + +For this reason a man will leave his father and +mother and be united to his wife, and they will +25 +become one flesh. + +b + +And the man and his wife were both naked, + +The Serpent’s Deception (Romans 5:12–21) +and they were not ashamed. + + c + +3 + + was more crafty than any +Now the serpent +beast of the field that the LORD God had +made. And he said to the woman, “Did God really +say, ‘You must not eat from any tree in the +2 +garden?’ + +” + +3 + +The woman answered the serpent, “We may eat +the fruit of the trees of the garden, +but about the +fruit of the tree in the middle of the garden, God +has said, ‘You must not eat of it or touch it, or you +4 +will die.’ + +” +5 + +“You will not surely die,” the serpent told the +woman. +“For God knows that in the day you eat +of it, your eyes will be opened and you will be like +6 +God, knowing good and evil.” + +When the woman saw that the tree was good +for food and pleasing to the eyes, and that it was +desirable for obtaining wisdom, she took the +fruit and ate it. She also gave some to her hus- +7 +band who was with her, and he ate it. + +And the eyes of both of them were opened, +and they knew that they were naked; so they +sewed together fig leaves and made coverings for +God Arraigns Adam and Eve +themselves. +8 + + d + +Then the man and his wife heard the voice of +the LORD God walking in the garden in the +breeze + of the day, and they hid themselves from +the presence of the LORD God among the trees of +9 +the garden. + +But the LORD God called out to the man, “Where +b 24 +a 21 +are you?” +Or + +took part of the man’s side + +nachash +unto the Ruach + +snake +at the breezy (time) +10:7–8, 1 Cor. 6:16, and Eph. 5:31 +crush +bruise + +d 8 + +c 1 + +; similarly in v. 22 +Hebrew +strike +; Hebrew +, or + +. + +Or + +The same Heb. root for + +, + +“I heard Your voice in the garden,” he replied, +“and I was afraid because I was naked; so I hid +11 +myself.” + +“Who told you that you were naked?” asked +the LORD God. “Have you eaten from the tree of +12 +which I commanded you not to eat?” + +And the man answered, “The woman whom +You gave me, she gave me fruit from the tree, and +13 +I ate it.” + +Then the LORD God said to the woman, “What + +is this you have done?” + +“The serpent deceived me,” she replied, “and I +The Fate of the Serpent +ate.” +14 + +So the LORD God said to the serpent: + +“Because you have done this, + +cursed are you above all livestock +and every beast of the field! + +15 + +On your belly will you go, +and dust you will eat, +all the days of your life. + +And I will put enmity between you and the + +woman, + +and between your seed and her seed. + +e + +He will crush your head, +The Punishment of Mankind + +and you will strike his heel. + +” + +16 + +To the woman He said: + +“I will sharply increase your pain in + +childbirth; + +f + +in pain you will bring forth children. + +Your desire will be for your husband, + +and he will rule over you.” + +17 + +And to Adam He said: + +“Because you have listened to the voice of + +your wife + +and have eaten from the tree +of which I commanded you not to eat, + +18 + +cursed is the ground because of you; +through toil you will eat of it +all the days of your life. + +19 + +Both thorns and thistles it will yield for you, +and you will eat the plants of the field. + +By the sweat of your brow +you will eat your bread, + +and the two will become one flesh + +serpent + +LXX + +e 15 + +, translated in this chapter as + +; cited in Matt. 19:5, Mark +He will bruise your head, and you will bruise his heel +, is translated in most cases as +You will desire to control your husband +. + +f 16 + +Or + + appears twice in this verse. + +Or + + 8 | Genesis 3:20 + +until you return to the ground— + +because out of it were you taken. + +“I do not know!” he answered. “Am I my brother’s +10 +keeper?” + +20 + +For dust you are, + +a +and to dust you shall return.” + +And Adam named his wife Eve, +The Expulsion from Paradise +would be the mother of all the living. +21 + + because she + +And the LORD God made garments of skin for + +22 +Adam and his wife, and He clothed them. + +Then the LORD God said, “Behold, the man has +become like one of Us, knowing good and evil. +And now, lest he reach out his hand and take also +23 +from the tree of life, and eat, and live forever. . .” + +24 + +Therefore the LORD God banished him from +the Garden of Eden to work the ground from +So He drove out the +which he had been taken. +man and stationed cherubim on the east side of +the Garden of Eden, along with a whirling sword +Cain and Abel (Hebrews 11:4) +of flame to guard the way to the tree of life. + +4 + +And Adam had relations with his wife Eve, +and she conceived and gave birth to Cain. + +b + +“With the help of the LORD I have brought forth +2 +a man,” she said. + +Later she gave birth to Cain’s brother Abel. + +3 + +4 + +Now Abel was a keeper of sheep, while Cain was +a tiller of the soil. +So in the course of time, Cain +brought some of the fruit of the soil as an offering +while Abel brought the best por- +to the LORD, +tions of the firstborn of his flock. + +5 + +And the LORD looked with favor on Abel and +but He had no regard for Cain and +his offering, +his offering. So Cain became very angry, and his +6 +countenance fell. + +7 + +“Why are you angry,” said the LORD to Cain, +If you +“and why has your countenance fallen? +do what is right, will you not be accepted? But if +you refuse to do what is right, sin is crouching at +your door; it desires you, + but you must master +8 +it.” + +c + + d + +11 + +“What have you done?” replied the LORD. “The +voice of your brother’s blood cries out to Me +from the ground. +Now you are cursed and ban- +ished from the ground, which has opened its +12 +mouth to receive your brother’s blood from your +hand. +When you till the ground, it will no +longer yield its produce to you. You will be a +13 +fugitive and a wanderer on the earth.” + + e + +14 + +But Cain said to the LORD, “My punishment + + is +Behold, this day You +greater than I can bear. +have driven me from the face of the earth, and +from Your face I will be hidden; I will be a fugitive +and a wanderer on the earth, and whoever finds +15 +me will kill me.” + + f + +“Not so!” + + replied the LORD. “If anyone slays +Cain, then Cain will be avenged sevenfold.” And +the LORD placed a mark on Cain, so that no one +16 +who found him would kill him. + +g + +So Cain went out from the presence of the + east of + +LORD and settled in the land of Nod, +The Descendants of Cain +Eden. +17 + +And Cain had relations with his wife, and she +conceived and gave birth to Enoch. Then Cain +18 +built a city and named it after his son Enoch. + +19 + +Now to Enoch was born Irad, and Irad was the +father of Mehujael, and Mehujael was the father +of Methusael, and Methusael was the father of +And Lamech married two women, +Lamech. +20 +one named Adah and the other Zillah. + +Adah gave birth to Jabal; he was the father of +21 +those who dwell in tents and raise livestock. +And his brother’s name was Jubal; he was the + +22 +father of all who play the harp and flute. + +And Zillah gave birth to Tubal-cain, a forger of +every implement of bronze and iron. And the sis- +23 +ter of Tubal-cain was Naamah. + +Then Lamech said to his wives: + +Then Cain said to his brother Abel, “Let us go +out to the field.” + And while they were in the +field, Cain rose up against his brother Abel and +9 +killed him. + +“Adah and Zillah, hear my voice; + +wives of Lamech, listen to my speech. +For I have slain a man for wounding me, + +24 + +a young man for striking me. + + h + +And the LORD said to Cain, “Where is your +a 20 Eve +brother Abel?” +c 7 +d 8 + sounds like the Hebrew for +f 15 + +it desires to control you + + or +. +“Very well!” + +giving life + +living + +b 1 Cain + +seventy times seven +LXX, Vulgate, and Syriac; Hebrew + +seventy-sevenfold + or + +“Therefore:” +SP, LXX, Syriac, and Vulgate; Hebrew + +sin +Or + +or +can be translated as either + +If Cain is avenged sevenfold, +acquired + +then Lamech seventy-sevenfold.” +Then Cain spoke to his brother Abel. + or +g 16 Nod +h 24 + + sounds like the Hebrew for + +wandering + +brought forth +e 13 + +guilt +. + + means + +. + +Hebrew; LXX + +Or + + or + +; see also Matthew 18:22. + + Seth and Enosh + +25 + +a +And Adam again had relations with his wife, + +and she gave birth to a son and named him Seth, +saying, “God has granted me another seed in +26 +place of Abel, since Cain killed him.” + +And to Seth also a son was born, and he called + + b + +him Enosh. + + the name of +At that time men began to call upon +The Descendants of Adam (1 Chronicles 1:1–3) +the LORD. + +5 + +c + +This is the book of the generations of Adam. +2 +In the day that God created man, He made +Male and female He + and He blessed them. And in the + +him in His own likeness. +created them, +3 +day they were created, He called them “man.” + + d + +4 + +When Adam was 130 years old, he had a son in +his own likeness, after his own image; and he +And after he had become the +named him Seth. +father of Seth, Adam lived 800 years and had +So Adam lived a total +other sons and daughters. +6 +of 930 years, and then he died. +7 + +5 + +When Seth was 105 years old, he became the fa- +And after he had become the +ther of Enosh. +father of Enosh, Seth lived 807 years and had +So Seth lived a total +other sons and daughters. +9 +of 912 years, and then he died. + +8 + +10 + +When Enosh was 90 years old, he became the +father of Kenan. +And after he had become the +father of Kenan, Enosh lived 815 years and had +other sons and daughters. +So Enosh lived a +12 +total of 905 years, and then he died. + +11 + +13 + +When Kenan was 70 years old, he became the +And after he had become +father of Mahalalel. +the father of Mahalalel, Kenan lived 840 years +and had other sons and daughters. +So Kenan +15 +lived a total of 910 years, and then he died. +16 + +14 + +When Mahalalel was 65 years old, he became +the father of Jared. +And after he had become +the father of Jared, Mahalalel lived 830 years and +had other sons and daughters. +So Mahalalel +God Takes Up Enoch (Hebrews 11:5) +lived a total of 895 years, and then he died. +18 + +17 + +19 + +Genesis 6:7 | 9 + +21 + +22 + + e + +When Enoch was 65 years old, he became the +father of Methuselah. +And after he had become +the father of Methuselah, Enoch walked with +23 +God + 300 years and had other sons and daugh- +24 +ters. + +So Enoch lived a total of 365 years. + +f + +Enoch walked with God, and then he was no + +From Methuselah to Noah +more, because God had taken him away. +25 + +26 + +When Methuselah was 187 years old, he be- +came the father of Lamech. +And after he had +become the father of Lamech, Methuselah lived +27 +782 years and had other sons and daughters. +So Methuselah lived a total of 969 years, and + +28 +then he died. +29 + +g + +When Lamech was 182 years old, he had a son. + saying, “May this +And he named him Noah, +one comfort us in the labor and toil of our hands +30 +caused by the ground that the LORD has cursed.” +And after he had become the father of Noah, +Lamech lived 595 years and had other sons and +daughters. +So Lamech lived a total of 777 +32 +years, and then he died. + +31 + +After Noah was 500 years old, he became the + +Corruption on the Earth (Matthew 24:36–51) +father of Shem, Ham, and Japheth. + +6 + +2 + +Now when men began to multiply on the +face of the earth and daughters were born to +them, +the sons of God saw that the daughters of +men were beautiful, and they took as wives +3 +whomever they chose. + +h + +So the LORD said, “My Spirit will not contend + for he is mortal; his days shall + +with man forever, +4 +be 120 years.” + +The Nephilim were on the earth in those days— +and afterward as well—when the sons of God +had relations with the daughters of men. And +they bore them children who became the mighty +5 +men of old, men of renown. + +6 + +Then the LORD saw that the wickedness of +man was great upon the earth, and that every +inclination of the thoughts of his heart was +altogether evil all the time. +And the LORD +regretted that He had made man on the earth, +and He was grieved in His heart. +So the LORD +said, “I will blot out man, whom I have created, +from the face of the earth—every man and beast +and crawling creature and bird of the air—for I +to invoke +am grieved that I have made them.” +pleased God + +to call themselves by + +7 + +20 + +When Jared was 162 years old, he became the +father of Enoch. +And after he had become the +father of Enoch, Jared lived 800 years and had +other sons and daughters. +So Jared lived a total +a 25 Seth +of 962 years, and then he died. +to profane +f 24 + + probably means + or +and he was not found, because God had taken him away +Cited in Matthew 19:4 and Mark 10:6 +comfort + +appointed + +granted + +b 26 + +rest + +. + +h 3 + +d 2 + +c 2 + +LXX +Hebrew for + + or + +. + +LXX and Syriac + +to proclaim + +Or + +Adam +e 22 +; some translators +My Spirit will not remain in man forever +; cited in Hebrews 11:5 + +Hebrew + +LXX + + or +g 29 Noah +; also in verse 24 + sounds like the + + or + + 10 | Genesis 6:8 + +Noah’s Favor with God + +8 + +Noah, however, found favor in the eyes of the + +9 +LORD. + +This is the account of Noah. Noah was a +10 +righteous man, blameless in his generation; +Noah walked with God. +And Noah had three +11 +sons: Shem, Ham, and Japheth. + +12 + +Now the earth was corrupt in the sight of God, +And God looked upon the +and full of violence. + a +earth and saw that it was corrupt; for all living + on the earth had corrupted their +creatures +Preparing the Ark (Hebrews 11:7) +ways. +13 + +Then God said to Noah, “The end of all living +creatures has come before Me, because through +them the earth is full of violence. Now behold, I + b +14 +will destroy both them and the earth. + + d + +15 + +Make for yourself an ark of gopher wood; +make rooms in the ark and coat it with pitch +inside and out. +And this is how you are to build +it: The ark is to be 300 cubits long, 50 cubits +wide, and 30 cubits high. +You are to make a +e + for the ark, finish its walls a cubit from the +roof +top, + place a door in the side of the ark, and build +17 +lower, middle, and upper decks. + +16 + +c + +18 + +And behold, I will bring floodwaters upon the +earth to destroy every creature under the heav- +ens that has the breath of life. Everything on the +earth will perish. +But I will establish My cove- +nant with you, and you will enter the ark—you +and your sons and your wife and your sons’ +19 +wives with you. + +And you are to bring two of every living crea- +20 +ture into the ark—male and female—to keep +them alive with you. +Two of every kind of +21 +bird and animal and crawling creature will come +to you to be kept alive. +You are also to take +for yourself every kind of food that is eaten +and gather it as food for yourselves and for the +22 +animals.” + +So Noah did everything precisely as God had + +The Great Flood (2 Peter 3:1–7) +commanded him. + +7 + +Then the LORD said to Noah, “Go into the +ark, you and all your family, because I have +You are + +found you righteous in this generation. +a 12 +c 15 + +all flesh + +2 + + f + +3 + +to take with you seven pairs of + every kind of +clean animal, a male and its mate; a pair of every +kind of unclean animal, a male and its mate; +and +seven pairs of every kind of bird of the air, male +4 +and female, to preserve their offspring on the +For seven days from now I +face of all the earth. +will send rain on the earth for forty days and +forty nights, and I will wipe from the face of the +5 +earth every living thing I have made.” + +And Noah did all that the LORD had com- + +6 +manded him. + +7 + +Now Noah was 600 years old when the flood- +And Noah and his +waters came upon the earth. +wife, with his sons and their wives, entered +8 +the ark to escape the waters of the flood. +The clean and unclean animals, the birds, and +came +everything that crawls along the ground +to Noah to enter the ark, two by two, male and +10 +female, as God had commanded Noah. + +9 + +11 + +And after seven days the floodwaters came +In the six hundredth year of +upon the earth. +Noah’s life, on the seventeenth day of the second +month, all the fountains of the great deep burst +forth, and the floodgates of the heavens were +And the rain fell upon the earth for +opened. +13 +forty days and forty nights. + +12 + +14 + +On that very day Noah entered the ark, along +with his sons Shem, Ham, and Japheth, and his +wife, and the three wives of his sons— +they +and every kind of wild animal, livestock, crawling +creature, bird, and winged creature. +They +came to Noah to enter the ark, two by two of +every creature +And +they entered, the male and female of every living +thing, as God had commanded Noah. Then the +17 +LORD shut him in. + + with the breath of life. + +16 + +15 + + g + +18 + +For forty days the flood kept coming on the +earth, and the waters rose and lifted the ark high +So the waters continued to +above the earth. +surge and rise greatly on the earth, and the ark +Finally, +floated on the surface of the waters. +the waters completely prevailed upon the earth, +so that all the high mountains under all the heav- +20 +ens were covered. + +19 + +h + +21 + +The waters rose and covered the mountain- +And every +cedar + +tops to a depth of fifteen cubits. + +cypress + +b 14 Gopher + +Literally +The ark was approx. 450 feet long, 75 feet wide, and 45 feet high (137.2 meters long, 22.9 meters wide, and 13.7 me- +g 15 + +; similarly in verses 13, 17, and 19 +skylight + + is an unknown kind of tree; possibly + +e 16 A cubit + +by sevens + +window + +h 20 15 cubits + +of all flesh + +d 16 + + or + +f 2 + +. + +ters high). +verse 3 + +Or +Literally + + or + +; similarly in verses 16 and 21 + + is approx. 22.5 feet or 6.9 meters. + + is approx. 18 inches or 45.7 centimeters. + +Or + +; also in + + 22 + +living thing that moved upon the earth +perished—birds, livestock, animals, every crea- +ture that swarms upon the earth, and all man- +Of all that was on dry land, everything +kind. +23 +that had the breath of life in its nostrils died. +And every living thing on the face of the earth +was destroyed—man and livestock, crawling +creatures and birds of the air; they were blotted +out from the earth, and only Noah and those with +24 +him in the ark remained. + +And the waters prevailed upon the earth for + +The Ark Rests on Ararat +150 days. + +8 + +2 + +But God remembered Noah and all the +animals and livestock that were with him +in the ark. And God sent a wind over the earth, +The springs +and the waters began to subside. +of the deep and the floodgates of the heavens +were closed, and the rain from the sky was +The waters receded steadily from +restrained. +the earth, and after 150 days the waters had gone +4 +down. + +3 + +On the seventeenth day of the seventh month, +5 +the ark came to rest on the mountains of Ararat. +And the waters continued to recede until the +tenth month, and on the first day of the tenth +Noah Sends a Raven and a Dove +month the tops of the mountains became visible. +6 + +7 + +After forty days Noah opened the window he +had made in the ark +and sent out a raven. It kept +flying back and forth until the waters had dried +8 +up from the earth. + + a + +9 + +Then Noah sent out + + a dove to see if the waters +had receded from the surface of the ground. +But +the dove found no place to rest her foot, and she +returned to him in the ark, because the waters +were still covering the surface of all the earth. So +he reached out his hand and brought her back in- +10 +side the ark. + +11 +Noah waited seven more days and again sent +out the dove from the ark. +And behold, the dove +returned to him in the evening with a freshly +plucked olive leaf in her beak. So Noah knew that +12 +the waters had receded from the earth. + +And Noah waited seven more days and sent +out the dove again, but this time she did not re- +turn to him. +a 8 + +sent out from him + +sent out from it + +Literally + + or + +Genesis 9:5 | 11 + +Exiting the Ark + +13 + +In Noah’s six hundred and first year, on the +first day of the first month, the waters had dried +up from the earth. So Noah removed the covering +from the ark and saw that the surface of the +By the twenty-seventh day of +ground was dry. +15 +the second month, the earth was fully dry. + +14 + +16 + +17 + +Then God said to Noah, + +“Come out of the ark, +you and your wife, along with your sons and their +Bring out all the living creatures that +wives. +are with you—birds, livestock, and everything +that crawls upon the ground—so that they can +spread out over the earth and be fruitful and +18 +multiply upon it.” + +19 + +So Noah came out, along with his sons +Every living +and his wife and his sons’ wives. +creature, every creeping thing, and every bird— +everything that moves upon the earth—came out +Noah Builds an Altar +of the ark, kind by kind. +20 + +Then Noah built an altar to the LORD. And tak- +ing from every kind of clean animal and clean +21 +bird, he offered burnt offerings on the altar. +When the LORD smelled the pleasing aroma, +He said in His heart, “Never again will I curse the +ground because of man, even though every incli- +nation of his heart is evil from his youth. And +never again will I destroy all living creatures as I +22 +have done. + +As long as the earth endures, +seedtime and harvest, + +cold and heat, + +summer and winter, + +day and night + +The Covenant of the Rainbow +shall never cease.” + +9 + +2 + +3 + +And God blessed Noah and his sons and said +to them, “Be fruitful and multiply and fill the +The fear and dread of you will fall on +earth. +every living creature on the earth, every bird of +the air, every creature that crawls on the ground, +and all the fish of the sea. They are delivered into +Everything that lives and moves will +your hand. +be food for you; just as I gave you the green +But you must +plants, I now give you all things. +And +not eat meat with its lifeblood still in it. +surely I will require the life of any man or beast +by whose hand your lifeblood is shed. I will + +5 + +4 + + 12 | Genesis 9:6 + +demand an accounting from anyone who takes +6 +the life of his fellow man: + +Whoever sheds the blood of man, +by man his blood will be shed; + +for in His own image + +7 + +God has made mankind. + +But as for you, + +be fruitful and multiply; +spread out across the earth +and multiply upon it.” + +8 +9 + +11 + +10 + +Then God said to Noah and his sons with him, +“Behold, I now establish My covenant with you +and with +and your descendants after you, +every living creature that was with you— +the birds, the livestock, and every beast of the +earth—every living thing that came out of the +And I establish My covenant with you: +ark. +Never again will all life be cut off by the waters +of a flood; never again will there be a flood to +12 +destroy the earth.” + +13 + +And God said, “This is the sign of the covenant +I am making between Me and you and every +living creature with you, a covenant for all gen- +I have set My rainbow in the +erations to come: +clouds, and it will be a sign of the covenant be- +14 +tween Me and the earth. + +15 + +Whenever I form clouds over the earth and the +I will remem- +rainbow appears in the clouds, +ber My covenant between Me and you and every +living creature of every kind. Never again will the +And +waters become a flood to destroy all life. +whenever the rainbow appears in the clouds, I +will see it and remember the everlasting cove- +nant between God and every living creature of +17 +every kind that is on the earth.” + +16 + +So God said to Noah, “This is the sign of the +covenant that I have established between Me and +Noah’s Shame and Canaan’s Curse +every creature on the earth.” +18 + +19 + +The sons of Noah who came out of the ark were +Shem, Ham, and Japheth. And Ham was the father +These three were the sons of Noah, +of Canaan. +20 +and from them the whole earth was populated. + + a + +21 + +Now Noah, a man of the soil, proceeded +22 + + to +plant a vineyard. +But when he drank some of +its wine, he became drunk and uncovered him- +And Ham, the father of +self inside his tent. +Canaan, saw his father’s nakedness and told his +a 20 +two brothers outside. + +was the first b 27 Japheth + +23 + +Then Shem and Japheth took a garment and +placed it across their shoulders, and walking +backward, they covered their father’s nakedness. +Their faces were turned away so that they did +24 +not see their father’s nakedness. + +When Noah awoke from his drunkenness and +25 +learned what his youngest son had done to him, + +he said, + +“Cursed be Canaan! + +A servant of servants +Shem’s Blessing and Noah’s Death +shall he be to his brothers.” + +26 + +He also declared: + +27 + +28 + +“Blessed be the LORD, the God of Shem! +May Canaan be the servant of Shem. +May God expand the territory of Japheth; +may he dwell in the tents of Shem, +and may Canaan be his servant.” + + b + +29 + +After the flood, Noah lived 350 years. +So +The Table of Nations (1 Chronicles 1:4–27) +Noah lived a total of 950 years, and then he died. + +10 + +The Japhethites +after the flood. +2 + +This is the account of Noah’s sons Shem, +Ham, and Japheth, who also had sons + +The sons of Japheth: + +3 + +Gomer, Magog, Madai, Javan, Tubal, +Meshech, and Tiras. + +The sons of Gomer: + +4 + +Ashkenaz, Riphath, and Togarmah. + +And the sons of Javan: +c + +5 + +Elishah, Tarshish, the Kittites, and the +Rodanites. +From these, the maritime +peoples separated into their territories, +according to their languages, by clans +within their nations. + +The Hamites + +6 + +The sons of Ham: + +7 + +Cush, Mizraim, Put, and Canaan. + +The sons of Cush: + +d + +Seba, Havilah, Sabtah, + + Raamah, and Sabteca. + +Or + + sounds like the Hebrew for + +. + +and 1 Chronicles 1:7); most MT manuscripts + + is a variant of + +SP and some MT manuscripts (see also LXX +; see 1 Chronicles 1:9. + +And the sons of Raamah: +expand + +Sheba and Dedan. + +c 4 + +Sabta + +Dodanites + +d 7 Sabtah + + 8 + + a + +9 + +10 + +Cush was the father of Nimrod, who began to be + b +a mighty one + on the earth. +He was a mighty + the LORD; so it is said, “Like Nim- +hunter before +His +rod, a mighty hunter before the LORD.” +11 +kingdom began in Babylon, Erech, Accad, and +From that land +Calneh, in the land of Shinar. +he went forth into Assyria, where he built Nine- +and Resen, which is +veh, Rehoboth-Ir, Calah, +13 +between Nineveh and the great city of Calah. +14 + +12 + +c + +Genesis 11:11 | 13 + +territory extended from Mesha to Sephar, in the +31 +eastern hill country. + +These are the sons of Shem, according to their + +32 +clans, languages, lands, and nations. + +All these are the clans of Noah’s sons, accord- +ing to their generations and nations. From these +the nations of the earth spread out after the +The Tower of Babel +flood. +(Deuteronomy 32:8 ; Acts 2:1–13) + +d + +15 + +Mizraim was the father of the Ludites, the +the +Anamites, the Lehabites, the Naphtuhites, +Pathrusites, the Casluhites (from whom the Phil- +e +And Ca- +istines came), and the Caphtorites. +16 +naan was the father of Sidon his firstborn, + and +17 +of the Hittites, +the Jebusites, the Amorites, +18 +the Hivites, the Arkites, the +the Girgashites, +the Arvadites, the Zemarites, and the +Sinites, +Hamathites. + +19 + +and +Later the Canaanite clans were scattered, +the borders of Canaan extended from Sidon +toward Gerar as far as Gaza, and then toward +Sodom, Gomorrah, Admah, and Zeboiim, as far as +20 +Lasha. + +These are the sons of Ham according to their + +The Semites +clans, languages, lands, and nations. +21 + + f + +And sons were also born to Shem, the older + Shem was the forefather of + +brother of Japheth; +22 +all the sons of Eber. + +The sons of Shem: + +23 + +Elam, Asshur, Arphaxad, Lud, and Aram. + +The sons of Aram: + +24 + +Uz, Hul, Gether, and Mash. + +g + +Arphaxad was the father of Shelah, + +25 +Shelah was the father of Eber. + +i + +h + + and + +Two sons were born to Eber: One was named + because in his days the earth was divided, + +Peleg, +26 +and his brother was named Joktan. + +11 + +2 + +Now the whole world had one language +j +And as +and a common form of speech. + they found a plain + + k + +people journeyed eastward, +3 +in the land of Shinar + + and settled there. + +And they said to one another, “Come, let us +make bricks and bake them thoroughly.” So they +used brick instead of stone, and tar instead of +4 +mortar. + +“Come,” they said, “let us build for ourselves a +city with a tower that reaches to the heavens, +that we may make a name for ourselves and not +5 +be scattered over the face of all the earth.” + +Then the LORD came down to see the city and +6 +the tower that the sons of men were building. +And the LORD said, “If they have begun to do +this as one people speaking the same language, +7 +then nothing they devise will be beyond them. +Come, let Us go down and confuse their lan- +guage, so that they will not understand one +8 +another’s speech.” + +l + +9 + +So the LORD scattered them from there over the +face of all the earth, and they stopped building +the city. + for there +That is why it is called Babel, +the LORD confused the language of the whole +world, and from that place the LORD scattered +Genealogy from Shem to Abram +them over the face of all the earth. +(1 Chronicles 1:17–27) + +10 + +28 + +And Joktan was the father of Almodad, +Hadoram, Uzal, +30 +Ophir, Havilah, +Their +who became the first fearless leader + +Sheleph, Hazarmaveth, Jerah, +Obal, Abimael, Sheba, +Diklah, +and Jobab. All these were sons of Joktan. +who established himself as a mighty warrior +a 8 +c 10 + +d 14 + +11 + +This is the account of Shem. Two years after +the flood, when Shem was 100 years old, he be- +came the father of Arphaxad. +And after he had +become the father of Arphaxad, Shem lived 500 +years and had other sons and daughters. + +in defiance of + +b 9 + +the Casluhites, and the Caphtorites + +27 +29 + +Or +(from whom the Philistines came) +verse + f 21 + +That is, Babylonia + +Shem, whose older brother was Japheth + + or +g 23 + +Some translators adjust the Hebrew word order to + +e 15 + +Or +of the Sidonians, the foremost +Meshech + +; twice in this + +And Arphaxad was the father of Cainan, and Cainan was the father of Shelah, +l 9 + +; see also Jeremiah 47:4 and Amos 9:7. +k 2 + +Hebrew; LXX and 1 Chronicles 1:17 + +in the east + +Babylon + +Or + +Babel + +Or + +from the east +j 2 +also Luke 3:35–36) +confused + +h 24 +i 25 Peleg + +division + +Hebrew; LXX (see +. + + means + sounds like the He- + +Or +brew for + + or +. + +That is, Babylonia + +Or + +; the Hebrew word for + + 14 | Genesis 11:12 + +12 + +13 + +When Arphaxad was 35 years old, he became +And after he had become +the father of Shelah. +a +the father of Shelah, Arphaxad lived 403 years +14 +and had other sons and daughters. + +15 + +When Shelah was 30 years old, he became +And after he had become the +the father of Eber. +father of Eber, Shelah lived 403 years and had +16 +other sons and daughters. + +17 + +When Eber was 34 years old, he became the fa- +And after he had become +ther of Peleg. +the father of Peleg, Eber lived 430 years and had +18 +other sons and daughters. + +19 + +When Peleg was 30 years old, he became the +And after he had become the fa- +father of Reu. +ther of Reu, Peleg lived 209 years and had other +20 +sons and daughters. + +21 + +When Reu was 32 years old, he became the fa- +And after he had become +ther of Serug. +the father of Serug, Reu lived 207 years and had +22 +other sons and daughters. + +23 + +When Serug was 30 years old, he became the +And after he had become the +father of Nahor. +father of Nahor, Serug lived 200 years and had +24 +other sons and daughters. + +25 + +When Nahor was 29 years old, he became the +And after he had become the +father of Terah. +father of Terah, Nahor lived 119 years and had +26 +other sons and daughters. + +When Terah was 70 years old, he became the + +Terah’s Descendants +father of Abram, Nahor, and Haran. +27 + +28 + +This is the account of Terah. Terah became the +father of Abram, Nahor, and Haran. And Haran +During his father +became the father of Lot. +Terah’s lifetime, Haran died in his native land, in +29 +Ur of the Chaldeans. + +32 + +Terah +arrived in Haran, they settled there. +The Call of Abram (Genesis 26:1–5 ; Acts 7:1–8) +lived 205 years, and he died in Haran. + +12 + +b + +Then the LORD said to Abram, “Leave +your country, your kindred, and your fa- +ther’s household, and go to the land I will show +2 +you. + +I will make you into a great nation, + +and I will bless you; +I will make your name great, + +3 + +so that you will be a blessing. +I will bless those who bless you +c +and all the families of the earth +will be blessed through you. + +and curse those who curse you; + +” + +4 + +5 + +So Abram departed, as the LORD had directed +him, and Lot went with him. Abram was seventy- +five years old when he left Haran. +And Abram +took his wife Sarai, his nephew Lot, and all the +possessions and people they had acquired in +6 +Haran, and set out for the land of Canaan. + + d + +Abram +When they came to the land of Canaan, +traveled through the land as far as the site of the +Oak + of Moreh at Shechem. And at that time the +7 +Canaanites were in the land. + +e + +Then the LORD appeared to Abram and said, “I +” So Abram +will give this land to your offspring. +built an altar there to the LORD, who had ap- +8 +peared to him. + +From there Abram moved on to the hill country +east of Bethel and pitched his tent, with Bethel to +the west and Ai to the east. There he built an altar +to the LORD, and he called on the name of the +9 +LORD. +Abram and Sarai in Egypt + +And Abram journeyed on toward the Negev. + +10 + +30 + +11 + +And Abram and Nahor took wives for them- +selves. Abram’s wife was named Sarai, and +Nahor’s wife was named Milcah; she was the +daughter of Haran, who was the father of both +But Sarai was barren; she +Milcah and Iscah. +31 +had no children. + +Now there was a famine in the land. So Abram +went down to Egypt to live there for a while be- +cause the famine was severe. +As he was about +to enter Egypt, he said to his wife Sarai, “Look, I +know that you are a beautiful woman, +and +when the Egyptians see you, they will say, ‘This +is his wife.’ Then they will kill me but will let you +live. +Please say you are my sister, so that I will +be treated well for your sake, and on account of +12 When Arphaxad was 135 years old, he became the father of Cainan. 13 And after he +you my life will be spared.” + +And Terah took his son Abram, his grandson +Lot son of Haran, and his daughter-in-law Sarai +the wife of Abram, and they set out from Ur of the +a 13 +Chaldeans for the land of Canaan. But when they +had become the father of Cainan, Arphaxad lived 430 years and had other sons and daughters, and then he died. When Cainan +had lived 130 years, he became the father of Shelah. And after he had become the father of Shelah, Cainan lived 330 years and +had other sons and daughters. + +Heb.; LXX (see also Luke 3:35–36) + +12 + +13 + +b 1 + +c 3 + +d 6 + +Terebinth + +Great Tree + +e 7 + + Note that LXX also adds 100 years to the ages of Shelah, Eber, Peleg, Reu, Serug, and Nahor in + +this genealogy. + +Cited in Acts 7:3 + +See Galatians 3:8 + +Or + + or + +Cited in Galatians 3:16 + + 14 + +15 + +16 + +So when Abram entered Egypt, the Egyptians +When +saw that the woman was very beautiful. +Pharaoh’s officials saw Sarai, they commended +her to him, and she was taken into the palace of +He treated Abram well on her ac- +Pharaoh. +count, and Abram acquired sheep and cattle, +male and female donkeys, menservants and +17 +maidservants, and camels. + +18 + +The LORD, however, afflicted Pharaoh and +his household with severe plagues because of +So Pharaoh summoned +Abram’s wife Sarai. +Abram and asked, “What have you done to me? +Why didn’t you tell me she was your wife? +Why +did you say, ‘She is my sister,’ so that I took her +as my wife? Now then, here is your wife. Take her +20 +and go!” + +19 + +Then Pharaoh gave his men orders concerning +Abram, and they sent him away with his wife and +Abram and Lot Part Ways +all his possessions. + +13 + +So Abram went up out of Egypt into the +Negev—he and his wife and all his pos- +And Abram +sessions—and Lot was with him. +had become extremely wealthy in livestock and +3 +silver and gold. + +2 + +4 + +From the Negev he journeyed from place to +place toward Bethel, until he came to the place +between Bethel and Ai where his tent had for- +to the site where he had +merly been pitched, +built the altar. And there Abram called on the +5 +name of the LORD. + +6 + +Now Lot, who was traveling with Abram, also +But the land was +had flocks and herds and tents. +unable to support both of them while they stayed +together, for they had so many possessions that +And there was dis- +they were unable to coexist. +cord between the herdsmen of Abram and the +herdsmen of Lot. At that time the Canaanites and +8 +the Perizzites were also living in the land. + +7 + +9 + +So Abram said to Lot, “Please let there be no +contention between you and me, or between +your herdsmen and my herdsmen. After all, we +Is not the whole land before you? +are kinsmen. +Now separate yourself from me. If you go to the +left, I will go to the right; if you go to the right, I +Lot Proceeds toward Sodom +will go to the left.” +10 + +And Lot looked out and saw that the whole +b 18 +a 15 +plain of the Jordan, all the way to Zoar, was + +Terebinths + +Great Trees + +Genesis 14:8 | 15 + +11 + +well watered like the garden of the LORD, like the +land of Egypt. (This was before the LORD de- +stroyed Sodom and Gomorrah.) +So Lot chose +the whole plain of the Jordan for himself and set +out toward the east. And Abram and Lot parted +12 +company. + +13 + +Abram lived in the land of Canaan, but Lot set- +tled in the cities of the plain and pitched his tent +But the men of Sodom were +toward Sodom. +God Renews the Promise to Abram +wicked, sinning greatly against the LORD. +14 + +After Lot had departed, the LORD said to +Abram, “Now lift up your eyes from the place +where you are, and look to the north and south +for all the land that you see, +and east and west, +16 +I will give to you and your offspring forever. + +15 + +a + +I will make your offspring like the dust of the +earth, so that if one could count the dust of the +17 +earth, then your offspring could be counted. +Get up and walk around the land, through its + +18 +length and breadth, for I will give it to you.” + + b + +So Abram moved his tent and went to live near + of Mamre at Hebron, where he built an + +the Oaks +The War of the Kings +altar to the LORD. + +c + +14 + +2 + +In those days Amraphel king of Shinar, +Arioch king of Ellasar, Chedorlaomer +king of Elam, and Tidal king of Goiim +went to +war against Bera king of Sodom, Birsha king of +Gomorrah, Shinab king of Admah, Shemeber king +3 +of Zeboiim, and the king of Bela (that is, Zoar). + + d + +4 + +The latter five came as allies to the Valley of Sid- +For twelve years +dim (that is, the Salt Sea +they had been subject to Chedorlaomer, but in +5 +the thirteenth year they rebelled. + +). + +6 + +In the fourteenth year, Chedorlaomer and the +kings allied with him went out and defeated the +Rephaites in Ashteroth-karnaim, the Zuzites in +and the +Ham, the Emites in Shaveh-kiriathaim, +Horites in the area of Mount Seir, as far as +El-paran, which is near the desert. +Then they +turned back to invade En-mishpat (that is, +Kadesh), and they conquered the whole territory +of the Amalekites, as well as the Amorites who +8 +lived in Hazazon-tamar. + +7 + +Then the king of Sodom, the king of Gomorrah, +the king of Admah, the king of Zeboiim, and the +king of Bela (that is, Zoar) marched out and + +d 3 + +c 1 + +Cited in Galatians 3:16 + +Or + + or + +That is, Babylonia; also in verse 9 + +That is, the + +Dead Sea + + 16 | Genesis 14:9 + +22 + + a + +9 + +arrayed themselves for battle in the Valley of Sid- +dim +against Chedorlaomer king of Elam, Tidal +king of Goiim, Amraphel king of Shinar, and Ari- +Abram Rescues Lot +och king of Ellasar—four kings against five. +10 + +Now the Valley of Siddim was full of tar pits, +and as the kings of Sodom and Gomorrah fled, +some men fell into the pits, but the survivors fled +11 +to the hill country. + +12 + +The four kings seized all the goods of Sodom +and Gomorrah and all their food, and they went +They also carried off Abram’s +on their way. +nephew Lot and his possessions, since Lot was +13 +living in Sodom. + + c + + b + +14 + +Then an escapee came and reported this to +Abram the Hebrew. Now Abram was living near + of Mamre the Amorite, a brother of +the Oaks +Eshcol and Aner, all of whom were bound by +And when Abram heard that +treaty +his relative had been captured, he mobilized the +318 trained men born in his household, and they +15 +set out in pursuit as far as Dan. + + to Abram. + +16 + +During the night, Abram divided his forces and +routed Chedorlaomer’s army, pursuing them as +He retrieved +far as Hobah, north of Damascus. +all the goods, as well as his relative Lot and his +possessions, together with the women and the +Melchizedek Blesses Abram +rest of the people. +(Psalm 110:1–7 ; Hebrews 7:1–10) + +17 + +23 + +But Abram replied to the king of Sodom, “I +have raised my hand to the LORD God Most High, +Creator of heaven and earth, +that I will not +accept even a thread, or a strap of a sandal, or +anything that belongs to you, lest you should say, +I will accept nothing +‘I have made Abram rich.’ +but what my men have eaten and the share for +the men who went with me—Aner, Eshcol, and +God’s Covenant with Abram +Mamre. They may take their portion.” +(Romans 4:1–12 ; Hebrews 11:8–19) + +24 + +15 + +After these events, the word of the LORD +came to Abram in a vision: + +“Do not be afraid, Abram. +I am your shield, +your very great reward.” + +2 + +But Abram replied, “O Lord GOD, what can You +give me, since I remain childless, and the heir of +Abram con- +my house is Eliezer of Damascus?” +tinued, “Behold, You have given me no offspring, +4 +so a servant in my household will be my heir.” + +3 + +Then the word of the LORD came to Abram, say- +ing, “This one will not be your heir, but one who +5 +comes from your own body will be your heir.” +And the LORD took him outside and said, “Now +look to the heavens and count the stars, if you are +able.” Then He told him, “So shall your offspring +6 +be.” + +f +Abram believed the LORD, and it was credited + + e + +7 +to him as righteousness. + +After Abram returned from defeating Chedor- +laomer and the kings allied with him, the king of +Sodom went out to meet him in the Valley of +18 +Shaveh (that is, the King’s Valley). + +The LORD also told him, “I am the LORD, who +brought you out of Ur of the Chaldeans to give +God Confirms His Promise +you this land to possess.” +(Numbers 34:1–15 ; Romans 4:13–25) + + d + +19 + +Then Melchizedek king of Salem brought out +bread and wine—since he was priest of God Most +High + +and he blessed Abram and said: + +— + +20 + +“Blessed be Abram by God Most High, + +Creator of heaven and earth, +and blessed be God Most High, + +who has delivered your enemies into your + +hand.” + +Then Abram gave Melchizedek a tenth of +21 +everything. + +The king of Sodom said to Abram, “Give me the + +a 8 +people, but take the goods for yourself.” + +b 13 + +Terebinths + +8 + +But Abram replied, “Lord GOD, how can I know + +9 +that I will possess it?” + +And the LORD said to him, “Bring Me a heifer, a +goat, and a ram, each three years old, along with +10 +a turtledove and a young pigeon.” + +11 + +So Abram brought all these to Him, split each +of them down the middle, and laid the halves op- +posite each other. The birds, however, he did not +And the birds of prey descended on +cut in half. +the carcasses, but Abram drove them away. +As +Great Trees +the sun was setting, Abram fell into a deep sleep, + + c 13 + +berit + +12 + +That is, the Valley of the Dead Sea + +e 5 +f 6 +translated in most passages as +Cited in Romans 4:18 + +covenant. d 18 +Or + +El-Elyon + or + +Hebrew + +Forms of the Hebrew +; also in verses 19, 20, and 22; cited in Hebrews 7:1 + + are + +Cited in Romans 4:3, Romans 4:22, Galatians 3:6, and James 2:23 + + and suddenly great terror and darkness over- +13 +whelmed him. + +a + +14 + +15 + +Then the LORD said to Abram, “Know for cer- +tain that your descendants will be strangers in a +land that is not their own, and they will be en- +slaved and mistreated four hundred years. +But +I will judge the nation they serve as slaves, and +afterward they will depart with many posses- +You, however, will go to your fathers in +sions. +peace and be buried at a ripe old age. +In the +fourth generation your descendants will return +here, for the iniquity of the Amorites is not yet +17 +complete.” + +16 + +18 + +When the sun had set and darkness had fallen, +behold, a smoking firepot and a flaming torch +appeared and passed between the halves of the +On that day the LORD made a cove- +carcasses. +nant with Abram, saying, “To your descendants I +19 +have given this land—from the river of Egypt to +the land of the +the great River Euphrates— +21 +Kenites, Kenizzites, Kadmonites, +Hittites, +Amorites, Canaanites, +Perizzites, Rephaites, +Hagar and Ishmael +Girgashites, and Jebusites.” + +20 + +16 + +2 + +Now Abram’s wife Sarai had borne him +no children, but she had an Egyptian +So Sarai said to +maidservant named Hagar. +Abram, “Look now, the LORD has prevented me +from bearing children. Please go to my maidser- +3 +vant; perhaps I can build a family by her.” + +So af- +And Abram listened to the voice of Sarai. +ter he had lived in Canaan for ten years, his wife +Sarai took her Egyptian maidservant Hagar and +And he slept +gave her to Abram to be his wife. +with Hagar, and she conceived. But when Hagar +b +realized that she was pregnant, she began to des- +5 +pise her mistress. + +4 + +Then Sarai said to Abram, “May the wrong done +to me be upon you! I delivered my servant into +your arms, and ever since she saw that she was +pregnant, she has treated me with contempt. +6 +May the LORD judge between you and me.” + +7 + + c + +Genesis 17:5 | 17 + +8 + +Now the angel + + of the LORD found Hagar by a +spring of water in the desert—the spring along +“Hagar, servant of Sarai,” he +the road to Shur. +said, “where have you come from, and where are +you going?” + +“I am running away from my mistress Sarai,” she +9 +replied. + +So the angel of the LORD told her, “Return to +10 +your mistress and submit to her authority.” +Then the angel added, “I will greatly multiply +your offspring so that they will be too numerous +11 +to count.” + +The angel of the LORD proceeded: + +“Behold, you have conceived and will bear a + +d + +son. + +And you shall name him Ishmael, +for the LORD has heard your cry of + +12 + +affliction. + +He will be a wild donkey of a man, + +and his hand will be against everyone, +and everyone’s hand against him; + +13 + +he will live in hostility + +toward all his brothers.” + +e + +14 + +So Hagar gave this name to the LORD who +had spoken to her: “You are the God who sees +me, +” for she said, “Here I have seen the One +f +Therefore the well was called +who sees me!” + It is located between Kadesh and +Beer-lahai-roi. +15 +Bered. + +And Hagar bore Abram a son, and Abram gave +16 +the name Ishmael to the son she had borne. +Abram was eighty-six years old when Hagar + +Abraham to Father Many Nations +bore Ishmael to him. + +17 + +g + +2 + +When Abram was ninety-nine years old, +the LORD appeared to him and said, “I + Walk before Me and be +am God Almighty. +I will establish My covenant between +blameless. +3 +Me and you, and I will multiply you exceedingly.” +4 + +i + +5 + +Then Abram fell facedown, and God said to him, +“As for Me, this is My covenant with you: You +h +No longer + but your name will be + for I have made you a father of many +c 7 +God hears +h 5 Abram + +f 14 Beer-lahai-roi +; also in verses 9, 10, and 11; cor- +i 5 Abraham + +Angel +e 13 + +j + +El-Roi +exalted father +Hebrew + +Or +. + means + +. + + means + +“Here,” said Abram, “your servant is in your +hands. Do whatever you want with her.” Then +Sarai treated Hagar so harshly that she fled from +a 14 +her. + +will be the father of many nations. +will you be called Abram, +Abraham, +her mistress became despised in her sight +nations. + +b 4 + +Cited in Acts 7:6–7 + +well of the Living One who sees me +responding pronouns may also be capitalized. +father of many +means + +Or + +g 1 + +j 5 + +. +Cited in Romans 4:17 + +. + +Hebrew + +d 11 Ishmael + +El-Shaddai + + means + + 18 | Genesis 17:6 + +6 + +I will make you exceedingly fruitful; I will make +7 +nations of you, and kings will descend from you. + +I will establish My covenant as an everlasting +covenant between Me and you and your de- +scendants after you, to be your God and the God +8 +of your descendants after you. + +And to you and your descendants I will give +the land where you are residing—all the land of +Canaan—as an eternal possession; and I will be +The Covenant of Circumcision +their God.” +9 + +10 + +God also said to Abraham, “You must keep My +covenant—you and your descendants in the gen- +erations after you. +This is My covenant with +you and your descendants after you, which you +are to keep: Every male among you must be +You are to circumcise the flesh of +circumcised. +your foreskin, and this will be a sign of the cove- +12 +nant between Me and you. + +11 + +13 + +Generation after generation, every male must +be circumcised when he is eight days old, includ- +ing those born in your household and those +purchased from a foreigner—even those who are +Whether they are born in +not your offspring. +your household or purchased, they must be cir- +cumcised. My covenant in your flesh will be an +14 +everlasting covenant. + +But if any male is not circumcised, he will +be cut off from his people; he has broken My +15 +covenant.” + +a + +16 + +Then God said to Abraham, “As for Sarai your +wife, do not call her Sarai, for her name is to be +And I will bless her and will surely give +Sarah. +you a son by her. I will bless her, and she will be +the mother of nations; kings of peoples will de- +17 +scend from her.” + +Abraham fell facedown. Then he laughed and +said to himself, “Can a child be born to a man who +is a hundred years old? Can Sarah give birth at +And Abraham said to God, +the age of ninety?” +19 +“O that Ishmael might live under Your blessing!” + +18 + +b + +But God replied, “Your wife Sarah will indeed + I +bear you a son, and you are to name him Isaac. +will establish My covenant with him as an ever- +20 +lasting covenant for his descendants after him. +As for Ishmael, I have heard you, and I will +a 15 +surely bless him; I will make him fruitful and + +princess + +Sarah + +Sarai +b 19 Isaac + and + +21 + +multiply him greatly. He will become the father +of twelve rulers, and I will make him into a great +But I will establish My covenant with +nation. +Isaac, whom Sarah will bear to you at this time +22 +next year.” + +When He had finished speaking with Abraham, + +23 +God went up from him. + +On that very day Abraham took his son +Ishmael and all those born in his household or +purchased with his money—every male among +the members of Abraham’s household—and he +24 +circumcised them, just as God had told him. +25 + +So Abraham was ninety-nine years old when +26 +and his son Ishmael was +he was circumcised, +27 +thirteen; +Abraham and his son Ishmael were +And all the men +circumcised on the same day. +of Abraham’s household—both servants born in +his household and those purchased from foreign- +The Three Visitors +ers—were circumcised with him. + +18 + + c + +Then the LORD appeared to Abraham by + of Mamre in the heat of the +the Oaks +2 +day, while he was sitting at the entrance +And Abraham looked up and saw +of his tent. +three men standing nearby. When he saw them, +he ran from the entrance of his tent to meet them +3 +and bowed low to the ground. + +“My lord,” said Abraham, “if I have found favor +4 +in your sight, please do not pass your servant by. +Let a little water be brought, that you may wash +5 +your feet and rest yourselves under the tree. +And I will bring a bit of bread so that you may +refresh yourselves. This is why you have passed +your servant’s way. After that, you may continue +on your way.” + +“Yes,” they replied, “you may do as you have +6 +said.” + +d +So Abraham hurried into the tent and said to Sa- +rah, “Quick! Prepare three seahs of fine flour, +7 +knead it, and bake some bread.” + +8 + +Meanwhile, Abraham ran to the herd, selected a +tender and choice calf, and gave it to a servant, +Then Abraham +who hurried to prepare it. +brought curds and milk and the calf that had +been prepared, and he set them before the men +and stood by them under the tree as they ate. + +Both +Canaan. +21.9 liters (probably about 24.5 pounds or 11.1 kilograms of flour). + + means + + mean + + or + +Or + +. + +he laughs + +Terebinths + +d 6 3 seahs +c 1 +; the change in spelling may reflect the difference in dialect between Ur and + +Great Trees + + is approximately 19.8 dry quarts or + + Sarah Laughs at the Promise + +25 + +Genesis 19:2 | 19 + +9 + +“Where is your wife Sarah?” they asked. + +10 +“There, in the tent,” he replied. + +Then the LORD said, “I will surely return to you +at this time next year, and your wife Sarah will +have a son!” + +11 + +Now Sarah was behind him, listening at the en- +And Abraham and Sarah +trance to the tent. +were already old and well along in years; Sarah +had passed the age of childbearing. +So she +laughed to herself, saying, “After I am worn out +and my master is old, will I now have this pleas- +13 +ure?” + +12 + +14 + +And the LORD asked Abraham, “Why did Sarah +laugh and say, ‘Can I really bear a child when I am +Is anything too difficult for the LORD? At +old?’ +the appointed time I will return to you—in about +15 +a year—and Sarah will have a son.” + + a + +But Sarah was afraid, so she denied it and said, + +“I did not laugh.” +Abraham Intercedes for Sodom +“No,” replied the LORD, “but you did laugh.” +16 + +When the men got up to leave, they looked out +over Sodom, and Abraham walked along with +17 +them to see them off. + +18 +And the LORD said, “Shall I hide from Abraham +Abraham will surely +what I am about to do? +become a great and powerful nation, and +through him all the nations of the earth will be +For I have chosen him, so that he will +blessed. +command his children and his household after +him to keep the way of the LORD by doing what +is right and just, in order that the LORD may +20 +bring upon Abraham what He has promised.” + +19 + +21 + +Then the LORD said, “The outcry against +Sodom and Gomorrah is great. Because their sin +I will go down to see if their ac- +is so grievous, +tions fully justify the outcry that has reached Me. +22 +If not, I will find out.” + +And the two men turned away and went to- +ward Sodom, but Abraham remained standing +23 +before the LORD. + +24 + +Abraham stepped forward and said, “Will You +really sweep away the righteous with the +What if there are fifty righteous ones +wicked? +in the city? Will You really sweep it away and not +a 14 +spare the place for the sake of the fifty righteous + +Cited in Romans 9:9 + +Far be it from You to do +ones who are there? +such a thing—to kill the righteous with the +wicked, so that the righteous and the wicked are +treated alike. Far be it from You! Will not the +26 +Judge of all the earth do what is right?” + +So the LORD replied, “If I find fifty righteous +ones within the city of Sodom, on their account I +27 +will spare the whole place.” + +28 + +Then Abraham answered, “Now that I have +ventured to speak to the Lord—though I am but +suppose the fifty righteous +dust and ashes— +ones lack five. Will You destroy the whole city for +the lack of five?” + +He replied, “If I find forty-five there, I will not de- +29 +stroy it.” + +Once again Abraham spoke to the LORD, “Sup- + +pose forty are found there?” + +He answered, “On account of the forty, I will not +30 +do it.” + +Then Abraham said, “May the Lord not be an- +gry, but let me speak further. Suppose thirty are +found there?” +31 +He replied, “If I find thirty there, I will not do it.” + +And Abraham said, “Now that I have ventured +to speak to the Lord, suppose twenty are found +there?” + +He answered, “On account of the twenty, I will +32 +not destroy it.” + +Finally, Abraham said, “May the Lord not be +angry, but let me speak once more. Suppose ten +are found there?” + +And He answered, “On account of the ten, I will +33 +not destroy it.” + +When the LORD had finished speaking with +Abraham, He departed, and Abraham returned +Lot Welcomes the Angels (Judges 19:1–30) +home. + +19 + +2 + +Now the two angels arrived at Sodom in +the evening, and Lot was sitting in the +gateway of the city. When Lot saw them, he got +and said, +up to meet them, bowed facedown, +“My lords, please turn aside into the house of +your servant; wash your feet and spend the +night. Then you can rise early and go on your +way.” + +“No,” they answered, “we will spend the night in +the square.” + + 20 | Genesis 19:3 + +3 + +17 + +But Lot insisted so strongly that they followed +him into his house. He prepared a feast for them +4 +and baked unleavened bread, and they ate. + +5 + +Before they had gone to bed, all the men of the +city of Sodom, both young and old, surrounded +They called out to Lot, saying, +the house. +“Where are the men who came to you tonight? +Send them out to us so we can have relations +6 +with them!” + +7 + +8 + +Lot went outside to meet them, shutting the +“Please, my brothers,” he +door behind him. +pleaded, “don’t do such a wicked thing! +Look, I +have two daughters who have never slept with a +man. Let me bring them to you, and you can do to +them as you please. But do not do anything to +these men, for they have come under the protec- +9 +tion of my roof.” + +“Get out of the way!” they replied. And they de- +clared, “This one came here as a foreigner, and he +is already acting like a judge! Now we will treat +you worse than them.” And they pressed in on +10 +Lot and moved in to break down the door. + +11 + +But the men inside reached out, pulled Lot into +And +the house with them, and shut the door. +they struck the men at the entrance, young and +old, with blindness, so that they wearied them- +Lot Flees to Zoar +selves trying to find the door. +12 + +13 + +Then the two men said to Lot, “Do you have +anyone else here—a son-in-law, your sons or +daughters, or anyone else in the city who belongs +because we are +to you? Get them out of here, +about to destroy this place. For the outcry to the +LORD against its people is so great that He has +14 +sent us to destroy it.” + +So Lot went out and spoke to the sons-in-law +who were pledged in marriage to his daughters. +“Get up,” he said. “Get out of this place, for the +LORD is about to destroy the city!” But his sons- +15 +in-law thought he was joking. + +16 + +At daybreak the angels hurried Lot along, +saying, “Get up! Take your wife and your two +daughters who are here, or you will be swept +But when +away in the punishment of the city.” +Lot hesitated, the men grabbed his hand and the +hands of his wife and his two daughters. And +they led them safely out of the city, because of the +LORD’s compassion for them. +small +a 22 Zoar + + means + +. + +As soon as the men had brought them out, one +of them said, “Run for your lives! Do not look +back, and do not stop anywhere on the plain! Flee +18 +to the mountains, or you will be swept away!” + +19 + +But Lot replied, “No, my lords, please! + +Your +servant has indeed found favor in your sight, and +you have shown me great kindness by sparing +my life. But I cannot run to the mountains; the +Look, +disaster will overtake me, and I will die. +there is a town nearby where I can flee, and it is +a small place. Please let me flee there—is it not a +21 +small place? Then my life will be saved.” + +20 + +22 + +“Very well,” he answered, “I will grant this re- +quest as well, and will not demolish the town you +Hurry! Run there quickly, for I cannot +indicate. +do anything until you reach it.” That is why the +23 +town was called Zoar. + +a + +And by the time the sun had risen over the + +The Destruction of Sodom and Gomorrah +land, Lot had reached Zoar. +(Luke 17:20–37) + +24 + +25 + +Then the LORD rained down sulfur and fire on +Sodom and Gomorrah—from the LORD out of the +heavens. +Thus He destroyed these cities +and the entire plain, including all the inhabitants +of the cities and everything that grew on the +26 +ground. + +But Lot’s wife looked back, and she became a + +27 +pillar of salt. + +28 + +Early the next morning, Abraham got up and +returned to the place where he had stood before +the LORD. +He looked down toward Sodom and +Gomorrah and all the land of the plain, and he +saw the smoke rising from the land like smoke +29 +from a furnace. + +So when God destroyed the cities of the plain, +He remembered Abraham, and He brought Lot +out of the catastrophe that destroyed the cities +Lot and His Daughters +where he had lived. +30 + +Lot and his two daughters left Zoar and settled +in the mountains—for he was afraid to stay in +31 +Zoar—where they lived in a cave. + +32 + +One day the older daughter said to the +younger, “Our father is old, and there is no man +in the land to sleep with us, as is the custom over +Come, let us get our father drunk +all the earth. +with wine so we can sleep with him and preserve +his line.” + + 33 + +9 + +Genesis 21:8 | 21 + +So that night they got their father drunk with +wine, and the firstborn went in and slept with +her father; he was not aware when she lay down +34 +or when she got up. + +The next day the older daughter said to the +younger, “Look, I slept with my father last night. +Let us get him drunk with wine again tonight so +you can go in and sleep with him and we can pre- +35 +serve our father’s line.” + +So again that night they got their father drunk +with wine, and the younger daughter went in and +slept with him; he was not aware when she lay +36 +down or when she got up. + +37 + +a + +38 + +Thus both of Lot’s daughters became pregnant +by their father. +The older daughter gave birth +to a son and named him Moab. + He is the father +of the Moabites of today. +The younger daugh- +ter also gave birth to a son, and she named him +Ben-ammi. + He is the father of the Ammonites of +Abraham, Sarah, and Abimelech +today. + +b + +20 + +Now Abraham journeyed from there to +the region of the Negev and settled be- +2 +tween Kadesh and Shur. While he was staying in +Abraham said of his wife Sarah, “She is +Gerar, +my sister.” So Abimelech king of Gerar had Sarah +3 +brought to him. + +One night, however, God came to Abimelech in +a dream and told him, “You are as good as dead +because of the woman you have taken, for she is +4 +a married woman.” + +Now Abimelech had not gone near her, so he re- +5 +plied, “Lord, would You destroy a nation even +though it is innocent? +Didn’t Abraham tell me, +‘She is my sister’? And she herself said, ‘He is my +brother.’ I have done this in the integrity of my +6 +heart and the innocence of my hands.” + +7 + +Then God said to Abimelech in the dream, “Yes, +I know that you did this with a clear conscience, +and so I have kept you from sinning against Me. +That is why I did not let you touch her. +Now re- +turn the man’s wife, for he is a prophet; he will +pray for you and you will live. But if you do not +restore her, be aware that you will surely die— +8 +you and all who belong to you.” + +Early the next morning Abimelech got up and +summoned all his servants; and when he de- +scribed to them all that had happened, the men +a 37 Moab +were terrified. +els of silver + +from my father + +Then Abimelech called Abraham and asked, +“What have you done to us? How have I sinned +against you, that you have brought such tremen- +dous guilt upon me and my kingdom? You have +10 +done things to me that should not be done.” +“What + +Abimelech also asked Abraham, + +11 +prompted you to do such a thing?” + +13 + +12 + +Abraham replied, “I thought to myself, ‘Surely +there is no fear of God in this place. They will kill +Besides, she really +me on account of my wife.’ +is my sister, the daughter of my father—though +not the daughter of my mother—and she became +So when God had me journey from my +my wife. +father’s house, I said to Sarah, ‘This is how you +can show your loyalty to me: Wherever we go, +14 +say of me, “He is my brother.” + +” + +’ + +So Abimelech brought sheep and cattle, men- +servants and maidservants, and he gave them to +15 +Abraham and restored his wife Sarah to him. +And Abimelech said, “Look, my land is before +And he said +you. Settle wherever you please.” +c +to Sarah, “See, I am giving your brother a thou- +sand pieces of silver. + It is your vindication +before all who are with you; you are completely +17 +cleared.” + +16 + +18 + +Then Abraham prayed to God, and God healed +Abimelech and his wife and his maidservants, so +for on +that they could again bear children— +account of Abraham’s wife Sarah, the LORD had +completely closed all the wombs in Abimelech’s +The Birth of Isaac +household. + +21 + +2 + +Now the LORD attended to Sarah as He +had said, and the LORD did for Sarah +So Sarah conceived and +what He had promised. +bore a son to Abraham in his old age, at the very +3 +time God had promised. + +4 +And Abraham gave the name Isaac + + to the son +When his son Isaac was eight +Sarah bore to him. +5 +days old, Abraham circumcised him, as God had +Abraham was a hundred +commanded him. +6 +years old when his son Isaac was born to him. + + d + +Then Sarah said, “God has made me laugh, and +7 +everyone who hears of this will laugh with me.” +She added, “Who would have told Abraham that +Sarah would nurse children? Yet I have borne +8 +him a son in his old age.” + + sounds like the Hebrew for +; that is, approximately 25.1 pounds or 11.4 kilograms of silver + +. + + means + + means + +So the child grew and was weaned, and Abra- +ham held a great feast on the day Isaac was +weaned. + +a thousand shek- + +son of my people + +d 3 Isaac + +b 38 Ben-ammi + +c 16 +he laughs +. + +Or +. + + 22 | Genesis 21:9 + +Sarah Turns against Hagar (Gal. 4:21–30) + +24 + +9 + +a + +10 + +But Sarah saw that the son whom Hagar the +Egyptian had borne to Abraham was mocking +her son, +and she said to Abraham, “Expel the +slave woman and her son, for the slave woman’s +son will never share in the inheritance with my +11 +son Isaac!” + + b + +12 + +Now this matter distressed Abraham greatly +But God +because it concerned his son Ishmael. +said to Abraham, “Do not be distressed about the +boy and your maidservant. Listen to everything +c +that Sarah tells you, for through Isaac your off- +But I will also make a +spring will be reckoned. +nation of the slave woman’s son, because he is +14 +your offspring.” + +13 + +15 + +Early in the morning, Abraham got up, took +bread and a skin of water, put them on Hagar’s +shoulders, and sent her away with the boy. She +left and wandered in the Wilderness of Beer- +When the water in the skin was gone, +sheba. +Then +she left the boy under one of the bushes. +she went off and sat down nearby, about a bow- +shot away, for she said, “I cannot bear to watch +the boy die!” And as she sat nearby, she lifted up +17 +her voice and wept. + +16 + +d + +18 + +Then God heard the voice of the boy, and the +angel of God called to Hagar from heaven, “What +is wrong, Hagar? Do not be afraid, for God has +Get +heard the voice of the boy where he lies. +up, lift up the boy, and take him by the hand, for +Then God +I will make him into a great nation.” +opened her eyes, and she saw a well of water. So +she went and filled the skin with water and gave +20 +the boy a drink. + +19 + +21 + +And God was with the boy, and he grew up and +settled in the wilderness and became a great +And while he was dwelling in the Wil- +archer. +derness of Paran, his mother got a wife for him +The Covenant at Beersheba +from the land of Egypt. +22 + +23 + +At that time Abimelech and Phicol the com- +mander of his army said to Abraham, “God is +with you in all that you do. +Now, therefore, +swear to me here before God that you will not +deal falsely with me or my children or descend- +ants. Show to me and to the country in which you +reside the same kindness that I have shown to +a 9 +you.” +d 16 +f 33 + +the child lifted up his voice and wept + +LXX and Vulgate; Hebrew lacks + +El-Olam + +her son + +b 10 + +25 + +And Abraham replied, “I swear it.” + +26 + +But when Abraham complained to Abimelech +about a well that Abimelech’s servants had +seized, +Abimelech replied, “I do not know who +has done this. You did not tell me, so I have not +27 +heard about it until today.” + +28 + +So Abraham brought sheep and cattle and gave +them to Abimelech, and the two men made +29 +Abraham separated seven ewe +a covenant. +and Abimelech asked +lambs from the flock, +him, “Why have you set apart these seven ewe +30 +lambs?” + +e + +32 + +31 + +So that place was called Beersheba, + +He replied, “You are to accept the seven ewe +lambs from my hand as my witness that I dug this +well.” + be- +cause it was there that the two of them swore an +After they had made the covenant at +oath. +Beersheba, Abimelech and Phicol the com- +mander of his army got up and returned to the +33 +land of the Philistines. + +And Abraham planted a tamarisk tree in Beer- +f +34 +sheba, and there he called upon the name of the +LORD, the Eternal God. +And Abraham resided +The Offering of Isaac (John 3:1–21) +in the land of the Philistines for a long time. + +22 + +Some time later God tested Abraham and +said to him, “Abraham!” + +2 +“Here I am,” he answered. + +“Take your son,” God said, “your only son Isaac, +whom you love, and go to the land of Moriah. Of- +fer him there as a burnt offering on one of the +3 +mountains, which I will show you.” + +So Abraham got up early the next morning, sad- +dled his donkey, and took along two of his serv- +ants and his son Isaac. He split the wood for a +burnt offering and set out for the place God had +4 +designated. + +5 + +On the third day Abraham looked up and saw +“Stay here with the +the place in the distance. +donkey,” Abraham told his servants. “The boy +and I will go over there to worship, and then we +6 +will return to you.” + +Abraham took the wood for the burnt offering +and placed it on his son Isaac. He himself carried +the fire and the sacrificial knife, and the two of +them walked on together. + +c 12 + +well of seven +Cited in Romans 9:7 and Hebrews 11:18 + +well of the oath + + e 31 Beersheba + +Cited in Galatians 4:30 + +Hebrew; LXX +Hebrew + + means + + or + +. + + 7 + +Then Isaac said to his father Abraham, “My + +father!” + +“Here I am, my son,” he replied. + +“The fire and the wood are here,” said Isaac, “but +8 +where is the lamb for the burnt offering?” + +Abraham answered, “God Himself will provide +the lamb for the burnt offering, my son.” And the +9 +two walked on together. + +When they arrived at the place God had desig- +nated, Abraham built the altar there and +arranged the wood. He bound his son Isaac and +Then +placed him on the altar, atop the wood. +Abraham reached out his hand and took the knife +The LORD Provides the Sacrifice +to slaughter his son. +11 + +10 + + a + +Just then the angel + + of the LORD called out to + +him from heaven, “Abraham, Abraham!” +12 +“Here I am,” he replied. + +“Do not lay a hand on the boy or do anything to +him,” said the angel, “for now I know that you +fear God, since you have not withheld your only +13 +son from me. + c + +” + +b + +14 + +Then Abraham looked up and saw behind him +a ram + in a thicket, caught by its horns. So he +went and took the ram and offered it as a burnt +d +And Abraham +offering in place of his son. +called that place The LORD Will Provide. + So to +this day it is said, “On the mountain of the LORD +15 +it will be provided.” + +16 + +17 + +And the angel of the LORD called to Abraham +from heaven a second time, +saying, “By Myself +I have sworn, declares the LORD, that because +you have done this and have not withheld your + e +I will surely bless you, and I will mul- +only son, +tiply your descendants + like the stars in the sky +and the sand on the seashore. Your descendants +And +will possess the gates of their enemies. +through your offspring all nations of the earth +will be blessed, + because you have obeyed My +19 +voice.” + +18 + +f + +Abraham went back to his servants, and they +got up and set out together for Beersheba. And +The Sons of Nahor +Abraham settled in Beersheba. +20 + +21 + +Genesis 23:16 | 23 + +22 + +the firstborn, his brother Buz, Kemuel (the father +Chesed, Hazo, Pildash, Jidlaph, and +of Aram), +23 +Bethuel.” + +24 + +And Bethuel became the father of Rebekah. +Milcah bore these eight sons to Abraham’s +Moreover, Nahor’s concubine, +brother Nahor. +whose name was Reumah, bore Tebah, Gaham, +The Death and Burial of Sarah +Tahash, and Maacah. + +23 + +2 +Now Sarah lived to be 127 years old. +She died in Kiriath-arba (that is, Heb- +ron) in the land of Canaan, and Abraham went +3 +out to mourn and to weep for her. + +g +4 +Then Abraham got up from beside his dead wife +and said to the Hittites, +“I am a foreigner and +an outsider among you. Give me a burial site +5 +among you so that I can bury my dead.” + +6 + +The Hittites replied to Abraham, + +“Listen to us, +sir. You are God’s chosen one among us. Bury +your dead in the finest of our tombs. None of us +7 +will withhold his tomb for burying your dead.” + +8 + +9 + +Then Abraham rose and bowed down before +“If you are +the people of the land, the Hittites. +willing for me to bury my dead,” he said to them, +“listen to me, and approach Ephron son of Zohar +to sell me the cave of Machpelah +on my behalf +that belongs to him; it is at the end of his field. Let +him sell it to me in your presence for full price, so +10 +that I may have a burial site.” + +Now Ephron was sitting among the sons of +Heth. So in the presence of all the Hittites who +11 +had come to the gate of his city, Ephron the Hit- +“No, my lord. Listen to +tite answered Abraham, +me. I give you the field, and I give you the cave +that is in it. I give it to you in the presence of my +12 +people. Bury your dead.” + +13 + +Again Abraham bowed down before the peo- +ple of the land +and said to Ephron in their pres- +ence, “If you will please listen to me, I will pay +you the price of the field. Accept it from me, so +14 +that I may bury my dead there.” + +15 + +h + +Ephron answered Abraham, + +“Listen to me, +my lord. The land is worth four hundred shekels + but what is that between you and me? +of silver, +16 +Bury your dead.” + +Angel + +a 11 +has also borne sons to your brother Nahor: + +Some time later, Abraham was told, “Milcah +Uz +e 17 +h 15 400 shekels + +; also in verses 12 and 15 + +saw one ram + +YHWH Yireh + +from Me + +b 12 + +d 14 + +Or + +c 13 + +Abraham agreed to Ephron’s terms and +weighed out for him the price he had named in +sons of +Most MT manuscripts; other Hebrew manuscripts, SP, LXX, + +f 18 + +g 3 + +; also in verses 5, 7, 10, 16, 18, and 20 + +Hebrew + +Cited in Hebrews 6:14 + is approximately 10.1 pounds or 4.6 kg of silver; also in v. 16. + +Cited in Acts 3:25 + +Or + +Or +Heth +and Syriac + + 24 | Genesis 23:17 + +12 + +the hearing of the Hittites: four hundred shekels +of silver, according to the standard of the mer- +17 +chants. + +18 + +So Ephron’s field at Machpelah near Mamre, + cave that was in it, and all the trees within the +the +to +boundaries of the field were deeded over +Abraham’s possession in the presence of all the +19 +Hittites who had come to the gate of his city. +After this, Abraham buried his wife Sarah in +the cave of the field at Machpelah near Mamre +So the +(that is, Hebron) in the land of Canaan. +field and its cave were deeded by the Hittites to +A Wife for Isaac +Abraham as a burial site. + +20 + +24 + +3 + +2 + +By now Abraham was old and well along +in years, and the LORD had blessed him +So Abraham instructed the chief +in every way. +servant of his household, who managed all he +owned, “Place your hand under my thigh, +and I +will have you swear by the LORD, the God of +heaven and the God of earth, that you will not +take a wife for my son from the daughters of the +but will +Canaanites among whom I am dwelling, +go to my country and my kindred to take a wife +5 +for my son Isaac.” + +4 + +The servant asked him, “What if the woman is +unwilling to follow me to this land? Shall I then +take your son back to the land from which you +6 +came?” + +7 +Abraham replied, “Make sure that you do not +take my son back there. +The LORD, the God of +heaven, who brought me from my father’s house +and my native land, who spoke to me and prom- +ised me on oath, saying, ‘To your offspring I will +give this land’—He will send His angel before you +8 +so that you can take a wife for my son from there. +And if the woman is unwilling to follow you, +then you are released from this oath of mine. +9 +Only do not take my son back there.” + +So the servant placed his hand under the thigh +of his master Abraham and swore an oath to him +10 +concerning this matter. + +Then the servant took ten of his master’s cam- +els and departed with all manner of good things +from his master in hand. And he set out for +Nahor’s hometown in Aram-naharaim. +As +evening approached, he made the camels kneel +down near the well outside the town at the time +a 10 +when the women went out to draw water. + +Aram-naharaim + +11 + +a + +b 22 A beka + +14 + +13 + +“O LORD, God of my master Abraham,” he +prayed, “please grant me success today, and +Here I +show kindness to my master Abraham. +am, standing beside the spring, and the daugh- +ters of the townspeople are coming out to draw +Now may it happen that the girl to +water. +whom I say, ‘Please let down your jar that I +may drink,’ and who responds, ‘Drink, and I will +water your camels as well’—let her be the one +You have appointed for Your servant Isaac. By +this I will know that You have shown kindness to +Rebekah Is Chosen +my master.” +15 + +Before the servant had finished praying, Re- +bekah came out with her jar on her shoulder. She +was the daughter of Bethuel son of Milcah, the +wife of Abraham’s brother Nahor. +Now the girl +was very beautiful, a virgin who had not had re- +lations with any man. She went down to the +17 +spring, filled her jar, and came up again. + +16 + +So the servant ran to meet her and said, +18 +“Please let me have a little water from your jar.” + +“Drink, my lord,” she replied, and she quickly +lowered her jar to her hands and gave him a +19 +drink. + +20 + +After she had given him a drink, she said, “I will +also draw water for your camels, until they have +And she quickly emptied +had enough to drink.” +her jar into the trough and ran back to the well to +draw water, until she had drawn water for all his +21 +camels. + +Meanwhile, the man watched her silently to +see whether or not the LORD had made his jour- +22 +ney a success. + +b + +23 + +And after the camels had finished drinking, he +took out a gold ring weighing a beka, + and two +c +gold bracelets for her wrists weighing ten shek- +“Whose daughter are you?” he asked. +els. +“Please tell me, is there room in your father’s +24 +house for us to spend the night?” + +25 + +She replied, “I am the daughter of Bethuel, the +Then she +son that Milcah bore to Nahor.” +added, “We have plenty of straw and feed, as well +26 +as a place for you to spend the night.” + +27 + +Then the man bowed down and worshiped the +saying, “Blessed be the LORD, the God +LORD, +Aram of the two rivers +of my master Abraham, who has not withheld His + +That is, Mesopotamia; + +c 22 10 shekels +Balih Rivers in northwestern Mesopotamia. + + means + +, likely the region between the Euphrates and + is half a shekel, or approximately 0.2 ounces or 5.7 grams. + + is approximately 4 ounces or 114 grams. + + kindness and faithfulness from my master. As for +me, the LORD has led me on the journey to the +28 +house of my master’s relatives.” + +29 + +The girl ran and told her mother’s household +Now Rebekah had a +about these things. +30 +brother named Laban, and he rushed out to the +As soon as he saw the ring, +man at the spring. +and the bracelets on his sister’s wrists, and heard +Rebekah’s words, “The man said this to me,” he +went and found the man standing by the camels +31 +near the spring. + +“Come, you who are blessed by the LORD,” said +Laban. “Why are you standing out here? I have +32 +prepared the house and a place for the camels.” +So the man came to the house, and the camels +were unloaded. Straw and feed were brought to +the camels, and water to wash his feet and the +33 +feet of his companions. + +Then a meal was set before the man, but he +said, “I will not eat until I have told you what I +came to say.” +34 +So Laban said, “Please speak.” + +35 + +“I am Abraham’s servant,” he replied. + +“The +LORD has greatly blessed my master, and he has +become rich. He has given him sheep and cattle, +silver and gold, menservants and maidservants, +My master’s wife Sarah +camels and donkeys. +has borne him a son in her old age, and my mas- +37 +ter has given him everything he owns. + +36 + +38 + +My master made me swear an oath and said, +‘You shall not take a wife for my son from the +daughters of the Canaanites in whose land I +but you shall go to my father’s house +dwell, +39 +and to my kindred to take a wife for my son.’ + +Then I asked my master, ‘What if the woman + +40 +will not come back with me?’ + +And he told me, ‘The LORD, before whom I +have walked, will send His angel with you and +make your journey a success, so that you may +take a wife for my son from my kindred and from +And when you go to my kin- +my father’s house. +dred, if they refuse to give her to you, then you +42 +will be released from my oath.’ + +41 + +43 + +So when I came to the spring today, I prayed: +O LORD, God of my master Abraham, if only You +would make my journey a success! +Here I am, +standing beside this spring. Now if a maiden +44 +comes out to draw water and I say to her, ‘Please +and +let me drink a little water from your jar,’ +she replies, ‘Drink, and I will draw water for your + +Genesis 24:58 | 25 + +camels as well,’ may she be the woman the LORD +45 +has appointed for my master’s son. + +And before I had finished praying in my heart, +there was Rebekah coming out with her jar on +her shoulder, and she went down to the spring +and drew water. So I said to her, ‘Please give me +46 +a drink.’ + +She quickly lowered her jar from her shoulder +and said, ‘Drink, and I will water your camels as +well.’ So I drank, and she also watered the cam- +47 +els. + +Then I asked her, ‘Whose daughter are you?’ + +She replied, ‘The daughter of Bethuel son of Na- +hor, whom Milcah bore to him.’ So I put the ring +48 +on her nose and the bracelets on her wrists. +Then I bowed down and worshiped the LORD; +and I blessed the LORD, the God of my master +Abraham, who led me on the right road to take +the granddaughter of my master’s brother for his +49 +son. + +Now if you will show kindness and faithfulness +to my master, tell me; but if not, let me know, so +50 +that I may go elsewhere.” + +51 + +Laban and Bethuel answered, “This is from the +LORD; we have no choice in the matter. +Re- +bekah is here before you. Take her and go, and let +her become the wife of your master’s son, just as +52 +the LORD has decreed.” + +When Abraham’s servant heard their words, +53 +he bowed down to the ground before the LORD. +Then he brought out jewels of silver and gold, +and articles of clothing, and he gave them to Re- +bekah. He also gave precious gifts to her brother +Then he and the men with him +and her mother. +ate and drank and spent the night there. + +54 + +When they got up the next morning, he said, +55 +“Send me on my way to my master.” + +But her brother and mother said, “Let the girl +remain with us ten days or so. After that, she may +56 +go.” + +But he replied, “Do not delay me, since the +LORD has made my journey a success. Send me +57 +on my way so that I may go to my master.” + +So they said, “We will call the girl and ask her + +58 +opinion.” + +They called Rebekah and asked her, “Will you + +go with this man?” + +“I will go,” she replied. + + 26 | Genesis 24:59 + +59 + +9 + +60 + +So they sent their sister Rebekah on her way, +along with her nurse and Abraham’s servant and +And they blessed Rebekah and said to +his men. +her, + +“Our sister, may you become the mother + +of thousands upon thousands. + +61 + +May your offspring possess + +the gates of their enemies.” + +Then Rebekah and her servant girls got ready, +mounted the camels, and followed the man. So +Isaac Marries Rebekah +the servant took Rebekah and left. +62 + +63 + +Now Isaac had just returned from Beer-lahai- +Early in the +roi, for he was living in the Negev. +evening, Isaac went out to the field to meditate, +64 +and looking up, he saw the camels approaching. + +65 + +And when Rebekah looked up and saw Isaac, +and asked the +she got down from her camel +servant, “Who is that man in the field coming to +meet us?” + +66 + +“It is my master,” the servant answered. So she +Then the +took her veil and covered herself. +67 +servant told Isaac all that he had done. + +And Isaac brought her into the tent of his +mother Sarah and took Rebekah as his wife. And +Isaac loved her and was comforted after his +Abraham and Keturah (1 Chronicles 1:32–33) +mother’s death. + +25 + +2 + +Now Abraham had taken another wife, +and she bore him Zim- +named Keturah, +3 +ran, Jokshan, Medan, Midian, Ishbak, and Shuah. + +Jokshan was the father of Sheba and Dedan. And +the sons of Dedan were the Asshurites, the Le- +4 +tushites, and the Leummites. + +The sons of Midian were Ephah, Epher, Hanoch, + +Abida, and Eldaah. +5 +All these were descendants of Keturah. +6 + +Abraham left everything he owned to Isaac. +But while he was still alive, Abraham gave gifts +to the sons of his concubines and sent them away +The Death of Abraham +from his son Isaac to the land of the east. +7 + +8 + +Abraham lived a total of 175 years. + +And at a +ripe old age he breathed his last and died, old and +contented, and was gathered to his people. +c 23 +a 18 + +Assyria + +b 20 + +hairy + +His sons Isaac and Ishmael buried him in the +cave of Machpelah near Mamre, in the field of +This was the +Ephron son of Zohar the Hittite. +field that Abraham had bought from the Hittites. +11 +Abraham was buried there with his wife Sarah. + +10 + +After Abraham’s death, God blessed his son + +The Descendants of Ishmael (1 Chr. 1:28–31) +Isaac, who lived near Beer-lahai-roi. +12 + +13 + +This is the account of Abraham’s son Ishmael, +whom Hagar the Egyptian, Sarah’s maidservant, +These are the names of the +bore to Abraham. +sons of Ishmael in the order of their birth: Nebai- +oth the firstborn of Ishmael, then Kedar, Adbeel, +Hadad, +Mishma, Dumah, Massa, +Mibsam, +16 +Tema, Jetur, Naphish, and Kedemah. + +15 + +14 + +These were the sons of Ishmael, and these +were their names by their villages and encamp- +Ishmael +ments—twelve princes of their tribes. +lived a total of 137 years. Then he breathed his +18 +last and died, and was gathered to his people. + +17 + +a + +Ishmael’s descendants settled from Havilah to +Shur, which is near the border of Egypt as you go + And they lived in hostility to- +toward Asshur. +Jacob and Esau (Mal. 1:1–5 ; Rom. 9:6–29) +ward all their brothers. +19 + +20 + +This is the account of Abraham’s son Isaac. +and Isaac +Abraham became the father of Isaac, +was forty years old when he married Rebekah, +the daughter of Bethuel the Aramean from Pad- +21 +dan-aram + and the sister of Laban the Aramean. + + b + +Later, Isaac prayed to the LORD on behalf +of his wife, because she was barren. And the +LORD heard his prayer, and his wife Rebekah +22 +conceived. + +But the children inside her struggled with each +other, and she said, “Why is this happening to +23 +me?” So Rebekah went to inquire of the LORD, + +and He declared to her: + +“Two nations are in your womb, + +and two peoples from within you will be + +separated; + + c + +24 + +one people will be stronger than the other, +and the older will serve the younger.” + +25 + +When her time came to give birth, there were +The first one came +indeed twins in her womb. +out red, covered with hair like a fur coat; so they +named him Esau. +After this, his brother came + +d 25 Esau + +26 + +d + +Or +that means + +. + +That is, northwest Mesopotamia + +Cited in Romans 9:12 + + sounds like a Hebrew term + + a + +out grasping Esau’s heel; so he was named Ja- +cob. + And Isaac was sixty years old when the +27 +twins were born. + +28 + +When the boys grew up, Esau became a skillful +hunter, a man of the field, while Jacob was a quiet +Because Isaac had a +man who stayed at home. +taste for wild game, he loved Esau; but Rebekah +Esau Sells His Birthright +loved Jacob. +29 + +One day, while Jacob was cooking some stew, +30 +Esau came in from the field and was famished. +He said to Jacob, “Let me eat some of that red +stew, for I am famished.” (That is why he was also +31 +called Edom. +32 + +“First sell me your birthright,” Jacob replied. + +) + +b + +“Look,” said Esau, “I am about to die, so what + +33 +good is a birthright to me?” + +“Swear to me first,” Jacob said. + +34 + +So Esau swore to Jacob and sold him the birth- +Then Jacob gave some bread and lentil +right. +stew to Esau, who ate and drank and then got up +and went away. Thus Esau despised his birth- +God’s Promise to Isaac (Genesis 12:1–9) +right. + +26 + +Now there was another famine in the +land, subsequent to the one that had oc- +curred in Abraham’s time. And Isaac went to +2 +Abimelech king of the Philistines at Gerar. + +3 + +4 + +The LORD appeared to Isaac and said, “Do not +go down to Egypt. Settle in the land where I tell +you. +Stay in this land as a foreigner, and I will be +with you and bless you. For I will give all these +lands to you and your offspring, and I will con- +firm the oath that I swore to your father Abra- +ham. +I will make your descendants as numerous +as the stars in the sky, and I will give them all +these lands, and through your offspring all na- +tions of the earth will be blessed, +because Abra- +ham listened to My voice and kept My charge, My +Isaac Deceives Abimelech +commandments, My statutes, and My laws.” +6 + +7 + +5 + +So Isaac settled in Gerar. + +But when the men of +that place asked about his wife, he said, “She is +my sister.” For he was afraid to say, “She is my +wife,” since he thought to himself, “The men of +this place will kill me on account of Rebekah, be- +a 26 Jacob +cause she is so beautiful.” +d 20 Esek + +he grasps the heel +contention + +he deceives + +b 30 Edom + + means + means + +e 21 Sitnah + or + +enmity +. + +hostility + +. + + means + + or + +Genesis 26:24 | 27 + +8 + +When Isaac had been there a long time, +Abimelech king of the Philistines looked down +from the window and was surprised to see Isaac +Abimelech sent for +caressing his wife Rebekah. +Isaac and said, “So she is really your wife! How +could you say, ‘She is my sister’?” + +9 + +Isaac replied, “Because I thought I might die on +10 +account of her.” + +“What is this you have done to us?” asked +Abimelech. “One of the people could easily have +11 +slept with your wife, and you would have +So Abimelech warned +brought guilt upon us.” +all the people, saying, “Whoever harms this man +Isaac’s Prosperity +or his wife will surely be put to death.” +12 + +14 + +13 + +Now Isaac sowed seed in the land, and that +very year he reaped a hundredfold. And the +and he became richer and +LORD blessed him, +He +richer, until he was exceedingly wealthy. +owned so many flocks and herds and servants +So the Philis- +that the Philistines envied him. +tines took dirt and stopped up all the wells that +his father’s servants had dug in the days of his fa- +16 +ther Abraham. + +15 + +Then Abimelech said to Isaac, “Depart from us, + +17 +for you are much too powerful for us.” +18 + +So Isaac left that place and encamped in +Isaac re- +the Valley of Gerar and settled there. +opened the wells that had been dug in the days of +his father Abraham, which the Philistines had +stopped up after Abraham died. And he gave +these wells the same names his father had given +19 +them. + + c + +20 + +Then Isaac’s servants dug in the valley and +found a well of fresh water +But the +herdsmen of Gerar quarreled with Isaac’s herds- +d +men and said, “The water is ours!” So he named +21 + because they contended with him. +the well Esek, + + there. + +e + +Then they dug another well and quarreled + +22 +over that one also; so he named it Sitnah. + +  f + +He moved on from there and dug another well, +and they did not quarrel over it. He named it Re- + and said, “At last the LORD has made +hoboth +23 +room for us, and we will be fruitful in the land.” + +24 + +From there Isaac went up to Beersheba, + +and +that night the LORD appeared to him and said, “I +am the God of your father Abraham. Do not be + means +. + +red +f 22 Rehoboth +Or + +flowing water + +broad places + +living water + +open spaces + + means + +c 19 + + or + + or + +. + +. + + 28 | Genesis 26:25 + +5 + +afraid, for I am with you. I will bless you and mul- +tiply your descendants for the sake of My servant +25 +Abraham.” + +So Isaac built an altar there and called on the +name of the LORD, and he pitched his tent there. +Isaac’s Covenant with Abimelech +His servants also dug a well there. +26 + +Later, Abimelech came to Isaac from Gerar, +with Ahuzzath his adviser and Phicol the com- +27 +mander of his army. + +“Why have you come to me?” Isaac asked them. + +28 +“You hated me and sent me away.” + +29 + +“We can plainly see that the LORD has been +with you,” they replied. “We recommend that +there should now be an oath between us and you. +that you will +Let us make a covenant with you +not harm us, just as we have not harmed you but +have done only good to you, sending you on your +way in peace. And now you are blessed by the +30 +LORD.” + +31 + +So Isaac prepared a feast for them, and they ate +And they got up early the next +and drank. +morning and swore an oath to each other. Then +Isaac sent them on their way, and they left him in +32 +peace. + +a + +33 + +On that same day, Isaac’s servants came and +told him about the well they had dug. “We have +So he called it +found water!” they told him. +Shibah, + and to this day the name of the city is +Esau’s Wives +Beersheba. +34 + +b + +When Esau was forty years old, he took as his +wives Judith daughter of Beeri the Hittite and +Basemath daughter of Elon the Hittite. +And +Isaac Blesses Jacob (Hebrews 11:20) +they brought grief to Isaac and Rebekah. + +35 + +27 + +When Isaac was old and his eyes were so +weak that he could no longer see, he +called his older son Esau and said to him, “My +son.” +2 +“Here I am,” Esau replied. + +3 + +“Look,” said Isaac, “I am now old, and I do +Take your weap- +not know the day of my death. +4 +ons—your quiver and bow—and go out into the +Then prepare a +field to hunt some game for me. +tasty dish that I love and bring it to me to eat, so +a 33 Shibah +that I may bless you before I die.” + +b 33 Beersheba + +seven + +oath + + can mean + + or + +. + + means + +6 + +Now Rebekah was listening to what Isaac told +his son Esau. So when Esau went into the field to +Rebekah said to +hunt game and bring it back, +7 +her son Jacob, “Behold, I overheard your father +saying to your brother Esau, +‘Bring me some +game and prepare me a tasty dish to eat, so that +I may bless you in the presence of the LORD be- +8 +fore I die.’ + +9 + +Now, my son, listen to my voice and do exactly +Go out to the flock and bring me +as I tell you. +two choice young goats, so that I can make them +10 +into a tasty dish for your father—the kind he +Then take it to your father to eat, so that +loves. +11 +he may bless you before he dies.” + +12 + +Jacob answered his mother Rebekah, “Look, +my brother Esau is a hairy man, but I am smooth- +What if my father touches me? Then +skinned. +I would be revealed to him as a deceiver, and I +would bring upon myself a curse rather than a +13 +blessing.” + +His mother replied, “Your curse be on me, my +14 +son. Just obey my voice and go get them for me.” + +15 + +So Jacob went and got two goats and brought +them to his mother, who made the tasty food his +And Rebekah took the finest +father loved. +clothes in the house that belonged to her older +16 +son Esau, and she put them on her younger son +She also put the skins of the young goats +Jacob. +17 +on his hands and on the smooth part of his neck. +Then she handed her son Jacob the tasty food + +18 +and bread she had made. + +So Jacob went to his father and said, “My + +father.” + +“Here I am!” he answered. “Which one are you, +19 +my son?” + +Jacob said to his father, “I am Esau, your +firstborn. I have done as you told me. Please sit +up and eat some of my game, so that you may +20 +bless me.” + +But Isaac asked his son, “How did you ever find + +it so quickly, my son?” + +“Because the LORD your God brought it to me,” +21 +he replied. + +Then Isaac said to Jacob, “Please come closer +so I can touch you, my son. Are you really my son +22 +Esau, or not?” + +well of seven + +So Jacob came close to his father Isaac, who +touched him and said, “The voice is the voice of +. + +well of the oath + + or + + 23 +Jacob, but the hands are the hands of Esau.” +Isaac did not recognize him, because his hands +were hairy like those of his brother Esau; so he +24 +blessed him. + +Again he asked, “Are you really my son Esau?” + +25 +And he replied, “I am.” + +“Serve me,” said Isaac, “and let me eat some of + +my son’s game, so that I may bless you.” + +Jacob brought it to him, and he ate; then he +26 +brought him wine, and he drank. + +Then his father Isaac said to him, “Please come + +27 +near and kiss me, my son.” + +So he came near and kissed him. When Isaac + +smelled his clothing, he blessed him and said: + +“Ah, the smell of my son + +28 + +is like the smell of a field +that the LORD has blessed. + +May God give to you the dew of heaven + +29 + +and the richness of the earth— +an abundance of grain and new wine. + +May peoples serve you + +and nations bow down to you. + +May you be the master of your brothers, +and may the sons of your mother bow + +down to you. + +May those who curse you be cursed, + +Esau’s Lost Hope + +and those who bless you be blessed.” + +30 + +31 + +As soon as Isaac had finished blessing him and +Jacob had left his father’s presence, his brother +Esau returned from the hunt. +He too made +some tasty food, brought it to his father, and said +to him, “My father, sit up and eat of your son’s +32 +game, so that you may bless me.” + +But his father Isaac replied, “Who are you?” + +33 +“I am Esau, your firstborn son,” he answered. + +Isaac began to tremble violently and said, +“Who was it, then, who hunted the game and +brought it to me? Before you came in, I ate it all +indeed, he will be +and blessed him—and +34 +blessed!” + +When Esau heard his father’s words, he let out +a loud and bitter cry and said to his father, “Bless +35 +me too, O my father!” + +Genesis 28:3 | 29 + +36 + + a + +So Esau declared, “Is he not rightly named Ja- +cob? + For he has cheated me twice. He took my +birthright, and now he has taken my blessing.” +Then he asked, “Haven’t you saved a blessing for +37 +me?” + +But Isaac answered Esau: “Look, I have made +him your master and given him all his relatives +as servants; I have sustained him with grain and +new wine. What is left that I can do for you, my +38 +son?” + +Esau said to his father, “Do you have only one +blessing, my father? Bless me too, O my father!” +39 +Then Esau wept aloud. + +His father Isaac answered him: + +“Behold, your dwelling place shall be + +40 + +away from the richness of the land, +away from the dew of heaven above. + +You shall live by the sword +and serve your brother. + +But when you rebel, + +41 + +you will tear his yoke from your neck.” + +Esau held a grudge against Jacob because of +the blessing his father had given him. And Esau +said in his heart, “The days of mourning for my +father are at hand; then I will kill my brother +42 +Jacob.” + +44 + +43 + +When the words of her older son Esau were re- +layed to Rebekah, she sent for her younger son +Jacob and told him, “Look, your brother Esau is +consoling himself by plotting to kill you. +So +now, my son, obey my voice and flee at once to +my brother Laban in Haran. +Stay with him for +45 +a while, until your brother’s fury subsides— +until your brother’s rage against you wanes +and he forgets what you have done to him. Then +I will send for you and bring you back from there. +46 +Why should I lose both of you in one day?” + +b + +Then Rebekah said to Isaac, “I am weary of my +life because of these Hittite women. + If Jacob +takes a Hittite wife from among them, what good +Jacob’s Departure +is my life?” + +28 + +c + +2 + +So Isaac called for Jacob and blessed +him. “Do not take a wife from the Ca- +“Go at once to +naanite women,” he commanded. +Paddan-aram, + to the house of your mother’s fa- +ther Bethuel, and take a wife from among the +May +daughters of Laban, your mother’s brother. + +c 2 + +3 + +But Isaac replied, “Your brother came deceit- + +he deceives + +b 46 + +daughters of Heth + +a 36 Jacob +fully and took your blessing.” + or + +he grasps the heel + + means + +in verses 5, 6, and 7 + +. + +Or + +That is, northwest Mesopotamia; also + + 30 | Genesis 28:4 + + a + +4 + + bless you and make you fruitful +God Almighty +and multiply you, so that you may become a com- +And may He give the blessing +pany of peoples. +of Abraham to you and your descendants, so that +you may possess the land where you dwell as a +5 +foreigner, the land God gave to Abraham.” + +So Isaac sent Jacob to Paddan-aram, to Laban +son of Bethuel the Aramean, the brother of Re- +Esau Marries Mahalath +bekah, who was the mother of Jacob and Esau. + +6 + +7 + +Now Esau learned that Isaac had blessed +Jacob and sent him to Paddan-aram to take a wife +there, commanding him, “Do not marry a Ca- +and that Jacob had obeyed his +naanite woman,” +8 +father and mother and gone to Paddan-aram. + +9 +And seeing that his father Isaac disapproved of +Esau went to Ishmael +the Canaanite women, +and married Mahalath, the sister of Nebaioth and +daughter of Abraham’s son Ishmael, in addition +Jacob’s Ladder +to the wives he already had. + +10 + +11 + +Meanwhile Jacob left Beersheba and set out for +On reaching a certain place, he spent +Haran. +the night there because the sun had set. And tak- +ing one of the stones from that place, he put it un- +12 +der his head and lay down to sleep. + + b + +14 + +13 + +And there at the top + +And Jacob had a dream about a ladder that +rested on the earth with its top reaching up to +heaven, and God’s angels were going up and +down the ladder. + the +LORD was standing and saying, “I am the LORD, +the God of your father Abraham and the God of +Isaac. I will give you and your descendants the +Your descendants +land on which you now lie. +will be like the dust of the earth, and you will +spread out to the west and east and north and +south. All the families of the earth will be blessed +Look, I am +through you and your offspring. +with you, and I will watch over you wherever you +go, and I will bring you back to this land. For I will +not leave you until I have done what I have prom- +16 +ised you.” + +15 + +The Stone of Bethel + +18 + +Early the next morning, Jacob took the stone +that he had placed under his head, and he set it +c +and he +up as a pillar. He poured oil on top of it, + though previously the +called that place Bethel, +20 +city had been named Luz. + +19 + +21 + +Then Jacob made a vow, saying, “If God will be +with me and watch over me on this journey, and +if He will provide me with food to eat and clothes +so that I may return safely to my fa- +to wear, +22 +ther’s house, then the LORD will be my God. +And this stone I have set up as a pillar will be +God’s house, and of all that You give me I will +Jacob Meets Rachel +surely give You a tenth.” + +29 + +2 + +Jacob resumed his journey and came to +He +the land of the people of the east. +looked and saw a well in the field, and near it lay +three flocks of sheep, because the sheep were +watered from this well. And a large stone cov- +When all the flocks +ered the mouth of the well. +had been gathered there, the shepherds would +roll away the stone from the mouth of the well +and water the sheep. Then they would return the +4 +stone to its place over the mouth of the well. + +3 + +“My brothers,” Jacob asked the shepherds, + +“where are you from?” +5 +“We are from Haran,” they answered. + +“Do you know Laban the grandson of Nahor?” + +Jacob asked. +6 +“We know him,” they replied. + +“Is he well?” Jacob inquired. + +“Yes,” they answered, “and here comes his +7 +daughter Rachel with his sheep.” + +“Look,” said Jacob, “it is still broad daylight; it is +not yet time to gather the livestock. Water the +8 +sheep and take them back to pasture.” + +But they replied, “We cannot, until all the flocks +have been gathered and the stone has been +rolled away from the mouth of the well. Then we +9 +will water the sheep.” + +10 + +While he was still speaking with them, Rachel +arrived with her father’s sheep, for she was a +As soon as Jacob saw Rachel, the +shepherdess. +daughter of his mother’s brother Laban, with La- +ban’s sheep, he went up and rolled the stone +away from the mouth of the well and watered his + +house of God + +When Jacob woke up, he said, “Surely the +17 +LORD is in this place, and I was unaware of it.” +And he was afraid and said, “How awesome is +this place! This is none other than the house of +God; this is the gate of heaven!” + a 3 + +there beside him + +El-Shaddai + +b 13 + +c 19 Bethel + +Hebrew + +Or + + means + +. + + 11 + +29 + +Genesis 30:8 | 31 + +12 +Then Jacob kissed Rachel and +uncle’s sheep. +He told Rachel that he was Re- +wept aloud. +bekah’s son, a relative of her father, and she ran +13 +and told her father. + +When Laban heard the news about his +sister’s son Jacob, he ran out to meet him. He em- +braced him and kissed him and brought him to +his home, where Jacob told him all that had hap- +Jacob Marries Leah and Rachel +pened. +14 + +Then Laban declared, “You are indeed my own + +15 + +flesh and blood.” + +After Jacob had stayed with him a month, +La- +ban said to him, “Just because you are my rela- +tive, should you work for nothing? Tell me what +16 +your wages should be.” + +18 + +Leah had weak eyes, + +Now Laban had two daughters; the older was +a +17 +named Leah, and the younger was named Rachel. + but Rachel was shapely +Since Jacob loved Rachel, he an- +and beautiful. +swered, “I will serve you seven years for your +19 +younger daughter Rachel.” + +20 + +Laban replied, “Better that I give her to you +So Jacob +than to another. Stay here with me.” +served seven years for Rachel, yet it seemed but +21 +a few days because of his love for her. + +Finally Jacob said to Laban, “Grant me my wife, +for my time is complete, and I want to sleep with +22 +her.” + +23 + +So Laban invited all the men of that place and +But when evening came, +prepared a feast. +Laban took his daughter Leah and gave her to Ja- +cob, and he slept with her. +And Laban gave his +servant girl Zilpah to his daughter Leah as her +25 +maidservant. + +24 + +When morning came, there was Leah! “What +have you done to me?” Jacob said to Laban. +“Wasn’t it for Rachel that I served you? Why have +26 +you deceived me?” + +27 + +Laban replied, “It is not our custom here to +give the younger daughter in marriage before the +Finish this week’s celebration, and we +older. +will give you the younger one in return for an- +28 +other seven years of work.” + +had delicate eyes + +And Jacob did just that. He finished the week’s + b 32 Reuben +a 17 +celebration, and Laban gave him his daughter +c 33 Simeon +Or +for + +Look, a son +d 34 Levi + +one who hears + +praise + +f 3 + +e 35 Judah +He has vindicated +. + + probably means + +h 8 Naphtali + sounds like the Hebrew for + + means +. + +Laban also gave his servant +Rachel as his wife. +girl Bilhah to his daughter Rachel as her maidser- +30 +vant. + +Jacob slept with Rachel as well, and indeed, he +loved Rachel more than Leah. So he worked for +Reuben, Simeon, Levi, and Judah +Laban another seven years. +31 + +When the LORD saw that Leah was unloved, +32 +He opened her womb; but Rachel was barren. +And Leah conceived and gave birth to a son, +and she named him Reuben, + for she said, “The +LORD has seen my affliction. Surely my husband +33 +will love me now.” + +b + +Again she conceived and gave birth to a son, +and she said, “Because the LORD has heard that I +c +am unloved, He has given me this son as well.” So +34 +she named him Simeon. + +Once again Leah conceived and gave birth to a +son, and she said, “Now at last my husband will +become attached to me, because I have borne +35 +him three sons.” So he was named Levi. + +d + +And once more she conceived and gave birth +to a son and said, “This time I will praise the + Then Leah +LORD.” So she named him Judah. +Dan and Naphtali +stopped having children. + +e + +30 + +When Rachel saw that she was not bear- +ing any children for Jacob, she envied her +sister. “Give me children, or I will die!” she said +2 +to Jacob. + +Jacob became angry with Rachel and said, “Am +I in the place of God, who has withheld children +3 +from you?” + +f + +Then she said, “Here is my maidservant Bilhah. +Sleep with her, that she may bear children for +4 + so that through her I too can build a family.” +me, + +5 + +So Rachel gave Jacob her servant Bilhah as a +6 +and Bilhah con- +wife, and he slept with her, +Then Rachel said, +ceived and bore him a son. +“God has vindicated me; He has heard my plea +7 +and given me a son.” So she named him Dan. + +g + +8 + +And Rachel’s servant Bilhah conceived again +Then Rachel said, +and bore Jacob a second son. +“In my great struggles, I have wrestled with my +sister and won.” So she named him Naphtali. +being attached to +feeling affection +. +g 6 Dan + +bear children on my knees + +He has seen my misery + +He has judged + +h + + and also sounds like the Hebrew for + + sounds like the Hebrew for +wrestling + +. + +Literally + + or + means + +or + +. + + sounds like the Hebrew for + +. + + 32 | Genesis 30:9 + +Gad and Asher + +9 + +10 + +When Leah saw that she had stopped having +children, she gave her servant Zilpah to Jacob as +11 +a wife. +And Leah’s servant Zilpah bore Jacob a +son. + So she +12 +named him Gad. + +Then Leah said, “How fortunate!” + + a + +b + +13 + +c + +When Leah’s servant Zilpah bore Jacob a sec- +Leah said, “How happy I am! For the +ond son, +women call me happy.” So she named him +14 +Asher. + +Now during the wheat harvest, Reuben went +out and found some mandrakes in the field. +When he brought them to his mother, Rachel +begged Leah, “Please give me some of your son’s +15 +mandrakes.” + +But Leah replied, “Is it not enough that you +have taken away my husband? Now you want to +take my son’s mandrakes as well?” + +“Very well,” said Rachel, “he may sleep with you +16 +tonight in exchange for your son’s mandrakes.” + +When Jacob came in from the field that even- +ing, Leah went out to meet him and said, “You +must come with me, for I have hired you with my +Issachar, Zebulun, and Dinah +son’s mandrakes.” So he slept with her that night. +17 + +18 + +And God listened to Leah, and she conceived +Then Leah said, +and bore a fifth son to Jacob. +“God has rewarded me for giving my maidservant +19 +to my husband.” So she named him Issachar. + +d + +20 + +Again Leah conceived and bore a sixth son to +“God has given me a good gift,” she said. +Jacob. +“This time my husband will honor me, because I +e +have borne him six sons.” And she named him +21 +Zebulun. + +After that, Leah gave birth to a daughter and + +Joseph +named her Dinah. +22 + +23 + +24 + +Then God remembered Rachel. He listened to +and she conceived +her and opened her womb, +and gave birth to a son. “God has taken away my + and +shame,” she said. +Jacob Prospers +said, “May the LORD add to me another son.” +25 + +She named him Joseph, + +f + +26 + +return to my homeland. +Give me my wives and +children for whom I have served you, that I may +go on my way. You know how hard I have worked +27 +for you.” + +28 + +But Laban replied, “If I have found favor in +your eyes, please stay. I have learned by divina- +tion that the LORD has blessed me because of +And he added, “Name your wages, and I +you.” +29 +will pay them.” + +30 + +Then Jacob answered, “You know how I have +served you and how your livestock have thrived +Indeed, you had very little be- +under my care. +fore my arrival, but now your wealth has in- +creased many times over. The LORD has blessed +you wherever I set foot. But now, when may I +31 +also provide for my own household?” + +“What can I give you?” Laban asked. + +32 + +“You do not need to give me anything,” Jacob re- +plied. “If you do this one thing for me, I will keep +Let +on shepherding and keeping your flocks. +me go through all your flocks today and remove +from them every speckled or spotted sheep, +every dark-colored lamb, and every spotted or +So my +speckled goat. These will be my wages. +honesty will testify for me when you come to +check on my wages in the future. If I have any +goats that are not speckled or spotted, or any +lambs that are not dark-colored, they will be con- +34 +sidered stolen.” + +33 + +“Agreed,” said Laban. “Let it be as you have + +35 +said.” + +That very day Laban removed all the streaked +or spotted male goats and every speckled or +spotted female goat—every one that had any +white on it—and every dark-colored lamb, and +36 +he placed them under the care of his sons. +Then he put a three-day journey between him- +self and Jacob, while Jacob was shepherding the +37 +rest of Laban’s flocks. + +Jacob, however, took fresh branches of poplar, +almond, and plane trees, and peeled the bark, ex- +38 +posing the white inner wood of the branches. +Then he set the peeled branches in the water- +ing troughs in front of the flocks coming in to +drink. So when the flocks were in heat and came +they mated in front of the branches. +to drink, +And they bore young that were streaked or +b 11 Gad +“A troop is coming!” +speckled or spotted. +Jacob set apart the young, + sounds like the Hebrew + +d 18 Issachar + +40 + +39 + +may He add + + sounds like the Hebrew for + +happy +f 24 Joseph +. + + means +. + +Now after Rachel had given birth to Joseph, Ja- +a 11 +cob said to Laban, “Send me on my way so I can + +good fortune +Alternate MT reading (see also LXX); the other alternate reads +reward + +band of raiders + +c 13 Asher + +honor + +wages +for + + or + +e 20 Zebulun +, or alternately for +. + +. + + sounds like the Hebrew for + + means + +. + + but made the rest face the streaked dark-colored +sheep in Laban’s flocks. Then he set his own +stock apart and did not put them with Laban’s +41 +animals. + +Whenever the stronger females of the flock +were in heat, Jacob would place the branches in +the troughs, in full view of the animals, so that +they would breed in front of the branches. +But +if the animals were weak, he did not set out the +branches. So the weaker animals went to Laban +43 +and the stronger ones to Jacob. + +42 + +Thus Jacob became exceedingly prosperous. +He owned large flocks, maidservants and men- +Jacob Flees from Laban +servants, and camels and donkeys. + +31 + +Now Jacob heard that Laban’s sons were +saying, “Jacob has taken away all that be- +2 +longed to our father and built all this wealth at +our father’s expense.” +And Jacob saw from the +countenance of Laban that his attitude toward +3 +him had changed. + +Then the LORD said to Jacob, “Go back to the +land of your fathers and to your kindred, and I +4 +will be with you.” + +5 + +7 + +So Jacob sent word and called Rachel and Leah +and he told +to the field where his flocks were, +them, “I can see from your father’s countenance +6 +that his attitude toward me has changed; but the +You know +God of my father has been with me. +that I have served your father with all my +strength. +And although he has cheated me and +8 +changed my wages ten times, God has not al- +If he said, ‘The speckled +lowed him to harm me. +will be your wages,’ then the whole flock bore +speckled offspring. If he said, ‘The streaked will +be your wages,’ then the whole flock bore +Thus God has taken away +streaked offspring. +10 +your father’s livestock and given them to me. + +9 + + a + +When the flocks were breeding, I saw in a +dream that the streaked, spotted, and speckled +males were mating with the females. +In that +dream the angel +12 +And I replied, ‘Here I am.’ + + of God said to me, ‘Jacob!’ + +11 + +13 + +‘Look up,’ he said, ‘and see that all the males +that are mating with the flock are streaked, spot- +ted, or speckled; for I have seen all that Laban has +done to you. +I am the God of Bethel, where you +anointed the pillar and made a solemn vow to +Me. Now get up, leave this land at once, and re- +c 20 +a 11 +turn to your native land.’ + +Angel + +b 18 + +” + +Or + +That is, northwest Mesopotamia + +Or + +Genesis 31:32 | 33 + +14 + +And Rachel and Leah replied, “Do we have any +15 +portion or inheritance left in our father’s house? +Are we not regarded by him as outsiders? Not +only has he sold us, but he has certainly squan- +Surely all the +dered what was paid for us. +wealth that God has taken away from our father +belongs to us and to our children. So do whatever +17 +God has told you.” +18 + +16 + +Then Jacob got up and put his children and his +wives on camels, +and he drove all his livestock +before him, along with all the possessions he had +acquired in Paddan-aram, + to go to his father +19 +Isaac in the land in Canaan. + +b + + c + +father’s household + +Moreover, Jacob deceived + +Now while Laban was out shearing his sheep, +20 +idols. +Rachel stole her + Laban the Aramean +21 +by not telling him that he was running away. +So he fled with all his possessions, crossed the + and headed for the hill country of + +d + +Euphrates, +Laban Pursues Jacob +Gilead. +22 + +23 + +24 + +On the third day Laban was informed that Ja- +So he took his relatives with him, +cob had fled. +pursued Jacob for seven days, and overtook him +in the hill country of Gilead. +But that night God +came to Laban the Aramean in a dream and +warned him, “Be careful not to say anything to Ja- +25 +cob, either good or bad.” + +27 + +Now Jacob had pitched his tent in the hill coun- +try of Gilead when Laban overtook him, and La- +26 +ban and his relatives camped there as well. +Then Laban said to Jacob, “What have you +done? You have deceived me and carried off my +daughters like captives of war! +Why did you +run away secretly and deceive me, without even +telling me? I would have sent you away with joy +and singing, with tambourines and harps. +But +you did not even let me kiss my grandchildren +and my daughters goodbye. Now you have done +29 +a foolish thing. + +28 + +30 + +I have power to do you great harm, but last +night the God of your father said to me, ‘Be care- +ful not to say anything to Jacob, either good or +Now you have gone off because you long +bad.’ +for your father’s house. But why have you stolen +31 +my gods?” + +“I was afraid,” Jacob answered, “for I thought +32 +you would take your daughters from me by force. +If you find your gods with anyone here, he +the River +stole the heart of +shall not live! In the presence of our relatives, see +; also in vv. 26 and 27 + +Heb. + +d 21 + + 34 | Genesis 31:33 + +for yourself if anything is yours, and take it back.” +For Jacob did not know that Rachel had stolen +33 +the idols. + +34 + +So Laban went into Jacob’s tent, then Leah’s +tent, and then the tents of the two maidservants, +but he found nothing. Then he left Leah’s tent +Now Rachel had +and entered Rachel’s tent. +taken Laban’s household idols, put them in the +saddlebag of her camel, and was sitting on them. +And Laban searched everything in the tent but +35 +found nothing. + +Rachel said to her father, “Sir, do not be angry +that I cannot stand up before you; for I am having +my period.” So Laban searched but could not find +36 +the household idols. + +37 + +Then Jacob became incensed and challenged +Laban. “What is my crime?” he said. “For what sin +You +of mine have you so hotly pursued me? +have searched all my goods! Have you found an- +ything that belongs to you? Put it here before my +brothers and yours, that they may judge between +38 +the two of us. + +39 + +I have been with you for twenty years now. +Your sheep and goats have not miscarried, nor +have I eaten the rams of your flock. +I did not +bring you anything torn by wild beasts; I bore the +loss myself. And you demanded payment from +As it +me for what was stolen by day or night. +was, the heat consumed me by day and the frost +41 +by night, and sleep fled from my eyes. + +40 + +42 + +Thus for twenty years I have served in your +household—fourteen years for your two daugh- +ters and six years for your flocks—and you have +If the God of my +changed my wages ten times! +father, the God of Abraham and the Fear of Isaac, +had not been with me, surely by now you would +have sent me away empty-handed. But God has +seen my affliction and the toil of my hands, and +Jacob’s Covenant with Laban +last night He rendered judgment.” +43 + +But Laban answered Jacob, “These daughters +are my daughters, these sons are my sons, and +these flocks are my flocks! Everything you see is +mine! Yet what can I do today about these daugh- +44 +ters of mine or the children they have borne? +Come now, let us make a covenant, you and I, +and let it serve as a witness between you and +a 47 +me.” +c 2 Mahanaim + +Jegar-sahadutha +two camps + +Galeed + +45 + +46 + +So Jacob picked out a stone and set it up as a +and he said to his relatives, “Gather +pillar, +some stones.” So they took stones and made a +mound, and there by the mound they ate. +La- +ban called it Jegar-sahadutha, and Jacob called it +48 +Galeed. + +47 + +a + +49 + +Then Laban declared, “This mound is a witness + +between you and me this day.” + +b +It was +Therefore the place was called Galeed. +also called Mizpah, + because Laban said, “May +the LORD keep watch between you and me when +If you mistreat +we are absent from each other. +my daughters or take other wives, although no +one is with us, remember that God is a witness +51 +between you and me.” + +50 + +52 + +Laban also said to Jacob, “Here is the mound, +and here is the pillar I have set up between you +and me. +This mound is a witness, and this pil- +lar is a witness, that I will not go past this mound +53 +to harm you, and you will not go past this mound +May the God of Abra- +and pillar to harm me. +ham and the God of Nahor, the God of their fa- +ther, judge between us.” +54 +So Jacob swore by the Fear of his father Isaac. + +55 + +Then Jacob offered a sacrifice on the mountain +and invited his relatives to eat a meal. And after +they had eaten, they spent the night on the +Early the next morning, Laban got +mountain. +up and kissed his grandchildren and daughters +Jacob Prepares to Meet Esau +and blessed them. Then he left to return home. + +32 + +2 + +Jacob also went on his way, and the an- +When Jacob saw +gels of God met him. +c +them, he said, “This is the camp of God.” So he +3 +named that place Mahanaim. + +4 + +Jacob sent messengers ahead of him to his +brother Esau in the land of Seir, the country of +Edom. +He instructed them, “You are to say to my +master Esau, ‘Your servant Jacob says: I have +been staying with Laban and have remained +I have oxen, donkeys, flocks, +there until now. +menservants, and maidservants. I have sent this +message to inform my master, so that I may find +6 +favor in your sight.’ + +” + +5 + +When the messengers returned to Jacob, they +said, “We went to your brother Esau, and now he +is coming to meet you—he and four hundred +men with him.” + +heap of witnesses + +b 49 Mizpah + +watchtower + +The Aramaic + + and the Hebrew + + both mean + +. + + means + +. + + means + +. + + 7 + +8 + +In great fear and distress, Jacob divided his peo- +ple into two camps, as well as the flocks and +He thought, “If Esau comes +herds and camels. +and attacks one camp, then the other camp can +9 +escape.” + +11 + +10 + +Then Jacob declared, “O God of my father Abra- +ham, God of my father Isaac, the LORD who told +me, ‘Go back to your country and to your kindred, +I am unworthy +and I will make you prosper,’ +of all the kindness and faithfulness You have +shown Your servant. Indeed, with only my staff +I came across the Jordan, but now I have become +Please deliver me from the hand +two camps. +of my brother Esau, for I am afraid that he may +come and attack me and the mothers and +But You have said, ‘I will +children with me. +surely make you prosper, and I will make your +offspring like the sand of the sea, too numerous +13 +to count.’ + +12 + +” + +14 + +15 + +Jacob spent the night there, and from what he +had brought with him, he selected a gift for his +brother Esau: +200 female goats, 20 male goats, +30 milk camels with their +200 ewes, 20 rams, +young, 40 cows, 10 bulls, 20 female donkeys, and +He entrusted them to his +10 male donkeys. +servants in separate herds and told them, “Go on +ahead of me, and keep some distance between +17 +the herds.” + +16 + +18 + +He instructed the one in the lead, “When my +brother Esau meets you and asks, ‘To whom do +you belong, where are you going, and whose ani- +then you are to say, +mals are these before you?’ +‘They belong to your servant Jacob. They are a +gift, sent to my lord Esau. And behold, Jacob is be- +19 +hind us.’ + +” + +He also instructed the second, the third, and all +those following behind the herds: “When you +20 +meet Esau, you are to say the same thing to him. +You are also to say, ‘Look, your servant Jacob +” For he thought, “I will ap- +is right behind us.’ +pease Esau + with the gift that is going before me. +b +After that I can face him, and perhaps he will +21 +accept me. + +” + + a + +Genesis 33:5 | 35 + +23 + +He took +and crossed the ford of the Jabbok. +them and sent them across the stream, along + c +24 +with all his possessions. + +25 + +So Jacob was left all alone, and there a man + +When the +wrestled with him until daybreak. +man saw that he could not overpower Jacob, he +struck the socket of Jacob’s hip and dislocated it +Then the man said, “Let me +as they wrestled. +go, for it is daybreak.” + +26 + +But Jacob replied, “I will not let you go unless you +27 +bless me.” + +“What is your name?” the man asked. + +28 +“Jacob,” he replied. +d + +e + +Then the man said, “Your name will no longer +be Jacob, + because you have strug- +gled with God and with men, and you have +29 +prevailed.” + + but Israel, + +And Jacob requested, “Please tell me your + +name.” + +But he replied, “Why do you ask my name?” Then +30 +he blessed Jacob there. + +f + +So Jacob named the place Peniel, + + saying, “In- +deed, I have seen God face to face, and yet my life +31 +was spared.” +g + +32 +Penuel, + +The sun rose above him as he passed by + and he was limping because of his hip. +Therefore to this day the Israelites do not eat +the tendon attached to the socket of the hip, be- +cause the socket of Jacob’s hip was struck near +Jacob Meets Esau +that tendon. + +33 + +Now Jacob looked up and saw Esau com- +ing toward him with four hundred men. +2 +So he divided the children among Leah, Rachel, +He put the maidser- +and the two maidservants. +vants and their children in front, Leah and her +3 +children next, and Rachel and Joseph at the rear. +But Jacob himself went on ahead and bowed to +the ground seven times as he approached his +4 +brother. + +So Jacob’s gifts went on before him, while he + +Jacob Wrestles with God +spent the night in the camp. +22 + +Esau, however, ran to him and embraced him, +threw his arms around his neck, and kissed him. +5 +And they both wept. + +During the night Jacob got up and took his two +a 20 +wives, his two maidservants, and his eleven sons, + +I will appease his face + +b 20 + +When Esau looked up and saw the women and + +perhaps he will lift up my face +d 28 Jacob + +c 24 +children, he asked, “Who are these with you?” +he grasps the heel + +Man +he deceives + +e 28 Israel + +he + +Or + +Literally +struggles with God +sponding pronouns may also be capitalized + +f 30 Peniel + +the face of God + +g 31 Penuel + means + +Or +Peniel + or + +. + + means + +. + + is a variant of + +; here and in verses 25–28; corre- + +. +; see verse 30. + + means + + 36 | Genesis 33:6 + +6 + +7 + +Jacob answered, “These are the children God +Then the +has graciously given your servant.” +maidservants and their children approached and +Leah and her children also ap- +bowed down. +proached and bowed down, and then Joseph and +8 +Rachel approached and bowed down. + +“What do you mean by sending this whole com- + +pany to meet me?” asked Esau. + +“To find favor in your sight, my lord,” Jacob +9 +answered. + +“I already have plenty, my brother,” Esau re- + +10 +plied. “Keep what belongs to you.” + +But Jacob insisted, “No, please! If I have found +favor in your sight, then receive this gift from my +hand. For indeed, I have seen your face, and it is + a +11 +like seeing the face of God, since you have re- +Please accept my gift +ceived me favorably. +that was brought to you, because God has been +gracious to me and I have all I need.” So Jacob +12 +pressed him until he accepted. + +Then Esau said, “Let us be on our way, and I + +13 +will go ahead of you.” + +But Jacob replied, “My lord knows that the chil- +dren are frail, and I must care for sheep and cat- +tle that are nursing their young. If they are driven +14 +hard for even a day, all the animals will die. +Please let my lord go ahead of his servant. I will +continue on slowly, at a comfortable pace for the +livestock and children, until I come to my lord at +15 +Seir.” + +“Let me leave some of my people with you,” + +Esau said. + +But Jacob replied, “Why do that? Let me find fa- +16 +vor in the sight of my lord.” + +b + +17 + +but Jacob went on to Succoth, + +So that day Esau started on his way back to + where he +Seir, +built a house for himself and shelters for his live- +Jacob Settles in Shechem +stock; that is why the place was called Succoth. +c +18 + +19 + +After Jacob had come from Paddan-aram, +he arrived safely at the city of Shechem in the +land of Canaan, and he camped just outside +And the plot of ground where he +the city. +pitched his tent, he purchased from the sons of +d +Hamor, Shechem’s father, for a hundred pieces +of silver. +There he set up an altar and called it +a 11 +El-Elohe-Israel. + or +e 20 El-Elohe-Israel +is, northwest Mesopotamia + +booths +a hundred kesitahs + means + +God is the God of Israel + +treaty of peace + +b 17 Succoth + +Hebrew + +blessing + +d 19 + +Or + +20 + +e + +The Defiling of Dinah + +34 + +2 + +Now Dinah, the daughter Leah had borne +to Jacob, went out to visit the daughters +When Shechem son of Hamor the +of the land. +3 +Hivite, the prince of the region, saw her, he took +her and lay with her by force. +And his soul was +drawn +of +the +Jacob. He loved the young girl and spoke to her +So Shechem told his father Hamor, +tenderly. +5 +“Get me this girl as a wife.” + +daughter + +Dinah, + +to +4 + +Jacob heard that Shechem had defiled his +daughter Dinah, but since his sons were with his +6 +livestock in the field, he remained silent about it +Meanwhile, Shechem’s +until they returned. +When +father Hamor came to speak with Jacob. +Jacob’s sons heard what had happened, they +returned from the field. They were filled with +grief and fury, because Shechem had committed + by lying with Jacob’s daugh- +an outrage in Israel +8 +ter—a thing that should not be done. + +7 + +  f + +9 + +But Hamor said to them, “My son Shechem +longs for your daughter. Please give her to him as +Intermarry with us; give us your +his wife. +10 +daughters and take our daughters for yourselves. +You may settle among us, and the land will be +open to you. Live here, move about freely, and ac- +11 +quire your own property.” + +12 + +Then Shechem said to Dinah’s father and +brothers, “Grant me this favor, and I will give you +whatever you ask. +Demand a high dowry and +an expensive gift, and I will give you whatever +The Revenge of Dinah’s Brothers +you ask. Only give me the girl as my wife!” +13 + +15 + +14 + +But because Shechem had defiled their sister +Dinah, Jacob’s sons answered him and his father +“We cannot do such a +Hamor deceitfully. +thing,” they said. “To give our sister to an uncir- +cumcised man would be a disgrace to us. +We +will consent to this on one condition, that you be- +come circumcised like us—every one of your +Then we will give you our daughters +males. +and take your daughters for ourselves. We will +But +dwell among you and become one people. +if you will not agree to be circumcised, then we +18 +will take our sister and go.” + +16 + +17 + +19 + +Their offer seemed good to Hamor and his son +The young man, who was the most +Shechem. +shelters +respected of all his father’s household, did not + or + or +mighty is the God of Israel +; the value or weight of the kesitah is no longer known + +; twice in this verse. + +against Israel + +tabernacles + +That + +c 18 + +f 7 + + means + + or + +. + +Or + + hesitate to fulfill this request, because he was de- +20 +lighted with Jacob’s daughter. + +21 + +So Hamor and his son Shechem went to the +gate of their city and addressed the men of their +city: +“These men are at peace with us. Let them +live and trade in our land; indeed, it is large +enough for them. Let us take their daughters in +marriage and give our daughters to them. +But +only on this condition will the men agree to dwell +23 +with us and be one people: if all our men are cir- +cumcised as they are. +Will not their livestock, +their possessions, and all their animals become +ours? Only let us consent to them, and they will +24 +dwell among us.” + +22 + +All the men who went out of the city gate lis- +tened to Hamor and his son Shechem, and every +25 +male of the city was circumcised. + +Three days later, while they were still in pain, +two of Jacob’s sons (Dinah’s brothers Simeon and +Levi) took their swords, went into the unsuspect- +ing city, and slaughtered every male. +They +killed Hamor and his son Shechem with their +swords, took Dinah out of Shechem’s house, and +27 +went away. + +26 + +28 + +Jacob’s other sons came upon the slaughter +and looted the city, because their sister had been +defiled. +They took their flocks and herds and +29 +donkeys, and everything else in the city or in the +field. +They carried off all their possessions and +women and children, and they plundered every- +30 +thing in their houses. + +Then Jacob said to Simeon and Levi, “You have +brought trouble upon me by making me a stench +to the Canaanites and Perizzites, the people of +this land. We are few in number; if they unite +against me and attack me, I and my household +31 +will be destroyed.” + +But they replied, “Should he have treated our + +Jacob Returns to Bethel +sister like a prostitute?” + +35 + +Then God said to Jacob, “Arise, go up to +Bethel, and settle there. Build an altar +there to the God who appeared to you when you +2 +fled from your brother Esau.” + +Genesis 35:18 | 37 + +3 + +Then let us arise and go to Bethel. I +garments. +will build an altar there to God, who answered +me in my day of distress. He has been with me +4 +wherever I have gone.” + + a + +So they gave Jacob all their foreign gods and all +their earrings, and Jacob buried them under the +5 +oak + + near Shechem. + +6 + +As they set out, a terror from God fell over the +surrounding cities, so that they did not pursue +Jacob’s sons. +So Jacob and everyone with him +7 +arrived in Luz (that is, Bethel) in the land of Ca- +naan. +There Jacob built an altar, and he called +that place El-bethel, + because it was there that +God had revealed Himself to Jacob as he fled from +8 +his brother. + +b + + c + +Now Deborah, Rebekah’s nurse, died and was +d + below Bethel. So Jacob +e + +buried under the oak +9 +named it Allon-bacuth. + +f + +After Jacob had returned from Paddan-aram, +10 +God appeared to him again and blessed him. +And God said to him, “Though your name is Ja- +g + you will no longer be called Jacob. Instead, +” So God named him + +cob, +your name will be Israel. +11 +Israel. + +h + +And God told him, “I am God Almighty. +12 + + Be +fruitful and multiply. A nation—even a company +of nations—shall come from you, and kings shall +descend from you. +The land that I gave to +Abraham and Isaac I will give to you, and I will +13 +give this land to your descendants after you.” + +Then God went up from the place where He + +14 +had spoken with him. + +15 + +So Jacob set up a pillar in the place where God +had spoken with him—a stone marker—and he +poured out a drink offering on it and anointed it +i +Jacob called the place where God had +with oil. +Benjamin Born, Rachel Dies +spoken with him Bethel. +16 + +Later, they set out from Bethel, and while they +were still some distance from Ephrath, Rachel +17 +began to give birth, and her labor was difficult. +During her severe labor, the midwife said to +her, “Do not be afraid, for you are having another +18 +son.” + +j + +So Jacob told his household and all who were +with him, “Get rid of the foreign gods that are +terebinth +a 4 +among you. Purify yourselves and change your +e 9 +ing +Or +g 10 Israel +. +j 18 Ben-oni + + means +That is, northwest Mesopotamia; also in verse 26 +son of my strength + means + +son of my sorrow +. + +he struggles with God + +b 7 El-bethel + +great tree + +Hebrew + +h 11 + + or + +God of Bethel + +El-Shaddai + +c 8 +f 10 Jacob +. + + could mean + + or + +. + +And with her + +dying—she named him Ben-oni. +called him Benjamin. + +d 8 Allon-bacuth + +great tree + +he grasps the heel + +last breath—for she was +k + But his father +oak of weep- + +Or +i 15 Bethel + means +k 18 Benjamin + +he deceives + means + +house of God + or +son of my right hand + + means + means + +. + +. + +. + + 38 | Genesis 35:19 + +19 + +20 + +7 + +So Rachel died and was buried on the way to +Jacob set up a pil- +Ephrath (that is, Bethlehem). +lar on her grave; it marks Rachel’s tomb to this +The Sons of Jacob (1 Chronicles 2:1–2) +day. +21 + +22 +Israel again set out and pitched his tent be- +yond the Tower of Eder. +While Israel was liv- +ing in that region, Reuben went in and slept with +his father’s concubine Bilhah, and Israel heard +about it. + +23 + +Jacob had twelve sons: + +The sons of Leah were Reuben the +firstborn of Jacob, Simeon, Levi, Judah, +24 +Issachar, and Zebulun. + +The sons of Rachel were Joseph and + +25 +Benjamin. + +The sons of Rachel’s maidservant Bilhah + +26 +were Dan and Naphtali. + +And the sons of Leah’s maidservant + +Zilpah were Gad and Asher. + +These are the sons of Jacob, who were born to +The Death of Isaac +him in Paddan-aram. +27 + +Jacob returned to his father Isaac at Mamre, +near Kiriath-arba (that is, Hebron), where Abra- +28 +ham and Isaac had stayed. + +29 + +And Isaac lived 180 years. + +Then he breathed +his last and died and was gathered to his people, +old and full of years. And his sons Esau and Jacob +The Descendants of Esau (1 Chron. 1:35–37) +buried him. + +36 + +2 + +This is the account of Esau (that is, +Esau took his wives from the +Edom). +daughters of Canaan: Adah daughter of Elon the +3 +Hittite, Oholibamah daughter of Anah and grand- +and Basemath +daughter of Zibeon the Hivite, +And +daughter of Ishmael and sister of Nebaioth. +Adah bore Eliphaz to Esau, Basemath gave birth +and Oholibamah gave birth to Jeush, +to Reuel, +Jalam, and Korah. These were the sons of Esau, +6 +who were born to him in the land of Canaan. + +4 + +5 + +Later, Esau took his wives and sons and daugh- +ters and all the people of his household, along +with his livestock, all his other animals, and all +the property he had acquired in Canaan, and he +a 16 +moved to a land far away from his brother Jacob. + +8 + +For their possessions were too great for them +to dwell together; the land where they stayed +could not support them because of their live- +So Esau (that is, Edom) settled in the area +stock. +9 +of Mount Seir. + +This is the account of Esau, the father of the + +10 +Edomites, in the area of Mount Seir. + +These are the names of Esau’s sons: Eliphaz +son of Esau’s wife Adah, and Reuel son of Esau’s +11 +wife Basemath. + +12 + +The sons of Eliphaz were Teman, Omar, Zepho, +Additionally, Timna, a con- +Gatam, and Kenaz. +cubine of Esau’s son Eliphaz, gave birth to Ama- +13 +lek. These are the grandsons of Esau’s wife Adah. + +These are the sons of Reuel: Nahath, Zerah, +Shammah, and Mizzah. They are the grandsons +14 +of Esau’s wife Basemath. + +These are the sons of Esau’s wife Oholibamah +(daughter of Anah and granddaughter of Zibeon) +15 +whom she bore to Esau: Jeush, Jalam, and Korah. + +a + +16 + +These are the chiefs among the sons of Esau. +The sons of Eliphaz the firstborn of Esau: Chiefs + Gatam, +Teman, Omar, Zepho, Kenaz, +and Amalek. They are the chiefs of Eliphaz in the +land of Edom, and they are the grandsons of +17 +Adah. + +Korah, + +These are the sons of Esau’s son Reuel: Chiefs +Nahath, Zerah, Shammah, and Mizzah. They are +the chiefs descended from Reuel in the land of +Edom, and they are the grandsons of Esau’s wife +18 +Basemath. + +These are the sons of Esau’s wife Oholibamah: +Chiefs Jeush, Jalam, and Korah. They are the +chiefs descended from Esau’s wife Oholibamah, +19 +the daughter of Anah. + +All these are the sons of Esau (that is, Edom), + +The Descendants of Seir (1 Chron. 1:38–42) +and they were their chiefs. +20 + +These are the sons of Seir the Horite, who were +21 +living in the land: Lotan, Shobal, Zibeon, Anah, +Dishon, Ezer, and Dishan. They are the chiefs +of the Horites, the descendants of Seir in the land +b +22 +of Edom. + +The sons of Lotan were Hori and Hemam. + +23 +Timna was Lotan’s sister. + +These are the sons of Shobal: Alvan, Manahath, + +b 22 Hemam +Ebal, Shepho, and Onam. + +Korah + +Homam + +Hebrew; SP (also in verse 11 and 1 Chronicles 1:36) does not include + +. + + is a variant of + +; see + +1 Chronicles 1:39. + + 24 + +These are the sons of Zibeon: Aiah and Anah. +(This is the Anah who found the hot springs in +the wilderness as he was pasturing the donkeys +25 +of his father Zibeon.) + +These are the children of Anah: Dishon and + +26 +Oholibamah daughter of Anah. + + a + +These are the sons of Dishon: + +27 +Eshban, Ithran, and Cheran. + + Hemdan, + +These are the sons of Ezer: Bilhan, Zaavan, and + +28 +Akan. +29 + +These are the sons of Dishan: Uz and Aran. + +30 + +These are the chiefs of the Horites: Chiefs Lo- +tan, Shobal, Zibeon, Anah, +Dishon, Ezer, and +Dishan. They are the chiefs of the Horites, ac- +The Kings of Edom (1 Chronicles 1:43–54) +cording to their divisions in the land of Seir. +31 + + b + +These are the kings who reigned in the land of +the + +Edom before any king reigned over +Israelites: + +32 + +Bela son of Beor reigned in Edom; the + +33 +name of his city was Dinhabah. + +When Bela died, Jobab son of Zerah from + +34 +Bozrah reigned in his place. + +When Jobab died, Husham from the land of + +35 +the Temanites reigned in his place. + +When Husham died, Hadad son of +Bedad, who defeated Midian in the country +of Moab, reigned in his place. And the name +36 +of his city was Avith. + +When Hadad died, Samlah from Masrekah + +37 +reigned in his place. + + c + +When Samlah died, Shaul from Rehoboth + +38 +on the Euphrates + + reigned in his place. + +When Shaul died, Baal-hanan son of Ach- + +39 +bor reigned in his place. + + d + +When Baal-hanan son of Achbor died, + reigned in his place. His city was +Hadad +named Pau, and his wife’s name was +Mehetabel daughter of Matred, the daughter +of Me-zahab. + +40 + +Genesis 37:13 | 39 + +and Iram. These were the chiefs of Edom, accord- +ing to their settlements in the land they pos- +Joseph’s Dreams +sessed. Esau was the father of the Edomites. + +37 + +2 + +Now Jacob lived in the land where his fa- +ther had resided, the land of Canaan. + +This is the account of Jacob. When Joseph was +seventeen years old, he was tending the flock +with his brothers, the sons of his father’s wives +Bilhah and Zilpah, and he brought their father a +3 +bad report about them. + +Now Israel loved Joseph more than his other +e +sons, because Joseph had been born to him in his +4 +old age; so he made him a robe of many colors. + +When Joseph’s brothers saw that their father +loved him more than any of them, they hated him +5 +and could not speak a kind word to him. + +6 +Then Joseph had a dream, and when he told it +7 +He +to his brothers, they hated him even more. +said to them, “Listen to this dream I had: +We +were binding sheaves of grain in the field, and +suddenly my sheaf rose and stood upright, while +your sheaves gathered around and bowed down +8 +to mine.” + +“Do you intend to reign over us?” his brothers +asked. “Will you actually rule us?” So they hated +him even more because of his dream and his +9 +statements. + +Then Joseph had another dream and told it to +his brothers. “Look,” he said, “I had another +dream, and this time the sun and moon and +10 +eleven stars were bowing down to me.” + +11 + +He told his father and brothers, but his father +rebuked him and said, “What is this dream that +you have had? Will your mother and brothers +and I actually come and bow down to the ground +And his brothers were jealous +before you?” +of him, but his father kept in mind what he had +Joseph Sold into Egypt (Acts 7:9–14) +said. +12 + +13 + +Some time later, Joseph’s brothers had gone to +Is- +pasture their father’s flocks near Shechem. +rael said to him, “Are not your brothers pasturing +the flocks at Shechem? Get ready; I am sending +you to them.” + +42 + +41 + +These are the names of Esau’s chiefs, accord- +ing to their families and regions, by their names: +Oholibamah, +Chiefs Timna, Alvah, Jetheth, +Magdiel, +Kenaz, Teman, Mibzar, +Elah, Pinon, +before an Israelite king reigned over them: +b 31 +Dishon +a 26 +d 39 +Hebrew +Or +with long sleeves +Some MT manuscripts, SP, and Syriac (see also 1 Chronicles 1:50); other MT manuscripts + +“I am ready,” Joseph replied. +c 37 +Hadar + +, a variant of + +Dishan + +43 + +; also in verses 23 and 32 + +the River + +e 3 + +a robe + +Hebrew + +Possibly + + 40 | Genesis 37:14 + +14 + +Then Israel told him, “Go now and see how +your brothers and the flocks are faring, and bring +word back to me.” + +15 + +So he sent him off from the Valley of Hebron. And +when Joseph arrived in Shechem, +a man found +him wandering in the field and asked, “What are +16 +you looking for?” + +“I am looking for my brothers,” Joseph replied. +“Can you please tell me where they are pasturing +17 +their flocks?” + +“They have moved on from here,” the man an- +swered. “I heard them say, ‘Let us go to Dothan.’ +” +So Joseph set out after his brothers and found +18 +them at Dothan. + +20 + +19 + +Now Joseph’s brothers saw him in the dis- +tance, and before he arrived, they plotted to kill +him. +“Here comes that dreamer!” they said to +one another. +“Come now, let us kill him and +throw him into one of the pits. We can say that a +vicious animal has devoured him. Then we shall +21 +see what becomes of his dreams!” + +22 + +When Reuben heard this, he tried to rescue Jo- +seph from their hands. “Let us not take his life,” +“Do not shed his blood. Throw him into +he said. +this pit in the wilderness, but do not lay a hand +on him.” Reuben said this so that he could rescue +Joseph from their hands and return him to his +23 +father. + +So when Joseph came to his brothers, they +24 +stripped him of his robe—the robe of many col- +ors he was wearing— +and they took him and +threw him into the pit. Now the pit was empty, +25 +with no water in it. + +And as they sat down to eat a meal, they looked +up and saw a caravan of Ishmaelites coming from +Gilead. Their camels were carrying spices, balm, +26 +and myrrh on their way down to Egypt. + +27 + +Then Judah said to his brothers, “What profit +will we gain if we kill our brother and cover up +Come, let us sell him to the Ishmael- +his blood? +ites and not lay a hand on him; for he is our +So +brother, our own flesh.” And they agreed. +when the Midianite traders passed by, his broth- + a +ers pulled Joseph out of the pit and sold him for +twenty shekels of silver + to the Ishmaelites, who +29 +took him to Egypt. + +28 + +30 + +When Reuben returned to the pit and saw that +re- +Joseph was not there, he tore his clothes, +turned to his brothers, and said, “The boy is +a 28 20 shekels +gone! What am I going to do?” + +Jacob Mourns Joseph + +31 + +Then they took Joseph’s robe, slaughtered a +32 +young goat, and dipped the robe in its blood. +They sent the robe of many colors to their fa- +ther and said, “We found this. Examine it to see +33 +whether it is your son’s robe or not.” + +34 + +His father recognized it and said, “It is my son’s +robe! A vicious animal has devoured him. Joseph +Then Jacob +has surely been torn to pieces!” +tore his clothes, put sackcloth around his waist, +All his +and mourned for his son many days. +sons and daughters tried to comfort him, but he +refused to be comforted. “No,” he said. “I will go +down to Sheol mourning for my son.” So his fa- +36 +ther wept for him. + +35 + + b + +Meanwhile, the Midianites + + sold Joseph in +Egypt to Potiphar, an officer of Pharaoh and cap- +Judah and Tamar (1 Chronicles 2:3–4) +tain of the guard. + +38 + +2 + +3 + +About that time, Judah left his brothers +and settled near a man named Hirah, an +Adullamite. +There Judah saw the daughter of a +Canaanite man named Shua, and he took her as a +So she conceived and +wife and slept with her. +4 +gave birth to a son, and Judah named him Er. +5 +Again she conceived and gave birth to a son, and +Then she gave birth to +she named him Onan. +another son and named him Shelah; it was at +6 +Chezib that she gave birth to him. + +7 + +Now Judah acquired a wife for Er, his firstborn, +But Er, Judah’s +and her name was Tamar. +8 +firstborn, was wicked in the sight of the LORD; so +the LORD put him to death. +Then Judah said to +Onan, “Sleep with your brother’s wife. Perform +your duty as her brother-in-law and raise up off- +9 +spring for your brother.” + +But Onan knew that the offspring would not be- +long to him; so whenever he would sleep with his +brother’s wife, he would spill his seed on the +ground so that he would not produce offspring +What he did was wicked in the +for his brother. +sight of the LORD, so He put Onan to death as +11 +well. + +10 + +Then Judah said to his daughter-in-law Tamar, +“Live as a widow in your father’s house until my +son Shelah grows up.” For he thought, “He may +die too, like his brothers.” So Tamar went to live +in her father’s house. + +b 36 + +the Medanites + + is approximately 8 ounces or 228 grams of silver. + +Hebrew + + 12 + +13 + +14 + +After a long time Judah’s wife, the daughter of +Shua, died. When Judah had finished mourning, +he and his friend Hirah the Adullamite went up +When Tamar +to his sheepshearers at Timnah. +was told, “Your father-in-law is going up to Tim- +she removed her +nah to shear his sheep,” +widow’s garments, covered her face with a veil to +disguise herself, and sat at the entrance to Enaim, +which is on the way to Timnah. For she saw that +although Shelah had grown up, she had not been +15 +given to him as a wife. + +When Judah saw her, he thought she was a +16 +prostitute because she had covered her face. +Not realizing that she was his daughter-in-law, +he went over to her and said, “Come now, let me +sleep with you.” + + “What will you give me for sleeping with you?” +17 +she inquired. + +“I will send you a young goat from my flock,” + +Judah answered. + +But she replied, “Only if you leave me something +18 +as a pledge until you send it.” + +“What pledge should I give you?” he asked. + +She answered, “Your seal and your cord, and the +staff in your hand.” So he gave them to her and +19 +slept with her, and she became pregnant by him. +Then Tamar got up and departed. And she re- +moved her veil and put on her widow’s garments +20 +again. + +21 + +Now when Judah sent his friend Hirah the +Adullamite with the young goat to collect the +items he had left with the woman, he could not +He asked the men of that place, +find her. +“Where is the shrine prostitute who was beside +the road at Enaim?” + +“No shrine prostitute has been here,” they an- +22 +swered. + +So Hirah returned to Judah and said, “I could +not find her, and furthermore, the men of that +23 +” +place said, ‘No shrine prostitute has been here.’ + +a + +“Let her keep the items,” Judah replied. “Oth- +erwise we will become a laughingstock. + After +all, I did send her this young goat, but you could +24 +not find her.” + +Genesis 39:7 | 41 + +“Bring her out!” Judah replied. “Let her be burned +25 +to death!” + +As she was being brought out, Tamar sent a +message to her father-in-law: “I am pregnant by +the man to whom these items belong.” And she +added, “Please examine them. Whose seal and +26 +cord and staff are these?” + +Judah recognized the items and said, “She is +more righteous than I, since I did not give her to +my son Shelah.” And he did not have relations +The Birth of Perez and Zerah +with her again. +27 + +28 + +When the time came for Tamar to give birth, +And as she was +there were twins in her womb. +giving birth, one of them put out his hand; so the +midwife took a scarlet thread and tied it around +his wrist. “This one came out first,” she an- +But when he pulled his hand back +nounced. +b +and his brother came out, she said, “You have +30 +broken out first!” So he was named Perez. + +29 + +c + +Then his brother came out with the scarlet +thread around his wrist, and he was named +Joseph and Potiphar’s Wife +Zerah. + +39 + +Meanwhile, Joseph had been taken down +to Egypt, where an Egyptian named Pot- +iphar, an officer of Pharaoh and captain of the +guard, bought him from the Ishmaelites who had +And the LORD was with Jo- +taken him there. +seph, and he became a successful man, serving in +3 +the household of his Egyptian master. + +2 + +4 + +When his master saw that the LORD was with +Joseph +him and made him prosper in all he did, +found favor in his sight and became his personal +attendant. + +5 + +Potiphar put him in charge of his household and +From +entrusted him with everything he owned. +the time that he put Joseph in charge of his +household and all he owned, the LORD blessed +the Egyptian’s household on account of him. The +LORD’s blessing was on everything he owned, +So Potiphar +both in his house and in his field. +left all that he owned in Joseph’s care; he did not +concern himself with anything except the food he +ate. + +6 + +7 + +About three months later, Judah was told, +“Your daughter-in-law Tamar has prostituted +herself, and now she is pregnant.” +a 23 + +we will become despised + +b 29 Perez + +breaking out + +Now Joseph was well-built and handsome, +and +after some time his master’s wife cast her eyes +upon Joseph and said, “Sleep with me.” +scarlet + +brightness + +c 30 Zerah + +Or + + means + +. + + can mean + + or + +. + + 42 | Genesis 39:8 + +8 + +3 + +But he refused. “Look,” he said to his master’s +wife, “with me here, my master does not concern +himself with anything in his house, and he has +entrusted everything he owns to my care. +No +one in this house is greater than I am. He has +withheld nothing from me except you, because +you are his wife. So how could I do such a great +10 +evil and sin against God?” + +9 + +11 + +Although Potiphar’s wife spoke to Joseph day +after day, he refused to go to bed with her or even +be near her. +One day, however, Joseph went +into the house to attend to his work, and not a +single household servant was inside. +She +grabbed Joseph by his cloak and said, “Sleep with +me!” But leaving his cloak in her hand, he es- +Joseph Falsely Imprisoned +caped and ran outside. +13 + +12 + +14 + +When she saw that he had left his cloak in her +hand and had run out of the house, +she called +her household servants. “Look,” she said, “this +Hebrew has been brought to us to make sport of +us. He came to me so he could sleep with me, but +I screamed as loud as I could. +When he heard +me scream for help, he left his cloak beside me +16 +and ran out of the house.” + +15 + +17 + +So Potiphar’s wife kept Joseph’s cloak beside +her until his master came home. +Then she told +him the same story: “The Hebrew slave you +18 +brought us came to me to make sport of me, +but when I screamed for help, he left his cloak + +19 +beside me and ran out of the house.” + +When his master heard the story his wife told +20 +him, saying, “This is what your slave did to me,” +he burned with anger. +So Joseph’s master took +him and had him thrown into the prison where +the king’s prisoners were confined. + +21 + +22 + +While Joseph was there in the prison, +the +LORD was with him and extended kindness to +him, granting him favor in the eyes of the prison +And the warden put all the prisoners +warden. +under Joseph’s care, so that he was responsible +The warden +for all that was done in the prison. +did not concern himself with anything under Jo- +seph’s care, because the LORD was with Joseph +The Cupbearer and the Baker +and gave him success in whatever he did. + +23 + +40 + +2 + +Some time later, the king’s cupbearer +and baker offended their master, the +Pharaoh was angry with his two +king of Egypt. +a 19 +officers, the chief cupbearer and the chief baker, + +and impale you on a pole + +Or + +; similarly in verse 22 + +4 + +and imprisoned them in the house of the cap- +tain of the guard, the same prison where Joseph +The captain of the guard assigned +was confined. +them to Joseph, and he became their personal at- +tendant. +5 +After they had been in custody for some time, +both of these men—the Egyptian king’s cup- +bearer and baker, who were being held in the +prison—had a dream on the same night, and +6 +each dream had its own meaning. + +7 + +When Joseph came to them in the morning, he +So he asked the +saw that they were distraught. +officials of Pharaoh who were in custody with +him in his master’s house, “Why are your faces so +8 +downcast today?” + +“We both had dreams,” they replied, “but there + +is no one to interpret them.” + +Then Joseph said to them, “Don’t interpretations +9 +belong to God? Tell me your dreams.” + +10 + +11 + +So the chief cupbearer told Joseph his dream: +and +“In my dream there was a vine before me, +on the vine were three branches. As it budded, its +blossoms opened and its clusters ripened into +Pharaoh’s cup was in my hand, and I +grapes. +took the grapes, squeezed them into his cup, and +12 +placed the cup in his hand.” + +13 + +14 + +Joseph replied, “This is the interpretation: The +Within three +three branches are three days. +days Pharaoh will lift up your head and restore +your position. You will put Pharaoh’s cup in his +hand, just as you did when you were his cup- +But when it goes well for you, please +bearer. +remember me and show me kindness by men- +tioning me to Pharaoh, that he might bring me +For I was kidnapped from +out of this prison. +the land of the Hebrews, and even here I have +done nothing for which they should have put me +16 +in this dungeon.” + +15 + +17 + +When the chief baker saw that the interpreta- +tion was favorable, he said to Joseph, “I too had a +dream: There were three baskets of white bread +In the top basket were all sorts of +on my head. +baked goods for Pharaoh, but the birds were eat- +18 +ing them out of the basket on my head.” + +19 + +a + +Joseph replied, “This is the interpretation: The +Within three +three baskets are three days. +days Pharaoh will lift off your head and hang you + Then the birds will eat the flesh of +on a tree. +your body.” + + 20 + +15 + +Genesis 41:32 | 43 + +21 + +On the third day, which was Pharaoh’s birth- +day, he held a feast for all his officials, and in their +presence he lifted up the heads of the chief +cupbearer and the chief baker. +Pharaoh re- +stored the chief cupbearer to his position, so +that he once again placed the cup in Pharaoh’s +hand. +But Pharaoh hanged the chief baker, +just as Joseph had described to them in his +23 +interpretation. + +22 + +a + +The chief cupbearer, however, did not remem- + +The Dreams of Pharaoh +ber Joseph; he forgot all about him. + +41 + +3 + +2 + +After two full years had passed, Pharaoh +had a dream: He was standing beside +when seven cows, sleek and well-fed, +the Nile, +came up from the river and began to graze +After them, seven other cows, +among the reeds. +sickly and thin, came up from the Nile and stood +4 +beside the well-fed cows on the bank of the river. +And the cows that were sickly and thin de- +5 + +voured the seven sleek, well-fed cows. + +6 + +Then Pharaoh woke up, +but he fell back asleep +and dreamed a second time: Seven heads of +Af- +grain, plump and ripe, came up on one stalk. +ter them, seven other heads of grain sprouted, +And the thin +thin and scorched by the east wind. +heads of grain swallowed up the seven plump, +ripe ones. Then Pharaoh awoke and realized it +8 +was a dream. + +7 + +In the morning his spirit was troubled, so he +summoned all the magicians and wise men of +Egypt. Pharaoh told them his dreams, but no one +9 +could interpret them for him. + +10 +Then the chief cupbearer said to Pharaoh, “To- +Pharaoh was once an- +day I recall my failures. +gry with his servants, and he put me and the chief +11 +baker in the custody of the captain of the guard. +One night both the chief baker and I had +12 +dreams, and each dream had its own meaning. +Now a young Hebrew was there with us, a +servant of the captain of the guard. We told him +our dreams and he interpreted them for us indi- +And it happened to us just as he had +vidually. +interpreted: I was restored to my position, and +Joseph Interprets Pharaoh’s Dreams +the other man was hanged.” +14 + +13 + +So Pharaoh sent for Joseph, who was quickly +brought out of the dungeon. After he had shaved +and changed his clothes, he went in before +a 22 +Pharaoh. + +had interpreted to them + +Literally + +Pharaoh said to Joseph, “I had a dream, and no +one can interpret it. But I have heard it said of +you that when you hear a dream you can inter- +16 +pret it.” + +“I myself cannot do it,” Joseph replied, “but + +17 +God will give Pharaoh a sound answer.” + +18 + +Then Pharaoh said to Joseph: “In my dream I +when +was standing on the bank of the Nile, +19 +seven cows, well-fed and sleek, came up from the +Af- +river and began to graze among the reeds. +ter them, seven other cows—sickly, ugly, and +thin—came up. I have never seen such ugly cows +Then the thin, ugly +in all the land of Egypt! +cows devoured the seven well-fed cows that +were there first. +When they had devoured +them, however, no one could tell that they had +done so; their appearance was as ugly as it had +22 +been before. Then I awoke. + +20 + +21 + +23 + +In my dream I also saw seven heads of grain, +Af- +plump and ripe, growing on a single stalk. +ter them, seven other heads of grain sprouted— +24 +withered, thin, and scorched by the east wind. +And the thin heads of grain swallowed the + +seven plump ones. + +I told this dream to the magicians, but no one +25 +could explain it to me.” + +27 + +26 + +At this, Joseph said to Pharaoh, “The dreams of +Pharaoh are one and the same. God has revealed +The seven +to Pharaoh what He is about to do. +good cows are seven years, and the seven ripe +heads of grain are seven years. The dreams have +Moreover, the seven thin, +the same meaning. +ugly cows that came up after them are seven +years, and so are the seven worthless heads of +grain scorched by the east wind—they are seven +28 +years of famine. + +29 + +30 + +It is just as I said to Pharaoh: God has shown +Behold, seven +Pharaoh what He is about to do. +years of great abundance are coming throughout +the land of Egypt, +but seven years of famine +will follow them. Then all the abundance in the +31 +land of Egypt will be forgotten, and the famine +The abundance in the +will devastate the land. +land will not be remembered, since the famine +32 +that follows it will be so severe. + +Moreover, because the dream was given to +Pharaoh in two versions, the matter has been de- +creed by God, and He will carry it out shortly. + + 44 | Genesis 41:33 + +33 + +34 + +Now, therefore, Pharaoh should look for a dis- +cerning and wise man and set him over the land +Let Pharaoh take action and appoint +of Egypt. + a +commissioners over the land to take a fifth of the +35 + of Egypt during the seven years of +harvest +Under the authority of Pharaoh, let +abundance. +them collect all the excess food from these good +years, that they may come and lay up the grain to +This food +be preserved as food in the cities. +will be a reserve for the land during the seven +years of famine to come upon the land of Egypt. +Joseph Given Charge of Egypt +Then the country will not perish in the famine.” +37 + +36 + +38 + +This proposal pleased Pharaoh and all his offi- + b +cials. +So Pharaoh asked them, “Can we find an- +yone like this man, in whom the Spirit of God +39 +abides?” + +Then Pharaoh said to Joseph, “Since God has +40 +made all this known to you, there is no one as dis- +You shall be in charge +cerning and wise as you. +of my house, and all my people are to obey your +commands. Only with regard to the throne will I +41 +be greater than you.” + +42 + +Pharaoh also told Joseph, “I hereby place you +Then Pharaoh re- +over all the land of Egypt.” +moved the signet ring from his finger, put it on +Joseph’s finger, clothed him in garments of fine +43 +linen, and placed a gold chain around his neck. +He had Joseph ride in his second chariot, with + So + +men calling out before him, “Bow the knee!” +44 +he placed him over all the land of Egypt. + + c + +And Pharaoh declared to Joseph, “I am Phar- +aoh, but without your permission, no one in all +45 +the land of Egypt shall lift his hand or foot.” + +d + +Pharaoh gave Joseph the name Zaphenath- +e + and he gave him Asenath daughter of + to be his wife. And Jo- + +paneah, +Potiphera, priest of On, +The Seven Years of Plenty +seph took charge of all the land of Egypt. +46 + +Now Joseph was thirty years old when he en- +tered the service of Pharaoh king of Egypt. And +Joseph left Pharaoh’s presence and traveled +47 +throughout the land of Egypt. + +48 + +During the seven years of abundance, the land +During those seven +brought forth bountifully. +years, Joseph collected all the excess food in the +a 34 + +a fifth from the land + + b 38 + +See LXX; MT + +speaks and lives +that sounds similar to the Hebrew for +to forget +g 52 Ephraim +. + +e 45 + +land of Egypt and stored it in the cities. In every +49 +city he laid up the food from the fields around it. +So Joseph stored up grain in such abundance, +like the sand of the sea, that he stopped keeping +50 +track of it; for it was beyond measure. + +f + +52 + +51 + +Before the years of famine arrived, two sons +were born to Joseph by Asenath daughter of +Joseph named the +Potiphera, priest of On. + saying, “God has made me +firstborn Manasseh, +g +forget all my hardship and all my father’s house- +And the second son he named Ephraim, +hold.” +saying, “God has made me fruitful in the land of +The Famine Begins +my affliction.” +53 + +54 + +When the seven years of abundance in the land +the seven years of +of Egypt came to an end, +famine began, just as Joseph had said. And alt- +hough there was famine in every country, there +When +was food throughout the land of Egypt. +extreme hunger came to all the land of Egypt and +the people cried out to Pharaoh for food, he told +all the Egyptians, “Go to Joseph and do whatever +56 +he tells you.” + +55 + +57 + +When the famine had spread over all the land, +Joseph opened up all the storehouses and sold +grain to the Egyptians; for the famine was severe +And every nation came to +in the land of Egypt. +Joseph in Egypt to buy grain, because the famine +Joseph’s Brothers Sent to Egypt +was severe over all the earth. + +42 + +When Jacob learned that there was grain +in Egypt, he said to his sons, “Why are + +2 +you staring at one another?” + +“Look,” he added, “I have heard that there is +grain in Egypt. Go down there and buy some for +3 +us, so that we may live and not die.” + +4 + +So ten of Joseph’s brothers went down to buy +But Jacob did not send +grain from Egypt. +Joseph’s brother Benjamin with his brothers, for +5 +he said, “I am afraid that harm might befall him.” + +So the sons of Israel were among those who +came to buy grain, since the famine had also +6 +spread to the land of Canaan. + +Now Joseph was the ruler of the land; he was +the one who sold grain to all its people. So when +his brothers arrived, they bowed down before + +“Abrek ,” + +the spirit of the gods c 43 + +kneel + +d 45 Zaphenath-paneah + +Revealer of Mysteries + +God + +Or + +making fruitful + +That is, +f 51 Manasseh + probably means +twice fruitful + + probably an Egyptian word + +making + + or + +. + +That is, Heliopolis, as in LXX; also in verse 50 + or + + sounds like the Hebrew for + + sounds like the Hebrew for + +. + + 7 + +And when +him with their faces to the ground. +Joseph saw his brothers, he recognized them, but +he treated them as strangers and spoke harshly +to them. “Where have you come from?” he asked. + +“From the land of Canaan,” they replied. “We are +8 +here to buy food.” + +9 + +Although Joseph recognized his brothers, they +Joseph remembered his +did not recognize him. +dreams about them and said, “You are spies! You +10 +have come to see if our land is vulnerable.” + +11 +“Not so, my lord,” they replied. “Your servants +We are all sons of one + +have come to buy food. +12 +man. Your servants are honest men, not spies.” + +“No,” he told them. “You have come to see if + +13 +our land is vulnerable.” + +But they answered, “Your servants are twelve +brothers, the sons of one man in the land of Ca- +naan. The youngest is now with our father, and +14 +one is no more.” +15 + +Then Joseph declared, “Just as I said, you are +And this is how you will be tested: As +spies! +surely as Pharaoh lives, you shall not leave this +16 +place unless your youngest brother comes here. +Send one of your number to get your brother; +the rest of you will be confined so that the truth +of your words may be tested. If they are untrue, +17 +then as surely as Pharaoh lives, you are spies!” +18 + +19 + +So Joseph imprisoned them for three days, +and on the third day he said to them, “I fear +If you are hon- +God. So do this and you will live: +est, leave one of your brothers in custody while +20 +the rest of you go and take back grain to relieve +Then bring +the hunger of your households. +your youngest brother to me so that your words +can be verified, that you may not die.” +21 +And to this they consented. + +Then they said to one another, “Surely we are +being punished because of our brother. We saw +his anguish when he pleaded with us, but we +would not listen. That is why this distress has +22 +come upon us.” + +And Reuben responded, “Didn’t I tell you not +to sin against the boy? But you would not listen. +23 +Now we must account for his blood!” + +24 + +They did not realize that Joseph understood +them, since there was an interpreter between +And he turned away from them and +them. +a 25 +wept. When he turned back and spoke to them, + +money + +Or + +; here and throughout chapters 42–44 + +Genesis 42:38 | 45 + +he took Simeon from them and had him bound +Joseph’s Brothers Return to Canaan +before their eyes. +25 + + a + +Then Joseph gave orders to fill their bags with +grain, to return each man’s silver + to his sack, +and to give them provisions for their journey. +and they loaded +This order was carried out, +27 +the grain on their donkeys and departed. + +26 + +28 + +At the place where they lodged for the night, +one of them opened his sack to get feed for his +donkey, and he saw his silver in the mouth of the +sack. +“My silver has been returned!” he said to +his brothers. “It is here in my sack.” + +Their hearts sank, and trembling, they turned to +one another and said, “What is this that God has +29 +done to us?” + +30 + +When they reached their father Jacob in the +land of Canaan, they described to him all that had +happened to them: +“The man who is lord of the +land spoke harshly to us and accused us of spying +31 +on the country. +32 + +But we told him, ‘We are honest men, not spies. +We are twelve brothers, sons of one father. +One is no more, and the youngest is now with our +33 +father in the land of Canaan.’ + +Then the man who is lord of the land said to us, +‘This is how I will know whether you are honest: +Leave one brother with me, take food to relieve +the hunger of your households, and go. +But +bring your youngest brother back to me so I will +know that you are not spies but honest men. +Then I will give your brother back to you, and +35 +you can trade in the land.’ + +34 + +” + +As they began emptying their sacks, there in +each man’s sack was his bag of silver! And when +they and their father saw the bags of silver, they +36 +were dismayed. + +Their father Jacob said to them, “You have de- +prived me of my sons. Joseph is gone and Simeon +is no more. Now you want to take Benjamin. Eve- +37 +rything is going against me!” + +Then Reuben said to his father, “You may kill +my two sons if I fail to bring him back to you. Put +38 +him in my care, and I will return him.” + +But Jacob replied, “My son will not go down +there with you, for his brother is dead, and he +alone is left. If any harm comes to him on your +journey, you will bring my gray hair down to +Sheol in sorrow.” + + 46 | Genesis 43:1 + +The Return to Egypt with Benjamin + +Joseph’s Hospitality to His Brothers + +43 + +2 + +16 + +Now the famine was still severe in the +land. +So when Jacob’s sons had eaten all +the grain they had brought from Egypt, their fa- +ther said to them, “Go back and buy us a little +3 +more food.” + +4 + +But Judah replied, “The man solemnly warned +us, ‘You will not see my face again unless your +If you will send our brother +brother is with you.’ +5 +with us, we will go down and buy food for you. +But if you will not send him, we will not go; for +the man told us, ‘You will not see my face again +6 +unless your brother is with you.’ + +” + +“Why did you bring this trouble upon me?” Is- +rael asked. “Why did you tell the man you had +7 +another brother?” + +They replied, “The man questioned us in detail +about ourselves and our family: ‘Is your father +still alive? Do you have another brother?’ And we +answered him accordingly. How could we possi- +bly know that he would say, ‘Bring your brother +8 +here’?” + +9 + +And Judah said to his father Israel, “Send the +boy with me, and we will go at once, so that we +may live and not die—neither we, nor you, nor +our children. +I will guarantee his safety. You +may hold me personally responsible. If I do not +bring him back and set him before you, then may +If we had +I bear the guilt before you all my life. +not delayed, we could have come and gone twice +11 +by now.” + +10 + +Then their father Israel said to them, “If it must +be so, then do this: Put some of the best products +of the land in your packs and carry them down as +a gift for the man—a little balm and a little honey, +12 +spices and myrrh, pistachios and almonds. +Take double the silver with you so that you +may return the silver that was put back into the +13 +mouths of your sacks. Perhaps it was a mistake. +Take your brother as well, and return to the + grant you +May God Almighty +man at once. +mercy before the man, that he may release your +other brother along with Benjamin. As for me, if +15 +I am bereaved, I am bereaved.” + +14 + + a + +So the men took these gifts, along with double +the amount of silver, and Benjamin as well. Then +they hurried down to Egypt and stood before +Joseph. +a 14 + +El-Shaddai + +Hebrew + +When Joseph saw Benjamin with his brothers, +he said to the steward of his house, “Take these +men to my house. Slaughter an animal and pre- +17 +pare it, for they shall dine with me at noon.” +The man did as Joseph had commanded and + +18 +took the brothers to Joseph’s house. + +But the brothers were frightened that they had +been taken to Joseph’s house. “We have been +brought here because of the silver that was re- +turned in our bags the first time,” they said. +“They intend to overpower us and take us as +19 +slaves, along with our donkeys.” + +21 + +So they approached Joseph’s steward and +20 +spoke to him at the entrance to the house. +“Please, sir,” they said, “we really did come +But when +down here the first time to buy food. +we came to the place we lodged for the night, we +opened our sacks and, behold, each of us found +his silver in the mouth of his sack! It was the full +amount of our silver, and we have brought it +We have brought additional sil- +back with us. +ver with us to buy food. We do not know who put +23 +our silver in our sacks.” + +22 + +“It is fine,” said the steward. “Do not be afraid. +Your God, the God of your father, gave you the +treasure that was in your sacks. I received your +24 +silver.” Then he brought Simeon out to them. +And the steward took the men into Joseph’s +house, gave them water to wash their feet, and +25 +provided food for their donkeys. + +26 + +Since the brothers had been told that they +were going to eat a meal there, they prepared +When Jo- +their gift for Joseph’s arrival at noon. +seph came home, they presented him with the +gifts they had brought, and they bowed to the +27 +ground before him. + +He asked if they were well, and then he asked, +“How is your elderly father you told me about? Is +28 +he still alive?” + +“Your servant our father is well,” they an- +swered. “He is still alive.” And they bowed down +29 +to honor him. + +When Joseph looked up and saw his brother +Benjamin, his own mother’s son, he asked, “Is +this your youngest brother, the one you told me +about?” Then he declared, “May God be gracious +to you, my son.” + + 30 + +13 + +Genesis 44:28 | 47 + +31 + +Joseph hurried out because he was moved to +tears for his brother, and he went to a private +Then he washed his face and +room to weep. +came back out. Regaining his composure, he said, +32 +“Serve the meal.” + +33 + +They separately served Joseph, his brothers, +and the Egyptians. They ate separately because +the Egyptians would not eat with the Hebrews, +They were +since that was detestable to them. +seated before Joseph in order by age, from the +firstborn to the youngest, and the men looked at +When the por- +one another in astonishment. +tions were served to them from Joseph’s table, +Benjamin’s portion was five times larger than +any of the others. So they feasted and drank +Benjamin and the Silver Cup +freely with Joseph. + +34 + +44 + +2 + +Then Joseph instructed his steward: “Fill +the men’s sacks with as much food as +they can carry, and put each one’s silver in the +Put my cup, the silver one, in +mouth of his sack. +the mouth of the youngest one’s sack, along with +the silver for his grain.” +3 +So the steward did as Joseph had instructed. + +4 + +At daybreak, the men were sent on their way +They had not gone far from +with their donkeys. +the city when Joseph told his steward, “Pursue +the men at once, and when you overtake them, +Is +ask, ‘Why have you repaid good with evil? +this not the cup + my master drinks from and uses +6 +for divination? What you have done is wicked!’ +” + +5 + + a + + b + +When the steward overtook them, he relayed + +7 +these words to them. + +8 + +“Why does my lord say these things?” they +asked. “Your servants could not possibly do such +We even brought back to you from the +a thing. +land of Canaan the silver we found in the mouths +9 +of our sacks. Why would we steal silver or gold +If any of your serv- +from your master’s house? +ants is found to have it, he must die, and the rest +10 +will become slaves of my lord.” + +“As you say,” replied the steward. “But only the +one who is found with the cup will be my slave, +11 +and the rest of you shall be free of blame.” + +12 + +So each one quickly lowered his sack to the +The steward searched, +ground and opened it. +beginning with the oldest and ending with the +youngest—and the cup was found in Benjamin’s +a 4 + +Why have you stolen my silver cup? + +b 5 + +Then they all tore their clothes, loaded + +sack. +14 +their donkeys, and returned to the city. + +When Judah and his brothers arrived at Jo- +seph’s house, he was still there, and they fell to +15 +the ground before him. + +“What is this deed you have done?” Joseph de- +clared. “Do you not know that a man like me can +16 +surely divine the truth?” + +“What can we say to my lord?” Judah replied. +“How can we plead? How can we justify our- +selves? God has exposed the iniquity of your +servants. We are now my lord’s slaves—both we +17 +and the one who was found with the cup.” + +But Joseph replied, “Far be it from me to do +this. The man who was found with the cup will be +my slave. The rest of you may return to your fa- +Judah Pleads for Benjamin +ther in peace.” + +18 + +Then Judah approached Joseph and said, “Sir, +please let your servant speak personally to my +lord. Do not be angry with your servant, for you +My lord asked +are equal to Pharaoh himself. +20 +his servants, ‘Do you have a father or a brother?’ + +19 + +And we answered, ‘We have an elderly father +and a younger brother, the child of his old age. +The boy’s brother is dead. He is the only one of +21 +his mother’s sons left, and his father loves him.’ + +Then you told your servants, ‘Bring him down + +22 +to me so that I can see him for myself.’ + +So we said to my lord, ‘The boy cannot leave +his father. If he were to leave, his father would +23 +die.’ + +But you said to your servants, ‘Unless your +younger brother comes down with you, you will +24 +not see my face again.’ + +Now when we returned to your servant my fa- + +25 +ther, we relayed your words to him. + +Then our father said, ‘Go back and buy us some + +26 +food.’ + +But we answered, ‘We cannot go down there +unless our younger brother goes with us. So if +our younger brother is not with us, we cannot +27 +see the man.’ + +28 + +And your servant my father said to us, ‘You +When + +know that my wife bore me two sons. + +Is it not this which + +LXX includes + +Hebrew + + 48 | Genesis 44:29 + +one of them was gone, I said: “Surely he has been +29 +torn to pieces.” And I have not seen him since. +Now if you also take this one from me and +harm comes to him, you will bring my gray hair +30 +down to Sheol in sorrow.’ + +31 + +So if the boy is not with us when I return +to your servant, and if my father, whose life is +sees that the boy +wrapped up in the boy’s life, +is not with us, he will die. Then your servants will +have brought the gray hair of your servant +Indeed, +our father down to Sheol in sorrow. +your servant guaranteed the boy’s safety to +my father, saying, ‘If I do not return him to you, I +will bear the guilt before you, my father, all my +33 +life.’ + +32 + +34 + +Now please let your servant stay here as my +lord’s slave in place of the boy. Let him return +For how can I go back to my +with his brothers. +father without the boy? I could not bear to see +Joseph Reveals His Identity +the misery that would overwhelm him.” + +45 + +Then Joseph could no longer control +himself before all his attendants, and he + +cried out, “Send everyone away from me!” + +2 + +So none of them were with Joseph when he made +But he wept so +himself known to his brothers. +loudly that the Egyptians heard him, and Phar- +3 +aoh’s household soon heard of it. + +Joseph said to his brothers, “I am Joseph! Is my + +father still alive?” + +But they were unable to answer him, because +4 +they were terrified in his presence. + +Then Joseph said to his brothers, “Please come + +near me.” And they did so. + +5 + +6 + +“I am Joseph, your brother,” he said, “the one you +And now, do not be distressed +sold into Egypt! +or angry with yourselves that you sold me into +this place, because it was to save lives that God +For the famine has covered +sent me before you. +the land these two years, and there will be five +God +more years without plowing or harvesting. +sent me before you to preserve you as a remnant +on the earth and to save your lives by a great de- +Therefore it was not you who sent +liverance. +me here, but God, who has made me a father to +Pharaoh—lord of all his household and ruler +and to keep you alive as a great band of survivors +a 7 +over all the land of Egypt. + +8 + +7 + +a + +Joseph Sends for His Father + +9 + +10 + +Now return quickly to my father and tell him, +‘This is what your son Joseph says: God has made +me lord of all Egypt. Come down to me without +You shall settle in the land of Goshen +delay. +and be near me—you and your children and +grandchildren, your flocks and herds, and every- +And there I will provide for +thing you own. +you, because there will be five more years of fam- +ine. Otherwise, you and your household and +12 +everything you own will come to destitution.’ + +11 + +Behold! You and my brother Benjamin can see +13 +that I, Joseph, am the one speaking with you. +Tell my father about all my splendor in Egypt +and everything you have seen. And bring my fa- +14 +ther down here quickly.” + +15 + +Then Joseph threw his arms around his +brother Benjamin and wept, and Benjamin wept +as they embraced. +Joseph kissed each of his +brothers as he wept over them. And afterward +Pharaoh Invites Jacob to Egypt +his brothers talked with him. +16 + +When the news reached Pharaoh’s house that +Joseph’s brothers had come, Pharaoh and his +17 +servants were pleased. + +18 + +19 + +Pharaoh said to Joseph, “Tell your brothers, +‘Do as follows: Load your animals and return to +Then bring your father and +the land of Canaan. +your families and return to me. I will give you the +best of the land of Egypt, and you shall eat from +You are also directed to tell +the fat of the land.’ +them: ‘Take wagons from the land of Egypt for +your young children and your wives, and bring +But pay no regard +your father and come back. +to your belongings, for the best of all the land of +21 +Egypt is yours.’ + +20 + +” + +22 + +So the sons of Israel did as they were told. Jo- +seph gave them wagons as Pharaoh had in- +structed, and he also gave them provisions for +He gave new garments to each of +their journey. + b +them, but to Benjamin he gave three hundred +And +shekels of silver +he sent to his father the following: ten donkeys +loaded with the best of Egypt, and ten female +donkeys loaded with grain and bread and provi- +24 +sions for his father’s journey. + + and five sets of clothes. + +23 + +Or + + is approx. 7.5 pounds or 3.4 kilograms of silver. + +Then Joseph sent his brothers on their way, +and as they were leaving, he said to them, “Do not +quarrel on the way!” + +b 22 300 shekels + + The Revival of Jacob + +25 + +26 + +So the brothers went up out of Egypt and came +to their father Jacob in the land of Canaan. +“Jo- +seph is still alive,” they said, “and he is ruler over +all the land of Egypt!” + +27 + +But Jacob was stunned, for he did not believe +them. +However, when they relayed all that Jo- +seph had told them, and when he saw the wagons +that Joseph had sent to carry him back, the spirit +28 +of their father Jacob was revived. + +“Enough!” declared Israel. “My son Joseph is + +Jacob’s Journey to Egypt +still alive! I will go to see him before I die.” + +46 + +2 + +So Israel set out with all that he had, and +when he came to Beersheba, he offered +And that +sacrifices to the God of his father Isaac. +night God spoke to Israel in a vision: “Jacob, Ja- +cob!” He said. +3 +“Here I am,” replied Jacob. + +4 + +“I am God,” He said, “the God of your father. Do +not be afraid to go down to Egypt, for I will make +you into a great nation there. +I will go down +with you to Egypt, and I will surely bring you +back. And Joseph’s own hands will close your +5 +eyes.” + +6 + +Then Jacob departed from Beersheba, and the +sons of Israel took their father Jacob in the wag- +ons Pharaoh had sent to carry him, along with +They also took the +their children and wives. +livestock and possessions they had acquired in +the land of Canaan, and Jacob and all his offspring +Those Who Went to Egypt (Exodus 1:1–7) +went to Egypt. +7 + +Jacob took with him to Egypt his sons and +grandsons, and his daughters and granddaugh- +The Children of Leah +ters—all his offspring. + +8 + +Now these are the names of the sons of + +Israel (Jacob and his descendants) who +9 +went to Egypt: Reuben, Jacob’s firstborn. + +The sons of Reuben: Hanoch, Pallu, +10 +Hezron, and Carmi. +b + +a + +The sons of Simeon: Jemuel, + + Jamin, + +Genesis 46:26 | 49 + +11 + +The sons of Levi: Gershon, Kohath, and + +12 +Merari. + +The sons of Judah: Er, Onan, Shelah, +Perez, and Zerah; but Er and Onan died +in the land of Canaan. +13 +The sons of Perez: Hezron and Hamul. + +c + +d + +The sons of Issachar: Tola, Puvah, + +14 +and Shimron. + + Job, + +The sons of Zebulun: Sered, Elon, and + +15 +Jahleel. + +e + +These are the sons of Leah born to Jacob + + in addition to his + +in Paddan-aram, +daughter Dinah. The total number of +sons and daughters was thirty-three. +16 + +The Children of Zilpah + +f + +g + +The sons of Gad: Ziphion, + + Haggi, Shuni, + +17 +Ezbon, Eri, Arodi, + + and Areli. + +The children of Asher: Imnah, Ishvah, + +Ishvi, Beriah, and their sister Serah. +18 +The sons of Beriah: Heber and Malchiel. + +These are the sons of Jacob born to + +Zilpah—whom Laban gave to his daughter +The Children of Rachel +Leah—sixteen in all. +19 + +The sons of Jacob’s wife Rachel: Joseph + +20 +and Benjamin. + +Manasseh and Ephraim were born to + +h + +Joseph in the land of Egypt by Asenath +21 +daughter of Potiphera, priest of On. + +The sons of Benjamin: Bela, Becher, +Ashbel, Gera, Naaman, Ehi, Rosh, Muppim, +22 +Huppim, and Ard. + +These are the sons of Rachel born to + +The Children of Bilhah + +Jacob—fourteen in all. +23 + +24 + +The son of Dan: Hushim. + +The sons of Naphtali: Jahzeel, Guni, Jezer, + +25 +and Shillem. + +These are the sons of Jacob born to +Bilhah, whom Laban gave to his daughter +Rachel—seven in all. + +26 + +a 10 Jemuel + +Ohad, Jachin, Zohar, +Canaanite woman. +c 13 + + and Shaul the son of a + +Nemuel + +Jashub +1 Chronicles 4:24. + + is another name for + +g 16 Arodi +; see Numbers 26:24 and 1 Chronicles 7:1. + +Hebrew; SP and Syriac + +Puah +; see Numbers 26:12. +Arod + +e 15 + +All those belonging to Jacob who came to +Egypt—his direct descendants, besides the wives +b 10 Zohar +of Jacob’s sons—numbered sixty-six persons. + +Zerah + +d 13 + is a variant of + +f 16 + +; see Numbers 26:13 and + +Zephon + +; see 1 Chronicles 7:1. + +h 20 + +Hebrew; SP and some LXX manuscripts + +That is, northwest Mesopotamia + +SP and LXX + +; see + +also Numbers 26:15. + + is a variant of + +; see Numbers 26:17. + +That is, Heliopolis, as in LXX + + 50 | Genesis 46:27 + +27 + + a + +And with the two sons + + who had been born to +Joseph in Egypt, the members of Jacob’s family +Jacob Arrives in Egypt +who went to Egypt were seventy +28 + + in all. + + b + +29 + +Now Jacob had sent Judah ahead of him to Jo- +seph to get directions to Goshen. When Jacob’s +family arrived in the land of Goshen, +Joseph +prepared his chariot and went there to meet his +father Israel. Joseph presented himself to him, +30 +embraced him, and wept profusely. + +Then Israel said to Joseph, “Finally I can die, +now that I have seen your face and know that you +31 +are + + still alive!” + +Joseph said to his brothers and to his father’s +household, “I will go up and inform Pharaoh: ‘My +brothers and my father’s household from the +The men are +land of Canaan have come to me. +shepherds; they raise livestock, and they have +brought their flocks and herds and all that they +33 +own.’ + +32 + +34 + +When Pharaoh summons you and asks, ‘What +you are to say, ‘Your serv- +is your occupation?’ +ants have raised livestock ever since our youth— +both we and our fathers.’ Then you will be al- +lowed to settle in the land of Goshen, since all +Jacob Settles in Goshen +shepherds are detestable to the Egyptians.” + +47 + +So Joseph went and told Pharaoh: “My fa- +ther and my brothers, with their flocks +and herds and all they own, have come from the +2 +land of Canaan and are now in Goshen.” + +And he chose five of his brothers and presented + +3 +them before Pharaoh. + +“What is your occupation?” Pharaoh asked Jo- + +seph’s brothers. + +“Your servants are shepherds,” they replied, +4 +“both we and our fathers.” + +Then they said to Pharaoh, “We have come +to live in the land for a time, because there is no +pasture for the flocks of your servants, since the +famine in the land of Canaan has been severe. So +now, please allow your servants to settle in the +5 +land of Goshen.” + +6 + +Pharaoh said to Joseph, “Now that your father +and brothers have come to you, +the land of +Egypt is before you; settle your father and broth- +a 27 +ers in the best part of the land. They may dwell in + +the nine sons + +the land of Goshen. And if you know of any tal- +ented men among them, put them in charge of +7 +my own livestock.” + +Then Joseph brought in his father Jacob and +Jacob + +presented him before Pharaoh, and +8 +blessed Pharaoh. + +“How many years have you lived?” Pharaoh + +9 +asked. + + c + +“My travels + + have lasted 130 years,” Jacob re- +plied. “My years have been few and hard, and +they have not matched the years of the travels of +10 +my fathers.” + +Then Jacob blessed Pharaoh and departed + +11 +from his presence. + +12 + +So Joseph settled his father and brothers in the +land of Egypt and gave them property in the best +part of the land, the district of Rameses, as Phar- +aoh had commanded. +Joseph also provided his +father and brothers and all his father’s house- +The Famine Continues +hold with food for their families. +13 + +14 + +There was no food, however, in all that region, +because the famine was so severe; the lands of +Egypt and Canaan had been exhausted by the +Joseph collected all the money to be +famine. +found in the land of Egypt and the land of Canaan +in exchange for the grain they were buying, and +When the +he brought it into Pharaoh’s palace. +money from the lands of Egypt and Canaan was +gone, all the Egyptians came to Joseph and said, +“Give us food. Why should we die before your +16 +eyes? For our funds have run out!” + +15 + +17 + +“Then bring me your livestock,” said Joseph. +“Since the money is gone, I will sell you food in +So they brought +exchange for your livestock.” +their livestock to Joseph, and he gave them food +in exchange for their horses, their flocks and +herds, and their donkeys. Throughout that year +he provided them with food in exchange for all +18 +their livestock. + +When that year was over, they came to him the +second year and said, “We cannot hide from our +lord that our money is gone and all our livestock +belongs to you. There is nothing left for our lord +Why should +except our bodies and our land. +we perish before your eyes—we and our land as +well? Purchase us and our land in exchange for + +19 + +b 27 + +Hebrew; LXX + +seventy-five +, probably including Joseph’s grandsons through Ephraim and Manasseh; see 1 Chronicles + +sojourns + + c 9 + +7:14–29. + +Hebrew (see also Exodus 1:5); LXX (see also Acts 7:14) + +Hebrew + +; twice in this verse + + food. Then we, along with our land, will be slaves +to Pharaoh. Give us seed that we may live and not +20 +die, and that the land may not become desolate.” + +22 + +21 + a + +So Joseph acquired for Pharaoh all the land in +Egypt; the Egyptians, one and all, sold their fields +because the famine was so severe upon them. +and Joseph re- +The land became Pharaoh’s, + from one end of +duced the people to servitude +However, he did not ac- +Egypt to the other. +quire the priests’ portion of the land, for it had +been given to them by Pharaoh. They ate the +rations that Pharaoh supplied; so they did not +23 +sell their land. + +24 + +Then Joseph said to the people, “Now that I +have acquired you and your land for Pharaoh this +At +day, here is seed for you to sow in the land. +harvest time, you are to give a fifth of it to Phar- +aoh, and four-fifths will be yours as seed for the +field and food for yourselves and your house- +25 +holds and children.” + +26 + +“You have saved our lives,” they said. “We have +found favor in our lord’s eyes, and we will be +So Joseph established a +Pharaoh’s servants.” +law that a fifth of the produce belongs to Phar- +aoh, and it is in effect in the land of Egypt to this +day. Only the priests’ land does not belong to +The Israelites Prosper in Goshen +Pharaoh. + +27 + +28 + +Now the Israelites settled in the land of Egypt, +in the region of Goshen. They acquired property +there and became fruitful and increased greatly +And Jacob lived in the land of Egypt +in number. +seventeen years, and the length of his life was +29 +147 years. + +When the time drew near for Israel to die, he +called his son Joseph and said to him, “If I have +found favor in your eyes, put your hand under +my thigh and promise to show me kindness and +but +faithfulness. Do not bury me in Egypt, +when I lie down with my fathers, carry me out of +Egypt and bury me with them.” + +30 + +Joseph answered, “I will do as you have re- +31 +quested.” + +“Swear to me,” Jacob said. + +b + +Genesis 48:14 | 51 + +Jacob Blesses Ephraim and Manasseh + +48 + +2 + +Some time later Joseph was told, “Your +father is ill.” So he set out with his two +When Jacob was +sons, Manasseh and Ephraim. +told, “Your son Joseph has come to you,” Israel + c +3 +rallied his strength and sat up in bed. + +4 + +Jacob said to Joseph, “God Almighty + + appeared +to me at Luz in the land of Canaan, and there He +blessed me +and told me, ‘Behold, I will make you +fruitful and multiply you; I will make you a +multitude of peoples, and will give this land to +your descendants after you as an everlasting +5 +possession.’ + +And now your two sons born to you in Egypt be- +fore I came to you here shall be reckoned as +mine; Ephraim and Manasseh shall be mine, just +as Reuben and Simeon are mine. +Any children +born to you after them shall be yours, and they +shall be called by the names of their brothers in +7 +the territory they inherit. + +6 + +d + +Now as for me, when I was returning from Pad- +dan, + to my sorrow Rachel died along the way in +the land of Canaan, some distance from Ephrath. +So I buried her there beside the road to Ephrath” +8 +(that is, Bethlehem). + +When Israel saw the sons of Joseph, he asked, + +9 +“Who are these?” + +Joseph said to his father, “They are the sons God + +has given me in this place.” + +So Jacob said, “Please bring them to me, that I +10 +may bless them.” + +Now Israel’s eyesight was poor because of old +age; he could hardly see. Joseph brought his sons +to him, and his father kissed them and embraced +11 +them. + +“I never expected to see your face again,” +Israel said to Joseph, “but now God has let me see +12 +your children as well.” + +Then Joseph removed his sons from his + +13 +father’s knees and bowed facedown. + +And Joseph took both of them—with Ephraim +in his right hand toward Israel’s left hand, and +Manasseh in his left hand toward Israel’s right +But Is- +hand—and brought them close to him. +rael stretched out his right hand and put it on the +head of Ephraim, the younger; and crossing his +hands, he put his left on Manasseh’s head, + +Israel worshiped as he leaned on + +b 31 + +14 + +So Joseph swore to him, and Israel bowed in wor- +ship at the head of his bed. +a 21 +the top of his staff + +removed the people to the cities + +c 3 + +El-Shaddai + +d 7 + +SP, LXX, Vulgate; Hebrew + +Hebrew; LXX + +; see Hebrews 11:21. + +Hebrew + +That is, northwest Mesopotamia + + 52 | Genesis 48:15 + +15 + +4 + +although Manasseh was the firstborn. +blessed Joseph and said: + +Then he + +Uncontrolled as the waters, +you will no longer excel, + +“May the God before whom my fathers + +because you went up to your father’s bed, +5 + +Abraham and Isaac walked, + +16 + +the God who has been my shepherd all my + + a + +6 + +life to this day, + +onto my couch, and defiled it. + + c +Simeon and Levi are brothers; + +their swords + + are weapons of violence. + +the angel + + who has redeemed me from all + +May I never enter their council; + +harm— + +may He bless these boys. + +And may they be called by my name + +and the names of my fathers Abraham and + +Isaac, + +17 + +and may they grow into a multitude upon + +the earth.” + +When Joseph saw that his father had placed his +right hand on Ephraim’s head, he was displeased +and took his father’s hand to move it from +“Not so, my fa- +Ephraim’s head to Manasseh’s. +ther!” Joseph said. “This one is the firstborn; put +19 +your right hand on his head.” + +18 + +But his father refused. “I know, my son, I +know!” he said. “He too shall become a people, +and he too shall be great; nevertheless, his +younger brother shall be greater than he, and his +20 +offspring shall become a multitude of nations.” + +may I never join their assembly. + +For they kill men in their anger, + +7 + +and hamstring oxen on a whim. +Cursed be their anger, for it is strong, +and their wrath, for it is cruel! + +I will disperse them in Jacob +8 +and scatter them in Israel. + +d + +Judah, + + your brothers shall praise you. +Your hand shall be on the necks of your + +9 + +enemies; + +your father’s sons shall bow down to you. + +Judah is a young lion— + +my son, you return from the prey. +Like a lion he crouches and lies down; +e + +like a lioness, who dares to rouse him? + +10 + +The scepter will not depart from Judah, +nor the staff from between his feet, + + f + +until Shiloh + +11 + + comes + +So that day Jacob blessed them and said: + +and the allegiance of the nations is his. + +“By you shall Israel pronounce this blessing: +‘May God make you like Ephraim and + +Manasseh.’ + +” + +21 +So he put Ephraim before Manasseh. + + b + +22 + +Then Israel said to Joseph, “Look, I am about to +die, but God will be with you and bring you back +And to you, as one +to the land of your fathers. +who is above your brothers, I give the ridge of + that I took from the Amorites with my +land +Jacob Blesses His Sons +sword and bow.” + +49 + +Then Jacob called for his sons and said, +“Gather around so that I can tell you + +2 +what will happen to you in the days to come: + +Come together and listen, O sons of Jacob; + +3 + +listen to your father Israel. + +Reuben, you are my firstborn, my might, +and the beginning of my strength, + +excelling in honor, + +He ties his donkey to the vine, + +his colt to the choicest branch. +He washes his garments in wine, + +12 + +his robes in the blood of grapes. + +His eyes are darker than wine, + +13 + +and his teeth are whiter than milk. + +Zebulun shall dwell by the seashore +and become a harbor for ships; +his border shall extend to Sidon. + +14 + +g + +Issachar is a strong donkey, + +15 + +lying down between the sheepfolds. +He saw that his resting place was good +and that his land was pleasant, +so he bent his shoulder to the burden + + h +and submitted to labor as a servant. + +16 + +Dan shall provide justice for his people + +17 + +as one of the tribes of Israel. +He will be a snake by the road, + +a viper in the path +that bites the horse’s heels + +b 22 +Angel +excelling in power. +dwelling places + +a 16 +c 5 +Or +to whom tribute belongs +Or +He has vindicated + +one portion of the land +d 8 Judah +g 14 + +saddlebags + +Or + +; Hebrew +hearths + +h 16 + +shekem + +praise + +so that its rider tumbles backward. +e 10 + +Shechem +until the one + +f 10 + +, which sounds like the town and district called + +from his descendants +Dan + +Dan shall judge his people +. + +Or + +He has judged +Or + + sounds like the Hebrew for + or + +Or + +Or + +; + + means + +or + +. + + 18 + +33 + +Genesis 50:14 | 53 + +19 + + a + +I await Your salvation, O LORD. + +20 + +Gad + + will be attacked by raiders, +but he will attack their heels. + +21 + +22 + +Asher’s food will be rich; + +he shall provide royal delicacies. + +b + +Naphtali is a doe set free + +that bears beautiful fawns. + +Joseph is a fruitful vine— + +c + +23 + +a fruitful vine by a spring, +whose branches scale the wall. + +The archers attacked him with bitterness; + +24 + +they aimed at him in hostility. + +Yet he steadied his bow, + +and his strong arms were tempered +by the hands of the Mighty One of Jacob, + +25 + +in the name of the Shepherd, the Rock of + d + +Israel, + +by the God of your father who helps you, + +and by the Almighty + + who blesses you, + +with blessings of the heavens above, + +26 + +with blessings of the depths below, +with blessings of the breasts and womb. +The blessings of your father have surpassed +the blessings of the ancient mountains +and the bounty of the everlasting hills. + + e + +May they rest on the head of Joseph, + +on the brow of the prince of his brothers. + +27 + +Benjamin is a ravenous wolf; + +28 + +in the morning he devours the prey, +in the evening he divides the plunder.” + +These are the tribes of Israel, twelve in all, and +this was what their father said to them. He +blessed them, and he blessed each one with a +The Death of Jacob +suitable blessing. +29 + +31 + +Then Jacob instructed them, “I am about to be +gathered to my people. Bury me with my fathers +30 +in the cave in the field of Ephron the Hittite. +The cave is in the field of Machpelah near +Mamre, in the land of Canaan. This is the field +Abraham purchased from Ephron the Hittite as a +There Abraham and his wife Sarah +burial site. +are buried, there Isaac and his wife Rebekah are +The field and +buried, and there I buried Leah. +the cave that is in it were purchased from the +Hittites.” +a 19 Gad +fold +c 22 + sounds like the Hebrew for +of my ancestors +e 26 + +f 11 Abel-mizraim + + and also for + +raid + +32 + +When Jacob had finished instructing his sons, +he pulled his feet into the bed and breathed his +Mourning and Burial for Jacob +last, and he was gathered to his people. + +50 + +2 + +Then Joseph fell upon his father’s face, +wept over him, and kissed him. + +3 + +And Joseph directed the physicians in his ser- +vice to embalm his father Israel. So they em- +balmed him, +taking the forty days required to +complete the embalming. And the Egyptians +4 +mourned for him seventy days. + +5 + +When the days of mourning had passed, Joseph +said to Pharaoh’s court, “If I have found favor in +your eyes, please tell Pharaoh that +my father +made me swear an oath when he said, ‘I am about +to die. You must bury me in the tomb that I dug +for myself in the land of Canaan.’ Now let me go +6 +and bury my father, and then return.” + +Pharaoh replied, “Go up and bury your father, + +7 +as he made you swear to do.” + +8 + +Then Joseph went to bury his father, and all the +servants of Pharaoh accompanied him—the +elders of Pharaoh’s household and all the elders +along with all of Joseph’s +of the land of Egypt— +household, and his brothers, and his father’s +household. Only their children and flocks and +9 +herds were left in Goshen. + +Chariots and horsemen alike went up with him, +10 +and it was an exceedingly large procession. +When they reached the threshing floor of Atad, +which is across the Jordan, they lamented and +wailed loudly, and Joseph mourned for his father +11 +seven days. + +When the Canaanites of the land saw the +mourning at the threshing floor of Atad, they +said, “This is a solemn ceremony of mourning by +the Egyptians.” Thus the place across the Jordan +12 +is called Abel-mizraim. +13 + +f + +So Jacob’s sons did as he had charged them. +They carried him to the land of Canaan and +buried him in the cave at Machpelah in the field +near Mamre, which Abraham had purchased +14 +from Ephron the Hittite as a burial site. + +After Joseph had buried his father, he returned +to Egypt with his brothers and all who had gone +with him to bury his father. + +gives beautiful words + +b 21 + +band of raiders + +bears fawns of the +Shaddai + +d 25 + or + +Joseph is a wild donkey, a wild donkey by a spring, with his wild colts beside the wall + +mourning of the Egyptians + +. + +Or + +Or + +Or + + means + +. + +Hebrew + + 21 + +Therefore +preserve the lives of many people. +do not be afraid. I will provide for you and your +little ones.” So Joseph reassured his brothers and +The Death of Joseph +spoke kindly to them. +22 + +Now +23 + +Joseph and his + +father’s household +remained in Egypt, and Joseph lived to the age of +110. +He saw Ephraim’s sons to the third gener- + a +ation, and indeed the sons of Machir son of +24 +Manasseh were brought up + + on Joseph’s knees. + +Then Joseph said to his brothers, “I am about +to die, but God will surely visit you and bring you +up from this land to the land He promised on +And Joseph +oath to Abraham, Isaac, and Jacob.” +made the sons of Israel take an oath and said, +“God will surely attend to you, and then you must +26 +carry my bones up from this place.” + +25 + +So Joseph died at the age of 110. And they em- +balmed his body and placed it in a coffin in Egypt. + +54 | Genesis 50:15 + +Joseph Comforts His Brothers + +15 + +When Joseph’s brothers saw that their father +was dead, they said, “What if Joseph bears a +grudge? Then he will surely repay us for all the +16 +evil that we did to him.” + +17 + +So they sent word to Joseph, saying, “Before he +died, your father commanded, +‘This is what +you are to say to Joseph: I beg you, please forgive +the transgression and sin of your brothers, for +they did you wrong.’ So now, Joseph, please for- +give the transgression of the servants of the God +of your father.” +18 +When their message came to him, Joseph wept. +His brothers also came to him, bowed down + +19 +before him, and said, “We are your slaves!” +20 + +But Joseph replied, “Do not be afraid. Am I in +As for you, what you in- +the place of God? +tended against me for evil, God intended for +good, in order to accomplish a day like this—to + +a 23 + +born + +placed at birth + +Or + + or + + Exodus + +The Israelites Multiply in Egypt +(Genesis 46:7–27) + +1 + +2 + +family: + +These are the names of the sons of Israel +who went to Egypt with Jacob, each with his + +3 + +Reuben, Simeon, Levi, and Judah; + +4 + +Issachar, Zebulun, and Benjamin; + +Dan and Naphtali; + +5 + +Gad and Asher. + + a + +The descendants of Jacob numbered seventy +in all, including Joseph, who was already in +6 +Egypt. + +7 + +Now Joseph and all his brothers and all that +but the Israelites were fruitful +generation died, +and increased rapidly; they multiplied and be- +came exceedingly numerous, so that the land was +Oppression by a New King (Acts 7:15–19) +filled with them. +8 + +10 + +9 +Then a new king, who did not know Joseph, +came to power in Egypt. +“Look,” he said to his +people, “the Israelites have become too numer- +Come, let us deal +ous and too powerful for us. +shrewdly with them, or they will increase even +more; and if a war breaks out, they may join +our enemies, fight against us, and leave the +11 +country. + +” + +b + +12 + +So the Egyptians appointed taskmasters over +the Israelites to oppress them with forced labor. +As a result, they built Pithom and Rameses as +But the more they +store cities for Pharaoh. +were oppressed, the more they multiplied and +flourished; so the Egyptians came to dread the Is- +13 +raelites. + +14 + +They worked the Israelites ruthlessly + +and +made their lives bitter with hard labor in brick +and mortar, and with all kinds of work in the +15 +fields. Every service they imposed was harsh. + +Then the king of Egypt said to the Hebrew mid- +wives, whose names were Shiphrah and Puah, +a 5 +d 3 + +to the Hebrews + +MT (see also Gen. 46:27); DSS and LXX (see also Acts 7:14) + +16 + +“When you help the Hebrew women give birth, +observe them on the birthstools. If the child is a +17 +son, kill him; but if it is a daughter, let her live.” + +18 + +The midwives, however, feared God and did +not do as the king of Egypt had instructed; they +So the king of Egypt sum- +let the boys live. +moned the midwives and asked them, “Why have +19 +you done this? Why have you let the boys live?” + +The midwives answered Pharaoh, “The He- +brew women are not like the Egyptian women, +for they are vigorous and give birth before a mid- +20 +wife arrives.” + +So God was good to the midwives, and the peo- +21 +ple multiplied and became even more numerous. +And because the midwives feared God, He gave + +22 +them families of their own. + + c + +Then Pharaoh commanded all his people: +“Every son born to the Hebrews + you must throw +into the Nile, but every daughter you may allow +The Birth and Adoption of Moses +to live.” +(Acts 7:20–22 ; Hebrews 11:23) + +2 + +2 + +Now a man of the house of Levi married a Le- +vite woman, +and she conceived and gave +birth to a son. When she saw that he was a beau- +3 +tiful child, she hid him for three months. + + d + +But when she could no longer hide him, she got +him a papyrus basket + and coated it with tar and +pitch. Then she placed the child in the basket and +4 +set it among the reeds along the bank of the Nile. +And his sister stood at a distance to see what + +5 +would happen to him. + +6 + +Soon the daughter of Pharaoh went down to +bathe in the Nile, and her attendants were walk- +ing along the riverbank. And when she saw the +basket among the reeds, she sent her maidser- +When she opened it, she saw +vant to retrieve it. +the child, and behold, the little boy was crying. So +she had compassion on him and said, “This is one +of the Hebrew children.” +and take the country +b 10 +seventy-five + +c 22 + +ark + +Or + +SP, LXX, and +; also in verse 5; see Gen. 6:14. + +Targum Yonaton; Heb. does not include + +. + +The Hebrew can also mean + + 56 | Exodus 2:7 + +7 + +20 + +Then his sister said to Pharaoh’s daughter, +“Shall I go and call one of the Hebrew women to +8 +nurse the child for you?” + +“So where is he?” their father asked. “Why did +you leave the man behind? Invite him to have +21 +something to eat.” + +“Go ahead,” Pharaoh’s daughter told her. And + +9 +the girl went and called the boy’s mother. + +Pharaoh’s daughter said to her, “Take this child +and nurse him for me, and I will pay your wages.” +10 +So the woman took the boy and nursed him. + + a + +When the child had grown older, she brought +him to Pharaoh’s daughter, and he became her + and explained, “I +son. She named him Moses +The Rejection and Flight of Moses +drew him out of the water.” +(Acts 7:23–29) + +11 + + b + +One day, after Moses had grown up, he went + and observed their hard +out to his own people +12 +labor. He saw an Egyptian beating a Hebrew, one +After looking this way and +of his own people. +that and seeing no one, he struck down the Egyp- +13 +tian and hid his body in the sand. + +The next day Moses went out and saw two He- +brews fighting. He asked the one in the wrong, +14 +“Why are you attacking your companion?” + + c + +But the man replied, “Who made you ruler and + d + Are you planning to kill me as + +judge over us? +you killed the Egyptian? + +” + +Then Moses was afraid and thought, “This thing I +15 +have done has surely become known.” + +When Pharaoh heard about this matter, he +sought to kill Moses. But Moses fled from Phar- +aoh and settled in the land of Midian, where he +16 +sat down beside a well. + +17 + +Now the priest of Midian had seven daughters, +and they came to draw water and fill the troughs +And when some +to water their father’s flock. +shepherds came along and drove them away, +Moses rose up to help them and watered their +18 +flock. +e + +When the daughters returned to their father + he asked them, “Why have you returned + +Reuel, +19 +so early today?” + +f + +22 + +Moses agreed to stay with the man, and he +gave his daughter Zipporah to Moses in mar- +And she gave birth to a son, and Moses +riage. +named him Gershom, + saying, “I have become a +God Hears the Cry of the Israelites +foreigner in a foreign land.” +23 + +After a long time, the king of Egypt died. The +Israelites groaned and cried out under their bur- +den of slavery, and their cry for deliverance from +24 +bondage ascended to God. + +25 + +So God heard their groaning, and He remem- +bered His covenant with Abraham, Isaac, and Ja- +Moses at the Burning Bush (Acts 7:30–38) +cob. + +God saw the Israelites and took notice. + +3 + +g + + i + +h + +There the angel + +Meanwhile, Moses was shepherding the +flock of his father-in-law Jethro, + the priest +of Midian. He led the flock to the far side of the +2 +wilderness and came to Horeb, + the mountain of +God. + of the LORD appeared to +him in a blazing fire from within a bush. Moses +saw the bush ablaze with fire, but it was not con- +So Moses thought, “I must go over and +sumed. +see this marvelous sight. Why is the bush not +4 +burning up?” + +3 + +When the LORD saw that he had gone over to +look, God called out to him from within the bush, +“Moses, Moses!” +5 +“Here I am,” he answered. + + j + +6 + +“Do not come any closer,” God said. “Take off +your sandals, for the place where you are stand- +Then He said, “I am the God +ing is holy ground.” +of your father, the God of Abraham, the God of +Isaac, and the God of Jacob.” + + k + +At this, Moses hid his face, for he was afraid to +7 +look at God. + +The LORD said, “I have indeed seen the afflic- +tion of My people in Egypt. I have heard them +crying out because of their oppressors, and I am +aware of their sufferings. +I have come down to +rescue them from the hand of the Egyptians and +b 11 +to bring them up out of that land to a good and + +his brothers + +c 14 + +8 + +e 18 Reuel + +“An Egyptian rescued us from the shepherds,” +they replied. “He even drew water for us and wa- +to lift out +a 10 Moses +tered the flock.” +d 14 +Jethro + + sounds like a Hebrew term that means + +f 22 Gershom + +Are you planning to kill me as you killed the Egyptian yesterday? + +LXX + +Reuel +; see Exodus 3:1. +j 5 +Angel + +; see Exodus 2:18. + +h 1 + +. + +Cited in Acts 7:27 and Acts 7:35 +Jethro + was also called + was also +. +That is, Mount Sinai, or possibly a mountain in the range containing Mount Sinai + + sounds like the Hebrew for +k 6 + +Moses’ father-in-law + + Cited in Acts 7:28 + +Or +foreigner + +g 1 + +Cited in Acts 7:33 + +Cited in Matthew 22:32, Mark 12:26, Luke 20:37, and Acts 7:32 + +i 2 +called +Or + + d + +20 + +Exodus 4:9 | 57 + +spacious land, a land flowing with milk and +honey—the home of the Canaanites, Hittites, +9 +Amorites, Perizzites, Hivites, and Jebusites. + +So I will stretch out My hand and strike +him. +the Egyptians with all the wonders I will perform +21 +among them. And after that, he will release you. + +10 + +And now the cry of the Israelites has reached +Me, and I have seen how severely the Egyptians +are oppressing them. +Therefore, go! I am send- +ing you to Pharaoh to bring My people the Israel- +11 +ites out of Egypt.” + + a + +But Moses asked God, “Who am I, that I should +go to Pharaoh and bring the Israelites out of +12 +Egypt?” + +“I will surely be with you,” God said, “and this +will be the sign to you that I have sent you: When +you have brought the people out of Egypt, all of +13 +you will worship God on this mountain.” + + b + +Then Moses asked God, “Suppose I go to the Is- +raelites and say to them, ‘The God of your fathers +has sent me to you,’ and they ask me, ‘What is His +14 +name?’ What should I tell them?” + +c + +God said to Moses, “I AM WHO I AM. + + This is +what you are to say to the Israelites: ‘I AM has +15 +sent me to you.’ + +” + +God also told Moses, “Say to the Israelites, ‘The +LORD, the God of your fathers—the God of Abra- +ham, the God of Isaac, and the God of Jacob—has +sent me to you.’ This is My name forever, and this +is how I am to be remembered in every genera- +16 +tion. + +Go, assemble the elders of Israel and say to +them, ‘The LORD, the God of your fathers—the +God of Abraham, Isaac, and Jacob—has appeared +to me and said: I have surely attended to you and +17 +have seen what has been done to you in Egypt. +And I have promised to bring you up out of +your affliction in Egypt, into the land of the Ca- +naanites, Hittites, Amorites, Perizzites, Hivites, +and Jebusites—a land flowing with milk and +18 +honey.’ + +The elders of Israel will listen to what you say, +and you must go with them to the king of Egypt +and tell him, ‘The LORD, the God of the Hebrews, +has met with us. Now please let us take a three- +day journey into the wilderness, so that we may +19 +sacrifice to the LORD our God.’ + +22 + +And I will grant this people such favor in the +sight of the Egyptians that when you leave, you +Every woman +will not go away empty-handed. +shall ask her neighbor and any woman staying in +her house for silver and gold jewelry and cloth- +ing, and you will put them on your sons and +Moses’ Staff +daughters. So you will plunder the Egyptians.” + +4 + +Then Moses answered, “What if they do not +believe me or listen to my voice? For they + +2 +may say, ‘The LORD has not appeared to you.’ + +” + +And the LORD asked him, “What is that in your + +hand?” +3 +“A staff,” he replied. + +e + +“Throw it on the ground,” said the LORD. So Mo- +ses threw it on the ground, and it became a +4 +snake, + + and he ran from it. + +“Stretch out your hand and grab it by the tail,” +the LORD said to Moses, who reached out his +5 +hand and caught the snake, and it turned back +“This is so that they may +into a staff in his hand. +believe that the LORD, the God of their fathers— +the God of Abraham, the God of Isaac, and the +Moses’ Hand +God of Jacob—has appeared to you.” +6 + +f + +Furthermore, the LORD said to Moses, “Put +your hand inside your cloak. +” So he put his hand +g +inside his cloak, and when he took it out, his hand +7 +was leprous, + + white as snow. + +“Put your hand back inside your cloak,” said the + +LORD. + +So Moses put his hand back inside his cloak, and +when he took it out, it was restored, like the rest +8 +of his skin. + +And the LORD said, “If they refuse to believe you +9 +or heed the witness of the first sign, they may be- +lieve that of the second. +But if they do not be- +lieve even these two signs or listen to your voice, +take some water from the Nile and pour it on the +dry ground. Then the water you take from the +Nile will become blood on the ground.” + + d 19 + +except by a mighty +into your + +tannin + +I WILL BE WHAT I WILL BE + +f 6 +Literally +leprous + + in Exodus 7:10 +The Hebrew word traditionally translated as + +Hebrew + + was used for + +But I know that the king of Egypt will not +b 12 +a 10 +allow you to go unless a mighty hand compels +hand +bosom + +Cited in Acts 7:34 + +Cited in Acts 7:7 + +nachash + +c 14 + +e 3 + +Or + +Hebrew + +g 6 +, in contrast to Aaron’s staff, which became a + +; twice in this verse and twice in verse 7 + +various skin diseases; see Leviticus 13. + + 58 | Exodus 4:10 + +The Appointment of Aaron + +26 + +10 + +“Please, Lord,” Moses replied, “I have never +been eloquent, neither in the past nor since You +have spoken to Your servant, for I am slow of +11 +speech and tongue.” + +And the LORD said to him, “Who gave man his +mouth? Or who makes the mute or the deaf, the +sighted or the blind? Is it not I, the LORD? +Now +go! I will help you as you speak, and I will teach +13 +you what to say.” + +12 + +But Moses replied, “Please, Lord, send some- + +14 +one else.” + +16 + +15 + +Then the anger of the LORD burned against +Moses, and He said, “Is not Aaron the Levite your +brother? I know that he can speak well, and he is +now on his way to meet you. When he sees you, +he will be glad in his heart. +You are to speak to +him and put the words in his mouth. I will help +both of you to speak, and I will teach you what to +do. +He will speak to the people for you. He will +be your spokesman, and it will be as if you were +God to him. +But take this staff in your hand so +Moses Leaves for Egypt +you can perform signs with it.” +18 + +17 + +So the LORD let him alone. (When she said, +“bridegroom of blood,” she was referring to the +The People Believe Moses and Aaron +circumcision.) +27 + +28 + +Meanwhile, the LORD had said to Aaron, “Go +and meet Moses in the wilderness.” So he went +and met Moses at the mountain of God and kissed +And Moses told Aaron everything the +him. +LORD had sent him to say, and all the signs He +29 +had commanded him to perform. + +30 + +Then Moses and Aaron went and assembled all +and Aaron relayed + +the elders of the Israelites, +everything the LORD had said to Moses. + +31 + +And Moses performed the signs before the peo- +and they believed. And when they heard +ple, +that the LORD had attended to the Israelites and +had seen their affliction, they bowed down and +Pharaoh’s First Refusal +worshiped. + +5 + +After that, Moses and Aaron went to Phar- +aoh and said, “This is what the LORD, the +God of Israel, says: ‘Let My people go, so that they +2 +may hold a feast to Me in the wilderness.’ + +” + + a + +Then Moses went back to his father-in-law +Jethro + and said to him, “Please let me return to +my brothers in Egypt to see if they are still alive.” +19 +“Go in peace,” Jethro replied. + +20 + +Now the LORD had said to Moses in Midian, +“Go back to Egypt, for all the men who sought to +kill you are dead.” +So Moses took his wife and +sons, put them on a donkey, and headed back to +21 +Egypt. And he took the staff of God in his hand. + +The LORD instructed Moses, “When you go +back to Egypt, see that you perform before Phar- + b +aoh all the wonders that I have put within your +power. But I will harden + his heart so that he will +22 +not let the people go. + +23 + +Then tell Pharaoh that this is what the LORD +and I told you +says: ‘Israel is My firstborn son, +to let My son go so that he may worship Me. But +since you have refused to let him go, behold, I will +24 +” +kill your firstborn son!’ + + c + +25 +LORD met Moses + +Now at a lodging place along the way, the + and was about to kill him. +But Zipporah took a flint knife, cut off her son’s +foreskin, and touched it to Moses’ feet. + “Surely +Jethro +a 18 +you are a bridegroom of blood to me,” she said. +d 25 + +his feet + +Reuel + +d + +But Pharaoh replied, “Who is the LORD that I +should obey His voice and let Israel go? I do not +3 +know the LORD, and I will not let Israel go.” + +“The God of the Hebrews has met with us,” they +answered. “Please let us go on a three-day jour- +ney into the wilderness to sacrifice to the LORD +our God, or He may strike us with plagues or with +4 +the sword.” + +5 + +But the king of Egypt said to them, “Moses and +Aaron, why do you draw the people away from +their work? Get back to your labor!” +Pharaoh +also said, “Look, the people of the land are now +numerous, and you would be stopping them +Bricks and Straw +from their labor.” +6 + +7 + +8 + +That same day Pharaoh commanded the task- +“You +masters of the people and their foremen: +shall no longer supply the people with straw for +making bricks. They must go and gather their +But require of them the same quota +own straw. +of bricks as before; do not reduce it. For they are +9 +lazy; that is why they are crying out, ‘Let us go +Make the work harder +and sacrifice to our God.’ +on the men so they will be occupied and pay no +attention to these lies.” + +strengthen + +stiffen + +b 21 + +c 24 + +him + +Moses’ father-in-law +Hebrew + + was also called + +; see Exodus 2:18. + +Or + + or + +Hebrew + + 10 + +2 + +3 + +Exodus 6:16 | 59 + +So the taskmasters and foremen of the people +went out and said to them, “This is what Pharaoh +Go and +says: ‘I am no longer giving you straw. +get your own straw wherever you can find it; but +12 +your workload will in no way be reduced.’ + +11 + +” + +13 + +So the people scattered all over the land of +The task- +Egypt to gather stubble for straw. +masters kept pressing them, saying, “Fulfill your +quota each day, just as you did when straw was +14 +provided.” + +Then the Israelite foremen, whom Pharaoh’s +taskmasters had set over the people, were +beaten and asked, “Why have you not fulfilled +your quota of bricks yesterday or today, as you +The Cry of the Israelites +did before?” +15 + +16 + +So the Israelite foremen went and appealed to +Pharaoh: “Why are you treating your servants +this way? +No straw has been given to your +servants, yet we are told, ‘Make bricks!’ Look, +your servants are being beaten, but the fault is +17 +with your own people.” + +18 + +“You are slackers!” Pharaoh replied. “Slackers! +That is why you keep saying, ‘Let us go and sac- +Now get to work. You will +rifice to the LORD.’ +be given no straw, yet you must deliver the full +19 +quota of bricks.” + +The Israelite foremen realized they were in +trouble when they were told, “You must not re- +When they +duce your daily quota of bricks.” +left Pharaoh, they confronted Moses and Aaron, +21 +who stood waiting to meet them. + +20 + +“May the LORD look upon you and judge you,” +the foremen said, “for you have made us a stench +before Pharaoh and his officials; you have placed +22 +in their hand a sword to kill us!” + +23 + +So Moses returned to the LORD and asked, +“Lord, why have You brought trouble upon this +Ever since I +people? Is this why You sent me? +went to Pharaoh to speak in Your name, he has +brought trouble on this people, and You have not +God Promises Deliverance +delivered Your people in any way.” + +6 + +But the LORD said to Moses, “Now you will +see what I will do to Pharaoh, for because of +My mighty hand he will let the people go; be- +cause of My strong hand he will drive them out of +b 12 +a 3 +his land.” +Hebrew + +El-Shaddai + +Hebrew + +I have uncircumcised lips + +Numbers 26:13 and 1 Chronicles 4:24. + +a + +God also told Moses, “I am the LORD. + +I ap- +peared to Abraham, to Isaac, and to Jacob as God +4 + but by My name the LORD I did not +Almighty, +make Myself known to them. +I also established +My covenant with them to give them the land of +5 +Canaan, the land where they lived as foreigners. +Furthermore, I have heard the groaning of the +Israelites, whom the Egyptians are enslaving, +6 +and I have remembered My covenant. + +7 + +Therefore tell the Israelites: ‘I am the LORD, and +I will bring you out from under the yoke of the +Egyptians and deliver you from their bondage. I +will redeem you with an outstretched arm and +I will take you as +with mighty acts of judgment. +My own people, and I will be your God. Then you +will know that I am the LORD your God, who +brought you out from under the yoke of the +And I will bring you into the land +Egyptians. +that I swore to give to Abraham, Isaac, and Jacob. +I will give it to you as a possession. I am the +9 +LORD!’ + +” + +8 + +Moses relayed this message to the Israelites, +but on account of their broken spirit and cruel +11 +10 +bondage, they did not listen to him. + +So the LORD said to Moses, + +“Go and tell +Pharaoh king of Egypt to let the Israelites go out +12 +of his land.” + +But in the LORD’s presence Moses replied, “If +the Israelites will not listen to me, then why +would Pharaoh listen to me, since I am unskilled +13 +in speech? + +” + + b + +Then the LORD spoke to Moses and Aaron and +gave them a charge concerning both the Israel- +ites and Pharaoh king of Egypt, to bring the Isra- +Genealogies of Moses and Aaron +elites out of the land of Egypt. +14 + +These were the heads of their fathers’ houses: + +The sons of Reuben, the firstborn of Israel, +were Hanoch and Pallu, Hezron and Carmi. +15 +These were the clans of Reuben. + +c + +The sons of Simeon were Jemuel, Jamin, + +Ohad, Jachin, Zohar, + and Shaul, the son of a +Canaanite woman. These were the clans of +16 +Simeon. + +These were the names of the sons of Levi +according to their records: Gershon, Kohath, +and Merari. Levi lived 137 years. + +c 15 Zohar + +Zerah + +; also in verse 30 + + is a variant of + +; see + + 60 | Exodus 6:17 + +17 + +3 + +The sons of Gershon were Libni and + +18 +Shimei, by their clans. + +The sons of Kohath were Amram, Izhar, +19 +Hebron, and Uzziel. Kohath lived 133 years. + +The sons of Merari were Mahli and Mushi. + +These were the clans of the Levites accord- +20 +ing to their records. + +And Amram married his father’s sister + +Jochebed, and she bore him Aaron and +21 +Moses. Amram lived 137 years. + +The sons of Izhar were Korah, Nepheg, + +22 +and Zichri. +a + +The sons of Uzziel were Mishael, + +23 +Elzaphan, + + and Sithri. + +And Aaron married Elisheba, the daugh- +ter of Amminadab and sister of Nahshon, +and she bore him Nadab and Abihu, Eleazar +24 +and Ithamar. + +b + +The sons of Korah were Assir, Elkanah, + +and Abiasaph. +25 +Korahites. + + These were the clans of the + +Aaron’s son Eleazar married one of the + +daughters of Putiel, and she bore him +Phinehas. + +26 + +These were the heads of the Levite families +by their clans. + +27 + +It was this Aaron and Moses to whom the +LORD said, “Bring the Israelites out of the land of +Egypt by their divisions.” +Moses and Aaron +were the ones who spoke to Pharaoh king of +28 +Egypt in order to bring the Israelites out of Egypt. + +29 + +Now on the day that the LORD spoke to Moses +He said to him, “I am the LORD; tell + +in Egypt, +30 +Pharaoh king of Egypt everything I say to you.” + +But in the LORD’s presence Moses replied, +“Since I am unskilled in speech, why would +God Commands Moses and Aaron +Pharaoh listen to me?” + +7 + +2 + +The LORD answered Moses, “See, I have +made you like God to Pharaoh, and your +You are to +brother Aaron will be your prophet. +speak all that I command you, and your brother +Aaron is to tell Pharaoh to let the Israelites go out +a 22 Elzaphan +of his land. + +Elizaphan + +4 + +But I will harden Pharaoh’s heart, and though I +will multiply My signs and wonders in the land of +Pharaoh will not listen to you. +Egypt, + +Then I will lay My hand on Egypt, and by mighty +acts of judgment I will bring the divisions of My +5 +people the Israelites out of the land of Egypt. +And the Egyptians will know that I am the +LORD, when I stretch out My hand against Egypt +6 +and bring the Israelites out from among them.” + +7 + +So Moses and Aaron did just as the LORD had +Moses was eighty years old +commanded them. +and Aaron was eighty-three when they spoke to +Aaron’s Staff +Pharaoh. +8 + +9 + +The LORD said to Moses and Aaron, + +“When +Pharaoh tells you, ‘Perform a miracle,’ you are to +c +say to Aaron, ‘Take your staff and throw it down +10 +” +before Pharaoh,’ and it will become a serpent. + +So Moses and Aaron went to Pharaoh and did +just as the LORD had commanded. Aaron threw +his staff down before Pharaoh and his officials, +11 +and it became a serpent. + +But Pharaoh called the wise men and sorcerers +and magicians of Egypt, and they also did the +same things by their magic arts. +Each one +threw down his staff, and it became a serpent. +13 +But Aaron’s staff swallowed up the other staffs. + +12 + +d + +Still, Pharaoh’s heart was hardened, + + and he +would not listen to them, just as the LORD had +The First Plague: Blood +said. +14 + + e + +16 + +15 +is unyielding; + +Then the LORD said to Moses, “Pharaoh’s heart + he refuses to let the people go. +Go to Pharaoh in the morning as you see him +walking out to the water. Wait on the bank of the +Nile to meet him, and take in your hand the staff +Then say to +that was changed into a snake. +him, ‘The LORD, the God of the Hebrews, has sent +me to tell you: Let My people go, so that they may +worship Me in the wilderness. But until now you +This is what the LORD says: +have not listened. +By this you will know that I am the LORD. Behold, +with the staff in my hand I will strike the water +The fish in +of the Nile, and it will turn to blood. +the Nile will die, the river will stink, and the +Egyptians will be unable to drink its water.’ + +18 + +17 + +” + +b 24 Abiasaph + +Ebiasaph + +tannin + + c 9 + is a variant of +Hebrew + +1 Chr. 9:19. +and was noted again in Exodus 7:15 + +; here and in verse 10, in contrast to Moses’ staff, which became a +Or + +; also in verse 22 + + or + +Or + + or + +; see Numbers 3:30. +stiffened +d 13 + +strengthened + + is a variant of + +e 14 + +nachash +; see 1 Chr. 6:23 and +heavy + +stubborn + in Exodus 4:3 + + 19 + +8 + +Exodus 8:20 | 61 + +And the LORD said to Moses, “Tell Aaron, ‘Take +your staff and stretch out your hand over the wa- +ters of Egypt—over their rivers and canals and +ponds and all the reservoirs—that they may be- +come blood.’ There will be blood throughout the +land of Egypt, even in the vessels of wood and +20 +stone.” + + a + +21 + +Moses and Aaron did just as the LORD had +commanded; in the presence of Pharaoh and his +officials, Aaron raised the staff + and struck the +water of the Nile, and all the water was turned to +The fish in the Nile died, and the river +blood. +smelled so bad that the Egyptians could not drink +its water. And there was blood throughout the +22 +land of Egypt. + +23 + +But the magicians of Egypt did the same things +by their magic arts. So Pharaoh’s heart was hard- +ened, and he would not listen to Moses and +Instead, +Aaron, just as the LORD had said. +24 +Pharaoh turned around, went into his palace, and +So all the +did not take any of this to heart. +Egyptians dug around the Nile for water to drink, +because they could not drink the water from the +25 +river. + +And seven full days passed after the LORD had + +The Second Plague: Frogs +struck the Nile. + +8 + +3 + +2 + +Then the LORD said to Moses, “Go to +Pharaoh and tell him that this is what the +LORD says: ‘Let My people go, so that they may +But if you refuse to let them go, I +worship Me. +The +will plague your whole country with frogs. +Nile will teem with frogs, and they will come into +your palace and up to your bedroom and onto +your bed, into the houses of your officials and +your people, and into your ovens and kneading +The frogs will come up on you and your +bowls. +5 +” +people and all your officials.’ + +4 + +And the LORD said to Moses, “Tell Aaron, +‘Stretch out your hand with your staff over the +rivers and canals and ponds, and cause the frogs +6 +to come up onto the land of Egypt.’ + +” + +So Aaron stretched out his hand over the +waters of Egypt, and the frogs came up and cov- +7 +ered the land of Egypt. + +But the magicians did the same thing by their +magic arts, and they also brought frogs up onto +a 20 +the land of Egypt. +stiffened +c 19 + +he raised the staff + +strengthened + +Hebrew +Or + + or + +; see verse 19; some translators + +Pharaoh summoned Moses and Aaron and said, +“Pray to the LORD to take the frogs away from me +and my people. Then I will let your people go, +9 +that they may sacrifice to the LORD.” + +Moses said to Pharaoh, “You may have the +honor over me. When shall I pray for you and +your officials and your people that the frogs (ex- +cept for those in the Nile) may be taken away +10 +from you and your houses?” + +“Tomorrow,” Pharaoh answered. + +11 + +“May it be as you say,” Moses replied, “so that you +may know that there is no one like the LORD our +The frogs will depart from you and your +God. +houses and your officials and your people; they +12 +will remain only in the Nile.” + +13 + +After Moses and Aaron had left Pharaoh, Mo- +ses cried out to the LORD for help with the frogs +that He had brought against Pharaoh. +And the +LORD did as Moses requested, and the frogs in +14 +the houses, the courtyards, and the fields died. +They were piled into countless heaps, and + +15 +there was a terrible stench in the land. + + b + +When Pharaoh saw that there was relief, how- +ever, he hardened + his heart and would +not listen to Moses and Aaron, just as the LORD +The Third Plague: Gnats +had said. +16 + +Then the LORD said to Moses, “Tell Aaron, +‘Stretch out your staff and strike the dust of +the earth, that it may turn into swarms of gnats +17 +throughout the land of Egypt.’ + +” + +This they did, and when Aaron stretched out +his hand with his staff and struck the dust of the +earth, gnats came upon man and beast. All the +dust of the earth turned into gnats throughout +18 +the land of Egypt. + +The magicians tried to produce gnats using +their magic arts, but they could not. And the +19 +gnats remained on man and beast. + +c +“This is the finger of God,” the magicians said + +to Pharaoh. But Pharaoh’s heart was hardened, +and he would not listen to them, just as the LORD +The Fourth Plague: Flies +had said. +20 + +Then the LORD said to Moses, “Get up early in +the morning, and when Pharaoh goes out to the +Moses raised the staff +water, stand before him and tell him that this is +Or + +made heavy + +; also in verse 32 + +b 15 + +. + + 62 | Exodus 8:21 + +21 +what the LORD says: ‘Let My people go, so that + a +But if you will not let My +they may worship Me. +people go, I will send swarms of flies + upon you +and your officials and your people and your +houses. The houses of the Egyptians and even the +22 +ground where they stand will be full of flies. + +But on that day I will give special treatment to +the land of Goshen, where My people live; no +swarms of flies will be found there. In this way +23 +you will know that I, the LORD, am in the land. + between My people +and your people. This sign will take place tomor- +24 +row.’ + +I will make a distinction + +” + + b + +And the LORD did so. Thick swarms of flies +poured into Pharaoh’s palace and into the houses +of his officials. Throughout Egypt the land was +25 +ruined by swarms of flies. + +Then Pharaoh summoned Moses and Aaron +and said, “Go, sacrifice to your God within this +26 +land.” + +But Moses replied, “It would not be right to do +that, because the sacrifices we offer to the LORD +our God would be detestable to the Egyptians. If +we offer sacrifices that are detestable before the +Egyptians, will they not stone us? +We must +make a three-day journey into the wilderness +and sacrifice to the LORD our God as He com- +28 +mands us.” + +27 + +Pharaoh answered, “I will let you go and sacri- +fice to the LORD your God in the wilderness, but +29 +you must not go very far. Now pray for me.” + +“As soon as I leave you,” Moses said, “I will +pray to the LORD, so that tomorrow the swarms +of flies will depart from Pharaoh and his officials +and his people. But Pharaoh must not act deceit- +fully again by refusing to let the people go and +30 +sacrifice to the LORD.” + +31 + +Then Moses left Pharaoh and prayed to the +LORD, +and the LORD did as Moses requested. +He removed the swarms of flies from Pharaoh +32 +and his officials and his people; not one fly re- +But Pharaoh hardened his heart this +mained. +The Fifth Plague: Livestock +time as well, and he would not let the people go. + +3 + +continue to restrain them and refuse to let them +go, +then the hand of the LORD will bring a +severe plague on your livestock in the field—on +4 +your horses, donkeys, camels, herds, and flocks. +But the LORD will make a distinction between +the livestock of Israel and the livestock of Egypt, +so that no animal belonging to the Israelites will +5 +die.’ + +” + +6 + +7 + +The LORD set a time, saying, “Tomorrow the +And the next day +LORD will do this in the land.” +the LORD did just that. All the livestock of the +Egyptians died, but not one animal belonging to +Pharaoh sent officials and +the Israelites died. +c +found that none of the livestock of the Israelites +had died. But Pharaoh’s heart was hardened, +The Sixth Plague: Boils +and he would not let the people go. +8 + +Then the LORD said to Moses and Aaron, “Take +handfuls of soot from the furnace; in the sight of +It will +Pharaoh, Moses is to toss it into the air. +become fine dust over all the land of Egypt, and +festering boils will break out on man and beast +10 +throughout the land.” + +9 + +So they took soot from the furnace and stood +before Pharaoh. Moses tossed it into the air, and +11 +festering boils broke out on man and beast. +The magicians could not stand before Moses, +because the boils had broken out on them and on +12 +all the Egyptians. + + d + +But the LORD hardened + + Pharaoh’s heart, and +he would not listen to them, just as the LORD had +The Seventh Plague: Hail +said to Moses. +13 + +14 + +Then the LORD said to Moses, “Get up early in +the morning, stand before Pharaoh, and tell him +that this is what the LORD, the God of the He- +brews, says: ‘Let My people go, so that they may +worship Me. +Otherwise, I will send all My + and your officials and your +plagues against you +people, so you may know that there is no one like +15 +Me in all the earth. + + e + +9 + +For by this time I could have stretched out My +hand and struck you and your people with a +But I have +plague to wipe you off the earth. +raised you up + for this very purpose, that I might +17 +Then the LORD said to Moses, “Go to Phar- +display My power to you, + and that My name +aoh and tell him that this is what the LORD, +might be proclaimed in all the earth. +Still, you +the God of the Hebrews, says: ‘Let My people go, +lord it over My people and do not allow them to +a noxious mixture +a 21 +But if you +so that they may worship Me. +go. +c 7 +strengthened +stiffened +d 12 +made heavy +; also in verses 22, 24, 29, and 31 +against your inner man +in you + +LXX and Vulgate; Hebrew + +I will set redemption + +against your heart + +have spared you + +Literally + +b 23 + +e 14 + +16 + +2 + +h + +g + + f + +f 16 +; also in verse 34 + +Or + +g 16 + or + + h 16 +; also in verse 35 + +Hebrew + + or + +Or + +Or + +LXX + +Cited in Romans 9:17 + + 18 + +19 + +Behold, at this time tomorrow I will rain down +the worst hail that has ever fallen on Egypt, from +So give +the day it was founded until now. +orders now to shelter your livestock and every- +thing you have in the field. Every man or beast +that remains in the field and is not brought inside +20 +” +will die when the hail comes down upon them.’ + +Those among Pharaoh’s officials who feared +the word of the LORD hurried to bring their +servants and livestock to shelter, +but those +who disregarded the word of the LORD left their +22 +servants and livestock in the field. + +21 + +Then the LORD said to Moses, “Stretch out +your hand toward heaven, so that hail may fall on +all the land of Egypt—on man and beast and +every plant of the field throughout the land of +23 +Egypt.” + +24 + +So Moses stretched out his staff toward +heaven, and the LORD sent thunder and hail, and +lightning struck the earth. So the LORD rained +The hail fell +down hail upon the land of Egypt. +and the lightning continued flashing through it. +The hail was so severe that nothing like it had +ever been seen in all the land of Egypt from the +25 +time it became a nation. + +26 + +Throughout the land of Egypt, the hail struck +down everything in the field, both man and +beast; it beat down every plant of the field and +The only place where it +stripped every tree. +did not hail was in the land of Goshen, where the +27 +Israelites lived. + +Then Pharaoh summoned Moses and Aaron. +“This time I have sinned,” he said. “The LORD is +28 +righteous, and I and my people are wicked. +Pray to the LORD, for there has been enough of +God’s thunder and hail. I will let you go; you do +29 +not need to stay any longer.” + +Moses said to him, “When I have left the city, I +will spread out my hands to the LORD. The thun- +der will cease, and there will be no more hail, so +30 +that you may know that the earth is the LORD’s. +But as for you and your officials, I know that + +31 +you still do not fear the LORD our God.” + +(Now the flax and barley were destroyed, since +32 +the barley was ripe and the flax was in bloom; +but the wheat and spelt were not destroyed, + +33 +because they are late crops.) + +Then Moses departed from Pharaoh, went out +a 1 +of the city, and spread out his hands to the LORD. + +made heavy + +Or + +Exodus 10:11 | 63 + +The thunder and hail ceased, and the rain no +34 +longer poured down on the land. + +When Pharaoh saw that the rain and hail +and thunder had ceased, he sinned again and +hardened his heart—he and his officials. +So +Pharaoh’s heart was hardened, and he would not +let the Israelites go, just as the LORD had said +The Eighth Plague: Locusts +through Moses. + +35 + +10 + + a + +Then the LORD said to Moses, “Go to +Pharaoh, for I have hardened + his heart +and the hearts of his officials, that I may perform +2 +these miraculous signs of Mine among them, +and that you may tell your children and grand- +children how severely I dealt with the Egyptians +when I performed miraculous signs among them, +3 +so that all of you may know that I am the LORD.” + +4 + +So Moses and Aaron went to Pharaoh and told +him, “This is what the LORD, the God of the He- +brews, says: ‘How long will you refuse to humble +yourself before Me? Let My people go, so that +they may worship Me. +But if you refuse to let My +5 +people go, I will bring locusts into your territory +tomorrow. +They will cover the face of the land +so that no one can see it. They will devour what- +ever is left after the hail and eat every tree that +grows in your fields. +They will fill your houses +and the houses of all your officials and every +Egyptian—something neither your fathers nor +your grandfathers have seen since the day they +came into this land.’ +7 +Then Moses turned and left Pharaoh’s presence. + +” + +6 + +Pharaoh’s officials asked him, “How long will +this man be a snare to us? Let the people go, so +that they may worship the LORD their God. Do +8 +you not yet realize that Egypt lies in ruins?” + +So Moses and Aaron were brought back to +Pharaoh. “Go, worship the LORD your God,” he +9 +said. “But who exactly will be going?” + +“We will go with our young and old,” Moses re- +plied. “We will go with our sons and daughters, +and with our flocks and herds, for we must hold +10 +a feast to the LORD.” + +11 + +Then Pharaoh told them, “May the LORD be +with you if I ever let you go with your little ones. +Clearly you are bent on evil. +No, only the men +may go and worship the LORD, since that is what +you have been requesting.” And Moses and +Aaron were driven from Pharaoh’s presence. + + 64 | Exodus 10:12 + +12 + +Then the LORD said to Moses, “Stretch out +your hand over the land of Egypt, so that the +locusts may swarm over it and devour every +plant in the land—everything that the hail has +13 +left behind.” + +So Moses stretched out his staff over the land +of Egypt, and throughout that day and night the +LORD sent an east wind across the land. By +14 +morning the east wind had brought the locusts. + +15 + +The locusts swarmed across the land and set- +tled over the entire territory of Egypt. Never be- +fore had there been so many locusts, and never +again will there be. +They covered the face of all +the land until it was black, and they consumed all +the plants on the ground and all the fruit on the +trees that the hail had left behind. Nothing green +was left on any tree or plant in all the land of +16 +Egypt. + +Pharaoh quickly summoned Moses and Aaron +17 +and said, “I have sinned against the LORD your +God and against you. +Now please forgive my +sin once more and appeal to the LORD your God, +18 +that He may remove this death from me.” +19 + +So Moses left Pharaoh’s presence and ap- +pealed to the LORD. +And the LORD changed the +wind to a very strong west wind that carried off +the locusts and blew them into the Red Sea. + Not +20 +a single locust remained anywhere in Egypt. + + b + +a + +But the LORD hardened +The Ninth Plague: Darkness +he would not let the Israelites go. +21 + + Pharaoh’s heart, and + +Then the LORD said to Moses, “Stretch out +your hand toward heaven, so that darkness +may spread over the land of Egypt—a palpable +22 +darkness.” + +So Moses stretched out his hand toward +23 +heaven, and total darkness covered all the land +of Egypt for three days. +No one could see any- +one else, and for three days no one left his place. +24 +Yet all the Israelites had light in their dwellings. + +Then Pharaoh summoned Moses and said, “Go, +worship the LORD. Even your little ones may go +with you; only your flocks and herds must stay +25 +behind.” + +26 + +But Moses replied, “You must also provide us +with sacrifices and burnt offerings to present to +Even our livestock must go +the LORD our God. +with us; not a hoof will be left behind, for we will +b 20 +the Sea of Reeds +a 19 + +strengthened + +stiffened + +need some of them to worship the LORD our God, +and we will not know how we are to worship the +27 +LORD until we arrive.” + +28 + +But the LORD hardened Pharaoh’s heart, and +“Depart from +he was unwilling to let them go. +me!” Pharaoh said to Moses. “Make sure you +never see my face again, for on the day you see +29 +my face, you will die.” + +“As you say,” Moses replied, “I will never see + +The Plague on the Firstborn Foretold +your face again.” + +11 + +Then the LORD said to Moses, “I will +bring upon Pharaoh and Egypt one more +plague. After that, he will allow you to leave this +place. And when he lets you go, he will drive you +Now announce to the people +out completely. +that men and women alike should ask their +3 +neighbors for articles of silver and gold.” + +2 + +And the LORD gave the people favor in the sight +of the Egyptians. Moreover, Moses himself was +highly regarded in Egypt by Pharaoh’s officials +4 +and by the people. + +5 + +6 + +So Moses declared, “This is what the LORD says: +‘About midnight I will go throughout Egypt, +and +every firstborn son in the land of Egypt will die, +from the firstborn of Pharaoh who sits on his +throne, to the firstborn of the servant girl behind +the hand mill, as well as the firstborn of all the +Then a great cry will go out over all the +cattle. +land of Egypt. Such an outcry has never been +heard before and will never be heard again. +But +among all the Israelites, not even a dog will snarl +at man or beast.’ + +7 + + c + +8 + +Then you will know that the LORD makes a dis- +tinction between Egypt and Israel. +And all these +officials of yours will come and bow before me, +saying, ‘Go, you and all the people who follow +you!’ After that, I will depart.” + +And hot with anger, Moses left Pharaoh’s pres- +9 +ence. + +The LORD said to Moses, “Pharaoh will not lis- +ten to you, so that My wonders may be multiplied +10 +in the land of Egypt.” + + d + +Moses and Aaron did all these wonders before +Pharaoh, but the LORD hardened + Pharaoh’s +heart so that he would not let the Israelites go out +of his land. + +c 7 + +Or + +d 10 + +stiffened +Or + +strengthened + or + +the end of the verse. + +Or + + or + +; also in verse 27 + +Some translators close this quotation at + + The First Passover (Numbers 9:1–14) + +12 + +2 +Now the LORD said to Moses and Aaron +in the land of Egypt, +“This month is the +beginning of months for you; it shall be the first +3 +month of your year. + + a + +4 + +Tell the whole congregation of Israel that on the +tenth day of this month each man must select a +lamb +If the + for his family, one per household. +household is too small for a whole lamb, they +are to share with the nearest neighbor based on +the number of people, and apportion the lamb +5 +accordingly. + +6 + +Your lamb must be an unblemished year-old +male, and you may take it from the sheep or the +You must keep it until the fourteenth day +goats. +of the month, when the whole assembly of the +congregation of Israel will slaughter the animals +They are to take some of the blood +at twilight. +and put it on the sides and tops of the door- +8 + of the houses where they eat the lambs. +frames + +7 + +b + + c + +They are to eat the meat that night, roasted over +the fire, along with unleavened bread and bitter +9 +herbs. + +10 + +Do not eat any of the meat raw or cooked in +boiling water, but only roasted over the fire—its +head and legs and inner parts. +Do not leave any +of it until morning; before the morning you must +11 +burn up any part that is left over. + +d + +This is how you are to eat it: You must be fully +dressed for travel, + with your sandals on your +feet and your staff in your hand. You are to eat in +12 +haste; it is the LORD’s Passover. + +On that night I will pass through the land of +Egypt and strike down every firstborn male, both +man and beast, and I will execute judgment +13 +against all the gods of Egypt. I am the LORD. +The blood on the houses where you are staying +will be a sign; when I see the blood, I will pass +over you. No plague will fall on you to destroy +The Feast of Unleavened Bread +you when I strike the land of Egypt. +(Lev. 23:4–8 ; Num. 28:16–25 ; De. 16:1–8) + +14 + +And this day will be a memorial for you, and +you are to celebrate it as a feast to the LORD, as a +15 +permanent statute for the generations to come. +For seven days you must eat unleavened +a 3 +bread. On the first day you are to remove the +c 7 +on the two doorposts and on the lintel +e 17 + +lamb + + or + +kid + +The Hebrew word can mean +Literally + +Exodus 12:28 | 65 + +leaven from your houses. Whoever eats anything +leavened from the first day through the seventh +16 +must be cut off from Israel. + +On the first day you are to hold a sacred assem- +bly, and another on the seventh day. You must +not do any work on those days, except to prepare +17 +the meals—that is all you may do. + +e + +So you are to keep the Feast of Unleavened +Bread, + for on this very day I brought your divi- +sions out of the land of Egypt. You must keep this +18 +day as a permanent statute for the generations to +In the first month you are to eat unleav- +come. +ened bread, from the evening of the fourteenth +19 +day until the evening of the twenty-first day. +For seven days there must be no leaven found +in your houses. If anyone eats something leav- +ened, that person, whether a foreigner or native +of the land, must be cut off from the congregation +You are not to eat anything leavened; +of Israel. +21 +eat unleavened bread in all your homes.” + +20 + +Then Moses summoned all the elders of +Israel and told them, “Go at once and select +22 +for yourselves a lamb for each family, and slaugh- +ter the Passover lamb. +Take a cluster of hys- +sop, dip it into the blood in the basin, and brush +the blood on the top and sides of the doorframe. +None of you shall go out the door of his house un- +23 +til morning. + +When the LORD passes through to strike down +the Egyptians, He will see the blood on the top +and sides of the doorframe and will pass over +that doorway; so He will not allow the destroyer +24 +to enter your houses and strike you down. + +And you are to keep this command as a perma- +25 +nent statute for you and your descendants. +When you enter the land that the LORD will +give you as He promised, you are to keep this +26 +service. + +27 + +When your children ask you, ‘What does this +service mean to you?’ +you are to reply, ‘It is the +Passover sacrifice to the LORD, who passed over +the houses of the Israelites in Egypt when He +struck down the Egyptians and spared our +homes.’ +28 +Then the people bowed down and worshiped. +And the Israelites went and did just what the +between the two evenings +d 11 + +LORD had commanded Moses and Aaron. +Gird up your loins + +b 6 + +” + +That is, the seven-day period after the Passover during which no leaven may be eaten + +; also in verses 4 and 5. + +Hebrew +; similarly in verses 22 and 23 + +Literally + + 66 | Exodus 12:29 + +The Tenth Plague: Death of the Firstborn + +Instructions for the Passover + +29 + +43 + +Now at midnight the LORD struck down every +firstborn male in the land of Egypt, from the +firstborn of Pharaoh, who sat on his throne, to +the firstborn of the prisoner in the dungeon, as +30 +well as all the firstborn among the livestock. + +During the night Pharaoh got up—he and all +his officials and all the Egyptians—and there was +loud wailing in Egypt; for there was no house +The Exodus Begins +without someone dead. +31 + +32 + +Then Pharaoh summoned Moses and Aaron by +night and said, “Get up, leave my people, both you +and the Israelites! Go, worship the LORD as you +Take your flocks and herds as +have requested. +well, just as you have said, and depart! And bless +33 +me also.” + +And in order to send them out of the land +quickly, the Egyptians urged the people on. “For +34 +otherwise,” they said, “we are all going to die!” +So the people took their dough before it was +leavened, carrying it on their shoulders in knead- +35 +ing bowls wrapped in clothing. + +36 + +Furthermore, the Israelites acted on Moses’ +word and asked the Egyptians for articles of sil- +ver and gold, and for clothing. +And the LORD +gave the people such favor in the sight of the +Egyptians that they granted their request. In this +37 +way they plundered the Egyptians. + + a + +38 + +The Israelites journeyed from Rameses to Suc- +coth + with about 600,000 men on foot, besides +And a mixed multitude +women and children. +also went up with them, along with great droves +39 +of livestock, both flocks and herds. + + b + +Since their dough had no leaven, the people +baked what they had brought out of Egypt into +unleavened loaves. For when they had been +driven out of Egypt, they could not delay and had +40 +not prepared any provisions for themselves. + + was 430 years. + +41 +Now the duration of the Israelites’ stay in +Egypt +At the end of the 430 +years, to the very day, all the LORD’s divisions +Because the +went out of the land of Egypt. +LORD kept a vigil that night to bring them out of +the land of Egypt, this same night is to be a vigil +to the LORD, to be observed by all the Israelites +b 40 +a 37 Succoth +for the generations to come. +c 2 + +tabernacles + +shelters + +booths + +42 + +d 4 Abib + or + +44 + +And the LORD said to Moses and Aaron, “This +is the statute of the Passover: No foreigner is to +eat of it. +But any slave who has been purchased +A +may eat of it, after you have circumcised him. +temporary resident or hired hand shall not eat +46 +the Passover. + +45 + +It must be eaten inside one house. You are not +to take any of the meat outside the house, and +47 +you may not break any of the bones. + +48 + +The whole congregation of Israel must cele- +brate it. +If a foreigner resides with you and +wants to celebrate the LORD’s Passover, all the +males in the household must be circumcised; +then he may come near to celebrate it, and he +shall be like a native of the land. But no uncir- +The same law shall +cumcised man may eat of it. +apply to both the native and the foreigner who +50 +resides among you.” + +49 + +Then all the Israelites did this—they did just as +51 +the LORD had commanded Moses and Aaron. +And on that very day the LORD brought +the Israelites out of the land of Egypt by their +The Dedication of the Firstborn (De. 15:19-23) +divisions. + +13 + +2 + +c + +“Conse- +Then the LORD said to Moses, +crate to Me every firstborn male. + The +firstborn from every womb among the Israelites +3 +belongs to Me, both of man and beast.” + +So Moses told the people, “Remember this day, +the day you came out of Egypt, out of the house +of slavery; for the LORD brought you out of it by +the strength of His hand. And nothing leavened +4 +shall be eaten. +5 + +d + +Today, in the month of Abib, + you are leaving. +And when the LORD brings you into the land of +the Canaanites, Hittites, Amorites, Hivites, and +Jebusites—the land He swore to your fathers +that He would give you, a land flowing with milk +and honey—you shall keep this service in this +6 +month. + +7 + +For seven days you are to eat unleavened bread, +and on the seventh day there shall be a feast to +the LORD. +Unleavened bread shall be eaten dur- +ing those seven days. Nothing leavened may be +found among you, nor shall leaven be found any- +where within your borders. + +in Egypt and Canaan + +in Canaan and Egypt + + means + + or + +. + +MT; SP + +; LXX + +Cited in Luke 2:23 + + was the first month of the ancient Hebrew lunar calendar, usually occurring within + +the months of March and April. + + 8 + +9 + +And on that day you are to explain to your son, +‘This is because of what the LORD did for me +It shall be a sign for +when I came out of Egypt.’ +you on your hand and a reminder on your fore- +head that the Law of the LORD is to be on your +lips. For with a mighty hand the LORD brought +Therefore you shall keep this +you out of Egypt. +11 +statute at the appointed time year after year. + +10 + +12 + +13 + +And after the LORD brings you into the land of +the Canaanites and gives it to you, as He swore to +you are to present to the +you and your fathers, +LORD the firstborn male of every womb. All +the firstborn males of your livestock belong to +You must redeem every firstborn +the LORD. +donkey with a lamb, and if you do not redeem it, +you are to break its neck. And every firstborn of +14 +your sons you must redeem. + +15 + +In the future, when your son asks you, ‘What +does this mean?’ you are to tell him, ‘With a +mighty hand the LORD brought us out of Egypt, +And when Pharaoh +out of the house of slavery. +stubbornly refused to let us go, the LORD killed +every firstborn in the land of Egypt, both of man +and beast. This is why I sacrifice to the LORD the +firstborn male of every womb, but I redeem all +So it shall serve as a +the firstborn of my sons.’ +sign on your hand and a symbol on your fore- +head, for with a mighty hand the LORD brought +The Pillars of Cloud and Fire +us out of Egypt.” +17 + +16 + +When Pharaoh let the people go, God did not +lead them along the road through the land of the +Philistines, though it was shorter. For God said, +“If the people face war, they might change their +So God led the +minds and return to Egypt.” +people around by the way of the wilderness to- +ward the Red Sea. + And the Israelites left the land +19 +of Egypt arrayed for battle. + +18 + +a + +b + +Moses took the bones of Joseph with him be- +cause Joseph had made the sons of Israel swear a +solemn oath when he said, “God will surely at- +tend to you, and then you must carry my bones +20 +with you from this place.” + + c + +21 + +They set out from Succoth and camped at +And the +Etham on the edge of the wilderness. +LORD went before them in a pillar of cloud to +guide their way by day, and in a pillar of fire to +give them light by night, so that they could travel +b 18 +a 18 +Neither the pillar of cloud by +by day or night. +strengthen +Or + +the Sea of Reeds + +LXX + +e 8 + +22 + +Exodus 14:14 | 67 + +day nor the pillar of fire by night left its place be- +Pharaoh Pursues the Israelites +fore the people. + +2 + +14 + +Then the LORD said to Moses, +“Tell the +Israelites to turn back and encamp be- +fore Pi-hahiroth, between Migdol and the sea. +You are to encamp by the sea, directly opposite +3 +Baal-zephon. + + d + +4 + +For Pharaoh will say of the Israelites, ‘They are +wandering the land in confusion; the wilderness +has boxed them in.’ + Phar- +aoh’s heart so that he will pursue them. But I will +gain honor by means of Pharaoh and all his army, +and the Egyptians will know that I am the LORD.” +5 +So this is what the Israelites did. + +And I will harden + +When the king of Egypt was told that the people +had fled, Pharaoh and his officials changed their +minds about them and said, “What have we +6 +done? We have released Israel from serving us.” + +7 + +So Pharaoh prepared his chariot and took his +He took 600 of the best +army with him. +chariots, and all the other chariots of Egypt, with +8 +officers over all of them. + +e + +9 + +And the LORD hardened the heart of Pharaoh +king of Egypt so that he pursued the Israelites, +The Egyp- +who were marching out defiantly. +tians—all Pharaoh’s horses and chariots, horse- +men and troops—pursued the Israelites and +overtook them as they camped by the sea near +10 +Pi-hahiroth, opposite Baal-zephon. + +11 + +As Pharaoh approached, the Israelites looked +up and saw the Egyptians marching after them, +and they were terrified and cried out to the +They said to Moses, “Was it because +LORD. +there were no graves in Egypt that you brought +us into the wilderness to die? What have you +Did we +done to us by bringing us out of Egypt? +not say to you in Egypt, ‘Leave us alone so that +we may serve the Egyptians’? For it would have +been better for us to serve the Egyptians than to +13 +die in the wilderness.” + +12 + +But Moses told the people, “Do not be afraid. +Stand firm and you will see the LORD’s salvation, +which He will accomplish for you today; for the +Egyptians you see today, you will never see +The LORD will fight for you; you need +again. +only to be still.” + +stiffen + +c 19 + +d 4 + +14 + +marching out with an upraised hand + +Genesis 50:25 + +Or + + or + +left the land of Egypt in the fifth generation + +marching out boldly + +; similarly in verses 8 and 17 + +Or + +; literally + + 68 | Exodus 14:15 + +Parting the Red Sea + +15 + +17 + +16 + +Then the LORD said to Moses, “Why are you +crying out to Me? Tell the Israelites to go for- +And as for you, lift up your staff and +ward. +stretch out your hand over the sea and divide it, +so that the Israelites can go through the sea on +dry ground. +And I will harden the hearts of the +Egyptians so that they will go in after them. Then +I will gain honor by means of Pharaoh and all his +The Egyp- +army and chariots and horsemen. +tians will know that I am the LORD when I am +honored through Pharaoh, his chariots, and his +19 +horsemen.” + +18 + + a + +20 + +And the angel + + of God, who had gone before +the camp of Israel, withdrew and went behind +them. The pillar of cloud also moved from before +so that it came +them and stood behind them, +b +between the camps of Egypt and Israel. The cloud +was there in the darkness, but it lit up the night. +So all night long neither camp went near the +21 +other. + +Then Moses stretched out his hand over the +sea, and all that night the LORD drove back the +sea with a strong east wind that turned it into dry +and the Isra- +land. So the waters were divided, +elites went through the sea on dry ground, with +23 +walls of water on their right and on their left. + +22 + +24 + +And the Egyptians chased after them—all +Pharaoh’s horses, chariots, and horsemen—and +At morning watch, +followed them into the sea. +however, the LORD looked down on the army of +the Egyptians from the pillar of fire and cloud, +He +and He threw their camp into confusion. +caused their chariot wheels to wobble, + so that +they had difficulty driving. “Let us flee from the +Israelites,” said the Egyptians, “for the LORD is +26 +fighting for them against Egypt!” + +25 + +c + +27 + +Then the LORD said to Moses, “Stretch out +your hand over the sea, so that the waters may +flow back over the Egyptians and their chariots +So Moses stretched out his +and horsemen.” +hand over the sea, and at daybreak the sea re- +turned to its normal state. As the Egyptians were +28 +retreating, the LORD swept them into the sea. +The waters flowed back and covered the char- +iots and horsemen—the entire army of Pharaoh +that had chased the Israelites into the sea. Not +b 20 +a 19 +one of them survived. +the Sea of Reeds +d 4 + +and the night passed + +Angel + +c 25 + +29 + +30 + +But the Israelites had walked through the sea +on dry ground, with walls of water on their right +That day the LORD saved +and on their left. +Israel from the hand of the Egyptians, and Israel +saw the Egyptians dead on the shore. +When +Israel saw the great power that the LORD had +exercised over the Egyptians, the people feared +the LORD and believed in Him and in His servant +The Song at the Sea (Judges 5:1–31) +Moses. + +31 + +15 + +Then Moses and the Israelites sang this +song to the LORD: + +“I will sing to the LORD, + +for He is highly exalted. + +The horse and rider + +2 + +He has thrown into the sea. + +The LORD is my strength and my song, +and He has become my salvation. +He is my God, and I will praise Him, +3 + +my father’s God, and I will exalt Him. + +The LORD is a warrior, + +4 + +the LORD is His name. +Pharaoh’s chariots and army +He has cast into the sea; + +d + +the finest of his officers + +5 + +are drowned in the Red Sea. +The depths have covered them; +they sank there like a stone. + +6 + +Your right hand, O LORD, +is majestic in power; +Your right hand, O LORD, + +7 + +has shattered the enemy. +You overthrew Your adversaries + +by Your great majesty. + +8 + +You unleashed Your burning wrath; +it consumed them like stubble. + +At the blast of Your nostrils +the waters piled up; + +like a wall the currents stood firm; + +9 + +the depths congealed in the heart of the + +sea. + +The enemy declared, + +‘I will pursue, I will overtake. + +I will divide the spoils; + +I will gorge myself on them. + +10 + +I will draw my sword; + +my hand will destroy them.’ +But You blew with Your breath, +to bind +to come off +and the sea covered them. + +to swerve + +Or + +Or + +LXX +; also in verse 22 + +Or + + or + + or + +; see also SP, LXX, and Syriac. + + They sank like lead + +11 + +in the mighty waters. + +Who among the gods is like You, O LORD? +Who is like You—majestic in holiness, + +12 + +revered with praises, + +performing wonders? + +13 + +You stretched out Your right hand, + + a +and the earth swallowed them up. + +With loving devotion + + You will lead +the people You have redeemed; +with Your strength You will guide them + +14 + +to Your holy dwelling. + +15 + +The nations will hear and tremble; + +anguish will grip the dwellers of Philistia. + +Then the chiefs of Edom will be dismayed; + +16 + +trembling will seize the leaders of Moab; + +those who dwell in Canaan will melt away, +and terror and dread will fall on them. + +By the power of Your arm + +they will be as still as a stone +until Your people pass by, O LORD, + +17 + +until the people You have bought + +pass by. + +You will bring them in and plant them + +on the mountain of Your inheritance— +the place, O LORD, You have prepared for + +Your dwelling, + +the sanctuary, O Lord, Your hands have + +established. + +18 + +19 + +The LORD will reign forever and ever!” + +For when Pharaoh’s horses, chariots, and +horsemen went into the sea, the LORD brought +the waters of the sea back over them. But the +20 +Israelites walked through the sea on dry ground. + +Then Miriam the prophetess, Aaron’s sister, +took a tambourine in her hand, and all the +women followed her with tambourines and +dancing. + +And Miriam sang back to them: + +21 + +“Sing to the LORD, + +for He is highly exalted; + +the horse and rider +The Waters of Marah + +He has thrown into the sea.” + +22 + +23 + +Then Moses led Israel from the Red Sea, and +they went out into the Desert of Shur. For three +days they walked in the desert without finding +chesed +a 13 + they +water. +faithfulness +love + +And when they came to Marah, +kindness + +b + +Exodus 16:8 | 69 + +could not drink the water there because it was +24 +bitter. (That is why it was named Marah.) + +25 +So the people grumbled against Moses, saying, +“What are we to drink?” +And Moses cried out +to the LORD, and the LORD showed him a log. +And when he cast it into the waters, they were +sweetened. + +26 + +There the LORD made for them a statute and an +saying, +ordinance, and there He tested them, +“If you will listen carefully to the voice of the +LORD your God, and do what is right in His eyes, +and pay attention to His commands, and keep all +His statutes, then I will not bring on you any of +the diseases I inflicted on the Egyptians. For I am +27 +the LORD who heals you.” + +Then they came to Elim, where there were +twelve springs of water and seventy palm trees, +Manna and Quail from Heaven +and they camped there by the waters. + +16 + +c + +2 + +On the fifteenth day of the second month +after they had left the land of Egypt, the +whole congregation of Israel set out from Elim + which is between +and came to the Desert of Sin, +And there in the desert the +Elim and Sinai. +3 +whole congregation of Israel grumbled against +Moses and Aaron. +“If only we had died by the +LORD’s hand in the land of Egypt!” they said. +“There we sat by pots of meat and ate our fill of +bread, but you have brought us into this desert to +4 +starve this whole assembly to death!” + +Then the LORD said to Moses, “Behold, I will +rain down bread from heaven for you. Each day +the people are to go out and gather enough for +that day. In this way I will test whether or not +Then on the +they will follow My instructions. +sixth day, when they prepare what they bring in, +it will be twice as much as they gather on the +6 +other days.” + +5 + +7 + +So Moses and Aaron said to all the Israelites, +“This evening you will know that it was the LORD +and +who brought you out of the land of Egypt, +in the morning you will see the LORD’s glory, be- +cause He has heard your grumbling against Him. +For who are we, that you should grumble against +8 +us?” + +And Moses added, “The LORD will give you +meat to eat this evening and bread to fill you in + +loving devotion + +bitter + +Forms of the Hebrew +range of meaning includes +means +. + +c 1 + +, +The geographical name + +, + +goodness + are translated here and in most cases throughout the Scriptures as +, and + +, as well as + +mercy + +Sinai + +loyalty to a covenant + +Sin + +, + +. + +b 23 Marah +; the +sin + + is related to + + and should not be mistaken for the English word + +. + + 70 | Exodus 16:9 + +the morning, for He has heard your grumbling +against Him. Who are we? Your grumblings are +9 +not against us but against the LORD.” + +Then Moses said to Aaron, “Tell the whole con- +gregation of Israel, ‘Come before the LORD, for +10 +He has heard your grumbling.’ + +” + +And as Aaron was speaking to the whole +congregation of Israel, they looked toward the +desert, and there in a cloud the glory of the LORD +11 +appeared. + +12 + + a + +Then the LORD said to Moses, + +“I have heard +the grumbling of the Israelites. Tell them, ‘At twi- +light + you will eat meat, and in the morning you +will be filled with bread. Then you will know that +13 +I am the LORD your God.’ + +” + +That evening quail came and covered the +14 +camp, and in the morning there was a layer of +When the layer of dew +dew around the camp. +had evaporated, there were thin flakes on the de- +When +sert floor, as fine as frost on the ground. +the Israelites saw it, they asked one another, +“What is it?” For they did not know what it was. + +15 + +16 + +So Moses told them, “It is the bread that the +This is what the +LORD has given you to eat. +LORD has commanded: ‘Each one is to gather as + for +much as he needs. You may take an omer +17 +each person in your tent.’ + +” + + b + +18 + +c + +So the Israelites did this. Some gathered more, +When they measured it by the +and some less. +omer, he who gathered much had no excess, and + Each one +he who gathered little had no shortfall. +19 +gathered as much as he needed to eat. + +20 +Then Moses said to them, “No one may keep +But they did not listen +any of it until morning.” +to Moses; some people left part of it until morn- +ing, and it became infested with maggots and +21 +began to smell. So Moses was angry with them. + +has said: ‘Tomorrow is to be a day of complete +rest, a holy Sabbath to the LORD. So bake what +you want to bake, and boil what you want to boil. +Then set aside whatever remains and keep it un- +24 +til morning.’ + +” + +25 + +So they set it aside until morning as Moses had +commanded, and it did not smell or contain any +“Eat it today,” Moses said, “because +maggots. +26 +today is a Sabbath to the LORD. Today you will +not find anything in the field. +For six days you +may gather, but on the seventh day, the Sabbath, +27 +it will not be there.” + +29 + +28 + +Yet on the seventh day some of the people +went out to gather, but they did not find any- +Then the LORD said to Moses, “How long +thing. +will you refuse to keep My commandments and +Understand that the LORD has +instructions? +given you the Sabbath; that is why on the sixth +day He will give you bread for two days. On the +seventh day, everyone must stay where he is; no +30 +one may leave his place.” +The Jar of Manna + +So the people rested on the seventh day. + +31 + +e + +32 + +Now the house of Israel called the bread +manna. + It was white like coriander seed and +Moses +tasted like wafers made with honey. +said, “This is what the LORD has commanded: +‘Keep an omer of manna for the generations to +come, so that they may see the bread I fed you in +the wilderness when I brought you out of the +33 +land of Egypt.’ + +” + +So Moses told Aaron, “Take a jar and fill it with +an omer of manna. Then place it before the LORD +f +34 +to be preserved for the generations to come.” +And Aaron placed it in front of the Testimony, +to be preserved just as the LORD had com- +35 +manded Moses. + +Every morning each one gathered as much +as was needed, and when the sun grew hot, it +The Sabbath Observed (Gen. 2:1-3; Heb. 4:1-11) +melted away. +22 + +The Israelites ate manna forty years, until they +came to a land where they could settle; they ate +36 +manna until they reached the border of Canaan. +Water from the Rock (Numbers 20:1–13) +(Now an omer is a tenth of an ephah.) + + g + + d + +23 + +On the sixth day, they gathered twice as much +food—two omers per person +—and all the lead- +ers of the congregation came and reported this to +a 12 +He told them, “This is what the LORD +Moses. +c 18 + +Between the two evenings + +b 16 An omer + +d 22 2 omers + +17 + +h +Then the whole congregation of Israel +left the Desert of Sin, + moving from place +to place as the LORD commanded. They camped + +e 31 Manna + +Heb. +Cited in 2 Corinthians 8:15 + +What is it? + +like the Hebrew for +h 1 +scribed with the Ten Commandments. +liters. + +The geographical name + +Sin + + is approximately 2 dry quarts or 2.2 liters; also in vv. 18, 32, 33, and 36. + +g 36 An + (see verse 15). + + is approximately 4 dry quarts or 4.4 liters per person. + + sounds + refers to the stone tablets in the ark of the covenant in- + was a dry measure having the capacity of about 20 dry quarts or 22 + +Sinai + +sin + + is related to + + and should not be mistaken for the English word + +. + +f 34 The Testimony +ephah + + 2 + +at Rephidim, but there was no water for the +So the people contended with +people to drink. +Moses, “Give us water to drink.” + +“Why do you contend with me?” Moses replied. +3 +“Why do you test the LORD?” + +But the people thirsted for water there, and +they grumbled against Moses: “Why have you +brought us out of Egypt—to make us and our +4 +children and livestock die of thirst?” + +Then Moses cried out to the LORD, “What +should I do with these people? A little more and +5 +they will stone me!” + +6 + +And the LORD said to Moses, “Walk on ahead of +the people and take some of the elders of Israel +with you. Take along in your hand the staff with +a +Behold, I will +which you struck the Nile, and go. +stand there before you by the rock at Horeb. +And when you strike the rock, water will come +out of it for the people to drink.” + +He named the place Massah + + c +So Moses did this in the sight of the elders of Is- + and Meribah +rael. +because the Israelites quarreled, and because +they tested the LORD, saying, “Is the LORD +The Defeat of the Amalekites +among us or not?” +8 + +7 + + b + +9 + +After this, the Amalekites came and attacked +So Moses said to +the Israelites at Rephidim. +Joshua, “Choose some of our men and go out to +fight the Amalekites. Tomorrow I will stand on +10 +the hilltop with the staff of God in my hand.” + +Joshua did as Moses had instructed him and +fought against the Amalekites, while Moses, Aa- +11 +ron, and Hur went up to the top of the hill. + +12 + +As long as Moses held up his hands, Israel +prevailed; but when he lowered them, Amalek +When Moses’ hands grew heavy, +prevailed. +they took a stone and put it under him, and +he sat on it. Then Aaron and Hur held his hands +up, one on each side, so that his hands remained +13 +steady until the sun went down. + +So Joshua overwhelmed Amalek and his army + +14 +with the sword. + +Then the LORD said to Moses, “Write this on +a scroll as a reminder and recite it to Joshua, +because I will utterly blot out the memory of +Amalek from under heaven.” +a 6 Horeb +Nissi +sojourner + +Jethro + is another name for Sinai. + +God is my helper + +b 7 Massah + +g 4 Eliezer + + means + +Reuel + +e 1 + +testing + +Exodus 18:12 | 71 + +15 + +d + +16 + +And Moses built an altar and named it The +LORD Is My Banner. +“Indeed,” he said, “a hand +was lifted up toward the throne of the LORD. The +LORD will war against Amalek from generation +The Visit of Jethro +to generation.” + +18 + +e + +3 + +Now Moses’ father-in-law Jethro, + the +priest of Midian, heard about all that God +had done for Moses and His people Israel, and +2 +how the LORD had brought Israel out of Egypt. + +f + +After Moses had sent back his wife Zipporah, +his father-in-law Jethro had received her, +along +with her two sons. One son was named Ger- +4 +shom, + for Moses had said, “I have been a for- +eigner in a foreign land.” +The other son was +named Eliezer, + for Moses had said, “The God of +my father was my helper and delivered me from +5 +the sword of Pharaoh.” + +g + +Moses’ father-in-law Jethro, along with Moses’ +wife and sons, came to him in the desert, where +He +he was encamped at the mountain of God. +sent word to Moses, “I, your father-in-law Jethro, +am coming to you with your wife and her two +7 +sons.” + +6 + +8 + +So Moses went out to meet his father-in-law +and bowed down and kissed him. They greeted +each other and went into the tent. +Then Moses +recounted to his father-in-law all that the LORD +had done to Pharaoh and the Egyptians for +Israel’s sake, all the hardships they had encoun- +tered along the way, and how the LORD had +9 +delivered them. + +10 + +And Jethro rejoiced over all the good things the +LORD had done for Israel, whom He had rescued +Jethro de- +from the hand of the Egyptians. +clared, “Blessed be the LORD, who has delivered +you from the hand of the Egyptians and of Phar- +11 +aoh, and who has delivered the people from the +Now I know that the +hand of the Egyptians. +LORD is greater than all other gods, for He did +12 +this when they treated Israel with arrogance.” + +Then Moses’ father-in-law Jethro brought a +burnt offering and sacrifices to God, and +Aaron came with all the elders of Israel to eat +bread with Moses’ father-in-law in the presence +of God. + +c 7 Meribah + +quarreling + +YHWH + +d 15 + +. + +f 3 Gershom + + means + +. + +Hebrew + +Moses’ father-in-law + +. + + means + + was also called +. + +; see Exodus 2:18. + + sounds like the Hebrew for + + 72 | Exodus 18:13 + +Jethro Advises Moses +(Deuteronomy 1:9–18) + +13 + +14 + +The next day Moses took his seat to judge the +people, and they stood around him from morning +until evening. +When his father-in-law saw all +that Moses was doing for the people, he asked, +“What is this that you are doing for the people? +Why do you sit alone as judge, with all the people +15 +standing around you from morning till evening?” + +16 + +“Because the people come to me to inquire of +“Whenever they have a +God,” Moses replied. +dispute, it is brought to me to judge between one +man and another, and I make known to them the +17 +statutes and laws of God.” +18 +But Moses’ father-in-law said to him, “What +Surely you and these +you are doing is not good. +people with you will wear yourselves out, be- +cause the task is too heavy for you. You cannot +19 +handle it alone. + +20 + +Now listen to me; I will give you some advice, +and may God be with you. You must be the peo- +ple’s representative before God and bring their +Teach them the statutes and +causes to Him. +laws, and show them the way to live and the +21 +work they must do. + +Furthermore, select capable men from among +the people—God-fearing, trustworthy men who +are averse to dishonest gain. Appoint them over +the people as leaders of thousands, of hundreds, +22 +of fifties, and of tens. + +Have these men judge the people at all times. +Then they can bring you any major issue, but all +minor cases they can judge on their own, so that +your load may be lightened as they share it with +23 +you. + +If you follow this advice and God so directs +you, then you will be able to endure, and all these +24 +people can go home in peace.” + +25 + +26 + +Moses listened to his father-in-law and did +So Moses chose capable +everything he said. +men from all Israel and made them heads over +the people as leaders of thousands, of hundreds, +And they judged the peo- +of fifties, and of tens. +ple at all times; they would bring the difficult +cases to Moses, but any minor issue they would +27 +judge themselves. + +Israel at Mount Sinai + +19 + + a + +2 + +In the third month, on the same day of + that the Israelites had left +the month +the land of Egypt, they came to the Wilderness of +After they had set out from Rephidim, +Sinai. +they entered the Wilderness of Sinai, and Israel +3 +camped there in front of the mountain. + +4 + +Then Moses went up to God, and the LORD +called to him from the mountain, “This is what +you are to tell the house of Jacob and explain to +the sons of Israel: +‘You have seen for yourselves +what I did to Egypt, and how I carried you on +eagles’ wings and brought you to Myself. +Now if +you will indeed obey My voice and keep My cov- +enant, you will be My treasured possession out of +6 +all the nations—for the whole earth is Mine. +And unto Me you shall be a kingdom of priests +and a holy nation.’ These are the words that you +7 +are to speak to the Israelites.” + +5 + +8 + +So Moses went back and summoned the elders +of the people and set before them all these words +that the LORD had commanded him. +And all the +people answered together, “We will do every- +thing that the LORD has spoken.” +9 +So Moses brought their words back to the LORD. + +The LORD said to Moses, “Behold, I will come to +you in a dense cloud, so that the people will hear +when I speak with you, and they will always put +their trust in you.” + +And Moses relayed to the LORD what the people +10 +had said. + +11 + +Then the LORD said to Moses, “Go to the peo- +ple and consecrate them today and tomorrow. +They must wash their clothes +and be prepared +by the third day, for on the third day the LORD +will come down on Mount Sinai in the sight of all +12 +the people. + +13 + +And you are to set up a boundary for the peo- +ple around the mountain and tell them, ‘Be care- +ful not to go up on the mountain or touch its base. +Whoever touches the mountain shall surely be +put to death. +No hand shall touch him, but he +shall surely be stoned or shot with arrows— +whether man or beast, he must not live.’ + + b + +c + +Only when the ram’s horn sounds a long blast +14 +may they approach the mountain. + +” + +Then Moses sent his father-in-law on his way, + +In the third month, on the same day +a 1 +and Jethro returned to his own land. +b 13 + +c 13 + +may they go up on the mountain + +When Moses came down from the mountain to +the people, he consecrated them, and they + +Hebrew + +; that is, two months after leaving Egypt; see Numbers 33:3. + +Cited in Hebrews 12:20 + +Or + + 15 + +5 + +Exodus 20:19 | 73 + +“Be prepared for the +washed their clothes. +third day,” he said to the people. “Do not draw +The LORD Visits Sinai +near to a woman.” +16 + +On the third day, when morning came, there +was thunder and lightning. A thick cloud was +upon the mountain, and a very loud blast of the +ram’s horn went out, so that all the people in the +Then Moses brought the peo- +camp trembled. +ple out of the camp to meet with God, and they +18 +stood at the foot of the mountain. + +17 + +Mount Sinai was completely enveloped in +smoke, because the LORD had descended on it in +fire. And the smoke rose like the smoke of a fur- +19 +nace, and the whole mountain quaked violently. +And as the sound of the ram’s horn grew +louder and louder, Moses spoke and God an- +20 +swered him in the thunder. + +21 + +The LORD descended to the top of Mount +Sinai and called Moses to the summit. So Moses +and the LORD said to him, “Go down +went up, +and warn the people not to break through to see +Even the +the LORD, lest many of them perish. +priests who approach the LORD must consecrate +themselves, or the LORD will break out against +23 +them.” + +22 + +But Moses said to the LORD, “The people can- +not come up Mount Sinai, for You solemnly +warned us, ‘Put a boundary around the mountain +24 +” +and set it apart as holy.’ + +And the LORD replied, “Go down and bring +Aaron with you. But the priests and the people +must not break through to come up to the LORD, +25 +or He will break out against them.” + +So Moses went down to the people and spoke + +The Ten Commandments (De. 5:6–21) +to them. + +20 + +2 +And God spoke all these words: + +“I am the LORD your God, who brought +you out of the land of Egypt, out of the house of +slavery. + +3 + +a + +4 + +You shall have no other gods before Me. + +You shall not make for yourself an idol in +the form of anything in the heavens above, +on the earth below, or in the waters beneath. + +to thousands + +besides Me + +c 12 + +b 6 + +a 3 +d 13 + +You shall not bow down to them or worship +them; for I, the LORD your God, am a jealous +God, visiting the iniquity of the fathers on +their children to the third and fourth gener- + b +but showing +ations of those who hate Me, +loving devotion to a thousand generations +of those who love Me and keep My com- +7 +mandments. + +6 + +You shall not take the name of the LORD +your God in vain, for the LORD will not leave +anyone unpunished who takes His name in +8 +vain. +9 + +Remember the Sabbath day by keeping it +10 +Six days you shall labor and do all your +holy. +work, +but the seventh day is a Sabbath to +the LORD your God, on which you must not +do any work—neither you, nor your son or +daughter, nor your manservant or maidser- +vant or livestock, nor the foreigner within +For in six days the LORD made +your gates. +the heavens and the earth and the sea and all +that is in them, but on the seventh day He +rested. Therefore the LORD blessed the Sab- +12 +bath day and set it apart as holy. + +11 + +Honor your father and mother, so that +your days may be long in the land that the +13 +LORD your God is giving you. +14 + +d + +e + +c + +You shall not murder. + +You shall not commit adultery. + +f + +15 + +16 + +You shall not steal. + +g + +You shall not bear false witness against + +17 +your neighbor. + + h + +You shall not covet + + your neighbor’s +house. You shall not covet your neighbor’s +wife, or his manservant or maidservant, or +his ox or donkey, or anything that belongs to +your neighbor.” + +Moses Comforts the People +(Deuteronomy 5:22–33 ; Hebrews 12:18–29) + +18 + +When all the people witnessed the thunder +and lightning, the sounding of the ram’s horn, +and the mountain enveloped in smoke, they +“Speak to us +trembled and stood at a distance. +yourself and we will listen,” they said to Moses. +“But do not let God speak to us, or we will die.” + +19 + +e 14 + +Or + +Or + +Cited in Matt. 15:4, Matt. 19:19, Mark 7:10, Luke 18:20, and Ephesians 6:2–3 + +f 15 + +Cited in Matt. 5:21, Matt. 19:18, Mark 10:19, Luke 18:20, Romans 13:9, and James 2:11 + +Cited in Matt. 5:27, + +h 17 + +g 16 + +Matt. 19:18, Mark 10:19, Luke 18:20, Romans 13:9, and James 2:11 +Romans 13:9 + +Cited in Matt. 19:18, Mark 10:19, and Luke 18:20 + +Cited in Mat. 19:18, Mark 10:19, Luke 18:20, and + +Cited in Romans 7:7 and Romans 13:9 + + 74 | Exodus 20:20 + +20 + +21 + +“Do not be afraid,” Moses replied. “For God has +come to test you, so that the fear of Him may be +before you, to keep you from sinning.” +And the +people stood at a distance as Moses approached +Idolatry Forbidden (1 Corinthians 10:14–22) +the thick darkness where God was. +22 + +23 + +Then the LORD said to Moses, “This is what +you are to tell the Israelites: ‘You have seen for +yourselves that I have spoken to you from +You are not to make any gods along- +heaven. +side Me; you are not to make for yourselves gods +24 +of silver or gold. + +You are to make for Me an altar of earth, and +sacrifice on it your burnt offerings and peace of- +ferings, your sheep and goats and cattle. In every +place where I cause My name to be remembered, +25 +I will come to you and bless you. + +Now if you make an altar of stones for Me, you +must not build it with stones shaped by tools; for +if you use a chisel on it, you will defile it. +And +you must not go up to My altar on steps, lest your +Hebrew Servants (Deuteronomy 15:12–18) +nakedness be exposed on it.’ + +26 + +21 + +2 + +“These are the ordinances that you are to +set before them: + +3 + +If you buy a Hebrew servant, he is to serve you +for six years. But in the seventh year, he shall go +free without paying anything. +If he arrived +alone, he is to leave alone; if he arrived with a +wife, she is to leave with him. +If his master gives +him a wife and she bears him sons or daughters, +the woman and her children shall belong to her +5 +master, and only the man shall go free. + +4 + +6 + +But if the servant declares, ‘I love my master +and my wife and children; I do not want to go +a +free,’ +then his master is to bring him before the +judges. + And he shall take him to the door or +doorpost and pierce his ear with an awl. Then he +7 +shall serve his master for life. + +8 + +11 + +marital rights of his first wife. +If, however, he +does not provide her with these three things, she +Personal Injury Laws +is free to go without monetary payment. +12 + +13 + +Whoever strikes and kills a man must surely +be put to death. +If, however, he did not lie in +wait, but God allowed it to happen, then I will ap- +14 +point for you a place where he may flee. + +But if a man schemes and acts willfully against +his neighbor to kill him, you must take him away +15 +from My altar to be put to death. + +Whoever strikes his father or mother must + +16 +surely be put to death. + +Whoever kidnaps another man must be put to +death, whether he sells him or the man is found +17 +in his possession. + + c + +d + his father or mother must + +Anyone who curses +18 +surely be put to death. + +19 + +If men are quarreling and one strikes the other +with a stone or a fist, and he does not die but is +then the one who struck him +confined to bed, +shall go unpunished, as long as the other can get +up and walk around outside with his staff. Nev- +ertheless, he must compensate the man for his +20 +lost work and see that he is completely healed. + +21 + +If a man strikes his manservant or maidser- +vant with a rod, and the servant dies by his hand, +he shall surely be punished. +However, if the +servant gets up after a day or two, the owner +shall not be punished, since the servant is his +22 +property. + +e + +23 + +If men who are fighting strike a pregnant +woman and her child is born prematurely, + but +there is no further injury, he shall surely be fined +as the woman’s husband demands and as the +But if a serious injury results, +court allows. +f +eye for +then you must require a life for a life— +25 +eye, tooth for tooth, + hand for hand, foot for foot, +burn for burn, wound for wound, and stripe + +24 + +26 +for stripe. + +b + +And if a man sells his daughter as a servant, she +If she is +is not to go free as the menservants do. +displeasing in the eyes of her master who had +designated her for himself, + he must allow her to +be redeemed. He has no right to sell her to for- +eigners, since he has broken faith with her. +And +if he chooses her for his son, he must deal with +her as with a daughter. +If he takes another +so that he does not designate her for himself +a 6 +wife, he must not reduce the food, clothing, or + +before God + +b 8 + +10 + +9 + +and her children come out + +f 24 + +e 22 + +Or + +Or + +and Mark 7:10 + +Literally + +27 + +If a man strikes and blinds the eye of his man- +servant or maidservant, he must let the servant +go free as compensation for the eye. +And if he +knocks out the tooth of his manservant or maid- +servant, he must let the servant go free as com- +28 +pensation for the tooth. + + g + +dishonors + +If an ox +c 17 + + gores a man or woman to death, the +reviles +ox must surely be stoned, and its meat must not +Cited in Matt. 15:4 +; also in verses 29–36 + +Cited in Matthew 5:38 + +g 28 + or + +a bull + +d 17 + +Or + +Or + + be eaten. But the owner of the ox shall not be held +29 +responsible. + +But if the ox has a habit of goring, and its +owner has been warned yet does not restrain it, +and it kills a man or woman, then the ox must be +30 +stoned and its owner must also be put to death. +If payment is demanded of him instead, he may +redeem his life by paying the full amount de- +31 +manded of him. + +If the ox gores a son or a daughter, it shall be + +32 +done to him according to the same rule. + + a + +If the ox gores a manservant or maidservant, +the owner must pay thirty shekels of silver + to +the master of that servant, and the ox must be +33 +stoned. + +34 + +If a man opens or digs a pit and fails to cover it, +the owner of +and an ox or a donkey falls into it, +the pit shall make restitution; he must pay its +35 +owner, and the dead animal will be his. + +If a man’s ox injures his neighbor’s ox and it +dies, they must sell the live one and divide the +36 +proceeds; they also must divide the dead animal. +But if it was known that the ox had a habit of +goring, yet its owner failed to restrain it, he shall +pay full compensation, ox for ox, and the dead an- +Property Laws +imal will be his. + + b + +22 + +“If a man steals an ox + or a sheep and +slaughters or sells it, he must repay five + +2 +oxen for an ox and four sheep for a sheep. +3 + +If a thief is caught breaking in and is beaten to +But if +death, no one shall be guilty of bloodshed. +it happens after sunrise, there is guilt for his +bloodshed. + +4 + +A thief must make full restitution; if he has noth- +ing, he himself shall be sold for his theft. +If what +was stolen is actually found alive in his posses- +sion—whether ox or donkey or sheep—he must +5 +pay back double. + +If a man grazes his livestock in a field or vine- +yard and allows them to stray so that they graze +in someone else’s field, he must make restitution +6 +from the best of his own field or vineyard. + +If a fire breaks out and spreads to thornbushes +so that it consumes stacked or standing grain, or +the whole field, the one who started the fire must +a 32 30 shekels +make full restitution. +c 8 + +before God + +whom God condemns + +d 9 + +7 + +Exodus 22:21 | 75 + +8 + +If a man gives his neighbor money or goods +for safekeeping and they are stolen from the +neighbor’s house, the thief, if caught, must pay +back double. +If the thief is not found, the owner +of the house must appear before the judges + to +determine whether he has taken his neighbor’s +9 +property. + + c + +In all cases of illegal possession of an ox, a don- +key, a sheep, a garment, or any lost item that +someone claims, ‘This is mine,’ both parties shall +bring their cases before the judges. The one +whom the judges find guilty + must pay back dou- +10 +ble to his neighbor. + + d + +11 + +If a man gives a donkey, an ox, a sheep, or any +other animal to be cared for by his neighbor, but +it dies or is injured or stolen while no one is +watching, +an oath before the LORD shall be +made between the parties to determine whether +or not the man has taken his neighbor’s property. +The owner must accept the oath and require no +12 +restitution. + +But if the animal was actually stolen from the +13 +neighbor, he must make restitution to the owner. + +If the animal was torn to pieces, he shall bring +it as evidence; he need not make restitution for +14 +the torn carcass. + +If a man borrows an animal from his neighbor +and it is injured or dies while its owner is not +present, he must make full restitution. +If the +owner was present, no restitution is required. If +Laws of Social Responsibility +the animal was rented, the fee covers the loss. +16 + +15 + +17 + +If a man seduces a virgin who is not pledged in +marriage and sleeps with her, he must pay the +full dowry for her to be his wife. +If her father +absolutely refuses to give her to him, the man +still must pay an amount comparable to the +18 +bridal price of a virgin. +19 + +You must not allow a sorceress to live. + +Whoever lies with an animal must surely be + +20 +put to death. + +e + +If anyone sacrifices to any god other than +the LORD alone, he must be set apart for +21 +destruction. + +You must not exploit or oppress a foreign res- +ident, for you yourselves were foreigners in the +a bull +land of Egypt. +Or + +; also in verses 4, 9, and 10 + +cherem + +a cow + +e 20 + +b 1 + + refer to the giving over + +Or + + is approximately 12 ounces or 342 grams of silver. +Or + +; also in verse 9 + + or +Forms of the Hebrew + +of things or persons to the LORD, either by destroying them or by giving them as an offering. + + 76 | Exodus 22:22 + +22 +23 + +24 + +You must not mistreat any widow or orphan. +If you do mistreat them, and they cry out to Me +My an- +in distress, I will surely hear their cry. +ger will be kindled, and I will kill you with the +sword; then your wives will become widows and +25 +your children will be fatherless. + +If you lend money to one of My people among +you who is poor, you must not act as a creditor to +26 +him; you are not to charge him interest. + +27 + +If you take your neighbor’s cloak as collateral, +because his cloak is +return it to him by sunset, +the only covering he has for his body. What else +will he sleep in? And if he cries out to Me, I will +28 +hear, for I am compassionate. + +a + +You must not blaspheme God or curse the + +29 +ruler of your people. + +30 + +You must not hold back offerings from your +granaries or vats. You are to give Me the firstborn +You shall do likewise with your +of your sons. +cattle and your sheep. Let them stay with their +mothers for seven days, but on the eighth day +31 +you are to give them to Me. + +You are to be My holy people. You must not eat +the meat of a mauled animal found in the field; +Justice and Mercy +you are to throw it to the dogs. + +23 + +2 +witness. + +“You shall not spread a false report. Do +not join the wicked by being a malicious + +You shall not follow the crowd in wrongdoing. +When you testify in a lawsuit, do not pervert jus- +And do not show +tice by siding with the crowd. +4 +favoritism to a poor man in his lawsuit. + +3 + +If you encounter your enemy’s stray ox or don- + +5 +key, you must return it to him. + +If you see the donkey of one who hates you +fallen under its load, do not leave it there; you +6 +must help him with it. + +7 + +You shall not deny justice to the poor in their +Stay far away from a false accusation. +lawsuits. +Do not kill the innocent or the just, for I will not +8 +acquit the guilty. + +9 + +Do not oppress a foreign resident, since you +yourselves know how it feels to be foreigners; for +Sabbath Laws +you were foreigners in the land of Egypt. +(Leviticus 25:1–7 ; Deuteronomy 15:1–6) + +10 + +11 + +For six years you are to sow your land and +but in the seventh year you +gather its produce, +must let it rest and lie fallow, so that the poor +among your people may eat from the field and +the wild animals may consume what they leave. +12 +Do the same with your vineyard and olive grove. + +For six days you are to do your work, but on +the seventh day you must cease, so that your ox +and your donkey may rest and the son of your +maidservant may be refreshed, as well as the for- +13 +eign resident. + +Pay close attention to everything I have said to +you. You must not invoke the names of other +The Three Feasts of Pilgrimage (Lev. 23:1–3) +gods; they must not be heard on your lips. +14 + +Three times a year you are to celebrate a feast + +15 +to Me. + b + +You are to keep the Feast of Unleavened + c +Bread + as I commanded you: At the appointed +time in the month of Abib + you are to eat unleav- +ened bread for seven days, because that was the +month you came out of Egypt. No one may ap- +16 +pear before Me empty-handed. + + d + +You are also to keep the Feast of Harvest + + with +the firstfruits of the produce from what you sow +in the field. + + e + + at the end of +And keep the Feast of Ingathering +the year, when you gather your produce from the +17 +field. + +Three times a year all your males are to appear + +18 +before the Lord GOD. + +You must not offer the blood of My sacrifices +with anything leavened, nor may the fat of My +19 +feast remain until morning. + +Bring the best of the firstfruits of your soil to + +the house of the LORD your God. + +Do not accept a bribe, for a bribe blinds those +who see and twists the words of the righteous. +or speak evil about the ruler of your people +a 28 + +You must not cook a young goat in its mother’s +milk. +c 15 Abib +; cited in Acts 23:5 + +That is, the seven-day period after the Passover + +b 15 + +d 16 + +LXX + +during which no leaven may be eaten; see Exodus 12:14–20. +calendar, usually occurring within the months of March and April. +to Jerusalem; it is also known as +Sukkot, the autumn feast of pilgrimage to Jerusalem; it is later called + +the Feast of Weeks + + (see Exodus 34:22) or + +the Feast of Tabernacles + + was the first month of the ancient Hebrew lunar + +the Feast of Pentecost +That is, Shavuot, the late spring feast of pilgrimage +That is, + + (see Acts 2:1). + +Shelters + +Booths + +e 16 + + (or + + or + +). + + God’s Angel to Lead (Deuteronomy 7:12–26) + +3 + +Exodus 24:18 | 77 + +20 + +21 + +Behold, I am sending an angel before you to +protect you along the way and to bring you +to the place I have prepared. +Pay attention to +him and listen to his voice; do not defy him, for +he will not forgive rebellion, since My Name is in +22 +him. + +23 + +But if you will listen carefully to his voice and +do everything I say, I will be an enemy to your +enemies and a foe to your foes. +For My angel +will go before you and bring you into the land of +the Amorites, Hittites, Perizzites, Canaanites, +24 +Hivites, and Jebusites, and I will annihilate them. + +You must not bow down to their gods or serve +them or follow their practices. Instead, you are to +demolish them and smash their sacred stones to +25 +pieces. + + a + +So you shall serve the LORD your God, and He +will bless + your bread and your water. And I will +No +take away sickness from among you. +woman in your land will miscarry or be barren; I +27 +will fulfill the number of your days. + +26 + +I will send My terror ahead of you and throw +into confusion every nation you encounter. I will +make all your enemies turn and run. +I will send +the hornet before you to drive the Hivites and +29 +Canaanites and Hittites out of your way. + +28 + +I will not drive them out before you in a single +year; otherwise the land would become desolate +30 +and wild animals would multiply against you. +Little by little I will drive them out ahead of +you, until you become fruitful and possess the +31 +land. + b +And I will establish your borders from the Red + to the Sea of the Philistines, and from the +Sea + For I will deliver the in- +desert to the Euphrates. +habitants into your hand, and you will drive them +out before you. +You shall make no covenant +with them or with their gods. +They must not +remain in your land, lest they cause you to sin +against Me. For if you serve their gods, it will +The Covenant Sealed +surely be a snare to you.” + +33 + +32 + +c + +24 + +2 + +Then the LORD said to Moses, “Come up +to the LORD—you and Aaron, Nadab and +Abihu, and seventy of Israel’s elders—and you +are to worship at a distance. +Moses alone shall +approach the LORD, but the others must not +come near. And the people may not go up with +a 25 +him.” + +the Sea of Reeds + +I will bless + +b 31 + +LXX and Vulgate + +Or + +When Moses came and told the people all the +words and ordinances of the LORD, they all re- +sponded with one voice: “All the words that the +4 +LORD has spoken, we will do.” + +And Moses wrote down all the words of the + +LORD. + +5 + +Early the next morning he got up and built an al- +tar at the base of the mountain, along with twelve +Then he +pillars for the twelve tribes of Israel. +sent out some young men of Israel, and they of- +fered burnt offerings and sacrificed young bulls +6 +as peace offerings to the LORD. + +Moses took half of the blood and put it in bowls, +7 +and the other half he splattered on the altar. +Then he took the Book of the Covenant and read +it to the people, who replied, “All that the LORD +8 +has spoken we will do, and we will be obedient.” + +So Moses took the blood, splattered it on the +people, and said, “This is the blood of the cove- +nant that the LORD has made with you in accord- +9 +ance with all these words.” + + d + +10 + +11 + +Then Moses went up with Aaron, Nadab and +Abihu, and seventy of the elders of Israel, +and +they saw the God of Israel. Under His feet was a +work like a pavement made of sapphire, as clear +as the sky itself. +But God did not lay His hand +on the nobles of Israel; they saw Him, and they +Moses on the Mountain +ate and drank. +12 + +Then the LORD said to Moses, “Come up to Me +on the mountain and stay here, so that I may give +you the tablets of stone, with the law and com- +13 +mandments I have written for their instruction.” + +14 + +So Moses set out with Joshua his attendant and +went up on the mountain of God. +And he said +to the elders, “Wait here for us until we return to +you. Aaron and Hur are here with you. Whoever +15 +has a dispute can go to them.” + +16 + +When Moses went up on the mountain, the +cloud covered it, +and the glory of the LORD +settled on Mount Sinai. For six days the cloud +covered it, and on the seventh day the LORD +called to Moses from within the cloud. +And the +sight of the glory of the LORD was like a consum- +ing fire on the mountaintop in the eyes of the +18 +Israelites. + +17 + +c 31 + +Moses entered the cloud as he went up on the +mountain, and he remained on the mountain +forty days and forty nights. +Hebrew + +Cited in Hebrews 9:20 + +the River + +d 8 + + 78 | Exodus 25:1 + +Offerings for the Tabernacle (Exodus 35:4–9) + +2 + +25 + +“Tell the +Then the LORD said to Moses, +Israelites to bring Me an offering. You are +to receive My offering from every man whose +This is the offering you are +heart compels him. +to accept from them: + +3 + +4 +gold, silver, and bronze; + +blue, purple, and scarlet yarn; + +5 +fine linen and goat hair; + + a + +ram skins dyed red and fine leather; + +6 +acacia wood; + +olive oil for the light; + +spices for the anointing oil and for the +7 +fragrant incense; + +8 + +and onyx stones and gemstones to be +mounted on the ephod and breastpiece. + +9 + +And they are to make a sanctuary for Me, so that +You must make the +I may dwell among them. +tabernacle and design all its furnishings accord- +The Ark of the Covenant (Exodus 37:1–5) +ing to the pattern I show you. +10 + +And they are to construct an ark of acacia +wood, two and a half cubits long, a cubit and a +Overlay +half wide, and a cubit and a half high. +it with pure gold both inside and out, and make a +12 +gold molding around it. + +11 + +b + +13 + +Cast four gold rings for it and fasten them to its +four feet, two rings on one side and two on the +14 +And make poles of acacia wood and +other. +Insert the poles into +overlay them with gold. +15 +the rings on the sides of the ark, in order to carry +it. +The poles are to remain in the rings of the +c +And place in- +ark; they must not be removed. +The Mercy Seat (Exodus 37:6–9) + which I will give you. +side the ark the Testimony, +17 + +16 + + d + +e + +18 + +And you are to construct a mercy seat + + of pure +gold, two and a half cubits long and a cubit and a +half wide. +Make two cherubim of hammered +gold at the ends of the mercy seat, +one cherub +on one end and one on the other, all made from +And the cherubim are to +one piece of gold. +a 5 + +b 10 + +19 + +20 + +have wings that spread upward, overshadowing +the mercy seat. The cherubim are to face each +21 +other, looking toward the mercy seat. + +Set the mercy seat atop the ark and put the + +22 +Testimony that I will give you into the ark. + + f + +And I will meet with you there above the +mercy seat, between the two cherubim that are +over the ark of the Testimony; + I will speak with +you about all that I command you regarding the +The Table of Showbread +Israelites. +(Exodus 37:10–16 ; Leviticus 24:5–9) + +23 + +g + +24 + +You are also to make a table of acacia wood +two cubits long, a cubit wide, and a cubit and a +Overlay it with pure gold and make +half high. + h +a gold molding around it. +And make a rim + and put a gold +around it a handbreadth wide +26 +molding on the rim. + +25 + +27 + +Make four gold rings for the table and fasten +them to the four corners at its four legs. +The +28 +rings are to be close to the rim, to serve as hold- +Make +ers for the poles used to carry the table. +the poles of acacia wood and overlay them with +29 +gold, so that the table may be carried with them. + +You are also to make the plates and dishes, as +well as the pitchers and bowls for pouring drink +30 +offerings. Make them out of pure gold. + +And place the Bread of the Presence on the ta- + +The Lampstand +ble before Me at all times. +(Exodus 37:17–24 ; Numbers 8:1–4) + +31 + +Then you are to make a lampstand of pure, +hammered gold. It shall be made of one piece, in- +cluding its base and shaft, its cups, and its buds +32 +and petals. + +33 + +Six branches are to extend from the sides of +the lampstand—three on one side and three on +There are to be three cups shaped +the other. +like almond blossoms on the first branch, each +with buds and petals, three on the next branch, +and the same for all six branches that extend +from the lampstand. + + c 16 The Testimony + +Possibly the hides of large aquatic mammals + +The ark was approximately 3.75 feet long, 2.25 feet wide, and 2.25 + +feet high (114.3 centimeters long, 68.6 centimeters wide, and 68.6 centimeters high). +atonement cover +stone tablets in the ark of the covenant inscribed with the Ten Commandments; also in verses 21 and 22. + +e 17 + +the ark of the covenant + +g 23 + +f 22 + +; here and throughout Exodus + +The mercy seat was approximately 3.75 feet long and 2.25 feet wide + +h 25 A handbreadth + +(114.3 centimeters long and 68.6 centimeters wide). +The table was approxi- +mately 3 feet long, 1.5 feet wide, and 2.25 feet high (91.4 centimeters long, 45.7 centimeters wide, and 68.6 centimeters +high). + + is approximately 2.9 inches or 7.4 centimeters. + +That is, + +an + +d 17 + refers to the +Or + + 34 + +10 + +Exodus 26:29 | 79 + +35 + +And on the lampstand there shall be four cups +shaped like almond blossoms with buds and pet- +For the six branches that extend from the +als. +lampstand, a bud must be under the first pair of +branches, a bud under the second pair, and a bud +The buds and branches +under the third pair. +are to be all of one piece with the lampstand, +37 +hammered out of pure gold. + +36 + +38 + +Make seven lamps and set them up on the +lampstand so that they illuminate the area in +39 +The wick trimmers and their trays +front of it. +The lampstand and all +must be of pure gold. +a +these utensils shall be made from a talent of pure +40 +gold. + +b + +See to it that you make everything according to + +The Ten Curtains for the Tabernacle +the pattern shown you on the mountain. +(Exodus 36:8–13) + +26 + +“You are to construct the tabernacle it- +self with ten curtains of finely spun linen, +each with blue, purple, and scarlet yarn, and +Each cur- +cherubim skillfully worked into them. +tain shall be twenty-eight cubits long and four +3 +cubits wide + +—all curtains the same size. + +2 + + c + +4 + +Five of the curtains are to be joined together, +and the other five joined as well. +Make loops of +blue material on the edge of the end curtain in +the first set, and do the same for the end curtain +5 +in the second set. + +6 + +Make fifty loops on one curtain and fifty loops +on the end curtain of the second set, so that the +Make fifty +loops line up opposite one another. +gold clasps as well, and join the curtains together +with the clasps, so that the tabernacle will be a +The Eleven Curtains of Goat Hair +unit. +(Exodus 36:14–19) + +7 + +You are to make curtains of goat hair for the +8 +tent over the tabernacle—eleven curtains in all. +Each of the eleven curtains is to be the same + +9 +size—thirty cubits long and four cubits wide. + +d + +Join five of the curtains into one set and the +other six into another. Then fold the sixth curtain +over double at the front of the tent. +a 39 A talent + +Make fifty loops along the edge of the end cur- +tain in the first set, and fifty loops along the edge +11 +of the corresponding curtain in the second set. +Make fifty bronze clasps and put them through + +12 +the loops to join the tent together as a unit. + +13 + +As for the overlap that remains of the tent cur- +tains, the half curtain that is left over shall hang +down over the back of the tabernacle. +And the +tent curtains will be a cubit + longer on either +side, and the excess will hang over the sides of +14 +the tabernacle to cover it. + + e + +f + +Also make a covering for the tent out of ram +skins dyed red, and over that a covering of fine +The Frames and Bases (Exodus 36:20–34) +leather. +15 + +16 + +You are to construct upright frames of acacia +g +Each frame is to be + +wood for the tabernacle. +17 +ten cubits long and a cubit and a half wide. + + h + +Two tenons + + must be connected to each other +for each frame. Make all the frames of the taber- +18 +nacle in this way. +19 + +Construct twenty frames for the south side of +with forty silver bases under +the tabernacle, +the twenty frames—two bases for each frame, +20 +one under each tenon. + +21 + +For the second side of the tabernacle, the north +and forty silver ba- + +side, make twenty frames +22 +ses—two bases under each frame. + +23 + +24 + +Make six frames for the rear of the tabernacle, +and two frames for the two back +the west side, +coupled together +corners of the tabernacle, +25 +from bottom to top and fitted into a single ring. +These will serve as the two corners. +So there +are to be eight frames and sixteen silver bases— +26 +two under each frame. + +27 + +You are also to make five crossbars of acacia +wood for the frames on one side of the taber- +five for those on the other side, and five +nacle, +for those on the rear side of the tabernacle, to the +28 +west. + +The central crossbar in the middle of the +29 +frames shall extend from one end to the other. +Overlay the frames with gold and make gold +rings to hold the crossbars. Also overlay the +crossbars with gold. + +b 40 + + is approximately 75.4 pounds or 34.2 kilograms of gold. + +Cited in Hebrews 8:5 +curtains was approximately 42 feet long and 6 feet wide (12.8 meters long and 1.8 meters wide). +f 14 +curtains was approximately 45 feet long and 6 feet wide (13.7 meters long and 1.8 meters wide). +h 17 +approximately 18 inches or 45.7 centimeters. +Possibly the hides of large aquatic mammals +approximately 15 feet long and 2.25 feet wide (4.6 meters long and 68.6 centimeters wide). +pieces of wood made for insertion into another piece; similarly in verse 19. + +c 2 +d 8 +e 13 A cubit +g 16 + +Each of the ten +Each of the eleven + is +Each frame was + +That is, projecting + + 80 | Exodus 26:30 + +30 + +So you are to set up the tabernacle according + +The Veil (Exodus 36:35–36) +to the pattern shown you on the mountain. +31 + +32 + +Make a veil of blue, purple, and scarlet yarn, +and finely spun linen, with cherubim skillfully +worked into it. +Hang it with gold hooks on four +posts of acacia wood, overlaid with gold and +And hang the veil +standing on four silver bases. +from the clasps and place the ark of the Testi- +b + behind the veil. So the veil will separate +mony +34 +the Holy Place from the Most Holy Place. + +33 + + a + +35 + +Put the mercy seat on the ark of the Testimony +And place the table out- +in the Most Holy Place. +side the veil on the north side of the tabernacle, +and put the lampstand opposite the table, on the +The Curtain for the Entrance (Ex. 36:37–38) +south side. +36 + +37 + +For the entrance to the tent, you are to make a +curtain embroidered with blue, purple, and scar- +let yarn, and finely spun linen. +Make five posts +of acacia wood for the curtain, overlay them with +The Bronze Altar (Exodus 38:1–7) +gold hooks, and cast five bronze bases for them. + +27 + +“You are to build an altar of acacia wood. +c +The altar must be square, five cubits + +2 +long, five cubits wide, and three cubits high. + +Make a horn on each of its four corners, so that +the horns are of one piece, and overlay it with +3 +bronze. + +4 + +Make all its utensils of bronze—its pots for re- +moving ashes, its shovels, its sprinkling bowls, its +Construct for it a +meat forks, and its firepans. +5 +grate of bronze mesh, and make a bronze ring at +each of the four corners of the mesh. +Set the +grate beneath the ledge of the altar, so that the +6 +mesh comes halfway up the altar. + +7 + +Additionally, make poles of acacia wood for the +The poles +altar and overlay them with bronze. +are to be inserted into the rings so that the poles +8 +are on two sides of the altar when it is carried. + +Construct the altar with boards so that it is hol- +low. It is to be made just as you were shown on +the mountain. +a 33 + +the ark of the covenant + +b 33 + +The Courtyard (Exodus 38:9–20) + +9 + + d + +10 + +You are also to make a courtyard for the taber- +nacle. On the south side of the courtyard make +curtains of finely spun linen, a hundred cubits +long +with twenty posts and +twenty bronze bases, and silver hooks and bands +11 +on the posts. + + on one side, + +Likewise there are to be curtains on the north +side, a hundred cubits long, with twenty posts +and twenty bronze bases, and with silver hooks +The curtains on the +and bands on the posts. +west side of the courtyard shall be fifty cubits +13 +wide, + + with ten posts and ten bases. + +12 + +e + +14 + +f + +15 + +The east side of the courtyard, toward the sun- +rise, is to be fifty cubits wide. +Make the cur- +tains on one side fifteen cubits long, + with three +and the curtains on the +posts and three bases, +other side fifteen cubits long, with three posts +16 +and three bases. +g + +The gate of the courtyard shall be twenty cu- +bits long, + with a curtain embroidered with blue, +purple, and scarlet yarn, and finely spun linen. It +17 +shall have four posts and four bases. + +19 + +All the posts around the courtyard shall have +18 +silver bands, silver hooks, and bronze bases. +h +The entire courtyard shall be a hundred cubits +i +long and fifty cubits wide, + with curtains of finely +spun linen five cubits high, + and with bronze ba- +ses. +All the utensils of the tabernacle for every +use, including all its tent pegs and the tent pegs +The Oil for the Lamps (Leviticus 24:1–4) +of the courtyard, shall be made of bronze. + +20 + +And you are to command the Israelites to bring +you pure oil of pressed olives for the light, to +21 +keep the lamps burning continually. + +j + +In the Tent of Meeting, outside the veil that is +in front of the Testimony, + Aaron and his sons +are to tend the lamps before the LORD from +evening until morning. This is to be a permanent +statute for the Israelites for the generations to +come. + +the Holy of Holies + +c 1 + +That is, + +; also in verse 34 + +Or + +e 12 50 cubits + +f 14 15 cubits +h 18 +i 18 5 cubits + +mately 7.5 feet in length and width, and 4.5 feet high (2.3 meters in length and width, and 1.4 meters high). +is approximately 150 feet or 45.7 meters; also in verse 11. +verse 13. +or 9.1 meters. +wide). +the covenant inscribed with the Ten Commandments. + +j 21 The Testimony +The courtyard was approximately 150 feet long and 75 feet wide (45.7 meters long and 22.9 meters + refers to the stone tablets in the ark of + is approximately 7.5 feet or 2.3 meters. + + is approximately 75 feet or 22.9 meters; also in + is approximately 30 feet + + is approximately 22.5 feet or 6.9 meters; also in verse 15. + +; also in verse 34 +g 16 20 cubits + +d 9 100 cubits +The altar was approxi- + + Garments for the Priests + +17 + +Exodus 28:32 | 81 + +28 + +“Next, have your brother Aaron brought +to you from among the Israelites, along +2 +with his sons Nadab, Abihu, Eleazar, and Itha- +Make holy garments +mar, to serve Me as priests. +for your brother Aaron, to give him glory and +3 +splendor. + +4 + +You are to instruct all the skilled craftsmen, +whom I have filled with a spirit of wisdom, to +make garments for Aaron’s consecration, so that +These are the gar- +he may serve Me as priest. +ments that they shall make: a breastpiece, an +ephod, a robe, a woven tunic, a turban, and a +sash. They are to make these holy garments for +your brother Aaron and his sons, so that they +They shall use gold, +may serve Me as priests. +along with blue, purple, and scarlet yarn, and fine +The Ephod (Exodus 39:1–7) +linen. +6 + +5 + +8 + +7 + +They are to make the ephod of finely spun linen +embroidered with gold, and with blue, purple, +It shall have two shoulder +and scarlet yarn. +pieces attached at two of its corners, so it can +be fastened. +And the skillfully woven waistband +of the ephod must be of one piece, of the same +workmanship—with gold, with blue, purple, and +9 +scarlet yarn, and with finely spun linen. + +10 + +Take two onyx stones and engrave on them the +six of their names +names of the sons of Israel: +11 +on one stone and the remaining six on the other, +Engrave the names +in the order of their birth. +of the sons of Israel on the two stones the way a +gem cutter engraves a seal. Then mount the +Fasten both +stones in gold filigree settings. +stones on the shoulder pieces of the ephod as +memorial stones for the sons of Israel. Aaron is +to bear their names on his two shoulders as a me- +13 +morial before the LORD. + +14 + +12 + +Fashion gold filigree settings + +and two chains +of pure gold, made of braided cord work; and at- +The Breastpiece (Exodus 39:8–21) +tach these chains to the settings. +15 + +You are also to make a breastpiece of judgment +with the same workmanship as the ephod. Con- +struct it with gold, with blue, purple, and scarlet +It must be +yarn, and with finely spun linen. +square when folded over double, a span long and +a span wide. +a 16 +b 17 + +16 + +a + + b + +And mount on it a setting of gemstones, four + +rows of stones: + +In the first row there shall be a ruby, a +18 +topaz, and an emerald; + +in the second row a turquoise, a + +19 +sapphire, and a diamond; + +in the third row a jacinth, an agate, and + +20 +an amethyst; + +and in the fourth row a beryl, an onyx, + +and a jasper. + +21 +Mount these stones in gold filigree settings. +The twelve stones are to correspond to the +names of the sons of Israel, each engraved like a +22 +seal with the name of one of the twelve tribes. + +23 + +25 + +For the breastpiece, make braided chains like +cords of pure gold. +You are also to make two +24 +gold rings and fasten them to the two corners of +the breastpiece. +Then fasten the two gold +chains to the two gold rings at the corners of the +and fasten the other ends of the +breastpiece, +two chains to the two filigree settings, attaching +them to the shoulder pieces of the ephod at the +26 +front. + +Make two more gold rings and attach them to +the other two corners of the breastpiece, on the +27 +inside edge next to the ephod. + +28 + +Make two additional gold rings and attach +them to the bottom of the two shoulder pieces +of the ephod, on its front, near its seam just +above its woven waistband. +The rings of the +breastpiece shall be tied to the rings of the ephod +with a cord of blue yarn, so that the breastpiece +is above the waistband of the ephod and does not +29 +swing out from the ephod. + +Whenever Aaron enters the Holy Place, he +shall bear the names of the sons of Israel over his +heart on the breastpiece of judgment, as a contin- +30 +ual reminder before the LORD. + + c + +And place the Urim and Thummim + + in the +breastpiece of judgment, so that they will also be +over Aaron’s heart whenever he comes before +the LORD. Aaron will continually carry the judg- +ment of the sons of Israel over his heart before +Additional Priestly Garments (Ex. 39:22–31) +the LORD. +31 + +32 + +You are to make the robe of the ephod entirely +with an opening at its top in the + +of blue cloth, + +c 30 + +Lights and Perfections + +The breastpiece, when folded over, was approximately 9 inches or 22.9 centimeters in both length and width. +The precise identification of some of these gemstones is uncertain. + +Literally + + 82 | Exodus 28:33 + +4 + +a + +center. Around the opening shall be a woven col- +lar with an opening like that of a garment, + so +33 +that it will not tear. + +34 + +Make pomegranates of blue, purple, and scar- +let yarn all the way around the lower hem, with +alternating the gold +gold bells between them, +bells and pomegranates around the lower hem of +35 +the robe. + +Aaron must wear the robe whenever he minis- +ters, and its sound will be heard when he enters +or exits the sanctuary before the LORD, so that he +36 +will not die. + +You are to make a plate of pure gold and + +b + +engrave on it as on a seal: +37 + +HOLY TO THE LORD. + +38 + +Fasten to it a blue cord to mount it on the tur- +And +ban; it shall be on the front of the turban. +it will be worn on Aaron’s forehead, so that he +may bear the iniquity of the holy things that the +sons of Israel consecrate with regard to all their +holy gifts. It shall always be on his forehead, so +39 +that they may be acceptable before the LORD. + +40 + +You are to weave the tunic with fine linen, +make the turban of fine linen, and fashion an em- +Make tunics, sashes, and head- +broidered sash. +bands for Aaron’s sons, to give them glory and +41 +splendor. + +After you put these garments on your brother +Aaron and his sons, anoint them, ordain them, +and consecrate them so that they may serve Me +42 +as priests. + +43 + +Make linen undergarments to cover their bare +Aaron and +flesh, extending from waist to thigh. +his sons must wear them whenever they enter +the Tent of Meeting or approach the altar to min- +ister in the Holy Place, so that they will not incur +guilt and die. This is to be a permanent statute for +Consecration of the Priests (Leviticus 8:1–13) +Aaron and his descendants. + +29 + +“Now this is what you are to do to conse- +crate Aaron and his sons to serve Me as +2 +priests: Take a young bull and two rams without +along with unleavened bread, unleav- +blemish, +ened cakes mixed with oil, and unleavened wa- +fers anointed with oil. Make them out of fine +put them in a basket, and present +wheat flour, +them in the basket, along with the bull and the +a 32 +two rams. +offering + +3 + +5 + +Then present Aaron and his sons at the en- +trance to the Tent of Meeting and wash them +Take the garments and clothe Aa- +with water. +ron with the tunic, the robe of the ephod, the +ephod itself, and the breastplate. Fasten the +Put the +ephod on him with its woven waistband. +turban on his head and attach the holy diadem to +Then take the anointing oil and +the turban. +8 +anoint him by pouring it on his head. + +7 + +6 + +9 + +Present his sons as well and clothe them with +Wrap the sashes around Aaron and his +tunics. +sons and tie headbands on them. The priesthood +shall be theirs by a permanent statute. In this +The Order of the Sacrifices (Leviticus 8:22-36) +way you are to ordain Aaron and his sons. +10 + +12 + +11 + +You are to present the bull at the front of the +Tent of Meeting, and Aaron and his sons are to +And you shall +lay their hands on its head. +slaughter the bull before the LORD at the en- +trance to the Tent of Meeting. +Take some of +the blood of the bull and put it on the horns of the +13 +altar with your finger; then pour out the rest of +the blood at the base of the altar. +Take all the +fat that covers the entrails and the lobe of the +liver, and both kidneys with the fat on them, and +burn them on the altar. +But burn the flesh of +the bull and its hide and dung outside the camp; +15 +it is a sin offering. + +14 + +c + +16 + +Take one of the rams, and Aaron and his sons +You are to +shall lay their hands on its head. +17 +slaughter the ram, take its blood, and splatter it +Cut the ram into pieces, +on all sides of the altar. +wash the entrails and legs, and place them +with its head and other pieces. +Then burn the +entire ram on the altar; it is a burnt offering to +the LORD, a pleasing aroma, a food offering to the +19 +LORD. + +18 + +20 + +21 + +Take the second ram, and Aaron and his sons +Slaughter the +are to lay their hands on its head. +ram, take some of its blood, and put it on the right +earlobes of Aaron and his sons, on the thumbs of +their right hands, and on the big toes of their +right feet. Splatter the remaining blood on all +And take some of the blood +sides of the altar. +on the altar and some of the anointing oil and +sprinkle it on Aaron and his garments, as well as +on his sons and their garments. Then he and his +garments will be consecrated, as well as his sons +and their garments. + +the LORD + +c 14 + +purification + +a coat of mail + +b 36 + +The meaning of the Hebrew word is uncertain; possibly + +. + +That is, + +Or + +; also in verse 36 + + 22 + +The Daily Offerings (Numbers 28:1–8) + +Exodus 30:9 | 83 + +23 + +Take the fat from the ram, the fat tail, the fat +covering the entrails, the lobe of the liver, both +kidneys with the fat on them, and the right thigh +along with +(since this is a ram for ordination), +one loaf of bread, one cake of bread made with +oil, and one wafer from the basket of unleavened +Put all these in +bread that is before the LORD. +the hands of Aaron and his sons and wave them +Then take +before the LORD as a wave offering. +them from their hands and burn them on the al- +tar atop the burnt offering as a pleasing aroma +26 +before the LORD; it is a food offering to the LORD. + +25 + +24 + +27 + +28 + +Take the breast of the ram of Aaron’s ordina- +tion and wave it before the LORD as a wave offer- +Consecrate for +ing, and it will be your portion. +Aaron and his sons the breast of the wave offer- +ing that is waved and the thigh of the heave +offering that is lifted up from the ram of ordina- +This will belong to Aaron and his sons as +tion. +a regular portion from the Israelites, for it is the +heave offering the Israelites will make to the +29 +LORD from their peace offerings. + +30 + +The holy garments that belong to Aaron will +belong to his sons after him, so they can be +anointed and ordained in them. +The son who +succeeds him as priest and enters the Tent of +Meeting to minister in the Holy Place must wear +Food for the Priests +them for seven days. +31 + +33 + +32 +You are to take the ram of ordination and boil +At the entrance to the +its flesh in a holy place. +Tent of Meeting, Aaron and his sons are to eat the +meat of the ram and the bread that is in the bas- +They must eat those things by which +ket. +atonement was made for their ordination and +consecration. But no outsider may eat them, be- +And if any of the +cause these things are sacred. +meat of ordination or any bread is left until the +morning, you are to burn up the remainder. It +35 +must not be eaten, because it is sacred. + +34 + +36 + +This is what you are to do for Aaron and his +sons based on all that I have commanded you, +Sacrifice a +taking seven days to ordain them. +bull as a sin offering each day for atonement. Pu- +rify the altar by making atonement for it, and +For seven days you +anoint it to consecrate it. +shall make atonement for the altar and conse- +crate it. Then the altar will become most holy; +a 39 +whatever touches the altar will be holy. + +between the two evenings + +37 + +38 + +c + +b + +a + +40 + +This is what you are to offer regularly on the +39 +altar, each day: two lambs that are a year old. +Offer one lamb in the morning and the other at +With the first lamb offer a tenth of an +twilight. +ephah of fine flour, + mixed with a quarter hin of +41 +oil from pressed olives, + and a drink offering of a +And offer the second lamb +quarter hin of wine. +at twilight with the same grain offering and drink +offering as in the morning, as a pleasing aroma, a +42 +food offering to the LORD. + +43 + +For the generations to come, this burnt offer- +ing shall be made regularly at the entrance to the +Tent of Meeting before the LORD, where I will +meet you to speak with you. +I will also meet +with the Israelites there, and that place will be +consecrated by My glory. +So I will consecrate +the Tent of Meeting and the altar, and I will con- +God Will Dwell among the People +secrate Aaron and his sons to serve Me as priests. +45 + +44 + +46 + +Then I will dwell among the Israelites and be +their God. +And they will know that I am the +LORD their God, who brought them out of the +land of Egypt so that I might dwell among them. +The Altar of Incense (Exodus 37:25–29) +I am the LORD their God. + +30 + +2 + +d + + Its horns must be of one piece. + +“You are also to make an altar of acacia +It is to +wood for the burning of incense. +3 +be square, a cubit long, a cubit wide, and two cu- +Over- +bits high. +lay with pure gold the top and all the sides and +4 +horns, and make a molding of gold around it. +And make two gold rings below the molding on +5 +opposite sides to hold the poles used to carry it. +Make the poles of acacia wood and overlay + +6 +them with gold. + + e + +f + +7 + +Place the altar in front of the veil that is before +the ark of the Testimony +—before the mercy +seat that is over the Testimony—where I will +meet with you. +And Aaron is to burn fragrant +8 +incense on it every morning when he tends the +When Aaron sets up the lamps at twi- +lamps. +light, + he must burn the incense perpetually + g +9 +before the LORD for the generations to come. +On this altar you must not offer unauthorized +incense or a burnt offering or grain offering; nor +are you to pour a drink offering on it. + +c 40 + +b 40 A tenth of an ephah +a quarter hin of pressed oil + +Heb. +e 6 + +d 2 +about 2.6 pounds or 1.2 kg of flour). + + is approx. 2 dry quarts or 2.2 liters (probably +; that is, approx. 0.97 quarts or 0.92 liters +g 9 +f 8 +The altar was approximately 1.5 feet in length and width, and 3 feet high (45.7 cm in length and width, and 91.4 cm + +between the two evenings + +the ark of the covenant + +; also in verse 41 + +Hebrew + +strange + +high). + +That is, + +; also in verse 26 + +Hebrew + +Or + + 84 | Exodus 30:10 + +10 + +Once a year Aaron shall make atonement on +the horns of the altar. Throughout your genera- +tions he shall make atonement on it annually + of atonement. +with the blood of the sin offering +The Census Offering +The altar is most holy to the LORD.” +(2 Samuel 24:1–9 ; 1 Chronicles 21:1–6) + + a + +11 + +12 + +Then the LORD said to Moses, + +“When you +take a census of the Israelites to number them, +each man must pay the LORD a ransom for his life +when he is counted. Then no plague will come +Every- +upon them when they are numbered. +one who crosses over to those counted must pay +a half shekel, + according to the sanctuary shekel, +which weighs twenty gerahs. + This half shekel is +14 +an offering to the LORD. + +13 + +b + +c + +16 + +Everyone twenty years of age or older who +15 +crosses over must give this offering to the LORD. +In making the offering to the LORD to atone for +your lives, the rich shall not give more than a half +Take the +shekel, nor shall the poor give less. +atonement money from the Israelites and use it +for the service of the Tent of Meeting. It will serve +as a memorial for the Israelites before the LORD +The Bronze Basin (Exodus 38:8) +to make atonement for your lives.” +18 +17 + +19 + +And the LORD said to Moses, + +“You are to +make a bronze basin with a bronze stand for +washing. Set it between the Tent of Meeting and +with which Aaron +the altar, and put water in it, +20 +and his sons are to wash their hands and feet. +Whenever they enter the Tent of Meeting or +approach the altar to minister by presenting a +food offering to the LORD, they must wash with +Thus they are +water so that they will not die. +to wash their hands and feet so that they will not +die; this shall be a permanent statute for Aaron +and his descendants for the generations to +The Anointing Oil +come.” +22 + +23 + +21 + +d + +Then the LORD said to Moses, +24 + +est spices: 500 shekels of liquid myrrh, +amount (250 shekels) of fragrant cinnamon, +250 shekels of fragrant cane, +500 shekels of +cassia + —all according to the sanctuary shekel— +purification offering +a 10 + +“Take the fin- +e + half that + +b 13 A half shekel + + g + +f + +h + +25 + +Prepare from these a sa- +and a hin of olive oil. +cred anointing oil, a fragrant blend, the work of a +26 +perfumer; it will be a sacred anointing oil. + +27 + +Use this oil to anoint the Tent of Meeting, the +the table and all its uten- +ark of the Testimony, +28 +sils, the lampstand and its utensils, the altar of +the altar of burnt offering and all its +incense, +You are +utensils, and the basin with its stand. +to consecrate them so that they will be most holy. +Whatever touches them shall be holy. +Anoint +Aaron and his sons and consecrate them to serve +31 +Me as priests. + +30 + +29 + +33 + +32 + +And you are to tell the Israelites, ‘This will be +My sacred anointing oil for the generations to +It must not be used to anoint an ordi- +come. +nary man, and you must not make anything like +it with the same formula. It is holy, and it must be +Anyone who mixes perfume like it +holy to you. +or puts it on an outsider shall be cut off from his +The Incense +people.’ +34 + +” + +35 + +The LORD also said to Moses, “Take fragrant +spices—gum resin, onycha, galbanum, and pure +and make a +frankincense—in equal measures, +fragrant blend of incense, the work of a per- +36 +fumer, seasoned with salt, pure and holy. + i +Grind some of it into fine powder and place it +in front of the Testimony + in the Tent of Meeting, +where I will meet with you. It shall be most holy +to you. +You are never to use this formula to +make incense for yourselves; you shall regard it +Anyone who makes some- +as holy to the LORD. +thing like it to enjoy its fragrance shall be cut off +Bezalel and Oholiab (Exodus 35:30–35) +from his people.” + +37 + +38 + +2 + +3 + +“See, I +Then the LORD said to Moses, +have called by name Bezalel son of Uri, +the son of Hur, of the tribe of Judah. +And I have +filled him with the Spirit of God, with skill, ability, +to +and knowledge in all kinds of craftsmanship, +5 +design artistic works in gold, silver, and bronze, +to cut gemstones for settings, and to carve +6 +wood, so that he may be a master of every craft. + +4 + +Moreover, I have selected Oholiab son of + +Ahisamach, of the tribe of Dan, as his assistant. +c 13 20 gerahs + +31 + +Or + +e 23 250 shekels + + d 23 500 shekels + is approximately 0.2 ounces or 5.7 grams; also in verse 15. + + is + is approximately 12.6 pounds or 5.7 + +f 23 250 shekels + +equivalent to one shekel (approximately 0.4 ounces or 11.4 grams). +kilograms of myrrh. +h 24 A hin +proximately 6.3 pounds or 2.9 kilograms of cane. + +g 24 500 shekels + + is approximately 6.3 pounds or 2.9 kilograms of cinnamon. + +i 36 The Testimony + is approximately 12.6 pounds or 5.7 kilograms of cassia. + + is ap- + + is approximately 0.97 gallons or 3.67 liters of olive oil. + + refers to the stone tablets in the ark of + +the covenant inscribed with the Ten Commandments. + + 9 + +8 + +I have also given skill to all the craftsmen, that + a +7 +they may fashion all that I have commanded you: +the Tent of Meeting, the ark of the Testimony +and the mercy seat upon it, and all the other fur- +the table with its utensils, +nishings of the tent— +the pure gold lampstand with all its utensils, the +altar of incense, +the altar of burnt offering with +10 +all its utensils, and the basin with its stand— +as well as the woven garments, both the holy +garments for Aaron the priest and the garments +for his sons to serve as priests, +in addition to +the anointing oil and fragrant incense for the +Holy Place. They are to make them according to +The Sign of the Sabbath (Numbers 15:32–36) +all that I have commanded you.” +12 + +11 + +13 + +14 + +And the LORD said to Moses, + +“Tell the Isra- +elites, ‘Surely you must keep My Sabbaths, for +this will be a sign between Me and you for the +generations to come, so that you may know that +I am the LORD who sanctifies you. +Keep the +Sabbath, for it is holy to you. Anyone who pro- +fanes it must surely be put to death. Whoever +does any work on that day must be cut off from +among his people. +For six days work may be +done, but the seventh day is a Sabbath of com- +plete rest, holy to the LORD. Whoever does any +work on the Sabbath day must surely be put to +16 +death. + +15 + +17 + +The Israelites must keep the Sabbath, celebrat- +ing it as a permanent covenant for the genera- +tions to come. +It is a sign between Me and the +Israelites forever; for in six days the LORD made +the heavens and the earth, but on the seventh +Moses Receives the Tablets +day He rested and was refreshed.’ +18 + +” + +When the LORD had finished speaking with +Moses on Mount Sinai, He gave him the two tab- +lets of the Testimony, tablets of stone inscribed +The Golden Calf (De. 9:7–29 ; Acts 7:39–43) +by the finger of God. + +32 + +Now when the people saw that Moses +was delayed in coming down from the +mountain, they gathered around Aaron and said, +“Come, make us gods who will go before us. As +for this Moses who brought us up out of the land +of Egypt, we do not know what has happened to +2 +him!” + + b + +So Aaron told them, “Take off the gold earrings +that are on your wives and sons and daughters, +a 7 +and bring them to me.” + +the ark of the covenant + +b 1 + +That is, + +Cited in Acts 7:40 + +Exodus 32:16 | 85 + +3 + +4 + +Then all the people took off their gold earrings +and brought them to Aaron. +He took the gold +from their hands, and with an engraving tool he +fashioned it into a molten calf. And they said, +“These, O Israel, are your gods, who brought you +5 +up out of the land of Egypt!” + +When Aaron saw this, he built an altar before +the calf and proclaimed: “Tomorrow shall be a +6 +feast to the LORD.” + +So the next day they arose, offered burnt +offerings, and presented peace offerings. And the +people sat down to eat and drink and got up to +7 +indulge in revelry. + +c + +8 + +Then the LORD said to Moses, “Go down at once, +for your people, whom you brought up out of the +land of Egypt, have corrupted themselves. +How +quickly they have turned aside from the way that +I commanded them! They have made for them- +selves a molten calf and have bowed down to it. +They have sacrificed to it and said, ‘These, O +Israel, are your gods, who brought you up out of +9 +the land of Egypt.’ + +” + +10 + +The LORD also said to Moses, “I have seen this +people, and they are indeed a stiff-necked peo- +ple. +Now leave Me alone, so that My anger may +burn against them and consume them. Then I will +11 +make you into a great nation.” + +12 + +But Moses sought the favor of the LORD his +God, saying, “O LORD, why does Your anger burn +against Your people, whom You brought out of +the land of Egypt with great power and a mighty +hand? +Why should the Egyptians declare, ‘He +brought them out with evil intent, to kill them in +the mountains and wipe them from the face of +the earth’? Turn from Your fierce anger and +relent from doing harm to Your people. +Re- +member Your servants Abraham, Isaac, and Is- +rael, to whom You swore by Your very self when +You declared, ‘I will make your descendants as +numerous as the stars in the sky, and I will give +your descendants all this land that I have prom- +14 +ised, and it shall be their inheritance forever.’ +” + +13 + +So the LORD relented from the calamity He + +15 +had threatened to bring on His people. + +16 + +Then Moses turned and went down the moun- +tain with the two tablets of the Testimony in his +hands. They were inscribed on both sides, front +and back. +The tablets were the work of God, +and the writing was the writing of God, engraved +on the tablets. +Or + +; cited in 1 Corinthians 10:7 + +to play + +c 6 + + 86 | Exodus 32:17 + +17 + +31 + +When Joshua heard the sound of the people +shouting, he said to Moses, “The sound of war is +18 +in the camp.” + +But Moses replied: + +“It is neither the cry of victory nor the cry of + +19 + +defeat; + +I hear the sound of singing!” + +20 + +As Moses approached the camp and saw the +calf and the dancing, he burned with anger and +threw the tablets out of his hands, shattering +Then he took +them at the base of the mountain. +the calf they had made, burned it in the fire, +ground it to powder, and scattered the powder +over the face of the water. Then he forced the +21 +Israelites to drink it. + +“What did this people do to you,” Moses asked +Aaron, “that you have led them into so great a +22 +sin?” + +23 + +“Do not be enraged, my lord,” Aaron replied. +“You yourself know that the people are intent on +They told me, ‘Make us gods who will go +evil. +before us. As for this Moses who brought us up +out of the land of Egypt, we do not know what has +24 +happened to him!’ + +So I said to them, ‘Whoever has gold, let him +take it off,’ and they gave it to me. And when I +25 +threw it into the fire, out came this calf!” + + a + +26 + +Moses saw that the people were out of control, +for Aaron had let them run wild and become a +laughingstock +So Moses + to their enemies. +stood at the entrance to the camp and said, +“Whoever is for the LORD, come to me.” +27 +And all the Levites gathered around him. + +He told them, “This is what the LORD, the God +of Israel, says: ‘Each of you men is to fasten his +sword to his side, go back and forth through the +camp from gate to gate, and slay his brother, his +28 +friend, and his neighbor.’ + +” + +The Levites did as Moses commanded, and that +29 +day about three thousand of the people fell dead. + + b + +Afterward, Moses said, “Today you have been +ordained + for service to the LORD, since each +man went against his son and his brother; so the +30 +LORD has bestowed a blessing on you this day.” + +The next day Moses said to the people, “You +have committed a great sin. Now I will go up to +the LORD; perhaps I can make atonement for +your sin.” +a 25 + +and become an object of derision + +b 29 + +So Moses returned to the LORD and said, “Oh, +what a great sin these people have committed! +32 +They have made gods of gold for themselves. +Yet now, if You would only forgive their sin. . . . +But if not, please blot me out of the book that You +33 +have written.” + +The LORD replied to Moses, “Whoever has +34 +sinned against Me, I will blot out of My book. +Now go, lead the people to the place I de- +scribed. Behold, My angel shall go before you. But +on the day I settle accounts, I will punish them +35 +for their sin.” + +And the LORD sent a plague on the people +because of what they had done with the calf that +The Command to Leave Sinai (De. 1:1–8) +Aaron had made. + +33 + +2 + +Then the LORD said to Moses, “Leave this +place, you and the people you brought up +out of the land of Egypt, and go to the land that I +promised to Abraham, Isaac, and Jacob when I +And I +said, ‘I will give it to your descendants.’ +will send an angel before you, and I will drive out +3 +the Canaanites, Amorites, Hittites, Perizzites, +Go up to a land flowing +Hivites, and Jebusites. +with milk and honey. But I will not go with you, +because you are a stiff-necked people; otherwise, +4 +I might destroy you on the way.” + +5 + +When the people heard this bad news, they +went into mourning, and no one put on any of his +jewelry. +For the LORD had said to Moses, “Tell +the Israelites, ‘You are a stiff-necked people. If I +should go with you for a single moment, I would +destroy you. Now take off your jewelry, and I will +6 +decide what to do with you.’ + +” + +c + +So the Israelites stripped themselves of their + +The Tent of Meeting +jewelry from Mount Horeb onward. +7 + +8 + +Now Moses used to take the tent and pitch it at +a distance outside the camp. He called it the Tent +of Meeting, and anyone inquiring of the LORD +would go to the Tent of Meeting outside the +Then, whenever Moses went out to the +camp. +tent, all the people would stand at the entrances +to their own tents and watch Moses until he en- +As Moses entered the tent, the +tered the tent. +pillar of cloud would come down and remain at +10 +the entrance, and the LORD would speak with +When all the people saw the pillar of +Moses. + +c 6 + +9 + +have ordained yourselves + +Or + +Or + +That is, from Mount Sinai onward, or pos- + +sibly a mountain in the range containing Mount Sinai + + cloud standing at the entrance to the tent, they +would stand up and worship, each one at the en- +11 +trance to his own tent. + +Thus the LORD would speak to Moses face to +face, as a man speaks to his friend. Then Moses +would return to the camp, but his young assis- +The Promise of God’s Presence +tant Joshua son of Nun would not leave the tent. +12 + +Then Moses said to the LORD, “Look, You have +been telling me, ‘Lead this people up,’ but You +have not let me know whom You will send with +me. Yet You have said, ‘I know you by name, and +Now if in- +you have found favor in My sight.’ +deed I have found favor in Your sight, please let +me know Your ways, that I may know You and +find favor in Your sight. Remember that this na- +14 +tion is Your people.” + +13 + +And the LORD answered, “My Presence will go + +15 +with you, and I will give you rest.” + +16 + +“If Your Presence does not go with us,” Moses +For how +replied, “do not lead us up from here. +then can it be known that Your people and I have +found favor in Your sight, unless You go with us? +How else will we be distinguished from all the +17 +other people on the face of the earth?” + +So the LORD said to Moses, “I will do this very +thing you have asked, for you have found favor in +18 +My sight, and I know you by name.” +19 + +Then Moses said, “Please show me Your glory.” + +“I will cause all My goodness to pass before +you,” the LORD replied, “and I will proclaim My +name—the LORD—in your presence. I will have +mercy on whom I have mercy, and I will have +20 +compassion on whom I have compassion.” + + a + +But He added, “You cannot see My face, for no + +21 +one can see Me and live.” + +22 + +23 + +The LORD continued, “There is a place near Me +and when +where you are to stand upon a rock, +My glory passes by, I will put you in a cleft of the +rock and cover you with My hand until I have +Then I will take My hand away, and +passed by. +you will see My back; but My face must not be +New Stone Tablets (Deuteronomy 10:1–11) +seen.” + +34 + +Then the LORD said to Moses, “Chisel out +two stone tablets like the originals, and I +c 12 +b 7 +a 19 +will write on them the words that were on the +covenant + +to thousands + +Exodus 34:14 | 87 + +2 + +Be ready in the +first tablets, which you broke. +3 +morning, and come up on Mount Sinai to present +yourself before Me on the mountaintop. +No one +may go up with you; in fact, no one may be seen +anywhere on the mountain—not even the flocks +4 +or herds may graze in front of the mountain.” + +So Moses chiseled out two stone tablets like the +originals. He rose early in the morning, and tak- +ing the two stone tablets in his hands, he went up +5 +Mount Sinai as the LORD had commanded him. + +And the LORD descended in a cloud, stood with +6 +him there, and proclaimed His name, the LORD. +Then the LORD passed in front of Moses and + +called out: + +“The LORD, the LORD God, + +is compassionate and gracious, + +slow to anger, + +7 + +abounding in loving devotion and +faithfulness, +b + +maintaining loving devotion to a thousand + +generations, + +forgiving iniquity, transgression, and sin. + +Yet He will by no means leave the guilty + +unpunished; + +He will visit the iniquity of the fathers + +on their children and grandchildren + +to the third and fourth generations.” + +9 + +8 + +Moses immediately bowed down to the ground +“O Lord,” he said, “if I have in- +and worshiped. +deed found favor in Your sight, my Lord, please +go with us. Although this is a stiff-necked people, +forgive our iniquity and sin, and take us as Your +The LORD Renews the Covenant +inheritance.” +(2 Corinthians 3:7–18) + +10 + +And the LORD said, “Behold, I am making a +covenant. Before all your people I will perform +wonders that have never been done in any +nation in all the world. All the people among +whom you live will see the LORD’s work, for it is +11 +an awesome thing that I am doing with you. + + c + +12 + +Observe what I command you this day. I will +drive out before you the Amorites, Canaanites, +Be +Hittites, Perizzites, Hivites, and Jebusites. +careful not to make a treaty + with the inhabitants +13 +of the land you are entering, lest they become a +snare in your midst. +Rather, you must tear +down their altars, smash their sacred stones, and +berit +For you must +chop down their Asherah poles. + +14 + +Cited in Romans 9:15 + +Hebrew + +Forms of the Hebrew + + are translated in most passages as + +. + + 88 | Exodus 34:15 + +not worship any other god, for the LORD, whose +15 +name is Jealous, is a jealous God. + +16 + +Do not make a covenant with the inhabitants +of the land, for when they prostitute themselves +to their gods and sacrifice to them, they will in- +And +vite you, and you will eat their sacrifices. +when you take some of their daughters as brides +for your sons, their daughters will prostitute +themselves to their gods and cause your sons to +17 +do the same. +18 + +You shall make no molten gods for yourselves. + +a + +b + +You are to keep the Feast of Unleavened + For seven days at the appointed time in +Bread. + you are to eat unleavened +the month of Abib, +bread as I commanded you. For in the month of +19 +Abib you came out of Egypt. + +20 + +The first offspring of every womb belongs to +Me, including all the firstborn males among your +You must +livestock, whether cattle or sheep. +redeem the firstborn of a donkey with a lamb; +but if you do not redeem it, you are to break its +neck. You must redeem all the firstborn of your +sons. No one shall appear before Me empty- +21 +handed. + +Six days you shall labor, but on the seventh day +you shall rest; even in the seasons of plowing and + c +22 +harvesting, you must rest. + + d + +And you are to celebrate the Feast of Weeks +with the firstfruits of the wheat harvest, and the +23 + at the turn of the year. +Feast of Ingathering +Three times a year all your males are to appear +For I +before the Lord GOD, the God of Israel. +will drive out the nations before you and enlarge +your borders, and no one will covet your land +when you go up three times a year to appear be- +25 +fore the LORD your God. + +24 + +Do not offer the blood of a sacrifice to Me along +with anything leavened, and do not let any of the +sacrifice from the Passover Feast remain until +26 +morning. + +Bring the best of the firstfruits of your soil to + +the house of the LORD your God. + +You must not cook a young goat in its mother’s +a 18 +milk.” +b 18 Abib + +27 + +The LORD also said to Moses, “Write down +these words, for in accordance with these +words I have made a covenant with you and with +28 +Israel.” + +So Moses was there with the LORD forty days +and forty nights without eating bread or drinking +water. He wrote on the tablets the words of the +29 +covenant—the Ten Commandments. + +e + +And when Moses came down from Mount Sinai +with the two tablets of the Testimony in his +hands, he was unaware that his face had become +Aaron +radiant from speaking with the LORD. +and all the Israelites looked at Moses, and be- +hold, his face was radiant. And they were afraid +31 +to approach him. + +30 + +32 + +But Moses called out to them; so Aaron and all +the leaders of the congregation returned to him, +and Moses spoke to them. +And after this all the +Israelites came near, and Moses commanded +them to do everything that the LORD had told +33 +him on Mount Sinai. + +34 +When Moses had finished speaking with them, +But whenever Moses +he put a veil over his face. +went in before the LORD to speak with Him, he +would remove the veil until he came out. And +when he came out, he would tell the Israelites +and the Israel- +what he had been commanded, +ites would see that the face of Moses was radiant. +So Moses would put the veil back over his face +The Sabbath +until he went in to speak with the LORD. + +35 + +35 + +2 + +Then Moses assembled the whole con- +gregation of Israel and said to them, +“These are the things that the LORD has com- +For six days work may be +manded you to do: +done, but the seventh day shall be your holy day, +a Sabbath of complete rest to the LORD. Whoever +3 +does any work on that day must be put to death. +Do not light a fire in any of your dwellings on +Offerings for the Tabernacle (Exodus 25:1–9) +the Sabbath day.” +4 + +Moses also told the whole congregation of Is- +5 +rael, “This is what the LORD has commanded: +Take from among you an offering to the LORD. +Let everyone whose heart is willing bring an of- +fering to the LORD: + +That is, the seven-day period after the Passover during which no leaven may be eaten; see Exodus 12:14-20. + +the Feast of + +c 22 + +Harvest +twice in this verse. + + was the first month of the ancient Hebrew lunar calendar, usually occurring within the months of March and April; +That is, Shavuot, the late spring feast of pilgrimage to Jerusalem; it is also known as +Shelters +the Feast of Tabernacles + +the Feast of Pentecost + +the Ten Words + +Booths + +d 22 + +e 28 + + (see Exodus 23:16) or + +Jerusalem; it is later called + + (see Acts 2:1). + +That is, Sukkot, the autumn feast of pilgrimage to + + (or + + or + +). + +Hebrew + + Exodus 35:35 | 89 + +6 +gold, silver, and bronze; + +blue, purple, and scarlet yarn; + +7 +fine linen and goat hair; + + a + +ram skins dyed red and fine leather; + +8 +acacia wood; + +olive oil for the light; + +spices for the anointing oil and for the +9 +fragrant incense; + +The Skilled Craftsmen + +and onyx stones and gemstones to be +mounted on the ephod and breastpiece. + +10 + +Let every skilled craftsman among you come +and make everything that the LORD has com- +manded: + +11 + +the tabernacle with its tent and covering, + +its clasps and frames, its crossbars, posts, +12 +and bases; + +the ark with its poles and mercy seat, and + +13 +the veil to shield it; + +the table with its poles, all its utensils, + +14 +and the Bread of the Presence; + +the lampstand for light with its + +15 +accessories and lamps and oil for the light; + +the altar of incense with its poles; + +the anointing oil and fragrant incense; + +the curtain for the doorway at the entrance +16 +to the tabernacle; + +prompted him came and brought an offering to +the LORD for the work on the Tent of Meeting, for +22 +all its services, and for the holy garments. + +So all who had willing hearts, both men and +women, came and brought brooches and ear- +rings, rings and necklaces, and all kinds of gold +jewelry. And they all presented their gold as a +23 +wave offering to the LORD. + +24 + +Everyone who had blue, purple, or scarlet +yarn, or fine linen, goat hair, ram skins dyed red, +or articles of fine leather, brought them. +And +all who could present an offering of silver or +bronze brought it as a contribution to the LORD. +Also, everyone who had acacia wood for any part +25 +of the service brought it. + +26 + +Every skilled woman spun with her hands and +brought what she had spun: blue, purple, or scar- +let yarn, or fine linen. +And all the skilled +women whose hearts were stirred spun the goat +27 +hair. + +The leaders brought onyx stones and gem- +28 +stones to mount on the ephod and breastpiece, +as well as spices and olive oil for the light, for + +29 +the anointing oil, and for the fragrant incense. + +So all the men and women of the Israelites +whose hearts prompted them brought a freewill +offering to the LORD for all the work that the +LORD through Moses had commanded them to +do. Bezalel and Oholiab +(Exodus 31:1–11) + +the altar of burnt offering with its bronze + +30 + +grate, its poles, and all its utensils; +17 +the basin with its stand; + +the curtains of the courtyard with its + +posts and bases, and the curtain for the gate +18 +of the courtyard; + +the tent pegs for the tabernacle and for + +19 +the courtyard, along with their ropes; + +and the woven garments for ministering +in the holy place—both the holy garments +for Aaron the priest and the garments for +his sons to serve as priests.” + +The People Offer Gifts + +20 + +Then the whole congregation of Israel with- +And every- +drew from the presence of Moses. +a 7 +one whose heart stirred him and whose spirit + +21 + +31 + +Then Moses said to the Israelites, “See, the +LORD has called by name Bezalel son of Uri, the +And He has +son of Hur, of the tribe of Judah. +filled him with the Spirit of God, with skill, ability, +32 +and knowledge in all kinds of craftsmanship, +to design artistic works in gold, silver, and +to cut gemstones for settings, and to +bronze, +carve wood, so that he may be a master of every +34 +artistic craft. + +33 + +35 + +And the LORD has given both him and Oholiab +son of Ahisamach, of the tribe of Dan, the ability +to teach others. +He has filled them with skill to +do all kinds of work as engravers, designers, em- +broiderers in blue, purple, and scarlet yarn and +fine linen, and as weavers—as artistic designers +of every kind of craft. + +Possibly the hides of large aquatic mammals; also in verse 23 + + 90 | Exodus 36:1 + +The People Bring More than Enough + +36 + +“So Bezalel, Oholiab, and every skilled +person are to carry out everything com- +manded by the LORD, who has given them skill +and ability to know how to perform all the work +2 +of constructing the sanctuary.” + +Then Moses summoned Bezalel, Oholiab, and +every skilled person whom the LORD had +3 +gifted—everyone whose heart stirred him to +They received from Mo- +come and do the work. +ses all the contributions that the Israelites had +brought to carry out the service of constructing +the sanctuary. + +4 + +Meanwhile, the people continued to bring +so +freewill offerings morning after morning, +5 +that all the skilled craftsmen who were doing all +and +the work on the sanctuary left their work +said to Moses, “The people are bringing more +than enough for doing the work the LORD has +6 +commanded us to do.” + +After Moses had given an order, they sent a +proclamation throughout the camp: “No man or +woman should make anything else as an +offering for the sanctuary.” So the people were +since what they +restrained from bringing more, +already had was more than enough to perform all +The Ten Curtains for the Tabernacle +the work. +(Exodus 26:1–6) + +7 + +8 + +9 + +All the skilled craftsmen among the workmen +made the ten curtains for the tabernacle. They +were made of finely spun linen, as well as blue, +purple, and scarlet yarn, with cherubim skillfully +Each curtain was twenty- +worked into them. +eight cubits long and four cubits wide; + all the +And he joined five +curtains were the same size. +of the curtains together, and the other five he +11 +joined as well. + +10 + + a + +12 + +He made loops of blue material on the edge of +the end curtain in the first set, and also on the +He made fifty +end curtain in the second set. +loops on one curtain and fifty loops on the end +curtain of the second set, so that the loops lined +He also made fifty +up opposite one another. +gold clasps to join the curtains together, so that +the tabernacle was a unit. +a 9 +b 15 +c 19 + +d 21 + +13 + +The Eleven Curtains of Goat Hair +(Exodus 26:7–14) + +14 + +He then made curtains of goat hair for the tent +15 +over the tabernacle—eleven curtains in all. +b +Each of the eleven curtains was the same +16 +size—thirty cubits long and four cubits wide. + +17 + +He joined five of the curtains into one set and +He made fifty loops +the other six into another. +along the edge of the end curtain in the first set, +18 +and fifty loops along the edge of the correspond- +He also made fifty +ing curtain in the second set. +19 +bronze clasps to join the tent together as a unit. + +c + +Additionally, he made for the tent a covering of +ram skins dyed red, and over that a covering of +The Frames and Bases (Exodus 26:15–30) +fine leather. +20 + +21 + +d + + e + +Next, he constructed upright frames of acacia +Each frame was ten +wood for the tabernacle. +Two +cubits long and a cubit and a half wide. +tenons + were connected to each other for each +frame. He made all the frames of the tabernacle +23 +in this way. + +22 + +24 + +He constructed twenty frames for the south +side of the tabernacle, +with forty silver +bases to put under the twenty frames—two ba- +25 +ses for each frame, one under each tenon. + +26 + +For the second side of the tabernacle, the north +and forty silver + +side, he made twenty frames +27 +bases—two bases under each frame. + +28 + +29 + +He made six frames for the rear of the taber- +and two frames for the +nacle, the west side, +coupled +two back corners of the tabernacle, +together from bottom to top and fitted into a +30 +single ring. He made both corners in this way. +So there were eight frames and sixteen silver + +31 +bases—two under each frame. + +32 + +He also made five crossbars of acacia wood for +five +the frames on one side of the tabernacle, +for those on the other side, and five for those on +33 +the rear side of the tabernacle, to the west. + +34 + +He made the central crossbar to run through +the center of the frames, from one end to the +And he overlaid the frames with gold +other. +and made gold rings to hold the crossbars. He +also overlaid the crossbars with gold. + +Each of the ten curtains was approximately 42 feet long and 6 feet wide (12.8 meters long and 1.8 meters wide). + +Each of the eleven curtains was approximately 45 feet long and 6 feet wide (13.7 meters long and 1.8 meters wide). +e 22 +Possibly the hides of large aquatic mammals + +Each frame was approximately 15 feet long and 2.25 feet wide +That is, projecting pieces of wood made for insertion into another + +(4.6 meters long and 68.6 centimeters wide). +piece; similarly in verse 24. + + The Veil (Exodus 26:31–35) + +13 + +Exodus 37:29 | 91 + +35 + +Next, he made the veil of blue, purple, and scar- +let yarn, and finely spun linen, with cherubim +36 +skillfully worked into it. + +He also made four posts of acacia wood for it +and overlaid them with gold, along with gold +The Curtain for the Entrance (Ex. 26:36–37) +hooks; and he cast four silver bases for the posts. +37 + +For the entrance to the tent, he made a curtain +38 +embroidered with blue, purple, and scarlet yarn, +together with five posts +and finely spun linen, +and their hooks. + +He overlaid the tops of the posts and their bands +Constructing the Ark (Exodus 25:10–16) +with gold, and their five bases were bronze. + +37 + +Bezalel went on to construct the ark of +a +acacia wood, two and a half cubits long, a + +2 +cubit and a half wide, and a cubit and a half high. + +3 + +4 + +He overlaid it with pure gold, both inside and +And he +out, and made a gold molding around it. +cast four gold rings for its four feet, two rings on +Then he made +one side and two on the other. +poles of acacia wood and overlaid them with +gold. +He inserted the poles into the rings on the +The Mercy Seat (Exodus 25:17–22) +sides of the ark in order to carry it. +6 + +5 + +b + +8 + +7 + +He constructed a mercy seat of pure gold, two +and a half cubits long and a cubit and a half +wide. +He made two cherubim of hammered +one cherub +gold at the ends of the mercy seat, +9 +on one end and one on the other, all made from +one piece of gold. +And the cherubim had wings +that spread upward, overshadowing the mercy +seat. The cherubim faced each other, looking to- +The Table of Showbread +ward the mercy seat. +(Exodus 25:23–30 ; Leviticus 24:5–9) + +10 + +c + +11 + +He also made the table of acacia wood two cu- +bits long, a cubit wide, and a cubit and a half +12 +high. +He overlaid it with pure gold and made +a gold molding around it. +And he made a rim +around it a handbreadth wide + and put a gold +a 1 +molding on the rim. + + d + +b 6 + +He cast four gold rings for the table and fas- +14 +tened them to the four corners at its four legs. +The rings were placed close to the rim, to serve +15 +as holders for the poles used to carry the table. +He made the poles of acacia wood for carrying + +16 +the table and overlaid them with gold. + +He also made the utensils for the table out of +pure gold: its plates and dishes, as well as its +The Lampstand (Ex. 25:31–40 ; Numbers 8:1–4) +bowls and pitchers for pouring drink offerings. +17 + +18 + +19 + +Then he made the lampstand out of pure ham- +mered gold, all of one piece: its base and shaft, its +Six branches ex- +cups, and its buds and petals. +tended from the sides, three on one side and +There were three cups +three on the other. +shaped like almond blossoms on the first branch, +each with buds and petals, three on the next +branch, and the same for all six branches that ex- +20 +tended from the lampstand. + +21 + +And on the lampstand were four cups shaped +A +like almond blossoms with buds and petals. +bud was under the first pair of branches that ex- +tended from the lampstand, a bud under the sec- +The +ond pair, and a bud under the third pair. +buds and branches were all of one piece with the +23 +lampstand, hammered out of pure gold. + +22 + +24 + +e + +He also made its seven lamps, its wick trim- +mers, and trays of pure gold. +He made the +lampstand and all its utensils from a talent of +The Altar of Incense (Exodus 30:1–10) +pure gold. +25 + +f + +He made the altar of incense out of acacia +wood. It was square, a cubit long, a cubit wide, +26 +and two cubits high. + Its horns were of one piece. +And he overlaid with pure gold the top and all +the sides and horns. Then he made a molding of +27 +gold around it. + +He made two gold rings below the molding on +28 +opposite sides to hold the poles used to carry it. +And he made the poles of acacia wood and + +29 +overlaid them with gold. + +He also made the sacred anointing oil and the + +pure, fragrant incense, the work of a perfumer. + +c 10 + +The ark was approximately 3.75 feet long, 2.25 feet wide, and 2.25 feet high (114.3 centimeters long, 68.6 centimeters +The mercy seat was approximately 3.75 feet long and 2.25 feet wide (114.3 centi- +The table was approximately 3 feet long, 1.5 feet wide, and 2.25 feet high + +wide, and 68.6 centimeters high). +meters long and 68.6 centimeters wide). +(91.4 centimeters long, 45.7 centimeters wide, and 68.6 centimeters high). +inches or 7.4 centimeters. +proximately 1.5 feet in length and width, and 3 feet high (45.7 centimeters in length and width, and 91.4 centimeters +high). + + is approximately 75.4 pounds or 34.2 kilograms of gold. + + is approximately 2.9 + +d 12 A handbreadth + +The altar was ap- + +e 24 A talent + +f 25 + + 92 | Exodus 38:1 + +The Bronze Altar (Exodus 27:1–8) + + a + +38 + +b + +2 + +Bezalel constructed + the altar of burnt +offering from acacia wood. It was square, +five cubits long, five cubits wide, and three cubits +He made a horn at each of its four cor- +high. +ners, so that the horns and altar were of one +3 +piece, and he overlaid the altar with bronze. + +4 + +He made all the altar’s utensils of bronze—its +pots, shovels, sprinkling bowls, meat forks, and +He made a grate of bronze mesh for +firepans. +the altar under its ledge, halfway up from the +5 +bottom. + +6 + +7 + +At the four corners of the bronze grate he cast +And he made +four rings as holders for the poles. +the poles of acacia wood and overlaid them with +bronze. +Then he inserted the poles into the +rings on the sides of the altar for carrying it. He +The Bronze Basin (Exodus 30:17–21) +made the altar with boards so that it was hollow. +8 + +Next he made the bronze basin and its stand +from the mirrors of the women who served at the +The Courtyard (Exodus 27:9–19) +entrance to the Tent of Meeting. +9 + + c +Then he constructed the courtyard. The south + +10 + +11 + +side of the courtyard was a hundred cubits long +and had curtains of finely spun linen, +with +twenty posts and twenty bronze bases, and with +The north +silver hooks and bands on the posts. +side was also a hundred cubits long, with twenty +posts and twenty bronze bases. The hooks and +The west side +bands of the posts were silver. + and had curtains, with ten +was fifty cubits long +13 +posts and ten bases. The hooks and bands of the +And the east side, toward the +posts were silver. +14 +sunrise, was also fifty cubits long. + +12 + + d + +e + +15 + +The curtains on one side of the entrance were +fifteen cubits long, + with three posts and three +And the curtains on the other side were +bases. +16 +also fifteen cubits long, with three posts and +All the curtains around the +three bases as well. +The +courtyard were made of finely spun linen. +bases for the posts were bronze, the hooks and +bands were silver, and the plating for the tops of +a 1 + +He constructed + +b 1 + +17 + +the posts was silver. So all the posts of the court- +18 +yard were banded with silver. + + f + +g + +19 + +The curtain for the entrance to the courtyard +was embroidered with blue, purple, and scarlet +yarn, and finely spun linen. It was twenty cubits + and, like the curtains of the courtyard, five +long +with four posts and four bronze +cubits high, +bases. Their hooks were silver, as well as the +All the tent +bands and the plating of their tops. +pegs for the tabernacle and for the surrounding +An Inventory of Materials +courtyard were bronze. +(Ezra 2:68–70 ; Nehemiah 7:70–73) + +20 + +21 + +22 + +23 + +This is the inventory for the tabernacle, the +tabernacle of the Testimony, as recorded at Mo- +ses’ command by the Levites under the direction +Bezalel son +of Ithamar son of Aaron the priest. +of Uri, the son of Hur, of the tribe of Judah, made +everything that the LORD had commanded Mo- +With him was Oholiab son of Ahisamach, +ses. +of the tribe of Dan, an engraver, designer, and +embroiderer in blue, purple, and scarlet yarn and +24 +fine linen. + +h + +All the gold from the wave offering used for the +work on the sanctuary totaled 29 talents and 730 +25 +shekels, + + according to the sanctuary shekel. + +The silver from those numbered among the +i +26 +congregation totaled 100 talents and 1,775 shek- +a + according to the sanctuary shekel— +els, + according +beka per person, that is, half a shekel, +to the sanctuary shekel, from everyone twenty +years of age or older who had crossed over to be +27 +numbered, a total of 603,550 men. + + k + +j + +The hundred talents of silver + + were used to +cast the bases of the sanctuary and the bases of +the veil—100 bases from the 100 talents, one tal- +28 +ent per base. + + l + +With the 1,775 shekels of silver + + he made the +hooks for the posts, overlaid their tops, and sup- +29 +plied bands for them. + +m +The bronze from the wave offering totaled 70 +He used it to make +talents and 2,400 shekels. +the bases for the entrance to the Tent of Meeting, + +30 + +Literally + +g 18 5 cubits + +length and width, and 1.4 meters high). +proximately 75 feet or 22.9 meters. +mately 30 feet or 9.1 meters. +j 26 A beka +was approximately 1.1 tons or 1 metric ton. +ric tons. +m 29 +tons or 3.42 metric tons of silver. + +c 9 100 cubits + +d 12 50 cubits + +e 14 15 cubits + +The altar was approximately 7.5 feet in length and width, and 4.5 feet high (2.3 meters in + is approximately 150 feet or 45.7 meters. + +f 18 20 cubits + +i 25 + + is approximately 22.5 feet or 6.9 meters. + + is approximately 7.5 feet or 2.3 meters. + +k 27 100 talents + +h 24 + + is ap- + is approxi- +The total weight of the gold + + is half a shekel, or approximately 0.2 ounces or 5.7 grams. + + is approximately 3.77 + +l 28 1,775 shekels + +The total weight of the silver was approximately 3.79 tons or 3.44 met- + + is approximately 44.6 pounds or 20.2 kilograms of silver. + +The total weight of the bronze was approximately 2.67 tons or 2.42 metric tons. + + 31 +the bronze altar and its bronze grating, all the +the bases for the sur- +utensils for the altar, +rounding courtyard and its gate, and all the tent +pegs for the tabernacle and its surrounding +The Ephod (Exodus 28:6–14) +courtyard. + +39 + +From the blue, purple, and scarlet yarn +they made specially woven garments for +ministry in the sanctuary, as well as the holy gar- +ments for Aaron, just as the LORD had com- + a +2 +manded Moses. + +3 + +4 + +Bezalel made + + the ephod of finely spun linen +embroidered with gold, and with blue, purple, +They hammered out thin +and scarlet yarn. +sheets of gold and cut threads from them to +interweave with the blue, purple, and scarlet +yarn, and fine linen—the work of a skilled crafts- +man. +They made shoulder pieces for the ephod, +which were attached at two of its corners, so it +could be fastened. +And the skillfully woven +waistband of the ephod was of one piece with the +ephod, of the same workmanship—with gold, +with blue, purple, and scarlet yarn, and with +finely spun linen, just as the LORD had com- +6 +manded Moses. + +5 + +7 + +They mounted the onyx stones in gold filigree +settings, engraved like a seal with the names of +Then they fastened them on +the sons of Israel. +the shoulder pieces of the ephod as memorial +stones for the sons of Israel, as the LORD had +The Breastpiece (Exodus 28:15–30) +commanded Moses. +8 + +He made the breastpiece with the same work- +manship as the ephod, with gold, with blue, pur- +9 +ple, and scarlet yarn, and with finely spun linen. +It was square when folded over double, a span + +b + +10 +long and a span wide. + + c + +And they mounted on it four rows of gem- + +stones: + +The first row had a ruby, a topaz, and an +11 +emerald; + +the second row had a turquoise, a + +12 +sapphire, and a diamond; + +the third row had a jacinth, an agate, and + +13 +an amethyst; + +and the fourth row had a beryl, an onyx, + +a 2 + +He made + + b 9 + +and a jasper. +Literally + +c 10 + +length and width. +Hebrew word is uncertain; possibly + +. + +Exodus 39:29 | 93 + +These stones were mounted in gold filigree set- +14 +tings. + +The twelve stones corresponded to the names +of the sons of Israel. Each stone was engraved +like a seal with the name of one of the twelve +15 +tribes. + +16 +For the breastpiece they made braided chains +They also made two +like cords of pure gold. +gold filigree settings and two gold rings, and fas- +tened the two rings to the two corners of the +Then they fastened the two gold +breastpiece. +chains to the two gold rings at the corners of the +and they fastened the other ends +breastpiece, +of the two chains to the two filigree settings, at- +taching them to the shoulder pieces of the ephod +19 +at the front. + +17 + +18 + +They made two more gold rings and attached +them to the other two corners of the breastpiece, +20 +on the inside edge next to the ephod. + +21 + +They made two additional gold rings and +attached them to the bottom of the two shoulder +pieces of the ephod, on its front, near the seam +Then they tied +just above its woven waistband. +the rings of the breastpiece to the rings of the +ephod with a cord of blue yarn, so that the +breastpiece was above the waistband of the +ephod and would not swing out from the ephod, +Additional Priestly Garments +just as the LORD had commanded Moses. +(Exodus 28:31–43) + +22 + +23 + +d + +They made the robe of the ephod entirely +with an +of blue cloth, the work of a weaver, +opening in the center of the robe like that of a +garment, + with a collar around the opening so +24 +that it would not tear. + +25 + +They made pomegranates of blue, purple, and +scarlet yarn and finely spun linen on the lower +They also made bells of pure +hem of the robe. +26 +gold and attached them around the hem between +alternating the bells and +the pomegranates, +pomegranates around the lower hem of the robe +to be worn for ministry, just as the LORD had +27 +commanded Moses. + +28 + +For Aaron and his sons they made tunics of +as well as the +fine linen, the work of a weaver, +turban of fine linen, the ornate headbands and +and the +undergarments of finely spun linen, + +29 + +d 23 + +The breastpiece, when folded over, was approximately 9 inches or 22.9 centimeters in both +The meaning of the + +The precise identification of some of these gemstones is uncertain. + +a coat of mail + + 94 | Exodus 39:30 + +sash of finely spun linen, embroidered with blue, +purple, and scarlet yarn, just as the LORD had +30 +commanded Moses. + +They also made the plate of the holy crown of +pure gold, and they engraved on it, like an in- +scription on a seal: +31 + + a + +HOLY TO THE LORD. + +Then they fastened to it a blue cord to mount +it on the turban, just as the LORD had com- +Moses Approves the Work +manded Moses. +32 + +So all the work for the tabernacle, the Tent of +Meeting, was completed. The Israelites did eve- +33 +rything just as the LORD had commanded Moses. + +Then they brought the tabernacle to Moses: + +the tent with all its furnishings, its clasps, +its frames, its crossbars, and its posts and +34 +bases; + +b + +the covering of ram skins dyed red, the + +covering of fine leather, +35 +covering; + + and the veil of the + + c + +the ark of the Testimony + +36 +and the mercy seat; + + with its poles + +the table with all its utensils and the + +37 +Bread of the Presence; + +the pure gold lampstand with its row of +lamps and all its utensils, as well as the oil +38 +for the light; + +the gold altar, the anointing oil, the +fragrant incense, and the curtain for the +39 +entrance to the tent; + +the bronze altar with its bronze grating, + +its poles, and all its utensils; +40 +the basin with its stand; + +the curtains of the courtyard with its + +posts and bases; + +the curtain for the gate of the courtyard, its +ropes and tent pegs, and all the equipment +for the service of the tabernacle, the Tent of +41 +Meeting; + +and the woven garments for ministering +in the sanctuary, both the holy garments for +Aaron the priest and the garments for his +sons to serve as priests. +b 34 +the LORD +the ark of the covenant + +a 30 +d 3 + +40 + +42 + +43 + +The Israelites had done all the work just as the +And Moses in- +LORD had commanded Moses. +spected all the work and saw that they had ac- +complished it just as the LORD had commanded. +Setting Up the Tabernacle +So Moses blessed them. +(Acts 7:44–47 ; Hebrews 9:1–10) + +2 + + d + +4 + +“On the +Then the LORD said to Moses, +3 +first day of the first month you are to set +Put the +up the tabernacle, the Tent of Meeting. +ark of the Testimony + in it and screen off the ark +Then bring in the table and set out +with the veil. +its arrangement; bring in the lampstand as well, +5 +and set up its lamps. + +Place the gold altar of incense in front of the ark +6 +of the Testimony, and hang the curtain at the en- +Place the altar of burnt +trance to the tabernacle. +7 +offering in front of the entrance to the tabernacle, +And place the basin be- +the Tent of Meeting. +tween the Tent of Meeting and the altar, and put +8 +water in it. + +Set up the surrounding courtyard and hang the + +9 +curtain for the entrance to the courtyard. + +10 + +Take the anointing oil and anoint the tabernacle +and everything in it; consecrate it along with all +Anoint the +its furnishings, and it shall be holy. +altar of burnt offering and all its utensils; conse- +Anoint +crate the altar, and it shall be most holy. +12 +the basin and its stand and consecrate them. + +11 + +13 + +14 + +Then bring Aaron and his sons to the entrance +to the Tent of Meeting and wash them with wa- +And you are to clothe Aaron with the holy +ter. +garments, anoint him, and consecrate him, so +Bring his sons +that he may serve Me as a priest. +Anoint +forward and clothe them with tunics. +them just as you anointed their father, so that +they may also serve Me as priests. Their anoint- +ing will qualify them for a permanent priesthood +16 +throughout their generations.” + +15 + +17 + +Moses did everything just as the LORD had +So the tabernacle was set up +commanded him. +on the first day of the first month of the second +18 +year. + +19 + +When Moses set up the tabernacle, he laid its +bases, positioned its frames, inserted its cross- +Then he spread the +bars, and set up its posts. +tent over the tabernacle and put the covering +over the tent, just as the LORD had commanded +him. + +the ark of the covenant + +c 35 + +That is, + +That is, + +Possibly the hides of large aquatic mammals + +That is, + +; also in verses 5 and 21 + + 20 + +31 + +Exodus 40:38 | 95 + +32 + +21 + +Moses took the Testimony and placed it in the +ark, attaching the poles to the ark; and he set +Then he brought +the mercy seat atop the ark. +the ark into the tabernacle, put up the veil for the +screen, and shielded off the ark of the Testimony, +22 +just as the LORD had commanded him. + +23 + +Moses placed the table in the Tent of Meeting +on the north side of the tabernacle, outside the +veil. +He arranged the bread on it before the +24 +LORD, just as the LORD had commanded him. + +and from it Moses, Aaron, and his sons washed +their hands and feet. +They washed whenever +they entered the Tent of Meeting or approached +the altar, just as the LORD had commanded +33 +Moses. + +And Moses set up the courtyard around the +tabernacle and the altar, and he hung the curtain +for the entrance to the courtyard. So Moses fin- +The Cloud and the Glory +ished the work. +(Numbers 9:15–23) + +25 + +He also placed the lampstand in the Tent of +Meeting opposite the table on the south side of +the tabernacle +and set up the lamps before the +26 +LORD, just as the LORD had commanded him. + +27 + +29 + +Moses placed the gold altar in the Tent of +Meeting, in front of the veil, +and he burned fra- +28 +grant incense on it, just as the LORD had com- +manded him. +Then he put up the curtain at the +entrance to the tabernacle. +He placed the altar +of burnt offering near the entrance to the taber- +nacle, the Tent of Meeting, and offered on it the +burnt offering and the grain offering, just as the +30 +LORD had commanded him. + +He placed the basin between the Tent of Meet- +ing and the altar and put water in it for washing; + +34 + +Then the cloud covered the Tent of Meeting, +35 +and the glory of the LORD filled the tabernacle. +Moses was unable to enter the Tent of Meeting +because the cloud had settled on it, and the glory +36 +of the LORD filled the tabernacle. + +37 + +Whenever the cloud was lifted from above the +tabernacle, the Israelites would set out through +If the cloud was +all the stages of their journey. +38 +not lifted, they would not set out until the day it +For the cloud of the LORD was +was taken up. +over the tabernacle by day, and fire was in the +cloud by night, in the sight of all the house of Is- +rael through all their journeys. + + Leviticus + +Laws for Burnt Offerings (Leviticus 6:8–13) + +15 + +1 + +2 + +Then the LORD called to Moses and spoke to +him from the Tent of Meeting, saying, +“Speak to the Israelites and tell them: When any +of you brings an offering to the LORD, you may +bring as your offering an animal from the herd or +3 +the flock. + +If his offering is a burnt offering from the herd, +he is to present an unblemished male. He must +bring it to the entrance to the Tent of Meeting for +its acceptance before the LORD. +He is to lay his +hand on the head of the burnt offering, so it can +be accepted on his behalf to make atonement for +5 +him. + +4 + +And he shall slaughter the young bull before the +LORD, and Aaron’s sons the priests are to pre- +sent the blood and splatter it on all sides of the +6 +altar at the entrance to the Tent of Meeting. +Next, he is to skin the burnt offering and cut it + +7 +into pieces. + +8 + +The sons of Aaron the priest shall put a fire on +the altar and arrange wood on the fire. +Then Aa- +ron’s sons the priests are to arrange the pieces, +9 +including the head and the fat, atop the burning +wood on the altar. +The entrails and legs must be +washed with water, and the priest shall burn all +of it on the altar as a burnt offering, a food offer- +10 +ing, a pleasing aroma to the LORD. + +11 + +If, however, one’s offering is a burnt offering +from the flock—from the sheep or goats—he is +to present an unblemished male. +He shall +slaughter it on the north side of the altar before +the LORD, and Aaron’s sons the priests are to +12 +splatter its blood against the altar on all sides. +He is to cut the animal into pieces, and the +priest shall arrange them, including the head and +13 +fat, atop the burning wood that is on the altar. +The entrails and legs must be washed with wa- +ter, and the priest shall present all of it and burn +it on the altar; it is a burnt offering, a food offer- +14 +ing, a pleasing aroma to the LORD. + +a young pigeon. +Then the priest shall bring it +to the altar, twist off its head, and burn it on the +16 +altar; its blood should be drained out on the side + a +of the altar. +And he is to remove the crop with +17 +its contents + and throw it to the east side of the +He shall tear it +altar, in the place for ashes. +open by its wings, without dividing the bird com- +pletely. And the priest is to burn it on the altar +atop the burning wood. It is a burnt offering, a +Laws for Grain Offerings (Leviticus 6:14–23) +food offering, a pleasing aroma to the LORD. + +2 + +2 + +“When anyone brings a grain offering to the +LORD, his offering must consist of fine flour. +He is to pour olive oil on it, put frankincense on +it, +and bring it to Aaron’s sons the priests. The +priest shall take a handful of the flour and oil, to- +gether with all the frankincense, and burn this as +a memorial portion on the altar, a food offering, +The remainder of +a pleasing aroma to the LORD. +the grain offering shall belong to Aaron and his +sons; it is a most holy part of the food offerings +4 +to the LORD. + +3 + +Now if you bring an offering of grain baked in +an oven, it must consist of fine flour, either un- +leavened cakes mixed with oil or unleavened +5 +wafers coated with oil. + +b + +If your offering is a grain offering prepared on a +6 + it must be unleavened bread made of +Crumble it and pour oil + +griddle, +fine flour mixed with oil. +7 +on it; it is a grain offering. + +c + +If your offering is a grain offering cooked in a + +8 +pan, + + it must consist of fine flour with oil. + +9 + +When you bring to the LORD the grain offering +made in any of these ways, it is to be presented +The +to the priest, and he shall take it to the altar. +priest is to remove the memorial portion from +the grain offering and burn it on the altar as a +10 +food offering, a pleasing aroma to the LORD. +But the remainder of the grain offering shall +belong to Aaron and his sons; it is a most holy +11 +part of the food offerings to the LORD. + +If, instead, one’s offering to the LORD is a burnt +b 5 +a 16 +offering of birds, he is to present a turtledove or + +the crop and feathers + +No grain offering that you present to the LORD +may be made with leaven, for you are not to burn + +c 7 + +Or + +That is, a shallow pan for baking or frying + +That is, a deep pan or stew pan + + 12 + +13 + +any leaven or honey as a food offering to the +LORD. +You may bring them to the LORD as an +offering of firstfruits, but they must not go up on +the altar as a pleasing aroma. +And you shall +season each of your grain offerings with salt. You +must not leave the salt of the covenant of your +God out of your grain offering; you are to add salt +14 +to each of your offerings. + +15 + +If you bring a grain offering of firstfruits to the +LORD, you shall offer crushed heads of new grain +And you are to put oil and +roasted on the fire. +The +frankincense on it; it is a grain offering. +priest shall then burn the memorial portion of +the crushed grain and the oil, together with all its +Laws for Peace Offerings (Leviticus 7:11–21) +frankincense, as a food offering to the LORD. + +16 + +3 + +2 + +“If one’s offering is a peace offering and he +offers an animal from the herd, whether +male or female, he must present it without blem- +He is to lay his hand on the +ish before the LORD. +head of the offering and slaughter it at the en- +trance to the Tent of Meeting. Then Aaron’s sons +the priests shall splatter the blood on all sides of +3 +the altar. + +4 + +5 + +From the peace offering he is to bring a food +offering to the LORD: the fat that covers the en- +trails, all the fat that is on them, +both kidneys +with the fat on them near the loins, and the lobe +of the liver, which he is to remove with the kid- +neys. +Then Aaron’s sons are to burn it on the +altar atop the burnt offering that is on the burn- +ing wood, as a food offering, a pleasing aroma to +6 +the LORD. + +If, however, one’s peace offering to the LORD is +from the flock, he must present a male or female +7 +without blemish. + +8 + +If he is presenting a lamb for his offering, he +must present it before the LORD. +He is to lay his +hand on the head of his offering and slaughter it +in front of the Tent of Meeting. Then Aaron’s sons +9 +shall splatter its blood on all sides of the altar. + +And from the peace offering he shall bring a +food offering to the LORD consisting of its fat: the +entire fat tail cut off close to the backbone, the fat +10 +that covers the entrails, all the fat that is on them, +both kidneys with the fat on them near the +11 +loins, and the lobe of the liver, which he is to re- +move with the kidneys. +Then the priest is to +burn them on the altar as food, a food offering to +a 3 +the LORD. + +purification offering + +Or + +; here and throughout Leviticus + +4 + +Leviticus 4:12 | 97 + +12 + +13 + +If one’s offering is a goat, he is to present it be- +He must lay his hand on its +fore the LORD. +head and slaughter it in front of the Tent of Meet- +ing. Then Aaron’s sons shall splatter its blood on +14 +all sides of the altar. + +16 + +15 + +And from his offering he shall present a food +offering to the LORD: the fat that covers the en- +both kidneys +trails, all the fat that is on them, +with the fat on them near the loins, and the lobe +of the liver, which he is to remove with the kid- +Then the priest is to burn the food on the +neys. +altar as a food offering, a pleasing aroma. All the +17 +fat is the LORD’s. + +This is a permanent statute for the generations +to come, wherever you live: You must not eat any +Laws for Sin Offerings (Lev. 5:1–13 ; 6:24–30) +fat or any blood.” + +2 + +Then the LORD said to Moses, +“Tell the Is- +raelites to do as follows with one who sins +unintentionally against any of the LORD’s com- +3 +mandments and does what is forbidden by them: + + a + +7 + +If the anointed priest sins, bringing guilt on the +people, he must bring to the LORD a young bull +4 +without blemish as a sin offering + for the sin he +has committed. +He must bring the bull to the en- +trance to the Tent of Meeting before the LORD, +5 +lay his hand on the bull’s head, and slaughter it +before the LORD. +Then the anointed priest shall +6 +take some of the bull’s blood and bring it into the +Tent of Meeting. +The priest is to dip his finger in +the blood and sprinkle some of it seven times be- +fore the LORD, in front of the veil of the sanctu- +ary. +The priest must then put some of the blood +on the horns of the altar of fragrant incense that +is before the LORD in the Tent of Meeting. And he +is to pour out the rest of the bull’s blood at the +8 +base of the altar of burnt offering at the entrance +to the Tent of Meeting. +Then he shall remove all +the fat from the bull of the sin offering—the fat +9 +that covers the entrails, all the fat that is on them, +both kidneys with the fat on them near the +loins, and the lobe of the liver, which he is to re- +move with the kidneys— +just as the fat is +removed from the ox of the peace offering. Then +the priest shall burn them on the altar of burnt +offering. +But the hide of the bull and all its +flesh, with its head and legs and its entrails and +dung— +all the rest of the bull—he must take +outside the camp to a ceremonially clean place +where the ashes are poured out, and there he +must burn it on a wood fire on the ash heap. + +10 + +12 + +11 + + 98 | Leviticus 4:13 + +13 + +16 + +14 + +15 + +Now if the whole congregation of Israel strays +unintentionally and the matter escapes the no- +tice of the assembly so that they violate any of the +LORD’s commandments and incur guilt by doing +when they become aware of +what is forbidden, +the sin they have committed, then the assembly +must bring a young bull as a sin offering and pre- +The elders +sent it before the Tent of Meeting. +of the congregation are to lay their hands on the +bull’s head before the LORD, and it shall be +Then the +slaughtered before the LORD. +17 +anointed priest is to bring some of the bull’s +and he is to dip +blood into the Tent of Meeting, +his finger in the blood and sprinkle it seven times +He is also +before the LORD in front of the veil. +to put some of the blood on the horns of the altar +that is before the LORD in the Tent of Meeting, +and he must pour out the rest of the blood at the +19 +base of the altar of burnt offering at the entrance +And he is to remove all +to the Tent of Meeting. +He shall +the fat from it and burn it on the altar. +offer this bull just as he did the bull for the sin +offering; in this way the priest will make atone- +21 +ment on their behalf, and they will be forgiven. +Then he is to take the bull outside the camp +and burn it, just as he burned the first bull. It is +22 +the sin offering for the assembly. + +18 + +20 + +23 + +24 + +When a leader sins unintentionally and does +what is prohibited by any of the commandments +When he +of the LORD his God, he incurs guilt. +becomes aware of the sin he has committed, he +must bring an unblemished male goat as his of- +He is to lay his hand on the head of the +fering. +goat and slaughter it at the place where the burnt +25 +offering is slaughtered before the LORD. It is a sin +Then the priest is to take some of the +offering. +blood of the sin offering with his finger, put it on +the horns of the altar of burnt offering, and pour +26 +out the rest of the blood at the base of the altar. +He must burn all its fat on the altar, like the +fat of the peace offerings; thus the priest will +make atonement for that man’s sin, and he will +27 +be forgiven. + +28 + +And if one of the common people sins +unintentionally and does what is prohibited by +any of the LORD’s commandments, he incurs +When he becomes aware of the sin he has +guilt. +committed, he must bring an unblemished +He is to +female goat as his offering for that sin. +lay his hand on the head of the sin offering and +30 +slaughter it at the place of the burnt offering. +Then the priest is to take some of its blood + +29 + +with his finger, put it on the horns of the altar of +31 +burnt offering, and pour out the rest of the blood +Then he is to remove all +at the base of the altar. +the fat, just as it is removed from the peace +offering, and the priest is to burn it on the altar +as a pleasing aroma to the LORD. In this way the +priest will make atonement for him, and he will +32 +be forgiven. + +33 + +If, however, he brings a lamb as a sin offering, +he must bring an unblemished female. +And he +is to lay his hand on the head of the sin offering +34 +and slaughter it as a sin offering at the place +Then +where the burnt offering is slaughtered. +the priest is to take some of the blood of the sin +offering with his finger, put it on the horns of the +altar of burnt offering, and pour out the rest of its +And he shall +blood at the base of the altar. +remove all the fat, just as the fat of the lamb is +removed from the peace offerings, and he shall +burn it on the altar along with the food offerings +to the LORD. In this way the priest will make +atonement for him for the sin he has committed, +Sins Requiring a Sin Offering +and he will be forgiven. +(Leviticus 4:1–35 ; Leviticus 6:24–30) + +35 + +5 + +“If someone sins by failing to testify when he +hears a public charge about something he +has witnessed, whether he has seen it or learned +2 +of it, he shall bear the iniquity. + +Or if a person touches anything unclean— +whether the carcass of any unclean wild animal +or livestock or crawling creature—even if he is +3 +unaware of it, he is unclean and guilty. + +Or if he touches human uncleanness—anything +by which one becomes unclean—even if he is un- +4 +aware of it, when he realizes it, he is guilty. + +Or if someone swears thoughtlessly with his +lips to do anything good or evil—in whatever +matter a man may rashly pronounce an oath— +even if he is unaware of it, when he realizes it, he +5 +is guilty in the matter. + +6 + +If someone incurs guilt in one of these ways, he +and he +must confess the sin he has committed, +must bring his guilt offering to the LORD for the +sin he has committed: a female lamb or goat from +the flock as a sin offering. And the priest will +7 +make atonement for him concerning his sin. + +If, however, he cannot afford a lamb, he may +bring to the LORD as restitution for his sin two +turtledoves or two young pigeons—one as a sin + + 8 + +He is +offering and the other as a burnt offering. +to bring them to the priest, who shall first pre- +sent the one for the sin offering. He is to twist its +9 +head at the front of its neck without severing it; +then he is to sprinkle some of the blood of the +sin offering on the side of the altar, while the rest +of the blood is drained out at the base of the altar. +It is a sin offering. +And the priest must prepare +the second bird as a burnt offering according to +the ordinance. In this way the priest will make +atonement for him for the sin he has committed, +11 +and he will be forgiven. + +10 + + a + +But if he cannot afford two turtledoves or two +young pigeons, he may bring a tenth of an ephah +of fine flour + as a sin offering. He must not put +12 +olive oil or frankincense on it, because it is a sin +offering. +He is to bring it to the priest, who +shall take a handful from it as a memorial portion +and burn it on the altar atop the food offerings to +In this way the +the LORD; it is a sin offering. +priest will make atonement for him for any of +these sins he has committed, and he will be for- +given. The remainder will belong to the priest, +Laws for Guilt Offerings +like the grain offering.” +(Leviticus 6:1–7 ; Leviticus 7:1–10) + +13 + +14 + +15 + + b + +16 + +Then the LORD said to Moses, + +“If someone +acts unfaithfully and sins unintentionally against +any of the LORD’s holy things, he must bring his +guilt offering to the LORD: an unblemished ram +from the flock, of proper value + in silver shekels +according to the sanctuary shekel; + it is a guilt +offering. +Regarding any holy thing he has +harmed, he must make restitution by adding a +fifth of its value to it and giving it to the priest, +who will make atonement on his behalf with the +17 +ram as a guilt offering, and he will be forgiven. + + c + +18 + +If someone sins and violates any of the LORD’s +commandments even though he was unaware, +He +he is guilty and shall bear his punishment. +is to bring to the priest an unblemished ram of +proper value from the flock as a guilt offering. +Then the priest will make atonement on his be- +half for the wrong he has committed in igno- +It is a guilt +rance, and he will be forgiven. +offering; he was certainly guilty + before the +LORD.” +a 11 A tenth of an ephah +b 15 +d 19 + +flock or its equivalence +he has paid full compensation + +c 15 A shekel + +19 + d + +Or +Or + +6 + +Leviticus 6:15 | 99 + +Sins Requiring a Guilt Offering +(Leviticus 5:14–19 ; Leviticus 7:1–10) + +2 + +3 + +“If someone +And the LORD said to Moses, +sins and acts unfaithfully against the LORD +by deceiving his neighbor in regard to a deposit +or security entrusted to him or stolen, or if he ex- +or finds lost property and lies +torts his neighbor +about it and swears falsely, or if he commits any +such sin that a man might commit— +once he has +sinned and becomes guilty, he must return what +he has stolen or taken by extortion, or the de- +posit entrusted to him, or the lost property he +or anything else about which he has +found, +sworn falsely. + +4 + +5 + +He must make restitution in full, add a fifth of the +6 +value, and pay it to the owner on the day he +Then he must bring to +acknowledges his guilt. +the priest his guilt offering to the LORD: an un- +7 +blemished ram of proper value from the flock. +In this way the priest will make atonement for +him before the LORD, and he will be forgiven for +The Burnt Offering (Leviticus 1:1–17) +anything he may have done to incur guilt.” +8 + +9 + +Then the LORD said to Moses, + +“Command Aa- +ron and his sons that this is the law of the burnt +offering: The burnt offering is to remain on the +hearth of the altar all night, until morning, and +10 +the fire must be kept burning on the altar. + +And the priest shall put on his linen robe and +linen undergarments, and he shall remove from +the altar the ashes of the burnt offering that the +11 +fire has consumed and place them beside it. +Then he must take off his garments, put on +other clothes, and carry the ashes outside the +12 +camp to a ceremonially clean place. + +The fire on the altar shall be kept burning; it +must not be extinguished. Every morning the +priest is to add wood to the fire, arrange the +burnt offering on it, and burn the fat portions of +The fire shall be kept +the peace offerings on it. +burning on the altar continually; it must not be +The Grain Offering (Leviticus 2:1–16) +extinguished. +14 + +13 + +15 + +Now this is the law of the grain offering: +Aaron’s sons shall present it before the LORD in +The priest is to remove a +front of the altar. +handful of fine flour and olive oil, together with + + is approximately 2 dry quarts or 2.2 liters (probably about 2.6 pounds or 1.2 kilograms of flour). + is approximately 0.4 ounces or 11.4 grams of silver. + + 100 | Leviticus 6:16 + +all the frankincense from the grain offering, and +burn the memorial portion on the altar as a +16 +pleasing aroma to the LORD. + +18 + +17 + +Aaron and his sons are to eat the remainder. It +must be eaten without leaven in a holy place; +they are to eat it in the courtyard of the Tent of +It must not be baked with leaven; I +Meeting. +have assigned it as their portion of My food offer- +ings. It is most holy, like the sin offering and the +Any male among the sons of Aa- +guilt offering. +ron may eat it. This is a permanent portion from +the food offerings to the LORD for the genera- +tions to come. Anything that touches them will +19 +become holy.” + +20 + + b + + a + +Then the LORD said to Moses, + +“This is the of- +fering that Aaron and his sons must present to +the LORD on the day he is anointed: a tenth of an +ephah of fine flour + as a regular grain offering, +21 +half of it in the morning and half in the evening. + you +It shall be prepared with oil on a griddle; + c +are to bring it well-kneaded and present it as a +22 +grain offering broken + in pieces, a pleasing +The priest, who is one of +aroma to the LORD. +Aaron’s sons and will be anointed to take his +place, is to prepare it. As a permanent portion for +Every +the LORD, it must be burned completely. +grain offering for a priest shall be burned com- +The Sin Offering +pletely; it is not to be eaten.” +(Leviticus 4:1–35 ; Leviticus 5:1–13) + +23 + +24 + +25 + +And the LORD said to Moses, + +“Tell Aaron and +his sons that this is the law of the sin offering: In +the place where the burnt offering is slaughtered, +26 +the sin offering shall be slaughtered before the +The priest who offers it +LORD; it is most holy. +shall eat it; it must be eaten in a holy place, in the +Anything +courtyard of the Tent of Meeting. +that touches its flesh will become holy, and if any +of the blood is spattered on a garment, you must +28 +wash it in a holy place. + +27 + +30 + +The clay pot in which the sin offering is boiled +must be broken; if it is boiled in a bronze pot, the +29 +pot must be scoured and rinsed with water. +Any male among the priests may eat it; it is +But no sin offering may be eaten if +most holy. +its blood has been brought into the Tent of Meet- +ing to make atonement in the Holy Place; it must +a 20 A tenth of an ephah +be burned. +b 21 + +c 21 + +baked + +The Guilt Offering (Lev. 5:14–19 ; Lev. 6:1–7) + +7 + +2 + +4 + +3 + +“Now this is the law of the guilt offering, +The guilt offering must +which is most holy: +be slaughtered in the place where the burnt of- +fering is slaughtered, and the priest shall splatter +And all the fat +its blood on all sides of the altar. +from it shall be offered: the fat tail, the fat that +both kidneys with the fat on +covers the entrails, +them near the loins, and the lobe of the liver, +The +which is to be removed with the kidneys. +6 +priest shall burn them on the altar as a food of- +fering to the LORD; it is a guilt offering. +Every +male among the priests may eat of it. It must be +7 +eaten in a holy place; it is most holy. + +5 + +9 + +8 + +The guilt offering is like the sin offering; the +same law applies to both. It belongs to the priest +who makes atonement with it. +As for the priest +who presents a burnt offering for anyone, the +Likewise, +hide of that offering belongs to him. +every grain offering that is baked in an oven or +10 + belongs to the + or on a griddle +cooked in a pan +priest who presents it, +and every grain offer- +ing, whether dry or mixed with oil, belongs +The Peace Offering (Leviticus 3:1–17) +equally to all the sons of Aaron. +11 + + d + + e + +12 + +Now this is the law of the peace offering that +If he offers it in +one may present to the LORD: +thanksgiving, then along with the sacrifice of +thanksgiving he shall offer unleavened cakes +mixed with olive oil, unleavened wafers coated +with oil, and well-kneaded cakes of fine flour +13 +mixed with oil. + +14 + +Along with his peace offering of thanksgiving +he is to present an offering with cakes of leav- +From the cakes he must present +ened bread. +one portion of each offering as a contribution to +15 +the LORD. It belongs to the priest who sprinkles +The meat of the +the blood of the peace offering. +sacrifice of his peace offering of thanksgiving +must be eaten on the day he offers it; none of it +16 +may be left until morning. + +17 + +If, however, the sacrifice he offers is a vow or a +freewill offering, it shall be eaten on the day he +presents his sacrifice, but the remainder may +But any meat of the +be eaten on the next day. +18 +sacrifice remaining until the third day must be +burned up. +If any of the meat from his peace +offering is eaten on the third day, it will not be + +d 9 + +e 9 + +That is, a shallow pan for baking or frying + +Or + +That is, a deep pan or stew pan + +That is, a shal- + + is approximately 2 dry quarts or 2.2 liters (probably about 2.6 pounds or 1.2 kilograms of flour). + +low pan for baking or frying + + accepted. It will not be credited to the one who +presented it; it shall be an abomination, and the +19 +one who eats of it shall bear his iniquity. + +Meat that touches anything unclean must not +be eaten; it is to be burned up. As for any other +20 +meat, anyone who is ceremonially clean may eat +But if anyone who is unclean eats meat from +it. +the peace offering that belongs to the LORD, that +If one +person must be cut off from his people. +touches anything unclean, whether human un- +cleanness, an unclean animal, or any unclean, de- +testable thing, and then eats any of the meat of +the peace offering that belongs to the LORD, that +Fat and Blood Forbidden +person must be cut off from his people.” +22 + +23 + +21 + +Then the LORD said to Moses, +24 + +“Speak to the +Israelites and say, ‘You are not to eat any of the +fat of an ox, a sheep, or a goat. +The fat of an an- +imal found dead or mauled by wild beasts may be +used for any other purpose, but you must not eat +25 +it. + +26 + +If anyone eats the fat of an animal from which +a food offering may be presented to the LORD, +the one who eats it must be cut off from his peo- +You must not eat the blood of any bird +ple. +or animal in any of your dwellings. +If anyone +eats blood, that person must be cut off from his +The Priests’ Portion +people.’ +28 + +” + +29 + +27 + +30 + +Then the LORD said to Moses, + +“Speak to the +Israelites and say, ‘Anyone who presents a peace +offering to the LORD must bring it as his sacrifice +With his own hands he is to bring +to the LORD. +the food offerings to the LORD; he shall bring the +fat, together with the breast, and wave the breast +31 +as a wave offering before the LORD. + +32 + +8 + +Leviticus 8:13 | 101 + +35 + +36 + +This is the portion of the food offerings to +the LORD for Aaron and his sons since the day +they were presented to serve the LORD as +On the day they were anointed, the +priests. +LORD commanded that this be given them by +the sons of Israel. It is a permanent portion for +37 +the generations to come. + +This is the law of the burnt offering, the grain +offering, the sin offering, the guilt offering, the +38 +ordination offering, and the peace offering, +which the LORD gave Moses on Mount Sinai on +the day He commanded the Israelites to present +their offerings to the LORD in the Wilderness of +Sinai. Moses Consecrates Aaron and His Sons +(Exodus 29:1–9) + +2 + +“Take Aaron +Then the LORD said to Moses, +and his sons, their garments, the anointing +3 +oil, the bull of the sin offering, the two rams, and +and assemble +the basket of unleavened bread, +the whole congregation at the entrance to the +4 +Tent of Meeting.” + +5 + +So Moses did as the LORD had commanded him, +and the assembly gathered at the entrance to the +And Moses said to them, “This +Tent of Meeting. +6 +is what the LORD has commanded to be done.” + +7 + +8 + +Then Moses presented Aaron and his sons and +He put the tunic on +washed them with water. +Aaron, tied the sash around him, clothed him +with the robe, and put the ephod on him. He tied +the woven band of the ephod around him and +Then he put the breastpiece +fastened it to him. +9 +on him and placed the Urim and Thummim + in +the breastpiece. +Moses also put the turban on +Aaron’s head and set the gold plate, the holy dia- +dem, on the front of the turban, as the LORD had +10 +commanded him. + + a + +The priest is to burn the fat on the altar, but the +And you +breast belongs to Aaron and his sons. +33 +are to give the right thigh to the priest as a con- +The son of +tribution from your peace offering. +Aaron who presents the blood and fat of the +peace offering shall have the right thigh as a por- +34 +tion. + +I have taken from the sons of Israel the breast +of the wave offering and the thigh of the contri- +bution of their peace offerings, and I have given +them to Aaron the priest and his sons as a per- +manent portion from the sons of Israel.’ +Lights and Perfections +a 8 + +” + +Next, Moses took the anointing oil and +11 +anointed the tabernacle and everything in it; and +He sprinkled some of +so he consecrated them. +the oil on the altar seven times, anointing the +altar and all its utensils, and the basin with its +12 +stand, to consecrate them. + +13 + +He also poured some of the anointing oil on +Aaron’s head and anointed him to consecrate +Then Moses presented Aaron’s sons, put +him. +tunics on them, wrapped sashes around them, +and tied headbands on them, just as the LORD +had commanded him. + +Literally + + 102 | Leviticus 8:14 + +The Priests’ Sin Offering + +14 + +15 + +Moses then brought the bull near for the sin of- +fering, and Aaron and his sons laid their hands on +its head. +Moses slaughtered the bull, took +some of the blood, and applied it with his finger +to all four horns of the altar, purifying the altar. +He poured out the rest of the blood at the base of +the altar and consecrated it so that atonement +16 +could be made on it. + +Moses also took all the fat that was on the en- +trails, the lobe of the liver, and both kidneys and +their fat, and burned it all on the altar. +But the +bull with its hide, flesh, and dung he burned out- +The Priests’ Burnt Offering +side the camp, as the LORD had commanded him. +18 + +17 + +20 + +21 + +19 + +Then Moses presented the ram for the burnt +offering, and Aaron and his sons laid their hands +on its head. +Moses slaughtered the ram and +splattered the blood on all sides of the altar. +He +cut the ram into pieces and burned the head, the +pieces, and the fat. +He washed the entrails and +legs with water and burned the entire ram on the +altar as a burnt offering, a pleasing aroma, a food +offering to the LORD, just as the LORD had com- +The Ram of Ordination (Exodus 29:10–30) +manded Moses. +22 + +After that, Moses presented the other ram, the +23 +ram of ordination, and Aaron and his sons laid +their hands on its head. +Moses slaughtered the +ram and took some of its blood and put it on Aa- +ron’s right earlobe, on the thumb of his right +hand, and on the big toe of his right foot. +Moses +also presented Aaron’s sons and put some of the +blood on their right earlobes, on the thumbs of +their right hands, and on the big toes of their +right feet. Then he splattered the blood on all +25 +sides of the altar. + +24 + +26 + +And Moses took the fat—the fat tail, all the fat +that was on the entrails, the lobe of the liver, and +both kidneys with their fat—as well as the right +thigh. +And from the basket of unleavened +bread that was before the LORD, he took one +cake of unleavened bread, one cake of bread +made with oil, and one wafer, and he placed them +on the fat portions and on the right thigh. +He +put all these in the hands of Aaron and his sons +and waved them before the LORD as a wave of- +28 +fering. + +27 + +Then Moses took these from their hands and +a 4 +burned them on the altar with the burnt offering. + +a cow + +a bull + +Or + + or + +; also in verses 18 and 19 + +29 + +This was an ordination offering, a pleasing +aroma, a food offering to the LORD. +He also +took the breast—Moses’ portion of the ram of or- +dination—and waved it before the LORD as a +30 +wave offering, as the LORD had commanded him. + +Next, Moses took some of the anointing oil and +some of the blood that was on the altar and sprin- +kled them on Aaron and his garments, and on his +sons and their garments. So he consecrated Aa- +ron and his garments, as well as Aaron’s sons and +31 +their garments. + +And Moses said to Aaron and his sons, “Boil the +meat at the entrance to the Tent of Meeting and +eat it there with the bread that is in the basket of +ordination offerings, as I commanded, saying, +Then you +‘Aaron and his sons are to eat it.’ +must burn up the remainder of the meat and +33 +bread. + +32 + +34 + +You must not go outside the entrance to the +Tent of Meeting for seven days, until the days of +your ordination are complete; for it will take +What has been done +seven days to ordain you. +today has been commanded by the LORD in or- +der to make atonement on your behalf. +You +must remain at the entrance to the Tent of Meet- +ing day and night for seven days and keep the +LORD’s charge so that you will not die, for this is +36 +what I have been commanded.” + +35 + +So Aaron and his sons did everything the LORD + +Aaron’s First Offerings +had commanded through Moses. + +9 + +2 + +3 + +On the eighth day Moses summoned Aaron +He +and his sons and the elders of Israel. +said to Aaron, “Take for yourself a young bull for +a sin offering and a ram for a burnt offering, both +without blemish, and present them before the +Then speak to the Israelites and say, +LORD. +‘Take a male goat for a sin offering, a calf and a + a +lamb—both a year old and without blemish—for +a burnt offering, + and a ram for a peace +offering to sacrifice before the LORD, and a grain +offering mixed with oil. For today the LORD will +5 +appear to you.’ + +an ox + +” + +4 + +6 + +So they took what Moses had commanded to +the front of the Tent of Meeting, and the whole +congregation drew near and stood before +And Moses said, “This is what the +the LORD. +LORD has commanded you to do, so that the +glory of the LORD may appear to you.” + + 7 + +Then Moses said to Aaron, “Approach the altar +and sacrifice your sin offering and your burnt of- +fering to make atonement for yourself and for +the people. And sacrifice the people’s offering to +make atonement for them, as the LORD has com- +8 +manded.” + +9 + +So Aaron approached the altar and slaughtered +The sons of +the calf as a sin offering for himself. +Aaron brought the blood to him, and he dipped +his finger in the blood and applied it to the horns +of the altar. And he poured out the rest of the +On the altar he +blood at the base of the altar. +burned the fat, the kidneys, and the lobe of the +liver from the sin offering, as the LORD had com- +But he burned up the flesh and +manded Moses. +12 +the hide outside the camp. + +10 + +11 + +Then Aaron slaughtered the burnt offering. His +13 +sons brought him the blood, and he splattered it +They brought him the +on all sides of the altar. +burnt offering piece by piece, including the head, +and he burned them on the altar. +He washed +the entrails and the legs and burned them atop +15 +the burnt offering on the altar. + +14 + +Aaron then presented the people’s offering. He +took the male goat for the people’s sin offering, +slaughtered it, and offered it for sin like the first +16 +one. + +He presented the burnt offering and offered it + +17 +according to the ordinance. + +Next he presented the grain offering, took a +handful of it, and burned it on the altar in addi- +18 +tion to the morning’s burnt offering. + +Then he slaughtered the ox and the ram as the +people’s peace offering. His sons brought him +the blood, and he splattered it on all sides of the +19 +altar. + +They also brought the fat portions from the ox +and the ram—the fat tail, the fat covering the en- +20 +trails, the kidneys, and the lobe of the liver— +and placed these on the breasts. Aaron burned +but he waved the +the fat portions on the altar, +breasts and the right thigh as a wave offering be- +22 +fore the LORD, as Moses had commanded. + +21 + +Aaron lifted up his hands toward the people +and blessed them. And having made the sin offer- +ing, the burnt offering, and the peace offering, he +23 +stepped down. + +Moses and Aaron then entered the Tent of +a 1 +Meeting. When they came out, they blessed the + +b 4 Elzaphan + +Elizaphan + +strange + +Leviticus 10:11 | 103 + +24 + +people, and the glory of the LORD appeared to all +Fire came out from the presence of +the people. +the LORD and consumed the burnt offering and +the fat portions on the altar. And when all the +people saw it, they shouted for joy and fell +The Sin of Nadab and Abihu (Numbers 3:1–4) +facedown. + +10 + + a + +Now Aaron’s sons Nadab and Abihu took +their censers, put fire in them and added + fire before +incense, and offered unauthorized +So fire +the LORD, contrary to His command. +came out from the presence of the LORD and con- +sumed them, and they died in the presence of the +3 +LORD. + +2 + +Then Moses said to Aaron, “This is what the + +LORD meant when He said: + +‘To those who come near Me +I will show My holiness, +and in the sight of all the people + +I will reveal My glory.’ + +” + +4 +But Aaron remained silent. + +b + +Moses summoned Mishael and Elzaphan, + + sons +of Aaron’s uncle Uzziel, and said to them, “Come +5 +here; carry the bodies of your cousins outside the +So +camp, away from the front of the sanctuary.” +they came forward and carried them, still in their +6 +tunics, outside the camp, as Moses had directed. + + c + +Then Moses said to Aaron and his sons Eleazar +and Ithamar, “Do not let your hair become di- + and do not tear your garments, or else +sheveled +you will die, and the LORD will be angry with +the whole congregation. But your brothers, the +whole house of Israel, may mourn on account +You shall +of the fire that the LORD has ignited. +not go outside the entrance to the Tent of Meet- +ing, or you will die, for the LORD’s anointing oil +is on you.” +Restrictions for Priests +So they did as Moses instructed. +9 +8 + +7 + +10 + +Then the LORD said to Aaron, + +“You and your +sons are not to drink wine or strong drink when +you enter the Tent of Meeting, or else you will +die; this is a permanent statute for the genera- +You must distinguish between +tions to come. +11 +the holy and the common, between the clean and +so that you may teach the Israel- +the unclean, +ites all the statutes that the LORD has given them +through Moses.” + +Do not uncover your heads + +c 6 + +Or + + is a variant of + +; see Numbers 3:30. + +Or + + 104 | Leviticus 10:12 + +12 + +And Moses said to Aaron and his remaining +sons, Eleazar and Ithamar, “Take the grain offer- +ing that remains from the food offerings to the +13 +LORD and eat it without leaven beside the altar, +You shall eat it in a holy +because it is most holy. +place, because it is your share and your sons’ +share of the food offerings to the LORD; for this +14 +is what I have been commanded. + +15 + +And you and your sons and daughters may eat +the breast of the wave offering and the thigh of +the contribution in a ceremonially clean place, +because these portions have been assigned to +you and your children from the peace offerings +They are to bring the thigh +of the sons of Israel. +of the contribution and the breast of the wave of- +fering, together with the fat portions of the food +offerings, to wave as a wave offering before the +LORD. It will belong permanently to you and +16 +your children, as the LORD has commanded.” + +17 + +Later, Moses searched carefully for the goat +of the sin offering, and behold, it had been +burned up. He was angry with Eleazar and Itha- +“Why +mar, Aaron’s remaining sons, and asked, +didn’t you eat the sin offering in the holy place? +For it is most holy; it was given to you to take +away the guilt of the congregation by making +Since its +atonement for them before the LORD. +blood was not brought inside the holy place, you +should have eaten it in the sanctuary area, as I +19 +commanded.” + +18 + +But Aaron replied to Moses, “Behold, this very +day they presented their sin offering and their +burnt offering before the LORD. Since these +things have happened to me, if I had eaten the sin +offering today, would it have been acceptable in +20 +the sight of the LORD?” + +And when Moses heard this explanation, he + +Clean and Unclean Animals +was satisfied. +(Deuteronomy 14:1–21 ; Acts 10:9–16) + +11 + +2 + +3 + +The LORD spoke again to Moses and Aa- +“Say to the Israelites, +ron, telling them, +‘Of all the beasts of the earth, these ones you may +eat: +You may eat any animal that has a split hoof +4 +completely divided and that chews the cud. + + a +But of those that only chew the cud or only have + +a divided hoof, you are not to eat the following: + +5 + +b + +The rock badger, + + though it chews the cud, + +does not have a divided hoof; it is +6 +unclean for you. + +The rabbit, though it chews the cud, does + +not have a divided hoof; it is unclean for +7 +you. + +And the pig, though it has a split hoof + +8 + +completely divided, does not chew the cud; +it is unclean for you. + +You must not eat their meat or touch their car- + +9 +casses; they are unclean for you. + +Of all the creatures that live in the water, +whether in the seas or in the streams, you may +10 +eat anything with fins and scales. + +11 + +But the following among all the teeming life +and creatures in the water are detestable to you: +everything in the seas or streams that does not +They shall be an abomina- +have fins and scales. +tion to you; you must not eat their meat, and you +Everything in the +must detest their carcasses. +water that does not have fins and scales shall be +13 +detestable to you. + +12 + +Additionally, you are to detest the following +birds, and they must not be eaten because they +are detestable: + +the eagle, the bearded vulture, the black +14 +vulture, +15 + +the kite, any kind of falcon, + +16 + +any kind of raven, + +c + +the ostrich, +17 +kind of hawk, + + the screech owl, the gull, any + +the little owl, the cormorant, the great + +18 +owl, + +the white owl, the desert owl, the + +19 +osprey, + +the stork, any kind of heron, + +20 + +the hoopoe, and the bat. + +21 + +All flying insects that walk on all fours are de- +However, you may eat the fol- +testable to you. +lowing kinds of flying insects that walk on all +fours: those having jointed legs above their feet +Of these you may +for hopping on the ground. +eat any kind of locust, katydid, cricket, or grass- +All other flying insects that have four +hopper. +legs are detestable to you. +b 5 + +The coney + +The hyrax + +22 + +23 + +a 4 +c 16 + +The camel, though it chews the cud, does +not have a divided hoof; it is unclean for +you. +The precise identification of some of the birds and animals in this chapter is uncertain. +Literally + +the daughter of the ostrich + +the daughter of the owl + + or + +Or + + or + + 24 + +25 + +These creatures will make you unclean. Who- +ever touches their carcasses will be unclean until +evening, +and whoever picks up one of their +carcasses must wash his clothes, and he will be +26 +unclean until evening. + + a + +Every animal with hooves not completely di- +vided + or that does not chew the cud is unclean +for you. Whoever touches any of them will be un- +27 +clean. + +All the four-footed animals that walk on their +paws are unclean for you; whoever touches their +carcasses will be unclean until evening, +and +anyone who picks up a carcass must wash his +clothes, and he will be unclean until evening. +29 +They are unclean for you. + +28 + +The following creatures that move along +the ground are unclean for you: the mole, the +mouse, any kind of great lizard, +the gecko, the +monitor lizard, the common lizard, the skink, and +31 +the chameleon. + +30 + +32 + +These animals are unclean for you among all +the crawling creatures. Whoever touches them +when they are dead shall be unclean until even- +When one of them dies and falls on some- +ing. +thing, that article becomes unclean; any article of +wood, clothing, leather, sackcloth, or any imple- +ment used for work must be rinsed with water +and will remain unclean until evening; then it +If any of them falls into a clay pot, +will be clean. +everything in it will be unclean; you must break +Any food coming into contact with wa- +the pot. +ter from that pot will be unclean, and any drink +35 +in such a container will be unclean. + +34 + +33 + +36 + +Anything upon which one of their carcasses +falls will be unclean. If it is an oven or cooking +pot, it must be smashed; it is unclean and will re- +main unclean for you. +Nevertheless, a spring or +cistern containing water will remain clean, but +37 +one who touches a carcass in it will be unclean. +If a carcass falls on any seed for sowing, the +seed is clean; +but if water has been put on the +39 +seed and a carcass falls on it, it is unclean for you. + +38 + +If an animal that you may eat dies, anyone who +40 +touches the carcass will be unclean until evening. +Whoever eats from the carcass must wash his +clothes and will be unclean until evening, and an- +yone who picks up the carcass must wash his +41 +clothes and will be unclean until evening. + +42 + +Every creature that moves along the ground is +b 44 +a split hoof not completely divided +Do not eat any + +a 26 +detestable; it must not be eaten. + +12 + +Leviticus 12:8 | 105 + +creature that moves along the ground, whether it +crawls on its belly or walks on four or more feet; +43 +for such creatures are detestable. + +Do not defile yourselves by any crawling crea- +44 +ture; do not become unclean or defiled by them. +b +For I am the LORD your God; consecrate your- +selves, therefore, and be holy, because I am holy. +You must not defile yourselves by any creature +that crawls along the ground. +For I am the +LORD, who brought you up out of the land of +Egypt so that I would be your God; therefore be +46 +holy, because I am holy. + +45 + +This is the law regarding animals, birds, all liv- +ing creatures that move in the water, and all +You +creatures that crawl along the ground. +must distinguish between the unclean and the +clean, between animals that may be eaten and +Purification after Childbirth +those that may not.’ + +47 + +” + +2 + +“Say to +Then the LORD said to Moses, +the Israelites, ‘A woman who becomes +pregnant and gives birth to a son will be unclean +for seven days, as she is during the days of her +And on the eighth day the flesh of +menstruation. +4 +the boy’s foreskin is to be circumcised. + +3 + +The woman shall continue in purification from +her bleeding for thirty-three days. She must not +touch anything sacred or go into the sanctuary +5 +until the days of her purification are complete. + +If, however, she gives birth to a daughter, the +woman will be unclean for two weeks as she is +during her menstruation. Then she must con- +tinue in purification from her bleeding for sixty- +6 +six days. + +When the days of her purification are complete, +whether for a son or for a daughter, she is to +bring to the priest at the entrance to the Tent of +Meeting a year-old lamb for a burnt offering and +7 +a young pigeon or a turtledove for a sin offering. +And the priest will present them before the +LORD and make atonement for her; and she shall +be ceremonially cleansed from her flow of blood. +This is the law for a woman giving birth, whether +8 +to a male or to a female. + +c + +But if she cannot afford a lamb, she shall bring +two turtledoves or two young pigeons, + one for a +burnt offering and the other for a sin offering. +Then the priest will make atonement for her, and +she will be clean.’ + +c 8 + +” + +Literally + +Here and in verse 45; cited in 1 Peter 1:16 + +Cited in Luke 2:24 + + 106 | Leviticus 13:1 + +Laws about Skin Diseases (Numbers 5:1–4) + +13 + +2 +Then the LORD said to Moses and Aaron, +“When someone has a swelling or rash +or bright spot on his skin that may be an infec- +tious skin disease, + he must be brought to Aaron +3 +the priest or to one of his sons who is a priest. + +a + +The priest is to examine the infection on his +skin, and if the hair in the infection has turned +white and the sore appears to be deeper than the +skin, it is a skin disease. After the priest examines +4 +him, he must pronounce him unclean. + +5 + +If, however, the spot on his skin is white and +does not appear to be deeper than the skin, and +the hair in it has not turned white, the priest shall +isolate the infected person for seven days. +On +the seventh day the priest is to reexamine him, +and if he sees that the infection is unchanged and +has not spread on the skin, the priest must isolate +him for another seven days. +The priest will ex- +amine him again on the seventh day, and if the +sore has faded and has not spread on the skin, +the priest shall pronounce him clean; it is a rash. +7 +The person must wash his clothes and be clean. + +6 + +But if the rash spreads further on his skin after +he has shown himself to the priest for his cleans- +8 +ing, he must present himself again to the priest. +The priest will reexamine him, and if the rash +has spread on the skin, the priest must pro- +9 +nounce him unclean; it is a skin disease. + +10 +When anyone develops a skin disease, he must +The priest will exam- +be brought to the priest. +ine him, and if there is a white swelling on the +11 +skin that has turned the hair white, and there is +raw flesh in the swelling, +it is a chronic skin +disease and the priest must pronounce him un- +12 +clean. He need not isolate him, for he is unclean. + +13 + +But if the skin disease breaks out all over his +skin so that it covers all the skin of the infected +person from head to foot, as far as the priest can +the priest shall examine him, and if the dis- +see, +ease has covered his entire body, he is to pro- +nounce the infected person clean. Since it has all +14 +turned white, he is clean. + +15 + +and if the infection has turned white, the priest is +to pronounce the infected person clean; then he +18 +is clean. +19 + +When a boil appears on someone’s skin and it +and a white swelling or a reddish-white +heals, +20 +spot develops where the boil was, he must pre- +sent himself to the priest. +The priest shall ex- +amine it, and if it appears to be beneath the skin +and the hair in it has turned white, the priest +shall pronounce him unclean; it is a diseased in- +21 +fection that has broken out in the boil. + +22 + +But when the priest examines it, if there is no +white hair in it, and it is not beneath the skin and +has faded, the priest shall isolate him for seven +If it spreads any further on the skin, the +days. +23 +priest must pronounce him unclean; it is an in- +fection. +But if the spot remains unchanged and +does not spread, it is only the scar from the boil, +24 +and the priest shall pronounce him clean. + +25 + +When there is a burn on someone’s skin and +the raw area of the burn becomes reddish-white +the priest must examine it. If the hair +or white, +in the spot has turned white and the spot appears +to be deeper than the skin, it is a disease that has +broken out in the burn. The priest must pro- +26 +nounce him unclean; it is a diseased infection. + +27 + +But if the priest examines it and there is no +white hair in the spot, and it is not beneath the +skin but has faded, the priest shall isolate him for +On the seventh day the priest is to +seven days. +reexamine him, and if it has spread further on the +28 +skin, the priest must pronounce him unclean; it +But if the spot is un- +is a diseased infection. +changed and has not spread on the skin but has +faded, it is a swelling from the burn, and the +priest is to pronounce him clean; for it is only the +29 +scar from the burn. +30 + +If a man or woman has an infection on the head +or chin, +the priest shall examine the infection, +and if it appears to be deeper than the skin and +the hair in it is yellow and thin, the priest must +pronounce him unclean; it is a scaly outbreak, an +31 +infectious disease of the head or chin. + +But whenever raw flesh appears on someone, +When the priest sees the +he will be unclean. +raw flesh, he must pronounce him unclean. The +But if +raw flesh is unclean; it is a skin disease. +the raw flesh changes and turns white, he must +tzaraath +a 2 +The priest will reexamine him, +go to the priest. +, traditionally translated as + +17 + +16 + +Forms of the Hebrew +throughout verses 3-46. + +But if the priest examines the scaly infection +and it does not appear to be deeper than the skin, +and there is no black hair in it, the priest shall +On +isolate the infected person for seven days. +the seventh day the priest is to reexamine the in- +fection, and if the scaly outbreak has not spread + +32 + +leprosy + +, were used for various skin diseases; here and + + 33 + +34 + +and there is no yellow hair in it, and it does not +then the +appear to be deeper than the skin, +person must shave himself except for the scaly +area. Then the priest shall isolate him for another +On the seventh day the priest shall +seven days. +examine the scaly outbreak, and if it has not +spread on the skin and does not appear to be +deeper than the skin, the priest is to pronounce +him clean. He must wash his clothes, and he will +35 +be clean. + +36 + +If, however, the scaly outbreak spreads further +the priest is to +on the skin after his cleansing, +examine him, and if the scaly outbreak has +spread on the skin, the priest need not look for +37 +yellow hair; the person is unclean. + +If, however, in his sight the scaly outbreak is +unchanged and black hair has grown in it, then it +has healed. He is clean, and the priest is to pro- +38 +nounce him clean. +39 + +When a man or a woman has white spots on +the priest shall examine them, and if +the skin, +the spots are dull white, it is a harmless rash that +40 +has broken out on the skin; the person is clean. + +41 + +42 + +43 + +Now if a man loses his hair and is bald, he is +Or if his hairline recedes and he +still clean. +But if +is bald on his forehead, he is still clean. +there is a reddish-white sore on the bald head or +forehead, it is an infectious disease breaking out +The priest is to examine him, and if the +on it. +swelling of the infection on his bald head or fore- +the +head is reddish-white like a skin disease, +man is diseased; he is unclean. The priest must +pronounce him unclean because of the infection +45 +on his head. + +44 + +a + +46 + +A diseased person must wear torn clothes and +let his hair hang loose, + and he must cover his +As long +mouth and cry out, ‘Unclean, unclean!’ +as he has the infection, he remains unclean. He +Laws about Mildew +must live alone in a place outside the camp. +47 + + b + +48 + +If any fabric is contaminated with mildew +49 + +— +any wool or linen garment, +any weave or knit +and +of linen or wool, or any article of leather— +if the mark in the fabric, leather, weave, knit, or +leather article is green or red, then it is contami- +nated with mildew and must be shown to the +b 47 +a 45 +And the priest is to examine the mildew +priest. +mildew + +uncover his head + +50 + +tzaraath + +Leviticus 14:4 | 107 + +and isolate the contaminated fabric for seven +51 +days. + +52 + +On the seventh day the priest shall reexamine +it, and if the mildew has spread in the fabric, +weave, knit, or leather, then regardless of how it +is used, it is a harmful mildew; the article is un- +He is to burn the fabric, weave, or knit, +clean. +whether the contaminated item is wool or linen +or leather. Since the mildew is harmful, the arti- +53 +cle must be burned up. + +54 + +55 + +But when the priest reexamines it, if the mil- +dew has not spread in the fabric, weave, knit, or +the priest is to order the con- +leather article, +taminated article to be washed and isolated for +After it has been washed, +another seven days. +the priest is to reexamine it, and if the mildewed +article has not changed in appearance, it is un- +clean. Even though the mildew has not spread, +you must burn it, whether the rot is on the front +56 +or back. + +57 + +If the priest examines it and the mildew has +faded after it has been washed, he must cut the +contaminated section out of the fabric, leather, +But if it reappears in the +weave, or knit. +fabric, weave, or knit, or on any leather article, it +is spreading. You must burn the contaminated +58 +article. + +If the mildew disappears from the fabric, +weave, or knit, or any leather article after wash- +ing, then it is to be washed again, and it will be +59 +clean. + +This is the law concerning a mildew contami- +nation in wool or linen fabric, weave, or knit, or +any leather article, for pronouncing it clean or +Cleansing from Skin Diseases +unclean.” +(Matthew 8:1–4 ; Mark 1:40–45 ; Luke 5:12–16) + +2 + +3 + +Then the LORD said to Moses, +“This is + c +the law for the one afflicted with a skin + on the day of his cleansing, when he is +disease +The priest is to go outside +brought to the priest. +the camp to examine him, and if the skin disease +of the afflicted person has healed, +the priest +shall order that two live clean birds, cedar wood, +scarlet yarn, and hyssop be brought for the one +leprosy +to be cleansed. + +4 + +14 + +Or + +c 2 + +eases, are translated as +der of this chapter. +diseases; also in verses 3, 7, 32, 54, and 57. + +Forms of the Hebrew + +, traditionally translated as +Forms of the Hebrew +leprosy + regarding blemishes on garments, utensils, or buildings; here and throughout the remain- + + regarding skin dis- + +tzaraath + +, traditionally translated as + +, were used for various skin + + 108 | Leviticus 14:5 + +5 + +18 + + a + +6 + +Then the priest shall command that one of the +birds be slaughtered over fresh water + in a clay +pot. +And he is to take the live bird together with +the cedar wood, scarlet yarn, and hyssop, and dip +7 +them into the blood of the bird that was slaugh- +Seven times he shall +tered over the fresh water. +sprinkle the one to be cleansed of the skin dis- +ease. Then he shall pronounce him clean and +8 +release the live bird into the open field. + +9 + +The one being cleansed must wash his clothes, +shave off all his hair, and bathe with water; then +he will be ceremonially clean. Afterward, he may +enter the camp, but he must remain outside his +On the seventh day he must +tent for seven days. +shave off all his hair—his head, his beard, his +eyebrows, and the rest of his hair. He must wash +his clothes and bathe himself with water, and he +10 +will be clean. + +c + + b + +11 + +On the eighth day he is to bring two unblem- +ished male lambs, an unblemished ewe lamb a +year old, a grain offering of three-tenths of +an ephah of fine flour + mixed with olive oil, and +one log of olive oil. +The priest who performs +the cleansing shall present the one to be cleansed, +together with these offerings, before the LORD at +12 +the entrance to the Tent of Meeting. + +13 + +Then the priest is to take one of the male lambs +and present it as a guilt offering, along with the +log of olive oil; and he must wave them as a wave +Then he is to slaugh- +offering before the LORD. +ter the lamb in the sanctuary area where the sin +offering and burnt offering are slaughtered. Like +the sin offering, the guilt offering belongs to the +14 +priest; it is most holy. + +16 + +15 + +The priest is to take some of the blood from the +guilt offering and put it on the right earlobe of the +one to be cleansed, on the thumb of his right +hand, and on the big toe of his right foot. +Then +the priest shall take some of the log of olive oil, +dip his right forefin- +pour it into his left palm, +ger into the oil in his left palm, and sprinkle some +of the oil with his finger seven times before the +And the priest is to put some of the oil +LORD. +remaining in his palm on the right earlobe of the +one to be cleansed, on the thumb of his right +hand, and on the big toe of his right foot, on top +of the blood of the guilt offering. +living water +a 5 + +flowing water + +17 + +19 + +The rest of the oil in his palm, the priest is to +put on the head of the one to be cleansed, to make +atonement for him before the LORD. +Then the +priest is to sacrifice the sin offering and make +atonement for the one to be cleansed from his +uncleanness. After that, the priest shall slaughter +and offer it on the altar, with +the burnt offering +the grain offering, to make atonement for him, +21 +and he will be clean. + +20 + + d + +If, however, the person is poor and cannot af- +ford these offerings, he is to take one male lamb +as a guilt offering to be waved to make atone- +ment for him, along with a tenth of an ephah of +22 +fine flour + mixed with olive oil for a grain offer- +and two turtledoves or +ing, a log of olive oil, +two young pigeons, whichever he can afford, one +23 +to be a sin offering and the other a burnt offering. + +24 + +On the eighth day he is to bring them for his +cleansing to the priest at the entrance to the Tent +The priest shall +of Meeting before the LORD. +take the lamb for the guilt offering, along with the +log of olive oil, and wave them as a wave offering +25 +before the LORD. + +27 + +And after he slaughters the lamb for the guilt +offering, the priest is to take some of the blood of +the guilt offering and put it on the right earlobe +of the one to be cleansed, on the thumb of his +26 +right hand, and on the big toe of his right foot. +Then the priest is to pour some of the oil into +and sprinkle with his right fore- +his left palm +finger some of the oil in his left palm seven times +The priest shall also put +before the LORD. +some of the oil in his palm on the right earlobe of +the one to be cleansed, on the thumb of his right +hand, and on the big toe of his right foot—on the +29 +same places as the blood of the guilt offering. + +28 + +30 + +31 + +The rest of the oil in his palm, the priest is to +put on the head of the one to be cleansed, to make +Then he +atonement for him before the LORD. +must sacrifice the turtledoves or young pigeons, +one as a sin offering +whichever he can afford, +and the other as a burnt offering, + together with +the grain offering. In this way the priest will +make atonement before the LORD for the one to +32 +be cleansed. + +e + +Or + + or + +; here and in verses 6, 50, 51, and 52 + +dry quarts or 6.6 liters (probably about 7.6 pounds or 3.5 kilograms of flour). +0.33 quarts or 0.31 liters; also in verses 12, 15, 21, and 24 +liters (probably about 2.6 pounds or 1.2 kilograms of flour). e + + 31 + +This is the law for someone who has a skin dis- +ease and cannot afford the cost of his cleansing.” +one log of oil + +b 10 Three-tenths of an ephah + +c 10 +d 21 A tenth of an ephah + + is approximately 6 +; that is, approximately +Or +as he is able to afford, + is approximately 2 dry quarts or 2.2 + +LXX and Syriac; Hebrew includes + + Signs of Home Contamination + +49 + +Leviticus 15:8 | 109 + +33 +34 + +35 + +Then the LORD said to Moses and Aaron, +“When you enter the land of Canaan, which I + a +am giving you as your possession, and I put a + into a house in that +contamination of mildew +the owner of the house shall come and +land, +tell the priest, ‘Something like mildew has ap- +36 +peared in my house.’ + +The priest must order that the house be +cleared before he enters it to examine the mil- +dew, so that nothing in the house will become un- +clean. After this, the priest shall go in to inspect +37 +the house. + +He is to examine the house, and if the mildew +on the walls consists of green or red depressions +38 +that appear to be beneath the surface of the wall, +the priest shall go outside the doorway of the + +39 +house and close it up for seven days. + +41 + +40 + +On the seventh day the priest is to return and +inspect the house. If the mildew has spread on +he must order that the contaminated +the walls, +stones be pulled out and thrown into an unclean +place outside the city. +And he shall have the in- +side of the house scraped completely and the +plaster that is scraped off dumped into an un- +42 +clean place outside the city. + +So different stones must be obtained to re- +place the contaminated ones, as well as addi- +43 +tional mortar to replaster the house. + +If the mildew reappears in the house after the +stones have been torn out and the house has +been scraped and replastered, +the priest must +come and inspect it. + +44 + +45 + +46 + +If the mildew has spread in the house, it is a de- +It must +structive mildew; the house is unclean. +be torn down with its stones, its timbers, and all +its plaster, and taken outside the city to an un- +Anyone who enters the house +clean place. +47 +during any of the days that it is closed up will be +And anyone who sleeps +unclean until evening. +Cleansing a Home +in the house or eats in it must wash his clothes. +48 + +If, however, the priest comes and inspects it, +and the mildew has not spread after the house +has been replastered, he shall pronounce the +house clean, because the mildew is gone. +tzaraath +a 34 +dew +b 57 + +50 + +He is to take two birds, cedar wood, scarlet +and he +yarn, and hyssop to purify the house; +shall slaughter one of the birds over fresh water +51 +in a clay pot. + +Then he shall take the cedar wood, the hyssop, +the scarlet yarn, and the live bird, dip them in the +blood of the slaughtered bird and the fresh wa- +And he +ter, and sprinkle the house seven times. +shall cleanse the house with the bird’s blood, +the fresh water, the live bird, the cedar wood, the +53 +hyssop, and the scarlet yarn. + +52 + +Finally, he is to release the live bird into the +open fields outside the city. In this way he will +make atonement for the house, and it will be +54 +clean. + +55 + +56 + +for a scaly outbreak, +57 +in a house, + +This is the law for any infectious skin disease, +for mildew in clothing or +and for a swelling, rash, or spot, +to determine when something is clean or un- +clean. This is the law regarding skin diseases and +The Uncleanness of Men +mildew. +(Deuteronomy 23:9–14) + +” + +b + +15 + +2 + +3 + +And the LORD said to Moses and +“Say to the Israelites, ‘When any +Aaron, +man has a bodily discharge, the discharge is un- +This uncleanness is from his discharge, +clean. +whether his body allows the discharge to flow or +blocks it. So his discharge will bring about un- +4 +cleanness. + +Any bed on which the man with the discharge +5 +lies will be unclean, and any furniture on which +he sits will be unclean. +Anyone who touches his +bed must wash his clothes and bathe with water, +Whoever +and he will be unclean until evening. +sits on furniture on which the man with the dis- +charge was sitting must wash his clothes and +bathe with water, and he will be unclean until +7 +evening. + +6 + +8 + +Whoever touches the body of the man with a +discharge must wash his clothes and bathe with +If +water, and he will be unclean until evening. +the man with the discharge spits on one who is +clean, that person must wash his clothes and +bathe with water, and he will be unclean until +leprosy +evening. + +mil- + +Forms of the Hebrew + regarding blemishes on garments, utensils, or buildings; here and throughout the remainder of this chapter. +The Hebrew translated here as + + is one singular term; see the footnotes for verses + + regarding skin diseases, are translated as + +, traditionally translated as +skin diseases and mildew + +2 and 34. + + 110 | Leviticus 15:9 + +9 + +10 + +24 + +Any saddle on which the man with the dis- +charge rides will be unclean. +Whoever touches +anything that was under him will be unclean +until evening, and whoever carries such things +must wash his clothes and bathe with water, and +11 +he will be unclean until evening. + +12 + +If the man with the discharge touches anyone +without first rinsing his hands with water, the +one who was touched must wash his clothes and +bathe with water, and he will be unclean until +evening. +Any clay pot that the man with the +discharge touches must be broken, and any +The Cleansing of Men +wooden utensil must be rinsed with water. +13 + +a + +14 + + and he shall be clean. + +When the man has been cleansed from his dis- +charge, he must count off seven days for his +cleansing, wash his clothes, and bathe himself in +On the +fresh water, +eighth day he is to take two turtledoves or two +young pigeons, come before the LORD at the en- +trance to the Tent of Meeting, and give them to +The priest is to sacrifice them, one +the priest. +as a sin offering and the other as a burnt offering. +In this way the priest will make atonement for +the man before the LORD because of his dis- +16 +charge. + +15 + +17 + +When a man has an emission of semen, he +must bathe his whole body with water, and he +will be unclean until evening. +Any clothing or +leather on which there is an emission of semen +18 +must be washed with water, and it will remain +unclean until evening. +If a man lies with a +woman and there is an emission of semen, both +must bathe with water, and they will remain un- +The Uncleanness of Women +clean until evening. +19 + +When a woman has a discharge consisting of +blood from her body, she will be unclean due to +her menstruation for seven days, and anyone +20 +who touches her will be unclean until evening. +Anything on which she lies or sits during her +menstruation will be unclean, +and anyone who +touches her bed must wash his clothes and bathe +22 +with water, and he will be unclean until evening. + +21 + +Whoever touches any furniture on which she +was sitting must wash his clothes and bathe with +23 +water, and he will be unclean until evening. +And whether it is a bed or furniture on which +she was sitting, whoever touches it will be un- +the Holy Place +living water +a 13 +clean until evening. +cover +Or + or +; here and throughout this chapter + +flowing water + +b 2 + +Or + +If a man lies with her and her menstrual flow +touches him, he will be unclean for seven days, +and any bed on which he lies will become un- +25 +clean. + +26 + +When a woman has a discharge of her blood +for many days at a time other than her menstrual +period, or if it continues beyond her period, +she will be unclean all the days of her unclean +discharge, just as she is during the days of her +Any bed on which she lies or +menstruation. +any furniture on which she sits during the days +of her discharge will be unclean, like her bed dur- +Anyone who touches +ing her menstrual period. +these things will be unclean; he must wash his +clothes and bathe with water, and he will be un- +The Cleansing of Women +clean until evening. +28 + +27 + +29 + +When a woman is cleansed of her discharge, +she must count off seven days, and after that she +On the eighth day +will be ceremonially clean. +she is to take two turtledoves or two young +30 +pigeons and bring them to the priest at the en- +The priest is to +trance to the Tent of Meeting. +sacrifice one as a sin offering and the other as a +burnt offering. In this way the priest will make +atonement for her before the LORD for her un- +31 +clean discharge. + +You must keep the children of Israel separate +from their uncleanness, so that they do not die by +32 +defiling My tabernacle, which is among them. + +33 + +This is the law of him who has a discharge, of +the man who has an emission of semen whereby +he is unclean, +of a woman in her menstrual pe- +riod, of any male or female who has a discharge, +The Day of Atonement +” +and of a man who lies with an unclean woman.’ +(Leviticus 23:26–32 ; Numbers 29:7–11) + +16 + +2 + +Now the LORD spoke to Moses after the +death of two of Aaron’s sons when they +approached the presence of the LORD. +And the + b +LORD said to Moses: “Tell your brother Aaron + c +not to enter freely into the Most Holy Place +behind the veil in front of the mercy seat + on the +ark, or else he will die, because I appear in the +3 +cloud above the mercy seat. + +This is how Aaron is to enter the Holy Place: +with a young bull for a sin offering and a ram for +He is to wear the sacred linen +a burnt offering. + +atonement + +c 2 + +4 + +; also in verses 16, 17, 20, 23, and 27 + +Or + + Leviticus 16:31 | 111 + +18 + +tunic, with linen undergarments. He must tie a +linen sash around him and put on the linen tur- +ban. These are holy garments, and he must bathe +And +himself with water before he wears them. +he shall take from the congregation of Israel two +male goats for a sin offering and one ram for a +6 +burnt offering. + +5 + +19 + +Then he shall go out to the altar that is before +the LORD and make atonement for it. He is to +take some of the bull’s blood and some of the +goat’s blood and put it on all the horns of the al- +He is to sprinkle some of the blood on it +tar. +with his finger seven times to cleanse it and con- +20 +secrate it from the uncleanness of the Israelites. + +7 + +Aaron is to present the bull for his sin offering +and make atonement for himself and his house- +hold. +Then he shall take the two goats and pre- +sent them before the LORD at the entrance to the +8 +Tent of Meeting. + +a + +9 + +After Aaron casts lots for the two goats, one for +the LORD and the other for the scapegoat, +he +shall present the goat chosen by lot for the LORD +But the goat +and sacrifice it as a sin offering. +chosen by lot as the scapegoat shall be presented +alive before the LORD to make atonement by +11 +sending it into the wilderness as the scapegoat. + +10 + +13 + +12 + +When Aaron presents the bull for his sin offer- +ing and makes atonement for himself and his +household, he is to slaughter the bull for his own +Then he must take a censer full of +sin offering. +burning coals from the altar before the LORD, +and two handfuls of finely ground fragrant in- +He is to +cense, and take them inside the veil. +put the incense on the fire before the LORD, and +the cloud of incense will cover the mercy seat +14 + so that he will not die. +above the Testimony, +And he is to take some of the bull’s blood and +sprinkle it with his finger on the east side of the +mercy seat; then he shall sprinkle some of it with +15 +his finger seven times before the mercy seat. + +b + +Aaron shall then slaughter the goat for the sin +offering for the people and bring its blood behind +the veil, and with its blood he must do as he did +with the bull’s blood: He is to sprinkle it against +16 +the mercy seat and in front of it. + +17 + +So he shall make atonement for the Most Holy +Place because of the impurities and rebellious +acts of the Israelites in regard to all their sins. He +is to do the same for the Tent of Meeting which +abides among them in the midst of their impuri- +No one may be in the Tent of Meeting from +ties. +the time Aaron goes in to make atonement in the +Most Holy Place until he leaves, after he has +made atonement for himself, his household, and +a 8 +the whole assembly of Israel. + +the other to Azazel + +21 + +When Aaron has finished purifying the Most +Holy Place, the Tent of Meeting, and the altar, he +Then he is to +is to bring forward the live goat. +lay both hands on the head of the live goat and +confess over it all the iniquities and rebellious +acts of the Israelites in regard to all their sins. He +is to put them on the goat’s head and send it away +22 +into the wilderness by the hand of a man ap- +The goat will carry on +pointed for the task. +itself all their iniquities into a solitary place, and +23 +the man will release it into the wilderness. + +Then Aaron is to enter the Tent of Meeting, +take off the linen garments he put on before en- +24 +tering the Most Holy Place, and leave them there. +He is to bathe himself with water in a holy +place and put on his own clothes. Then he must +go out and sacrifice his burnt offering and the +people’s burnt offering to make atonement for +He is also to burn +himself and for the people. +26 +the fat of the sin offering on the altar. + +25 + +The man who released the goat as the scape- +goat must wash his clothes and bathe himself +27 +with water; afterward he may reenter the camp. + +The bull for the sin offering and the goat for the +sin offering, whose blood was brought into the +Most Holy Place to make atonement, must be +taken outside the camp; and their hides, flesh, +The one who +and dung must be burned up. +burns them must wash his clothes and bathe +himself with water, and afterward he may +29 +reenter the camp. + +28 + + c + +30 + +This is to be a permanent statute for you: On +the tenth day of the seventh month, you shall + and not do any work— +humble yourselves +whether the native or the foreigner who resides +because on this day atonement +among you— +will be made for you to cleanse you, and you +31 +will be clean from all your sins before the LORD. +It is a Sabbath of complete rest for you, that +you may humble yourselves; it is a permanent +statute. + +b 13 The Testimony +c 29 + +afflict your souls + +deny + refers to the +or + +Literally + +; similarly twice in verse 10 and once in verse 26 +yourselves +stone tablets in the ark of the covenant inscribed with the Ten Commandments. + +Or + +; also in verse 31 + + 112 | Leviticus 16:32 + +32 + +33 + +The priest who is anointed and ordained to +succeed his father as high priest shall make +atonement. He will put on the sacred linen gar- + a +and make atonement for the Most Holy +ments +Place, + the Tent of Meeting, and the altar, and for +34 +the priests and all the people of the assembly. +This is to be a permanent statute for you, to +make atonement once a year for the Israelites +because of all their sins.” + +And all this was done as the LORD had com- +The Place of Sacrifice +manded Moses. + +2 + +17 + +b + +“Speak to +Then the LORD said to Moses, +Aaron, his sons, and all the Israelites and +3 +tell them this is what the LORD has commanded: +‘Anyone from the house of Israel who slaugh- +4 +ters an ox, + a lamb, or a goat in the camp or out- +instead of bringing it to the entrance to +side of it +the Tent of Meeting to present it as an offering to +the LORD before His tabernacle—that man shall +incur bloodguilt. He has shed blood and must be +5 +cut off from among his people. + +6 + +For this reason the Israelites will bring to the +LORD the sacrifices they have been offering in +the open fields. They are to bring them to the +priest at the entrance to the Tent of Meeting and +offer them as sacrifices of peace offerings to the +LORD. +The priest will then splatter the blood on +the altar of the LORD at the entrance to the Tent +of Meeting and burn the fat as a pleasing aroma +7 +to the LORD. + c + +They must no longer offer their sacrifices to the +goat demons + to which they have prostituted +themselves. This will be a permanent statute for +8 +them for the generations to come.’ + +9 + +Tell them that if anyone from the house of Israel +or any foreigner living among them offers a +burnt offering or a sacrifice +but does not bring +it to the entrance to the Tent of Meeting to sacri- +fice it to the LORD, that man must be cut off from +Laws against Eating Blood +his people. +10 + +11 + +If anyone from the house of Israel or a for- +eigner living among them eats any blood, I will +set My face against that person and cut him off +from among his people. + of the +flesh is in the blood, and I have given it to you to +a 33 +make atonement for your souls upon the altar; +e 5 +Or + +the Holy Sanctuary b 3 + +For the life + +a cow + +a bull + +c 7 + +Or + + d + +12 + +for it is the blood that makes atonement for the +Therefore I say to the Israelites, ‘None of +soul. +you may eat blood, nor may any foreigner living +13 +among you eat blood.’ + +14 + +And if any Israelite or foreigner living among +them hunts down a wild animal or bird that may +be eaten, he must drain its blood and cover it +For the life of all flesh is its blood. +with dirt. +Therefore I have told the Israelites, ‘You must not +eat the blood of any living thing, because the life +of all flesh is its blood; whoever eats it must be +15 +cut off.’ + +And any person, whether native or foreigner, +who eats anything found dead or mauled by wild +beasts must wash his clothes and bathe with +water, and he will be unclean until evening; then +But if he does not wash his +he will be clean. +clothes and bathe himself, then he shall bear his +Unlawful Sexual Relations (Matthew 5:27–30) +iniquity.” + +16 + +2 + +18 + +3 + +“Speak to +Then the LORD said to Moses, +the Israelites and tell them: I am the +You must not follow the prac- +LORD your God. +tices of the land of Egypt, where you used to live, +and you must not follow the practices of the land +of Canaan, into which I am bringing you. You +4 +must not walk in their customs. + +5 + +You are to practice My judgments and keep My +statutes by walking in them. I am the LORD your +e +God. +Keep My statutes and My judgments, for +the man who does these things will live by them. +6 +I am the LORD. + +f +None of you are to approach any close relative + +7 +to have sexual relations. + + I am the LORD. + +You must not expose the nakedness of your fa- +ther by having sexual relations with your +mother. She is your mother; you must not have +8 +sexual relations with her. + +You must not have sexual relations with your + +9 +father’s wife; it would dishonor your father. + +You must not have sexual relations with your +sister, either your father’s daughter or your +mother’s daughter, whether she was born in the +10 +same home or elsewhere. + +goat idols + +You must not have sexual relations with your +son’s daughter or your daughter’s daughter, for +that would shame your family. +f 6 +Literally + +to uncover (their) nakedness + +; also in verse 14 + +the soul + +d 11 + +Literally + +; + + or +Cited in Romans 10:5 and Galatians 3:12; see also Ezekiel 20:11, 13, and 21. + +Or + +here and throughout this chapter + + 11 + +You must not have sexual relations with the +daughter of your father’s wife, born to your +12 +father; she is your sister. + +You must not have sexual relations with your +13 +father’s sister; she is your father’s close relative. + +You must not have sexual relations with your +mother’s sister, for she is your mother’s close +14 +relative. + +You must not dishonor your father’s brother +by approaching his wife to have sexual relations +15 +with her; she is your aunt. + +You must not have sexual relations with your +daughter-in-law. She is your son’s wife; you are +16 +not to have sexual relations with her. + +You must not have sexual relations with your +17 +brother’s wife; that would shame your brother. + +You must not have sexual relations with both +a woman and her daughter. You are not to marry +her son’s daughter or her daughter’s daughter +and have sexual relations with her. They are +18 +close relatives; it is depraved. + +You must not take your wife’s sister as a rival +wife and have sexual relations with her while +19 +your wife is still alive. + +You must not approach a woman to have sex- +ual relations with her during her menstrual pe- +20 +riod. + +You must not lie carnally with your neighbor’s + +21 +wife and thus defile yourself with her. + + a + +You must not give any of your children to be + to Molech, for you must not profane + +sacrificed +22 +the name of your God. I am the LORD. + +You must not lie with a man as with a woman; + +23 +that is an abomination. + +You must not lie carnally with any animal, thus +defiling yourself with it; a woman must not stand +before an animal to mate with it; that is a perver- +24 +sion. + +Do not defile yourselves by any of these prac- +tices, for by all these things the nations I am driv- +25 +ing out before you have defiled themselves. +Even the land has become defiled, so I am +punishing it for its sin, and the land will vomit +26 +out its inhabitants. + +19 + +Leviticus 19:14 | 113 + +27 + +28 + +For the men +foreigner who lives among you. +who were in the land before you committed all +these abominations, and the land has become de- +filed. +So if you defile the land, it will vomit you +29 +out as it spewed out the nations before you. + +30 + +Therefore anyone who commits any of these +abominations must be cut off from among his +people. +You must keep My charge not to prac- +tice any of the abominable customs that were +practiced before you, so that you do not defile +Commandments for Holiness +yourselves by them. I am the LORD your God.” + +2 + +b + +“Speak to +Then the LORD said to Moses, +the whole congregation of Israel and tell +them: Be holy because I, the LORD your God, am +3 +holy. + +Each of you must respect his mother and father, +and you must keep My Sabbaths. I am the LORD +4 +your God. + +Do not turn to idols or make for yourselves mol- + +5 +ten gods. I am the LORD your God. + +6 + +7 + +When you sacrifice a peace offering to the +LORD, you shall offer it for your acceptance. +It +shall be eaten on the day you sacrifice it, or on +the next day; but what remains on the third day +must be burned up. +If any of it is eaten on the +8 +third day, it is tainted and will not be accepted. +Whoever eats it will bear his iniquity, for he has +profaned what is holy to the LORD. That person +Love Your Neighbor (Romans 13:8–10) +must be cut off from his people. +9 + +10 + +When you reap the harvest of your land, you are +not to reap to the very edges of your field or +gather the gleanings of your harvest. +You must +not strip your vineyard bare or gather its fallen +grapes. Leave them for the poor and the for- +11 +eigner. I am the LORD your God. + +You must not steal. You must not lie or deceive + +12 +one another. + +You must not swear falsely by My name and so + +13 +profane the name of your God. I am the LORD. + +You must not defraud your neighbor or rob + +him. + +You must not withhold until morning the wages +14 +due a hired hand. + +But you are to keep My statutes and ordi- +nances, and you must not commit any of these +to make them pass through (the fire) +a 21 +abominations—neither your native-born nor the + +b 2 + +You must not curse the deaf or place a stum- +bling block before the blind, but you shall fear +your God. I am the LORD. + +Hebrew + +Cited in 1 Peter 1:16 + + 114 | Leviticus 19:15 + +15 + +29 + +You must not pervert justice; you must not +show partiality to the poor or favoritism to the +16 +rich; you are to judge your neighbor fairly. + +You must not defile your daughter by making +her a prostitute, or the land will be prostituted +30 +and filled with depravity. + +You must not go about spreading slander + + a + +among your people. + +You must not endanger the life +17 +bor. I am the LORD. + + of your neigh- + +18 + +You must not harbor hatred against your +brother in your heart. Directly rebuke your +neighbor, so that you will not incur guilt on +account of him. +Do not seek revenge or bear a +grudge against any of your people, but love your +Keep My Statutes +neighbor as yourself. +19 + + I am the LORD. + +b + +You are to keep My statutes. You shall not +crossbreed two different kinds of livestock; you +shall not sow your fields with two kinds of seed; +and you shall not wear clothing made of two +20 +kinds of material. + +21 + +If a man lies carnally with a slave girl promised +to another man but who has not been redeemed +or given her freedom, there must be due punish- +ment. But they are not to be put to death, because +The man, however, +she had not been freed. +must bring a ram to the entrance to the Tent of +The +Meeting as his guilt offering to the LORD. +priest shall make atonement on his behalf before +the LORD with the ram of the guilt offering for +the sin he has committed, and he will be forgiven +23 +the sin he has committed. + +22 + +c + +When you enter the land and plant any kind of +tree for food, you shall regard the fruit as forbid- +24 +den. + For three years it will be forbidden to you +and must not be eaten. +In the fourth year all its +25 +fruit must be consecrated as a praise offering to +But in the fifth year you may eat its +the LORD. +fruit; thus your harvest will be increased. I am +26 +the LORD your God. + +You must not eat anything with blood still in it. + +27 +You must not practice divination or sorcery. + +You must not cut off the hair at the sides of + +28 +your head or clip off the edges of your beard. + +You must not make any cuts in your bodies for +the dead or put tattoo marks on yourselves. I am +a 16 +the LORD. + +blood + +b 18 + +c 23 + +as uncircumcised + +You must keep My Sabbaths and have rever- + +31 +ence for My sanctuary. I am the LORD. + +You must not turn to mediums or spiritists; do +not seek them out, or you will be defiled by them. +32 +I am the LORD your God. + +You are to rise in the presence of the elderly, +honor the aged, and fear your God. I am the +33 +LORD. + +34 + +When a foreigner resides with you in your +You must +land, you must not oppress him. +treat the foreigner living among you as native- +born and love him as yourself, for you were for- +eigners in the land of Egypt. I am the LORD your +35 +God. + +36 + +e + +You must not use dishonest measures of +You shall maintain + and + I am the LORD your God, who + +length, weight, or volume. +honest scales and weights, an honest ephah, +an honest hin. +37 +brought you out of the land of Egypt. + +d + +You must keep all My statutes and all My ordi- + +Punishments for Disobedience +nances and follow them. I am the LORD.” +(Leviticus 26:14–39 ; Deuteronomy 28:15–68) + +2 + +20 + +Then the LORD said to Moses, +Israelites, + +“Tell the +‘Any Israelite or foreigner +living in Israel who gives any of his children to +3 +Molech must be put to death. The people of the +And I will set My face +land are to stone him. +against that man and cut him off from his people, +because by giving his offspring to Molech, he has +defiled My sanctuary and profaned My holy +4 +name. + +And if the people of the land ever hide their eyes +5 +and fail to put to death the man who gives one of +then I will set My face +his children to Molech, +against that man and his family and cut off from +among their people both him and all who follow +6 +him in prostituting themselves with Molech. + +Whoever turns to mediums or spiritists to +prostitute himself with them, I will also set My +face against that person and cut him off from his +people. + +d 36 An ephah + +Literally + +Galatians 5:14, and James 2:8 +approximately 20 dry quarts or 22 liters. + +Cited in Matthew 5:43, Matthew 19:19, Matthew 22:39, Mark 12:31, Luke 10:27, Romans 13:9, +; twice in this verse + + is a dry measure of + is a liquid measure of approximately 0.97 gallons or 3.67 liters. + +e 36 A hin + +Hebrew + + 7 + +8 + + a + +Consecrate yourselves, therefore, and be holy, +because I am the LORD your God. +And you shall +keep My statutes and practice them. I am the +9 +LORD who sanctifies you. + +b +If anyone curses +be put to death. +Punishments for Sexual Immorality +mother; his blood shall be upon him. +(Proverbs 5:1–23 ; 1 Corinthians 5:1–8) + + his father or mother, he must + He has cursed his father or + +10 + +If a man commits adultery with another man’s +wife—with the wife of his neighbor—both the +adulterer and the adulteress must surely be put +11 +to death. + +If a man lies with his father’s wife, he has un- +covered his father’s nakedness. Both must surely +12 +be put to death; their blood is upon them. + +If a man lies with his daughter-in-law, both +must surely be put to death. They have acted per- +13 +versely; their blood is upon them. + +If a man lies with a man as with a woman, they +have both committed an abomination. They must +14 +surely be put to death; their blood is upon them. + +If a man marries both a woman and her +mother, it is depraved. Both he and they must be +burned in the fire, so that there will be no de- +15 +pravity among you. + +If a man lies carnally with an animal, he must +be put to death. And you are also to kill the ani- +16 +mal. + +If a woman approaches any animal to mate +with it, you must kill both the woman and the +animal. They must surely be put to death; their +17 +blood is upon them. + +c + +If a man marries his sister, whether the daugh- +ter of his father or of his mother, and they have +sexual relations, + it is a disgrace. They must be +cut off in the sight of their people. He has uncov- +ered the nakedness of his sister; he shall bear his +18 +iniquity. + +d + +If a man lies with a menstruating woman and +has sexual relations with her, + he has exposed +the source of her flow, and she has uncovered the +source of her blood. Both of them must be cut off +19 +from among their people. + +You must not have sexual relations with the +b 9 +reviles +a 9 +sister of your mother or your father, for it is +sees her nakedness and she sees his nakedness + +dishonors + +d 18 + +Or + + or + +; similarly again in this verse + +Leviticus 21:6 | 115 + +exposing one’s own kin; both shall bear their +20 +iniquity. + +If a man lies with his uncle’s wife, he has un- +covered the nakedness of his uncle. They will +21 +bear their sin; they shall die childless. + +If a man marries his brother’s wife, it is an act +of impurity. He has uncovered the nakedness of +Distinguish between Clean and Unclean +his brother; they shall be childless. +22 + +23 + +You are therefore to keep all My statutes and +ordinances, so that the land where I am bringing +You must not +you to live will not vomit you out. +follow the statutes of the nations I am driving out +before you. Because they did all these things, I +24 +abhorred them. + +But I have told you that you will inherit their +land, since I will give it to you as an inheritance— +a land flowing with milk and honey. I am the +LORD your God, who has set you apart from the +25 +peoples. + +You are therefore to distinguish between clean +and unclean animals and birds. Do not become +contaminated by any animal or bird, or by any- +thing that crawls on the ground; I have set these +You are to be holy to +apart as unclean for you. +Me because I, the LORD, am holy, and I have set +27 +you apart from the nations to be My own. + +26 + +A man or a woman who is a medium or spiritist +must surely be put to death. They shall be stoned; +Holiness Required of Priests +their blood is upon them.’ + +” + +21 + +2 + +Then the LORD said to Moses, “Speak to +Aaron’s sons, the priests, and tell them +that a priest is not to defile himself for a dead +except for his imme- +person among his people, +3 +diate family—his mother, father, son, daughter, +or brother, +or his unmarried sister who is near +He is not to +to him, since she has no husband. +defile himself for those related to him by mar- +5 +riage, and so profane himself. + +4 + +6 + +Priests must not make bald spots on their +heads, shave off the edges of their beards, or +They must be holy to +make cuts in their bodies. +their God and not profane the name of their God. +Because they present to the LORD the food offer- +and he +ings, the food of their God, they must be holy. + +c 17 + +uncovers her nakedness +Cited in Matthew 15:4 and Mark 7:10 + +Literally + +Literally + +; similarly in verse 19 + + 116 | Leviticus 21:7 + +7 + +A priest must not marry a woman defiled by +8 +prostitution or divorced by her husband, for the +You are to regard him +priest is holy to his God. +as holy, since he presents the food of your God. +He shall be holy to you, because I the LORD +If a priest’s +am holy—I who set you apart. +daughter defiles herself by prostituting herself, +she profanes her father; she must be burned in +10 +the fire. + +9 + + a + +11 + +The priest who is highest among his brothers, +who has had the anointing oil poured on his head +and has been ordained to wear the priestly gar- + or tear +ments, must not let his hair hang loose +He must not go near any dead +his garments. +body; he must not defile himself, even for his fa- +He must not leave or desecrate +ther or mother. +the sanctuary of his God, for the consecration of +the anointing oil of his God is on him. I am the +13 +LORD. + +14 + +12 + +15 + +The woman he marries must be a virgin. + +He +is not to marry a widow, a divorced woman, or +one defiled by prostitution. He is to marry a vir- +so that he does not +gin from his own people, +defile his offspring among his people, for I am the +Restrictions against Those with Blemishes +LORD who sanctifies him.” +16 + +17 + +Then the LORD said to Moses, + +“Say to Aaron, +‘For the generations to come, none of your de- +scendants who has a physical defect may ap- +18 +proach to offer the food of his God. + +19 + +No man who has any defect may approach— +no man who is blind, lame, disfigured, or de- +20 +no man who has a broken foot or +formed; +hand, +or who is a hunchback or dwarf, or who +has an eye defect, a festering rash, scabs, or a +21 +crushed testicle. + +23 + +22 + +No descendant of Aaron the priest who has a +defect shall approach to present the food offer- +ings to the LORD. Since he has a defect, he is not +He +to come near to offer the food of his God. +may eat the most holy food of his God as well as +but because he has a defect, he +the holy food, +must not go near the veil or approach the altar, +so as not to desecrate My sanctuaries. For I am +24 +the LORD who sanctifies them.’ + +” + +Moses told this to Aaron and his sons and to all + +a 10 +the Israelites. + +must not uncover his head + +b 4 + +Restrictions against the Unclean + +2 + +22 + +“Tell Aa- +Then the LORD said to Moses, +ron and his sons to treat with respect the +sacred offerings that the Israelites have conse- +crated to Me, so that they do not profane My holy +3 +name. I am the LORD. + +Tell them that for the generations to come, if +any of their descendants in a state of uncleanness +approaches the sacred offerings that the Israel- +ites consecrate to the LORD, that person must be +4 +cut off from My presence. I am the LORD. + + b + +5 + +If a descendant of Aaron has a skin disease + + or +a discharge, he may not eat the sacred offerings +until he is clean. Whoever touches anything de- +filed by a corpse or by a man who has an emis- +sion of semen, +or whoever touches a crawling +creature or a person that makes him unclean, +whatever the uncleanness may be— +the man +who touches any of these will remain unclean +until evening. He must not eat from the sacred of- +7 +ferings unless he has bathed himself with water. + +6 + +8 + +When the sun has set, he will become clean, and +then he may eat from the sacred offerings, for +they are his food. +He must not eat anything +found dead or torn by wild animals, which would +make him unclean. I am the LORD. +The priests +must keep My charge, lest they bear the guilt and +die because they profane it. I am the LORD who +10 +sanctifies them. + +9 + +11 + +No one outside a priest’s family may eat the sa- +cred offering, nor may the guest of a priest or his +hired hand eat it. +But if a priest buys a slave +with his own money, or if a slave is born in his +12 +household, that slave may eat his food. + +13 + +If the priest’s daughter is married to a man +other than a priest, she is not to eat of the sacred +contributions. +But if a priest’s daughter with +no children becomes widowed or divorced and +returns to her father’s house, she may share her +father’s food as in her youth. But no outsider may +14 +share it. + +15 + +16 + +If anyone eats a sacred offering in error, he +must add a fifth to its value and give the sacred +offering to the priest. +The priests must not pro- +fane the sacred offerings that the Israelites pre- +sent to the LORD +by allowing the people to eat +the sacred offerings and thus to bear the punish- +ment for guilt. For I am the LORD who sanctifies +them.” + +leprosy + +tzaraath + +Or + +Forms of the Hebrew + +, traditionally translated as + +, were used for + +various skin diseases; see Leviticus 13. + + Worthy Offerings + +Feasts and Sabbaths (Exodus 23:14–19) + +Leviticus 23:14 | 117 + +17 + +18 + +Then the LORD said to Moses, + +“Speak to +Aaron and his sons and all the Israelites and tell +them, ‘Any man of the house of Israel or any +foreign resident who presents a gift for a burnt +19 +offering to the LORD, whether to fulfill a vow or +must offer an unblem- +as a freewill offering, +ished male from the cattle, sheep, or goats in +You +order for it to be accepted on your behalf. +must not present anything with a defect, because +21 +it will not be accepted on your behalf. + +20 + +When a man presents a peace offering to the +LORD from the herd or flock to fulfill a vow or as +22 +a freewill offering, it must be without blemish or +You are not to present +defect to be acceptable. +to the LORD any animal that is blind, injured, or +maimed, or anything with a running sore, a fes- +tering rash, or a scab; you must not put any of + a +23 +these on the altar as a food offering to the LORD. + +24 + +You may present as a freewill offering an ox +or sheep that has a deformed or stunted limb, but +You +it is not acceptable in fulfillment of a vow. +are not to present to the LORD an animal whose +testicles are bruised, crushed, torn, or cut; you +are not to sacrifice them in your land. +Neither +you nor a foreigner shall present food to your +God from any such animal. They will not be +accepted on your behalf, because they are de- +b +26 +formed and flawed.’ + +” + +25 + +27 + +Then the LORD said to Moses, + +“When an ox, + +28 + +a sheep, or a goat is born, it must remain with its +mother for seven days. From the eighth day on, it + c +will be acceptable as a food offering presented to +the LORD. +29 +or a sheep on the same day as its young. + +But you must not slaughter an ox + +30 + +When you sacrifice a thank offering to the +LORD, offer it so that it may be acceptable on +It must be eaten that same day. Do +your behalf. +31 +not leave any of it until morning. I am the LORD. + +32 + +33 + +You are to keep My commandments and prac- +You must not pro- +tice them. I am the LORD. +fane My holy name. I must be acknowledged as +holy among the Israelites. I am the LORD who +who brought you out of the land +sanctifies you, +of Egypt to be your God. I am the LORD.” +b 27 +a 23 +e 6 +f 13 Two-tenths of an ephah + +a cow + +a cow + +a bull + +a calf + +c 28 + +d 5 + + or + +Or + +Or + +Or + +23 + +2 + +“Speak to +Then the LORD said to Moses, +the Israelites and say to them, ‘These are +My appointed feasts, the feasts of the LORD that +3 +you are to proclaim as sacred assemblies. + +For six days work may be done, but the seventh +day is a Sabbath of complete rest, a day of sacred +assembly. You must not do any work; wherever +Passover and the Feast of Unleavened Bread +you live, it is a Sabbath to the LORD. +(Ex. 12:14–28 ; Num. 28:16–25 ; De. 16:1–8) + +4 + + d + +5 + +7 + +These are the LORD’s appointed feasts, the sa- +cred assemblies you are to proclaim at their ap- +The Passover to the LORD begins +pointed times. +6 + day of the first +at twilight on the fourteenth + e +On the fifteenth day of the same month +month. + to the +begins the Feast of Unleavened Bread +LORD. For seven days you must eat unleavened +On the first day you are to hold a sacred +bread. +8 +assembly; you are not to do any regular work. +For seven days you are to present a food offer- +ing to the LORD. On the seventh day there shall +be a sacred assembly; you must not do any regu- +The Feast of Firstfruits +lar work.’ +9 + +10 + +” + +11 + +And the LORD said to Moses, + +“Speak to the Is- +raelites and say, ‘When you enter the land that I +am giving you and you reap its harvest, you are +to bring to the priest a sheaf of the firstfruits of +And he shall wave the sheaf be- +your harvest. +fore the LORD so that it may be accepted on your +behalf; the priest is to wave it on the day after the +12 +Sabbath. + +13 + +On the day you wave the sheaf, you shall offer +a year-old lamb without blemish as a burnt offer- +along with its grain offering of +ing to the LORD, + mixed with +two-tenths of an ephah of fine flour +oil—a food offering to the LORD, a pleasing +aroma—and its drink offering of a quarter hin of +14 +wine. + +g + + f + +You must not eat any bread or roasted or new +grain until the very day you have brought this +offering to your God. This is to be a permanent +statute for the generations to come, wherever +you live. + +begins between the two evenings of the fourteenth + +That is, the seven-day period after the Passover during which no leaven may be eaten; see Exodus 12:14-20. + +g 13 A quarter hin + + is approximately 4 dry quarts or 4.4 liters (probably about 5.1 pounds or 2.3 kilograms of + +flour); also in verse 17. + + is approximately 0.97 quarts or 0.92 liters of wine. + +Hebrew + + 118 | Leviticus 23:15 + +The Feast of Weeks (Acts 2:1–13) + +28 + +15 + +16 + +From the day after the Sabbath, the day you +brought the sheaf of the wave offering, you are to +count off seven full weeks. +You shall count off +fifty days until the day after the seventh Sabbath, +and then present an offering of new grain to the +17 +LORD. + +Bring two loaves of bread from your dwellings +as a wave offering, each made from two-tenths of +an ephah of fine flour, baked with leaven, as the +18 +firstfruits to the LORD. + +Along with the bread you are to present seven +unblemished male lambs a year old, one young +bull, and two rams. They will be a burnt offering +to the LORD, together with their grain offerings +and drink offerings—a food offering, a pleasing +19 +aroma to the LORD. + +20 + +You shall also prepare one male goat as a sin +offering and two male lambs a year old as a peace +offering. +The priest is to wave the lambs as a +wave offering before the LORD, together with the +bread of the firstfruits. The bread and the two +21 +lambs shall be holy to the LORD for the priest. + +On that same day you are to proclaim a +sacred assembly, and you must not do any regu- +lar work. This is to be a permanent statute wher- +22 +ever you live for the generations to come. + +When you reap the harvest of your land, do not +reap all the way to the edges of your field or +gather the gleanings of your harvest. Leave them +for the poor and the foreign resident. I am the +The Feast of Trumpets +LORD your God.’ +” +(Numbers 29:1–6) + +23 + +24 + +The LORD also said to Moses, + +“Speak to the +Israelites and say, ‘On the first day of the seventh +month you are to have a day of rest, a sacred as- +sembly announced by trumpet blasts. +You +must not do any regular work, but you are to pre- +The Day of Atonement +sent a food offering to the LORD.’ +(Leviticus 16:1–34 ; Numbers 29:7–11) + +25 + +” + +a + +26 + +27 + +b + +Again the LORD said to Moses, + +“The tenth +day of this seventh month is the Day of Atone- +ment. You shall hold a sacred assembly and hum- +ble yourselves, + and present a food offering to +a 24 +the LORD. +c 34 +ters + +a sacred assembly, a memorial of shouting + +b 27 + +Or + +29 + +On this day you are not to do any work, for it is +the Day of Atonement, when atonement is made +for you before the LORD your God. +If anyone +does not humble himself on this day, he must be +cut off from his people. +I will destroy from +among his people anyone who does any work on +31 +this day. + +30 + +32 + +You are not to do any work at all. This is a +permanent statute for the generations to come, +wherever you live. +It will be a Sabbath of com- +plete rest for you, and you shall humble your- +selves. From the evening of the ninth day of the +month until the following evening you are to +The Feast of Tabernacles +keep your Sabbath.” +(Nehemiah 8:13–18 ; Zechariah 14:16–21) + +33 + +34 + + c + +And the LORD said to Moses, + +“Speak to the +Israelites and say, ‘On the fifteenth day of the sev- +enth month the Feast of Tabernacles + to the +35 +LORD begins, and it continues for seven days. +36 +On the first day there shall be a sacred assem- +bly. You must not do any regular work. +For +seven days you are to present a food offering to +the LORD. On the eighth day you are to hold a sa- +cred assembly and present a food offering to the +LORD. It is a solemn assembly; you must not do +37 +any regular work. + +These are the LORD’s appointed feasts, which +you are to proclaim as sacred assemblies for +presenting food offerings to the LORD—burnt of- +ferings and grain offerings, sacrifices and drink +offerings, each on its designated day. +These +offerings are in addition to the offerings for the +LORD’s Sabbaths, and in addition to your gifts, to +all your vow offerings, and to all the freewill +39 +offerings you give to the LORD. + +38 + +On the fifteenth day of the seventh month, af- +ter you have gathered the produce of the land, +you are to celebrate a feast to the LORD for seven +days. There shall be complete rest on the first +40 +day and also on the eighth day. + + d + +41 + +On the first day you are to gather the fruit of +majestic trees, the branches of palm trees, and +the boughs of leafy trees and of willows + of +the brook. And you are to rejoice before the +LORD your God for seven days. +You are to cel- +ebrate this as a feast to the LORD for seven days +each year. This is a permanent statute for the +generations to come; you are to celebrate it in the +seventh month. + +deny yourselves + +afflict your souls + +the Feast of Booths +d 40 + +; also in verse 32 +poplars + or + +the Feast of Shel- + +Or +That is, Sukkot, the autumn feast of pilgrimage to Jerusalem; also translated as + and originally called + +the Feast of Ingathering + + (see Exodus 23:16 and Exodus 34:22). + +or + +Or + + 42 + + a + +You are to dwell in booths + + for seven days. All +43 +the native-born of Israel must dwell in booths, +so that your descendants may know that I +made the Israelites dwell in booths when I +brought them out of the land of Egypt. I am the +44 +LORD your God.’ + +” + +So Moses announced to the Israelites the ap- + +The Oil for the Lamps (Exodus 27:20–21) +pointed feasts of the LORD. + +2 + +24 + +“Com- +Then the LORD said to Moses, +mand the Israelites to bring you pure oil +of pressed olives for the light, to keep the lamps +3 +burning continually. + + b + +4 + +Outside the veil of the Testimony + + in the Tent +of Meeting, Aaron is to tend the lamps continu- +ally before the LORD from evening until morning. +This is to be a permanent statute for the genera- +tions to come. +He shall tend the lamps on +the pure gold lampstand before the LORD +The Showbread (Exodus 25:23–30 ; 37:10–16) +continually. +5 + +c + +6 + +You are also to take fine flour and bake twelve +loaves, using two-tenths of an ephah for each +loaf, +and set them in two rows—six per row— +on the table of pure gold before the LORD. +And +you are to place pure frankincense near each +row, so that it may serve as a memorial portion +8 +for the bread, a food offering to the LORD. + +7 + +9 + +Every Sabbath day the bread is to be set out +before the LORD on behalf of the Israelites as a +permanent covenant. +It belongs to Aaron and +his sons, who are to eat it in a holy place; for it is +to him a most holy part of the food offerings to +Punishment for Blasphemy +the LORD—his portion forever.” +10 + +11 + +Now the son of an Israelite mother and an +Egyptian father went out among the Israelites, +and a fight broke out in the camp between him +and an Israelite. +The son of the Israelite woman +blasphemed the Name with a curse. So they +brought him to Moses. (His mother’s name was +12 +Shelomith daughter of Dibri, of the tribe of Dan.) + +They placed him in custody until the will of the + +14 +13 +LORD should be made clear to them. + + d + +Then the LORD said to Moses, + +“Take the + outside the camp, and have all who + +a 42 +blasphemer + +tabernacles + +shelters + +Leviticus 25:7 | 119 + +heard him lay their hands on his head; then have +15 +the whole assembly stone him. + +16 + +And you are to tell the Israelites, ‘If anyone +curses his God, he shall bear the consequences of +his sin. +Whoever blasphemes the name of the +LORD must surely be put to death; the whole as- +sembly must surely stone him, whether he is a +foreign resident or native; if he blasphemes the +An Eye for an Eye (Matthew 5:38–48) +Name, he must be put to death. +17 + +18 + +19 + +And if a man takes the life of anyone else, he +Whoever kills an +must surely be put to death. +animal must make restitution—life for life. +If +anyone injures his neighbor, whatever he has +done must be done to him: +fracture for frac- +ture, eye for eye, tooth for tooth. + Just as he +injured the other person, the same must be in- +21 +flicted on him. + +20 + +e + +22 + +Whoever kills an animal must make restitu- +tion, but whoever kills a man must be put to +death. +You are to have the same standard of +law for the foreign resident and the native; for I +23 +am the LORD your God.’ +” + +Then Moses spoke to the Israelites, and they +took the blasphemer outside the camp and +stoned him. So the Israelites did as the LORD had +The Seventh Year (Ex. 23:10–13 ; De. 15:1–6) +commanded Moses. + +25 + +2 + +Then the LORD said to Moses on Mount +“Speak to the Israelites and say to +Sinai, +them: When you enter the land that I am giving +you, the land itself must observe a Sabbath to the +3 +LORD. + +4 + +For six years you may sow your field and prune +But in the +your vineyard and gather its crops. +seventh year there shall be a Sabbath of complete +rest for the land—a Sabbath to the LORD. + +5 + +6 + +You are not to sow your field or prune your vine- +You are not to reap the aftergrowth of +yard. +your harvest or gather the grapes of your un- +tended vines. The land must have a year of com- +Whatever the land yields during the +plete rest. +Sabbath year shall be food for you—for yourself, +your manservant and maidservant, the hired +and for +hand or foreigner who stays with you, +your livestock and the wild animals in your land. +All its growth may serve as food. + +7 + +b 3 The Testimony +c 5 Two-tenths of an ephah +the one + +Or +refers to the stone tablets in the ark of the covenant inscribed with the Ten Commandments. +who cursed +is approximately 4 dry quarts or 4.4 liters (probably about 5.1 pounds or 2.3 kilograms of flour). + +; twice in this verse, and also in verse 43; see the footnote for verse 34. + d 14 + +e 20 + + or + +Literally + +; also in verse 23 + +Cited in Matthew 5:38 + + 120 | Leviticus 25:8 + +The Year of Jubilee + +8 + +9 + +And you shall count off seven Sabbaths of +years—seven times seven years—so that the +seven Sabbaths of years amount to forty-nine +years. +Then you are to sound the horn far and +wide on the tenth day of the seventh month, the +Day of Atonement. You shall sound it throughout +10 +your land. + +So you are to consecrate the fiftieth year and +proclaim liberty in the land for all its inhabitants. +It shall be your Jubilee, when each of you is to re- +11 +turn to his property and to his clan. + +12 + +The fiftieth year will be a Jubilee for you; you +are not to sow the land or reap its aftergrowth or +For it is a Jubilee; +harvest the untended vines. +it shall be holy to you. You may eat only the crops +Return of Property +taken directly from the field. +13 + +In this Year of Jubilee, each of you shall return + +14 +to his own property. + +15 + +If you make a sale to your neighbor or a pur- +chase from him, you must not take advantage of +each other. +You are to buy from your neighbor +according to the number of years since the last +Jubilee; he is to sell to you according to the num- +ber of harvest years remaining. +You shall +increase the price in proportion to a greater +number of years, or decrease it in proportion to +a lesser number of years; for he is selling you a +17 +given number of harvests. + +16 + +Do not take advantage of each other, but fear + +The Blessing of Obedience (De. 28:1–14) +your God; for I am the LORD your God. +18 + +19 + +You are to keep My statutes and carefully ob- +serve My judgments, so that you may dwell se- +curely in the land. +Then the land will yield its +fruit, so that you can eat your fill and dwell in +20 +safety in the land. + +21 + +22 + +Now you may wonder, ‘What will we eat in the +seventh year if we do not sow or gather our pro- +duce?’ +But I will send My blessing upon you in +the sixth year, so that the land will yield a crop +sufficient for three years. +While you are sow- +ing in the eighth year, you will be eating from the +previous harvest, until the ninth year’s harvest +The Law of Redemption +comes in. +23 + +property you possess, you must provide for the +25 +redemption of the land. + +27 + +If your brother becomes impoverished and +sells some of his property, his nearest of kin may +26 +come and redeem what his brother has sold. +Or if a man has no one to redeem it for him, but +he prospers and acquires enough to redeem his +land, +he shall calculate the years since its sale, +repay the balance to the man to whom he sold it, +and return to his property. +But if he cannot +obtain enough to repay him, what he sold will +remain in possession of the buyer until the Year +of Jubilee. In the Jubilee, however, it is to be +29 +released, so that he may return to his property. + +28 + +30 + +If a man sells a house in a walled city, he +retains his right of redemption until a full year +after its sale; during that year it may be +redeemed. +If it is not redeemed by the end of +a full year, then the house in the walled city is +permanently transferred to its buyer and his +descendants. It is not to be released in the +Jubilee. +But houses in villages with no walls +around them are to be considered as open fields. +They may be redeemed, and they shall be re- +32 +leased in the Jubilee. + +31 + +33 + +As for the cities of the Levites, the Levites al- +ways have the right to redeem their houses in the +cities they possess. +So whatever belongs to the +Levites may be redeemed—a house sold in a city +they possess—and must be released in the Jubi- +lee, because the houses in the cities of the Levites +are their possession among the Israelites. +But +the open pastureland around their cities may not +Redemption of the Poor +be sold, for this is their permanent possession. +35 + +34 + +36 + +Now if your countryman becomes destitute +and cannot support himself among you, then you +are to help him as you would a foreigner or +stranger, so that he can continue to live among +you. +Do not take any interest or profit from +37 +him, but fear your God, that your countryman +may live among you. +You must not lend him +your silver at interest or sell him your food for +profit. +I am the LORD your God, who brought +you out of the land of Egypt to give you the land +Redemption of Bondmen +of Canaan and to be your God. +39 + +38 + +The land must not be sold permanently, be- +cause it is Mine, and you are but foreigners and +residents with Me. +Thus for every piece of + +24 + +40 + +If a countryman among you becomes destitute +and sells himself to you, then you must not force +him into slave labor. +Let him stay with you as +a hired worker or temporary resident; he is to + + 41 + +2 + +Leviticus 26:19 | 121 + +Then he +work for you until the Year of Jubilee. +and his children are to be released, and he may +return to his clan and to the property of his +42 +fathers. + +43 + +Because the Israelites are My servants, whom +I brought out of the land of Egypt, they are not to +be sold as slaves. +You are not to rule over them +44 +harshly, but you shall fear your God. + +45 + +Your menservants and maidservants shall +come from the nations around you, from whom +you may purchase them. +You may also pur- +chase them from the foreigners residing among +you or their clans living among you who are born +46 +in your land. These may become your property. +You may leave them to your sons after you to +inherit as property; you can make them slaves +for life. But as for your brothers, the Israelites, no +Redemption of Servants +man may rule harshly over his brother. +47 + +You must keep My Sabbaths and have rever- + +3 +ence for My sanctuary. I am the LORD. + +4 + +If you follow My statutes and carefully keep My +I will give you rains in their +commandments, +season, and the land will yield its produce, and +Your +the trees of the field will bear their fruit. +threshing will continue until the grape harvest, +and the grape harvest will continue until sowing +time; you will have your fill of food to eat and will +6 +dwell securely in your land. + +5 + +7 + +And I will give peace to the land, and you will lie +down with nothing to fear. I will rid the land of +dangerous animals, and no sword will pass +You will pursue your ene- +through your land. +8 +mies, and they will fall by the sword before you. +Five of you will pursue a hundred, and a hun- +dred of you will pursue ten thousand, and your +9 +enemies will fall by the sword before you. + +48 + +If a foreigner residing among you prospers, +but your countryman dwelling near him be- +comes destitute and sells himself to the foreigner +or to a member of his clan, +he retains the right +of redemption after he has sold himself. One of +his brothers may redeem him: +either his uncle +or cousin or any close relative from his clan may +redeem him. Or if he prospers, he may redeem +50 +himself. + +49 + +51 + +52 + +He and his purchaser will then count the time +from the year he sold himself up to the Year of +Jubilee. The price of his sale will be determined +by the number of years, based on the daily wages +of a hired hand. +If many years remain, he must +pay for his redemption in proportion to his pur- +chase price. +If only a few years remain until the +Year of Jubilee, he is to calculate and pay his re- +demption according to his remaining years. +He +shall be treated like a man hired from year to +year, but a foreign owner must not rule over him +54 +harshly in your sight. + +53 + +55 + +Even if he is not redeemed in any of these +ways, he and his children shall be released in +the Year of Jubilee. +For the Israelites are My +servants. They are My servants, whom I brought +Additional Blessings of Obedience +out of the land of Egypt. I am the LORD your God. + +26 + + b + + a + +10 + +I will turn toward you and make you fruitful and +multiply you, and I will establish My covenant +with you. +You will still be eating the old supply +of grain when you need to clear it out to make +11 +room for the new. + +And I will make My dwelling place + +12 + among +you, and My soul will not despise +I will +13 +walk among you and be your God, and you will +I am the LORD your God, who +be My people. +brought you out of the land of Egypt so that you +would no longer be slaves to the Egyptians. I +broke the bars of your yoke and enabled you to +Punishments for Disobedience +walk in uprightness. +(Leviticus 20:1–9 ; Deuteronomy 28:15–68) + + you. + +c + +14 + +15 + +If, however, you fail to obey Me and to carry +and if you reject +out all these commandments, +My statutes, despise My ordinances, and neglect +16 +to carry out all My commandments, and so break +then this is what I will do to you: +My covenant, +I will bring upon you sudden terror, wasting dis- +ease, and fever that will destroy your sight and +drain your life. You will sow your seed in vain, +And I will set +because your enemies will eat it. +My face against you, so that you will be defeated +by your enemies. Those who hate you will rule +over you, and you will flee when no one pursues +18 +you. + +17 + +“You must not make idols for yourselves +or set up a carved image or sacred pillar; +you must not place a sculpted stone in your land +a 11 +to bow down to it. For I am the LORD your God. +; also in verse 30 + +My tabernacle + +reject + +b 11 + +Or + +Or + +c 12 + +And if after all this you will not obey Me, I will +19 +proceed to punish you sevenfold for your sins. +I will break down your stubborn pride and +make your sky like iron and your land like +Cited in 2 Corinthians 6:16 + + 122 | Leviticus 26:20 + +20 + +and your strength will be spent in vain. +bronze, +For your land will not yield its produce, and the +21 +trees of the land will not bear their fruit. + +22 + +If you walk in hostility toward Me and refuse +to obey Me, I will multiply your plagues seven +times, according to your sins. +I will send wild +animals against you to rob you of your children, +destroy your livestock, and reduce your num- +23 +bers, until your roads lie desolate. + +24 + +25 + +And if in spite of these things you do not +accept My discipline, but continue to walk in hos- +tility toward Me, +then I will act with hostility +toward you, and I will strike you sevenfold for +your sins. +And I will bring a sword against you +to execute the vengeance of the covenant. +Though you withdraw into your cities, I will send +a plague among you, and you will be delivered +into the hand of the enemy. +When I cut off your +supply + of bread, ten women will bake your +bread in a single oven and dole out your bread by +27 +weight, so that you will eat but not be satisfied. + +26 + + a + +28 + +But if in spite of all this you do not obey Me, but +continue to walk in hostility toward Me, +then I +29 +will walk in fury against you, and I, even I, will +30 +punish you sevenfold for your sins. +You will +eat the flesh of your own sons and daughters. +I +will destroy your high places, cut down your in- +cense altars, and heap your lifeless bodies on the +lifeless remains of your idols; and My soul will +31 +despise you. + +32 + +I will reduce your cities to rubble and lay +waste your sanctuaries, and I will refuse to smell +the pleasing aroma of your sacrifices. +And I +will lay waste the land, so that your enemies who +dwell in it will be appalled. +But I will scatter +you among the nations and will draw out a sword +after you as your land becomes desolate and +34 +your cities are laid waste. + +33 + +35 + +Then the land shall enjoy its Sabbaths all the +days it lies desolate, while you are in the land of +your enemies. At that time the land will rest and +enjoy its Sabbaths. +As long as it lies desolate, +the land will have the rest it did not receive dur- +36 +ing the Sabbaths when you lived in it. + +As for those of you who survive, I will send a +faintness into their hearts in the lands of their en- +emies, so that even the sound of a windblown +leaf will put them to flight. And they will flee as +a 26 +one flees the sword, and fall when no one + +b 3 50 shekels + +staff + +37 + +pursues them. +They will stumble over one an- +other as before the sword, though no one is be- +hind them. So you will not be able to stand +38 +against your enemies. + +39 + +You will perish among the nations, and the +Those +land of your enemies will consume you. +of you who survive in the lands of your enemies +will waste away in their iniquity and will decay +God Remembers Those Who Repent +in the sins of their fathers. +40 + +41 + +But if they will confess their iniquity and that +of their fathers in the unfaithfulness that they +practiced against Me, by which they have also +and I acted +walked in hostility toward Me— +with hostility toward them and brought them +into the land of their enemies—and if their uncir- +cumcised hearts will be humbled and they will +then I will +make amends for their iniquity, +remember My covenant with Jacob and My cove- +nant with Isaac and My covenant with Abraham, +43 +and I will remember the land. + +42 + +For the land will be abandoned by them, and it +will enjoy its Sabbaths by lying desolate without +them. And they will pay the penalty for their in- +iquity, because they rejected My ordinances and +44 +abhorred My statutes. + +45 + +Yet in spite of this, when they are in the land of +their enemies, I will not reject or despise them so +as to destroy them and break My covenant with +But for their +them; for I am the LORD their God. +sake I will remember the covenant with their fa- +thers, whom I brought out of the land of Egypt in +the sight of the nations, that I might be their God. +46 +I am the LORD.” + +These are the statutes, ordinances, and laws +that the LORD established between Himself and +Rules about Valuations +the Israelites through Moses on Mount Sinai. + +2 + +b + +3 + +Then the LORD said to Moses, +“Speak to +the Israelites and say to them, ‘When +someone makes a special vow to the LORD in- +volving the value of persons, +if the valuation +concerns a male from twenty to sixty years of +age, then your valuation shall be fifty shekels of +silver, + according to the sanctuary shekel. +Or if +d +it is a female, then your valuation shall be thirty +And if the person is from five to +shekels. +twenty years of age, then your valuation for the + +c 3 A shekel + +5 + +4 + +c + +d 4 30 shekels + +27 + +Hebrew + + is approximately 1.26 pounds or 569.8 grams of silver; also in verse 16. + +weighed approximately 0.4 ounces or 11.4 grams; also in verse 25. +grams of silver. + + is approximately 12 ounces or 342 + + a + +20 + +Leviticus 27:34 | 123 + +b + +male shall be twenty shekels, +6 +ten shekels. + + and for the female + +c + +7 + +Now if the person is from one month to five +years of age, then your valuation for the male +d + and for the female +shall be five shekels of silver, +three shekels of silver. +And if the person is + e +sixty years of age or older, then your valuation +8 +shall be fifteen shekels + for the male and ten +But if the one making the +shekels for the female. +vow is too poor to pay the valuation, he is to pre- +sent the person + before the priest, who shall set +the value according to what the one making the +9 +vow can afford. + + f + +If he vows an animal that may be brought as an +10 +offering to the LORD, any such animal given to +He must not replace it +the LORD shall be holy. +or exchange it, either good for bad or bad for +good. But if he does substitute one animal for an- +other, both that animal and its substitute will be +11 +holy. + +12 + +But if the vow involves any of the unclean +animals that may not be brought as an offering +to the LORD, the animal must be presented +before the priest. +The priest shall set its value, +whether high or low; as the priest values it, the +price will be set. +If, however, the owner de- +cides to redeem the animal, he must add a fifth to +14 +its value. + +13 + +15 + +Now if a man consecrates his house as holy to +the LORD, then the priest shall value it either as +good or bad. The price will stand just as the +priest values it. +But if he who consecrated his +house redeems it, he must add a fifth to the as- +16 +sessed value, and it will belong to him. + +If a man consecrates to the LORD a parcel of +his land, then your valuation shall be propor- +tional to the seed required for it—fifty shekels of +silver for every homer of barley seed. +If he +consecrates his field during the Year of Jubilee, +18 +the price will stand according to your valuation. + +17 + +g + +But if he consecrates his field after the Jubilee, +the priest is to calculate the price in proportion +to the years left until the next Year of Jubilee, so +that your valuation will be reduced. +And if the +one who consecrated the field decides to redeem +it, he must add a fifth to the assessed value, and +a 5 20 shekels +it shall belong to him. + +19 + +c 6 5 shekels + +21 + +If, however, he does not redeem the field, or if +he has sold it to another man, it may no longer be +redeemed. +When the field is released in the Ju- +bilee, it will become holy, like a field devoted to +22 +the LORD; it becomes the property of the priests. + +23 + +Now if a man consecrates to the LORD a field +he has purchased, which is not a part of his own +then the priest shall calculate for +property, +him the value up to the Year of Jubilee, and the +24 +man shall pay the assessed value on that day as a +In the Year of Ju- +sacred offering to the LORD. +bilee the field shall return to the one from whom +25 +it was bought—the original owner of the land. +Every valuation will be according to the sanc- + +26 +tuary shekel, twenty gerahs to the shekel. + +h + +27 + +But no one may consecrate a firstborn of +the livestock, because a firstborn belongs to the +LORD. Whether it is an ox or a sheep, it is the +LORD’s. +But if it is among the unclean animals, +then he may redeem it according to your valua- +tion and add a fifth of its value. If it is not re- +deemed, then it shall be sold according to your +28 +valuation. + + i + +Nothing that a man sets apart + + to the LORD +from all he owns—whether a man, an animal, or +his inherited land—can be sold or redeemed; +29 +everything so devoted is most holy to the LORD. + +No person set apart for destruction may be + +Instruction on Tithes +ransomed; he must surely be put to death. +(De. 14:22–29 ; 26:1–15 ; Nehemiah 13:10–14) + +30 + +Thus any tithe from the land, whether from the +seed of the land or the fruit of the trees, belongs +to the LORD; it is holy to the LORD. +If a man +wishes to redeem part of his tithe, he must add a +32 +fifth to its value. + +31 + +33 + +Every tenth animal from the herd or flock that +passes under the shepherd’s rod will be holy to +the LORD. +He must not inspect whether it is +good or bad, and he shall not make any substitu- +tion. But if he does make a substitution, both the +animal and its substitute shall become holy; they +34 +cannot be redeemed.’ + +” + +These are the commandments that the LORD +gave to Moses for the Israelites on Mount Sinai. + +b 5 10 shekels + +d 6 3 shekels + + is approximately 8 ounces or 228 grams of silver. +e 7 15 shekels + + is approximately 2 ounces or 57 grams of silver. + + is approximately 4 ounces or 114 grams of +f 8 + is approximately 1.2 + +present himself + +cherem +barley seed). +Hebrew + + is a dry measure of approximately 6.24 bushels or 220 liters (probably about 291 pounds or 132 kilograms of + is equivalent to one shekel (approximately 0.4 ounces or 11.4 grams). + +Forms of the + + refer to the giving over of things or persons to the LORD; similarly in verse 29. + + is approximately 6 ounces or 171 grams of silver. + +Or + +i 28 + +silver; also in verse 7. +g 16 A homer +ounces or 34.2 grams of silver. + +h 25 20 gerahs + + Numbers + +The First Census of Israel + +(Numbers 26:1–4) + +1 + +On the first day of the second month of the +second year after the Israelites had come out +of the land of Egypt, the LORD spoke to Moses in +2 +the Tent of Meeting in the Wilderness of Sinai. He +“Take a census of the whole congregation +said: +of Israel by their clans and families, listing every +3 +man by name, one by one. + +You and Aaron are to number those who are +twenty years of age or older by their divisions— +And +everyone who can serve in Israel’s army. +one man from each tribe, the head of each family, +The Leaders of the Tribes +must be there with you. +5 + +4 + +These are the names of the men who are to as- + +sist you: + +From the tribe of Reuben, Elizur son of +6 +Shedeur; + +from Simeon, Shelumiel son of + +7 +Zurishaddai; +8 + +from Judah, Nahshon son of Amminadab; + +from Issachar, Nethanel son of Zuar; + +from Zebulun, Eliab son of Helon; + +from the sons of Joseph: + +from Ephraim, Elishama son of Ammihud, + +and from Manasseh, Gamaliel son of +Pedahzur; + +from Benjamin, Abidan son of Gideoni; + +from Dan, Ahiezer son of Ammishaddai; + +9 + +10 + +11 + +12 + +13 + +14 + +15 + +from Asher, Pagiel son of Ocran; + +from Gad, Eliasaph son of Deuel; + +16 + +and from Naphtali, Ahira son of Enan.” + +These men were appointed from the congrega- +tion; they were the leaders of the tribes of their +The Number of Every Tribe +fathers, the heads of the clans of Israel. +17 + +18 + +So Moses and Aaron took these men who had +and on the first day +been designated by name, +of the second month they assembled the whole + +congregation and recorded their ancestry by +clans and families, counting one by one the +19 +names of those twenty years of age or older, + +just as the LORD had commanded Moses. + +So Moses numbered them in the Wilderness of +20 +Sinai: + +From the sons of Reuben, the firstborn of +Israel, according to the records of their clans +and families, counting one by one the names +of every male twenty years of age or older +those regis- +who could serve in the army, +tered to the tribe of Reuben numbered +22 +46,500. + +21 + +23 + +From the sons of Simeon, according to the +records of their clans and families, counting +one by one the names of every male twenty +years of age or older who could serve in the +those registered to the tribe of Sim- +army, +24 +eon numbered 59,300. + +From the sons of Gad, according to the rec- +ords of their clans and families, counting the +names of all those twenty years of age or +those +older who could serve in the army, +registered to the tribe of Gad numbered +26 +45,650. + +25 + +From the sons of Judah, according to the +records of their clans and families, counting +the names of all those twenty years of age or +those +older who could serve in the army, +registered to the tribe of Judah numbered +28 +74,600. + +27 + +From the sons of Issachar, according to the +records of their clans and families, counting +the names of all those twenty years of age or +those +older who could serve in the army, +registered to the tribe of Issachar numbered +30 +54,400. + +29 + +From the sons of Zebulun, according to the +records of their clans and families, counting +the names of all those twenty years of age or +those +older who could serve in the army, +registered to the tribe of Zebulun numbered +57,400. + +31 + + 32 + +From the sons of Joseph: + +From the sons of Ephraim, according to +the records of their clans and families, +counting the names of all those twenty +years of age or older who could serve in +the army, +those registered to the tribe +34 +of Ephraim numbered 40,500. + +33 + +And from the sons of Manasseh, ac- +cording to the records of their clans and +families, counting the names of all those +35 +twenty years of age or older who could +serve in the army, +those registered to +the tribe of Manasseh numbered 32,200. + +36 + +From the sons of Benjamin, according to +the records of their clans and families, count- +ing the names of all those twenty years of age +37 +or older who could serve in the army, +those registered to the tribe of Benjamin + +38 +numbered 35,400. + +From the sons of Dan, according to the rec- +ords of their clans and families, counting the +names of all those twenty years of age or +older who could serve in the army, +those +registered to the tribe of Dan numbered +40 +62,700. + +39 + +From the sons of Asher, according to the +records of their clans and families, counting +the names of all those twenty years of age or +older who could serve in the army, +those +registered to the tribe of Asher numbered +42 +41,500. + +41 + +From the sons of Naphtali, according to the +records of their clans and families, counting +the names of all those twenty years of age or +older who could serve in the army, +those +registered to the tribe of Naphtali numbered +53,400. + +43 + +44 + +45 + +These were the men numbered by Moses and +Aaron, with the assistance of the twelve leaders +of Israel, each one representing his family. +So +all the Israelites twenty years of age or older who +could serve in Israel’s army were counted ac- +cording to their families. +And all those counted +The Exemption of the Levites +totaled 603,550. +47 + +46 + +The Levites, however, were not numbered +48 +along with them by the tribe of their fathers. +“Do not +number the tribe of Levi in the census with the +a 14 +other Israelites. +Instead, you are to appoint the + +For the LORD had said to Moses: + +50 + +49 + +Numbers 2:15 | 125 + +Levites over the tabernacle of the Testimony, all +its furnishings, and everything in it. They shall +carry the tabernacle and all its articles, care for +51 +it, and camp around it. + +Whenever the tabernacle is to move, the Le- +vites are to take it down, and whenever it is to be +pitched, the Levites are to set it up. Any outsider +52 +who goes near it must be put to death. + +53 + +The Israelites are to camp by their divisions, +each man in his own camp and under his own +But the Levites are to camp around +standard. +the tabernacle of the Testimony and watch over +it, so that no wrath will fall on the congregation +of Israel. So the Levites are responsible for the +54 +tabernacle of the Testimony.” + +Thus the Israelites did everything just as the + +The Order of the Camps +LORD had commanded Moses. + +2 + +2 +Then the LORD said to Moses and Aaron: +“The Israelites are to camp around the Tent +of Meeting at a distance from it, each man under +3 +his standard, with the banners of his family. + +On the east side, toward the sunrise, the divi- +sions of Judah are to camp under their standard: + +4 + +The leader of the Judahites is Nahshon son of +Amminadab, +and his division numbers +5 +74,600. + +6 + +The tribe of Issachar will camp next to it. +The leader of the Issacharites is Nethanel +son of Zuar, +and his division numbers +7 +54,400. + +8 + +Next will be the tribe of Zebulun. The leader +and + +of the Zebulunites is Eliab son of Helon, +9 +his division numbers 57,400. + +The total number of men in the divisions of +the camp of Judah is 186,400; they shall set +out first. + +10 + +On the south side, the divisions of Reuben are + +to camp under their standard: + +11 + +The leader of the Reubenites is Elizur son of +12 +Shedeur, +and his division numbers 46,500. + +13 + +The tribe of Simeon will camp next to it. +The leader of the Simeonites is Shelumiel son +of Zurishaddai, +and his division numbers +14 +59,300. + +a + +15 + +Next will be the tribe of Gad. The leader of +and + +the Gadites is Eliasaph son of Deuel, +his division numbers 45,650. + +Reuel + +Many MT manuscripts, SP, and Vulgate (see also Numbers 1:14); most MT manuscripts + + 126 | Numbers 2:16 + +16 + +2 + +The total number of men in the divisions +of the camp of Reuben is 151,450; they shall +set out second. + +17 + +In the middle of the camps, the Tent of Meeting +is to travel with the camp of the Levites. They are +to set out in the order they encamped, each in his +18 +own place under his standard. + +On the west side, the divisions of Ephraim are + +to camp under their standard: + +19 + +The leader of the Ephraimites is Elishama +and his division numbers +son of Ammihud, +20 +40,500. + +21 + +The tribe of Manasseh will be next to it. +The leader of the Manassites is Gamaliel son +and his division numbers +of Pedahzur, +22 +32,200. + +23 + +Next will be the tribe of Benjamin. The +leader of the Benjamites is Abidan son of +24 +and his division numbers 35,400. +Gideoni, +The total number of men in the divisions +of the camp of Ephraim is 108,100; they shall +set out third. +On the north side, the divisions of Dan are to + +25 + +camp under their standard: + +26 + +The leader of the Danites is Ahiezer son of +and his division numbers +Ammishaddai, +27 +62,700. + +The tribe of Asher will camp next to it. The +28 +leader of the Asherites is Pagiel son of Ocran, +29 + +and his division numbers 41,500. +Next will be the tribe of Naphtali. The +leader of the Naphtalites is Ahira son of +31 +Enan, + +and his division numbers 53,400. + +30 + +32 + +The total number of men in the camp of +Dan is 157,600; they shall set out last, under +their standards.” +These are the Israelites, numbered according +to their families. The total of those counted in the +camps, by their divisions, was 603,550. +But the +Levites were not counted among the other Isra- +34 +elites, as the LORD had commanded Moses. + +33 + +So the Israelites did everything the LORD com- +manded Moses; they camped under their stand- +ards in this way and set out in the same way, each +The Sons of Aaron (Leviticus 10:1–7) +man with his clan and his family. + +3 + +This is the account of Aaron and Moses at the +time the LORD spoke with Moses on Mount + +a 4 +Sinai. + +strange + +b 9 + +3 + +These are the names of the sons of Aaron: +Nadab the firstborn, then Abihu, Eleazar, and Ith- +amar. +These were Aaron’s sons, the anointed +4 +priests, who were ordained to serve as priests. + + a + +Nadab and Abihu, however, died in the pres- +ence of the LORD when they offered unauthor- +ized + fire before the LORD in the Wilderness of +Sinai. And since they had no sons, only Eleazar +and Ithamar served as priests during the lifetime +The Duties of the Levites +of their father Aaron. +5 + +6 + +7 + +8 + +Then the LORD said to Moses, + +“Bring the tribe +of Levi and present them to Aaron the priest to +They are to perform duties for him +assist him. +and for the whole congregation before the Tent +of Meeting, attending to the service of the taber- +They shall take care of all the furnishings +nacle. +of the Tent of Meeting and fulfill obligations for +the Israelites by attending to the service of the +9 +tabernacle. + + b + +10 + +Assign the Levites to Aaron and his sons; they +have been given exclusively to him + from among +So you shall appoint Aaron and +the Israelites. +his sons to carry out the duties of the priesthood; +but any outsider who approaches the tabernacle +11 +must be put to death.” + +12 + +Again the LORD spoke to Moses, saying, + +“Be- +hold, I have taken the Levites from among the +children of Israel in place of every firstborn Isra- +13 +elite from the womb. The Levites belong to Me, +for all the firstborn are Mine. On the day I +struck down every firstborn in the land of Egypt, +I consecrated to Myself all the firstborn in Israel, +both man and beast. They are Mine; I am the +The Numbering of the Levites +LORD.” +14 + +15 + +Then the LORD spoke to Moses in the Wilder- +ness of Sinai, saying, +“Number the Levites by +their families and clans. You are to count every +16 +male a month old or more.” + +So Moses numbered them according to the +17 +word of the LORD, as he had been commanded. + +18 + +19 + +These were the sons of Levi by name: Gershon, +Kohath, and Merari. +These were the names of +the sons of Gershon by their clans: Libni and +Shimei. +The sons of Kohath by their clans were +And the +Amram, Izhar, Hebron, and Uzziel. +sons of Merari by their clans were Mahli and +Mushi. These were the clans of the Levites, ac- +cording to their families. + +to Me + +20 + +Or + +Most MT manuscripts; some MT manuscripts, SP, and LXX (see also Numbers 8:16) + + The Gershonites (Num. 4:21-28 ; 1 Chr. 23:7-11) + +Moses and Aaron + +21 + +38 + +Numbers 4:3 | 127 + +From Gershon came the Libnite clan and the +22 +Shimeite clan; these were the Gershonite clans. +The number of all the males a month old or + +23 +more was 7,500. + +24 + +The Gershonite clans were to camp on the +west, behind the tabernacle, +and the leader of +the families of the Gershonites was Eliasaph son +25 +of Lael. + +26 + +The duties of the Gershonites at the Tent of +Meeting were the tabernacle and tent, its cover- +ing, the curtain for the entrance to the Tent of +Meeting, +the curtains of the courtyard, the cur- +tain for the entrance to the courtyard that sur- +rounds the tabernacle and altar, and the cords— +The Kohathites (Num. 4:1–20 ; 1 Chr. 23:12–20) +all the service for these items. +27 + +a + +From Kohath came the clans of the Amramites, +the Izharites, the Hebronites, and the Uzzielites; +The +these were the clans of the Kohathites. +number of all the males a month old or more was + They were responsible for the duties of +8,600. +29 +the sanctuary. + +28 + +30 + +The clans of the Kohathites were to camp on + b +and the leader + +the south side of the tabernacle, +of the families of the Kohathites was Elizaphan +31 +son of Uzziel. + +Their duties were the ark, the table, the +lampstand, the altars, the articles of the sanctu- +ary used with them, and the curtain—all the ser- +32 +vice for these items. + +The chief of the leaders of the Levites was +Eleazar son of Aaron the priest; he oversaw those +The Merarites (Num. 4:29–33 ; 1 Chr. 23:21–23) +responsible for the duties of the sanctuary. +33 + +From Merari came the clans of the Mahlites +34 +and Mushites; these were the Merarite clans. +The number of all the males a month old or + +35 +more was 6,200. + +The leader of the families of the Merarites was +Zuriel son of Abihail; they were to camp on the +36 +north side of the tabernacle. + +37 + +The duties assigned to the sons of Merari were +the tabernacle’s frames, crossbars, posts, bases, +and all its equipment—all the service for these +items, +as well as the posts of the surrounding +a 28 +courtyard with their bases, tent pegs, and ropes. + +8,300 + +c 47 5 shekels + +Hebrew; some LXX manuscripts + +6:22 and Leviticus 10:4. +shekel (approximately 0.4 ounces or 11.4 grams). + +Moses, Aaron, and Aaron’s sons were to camp +to the east of the tabernacle, toward the sunrise, +before the Tent of Meeting. They were to per- +form the duties of the sanctuary as a service on +behalf of the Israelites; but any outsider who ap- +39 +proached the sanctuary was to be put to death. + +The total number of Levites that Moses and +Aaron counted by their clans at the LORD’s com- +mand, including all the males a month old or +The Redemption of the Firstborn +more, was 22,000. +40 + +41 + +Then the LORD said to Moses, “Number every +firstborn male of the Israelites a month old or +more, and list their names. +You are to take the +Levites for Me—I am the LORD—in place of all +the firstborn of Israel, and the livestock of the Le- +vites in place of all the firstborn of the livestock +42 +of the Israelites.” + +So Moses numbered all the firstborn of the +43 +Israelites, as the LORD had commanded him. +The total number of the firstborn males a +44 +month old or more, listed by name, was 22,273. +45 + +46 + +Again the LORD spoke to Moses, saying, +“Take the Levites in place of all the firstborn of +Israel, and the livestock of the Levites in place of +their livestock. The Levites belong to Me; I am the +47 +LORD. +To redeem the 273 firstborn Israelites +who outnumber the Levites, +you are to collect +five shekels + for each one, according to the sanc- +Give the +tuary shekel of twenty gerahs. +money to Aaron and his sons as the redemption +49 +price for the excess among the Israelites.” + +48 + +d + + c + +e + +50 + +So Moses collected the redemption money +from those in excess of the number redeemed by +the Levites. +He collected the money from the +firstborn of the Israelites: 1,365 shekels, + accord- +And Moses gave +ing to the sanctuary shekel. +the redemption money to Aaron and his sons in +obedience to the word of the LORD, just as the +The Duties of the Kohathites +LORD had commanded him. +(Numbers 3:27–32 ; 1 Chronicles 23:12–20) + +51 + +4 + +2 +Then the LORD said to Moses and Aaron, +“Take a census of the Kohathites among the +men from +Levites by their clans and families, +thirty to fifty years old—everyone who is quali- +fied to serve in the work at the Tent of Meeting. + +b 30 Elizaphan + +Elzaphan + +3 + +d 47 20 gerahs + +; see the total in verse 39. +e 50 1,365 shekels + is approximately 2 ounces or 57 grams. + + is a variant of + +; see Exodus + + is equivalent to one + + is approximately 34.3 pounds or 15.6 kilograms. + + 128 | Numbers 4:4 + +4 + +5 + +This service of the Kohathites at the Tent of +When- +Meeting regards the most holy things. +ever the camp sets out, Aaron and his sons are to +go in, take down the veil of the curtain, and cover +They are to +the ark of the Testimony +place over this a covering of fine leather, + spread +7 +a solid blue cloth over it, and insert its poles. + + with it. + +6 + + a + +b + +8 + +Over the table of the Presence they are to +spread a blue cloth and place the plates and cups +on it, along with the bowls and pitchers for the +drink offering. The regular bread offering is to +And they shall spread a scarlet +remain on it. +cloth over them, cover them with fine leather, +9 +and insert the poles. + +They are to take a blue cloth and cover the +lampstand used for light, together with its lamps, +10 +wick trimmers, and trays, as well as the jars of oil +Then they shall wrap +with which to supply it. +it and all its utensils inside a covering of fine +11 +leather and put it on the carrying frame. + +12 + +Over the gold altar they are to spread a blue +cloth, cover it with fine leather, and insert +They are to take all the utensils for +the poles. +serving in the sanctuary, place them in a blue +cloth, cover them with fine leather, and put them +13 +on the carrying frame. + +14 + +Then they shall remove the ashes from the +bronze altar, spread a purple cloth over it, +and +place on it all the vessels used to serve there: the +firepans, meat forks, shovels, and sprinkling +bowls—all the equipment of the altar. They are +to spread over it a covering of fine leather and in- +15 +sert the poles. + +When Aaron and his sons have finished cover- +ing the holy objects and all their equipment, as +soon as the camp is ready to move, the Koha- +thites shall come and do the carrying. But they +must not touch the holy objects, or they will die. +These are the transportation duties of the Koha- +16 +thites regarding the Tent of Meeting. + +Eleazar son of Aaron the priest shall oversee +the oil for the light, the fragrant incense, the daily +grain offering, and the anointing oil. He has over- +sight of the entire tabernacle and everything in +17 +it, including the holy objects and their utensils.” + +18 + +Then the LORD said to Moses and Aaron, + +“Do +19 +not allow the Kohathite tribal clans to be cut off +In order that they may +from among the Levites. +a 5 +live and not die when they come near the most + +the ark of the covenant + +b 6 + +That is, + +see Exodus 25:5. + +20 + +holy things, do this for them: Aaron and his sons +are to go in and assign each man his task and +But the Kohathites are not +what he is to carry. +to go in and look at the holy objects, even for a +The Duties of the Gershonites +moment, or they will die.” +(Numbers 3:21–26 ; 1 Chronicles 23:7–11) + +21 + +22 + +23 + +And the LORD said to Moses, + +“Take a census +of the Gershonites as well, by their families and +from thirty to fifty years old, counting +clans, +everyone who comes to serve in the work at the +24 +Tent of Meeting. + +25 + +This is the service of the Gershonite clans re- +They are to carry +garding work and transport: +the curtains of the tabernacle, the Tent of Meet- +ing with the covering of fine leather over it, the +26 +curtains for the entrance to the Tent of Meeting, +the curtains of the courtyard, and the curtains +for the entrance at the gate of the courtyard that +surrounds the tabernacle and altar, along with +their ropes and all the equipment for their ser- +vice. The Gershonites will do all that needs to be +27 +done with these items. + +28 + +All the service of the Gershonites—all their +transport duties and other work—is to be done +at the direction of Aaron and his sons; you are to +assign to them all that they are responsible to +This is the service of the Gershonite +carry. +clans at the Tent of Meeting, and their duties +shall be under the direction of Ithamar son of Aa- +The Duties of the Merarites +ron the priest. +(Numbers 3:33–37 ; 1 Chronicles 23:21–23) + +29 + +30 + +As for the sons of Merari, you are to number +from thirty to +them by their clans and families, +fifty years old, counting everyone who comes to +31 +serve in the work of the Tent of Meeting. + +32 + +This is the duty for all their service at the Tent +of Meeting: to carry the frames of the tabernacle +with its crossbars, posts, and bases, +and the +posts of the surrounding courtyard with their ba- +ses, tent pegs, and ropes, including all their +equipment and everything related to their use. +You shall assign by name the items that they are +33 +responsible to carry. + +This is the service of the Merarite clans accord- +ing to all their work at the Tent of Meeting, under +the direction of Ithamar son of Aaron the priest.” +Possibly the hides of large aquatic mammals; also in verses 8, 10, 11, 12, 14, and 25; + + The Numbering of the Levite Clans + +Confession and Restitution (Luke 19:1–10) + +34 + +5 + +6 + +Numbers 5:19 | 129 + +35 + +So Moses, Aaron, and the leaders of the congre- +gation numbered the Kohathites by their clans +everyone from thirty to fifty +and families, +36 +years old who came to serve in the work at the +37 +And those numbered by their +Tent of Meeting. +These were counted from +clans totaled 2,750. +the Kohathite clans, everyone who could serve at +the Tent of Meeting. Moses and Aaron numbered +them according to the command of the LORD +38 +through Moses. + +39 + +Then the Gershonites were numbered by their +clans and families, +everyone from thirty to fifty +40 +years old who came to serve in the work at the +41 +And those numbered by their +Tent of Meeting. +These were +clans and families totaled 2,630. +counted from the Gershonite clans who served at +the Tent of Meeting, whom Moses and Aaron +42 +counted at the LORD’s command. + +43 + +And the Merarites were numbered by their +everyone from thirty to fifty +clans and families, +44 +years old who came to serve in the work at the +The men registered by their +Tent of Meeting. +clans numbered 3,200. +These were counted +from the Merarite clans, whom Moses and Aaron +numbered at the LORD’s command through +46 +Moses. + +45 + +48 + +47 + +So Moses, Aaron, and the leaders of Israel +numbered by their clans and families all the Le- +from thirty to fifty years old who came to +vites +do the work of serving and carrying the Tent of +49 +And the number of men was 8,580. +Meeting. +At the LORD’s command through Moses they +were numbered, and each one was assigned his +work and burden, as the LORD had commanded +Cleansing the Camps (Leviticus 13:1–46) +Moses. + +2 + +a + +3 + +Then the LORD said to Moses, +“Command +the Israelites to send away from the camp + anyone who has a +anyone with a skin disease, +bodily discharge, and anyone who is defiled by a +You must send away male and fe- +dead body. +male alike; send them outside the camp so they +will not defile their camp, where I dwell among +4 +them.” + +So the Israelites did this, sending such people +outside the camp. They did just as the LORD had +tzaraath +a 2 +instructed Moses. +b 15 A tenth of an ephah + +Forms of the Hebrew + +, traditionally translated as + +5 + +7 + +And the LORD said to Moses, + +“Tell the Israel- +ites that when a man or woman acts unfaithfully +against the LORD by committing any sin against +and must confess +another, that person is guilty +the sin he has committed. He must make full res- +titution, add a fifth to its value, and give all this to +8 +the one he has wronged. + +But if the man has no relative to whom restitu- +tion can be made for the wrong, the restitution +belongs to the LORD and must be given to the +priest along with the ram of atonement, by which +9 +the atonement is made for him. + +10 + +Every sacred contribution the Israelites bring +Each man’s +to the priest shall belong to him. +sacred gifts are his own, but whatever he gives to +The Adultery Test +the priest will belong to the priest.” +12 +11 + +14 + +Then the LORD said to Moses, + +“Speak to the +13 +Israelites and tell them that if any man’s wife +by sleeping +goes astray and is unfaithful to him +with another man, and it is concealed from her +husband and her impurity is undetected (since +there is no witness against her and she was not +and if a feeling of jealousy +caught in the act), +comes over her husband and he suspects his wife +who has defiled herself—or if a feeling of jeal- +ousy comes over him and he suspects her even +then he is +though she has not defiled herself— +to bring his wife to the priest. + +15 + +b + +He must also bring for her an offering of a tenth +of an ephah of barley flour. + He is not to pour oil +over it or put frankincense on it, because it is a +grain offering for jealousy, an offering of memo- +16 +rial as a reminder of iniquity. + +17 + +The priest is to bring the wife forward and +Then he is to +have her stand before the LORD. +take some holy water in a clay jar and put some +of the dust from the tabernacle floor into the wa- +18 +ter. + +After the priest has the woman stand before +the LORD, he is to let down her hair and place in +her hands the grain offering of memorial, which +is the grain offering for jealousy. The priest is to +And +hold the bitter water that brings a curse. +he is to put the woman under oath and say to her, +‘If no other man has slept with you and you have +, were used for various skin diseases; see Leviticus 13. + +19 + +leprosy + +kilograms of barley flour). + + is approximately 2 dry quarts or 2.2 liters (probably about 3.5 pounds or 1.6 + + 130 | Numbers 5:20 + +20 + +not gone astray and become defiled while under +your husband’s authority, may you be immune to +But if you +this bitter water that brings a curse. +have gone astray while under your husband’s +authority and have defiled yourself and lain +21 +carnally with a man other than your husband’— +and the priest shall have the woman swear un- +der the oath of the curse—‘then may the LORD +make you an attested curse among your people +by making your thigh shrivel and your belly +May this water that brings a curse enter +swell. +your stomach and cause your belly to swell and +your thigh to shrivel.’ +23 +Then the woman is to say, ‘Amen, Amen.’ + +22 + +25 + +And the priest shall write these curses on a +24 +scroll and wash them off into the bitter water. +He is to have the woman drink the bitter water +that brings a curse, and it will enter her and may +The priest shall take +cause her bitter suffering. +from her hand the grain offering for jealousy, +26 +wave it before the LORD, and bring it to the altar. +Then the priest is to take a handful of the grain +offering as a memorial portion and burn it on the +altar; after that he is to have the woman drink the +27 +water. + +When he has made her drink the water, if she +has defiled herself and been unfaithful to her +husband, then the water that brings a curse will +enter her and cause bitter suffering; her belly +will swell, her thigh will shrivel, and she will be- +But if the +come accursed among her people. +woman has not defiled herself and is clean, she +29 +will be unaffected and able to conceive children. + +28 + +30 + +This is the law of jealousy when a wife goes +astray and defiles herself while under her hus- +band’s authority, +or when a feeling of jealousy +comes over a husband and he suspects his wife. +He is to have the woman stand before the LORD, +31 +and the priest is to apply to her this entire law. +The husband will be free from guilt, but the + +The Nazirite Vow (Judges 13:1–25) +woman shall bear her iniquity.” + +2 + +3 + + to separate himself to the LORD, + +“Speak to the +And the LORD said to Moses, +Israelites and tell them that if a man or +a +woman makes a special vow, the vow of a Nazi- +rite, +he is to +abstain from wine and strong drink. He must not +drink vinegar made from wine or strong drink, +and he must not drink any grape juice or eat +b 11 +one separated +a 2 Nazirite +All the days of his +fresh grapes or raisins. + or + means + +one consecrated + +. + +4 + +6 + +separation, he is not to eat anything that comes +5 +from the grapevine, not even the seeds or skins. + +For the entire period of his vow of separation, +no razor shall touch his head. He must be holy +until the time of his separation to the LORD is +complete; he must let the hair of his head grow +6 +long. + +7 + +Throughout the days of his separation to the +LORD, he must not go near a dead body. +Even if +his father or mother or brother or sister should +die, he is not to defile himself, because the sym- +8 +bol of consecration to his God is upon his head. +Throughout the time of his separation, he is + +9 +holy to the LORD. + +10 + +If someone suddenly dies in his presence and +defiles his consecrated head of hair, he must +shave his head on the day of his cleansing—the +On the eighth day he must bring +seventh day. +two turtledoves or two young pigeons to the + b +11 +priest at the entrance to the Tent of Meeting. +And the priest is to offer one as a sin offering +and the other as a burnt offering to make atone- +ment for him, because he has sinned by being in +the presence of the dead body. On that day he +He must re- +must consecrate his head again. +dedicate his time of separation to the LORD and +bring a year-old male lamb as a guilt offering. But +the preceding days shall not be counted, because +13 +his separation was defiled. + +12 + +Now this is the law of the Nazirite when his +time of separation is complete: He must be +14 +brought to the entrance to the Tent of Meeting, +and he is to present an offering to the LORD of +an unblemished year-old male lamb as a burnt +offering, an unblemished year-old female lamb +as a sin offering, and an unblemished ram as a +together with their grain of- +peace offering— +ferings and drink offerings—and a basket of un- +leavened cakes made from fine flour mixed with +16 +oil and unleavened wafers coated with oil. + +15 + +17 + +The priest is to present all these before the +LORD and make the sin offering and the burnt +He shall also offer the ram as a peace +offering. +offering to the LORD, along with the basket of +unleavened bread. And the priest is to offer the +18 +accompanying grain offering and drink offering. + +Then at the entrance to the Tent of Meeting, +the Nazirite is to shave his consecrated head, +take the hair, and put it on the fire under the +purification offering +And the priest is to take the +peace offering. + +19 + +Or + +; here and throughout Numbers + + boiled shoulder from the ram, one unleavened +cake from the basket, and one unleavened wafer, +and put them into the hands of the Nazirite who +20 +has just shaved the hair of his consecration. +The priest shall then wave them as a wave of- +fering before the LORD. This is a holy portion for +the priest, in addition to the breast of the wave +offering and the thigh that was presented. After +21 +that, the Nazirite may drink wine. + +This is the law of the Nazirite who vows his of- +fering to the LORD for his separation, in addition +to whatever else he can afford; he must fulfill +whatever vow he makes, according to the law of +Aaron’s Blessing +his separation.” +22 + +23 + +Then the LORD said to Moses, + +“Tell Aaron +and his sons: This is how you are to bless the +24 +Israelites. Say to them: + +25 + +‘May the LORD bless you + +and keep you; + +may the LORD cause His face to shine + +26 + +upon you + +and be gracious to you; + +may the LORD lift up His countenance + +27 + +toward you +and give you peace.’ + +So they shall put My name on the Israelites, + +Offerings of Dedication +and I will bless them.” + +7 + +3 + +2 + +On the day Moses finished setting up the tab- +ernacle, he anointed and consecrated it and +all its furnishings, along with the altar and all its +utensils. +And the leaders of Israel, the heads of +their families, presented an offering. These men +were the tribal leaders who had supervised the +They brought as their offering be- +registration. +fore the LORD six covered carts and twelve +oxen—an ox from each leader and a cart from +every two leaders—and presented them before +4 +the tabernacle. + +5 + +And the LORD said to Moses, + +“Accept these +gifts from them, that they may be used in the +work of the Tent of Meeting. And give them to the +6 +Levites, to each man according to his service.” + +7 + +So Moses took the carts and oxen and gave them +He gave the Gershonites two +to the Levites. +a 13 130 shekels +carts and four oxen, as their service required, + +Numbers 7:28 | 131 + +8 + +and he gave the Merarites four carts and eight +oxen, as their service required, all under the di- +But +rection of Ithamar son of Aaron the priest. +he did not give any to the Kohathites, since they +were to carry on their shoulders the holy objects +10 +for which they were responsible. + +9 + +11 + +When the altar was anointed, the leaders ap- +proached with their offerings for its dedication +and presented them before the altar. +And the +LORD said to Moses, “Each day one leader is to +present his offering for the dedication of the +12 +altar.” + +a + +14 + +13 + +On the first day Nahshon son of Amminadab +from the tribe of Judah drew near with his offer- +ing. +His offering was one silver platter weigh- +b +ing a hundred and thirty shekels, + and one silver +bowl weighing seventy shekels, + both according +to the sanctuary shekel and filled with fine flour +mixed with oil for a grain offering; +one gold +15 +dish weighing ten shekels, + filled with incense; +16 +one young bull, one ram, and one male lamb a +17 +one male goat for +year old for a burnt offering; +and a peace offering of two oxen, +a sin offering; +five rams, five male goats, and five male lambs a +year old. This was the offering of Nahshon son of +18 +Amminadab. + +c + +19 + +20 + +On the second day Nethanel son of Zuar, the +The offering he +leader of Issachar, drew near. +presented was one silver platter weighing a hun- +dred and thirty shekels, and one silver bowl +weighing seventy shekels, both according to the +sanctuary shekel and filled with fine flour mixed +one gold dish +with oil for a grain offering; +one +weighing ten shekels, filled with incense; +22 +young bull, one ram, and one male lamb a year +one male goat for a sin +old for a burnt offering; +offering; +and a peace offering of two oxen, five +rams, five male goats, and five male lambs a year +24 +old. This was the offering of Nethanel son of Zuar. + +21 + +23 + +25 + +26 + +On the third day Eliab son of Helon, the leader +of the Zebulunites, drew near. +His offering was +one silver platter weighing a hundred and thirty +shekels, and one silver bowl weighing seventy +shekels, both according to the sanctuary shekel +and filled with fine flour mixed with oil for a +one gold dish weighing ten +grain offering; +one young bull, +shekels, filled with incense; +one ram, and one male lamb a year old for a burnt +offering; +one male goat for a sin offering; +c 14 10 shekels + is ap- + is approximately 4 ounces or + +b 13 70 shekels + +28 + +27 + + is approximately 3.3 pounds or 1.48 kilograms; here and throughout this chapter. + +proximately 1.76 pounds or 797.8 grams; here and throughout this chapter. +114 grams; here and throughout this chapter. + + 132 | Numbers 7:29 + +29 + +and a peace offering of two oxen, five rams, +five male goats, and five male lambs a year old. +30 +This was the offering of Eliab son of Helon. + +31 + +32 + +On the fourth day Elizur son of Shedeur, the +His offer- +leader of the Reubenites, drew near. +ing was one silver platter weighing a hundred +and thirty shekels, and one silver bowl weighing +seventy shekels, both according to the sanctuary +shekel and filled with fine flour mixed with oil for +one gold dish weighing ten +a grain offering; +one young bull, +shekels, filled with incense; +one ram, and one male lamb a year old for a burnt +35 +one male goat for a sin offering; +offering; +and a peace offering of two oxen, five rams, +five male goats, and five male lambs a year old. +36 +This was the offering of Elizur son of Shedeur. + +33 + +34 + +37 + +38 + +On the fifth day Shelumiel son of Zurishaddai, +the leader of the Simeonites, drew near. +His of- +fering was one silver platter weighing a hundred +and thirty shekels, and one silver bowl weighing +seventy shekels, both according to the sanctuary +shekel and filled with fine flour mixed with oil for +a grain offering; +one gold dish weighing ten +shekels, filled with incense; +one young bull, +one ram, and one male lamb a year old for a burnt +41 +offering; +one male goat for a sin offering; +and a peace offering of two oxen, five rams, +five male goats, and five male lambs a year old. +This was the offering of Shelumiel son of Zur- +42 +ishaddai. + +39 + +40 + +43 + +44 + +On the sixth day Eliasaph son of Deuel, the +leader of the Gadites, drew near. +His offering +was one silver platter weighing a hundred and +thirty shekels, and one silver bowl weighing sev- +enty shekels, both according to the sanctuary +shekel and filled with fine flour mixed with oil for +a grain offering; +one gold dish weighing ten +shekels, filled with incense; +one young bull, +one ram, and one male lamb a year old for a burnt +47 +offering; +one male goat for a sin offering; +and a peace offering of two oxen, five rams, +five male goats, and five male lambs a year old. +48 +This was the offering of Eliasaph son of Deuel. + +45 + +46 + +49 + +On the seventh day Elishama son of Ammihud, +the leader of the Ephraimites, drew near. +His +offering was one silver platter weighing a hun- +dred and thirty shekels, and one silver bowl +weighing seventy shekels, both according to the +sanctuary shekel and filled with fine flour mixed +with oil for a grain offering; +one gold dish +weighing ten shekels, filled with incense; +one +young bull, one ram, and one male lamb a year + +51 + +50 + +52 + +53 + +old for a burnt offering; +one male goat for a sin +offering; +and a peace offering of two oxen, five +rams, five male goats, and five male lambs a year +old. This was the offering of Elishama son of Am- +54 +mihud. + +55 + +56 + +On the eighth day Gamaliel son of Pedahzur, +the leader of the Manassites, drew near. +His of- +fering was one silver platter weighing a hundred +and thirty shekels, and one silver bowl weighing +seventy shekels, both according to the sanctuary +shekel and filled with fine flour mixed with oil for +a grain offering; +one gold dish weighing ten +shekels, filled with incense; +one young bull, +one ram, and one male lamb a year old for a burnt +59 +offering; +one male goat for a sin offering; +and a peace offering of two oxen, five rams, +five male goats, and five male lambs a year old. +This was the offering of Gamaliel son of Pedah- +60 +zur. + +58 + +57 + +61 + +62 + +On the ninth day Abidan son of Gideoni, the +His +leader of the Benjamites, drew near. +offering was one silver platter weighing a hun- +dred and thirty shekels, and one silver bowl +weighing seventy shekels, both according to the +sanctuary shekel and filled with fine flour mixed +one gold dish +with oil for a grain offering; +one +weighing ten shekels, filled with incense; +young bull, one ram, and one male lamb a year +old for a burnt offering; +one male goat for a +and a peace offering of two oxen, +sin offering; +five rams, five male goats, and five male lambs a +year old. This was the offering of Abidan son of +66 +Gideoni. + +63 + +65 + +64 + +67 + +68 + +On the tenth day Ahiezer son of Ammishaddai, +the leader of the Danites, drew near. +His offer- +ing was one silver platter weighing a hundred +and thirty shekels, and one silver bowl weighing +seventy shekels, both according to the sanctuary +shekel and filled with fine flour mixed with oil for +a grain offering; +one gold dish weighing ten +shekels, filled with incense; +one young bull, +one ram, and one male lamb a year old for a burnt +71 +offering; +one male goat for a sin offering; +and a peace offering of two oxen, five rams, +five male goats, and five male lambs a year old. +This was the offering of Ahiezer son of +72 +Ammishaddai. + +70 + +69 + +73 + +On the eleventh day Pagiel son of Ocran, the +His offering +leader of the Asherites, drew near. +was one silver platter weighing a hundred and +thirty shekels, and one silver bowl weighing sev- +enty shekels, both according to the sanctuary + + 74 + +76 + +75 + +shekel and filled with fine flour mixed with oil for +one gold dish weighing ten +a grain offering; +shekels, filled with incense; +one young bull, +one ram, and one male lamb a year old for a burnt +77 +one male goat for a sin offering; +offering; +and a peace offering of two oxen, five rams, +five male goats, and five male lambs a year old. +78 +This was the offering of Pagiel son of Ocran. + +79 + +80 + +On the twelfth day Ahira son of Enan, the +His offer- +leader of the Naphtalites, drew near. +ing was one silver platter weighing a hundred +and thirty shekels, and one silver bowl weighing +seventy shekels, both according to the sanctuary +shekel and filled with fine flour mixed with oil for +one gold dish weighing ten +a grain offering; +one young bull, +shekels, filled with incense; +one ram, and one male lamb a year old for a burnt +83 +one male goat for a sin offering; +offering; +and a peace offering of two oxen, five rams, +five male goats, and five male lambs a year old. +84 +This was the offering of Ahira son of Enan. + +82 + +81 + +So these were the offerings from the leaders of +Israel for the dedication of the altar when it was +anointed: twelve silver platters, twelve silver +85 +bowls, and twelve gold dishes. + +Each silver platter weighed a hundred and +thirty shekels, and each silver bowl seventy +shekels. The total weight of the silver articles +was two thousand four hundred shekels, + ac- +86 +cording to the sanctuary shekel. + +a + +The twelve gold dishes filled with incense +weighed ten shekels each, according to the sanc- +tuary shekel. The total weight of the gold dishes +87 +was a hundred and twenty shekels. + +b + +All the livestock for the burnt offering totaled +twelve bulls, twelve rams, and twelve male lambs +a year old—together with their grain offerings— +88 +and twelve male goats for the sin offering. + +All the livestock sacrificed for the peace +offering totaled twenty-four bulls, sixty rams, +sixty male goats, and sixty male lambs a year old. +for the +This was the dedication offering +89 +altar after it was anointed. + +8 + +Numbers 8:17 | 133 + +The Lampstand (Exodus 25:31–40 ; 37:17–24) + +2 + +Then the LORD said to Moses, +“Speak to +Aaron and tell him: ‘When you set up the +seven lamps, they are to light the area in front of +3 +the lampstand.’ + +” + +And Aaron did so; he set up the lamps facing to- +ward the front of the lampstand, just as the LORD +4 +had commanded Moses. + +This is how the lampstand was constructed: it +was made of hammered gold from its base to its +blossoms, fashioned according to the pattern the +Cleansing the Levites +LORD had shown Moses. +5 + +6 + +7 + +Again the LORD spoke to Moses, saying, + +“Take +the Levites from among the Israelites and make +them ceremonially clean. +This is what you must +do to cleanse them: Sprinkle them with the water +of purification. Have them shave their whole +bodies and wash their clothes, and so purify +8 +themselves. + +11 + +Then have them take a young bull with its grain +offering of fine flour mixed with oil, and you are +9 +to take a second young bull for a sin offering. +Bring the Levites before the Tent of Meeting +10 +and assemble the whole congregation of Israel. +You are to present the Levites before the LORD +and have the Israelites lay their hands upon +Aaron is to present the Levites before +them. +the LORD as a wave offering from the sons of Is- +rael, so that they may perform the service of the +And the Levites are to lay their hands on +LORD. +the heads of the bulls, and offer to the LORD one +as a sin offering and the other as a burnt offering, +13 +to make atonement for the Levites. + +12 + +14 + +You are to have the Levites stand before +Aaron and his sons and then present them before +the LORD as a wave offering. +In this way you +shall separate the Levites from the rest of the Is- +Af- +raelites, and the Levites will belong to Me. +ter you have cleansed them and presented them +as a wave offering, they may come to serve at the +16 +Tent of Meeting. + +15 + +For the Levites have been wholly given to Me +from among the sons of Israel. I have taken them +for Myself in place of all who come first from the +17 +womb, the firstborn of all the sons of Israel. +For every firstborn male in Israel is Mine, both +man and beast. I set them apart for Myself on the + +b 86 120 shekels + + is approximately 3 pounds or 1.4 + + c + +When Moses entered the Tent of Meeting to +speak with the LORD, he heard the voice speak- +d +ing to him from between the two cherubim above +the mercy seat +Thus the LORD spoke to him. +a 85 2,400 shekels +atonement cover +c 89 + + on the ark of the Testimony. + +kilograms. + +d 89 + is approximately 60.3 pounds or 27.4 kilograms. +Or + +That is, + +the ark of the covenant + + 134 | Numbers 8:18 + +18 + +19 + +day I struck down all the firstborn in the land of +But I have taken the Levites in place of +Egypt. +And +all the firstborn among the sons of Israel. +I have given the Levites as a gift to Aaron and his +sons from among the Israelites, to perform the +service for the Israelites at the Tent of Meeting +and to make atonement on their behalf, so that +no plague will come against the Israelites when +20 +they approach the sanctuary.” + +So Moses, Aaron, and the whole congregation +of Israel did with the Levites everything that the +21 +LORD had commanded Moses they should do. +The Levites purified themselves and washed +their clothes, and Aaron presented them as a +wave offering before the LORD. Aaron also made +After +atonement for them to cleanse them. +that, the Levites came to perform their service at +the Tent of Meeting in the presence of Aaron and +his sons. Thus they did with the Levites just as +Retirement for Levites +the LORD had commanded Moses. +23 + +24 + +22 + +25 + +And the LORD said to Moses, + +“This applies to +the Levites: Men twenty-five years of age or older +shall enter to perform the service in the work at +But at the age of fifty, they +the Tent of Meeting. +must retire from performing the work and no +26 +longer serve. + +After that, they may assist their brothers in ful- +filling their duties at the Tent of Meeting, but +they themselves are not to do the work. This is +how you are to assign responsibilities to the Le- +The Second Passover (Exodus 12:1–13) +vites.” + +9 + +3 + +In the first month of the second year after Is- +rael had come out of the land of Egypt, the +2 +LORD spoke to Moses in the Wilderness of Sinai: +“The Israelites are to observe the Passover at its +appointed time. +You are to observe it at the ap- +pointed time, at twilight on the fourteenth + day +of this month, in accordance with its statutes and +4 +ordinances.” +5 + + a + +So Moses told the Israelites to observe the Pass- +and they did so in the Wilderness of Sinai, +over, +at twilight on the fourteenth day of the first +month. The Israelites did everything just as the +6 +LORD had commanded Moses. + +But there were some men who were unclean +a 3 +due to a dead body, so they could not observe the + +between the two evenings of the fourteenth + +by day + +7 + +Passover on that day. And they came before Mo- +and said to Moses, +ses and Aaron that same day +“We are unclean because of a dead body, but why +should we be excluded from presenting the +LORD’s offering with the other Israelites at the +8 +appointed time?” + +“Wait here until I find out what the LORD com- + +10 +9 +mands concerning you,” Moses replied. + +11 + +Then the LORD said to Moses, + +“Tell the +Israelites: ‘When any one of you or your descend- +ants is unclean because of a dead body, or is away +on a journey, he may still observe the Passover to +Such people are to observe it at twi- +the LORD. +light on the fourteenth day of the second month. +They are to eat the lamb, together with unleav- +they may not +ened bread and bitter herbs; +leave any of it until morning or break any of its +bones. They must observe the Passover accord- +13 +ing to all its statutes. + +12 + +But if a man who is ceremonially clean and is +not on a journey still fails to observe the Passo- +ver, he must be cut off from his people, because +he did not present the LORD’s offering at its +appointed time. That man will bear the conse- +14 +quences of his sin. + +If a foreigner dwelling among you wants to +observe the Passover to the LORD, he is to do so +according to the Passover statute and its ordi- +nances. You are to apply the same statute to both +The Cloud above the Tabernacle +the foreigner and the native of the land.’ +(Exodus 40:34–38) + +” + +15 + +b + +On the day that the tabernacle, the Tent of the +Testimony, was set up, the cloud covered it and +16 +appeared like fire above the tabernacle from +It remained that way +evening until morning. +continually; the cloud would cover the taber- +17 +nacle by day, + and at night it would appear like +Whenever the cloud was lifted from above +fire. +the Tent, the Israelites would set out, and wher- +18 +ever the cloud settled, there the Israelites would +At the LORD’s command the Israelites +camp. +set out, and at the LORD’s command they +camped. As long as the cloud remained over the +19 +tabernacle, they remained encamped. + +Even when the cloud lingered over the taber- +nacle for many days, the Israelites kept the + b 16 +Sometimes +LORD’s charge and did not set out. + +20 + +Hebrew +does not include + +; also in verses 5 and 11 + +LXX, Syriac, and Vulgate; Hebrew + + the cloud remained over the tabernacle for only +a few days, and they would camp at the LORD’s +21 +command and set out at the LORD’s command. +Sometimes the cloud remained only from +evening until morning, and when it lifted in the +morning, they would set out. Whether it was by +day or by night, when the cloud was taken up, +22 +they would set out. + +23 + +Whether the cloud lingered for two days, a +month, or longer, the Israelites camped and did +not set out as long as the cloud remained over the +tabernacle; but when it was lifted, they would set +They camped at the LORD’s command, +out. +and they set out at the LORD’s command; they +carried out the LORD’s charge according to His +The Two Silver Trumpets +command through Moses. + +2 + +10 + +3 + +“Make +Then the LORD said to Moses, +two trumpets of hammered silver to be +used for calling the congregation and for having +When both are sounded, the +the camps set out. +whole congregation is to assemble before you at +But if only +the entrance to the Tent of Meeting. +one is sounded, then the leaders, the heads of the +5 +clans of Israel, are to gather before you. + +4 + +6 + +7 + +When you sound short blasts, the camps that lie +on the east side are to set out. +When you sound +the short blasts a second time, the camps that lie +on the south side are to set out. The blasts are to +signal them to set out. +To convene the assembly, +you are to sound long blasts, not short ones. +The +sons of Aaron, the priests, are to sound the trum- +pets. This shall be a permanent statute for you +9 +and the generations to come. + +8 + +10 + +When you enter into battle in your land against +an adversary who attacks you, sound short blasts +on the trumpets, and you will be remembered +before the LORD your God and saved from your +enemies. +And on your joyous occasions, your +appointed feasts, and the beginning of each +month, you are to blow the trumpets over your +burnt offerings and peace offerings to serve as a +reminder for you before your God. I am the LORD +From Sinai to Paran +your God.” +11 + +On the twentieth day of the second month of +the second year, the cloud was lifted from above +the tabernacle of the Testimony, +and the Isra- +elites set out from the Wilderness of Sinai, trav- +Jethro +a 29 Reuel +eling from place to place until the cloud settled in + +12 + + was also called + +; see Exodus 3:1. + +Numbers 10:33 | 135 + +13 + +They set out this first +the Wilderness of Paran. +time according to the LORD’s command through +14 +Moses. + +15 + +16 + +First, the divisions of the camp of Judah set out +their standard, with Nahshon son +under +Nethanel son of +of Amminadab in command. +Zuar was over the division of the tribe of Issa- +17 +and Eliab son of Helon was over the +char, +division of the tribe of Zebulun. +Then the tab- +ernacle was taken down, and the Gershonites +18 +and the Merarites set out, transporting it. + +20 + +Then the divisions of the camp of Reuben +19 +set out under their standard, with Elizur son of +Shedeur in command. +Shelumiel son of Zur- +ishaddai was over the division of the tribe of +Simeon, +and Eliasaph son of Deuel was over +the division of the tribe of Gad. +Then the Koha- +thites set out, transporting the holy objects; the +22 +tabernacle was to be set up before their arrival. + +21 + +24 + +Next, the divisions of the camp of Ephraim set +23 +out under their standard, with Elishama son of +Gamaliel son of Pedah- +Ammihud in command. +zur was over the division of the tribe of Manas- +seh, +and Abidan son of Gideoni was over the +25 +division of the tribe of Benjamin. + +26 + +Finally, the divisions of the camp of Dan set out +under their standard, serving as the rear guard +for all units, with Ahiezer son of Ammishaddai in +27 +Pagiel son of Ocran was over the +command. +and Ahira son +division of the tribe of Asher, +of Enan was over the division of the tribe of +28 +Naphtali. + +This was the order of march for the Israelite + +29 +divisions as they set out. + + a + +Then Moses said to Hobab, the son of Moses’ +father-in-law Reuel + the Midianite, “We are set- +ting out for the place of which the LORD said: ‘I +will give it to you.’ Come with us, and we will +treat you well, for the LORD has promised good +30 +things to Israel.” + +“I will not go,” Hobab replied. “Instead, I am go- + +31 +ing back to my own land and my own people.” + +32 + +“Please do not leave us,” Moses said, “since you +know where we should camp in the wilderness, +and you can serve as our eyes. +If you come with +us, we will share with you whatever good things +33 +the LORD gives us.” + +So they set out on a three-day journey from the +mountain of the LORD, with the ark of the + + 136 | Numbers 10:34 + +covenant of the LORD traveling ahead of them for +34 +those three days to seek a resting place for them. +And the cloud of the LORD was over them by + +35 +day when they set out from the camp. + +Whenever the ark set out, Moses would say, + +“Rise up, O LORD! + +May Your enemies be scattered; +may those who hate You flee + +before You.” + +36 + +And when it came to rest, he would say: + +“Return, O LORD, + +The Complaints of the People + +to the countless thousands of Israel.” + +11 + +Soon the people began to complain about +their hardship in the hearing of the +LORD, and when He heard them, His anger was +kindled, and fire from the LORD blazed among +2 +them and consumed the outskirts of the camp. +And the people cried out to Moses, and he +So + because the fire + +prayed to the LORD, and the fire died down. +that place was called Taberah, +4 +of the LORD had burned among them. + +3 + +a + +Meanwhile, the rabble among them had a +strong craving for other food, and again the Isra- +5 +elites wept and said, “Who will feed us meat? +We remember the fish we ate freely in Egypt, +along with the cucumbers, melons, leeks, onions, +and garlic. +But now our appetite is gone; there +7 +is nothing to see but this manna!” + +6 + +8 + +Now the manna resembled coriander seed, and +its appearance was like that of gum resin. +The +people walked around and gathered it, ground it +on a handmill or crushed it in a mortar, then +boiled it in a cooking pot or shaped it into cakes. +It tasted like pastry baked with fine oil. +When +the dew fell on the camp at night, the manna +The Complaint of Moses +would fall with it. +10 + +9 + +Then Moses heard the people of family after +family weeping at the entrances to their tents, +and the anger of the LORD was kindled greatly, +11 +and Moses was also displeased. + +So Moses asked the LORD, “Why have You +brought this trouble on Your servant? Why have +I not found favor in Your sight, that You have laid +Did I +upon me the burden of all these people? +conceive all these people? Did I give them birth, +a 3 Taberah +so that You should tell me, ‘Carry them in your + +burning + +12 + + means + +. + +bosom, as a nurse carries an infant,’ to the land +13 +that You swore to give their fathers? + +Where can I get meat for all these people? For +14 +they keep crying out to me, ‘Give us meat to eat!’ + +15 +I cannot carry all these people by myself; it is +too burdensome for me. +If this is how You are +going to treat me, please kill me right now—if I +have found favor in Your eyes—and let me not +Seventy Elders Anointed +see my own wretchedness.” +16 + +Then the LORD said to Moses, “Bring Me sev- +enty of the elders of Israel known to you as lead- +ers and officers of the people. Bring them to the +Tent of Meeting and have them stand there with +17 +you. + +And I will come down and speak with you +there, and I will take some of the Spirit that is on +you and put that Spirit on them. They will help +you bear the burden of the people, so that you do +18 +not have to bear it by yourself. + +19 + +And say to the people: Consecrate yourselves +for tomorrow, and you will eat meat, because you +have cried out in the hearing of the LORD, saying: +‘Who will feed us meat? For we were better off in +Egypt!’ Therefore the LORD will give you meat, +You will eat it not for one or +and you will eat. +20 +two days, nor for five or ten or twenty days, +but for a whole month—until it comes out of +your nostrils and makes you nauseous—because +you have rejected the LORD, who is among you, +and have cried out before Him, saying, ‘Why did +21 +we ever leave Egypt?’ + +” + +22 + +But Moses replied, “Here I am among 600,000 +men on foot, yet You say, ‘I will give them meat, +If all our flocks +and they will eat for a month.’ +and herds were slaughtered for them, would +they have enough? Or if all the fish in the sea +23 +were caught for them, would they have enough?” + +The LORD answered Moses, “Is the LORD’s +arm too short? Now you will see whether or not +24 +My word will come to pass.” + +25 + +So Moses went out and relayed to the people +the words of the LORD, and he gathered seventy +of the elders of the people and had them stand +Then the LORD came down in +around the tent. +the cloud and spoke to him, and He took some of +the Spirit that was on Moses and placed that +Spirit on the seventy elders. As the Spirit rested +on them, they prophesied—but they never did so +again. + + Numbers 13:4 | 137 + +26 + +Two men, however, had remained in the +camp—one named Eldad and the other Medad— +and the Spirit rested on them. They were among +those listed, but they had not gone out to the tent, +A young man +and they prophesied in the camp. +ran and reported to Moses, “Eldad and Medad +28 +are prophesying in the camp.” + +27 + +6 + +came down in a pillar of cloud, stood at the en- +trance to the Tent, and summoned Aaron and +Miriam. When both of them had stepped for- +ward, + +He said, “Hear now My words: + +If there is a prophet among you, + +I, the LORD, will reveal Myself to him + +7 + +in a vision; + +Joshua son of Nun, the attendant to Moses +since youth, spoke up and said, “Moses, my lord, +29 +stop them!” + +I will speak to him in a dream. + +d + +But this is not so with My servant Moses; + +8 + +he is faithful in all My house. + +But Moses replied, “Are you jealous on my +account? I wish that all the LORD’s people were +prophets and that the LORD would place His +30 +Spirit on them!” + +Then Moses returned to the camp, along with + +The Quail and the Plague +the elders of Israel. +31 + +a + +32 + +Now a wind sent by the LORD came up, drove +in quail from the sea, and brought them near the +camp, about two cubits above the surface of the + for a day’s journey in every direction +ground, +around the camp. +All that day and night, and all +b +the next day, the people stayed up gathering the +quail. No one gathered less than ten homers, +33 +and they spread them out all around the camp. + +But while the meat was still between their +teeth, before it was chewed, the anger of the +LORD burned against the people, and the LORD +So they +struck them with a severe plague. +called that place Kibroth-hattaavah, + because +there they buried the people who had craved +35 +other food. + +34 +c + +From Kibroth-hattaavah the people moved on +The Complaint of Miriam and Aaron +to Hazeroth, where they remained for some time. + +12 + +Then Miriam and Aaron criticized Moses +because of the Cushite woman he had +“Does +married, for he had taken a Cushite wife. +the LORD speak only through Moses?” they said. +“Does He not also speak through us?” And the +3 +LORD heard this. + +2 + +Now Moses was a very humble man, more so + +4 +than any man on the face of the earth. + +And suddenly the LORD said to Moses, Aaron, +and Miriam, “You three, come out to the Tent of +a 31 +and the LORD +Meeting.” So the three went out, + +up to two cubits deep + +5 + +I speak with him face to face, +clearly and not in riddles; +he sees the form of the LORD. + +9 + +Why then were you unafraid to speak against My +So the anger of the LORD +servant Moses?” +10 +burned against them, and He departed. + +e + +11 + +As the cloud lifted from above the Tent, sud- + white as snow. +denly Miriam became leprous, +Aaron turned toward her, saw that she was lep- +and said to Moses, “My lord, please do not +rous, +12 +hold against us this sin we have so foolishly com- +mitted. +Please do not let her be like a stillborn +infant whose flesh is half consumed when he +13 +comes out of his mother’s womb.” + +So Moses cried out to the LORD, “O God, please + +14 +heal her!” + +But the LORD answered Moses, “If her father +had but spit in her face, would she not have been +in disgrace for seven days? Let her be confined +outside the camp for seven days; after that she +15 +may be brought back in.” + +So Miriam was confined outside the camp for +16 +seven days, and the people did not move on until +After that, the people +she was brought in again. +set out from Hazeroth and camped in the Wilder- +The Spies Explore Canaan (De. 1:19–25) +ness of Paran. + +2 + +“Send out +And the LORD said to Moses, +for yourself men to spy out the land of +Canaan, which I am giving to the Israelites. From +each of their fathers’ tribes send one man who is +3 +a leader among them.” + + f + +So at the command + + of the LORD, Moses sent +them out from the Wilderness of Paran. All the +men were leaders of the Israelites, +and these +b 32 10 homers +were their names: + +4 + +13 + +c 34 Kibroth-hattaavah + +graves of craving + +d 7 + +e 10 + +Or + +; that is, approximately 3 feet or 91.4 centimeters + +leprous + +f 3 + +els or 2,200 liters. +traditionally translated as + + means + +. + +Cited in Hebrews 3:5 + + was used for various skin diseases; see Leviticus 13. + +Literally + + is approximately 62.4 bush- +according to the mouth +The Hebrew word + + 138 | Numbers 13:5 + +From the tribe of Reuben, Shammua son of +5 +Zaccur; + +from the tribe of Simeon, Shaphat son of + +6 +Hori; + +from the tribe of Judah, Caleb son of + +7 +Jephunneh; + +from the tribe of Issachar, Igal son of + +8 +Joseph; + +from the tribe of Ephraim, Hoshea son of + +9 +Nun; + +from the tribe of Benjamin, Palti son of + +10 +Raphu; + +from the tribe of Zebulun, Gaddiel son of + +11 +Sodi; + +from the tribe of Manasseh (a tribe of + +12 +Joseph), Gaddi son of Susi; + +from the tribe of Dan, Ammiel son of + +13 +Gemalli; + +from the tribe of Asher, Sethur son of + +14 +Michael; + +from the tribe of Naphtali, Nahbi son of + +15 +Vophsi; + +and from the tribe of Gad, Geuel son of + +16 + +Machi. + +These were the names of the men Moses sent +to spy out the land; and Moses gave to Hoshea +17 +son of Nun the name Joshua. + +19 + +18 + +When Moses sent them to spy out the land of +Canaan, he told them, “Go up through the Negev +See what the land is +and into the hill country. +like and whether its people are strong or weak, +Is the land where they live good +few or many. +or bad? Are the cities where they dwell open +Is the soil fertile or +camps or fortifications? +unproductive? Are there trees in it or not? Be +courageous and bring back some of the fruit of +the land.” (It was the season for the first ripe +21 +grapes.) + +20 + +22 + +So they went up and spied out the land from +the Wilderness of Zin as far as Rehob, toward +Lebo-hamath. +They went up through the +Negev and came to Hebron, where Ahiman, +Sheshai, and Talmai, the descendants of Anak, +dwelled. It had been built seven years before +23 +Zoan in Egypt. + +a + +When they came to the Valley of Eshcol, + + they +cut down a branch with a single cluster of grapes, +a 23 Eshcol +which they carried on a pole between two men. + +cluster + + means + +; also in verse 24. + +24 +They also took some pomegranates and figs. +Because of the cluster of grapes the Israelites +cut there, that place was called the Valley of +The Reports of the Spies +Eshcol. +25 + +26 + +After forty days the men returned from spying +and they went back to Moses, +out the land, +Aaron, and the whole congregation of Israel in +the Wilderness of Paran at Kadesh. They brought +back a report for the whole congregation and +27 +showed them the fruit of the land. + +28 + +And they gave this account to Moses: “We went +into the land to which you sent us, and indeed, it +is flowing with milk and honey. Here is some of +Nevertheless, the people living in the +its fruit! +land are strong, and the cities are large and forti- +29 +fied. We even saw the descendants of Anak there. +The Amalekites live in the land of the Negev; +the Hittites, Jebusites, and Amorites live in the +hill country; and the Canaanites live by the sea +30 +and along the Jordan.” + +Then Caleb quieted the people before Moses +and said, “We must go up and take possession of +31 +the land, for we can certainly conquer it!” + +But the men who had gone up with him re- +plied, “We cannot go up against the people, for +32 +they are stronger than we are!” + +33 + +So they gave the Israelites a bad report about +the land that they had spied out: “The land we ex- +plored devours its inhabitants, and all the people +We even saw +we saw there are great in stature. +the Nephilim there—the descendants of Anak +that come from the Nephilim! We seemed like +grasshoppers in our own sight, and we must +Israel’s Rebellion (Deuteronomy 1:26–33) +have seemed the same to them!” + +14 + +2 + +Then the whole congregation lifted up +their voices and cried out, and that night +All the Israelites grumbled +the people wept. +against Moses and Aaron, and the whole congre- +gation said to them, “If only we had died in the +land of Egypt, or if only we had died in this wil- +Why is the LORD bringing us into this +derness! +land to fall by the sword? Our wives and children +will become plunder. Would it not be better for +4 +us to go back to Egypt?” + +3 + +So they said to one another, “Let us appoint a + +leader and return to Egypt.” + + 5 + +Then Moses and Aaron fell facedown before the + +6 +whole assembly of the congregation of Israel. + +devotion, just as You have forgiven them ever +God’s Forgiveness and Judgment +since they left Egypt.” +(Deuteronomy 1:34–40) + +Numbers 14:35 | 139 + +8 + +Joshua son of Nun and Caleb son of Jephunneh, +7 +who were among those who had spied out the +land, tore their clothes +and said to the whole +congregation of Israel, “The land we passed +through and explored is an exceedingly good +land. +If the LORD delights in us, He will bring us +into this land, a land flowing with milk and +honey, and He will give it to us. +Only do not re- +bel against the LORD, and do not be afraid of the +people of the land, for they will be like bread for +us. Their protection has been removed, and the +10 +LORD is with us. Do not be afraid of them!” + +9 + +But the whole congregation threatened to + +stone Joshua and Caleb. + +11 + +Then the glory of the LORD appeared to all the +And the LORD +Israelites at the Tent of Meeting. +said to Moses, “How long will this people treat +Me with contempt? How long will they refuse to +12 +believe in Me, despite all the signs I have per- +formed among them? +I will strike them with a +plague and destroy them—and I will make you +Moses Intercedes for Israel +into a nation greater and mightier than they are.” +13 + +14 + +But Moses said to the LORD, “The Egyptians +will hear of it, for by Your strength You brought +this people from among them. +And they will +tell it to the inhabitants of this land. They have +already heard that You, O LORD, are in the midst +of this people, that You, O LORD, have been seen +face to face, that Your cloud stands over them, +and that You go before them in a pillar of cloud +15 +by day and a pillar of fire by night. + +16 + +If You kill this people as one man, the nations +who have heard of Your fame will say, +‘Because +the LORD was unable to bring this people into +the land He swore to give them, He has slaugh- +17 +tered them in the wilderness.’ + +18 + +a + +So now I pray, may the power of my Lord be +magnified, just as You have declared: +‘The +LORD is slow to anger and abounding in loving +devotion, + forgiving iniquity and transgression. +Yet He will by no means leave the guilty unpun- +ished; He will visit the iniquity of the fathers +upon their children to the third and fourth +19 +generation.’ + +Pardon, I pray, the iniquity of this people, +a 18 +in keeping with the greatness of Your loving +goodness + +faithfulness + +kindness + +chesed + +love + +20 + +21 + +“I have pardoned them as you requested,” the +“Yet as surely as I live and as +LORD replied. +22 +surely as the whole earth is filled with the glory +not one of the men who have seen +of the LORD, +My glory and the signs I performed in Egypt and +in the wilderness—yet have tested Me and diso- +not one will ever +beyed Me these ten times— +see the land that I swore to give their fathers. +None of those who have treated Me with con- +24 +tempt will see it. + +23 + +But because My servant Caleb has a different +spirit and has followed Me wholeheartedly, I will +bring him into the land he has entered, and his +25 +descendants will inherit it. + +b + +Now since the Amalekites and Canaanites are +living in the valleys, turn back tomorrow and +head for the wilderness along the route to the +26 +Red Sea. +27 + +” + +28 + +Then the LORD said to Moses and Aaron, +“How long will this wicked congregation +grumble against Me? I have heard the complaints +So +that the Israelites are making against Me. +29 +tell them: As surely as I live, declares the LORD, I +will do to you exactly as I heard you say. +Your +bodies will fall in this wilderness—all who were +numbered in the census, everyone twenty years +of age or older—because you have grumbled +30 +against Me. + +31 + +Surely none of you will enter the land in which +I swore to settle you, except Caleb son of +But I will +Jephunneh and Joshua son of Nun. +bring your children, whom you said would be- +come plunder, into the land you have rejected— +As for you, however, +and they will enjoy it. +33 +your bodies will fall in this wilderness. + +32 + +34 + +Your children will be shepherds in the wilder- +ness for forty years, and they will suffer for your +unfaithfulness until the last of your bodies lies in +In keeping with the forty days +the wilderness. +you spied out the land, you shall bear your guilt +forty years—a year for each day—and you will +35 +experience My alienation. + +I, the LORD, have spoken, and I will surely do +these things to this entire wicked congregation, +Sea of Reeds +mercy +; the range + +loving devotion +b 25 + +loyalty to a covenant + +Forms of the Heb. + + are translated here and in most cases throughout the Scriptures as + +of meaning includes + +, + +, + +, + +, and + +, as well as + +. + +Or + + 140 | Numbers 14:36 + +which has conspired against Me. They will meet +their end in the wilderness, and there they will +The Plague on the Ten Spies +die.” +36 + +tenth of an ephah of fine flour + mixed with a +quarter hin of olive oil. +With the burnt offering +or sacrifice of each lamb, you are to prepare a +6 +quarter hin of wine as a drink offering. + + c + + a + +b + +5 + +So the men Moses had sent to spy out the land, +who had returned and made the whole congre- +37 +gation grumble against him by bringing out a bad +report about the land— +those men who had +brought out the bad report about the land—were +struck down by a plague before the LORD. +Of +those men who had gone to spy out the land, only +Joshua son of Nun and Caleb son of Jephunneh +39 +remained alive. + +38 + +And when Moses relayed these words to all the +The Defeat at Hormah (Deuteronomy 1:41–46) +Israelites, the people mourned bitterly. +40 + +Early the next morning they got up and went +up toward the ridge of the hill country. “We have +indeed sinned,” they said, “but we will go to the +41 +place the LORD has promised.” + +43 + +42 + +But Moses said, “Why are you transgressing +the commandment of the LORD? This will not +succeed! +Do not go up, lest you be struck down +by your enemies, because the LORD is not among +you. +For there the Amalekites and Canaanites +will face you, and you will fall by the sword. Be- +cause you have turned away from the LORD, He +44 +will not be with you.” + +But they dared to go up to the ridge of the hill +country, though neither Moses nor the ark of the +45 +covenant of the LORD moved from the camp. +Then the Amalekites and Canaanites who lived +in that part of the hill country came down, +attacked them, and routed them all the way to +Laws about Offerings +Hormah. + +2 + +“Speak to +Then the LORD said to Moses, +3 +the Israelites and tell them: After you en- +ter the land that I am giving you as a home +and +you present a food offering to the LORD from the +herd or flock to produce a pleasing aroma to the +LORD—either a burnt offering or a sacrifice, for +a special vow or freewill offering or appointed +then the one presenting his offering to +feast— +a 4 A tenth of an ephah +the LORD shall also present a grain offering of a +b 4 + +a quarter hin of oil + +4 + +15 + +d + +With a ram you are to prepare a grain offering +of two-tenths of an ephah + of fine flour mixed +with a third of a hin of olive oil, +and a third of a +hin of wine as a drink offering, a pleasing aroma +8 +to the LORD. + +7 + + e + +When you prepare a young bull as a burnt +9 +offering or sacrifice to fulfill a vow or as a peace +offering to the LORD, +present with the bull a +grain offering of three-tenths of an ephah of fine +flour +Also +present half a hin of wine as a drink offering. It is +11 +a food offering, a pleasing aroma to the LORD. +This is to be done for each bull, ram, lamb, or +This is how you must prepare each one, + + mixed with half a hin of olive oil. + +10 + +12 + +f + +goat. +13 +no matter how many. + +15 + +14 + +Everyone who is native-born shall prepare +these things in this way when he presents a food +offering as a pleasing aroma to the LORD. +And +for the generations to come, if a foreigner resid- +ing with you or someone else among you wants +to prepare a food offering as a pleasing aroma to +the LORD, he is to do exactly as you do. +The as- +sembly is to have the same statute both for you +and for the foreign resident; it is a permanent +statute for the generations to come. You and the +16 +foreigner shall be the same before the LORD. +The same law and the same ordinance will ap- +ply both to you and to the foreigner residing with +17 +you.” + +18 + +20 + +Then the LORD said to Moses, +19 + +“Speak to the +Israelites and tell them: When you enter the land +and you eat the +to which I am bringing you +food of the land, you shall lift up an offering to the +LORD. +From the first of your dough, you are to +lift up a cake as a contribution; offer it just like an +Throughout +offering from the threshing floor. +your generations, you are to give the LORD an of- +Offerings for Unintentional Sins +fering from the first of your dough. +22 + +21 + +Now if you stray unintentionally and do not +23 +obey all these commandments that the LORD +has spoken to Moses— +all that the LORD has +c 6 Two-tenths of an ephah + is approximately 2 dry quarts or 2.2 liters (probably about 2.6 pounds or 1.2 kilograms of flour). +a third of a hin of + +d 6 + +Or + +oil +e 9 Three-tenths of an ephah +is approximately 4 dry quarts or 4.4 liters (probably about 5.1 pounds or 2.3 kilograms of flour). + +; that is, approximately 0.97 quarts or 0.92 liters; similarly in verse 5 +half a hin of oil + +f 9 + +Or + +; that is, approximately 1.3 quarts or 1.2 liters; similarly in verse 7 + +quarts or 6.6 liters (probably about 7.6 pounds or 3.5 kilograms of flour). +quarts or 1.8 liters; similarly in verse 10 + +Or + + is approximately 6 dry +; that is, approximately 1.9 + + commanded you through Moses from the day +24 +the LORD gave them and continuing through the +and if it was done unin- +generations to come— +tentionally without the knowledge of the congre- +gation, then the whole congregation is to prepare +one young bull as a burnt offering, a pleasing +aroma to the LORD, with its grain offering and +drink offering according to the regulation, and +25 +one male goat as a sin offering. + +The priest is to make atonement for the whole +congregation of Israel, so that they may be for- +given; for the sin was unintentional and they +have brought to the LORD a food offering and a +sin offering, presented before the LORD for their +Then the whole congrega- +unintentional sin. +tion of Israel and the foreigners residing among +them will be forgiven, since it happened to all the +27 +people unintentionally. + +26 + +Also, if one person sins unintentionally, he is to +28 +present a year-old female goat as a sin offering. +And the priest shall make atonement before +the LORD on behalf of the person who erred by +sinning unintentionally; and when atonement +You +has been made for him, he will be forgiven. +shall have the same law for the one who acts in +error, whether he is a native-born Israelite or a +30 +foreigner residing among you. + +29 + +But the person who sins defiantly, whether a +native or foreigner, blasphemes the LORD. That +31 +person shall be cut off from among his people. +He shall certainly be cut off, because he has +despised the word of the LORD and broken His +A Sabbath-Breaker Stoned (Exodus 31:12–17) +commandment; his guilt remains on him.” +32 + +34 + +33 + +While the Israelites were in the wilderness, a +man was found gathering wood on the Sabbath +Those who found the man gathering wood +day. +brought him to Moses, Aaron, and the whole con- +and because it had not been de- +gregation, +clared what should be done to him, they placed +35 +him in custody. + +And the LORD said to Moses, “The man must +surely be put to death. The whole congregation is +36 +to stone him outside the camp.” + +So the whole congregation took the man out- +side the camp and stoned him to death, as the +LORD had commanded Moses. +You have gone too far +a 3 +b 5 + +God has visited and knows those who are His + +Numbers 16:11 | 141 + +The Law of Tassels + +37 + +38 + +39 + +And the LORD said to Moses, + +“Speak to the +Israelites and tell them that throughout the gen- +erations to come they are to make for themselves +tassels for the corners of their garments, with a +blue cord on each tassel. +These will serve as +tassels for you to look at, so that you may remem- +ber all the commandments of the LORD, that you +may obey them and not prostitute yourselves by +40 +following your own heart and your own eyes. + +41 +Then you will remember and obey all My com- +mandments, and you will be holy to your God. +I +am the LORD your God who brought you out of +the land of Egypt to be your God. I am the LORD +Korah’s Rebellion +your God.” + +16 + +2 + +Now Korah son of Izhar, the son of Ko- +hath son of Levi, along with some Reu- +benites—Dathan and Abiram, sons of Eliab, and +a rebellion +On son of Peleth—conducted +against Moses, along with 250 men of Israel +3 +renowned as leaders of the congregation and +They came to- +representatives in the assembly. +gether against Moses and Aaron and told them, + For +“You have taken too much upon yourselves! +everyone in the entire congregation is holy, and +the LORD is in their midst. Why then do you exalt +4 +yourselves above the assembly of the LORD?” + +5 + + a + + b + +When Moses heard this, he fell facedown. + +Then +he said to Korah and all his followers, “Tomor- +row morning the LORD will reveal who belongs + and who is holy, and He will bring that +to Him +6 +person near to Himself. The one He chooses He +You, Korah, and all +will bring near to Himself. +7 +your followers are to do as follows: Take censers, +and tomorrow you are to place fire and incense +in them in the presence of the LORD. Then the +man the LORD chooses will be the one who is +holy. It is you sons of Levi who have taken too +8 +much upon yourselves!” + +9 + +Moses also said to Korah, “Now listen, you sons +Is it not enough for you that the God of +of Levi! +Israel has separated you from the congregation +of Israel and brought you near to Himself to per- +form the work at the LORD’s tabernacle, and to +stand before the congregation to minister to +He has brought you near, you and all +them? +your fellow Levites, but you are seeking the +Therefore, it is you and all +priesthood as well. + +11 + +10 + +You have appropriated too much authority to yourselves + +Figuratively +LXX + + or + +; cited in 2 Timothy 2:19 + +; similarly in verse 7 + + 142 | Numbers 16:12 + +your followers who have conspired against the +LORD! As for Aaron, who is he that you should +12 +grumble against him?” + +13 + +Then Moses summoned Dathan and Abiram, +the sons of Eliab, but they said, “We will not +Is it not enough that you have brought +come! +us up out of a land flowing with milk and honey +to kill us in the wilderness? Must you also ap- +Moreover, you +point yourself as ruler over us? +have not brought us into a land flowing with milk +and honey or given us an inheritance of fields +and vineyards. Will you gouge out the eyes of +15 +these men? No, we will not come!” + +14 + +Then Moses became very angry and said to the +LORD, “Do not regard their offering. I have not +taken one donkey from them or mistreated a sin- +16 +gle one of them.” + +And Moses said to Korah, “You and all your +followers are to appear before the LORD +Each +tomorrow—you and they and Aaron. +man is to take his censer, place incense in it, and +present it before the LORD—250 censers. You +18 +and Aaron are to present your censers as well.” + +17 + +19 + +So each man took his censer, put fire and +incense in it, and stood with Moses and Aaron +When +at the entrance to the Tent of Meeting. +Korah had gathered his whole assembly against +them at the entrance to the Tent of Meeting, +the glory of the LORD appeared to the whole +20 +congregation. +21 + +And the LORD said to Moses and Aaron, +“Separate yourselves from this congregation + +22 +so that I may consume them in an instant.” + +But Moses and Aaron fell facedown and said, +“O God, the God of the spirits of all flesh, when +one man sins, will You be angry with the whole +Moses Separates the People +congregation?” +23 + +24 + +Then the LORD said to Moses, + +“Tell the con- +gregation to move away from the dwellings of +25 +Korah, Dathan, and Abiram.” + +26 + +So Moses got up and went to Dathan and Abi- +And +ram, and the elders of Israel followed him. +he warned the congregation, “Move away now +from the tents of these wicked men. Do not touch +anything that belongs to them, or you will be +27 +swept away because of all their sins.” + +So they moved away from the dwellings of +Korah, Dathan, and Abiram. Meanwhile, Dathan + +and Abiram had come out and stood at the en- +trances to their tents with their wives and +The Earth Swallows Korah +children and infants. +28 + +29 + +Then Moses said, “This is how you will know +that the LORD has sent me to do all these things, +for it was not my own doing: +If these men die a +30 +natural death, or if they suffer the fate of all men, +then the LORD has not sent me. +But if the LORD +brings about something unprecedented, and the +earth opens its mouth and swallows them and all +that belongs to them so that they go down alive +into Sheol, then you will know that these men +31 +have treated the LORD with contempt.” +32 + +33 + +As soon as Moses had finished saying all this, +the ground beneath them split open, +and the +earth opened its mouth and swallowed them and +their households—all Korah’s men and all their +possessions. +They went down alive into Sheol +with all they owned. The earth closed over them, +34 +and they vanished from the assembly. + +35 + +At their cries, all the people of Israel who were +around them fled, saying, “The earth may swal- +low us too!” +And fire came forth from the LORD +and consumed the 250 men who were offering +The Censers Reserved for Holy Use +the incense. +36 + +37 + +Then the LORD said to Moses, +38 + +“Tell Eleazar +son of Aaron the priest to remove the censers +from the flames and to scatter the coals far away, +because the censers are holy. +As for the cen- +sers of those who sinned at the cost of their own +lives, hammer them into sheets to overlay the al- +tar, for these were presented before the LORD, +and so have become holy. They will serve as a +39 +sign to the Israelites.” + +So Eleazar the priest took the bronze censers +brought by those who had been burned up, and +40 +he had them hammered out to overlay the altar, +just as the LORD commanded him through +Moses. This was to be a reminder to the Israelites +that no outsider who is not a descendant of +Aaron should approach to offer incense before +the LORD, lest he become like Korah and his +Murmuring and Plague (1 Cor. 10:1–13) +followers. +41 + +The next day the whole congregation of Israel +grumbled against Moses and Aaron, saying, “You +have killed the LORD’s people!” +But when the +congregation gathered against them, Moses and + +42 + + Aaron turned toward the Tent of Meeting, and +suddenly the cloud covered it and the glory of the +43 +LORD appeared. + +44 + +45 +Tent of Meeting, + +Then Moses and Aaron went to the front of the +and the LORD said to Moses, +“Get away from this congregation so that I may +consume them in an instant.” And Moses and Aa- +46 +ron fell facedown. + +Moses said to Aaron, “Take your censer, place +fire from the altar in it, and add incense. Go +quickly to the congregation and make atonement +for them, because wrath has come out from the +47 +LORD; the plague has begun.” + +So Aaron took the censer as Moses had or- +dered and ran into the midst of the assembly. +And seeing that the plague had begun among the +48 +people, he offered the incense and made atone- +ment for the people. +He stood between the +49 +living and the dead, and the plague was halted. +But those who died from the plague numbered +14,700, in addition to those who had died on ac- +50 +count of Korah. + +Then Aaron returned to Moses at the entrance +to the Tent of Meeting, since the plague had been +Aaron’s Staff Buds +halted. + +2 + +17 + +3 + +“Speak to +And the LORD said to Moses, +the Israelites and take from them twelve +staffs, one from the leader of each tribe. Write +and write Aaron’s +each man’s name on his staff, +name on the staff of Levi, because there must be +Place the +one staff for the head of each tribe. +staffs in the Tent of Meeting in front of the Testi- +The staff belong- +mony, +ing to the man I choose will sprout, and I will rid +Myself of the constant grumbling of the Israelites +6 +against you.” + + where I meet with you. + +4 + +5 + +a + +So Moses spoke to the Israelites, and each of +their leaders gave him a staff—one for each of +the leaders of their tribes, twelve staffs in all. And +Aaron’s staff was among them. +Then Moses +placed the staffs before the LORD in the Tent of +8 +the Testimony. + +7 + +The next day Moses entered the Tent of the Tes- +timony and saw that Aaron’s staff, representing +the house of Levi, had sprouted, put forth buds, +Then Moses +blossomed, and produced almonds. +brought out all the staffs from the LORD’s pres- +ence to all the Israelites. They saw them, and +a 4 The Testimony +each man took his own staff. + +9 + +Numbers 18:9 | 143 + +10 + +The LORD said to Moses, “Put Aaron’s staff +back in front of the Testimony, to be kept as a +sign for the rebellious, so that you may put an +11 +end to their grumbling against Me, lest they die.” +So Moses did as the LORD had commanded + +12 +him. + +Then the Israelites declared to Moses, “Look, +13 +we are perishing! We are lost; we are all lost! +Anyone who comes near the tabernacle of the + +Duties of Priests and Levites +LORD will die. Are we all going to perish?” + +18 + +3 + +So the LORD said to Aaron, “You and +your sons and your father’s house must +bear the iniquity involving the sanctuary. And +2 +you and your sons alone must bear the iniquity +But bring with you +involving your priesthood. +also your brothers from the tribe of Levi, the +tribe of your father, that they may join you and +assist you and your sons before the Tent of the +And they shall attend to your duties +Testimony. +and to all the duties of the Tent; but they must +not come near to the furnishings of the sanctuary +They +or the altar, or both they and you will die. +are to join you and attend to the duties of the +Tent of Meeting, doing all the work at the Tent; +5 +but no outsider may come near you. + +4 + +7 + +6 + +And you shall attend to the duties of the sanctu- +ary and of the altar, so that wrath may not fall on +Behold, I Myself have se- +the Israelites again. +lected your fellow Levites from the Israelites as a +gift to you, dedicated to the LORD to perform the +But only you +service for the Tent of Meeting. +and your sons shall attend to your priesthood for +everything concerning the altar and what is in- +side the veil, and you are to perform that service. +I am giving you the work of the priesthood as a +gift, but any outsider who comes near the sanc- +Offerings for Priests and Levites +tuary must be put to death.” +8 + +9 + +Then the LORD said to Aaron, “Behold, I have +put you in charge of My offerings. As for all the +sacred offerings of the Israelites, I have given +them to you and your sons as a portion and a per- +A portion of the most holy of- +manent statute. +ferings reserved from the fire will be yours. From +all the offerings they render to Me as most holy +offerings, whether grain offerings or sin offerings +or guilt offerings, that part belongs to you and + + refers to the stone tablets in the ark of the covenant inscribed with the Ten Commandments; also v. 10. + + 144 | Numbers 18:10 + +10 + +a + +your sons. +offering, +11 +regard it as holy. + +You are to eat it as a most holy + and every male may eat it. You shall + +12 + +And this is yours as well: the offering of their +gifts, along with all the wave offerings of the Is- +raelites. I have given this to you and your sons +and daughters as a permanent statute. Every cer- +emonially clean person in your household may +eat it. +I give you all the freshest olive oil and all +the finest new wine and grain that the Israelites +give to the LORD as their firstfruits. +The +firstfruits of everything in their land that they +bring to the LORD will belong to you. Every cere- +monially clean person in your household may eat +14 +them. +15 + +13 + +Every devoted thing in Israel belongs to you. +The firstborn of every womb, whether man or +beast, that is offered to the LORD belongs to you. +But you must surely redeem every firstborn son +16 +and every firstborn male of unclean animals. +You are to pay the redemption price for a +month-old male according to your valuation: five +shekels of silver, + according to the sanctuary +17 +shekel, which is twenty gerahs. + +b + +c + +18 + +But you + + must not redeem the firstborn of +an ox, a sheep, or a goat; they are holy. You +are to splatter their blood on the altar and burn +their fat as a food offering, a pleasing aroma to +the LORD. +And their meat belongs to you, just +as the breast and right thigh of the wave offering +19 +belong to you. + +All the holy offerings that the Israelites pre- +sent to the LORD I give to you and to your sons + d +and daughters as a permanent statute. It is a per- +manent covenant of salt + before the LORD for +20 +you and your offspring.” + +Then the LORD said to Aaron, “You will have +no inheritance in their land, nor will you have +any portion among them. I am your portion and +21 +your inheritance among the Israelites. + +Behold, I have given to the Levites all the tithes +in Israel as an inheritance in return for the work +they do, the service of the Tent of Meeting. +No +longer may the Israelites come near to the Tent +23 +of Meeting, or they will incur guilt and die. + +22 + +The Levites are to perform the work of the +Tent of Meeting, and they must bear their iniq- +uity. This is a permanent statute for the genera- +b 16 5 shekels +a 10 +tions to come. The Levites will not receive an +c 16 20 gerahs +Or + +You are to eat it in a most holy place + +24 + +inheritance among the Israelites. +For I have +given to the Levites as their inheritance the tithe +that the Israelites present to the LORD as a con- +tribution. That is why I told them that they would +25 +not receive an inheritance among the Israelites.” + +26 + +28 + +And the LORD instructed Moses, + +“Speak to +the Levites and tell them: ‘When you receive +from the Israelites the tithe that I have given you +as your inheritance, you must present part of it +27 +as an offering to the LORD—a tithe of the tithe. +Your offering will be reckoned to you as grain +from the threshing floor or juice from the wine- +press. +So you are to present an offering to the +LORD from all the tithes you receive from the Is- +raelites, and from these you are to give the +You must +LORD’s offering to Aaron the priest. +present the offering due the LORD from all the +30 +best of every gift, the holiest part of it.’ + +29 + +31 + +Therefore say to the Levites, ‘When you have +presented the best part, it will be reckoned to +you as the produce of the threshing floor or +And you and your households may +winepress. +eat the rest of it anywhere; it is the compensation +for your work at the Tent of Meeting. +Once you +have presented the best part of it, you will not in- +cur guilt because of it. But you must not defile the +sacred offerings of the Israelites, or else you will +The Red Heifer +die.’ + +” + +32 + +19 + +2 + +Then the LORD said to Moses and +“This is the statute of the law +Aaron, +that the LORD has commanded: Instruct the Isra- +elites to bring you an unblemished red heifer +that has no defect and has never been placed un- +Give it to Eleazar the priest, and he +der a yoke. +will have it brought outside the camp and slaugh- +4 +tered in his presence. + +3 + +5 + +Eleazar the priest is to take some of its blood on +his finger and sprinkle it seven times toward the +Then the heifer +front of the Tent of Meeting. +must be burned in his sight. Its hide, its flesh, and +6 +its blood are to be burned, along with its dung. +The priest is to take cedar wood, hyssop, and +scarlet wool and throw them onto the burning +7 +heifer. + +Then the priest must wash his clothes and +bathe his body in water; after that he may enter +the camp, but he will be ceremonially unclean +The one who burned the heifer +until evening. + +8 + +d 19 + + is equivalent to one shekel (approximately 0.4 ounces or 11.4 grams). + +That is, a perpetual covenant + + is approximately 2 ounces or 57 grams of silver. + + must also wash his clothes and bathe his body in +water, and he too will be ceremonially unclean +9 +until evening. + +Then a man who is ceremonially clean is to +gather up the ashes of the heifer and store them +in a ceremonially clean place outside the camp. +They must be kept by the congregation of Israel +10 +for preparing the water of purification; this is for +The man who has gath- +purification from sin. +ered up the ashes of the heifer must also wash his +clothes, and he will be ceremonially unclean until +evening. This is a permanent statute for the Isra- +Purification of the Unclean +elites and for the foreigner residing among them. +11 + +12 + +13 + +Whoever touches any dead body will be un- +He must purify himself +clean for seven days. +with the water on the third day and on the sev- +enth day; then he will be clean. But if he does not +purify himself on the third and seventh days, he +Anyone who touches a hu- +will not be clean. +man corpse and fails to purify himself defiles the +tabernacle of the LORD. That person must be cut +off from Israel. He remains unclean, because the +water of purification has not been sprinkled on +14 +him, and his uncleanness is still on him. + +This is the law when a person dies in a tent: +Everyone who enters the tent and everyone al- +15 +ready in the tent will be unclean for seven days, +and any open container without a lid fastened + +16 +on it is unclean. + +Anyone in the open field who touches some- +one who has been killed by the sword or has died +of natural causes, or anyone who touches a hu- +man bone or a grave, will be unclean for seven +17 +days. + + a + +For the purification of the unclean person, take +some of the ashes of the burnt sin offering, put +18 +them in a jar, and pour fresh water + over them. +Then a man who is ceremonially clean is to +take some hyssop, dip it in the water, and sprin- +kle the tent, all the furnishings, and the people +who were there. He is also to sprinkle the one +who touched a bone, a grave, or a person who has +19 +died or been slain. + +The man who is ceremonially clean is to sprin- +kle the unclean person on the third day and on +the seventh day. After he purifies the unclean +person on the seventh day, the one being +cleansed must wash his clothes and bathe in wa- +living water +a 17 +ter, and that evening he will be clean. +But if a + +flowing water + +20 + +Or + + or + +Numbers 20:12 | 145 + +person who is unclean does not purify himself, +he will be cut off from the assembly, because he +has defiled the sanctuary of the LORD. The water +of purification has not been sprinkled on him; he +21 +is unclean. + +This is a permanent statute for the people: The +one who sprinkles the water of purification must +wash his clothes, and whoever touches the water +22 +of purification will be unclean until evening. +Anything the unclean person touches will be- +come unclean, and anyone who touches it will be +Water from the Rock (Exodus 17:1–7) +unclean until evening.” + +20 + +In the first month, the whole congrega- +tion of Israel entered the Wilderness of +Zin and stayed in Kadesh. There Miriam died and +2 +was buried. + +3 + +4 + +Now there was no water for the congregation, +so they gathered against Moses and Aaron. +The +people quarreled with Moses and said, “If only +we had perished with our brothers before the +LORD! +Why have you brought the LORD’s +assembly into this wilderness for us and our +livestock to die here? +Why have you led us up +out of Egypt to bring us to this wretched place? It +is not a place of grain, figs, vines, or pomegran- +6 +ates—and there is no water to drink!” + +5 + +8 + +Then Moses and Aaron went from the presence +of the assembly to the entrance to the Tent of +7 +Meeting. They fell facedown, and the glory of the +LORD appeared to them. +And the LORD said to +Moses, +“Take the staff and assemble the congre- +gation. You and your brother Aaron are to speak +to the rock while they watch, and it will pour out +its water. You will bring out water from the rock +and provide drink for the congregation and their +9 +livestock.” + +10 + +11 + +So Moses took the staff from the LORD’s pres- +Then +ence, just as he had been commanded. +Moses and Aaron gathered the assembly in front +of the rock, and Moses said to them, “Listen now, +you rebels, must we bring you water out of this +rock?” +Then Moses raised his hand and struck +the rock twice with his staff, so that a great +amount of water gushed out, and the congrega- +12 +tion and their livestock were able to drink. + +But the LORD said to Moses and Aaron, “Be- +cause you did not trust Me to show My holiness +in the sight of the Israelites, you will not bring +this assembly into the land that I have given them.” + + 146 | Numbers 20:13 + +13 + +a + +28 + +These were the waters of Meribah, + + where the +Israelites quarreled with the LORD, and He +Edom Refuses Passage +showed His holiness among them. +14 + +15 + +From Kadesh, Moses sent messengers to tell +the king of Edom, “This is what your brother +Israel says: You know all the hardship that has +how our fathers went down to +befallen us, +Egypt, where we lived many years. The Egyp- +tians mistreated us and our fathers, +and when +we cried out to the LORD, He heard our voice, +sent an angel, and brought us out of Egypt. + +16 + +17 + +Now look, we are in Kadesh, a city on the edge of +Please let us pass through your +your territory. +land. We will not go through any field or vine- +yard, or drink water from any well. We will stay +on the King’s Highway; we will not turn to the +right or to the left until we have passed through +18 +your territory.” + +But Edom answered, “You may not travel +through our land, or we will come out and con- +19 +front you with the sword.” + +“We will stay on the main road,” the Israelites +replied, “and if we or our herds drink your water, +we will pay for it. There will be no problem; only +20 +let us pass through on foot.” + +But Edom + +insisted, “You may not pass +through.” And they came out to confront the Is- +21 +raelites with a large army and a strong hand. +So Edom refused to allow Israel to pass +through their territory, and Israel turned away +The Death of Aaron +from them. +22 + +23 + +24 + +After they had set out from Kadesh, the whole +congregation of Israel came to Mount Hor. +And +at Mount Hor, near the border of the land of +“Aa- +Edom, the LORD said to Moses and Aaron, +ron will be gathered to his people; he will not +enter the land that I have given the Israelites, be- +cause both of you rebelled against My command +Take Aaron and his +at the waters of Meribah. +Re- +son Eleazar and bring them up Mount Hor. +move Aaron’s priestly garments and put them on +his son Eleazar. Aaron will be gathered to his +27 +people and will die there.” + +26 + +25 + +29 + +whole congregation. +After Moses had removed +Aaron’s garments and put them on his son +Eleazar, Aaron died there on top of the mountain. +Then Moses and Eleazar came down from the +When the whole congregation saw +mountain. +that Aaron had died, the entire house of Israel +The Defeat of Arad +mourned for him thirty days. + +21 + +When the Canaanite king of Arad, who +lived in the Negev, heard that Israel was +coming along the road to Atharim, he attacked Is- +So Israel +rael and captured some prisoners. +made a vow to the LORD: “If You will deliver this +people into our hands, we will devote their cities +3 +to destruction. + +” + +2 + +b + +c + +And the LORD heard Israel’s plea and delivered +up the Canaanites. Israel devoted them and their +cities to destruction; so they named the place +The Bronze Serpent +Hormah. +4 + +d + +5 + +Then they set out from Mount Hor along the +route to the Red Sea, + in order to bypass the land +of Edom. But the people grew impatient on the +and spoke against God and against Mo- +journey +ses: “Why have you led us up out of Egypt to die +in the wilderness? There is no bread or water, +6 +and we detest this wretched food!” + +So the LORD sent venomous snakes among the +people, and many of the Israelites were bitten +7 +and died. + +Then the people came to Moses and said, “We +have sinned by speaking against the LORD and +against you. Intercede with the LORD so He will +take the snakes away from us.” So Moses inter- +8 +ceded for the people. + +9 + +Then the LORD said to Moses, “Make a fiery ser- +pent and mount it on a pole. When anyone who +is bitten looks at it, he will live.” +So Moses made +a bronze snake and mounted it on a pole. If any- +one who was bitten looked at the bronze snake, +The Journey to Moab +he would live. +10 + +11 + +They + +Then the Israelites set out and camped at +journeyed from Oboth and +Oboth. +12 +camped at Iye-abarim in the wilderness opposite +From there they set out and +Moab to the east. +cherem +camped in the Valley of Zered. +From there they +Forms of the Hebrew + + refer to the giving + +13 + +So Moses did as the LORD had commanded, +a 13 Meribah +and they climbed Mount Hor in the sight of the +c 3 Hormah +over of things or persons to the LORD, either by destroying them or by giving them as an offering; also in verse 3. + +; also in verse 24; see Exodus 17:7. + +the Sea of Reeds + +destruction + +quarreling + + means + +d 4 + +b 2 + + means + +. + +Or + + moved on and camped on the other side of the +Arnon, in the wilderness that extends into the +Amorite territory. + +14 +Now the Arnon is the border between the Moab- +Therefore it is stated in +ites and the Amorites. +the Book of the Wars of the LORD: + +“Waheb in Suphah + +15 + +and the wadis of the Arnon, + +even the slopes of the wadis + +16 + +that extend to the site of Ar +a +and lie along the border of Moab.” + +From there they went on to Beer, +17 + + the well +where the LORD said to Moses, “Gather the peo- +ple so that I may give them water.” +Then Israel +sang this song: + +“Spring up, O well, + +18 + +all of you sing to it! +The princes dug the well; + +the nobles of the people hollowed it out + +with their scepters + +and with their staffs.” + +19 + +20 + +From the wilderness the Israelites went on to +Mattanah, +and from Mattanah to Nahaliel, and +and from Bamoth to +from Nahaliel to Bamoth, +the valley in Moab where the top of Pisgah over- +The Defeat of Sihon (Deuteronomy 2:24–37) +looks the wasteland. +21 + +b + +22 +Then Israel sent messengers to Sihon king of +“Let us pass through +the Amorites, saying, +your land. We will not turn aside into any field or +vineyard, or drink water from any well. We will +stay on the King’s Highway until we have passed +23 +through your territory.” + +But Sihon would not let Israel pass through his +territory. Instead, he gathered his whole army +c +and went out to confront Israel in the wilderness. +24 + he fought against Israel. +When he came to Jahaz, +And Israel put him to the sword and took +possession of his land, from the Arnon to the +Jabbok—but only up to the border of the Ammo- +25 +nites, because it was fortified. + +d + +26 + +Israel captured all the cities of the Amorites +and occupied them, including Heshbon and all its +villages. +Heshbon was the city of Sihon king of +the Amorites, who had fought against the former +27 +king of Moab and taken all his land as far as the +Arnon. +a 16 Beer +was rugged + +That is why the poets say: + +c 23 Jahaz + +Jeshimon +because it was strong +. +Or + + means + +b 20 + +e 30 + +well + +Numbers 22:5 | 147 + +28 + +“Come to Heshbon, let it be rebuilt; +let the city of Sihon be restored. +For a fire went out from Heshbon, +a blaze from the city of Sihon. + +It consumed Ar of Moab, + +29 + +the rulers of Arnon’s heights. + +Woe to you, O Moab! + +You are destroyed, O people of Chemosh! + +He gave up his sons as refugees, + +30 + +and his daughters into captivity +to Sihon king of the Amorites. + +But we have overthrown them; + +Heshbon is destroyed as far as Dibon. + +e + +We demolished them as far as Nophah, +The Defeat of Og (Deuteronomy 3:1–11) + +which reaches to Medeba. + +” + +31 +32 + +So Israel lived in the land of the Amorites. +After Moses had sent spies to Jazer, Israel cap- +tured its villages and drove out the Amorites who +33 +were there. + +Then they turned and went up the road to Ba- +shan, and Og king of Bashan and his whole army +34 +came out to meet them in battle at Edrei. + +But the LORD said to Moses, “Do not fear him, +for I have delivered him into your hand, along +with all his people and his land. Do to him as you +did to Sihon king of the Amorites, who lived in +35 +Heshbon.” + +So they struck down Og, along with his sons +and his whole army, until no remnant was left. +Balak Summons Balaam +And they took possession of his land. + +22 + +Then the Israelites traveled on and +camped in the plains of Moab near the + +2 +Jordan, across from Jericho. + +3 + +4 + +Now Balak son of Zippor saw all that Israel had +and Moab was terrified of +done to the Amorites, +the people because they were numerous. Indeed, +Moab dreaded the Israelites. +So the Moabites +said to the elders of Midian, “This horde will de- +vour everything around us, as an ox licks up the +grass of the field.” + +5 + +Since Balak son of Zippor was king of Moab at +he sent messengers to summon +that time, +Balaam son of Beor at Pethor, which is by the Eu- +phrates + + in the land of his people. + + f + +; literally + +Or + +Hebrew + +d 24 +We demolished them until fire spread to Medeba + is a variant of + +; see 1 Chr. 6:78. + +Jahzah + +Or + +because the territory +the River +f 5 + + 148 | Numbers 22:6 + +6 + +“Behold, a people has come out of Egypt,” said +Balak. “They cover the face of the land and have +settled next to me. +So please come now and put +a curse on this people, because they are too +mighty for me. Perhaps I may be able to defeat +them and drive them out of the land; for I know +that those you bless are blessed, and those you +7 +curse are cursed.” + +The elders of Moab and Midian departed with +the fees for divination in hand. They came to Ba- +8 +laam and relayed to him the words of Balak. + +“Spend the night here,” Balaam replied, “and I +will give you the answer that the LORD speaks to +9 +me.” So the princes of Moab stayed with Balaam. + +Then God came to Balaam and asked, “Who are + +10 +these men with you?” + +11 + +And Balaam said to God, “Balak son of Zippor, +‘Behold, a +king of Moab, sent me this message: +people has come out of Egypt, and they cover the +face of the land. Now come and put a curse on +them for me. Perhaps I may be able to fight +12 +against them and drive them away.’ + +” + +But God said to Balaam, “Do not go with them. +You are not to curse this people, for they are +13 +blessed.” + +So Balaam got up the next morning and said to +Balak’s princes, “Go back to your homeland, be- +cause the LORD has refused to let me go with +14 +you.” + +And the princes of Moab arose, returned to Ba- +15 +lak, and said, “Balaam refused to come with us.” + +16 + +Then Balak sent other princes, more numer- +ous and more distinguished than the first +messengers. +They came to Balaam and said, +“This is what Balak son of Zippor says: ‘Please let +nothing hinder you from coming to me, +for I +will honor you richly and do whatever you say. +So please come and put a curse on this people for +18 +me!’ + +17 + +” + +But Balaam replied to the servants of Balak, “If +Balak were to give me his house full of silver and +gold, I could not do anything small or great to go +So +beyond the command of the LORD my God. +now, please stay here overnight as the others did, +that I may find out what else the LORD has to tell +20 +me.” + +19 + +That night God came to Balaam and said, +a 22 +“Since these men have come to summon you, get + +Angel + +21 + +up and go with them, but you must only do what +I tell you.” +So in the morning Balaam got up, +saddled his donkey, and went with the princes of +The Angel and Balaam’s Donkey +Moab. +22 + + a + +Then God’s anger was kindled because Balaam +was going along, and the angel + of the LORD +stood in the road to oppose him. Balaam was rid- +ing his donkey, and his two servants were with +23 +him. + +When the donkey saw the angel of the LORD +standing in the road with a drawn sword in his +hand, she turned off the path and went into a +field. So Balaam beat her to return her to the +24 +path. + +25 + +Then the angel of the LORD stood in a narrow +passage between two vineyards, with walls on +either side. +And the donkey saw the angel of +the LORD and pressed herself against the wall, +crushing Balaam’s foot against it. So he beat her +26 +once again. + +27 + +And the angel of the LORD moved on ahead +and stood in a narrow place where there was no +When the don- +room to turn to the right or left. +key saw the angel of the LORD, she lay down un- +der Balaam, and he became furious and beat her +28 +with his staff. + +Then the LORD opened the donkey’s mouth, +and she said to Balaam, “What have I done to you +29 +that you have beaten me these three times?” + +Balaam answered the donkey, “You have made +a fool of me! If I had a sword in my hand, I would +30 +kill you right now!” + +But the donkey said to Balaam, “Am I not the +donkey you have ridden all your life until today? +Have I ever treated you this way before?” +31 +“No,” he replied. + +Then the LORD opened Balaam’s eyes, and he +saw the angel of the LORD standing in the road +with a drawn sword in his hand. And Balaam +32 +bowed low and fell facedown. + + b + +The angel of the LORD asked him, “Why have +you beaten your donkey these three times? Be- +hold, I have come out to oppose you, because +The donkey +your way is perverse +saw me and turned away from me these three +times. If she had not turned away, then by now I +contrary +would surely have killed you and let her live.” + + before me. + +reckless + +b 32 + +33 + +Or + +; here and the rest of ch. 22; corresponding pronouns may also be capitalized. + +Or + + or + + 34 + +“I have sinned,” Balaam said to the angel of the +LORD, “for I did not realize that you were stand- +ing in the road to confront me. And now, if this is +35 +displeasing in your sight, I will go back home.” + +But the angel of the LORD said to Balaam, “Go +with the men, but you are to speak only what I +tell you.” So Balaam went with the princes of Ba- +36 +lak. + +When Balak heard that Balaam was coming, he +went out to meet him at the Moabite city on the +Arnon border, at the edge of his territory. +And +he said to Balaam, “Did I not send you an urgent +summons? Why did you not come to me? Am I +38 +really not able to reward you richly?” + +37 + +“See, I have come to you,” Balaam replied, “but +can I say just anything? I must speak only the +39 +word that God puts in my mouth.” + +40 + +So Balaam accompanied Balak, and they came +to Kiriath-huzoth. +Balak sacrificed cattle and +sheep, and he gave portions to Balaam and the +41 +princes who were with him. + +The next morning, Balak took Balaam and +brought him up to Bamoth-baal. From there he +Balaam’s First Oracle +could see the outskirts of the camp of the people. + +23 + +Then Balaam said to Balak, “Build for me +seven altars here, and prepare for me + +2 +seven bulls and seven rams.” + +So Balak did as Balaam had instructed, and Ba- +lak and Balaam offered a bull and a ram on each +3 +altar. + +“Stay here by your burnt offering while I am +gone,” Balaam said to Balak. “Perhaps the LORD +will meet with me. And whatever He reveals to +me, I will tell you.” + +4 + +So Balaam went off to a barren height, +and God +met with him. “I have set up seven altars,” Ba- +laam said, “and on each altar I have offered a bull +5 +and a ram.” + +Numbers 23:21 | 149 + +‘Come,’ he said, ‘put a curse on Jacob for me; + +8 + +come and denounce Israel!’ + +How can I curse those whom God has not + +cursed? + +9 + +How can I denounce those whom the + +LORD has not denounced? +For I see them from atop the rocky cliffs, +and I watch them from the hills. + +Behold, a people dwelling apart, + +10 + +not reckoning themselves among the + +nations. + +Who can count the dust of Jacob + +or number even a fourth of Israel? +Let me die the death of the righteous; + +let my end be like theirs!” + +11 + +Then Balak said to Balaam, “What have you +done to me? I brought you here to curse my ene- +12 +mies, and behold, you have only blessed them!” + +But Balaam replied, “Should I not speak ex- + +Balaam’s Second Oracle +actly what the LORD puts in my mouth?” +13 + +Then Balak said to him, “Please come with me +to another place where you can see them. You +will only see the outskirts of their camp—not all +14 +of them. And from there, curse them for me.” + +So Balak took him to the field of Zophim, to the +top of Pisgah, where he built seven altars and of- +15 +fered a bull and a ram on each altar. + +Balaam said to Balak, “Stay here beside your +16 +burnt offering while I meet the LORD over there.” + +And the LORD met with Balaam and put a mes- +sage in his mouth, saying, “Return to Balak and +17 +speak what I tell you.” + +So he returned to Balak, who was standing +there by his burnt offering with the princes of +Moab. +18 +“What did the LORD say?” Balak asked. + +Then Balaam lifted up an oracle, saying: + +Then the LORD put a message in Balaam’s +mouth, saying, “Return to Balak and give him this +6 +message.” + +19 + +“Arise, O Balak, and listen; + +give ear to me, O son of Zippor. +God is not a man, that He should lie, + +So he returned to Balak, who was standing +there beside his burnt offering, with all the +7 +princes of Moab. + +And Balaam lifted up an oracle, saying: + +“Balak brought me from Aram, + +the king of Moab from the mountains + +of the east. + +or a son of man, that He should change His + +mind. + +20 + +Does He speak and not act? + +Does He promise and not fulfill? + +21 + +I have indeed received a command to bless; +He has blessed, and I cannot change it. + +He considers no disaster for Jacob; +He sees no trouble for Israel. + + 150 | Numbers 23:22 + +7 + +The LORD their God is with them, + +22 + +Water will flow from his buckets, + +and the shout of the King is among them. + +and his seed will have abundant + +23 + +God brought them out of Egypt +with strength like a wild ox. +For there is no spell against Jacob + +and no divination against Israel. +It will now be said of Jacob and Israel, +‘What great things God has done!’ +Behold, the people rise like a lioness; +they rouse themselves like a lion, +not resting until they devour their prey +and drink the blood of the slain.” + +24 + +25 + +Now Balak said to Balaam, “Then neither curse + +26 +them at all nor bless them at all!” + +But Balaam replied, “Did I not tell you that + +27 +whatever the LORD says, I must do?” + +“Please come,” said Balak, “I will take you to +another place. Perhaps it will please God that you +28 +curse them for me from there.” +a + +And Balak took Balaam to the top of Peor, + +29 +which overlooks the wasteland. + +Then Balaam said, “Build for me seven altars +here, and prepare for me seven bulls and seven +30 +rams.” + +So Balak did as Balaam had instructed, and he + +Balaam’s Third Oracle +offered a bull and a ram on each altar. + +24 + +And when Balaam saw that it pleased the +LORD to bless Israel, he did not seek +omens as on previous occasions, but he turned +When Balaam +his face toward the wilderness. +3 +looked up and saw Israel encamped tribe by +and he +tribe, the Spirit of God came upon him, +lifted up an oracle, saying: + +2 + +water. + +His king will be greater than Agag, + +8 + +and his kingdom will be exalted. + +God brought him out of Egypt + +with strength like a wild ox, + +to devour hostile nations and crush their + +9 + +bones, + +to pierce them with arrows. +He crouches, he lies down like a lion, + +like a lioness—who dares to rouse him? + +Blessed are those who bless you + +Balak Dismisses Balaam + +and cursed are those who curse you.” + +10 + +Then Balak’s anger burned against Balaam, +and he struck his hands together and said to Ba- +laam, “I summoned you to curse my enemies, but +behold, you have persisted in blessing them +Therefore, flee at once to +these three times. +your home! I said I would reward you richly, but +12 +instead the LORD has denied your reward.” + +11 + +13 + +Balaam answered Balak, “Did I not already tell +the messengers you sent me +that even if Balak +were to give me his house full of silver and gold, +I could not do anything of my own accord, good +or bad, to go beyond the command of the LORD? +Now I +I must speak whatever the LORD says. +am going back to my people, but come, let me +warn you what this people will do to your people +Balaam’s Fourth Oracle +in the days to come.” +15 + +14 + +Then Balaam lifted up an oracle, saying, + +“This is the prophecy of Balaam son of Beor, +the prophecy of a man whose eyes are + +16 + +“This is the prophecy of Balaam son of Beor, +the prophecy of a man whose eyes are + +4 + +open, + +open, + +the prophecy of one who hears the + +words of God, + +the prophecy of one who hears the words of + +b + +who has knowledge from the Most High, + +God, + +5 + +who sees a vision from the Almighty, +who bows down with eyes wide open: + +How lovely are your tents, O Jacob, + +c + +6 + +your dwellings, O Israel! +They spread out like palm groves, +like gardens beside a stream, +like aloes the LORD has planted, +b 4 +Jeshimon +like cedars beside the waters. +princes + +Shaddai + +a 28 +the head) + +who sees a vision from the Almighty, +who bows down with eyes wide + +17 + +open: + +I see him, but not now; + +I behold him, but not near. +A star will come forth from Jacob, + + d + +and a scepter will arise from Israel. + +He will crush the skulls +like valleys + +d 17 + +and strike down all the sons of Sheth. +foreheads + +corners (of + + of Moab + +c 6 + +Or + +; LXX + +Hebrew + +; also in verse 16 + +Or + +SP + +; Hebrew + + 18 + +Edom will become a possession, + +19 + +as will Seir, his enemy; +but Israel will perform with valor. + +A ruler will come from Jacob +Balaam’s Final Three Oracles + +and destroy the survivors of the city.” + +20 + +Then Balaam saw Amalek and lifted up an + +oracle, saying: + +21 + +“Amalek was first among the nations, + +but his end is destruction.” + +Next he saw the Kenites and lifted up an oracle, + +saying: + +22 + +“Your dwelling place is secure, +and your nest is set in a cliff. + a + +Yet Kain will be destroyed + +23 + +when Asshur + + takes you captive.” + +Once more Balaam lifted up an oracle, saying: + +24 + +“Ah, who can live + +unless God has ordained it? + + b + +Ships will come from the coasts of Cyprus; +they will subdue Asshur and Eber, +but they too will perish forever.” + +25 + +Then Balaam arose and returned to his home- + +Moab Seduces Israel (1 Corinthians 10:1–13) +land, and Balak also went on his way. + +c + +2 + + the +While Israel was staying in Shittim, +men began to indulge in sexual immoral- +who also invited +ity with the daughters of Moab, +them to the sacrifices for their gods. And the peo- +So Israel +ple ate and bowed down to these gods. +joined in worshiping Baal of Peor, and the anger +4 +of the LORD burned against them. + +3 + +Then the LORD said to Moses, “Take all the lead- +ers of the people and execute them in broad day- +light before the LORD, so that His fierce anger +5 +may turn away from Israel.” + +So Moses told the judges of Israel, “Each of you +must kill all of his men who have joined in wor- +The Zeal of Phinehas +shiping Baal of Peor.” +6 + +Just then an Israelite man brought to his family +a Midianite woman in the sight of Moses and the +whole congregation of Israel while they were +7 +weeping at the entrance to the Tent of Meeting. +On seeing this, Phinehas son of Eleazar, the son +of Aaron the priest, got up from the assembly, +followed the Israelite +took a spear in his hand, +b 24 +a 22 +into his tent, and drove the spear through both of + +Assyria + +Kittim + +c 1 + +8 + +25 + +Numbers 26:6 | 151 + +them—through the Israelite and on through the +belly of the woman. +9 +So the plague against the Israelites was halted, +but those who died in the plague numbered + +11 + +10 +24,000. + +12 + +Then the LORD said to Moses, + +“Phinehas son +of Eleazar, the son of Aaron the priest, has turned +My wrath away from the Israelites; for he was +zealous for My sake among them, so that I did not +Declare, +consume the Israelites in My zeal. +therefore, that I am granting him My covenant of +It will be a covenant of permanent +peace. +priesthood for him and his descendants, because +he was zealous for his God and made atonement +14 +for the Israelites.” + +13 + +15 + +The name of the Israelite who was slain with +the Midianite woman was Zimri son of Salu, the +And the name of +leader of a Simeonite family. +the slain Midianite woman was Cozbi, the daugh- +16 +ter of Zur, a tribal chief of a Midianite family. + +17 +18 + +“Attack the +And the LORD said to Moses, +For they as- +Midianites and strike them dead. +sailed you deceitfully when they seduced you in +the matter of Peor and their sister Cozbi, the +daughter of the Midianite leader, the woman who +was killed on the day the plague came because of +The Second Census of Israel (Numbers 1:1–4) +Peor.” + +26 + +2 + +After the plague had ended, the LORD +said to Moses and Eleazar son of Aaron +“Take a census of the whole congre- +the priest, +gation of Israel by the houses of their fathers— +all those twenty years of age or older who can +3 +serve in the army of Israel.” + +4 + +So on the plains of Moab by the Jordan, across +from Jericho, Moses and Eleazar the priest issued +“Take a census of the men +the instruction, +twenty years of age or older, + as the LORD has +commanded Moses.” + +d + +And these were the Israelites who came out of +The Tribe of Reuben +the land of Egypt: +5 + +Reuben was the firstborn of Israel. These were + +the descendants of Reuben: + +The Hanochite clan from Hanoch, +6 +the Palluite clan from Pallu, + +the Hezronite clan from Hezron, + +Or + +; also v. 24 + +Hebrew + +Or + + is implied; see verse 2. + +Acacia Grove + +d 4 Take a census of the men +and the Carmite clan from Carmi. + + 152 | Numbers 26:7 + +7 + +22 + +These were the clans of Reuben, and their reg- + +8 +istration numbered 43,730. + +9 + +Now the son of Pallu was Eliab, + +and the sons of + +10 + +Eliab were Nemuel, Dathan, and Abiram. +It was Dathan and Abiram, chosen by the congre- +gation, who rebelled against Moses and Aaron +with the followers of Korah who rebelled against +the LORD. +And the earth opened its mouth and +swallowed them along with Korah, whose fol- +lowers died when the fire consumed 250 men. +They serve as a warning sign. +However, the +The Tribe of Simeon +line of Korah did not die out. +12 + +11 + +These were the descendants of Simeon by + +a + +their clans: + +The Nemuelite clan from Nemuel, +the Jaminite clan from Jamin, +13 +the Jachinite clan from Jachin, +the Zerahite clan from Zerah, +and the Shaulite clan from Shaul. +These were the clans of Simeon, and there + +b + +14 + +The Tribe of Gad +were 22,200 men. +15 + +These were the descendants of Gad by their + +clans: + +The Zephonite clan from Zephon, +the Haggite clan from Haggi, +16 +the Shunite clan from Shuni, +the Oznite clan from Ozni, + +17 +the Erite clan from Eri, + +c + +These were the clans of Judah, and their regis- + +The Tribe of Issachar +tration numbered 76,500. +23 + +These were the descendants of Issachar by + +their clans: + +d +The Tolaite clan from Tola, +24 +the Punite clan from Puvah, + +e + +the Jashubite clan from Jashub, + +25 + +and the Shimronite clan from Shimron. +These were the clans of Issachar, and their reg- + +The Tribe of Zebulun +istration numbered 64,300. +26 + +These were the descendants of Zebulun by + +their clans: + +27 + +The Seredite clan from Sered, +the Elonite clan from Elon, +and the Jahleelite clan from Jahleel. +These were the clans of Zebulun, and their reg- + +The Tribe of Manasseh +istration numbered 60,500. +28 + +The descendants of Joseph included the clans + +29 +of Manasseh and Ephraim. + +These were the descendants of Manasseh: +The Machirite clan from Machir, the father of +Gilead, +30 +and the Gileadite clan from Gilead. + +f + +These were the descendants of Gilead: +the Iezerite clan from Iezer, +31 +the Helekite clan from Helek, + +18 + +the Arodite clan from Arod, +and the Arelite clan from Areli. + +These were the clans of Gad, and their regis- + +The Tribe of Judah +tration numbered 40,500. +19 + +20 + +The sons of Judah were Er and Onan, but they +These were the de- + +died in the land of Canaan. +scendants of Judah by their clans: + +34 + +the Asrielite clan from Asriel, +32 +the Shechemite clan from Shechem, + +the Shemidaite clan from Shemida, +33 +and the Hepherite clan from Hepher. + +Now Zelophehad son of Hepher had no +sons but only daughters. The names of his +daughters were Mahlah, Noah, Hoglah, +Milcah, and Tirzah. + +The Shelanite clan from Shelah, +the Perezite clan from Perez, +21 +and the Zerahite clan from Zerah. + +These were the clans of Manasseh, and their + +The Tribe of Ephraim +registration numbered 52,700. +35 + +And these were the descendants of + +These were the descendants of Ephraim by + +Perez: + +their clans: + +a 12 Nemuel + +the Hezronite clan from Hezron +and the Hamulite clan from Hamul. + +Jemuel + +c 17 + is another name for +e 24 Jashub +SP and Syriac + +Arodi + +dus 6:15. +1 Chronicles 7:1. + +b 13 Zerah + +The Shuthelahite clan from Shuthelah, +Zohar + +the Becherite clan from Becher, + +the Puite clan from Puah + +d 23 + +; see Genesis 46:10. + +Job +; see Genesis 46:16. + + is a variant of + +f 30 Iezer + +SP, LXX, Vulgate, and Syriac + + is a variant of + +; see Genesis 46:13. + + is a variant of + +Abiezer + +; see Genesis 46:10 and Exo- +; see +; see Joshua 17:2. + + 36 +and the Tahanite clan from Tahan. + +And the descendants of Shuthelah were + +37 + +the Eranite clan from Eran. + +These were the clans of Ephraim, and their + +registration numbered 32,500. +The Tribe of Benjamin +These clans were the descendants of Joseph. +38 + +These were the descendants of Benjamin by + +their clans: + +The Belaite clan from Bela, + +the Ashbelite clan from Ashbel, +39 +the Ahiramite clan from Ahiram, + +a + +the Shuphamite clan from Shupham, + +40 +and the Huphamite clan from Hupham. + + b + +And the descendants of Bela from Ard +and Naaman were the Ardite clan from Ard +and the Naamite clan from Naaman. + +41 + +These were the clans of Benjamin, and their + +The Tribe of Dan +registration numbered 45,600. +42 + +These were the descendants of Dan by their + +clans: + +The Shuhamite clan from Shuham. + +43 + +All of them were +These were the clans of Dan. +Shuhamite clans, and their registration num- +The Tribe of Asher +bered 64,400. +44 + +These were the descendants of Asher by their + +clans: + +The Imnite clan from Imnah, + +the Ishvite clan from Ishvi, +45 +and the Beriite clan from Beriah. + +And these were the descendants of + +Beriah: + +the Heberite clan from Heber + +46 + +and the Malchielite clan from Malchiel. + +And the name of Asher’s daughter was + +47 + +Serah. + +These were the clans of Asher, and their regis- + +The Tribe of Naphtali +tration numbered 53,400. +48 + +These were the descendants of Naphtali by + +their clans: +a 39 + +Numbers 26:62 | 153 + +The Jahzeelite clan from Jahzeel, +49 +the Gunite clan from Guni, + +the Jezerite clan from Jezer, + +50 + +and the Shillemite clan from Shillem. + +These were the clans of Naphtali, and their + +51 +registration numbered 45,400. +Inheritance by Lot + +These men of Israel numbered 601,730 in all. + +52 + +53 + +54 + +Then the LORD said to Moses, + +“The land is to +be divided among the tribes as an inheritance, +according to the number of names. +Increase +the inheritance for a large tribe and decrease +it for a small one; each tribe is to receive its +inheritance according to the number of those +55 +registered. + +Indeed, the land must be divided by lot; they +shall receive their inheritance according to the +Each +names of the tribes of their fathers. +inheritance is to be divided by lot among the +The Levites Numbered +larger and smaller tribes.” +57 + +56 + +Now these were the Levites numbered by their + +clans: + +The Gershonite clan from Gershon, + +the Kohathite clan from Kohath, + +58 + +and the Merarite clan from Merari. + +These were the families of the Levites: + +The Libnite clan, + +the Hebronite clan, + +the Mahlite clan, + +the Mushite clan, + +and the Korahite clan. + +59 + +60 + +and +Now Kohath was the father of Amram, +Amram’s wife was named Jochebed. She was also +a daughter of Levi, born to Levi in Egypt. To Am- +ram she bore Aaron, Moses, and their sister Mir- +Nadab, Abihu, Eleazar, and Ithamar were +iam. +but Nadab and Abihu died when +born to Aaron, +62 + fire before the LORD. +they offered unauthorized + +61 + + c + +The registration of the Levites totaled 23,000, +every male a month old or more; they were +not numbered among the other Israelites, be- +cause no inheritance was given to them among +the Israelites. + +Shephupham + +b 40 + +A few MT manuscripts, SP, Vulgate, and Syriac (see also LXX); most MT manuscripts + +SP and Vul- + +gate (see also LXX); MT does not include + +. + +Or + +from Ard + +c 61 + +strange + + 154 | Numbers 26:63 + +Only Caleb and Joshua Remain + +63 + +These were the ones numbered by Moses and +Eleazar the priest when they counted the Israel- +ites on the plains of Moab by the Jordan, across +64 +from Jericho. + +65 + +Among all these, however, there was not one +who had been numbered by Moses and Aaron the +priest when they counted the Israelites in the +For the LORD had told +Wilderness of Sinai. +them that they would surely die in the wilder- +ness. Not one was left except Caleb son of +The Daughters of Zelophehad (Num. 36:1–13) +Jephunneh and Joshua son of Nun. + +27 + +2 + +Now the daughters of Zelophehad son of +Hepher, the son of Gilead, the son of +Machir, the son of Manasseh, belonged to the +clans of Manasseh son of Joseph. These were the +names of his daughters: Mahlah, Noah, Hoglah, +the +Milcah, and Tirzah. They approached +entrance to the Tent of Meeting, stood before +Moses, Eleazar the priest, the leaders, and the +“Our father died +whole congregation, and said, +in the wilderness, but he was not among the fol- +lowers of Korah who gathered together against +4 +the LORD. Instead, he died because of his own +Why should the name +sin, and he had no sons. +of our father disappear from his clan because +he had no sons? Give us property among our +5 +father’s brothers.” +6 + +3 + +7 + +So Moses brought their case before the LORD, +“The daughters +and the LORD answered him, +of Zelophehad speak correctly. You certainly +must give them property as an inheritance +among their father’s brothers and transfer their +8 +father’s inheritance to them. + +9 + +11 + +Furthermore, you shall say to the Israelites, ‘If a +man dies and leaves no son, you are to transfer +his inheritance to his daughter. +If he has no +10 +daughter, give his inheritance to his brothers. +If he has no brothers, give his inheritance to +his father’s brothers. +And if his father has no +brothers, give his inheritance to the next of kin +from his clan, that he may take possession of it. +This is to be a statutory ordinance for the Israel- +Moses Requests a Successor (De. 3:23–29) +ites, as the LORD has commanded Moses.’ +” +12 + + a + +Then the LORD said to Moses, “Go up this + and see the land + +Go up Mount Nebo beyond the Jordan b 14 Meribah +d 4 + +a 12 +mountain of the Abarim range +Lights + +between the two evenings + +LXX + +13 + +that I have given the Israelites. +After you have +14 +seen it, you too will be gathered to your people, +as your brother Aaron was; +for when the con- +gregation contended in the Wilderness of Zin, +both of you rebelled against My command to +show My holiness in their sight regarding the wa- +ters.” Those were the waters of Meribah + in +15 +Kadesh, in the Wilderness of Zin. + +16 + + b + +17 + +So Moses appealed to the LORD, + +“May the +LORD, the God of the spirits of all flesh, appoint a +who will go out and +man over the congregation +come in before them, and who will lead them out +and bring them in, so that the congregation of the +Joshua to Succeed Moses (De. 31:1–8) +LORD will not be like sheep without a shepherd.” +18 + +19 + +And the LORD replied to Moses, “Take Joshua +son of Nun, a man with the Spirit in him, and lay +your hands on him. +Have him stand before +20 +Eleazar the priest and the whole congregation, +and commission him in their sight. +Confer on +21 +him some of your authority, so that the whole +congregation of Israel will obey him. +He shall +stand before Eleazar the priest, who will seek +counsel for him before the LORD by the judgment +of the Urim. + At his command, he and all the Isra- +elites with him—the entire congregation—will +22 +go out and come in.” + +c + +Moses did as the LORD had commanded him. +He took Joshua, had him stand before Eleazar the +priest and the whole congregation, +and laid his +hands on him and commissioned him, as the +The Daily Offerings (Exodus 29:38–44) +LORD had instructed through Moses. + +23 + +2 + +28 + +“Com- +Then the LORD said to Moses, +mand the Israelites and say to them: See +that you present to Me at its appointed time the +food for My food offerings, as a pleasing aroma to +3 +Me. + +4 + +And tell them that this is the food offering you +are to present to the LORD as a regular burnt of- +fering each day: two unblemished year-old male +Offer one lamb in the morning and the +lambs. +other at twilight, +along with a tenth of an +ephah of fine flour + as a grain offering, mixed +6 +with a quarter hin of oil from pressed olives. + +5 + e + +d + +f + +7 + +This is a regular burnt offering established at +Mount Sinai as a pleasing aroma, a food offering +c 21 +quarreling +The drink offering accompanying +to the LORD. +e 5 A tenth of an ephah +; see Exodus 17:7. + means + +a quarter hin of pure + +Literally + +the + +f 5 + +olive oil +liters (probably about 2.6 pounds or 1.2 kilograms of flour); also in verses 13, 21, and 29. + +a quarter hin of pressed oil + +; also in verse 8 + +Hebrew + +Or + + is approximately 2 dry quarts or 2.2 + +; Hebrew + +; that is, approximately 0.97 quarts or 0.92 liters; similarly in verses 7 and 14 + + Numbers 29:3 | 155 + +20 + +two young bulls, one ram, and seven male lambs +The grain offering +a year old, all unblemished. +shall consist of fine flour mixed with oil; offer +three-tenths of an ephah with each bull, two- +and a tenth of +tenths of an ephah with the ram, +Include +an ephah with each of the seven lambs. +one male goat as a sin offering to make atone- +23 +ment for you. + +21 + +22 + +24 + +You are to present these in addition to the reg- +ular morning burnt offering. +Offer the same +food each day for seven days as a food offering, a +pleasing aroma to the LORD. It is to be offered +with its drink offering and the regular burnt of- +25 +fering. + +On the seventh day you shall hold a sacred as- + +The Feast of Weeks (Deuteronomy 16:9–12) +sembly; you must not do any regular work. +26 + +e + +On the day of firstfruits, when you present an +offering of new grain to the LORD during the +Feast of Weeks, + you are to hold a sacred assem- +27 +bly; you must not do any regular work. + +28 + +Present a burnt offering of two young bulls, +one ram, and seven male lambs a year old as a +pleasing aroma to the LORD, +together with +their grain offerings of fine flour mixed with oil— +three-tenths of an ephah with each bull, two- +tenths of an ephah with the ram, +and a tenth of +30 +an ephah with each of the seven lambs. + +29 + +31 + +Include one male goat to make atonement for +you. +Offer them with their drink offerings +in addition to the regular burnt offering and +its grain offering. The animals must be unblem- +The Feast of Trumpets (Leviticus 23:23–25) +ished. + +29 + +“On the first day of the seventh month, +you are to hold a sacred assembly, and +you must not do any regular work. This will be a +2 +day for you to sound the trumpets. + +8 + +each lamb shall be a quarter hin. Pour out the of- +fering of fermented drink to the LORD in the +And offer the second lamb at +sanctuary area. +twilight, with the same grain offering and drink +offering as in the morning. It is a food offering, a +The Sabbath Offerings +pleasing aroma to the LORD. +9 + +On the Sabbath day, present two unblemished + a +year-old male lambs, accompanied by a grain of- +fering of two-tenths of an ephah of fine flour +10 +mixed with oil, as well as a drink offering. + +This is the burnt offering for every Sabbath, in +addition to the regular burnt offering and its +The Monthly Offerings +drink offering. +11 + +12 + +At the beginning of every month, you are to +present to the LORD a burnt offering of two +young bulls, one ram, and seven male lambs a + b +along with three- +year old, all unblemished, + mixed with oil as +tenths of an ephah of fine flour +a grain offering with each bull, two-tenths of an +ephah of fine flour mixed with oil as a grain offer- +and a tenth of an ephah of +ing with the ram, +fine flour mixed with oil as a grain offering with +each lamb. This is a burnt offering, a pleasing +14 +aroma, a food offering to the LORD. + +13 + + d + + c + + with each bull, a third of a hin + +Their drink offerings shall be half a hin of + with the +wine +ram, and a quarter hin with each lamb. This is the +monthly burnt offering to be made at each new +15 +moon throughout the year. + +In addition to the regular burnt offering with +its drink offering, one male goat is to be pre- +Passover and the Feast of Unleavened Bread +sented to the LORD as a sin offering. +(Ex. 12:14–28 ; Lev. 23:4–8 ; De. 16:1–8) + +16 + +17 + +The fourteenth day of the first month is the +On the fifteenth day of this +LORD’s Passover. +month, there shall be a feast; for seven days un- +18 +leavened bread is to be eaten. + +On the first day there is to be a sacred assem- +Present +bly; you must not do any regular work. +a 9 Two-tenths of an ephah +to the LORD a food offering, a burnt offering of +b 12 Three-tenths of an ephah + +3 + +19 + +As a pleasing aroma to the LORD, you are to pre- +sent a burnt offering of one young bull, one ram, +and seven male lambs a year old, all unblem- + f +ished, +together with their grain offerings of fine +flour mixed with oil—three-tenths of an ephah +with the bull, two-tenths of an ephah + with the + is approximately 4 dry quarts or 4.4 liters (probably about 5.1 pounds or 2.3 kilograms of flour); +c 14 Half a hin + is approximately 6 dry quarts or 6.6 liters (probably about 7.6 + + g + +e 26 + +also in verses 12, 20, and 28. +d 14 A third of a hin +pounds or 3.5 kilograms of flour); also in verses 20 and 28. +wine. +f 3 Three-tenths of an ephah +pilgrimage to Jerusalem; it is also known as + +g 3 Two-tenths of an ephah + +the Feast of Harvest + + is approximately 1.3 quarts or 1.2 liters of wine. + +That is, Shavuot, the late spring feast of + + (see Exodus 23:16) or + is approximately 6 dry quarts or 6.6 liters (probably about 7.6 pounds or 3.5 kg of flour); also + is approximately 4 dry quarts or 4.4 liters (probably about 5.1 pounds or + + (see Acts 2:1). + + is approximately 1.9 quarts or 1.8 liters of +the Feast of Pentecost + +in verses 9 and 14. +2.3 kilograms of flour); also in verses 9 and 14. + + 156 | Numbers 29:4 + +4 + + a + +20 + +and a tenth of an ephah + +ram, +5 +seven male lambs. + +6 + + with each of the + +Include one male goat as a sin offering to make +These are in addition to the +atonement for you. +monthly and daily burnt offerings with their pre- +scribed grain offerings and drink offerings. They +The Day of Atonement (Lev. 16:1-34 ; 23:26-32) +are a pleasing aroma, a food offering to the LORD. +7 + + b + +On the tenth day of this seventh month, you are +to hold a sacred assembly, and you shall humble +8 +yourselves; + + you must not do any work. + +9 + +Present as a pleasing aroma to the LORD a burnt +offering of one young bull, one ram, and seven +male lambs a year old, all unblemished, +to- +gether with their grain offerings of fine flour +mixed with oil—three-tenths of an ephah with +10 +the bull, two-tenths of an ephah with the ram, +and a tenth of an ephah with each of the seven + +11 +lambs. + +Include one male goat for a sin offering, in ad- +dition to the sin offering of atonement and the +regular burnt offering with its grain offering and +The Feast of Tabernacles (De. 16:13–17) +drink offerings. +12 + +On the fifteenth day of the seventh month, you +are to hold a sacred assembly; you must not do +any regular work, and you shall observe a feast +13 +to the LORD for seven days. + +14 + +As a pleasing aroma to the LORD, you are +to present a food offering, a burnt offering of thir- +teen young bulls, two rams, and fourteen male +along with +lambs a year old, all unblemished, +the grain offering of three-tenths of an ephah of +fine flour mixed with oil with each of the thirteen +bulls, two-tenths of an ephah with each of the +and a tenth of an ephah with each of +two rams, +Include one male goat as a +the fourteen lambs. +sin offering, in addition to the regular burnt of- +17 +fering with its grain offering and drink offering. + +16 + +15 + +18 + +On the second day you are to present twelve +young bulls, two rams, and fourteen male lambs +along with the +a year old, all unblemished, +grain and drink offerings for the bulls, rams, and +lambs, according to the number prescribed. +In- +clude one male goat as a sin offering, in addition +to the regular burnt offering with its grain offer- +ing and drink offering. +a 4 A tenth of an ephah +b 7 + +afflict your souls + +19 + +21 + +On the third day you are to present eleven +bulls, two rams, and fourteen male lambs a year +along with the grain and +old, all unblemished, +22 +drink offerings for the bulls, rams, and lambs, ac- +Include one +cording to the number prescribed. +male goat as a sin offering, in addition to the reg- +ular burnt offering with its grain offering and +23 +drink offering. + +24 + +On the fourth day you are to present ten bulls, +two rams, and fourteen male lambs a year old, all +along with the grain and drink +unblemished, +offerings for the bulls, rams, and lambs, accord- +ing to the number prescribed. +Include one +male goat as a sin offering, in addition to the reg- +ular burnt offering with its grain offering and +26 +drink offering. + +25 + +27 + +On the fifth day you are to present nine bulls, +two rams, and fourteen male lambs a year old, all +along with the grain and drink +unblemished, +offerings for the bulls, rams, and lambs, accord- +Include one +ing to the number prescribed. +male goat as a sin offering, in addition to the reg- +ular burnt offering with its grain offering and +29 +drink offering. + +28 + +30 + +On the sixth day you are to present eight bulls, +two rams, and fourteen male lambs a year old, all +unblemished, +along with the grain and drink +offerings for the bulls, rams, and lambs, accord- +Include one +ing to the number prescribed. +male goat as a sin offering, in addition to the reg- +ular burnt offering with its grain offering and +32 +drink offering. + +31 + +33 + +On the seventh day you are to present seven +bulls, two rams, and fourteen male lambs a year +along with the grain and +old, all unblemished, +34 +drink offerings for the bulls, rams, and lambs, ac- +Include one +cording to the number prescribed. +male goat as a sin offering, in addition to the reg- +ular burnt offering with its grain offering and +35 +drink offering. + +36 + +37 + +On the eighth day you are to hold a solemn as- +As +sembly; you must not do any regular work. +a pleasing aroma to the LORD, you are to present +a food offering, a burnt offering of one bull, one +ram, and seven male lambs a year old, all un- +along with the grain and drink of- +blemished, +ferings for the bulls, rams, and lambs, according +Include one male +to the number prescribed. +goat as a sin offering, in addition to the regular + +38 + +also in verses 10 and 15. + +Or + +or + + is approximately 2 dry quarts or 2.2 liters (probably about 2.6 pounds or 1.2 kilograms of flour); + +deny yourselves + + burnt offering with its grain offering and drink +39 +offering. + +You are to present these offerings to the LORD +at your appointed times, in addition to your +vow and freewill offerings, whether burnt offer- +ings, grain offerings, drink offerings, or peace +40 +offerings.” + +So Moses spoke all this to the Israelites just as + +Laws about Vows (Matthew 5:33–37) +the LORD had commanded him. + +30 + +2 + +Then Moses said to the heads of the +tribes of Israel, “This is what the LORD +If a man makes a vow to the +has commanded: +LORD or swears an oath to obligate himself by a +pledge, he must not break his word; he must do +3 +everything he has promised. + +a + +4 + +5 + +And if a woman in her father’s house during her +youth makes a vow to the LORD or obligates her- +self by a pledge, +and her father hears about her +vow or pledge but says nothing to her, then all +the vows or pledges by which she has bound her- +self shall stand. +But if her father prohibits her +on the day he hears about it, then none of the +vows or pledges by which she has bound herself +shall stand. The LORD will absolve her because +6 +her father has prohibited her. + +7 + +If a woman marries while under a vow or rash +promise by which she has bound herself, +and +her husband hears of it but says nothing to her +on that day, then the vows or pledges by which +she has bound herself shall stand. +But if her hus- +band prohibits her when he hears of it, he nulli- +fies the vow that binds her or the rash promise +9 +she has made, and the LORD will absolve her. + +8 + +Every vow a widow or divorced woman pledges + +10 +to fulfill is binding on her. + +11 + +12 + +If a woman in her husband’s house has made a +vow or put herself under an obligation with an +oath, +and her husband hears of it but says +nothing to her and does not prohibit her, then all +the vows or pledges by which she has bound her- +But if her husband nullifies +self shall stand. +them on the day he hears of them, then nothing +that came from her lips, whether her vows or +pledges, shall stand. Her husband has nullified +13 +them, and the LORD will absolve her. + +b + +14 + +Her husband may confirm or nullify any vow +or any sworn pledge to deny herself. +But if her +to fast +a 2 +husband says nothing to her from day to day, + +b 13 + +Cited in Matthew 5:33 + +Or + +31 + +Numbers 31:16 | 157 + +then he confirms all the vows and pledges that +bind her. He has confirmed them, because he said +15 +nothing to her on the day he heard about them. +But if he nullifies them after he hears of them, + +16 +then he will bear her iniquity.” + +These are the statutes that the LORD com- +manded Moses concerning the relationship be- +tween a man and his wife, and between a father +Vengeance on Midian +and a young daughter still in his home. + +2 + +“Take +And the LORD said to Moses, +vengeance on the Midianites for the Isra- +elites. After that, you will be gathered to your +3 +people.” + +4 + +So Moses told the people, “Arm some of your +men for war, that they may go against the Midi- +anites and execute the LORD’s vengeance on +Send into battle a thousand men from +them. +5 +each tribe of Israel.” + +So a thousand men were recruited from each +6 +tribe of Israel—twelve thousand armed for war. +And Moses sent the thousand from each tribe +into battle, along with Phinehas son of Eleazar +the priest, who took with him the vessels of the +7 +sanctuary and the trumpets for signaling. + +8 + +Then they waged war against Midian, as the +LORD had commanded Moses, and they killed +every male. +Among the slain were Evi, Rekem, +Zur, Hur, and Reba—the five kings of Midian. +They also killed Balaam son of Beor with the +9 +sword. + +The Israelites captured the Midianite women +10 +and their children, and they plundered all their +herds, flocks, and goods. +Then they burned all +the cities where the Midianites had lived, as well +as all their encampments, +and carried away all +12 +the plunder and spoils, both people and animals. + +11 + +They brought the captives, spoils, and plunder +to Moses, to Eleazar the priest, and to the congre- +gation of Israel at the camp on the plains of Moab, +And Moses, +by the Jordan across from Jericho. +Eleazar the priest, and all the leaders of the con- +14 + camp. +gregation went to meet them outside the + +13 + +15 + +But Moses was angry with the officers of the +army—the commanders of thousands and com- +manders of hundreds—who were returning +“Have you spared all the +from the battle. +“Look, these women +women?” he asked them. +caused the sons of Israel, through the counsel of + +16 + + 158 | Numbers 31:17 + +17 + +Balaam, to turn unfaithfully against the LORD at +Peor, so that the plague struck the congregation +So now, kill all the boys, as well as +of the LORD. +18 +every woman who has had relations with a man, +but spare for yourselves every girl who has + +19 +never had relations with a man. + +20 + +All of you who have killed a person or touched +the dead are to remain outside the camp for +seven days. On the third day and the seventh day +you are to purify both yourselves and your cap- +And purify every garment and leather +tives. +good, everything made of goat’s hair, and every +21 +article of wood.” + +23 + +Then Eleazar the priest said to the soldiers +who had gone into battle, “This is the statute of +22 +the law which the LORD has commanded Moses: +Only the gold, silver, bronze, iron, tin, and +lead— +everything that can withstand the +fire—must be put through the fire, and it will be +clean. But it must still be purified with the water +of purification. And everything that cannot with- +On +stand the fire must pass through the water. +the seventh day you are to wash your clothes, +and you will be clean. After that you may enter +Division of the Spoils +the camp.” +25 + +24 + +26 + +The LORD said to Moses, + +“You and Eleazar +the priest and the family heads of the congrega- +tion are to take a count of what was captured, +Then divide the cap- +both of man and beast. +tives between the troops who went out to battle +28 +and the rest of the congregation. + +27 + +Set aside a tribute for the LORD from what be- +longs to the soldiers who went into battle: one +29 +out of every five hundred, whether persons, cat- +Take it from their half +tle, donkeys, or sheep. +and give it to Eleazar the priest as an offering to +30 +the LORD. + +From the Israelites’ half, take one out of every +fifty, whether persons, cattle, donkeys, sheep, or +other animals, and give them to the Levites who +31 +keep charge of the tabernacle of the LORD.” + +32 + +So Moses and Eleazar the priest did as the +and this plun- +LORD had commanded Moses, +der remained from the spoils the soldiers had +taken: +33 +675,000 sheep, + +a 52 16,750 shekels + +72,000 cattle, + +34 + +35 + +61,000 donkeys, + +and 32,000 women who had not slept + +36 + +with a man. + +This was the half portion for those who had + +37 + +gone to war: + +337,500 sheep, +38 +LORD of 675, + +including a tribute to the + +36,000 cattle, including a tribute to the + +39 +LORD of 72, + +30,500 donkeys, including a tribute to the + +40 +LORD of 61, + +and 16,000 people, including a tribute to + +41 + +the LORD of 32. + +Moses gave the tribute to Eleazar the priest as +an offering for the LORD, as the LORD had com- +42 +manded Moses. + +43 + +From the Israelites’ half, which Moses had set +this + +apart from the men who had gone to war, +half belonged to the congregation: + +44 +337,500 sheep, +45 + +36,000 cattle, + +46 + +30,500 donkeys, + +47 + +and 16,000 people. + +From the Israelites’ half, Moses took one out of +every fifty persons and animals and gave them to +the Levites who kept charge of the tabernacle of +The Voluntary Offering +the LORD, as the LORD had commanded him. +48 + +49 + +Then the officers who were over the units of +the army—the commanders of thousands and of +hundreds—approached Moses +and said, “Your +50 +servants have counted the soldiers under our +So we +command, and not one of us is missing. +have brought to the LORD an offering of the gold +articles each man acquired—armlets, bracelets, +rings, earrings, and necklaces—to make atone- +51 +ment for ourselves before the LORD.” + +52 + +53 + +So Moses and Eleazar the priest received from +them all the articles made out of gold. +All the +gold that the commanders of thousands and of +a +hundreds presented as an offering to the LORD +Each of the soldiers +weighed 16,750 shekels. +And Moses and +had taken plunder for himself. +Eleazar the priest received the gold from the +commanders of thousands and of hundreds and +brought it into the Tent of Meeting as a memorial +for the Israelites before the LORD. + +54 + + is approximately 420.8 pounds or 190.9 kilograms. + + The Tribes East of the Jordan +(Deuteronomy 3:12–22 ; Joshua 13:8–14) + +32 + +3 + +2 + +Now the Reubenites and Gadites, who +had very large herds and flocks, sur- +veyed the lands of Jazer and Gilead, and they saw +So the +that the region was suitable for livestock. +Gadites and Reubenites came to Moses, Eleazar +the priest, and the leaders of the congregation, +“Ataroth, Dibon, Jazer, Nimrah, Hesh- +and said, +bon, Elealeh, Sebam, +which +the LORD conquered before the congregation of +Israel, are suitable for livestock—and your serv- +5 +ants have livestock.” + + Nebo, and Beon, + +4 + +a + +“If we have found favor in your sight,” they said, +“let this land be given to your servants as a pos- +6 +session. Do not make us cross the Jordan.” + +But Moses asked the Gadites and Reubenites, +7 +“Shall your brothers go to war while you sit here? +Why are you discouraging the Israelites from +crossing into the land that the LORD has given +This is what your fathers did when I sent +them? +9 +them from Kadesh-barnea to inspect the land. + +8 + +10 + +For when your fathers went up to the Valley of +Eshcol and saw the land, they discouraged the Is- +raelites from entering the land that the LORD had +So the anger of the LORD was kin- +given them. +11 +dled that day, and He swore an oath, saying, +‘Because they did not follow Me wholeheart- +edly, not one of the men twenty years of age or +older who came out of Egypt will see the land +12 +that I swore to give Abraham, Isaac, and Jacob— +not one except Caleb son of Jephunneh the +Kenizzite and Joshua son of Nun—because they +The an- +did follow the LORD wholeheartedly.’ +ger of the LORD burned against Israel, and He +made them wander in the wilderness forty years, +until the whole generation who had done evil in +14 +His sight was gone. + +13 + +Now behold, you, a brood of sinners, have +risen up in place of your fathers to further stoke +15 +the burning anger of the LORD against Israel. +For if you turn away from following Him, He +will once again leave this people in the wilder- +ness, and you will be the cause of their destruc- +16 +tion.” + +17 + +Then the Gadites and Reubenites approached +Moses and said, “We want to build sheepfolds + b +here for our livestock and cities for our little +ones. +Sibmah +a 3 +to go ahead of the Israelites until we have + +But we will arm ourselves and be ready + +Numbers 32:33 | 159 + +18 + +brought them into their place. Meanwhile, our +little ones will remain in the fortified cities for +We +protection from the inhabitants of the land. +will not return to our homes until every Israelite +has taken possession of his inheritance. +Yet we +will not have an inheritance with them across the +Jordan and beyond, because our inheritance has +20 +come to us on the east side of the Jordan.” + +19 + +21 + +Moses replied, “If you will do this—if you will +arm yourselves before the LORD for battle, +and +if every one of your armed men crosses the Jor- +22 +dan before the LORD, until He has driven His en- +then when the land is +emies out before Him, +subdued before the LORD, you may return and be +free of obligation to the LORD and to Israel. And +this land will belong to you as a possession be- +But if you do not do this, you +fore the LORD. +will certainly sin against the LORD—and be as- +Build cit- +sured that your sin will find you out. +ies for your little ones and folds for your flocks, +25 +but do what you have promised.” + +24 + +23 + +26 + +The Gadites and Reubenites said to Moses, +“Your servants will do just as our lord com- +Our children, our wives, our livestock, +mands. +27 +and all our animals will remain here in the cities +of Gilead. +But your servants are equipped for +war, and every man will cross over to the battle +28 +before the LORD, just as our lord says.” + +29 + +So Moses gave orders about them to Eleazar +the priest, to Joshua son of Nun, and to the family +And Moses said +leaders of the tribes of Israel. +to them, “If the Gadites and Reubenites cross the +Jordan with you, with every man armed for battle +before the LORD, and the land is subdued before +you, then you are to give them the land of Gilead +But if they do not arm them- +as a possession. +selves and go across with you, then they must ac- +cept their possession among you in the land of +31 +Canaan.” + +30 + +The Gadites and Reubenites replied, “As the +32 +LORD has spoken to your servants, so we will do. +We will cross over into the land of Canaan +armed before the LORD, that we may have our in- +33 +heritance on this side of the Jordan.” + +So Moses gave to the Gadites, to the Reubenites, +and to the half-tribe of Manasseh son of Joseph +the kingdom of Sihon king of the Amorites and +the kingdom of Og king of Bashan—the land in- +cluding its cities and the territory surrounding +b 17 +them. + +we will arm ourselves for battle + +Hebrew; see verse 38, and similarly in SP and LXX + +LXX + + 160 | Numbers 32:34 + +34 +35 + +36 + +e + +11 + +And the Gadites built up Dibon, Ataroth, Aroer, +Beth-nim- +Atroth-shophan, Jazer, Jogbehah, +rah, and Beth-haran as fortified cities, and they +37 +built folds for their flocks. + +38 + +The Reubenites built up Heshbon, Elealeh, Kir- +as well as Nebo and Baal-meon +iathaim, +(whose names were changed), and Sibmah. And +39 +they renamed the cities they rebuilt. + +40 + +41 + +The descendants of Machir son of Manasseh +went to Gilead, captured it, and drove out the +So Moses gave Gil- +Amorites who were there. +ead to the clan of Machir son of Manasseh, and +they settled there. +Jair, a descendant of Manas- +42 +seh, went and captured their villages and called +And Nobah went and cap- +them Havvoth-jair. +tured Kenath and its villages and called it Nobah, +Forty-Two Journeys of the Israelites +after his own name. + +a + +33 + +2 + +These are the journeys of the Israelites +when they came out of the land of Egypt +by their divisions under the leadership of Moses +At the LORD’s command, Moses rec- +and Aaron. +orded the stages of their journey. These are the +stages listed by their starting points: + +3 + + b + +4 + +On the fifteenth day of the first month, on +the day after the Passover, the Israelites set +out from Rameses. They marched out defi- +antly +who + in full view of all the Egyptians, +were burying all their firstborn, whom the +LORD had struck down among them; for the +LORD had executed judgment against their +The Israelites set out from Rameses +gods. +6 +and camped at Succoth. + +5 + +They set out from Succoth and camped at + +7 +Etham, on the edge of the wilderness. + +They set out from Etham and turned back +to Pi-hahiroth, opposite Baal-zephon, and +8 +they camped near Migdol. + + c + +They set out from Pi-hahiroth + + and crossed +through the sea, into the wilderness, and +they journeyed three days into the Wilder- +9 +ness of Etham and camped at Marah. + +They set out from Marah and came to Elim, +where there were twelve springs and sev- +10 +enty palm trees, and they camped there. + +d + +They set out from the Red Sea and camped + +12 +in the Desert of Sin. + +They set out from the Desert of Sin and + +13 +camped at Dophkah. + +They set out from Dophkah and camped at + +14 +Alush. + +They set out from Alush and camped at Re- +phidim, where there was no water for the +15 +people to drink. + +They set out from Rephidim and camped + +16 +in the Wilderness of Sinai. + +They set out from the Wilderness of + +17 +Sinai and camped at Kibroth-hattaavah. + +They set out from Kibroth-hattaavah and + +18 +camped at Hazeroth. + +They set out from Hazeroth and camped at + +19 +Rithmah. + +They set out from Rithmah and camped at + +20 +Rimmon-perez. + +They set out from Rimmon-perez and + +21 +camped at Libnah. + +They set out from Libnah and camped at + +22 +Rissah. + +They set out from Rissah and camped at + +23 +Kehelathah. + +They set out from Kehelathah and camped + +24 +at Mount Shepher. + +They set out from Mount Shepher and + +25 +camped at Haradah. + +They set out from Haradah and camped at + +26 +Makheloth. + +They set out from Makheloth and camped + +27 +at Tahath. + +They set out from Tahath and camped at + +28 +Terah. + +They set out from Terah and camped at + +29 +Mithkah. + +They set out from Mithkah and camped at + +30 +Hashmonah. + +They set out +31 +camped at Moseroth. + +from Hashmonah and + +They set out from Moseroth and camped + +32 +at Bene-jaakan. + +They set out from Elim and camped by the + +They set out from Bene-jaakan and + +Red Sea. + +a 41 Havvoth-jair +c 8 + +the villages of Jair + +b 3 + +marched out boldly + +camped at Hor-haggidgad. + +marched out with an upraised hand + +Hahiroth d 10 + +the Sea of Reeds + +e 11 + + means + +Sin + +. + +Or + +Sinai + +; literally + +Some Heb. manuscripts, SP, and Vulgate; see verse 7; most MT manuscripts + +Or + +v. 11 + +The geographical name + + is related to + + and should not be mistaken for the English word + +sin + +; also in +; also v. 12. + + 33 + +They set out from Hor-haggidgad and + +34 +camped at Jotbathah. + +land, destroy all their carved images and cast +53 +idols, and demolish all their high places. + +Numbers 34:12 | 161 + +They set out from Jotbathah and camped + +35 +at Abronah. + +They set out from Abronah and camped at + +36 +Ezion-geber. + +They set out from Ezion-geber and camped + +37 +at Kadesh in the Wilderness of Zin. + +38 + +They set out from Kadesh and camped at +Mount Hor, on the outskirts of the land of +At the LORD’s command, Aaron the +Edom. +priest climbed Mount Hor and died there on +the first day of the fifth month, in the fortieth +year after the Israelites had come out of the +Aaron was 123 years old +land of Egypt. +40 +when he died on Mount Hor. + +39 + +41 + +Now the Canaanite king of Arad, who lived +in the Negev in the land of Canaan, heard that +And the Israel- +the Israelites were coming. +ites set out from Mount Hor and camped at +42 +Zalmonah. + +They set out from Zalmonah and camped + +43 +at Punon. + +They set out from Punon and camped at + +44 +Oboth. + +They set out from Oboth and camped at + +45 +Iye-abarim on the border of Moab. + + a + +They set out from Iyim + +46 +Dibon-gad. + + and camped at + +They set out from Dibon-gad and camped + +47 +at Almon-diblathaim. + + b + +They set out from Almon-diblathaim and + facing + +camped in the mountains of Abarim +48 +Nebo. + +They set out from the mountains of Aba- +rim and camped on the plains of Moab by the +49 +Jordan across from Jericho. + +And there on the plains of Moab they +camped by the Jordan, from Beth-jeshimoth +to Abel-shittim. + +Instructions for Occupying Canaan + +c + +50 + +51 + +You are to take possession of the land and set- +54 +tle in it, for I have given you the land to possess. +And you are to divide the land by lot according +to your clans. Give a larger inheritance to a larger +clan and a smaller inheritance to a smaller one. +Whatever falls to each one by lot will be his. You +will receive an inheritance according to the +55 +tribes of your fathers. + +But if you do not drive out the inhabitants of +the land before you, those you allow to remain +will become barbs in your eyes and thorns in +your sides; they will harass you in the land where +you settle. +And then I will do to you what I had +The Boundaries of Canaan (Genesis 15:8–21) +planned to do to them.” + +56 + +2 + +Then the LORD said to Moses, +“Com- +mand the Israelites and say to them: +When you enter the land of Canaan, it will be al- +lotted to you as an inheritance with these bound- +3 +aries: + +34 + +d + +4 + +Your southern border will extend from the +Wilderness of Zin along the border of Edom. +On the east, your southern border will run +e +from the end of the Salt Sea, +cross south of +the Ascent of Akrabbim, + continue to Zin, +and go south of Kadesh-barnea. Then it will +5 +go on to Hazar-addar and proceed to Azmon, +where it will turn from Azmon, join the + +f + +6 +Brook of Egypt, and end at the Sea. + +Your western border will be the coastline of +the Great Sea; this will be your boundary on +7 +the west. + +8 + +9 + +Your northern border will run from the +and from +Great Sea directly to Mount Hor, +Mount Hor to Lebo-hamath, then extend to +continue to Ziphron, and end at +Zedad, +Hazar-enan. This will be your boundary on +10 +the north. + +11 + +And your eastern border will run straight +then go +from Hazar-enan to Shepham, +down from Shepham to Riblah on the east +side of Ain and continue along the slopes east +of the Sea of Chinnereth. +Then the border +will go down along the Jordan and end at the +the mountains beyond the river +Salt Sea. + +12 + +g + +d 3 + +On the plains of Moab by the Jordan across +from Jericho, the LORD said to Moses, +“Speak +52 +to the Israelites and tell them: When you cross +the Jordan into the land of Canaan, +you must +a 45 Iyim +drive out before you all the inhabitants of the +c 49 +the Ascent of Scorpions + +; see verse 44. +Scorpion Pass + +the Meadow of the Acacias + is another name for +g 11 + +Iye-abarim + +e 4 + +b 47 + +Or +verse 12 +also in verses 6 and 7 + +Or + +; that is, an area in the lowlands of Moab + +That is, the Dead Sea; also in + + or +That is, the Sea of Galilee + +That is, the Mediterranean Sea, also called the Great Sea; + +Or + +f 5 + +; also in verse 48 + + 162 | Numbers 34:13 + +This will be your land, defined by its borders on +13 +all sides.” + +14 + +So Moses commanded the Israelites, “Appor- +tion this land by lot as an inheritance. The LORD +has commanded that it be given to the nine and a +For the tribes of the Reubenites and +half tribes. +Gadites, along with the half-tribe of Manasseh, +These +have already received their inheritance. +two and a half tribes have received their inher- +itance across the Jordan from Jericho, toward the +Leaders to Divide the Land +sunrise.” +16 + +17 + +15 + +18 + +Then the LORD said to Moses, + +“These are the +names of the men who are to assign the land as +an inheritance for you: Eleazar the priest and +19 +Appoint one leader from +Joshua son of Nun. +These are +each tribe to distribute the land. +their names: + +Caleb son of Jephunneh from the tribe of Ju- +20 +dah; + +Shemuel son of Ammihud from the tribe + +21 +of Simeon; + +Elidad son of Chislon from the tribe of + +22 +Benjamin; + +Bukki son of Jogli, a leader from the tribe + +23 +of Dan; + +Hanniel son of Ephod, a leader from the + +24 +tribe of Manasseh son of Joseph; + +Kemuel son of Shiphtan, a leader from the + +25 +tribe of Ephraim; + +Eli-zaphan son of Parnach, a leader from + +26 +the tribe of Zebulun; + +Paltiel son of Azzan, a leader from the + +27 +tribe of Issachar; + +Ahihud son of Shelomi, a leader from the + +28 +tribe of Asher; + +and Pedahel son of Ammihud, a leader + +29 + +from the tribe of Naphtali.” + +These are the ones whom the LORD com- +manded to apportion the inheritance to the Isra- +Forty-Eight Cities for the Levites +elites in the land of Canaan. +(Joshua 21:1–45 ; 1 Chronicles 6:54–81) + +35 + +Again the LORD spoke to Moses on the +2 +plains of Moab by the Jordan across from +“Command the Israelites to give, from + +a 4 1,000 cubits +Jericho: + +3 + +the inheritance they will possess, cities for the +Levites to live in and pasturelands around the +The cities will be for them to live in, and +cities. +the pasturelands will be for their herds, their +4 +flocks, and all their other livestock. + + a +The pasturelands around the cities you are to + +5 +give the Levites will extend a thousand cubits + b +You are also to +from the wall on every side. +measure two thousand cubits + outside the city +on the east, two thousand on the south, two thou- +sand on the west, and two thousand on the north, +with the city in the center. These areas will serve +6 +as larger pasturelands for the cities. + +7 + +Six of the cities you give the Levites are to +be appointed as cities of refuge, to which a +manslayer may flee. In addition to these, give the +The total number +Levites forty-two other cities. +8 +of cities you give the Levites will be forty-eight, +with their corresponding pasturelands. +The cit- +ies that you apportion from the territory of the +Israelites should be given to the Levites in pro- +portion to the inheritance of each tribe: more +Six Cities of Refuge +from a larger tribe and less from a smaller one.” +(Deuteronomy 4:41–43 ; 19:1–14 ; Joshua 20:1–9) + +9 + +10 + +11 + +Then the LORD said to Moses, + +“Speak to the +Israelites and tell them: When you cross the Jor- +designate cities to +dan into the land of Canaan, +serve as your cities of refuge, so that a person +who kills someone unintentionally may flee +You are to have these cities as a refuge +there. +from the avenger, so that the manslayer will not +13 +die until he stands trial before the assembly. + +12 + +14 + +The cities you select will be your six cities of +Select three cities across the Jordan +refuge. +15 +and three in the land of Canaan as cities of refuge. +These six cities will serve as a refuge for the Is- +raelites and for the foreigner or stranger among +them, so that anyone who kills a person uninten- +16 +tionally may flee there. + +17 + +If, however, anyone strikes a person with an +iron object and kills him, he is a murderer; the +Or if an- +murderer must surely be put to death. +yone has in his hand a stone of deadly size, and +he strikes and kills another, he is a murderer; the +If any- +murderer must surely be put to death. +one has in his hand a deadly object of wood, and +he strikes and kills another, he is a murderer; the +b 5 2,000 cubits +murderer must surely be put to death. + +18 + + is approximately 1,500 feet or 457.2 meters. + + is approximately 3,000 feet or 914.4 meters. + + 19 + +The avenger of blood is to put the murderer to + +20 +death; when he finds him, he is to kill him. + +21 + +Likewise, if anyone maliciously pushes an- +other or intentionally throws an object at him +and kills him, +or if in hostility he strikes him +with his hand and he dies, the one who struck +him must surely be put to death; he is a mur- +derer. When the avenger of blood finds the +22 +murderer, he is to kill him. + +24 + +23 + +But if anyone pushes a person suddenly, with- +out hostility, or throws an object at him uninten- +tionally, +or without looking drops a heavy +stone that kills him, but he was not an enemy and +did not intend to harm him, +then the congrega- +tion must judge between the slayer and the +25 +avenger of blood according to these ordinances. +The assembly is to protect the manslayer from +the hand of the avenger of blood. Then the as- +sembly will return him to the city of refuge to +which he fled, and he must live there until the +death of the high priest, who was anointed with +26 +the holy oil. + +27 + +28 + +But if the manslayer ever goes outside the lim- +its of the city of refuge to which he fled +and the +avenger of blood finds him outside of his city of +refuge and kills him, then the avenger will not be +guilty of bloodshed, +because the manslayer +must remain in his city of refuge until the death +of the high priest. Only after the death of the high +priest may he return to the land he owns. +This +will be a statutory ordinance for you for the gen- +30 +erations to come, wherever you live. + +29 + +If anyone kills a person, the murderer is to be +put to death on the testimony of the witnesses. +But no one is to be put to death based on the tes- +31 +timony of a lone witness. + +32 + +You are not to accept a ransom for the life of a +murderer who deserves to die; he must surely be +put to death. +Nor should you accept a ransom +for the person who flees to a city of refuge and +allow him to return and live on his own land be- +33 +fore the death of the high priest. + +Do not pollute the land where you live, for +bloodshed pollutes the land, and no atonement +can be made for the land on which the blood is +34 +shed, except by the blood of the one who shed it. +Do not defile the land where you live and +where I dwell. For I, the LORD, dwell among the +Israelites.” + +Numbers 36:13 | 163 + +Zelophehad’s Daughters Marry +(Numbers 27:1–11) + +36 + +3 + +2 + +Now the family heads of the clan of Gil- +ead son of Machir son of Manasseh, one +of the clans of Joseph, approached Moses and +the leaders who were the heads of the Israelite +families and addressed them, +saying, “When +the LORD commanded my lord to give the land as +an inheritance to the Israelites by lot, He also +commanded him to give the inheritance of our +But if they +brother Zelophehad to his daughters. +marry any of the men from the other tribes of +Israel, their inheritance will be withdrawn +from the portion of our fathers and added to the +tribe into which they marry. So our allotted +And when +inheritance would be taken away. +the Jubilee for the Israelites comes, their inher- +itance will be added to the tribe into which +they marry and taken away from the tribe of our +5 +fathers.” + +4 + +7 + +6 + +So at the word of the LORD, Moses commanded +the Israelites: “The tribe of the sons of Joseph +This is what the LORD has +speaks correctly. +commanded concerning the daughters of Zelo- +phehad: They may marry anyone they please, +provided they marry within a clan of the tribe of +No inheritance in Israel may be +their father. +transferred from tribe to tribe, because each of +the Israelites is to retain the inheritance of the +Every daughter who pos- +tribe of his fathers. +sesses an inheritance from any Israelite tribe +must marry within a clan of the tribe of her fa- +9 +ther, so that every Israelite will possess the in- +No inheritance may be +heritance of his fathers. +transferred from one tribe to another, for each +10 +tribe of Israel must retain its inheritance.” + +8 + +11 + +12 + +So the daughters of Zelophehad did as +Mahlah, Tir- +the LORD had commanded Moses. +zah, Hoglah, Milcah, and Noah, the daughters of +Zelophehad, were married to cousins on their fa- +They married within the clans of +ther’s side. +the descendants of Manasseh son of Joseph, and +their inheritance remained within the tribe of +13 +their father’s clan. + +These are the commandments and ordinances +that the LORD gave the Israelites through Moses +on the plains of Moab by the Jordan across from +Jericho. + + Deuteronomy + +The Command to Leave Horeb (Ex. 33:1–6) + +14 + +1 + +These are the words that Moses spoke to all +Israel in the wilderness east of the Jordan— +in the Arabah opposite Suph—between Paran +2 +and Tophel, Laban, Hazeroth, and Dizahab. + + a + +3 + +It is an eleven-day journey from Horeb + + to +In the for- +Kadesh-barnea by way of Mount Seir. +tieth year, on the first day of the eleventh month, +Moses proclaimed to the Israelites all that the +4 +LORD had commanded him concerning them. +This was after he had defeated Sihon king of the +Amorites, who lived in Heshbon, and then at +Edrei had defeated Og king of Bashan, who lived +5 +in Ashtaroth. + + b + +On the east side of the Jordan in the land of + +6 +Moab, Moses began to explain this law, saying: + +7 + +The LORD our God said to us at Horeb: “You +Re- +have stayed at this mountain long enough. +sume your journey and go to the hill country of +c +the Amorites; go to all the neighboring peoples in + in +the Arabah, in the hill country, in the foothills, +the Negev, and along the seacoast to the land of +the Canaanites and to Lebanon, as far as the great +8 +River Euphrates. + +See, I have placed the land before you. Enter and +possess the land that the LORD swore He would +give to your fathers Abraham, Isaac, and Jacob, +Moses Appoints Leaders (Exodus 18:13–27) +and to their descendants after them.” +9 + +10 + +11 + +At that time I said to you, “I cannot carry the +burden for you alone. +The LORD your God has +multiplied you, so that today you are as numer- +May the LORD, the +ous as the stars in the sky. +God of your fathers, increase you a thousand +12 +times over and bless you as He has promised. +13 +But how can I bear your troubles, burdens, and +Choose for yourselves +disputes all by myself? +wise, understanding, and respected men from +each of your tribes, and I will appoint them as +a 2 +your leaders.” + +And you answered me and said, “What you + +15 +propose to do is good.” + +So I took the leaders of your tribes, wise and +respected men, and appointed them as leaders +over you—as commanders of thousands, of hun- +dreds, of fifties, and of tens, and as officers for +16 +your tribes. + +17 + +At that time I charged your judges: “Hear the +disputes between your brothers, and judge fairly +between a man and his brother or a foreign resi- +dent. +Show no partiality in judging; hear both +small and great alike. Do not be intimidated by +anyone, for judgment belongs to God. And bring +to me any case too difficult for you, and I will hear +18 +it.” + +And at that time I commanded you all the + +Twelve Spies Sent Out (Numbers 13:1–33) +things you were to do. +19 + +20 + +And just as the LORD our God had commanded +us, we set out from Horeb and went toward the +hill country of the Amorites, through all the vast +and terrifying wilderness you have seen. When +we reached Kadesh-barnea, +I said: “You have +21 +reached the hill country of the Amorites, which +the LORD our God is giving us. +See, the LORD +your God has placed the land before you. Go up +and take possession of it as the LORD, the God +of your fathers, has told you. Do not be afraid or +22 +discouraged.” + +Then all of you approached me and said, “Let +us send men ahead of us to search out the land +and bring us word of what route to follow and +23 +which cities to enter.” + +25 + +24 + +The plan seemed good to me, so I selected +twelve men from among you, one from each +tribe. +They left and went up into the hill coun- +try, and came to the Valley of Eshcol and spied +out the land. +They took some of the fruit of the +land in their hands, carried it down to us, and +brought us word: “It is a good land that the LORD +our God is giving us.” + +b 5 + +That is, Mount Sinai, or possibly a mountain in the range containing Mount Sinai; also in verses 6 and 19 + +c 7 + +Shephelah + +Note that + +Deuteronomy 1:6 through Deuteronomy 4:40 may be presented as a continuous section of unbroken speech by Moses. In +lowlands +place of multiple levels of nested quotes, this section has been set apart with a double space. + +Hebrew + + or + +; that is, the western foothills of Judea + + Israel’s Rebellion (Numbers 14:1–12) + +42 + + Deuteronomy 2:12 | 165 + +26 + +But you were unwilling to go up; you rebelled +27 +against the command of the LORD your God. +You grumbled in your tents and said, “Because +the LORD hates us, He has brought us out of the +land of Egypt to deliver us into the hand of the +Where can we go? +Amorites to be annihilated. +Our brothers have made our hearts melt, saying: +‘The people are larger and taller than we are; the +cities are large, with walls up to the heavens. We +29 +” +even saw the descendants of the Anakim there.’ + +28 + +30 + +31 + +So I said to you: “Do not be terrified or afraid +The LORD your God, who goes before +of them! +you, will fight for you, just as you saw Him do for +and in the wilderness, where the +you in Egypt +LORD your God carried you, as a man carries his +son, all the way by which you traveled until you +32 +reached this place.” +33 + +But in spite of all this, you did not trust the +LORD your God, +who went before you on the +journey, in the fire by night and in the cloud by +day, to seek out a place for you to camp and to +Israel’s Penalty (Numbers 14:20–35) +show you the road to travel. +34 + +35 + +36 + +When the LORD heard your words, He grew +“Not one of +angry and swore an oath, saying, +the men of this evil generation shall see the good +except Caleb +land I swore to give your fathers, +son of Jephunneh. He will see it, and I will give +him and his descendants the land on which he +has set foot, because he followed the LORD +37 +wholeheartedly.” + +38 + +The LORD was also angry with me on your ac- +count, and He said, “Not even you shall enter the +Joshua son of Nun, who stands before +land. +39 +you, will enter it. Encourage him, for he will ena- +And the little ones +ble Israel to inherit the land. +you said would become captives—your children +who on that day did not know good from evil— +will enter the land that I will give them, and they +But you are to turn back and +will possess it. +a +head for the wilderness along the route to the +The Defeat at Hormah (Numbers 14:40–45) +Red Sea. +41 + +40 + +” + +But the LORD said to me, “Tell them not to go +up and fight, for I am not with you to keep you +43 +from defeat by your enemies.” + +So I spoke to you, but you would not listen. You +rebelled against the command of the LORD and +44 +presumptuously went up into the hill country. + +45 + +Then the Amorites who lived in the hills came +out against you and chased you like a swarm of +bees. They routed you from Seir all the way to +And you returned and wept before +Hormah. +the LORD, but He would not listen to your voice +46 +or give ear to you. + +For this reason you stayed in Kadesh for a long + +Wanderings in the Wilderness +time—a very long time. + +2 + +b + +Then we turned back and headed for the wil- + as the LORD +derness by way of the Red Sea, +had instructed me, and for many days we wan- +2 +dered around Mount Seir. + +3 + +4 + +5 + +At this time the LORD said to me, + +“You have +been wandering around this hill country long +enough; turn to the north +and command the +people: ‘You will pass through the territory of +your brothers, the descendants of Esau, who live +in Seir. They will be afraid of you, so you must be +very careful. +Do not provoke them, for I will not +give you any of their land, not even a footprint, +6 +because I have given Mount Seir to Esau as his +possession. +You are to pay them in silver for the +7 +food you eat and the water you drink.’ + +” + +Indeed, the LORD your God has blessed you in +all the work of your hands. He has watched over +your journey through this vast wilderness. The +LORD your God has been with you these forty +8 +years, and you have lacked nothing. + +9 + +So we passed by our brothers, the descendants +of Esau, who live in Seir. We turned away from +the Arabah road, which comes up from Elath and +Ezion-geber, and traveled along the road of the +Then the LORD said to me, +Wilderness of Moab. +“Do not harass the Moabites or provoke them to +war, for I will not give you any of their land, be- +cause I have given Ar to the descendants of Lot +10 +as their possession.” + +11 + +“We have sinned against the LORD,” you re- +plied. “We will go up and fight, as the LORD our +God has commanded us.” Then each of you put on +his weapons of war, thinking it easy to go up into +a 40 +the hill country. + +the Sea of Reeds + +the Sea of Reeds + +b 1 + +(The Emites used to live there, a people great +Like the Ana- +and many, as tall as the Anakites. +kites, they were also regarded as Rephaim, +though the Moabites called them Emites. +The +Horites used to live in Seir, but the descendants + +12 + +Or + +Or + + 166 | Deuteronomy 2:13 + +28 + +of Esau drove them out. They destroyed the Ho- +rites from before them and settled in their place, +just as Israel did in the land that the LORD gave +13 +them as their possession.) + +“Now arise and cross over the Brook of Zered.” + +14 +So we crossed over the Brook of Zered. + +29 + +You can sell us +turn to the right or to the left. +food to eat and water to drink in exchange for sil- +ver. Only let us pass through on foot, +just as the +descendants of Esau who live in Seir and the Mo- +abites who live in Ar did for us, until we cross +the Jordan into the land that the LORD our God is +30 +giving us.” + +The time we spent traveling from Kadesh-bar- +nea until we crossed over the Brook of Zered was +thirty-eight years, until that entire generation of +fighting men had perished from the camp, as the +Indeed, the LORD’s +LORD had sworn to them. +hand was against them, to eliminate them from +16 +the camp, until they had all perished. + +15 + +17 + +18 + +the LORD said to me, + +Now when all the fighting men among the peo- +“Today +ple had died, +19 +you are going to cross the border of Moab at Ar. +But when you get close to the Ammonites, do +not harass them or provoke them, for I will not +give you any of the land of the Ammonites. I have +given it to the descendants of Lot as their posses- +20 +sion.” + +22 + +21 + +(That too was regarded as the land of the +Rephaim, who used to live there, though the +They +Ammonites called them Zamzummites. +were a people great and many, as tall as the Ana- +kites. But the LORD destroyed them from before +the Ammonites, who drove them out and settled +just as He had done for the de- +in their place, +scendants of Esau who lived in Seir, when He +destroyed the Horites from before them. They +drove them out and have lived in their place to +And the Avvim, who lived in villages +this day. +as far as Gaza, were destroyed by the Caph- +torites, who came out of Caphtor + and settled in +The Defeat of Sihon (Numbers 21:21–30) +their place.) +24 + +23 + + a + +“Arise, set out, and cross the Arnon Valley. See, +I have delivered into your hand Sihon the Amo- +rite, king of Heshbon, and his land. Begin to take +This +possession of it and engage him in battle. +very day I will begin to put the dread and fear of +you upon all the nations under heaven. They will +hear the reports of you and tremble in anguish +26 +because of you.” + +25 + +27 + +So from the Wilderness of Kedemoth I sent +messengers with an offer of peace to Sihon king +of Heshbon, saying, +“Let us pass through your +a 23 +land; we will stay on the main road. We will not + +cherem + +b 34 + +But Sihon king of Heshbon would not let us +pass through, for the LORD your God had made +his spirit stubborn and his heart obstinate, that +He might deliver him into your hand, as is the +31 +case this day. + +Then the LORD said to me, “See, I have begun +to deliver Sihon and his land over to you. Now +32 +begin to conquer and possess his land.” + +33 + +So Sihon and his whole army came out for bat- +And the LORD our God +tle against us at Jahaz. +delivered him over to us, and we defeated him +34 +and his sons and his whole army. + + b + +35 + +At that time we captured all his cities and +devoted to destruction + the people of every city, +including women and children. We left no survi- +We carried off for ourselves only the +vors. +livestock and the plunder from the cities we +36 +captured. + +37 + +From Aroer on the rim of the Arnon Valley, +along with the city in the valley, even as far as Gil- +ead, not one city had walls too high for us. The +But you did +LORD our God gave us all of them. +not go near the land of the Ammonites, or the +land along the banks of the Jabbok River, or +the cities of the hill country, or any place that the +The Defeat of Og (Numbers 21:31–35) +LORD our God had forbidden. + +3 + +2 + +Then we turned and went up the road to Ba- +shan, and Og king of Bashan and his whole +But +army came out to meet us in battle at Edrei. +the LORD said to me, “Do not fear him, for I have +delivered him into your hand, along with all his +people and his land. Do to him as you did to Sihon +3 +king of the Amorites, who lived in Heshbon.” + +So the LORD our God also delivered Og king of +Bashan and his whole army into our hands. We +4 +struck them down until no survivor was left. + +At that time we captured all sixty of his cities. +There was not a single city we failed to take—the +entire region of Argob, the kingdom of Og in +All these cities were fortified with high +Bashan. + +5 + +That is, Crete + +Forms of the Hebrew + + refer to the giving over of things or persons to the LORD, either by + +destroying them or by giving them as an offering. + + Deuteronomy 4:5 | 167 + +6 + +walls and gates and bars, and there were many +a +We devoted them to +more unwalled villages. +destruction, + as we had done to Sihon king of +Heshbon, utterly destroying the men, women, +7 +and children of every city. + +the LORD gives rest to your brothers as He has to +you, and they too have taken possession of the +land that the LORD your God is giving them +across the Jordan. Then each of you may return +21 +to the possession I have given you.” + +But all the livestock and plunder of the cities we + +8 +carried off for ourselves. + +9 + +10 + +At that time we took from the two kings of the +Amorites the land across the Jordan, from the +Arnon Valley as far as Mount Hermon— +which +the Sidonians call Sirion but the Amorites call +Senir— +all the cities of the plateau, all of Gil- +ead, and all of Bashan as far as the cities of +11 +Salecah and Edrei in the kingdom of Og. + +(For only Og king of Bashan had remained of +the remnant of the Rephaim. His bed of iron, nine +cubits long and four cubits wide, + is still in Rab- +Land Division East of the Jordan +bah of the Ammonites.) +(Numbers 32:1–42 ; Joshua 13:8–14) + +b + +12 + +So at that time we took possession of this land. +To the Reubenites and Gadites I gave the land be- +yond Aroer along the Arnon Valley, and half the +13 +hill country of Gilead, along with its cities. + +To the half-tribe of Manasseh I gave the rest of +Gilead and all of Bashan, the kingdom of Og. (The +entire region of Argob, the whole territory of Ba- +14 +shan, used to be called the land of the Rephaim.) +Jair, a descendant of Manasseh, took the whole +region of Argob as far as the border of the Ge- +shurites and Maacathites. He renamed Bashan +after himself, Havvoth-jair, + by which it is called +15 +to this day. + +16 + +c + +To Machir I gave Gilead, + +and to the Reubeni- +tes and Gadites I gave the territory from Gilead +to the Arnon Valley (the middle of the valley was +17 +the border) and up to the Jabbok River, the bor- +der of the Ammonites. +The Jordan River in the +Arabah bordered it from Chinnereth to the Sea +of the Arabah (the Salt Sea +) with the slopes of +18 +Pisgah to the east. + + d + +At that time I commanded you: “The LORD +your God has given you this land to possess. All +your men of valor are to cross over, armed for +19 +battle, ahead of your brothers, the Israelites. +But your wives, your children, and your live- +stock—I know that you have much livestock— +cherem +a 6 +may remain in the cities I have given you, +until +b 11 +the villages of Jair + +c 14 + +20 + +Forms of the Hebrew +giving them as an offering. +wide). +Or + +That is, the Dead Sea + +22 + +And at that time I commanded Joshua: “Your +own eyes have seen all that the LORD your God +has done to these two kings. The LORD will do +the same to all the kingdoms you are about to en- +ter. +Do not be afraid of them, for the LORD your +Moses Forbidden to Cross the Jordan +God Himself will fight for you.” +(Numbers 27:12–17) + +23 + +24 + +At that time I also pleaded with the LORD: +“O +Lord GOD, You have begun to show Your great- +ness and power to Your servant. For what god in +25 +heaven or on earth can perform such works and +mighty acts as Yours? +Please let me cross over +and see the good land beyond the Jordan—that +26 +pleasant hill country as well as Lebanon!” + +27 + +But the LORD was angry with me on account of +you, and He would not listen to me. “That is +enough,” the LORD said to me. “Do not speak to +Me again about this matter. +Go to the top of +Pisgah and look to the west and north and south +and east. See the land with your own eyes, for +you will not cross this Jordan. +But commission +Joshua, encourage him, and strengthen him, for +he will cross over ahead of the people and enable +29 +them to inherit the land that you will see.” +An Exhortation to Obedience (De. 11:1–7) + +So we stayed in the valley opposite Beth-peor. + +28 + +4 + +2 + +Hear now, O Israel, the statutes and ordi- +nances I am teaching you to follow, so that +you may live and may enter and take possession +of the land that the LORD, the God of your fathers, +You must not add to or subtract +is giving you. +from what I command you, so that you may keep +the commandments of the LORD your God that I +3 +am giving you. + +Your eyes have seen what the LORD did at Baal- +peor, for the LORD your God destroyed from +among you all who followed Baal of Peor. +But +you who held fast to the LORD your God are alive +5 +to this day, every one of you. + +4 + +See, I have taught you statutes and ordinances +just as the LORD my God has commanded me, so +that you may follow them in the land that you are + +d 17 + + refer to the giving over of things or persons to the LORD, either by destroying them or by +Og’s bed was approximately 14 feet long and 6 feet wide (4.3 meters long and 1.8 meters + + 168 | Deuteronomy 4:6 + +6 + +20 + +Observe them care- +about to enter and possess. +fully, for this will show your wisdom and under- +standing in the sight of the peoples, who will hear +of all these statutes and say, “Surely this great na- +7 +tion is a wise and understanding people.” + +8 + +For what nation is great enough to have a god +as near to them as the LORD our God is to us +whenever we call on Him? +And what nation +is great enough to have righteous statutes and +ordinances like this entire law I set before you +9 +today? + +Yet the LORD has taken +nations under heaven. +you and brought you out of the iron furnace, out +of Egypt, to be the people of His inheritance, as +21 +you are today. + +The LORD, however, was angry with me on ac- +count of you, and He swore that I would not cross +the Jordan to enter the good land that the LORD +For I +your God is giving you as an inheritance. +will not be crossing the Jordan, because I must +die in this land. But you shall cross over and take +23 +possession of that good land. + +22 + +10 + +Only be on your guard and diligently watch +yourselves, so that you do not forget the things +your eyes have seen, and so that they do not slip +from your heart as long as you live. Teach them +a +The day +to your children and grandchildren. +you stood before the LORD your God at Horeb, +the LORD said to me, “Gather the people before +Me to hear My words, so that they may learn to +fear Me all the days they live on the earth, and +11 +that they may teach them to their children.” + +You came near and stood at the base of the +mountain, a mountain blazing with fire to the +12 +heavens, with black clouds and deep darkness. +And the LORD spoke to you out of the fire. You +13 +heard the sound of the words but saw no form; +He declared to you His +there was only a voice. + b +covenant, which He commanded you to follow— + that He wrote on two +the Ten Commandments +14 +tablets of stone. + +At that time the LORD commanded me to teach +you the statutes and ordinances you are to follow +in the land that you are crossing the Jordan to +A Warning against Idolatry +possess. +(Deuteronomy 12:29–32 ; Ezekiel 6:1–7) + +15 + +16 + +So since you saw no form of any kind on the +day the LORD spoke to you out of the fire at Ho- +reb, be careful +that you do not act corruptly +and make an idol for yourselves of any form or +17 +shape, whether in the likeness of a male or fe- +male, +of any beast that is on the earth or bird +that flies in the air, +or of any creature that +crawls on the ground or fish that is in the waters +19 +below. + +18 + +When you look to the heavens and see the sun +and moon and stars—all the host of heaven—do +not be enticed to bow down and worship what +a 10 +the LORD your God has apportioned to all the +b 13 + +the Ten Words + +c 24 + +Be careful that you do not forget the covenant +of the LORD your God that He made with you; do +not make an idol for yourselves in the form of an- +For the LORD +ything He has forbidden you. +25 +your God is a consuming fire, + + a jealous God. + +24 + +c + +26 + +After you have children and grandchildren and +you have been in the land a long time, if you then +act corruptly and make an idol of any form—do- +ing evil in the sight of the LORD your God and +provoking Him to anger— +I call heaven and +earth as witnesses against you this day that you +will quickly perish from the land that you are +crossing the Jordan to possess. You will not live +27 +long upon it, but will be utterly destroyed. + +Then the LORD will scatter you among the +peoples, and only a few of you will survive among +28 +the nations to which the LORD will drive you. +And there you will serve man-made gods of +wood and stone, which cannot see or hear or eat +29 +or smell. + +30 + +But if from there you will seek the LORD your +God, you will find Him if you seek Him with all +When you +your heart and with all your soul. +are in distress and all these things have hap- +pened to you, then in later days you will return +31 +to the LORD your God and listen to His voice. +For the LORD your God is a merciful God; He +will not abandon you or destroy you or forget the +covenant with your fathers, which He swore to +The LORD Alone Is God +them by oath. +32 + +33 + +Indeed, ask now from one end of the heavens +to the other about the days that long preceded +you, from the day that God created man on earth: +Has anything as great as this ever happened or +Has a people ever heard the +been reported? +voice of God + speaking out of the fire, as you +Or has any god tried to take as +have, and lived? +of a god +d 33 + +34 + + d + +That is, Mount Sinai, or possibly a mountain in the range containing Mount Sinai; also in verse 15 +Hebrew + +Cited in Hebrews 12:29 + +Or + + his own a nation out of another nation—by trials, +signs, wonders, and war, by a strong hand and an +outstretched arm, and by great terrors—as the +LORD your God did for you in Egypt, before your +35 +eyes? + +You were shown these things so that you +would know that the LORD is God; there is no +36 +other besides Him. + +He let you hear His voice from heaven to disci- +pline you, and on earth He showed you His great +37 +fire, and you heard His words out of the fire. +Because He loved your fathers, He chose their +descendants after them and brought you out of +Egypt by His presence and great power, +to +drive out before you nations greater and might- +ier than you, and to bring you into their land and +39 +give it to you for your inheritance, as it is this day. + +38 + +40 + +Know therefore this day and take to heart that +the LORD is God in heaven above and on the +Keep His stat- +earth below; there is no other. +utes and commandments, which I am giving you +today, so that you and your children after you +may prosper, and that you may live long in the +land that the LORD your God is giving you for all +Cities of Refuge +time. +(Num. 35:9–34 ; De. 19:1–14 ; Josh. 20:1–9) + +41 + +42 + +Then Moses set aside three cities across the +Jordan to the east +to which a manslayer could +flee after killing his neighbor unintentionally +without prior malice. + +43 + +To save one’s own life, he could flee to one of +Bezer in the wilderness on the +these cities: +plateau belonging to the Reubenites, Ramoth in +Gilead belonging to the Gadites, or Golan in Ba- +Introduction to the Law +shan belonging to the Manassites. +44 + +45 + +This is the law that Moses set before the Isra- +These are the testimonies, statutes, and +elites. +46 +ordinances that Moses proclaimed to them after +they had come out of Egypt, +while they were in +the valley across the Jordan facing Beth-peor in +the land of Sihon king of the Amorites, who lived +in Heshbon and was defeated by Moses and the +c 1 +b 49 +a 48 +Israelites after they had come out of Egypt. + +Sirion + +Sion + + Deuteronomy 5:12 | 169 + +47 + +48 + +They took possession of the land belonging to +Sihon and to Og king of Bashan—the two Amo- +ex- +rite kings across the Jordan to the east— +tending from Aroer on the rim of the Arnon Val- +49 + (that is, Hermon), +ley as far as Mount Siyon +including all the Arabah on the east side of the + below + +Jordan and as far as the Sea of the Arabah, +The Covenant at Horeb +the slopes of Pisgah. + + a + +b + +5 + + c + +Then Moses summoned all Israel and said to +them: + +Hear, O Israel, the statutes and ordinances that I +declare in your hearing this day. Learn them and +The LORD our God +observe them carefully. +3 +made a covenant with us at Horeb. + +2 + +d + +4 + +He did not make this covenant with our fathers, +The +but with all of us who are alive here today. +LORD spoke with you face to face out of the fire +The Ten Commandments (Exodus 20:1–17) +on the mountain. +5 + +At that time I was standing between the LORD +and you to declare to you the word of the LORD, +because you were afraid of the fire and would not +“I am the +go up the mountain. And He said: +LORD your God, who brought you out of the land +of Egypt, out of the house of slavery. + +7 + +6 + +e + +8 + +You shall have no other gods before Me. + +You shall not make for yourself an idol in +the form of anything in the heavens above, +9 +on the earth below, or in the waters beneath. +You shall not bow down to them or worship +them; for I, the LORD your God, am a jealous +God, visiting the iniquity of the fathers +on their children to the third and fourth +but +generations of those who hate Me, +showing loving devotion to a thousand gen- +erations + of those who love Me and keep My +11 +commandments. + +10 + + f + +You shall not take the name of the LORD +your God in vain, for the LORD will not leave +anyone unpunished who takes His name in +12 +vain. + +Observe the Sabbath day by keeping it +holy, as the LORD your God has commanded + +Or + +e 7 + +; Syriac + +besides Me + +That is, the Dead Sea + +Note that Deuteronomy 5:1 through Deuteronomy 26:19 may +be presented as a continuous section of unbroken speech by Moses. In place of multiple levels of nested quotes, this section +has been set apart with a double space. +faithful- +kindness +Sinai +Hebrew + are translated here and +ness +loyalty to a covenant +in most cases throughout the Scriptures as +, as well as + +That is, Mount Sinai, or possibly a mountain in the range containing Mount + +d 2 +loving devotion to thousands + +; the range of meaning includes + +; forms of the Hebrew + +loving devotion + +goodness + +Or +mercy + +chesed + +, and + +f 10 + +love + +. + +, + +, + +, + + 170 | Deuteronomy 5:13 + +13 + +14 + +Six days you shall labor and do all +you. +but the seventh day is a Sab- +your work, +bath to the LORD your God, on which you +must not do any work—neither you, nor +your son or daughter, nor your manservant +or maidservant, nor your ox or donkey or +any of your livestock, nor the foreigner +within your gates, so that your manservant +Re- +and maidservant may rest as you do. +member that you were a slave in the land of +Egypt, and that the LORD your God brought +you out of there with a mighty hand and an +outstretched arm. That is why the LORD your +God has commanded you to keep the Sab- +16 +bath day. + +15 + +Honor your father and your mother, as the +LORD your God has commanded you, so that +your days may be long and that it may go +well with you in the land that the LORD your +17 +God is giving you. +18 + +a + +b + +c + +You shall not murder. + +You shall not commit adultery. + +19 + +20 + +You shall not steal. + +e + +21 +your neighbor. + +d + + f + +You shall not bear false witness against + +You shall not covet + + your neighbor’s wife. +You shall not covet your neighbor’s house or +field, or his manservant or maidservant, or +his ox or donkey, or anything that belongs to +your neighbor.” + +Moses Intercedes for the People +(Exodus 20:18–21 ; Hebrews 12:18–29) + +22 + +The LORD spoke these commandments in a +loud voice to your whole assembly out of the fire, +the cloud, and the deep darkness on the moun- +tain; He added nothing more. And He wrote them +23 +on two tablets of stone and gave them to me. + +24 + +And when you heard the voice out of the dark- +ness while the mountain was blazing with fire, all +the heads of your tribes and your elders ap- +and you said, “Behold, the LORD +proached me, +our God has shown us His glory and greatness, +and we have heard His voice out of the fire. To- +day we have seen that a man can live even if God +a 16 +But now, why should we die? +speaks with him. + +25 + +26 + +27 + +For this great fire will consume us, and we will +die, if we hear the voice of the LORD our God any +For who of all flesh has heard the voice +longer. +of the living God speaking out of the fire, as we +have, and survived? +Go near and listen to all +that the LORD our God says. Then you can tell us +everything the LORD our God tells you; we will +28 +listen and obey.” + +29 + +And the LORD heard the words you spoke to +me, and He said to me, “I have heard the words +that these people have spoken to you. They have +done well in all that they have spoken. +If only +they had such a heart to fear Me and keep all My +30 +commandments always, so that it might be well +with them and with their children forever. +Go +and tell them: ‘Return to your tents.’ +But you +stand here with Me, that I may speak to you all +the commandments and statutes and ordinances +you are to teach them to follow in the land that I +32 +am giving them to possess.” + +31 + +33 + +So be careful to do as the LORD your God has +commanded you; you are not to turn aside to the +You must walk in all the +right or to the left. +ways that the LORD your God has commanded +you, so that you may live and prosper and pro- +The Greatest Commandment +long your days in the land that you will possess. +(Matthew 22:34–40 ; Mark 12:28–34) + +6 + +2 + +These are the commandments and statutes +and ordinances that the LORD your God has +instructed me to teach you to follow in the land +so that +that you are about to enter and possess, +you and your children and grandchildren may +fear the LORD your God all the days of your lives +by keeping all His statutes and commandments +that I give you, and so that your days may be pro- +Hear, O Israel, and be careful to observe +longed. +them, so that you may prosper and multiply +greatly in a land flowing with milk and honey, +just as the LORD, the God of your fathers, has +4 +promised you. +5 + +3 + +g + +Hear, O Israel: The LORD our God, the LORD is +One. +And you shall love the LORD your God +with all your heart and with all your soul and +6 +with all your strength. +7 + +h + +These words I am commanding you today are to +b 17 +And you shall teach them +Cited in Matthew 5:21, + +be upon your hearts. +c 18 + +Cited in Matthew 15:4, Matthew 19:19, Mark 7:10, Luke 18:20, and Ephesians 6:2–3 + +d 19 + +e 20 + +The LORD our God is One LORD + +Matthew 19:18, Mark 10:19, Luke 18:20, Romans 13:9, and James 2:11 +Mark 10:19, Luke 18:20, Romans 13:9, and James 2:11 +The LORD is our God, the LORD is One +mans 13:9 +Cited in Matthew 19:18, Mark 10:19, and Luke 18:20 +Or +Mark 12:29 + +Cited in Matthew 22:37, Mark 12:30, and Luke 10:27 + +h 5 + + or + + or + +f 21 + +Cited in Matthew 5:27, Matthew 19:18, +Cited in Matthew 19:18, Mark 10:19, Luke 18:20, and Ro- +The LORD is our God, the LORD alone +Cited in Romans 7:7 and Romans 13:9 + +g 4 + +; cited in + + 8 + +diligently to your children and speak of them +when you sit at home and when you walk along +the road, when you lie down and when you get +up. +Tie them as reminders on your hands and +bind them on your foreheads. +Write them on +10 +the doorposts of your houses and on your gates. + +9 + +11 + +And when the LORD your God brings you into +the land He swore to your fathers, to Abraham, +Isaac, and Jacob, that He would give you—a land +with great and splendid cities that you did not +build, +with houses full of every good thing with +which you did not fill them, with wells that you +did not dig, and with vineyards and olive groves +that you did not plant—and when you eat and +are satisfied, +be careful not to forget the LORD +who brought you out of the land of Egypt, out of +13 +the house of slavery. + +12 + +a + +14 + +Fear the LORD your God, serve Him only, and +take your oaths in His name. +Do not follow +15 +other gods, the gods of the peoples around you. +For the LORD your God, who is among you, is a +jealous God. Otherwise the anger of the LORD +your God will be kindled against you, and He will +16 +wipe you off the face of the earth. +17 + +b + +18 + +Do not test the LORD your God as you tested +Him at Massah. +You are to diligently keep the +commandments of the LORD your God and the +Do +testimonies and statutes He has given you. +what is right and good in the sight of the LORD, +so that it may be well with you and that you may +enter and possess the good land that the LORD +your God swore to give your fathers, +driving +out all your enemies before you, as the LORD has +Teach Your Children +said. +20 + +19 + +21 + +22 + +In the future, when your son asks, “What is the +meaning of the decrees and statutes and ordi- +nances that the LORD our God has commanded +you?” +then you are to tell him, “We were slaves +of Pharaoh in Egypt, but the LORD brought us out +of Egypt with a mighty hand. +Before our eyes +the LORD inflicted great and devastating signs +and wonders on Egypt, on Pharaoh, and on all his +household. +But He brought us out from there +to lead us in and give us the land that He had +24 +sworn to our fathers. + +23 + +And the LORD commanded us to observe all +serve Him, and take your oaths only in His name +a 13 +these statutes and to fear the LORD our God, that +c 2 + + Deuteronomy 7:11 | 171 + +25 + +we may always be prosperous and preserved, as +we are to this day. +And if we are careful to ob- +serve every one of these commandments before +the LORD our God, as He has commanded us, +Drive Out the Nations +then that will be our righteousness.” + +7 + +When the LORD your God brings you into +the land that you are entering to possess, +and He drives out before you many nations—the +Hittites, Girgashites, Amorites, Canaanites, Per- +izzites, Hivites, and Jebusites, seven nations +and when the +larger and stronger than you— +LORD your God has delivered them over to you + d +to defeat them, then you must devote them to + with +complete destruction. +3 +them and show them no mercy. + + Make no treaty + +2 + +c + +4 + +Do not intermarry with them. Do not give your +daughters to their sons or take their daughters +for your sons, +because they will turn your sons +away from following Me to serve other gods. +Then the anger of the LORD will burn against +5 +you, and He will swiftly destroy you. + +6 + +Instead, this is what you are to do to them: tear +down their altars, smash their sacred pillars, cut +down their Asherah poles, and burn their idols in +For you are a people holy to the LORD +the fire. +your God. The LORD your God has chosen you to +be a people for His prized possession out of all +7 +peoples on the face of the earth. + +8 + +The LORD did not set His affection on you and +choose you because you were more numerous +than the other peoples, for you were the fewest +But because the LORD loved you +of all peoples. +and kept the oath He swore to your fathers, He +brought you out with a mighty hand and re- +deemed you from the house of slavery, from the +9 +hand of Pharaoh king of Egypt. + +Know therefore that the LORD your God is God, +the faithful God who keeps His covenant of loving +devotion for a thousand generations of those +10 +who love Him and keep His commandments. +But those who hate Him He repays to their +faces with destruction; He will not hesitate to re- +11 +pay to his face the one who hates Him. + +So keep the commandments and statutes and +ordinances that I am giving you to follow this +day. + +b 16 Massah + +testing + +cherem + +Or + +; cited in Matthew 4:10 and Luke 4:8 + +berit + +see Exodus 17:7; cited in Matthew 4:7 and Luke 4:12. +or persons to the LORD, either by destroying them or by giving them as an offering; also twice in verse 26. +the Hebrew + + are translated in most passages as + +Forms of the Hebrew + +covenant + +. + +; + refer to the giving over of things +Forms of + + means +d 2 + + 172 | Deuteronomy 7:12 + +The Promises of God (Exodus 23:20–33) + +12 + +If you listen to these ordinances and keep +them carefully, then the LORD your God will keep +13 +His covenant and the loving devotion that He +He will love you and +swore to your fathers. +bless you and multiply you. He will bless the fruit +of your womb and the produce of your land— +your grain, new wine, and oil, the young of your +herds and the lambs of your flocks—in the land +You +that He swore to your fathers to give you. +will be blessed above all peoples; among you +there will be no barren man or woman or live- +15 +stock. + +14 + +16 + +And the LORD will remove from you all sick- +ness. He will not lay upon you any of the +terrible diseases you knew in Egypt, but He will +You must de- +inflict them on all who hate you. +stroy all the peoples the LORD your God will +deliver to you. Do not look on them with pity. Do +not worship their gods, for that will be a snare to +17 +you. + +18 + +19 + +You may say in your heart, “These nations +are greater than we are; how can we drive +But do not be afraid of them. Be +them out?” +sure to remember what the LORD your God did +to Pharaoh and all Egypt: +the great trials that +you saw, the signs and wonders, and the mighty +hand and outstretched arm by which the LORD +your God brought you out. The LORD your God +20 +will do the same to all the peoples you now fear. + +21 + +Moreover, the LORD your God will send the +hornet against them until even the survivors hid- +Do not be terrified +ing from you have perished. +by them, for the LORD your God, who is among +22 +you, is a great and awesome God. + +23 + +The LORD your God will drive out these na- +tions before you little by little. You will not be en- +abled to eliminate them all at once, or the wild +But the +animals would multiply around you. +LORD your God will give them over to you and +throw them into great confusion, until they are +He will hand their kings over to +destroyed. +you, and you will wipe out their names from un- +der heaven. No one will be able to stand against +25 +you; you will annihilate them. + +24 + +You must burn up the images of their gods; do +not covet the silver and gold that is on them or +take it for yourselves, or you will be ensnared by +26 +it; for it is detestable to the LORD your God. +a 3 +And you must not bring any detestable thing +Cited in Matthew 4:4 and Luke 4:4 + +into your house, or you, like it, will be set apart +for destruction. You are to utterly detest and ab- +Remember the LORD Your God +hor it, because it is set apart for destruction. + +8 + +2 + +You must carefully follow every command- +ment I am giving you today, so that you may +live and multiply, and enter and possess the land +Re- +that the LORD swore to give your fathers. +member that these forty years the LORD your +God led you all the way in the wilderness, so that +He might humble you and test you in order to +know what was in your heart, whether or not you +3 +would keep His commandments. + +He humbled you, and in your hunger He gave +you manna to eat, which neither you nor your fa- +thers had known, so that you might understand +that man does not live on bread alone, but on +every word that comes from the mouth of the +LORD. +Your clothing did not wear out and your +5 +feet did not swell during these forty years. + +4 + +a + +6 + +So know in your heart that just as a man +disciplines his son, so the LORD your God disci- +plines you. +Therefore you shall keep the com- +mandments of the LORD your God, walking in His +7 +ways and fearing Him. + +9 + +8 + +For the LORD your God is bringing you into a +good land, a land of brooks and fountains and +springs that flow through the valleys and hills; +a +land of wheat, barley, vines, fig trees, and pome- +granates; a land of olive oil and honey; +a land +where you will eat food without scarcity, where +you will lack nothing; a land whose rocks are iron +10 +and whose hills are ready to be mined for copper. +When you eat and are satisfied, you are to +bless the LORD your God for the good land that +11 +He has given you. + +12 + +Be careful not to forget the LORD your God by +failing to keep His commandments and ordi- +nances and statutes, which I am giving you this +day. +Otherwise, when you eat and are satisfied, +13 +when you build fine houses in which to dwell, +and when your herds and flocks grow large +and your silver and gold increase and all that you +have is multiplied, +then your heart will become +proud, and you will forget the LORD your God +who brought you out of the land of Egypt, out of +15 +the house of slavery. + +14 + +He led you through the vast and terrifying wil- +derness with its venomous snakes and scorpi- +ons, a thirsty and waterless land. He brought you + + 16 + +He fed you in the +water from the rock of flint. +wilderness with manna that your fathers had not +known, in order to humble you and test you, so +17 +that in the end He might cause you to prosper. + +18 + +You might say in your heart, “The power and +strength of my hands have made this wealth for +But remember that it is the LORD your +me.” +God who gives you the power to gain wealth, in +order to confirm His covenant that He swore to +19 +your fathers even to this day. + +20 + +If you ever forget the LORD your God and go +after other gods to worship and bow down to +them, I testify against you today that you will +Like the nations that the LORD +surely perish. +has destroyed before you, so you will perish if +Assurance of Victory +you do not obey the LORD your God. + +9 + +Hear, O Israel: Today you are about to cross +the Jordan to go in and dispossess nations +2 +greater and stronger than you, with large cities +The people are strong +fortified to the heavens. +and tall, the descendants of the Anakim. You +know about them, and you have heard it said, +But un- +“Who can stand up to the sons of Anak?” +derstand that today the LORD your God goes +across ahead of you as a consuming fire; He will +destroy them and subdue them before you. And +you will drive them out and annihilate them +4 +swiftly, as the LORD has promised you. + +3 + +When the LORD your God has driven them out +before you, do not say in your heart, “Because of +my righteousness the LORD has brought me in to +possess this land.” Rather, the LORD is driving +out these nations before you because of their +5 +wickedness. + +It is not because of your righteousness or up- +rightness of heart that you are going in to possess +their land, but it is because of their wickedness +that the LORD your God is driving out these na- +tions before you, to keep the promise He swore +6 +to your fathers, to Abraham, Isaac, and Jacob. +Understand, then, that it is not because of your +righteousness that the LORD your God is giving +you this good land to possess, for you are a stiff- +The Golden Calf (Ex. 32:1–35 ; Acts 7:39–43) +necked people. +7 + +Remember this, and never forget how you pro- +a 8 +voked the LORD your God in the wilderness. + + Deuteronomy 9:21 | 173 + + a + +At Horeb + +From the day you left the land of Egypt until you +reached this place, you have been rebelling +8 +against the LORD. + +9 + you provoked the LORD, and He was +angry enough to destroy you. +When I went up +on the mountain to receive the tablets of stone, +the tablets of the covenant that the LORD made +with you, I stayed on the mountain forty days and +10 +forty nights. I ate no bread and drank no water. + +12 + +Then the LORD gave me the two stone tablets, +inscribed by the finger of God with the exact +words that the LORD spoke to you out of the fire +11 +on the mountain on the day of the assembly. +And at the end of forty days and forty nights, +the LORD gave me the two stone tablets, the tab- +lets of the covenant. +And the LORD said to me, +“Get up and go down from here at once, for your +people, whom you brought out of Egypt, have +corrupted themselves. How quickly they have +turned aside from the way that I commanded +them! They have made for themselves a molten +13 +image.” + +14 + +The LORD also said to me, “I have seen this +people, and they are indeed a stiff-necked peo- +Leave Me alone, so that I may destroy them +ple. +and blot out their name from under heaven. Then +I will make you into a nation mightier and +15 +greater than they are.” + +16 + +So I went back down the mountain while it was +blazing with fire, with the two tablets of the cov- +enant in my hands. +And I saw how you had +sinned against the LORD your God; you had made +for yourselves a molten calf. You had turned +aside quickly from the way that the LORD had +So I took the two tablets and +commanded you. +threw them out of my hands, shattering them be- +18 +fore your eyes. + +17 + +19 + +Then I fell down before the LORD for forty +days and forty nights, as I had done the first time. +I did not eat bread or drink water because of all +the sin you had committed in doing what was evil + b +in the sight of the LORD and provoking Him to + of the anger and wrath +anger. +that the LORD had directed against you, enough +to destroy you. But the LORD listened to me this +20 +time as well. + +For I was afraid + +21 + +The LORD was angry enough with Aaron to +destroy him, but at that time I also prayed for +And I took that sinful thing, the calf you +Aaron. + +And I am greatly terrified + +b 19 + +That is, Mount Sinai, or possibly a mountain in the range containing Mount Sinai + +LXX + +; + +cited in Hebrews 12:21 + + 174 | Deuteronomy 9:22 + +a + +had made, and burned it in the fire. Then I +crushed it and ground it to powder as fine as +dust, and I cast it into the stream that came down +22 +from the mountain. + +c +You continued to provoke the LORD at Tabe- + and at Kibroth-hattaavah. +And when the LORD sent you out from Kadesh- +barnea, He said, “Go up and possess the land that +I have given you.” + + at Massah, + +23 +rah, + +b + +24 + +But you rebelled against the command of the +LORD your God. You neither believed Him nor +You have been rebelling against +obeyed Him. +So +the LORD since the day I came to know you. +I fell down before the LORD for forty days and +forty nights, because the LORD had said He +26 +would destroy you. + +25 + +27 + +And I prayed to the LORD and said, “O Lord +GOD, do not destroy Your people, Your inher- +itance, whom You redeemed through Your great- +ness and brought out of Egypt with a mighty +Remember Your servants Abraham, +hand. +Isaac, and Jacob. Overlook the stubbornness of +28 +this people and the wickedness of their sin. +Otherwise, those in the land from which You +brought us out will say, ‘Because the LORD was +not able to bring them into the land He had prom- +ised them, and because He hated them, He has +29 +brought them out to kill them in the wilderness.’ +But they are Your people, Your inheritance, +whom You brought out by Your great power and +New Stone Tablets (Exodus 34:1–9) +outstretched arm.” + +10 + +2 + +At that time the LORD said to me, “Chisel +out two stone tablets like the originals, +come up to Me on the mountain, and make an ark +And I will write on the tablets the +of wood. +words that were on the first tablets, which you +3 +broke; and you are to place them in the ark.” + + d + +So I made an ark of acacia wood, chiseled out +two stone tablets like the originals, and went up +4 +the mountain with the two tablets in my hands. +And the LORD wrote on the tablets what had +been written previously, the Ten Command- + that He had spoken to you on the moun- +ments +tain out of the fire on the day of the assembly. +and I went back +The LORD gave them to me, +down the mountain and placed the tablets in the +ark I had made, as the LORD had commanded me; +a 22 Taberah +and there they have remained. + +burning + +5 + +b 22 Massah + +6 + + e + +The Israelites traveled from Beeroth Bene- +jaakan + to Moserah, where Aaron died and was +7 +buried, and Eleazar his son succeeded him as +priest. +From there they traveled to Gudgodah, +and from Gudgodah to Jotbathah, a land with +8 +streams of water. + +9 + +At that time the LORD set apart the tribe of Levi +to carry the ark of the covenant of the LORD, to +stand before the LORD to serve Him, and to pro- +nounce blessings in His name, as they do to this +That is why Levi has no portion or inher- +day. +itance among his brothers; the LORD is his inher- +10 +itance, as the LORD your God promised him. + +I stayed on the mountain forty days and forty +nights, like the first time, and that time the LORD +again listened to me and agreed not to destroy +11 +you. + +Then the LORD said to me, “Get up. Continue +your journey ahead of the people, that they may +enter and possess the land that I swore to their +A Call to Obedience (Joshua 24:14–28) +fathers to give them.” +12 + +13 + +And now, O Israel, what does the LORD your +God ask of you but to fear the LORD your God by +walking in all His ways, to love Him, to serve the +LORD your God with all your heart and with all +and to keep the commandments and +your soul, +statutes of the LORD that I am giving you this day +14 +for your own good? + +15 + +Behold, to the LORD your God belong the heav- +ens, even the highest heavens, and the earth and +everything in it. +Yet the LORD has set His affec- +tion on your fathers and loved them. And He has +chosen you, their descendants after them, above +16 +all the peoples, even to this day. + +17 + +18 + +Circumcise your hearts, therefore, and stiffen +your necks no more. +For the LORD your God is +God of gods and Lord of lords, the great, mighty, +and awesome God, showing no partiality and ac- +He executes justice for the fa- +cepting no bribe. +therless and widow, and He loves the foreigner, +So you also must +giving him food and clothing. +love the foreigner, since you yourselves were for- +20 +eigners in the land of Egypt. + +19 + +21 + +You are to fear the LORD your God and serve +Him. Hold fast to Him and take your oaths in His +He is your praise and He is your God, +name. +who has done for you these great and awesome + +c 22 Kibroth-hattaavah + +testing + +graves of craving + + means + + d 4 +; see Numbers 11:3. + +the Ten Words + means + +from the wells of the Bene-jaakan + +e 6 +; see Exodus 17:7. + +means + +; see Numbers 11:34. + +Hebrew + +Or + + 22 + +14 + + b + + Deuteronomy 11:29 | 175 + +Your fa- +wonders that your eyes have seen. +thers went down to Egypt, seventy in all, and +now the LORD your God has made you as numer- +Obedience and Discipline (De. 4:1–14) +ous as the stars in the sky. + +11 + +You shall therefore love the LORD your +God and always keep His charge, His +statutes, His ordinances, and His command- +2 +ments. + + a + +4 + +Know this day that it is not your children who +have known and seen the discipline of the LORD +3 +your God: His greatness, His mighty hand, and +the signs and works He +His outstretched arm; +did in Egypt to Pharaoh king of Egypt and all his +land; +what He did to the Egyptian army and +horses and chariots when He made the waters of + engulf them as they pursued you, +the Red Sea +and how He destroyed them completely, even to +6 +what He did for you in the wilderness +this day; +until you reached this place; +and what He did in +the midst of all the Israelites to Dathan and Abi- +ram, the sons of Eliab the Reubenite, when the +earth opened its mouth and swallowed them, +their households, their tents, and every living +7 +thing that belonged to them. + +5 + +For it is your own eyes that have seen every + +God’s Great Blessings (Joshua 1:1–9) +great work that the LORD has done. +8 + +You shall therefore keep every commandment I +am giving you today, so that you may have the +strength to go in and possess the land that you +and so that +are crossing the Jordan to possess, +you may live long in the land that the LORD +swore to your fathers to give them and their de- +10 +scendants, a land flowing with milk and honey. + +9 + +11 + +For the land that you are entering to possess is +not like the land of Egypt, from which you have +come, where you sowed your seed and irrigated +But the land +on foot, like a vegetable garden. +that you are crossing the Jordan to possess is a +land of mountains and valleys that drinks in the +It is a land for which the +rain from heaven. +LORD your God cares; the eyes of the LORD your +God are always on it, from the beginning to the +13 +end of the year. + +12 + +then I will provide + + rain for your +your soul, +land in season, the autumn and spring rains, that +15 +you may gather your grain, new wine, and oil. +And I will provide grass in the fields for your + +16 +livestock, and you will eat and be satisfied. + +But be careful that you are not enticed to turn +17 +aside to worship and bow down to other gods, +or the anger of the LORD will be kindled +against you. He will shut the heavens so that +there will be no rain, nor will the land yield its +produce, and you will soon perish from the good +Remember God’s Words +land that the LORD is giving you. +18 + +19 + +Fix these words of mine in your hearts and +minds; tie them as reminders on your hands and +Teach them to +bind them on your foreheads. +your children, speaking about them when you sit +20 +at home and when you walk along the road, when +Write them +you lie down and when you get up. +on the doorposts of your houses and on your +gates, +so that as long as the heavens are above +the earth, your days and those of your children +may be multiplied in the land that the LORD +22 +swore to give your fathers. + +21 + +23 + +For if you carefully keep all these command- +ments I am giving you to follow—to love the +LORD your God, to walk in all His ways, and to +then the LORD will drive +hold fast to Him— +out all these nations before you, and you will dis- +24 +possess nations greater and stronger than you. +Every place where the sole of your foot treads +will be yours. Your territory will extend from the +c +wilderness to Lebanon, and from the Euphrates +River to the Western Sea. +No man will be able +to stand against you; the LORD your God will put +the fear and dread of you upon all the land, wher- +A Blessing and a Curse +ever you set foot, as He has promised you. +26 + +25 + +27 + +28 + +See, today I am setting before you a blessing +and a curse— +a blessing if you obey the com- +mandments of the LORD your God that I am giv- +but a curse if you disobey the +ing you today, +commandments of the LORD your God and turn +aside from the path I command you today by fol- +29 +lowing other gods, which you have not known. + +So if you carefully obey the commandments I +am giving you today, to love the LORD your God +and to serve Him with all your heart and with all +a 4 + +the Sea of Reeds + +b 14 + +When the LORD your God brings you into the +land you are entering to possess, you are to pro- +claim the blessing on Mount Gerizim and the + +c 24 + +He will provide + +Or + +Hebrew; SP, LXX, and Vulgate + +; also in verse 15 + +That is, the Mediterra- + +nean Sea, also called the Great Sea + + 176 | Deuteronomy 11:30 + +30 + +Are not these mountains +curse on Mount Ebal. +across the Jordan, west of the road toward the +sunset, in the land of the Canaanites who live +in the Arabah opposite Gilgal near the Oak + of +31 +Moreh? + + a + +32 + +For you are about to cross the Jordan to enter +and possess the land that the LORD your God is +giving you. When you take possession of it and +be careful to follow all the statutes +settle in it, +and ordinances that I am setting before you to- +day. One Place for Worship +12 + +These are the statutes and ordinances +you must be careful to follow all the days +you live in the land that the LORD, the God of +2 +your fathers, has given you to possess. + +Destroy completely all the places where the na- +tions you are dispossessing have served their +3 +gods—atop the high mountains, on the hills, and +Tear down their altars, +under every green tree. +smash their sacred pillars, burn up their Asherah +poles, cut down the idols of their gods, and wipe +You shall not +out their names from every place. +5 +worship the LORD your God in this way. + +4 + +6 + +Instead, you must seek the place the LORD your +God will choose from among all your tribes to es- +tablish as a dwelling for His Name, and there you +To that place you are to bring your +must go. +burnt offerings and sacrifices, your tithes and +heave offerings, your vow offerings and freewill +offerings, as well as the firstborn of your herds +There, in the presence of the LORD +and flocks. +your God, you and your households shall eat and +rejoice in all you do, because the LORD your God +8 +has blessed you. + +7 + +9 + +You are not to do as we are doing here today, +where everyone does what seems right in his +For you have not yet come to the rest- +own eyes. +ing place and the inheritance that the LORD your +10 +God is giving you. + +11 + +When you cross the Jordan and live in the land +that the LORD your God is giving you as an inher- +itance, and He gives you rest from all the enemies +then the +around you and you dwell securely, +LORD your God will choose a dwelling for His +Name. And there you are to bring everything I +command you: your burnt offerings and sacri- +fices, your tithes and special gifts, and all the +Oaks +a 30 +And you +choice offerings you vow to the LORD. + +12 + +shall rejoice before the LORD your God—you, +your sons and daughters, your menservants and +maidservants, and the Levite within your gates, +since he has no portion or inheritance among +13 +you. + +14 +Be careful not to offer your burnt offerings in +you must offer them +just any place you see; +only in the place the LORD will choose in one of +your tribal territories, and there you shall do all +15 +that I command you. + +But whenever you want, you may slaughter +and eat meat within any of your gates, according +to the blessing the LORD your God has given you. +Both the ceremonially clean and unclean may eat +but you must +it as they would a gazelle or deer, +not eat the blood; pour it on the ground like wa- +17 +ter. + +16 + +18 + +Within your gates you must not eat the tithe of +your grain or new wine or oil, the firstborn of +your herds or flocks, any of the offerings that you +have vowed to give, or your freewill offerings or +Instead, you must eat them in the +special gifts. +presence of the LORD your God at the place the +LORD your God will choose—you, your sons and +daughters, your menservants and maidservants, +and the Levite within your gates. Rejoice before +and be careful +the LORD your God in all you do, +not to neglect the Levites as long as you live in +20 +your land. + +19 + +21 + +22 + +When the LORD your God expands your terri- +tory as He has promised, and you crave meat and +say, “I want to eat meat,” you may eat it when- +If the place where the LORD +ever you want. +your God chooses to put His Name is too far from +you, then you may slaughter any of the herd or +flock He has given you, as I have commanded +you, and you may eat it within your gates when- +Indeed, you may eat it as you +ever you want. +would eat a gazelle or deer; both the ceremoni- +ally unclean and the clean may eat it. +Only be +sure not to eat the blood, because the blood is the +24 +life, and you must not eat the life with the meat. +You must not eat the blood; pour it on the +Do not eat it, so that it may +ground like water. +go well with you and your children after you, be- +cause you will be doing what is right in the eyes +26 +of the LORD. + +25 + +23 + +27 + +But you are to take your holy things and your +vow offerings and go to the place the LORD will +Present the meat and blood of your +choose. + +Great Trees + +Terebinths + +SP, LXX, and Syriac (see Genesis 12:6); Hebrew + + or + + or + + 28 + +burnt offerings on the altar of the LORD your +God. The blood of your other sacrifices must be +poured out beside the altar of the LORD your +Be careful to +God, but you may eat the meat. +obey all these things I command you, so that it +may always go well with you and your children +after you, because you will be doing what is good +A Warning against Idolatry +and right in the eyes of the LORD your God. +(Deuteronomy 4:15–31 ; Ezekiel 6:1–7) + +29 + +30 + +When the LORD your God cuts off before you +the nations you are entering to dispossess, and +you drive them out and live in their land, +be +careful not to be ensnared by their ways after +they have been destroyed before you. Do not in- +quire about their gods, asking, “How do these na- +31 +tions serve their gods? I will do likewise.” + +You must not worship the LORD your God in +this way, because they practice for their gods +every abomination which the LORD hates. They +even burn their sons and daughters in the fire as +32 +sacrifices to their gods. + +See that you do everything I command you; do + +Idolaters to Be Put to Death +not add to it or subtract from it. + +13 + +2 + +3 + +If a prophet or dreamer of dreams arises +among you and proclaims a sign or won- +der to you, +and if the sign or wonder he has spo- +ken to you comes about, but he says, “Let us fol- +low other gods (which you have not known) and +you must not listen to the +let us worship them,” +words of that prophet or dreamer. For the LORD +your God is testing you to find out whether you +love Him with all your heart and with all your +You are to follow the LORD your God and +soul. +fear Him. Keep His commandments and listen to +5 +His voice; serve Him and hold fast to Him. + +4 + +Such a prophet or dreamer must be put to +death, because he has advocated rebellion +against the LORD your God, who brought you out +of the land of Egypt and redeemed you from the +house of slavery; he has tried to turn you from +the way in which the LORD your God has com- +manded you to walk. So you must purge the evil +6 +from among you. + +a + +b + + Deuteronomy 14:2 | 177 + +7 + +worship other gods” (which neither you nor your +the gods of the peoples +fathers have known, +around you, whether near or far, whether from +you must not +one end of the earth or the other), +yield to him or listen to him. Show him no pity, +9 +and do not spare him or shield him. + +8 + +10 + +Instead, you must surely kill him. Your hand +must be the first against him to put him to death, +Stone him +and then the hands of all the people. +to death for trying to turn you away from the +11 +LORD your God, who brought you out of the land +Then all +of Egypt, out of the house of slavery. +Israel will hear and be afraid, and will never again +Idolatrous Cities to Be Destroyed +do such a wicked thing among you. +12 + +14 + +If, regarding one of the cities the LORD your +13 +God is giving you to inhabit, you hear it said +that wicked men have arisen from among you +and have led the people of their city astray, say- +ing, “Let us go and serve other gods” (which you +then you must inquire, in- +have not known), +vestigate, and interrogate thoroughly. And if it is +established with certainty that this abomination +you must +has been committed among you, +surely put the inhabitants of that city to the + all its people and +sword. Devote to destruction +16 +livestock. + +15 + + c + +And you are to gather all its plunder in the +middle of the public square, and completely burn +the city and all its plunder as a whole burnt offer- +ing to the LORD your God. The city must remain +17 +a mound of ruins forever, never to be rebuilt. + +18 + +Nothing devoted to destruction shall cling to +your hands, so that the LORD will turn from His +fierce anger, grant you mercy, show you compas- +sion, and multiply you as He swore to your +because you obey the LORD your God, +fathers, +keeping all His commandments I am giving you +today and doing what is right in the eyes of the +Clean and Unclean Animals +LORD your God. +(Leviticus 11:1–47 ; Acts 10:9–16) + +14 + +You are sons of the LORD your God; do +2 +not cut yourselves or shave your fore- +for you are a people +heads on behalf of the dead, +holy to the LORD your God. The LORD has chosen +you to be a people for His prized possession out +of all the peoples on the face of the earth. + +cherem + +c 15 + +If your very own brother, or your son or daugh- +ter, or the wife you embrace, + or your closest +friend secretly entices you, saying, “Let us go and +b 6 +a 5 + +the wife of your bosom + +Cited in 1 Corinthians 5:13 + + refer to the giving +over of things or persons to the LORD, either by destroying them or by giving them as an offering; similarly in verse 17. + +Forms of the Hebrew + +Hebrew + + 178 | Deuteronomy 14:3 + +3 + +4 + + a + +You must not eat any detestable thing. + +These + +are the animals that you may eat: + +5 +The ox, the sheep, the goat, + +the deer, the gazelle, the roe deer, + +the wild goat, the ibex, the antelope, + +and the mountain sheep. + +6 + +You may eat any animal that has a split hoof di- + +7 +vided in two and that chews the cud. + +But of those that chew the cud or have a com- +pletely divided hoof, you are not to eat the +following: + +the camel, + +the rabbit, + +b + +or the rock badger. + +8 + +Although they chew the cud, they do not +have a divided hoof. They are unclean for +as well as the pig; though it has a +you, +divided hoof, it does not chew the cud. It is +unclean for you. You must not eat its meat or +touch its carcass. + +10 + +9 + +Of all the creatures that live in the water, you +but you +may eat anything with fins and scales, +may not eat anything that does not have fins and +11 +scales; it is unclean for you. + +12 + +You may eat any clean bird, + +but these you + +may not eat: + +the eagle, the bearded vulture, the black +13 +vulture, +14 + +the red kite, the falcon, any kind of kite, + +15 + +c + +any kind of raven, + +the ostrich, +16 +kind of hawk, + + the screech owl, the gull, any + +the little owl, the great owl, the white + +17 +owl, +18 + +the desert owl, the osprey, the cormorant, + +the stork, any kind of heron, + +19 + +the hoopoe, or the bat. +20 + +All flying insects are unclean for you; they may +But you may eat any clean bird. + +21 +not be eaten. + +You must not cook a young goat in its mother’s +Giving Tithes +milk. +(Lev. 27:30–34 ; De. 26:1–15 ; Neh. 13:10–14) + +22 + +23 + +You must be sure to set aside a tenth of all the +produce brought forth each year from your +fields. +And you are to eat a tenth of your grain, +new wine, and oil, and the firstborn of your herds +and flocks, in the presence of the LORD your God +at the place He will choose as a dwelling for His +Name, so that you may learn to fear the LORD +24 +your God always. + +26 + +But if the distance is too great for you to carry +that with which the LORD your God has blessed +you, because the place where the LORD your God +25 +will choose to put His Name is too far away, +then exchange it for money, take the money in +your hand, and go to the place the LORD your +God will choose. +Then you may spend the +money on anything you desire: cattle, sheep, +wine, strong drink, or anything you wish. You are +to feast there in the presence of the LORD your +And do +God and rejoice with your household. +not neglect the Levite within your gates, since he +28 +has no portion or inheritance among you. + +27 + +29 + +At the end of every three years, bring a tenth +of all your produce for that year and lay it up +within your gates. +Then the Levite (because he +has no portion or inheritance among you), the +foreigner, the fatherless, and the widow within +your gates may come and eat and be satisfied. +And the LORD your God will bless you in all the +The Seventh Year (Ex. 23:10–13 ; Lev. 25:1–7) +work of your hands. + +15 + +2 + +At the end of every seven years you must +This is the manner of re- +cancel debts. +mission: Every creditor shall cancel what he has +loaned to his neighbor. He is not to collect any- +thing from his neighbor or brother, because the +3 +LORD’s time of release has been proclaimed. +You may collect something from a foreigner, but +you must forgive whatever your brother owes +4 +you. + +You are not to eat any carcass; you may give it +to the foreigner residing within your gates, and +he may eat it, or you may sell it to a foreigner. For +you are a holy people belonging to the LORD +your God. +a 4 +c 15 + +the daughter of the ostrich + +the daughter of the owl + +There will be no poor among you, however, be- +cause the LORD will surely bless you in the land +that the LORD your God is giving you to possess +if only you obey the LORD +as an inheritance, +your God and are careful to follow all these +b 7 + +the coney + +the hyrax + +5 + +The precise identification of some of the birds and animals in this chapter is uncertain. +Literally + + or + +Or + + or + + 6 + +When +commandments I am giving you today. +the LORD your God blesses you as He has prom- +ised, you will lend to many nations but borrow +from none; you will rule over many nations but +Generosity in Lending and Giving +be ruled by none. +(Matthew 6:1–4) + +7 + + a + +If there is a poor man among your brothers +within any of the gates in the land that the LORD +your God is giving you, then you are not to + your heart or shut your hand from your +harden +Instead, you are to open your +poor brother. +hand to him and freely loan him whatever he +9 +needs. + +8 + +Be careful not to harbor this wicked thought in +your heart: “The seventh year, the year of re- +lease, is near,” so that you look upon your poor +brother begrudgingly and give him nothing. He +will cry out to the LORD against you, and you will +10 +be guilty of sin. + +11 + +Give generously to him, and do not let your +heart be grieved when you do so. And because of +this the LORD your God will bless you in all your +work and in everything to which you put your +For there will never cease to be poor in +hand. +the land; that is why I am commanding you to +open wide your hand to your brother and to the +Hebrew Servants (Exodus 21:1–11) +poor and needy in your land. +12 + + b + +If a fellow Hebrew, a man or a woman, is sold +to you and serves you six years, then in the sev- +13 +enth year you must set him free. + +14 + +And when you release him, do not send him +You are to furnish him +away empty-handed. +liberally from your flock, your threshing floor, +15 +and your winepress. You shall give to him as the +Remember +LORD your God has blessed you. +that you were slaves in the land of Egypt, and the +LORD your God redeemed you; that is why I am +16 +giving you this command today. + +17 + +But if your servant says to you, ‘I do not want +to leave you,’ because he loves you and your +then take +household and is well off with you, +an awl and pierce it through his ear into the door, +and he will become your servant for life. And +18 +treat your maidservant the same way. + +Do not regard it as a hardship to set your serv- +make courageous +a 7 +ant free, because his six years of service were + +make strong + +sells himself + +b 12 + +16 + +Deuteronomy 16:8 | 179 + +worth twice the wages of a hired hand. And the +Firstborn Animals (Exodus 13:1–16) +LORD your God will bless you in all you do. +19 + +20 + +You must set apart to the LORD your God every +firstborn male produced by your herds and +flocks. You are not to put the firstborn of your +oxen to work, nor are you to shear the firstborn +Each year you and your house- +of your flock. +hold are to eat it before the LORD your God in the +21 +place the LORD will choose. + +But if an animal has a defect, is lame or blind, +22 +or has any serious flaw, you must not sacrifice it +to the LORD your God. +Eat it within your gates; +both the ceremonially unclean and clean may eat +But you +it as they would a gazelle or a deer. +must not eat the blood; pour it on the ground like +Passover and the Feast of Unleavened Bread +water. +(Ex. 12:14–28 ; Lev. 23:4–8 ; Num. 28:16–25) + +23 + + c + +Observe the month of Abib + and cele- +brate the Passover to the LORD your +God, because in the month of Abib the LORD your +2 +God brought you out of Egypt by night. + +You are to offer to the LORD your God the Pass- +over sacrifice from the herd or flock in the place +3 +the LORD will choose as a dwelling for His Name. +You must not eat leavened bread with it; for +seven days you are to eat with it unleavened +bread, the bread of affliction, because you left the +land of Egypt in haste—so that you may remem- +ber for the rest of your life the day you left the +4 +land of Egypt. + +No leaven is to be found in all your land for +seven days, and none of the meat you sacrifice in +the evening of the first day shall remain until +5 +morning. + +6 + +You are not to sacrifice the Passover animal in +any of the towns that the LORD your God is giving +you. +You must only offer the Passover sacrifice +at the place the LORD your God will choose as a +dwelling for His Name. Do this in the evening as +the sun sets, at the same time you departed from +Egypt. +And you shall roast it and eat it in the +place the LORD your God will choose, and in the +8 +morning you shall return to your tents. + +7 + +For six days you must eat unleavened bread, +and on the seventh day you shall hold a solemn +assembly to the LORD your God, and you must +not do any work. + +c 1 Abib + +Or + + or + +Or + + was the first month of the ancient Hebrew lu- + +nar calendar, usually occurring within the months of March and April; twice in this verse. + + 180 | Deuteronomy 16:9 + +The Feast of Weeks (Numbers 28:26–31) + +20 + +9 + + a + +You are to count off seven weeks from the time +10 +you first put the sickle to the standing grain. +And you shall celebrate the Feast of Weeks + to +the LORD your God with a freewill offering that +11 +you give in proportion to how the LORD your +and you shall rejoice be- +God has blessed you, +fore the LORD your God in the place He will +choose as a dwelling for His Name—you, your +sons and daughters, your menservants and +maidservants, and the Levite within your gates, +as well as the foreigner, the fatherless, and the +12 +widows among you. + +Remember that you were slaves in Egypt, and +The Feast of Tabernacles (Numbers 29:12–40) +carefully follow these statutes. +13 + + b + +You are to celebrate the Feast of Tabernacles +for seven days after you have gathered the pro- +14 +duce of your threshing floor and your winepress. +And you shall rejoice in your feast—you, your +sons and daughters, your menservants and +maidservants, and the Levite, as well as the for- +eigner, the fatherless, and the widows among +15 +you. + +For seven days you shall celebrate a feast to +the LORD your God in the place He will choose, +because the LORD your God will bless you in all +your produce and in all the work of your hands, +16 +so that your joy will be complete. + +c + +d + +17 + +Three times a year all your men are to appear +before the LORD your God in the place He will +e + the +choose: at the Feast of Unleavened Bread, +Feast of Weeks, + and the Feast of Tabernacles. +No one should appear before the LORD empty- +Everyone must appear with a gift as +handed. +he is able, according to the blessing the LORD +Judges and Justice +your God has given you. +18 + +You are to appoint judges and officials for your +tribes in every town that the LORD your God is +giving you. They are to judge the people with +19 +righteous judgment. + +Do not deny justice or show partiality. Do not +accept a bribe, for a bribe blinds the eyes of the +a 10 +wise and twists the words of the righteous. + +b 13 + +Booths + +Pursue justice, and justice alone, so that you +may live, and you may possess the land that the +Forbidden Forms of Worship +LORD your God is giving you. +21 + +Do not set up any wooden Asherah pole next +22 +to the altar you will build for the LORD your God, +and do not set up for yourselves a sacred pillar, + +Detestable Sacrifices +which the LORD your God hates. + +17 + +You shall not sacrifice to the LORD your +God an ox or a sheep with any defect or +serious flaw, for that is detestable to the LORD +Purge the Idolater +your God. +2 + +3 + +If a man or woman among you in one of the +towns that the LORD your God gives you is found +doing evil in the sight of the LORD your God by +and going to wor- +transgressing His covenant +ship other gods, bowing down to them or to the +sun or moon or any of the host of heaven—which +and if it is reported and you +I have forbidden— +hear about it, you must investigate it thoroughly. + +4 + +5 + +If the report is true and such an abomination has +you must bring out to your +happened in Israel, +gates the man or woman who has done this evil +6 +thing, and you must stone that person to death. +On the testimony of two or three witnesses a +man shall be put to death, but he shall not be ex- +ecuted on the testimony of a lone witness. +The +hands of the witnesses shall be the first in putting +him to death, and after that, the hands of all the +people. So you must purge the evil from among +Courts of Law +you. +8 + +7 + +f + +If a case is too difficult for you to judge, whether +the controversy within your gates is regarding +bloodshed, lawsuits, or assaults, you must go up +to the place the LORD your God will choose. +You +are to go to the Levitical priests and to the judge +who presides at that time. Inquire of them, and +10 +they will give you a verdict in the case. + +9 + +You must abide by the verdict they give you at +the place the LORD will choose. Be careful to do +everything they instruct you, +according to the + +Shelters + +c 16 + +11 + +d 16 + +That is, Shavuot; see footnotes for v. 16. + +day period after the Passover during which no leaven may be eaten; see Exodus 12:14-20. +e 16 +spring feast of pilgrimage to Jerusalem; it is also known as +Feast of Shelters +Acts 2:1). + +That is, the seven- +the Feast of Pentecost +That is, Shavuot, the late +the +the Feast of Booths + (see Ex. 23:16) or + (see +f 7 +That is, Sukkot, the autumn feast of pilgrimage to Jerusalem; also translated as + (see Exodus 23:16 and 34:22). + and originally called + + or +Cited in 1 Cor. 5:13 + +; see footnotes for v. 16. + +the Feast of Ingathering + +the Feast of Harvest + + or + +Or + + terms of law they give and the verdict they pro- +claim. Do not turn aside to the right or to the left +12 +from the decision they declare to you. + +13 + +But the man who acts presumptuously, refus- +ing to listen either to the priest who stands there +to serve the LORD your God, or to the judge, must +be put to death. You must purge the evil from Is- +rael. +Then all the people will hear and be +Guidelines for a King (1 Samuel 8:1–9) +afraid, and will no longer behave arrogantly. +14 + +15 + +When you enter the land that the LORD your +God is giving you and have taken possession of it +and settled in it, and you say, “Let us set a king +over us like all the nations around us,” +you are +to appoint over yourselves the king whom the +LORD your God shall choose. Appoint a king from +among your brothers; you are not to set over +yourselves a foreigner who is not one of your +16 +brothers. + +But the king must not acquire many horses for +himself or send the people back to Egypt to ac- +quire more horses, for the LORD has said, ‘You +are never to go back that way again.’ +He must +not take many wives for himself, lest his heart go +astray. He must not accumulate for himself large +18 +amounts of silver and gold. + +17 + +19 + +When he is seated on his royal throne, he must +write for himself a copy of this instruction on a +scroll in the presence of the Levitical priests. +It +is to remain with him, and he is to read from it all +the days of his life, so that he may learn to fear +the LORD his God by carefully observing all the +20 +words of this instruction and these statutes. +Then his heart will not be exalted above his +countrymen, and he will not turn aside from the +commandment, to the right or to the left, in order +that he and his sons may reign many years over +Provision for Priests and Levites (1 Cor. 9) +his kingdom in Israel. + +18 + +The Levitical priests—indeed the whole +tribe of Levi—shall have no portion or +inheritance with Israel. They are to eat the food +2 +offerings to the LORD; that is their inheritance. +Although they have no inheritance among their +brothers, the LORD is their inheritance, as He +3 +promised them. + + Deuteronomy 18:20 | 181 + +4 + +5 + +jowls, and the stomach. +You are to give them the +firstfruits of your grain, new wine, and oil, and +the first wool sheared from your flock. +For the +LORD your God has chosen Levi and his sons out +of all your tribes to stand and minister in His +6 +name for all time. + +8 + +7 + +Now if a Levite moves from any town of resi- +dence throughout Israel and comes in all ear- +nestness to the place the LORD will choose, +then +he shall serve in the name of the LORD his God +like all his fellow Levites who stand there before +the LORD. +They shall eat equal portions, even +though he has received money from the sale of +Sorcery Forbidden (Acts 8:9–25) +his father’s estate. +9 + +a + +10 + +When you enter the land that the LORD your +God is giving you, do not imitate the detestable +ways of the nations there. +Let no one be found +among you who sacrifices his son or daughter +in the fire, + practices divination or conjury, inter- +casts spells, +prets omens, practices sorcery, +12 +consults a medium or spiritist, or inquires of +the dead. +For whoever does these things is +detestable to the LORD. And because of these de- +testable things, the LORD your God is driving out +13 +the nations before you. + +11 + +14 + +You must be blameless before the LORD your +Though these nations, which you will dis- +God. +possess, listen to conjurers and diviners, the +A Prophet Like Moses (Acts 3:11–26) +LORD your God has not permitted you to do so. +15 + + c + +b + +16 + +The LORD your God will raise up for you a +prophet like me from among your brothers. You +This is what you asked of +must listen to him. + on the day of the +the LORD your God at Horeb +assembly, when you said, “Let us not hear the +voice of the LORD our God or see this great fire +17 +anymore, so that we will not die!” + +18 + +19 + +Then the LORD said to me, “They have spoken +well. +I will raise up for them a prophet like you +from among their brothers. I will put My words +in his mouth, and he will tell them everything I +command him. +And I will hold accountable an- +d +yone who does not listen to My words that the +prophet speaks in My name. +But if any +prophet dares to speak a message in My name +that I have not commanded him to speak, or to +speak in the name of other gods, that prophet +c 16 +must be put to death.” + +b 15 + +20 + +This shall be the priests’ share from the people +who offer a sacrifice, whether a bull or a sheep: +a 10 +the priests are to be given the shoulder, the + +makes his son or his daughter pass through the fire + +d 19 + +Literally + +Cited in Acts 3:22 + +That is, Mount Sinai, or + +possibly a mountain in the range containing Mount Sinai + +See Acts 3:23. + + 182 | Deuteronomy 18:21 + +21 + +You may ask in your heart, “How can we rec- +22 +ognize a message that the LORD has not spoken?” +When a prophet speaks in the name of the +LORD and the message does not come to pass or +come true, that is a message the LORD has not +spoken. The prophet has spoken presumptu- +Cities of Refuge +ously. Do not be afraid of him. +(Num. 35:9–34 ; De. 4:41–43 ; Josh. 20:1–9) + +19 + +When the LORD your God has cut off the +nations whose land He is giving you, and +2 +when you have driven them out and settled in +their cities and houses, +then you are to set apart +for yourselves three cities within the land that + a +You +the LORD your God is giving you to possess. +are to build roads for yourselves + and divide +into three regions the land that the LORD your +God is giving you as an inheritance, so that any +4 +manslayer can flee to these cities. + +3 + +5 + +Now this + +is the situation regarding the +manslayer who flees to one of these cities to save +his life, having killed his neighbor accidentally, +If he goes into +without intending to harm him: +the forest with his neighbor to cut timber and +swings his axe to chop down a tree, but the blade +flies off the handle and strikes and kills his neigh- +bor, he may flee to one of these cities to save his +6 +life. + +7 + +Otherwise, the avenger of blood might pursue +the manslayer in a rage, overtake him if the dis- +tance is great, and strike him dead though he did +not deserve to die, since he did not intend any +This is why I am commanding you to set +harm. +8 +apart for yourselves three cities. + +9 + +And if the LORD your God enlarges your terri- +tory, as He swore to your fathers, and gives you +and if you care- +all the land He promised them, +fully keep all these commandments I am giving +you today, loving the LORD your God and walk- +ing in His ways at all times, then you are to add +10 +three more cities to these three. + +Thus innocent blood will not be shed in the +land that the LORD your God is giving you as an +inheritance, so that you will not be guilty of +11 +bloodshed. + +12 + +If, however, a man hates his neighbor and lies +in wait, attacks him and kills him, and then flees +to one of these cities, +the elders of his city must +a 3 +d 21 + +You are to survey the way + +b 15 + +Or + +Cited in Matthew 5:38 + +13 + +send for him, bring him back, and hand him over +You must show +to the avenger of blood to die. +him no pity. You are to purge from Israel the guilt +of shedding innocent blood, that it may go well +14 +with you. + +You must not move your neighbor’s boundary +marker, which was set up by your ancestors to +mark the inheritance you shall receive in the land +The Testimony of Two or Three Witnesses +that the LORD your God is giving you to possess. +(Matthew 18:15–20) + +15 + +A lone witness is not sufficient to establish any +wrongdoing or sin against a man, regardless of +what offense he may have committed. A matter +must be established by the testimony of two or +16 +three witnesses. + +b + +17 + +If a false witness testifies against someone, ac- +both parties to the +cusing him of a crime, +dispute must stand in the presence of the LORD, +18 +before the priests and judges who are in office at +The judges shall investigate thor- +that time. +oughly, and if the witness is proven to be a liar +who has falsely accused his brother, +you must +c +do to him as he intended to do to his brother. So +20 +you must purge the evil from among you. + +19 + +21 + +Then the rest of the people will hear and be +afraid, and they will never again do anything so +d +evil among you. +You must show no pity: life for +life, eye for eye, tooth for tooth, + hand for hand, +Laws of Warfare +and foot for foot. + +20 + +2 + +When you go out to war against your en- +emies and see horses, chariots, and an +army larger than yours, do not be afraid of them; +for the LORD your God, who brought you out of +When you are +the land of Egypt, is with you. +3 +about to go into battle, the priest is to come for- +ward and address the army, +saying to them, +“Hear, O Israel, today you are going into battle +with your enemies. Do not be fainthearted or +afraid; do not be alarmed or terrified because of +For the LORD your God goes with you to +them. +fight for you against your enemies, to give you +5 +the victory.” + +4 + +Furthermore, the officers are to address the +army, saying, “Has any man built a new house +and not dedicated it? Let him return home, or he +may die in battle and another man dedicate it. +c 19 + +Cited in Matthew 18:16 and 2 Corinthians 13:1 + +Cited in 1 Corinthians 5:13 + + 6 + +Atonement for an Unsolved Murder + + Deuteronomy 21:15 | 183 + +Has any man planted a vineyard and not begun +to enjoy its fruit? Let him return home, or he may +die in battle and another man enjoy its fruit. +Has +any man become pledged to a woman and not +married her? Let him return home, or he may die +8 +in battle and another man marry her.” + +7 + +Then the officers shall speak further to the +army, saying, “Is any man afraid or fainthearted? +Let him return home, so that the hearts of his +9 +brothers will not melt like his own.” + +When the officers have finished addressing the +10 +army, they are to appoint commanders to lead it. + +11 + +When you approach a city to fight against it, +If they ac- +you are to make an offer of peace. +cept your offer of peace and open their gates, all +the people there will become forced laborers to +12 +serve you. + +14 + +But if they refuse to make peace with you and +13 +wage war against you, lay siege to that city. +When the LORD your God has delivered it into +your hand, you must put every male to the +sword. +But the women, children, livestock, and +whatever else is in the city—all its spoil—you +may take as plunder, and you shall use the spoil +of your enemies that the LORD your God gives +This is how you are to treat all the cities +you. +that are far away from you and do not belong to +16 +the nations nearby. + +15 + + a + +However, in the cities of the nations that the +LORD your God is giving you as an inheritance, +17 +you must not leave alive anything that breathes. +For you must devote them to complete de- +struction +—the Hittites, Amorites, Canaanites, +Perizzites, Hivites, and Jebusites—as the LORD +so that they +your God has commanded you, +cannot teach you to do all the detestable things +they do for their gods, and so cause you to sin +19 +against the LORD your God. + +18 + +When you lay siege to a city for an extended +time while fighting against it to capture it, you +must not destroy its trees by putting an axe to +them, because you can eat their fruit. You must +not cut them down. Are the trees of the field hu- +But you +man, that you should besiege them? +may destroy the trees that you know do not pro- +duce fruit. Use them to build siege works against +the city that is waging war against you, until it +falls. +cherem +a 17 + +20 + +21 + +2 + +If one is found slain, lying in a field in the +land that the LORD your God is giving +you to possess, and it is not known who killed +your elders and judges must come out and +him, +measure the distance from the victim to the +3 +neighboring cities. + +4 + +Then the elders of the city nearest the victim +shall take a heifer that has never been yoked or +used for work, +bring the heifer to a valley with +running water that has not been plowed or sown, +5 +and break its neck there by the stream. + +6 + +And the priests, the sons of Levi, shall come for- +ward, for the LORD your God has chosen them to +serve Him and pronounce blessings in His name +and to give a ruling in every dispute and case of +assault. +Then all the elders of the city nearest +the victim shall wash their hands by the stream +7 +over the heifer whose neck has been broken, +and they shall declare, “Our hands did not shed +Accept this +this blood, nor did our eyes see it. +atonement, O LORD, for Your people Israel whom +You have redeemed, and do not hold the shed- +ding of innocent blood against them.” + +9 + +8 + +And the bloodshed will be atoned for. +So you +shall purge from among you the guilt of shedding +innocent blood, since you have done what is right +Marrying a Captive Woman +in the eyes of the LORD. +10 + +11 + +When you go to war against your enemies and +the LORD your God delivers them into your hand +and you take them captive, +if you see a beauti- +ful woman among them, and you desire her and +want to take her as your wife, +then you shall +bring her into your house. She must shave her +head, trim her nails, +and put aside the clothing +of her captivity. + +12 + +13 + +14 + +After she has lived in your house a full month and +mourned her father and mother, you may have +relations with her and be her husband, and she +And if you are not pleased +shall be your wife. +with her, you are to let her go wherever she +wishes. But you must not sell her for money or +treat her as a slave, since you have dishonored +Inheritance Rights of the Firstborn +her. +15 + +If a man has two wives, one beloved and the +other unloved, and both bear him sons, but the + +Forms of the Hebrew + + refer to the giving over of things or persons to the LORD, either by destroying + +them or by giving them as an offering. + + 184 | Deuteronomy 21:16 + +16 + +6 + +when that +unloved wife has the firstborn son, +man assigns his inheritance to his sons he must +not appoint the son of the beloved wife as the +17 +firstborn over the son of the unloved wife. + +Instead, he must acknowledge the firstborn, +the son of his unloved wife, by giving him a dou- +ble portion of all that he has. For that son is the +firstfruits of his father’s strength; the right of the +A Rebellious Son (Luke 15:11–32) +firstborn belongs to him. +18 + +19 + +If a man has a stubborn and rebellious son who +does not obey his father and mother and does not +his father and +listen to them when disciplined, +mother are to lay hold of him and bring him to +20 +the elders of his city, to the gate of his hometown, +and say to the elders, “This son of ours is stub- +born and rebellious; he does not obey us. He is a +21 +glutton and a drunkard.” + +a + +Then all the men of his city will stone him to +death. So you must purge the evil from among +Cursed Is Anyone Hung on a Tree +you, + and all Israel will hear and be afraid. +22 + +b + +23 + +If a man has committed a sin worthy of death, +and he is executed, and you hang his body on a +tree, +you must not leave the body on the tree +overnight, but you must be sure to bury him +that day, because anyone who is hung on a tree +is under God’s curse. + You must not defile the +land that the LORD your God is giving you as an +Various Laws +inheritance. + +c + +22 + + d + +If you see your brother’s ox or sheep +2 +straying, you must not ignore it; + be sure +If your brother does +to return it to your brother. +not live near you, or if you do not know who he +is, you are to take the animal home to remain +with you until your brother comes seeking it; +And you shall do +then you can return it to him. +the same for his donkey, his cloak, or anything +your brother has lost and you have found. You +4 +must not ignore it. + +3 + +If you see your brother’s donkey or ox fallen on +the road, you must not ignore it; you must help +5 +him lift it up. + +7 + +If you come across a bird’s nest with chicks or +eggs, either in a tree or on the ground along the +road, and the mother is sitting on the chicks or +eggs, you must not take the mother along with +You may take the young, but be sure +the young. +to let the mother go, so that it may be well with +8 +you and that you may prolong your days. + +If you build a new house, you are to construct a +railing around your roof, so that you do not bring +9 +bloodguilt on your house if someone falls from it. + + e + +Do not plant your vineyard with two types +of seed; if you do, the entire harvest will be +—both the crop you plant and the fruit of +defiled +10 +your vineyard. + +Do not plow with an ox and a donkey yoked + +11 +together. + +Do not wear clothes of wool and linen woven + +12 +together. + +You are to make tassels on the four corners of + +Marriage Violations +the cloak you wear. +13 + +14 + +Suppose a man marries a woman, has relations +and he then +with her, and comes to hate her, +accuses her of shameful conduct and gives her a +bad name, saying, “I married this woman and had +relations with her, but I discovered she was not +15 +a virgin.” + +17 + +16 + +Then the young woman’s father and mother +shall bring the proof of her virginity to the city +and say to the elders, “I gave +elders at the gate +my daughter in marriage to this man, but he has +And now he has accused her +come to hate her. +of shameful conduct, saying, ‘I discovered that +your daughter was not a virgin.’ But here is the +proof of her virginity.” And they shall spread out +18 +the cloth before the city elders. + +19 + +Then the elders of that city shall take the man + f +They are also to fine him a +and punish him. +hundred shekels of silver + and give them to the +young woman’s father, because this man has +given a virgin of Israel a bad name. And she shall +remain his wife; he must not divorce her as long +20 +as he lives. + +A woman must not wear men’s clothing, and a +man must not wear women’s clothing, for who- +ever does these things is detestable to the LORD +a 21 +your God. +is hanged is under God’s curse +f 19 100 shekels + +Cited in 1 Corinthians 5:13 + +b 22 + +d 1 + +Or +; cited in Gal. 3:13 + +Or + +impale his body on a pole + +21 + +If, however, this accusation is true, and no +proof of the young woman’s virginity can be +she shall be brought to the door of her +found, +anyone who +c 23 +father’s house, and there the men of her city will +will be forfeited to the sanctuary + +e 9 + +you must not hide yourself + +; similarly in verse 23 +Or + +LXX; Hebrew + + is approximately 2.5 pounds or 1.1 kilograms of silver. + + Deuteronomy 23:21 | 185 + +stone her to death. For she has committed an out- +rage in Israel by being promiscuous in her fa- +ther’s house. So you must purge the evil from +22 +among you. + +a + +6 + +the LORD your God turned the curse into a bless- +ing for you, because the LORD your God loves +You are not to seek peace or prosperity +you. +7 +from them as long as you live. + +If a man is found lying with another man’s +wife, both the man who slept with her and the +woman must die. You must purge the evil from +23 +Israel. + +If there is a virgin pledged in marriage to a +24 +man, and another man encounters her in the city +you must take both of +and sleeps with her, +them out to the gate of that city and stone them +to death—the young woman because she did not +cry out in the city, and the man because he has +violated his neighbor’s wife. So you must purge +25 +the evil from among you. + +26 + +But if the man encounters a betrothed woman +in the open country, and he overpowers her and +lies with her, only the man who has done this +Do nothing to the young woman, be- +must die. +cause she has committed no sin worthy of death. +This case is just like one in which a man attacks +When he found +his neighbor and murders him. +her in the field, the betrothed woman cried out, +28 +but there was no one to save her. + +27 + +29 + +If a man encounters a virgin who is not +pledged in marriage, and he seizes her and lies +with her, and they are discovered, +then the man +who lay with her must pay the young woman’s +father fifty shekels of silver, + and she must be- +come his wife because he has violated her. He +30 +must not divorce her as long as he lives. + +b + +c + +A man is not to marry his father’s wife, so that + +Exclusion from the Congregation +he will not dishonor his father’s marriage bed. + +23 + +2 + +No man with crushed or severed genitals +may enter the assembly of the LORD. + +No one of illegitimate birth may enter the +assembly of the LORD, nor may any of his +3 +descendants, even to the tenth generation. + +4 + +No Ammonite or Moabite or any of their de- +scendants may enter the assembly of the LORD, +For they did not +even to the tenth generation. +meet you with food and water on your way out of +5 +Egypt, and they hired Balaam son of Beor from +Pethor in Aram-naharaim +Yet the +a 21 +LORD your God would not listen to Balaam, and + + to curse you. + + d + +c 30 + +uncover his father’s skirt + +d 4 + +Here and in verse 24; cited in 1 Corinthians 5:13 + +8 + +Do not despise an Edomite, for he is your +brother. Do not despise an Egyptian, because you +The third gener- +lived as a foreigner in his land. +ation of children born to them may enter the as- +Uncleanness in the Camp (Leviticus 15:1–12) +sembly of the LORD. +9 + +10 + +When you are encamped against your enemies, +then you shall keep yourself from every wicked +If any man among you becomes unclean +thing. +11 +because of a nocturnal emission, he must leave +the camp and stay outside. +When evening ap- +proaches, he must wash with water, and when +12 +the sun sets he may return to the camp. + +13 + +You must have a place outside the camp to go +And you must have a dig- +and relieve yourself. +ging tool in your equipment so that when you re- +lieve yourself you can dig a hole and cover up +14 +your excrement. + +For the LORD your God walks throughout your +camp to protect you and deliver your enemies to +you. Your camp must be holy, lest He see any- +thing unclean among you and turn away from +you. Miscellaneous Laws +15 + +16 + +Do not return a slave to his master if he has +Let him live among you +taken refuge with you. +wherever he chooses, in the town of his pleasing. +17 +Do not oppress him. + +18 + +e + +No daughter or son of Israel is to be a shrine +You must not bring the wages of a +prostitute. + into the +prostitute, whether female or male, +house of the LORD your God to fulfill any vow, +because both are detestable to the LORD your +19 +God. + +20 + +Do not charge your brother interest on money, +You may charge +food, or any other type of loan. +a foreigner interest, but not your brother, so that +the LORD your God may bless you in everything +to which you put your hand in the land that you +21 +are entering to possess. + +silver. +the region between the Euphrates and Balih Rivers in northwestern Mesopotamia. + +That is, Mesopotamia; + +Or + +b 29 50 shekels + +If you make a vow to the LORD your God, do +not be slow to keep it, because He will surely + +Aram-naharaim + +Aram of the two rivers + + is approximately 1.26 pounds or 569.8 grams of + +or a dog + +, likely + +e 18 + means + +Hebrew + + 186 | Deuteronomy 23:22 + +22 +require it of you, and you will be guilty of sin. +23 +But if you refrain from making a vow, you will +Be careful to follow +not be guilty of sin. +through on what comes from your lips, because +you have freely vowed to the LORD your God +24 +with your own mouth. + +When you enter your neighbor’s vineyard, you +may eat your fill of grapes, but you must not put +25 +any in your basket. + +When you enter your neighbor’s grainfield, +you may pluck the heads of grain with your hand, +but you must not put a sickle to your neighbor’s +Marriage and Divorce Laws +grain. +(Matthew 5:31–32 ; Luke 16:18) + +24 + +If a man marries a woman, but she be- +comes displeasing to him because he +finds some indecency in her, he may write her a + hand it to her, and send +certificate of divorce, +2 +her away from his house. + +a + +3 + +4 + +If, after leaving his house, she goes and becomes +another man’s wife, +and the second man hates +her, writes her a certificate of divorce, hands it to +her, and sends her away from his house, or if he +dies, +then the husband who divorced her first +may not remarry her after she has been defiled, +for that is an abomination to the LORD. You must +not bring sin upon the land that the LORD your +5 +God is giving you as an inheritance. + +If a man is newly married, he must not be sent +to war or be pressed into any duty. For one year +he is free to stay at home and bring joy to the wife +Additional Laws +he has married. +6 + +Do not take a pair of millstones or even an up- +per millstone as security for a debt, because that +7 +would be taking one’s livelihood as security. + +If a man is caught kidnapping one of his Israelite +brothers, whether he treats him as a slave or sells +b +him, the kidnapper must die. So you must purge +8 +the evil from among you. + +c + +9 + +In cases of infectious skin diseases, + + be careful +to diligently follow everything the Levitical +priests instruct you. Be careful to do as I have +Remember what the LORD +commanded them. +your God did to Miriam on the journey after you +a 1 +came out of Egypt. + + b 7 + +leprosy +Cited in Matthew 5:31; see also Mark 10:4. + +10 + +11 + +12 + +When you lend anything to your neighbor, do +not enter his house to collect security. +You are +to stand outside while the man to whom you are +lending brings the security out to you. +If he is a +poor man, you must not go to sleep with the se- +curity in your possession; +be sure to return it +to him by sunset, so that he may sleep in his own +cloak and bless you, and this will be credited to +14 +you as righteousness before the LORD your God. + +13 + +15 + +Do not oppress a hired hand who is poor and +needy, whether he is a brother or a foreigner re- +You are to pay his +siding in one of your towns. +wages each day before sunset, because he is poor +and depends on them. Otherwise he may cry out +to the LORD against you, and you will be guilty of +16 +sin. + +d + +Fathers shall not be put to death for their chil- +dren, nor children for their fathers; each is to die +17 +for his own sin. + +18 + +Do not deny justice to the foreigner or the +fatherless, and do not take a widow’s cloak as +Remember that you were slaves in +security. +Egypt, and the LORD your God redeemed you +from that place. Therefore I am commanding you +19 +to do this. + +If you are harvesting in your field and forget a +sheaf there, do not go back to get it. It is to be left +for the foreigner, the fatherless, and the widow, +so that the LORD your God may bless you in all +20 +the work of your hands. + +When you beat the olives from your trees, you +must not go over the branches again. What re- +mains will be for the foreigner, the fatherless, +21 +and the widow. + +22 + +When you gather the grapes of your vineyard, +you must not go over the vines again. What re- +mains will be for the foreigner, the fatherless, +Remember that you were +and the widow. +slaves in the land of Egypt. Therefore I am com- +Fairness and Mercy +manding you to do this. + +25 + +If there is a dispute between men, +they are to go to court to be judged, so +that the innocent may be acquitted and the guilty +2 +condemned. + +If the guilty man deserves to be beaten, the +judge shall have him lie down and be flogged in + +tzaraath + +c 8 + +d 16 + +ditionally translated as +2 Chronicles 25:4 + +, were used for various skin diseases; see Leviticus 13. + +Cited in 2 Kings 14:6 and + +Cited in 1 Corinthians 5:13 + +Forms of the Hebrew + +, tra- + + 3 + +his presence with the number of lashes his crime +He may receive no more than forty +warrants. +lashes, lest your brother be beaten any more +4 +than that and be degraded in your sight. + +a + +Do not muzzle an ox while it is treading out the + +Widowhood and Marriage +grain. +5 + +When brothers dwell together and one of them +dies without a son, the widow must not marry +outside the family. Her husband’s brother is to +6 +take her as his wife and fulfill the duty of a +brother-in-law for her. +The first son she bears +will carry on the name of the dead brother, so +7 +that his name will not be blotted out from Israel. + +b + +But if the man does not want to marry his +brother’s widow, she is to go to the elders at the +city gate and say, “My husband’s brother refuses +to preserve his brother’s name in Israel. He is not +willing to perform the duty of a brother-in-law +8 +for me.” + +9 + +Then the elders of his city shall summon him +and speak with him. If he persists and says, “I do +not want to marry her,” +his brother’s widow +shall go up to him in the presence of the elders, +remove his sandal, spit in his face, and declare, +“This is what is done to the man who will not +maintain his brother’s line.” +And his family +name in Israel will be called “The House of the +11 +Unsandaled.” + +10 + +12 + +If two men are fighting, and the wife of one +comes to rescue her husband from the one strik- +ing him, and she reaches out her hand and grabs +his genitals, +you are to cut off her hand. You +Standard Weights and Measures +must show her no pity. +(Proverbs 11:1–3 ; Ezekiel 45:10–12) + +13 + +14 + +You shall not have two differing weights in +your bag, one heavy and one light. +You shall +not have two differing measures in your house, +15 +one large and one small. + +You must maintain accurate and honest +weights and measures, so that you may live long +16 +in the land that the LORD your God is giving you. +For everyone who behaves dishonestly in re- +gard to these things is detestable to the LORD +Revenge on the Amalekites +your God. +17 + +18 + +Remember what the Amalekites did to you +how they met you + +a 4 +along your way from Egypt, + +b 5 + + Deuteronomy 26:12 | 187 + +on your journey when you were tired and weary, +and they attacked all your stragglers; they had no +19 +fear of God. + +When the LORD your God gives you rest from +the enemies around you in the land that He is giv- +ing you to possess as an inheritance, you are to +blot out the memory of Amalek from under +Offering Firstfruits and Tithes +heaven. Do not forget! +(Lev. 27:30–34 ; De. 14:22–29 ; Neh. 13:10–14) + +26 + +2 + +When you enter the land that the LORD +your God is giving you as an inheritance, +you +and you take possession of it and settle in it, +are to take some of the firstfruits of all your pro- +duce from the soil of the land that the LORD your +God is giving you and put them in a basket. Then +go to the place the LORD your God will choose as +to the priest who is +a dwelling for His Name, +serving at that time, and say to him, “I declare to- +day to the LORD your God that I have entered the +land that the LORD swore to our fathers to give +4 +us.” + +3 + +7 + +5 + +6 + +Then the priest shall take the basket from your +hands and place it before the altar of the LORD +and you are to declare before the +your God, +LORD your God, “My father was a wandering +Aramean, and he went down to Egypt few in +number and lived there and became a great na- +But the Egyptians +tion, mighty and numerous. +mistreated us and afflicted us, putting us to hard +So we called out to the LORD, the God of +labor. +our fathers; and the LORD heard our voice and +Then the +saw our affliction, toil, and oppression. +LORD brought us out of Egypt with a mighty +hand and an outstretched arm, with great terror, +And He brought us to this +signs, and wonders. +10 +place and gave us this land, a land flowing with +And now, behold, I have +milk and honey. +brought the firstfruits of the land that You, O +LORD, have given me.” + +9 + +8 + +11 + +Then you are to place the basket before the LORD +So you +your God and bow down before Him. +shall rejoice—you, the Levite, and the foreigner +dwelling among you—in all the good things the +LORD your God has given to you and your house- +12 +hold. + +When you have finished laying aside a tenth of +all your produce in the third year, the year of the +tithe, you are to give it to the Levite, the for- +eigner, the fatherless, and the widow, that they +may eat and be filled within your gates. + +Cited in 1 Corinthians 9:9 and 1 Timothy 5:18 + +Cited in Matthew 22:24, Mark 12:19, and Luke 20:28 + + 188 | Deuteronomy 26:13 + +13 + +14 + +Then you shall declare in the presence of the +LORD your God, “I have removed from my house +the sacred portion and have given it to the Levite, +the foreigner, the fatherless, and the widow, ac- +cording to all the commandments You have given +me. I have not transgressed or forgotten Your +I have not eaten any of the sa- +commandments. +cred portion while in mourning, or removed any +of it while unclean, or offered any of it for the +dead. I have obeyed the LORD my God; I have +Look +done everything You commanded me. +down from Your holy habitation, from heaven, +and bless Your people Israel and the land You +have given us as You swore to our fathers—a +Obey the LORD’s Commands +land flowing with milk and honey.” +16 + +15 + +The LORD your God commands you this day to +follow these statutes and ordinances. You must +be careful to follow them with all your heart and +17 +with all your soul. + +Today you have proclaimed that the LORD is +your God and that you will walk in His ways, keep +His statutes and commandments and ordi- +18 +nances, and listen to His voice. + +19 + +And today the LORD has proclaimed that you +are His people and treasured possession as He +promised, that you are to keep all His command- +that He will set you high in praise and +ments, +name and honor above all the nations He has +made, and that you will be a holy people to the +The Altar on Mount Ebal (Joshua 8:30–35) +LORD your God, as He has promised. + +27 + +Then Moses and the elders of Israel com- +manded the people: “Keep all the com- + +2 +mandments I am giving you today. + +3 + +And on the day you cross the Jordan into the +land that the LORD your God is giving you, set up +large stones and coat them with plaster. +Write +on them all the words of this law when you have +crossed over to enter the land that the LORD +your God is giving you, a land flowing with milk +and honey, just as the LORD, the God of your fa- +And when you have +thers, has promised you. +crossed the Jordan, you are to set up these stones +on Mount Ebal, as I am commanding you today, +5 +and you are to coat them with plaster. + +4 + +Moreover, you are to build there an altar to the +LORD your God, an altar of stones. You must not +uncovered his father’s skirt +a 20 +You shall build the +use any iron tool on them. + +6 + +Or + +7 + +altar of the LORD your God with uncut stones and +offer upon it burnt offerings to the LORD your +There you are to sacrifice your peace offer- +God. +ings, eating them and rejoicing in the presence of +the LORD your God. +And you shall write dis- +tinctly upon these stones all the words of this +9 +law.” + +8 + +10 + +Then Moses and the Levitical priests spoke +to all Israel: “Be silent, O Israel, and listen! +This day you have become the people of the +You shall therefore obey the +LORD your God. +voice of the LORD your God and follow His com- +Curses Pronounced from Ebal +mandments and statutes I am giving you today.” +11 +12 + +On that day Moses commanded the people: +“When you have crossed the Jordan, these +tribes shall stand on Mount Gerizim to bless the +people: Simeon, Levi, Judah, Issachar, Joseph, +And these tribes shall stand on +and Benjamin. +Mount Ebal to deliver the curse: Reuben, Gad, +14 +Asher, Zebulun, Dan, and Naphtali. + +13 + +Then the Levites shall proclaim in a loud voice +15 + +to every Israelite: + +‘Cursed is the man who makes a carved +idol or molten image—an abomination to +the LORD, the work of the hands of a crafts- +And let all the people say, ‘Amen!’ +man—and sets it up in secret.’ +16 + +‘Cursed is he who dishonors his father or +And let all the people say, ‘Amen!’ + +mother.’ +17 + +‘Cursed is he who moves his neighbor’s +And let all the people say, ‘Amen!’ + +boundary stone.’ +18 + +‘Cursed is he who lets a blind man wander +And let all the people say, ‘Amen!’ + +in the road.’ +19 + +‘Cursed is he who withholds justice from +And let all the people say, ‘Amen!’ +the foreigner, the fatherless, or the widow.’ +20 + + a + +‘Cursed is he who sleeps with his father’s +wife, for he has violated his father’s marriage +And let all the people say, ‘Amen!’ +bed.’ +21 + +‘Cursed is he who lies with any animal.’ + +And let all the people say, ‘Amen!’ + + 22 + +‘Cursed is he who sleeps with his sister, +the daughter of his father or the daughter of +And let all the people say, ‘Amen!’ +his mother.’ +23 + +‘Cursed is he who sleeps with his mother- +And let all the people say, ‘Amen!’ + +in-law.’ +24 + +‘Cursed is he who strikes down his neigh- +And let all the people say, ‘Amen!’ + +bor in secret.’ +25 + +‘Cursed is he who accepts a bribe to kill an +And let all the people say, ‘Amen!’ + +innocent person.’ +26 + + a + +‘Cursed is he who does not put the words +And let all the people say, ‘Amen!’ + +of this law into practice.’ + +The Blessings of Obedience (Lev. 25:18–22) + +28 + +“Now if you faithfully obey the voice of +the LORD your God and are careful to fol- +low all His commandments I am giving you to- +2 +day, the LORD your God will set you high above +And all these bless- +all the nations of the earth. +ings will come upon you and overtake you, if you +3 +will obey the voice of the LORD your God: + +4 + +You will be blessed in the city +and blessed in the country. + +The fruit of your womb will be blessed, +as well as the produce of your land + +and the offspring of your livestock— + +5 + +the calves of your herds +and the lambs of your flocks. + +Your basket and kneading bowl will be + +6 + +blessed. + +7 + +You will be blessed when you come in +and blessed when you go out. + +The LORD will cause the enemies who rise up +against you to be defeated before you. They will +march out against you in one direction but flee +8 +from you in seven. + +9 + +The LORD will decree a blessing on your barns +and on everything to which you put your hand; +the LORD your God will bless you in the land He +The LORD will establish you as His +is giving you. +holy people, just as He has sworn to you, if you +10 +keep the commandments of the LORD your God +a 26 +Then all the peoples of +and walk in His ways. + + Deuteronomy 28:23 | 189 + +the earth will see that you are called by the name +11 +of the LORD, and they will stand in awe of you. + +The LORD will make you prosper abundantly— +in the fruit of your womb, the offspring of your +livestock, and the produce of your land—in the +land that the LORD swore to your fathers to give +12 +you. + +The LORD will open the heavens, His abundant +storehouse, to send rain on your land in season +and to bless all the work of your hands. You will +13 +lend to many nations, but borrow from none. + +14 + +The LORD will make you the head and not the +tail; you will only move upward and never down- +ward, if you hear and carefully follow the com- +mandments of the LORD your God, which I am +Do not turn aside to the right +giving you today. +or to the left from any of the words I command +you today, and do not go after other gods to serve +The Curses of Disobedience +them. +(Leviticus 20:1–9 ; Leviticus 26:14–39) + +15 + +If, however, you do not obey the LORD your +God by carefully following all His command- +ments and statutes I am giving you today, all +these curses will come upon you and overtake +16 +you: + +17 + +You will be cursed in the city +and cursed in the country. + +18 + +19 + +Your basket and kneading bowl will be + +cursed. + +The fruit of your womb will be cursed, +as well as the produce of your land, + +the calves of your herds, + +and the lambs of your flocks. + +20 + +You will be cursed when you come in +and cursed when you go out. + +The LORD will send curses upon you, confu- +sion and reproof in all to which you put your +hand, until you are destroyed and quickly +b +perish because of the wickedness you have com- +21 +mitted in forsaking Him. + +22 + +The LORD will make the plague cling to you +until He has exterminated you from the land that +The LORD will +you are entering to possess. +c +strike you with wasting disease, with fever and +inflammation, with scorching heat and drought, +23 +and with blight and mildew; these will pursue +The sky over your head +you until you perish. +sword +will be bronze, and the earth beneath you iron. + +b 20 + +c 22 + +Me + +Cursed is every man who does not continue in all the words of this law + +LXX + +; cited Gal. 3:10 + +Heb. + +Or + + 190 | Deuteronomy 28:24 + +24 + +The LORD will turn the rain of your land into +dust and powder; it will descend on you from the +25 +sky until you are destroyed. + +26 + +The LORD will cause you to be defeated before +your enemies. You will march out against them +in one direction but flee from them in seven. You +will be an object of horror to all the kingdoms of +the earth. +Your corpses will be food for all the +birds of the air and beasts of the earth, with no +27 +one to scare them away. + +The LORD will afflict you with the boils of +Egypt, with tumors and scabs and itch from +28 +which you cannot be cured. + +29 + +The LORD will afflict you with madness, blind- +ness, and confusion of mind, +and at noon you +will grope about like a blind man in the darkness. +You will not prosper in your ways. Day after day +you will be oppressed and plundered, with no +30 +one to save you. + +31 + +You will be pledged in marriage to a woman, +but another man will violate her. You will build a +house but will not live in it. You will plant a vine- +yard but will not enjoy its fruit. +Your ox will be +slaughtered before your eyes, but you will not eat +any of it. Your donkey will be taken away and not +returned to you. Your flock will be given to your +32 +enemies, and no one will save you. + +33 + +Your sons and daughters will be given to an- +other nation, while your eyes grow weary look- +ing for them day after day, with no power in your +hand. +A people you do not know will eat the +produce of your land and of all your toil. All your +days you will be oppressed and crushed. +You +35 +will be driven mad by the sights you see. + +34 + +The LORD will afflict you with painful, incura- +ble boils on your knees and thighs, from the soles +36 +of your feet to the top of your head. + +The LORD will bring you and the king you ap- +point to a nation neither you nor your fathers +have known, and there you will worship other +gods—gods of wood and stone. +You will be- +come an object of horror, scorn, and ridicule +among all the nations to which the LORD will +38 +drive you. + +37 + +39 + +You will sow much seed in the field but harvest +little, because the locusts will consume it. +You +will plant and cultivate vineyards, but will nei- +ther drink the wine nor gather the grapes, be- +You will have olive +cause worms will eat them. +b 55 +the wife of his bosom +a 54 + +40 + +within all your cities + +41 + +trees throughout your territory but will never +anoint yourself with oil, because the olives will +You will father sons and daughters, +drop off. +but they will not remain yours, because they will +Swarms of locusts will con- +go into captivity. +43 +sume all your trees and the produce of your land. + +42 + +44 + +The foreigner living among you will rise higher +and higher above you, while you sink down +He will lend to you, but you +lower and lower. +will not lend to him. He will be the head, and you +45 +will be the tail. + +All these curses will come upon you. They will +pursue you and overtake you until you are de- +stroyed, since you did not obey the LORD your +God and keep the commandments and statutes +These curses will be a sign and a +He gave you. +47 +wonder upon you and your descendants forever. + +46 + +48 + +Because you did not serve the LORD your God +with joy and gladness of heart in all your abun- +dance, +you will serve your enemies the LORD +will send against you in famine, thirst, naked- +ness, and destitution. He will place an iron yoke +49 +on your neck until He has destroyed you. + +50 + +The LORD will bring a nation from afar, from +the ends of the earth, to swoop down upon you +like an eagle—a nation whose language you will +a ruthless nation with no +not understand, +51 +respect for the old and no pity for the young. +They will eat the offspring of your livestock +and the produce of your land until you are de- +stroyed. They will leave you no grain or new +wine or oil, no calves of your herds or lambs of +52 +your flocks, until they have caused you to perish. +They will besiege all the cities throughout your +land, until the high and fortified walls in which +you trust have fallen. They will besiege all your +cities throughout the land that the LORD your +53 +God has given you. + +Then you will eat the fruit of your womb, the +flesh of the sons and daughters whom the LORD +your God has given you, in the siege and distress +54 +that your enemy will inflict on you. + +a +The most gentle and refined man among you + +will begrudge his brother, the wife he embraces, +55 +and the rest of his children who have survived, +refusing to share with any of them the flesh of +his children he will eat because he has nothing +left in the siege and distress that your enemy will +inflict on you within all your gates. + +b + +Hebrew + +Or + +; similarly in verse 57 + + 56 + +The Covenant in Moab + + Deuteronomy 29:17 | 191 + + a + +57 + +The most gentle and refined woman among +you, so gentle and refined she would not venture +to set the sole of her foot on the ground, will be- +grudge the husband she embraces + and her son +the afterbirth that comes from +and daughter +between her legs and the children she bears, +because she will secretly eat them for lack of +anything else in the siege and distress that your +58 +enemy will inflict on you within your gates. + +If you are not careful to observe all the words +of this law which are written in this book, that +59 +you may fear this glorious and awesome name— +He will bring upon you +the LORD your God— +and your descendants extraordinary disasters, +severe and lasting plagues, and terrible and +He will afflict you again +chronic sicknesses. +with all the diseases you dreaded in Egypt, and +61 +they will cling to you. + +60 + +62 + +The LORD will also bring upon you every sick- +ness and plague not recorded in this Book of the +You who were as +Law, until you are destroyed. +numerous as the stars in the sky will be left few +in number, because you would not obey the voice +63 +of the LORD your God. + +Just as it pleased the LORD to make you pros- +per and multiply, so also it will please Him to +annihilate you and destroy you. And you will +be uprooted from the land you are entering to +64 +possess. + +65 + +Then the LORD will scatter you among all the +nations, from one end of the earth to the other, +and there you will worship other gods, gods of +wood and stone, which neither you nor your fa- +Among those nations you +thers have known. +will find no repose, not even a resting place for +the sole of your foot. There the LORD will give +you a trembling heart, failing eyes, and a despair- +66 +ing soul. + +67 + +So your life will hang in doubt before you, and +you will be afraid night and day, never certain of +survival. +In the morning you will say, ‘If only it +were evening!’ and in the evening you will say, ‘If +only it were morning!’—because of the dread in +68 +your hearts of the terrifying sights you will see. + +The LORD will return you to Egypt in ships by +a route that I said you should never see again. +There you will sell yourselves to your enemies as +male and female slaves, but no one will buy you.” +a 56 + +the husband of her bosom + +b 1 + +29 + +These are the words of the covenant that +the LORD commanded Moses to make +with the Israelites in the land of Moab, in addi- +tion to the covenant He had made with them at +2 +Horeb. + +b + +3 + +Moses summoned all Israel and proclaimed to +them, “You have seen with your own eyes every- +thing the LORD did in Egypt to Pharaoh, to all his +officials, and to all his land. +You saw with your +own eyes the great trials, and those miraculous +signs and wonders. +Yet to this day the LORD has +not given you a mind to understand, eyes to see, +5 +or ears to hear. + +4 + +For forty years I led you in the wilderness, +yet your clothes and sandals did not + +6 + +wear out. + +You ate no bread and drank no wine or + +strong drink, + +7 + +so that you might know that I am the + +LORD your God. + +8 + +When you reached this place, Sihon king of +Heshbon and Og king of Bashan came out against +us in battle, but we defeated them. +We took +their land and gave it as an inheritance to the +Reubenites, the Gadites, and the half-tribe of Ma- +nasseh. +So keep and follow the words of this +10 +covenant, that you may prosper in all you do. + +9 + +c + +12 + +All of you are standing today before the LORD +11 +your God—you leaders of tribes, + elders, offi- +your children +cials, and all the men of Israel, +and wives, and the foreigners in your camps who +cut your wood and draw your water— +so that +you may enter into the covenant of the LORD +13 +your God, which He is making with you today, +and into His oath, +and so that He may establish +you today as His people, and He may be your God +as He promised you and as He swore to your fa- +14 +thers, to Abraham, Isaac, and Jacob. +15 + +I am making this covenant and this oath not +but also with those who are +only with you, +standing here with us today in the presence of +the LORD our God, as well as with those who are +16 +not here today. + +For you yourselves know how we lived in the +17 +land of Egypt and how we passed through the na- +tions on the way here. +You saw the abomina- +tions and idols among them made of wood and +stone, of silver and gold. + +c 10 + +Hebrew +Mount Sinai + +LXX and Syriac; Hebrew + +you leaders, tribes +That is, Mount Sinai, or possibly a mountain in the range containing + + 192 | Deuteronomy 29:18 + +18 + +a + +19 + +Make sure there is no man or woman, clan or +tribe among you today whose heart turns away +from the LORD our God to go and worship the +gods of those nations. Make sure there is no root +among you that bears such poisonous and bitter +fruit, +because when such a person hears the +words of this oath, + he invokes a blessing on him- +self, saying, ‘I will have peace, even though I walk +in the stubbornness of my own heart.’ +20 + +b + +This will bring disaster on the watered land +as well as the dry. +The LORD will never be will- +ing to forgive him. Instead, His anger and jeal- +ousy will burn against that man, and every curse +written in this book will fall upon him. The LORD +will blot out his name from under heaven +and +single him out from all the tribes of Israel for dis- +aster, according to all the curses of the covenant +22 +written in this Book of the Law. + +21 + +23 + +Then the generation to come—your sons who +follow you and the foreigner who comes from a +distant land—will see the plagues of the land and +All +the sicknesses the LORD has inflicted on it. +its soil will be a burning waste of sulfur and salt, +unsown and unproductive, with no plant grow- +ing on it, just like the destruction of Sodom and +Gomorrah, Admah and Zeboiim, which the LORD +24 +overthrew in His fierce anger. + +So all the nations will ask, ‘Why has the LORD +done such a thing to this land? Why this great +25 +outburst of anger?’ + +26 + +And the people will answer, ‘It is because they +abandoned the covenant of the LORD, the God of +their fathers, which He made with them when He +They +brought them out of the land of Egypt. +went and served other gods, and they worshiped +27 +gods they had not known—gods that the LORD +Therefore the anger of +had not given to them. +the LORD burned against this land, and He +28 +brought upon it every curse written in this book. +The LORD uprooted them from their land in +His anger, rage, and great wrath, and He cast +29 +them into another land, where they are today.’ + +The secret things belong to the LORD our God, +but the things revealed belong to us and to our +children forever, so that we may follow all the +The Promise of Restoration (Neh. 1:1–11) +words of this law. + +30 + + c + +3 + +2 +to which the LORD your God has banished you, +and when you and your children return to the +LORD your God and obey His voice with all your +heart and all your soul according to everything I +then He will restore you +am giving you today, +from captivity + and have compassion on you and +4 +gather you from all the nations to which the +Even if you +LORD your God has scattered you. +e +have been banished to the farthest horizon, + He +5 +will gather you and return you from there. + +d + +6 + +And the LORD your God will bring you into the +land your fathers possessed, and you will take +possession of it. He will cause you to prosper and +The LORD +multiply more than your fathers. +your God will circumcise your hearts and the +hearts of your descendants, and you will love +Him with all your heart and with all your soul, so +7 +that you may live. + +9 + +8 + +Then the LORD your God will put all these +curses upon your enemies who hate you and per- +secute you. +And you will again obey the voice of +the LORD and follow all His commandments I am +So the LORD your God will +giving you today. +make you abound in all the work of your hands +and in the fruit of your womb, the offspring of +your livestock, and the produce of your land. In- +deed, the LORD will again delight in your pros- +if +perity, as He delighted in that of your fathers, +you obey the LORD your God by keeping His +commandments and statutes that are written in +this Book of the Law, and if you turn to Him with +The Choice of Life or Death +all your heart and with all your soul. +11 + +10 + +12 + +13 + +For this commandment I give you today is not +too difficult for you or beyond your reach. +It is + f +not in heaven, that you should need to ask, ‘Who +will ascend into heaven + to get it for us and pro- +And it is not be- +claim it, that we may obey it?’ +yond the sea, that you should need to ask, ‘Who +will cross the sea + to get it for us and proclaim it, +that we may obey it?’ +But the word is very near +you; it is in your mouth and in your heart, + so +15 +that you may obey it. + +14 + + g + +h + +16 + +See, I have set before you today life and pros- +For I am +perity, as well as death and disaster. +commanding you today to love the LORD your +God, to walk in His ways, and to keep His com- +mandments, statutes, and ordinances, so that +you may live and increase, and the LORD your + +“When all these things come upon you— +the blessings and curses I have set before +b 19 +a 18 +you—and you call them to mind in all the nations +e 4 + +curse + +c 3 + +See Hebrews 12:15 +Cited in Nehemiah 1:8–9 + +Or +Cited in Romans 10:6 + +f 12 +Or + +g 13 + +restore your fortunes + +d 4 + +to the extremity of the heavens + +h 14 + +Or + +See Romans 10:7. + +Cited in Romans 10:8 + + 31 + +God may bless you in the land that you are enter- +17 +ing to possess. + +But if your heart turns away and you do not lis- +18 +ten, but are drawn away to bow down to other +gods and worship them, +I declare to you today +that you will surely perish; you shall not prolong +your days in the land that you are crossing the +19 +Jordan to possess. + +I call heaven and earth as witnesses against +you today that I have set before you life and +death, blessing and cursing. Therefore choose +20 +life, so that you and your descendants may live, +and that you may love the LORD your God, +obey Him, and hold fast to Him. For He is your +life, and He will prolong your life in the land that +the LORD swore to give to your fathers, to Abra- +Joshua to Succeed Moses (Numbers 27:18–23) +ham, Isaac, and Jacob.” + + a + +2 + +When Moses had finished speaking +these words to all Israel, + +he said to +them, “I am now a hundred and twenty years old; +I am no longer able to come and go, and the LORD +3 +has said to me, ‘You shall not cross the Jordan.’ + +The LORD your God Himself will cross over +ahead of you. He will destroy these nations be- +fore you, and you will dispossess them. Joshua +4 +will cross ahead of you, as the LORD has said. +And the LORD will do to them as He did to Sihon +and Og, the kings of the Amorites, when He de- +5 +stroyed them along with their land. + +6 + +The LORD will deliver them over to you, and +you must do to them exactly as I have com- +manded you. +Be strong and courageous; do not +be afraid or terrified of them, for it is the LORD +your God who goes with you; He will never leave +7 +you nor forsake you.” + + b + +8 + +Then Moses called for Joshua and said to him in +the presence of all Israel, “Be strong and coura- +geous, for you will go with this people into the +land that the LORD swore to their fathers to give +them, and you shall give it to them as an inher- +itance. +The LORD Himself goes before you; He +will be with you. He will never leave you nor for- +The Reading of the Law (Nehemiah 8:1–8) +sake you. Do not be afraid or discouraged.” +9 + +So Moses wrote down this law and gave it to the +priests, the sons of Levi, who carried the ark of +the covenant of the LORD, and to all the elders of +a 1 +Israel. + +When Moses went out and spoke + +b 6 + +DSS and LXX; MT + +the Feast of Ingathering + + Deuteronomy 31:21 | 193 + +10 + +c + +11 + +Then Moses commanded them, “At the end of +every seven years, at the appointed time in the +year of remission of debt, during the Feast of +when all Israel comes before the +Tabernacles, +LORD your God at the place He will choose, you +12 +are to read this law in the hearing of all Israel. + +13 + +Assemble the people—men, women, children, +and the foreigners within your gates—so that +they may listen and learn to fear the LORD your +God and to follow carefully all the words of this +Then their children who do not know the +law. +law will listen and learn to fear the LORD your +God, as long as you live in the land that you are +God Commissions Joshua +crossing the Jordan to possess.” +14 + +Then the LORD said to Moses, “Behold, the +time of your death is near. Call Joshua and pre- +sent yourselves at the Tent of Meeting, so that I +may commission him.” + +15 + +So Moses and Joshua went and presented them- +Then the LORD +selves at the Tent of Meeting. +appeared at the tent in a pillar of cloud, and the +16 +cloud stood over the entrance to the tent. + +And the LORD said to Moses, “You will soon +rest with your fathers, and these people will rise +up and prostitute themselves with the foreign +gods of the land they are entering. They will for- +sake Me and break the covenant I have made +17 +with them. + +On that day My anger will burn against them, +and I will abandon them and hide My face from +them, so that they will be consumed, and many +troubles and afflictions will befall them. + +On that day they will say, ‘Have not these disas- +ters come upon us because our God is no longer +18 +with us?’ + +And on that day I will surely hide My face be- +cause of all the evil they have done by turning to +19 +other gods. + +20 + +Now therefore, write down for yourselves this +song and teach it to the Israelites; have them re- +cite it, so that it may be a witness for Me against +When I have brought them into the land +them. +that I swore to give their fathers, a land flowing +with milk and honey, they will eat their fill and +prosper. Then they will turn to other gods and +worship them, and they will reject Me and break +And when many troubles and af- +My covenant. +flictions have come upon them, this song will +the Feast of Shelters +the Feast of Booths +That is, Sukkot, +Cited in Hebrews 13:5; here and in verse 8 + +c 10 + +21 + +the autumn feast of pilgrimage to Jerusalem; also translated as +called + + (see Exodus 23:16 and Exodus 34:22). + + or + + and originally + + 194 | Deuteronomy 31:22 + +testify against them, because it will not be forgot- +ten from the lips of their descendants. For I know +their inclination, even before I bring them into +22 +the land that I swore to give them.” + +So that very day Moses wrote down this song + +23 +and taught it to the Israelites. + +Then the LORD commissioned Joshua son of +Nun and said, “Be strong and courageous, for you +will bring the Israelites into the land that I swore +The Law Placed in the Ark +to give them, and I will be with you.” +24 + +25 + +26 + +When Moses had finished writing in a book the +he +words of this law from beginning to end, +gave this command to the Levites who carried +“Take this +the ark of the covenant of the LORD: +Book of the Law and place it beside the ark of the +covenant of the LORD your God, so that it may re- +For I +main there as a witness against you. +know how rebellious and stiff-necked you are. If +you are already rebelling against the LORD while +I am still alive, how much more will you rebel +28 +after my death! + +27 + +29 + +Assemble before me all the elders of your +tribes and all your officers so that I may speak +these words in their hearing and call heaven and +earth to witness against them. +For I know that +after my death you will become utterly corrupt +and turn from the path I have commanded you. +And in the days to come, disaster will befall you +because you will do evil in the sight of the LORD +to provoke Him to anger by the work of your +Moses Begins His Song +hands.” +30 + +Then Moses recited aloud to the whole assem- +bly of Israel the words of this song from begin- +The Song of Moses (Revelation 15:1–4) +ning to end: + +32 + +2 + +Give ear, O heavens, and I will speak; +hear, O earth, the words of my mouth. + +Let my teaching fall like rain + +and my speech settle like dew, + +like gentle rain on new grass, +3 + +like showers on tender plants. + +For I will proclaim the name of the LORD. + +4 + +Ascribe greatness to our God! +He is the Rock, His work is perfect; + +all His ways are just. + +A God of faithfulness without injustice, + +a 5 +sons of Israel +e 15 Jeshurun + +righteous and upright is He. + +c 10 +Cited in Philippians 2:15 + +b 8 +the pupil + +DSS; LXX + +the upright one +Literally + +d 11 Pinions + +5 + +His people have acted corruptly toward Him; +the blemish on them is not that of His + +children, + +a +but of a perverse and crooked + +6 + +generation. + +Is this how you repay the LORD, + +O foolish and senseless people? +Is He not your Father and Creator? +7 + +Has He not made you and established + +you? + +Remember the days of old; + +consider the years long past. +Ask your father, and he will tell you, +8 + +your elders, and they will inform you. +When the Most High gave the nations their + +inheritance, + +when He divided the sons of man, +He set the boundaries of the peoples +9 + +according to the number of the sons of + +b + +God. + +10 + +But the LORD’s portion is His people, +Jacob His allotted inheritance. + +He found him in a desert land, + +in a barren, howling wilderness; +He surrounded him, He instructed him, + + c + +11 + +He guarded him as the apple + + of His eye. + +As an eagle stirs up its nest + +12 + +and hovers over its young, +He spread His wings to catch them +and carried them on His pinions. + +d + +13 + +The LORD alone led him, + +and no foreign god was with him. + +He made him ride on the heights of the land +and fed him the produce of the field. +He nourished him with honey from the rock + +14 + +and oil from the flinty crag, + +with curds from the herd and milk from the + +flock, + +with the fat of lambs, + +with rams from Bashan, and goats, + +with the choicest grains of wheat. + +From the juice of the finest grapes + +15 + + e +you drank the wine. + +But Jeshurun + + grew fat and kicked— + +becoming fat, bloated, and gorged. +He abandoned the God who made him + +16 + +and scorned the Rock of his salvation. +They provoked His jealousy with foreign + +gods; + +according to the number of the angels of God + +they enraged Him with abominations. + +according to the number of the + + are the outer parts of a bird’s wings, including the flight feathers. + +; MT + + means + +, a term of endearment for Israel. + + 17 + +29 + +They sacrificed to demons, not to God, + +If only they were wise, they would + +to gods they had not known, + +30 + +understand it; + + Deuteronomy 32:42 | 195 + +to newly arrived gods, + +18 + +which your fathers did not fear. + +19 + +You ignored the Rock who brought you forth; +you forgot the God who gave you birth. +When the LORD saw this, He rejected them, + +20 + +provoked to anger by His sons and + +daughters. + +He said: “I will hide My face from them; +I will see what will be their end. +For they are a perverse generation— + +21 + +children of unfaithfulness. + +They have provoked My jealousy by that + +which is not God; + +they have enraged Me with their + a + +worthless idols. + +So I will make them jealous by those who are + +not a people; + +b + +22 + +I will make them angry by a nation + +without understanding. + +For a fire has been kindled by My anger, +and it burns to the depths of Sheol; +it consumes the earth and its produce, +and scorches the foundations of the + +23 + +mountains. + +I will heap disasters upon them; + +24 + +I will spend My arrows against them. + +They will be wasted from hunger + +and ravaged by pestilence and bitter + +plague; + +I will send the fangs of wild beasts against + +them, + +25 + +with the venom of vipers that slither in + +the dust. + +Outside, the sword will take their children, + +and inside, terror will strike + +26 + +the young man and the young woman, +the infant and the gray-haired man. +I would have said that I would cut them to + +27 + +pieces + +and blot out their memory from mankind, + +if I had not dreaded the taunt of the enemy, +lest their adversaries misunderstand and + +say: + +‘Our own hand has prevailed; + +28 + +it was not the LORD who did all this.’ + +” + +Israel is a nation devoid of counsel, + +they would comprehend their fate. +How could one man pursue a thousand, +or two put ten thousand to flight, + +unless their Rock had sold them, + +31 + +unless the LORD had given them up? + +c + +32 + +For their rock is not like our Rock, +even our enemies concede. +But their vine is from the vine of + +Sodom + +and from the fields of Gomorrah. + +33 + +Their grapes are poisonous; +their clusters are bitter. + +Their wine is the venom of serpents, +the deadly poison of cobras. + +34 + +35 + +“Have I not stored up these things, +d +sealed up within My vaults? +Vengeance is Mine; I will repay. + +In due time their foot will slip; + +36 + +for their day of disaster is near, + + e +and their doom is coming quickly.” + +For the LORD will vindicate His people + +and have compassion on His servants +when He sees that their strength is gone +and no one remains, slave or free. + +37 + +He will say: “Where are their gods, + +38 + +the rock in which they took refuge, + +which ate the fat of their sacrifices + +and drank the wine of their drink + +offerings? + +39 + +Let them rise up and help you; +let them give you shelter! + +See now that I am He; + +there is no God besides Me. + +I bring death and I give life; +I wound and I heal, + +and there is no one + +40 + +who can deliver from My hand. + +For I lift up My hand to heaven and declare: + +41 + +As surely as I live forever, + +when I sharpen My flashing sword, + +and My hand grasps it in judgment, +I will take vengeance on My adversaries + +42 + +and repay those who hate Me. + +I will make My arrows drunk with blood, + +while My sword devours flesh— +the blood of the slain and captives, +the heads of the enemy leaders.” + +c 31 + +but our enemies are void of under- + +not a nation +with no understanding among them. +d 35 + +Vengeance is Mine, and recompense + +b 21 + +a 21 +standing +Or +e 36 + +will judge His people + +; see also LXX. + +Cited in Romans 10:19 + +Hebrew; LXX + +LXX; Hebrew + +; cited in Romans 12:19 and Hebrews 10:30 + +Or + +; see also LXX; cited in Hebrews 10:30 + + 196 | Deuteronomy 32:43 + +43 + +a + +Rejoice, O heavens, with Him, + + b + +and let all God’s angels worship Him. + +Rejoice, O nations, with His people; + +c + +for He will avenge the blood of His + +children. + + d + + h + +4 + +and they sit down at Your feet; + +each receives Your words— + +5 + +the law that Moses gave us, + + i + +the possession of the assembly of Jacob. + +So the LORD became King in Jeshurun + +He will take vengeance on His adversaries + +6 + +and repay those who hate Him; + +44 + +He will cleanse His land +and His people. + + e + +45 + +47 + + son of Nun and +Then Moses came with Joshua +recited all the words of this song in the hearing +46 +of the people. +When Moses had finished recit- +ing all these words to all Israel, +he said to them, +“Take to heart all the words I have solemnly de- +clared to you this day, so that you may command +your children to carefully follow all the words of +this law. +For they are not idle words to you, be- +cause they are your life, and by them you will live +long in the land that you are crossing the Jordan +Moses’ Death Foretold +to possess.” +48 +49 + +On that same day the LORD said to Moses, +“Go up into the Abarim Range to Mount Nebo, +in the land of Moab across from Jericho, and view +the land of Canaan, which I am giving to the Isra- +50 +elites as their own possession. + +And there on the mountain that you climb, you +will die and be gathered to your people, just as +your brother Aaron died on Mount Hor and was +51 +gathered to his people. + +For at the waters of Meribah-kadesh in the +Wilderness of Zin, both of you broke faith with +52 +Me among the Israelites by failing to treat Me as +holy in their presence. +Although you shall see +from a distance the land that I am giving the Isra- +Moses Blesses the Twelve Tribes +elites, you shall not enter it.” + +33 + +when the leaders of the people gathered, +when the tribes of Israel came together. + + j + +7 + +Let Reuben live and not die, + +nor + + his men be few.” + +And concerning Judah he said: +“O LORD, hear the cry of Judah +and bring him to his people. + +8 + +With his own hands he defends his cause, + +but may You be a help against his foes.” + +Concerning Levi he said: +“Give Your Thummim to Levi + + l + +k + +and Your Urim to Your godly one, + +m + +whom You tested at Massah +9 + +and contested at the waters of Meribah. + +He said of his father and mother, +‘I do not consider them.’ +He disregarded his brothers + + n + +and did not know his own sons, + +10 + +for he kept + + Your word + +and maintained Your covenant. +He will teach Your ordinances to Jacob + +and Your law to Israel; +he will set incense before You + +11 + +and whole burnt offerings on Your altar. + +Bless his substance, O LORD, + +and accept the work of his hands. +Smash the loins of those who rise against + +12 + +him, + +and of his foes so they can rise no more.” + +Concerning Benjamin he said: +“May the beloved of the LORD + + o +rest secure in Him; + +This is the blessing that Moses the man +of God pronounced upon the Israelites + +2 + +13 + +God shields + + him all day long, + +and upon His shoulders he rests.” + +before his death. + +He said: + f + +“The LORD came from Sinai +and dawned upon us + + from Seir; + +He shone forth from Mount Paran + +g + +3 + +and came with myriads of holy ones, +with flaming fire at His right hand. + +Concerning Joseph he said: +“May his land be blessed by the LORD + +14 + +15 + +with the precious dew from heaven above +and the deep waters that lie beneath, +with the bountiful harvest from the sun + +and the abundant yield of the seasons, + +a 43 + +Rejoice, O heavens, with Him, and let all God’s angels worship Him. + +Surely You love the people; + +all the holy ones are in Your hand, +d 43 +f 2 + +c 43 +See DSS, LXX; MT lacks + +Hoshea +DSS and LXX; MT +Rom. 15:10 +from the south, from His mountain slopes +and Vulgate; Heb. +j 6 +and Your Lights be to Your godly one +dearment for Israel; also v. 26. +they kept +n 9 + +, a variant of + +servants +Joshua +h 3 +but let +Or +l 8 Massah + +LXX, Vulgate; MT lacks + +they follow in Your steps +LXX, Syriac, and Vulgate; Heb. +k 8 + +testing + +Or +. + +DSS and LXX; MT does not include + + means + +; see Ex. 17:7. + +with the best of the ancient mountains +b 43 + +and repay those who hate Him + +and the bounty of the everlasting hills, +e 44 + Cited in Heb. 1:6 +g 2 +the upright one +Or + +Cited in +with myriads of holy ones +LXX, Syriac, + +i 5 Jeshurun + +upon them + +to Levi + means +m 8 Meribah + +quarreling + +Let Your Perfections +, a term of en- +He shields +; see Ex. 17:7. + +; literally +o 12 + means + +Hebrew + +, most likely referring to Levi in the plural; similarly twice in verse 10 + +LXX; Hebrew + + Deuteronomy 34:12 | 197 + +16 + +with the choice gifts of the land and + +and underneath are the everlasting arms. + +everything in it, + +28 + +He drives out the enemy before you, + +and with the favor of Him who dwelt in + +giving the command, ‘Destroy him!’ + +the burning bush. + +So Israel dwells securely; + +May these rest on the head of Joseph + +the fountain of Jacob lives untroubled + +17 + +and crown the brow of the prince of his + +29 + +in a land of grain and new wine, + +brothers. + +where even the heavens drip with dew. + +His majesty is like a firstborn bull, + +Blessed are you, O Israel! + +and his horns are like those of a wild ox. + +Who is like you, a people saved by the + +With them he will gore the nations, +even to the ends of the earth. +Such are the myriads of Ephraim, + +18 + +and such are the thousands of Manasseh.” + +Concerning Zebulun he said: +“Rejoice, Zebulun, in your journeys, + +19 + +and Issachar, in your tents. + +They will call the peoples to a mountain; + +there they will offer sacrifices of + +righteousness. + +For they will feast on the abundance of + +20 + +the seas + +and the hidden treasures of the sand.” + +Concerning Gad he said: +“Blessed is he who enlarges + +the domain of Gad! +He lies down like a lion + +21 + +and tears off an arm or a head. +He chose the best land for himself, + +because a ruler’s portion was reserved for + +him there. + +He came with the leaders of the people; +he administered the LORD’s justice +and His ordinances for Israel.” + +22 + +Concerning Dan he said: +“Dan is a lion’s cub, + +23 + +leaping out of Bashan.” +Concerning Naphtali he said: +“Naphtali is abounding with favor, +full of the blessing of the LORD; + + a +he shall take possession + +24 + +of the sea + + and the south.” +And concerning Asher he said: +“May Asher be the most blessed of sons; +may he be the most favored among his + +25 + +brothers + +and dip his foot in oil. + +May the bolts of your gate be iron and + +26 + +bronze, + +and may your strength match your days.” + +“There is none like the God of Jeshurun, +who rides the heavens to your aid, +and the clouds in His majesty. +the west + +The eternal God is your dwelling place, + +b 2 + +27 + +a 23 + +c 6 + +LORD? + +He is the shield that protects you, +the sword in which you boast. +Your enemies will cower before you, + +The Death of Moses + +and you shall trample their high places.” + +34 + +Then Moses went up from the plains of +Moab to Mount Nebo, to the top of Pis- +gah, which faces Jericho. And the LORD showed +2 +him the whole land—from Gilead as far as Dan, +all of Naphtali, the land of Ephraim and Manas- +seh, all the land of Judah as far as the Western +the Negev, and the region from the Valley +Sea, +4 +of Jericho (the City of Palms) all the way to Zoar. + +3 + +b + +And the LORD said to him, “This is the land that +I swore to give Abraham, Isaac, and Jacob when I +said, ‘I will give it to your descendants.’ I have let +you see it with your own eyes, but you will not +5 +cross into it.” + +6 + + c + +So Moses the servant of the LORD died there in +And He +the land of Moab, as the LORD had said. +buried him + in a valley in the land of Moab facing +Beth-peor, and no one to this day knows the lo- +7 +cation of his grave. + +8 + +Moses was a hundred and twenty years old +when he died, yet his eyes were not weak, and his +vitality had not diminished. +The Israelites +grieved for Moses in the plains of Moab thirty +days, until the time of weeping and mourning for +9 +Moses came to an end. + +11 + +10 + +Now Joshua son of Nun was filled with the spirit +of wisdom because Moses had laid his hands on +him. So the Israelites obeyed him and did as the +Since that time, +LORD had commanded Moses. +no prophet has risen in Israel like Moses, whom +no prophet who +the LORD knew face to face— +did all the signs and wonders that the LORD sent +12 +Moses to do in the land of Egypt to Pharaoh and +and no +to all his officials and all his land, +prophet who performed all the mighty acts of +power and awesome deeds + that Moses did in +the sight of all Israel. + +they buried him + +terrifying deeds + +d 12 + + d + +Or + +That is, the Med. Sea or Great Sea + +SP and some LXX + +Or + + Joshua + +God Instructs Joshua (Deuteronomy 11:8–17) + +1 + +2 + +Now after the death of His servant Moses, +the LORD spoke to Joshua son of Nun, Moses’ +“Moses My servant is dead. +assistant, saying, +Now therefore arise, you and all these people, +and cross over the Jordan into the land that I am +3 +giving to the children of Israel. + +I have given you every place where the sole of +4 +your foot will tread, just as I promised to Moses. +Your territory shall extend from the wilderness +and Lebanon to the great River Euphrates—all +the land of the Hittites—and west as far as the +5 +Great Sea. + +a + +No one shall stand against you all the days of +your life. As I was with Moses, so will I be with +6 +you; I will never leave you nor forsake you. + +b + +Be strong and courageous, for you shall give +these people the inheritance of the land that I +7 +swore to their fathers I would give them. + +8 + +Above all, be strong and very courageous. Be +careful to observe all the law that My servant +Moses commanded you. Do not turn from it to +the right or to the left, so that you may prosper +wherever you go. +This Book of the Law must not +depart from your mouth; meditate on it day and +night, so that you may be careful to do everything +written in it. For then you will prosper and suc- +9 +ceed in all you do. + +Have I not commanded you to be strong and +courageous? Do not be afraid; do not be discour- +aged, for the LORD your God is with you wher- +Joshua Takes Charge +ever you go.” +10 + +11 + +Then Joshua commanded the officers of the +people: +“Go through the camp and tell the peo- +ple, ‘Prepare your provisions, for within three +days you will cross the Jordan to go in and take +possession of the land that the LORD your God is +12 +giving you to possess.’ +” + +13 + +But to the Reubenites, the Gadites, and the half- +tribe of Manasseh, Joshua said, +“Remember +b 5 +a 4 +what Moses the servant of the LORD commanded + +14 + +you when he said, ‘The LORD your God will give +you rest, and He will give you this land.’ +Your +wives, your young children, and your livestock +may remain in the land that Moses gave you on +this side of the Jordan. But all your mighty men +of valor must be armed for battle to cross over +ahead of your brothers and help them, +until +the LORD gives them rest as He has done for you, +and your brothers also possess the land that the +LORD your God is giving them. Then you may +return to the land of your inheritance and take +possession of that which Moses the servant +of the LORD gave you on the east side of the +16 +Jordan.” + +15 + +18 + +So they answered Joshua, “Everything you +17 +have commanded us we will do, and everywhere +Just as we obeyed Mo- +you send us we will go. +ses in all things, so we will obey you. And may the +LORD your God be with you, as He was with +Anyone who rebels against your order +Moses. +and does not obey your words, all that you com- +mand him, will be put to death. Above all, be +Rahab Welcomes the Spies (Heb. 11:30–31) +strong and courageous!” + +2 + +c + +Then Joshua son of Nun secretly sent two + saying, “Go, inspect the +spies from Shittim, +land, especially Jericho.” So they went and en- +tered the house of a prostitute named Rahab and +2 +stayed there. + +And it was reported to the king of Jericho: “Be- +hold, some men of Israel have come here tonight +3 +to spy out the land.” + +So the king of Jericho sent to Rahab and said, +“Bring out the men who came to you and entered +your house, for they have come to spy out the +4 +whole land.” + +5 + +But the woman had taken the two men and hid- +den them. So she said, “Yes, the men did come to +me, but I did not know where they had come +At dusk, when the gate was about to close, +from. +the men went out, and I do not know which way +they went. Pursue them quickly, and you may +(But Rahab had taken them up to +catch them!” +Or + +Acacia Grove + +c 1 + +6 + +That is, the Mediterranean Sea + +Cited in Hebrews 13:5 + + the roof and hidden them among the stalks of flax +7 +that she had laid out there.) + +will be released from the oath you made us +21 +swear.” + +Joshua 3:10 | 199 + +So the king’s men set out in pursuit of the spies +along the road to the fords of the Jordan, and as +The Promise to Rahab +soon as they had gone out, the gate was shut. +8 + +9 + + a + +10 + +Before the spies lay down for the night, Rahab +and said to them, “I know +went up on the roof +that the LORD has given you this land and that +the fear of you has fallen on us, so that all who +For +dwell in the land are melting in fear of you. +we have heard how the LORD dried up the wa- +ters of the Red Sea + before you when you came +out of Egypt, and what you did to Sihon and Og, +b +the two kings of the Amorites across the Jordan, +When we +whom you devoted to destruction. +heard this, our hearts melted and everyone’s +courage failed because of you, for the LORD your +God is God in the heavens above and on the earth +12 +below. + +11 + +13 + +Now therefore, please swear to me by the +LORD that you will indeed show kindness to my +family, because I showed kindness to you. Give +that you will spare the lives of +me a sure sign +my father and mother, my brothers and sisters, +and all who belong to them, and that you will de- +14 +liver us from death.” + +“Our lives for your lives!” the men agreed. “If +you do not report our mission, we will show you +kindness and faithfulness when the LORD gives +15 +us the land.” + +16 + +Then Rahab let them down by a rope through +the window, since the house where she lived was +“Go to the hill +built into the wall of the city. +country,” she said, “so that your pursuers will not +find you. Hide yourselves there for three days +17 +until they have returned; then go on your way.” + +18 + +The men said to her, “We will not be bound by +unless, when we +this oath you made us swear +enter the land, you have tied this scarlet cord in +the window through which you let us down, and +unless you have brought your father and mother +19 +and brothers and all your family into your house. +If anyone goes out the door of your house into +the street, his blood will be on his own head, and +we will be innocent. But if a hand is laid on any- +one with you in the house, his blood will be on +cherem +b 10 +a 10 +And if you report our mission, we +our heads. +Or + +Forms of the Hebrew + +the Sea of Reeds + +20 + +either by destroying them or by giving them as an offering. +3,000 feet or 914.4 meters. + +“Let it be as you say,” she replied, and she sent +them away. And when they had gone, she tied the +22 +scarlet cord in the window. + +23 + +So the spies went out into the hill country and +stayed there three days, until their pursuers had +returned without finding them, having searched +Then the two men started +all along the road. +back, came down from the hill country, and +crossed the river. So they came to Joshua son of +24 +Nun and reported all that had happened to them. + +“The LORD has surely delivered the entire land +into our hands,” they said to Joshua. “Indeed, all +Crossing the Jordan +who dwell in the land are melting in fear of us.” + +3 + + c + +Early the next morning Joshua got up and + with all the Israelites. They +left Shittim +went as far as the Jordan, where they camped be- +2 +fore crossing over. + +3 + +After three days the officers went through the +and commanded the people: “When you +camp +see the ark of the covenant of the LORD your God +being carried by the Levitical priests, you are to + d +But +set out from your positions and follow it. +keep a distance of about two thousand cubits +between yourselves and the ark. Do not go near +it, so that you can see the way to go, since you +5 +have never traveled this way before.” + +4 + +6 + +Then Joshua told the people, “Consecrate your- +selves, for tomorrow the LORD will do wonders +And he said to the priests, “Take +among you.” +the ark of the covenant and go on ahead of the +people.” So they carried the ark of the covenant +7 +and went ahead of them. + +8 + +Now the LORD said to Joshua, “Today I will +begin to exalt you in the sight of all Israel, so they +may know that I am with you just as I was with +Command the priests carrying the ark of +Moses. +the covenant: ‘When you reach the edge of the +9 +waters, stand in the Jordan.’ + +” + +10 + +So Joshua told the Israelites, “Come here and lis- +ten to the words of the LORD your God.” +He +continued, “This is how you will know that the +living God is among you and that He will surely +drive out before you the Canaanites, Hittites, +Hivites, Perizzites, Girgashites, Amorites, and +d 4 2,000 cubits +c 1 + +Acacia Grove + + refer to the giving over of things or persons to the LORD, + is approximately + +Or + + 200 | Joshua 3:11 + +11 + +8 + +Behold, the ark of the covenant of +Jebusites. +the Lord of all the earth will go ahead of you into +12 +the Jordan. + +13 + +Now choose twelve men from the tribes of Is- +rael, one from each tribe. +When the feet of the +priests who carry the ark of the LORD—the Lord +of all the earth—touch down in the waters of the +Jordan, its flowing waters will be cut off and will +14 +stand up in a heap.” + +So when the people broke camp to cross the +Jordan, the priests carried the ark of the cove- +15 +nant ahead of them. + + a + +16 + +Now the Jordan overflows its banks through- +out the harvest season. But as soon as the priests +carrying the ark reached the Jordan and their +the flowing wa- +feet touched the water’s edge, +ter stood still. It backed up as far upstream as +Adam, a city in the area of Zarethan, while the +water flowing toward the Sea of the Arabah (the +) was completely cut off. So the people +Salt Sea +The priests car- +crossed over opposite Jericho. +rying the ark of the covenant of the LORD stood +firm on dry ground in the middle of the Jordan, +while all Israel crossed over the dry ground, until +Twelve Stones from the Jordan +the entire nation had crossed the Jordan. + +17 + +4 + +2 + +3 + +When the whole nation had finished cross- +ing the Jordan, the LORD said to Joshua, +“Choose twelve men from among the people, +and command them: ‘Take +one from each tribe, +up for yourselves twelve stones from the middle +of the Jordan where the priests were standing, +carry them with you, and set them down in the +4 +place where you spend the night.’ + +” + +6 + +5 + +So Joshua summoned the twelve men he had +appointed from the Israelites, one from each +and said to them, “Cross over before the +tribe, +ark of the LORD your God into the middle of +the Jordan. Each of you is to take a stone upon +his shoulder, according to the number of the +to serve as a sign among you. In +tribes of Israel, +the future, when your children ask, ‘What do +you are to tell them, +these stones mean to you?’ +‘The waters of the Jordan were cut off before the +ark of the covenant of the LORD. When it crossed +the Jordan, the waters were cut off.’ Therefore +these stones will be a memorial to the Israelites +b 9 +a 16 +forever.” +Jordan + +the ark of the covenant + +c 16 + +7 + +That is, the Dead Sea + +Some translators + +That is, + +Thus the Israelites did as Joshua had com- +manded them. They took up twelve stones from +the middle of the Jordan, one for each tribe of Is- +rael, just as the LORD had told Joshua; and they +carried them to the camp, where they set them +9 +down. + + b + +Joshua also set up twelve stones in the middle +of the Jordan, + in the place where the priests who +carried the ark of the covenant stood. And the +10 +stones are there to this day. + +Now the priests who carried the ark remained +standing in the middle of the Jordan until the +people had completed everything the LORD had +commanded Joshua to tell them, just as Moses +11 +had directed Joshua. The people hurried across, +and after everyone had finished crossing, the +12 +priests with the ark of the LORD crossed in +The Reubenites, the +the sight of the people. +Gadites, and the half-tribe of Manasseh crossed +over before the Israelites, armed for battle as +About 40,000 +Moses had instructed them. +troops armed for battle crossed over before the +14 +LORD into the plains of Jericho. + +13 + +On that day the LORD exalted Joshua in the +sight of all Israel, and they revered him all the +15 +days of his life, just as they had revered Moses. + c +“Command + +Then the LORD said to Joshua, + +16 + +the priests who carry the ark of the Testimony +17 +to come up from the Jordan.” + +So Joshua commanded the priests, “Come up + +18 +from the Jordan.” + +When the priests carrying the ark of the cove- +nant of the LORD came up out of the Jordan and +their feet touched the dry land, the waters of the +Jordan returned to their course and overflowed +The Camp at Gilgal +all the banks as before. +19 + +20 + +On the tenth day of the first month the people +went up from the Jordan and camped at Gilgal on +And there at Gil- +the eastern border of Jericho. +gal Joshua set up the twelve stones they had +21 +taken from the Jordan. + +22 + +Then Joshua said to the Israelites, “In the fu- +ture, when your children ask their fathers, ‘What +you are to tell +is the meaning of these stones?’ +23 +them, ‘Israel crossed the Jordan on dry ground.’ +For the LORD your God dried up the waters of +the Jordan before you until you had crossed over, + +And Joshua set up the twelve stones that had been in the middle of the + + a + +12 + +Joshua 6:8 | 201 + +24 + which He dried up +just as He did to the Red Sea, +He did +before us until we had crossed over. +this so that all the peoples of the earth may know +that the hand of the LORD is mighty, and so that +The Circumcision and Passover at Gilgal +you may always fear the LORD your God.” + +5 + +Now when all the Amorite kings west of the + b +Jordan and all the Canaanite kings along the + heard how the LORD had dried up the wa- +coast +ters of the Jordan before the Israelites until they + their hearts melted and their +had crossed over, +2 +spirits failed for fear of the Israelites. + +c + +d + +3 + +At that time the LORD said to Joshua, “Make flint +knives and circumcise the sons of Israel once +again. +So Joshua made flint knives and circum- +4 +cised the sons of Israel at Gibeath-haaraloth. + +” + +e + +5 + +Now this is why Joshua circumcised them: All +those who came out of Egypt—all the men of +war—had died on the journey in the wilderness +Though all who had +after they had left Egypt. +come out were circumcised, none of those born +in the wilderness on the journey from Egypt had +6 +been circumcised. + +7 + +For the Israelites had wandered in the wilder- +ness forty years, until all the nation’s men of war +who had come out of Egypt had died, since they +did not obey the LORD. So the LORD vowed never +to let them see the land He had sworn to their +fathers to give us, a land flowing with milk and +And He raised up their sons in their +honey. +place, and these were the ones Joshua circum- +cised. Until this time they were still uncircum- +cised, since they had not been circumcised along +8 +the way. + +And after all the nation had been circumcised, +they stayed there in the camp until they were +9 +healed. + +Then the LORD said to Joshua, “Today I have +rolled away the reproach of Egypt from you.” So +10 +that place has been called Gilgal + + to this day. + + f + +And the day after they had eaten from the pro- +duce of the land, the manna ceased. There was no +more manna for the Israelites, so that year they +The Commander of the LORD’s Army +began to eat the crops of the land of Canaan. +13 + +Now when Joshua was near Jericho, he looked +up and saw a man standing in front of him with a +drawn sword in His hand. Joshua approached +Him and asked, “Are You for us or for our ene- +14 +mies?” + +“Neither,” He replied. “I have now come as + + g + +Commander of the LORD’s army.” + +Then Joshua fell facedown in reverence + and +asked Him, “What does my Lord have to say to +15 +His servant?” + +The Commander of the LORD’s army replied, +“Take off your sandals, for the place where you +are standing is holy.” +The Walls of Jericho +And Joshua did so. + +6 + +2 +came in. + +Now Jericho was tightly shut up because of +the Israelites. No one went out and no one + +3 + +And the LORD said to Joshua, “Behold, I have de- +livered Jericho into your hand, along with its king +and its mighty men of valor. +March around the +4 +city with all the men of war, circling the city one +time. Do this for six days. +Have seven priests +carry seven rams’ horns in front of the ark. Then +on the seventh day, march around the city seven +times, while the priests blow the horns. +And +when there is a long blast of the ram’s horn and +you hear its sound, have all the people give a +mighty shout. Then the wall of the city will col- +lapse + and all your people will charge straight +6 +into the city. + +” + +5 + + h + +i + +So Joshua son of Nun summoned the priests and +said, “Take up the ark of the covenant and have +seven priests carry seven rams’ horns in front of +7 +the ark of the LORD.” + +And he told the people, “Advance and march +around the city, with the armed troops going +8 +ahead of the ark of the LORD.” + +On the evening of the fourteenth day of the +month, while the Israelites were camped at Gilgal +11 +on the plains of Jericho, they kept the Passover. +The day after the Passover, on that very day, +they ate unleavened bread and roasted grain +b 1 +a 23 +from the produce of the land. +over + +the Sea of Reeds +d 2 + +again the second time + +e 3 Gibeath-haaraloth + +Or + +roll +Literally +and the people will go up, every man straight ahead + +That is, along the Mediterranean coast; literally +and paid homage + +and worshiped + +g 14 + +. + +Or + + or + +i 5 +the Hebrew for +Literally + +After Joshua had spoken to the people, seven +priests carrying seven rams’ horns before the +LORD advanced and blew the horns, and the ark + +until we had crossed + +c 1 + +f 9 Gilgal + +along the sea +the hill of the foreskins +fall under itself + +Or + +fall flat +. + + or + +; similarly in verse 20 + + sounds like + +h 5 + means +Or + +; similarly in verse 20 + + 202 | Joshua 6:9 + +9 +of the covenant of the LORD followed them. +While the horns continued to sound, the armed +troops marched ahead of the priests who blew +10 +the horns, and the rear guard followed the ark. + +But Joshua had commanded the people: “Do +not give a battle cry or let your voice be heard; do +not let one word come out of your mouth until +11 +the day I tell you to shout. Then you are to shout!” +So he had the ark of the LORD carried around +the city, circling it once. And the people returned +12 +to the camp and spent the night there. + +13 + +Joshua got up early the next morning, and the +priests took the ark of the LORD. +And the seven +priests carrying seven rams’ horns kept march- +ing ahead of the ark of the LORD and blowing the +horns. The armed troops went in front of them +and the rear guard followed the ark of the LORD, +while the horns kept sounding. +So on the sec- +ond day they marched around the city once and +15 +returned to the camp. They did this for six days. + +14 + +a + +Then on the seventh day, they got up at dawn +and marched around the city seven times in the +16 +same manner. That was the only day they circled +the city seven times. +After the seventh time +around, the priests blew the horns, and Joshua +17 +commanded the people, “Shout! For the LORD +has given you the city! +Now the city and every- +thing in it must be devoted to the LORD for +destruction. + Only Rahab the prostitute and all +those with her in her house will live, because she +hid the spies we sent. +But keep away from the +things devoted to destruction, lest you yourself +be set apart for destruction. If you take any of +these, you will set apart the camp of Israel for de- +struction and bring disaster upon it. +For all the +silver and gold and all the articles of bronze and +iron are holy to the LORD; they must go into His +20 +treasury.” + +18 + +19 + +So when the rams’ horns sounded, the people +shouted. When they heard the blast of the horn, +the people gave a great shout, and the wall col- +lapsed. Then all the people charged straight into +the city and captured it. +With the edge of the +sword they devoted to destruction everything in +the city—man and woman, young and old, oxen, +22 +sheep, and donkeys. + +21 + +Meanwhile, Joshua told the two men who had +cherem +a 17 +spied out the land, “Go into the house of the + +b 26 + +23 + +prostitute and bring out the woman and all who +So the +are with her, just as you promised her.” +young spies went in and brought out Rahab, her +father and mother and brothers, and all who be- +longed to her. They brought out her whole family +24 +and settled them outside the camp of Israel. + +25 + +Then the Israelites burned up the city and eve- +rything in it. However, they put the silver and +gold and articles of bronze and iron into the +And Joshua +treasury of the LORD’s house. +spared Rahab the prostitute, with her father’s +household and all who belonged to her, because +she hid the men Joshua had sent to spy out Jeri- +cho. So she has lived among the Israelites to this +26 +day. + +At that time Joshua invoked this solemn oath: + +“Cursed before the LORD is the man + +who rises up + +and rebuilds this city, Jericho; + +at the cost of his firstborn + +he will lay its foundations; + + b +at the cost of his youngest +he will set up its gates.” + +27 + +So the LORD was with Joshua, and his fame + +The Defeat at Ai +spread throughout the land. + +7 + + d + +The Israelites, however, acted unfaithfully +c +regarding the things devoted to destruc- + the + Achan +tion. +son of Zerah, of the tribe of Judah, took some of +what was set apart. So the anger of the LORD +2 +burned against the Israelites. + + son of Carmi, the son of Zabdi, + +e + +Meanwhile, Joshua sent men from Jericho to Ai, +which is near Beth-aven to the east of Bethel, and +told them, “Go up and spy out the land.” So the +3 +men went up and spied out Ai. + +On returning to Joshua, they reported, “There is +no need to send all the people; two or three thou- +sand men are enough to go up and attack Ai. +Since the people of Ai are so few, you need not +4 +wear out all our people there.” + +5 + +So about three thousand men went up, but they +fled before the men of Ai. +And the men of Ai +struck down about thirty-six of them, chasing + and +them from the gate as far as the quarries +cherem + +c 1 + + f + +Forms of the Hebrew + + refer to the giving over of things or persons to the LORD, either by destroying them or + +by giving them as an offering; also in verses 18 and 21. +to the giving over of things or persons to the LORD, either by destroying them or by giving them as an offering; also in +Zimri +verses 11, 12, 13, and 15. + is a variant of + + in 1 Chronicles 2:7. + +See 1 Kings 16:34. + +Forms of the Hebrew + +as far as Shebarim + +; also called + +d 1 Achan + +e 1 Zabdi + +troubler + + means + +Achar + +f 5 + + refer + +; also in verses 17 and 18; see LXX and 1 Chronicles 2:6. + +Or + + Joshua 8:2 | 203 + +18 + +of Judah come forward, and the clan of the +Zerahites was selected. He had the clan of the +Zerahites come forward, and the family of Zabdi +was selected. +And he had the family of Zabdi +come forward man by man, and Achan son of +Carmi, the son of Zabdi, the son of Zerah, of the +19 +tribe of Judah, was selected. + +So Joshua said to Achan, “My son, give glory to +the LORD, the God of Israel, and make a confes- +sion to Him. I urge you to tell me what you have +20 +done; do not hide it from me.” + +a + +21 + +“It is true,” Achan replied, “I have sinned +against the LORD, the God of Israel. This is what +I did: +When I saw among the spoils a beautiful +b +cloak from Shinar, + two hundred shekels of sil- + I + and a bar of gold weighing fifty shekels, +ver, +coveted them and took them. They are hidden in +the ground inside my tent, with the silver under- +22 +neath.” + +c + +23 + +So Joshua sent messengers who ran to the tent, +and there it all was, hidden in his tent, with the +silver underneath. +They took the things from +inside the tent, brought them to Joshua and all +the Israelites, and spread them out before the +24 +LORD. + +Then Joshua, together with all Israel, took +Achan son of Zerah, the silver, the cloak, the bar +of gold, his sons and daughters, his oxen and don- +keys and sheep, his tent, and everything else he +25 +owned, and brought them to the Valley of Achor. + +26 + +“Why have you brought this trouble upon us?” +said Joshua. “Today the LORD will bring trouble +upon you!” And all Israel stoned him to death. +Then they stoned the others and burned their +bodies. +And they heaped over Achan a large +pile of rocks that remains to this day. So the +LORD turned from His burning anger. Therefore +that place is called the Valley of Achor + to this +The Conquest of Ai +day. + + d + +striking them down on the slopes. So the hearts +6 +of the people melted and became like water. + +Then Joshua tore his clothes and fell facedown +before the ark of the LORD until evening, as did +the elders of Israel; and they all sprinkled dust on +7 +their heads. + +8 + +“O, Lord GOD,” Joshua said, “why did You ever +bring this people across the Jordan to deliver us +into the hand of the Amorites to be destroyed? If +only we had been content to stay on the other +O Lord, what can I say, now +side of the Jordan! +9 +that Israel has turned its back and run from its +When the Canaanites and all who live +enemies? +in the land hear about this, they will surround us +and wipe out our name from the earth. Then +10 +what will You do for Your great name?” + +11 + +12 + +But the LORD said to Joshua, “Stand up! Why +have you fallen on your face? +Israel has sinned; +they have transgressed My covenant that I com- +manded them, and they have taken some of what +was devoted to destruction. Indeed, they have +stolen and lied, and they have put these things +This is why the Is- +with their own possessions. +raelites cannot stand against their enemies. They +will turn their backs and run from their enemies, +because they themselves have been set apart for +destruction. I will no longer be with you unless +you remove from among you whatever is de- +13 +voted to destruction. + +14 + +Get up and consecrate the people, saying, ‘Con- +secrate yourselves for tomorrow, for this is what +the LORD, the God of Israel, says: Among you, O +Israel, there are things devoted to destruction. +You cannot stand against your enemies until you +In the morning you must pre- +remove them. +sent yourselves tribe by tribe. The tribe that the +LORD selects shall come forward clan by clan, +and the clan that the LORD selects shall come for- +ward family by family, and the family that the +15 +LORD selects shall come forward man by man. +The one who is caught with the things devoted +to destruction must be burned, along with all +that belongs to him, because he has transgressed +the covenant of the LORD and committed an out- +The Sin of Achan +rage in Israel.’ +16 + +” + +8 + +2 + +Then the LORD said to Joshua, “Do not be +afraid or discouraged. Take the whole army +with you, and go up and attack Ai. See, I have de- +livered into your hand the king of Ai, his people, +And you shall do to Ai and +his city, and his land. +its king as you did to Jericho and its king, except +that you may carry off their plunder and live- +stock for yourselves. Set up an ambush behind +the city.” + is approximately 5 pounds or 2.3 kilograms of silver. + +c 21 50 shekels + +trouble + + is ap- + +So Joshua arose early the next morning and +had Israel come forward tribe by tribe, and the +a 21 +tribe of Judah was selected. +He had the clans +d 26 Achor + +b 21 200 shekels + +17 + +That is, Babylonia + +proximately 1.26 pounds or 569.8 grams of gold. + + means + +. + + 204 | Joshua 8:3 + +3 + +6 + +4 + +5 + +So Joshua and the whole army set out to +attack Ai. Joshua chose 30,000 mighty men of +with these or- +valor and sent them out at night +ders: “Pay attention. You are to lie in ambush be- +hind the city, not too far from it. All of you must +be ready. +Then I and all the troops with me will +advance on the city. When they come out against +us as they did the first time, we will flee from +They will pursue us until we have drawn +them. +them away from the city, for they will say, ‘The +Israelites are running away from us as they did +before.’ So as we flee from them, +you are to rise +from the ambush and seize the city, for the LORD +And +your God will deliver it into your hand. +when you have taken the city, set it on fire. Do as +the LORD has commanded! See, I have given you +9 +orders.” + +8 + +7 + +So Joshua sent them out, and they went to the +place of ambush and lay in wait between Bethel +and Ai, to the west of Ai. But Joshua spent that +10 +night among the people. + +11 + +Joshua got up early the next morning and mo- +bilized his men, and he and the elders of Israel +Then all the +marched before them up to Ai. +troops who were with him marched up and +approached the city. They arrived in front of Ai +and camped to the north of it, with the valley +12 +between them and the city. + +13 + +Now Joshua had taken about five thousand +men and set up an ambush between Bethel and +Ai, to the west of the city. +So the forces were +stationed with the main camp to the north of the +city and the rear guard to the west of the city. +14 +And that night Joshua went into the valley. + +15 + +When the king of Ai saw the Israelites, he hur- +ried out early in the morning with the men of the +city to engage them in battle at an appointed +place overlooking the Arabah. But he did not +know that an ambush had been set up against +Joshua and all Israel let +him behind the city. +themselves be beaten back before them, and they +Then all the men +fled toward the wilderness. +of Ai were summoned to pursue them, and they +followed Joshua and were drawn away from the +city. +Not a man was left in Ai or Bethel who did +not go out after Israel, leaving the city wide open +a 18 +while they pursued Israel. + +javelin + +16 + +17 + +b 26 + +18 + + a + +19 + +Then the LORD said to Joshua, “Hold out your +battle lance + toward Ai, for into your hand I will +deliver the city.” So Joshua held out his battle +and as soon as he did so, the +lance toward Ai, +men in ambush rose quickly from their position. +They rushed forward, entered the city, captured +20 +it, and immediately set it on fire. + +When the men of Ai turned and looked back, +the smoke of the city was rising into the sky. They +could not escape in any direction, and the troops +21 +who had fled to the wilderness now turned +against their pursuers. +When Joshua and all Is- +rael saw that the men in ambush had captured +the city and that smoke was rising from it, they +22 +turned around and struck down the men of Ai. +Meanwhile, those in the ambush came out of +the city against them, and the men of Ai were +trapped between the Israelite forces on both +sides. So Israel struck them down until no survi- +vor or fugitive remained. +But they took the +24 +king of Ai alive and brought him to Joshua. + +23 + +25 + +26 + +When Israel had finished killing all the men of +Ai who had pursued them into the field and wil- +derness, and when every last one of them had +fallen by the sword, all the Israelites returned to +Ai and put it to the sword as well. +A total of +twelve thousand men and women fell that day— +all the people of Ai. +Joshua did not draw back + b +the hand that held his battle lance until he had +devoted to destruction +Is- +rael took for themselves only the cattle and plun- +der of that city, as the LORD had commanded +28 +Joshua. + + all who lived in Ai. + +27 + + c + +29 + +So Joshua burned Ai + d + + and made it a permanent +He hung +heap of ruins, a desolation to this day. +the king of Ai on a tree + until evening, and at sun- +set Joshua commanded that they take down the +body from the tree and throw it down at the en- +trance of the city gate. And over it they raised a +Joshua Renews the Covenant (De. 27:1–10) +large pile of rocks, which remains to this day. +30 + +31 + +At that time Joshua built an altar on Mount +Ebal to the LORD, the God of Israel, +just as Mo- +ses the servant of the LORD had commanded the +Israelites. He built it according to what is written + e +in the Book of the Law of Moses: “an altar of un- +cut stones on which no iron tool has been used.” +And on it they offered burnt offerings to the +LORD, and they sacrificed peace offerings. +Forms of the Hebrew + + refer to the giving over of + +cherem + +c 28 Ai + +ruin + + means + +. + +Or + +e 31 +d 29 +things or persons to the LORD, either by destroying them or by giving them as an offering. + +He impaled the king of Ai on a pole + +; twice in this verse, and also in verse 26 + +Or + +Exodus 20:25; Deuteronomy 27:5 + + Joshua 9:24 | 205 + +32 + +33 + +And there in the presence of the Israelites, +Joshua inscribed on the stones a copy of the law +All Israel, for- +of Moses, which he had written. +eigners and citizens alike, with their elders, +officers, and judges, stood on both sides of the +ark of the covenant of the LORD facing the Levit- +ical priests who carried it. Half of the people +stood in front of Mount Gerizim and half of them +in front of Mount Ebal, as Moses the servant of +the LORD had commanded earlier, to bless the +34 +people of Israel. + +35 + +Afterward, Joshua read aloud all the words +of the law—the blessings and the curses— +according to all that is written in the Book of the +There was not a word of all that Moses +Law. +had commanded that Joshua failed to read before +the whole assembly of Israel, including the +women, the little ones, and the foreigners who +The Deceit of the Gibeonites +lived among them. + +11 + +He did to the two kings of the Amorites beyond +the Jordan—Sihon king of Heshbon and Og king +So the el- +of Bashan, who reigned in Ashtaroth. +ders and inhabitants of our land told us, ‘Take +provisions for your journey; go to meet them and +say to them: We are your servants. Please make +12 +a treaty with us.’ + +13 + +This bread of ours was warm when we packed +it at home on the day we left to come to you. But +These wineskins +look, it is now dry and moldy. +were new when we filled them, but look, they are +cracked. And these clothes and sandals are worn +14 +out from our very long journey.” + +Then the men of Israel sampled their provi- +15 +sions but did not seek the counsel of the LORD. +And Joshua made a treaty of peace with them +to let them live, and the leaders of the congrega- +16 +tion swore an oath to them. + +9 + +a + + b + +Now when news of this reached all the +kings west of the Jordan—those in the hill + and all along the coast of +country, the foothills, +the Great Sea + toward Lebanon (the Hittites, +2 +Amorites, Canaanites, Perizzites, Hivites, and +they came together to wage war +Jebusites)— +3 +against Joshua and Israel. + +4 + + c + +5 + +But the people of Gibeon, having heard what +acted decep- +Joshua had done to Jericho and Ai, +tively and set out as envoys, + carrying on their +donkeys worn-out sacks and old wineskins, +cracked and mended. +They put worn, patched +sandals on their feet and threadbare clothing on +their bodies, and their whole supply of bread was +They went to Joshua in the camp +dry and moldy. +at Gilgal and said to him and the men of Israel, + d +“We have come from a distant land; please make +7 +a treaty + + with us.” + +6 + +But the men of Israel said to the Hivites, “Per- +haps you dwell near us. How can we make a +8 +treaty with you?” + +“We are your servants,” they said to Joshua. + +Then Joshua asked them, “Who are you and +9 +where have you come from?” + +“Your servants have come from a very distant +land,” they replied, “because of the fame of the +LORD your God. For we have heard the reports +lowlands +Shephelah +a 1 +and all that +about Him: all that He did in Egypt, +berit +d 6 +set out with provisions + +10 + +18 + +17 + +Three days after they had made the treaty with +the Gibeonites, the Israelites learned that they +So the Is- +were neighbors, living among them. +raelites set out and on the third day arrived at +their cities—Gibeon, Chephirah, Beeroth, and +But the Israelites did not attack +Kiriath-jearim. +them, because the leaders of the congregation +had sworn an oath to them by the LORD, the God +of Israel. And the whole congregation grumbled +19 +against the leaders. + +21 + +20 + +All the leaders answered, “We have sworn an +oath to them by the LORD, the God of Israel, and +This is how we will +now we cannot touch them. +treat them: We will let them live, so that no wrath +will fall on us because of the oath we swore to +They continued, “Let them live, but let +them.” +them be woodcutters and water carriers for the +whole congregation.” So the leaders kept their +22 +promise. + +23 + +Then Joshua summoned the Gibeonites and +said, “Why did you deceive us by telling us you +live far away from us, when in fact you live +among us? +Now therefore you are under a +curse and will perpetually serve as woodcutters +24 +and water carriers for the house of my God.” + +The Gibeonites answered, “Your servants were +told clearly that the LORD your God had com- +manded His servant Moses to give you all the +land and wipe out all its inhabitants before you. +So we greatly feared for our lives because of you, +covenant +That is, the Mediterranean Sea + +b 1 + +c 4 + +Or + +Hebrew + + or + +16. + +; that is, the western foothills of Judea + +Forms of the Hebrew + + are translated in most passages as + +; also in vv. 7, 11, 15, + + 206 | Joshua 9:25 + +25 + +Now we are +and that is why we have done this. +in your hands. Do to us whatever seems good and +26 +right to you.” + +27 + +So Joshua did this and delivered them from the +hands of the Israelites, and they did not kill the +On that day he made them wood- +Gibeonites. +cutters and water carriers, as they are to this day +for the congregation of the LORD and for the al- +The Day the Sun Stood Still +tar at the place He would choose. + +10 + + a + +Now Adoni-zedek king of Jerusalem +heard that Joshua had captured Ai and +—doing to Ai and its +devoted it to destruction +king as he had done to Jericho and its king—and +2 +that the people of Gibeon had made peace with +So Adoni- +Israel and were living near them. +zedek and his people were greatly alarmed, be- +cause Gibeon was a great city, like one of the +royal cities; it was larger than Ai, and all its men +3 +were mighty. + +4 + +Therefore Adoni-zedek king of Jerusalem sent +word to Hoham king of Hebron, Piram king of +Jarmuth, Japhia king of Lachish, and Debir king of +“Come up and help me. We will +Eglon, saying, +attack Gibeon, because they have made peace +5 +with Joshua and the Israelites.” + +So the five kings of the Amorites—the kings +of Jerusalem, Hebron, Jarmuth, Lachish, and +Eglon—joined forces and advanced with all their +armies. They camped before Gibeon and made +6 +war against it. + +Then the men of Gibeon sent word to Joshua in +the camp at Gilgal: “Do not abandon your serv- +ants. Come quickly and save us! Help us, because +all the kings of the Amorites from the hill country +7 +have joined forces against us.” + +So Joshua and his whole army, including all the + +8 +mighty men of valor, came from Gilgal. + +The LORD said to Joshua, “Do not be afraid of +them, for I have delivered them into your hand. +9 +Not one of them shall stand against you.” + +10 + +After marching all night from Gilgal, Joshua +And the LORD threw +caught them by surprise. +them into confusion before Israel, who defeated +them in a great slaughter at Gibeon, pursued +them along the ascent to Beth-horon, and struck +cherem +a 1 +As +them down as far as Azekah and Makkedah. + +11 + +they fled before Israel along the descent from +Beth-horon to Azekah, the LORD cast down on +them large hailstones from the sky, and more of +them were killed by the hailstones than by the +12 +swords of the Israelites. + +On the day that the LORD gave the Amorites +over to the Israelites, Joshua spoke to the LORD +in the presence of Israel: + + b + +“O sun, stand still over Gibeon, + +13 + +O moon, over the Valley of Aijalon.” + +So the sun stood still +c + +and the moon stopped + +until the nation took vengeance + +upon its enemies. + + d + +Is this not written in the Book of Jashar? + +“So the sun stopped + e + +in the middle of the sky + +14 + +and delayed going down +about a full day.” + +There has been no day like it before or since, +when the LORD listened to the voice of a man, be- +15 +cause the LORD fought for Israel. + +Then Joshua returned with all Israel to the + +The Victory at Makkedah +camp at Gilgal. +16 + +17 + +Now the five kings had fled and hidden in the +And Joshua was informed: +cave at Makkedah. +“The five kings have been found; they are hiding +18 +in the cave at Makkedah.” + +19 + +So Joshua said, “Roll large stones against the +mouth of the cave, and post men there to guard +But you, do not stop there. Pursue your +them. +enemies and attack them from behind. Do not let +them reach their cities, for the LORD your God +20 +has delivered them into your hand.” + +21 + +So Joshua and the Israelites continued to inflict +a terrible slaughter until they had finished them +off, and the remaining survivors retreated to the +The whole army returned +fortified cities. +safely to Joshua in the camp at Makkedah, and no +22 +one dared to utter a word against the Israelites. + +23 + +Then Joshua said, “Open the mouth of the cave +and bring those five kings out to me.” +So they +brought the five kings out of the cave—the kings +of Jerusalem, Hebron, Jarmuth, Lachish, and +Eglon. +b 12 + +triumphed over its ene- + +c 13 + +Forms of the Hebrew + +mies +giving them as an offering; also in verses 28, 35, 37, 39, and 40. + +the Book of the Upright One + +d 13 + +Jasher + + refer to the giving over of things or persons to the LORD, either by destroying them or by + +e 13 + +See Jasher 88:63. + +Or + +Or + +, commonly cited as + +See Jasher 88:64. + + 24 + +36 + +Joshua 11:6 | 207 + +When they had brought the kings to Joshua, he +summoned all the men of Israel and said to the +army commanders who had accompanied him, +“Come here and put your feet on the necks of +these kings.” + +So the commanders came forward and put their +25 +feet on their necks. + +“Do not be afraid or discouraged,” Joshua said. +“Be strong and courageous, for the LORD will do +26 +this to all the enemies you fight.” + + a + +27 + +After this, Joshua struck down and killed the + and +kings, and he hung their bodies on five trees +At sunset Joshua +left them there until evening. +ordered that they be taken down from the trees +and thrown into the cave in which they had hid- +den. Then large stones were placed against the +mouth of the cave, and the stones are there to +28 +this day. + +On that day Joshua captured Makkedah and +put it to the sword, along with its king. He de- +voted to destruction everyone in the city, leaving +no survivors. So he did to the king of Makkedah +Conquest of the Southern Cities +as he had done to the king of Jericho. +29 + +30 + +Then Joshua and all Israel with him moved on +from Makkedah to Libnah and fought against +And the LORD also delivered that city +Libnah. +and its king into the hand of Israel, and Joshua +put all the people to the sword, leaving no survi- +vors. And he did to the king of Libnah as he had +31 +done to the king of Jericho. + +32 + +And Joshua and all Israel with him moved on +from Libnah to Lachish. They laid siege to it and +And the LORD delivered +fought against it. +Lachish into the hand of Israel, and Joshua cap- +tured it on the second day. He put all the people +33 +to the sword, just as he had done to Libnah. + +At that time Horam king of Gezer went to help +Lachish, but Joshua struck him down along with +34 +his people, leaving no survivors. + +35 + +So Joshua moved on from Lachish to Eglon, +and all Israel with him. They laid siege to it and +That day they captured Eglon +fought against it. +and put it to the sword, and Joshua devoted to +destruction everyone in the city, just as he had +a 26 +done to Lachish. + +impaled their bodies on five poles + +Or + +the heights of Dor +foothills of Judea + +Naphoth-dor +Hebrew + +c 2 + +Shephelah + +lowlands +; similarly in verse 27 +Naphath-dor + +Then Joshua and all Israel with him went up +37 +from Eglon to Hebron and fought against it. +They captured it and put to the sword its king, +all its villages, and all the people. Joshua left no +survivors, just as he had done at Eglon; he de- +38 +voted to destruction Hebron and everyone in it. + +39 + +Finally Joshua and all Israel with him turned +And they +toward Debir and fought against it. +captured Debir, its king, and all its villages. They +put them to the sword and devoted to destruc- +tion everyone in the city, leaving no survivors. +Joshua did to Debir and its king as he had done to +Hebron and as he had done to Libnah and its +40 +king. + +b + +So Joshua conquered the whole region—the +hill country, the Negev, the foothills, + and the +slopes, together with all their kings—leaving no +survivors. He devoted to destruction everything +that breathed, just as the LORD, the God of Israel, +Joshua conquered the area +had commanded. +from Kadesh-barnea to Gaza, and the whole re- +42 +gion of Goshen as far as Gibeon. + +41 + +And because the LORD, the God of Israel, +fought for Israel, Joshua captured all these kings +Then Joshua +and their land in one campaign. +Conquest of the Northern Cities +returned with all Israel to the camp at Gilgal. + +43 + +11 + +c + +2 + +Now when Jabin king of Hazor heard +about these things, he sent word to Jobab +king of Madon; to the kings of Shimron and +to the kings of the north in the moun- +Achshaph; + d +tains, in the Arabah south of Chinnereth, in the +to +foothills, +the Canaanites in the east and west; to the Amo- +rites, Hittites, Perizzites, and Jebusites in the hill +country; and to the Hivites at the foot of Hermon +4 +in the land of Mizpah. + + and in Naphoth-dor + + to the west; + +3 + +5 + +So these kings came out with all their armies, a +multitude as numerous as the sand on the sea- +shore, along with a great number of horses and +All these kings joined forces and en- +chariots. +camped at the waters of Merom to fight against +6 +Israel. + +Then the LORD said to Joshua, “Do not be afraid +of them, for by this time tomorrow I will deliver +all of them slain before Israel. You are to ham- +string their horses and burn up their chariots.” +in +; that is, the western + +Shephelah + +lowlands + +Hebrew + +b 40 + +d 2 + + or + +; + + or + is a variant of + +; that is, the western foothills of Judea; also in verse 16 + +Or + +; see Joshua 12:23. + + 208 | Joshua 11:7 + +7 + +21 + +8 + +So by the waters of Merom, Joshua and his +whole army came upon them suddenly and at- +tacked them, +and the LORD delivered them into +the hand of Israel, who struck them down and +pursued them all the way to Greater Sidon and +Misrephoth-maim, and eastward as far as the +Valley of Mizpeh. They struck them down, leav- +ing no survivors. +Joshua treated them as the +LORD had told him; he hamstrung their horses +10 +and burned up their chariots. + +9 + +11 + +At that time Joshua turned back and captured +Hazor and put its king to the sword, because +Hazor was formerly the head of all these king- +doms. +The Israelites put everyone in Hazor to +the sword, devoting them to destruction. + Noth- +ing that breathed remained, and Joshua burned +12 +down Hazor itself. + +a + +13 + +Joshua captured all these kings and their cities +and put them to the sword. He devoted them to +destruction, as Moses the LORD’s servant had +commanded. +Yet Israel did not burn any of the +cities built on their mounds, except Hazor, which +14 +Joshua burned. + +15 + +The Israelites took for themselves all the plun- +der and livestock of these cities, but they put all +the people to the sword until they had com- +pletely destroyed them, not sparing anyone who +breathed. +As the LORD had commanded His +servant Moses, so Moses commanded Joshua. +That is what Joshua did, leaving nothing undone +Joshua Takes the Whole Land +of all that the LORD had commanded Moses. +16 + +17 + +So Joshua took this entire region: the hill coun- +try, all the Negev, all the land of Goshen, the west- +ern foothills, the Arabah, and the mountains of +Israel and their foothills, +from Mount Halak, +which rises toward Seir, as far as Baal-gad in the +Valley of Lebanon at the foot of Mount Hermon. +He captured all their kings and struck them +18 +down, putting them to death. + +19 + +At that time Joshua proceeded to eliminate the +Anakim from the hill country of Hebron, Debir, +and Anab, and from all the hill country of Judah +and of Israel. Joshua devoted them to destruc- +No Anakim were +tion, along with their cities. +left in the land of the Israelites; only in Gaza, +23 +Gath, and Ashdod did any survive. + +22 + +So Joshua took the entire land, in keeping with +all that the LORD had spoken to Moses. And +Joshua gave it as an inheritance to Israel accord- +ing to the allotments to their tribes. Then the +The Kings Defeated East of the Jordan +land had rest from war. + +12 + +Now these are the kings of the land +whom the Israelites struck down and +whose lands they took beyond the Jordan to the +east, from the Arnon Valley to Mount Hermon, in- +cluding all the Arabah eastward: + +2 + +Sihon king of the Amorites, who lived in +Heshbon. He ruled from Aroer on the rim of +the Arnon Valley, along the middle of the val- +ley, up to the Jabbok River (the border of the + c +as well +Ammonites), that is, half of Gilead, + d +as the Arabah east of the Sea of Chinnereth +to the Sea of the Arabah (the Salt Sea +), east- +ward through Beth-jeshimoth, and south- +4 +ward below the slopes of Pisgah. + +3 + +e + +5 + +And Og king of Bashan, + + one of the remnant +of the Rephaim, who lived in Ashtaroth and +He ruled over Mount Hermon, +Edrei. +Salecah, all of Bashan up to the border of the +Geshurites and Maacathites, and half of Gil- +ead to the border of Sihon king of Heshbon. + +6 + +Moses, the servant of the LORD, and the Israel- +ites had struck them down and given their land +as an inheritance to the Reubenites, the Gadites, +The Kings Defeated West of the Jordan +and the half-tribe of Manasseh. +7 + + b + +20 + +Joshua waged war against all these kings for a +long period of time. +No city made peace with +the Israelites except the Hivites living in Gibeon; +all others were taken in battle. +For it was of the +LORD to harden + their hearts to engage Israel in +battle, so that they would be set apart for de- +struction and would receive no mercy, being an- +cherem +a 11 +nihilated as the LORD had commanded Moses. + +And these are the kings of the land that Joshua +and the Israelites conquered beyond the Jordan +to the west, from Baal-gad in the Valley of Leba- +non to Mount Halak, which rises toward Seir (ac- +cording to the allotments to the tribes of Israel, +the hill +Joshua gave them as an inheritance +country, the foothills, + the Arabah, the slopes, the +wilderness, and the Negev—the lands of the +c 3 +b 20 +And the territory of Og king of Bashan + + refer to the giving over of things or persons to the LORD, either by destroying them or + or + +d 3 +by giving them as an offering; also in verses 12, 20, and 21. + +Shephelah +That is, the Sea of Galilee + +Forms of the Hebrew + +strengthen + +lowlands + +stiffen + +e 4 + +Or + +f 8 + +8 + +f + +That is, the Dead Sea + +LXX; Hebrew + +that is, the western foothills of Judea + +Hebrew + + or + +; + + Hittites, Amorites, Canaanites, Perizzites, Hivites, +and Jebusites): + +9 + +the king of Jericho, one; + +10 +the king of Ai, which is near Bethel, one; + +the king of Jerusalem, one; + +11 +the king of Hebron, one; + +the king of Jarmuth, one; + +12 +the king of Lachish, one; +the king of Eglon, one; + +13 +the king of Gezer, one; + +the king of Debir, one; + +14 +the king of Geder, one; + +the king of Hormah, one; + +15 +the king of Arad, one; + +the king of Libnah, one; +16 +the king of Adullam, one; + +the king of Makkedah, one; + +17 +the king of Bethel, one; + +the king of Tappuah, one; + +18 +the king of Hepher, one; + +the king of Aphek, one; +19 +the king of Lasharon, one; +the king of Madon, one; + +20 +the king of Hazor, one; + +the king of Shimron-meron, one; + +21 +the king of Achshaph, one; +the king of Taanach, one; + +22 +the king of Megiddo, one; +the king of Kedesh, one; + +23 +the king of Jokneam in Carmel, one; + +a + +b + +the king of Dor in Naphath-dor, + one; + +24 +the king of Goiim in Gilgal, + + one; + +and the king of Tirzah, one. + +Lands Yet Unconquered (Judges 1:1–7) +So there were thirty-one kings in all. + +13 + +Now Joshua was old and well along in +years, and the LORD said to him, “You are +old and well along in years, but very much of the +This is the land +land remains to be possessed. +that remains: + +2 + +3 + +Joshua 13:14 | 209 + +the territory of Ekron on the north (consid- +ered to be Canaanite territory)—that of +the five Philistine rulers of Gaza, Ashdod, +Ashkelon, Gath, and Ekron, as well as that of +4 +the Avvites; + + c + +to the south, all the land of the Canaanites, + of the Sidonians to Aphek, as + +from Mearah +5 +far as the border of the Amorites; + + d + +the land of the Gebalites; + +and all Lebanon to the east, from Baal-gad +below Mount Hermon to Lebo-hamath. + +6 + +All the inhabitants of the hill country from Leb- +anon to Misrephoth-maim—all the Sidonians—I +Myself will drive out before the Israelites. Be +sure to divide it by lot as an inheritance to Israel, +Now therefore di- +as I have commanded you. +vide this land as an inheritance to the nine tribes +The Inheritance East of the Jordan +and the half-tribe of Manasseh.” +(Numbers 32:1–42 ; Deuteronomy 3:12–22) + +7 + +8 + +The other half of Manasseh, along with the Reu- +benites and Gadites, had received the inheritance +Moses had given them beyond the Jordan to the +east, just as Moses the servant of the LORD had +assigned to them: + +9 + +10 + +The area from Aroer on the rim of the Ar- +non Valley, along with the city in the middle +of the valley, the whole plateau of Medeba as +far as Dibon, +and all the cities of Sihon king +of the Amorites who reigned in Heshbon, as +11 +far as the border of the Ammonites; + +also Gilead and the territory of the +Geshurites and Maacathites, all of Mount +12 +Hermon, and all Bashan as far as Salecah— +the whole kingdom of Og in Bashan, who +had reigned in Ashtaroth and Edrei and had +remained as a remnant of the Rephaim. + +13 + +Moses had struck them down and dispossessed +them, +but the Israelites did not drive out the +Geshurites or the Maacathites. So Geshur and +14 +Maacath dwell among the Israelites to this day. + +To the tribe of Levi, however, Moses had given +no inheritance. The food offerings to the LORD, +the God of Israel, are their inheritance, just as He +had promised them. +Goyim in Galilee + +b 23 + +All the territory of the Philistines and the Ge- +from the Shihor east of Egypt to +shurites, +d 5 +Arah + +in the heights of Dor + +the area of Byblos + +Naphath-dor + +a 23 +c 4 + +Naphoth-dor + +Or + +Or + +Or + +; + + is a variant of + +; see Joshua 11:2. + +Hebrew; LXX + + 210 | Joshua 13:15 + +Reuben’s Inheritance + +15 + +This is what Moses had given to the clans of the +16 + +tribe of Reuben: + +17 + +19 + +20 + +18 + +The territory from Aroer on the rim of the +Arnon Valley, along with the city in the +middle of the valley, to the whole plateau +to Heshbon and all its cit- +beyond Medeba, +ies on the plateau, including Dibon, Bamoth- +Jahaz, Kedemoth, +baal, Beth-baal-meon, +Mephaath, +Kiriathaim, Sibmah, Zereth- +Beth-peor, +shahar on the hill in the valley, +21 +the slopes of Pisgah, and Beth-jeshimoth— +all the cities of the plateau and all the king- +dom of Sihon king of the Amorites, who +reigned in Heshbon until Moses killed him +and the chiefs of Midian (Evi, Rekem, Zur, +Hur, and Reba), the princes of Sihon who +22 +lived in the land. + +23 + +The Israelites also killed the diviner Ba- +laam son of Beor along with the others they +And the border of the +put to the sword. +Reubenites was the bank of the Jordan. + +This was the inheritance of the clans of the Reu- +Gad’s Inheritance +benites, including the cities and villages. +24 + +This is what Moses had given to the clans of the +25 + +tribe of Gad: + +The territory of Jazer, all the cities of Gil- +ead, and half the land of the Ammonites as +26 +far as Aroer, near Rabbah; + +the territory from Heshbon to Ramath- +mizpeh and Betonim, and from Mahanaim to +27 +the border of Debir; + + a + +and in the valley, Beth-haram, Beth-nim- +rah, Succoth, and Zaphon, with the rest of the +kingdom of Sihon king of Heshbon (the terri- +tory on the east side of the Jordan up to the +edge of the Sea of Chinnereth + +). + + b + +28 + +This was the inheritance of the clans of the + +Manasseh’s Eastern Inheritance +Gadites, including the cities and villages. +29 + +This is what Moses had given to the clans of the +half-tribe of Manasseh, that is, to half the tribe of +the descendants of Manasseh: + +30 + +31 + +Bashan, including all the towns of Jair that +half of Gilead; +are in Bashan, sixty cities; +and Ashtaroth and Edrei, the royal cities of +Og in Bashan. + +All this was for the clans of the descendants +of Machir son of Manasseh, that is, half of the de- +32 +scendants of Machir. + +These were the portions Moses had given +them on the plains of Moab beyond the Jordan, +33 +east of Jericho. + +To the tribe of Levi, however, Moses had given +no inheritance. The LORD, the God of Israel, is +Land Division West of the Jordan +their inheritance, just as He had promised them. + +14 + +2 + +Now these are the portions that the Isra- +elites inherited in the land of Canaan, as +distributed by Eleazar the priest, Joshua son of +Nun, and the heads of the families of the tribes of +Their inheritance was assigned by lot for +Israel. +the nine and a half tribes, as the LORD had com- +For Moses had given +manded through Moses. +the inheritance east of the Jordan to the other +two and a half tribes. But he granted no inher- +4 +itance among them to the Levites. + +3 + +The descendants of Joseph became two tribes, +Manasseh and Ephraim. And no portion of the +land was given to the Levites, except for cities in +which to live, along with pasturelands for their +5 +flocks and herds. + +So the Israelites did as the LORD had com- + +Caleb Requests Hebron +manded Moses, and they divided the land. +6 + +7 + +Then the sons of Judah approached Joshua at +Gilgal, and Caleb son of Jephunneh the Kenizzite +said to him, “You know what the LORD said to +Moses the man of God at Kadesh-barnea about +I was forty years old when Moses +you and me. +the servant of the LORD sent me from Kadesh- +barnea to spy out the land, and I brought back to +8 +him an honest report. + +9 + +Although my brothers who went with me made +the hearts of the people melt with fear, I re- +On that day +mained loyal to the LORD my God. +Moses swore to me, saying, ‘Surely the land on +which you have set foot will be an inheritance to +you and your children forever, because you have +wholly followed the LORD my God.’ + +The territory from Mahanaim through all +Bashan—all the kingdom of Og king of + +Li-debir + +a 26 +b 27 + +Lo-debar + +LXX, Syriac, and Vulgate; Hebrew +That is, the Sea of Galilee + +, a variant of + +; see 2 Samuel 9:4, 2 Samuel 17:27, and Amos 6:13. + + 10 + +11 + +Now behold, as the LORD promised, He has +kept me alive these forty-five years since He +spoke this word to Moses, while Israel wandered +in the wilderness. So here I am today, eighty-five +years old, +still as strong today as I was the day +Moses sent me out. As my strength was then, so +12 +it is now for war, for going out, and for coming in. + +Now therefore give me this hill country that +the LORD promised me on that day, for you your- +self heard then that the Anakim were there, with +great and fortified cities. Perhaps with the +LORD’s help I will drive them out, as the LORD +13 +has spoken.” + +15 + +14 +and gave him Hebron as his + +Then Joshua blessed Caleb son of Jephunneh +inheritance. +Therefore Hebron belongs to Caleb son of +Jephunneh the Kenizzite as an inheritance to this +day, because he wholly followed the LORD, the +God of Israel. +(Hebron used to be called Kir- +iath-arba, after Arba, the greatest man among the +Anakim.) +Judah’s Inheritance +Then the land had rest from war. + +15 + +Now the allotment for the clans of the +tribe of Judah extended to the border of +Edom, to the Wilderness of Zin at the extreme +southern boundary: + +2 + +a + +3 +b + +Their southern border started at the bay on +the southern tip of the Salt Sea, +proceeded + continued +south of the Ascent of Akrabbim, +on to Zin, went over to the south of Kadesh- +barnea, ran past Hezron up to Addar, and +curved toward Karka. +It proceeded to + d +Azmon, joined the Brook of Egypt, and ended +5 +at the Sea. + southern border. + + This was their + +4 + +c + +The eastern border was the Salt Sea as far + +as the mouth of the Jordan. + +6 + +7 + +The northern border started from the bay of +the sea at the mouth of the Jordan, +went up +to Beth-hoglah, proceeded north of Beth- +arabah, and went up to the Stone of Bohan +son of Reuben. +Then the border went up to +Debir from the Valley of Achor, turning north +to Gilgal, which faces the Ascent of Adum- +mim south of the ravine. It continued along +the waters of En-shemesh and came out at +En-rogel. +From there the border went up +a 2 +the Valley of Ben-hinnom along the southern + +b 3 + +8 + +That is, the Dead Sea; also in verse 5 + +Or +and he urged her + +Joshua 15:21 | 211 + +9 + +10 + +slope of the Jebusites (that is, Jerusalem) and +ascended to the top of the hill that faces the +Valley of Hinnom on the west, at the north- +ern end of the Valley of Rephaim. +From the +hilltop the border curved to the spring of the +Waters of Nephtoah, proceeded to the cities +of Mount Ephron, and then bent around to- +ward Baalah (that is, Kiriath-jearim). +The +border curled westward from Baalah to +Mount Seir, ran along the northern slope of +Mount Jearim (that is, Chesalon), went down +11 +to Beth-shemesh, and crossed to Timnah. +Then it went out to the northern slope of +Ekron, curved toward Shikkeron, proceeded +to Mount Baalah, went on to Jabneel, and +12 +ended at the Sea. + +And the western border was the coastline + +of the Great Sea. + +These are the boundaries around the clans of the +Caleb’s Portion and Conquest (Judges 1:8–26) +descendants of Judah. +13 + +According to the LORD’s command to him, +Joshua gave Caleb son of Jephunneh a portion +among the sons of Judah—Kiriath-arba, that is, +14 +Hebron. (Arba was the forefather of Anak.) +And Caleb drove out from there the three sons +of Anak—the descendants of Sheshai, Ahiman, +15 +and Talmai, the children of Anak. + +16 + +From there he marched against the inhabit- +ants of Debir (formerly known as Kiriath- +And Caleb said, “To the man who +sepher). +strikes down Kiriath-sepher and captures it, I +So +will give my daughter Acsah in marriage.” +Othniel son of Caleb’s brother Kenaz captured +the city, and Caleb gave his daughter Acsah to + e +18 +him in marriage. + +17 + +One day Acsah came to Othniel and urged him +to ask her father for a field. When she got off her +19 +donkey, Caleb asked her, “What do you desire?” + +“Give me a blessing,” she answered. “Since you +have given me land in the Negev, give me springs +of water as well.” + +So Caleb gave her both the upper and lower +The Cities of Judah +springs. +20 + +21 + +Sea, also called the Great Sea; also in verses 11, 12, and 47 +scripts; other LXX manuscripts + +; see Judges 1:14. + +LXX; Hebrew + +Hebrew and some LXX manu- + +the Ascent of Scorpions + +This is the inheritance of the clans of the tribe +c 4 +These were the southernmost cities +your +That is, the Mediterranean + +of Judah. +d 4 + or + +Scorpion Pass + +e 18 + + 212 | Joshua 15:22 + +60 + +22 + +24 + +27 + +25 + +Kedesh, Hazor, Ithnan, + +of the tribe of Judah in the Negev toward the bor- +der of Edom: +23 +Kabzeel, Eder, Jagur, +Adadah, +Telem, Bealoth, +hezron (that is, Hazor), +28 +Moladah, +29 +pelet, +Baalah, +32 +Hormah, + +Kinah, Dimonah, +Ziph, +26 +Hazor-hadattah, Kerioth- +Amam, Shema, +Hazar-gaddah, Heshmon, Beth- +30 +Hazar-shual, Beersheba, Biziothiah, +31 +Iim, Ezem, +Eltolad, Chesil, +Ziklag, Madmannah, Sansannah, +Lebaoth, Shilhim, Ain, and Rimmon— +twenty-nine cities in all, along with their +villages. + +33 + + a + +These were in the foothills: + +34 +35 + +36 + +Eshtaol, +Zorah, Ashnah, +Zanoah, +Jarmuth, +En-gannim, Tappuah, Enam, +Shaaraim, +Adullam, Socoh, Azekah, +Adithaim, and Gederah (or Gederothaim)— +37 +fourteen cities, along with their villages. + +40 +Mizpeh, Joktheel, + +39 +Zenan, Hadashah, Migdal-gad, +Dilan, +41 +Lachish, Bozkath, Eglon, +Gederoth, +Beth-dagon, Naamah, and Makkedah— +42 +sixteen cities, along with their villages. + +Cabbon, Lahmas, Chitlish, + +38 + +43 + +44 + +Libnah, Ether, Ashan, + +Iphtah, Ashnah, +Keilah, Achzib, and Mareshah— + +Nezib, +45 +nine cities, along with their villages. + +46 + +47 + +Ekron, with its towns and villages; + +from +Ekron to the sea, all the cities near Ashdod, +Ashdod, with its +along with their villages; +towns and villages; Gaza, with its towns and +villages, as far as the Brook of Egypt and the +coastline of the Great Sea. + +48 + +49 + +51 + +These were in the hill country: + +50 +Dannah, Kiriath-san- +Anab, Eshtemoh, +Goshen, Holon, and Giloh—eleven + +Shamir, Jattir, Socoh, +nah (that is, Debir), +Anim, +52 +cities, along with their villages. + +53 + +54 + +Arab, Dumah, Eshan, + +Janim, Beth- +Humtah, Kiriath-arba +tappuah, Aphekah, +(that is, Hebron), and Zior—nine cities, along +55 +with their villages. + +56 + +57 + +Maon, Carmel, Ziph, Juttah, + +Jezreel, +Jokdeam, Zanoah, +Kain, Gibeah, and +59 +58 +Timnah—ten cities, along with their villages. + +Halhul, Beth-zur, Gedor, + +Maarath, +Beth-anoth, and Eltekon—six cities, along +lowlands +with their villages. + or + +a 33 +Bethel to Luz +Hebrew + +Shephelah +c 3 + +Kiriath-baal (that is, Kiriath-jearim), +and Rabbah—two cities, along with their +villages. + +61 + +These were in the wilderness: + +62 + +Beth-arabah, Middin, Secacah, +Nibshan, +the City of Salt, and En-gedi—six cities, along +with their villages. + +63 + +But the descendants of Judah could not drive +out the Jebusites living in Jerusalem. So to this +day the Jebusites live there among the descend- +Ephraim’s Inheritance +ants of Judah. + +16 + + b + +2 + +The allotment for the descendants of Jo- +seph extended from the Jordan at Jericho +to the waters of Jericho on the east, through the +wilderness that goes up from Jericho into the hill +country of Bethel. +It went on from Bethel (that +3 +is, Luz) + and proceeded to the border of the Ar- +Then it descended westward +chites in Ataroth. +to the border of the Japhletites as far as the bor- +c +der of Lower Beth-horon and on to Gezer, and it +4 +ended at the Sea. + +5 + +So Ephraim and Manasseh, the sons of Joseph, +received their inheritance. +This was the terri- +tory of the descendants of Ephraim by their +clans: + +7 + +6 + +The border of their inheritance went from +Ataroth-addar in the east to Upper Beth-ho- +and out toward the Sea. From Michme- +ron +thath on the north it turned eastward toward +Taanath-shiloh and passed by it to Janoah on +From Janoah it went down to Ata- +the east. +roth and Naarah, and then reached Jericho +From Tappuah +and came out at the Jordan. +the border went westward to the Brook of +Kanah and ended at the Sea. + +8 + +9 + +This was the inheritance of the clans of the tribe +along with all the cities and villages +of Ephraim, +10 +set apart for the descendants of Ephraim within +But they did not +the inheritance of Manasseh. +drive out the Canaanites who lived in Gezer. So +the Canaanites dwell among the Ephraimites to +Manasseh’s Western Inheritance +this day, but they are forced laborers. + +17 + +Now this was the allotment for the tribe +of Manasseh as Joseph’s firstborn son, +namely for Machir the firstborn of Manasseh and +from +father of the Gileadites, who had received Gilead + +b 2 + +; that is, the western foothills of Judea + +LXX (See also Joshua 18:13); Hebrew + +That is, the Mediterranean Sea, also called the Great Sea; also in verses 6 and 8 + + 2 +and Bashan because Machir was a man of war. +a +So this allotment was for the rest of the de- +scendants of Manasseh—the clans of Abiezer, +Helek, Asriel, Shechem, Hepher, and Shemida. +These are the other male descendants of the +3 +clans of Manasseh son of Joseph. + +4 + +But Zelophehad son of Hepher (the son of Gil- +ead, the son of Machir, the son of Manasseh) had +no sons but only daughters. These are the names +of his daughters: Mahlah, Noah, Hoglah, Milcah, +and Tirzah. +They approached Eleazar the priest, +Joshua son of Nun, and the leaders, and said, “The +LORD commanded Moses to give us an inher- +itance among our brothers.” + +5 + +6 + +So Joshua gave them an inheritance among their +father’s brothers, in keeping with the command +of the LORD. +Thus ten shares fell to Manasseh, +in addition to the land of Gilead and Bashan +beyond the Jordan, +because the daughters of +Manasseh received an inheritance among his +sons. And the land of Gilead belonged to the rest +of the sons of Manasseh. + +7 + +8 + +Now the border of Manasseh went from +Asher to Michmethath near Shechem, then +southward to include the inhabitants of En- +The region of Tappuah belonged +tappuah. +to Manasseh, but Tappuah itself, on the bor- +9 +der of Manasseh, belonged to Ephraim. +From there the border continued south- +ward to the Brook of Kanah. There were +cities belonging to Ephraim among the cities +of Manasseh, but the border of Manasseh +was on the north side of the brook and ended +Ephraim’s territory was to the +at the Sea. +south, and Manasseh’s was to the north, hav- +ing the Sea as its border and adjoining Asher +11 +on the north and Issachar on the east. + +10 + +b + +Within Issachar and Asher, Manasseh was +assigned Beth-shean, Ibleam, Dor (that is, +Naphath), Endor, Taanach, and Megiddo, +each with their surrounding settlements. + +12 + +13 + +But the descendants of Manasseh were unable +to occupy these cities, because the Canaanites +However, +were determined to stay in this land. +when the Israelites grew stronger, they put the +Canaanites to forced labor; but they failed to +14 +drive them out completely. + +Then the sons of Joseph said to Joshua, “Why +have you given us only one portion as an inher- +itance? We have many people, because the LORD +a 2 Abiezer +has blessed us abundantly.” + is a variant of + +; see Num. 26:30. + +Iezer + +b 9 + +Joshua 18:8 | 213 + +15 + +Joshua answered them, “If you have so many +people that the hill country of Ephraim is too +small for you, go to the forest and clear for your- +self an area in the land of the Perizzites and the +16 +Rephaim.” + +“The hill country is not enough for us,” they +replied, “and all the Canaanites who live in the +valley have iron chariots, both in Beth-shean +17 +with its towns and in the Valley of Jezreel.” + +18 + +So Joshua said to the house of Joseph—to +Ephraim and Manasseh—“You have many peo- +ple and great strength. You shall not have just +because the hill country will be +one allotment, +yours as well. It is a forest; clear it, and its far- +thest limits will be yours. Although the Canaan- +ites have iron chariots and although they are +The Remainder Divided +strong, you can drive them out.” + +18 + +Then the whole congregation of Israel +assembled at Shiloh and set up the Tent +2 +of Meeting there. And though the land was +there were still seven +subdued before them, +tribes of Israel who had not yet received their +3 +inheritance. + +5 + +So Joshua said to the Israelites, “How long will +you put off entering and possessing the land that +4 +the LORD, the God of your fathers, has given you? +Appoint three men from each tribe, and I will +send them out to survey the land and map it out, +according to the inheritance of each. Then they +and divide the land into seven +will return to me +portions. Judah shall remain in their territory in +the south, and the house of Joseph shall remain +When you have +in their territory in the north. +mapped out the seven portions of land and +brought it to me, I will cast lots for you here in +7 +the presence of the LORD our God. + +6 + +The Levites, however, have no portion among +you, because their inheritance is the priesthood +of the LORD. And Gad, Reuben, and half the tribe +of Manasseh have already received the inher- +itance that Moses the servant of the LORD gave +8 +them beyond the Jordan to the east.” + +As the men got up to go out, Joshua commanded +them to map out the land, saying, “Go and survey +the land, map it out, and return to me. Then I will +cast lots for you here in Shiloh in the presence of +the LORD.” + +That is, the Mediterranean Sea, also called the Great Sea; also in v. 10 + + 214 | Joshua 18:9 + +9 + +So the men departed and went throughout the +land, mapping it city by city into seven portions. +Then they returned with the document to Joshua +10 +at the camp in Shiloh. + +And Joshua cast lots for them in the presence +of the LORD at Shiloh, where he distributed the +Benjamin’s Inheritance +land to the Israelites according to their divisions. +11 + +The first lot came up for the clans of the tribe +of Benjamin. Their allotted territory lay between +the tribes of Judah and Joseph: + +12 + +13 + +On the north side their border began at the +Jordan, went up past the northern slope of +Jericho, headed west through the hill coun- +try, and came out at the wilderness of Beth- +From there the border crossed over +aven. +to the southern slope of Luz (that is, Bethel) +and went down to Ataroth-addar on the hill +14 +south of Lower Beth-horon. + +On the west side the border curved south- +ward from the hill facing Beth-horon on the +south and came out at Kiriath-baal (that is, +Kiriath-jearim), a city of the sons of Judah. +15 +This was the western side. + +17 + +16 + +On the south side the border began at the +outskirts of Kiriath-jearim and extended +westward to the spring at the Waters of +Then it went down to the foot +Nephtoah. +of the hill that faces the Valley of Ben- +hinnom at the northern end of the Valley of +Rephaim and ran down the Valley of Hinnom +toward the southern slope of the Jebusites +From there it +and downward to En-rogel. +curved northward and proceeded to En- +shemesh and on to Geliloth facing the Ascent +of Adummim, and continued down to the +Then it +Stone of Bohan son of Reuben. +went on to the northern slope of Beth- +19 + and went down into the valley. +arabah +The border continued to the northern +slope of Beth-hoglah and came out at the + at the mouth of +northern bay of the Salt Sea, +20 +the Jordan. This was the southern border. + +18 + + a + +b + +On the east side the border was the Jordan. + +These were the borders around the inheritance +21 +of the clans of the tribe of Benjamin. + +These were the cities of the clans of the tribe + +of Benjamin: +a 18 +d 28 +site + +slope facing the Arabah + +b 19 + +Gibeath + +e 28 + +LXX; Hebrew + +Hebrew + +LXX; Hebrew + +22 + +23 + +24 + +Jericho, Beth-hoglah, Emek-keziz, +Beth- +Avvim, Parah, +arabah, Zemaraim, Bethel, +Chephar-ammoni, Ophni, and +Ophrah, +Geba—twelve cities, along with their vil- +25 +lages. + +26 + +27 + +Gibeon, Ramah, Beeroth, + + c + +28 +Chephirah, Mozah, + +d + +Zelah, Haeleph, Jebus + +Gibeah, + and Kiriath-jearim +ies, along with their villages. + + e + +Mizpeh, +Rekem, Irpeel, Taralah, + (that is, Jerusalem), +—fourteen cit- + +This was the inheritance of the clans of the tribe +Simeon’s Inheritance +of Benjamin. + +19 + +The second lot came out for the clans of +the tribe of Simeon: +2 + +3 + +Their inheritance lay within the territory of +and included Beersheba (or Sheba), +Judah +5 +4 +Hazar-shual, Balah, Ezem, +Moladah, +6 +Ziklag, Beth- +Beth-lebaoth, and +marcaboth, Hazar-susah, +Sharuhen—thirteen cities, along with their +7 +villages. + +Eltolad, Bethul, Hormah, + +8 + +Ain, Rimmon, Ether, and Ashan—four cit- +and all the +ies, along with their villages, +villages surrounding these cities as far as +Baalath-beer (Ramah of the Negev). + +9 + +This was the inheritance of the clans of the tribe +The inheritance of the Simeonites +of Simeon. +was taken from the territory of Judah, because +the share for Judah’s descendants was too large +for them. So the Simeonites received an inher- +Zebulun’s Inheritance +itance within Judah’s portion. +10 + +The third lot came up for the clans of the tribe + +of Zebulun: + +11 + +13 + +12 + +The border of their inheritance stretched as +far as Sarid. +It went up westward to +Maralah, reached Dabbesheth, and met the +From Sarid it +brook east of Jokneam. +turned eastward along +the border of +Chisloth-tabor and went on to Daberath and +From there it crossed +up to Japhia. +eastward to Gath-hepher and to Eth-kazin; it +extended to Rimmon and curved around +Then the border circled +toward Neah. +around the north side of Neah to Hannathon +It also +and ended at the Valley of Iphtah-el. +the Jebu- + +c 28 + +15 + +14 + +Kiriath +That is, the Dead Sea + +LXX, Syriac, and Vulgate; Hebrew + + included Kattath, Nahalal, Shimron, Idalah, +and Bethlehem. There were twelve cities, +along with their villages. + +16 + +This was the inheritance of the clans of the +tribe of Zebulun, including these cities and their +Issachar’s Inheritance +villages. +17 + +The fourth lot came out for the clans of the +18 + +tribe of Issachar: + +19 + +22 + +20 + +Their + +territory +Chesulloth, Shunem, +21 +Anaharath, + +included +Jezreel, +Hapharaim, Shion, +Rabbith, Kishion, Ebez, +Remeth, En-gannim, En-haddah, and +The border reached Tabor, +Beth-pazzez. +Shahazumah, and Beth-shemesh, and ended +at the Jordan. There were sixteen cities, +along with their villages. + +23 + +This was the inheritance of the clans of the +tribe of Issachar, including these cities and their +Asher’s Inheritance +villages. +24 + +The fifth lot came out for the clans of the tribe +25 + +of Asher: + +26 + +28 + +27 + +Their territory included Helkath, Hali, +Allammelech, Amad, and +Beten, Achshaph, +Mishal. On the west the border touched +then turned +Carmel and Shihor-libnath, +eastward +touched +toward Beth-dagon, +Zebulun and the Valley of Iphtah-el, and +a +went north to Beth-emek and Neiel, passing +Cabul on the left. +29 +Rehob, Hammon, and Kanah, as far as +The border then turned +Greater Sidon. +back toward Ramah as far as the fortified +city of Tyre, turned toward Hosah, and came +30 +out at the Sea + in the region of Achzib, +Ummah, Aphek, and Rehob. There were +twenty-two cities, along with their villages. + +It went on to Ebron, + + b + +31 + +This was the inheritance of the clans of the +tribe of Asher, including these cities and their +Naphtali’s Inheritance +villages. +32 + +The sixth lot came out for the clans of the tribe +33 + +of Naphtali: + +Their border started at Heleph and the +great tree of Zaanannim, passing Adami- +Abdon +west, and the Jordan + +a 28 +c 34 + +Joshua 19:51 | 215 + +34 + + c + +35 + +nekeb and Jabneel as far as Lakkum and end- +Then the border turned +ing at the Jordan. +westward to Aznoth-tabor and ran from +there to Hukkok, touching Zebulun on +the south side, Asher on the west, and Judah +at the Jordan +The fortified cit- +ies were Ziddim, Zer, Hammath, Rakkath, +37 +Adamah, Ramah, Hazor, +Chinnereth, +Iron, Migdal-el, +Horem, Beth-anath, and Beth-shemesh. +There were nineteen cities, along with their +villages. + +Kedesh, Edrei, En-hazor, + + on the east. +36 + +38 + +39 + +This was the inheritance of the clans of the +tribe of Naphtali, including these cities and their +Dan’s Inheritance +villages. +40 + +The seventh lot came out for the clans of the +41 + +tribe of Dan: + +42 + +43 + +Zorah, Eshtaol, Ir-shemesh, +44 +Aijalon, Ithlah, + +The territory of their inheritance included +Shaalabbin, +Elon, Timnah, Ekron, +Jehud, +Me-jarkon, and +Bene-berak, Gath-rimmon, +Rakkon, including the territory across from +Joppa. + +Eltekeh, Gibbethon, Baalath, + +45 + +46 + +47 + +(Later, when the territory of the Danites was +lost to them, they went up and fought against +Leshem, captured it, and put it to the sword. So +they took possession of Leshem, settled there, +48 +and renamed it after their father Dan.) + +This was the inheritance of the clans of the +tribe of Dan, including these cities and their vil- +Joshua’s Inheritance +lages. +49 + +50 + +When they had finished distributing the land +into its territories, the Israelites gave Joshua son +as the +of Nun an inheritance among them, +LORD had commanded. They gave him the city of + in the hill country of Ephraim, as +Timnath-serah +51 +he requested. He rebuilt the city and settled in it. + + d + +These are the inheritances that Eleazar the +priest, Joshua son of Nun, and the heads of the +families distributed by lot to the tribes of Israel +at Shiloh before the LORD at the entrance to the +Tent of Meeting. So they finished dividing up the +land. + +b 29 + +Some Hebrew manuscripts +Hebrew; LXX + +d 50 Timnath-serah +; see Joshua 21:30. + +Timnath-heres + +That is, the Mediterranean Sea, also called the Great Sea + + is also known as + +; see Judges 2:9. + + 2 + +lot from the tribes of Judah, Simeon, and Ben- +5 +jamin. + +216 | Joshua 20:1 + +Six Cities of Refuge +(Num. 35:9–34 ; De. 4:41–43 ; 19:1–14) + +20 + +“Tell the +Then the LORD said to Joshua, +3 +Israelites to designate the cities of ref- +so that +uge, as I instructed you through Moses, +anyone who kills another unintentionally or +accidentally may flee there. These will be your +When some- +refuge from the avenger of blood. +one flees to one of these cities, stands at the en- +trance of the city gate, and states his case before +its elders, they are to bring him into the city and +5 +give him a place to live among them. + +4 + +6 + +Now if the avenger of blood pursues him, they +must not surrender the manslayer into his hand, +because that man killed his neighbor acci- +He is to stay in +dentally without prior malice. +that city until he stands trial before the assembly +and until the death of the high priest serving at +that time. Then the manslayer may return to his +7 +own home in the city from which he fled.” + +So they set apart Kedesh in Galilee in the hill +country of Naphtali, Shechem in the hill country +of Ephraim, and Kiriath-arba (that is, Hebron) in +8 +the hill country of Judah. + +And beyond the Jordan, east of Jericho, they +designated Bezer on the wilderness plateau from +the tribe of Reuben, Ramoth in Gilead from the +tribe of Gad, and Golan in Bashan from the tribe +9 +of Manasseh. + +These are the cities appointed for all the Israel- +ites and foreigners among them, so that anyone +who kills a person unintentionally may flee there +and not die by the hand of the avenger of blood +Forty-Eight Cities for the Levites +prior to standing trial before the assembly. +(Numbers 35:1–8 ; 1 Chronicles 6:54–81) + +21 + +Now the family heads of the Levites ap- +proached Eleazar the priest, Joshua son +2 +of Nun, and the heads of the other tribes of Israel +at Shiloh in the land of Canaan and said to them, +“The LORD commanded through Moses that we +be given cities in which to live, together with pas- +3 +turelands for our livestock.” + +So by the command of the LORD, the Israelites +gave the Levites these cities and their pas- +turelands out of their own inheritance: + +4 + +The first lot came out for the Kohathite +clans. The Levites who were descendants of +Aaron the priest received thirteen cities by + +The remaining descendants of Kohath +received ten cities by lot from the tribes +of Ephraim, Dan, and the half-tribe of +6 +Manasseh. + +The descendants of Gershon received thir- +teen cities by lot from the tribes of Issachar, +Asher, Naphtali, and the half-tribe of Manas- +7 +seh in Bashan. + +And the descendants of Merari received +twelve cities from the tribes of Reuben, Gad, +and Zebulun. + +8 + +So the Israelites allotted to the Levites these +cities, together with their pasturelands, as the +9 +LORD had commanded through Moses. + +10 + +From the tribes of Judah and Simeon, they des- +to the descend- +ignated these cities by name +ants of Aaron from the Kohathite clans of the +Levites, because the first lot fell to them: + +11 + +12 + +They gave them Kiriath-arba (that is, Heb- +ron), with its surrounding pasturelands, in +the hill country of Judah. (Arba was the fa- +But they had given the fields +ther of Anak.) +and villages around the city to Caleb son of +13 +Jephunneh as his possession. + +14 + +So to the descendants of Aaron the priest +they gave these cities, together with their +pasturelands: Hebron, a city of refuge for +15 +Jattir, Eshtemoa, +the manslayer, Libnah, +Ain, Juttah, and Beth- +shemesh—nine cities from these two tribes, +17 +together with their pasturelands. + +Holon, Debir, + +16 + +18 + +And from the tribe of Benjamin they gave +Anathoth, and +them Gibeon, Geba, +Almon—four cities, together with their +19 +pasturelands. + +In all, thirteen cities, together with their +pasturelands, were given to the priests, the +descendants of Aaron. + +20 + +The remaining Kohathite clans of the Levites + +were allotted these cities: + +21 + +From the tribe of Ephraim +they were given +Shechem in the hill country of Ephraim (a +22 +city of refuge for the manslayer), Gezer, +Kibzaim, and Beth-horon—four cities, to- + +gether with their pasturelands. + + 23 + +24 + +From the tribe of Dan they were given +Aijalon, and Gath-rim- +Elteke, Gibbethon, +mon—four cities, together with their pas- +25 +turelands. + +And from the half-tribe of Manasseh they +were given Taanach and Gath-rimmon—two +26 +cities, together with their pasturelands. + +In all, ten cities, together with their +pasturelands, were given to the rest of the +Kohathite clans. + +27 + +This is what the Levite clans of the Gershonites + +were given: + +From the half-tribe of Manasseh they were +given Golan in Bashan, a city of refuge for the +manslayer, and Beeshterah—two cities, +28 +together with their pasturelands. + +29 + +From the tribe of Issachar they were +Jarmuth, and +given Kishion, Daberath, +En-gannim—four cities, together with their +30 +pasturelands. + +31 + +From the tribe of Asher they were given +Helkath, and Rehob—four + +Mishal, Abdon, +32 +cities, together with their pasturelands. + +And from the tribe of Naphtali they were +given Kedesh in Galilee (a city of refuge for +the manslayer), Hammoth-dor, and Kartan— +33 +three cities, together with their pasturelands. + +In all, thirteen cities, together with their +pasturelands, were given to the Gershonite +clans. + +34 + +This is what the Merarite clan (the rest of the + +Levites) were given: + +35 + +From the tribe of Zebulun they were given +Jokneam, Kartah, +Dimnah, and Nahalal— +36 +four cities, together with their pasturelands. + +37 + +From the tribe of Reuben they were given +Kedemoth, and Mephaath— +Bezer, Jahaz, +38 +four cities, together with their pasturelands. + +39 + +And from the tribe of Gad they were given +Ramoth in Gilead, a city of refuge for the +Heshbon, and +manslayer, Mahanaim, +Jazer—four cities in all, together with their +40 +pasturelands. + +41 + +In all, twelve cities were allotted to the +clans of Merari, the remaining Levite clans. + +For the Levites, then, there were forty-eight +cities in all, together with their pasturelands, + +Joshua 22:10 | 217 + +42 + +Each +within the territory of the Israelites. +of these cities had its own surrounding pas- +43 +turelands; this was true for all the cities. + +Thus the LORD gave Israel all the land He had +sworn to give their fathers, and they took posses- +44 +sion of it and settled in it. + +And the LORD gave them rest on every side, +just as He had sworn to their fathers. None of +their enemies could stand against them, for the +45 +LORD delivered all their enemies into their hand. + +Not one of all the LORD’s good promises to +the house of Israel had failed; everything was +The Eastern Tribes Return Home +fulfilled. + +22 + +2 + +Then Joshua summoned the Reubenites, +the Gadites, and the half-tribe of Manas- +and told them, “You have done all that Mo- +seh +ses the servant of the LORD commanded you, and +you have obeyed my voice in all that I com- +All this time you have not deserted +manded you. +your brothers, up to this very day, but have kept +4 +the charge given you by the LORD your God. + +3 + +5 + +And now that the LORD your God has given +your brothers rest as He promised them, you +may return to your homes in the land that Moses +the servant of the LORD gave you across the +But be very careful to observe the com- +Jordan. +mandment and the law that Moses the servant of +the LORD gave you: to love the LORD your God, +to walk in all His ways, to keep His command- +ments, to hold fast to Him, and to serve Him with +6 +all your heart and with all your soul.” + +7 + +8 + +So Joshua blessed them and sent them on their +(To the half- +way, and they went to their homes. +tribe of Manasseh Moses had given land in +Bashan, and to the other half Joshua gave land on +the west side of the Jordan among their broth- +ers.) When Joshua sent them to their homes he +saying, “Return to your homes +blessed them, +with your great wealth, with immense herds of +livestock, with silver, gold, bronze, iron, and very +many clothes. Divide with your brothers the +The Altar of Witness +spoil of your enemies.” +9 + +So the Reubenites, the Gadites, and the half- +tribe of Manasseh left the Israelites at Shiloh in +the land of Canaan to return to their own land of +Gilead, which they had acquired according to the +And +command of the LORD through Moses. + +10 + + 218 | Joshua 22:11 + + a + + near the Jordan in +when they came to Geliloth +the land of Canaan, the Reubenites, the Gadites, +and the half-tribe of Manasseh built an imposing +11 +altar there by the Jordan. + +Then the Israelites received the report: +“Behold, the Reubenites, the Gadites, and the +half-tribe of Manasseh have built an altar on +the border of the land of Canaan, at Geliloth near +the Jordan on the Israelite side.” +And when +they heard this, the whole congregation of Israel +13 +assembled at Shiloh to go to war against them. + +12 + +The Israelites sent Phinehas son of Eleazar the +priest to the land of Gilead, to the Reubenites, the +Gadites, and the half-tribe of Manasseh. +With +him they sent ten chiefs—one family leader from +each tribe of Israel, each the head of a family +15 +among the clans of Israel. + +14 + +16 + +They went to the Reubenites, the Gadites, and +the half-tribe of Manasseh in the land of Gilead +and said to them, +“This is what the whole con- +gregation of the LORD says: ‘What is this breach +of faith you have committed today against the +God of Israel by turning away from the LORD and +building for yourselves an altar, that you might +17 +rebel against the LORD this day? + +18 + +Was not the sin of Peor enough for us, from +which we have not cleansed ourselves to this +day? It even brought a plague upon the congre- +gation of the LORD. +And now, would you turn +away from the LORD? If you rebel today against +the LORD, tomorrow He will be angry with the +19 +whole congregation of Israel. + +If indeed the land of your inheritance is un- +clean, then cross over to the land of the LORD’s +possession, where the LORD’s tabernacle stands, +and take possession of it among us. But do not +rebel against the LORD or against us by building +for yourselves an altar other than the altar of the +20 +LORD our God. + +c + son of Zerah unfaithful re- +garding what was set apart for destruction, +bringing wrath upon the whole congregation of +Israel? Yet it was not only Achan who perished +21 +because of his sin!’ + +Was not Achan + +” + + b + +22 + +Then the Reubenites, the Gadites, and the half- +tribe of Manasseh answered the leaders of the +“The LORD, the Mighty One, is +clans of Israel: +a 10 +God! The LORD, the Mighty One, is God! He + +to the circle of stones + +to the region + +c 20 + +cherem + +23 + +knows, and may Israel also know. If this was in +rebellion or breach of faith against the LORD, do +If we have built for our- +not spare us today. +selves an altar to turn away from Him and to of- +fer burnt offerings and grain offerings on it, or to +sacrifice peace offerings on it, may the LORD +24 +Himself hold us accountable. + +But in fact we have done this for fear that in the +future your descendants might say to ours, ‘What +25 +have you to do with the LORD, the God of Israel? +For the LORD has made the Jordan a border +between us and you Reubenites and Gadites. You +have no share in the LORD!’ So your descendants +26 +could cause ours to stop fearing the LORD. + +27 + +That is why we said, ‘Let us take action and +build an altar for ourselves, but not for burnt of- +ferings or sacrifices. +Rather, let it be a witness +between us and you and the generations to come, +that we will worship the LORD in His presence +with our burnt offerings, sacrifices, and peace of- +ferings.’ Then in the future, your descendants +cannot say to ours, ‘You have no share in the +28 +LORD!’ + +Therefore we said, ‘If they ever say this to us +or to our descendants, we will answer: Look at +the replica of the altar of the LORD that our fa- +thers made, not for burnt offerings or sacrifices, +29 +but as a witness between us and you.’ + +Far be it from us to rebel against the LORD and +turn away from Him today by building an altar +for burnt offerings, grain offerings, or sacrifices, +other than the altar of the LORD our God, which +30 +stands before His tabernacle.” + +31 + +When Phinehas the priest and the chiefs of the +congregation—the heads of Israel’s clans who +were with him—heard what the descendants of +Reuben, Gad, and Manasseh had to say, they were +Phinehas son of Eleazar the priest +satisfied. +said to the descendants of Reuben, Gad, and Ma- +nasseh, “Today we know that the LORD is among +us, because you have not committed this breach +of faith against Him. Consequently, you have de- +32 +livered the Israelites from the hand of the LORD.” + +Then Phinehas son of Eleazar the priest, to- +gether with the other leaders, returned to the Is- +raelites in the land of Canaan and brought back a +report regarding the Reubenites and Gadites in +b 20 Achan +The Israelites were satisfied +the land of Gilead. + +troubler + +Achar + +33 + +Or + + or + +; similarly in verse 11 + + means + +; also called + + in + +1 Chronicles 2:7. +destroying them or by giving them as an offering. + +Forms of the Hebrew + + refer to the giving over of things or persons to the LORD, either by + + 23 + +34 + +with the report, and they blessed God and spoke +no more about going to war against them to de- +stroy the land where the Reubenites and Gadites +So the Reubenites and Gadites named +lived. +the altar Witness, for they said, + “It is a witness +Joshua’s Charge to Leaders +between us that the LORD is God.” + +a + +2 + +A long time after the LORD had given Is- +rael rest from all the enemies around +them, when Joshua was old and well along in +he summoned all Israel, including its el- +years, +3 +ders, leaders, judges, and officers. “I am old and +“and you have seen +well along in years,” he said, +everything that the LORD your God has done to +all these nations for your sake, because it was the +4 +LORD your God who fought for you. + +b + +5 + +See, I have allotted as an inheritance to your +tribes these remaining nations, including all the +nations I have already cut off, from the Jordan +westward to the Great Sea. +The LORD your God +will push them out of your way and drive them +out before you, so that you can take possession +of their land, as the LORD your God promised +6 +you. + +7 + +Be very strong, then, so that you can keep and +obey all that is written in the Book of the Law of +Moses, not turning aside from it to the right or to +So you are not to associate with these +the left. +nations that remain among you. You must not +call on the names of their gods or swear by them, +and you must not serve them or bow down to +Instead, you shall hold fast to the LORD +them. +9 +your God, as you have done to this day. + +8 + +11 + +12 + +10 + +The LORD has driven out great and powerful +nations before you, and to this day no one can +One of you can put a thou- +stand against you. +sand to flight, because the LORD your God fights +Therefore watch +for you, just as He promised. +yourselves carefully, that you love the LORD +your God. +For if you turn away and cling to the +rest of these nations that remain among you, and +13 +if you intermarry and associate with them, +know for sure that the LORD your God will no +longer drive out these nations before you. In- +stead, they will become for you a snare and a +trap, a scourge in your sides and thorns in your +eyes, until you perish from this good land that +14 +the LORD your God has given you. + +Now behold, today I am going the way of all the + c 2 +b 4 +a 34 +earth, and you know with all your heart and soul + +named the altar, for + +Joshua 24:10 | 219 + +15 + +that not one of the good promises the LORD your +God made to you has failed. Everything was ful- +filled for you; not one promise has failed. +But +just as every good thing the LORD your God +promised you has come to pass, likewise the +LORD will bring upon you the calamity He has +threatened, until He has destroyed you from this +If you transgress +good land He has given you. +the covenant of the LORD your God, which He +commanded you, and go and serve other gods +and bow down to them, then the anger of the +LORD will burn against you, and you will quickly +Joshua Reviews Israel’s History +perish from this good land He has given you.” + +16 + +24 + +Then Joshua assembled all the tribes of +Israel at Shechem. He summoned the el- +ders, leaders, judges, and officers of Israel, and +2 +they presented themselves before God. + + c + +And Joshua said to all the people, “This is what +the LORD, the God of Israel, says: ‘Long ago your +fathers, including Terah the father of Abraham +3 + and +and Nahor, lived beyond the Euphrates +But I took your father +worshiped other gods. +Abraham from beyond the Euphrates and led +him through all the land of Canaan, and I multi- +and to +plied his descendants. I gave him Isaac, +Isaac I gave Jacob and Esau. I gave Esau Mount +Seir to possess, but Jacob and his sons went +5 +down to Egypt. + +4 + +d + +6 + +Then I sent Moses and Aaron, and I afflicted the +Egyptians by what I did there, and afterward I +When I brought your fathers +brought you out. +out of Egypt and you reached the Red Sea, + the +Egyptians pursued them with chariots and +So your fathers +horsemen as far as the Red Sea. +cried out to the LORD, and He put darkness be- +tween you and the Egyptians, over whom He +brought the sea and engulfed them. Your very +eyes saw what I did to the Egyptians. Then you +8 +lived in the wilderness for a long time. + +7 + +9 + +Later, I brought you to the land of the Amorites +who lived beyond the Jordan. They fought +against you, but I delivered them into your hand, +that you should possess their land when I de- +Then Balak son of +stroyed them before you. +Zippor, the king of Moab, set out to fight against +Israel. He sent for Balaam son of Beor to curse +but I would not listen to Balaam. So he +you, +blessed you again and again, and I delivered you +the Sea of Reeds +from his hand. + +the River + +d 6 + +10 + +Lit. + +That is, the Med. Sea + +Heb. + +; also in vv. 3, 14, and 15 + +Or + + 220 | Joshua 24:11 + +11 + +22 + +12 + +After this, you crossed the Jordan and came to +Jericho. The people of Jericho fought against you, +as did the Amorites, Perizzites, Canaanites, Hit- +tites, Girgashites, Hivites, and Jebusites, and I de- +I sent the hornet +livered them into your hand. +ahead of you, and it drove out the two Amorite +kings before you, but not by your own sword or +So I gave you a land on which you did not +bow. +toil and cities that you did not build, and now you +live in them and eat from vineyards and olive +Choose Whom You Will Serve +groves that you did not plant.’ +(Deuteronomy 10:12–22) + +13 + +14 + +15 + +Now, therefore, fear the LORD and serve Him +in sincerity and truth; cast aside the gods your fa- +thers served beyond the Euphrates and in Egypt, +But if it is unpleasing in +and serve the LORD. +your sight to serve the LORD, then choose for +yourselves this day whom you will serve, +whether the gods your fathers served beyond the +Euphrates, or the gods of the Amorites in whose +land you are living. As for me and my house, we +16 +will serve the LORD!” + +17 + +The people replied, “Far be it from us to for- +For the +sake the LORD to serve other gods! +LORD our God brought us and our fathers out of +the land of Egypt, out of the house of slavery, and +performed these great signs before our eyes. He +also protected us throughout our journey and +among all the nations through which we trav- +And the LORD drove out before us all the +eled. +nations, including the Amorites who lived in the +land. We too will serve the LORD, because He is +19 +our God!” + +18 + +20 + +But Joshua said to the people, “You are not able +to serve the LORD, for He is a holy God; He is a +jealous God; He will not forgive your rebellion or +If you forsake the LORD and serve +your sins. +foreign gods, He will turn and bring disaster on +you and consume you, even after He has been +21 +good to you.” + +“No!” replied the people. “We will serve the + +LORD!” + +Then Joshua told them, “You are witnesses +against yourselves that you have chosen to serve +the LORD.” +23 +“We are witnesses!” they said. + +“Now, therefore,” he said, “get rid of the for- +eign gods among you and incline your hearts to +24 +the LORD, the God of Israel.” + +So the people said to Joshua, “We will serve the + +25 +LORD our God and obey His voice.” + + a + +26 + +On that day Joshua made a covenant for the +people, and there at Shechem he established for +Joshua recorded +them a statute and ordinance. +these things in the Book of the Law of God. Then +he took a large stone and set it up there under the +27 +oak + that was near the sanctuary of the LORD. +And Joshua said to all the people, “You see this +stone. It will be a witness against us, for it has +heard all the words the LORD has spoken to us, +and it will be a witness against you if you ever +28 +deny your God.” + +Then Joshua sent the people away, each to his + +Joshua’s Death and Burial (Judges 2:6–9) +own inheritance. +29 + +30 + + b + +Some time later, Joshua son of Nun, the servant +And they +of the LORD, died at the age of 110. +buried him in the land of his inheritance, at +31 + in the hill country of Ephraim, +Timnath-serah +Israel had served the +north of Mount Gaash. +LORD throughout the days of Joshua and of the +elders who outlived him and who had experi- +enced all the works that the LORD had done for +32 +Israel. + +And the bones of Joseph, which the Israelites +had brought up out of Egypt, were buried at She- +chem in the plot of land that Jacob had purchased +c +from the sons of Hamor, Shechem’s father, for a +hundred pieces of silver. + So it became an inher- +33 +itance for Joseph’s descendants. + +Eleazar son of Aaron also died, and they buried +him at Gibeah, which had been given to his son +Phinehas in the hill country of Ephraim. + +a 26 + +terebinth + +b 30 Timnath-serah + +Timnath-heres + +c 32 + +a hundred kesitahs + +Or + + is also known as + +; see Judges 2:9. + +Hebrew + +; + +the value or weight of the kesitah is no longer known. + + Judges + +The Conquest of Canaan Proceeds +(Joshua 13:1–7) + +1 + +After the death of Joshua, the Israelites in- +quired of the LORD, “Who will be the first to + +2 +go up and fight for us against the Canaanites?” + +“Judah shall go up,” answered the LORD. “In- +3 +deed, I have delivered the land into their hands.” + +Then the men of Judah said to their brothers the +Simeonites, “Come up with us to our allotted +territory, and let us fight against the Canaanites. +And we likewise will go with you to your terri- +4 +tory.” So the Simeonites went with them. + +When Judah attacked, the LORD delivered the +Canaanites and Perizzites into their hands, and +5 +they struck down ten thousand men at Bezek. +And there they found Adoni-bezek and fought +against him, striking down the Canaanites and +6 +Perizzites. + +7 + +As Adoni-bezek fled, they pursued him, seized +him, and cut off his thumbs and big toes. +Then +Adoni-bezek said, “Seventy kings with their +thumbs and big toes cut off have gathered the +scraps under my table. As I have done to them, so +God has repaid me.” And they brought him to Je- +The Capture of Jerusalem and Hebron +rusalem, where he died. +(Joshua 15:13–19) + +8 + +9 + +Then the men of Judah fought against Jerusalem +and captured it. They put the city to the sword +Afterward, the men of Judah +and set it on fire. +marched down to fight against the Canaanites +a +living in the hill country, in the Negev, and in the +10 +foothills. + +Judah also marched against the Canaanites +who were living in Hebron (formerly known as +Kiriath-arba), and they struck down Sheshai, +11 +Ahiman, and Talmai. + +12 + +From there they marched against the +inhabitants of Debir (formerly known as +lowlands +a 9 +And Caleb said, “To the man +Kiriath-sepher). +d 17 +c 16 + +Shephelah + +cherem +; the western foothills of Judea +e 17 Hormah + +Heb. + or +That is, Jericho + +Forms of the Heb. + +destroying or by giving as an offering. + +13 + +who strikes down Kiriath-sepher and captures it, +So +I will give my daughter Acsah in marriage.” +Othniel son of Caleb’s younger brother Kenaz +captured the city, and Caleb gave his daughter + b +14 +Acsah to him in marriage. + +One day Acsah came to Othniel and urged him +to ask her father for a field. When she got off her +15 +donkey, Caleb asked her, “What do you desire?” + +“Give me a blessing,” she answered. “Since you +have given me land in the Negev, give me springs +of water as well.” + +So Caleb gave her both the upper and lower +16 +springs. + + c + +Now the descendants of Moses’ father-in-law, +the Kenite, went up with the men of Judah from + to the Wilderness of Judah in +the City of Palms +the Negev near Arad. They went to live among +17 +the people. + + f + +e + +d + +19 + +18 + + So it was called Hormah. + +Then the men of Judah went with their broth- +ers the Simeonites, attacked the Canaanites liv- +ing in Zephath, and devoted the city to destruc- +And Judah also +tion. + Gaza, Ashkelon, and Ekron—each with +captured +its territory. +The LORD was with Judah, and +they took possession of the hill country; but they +could not drive out the inhabitants of the plains +20 +because they had chariots of iron. + +Just as Moses had promised, Judah gave Heb- +ron to Caleb, who drove out the descendants of +21 +the three sons of Anak. + +The Benjamites, however, failed to drive out +the Jebusites living in Jerusalem. So to this day +22 +the Jebusites live there among the Benjamites. + +23 + +24 + +The house of Joseph also attacked Bethel, and +They sent spies to +the LORD was with them. +Bethel (formerly known as Luz), +and when the +spies saw a man coming out of the city, they said +to him, “Please show us how to get into the city, +b 14 +and we will treat you kindly.” + +and he urged her + +destruction + +Heb.; LXX and Vulgate + +f 18 + +But Judah did not capture + +; see Josh. 15:18. + + refer to the giving over of things or persons to the LORD, either by + means + +Heb.; LXX + +. + + 222 | Judges 1:25 + +25 + +26 + +So the man showed them the entrance to the +city, and they put the city to the sword but re- +leased that man and all his family. +And the man +went to the land of the Hittites, built a city, and +The Failure to Complete the Conquest +called it Luz, which is its name to this day. +27 + +At that time Manasseh failed to drive out the +inhabitants of Beth-shean, Taanach, Dor, Ibleam, +Megiddo, and their villages; for the Canaanites +When +were determined to dwell in that land. +Israel became stronger, they pressed the Ca- +naanites into forced labor, but they never drove +29 +them out completely. + +28 + +Ephraim also failed to drive out the Canaanites +living in Gezer; so the Canaanites continued to +30 +dwell among them in Gezer. + +Zebulun failed to drive out the inhabitants of +Kitron and Nahalol; so the Canaanites lived +31 +among them and served as forced laborers. + +32 + +Asher failed to drive out the inhabitants +of Acco, Sidon, Ahlab, Achzib, Helbah, Aphik, and +Rehob. +So the Asherites lived among the Ca- +naanite inhabitants of the land, because they did +33 +not drive them out. + +Naphtali failed to drive out the inhabitants of +Beth-shemesh and Beth-anath. So the Naphta- +lites also lived among the Canaanite inhabitants +of the land, but the inhabitants of Beth-shemesh +34 +and Beth-anath served them as forced laborers. + +35 + +The Amorites forced the Danites into the hill +country and did not allow them to come down +And the Amorites were deter- +into the plain. +mined to dwell in Mount Heres, Aijalon, and +Shaalbim. But when the house of Joseph grew in +strength, they pressed the Amorites into forced +And the border of the Amorites ex- +labor. +tended from the Ascent of Akrabbim + to Sela and +Israel Rebuked at Bochim +beyond. + +36 + + a + + b + +2 + + of the LORD went up from +Now the angel +Gilgal to Bochim and said, “I brought you up +out of Egypt and led you into the land that I had +promised to your fathers, and I said, ‘I will never +and you are not to +break My covenant with you, +make a covenant with the people of this land, but +you shall tear down their altars.’ +3 + +2 + +the Ascent of Scorpions + +Yet you have not obeyed My voice. What is this +Scorpion Pass +a 36 +So now I tell you that I will not +you have done? +d 9 Timnath-heres +who plundered them + +Timnath-serah +leaders + + or +governors + +b 1 + +Or + +Or + +Angel + +f 16 + is also known as + +drive out these people before you; they will be +thorns in your sides, and their gods will be a +4 +snare to you.” + + c + +When the angel of the LORD had spoken these +5 +words to all the Israelites, the people lifted up +So they called that place +their voices and wept. +Bochim + and offered sacrifices there to the +Joshua’s Death and Burial (Joshua 24:29–33) +LORD. +6 + +7 + +After Joshua had dismissed the people, the Isra- +elites went out to take possession of the land, +each to his own inheritance. +And the people +served the LORD throughout the days of Joshua +and of the elders who outlived him, who had seen +all the great works that the LORD had done for +8 +Israel. + +9 +And Joshua son of Nun, the servant of the LORD, +They buried him in the + in the + +died at the age of 110. +land of his inheritance, at Timnath-heres +Israel’s Unfaithfulness +hill country of Ephraim, north of Mount Gaash. +(Isaiah 43:22–28 ; Jeremiah 2:23–37) + + d + +10 + +After that whole generation had also been +gathered to their fathers, another generation +rose up who did not know the LORD or the works +And the Israelites +that He had done for Israel. +did evil in the sight of the LORD and served the +12 +Baals. + +11 + +Thus they forsook the LORD, the God of their +fathers, who had brought them out of the land +of Egypt, and they followed after various gods +of the peoples around them. They bowed +13 +down to them and provoked the LORD to anger, +for they forsook Him and served Baal and the + +14 +Ashtoreths. + +e + +Then the anger of the LORD burned against Is- +rael, and He delivered them into the hands of +those who plundered them. + He sold them into +the hands of their enemies all around, whom +they were no longer able to resist. +Wherever +Israel marched out, the hand of the LORD was +against them to bring calamity, just as He had +Judges Raised Up +sworn to them. So they were greatly distressed. +16 + +15 + +f + +Then the LORD raised up judges, + + who saved +them from the hands of those who plundered +them. +; also in verse 4 + +of plunderers +. + +c 5 Bochim + +weepers + + means + +e 14 + +Or + + or + +; see Joshua 19:50 and Joshua 24:30. +; here and throughout the book of Judges + +Literally + + 17 + +Israel, however, did not listen to their judges. +Instead, they prostituted themselves with other +gods and bowed down to them. They quickly +turned from the way of their fathers, who had +walked in obedience to the LORD’s command- +18 +ments; they did not do as their fathers had done. + +19 + +Whenever the LORD raised up a judge for the +Israelites, He was with that judge and saved them +from the hands of their enemies while the judge +was still alive; for the LORD was moved to pity by +their groaning under those who oppressed them +and afflicted them. +But when the judge died, +the Israelites became even more corrupt than +their fathers, going after other gods to serve +them and bow down to them. They would not +20 +give up their evil practices and stubborn ways. + +21 + +So the anger of the LORD burned against +Israel, and He said, “Because this nation has +transgressed the covenant I laid down for their +I will no +fathers and has not heeded My voice, +longer drive out before them any of the nations +In this way I will test +Joshua left when he died. +whether Israel will keep the way of the LORD by +23 +walking in it as their fathers did.” + +22 + +That is why the LORD had left those nations in +place and had not driven them out immediately +Nations Left to Test Israel +by delivering them into the hand of Joshua. + +3 + +3 + +2 + +These are the nations that the LORD left to +test all the Israelites who had not known +any of the wars in Canaan, +if only to teach +warfare to the subsequent generations of Israel, +especially to those who had not known it for- +the five rulers of the Philistines, all the +merly: +Canaanites, the Sidonians, and the Hivites who +lived in the mountains of Lebanon from Mount +4 +Baal-hermon to Lebo-hamath. + +These nations were left to test the Israelites, to +find out whether they would keep the command- +5 +ments of the LORD, which He had given their +Thus the Israelites con- +fathers through Moses. +tinued to live among the Canaanites, Hittites, +Amorites, Perizzites, Hivites, and Jebusites. +And +they took the daughters of these people in mar- +riage, gave their own daughters to their sons, and +Othniel +served their gods. +7 + +6 + +Judges 3:21 | 223 + +8 + +Then the +served the Baals and the Asherahs. +anger of the LORD burned against Israel, and He +sold them into the hand of Cushan-rishathaim +king of Aram-naharaim, + and the Israelites +9 +served him eight years. + +a + +10 + +But when the Israelites cried out to the LORD, +He raised up Othniel son of Caleb’s younger +The +brother Kenaz as a deliverer to save them. +Spirit of the LORD came upon him, and he +became Israel’s judge and went out to war. And +the LORD delivered Cushan-rishathaim king of +Aram into the hand of Othniel, who prevailed +11 +against him. + +So the land had rest for forty years, until Oth- + +Ehud +niel son of Kenaz died. +12 + +13 + +Once again the Israelites did evil in the sight of +the LORD. So He gave Eglon king of Moab power +over Israel, because they had done evil in the +After enlisting the Ammo- +sight of the LORD. +nites and Amalekites to join forces with him, +Eglon attacked and defeated Israel, taking pos- +14 +session of the City of Palms. +15 + +b + +The Israelites served Eglon king of Moab eight- +And again they cried out to the +een years. +LORD, and He raised up Ehud son of Gera, a left- +handed Benjamite, as their deliverer. So they +16 +sent him with tribute to Eglon king of Moab. + +c +Now Ehud had made for himself a double- + He strapped it to his +edged sword a cubit long. +and brought the +right thigh under his cloak +tribute to Eglon king of Moab, who was an obese +18 +man. + +17 + +19 + +After Ehud had finished presenting the tribute, +But +he ushered out those who had carried it. +upon reaching the idols near Gilgal, he himself +turned back and said, “I have a secret message +for you, O king.” + +“Silence,” said the king, and all his attendants left +20 +him. + +Then Ehud approached him while he was sit- +ting alone in the coolness of his upper room. “I +have a word from God for you,” Ehud said, and +21 +the king rose from his seat. + +So the Israelites did evil in the sight of the +a 8 +LORD; they forgot the LORD their God and + +Aram-naharaim + +Aram of the two rivers + +That is, Mesopotamia; + +b 13 + means + +And Ehud reached with his left hand, pulled +the sword from his right thigh, and plunged it +c 16 A cubit +, likely the region between the Euphrates and Balih + +Rivers in northwestern Mesopotamia. + +That is, Jericho + + is approximately 18 inches or 45.7 centimeters. + + 224 | Judges 3:22 + +22 + +Even the handle sank in +into Eglon’s belly. +after the blade, and Eglon’s fat closed in over it, +so that Ehud did not withdraw the sword from +Then +his belly. And Eglon’s bowels emptied. +Ehud went out through the porch, closing and +24 +locking the doors of the upper room behind him. + +23 + +25 + +After Ehud was gone, Eglon’s servants came in +and found the doors of the upper room locked. +“He must be relieving himself in the cool room,” +So they waited until they became +they said. +worried and saw that he had still not opened the +doors of the upper room. Then they took the key +and opened the doors—and there was their lord +26 +lying dead on the floor. + +Ehud, however, had escaped while the serv- +ants waited. He passed by the idols and escaped +27 +to Seirah. + +On arriving in Seirah, he blew the ram’s horn +throughout the hill country of Ephraim. The Isra- +28 +elites came down with him from the hills, and he +“Follow me,” he told +became their leader. +them, “for the LORD has delivered your enemies +the Moabites into your hand.” + +29 + +So they followed him down and seized the fords +of the Jordan leading to Moab, and they did not +At that time they +allow anyone to cross over. +struck down about ten thousand Moabites, all ro- +30 +bust and valiant men. Not one of them escaped. + +So Moab was subdued under the hand of +Israel that day, and the land had rest for eighty +Shamgar +years. +31 + +After Ehud came Shamgar son of Anath. And he +too saved Israel, striking down six hundred Phil- +Deborah and Barak +istines with an oxgoad. + +4 + +2 + +After Ehud died, the Israelites again did evil +in the sight of the LORD. +So the LORD sold +them into the hand of Jabin king of Canaan, who +reigned in Hazor. The commander of his forces +3 +was Sisera, who lived in Harosheth-hagoyim. +Then the Israelites cried out to the LORD, be- +cause Jabin had nine hundred chariots of iron, +and he had harshly oppressed the Israelites for +4 +twenty years. + +5 + +Now Deborah, a prophetess, the wife of +And +Lappidoth, was judging Israel at that time. +a 11 +she would sit under the Palm of Deborah + +brother-in-law + +Or + +between Ramah and Bethel in the hill country of +Ephraim, where the Israelites would go up to her +6 +for judgment. + +She summoned Barak son of Abinoam from +Kedesh in Naphtali and said to him, “Surely the +LORD, the God of Israel, is commanding you: ‘Go +and march to Mount Tabor, taking with you ten +And I +thousand men of Naphtali and Zebulun. +will draw out Sisera the commander of Jabin’s +army, his chariots, and his troops to the River +8 +Kishon, and I will deliver him into your hand.’ + +” + +7 + +Barak said to her, “If you will go with me, I will +9 +go; but if you will not go with me, I will not go.” + +“I will certainly go with you,” Deborah replied, +“but the road you are taking will bring you no +honor, because the LORD will be selling Sisera +into the hand of a woman.” So Deborah got up +where he +and went with Barak to Kedesh, +summoned Zebulun and Naphtali. Ten thousand +men followed him, and Deborah also went with +11 +him. + +10 + + a + +Now Heber the Kenite had moved away from +the Kenites, the descendants of Hobab the father- + of Moses, and had pitched his tent by the +in-law +12 +great tree of Zaanannim, which was near Kedesh. + +13 + +When Sisera was told that Barak son of +he sum- +Abinoam had gone up Mount Tabor, +moned all nine hundred of his iron chariots and +all the men with him, from Harosheth-hagoyim +14 +to the River Kishon. + +Then Deborah said to Barak, “Arise, for this is +the day that the LORD has delivered Sisera into +your hand. Has not the LORD gone before you?” + +15 + +So Barak came down from Mount Tabor with ten +And in front of +thousand men following him. +him the LORD routed with the sword Sisera, all +his charioteers, and all his army. Sisera aban- +16 +doned his chariot and fled on foot. + +Then Barak pursued the chariots and army as +far as Harosheth-hagoyim, and the whole army +of Sisera fell by the sword; not a single man was +Jael Kills Sisera +left. +17 + +Meanwhile, Sisera had fled on foot to the tent +of Jael, the wife of Heber the Kenite, because +there was peace between Jabin king of Hazor and +Jael went out to +the house of Heber the Kenite. +greet Sisera and said to him, “Come in, my lord. + +18 + + Come in with me. Do not be afraid.” So he entered +19 +her tent, and she covered him with a blanket. + +until I, Deborah, arose, +8 +a mother in Israel. + +Judges 5:18 | 225 + +Sisera said to her, “Please give me a little water +to drink, for I am thirsty.” So she opened a con- +tainer of milk, gave him a drink, and covered him +20 +again. + +“Stand at the entrance to the tent,” he said, +“and if anyone comes and asks you, ‘Is there a +21 +man here?’ say, ‘No.’ + +” + +But as he lay sleeping from exhaustion, +Heber’s wife Jael took a tent peg, grabbed a ham- +mer, and went silently to Sisera. She drove the +peg through his temple and into the ground, and +22 +he died. + +When Barak arrived in pursuit of Sisera, Jael +went out to greet him and said to him, “Come, +and I will show you the man you are seeking.” So +he went in with her, and there lay Sisera dead, +23 +with a tent peg through his temple. + +24 + +On that day God subdued Jabin king of Canaan +And the hand of the Isra- +before the Israelites. +elites grew stronger and stronger against Jabin +The Song of Deborah and Barak (Ex. 15:1–21) +king of Canaan until they destroyed him. + +5 + +2 + +On that day Deborah and Barak son of Abi- +noam sang this song: + +“When the princes take the lead in Israel, + +3 + +when the people volunteer, +bless the LORD. + +Listen, O kings! Give ear, O princes! + +I will sing to the LORD; +I will sing praise to the LORD, + +4 + +the God of Israel. + +O LORD, when You went out from Seir, +when You marched from the land + +of Edom, + +When they chose new gods, + +then war came to their gates. +Not a shield or spear was found +9 + +among forty thousand in Israel. +My heart is with the princes of Israel, + +10 + +with the volunteers among the people. +Bless the LORD! + +You who ride white donkeys, +who sit on saddle blankets, +and you who travel the road, + +11 + + a + +ponder + +the voices of the singers + +at the watering places. + +There they shall recount the righteous acts of + + b + +the LORD, + +the righteous deeds of His villagers + +in Israel. + +12 + +Then the people of the LORD +went down to the gates: +‘Awake, awake, O Deborah! + +Awake, awake, sing a song! + +Arise, O Barak, + +13 + +and take hold of your captives, O son + +of Abinoam!’ + +Then the survivors came down to the nobles; +the people of the LORD came down to me + +14 + +against the mighty. + +Some came from Ephraim, with their roots + +in Amalek; + +Benjamin came with your people + +after you. + +The commanders came down from Machir, + +15 + +the bearers of the marshal’s staff + +from Zebulun. + +The princes of Issachar were with Deborah, + +and Issachar was with Barak, +rushing into the valley at his heels. + +c + +the earth trembled, the heavens poured + +5 + +out rain, + +16 + +In the clans of Reuben + +there was great indecision. + +and the clouds poured down water. +The mountains quaked before the LORD, + +Why did you sit among the sheepfolds +to hear the whistling for the flocks? + +the One of Sinai, + +before the LORD, + +the God of Israel. + +6 + +In the days of Shamgar son of Anath, + +in the days of Jael, + +the highways were deserted + +7 + +In the clans of Reuben + +17 + +there was great indecision. + +Gilead remained beyond the Jordan. + +Dan, why did you linger by the ships? + +18 + +Asher stayed at the coast + +and remained in his harbors. + +and the travelers took the byways. + +Zebulun was a people who risked their lives; + +a 11 + +archers + +Life in the villages ceased; +it ended in Israel, + or +Or + +those who divide the sheep + +b 11 + +warriors + +c 15 + +Naphtali, too, on the heights of the + +much searching of heart +battlefield. + +Or + +Or + +; also in verse 16 + + 226 | Judges 5:19 + +19 + +Kings came and fought; + +then the kings of Canaan fought at + +Taanach + +by the waters of Megiddo, + +20 + +but they took no plunder of silver. + +From the heavens the stars fought; + +21 + +from their courses they fought against + +Sisera. + +The River Kishon swept them away, + +the ancient river, the River Kishon. + +22 + +March on, O my soul, in strength! + +23 + +Then the hooves of horses thundered— +the mad galloping of his stallions. +‘Curse Meroz,’ says the angel of the LORD. + +‘Bitterly curse her inhabitants; + +24 + +for they did not come to help the LORD, +to help the LORD against the mighty.’ + +Most blessed among women is Jael, +the wife of Heber the Kenite, +most blessed of tent-dwelling women. +He asked for water, and she gave him milk. +In a magnificent bowl she brought him + +25 + +26 + +curds. + +She reached for the tent peg, + +her right hand for the workman’s + +hammer. + +27 + +She struck Sisera and crushed his skull; + +she shattered and pierced his temple. + +At her feet he collapsed, he fell, + +there he lay still; + +at her feet he collapsed, he fell; + +28 + +where he collapsed, there he fell dead. + +Sisera’s mother looked through + +the window; + +she peered through the lattice and + +lamented: + +‘Why is his chariot so long in coming? +What has delayed the clatter of his + +29 + +chariots?’ +Her wisest ladies answer; + +30 + +indeed she keeps telling herself, + +‘Are they not finding and dividing the spoil— + +a girl or two for each warrior, +a plunder of dyed garments for Sisera, +the spoil of embroidered garments +for the neck of the looter?’ + +31 + +So may all Your enemies perish, + +O LORD! + +But may those who love You +b 11 + +Angel +worship +shine like the sun at its brightest.” +terebinth + +a 10 +c 11 + +great tree +Or + +Midian Oppresses Israel +And the land had rest for forty years. + +6 + +2 + +Again the Israelites did evil in the sight of the +LORD; so He delivered them into the hand of +and the hand of Midian +Midian for seven years, +prevailed against Israel. Because of the Midian- +ites, the Israelites prepared shelters for them- +3 +selves in the mountains, caves, and strongholds. + +4 + +Whenever the Israelites planted their crops, the +Midianites, Amalekites, and other people of the +encamp- +east would come up and invade them, +ing against them as far as Gaza and destroying +the produce of the land. They left Israel with no +5 +sustenance, neither sheep nor oxen nor donkeys. +For the Midianites came with their livestock +and their tents like a great swarm of locusts. +They and their camels were innumerable, and +6 +they entered the land to ravage it. + +Israel was greatly impoverished by Midian, and + +7 +the Israelites cried out to the LORD. +8 + +9 + +Now when the Israelites cried out to the LORD +He sent them a prophet, who +because of Midian, +told them, “This is what the LORD, the God of Is- +rael, says: I brought you up out of Egypt, out of +I delivered you out of the +the house of slavery. +hands of Egypt and all your oppressors. I drove +10 +them out before you and gave you their land. +And I said to you: ‘I am the LORD your God. You + the gods of the Amorites, in whose + +must not fear +The Call of Gideon +land you dwell.’ But you did not obey Me.” +11 + + a + + b + + c +Then the angel + of the LORD came and sat + in Ophrah that belonged to +down under the oak +Joash the Abiezrite, where his son Gideon was +threshing wheat in a winepress to hide it from +And the angel of the LORD ap- +the Midianites. +peared to Gideon and said, “The LORD is with +13 +you, O mighty man of valor.” + +12 + +“Please, my Lord,” Gideon replied, “if the LORD +is with us, why has all this happened to us? And +where are all His wonders of which our fathers +told us, saying, ‘Has not the LORD brought us up +out of Egypt?’ But now the LORD has forsaken us +14 +and delivered us into the hand of Midian.” + + d + +The LORD + + turned to him and said, “Go in the +strength you have and save Israel from the hand +of Midian. Am I not sending you?” +The Angel of the LORD + +d 14 + +The angel of the LORD + +Or +Or + +; also in verses 12, 20, 21, and 22; corresponding pronouns may also be capitalized. + + or + +; also in verse 19 + +LXX + + or + +; also in verse 16 + + Judges 6:39 | 227 + +15 + +“Please, my Lord,” Gideon replied, “how can I +save Israel? Indeed, my clan is the weakest in Ma- +nasseh, and I am the youngest in my father’s +16 +house.” + +“Surely I will be with you,” the LORD replied, +“and you will strike down all the Midianites as +17 +one man.” + +of the city, he did it by night rather than in the +28 +daytime. + +When the men of the city got up in the morn- +ing, there was Baal’s altar torn down, with the +Asherah pole cut down beside it and the second +“Who +bull offered up on the newly built altar. +did this?” they said to one another. + +29 + +18 + +Gideon answered, “If I have found favor in +Your sight, give me a sign that it is You speaking +with me. +Please do not depart from this place +until I return to You. Let me bring my offering +and set it before You.” +19 +And the LORD said, “I will stay until you return.” + +a + +So Gideon went in and prepared a young goat +and unleavened bread and an ephah of flour. + He +placed the meat in a basket and the broth in a pot +and brought them out to present to Him under +20 +the oak. + +And the angel of God said to him, “Take the +meat and the unleavened bread, lay them on this +21 +rock, and pour out the broth.” And Gideon did so. + +Then the angel of the LORD extended the tip of +the staff that was in his hand and touched the +meat and the unleavened bread. And fire flared +from the rock and consumed the meat and the +unleavened bread. Then the angel of the LORD +22 +vanished from his sight. + +When Gideon realized that it was the angel of +the LORD, he said, “Oh no, Lord GOD! I have seen +23 +the angel of the LORD face to face!” + +But the LORD said to him, “Peace be with you. + +24 +Do not be afraid, for you will not die.” + +b + +So Gideon built an altar to the LORD there and + To this day it stands + +called it The LORD Is Peace. +Gideon Destroys Baal’s Altar +in Ophrah of the Abiezrites. +25 + +On that very night the LORD said to Gideon, +“Take your father’s young bull and a second bull +seven years old, tear down your father’s altar to +26 +Baal, and cut down the Asherah pole beside it. +Then build a proper altar to the LORD your +God on the top of this stronghold. And with the +wood of the Asherah pole you cut down, take the +27 +second bull and offer it as a burnt offering.” + +So Gideon took ten of his servants and did +as the LORD had told him. But because he was +a 19 An ephah +too afraid of his father’s household and the men +b 24 + +c 32 Jerubbaal + +And after they had investigated thoroughly, they +30 +were told, “Gideon son of Joash did it.” + +Then the men of the city said to Joash, “Bring +out your son. He must die, because he has torn +down Baal’s altar and cut down the Asherah pole +31 +beside it.” + +But Joash said to all who stood against him, +“Are you contending for Baal? Are you trying to +save him? Whoever pleads his case will be put to +death by morning! If Baal is a god, let him con- +tend for himself with the one who has torn down +c +32 +his altar.” + +So on that day Gideon was called Jerubbaal, +that is to say, “Let Baal contend with him,” +The Sign of the Fleece +because he had torn down Baal’s altar. +33 + +Then all the Midianites, Amalekites, and other +people of the east gathered together, crossed +over the Jordan, and camped in the Valley of Jez- +34 +reel. + +So the Spirit of the LORD came upon Gideon, +35 +who blew the ram’s horn and rallied the Abi- +Calling them to arms, +ezrites behind him. +Gideon sent messengers throughout Manasseh, +as well as Asher, Zebulun, and Naphtali, so that +36 +they came up to meet him. + +37 + +Then Gideon said to God, “If You are going to +then +save Israel by my hand, as You have said, +behold, I will place a fleece of wool on the thresh- +ing floor. If there is dew only on the fleece and all +the ground is dry, then I will know that You are +going to save Israel by my hand, as You have +38 +said.” + +And that is what happened. When Gideon +arose the next morning, he squeezed the fleece +39 +and wrung out the dew—a bowlful of water. + +Then Gideon said to God, “Do not be angry with +me; let me speak one more time. Please allow me +one more test with the fleece. This time let it be +dry, and the ground covered with dew.” + +YHWH Shalom + is approximately 20 dry quarts or 22 liters (probably about 25.5 pounds or 11.6 kilograms of flour). + +let Baal contend + +Hebrew + + probably means + +. + + 228 | Judges 6:40 + +40 + +12 + +7 + +And that night God did so. Only the fleece was + +Gideon’s Army of Three Hundred +dry, and dew covered the ground. + + a + + (that is, Gid- +Early in the morning Jerubbaal +eon) and all the men with him camped be- +side the spring of Harod. And the camp of Midian +was north of them in the valley near the hill of +2 +Moreh. + +Then the LORD said to Gideon, “You have too +many men for Me to deliver Midian into their +hands, lest Israel glorify themselves over Me, +saying, ‘My own hand has saved me.’ +Now, +therefore, proclaim in the hearing of the men: +‘Whoever is fearful and trembling may turn back +and leave Mount Gilead.’ +” + +3 + +So twenty-two thousand of them turned back, +4 +but ten thousand remained. + +Then the LORD said to Gideon, “There are still +too many men. Take them down to the water, and +I will sift them for you there. If I say to you, ‘This +one shall go with you,’ he shall go. But if I say, +5 +‘This one shall not go with you,’ he shall not go.” + +6 + +So Gideon brought the men down to the water, +and the LORD said to him, “Separate those who +lap the water with their tongues like a dog from +those who kneel to drink.” +And the number of +those who lapped the water with their hands to +their mouths was three hundred men; all the oth- +7 +ers knelt to drink. + +Then the LORD said to Gideon, “With the three +hundred men who lapped the water I will save +you and deliver the Midianites into your hand. +8 +But all the others are to go home.” + +So Gideon sent the rest of the Israelites to their +tents but kept the three hundred men, who took +charge of the provisions and rams’ horns of the +others. And the camp of Midian lay below him in +The Sword of Gideon +the valley. +9 + +13 + +Now the Midianites, Amalekites, and all the +other people of the east had settled in the valley +like a swarm of locusts, and their camels were as +And as +countless as the sand on the seashore. +Gideon arrived, a man was telling his friend +about a dream. “Behold, I had a dream,” he said, +“and I saw a loaf of barley bread come tumbling +into the Midianite camp. It struck the tent so hard +14 +that the tent overturned and collapsed.” + +His friend replied: “This is nothing less than +the sword of Gideon son of Joash, the Israelite. +God has delivered Midian and the whole camp +Gideon Defeats Midian +into his hand.” +15 + +16 + +When Gideon heard the dream and its inter- +pretation, he bowed in worship. He returned to +the camp of Israel and said, “Get up, for the LORD +has delivered the camp of Midian into your +And he divided the three hundred men +hand.” +into three companies and gave each man a ram’s +horn in one hand and a large jar in the other, con- +17 +taining a torch. + +b + +18 + +“Watch me and do as I do,” Gideon said. “When +I come to the outskirts of the camp, do exactly as +When I and all who are with me blow our +I do. +horns, then you are also to blow your horns from +all around the camp and shout, ‘For the LORD +19 +and for Gideon!’ + +” + +20 + +Gideon and the hundred men with him reached +the outskirts of the camp at the beginning of the +middle watch, just after the changing of the +guard. They blew their horns and broke the jars +The three companies +that were in their hands. +blew their horns and shattered their jars. Hold- +ing the torches in their left hands and the horns +in their right hands, they shouted, “A sword for +21 +the LORD and for Gideon!” + +22 + +11 + +10 + +Each Israelite took his position around the +camp, and the entire Midianite army fled, crying +And when the three hundred +out as they ran. +That night the LORD said to Gideon, “Get up and +rams’ horns sounded, the LORD set all the men in +go down against the camp, for I have delivered it +the camp against one another with their swords. +into your hand. +But if you are afraid to do so, + as +The army fled to Beth-shittah toward Zererah +then go down to the camp with your servant Pu- +23 +far as the border of Abel-meholah near Tabbath. +rah +and listen to what they are saying. Then +Then the men of Israel were called out from +your hands will be strengthened to attack the +Naphtali, Asher, and all Manasseh, and they pur- +camp.” So he went with Purah his servant to the +sued the Midianites. +outposts where armed men were guarding the +let Baal contend +a 1 Jerubbaal +camp. +rams’ horns and empty jars—large jars with torches inside—into the hand of all + +and put + +Zeredah + +Gideon + +b 16 + +c 22 + + c + + is another name for + + and probably means + +; see Judges 6:32. + +Literally + +Some Hebrew manuscripts + + 24 + +25 + +Gideon sent messengers throughout the hill +country of Ephraim to say, “Come down against +the Midianites and seize the waters of the Jordan +ahead of them as far as Beth-barah.” So all the +men of Ephraim were called out, and they cap- +tured the waters of the Jordan as far as Beth- +They also captured Oreb and Zeeb, the +barah. +two princes of Midian; and they killed Oreb at the +rock of Oreb and Zeeb at the winepress of Zeeb. +So they pursued the Midianites and brought the +heads of Oreb and Zeeb to Gideon on the other +Gideon Defeats Zebah and Zalmunna +side of the Jordan. + +8 + +Then the men of Ephraim said to Gideon, +“Why have you done this to us? Why did you +fail to call us when you went to fight against Mid- +2 +ian?” And they contended with him violently. + +3 + +But Gideon answered them, “Now what have I +accomplished compared to you? Are not the +gleanings of Ephraim better than the grape har- +God has delivered Oreb and +vest of Abiezer? +Zeeb, the two princes of Midian, into your hand. +What was I able to do compared to you?” When + against him sub- +he had said this, their anger +4 +sided. + + a + +5 + +Then Gideon and his three hundred men came +to the Jordan and crossed it, exhausted yet still in +So Gideon said to the men of Succoth, +pursuit. +“Please give my troops some bread, for they are +exhausted, and I am still pursuing Zebah and Zal- +6 +munna, the kings of Midian.” + +But the leaders of Succoth asked, “Are the hands +of Zebah and Zalmunna already in your posses- +7 +sion, that we should give bread to your army?” + +“Very well,” Gideon replied, “when the LORD +has delivered Zebah and Zalmunna into my hand, +I will tear your flesh with the thorns and briers +8 +of the wilderness!” + + b + +From there he went up to Penuel + + and asked +the same from them, but the men of Penuel gave +So +the same response as the men of Succoth. +Gideon told the men of Penuel, “When I return in +10 +triumph, I will tear down this tower!” + +9 + +Now Zebah and Zalmunna were in Karkor with +their army of about fifteen thousand men—all +that were left of the armies of the people of the +east. A hundred and twenty thousand swords- +And Gideon went up +men had already fallen. +Peniel +b 8 Penuel +a 3 +by way of the caravan route east of Nobah and + +their spirit + +11 + +Judges 8:25 | 229 + +12 + +Jogbehah, and he attacked their army, taking +When Zebah and Zalmunna +them by surprise. +fled, Gideon pursued and captured these two +13 +kings of Midian, routing their entire army. + +14 + +After this, Gideon son of Joash returned from +There he +the battle along the Ascent of Heres. +captured a young man of Succoth and interro- +gated him. The young man wrote down for him +the names of the seventy-seven leaders and el- +15 +ders of Succoth. + +And Gideon went to the men of Succoth and +said, “Here are Zebah and Zalmunna, about +whom you taunted me, saying, ‘Are the hands of +Zebah and Zalmunna already in your possession, +16 +” +that we should give bread to your weary men?’ +Then he took the elders of the city, and using +the thorns and briers of the wilderness, he disci- +He also pulled +plined the men of Succoth. +down the tower of Penuel and killed the men of +18 +the city. + +17 + +Next, Gideon asked Zebah and Zalmunna, + +“What kind of men did you kill at Tabor?” + +“Men like you,” they answered, “each one resem- +19 +bling the son of a king.” + +“They were my brothers,” Gideon replied, “the +sons of my mother! As surely as the LORD lives, +20 +if you had let them live, I would not kill you.” + +So he said to Jether, his firstborn, “Get up and +kill them.” But the young man did not draw his +sword; he was fearful because he was still a +21 +youth. + +Then Zebah and Zalmunna said, “Get up and +kill us yourself, for as the man is, so is his +strength.” So Gideon got up and killed Zebah and +Zalmunna, and he took the crescent ornaments +Gideon’s Ephod +from the necks of their camels. +22 + +Then the Israelites said to Gideon, “Rule over +us—you and your son and grandson—for you +23 +have saved us from the hand of Midian.” + +But Gideon replied, “I will not rule over you, +24 +nor will my son. The LORD shall rule over you.” + +Then he added, “Let me make a request +of you, that each of you give me an earring from +his plunder.” (For the enemies had gold earrings +25 +because they were Ishmaelites.) + +“We will give them gladly,” they replied. + +Or + + is a variant of + +; also in verses 9 and 17; see Genesis 32:30. + + 230 | Judges 8:26 + +26 + +4 + +a + +So they spread out a garment, and each man +threw an earring from his plunder onto it. +The +weight of the gold earrings he had requested was +1,700 shekels, + in addition to the crescent orna- +ments, the pendants, the purple garments of the +kings of Midian, and the chains from the necks of +27 +their camels. + +From all this Gideon made an ephod, which he +placed in Ophrah, his hometown. But soon all Is- +rael prostituted themselves by worshiping it +there, and it became a snare to Gideon and his +Forty Years of Peace +household. +28 + + e + +5 + +follow Abimelech, for they said, “He is our +So they gave him seventy shekels of +brother.” +silver + from the temple of Baal-berith, with +which Abimelech hired some worthless and +reckless men to follow him. +He went to his +father’s house in Ophrah, and on one stone mur- +dered his seventy brothers, the sons of Jerubbaal. +But Jotham, the youngest son of Jerubbaal, sur- +6 +vived, because he hid himself. + + f +Then all the leaders of Shechem and Beth-millo + at the pillar in Shechem + +gathered beside the oak +Jotham’s Parable +and proceeded to make Abimelech their king. +7 + +29 + +In this way Midian was subdued before the +Israelites and did not raise its head again. So the +land had rest for forty years in the days of +Gideon, + son of Joash— +c +30 +returned home and settled down. + +and he—Jerubbaal + + b + +31 + +Gideon had seventy sons of his own, + + since he +had many wives. +His concubine, who dwelt in +Shechem, also bore him a son, and he named him +Gideon’s Death +Abimelech. +32 + +Later, Gideon son of Joash died at a ripe old age +and was buried in the tomb of his father Joash in +33 +Ophrah of the Abiezrites. + +And as soon as Gideon was dead, the Israelites +turned and prostituted themselves with the +34 +Baals, and they set up Baal-berith as their god. + +The Israelites failed to remember the LORD +their God who had delivered them from the +hands of all their enemies on every side. +They +did not show kindness to the house of Jerubbaal +(that is, Gideon) for all the good things he had +Abimelech’s Conspiracy +done for Israel. + +35 + + d + + went to +Now Abimelech son of Jerubbaal +2 +his mother’s brothers at Shechem and said +“Please +to them and to all the clan of his mother, +ask all the leaders of Shechem, ‘Is it better for you +that seventy men, all the sons of Jerubbaal, rule +over you, or just one man?’ Remember that I am +3 +your own flesh and blood.” + +And when his mother’s brothers spoke all these +words about him in the presence of all the lead- +a 26 1,700 shekels +ers of Shechem, their hearts were inclined to + +let Baal contend + +9 + +When this was reported to Jotham, he climbed +to the top of Mount Gerizim, raised his voice, and +cried out: + +“Listen to me, O leaders of Shechem, +8 + +and may God listen to you. + +One day the trees set out + +to anoint a king for themselves. + +They said to the olive tree, + +9 + +‘Reign over us.’ + +But the olive tree replied, + +‘Should I stop giving my oil +that honors both God and man, +to hold sway over the trees?’ + +10 + +11 + +Then the trees said to the fig tree, +‘Come and reign over us.’ + +But the fig tree replied, + +‘Should I stop giving my sweetness + +and my good fruit, + +to hold sway over the trees?’ + +Then the trees said to the grapevine, + +‘Come and reign over us.’ + +But the grapevine replied, + +‘Should I stop giving my wine + +that cheers both God and man, + +to hold sway over the trees?’ + +12 + +13 + +14 + +15 + +Finally all the trees said to the thornbush, + +‘Come and reign over us.’ + +But the thornbush replied, + +‘If you really are anointing me as king over + +you, + +come and find refuge in my shade. + +c 30 + +But if not, may fire come out of the thornbush + +b 29 Jerubbaal +and consume the cedars of Lebanon.’ +who came from his own loins + is another name for +great tree + +terebinth + +Gideon + +Hebrew +f 6 + + and proba- + is + +d 1 Jerubbaal + +bly means +e 4 70 shekels +another name for + + is approximately 42.7 pounds or 19.4 kilograms. +Gideon + +let Baal contend +; also in verse 35; see Judges 6:32. + + and probably means + +; here and throughout this chapter; see Judges 6:32. + + is approximately 1.76 pounds or 797.8 grams of silver. + +Or + + or + + Judges 9:44 | 231 + +The Fall of Shechem + +30 + + d + +32 + +When Zebul the governor of the city heard the + c +31 +words of Gaal son of Ebed, he burned with anger. +So he covertly sent messengers to Abimelech +to say, “Look, Gaal son of Ebed and his brothers +have come to Shechem and are stirring up + the +city against you. +Now then, tonight you and +the people with you are to come and lie in wait in +the fields. +And in the morning at sunrise, get up +and advance against the city. When Gaal and his +men come out against you, do to them whatever +34 +you are able.” + +33 + +So Abimelech and all his troops set out by +night and lay in wait against Shechem in four +35 +companies. + +Now Gaal son of Ebed went out and stood at +the entrance of the city gate just as Abimelech +36 +and his men came out from their hiding places. + +When Gaal saw the people, he said to Zebul, +“Look, people are coming down from the moun- +tains!” + +But Zebul replied, “The shadows of the moun- +37 +tains look like men to you.” + +e + +f + +Then Gaal spoke up again, “Look, people are +coming down from the center of the land, + and +one company is coming by way of the Diviners’ +38 +Oak. + +” + +“Where is your gloating now?” Zebul replied. +“You said, ‘Who is Abimelech that we should +serve him?’ Are these not the people you ridi- +39 +culed? Go out now and fight them!” + +40 + +So Gaal went out before the leaders of +but +Shechem and fought against Abimelech, +Abimelech pursued him, and Gaal fled before +him. And many Shechemites fell wounded all the +way to the entrance of the gate. +Abimelech +stayed in Arumah, and Zebul drove Gaal and his +42 +brothers out of Shechem. + +41 + +43 + +The next day the people of Shechem went out +into the fields, and this was reported to +Abimelech. +So he took his men, divided them +into three companies, and lay in wait in the fields. +When he saw the people coming out of the city, +44 +he rose up against them and attacked them. + +16 + +18 + +Now if you have acted faithfully and honestly +in making Abimelech king, if you have done well +17 +by Jerubbaal and his family, and if you have done +to him as he deserves— +for my father fought +for you and risked his life to deliver you from the +hand of Midian, +but you have risen up against +my father’s + house this day and killed his seventy +sons on a single stone, and you have made +Abimelech, the son of his maidservant, king over +the leaders of Shechem because he is your +brother— +if you have acted faithfully and hon- +estly toward Jerubbaal and his house this day, +20 +then may you rejoice in Abimelech, and he in you. + +19 + +But if not, may fire come from Abimelech and +consume the leaders of Shechem and Beth-millo, +and may fire come from the leaders of Shechem +21 +and Beth-millo and consume Abimelech.” + +Then Jotham ran away, escaping to Beer, and +Gaal Conspires with the Shechemites +he lived there for fear of his brother Abimelech. +22 + +23 + + a + +God sent a spirit of animosity + +After Abimelech had reigned over Israel for +three years, + be- +tween Abimelech and the leaders of Shechem +24 +and caused them to treat Abimelech deceitfully, +in order that the crime against the seventy +sons of Jerubbaal might come to justice and their +blood be avenged on their brother Abimelech +and on the leaders of Shechem, who had helped +25 +him murder his brothers. + +The leaders of Shechem set up an ambush +against Abimelech on the hilltops, and they +robbed all who passed by them on the road. So +26 +this was reported to Abimelech. + +Meanwhile, Gaal son of Ebed came with his +brothers and crossed into Shechem, and the lead- +27 +ers of Shechem put their confidence in him. +And after they had gone out into the fields, +gathered grapes from their vineyards, and trod- +den them, they held a festival and went into the +house of their god; and as they ate and drank, +28 +they cursed Abimelech. + +29 + +Then Gaal son of Ebed said, “Who is Abimelech, +and who is Shechem, that we should serve him? +Is he not the son of Jerubbaal, and is not Zebul his +officer? You are to serve the men of Hamor, the +father of Shechem. Why should we serve +Abimelech? +If only this people were under my +authority, I would remove Abimelech; I would +b 29 +a 23 +say to him, ‘Muster your army and come out!’ +” +out!” c 31 +he sent messengers to Abimelech in Arumah +Or +navel of the earth + +LXX; Hebrew +the Diviners’ Terebinth + +a harmful spirit + +f 37 + + b + +I would remove Abimelech.” And he said to him, “Muster your army and come + +Then Abimelech and the companies with him +rushed forward and took their stand at the en- +trance of the city gate. The other two companies +the + +closing up + +besieging + +d 31 + +e 37 + +the diviners’ tree + +Or + +; see verse 41. + +Or + + or + +Literally + +Or + + or + + 232 | Judges 9:45 + +45 + +rushed against all who were in the fields and +struck them down. +And all that day Abimelech +fought against the city until he had captured it +and killed its people. Then he demolished the city +46 +and sowed it with salt. + +a + +47 + +On hearing of this, all the leaders in the tower +of Shechem entered the inner chamber of the +And when Abimelech was +temple of El-berith. +48 +told that all the leaders in the tower of Shechem +were gathered there, +he and all his men went +up to Mount Zalmon. Abimelech took his axe in +his hand and cut a branch from the trees, which +he lifted to his shoulder, saying to his men, +49 +“Hurry and do what you have seen me do.” + +So each man also cut his own branch and fol- +lowed Abimelech. Then they piled the branches +against the inner chamber and set it on fire above +them, killing everyone in the tower of Shechem, +Abimelech’s Punishment +about a thousand men and women. +50 + +51 + +Then Abimelech went to Thebez, encamped +against it, and captured it. +But there was a +strong tower inside the city, and all the men, +women, and leaders of the city fled there. They +locked themselves in and went up to the roof of +52 +the tower. + +53 + +When Abimelech came to attack the tower, he +approached its entrance to set it on fire. +But +a woman dropped an upper millstone on +He +Abimelech’s head, crushing his skull. +quickly called his armor-bearer, saying, “Draw +your sword and kill me, lest they say of me, ‘A +woman killed him.’ + +54 + +” + +55 + +So Abimelech’s armor-bearer ran his sword +through him, and he died. +And when the Isra- +elites saw that Abimelech was dead, they all went +56 +home. + +57 + +In this way God repaid the wickedness that +Abimelech had done to his father in murdering +And God also brought all +his seventy brothers. +the wickedness of the men of Shechem back upon +their own heads. So the curse of Jotham son of Je- +Tola +rubbaal came upon them. + +10 + +After the time of Abimelech, a man of Is- +sachar, Tola son of Puah, the son +of Dodo, rose up to save Israel. He lived in +Baal-berith +a 46 El-berith +Shamir, in the hill country of Ephraim. +c 4 + was another name for + +the villages of Jair + +d 12 + +; see verse 4. +Hebrew; some LXX manuscripts + +Or + +2 + + b + +Tola judged + + Israel twenty-three years, and + +Jair +when he died, he was buried in Shamir. +3 + +4 + +Tola was followed by Jair the Gileadite, who +He had thirty +judged Israel twenty-two years. +sons who rode on thirty donkeys. And they had +thirty towns in the land of Gilead, which to this +5 +day are called Havvoth-jair. +Oppression by the Philistines and Ammonites + +When Jair died, he was buried in Kamon. + +c + +6 + +And again the Israelites did evil in the sight of +the LORD. They served the Baals, the Ashtoreths, +the gods of Aram, Sidon, and Moab, and the gods +of the Ammonites and Philistines. Thus they for- +7 +sook the LORD and did not serve Him. + +8 + +So the anger of the LORD burned against +Israel, and He sold them into the hands of +who that very +the Philistines and Ammonites, +year harassed and oppressed the Israelites, and +they did so for eighteen years to all the Israelites +on the other side of the Jordan in Gilead, the land +9 +of the Amorites. + +The Ammonites also crossed the Jordan to fight +against Judah, Benjamin, and the house of +10 +Ephraim, and Israel was in deep distress. + +Then the Israelites cried out to the LORD, say- +ing, “We have sinned against You, for we have in- +11 +deed forsaken our God and served the Baals.” + +12 + + d + +13 + +The LORD replied, “When the Egyptians, +Sidonians, +Amorites, Ammonites, Philistines, + oppressed you and +Amalekites, and Maonites +you cried out to Me, did I not save you from their +But you have forsaken Me and served +hands? +Go and +other gods, so I will no longer save you. +cry out to the gods you have chosen. Let them +15 +save you in your time of trouble.” + +14 + +16 + +“We have sinned,” the Israelites said to the +LORD. “Deal with us as You see fit; but please de- +So they put away the foreign +liver us today!” +gods from among them and served the LORD, +17 +and He could no longer bear the misery of Israel. + +Then the Ammonites were called to arms and +18 +camped in Gilead, and the Israelites assembled +and camped at Mizpah. +And the rulers of Gil- +ead said to one another, “Whoever will launch +the attack against the Ammonites will be the +led +b 2 +head of all who live in Gilead.” +Midianites +Or + +; here and throughout Judges + +governed + + or + + Jephthah Delivers Israel + +17 + +Judges 11:29 | 233 + +11 + +2 + +Now Jephthah the Gileadite was a mighty +man of valor; he was the son of a prosti- +tute, and Gilead was his father. +And Gilead’s +wife bore him sons who grew up, drove Jephthah +out, and said to him, “You shall have no inher- +itance in our father’s house, because you are the +3 +son of another woman.” + +So Jephthah fled from his brothers and settled +in the land of Tob, where worthless men gath- +4 +ered around him and traveled with him. + +5 + +6 + +Some time later, when the Ammonites fought +against Israel +and made war with them, the el- +ders of Gilead went to get Jephthah from the land +of Tob. +“Come,” they said, “be our commander, +7 +so that we can fight against the Ammonites.” + +Jephthah replied to the elders of Gilead, “Did +you not hate me and expel me from my father’s +house? Why then have you come to me now, +8 +when you are in distress?” + +They answered Jephthah, “This is why we now +turn to you, that you may go with us, fight the +Ammonites, and become leader over all of us +9 +who live in Gilead.” + +But Jephthah asked them, “If you take me back +to fight the Ammonites and the LORD gives them +10 +to me, will I really be your leader?” + +And the elders of Gilead said to Jephthah, “The +11 +LORD is our witness if we do not do as you say.” + +So Jephthah went with the elders of Gilead, and +the people made him their leader and com- +mander. And Jephthah repeated all his terms in +12 +the presence of the LORD at Mizpah. + +Then Jephthah sent messengers to the king of +the Ammonites, saying, “What do you have +against me that you have come to fight against +13 +my land?” + +The king of the Ammonites answered Jeph- +thah’s messengers, “When Israel came up out of +Egypt, they seized my land, from the Arnon to the +Jabbok and all the way to the Jordan. Now, there- +14 +fore, restore it peaceably.” + +15 + +Jephthah again sent messengers to the king of +the Ammonites +to tell him, “This is what Jeph- +thah says: Israel did not take away the land of +But when Israel +Moab or of the Ammonites. +came up out of Egypt, they traveled through the +the Sea of Reeds +a 16 + and came to Kadesh. +wilderness to the Red Sea + +16 + + a + +Or + +Then Israel sent messengers to the king of +Edom, saying, ‘Please let us pass through your +land,’ but the king of Edom would not listen. They +also sent messengers to the king of Moab, but he +18 +would not consent. So Israel stayed in Kadesh. + +Then Israel traveled through the wilderness +and bypassed the lands of Edom and Moab. They +came to the east side of the land of Moab and +camped on the other side of the Arnon. But they +did not enter the territory of Moab, since the +19 +Arnon was its border. + +20 + +And Israel sent messengers to Sihon king of +the Amorites, who ruled in Heshbon, and said to +him, ‘Please let us pass through your land into +But Sihon would not trust Is- +our own place.’ +rael to pass through his territory. So he gathered +all his people, encamped in Jahaz, and fought +21 +with Israel. + +22 + +Then the LORD, the God of Israel, delivered +Sihon and all his people into the hand of Israel, +who defeated them. So Israel took possession of +all the land of the Amorites who inhabited that +seizing all the land from the Arnon +country, +to the Jabbok and from the wilderness to the +23 +Jordan. + +24 + +Now since the LORD, the God of Israel, has +driven out the Amorites from before His +Do +people Israel, should you now possess it? +you not possess whatever your god Chemosh +grants you? So also, we possess whatever the +Are you now so +LORD our God has granted us. +much better than Balak son of Zippor, king of +Moab? Did he ever contend with Israel or fight +26 +against them? + +25 + +For three hundred years Israel has lived in +Heshbon, Aroer, and their villages, as well as all +the cities along the banks of the Arnon. Why did +I +you not take them back during that time? +have not sinned against you, but you have done +me wrong by waging war against me. May the +LORD, the Judge, decide today between the Isra- +28 +elites and the Ammonites.” + +27 + +But the king of the Ammonites paid no heed to + +Jephthah’s Tragic Vow +the message Jephthah sent him. +29 + +Then the Spirit of the LORD came upon Jeph- +thah, and he passed through Gilead and Manas- +seh, then through Mizpah of Gilead. And from +there he advanced against the Ammonites. + + 234 | Judges 11:30 + +30 + +31 + +Jephthah made this vow to the LORD: “If in- +deed You will deliver the Ammonites into my +hand, +then whatever comes out the door of my +house to greet me on my triumphant return from +the Ammonites will belong to the LORD, and I +32 +will offer it up as a burnt offering.” + +33 + +So Jephthah crossed over to the Ammonites to +fight against them, and the LORD delivered them +into his hand. +With a great blow he devastated +twenty cities from Aroer to the vicinity of Min- +nith, as far as Abel-keramim. So the Ammonites +34 +were subdued before the Israelites. + +And when Jephthah returned home to Mizpah, +there was his daughter coming out to meet him +with tambourines and dancing! She was his only +35 +child; he had no son or daughter besides her. + +As soon as Jephthah saw her, he tore his +clothes and said, “No! Not my daughter! You have +brought me to my knees! You have brought great +misery upon me, for I have given my word to the +36 +LORD and cannot take it back.” + +37 + +“My father,” she replied, “you have given your +word to the LORD. Do to me as you have said, for +the LORD has avenged you of your enemies, the +Ammonites.” +She also said to her father, “Let +me do this one thing: Let me wander for two +months through the mountains with my friends +38 +and mourn my virginity.” + +“Go,” he said. And he sent her away for two + +months. + +39 + +So she left with her friends and mourned her vir- +ginity upon the mountains. +After two months, +she returned to her father, and he did to her as +he had vowed. And she had never had relations +with a man. + +40 + +So it has become a custom in Israel +that each +year the young women of Israel go out for four +days to lament the daughter of Jephthah the Gil- +Jephthah Defeats Ephraim +eadite. + +12 + +Then the men of Ephraim assembled and +crossed the Jordan to Zaphon. They said +to Jephthah, “Why have you crossed over to fight +the Ammonites without calling us to go with you? +2 +We will burn your house down with you inside!” + +But Jephthah replied, “My people and I had a se- +rious conflict with the Ammonites, and when I +3 +called, you did not save me out of their hands. +b 3 +a 7 +When I saw that you would not save me, I risked + +in his city in Gilead + +Angel + +my life and crossed over to the Ammonites, and +the LORD delivered them into my hand. Why +4 +then have you come today to fight against me?” + +Jephthah then gathered all the men of Gilead +and fought against Ephraim. And the men of Gil- +ead struck them down because the Ephraimites +had said, “You Gileadites are +in +Ephraim, living in the territories of Ephraim and +5 +Manasseh.” + +fugitives + +The Gileadites captured the fords of the Jordan +leading to Ephraim, and whenever a fugitive +from Ephraim would say, “Let me cross over,” the +Gileadites would ask him, “Are you an Ephraim- +ite?” + +6 + +If he answered, “No,” +Shibboleth.” + +they told him, “Please say + +If he said, “Sibboleth,” because he could not pro- +nounce it correctly, they seized him and killed +him at the fords of the Jordan. So at that time +7 +42,000 Ephraimites were killed. + +a +Jephthah judged Israel six years, and when he + +Ibzan, Elon, and Abdon +died, he was buried in one of the cities of Gilead. +8 + +9 + +After Jephthah, Ibzan of Bethlehem judged Is- +He had thirty sons, as well as thirty daugh- +rael. +ters whom he gave in marriage to men outside +his clan; and for his sons he brought back thirty +wives from elsewhere. Ibzan judged Israel seven +years. +Then Ibzan died, and he was buried in +11 +Bethlehem. +12 + +10 + +After Ibzan, Elon the Zebulunite judged Israel +ten years. +Then Elon the Zebulunite died, and +13 +he was buried in Aijalon in the land of Zebulun. + +14 + +15 + +After Elon, Abdon son of Hillel, from Pirathon, +judged Israel. +He had forty sons and thirty +grandsons, who rode on seventy donkeys. And he +judged Israel eight years. +Then Abdon son of +Hillel, from Pirathon, died, and he was buried at +Pirathon in Ephraim, in the hill country of the +The Birth of Samson (Numbers 6:1–21) +Amalekites. + +13 + +Again the Israelites did evil in the sight of +the LORD, so He delivered them into the + +2 +hand of the Philistines for forty years. + +Now there was a man from Zorah named +Manoah, from the clan of the Danites, whose wife + of +was barren and had no children. +the LORD appeared to the woman and said to + +The angel + +3 + + b + +LXX + +Or + +; here and throughout chapter 13; corresponding pronouns may also be capitalized. + + 4 + +her, “It is true that you are barren and have no +children; but you will conceive and give birth to +Now please be careful not to drink wine +a son. +5 +or strong drink, and not to eat anything unclean. +For behold, you will conceive and give birth to + a +a son. And no razor shall touch his head, because + to God from the womb, +the boy will be a Nazirite +and he will begin the deliverance of Israel from +6 +the hand of the Philistines.” + +7 + +So the woman went and told her husband, “A +man of God came to me. His appearance was like +the angel of God, exceedingly awesome. I did not +ask him where he came from, and he did not tell +me his name. +But he said to me, ‘Behold, you will +conceive and give birth to a son. Now, therefore, +do not drink wine or strong drink, and do not eat +anything unclean, because the boy will be a +Nazirite to God from the womb until the day of +8 +his death.’ + +” + +Then Manoah prayed to the LORD, “Please, O +Lord, let the man of God You sent us come to us +again to teach us how to raise the boy who is to +9 +be born.” + +10 + +And God listened to the voice of Manoah, and +the angel of God returned to the woman as she +was sitting in the field; but her husband Manoah +was not with her. +The woman ran quickly to +tell her husband, “Behold, the man who came to +11 +me the other day has reappeared!” + +So Manoah got up and followed his wife. When +he came to the man, he asked, “Are you the man +who spoke to my wife?” +12 +“I am,” he said. + +Then Manoah asked, “When your words come +to pass, what will be the boy’s rule of life and mis- +13 +sion?” + +14 + +So the angel of the LORD answered Manoah, +“Your wife is to do everything I told her. +She +must not eat anything that comes from the vine, +nor drink any wine or strong drink, nor eat any- +thing unclean. She must do everything I have +15 +commanded her.” + +“Please stay here,” Manoah said to the angel of +the LORD, “and we will prepare a young goat for +16 +you.” + +And the angel of the LORD replied, “Even if I +stay, I will not eat your food. But if you prepare a +burnt offering, offer it to the LORD.” For Manoah +did not know that it was the angel of the LORD. +a 5 + +set apart b 25 Mahaneh-dan + +camp of Dan + +Or + + means + +. + +Judges 14:5 | 235 + +17 + +Then Manoah said to the angel of the LORD, +“What is your name, so that we may honor you +18 +when your word comes to pass?” + +“Why do you ask my name,” said the angel of + +19 +the LORD, “since it is beyond comprehension?” + +Then Manoah took a young goat and a grain of- +fering and offered them on a rock to the LORD. +20 +And as Manoah and his wife looked on, the LORD +When the flame went +did a marvelous thing. +up from the altar to the sky, the angel of the +LORD ascended in the flame. + +21 + +When Manoah and his wife saw this, they fell +And when the angel +facedown to the ground. +of the LORD did not appear again to Manoah and +his wife, Manoah realized that it had been the an- +22 +gel of the LORD. + +“We are going to die,” he said to his wife, “for + +23 +we have seen God!” + +But his wife replied, “If the LORD had intended +to kill us, He would not have accepted the burnt +offering and the grain offering from our hands, +nor would He have shown us all these things or +24 +spoken to us this way.” + +25 + +So the woman gave birth to a son and named +him Samson. The boy grew, and the LORD +And the Spirit of the LORD began +blessed him. +to stir him at Mahaneh-dan, + between Zorah and +Samson’s Marriage +Eshtaol. + +b + +14 + +2 + +One day Samson went down to Timnah, +where he saw a young Philistine woman. +So he returned and told his father and mother, +“I have seen a daughter of the Philistines in Tim- +3 +nah. Now get her for me as a wife.” + +But his father and mother replied, “Can’t you +find a young woman among your relatives or +among any of our people? Must you go to the +uncircumcised Philistines to get a wife?” + +4 + +But Samson told his father, “Get her for me, for +(Now his father and +she is pleasing to my eyes.” +mother did not know this was from the LORD, +who was seeking an occasion to move against the +Philistines; for at that time the Philistines were +5 +ruling over Israel.) + +Then Samson went down to Timnah with his fa- +ther and mother and came to the vineyards of +Timnah. Suddenly a young lion came roaring at + + 236 | Judges 14:6 + +6 + +7 + +and the Spirit of the LORD came power- +him, +fully upon him, and he tore the lion apart with his +bare hands as one would tear a young goat. But +he did not tell his father or mother what he had +Then Samson continued on his way down +done. +and spoke to the woman, because she was pleas- +Samson’s Riddle +ing to his eyes. +8 + +9 + +When Samson returned later to take her, he left +the road to see the lion’s carcass, and in it was a +So he +swarm of bees, along with their honey. +scooped some honey into his hands and ate it as +he went along. And when he returned to his fa- +ther and mother, he gave some to them and they +ate it. But he did not tell them that he had taken +10 +the honey from the lion’s carcass. + +11 + +Then his father went to visit the woman, and +Samson prepared a feast there, as was customary +a +And when the Philistines +for the bridegroom. +saw him, + they selected thirty men to accompany +12 +him. + +13 + +“Let me tell you a riddle,” Samson said to them. +“If you can solve it for me within the seven days +of the feast, I will give you thirty linen garments +But if you cannot +and thirty sets of clothes. +solve it, you must give me thirty linen garments +and thirty sets of clothes.” +14 +“Tell us your riddle,” they replied. “Let us hear it.” + +So he said to them: + +“Out of the eater came something to eat, +and out of the strong came something + +sweet.” + +15 + + b + +So on the fourth + +For three days they were unable to explain the +riddle. + day they said to Sam- +son’s wife, “Entice your husband to explain the +riddle to us, or we will burn you and your father’s +household to death. Did you invite us here to rob +16 +us?” + +Then Samson’s wife came to him, weeping, and +said, “You hate me! You do not really love me! +You have posed to my people a riddle, but have +not explained it to me.” + +“Look,” he said, “I have not even explained it to +my father or mother, so why should I explain it +17 +to you?” + +pressed him so much, he told her the answer. +And in turn she explained the riddle to her +18 +people. + +Before sunset on the seventh day, the men of + +the city said to Samson: + +“What is sweeter than honey? + +And what is stronger than a lion?” + +So he said to them: + +19 + +“If you had not plowed with my heifer, + +you would not have solved my riddle!” + +Then the Spirit of the LORD came mightily +upon him, and he went down to Ashkelon, killed +thirty of their men, took their apparel, and gave +their clothes to those who had solved the riddle. +And burning with anger, Samson returned to his +and his wife was given to one of +father’s house, +Samson’s Revenge +the men who had accompanied him. + +20 + +15 + +Later on, at the time of the wheat har- +vest, Samson took a young goat and went +to visit his wife. “I want to go to my wife in her +room,” he said. But her father would not let him +2 +enter. + +“I was sure that you thoroughly hated her,” said +her father, “so I gave her to one of the men who +accompanied you. Is not her younger sister more +3 +beautiful than she? Please take her instead.” + +Samson said to them, “This time I will be blame- + +4 +less in doing harm to the Philistines.” + +5 + +Then Samson went out and caught three hun- +dred foxes. And he took torches, turned the foxes +tail-to-tail, and fastened a torch between each +pair of tails. +Then he lit the torches and released +the foxes into the standing grain of the Philis- +tines, burning up the piles of grain and the stand- +ing grain, as well as the vineyards and olive +6 +groves. + +“Who did this?” the Philistines demanded. + +“It was Samson, the son-in-law of the Timnite,” +they were told. “For his wife was given to his +companion.” + +So the Philistines went up and burned her and +7 +her father to death. + +8 + +And Samson told them, “Because you have done +this, I will not rest until I have taken vengeance +b 15 +upon you.” + with + +And he struck them ruthlessly + +seventh + + c + +She wept the whole seven days of the feast, +a 11 +and finally on the seventh day, because she had +c 8 + +when the bride’s parents saw him +he struck them hip and thigh + +when they saw him + +Or + +Literally + +; literally + +LXX and Syriac; Hebrew + + a great slaughter, and then went down and +9 +stayed in the cave at the rock of Etam. + +a +Then the Philistines went up, camped in Judah, + +10 +and deployed themselves near the town of Lehi. + +“Why have you attacked us?” said the men of + +Judah. + +The Philistines replied, “We have come to arrest +Samson and pay him back for what he has done +11 +to us.” + +In response, three thousand men of Judah +went to the cave at the rock of Etam, and they +asked Samson, “Do you not realize that the Phil- +istines rule over us? What have you done to us?” + +“I have done to them what they did to me,” he +12 +replied. + +But they said to him, “We have come down to +arrest you and hand you over to the Philistines.” + +Samson replied, “Swear to me that you will not +13 +kill me yourselves.” + +“No,” they answered, “we will not kill you, but +we will tie you up securely and hand you over to +them.” So they bound him with two new ropes +14 +and led him up from the rock. + +When Samson arrived in Lehi, the Philistines +came out shouting against him. And the Spirit of +the LORD came mightily upon him. The ropes on +his arms became like burnt flax, and the bonds +He found the fresh +broke loose from his hands. +jawbone of a donkey, reached out his hand and +Then +took it, and struck down a thousand men. +Samson said: + +15 + +16 + +b + +“With the jawbone of a donkey +I have piled them into heaps. + +17 + +With the jawbone of a donkey + +I have slain a thousand men.” + +And when Samson had finished speaking, he +c +cast the jawbone from his hand; and he named +18 +that place Ramath-lehi. + +And being very thirsty, Samson cried out to the +LORD, “You have accomplished this great deliv- +erance through Your servant. Must I now die of +thirst and fall into the hands of the uncircum- +19 +cised?” + +Judges 16:11 | 237 + +d + +why he named it En-hakkore, +20 +Lehi to this day. + + and it remains in + +And Samson judged Israel for twenty years in + +Samson Escapes Gaza +the days of the Philistines. + +16 + +2 +night with her. + +One day Samson went to Gaza, where he +saw a prostitute and went in to spend the + +When the Gazites heard that Samson was there, +they surrounded that place and lay in wait for +him all night at the city gate. They were quiet +throughout the night, saying, “Let us wait until +3 +dawn; then we will kill him.” + +But Samson lay there only until midnight, when +he got up, took hold of the doors of the city gate +and both gateposts, and pulled them out, bar and +all. Then he put them on his shoulders and took +them to the top of the mountain overlooking +Samson and Delilah +Hebron. +4 + +5 + +Some time later, Samson fell in love with a +woman in the Valley of Sorek, whose name was +Delilah. +The lords of the Philistines went to her +and said, “Entice him and find out the source of +his great strength and how we can overpower +him to tie him up and subdue him. Then each one +of us will give you eleven hundred shekels of +6 +silver. + +” + +e + +So Delilah said to Samson, “Please tell me the +source of your great strength and how you can be +7 +tied up and subdued.” + +Samson told her, “If they tie me up with seven +fresh bowstrings that have not been dried, I will +8 +become as weak as any other man.” + +9 + +So the lords of the Philistines brought her seven +fresh bowstrings that had not been dried, and +While the men were +she tied him up with them. +hidden in her room, she called out, “Samson, the +Philistines are here!” + +But he snapped the bowstrings like a strand of +yarn seared by a flame. So the source of his +10 +strength remained unknown. + +Then Delilah said to Samson, “You have +mocked me and lied to me! Now please tell me +11 +how you can be tied up.” + +So God opened up the hollow place in Lehi, and +water came out of it. When Samson drank, his +strength returned, and he was revived. That is +a 9 +d 19 En-hakkore +Literally + +the spring of him who calls + +and spread out in Lehi + +b 16 + +Or + +e 5 1,100 shekels + +I have made them into donkeys + +He replied, “If they tie me up with new ropes +the hill of the jawbone + +c 17 Ramath-lehi + + means + +. + + is approximately 27.6 pounds or 12.5 kg of silver. + + means + +. + + 238 | Judges 16:12 + +that have never been used, I will become as weak +12 +as any other man.” + +free.” But he did not know that the LORD had de- +21 +parted from him. + +So Delilah took new ropes, tied him up with +them, and called out, “Samson, the Philistines are +here!” + +But while the men were hidden in her room, he +snapped the ropes off his arms like they were +13 +threads. + +Then Delilah said to Samson, “You have +mocked me and lied to me all along! Tell me how +you can be tied up.” + +He told her, “If you weave the seven braids of my +head into the web of a loom and tighten it with a +14 +pin, I will become as weak as any other man. + +” + +a + +b + +So while he slept, Delilah took the seven braids + Then +of his hair and wove them into the web. +she tightened it with a pin and called to him, +“Samson, the Philistines are here!” + +But he awoke from his sleep and pulled out the +Delilah Learns the Secret +pin with the loom and the web. +15 + +“How can you say, ‘I love you,’ + +” she asked, +“when your heart is not with me? This is the third +time you have mocked me and failed to reveal to +16 +me the source of your great strength!” + +Finally, after she had pressed him daily with +17 +her words and pleaded until he was sick to death, +Samson told her all that was in his heart: “My +hair has never been cut, because I have been a +Nazirite to God from my mother’s womb. If I am +shaved, my strength will leave me, and I will be- +18 +come as weak as any other man.” + +When Delilah realized that he had revealed to +her all that was in his heart, she sent this mes- +sage to the lords of the Philistines: “Come up +once more, for he has revealed to me all that is in +his heart.” + +Then the lords of the Philistines came to her, +19 +bringing the money in their hands. + +And having lulled him to sleep on her lap, she +called a man to shave off the seven braids of his +20 + and +head. In this way she began to subdue him, +Then she called out, +his strength left him. +“Samson, the Philistines are here!” + +c + +Then the Philistines seized him, gouged out his +eyes, and brought him down to Gaza, where he +was bound with bronze shackles and forced to +22 +grind grain in the prison. + +However, the hair of his head began to grow + +Samson’s Vengeance and Death +back after it had been shaved. +23 + +Now the lords of the Philistines gathered to- +gether to offer a great sacrifice to their god +Dagon. They rejoiced and said, “Our god has de- +24 +livered Samson our enemy into our hands.” + +And when the people saw him, they praised + +their god, saying: + +“Our god has delivered into our hands +our enemy who destroyed our land +and multiplied our dead.” + +25 + +And while their hearts were merry, they said, +“Call for Samson to entertain us.” So they called +Samson out of the prison to entertain them. And +26 +they stationed him between the pillars. + +Samson said to the servant who held his hand, +“Lead me where I can feel the pillars supporting +27 +the temple, so I can lean against them.” + +Now the temple was full of men and women; +all the lords of the Philistines were there, and +about three thousand men and women were on +28 +the roof watching Samson entertain them. + +Then Samson called out to the LORD: “O Lord +GOD, please remember me. Strengthen me, O +God, just once more, so that with one vengeful +blow I may pay back the Philistines for my two +29 +eyes.” + +And Samson reached out for the two central +pillars supporting the temple. Bracing himself +against them with his right hand on one pillar +Samson said, +and his left hand on the other, +“Let me die with the Philistines.” + +30 + +Then he pushed with all his might, and the tem- +ple fell on the lords and all the people in it. So in +his death he killed more than he had killed in his +31 +life. + +When Samson awoke from his sleep, he thought, +“I will escape as I did before and shake myself +a 13 +b 14 +wove them into the web. + +See LXX and Vulgate; Hebrew does not include +c 19 +See LXX and Vulgate; Hebrew does not include + +Hebrew; some LXX manuscripts + +Then Samson’s brothers and his father’s family +came down, carried him back, and buried him + +and tighten it with a pin, I will become as weak as any other man. +So while he slept, Delilah took the seven braids of his hair and + +he began to grow weak + + between Zorah and Eshtaol in the tomb of his fa- +ther Manoah. And he had judged Israel twenty +Micah’s Idolatry +years. + +Micah said, “Now I know that the LORD will be +good to me, because a Levite has become my +The Danites Settle in Laish +priest.” + +Judges 18:13 | 239 + +17 + +2 +Now a man named Micah from the hill +said to his mother, +country of Ephraim + that were +“The eleven hundred shekels of silver +taken from you and about which I heard you ut- +ter a curse—I have the silver here with me; I took +it.” + + a + +Then his mother said, “Blessed be my son by the +3 +LORD!” + +And when he had returned the eleven hundred +shekels of silver to his mother, she said, “I wholly +dedicate the silver to the LORD for my son’s ben- +efit, to make a graven image and a molten idol. +4 +Therefore I will now return it to you.” + b + +So he returned the silver to his mother, and she +took two hundred shekels of silver + and gave +them to a silversmith, who made them into a +graven image and a molten idol. And they were +5 +placed in the house of Micah. + + c + +Now this man Micah had a shrine, and he made +an ephod and some household idols, and or- +dained +In those + one of his sons as his priest. +days there was no king in Israel; everyone did +7 +what was right in his own eyes. + +6 + +8 + +And there was a young Levite from Bethlehem +in Judah who had been residing within the clan +This man left the city of Bethlehem in +of Judah. +Judah to settle where he could find a place. And +as he traveled, he came to Micah’s house in the +9 +hill country of Ephraim. + +“Where are you from?” Micah asked him. + +“I am a Levite from Bethlehem in Judah,” he re- +plied, “and I am on my way to settle wherever I +10 +can find a place.” + + d + +“Stay with me,” Micah said to him, “and be my +father and priest, and I will give you ten shekels + per year, a suit of clothes, and your pro- +of silver +visions.” + +11 + +and agreed to stay with +So the Levite went in +him, and the young man became like a son to +12 +Micah. + +13 + +a 2 1,100 shekels +became his priest and lived in his house. +c 5 + +Micah ordained the Levite, and the young man +Then +e 12 Mahaneh-dan + +18 + +2 + +In those days there was no king in Israel, +and the tribe of the Danites was looking +for territory to occupy. For up to that time they +had not come into an inheritance among the +So the Danites sent out five men +tribes of Israel. +from their clans, men of valor from Zorah and +Eshtaol, to spy out the land and explore it. “Go +and explore the land,” they told them. + +3 + +The men entered the hill country of Ephraim and +came to the house of Micah, where they spent the +And while they were near Micah’s house, +night. +they recognized the voice of the young Levite; so +they went over and asked him, “Who brought +you here? What are you doing in this place? Why +4 +are you here?” + +“Micah has done this and that for me,” he re- + +5 +plied, “and he has hired me to be his priest.” + +Then they said to him, “Please inquire of God to +determine whether we will have a successful +6 +journey.” + +And the priest told them, “Go in peace. The + +7 +LORD is watching over your journey.” + +So the five men departed and came to Laish, +where they saw that the people were living +securely, like the Sidonians, quiet and unsuspect- +ing. There was nothing lacking in the land and no +oppressive ruler. And they were far away from +8 +the Sidonians and had no alliance with anyone. + +When the men returned to Zorah and Eshtaol, +9 +their brothers asked them, “What did you find?” + +They answered, “Come on, let us go up against +them, for we have seen the land, and it is very +good. Why would you fail to act? Do not hesitate +10 +to go there and take possession of the land! +When you enter, you will come to an unsus- +pecting people and a spacious land, for God has +delivered it into your hand. It is a place where +11 +nothing on earth is lacking.” + +12 + +So six hundred Danites departed from Zorah +They +and Eshtaol, armed with weapons of war. +went up and camped at Kiriath-jearim in Judah. + e +That is why the place west of Kiriath-jearim is +called Mahaneh-dan +And from + +b 4 200 shekels + to this day. +d 10 10 shekels + +13 + + is approximately 27.6 pounds or 12.5 kilograms of silver; also in verse 3. + +camp of Dan + +mately 5 pounds or 2.3 kilograms of silver. +mately 4 ounces or 114 grams of silver. + +Hebrew + +; also in verse 12 + + means + +. + + is approxi- + + is approxi- + +filled the hand of + + 240 | Judges 18:14 + +26 + +there they traveled to the hill country of Ephraim +The Danites Take Micah’s Idols +and came to Micah’s house. +14 + +So the Danites went on their way, and Micah +turned to go back home, because he saw that +27 +they were too strong for him. + +Then the five men who had gone to spy out the +land of Laish said to their brothers, “Did you +know that one of these houses has an ephod, +household gods, a graven image, and a molten +15 +idol? Now think about what you should do.” + +So they turned aside there and went to the +home of the young Levite, the house of Micah, +16 +and greeted him. + +The six hundred Danites stood at the entrance +17 +of the gate, armed with their weapons of war. +And the five men who had gone to spy out the +land went inside and took the graven image, the +ephod, the household idols, and the molten idol, +while the priest stood at the entrance of the gate +18 +with the six hundred armed men. + +When they entered Micah’s house and took the +graven image, the ephod, the household idols, +and the molten idol, the priest said to them, +19 +“What are you doing?” + +“Be quiet,” they told him. “Put your hand over +your mouth and come with us and be a father and +a priest to us. Is it better for you to be a priest for +the house of one person or a priest for a tribe and +20 +family in Israel?” + +21 + +So the priest was glad and took the ephod, the +household idols, and the graven image, and went +Putting their small children, +with the people. +their livestock, and their possessions in front of +22 +them, they turned and departed. + +23 + +After they were some distance from Micah’s +house, the men in the houses near Micah’s house +When +mobilized and overtook the Danites. +they called out after them, the Danites turned to +face them and said to Micah, “What is the matter +with you that you have called out such a com- +24 +pany?” + +He replied, “You took the gods I had made, and +my priest, and went away. What else do I have? +How can you say to me, ‘What is the matter with +25 +you?’ + +” + +The Danites said to him, “Do not raise your +voice against us, or angry men will attack you, +a 30 +and you and your family will lose your lives.” +b 2 + +became angry with him + +28 + +After they had taken Micah’s idols and his +priest, they went to Laish, to a quiet and unsus- +pecting people, and they struck them with their +There was +swords and burned down the city. +no one to deliver them, because the city was far +from Sidon and had no alliance with anyone; it +was in a valley near Beth-rehob. +29 +And the Danites rebuilt the city and lived there. +They named it Dan, after their forefather Dan, +who was born to Israel—though the city was for- +30 +merly named Laish. + +a + +The Danites set up idols for themselves, and +Jonathan son of Gershom, the son of Moses, + and +his sons were priests for the tribe of Dan until the +31 +day of the captivity of the land. + +So they set up for themselves Micah’s graven +image, and it was there the whole time the house +The Crime of the Benjamites +of God was in Shiloh. +(Genesis 19:1–11) + +19 + +Now in those days, when there was no +king in Israel, a Levite who lived in the +remote hill country of Ephraim took for himself +But she +a concubine from Bethlehem in Judah. +was unfaithful to him + and left him to return to +her father’s house in Bethlehem in Judah. + +2 + +3 + + b + +her hus- +After she had been there four months, +band got up and went after her to speak kindly to +her and bring her back, taking his servant and a +pair of donkeys. So the girl brought him into her +4 +father’s house, and when her father saw him, he +His father-in-law, the +gladly welcomed him. +girl’s father, persuaded him to stay, so he re- +mained with him three days, eating, drinking, +5 +and lodging there. + +6 + +On the fourth day, they got up early in the morn- +ing and prepared to depart, but the girl’s father +said to his son-in-law, “Refresh your heart with a +So they +morsel of bread, and then you can go.” +sat down and the two of them ate and drank to- +gether. Then the girl’s father said to the man, +“Please agree to stay overnight and let your heart +The man got up to depart, but his +be merry.” +father-in-law persuaded him, so he stayed there +that night. + +the son of Manasseh + +7 + +Some Hebrew and LXX manuscripts and Vulgate; other Hebrew and LXX manuscripts + +LXX + + 8 + +9 + +On the fifth day, he got up early in the morning +to depart, but the girl’s father said, “Please re- +fresh your heart.” So they waited until late after- +When the man +noon and the two of them ate. +got up to depart with his concubine and his serv- +ant, his father-in-law, the girl’s father, said to +him, “Look, the day is drawing to a close. Please +spend the night. See, the day is almost over. +Spend the night here, that your heart may be +merry. Then you can get up early tomorrow for +10 +your journey home.” + +11 + +But the man was unwilling to spend the night. +He got up and departed, and arrived opposite +Jebus (that is, Jerusalem), with his two saddled +When they were +donkeys and his concubine. +near Jebus and the day was almost gone, the +servant said to his master, “Please, let us stop at +12 +this Jebusite city and spend the night here.” + +But his master replied, “We will not turn aside +to the city of foreigners, where there are no Isra- +He continued, +elites. We will go on to Gibeah.” +“Come, let us try to reach one of these towns to +14 +spend the night in Gibeah or Ramah.” + +13 + +So they continued on their journey, and the +15 +sun set as they neared Gibeah in Benjamin. +They stopped to go in and lodge in Gibeah. The +Levite went in and sat down in the city square, +but no one would take them into his home for the +16 +night. + +17 + +That evening an old man from the hill country +of Ephraim, who was residing in Gibeah (the men +of that place were Benjamites), came in from his +When he looked up and saw +work in the field. +the traveler in the city square, the old man asked, +“Where are you going, and where have you come +18 +from?” + + a + +The Levite replied, “We are traveling from +Bethlehem in Judah to the remote hill country of +Ephraim, where I am from. I went to Bethlehem +in Judah, and now I am going to the house of the +19 + but no one has taken me into his home, +LORD; +even though there is both straw and feed for +our donkeys, and bread and wine for me and the +maidservant and young man with me. There is +20 +nothing that we, your servants, lack.” + +“Peace to you,” said the old man. “Let me sup- +ply everything you need. Only do not spend the +night in the square.” +So he brought him to his +a 18 + +I am going to my home + +21 + +LXX + +; see verse 29. + +Judges 20:3 | 241 + +house and fed his donkeys. And they washed +22 +their feet and ate and drank. + +While they were enjoying themselves, sud- +denly the wicked men of the city surrounded the +house. Pounding on the door, they said to the old +man who owned the house, “Bring out the man +who came to your house, so we can have rela- +23 +tions with him!” + +24 + +The owner of the house went out and said to +them, “No, my brothers, do not do this wicked +thing! After all, this man is a guest in my house. +Look, let me bring +Do not commit this outrage. +out my virgin daughter and the man’s concubine, +and you can use them and do with them as you +25 +wish. But do not do such a vile thing to this man.” + +But the men would not listen to him. So the Le- +vite took his concubine and sent her outside to +them, and they raped her and abused her +26 +throughout the night, and at dawn they let her go. +Early that morning, the woman went back to +the house where her master was staying, col- +lapsed at the doorway, and lay there until it was +27 +light. + +28 + +In the morning, when her master got up and +opened the doors of the house to go out on his +journey, there was his concubine, collapsed in +the doorway of the house, with her hands on the +“Get up,” he told her. “Let us go.” But +threshold. +there was no response. So the man put her on his +29 +donkey and set out for home. + +When he reached his house, he picked up a +knife, took hold of his concubine, cut her limb by +30 +limb into twelve pieces, and sent her throughout +And everyone who saw +the territory of Israel. +it said, “Nothing like this has been seen or done +from the day the Israelites came out of the land +of Egypt until this day. Think it over, take coun- +The Decree of the Assembly +sel, and speak up!” + +20 + +2 + +Then all the Israelites from Dan to Beer- +sheba and from the land of Gilead came +out, and the congregation assembled as one man +The leaders of all +before the LORD at Mizpah. +the people and all the tribes of Israel presented +themselves in the assembly of God’s people: +3 +400,000 men on foot, armed with swords. +(Meanwhile the Benjamites heard that the Isra- +elites had gone up to Mizpah.) And the Israelites +asked, “Tell us, how did this wicked thing +happen?” + + 242 | Judges 20:4 + +4 + +6 + +5 + +So the Levite, the husband of the murdered +woman, answered: “I and my concubine came to +Gibeah in Benjamin to spend the night. +And dur- +ing the night, the men of Gibeah rose up against +me and surrounded the house. They intended to +kill me, but they abused my concubine, and she +Then I took my concubine, cut her into +died. +pieces, and sent her throughout the land of Is- +rael’s inheritance, because they had committed a +Behold, all +lewd and disgraceful act in Israel. +you Israelites, give your advice and verdict here +8 +and now.” + +7 + +9 + +10 + +Then all the people stood as one man and said, +“Not one of us will return to his tent or to his +Now this is what we will do to Gibeah: +house. +We will +We will go against it as the lot dictates. +take ten men out of every hundred from all the +tribes of Israel, and a hundred out of every thou- +sand, and a thousand out of every ten thousand, +to supply provisions for the army when they go +to Gibeah + in Benjamin to punish them for the +11 +atrocity they have committed in Israel.” + + a + +12 + +13 + +So all the men of Israel gathered as one man, +And the tribes of Israel +united against the city. +sent men throughout the tribe of Benjamin, say- +ing, “What is this wickedness that has occurred +Hand over the wicked men of +among you? +Gibeah so we can put them to death and purge +Israel of this evil.” + +14 +But the Benjamites refused to heed the voice of +their fellow Israelites. +And from their cities +15 +they came together at Gibeah to go out and fight +On that day the Benja- +against the Israelites. +mites mobilized 26,000 swordsmen from their +16 +cities, in addition to the 700 select men of Gibeah. +Among all these soldiers there were 700 select +left-handers, each of whom could sling a stone at +17 +a hair without missing. + +The Israelites, apart from Benjamin, mobilized +400,000 swordsmen, each one an experienced +Civil War against Benjamin +warrior. +18 + +The Israelites set out, went up to Bethel, and +inquired of God, “Who of us shall go up first to +fight against the Benjamites?” +19 +“Judah will be first,” the LORD replied. + +20 + +The next morning the Israelites set out and +And the men of Israel +charged from their positions in Maareh-geba + +a 10 +camped near Gibeah. + +Geba + +went out to fight against Benjamin and took up +21 +their battle positions at Gibeah. + +And the Benjamites came out of Gibeah and cut +down 22,000 Israelites on the battlefield that +22 +day. + +23 + +But the Israelite army took courage and again +took their battle positions in the same place +where they had arrayed themselves on the first +They went up and wept before the LORD +day. +until evening, inquiring of Him, “Should we again +draw near for battle against our brothers the +Benjamites?” +24 +And the LORD answered, “Go up against them.” + +25 + +On the second day the Israelites advanced +That same day the +against the Benjamites. +Benjamites came out against them from Gibeah +and cut down another 18,000 Israelites, all of +26 +them armed with swords. + +Then the Israelites, all the people, went up to +Bethel, where they sat weeping before the LORD. +That day they fasted until evening and presented +27 +burnt offerings and peace offerings to the LORD. +And the Israelites inquired of the LORD. (In +those days the ark of the covenant of God was +and Phinehas son of Eleazar, the son of +there, +Aaron, served before it.) The Israelites asked, +“Should we again go out to battle against our +brothers the Benjamites, or should we stop?” + +28 + +The LORD answered, “Fight, for tomorrow I will +29 +deliver them into your hand.” +30 + +31 + +So Israel set up an ambush around Gibeah. +On the third day the Israelites went up against +the Benjamites and arrayed themselves against +The Benja- +Gibeah as they had done before. +mites came out against them and were drawn +away from the city. They began to attack the peo- +ple as before, killing about thirty men of Israel in +the fields and on the roads, one of which led up +32 +to Bethel and the other to Gibeah. + +“We are defeating them as before,” said the + +Benjamites. + +But the Israelites said, “Let us retreat and draw +33 +them away from the city onto the roads.” + +So all the men of Israel got up from their places +and arrayed themselves at Baal-tamar, and the +34 +Israelites in ambush charged from their posi- +Gibeah b 33 +tions west of Gibeah. +Then 10,000 select men +charged from their positions into the open space of Geba + +b + +One Hebrew manuscript; most Hebrew manuscripts + +, a variant of + +Some LXX manuscripts and + +Vulgate; Hebrew + + or + + 35 + +from all Israel made a frontal assault against +Gibeah, and the battle was fierce. But the Benja- +mites did not realize that disaster was upon +The LORD defeated Benjamin in the +them. +presence of Israel, and on that day the Israelites +36 +slaughtered 25,100 Benjamites, all armed with +Then the Benjamites realized they had +swords. +been defeated. + +37 + +Now the men of Israel had retreated before Ben- +jamin because they were relying on the ambush +they had set against Gibeah. +The men in am- +bush rushed suddenly against Gibeah; they ad- +38 +vanced and put the whole city to the sword. + +The men of Israel had arranged a signal with +the men in ambush: When they sent up a great +cloud of smoke from the city, +the men of Israel +would turn in the battle. + +39 + +40 + +When the Benjamites had begun to strike them +down, killing about thirty men of Israel, they +said, “They are defeated before us as in the first +battle.” +But when the column of smoke began +to go up from the city, the Benjamites looked be- +hind them and saw the whole city going up in +41 +smoke. + +Then the men of Israel turned back on them, +and the men of Benjamin were terrified when +42 +they realized that disaster had come upon them. +So they fled before the men of Israel toward +the wilderness, but the battle overtook them, and +the men coming out of the cities struck them +They surrounded the Benjamites, +down there. +pursued them, and easily overtook them in the +And 18,000 Ben- +vicinity of Gibeah on the east. +45 +jamites fell, all men of valor. + +44 + +43 + +Then the Benjamites turned and fled toward +the wilderness to the rock of Rimmon, and Israel +cut down 5,000 men on the roads. And they over- +took them at Gidom and struck down 2,000 +46 +more. + +47 + +48 + +That day 25,000 Benjamite swordsmen fell, all +But 600 men turned and fled into +men of valor. +the wilderness to the rock of Rimmon, where +And the men of Israel +they stayed four months. +turned back against the other Benjamites and +put to the sword all the cities, including the ani- +mals and everything else they found. And they +burned down all the cities in their path. +cherem +a 11 + +Judges 21:15 | 243 + +Wives for the Benjamites + +21 + +Now the men of Israel had sworn an oath +at Mizpah, saying, “Not one of us will give + +2 +his daughter in marriage to a Benjamite.” + +3 + +So the people came to Bethel and sat there be- +fore God until evening, lifting up their voices and +weeping bitterly. +“Why, O LORD God of Israel,” +they cried out, “has this happened in Israel? To- +4 +day in Israel one tribe is missing!” + +5 + +The next day the people got up early, built an +altar there, and presented burnt offerings and +The Israelites asked, “Who +peace offerings. +among all the tribes of Israel did not come to the +assembly before the LORD?” For they had taken +a solemn oath that anyone who failed to come up +before the LORD at Mizpah would surely be put +6 +to death. + +7 + +And the Israelites grieved for their brothers, the +Benjamites, and said, “Today a tribe is cut off +What should we do about wives for +from Israel. +the survivors, since we have sworn by the LORD +8 +not to give them our daughters in marriage?” + +So they asked, “Which one of the tribes of Israel +failed to come up before the LORD at Mizpah?” +And, in fact, no one from Jabesh-gilead had come +For when the +to the camp for the assembly. +people were counted, none of the residents of +10 +Jabesh-gilead were there. + +9 + +So the congregation sent 12,000 of their most +valiant men and commanded them: “Go and put +11 +to the sword those living in Jabesh-gilead, includ- + a +This is what you are +ing women and children. +to do: Devote to destruction + every male, as well +as every female who has had relations with a +12 +man.” + +So they found among the inhabitants of +Jabesh-gilead four hundred young women who +had not had relations with a man, and they +brought them to the camp at Shiloh in the land of +13 +Canaan. + +14 + +Then the whole congregation sent a message +of peace to the Benjamites who were at the rock +And at that time the Benjamites re- +of Rimmon. +turned and were given the women who were +spared from Jabesh-gilead. But there were not +15 +enough women for all of them. + +The people grieved for Benjamin, because the + +LORD had made a void in the tribes of Israel. + +Forms of the Hebrew +by giving them as an offering. + + refer to the giving over of things or persons to the LORD, either by destroying them or + + 244 | Judges 21:16 + +16 + +17 + +Then the elders of the congregation said, +“What should we do about wives for those who +remain, since the women of Benjamin have been +They added, “There must be heirs +destroyed?” +18 +for the survivors of Benjamin, so that a tribe of +But we cannot +Israel will not be wiped out. +give them our daughters as wives.” + +For the Israelites had sworn, “Cursed is he who +19 +gives a wife to a Benjamite.” + +“But look,” they said, “there is a yearly feast to +the LORD in Shiloh, which is north of Bethel east +of the road that goes up from Bethel to Shechem, +20 +and south of Lebonah.” + +21 + +So they commanded the Benjamites: “Go, hide +and watch. When you see the +in the vineyards +daughters of Shiloh come out to perform their + +dances, each of you is to come out of the vine- +yards, catch for himself a wife from the daugh- +22 +ters of Shiloh, and go to the land of Benjamin. +When their fathers or brothers come to us to +complain, we will tell them, ‘Do us a favor by +helping them, since we did not get wives for each +of them in the war. Since you did not actually give +23 +them your daughters, you have no guilt.’ + +” + +24 + +The Benjamites did as instructed and carried +away the number of women they needed from +the dancers they caught. They went back to their +own inheritance, rebuilt their cities, and settled +in them. +And at that time, each of the Israelites +returned from there to his own tribe and clan, +25 +each to his own inheritance. + +In those days there was no king in Israel; + +everyone did what was right in his own eyes. + + Ruth + +Naomi Becomes a Widow +(1 Timothy 5:3–16) + +1 + +2 + +In the days when the judges ruled, there was +a famine in the land. And a certain man from +Bethlehem in Judah, with his wife and two sons, +The man’s +went to reside in the land of Moab. +name was Elimelech, his wife’s name was Naomi, +and the names of his two sons were Mahlon and +Chilion. They were Ephrathites from Bethlehem +in Judah, and they entered the land of Moab and +3 +settled there. + +4 + +Then Naomi’s husband Elimelech died, and she +was left with her two sons, +who took Moabite +women as their wives, one named Orpah and the +other named Ruth. +5 +And after they had lived in Moab about ten years, +both Mahlon and Chilion also died, and Naomi +was left without her two sons and without her +Ruth’s Loyalty to Naomi +husband. +6 + +7 + +When Naomi heard in Moab that the LORD had +attended to His people by providing them with +food, she and her daughters-in-law prepared to +Accompanied by her +leave the land of Moab. +two daughters-in-law, she left the place where +she had been living and set out on the road lead- +8 +ing back to the land of Judah. + +a + +Then Naomi said to her two daughters-in-law, +“Go back, each of you to your mother’s home. +9 + as you +May the LORD show you loving devotion, +have shown to your dead and to me. +May the +LORD enable each of you to find rest in the home +of your new husband.” + +10 + +and +And she kissed them as they wept aloud +said, “Surely we will return with you to your peo- +11 +ple.” + +But Naomi replied, “Return home, my daugh- +ters. Why would you go with me? Are there still +12 +sons in my womb to become your husbands? +Return home, my daughters. Go on, for I am too +chesed +a 8 +love + +kindness + +13 + +old to have another husband. Even if I thought +there was hope for me to have a husband tonight +would you wait for them to +and to bear sons, +grow up? Would you refrain from having hus- +bands? No, my daughters, it is much more bitter +for me than for you, because the hand of the +14 +LORD has gone out against me.” + +Again they wept aloud, and Orpah kissed her + +15 +mother-in-law goodbye, but Ruth clung to her. + +“Look,” said Naomi, “your sister-in-law has +gone back to her people and her gods; follow her +16 +back home.” + +But Ruth replied: + +“Do not urge me to leave you + +or to turn from following you. + +For wherever you go, I will go, + +and wherever you live, I will live; + +your people will be my people, + +17 + +and your God will be my God. + +Where you die, I will die, + +and there I will be buried. + +May the LORD punish me, +and ever so severely, + +if anything but death + +separates you and me.” + +18 + +When Naomi saw that Ruth was determined to +The Return to Bethlehem +go with her, she stopped trying to persuade her. +19 + +So Naomi and Ruth traveled until they came to +Bethlehem. When they entered Bethlehem, the +whole town was stirred because of them, and +the women of the town exclaimed, “Can this be +20 +Naomi?” + +b + +c + + d + +21 + + because the Almighty + +“Do not call me Naomi, + +” she replied. “Call me + has dealt quite bit- +Mara, +I went away full, but the LORD +terly with me. +has brought me back empty. Why call me Naomi? +After all, the LORD has testified against me, and +the Almighty has afflicted me.” + +loving devotion + +Forms of the Hebrew +pleasant +b 20 Naomi +range of meaning includes + + means + +. + +goodness + are translated here and in most cases throughout the Scriptures as +c 20 Mara +, and +, +Hebrew + +faithfulness +d 20 + +; also in verse 21 + +, + means + +, as well as + +bitter +, + +Shaddai + +mercy + +. + +loyalty to a covenant + +; the + +. + + 246 | Ruth 1:22 + +22 + +12 + +So Naomi returned from the land of Moab with +her daughter-in-law Ruth the Moabitess. And +they arrived in Bethlehem at the beginning of the +Boaz Meets Ruth +barley harvest. + +May the LORD repay your work, and +before. +may you receive a rich reward from the LORD, +the God of Israel, under whose wings you have +13 +taken refuge.” + +2 + +Now Naomi had a relative on her husband’s +side, a prominent man of noble character +from the clan of Elimelech, whose name was +2 +Boaz. + +And Ruth the Moabitess said to Naomi, “Please +let me go into the fields and glean heads of grain +after someone in whose sight I may find favor.” +3 +“Go ahead, my daughter,” Naomi replied. + +So Ruth departed and went out into the field +and gleaned after the harvesters. And she hap- +pened to come to the part of the field belonging +4 +to Boaz, who was from the clan of Elimelech. + +Just then Boaz arrived from Bethlehem and said + +to the harvesters, “The LORD be with you.” +5 +“The LORD bless you,” they replied. + +And Boaz asked the foreman of his harvesters, + +6 +“Whose young woman is this?” + +The foreman answered, “She is the Moabitess +7 +who returned with Naomi from the land of Moab. +She has said, ‘Please let me glean and gather +among the sheaves after the harvesters.’ So she +came out and has continued from morning until +now, except that she rested a short time in the +8 +shelter.” + +9 + +Then Boaz said to Ruth, “Listen, my daughter. +Do not go and glean in another field, and do not +go away from this place, but stay here close to my +Let your eyes be on the field they +servant girls. +are harvesting, and follow along after these girls. +Indeed, I have ordered the young men not to +touch you. And when you are thirsty, go and +10 +drink from the jars the young men have filled.” + +At this, she fell on her face, bowing low to the +ground, and said to him, “Why have I found such +favor in your eyes that you should take notice of +11 +me, even though I am a foreigner?” + +“My lord,” she said, “may I continue to find fa- +vor in your eyes, for you have comforted and spo- +ken kindly to your maidservant, though I am not +14 +like one of your servant girls.” + +At mealtime Boaz said to her, “Come over here; +have some bread and dip it into the vinegar +sauce.” So she sat down beside the harvesters, +and he offered her roasted grain, and she ate and +15 +was satisfied and had some left over. + +16 + +When Ruth got up to glean, Boaz ordered his +young men, “Even if she gathers among the +sheaves, do not insult her. +Rather, pull out for +her some stalks from the bundles and leave them +17 +for her to gather. Do not rebuke her.” + +a + +18 + +So Ruth gathered grain in the field until even- +ing. And when she beat out what she had +gleaned, it was about an ephah of barley. +She +picked up the grain and went into the town, +where her mother-in-law saw what she had +gleaned. And she brought out what she had saved +19 +from her meal and gave it to Naomi. + +Then her mother-in-law asked her, “Where did +you glean today, and where did you work? +Blessed be the man who noticed you.” + +So she told her mother-in-law where she had +worked. “The name of the man I worked with to- +20 +day is Boaz,” she said. + +Then Naomi said to her daughter-in-law, “May +he be blessed by the LORD, who has not with- +drawn His kindness from the living or the dead.” +Naomi continued, “The man is a close relative. He +21 +is one of our kinsman-redeemers. + +” + +b + +Then Ruth the Moabitess said, “He also told +me, ‘Stay with my young men until they have fin- +22 +ished gathering all my harvest.’ + +” + +And Naomi said to her daughter-in-law Ruth, +“My daughter, it is good for you to work with his +young women, so that nothing will happen to you +23 +in another field.” + +So Ruth stayed close to the servant girls of +Boaz to glean grain until the barley and wheat +harvests were finished. And she lived with her +mother-in-law. + +Boaz replied, “I have been made fully aware of +all you have done for your mother-in-law since +the death of your husband, how you left your fa- +ther and mother and the land of your birth, and +a 17 An ephah +how you came to a people you did not know +b 20 + +kinsman-redeemer + +guardian-redeemer + +The Hebrew word for + + is approximately 20 dry quarts or 22 liters (probably about 29 pounds or 13.2 kilograms of barley). + is a legal term for the kinsman who redeems or + + or + +vindicates a relative; see Leviticus 25:25–55. + + Ruth’s Redemption Assured + +14 + +Ruth 4:5 | 247 + +3 + +3 + +One day Ruth’s mother-in-law Naomi said to +her, “My daughter, should I not seek a rest- +2 +ing place for you, that it may be well with you? +Now is not Boaz, with whose servant girls you +have been working, a relative of ours? In fact, to- +night he is winnowing barley on the threshing +Therefore wash yourself, put on perfume, +floor. +and wear your best clothes. Go down to the +threshing floor, but do not let the man know you +are there until he has finished eating and drink- +When he lies down, note the place where he +ing. +lies. Then go in and uncover his feet, and lie +down, and he will explain to you what you should +5 +do.” +6 + +4 + +“I will do everything you say,” Ruth answered. +So she went down to the threshing floor and did +everything her mother-in-law had instructed her +7 +to do. + +After Boaz had finished eating and drinking and +was in good spirits, he went to lie down at the +end of the heap of grain. Then Ruth went in se- +8 +cretly, uncovered his feet, and lay down. + +At midnight, Boaz was startled, turned over, + +9 +and there lying at his feet was a woman! + +So she lay down at his feet until morning, but +she got up before anyone else could recognize +her. + +15 + +Then Boaz said, “Do not let it be known that a +And he +woman came to the threshing floor.” +told her, “Bring the shawl you are wearing and + d +hold it out.” When she did so, he poured in six + and placed it on her. Then +measures of barley +16 +he went + + into the city. + + e + +When Ruth returned to her mother-in-law, Na- + +omi asked her, “How did it go, my daughter?” +17 +Then Ruth told her all that Boaz had done for her. +And she said, “He gave me these six measures +of barley, for he said, ‘Do not go back to your +18 +mother-in-law empty-handed.’ + +” + +“Wait, my daughter,” said Naomi, “until you +find out how things go, for he will not rest unless +Boaz Redeems Ruth +he has resolved the matter today.” + +4 + + f + +Meanwhile, Boaz went to the gate and sat + of +down there. Soon the kinsman-redeemer +whom he had spoken came along, and Boaz said, +“Come over here, my friend, and sit down.” So he +2 +went over and sat down. + +“Who are you?” he asked. + a + +Then Boaz took ten of the elders of the city and + +3 +said, “Sit here,” and they did so. + +“I am your servant Ruth,” she replied. “Spread +the corner of your garment + over me, for you are +10 +a kinsman-redeemer. + +” + +b + +11 + +12 + +Then Boaz said, “May the LORD bless you, my +daughter. You have shown more kindness now +than before, because you have not run after the +younger men, whether rich or poor. +And now +do not be afraid, my daughter. I will do for +you whatever you request, since all my fellow +townspeople know that you are a woman of +Yes, it is true that I am a +noble character. +13 +kinsman-redeemer, but there is a redeemer +nearer than I. +Stay here tonight, and in the +morning, if he wants to redeem you, good. Let +him redeem you. But if he does not want to re- +deem you, as surely as the LORD lives, I will. Now +lie here until morning.” +a 9 +Spread your wing +kinsman-redeemer + +wing + +c + +guardian-redeemer +; the word for + +Or + +4 + +And he said to the kinsman-redeemer, “Naomi, +who has returned from the land of Moab, is sell- +ing the piece of land that belonged to our brother +I thought I should inform you that +Elimelech. +you may buy it back in the presence of those +seated here and in the presence of the elders of +my people. If you want to redeem it, do so. But if + will not redeem it, tell me so I may know, +you +because there is no one but you to redeem it, and +I am next after you.” +5 +“I will redeem it,” he replied. + + g + +Then Boaz said, “On the day you buy the land +from Naomi and also from Ruth the Moabitess, +you must also acquire the widow of the deceased +in order to raise up the name of the deceased on +his inheritance.” + +b 9 + +corner of a garment + + or + +c 12 + + can also mean + +The Hebrew word for + is a legal term for the kinsman who redeems or vindicates a relative; similarly in +Possibly six seahs (two ephahs), or +guard- + +; see Ruth 2:12. + +kinsman-redeemer + +d 15 + +e 15 + +f 1 + +verses 12 and 13; see Leviticus 25:25–55. +approximately 39.6 dry quarts or 43.8 liters (about 58 pounds or 26.3 kilograms of barley) +ian-redeemer +scripts; many Hebrew manuscripts, Vulgate, and Syriac + +That is, more closely related + +The Hebrew word for + +she went + +g 4 + +Most Hebrew manu- + +he + + or + + is a legal term for the kinsman who redeems or vindicates a relative; also in verses 3, 6, 8, and 14; see Leviti- + +cus 25:25–55. + +Many Hebrew manuscripts, LXX, Vulgate, and Syriac; most Hebrew manuscripts + + 248 | Ruth 4:6 + +6 + +The kinsman-redeemer replied, “I cannot re- +deem it myself, or I would jeopardize my own in- +heritance. Take my right of redemption, because +7 +I cannot redeem it.” + +Now in former times in Israel, concerning the +redemption or exchange of property, to make +any matter legally binding a man would remove +his sandal and give it to the other party, and this +So the kinsman-re- +was a confirmation in Israel. +deemer removed his sandal and said to Boaz, +9 +“Buy it for yourself.” + +8 + +10 + +At this, Boaz said to the elders and all the peo- +ple, “You are witnesses today that I am buying +from Naomi all that belonged to Elimelech, Chil- +ion, and Mahlon. +Moreover, I have acquired +Ruth the Moabitess, Mahlon’s widow, as my wife, +to raise up the name of the deceased through his +inheritance, so that his name will not disappear +from among his brothers or from the gate of his +11 +home. You are witnesses today.” + +“We are witnesses,” said the elders and all the +people at the gate. “May the LORD make the +woman entering your home like Rachel and +Leah, who together built up the house of Israel. +May you be prosperous in Ephrathah and famous +And may your house become +in Bethlehem. +like the house of Perez, whom Tamar bore to Ju- +dah, because of the offspring the LORD will give +you by this young woman.” + +12 + +Boaz Marries Ruth + +13 + +So Boaz took Ruth, and she became his wife. +And when he had relations with her, the LORD +enabled her to conceive, and she gave birth to a +14 +son. + +15 + +Then the women said to Naomi, “Blessed be +the LORD, who has not left you this day without +a kinsman-redeemer. May his name become +He will renew your life and +famous in Israel. +sustain you in your old age. For your daughter- +in-law, who loves you and is better to you than +16 +seven sons, has given him birth.” + +17 + +And Naomi took the child, placed him on her +The neighbor +lap, and became a nurse to him. +women said, “A son has been born to Naomi,” and +they named him Obed. He became the father of +The Line of David (Matt. 1:1–17 ; Luke 3:23–38) +Jesse, the father of David. +18 + +Now these are the generations of Perez: +19 +Perez was the father of Hezron, + +Hezron was the father of Ram, +20 +Ram was the father of Amminadab, +a + +Amminadab was the father of Nahshon, + +21 +Nahshon was the father of Salmon, +Salmon was the father of Boaz, + +22 +Boaz was the father of Obed, + +Obed was the father of Jesse, +and Jesse was the father of David. + +a 20 + +Salma + +A few Hebrew manuscripts, some LXX manuscripts, and Vulgate (see also verse 21 and LXX of 1 Chronicles 2:11); + +most Hebrew manuscripts + + 1 Samuel + +Elkanah and His Wives (Psalm 113:1–9) + +12 + +1 + + a + +b + +Now there was a man named Elkanah who + in the hill +was from Ramathaim-zophim +country of Ephraim. He was the son of Jeroham, +2 + the son of Tohu, the son of +the son of Elihu, +He had two wives, one +Zuph, an Ephraimite. +named Hannah and the other Peninnah. And +3 +Peninnah had children, but Hannah had none. + +4 + +Year after year Elkanah would go up from his +city to worship and sacrifice to the LORD of Hosts +at Shiloh, where Eli’s two sons, Hophni and +And when- +Phinehas, were priests to the LORD. +ever the day came for Elkanah to present his +sacrifice, he would give portions to his wife +But +Peninnah and to all her sons and daughters. +to Hannah he would give a double portion, + for +he loved her even though the LORD had closed +6 +her womb. + +5 +c + +7 + +Because the LORD had closed Hannah’s womb, +her rival would provoke her viciously to taunt +her. +And this went on year after year. Whenever +Hannah went up to the house of the LORD, her +rival taunted her until she wept and would not +8 +eat. + +“Hannah, why are you crying?” her husband +Elkanah asked. “Why won’t you eat? Why is your +heart so grieved? Am I not better to you than ten +Hannah Prays for a Son +sons?” +9 + +So after they had finished eating and drinking in +Shiloh, Hannah stood up. Now Eli the priest was +sitting on a chair by the doorpost of the temple of +10 +the LORD. + +11 + +In her bitter distress, Hannah prayed to the +LORD and wept with many tears. +And she +made a vow, saying, “O LORD of Hosts, if only You +will look upon the affliction of Your maidservant +and remember me, not forgetting Your maidser- +vant but giving her a son, then I will dedicate him +to the LORD all the days of his life, and no razor +from Ramathaim, a Zuphite +a 1 +shall ever touch his head.” +e 22 +1 Chronicles 6:27 and 34. + +I will offer him as a Nazirite for all time. + +c 5 + +Or + +Or + +MT; DSS include + +13 +As Hannah kept on praying before the LORD, +Hannah was praying in +Eli watched her mouth. +her heart, and though her lips were moving, her +voice could not be heard. + +14 + +So Eli thought she was drunk +and said to her, +“How long will you be drunk? Put away your +15 +wine!” + +16 + +“No, my lord,” Hannah replied. “I am a woman +troubled in spirit. I have not had any wine or +strong drink, but I have poured out my soul +before the LORD. +Do not take your servant for +a wicked woman, for all this time I have been +17 +praying out of the depth of my anguish and grief.” + +“Go in peace,” Eli replied, “and may the God of +18 +Israel grant the petition you have asked of Him.” + +“May your maidservant find favor with you,” +said Hannah. Then she went on her way, and she +began to eat, and her face was no longer down- +The Birth of Samuel +cast. +19 + +The next morning they got up early to bow in +worship before the LORD, and then they re- +turned home to Ramah. + +20 + +And Elkanah had relations with his wife Hannah, +So in the +and the LORD remembered her. +d +course of time, Hannah conceived and gave birth +to a son. She named him Samuel, + saying, “Be- +21 +cause I have asked for him from the LORD.” + +22 + +Then Elkanah and all his house went up to +make the annual sacrifice to the LORD and to ful- +but Hannah did not go. “After the +fill his vow, +boy is weaned,” she said to her husband, “I will +take him to appear before the LORD and to stay +23 +there permanently.” + + e + + f + +“Do what you think is best,” her husband +Elkanah replied, “and stay here until you have +weaned him. Only may the LORD confirm His +word.” + +a choice portion +; see LXX and 1 Chronicles 6:26 and 35. + +So Hannah stayed and nursed her son until she +had weaned him. +d 20 Samuel +f 23 + +Eliab +heard of God + + is also called + +your word + +b 1 Elihu + +; see + + and + +Eliel + + sounds like the Hebrew for +MT; DSS, LXX, and Syriac + +. + + 250 | 1 Samuel 1:24 + +24 + +9 + +a +Once she had weaned him, Hannah took the + +b + +boy with her, along with a three-year-old bull, +an ephah of flour, + and a skin of wine. Though +the boy was still young, she brought him to the +And when they +house of the LORD at Shiloh. +had slaughtered the bull, they brought the boy to +26 +Eli. + +25 + +27 + +28 + +“Please, my lord,” said Hannah, “as surely as +you live, my lord, I am the woman who stood +here beside you praying to the LORD. +I prayed +for this boy, and since the LORD has granted me +I now dedicate the boy to +what I asked of Him, +the LORD. For as long as he lives, he is dedicated +to the LORD.” +Hannah’s Prayer of Thanksgiving + the LORD there. +So they worshiped +(Luke 1:46–56) + + c + +2 + +At that time Hannah prayed: + + d + +“My heart rejoices in the LORD; +my horn + + is exalted in the LORD. + +My mouth speaks boldly against my enemies, +2 + +for I rejoice in Your salvation. +There is no one holy like the LORD. + +3 + +Indeed, there is no one besides You! +And there is no Rock like our God. + +Do not boast so proudly, + +or let arrogance come from your mouth, + +for the LORD is a God who knows, +4 + +and by Him actions are weighed. + +The bows of the mighty are broken, + +5 + +but the feeble are equipped with strength. + +The well-fed hire themselves out for food, +but the starving hunger no more. +The barren woman gives birth to seven, +6 + +but she who has many sons pines away. + +The LORD brings death and gives life; + +7 + +He brings down to Sheol and raises up. + +The LORD sends poverty and wealth; + +8 + +He humbles and He exalts. +He raises the poor from the dust + +and lifts the needy from the ash heap. + +He seats them among princes + +and bestows on them a throne of honor. + +For the foundations of the earth are the + +LORD’s, + +a 24 + +and upon them He has set the world. + +three bulls + +b 24 An ephah + +c 28 + +He guards the steps of His faithful ones, +but the wicked perish in darkness; +for by his own strength shall no man + +10 + +prevail. + +Those who oppose the LORD will be + +shattered. + +He will thunder from heaven against + +them. + +The LORD will judge the ends of the earth + +11 + +and will give power to His king. +He will exalt the horn of His anointed.” + +Then Elkanah went home to Ramah, but the +boy began ministering to the LORD before Eli the +Eli’s Wicked Sons +priest. +12 + +13 + +Now the sons of Eli were wicked men; they had +or for the custom of the + +no regard for the LORD +priests with the people. + +14 + +When any man offered a sacrifice, the servant of +the priest would come with a three-pronged +meat fork while the meat was boiling +and +plunge it into the pan or kettle or cauldron or +cooking pot. And the priest would claim for him- +self whatever the meat fork brought up. This is +how they treated all the Israelites who came to +15 +Shiloh. + +Even before the fat was burned, the servant of +the priest would come and say to the man who +was sacrificing, “Give the priest some meat to +roast, because he will not accept boiled meat +16 +from you, but only raw.” + +And if any man said to him, “The fat must be +burned first; then you may take whatever you +want,” the servant would reply, “No, you must +give it to me right now. If you refuse, I will take it +17 +by force!” + + e + +Thus the sin of these young men was severe in + were treating the + +the sight of the LORD, for they +18 +LORD’s offering with contempt. + +19 + +20 + +Now Samuel was ministering before the +LORD—a boy wearing a linen ephod. +Each +year his mother would make him a little robe and +bring it to him when she went with her husband +to offer the annual sacrifice. +And Eli would +bless Elkanah and his wife, saying, “May the +f +LORD give you children by this woman in place +of the one she dedicated to the LORD. +” Then +they would go home. + +he worshiped + +d 1 + +strength + +DSS, LXX, and Syriac; MT + +e 17 +pounds or 11.6 kilograms of flour). + +men + +f 20 + +in place of the one requested from the LORD +One DSS manuscript; MT + + is approximately 20 dry quarts or 22 liters (probably about 25.5 +Or + +; also in verse 10 + +DSS and LXX; MT + +DSS; MT + + 21 + +So the LORD attended to Hannah, and she con- +ceived and gave birth to three sons and two +daughters. + +Meanwhile, the boy Samuel grew up in the pres- +22 +ence of the LORD. + +Now Eli was very old, and he heard about eve- +rything his sons were doing to all Israel and how +they were sleeping with the women who served +23 +at the entrance to the Tent of Meeting. + +25 + +24 + +“Why are you doing these things?” Eli said to +his sons. “I hear about your wicked deeds from +all these people. +No, my sons; it is not a good + a +report I hear circulating among the LORD’s peo- +ple. +If a man sins against another man, God +can intercede for him; but if a man sins against +the LORD, who can intercede for him?” + +But they would not listen to their father, since +26 +the LORD intended to put them to death. + +And the boy Samuel continued to grow in stat- + +A Prophecy against the House of Eli +ure and in favor with the LORD and with man. +27 + +28 + +Then a man of God came to Eli and told him, +“This is what the LORD says: ‘Did I not clearly re- +veal Myself to your father’s house when they +were in Egypt under Pharaoh’s house? +And out +of all the tribes of Israel I selected your father to +be My priest, to offer sacrifices on My altar, to +burn incense, and to wear an ephod in My pres- +ence. I also gave to the house of your father all +29 +the food offerings of the Israelites. + + b + +Why then do you kick at + + My sacrifice and of- +fering that I have prescribed for My dwelling +place? You have honored your sons more than +Me by fattening yourselves with the best of all +30 +the offerings of My people Israel.’ + +Therefore, the LORD, the God of Israel, + +declares: + +‘I did indeed say that your house +and the house of your father +would walk before Me forever. + +But now the LORD declares: + +Far be it from Me! + +1 Samuel 3:8 | 251 + +32 +house, so that no one in it will reach old age. +You will see distress in My dwelling place. De- +spite all that is good in Israel, no one in your +And every +house will ever again reach old age. +one of you that I do not cut off from My altar, I +will cause your eyes to fail and your heart to +grieve. + will die by the +34 +sword of men. + + All your descendants + +33 + + d + +e + +c + +And this sign shall come to you concerning +your two sons Hophni and Phinehas: They will +35 +both die on the same day. + +Then I will raise up for Myself a faithful priest. +He will do whatever is in My heart and mind. And +I will build for him an enduring house, and he will +36 +walk before My anointed one for all time. + +And everyone left in your house will come and +bow down to him for a piece of silver or a morsel +of bread, pleading, “Please appoint me to some +The LORD Calls Samuel +” +priestly office so that I can eat a piece of bread.” + +’ + +3 + +And the boy Samuel ministered to the LORD +before Eli. + +2 + +Now in those days the word of the LORD was +And at that time +rare, and visions were scarce. +Eli, whose eyesight had grown so dim that he +3 +could not see, was lying in his room. + +Before the lamp of God had gone out, Samuel +was lying down in the temple of the LORD, where +4 +the ark of God was located. + +Then the LORD called to Samuel, and he an- + +5 +swered, “Here I am.” + +He ran to Eli and said, “Here I am, for you have + +called me.” + +“I did not call,” Eli replied. “Go back and lie +down.” +6 +So he went and lay down. + +Once again the LORD called, “Samuel!” + +So Samuel got up, went to Eli, and said, “Here I +am, for you have called me.” + +“My son, I did not call,” Eli replied. “Go back and +7 +lie down.” + +For I will honor those who honor Me, +but those who despise Me will be + +31 + +disdained. + +Behold, the days are coming when I will cut off +scorn +a 25 +your strength and the strength of your father’s +will die as mortals +e 33 + +the judges b 29 + +c 33 + +will die in the prime of life + +Or +DSS and LXX; MT + +Or + +Hebrew; LXX + + or + +Or + +8 + +Now Samuel did not yet know the LORD, be- +cause the word of the LORD had not yet been re- +vealed to him. +Once again, for the third time, the +LORD called to Samuel. He got up, went to Eli, +and said, “Here I am, for you have called me.” + +increase + +d 33 + +his eyes will fail and his heart will grieve + + 252 | 1 Samuel 3:9 + +9 + +Then Eli realized that it was the LORD who was +“Go and lie down,” he said to +calling the boy. +Samuel, “and if He calls you, say, ‘Speak, LORD, +for Your servant is listening.’ +10 +So Samuel went and lay down in his place. + +” + +Then the LORD came and stood there, calling + +as before, “Samuel! Samuel!” + +And Samuel answered, “Speak, for Your servant +11 +is listening.” + +Then the LORD said to Samuel, “I am about to +12 +do something in Israel at which the ears of all +On that day I will carry +who hear it will tingle. +13 +out against Eli everything I have spoken about +I told him +his house, from beginning to end. +that I would judge his house forever for the iniq- +uity of which he knows, because his sons blas- +14 +phemed God + and he did not restrain them. +Therefore I have sworn to the house of Eli, ‘The +iniquity of Eli’s house shall never be atoned for + Samuel Shares the Vision +” +by sacrifice or offering.’ +15 + + a + +16 + +Samuel lay down until the morning; then he +opened the doors of the house of the LORD. He +was afraid to tell Eli the vision, +but Eli called to +him and said, “Samuel, my son.” +17 +“Here I am,” answered Samuel. + +“What was the message He gave you?” Eli +asked. “Do not hide it from me. May God punish +you, and ever so severely, if you hide from me an- +18 +ything He said to you.” + +So Samuel told him everything and did not + +hide a thing from him. + + “He is the LORD,” replied Eli. “Let Him do what +19 +is good in His eyes.” + +And Samuel grew, and the LORD was with him, +and He let none of Samuel’s words fall to the +20 +ground. + +So all Israel from Dan to Beersheba knew that +21 +Samuel was confirmed as a prophet of the LORD. +And the LORD continued to appear at Shiloh, +because there He revealed Himself to Samuel by +The Philistines Capture the Ark +His word. + +4 + +Thus the word of Samuel came to all Israel. + +2 + +The Philistines +the Philistines camped at Aphek. +arrayed themselves against Israel, and as the bat- +tle spread, Israel was defeated by the Philistines, +who struck down about four thousand men on +3 +the battlefield. + +When the troops returned to the camp, the el- +ders of Israel asked, “Why has the LORD brought +defeat on us before the Philistines today? Let us + b +bring the ark of the covenant of the LORD from +Shiloh, so that it may go + with us to save us from +4 +the hand of our enemies.” + +So the people sent men to Shiloh, and they +brought back the ark of the covenant of the LORD +of Hosts, who sits enthroned between the cheru- +bim. And the two sons of Eli, Hophni and +Phinehas, were there with the ark of the cove- +5 +nant of God. + +When the ark of the covenant of the LORD en- +tered the camp, all the Israelites raised such a +6 +great shout that the ground shook. + +On hearing the noise of the shout, the Philis- +tines asked, “What is this loud shouting in the +camp of the Hebrews?” + +7 + + c + +And when they realized that the ark of the LORD +the Philistines were +had entered the camp, +afraid. “The gods have entered + their camp!” they +8 +said. “Woe to us, for nothing like this has hap- +Woe to us! Who will deliver us +pened before. +from the hand of these mighty gods? These are +the gods who struck the Egyptians with all kinds +Take courage and +of plagues in the wilderness. +be men, O Philistines! Otherwise, you will serve +the Hebrews just as they served you. Now be +10 +men and fight!” + +9 + +11 + +So the Philistines fought, and Israel was de- +feated, and each man fled to his tent. The slaugh- +ter was very great—thirty thousand foot soldiers +The ark of God was captured, and +of Israel fell. +The Death of Eli +Eli’s two sons, Hophni and Phinehas, died. +12 + +That same day a Benjamite ran from the battle +13 +line all the way to Shiloh, with his clothes torn +and dirt on his head. +When he arrived, there +was Eli, sitting on his chair beside the road and +watching, because his heart trembled for the ark +of God. + +Now the Israelites went out to meet the Phil- +made themselves contemptible +a 13 +istines in battle and camped at Ebenezer, while + +b 3 + +When the man entered the city to give a report, +A god has entered +the whole city cried out. + +c 7 + +He may go + +LXX; Hebrew + +Or + +Or + + 1 Samuel 6:4 | 253 + +5 + +off and lying on the threshold. Only the torso re- +That is why, to this day, the priests of +mained. +Dagon and all who enter the temple of Dagon in +6 +Ashdod do not step on the threshold. + +e + +7 + +Now the hand of the LORD was heavy on the +people of Ashdod and its vicinity, ravaging them +and afflicting them with tumors. +And when the +men of Ashdod saw what was happening, they +said, “The ark of the God of Israel must not stay +here with us, because His hand is heavy upon us +8 +and upon our god Dagon.” + +So they called together all the rulers of the Phil- +istines and asked, “What shall we do with the ark +of the God of Israel?” + +“It must be moved to Gath,” they replied. So they +9 +carried away the ark of the God of Israel. + +But after they had moved the ark to Gath, the +LORD’s hand was also against that city, throwing +it into great confusion and afflicting the men of +the city, both young and old, with an outbreak of +10 +tumors. + +So they sent the ark of God to Ekron, but as it +arrived, the Ekronites cried out, “They have +brought us the ark of the God of Israel in order to +11 +kill us and our people!” + +Then the Ekronites called together all the rul- +ers of the Philistines and said, “Send away the ark +of the God of Israel. It must return to its place, so +that it will not + + kill us and our people!” + + f + +12 + +For a deadly confusion had pervaded the city; the +hand of God was very heavy upon it. +Those +who did not die were afflicted with tumors, and +The Ark Returned to Israel +the outcry of the city went up to heaven. + +6 + +2 + +When the ark of the LORD had been in the +the +land of the Philistines seven months, +Philistines summoned the priests and diviners, +saying, “What shall we do with the ark of the +3 +LORD? Tell us how to send it back to its place.” + +They replied, “If you return the ark of the God +of Israel, do not send it away empty, but by all +means return it to Him with a guilt offering. Then +you will be healed, and you will understand why +4 +His hand has not been lifted from you.” + +14 + +Eli heard the outcry and asked, “Why this com- + +motion?” +15 +So the man hurried over and reported to Eli. +Now Eli was ninety-eight years old, and his + +16 +gaze was fixed because he could not see. + +“I have just come from the battle,” the man said + +to Eli. “I fled from there today.” +17 +“What happened, my son?” Eli asked. + +The messenger answered, “Israel has fled be- +fore the Philistines, and there has been a great +slaughter among the people. Your two sons, +Hophni and Phinehas, are both dead, and the ark +18 +of God has been captured.” + +As soon as the ark of God was mentioned, Eli +fell backward from his chair by the city gate, and +being old and heavy, he broke his neck and died. +19 +And Eli had judged + + Israel forty years. + + a + +Now Eli’s daughter-in-law, the wife of Phinehas, +was pregnant and about to give birth. When she +heard the news of the capture of God’s ark and +the deaths of her father-in-law and her husband, +she collapsed and gave birth, for her labor pains +20 +overtook her. + +As she was dying, the women attending to her +said, “Do not be afraid, for you have given birth +to a son!” + +21 + +b + +And +But she did not respond or pay any heed. + c +she named the boy Ichabod, + saying, “The glory + from Israel,” because the ark of +has departed +God had been captured and her father-in-law and +22 +her husband had been killed. + +“The glory has departed from Israel,” she said, + +The Ark Afflicts the Philistines +“for the ark of God has been captured.” + +5 + +2 + +After the Philistines had captured the ark of +God, they took it from Ebenezer to Ashdod, +carried it into the temple of Dagon, and set it be- + +d + +3 +side his statue. + +When the people of Ashdod got up early the +next morning, there was Dagon, fallen on his face +before the ark of the LORD. So they took Dagon +4 +and returned him to his place. + +But when they got up early the next morning, +there was Dagon, fallen on his face before the ark +a 18 +of the LORD, with his head and his hands broken +Dagon +Or +the city. + + or +He will not + + means +Hebrew; LXX and Vulgate include + +b 21 Ichabod + +governed + +f 11 + +e 6 + +. + +led + +Or + +no glory +And rats appeared in their land, and death and destruction were throughout + +Him?” asked the Philistines. + +“What guilt offering should we send back to +set it beside +gone into exile + +c 21 + +d 2 + +Or + +; also in verse 22 + +Literally + + 254 | 1 Samuel 6:5 + +5 + +“Five gold tumors and five gold rats,” they said, +“according to the number of rulers of the Philis- +tines, since the same plague has struck both you +Make images of your tumors +and your rulers. +and of the rats that are ravaging the land. Give +glory to the God of Israel, and perhaps He will lift +6 +His hand from you and your gods and your land. + + a + +Why harden + + your hearts as the Egyptians and +Pharaoh hardened theirs? When He afflicted +them, did they not send the people out so they +7 +could go on their way? + +8 + +Now, therefore, prepare one new cart with two +milk cows that have never been yoked. Hitch +the cows to the cart, but take their calves away +Take the ark of the LORD, set +and pen them up. +it on the cart, and in a chest beside it put the gold +objects you are sending back to Him as a guilt +offering. + +9 + +but keep watching +Then send the ark on its way, +it. If it goes up the road to its homeland, toward +Beth-shemesh, it is the LORD who has brought on +us this great disaster. But if it does not, then we +will know that it was not His hand that punished +10 +us and that it happened by chance.” + +11 + +So the men did as instructed. They took two +milk cows, hitched them to the cart, and penned +Then they put the ark of the +up their calves. +LORD on the cart, along with the chest containing +12 +the gold rats and the images of the tumors. + +And the cows headed straight up the road to- +ward Beth-shemesh, staying on that one highway +and lowing as they went, never straying to the +right or to the left. The rulers of the Philistines +followed behind them to the border of Beth- +13 +shemesh. + +Now the people of Beth-shemesh were +harvesting wheat in the valley, and when they +looked up and saw the ark, they were overjoyed +14 +at the sight. + +15 + +The cart came to the field of Joshua of Beth- +shemesh and stopped there near a large rock. +The people chopped up the cart and offered the +And +cows as a burnt offering to the LORD. +the Levites took down the ark of the LORD and +the chest containing the gold objects, and they +placed them on the large rock. That day the men +of Beth-shemesh offered burnt offerings and +a 6 +made sacrifices to the LORD. +70 men and 5,000 men + +; similarly again in this verse + +make heavy + + b 18 + +Or + +Or + +16 + +And when the five rulers of the Philistines saw + +17 +this, they returned to Ekron that same day. + +18 + +As a guilt offering to the LORD, the Philistines +had sent back one gold tumor for each city: Ash- +dod, Gaza, Ashkelon, Gath, and Ekron. +The +number of gold rats also corresponded to the +number of Philistine cities belonging to the five + b +rulers—the fortified cities and their outlying vil- +lages. And the large rock + on which they placed +the ark of the LORD stands to this day in the field +19 +of Joshua of Beth-shemesh. + +But God struck down some of the people of +c +Beth-shemesh because they looked inside the +ark of the LORD. He struck down seventy men, +and the people mourned because the LORD had +20 +struck them with a great slaughter. + +The men of Beth-shemesh asked, “Who can +stand in the presence of the LORD, this holy God? +21 +To whom should the ark go up from here?” + +So they sent messengers to the people of +Kiriath-jearim, saying, “The Philistines have re- +turned the ark of the LORD. Come down and take +Samuel Subdues the Philistines +it up with you.” + +7 + +Then the men of Kiriath-jearim came for the +ark of the LORD and took it into Abinadab’s +house on the hill. And they consecrated his son +2 +Eleazar to guard the ark of the LORD. + +And from that day a long time passed, twenty +years in all, as the ark remained at Kiriath- +jearim. And all the house of Israel mournfully +3 +sought the LORD. + +Then Samuel said to all the house of Israel, +“If you are returning to the LORD with all your +hearts, then put away the foreign gods and Ash- +toreths among you, prepare your hearts for the +LORD, and serve Him only. And He will deliver +4 +you from the hand of the Philistines.” + +So the Israelites put away the Baals and Ashto- + +5 +reths and served only the LORD. + +Then Samuel said, “Gather all Israel to Mizpah, + +6 +and I will pray to the LORD on your behalf.” + +When they had gathered at Mizpah, they drew +water and poured it out before the LORD. On that +day they fasted, and there they confessed, “We +have sinned against the LORD.” And Samuel +great meadow +judged + +Abel-haggedolah + + the Israelites at Mizpah. +70 men and 50,000 men of the people +; Heb. + +c 19 + + d + +governed + +led + +A few late Heb. mss. +; Syriac and + +Or + + or + +; similarly in vv. 15, 16, 17 + +70 men and 50,000 men + +70 men and 50 oxen d 6 + +and Josephus; most Hebrew manuscripts +Arabic + +; alternately, possibly + +; LXX + + 7 + +8 + +When the Philistines heard that the Israelites +had gathered at Mizpah, their rulers marched up +toward Israel. And when the Israelites learned of +and said to Sam- +this, they feared the Philistines +uel, “Do not stop crying out to the LORD our God +for us, that He may save us from the hand of the +9 +Philistines.” + +10 + +Then Samuel took a suckling + +lamb and +offered it as a whole burnt offering to the LORD. +He cried out to the LORD on behalf of Israel, and +As the Philistines +the LORD answered him. +drew near to fight against Israel, Samuel was of- +fering up the burnt offering. But that day the +LORD thundered loudly against the Philistines +and threw them into such confusion that they +11 +fled before Israel. + +Then the men of Israel charged out of Mizpah +and pursued the Philistines, striking them down +12 +all the way to an area below Beth-car. + +a + +b + +Afterward, Samuel took a stone and set it + He named it + saying, “Thus far the LORD has + +up between Mizpah and Shen. +Ebenezer, +13 +helped us.” + +So the Philistines were subdued, and they +stopped invading the territory of Israel. And the +14 +hand of the LORD was against the Philistines all +The cities from Ekron +the days of Samuel. +to Gath, which the Philistines had taken, were +restored to Israel, who also delivered the sur- +rounding territory from the hand of the Philis- +tines. And there was peace between the Israelites +15 +and the Amorites. +16 + +17 + +So Samuel judged Israel all the days of his life. +Every year he would go on a circuit from +Bethel to Gilgal to Mizpah, judging Israel in all +these places. +Then he would return to Ramah +because his home was there, and there he judged +Israel Demands a King (De. 17:14–20) +Israel and built an altar to the LORD. + +8 + + c + +2 + +3 + + over Israel. + +When Samuel grew old, he appointed his +The name +sons as judges +of his firstborn son was Joel, and the name of +his second was Abijah. They were judges in Beer- +But his sons did not walk in his ways; +sheba. +they turned aside toward dishonest gain, accept- +4 +ing bribes and perverting justice. + +5 + +So all the elders of Israel gathered together and +b 12 Ebenezer +a 12 +came to Samuel at Ramah. +“Look,” they said, +your best young men + means + +d 16 +Hebrew; LXX and Syriac + +Jeshanah + +verses 2, 5, 6, and 20 + +LXX; Hebrew + +1 Samuel 8:20 | 255 + +“you are old, and your sons do not walk in your +ways. Now appoint a king to judge us like all the +6 +other nations.” + +But when they said, “Give us a king to judge us,” +their demand was displeasing in the sight of +7 +Samuel; so he prayed to the LORD. + +And the LORD said to Samuel, “Listen to the +voice of the people in all that they say to you. For +8 +it is not you they have rejected, but they have re- +Just as they have done +jected Me as their king. +from the day I brought them up out of Egypt until +9 +this day, forsaking Me and serving other gods, so +Now listen to their voice; +they are doing to you. +but you must solemnly warn them and show +them the manner of the king who will reign over +Samuel’s Warning +them.” +10 + +11 + +So Samuel spoke all the words of the LORD to +He +the people who were asking him for a king. +said, “This will be the manner of the king who +will reign over you: He will take your sons and +appoint them to serve his own chariots and +12 +horses, and to run in front of his chariots. + +He will appoint some for himself as command- +ers of thousands and of fifties, and others to plow +his ground, to reap his harvest, and to make his +13 +weapons of war and equipment for his chariots. + +And he will take your daughters to be perfum- + +14 +ers, cooks, and bakers. + +16 + +15 + +He will take the best of your fields and +vineyards and olive groves and give them to his +servants. +He will take a tenth of your grain and +grape harvest and give it to his officials and +And he will take your menservants +servants. + and don- +and maidservants and your best cattle +17 +keys and put them to his own use. + + d + +18 + +He will take a tenth of your flocks, and you +When that +yourselves will become his slaves. +day comes, you will beg for relief from the king +you have chosen, but the LORD will not answer +God Grants the Request +you on that day.” +19 + +20 + +Nevertheless, the people refused to listen to +Samuel. “No!” they said. “We must have a king +Then we will be like all the other na- +over us. +tions, with a king to judge us, to go out before us, +governors +c 1 +stone of help +and to fight our battles.” + +leaders + +. + +Or + + or + +; similarly in + + 256 | 1 Samuel 8:21 + +21 + +12 + +Samuel listened to all the words of the people + +22 +and repeated them in the hearing of the LORD. + +“Listen to their voice,” the LORD said to Sam- + +uel. “Appoint a king for them.” + +Then Samuel told the men of Israel, “Everyone +Saul Chosen as King +must go back to his city.” + +9 + +2 + +Now there was a Benjamite, a powerful man, +whose name was Kish son of Abiel, the son +of Zeror, the son of Becorath, the son of Aphiah +And he had a son named Saul, +of Benjamin. +choice and handsome, without equal among the +3 +Israelites—a head taller than any of the people. + +One day the donkeys of Saul’s father Kish wan- +dered off, and Kish said to his son Saul, “Take one +4 +of the servants and go look for the donkeys.” + +So Saul passed through the hill country of +Ephraim and then through the land of Shalishah, +but they did not find the donkeys. He and the +servant went through the region of Shaalim, but +they were not there. Then they went through the +5 +land of Benjamin, and still they did not find them. + +When they reached the land of Zuph, Saul said +to his servant, “Come, let us go back, or my father +will stop worrying about the donkeys and start +6 +worrying about us.” + +“Look,” said the servant, “in this city there is a +man of God who is highly respected; everything +he says surely comes to pass. Let us go there now. +7 +Perhaps he will tell us which way to go.” + +“If we do go,” Saul replied, “what can we give the +man? For the bread in our packs is gone, and +there is no gift to take to the man of God. What do +8 +we have?” + +a + +The servant answered him again. “Look,” he +said, “I have here in my hand a quarter shekel of + I will give it to the man of God, and he will +silver. +9 +tell us our way.” + +(Formerly in Israel, a man on his way to inquire +of God would say, “Come, let us go to the seer.” +For the prophet of today was formerly called the +10 +seer.) + +11 + +“Good,” said Saul to his servant. “Come, let us +go.” So they set out for the city where the man of +God was. +And as they were climbing the hill to +the city, they met some young women coming +out to draw water and asked, “Is the seer here?” +a 8 A quarter shekel + +13 + +“Yes, he is ahead of you,” they answered. +“Hurry now, for today he has come to the city be- +cause the people have a sacrifice on the high +As soon as you enter the city, you will +place. +find him before he goes up to the high place to +eat. The people will not eat until he comes, be- +cause he must bless the sacrifice; after that, the +14 +guests will eat. Go up at once; you will find him.” + +So Saul and his servant went up toward the +city, and as they were entering it, there was Sam- +uel coming toward them on his way up to the +15 +high place. + +16 +Now on the day before Saul’s arrival, the LORD +“At this time tomor- +had revealed to Samuel, +row I will send you a man from the land of Ben- +jamin, and you are to anoint him ruler over My +people Israel; he will save them from the hand of +the Philistines. For I have looked upon My peo- +17 +ple, because their cry has come to Me.” + +When Samuel saw Saul, the LORD told him, +“Here is the man of whom I spoke; he shall rule +18 +over My people.” + +Saul approached Samuel in the gateway and +asked, “Would you please tell me where the +19 +seer’s house is?” + +20 + +“I am the seer,” Samuel replied. “Go up before +me to the high place, for you shall eat with me to- +day. And when I send you off in the morning, I +As for the +will tell you all that is in your heart. +donkeys you lost three days ago, do not worry +about them, for they have been found. And upon +whom is all the desire of Israel, if not upon you +21 +and all your father’s house?” + +Saul replied, “Am I not a Benjamite from the +smallest tribe of Israel, and is not my clan the +least of all the clans of Benjamin? So why would +22 +you say such a thing to me?” + +Then Samuel took Saul and his servant, +brought them into the hall, and seated them +in the place of honor among those who were in- +And Samuel said to +vited—about thirty in all. +the cook, “Bring the portion I gave you and told +24 +you to set aside.” + +23 + +So the cook picked up the leg and what was at- +tached to it and set it before Saul. Then Samuel +said, “Here is what was kept back. It was set apart +for you. Eat, for it has been kept for you for this +occasion, from the time I said, ‘I have invited the +people.’ + +” So Saul dined with Samuel that day. + + is approximately 0.1 ounces or 2.85 grams of silver. + + 25 + +And after they had come down from the high +place into the city, Samuel spoke with Saul on the +26 +roof of his house. + +They got up early in the morning, and just be- +fore dawn Samuel called to Saul on the roof, “Get +ready, and I will send you on your way!” So Saul +got ready, and both he and Samuel went outside +27 +together. + +As they were going down to the edge of the +city, Samuel said to Saul, “Tell the servant to go +on ahead of us, but you stay for a while, and I will +reveal to you the word of God.” So the servant +Samuel Anoints Saul +went on. + +10 + +Then Samuel took a flask of oil, poured it +on Saul’s head, kissed him, and said, “Has + a +2 +not the LORD anointed you ruler over His inher- +When you leave me today, you will find +itance? +two men at Rachel’s tomb in Zelzah on the +border of Benjamin. They will say to you, ‘The +donkeys you seek have been found, and now +your father has stopped worrying about the don- +keys and started worrying about you, asking, +3 +“What should I do about my son?” + +’ + + b + +Then you will go on from there until you come +to the Oak + of Tabor. Three men going up to God +at Bethel will meet you there, one carrying three +young goats, another carrying three loaves of +4 +bread, and another carrying a skin of wine. +They will greet you and give you two loaves of +c + +5 +bread, which you will accept from their hands. + +After that you will come to Gibeah of God, +where the Philistines have an outpost. As you ap- +proach the city, you will meet a group of proph- +ets coming down from the high place, preceded +by harps, tambourines, flutes, and lyres, and they +6 +will be prophesying. + +Then the Spirit of the LORD will rush upon you, +and you will prophesy with them; and you will be +7 +transformed into a different person. + +8 + +1 Samuel 10:22 | 257 + +Samuel’s Signs Fulfilled + +9 + +As Saul turned to leave Samuel, God changed +10 +Saul’s heart, and all the signs came to pass that +d +day. +When Saul and his servant arrived at +Gibeah, + a group of prophets met him. Then the +Spirit of God rushed upon him, and he prophe- +11 +sied along with them. + +When all those who had formerly known Saul +saw him prophesying with the prophets, they +asked one another, “What has happened to the +12 +son of Kish? Is Saul also among the prophets?” + +Then a man who lived there replied, “And who +is their father?” So the saying became a proverb: +13 +“Is Saul also among the prophets?” + +And when Saul had finished prophesying, he + +14 +went up to the high place. + +Now Saul’s uncle asked him and his servant, + +“Where did you go?” + +“To look for the donkeys,” Saul replied. “When +we saw they were not to be found, we went to +15 +Samuel.” + +“Tell me,” Saul’s uncle asked, “what did Samuel + +16 +say to you?” + +And Saul replied, “He assured us that the don- +keys had been found.” But Saul did not tell his +Saul Proclaimed King +uncle what Samuel had said about the kingship. +17 + +18 + +After this, Samuel summoned the people to the +LORD at Mizpah +and said to the Israelites, +“This is what the LORD, the God of Israel, says: ‘I +brought Israel up out of Egypt, and I rescued you +from the hands of the Egyptians and of all the +19 +kingdoms that oppressed you.’ + +But today you have rejected your God, who +saves you from all your troubles and afflictions, +and you have said to Him, ‘No, set a king over us.’ +Now therefore present yourselves before the +20 +LORD by your tribes and clans.” + +When these signs have come, do as the occasion +demands, for God is with you. +And you shall go +before me to Gilgal, and surely I will come to you +to offer burnt offerings and to sacrifice peace of- +ferings. Wait seven days until I come to you and +a 1 +show you what you are to do.” +from their enemies around them. This will be the sign to you that the LORD has appointed you to be leader over His inheritance. +b 3 +e 21 + +Thus Samuel had all the tribes of Israel come +21 +forward, and the tribe of Benjamin was selected. +Then he had the tribe of Benjamin come for- +ward by its clans, and the clan of Matri was se- +lected. + Finally, Saul son of Kish was selected. But +22 +when they looked for him, they could not find +So again they inquired of the LORD, “Has +him. +the man come here yet?” + +“Has not the LORD anointed you ruler over Israel? And you will rule over the LORD’s people and save them + +And he brought the family of the Matrites near, man by man. + +Hebrew; LXX +Terebinth + +Gibeath-Elohim + +the hill of God + +d 10 Gibeah + +Great Tree + +the hill + +c 5 + +e + +Or +LXX includes + + or + +Hebrew + +, meaning + + means + +. + + 258 | 1 Samuel 10:23 + +And the LORD replied, “Behold, he has hidden +23 +himself among the baggage.” + +done to the oxen of anyone who does not march +behind Saul and Samuel.” + +8 + +24 + +So they ran and brought Saul, and when he +stood among the people, he was a head taller +Samuel said to all +than any of the others. +the people, “Do you see the one the LORD has +chosen? There is no one like him among all the +people.” +25 +And all the people shouted, “Long live the king!” + +Then Samuel explained to the people the +rights of kingship. He wrote them on a scroll and +laid it up before the LORD. And Samuel sent all +26 +the people away, each to his own home. + +Saul also went to his home in Gibeah, and the +men of valor whose hearts God had touched went +27 +with him. + +But some worthless men said, “How can this +man save us?” So they despised him and brought +Saul Defeats the Ammonites +him no gifts; but Saul remained silent about it. + b + +a + +11 + +Then Nahash + the Ammonite came up +and laid siege to Jabesh-gilead. All the + with + +men of Jabesh said to him, “Make a treaty +2 +us, and we will serve you.” + + c + +But Nahash the Ammonite replied, “I will make +a treaty with you on one condition, that I may put +out everyone’s right eye and bring reproach +3 +upon all Israel.” + +“Hold off for seven days,” replied the elders of +Jabesh, “and let us send messengers throughout +Israel. If there is no one to save us, we will sur- +4 +render to you.” + +When the messengers came to Gibeah of Saul +and relayed these words in the hearing of the +5 +people, they all wept aloud. + +Just then Saul was returning from the field, be- +hind his oxen. “What troubles the people?” asked +Saul. “Why are they weeping?” And they relayed +6 +to him the words of the men from Jabesh. + + d + +Then the terror of the LORD fell upon the people, +And +and they came out together as one man. +9 +when Saul numbered them at Bezek, there were +So +300,000 Israelites and 30,000 +they said to the messengers who had come, “Tell +the men of Jabesh-gilead: ‘Deliverance will be +yours tomorrow by the time the sun is hot.’ + + men of Judah. + +” + +And when the messengers relayed this to the +10 +men of Jabesh, they rejoiced. + +Then the men of Jabesh said to Nahash, “To- +morrow we will come out, and you can do with +11 +us whatever seems good to you.” + +The next day Saul organized the troops into +three divisions, and during the morning watch +they invaded the camp of the Ammonites and +slaughtered them, until the hottest part of the +day. And the survivors were so scattered that no +Saul Confirmed as King +two of them were left together. +12 + +Then the people said to Samuel, “Who said that +Saul should not reign over us? Bring those men +13 +here so we can kill them!” + +But Saul ordered, “No one shall be put to death +this day, for today the LORD has worked salva- +14 +tion in Israel.” + +Then Samuel said to the people, “Come, let us + +15 +go to Gilgal and renew the kingship there.” + +So all the people went to Gilgal and confirmed +Saul as king in the presence of the LORD. There +they sacrificed peace offerings before the LORD, +Samuel’s Farewell Address +and Saul and all the Israelites rejoiced greatly. + +12 + +Then Samuel said to all Israel, “I have lis- +tened to your voice in all that you have +Now +said to me, and I have set over you a king. +here is the king walking before you, and I am old +and gray, and my sons are here with you. I have +3 +walked before you from my youth until this day. + +2 + +7 + +When Saul heard their words, the Spirit of God +rushed upon him, and he burned with great an- +He took a pair of oxen, cut them into pieces, +ger. +and sent them by messengers throughout the +a 27 +land of Israel, proclaiming, “This is what will be +and Reuben, gouging out the right eye of each Israelite dwelling there. He would not allow anyone to rescue them, and there +was no Israelite east of the Jordan whose right eye had not been gouged out. But 7,000 men had escaped from the Ammonites +and settled in Jabesh-gilead. +About a month later Nahash + +Here I am. Bear witness against me before the +LORD and before His anointed: Whose ox or don- +key have I taken? Whom have I cheated or op- +pressed? From whose hand have I accepted a + +Nahash, king of the Ammonites, had viciously oppressed the people of Gad + +MT and LXX; one DSS manuscript includes + +berit + +c 1 + +70,000 + +Forms of the Hebrew + + are trans- + +lated in most passages as + +b 1 +covenant + +d 8 +DSS and LXX +. + +DSS and LXX + +  a + +bribe and closed my eyes? Tell me, and I will re- +4 +store it + + to you.” + +“You have not cheated us or oppressed us,” they +replied, “nor have you taken anything from the +5 +hand of man.” + +Samuel said to them, “The LORD is a witness +against you, and His anointed is a witness today, +that you have not found anything in my hand.” +6 +“He is a witness,” they replied. + + b + +7 + +Then Samuel said to the people, “The LORD is +the One who + appointed Moses and Aaron, and +who brought your fathers up out of the land of +Now present yourselves, so that I may +Egypt. +confront you before the LORD with all the right- +8 +eous acts He has done for you and your fathers. + +c + +When Jacob went to Egypt, +9 + + your fathers cried +out to the LORD, and He sent them Moses and Aa- +ron, who brought your fathers out of Egypt and +But they forgot the +settled them in this place. +d +LORD their God, and He sold them into the hand +of Sisera the commander of the army of Hazor, +and into the hands of the Philistines and the king +10 +of Moab, who fought against them. + +Then they cried out to the LORD and said, ‘We +have sinned, for we have forsaken the LORD and +served the Baals and Ashtoreths. Now deliver us +from the hands of our enemies, that we may +11 +serve You.’ + +e + +f + +g + + Barak, + +So the LORD sent Jerubbaal, +12 + + Jephthah, +and Samuel, + and He delivered you from the +hands of your enemies on every side, and you +But when you saw that Nahash +dwelt securely. +king of the Ammonites was moving against you, +you said to me, ‘No, we must have a king to rule +over us’—even though the LORD your God was +13 +your king. + +Now here is the king you have chosen, the one +you requested. Behold, the LORD has placed a +14 +king over you. + +1 Samuel 13:2 | 259 + +LORD and rebel against His command, then the +hand of the LORD will be against you as it was +16 +against your fathers. + +i + +17 + +Now, therefore, present yourselves and see +this great thing that the LORD will do before your +eyes. +Is it not the wheat harvest today? I will +call on the LORD to send thunder and rain, so +that you will know and see what a great evil you +have committed in the sight of the LORD by ask- +18 +ing for a king.” + +So Samuel called to the LORD, and on that day + +the LORD sent thunder and rain. + +19 + +As a result, all the people greatly feared the LORD +They pleaded with Samuel, “Pray +and Samuel. +to the LORD your God for your servants so that +we will not die! For we have added to all our sins +20 +the evil of asking for a king.” + +21 + +“Do not be afraid,” Samuel replied. “Even +though you have committed all this evil, do not +turn aside from following the LORD, but serve +Do not turn aside +the LORD with all your heart. +22 +after worthless things that cannot profit you or +deliver you, for they are empty. +Indeed, for the +sake of His great name, the LORD will not aban- +don His people, because He was pleased to make +23 +you His own. + +As for me, far be it from me that I should sin +against the LORD by ceasing to pray for you. And +I will continue to teach you the good and right +24 +way. + +25 + +Above all, fear the LORD and serve Him faith- +fully with all your heart; consider what great +But if you persist +things He has done for you. +in doing evil, both you and your king will be +War with the Philistines +swept away.” + + j + +k + +2 + +Saul was thirty years old + when he be- +came king, and he reigned over Israel +He chose for himself three +forty-two years. +thousand men of Israel: Two thousand were with +Saul at Michmash and in the hill country of +Bethel, and a thousand were with Jonathan in +Gibeah of Benjamin. And the rest of the troops he +sent away, each to his own home. +Hebrew; LXX + +the army of Jabin king of Hazor + +The LORD is the witness who + +e 11 Jerubbaal +Bedan + +g 11 + +f 11 + +b 6 + +13 + +If you fear the LORD and serve Him and obey +His voice, and if you do not rebel against the com- +mand of the LORD, and if both you and the king +15 +who rules over you follow the LORD your God, +And I will restore it +a 3 +then all will be well. +But if you disobey the +c 8 +Heb. +let Baal contend +Gideon +Heb.; LXX includes + +and the Egyptians oppressed them + +; LXX + +h + +d 9 + +Testify against me, and I will restore it + +Samson + +name for +do not rebel against the command of the LORD, (then) both you and the king who reigns over you will follow the LORD your +Syriac +God. +i 15 +years + + is another +If you fear the LORD and serve Him and obey His voice, and if you +LXX and +over Israel forty + +h 14 then all will be well + and probably means +against your king + +LXX +; see Judges 6:32. + +LXX and Syriac; Hebrew + + is implied; Literally +j 1 + +Saul was a son of a year + +over Israel two years + +k 1 + +Heb.; LXX + (see Acts 13:21); MT + +A few late LXX manuscripts; MT + +Or + + 260 | 1 Samuel 13:3 + +3 + +Then Jonathan + + attacked the Philistine outpost +at Geba, and the Philistines heard about it. So +Saul blew the ram’s horn throughout the land, +4 +saying, “Let the Hebrews hear!” + +And all Israel heard the news: “Saul has at- +tacked an outpost of the Philistines, and now Is- +rael has become a stench to the Philistines!” +Then the people were summoned to join Saul at +5 +Gilgal. + + a + +Now the Philistines assembled to fight against +Israel with three thousand + chariots, six thou- +sand horsemen, and troops as numerous as the +sand on the seashore. They went up and camped +6 +at Michmash, east of Beth-aven. + +Seeing that they were in danger because their +troops were hard-pressed, the men of Israel hid +7 +in caves and thickets, among the rocks, and in +cellars and cisterns. +Some Hebrews even +crossed the Jordan into the land of Gad and Gil- +ead. Saul, however, remained at Gilgal, and all his +Saul’s Unlawful Sacrifice +troops were quaking in fear. +8 + +And Saul waited seven days for the time +appointed by Samuel, but Samuel did not come +to Gilgal, and the troops began to desert Saul. +So +he said, “Bring me the burnt offering and +the peace offerings.” And he offered up the burnt +10 +offering. + +9 + +Just as he finished offering the burnt offering, +11 +Samuel arrived, and Saul went out to greet him. + +“What have you done?” Samuel asked. + +12 + +And Saul replied, “When I saw that the troops +were deserting me, and that you did not come at +the appointed time and the Philistines were gath- +ering at Michmash, +I thought, ‘Now the Philis- +tines will descend upon me at Gilgal, and I have +not sought the favor of the LORD.’ So I felt com- +13 +pelled to offer the burnt offering.” + +because you have not kept the command of the +15 +LORD.” + +b + +Then Samuel set out from Gilgal and went up + And Saul numbered the +to Gibeah in Benjamin. +troops who were with him, about six hundred +Israel without Weapons +men. +16 + +Now Saul and Jonathan his son and the troops +with them were staying in Geba of Benjamin, +17 +while the Philistines camped at Michmash. +And raiders went out of the Philistine camp in +three divisions. One headed toward Ophrah in +another toward Beth-horon, +the land of Shual, +and the third down the border road overlooking +19 +the Valley of Zeboim facing the wilderness. + +18 + +20 + +And no blacksmith could be found in all the +land of Israel, because the Philistines had said, +“The Hebrews must not be allowed to make +Instead, all the Israelites +swords or spears.” +would go down to the Philistines to sharpen their +The +plowshares, mattocks, axes, and sickles. + for sharpening a plowshare or +charge was a pim +mattock, a third of a shekel for sharpening a +pitchfork or an axe, and a third of a shekel for re- +22 +pointing an oxgoad. + +21 + + d + +e + +c + +So on the day of battle not a sword or spear +could be found in the hands of the troops with +Saul and Jonathan; only Saul and his son Jona- +23 +than had weapons. + +And a garrison of the Philistines had gone out + +Jonathan’s Victory over the Philistines +to the pass at Michmash. + +14 + +One day Jonathan son of Saul said to the +young man bearing his armor, “Come, let +us cross over to the Philistine outpost on the +2 +other side.” But Jonathan did not tell his father. + + f + +14 + +“You have acted foolishly,” Samuel declared. +“You have not kept the command that the LORD +your God gave you; if you had, the LORD would +have established your kingdom over Israel for all +time. +But now your kingdom will not endure; +the LORD has sought a man after His own heart +a 5 +and appointed him ruler over His people, +Saul to meet the army; they went up from Gilgal to Gibeah of Benjamin. + +thirty thousand + +b 15 + +3 + +Meanwhile, Saul was staying under + +the +pomegranate tree + in Migron on the outskirts of +Gibeah. And the troops who were with him num- +including Ahijah, +bered about six hundred men, +who was wearing an ephod. He was the son of +Ichabod’s brother Ahitub son of Phinehas, the +son of Eli the priest of the LORD in Shiloh. But the +Then Samuel set out, and the rest of the people went up after +troops did not know that Jonathan had left. + +c 20 + +and plowshares + +Some LXX mss. and Syriac; Heb. + +d 21 A pim + +LXX + +; (plowshare appears + possibly refers to a polished stone weighing approx. 0.25 ounces or 7 grams found in excavations. This +a + +twice). +is equiv. to about two-thirds of a shekel and likely refers to the price charged by the Philistines for these services. +third of a pim +Heb. does not include the currency unit + for each. + + charged for sharpening a pitchfork, an axe, or an oxgoad; alt., possibly + +of a shekel +around the rock of Rimmon + +; see Judges 20:45, 20:47, and 21:13. + +in the pomegranate cave + +LXX; Heb. + +e 21 + + or + +Or + +f 2 + + 4 + +5 + +Now there were cliffs on both sides of the pass +that Jonathan intended to cross to reach the Phil- +istine outpost. One was named Bozez and the +One cliff stood to the north toward +other Seneh. +Michmash, and the other to the south toward +6 +Geba. + +Jonathan said to the young man bearing his ar- +mor, “Come, let us cross over to the outpost of +these uncircumcised men. Perhaps the LORD will +work on our behalf. Nothing can hinder the LORD +7 +from saving, whether by many or by few.” + +His armor-bearer replied, “Do all that is in your + +8 +heart. Go ahead; I am with you heart and soul.” + +“Very well,” said Jonathan, “we will cross over +9 +toward these men and show ourselves to them. +If they say, ‘Wait until we come to you,’ then we +10 +will stay where we are and will not go up to them. +But if they say, ‘Come on up,’ then we will go +up, because this will be our sign that the LORD +11 +has delivered them into our hands.” + +So the two of them showed themselves to the +outpost of the Philistines, who exclaimed, “Look, +the Hebrews are coming out of the holes in which +12 +they were hiding!” + +So the men of the outpost called out to Jona- +than and his armor-bearer, “Come on up, and we +will teach you a lesson!” + + “Follow me,” Jonathan told his armor-bearer, +“for the LORD has delivered them into the hand +13 +of Israel.” + +So Jonathan climbed up on his hands and feet, +with his armor-bearer behind him. And the Phil- +istines fell before Jonathan, and his armor-bearer +In that first +followed and finished them off. +assault, Jonathan and his armor-bearer struck + of +down about twenty men in about half an acre +15 +land. + +14 + + a + +Then panic struck the Philistines in the camp, +in the field, and among all the people. Even those +in the outposts and raiding parties trembled. In- +deed, the earth quaked, and panic spread from +16 +God. + +b + +1 Samuel 14:30 | 261 + +And when they had called the roll, they saw that +18 +Jonathan and his armor-bearer were not there. + + d + +19 + +Then Saul said to Ahijah, “Bring the ark of +God.” (For at that time it was with the Israel- +While Saul was talking to the priest, the +ites.) +commotion in the Philistine camp continued to +increase. So Saul said to the priest, “Withdraw +20 +your hand.” + +21 + +Then Saul and all his troops assembled and +marched to the battle, and they found the Philis- +tines in total confusion, with each man wielding +And the He- +the sword against his neighbor. +brews who had previously gone up into the sur- +rounding camps to join the Philistines now went +over to the Israelites who were with Saul and +When all the Israelites who had been +Jonathan. +hiding in the hill country of Ephraim heard that +the Philistines were fleeing, they also joined the +23 +battle in close pursuit. + +22 + +So the LORD saved Israel that day, and the bat- + +Jonathan Eats the Honey +tle moved on beyond Beth-aven. +24 + +Now the men of Israel were in distress that +day, for Saul had placed the troops under an oath, +saying, “Cursed is the man who eats any food be- +fore evening, before I have taken vengeance on +my enemies.” So none of the troops tasted any +25 +food. + +26 + +Then all the troops entered the forest, and +And when +there was honey on the ground. +they entered the forest and saw the flowing +honey, not one of them put his hand to his mouth, +27 +because they feared the oath. + +Jonathan, however, had not heard that his fa- +ther had bound the people with the oath. So he +reached out the end of the staff in his hand, +dipped it into the honeycomb, and put his hand +to his mouth, and his eyes brightened. +Then +one of the soldiers told him, “Your father bound +the troops with a solemn oath, saying, ‘Cursed is +the man who eats food today.’ That is why the +29 +people are faint.” + +28 + +e + +c + +17 + +Now when Saul’s watchmen at Gibeah in Ben- +jamin looked and saw the troops melting away +Saul said to +and scattering in every direction, +the troops who were with him, “Call the roll and +half a yoke +yoke +a 14 +see who has left us.” +panic spread +c 16 +Hebrew +wore the ephod before the Israelites. + +“My father has brought trouble to the land,” +Jonathan replied. “Just look at how my eyes have +30 +brightened because I tasted a little of this honey. +How much better it would have been if the +troops had eaten freely today from the plunder +d 18 + was the amount of land plowed by a pair of yoked oxen in one day. + +melting away and going here and there + +“Bring the ephod.” For at that time he + +his strength was renewed + +and a terrible + +b 15 + +e 27 + +Or + +. A + +Or + +Or + +Hebrew; LXX + +; similarly in verse 29 + + 262 | 1 Samuel 14:31 + + a + +they took from their enemies! Would not the +slaughter of the Philistines have been much +31 +greater?” + +men of Israel, respond with Thummim.” + And +Jonathan and Saul were selected, but the people +42 +were cleared of the charge. + +That day, after the Israelites had struck down +32 +the Philistines from Michmash to Aijalon, the +people were very faint. +So they rushed greed- +ily to the plunder, taking sheep, cattle, and calves. +They slaughtered them on the ground and ate +33 +meat with the blood still in it. + +Then someone reported to Saul: “Look, the +troops are sinning against the LORD by eating +meat with the blood still in it.” + +34 + +“You have broken faith,” said Saul. “Roll a large +stone over here at once.” +Then he said, “Go +among the troops and tell them, ‘Each man must +bring me his ox or his sheep, slaughter them in +this place, and then eat. Do not sin against the +LORD by eating meat with the blood still in it.’ +” + +35 + +So that night everyone brought his ox and +slaughtered it there. +Then Saul built an altar to +the LORD; it was the first time he had built an al- +36 +tar to the LORD. + +And Saul said, “Let us go down after the Philis- +tines by night and plunder them until dawn, leav- +ing no man alive!” + +“Do what seems good to you,” the troops replied. +The People Save Jonathan +But the priest said, “We must consult God here.” +37 + +So Saul inquired of God, “Shall I go down after +the Philistines? Will You give them into the hand +of Israel?” +38 +But God did not answer him that day. + +Therefore Saul said, “Come here, all you lead- +39 +ers of the troops, and let us investigate how this +sin has occurred today. +As surely as the LORD +who saves Israel lives, even if it is my son Jona- +than, he must die!” +40 +But not one of the troops said a word. + +Then Saul said to all Israel, “You stand on one +side, and I and my son Jonathan will stand on the +other side.” +41 +“Do what seems good to you,” the troops replied. + +So Saul said to the LORD, the God of Israel, +“Why have You not answered Your servant this +day? If the fault is with me or my son Jonathan, +a 41 +respond with Urim, but if the fault is with the +c 47 +LXX and Vulgate; MT contains only the short quotation, +Or + +he inflicted punishment on them + + from Hebrew; LXX + +Then Saul said, “Cast the lot between me and + +43 +my son Jonathan.” And Jonathan was selected. + +“Tell me what you have done,” Saul com- + +manded him. + +So Jonathan told him, “I only tasted a little honey +with the end of the staff that was in my hand. And +44 +now I must die?” + +And Saul declared, “May God punish me, and +ever so severely, if you, Jonathan, do not surely +45 +die!” + +But the people said to Saul, “Must Jonathan +die—he who accomplished such a great deliver- +ance for Israel? Never! As surely as the LORD +lives, not a hair of his head will fall to the ground, +for with God’s help he has accomplished this to- +day.” +46 + +So the people rescued Jonathan, and he did not +die. +Then Saul gave up his pursuit of the Philis- +tines, and the Philistines returned to their own +Saul’s Victories +land. +47 + + b + +After Saul had assumed the kingship over Is- +rael, he fought against all his enemies on every +side—the Moabites, the Ammonites, the Edom- +ites, the kings + of Zobah, and the Philistines. +He +Wherever he turned, he routed them. +fought valiantly and defeated the Amalekites, de- +49 +livering Israel from the hands of its plunderers. + +48 + +c + +50 + +Now the sons of Saul were Jonathan, Ishvi, and +Malchishua. His two daughters were named Me- +rab (his firstborn) and Michal (his younger +His wife’s name was Ahinoam +daughter). +daughter of Ahimaaz. The name of the com- +mander of his army was Abner, the son of Saul’s +Saul’s father Kish and Abner’s father +uncle Ner. +52 +Ner were sons of Abiel. + +51 + +And the war with the Philistines was fierce for +all the days of Saul. So whenever he noticed any +Saul’s Disobedience +strong or brave man, Saul would enlist him. + +15 + +Then Samuel said to Saul, “The LORD +sent me to anoint you king over His peo- +ple Israel. Now therefore, listen to the words of +“Give a perfect (lot).” +This is what the LORD of Hosts says: +the LORD. +he was victorious + +b 47 + +king + +2 + +MT; DSS and LXX + +  a + +3 + +‘I witnessed what the Amalekites did to the Isra- +elites when they opposed them on their way up +Now go and attack the Amalekites +from Egypt. +and devote to destruction + all that belongs to +them. Do not spare them, but put to death men +and women, children and infants, oxen and +4 +sheep, camels and donkeys.’ + +” + +6 + +So Saul summoned the troops and numbered +5 +them at Telaim—200,000 foot soldiers and +10,000 men of Judah. +Saul came to the city of +And +Amalek and lay in wait in the valley. +he warned the Kenites, “Since you showed kind- +ness to all the Israelites when they came up out +of Egypt, go on and get away from the Amalek- +ites. Otherwise I will sweep you away with +them.” +7 +So the Kenites moved away from the Amalekites. + +Then Saul struck down the Amalekites all the +8 +way from Havilah to Shur, which is east of Egypt. +He captured Agag king of Amalek alive, but +devoted all the others to destruction with the +9 +sword. + + b + +Saul and his troops spared Agag, along with the +best of the sheep and cattle, the fat calves + and +lambs, and the best of everything else. They were +unwilling to devote them to destruction, but they +devoted to destruction all that was despised and +Samuel Denounces Saul +worthless. +10 + +11 + +Then the word of the LORD came to Samuel, +saying, +“I regret that I have made Saul king, for +he has turned away from following Me and has +not carried out My instructions.” + +And Samuel was distressed and cried out to the +12 +LORD all that night. + +Early in the morning Samuel got up to confront +Saul, but he was told, “Saul has gone to Carmel, +and behold, he has set up a monument for him- +13 +self and has turned and gone down to Gilgal.” + +When Samuel reached him, Saul said to him, +“May the LORD bless you. I have carried out the +14 +LORD’s instructions.” + +But Samuel replied, “Then what is this bleating + +15 +of sheep and lowing of cattle that I hear?” + +Saul answered, “The troops brought them +from the Amalekites; they spared the best sheep +cherem +a 3 +and cattle to sacrifice to the LORD your God, but + +b 9 + +1 Samuel 15:28 | 263 + +16 +the rest we devoted to destruction.” + +“Stop!” exclaimed Samuel. “Let me tell you + +what the LORD said to me last night.” +17 +“Tell me,” Saul replied. + +18 + +And Samuel said, “Although you were once +small in your own eyes, have you not become the +head of the tribes of Israel? The LORD anointed +and sent you on a mission, +you king over Israel +saying, ‘Go and devote to destruction the sinful +19 +Amalekites. Fight against them until you have +So why did you not obey the +wiped them out.’ +LORD? Why did you rush upon the plunder and +20 +do evil in the sight of the LORD?” + +“But I did obey the LORD,” Saul replied. “I went +on the mission that the LORD gave me. I brought +21 +back Agag king of Amalek and devoted the Ama- +The troops took sheep +lekites to destruction. +and cattle from the plunder, the best of the things +devoted to destruction, in order to sacrifice them +22 +to the LORD your God at Gilgal.” + +But Samuel declared: + +“Does the LORD delight in burnt offerings + +and sacrifices + +as much as in obedience to His voice? +Behold, obedience is better than sacrifice, +and attentiveness is better than the fat + +23 + +of rams. + +For rebellion is like the sin of divination, +and arrogance is like the wickedness + +of idolatry. + +Because you have rejected the word of the + +LORD, + +Saul’s Confession + +He has rejected you as king.” + +24 + +Then Saul said to Samuel, “I have sinned; I have +transgressed the LORD’s commandment and +25 +your instructions, because I feared the people +Now therefore, please +and obeyed their voice. +forgive my sin and return with me so I can wor- +26 +ship the LORD.” + +“I will not return with you,” Samuel replied. +“For you have rejected the word of the LORD, and +27 +He has rejected you as king over Israel.” + +28 +As Samuel turned to go, Saul grabbed the hem +So Samuel said to him, +of his robe, and it tore. +“The LORD has torn the kingdom of Israel from +you today and has given it to your neighbor who + +the grown bulls + +Forms of the Hebrew + + refer to the giving over of things or persons to the LORD, either by destroying or by giving + +as an offering; also in verses 8, 9, 15, 18, 20, and 21. + +Or + + 264 | 1 Samuel 15:29 + +29 + +Moreover, the Glory of Is- +is better than you. +rael does not lie or change His mind, for He is not +30 +a man, that He should change His mind.” + +“I have sinned,” Saul replied. “Please honor me +now before the elders of my people and before +Israel. Come back with me, so that I may worship +31 +the LORD your God.” + +So Samuel went back with Saul, and Saul wor- + +32 +shiped the LORD. + +Then Samuel said, “Bring me Agag king of the + +a + +Amalekites.” + +Agag came to him cheerfully, +33 +“Surely the bitterness of death is past.” + + b + for he thought, + +But Samuel declared: + +“As your sword has made women childless, +so your mother will be childless among + +women.” + +And Samuel hacked Agag to pieces before the +34 +LORD at Gilgal. + +35 + +Then Samuel went to Ramah, but Saul went up +And to the day of +to his home in Gibeah of Saul. +his death, Samuel never again visited Saul. Sam- +uel mourned for Saul, and the LORD regretted +Samuel Anoints David +that He had made Saul king over Israel. + +16 + +Now the LORD said to Samuel, “How long +are you going to mourn for Saul, since I +have rejected him as king over Israel? Fill your +horn with oil and go. I am sending you to Jesse of +Bethlehem, for I have selected from his sons a +2 +king for Myself.” + +“How can I go?” Samuel asked. “Saul will hear of + +it and kill me!” + +3 + +The LORD answered, “Take a heifer with you and +say, ‘I have come to sacrifice to the LORD.’ +Then +invite Jesse to the sacrifice, and I will show you +what you are to do. You are to anoint for Me the +4 +one I indicate.” + +So Samuel did what the LORD had said and +went to Bethlehem. When the elders of the town +met him, they trembled and asked, “Do you come +5 +in peace?” + +“In peace,” he replied. “I have come to sacrifice +to the LORD. Consecrate yourselves and come +a 32 +with me to the sacrifice.” +c 9 Shammah +Or +d 14 + +Shimea +; see DSS and LXX. + +a harmful spirit + +b 32 +Shimei + +cautiously + +in chains + +Shimeah + +Or + +; similarly in verses 15, 16, and 23 + +6 + +Then he consecrated Jesse and his sons and in- +When they arrived, +vited them to the sacrifice. +Samuel saw Eliab and said, “Surely here before +7 +the LORD is His anointed.” + +But the LORD said to Samuel, “Do not consider +his appearance or height, for I have rejected him; +the LORD does not see as man does. For man sees +the outward appearance, but the LORD sees the +8 +heart.” + +Then Jesse called Abinadab and presented him +to Samuel, who said, “The LORD has not chosen +9 +this one either.” + +c + +Next Jesse presented Shammah, + + but Samuel +10 +said, “The LORD has not chosen this one either.” + +Thus Jesse made seven of his sons pass before +Samuel, but Samuel told him, “The LORD has not +11 +chosen any of these.” + +And Samuel asked him, “Are these all the sons + +you have?” + +“There is still the youngest,” Jesse replied, “but he +is tending the sheep.” + +“Send for him,” Samuel replied. “For we will not +12 +sit down to eat until he arrives.” + +So Jesse sent for his youngest son and brought +him in. He was ruddy, with beautiful eyes and a +handsome appearance. And the LORD said, “Rise +13 +and anoint him, for he is the one.” + +So Samuel took the horn of oil and anointed +him in the presence of his brothers, and the Spirit +of the LORD rushed upon David from that day +forward. Then Samuel set out and went to +David Serves Saul +Ramah. +14 + + d + +16 + +Now the Spirit of the LORD departed from +15 +Saul, and a spirit of distress + from the LORD +Saul’s servants said to +began to torment him. +him, “Surely a spirit of distress from God is +tormenting you. +Let our lord command your +servants here to seek out someone who can skill- +fully play the harp. Whenever the spirit of +distress from God is upon you, he is to play it, and +17 +you will be well.” + +And Saul commanded his servants, “Find me +18 +someone who plays well, and bring him to me.” + + or + is a variant of + +, + +, and + +Or +; see 2 Samuel 13:3, 2 Samuel 21:21, and 1 Chronicles 2:13. + + See DSS and LXX. + +“Surely this is the bitterness of death.” + +One of the servants answered, “I have seen a +son of Jesse of Bethlehem who knows how to + + play the harp. He is a mighty man of valor, a war- +rior, eloquent and handsome, and the LORD is +19 +with him.” + +So Saul sent messengers to Jesse and said, +20 +“Send me your son David, who is with the sheep.” + +21 + +And Jesse took a donkey loaded with bread, a +skin of wine, and one young goat and sent them +to Saul with his son David. +When David came +to Saul and entered his service, Saul loved him +22 +very much, and David became his armor-bearer. + +23 + +Then Saul sent word to Jesse, saying, “Let Da- +vid remain in my service, for I am pleased with +him.” +And whenever the spirit from God came +upon Saul, David would pick up his harp and +play. Then Saul would find relief and feel better, +Goliath’s Challenge +and the spirit of distress would depart from him. + +17 + +2 + +Now the Philistines gathered their forces +for war at Socoh in Judah, and they +camped between Socoh and Azekah in Ephes- +Saul and the men of Israel assembled +dammim. +and camped in the Valley of Elah, arraying them- +3 +selves for battle against the Philistines. + +The Philistines stood on one hill and the Israel- +ites stood on another, with the valley between +4 +them. + +a + +5 + +Then a champion named Goliath, who was from +Gath, came out from the Philistine camp. He was +six cubits and a span in height, +and he had a +b +bronze helmet on his head. He wore a bronze +6 +coat of mail weighing five thousand shekels, +and he had armor of bronze on his legs and a +7 +javelin of bronze slung between his shoulders. +c +The shaft of his spear was like a weaver’s beam, + +and its iron point weighed six hundred shekels. +8 +In addition, his shield bearer went before him. + +And Goliath stood and shouted to the ranks of +Israel, “Why do you come out and array your- +selves for battle? Am I not a Philistine, and are +you not servants of Saul? Choose one of your men +and have him come down against me. +If he is +able to fight me and kill me, then we will be your +servants. But if I prevail against him and kill him, +10 +then you shall be our servants and work for us.” + +9 + +Then the Philistine said, “I defy the ranks of Is- + +a 4 +rael this day! Give me a man to fight!” +height + +1 Samuel 17:25 | 265 + +11 + +On hearing the words of the Philistine, Saul +and all the Israelites were dismayed and greatly +David Accepts the Challenge +afraid. +12 + +Now David was the son of a man named Jesse, +an Ephrathite from Bethlehem of Judah who had +d +13 +eight sons. And in the days of Saul, Jesse was old +The three older sons +and well along in years. +of Jesse had followed Saul into battle: The +firstborn was Eliab, the second was Abinadab, +And David was +and the third was Shammah. +the youngest. + +15 + +14 + +but David +The three oldest had followed Saul, +went back and forth from Saul to tend his father’s +16 +sheep in Bethlehem. + +For forty days the Philistine came forward + +17 +every morning and evening to take his stand. + e + +One day Jesse said to his son David, “Take this +ephah of roasted grain + and these ten loaves of +18 +bread for your brothers and hurry to their camp. +Take also these ten portions of cheese to the +commander of their unit. Check on the welfare of +your brothers and bring back an assurance from +They are with Saul and all the men of +them. +Israel in the Valley of Elah, fighting against the +20 +Philistines.” + +19 + +f + +So David got up early in the morning, left the +flock with a keeper, loaded up, and set out as +Jesse had instructed him. He reached the camp as +21 +the army was marching out to its position and +And Israel and the Phil- +shouting the battle cry. +22 +istines arrayed in formation against each other. + +23 + +Then David left his supplies in the care of the +quartermaster and ran to the battle line. When +he arrived, he asked his brothers how they were +And as he was speaking with them, sud- +doing. +denly the champion named Goliath, the Philistine +from Gath, came forward from the ranks of the +Philistines and shouted his usual words, which +24 +David also heard. + +When all the men of Israel saw Goliath, they + +25 +fled from him in great fear. + +Now the men of Israel had been saying, “Do +you see how this man keeps coming out to defy +Israel? To the man who kills him the king will +b 5 5,000 shekels +d 12 + +four cubits and a span in + + is approximately 125.6 pounds or 57 kil- +f 18 +LXX and Syriac; Hebrew + +he had become +some token + +Goliath was approximately 9 feet 9 inches or 297 centimeters tall; LXX, DSS, and Josephus + +c 7 600 shekels + +advanced among men +ograms. +from them + + (approximately 6 feet 9 inches or 206 centimeters tall). + +e 17 An ephah + +some pledge from them + + is approximately 15.1 pounds or 6.8 kilograms. + + or + + is approximately 20 dry quarts or 22 liters of roasted grain. + +Or + + 266 | 1 Samuel 17:26 + +give great riches. And he will give him his daugh- +ter in marriage and exempt his father’s house +26 +from taxation in Israel.” + +David asked the men who were standing with +him, “What will be done for the man who kills +this Philistine and removes this disgrace from Is- +rael? Just who is this uncircumcised Philistine, +27 +that he should defy the armies of the living God?” + +The people told him about the offer, saying, +“That is what will be done for the man who kills +28 +him.” + +Now when David’s oldest brother Eliab heard +him speaking to the men, his anger burned +against David. “Why have you come down here?” +he asked. “And with whom did you leave those +few sheep in the wilderness? I know your pride +and wickedness of heart—you have come down +29 +to see the battle!” + +30 + +“What have I done now?” said David. “Was it +Then he turned from him +not just a question?” +toward another and asked about the offer, and +those people answered him just as the first ones +31 +had answered. + +Now David’s words were overheard and + +32 +reported to Saul, who sent for him. + +And David said to Saul, “Let no man’s heart fail +on account of this Philistine. Your servant will go +33 +and fight him!” + +But Saul replied, “You cannot go out against +this Philistine to fight him. You are just a boy, and +34 +he has been a warrior from his youth.” + +35 + +David replied, “Your servant has been tending +his father’s sheep, and whenever a lion or a bear +came and carried off a lamb from the flock, +I +went after it, struck it down, and delivered the +lamb from its mouth. If it reared up against me, I +36 +would grab it by its fur, strike it down, and kill it. +Your servant has killed lions and bears; this +uncircumcised Philistine will be like one of them, +37 +for he has defied the armies of the living God.” + +David added, “The LORD, who delivered me +from the claws of the lion and the bear, will +deliver me from the hand of this Philistine.” +David Slays Goliath +“Go,” said Saul, “and may the LORD be with you.” +38 + +39 + +Then Saul clothed David in his own tunic, put a +bronze helmet on his head, and dressed him in +a 52 +David strapped his sword over the +armor. + +of the valley + +of Gai + +LXX; Hebrew + +; that is, + +tunic and tried to walk, but he was not accus- +tomed to them. + +“I cannot walk in these,” David said to Saul. “I am +40 +not accustomed to them.” So David took them off. +And David took his staff in his hand, selected +five smooth stones from the brook, and put them +in the pouch of his shepherd’s bag. And with his +41 +sling in hand, he approached the Philistine. + +43 + +Now the Philistine came closer and closer to +42 +David, with his shield-bearer before him. +When the Philistine looked and saw David, he +despised him because he was just a boy, ruddy +and handsome. +“Am I a dog,” he said to David, +44 +“that you come at me with sticks?” And the Phil- +istine cursed David by his gods. +“Come here,” +he called to David, “and I will give your flesh to +45 +the birds of the air and the beasts of the field!” + +46 + +But David said to the Philistine, “You come +against me with sword and spear and javelin, but +I come against you in the name of the LORD of +Hosts, the God of the armies of Israel, whom you +This day the LORD will deliver you +have defied. +into my hand. This day I will strike you down, cut +off your head, and give the carcasses of the Phil- +istine army to the birds of the air and the crea- +tures of the earth. Then the whole world will +And all those +know that there is a God in Israel. +assembled here will know that it is not by sword +or spear that the LORD saves; for the battle is the +LORD’s, and He will give all of you into our +48 +hands.” + +47 + +49 + +As the Philistine started forward to attack him, +David ran quickly toward the battle line to meet +him. +Then David reached into his bag, took out +a stone, and slung it, striking the Philistine on the +forehead. The stone sank into his forehead, and +50 +he fell facedown on the ground. + +Thus David prevailed over the Philistine with +a sling and a stone; without a sword in his hand +51 +he struck down the Philistine and killed him. +David ran and stood over him. He grabbed the +Philistine’s sword and pulled it from its sheath +and killed him, and he cut off his head with the +sword. + +52 + +When the Philistines saw that their hero was +Then the men of Is- +dead, they turned and ran. + a +rael and Judah charged forward with a shout and +pursued the Philistines to the entrance of Gath +and to the gates of Ekron. And the bodies of the +Philistines were strewn along the Shaaraim road +to Gath and Ekron. + + 53 + +54 + +When the Israelites returned from their pur- +suit of the Philistines, they plundered their +camps. +David took the head of the Philistine +and brought it to Jerusalem, and he put Goliath’s +55 +weapons in his own tent. + +As Saul had watched David going out to con- +front the Philistine, he said to Abner the com- +mander of the army, “Abner, whose son is this +young man?” + +“As surely as you live, O king,” Abner replied, “I +56 +do not know.” + +“Find out whose son this young man is!” said + +57 +the king. + +So when David returned from killing the Phil- +istine, still holding his head in his hand, Abner +58 +took him and brought him before Saul. + +“Whose son are you, young man?” asked Saul. + +“I am the son of your servant Jesse of Bethlehem,” +Jonathan Befriends David +David replied. + +18 + +After David had finished speaking with +Saul, the souls of Jonathan and David +2 +were knit together, and Jonathan loved him as +And from that day Saul kept David with +himself. +him and did not let him return to his father’s +3 +house. + +4 + +Then Jonathan made a covenant with David +And Jonathan +because he loved him as himself. +removed the robe he was wearing and gave it to +David, along with his tunic, his sword, his bow, +Saul Envies David +and his belt. +5 + +So David marched out and prospered in every- +thing Saul sent him to do, and Saul set him over +the men of war. And this was pleasing in the sight +6 +of all the people, and of Saul’s officers as well. + +As the troops were returning home after David +had killed the Philistine, the women came out of +all the cities of Israel to meet King Saul with sing- +ing and dancing, with joyful songs, and with tam- +bourines and other instruments. +And as the +women danced, they sang out: + +7 + +a + +8 + +“Saul has slain his thousands, + +and David his tens of thousands.” + +1 Samuel 18:24 | 267 + +9 + +can he have but the kingdom?” +10 +day forward Saul kept a jealous eye on David. + +And from that + b + +The next day a spirit of distress + + sent from God +came upon Saul, and he prophesied inside the +house while David played the harp as usual. Now +Saul was holding a spear, +and he hurled it, +thinking, “I will pin David to the wall.” But David +12 +eluded him twice. + +11 + +So Saul was afraid of David, because the LORD +13 +was with David but had departed from Saul. +Therefore Saul sent David away and gave him +command of a thousand men. David led the +troops out to battle and back, +and he continued +to prosper in all his ways, because the LORD was +15 +with him. + +14 + +16 + +When Saul saw that David was very successful, +But all Israel and Judah +he was afraid of him. +loved David, because he was leading them out to +David Marries Michal +battle and back. +17 + +Then Saul said to David, “Here is my older +daughter Merab. I will give her to you in mar- +riage. Only be valiant for me and fight the LORD’s +battles.” But Saul was thinking, “I need not raise +my hand against him; let the hand of the Philis- +18 +tines be against him.” + + c + +And David said to Saul, “Who am I, and what is +my family or my father’s clan in Israel, that I +should become the son-in-law of the king?” +So +when it was time + to give Saul’s daughter Merab +to David, she was given in marriage to Adriel of +20 +Meholah. + +19 + +Now Saul’s daughter Michal loved David, and +21 +when this was reported to Saul, it pleased him. +“I will give her to David,” Saul thought, “so that +she may be a snare to him, and the hand of the +Philistines may be against him.” So Saul said to +David, “For a second time now you can be my +22 +son-in-law.” + +Then Saul ordered his servants, “Speak to Da- +vid privately and tell him, ‘Behold, the king is +pleased with you, and all his servants love you. +23 +Now therefore, become his son-in-law.’ + +” + +But when Saul’s servants relayed these words +to David, he replied, “Does it seem trivial in your +sight to be the son-in-law of the king? I am a poor +24 +man and lightly esteemed.” + +And the servants told Saul what David had +But when it was time + +a harmful spirit c 19 + +b 10 + +Or + +Or + +And Saul was furious and resented this song. +“They have ascribed tens of thousands to David,” +a 6 +he said, “but only thousands to me. What more + or + +three-stringed instruments + +Possibly + +cymbals + +lutes + + or + + or + +lyres + +said. + + 268 | 1 Samuel 18:25 + +25 + +Saul replied, “Say to David, ‘The king desires +no other dowry but a hundred Philistine fore- +skins as revenge on his enemies.’ +” But Saul +intended to cause David’s death at the hands of +26 +the Philistines. + +When the servants reported these terms to +David, he was pleased to become the king’s +27 +son-in-law. Before the wedding day arrived, +David and his men went out and killed two +hundred Philistines. He brought their foreskins +and presented them as payment in full to become +the king’s son-in-law. Then Saul gave his daugh- +28 +ter Michal to David in marriage. + +29 + +When Saul realized that the LORD was with +David and that his daughter Michal loved +David, +he grew even more afraid of David. So +30 +from then on Saul was David’s enemy. + +Every time the Philistine commanders came +out for battle, David was more successful than +all of Saul’s officers, so that his name was highly +Saul Tries to Kill David (Psalm 59:1–17) +esteemed. + +19 + +Then Saul ordered his son Jonathan and +all his servants to kill David. + +2 + +3 + +so he +But Jonathan delighted greatly in David, +warned David, saying, “My father Saul intends to +kill you. Be on your guard in the morning; find a +secret place and hide there. +I will go out and +stand beside my father in the field where you are, +so I can ask about you. And if I find out anything, +4 +I will tell you.” + +5 + +Then Jonathan spoke well of David to his father +Saul and said to him, “The king should not sin +against his servant David; he has not sinned +against you. In fact, his actions have been highly +beneficial to you. +He took his life in his hands +when he struck down the Philistine, and the +LORD worked a great salvation for all Israel. You +saw it and rejoiced, so why would you sin against +6 +innocent blood by killing David for no reason?” + +Saul listened to the voice of Jonathan and swore +an oath: “As surely as the LORD lives, David will +7 +not be put to death.” + +So Jonathan summoned David and told him all +these things. Then Jonathan brought David to +8 +Saul, and David was with Saul as before. + +9 + + a + +10 + +But as Saul was sitting in his house with his +spear in his hand, a spirit of distress + from +the LORD came upon him. While David was play- +Saul tried to pin him to the wall +ing the harp, +with his spear. But David eluded him and the +spear struck the wall. And David fled and es- +11 +caped that night. + +Then Saul sent messengers to David’s house to +watch him and kill him in the morning. But Da- +vid’s wife Michal warned him, “If you do not run +12 +for your life tonight, tomorrow you will be dead!” +So Michal lowered David from the window, + +13 +and he ran away and escaped. + + b + +Then Michal took a household idol + + and laid it +in the bed, placed some goat hair on its head, and +When Saul sent the +covered it with a garment. +15 +messengers to seize David, Michal said, “He is ill.” + +14 + +16 + +But Saul sent the messengers back to see David +and told them, “Bring him up to me in his bed so +I can kill him.” +And when the messengers en- +tered, there was the idol in the bed with the goat +17 +hair on its head. + +And Saul said to Michal, “Why did you deceive +me like this? You sent my enemy away, and he +has escaped!” + +Michal replied, “He said to me, ‘Help me get away, +18 +or I will kill you!’ + +” + +So David ran away and escaped. And he went +to Samuel at Ramah and told him all that Saul had +done to him. Then he and Samuel went to Naioth +19 +and stayed there. + +20 + +When Saul was told that David was at Naioth +in Ramah, +he sent messengers to seize him. But +when they saw the group of prophets prophesy- +ing, with Samuel leading them, the Spirit of God +came upon them, and Saul’s messengers also be- +21 +gan to prophesy. + +When this was reported to Saul, he sent more +messengers, but they began to prophesy as well. + +So Saul tried again and sent messengers a third +22 +time, and even they began to prophesy. + +Finally, Saul himself left for Ramah and came +to the large cistern at Secu, where he asked, +“Where are Samuel and David?” +23 +“At Naioth in Ramah,” he was told. + +When war broke out again, David went out and +fought the Philistines and struck them with such +a 9 +a mighty blow that they fled before him. + +a household god + +a harmful spirit + +b 13 + +So Saul went to Naioth in Ramah. But the Spirit +of God came upon even Saul, and he walked along +prophesying until he came to Naioth in Ramah. + +teraphim + +Or + +Or + +; Hebrew + +; also in verse 16 + + 24 + +Then Saul stripped off his robes and also +prophesied before Samuel. And he collapsed and +lay naked all that day and night. That is why it is +Jonathan Helps David +said, “Is Saul also among the prophets?” + +20 + +Then David fled from Naioth in Ramah. +He came to Jonathan and asked, “What +have I done? What is my iniquity? How have I +sinned against your father, that he wants to take +2 +my life?” + +“Far from it!” Jonathan replied. “You will not +die. Indeed, my father does nothing, great or +small, without telling me. So why would he hide +3 +this matter from me? This cannot be true!” + +But David again vowed, “Your father knows +very well that I have found favor in your eyes, +and he has said, ‘Jonathan must not know of this, +or he will be grieved.’ As surely as the LORD lives +and as you yourself live, there is but a step be- +4 +tween me and death.” + +Then Jonathan said to David, “Whatever you de- + +5 +sire, I will do for you.” + +a + +7 + +6 + +So David told him, “Look, tomorrow is the New +Moon, + and I am supposed to dine with the king. +Instead, let me go and hide in the field until the +If your father misses +third evening from now. +me at all, tell him, ‘David urgently requested +my permission to hurry to Bethlehem, his +hometown, because there is an annual sacrifice +for his whole clan.’ +If he says, ‘Good,’ then your +servant is safe, but if he is enraged, you will know +he has evil intentions. +Therefore show kindness +to your servant, for you have brought me into a +covenant with you before the LORD. If there is in- +iquity in me, then kill me yourself; why should +9 +you bring me to your father?” + +8 + +“Never!” Jonathan replied. “If I ever found out +that my father had evil intentions against you, +Jonathan and David Renew Their +would I not tell you?” +Covenant + +10 + +Then David asked Jonathan, “Who will tell me + +11 +if your father answers you harshly?” + +“Come,” he replied, “let us go out to the field.” + +12 + +So the two of them went out into the field, +and +a 5 +Jonathan said, “By the LORD, the God of Israel, I + +loving devotion + +1 Samuel 20:27 | 269 + +13 + +14 + +will sound out my father by this time tomorrow +or the next day. If he is favorable toward you, will +But if my father +I not send for you and tell you? +intends to bring evil on you, then may the LORD +punish me, and ever so severely, if I do not tell +you and send you on your way in safety. May the +LORD be with you, just as He has been with my +And as long as I live, treat me with the +father. +15 + that I may not die, +LORD’s loving devotion, +and do not ever cut off your loving devotion +from my household—not even when the LORD +cuts off every one of David’s enemies from the +16 +face of the earth.” + + b + +17 + +So Jonathan made a covenant with the house +of David, saying, “May the LORD hold David’s en- +And Jonathan had David +emies accountable.” +reaffirm his vow out of love for him, for Jonathan +18 +loved David as he loved himself. + +21 + +19 + +20 + +Then Jonathan said to David, “Tomorrow is the +New Moon, and you will be missed, because your +When you have stayed +seat will be empty. +three days, hurry down to the place you hid on +c +the day this trouble began, and remain beside the +I will shoot three arrows to the +stone Ezel. +side of it, as if I were aiming at a target. +Then I +will send a boy and say, ‘Go, find the arrows!’ +Now, if I expressly say to him, ‘Look, the arrows +are on this side of you; bring them,’ then come, +because as surely as the LORD lives, it is safe for +But if I say to the +you, and there is no danger. +young man, ‘Look, the arrows are beyond you,’ +then you must go, for the LORD has sent you +And as for the matter you and I have dis- +away. +cussed, the LORD is a witness between you and +24 +me forever.” + +23 + +22 + +25 + +d + +26 + +So David hid in the field, and when the New +He +Moon had come, the king sat down to eat. +sat in his usual place by the wall, opposite + but David’s place +Jonathan and beside Abner, +Saul said nothing that day because +was empty. +he thought, “Something has happened to David to +make him ceremonially unclean—surely he is +27 +unclean.” + +But on the day after the New Moon, the second +day, David’s place was still empty, and Saul asked +his son Jonathan, “Why hasn’t the son of Jesse +chesed +b 14 +come to the meal either yesterday or today?” +faithful- + are translated here and in +by the wall. Jonathan + +Forms of the Hebrew + +goodness + +kindness + +love + +That is, the New Moon feast; also in verses 18, 24, and 27 + +loyalty to a covenant + +c 19 Ezel + +mercy + +ness +most cases throughout the Scriptures as +arose and Abner sat down by Saul’s side, +, as well as + +, and + +departure +; the range of meaning includes + +d 25 + +. + + means + +. + +, +LXX; Hebrew + +, + +, + + 270 | 1 Samuel 20:28 + +28 + +Jonathan answered, “David urgently re- +29 +quested my permission to go to Bethlehem, +saying, ‘Please let me go, because our clan +is holding a sacrifice in the city, and my brother +has told me to be there. So now, if I have found +favor in your eyes, please let me go and see my +brothers.’ That is why he has not come to the +Saul Seeks to Kill Jonathan +king’s table.” +30 + +Then Saul’s anger burned against Jonathan, +and he said to him, “You son of a perverse and +rebellious woman! Do I not know that you have +chosen the son of Jesse to your own shame and +For +to the shame of the mother who bore you? +as long as the son of Jesse lives on this earth, nei- +ther you nor your kingdom shall be established. +Now send for him and bring him to me, for he +32 +must surely die!” + +31 + +“Why must he be put to death?” Jonathan re- + +33 +plied. “What has he done?” + +34 + +Then Saul hurled his spear at Jonathan to kill +him. So Jonathan knew that his father was deter- +mined to kill David. +Jonathan got up from the +table in fierce anger and did not eat any food that +second day of the month, for he was grieved by +35 +his father’s shameful treatment of David. + +36 + +In the morning Jonathan went out to the field +for the appointment with David, and a small boy +He said to the boy, “Run and find +was with him. +the arrows I shoot.” And as the boy ran, Jonathan +37 +shot an arrow beyond him. + +38 + +When the boy reached the place where Jona- +than’s arrow had fallen, Jonathan called to him, +Then Jonathan +“Isn’t the arrow beyond you?” +cried out, “Hurry! Make haste! Do not delay!” So +the boy picked up the arrow and returned to his +39 +master. + +40 + +LORD, saying, ‘May the LORD be a witness +between you and me, and between your de- +” Then David got up +scendants and mine forever.’ +and departed, and Jonathan went back into the +city. David Takes the Consecrated Bread +(Matthew 12:1–8 ; Mark 2:23–28 ; Luke 6:1–5) + +21 + +Then David came to Nob, to Ahimelech +the priest. And when Ahimelech met Da- +vid, he trembled and asked him, “Why are you +2 +alone? Why is no one with you?” + +3 + +“The king has given me a mission,” David +replied. “He told me no one is to know about the +mission on which I am sending you. And I have +directed my young men to meet me at a certain +Now then, what do you have on hand? +place. +Give me five loaves of bread, or whatever can be +4 +found.” + +“There is no common bread on hand,” the priest +replied, “but there is some consecrated bread— +provided that the young men have kept them- +5 +selves from women.” + +David answered, “Women have indeed been +kept from us, as is usual when I set out. And the +bodies of the young men are holy even on com- +6 +mon missions. How much more so today!” + +So the priest gave him the consecrated bread, +since there was no bread there but the Bread of +the Presence, which had been removed from be- +fore the LORD and replaced with hot bread on +7 +the day it was taken away. + +Now one of Saul’s servants was there that day, +detained before the LORD. And his name was +David Flees to Gath +Doeg the Edomite, the chief shepherd for Saul. +(Psalm 34:1–22 ; Psalm 56:1–13) + +8 + +But the boy did not know anything; only Jona- +Then +than and David knew the arrangement. +Jonathan gave his equipment to the boy and said, +41 +“Go, take it back to the city.” + +a + +Then David asked Ahimelech, “Is there not a +spear or sword on hand here? For I have brought +neither my sword nor my weapons with me, be- +9 +cause the king’s mission was urgent.” + +When the young man had gone, David got up + fell facedown, +from the south side of the stone, +and bowed three times. Then he and Jonathan +kissed each other and wept together—though +42 +David wept more. + +The priest replied, “The sword of Goliath the +Philistine, whom you killed in the Valley of Elah, +is here; it is wrapped in a cloth behind the ephod. +If you want, you may take it. For there is no other +but this one here.” + +And Jonathan said to David, “Go in peace, for +a 41 +the two of us have sworn in the name of the + +from beside the stone + +from the south side + +And David said, “There is none like it; give it to +me.” + +Hebrew + +; LXX + + 1 Samuel 22:20 | 271 + +10 + +11 + +That day David fled from Saul and went to +But the servants of Achish +Achish king of Gath. +said to him, “Is this not David, the king of the +land? Did they not sing about him in their dances, +saying: + +told me that my own son had made a covenant +with the son of Jesse. Not one of you has shown +concern for me or revealed to me that my son has +stirred up my own servant to lie in wait against +9 +me, as is the case today.” + +‘Saul has slain his thousands, + +12 + +and David his tens of thousands’?” + +13 + +Now David took these words to heart and was +very much afraid of Achish the king of Gath. +So +he changed his behavior before them and feigned +madness in their hands; he scratched on the +doors of the gate and let his saliva run down his +14 +beard. + +15 + +Then Achish said to his servants, “Look, you +can see that the man is insane! Why have you +Am I in need of madmen, +brought him to me? +that you have brought this man to rave in my +David Flees to Adullam and Mizpeh +presence? Must this man come into my house?” +(Psalm 57:1–11 ; Psalm 142:1–7) + +22 + +2 + +So David left Gath and took refuge in the +cave of Adullam. When his brothers and +the rest of his father’s household heard about it, +And all who were +they went down to him there. +distressed or indebted or discontented rallied +around him, and he became their leader. About +3 +four hundred men were with him. + +From there David went to Mizpeh of Moab, + a +where he said to the king of Moab, “Please let my +4 + with you until I learn +father and mother stay +what God will do for me.” +So he left them in the +care of the king of Moab, and they stayed with +5 +him the whole time David was in the stronghold. + +Then the prophet Gad said to David, “Do not +stay in the stronghold. Depart and go into the +land of Judah.” So David left and went to the for- +Saul Slays the Priests of Nob (Psalm 52:1–9) +est of Hereth. +6 + +Soon Saul learned that David and his men had +been discovered. At that time Saul was sitting un- +der the tamarisk tree on the hill at Gibeah, with +his spear in hand and all his servants standing +7 +around him. + +Then Saul said to his servants, “Listen, men of +Benjamin! Is the son of Jesse giving all of you +fields and vineyards and making you command- +Is that why all of +ers of thousands or hundreds? +a 3 +you have conspired against me? Not one of you + +go forth + +8 + +Syriac and Vulgate; Hebrew + +10 + +But Doeg the Edomite, who had stationed him- +self with Saul’s servants, answered: “I saw the +son of Jesse come to Ahimelech son of Ahitub at +Nob. +Ahimelech inquired of the LORD for him +and gave him provisions. He also gave him the +11 +sword of Goliath the Philistine.” + +Then the king sent messengers to summon +Ahimelech the priest, the son of Ahitub, and his +father’s whole family, who were priests at Nob. +And all of them came to the king. +“Listen now, +son of Ahitub,” said Saul. +13 +“Here I am, my lord,” he replied. + +12 + +And Saul asked him, “Why have you and the +son of Jesse conspired against me? You gave him +bread and a sword and inquired of God for him +so that he could rise up against me to lie in wait, +14 +as he is doing today.” + +Ahimelech answered the king, “Who among all +your servants is as faithful as David, the king’s +15 +son-in-law, the captain of your bodyguard and +honored in your house? +Was that day the first +time I inquired of God for him? Far be it from me! +Let not the king accuse your servant or any of my +father’s household, for your servant knew noth- +16 +ing of this whole affair—not in part or in whole.” + +But the king replied, “You will surely die, + +17 +Ahimelech, you and all your father’s house!” + +Then the king ordered the guards at his side, +“Turn and kill the priests of the LORD, because +they too sided with David. For they knew he was +fleeing, but they did not tell me.” + +But the king’s servants would not lift a hand to +18 +strike the priests of the LORD. + +So the king ordered Doeg, “You turn and strike + +down the priests!” + +19 + +And Doeg the Edomite turned and struck down +the priests himself. On that day he killed eighty- +five men who wore the linen ephod. +He also +put to the sword Nob, the city of the priests, with +its men and women, children and infants, oxen, +20 +donkeys, and sheep. + +But one of the sons of Ahimelech son of Ahitub +escaped. His name was Abiathar, and he fled to + + 272 | 1 Samuel 22:21 + +21 + +David. +22 +killed the priests + + of the LORD. + +And Abiathar told David that Saul had + +Then David said to Abiathar, “I knew that Doeg +the Edomite was there that day, and that he was +sure to tell Saul. I myself am responsible for the +Stay +lives of everyone in your father’s house. + do not be afraid, for he who seeks your +with me; +life is seeking mine as well. You will be safe with +David Delivers Keilah +me.” + +23 + +23 + +Now it was reported to David, “Look, the +Philistines are fighting against Keilah + +2 +and looting the threshing floors.” + +So David inquired of the LORD, “Should I go and + +attack these Philistines?” + +And the LORD said to David, “Go and attack the +3 +Philistines and save Keilah.” + +But David’s men said to him, “Look, we are +afraid here in Judah; how much more if we go to +4 +Keilah against the armies of the Philistines?” + +Once again, David inquired of the LORD, and the +LORD answered him: “Go at once to Keilah, for I +5 +will deliver the Philistines into your hand.” + +Then David and his men went to Keilah, fought +against the Philistines, and carried off their live- +stock, striking them with a mighty blow. So David +6 +saved the people of Keilah. + +(Now Abiathar son of Ahimelech had brought +the ephod with him when he fled to David at +Saul Pursues David (Psalm 54:1–7) +Keilah.) +7 + +When Saul was told that David had gone to Kei- +lah, he said, “God has delivered him into my +hand, for he has trapped himself by entering a +8 +town with gates and bars.” + +Then Saul summoned all his troops to go to war + +9 +at Keilah and besiege David and his men. + +When David learned that Saul was plotting evil +against him, he said to Abiathar the priest, “Bring +10 +the ephod.” + + a + +11 + +And David said, “O LORD, God of Israel, Your +servant has heard that Saul intends to come to +Keilah and destroy the city on my account. +Will +the citizens of Keilah surrender me into his +hand? + Will Saul come down, as Your servant has +heard? O LORD, God of Israel, please tell Your +a 11 +servant.” + +Some manuscripts omit this question. + +12 +“He will,” said the LORD. + +So David asked, “Will the citizens of Keilah sur- +render me and my men into the hand of Saul?” +13 + “They will,” said the LORD. + +Then David and his men, about six hundred +strong, set out and departed from Keilah, moving +from place to place. When Saul was told that Da- +vid had escaped from Keilah, he declined to go +14 +forth. + +And David stayed in the wilderness strong- +holds and in the hill country of the Wilderness of +Ziph. Day after day Saul searched for him, but +15 +God would not deliver David into his hand. + +16 + +While David was in Horesh in the Wilderness +of Ziph, he saw that Saul had come out to take his +And Saul’s son Jonathan came to David in +life. +Horesh and strengthened his hand in God, +say- +ing, “Do not be afraid, for my father Saul will +never lay a hand on you. And you will be king over +Israel, and I will be your second-in-command. +18 +Even my father Saul knows this is true.” + +17 + +So the two of them made a covenant before the +LORD. And David remained in Horesh, while Jon- +19 +athan went home. + +20 + +Then the Ziphites came up to Saul at Gibeah +and said, “Is not David hiding among us in the +strongholds at Horesh, on the hill of Hachilah +Now, O king, come down +south of Jeshimon? +whenever your soul desires, and we will be re- +21 +sponsible for delivering him into your hand.” + +23 + +“May you be blessed by the LORD,” replied +22 +Saul, “for you have had compassion on me. +Please go and prepare further. Investigate and +watch carefully where he goes and who has seen +him there, for I am told that he is extremely cun- +Observe and find out all the places where +ning. +he hides. Then come back to me with certainty, +and I will go with you. If he is in the land, I will +24 +search him out among all the clans of Judah.” + +25 + +So they set out and went to Ziph ahead of Saul. +Now David and his men were in the Wilderness +of Maon in the Arabah south of Jeshimon, +and +Saul and his men went to seek him. When David +was told about it, he went down to the rock and +stayed in the Wilderness of Maon. And when Saul +26 +heard of this, he pursued David there. + +Saul was proceeding along one side of the +mountain, and David and his men along the other + + side. Even though David was hurrying to get +away, Saul and his men were closing in on David +27 +and his men to capture them. + +Then a messenger came to Saul, saying, “Come +28 +quickly, for the Philistines have raided the land!” +So Saul broke off his pursuit of David and went +to meet the Philistines. That is why that place +And David went +is called Sela-hammahlekoth. +up from there and lived in the strongholds of +David Spares Saul +En-gedi. + +29 + +a + +24 + +After Saul had returned from pursuing +2 +the Philistines, he was told, “David is in +So Saul took three +the wilderness of En-gedi.” +thousand chosen men from all Israel and went to +look for David and his men in the region of the +3 +Rocks of the Wild Goats. + +b + +4 + +Soon Saul came to the sheepfolds along the +road, where there was a cave, and he went in to +relieve himself. + And David and his men were +hiding in the recesses of the cave. +So David’s +men said to him, “This is the day about which the +LORD said to you, ‘Behold, I will deliver your en- +emy into your hand, that you may do with him as +you wish.’ + +” + +Then David crept up and stealthily cut off a cor- +5 +ner of Saul’s robe. + +6 + +Afterward, David’s conscience was stricken be- +cause he had cut off the corner of Saul’s robe. +So +he said to his men, “The LORD forbid that I +should do such a thing to my master, the LORD’s +anointed. May I never lift my hand against him, +7 +since he is the LORD’s anointed.” + +With these words David restrained his men, +and he did not let them rise up against Saul. Then +8 +Saul left the cave and went on his way. + +After that, David got up, went out of the cave, + +and called out to Saul, “My lord the king!” + +10 + +9 +When Saul looked behind him, David bowed +facedown in reverence +and said to Saul, “Why +do you listen to the words of men who say, ‘Look, +David intends to harm you’? +Behold, this day +you have seen with your own eyes that the LORD +delivered you into my hand in the cave. I was told +to kill you, but I spared you and said, ‘I will not +lift my hand against my lord, since he is the +a 28 Sela-hammahlekoth +LORD’s anointed.’ +c 1 + +Rock of Escape + +b 3 + +1 Samuel 25:2 | 273 + +11 + +See, my father, look at the corner of your robe +in my hand. For I cut it off, but I did not kill you. +Know and see that there is no evil or rebellion in +my hands. I have not sinned against you, even +12 +though you are hunting me down to take my life. + +May the LORD judge between you and me, and +may the LORD take vengeance on you, but my +hand will never be against you. +As the old +proverb says, ‘Wickedness proceeds from the +14 +wicked.’ But my hand will never be against you. + +13 + +Against whom has the king of Israel come out? +15 +Whom are you pursuing? A dead dog? A flea? +May the LORD be our judge and decide be- +tween you and me. May He take notice and plead +David’s Oath to Saul +my case and deliver me from your hand.” +16 + +When David had finished saying these things, +Saul called back, “Is that your voice, David my +17 +son?” + +18 + +and said to David, “You +Then Saul wept aloud +are more righteous than I, for you have rewarded +me with good, though I have rewarded you with +And you have declared this day how you +evil. +have treated me well, for when the LORD deliv- +19 +ered me into your hand, you did not kill me. +When a man finds his enemy, does he let him +go away unharmed? May the LORD reward you +with good for what you have done for me this +20 +day. + +21 + +Now I know for sure that you will be king and +that the kingdom of Israel will be established in +So now, swear to me by the LORD +your hands. +that you will not cut off my descendants or wipe +22 +out my name from my father’s house.” + +So David gave his oath to Saul. Then Saul re- +turned home, but David and his men went up to +The Death of Samuel +the stronghold. + +25 + +When Samuel died, all Israel gathered to +mourn for him; and they buried him at + +his home in Ramah. + +c + +Then David set out and went down to the +David, Nabal, and Abigail +Wilderness of Paran. +2 + +Now there was a man in Maon whose business +cover his feet +was in Carmel. He was a very wealthy man with +Maon + +Literally +Hebrew and some LXX manuscripts; other LXX manuscripts + + means + +. + +, a euphemism for relieving oneself + + 274 | 1 Samuel 25:3 + +3 + +a thousand goats and three thousand sheep, +His name was +which he was shearing in Carmel. +Nabal, and his wife’s name was Abigail. She was +an intelligent and beautiful woman, but her +husband, a Calebite, was harsh and evil in his +4 +dealings. + +5 + +6 + +While David was in the wilderness, he heard +So David sent +that Nabal was shearing sheep. +ten young men and instructed them, “Go up to +Nabal at Carmel. Greet him in my name +and say +7 +to him, ‘Long life to you, and peace to you and to +Now I +your house and to all that belongs to you. +hear that it is time for shearing. When your shep- +herds were with us, we did not harass them, and +nothing of theirs was missing the whole time +Ask your young men, and +they were in Carmel. +they will tell you. So let my young men find favor +with you, for we have come on the day of a feast. +Please give whatever you can spare to your serv- +9 +ants and to your son David.’ + +” + +8 + +When David’s young men arrived, they relayed +all these words to Nabal on behalf of David. Then +10 +they waited. + +But Nabal asked them, “Who is David? Who is +this son of Jesse? Many servants these days are +Why +breaking away from their masters. +should I take my bread and water and the meat I +have slaughtered for my shearers, and give them +12 +to these men whose origin I do not know?” + +11 + +So David’s men turned around and went back, + +13 +and they relayed to him all these words. + +And David said to his men, “Strap on your +swords!” So David and all his men strapped on +their swords, and about four hundred men +followed David, while two hundred stayed with +14 +the supplies. + +15 + +16 + +Meanwhile, one of Nabal’s young men in- +formed Nabal’s wife Abigail, “Look, David sent +messengers from the wilderness to greet our +Yet these +master, but he screamed at them. +men were very good to us. When we were in the +field, we were not harassed, and nothing of ours +went missing the whole time we lived among +They were a wall around us, both day +them. +and night, the whole time we were herding our +sheep near them. +Now consider carefully what +you must do, because disaster looms over our +master and all his household. For he is such a +a 18 5 seahs +scoundrel that nobody can speak to him!” +mies + +c 25 Nabal + +d 29 + +fool + +17 + +Abigail Intercedes for Nabal + +18 + +a + +Then Abigail hurried and took two hundred +loaves of bread, two skins of wine, five butchered +sheep, five seahs of roasted grain, + a hundred +clusters of raisins, and two hundred cakes of figs. +She loaded them on donkeys +and said to her +young men, “Go ahead of me. I will be right be- +20 +hind you.” But she did not tell her husband Nabal. + +19 + +As Abigail came riding her donkey into a +mountain ravine, she saw David and his men +21 +coming down toward her, and she met them. + +Now David had just said, “In vain I have +protected all that belonged to this man in the wil- +derness. Nothing that belongs to him has gone +22 +missing, yet he has paid me back evil for good. + and ever so severely, +if I let one male belonging to Nabal survive until +23 +morning.” + +May God punish David, + +b + +24 + +25 + +When Abigail saw David, she quickly got off +the donkey, fell facedown, and bowed before +She fell at his feet and said, “My lord, may +him. +the blame be on me alone, but please let your +servant speak to you; hear the words of your +My lord should pay no attention to +servant. +this scoundrel Nabal, + for he lives up to his name: +His name means Fool, and folly accompanies +him. I, your servant, did not see my lord’s young +26 +men whom you sent. + +c + +Now, my lord, as surely as the LORD lives and +you yourself live, since the LORD has held you +back from bloodshed and from avenging yourself +with your own hand, may your enemies and +27 +those who seek harm for my lord be like Nabal. + +28 + +Now let this gift your servant has brought to +my lord be given to the young men who follow +Please forgive your servant’s offense, for +you. +the LORD will surely make a lasting dynasty for +my lord, because he fights the LORD’s battles. +29 +May no evil be found in you as long as you live. + +And should someone pursue you and seek +your life, then the life of my lord will be bound +securely by the LORD your God in the bundle of +the living. But He shall fling away the lives of +30 +your enemies like stones from a sling. + +d + +When the LORD has done for my lord all the +good He promised, and when He has appointed +then my lord will have no +you ruler over Israel, + +David’s ene- + +31 + +b 22 +fling away the souls of your enemies as from the pocket of a sling +Some LXX manuscripts; MT + + is approximately 33 dry quarts or 36.5 liters of roasted grain. + + means + +. + +Literally + + remorse or guilt of conscience over needless +bloodshed and revenge. And when the LORD has +dealt well with my lord, may you remember your +32 +servant.” + +33 + +34 + +Then David said to Abigail, “Blessed be the +LORD, the God of Israel, who sent you to meet me +Blessed is your discernment, and +this day! +blessed are you, because today you kept me from +bloodshed and from avenging myself by my own +Otherwise, as surely as the LORD, the +hand. +God of Israel, lives, who has restrained me from +harming you, if you had not come quickly to meet +me, then surely no male belonging to Nabal +35 +would have been left alive by morning light.” + +Then David accepted from her hand what she +had brought him, and he said to her, “Go home in +peace. See, I have heeded your voice and granted +36 +your request.” + +When Abigail returned to Nabal, there he was +in the house, holding a feast fit for a king, in high +spirits and very drunk. So she told him nothing +37 +until morning light. + +In the morning when Nabal was sober, his wife +told him about these events, and his heart failed +About +within him, and he became like a stone. +David Marries Abigail +ten days later, the LORD struck Nabal dead. +39 + +38 + +On hearing that Nabal was dead, David said, +“Blessed be the LORD, who has upheld my cause +against the reproach of Nabal and has restrained +His servant from evil. For the LORD has brought +the wickedness of Nabal down upon his own +head.” + +40 + +Then David sent word to Abigail, asking her to +When his servants came to +become his wife. +Abigail at Carmel, they said, “David has sent us +41 +to take you as his wife.” + +She arose, bowed facedown, and said, “Here is +your servant, ready to serve and to wash the feet +42 +of my lord’s servants.” + +So Abigail hurried and got on a donkey, and +attended by five of her maidens, she followed +43 +David’s messengers and became his wife. + +44 + + a + +David had also married Ahinoam of Jezreel. So +But Saul +she and Abigail were both his wives. +had given his daughter Michal, David’s wife, to + son of Laish, who was from Gallim. +a 44 Palti +Palti + +Paltiel + + is a variant of + +; see 2 Samuel 3:15. + +1 Samuel 26:13 | 275 + +David Again Spares Saul + +26 + +2 + +Then the Ziphites came to Saul at Gibeah +and said, “Is not David hiding on the hill +of Hachilah, opposite Jeshimon?” +So Saul, ac- +companied by three thousand chosen men of +Israel, went down to the Wilderness of Ziph to +3 +search for David there. + +Saul camped beside the road at the hill of Ha- +chilah opposite Jeshimon, but David was living in +the wilderness. When he realized that Saul had +David sent out spies to ver- +followed him there, +5 +ify that Saul had arrived. + +4 + +6 + +Then David set out and went to the place where +Saul had camped. He saw the place where Saul +and Abner son of Ner, the general of his army, +had lain down. Saul was lying inside the inner cir- +cle of the camp, with the troops camped around +And David asked Ahimelech the Hittite and +him. +Abishai son of Zeruiah, Joab’s brother, “Who will +go down with me to Saul in the camp?” +7 +“I will go with you,” answered Abishai. + +That night David and Abishai came to the +troops, and Saul was lying there asleep in the in- +ner circle of the camp, with his spear stuck in the +ground by his head. And Abner and the troops +8 +were lying around him. + +Abishai said to David, “Today God has delivered +your enemy into your hand. Now, therefore, +please let me thrust the spear through him into +the ground with one stroke. I will not need to +9 +strike him twice!” + +10 + +But David said to Abishai, “Do not destroy him, +for who can extend a hand against the LORD’s +anointed and be guiltless?” +David added, “As +surely as the LORD lives, the LORD Himself will +strike him down; either his day will come and he +But +will die, or he will go into battle and perish. +the LORD forbid that I should extend my hand +against the LORD’s anointed. Instead, take the +12 +spear and water jug by his head, and let us go.” + +11 + +So David took the spear and water jug by Saul’s +head, and they departed. No one saw them or +knew about it, nor did anyone wake up; they all +remained asleep, because a deep sleep from the +David Reproves Abner +LORD had fallen on them. +13 + +Then David crossed to the other side and stood +atop the mountain at a distance; there was a wide + + 276 | 1 Samuel 26:14 + +14 + +And David shouted to the +gulf between them. +troops and to Abner son of Ner, “Will you not an- +swer me, Abner?” + + “Who are you who calls to the king?” Abner re- +15 +plied. + +16 + +So David said to Abner, “You are a man, aren’t +you? And who in Israel is your equal? Why then +did you not protect your lord the king when one +This thing +of the people came to destroy him? +you have done is not good. As surely as the LORD +lives, all of you deserve to die, since you did not +protect your lord, the LORD’s anointed. Now look +around. Where are the king’s spear and water jug +17 +that were by his head?” + +Then Saul recognized David’s voice and asked, + +“Is that your voice, David my son?” +18 +“It is my voice, my lord and king,” David said. + +19 + +And he continued, “Why is my lord pursuing +his servant? What have I done? What evil is in my +hand? +Now please, may my lord the king hear +the words of his servant: If the LORD has stirred +you up against me, then may He accept an offer- +ing. But if men have done it, may they be cursed +in the presence of the LORD! For today they have +driven me away from sharing in the inheritance +So +of the LORD, saying, ‘Go, serve other gods.’ +do not let my blood fall to the ground far from the +presence of the LORD. For the king of Israel has +come out to look for a flea, like one who hunts a +Saul Acknowledges His Sin +partridge in the mountains.” +21 + +20 + +Then Saul replied, “I have sinned. Come back, +David my son. I will never harm you again, be- +cause today you considered my life precious. I +have played the fool and have committed a grave +22 +error!” + +“Here is the king’s spear,” David answered. +23 +“Let one of the young men come over and get it. +May the LORD repay every man for his +righteousness and faithfulness. For the LORD de- +livered you into my hand today, but I would not +24 +extend my hand against the LORD’s anointed. +As surely as I valued your life today, so may +the LORD value my life and rescue me from all +25 +trouble.” + +Saul said to him, “May you be blessed, David +my son. You will accomplish great things and will +surely prevail.” +a 2 Maoch + +Maacah + + is a variant of + +; see 1 Kings 2:39. + +So David went on his way, and Saul returned +David and the Philistines +home. + +27 + +David, however, said to himself, “One of +these days now I will be swept away by +the hand of Saul. There is nothing better for me +than to escape to the land of the Philistines. Then +Saul will stop searching for me all over Israel, +2 +and I will slip out of his hand.” +a + +3 +went to Achish son of Maoch, + +So David set out with his six hundred men and + the king of Gath. +David and his men settled in Gath with Achish. +Each man had his family with him, and David had +his two wives: Ahinoam of Jezreel and Abigail of +Carmel, the widow of Nabal. +And when Saul +learned that David had fled to Gath, he no longer +5 +searched for him. + +4 + +Then David said to Achish, “If I have found favor +in your eyes, let me be assigned a place in one of +the outlying towns, so I can live there. For why +should your servant live in the royal city with +6 +you?” + +7 + +That day Achish gave him Ziklag, and to this day +And the +it still belongs to the kings of Judah. +time that David lived in Philistine territory +8 +amounted to a year and four months. + +Now David and his men went up and raided the +Geshurites, the Girzites, and the Amalekites. +(From ancient times these people had inhabited +When- +the land extending to Shur and Egypt.) +ever David attacked a territory, he did not leave +a man or woman alive, but he took the flocks and +herds, the donkeys, camels, and clothing. + +10 + +9 + +Then he would return to Achish, +ask him, “What have you raided today?” + +who would + +And David would reply, “The Negev of Judah,” or +“The Negev of Jerahmeel,” or “The Negev of the +11 +Kenites.” + +David did not leave a man or woman alive to +be brought to Gath, for he said, “Otherwise they +” +will report us, saying, ‘This is what David did.’ +And this was David’s custom the whole time he +12 +lived in Philistine territory. + +So Achish trusted David, thinking, “Since he +has made himself an utter stench to his people +Israel, he will be my servant forever.” + + 1 Samuel 28:25 | 277 + +The Philistines Gather against Israel + + b + +28 + +Now in those days the Philistines gath- +ered their forces for warfare against +Israel. So Achish said to David, “You must under- +stand that you and your men are to go out to +2 +battle with me.” + +David replied, “Then you will come to know + +what your servant can do.” + +“Very well,” said Achish. “I will make you my +3 +bodyguard for life.” + +Now by this time Samuel had died, and all Israel +had mourned for him and buried him in Ramah, +his own city. And Saul had removed the mediums +4 +and spiritists from the land. + +“I see a god +14 +woman answered. + + coming up out of the earth,” the + +“What does he look like?” asked Saul. + +“An old man is coming up,” she replied. “And he +is wearing a robe.” + +So Saul knew that it was Samuel, and he bowed +15 +facedown in reverence. + +Then Samuel said to Saul, “Why have you dis- + +turbed me by bringing me up?” + +“I am deeply distressed,” replied Saul. “The Phil- +istines are fighting against me, and God has +turned away from me. He no longer answers me, +either by prophets or by dreams. So I have called +16 +on you to tell me what to do.” + +5 + +The Philistines gathered together and camped +at Shunem, while Saul gathered all Israel and +When Saul saw the Philistine +camped at Gilboa. +He +army, he was afraid and trembled violently. +inquired of the LORD, but the LORD did not an- +Saul and the Medium of Endor +swer him by dreams or Urim +7 + + or prophets. + +6 + + a + +Then Saul said to his servants, “Find me a +woman who is a medium, so I can go and consult +her.” + +“There is a medium at Endor,” his servants +8 +replied. + +So Saul disguised himself by putting on differ- +ent clothes, and he set out with two of his men. +They came to the woman at night, and Saul said, +“Consult a spirit for me. Bring up for me the one +9 +I name.” + +But the woman replied, “Surely you know what +Saul has done, how he has killed the mediums +and spiritists in the land. Why have you set a trap +10 +to get me killed?” + +Then Saul swore to her by the LORD: “As +surely as the LORD lives, no punishment shall +11 +come upon you for this.” + +“Whom shall I bring up for you?” the woman + +asked. +12 +“Bring up Samuel,” he replied. + +But when the woman saw Samuel, she cried +out in a loud voice and said to Saul, “Why have +13 +you deceived me? You are Saul!” + +17 + +“Why do you consult me,” asked Samuel, “since +the LORD has turned away from you and become +He has done exactly what He +your enemy? +spoke through me: The LORD has torn the king- +18 +dom out of your hand and given it to your neigh- +Because you did not obey the LORD +bor David. +or carry out His burning anger against Amalek, +Moreo- +the LORD has done this to you today. +ver, the LORD will deliver Israel with you into the +hand of the Philistines, and tomorrow you and +your sons will be with me. And the LORD will +deliver the army of Israel into the hand of the +20 +Philistines.” + +19 + +Immediately Saul fell flat on the ground, terri- +fied by the words of Samuel. And his strength +was gone, because he had not eaten anything all +21 +that day and night. + +When the woman came to Saul and saw how +distraught he was, she said to him, “Look, your +maidservant has obeyed your voice. I took my +Now +life in my hands and did as you told me. +please listen to your servant and let me set a +morsel of bread before you so you may eat and +23 +have the strength to go on your way.” + +22 + +Saul refused, saying, “I will not eat.” But his +servants joined the woman in urging him, and he +heeded their voice. He got up from the ground +24 +and sat on the bed. + +The woman had a fattened calf at her house, +and she quickly slaughtered it. She also took +25 +flour, kneaded it, and baked unleavened bread. +She served it to Saul and his servants, and they + +“Do not be afraid,” the king replied. “What do + +ate. And that night they got up and left. + +a 6 +you see?” + +Lights + +b 13 + +I see a spirit + +I see a divine being + +Literally + +Or + + or + + 278 | 1 Samuel 29:1 + +The Philistines Reject David + +The Amalekites Raid Ziklag + +29 + +2 + +Now the Philistines brought all their +forces together at Aphek, while Israel +camped by the spring in Jezreel. +As the Philis- +tine leaders marched out with their units of +hundreds and thousands, David and his men +3 +marched behind them with Achish. + +Then the commanders of the Philistines asked, + +“What about these Hebrews?” + +Achish replied, “Is this not David, the servant of +King Saul of Israel? He has been with me all these +days, even years, and from the day he defected +4 +until today I have found no fault in him.” + +But the commanders of the Philistines were an- +gry with Achish and told him, “Send that man +back and let him return to the place you assigned +him. He must not go down with us into battle +only to become our adversary during the war. +What better way for him to regain the favor of his +Is this +master than with the heads of our men? +not the David about whom they sing in their +dances: + +5 + +‘Saul has slain his thousands, + +and David his tens of thousands’?” + +6 + +So Achish summoned David and told him, “As +surely as the LORD lives, you have been upright, +and it seems right in my sight that you should +march in and out with me in the army, because I +have found no fault in you from the day you came +to me until this day. But you are not good in the +Therefore turn back now +sight of the leaders. +and go in peace, so that you will not do anything +8 +to displease the leaders of the Philistines.” + +7 + +“But what have I done?” David replied. “What +have you found against your servant, from the +day I came to you until today, to keep me from +going along to fight against the enemies of my +9 +lord the king?” + +10 + +Achish replied, “I know that you are as pleasing +in my sight as an angel of God. But the command- +ers of the Philistines have said, ‘He must not go +Now then, get up early in +into battle with us.’ +the morning, along with your master’s servants +11 +who came with you, and go as soon as it is light.” + +So David and his men got up early in the morn- +ing to return to the land of the Philistines. And +the Philistines went up to Jezreel. +and all +a 2 + +LXX; Hebrew does not include + +. + +30 + +On the third day David and his men ar- +rived in Ziklag, and the Amalekites had +2 +raided the Negev, attacked Ziklag, and burned it + a +They had taken captive the women and +down. +all + who were there, both young and old. They +had not killed anyone, but had carried them off +3 +as they went on their way. + +4 + +When David and his men came to the city, they +found it burned down and their wives and sons +and daughters taken captive. +So David and the +troops with him lifted up their voices and wept +5 +until they had no strength left to weep. + +6 + +David’s two wives, Ahinoam of Jezreel and Abi- +gail the widow of Nabal of Carmel, had been +taken captive. +And David was greatly distressed +because the people spoke of stoning him, be- +cause the soul of every man grieved for his sons +and daughters. But David found strength in the +David Destroys the Amalekites +LORD his God. +7 + +Then David said to Abiathar the priest, the son + +8 + +of Ahimelech, “Bring me the ephod.” + +So Abiathar brought it to him, +and David in- +quired of the LORD: “Should I pursue these raid- +ers? Will I overtake them?” + +“Pursue them,” the LORD replied, “for you will +9 +surely overtake them and rescue the captives.” + +10 + +So David and his six hundred men went to the +Brook of Besor, where some stayed behind +be- +cause two hundred men were too exhausted to +cross the brook. But David and four hundred men +11 +continued in pursuit. + +12 + +Now his men found an Egyptian in the field and +brought him to David. They gave the man water +to drink and food to eat— +a piece of a fig cake +and two clusters of raisins. So he ate and was re- +vived, for he had not had any food or water for +13 +three days and three nights. + +Then David asked him, “To whom do you be- + +long, and where are you from?” + +14 + +“I am an Egyptian,” he replied, “the slave of an +Amalekite. My master abandoned me three days +ago when I fell ill. +We raided the Negev of the +Cherethites, the territory of Judah, and the Negev +15 +of Caleb, and we burned down Ziklag.” + +“Will you lead me to these raiders?” David + +asked. + + And the man replied, “Swear to me by God that +you will not kill me or deliver me into the hand +16 +of my master, and I will lead you to them.” + +So he led David down, and there were the Am- +alekites spread out over all the land, eating, +drinking, and celebrating the great amount of +plunder they had taken from the land of the Phil- +istines and the land of Judah. +And David struck +them down from twilight until the evening of the +next day. Not a man escaped, except four hun- +18 +dred young men who fled, riding off on camels. + +17 + +19 + +20 + +So David recovered everything the Amalekites +had taken, including his two wives. +Nothing +was missing, young or old, son or daughter, or +any of the plunder the Amalekites had taken. Da- +vid brought everything back. +And he took all +the flocks and herds, which his men drove ahead +of the other livestock, calling out, “This is David’s +The Spoils Are Divided +plunder!” +21 + +When David came to the two hundred men +who had been too exhausted to follow him and +who were left behind at the Brook of Besor, they +came out to meet him and the troops with him. +22 +As David approached the men, he greeted them, +but all the wicked and worthless men among +those who had gone with David said, “Because +they did not go with us, we will not share with +them the plunder we recovered, except for each +man’s wife and children. They may take them +23 +and go.” + +24 + +But David said, “My brothers, you must not do +this with what the LORD has given us. He has +protected us and delivered into our hands the +raiders who came against us. +Who will listen to +your proposal? The share of the one who went to +battle will match the share of the one who stayed +25 +with the supplies. They will share alike.” + +And so it has been from that day forward. +David established this statute and ordinance for +26 +Israel to this very day. + +When David arrived in Ziklag, he sent some of +the plunder to his friends, the elders of Judah, +27 +saying, “Here is a gift for you from the plunder of +28 +the LORD’s enemies.” +He sent gifts to those +to those in +in Bethel, Ramoth Negev, and Jattir; +Aroer, Siphmoth, and Eshtemoa; +to those in +Racal and in the cities of the Jerahmeelites and +Kenites; +to those in Hormah, Bor-ashan, and +Athach; +and to those in Hebron and in all the +places where David and his men had roamed. + +30 +31 + +29 + +1 Samuel 31:13 | 279 + +Saul’s Overthrow and Death +(2 Samuel 1:1–16 ; 1 Chronicles 10:1–6) + +31 + +Now the Philistines fought against Israel, +and the men of Israel fled before them, + +2 +and many fell slain on Mount Gilboa. + +3 + +The Philistines hotly pursued Saul and his sons, +and they killed Saul’s sons Jonathan, Abinadab, +When the battle intensified +and Malchishua. +against Saul, the archers overtook him and +4 +wounded him critically. + +Then Saul said to his armor-bearer, “Draw your +sword and run me through with it, or these un- +circumcised men will come and run me through +and torture me!” + +But his armor-bearer was terrified and refused +5 +to do it. So Saul took his own sword and fell on it. + +When his armor-bearer saw that Saul was dead, +6 +he too fell on his own sword and died with him. + +So Saul, his three sons, his armor-bearer, and all + +The Philistines Possess the Towns +his men died together that same day. +(1 Chronicles 10:7–10) + +7 + +When the Israelites along the valley and those +on the other side of the Jordan saw that the army +of Israel had fled and that Saul and his sons had +died, they abandoned their cities and ran away. +8 +So the Philistines came and occupied their cities. + +The next day, when the Philistines came to strip +9 +the dead, they found Saul and his three sons +They cut off Saul’s head, +fallen on Mount Gilboa. +stripped off his armor, and sent messengers +throughout the land of the Philistines to proclaim +the news in the temples of their idols and among +They put his armor in the temple +their people. +of the Ashtoreths and hung his body on the wall +Jabesh-gilead’s Tribute to Saul +of Beth-shan. +(1 Chronicles 10:11–14) + +10 + +11 + +12 + +When the people of Jabesh-gilead heard what +all their men +the Philistines had done to Saul, +of valor set out, journeyed all night, and retrieved +the bodies of Saul and his sons from the wall of +Beth-shan. + +13 + +When they arrived at Jabesh, they burned the +bodies there. +Then they took their bones and +buried them under the tamarisk tree in Jabesh, +and they fasted seven days. + + 2 Samuel + +Saul’s Death Reported to David +(1 Samuel 31:1–6 ; 1 Chronicles 10:1–6) + +1 + +2 + +After the death of Saul, David returned from +the slaughter of the Amalekites and stayed +On the third day a man with +in Ziklag two days. +torn clothes and dust on his head arrived from +Saul’s camp. When he came to David, he fell to the +3 +ground to pay him homage. + +“Where have you come from?” David asked. + +“I have escaped from the Israelite camp,” he +4 +replied. + +“What was the outcome?” David asked. “Please + +tell me.” + +“The troops fled from the battle,” he replied. +“Many of them fell and died. And Saul and his son +5 +Jonathan are also dead.” + +Then David asked the young man who had +brought him the report, “How do you know that +6 +Saul and his son Jonathan are dead?” + +“I happened to be on Mount Gilboa,” he replied, +“and there was Saul, leaning on his spear, with +7 +the chariots and the cavalry closing in on him. +When he turned around and saw me, he called + +8 +out to me, and I answered, ‘Here I am!’ + +‘Who are you?’ he asked. + +9 +So I told him, ‘I am an Amalekite.’ + +Then he begged me, ‘Stand over me and kill me, +10 +for agony has seized me, but my life still lingers.’ + +So I stood over him and killed him, because I +knew that after he had fallen he could not sur- +vive. And I took the crown that was on his head +and the band that was on his arm, and I have +11 +brought them here to my lord.” + +12 + +Then David took hold of his own clothes and +tore them, and all the men who were with him +They mourned and wept and +did the same. +fasted until evening for Saul and his son Jona- +a 18 +than, and for the people of the LORD and the +Jasher +c 21 + +be taught the use of the bow +the Song of the Bow +no showers falling on your terraced fields +; note that + +Or + +be taught the bow + +house of Israel, because they had fallen by the +13 +sword. + +And David inquired of the young man who had +brought him the report, “Where are you from?” + +“I am the son of a foreigner,” he answered. “I am +14 +an Amalekite.” + +So David asked him, “Why were you not afraid +15 +to lift your hand to destroy the LORD’s anointed?” +Then David summoned one of the young men +and said, “Go, execute him!” So the young man +struck him down, and he died. +For David had +said to the Amalekite, “Your blood be on your +own head because your own mouth has testified +David’s Song for Saul and Jonathan +” +against you, saying, ‘I killed the LORD’s anointed.’ +17 + +16 + +18 + +Then David took up this lament for Saul and +and he ordered that the sons + b + It is writ- + +his son Jonathan, +of Judah be taught the Song of the Bow. +19 +ten in the Book of Jashar: + +a + +“Your glory, O Israel, lies slain on your + +20 + +heights. + +How the mighty have fallen! + +Tell it not in Gath; + +proclaim it not in the streets of + +Ashkelon, + +lest the daughters of the Philistines rejoice, +and the daughters of the uncircumcised + +21 + +exult. + +O mountains of Gilboa, + +c + +may you have no dew or rain, +no fields yielding offerings of grain. +For there the shield of the mighty was + +defiled, + +22 + +the shield of Saul, no longer anointed + +with oil. + +From the blood of the slain, + +from the fat of the mighty, + +the bow of Jonathan did not retreat, + +and the sword of Saul did not return + +b 18 + +the Book of the Upright One +empty. + +Or + +; LXX + +; Hebrew + +; literally +Or +no fields of firstfruits + that follows is not found in known manuscripts attributed to Jasher. + +no fields of offerings + +, commonly cited as + + 23 + +Ish-bosheth Made King of Israel + +2 Samuel 2:21 | 281 + +Saul and Jonathan, beloved and delightful in + +life, + +were not divided in death. +They were swifter than eagles; + +they were stronger than lions. + +24 + +O daughters of Israel, +weep for Saul, + +who clothed you in scarlet and luxury, +who decked your garments with + +25 + +ornaments of gold. + +How the mighty have fallen in the thick + +26 + +of battle! + +Jonathan lies slain on your heights. + +I grieve for you, Jonathan, my brother. + +You were delightful to me; +your love to me was extraordinary, +surpassing the love of women. + +27 + +How the mighty have fallen, + +and the weapons of war have + +David Anointed King of Judah +perished!” + +2 + +Some time later, David inquired of the LORD, +“Should I go up to one of the towns of Ju- + +dah?” + +“Go up,” the LORD answered. + +Then David asked, “Where should I go?” +2 +“To Hebron,” replied the LORD. + +3 + +So David went there with his two wives, +Ahinoam of Jezreel and Abigail the widow of +David also took the men who +Nabal of Carmel. +were with him, each with his household, and they +4 +settled in the towns near Hebron. + +Then the men of Judah came to Hebron, and +there they anointed David king over the house of +Judah. And they told David, “It was the men of +5 +Jabesh-gilead who buried Saul.” + +6 + +So David sent messengers to the men of Jabesh- +gilead to tell them, “The LORD bless you, because +you showed this kindness to Saul your lord when + a +Now may the LORD show you +you buried him. +loving devotion + and faithfulness, and I will also +show you the same favor because you have done +Now then, be strong and courageous, for +this. +though Saul your lord is dead, the house of Judah +has anointed me as their king.” +a 6 + +7 + +chesed +love + +8 + +b +Meanwhile, Abner son of Ner, the commander + +9 + +of Saul’s army, took Saul’s son Ish-bosheth, +moved him to Mahanaim, +and made him king +over Gilead, Asher, Jezreel, Ephraim, and Benja- +10 +min—over all Israel. + +Saul’s son Ish-bosheth was forty years old when +he began to reign over Israel, and he reigned for +two years. +11 +The house of Judah, however, followed David. +And the length of time that David was king in +Hebron over the house of Judah was seven years +The Battle of Gibeon +and six months. +12 + +13 + +One day Abner son of Ner and the servants of +Ish-bosheth son of Saul marched out from Ma- +So Joab son of Zeruiah and +hanaim to Gibeon. +the servants of David marched out and met them +by the pool of Gibeon. And the two groups took +14 +up positions on opposite sides of the pool. + +Then Abner said to Joab, “Let us have the + +young men get up and compete before us.” +15 +“Let them get up,” Joab replied. + +16 + +So they got up and were counted off—twelve +for Benjamin and Ish-bosheth son of Saul, and +Then each man grabbed his +twelve for David. +opponent by the head and thrust his sword into +his opponent’s side, and they all fell together. So +this place, which is in Gibeon, is called Helkath- +17 +hazzurim. + +c + +The battle that day was intense, and Abner and +the men of Israel were defeated by the servants +18 +of David. + +19 + +The three sons of Zeruiah were there: Joab, +Abishai, and Asahel. Now Asahel was fleet of foot +and he chased Abner, not +like a wild gazelle, +20 +turning to the right or to the left in his pursuit. +And Abner glanced back and said, “Is that you, + +Asahel?” +21 +“It is,” Asahel replied. + +So Abner told him, “Turn to your right or to +your left, seize one of the young men, and take his +equipment for yourself.” + +But Asahel would not stop chasing him. +loving devotion + +Forms of the Hebrew +b 8 Ish-bosheth +range of meaning includes + + is also called + +Esh-baal + +kindness + +goodness + are translated here and in most cases throughout the Scriptures as +c 16 Helkath-hazzurim +, and +, as well as +, + +faithfulness + +mercy + +, + +loyalty to a covenant + +the Field of Swords + +; the + + means + +. + +. + +, +; see 1 Chronicles 8:33. + + 282 | 2 Samuel 2:22 + +22 + +Once again, Abner warned Asahel, “Stop chas- +ing me. Why should I strike you to the ground? +23 +How could I show my face to your brother Joab?” + +But Asahel refused to turn away. So Abner +thrust the butt of his spear into his stomach, and +it came out his back, and he fell dead on the spot. +And every man paused when he came to the +place where Asahel had fallen and died. +But +Joab and Abishai pursued Abner. By sunset, they +had gone as far as the hill of Ammah opposite +25 +Giah on the way to the wilderness of Gibeon. + +24 + +26 + +The Benjamites rallied to Abner, formed a sin- +gle unit, and took their stand atop a hill. +Then +Abner called out to Joab: “Must the sword devour +forever? Do you not realize that this will only end +in bitterness? How long before you tell the troops +27 +to stop pursuing their brothers?” + +“As surely as God lives,” Joab replied, “if you +had not spoken up, the troops would have con- +28 +tinued pursuing their brothers until morning.” + +29 + +So Joab blew the ram’s horn, and all the troops +stopped; they no longer pursued Israel or contin- +ued to fight. +And all that night Abner and his +a +men marched through the Arabah. They crossed +the Jordan, marched all morning, + and arrived at +30 +Mahanaim. + +When Joab returned from pursuing Abner, he + +gathered all the troops. + +31 + +In addition to Asahel, nineteen of David’s +but they had struck +servants were missing, +32 +down 360 Benjamites who were with Abner. +And they took Asahel and buried him in his +father’s tomb in Bethlehem. Then Joab and his +men marched all night and reached Hebron at +The House of David Strengthened +daybreak. +(1 Chronicles 3:1–9) + +3 + +Now the war between the house of Saul and +the house of David was protracted. And Da- +vid grew stronger and stronger, while the house +2 +of Saul grew weaker and weaker. + +And sons were born to David in Hebron: + +His firstborn was Amnon, by Ahinoam of +3 +Jezreel; + +b + +his second was Chileab, +widow of Nabal of Carmel; + + by Abigail the + +a 29 +c 15 Paltiel + +his third was Absalom, the son of Maacah +Palti + +marched all through Bithron + + b 3 + +4 +daughter of King Talmai of Geshur; + +his fourth was Adonijah, the son of + +Haggith; +5 +his fifth was Shephatiah, the son of Abital; + +and his sixth was Ithream, by David’s wife + +Eglah. + +Abner Joins David +These sons were born to David in Hebron. +6 + +During the war between the house of Saul and +the house of David, Abner had continued to +7 +strengthen his position in the house of Saul. +Now Saul had a concubine named Rizpah, +the daughter of Aiah. So Ish-bosheth questioned +Abner, “Why did you sleep with my father’s +8 +concubine?” + +Abner was furious over Ish-bosheth’s accusa- +tion. “Am I the head of a dog that belongs to Ju- +dah?” he asked. “All this time I have been loyal to +the house of your father Saul, to his brothers, and +to his friends. I have not delivered you into the +9 +hand of David, but now you accuse me of wrong- +doing with this woman! +May God punish Abner, +and ever so severely, if I do not do for David what +the LORD has sworn to him: +to transfer the +kingdom from the house of Saul and to establish +the throne of David over Israel and Judah, from +11 +Dan to Beersheba.” + +10 + +And for fear of Abner, Ish-bosheth did not dare + +12 +to say another word to him. + +Then Abner sent messengers on his behalf to +say to David, “To whom does the land belong? +Make your covenant with me, and surely my +hand will be with you to bring all Israel over to +13 +you.” + +“Good,” replied David, “I will make a covenant +with you. But there is one thing I require of you: +Do not appear before me unless you bring Saul’s +14 +daughter Michal when you come to see me.” + +Then David sent messengers to say to +Ish-bosheth son of Saul, “Give me back my wife, +Michal, whom I betrothed to myself for a hun- +15 +dred Philistine foreskins.” + + c + +16 + + son of Laish. + +So Ish-bosheth sent and took Michal from her +husband Paltiel +Her husband fol- +lowed her, weeping all the way to Bahurim. Then +Abner said to him, “Go back.” So he returned +home. + +Daniel + +Daluia + +See LXX; Hebrew + +LXX + +; some translators + +; see 1 Chronicles 3:1. + + is a variant of + +; see 1 Samuel 25:44. + + 17 + +18 + +Now Abner conferred with the elders of Israel +and said, “In the past you sought David as your +king. +Now take action, because the LORD has +said to David, ‘Through My servant David I will +save My people Israel from the hands of the Phil- +19 +istines and of all their enemies.’ + +” + +Abner also spoke to the Benjamites. Then he +went to Hebron to tell David all that seemed good +20 +to Israel and to the whole house of Benjamin. +When Abner and twenty of his men came to + +21 +David at Hebron, David held a feast for them. + +Then Abner said to David, “Let me go at once, +and I will gather all Israel to my lord the king, +that they may make a covenant with you, and +that you may rule over all that your heart +desires.” +Joab Murders Abner +So David dismissed Abner, and he went in peace. +22 + +Just then David’s soldiers and Joab returned +from a raid, bringing with them a great plunder. +But Abner was not with David in Hebron, be- +23 +cause David had sent him on his way in peace. +When Joab and all his troops arrived, he was +informed, “Abner son of Ner came to see the king, +24 +who sent him on his way in peace.” + +25 + +So Joab went to the king and said, “What have +you done? Look, Abner came to you. Why did you +dismiss him? Now he is getting away! +Surely +you realize that Abner son of Ner came to deceive +you and to track your movements and all that +26 +you are doing.” + +As soon as Joab had left David, he sent messen- +gers after Abner, who brought him back from the +27 +well of Sirah. But David was unaware of it. + +When Abner returned to Hebron, Joab pulled +him aside into the gateway, as if to speak to him +privately, and there Joab stabbed him in the +stomach. So Abner died on account of the blood +28 +of Joab’s brother Asahel. + +Afterward, David heard about this and said, “I +and my kingdom are forever guiltless before the +29 +LORD concerning the blood of Abner son of Ner. +May it whirl over the head of Joab and over the +entire house of his father, and may the house of +Joab never be without one having a discharge or +skin disease, or one who leans on a staff or falls +30 +by the sword or lacks food.” + +(Joab and his brother Abishai murdered Abner +because he had killed their brother Asahel in the +battle at Gibeon.) + +2 Samuel 4:4 | 283 + +David Mourns for Abner + +31 + +Then David ordered Joab and all the people +with him, “Tear your clothes, put on sackcloth, +and mourn before Abner.” And King David him- +32 +self walked behind the funeral bier. + +33 + +When they buried Abner in Hebron, the king +wept aloud at Abner’s tomb, and all the people +And the king sang this lament for Abner: +wept. + +“Should Abner die + +34 + +the death of a fool? + +Your hands were not bound, + +your feet were not fettered. +As a man falls before the wicked, + +so also you fell.” + +35 +And all the people wept over him even more. + +Then all the people came and urged David to +eat something while it was still day, but David +took an oath, saying, “May God punish me, and +ever so severely, if I taste bread or anything else +36 +before the sun sets!” + +37 + +All the people took note and were pleased. In +fact, everything the king did pleased them. +So +on that day all the troops and all Israel were con- +vinced that the king had no part in the murder of +38 +Abner son of Ner. + +39 + +Then the king said to his servants, “Do you not +realize that a great prince has fallen today in Is- +rael? +And I am weak this day, though anointed +as king, and these men, the sons of Zeruiah, are +too fierce for me. May the LORD repay the evil- +The Murder of Ish-bosheth +doer according to his evil!” + +4 + +2 + +Now when Ish-bosheth son of Saul heard +that Abner had died in Hebron, he lost cour- +Saul’s son had +age, and all Israel was dismayed. +two men who were leaders of raiding parties. +One was named Baanah and the other Rechab; +they were sons of Rimmon the Beerothite of the +tribe of Benjamin—Beeroth is considered part +because the Beerothites fled to +of Benjamin, +Gittaim and have lived there as foreigners to this +4 +day. + +3 + +And Jonathan son of Saul had a son who was +lame in his feet. He was five years old when the +report about Saul and Jonathan came from Jez- +reel. His nurse picked him up and fled, but as she +was hurrying to escape, he fell and became lame. +His name was Mephibosheth. + + 284 | 2 Samuel 4:5 + +5 + +Now Rechab and Baanah, the sons of Rimmon +the Beerothite, set out and arrived at the house +of Ish-bosheth in the heat of the day, while the +They entered +king was taking his midday nap. +the interior of the house as if to get some wheat, +and they stabbed him in the stomach. Then +7 +Rechab and his brother Baanah slipped away. + +6 + +8 + +They had entered the house while Ish-bosheth +was lying on his bed, and having stabbed and +killed him, they beheaded him, took his head, and +They +traveled all night by way of the Arabah. +brought the head of Ish-bosheth to David at +Hebron and said to the king, “Here is the head of +Ish-bosheth son of Saul, your enemy who +sought your life. Today the LORD has granted +vengeance to my lord the king against Saul and +The Execution of Rechab and Baanah +his offspring.” +9 + +10 + +But David answered Rechab and his brother +Baanah, the sons of Rimmon the Beerothite, “As +surely as the LORD lives, who has redeemed my +when someone told me, +life from all distress, +‘Look, Saul is dead,’ and thought he was a bearer +of good news, I seized him and put him to death +11 +at Ziklag. That was his reward for his news! +How much more, when wicked men kill a +righteous man in his own house and on his own +bed, shall I not now require his blood from your +12 +hands and remove you from the earth!” + +So David commanded his young men, and they +killed Rechab and Baanah. They cut off their +hands and feet and hung their bodies by the pool +in Hebron, but they took the head of Ish-bosheth +David Anointed King of All Israel +and buried it in Abner’s tomb in Hebron. +(1 Chronicles 11:1–3) + +5 + +2 + +Then all the tribes of Israel came to David at +Hebron and said, “Here we are, your own +Even in times past, while Saul +flesh and blood. +was king over us, you were the one who led Israel +out and brought them back. And to you the LORD +said, ‘You will shepherd My people Israel, and +3 +you will be ruler over them.’ + +” + +So all the elders of Israel came to the king at +Hebron, where King David made with them a +covenant before the LORD. And they anointed +4 +him king over Israel. + +5 + +reigned over Judah seven years and six months, +and in Jerusalem he reigned thirty-three years +David Conquers Jerusalem (1 Chron. 11:4–9) +over all Israel and Judah. +6 + +Now the king and his men marched to Jerusa- +lem against the Jebusites who inhabited the land. +The Jebusites said to David: “You will never get +in here. Even the blind and lame can repel you.” +7 +For they thought, “David cannot get in here.” + +8 + +Nevertheless, David captured the fortress of +Zion (that is, the City of David). +On that day +he said, “Whoever attacks the Jebusites must +use the water shaft to reach the lame and blind +who are despised by David. +” That is why it is +said, “The blind and the lame will never enter the +9 +palace.” + +a + +10 + +So David took up residence in the fortress and +called it the City of David. He built it up all the +way around, from the supporting terraces + in- +ward. +And David became greater and greater, +11 +for the LORD God of Hosts was with him. + + b + +Now Hiram king of Tyre sent envoys to David, +along with cedar logs, carpenters, and stonema- +David’s Family Grows (1 Chron. 14:1–7) +sons, and they built a palace for David. +12 + +And David realized that the LORD had estab- +lished him as king over Israel and had exalted his +13 +kingdom for the sake of His people Israel. + +After he had arrived from Hebron, David took +more concubines and wives from Jerusalem, and +14 +more sons and daughters were born to him. +These are the names of the children born to + Shobab, Nathan, +Eli- + +him in Jerusalem: Shammua, +Solomon, +Two Victories over the Philistines +shama, Eliada, and Eliphelet. +(1 Chronicles 14:8–17) + +Ibhar, Elishua, Nepheg, Japhia, + +15 + +16 + +c + +17 + +When the Philistines heard that David had +been anointed king over Israel, they all went in +search of him; but David learned of this and went +18 +down to the stronghold. + +19 +Now the Philistines had come and spread out +So David inquired of +in the Valley of Rephaim. +the LORD, “Should I go up against the Philistines? +Will You deliver them into my hand?” + +David was thirty years old when he became +the Millo +a 8 +In Hebron he +king, and he reigned forty years. + +who are enemies of David + +b 9 + +“Go up,” replied the LORD, “for I will surely de- +liver the Philistines into your hand.” + +Shimea + +c 14 Shammua + +Or + +Hebrew + + is a variant of + +; see 1 Chronicles 3:5. + + 20 + +9 + +2 Samuel 6:20 | 285 + +a + +So David went to Baal-perazim, where he +defeated the Philistines and said, “Like a bursting +flood, the LORD has burst out against my +enemies before me.” So he called that place +There the Philistines aban- +Baal-perazim. +doned their idols, and David and his men carried +22 +them away. + +21 + +23 + +Once again the Philistines came up and spread +So David inquired +out in the Valley of Rephaim. +of the LORD, who answered, “Do not march +straight up, but circle around behind them and +attack them in front of the balsam trees. +As +soon as you hear the sound of marching in the +tops of the balsam trees, move quickly, because +this will mean that the LORD has gone out before +25 +you to strike the camp of the Philistines.” + +24 + +b + +So David did as the LORD had commanded +him, and he struck down the Philistines all the +David Fetches the Ark (1 Chronicles 13:1–7) + to Gezer. +way from Gibeon + + c + +6 + +2 + + d + +David again assembled the chosen men of Is- +And he and all +rael, thirty thousand in all. +his troops set out for Baale of Judah + to bring up +from there the ark of God, which is called by the +Name— +the name of the LORD of Hosts, who is +3 +enthroned between the cherubim that are on it. + + e + +They set the ark of God on a new cart and +brought it from the house of Abinadab, which +was on the hill. Uzzah and Ahio, the sons of +bringing +Abinadab, were guiding the new cart, +with it the ark of God. + And Ahio was walking in +Uzzah Touches the Ark (1 Chronicles 13:8–14) +front of the ark. +5 + +4 + +f + +g + +David and all the house of Israel were celebrat- +ing before the LORD with all kinds of wood +instruments, + harps, stringed instruments, tam- +6 +bourines, sistrums, and cymbals. + +h + +When they came to the threshing floor of +Nacon, + Uzzah reached out and took hold of the +And +ark of God, because the oxen had stumbled. +the anger of the LORD burned against Uzzah, and +God struck him down on the spot for his irrever- +8 +ence, + + and he died there beside the ark of God. + +7 + +i + +That day David feared the LORD and asked, +10 +“How can the ark of the LORD ever come to me?” +So he was unwilling to move the ark of the +LORD to the City of David; instead, he took it +11 +aside to the house of Obed-edom the Gittite. +Thus the ark of the LORD remained in the +house of Obed-edom the Gittite for three months, +The Ark Brought to Jerusalem +and the LORD blessed him and all his household. +(1 Chronicles 15:1–28) + +12 + +Now it was reported to King David, “The LORD +has blessed the house of Obed-edom and all that +belongs to him, because of the ark of God.” + +13 + +So David went and had the ark of God brought up +from the house of Obed-edom into the City of Da- +vid with rejoicing. +When those carrying the ark +of the LORD had advanced six paces, he sacrificed +14 +an ox and a fattened calf. + +15 + +And David, wearing a linen ephod, danced with +all his might before the LORD, +while he and +all the house of Israel brought up the ark of the +LORD with shouting and the sounding of the +Michal’s Contempt for David +ram’s horn. +(1 Chronicles 15:29–16:3) + +16 + +As the ark of the LORD was entering the +City of David, Saul’s daughter Michal looked +down from a window and saw King David leap- +ing and dancing before the LORD, and she des- +17 +pised him in her heart. + +So they brought the ark of the LORD and set it +in its place inside the tent that David had pitched +for it. Then David offered burnt offerings and +18 +peace offerings before the LORD. + +19 + +When David had finished sacrificing the burnt +offerings and peace offerings, he blessed the peo- +ple in the name of the LORD of Hosts. +Then he +k +distributed to every man and woman among the +multitude of Israel a loaf of bread, a date cake, +and a raisin cake. And all the people departed, +20 +each to his own home. + +Then David became angry because the LORD +had burst forth against Uzzah. So he named that +a 20 Baal-perazim +place Perez-uzzah, + +The Lord Bursts Out + +b 23 + +j + + as it is called to this day. +Or + +Geba + +d 2 + +. + + means +the Name— f 4 + +aspen trees + +When David returned home to bless his own +household, Saul’s daughter Michal came out to +meet him. “How the king of Israel has distin- +guished himself today!” she said. “He has + +poplar trees + +c 25 + +e 2 + + or + +from the house of Abinadab, which was on the hill + +LXX (see also 1 +Hebrew; LXX and Vulgate do not +playing before the Lord on well-tuned instruments mightily, and +. +h 6 Nacon + +; also in verse 24 + +before the LORD with all woods of cypress + +That is, Kiriath-jearim; see 1 Chronicles 13:6. + +Chronicles 14:16); Hebrew +g 5 +include +with songs + +Literally + +DSS and some LXX manuscripts; MT includes +i 7 + +j 8 Perez-uzzah + +for this + +; LXX + +outbreak against Uzzah + +k 19 + +Chidon +a portion of meat + +; some of the instruments in this verse are uncertain; see 1 Chronicles 13:8. + + is a variant of + +; + +see 1 Chronicles 13:9. + +MT; DSS + + means + +. + +Or + + 286 | 2 Samuel 6:21 + +uncovered himself today in the sight of the maid- +servants of his subjects, like a vulgar person +21 +would do.” + +22 + +But David said to Michal, “I was dancing before +the LORD, who chose me over your father and all +his house when He appointed me ruler over the +LORD’s people Israel. I will celebrate before the +LORD, +and I will humiliate and humble myself +even more than this. Yet I will be honored by the +23 +maidservants of whom you have spoken.” + +And Michal the daughter of Saul had no chil- +God’s Covenant with David (1 Chron. 17:1–15) +dren to the day of her death. + +7 + +2 + +After the king had settled into his palace and +the LORD had given him rest from all his en- +he said to Nathan the +emies around him, +prophet, “Here I am, living in a house of cedar, +3 +while the ark of God remains in a tent.” + +And Nathan replied to the king, “Go and do all + +4 +that is in your heart, for the LORD is with you.” + +5 + +6 + +But that night the word of the LORD came to Na- +than, saying, +“Go and tell My servant David that +this is what the LORD says: Are you the one to +build for Me a house to dwell in? +For I have not +dwelt in a house from the day I brought the Isra- +7 +elites up out of Egypt until this day, but I have +moved about with a tent as My dwelling. +In all +My journeys with all the Israelites, have I ever +asked any of the leaders + I appointed to shep- +herd My people Israel, ‘Why haven’t you built Me +8 +a house of cedar?’ + + a + +9 + +Now then, you are to tell My servant David that +this is what the LORD of Hosts says: I took you +from the pasture, from following the flock, to be +the ruler over My people Israel. +I have been +with you wherever you have gone, and I have cut +off all your enemies from before you. Now I will +make for you a name like that of the greatest in +10 +the land. + +12 + +13 + +The LORD declares to you that He Himself will +establish a house for you. +And when your days +are fulfilled and you rest with your fathers, I will +raise up your descendant after you, who will +come from your own body, and I will establish +his kingdom. +He will build a house for My +Name, and I will establish the throne of his king- +dom forever. +I will be his Father, and he will be +My son. + When he does wrong, I will discipline +him with the rod of men and with the blows of +15 +the sons of men. + +14 + +b + +But My loving devotion will never be removed +16 +from him as I removed it from Saul, whom I re- +c +Your house and king- +moved from before you. +dom will endure forever before Me, + and your +17 +throne will be established forever.” + +So Nathan relayed to David all the words of + +David’s Prayer of Thanksgiving +this entire revelation. +(1 Chronicles 17:16–27) + +18 + +19 + +Then King David went in, sat before the LORD, +and said, “Who am I, O Lord GOD, and what is my +house, that You have brought me this far? +And +as if this was a small thing in Your eyes, O Lord +GOD, You have also spoken about the future of + d +the house of Your servant. Is this Your custom +with man, O Lord GOD? +What more can David +say to You? For You know Your servant, O Lord +For the sake of Your word and according +GOD. +to Your own heart, You have accomplished this +22 +great thing and revealed it to Your servant. + +20 + +21 + +23 + +How great You are, O Lord GOD! For there is +none like You, and there is no God but You, ac- +cording to everything we have heard with our +And who is like Your people +own ears. +Israel—the one nation on earth whom God went +out to redeem as a people for Himself and to +make a name for Himself? You performed great +and awesome wonders by driving out nations +and their gods from before Your people, whom +For +You redeemed for Yourself from Egypt. +You have established Your people Israel as Your +very own forever, and You, O LORD, have become +25 +their God. + +24 + +e + +11 + +And I will provide a place for My people +Israel and will plant them so that they may dwell +in a place of their own and be disturbed no more. +No longer will the sons of wickedness oppress +them as they did at the beginning +and have +And now, O LORD God, confirm forever the +done since the day I appointed judges over +word You have spoken concerning Your servant +My people Israel. I will give you rest from all your +you +tribes +a 7 +and his house. Do as You have promised, +so +enemies. +d 19 +You performed +e 23 +for Yourself great and awesome wonders for Your land, before Your people, whom You have redeemed for Yourself from Egypt, +from nations and their gods. + +Some Hebrew manuscripts and LXX; most Hebrew manuscripts + +And this is Your instruction for mankind, O Lord GOD. + +See LXX and 1 Chronicles 17:21; Hebrew + +Cited in Hebrews 1:5 + +b 14 + +c 16 + +Or + +Or + +26 + + 9 + + e + +2 Samuel 9:3 | 287 + +10 + +When King Toi + + of Hamath heard that David + f +he +had defeated the entire army of Hadadezer, +sent his son Joram + to greet King David and bless +him for fighting and defeating Hadadezer, who +had been at war with Toi. Joram brought with +and +him articles of silver and gold and bronze, +King David dedicated these to the LORD, along + g +with the silver and gold he had dedicated from all +the nations he had subdued— +and Moab, from the Ammonites and Philistines +and Amalekites, and from the spoil of Hadadezer +13 +son of Rehob, king of Zobah. + +from Edom + +11 + +12 + + h + +14 + + in the Valley of Salt. + +And David made a name for himself when he +returned from striking down eighteen thousand +He placed gar- +Edomites +risons throughout Edom, and all the Edomites +were subject to David. So the LORD made David +David’s Officers (1 Chronicles 18:14–17) +victorious wherever he went. +15 + +Thus David reigned over all Israel and admin- +istered justice and righteousness for all his +16 +people: + +Joab son of Zeruiah was over the army; + +17 +Jehoshaphat son of Ahilud was the recorder; + +Zadok son of Ahitub and Ahimelech son of + + i + +Abiathar were priests; +18 +Seraiah + + was the scribe; + +Benaiah son of Jehoiada was over the + +j + +Cherethites and Pelethites; + +David and Mephibosheth + +and David’s sons were priestly leaders. + +9 + +Then David asked, “Is there anyone left from +the house of Saul to whom I can show kind- + +2 +ness for the sake of Jonathan?” + +And there was a servant of the house of Saul +named Ziba. They summoned him to David, and +the king inquired, “Are you Ziba?” +3 +“I am your servant,” he replied. + +that Your name will be magnified forever when +it is said, ‘The LORD of Hosts is God over Israel.’ +27 +And the house of Your servant David will be es- +tablished before You. +For You, O LORD of +Hosts, the God of Israel, have revealed this to +Your servant when You said, ‘I will build a house +for you.’ Therefore Your servant has found the +28 +courage to offer this prayer to You. + +29 + +And now, O Lord GOD, You are God! Your +words are true, and You have promised this +goodness to Your servant. +Now therefore, may +it please You to bless the house of Your servant, +that it may continue forever before You. For You, +O Lord GOD, have spoken, and with Your blessing +the house of Your servant will be blessed +David’s Triumphs (1 Chr. 18:1–13 ; Ps. 60:1–12) +forever.” + +8 + + a + +Some time later, David defeated the Philis- +tines, subdued them, and took Metheg- + +2 +ammah + + from the hand of the Philistines. + +David also defeated the Moabites, made them +lie down on the ground, and measured them off +with a cord. He measured off with two lengths +those to be put to death, and with one length +those to be spared. So the Moabites became sub- +3 +ject to David and brought him tribute. + +b + +4 + +David also defeated Hadadezer son of Rehob, +king of Zobah, who had marched out to restore +his dominion along the Euphrates River. +David +captured from him a thousand chariots, seven +thousand charioteers, + and twenty thousand foot +soldiers, and he hamstrung all the horses except +5 +a hundred he kept for the chariots. + +c + +6 + +When the Arameans of Damascus came to help +King Hadadezer of Zobah, David struck down +Then he +twenty-two thousand of their men. +placed garrisons in Aram of Damascus, and the +Arameans became subject to David and brought +him tribute. So the LORD made David victorious +7 +wherever he went. + + d + +8 + +And from Betah + +And David took the gold shields that belonged +to the officers of Hadadezer and brought them to +Jerusalem. + and Berothai, cities +of Hadadezer, King David took a large amount of +a 1 Metheg-ammah +bronze. +along the River +from him seventeen hundred charioteers +, or an alternate reading + +bridle of the mother city + +along the Euphrates + + means + +. + +b 3 + +d 8 + +Tou + +So the king asked, “Is there anyone left of the +house of Saul to whom I can show the kindness +of God?” +c 4 + +captured +e 9 Toi + +LXX, Syriac, and Vulgate (see also 1 Chronicles 18:3); Hebrew +LXX (see also DSS and 1 Chronicles 18:4); MT +f 10 Joram +; see 1 Chronicles 18:8. +Hebrew; some LXX manuscripts + +Hadoram + +Tebah + + is a + +g 12 +variant of +Aram + +h 13 + +; also in verse 10; see 1 Chronicles 18:9. + + is a variant of + +; see 1 Chronicles 18:10. + +Some Hebrew manuscripts, LXX, and Syriac (see also verse 14 and 1 Chronicles 18:11); most Hebrew manuscripts + +Shavsha +A few Hebrew manuscripts, LXX, and Syriac (see also verse 14 and 1 Chronicles 18:12); most Hebrew manu- + +Sheva +chief officials + +i 17 Seraiah +priests + +Arameans +j 18 + +Shisha + +scripts +18:16. + +Literally + +, or possibly + +; see LXX, Targum Yonaton, and 1 Chronicles 18:17. + + is also called + +, + +, and + +; see 2 Samuel 20:25, 1 Kings 4:3, and 1 Chronicles + + 288 | 2 Samuel 9:4 + +Ziba answered, “There is still Jonathan’s son, +4 +who is lame in both feet.” + +“Where is he?” replied the king. + +And Ziba said, “Indeed, he is in Lo-debar at the +5 +house of Machir son of Ammiel.” + +6 + + a + +So King David had him brought from the house +And when + son of Jonathan, the son of Saul, + +of Machir son of Ammiel in Lo-debar. +Mephibosheth +came to David, he fell facedown in reverence. + +Then David said, “Mephibosheth!” +7 +“I am your servant,” he replied. + +“Do not be afraid,” said David, “for surely I will +show you kindness for the sake of your father +Jonathan. I will restore to you all the land of your +grandfather Saul, and you will always eat at my +8 +table.” + +Mephibosheth bowed down and said, “What is +your servant, that you should show regard for a +9 +dead dog like me?” + +10 + +Then the king summoned Saul’s servant Ziba +and said to him, “I have given to your master’s +grandson all that belonged to Saul and to all his +house. +You and your sons and servants are to +work the ground for him and bring in the har- +vest, so that your master’s grandson may have +food to eat. But Mephibosheth, your master’s +grandson, is always to eat at my table.” +11 +Now Ziba had fifteen sons and twenty servants. +And Ziba said to the king, “Your servant will do + +all that my lord the king has commanded.” +12 +So Mephibosheth ate at David’s table + like one of +c +the king’s own sons. +And Mephibosheth had a +young son named Mica, + and all who dwelt in the +13 +house of Ziba were servants of Mephibosheth. +So Mephibosheth lived in Jerusalem, because +he always ate at the king’s table, and he was lame +David’s Messengers Disgraced +in both feet. +(1 Chronicles 19:1–9) + + b + +10 + +Some time later, the king of the Ammo- +2 +nites died and was succeeded by his son +Hanun. +And David said, “I will show kindness to +Hanun son of Nahash, just as his father showed +kindness to me.” + +So David sent some of his servants to console Ha- +nun concerning his father. But when they arrived +a 6 Mephibosheth +the princes of the +in the land of the Ammonites, + +Merib-baal + +3 + +Micah + +Ammonites said to Hanun their lord, “Just be- +cause David has sent you comforters, do you +really believe he is showing respect for your +father? Has not David instead sent his servants to +4 +explore the city, spy it out, and overthrow it?” + +So Hanun took David’s servants, shaved off half +of each man’s beard, cut off their garments at the +5 +hips, and sent them away. + +When this was reported to David, he sent mes- +sengers to meet the men, since they had been +thoroughly humiliated. The king told them, “Stay +in Jericho until your beards have grown back, +6 +and then return.” + +When the Ammonites realized that they had +become a stench to David, they hired twenty +thousand Aramean foot soldiers from Beth- +rehob and Zoba, as well as a thousand men from +the king of Maacah and twelve thousand men +7 +from Tob. + +8 + +On hearing this, David sent Joab and the entire +army of mighty men. +The Ammonites marched +out and arrayed themselves for battle at the +entrance of the city gate, while the Arameans of +Zobah and Rehob and the men of Tob and +David Defeats Ammon and Aram +Maacah were by themselves in the open country. +(1 Chronicles 19:10–19) + +9 + +When Joab saw the battle lines before him and +behind him, he selected some of the best men of +10 +Israel and arrayed them against the Arameans. +And he placed the rest of the troops under the +command of his brother Abishai, who arrayed +11 +them against the Ammonites. + +12 + +“If the Arameans are too strong for me,” said +Joab, “then you will come to my rescue. And if the +Ammonites are too strong for you, then I will +Be strong and let us fight +come to your rescue. +bravely for our people and for the cities of our +13 +God. May the LORD do what is good in His sight.” + +14 + +So Joab and his troops advanced to fight the +Arameans, who fled before him. +When the Am- +monites saw that the Arameans had fled, they too +fled before Abishai, and they entered the city. So +Joab returned from fighting against the Ammo- +15 +nites and came to Jerusalem. + +16 + +When the Arameans saw that they had been +defeated by Israel, they regrouped. +Hadadezer +c 12 Mica +sent messengers to bring more Arameans from + +my table + +b 11 + +of + +; see 1 Chronicles 8:34. + + is also called + +; see 1 Chronicles 8:34. + +LXX; Hebrew + + is a variant + + a + + b + +beyond the Euphrates, +with Shobach +17 +army leading them. + + and they came to Helam + the commander of Hadadezer’s + +18 + +When this was reported to David, he gathered +all Israel, crossed the Jordan, and went to Helam. +Then the Arameans arrayed themselves against +But the Arame- +David and fought against him. +ans fled before Israel, and David killed seven +hundred charioteers and forty thousand foot sol- +diers. + He also struck down Shobach the com- +19 +mander of their army, who died there. + +c + +When all the kings who were subject to +Hadadezer saw that they had been defeated by +Israel, they made peace with Israel and became +subject to them. So the Arameans were afraid to +help the Ammonites anymore. +David and Bathsheba + +11 + +d + +In the spring, + at the time when kings +march out to war, David sent out Joab +and his servants with the whole army of Israel. +They destroyed the Ammonites and besieged +2 +Rabbah, but David remained in Jerusalem. + +3 + +One evening David got up from his bed and +strolled around on the roof of the palace. And +from the roof he saw a woman bathing—a very +So David sent and inquired +beautiful woman. +about the woman, and he was told, “This is Bath- + and the wife of +sheba, the daughter of Eliam +4 +Uriah the Hittite.” + + e + +Then David sent messengers to get her, and +when she came to him, he slept with her. (Now +she had just purified herself from her unclean- +And the woman +ness.) Then she returned home. +conceived and sent word to David, saying, “I am +6 +pregnant.” + +5 + +At this, David sent orders to Joab: “Send me + +7 +Uriah the Hittite.” So Joab sent him to David. + +8 + +When Uriah came to him, David asked how Joab +and the troops were doing and how the war was +going. +Then he said to Uriah, “Go down to your +house and wash your feet.” +9 + +2 Samuel 11:24 | 289 + +“Haven’t you just arrived from a journey?” David +11 +asked Uriah. “Why didn’t you go home?” + +f + +Uriah answered, “The ark and Israel and Judah +are dwelling in tents, + and my master Joab and +his soldiers are camped in the open field. How +can I go to my house to eat and drink and sleep +with my wife? As surely as you live, and as your +12 +soul lives, I will not do such a thing!” + +“Stay here one more day,” David said to Uriah, +“and tomorrow I will send you back.” So Uriah +13 +stayed in Jerusalem that day and the next. + +Then David invited Uriah to eat and drink with +him, and he got Uriah drunk. And in the evening +Uriah went out to lie down on his cot with his +David Arranges Uriah’s Death +master’s servants, but he did not go home. +14 + +15 +The next morning David wrote a letter to Joab +In the letter he wrote: +and sent it with Uriah. +“Put Uriah at the front of the fiercest battle; then +withdraw from him, so that he may be struck +16 +down and killed.” + +17 + +So as Joab besieged the city, he assigned Uriah +to a place where he knew the strongest enemy +soldiers were. +And when the men of the city +came out and fought against Joab, some of Da- +18 +vid’s servants fell, and Uriah the Hittite also died. +19 + +20 + +Joab sent to David a full account of the battle +and instructed the messenger, “When you +have finished giving the king a full account of the +battle, +if the king’s anger flares, he may ask +you, ‘Why did you get so close to the city to fight? +Did you not realize they would shoot from atop +Who struck Abimelech son of Je- +the wall? +rubbesheth +? Was it not a woman who dropped +an upper millstone on him from the wall, so that +he died in Thebez? Why did you get so close to +the wall?’ + +21 + g + +If he asks you this, then you are to say, ‘Your serv- +22 +ant Uriah the Hittite is dead as well.’ + +” +23 + +So Uriah left the palace, and a gift from the king +But Uriah slept at the door of the +followed him. +palace with all his master’s servants; he did not +10 +go down to his house. +a 16 + + b 16 Shobach +And David was told, “Uriah did not go home.” + +the River + +Shophach + +Hebrew + +f 11 + +also 1 Chronicles 19:18); Hebrew +Chronicles 3:5. + +Or + +horsemen +staying at Sukkoth + + is a variant of + +d 1 +g 21 Jerubbesheth +Literally + +So the messenger set out and reported to Da- +The mes- +vid all that Joab had sent him to say. +senger said to David, “The men overpowered us +and came out against us in the field, but we drove +Then the +them back to the entrance of the gate. +archers shot at your servants from the wall, and +some of the king’s servants were killed. And your +c 18 +servant Uriah the Hittite is dead as well.” +Ammiel +e 3 Eliam +; see 1 Chronicles 19:16. + +24 + +Jerubbaal + +At the turn of the year + +Some LXX manuscripts (see + is a variant of +; see 1 +, that is, Gideon. + + is also known as + + 290 | 2 Samuel 11:25 + +25 + +Then David told the messenger, “Say this to +Joab: ‘Do not let this matter upset you, for +the sword devours one as well as another. +Strengthen your attack against the city and de- +David Marries Bathsheba +molish it.’ Encourage him with these words.” +26 + +27 + +When Uriah’s wife heard that her husband was +dead, she mourned for him. +And when the time +of mourning was over, David had her brought to +his house, and she became his wife and bore him +a son. + +But the thing that David had done was evil in the +Nathan Rebukes David (Psalm 51:1–19) +sight of the LORD. + +12 + +3 + +2 + +Then the LORD sent Nathan to David, +and when he arrived, he said, “There +were two men in a certain city, one rich and the +The rich man had a great number of +other poor. +but the poor man had nothing +sheep and cattle, +except one small ewe lamb that he had bought. +He raised it, and it grew up with him and his chil- +dren. It shared his food and drank from his cup; + and was like a daughter to +it slept in his arms +4 +him. + + a + +Now a traveler came to the rich man, who +refrained from taking one of his own sheep or +cattle to prepare for the traveler who had come +to him. Instead, he took the poor man’s lamb and +5 +prepared it for his guest.” + +David burned with anger against the man and +said to Nathan: “As surely as the LORD lives, the +Because he +man who did this deserves to die! +has done this thing and has shown no pity, he +7 +must pay for the lamb four times over.” + +6 + +8 + +Then Nathan said to David, “You are that man! +This is what the LORD, the God of Israel, says: ‘I +anointed you king over Israel, and I delivered +I gave your master’s +you from the hand of Saul. +house to you and your master’s wives into your +arms. I gave you the house of Israel and Judah, +and if that was not enough, I would have given +9 +you even more. + +Why then have you despised the command +of the LORD by doing evil in His sight? You put +Uriah the Hittite to the sword and took his wife +as your own. You have slain him with the sword +Now, therefore, the sword +of the Ammonites. +in his bosom +a 3 +will never depart from your house, because you +c 16 + +b 14 +in sackcloth + +10 + +Hebrew +DSS and LXX; MT does not include + +; also in verse 8 + +DSS; MT +. + +have despised Me and have taken the wife of +11 +Uriah the Hittite to be your own.’ + +12 + +This is what the LORD says: ‘I will raise up ad- +versity against you from your own house. Before +your very eyes I will take your wives and give +them to another, and he will lie with them in +You have acted in secret, but +broad daylight. +I will do this thing in broad daylight before all +David’s Loss and Repentance +Israel.’ +13 + +” + +Then David said to Nathan, “I have sinned + +against the LORD.” + +14 +“The LORD has taken away your sin,” Nathan re- +Nevertheless, because +plied. “You will not die. +b +by this deed you have shown utter contempt for +the word of the LORD, + the son born to you will +15 +surely die.” + +16 + +After Nathan had gone home, the LORD struck +the child that Uriah’s wife had borne to David, +and he became ill. +David pleaded with God for +the boy. He fasted and went into his house and +17 +spent the night lying in sackcloth + on the ground. +The elders of his household stood beside him +to help him up from the ground, but he was un- +18 +willing and would not eat anything with them. + + c + +On the seventh day the child died. But David’s +servants were afraid to tell him that the child was +dead, for they said, “Look, while the child was +alive, we spoke to him, and he would not listen to +us. So how can we tell him the child is dead? He +19 +may even harm himself.” + +When David saw that his servants were whis- +pering to one another, he perceived that the child +was dead. So he asked his servants, “Is the child +dead?” +20 +“He is dead,” they replied. + +Then David got up from the ground, washed +and anointed himself, changed his clothes, and +went into the house of the LORD and worshiped. +Then he went to his own house, and at his re- +21 +quest they set food before him, and he ate. + +“What is this you have done?” his servants +asked. “While the child was alive, you fasted and +22 +wept, but when he died, you got up and ate.” + +David answered, “While the child was alive, I +fasted and wept, for I said, ‘Who knows? The +LORD may be gracious to me and let him live.’ + +you have brought utter contempt from the enemies of the LORD + + 23 + +5 + +2 Samuel 13:17 | 291 + +But now that he is dead, why should I fast? Can +I bring him back again? I will go to him, but he +Solomon’s Birth +will not return to me.” +24 + +Then David comforted his wife Bathsheba, and +he went to her and lay with her. So she gave birth +to a son, and they + + named him Solomon. + +25 + + a + +Now the LORD loved the child +and sent word +through Nathan the prophet to name him Je- +The Capture of Rabbah (1 Chronicles 20:1–3) +didiah because the LORD loved him. +26 + +b + +Meanwhile, Joab fought against Rabbah of the +27 +Ammonites and captured the royal fortress. +Then Joab sent messengers to David to say, “I +have fought against Rabbah and have captured +the water supply of the city. +Now, therefore, +assemble the rest of the troops, lay siege to the +city, and capture it. Otherwise I will capture the +29 +city, and it will be named after me.” + +28 + +c + +d + +So David assembled all the troops and went to +30 +Rabbah; and he fought against it and captured it. +Then he took the crown from the head of their +king. + and was set +with precious stones, and it was placed on Da- +vid’s head. And David took a great amount of +31 +plunder from the city. + + It weighed a talent of gold + + e + +f + +David brought out the people who were there +g + iron picks, and + +and put them to work with saws, +axes, and he made them work at the brick kilns. +He did the same to all the Ammonite cities. Then +Amnon and Tamar +David and all his troops returned to Jerusalem. + +13 + +2 + +After some time, David’s son Amnon fell +in love with Tamar, the beautiful sister of +Amnon was sick with +David’s son Absalom. +frustration over his sister Tamar, for she was a +virgin, and it seemed implausible for him to do +3 +anything to her. + +h + +4 + +Now Amnon had a friend named Jonadab, the +son of David’s brother Shimeah. + Jonadab was a +and he asked Amnon, “Why +very shrewd man, +are you, the son of the king, so depressed morn- +ing after morning? Won’t you tell me?” + +b 25 + +she +and have captured the city of waters + +Amnon replied, “I am in love with Tamar, my +he +a 24 +brother Absalom’s sister.” +c 27 +Literally +put them under saws +Shimei +Shimea + +Or +Or + +d 30 + + or + +Jonadab told him, “Lie down on your bed and +pretend you are ill. When your father comes to +see you, say to him, ‘Please let my sister Tamar +come and give me something to eat. Let her pre- +pare it in my sight so I may watch her and eat it +6 +from her hand.’ + +” + +So Amnon lay down and feigned illness. When +the king came to see him, Amnon said, “Please let +my sister Tamar come and make a couple of +cakes in my sight, so that I may eat from her +7 +hand.” + +Then David sent word to Tamar at the palace: +“Please go to the house of Amnon your brother +8 +and prepare a meal for him.” + +9 + +So Tamar went to the house of her brother Am- +non, who was lying down. She took some dough, +kneaded it, made cakes in his sight, and baked +Then she brought the pan and set it down +them. +before him, but he refused to eat. “Send everyone +10 +away!” said Amnon. And everyone went out. + +Then Amnon said to Tamar, “Bring the food +into the bedroom, so that I may eat it from your +hand.” + +11 + +Tamar took the cakes she had made and went to +And when she +her brother Amnon’s bedroom. +had brought them to him to eat, he took hold of +12 +her and said, “Come lie with me, my sister!” + +13 + +“No, my brother!” she cried. “Do not violate +me, for such a thing should never be done in Is- +rael. Do not do this disgraceful thing! +Where +could I ever take my shame? And you would be +like one of the fools in Israel! Please speak to the +14 +king, for he will not withhold me from you.” + +But Amnon refused to listen to her, and being + +15 +stronger, he violated her and lay with her. + +Then Amnon hated Tamar with such intensity +that his hatred was greater than the love he pre- +16 +viously had. “Get up!” he said to her. “Be gone!” + +“No,” she replied, “sending me away is worse +than this great wrong you have already done to +me!” + +17 + +Instead, he +But he refused to listen to her. +called to his attendant and said, “Throw this +woman out and bolt the door behind her!” + +to name him Jedidiah because of the LORD + +Jedidiah + +beloved of the LORD + +from the head of Milcom +; +e 30 A talent + + means + +Or +and he made them pass through the brick kilns. +f 31 +Ammonites; see Leviticus 18:21 and 1 Kings 11:7. + +g 31 + +. Milcom, also called Molech, was god of the + +h 3 Shimeah + + is approximately 75.4 pounds or 34.2 kilograms of gold. + is a variant + +Literally + +, and + +; see 1 Samuel 16:9, 2 Samuel 21:21, and 1 Chronicles 2:13. + +Shammah +Literally +, + +of + + 292 | 2 Samuel 13:18 + +18 + +31 + +a + +So Amnon’s attendant threw her out and +bolted the door behind her. Now Tamar was + because this is +wearing a robe of many colors, +And + king’s virgin daughters wore. +what the +Tamar put ashes on her head and tore her robe. +And putting her hand on her head, she went +20 +away crying aloud. + +19 + +Her brother Absalom said to her, “Has your +brother Amnon been with you? Be quiet for now, +my sister. He is your brother. Do not take this +thing to heart.” + +So Tamar lived as a desolate woman in the house +21 +of her brother Absalom. + +b + +22 + +When King David heard all this, he was furi- +ous. +And Absalom never said a word to Am- +non, either good or bad, because he hated Amnon +Absalom’s Revenge on Amnon +for violating his sister Tamar. +23 + +Two years later, when Absalom’s sheepshear- +24 +ers were at Baal-hazor near Ephraim, he invited +And he went to the king +all the sons of the king. +and said, “Your servant has just hired shearers. +Will the king and his servants please come with +25 +me?” + +“No, my son,” the king replied, “we should not +all go, or we would be a burden to you.” Although +Absalom urged him, he was not willing to go, but +26 +gave him his blessing. + +“If not,” said Absalom, “please let my brother + +Amnon go with us.” +27 +“Why should he go with you?” the king asked. + +c + +But Absalom urged him, so the king sent Am- + +28 +non and the rest of his sons. + +Now Absalom had ordered his young men, +“Watch Amnon until his heart is merry with +wine, and when I order you to strike Amnon +down, you are to kill him. Do not be afraid. Have +I not commanded you? Be courageous and val- +29 +iant!” + +So Absalom’s young men did to Amnon just as +Absalom had ordered. Then all the other sons of +30 +the king got up, and each one fled on his mule. + +Then the king stood up, tore his clothes, and +lay down on the ground. And all his servants +32 +stood by with their clothes torn. + +But Jonadab, the son of David’s brother +Shimeah, spoke up: “My lord must not think they +have killed all the sons of the king, for only Am- +non is dead. In fact, Absalom has planned this +33 +since the day Amnon violated his sister Tamar. +So now, my lord the king, do not take to heart +the report that all the sons of the king are dead. +Absalom Flees to Geshur +Only Amnon is dead.” +34 + +Meanwhile, Absalom had fled. When the young +d +man standing watch looked up, he saw many +people coming down the road west of him, +along the side of the hill. And the watchman went +and reported to the king, “I see men coming from +the direction of Horonaim, along the side of the +35 +hill.” + + e + +So Jonadab said to the king, “Look, the sons of +the king have arrived! It is just as your servant +36 +said.” + +And as he finished speaking, the sons of the +king came in, wailing loudly. Then the king and +37 +all his servants also wept very bitterly. + +Now Absalom fled and went to Talmai son +of Ammihud, the king of Geshur. But David +38 +mourned for his son every day. + + f +After Absalom had fled and gone to Geshur, he +g +stayed there three years. +longed to go to Absalom, +Absalom’s Return to Jerusalem +soled over Amnon’s death. + +And King David + for he had been con- + +39 + +14 + +2 + +Now Joab son of Zeruiah perceived that +the king’s heart longed for Absalom. +So +Joab sent to Tekoa to bring a wise woman from +there. He told her, “Please pretend to be a +mourner; put on clothes for mourning and do not +anoint yourself with oil. Act like a woman who +Then go +has mourned for the dead a long time. +to the king and speak these words to him.” And +4 +Joab put the words in her mouth. + +3 + +While they were on the way, a report reached +David: “Absalom has struck down all the sons of +b 21 +a robe with long sleeves +a 18 +the king; not one of them is left!” +because he loved him, since he was his firstborn. +d 34 +e 34 +king + +ceased to go out after Absalom + +behind him +g 39 + +; see also Genesis 37:3. + +c 27 + +Or + +When the woman from Tekoa went to the king, +she fell facedown in homage and said, “Help me, +O king!” + +But he would not punish his son Amnon, +And Absalom prepared a feast fit for a king. +And the spirit of the + +DSS and LXX include +And the watchman . . . . f 39 + +LXX and Vulgate include + +Or + +Or + +LXX; Hebrew does not include + +MT; DSS and LXX + + 5 + +17 + +2 Samuel 14:29 | 293 + +“What troubles you?” the king asked her. + +6 + +“Indeed,” she said, “I am a widow, for my hus- +band is dead. +And your maidservant had two +sons who were fighting in the field with no one +7 +to separate them, and one struck the other and +Now the whole clan has risen up +killed him. +against your maidservant and said, ‘Hand over +the one who struck down his brother, that we +may put him to death for the life of the brother +whom he killed. Then we will cut off the heir as +well!’ So they would extinguish my one remain- +ing ember by not preserving my husband’s name +8 +or posterity on the earth.” + +“Go home,” the king said to the woman, “and I + +9 +will give orders on your behalf.” + +But the woman of Tekoa said to the king, “My +lord the king, may any blame be on me and on my +father’s house, and may the king and his throne +10 +be guiltless.” + +“If anyone speaks to you,” said the king, “bring + +11 +him to me, and he will not trouble you again!” + +“Please,” she replied, “may the king invoke the +LORD your God to prevent the avenger of blood +from increasing the devastation, so that my son +may not be destroyed!” + +“As surely as the LORD lives,” he vowed, “not a +12 +hair of your son’s head will fall to the ground.” + +Then the woman said, “Please, may your serv- + +ant speak a word to my lord the king?” +13 +“Speak,” he replied. + +14 + +The woman asked, “Why have you devised a +thing like this against the people of God? When +the king says this, does he not convict himself, +since he has not brought back his own banished +For we will surely die and be like water +son? +poured out on the ground, which cannot be re- +covered. Yet God does not take away a life, but He +devises ways that the banished one may not be +15 +cast out from Him. + +Now therefore, I have come to present this +matter to my lord the king because the people +have made me afraid. Your servant thought, ‘I +will speak to the king. Perhaps he will grant the +For the king will +request of his maidservant. +hear and deliver his maidservant from the hand +of the man who would cut off both me and my +a 17 +son from God’s inheritance.’ + +b 26 200 shekels + +Angel + +16 + + a + +And now your servant says, ‘May the word of +my lord the king bring me rest, for my lord the +king is able to discern good and evil, just like the +angel + of God. May the LORD your God be with +18 +you.’ + +” + +Then the king said to the woman, “I am going +to ask you something; do not conceal it from me!” +19 +“Let my lord the king speak,” she replied. + +So the king asked, “Is the hand of Joab behind + +all this?” + +20 + +The woman answered, “As surely as you live, my +lord the king, no one can turn to the right or to +the left from anything that my lord the king says. +Yes, your servant Joab is the one who gave me or- +ders; he told your maidservant exactly what to +say. +Joab your servant has done this to bring +about this change of affairs, but my lord has wis- +dom like the wisdom of the angel of God, to know +21 +everything that happens in the land.” + +Then the king said to Joab, “I hereby grant this +22 +request. Go, bring back the young man Absalom.” + +Joab fell facedown in homage and blessed the +king. “Today,” said Joab, “your servant knows +that he has found favor in your eyes, my lord the +23 +king, because the king has granted his request.” +24 + +So Joab got up, went to Geshur, and brought +Absalom to Jerusalem. +But the king added, “He +may return to his house, but he must not see my +face.” So Absalom returned to his own house, but +25 +he did not see the face of the king. + +26 + +Now there was not a man in all Israel as hand- +some and highly praised as Absalom. From the +sole of his foot to the top of his head, he did not +have a single flaw. +And when he cut the hair of +his head—he shaved it every year because his +hair got so heavy—he would weigh it out to be +two hundred shekels, + according to the royal +27 +standard. + +b + +Three sons were born to Absalom, and a +daughter named Tamar, who was a beautiful +Absalom Reconciled to David +woman. +28 + +29 + +Now Absalom lived in Jerusalem two years +Then he +without seeing the face of the king. +sent for Joab to send him to the king, but Joab re- +fused to come to him. + +So Absalom sent a second time, but Joab still +would not come. + +Or + +; also in verse 20 + + is approximately 5 pounds or 2.3 kilograms of hair. + + 294 | 2 Samuel 14:30 + +30 + +10 + +Then Absalom said to his servants, “Look, +Joab’s field is next to mine, and he has barley +there. Go and set it on fire!” +31 +And Absalom’s servants set the field on fire. + +a + +Then Joab came to Absalom’s house and de- +manded, “Why did your servants set my field on +32 +fire?” + +“Look,” said Absalom, “I sent for you and said, +‘Come here. I want to send you to the king to ask: +Why have I come back from Geshur? It would be +better for me if I were still there.’ So now, let me +see the king’s face, and if there is iniquity in me, +33 +let him kill me.” + +So Joab went and told the king, and David sum- +moned Absalom, who came to him and bowed +facedown before him. Then the king kissed Absa- +Absalom’s Conspiracy +lom. + +15 + +Some time later, Absalom provided for +himself a chariot with horses and fifty +He would get up early +men to run ahead of him. +and stand beside the road leading to the city gate. + +2 + +Whenever anyone had a grievance to bring be- +fore the king for a decision, Absalom would call +out and ask, “What city are you from?” And +if he replied, “Your servant is from one of the +Absalom would say, “Look, +tribes of Israel,” +your claims are good and right, but the king has +4 +no deputy to hear you.” + +3 + +And he would add, “If only someone would ap- +point me judge in the land, then everyone with a +grievance or dispute could come to me, and I +5 +would give him justice.” + +Also, when anyone approached to bow down to +6 +him, Absalom would reach out his hand, take +hold of him, and kiss him. +Absalom did this to all +the Israelites who came to the king for justice. In +7 +this way he stole the hearts of the men of Israel. + + b + +After four + + years had passed, Absalom said to +8 +the king, “Please let me go to Hebron to fulfill a +vow I have made to the LORD. +For your servant +made a vow while dwelling in Geshur of Aram, +saying: ‘If indeed the LORD brings me back to Je- +9 +” +rusalem, I will worship the LORD in Hebron.’ + + c + +Then Absalom sent spies throughout the tribes +of Israel with this message: “When you hear the +sound of the horn, you are to say, ‘Absalom +11 +reigns in Hebron!’ + +” + +12 + +Two hundred men from Jerusalem accompa- +nied Absalom. They had been invited as guests +and they went along innocently, for they knew +While Absalom was +nothing about the matter. +offering the sacrifices, he sent for Ahithophel the +Gilonite, David’s counselor, to come from his +hometown of Giloh. + +So the conspiracy gained strength, and Absa- +David Flees Jerusalem +lom’s following kept increasing. +(Psalm 3:1–8) + +13 + +Then a messenger came to David and reported, +“The hearts of the men of Israel are with Absa- +14 +lom.” + +And David said to all the servants with him in +Jerusalem, “Arise and let us flee, or we will not +escape from Absalom! We must leave quickly, or +he will soon overtake us, heap disaster on us, and +15 +put the city to the sword.” + +The king’s servants replied, “Whatever our + +16 +lord the king decides, we are your servants.” + +Then the king set out, and his entire household +followed him. But he left behind ten concubines +17 +to take care of the palace. + +18 + +So the king set out with all the people follow- +and all +ing him. He stopped at the last house, +his servants marched past him—all the Chere- +thites and Pelethites, and six hundred Gittites +19 +who had followed him from Gath. + +20 + +Then the king said to Ittai the Gittite, “Why +should you also go with us? Go back and stay +with the new king, since you are both a foreigner +In fact, you +and an exile from your homeland. +arrived only yesterday; should I make you wan- +der around with us today while I do not know +where I am going? Go back and take your broth- +ers with you. May the LORD show you loving +21 +devotion and faithfulness. + +” + +d + +But Ittai answered the king, “As surely as the +LORD lives, and as my lord the king lives, wher- +ever my lord the king may be, whether it means +life or death, there will your servant be!” + +“Go in peace,” said the king. So Absalom got up +and went to Hebron. +a 30 +b 7 +set your field on fire.” +LXX includes +in Hebron +d 20 + +May loving devotion and faithfulness be with you. + +forty + +c 8 + +So the servants of Joab came to him with their clothes torn and said to him, “The servants of Absalom have + +include + +. + +Syriac and some LXX manuscripts; Hebrew +LXX; Hebrew + +Some LXX manuscripts; Hebrew does not + + 22 + +35 + +2 Samuel 16:8 | 295 + +“March on then,” said David to Ittai. So Ittai the +Gittite marched past with all his men and all the +23 +little ones who were with him. + +Everyone in the countryside was weeping +loudly as all the people passed by. And as the king +crossed the Kidron Valley, all the people also +24 +passed toward the way of the wilderness. + +Zadok was also there, and all the Levites with +him were carrying the ark of the covenant of God. +And they set down the ark of God, and Abiathar + until all the people had passed +offered sacrifices +25 +out of the city. + + a + +Then the king said to Zadok, “Return the ark of +God to the city. If I find favor in the eyes of the +LORD, He will bring me back and let me see both +But if He +it and His dwelling place again. +should say, ‘I do not delight in you,’ then here I +am; let Him do to me whatever seems good to +27 +Him.” + +26 + + b + +28 + +The king also said to Zadok the priest, “Are you +not a seer? + Return to the city in peace—you +c +with your son Ahimaaz, and Abiathar with his +son Jonathan. +See, I will wait at the fords of +the wilderness until word comes from you to in- +29 +form me.” + +So Zadok and Abiathar returned the ark of God + +David Weeps at the Mount of Olives (Ps. 63) +to Jerusalem and stayed there. +30 + +But David continued up the Mount of Olives, +weeping as he went up. His head was covered, +and he was walking barefoot. And all the people +with him covered their heads and went up, weep- +31 +ing as they went. + +Now someone told David: “Ahithophel is + +among the conspirators with Absalom.” + +So David pleaded, “O LORD, please turn the coun- +32 +sel of Ahithophel into foolishness!” + +When David came to the summit, where he +used to worship God, Hushai the Archite was +there to meet him with his robe torn and dust on +33 +his head. + +34 +David said to him, “If you go on with me, you +But you can thwart the +will be a burden to me. +counsel of Ahithophel for me if you return to the +city and say to Absalom: ‘I will be your servant, +my king; in the past I was your father’s servant, +c 27 +b 27 +a 24 +but now I will be your servant.’ +two sons with you + +Abiathar went up + +Behold, + +36 + +Will not Zadok and Abiathar the priests be +there with you? Report to them everything you +Indeed, their two +hear from the king’s palace. +sons, Ahimaaz son of Zadok and Jonathan son of +Abiathar, are there with them. Send them to me +37 +with everything you hear.” + +So David’s friend Hushai arrived in Jerusalem + +David and Ziba +just as Absalom was entering the city. + +16 + +When David had gone a little beyond +the servant of +the summit, Ziba +Mephibosheth was there to meet him. He had a +pair of saddled donkeys loaded with two hun- +dred loaves of bread, a hundred clusters of rai- +2 +sins, a hundred summer fruits, and a skin of wine. + +“Why do you have these?” asked the king. + +Ziba replied, “The donkeys are for the king’s +household to ride, the bread and summer fruit +are for the young men to eat, and the wine is to +refresh those who become exhausted in the wil- +3 +derness.” + +“Where is your master’s grandson?” asked the + +king. + +And Ziba answered, “Indeed, he is staying in +Jerusalem, for he has said, ‘Today, the house of +Israel will restore to me the kingdom of my +4 +grandfather.’ + +” + +So the king said to Ziba, “All that belongs to + +Mephibosheth is now yours!” + +“I humbly bow before you,” said Ziba. “May I find +Shimei Curses David +favor in your eyes, my lord the king!” +5 + +As King David approached Bahurim, a man from +the family of the house of Saul was just coming +out. His name was Shimei son of Gera, and as he +approached, he kept yelling out curses. +He +threw stones at David and at all the servants of +the king, though the troops and all the mighty +7 +men were on David’s right and left. + +6 + +8 + +And as he yelled curses, Shimei said, “Get out, +get out, you worthless man of bloodshed! +The +LORD has paid you back for all the blood of the +house of Saul, in whose place you have reigned, +and the LORD has delivered the kingdom into the +hand of your son Absalom. See, you have come to +ruin because you are a man of bloodshed!” + +your son Ahimaaz and Jonathan son of Abiathar, your + +Or + +Hebrew; LXX + +Literally + + 296 | 2 Samuel 16:9 + +9 + +Then Abishai son of Zeruiah said to the king, +“Why should this dead dog curse my lord the +10 +king? Let me go over and cut off his head!” + +But the king replied, “What have I to do with +you, O sons of Zeruiah? If he curses me because +the LORD told him, ‘Curse David,’ who can ask, +11 +‘Why did you do this?’ + +” + +Then David said to Abishai and to all his +servants, “Behold, my own son, my own flesh and +blood, seeks my life. How much more, then, this +Benjamite! Leave him alone and let him curse +Perhaps the +me, for the LORD has told him so. +LORD will see my affliction and repay me with +13 +good for the cursing I receive today.” + +12 + +So David and his men proceeded along the +road as Shimei went along the ridge of the hill +opposite him. As Shimei went, he yelled curses, +a +Finally, +threw stones, and flung dust at David. +the king and all the people with him arrived, +The Counsel of Ahithophel and Hushai +exhausted. And there he refreshed himself. +15 + +14 + +Then Absalom and all the men of Israel came +16 +to Jerusalem, and Ahithophel was with him. +And David’s friend Hushai the Archite went to +Absalom and said to him, “Long live the king! +17 +Long live the king!” + +“Is this the loyalty you show your friend?” +Absalom replied. “Why did you not go with your +18 +friend?” + +19 + +“Not at all,” Hushai answered. “For the one +chosen by the LORD, by this people, and by all the +men of Israel—his I will be, and with him I will +Furthermore, whom should I serve if +remain. +not his son? As I served in your father’s presence, +20 +so also I will serve in yours.” + +Then Absalom said to Ahithophel, “Give me + +21 +counsel. What should we do?” + +Ahithophel replied, “Sleep with your father’s +concubines, whom he has left to take care of the +palace. When all Israel hears that you have be- +come a stench to your father, then the hands of +22 +all who are with you will be strengthened.” + +Such was the regard that both David and Absa- +Hushai Counters Ahithophel’s Advice +lom had for Ahithophel’s advice. + +17 + +Furthermore, Ahithophel said to Absa- +2 +lom, “Let me choose twelve thousand +I +men and set out tonight in pursuit of David. +will attack him while he is weak and weary; I will +throw him into a panic, and all the people with +3 +him will flee; I will strike down only the king +and bring all the people back to you as a bride +returning to her husband. You seek the life of + then all the people will be at +only one man; +4 +peace.” + + b + +This proposal seemed good to Absalom and all + +5 +the elders of Israel. + +Then Absalom said, “Summon Hushai the +Archite as well, and let us hear what he too has +6 +to say.” + +So Hushai came to Absalom, who told him, +“Ahithophel has spoken this proposal. Should we +7 +carry it out? If not, what do you say?” + +Hushai replied, “This time the advice of Ahitho- + +8 +phel is not sound.” + +9 + +He continued, “You know your father and his +men. They are mighty men, and as fierce as a wild +bear robbed of her cubs. Moreover, your father is +a man of war who will not spend the night with +Surely by now he is hiding in a cave +the troops. +c +or some other location. If some of your troops fall +first, + whoever hears of it will say, ‘There has +been a slaughter among the troops who follow +Absalom.’ +Then even the most valiant soldier +with the heart of a lion will melt with fear, be- +cause all Israel knows that your father is a +11 +mighty man who has valiant men with him. + +10 + +Instead, I advise that all Israel from Dan to +Beersheba—a multitude like the sand on the sea- +12 +shore—be gathered to you, and that you yourself +Then we will attack Da- +lead them into battle. +vid wherever we find him, and we will descend +on him like dew on the ground. And of all the men +13 +with him, not even one will remain. + +So they pitched a tent for Absalom on the roof, +and he slept with his father’s concubines in the +23 +sight of all Israel. + +If he retreats to a city, all Israel will bring ropes +to that city, and we will drag it down to the valley +14 +until not even a pebble can be found there.” + +Now in those days the advice of Ahithophel +a 14 +was like the consultation of the word of God. +everyone returns except the man you seek, + +arrived at the Jordan +c 9 + +b 3 + +If he should attack your troops first + +Then Absalom and all the men of Israel said, +“The advice of Hushai the Archite is better than + +and bring all the people back to you. When + +Some LXX manuscripts + +LXX; see also DSS; MT + +Or + + that of Ahithophel.” For the LORD had purposed +to thwart the good counsel of Ahithophel in or- +Hushai’s Warning Saves David (Ps. 55:1–23) +der to bring disaster on Absalom. +15 + +16 + +So Hushai told Zadok and Abiathar, the priests, +“This is what Ahithophel has advised Absalom +and the elders of Israel, and this is what I have +Now send quickly and tell David, ‘Do +advised. +not spend the night at the fords of the wilderness, +but be sure to cross over. Otherwise the king and +17 +all the people with him will be swallowed up.’ + +” + +18 + +Now Jonathan and Ahimaaz were staying at +En-rogel, where a servant girl would come and +pass along information to them. They in turn +would go and inform King David, for they dared +But a young man +not be seen entering the city. +did see them and told Absalom. So the two left +quickly and came to the house of a man in Ba- +hurim. He had a well in his courtyard, and they +Then the man’s wife took +climbed down into it. +a covering, spread it over the mouth of the well, +and scattered grain over it so nobody would +20 +know a thing. + +19 + +When Absalom’s servants came to the woman +at the house, they asked, “Where are Ahimaaz +and Jonathan?” + +“They have crossed over the brook,” she replied. +The men searched but did not find them, so they +21 +returned to Jerusalem. + +After the men had gone, Ahimaaz and Jonathan +climbed up out of the well and went to inform +King David, saying, “Get up and cross over the +river at once, for Ahithophel has given this advice +22 +against you.” + +So David and all the people with him got up +and crossed the Jordan. By daybreak, there was +23 +no one left who had not crossed the Jordan. + +When Ahithophel saw that his advice had not +been followed, he saddled his donkey and set out +for his house in his hometown. He put his affairs +in order and hanged himself. So he died and was +24 +buried in his father’s tomb. + +Then David went to Mahanaim, and Absalom +25 +crossed the Jordan with all the men of Israel. +Absalom had appointed Amasa over the army + +b 25 + +2 Samuel 18:8 | 297 + +a + + b + +c + + the Ishmaelite + the daughter of Nahash + +in place of Joab. Amasa was the son of a man + who had married +named Ithra, +26 + and sister of +Abigail, +So the Israelites +Zeruiah the mother of Joab. +27 +and Absalom camped in the land of Gilead. + + d + +e + +28 + +When David came to Mahanaim, he was met by +Shobi son of Nahash from Rabbah of the Ammo- +nites, Machir son of Ammiel from Lo-debar, and +They +Barzillai the Gileadite from Rogelim. +brought beds, basins, and earthen vessels, as +well as wheat, barley, flour, roasted grain, beans, +honey, curds, sheep, and cheese from +lentils, +the herd for David and his people to eat. For they +said, “The people have become hungry, ex- +Absalom Killed +hausted, and thirsty in the wilderness.” + +29 + +18 + +2 + +Then David reviewed his troops and ap- +pointed over them commanders of thou- +sands and of hundreds. +He sent out the troops, +a third under Joab, a third under Joab’s brother +Abishai son of Zeruiah, and a third under Ittai the +Gittite. And the king said to the troops, “I will +3 +surely march out with you as well.” + +But the people pleaded, “You must not go out! +For if we have to flee, they will not care about us. +Even if half of us die, they will not care. But you + It is better now if +are worth ten thousand of us. +4 +you support us from the city.” + +f + +“I will do whatever seems best to you,” the king +replied. So he stood beside the gate, while all +the troops marched out by hundreds and by +5 +thousands. + +Now the king had commanded Joab, Abishai, +and Ittai, “Treat the young man Absalom gently +for my sake.” And all the people heard the king’s +orders to each of the commanders regarding +6 +Absalom. + +7 + +So David’s army marched into the field to +engage Israel, and the battle took place in the for- +There the people of Israel were +est of Ephraim. +defeated by David’s servants, and the slaughter +The +was great that day—twenty thousand men. +battle spread over the whole countryside, and +that day the forest devoured more people than +the sword. + +8 + +a 25 Ithra + +Jether + +Israelite + +e 28 +LXX manuscripts + + is a variant of + +c 25 + +Abigal +; see 1 Kings 2:5. + +Abigail +d 25 +roasted seeds + +of Jesse +f 3 + +Some LXX manuscripts (see also 1 Chronicles 2:17); MT and other + +, a variant of +Most LXX manuscripts and Syriac; Hebrew includes + +Or + +care; for now there are ten thousand like us + +Or +. + +; see DSS and 1 Chronicles 2:13–16 +Two Hebrew manuscripts, some LXX manu- + +scripts, and Vulgate; most Hebrew manuscripts + + 298 | 2 Samuel 18:9 + +9 + +21 + +a + +Now Absalom was riding on his mule when he +met the servants of David, and as the mule went + Absa- +under the thick branches of a large oak, +lom’s head was caught fast in the tree. The mule +under him kept going, so that he was suspended +When one of the men saw this, he +in midair. +told Joab, “I just saw Absalom hanging in an oak +11 +tree!” + +10 + +“You just saw him!” Joab exclaimed. “Why did +you not strike him to the ground right there? I + and +would have given you ten shekels of silver +12 +a warrior’s belt!” + c + + b + +The man replied, “Even if a thousand shekels +of silver + were weighed out into my hands, I +would not raise my hand against the son of the +king. For we heard the king command you and +Abishai and Ittai, ‘Protect the young man Absa- +lom for my sake. +If I had jeopardized my own +—and nothing is hidden from the king—you +life +14 +would have abandoned me.” + +13 + +’ + + e + +d + +But Joab declared, “I am not going to wait like +this with you!” And he took three spears in his +hand and thrust them through the heart of Absa- +And +lom while he was still alive in the oak tree. +ten young men who carried Joab’s armor sur- +16 +rounded Absalom, struck him, and killed him. + +15 + +17 + +Then Joab blew the ram’s horn, and the troops +broke off their pursuit of Israel because Joab had +They took Absalom, cast him +restrained them. +into a large pit in the forest, and piled a huge +mound of stones over him. Meanwhile, all the +18 +Israelites fled, each to his home. + +During his lifetime, Absalom had set up for +himself a pillar in the King’s Valley, for he had +said, “I have no son to preserve the memory of +my name.” So he gave the pillar his name, and to +David Mourns for Absalom +this day it is called Absalom’s Monument. +19 + +Then Ahimaaz son of Zadok said, “Please let +me run and tell the king the good news that the +20 +LORD has avenged him of his enemies.” + +But Joab replied, “You are not the man to take +good news today. You may do it another day, but +you must not do so today, because the king’s son +is dead.” +a 9 + +large terebinth + +very great tree + +Or + +c 12 1,000 shekels + + or + +So Joab said to a Cushite, “Go, tell the king what +you have seen.” The Cushite bowed to Joab and +22 +took off running. + +Ahimaaz son of Zadok, however, persisted and +said to Joab, “No matter what, please let me also +run behind the Cushite!” + +“My son,” Joab replied, “why do you want to run, +23 +since you will not receive a reward?” + +“No matter what, I want to run!” he replied. + +“Then run!” Joab told him. + +  f + +So Ahimaaz ran by way of the plain +24 +the Cushite. + + and outran + +Now David was sitting between the two gates +when the watchman went up to the roof of the +gateway by the wall, looked out, and saw a man +So he called out and told the +running alone. +king. + +25 + +“If he is alone,” the king replied, “he bears good +news.” + +26 + +the watchman +As the first runner drew near, +saw another man running, and he called out to +the gatekeeper, “Look! Another man is running +alone!” +27 +“This one also brings good news,” said the king. + +The watchman said, “The first man appears to + +me to be running like Ahimaaz son of Zadok.” + +“This is a good man,” said the king. “He comes +28 +with good news.” + +Then Ahimaaz called out to the king, “All is +well!” And he bowed facedown before the king. + +He continued, “Blessed be the LORD your God! +He has delivered up the men who raised their +29 +hands against my lord the king.” + +The king asked, “Is the young man Absalom all + +right?” + +And Ahimaaz replied, “When Joab sent the king’s +servant and your servant, I saw a great tumult, +30 +but I do not know what it was.” + +“Move aside,” said the king, “and stand here.” + +31 +So he stepped aside. + +Just then the Cushite came and said, “May my +lord the king hear the good news: Today the + +b 11 10 shekels + +d 12 + +grams of silver. +one touch the young man Absalom. +scripts, LXX, Vulgate, and Syriac; most Hebrew manuscripts + + is approximately 25.1 pounds or 11.4 kilograms of silver. +e 13 + +If I had dealt treacherously against his life + +; similarly in verses 10 and 14 + +Whoever you may be, protect the young man Absalom. + + is approximately 4 ounces or 114 +Let no +A few Hebrew manu- +f 23 + +That is, the plain of the Jordan + + or + +Or + + 2 Samuel 19:22 | 299 + +LORD has avenged you of all who rose up against +32 +you!” + +The king asked the Cushite, “Is the young man + +Absalom, the man we anointed over us, has died +in battle. So why do you say nothing about re- +11 +storing the king?” + +Absalom all right?” + +And the Cushite replied, “May the enemies of my +lord the king and all who rise up against you to +33 +harm you be like that young man.” + +The king was shaken and went up to the cham- +ber over the gate and wept. And as he walked, he +cried out, “O my son Absalom! My son, my son +Absalom! If only I had died instead of you, O Ab- +Joab Reproves David +salom, my son, my son!” + +19 + +2 + +Then it was reported to Joab, “The king is +weeping and mourning over Absalom.” +And that day’s victory was turned into mourn- +ing for all the people, because on that day they +3 +were told, “The king is grieving over his son.” + +4 + +So they returned to the city quietly that day, as +people steal away in humiliation after fleeing a +But the king covered his face and cried +battle. +out at the top of his voice, “O my son Absalom! O +5 +Absalom, my son, my son!” + +6 + +Then Joab went into the house and said to the +king, “Today you have disgraced all your serv- +ants who have saved your life and the lives of +your sons and daughters, of your wives, and of +your concubines. +You love those who hate you +and hate those who love you! For you have made +it clear today that the commanders and soldiers +mean nothing to you. I know today that if Absa- +lom were alive and all of us were dead, it would +7 +have pleased you! + +Now therefore get up! Go out and speak comfort +to your servants, for I swear by the LORD that if +you do not go out, not a man will remain with you +tonight. This will be worse for you than all the +adversity that has befallen you from your youth +David Restored as King +until now!” +8 + +So the king got up and sat in the gate, and all the +people were told: “Behold, the king is sitting in +the gate.” So they all came before the king. + +9 + +Meanwhile, the Israelites had fled, each man to +And all the people throughout the +his home. +tribes of Israel were arguing, “The king rescued +us from the hand of our enemies and delivered +us from the hand of the Philistines, but now he +But +has fled the land because of Absalom. + +10 + +12 + +Then King David sent this message to Zadok +and Abiathar, the priests: “Say to the elders of Ju- +dah, ‘Why should you be the last to restore the +king to his palace, since the talk of all Israel has +You are my +reached the king at his quarters? +13 +brothers, my own flesh and blood. So why should +you be the last to restore the king?’ +And say to +Amasa, ‘Aren’t you my flesh and blood? May God +punish me, and ever so severely, if from now on +you are not the commander of my army in place +14 +of Joab!’ + +” + +So he swayed the hearts of all the men of +Judah as though they were one man, and they +sent word to the king: “Return, you and all your +15 +servants.” + +So the king returned, and when he arrived at +the Jordan, the men of Judah came to Gilgal to +Shimei Pardoned +meet him and escort him across the Jordan. +16 + +17 + +Then Shimei son of Gera, a Benjamite from Ba- +hurim, hurried down with the men of Judah to +along with a thousand men +meet King David, +of Benjamin, as well as Ziba the steward of the +house of Saul and his fifteen sons and twenty +servants. +18 +They rushed down to the Jordan before the king +and crossed at the ford to carry over the king’s +household and to do what was good in his sight. + +19 + +20 + +When Shimei son of Gera crossed the Jordan, he +and said, “My lord, do +fell down before the king +not hold me guilty, and do not remember your +servant’s wrongdoing on the day my lord the +king left Jerusalem. May the king not take it to +For your servant knows that I have +heart. +sinned, so here I am today as the first of all the +house of Joseph to come down to meet my lord +21 +the king.” + +But Abishai son of Zeruiah said, “Shouldn’t +Shimei be put to death for this, because he cursed +22 +the LORD’s anointed?” + +And David replied, “Sons of Zeruiah, what have +I to do with you, that you should be my adver- +saries today? Should any man be put to death in +Israel today? Am I not indeed aware that today I +am king over Israel?” + + 300 | 2 Samuel 19:23 + +23 + +So the king said to Shimei, “You shall not die.” + +Mephibosheth Excused +And the king swore an oath to him. +24 + +Then Mephibosheth, Saul’s grandson, went +down to meet the king. He had not cared for his +feet or trimmed his mustache or washed his +25 +clothes from the day the king had left until the +day he returned safely. +And he came from Je- +rusalem to meet the king, who asked him, +26 +“Mephibosheth, why did you not go with me?” + + a + +“My lord the king,” he replied, “because I am +lame, I said, ‘I will have my donkey saddled + so +that I may ride on it and go with the king.’ But my +and he has slan- +servant Ziba deceived me, +dered your servant to my lord the king. + +27 + + b + +28 + + of God, so +Yet my lord the king is like the angel +For all the house +do what is good in your eyes. +of my grandfather deserves death from my lord +the king, yet you have set your servant among +those who eat at your table. What further right, +29 +then, do I have to keep appealing to the king?” + +The king replied, “Why say any more? I hereby +30 +declare that you and Ziba are to divide the land.” + +And Mephibosheth said to the king, “Instead, +since my lord the king has safely come to his own +David’s Kindness to Barzillai +house, let Ziba take it all!” +31 + +32 + +Now Barzillai the Gileadite had come down +from Rogelim to cross the Jordan with the king +and send him on his way from there. +Barzillai +was quite old, eighty years of age, and since he +was a very wealthy man, he had provided for the +33 +king while he stayed in Mahanaim. + +The king said to Barzillai, “Cross over with +me, and I will provide for you at my side in +34 +Jerusalem.” + +35 + +But Barzillai replied, “How many years of my +life remain, that I should go up to Jerusalem with +I am now eighty years old. Can I dis- +the king? +cern what is good and what is not? Can your serv- +ant taste what he eats or drinks? Can I still hear +the voice of singing men and women? Why +should your servant be an added burden to my +36 +lord the king? + +Your servant will go with the king only a short +distance past the Jordan; why should the king re- +Please let your +pay me with such a reward? +a 26 +servant return, that I may die in my own city near + +Saddle a donkey for me + +37 + +the tomb of my father and mother. But here is +your servant Chimham. Let him cross over with +my lord the king, and do for him what is good in +38 +your sight.” + +The king replied, “Chimham will cross over +with me, and I will do for him what is good in +your sight, and I will do for you whatever you de- +39 +sire of me.” + +So all the people crossed the Jordan, and then +the king crossed over. The king kissed Barzillai +40 +and blessed him, and Barzillai returned home. + +Then the king crossed over to Gilgal, and Chim- +ham crossed over with him. All the troops of +Judah and half the troops of Israel escorted the +Contention over the King +king. +41 + +Soon all the men of Israel came to the king and +asked, “Why did our brothers, the men of Judah, +take you away secretly and bring the king and his +household across the Jordan, together with all of +42 +David’s men?” + +And all the men of Judah replied to the men of +Israel, “We did this because the king is our rela- +tive. Why does this anger you? Have we ever +eaten at the king’s expense or received anything +43 +for ourselves?” + +“We have ten shares in the king,” answered the +men of Israel, “so we have more claim to David +than you. Why then do you despise us? Were we +not the first to speak of restoring our king?” + +But the men of Judah spoke more fiercely than +Sheba’s Rebellion +the men of Israel. + +20 + +Now a worthless man named Sheba son +of Bichri, a Benjamite, happened to be +there, and he blew the ram’s horn and shouted: + +“We have no share in David, + +no inheritance in Jesse’s son. + +Every man to his tent, + +O Israel!” + +2 + +So all the men of Israel deserted David to follow +Sheba son of Bichri. But the men of Judah stayed +by their king all the way from the Jordan to +3 +Jerusalem. + +When David returned to his palace in Jerusa- +lem, he took the ten concubines he had left to +take care of the palace, and he placed them in a + +I will saddle a donkey for myself + +Angel + +b 27 + +LXX, Syriac, and Vulgate + +; Hebrew + +Or + + house under guard. He provided for them, but he +no longer slept with them. They were confined +4 +until the day of their death, living as widows. + +Then the king said to Amasa, “Summon the men +of Judah to come to me within three days, and be +5 +here yourself.” + +So Amasa went to summon Judah, but he took + +6 +longer than the time allotted him. + +And David said to Abishai, “Now Sheba the son +of Bichri will do us more harm than Absalom. +Take your lord’s servants and pursue him, or he +7 +will find fortified cities and elude us. + +” + +a + +So Joab’s men, along with the Cherethites, the +Pelethites, and all the mighty men, marched out +8 +of Jerusalem in pursuit of Sheba son of Bichri. +And while they were at the great stone in Gib- + +eon, Amasa joined them. + +Now Joab was dressed in military attire, with a +b +dagger strapped to his belt. And as he stepped +9 +forward, he slipped the dagger from its sheath. + +“Are you well, my brother?” Joab asked Amasa. +And with his right hand Joab grabbed Amasa by +10 +the beard to kiss him. + +Amasa was not on guard against the dagger in +Joab’s hand, and Joab stabbed him in the stomach +and spilled out his intestines on the ground. And +Joab did not need to strike him again, for Amasa +was dead. Then Joab and his brother Abishai pur- +11 +sued Sheba son of Bichri. + +12 + +One of Joab’s young men stood near Amasa +and said, “Whoever favors Joab, and whoever is +for David, let him follow Joab!” +But Amasa wal- +lowed in his blood in the middle of the road, and +when the man saw that all the troops were stop- +ping there, he dragged the body off the road into +a field and threw a garment over it. +As soon as +Amasa’s body was removed from the road, all the +men went on with Joab to pursue Sheba son of +14 +Bichri. + +13 + + c + +Sheba passed through all the tribes of Israel to +d + and through the entire re- + who gathered together and + +Abel-beth-maacah +gion of the Berites, +15 +followed him. + +2 Samuel 21:1 | 301 + +16 + +As all the troops with Joab were battering the +a wise woman called out from +wall to topple it, +the city, “Listen! Listen! Please tell Joab to come +17 +here so that I may speak with him.” + +When he had come near to her, the woman + +asked, “Are you Joab?” + +“I am,” he replied. + +“Listen to the words of your servant,” she said. +18 +“I am listening,” he answered. + +19 + +Then the woman said, “Long ago they used to +say, ‘Seek counsel at Abel,’ and that is how dis- +I am among the peaceable +putes were settled. +and faithful in Israel, but you are trying to de- +stroy a city that is a mother in Israel. Why would +20 +you swallow up the LORD’s inheritance?” + +21 +“Far be it!” Joab declared. “Far be it from me to +That is not the case. +swallow up or destroy! +But a man named Sheba son of Bichri, from the +hill country of Ephraim, has lifted up his hand +against the king, against David. Deliver him +alone, and I will depart from the city.” + +“Look,” the woman replied, “his head will be +22 +thrown to you over the wall.” + +Then the woman went to all the people with +her wise counsel, and they cut off the head of +Sheba son of Bichri and threw it to Joab. So he +blew the ram’s horn and his men dispersed from +the city, each to his own home. And Joab returned +23 +to the king in Jerusalem. + +25 + +24 + +Now Joab was over the whole army of Israel; + e +Benaiah son of Jehoiada was over the Cherethites + was in charge of the +and Pelethites; +forced labor; Jehoshaphat son of Ahilud was the +26 + was the scribe; Zadok and +recorder; + was +and Ira the Jairite +Abiathar were priests; +David Avenges the Gibeonites +David’s priest. + +Adoram +  f + +Sheva + +  g + +21 + +During the reign of David there was a +famine for three successive years, and + +David sought the face of the LORD. + +And Joab’s troops came and besieged Sheba in +Abel-beth-maacah and built a siege ramp against +and do us serious harm +and snatch away our eyes +a 6 +the outer rampart of the city. +was a belt around his waist with a dagger in its sheath. And as he stepped forward, it fell out. +Or +maacah + +And the LORD said, “It is because of the blood +shed by Saul and his family, because he killed the +Now Joab was dressed in military attire, and over it +Gibeonites.” +to Abel and Beth- +Literally +e 24 Adoram + +c 14 +Adoniram + +Hadoram + +Bicrites + +d 14 + +b 8 + + or + +; see verse 15. + +f 25 Sheva +Hebrew; LXX and Vulgate + +g 26 + +Seraiah + +Shisha + +Ithrite + +Shavsha + is a variant of +, and + +; see +; see 2 Samuel 8:17, 1 Kings 4:3, + + and + +Hebrew + + is also called + +, + +1 Kings 4:6 and 2 Chronicles 10:18. +and 1 Chronicles 18:16. + +Hebrew; some LXX manuscripts and Syriac + +; see 2 Samuel 23:38. + + 302 | 2 Samuel 21:2 + +2 + +13 + +At this, David summoned the Gibeonites and +spoke to them. (Now the Gibeonites were not +Israelites, but a remnant of the Amorites. The Is- +raelites had taken an oath concerning them, but +in his zeal for Israel and Judah, Saul had sought +3 +to kill them.) + +So David had the bones of Saul and his son Jon- +athan brought from there, and they also gathered +And +the bones of those who had been hanged. +they buried the bones of Saul and his son Jona- +than in Zela in the land of Benjamin, in the tomb +of Saul’s father Kish. + +14 + +So David asked the Gibeonites, “What shall I do +for you? How can I make amends so that you may +4 +bless the inheritance of the LORD?” + +The Gibeonites said to him, “We need no silver +or gold from Saul or his house, nor should you +put to death anyone in Israel for us.” +5 +“Whatever you ask, I will do for you,” he replied. + +6 + +And they answered the king, “As for the man +who consumed us and plotted against us to ex- +terminate us from existing within any border of +Israel, +let seven of his male descendants be de- +livered to us so that we may hang them + before +the LORD at Gibeah of Saul, the chosen of the +LORD.” +7 +“I will give them to you,” said the king. + + a + +8 + +Now the king spared Mephibosheth son of +Jonathan, the son of Saul, because of the oath +before the LORD between David and Jonathan +son of Saul. +But the king took Armoni and +Mephibosheth, the two sons whom Rizpah + b +daughter of Aiah had borne to Saul, as well as the +five sons whom Merab + daughter of Saul had +9 +borne to Adriel son of Barzillai the Meholathite. +And he delivered them into the hands of the +Gibeonites, and they hanged them on the hill be- +fore the LORD. So all seven of them fell together; +they were put to death in the first days of the har- +10 +vest, at the beginning of the barley harvest. + +And Rizpah the daughter of Aiah took sack- +cloth and spread it out for herself on a rock. From +the beginning of the harvest until the rain from +heaven poured down on the bodies, she did not +allow the birds of the air to rest on them by day, +11 +nor the beasts of the field by night. + +12 + +When David was told what Saul’s concubine +Rizpah, daughter of Aiah, had done, +he went +and took the bones of Saul and his son Jonathan +from the men of Jabesh-gilead, who had stolen +them from the public square of Beth-shan where +the Philistines had hung the bodies after they had +b 8 +execute them +a 6 +struck down Saul at Gilboa. +d 16 300 shekels +(see also 1 Samuel 18:19); most Hebrew and LXX manuscripts +f 19 + is approximately 7.5 pounds or 3.4 kilograms. +Shammah +h 21 Shimei +See 1 Chronicles 20:5; Hebrew + is a variant of + +; similarly in verse 9 +Jaare-oregim +Shimeah + +g 19 +Shimea + +expose them + +, and + + or + +Or + +, + +After they had done everything the king had +commanded, God answered their prayers for the +Four Battles against the Philistines +land. +(1 Chronicles 20:4–8) + +15 + +Once again the Philistines waged war against +Israel, and David and his servants went down +and fought against the Philistines. But David be- +c +16 +came exhausted. + + d + +Then Ishbi-benob, a descendant of Rapha, +whose bronze spear weighed three hundred +17 + and who was bearing a new sword, re- +shekels +But Abishai son of +solved to kill David. +Zeruiah came to his aid, struck the Philistine, and +killed him. + +Then David’s men swore to him, “You must never +again go out with us to battle, so that the lamp of +18 +Israel may not be extinguished.” + +Some time later at Gob, there was another bat- +e +tle with the Philistines. At that time Sibbecai the +19 +Hushathite killed Saph, + a descendant of Rapha. + f + +Once again there was a battle with the Philis- + g +tines at Gob, and Elhanan son of Jair + the Bethle- + the Gittite, +hemite killed the brother of Goliath +20 +the shaft of whose spear was like a weaver’s beam. + +And there was also a battle at Gath, where +there was a man of great stature with six fingers +on each hand and six toes on each foot—twenty- +21 +four in all. He too was descended from Rapha, + h +and when he taunted Israel, Jonathan the son + +22 +of David’s brother Shimei + + killed him. + +So these four descendants of Rapha in Gath fell + +David’s Song of Deliverance +at the hands of David and his servants. +(Psalm 18:1–50) + +22 + +2 + +And David sang this song to the LORD on +the day the LORD had delivered him +from the hand of all his enemies and from the +hand of Saul. +Michal +e 18 Saph + +Two Hebrew manuscripts, some LXX manuscripts, and Syriac + +He said: +Sippai +; also in verses 18, 20, and 22 +; see 1 Chronicles 20:4. +. + + is a variant of + +the brother of + +the giant + +c 16 + +Or + +See 1 Chronicles 20:5; Hebrew does not include + +; see 1 Samuel 16:9, 2 Samuel 13:3, and 1 Chronicles 2:13. + + 2 Samuel 22:37 | 303 + +20 + +“The LORD is my rock, + +3 + +my fortress, and my deliverer. + +My God is my rock, in whom I take refuge, + +my shield, and the horn of my salvation. + +My stronghold, my refuge, and my Savior, + +4 + +You save me from violence. + +I will call upon the LORD, who is worthy to be + +5 + +praised; + +so shall I be saved from my enemies. + +He brought me out into the open; + +21 + +He rescued me because He delighted + +in me. + +The LORD has rewarded me according to my + +righteousness; + +22 + +He has repaid me according to the + +cleanness of my hands. +For I have kept the ways of the LORD + +23 + +and have not wickedly departed from + +For the waves of death engulfed me; + +6 + +the torrents of chaos overwhelmed me. + +The cords of Sheol entangled me; + +7 + +the snares of death confronted me. +In my distress I called upon the LORD; + +my God. + +24 + +For all His ordinances are before me; + +25 + +I have not disregarded His statutes. +And I have been blameless before Him +and kept myself from iniquity. + +I cried out to my God. + +So the LORD has repaid me according to my + +And from His temple He heard my voice, +8 +and my cry for help reached His ears. + + a +Then the earth shook and quaked; +the foundations of the heavens + trembled; +they were shaken because He burned with + +9 + +anger. + +Smoke rose from His nostrils, + +10 + +and consuming fire came from His mouth; +glowing coals blazed forth. + +11 + +He parted the heavens and came down +with dark clouds beneath His feet. + + b + +12 + +He mounted a cherub and flew; + +13 + +He soared + + on the wings of the wind. +He made darkness a canopy around Him, +a gathering of water and thick clouds. + + c + +14 + +From the brightness of His presence + +coals of fire + + blazed forth. + +15 + +The LORD thundered from heaven; + +16 + +the voice of the Most High resounded. +He shot His arrows and scattered the foes; +He hurled lightning and routed them. + +The channels of the sea appeared, + +righteousness, + +d + +according to my cleanness in His + +sight. + +26 + +To the faithful You show Yourself faithful, +to the blameless You show Yourself + +27 + +blameless; + +to the pure You show Yourself pure, + +28 + +but to the crooked You show Yourself + +shrewd. + +You save an afflicted people, + +29 + +but Your eyes are on the haughty to bring + +them down. + +30 + +For You, O LORD, are my lamp; + +the LORD lights up my darkness. + +31 + +For in You I can charge an army; + +with my God I can scale a wall. + +As for God, His way is perfect; + +the word of the LORD is flawless. + +He is a shield to all + +32 + +who take refuge in Him. + +33 + +For who is God besides the LORD? + +And who is the Rock except our God? + +and the foundations of the world were + +34 + +God is my strong fortress, + +exposed + +at the rebuke of the LORD, + +17 + +at the blast of the breath of His nostrils. + +and He makes my way clear. + +35 + +He makes my feet like those of a deer +and stations me upon the heights. + +He reached down from on high and took hold + +18 + +of me; + +36 + +He trains my hands for battle; + +my arms can bend a bow of bronze. + +He drew me out of deep waters. + +You have given me Your shield of +e + +19 + +He rescued me from my powerful enemy, + +37 + +salvation, + +from foes too mighty for me. + +a 8 + +They confronted me in my day of calamity, + +but the LORD was my support. + +Most Hebrew sources; Vulgate, Syriac, and two Hebrew manuscripts (see also Psalm 18:7) + +according to the cleanness of my hands + +e 36 + +brew manuscripts (see also Psalm 18:10); most Hebrew manuscripts +stoop down to make me great +LXX and Vulgate (see also Psalm 18:24) + +and Your gentleness exalts me. +You broaden the path beneath me + +so that my ankles do not give way. +d 25 +He was seen + +c 13 + +b 11 + +mountains +bolts of lightning +and Your help exalts me +Or + +Or + + or + +Many He- + +and You +Hebrew; + + 304 | 2 Samuel 22:38 + +38 + +2 + +I pursued my enemies and destroyed them; + +The Spirit of the LORD spoke through me; + +3 + +39 + +I did not turn back until they were + +consumed. + +I devoured and crushed them so they could + +40 + +not rise; + +they have fallen under my feet. + +41 + +You have armed me with strength for battle; +You have subdued my foes beneath me. +You have made my enemies retreat before + +42 + +me; + +I destroyed those who hated me. + +They looked, but there was no one to save + +43 + +them— + +to the LORD, but He did not answer. +I ground them as the dust of the earth; + +44 + +I crushed and trampled them like mud in + +the streets. + +You have delivered me from the strife of my + +people; + +You have preserved me as the head + +of nations; + +45 + +a people I had not known shall + +serve me. + +46 + +Foreigners cower before me; + +when they hear me, they obey me. + + a + +Foreigners lose heart +and come trembling +strongholds. + +47 + + from their + +The LORD lives, and blessed be my Rock! + +48 + +And may God, the Rock of my salvation, be + +exalted— +the God who avenges me + +49 + +and brings down nations beneath me, +who frees me from my enemies. + +50 + +You exalt me above my foes; + +You rescue me from violent men. +b + +Therefore I will praise You, O LORD, among + +51 + +the nations; + +I will sing praises to Your name. + +Great salvation He brings to His king. + +David’s Last Song + +He shows loving devotion to His anointed, +to David and his descendants forever.” + +23 + +These are the last words of David: + +“The oracle of David son of Jesse, +the oracle of the man raised on high, + + c + +His word was on my tongue. + +The God of Israel spoke; + +the Rock of Israel said to me, +‘He who rules the people with justice, + +4 + +who rules in the fear of God, + +is like the light of the morning + +at sunrise of a cloudless dawn, + +the glistening after the rain + +on the sprouting grass of the earth.’ + +Is not my house right with God? + +For He has established with me + +an everlasting covenant, + +ordered and secured in every part. +Will He not bring about my full salvation + +and my every desire? + +5 + +6 + +But the worthless are all like thorns raked + +7 + +aside, + +for they can never be gathered by hand. +The man who touches them must be armed + +with iron + +or with the shaft of a spear. + +The fire burns them to ashes + +David’s Mighty Men (1 Chronicles 11:10–47) + +in the place where they lie.” + +8 + + d + + f + +These are the names of David’s mighty men: + +e +Josheb-basshebeth the Tahchemonite +chief of the Three. +against +9 +at one time. + + was + He wielded his spear + eight hundred men, whom he killed + g + +10 + +Next in command was Eleazar son of Dodo +the Ahohite. As one of the three mighty men, +he went with David to taunt the Philistines +who had gathered for battle at Pas-dammim. +but Eleazar +The men of Israel retreated, +stood his ground and struck the Philistines +until his hand grew weary and stuck to his +sword. The LORD brought about a great vic- +tory that day. Then the troops returned to +11 +him, but only to plunder the dead. + +12 + +And after him was Shammah son of Agee +the Hararite. When the Philistines had +banded together near a field full of lentils, Is- +But Sham- +rael’s troops fled from them. +mah took his stand in the middle of the field, +defended it, and struck down the Philistines. +b 50 +So the LORD brought about a great victory. +d 8 Tahchemonite + +and arm themselves + +Dodai + +Cited in Romans 15:9 + is probably a variant of + +a 46 +c 1 +Hachmonite + +the one anointed by the God of Jacob, +and the sweet psalmist of Israel: +the hero of the songs of Israel + +Some LXX manuscripts and Vulgate (see also Psalm 18:45); MT +chief among the captains + or +He was called Adino the Eznite because of +g 9 Dodo + +Or + +the favorite of the Strong One of Israel +f 8 + +e 8 + +; see 1 Chronicles 11:11. + +Or + +11:11); Hebrew + +Some LXX manuscripts (see also 1 Chronicles + + is a variant of + +; see 1 Chronicles 27:4. + + 13 + +2 Samuel 24:2 | 305 + +14 + +At harvest time, three of the thirty chief men +went down to David at the cave of Adullam, while +a company of Philistines was encamped in the +Valley of Rephaim. +At that time David was in +the stronghold, and the garrison of the Philis- +tines was at Bethlehem. +David longed for wa- +ter and said, “Oh, that someone would get me a +drink of water from the well near the gate of +16 +Bethlehem!” + +15 + +17 + +So the three mighty men broke through the +Philistine camp, drew water from the well near +the gate of Bethlehem, and brought it back to Da- +vid. But he refused to drink it; instead, he poured +it out to the LORD, +saying, “Far be it from me, +O LORD, to do this! Is this not the blood of the +men who risked their lives?” So he refused to +drink it. +18 +Such were the exploits of the three mighty men. + +a + +Now Abishai, the brother of Joab and son of Ze- +ruiah, was chief of the Three, + and he wielded his +19 +spear against three hundred men, killed them, +Was he +and won a name along with the Three. +not more honored than the Three? + And he be- +came their commander, even though he was not +20 +included among the Three. + + b + + c + + d + +21 + +And Benaiah son of Jehoiada was a man of +valor + from Kabzeel, a man of many exploits. He + of Moab, and on a +struck down two champions +snowy day he went down into a pit and killed a +lion. +He also struck down an Egyptian, a huge +man. Although the Egyptian had a spear in his +hand, Benaiah went against him with a club, +snatched the spear from his hand, and killed the +Egyptian with his own spear. +These were the +23 +exploits of Benaiah son of Jehoiada, who won a +name along with the three mighty men. +He was +most honored among the Thirty, but he did not +become one of the Three. And David appointed +24 +him over his guard. + +22 + + e + +Now these were members of the Thirty: +Asahel the brother of Joab, +25 +Elhanan son of Dodo of Bethlehem, + +27 +Ira son of Ikkesh the Tekoite, +Abiezer the Anathothite, + the Hushathite, + +28 +Mebunnai + + f + +Zalmon the Ahohite, +29 +Maharai the Netophathite, + + g + + son of Baanah the Netophathite, + + son of Ribai from Gibeah of the + + h +Heled + +Ittai +30 +Benjamites, + i + + of Gaash, + + j + +31 +Hiddai + +Benaiah the Pirathonite, + from the brooks +Abi-albon the Arbathite, +32 +Azmaveth the Barhumite, +Eliahba the Shaalbonite, + +k + +33 + +the sons of Jashen, +Jonathan +Hararite, +34 +Ahiam son of Sharar + +son of Shammah + m + + l + + the + + the Hararite, + +Eliphelet son of Ahasbai the Maacathite, + +35 +Eliam son of Ahithophel the Gilonite, + +Hezro the Carmelite, + +36 +Paarai the Arbite, + +Igal son of Nathan of Zobah, + +37 +Bani the Gadite, + +Zelek the Ammonite, + +Naharai the Beerothite, the armor-bearer of +38 +Joab son of Zeruiah, +Ira the Ithrite, +39 +Gareb the Ithrite, + +and Uriah the Hittite. +David’s Military Census +There were thirty-seven in all. +(Exodus 30:11–16 ; 1 Chronicles 21:1–6) + +24 + +Again the anger of the LORD burned +against Israel, and He stirred up David +against them, saying, “Go and take a census of +2 +Israel and Judah.” + +n + +So the king said to Joab the commander of his +army, who was with him, + “Go now throughout +the tribes of Israel from Dan to Beersheba and +register the troops, so that I may know their +number.” +d 20 + +two sons of Ariel + +b 19 + +In the Thirty +Heb.; Syr- + +Shammah the Harodite, + +a 18 + +26 +Elika the Harodite, +Helez the Paltite, +Most Heb. manuscripts (see also 1 Chronicles 11:20); two Hebrew manuscripts and Syriac + +Benaiah son of Jehoiada was the son of Ishhai +Sibbecai + +the Thirty +f 27 + +c 20 + +the Thirty + e 24 +g 29 + +(were): +iac + +Or +Heb.; some LXX manuscripts +i 30 Hiddai + +Hurai + +scripts and Vulgate (see also 1 Chronicles 11:30); most MT manuscripts +Hashem +l 33 +cles 11:31. + is a variant of +m 33 + +; see 1 Chronicles 11:32. + +Sachar +Some LXX manuscripts (see also 1 Chronicles 11:34); Hebrew + +n 2 + +Or + +; see 1 Chronicles 11:34. +Hebrew; some LXX manuscripts + +; see 1 Chronicles 11:35. + +LXX + +; see 2 Samuel 21:18 and 1 Chronicles 11:29. +j 30 + +from the ravines + +Or +Heleb + +h 29 Ittai + +Literally +Ithai +Some Hebrew manu- +; see 1 Chroni- +Jonathan, 33 Shammah + is a variant of +to Joab and the army commanders with him + + is a variant of + +k 32 Jashen + + 306 | 2 Samuel 24:3 + +3 + +But Joab replied to the king, “May the LORD +your God multiply the troops a hundred times +over, and may the eyes of my lord the king see it. +But why does my lord the king want to do such a +4 +thing?” + +Nevertheless, the king’s word prevailed against +Joab and against the commanders of the army. So +Joab and the commanders of the army departed +from the presence of the king to register the +5 +troops of Israel. + +a + +7 + +They crossed the Jordan and camped near +Aroer, south of the town in the middle of the +6 +valley, and proceeded toward Gad and Jazer. +Then they went to Gilead and the land of +Tahtim-hodshi, + and on to Dan-jaan and around +They went toward the fortress of Tyre +to Sidon. +and all the cities of the Hivites and Canaanites. + to +Finally, they went on to the Negev of Judah, +8 +Beersheba. + +b + +9 + +At the end of nine months and twenty days, hav- +ing gone through the whole land, they returned +And Joab reported to the king the +to Jerusalem. +total number of the troops. In Israel there were +800,000 men of valor who drew the sword, and +Judgment for David’s Sin (1 Chron. 21:7–13) +in Judah there were 500,000. +10 + +After David had numbered the troops, his con- +science was stricken and he said to the LORD, “I +have sinned greatly in what I have done. Now, O +LORD, I beg You to take away the iniquity of Your +11 +servant, for I have acted very foolishly.” + +12 + +When David got up in the morning, the word of +the LORD had come to Gad the prophet, David’s +“Go and tell David that this is what the +seer: +LORD says: ‘I am offering you three options. +Choose one of them, and I will carry it out against +13 +you.’ + +” + + c + +So Gad went and said to David, “Do you choose +to endure three + years of famine in your land, +three months of fleeing the pursuit of your ene- +mies, or three days of plague upon your land? +Now then, think it over and decide how I should +14 +reply to Him who sent me.” + +A Plague on Israel (1 Chronicles 21:14–17) + +15 + +So the LORD sent a plague upon Israel from +that morning until the appointed time, and sev- +enty thousand of the people from Dan to Beer- +16 +sheba died. + +d + +But when the angel stretched out his hand to +destroy Jerusalem, the LORD relented from the +calamity and said to the angel who was destroy- +ing the people, “Enough! Withdraw your hand +now!” At that time the angel of the LORD was by +17 +the threshing floor of Araunah + + the Jebusite. + + e + +f + +When David saw the angel striking down the +people, he said to the LORD, “Surely I, the shep- + have sinned and acted wickedly. But these +herd, +sheep, what have they done? Please, let Your +David Builds an Altar (1 Chronicles 21:18–30) +hand fall upon me and my father’s house.” +18 + +And that day Gad came to David and said to +him, “Go up and build an altar to the LORD on the +threshing floor of Araunah the Jebusite.” +So +David went up at the word of Gad, just as the +20 +LORD had commanded. + +19 + +When Araunah looked out and saw the king +and his servants coming toward him, he went out +and bowed facedown before the king. +“Why +has my lord the king come to his servant?” +Araunah said. + +21 + +“To buy your threshing floor,” David replied, +“that I may build an altar to the LORD, so that the +22 +plague upon the people may be halted.” + +Araunah said to David, “May my lord the king +take whatever seems good to him and offer it up. +Here are the oxen for a burnt offering and the +O +threshing sledges and ox yokes for the wood. +king, Araunah gives all these to the king.” He also +said to the king, “May the LORD your God accept +24 +you.” + +23 + +“No,” replied the king, “I insist on paying a +price, for I will not offer to the LORD my God +burnt offerings that cost me nothing.” + +g +So David bought the threshing floor and the oxen +for fifty shekels of silver. +And there he built an +altar to the LORD and offered burnt offerings and +peace offerings. + +25 + +David answered Gad, “I am deeply distressed. +Please, let us fall into the hand of the LORD, for +His mercies are great; but do not let me fall into +a 6 +the hands of men.” + +Then the LORD answered the prayers on behalf +of the land, and the plague upon Israel was +to the south of Judah +to Gilead and to the land of the Hittites +halted. + +and of the people from Dan to Beersheba, seventy thousand men + +d 15 + +c 13 + +b 7 + +Hebrew; some LXX manuscripts + +e 16 Araunah +the shepherd + +died +also 1 Chronicles 21:12); Hebrew + is a variant of +. + +include + +g 24 50 shekels + +Literally + +Or + +f 17 + +LXX (see + +; see 1 Chronicles 21:15 and 2 Chronicles 3:1. + +DSS and LXX; MT does not + + is approximately 1.26 pounds or 569.8 grams of silver. + +seven +Ornan + + 1 Kings + +Abishag Cares for David + +1 + +2 + +Now King David was old and well along in +years, and though they covered him with +So his serv- +blankets, he could not keep warm. +ants said to him, “Let us search for a young virgin +for our lord the king, to attend to him and care +3 +for him and lie by his side to keep him warm.” + +4 + +Then they searched throughout Israel for a +beautiful girl, and they found Abishag the +The +Shunammite and brought her to the king. +girl was unsurpassed in beauty; she cared for the +king and served him, but he had no relations with +her. Adonijah Usurps the Kingdom +5 + +At that time Adonijah, David’s son by Haggith, +began to exalt himself, saying, “I will be king!” +And he acquired chariots and horsemen and fifty +6 +men to run ahead of him. + +(His father had never once reprimanded him by +saying, “Why do you act this way?” Adonijah was +7 +also very handsome, born next after Absalom.) + +8 + +So Adonijah conferred with Joab son of Zeruiah +and with Abiathar the priest, who supported +him. +But Zadok the priest, Benaiah son of Jehoi- +ada, Nathan the prophet, Shimei, Rei, and David’s +9 +mighty men would not join Adonijah. + +a + +10 + +And Adonijah sacrificed sheep, oxen, and fat- +tened calves near the stone of Zoheleth, + which +is next to En-rogel. He invited all his royal broth- +ers and all the men of Judah who were servants +But he did not invite Nathan the +of the king. +prophet, Benaiah, the mighty men, or his brother +Nathan and Bathsheba before David +Solomon. +11 + +12 + +Then Nathan said to Bathsheba the mother of +Solomon, “Have you not heard that Adonijah son +of Haggith has become king, and our lord David +Now please, come and let me +does not know it? +advise you. Save your own life and the life of your +Go at once to King David and say, +son Solomon. +b 25 +a 9 +‘My lord the king, did you not swear to your + +the Serpent’s Stone + +13 + +Joab the commander + +Or + +Hebrew; LXX + +maidservant, “Surely your son Solomon will +reign after me, and he will sit on my throne”? +Then, +Why then has Adonijah become king?’ +while you are still there speaking with the king, I +15 +will come in after you and confirm your words.” + +14 + +16 + +So Bathsheba went to see the king in his bed- +room. Since the king was very old, Abishag the +And Bathsheba +Shunammite was serving him. +bowed down in homage to the king, who asked, +17 +“What is your desire?” + +19 + +18 + +“My lord,” she replied, “you yourself swore to +your maidservant by the LORD your God: ‘Surely +your son Solomon will reign after me, and he will +sit on my throne.’ +But now, behold, Adonijah +has become king, and you, my lord the king, do +not know it. +And he has sacrificed an abun- +dance of oxen, fattened calves, and sheep, and +has invited all the other sons of the king, as well +as Abiathar the priest and Joab the commander +of the army. But he has not invited your servant +Solomon. +And as for you, my lord the king, the +eyes of all Israel are upon you to tell them who +will sit on the throne of my lord the king after +him. +Otherwise, when my lord the king rests +with his fathers, I and my son Solomon will be +22 +counted as criminals.” + +21 + +20 + +And just then, while Bathsheba was still speak- +23 +ing with the king, Nathan the prophet arrived. +So the king was told, “Nathan the prophet is +here.” And Nathan went in and bowed facedown +24 +before the king. + + b + +25 + +“My lord the king,” said Nathan, “did you say, +‘Adonijah will reign after me, and he will sit on +my throne’? +For today he has gone down and +sacrificed an abundance of oxen, fattened calves, +and sheep, and has invited all the sons of the +king, the commanders + of the army, and Abiathar +the priest. And behold, they are eating and drink- +26 +ing before him, saying, ‘Long live King Adonijah!’ +But me your servant he has not invited, nor Za- +27 +dok the priest, nor Benaiah son of Jehoiada, nor +your servant Solomon. +Has my lord the king let +this happen without informing your servant who +should sit on the throne after my lord the king?” + + 308 | 1 Kings 1:28 + +David Renews His Oath to Bathsheba + +42 + +28 + +Then King David said, “Call in Bathsheba for +me.” So she came into the king’s presence and +29 +stood before him. + +30 + +And the king swore an oath, saying, “As surely +as the LORD lives, who has redeemed my life +I will carry out this very day +from all distress, +exactly what I swore to you by the LORD, the God +of Israel: Surely your son Solomon will reign af- +31 +ter me, and he will sit on my throne in my place.” + +Bathsheba bowed facedown in homage to the +king and said, “May my lord King David live for- +Solomon Anointed King (1 Chron. 29:21–25) +ever!” +32 + +Then King David said, “Call in for me Zadok the +priest, Nathan the prophet, and Benaiah son of +33 +Jehoiada.” So they came before the king. + +34 + +“Take my servants with you,” said the king. +“Set my son Solomon on my own mule and take +There Zadok the priest and +him down to Gihon. +Nathan the prophet are to anoint him king over +Israel. You are to blow the ram’s horn and de- +Then you shall +clare, ‘Long live King Solomon!’ +go up with him, and he is to come and sit on my +throne and reign in my place. For I have ap- +36 +pointed him ruler over Israel and Judah.” + +35 + +“Amen,” replied Benaiah son of Jehoiada. “May +37 +the LORD, the God of my lord the king, so declare +Just as the LORD was with my lord the king, +it. +so may He be with Solomon and make his throne +38 +even greater than that of my lord King David.” + +39 + +Then Zadok the priest, Nathan the prophet, +and Benaiah son of Jehoiada, along with the +Cherethites and Pelethites, went down and set +Solomon on King David’s mule, and they escorted +Zadok the priest took the horn of +him to Gihon. +oil from the tabernacle and anointed Solomon. +Then they blew the ram’s horn, and all the people +40 +proclaimed, “Long live King Solomon!” + +All the people followed him, playing flutes and +rejoicing with such a great joy that the earth was +Adonijah Learns of Solomon’s Kingship +split by the sound. +41 + +Now Adonijah and all his guests were finishing +their feast when they heard the sound of the +ram’s horn. “Why is the city in such a loud up- +a 48 +roar?” asked Joab. + +one of my offspring + +LXX + +As he was speaking, suddenly Jonathan the son +of Abiathar the priest arrived. “Come in,” said +Adonijah, “for you are a man of valor. You must +43 +be bringing good news.” + +44 + +“Not at all,” Jonathan replied. “Our lord King +David has made Solomon king. +And with Solo- +mon, the king has sent Zadok the priest, Nathan +the prophet, and Benaiah son of Jehoiada, along +with the Cherethites and Pelethites, and they +Zadok the +have set him on the king’s mule. +priest and Nathan the prophet have anointed +him king at Gihon, and they have gone up from +there with rejoicing that rings out in the city. +46 +That is the noise you hear. + +45 + +Moreover, Solomon has taken his seat on the + +47 +royal throne. + +The king’s servants have also gone to congrat- +ulate our lord King David, saying, ‘May your God +make the name of Solomon more famous than +your own name, and may He make his throne +greater than your throne.’ +48 +And the king has bowed in worship on his bed, +saying, ‘Blessed be the LORD, the God of Israel! + to sit on my throne, + +Today He has provided one +49 +” +and my eyes have seen it.’ + + a + +50 + +At this, all the guests of Adonijah arose in ter- +But Adonijah, in fear of Sol- +ror and scattered. +omon, got up and went to take hold of the horns +51 +of the altar. + +It was reported to Solomon: “Behold, Adonijah +fears King Solomon, and he has taken hold of the +horns of the altar, saying, ‘Let King Solomon first +52 +” +swear to me not to put his servant to the sword.’ + +And Solomon replied, “If he is a man of charac- +ter, not a single hair of his will fall to the ground. +53 +But if evil is found in him, he will die.” + +So King Solomon summoned Adonijah down +from the altar, and he came and bowed down be- +fore King Solomon, who said to him, “Go to your +David Instructs Solomon (Psalm 37:1–40) +home.” + +2 + +2 + +As the time drew near for David to die, he +“I am about to go +charged his son Solomon, +3 +the way of all the earth. So be strong and prove +And keep the charge of the +yourself a man. +LORD your God to walk in His ways and to keep +His statutes, commandments, ordinances, and +decrees, as written in the Law of Moses, so that + + 4 + +you may prosper in all you do and wherever you +and so that the LORD may fulfill His prom- +turn, +ise to me: ‘If your descendants take heed to walk +faithfully before Me with all their heart and soul, +you will never fail to have a man on the throne of +5 +Israel.’ + +a + +Moreover, you know what Joab son of Zeruiah +did to me—what he did to Abner son of Ner and +Amasa son of Jether, + the two commanders of the +armies of Israel. He killed them in peacetime to +avenge the blood of war. He stained with the +blood of war the belt around his waist and the +sandals on his feet. +So act according to your +wisdom, and do not let his gray head go down to +7 +Sheol in peace. + +6 + +b + + c + +But show loving devotion + + to the sons of Barzil- +lai the Gileadite, and let them be among those +who eat at your table, because they stood by me +8 +when I fled from your brother Absalom. + +Keep an eye on Shimei the son of Gera, the Ben- +jamite from Bahurim who is with you. He called +down bitter curses against me on the day I went +to Mahanaim, but when he came down to meet +me at the Jordan, I swore to him by the LORD: ‘I +will never put you to the sword.’ +Now therefore, +do not hold him guiltless, for you are a wise man. +You know what you ought to do to him to bring +David’s Reign and Death (1 Chron. 29:26–30) +his gray head down to Sheol in blood.” +10 + +9 + +11 + +Then David rested with his fathers and was +buried in the City of David. +The length of +David’s reign over Israel was forty years—seven +years in Hebron and thirty-three years in Jerusa- +12 +lem. + +So Solomon sat on the throne of his father Da- + +The Execution of Adonijah +vid, and his kingdom was firmly established. +13 + +1 Kings 2:27 | 309 + +16 + +come to him from the LORD. +one request of you; do not deny me.” +17 +“State your request,” she told him. + +So now I have just + +Adonijah replied, “Please speak to King Solo- +mon, since he will not turn you down. Let him +18 +give me Abishag the Shunammite as my wife.” + +“Very well,” Bathsheba replied. “I will speak to + +19 +the king for you.” + +So Bathsheba went to King Solomon to speak +to him for Adonijah. The king stood up to greet +her, bowed to her, and sat down on his throne. +Then the king had a throne brought for his +20 +mother, who sat down at his right hand. + +“I have just one small request of you,” she said. + +“Do not deny me.” + +“Make your request, my mother,” the king re- +21 +plied, “for I will not deny you.” + +So Bathsheba said, “Let Abishag the Shunam- +mite be given to your brother Adonijah as his +22 +wife.” + +King Solomon answered his mother, “Why do +you request Abishag the Shunammite for Adoni- +jah? Since he is my older brother, you might as +well request the kingdom for him and for Abi- +23 +athar the priest and for Joab son of Zeruiah!” + +24 + +Then King Solomon swore by the LORD: “May +God punish me, and ever so severely, if Adonijah +has not made this request at the expense of his +life. +And now, as surely as the LORD lives—the +One who established me, who set me on the +throne of my father David, and who founded for +me a dynasty as He promised—surely Adonijah +25 +shall be put to death today!” + +So King Solomon gave orders to Benaiah son of +Jehoiada, and he struck down Adonijah and he +26 +died. + +“Yes, in peace,” he replied. +something to tell you.” +15 +“Say it,” she answered. + +Now Adonijah son of Haggith went to Bath- +sheba the mother of Solomon, and she asked, “Do +you come in peace?” + +14 + +Then he said, “I have + +Then the king said to Abiathar the priest, “Go +back to your fields in Anathoth. Even though you +deserve to die, I will not put you to death at this +time, since you carried the ark of the Lord GOD +before my father David, and you suffered +through all that my father suffered.” +So Solo- +mon banished Abiathar from the priesthood of +the LORD and thus fulfilled the word that the +LORD had spoken at Shiloh against the house of +Eli. +; also in verse 32; see 2 Samuel 17:25. +loving devotion + +He stained with innocent blood the + +chesed +Hebrew; LXX +love + +b 5 + +27 + +kindness + +goodness + are translated here and in most cases +, + +faithfulness + +, and + +, + +, + +“You know that the kingship was mine,” he +said. “All Israel expected that I should reign, but +a 5 Jether +the kingship has turned to my brother, for it has +belt around my waist and the sandals on my feet. + +Ithra + +c 7 + + is a variant of + +mercy +throughout the Scriptures as + +loyalty to a covenant + +, as well as + +. + +Forms of the Hebrew +; the range of meaning includes + + 310 | 1 Kings 2:28 + +The Execution of Joab + +28 + +When the news reached Joab, who had con- +spired with Adonijah but not with Absalom, he +fled to the tent of the LORD and took hold of the +29 +horns of the altar. + +It was reported to King Solomon: “Joab has fled +to the tent of the LORD and is now beside the al- +tar.” + +So Solomon sent Benaiah son of Jehoiada, saying, +30 +“Go, strike him down!” + +And Benaiah entered the tent of the LORD and + +said to Joab, “The king says, ‘Come out!’ + +” + +But Joab replied, “No, I will die here.” + +So Benaiah relayed the message to the king, say- +31 +ing, “This is how Joab answered me.” + +32 + +And the king replied, “Do just as he says. Strike +him down and bury him, and so remove from me +and from the house of my father the innocent +The LORD will bring his +blood that Joab shed. +bloodshed back upon his own head, for without +the knowledge of my father David he struck +down two men more righteous and better than +he when he put to the sword Abner son of Ner, +commander of Israel’s army, and Amasa son of +Their +Jether, commander of Judah’s army. +blood will come back upon the heads of Joab and +his descendants forever; but for David, his de- +scendants, his house, and his throne, there shall +34 +be peace from the LORD forever.” + +33 + +35 + +So Benaiah son of Jehoiada went up, struck +down Joab, and killed him. He was buried at his +And the king ap- +own home in the wilderness. +pointed Benaiah son of Jehoiada in Joab’s place +over the army, and he appointed Zadok the priest +The Execution of Shimei +in Abiathar’s place. +36 + +37 + +Then the king summoned Shimei and said to +him, “Build a house for yourself in Jerusalem and +live there, but do not go anywhere else. +On the +day you go out and cross the Kidron Valley, know +for sure that you will die; your blood will be on +38 +your own head.” + +“The sentence is fair,” Shimei replied. “Your +servant will do as my lord the king has spoken.” +39 +And Shimei lived in Jerusalem for a long time. + +a + +After three years, however, two of Shimei’s + king of +Maoch + +slaves ran away to Achish son of Maacah, +a 39 Maacah + + is a variant of + +; see 1 Samuel 27:2. + +Gath. And Shimei was told, “Look, your slaves are +40 +in Gath.” + +So Shimei saddled his donkey and set out to +Achish at Gath in search of his slaves, and he +41 +brought them back from Gath. + +42 + +When Solomon was told that Shimei had gone +from Jerusalem to Gath and had returned, +the +king summoned Shimei and said to him, “Did I +not make you swear by the LORD and warn you, +‘On the day you leave and go elsewhere, know for +sure that you will die’? And you told me, ‘The sen- +So why have you +tence is fair; I will comply.’ +not kept your oath to the LORD and the com- +44 +mand that I gave you?” + +43 + +45 + +The king also said, “You know in your heart all +the evil that you did to my father David. There- +fore the LORD will bring your evil back upon +But King Solomon will be blessed +your head. +and David’s throne will remain secure before the +46 +LORD forever.” + +Then the king commanded Benaiah son of Je- +hoiada, and he went out and struck Shimei down, +and he died. Thus the kingdom was firmly estab- +Solomon’s Prayer for Wisdom +lished in the hand of Solomon. +(2 Chron.1:1–13 ; Ps. 45:1–17 ; Ps. 72:1–20) + +3 + +Later, Solomon formed an alliance with +Pharaoh king of Egypt by marrying his +daughter. Solomon brought her to the City of Da- +vid until he had finished building his palace and +the house of the LORD, as well as the wall around +2 +Jerusalem. + +3 + +The people, however, were still sacrificing on +the high places because a house for the Name of +And Solomon +the LORD had not yet been built. +loved the LORD and walked in the statutes of his +father David, except that he sacrificed and +4 +burned incense on the high places. + +Now the king went to Gibeon to sacrifice there, +for it was the great high place. Solomon offered a +5 +thousand burnt offerings on the altar there. + +One night at Gibeon the LORD appeared to Sol- +omon in a dream, and God said, “Ask, and I will +6 +give it to you!” + +Solomon replied, “You have shown much loving +devotion to Your servant, my father David, +because he walked before You in faithfulness, +righteousness, and uprightness of heart. And You + + have maintained this loving devotion by giving +7 +him a son to sit on his throne this very day. + +him, I realized that he was not the son I had +22 +borne.” + +1 Kings 4:6 | 311 + +8 + +And now, O LORD my God, You have made Your +servant king in my father David’s place. But I am +only a little child, not knowing how to go out or +Your servant is here among the people +come in. +You have chosen, a people too numerous to count +9 +or number. + +Therefore give Your servant an understanding +heart to judge Your people and to discern be- +tween good and evil. For who is able to govern + a +10 +this great people of Yours?” + +11 + +Now it pleased the Lord + + that Solomon had +made this request. +So God said to him, “Since +you have asked for this instead of requesting +long life or wealth for yourself or death for your +enemies—but you have asked for discernment to +behold, I will do what you +administer justice— +have asked. I will give you a wise and discerning +heart, so that there will never have been another +13 +like you, nor will there ever be. + +12 + +14 + +Moreover, I will give you what you did not re- +quest—both riches and honor—so that during +all your days no man in any kingdom will be your +equal. +So if you walk in My ways and keep My +statutes and commandments, just as your father +15 +David did, I will prolong your days.” + +Then Solomon awoke, and indeed it had been +a dream. So he returned to Jerusalem, stood +before the ark of the covenant of the Lord, and +offered burnt offerings and peace offerings. Then +Solomon Judges Wisely +he held a feast for all his servants. + +16 + +At that time two prostitutes came to the king + +17 +and stood before him. + +19 + +18 + +One woman said, “Please, my lord, this woman +and I live in the same house, and I gave birth +On the third day +while she was in the house. +after I gave birth, this woman also had a baby. We +were alone, with no one in the house but the two +During the night this woman’s son died +of us. +So she got up +because she rolled over on him. +in the middle of the night and took my son from +my side while I was asleep. She laid him in her +The +bosom and put her dead son at my bosom. +next morning, when I got up to nurse my son, I +a 10 +discovered he was dead. But when I examined + +b 3 Shisha + +Adonai + +20 + +21 + +“No,” said the other woman, “the living one is + +my son and the dead one is your son.” + +But the first woman insisted, “No, the dead one is +yours and the living one is mine.” So they argued +23 +before the king. + +Then the king replied, “This woman says, ‘My +son is alive and yours is dead,’ but that woman +24 +says, ‘No, your son is dead and mine is alive.’ + +” + +25 + +The king continued, “Bring me a sword.” So +and the king de- +they brought him a sword, +clared, “Cut the living child in two and give half +26 +to one and half to the other.” + +Then the woman whose son was alive spoke to +the king because she yearned with compassion +for her son. “Please, my lord,” she said, “give her +the living baby. Do not kill him!” + +But the other woman said, “He will be neither +27 +mine nor yours. Cut him in two!” + +Then the king gave his ruling: “Give the living +baby to the first woman. By no means should you +28 +kill him; she is his mother.” + +When all Israel heard of the judgment the king +had given, they stood in awe of him, for they saw +that the wisdom of God was in him to administer +Solomon’s Princes +justice. + +4 + +So King Solomon ruled over Israel, +these were his chief officials: + +3 +Azariah son of Zadok was the priest; + +2 + +and + +b + +Elihoreph and Ahijah, the sons of Shisha, + +were secretaries; +Jehoshaphat son of Ahilud was the +4 +recorder; + +Benaiah son of Jehoiada was in charge of + +the army; +5 +Zadok and Abiathar were priests; + +Azariah son of Nathan was in charge of + +the governors; +Zabud son of Nathan was a priest and +6 +adviser to the king; + + c + +Ahishar was in charge of the palace; + +Hebrew + +; also in verse 15 + +c 6 Adoniram + +Adoram + is also called + +20:25, and 1 Chron. 18:16. + + is a variant of + + and + +Seraiah + +and Adoniram +Sheva +Shavsha +of the forced labor. +Hadoram + + son of Abda was in charge + +, + +, and +; see 2 Samuel 20:24 and 2 Chronicles 10:18. + +; see 2 Samuel 8:17, 2 Samuel + + 312 | 1 Kings 4:7 + +Solomon’s Twelve Officers + +7 + +Solomon had twelve governors over all Israel to +provide food for the king and his household. Each +one would arrange provisions for one month of +and these were their names: +the year, + +8 + +9 +Ben-hur in the hill country of Ephraim; + +Ben-deker in Makaz, in Shaalbim, in Beth- + +10 +shemesh, and in Elon-beth-hanan; + +Ben-hesed in Arubboth (Socoh and all the + + a +11 +land of Hepher belonged to him); + +Ben-abinadab in Naphath-dor + +12 +a daughter of Solomon, was his wife); + + (Taphath, + +Baana son of Ahilud in Taanach, in +Megiddo, and in all of Beth-shean next to +Zarethan below Jezreel, from Beth-shean to +13 +Abel-meholah and on past Jokmeam; + +Ben-geber in Ramoth-gilead (the villages +of Jair son of Manasseh in Gilead belonged +to him, as well as the region of Argob in +Bashan with its sixty great cities with walls +14 +and bronze bars); +15 + +Ahinadab son of Iddo in Mahanaim; + +Ahimaaz in Naphtali (he had married + +16 +Basemath, a daughter of Solomon); +17 + +Baana son of Hushai in Asher and in Aloth; + +18 + +19 + +Jehoshaphat son of Paruah in Issachar; + +Shimei son of Ela in Benjamin; + +Geber son of Uri in the land of Gilead, +including the territories of Sihon king of the +Amorites and of Og king of Bashan. + +b + +There was also one governor in the land of +Solomon’s Prosperity +Judah. +20 + + c + +21 + +The people of Judah and Israel were as numer- +ous as the sand on the seashore, and they were +eating and drinking and rejoicing. +And Solo- +mon reigned over all the kingdoms from the Eu- + to the land of the Philistines, as far as +phrates +the border of Egypt. These kingdoms offered +tribute and served Solomon all the days of his +22 +life. + +d + +e + +23 + + f + +24 + +fat oxen, twenty range oxen, and a hundred +sheep, as well as deer, gazelles, roebucks, and fat- +tened poultry. +For Solomon had dominion +over everything west of the Euphrates +—over all +25 +the kingdoms from Tiphsah to Gaza—and he had +peace on all sides. +Throughout the days of Sol- +omon, Judah and Israel dwelt securely from Dan +to Beersheba, each man under his own vine and + g +26 +his own fig tree. + +h + +27 + + stalls for his chariot +Solomon had 4,000 +horses and 12,000 horses. +Each month the +governors in turn provided food for King Solo- +28 +mon and all who came to his table. They saw to +Each one also +it that nothing was lacking. +brought to the required place their quotas of +barley and straw for the chariot horses and other +Solomon’s Wisdom +horses. +29 + +30 + +And God gave Solomon wisdom, exceedingly +deep insight, and understanding beyond meas- +Solomon’s +ure, like the sand on the seashore. +wisdom was greater than that of all the men of +31 +the East, greater than all the wisdom of Egypt. +He was wiser than all men—wiser than Ethan +the Ezrahite, and wiser than Heman, Calcol, and +Darda, the sons of Mahol. And his fame spread +32 +throughout the surrounding nations. + +Solomon composed three thousand proverbs, +33 +and his songs numbered a thousand and five. +He spoke of trees, from the cedar in Lebanon +to the hyssop growing in the wall, and he taught +34 +about animals, birds, reptiles, and fish. + +So men of all nations came to listen to Solo- +mon’s wisdom, sent by all the kings of the earth, +Preparations for the Temple (2 Chr. 2:1–10) +who had heard of his wisdom. + +5 + +Now when Hiram king of Tyre heard that +Solomon had been anointed king in his +father’s place, he sent envoys to Solomon; for Hi- +2 +ram had always been a friend of David. + +3 +And Solomon relayed this message to Hiram: + +“As you are well aware, due to the wars +waged on all sides against my father David, +he could not build a house for the Name of +b 19 +the LORD his God until the LORD had put his +d 22 30 cors + +Solomon’s provisions for a single day were +ten + +in all the heights of Dor +And he was the one governor in the land. + +a 11 +thirty cors of fine flour, + + sixty cors of meal, + +Naphath-dor + +c 21 + +Naphoth-dor +the River + +; + +Or +Hebrew +187 bushels or 6,600 liters (probably about 5.5 tons or 5 metric tons of flour). +40,000 +or 13,200 liters (probably about 11 tons or 10 metric tons of meal). +(see also 2 Chronicles 9:25); Hebrew + +Hebrew +horsemen + + is a variant of + +charioteers + +h 26 + +f 24 + + or + +Or + +Or + +; see Joshua 11:2. +e 22 60 cors +; also in verse 24 +beyond the River + +Some LXX manuscripts; +g 26 + + is approximately + is approximately 375 bushels +Some LXX manuscripts + + 4 + +But now the LORD +enemies under his feet. +my God has given me rest on every side, and +5 +there is no adversary or crisis. + +So behold, I plan to build a house for the +Name of the LORD my God, according to +what the LORD said to my father David: ‘I will +put your son on your throne in your place, +6 +and he will build the house for My Name.’ + +Now therefore, order that cedars of Leba- +non be cut down for me. My servants will be +with your servants, and I will pay your serv- +ants whatever wages you set, for you know +that there are none among us as skilled in +Hiram’s Reply to Solomon (2 Chron. 2:11–18) +logging as the Sidonians.” + +7 + +8 + +When Hiram received Solomon’s message, he +rejoiced greatly and said, “Blessed be the LORD +this day! He has given David a wise son over this +Then Hiram sent a reply to Solo- +great people!” +mon, saying: + +b + +9 + + a +“I have received your message; I will do all +you desire regarding the cedar and cypress +My servants will haul the logs from +timber. + and I will float them as +Lebanon to the Sea, +rafts by sea to the place you specify. There I +will separate the logs, and you can take them +away. And in exchange, you can meet my +needs by providing my household with +food.” + +10 + +11 + + c + +So Hiram provided Solomon with all the cedar +and year after +and cypress timber he wanted, +year Solomon would provide Hiram with 20,000 +d +cors of wheat + as food for his household, as well +12 +as 20,000 baths of pure olive oil. + +e + +And the LORD gave Solomon wisdom, as He +had promised him. There was peace between Hi- +ram and Solomon, and the two of them made a +Solomon’s Labor Force +treaty. +13 + +14 + +Then King Solomon conscripted a labor force +He sent them to + +juniper +a 8 +of 30,000 men from all Israel. + +pine + +b 9 + +fir + +6 + +1 Kings 6:7 | 313 + +Lebanon in monthly shifts of 10,000 men, so that +they would spend one month in Lebanon and +two months at home. And Adoniram was in +15 +charge of the forced labor. + +16 + + f + +Solomon had 70,000 porters and 80,000 +not including + foremen who supervised the workers. + +stonecutters in the mountains, +17 +his 3,300 + +18 + +And the king commanded them to quarry +large, costly stones to lay the foundation of the +temple with dressed stones. +So Solomon’s and +Hiram’s builders, along with the Gebalites, quar- +ried the stone and prepared the timber and stone +Temple Construction Begins (2 Chron. 3:1–2) +for the construction of the temple. + + g + +In the four hundred and eightieth + year after +the Israelites had come out of the land of +h +Egypt, in the fourth year of Solomon’s reign over + the second month, he +Israel, in the month of Ziv, +2 +began to build the house of the LORD. + +i + +3 + +The house that King Solomon built for the LORD +was sixty cubits long, twenty cubits wide, and + j +thirty cubits high. +The portico at the front of +the main hall of the temple was twenty cubits +long, extending across the width of the temple +and projecting out ten cubits + in front of the +4 +temple. + + k + +He also had narrow windows framed high in the + +The Chambers +temple. +5 + +6 + +Against the walls of the temple and the inner +sanctuary, Solomon built a chambered structure +around the temple, in which he constructed the +l +The bottom floor was five cubits +side rooms. + and the third +wide, +floor seven cubits. + He also placed offset ledges +around the outside of the temple, so that nothing +7 +would be inserted into its walls. + +n + the middle floor six cubits, + +m + +The temple was constructed using finished +stones cut at the quarry, so that no hammer or +chisel or any other iron tool was heard in the +c 11 20,000 cors +temple while it was being built. + +Or + + or + + or + +d 11 +is approximately 124,800 bushels or 4.4 million liters (probably about 3,800 tons or 3,400 metric tons of wheat). +twenty cors of pure oil +covenant +h 1 Ziv + + is approximately 116,000 gallons or 440,000 liters of olive oil; Hebrew +four hundred and fortieth + +; also in verse 10 +20,000 baths +twenty cors of pressed oil + +That is, the Mediterranean Sea, also called the Great Sea + +LXX (see also 2 Chronicles 2:10); + +berit +g 1 + +3,600 + +e 12 + +f 16 + + or + +Forms of the Hebrew +; see 2 Chronicles 2:18. + + are translated in most passages as +Hebrew; LXX + +. + + was the second month of the ancient Hebrew lunar calendar, usually occurring within the months of April and May; + +k 3 10 +The house was approximately 90 feet long, 30 feet wide, and 45 feet high (27.4 meters long, 9.1 me- + +l 6 5 cubits + +i 2 + +Hebrew; some LXX manuscripts +j 3 20 cubits + +also in verse 37. +cubits +ters wide, and 13.7 meters high). +m 6 6 cubits + + is approximately 30 feet or 9.1 meters; also in verses 16 and 20. +n 6 7 cubits + + is approximately 15 feet or 4.6 meters; also in verses 23–26. + + is approximately 7.5 feet or 2.3 meters; + +also in vv. 10 and 24. + + is approximately 9 feet or 2.7 meters. + + is approx. 10.5 feet or 3.2 meters. + + 314 | 1 Kings 6:8 + +8 + + a + +The Cherubim (2 Chronicles 3:10–13) + +The entrance to the bottom + + floor was on the +south side of the temple. A stairway led up to the +9 +middle level, and from there to the third floor. + +10 + +So Solomon built the temple and finished it, +He +roofing it with beams and planks of cedar. +built chambers all along the temple, each five cu- +bits high and attached to the temple with beams +God’s Promise to Solomon +of cedar. +11 + +12 + +Then the word of the LORD came to Solomon, +“As for this temple you are building, if +saying: +you walk in My statutes, carry out My ordi- +nances, and keep all My commandments by +walking in them, I will fulfill through you the +And I will +promise I made to your father David. +dwell among the Israelites and will not abandon +The Temple’s Interior (2 Chronicles 3:5–9) +My people Israel.” +14 +15 + +13 + +So Solomon built the temple and finished it. +He lined the interior walls with cedar paneling +from the floor of the temple to the ceiling, and he +16 +covered the floor with cypress + + boards. + + b + +He partitioned off the twenty cubits at the rear +of the temple with cedar boards from floor to +ceiling to form within the temple an inner sanc- +And the main hall +tuary, the Most Holy Place. +18 +in front of this room was forty cubits long. + +17 + +d + +c + +The cedar paneling inside the temple was +carved with gourds and open flowers. Every- +19 +thing was cedar; not a stone could be seen. + +20 + +Solomon also prepared the inner sanctuary +within the temple to set the ark of the covenant +The inner sanctuary was +of the LORD there. +twenty cubits long, twenty cubits wide, and +twenty cubits high. He overlaid the inside with +pure gold, and he also overlaid the altar of +21 +cedar. + + f +So Solomon overlaid the inside of the temple + +e + +22 + +with pure gold, and he extended gold chains +across the front of the inner sanctuary, which +So he overlaid with +was overlaid with gold. +gold the whole interior of the temple, until eve- +rything was completely finished. He also overlaid +with gold the entire altar that belonged to the in- +ner sanctuary. +a 8 +d 17 40 cubits +tains) + +LXX and Targum; Hebrew + +g38 Bul + +middle + +b 15 + +pine + + or + +Or + +juniper +e 20 + + is approximately 60 feet or 18.3 meters. + +23 + +24 + +In the inner sanctuary he made two cherubim, +each ten cubits high, out of olive wood. +One +wing of the first cherub was five cubits long, and +the other wing was five cubits long as well. So the +The second +full wingspan was ten cubits. +cherub also measured ten cubits; both cherubim +and the height of +had the same size and shape, +27 +each cherub was ten cubits. + +26 + +25 + +And he placed the cherubim inside the inner- +most room of the temple. Since their wings were +spread out, the wing of the first cherub touched +one wall, while the wing of the second cherub +touched the other wall, and in the middle of the +He also overlaid +room their wingtips touched. +29 +the cherubim with gold. + +28 + +30 + +Then he carved the walls all around the tem- +ple, in both the inner and outer sanctuaries, with +carved engravings of cherubim, palm trees, and +And he overlaid the temple floor +open flowers. +The Doors +with gold in both the inner and outer sanctuaries. +31 + +32 + +For the entrance to the inner sanctuary, Solo- +mon constructed doors of olive wood with five- +The double doors were made +sided doorposts. +of olive wood, and he carved into them cherubim, +palm trees, and open flowers and overlaid the +33 +cherubim and palm trees with hammered gold. + +34 + +In the same way he made four-sided doorposts +The +of olive wood for the sanctuary entrance. +35 +two doors were made of cypress wood, and each +had two folding panels. +He carved into them +cherubim, palm trees, and open flowers, and he +overlaid them with gold hammered evenly over +The Courtyard +the carvings. +36 + +Solomon built the inner courtyard with three +rows of dressed stone and one row of trimmed +37 +cedar beams. + +38 + +The foundation of the house of the LORD was +laid in the fourth year of Solomon’s reign, in the +g +In the eleventh year, in the +month of Ziv. +month of Bul, + the eighth month, the temple was +finished in every detail and according to every +specification. So he built the temple in seven +years. +fir +with cedar + +made gold chains to draw (the cur- + +the Holy of Holies + +c 16 + +f 21 + + or +Or + +; also in verse 34 + +Or + +Or + + was the eighth month of the ancient Hebrew lunar calendar, usually occurring within the months of Octo- + +ber and November. + + Solomon’s Palace Complex + +1 Kings 7:26 | 315 + +7 + +2 +palace. + +Solomon, however, took thirteen years to +complete the construction of his entire + +a + +He built the House of the Forest of Lebanon a +hundred cubits long, fifty cubits wide, and thirty +cubits high, + with four rows of cedar pillars sup- +3 +porting the cedar beams. + +5 + +The house was roofed with cedar above the +4 +beams that rested on the pillars—forty-five +beams, fifteen per row. +There were three rows + b +of high windows facing one another in three +tiers. + had rectangular frames, +with the openings facing one another in three +6 +tiers. + +All the doorways + +c + +Solomon made his colonnade fifty cubits long +and thirty cubits wide, + with a portico in front of +7 +it and a canopy with pillars in front of the portico. + +In addition, he built a hall for the throne, the +Hall of Justice, where he was to judge. It was pan- +8 +eled with cedar from floor to ceiling. + +d + +And the palace where Solomon would live, set +further back, was of similar construction. He also +made a palace like this hall for Pharaoh’s daugh- +9 +ter, whom he had married. + +All these buildings were constructed with +costly stones, cut to size and trimmed with saws +inside and out from the foundation to the eaves, +10 +and from the outside to the great courtyard. +The foundations were laid with large, costly + and some eight cu- +Above these were costly stones, cut + +stones, some ten cubits long +bits long. +12 +to size, and cedar beams. + +11 + + e + +f + +The great courtyard was surrounded by three +rows of dressed stone and a row of trimmed +cedar beams, as were the inner courtyard and +The Pillars and Capitals (2 Chr. 3:14–17) +portico of the house of the LORD. +13 + + g + +14 + +Now King Solomon sent to bring Huram + + from +He was the son of a widow from the tribe + +Tyre. +a 2 + +b 5 + +doorways and doorposts + +c 6 + +of Naphtali, and his father was a man of Tyre, a +craftsman in bronze. Huram had great skill, un- +derstanding, and knowledge for every kind of +bronze work. So he came to King Solomon and +15 +carried out all his work. + +h +He cast two pillars of bronze, each eighteen cu- +16 +bits high and twelve cubits in circumference. +i +He also made two capitals of cast bronze to set +17 +on top of the pillars, each capital five cubits high. +For the capitals on top of the pillars he made a +network of lattice, with wreaths of chainwork, +18 +seven for each capital. + +j + +k + +20 + +Likewise, he made the pillars with two rows of +19 +pomegranates around each grating to cover each +And the capitals atop +capital atop the pillars. +the pillars in the portico were shaped like lilies, +On the capitals of both pil- +four cubits high. +lars, just above the rounded projection next to +the network, were the two hundred pomegran- +21 +ates in rows encircling each capital. + +l +Thus he set up the pillars at the portico of the +m +temple. The pillar to the south he named Jachin, +22 +and the pillar to the north he named Boaz. + +And the tops of the pillars were shaped like lil- + +The Molten Sea +ies. So the work of the pillars was completed. +(2 Chronicles 4:1–5) + +23 + +n + +24 + +He also made the Sea of cast metal. It was cir- +cular in shape, measuring ten cubits from rim to +rim, five cubits in height, and thirty cubits in cir- +Below the rim, ornamental buds +cumference. +encircled it, ten per cubit all the way around the +25 +Sea, cast in two rows as a part of the Sea. + +The Sea stood on twelve oxen, three facing +north, three facing west, three facing south, and +three facing east. The Sea rested on them, with all +o +It was a +their hindquarters toward the center. + and its rim was fashioned +handbreadth thick, +like the brim of a cup, like a lily blossom. It could +hold two thousand baths. + +26 + +p + +d 7 + +Literally + +f 10 8 cubits + +The house was approximately 150 feet long, 75 feet wide, and 45 feet high (45.7 meters long, 22.9 meters wide, and 13.7 + +meters high). +(22.9 meters long and 13.7 meters wide). +Syriac and Vulgate; Hebrew +feet or 4.6 meters. +, a variant of + is approximately 12 feet or 3.7 meters. +verses 40 and 45; see 2 Chronicles 4:11. Note that this is not Hiram king of Tyre mentioned in 1 Kings 5:1. +bits +was approximately 27 feet high and 18 feet in circumference (8.2 meters high and 5.5 meters in circumference). +Hebrew; LXX +n 23 +or 1.8 meters; also in verse 38. + +from floor to floor +The colonnade was approximately 75 feet long and 45 feet wide +Hiram +g 13 + is approx. 15 +; also in +i 16 5 cu- +Each pillar +in Him is strength + is approximately 6 feet + + is approximately 7.5 feet or 2.3 meters. + +one for each capital + + probably means + + probably means + +Huram +h 15 + +He establishes + +e 10 10 cubits + +k 19 4 cubits + +l 21 Jachin + +m 21 Boaz + +Hebrew + +j 17 + +. + +o 26 A handbreadth + +. + +The Sea was approximately 15 feet from rim to rim, 7.5 feet in height, and 45 feet in circumference (4.6 meters from + +p 26 2,000 baths + +rim to rim, 2.3 meters in height, and 13.7 meters in circumference). +centimeters. + + is approximately 11,600 gallons or 44,000 liters; LXX does not include this sentence. + + is approximately 2.9 inches or 7.4 + + 316 | 1 Kings 7:27 + +The Ten Bronze Stands + +27 + +In addition, he made ten movable stands of +bronze, each four cubits long, four cubits wide, +28 +and three cubits high. + +a + +29 + +This was the design of the stands: They had +and on the +side panels attached to uprights, +panels between the uprights were lions, oxen, +and cherubim. On the uprights was a pedestal +above, and below the lions and oxen were +30 +wreaths of beveled work. + +b + +31 + +Each stand had four bronze wheels with +bronze axles and a basin resting on four sup- +The opening +ports, with wreaths at each side. +to each stand inside the crown at the top was one +c +cubit deep, + with a round opening like the design +of a pedestal, a cubit and a half wide. + And +around its opening were engravings, but the +32 +panels of the stands were square, not round. + +33 + +There were four wheels under the panels, and +the axles of the wheels were attached to the +stand; each wheel was a cubit and a half in diam- +The wheels were made like chariot +eter. +wheels; their axles, rims, spokes, and hubs were +34 +all of cast metal. + +35 + +Each stand had four handles, one for each cor- +d +At the top of + +ner, projecting from the stand. +each stand was a circular band half a cubit high. +The supports and panels were cast as a unit with +36 +the top of the stand. + +He engraved cherubim, lions, and palm trees +on the surfaces of the supports and panels, wher- +37 +ever each had space, with wreaths all around. +In this way he made the ten stands, each with + +The Ten Bronze Basins +the same casting, dimensions, and shape. +(2 Chronicles 4:6–8) + +38 + + e + +He also made ten bronze basins, each holding + and measuring four cubits across, + +forty baths +39 +one basin for each of the ten stands. + +He set five stands on the south side of the tem- +ple and five on the north, and he put the Sea +on the south side, at the southeast corner of the +a 27 +temple. + +b 31 One cubit + +Completion of the Bronze Works +(2 Chronicles 4:11–18) + +40 + +f + +Additionally, Huram made the pots, + + shovels, + +and sprinkling bowls. + +So Huram finished all the work that he had +undertaken for King Solomon in the house of the +41 +LORD: + +the two pillars; + +the two bowl-shaped capitals atop the +pillars; + +the two sets of network covering both +42 +bowls of the capitals atop the pillars; + +the four hundred pomegranates for the + +two sets of network (two rows of pome- +granates for each network covering both the +43 +bowl-shaped capitals atop the pillars); + +the ten stands; + +44 +the ten basins on the stands; + +the Sea; + +45 +the twelve oxen underneath the Sea; + +and the pots, shovels, and sprinkling + +bowls. + +46 + +47 + +All the articles that Huram made for King Solo- +mon in the house of the LORD were made of bur- +nished bronze. +The king had them cast in clay +g +molds in the plain of the Jordan between Succoth +and Zarethan. +Solomon left all these articles +unweighed, because there were so many. The +Completion of the Gold Furnishings +weight of the bronze could not be determined. +(2 Chronicles 4:19–22) + +48 + +Solomon also made all the furnishings for the + +house of the LORD: + +the golden altar; + +the golden table on which was placed the +49 +Bread of the Presence; + +the lampstands of pure gold in front of +the inner sanctuary, five on the right side +and five on the left; +50 +the gold flowers, lamps, and tongs; + +the pure gold basins, wick trimmers, +sprinkling bowls, ladles, and censers; + +c 31 A cubit and a half + +The stands were approximately 6 feet in length and width, and 4.5 feet high (1.8 meters in length and width, and 1.4 + +e 38 40 baths + + is approximately 18 inches or 45.7 centimeters. + +meters high). +2.25 feet or 68.6 centimeters wide; similarly in verse 32. +high. +(see also verse 45 and 2 Chronicles 4:11); many other Hebrew manuscripts +see 2 Chronicles 4:17. + + is approximately 232 gallons or 880 liters. + + is approximately + is approximately 9 inches or 22.9 centimeters +basins +Zeredah +Many Hebrew manuscripts, LXX, Syriac, and Vulgate +; + + is a variant of + +g 46 Zarethan + +d 35 Half a cubit +f 40 + + and the gold hinges for the doors of the +inner temple (that is, the Most Holy Place +as well as for the doors of the main hall of +the temple. + +51 + +) + + a + +So all the work that King Solomon had per- +formed for the house of the LORD was com- +pleted. + +Then Solomon brought in the items his father Da- +vid had dedicated—the silver, the gold, and the +furnishings—and he placed them in the treasur- +The Ark Enters the Temple (2 Chron. 5:1–14) +ies of the house of the LORD. + +8 + +b + +2 + +At that time Solomon assembled before him +in Jerusalem the elders of Israel—all the +tribal heads and family leaders of the Israelites— +to bring up the ark of the covenant of the LORD +And all the men of +from Zion, the City of David. +Israel came together to King Solomon at the feast +3 +in the seventh month, + + the month of Ethanim. +4 +When all the elders of Israel had arrived, the +and they brought up the +priests took up the ark, +ark of the LORD and the Tent of Meeting with all +its sacred furnishings. So the priests and Levites +5 +carried them up. + +c + +There, before the ark, King Solomon and the +whole congregation of Israel who had assembled +with him sacrificed so many sheep and oxen that +6 +they could not be counted or numbered. + +d + +Then the priests brought the ark of the cove- +nant of the LORD to its place in the inner sanctu- +ary of the temple, the Most Holy Place, + beneath +For the cherubim +the wings of the cherubim. +spread their wings over the place of the ark and +8 +overshadowed the ark and its poles. + +7 + + e + +The poles extended far enough that their ends +were visible from the Holy Place in front of the +inner sanctuary, but not from outside the Holy +9 +Place; + + and they are there to this day. + +f + +There was nothing in the ark except the two +stone tablets that Moses had placed in it at Ho- + where the LORD had made a covenant with +reb, +the Israelites after they had come out of the land +10 +of Egypt. + +11 + +1 Kings 8:23 | 317 + +because of the cloud. For the glory of the LORD +Solomon Blesses the LORD (2 Chron. 6:1–11) +filled the house of the LORD. +12 + +Then Solomon declared: + + g + +“The LORD + +13 + + has said that He would dwell + +in the thick cloud. + +14 + +I have indeed built You an exalted house, +a place for You to dwell forever.” + +And as the whole assembly of Israel stood +15 +there, the king turned around and blessed them +all + +and said: + +16 + +“Blessed be the LORD, the God of Israel, who +has fulfilled with His own hand what He +spoke with His mouth to my father David, +‘Since the day I brought My people +saying, +Israel out of Egypt, I have not chosen a city +from any tribe of Israel in which to build a +house so that My Name would be there. But I +have chosen David to be over My people +17 +Israel.’ + +18 + +Now it was in the heart of my father +David to build a house for the Name of the +But the LORD said +LORD, the God of Israel. +to my father David, ‘Since it was in your +heart to build a house for My Name, you have +Nev- +done well to have this in your heart. +ertheless, you are not the one to build it; but +your son, your own offspring, will build the +20 +house for My Name.’ + +19 + +Now the LORD has fulfilled the word that +He spoke. I have succeeded my father David, +and I sit on the throne of Israel, as the LORD +promised. I have built the house for the +And +Name of the LORD, the God of Israel. +there I have provided a place for the ark, +which contains the covenant of the LORD +that He made with our fathers when He +brought them out of the land of Egypt.” + +Solomon’s Prayer of Dedication +(2 Chronicles 6:12–42) + +21 + +22 + +Then Solomon stood before the altar of the +LORD in front of the whole assembly of Israel, +spread out his hands toward heaven, +and said: + +23 + +And when the priests came out of the Holy +so +Place, the cloud filled the house of the LORD +b 2 +a 50 +that the priests could not stand there to minister + +the Holy of Holies +c 2 Ethanim + +“O LORD, God of Israel, there is no God like +You in heaven above or on earth below, +keeping Your covenant of loving devotion + +Or +23:33–36. +of September and October. +mountain in the range containing Mount Sinai + +d 6 + +Or + +That is, the Feast of Tabernacles (or Booths or Shelters); similarly in verse 65; see Leviticus + was the seventh month of the ancient Hebrew lunar calendar, usually occurring within the months +That is, Mount Sinai, or possibly a + +The Lord has set the sun in the heavens, but + +the Holy of Holies +g 12 + +not from outside + +Literally + +e 8 + +f 9 + +Some LXX manuscripts + + 318 | 1 Kings 8:24 + +24 +with Your servants who walk before You +You have kept Your +with all their hearts. +promise to Your servant, my father David. +What You spoke with Your mouth You have +25 +fulfilled with Your hand this day. + +Therefore now, O LORD, God of Israel, +keep for Your servant, my father David, what +You promised when You said: ‘You will never +fail to have a man to sit before Me on the +throne of Israel, if only your descendants +guard their way to walk before Me as you +And now, O God of Israel, +have done.’ +please confirm what You promised to Your +27 +servant, my father David. + +26 + +28 + +But will God indeed dwell upon the earth? +The heavens, even the highest heavens, can- +not contain You, much less this temple I have + and plea of +built. +Your servant, O LORD my God, so that You +may hear the cry and the prayer that Your +29 +servant is praying before You today. + +Yet regard the prayer + +36 +their sins because You have afflicted them, +then may You hear from heaven and for- +give the sin of Your servants, Your people +Israel, so that You may teach them the good +way in which they should walk. May You +send rain on the land that You gave Your +37 +people as an inheritance. + +38 + +When famine or plague comes upon the +land, or blight or mildew or locusts or grass- +hoppers, or when their enemy besieges them +in their cities, whatever plague or sickness +then may whatever prayer or +may come, +petition Your people Israel make—each +knowing his own afflictions and spreading +be +out his hands toward this temple— +heard by You from heaven, Your dwelling +place. And may You forgive and act, and re- +pay each man according to all his ways, since +40 +You know his heart—for You alone know the +so that they may fear +hearts of all men— +You all the days they live in the land that You +41 +gave to our fathers. + +39 + +30 + +May Your eyes be open toward this temple +night and day, toward the place of which You +said, ‘My Name shall be there,’ so that You +may hear the prayer that Your servant prays +Hear the plea of Your +toward this place. +servant and of Your people Israel when they +pray toward this place. May You hear from +heaven, Your dwelling place. May You hear +31 +and forgive. + +When a man sins against his neighbor and +is required to take an oath, and he comes to +32 +take an oath before Your altar in this temple, +then may You hear from heaven and act. +May You judge Your servants, condemning +the wicked man by bringing down on his +own head what he has done, and justifying +the righteous man by rewarding him accord- +33 +ing to his righteousness. + +When Your people Israel are defeated be- +fore an enemy because they have sinned +against You, and they return to You and con- +34 +fess Your name, praying and pleading with +then may You hear +You in this temple, +from heaven and forgive the sin of Your peo- +ple Israel. May You restore them to the land +35 +You gave to their fathers. + +When the skies are shut and there is no +rain because Your people have sinned +against You, and they pray toward this place +and confess Your name, and they turn from + +42 + +And as for the foreigner who is not of Your +people Israel but has come from a distant +land because of Your name— +for they will +hear of Your great name and mighty hand +43 +and outstretched arm—when he comes and +prays toward this temple, +then may You +hear from heaven, Your dwelling place, and +do according to all for which the foreigner +calls to You. Then all the peoples of the earth +will know Your name and fear You, as do +Your people Israel, and they will know that +this house I have built is called by Your +44 +Name. + +When Your people go to war against their +enemies, wherever You send them, and +in the +when they pray to the LORD +45 +direction of the city You have chosen and the +house I have built for Your Name, +then +may You hear from heaven their prayer and +46 +their plea, and may You uphold their cause. + +When they sin against You—for there is no +one who does not sin—and You become an- +gry with them and deliver them to an enemy +47 +who takes them as captives to his own land, +and when they come +whether far or near, +to their senses in the land to which they were +taken, and they repent and plead with You in +the land of their captors, saying, ‘We have +sinned and done wrong; we have acted wick- +and when they return to You with all +edly,’ + +48 + + 49 + +their heart and soul in the land of the ene- +mies who took them captive, and when they +pray to You in the direction of the land that +You gave to their fathers, the city You have +chosen, and the house I have built for Your +then may You hear from heaven, +Name, +Your dwelling place, their prayer and peti- +tion, and may You uphold their cause. +May +You forgive Your people who have sinned +against You and all the transgressions they +have committed against You, and may You +grant them compassion in the eyes of their +51 +captors to show them mercy. + +50 + +52 + +For they are Your people and Your +inheritance; You brought them out of Egypt, +May Your eyes +out of the furnace for iron. +be open to the pleas of Your servant and of +Your people Israel, and may You listen to +them whenever they call to You. +For You, +O Lord GOD, have set them apart from all the +peoples of the earth as Your inheritance, as +You spoke through Your servant Moses +when You brought our fathers out of Egypt.” + +53 + +Solomon’s Benediction + +54 + +Now when Solomon had finished praying this +entire prayer and petition to the LORD, he got up +before the altar of the LORD, where he had been +kneeling with his hands spread out toward +And he stood and blessed the whole +heaven. +56 +assembly of Israel in a loud voice, saying: + +55 + +“Blessed be the LORD, who has given rest +to His people Israel according to all that He +promised. Not one word has failed of all the +good promises He made through His servant +57 +Moses. + +58 + +May the LORD our God be with us, as He +was with our fathers. May He never leave us +May He incline our hearts to +or forsake us. +Himself, to walk in all His ways and to keep +the commandments and statutes and ordi- +59 +nances He commanded our fathers. + +And may these words with which I have +made my petition before the LORD be near to +the LORD our God day and night, so that He +may uphold the cause of His servant and of +so +His people Israel as each day requires, +that all the peoples of the earth may know +that the LORD is God. There is no other! + +60 + +On the eighth day + +a 66 + +61 + +1 Kings 9:5 | 319 + +So let your heart be fully devoted to the +LORD our God, as it is this day, to walk in His +statutes and to keep His commandments.” + +Sacrifices of Dedication +(2 Chronicles 7:4–10) + +62 + +63 + +Then the king and all Israel with him offered +And Solomon of- +sacrifices before the LORD. +fered as peace offerings to the LORD 22,000 oxen +and 120,000 sheep. So the king and all the Israel- +64 +ites dedicated the house of the LORD. + +On that same day the king consecrated the +middle of the courtyard in front of the house of +the LORD, and there he offered the burnt offer- +ings, the grain offerings, and the fat of the peace +offerings, since the bronze altar before the LORD +65 +was too small to contain all these offerings. + +So at that time Solomon and all Israel +with him—a great assembly of people from +Lebo-hamath to the Brook of Egypt—kept the +feast before the LORD our God for seven days + a +66 +and seven more days—fourteen days in all. + +On the fifteenth day + + Solomon sent the people +away. So they blessed the king and went home, +joyful and glad in heart for all the good things +that the LORD had done for His servant David +The LORD’s Response to Solomon +and for His people Israel. +(2 Chronicles 7:11–22) + +9 + +Now when Solomon had finished building +the house of the LORD and the royal palace, +2 +and had achieved all that he had desired to do, +the LORD appeared to him a second time, as He +And the LORD + +had appeared to him at Gibeon. +said to him: + +3 + +“I have heard your prayer and petition be- +fore Me. I have consecrated this temple, +which you have built, by putting My Name +there forever; My eyes and My heart will be +4 +there for all time. + +5 + +And as for you, if you walk before Me as +your father David walked, with a heart of +integrity and uprightness, doing all I have +commanded you, and if you keep My statutes +then I will establish your +and ordinances, +royal throne over Israel forever, as I prom- +ised your father David when I said, ‘You will +never fail to have a man on the throne of +Israel.’ + +Hebrew + +, probably referring to the day following the seven-day feast; see 2 Chronicles 7:9–10. + + 320 | 1 Kings 9:6 + +6 + +7 + +But if indeed you or your sons turn away +from following Me and do not keep the com- +mandments and statutes I have set before +you, and if you go off to serve and worship +then I will cut off Israel from the +other gods, +land that I have given them, and I will banish +from My presence this temple I have sancti- +fied for My Name. Then Israel will become +an object of scorn and ridicule among all +8 +peoples. +a + +And when this temple has become a heap of +rubble, + all who pass by it will be appalled +and will hiss and say, ‘Why has the LORD +9 +done such a thing to this land and to this +And others will answer, ‘Because +temple?’ +they have forsaken the LORD their God who +brought their fathers out of the land of Egypt, +and have embraced other gods, worshiping +and serving them—because of this, the +LORD has brought all this disaster upon +them.’ + +Solomon’s Additional Achievements +(2 Chronicles 8:1–18) + +” + +10 + +11 + +Now at the end of the twenty years during +which Solomon built these two houses, the house +King Solo- +of the LORD and the royal palace, +mon gave twenty towns in the land of Galilee to +Hiram king of Tyre, who had supplied him with +12 +cedar and cypress + logs and gold for his every +So Hiram went out from Tyre to inspect +desire. +the towns that Solomon had given him, but he +13 +was not pleased with them. + + b + +c + +“What are these towns you have given me, my +brother?” asked Hiram, and he called them the +14 +Land of Cabul, + + as they are called to this day. + +d + +And Hiram had sent the king 120 talents of + +15 +gold. + +This is the account of the forced labor that King +Solomon imposed to build the house of the LORD, +his own palace, the supporting terraces, + and the +wall of Jerusalem, as well as Hazor, Megiddo, and +16 +Gezer. + +e + +Pharaoh king of Egypt had attacked and +a 8 +captured Gezer. He had set it on fire, killed the +b 11 + +c 13 Cabul + +juniper + +pine + +fir + +17 + + f + +g + +19 + +Baalath, and Tamar + +Canaanites who lived in the city, and given it as a +dowry to his daughter, Solomon’s wife. +So +18 +Solomon rebuilt Gezer, Lower Beth-horon, + in the Wilderness of Ju- + h +dah, +as well as all the store cities that Solo- +mon had for his chariots and horses +—whatever +he desired to build in Jerusalem, Lebanon, and +20 +throughout the land of his dominion. + +21 + +As for all the people who remained of the Amo- +rites, Hittites, Perizzites, Hivites, and Jebusites +their +(the people who were not Israelites)— +descendants who remained in the land, those +whom the Israelites were unable to devote to +destruction +—Solomon conscripted these peo- +22 +ple to be forced laborers, as they are to this day. + + i + +But Solomon did not consign any of the +Israelites to slavery, because they were his men +of war, his servants, his officers, his captains, and +23 +the commanders of his chariots and cavalry. +They were also the chief officers over Solo- +mon’s projects: 550 supervisors over the people +24 +who did the work. + +As soon as Pharaoh’s daughter had come up +from the City of David to the palace that Solomon +25 +had built for her, he built the supporting terraces. + +Three times a year Solomon offered burnt of- +ferings and peace offerings on the altar he had +built for the LORD, burning incense with them +26 +before the LORD. So he completed the temple. + + j + +27 + +King Solomon also assembled a fleet of ships at +k + in Edom, on +Ezion-geber, which is near Eloth +the shore of the Red Sea. +And Hiram sent his +28 +servants, sailors who knew the sea, to serve in +They sailed +the fleet with Solomon’s servants. +to Ophir and imported gold from there—420 +The Queen of Sheba (2 Chronicles 9:1–12) +talents + +—and delivered it to Solomon. + + l + +10 + +2 + +Now when the queen of Sheba heard +about the fame of Solomon concerning +the name of the LORD, she came to test him with +She arrived in Jerusalem +difficult questions. +with a very large caravan—with camels bearing +spices, gold in great abundance, and precious +stones. + +good-for-nothing + +d 14 120 talents + +And though this temple is now exalted + +Or +cherem + +Some LXX manuscripts, Syriac, and Arabic; Hebrew + + or +Tadmor + +e 15 + + or +g 18 + +; see also 2 Chronicles 7:21. + is approximately +i 21 +Alternate MT reading; the other alter- +Forms of the He- + or +l 28 420 + refer to the giving over of things or persons to the LORD, either by destroying them or by giving them as an + +the Millo + sounds like the Hebrew for + +in the wilderness in the land + +f 18 +horsemen + +; also in verse 24 + +the Sea of Reeds + +. +charioteers + +Hebrew + +Hebrew + +Elath + +h 19 + +k 26 + +Or + +4.52 tons or 4.1 metric tons of gold. +nate reads +brew +talents +offering. + + is a variant of + +j 26 Eloth + +; see LXX, 2 Kings 14:22, and 2 Kings 16:6. + +Or + + is approximately 15.8 tons or 14.4 metric tons of gold. + + 3 +And she came to Solomon and spoke to him all +that was on her mind. +And Solomon answered +all her questions; nothing was too difficult for the +4 +king to explain. + +5 + +When the queen of Sheba saw all the wisdom of +the food at his +Solomon, the palace he had built, +table, the seating of his servants, the service and +attire of his attendants, his cupbearers, and the +burnt offerings he presented at the house of the +6 +LORD, it took her breath away. + + a + +7 + +She said to the king, “The report I heard in my +own country about your words and wisdom is +true. +But I did not believe these things until I +came and saw with my own eyes. Indeed, not +even half was told to me. Your wisdom and pros- +8 +perity have far exceeded the report I heard. + How blessed are +these servants of yours who stand continually +before you and hear your wisdom! +Blessed be +the LORD your God, who has delighted in you to +set you on the throne of Israel. Because of the +LORD’s eternal love for Israel, He has made you +b +10 +king to carry out justice and righteousness.” + +How blessed are your men! + +9 + +Then she gave the king 120 talents of gold, +a great quantity of spices, and precious stones. +Never again were spices in such abundance +brought in as those the queen of Sheba gave to +11 +King Solomon. + + c + +12 + + wood and precious stones. + +(The fleet of Hiram that brought gold from +Ophir also brought from Ophir a great cargo of +almug +The king +made the almug wood into steps for the house of +the LORD and for the king’s palace, and into lyres +and harps for the singers. Never before had such +almug wood been brought in, nor has such been +13 +seen again to this day.) + +King Solomon gave the queen of Sheba all she +desired—whatever she asked—besides what he +had given her out of his royal bounty. Then she +left and returned to her own country, along with +Solomon’s Wealth and Splendor +her servants. +(2 Chronicles 1:14–17 ; 2 Chronicles 9:13–28) + +14 + +d +The weight of gold that came to Solomon each +not including the + +a 8 +year was 666 talents, + +your wives + +b 10 120 talents + +15 + +algum +e 16 600 shekels + +1 Kings 10:29 | 321 + +revenue from the merchants, traders, and all the +16 +Arabian kings and governors of the land. + + e +King Solomon made two hundred large shields + +17 +of hammered gold; six hundred shekels of gold +He also made three hun- +went into each shield. + f +dred small shields of hammered gold; three mi- +nas of gold + went into each shield. And the king +18 +put them in the House of the Forest of Lebanon. + +19 + +Additionally, the king made a great throne of +The +ivory and overlaid it with pure gold. +throne had six steps, and its back had a rounded +top. There were armrests on both sides of the +20 +seat, with a lion standing beside each armrest. +Twelve lions stood on the six steps, one at ei- +ther end of each step. Nothing like this had ever +21 +been made for any kingdom. + +22 + +All King Solomon’s drinking cups were gold, +and all the utensils of the House of the Forest of +Lebanon were pure gold. There was no silver, be- +cause it was accounted as nothing in the days of + g +For the king had the ships of Tar- +Solomon. +shish + at sea with Hiram’s fleet, and once every +three years the ships of Tarshish would arrive +23 +bearing gold, silver, ivory, apes, and peacocks. + +h + +24 + +So King Solomon surpassed all the kings of the +earth in riches and wisdom. +The whole world +25 +sought an audience with Solomon to hear the +wisdom that God had put in his heart. +Year af- +ter year, each visitor would bring his tribute: +articles of silver and gold, clothing, weapons, + i +26 +spices, horses, and mules. + +j +Solomon accumulated + + 1,400 chariots and +27 + which he stationed in the chariot +12,000 horses, +The king +cities and also with him in Jerusalem. +made silver as common in Jerusalem as stones, +and cedar as abundant as sycamore in the foot- +28 +hills. + +k + + l + +29 + +Solomon’s horses were imported from Egypt +and Kue; + the royal merchants purchased them +from Kue. +A chariot could be imported from +n +Egypt for six hundred shekels of silver, + and a +horse for a hundred and fifty. + Likewise, they ex- +ported them to all the kings of the Hittites and to +the kings of Aram. +d 14 666 talents + is approx. 4.52 tons or 4.1 metric tons of gold. + +c 11 Almug + + is + +m + +LXX, Syriac, and Latin Vulgate + +probably a variant of +metric tons of gold. +mately 3.77 pounds or 1.71 kilograms of gold; possibly a reference to double minas, that is, approximately 7.54 pounds or +lated chariots and horses; he had +charioteers +3.42 kilograms. + + is approximately 15.1 pounds or 6.8 kilograms of gold. + +a fleet of trading ships +j 26 + +; also in verse 12; see 2 Chronicles 2:8. + +i 26 +Shephelah + +h 22 +k 27 + +horsemen + +lowlands + +baboons + +g 22 + +m 29 600 shekels + +Or +l 28 + +f 17 3 minas + is approximately 25.1 tons or 22.8 + is approxi- +Solomon accumu- + +Or + +; twice in this verse +n 29 150 shekels + + or + +Or +Hebrew + +Literally + or + +ern foothills of Judea +proximately 15.1 pounds or 6.8 kilograms of silver. + +Probably an area in Cilicia, a province in the southeast of Asia Minor + + is approx. 3.8 pounds or 1.7 kilograms of silver. + +; that is, the west- + is ap- + + 322 | 1 Kings 11:1 + +Solomon’s Foreign Wives + +15 + +11 + +2 + +King Solomon, however, loved many for- +eign women along with the daughter of +Pharaoh—women of Moab, Ammon, Edom, and +These women +Sidon, as well as Hittite women. +were from the nations about which the LORD had +told the Israelites, “You must not intermarry +with them, for surely they will turn your hearts +after their gods.” Yet Solomon clung to these +He had seven hundred wives of +women in love. +royal birth and three hundred concubines—and +4 +his wives turned his heart away. + +3 + +For when Solomon grew old, his wives turned +his heart after other gods, and he was not whole- +5 +heartedly devoted to the LORD his God, as his + a +father David had been. +Solomon followed Ash- +6 +toreth the goddess of the Sidonians and Milcom +So Solomon +the abomination of the Ammonites. +did evil in the sight of the LORD; unlike his father +7 +David, he did not follow the LORD completely. + +8 + +At that time on a hill east of Jerusalem, Solomon +built a high place for Chemosh the abomination +of Moab and for Molech the abomination of the +He did the same for all his foreign +Ammonites. +wives, who burned incense and sacrificed to +God’s Anger against Solomon +their gods. +9 + +Now the LORD grew angry with Solomon, be- +cause his heart had turned away from the LORD, +10 +the God of Israel, who had appeared to him twice. +Although He had warned Solomon explicitly +not to follow other gods, Solomon did not keep +11 +the LORD’s command. + +12 + +Then the LORD said to Solomon, “Because you +have done this and have not kept My covenant +and My statutes, which I have commanded you, I +will tear the kingdom away from you and give it +Nevertheless, for the sake of +to your servant. +your father David, I will not do it during your life- +13 +time; I will tear it out of the hand of your son. +Yet I will not tear the whole kingdom away +from him. I will give one tribe to your son for the +sake of My servant David and for the sake of Je- +Hadad’s Return +rusalem, which I have chosen.” +14 + +Then the LORD raised up against Solomon an +adversary, Hadad the Edomite, from the royal +Molech +a 5 Milcom +line of Edom. + +Earlier, when David was in Edom, Joab the +commander of the army had gone to bury the +16 +dead and had struck down every male in Edom. +Joab and all Israel had stayed there six months, +until he had killed every male in Edom. +But +Hadad, still just a young boy, had fled to Egypt, +along with some Edomites who were servants of +18 +his father. + +17 + +Hadad and his men set out from Midian and +went to Paran. They took men from Paran with +them and went to Egypt, to Pharaoh king of +Egypt, who gave Hadad a house and land and +19 +provided him with food. + +There Hadad found such great favor in the +sight of Pharaoh that he gave to him in marriage +20 +the sister of Queen Tahpenes, his own wife. +And the sister of Tahpenes bore Hadad a son +named Genubath. Tahpenes herself weaned him +in Pharaoh’s palace, and Genubath lived there +21 +among the sons of Pharaoh. + +When Hadad heard in Egypt that David +had rested with his fathers and that Joab, the +commander of the army, was dead, he said to +Pharaoh, “Let me go, that I may return to my own +22 +country.” + +But Pharaoh asked him, “What have you +lacked here with me that you suddenly want to +go back to your own country?” +Rezon’s Hostility +“Nothing,” Hadad replied, “but please let me go.” +23 + +24 + +And God raised up against Solomon another +adversary, Rezon the son of Eliada, who had fled +and +from his master, Hadadezer king of Zobah, +had gathered men to himself. When David killed +the Zobaites, Rezon captained a band of raiders +and went to Damascus, where they settled and +25 +gained control. + +Rezon was Israel’s enemy throughout the days +of Solomon, adding to the trouble caused by +Hadad. So Rezon ruled over Aram with hostility +Jeroboam’s Rebellion +toward Israel. +26 + +Now Jeroboam son of Nebat was an Ephraim- +ite from Zeredah whose mother was a widow +named Zeruah. Jeroboam was a servant of Solo- +and this +mon, but he rebelled against the king, +is the account of his rebellion against the king. + +27 + + is a variant of + +; also in verse 33; see verse 7 and Leviticus 18:21. + +  a + +28 + + and +Solomon had built the supporting terraces +repaired the gap in the wall of the city of his fa- +ther David. +Now Jeroboam was a mighty man +of valor. So when Solomon noticed that the +young man was industrious, he put him in charge +29 +of the whole labor force of the house of Joseph. + +During that time, the prophet Ahijah the Shi- +lonite met Jeroboam on the road as he was going +out of Jerusalem. Now Ahijah had wrapped him- +self in a new cloak, and the two of them were +30 +alone in the open field. + +31 + +And Ahijah took hold of the new cloak he was +wearing, tore it into twelve pieces, +and said to +Jeroboam, “Take ten pieces for yourself, for this +is what the LORD, the God of Israel, says: ‘Behold, +I will tear the kingdom out of the hand of Solo- +mon, and I will give you ten tribes. +But one +tribe will remain for the sake of My servant David +and for the sake of Jerusalem, the city I have cho- + b +33 +sen out of all the tribes of Israel. + +32 + +For they have + + forsaken Me to worship Ashto- +reth the goddess of the Sidonians, Chemosh the +god of the Moabites, and Milcom the god of the +Ammonites. They have not walked in My ways, +nor done what is right in My eyes, nor kept +My statutes and judgments, as Solomon’s father +34 +David did. + +36 + +35 + +Nevertheless, I will not take the whole king- +dom out of Solomon’s hand, because I have made +him ruler all the days of his life for the sake of +David My servant, whom I chose because he kept +My commandments and statutes. +But I will +take ten tribes of the kingdom from the hand of +his son and give them to you. +I will give one +tribe to his son, so that My servant David will al- +ways have a lamp before Me in Jerusalem, the +city where I chose to put My Name. +But as for +you, I will take you, and you shall reign over all +that your heart desires, and you will be king over +38 +Israel. + +37 + +If you listen to all that I command you, walk in +My ways, and do what is right in My sight in or- +der to keep My statutes and commandments as +My servant David did, then I will be with you. I +will build you a lasting dynasty just as I built for +David, and I will give Israel to you. +Because of +this, I will humble David’s descendants—but not +40 +forever.’ + +39 + +” + +Solomon therefore sought to kill Jeroboam. +a 27 +But Jeroboam arose and fled to Egypt, to Shishak + +the Millo + +b 33 + +1 Kings 12:11 | 323 + +king of Egypt, where he remained until the death +The Death of Solomon (2 Chronicles 9:29–31) +of Solomon. +41 + +As for the rest of the acts of Solomon—all that +he did, as well as his wisdom—are they not writ- +ten in the Book of the Acts of Solomon? +Thus +the time that Solomon reigned in Jerusalem over +43 +all Israel was forty years. + +42 + +And Solomon rested with his fathers and was +buried in the city of his father David. And his son +Rebellion against Rehoboam (2 Chr. 10:1–15) +Rehoboam reigned in his place. + +12 + + c + +2 + +3 + +Then Rehoboam went to Shechem, for all +Israel had gone there to make him king. +When Jeroboam son of Nebat heard about this, +he was still + in Egypt where he had fled from +King Solomon and had been living ever since. +So +they sent for Jeroboam, and he and the whole as- +4 +sembly of Israel came to Rehoboam and said, +“Your father put a heavy yoke on us. But now +you must lighten the burden of your father’s ser- +vice and the heavy yoke he put on us, and we will +5 +serve you.” + +Rehoboam answered, “Go away for three days +6 +and then return to me.” So the people departed. + +Then King Rehoboam consulted with the elders +who had served his father Solomon during his +lifetime. “How do you advise me to respond to +7 +these people?” he asked. + +They replied, “If you will be a servant to these +people and serve them this day, and if you will +respond by speaking kind words to them, they +8 +will be your servants forever.” + +9 + +But Rehoboam rejected the advice of the elders; +instead, he consulted the young men who had +He asked +grown up with him and served him. +them, “What message do you advise that we send +back to these people who have spoken to me, +10 +saying, ‘Lighten the yoke your father put on us’?” + +The young men who had grown up with him +replied, “This is how you should answer these +people who said to you, ‘Your father made our +yoke heavy, but you must make it lighter.’ This is +what you should tell them: ‘My little finger is +Whereas my fa- +thicker than my father’s waist! +ther burdened you with a heavy yoke, I will add +to your yoke. Whereas my father scourged you +c 2 +he has +” +with whips, I will scourge you with scorpions.’ + +he remained + +11 + +Hebrew + +Hebrew; LXX, Syriac, and Vulgate + +; twice in this verse + +Or + + 324 | 1 Kings 12:12 + +12 + +13 + +After three days, Jeroboam and all the people +returned to Rehoboam, since the king had said, +And the +“Come back to me on the third day.” +14 +king answered the people harshly. He rejected +the advice of the elders +and spoke to them as +the young men had advised, saying, “Whereas my +father made your yoke heavy, I will add to your +yoke. Whereas my father scourged you with +15 +whips, I will scourge you with scorpions.” + +So the king did not listen to the people, and in- +deed this turn of events was from the LORD, to +fulfill the word He had spoken to Jeroboam son +The Kingdom Divided (2 Chronicles 10:16–19) +of Nebat through Ahijah the Shilonite. +16 + +When all Israel saw that the king had refused + +to listen to them, they answered the king: + +“What portion do we have in David, + +and what inheritance in the son of Jesse? + +To your tents, O Israel! + +Look now to your own house, O David!” + +17 + +but Rehoboam +So the Israelites went home, +still reigned over the Israelites living in the cities +18 +of Judah. + +a + +19 + +Then King Rehoboam sent out Adoram, + + who +was in charge of the forced labor, but all Israel +stoned him to death. And King Rehoboam +mounted his chariot in haste and escaped to +So to this day Israel has been in +Jerusalem. +Shemaiah’s Prophecy (2 Chronicles 11:1–4) +rebellion against the house of David. +20 + +When all Israel heard that Jeroboam had re- +turned, they summoned him to the assembly and +made him king over all Israel. Only the tribe of +21 +Judah followed the house of David. + +And when Rehoboam arrived in Jerusalem, he +mobilized the whole house of Judah and the tribe +of Benjamin—180,000 chosen warriors—to +fight against the house of Israel and restore the +22 +kingdom to Rehoboam son of Solomon. + +23 + +But the word of God came to Shemaiah the +“Tell Rehoboam son of Solomon +man of God: +24 +king of Judah, all the house of Judah and Benja- +min, and the rest of the people +that this is what +the LORD says: ‘You are not to go up and fight +against your brothers, the Israelites. Each of you +a 18 +must return home, for this is My doing.’ +Peniel +to them +Hebrew; some LXX manuscripts and Syriac +to the one as far as Dan + +Adoniram +” +d 30 + +; see Genesis 32:30. +; LXX + +Hebrew + +So they listened to the word of the LORD and +Jeroboam’s Idolatry +turned back according to the word of the LORD. +25 + +Then Jeroboam built Shechem in the hill coun- +try of Ephraim and lived there. And from there he +26 +went out and built Penuel. + +b + +27 + +Jeroboam said in his heart, “Now the kingdom +might revert to the house of David. +If these +people go up to offer sacrifices in the house of the +LORD at Jerusalem, their hearts will return to +their lord, Rehoboam king of Judah; then they +will kill me and return to Rehoboam king of Ju- +28 +dah.” + +c + +After seeking advice, the king made two +golden calves and said to the people, + “Going up +to Jerusalem is too much for you. Here, O Israel, +are your gods, who brought you up out of the +29 +land of Egypt.” + +30 + +One calf he set up in Bethel, and the other in +And this thing became a sin; the people +Dan. +d +walked as far as Dan to worship before one of the +31 +calves. + +Jeroboam also built shrines on the high places +32 +and appointed from every class of people priests +e +who were not Levites. +And Jeroboam ordained +a feast on the fifteenth day of the eighth month, +like the feast that was in Judah, and he offered +sacrifices on the altar; he made this offering in +Bethel to sacrifice to the calves he had set up, and +he installed priests in Bethel for the high places +33 +he had set up. + +On the fifteenth day of the eighth month, a +month of his own choosing, Jeroboam offered +sacrifices on the altar he had set up in Bethel. So +he ordained a feast for the Israelites, offered sac- +Jeroboam’s Hand Withers +rifices on the altar, and burned incense. +(2 Kings 23:4–20 ; 2 Chronicles 34:3–7) + +13 + +2 + +Suddenly, as Jeroboam was standing be- +side the altar to burn incense, there came +a man of God from Judah to Bethel by the word of +And he cried out against the altar by +the LORD. +the word of the LORD, “O altar, O altar, this is +what the LORD says: ‘A son named Josiah will be +born to the house of David, and upon you he will +sacrifice the priests of the high places who burn +incense upon you, and human bones will be +burned upon you.’ + +b 25 Penuel + +” + + f + +c 28 +the people went to the one at Bethel and to the other as far as Dan + +; see 1 Kings 4:6 and 1 Kings 5:14. +Likely reading of the original Hebrew text; MT + +e 32 + +f 2 + +the people walked + is a variant of + +This feast was exactly + +one month after the annual Feast of Tabernacles in Judah; see Leviticus 23:34. + +See 2 Kings 23:16. + + 3 + +15 + +1 Kings 13:28 | 325 + +That day the man of God gave a sign, saying, +“The LORD has spoken this sign: ‘Surely the +altar will be split apart, and the ashes upon it will +4 +be poured out.’ + +” + +5 + +Now when King Jeroboam, who was at the altar +in Bethel, heard the word that the man of God +had cried out against it, he stretched out his hand +and said, “Seize him!” But the hand he stretched +out toward him withered, so that he could not +And the altar was split apart, and +pull it back. +the ashes poured out, according to the sign that +the man of God had given by the word of the +6 +LORD. + +So the prophet said to the man of God, “Come + +16 +home with me and eat some bread.” + +17 + +But the man replied, “I cannot go home with +you, and I will not eat bread or drink water with +For I have been told by the +you in this place. +word of the LORD: ‘You must not eat bread or +drink water there or return by the way you +18 +came.’ + +” + +Then the prophet replied, “I too am a prophet +like you, and an angel spoke to me by the word of +the LORD, saying, ‘Bring him back with you to +your house, so that he may eat bread and drink +water.’ + +” + +19 + +Then the king responded to the man of God, “In- +tercede with the LORD your God and pray for me +that my hand may be restored.” + +The old prophet was lying to him, +but the man +of God went back with him, ate bread in his +20 +house, and drank water. + +So the man of God interceded with the LORD, +and the king’s hand was restored to him as it was +7 +before. + +Then the king said to the man of God, “Come +home with me and refresh yourself, and I will +8 +give you a reward.” + +9 + +But the man of God replied, “If you were to give +me half your possessions, I still would not go +with you, nor would I eat bread or drink water in +For this is what I was commanded by +this place. +the word of the LORD: ‘You must not eat bread or +10 +drink water or return by the way you came.’ + +” + +So the man of God went another way and did + +The Old Prophet and the Man of God +not return by the way he had come to Bethel. +11 + + a + +Now a certain old prophet was living in Bethel, +and his sons + came and told him all the deeds +that the man of God had done that day in Bethel. +They also told their father the words that the +12 +man had spoken to the king. + +“Which way did he go?” their father asked. + + b + +13 + + the way taken by the +And his sons showed him +man of God, who had come from Judah. +So the +prophet said to his sons, “Saddle the donkey for +me.” + +14 + +Then they saddled the donkey for him, and he +and went after the man of God. He +mounted it +found him sitting under an oak tree + and asked, +“Are you the man of God who came from Judah?” + + c + +son +a 11 +“I am,” he replied. + +b 12 + +had seen + +c 14 + +21 + +While they were sitting at the table, the word +of the LORD came to the prophet who had +and the prophet cried out to +brought him back, +the man of God who had come from Judah, “This +is what the LORD says: ‘Because you have defied +the word of the LORD and have not kept the com- +22 +mandment that the LORD your God gave you, +but you went back and ate bread and drank +water in the place where He told you not to do +so, your body shall never reach the tomb of your +23 +fathers.’ + +” + +24 + +And after the man of God had finished eating +and drinking, the old prophet who had brought +As he +him back saddled the donkey for him. +went on his way, a lion met him on the road and +killed him, and his body was left lying in the road, +25 +with the donkey and the lion standing beside it. + +And there were men passing by who saw the +body lying in the road with the lion standing be- +side it, and they went and reported this in the city +26 +where the old prophet lived. + +When the prophet who had brought him back +from his journey heard this, he said, “It is the man +of God who disobeyed the command of the LORD. +Therefore the LORD has delivered him to the +lion, and it has mauled him and killed him, ac- +cording to the word that the LORD had spoken to +27 +him.” + +28 + +Then the old prophet instructed his sons, “Sad- +and +dle the donkey for me.” So they saddled it, +he went and found the body lying in the road, +with the donkey and the lion standing beside it. +a terebinth +The lion had not eaten the body or mauled the + +a great tree + +LXX; Hebrew + +LXX; Hebrew + +Or + + or + + 326 | 1 Kings 13:29 + +29 + +30 + +So the old prophet lifted up the body +donkey. +of the man of God, laid it on the donkey, and +brought it back to his own city to mourn for him +Then he laid the body in his own +and bury him. +tomb, and they lamented over him, “Oh, my +31 +brother!” + +After he had buried him, the prophet said to +his sons, “When I die, you must bury me in the +32 +tomb where the man of God is buried. Lay my +for the message that +bones beside his bones, +he cried out by the word of the LORD against the +altar in Bethel and against all the shrines on the +high places in the cities of Samaria will surely +33 +come to pass.” + +Even after these events, Jeroboam did not +repent of his evil ways, but again he appointed +priests for the high places from every class +of people. He ordained anyone who desired to be +And this was the +a priest of the high places. +sin of the house of Jeroboam that led to its +extermination and destruction from the face of +Ahijah’s Prophecy against Jeroboam +the earth. + +34 + +14 + +2 + +At that time Abijah son of Jeroboam be- +and Jeroboam said to his wife, +came ill, +“Now get up, disguise yourself so they will not +recognize you as my wife, and go to Shiloh. For +Ahijah the prophet is there; it was he who spoke +Take with +about my kingship over this people. +you ten loaves of bread, some cakes, and a jar of +honey, and go to him. He will tell you what will +4 +become of the boy.” + +3 + +5 + +Jeroboam’s wife did as instructed; she arose +and went to Shiloh and arrived at Ahijah’s house. +Now Ahijah could not see, for his eyes were dim +But the LORD had said to +because of his age. +Ahijah, “Behold, the wife of Jeroboam is coming +to ask you about her son, for he is ill. You are to +say such and such to her, because when she ar- +6 +rives, she will be disguised.” + +7 + +So when Ahijah heard the sound of her feet +entering the door, he said, “Come in, wife of Jero- +boam! Why are you disguised? For I have been +Go, tell Jeroboam +sent to you with bad news. +that this is what the LORD, the God of Israel, says: +‘I raised you up from among the people and ap- +I tore +pointed you ruler over My people Israel. +the kingdom away from the house of David and +gave it to you. But you have not been like My +a 10 +servant David, who kept My commandments and + +(all) those who urinate against a wall + +b 13 + +8 + +followed Me with all his heart, doing only what +9 +was right in My eyes. + +You have done more evil than all who came be- +fore you. You have proceeded to make for your- +self other gods and molten images to provoke +10 +Me, and you have flung Me behind your back. +Because of all this, behold, I am bringing disas- + +a + +ter on the house of Jeroboam: + +I will cut off from Jeroboam every male, + +both slave and free, +in Israel; + +I will burn up the house of Jeroboam + +11 + +as one burns up dung until it is gone! +Anyone belonging to Jeroboam who dies + +in the city + +will be eaten by dogs, + +and anyone who dies in the field + +will be eaten by the birds of the air.’ + +For the LORD has spoken. + +12 + +13 + +As for you, get up and go home. When your feet +All Israel will +enter the city, the child will die. +mourn for him and bury him. For this is the only +b +one belonging to Jeroboam who will receive a + because only in him has the +proper burial, +LORD, the God of Israel, found any good in the +14 +house of Jeroboam. + +15 + +Moreover, the LORD will raise up for Himself a +king over Israel who will cut off the house of Jer- +For +oboam. This is the day—yes, even today! +the LORD will strike Israel as a reed is shaken in +the water. He will uproot Israel from this good +land that He gave their fathers, and He will scat- + because they +ter them beyond the Euphrates, +16 +have made their Asherah poles, provoking the +So He will give Israel over on +LORD to anger. +account of the sins Jeroboam has committed and +17 +has caused Israel to commit.” + +c + +18 + +Then Jeroboam’s wife got up and departed for +Tirzah, and as soon as she stepped over the +And they +threshold of the house, the boy died. +buried him, and all Israel mourned for him, ac- +cording to the word that the LORD had spoken +Nadab Succeeds Jeroboam +through His servant Ahijah the prophet. +19 + +As for the rest of the acts of Jeroboam, how he +waged war and how he reigned, they are indeed +written in the Book of the Chronicles of the Kings +of Israel. + +who will come to the grave + +the River + +c 15 + +Literally + +Literally + +Hebrew + + 20 + +And the length of Jeroboam’s reign was +twenty-two years, and he rested with his fathers, +Rehoboam Reigns in Judah (2 Chr. 12:13–14) +and his son Nadab reigned in his place. +21 + +Meanwhile, Rehoboam son of Solomon reigned +in Judah. He was forty-one years old when he be- +came king, and he reigned seventeen years in Je- +rusalem, the city the LORD had chosen from all +the tribes of Israel in which to put His Name. His +22 +mother’s name was Naamah the Ammonite. + +23 + +And Judah did evil in the sight of the LORD, and +by the sins they committed they provoked Him +to jealous anger more than all their fathers had +They also built for themselves high +done. +places, sacred pillars, and Asherah poles on +24 +every high hill and under every green tree. +There were even male shrine prostitutes in +the land. They imitated all the abominations of +the nations the LORD had driven out before the +Shishak Raids Jerusalem (2 Chr. 12:1–12) +Israelites. +25 + +26 + +In the fifth year of Rehoboam’s reign, Shishak +He seized +king of Egypt attacked Jerusalem. +the treasures of the house of the LORD and of the +royal palace. He took everything, including all the +27 +gold shields that Solomon had made. + +28 + +Then King Rehoboam made bronze shields in +their place and committed them to the care of the +captains of the guard on duty at the entrance to +And whenever the king en- +the royal palace. +tered the house of the LORD, the guards would +bear the shields, and later they would return +29 +them to the guardroom. + +As for the rest of the acts of Rehoboam, along +with all that he did, are they not written in the +30 +Book of the Chronicles of the Kings of Judah? + +31 + +There was war between Rehoboam and Jero- +boam throughout their days. +And Rehoboam +rested with his fathers and was buried with them + a +in the City of David; his mother’s name was +Naamah the Ammonite. And his son Abijam +Abijam Reigns in Judah (2 Chr. 13:1–3) +reigned in his place. + +15 + +In the eighteenth year of the reign +of Jeroboam son of Nebat, Abijam + be- +Abijah +and he reigned in Jerusalem +Abijah + +a 31 Abijam +came king of Judah, +Abijah + +2 + + b + +1 Kings 15:15 | 327 + +c +three years. His mother’s name was Maacah +3 +daughter of Abishalom. + +4 + +And Abijam walked in all the sins that his father +before him had committed, and his heart was not +as fully devoted to the LORD his God as the heart +Nevertheless, +of David his forefather had been. +for the sake of David, the LORD his God gave him +a lamp in Jerusalem by raising up a son to suc- +For Da- +ceed him and to make Jerusalem strong. +vid had done what was right in the eyes of the +LORD and had not turned aside from anything +the LORD commanded all the days of his life, ex- +6 +cept in the matter of Uriah the Hittite. + +5 + + d + +And there was war between the houses + and Jeroboam all the days of Abi- + +e + +of Rehoboam +7 +jam’s life. + +As for the rest of the acts of Abijam, along with +all his accomplishments, are they not written in +the Book of the Chronicles of the Kings of Judah? +And there was war between Abijam and Jero- +8 +boam. + +And Abijam rested with his fathers and was +buried in the City of David, and his son Asa +Asa Reigns in Judah +reigned in his place. +(2 Chronicles 14:1–15 ; 2 Chronicles 15:8–19) + +9 + +10 + + f + +In the twentieth year of Jeroboam’s reign +and +over Israel, Asa became king of Judah, +he reigned in Jerusalem forty-one years. His + name was Maacah daughter of +grandmother’s +11 +Abishalom. + +12 + +13 + +And Asa did what was right in the eyes of the +He ban- +LORD, as his father David had done. +ished the male shrine prostitutes from the land +and removed all the idols that his fathers had +made. +He also removed his grandmother +Maacah from her position as queen mother be- +cause she had made a detestable Asherah pole. +Asa chopped down the pole and burned it in the +14 +Kidron Valley. + +The high places were not removed, but Asa’s +15 +heart was fully devoted to the LORD all his days. +And he brought into the house of the LORD the +silver and gold and the articles that he and his +father had dedicated. + +b 1 Abijam + +Abijah + +c 2 Abishalom + +Absalom + + is a variant of + +; some Heb. manuscripts and LXX + +war between Rehoboam + +; see 2 Chron. 12:16. + +d 6 + +; some Heb. manuscripts and LXX + +; also in verse 10; see 2 Chron. 11:20. + +war between Abijam +The queen mother’s + +of +e 6 +Heb. manuscripts and Syriac + +of his life + +f 10 + +Literally + +Or + +; also in verses 3, 6, 7, and 8; see 2 Chron. 12:16. + +Literally + +His mother’s + + (most Heb. manuscripts); some + + (that is, Abijah); most LXX texts do not contain this verse. +; Hebrew + +; see verses 2 and 13. + + is a variant of + + is a variant + + 328 | 1 Kings 15:16 + +War between Asa and Baasha +(2 Chronicles 16:1–6) + +16 + +17 + +Now there was war between Asa and Baasha +Baasha +king of Israel throughout their days. +king of Israel went to war against Judah and for- +tified Ramah to prevent anyone from leaving or +18 +entering the territory of Asa king of Judah. + +So Asa withdrew all the silver and gold that re- +mained in the treasuries of the house of the +LORD and the royal palace. He entrusted it to his +servants and sent them with this message to +Ben-hadad son of Tabrimmon, the son of Hezion, + a +19 +the king of Aram, who was ruling in Damascus: + between me and you as +there was between my father and your father. +See, I have sent you a gift of silver and gold. Now +go and break your treaty with Baasha king of Is- +20 +rael, so that he will withdraw from me.” + +“Let there be a treaty + +22 +b + +And Ben-hadad listened to King Asa and sent +the commanders of his armies against the cities +of Israel, conquering Ijon, Dan, Abel-beth- +maacah, and the whole land of Naphtali, includ- +21 +ing the region of Chinnereth. + +When Baasha learned of this, he stopped forti- +Then +fying Ramah and withdrew to Tirzah. + with +King Asa summoned all the men of Judah, +no exceptions, and they carried away the stones +of Ramah and the timbers Baasha had used for +building. And with these materials King Asa built +Jehoshaphat Succeeds Asa +up Geba of Benjamin, as well as Mizpah. +(2 Chronicles 17:1–19) + +23 + +Now the rest of the acts of Asa, along with all +his might, all his accomplishments, and the cities +he built, are they not written in the Book of the +Chronicles of the Kings of Judah? In his old age, +24 +however, he became diseased in his feet. + +27 + +Then Baasha son of Ahijah of the house of Issa- +char conspired against Nadab, and Baasha struck +him down at Gibbethon of the Philistines while +In +Nadab and all Israel were besieging the city. +the third year of Asa’s reign over Judah, Baasha +29 +killed Nadab and reigned in his place. + +28 + +30 + +As soon as Baasha became king, he struck +down the entire household of Jeroboam. He did +not leave to Jeroboam anyone who breathed, but +destroyed them all according to the word that +the LORD had spoken through His servant Ahijah +the Shilonite, +because of the sins Jeroboam had +committed and had caused Israel to commit, and +because he had provoked the LORD, the God of +31 +Israel, to anger. + +As for the rest of the acts of Nadab, along with +all his accomplishments, are they not written in +32 +the Book of the Chronicles of the Kings of Israel? +And there was war between Asa and Baasha + +Baasha Reigns in Israel +king of Israel throughout their days. +33 + +In the third year of Asa’s reign over Judah, +Baasha son of Ahijah became king of all Israel, +34 +and he reigned in Tirzah twenty-four years. + +And Baasha did evil in the sight of the LORD +and walked in the way of Jeroboam and in his sin, +Jehu’s Prophecy against Baasha +which he had caused Israel to commit. + +16 + +2 + +Then the word of the LORD came to Jehu +son of Hanani against Baasha, saying: +“Even though I lifted you out of the dust and +made you ruler over My people Israel, you have +walked in the way of Jeroboam and have caused +My people Israel to sin and to provoke Me to an- +So now I will consume Baasha +ger by their sins. +and his house, and I will make your house like +4 +that of Jeroboam son of Nebat: + +3 + +And Asa rested with his fathers and was buried +with them in the city of his father David, and his +Nadab Reigns in Israel +son Jehoshaphat reigned in his place. +25 + +5 + +Anyone belonging to Baasha who dies in + +the city + +will be eaten by dogs, + +and anyone who dies in the field + +will be eaten by the birds of the air.” + +In the second year of Asa’s reign over Judah, +26 +Nadab son of Jeroboam became king of Israel, +And he did evil in the +and he reigned two years. +sight of the LORD and walked in the way of his +father and in his sin, which he had caused Israel +berit +a 19 +to commit. +made a proclamation throughout all Judah + +6 + +As for the rest of the acts of Baasha, along with +his accomplishments and might, are they not +written in the Book of the Chronicles of the Kings +And Baasha rested with his fathers +of Israel? +and was buried in Tirzah, and his son Elah +reigned in his place. + +Then King Asa + +covenant + +b 22 + +Forms of the Hebrew + + are translated in most passages as + +; twice in this verse. + +Or + + 7 + +Moreover, the word of the LORD came through +the prophet Jehu son of Hanani against Baasha +and his house, because of all the evil he had done + the sight of the LORD, provoking Him to anger +in +with the work of his hands and becoming like the +house of Jeroboam, and also because Baasha had +Elah Reigns in Israel +struck down the house of Jeroboam. +8 + +In the twenty-sixth year of Asa’s reign over Ju- +dah, Elah son of Baasha became king of Israel, +9 +and he reigned in Tirzah two years. + +10 + +However, while Elah was in Tirzah getting +drunk in the house of Arza the steward of his +household there, Elah’s servant Zimri, the com- +mander of half his chariots, conspired against +So in the twenty-seventh year of Asa’s +him. +reign over Judah, Zimri went in, struck Elah +down, and killed him. And Zimri reigned in his +11 +place. + +12 + +As soon as Zimri began to reign and was seated +on the throne, he struck down the entire house- +hold of Baasha. He did not leave a single male, +So Zimri de- +whether a kinsman or friend. +stroyed the entire household of Baasha, accord- +ing to the word that the LORD had spoken +This +against Baasha through Jehu the prophet. +happened because of all the sins Baasha and his +son Elah had committed and had caused Israel to +commit, provoking the LORD, the God of Israel, +14 +to anger with their worthless idols. + +13 + +As for the rest of the acts of Elah, along with all +his accomplishments, are they not written in the +Zimri Reigns in Israel +Book of the Chronicles of the Kings of Israel? +15 + +In the twenty-seventh year of Asa’s reign over +Judah, Zimri reigned in Tirzah for seven days. +16 +Now the troops were encamped against Gib- +and the people in the +bethon of the Philistines, +camp heard that Zimri had conspired against the +king and struck him down. So there in the camp +that very day, all Israel proclaimed Omri, the +17 +commander of the army, king over Israel. +18 + +Then Omri and all the Israelites marched up +from Gibbethon and besieged Tirzah. +When +Zimri saw that the city was captured, he entered +the citadel of the royal palace and burned it down +because of the sins he +upon himself. So he died +a 24 2 talents +had committed, doing evil in the sight of the + +19 + +1 Kings 16:33 | 329 + +LORD and following the example of Jeroboam +and the sin he had committed and had caused Is- +20 +rael to commit. + +As for the rest of the acts of Zimri and the trea- +son he committed, are they not written in the +Omri Reigns in Israel +Book of the Chronicles of the Kings of Israel? +21 + +22 + +At that time the people of Israel were divided: +Half of the people supported Tibni son of Ginath +as king, and half supported Omri. +But the fol- +lowers of Omri proved stronger than those of +Tibni son of Ginath. So Tibni died and Omri be- +23 +came king. + + a + +24 + +In the thirty-first year of Asa’s reign over Ju- +dah, Omri became king of Israel, and he reigned +twelve years, six of them in Tirzah. +He bought +the hill of Samaria from Shemer for two talents + and built a city there, calling it Samaria +of silver +after the name of Shemer, who had owned the +25 +hill. + +26 + +But Omri did evil in the sight of the LORD and +acted more wickedly than all who were before +him. +For he walked in all the ways of Jeroboam +son of Nebat and in his sins, which he caused Is- +rael to commit, provoking the LORD, the God of +27 +Israel, to anger with their worthless idols. + +As for the rest of the acts of Omri, along with +his accomplishments and the might he exercised, +are they not written in the Book of the Chronicles +28 +of the Kings of Israel? + +And Omri rested with his fathers and was bur- +ied in Samaria, and his son Ahab reigned in his +Ahab Reigns in Israel, Marries Jezebel +place. +29 + +In the thirty-eighth year of Asa’s reign over Ju- +dah, Ahab son of Omri became king of Israel, and +30 +he reigned in Samaria twenty-two years. + +However, Ahab son of Omri did evil in the sight +31 +of the LORD, more than all who were before him. +And as if it were not enough for him to walk in +the sins of Jeroboam son of Nebat, he even mar- +ried Jezebel the daughter of Ethbaal king of the +Sidonians, and he then proceeded to serve and +32 +worship Baal. + +33 + +First, Ahab set up an altar for Baal in the tem- +Then +ple of Baal that he had built in Samaria. +he set up an Asherah pole. Thus Ahab did more + + is approximately 151 pounds or 68.4 kilograms of silver. + + 330 | 1 Kings 16:34 + +to provoke the LORD, the God of Israel, to anger +34 +than all the kings of Israel before him. + +In Ahab’s days, Hiel the Bethelite rebuilt +Jericho. At the cost of Abiram his firstborn he laid +its foundation, and at the cost of Segub his young- +est he set up its gates, according to the word that +the LORD had spoken through Joshua son of +The Ravens Feed Elijah +Nun. + +a + +17 + +b + +Now Elijah the Tishbite, who was among +the settlers of Gilead, + said to Ahab, “As +surely as the LORD, the God of Israel, lives, before +whom I stand, there will be neither dew nor rain +2 +in these years except at my word!” + +3 + +c + +Then a revelation from the LORD came to +Elijah: +“Leave here, turn eastward, and hide +4 +yourself by the Brook of Cherith, east of the Jor- +dan. +And you are to drink from the brook, and +5 +I have commanded the ravens to feed you there.” + +6 + +So Elijah did what the LORD had told him, and +he went and lived by the Brook of Cherith, east of +The ravens would bring him bread +the Jordan. +7 +and meat in the morning and evening, and he +Some time later, +would drink from the brook. +however, the brook dried up because there had +The Widow of Zarephath +been no rain in the land. +8 +9 + +Then the word of the LORD came to Elijah: +“Get up and go to Zarephath of Sidon, and stay +there. Behold, I have commanded a widow there +10 +to provide for you.” + +11 + +So Elijah got up and went to Zarephath. When +he arrived at the city gate, there was a widow +gathering sticks. Elijah called to her and said, +“Please bring me a little water in a cup, so that I +And as she was going to get it, he +may drink.” +called to her and said, “Please bring me a piece of +12 +bread.” + +But she replied, “As surely as the LORD your +God lives, I have no bread—only a handful of +flour in a jar and a little oil in a jug. Look, I am +gathering a couple of sticks to take home and +prepare a meal for myself and my son, so that we +13 +may eat it and die.” + +“Do not be afraid,” Elijah said to her. “Go and +do as you have said. But first make me a small +who was from Tishbe in Gilead +a 34 +cake of bread from what you have, and bring it +d 1 +Or + +And the days were many, and in the third year, + +See Joshua 6:26. + +b 1 + +Literally + +14 + +out to me. Afterward, make some for yourself +for this is what the LORD, the +and your son, +God of Israel, says: ‘The jar of flour will not be ex- +hausted and the jug of oil will not run dry until +the day the LORD sends rain upon the face of the +15 +earth.’ + +” + +16 + +So she went and did according to the word of +Elijah, and there was food every day for Elijah +The jar of +and the woman and her household. +flour was not exhausted and the jug of oil did not +run dry, according to the word that the LORD had +Elijah Raises the Widow’s Son +spoken through Elijah. +17 + +18 + +Later, the son of the woman who owned the +house became ill, and his sickness grew worse +“O +and worse, until no breath remained in him. +man of God,” said the woman to Elijah, “what +have you done to me? Have you come to remind +me of my iniquity and cause the death of my +19 +son?” + +But Elijah said to her, “Give me your son.” + +20 + +So he took him from her arms, carried him to the +upper room where he was staying, and laid him +Then he cried out to the LORD, +on his own bed. +“O LORD my God, have You also brought tragedy +on this widow who has opened her home to me, +Then he stretched +by causing her son to die?” +himself out over the child three times and cried +out to the LORD, “O LORD my God, please let this +22 +boy’s life return to him!” + +21 + +And the LORD listened to the voice of Elijah, +23 +and the child’s life returned to him, and he lived. +Then Elijah took the child, brought him down +from the upper room into the house, and gave +him to his mother. “Look, your son is alive,” Elijah +24 +declared. + +Then the woman said to Elijah, “Now I know +that you are a man of God and that the word of +Elijah’s Message to Ahab +the LORD from your mouth is truth.” + +18 + +d + +After a long time, in the third year of the + the word of the LORD came to +drought, +Elijah: “Go and present yourself to Ahab, and I +2 +will send rain upon the face of the earth.” + +3 + +So Elijah went to present himself to Ahab. The +c 3 +and Ahab +famine was severe in Samaria, + +the Cherith Ravine, near the Jordan + +Or + +; also in verse 5 + + summoned Obadiah, who was in charge of the +palace. + +4 + +for +(Now Obadiah greatly feared the LORD, +when Jezebel had slaughtered the prophets of +the LORD, Obadiah had taken a hundred proph- +ets and hidden them, fifty men per cave, provid- +5 +ing them with food and water.) + +Then Ahab said to Obadiah, “Go throughout the +land to every spring and every valley. Perhaps +we will find grass to keep the horses and mules +alive so that we will not have to destroy any live- +6 +stock.” + +So they divided the land to explore. Ahab went +one way by himself, and Obadiah went the other +7 +way by himself. + +Now as Obadiah went on his way, Elijah sud- +denly met him. When Obadiah recognized him, +he fell facedown and said, “Is it you, my lord +8 +Elijah?” + +“It is I,” he answered. “Go tell your master, ‘Eli- + +9 +jah is here!’ + +” + +10 + +But Obadiah replied, “How have I sinned, that +you are handing your servant over to Ahab to put +As surely as the LORD your God +me to death? +lives, there is no nation or kingdom where my +lord has not sent someone to search for you. +When they said, ‘He is not here,’ he made that +kingdom or nation swear that they had not found +And now you say, ‘Go tell your master that +you. +12 +Elijah is here!’ + +11 + +13 + +I do not know where the Spirit of the LORD +may carry you off when I leave you. Then when I +go and tell Ahab and he does not find you, he will +kill me. But I, your servant, have feared the LORD +Was it not reported to my lord +from my youth. +what I did when Jezebel slaughtered the proph- +ets of the LORD? I hid a hundred prophets of the +LORD, fifty men per cave, and I provided them +And now you say, ‘Go tell +with food and water. +15 +your lord that Elijah is here!’ He will kill me!” + +14 + +Then Elijah said, “As surely as the LORD of +Hosts lives, before whom I stand, I will present +Elijah on Mount Carmel +myself to Ahab today.” +16 + +17 + +So Obadiah went to inform Ahab, who went to +When Ahab saw Elijah, he said to + +meet Elijah. +18 +him, “Is that you, O troubler of Israel?” + +“I have not troubled Israel,” Elijah replied, “but +you and your father’s house have, for you have + +1 Kings 18:30 | 331 + +19 + +forsaken the commandments of the LORD and +Now summon all Is- +have followed the Baals. +rael to meet me on Mount Carmel, along with the +four hundred and fifty prophets of Baal and the +four hundred prophets of Asherah who eat at Jez- +20 +ebel’s table.” + +21 + +So Ahab summoned all the Israelites and as- +Then +sembled the prophets on Mount Carmel. +Elijah approached all the people and said, “How +long will you waver between two opinions? If the +LORD is God, follow Him. But if Baal is God, fol- +low him.” +22 +But the people did not answer a word. + +23 + +Then Elijah said to the people, “I am the only +remaining prophet of the LORD, but Baal has four +hundred and fifty prophets. +Get two bulls for +us. Let the prophets of Baal choose one bull for +themselves, cut it into pieces, and place it on the +wood but not light the fire. And I will prepare the +other bull and place it on the wood but not light +the fire. +Then you may call on the name of your +god, and I will call on the name of the LORD. The +God who answers by fire, He is God.” + +24 + +And all the people answered, “What you say is +25 +good.” + +Then Elijah said to the prophets of Baal, “Since +you are so numerous, choose for yourselves one +bull and prepare it first. Then call on the name of +26 +your god, but do not light the fire.” + +And they took the bull that was given them, +prepared it, and called on the name of Baal from +morning until noon, shouting, “O Baal, answer +us!” + +But there was no sound, and no one answered as +27 +they leaped around the altar they had made. + +At noon Elijah began to taunt them, saying, +“Shout louder, for he is a god! Perhaps he is deep +in thought, or occupied, or on a journey. Perhaps +28 +he is sleeping and must be awakened!” + +So they shouted louder and cut themselves +with knives and lances, as was their custom, until +29 +the blood gushed over them. + +Midday passed, and they kept on raving until +the time of the evening sacrifice. But there was +no response; no one answered, no one paid +30 +attention. + +Then Elijah said to all the people, “Come near +to me.” So all the people approached him, and he +repaired the altar of the LORD that had been torn +down. + + 332 | 1 Kings 18:31 + +31 + +32 + +And Elijah took twelve stones, one for each +tribe of the sons of Jacob, to whom the word of +the LORD had come and said, “Israel shall be your +And with the stones, Elijah built an al- +name.” +tar in the name of the LORD. Then he dug a trench +around the altar large enough to hold two seahs +33 +of seed. + +a + +34 + +Next, he arranged the wood, cut up the bull, +and said, “Fill four wa- +placed it on the wood, +terpots and pour the water on the offering and +on the wood.” + + b + +“Do it a second time,” he said, and they did it a +second time. + +“Do it a third time,” he said, and they did it a third +35 +time. + +So the water ran down around the altar and + +Elijah’s Prayer +even filled the trench. +36 + +At the time of the evening sacrifice, Elijah the +prophet approached the altar and said, “O LORD, +God of Abraham, Isaac, and Israel, let it be known +this day that You are God in Israel and that I am +Your servant and have done all these things at +Answer me, O LORD! Answer +Your command. +me, so that this people will know that You, the +LORD, are God, and that You have turned their +38 +hearts back again.” + +37 + +Then the fire of the LORD fell and consumed +the sacrifice, the wood, the stones, and the dust, +39 +and it licked up the water in the trench. + +When all the people saw this, they fell +facedown and said, “The LORD, He is God! The +40 +LORD, He is God!” + +Then Elijah ordered them, “Seize the prophets +of Baal! Do not let a single one escape.” So they +seized them, and Elijah brought them down to +The LORD Sends Rain +the Kishon Valley and slaughtered them there. +41 + +And Elijah said to Ahab, “Go up, eat and drink, + +42 +for there is the sound of a heavy rain.” + +So Ahab went up to eat and drink. But Elijah +climbed to the summit of Carmel, bent down on +43 +the ground, and put his face between his knees. +“Go and look toward the sea,” he said to his + +a 32 2 seahs +servant. +b 34 + +c 46 + +So the servant went and looked, and he said, +“There is nothing there.” +44 +Seven times Elijah said, “Go back.” + +On the seventh time the servant reported, +“There is a cloud as small as a man’s hand rising +from the sea.” + +And Elijah replied, “Go and tell Ahab, ‘Prepare +your chariot and go down before the rain stops +45 +you.’ + +” + +Meanwhile, the sky grew dark with clouds and +wind, and a heavy rain began to fall. So Ahab rode +46 +away and went to Jezreel. + + c + +And the hand of the LORD came upon Elijah, + and ran + +and he tucked his cloak into his belt +Elijah Flees from Jezebel +ahead of Ahab all the way to Jezreel. + +19 + +2 + +Now Ahab told Jezebel everything that +Elijah had done and how he had killed all +the prophets with the sword. +So Jezebel sent a +messenger to Elijah, saying, “May the gods deal +with me, and ever so severely, if by this time to- +morrow I have not made your life like the lives of +3 +those you killed!” + +4 + +And Elijah was afraid and ran for his life. When +he came to Beersheba in Judah, he left his servant +while he himself went a day’s journey +there, +into the wilderness. He sat down under a broom +tree and prayed that he might die. “I have had +enough, LORD,” he said. “Take my life, for I am no +5 +better than my fathers.” + +Then he lay down under the broom tree and fell + +asleep. + +Suddenly an angel touched him and said, “Get up +6 +and eat.” + +And he looked around, and there by his head +was a cake of bread baked over hot coals, and a +jar of water. So he ate and drank and lay down +7 +again. + +A second time the angel of the LORD returned +and touched him, saying, “Get up and eat, or the +8 +journey will be too much for you.” + +So he got up and ate and drank. And strength- +ened by that food, he walked forty days and forty + the mountain of +nights until he reached Horeb, +God. +he girded up his loins + +d 8 + +d + + is approximately 13.2 dry quarts or 14.6 liters (probably about 25.4 pounds or 11.5 kilograms of seed). + +Some texts continue verse 33 to this point. +a mountain in the range containing Mount Sinai + +Hebrew + +That is, Mount Sinai, or possibly + + The LORD Speaks to Elijah at Horeb + +9 + +There Elijah entered a cave and spent the night. +And the word of the LORD came to him, saying, +10 +“What are you doing here, Elijah?” + +“I have been very zealous for the LORD, the +God of Hosts,” he replied, “but the Israelites have +forsaken Your covenant, torn down Your altars, +and killed Your prophets with the sword. I am +the only one left, and they are seeking my life as +11 +well.” + + a + +Then the LORD said, “Go out and stand on the +mountain before the LORD. Behold, the LORD is +about to pass by.” + +And a great and mighty wind tore into the moun- +tains and shattered the rocks before the LORD, +but the LORD was not in the wind. + +After the wind there was an earthquake, but the +12 +LORD was not in the earthquake. + +After the earthquake there was a fire, but the + +LORD was not in the fire. +13 +And after the fire came a still, small voice. +When Elijah heard it, he wrapped his face in +his cloak and went out and stood at the mouth of +the cave. Suddenly a voice came to him and said, +14 +“What are you doing here, Elijah?” + +“I have been very zealous for the LORD, the +God of Hosts,” he replied, “but the Israelites have +forsaken Your covenant, torn down Your altars, +and killed Your prophets with the sword. I am +the only one left, and they are seeking my life as +15 +well.” + +16 + +Then the LORD said to him, “Go back by the +way you came, and go to the Desert of Damascus. +When you arrive, you are to anoint Hazael as king +over Aram. + of +Nimshi as king over Israel and Elisha son of +Shaphat from Abel-meholah to succeed you as +17 +prophet. + +You are also to anoint Jehu son + + b + +Then Jehu will put to death whoever escapes +the sword of Hazael, and Elisha will put to death +18 +whoever escapes the sword of Jehu. + + c + +Nevertheless, I have reserved seven thousand +in Israel—all whose knees have not bowed to +The Call of Elisha +Baal +19 + + and whose mouths have not kissed him.” + +1 Kings 20:10 | 333 + +oxen, and he was with the twelfth team. Elijah +20 +passed by him and threw his cloak around him. + +So Elisha left the oxen, ran after Elijah, and +said, “Please let me kiss my father and mother +goodbye, and then I will follow you.” + +“Go on back,” Elijah replied, “for what have I done +21 +to you?” + +So Elisha turned back from him, took his pair +of oxen, and slaughtered them. Using the oxen’s +equipment for fuel, he cooked the meat and gave +it to the people, and they ate. Then he set out to +Ben-hadad Attacks Samaria +follow and serve Elijah. + +20 + +2 + +Now Ben-hadad king of Aram assembled +his entire army. Accompanied by thirty- +two kings with their horses and chariots, he +marched up, besieged Samaria, and waged war +Then he sent messengers into the city +against it. + d +saying, “This is what Ben- +to Ahab king of Israel, + ‘Your silver and gold are mine, and +hadad says: +4 +your best wives and children are mine!’ + +” + +3 + +And the king of Israel replied, “Just as you say, +my lord the king: I am yours, along with all that I +5 +have.” + +6 + +The messengers came back and said, “This is +what Ben-hadad says: ‘I have sent to you to de- +mand your silver, your gold, your wives, and +But about this time tomorrow I +your children. +will send my servants to search your palace and +the houses of your servants. They will seize and +7 +carry away all that is precious to you.’ + +” + +Then the king of Israel summoned all the elders +of the land and said, “Please take note and see +that this man is looking for trouble, for when he +demanded my wives, my children, my silver, and +8 +my gold, I did not deny him.” + +And the elders and the people all said, “Do not + +9 +listen to him or consent to his terms.” + +So Ahab answered the messengers of Ben- +hadad, “Tell my lord the king, ‘All that you de- +manded of your servant the first time I will do, +but this thing I cannot do.’ + +” + +So the messengers departed and relayed the +10 +message to Ben-hadad. + +So Elijah departed and found Elisha son of +a 10 +Shaphat. He was plowing with twelve teams of +d 3 + +b 16 + +grandson + +Then Ben-hadad sent another message to +Ahab: “May the gods deal with me, and ever so + +c 18 + +Cited in Romans 11:3; here and in verse 14 + +Or + +; see 2 Kings 9:14. + +Cited in Romans 11:4 + +Some texts break verse 2 and begin verse 3 at this point. + + 334 | 1 Kings 20:11 + +severely, if enough dust remains of Samaria for +11 +each of my men to have a handful.” + +And the king of Israel replied, “Tell him: ‘The +one putting on his armor should not boast like +12 +one taking it off.’ + +” + +a + +Ben-hadad received this message while he and +the kings were drinking in their tents, + and he +said to his servants, “Take your positions.” So +Ahab Defeats Ben-hadad +they stationed themselves against the city. +13 + +Meanwhile a prophet approached Ahab king of +Israel and declared, “This is what the LORD says: +‘Do you see this entire great army? Behold, I will +deliver it into your hand this very day, and you +14 +will know that I am the LORD.’ + +” + +“By whom?” Ahab asked. + +And the prophet replied, “This is what the LORD +says: ‘By the young officers of the district gover- +nors.’ + +” + +“Who will start the battle?” asked Ahab. +15 +“You will,” answered the prophet. + +So Ahab assembled the young officers of the +district governors, and there were 232 men. And +after them, he assembled the rest of the Israelite +16 +troops, 7,000 in all. + +17 + +They marched out at noon while Ben-hadad +and the 32 kings allied with him were in their +tents getting drunk. +And the young officers of +the district governors marched out first. + +Now Ben-hadad had sent out scouts, who +reported to him, “Men are marching out of +18 +Samaria.” + +“If they have marched out in peace,” he said, +“take them alive. Even if they have marched out +19 +for war, take them alive.” + +20 + +Meanwhile, these young officers of the district +governors marched out of the city, with the army +and each one struck down his op- +behind them, +ponent. So the Arameans fled, with the Israelites +in pursuit. But Ben-hadad king of Aram escaped +21 +on horseback with the cavalry. + +Then the king of Israel marched out and at- +tacked the horses and chariots, inflicting a great +22 +slaughter on the Arameans. + + b + +and take note what you must do, for in the + the king of Aram will come up against +spring +23 +you.” + +24 + +Meanwhile, the servants of the king of Aram +said to him, “Their gods are gods of the hills. That +is why they prevailed over us. Instead, we should +fight them on the plains; surely then we will pre- +So do this: Dismiss all the kings from their +vail. +25 +positions and replace them with other officers. +And you must raise an army like the one you +have lost—horse for horse and chariot for char- +iot—so we can fight the Israelites on the plain, +where we will surely prevail.” + +And the king approved their plan and acted ac- +Another War with Ben-hadad +cordingly. +26 + +In the spring, Ben-hadad mobilized the Arame- +27 +ans and went up to Aphek to fight against Israel. +The Israelites also mobilized, gathered sup- + +plies, and marched out to meet them. + +The Israelites camped before them like two small +flocks of goats, while the Arameans covered the +28 +countryside. + +Then the man of God approached the king of +Israel and said, “This is what the LORD says: ‘Be- +cause the Arameans have said that the LORD is a +god of the hills and not of the valleys, I will de- +liver all this great army into your hand. Then you +29 +will know that I am the LORD.’ + +” + +For seven days the armies camped opposite +each other, and on the seventh day the battle +ensued, and the Israelites struck down the +Arameans—a hundred thousand foot soldiers in +30 +one day. + +The rest of them fled into the city of Aphek, +where the wall fell on twenty-seven thousand of +the remaining men. Ben-hadad also fled to the +Ahab Spares Ben-hadad +city and hid in an inner room. +31 + +Then the servants of Ben-hadad said to him, +“Look now, we have heard that the kings of the +house of Israel are merciful. Let us go out to the +king of Israel with sackcloth around our waists +and ropes around our heads. Perhaps he will +32 +spare your life.” + +Afterward, the prophet approached the king of +Israel and said, “Go and strengthen your position, +a 12 + +in Succoth + +b 22 + +So with sackcloth around their waists and +ropes around their heads, they went to the king + +at the turn of the year + +Or + +; also in verse 16 + +Literally + +; similarly in verse 26 + + 1 Kings 21:10 | 335 + +42 + +of Israel and said, “Your servant Ben-hadad says, +‘Please spare my life.’ + +” + +And the king answered, “Is he still alive? He is my +33 +brother.” + +Now the men were looking for a sign of hope, +and they quickly grasped at this word and re- +plied, “Yes, your brother Ben-hadad.” + +And the prophet said to the king, “This is what +c +the LORD says: ‘Because you have let slip from +your hand the man I had devoted to destruction, +your life will be exchanged for his life, and your +43 +people for his people.’ + +” + +Sullen and angry, the king of Israel went home + +Naboth’s Vineyard +to Samaria. + +“Go and get him!” said the king. + +Then Ben-hadad came out, and Ahab had him +34 +come up into his chariot. + +Ben-hadad said to him, “I will restore the cities +my father took from your father; you may set up +your own marketplaces in Damascus, as my fa- +ther did in Samaria.” + + a + +“By this treaty +A Prophet Reproves Ahab +he made a treaty with him and sent him away. +35 + + I release you,” Ahab replied. So + +Meanwhile, by the word of the LORD, one of +the sons of the prophets said to his companion, +“Strike me, please!” +36 +But the man refused to strike him. + +Then the prophet said to him, “Because you +have not obeyed the voice of the LORD, as soon +as you depart from me a lion will kill you.” +37 +And when he left, a lion found him and killed him. + +Then the prophet found another man and said, + +38 + +“Strike me, please!” + +So the man struck him and wounded him, +and +the prophet went and waited on the road for the +king, disguising himself with a bandage over his +39 +eyes. + +As the king passed by, he cried out to the king: +“Your servant had marched out into the middle +of the battle, when suddenly a man came over +with a captive and told me, ‘Guard this man! If he +goes missing for any reason, your life will be ex- +changed for his life, or you will weigh out a talent +But while your servant was busy +of silver. +here and there, the man disappeared.” + +40 + +’ + +b + +And the king of Israel said to him, “So shall your +judgment be; you have pronounced it on your- +41 +self.” + +Then the prophet quickly removed the band- +age from his eyes, and the king of Israel recog- +berit +a 34 +nized him as one of the prophets. + +c 42 + +21 + +2 + +Some time after these events, Naboth the +Jezreelite owned a vineyard in Jezreel +So +next to the palace of Ahab king of Samaria. +Ahab said to Naboth, “Give me your vineyard to +use as a vegetable garden, since it is next to my +palace. I will give you a better vineyard in its +place—or if you prefer, I will give you its value in +3 +silver.” + +But Naboth replied, “The LORD forbid that I + +4 +should give you the inheritance of my fathers.” + +So Ahab went to his palace, sullen and angry be- +cause Naboth the Jezreelite had told him, “I will +not give you the inheritance of my fathers.” He +lay down on his bed, turned his face away, and +5 +refused to eat. + +Soon his wife Jezebel came in and asked, “Why + +6 +are you so sullen that you refuse to eat?” + +Ahab answered, “Because I spoke to Naboth the +Jezreelite and told him, ‘Give me your vineyard +for silver, or if you wish, I will give you another +vineyard in its place.’ And he replied, ‘I will not +7 +” +give you my vineyard!’ + +But his wife Jezebel said to him, “Do you not +reign over Israel? Get up, eat some food, and be +cheerful, for I will get you the vineyard of Naboth +Jezebel’s Plot +the Jezreelite.” +8 + +9 + +Then Jezebel wrote letters in Ahab’s name, +sealed them with his seal, and sent them to the +elders and nobles who lived with Naboth in his +city. + +In the letters she wrote: + +10 + +“Proclaim a fast and give Naboth a seat of +honor among the people. +But seat two +scoundrels opposite him and have them +testify, ‘You have cursed both God and the +king!’ Then take him out and stone him to +covenant +death.” + +b 39 A talent + +cherem +; twice in this verse. + + is approxi- + +Forms of the Hebrew + + are translated in most passages as + +mately 75.4 pounds or 34.2 kilograms of silver. +persons to the LORD, either by destroying them or by giving them as an offering. + +Forms of the Hebrew + + refer to the giving over of things or + + 336 | 1 Kings 21:11 + +11 + +23 + +12 + +So the elders and nobles who lived in Naboth’s +city did as Jezebel had instructed in the letters +They proclaimed a +she had written to them. +fast and gave Naboth a seat of honor among the +13 +people. + +And the two scoundrels came in and sat oppo- +site Naboth, and these men testified against him +before the people, saying, “Naboth has cursed +both God and the king!” + +14 + +So they took him outside the city and stoned him +Then they sent word to Jezebel: “Na- +to death. +15 +both has been stoned to death.” + +When Jezebel heard that Naboth had been +stoned to death, she said to Ahab, “Get up and +take possession of the vineyard of Naboth the +Jezreelite, who refused to give it to you for silver. +16 +For Naboth is no longer alive, but dead.” + +And when Ahab heard that Naboth was dead, +he got up and went down to take possession of +Elijah Denounces Ahab and Jezebel +the vineyard of Naboth the Jezreelite. +17 + +18 + +Then the word of the LORD came to Elijah the +“Get up and go down to meet +Tishbite, saying, +Ahab king of Israel, who is in Samaria. See, he is +in the vineyard of Naboth, where he has gone to +19 +take possession of it. + +Tell him that this is what the LORD says: ‘Have + +Then tell him that this is also what the LORD +says: ‘In the place where the dogs licked up the + a +blood of Naboth, there also the dogs will lick up +20 +your blood—yes, yours!’ + +” + +When Elijah arrived, Ahab said to him, “So you + +have found me out, my enemy.” + +21 + +He replied, “I have found you out because you +have sold yourself to do evil in the sight of the +LORD. + +This is what the LORD says: + + b + +‘I will bring calamity on you + +and consume your descendants; + +22 + +I will cut off from Ahab every male in Israel, + +both slave and free. + +I will make your house like that of Jeroboam + +son of Nebat + +and like that of Baasha son of Ahijah, + +because you have provoked My anger +b 21 + +and caused Israel to sin.’ + +a 19 +c 23 +vour Jezebel at the plot of ground at Jezreel.’ + +you not murdered a man and seized his land?’ + +2 + +And the LORD also speaks concerning Jezebel: + + c + +24 + +‘The dogs will devour Jezebel +by the wall of Jezreel.’ + +Anyone belonging to Ahab who dies in + +the city + +will be eaten by dogs, + +and anyone who dies in the field + +Ahab’s Repentance + +will be eaten by the birds of the air.” + +25 + +26 + +(Surely there was never one like Ahab, who +sold himself to do evil in the sight of the LORD, +incited by his wife Jezebel. +He committed the +most detestable acts by going after idols, just like +the Amorites whom the LORD had driven out be- +27 +fore the Israelites.) + +When Ahab heard these words, he tore his +clothes, put on sackcloth, and fasted. He lay down +28 +in sackcloth and walked around meekly. + +29 + +Then the word of the LORD came to Elijah the +“Have you seen how Ahab +Tishbite, saying: +has humbled himself before Me? Because he has +humbled himself before Me, I will not bring the +calamity during his days, but I will bring it upon +Ahab and the False Prophets +his house in the days of his son.” +(2 Chronicles 18:1–11) + +22 + +Then three years passed without war be- +tween Aram and Israel. + +3 + +However, in the third year, Jehoshaphat king of +who +Judah went down to visit the king of Israel, +said to his servants, “Do you not know that Ra- +moth-gilead is ours, but we have failed to take it +4 +from the hand of the king of Aram?” + +So he asked Jehoshaphat, “Will you go with me + +to fight against Ramoth-gilead?” + +Jehoshaphat answered the king of Israel, “I am as +you are, my people are your people, and my +5 +horses are your horses.” + +But Jehoshaphat also said to the king of +Israel, “Please inquire first for the word of the +6 +LORD.” + +So the king of Israel assembled the prophets, +about four hundred men, and asked them, +“Should I go to war against Ramoth-gilead, or +should I refrain?” + +Behold +‘The dogs will de- + +See 1 Kings 22:38 +Most Hebrew manuscripts; a few Hebrew manuscripts, Vulgate, and Syriac (see also 2 Kings 9:36) + +See LXX; the source of the quotation is clarified in verses 17 and 23; Hebrew + +. + + “Go up,” they replied, “and the Lord will deliver it +7 +into the hand of the king.” + +But Jehoshaphat asked, “Is there not still a +prophet of the LORD here of whom we can +8 +inquire?” + +The king of Israel answered, “There is still one +man through whom we can inquire of the LORD, +but I hate him because he never prophesies any- +thing good for me, but only bad. He is Micaiah son +of Imlah.” + +“The king should not say that!” Jehoshaphat re- +9 +plied. + +So the king of Israel called one of his officials + +10 +and said, “Bring Micaiah son of Imlah at once.” + +Dressed in royal attire, the king of Israel and +Jehoshaphat king of Judah were sitting on their +thrones at the threshing floor by the entrance of +the gate of Samaria, with all the prophets proph- +11 +esying before them. + +1 Kings 22:30 | 337 + +17 + +So Micaiah declared: + +“I saw all Israel scattered on the hills +like sheep without a shepherd. + +And the LORD said, ‘These people have no + +18 + +master; + +let each one return home in peace.’ + +” + +Then the king of Israel said to Jehoshaphat, +“Did I not tell you that he never prophesies good +19 +for me, but only bad?” + +Micaiah continued, “Therefore hear the word +of the LORD: I saw the LORD sitting on His +throne, and all the host of heaven standing by +20 +Him on His right and on His left. + +And the LORD said, ‘Who will entice Ahab to + +march up and fall at Ramoth-gilead?’ +21 +And one suggested this, and another that. + + a + +Then a spirit came forward, stood before the + +LORD, and said, ‘I will entice him.’ +22 +‘By what means?’ asked the LORD. + +Now Zedekiah son of Chenaanah had made for +himself iron horns and declared, “This is what +the LORD says: ‘With these you shall gore the Ar- +12 +ameans until they are finished off.’ + +” + +And he replied, ‘I will go out and be a lying + +spirit in the mouths of all his prophets.’ + +‘You will surely entice him and prevail,’ said the +23 +LORD. ‘Go and do it.’ + +And all the prophets were prophesying the +same, saying, “Go up to Ramoth-gilead and tri- +umph, for the LORD will deliver it into the hand +Micaiah Prophesies against Ahab +of the king.” +(2 Chronicles 18:12–27) + +13 + +Then the messenger who had gone to call +Micaiah instructed him, “Behold now, with one +accord the words of the prophets are favorable +to the king. So please let your words be like +14 +theirs, and speak favorably.” + +But Micaiah said, “As surely as the LORD lives, + +15 +I will speak whatever the LORD tells me.” + +When Micaiah arrived, the king asked him, +“Micaiah, should we go to war against Ramoth- +gilead, or should we refrain?” + +“Go up and triumph,” Micaiah replied, “for the +16 +LORD will deliver it into the hand of the king.” + +But the king said to him, “How many times +must I make you swear not to tell me anything +but the truth in the name of the LORD?” +a 21 + +So you see, the LORD has put a lying spirit in +the mouths of all these prophets of yours, and the +24 +LORD has pronounced disaster against you.” + +Then Zedekiah son of Chenaanah went up, +struck Micaiah in the face, and demanded, +“Which way did the Spirit of the LORD go when +25 +He departed from me to speak with you?” + +Micaiah replied, “You will soon see, on that day + +26 +when you go and hide in an inner room.” + +27 + +And the king of Israel declared, “Take Micaiah +and return him to Amon the governor of the city +and tell them that +and to Joash the king’s son, +this is what the king says: ‘Put this man in prison +and feed him only bread and water until I return +28 +safely.’ + +” + +But Micaiah replied, “If you ever return safely, +the LORD has not spoken through me.” Then he +Ahab’s Defeat and Death (2 Chr. 18:28–34) +added, “Take heed, all you people!” +29 + +So the king of Israel and Jehoshaphat king of +And the king +Judah went up to Ramoth-gilead. +of Israel said to Jehoshaphat, “I will disguise + +30 + +Some texts break verse 21 and begin verse 22 at this point. + + 338 | 1 Kings 22:31 + +myself and go into battle, but you wear your +royal robes.” So the king of Israel disguised him- +31 +self and went into battle. + +Now the king of Aram had ordered his thirty- +two chariot commanders, “Do not fight with any- +32 +one, small or great, except the king of Israel.” + +When the chariot commanders saw Jehosha- +phat, they said, “Surely this is the king of +33 +Israel!” So they turned to fight against him, but +And when the chariot +Jehoshaphat cried out. +commanders saw that he was not the king of Is- +34 +rael, they turned back from pursuing him. + +However, a certain man drew his bow without +taking special aim, and he struck the king of Is- +rael between the joints of his armor. So the king + and take +said to his charioteer, “Turn around +35 +me out of the battle, for I am badly wounded!” + + a + +36 + +The battle raged throughout that day, and the +king was propped up in his chariot facing the Ar- +ameans. And the blood from his wound ran out +onto the floor of the chariot, and that evening he +As the sun was setting, the cry rang out in +died. +the army: + +“Every man to his own city, + +37 + +and every man to his own land!” + +b + +38 +So the king died and was brought to Samaria, +where they buried him. +And the chariot was +washed at the pool of Samaria where the prosti- + and the dogs licked up Ahab’s +tutes bathed, +blood, according to the word that the LORD had +39 +spoken. + +c + +42 + +Jehoshaphat was thirty-five years old when + he became king, and he reigned in Jerusalem +twenty-five years. His mother’s name was +43 +Azubah daughter of Shilhi. + +And Jehoshaphat walked in all the ways of his +father Asa; he did not turn away from them, but +did what was right in the eyes of the LORD. + +44 + +The high places, however, were not removed; the +people still sacrificed and burned incense on the +high places. +Jehoshaphat also made peace with +45 +the king of Israel. + +46 + +As for the rest of the acts of Jehoshaphat, along +with the might he exercised and how he waged +war, are they not written in the Book of the +Chronicles of the Kings of Judah? +He banished +47 +from the land the male shrine prostitutes who re- +And +mained from the days of his father Asa. +there was no king in Edom; a deputy served as +48 +king. + + d + +Jehoshaphat built ships of Tarshish + + to go to +49 +Ophir for gold, but they never set sail, because +At that +they were wrecked at Ezion-geber. +time Ahaziah son of Ahab said to Jehoshaphat, +“Let my servants sail with your servants,” but Je- +50 +hoshaphat refused. + +And Jehoshaphat rested with his fathers and +was buried with them in the city of his father Da- +Ahaziah Reigns in Israel +vid. And his son Jehoram reigned in his place. +(2 Kings 1:1–16) + +51 + +As for the rest of the acts of Ahab, along with +all his accomplishments and the ivory palace and +all the cities he built, are they not written in the +40 +Book of the Chronicles of the Kings of Israel? + +And Ahab rested with his fathers, and his son +Jehoshaphat Reigns in Judah (2 Chr. 20:31–34) +Ahaziah reigned in his place. +41 + +In the fourth year of Ahab’s reign over Israel, +Jehoshaphat son of Asa became king of Judah. + +In the seventeenth year of Jehoshaphat’s reign +over Judah, Ahaziah son of Ahab became king of +52 +Israel, and he reigned in Samaria two years. +And he did evil in the sight of the LORD and +walked in the ways of his father and mother and +of Jeroboam son of Nebat, who had caused Israel +53 +to sin. + +Ahaziah served and worshiped Baal, provok- +ing the LORD, the God of Israel, to anger, just as +his father had done. + +a 34 +d 48 + +Turn your hand +a fleet of trading ships + +Literally +Or + +b 38 + +the pool of Samaria, where they cleaned the weapons + +c 38 + +Or + +See 1 Kings 21:19. + + 2 Kings + +Elijah Denounces Ahaziah +(1 Kings 22:51–53) + +1 + +2 + +After the death of Ahab, Moab rebelled +against Israel. + +Now Ahaziah had fallen through the lattice +of his upper room in Samaria and injured him- +self. So he sent messengers and instructed them: +“Go inquire of Baal-zebub, the god of Ekron, +3 +whether I will recover from this injury.” + +But the angel of the LORD said to Elijah the +Tishbite, “Go up to meet the messengers of the +king of Samaria and ask them, ‘Is it because there +is no God in Israel that you are on your way to +There- +inquire of Baal-zebub, the god of Ekron?’ +fore this is what the LORD says: ‘You will not get +up from the bed on which you are lying. You will +surely die.’ +5 +So Elijah departed. + +” + +4 + +When the messengers returned to the king, he + +6 +asked them, “Why have you returned?” + +They replied, “A man came up to meet us and +said, ‘Go back to the king who sent you and tell +him that this is what the LORD says: Is it because +there is no God in Israel that you are sending +these men to inquire of Baal-zebub, the god of +Ekron? Therefore you will not get up from the +7 +” +bed on which you are lying. You will surely die.’ + +The king asked them, “What sort of man came +a +8 +up to meet you and spoke these words to you?” + +“He was a hairy man, + +” they answered, “with a + +leather belt around his waist.” +9 +“It was Elijah the Tishbite,” said the king. + +Then King Ahaziah sent to Elijah a captain with +his company of fifty men. So the captain went up +to Elijah, who was sitting on top of a hill, and said +to him, “Man of God, the king declares, ‘Come +10 +down!’ + +” + +Elijah answered the captain, “If I am a man of +God, may fire come down from heaven and con- +sume you and your fifty men.” +He had a garment of hair +a 8 + +b 17 Jehoram + +And fire came down from heaven and consumed +11 +the captain and his fifty men. + +So the king sent to Elijah another captain with +his fifty men. And the captain said to Elijah, “Man +12 +” +of God, the king declares, ‘Come down at once!’ + +Again Elijah replied, “If I am a man of God, may +fire come down from heaven and consume you +and your fifty men.” + +And the fire of God came down from heaven and +13 +consumed the captain and his fifty men. + +So the king sent a third captain with his fifty +men. And the third captain went up, fell on his +knees before Elijah, and begged him, “Man of God, +may my life and the lives of these fifty servants +of yours please be precious in your sight. +Be- +hold, fire has come down from heaven and con- +sumed the first two captains of fifty, with all their +men. But now may my life be precious in your +15 +sight.” + +14 + +Then the angel of the LORD said to Elijah, “Go + +down with him. Do not be afraid of him.” + +So Elijah got up and went down with him to the +16 +king. + +And Elijah said to King Ahaziah, “This is what +the LORD says: Is there really no God in Israel for +you to inquire of His word? Is that why you have +sent messengers to inquire of Baal-zebub, the +god of Ekron? Therefore you will not get up from +the bed on which you are lying. You will surely +Jehoram Succeeds Ahaziah +die.” +17 + + b + +So Ahaziah died according to the word of the +LORD that Elijah had spoken. And since he had +no son, Jehoram + succeeded him in the second +year of the reign of Jehoram son of Jehoshaphat +18 +over Judah. + +As for the rest of the acts of Ahaziah, along +with his accomplishments, are they not written +in the Book of the Chronicles of the Kings of +Israel? + +Joram + +Or + + is a variant spelling of + +. + + 340 | 2 Kings 2:1 + +Elijah Taken Up to Heaven + +11 + +2 + +2 + +Shortly before the LORD took Elijah up to +heaven in a whirlwind, Elijah and Elisha +were on their way from Gilgal, +and Elijah said to +Elisha, “Please stay here, for the LORD has sent +me on to Bethel.” + +But Elisha replied, “As surely as the LORD lives +and as you yourself live, I will not leave you.” +3 +So they went down to Bethel. + +Then the sons of the prophets at Bethel came +out to Elisha and said, “Do you know that the +LORD will take your master away from you +today?” +4 + “Yes, I know,” he replied. “Do not speak of it.” + +And Elijah said to Elisha, “Please stay here, for + +the LORD has sent me on to Jericho.” + +But Elisha replied, “As surely as the LORD lives +and as you yourself live, I will not leave you.” +5 +So they went to Jericho. + +Then the sons of the prophets at Jericho came +up to Elisha and said, “Do you know that the +LORD will take your master away from you +today?” +6 +“Yes, I know,” he replied. “Do not speak of it.” + +And Elijah said to Elisha, “Please stay here, for + +the LORD has sent me on to the Jordan.” + +But Elisha replied, “As surely as the LORD lives +and as you yourself live, I will not leave you.” +7 +So the two of them went on. + +8 + +Then a company of fifty of the sons of the +prophets went and stood at a distance, facing Eli- +jah and Elisha as the two of them stood by the +And Elijah took his cloak, rolled it up, +Jordan. +and struck the waters, which parted to the right +and to the left, so that the two of them crossed +9 +over on dry ground. + +After they had crossed over, Elijah said to +Elisha, “Tell me, what can I do for you before I am +taken away from you?” + +“Please, let me inherit a double portion of your +10 +spirit,” Elisha replied. + +“You have requested a difficult thing,” said Eli- +jah. “Nevertheless, if you see me as I am taken +from you, it will be yours. But if not, then it will +not be so.” +a 21 + +barrenness + +Or + +As they were walking along and talking to- +gether, suddenly a chariot of fire with horses of +fire appeared and separated the two of them, and +12 +Elijah went up into heaven in a whirlwind. + +As Elisha watched, he cried out, “My father, my +father, the chariots and horsemen of Israel!” And +he saw Elijah no more. So taking hold of his own +13 +clothes, he tore them in two. + +14 + +Elisha also picked up the cloak that had fallen +from Elijah, and he went back and stood on the +Then he took the cloak of +bank of the Jordan. +Elijah that had fallen from him and struck the wa- +ters. “Where now is the LORD, the God of Elijah?” +he asked. + +And when he had struck the waters, they parted +to the right and to the left, and Elisha crossed +Elisha Succeeds Elijah +over. +15 + +When the sons of the prophets who were +watching him from Jericho saw what had hap- +pened, they said, “The spirit of Elijah rests on Eli- +sha.” And they went to meet him and bowed +16 +down to the ground before him. + +“Look now,” they said to Elisha, “we your serv- +ants have fifty valiant men. Please let them go +and search for your master. Perhaps the Spirit of +the LORD has taken him up and put him on one +of the mountains or in one of the valleys.” +17 +“Do not send them,” Elisha replied. + +But when they pressed him to the point of em- + +barrassment, he said, “Send them.” + +And they sent fifty men, who searched for three +18 +days but did not find Elijah. + +When they returned to Elisha, who was stay- +ing in Jericho, he said to them, “Didn’t I tell you +Elisha Heals the Waters of Jericho +not to go?” +19 + +Then the men of the city said to Elisha, “Please +note, our lord, that the city’s location is good, as +you can see. But the water is bad and the land is +20 +unfruitful.” + +“Bring me a new bowl,” he replied, “and put + +21 + +some salt in it.” + +So they brought it to him, +and Elisha went out +to the spring, cast the salt into it, and said, “This +is what the LORD says: ‘I have healed this water. +No longer will it cause death or unfruitfulness. +” + +a + +’ + + 22 + +11 + +2 Kings 3:24 | 341 + +And the waters there have been healthy to this + +Elisha Mocked +day, according to the word spoken by Elisha. +23 + + a +From there, Elisha went up to Bethel, and + +as he was walking up the road, a group of boys +came out of the city and jeered at him, chanting, +24 +“Go up, you baldhead! Go up, you baldhead!” + +Then he turned around, looked at them, and +called down a curse on them in the name of the +LORD. + +Suddenly two female bears came out of the +25 +woods and mauled forty-two of the boys. + +And Elisha went on to Mount Carmel, and from + +Moab’s Rebellion +there he returned to Samaria. + +3 + +2 + + b +In the eighteenth year of Jehoshaphat’s reign + son of Ahab became +over Judah, Jehoram +king of Israel, and he reigned in Samaria twelve +years. +And he did evil in the sight of the LORD, +but not as his father and mother had done. He re- +moved the sacred pillar of Baal that his father +3 +had made. + +Nevertheless, he clung to the sins that Jeroboam +son of Nebat had caused Israel to commit; he did +c +4 +not turn away from them. + +5 + +Now Mesha king of Moab was a sheep breeder, +and he would render to the king of Israel a hun- +dred thousand lambs and the wool of a hundred +But after the death of Ahab, the +thousand rams. +6 +king of Moab rebelled against the king of Israel. +7 +So at that time King Jehoram set out from Sa- +And he sent a +maria and mobilized all Israel. +message to Jehoshaphat king of Judah: “The king +of Moab has rebelled against me. Will you go with +me to fight against Moab?” + +8 + + “I will go,” replied Jehoshaphat. “I am as you are, +my people are your people, and my horses are +Then he asked, “Which way shall +your horses.” +we go up?” +9 +“By way of the Desert of Edom,” replied Joram. + +So the king of Israel, the king of Judah, and the +king of Edom set out, and after they had traveled +a roundabout route for seven days, they had no +10 +water for their army or for their animals. + +“Alas,” said the king of Israel, “for the LORD has +summoned these three kings to deliver them into +some small youths +a 23 +the hand of Moab!” + +some insignificant young men + +But Jehoshaphat asked, “Is there no prophet of +the LORD here? Let us inquire of the LORD +through him.” + +And one of the servants of the king of Israel an- +swered, “Elisha son of Shaphat is here. He used +12 +to pour water on the hands of Elijah. + +” + +d + +Jehoshaphat affirmed, “The word of the LORD +is with him.” So the king of Israel and Jehosha- +13 +phat and the king of Edom went down to him. + +Elisha, however, said to the king of Israel, +“What have we to do with each other? Go to the +prophets of your father and of your mother!” + +“No,” replied the king of Israel, “for it is the LORD +who has summoned these three kings to deliver +14 +them into the hand of Moab.” + +Then Elisha said, “As surely as the LORD of +Hosts lives, before whom I stand, were it not for +my regard for the presence of Jehoshaphat king +of Judah, I would not look at you or acknowledge +you. + +But now, bring me a harpist. + +15 + +” + +e + +16 + +18 + +17 + +And while the harpist played, the hand of the +LORD came upon Elisha +and he said, “This +is what the LORD says: ‘Dig this valley full of +For the LORD says, ‘You will not see +ditches.’ +wind or rain, but the valley will be filled with wa- +ter, and you will drink—you and your cattle and +This is a simple matter in the +your animals.’ +sight of the LORD, and He will also deliver the +Moabites into your hand. +And you shall attack +every fortified city and every city of importance. +You shall cut down every good tree, stop up +every spring, and ruin every good field with +20 +stones.” + +19 + +The next morning, at the time of the morning +sacrifice, water suddenly flowed from the direc- +21 +tion of Edom and filled the land. + +22 + +Now all the Moabites had heard that the kings +had come up to fight against them. So all who +could bear arms, young and old, were summoned +When they got up +and stationed at the border. +early in the morning, the sun was shining on the +water, and it looked as red as blood to the Moab- +23 +ites across the way. + +“This is blood!” they exclaimed. “The kings +have clashed swords and slaughtered one an- +24 +other. Now to the plunder, Moab!” + +But when the Moabites came to the camp of Is- +Joram +rael, the Israelites rose up and attacked them, +a musician + +b 1 Jehoram +e 15 + +c 4 + +sheepherder + +d 11 + +He was Elijah’s personal assistant + +Or + + or + +also in verse 6. + +Or + +Or + +; similarly in verse 24 + + is a variant spelling of + +; + +Or + +; twice in this verse + + 342 | 2 Kings 3:25 + +and they fled before them. So the Israelites in- +25 +vaded their land and struck down the Moabites. +They destroyed the cities, and each man threw +stones on every good field until it was covered. +They stopped up every spring and cut down +every good tree. Only Kir-haraseth was left with +stones in place, but men with slings surrounded +26 +it and attacked it as well. + +When the king of Moab saw that the battle was +too fierce for him, he took with him seven hun- +dred swordsmen to break through to the king of +So he took +Edom, but they could not prevail. +his firstborn son, who was to succeed him, and +a +offered him as a burnt offering on the city wall. + +27 + +And there was great fury against the Israelites, +The Widow’s Oil +so they withdrew and returned to their own land. + +4 + +Now the wife of one of the sons of the proph- +ets cried out to Elisha, “Your servant, my +husband, is dead, and you know that your +servant feared the LORD. And now his creditor +2 +is coming to take my two children as his slaves!” + +“How can I help you?” asked Elisha. “Tell me, + +what do you have in the house?” + +She answered, “Your servant has nothing in the +3 +house but a jar of oil.” + +4 + +“Go,” said Elisha, “borrow empty jars from all +Then +your neighbors. Do not gather just a few. +go inside, shut the door behind you and your +sons, and pour oil into all these jars, setting the +5 +full ones aside.” + +So she left him, and after she had shut the door +behind her and her sons, they kept bringing jars +to her, and she kept pouring. +When all the jars +were full, she said to her son, “Bring me another.” + +6 + +But he replied, “There are no more jars.” Then +7 +the oil stopped flowing. + +She went and told the man of God, and he said, +“Go, sell the oil, and pay your debt. Then you and +The Shunammite Woman (Matt. 10:40–42) +your sons can live on the remainder.” +8 + +One day Elisha went to Shunem, and a promi- +nent woman who lived there persuaded him to +have a meal. So whenever he would pass by, he +9 +would stop there to eat. + +Then the woman said to her husband, “Behold, +a 27 +now I know that the one who often comes our + +And Israel’s fury was great + +Or + +10 + +Please let us make a +way is a holy man of God. +small room upstairs and put in it a bed, a table, a +chair, and a lamp for him. Then when he comes +11 +to us, he can stay there.” + +12 +One day Elisha came to visit and went to his +And he said to Gehazi + +upper room to lie down. +his servant, “Call the Shunammite woman.” + +13 + +And when he had called her, she stood before +him, +and Elisha said to Gehazi, “Now tell her, +‘Look, you have gone to all this trouble for us. +What can we do for you? Can we speak on your +behalf to the king or the commander of the +army?’ + +” + +“I have a home among my own people,” she +14 +replied. + +So he asked, “Then what should be done for + +her?” + +“Well, she has no son,” Gehazi replied, “and her +15 +husband is old.” + +“Call her,” said Elisha. + +16 + +So Gehazi called her, and she stood in the door- +way. +And Elisha declared, “At this time next +year, you will hold a son in your arms.” + +“No, my lord,” she said. “Do not lie to your maid- +17 +servant, O man of God.” + +But the woman did conceive, and at that time +the next year she gave birth to a son, just as Eli- +Elisha Raises the Shunammite’s Son +sha had told her. +(Acts 20:7–12) + +18 + +And the child grew, and one day he went out to + +19 +his father, who was with the harvesters. + +“My head! My head!” he complained to his + +father. + +So his father told a servant, “Carry him to his +20 +mother.” + +21 + +After the servant had picked him up and car- +ried him to his mother, the boy sat on her lap un- +til noon, and then he died. +And she went up and +laid him on the bed of the man of God. Then she +22 +shut the door and went out. + +And the woman called her husband and said, +“Please send me one of the servants and one of +the donkeys, that I may go quickly to the man of +God and return.” + + 23 + +“Why would you go to him today?” he replied. + +37 +Then Elisha said, “Pick up your son.” + +2 Kings 5:2 | 343 + +“It is not a New Moon or a Sabbath.” +24 +“Everything is all right,” she said. + +25 + +Then she saddled the donkey and told her +servant, “Drive onward; do not slow the pace for +me unless I tell you.” +So she set out and went +to the man of God at Mount Carmel. + +When the man of God saw her at a distance, he +26 +said to his servant Gehazi, “Look, there is the +Shunammite woman. +Please run out now to +meet her and ask, ‘Are you all right? Is your hus- +band all right? Is your child all right?’ +27 +And she answered, “Everything is all right.” + +” + +When she reached the man of God at the +mountain, she clung to his feet. Gehazi came over +to push her away, but the man of God said, “Leave +her alone, for her soul is in deep distress, and the +LORD has hidden it from me and has not told +28 +me.” + +Then she said, “Did I ask you for a son, my lord? + +29 +Didn’t I say, ‘Do not deceive me?’ + +” + +a + +So Elisha said to Gehazi, “Tie up your gar- +ment, + take my staff in your hand, and go! If you +meet anyone, do not greet him, and if anyone +greets you, do not answer him. Then lay my staff +30 +on the boy’s face.” + +And the mother of the boy said, “As surely as +the LORD lives and as you yourself live, I will not +31 +leave you.” So he got up and followed her. + +Gehazi went on ahead of them and laid the staff +on the boy’s face, but there was no sound or re- +sponse. So he went back to meet Elisha and told +32 +him, “The boy has not awakened.” + +33 + +When Elisha reached the house, there was the +boy lying dead on his bed. +So he went in, closed +the door behind the two of them, and prayed to +34 +the LORD. + +35 + +Then Elisha got on the bed and lay on the boy, +mouth to mouth, eye to eye, and hand to hand. As +he stretched himself out over him, the boy’s body +became warm. +Elisha turned away and paced +back and forth across the room. Then he got on +the bed and stretched himself out over the boy +again, and the boy sneezed seven times and +36 +opened his eyes. + +She came in, fell at his feet, and bowed to the +ground. Then she picked up her son and went +Elisha Purifies the Poisonous Stew +out. +38 + +When Elisha returned to Gilgal, there was +a famine in the land. As the sons of the prophets +were sitting at his feet, he said to his attendant, +“Put on the large pot and boil some stew for the +39 +sons of the prophets.” + +One of them went out to the field to gather +herbs, and he found a wild vine from which he +gathered as many wild gourds as his garment +could hold. Then he came back and cut them up +into the pot of stew, though no one knew what +40 +they were. + +And they poured it out for the men to eat, but +when they tasted the stew they cried out, “There +is death in the pot, O man of God!” And they could +41 +not eat it. + +Then Elisha said, “Get some flour.” He threw it +into the pot and said, “Pour it out for the people +Feeding a Hundred Men +to eat.” And there was nothing harmful in the pot. +(Matthew 15:29–39 ; Mark 8:1–10) + +42 + +Now a man from Baal-shalishah came to the +man of God with a sack of twenty loaves of barley +bread from the first ripe grain. +43 +“Give it to the people to eat,” said Elisha. + +But his servant asked, “How am I to set twenty + +loaves before a hundred men?” + +“Give it to the people to eat,” said Elisha, “for this +is what the LORD says: ‘They will eat and have +44 +some left over.’ + +” + +So he set it before them, and they ate and had +some left over, according to the word of the +Naaman Cured of Leprosy (Luke 17:11–19) +LORD. + +5 + +Now Naaman, the commander of the army of +the king of Aram, was a great man in his mas- +ter’s sight and highly regarded, for through him +the LORD had given victory to Aram. And he was +2 +a mighty man of valor, but he was a leper. + +b + +Elisha summoned Gehazi and said, “Call the +Shunammite woman.” So he called her and she +a 29 +came. + +Gird up your loins + +leper + +b 1 + +leprosy + +Literally + +A + +, or one with + +At this time the Arameans had gone out in +bands and had taken a young girl from the land +of Israel, and she was serving Naaman’s wife. +, was one afflicted with a skin disease; see Leviticus 13. + + 344 | 2 Kings 5:3 + +3 + +She said to her mistress, “If only my master +would go to the prophet who is in Samaria, he +4 +would cure him of his leprosy.” + +And Naaman went and told his master what the + +5 +girl from the land of Israel had said. + +“Go now,” said the king of Aram, “and I will send + +you with a letter to the king of Israel.” + +a + +b + +So Naaman departed, taking with him ten talents + and ten + six thousand shekels of gold, +of silver, +6 +sets of clothing. + +And the letter that he took to the king of Israel +stated: “With this letter I am sending my servant +Naaman, so that you may cure him of his +7 +leprosy.” + +When the king of Israel read the letter, he tore +his clothes and asked, “Am I God, killing and giv- +ing life, that this man expects me to cure a leper? +Surely you can see that he is seeking a quarrel +8 +with me!” + +Now when Elisha the man of God heard that the +king of Israel had torn his clothes, he sent a mes- +sage to the king: “Why have you torn your +clothes? Please let the man come to me, and he +9 +will know that there is a prophet in Israel.” + +So Naaman came with his horses and chariots + +10 +and stood at the door of Elisha’s house. + +Then Elisha sent him a messenger, who said, +“Go and wash yourself seven times in the Jordan, +and your flesh will be restored, and you will be +11 +clean.” + +But Naaman went away angry, saying, “I +thought that he would surely come out, stand +and call on the name of the LORD his God, and +12 +wave his hand over the spot to cure my leprosy. +Are not the Abanah and Pharpar, the rivers of +Damascus, better than all the waters of Israel? +Could I not have washed in them and been +13 +cleansed?” So he turned and went away in a rage. + +Naaman’s servants, however, approached him +and said, “My father, if the prophet had told you +to do some great thing, would you not have done +it? How much more, then, when he tells you, +14 +‘Wash and be cleansed’?” + +So Naaman went down and dipped himself in +the Jordan seven times, according to the word of +the man of God, and his flesh was restored and +a 5 10 talents +became like that of a little child, and he was clean. + +c 22 A talent + +Gehazi’s Greed and Leprosy + +15 + +Then Naaman and all his attendants went back +to the man of God, stood before him, and de- +clared, “Now I know for sure that there is no God +in all the earth except in Israel. So please accept +16 +a gift from your servant.” + +But Elisha replied, “As surely as the LORD +lives, before whom I stand, I will not accept it.” +And although Naaman urged him to accept it, he +17 +refused. + +“If you will not,” said Naaman, “please let me, +your servant, be given as much soil as a pair of +mules can carry. For your servant will never +18 +again make a burnt offering or a sacrifice to any +other god but the LORD. +Yet may the LORD for- +give your servant this one thing: When my mas- +ter goes into the temple of Rimmon to worship +there, and he leans on my arm, and I bow down +in the temple of Rimmon, may the LORD forgive +19 +your servant in this matter.” + +“Go in peace,” said Elisha. + +20 +But after Naaman had traveled a short distance, +Gehazi, the servant of Elisha the man of God, +said, “Look, my master has spared this Aramean, +Naaman, by not accepting what he brought. As +surely as the LORD lives, I will run after him and +21 +get something from him.” + +So Gehazi pursued Naaman. And when +Naaman saw him running toward him, he got +down from the chariot to meet him and asked, “Is +22 +everything all right?” + +“Everything is all right,” Gehazi replied. “My +master has sent me to say, ‘Look, two young men +from the sons of the prophets have just now +come to me from the hill country of Ephraim. +Please give them a talent of silver + and two sets +23 +of clothing.’ + +” + + c + +But Naaman insisted, “Please, take two tal- +ents.” And he urged Gehazi to accept them. Then +he tied up two talents of silver in two bags along +with two sets of clothing and gave them to two of +24 +his servants, who carried them ahead of Gehazi. + +When Gehazi came to the hill, he took the gifts +from the servants and stored them in the house. +25 +Then he dismissed the men, and they departed. + +When Gehazi went in and stood before his +master, Elisha asked him, “Gehazi, where have +you been?” + +b 5 6,000 shekels + + is approximately 754 pounds or 342 kilograms of silver. + + is approximately 150.8 pounds + +or 68.4 kilograms of gold. + + is approximately 75.4 pounds or 34.2 kilograms of silver. + + 26 +“Your servant did not go anywhere,” he replied. + +But Elisha questioned him, “Did not my spirit +go with you when the man got down from his +chariot to meet you? Is this the time to accept +money and clothing, olive groves and vineyards, +27 +sheep and oxen, menservants and maidservants? +Therefore, the leprosy of Naaman will cling to + +you and your descendants forever!” + +And as Gehazi left his presence, he was leprous— +The Axe Head Floats +as white as snow. + +6 + +2 + +Now the sons of the prophets said to Elisha, +“Please take note that the place where we +Please let us +meet with you is too small for us. +go to the Jordan, where each of us can get a log so +we can build ourselves a place to live there.” +3 +“Go,” said Elisha. + +Then one of them said, “Please come with your + +servants.” +4 +“I will come,” he replied. + +So Elisha went with them, and when they came +5 +to the Jordan, they began to cut down some trees. +As one of them was cutting down a tree, the iron +axe head fell into the water. “Oh, my master,” he +6 +cried out, “it was borrowed!” + +“Where did it fall?” asked the man of God. + +And when he showed him the place, the man of +God cut a stick, threw it there, and made the iron +7 +float. + +“Lift it out,” he said, and the man reached out his + +Elisha Captures the Blinded Arameans +hand and took it. +8 + +2 Kings 6:23 | 345 + +12 + +But one of his servants replied, “No one, my +lord the king. For Elisha, the prophet in Israel, +tells the king of Israel the very words you speak +13 +in your bedroom.” + +So the king said, “Go and see where he is, that + +I may send men to capture him.” +14 +On receiving the report, “Elisha is in Dothan,” +the king of Aram sent horses, chariots, and a +great army. They went there by night and sur- +15 +rounded the city. + +When the servant of the man of God got up and +went out early in the morning, behold, an army +with horses and chariots had surrounded the +city. So he asked Elisha, “Oh, my master, what are +16 +we to do?” + +“Do not be afraid,” Elisha answered, “for those +who are with us are more than those who are +17 +with them.” + +Then Elisha prayed, “O LORD, please open his + +eyes that he may see.” + +And the LORD opened the eyes of the young man, +and he saw that the hills were full of horses and +18 +chariots of fire all around Elisha. + +As the Arameans came down against him, Eli- +sha prayed to the LORD, “Please strike these peo- +ple with blindness.” So He struck them with +19 +blindness, according to the word of Elisha. + +And Elisha told them, “This is not the way, and +this is not the city. Follow me, and I will take you +to the man you are seeking.” And he led them to +20 +Samaria. + +When they had entered Samaria, Elisha said, +“O LORD, open the eyes of these men that they +may see.” + +Now the king of Aram was at war against Israel. +After consulting with his servants, he said, “My +9 +camp will be in such and such a place.” + +Then the LORD opened their eyes, and they +looked around and discovered that they were in +21 +Samaria. + +Then the man of God sent word to the king of +Israel: “Be careful not to pass by this place, for +10 +the Arameans are going down there.” + + a + +11 + +So the king of Israel sent word to the place the + Eli- +man of God had pointed out. Time and again +sha warned the king, so that he was on his guard +For this reason the king of Aram +in such places. +became enraged and called his servants to de- +mand of them, “Tell me, which one of us is on the +side of the king of Israel?” +a 10 + +Not once and not twice + +And when the king of Israel saw them, he +asked Elisha, “My father, shall I kill them? Shall I +22 +kill them?” + +“Do not kill them,” he replied. “Would you kill +those you have captured with your own sword or +bow? Set food and water before them, that they +may eat and drink and then return to their mas- +23 +ter.” + +So the + + king prepared a great feast for them, +and after they had finished eating and drinking, + +Literally + + 346 | 2 Kings 6:24 + +he sent them away, and they returned to their +master. And the Aramean raiders did not come +The Siege and Famine of Samaria +into the land of Israel again. +24 + +Some time later, Ben-hadad king of Aram +assembled his entire army and marched up to +25 +besiege Samaria. + +So there was a great famine in Samaria. +Indeed, they besieged the city so long that a don- +key’s head sold for eighty shekels of silver, + and +a quarter cab of dove’s dung + sold for five shek- +26 +els of silver. + + b + +a + +c + +As the king of Israel was passing by on the wall, +a woman cried out to him, “Help me, my lord the +27 +king!” + +He answered, “If the LORD does not help you, +28 +where can I find help for you? From the threshing +floor or the winepress?” +Then the king asked +her, “What is the matter?” + +29 + +And she answered, “This woman said to me, ‘Give +up your son, that we may eat him, and tomorrow +So we boiled my son and +we will eat my son.’ +ate him, and the next day I said to her, ‘Give up +your son, that we may eat him.’ But she had hid- +30 +den her son.” + +When the king heard the words of the woman, +he tore his clothes. And as he passed by on the +31 +wall, the people saw the sackcloth under his +He announced, “May +clothes next to his skin. +God punish me, and ever so severely, if the head +of Elisha son of Shaphat remains on his shoulders +32 +through this day!” + +Now Elisha was sitting in his house, and the el- +ders were sitting with him. The king sent a mes- +senger ahead, but before he arrived, Elisha said +to the elders, “Do you see how this murderer has +sent someone to cut off my head? Look, when the +messenger comes, shut the door to keep him out. +Is not the sound of his master’s footsteps behind +33 +him?” + +While Elisha was still speaking with them, the +messenger came down to him. And the king said, +“This calamity is from the LORD. Why should I +wait for the LORD any longer?” +a 25 80 shekels + +Elisha’s Prophecy of Plenty + +7 + + d + +Then Elisha said, “Hear the word of the +LORD! This is what the LORD says: ‘About +this time tomorrow at the gate of Samaria, a seah + and two seahs +of fine flour +2 +of barley + + will sell for a shekel, +” + + will sell for a shekel.’ + +e + + f + +But the officer on whose arm the king leaned +answered the man of God, “Look, even if the +LORD were to make windows in heaven, could +this really happen?” + +“You will see it with your own eyes,” replied Eli- +The Syrians Flee +sha, “but you will not eat any of it.” +3 + + g + +4 + +Now there were four men with leprosy + + at the +entrance of the city gate, and they said to one an- +other, “Why just sit here until we die? +If we say, +‘Let us go into the city,’ we will die there from the +famine in the city; but if we sit here, we will also +die. So come now, let us go over to the camp of +the Arameans. If they let us live, we will live; if +5 +they kill us, we will die.” + +6 + +So they arose at twilight and went to the camp +of the Arameans. But when they came to the out- +skirts of the camp, there was not a man to be +For the Lord had caused the Arameans to +found. +hear the sound of chariots, horses, and a great +army, so that they said to one another, “Look, the +king of Israel must have hired the kings of the +7 +Hittites and Egyptians to attack us.” + +Thus the Arameans had arisen and fled at twi- +light, abandoning their tents and horses and +donkeys. The camp was intact, and they had run +8 +for their lives. + +When the lepers reached the edge of the camp, +they went into a tent to eat and drink. Then they +carried off the silver, gold, and clothing, and went +and hid them. On returning, they entered an- +other tent, carried off some items from there, and +9 +hid them. + +Finally, they said to one another, “We are not +doing what is right. Today is a day of good news. +If we are silent and wait until morning light, our +sin will overtake us. Now, therefore, let us go and +tell the king’s household.” + +a quarter cab of seed pods + +b 25 + + is approximately 2 pounds or 907.2 grams of silver. + +Or + +c 25 5 shekels + +mately 0.28 dry quarts or 0.31 liters +e 1 A shekel +mately 6.6 dry quarts or 7.3 liters (probably about 8.2 pounds or 3.7 kilograms of flour); here and in verses 16 and 18. + is ap- +proximately 13.2 dry quarts or 14.6 liters (probably about 19.3 pounds or 8.8 kilograms of barley); here and in verses 16 +and 18. + was a term used for various skin diseases; here and in verse 8; see Leviticus 13. + + is approximately 0.4 ounces or 11.4 grams, probably of silver; here and in verses 16 and 18. +g 3 Leprosy + + is approximately 2 ounces or 57 grams of silver. + + is approxi- + +d 1 A seah +; that is, approxi- +f 1 2 seahs + + 10 + +The Shunammite’s Land Restored + +2 Kings 8:11 | 347 + +So they went and called out to the gatekeepers +of the city, saying, “We went to the Aramean +camp and no one was there—not a trace—only +tethered horses and donkeys, and the tents were +11 +intact.” + +The gatekeepers shouted the news, and it was + +12 +reported to the king’s household. + +So the king got up in the night and said to his +servants, “Let me tell you what the Arameans +have done to us. They know we are starving, so +they have left the camp to hide in the field, think- +ing, ‘When they come out of the city, we will take +13 +them alive and enter the city.’ + +” + +But one of his servants replied, “Please, have +scouts take five of the horses that remain in the +city. Their plight will be no worse than all the Is- +raelites who are left here. You can see that all the +Israelites here are doomed. So let us send them +14 +and find out.” + +15 + +Then the scouts took two chariots with horses, +and the king sent them after the Aramean army, +And they tracked them as +saying, “Go and see.” +far as the Jordan, and indeed, the whole way was +littered with the clothing and equipment the +Arameans had thrown off in haste. So the scouts +Elisha’s Prophecy Fulfilled +returned and told the king. +16 + +Then the people went out and plundered the +camp of the Arameans. It was then that a seah of +fine flour sold for a shekel, and two seahs of bar- +ley sold for a shekel, according to the word of the +17 +LORD. + +18 + +Now the king had appointed the officer on +whose arm he leaned to be in charge of the gate, +but the people trampled him in the gateway, and +he died, just as the man of God had foretold when +It happened just as +the king had come to him. +the man of God had told the king: “About this +time tomorrow at the gate of Samaria, two seahs +of barley will sell for a shekel, and a seah of fine +19 +flour will sell for a shekel.” + +And the officer had answered the man of God, +“Look, even if the LORD were to make windows +in heaven, could this really happen?” + +So Elisha had replied, “You will see it with your +20 +own eyes, but you will not eat any of it!” + +And that is just what happened to him. The +people trampled him in the gateway, and he died. +“Go and say, ‘You will surely not recover.’ And the LORD +a 10 + +Or + +8 + +Now Elisha had said to the woman whose +son he had restored to life, “Arise, you and +your household; go and live as a foreigner wher- +ever you can. For the LORD has decreed that a +2 +seven-year famine will come to the land.” + +So the woman had proceeded to do as the man +of God had instructed. And she and her house- +hold lived as foreigners for seven years in the +3 +land of the Philistines. + +At the end of seven years, when the woman re- +turned from the land of the Philistines, she went +4 +to the king to appeal for her house and her land. + +Now the king had been speaking to Gehazi, the +servant of the man of God, saying, “Please relate +5 +to me all the great things Elisha has done.” + +And Gehazi was telling the king how Elisha had +brought the dead back to life. Just then the +woman whose son Elisha had revived came to +appeal to the king for her house and her land. So +Gehazi said, “My lord the king, this is the woman, +6 +and this is the son Elisha restored to life.” + +When the king asked the woman, she confirmed +it. So the king appointed for her an officer, saying, +“Restore all that was hers, along with all the pro- +ceeds of the field from the day that she left the +Hazael Murders Ben-hadad +country until now.” +7 + +Then Elisha came to Damascus while Ben- +hadad king of Aram was sick, and the king was +8 +told, “The man of God has come here.” + +So the king said to Hazael, “Take a gift in your +hand, go to meet the man of God, and inquire of +the LORD through him, ‘Will I recover from this +9 +illness?’ + +” + +So Hazael went to meet Elisha, taking with him +a gift of forty camel loads of every good thing +from Damascus. And he went in and stood before +him and said, “Your son Ben-hadad king of Aram +has sent me to ask, ‘Will I recover from this +10 +illness?’ + +” + + a + +Elisha answered, “Go and tell him, ‘You will + has shown me + +surely recover.’ But the LORD +11 +that in fact he will die.” + +Elisha fixed his gaze steadily on him until +Hazael became uncomfortable. Then the man of +God began to weep. + + 348 | 2 Kings 8:12 + +12 + +24 + +“Why is my lord weeping?” asked Hazael. + +“Because I know the evil you will do to the Isra- +elites,” Elisha replied. “You will set fire to their +fortresses, kill their young men with the sword, +dash their little ones to pieces, and rip open their +13 +pregnant women.” + +“But how could your servant, a mere dog, do + +such a monstrous thing?” said Hazael. + +And Elisha answered, “The LORD has shown me +14 +that you will be king over Aram.” + +So Hazael left Elisha and went to his master, + +who asked him, “What did Elisha say to you?” + +15 + +And he replied, “He told me that you would +surely recover.” +But the next day Hazael took a +thick cloth, dipped it in water, and spread it over +the king’s face. + +So Ben-hadad died, and Hazael reigned in his +Jehoram Reigns in Judah (2 Chron. 21:1–7) +place. +16 + +In the fifth year of the reign of Joram son of +Ahab over Israel, Jehoram son of Jehoshaphat +Jehoram +succeeded his father as king of Judah. +was thirty-two years old when he became king, +18 +and he reigned in Jerusalem eight years. + +17 + +And Jehoram walked in the ways of the kings +of Israel, just as the house of Ahab had done. For +he married a daughter of Ahab and did evil in the +19 +sight of the LORD. + +Yet for the sake of His servant David, the LORD +was unwilling to destroy Judah, since He had +promised to maintain a lamp for David and his +Edom and Libnah Rebel (2 Chron. 21:8–11) +descendants forever. +20 + +a + +So Jehoram + +In the days of Jehoram, + b + + Edom rebelled against +21 +the hand of Judah and appointed their own king. + crossed over to Zair with all his +chariots. When the Edomites surrounded him +and his chariot commanders, he rose up and at- +tacked by night. His troops, however, fled to their +22 +homes. + +So to this day Edom has been in rebellion +against the hand of Judah. Likewise, Libnah +23 +rebelled at the same time. + +As for the rest of the acts of Jehoram, along +with all his accomplishments, are they not writ- +ten in the book of the Chronicles of the Kings of +b 21 +a 20 +Judah? +Ramoth +c 29 Ramah + +In his days + +Joram + +d 1 + +Literally + +Heb. + +, a variant of + +Jehoram + + is a variant of + +; see verse 28. + +Literally + +And Jehoram rested with his fathers and was +buried with them in the City of David. And his son +Ahaziah Reigns in Judah (2 Chron. 22:1–7) +Ahaziah reigned in his place. +25 + +26 + +In the twelfth year of the reign of Joram son of +Ahab over Israel, Ahaziah son of Jehoram became +king of Judah. +Ahaziah was twenty-two years +old when he became king, and he reigned in Jeru- +salem one year. His mother’s name was Athaliah, +27 +the granddaughter of Omri king of Israel. + +And Ahaziah walked in the ways of the house +of Ahab and did evil in the sight of the LORD like +the house of Ahab, for he was a son-in-law of the +28 +house of Ahab. + + c + +29 + +Then Ahaziah went with Joram son of Ahab to +fight against Hazael king of Aram at Ramoth- +gilead, and the Arameans wounded Joram. +So +King Joram returned to Jezreel to recover from +the wounds that the Arameans had inflicted on + when he fought against Hazael +him at Ramah +king of Aram. Then Ahaziah son of Jehoram king +of Judah went down to Jezreel to visit Joram son +Jehu Anointed King of Israel +of Ahab, because Joram had been wounded. + +9 + +d + +Now Elisha the prophet summoned one of +the sons of the prophets and said to him, +2 + take this flask +“Tuck your cloak under your belt, +When you ar- +of oil, and go to Ramoth-gilead. +rive, look for Jehu son of Jehoshaphat, the son of +Nimshi. Go in, get him away from his compan- +Then take +ions, and take him to an inner room. +the flask of oil, pour it on his head, and declare, +‘This is what the LORD says: I anoint you king +over Israel.’ Then open the door and run. Do not +4 +delay!” +5 + +3 + +So the young prophet went to Ramoth-gilead, +and when he arrived, the army commanders +were sitting there. “I have a message for you, +commander,” he said. + +“For which of us?” asked Jehu. +6 +“For you, commander,” he replied. + +7 + +So Jehu got up and went into the house, where +the young prophet poured the oil on his head and +declared, “This is what the LORD, the God of Is- +rael, says: ‘I anoint you king over the LORD’s peo- +And you are to strike down the house +ple Israel. +of your master Ahab, so that I may avenge the +blood of My servants the prophets and the blood +Gird up your loins + (the son of Jehoshaphat), as in v. 16; also in vv. 23 and 24 + + 8 + + a + +of all the servants of the LORD shed by the hand +The whole house of Ahab will perish, +of Jezebel. +9 +and I will cut off from Ahab every male, + both +I will make the house of +slave and free, in Israel. +Ahab like the houses of Jeroboam son of Nebat +and Baasha son of Ahijah. +And on the plot of +ground at Jezreel the dogs will devour Jezebel, +and there will be no one to bury her.’ + +10 + +” + +2 Kings 9:27 | 349 + +“What do you know about peace?” Jehu replied. +“Fall in behind me.” + +And the watchman reported, “The messenger +19 +reached them, but he is not coming back.” + +So the king sent out a second horseman, who +went to them and said, “This is what the king +asks: ‘Have you come in peace?’ + +” + +Then the young prophet opened the door and +11 +ran. + +“What do you know about peace?” Jehu replied. +20 +“Fall in behind me.” + +When Jehu went out to the servants of his mas- +ter, they asked, “Is everything all right? Why did +this madman come to you?” +12 +“You know his kind and their babble,” he replied. + +“That is a lie!” they said. “Tell us now!” + +So Jehu answered, “He talked to me about this +and that, saying, ‘This is what the LORD says: I +13 +anoint you king over Israel.’ + +” + +Quickly, each man took his garment and put it +under Jehu on the bare steps. Then they blew the +Jehu Kills Joram and Ahaziah (2 Chr. 22:8–9) +ram’s horn and proclaimed, “Jehu is king!” +14 + +Thus Jehu son of Jehoshaphat, the son of Nim- + +shi, conspired against Joram. + + b + +but King Joram + +(Now Joram and all Israel had been defending +15 +Ramoth-gilead against Hazael king of Aram, + had returned to Jezreel to re- +cover from the wounds he had suffered at the +hands of the Arameans in the battle against +Hazael their king.) + +So Jehu said, “If you commanders wish to make +me king, then do not let anyone escape from the +16 +city to go and tell it in Jezreel.” + +Then Jehu got into his chariot and went to Jez- +reel, because Joram was laid up there. And +17 +Ahaziah king of Judah had gone down to see him. + +Now the watchman standing on the tower in +Jezreel saw Jehu’s troops approaching, and he +called out, “I see a company of troops!” + +“Choose a rider,” Joram commanded. “Send him +out to meet them and ask, ‘Have you come in +18 +peace?’ + +” + +So a horseman rode off to meet Jehu and said, +“This is what the king asks: ‘Have you come in +(all) those who urinate against a wall +a 8 +peace?’ +d 22 +c 20 +Literally +turned his hands +Or + +grandson of Nimshi + +; see verse 14. + +Heb. + +f 27 + +” + +See Syriac, Vulgate, and LXX; Heb. + +Again the watchman reported, “He reached +them, but he is not coming back. And the chariot- +—he is +eer is driving like Jehu son of Nimshi +21 +driving like a madman!” + + c + +“Harness!” Joram shouted, and they harnessed + +his chariot. + +Then Joram king of Israel and Ahaziah king of Ju- +dah set out, each in his own chariot, and met Jehu +22 +on the property of Naboth the Jezreelite. + +When Joram saw Jehu, he asked, “Have you + +come in peace, Jehu?” + d + +“How can there be peace,” he replied, “as long as + and witchcraft of your mother Jez- +the idolatry +23 +ebel abound?” + + e + +Joram turned around + +24 +Ahaziah, “Treachery, Ahaziah!” + + and fled, calling out to + +Then Jehu drew his bow and shot Joram +between the shoulders. The arrow pierced his +25 +heart, and he slumped down in his chariot. + +26 + +And Jehu said to Bidkar his officer, “Pick him +up and throw him into the field of Naboth the Jez- +reelite. For remember that when you and I were +riding together behind his father Ahab, the LORD +‘As surely as +lifted up this burden against him: +I saw the blood of Naboth and the blood of his +sons yesterday, declares the LORD, so will I re- +pay you on this plot of ground, declares the +LORD.’ Now then, according to the word of the +LORD, pick him up and throw him on the plot of +27 +ground.” + +When King Ahaziah of Judah saw this, he fled + +up the road toward Beth-haggan. + +And Jehu pursued him, shouting, “Shoot him +too!” + +f + +Jehoram + +So they shot Ahaziah in his chariot on the Ascent + near Ibleam, and he fled to Megiddo and +of Gur, + +b 15 +adultery +Or +; also in verses 17, 21, 22, 23, 24 +“Shoot him, too, in his chariot!” (They did this) on the Ascent of Gur, +Literally + +, here a metaphor for idolatry + +, a variant of + +prostitution + +Joram + +e 23 + + or + + 350 | 2 Kings 9:28 + +28 + +Then his servants carried him by +died there. +chariot to Jerusalem and buried him with his fa- +29 +thers in his tomb in the City of David. + +to Jehu: “We are your servants, and we will do +whatever you say. We will not make anyone king. +6 +Do whatever is good in your sight.” + +(In the eleventh year of Joram son of Ahab, + +Jezebel’s Violent Death +Ahaziah had become king over Judah.) +30 + +Now when Jehu arrived in Jezreel, Jezebel +heard of it. So she painted her eyes, adorned her +And as +head, and looked down from a window. + a +Jehu entered the gate, she asked, “Have you come +32 +in peace, O Zimri, murderer of your master?” + +31 + +He looked up at the window and called out, + +“Who is on my side? Who?” +33 +And two or three eunuchs looked down at him. + +“Throw her down!” yelled Jehu. + +So they threw her down, and her blood splat- +tered on the wall and on the horses as they tram- +34 +pled her underfoot. + +Then Jehu went in and ate and drank. “Take +care of this cursed woman,” he said, “and bury +35 +her, for she was the daughter of a king.” + +But when they went out to bury her, they +found nothing but her skull, her feet, and the +36 +palms of her hands. + +So they went back and told Jehu, who replied, +“This is the word of the LORD, which He spoke +through His servant Elijah the Tishbite: ‘On the +plot of ground at Jezreel the dogs will devour the +And Jezebel’s body will lie like +flesh of Jezebel. +dung in the field on the plot of ground at Jezreel, +Ahab’s Seventy Sons Killed +so that no one can say: This is Jezebel.’ + +37 + +” + + b + +10 + +c + + d + +Samaria to the officials of Jezreel, +2 +and to the guardians of the sons + +Now Ahab had seventy sons in Samaria. +So Jehu wrote letters and sent them to + to the elders, + of Ahab, saying: +“When this letter arrives, since your master’s +sons are with you and you have chariots and +select the +horses, a fortified city and weaponry, +best and most worthy son of your master, set him +on his father’s throne, and fight for your master’s +4 +house.” + +3 + +But they were terrified and reasoned, “If two +5 +kings could not stand against him, how can we?” + +So the palace administrator, the overseer of the +“Is there peace for Zimri, the murderer of his master?” +a 31 +city, the elders, and the guardians sent a message +c 1 + +officials of the city + +d 1 + +Then Jehu wrote them a second letter and said: +“If you are on my side, and if you will obey me, +then bring the heads of your master’s sons to me +at Jezreel by this time tomorrow.” + +Now the sons of the king, seventy in all, were be- +7 +ing brought up by the leading men of the city. +And when the letter arrived, they took the sons +of the king and slaughtered all seventy of them. +They put their heads in baskets and sent them to +8 +Jehu at Jezreel. + +When the messenger arrived, he told Jehu, +“They have brought the heads of the sons of the +king.” + +And Jehu ordered, “Pile them in two heaps at the +9 +entrance of the gate until morning.” + +10 + +The next morning, Jehu went out and stood be- +fore all the people and said, “You are innocent. It +was I who conspired against my master and +Know, +killed him. But who killed all these? +then, that not a word the LORD has spoken +against the house of Ahab will fail, for the LORD +has done what He promised through His servant +11 +Elijah.” + +So Jehu killed everyone in Jezreel who re- +mained of the house of Ahab, as well as all his +great men and close friends and priests, leaving +12 +him without a single survivor. + +13 + +Then + +Jehu set out toward Samaria. At +Beth-eked of the Shepherds, +Jehu met some +relatives of Ahaziah king of Judah and asked, +“Who are you?” + +“We are relatives of Ahaziah,” they answered, +“and we have come down to greet the sons of the +14 +king and of the queen mother.” + +Then Jehu ordered, “Take them alive.” So his +men took them alive, then slaughtered them at +the well of Beth-eked—forty-two men. He spared +15 +none of them. + +When he left there, he found Jehonadab son of +Rechab, who was coming to meet him. Jehu +greeted him and asked, “Is your heart as true to +mine as my heart is to yours?” + +“It is!” Jehonadab replied. + +“If it is,” said Jehu, “give me your hand.” + +b 37 +of the sons + +Or + + See 1 Kings 16:10. + +See verse 10 and 1 Kings 21:23. + +Hebrew; LXX and Vulgate + +Hebrew does not include + +. + + 16 + +So he gave him his hand, and Jehu helped him +saying, “Come with me and see +into his chariot, + in his +my zeal for the LORD!” So he had him ride +17 +chariot. + + a + +When Jehu came to Samaria, he struck down +everyone belonging to Ahab who remained +there, until he had destroyed them, according to +Jehu Kills the Priests of Baal +the word that the LORD had spoken to Elijah. +18 + +19 + +Then Jehu brought all the people together and +said, “Ahab served Baal a little, but Jehu will +Now, therefore, summon to me +serve him a lot. +all the prophets of Baal, all his servants, and all +his priests. See that no one is missing, for I have +a great sacrifice for Baal. Whoever is missing will +not live.” + +But Jehu was acting deceptively in order to +20 +destroy the servants of Baal. + +And Jehu commanded, “Proclaim a solemn as- + +21 +sembly for Baal.” So they announced it. + +Then Jehu sent word throughout Israel, and all +the servants of Baal came; there was not a man +who failed to show. They entered the temple of +22 +Baal, and it was filled from end to end. + +And Jehu said to the keeper of the wardrobe, +“Bring out garments for all the servants of Baal.” +23 +So he brought out garments for them. + +Next, Jehu and Jehonadab son of Rechab +entered the temple of Baal, and Jehu said to the +servants of Baal, “Look around to see that there +are no servants of the LORD here among you— +24 +only servants of Baal.” + + b + +And they went in + + to offer sacrifices and burnt +offerings. Now Jehu had stationed eighty men +outside and warned them, “If anyone allows one +of the men I am delivering into your hands to es- +25 +cape, he will forfeit his life for theirs.” + +When he had finished making the burnt +offering, Jehu said to the guards and officers, “Go +in and kill them. Do not let anyone out.” + +So the guards and officers put them to the sword, +threw the bodies out, and went into the inner +26 +room of the temple of Baal. + +27 + +2 Kings 11:3 | 351 + +down the temple of Baal and made it into a la- +Jehu Repeats Jeroboam’s Sins +trine, which it is to this day. +28 + +29 + +Thus Jehu eradicated Baal from Israel, + +but +he did not turn away from the sins that Jeroboam +son of Nebat had caused Israel to commit—the +30 +worship of the golden calves at Bethel and Dan. + +Nevertheless, the LORD said to Jehu, “Because +you have done well in carrying out what is right +in My sight and have done to the house of Ahab +all that was in My heart, four generations of your +31 +sons will sit on the throne of Israel.” + +Yet Jehu was not careful to follow the instruc- +tion of the LORD, the God of Israel, with all his +heart. He did not turn away from the sins that +32 +Jeroboam had caused Israel to commit. + +33 + +In those days the LORD began to reduce the +size of Israel. Hazael defeated the Israelites +from the Jordan +throughout their territory +eastward through all the land of Gilead (the +region of Gad, Reuben, and Manasseh), and from +Aroer by the Arnon Valley through Gilead to +Jehoahaz Succeeds Jehu in Israel +Bashan. +34 + +As for the rest of the acts of Jehu, along with all +his accomplishments and all his might, are they +not written in the Book of the Chronicles of the +35 +Kings of Israel? + +36 + +And Jehu rested with his fathers and was bur- +ied in Samaria, and his son Jehoahaz reigned in +So the duration of Jehu’s reign over +his place. +Athaliah and Joash +Israel in Samaria was twenty-eight years. +(2 Chronicles 22:10–12) + +11 + + c + +d + +2 + + daughter of King Joram, + +When Athaliah the mother of Ahaziah +saw that her son was dead, she pro- +But +ceeded to annihilate all the royal heirs. +Jehosheba + the sister of +Ahaziah, took Joash son of Ahaziah and stole him +away from among the sons of the king who were +being murdered. She put him and his nurse in a +bedroom to hide him from Athaliah, and he was +3 +not killed. + +They brought out the sacred pillar of the tem- +They also demol- +ple of Baal and burned it. +they had him ride +a 16 +ished the sacred pillar of Baal. Then they tore + +Jehoshabeath + +d 2 Joram + +And Joash remained hidden with his nurse in +the house of the LORD for six years while +b 24 +he went in +Athaliah ruled the land. +Jehoram + +c 2 Jehosheba + +LXX, Syriac, and Targum Yonaton; Heb. + +of + +; see 2 Chr. 22:11. + + is a variant of + +LXX +. + +; see v. 25. + + is a variant + + 352 | 2 Kings 11:4 + +Joash Anointed King of Judah (2 Chr. 23:1–11) + +4 + +a + +Then in the seventh year, Jehoiada sent for the + and the +commanders of hundreds, the Carites, +guards, and had them brought into the house of +the LORD. There he made a covenant with them +and put them under oath. + +5 + +7 + +and com- +He showed them the king’s son +manded them, “This is what you are to do: A third +6 +of you who come on duty on the Sabbath shall +a third shall be at the +guard the royal palace, +gate of Sur, and a third at the gate behind the +guards. You are to take turns guarding the tem- +the two divisions that would go off duty +ple— +on the Sabbath are to guard the house of the +You must surround the king +LORD for the king. +with weapons in hand, and anyone who ap- +proaches the ranks must be put to death. You +9 +must stay close to the king wherever he goes.” + +8 + +10 + +So the commanders of hundreds did everything +that Jehoiada the priest had ordered. Each of +them took his men—those coming on duty on the +Sabbath and those going off duty—and came to +Then the priest gave to +Jehoiada the priest. +the commanders of hundreds the spears and +shields of King David from the house of the +And the guards stood with weapons in +LORD. +hand surrounding the king by the altar and the +temple, from the south side to the north side of +12 +the temple. + +11 + +Then Jehoiada brought out the king’s son, put +the crown on him, presented him with the Testi- +mony, and proclaimed him king. They anointed +him, and the people clapped their hands and de- +The Death of Athaliah (2 Chr. 23:12–15) +clared, “Long live the king!” +13 + +14 + +When Athaliah heard the noise from the +guards and the people, she went out to the peo- +ple in the house of the LORD. +And she looked +out and saw the king standing by the pillar, +according to the custom. The officers and trum- +peters were beside the king, and all the people of +the land were rejoicing and blowing trumpets. + +Then Athaliah tore her clothes and screamed, +15 +“Treason! Treason!” + +And Jehoiada the priest ordered the com- +manders of hundreds in charge of the army, +b 15 +the executioners +a 4 +“Bring her out between the ranks, + and put to the +d 1 +Joash +Or + +the mercenaries + +Jehoash + + or + +b + +Or + +; also v. 19 +Hebrew + + (son of Ahaziah) as in verse 2 + +18; see 2 Kings 11:2. + +sword anyone who follows her.” For the priest +had said, “She must not be put to death in the +16 +house of the LORD.” + +So they seized Athaliah as she reached the +horses’ entrance to the palace grounds, and there +Jehoiada Restores the Worship of the LORD +she was put to death. +(2 Chronicles 23:16–21) + +17 + +Then Jehoiada made a covenant between the +LORD and the king and the people that they +would be the LORD’s people. He also made a cov- +18 +enant between the king and the people. + +So all the people of the land went to the temple +of Baal and tore it down. They smashed the altars +and idols to pieces, and they killed Mattan the +priest of Baal in front of the altars. + +19 + +And Jehoiada the priest posted guards for +He took with him +the house of the LORD. +the commanders of hundreds, the Carites, the +guards, and all the people of the land, and they +brought the king down from the house of the +LORD and entered the royal palace by way of the +Gate of the Guards. +20 +Then Joash took his seat on the royal throne, +and all the people of the land rejoiced. And the +city was quiet, because Athaliah had been put to +21 +the sword at the royal palace. + + c + +Joash +Joash Repairs the Temple (2 Chr. 24:1–14) +king. + + was seven years old when he became + + d + +12 + +In the seventh year of Jehu, Joash +became king, and he reigned in Jerusa- +2 +lem forty years. His mother’s name was Zibiah; +And Joash did what +she was from Beersheba. +was right in the eyes of the LORD all the days he +3 +was instructed by Jehoiada the priest. + +Nevertheless, the high places were not re- +moved; the people continued sacrificing and +4 +burning incense there. + +Then Joash said to the priests, “Collect all the +money brought as sacred gifts into the house of +the LORD—the census money, the money from +5 +vows, and the money brought voluntarily into +Let every priest receive +the house of the LORD. +it from his constituency, and let it be used to re- +pair any damage found in the temple.” +out from the precincts +Joash + +Jehoash + +c 21 + +Hebrew + +, a variant of + +, a variant of + + (son of Ahaziah); also in verses 2, 4, 6, 7, and + + 6 + +By the twenty-third year of the reign of Joash, +7 +however, the priests had not yet repaired the +damage to the temple. +So King Joash called Je- +hoiada and the other priests and said, “Why have +you not repaired the damage to the temple? Now, +therefore, take no more money from your con- +stituency, but hand it over for the repair of the +8 +temple.” + +So the priests agreed that they would not +receive money from the people and that they +9 +would not repair the temple themselves. + +Then Jehoiada the priest took a chest, bored a +hole in its lid, and set it beside the altar on the +right side as one enters the house of the LORD. +There the priests who guarded the threshold put +10 +all the money brought into the house of the LORD. + +2 Kings 13:8 | 353 + +fathers—Jehoshaphat, Jehoram, and Ahaziah, the +kings of Judah—along with his own consecrated +items and all the gold found in the treasuries of +the house of the LORD and the royal palace, and +he sent them to Hazael king of Aram. So Hazael +19 +withdrew from Jerusalem. + +As for the rest of the acts of Joash, along with +all his accomplishments, are they not written in +20 +the Book of the Chronicles of the Kings of Judah? + + a + +21 + +And the servants of Joash rose up and formed +a conspiracy and killed him at Beth-millo, on the + b + son +road down to Silla. +of Shimeath and Jehozabad son of Shomer +struck him down, and he died. And they buried +him with his fathers in the City of David, and his +Jehoahaz Reigns in Israel +son Amaziah reigned in his place. + +His servants Jozabad + +11 + +Whenever they saw that there was a large +amount of money in the chest, the royal scribe +and the high priest would go up, count the money +brought into the house of the LORD, and tie it up +Then they would put the counted +in bags. +money into the hands of those who supervised +the work on the house of the LORD, who in +turn would pay those doing the work—the car- +masons, and stonecutters. +penters, builders, +They also purchased timber and dressed stone to +repair the damage to the house of the LORD, and +they paid the other expenses of the temple +13 +repairs. + +12 + +14 + +However, the money brought into the house of +the LORD was not used for making silver basins, +wick trimmers, sprinkling bowls, trumpets, or +any articles of gold or silver for the house of the +Instead, it was paid to those doing the +LORD. +work, and with it they repaired the house of +15 +the LORD. + +16 + +No accounting was required from the men +who received the money to pay the workmen, be- +The money +cause they acted with integrity. +from the guilt offerings and sin offerings was not +brought into the house of the LORD; it belonged +The Death of Joash +to the priests. +(2 Chronicles 24:23–27) + +17 + +13 + +2 + +In the twenty-third year of the reign of +Joash son of Ahaziah over Judah, Je- +hoahaz son of Jehu became king of Israel, and he +And he did +reigned in Samaria seventeen years. +evil in the sight of the LORD and followed the sins +that Jeroboam son of Nebat had caused Israel to +So the +commit; he did not turn away from them. +anger of the LORD burned against Israel, and He +delivered them continually into the hands of +4 +Hazael king of Aram and his son Ben-hadad. + +3 + +5 + +Then Jehoahaz sought the favor of the LORD, +and the LORD listened to him because He saw the +oppression that the king of Aram had inflicted on +So the LORD gave Israel a deliverer, and +Israel. +they escaped the power of the Arameans. Then +the people of Israel lived in their own homes as +6 +they had before. + +Nevertheless, they did not turn away from the +c +sins that the house of Jeroboam had caused Israel +to commit, but they continued to walk in them. +The Asherah pole even remained standing in +7 +Samaria. + +Jehoahaz had no army left, except fifty horse- +men, ten chariots, and ten thousand foot soldiers, +because the king of Aram had destroyed them +8 +and made them like the dust at threshing. + +At that time Hazael king of Aram marched up +and fought against Gath and captured it. Then he +So King Joash of +decided to attack Jerusalem. +b 21 Shomer +Jozacar +a 21 +Judah took all the sacred objects dedicated by his +c 6 + +As for the rest of the acts of Jehoahaz, along with +all his accomplishments and his might, are they +not written in the Book of the Chronicles of the +Kings of Israel? +he continued to walk in them + +Shimrith + +18 + +Hebrew; LXX and Syriac + + is a variant of + +; see 2 Chronicles 24:26. + +LXX, Syriac, Targum Yonaton, and Vulgate; Hebrew + + 354 | 2 Kings 13:9 + +9 + +19 + + a + +And Jehoahaz rested with his fathers and was + reigned + +buried in Samaria. And his son Jehoash +Jehoash Reigns in Israel +in his place. +10 + +In the thirty-seventh year of the reign of Joash +over Judah, Jehoash son of Jehoahaz became king +11 +of Israel in Samaria, and he reigned sixteen years. +And he did evil in the sight of the LORD and did +not turn away from all the sins that Jeroboam son +of Nebat had caused Israel to commit, but he +12 +walked in them. + +As for the rest of the acts of Jehoash, along with +all his accomplishments and his might, including +his war against Amaziah king of Judah, are they +not written in the Book of the Chronicles of the +13 +Kings of Israel? + +And Jehoash rested with his fathers, and Jero- +boam succeeded him on the throne. Jehoash was +Elisha’s Fin al Prophecy +buried in Samaria with the kings of Israel. +14 + +When Elisha had fallen sick with the illness +from which he would die, Jehoash king of Israel +came down to him and wept over him, saying, +“My father, my father, the chariots and horsemen +15 +of Israel!” + +Elisha told him, “Take a bow and some + +arrows.” +16 +So Jehoash took a bow and some arrows. + +Then Elisha said to the king of Israel, “Put your + +hand on the bow.” + +So the king put his hand on the bow, and Elisha +17 +put his hands on the king’s hands. + +“Open the east window,” said Elisha. + +So he opened it and Elisha said, “Shoot!” So he +shot. + +And Elisha declared: + +“This is the LORD’s arrow of victory, +the arrow of victory over Aram, + +18 + +for you shall strike the Arameans in Aphek +until you have put an end to them.” + +Then Elisha said, “Take the arrows!” + +So he took them, and Elisha said to the king of Is- +rael, “Strike the ground!” + +a 9 +So he struck the ground three times and stopped. +Jehoash +coming in of the year + +Jehoash + +Joash + +Joash + +c 1 + +But the man of God was angry with him and +said, “You should have struck the ground five or +six times. Then you would have struck down +Aram until you had put an end to it. But now you +20 +will strike down Aram only three times.” + +And Elisha died and was buried. +b + +21 + +Now the Moabite raiders used to come into the +Once, as the Israelites were +land every spring. +burying a man, suddenly they saw a band of raid- +ers, so they threw the man’s body into Elisha’s +tomb. And as soon as his body touched the bones +of Elisha, the man was revived and stood up on +22 +his feet. + +23 + +And Hazael king of Aram oppressed Israel +But the +throughout the reign of Jehoahaz. +LORD was gracious to Israel and had compassion +on them, and He turned toward them because of +His covenant with Abraham, Isaac, and Jacob. +And to this day, the LORD has been unwilling to +24 +destroy them or cast them from His presence. + +25 + +When Hazael king of Aram died, his son Ben- +Then Jehoash son +hadad reigned in his place. +of Jehoahaz took back from Ben-hadad son of +Hazael the cities that Hazael had taken in battle +from his father Jehoahaz. Jehoash defeated Ben- +hadad three times, and so recovered the cities of +Amaziah Reigns in Judah (2 Chron. 25:1–4) +Israel. + +14 + + c + +2 + +In the second year of the reign of + son of Jehoahaz over Israel, +Jehoash +He +Amaziah son of Joash became king of Judah. +was twenty-five years old when he became king, +and he reigned in Jerusalem twenty-nine years. +His mother’s name was Jehoaddan; she was from +And he did what was right in the +Jerusalem. +eyes of the LORD, but not as his father David had +done. He did everything as his father Joash had +4 +done. + +3 + +Nevertheless, the high places were not taken +away, and the people continued sacrificing and +5 +burning incense on the high places. + +As soon as the kingdom was firmly in his grasp, +6 +Amaziah executed the servants who had mur- +Yet he did not put the +dered his father the king. +sons of the murderers to death, but acted accord- +ing to what is written in the Book of the Law of +Moses, where the LORD commanded: “Fathers +must not be put to death for their children, and + +into the land at the + +b 20 + +Hebrew + +, a variant of + +; also in verses 10, 12, 13, 14, 15, and 25 + +Literally + +Hebrew + +, a variant of + +; also in verses 13, 23, and 27 + +  a + +children must not be put to death for their fa- +7 +thers; each is to die for his own sin.” + +Amaziah struck down 10,000 Edomites in the +Valley of Salt. He took Sela in battle and called it +Jehoash Defeats Amaziah (2 Chr. 25:17–24) +Joktheel, which is its name to this very day. +8 + +Then Amaziah sent messengers to the king of +Israel Jehoash son of Jehoahaz, the son of Jehu. +9 +“Come, let us meet face to face,” he said. + +10 + +But Jehoash king of Israel replied to Amaziah +king of Judah: “A thistle in Lebanon sent a mes- +sage to a cedar in Lebanon, saying, ‘Give your +daughter to my son in marriage.’ Then a wild +beast in Lebanon came along and trampled the +You have indeed defeated Edom, and +thistle. +your heart has become proud. Glory in that and +stay at home. Why should you stir up trouble so +11 +that you fall—you and Judah with you?” + +But Amaziah would not listen, so Jehoash king +of Israel advanced. He and King Amaziah of Judah +12 +faced each other at Beth-shemesh in Judah. +And Judah was routed before Israel, and every + +13 +man fled to his home. + +There at Beth-shemesh, Jehoash king of Israel +captured Amaziah king of Judah, the son of Joash, +the son of Ahaziah. + +b + +14 + +Then Jehoash went to Jerusalem and broke down +the wall of Jerusalem from the Ephraim Gate to +the Corner Gate—a section of four hundred cu- +He took all the gold and silver and all the +bits. +articles found in the house of the LORD and in the +treasuries of the royal palace, as well as some +Jeroboam II Succeeds Jehoash in Israel +hostages. Then he returned to Samaria. +15 + +As for the rest of the acts of Jehoash, along with +his accomplishments, his might, and how he +waged war against Amaziah king of Judah, are +they not written in the Book of the Chronicles of +16 +the Kings of Israel? + +And Jehoash rested with his fathers and was +buried in Samaria with the kings of Israel. And +The Death of Amaziah (2 Chronicles 25:25–28) +his son Jeroboam reigned in his place. +17 + +Amaziah son of Joash king of Judah lived for +fifteen years after the death of Jehoash son of +a 6 + + b 13 400 cubits + +2 Kings 14:29 | 355 + +18 + +Jehoahaz king of Israel. +As for the rest of the +acts of Amaziah, are they not written in the Book +19 +of the Chronicles of the Kings of Judah? + +20 + +And conspirators plotted against Amaziah in +Jerusalem, and he fled to Lachish. But men were +sent after him to Lachish, and they killed him +They carried him back on horses and +there. +buried him in Jerusalem with his fathers in the +Azariah Succeeds Amaziah in Judah +City of David. +(2 Chronicles 26:1–2) + +21 + +c + +22 + +Then all the people of Judah took Azariah, +who was sixteen years old, and made him king in +place of his father Amaziah. +Azariah was the +one who rebuilt Elath + and restored it to Judah +Jeroboam II Reigns in Israel +after King Amaziah rested with his fathers. + + d + +23 + +24 + +In the fifteenth year of the reign of Amaziah +son of Joash over Judah, Jeroboam son of Jehoash +became king of Israel, and he reigned in Samaria +forty-one years. +And he did evil in the sight of +the LORD and did not turn away from all the sins +that Jeroboam son of Nebat had caused Israel to +25 +commit. + +e +This Jeroboam restored the boundary of Israel + +26 + +from Lebo-hamath to the Sea of the Arabah, +according to the word that the LORD, the God of +Israel, had spoken through His servant Jonah son +of Amittai, the prophet from Gath-hepher. +For +the LORD saw that the affliction of the Israelites, +both slave and free, was very bitter. There was +and since the LORD had +no one to help Israel, +said that He would not blot out the name of Israel +from under heaven, He saved them by the hand +28 +of Jeroboam son of Jehoash. + +27 + +As for the rest of the acts of Jeroboam, along +with all his accomplishments and might, and how +he waged war and recovered both Damascus and +Hamath for Israel from Judah, are they not writ- +ten in the Book of the Chronicles of the Kings of +29 +Israel? + +f + +And Jeroboam rested with his fathers, + + the +kings of Israel. And his son Zechariah reigned in +his place. + +c 21 Azariah + +Uzziah + +Deuteronomy 24:16 + +see 2 Chronicles 26:1. +some LXX manuscripts include + +d 22 Elath + +Eloth + +e 25 + +and he was buried in Samaria with + + is approximately 600 feet or 182.9 meters. +; see 1 Kings 9:26. + + is a variant of + +f 29 + + is also called + +; + +That is, the Dead Sea + +Hebrew; + + 356 | 2 Kings 15:1 + +Azariah Reigns in Judah (2 Chron. 26:3–23) + +15 + +15 + + a + +2 + +In the twenty-seventh year of Jero- +boam’s reign over Israel, Azariah + son of +Amaziah became king of Judah. +He was sixteen +years old when he became king, and he reigned +3 +in Jerusalem fifty-two years. His mother’s name +And he +was Jecoliah; she was from Jerusalem. +did what was right in the eyes of the LORD, just +4 +as his father Amaziah had done. + +Nevertheless, the high places were not taken +away; the people continued sacrificing and burn- + b +5 +ing incense there. + +And the LORD afflicted the king with leprosy +until the day he died, so that he lived in a sepa- +rate house while his son Jotham had charge of +6 +the palace and governed the people of the land. + +As for the rest of the acts of Azariah, along with +all his accomplishments, are they not written in +7 +the Book of the Chronicles of the Kings of Judah? + + c + +And Azariah rested with his fathers and was + in the City of David. And his + +buried near them +Zechariah Reigns in Israel +son Jotham reigned in his place. +8 + +In the thirty-eighth year of Azariah’s reign over +Judah, Zechariah son of Jeroboam became king of +9 +Israel, and he reigned in Samaria six months. +And he did evil in the sight of the LORD, as his +fathers had done. He did not turn away from the +sins that Jeroboam son of Nebat had caused Is- +10 +rael to commit. + +Then Shallum son of Jabesh conspired against +Zechariah, struck him down and killed him in +11 +front of the people, + + and reigned in his place. + +d + +12 + +As for the rest of the acts of Zechariah, they are +indeed written in the Book of the Chronicles of +the Kings of Israel. +So the word of the LORD +spoken to Jehu was fulfilled: “Four generations of +Shallum Reigns in Israel +your sons will sit on the throne of Israel.” +13 + + e + +In the thirty-ninth year of Uzziah’s + + reign over +Judah, Shallum son of Jabesh became king, and he +14 +reigned in Samaria one full month. + +Then Menahem son of Gadi went up from Tir- +zah to Samaria, struck down and killed Shallum +a 1 Azariah +son of Jabesh, and reigned in his place. +c 7 + +Uzziah + + is also called +Tiglath-pileser + +in Ibleam +for various skin diseases; see Leviticus 13. +LXX manuscripts +h 20 50 shekels +name for + +; see verse 29. + +e 13 Uzziah + +Literally +g 19 1,000 talents + is also called + +As for the rest of the acts of Shallum, along +with the conspiracy he led, they are indeed writ- +ten in the Book of the Chronicles of the Kings of +16 +Israel. + +At that time Menahem, starting from Tirzah, +attacked Tiphsah and everyone in its vicinity, be- +cause they would not open their gates. So he at- +tacked Tiphsah and ripped open all the pregnant +Menahem Reigns in Israel +women. +17 + +18 + +In the thirty-ninth year of Azariah’s reign over +Judah, Menahem son of Gadi became king of Is- +And +rael, and he reigned in Samaria ten years. +he did evil in the sight of the LORD, and through- +out his reign he did not turn away from the sins +that Jeroboam son of Nebat had caused Israel to +19 +commit. + + f + + g + king of Assyria invaded the land, and + +Then Pul + +20 + +Menahem gave Pul a thousand talents of silver +in order to gain his support and strengthen his +own grip on the kingdom. +Menahem exacted + h +this money from each of the wealthy men of Is- +rael—fifty shekels of silver + from each man—to +give to the king of Assyria. So the king of Assyria +21 +withdrew and did not remain in the land. + +As for the rest of the acts of Menahem, along +with all his accomplishments, are they not writ- +ten in the Book of the Chronicles of the Kings of +22 +Israel? + +And Menahem rested with his fathers, and his + +Pekahiah Reigns in Israel +son Pekahiah reigned in his place. +23 + +In the fiftieth year of Azariah’s reign over +Judah, Pekahiah son of Menahem became king of +Israel and reigned in Samaria two years. +And +he did evil in the sight of the LORD and did not +turn away from the sins that Jeroboam son of +25 +Nebat had caused Israel to commit. + +24 + +Then his officer, Pekah son of Remaliah, con- +spired against him along with Argob, Arieh, and +fifty men of Gilead. And at the citadel of the king’s +palace in Samaria, Pekah struck down and killed +26 +Pekahiah and reigned in his place. + +As for the rest of the acts of Pekahiah, along +with all his accomplishments, they are indeed +written in the Book of the Chronicles of the Kings +of Israel. + +b 5 Leprosy +d 10 + +with his fathers + +; also in verses 6, 7, 8, 17, 23, and 27; see 2 Chronicles 26:1. + +Azariah + +; see 2 Chronicles 26:23. + +f 19 Pul + + was a term used +Hebrew; some + +; also in verses 32 and 34; see verse 1. + + is another + + is approximately 37.7 tons or 34.2 metric tons of silver. + + is approximately 1.26 pounds or 569.8 grams of silver. + + Pekah Reigns in Israel + +27 + +In the fifty-second year of Azariah’s reign over +Judah, Pekah son of Remaliah became king of Is- +28 +rael, and he reigned in Samaria twenty years. +And he did evil in the sight of the LORD and did +not turn away from the sins that Jeroboam son of +29 +Nebat had caused Israel to commit. + +In the days of Pekah king of Israel, Tiglath- +pileser king of Assyria came and captured Ijon, +Abel-beth-maacah, Janoah, Kedesh, Hazor, Gil- +ead, and Galilee, including all the land of Naph- +30 +tali, and he took the people as captives to Assyria. + +Then Hoshea son of Elah led a conspiracy +against Pekah son of Remaliah. In the twentieth +year of Jotham son of Uzziah, Hoshea attacked +31 +Pekah, killed him, and reigned in his place. + +As for the rest of the acts of Pekah, along with +all his accomplishments, they are indeed written +in the Book of the Chronicles of the Kings of +Jotham Reigns in Judah (2 Chronicles 27:1–9) +Israel. +32 + + a + +33 + +In the second year of the reign of Pekah son of +Remaliah over Israel, Jotham son of Uzziah be- +came king of Judah. +He was twenty-five years +old when he became king, and he reigned in Jeru- +salem sixteen years. His mother’s name was +Jerusha +And he did what +was right in the eyes of the LORD, just as his +35 +father Uzziah had done. + + daughter of Zadok. + +34 + +Nevertheless, the high places were not taken +away; the people continued sacrificing and burn- +ing incense there. + +Jotham rebuilt the Upper Gate of the house of the +36 +LORD. + +As for the rest of the acts of Jotham, along with +his accomplishments, are they not written in the +37 +Book of the Chronicles of the Kings of Judah? + +(In those days the LORD began to send Rezin +king of Aram and Pekah son of Remaliah against +38 +Judah.) + +And Jotham rested with his fathers and was +buried with them in the City of David his father. +Ahaz Reigns in Judah (2 Chronicles 28:1–4) +And his son Ahaz reigned in his place. + +16 + +2 + +In the seventeenth year of Pekah son of +Remaliah, Ahaz son of Jotham became +Ahaz was twenty years old when +d 6 + +Jerushah + +Eloth + +Syria + +a 33 Jerusha +king of Judah. + +2 Kings 16:14 | 357 + +3 + +he became king, and he reigned in Jerusalem six- +teen years. And unlike David his father, he did +not do what was right in the eyes of the LORD his +b +Instead, he walked in the ways of the kings +God. +of Israel and even sacrificed his son in the fire, +according to the abominations of the nations that +4 +the LORD had driven out before the Israelites. +And he sacrificed and burned incense on the +high places, on the hills, and under every green +5 +tree. + +Then Rezin king of Aram and Pekah son of +Remaliah king of Israel came up to wage war +against Jerusalem. They besieged Ahaz but could +6 +not overcome him. + + c + +d + + for Aram, + +At that time Rezin king of Aram recovered +Elath + drove out the men of Judah, +and sent the Edomites into Elath, where they live +7 +to this day. + +So Ahaz sent messengers to Tiglath-pileser king +of Assyria, saying, “I am your servant and your +son. Come up and save me from the hands of the +kings of Aram and Israel, who are rising up +8 +against me.” + +9 + +Ahaz also took the silver and gold found in the +house of the LORD and in the treasuries of the +king’s palace, and he sent it as a gift to the king of +Assyria. +So the king of Assyria responded to +him, marched up to Damascus, and captured it. +He took its people to Kir as captives and put Re- +The Idolatry of Ahaz (2 Chronicles 28:16–27) +zin to death. +10 + +11 + +Then King Ahaz went to Damascus to meet Tig- +lath-pileser king of Assyria. On seeing the altar in +Damascus, King Ahaz sent Uriah the priest a +model of the altar and complete plans for its con- +struction. +And Uriah the priest built the altar +according to all the instructions King Ahaz had +sent from Damascus, and he completed it before +12 +King Ahaz returned. + +13 + +When the king came back from Damascus and +saw the altar, he approached it and presented of- +ferings on it. +He offered his burnt offering and +his grain offering, poured out his drink offering, +14 +and splattered the blood of his peace offerings on +the altar. +He also took the bronze altar that +stood before the LORD from the front of the tem- +ple (between the new altar and the house of the +LORD) and he put it on the north side of the new +altar. + +made his son pass through the fire + +c 6 Elath + +b 3 + + is a variant of + +; see 2 Chronicles 27:1. + +Literally + + is a + +variant of + +; see 1 Kings 9:26. + +Or + + 358 | 2 Kings 16:15 + +15 + +7 + +Then King Ahaz commanded Uriah the priest, +“Offer on the great altar the morning burnt offer- +ing, the evening grain offering, and the king’s +burnt offering and grain offering, as well as the +burnt offerings, grain offerings, and drink offer- +ings of all the people of the land. Splatter on the +altar all the blood of the burnt offerings and sac- +rifices. But I will use the bronze altar to seek +16 +guidance.” + +So Uriah the priest did just as King Ahaz had + +17 +commanded. + +18 + +King Ahaz also cut off the frames of the mova- +ble stands and removed the bronze basin from +each of them. He took down the Sea from the +bronze oxen that were under it and put it on a +stone base. +And on account of the king of As- +syria, he removed the Sabbath canopy + they had +built in the temple and closed the royal entryway +19 +outside the house of the LORD. + + a + +As for the rest of the acts of Ahaz, along with +his accomplishments, are they not written in the +20 +Book of the Chronicles of the Kings of Judah? + +And Ahaz rested with his fathers and was bur- +ied with them in the City of David, and his son +Hoshea the Last King of Israel +Hezekiah reigned in his place. + +17 + +2 + +In the twelfth year of the reign of Ahaz +over Judah, Hoshea son of Elah became +king of Israel, and he reigned in Samaria nine +And he did evil in the sight of the LORD, +years. +3 +but not like the kings of Israel who preceded him. + + b + +Shalmaneser king of Assyria attacked him, and +4 +Hoshea became his vassal and paid him tribute. +But the king of Assyria discovered that Hoshea +had conspired to send envoys to King So + of +Egypt, and that he had not paid tribute to the king +of Assyria as in previous years. Therefore the +king of Assyria arrested Hoshea and put him in +Israel Carried Captive to Assyria +prison. +5 + +Then the king of Assyria invaded the whole +land, marched up to Samaria, and besieged it for +6 +three years. + +In the ninth year of Hoshea, the king of Assyria +captured Samaria and carried away the Israelites +to Assyria, where he settled them in Halah, in +Gozan by the Habor River, and in the cities of the +a 18 +Medes. + +the base of his throne +d 17 + +b 4 So + +Or + +omy 5:8–10 + +Literally + +8 + +All this happened because the people of Israel +had sinned against the LORD their God, who had +brought them out of the land of Egypt from under +the hand of Pharaoh king of Egypt. They had wor- +and walked in the customs of +shiped other gods +the nations that the LORD had driven out before +the Israelites, as well as in the practices intro- +9 +duced by the kings of Israel. + +10 + +The Israelites secretly did things against the +LORD their God that were not right. From watch- +tower to fortified city, they built high places in all +They set up for themselves sacred +their cities. +pillars and Asherah poles on every high hill and +They burned incense +under every green tree. +on all the high places like the nations that the +LORD had driven out before them. They did +12 +wicked things, provoking the LORD to anger. +They served idols, although the LORD had told + +11 + + c + +13 +them, “You shall not do this thing.” + +Yet through all His prophets and seers, the +LORD warned Israel and Judah, saying, “Turn +from your wicked ways and keep My command- +ments and statutes, according to the entire Law +that I commanded your fathers and delivered to +14 +you through My servants the prophets.” + +15 + +But they would not listen, and they stiffened +their necks like their fathers, who did not believe +the LORD their God. +They rejected His statutes +and the covenant He had made with their fathers, +as well as the decrees He had given them. They +pursued worthless idols and became worthless +themselves, going after the surrounding nations +that the LORD had commanded them not to +16 +imitate. + +17 + +They abandoned all the commandments of the +LORD their God and made for themselves two +cast idols of calves and an Asherah pole. They +bowed down to all the host of heaven and served +They sacrificed their sons and daughters +Baal. + and practiced divination and sooth- +in the fire +saying. They devoted themselves to doing evil in +18 +the sight of the LORD, provoking Him to anger. + + d + +19 + +20 + +So the LORD was very angry with Israel, and +He removed them from His presence. Only the +and even Judah +tribe of Judah remained, +did not keep the commandments of the LORD +their God, but lived according to the customs Is- +So the LORD rejected all +rael had introduced. +the descendants of Israel. He afflicted them and +delivered them into the hands of plunderers, un- +c 12 +til He had banished them from His presence. +. + +Exodus 20:4–6; Deuteron- + +Osorkon + +made their sons and their daughters pass through the fire +; see also LXX. + + is likely an abbreviation for + + 21 + +34 + +2 Kings 18:8 | 359 + +22 + +23 + +When the LORD had torn Israel away from the +house of David, they made Jeroboam son of Ne- +bat king, and Jeroboam led Israel away from fol- +lowing the LORD and caused them to commit a +great sin. +The Israelites persisted in all the sins +that Jeroboam had committed and did not turn +away from them. +Finally, the LORD removed +Israel from His presence, as He had declared +through all His servants the prophets. So Israel +was exiled from their homeland into Assyria, +Samaria Resettled +where they are to this day. +24 + +Then the king of Assyria brought people from +Babylon, Cuthah, Avva, Hamath, and Sepharvaim +and settled them in the towns of Samaria to re- +place the Israelites. They took possession of Sa- +25 +maria and lived in its towns. + +26 + +Now when the settlers first lived there, they +did not worship the LORD, so He sent lions +among them, which killed some of them. +So +they spoke to the king of Assyria, saying, “The +peoples that you have removed and placed in the +cities of Samaria do not know the requirements +of the God of the land. Because of this, He has sent +lions among them, which are indeed killing them +27 +off.” + +Then the king of Assyria commanded: “Send +back one of the priests you carried off from Sa- +maria, and have him go back to live there and +28 +teach the requirements of the God of the land.” + +Thus one of the priests they had carried away +came and lived in Bethel, and he began to teach +29 +them how they should worship the LORD. + +30 + +Nevertheless, the people of each nation contin- +ued to make their own gods in the cities where +they had settled, and they set them up in the +shrines that the people of Samaria had made on +the high places. +The men of Babylon made Suc- +coth-benoth, the men of Cuth made Nergal, the +men of Hamath made Ashima, +the Avvites +made Nibhaz and Tartak, and the Sepharvites +burned their children in the fire to Adrammelech +32 +and Anammelech the gods of Sepharvaim. + +31 + +So the new residents worshiped the LORD, but +they also appointed for themselves priests of all +33 +sorts to serve in the shrines of the high places. +They worshiped the LORD, but they also +served their own gods according to the customs +of the nations from which they had been carried +a 2 Abi +away. +snake + +Abijah + +To this day they are still practicing their for- +mer customs. None of them worship the LORD or +observe the statutes, ordinances, laws, and com- +mandments that the LORD gave the descendants +35 +of Jacob, whom He named Israel. + +36 + +37 + +For the LORD had made a covenant with the +Israelites and commanded them, “Do not wor- +ship other gods or bow down to them; do not +serve them or sacrifice to them. +Instead, wor- +ship the LORD, who brought you out of the land +of Egypt with great power and an outstretched +arm. You are to bow down to Him and offer sac- +rifices to Him. +And you must always be careful +to observe the statutes, ordinances, laws, and +38 +commandments He wrote for you. Do not wor- +ship other gods. +Do not forget the covenant I +39 +have made with you. Do not worship other gods, +but worship the LORD your God, and He will +40 +deliver you from the hands of all your enemies.” + +41 +But they would not listen, and they persisted +So these nations wor- +in their former customs. +shiped the LORD but also served their idols, and +to this day their children and grandchildren con- +Hezekiah Destroys Idolatry in Judah +tinue to do as their fathers did. +(2 Chronicles 29:1–2) + +18 + +3 + + the daughter of Zechariah. + +In the third year of the reign of Hoshea +2 +son of Elah over Israel, Hezekiah son of +Ahaz became king of Judah. +He was twenty-five +years old when he became king, and he reigned +a +in Jerusalem twenty-nine years. His mother’s +And +name was Abi, +he did what was right in the eyes of the LORD, +He removed +just as his father David had done. +the high places, shattered the sacred pillars, and + b +cut down the Asherah poles. He also demolished +the bronze snake called Nehushtan + that Moses +had made, for up to that time the Israelites had +5 +burned incense to it. + +4 + +Hezekiah trusted in the LORD, the God of +6 +Israel. No king of Judah was like him, either +He remained faithful to +before him or after him. +the LORD and did not turn from following Him; +he kept the commandments that the LORD had +7 +given Moses. + +And the LORD was with Hezekiah, and he pros- +pered wherever he went. He rebelled against the +He +king of Assyria and refused to serve him. +defeated the Philistines as far as Gaza and its +borders, from watchtower to fortified city. + +bronze + +8 + +b 4 Nehushtan + + is a variant of +. + +; see 2 Chronicles 29:1. + + sounds like the Hebrew for + + and also for + + 360 | 2 Kings 18:9 + +9 + +19 + +In the fourth year of Hezekiah’s reign, which +was the seventh year of the reign of Hoshea son +of Elah over Israel, Shalmaneser king of Assyria +And +marched against Samaria and besieged it. +at the end of three years, the Assyrians captured +it. + +10 + +11 + +So Samaria was captured in the sixth year of Hez- +ekiah, which was the ninth year of Hoshea king +The king of Assyria exiled the Israel- +of Israel. +ites to Assyria and settled them in Halah, in +12 +Gozan by the Habor River, and in the cities of the +This happened because they did not +Medes. +listen to the voice of the LORD their God, but vio- +lated His covenant—all that Moses the servant of +the LORD had commanded—and would neither +Sennacherib Invades Judah +listen nor obey. +(2 Chronicles 32:1–8 ; Psalm 46:1–11) + +13 + +14 + +In the fourteenth year of Hezekiah’s reign, Sen- +nacherib king of Assyria attacked and captured +So Hezekiah +all the fortified cities of Judah. +king of Judah sent word to the king of Assyria at +Lachish, saying, “I have done wrong; withdraw +from me, and I will pay whatever you demand +from me.” + + a +And the king of Assyria exacted from Hezekiah +king of Judah three hundred talents of silver +Hezekiah gave him +and thirty talents of gold. +all the silver that was found in the house of the +16 +LORD and in the treasuries of the royal palace. + +15 + +b + +At that time Hezekiah stripped the gold with +which he had plated the doors and doorposts of +the temple of the LORD, and he gave it to the king +Sennacherib Threatens Jerusalem +of Assyria. +(2 Chronicles 32:9–19 ; Isaiah 36:1–22) + +17 + +c + +d + +e + + the Rabsaris, + + and the Rabshakeh, + +Nevertheless, the king of Assyria sent the Tar- +tan, + along +with a great army, from Lachish to King Hezekiah +at Jerusalem. They advanced up to Jerusalem and +stationed themselves by the aqueduct of the up- +18 +per pool, on the road to the Launderer’s Field. +Then they called for the king. And Eliakim son +of Hilkiah the palace administrator, Shebnah the +scribe, and Joah son of Asaph the recorder, went +a 14 300 talents +out to them. + +c 17 + +Tartan + +20 + +The Rabshakeh said to them, “Tell Hezekiah +that this is what the great king, the king of As- +syria, says: What is the basis of this confidence of +You claim to have a strategy and +yours? +strength for war, but these are empty words. In +whom are you now trusting, that you have re- +21 +belled against me? + +22 + +Look now, you are trusting in Egypt, that splin- +tered reed of a staff that will pierce the hand of +anyone who leans on it. Such is Pharaoh king of +But if you say to +Egypt to all who trust in him. +me, ‘We trust in the LORD our God,’ is He not the +One whose high places and altars Hezekiah has +removed, saying to Judah and Jerusalem: ‘You +23 +must worship before this altar in Jerusalem’? + +Now, therefore, make a bargain with my mas- +ter, the king of Assyria. I will give you two thou- +24 +sand horses—if you can put riders on them! +For how can you repel a single officer among +the least of my master’s servants when you de- +pend on Egypt for chariots and horsemen? +So +now, was it apart from the LORD that I have come +up against this place to destroy it? The LORD +Himself said to me, ‘Go up against this land and +26 +destroy it.’ + +” + +25 + +Then Eliakim son of Hilkiah, along with She- +bnah and Joah, said to the Rabshakeh, “Please +speak to your servants in Aramaic, since we un- + in +derstand it. Do not speak with us in Hebrew +27 +the hearing of the people on the wall.” + + f + +But the Rabshakeh replied, “Has my master +sent me to speak these words only to you and +your master, and not to the men sitting on the +wall, who are destined with you to eat their own +28 +dung and drink their own urine?” + +Then the Rabshakeh stood and called out +29 +loudly in Hebrew: “Hear the word of the great +This is what the king +king, the king of Assyria! +30 +says: Do not let Hezekiah deceive you; he cannot +Do not let Hezekiah +deliver you from my hand. +persuade you to trust in the LORD when he says, +‘The LORD will surely deliver us; this city will not +31 +be given into the hand of the king of Assyria.’ + + g + +Do not listen to Hezekiah, for this is what the +king of Assyria says: Make peace with me + and +come out to me. Then every one of you will eat + +b 14 30 talents + +d 17 + +Rabsaris + + is approximately 11.3 tons or 10.3 metric tons of silver. + +1.03 metric tons of gold. +tary. + is the title of the chief eunuch in the Assyrian military. +in the dialect of Judah +f 26 +of a high-ranking Assyrian military officer; here and throughout chapters 18 and 19, as well as Isaiah 36 and 37. + + is approximately 1.13 tons or +Rabshakeh + is the title of a field marshal, general, or commander in the Assyrian mili- + is the title + +Make a blessing with me + +Hebrew + +Hebrew + +Hebrew + +g 31 + +e 17 + +Or + +; also in verse 28 + +Or + + 32 + +from his own vine and his own fig tree and drink +until I come and +water from his own cistern, +take you away to a land like your own—a land of +grain and new wine, a land of bread and vine- +yards, a land of olive trees and honey—so that +you may live and not die. But do not listen to Hez- +ekiah, for he misleads you when he says, ‘The +33 +LORD will deliver us.’ + +Has the god of any nation ever delivered his +34 +land from the hand of the king of Assyria? +Where are the gods of Hamath and Arpad? +Where are the gods of Sepharvaim, Hena, and +Ivvah? Have they delivered Samaria from my +Who among all the gods of these lands +hand? +has delivered his land from my hand? How then +36 +can the LORD deliver Jerusalem from my hand?” + +35 + +But the people remained silent and did not an- +swer a word, for Hezekiah had commanded, “Do +37 +not answer him.” + +Then Hilkiah’s son Eliakim the palace adminis- +trator, Shebna the scribe, and Asaph’s son Joah +the recorder came to Hezekiah with their clothes +torn, and they relayed to him the words of the +Isaiah’s Message of Deliverance (Isa. 37:1–7) +Rabshakeh. + +19 + +2 + +3 + +On hearing this report, King Hezekiah +tore his clothes, put on sackcloth, and en- +And he sent Eli- +tered the house of the LORD. +akim the palace administrator, Shebna the +scribe, and the leading priests, all wearing sack- +to tell +cloth, to the prophet Isaiah son of Amoz +him, “This is what Hezekiah says: Today is a day +of distress, rebuke, and disgrace; for children +have come to the point of birth, but there is no +Perhaps the LORD +strength to deliver them. +your God will hear all the words of the Rab- +shakeh, whom his master the king of Assyria has +sent to defy the living God, and He will rebuke +him for the words that the LORD your God has +heard. Therefore lift up a prayer for the remnant +5 +that still survives.” +6 + +4 + +So the servants of King Hezekiah went to Isaiah, +who replied, “Tell your master that this is what +the LORD says: ‘Do not be afraid of the words you +have heard, with which the servants of the king +Behold, I will +of Assyria have blasphemed Me. +put a spirit in him so that he will hear a rumor +and return to his own land, where I will cause +a 9 +him to fall by the sword.’ + +b 11 + +” + +7 + +2 Kings 19:19 | 361 + +Sennacherib’s Blasphemous Letter +(Isaiah 37:8–13) + +8 + +When the Rabshakeh heard that the king of +Assyria had left Lachish, he withdrew and found +9 +the king fighting against Libnah. + + a + +Now Sennacherib had been warned about + “Look, he has set out to + +Tirhakah king of Cush: +fight against you.” + +10 + +So Sennacherib again sent messengers to Heze- +“Give this message to Hezekiah +kiah, saying, +king of Judah: + +11 + +‘Do not let your God, in whom you trust, +deceive you by saying that Jerusalem will +not be delivered into the hand of the king +Surely you have heard what the +of Assyria. +b +kings of Assyria have done to all the other +12 +countries, devoting them to destruction. +Did the gods +Will you then be spared? +of the nations destroyed by my fathers +rescue those nations—the gods of Gozan, +Haran, and Rezeph, and of the people of Eden +Where are the kings of +in Telassar? +Hamath, Arpad, Sepharvaim, Hena, and +Ivvah?’ + +13 + +Hezekiah’s Prayer +” +(Isaiah 37:14–20) + +14 + +So Hezekiah received the letter from the mes- +sengers, read it, and went up to the house of the +And +LORD and spread it out before the LORD. +Hezekiah prayed before the LORD: + +15 + +“O LORD, God of Israel, enthroned between +the cherubim, You alone are God over all the +16 +kingdoms of the earth. You made the heav- +ens and the earth. +Incline Your ear, O +LORD, and hear; open Your eyes, O LORD, +and see. Listen to the words that Sennach- +17 +erib has sent to defy the living God. + +Truly, O LORD, the kings of Assyria have +18 +laid waste these nations and their lands. +They have cast their gods into the fire and +destroyed them, for they were not gods, but +only wood and stone—the work of human +19 +hands. + +And now, O LORD our God, please save us +from his hand, so that all the kingdoms of the +earth may know that You alone, O LORD, are +God.” + +cherem + +That is, the upper Nile region + +Forms of the Hebrew + + refer to the giving over of things or persons to the + +LORD, either by destroying them or by giving them as an offering. + + 362 | 2 Kings 19:20 + +Sennacherib’s Fall Prophesied +(Isaiah 37:21–35) + +20 + +Then Isaiah son of Amoz sent a message to +Hezekiah: “This is what the LORD, the God of Is- +rael, says: I have heard your prayer concerning +This is the word +Sennacherib king of Assyria. +that the LORD has spoken against him: + +21 + +‘The Virgin Daughter of Zion + +despises you and mocks you; + +22 + +the Daughter of Jerusalem + +shakes her head behind you. + +Whom have you taunted and blasphemed? + +Against whom have you raised your voice + +23 + +and lifted your eyes in pride? + +Against the Holy One of Israel! + +Through your servants you have taunted + +the Lord, +and you have said: + +“With my many chariots +I have ascended + +to the heights of the mountains, + +to the remote peaks of Lebanon. + +a + +I have cut down its tallest cedars, +the finest of its cypresses. + +24 + +I have reached its farthest outposts, + +the densest of its forests. + +I have dug wells + +and drunk foreign waters. + +Have you not heard? + +Long ago I ordained it; +in days of old I planned it. + +Now I have brought it to pass, +that you should crush fortified cities + +26 + +into piles of rubble. + +Therefore their inhabitants, devoid of power, + +are dismayed and ashamed. +They are like plants in the field, + +tender green shoots, + +27 + +grass on the rooftops, + +scorched before it is grown. +But I know your sitting down, + +28 + +your going out and coming in, +and your raging against Me. +Because your rage and arrogance + +against Me + +have reached My ears, + +a 23 + +pines + +I will put My hook in your nose +b 31 +and My bit in your mouth; +The zeal of the LORD + or + +junipers + +c 37 + + or + +firs + +Or + +With the soles of my feet + +25 + +I have dried up all the streams of Egypt.” + +34 + +29 + +I will send you back + +the way you came.’ + +And this will be a sign to you, O Hezekiah: + +This year you will eat + +what grows on its own, + +and in the second year + +what springs from the same. +But in the third year you will sow + +and reap; + +30 + +you will plant vineyards and eat their + +fruit. + +And the surviving remnant of the house + +of Judah + +31 + +will again take root below +and bear fruit above. + +For a remnant will go forth from + +Jerusalem, + + b + +and survivors from Mount Zion. + +32 + +The zeal of the LORD of Hosts +will accomplish this. + +So this is what the LORD says about the king of + +Assyria: + +‘He will not enter this city + +or shoot an arrow into it. + +33 + +He will not come before it with a shield +or build up a siege ramp against it. + +He will go back the way he came, +and he will not enter this city, + +declares the LORD. + +I will defend this city + +and save it +for My own sake + +Jerusalem Delivered from the Assyrians +and for the sake of My servant David.’ +(2 Chronicles 32:20–23 ; Isaiah 37:36–38) + +” + +35 + +And that very night the angel of the LORD went +out and struck down 185,000 men in the camp of +the Assyrians. When the people got up the next +So +morning, there were all the dead bodies! +Sennacherib king of Assyria broke camp and +withdrew. He returned to Nineveh and stayed +37 +there. + +36 + + c + +One day, while he was worshiping in the tem- +ple of his god Nisroch, his sons Adrammelech and +Sharezer + put him to the sword and escaped to +the land of Ararat. And his son Esar-haddon +reigned in his place. + +his sons + +reads + +. + +LXX and an alternate MT reading (see also Isaiah 37:38); MT lacks + +. + +LXX, many Hebrew manuscripts, and an alternate MT reading; the other alternate + + Hezekiah’s Illness and Recovery +(2 Chronicles 32:24–31 ; Isaiah 38:1–8) + +20 + +In those days Hezekiah became mortally +ill. The prophet Isaiah son of Amoz came +to him and said, “This is what the LORD says: ‘Put +your house in order, for you are about to die; you + 2 +will not recover.’ + +” + +3 + +Then Hezekiah turned his face to the wall and +prayed to the LORD, saying, +“Please, O LORD, re- +member how I have walked before You faithfully +and with wholehearted devotion; I have done +what is good in Your sight.” And Hezekiah wept +a +4 +bitterly. + +5 + +Before Isaiah had left the middle courtyard, + +“Go +the word of the LORD came to him, saying, +back and tell Hezekiah the leader of My people +that this is what the LORD, the God of your father +David, says: ‘I have heard your prayer; I have +seen your tears. I will surely heal you. On the +third day from now you will go up to the house of +the LORD. +I will add fifteen years to your life. +And I will deliver you and this city from the hand +of the king of Assyria. I will defend this city for +7 +My sake and for the sake of My servant David.’ +” + +6 + +Then Isaiah said, “Prepare a poultice of figs.” So +they brought it and applied it to the boil, and Hez- +8 +ekiah recovered. + +Now Hezekiah had asked Isaiah, “What will be +the sign that the LORD will heal me and that I will +9 +go up to the house of the LORD on the third day?” + +And Isaiah had replied, “This will be a sign to +you from the LORD that He will do what He has +promised: Would you like the shadow to go for- +10 +ward ten steps, or back ten steps?” + +“It is easy for the shadow to lengthen ten +steps,” answered Hezekiah, “but not for it to go +11 +back ten steps.” + +So Isaiah the prophet called out to the LORD, +and He brought the shadow back the ten steps it +Hezekiah Shows His Treasures (Isa. 39:1–8) +had descended on the stairway of Ahaz. +12 + + b + +13 + +At that time Merodach-baladan + + son of +Baladan king of Babylon sent letters and a gift to +Hezekiah, for he had heard about Hezekiah’s ill- +And Hezekiah received the envoys and +ness. +showed them all that was in his treasure house— +the silver, the gold, the spices, and the precious +a 4 +oil, as well as his armory—all that was found in +Berodach-baladan + +2 Kings 21:4 | 363 + +his storehouses. There was nothing in his palace +or in all his dominion that Hezekiah did not show +14 +them. + +Then the prophet Isaiah went to King Heze- +kiah and asked, “Where did those men come +from, and what did they say to you?” + +“They came from a distant land,” Hezekiah +15 +replied, “from Babylon.” + +“What have they seen in your palace?” Isaiah + +asked. + +“They have seen everything in my palace,” an- +swered Hezekiah. “There is nothing among my +16 +treasures that I did not show them.” + +17 + +Then Isaiah said to Hezekiah, “Hear the word +The time will surely come when +of the LORD: +everything in your palace and all that your fa- +thers have stored up until this day will be carried +off to Babylon. Nothing will be left, says the +And some of your descendants, your +LORD. +own flesh and blood, will be taken away to be eu- +19 +nuchs in the palace of the king of Babylon.” + +18 + +But Hezekiah said to Isaiah, “The word of the +LORD that you have spoken is good.” For he +thought, “Will there not at least be peace and se- +Manasseh Succeeds Hezekiah +curity in my lifetime?” +20 + +As for the rest of the acts of Hezekiah, along + c +with all his might and how he constructed +the pool and the tunnel + to bring water into the +city, are they not written in the Book of the +21 +Chronicles of the Kings of Judah? + +And Hezekiah rested with his fathers, and his + +Manasseh Reigns in Judah (2 Chr. 33:1–9) +son Manasseh reigned in his place. + +21 + +2 + +Manasseh was twelve years old when he +became king, and he reigned in Jerusa- +lem fifty-five years. His mother’s name was +And he did evil in the sight of the +Hephzibah. +LORD by following the abominations of the na- +3 +tions that the LORD had driven out before the +For he rebuilt the high places that his +Israelites. +father Hezekiah had destroyed, and he raised up +altars for Baal. He made an Asherah pole, as King +Ahab of Israel had done, and he worshiped and +4 +served all the host of heaven. + +Manasseh also + built altars in the house of the +the middle of the city +LORD, of which the LORD had said, “In Jerusalem +watercourse +c 20 + +b 12 +conduit + +LXX and an alternate MT reading; the other alternate reads + +Some Hebrew manuscripts, + +LXX, and Syriac (see also Isaiah 39:1); MT + +Or + + or + + 364 | 2 Kings 21:5 + +5 + +18 + +In both courtyards of the +I will put My Name.” +a +6 +house of the LORD, he built altars to all the host +of heaven. +practiced sorcery and divination, and consulted +mediums and spiritists. He did great evil in the +7 +sight of the LORD + +He sacrificed his own son in the fire, + +, provoking Him to anger. + +8 + +Manasseh even took the carved Asherah pole he +had made and set it up in the temple, of which the +LORD had said to David and his son Solomon, “In +this temple and in Jerusalem, which I have cho- +sen out of all the tribes of Israel, I will establish +My Name forever. +I will never again cause the +feet of the Israelites to wander from the land that +I gave to their fathers, if only they are careful to +do all I have commanded them—the whole Law +9 +that My servant Moses commanded them.” + +But the people did not listen and Manasseh led +them astray, so that they did greater evil than the +nations that the LORD had destroyed before the +Manasseh’s Idolatries Rebuked +Israelites. +(2 Chronicles 33:10–20) + +10 + +11 + +12 + +And the LORD spoke through His servants +the prophets, saying, +“Since Manasseh king of +Judah has committed all these abominations, act- +ing more wickedly than the Amorites who pre- +ceded him, and with his idols has caused Judah to +sin, +this is what the LORD, the God of Israel, +says: ‘Behold, I am bringing such calamity upon +Jerusalem and Judah that the news will reverber- +13 +ate in the ears of all who hear it. + +14 + +I will stretch out over Jerusalem the measuring +line used against Samaria and the plumb line +used against the house of Ahab, and I will wipe +out Jerusalem as one wipes out a bowl—wiping +it and turning it upside down. +So I will forsake +the remnant of My inheritance and deliver them +into the hands of their enemies. And they will be- +15 +come plunder and spoil to all their enemies, +because they have done evil in My sight and +have provoked Me to anger from the day their +16 +fathers came out of Egypt until this day.’ + +” + +Moreover, Manasseh shed so much innocent +blood that he filled Jerusalem from end to end, in +addition to the sin that he had caused Judah to +17 +commit, doing evil in the sight of the LORD. + +As for the rest of the acts of Manasseh, along +with all his accomplishments and the sin that he +committed, are they not written in the Book of +made his son pass through the fire +a 6 +the Chronicles of the Kings of Judah? + +Literally + +And Manasseh rested with his fathers and was +buried in his palace garden, the garden of Uzza. +Amon Reigns in Judah (2 Chronicles 33:21–25) +And his son Amon reigned in his place. +19 + +20 + +Amon was twenty-two years old when he be- +came king, and he reigned in Jerusalem two +years. His mother’s name was Meshullemeth +And +daughter of Haruz; she was from Jotbah. +21 +he did evil in the sight of the LORD, as his father +He walked in all the ways +Manasseh had done. +of his father, and he served and worshiped the +idols his father had served. +He abandoned the +LORD, the God of his fathers, and did not walk in +23 +the way of the LORD. + +22 + +24 + +Then the servants of Amon conspired against +him and killed the king in his palace. +But the +people of the land killed all those who had con- +spired against King Amon, and they made his son +25 +Josiah king in his place. + +As for the rest of the acts of Amon, along with +his accomplishments, are they not written in the +26 +Book of the Chronicles of the Kings of Judah? +And he was buried in his tomb in the garden of + +Josiah Reigns in Judah (2 Chronicles 34:1–2) +Uzza, and his son Josiah reigned in his place. + +22 + +Josiah was eight years old when he be- +came king, and he reigned in Jerusalem +thirty-one years. His mother’s name was Jedidah +daughter of Adaiah; she was from Bozkath. +And +he did what was right in the eyes of the LORD and +walked in all the ways of his father David; he did +Funding the Temple Repairs (2 Chr. 34:8–13) +not turn aside to the right or to the left. +3 + +2 + +5 + +4 + +Now in the eighteenth year of his reign, King +Josiah sent the scribe, Shaphan son of Azaliah, +the son of Meshullam, to the house of the LORD, +“Go up to Hilkiah the high priest and +saying, +have him count the money that has been brought +into the house of the LORD, which the doorkeep- +And let them +ers have collected from the people. +deliver it into the hands of the supervisors +of those doing the work on the house of the +LORD, who in turn are to give it to the workmen +repairing the damages to the house of the +to the carpenters, builders, and ma- +LORD— +sons—to buy timber and dressed stone to repair +But they need not account for the +the temple. +money put into their hands, since they work with +integrity.” + +7 + +6 + + Hilkiah Finds the Book of the Law +(2 Chronicles 34:14–21) + +8 + +Then Hilkiah the high priest said to Shaphan the +scribe, “I have found the Book of the Law in the +house of the LORD!” And he gave it to Shaphan, +9 +who read it. + +And Shaphan the scribe went to the king and re- +ported, “Your servants have paid out the money +that was found in the temple and have put it into +the hands of the workers and supervisors of the +10 +house of the LORD.” + +Moreover, Shaphan the scribe told the king, +“Hilkiah the priest has given me a book.” And +11 +Shaphan read it in the presence of the king. + +12 + +b + + a + + son of Micaiah, + +When the king heard the words of the Book of +the Law, he tore his clothes +and commanded +Hilkiah the priest, Ahikam son of Shaphan, Ach- +13 + Shaphan the scribe, and +bor +“Go and inquire +Asaiah the servant of the king: +of the LORD for me, for the people, and for all Ju- +dah concerning the words in this book that has +been found. For great is the wrath of the LORD +that burns against us because our fathers have +not obeyed the words of this book by doing all +Huldah’s Prophecy +that is written about us.” +(2 Chronicles 34:22–28) + +14 + +c + +So Hilkiah the priest, Ahikam, Achbor, +Shaphan, and Asaiah went and spoke to Huldah +the prophetess, the wife of Shallum son of + the keeper of the +Tikvah, +wardrobe. She lived in Jerusalem, in the Second +15 +District. + + the son of Harhas, +e + +d + +16 + +And Huldah said to them, “This is what the +LORD, the God of Israel, says: ‘Tell the man who +that this is what the LORD says: I am +sent you +about to bring calamity on this place and on its +people, according to all the words of the book +because they +that the king of Judah has read, +have forsaken Me and burned incense to other +gods, that they might provoke Me to anger with +all the works of their hands. My wrath will be kin- +18 +dled against this place and will not be quenched.’ + +17 + +2 Kings 23:6 | 365 + +and you humbled yourself before the LORD when +you heard what I spoke against this place and +against its people, that they would become a des- +olation and a curse, and because you have torn +your clothes and wept before Me, I have heard +20 +you,’ declares the LORD. + +‘Therefore I will indeed gather you to your fa- +thers, and you will be gathered to your grave in +peace. Your eyes will not see all the calamity that +I will bring on this place.’ +Josiah Renews the Covenant +So they brought her answer back to the king. +(2 Chronicles 34:29–33) + +” + +23 + +2 + +Then the king summoned all the elders of +And he went up to +Judah and Jerusalem. +the house of the LORD with all the people of Ju- +dah and Jerusalem, as well as the priests and the +prophets—all the people small and great—and +in their hearing he read all the words of the Book +of the Covenant that had been found in the house +3 +of the LORD. + +So the king stood by the pillar and made a cov- +enant before the LORD to follow the LORD and to +keep His commandments, decrees, and statutes +with all his heart and all his soul, and to carry out +the words of the covenant that were written in +this book. And all the people entered into the +Josiah Destroys Idolatry +covenant. +(1 Kings 13:1–10 ; 2 Chronicles 34:3–7) + +4 + +Then the king commanded Hilkiah the high +priest, the priests second in rank, and the door- +keepers to remove from the temple of the LORD +all the articles made for Baal, Asherah, and all the +host of heaven. And he burned them outside Je- +rusalem in the fields of Kidron and carried their +5 +ashes to Bethel. + +Josiah also did away with the idolatrous priests +ordained by the kings of Judah to burn incense +on the high places of the cities of Judah and in the +places all around Jerusalem—those who had +burned incense to Baal, to the sun and moon, to +6 +the constellations, and to all the host of heaven. + +He brought the Asherah pole from the house of +the LORD to the Kidron Valley outside Jerusalem, +and there he burned it, ground it to powder, and +threw its dust on the graves of the common + +b 12 Micaiah + +Micah + +d 14 Harhas + +Hasrah + + is a variant of + +the Mishneh + +; see 2 Chronicles +; see + +But as for the king of Judah, who sent you to +inquire of the LORD, tell him that this is what the +LORD, the God of Israel, says: ‘As for the words +a 12 Achbor +because your heart was tender +that you heard, + +Abdon + +19 + +c 14 Tikvah + + is another name for + +e 14 + +Tokhath +the Second Quarter + +; see 2 Chronicles 34:20. + +34:20. +2 Chronicles 34:22. + + is a variant of +Or + +; see 2 Chronicles 34:22. + + is a variant of + +, a newer section of Jerusalem; Hebrew + + 366 | 2 Kings 23:7 + +7 + +He also tore down the quarters of the +people. +male shrine prostitutes that were in the house of +the LORD, where the women had woven tapes- +8 +tries for Asherah. + +And the men of the city replied, “It is the tomb of +the man of God who came from Judah and pro- +claimed these things that you have done to the +18 +altar of Bethel.” + +Then Josiah brought all the priests from the +cities of Judah and desecrated the high places, +from Geba to Beersheba, where the priests had +burned incense. He tore down the high places of +the gates at the entrance of the gate of Joshua the +governor of the city, which was to the left of the +Although the priests of the high places +city gate. +did not come up to the altar of the LORD in Jeru- +salem, they ate unleavened bread with their +10 +fellow priests. + +9 + + a + + b + +11 + +He also desecrated Topheth in the Valley of +Ben-hinnom + so that no one could sacrifice his +And he +son or daughter in the fire +removed from the entrance to the house of the + c +LORD the horses that the kings of Judah had ded- +icated to the sun. They were in the court + near +the chamber of an official named Nathan-melech. +12 +And Josiah burned up the chariots of the sun. + + to Molech. + +He pulled down the altars that the kings of +Judah had set up on the roof near the upper +chamber of Ahaz, and the altars that Manasseh +had set up in the two courtyards of the house of +the LORD. The king pulverized them there + and +13 +threw their dust into the Kidron Valley. + + d + + e + +The king also desecrated the high places east +of Jerusalem, to the south of the Mount of Cor- +ruption, which King Solomon of Israel had built +for Ashtoreth the abomination of the Sidonians, +for Chemosh the abomination of the Moabites, +14 +and for Milcom + the abomination of the Ammo- +He smashed the sacred pillars to pieces, +nites. +cut down the Asherah poles, and covered the +15 +sites with human bones. + + f + +16 + +He even pulled down the altar at Bethel, the +high place set up by Jeroboam son of Nebat, who +had caused Israel to sin. Then he burned + the +high place, ground it to powder, and burned the +And as Josiah turned, he saw the +Asherah pole. +tombs there on the hillside, and he sent someone +to take the bones out of the tombs, and he burned +them on the altar to defile it, according to the +word of the LORD proclaimed by the man of God +17 +who had foretold these things. + +g + +“Let him rest,” said Josiah. “Do not let anyone + +disturb his bones.” + +So they +left his bones undisturbed, along +with those of the prophet who had come from +19 +Samaria. + +20 + +Just as Josiah had done at Bethel, so also in the +cities of Samaria he removed all the shrines of +the high places set up by the kings of Israel who +On the altars +had provoked the LORD to anger. +he slaughtered all the priests of the high places, +and he burned human bones on them. Then he +Josiah Restores the Passover +returned to Jerusalem. +(2 Chronicles 35:1–19) + +21 + +The king commanded all the people, “Keep the +Passover of the LORD your God, as it is written in +22 +this Book of the Covenant.” + +23 + +No such Passover had been observed from the +days of the judges who had governed Israel +through all the days of the kings of Israel and Ju- +But in the eighteenth year of Josiah’s +dah. +reign, this Passover was observed to the LORD in +24 +Jerusalem. + +Furthermore, Josiah removed the mediums +and spiritists, the household gods and idols, and +all the abominations that were seen in the land of +Judah and in Jerusalem. He did this to carry out +the words of the law written in the book that +Hilkiah the priest had found in the house of the +25 +LORD. + +Neither before nor after Josiah was there any +king like him, who turned to the LORD with all +his heart and with all his soul and with all his +26 +strength, according to all the Law of Moses. + +27 + +Nevertheless, the LORD did not turn away +from the fury of His burning anger, which was +kindled against Judah because of all that Manas- +For the +seh had done to provoke Him to anger. +LORD had said, “I will remove Judah from My +sight, just as I removed Israel. I will reject this +city Jerusalem, which I chose, and the temple of +which I said, ‘My Name shall be there.’ + +c 11 + +par- + +Molech + +” +Hebrew + +when Jeroboam stood by the +; see Leviticus 18:21 and 1 Kings + +Then the king asked, “What is this monument + +the Valley of the Son of Hinnom + +b 10 + +could pass his son or daughter through the fire + +a 10 +I see?” +barim +Or + +d 12 + +f 15 + +quickly removed them from there +Literally +g 16 +broke into pieces + +e 13 Milcom + + is a variant of +altar at the feast. And he turned and lifted his eyes to the tomb of the man of God. +11:7. + +See 1 Kings 13:2; Hebrew; LXX includes + +Hebrew; LXX + +Or + + The Death of Josiah (2 Chronicles 35:20–24) + +2 + +c + +2 Kings 24:14 | 367 + +28 + +As for the rest of the acts of Josiah and all +his accomplishments, are they not written in the +29 +Book of the Chronicles of the Kings of Judah? + +During Josiah’s reign, Pharaoh Neco king of +Egypt marched up to help the king of Assyria at +the Euphrates River. King Josiah went out to con- +front him, but Neco faced him and killed him at +30 +Megiddo. + +From Megiddo his servants carried his body in +a chariot, brought him to Jerusalem, and buried +him in his own tomb. Then the people of the land +took Jehoahaz son of Josiah, anointed him, and +Jehoahaz Succeeds Josiah (2 Chr. 36:1–4) +made him king in place of his father. +31 + +Jehoahaz was twenty-three years old when he +became king, and he reigned in Jerusalem three +months. His mother’s name was Hamutal daugh- +And he +ter of Jeremiah; she was from Libnah. +did evil in the sight of the LORD, just as his +33 +fathers had done. + +32 + +b + + a + +34 + +And Pharaoh Neco imprisoned Jehoahaz at +Riblah in the land of Hamath so that he could not +reign in Jerusalem, and he imposed on Judah a +levy of a hundred talents of silver + and a talent of +gold. +Then Pharaoh Neco made Eliakim son of +Josiah king in place of his father Josiah, and he +changed Eliakim’s name to Jehoiakim. But Neco +took Jehoahaz and carried him off to Egypt, +35 +where he died. + +So Jehoiakim paid the silver and gold to Phar- +aoh Neco, but to meet Pharaoh’s demand he +taxed the land and exacted the silver and the gold +Jehoiakim Reigns in Judah (2 Chr. 36:5–8) +from the people, each according to his wealth. +36 + +Jehoiakim was twenty-five years old when he +became king, and he reigned in Jerusalem eleven +years. His mother’s name was Zebidah daughter +And he did +of Pedaiah; she was from Rumah. +evil in the sight of the LORD, just as his fathers +Babylon Controls Jehoiakim +had done. + +37 + +24 + +During Jehoiakim’s reign, Nebuchadnez- +zar king of Babylon invaded. So Jehoia- +kim became his vassal for three years, until he +a 33 100 talents +turned and rebelled against Nebuchadnezzar. +c 2 + +Babylonian + +3 + +And the LORD sent Chaldean, + + Aramean, Moab- +ite, and Ammonite raiders against Jehoiakim in +order to destroy Judah, according to the word +that the LORD had spoken through His servants +Surely this happened to Judah at +the prophets. +the LORD’s command, to remove them from His +presence because of the sins of Manasseh and all +and also for the innocent +that he had done, +blood he had shed. For he had filled Jerusalem +with innocent blood, and the LORD was unwill- +5 +ing to forgive. + +4 + +As for the rest of the acts of Jehoiakim, along +with all his accomplishments, are they not writ- +ten in the Book of the Chronicles of the Kings of +Jehoiachin Reigns in Judah (2 Chr. 36:9–10) +Judah? +6 + +And Jehoiakim rested with his fathers, and his + +7 +son Jehoiachin reigned in his place. + +Now the king of Egypt did not march out of his +land again, because the king of Babylon had +taken all his territory, from the Brook of Egypt to +8 +the Euphrates River. + +Jehoiachin was eighteen years old when he be- +came king, and he reigned in Jerusalem three +months. His mother’s name was Nehushta +9 +daughter of Elnathan; she was from Jerusalem. +And he did evil in the sight of the LORD, just as + +The Captivity of Jerusalem (Lam. 1:1–22) +his father had done. +10 + +12 + +11 + +At that time the servants of Nebuchadnezzar +king of Babylon marched up to Jerusalem, and +the city came under siege. +And Nebuchadnez- +zar king of Babylon came to the city while his +Jehoiachin king of +servants were besieging it. +Judah, his mother, his servants, his commanders, +and his officials all surrendered to the king of +Babylon. + +13 +So in the eighth year of his reign, the king of Bab- +As the LORD had de- +ylon took him captive. +clared, Nebuchadnezzar also carried off all the +treasures from the house of the LORD and the +royal palace, and he cut into pieces all the gold +articles that Solomon king of Israel had made in +He carried into exile +the temple of the LORD. +all Jerusalem—all the commanders and mighty +men of valor, all the craftsmen and met- +alsmiths—ten thousand captives in all. Only the +poorest people of the land remained. + +b 33 A talent + +14 + + is approximately 3.77 tons or 3.42 metric tons of silver. + + is approximately 75.4 pounds or + +34.2 kilograms of gold. + +Or + + 368 | 2 Kings 24:15 + +15 + +7 + +Nebuchadnezzar carried away Jehoiachin to +Babylon, as well as the king’s mother, his wives, +his officials, and the leading men of the land. He +16 +took them into exile from Jerusalem to Babylon. +The king of Babylon also brought into exile to +Babylon all seven thousand men of valor and a +thousand craftsmen and metalsmiths—all strong +17 +and fit for battle. + +Then the king of Babylon made Mattaniah, Je- +hoiachin’s uncle, king in his place and changed +Zedekiah Reigns in Judah +his name to Zedekiah. +(2 Chronicles 36:11–14 ; Jeremiah 52:1–3) + +18 + +Zedekiah was twenty-one years old when he +became king, and he reigned in Jerusalem eleven +years. His mother’s name was Hamutal daughter +19 +of Jeremiah; she was from Libnah. + +20 + +And Zedekiah did evil in the sight of the LORD, +For because of the +just as Jehoiakim had done. +anger of the LORD, all this happened in Jerusalem +and Judah, until He finally banished them from +His presence. + +And Zedekiah also rebelled against the king of +Nebuchadnezzar Besieges Jerusalem +Babylon. +(2 Chronicles 36:15–21 ; Jeremiah 39:1–10) + +25 + +So in the ninth year of Zedekiah’s reign, +on the tenth day of the tenth month, Neb- +uchadnezzar king of Babylon marched against Je- + a +rusalem with his entire army. They encamped + a siege wall all around +outside the city and built +And the city was kept under siege until King +it. +3 +Zedekiah’s eleventh year. + +2 + +b + + c + +By the ninth day of the fourth month, +4 + + the fam- +ine in the city was so severe that the people of the +Then the city was breached; +land had no food. + had surrounded the +and though the Chaldeans +city, all the men of war fled by night by way of +the gate between the two walls near the king’s +garden. + +5 + +d + +And they slaughtered the sons of Zedekiah be- +fore his eyes. Then they put out his eyes, bound +him with bronze shackles, and took him to Baby- +lon. The Temple Destroyed +(Jeremiah 52:12–23) + +8 + +9 + +On the seventh day of the fifth month, in the +nineteenth year of Nebuchadnezzar’s reign over +Babylon, Nebuzaradan captain of the guard, a +servant of the king of Babylon, entered Jerusa- +He burned down the house of the LORD, +lem. +the royal palace, and all the houses of Jerusa- +And the whole +lem—every significant building. +army of the Chaldeans under the captain of the +11 +guard broke down the walls around Jerusalem. + +10 + +12 + +Then Nebuzaradan captain of the guard +carried into exile the people who remained in the +city, along with the deserters who had defected +to the king of Babylon and the rest of the popula- +But the captain of the guard left behind +tion. +some of the poorest of the land to tend the vine- +13 +yards and fields. + +14 + +Moreover, the Chaldeans broke up the bronze +pillars and stands and the bronze Sea in the +house of the LORD, and they carried the bronze +They also took away the pots, +to Babylon. +shovels, wick trimmers, dishes, and all the arti- +The +cles of bronze used in the temple service. +captain of the guard also took away the censers +and sprinkling bowls—anything made of pure +16 +gold or fine silver. + +15 + +e + +17 + +As for the two pillars, the Sea, and the movable +stands that Solomon had made for the house of +the LORD, the weight of the bronze from all these +Each pillar was +articles was beyond measure. +eighteen cubits tall. + The bronze capital atop one + with a network of +pillar was three cubits high, +bronze pomegranates all around. The second pil- +Captives Carried to Babylon +lar, with its network, was similar. +(Jeremiah 52:24–30) + +f + +18 + +but the army +They headed toward the Arabah, +of the Chaldeans pursued the king and overtook +6 +him in the plains of Jericho, and his whole army +deserted him. +The Chaldeans seized the king +and brought him up to the king of Babylon at Rib- +He encamped outside it and they built +a 1 +lah, where they pronounced judgment on him. +c 4 + +b 3 + +The captain of the guard also took away +Seraiah the chief priest, Zephaniah the priest of +second rank, and the three doorkeepers. +Of +those still in the city, he took a court official who +had been appointed over the men of war, as well +as five royal advisors. He also took the scribe of + +fourth + +19 + +Literally +f 17 3 cubits +That is, the Babylonians; also in verses 5, 6, 10, 13, 24, 25, and 26 + +the Jordan Valley +Probable reading (see Jeremiah 52:6); MT does not include + +e 17 18 cubits + +d 4 + +. + +Or + + is approxi- + +mately 27 feet or 8.2 meters. + + is approximately 4.5 feet or 1.4 meters. + + the captain of the army, who had enlisted the +people of the land, and sixty men who were +20 +found in the city. + +21 + +Nebuzaradan captain of the guard took them +and brought them to the king of Babylon at Rib- +lah. +There at Riblah in the land of Hamath, the +king of Babylon struck them down and put them +to death. So Judah was taken into exile, away +Gedaliah Governs in Judah +from its own land. +(Jeremiah 40:1–16) + +22 + +Nebuchadnezzar king of Babylon appointed +Gedaliah son of Ahikam, the son of Shaphan, over +23 +the people he had left behind in the land of Judah. + +When all the commanders of the armies and +their men heard that the king of Babylon had +appointed Gedaliah as governor, they came to +Gedaliah at Mizpah—Ishmael son of Nethaniah, +Johanan son of Kareah, Seraiah son of Tanhumeth +24 + son of the +the Netophathite, and Jaazaniah +And Gedaliah +Maacathite, as well as their men. +took an oath before them and their men, assuring +them, “Do not be afraid of the servants of the +Chaldeans. Live in the land and serve the king of +Babylon, and it will be well with you.” + + a + +2 Kings 25:30 | 369 + +The Murder of Gedaliah +(Jeremiah 41:1–10) + +25 + +26 + +In the seventh month, however, Ishmael son +of Nethaniah, the son of Elishama, who was a +member of the royal family, came with ten men +and struck down and killed Gedaliah, along +with the Judeans and Chaldeans who were with +Then all the people small +him at Mizpah. +and great, together with the commanders of +the army, arose and fled to Egypt for fear of the +Jehoiachin Released from Prison +Chaldeans. +(Jeremiah 52:31–34) + +27 + +On the twenty-seventh day of the twelfth +month of the thirty-seventh year of the exile +of Judah’s King Jehoiachin, in the year Evil-mer- + King +odach became king of Babylon, he released +And he spoke +Jehoiachin of Judah from prison. +kindly to Jehoiachin and set his throne above the +thrones of the other kings who were with him in +29 +Babylon. + +28 + + b + +So Jehoiachin changed out of his prison +30 +clothes, and he dined regularly at the king’s table +And the king provided +for the rest of his life. +Jehoiachin a daily portion for the rest of his life. + +a 23 Jaazaniah + +Jezaniah + +b 27 + +lifted up the head of + + is a variant of + +; see Jeremiah 40:8. + +Literally + + 1 Chronicles + +From Adam to Abraham +(Genesis 5:1–32 ; 10:1–32 ; 11:10–26) + +1 + +2 +Adam, Seth, Enosh, + +3 + +4 + +Kenan, Mahalalel, Jared, + + a +Enoch, Methuselah, Lamech, Noah. + +The sons of Noah: +5 +Shem, Ham, and Japheth. + +The sons of Japheth: + +Gomer, Magog, Madai, Javan, Tubal, +6 +Meshech, and Tiras. + +b + +The sons of Gomer: Ashkenaz, Riphath, + +7 +and Togarmah. + +8 + +And the sons of Javan: Elishah, Tarshish, + +the Kittites, and the Rodanites. + + h + +i +The sons of Aram: +18 +Meshech. + + Uz, Hul, Gether, and + +Arphaxad was the father of Shelah, and + +19 +Shelah was the father of Eber. + +j + +Two sons were born to Eber: One was + + because in his days the + +named Peleg, +earth was divided, and his brother was +20 +named Joktan. + +21 + +And Joktan was the father of Almodad, +k + +22 +Sheleph, Hazarmaveth, Jerah, +23 +Uzal, Diklah, + + Abimael, Sheba, +Ophir, Havilah, and Jobab. All these + +Obal, + +Hadoram, + +24 +were sons of Joktan. +25 +26 +So from Shem came Arphaxad, Shelah, +27 +Eber, Peleg, Reu, +and Abram (that is, Abraham). + +Serug, Nahor, Terah, + +The Descendants of Abraham (Gen. 25:12–18) + +l + +The sons of Ham: +9 +Cush, Mizraim, Put, and Canaan. + +28 +29 + +c + +The sons of Cush: Seba, Havilah, Sabta, + +Raamah, and Sabteca. +10 +The sons of Raamah: Sheba and Dedan. + + d + +Cush was the father of Nimrod, who + +11 +began to be a mighty one + + on the earth. + +Mizraim was the father of the Ludites, + +12 + +the Anamites, the Lehabites, the Naph- +tuhites, +(from whom the Philistines came), and +13 +the Caphtorites. + +the Pathrusites, the Casluhites + +e + +f + +g + +14 + +And Canaan was the father of Sidon + + and of the Hittites, + +his firstborn, +the +15 +Jebusites, the Amorites, the Girgashites, +16 +the Hivites, the Arkites, the Sinites, +the Arvadites, the Zemarites, and the + +17 + +Hamathites. + +The sons of Shem: + +a 4 + +Elam, Asshur, Arphaxad, Lud, and Aram. + +The sons of Noah: + +Diphath + +The sons of Abraham were Isaac and Ishmael. +These are their genealogies: + +30 + +Nebaioth the firstborn of Ishmael, then +31 +Mishma, Dumah, +Kedar, Adbeel, Mibsam, +Jetur, Naphish, and +Massa, Hadad, Tema, +32 +Kedemah. These were the sons of Ishmael. + +The sons born to Keturah, Abraham’s + +concubine: + +Zimran, Jokshan, Medan, Midian, Ishbak, +and Shuah. + +The sons of Jokshan: +33 + +Sheba and Dedan. + +The sons of Midian: + +Ephah, Epher, Hanoch, Abida, and Eldaah. + +34 + +All of these were Keturah’s sons. + +Abraham was the father of Isaac. The sons + +of Isaac: +b 6 +c 9 Sabta + +Esau and Israel. + +Sabtah + +LXX; Hebrew does not include + +who established himself as a mighty warrior + +d 10 +also LXX and Genesis 10:3); most Hebrew manuscripts +and the Caphtorites (from whom the Philistines came) +Or +foremost + +and of Heth + +h 17 + +g 13 + +; see Genesis 5:32. + +e 12 + +Many Hebrew manuscripts and Vulgate (see + is a variant of +of the Sidonians, the +Some translators adjust the Hebrew word order to + +; see Genesis 10:7. + +the Casluhites, + +f 13 + +Hebrew +division +j 19 Peleg +most Hebrew manuscripts do not include +Shelah + +k 22 + + means + +. + +. +Shem, Arphaxad, Cainan, Shelah +LXX and Syriac (see also Genesis 10:28); Hebrew + +The sons of Aram + +; see also Jeremiah 47:4 and Amos 9:7. +Mash +l 24 + +i 17 Meshech + +One Hebrew manuscript and some LXX manuscripts (see also Genesis 10:23); +Ebal + is a variant of + +Shem, Arphaxad, + +Or + +; see Genesis 10:23. +Literally + +; some LXX manuscripts + +; see also Genesis 10:24 LXX and Luke 3:35–36. + + The Descendants of Esau (Genesis 36:1–19) + +48 + +35 + +The sons of Esau: +36 +Eliphaz, Reuel, Jeush, Jalam, and Korah. + +a + +The sons of Eliphaz: Teman, Omar, + + Gatam, and Kenaz; and by Timna, + +Zepho, +37 +Amalek. + +The sons of Reuel: Nahath, Zerah, +The Descendants of Seir (Genesis 36:20–30) + +Shammah, and Mizzah. + +38 + +The sons of Seir: + +Lotan, Shobal, Zibeon, Anah, Dishon, Ezer, +39 +and Dishan. + +b + +The sons of Lotan: Hori and Homam. + +40 +Timna was Lotan’s sister. +d + +c + +1 Chronicles 2:9 | 371 + + i + +When Samlah died, Shaul from Rehoboth + +49 +on the Euphrates + + reigned in his place. + +When Shaul died, Baal-hanan son of + +50 +Achbor reigned in his place. + +j + +When Baal-hanan died, Hadad reigned in + and his + +his place. His city was named Pau, +wife’s name was Mehetabel daughter of +51 +Matred, the daughter of Me-zahab. + +Then Hadad died. +52 + +53 + +54 + +Oholibamah, Elah, Pinon, + +Now the chiefs of Edom were Timna, Alvah, Jeth- +eth, +Kenaz, Teman, +Mibzar, +Magdiel, and Iram. These were the +The Sons of Israel (Genesis 35:21–26 ; 38:1–30) +chiefs of Edom. + +2 + +These were the sons of Israel: + +2 + +The sons of Shobal: Alvan, + + Manahath, + +Reuben, Simeon, Levi, Judah, Issachar, + +Ebal, Shepho, +41 +The sons of Zibeon: Aiah and Anah. + + and Onam. + + e + +The son + +f + of Anah: Dishon. + +The sons of Dishon: Hemdan, +42 +Ithran, and Cheran. + +g + + Eshban, + +The sons of Ezer: Bilhan, Zaavan, and + +Akan. + +The Kings of Edom (Genesis 36:31–43) +The sons of Dishan: Uz and Aran. + +43 + + h + +These are the kings who reigned in the land of +the + +Edom before any king reigned over +Israelites: + +Bela son of Beor. His city was named +44 +Dinhabah. + +When Bela died, Jobab son of Zerah from + +45 +Bozrah reigned in his place. + +When Jobab died, Husham from the land + +46 +of the Temanites reigned in his place. + +When Husham died, Hadad son of Bedad, + +who defeated Midian in the country of +Moab, reigned in his place. And the name of +47 +his city was Avith. + +When Hadad died, Samlah from Masrekah + +Zebulun, +3 +Gad, and Asher. + +Dan, Joseph, Benjamin, Naphtali, + +The sons of Judah: + +Er, Onan, and Shelah. These three were +born to him by Bath-shua the Canaanite. +Er, Judah’s firstborn, was wicked in the +sight of the LORD. So the LORD put him +4 +to death. + +Tamar, Judah’s daughter-in-law, bore to +him Perez and Zerah. Judah had five sons +in all. + +5 + +The sons of Perez: + +6 + +Hezron and Hamul. + +k + +The sons of Zerah: + + l + +7 + +Zimri, +five in all. + + Ethan, Heman, Calcol, and Dara + m + +— + +n +The son + + of Carmi: + +8 + + who brought trouble upon Israel + +Achar, +by violating the ban on devoted things. + +The son of Ethan: + +9 + +Azariah. + +The sons who were born to Hezron: + +o + +a 36 +Zephi +d 40 +Hamran +i 48 + +reigned in his place. +b 39 Homam + +Hemam + +Jerahmeel, Ram, and Caleb. + +c 40 +sons + +f 41 + +Alian + +Many Hebrew manuscripts, some LXX manuscripts, and Syriac (see also Genesis 36:11); most Hebrew manuscripts + +g 42 + + is a variant of + +h 43 + +LXX (see also Genesis 36:23); Hebrew + +before an Israelite king ruled over them + +LXX (see also Genesis 36:23); Hebrew +Pai + +LXX (see also Genesis 36:27); Hebrew + +the River + +j 50 + +k 6 Zimri +Many MT manuscripts, some LXX manuscripts, Vulgate, and Syriac (see also Genesis 36:39); +Darda +; see Joshua 7:1. +Most Hebrew manuscripts; many Hebrew +Chelubai + +n 7 Achar + +Zabdi + +Caleb + +sons + +m 7 + +o 9 + +Or + +LXX (see also Genesis 36:26); Hebrew +l 6 + +most MT manuscripts +troubler +manuscripts, some LXX manuscripts, and Syriac (see also 1 Kings 4:31) + + is a variant of + +Achan + +Hebrew + + means + +Hebrew + +e 41 +Shephi +; see Genesis 36:22. +Hebrew + +Jaakan + +; also called + + in Joshua 7 and Joshua 22. + +Hebrew + +, a variant of + +; see verse 18. + + 372 | 1 Chronicles 2:10 + +10 + +Ram was the father of Amminadab, and +Amminadab was the father of Nahshon, a +11 +leader of the descendants of Judah. + +a + +Nahshon was the father of Salmon, + +12 +Salmon was the father of Boaz. + + and + +Boaz was the father of Obed, and Obed + +13 +was the father of Jesse. + + b + +16 + +15 + +14 +Abinadab was born second, Shimea +Nethanel fourth, Raddai fifth, + +Jesse was the father of Eliab his firstborn; + third, +Ozem +Their sisters +sixth, and David seventh. +were Zeruiah and Abigail. And the three sons +17 +of Zeruiah were Abishai, Joab, and Asahel. +Abigail was the mother of Amasa, whose + + c + +18 +father was Jether + + the Ishmaelite. + +d + +Caleb son of Hezron had children by his +wife Azubah and by Jerioth. These were the +19 +sons of Azubah: Jesher, Shobab, and Ardon. +When Azubah died, Caleb married +Ephrath, +Hur was + who bore to him Hur. +the father of Uri, and Uri was the father of +21 +Bezalel. + +20 + +23 + +22 + +Later, Hezron slept with the daughter of +Machir the father of Gilead. He had married +her when he was sixty years old, and she +Segub was the father of +bore to him Segub. +Jair, who had twenty-three cities in the land +e +But Geshur and Aram captured +of Gilead. +Havvoth-jair, + along with Kenath and its +sixty surrounding villages. All these were de- +24 +scendants of Machir the father of Gilead. + + g +After Hezron died in Caleb-ephrathah, his + + f + +wife Abijah bore +25 +of Tekoa. + + to him Ashhur the father + +The sons of Jerahmeel the firstborn of + +Hezron: + +26 + +Ram his firstborn, Bunah, Oren, Ozem, +and Ahijah. +named Atarah, who was the mother of +Onam. + +Jerahmeel had another wife + +27 + +The sons of Ram the firstborn of + +Jerahmeel: +28 + +Maaz, Jamin, and Eker. + +The sons of Onam: + +The sons of Shammai: + +29 + +Nadab and Abishur. +was named Abihail, and she bore to him +Ahban and Molid. + +Abishur’s wife + +30 + +The sons of Nadab: + +31 + +Seled and Appaim. Seled died without + h +children. + +The son + + of Appaim: + +Ishi. + +The son of Ishi: + +Sheshan. + +The son of Sheshan: +32 + +Ahlai. + +The sons of Jada the brother of Shammai: + +33 + +Jether and Jonathan. Jether died without +children. + +The sons of Jonathan: + +Peleth and Zaza. + +34 +These were the descendants of Jerahmeel. + +35 + +Sheshan had no sons, but only daughters. +He also had an Egyptian servant named +Sheshan gave his daughter in mar- +Jarha. +riage to his servant Jarha, and she bore to +36 +him Attai. + +37 + +Attai was the father of Nathan, Nathan was +Zabad was the father +the father of Zabad, +38 +of Ephlal, Ephlal was the father of Obed, +39 +Obed was the father of Jehu, Jehu was the +father of Azariah, +Azariah was the father of +40 +Helez, Helez was the father of Elasah, +Elasah was the father of Sismai, Sismai +Shallum was the +was the father of Shallum, +father of Jekamiah, and Jekamiah was the fa- +42 +ther of Elishama. + +41 + +The sons of Caleb the brother of + + i + +Jerahmeel: + + his firstborn, who was the father + +Mesha +of Ziph, and Mareshah his second son, +who was the father of Hebron. + +43 + +The sons of Hebron: +44 +Korah, Tappuah, Rekem, and Shema. + +a 11 + +Shammai and Jada. +Shimei +LXX (see also Ruth 4:20–21); Hebrew + +Salma + +Ephrathah +d 19 Ephrath +and +relations with Ephrathah, the wife of Hezron his father, and she bore + +; see 1 Samuel 16:9, 2 Samuel 13:3, and 2 Samuel 21:21. +; see verse 50. +sons +h 31 + + is a variant of + +e 23 + +Or + +; twice in this verse + +42, 45, 49, and possibly elsewhere + +Hebrew + +; see also LXX. +; three times in this verse + +Shema was the father of Raham the +Shimeah +b 13 Shimea +father of Jorkeam, and Rekem was the + c 17 Jether +the villages of Jair + +Shammah + +Ithra + +, +After Hezron died, Caleb had +the founder + +; see 2 Samuel 17:25. + +, + + is a variant of +f 24 + is a variant of +g 24 +i 42 + +Or +Or +Hebrew; LXX + +Mareshah + +; also in verses + + 45 + +father of Shammai. +was Maon, and Maon was the father of +Beth-zur. + +The son of Shammai + +46 + +Caleb’s concubine Ephah was the mother +of Haran, Moza, and Gazez. Haran was the +47 +father of Gazez. + +The sons of Jahdai: + +48 + +Regem, Jotham, Geshan, Pelet, Ephah, and +Shaaph. + +49 + +Caleb’s concubine Maacah was the mother +of Sheber and Tirhanah. +She was also the +mother of Shaaph father of Madmannah, and +of Sheva father of Machbenah and Gibea. +Caleb’s daughter was Acsah. +These were +the descendants of Caleb. + +50 + + a + + b + of Hur the firstborn of + +The sons +Ephrathah: + +51 +Shobal the father of Kiriath-jearim, + +52 + +Salma the father of Bethlehem, and + +Hareph the father of Beth-gader. + +These were the descendants of Shobal the + +53 + +father of Kiriath-jearim: + +and the + +Haroeh, half the Manahathites, +clans of Kiriath-jearim—the Ithrites, +Puthites, Shumathites, and Mishraites. +From these descended the Zorathites and +Eshtaolites. + +54 + +The descendants of Salma: + +55 + +Bethlehem, the Netophathites, Atroth- + c +beth-joab, half the Manahathites, the +Zorites, +and the clans of the scribes +who lived at Jabez—the Tirathites, +Shimeathites, and Sucathites. These are +d +the Kenites who came from Hammath, +The Descendants of David (2 Samuel 3:1–5) +the father of the house of Rechab. + +3 + +These were the sons of David who were born +to him in Hebron: + +1 Chronicles 3:20 | 373 + +3 +the fourth was Adonijah the son of Haggith; + +the fifth was Shephatiah by Abital; + +4 +and the sixth was Ithream by his wife Eglah. + +These six sons were born to David in Heb- +ron, where he reigned seven years and six +months. +5 + +And David reigned in Jerusalem thirty-three +years, +and these sons were born to him in +e +Jerusalem: + + f + + Shobab, Nathan, and Solomon. + +Shimea, +g +These four were born to him by Bathsheba +i +6 +daughter of Ammiel. +7 + +8 + +h + +David’s other sons were Ibhar, + +Eliphelet, +9 +shama, Eliada, and Eliphelet—nine in all. + +Nogah, Nepheg, Japhia, + + Elishua, +Eli- + +These were all the sons of David, besides +the sons by his concubines. And Tamar was +their sister. +10 + +The Descendants of Solomon + +Solomon’s son was Rehoboam: + +11 + + j + + his son, Ahaziah his + +Abijah was his son, Asa his son, Jehosha- +12 +phat his son, +Joram + k +son, Joash his son, +Ahaz + his son, Jotham his son, +Azariah +14 +his son, Hezekiah his son, Manasseh his +son, +Amon his son, and Josiah his son. + +Amaziah his son, + +13 + +15 + +The sons of Josiah: + + l +Johanan was the firstborn, Jehoiakim the +second, Zedekiah the third, and Shallum +the fourth. + +16 + + m + +The successors of Jehoiakim: + +The Royal Line After the Exile + +Jeconiah + + his son, and Zedekiah. + +17 + +The descendants of Jeconiah the captive: + +18 + +Shealtiel his son, +Shenazzar, Jekamiah, Hoshama, and +Nedabiah. + +Malchiram, Pedaiah, + +19 + +The firstborn was Amnon by Ahinoam of +Jezreel; +2 +the second was Daniel by Abigail of Carmel; + +The sons of Pedaiah: + +Zerubbabel and Shimei. + +The children of Zerubbabel: +20 + +the third was Absalom the son of Maacah + +a 50 +d 55 + +daughter of King Talmai of Geshur; + +son + +b 50 Ephrathah +the founder of the house of Rechab + +Ephrath + +Meshullam and Hananiah, their sister +of the Sopherites +Shelomith, +e 5 Shimea + +and five others: Hashubah, +Shammua + +c 55 + +the father of Beth-rechab +f 5 + or +g 5 Ammiel +One Hebrew manuscript and Vulgate (see also LXX and 2 Samuel 11:3); most Hebrew + + is a variant of +Eliam + +; see verse 19. + + is a variant of + +h 6 + +Or + +; see 2 Samuel +David’s other + + is a variant of + +Jehoram +m 16 Jeconiah + +Jehoahaz + +; see 2 Samuel 11:3. +k 12 Azariah + +Hebrew does not include +Uzziah + +Two Hebrew manuscripts (see also 2 Samuel 5:15 and 1 Chronicles 14:5); most Hebrew manuscripts + + is another name for + + is a variant spelling of +. + +. + + is a variant of + +; see 2 Chronicles 26:1. +; also in verse 17; see 2 Kings 24:6. + +Jehoiachin + is also called + +LXX and Vulgate; Hebrew +Or +Bath-shua +5:14 and 1 Chronicles 14:4. +sons were +i 6 +manuscripts +Elishama +j 11 Joram +. +l 15 Shallum + + 374 | 1 Chronicles 3:21 + +21 + +Ohel, Berechiah, Hasadiah, and +Jushab-hesed. + +The descendants of Hananiah: + +Pelatiah, Jeshaiah, and the sons of +Rephaiah, of Arnan, of Obadiah, and of +Shecaniah. + +22 + +The six descendants of Shecaniah were + +Shemaiah and his sons: + +23 + +Hattush, Igal, Bariah, Neariah, and +Shaphat. + +The sons of Neariah: + +24 + +Elioenai, Hizkiah, and Azrikam—three +in all. + +The sons of Elioenai: + +The Descendants of Judah + +Hodaviah, Eliashib, Pelaiah, Akkub, +Johanan, Delaiah, and Anani—seven in all. + +4 + +The descendants of Judah: + +2 + +Perez, Hezron, Carmi, Hur, and Shobal. + +Reaiah son of Shobal was the father of + +Jahath, and Jahath was the father of Ahumai +and Lahad. These were the clans of the +3 +Zorathites. + + a + + b + +These were the sons +4 + + of Etam: Jezreel, +Ishma, and Idbash. And their sister was +named Hazzelelponi. +Penuel was the +father +of Hushah. + + of Gedor, and Ezer was the father + +These were the descendants of Hur, the +firstborn of Ephrathah and the father of +5 +Bethlehem. + +Ashhur the father of Tekoa had two wives, +6 + +Helah and Naarah. + +Naarah bore to him Ahuzzam, Hepher, +Temeni, and Haahashtari. These were the +7 +descendants of Naarah. + +c + +8 + +The sons of Helah were Zereth, Zohar, + +and Koz, who was the father of + +Ethnan, +Anub and Zobebah and of the clans of +Aharhel son of Harum. + +The Prayer of Jabez + +9 + +brothers. His mother had named him Jabez, +10 +saying, “Because I bore him in pain.” + +d + +And Jabez called out to the God of Israel, +“If only You would bless me and enlarge my +territory! May Your hand be with me and +keep me from harm, so that I will be free +from pain.” + +More Descendants of Judah + +And God granted the request of Jabez. +11 + +Chelub the brother of Shuhah was the fa- +12 +ther of Mehir, who was the father of Eshton. +Eshton was the father of Beth-rapha, +of Paseah, and of Tehinnah the father of +13 +Ir-nahash. These were the men of Recah. + +The sons of Kenaz: + +Othniel and Seraiah. + +The sons of Othniel: +14 + +Hathath and Meonothai. + +e + +Meonothai was the father of Ophrah, and + +Seraiah was the father of Joab, the father +of those living in Ge-harashim, which was +given this name because its people were +15 +craftsmen. + +f + +The sons of Caleb son of Jephunneh: + + g + +Iru, Elah, and Naam. + + of Elah: + +The son +16 + +Kenaz. + +The sons of Jehallelel: + +17 + +Ziph, Ziphah, Tiria, and Asarel. + +The sons of Ezrah: + +Jether, Mered, Epher, and Jalon. + + h + +18 + +And Mered’s wife Bithiah gave birth + to +Miriam, Shammai, and Ishbah the father +of Eshtemoa. +These were the children +of Pharaoh’s daughter Bithiah. + + j + +i + +Mered also took a Judean +birth to Jered the father of Gedor, Heber +the father of Soco, and Jekuthiel the father +of Zanoah. + + wife, who gave + +19 + +The sons of Hodiah’s wife, the sister +k +of Naham, were the fathers of Keilah the +Garmite and of Eshtemoa the Maacathite. + +the founder + +a 3 + +Now Jabez was more honorable than his + +These were of the father b 4 + +c 7 +LXX (see also Vulgate); Hebrew +e 13 + +pain +bly elsewhere +shim, for they were craftsmen +Hebrew for +gave birth +i 18 +lah the Garmite, and Eshtemoa the Maacathite + +distress +Alternate MT reading; the other alternate (see also Vulgate) reads + +and Meonothai +g 15 +Vulgate and some LXX; Hebrew does not include +Judahite +. + means + +valley of craftsmen + +k 19 +Hebrew + +. The Hebrew + +Ge-harashim + +j 18 + + or + +. + +Or + +Izhar + +d 9 Jabez +; also in verses 5, 12, 14, 17, 18, and possi- +Ge-hara- + sounds like the +she +sons +. +were the father of Kei- + +h 17 +Literally + +f 14 + +. + +Literally + +This statement is at the end of verse 18 in the Hebrew. + +Or + +Or + + 20 + +The sons of Shimon: + +Amnon, Rinnah, Ben-hanan, and Tilon. + +The descendants of Ishi: +21 + +Zoheth and Ben-zoheth. + +The sons of Shelah son of Judah: + +22 + +Er the father of Lecah, Laadah the father +of Mareshah and the clans of the linen +workers at Beth-ashbea, +of Cozeba, and Joash and Saraph, who +ruled in Moab and Jashubi-lehem. (These +names are from ancient records.) +These +were the potters who lived at Netaim and +Gederah. They lived there in the service +of the king. + +Jokim, the men +23 + +The Descendants of Simeon + +24 + +a +The descendants of Simeon: +25 +Nemuel, Jamin, Jarib, Zerah, + + and Shaul. + +The sons of Shaul: + +26 + +27 + +Shallum, Mibsam, and Mishma. + +The sons of Mishma: + +Hammuel, Zaccur, and Shimei. + +28 + +29 + +Shimei had sixteen sons and six daughters, +but his brothers did not have many children, +so their whole clan did not become as nu- +merous as the sons of Judah. +They lived in +30 +Beersheba, Moladah, Hazar-shual, +Bilhah, +31 +Bethuel, Hormah, Ziklag, +Ezem, Tolad, +Beth-marcaboth, Hazar-susim, Beth-biri, +and Shaaraim. These were their cities until +the reign of David. +And their villages were +Etam, Ain, Rimmon, Tochen, and Ashan— +five towns— +and all their surrounding vil- +lages as far as Baal. + These were their +settlements, and they kept a genealogical +34 +record: + +32 + +33 + +b + +35 + +Meshobab, Jamlech, Joshah son of + +36 + +Joel, Jehu son of Joshibiah + +Amaziah, +(son of Seraiah, son of Asiel), +37 +Jaakobah, Jeshohaiah, Asaiah, Adiel, +Jesimiel, Benaiah, +and Ziza son of +Shiphi (son of Allon, son of Jedaiah, son +of Shimri, son of Shemaiah). + +Elioenai, + +38 + +39 + +These men listed by name were the lead- +ers of their clans. Their families increased +greatly, +and they journeyed to the en- +trance of Gedor, to the east side of the valley, + +Zohar + +a 24 Zerah +Baalath + +c 41 + is a variant of + +cherem +d 6 + +1 Chronicles 5:10 | 375 + +40 + +in search of pasture for their flocks. +There +they found rich, good pasture, and the land +was spacious, peaceful, and quiet; for some +41 +Hamites had lived there formerly. + + c + +These who were noted by name came in +the days of Hezekiah king of Judah. They at- +tacked the Hamites in their dwellings as well +as the Meunites who were there, devoting +them to destruction + even to this day. Then +they settled in their place, because there was +And five hundred +pasture for their flocks. +of these Simeonites led by Pelatiah, Neariah, +Rephaiah, and Uzziel, the sons of Ishi, went +and struck down the rem- +to Mount Seir +nant of the Amalekites who had escaped. +And they have lived there to this day. + +43 + +42 + +The Descendants of Reuben + +5 + +These were the sons of Reuben the firstborn +of Israel. Though he was the firstborn, his +birthright was given to the sons of Joseph son of +Israel, because Reuben defiled his father’s bed. +2 +So he is not reckoned according to birthright. +And though Judah prevailed over his brothers +and a ruler came from him, the birthright be- +The sons of Reuben, the +longed to Joseph. +firstborn of Israel: +4 +Hanoch, Pallu, Hezron, and Carmi. + +3 + +The descendants of Joel: + +5 +Shemaiah his son, Gog his son, Shimei his son, + d +6 +Micah his son, Reaiah his son, Baal his son, +and Beerah his son, whom Tiglath-pileser + +king of Assyria carried into exile. + +7 + +His +Beerah was a leader of the Reubenites. +relatives by their clans are recorded in their ge- +nealogy: + +8 + +Jeiel the chief, Zechariah, +and Bela son of Azaz, +the son of Shema, the son of Joel. They settled +9 +in Aroer and as far as Nebo and Baal-meon. +They also settled in the east as far as the edge +of the desert that extends to the Euphrates +River, because their livestock had increased in +10 +the land of Gilead. + +During the days of Saul they waged war +against the Hagrites, who were defeated at +their hands, and they occupied the dwellings of +the Hagrites throughout the region east of +b 33 +Gilead. + +Forms of the Hebrew + +them or by giving them as an offering. + + refer to the giving over of things or persons to the LORD, either by destroying +; also in verse 26 +Hebrew + +, a variant spelling of + +; see Genesis 46:10 and Exodus 6:15. + +Tilgath-pilneser + +Heb.; some LXX manuscripts (see also Josh. 19:8) + +Tiglath-pileser + + 376 | 1 Chronicles 5:11 + +The Descendants of Gad + +11 + +The descendants of Gad lived next to the +Reubenites in the land of Bashan, as far as +12 +Salecah: + +Joel was the chief, Shapham the second, then + +13 +Jaanai and Shaphat, who lived in Bashan. + +14 + +Their kinsmen by families were Michael, +Meshullam, Sheba, Jorai, Jacan, Zia, and Eber— +seven in all. +These were the sons of Abihail +son of Huri, the son of Jaroah, the son of Gilead, +the son of Michael, the son of Jeshishai, the son +of Jahdo, the son of Buz. +Ahi son of Abdiel, the +16 +son of Guni, was head of their family. + +15 + +They lived in Gilead, in Bashan and its towns, +17 +and throughout the pasturelands of Sharon. +All of them were recorded in the genealogies +during the reigns of Jotham king of Judah and +18 +Jeroboam king of Israel. + +The Reubenites, the Gadites, and the half- +tribe of Manasseh had 44,760 warriors— +valiant men who carried the shield and sword, +19 +drew the bow, and were trained for battle. +They waged war against the Hagrites, as well + +20 +as Jetur, Naphish, and Nodab. + +21 + +And because they cried out to God in battle, +they were helped against their enemies, and +the Hagrites and all their allies were delivered +into their hands. Because they put their trust in +God, He answered their prayers. +They seized +the livestock of the Hagrites—50,000 camels, +22 +250,000 sheep, and 2,000 donkeys. They also +took 100,000 captives, +and many others fell +slain, because the battle belonged to God. And +The Half-Tribe of Manasseh +they occupied the land until the exile. +23 + +Now the people of the half-tribe of Manasseh +were numerous. They settled in the land from +Bashan to Baal-hermon (that is, Senir, also +These were the +known as Mount Hermon). +heads of their families: + +24 + +a + +Epher, Ishi, Eliel, Azriel, Jeremiah, Hodaviah, +and Jahdiel. + +25 + +They were mighty men of valor, famous men, +But they were +and heads of their families. +unfaithful to the God of their fathers, and they +prostituted themselves with the gods of the +peoples of the land, whom God had destroyed +a 23 +before them. +Literally + +verse 15; see Ezra 3:2. + +26 + +So the God of Israel stirred up the spirit of +Pul king of Assyria (that is, Tiglath-pileser king +of Assyria) to take the Reubenites, the Gadites, +and the half-tribe of Manasseh into exile. And +he brought them to Halah, Habor, Hara, and the +The Descendants of Levi +river of Gozan, where they remain to this day. + +6 + +The sons of Levi: + +2 +Gershon, Kohath, and Merari. + +The sons of Kohath: + +3 + +Amram, Izhar, Hebron, and Uzziel. + +The children of Amram: + +Aaron, Moses, and Miriam. + +The sons of Aaron: + +4 +Nadab, Abihu, Eleazar, and Ithamar. + +Eleazar was the father of Phinehas, + +5 +Phinehas was the father of Abishua, + +Abishua was the father of Bukki, + +6 +Bukki was the father of Uzzi, + +Uzzi was the father of Zerahiah, + +7 +Zerahiah was the father of Meraioth, + +Meraioth was the father of Amariah, + +8 +Amariah was the father of Ahitub, + +Ahitub was the father of Zadok, + +9 +Zadok was the father of Ahimaaz, + +Ahimaaz was the father of Azariah, + +10 +Azariah was the father of Johanan, + +Johanan was the father of Azariah, who +served as priest in the temple that Solo- +11 +mon built in Jerusalem, + +Azariah was the father of Amariah, + +12 +Amariah was the father of Ahitub, + +Ahitub was the father of Zadok, + +13 +Zadok was the father of Shallum, + +Shallum was the father of Hilkiah, + +14 +Hilkiah was the father of Azariah, + +Azariah was the father of Seraiah, + +b + +15 + +and Seraiah was the father of +Jehozadak. + +Jehozadak went into captivity when the +LORD sent Judah and Jerusalem into exile by +the hand of Nebuchadnezzar. + is a variant of + +b 14 Jehozadak + +; also in + +Jozadak + +from Bashan to Baal-hermon and Senir and Mount Hermon. + + 16 + +a +The sons of Levi: +17 +Gershom, + + Kohath, and Merari. + +These are the names of the sons of + +Gershom: +18 + +Libni + + and Shimei. + +The sons of Kohath: + +19 + +Amram, Izhar, Hebron, and Uzziel. + +The sons of Merari: + +Mahli and Mushi. + +These are the clans of the Levites +according to their fathers: + +20 + +listed + +Of Gershom: + +21 + +Libni his son, Jahath his son, Zimmah his +son, +son, and Jeatherai his son. + +Joah his son, Iddo his son, Zerah his + +22 + +The descendants of Kohath: + +23 + + b + +Amminadab his son, Korah his son, Assir +24 + his +his son, +Tahath his son, Uriel +son, Assir his son, +his son, Uzziah his son, and Shaul his son. + +Elkanah his son, Ebiasaph + +25 + +The descendants of Elkanah: + +26 + +c + +27 + + d + +e + +Elkanah his son, + +Amasai, Ahimoth, +Zophai his son, Nahath his son, +his son, Jeroham his son, and Elkanah his +son. + +Eliab + +28 + +The sons of Samuel: + +f + +29 + +Joel his firstborn and Abijah his second +son. + +48 + +The descendants of Merari: + +30 + +Mahli, Libni his son, Shimei his son, Uzzah +his son, +son, and Asaiah his son. + +Shimea his son, Haggiah his + +The Temple Musicians + +31 + +32 + +These are the men David put in charge of the +music in the house of the LORD after the ark +They ministered with song be- +rested there. +fore the tabernacle, the Tent of Meeting, until +Solomon built the house of the LORD in Jerusa- +lem. And they performed their duties according +These are the +to the regulations given them. +a 16 Gershom +men who served, together with their sons. +asaph +The sons of Elkanah: +e 27 + +; also in verse 37; see Exodus 6:24. + + is a variant of + +d 27 Eliab + +Gershon + +c 26 + +33 + +1 Chronicles 6:53 | 377 + +From the Kohathites: + +34 + +g + +36 + +35 + +Heman the singer, the son of Joel, the son +of Samuel, +son of Elkanah, +the +the son of Jeroham, the son of Eliel, + the +the son of Zuph, the son +son of Toah, +of Elkanah, the son of Mahath, the son of +Amasai, +the son of Elkanah, the son +of Joel, the son of Azariah, the son of Zeph- +aniah, +the son of Tahath, the son +of Assir, the son of Ebiasaph, the son of +Korah, +the son of Izhar, the son of Ko- +hath, the son of Levi, the son of Israel. + +37 + +38 + +39 + +Heman’s kinsman was Asaph, who served + +at his right hand: + +40 + +41 + + the son of Malchijah, + +Asaph the son of Berechiah, the son of +h +Shimea, +the son of Michael, the son +of Baaseiah, +the +42 +son of Ethni, the son of Zerah, the son +of Adaiah, +the son of Ethan, the son of +Zimmah, the son of Shimei, +the son +of Jahath, the son of Gershom, the son of +Levi. + +43 + +44 + +On the left were their kinsmen, the sons of + +Merari: + +45 + +46 + +Ethan the son of Kishi, the son of Abdi, the +son of Malluch, +the son of Hashabiah, the +son of Amaziah, the son of Hilkiah, +the +son of Amzi, the son of Bani, the son of +Shemer, +the son of Mahli, the son of Mu- +shi, the son of Merari, the son of Levi. + +47 + +The Descendants of Aaron + +i + +49 + +Their fellow Levites were assigned to every +kind of service of the tabernacle, the house of +God. +But Aaron and his sons did all the work of +the Most Holy Place. + They presented the offer- +ings on the altar of burnt offering and on the +altar of incense to make atonement for Israel, ac- +cording to all that Moses the servant of God had +commanded. + +50 + +These were the descendants of Aaron: + +51 + +52 + +Eleazar his son, Phinehas his son, Abishua +his son, +Bukki his son, Uzzi his son, Ze- +53 +Meraioth his son, Ama- +rahiah his son, +riah his son, Ahitub his son, +Zadok his +Abi- +son, and Ahimaaz his son. +Elkanah. + +b 23 Ebiasaph + +; similarly in verses 17, 20, 43, 62, and 71; see v. 1. + + is a variant of +Some Heb. manuscripts, LXX, and Syriac; most Heb. manuscripts +f 28 + +and Samuel his son + +Eliel + + is also called + +; see verse 34. Both of these are other names for Elihu + +The sons of Samuel: the firstborn Vashni, then Abiah + +; see 1 Samuel 1:1. + +Hebrew; some LXX manuscripts include +Eliab + +g 34 Eliel +and some LXX manuscripts (also verse 33 and 1 Samuel 8:2); Heb. + +; see verses 33–34 and 1 Samuel 1:19–20. +h 40 + +See Syriac + +Maaseiah + +i 49 + +the Holy of Holies + + is also called + +; see verse 27. Both of these are other names for Elihu + +manuscripts; some Hebrew manuscripts, one LXX manuscript, and Syriac + +; see 1 Samuel 1:1. +Or + +. +Most Hebrew + + 378 | 1 Chronicles 6:54 + +Territories for the Levites +(Numbers 35:1–8 ; Joshua 21:1–45) + +54 + +Now these were the territories assigned to the +descendants of Aaron from the Kohathite clan for +their settlements, because the first lot fell to +55 +them: + +56 + +57 + +They were given Hebron in the land of Ju- +But +dah and its surrounding pasturelands. +the fields and villages around the city were +So the de- +given to Caleb son of Jephunneh. +scendants of Aaron were given Hebron (a +c +59 +58 +city of refuge), Libnah, + Jattir, Eshtemoa, + and Beth- + Juttah, +Ashan, + Debir, +60 +shemesh, together with their pasturelands. + +Hilen, + +d + +a + +b + +e + +And from the tribe of Benjamin they were +given Gibeon, + Geba, Alemeth, and Anathoth, +together with their pasturelands. So they had +61 +thirteen cities in all among their families. + +From the clan of the half-tribe of Manasseh +they were given Golan in Bashan and also +72 +Ashtaroth, together with their pasturelands. + +73 + +From the tribe of Issachar they were given +Ramoth, and Anem, to- + +Kedesh, Daberath, +74 +gether with their pasturelands. + +75 + +From the tribe of Asher they were given +Hukok, and Rehob, to- + +Mashal, Abdon, +76 +gether with their pasturelands. + +And from the tribe of Naphtali they were +given Kedesh in Galilee, Hammon, and Kir- +iathaim, together with their pasturelands. + +77 + +The Merarites (the rest of the Levites) + +received the following: + +h +From the tribe of Zebulun they were given +Rimmono and Tabor, + together with their +78 +pasturelands. + +To the rest of the Kohathites, ten cities +were allotted from the half-tribe of Manas- +seh. + +f + +62 + +The Gershomites, + + according to their clans, +were allotted thirteen cities from the tribes +of Issachar, Asher, Naphtali, and Manasseh in +63 +Bashan. + +The Merarites, according to their clans, were +allotted twelve cities from the tribes of Reuben, +64 +Gad, and Zebulun. + +65 +So the Israelites gave to the Levites these cities +They assigned by lot +and their pasturelands. +the cities named above from the tribes of Judah, +66 +Simeon, and Benjamin. + +And some of the clans of the Kohathites were +given cities from the tribe of Ephraim for their + g +territory: + +67 + +They were given Shechem (a city of refuge) +68 +with its pasturelands in the hill country of +69 +Jokmeam, Beth-horon, +Ephraim, and Gezer, +Aijalon, and Gath-rimmon, together with + +70 +their pasturelands. + +And from the half-tribe of Manasseh +the rest of the clans of the Kohathites were +given Aner and Bileam, together with their +pasturelands. + +71 + +From the tribe of Reuben east of the Jor- +dan opposite Jericho they were given Bezer +in the wilderness, Jahzah, +Kedemoth, and +80 +Mephaath, together with their pasturelands. + +79 + +i + +81 + +And from the tribe of Gad they were given +Ramoth in Gilead, Mahanaim, +Heshbon, +and Jazer, together with their pasturelands. + +The Descendants of Issachar + +7 + +j +The sons of Issachar: + +Tola, Puah, + +2 +all. + + Jashub, and Shimron—four in + +The sons of Tola: + +Uzzi, Rephaiah, Jeriel, Jahmai, Ibsam, and +Shemuel, the heads of their families. In the +days of David, 22,600 descendants of Tola +were numbered in their genealogies as +mighty men of valor. + + k + +3 + +The son + + of Uzzi: + +Izrahiah. + +The sons of Izrahiah: + +4 +Michael, Obadiah, Joel, and Isshiah. All five +In addition to them, +of them were chiefs. +according to their genealogy, they had +36,000 troops for battle, for they had many +wives and children. + +b 58 + +d 59 + +Some Hebrew + +Syriac + is a variant of +LXX, Syriac, and parallel text at Joshua 21:17; MT +(they were given) Jok- +As in +j 1 Puah + +; also in verse 71; see 1 Chronicles 23:7. + +; see Joshua 21:16. + +Jahaz + +g 67 + +sons + is a variant of + +LXX + +; see Numbers 21:23. + + is + +a 57 + +Hilez + +The Gershomites received the following: +As in the parallel text at Joshua 21:13; Hebrew +; parallel text at Joshua 21:15 + +manuscripts; MT +and the parallel text at Joshua 21:16; MT does not include +does not include + is a variant of +neam, Kartah, Rimmono, and Tabor +the parallel text at Joshua 21:21; Hebrew +Puvah + +f 62 Gershomites + +Gibeon, + +c 59 Ashan +e 60 + +Juttah, +Gershonites + +i 78 Jahzah +k 3 + +; see Joshua 21:34. + +were given the cities of refuge: Hebron, Libnah +Holon + +Ain + +They were given the cities of refuge: Shechem h 77 + +a variant of + +; see Genesis 46:13 and Numbers 26:23. + +Hebrew + +; also in verses 10 and 17 + + 5 + +Their kinsmen belonging to all the families +of Issachar who were mighty men of valor +totaled 87,000, as listed in their genealogies. + +The Descendants of Benjamin + +6 + +The three sons of Benjamin: +7 +Bela, Becher, and Jediael. + +The sons of Bela: + +Ezbon, Uzzi, Uzziel, Jerimoth, and Iri, heads +of their families—five in all. There were +22,034 mighty men of valor listed in their +genealogies. + +8 + +The sons of Becher: + +9 + +Zemirah, Joash, Eliezer, Elioenai, Omri, Jer- +emoth, Abijah, Anathoth, and Alemeth; all +these were Becher’s sons. +Their genealo- +gies were recorded according to the heads +of their families—20,200 mighty men of +valor. + +10 + +The son of Jediael: + +Bilhan. + +The sons of Bilhan: + +11 + +Jeush, Benjamin, Ehud, Chenaanah, Zethan, +Tarshish, and Ahishahar. +All these sons +of Jediael were heads of their families, +12 +mighty men of valor; there were 17,200 fit +for battle. +The Shuppites and Huppites +were descendants of Ir, and the Hushites +The Descendants of Naphtali +were descendants of Aher. + +13 + +a + +The sons of Naphtali: + + b + +The Descendants of Manasseh + +Jahziel, +scendants of Bilhah. + + Guni, Jezer, and Shallum + +14 + +—the de- + +The descendants of Manasseh: + +Asriel through his Aramean concubine. She +15 +also gave birth to Machir the father of Gilead. + +Machir took a wife from among the Hup- +pites and Shuppites. The name of his sister +was Maacah. + +Another descendant was named Zelophehad, +16 +who had only daughters. + +Machir’s wife Maacah gave birth to a son, +and she named him Peresh. His brother was +Jahzeel +named Sheresh, and his sons were Ulam and + +b 13 + +a 13 Jahziel + + is a variant of + +see Genesis 46:24 and Numbers 26:49. +g 29 Beth-shean +scripts; Hebrew does not include + + is a variant of + +c 23 Beriah +; see Gen. 46:24. +his son +Beth-shan + +e 27 + +Non + +1 Chronicles 7:31 | 379 + +17 +Rekem. + +The son of Ulam: + +Bedan. + +18 + +These were the sons of Gilead son of Machir, +the son of Manasseh. +His sister Hammo- +lecheth gave birth to Ishhod, Abiezer, and +19 +Mahlah. + +And these were the sons of Shemida: + +The Descendants of Ephraim + +Ahian, Shechem, Likhi, and Aniam. + +20 + +The descendants of Ephraim: + +21 + +Shuthelah, Bered his son, Tahath his son, +Eleadah his son, Tahath his son, +Zabad his +son, and Shuthelah his son. + +Ezer and Elead were killed by the natives of +Gath, because they went down to steal their +22 +livestock. + +c + +Their father Ephraim mourned for many +23 +days, and his relatives came to comfort him. +And again he slept with his wife, and she +conceived and gave birth to a son. So he +named him Beriah, + because tragedy had +His daughter was +come upon his house. +Sheerah, who built Lower and Upper Beth- +25 +horon, as well as Uzzen-sheerah. + +24 + +d + +26 +his son, + +Additionally, Rephah was his son, Resheph + Telah his son, Tahan his son, +Ladan his son, Ammihud his son, Elishama + his son, and Joshua his son. + +28 +his son, + +Nun + +27 + + e + + f + +29 + +Their holdings and settlements included +Bethel and its villages, Naaran to the east, +Gezer and its villages to the west, and She- +chem and its villages as far as Ayyah + and its +g +And along the borders of Manas- +villages. +seh were Beth-shean, + Taanach, Megiddo, +and Dor, together with their villages. The de- +scendants of Joseph son of Israel lived in +these towns. + +The Descendants of Asher + +30 + +The children of Asher: + +Imnah, Ishvah, Ishvi, Beriah, and their sister +31 +Serah. + +The sons of Beriah: + +Heber, as well as Malchiel, who was the +father of Birzaith. +tragedy + +disaster + +d 25 + +Shillem + +Most Heb. manuscripts; some Heb. and LXX manuscripts +f 28 Ayyah + +; + + sounds like the Heb. for + + or + is another name for + +Gaza + +. + +Some LXX manu- + +; see also LXX. + +Or + +. +; see 1 Samuel 31:10 and 2 Samuel 21:12. + + 380 | 1 Chronicles 7:32 + +32 + +11 + +Heber was the father of Japhlet, Shomer, + +33 +and Hotham, and of their sister Shua. + +The sons of Japhlet: + +34 + +Pasach, Bimhal, and Ashvath. These were +Japhlet’s sons. + +The sons of Shemer: + +a + +Ahi, Rohgah, + + Hubbah, and Aram. + + b + +The sons of his brother Helem: + +Zophah, Imna, Shelesh, and Amal. + +The sons of Zophah: +37 +Suah, Harnepher, Shual, Beri, Imrah, + +c + +Bezer, Hod, Shamma, Shilshah, Ithran, + +and Beera. + +The sons of Jether: + +Jephunneh, Pispa, and Ara. + +The sons of Ulla: + +Arah, Hanniel, and Rizia. + +35 + +36 + +38 + +39 + +40 + +All these were the descendants of Asher— +heads of their families, choice and mighty +men of valor, and chiefs among the leaders. +The number of men fit for battle, recorded in +Genealogy from Benjamin to Saul +their genealogies, was 26,000. + +8 + +2 + +Benjamin was the +father of Bela his +firstborn, Ashbel the second, Aharah the +Nohah the fourth, and Rapha the fifth. +4 + +d + +3 +third, + +The sons of Bela: +5 + +6 + +Addar, Gera, Abihud, +Ahoah, + +Abishua, Naaman, + +Gera, Shephuphan, and Huram. + +These were the descendants of Ehud who +were the heads of the families living in Geba +and were exiled to Manahath: + +7 + +Naaman, Ahijah, and Gera, who carried +them into exile and who was the father of +Uzza and Ahihud. + +e + +8 + +9 + +Shaharaim had sons in the country of Moab +after he had divorced his wives Hushim and +His sons by his wife Hodesh: +Baara. + +10 + +a 34 + +Jobab, Zibia, Mesha, Malcam, +Sachia, and Mirmah. These were his sons, +heads of families. +Or + +The sons of his brother Shemer: Rohgah + +c 37 Ithran + +Hotham + +Jeuz, + +e 7 + +Ehud +another name for +h 31 Zecher +also 1 Chronicles 9:35); Hebrew + is likely a variant of + +j 33 Esh-baal +l 34 Micah + +; see v. 7. + +Or + +Mica + + is also called + +; see v. 32. + +; note that +The father of Gibeon lived +Zechariah + +Ish-bosheth + +9:38. +4:4. + +He also had sons by Hushim: + +12 + +Abitub and Elpaal. + +The sons of Elpaal: + +13 + +Eber, Misham, Shemed (who built Ono +and Lod with its villages), +and Beriah +and Shema (who were the heads of fami- +lies living in Aijalon and who drove out +the inhabitants of Gath). + +15 + +14 + +16 + +Ahio, Shashak, Jeremoth, + +Zebadiah, +Michael, Ishpah, and Joha + +Arad, Eder, +17 +were the sons of Beriah. +18 + +Zebadiah, Meshullam, Hizki, Heber, +Ishmerai, Izliah, and Jobab were the + +20 + +19 +sons of Elpaal. +21 + +Jakim, Zichri, Zabdi, + +Elienai, Zillethai, + +Eliel, +22 +were the sons of Shimei. + +Adaiah, Beraiah, and Shimrath +23 + +24 + +Ishpan, Eber, Eliel, + +Abdon, Zichri, + +Hananiah, Elam, Anthothijah, + +Iphdeiah, and Penuel were the sons of + +26 +Shashak. +27 + +Shamsherai, Shehariah, Athaliah, +Jaareshiah, Elijah, and Zichri were the + +28 +sons of Jeroham. + +25 +Hanan, + +All these were heads of families, the +chiefs according to their genealogies, and +29 +they lived in Jerusalem. + + f + +30 +Jeiel the father of Gibeon lived + +h + +31 + +His wife’s name was Maacah, +was his firstborn son, then Zur, Kish, Baal, +Nadab, +Gedor, Ahio, Zecher, +Mikloth, who was the father of Shimeah. +They too lived alongside their relatives in +Jerusalem. + +The Family of Saul + +and + +i + + in Gibeon. +g +and Abdon +32 + +33 + +Ner was the father of Kish, Kish was the +j +father of Saul, and Saul was the father of Jona- +than, Malchishua, Abinadab, and Esh-baal. + +34 + +k +The son of Jonathan: + +l + + and Merib-baal was the + +35 + +Merib-baal, +father of Micah. + +The sons of Micah: + +m + +Shemer + +Shomer +Pithon, Melech, Tarea, + +Jether + +b 35 Helem + and Ahaz. + +Gera the father of + +and Gera, that is Heglam, who was the father of Uzza and Ahihud. + + is a variant of + + is possibly a variant of + +g 30 + +; see v. 38. + +i 32 Shimeah +Some LXX manuscripts include +k 34 Merib-baal + +; see 1 Chronicles 9:37. +; see 2 Samuel 2:8. + +m 35 Tarea + + is a variant of +Tahrea + is also called + +d 3 +f 29 + + is possibly + +; see v. 32. +Possibly +Ner +Some LXX manuscripts (see +Shimeam +Mephibosheth + +; see 1 Chronicles 9:36. +; see 1 Chronicles + +; see 2 Samuel + + is a variant of + +; see 2 Samuel 9:12. + + is a variant of + +; see 1 Chronicles 9:41. + + 36 + + a + +10 + +1 Chronicles 9:21 | 381 + +Ahaz was the father of Jehoaddah, + + was the father of Alemeth, + +Jehoaddah +Azmaveth, and Zimri, and Zimri was the + b +37 +father of Moza. + +Moza was the father of Binea. Raphah + +38 +was his son, Eleasah his son, and Azel his son. + +Azel had six sons, and these were their + +names: + +Azrikam, Bocheru, Ishmael, Sheariah, +Obadiah, and Hanan. All these were the +sons of Azel. + +39 + +The sons of his brother Eshek: +40 + +Ulam was his firstborn, Jeush second, and +Eliphelet third. +The sons of Ulam were +mighty men of valor, archers, and they had +many sons and grandsons—150 in all. +The People of Jerusalem +All these were the descendants of Benjamin. + +9 + +So all Israel was recorded in the genealogies +written in the Book of the Kings of Israel. But +Judah was exiled to Babylon because of their un- +2 +faithfulness. + +Now the first to resettle their own property in +their cities were Israelites, priests, Levites, and +3 +temple servants. + +c + +Some of the descendants of Judah, Benjamin, +4 + +Ephraim, and Manasseh lived in Jerusalem: + +Uthai son of Ammihud, the son of +Omri, the son of Imri, the son of Bani, +5 +a descendant of Perez son of Judah. + +From the priests: +11 +Jedaiah, Jehoiarib, and Jachin; + +Azariah son of Hilkiah, the son of +Meshullam, the son of Zadok, the son +of Meraioth, the son of Ahitub, the chief +12 +official of God’s temple; + +Adaiah son of Jeroham, the son of + +Pashhur, the son of Malchijah; + +d + +Maasai son of Adiel, the son of Jahzerah, +the son of Meshullam, the son of Meshil- +13 +lemith, + + the son of Immer; + +and 1,760 of their relatives, the heads +of their families, able men for the work of +the service of the house of God. + +14 + +From the Levites: + +Shemaiah son of Hasshub, the son of +Azrikam, the son of Hashabiah, a +15 +descendant of Merari; + +Bakbakkar, Heresh, Galal, and Mat- +taniah son of Mica, the son of Zichri, the +16 +son of Asaph; + +Obadiah son of Shemaiah, the son of + +Galal, the son of Jeduthun; + +and Berechiah son of Asa, the son of +Elkanah, who lived in the villages of the +Netophathites. + +17 + +These were the gatekeepers: + +Shallum, Akkub, Talmon, Ahiman, and +their relatives. + +18 + +From the Shilonites: + +Asaiah the firstborn and his sons. + +From the Zerahites: + +Jeuel and 690 relatives. + +6 + +7 + +From the Benjamites: + +Sallu son of Meshullam, the son of +8 +Hodaviah, the son of Hassenuah; + +Ibneiah son of Jeroham; + +19 + +e +Shallum + +Shallum was their chief; +he was previ- +ously stationed at the King’s Gate on the +east side. These were the gatekeepers +from the camp of the Levites. +son of Kore, the son of Ebiasaph, +of Korah, and his relatives from the +Korahites were assigned to guard the +thresholds of the Tent, just as their +fathers had been assigned to guard the +20 +entrance to the dwelling of the LORD. + + the son + +Elah son of Uzzi, the son of Michri; + +Meshullam son of Shephatiah, the son of +9 +Reuel, the son of Ibnijah; + +In earlier times Phinehas son of Eleazar + +had been in charge of the gatekeepers, +21 +and the LORD was with him. + +and 956 of their relatives according to +their genealogy. All these men were heads +Jarah +of their families. + +a 36 Jehoaddah + +Jadah +Nethinim + +c 2 + +e 19 Ebiasaph +see 1 Chronicles 9:43. + + is a variant of + + or +Abiasaph +Hebrew + + is a variant of + +; see Exodus 6:24. + +d 12 Meshillemith +; see 1 Chronicles 9:42. + +Zechariah son of Meshelemiah was the +gatekeeper at the entrance to the Tent of +b 37 Raphah +Meeting. + +Rephaiah + +Meshillemoth + + is a variant of + + is a variant of + +; +; see Nehemiah 11:13. + + 382 | 1 Chronicles 9:22 + +22 + +The number of those chosen to be gate- +keepers at the thresholds was 212. They +were registered by genealogy in their +villages. David and Samuel the seer had +appointed them to their positions of trust. + +23 + +25 + +So they and their descendants were assigned +24 +to guard the gates of the house of the LORD—the +The gatekeepers were +house called the Tent. +stationed on the four sides: east, west, north, and +Their relatives came from their villages +south. +26 +at fixed times to serve with them for seven-day +But the four chief gatekeepers, who +periods. +were Levites, were entrusted with the rooms and +the treasuries of the house of God. +They would +spend the night stationed around the house of +God, because they were responsible for guarding +28 +it and opening it every morning. + +27 + +29 + +Some of them were in charge of the articles +used in worship, to count them whenever they +Others were put +were brought in or taken out. +in charge of the furnishings and other articles of +the sanctuary, as well as the fine flour, wine, oil, +And some of the sons +frankincense, and spices. +31 +of the priests mixed the spices. + +30 + +32 + +A Levite named Mattithiah, the firstborn son of +Shallum the Korahite, was entrusted with baking +Some of their Kohathite relatives +the bread. +were responsible for preparing the rows of the +33 +showbread every Sabbath. + +Those who were musicians, the heads of +Levite families, stayed in the temple chambers +and were exempt from other duties because they +All these were +were on duty day and night. +heads of Levite families, chiefs according to their +The Descendants of Saul +genealogies, and they lived in Jerusalem. + +34 + +35 + + a + +Jeiel the father + + of Gibeon lived in +36 +Gibeon. His wife’s name was Maacah. + +37 + +Abdon was his firstborn son, then Zur, + +Kish, Baal, Ner, Nadab, +38 +Zechariah, and Mikloth. + +Gedor, Ahio, +b + +Mikloth was the father of Shimeam. +They too lived alongside their relatives +39 +in Jerusalem. + +Ner was the father of Kish, Kish was the +b 38 Shimeam + +father of Saul, and Saul was the father of + +the founder + +a 35 + +Shimeah + +Or + +LXX and 1 Chronicles 8:35); Hebrew +brew manuscripts; some Hebrew manuscripts and LXX +see 1 Chronicles 8:36. + + is a variant of + +e 43 Rephaiah + +Raphah + +Jonathan, Malchishua, Abinadab, and +40 +Esh-baal. + +The son of Jonathan: + +41 + +Merib-baal, who was the father of +Micah. + +The sons of Micah: +42 +Pithon, Melech, Tahrea, and Ahaz. + +c + + d + +Ahaz was the father of Jarah; Jarah + +was the father of Alemeth, Azmaveth, and +43 +Zimri; and Zimri was the father of Moza. + + e + +Moza was the father of Binea. + +44 + +Rephaiah +and Azel his son. + + was his son, Elasah his son, + +And Azel had six sons, and these were + +their names: + +Azrikam, Bocheru, Ishmael, Sheariah, +Obadiah, and Hanan. These were the sons +of Azel. + +Saul’s Overthrow and Death +(1 Samuel 31:1–6 ; 2 Samuel 1:1–16) + +10 + +Now the Philistines fought against Israel, +and the men of Israel fled before them, + +2 +and many fell slain on Mount Gilboa. + +3 + +The Philistines followed hard after Saul and his +sons, and they killed Saul’s sons Jonathan, +When the battle in- +Abinadab, and Malchishua. +tensified against Saul, the archers overtook him +4 +and wounded him. + +Then Saul said to his armor-bearer, “Draw your +sword and run me through with it, or these un- +circumcised men will come and torture me!” + +But his armor-bearer was terrified and refused +5 +to do it. So Saul took his own sword and fell on it. + +6 + +When his armor-bearer saw that Saul was dead, +So Saul +he too fell on his own sword and died. +died together with his three sons and all his +The Philistines Possess the Towns +house. +(1 Samuel 31:7–10) + +7 + +When all the Israelites in the valley saw that the +army had fled and that Saul and his sons had +died, they abandoned their cities and ran away. +So the Philistines came and occupied their cities. + +c 41 + +Pithon, Melech, and Tahrea + is a variant of + +Jadah; Jadah + +; see 1 Chronicles 8:32. +Jarah + +Tahrea + +Tarea + +d 42 + +Vulgate and Syriac (see also +Jadah +. + +Jehoaddah +Most He- + + is a variant of + +; note that + +; note that +; see 1 Chronicles 8:37. + + and + + are variants of + +; + + 8 + +9 + +The next day, when the Philistines came to strip +the dead, they found Saul and his sons fallen on +They stripped Saul, cut off his +Mount Gilboa. +head, took his armor, and sent messengers +throughout the land of the Philistines to proclaim +the news in the temple of their idols and among +They put his armor in the temple +their people. +of their gods and hung his head in the temple of +Jabesh-gilead’s Tribute to Saul +Dagon. +(1 Samuel 31:11–13) + +10 + +11 + +12 + +When all the people of Jabesh-gilead heard +about everything the Philistines had done to +all their men of valor set out and re- +Saul, +trieved the bodies of Saul and his sons and +brought them to Jabesh. And they buried their +bones under the oak + in Jabesh and fasted seven +13 +days. + + a + +So Saul died for his unfaithfulness to the LORD, +because he did not keep the word of the LORD +14 +and even consulted a medium for guidance, +and he failed to inquire of the LORD. So the +LORD put him to death and turned the kingdom +David Anointed King of All Israel +over to David son of Jesse. +(2 Samuel 5:1–5) + +11 + +b + +2 + +Then all Israel came together to David at +Hebron and said, “Here we are, your own + while Saul +flesh and blood. +was king, you were the one who led Israel out +and brought them back. And the LORD your God +said, ‘You will shepherd My people Israel, and +3 +you will be ruler over them.’ + +Even in times past, + +” + +So all the elders of Israel came to the king at +Hebron, where David made a covenant with +them before the LORD. And they anointed him +king over Israel, according to the word of the +David Conquers Jerusalem (2 Sam. 5:6–11) +LORD through Samuel. +4 + +Then David and all the Israelites marched to +Jerusalem (that is, Jebus), where the Jebusites +5 +inhabited the land. + +The people of Jebus said to David, “You will + +never get in here.” + +Nevertheless, David captured the fortress of Zion +6 +(that is, the City of David). + +Now David had said, “Whoever is the first +to strike down a Jebusite will become chief +terebinth +a 12 +commander.” +the Three + +For some time + +great tree + +c 8 + +b 2 +e 12 Dodo +Or + +Or + + or + +1 Chronicles 11:19 | 383 + +And Joab son of Zeruiah went up first, and he be- +7 +came the chief. + +8 + + c + +So David took up residence in the fortress; that +is why it was called the City of David. +He built +up the city around it, from the supporting ter- +races + to the surrounding wall, while Joab re- +9 +stored the rest of the city. + +And David became greater and greater, for the + +David’s Mighty Men (2 Samuel 23:8–39) +LORD of Hosts was with him. + +10 + +Now these were the chiefs of David’s mighty +men, who, together with all Israel, bolstered and +strengthened his kingdom, according to the +This is the +word of the LORD concerning Israel. +list of David’s mighty men: + +11 + + d + +Jashobeam son of Hachmoni was chief of the of- + he wielded his spear against three hun- +ficers; + e +12 +dred men, whom he killed at one time. + +13 + +Next in command was Eleazar son of Dodo + +14 + +the Ahohite, one of the three mighty men. +He +was with David at Pas-dammim when the Philis- +tines gathered there for battle. At a place with a +field full of barley, the troops fled from the Phil- + f +istines. +But Eleazar and David stationed them- +selves + in the middle of the field and defended it. +They struck down the Philistines, and the LORD +15 +brought about a great victory. + +16 + +Three of the thirty chief men went down to Da- +vid, to the rock at the cave of Adullam, while a +company of Philistines was encamped in the Val- +At that time David was in the +ley of Rephaim. +17 +stronghold, and the garrison of the Philistines +David longed for water and +was at Bethlehem. +said, “Oh, that someone would get me a drink of +18 +water from the well near the gate of Bethlehem!” + +19 + +So the Three broke through the Philistine +camp, drew water from the well at the gate of +Bethlehem, and brought it back to David. But he +refused to drink it; instead, he poured it out to +saying, “Far be it from me, my God, +the LORD, +to do this! How can I drink the blood of these men +who risked their lives?” Because they had +brought it at the risk of their lives, David refused +to drink it. + +; see 2 Samuel 23:8. + + is a variant of + +; see 1 Chr. 27:4. + +Literally + +the Millo + +Such were the exploits of the three mighty men. +of +But they stationed themselves +; some LXX manuscripts + +of the Thirty + +f 14 +Or + +d 11 + +Dodai +Hebrew + + 384 | 1 Chronicles 11:20 + +20 + +a + +Now Abishai, the brother of Joab, was chief of +the Three, + and he wielded his spear against +21 +three hundred men, killed them, and won a name +He was doubly honored +along with the Three. +above the Three, and he became their com- +mander, even though he was not included among +22 +the Three. + +c + +b + +23 + +And Benaiah son of Jehoiada was a man of +valor from Kabzeel, a man of many exploits. He + and on a +struck down two champions of Moab, +snowy day he went down into a pit and killed a +lion. +He also struck down an Egyptian, a huge + Although the Egyptian had +man five cubits tall. +a spear like a weaver’s beam in his hand, Benaiah +went against him with a club, snatched the spear +from his hand, and killed the Egyptian with his +own spear. +These were the exploits of Benaiah +son of Jehoiada, who won a name along with the +three mighty men. +He was most honored +among the Thirty, but he did not become one of +the Three. And David appointed him over his +26 +guard. + +24 + +25 + +Now these were the mighty men: + +Asahel the brother of Joab, +d +27 +Elhanan son of Dodo of Bethlehem, + +Shammoth the Harorite, + +28 +Helez the Pelonite, + +Ira son of Ikkesh the Tekoite, + +29 +Abiezer the Anathothite, + +Sibbecai the Hushathite, + +30 +Ilai the Ahohite, + +Maharai the Netophathite, + + e + +31 +Heled son of Baanah the Netophathite, + +Ithai + + son of Ribai from Gibeah of the + +Benjamites, +32 +Benaiah the Pirathonite, + + f + + g + + h +Hurai + +33 +Abiel + + from the brooks + + of Gaash, + +i + + the Arbathite, + +Azmaveth the Baharumite, + +34 +Eliahba the Shaalbonite, + + j + +the sons of Hashem + +35 +Jonathan son of Shagee the Hararite, + + the Gizonite, + k + +36 + +Hepher the Mecherathite, + +37 +Ahijah the Pelonite, + +Hezro the Carmelite, + +38 +Naarai son of Ezbai, + +Joel the brother of Nathan, + +39 +Mibhar son of Hagri, + +Zelek the Ammonite, + +Naharai the Beerothite, the armor-bearer of +40 +Joab son of Zeruiah, +Ira the Ithrite, +41 +Gareb the Ithrite, + +Uriah the Hittite, +42 +Zabad son of Ahlai, + +Adina son of Shiza the Reubenite, chief of + +43 +the Reubenites, and the thirty with him, + +Hanan son of Maacah, +44 +Joshaphat the Mithnite, + +Uzzia the Ashterathite, + +Shama and Jeiel the sons of Hotham the +45 +Aroerite, + +Jediael son of Shimri and his brother Joha + +46 +the Tizite, + +Eliel the Mahavite, + +Jeribai and Joshaviah, the sons of Elnaam, +47 +Ithmah the Moabite, + +The Mighty Men Join David at Ziklag + +Eliel, Obed, and Jaasiel the Mezobaite. + +12 + +Now these were the men who came to +David at Ziklag, while he was still ban- +ished from the presence of Saul son of Kish (they +2 +were among the mighty men who helped him in +they were archers using both the right +battle; +and left hands to sling stones and shoot arrows; +and they were Saul’s kinsmen from Benjamin): + +3 + +Ahiezer their chief and Joash, who were + +the sons of Shemaah the Gibeathite; + +Jeziel and Pelet, the sons of Azmaveth; + +Beracah; +4 +Jehu the Anathothite; + +Ahiam son of Sachar +the Thirty + + the Hararite, + +b 22 + +a 20 + +Eliphal son of Ur, +Hebrew; Syriac +inches or 229 cm tall. +h 32 Abiel +is a variant of +j 34 Hashem + +Ittai + +Abi-albon +; see 2 Samuel 23:29. +Jashen + +d 27 Shammoth the Harorite +f 32 Hurai + +; also in verse 21 + +Or + + is a variant of + + is a variant of + +; see 2 Samuel 23:31. +; see LXX and 2 Samuel 23:32. + +Ishmaiah the Gibeonite, a mighty man +among the Thirty and a leader over the +c 23 5 cubits +two sons of Ariel of Moab +Thirty; +Shammah the Harodite +Hiddai +i 33 Baharumite + +; see 2 Samuel 23:25. +Barhumite +; see 2 Samuel 23:30. +Sharar + is a variant of + +k 35 Sachar + +Or + +e 31 Ithai + is approximately 7 feet 6 +g 32 + +from the ravines + + is a variant of + is a variant of + +; see 2 Samuel 23:31. +; see 2 Samuel 23:33. + + is a variant of + + Jeremiah, Jahaziel, Johanan, and Jozabad the +5 +Gederathite; + +Eluzai, Jerimoth, Bealiah, Shemariah, and + +6 +Shephatiah the Haruphite; + +Elkanah, Isshiah, Azarel, Joezer, and + +7 +Jashobeam, who were Korahites; + +8 + +and Joelah and Zebadiah, the sons of + +Jeroham from Gedor. + +Some Gadites defected to David at his strong- +hold in the wilderness. They were mighty men of +valor, trained for battle, experts with the shield +and spear, whose faces were like the faces of li- +ons and who were as swift as gazelles on the +mountains: + +9 + +10 + +Ezer the chief, Obadiah the second in + +command, Eliab the third, +12 +the fourth, Jeremiah the fifth, +13 +the sixth, Eliel the seventh, +eighth, Elzabad the ninth, +tenth, and Machbanai the eleventh. + +11 +Mishmannah +Attai +Johanan the +Jeremiah the + +14 + +These Gadites were army commanders, the +least of whom was a match for a hundred, and the +15 +greatest for a thousand. + +These are the ones who crossed the Jordan in +the first month when it was overflowing all its +banks, and they put to flight all those in the val- +16 +leys, both to the east and to the west. + +17 + +Other Benjamites and some men from Judah +And Da- +also came to David in his stronghold. +vid went out to meet them, saying, “If you have +come to me in peace to help me, my heart will be +united with you; but if you have come to betray +me to my enemies when my hands are free of vi- +olence, may the God of our fathers see it and +18 +judge you.” + +Then the Spirit came upon Amasai, the chief of + +the Thirty, and he said: + +“We are yours, O David! + +We are with you, O son of Jesse! + +Peace, peace to you, + +and peace to your helpers, +for your God helps you.” + +So David received them and made them leaders +19 +of his troops. + +1 Chronicles 12:34 | 385 + +20 + +Philistine rulers consulted and sent David away, +saying, “It will cost us our heads if he defects to +When David went to Ziklag, +his master Saul.”) +these men of Manasseh defected to him: + +Adnah, Jozabad, Jediael, Michael, Jozabad, +Elihu, and Zillethai, chiefs of thousands in +Manasseh. + +21 + +They helped David against the raiders, for they +were all mighty men of valor and commanders in +22 +the army. + +For at that time men came to David day after +day to help him, until he had a great army, like +David’s Army Grows at Hebron +the army of God. +23 + +Now these are the numbers of men armed for +battle who came to David at Hebron to turn +Saul’s kingdom over to him, in accordance with +the word of the LORD: + +24 + +From Judah: 6,800 armed troops bearing + +25 +shields and spears. + +From Simeon: 7,100 mighty men of valor, + +26 +ready for battle. + +27 + +From Levi: 4,600, + +28 + +including Jehoiada, + +leader of the house of Aaron, with 3,700 +and Zadok, a mighty young man of +men, +valor, with 22 commanders from his own +29 +family. + +From Benjamin, the kinsmen of Saul: +3,000, most of whom had remained loyal to +30 +the house of Saul up to that time. + +From Ephraim: 20,800 mighty men of + +31 +valor, famous among their own clans. + + a + +From the half-tribe of Manasseh: + + 18,000 + +designated by name to come and make +32 +David king. + +From Issachar, men who understood the +times and knew what Israel should do: 200 +chiefs with all their kinsmen at their com- +33 +mand. + +From Zebulun: 50,000 fit for service, +trained for battle with all kinds of weapons +of war, who with one purpose were devoted +34 +to David. + +b + +Some from Manasseh defected to David when +he went with the Philistines to fight against Saul. +(They did not help the Philistines because the +a 31 + +From Naphtali: 1,000 commanders, +accompanied by 37,000 men with shield +and spear. + +to David + +b 33 + +That is, the half-tribe of Manasseh west of the Jordan + +LXX; Hebrew does not include + +. + + 386 | 1 Chronicles 12:35 + +35 + +36 + +From Dan: 28,600 prepared for battle. + +From Asher: 40,000 fit for service, + +37 +prepared for battle. + +And from east of the Jordan, from Reuben, + +Gad, and the half-tribe of Manasseh there: +120,000 armed with every kind of weapon +of war. + +38 + +All these men of war, arrayed for battle, came +to Hebron fully determined to make David king +over all Israel. And all the rest of the Israelites +39 +were of one mind to make David king. + +40 + +They spent three days there eating and drink- +ing with David, for their relatives had provided +for them. +And their neighbors from as far away +as Issachar, Zebulun, and Naphtali came bringing +food on donkeys, camels, mules, and oxen— +abundant supplies of flour, fig cakes and raisin +cakes, wine and oil, oxen and sheep. Indeed, +David Fetches the Ark (2 Samuel 6:1–4) +there was joy in Israel. + +13 + +2 + +Then David conferred with all his lead- +ers, the commanders of thousands and of +And he said to the whole assembly of +hundreds. +Israel, “If it seems good to you, and if this is of the +LORD our God, let us send word far and wide to +the rest of our brothers in all the land of Israel, +and also to the priests and Levites in their cities +Then +and pasturelands, so that they may join us. +let us bring back the ark of our God, for we did +4 +not inquire of Him + + in the days of Saul.” + +3 + + a + + b + +And because this proposal seemed right to +5 +all the people, the whole assembly agreed to it. +So David assembled all Israel, from the River + in Egypt to Lebo-hamath, to bring the + +Shihor +6 +ark of God from Kiriath-jearim. + +c + +7 + +David and all Israel went up to Baalah of +Judah (that is, Kiriath-jearim) to bring up from +there the ark of God the LORD, who is enthroned +between the cherubim—the ark that is called by +So they carried the ark of God from +the Name. +the house of Abinadab on a new cart, with Uzzah +Uzzah Touches the Ark (2 Samuel 6:5–11) +and Ahio guiding the cart. +8 + +harps and lyres, with tambourines, cymbals, and +9 +trumpets. + +d + +10 + +When they came to the threshing floor of +Chidon, + Uzzah reached out and took hold of the +And the +ark, because the oxen had stumbled. +anger of the LORD burned against Uzzah, and He +struck him down because he had put his hand on +11 +the ark. So he died there before God. + +Then David became angry because the LORD +had burst forth against Uzzah. So he named that +12 +place Perez-uzzah, + + as it is called to this day. + +e + +13 + +14 + +That day David feared God and asked, “How +So he +can I ever bring the ark of God to me?” +did not move the ark with him to the City of Da- +vid; instead, he took it aside to the house of Obed- +Thus the ark of God remained +edom the Gittite. +with the family of Obed-edom in his house for +three months, and the LORD blessed his house- +David’s Family Grows (2 Samuel 5:12–16) +hold and everything he owned. + +14 + +Now Hiram king of Tyre sent envoys to +David, along with cedar logs, stonema- +2 +sons, and carpenters, to build a palace for him. +And David realized that the LORD had estab- +lished him as king over Israel and had highly +exalted his kingdom for the sake of His people +3 +Israel. + +5 + +And David took more wives in Jerusalem and +4 +became the father of more sons and daughters. +f +These are the names of the children born to him + Shobab, Nathan, Solo- +Nogah, Nepheg, + +in Jerusalem: Shammua, +7 +Ibhar, Elishua, Elpelet, +mon, +Two Victories over the Philistines +Elishama, Beeliada, +Japhia, +(2 Samuel 5:17–25) + + and Eliphelet. + +6 + +g + +8 + +When the Philistines heard that David had been +anointed king over all Israel, they all went in +search of him; but David learned of this and went +9 +out to face them. + +10 + +Now the Philistines had come and raided the +So David inquired of God, +Valley of Rephaim. +“Should I go up against the Philistines? Will You +deliver them into my hand?” + +of it + +David and all the Israelites were celebrating be- +fore God with all their might, with songs and on +a 3 +between the cherubim +Or +d 9 Chidon +f 4 Shammua + +Shimea + +b 5 + +Hebrew +; or + is a variant of + +from the Shihor +the ark of God, the LORD, who is enthroned between the cherubim, where His Name is called +Nacon + +the ark of God, which is called by the Name of the LORD who is enthroned + +e 11 Perez-uzzah + +c 6 + +Or + +g 7 Beeliada + +outbreak against Uzzah +Eliada + +“Go,” replied the LORD, “for I will deliver them +into your hand.” + +; see 2 Samuel 6:6. + + means + + is a variant of + +; see 1 Chronicles 3:5. + + is a variant of + +. +; see 2 Samuel 5:16. + + 11 + +11 + +1 Chronicles 15:24 | 387 + +a + +12 + +So David and his men went up to Baal-perazim, +where he defeated the Philistines and said, “Like +a bursting flood, God has burst out against my +enemies by my hand.” So they called that place +There the Philistines aban- +Baal-perazim. +doned their gods, and David ordered that they be +13 +burned in the fire. +14 + +b + +15 + +Once again the Philistines raided the valley. +So David again inquired of God, who answered +him, “Do not march up after them, but circle +around them and attack them in front of the bal- +As soon as you hear the sound of +sam trees. +marching in the tops of the balsam trees, move +out to battle, because this will mean that God has +gone out before you to strike the camp of the +16 +Philistines.” + +So David did as God had commanded him, and +they struck down the army of the Philistines all +the way from Gibeon to Gezer. +And David’s +fame went out into every land, and the LORD +Preparing to Move the Ark (2 Sam. 6:12–15) +caused all nations to fear him. + +17 + +15 + +David constructed buildings for himself +in the City of David, and he prepared a +2 +place for the ark of God and pitched a tent for it. +Then David said, “No one but the Levites may +carry the ark of God, because the LORD has cho- +sen them to carry the ark of the LORD and to min- +3 +ister before Him forever.” + +4 + +And David assembled all Israel in Jerusalem to +bring up the ark of the LORD to the place he had +Then he gathered together the +prepared for it. +descendants of Aaron and the Levites: + +5 + +From the Kohathites, Uriel the chief and + +6 +120 of his relatives; + +from the Merarites, Asaiah the chief and + +7 +220 of his relatives; + +c + +from the Gershomites, + +8 +130 of his relatives; + + Joel the chief and + +from the Elizaphanites, Shemaiah the chief + +9 +and 200 of his relatives; + +from the Hebronites, Eliel the chief and 80 + +10 +of his relatives; + +and from the Uzzielites, Amminadab the + +a 11 Baal-perazim + +The Lord Bursts Out + +Gershonites + +chief and 112 of his relatives. + means +Obed-edom, Jeiel, and Azaziah + +. +; see 1 Chronicles 23:7. + +variant of +20 and 1 Chronicles 16:5); most Hebrew manuscripts +g 20 Alamoth +scripts + + or + +i 23 + +b 14 +d 18 + +12 + +David summoned the priests Zadok and Abi- +Joel, +athar and the Levites Uriel, Asaiah, +And he said +Shemaiah, Eliel, and Amminadab. +to them, “You are the heads of the Levitical fami- +lies. You and your relatives must consecrate +yourselves so that you may bring the ark of the +LORD, the God of Israel, to the place I have pre- +It was because you Levites were +pared for it. +not with us the first time that the LORD our God +burst forth in anger against us. For we did not +The Priests and Levites Carry the Ark +consult Him about the proper order.” +14 + +13 + +15 + +So the priests and Levites consecrated them- +selves to bring up the ark of the LORD, the God of +And the Levites carried the ark of God +Israel. +on their shoulders with the poles, as Moses had +commanded in accordance with the word of the +16 +LORD. + +d + +17 + +David also told the leaders of the Levites to +appoint their relatives as singers to lift up their +voices with joy, accompanied by musical instru- +So the +ments—harps, lyres, and cymbals. +Levites appointed Heman son of Joel; from his +brothers, Asaph son of Berechiah; from their +18 +brothers the Merarites, Ethan son of Kushaiah; +and with them their brothers next in rank: + Jaaziel, Shemiramoth, Jehiel, Unni, +Zechariah, +Eliab, Benaiah, Maaseiah, Mattithiah, Eliphelehu, +e +Mikneiah, and the gatekeepers Obed-edom and +19 +Jeiel. + +f +The musicians Heman, Asaph, and Ethan were +to sound the bronze cymbals. +Zechariah, Aziel, +Shemiramoth, Jehiel, Unni, Eliab, Maaseiah, and +Benaiah were to play the harps according to Ala- +And Mattithiah, Eliphelehu, Mikneiah, +moth. +Obed-edom, Jeiel, and Azaziah were to lead the +music with lyres according to Sheminith. +Che- +naniah the head Levite was the director of the + i +23 +music because he was highly skilled. + +21 + +20 + +22 + +h + +g + +24 + +Berechiah and Elkanah were to be guardians + +Shebaniah, Joshaphat, Nethanel, +of the ark. +Amasai, Zechariah, Benaiah, and Eliezer—the +priests—were to blow the trumpets before the +ark of God. Obed-edom and Jehiah were also to +be guardians of the ark. + +aspen trees + +poplar trees + +c 7 Gershomites + +Obed-edom, Jeiel, and Ozias + +Or + or +Zechariah son of +Several Hebrew manuscripts and most LXX manuscripts (see also verse +h 21 Sheminith + +; also in verse 15 + +f 20 Aziel + or + +Zechariah, Ben, + +Jaaziel + +e 18 + + is a + +gatekeepers + + is a variant of + +Hebrew; some LXX manu- +; see verse 18. + is probably a musical term; + + is probably a musical or liturgical term; here and in Psalm 46:1. + +here and in Psalm 6:1 and Psalm 12:1. + +Literally + +; also in verse 24 + + 388 | 1 Chronicles 15:25 + +Moving the Ark to Jerusalem + +8 + +25 + +26 + +So David, the elders of Israel, and the com- +manders of thousands went with rejoicing to +bring the ark of the covenant of the LORD from +And because God +the house of Obed-edom. +helped the Levites who were carrying the ark of +the covenant of the LORD, they sacrificed seven +27 +bulls and seven rams. + +28 + +Now David was dressed in a robe of fine linen, +as were all the Levites who were carrying the +ark, as well as the singers and Chenaniah, the di- +rector of music for the singers. David also wore a +So all Israel brought up the ark of +linen ephod. +the covenant of the LORD with shouting, with the +sounding of rams’ horns and trumpets, and with +Michal’s Contempt for David (2 Samuel 6:16) +cymbals and the music of harps and lyres. +29 + +As the ark of the covenant of the LORD was en- +tering the City of David, Saul’s daughter Michal +looked down from a window and saw King David +dancing and celebrating, and she despised him in +A Tent for the Ark (2 Samuel 6:17–19) +her heart. + +16 + +2 + +So they brought the ark of God and +placed it inside the tent that David had +pitched for it. And they presented burnt offerings +When David +and peace offerings before God. +had finished sacrificing the burnt offerings and +peace offerings, he blessed the people in the +Then he distributed to every +name of the LORD. +man and woman of Israel a loaf of bread, a date +4 +cake, + + and a raisin cake. + +3 + +a + +David appointed some of the Levites to minister +before the ark of the LORD, to celebrate, to give +5 +thanks, and to praise the LORD, the God of Israel. +Asaph was the chief, Zechariah was second, +then Jeiel, Shemiramoth, Jehiel, Mattithiah, Eliab, +Benaiah, Obed-edom, and Jeiel. They were to play +the harps and lyres, while Asaph sounded the +and the priests Benaiah and Jahaziel +cymbals +blew the trumpets regularly before the ark of the +David’s Psalm of Thanksgiving +covenant of God. +(Psalm 105:1–15) + +6 + +7 + +On that day David first committed to Asaph and +his associates this song of thanksgiving to the +LORD: +a 3 + +a portion of meat + +b 15 + +“Give thanks to the LORD; call upon + +His name; + +9 + +make known His deeds among the + +nations. + +Sing to Him, sing praises to Him; + +10 + +tell of all His wonders. + +Glory in His holy name; + +11 + +let the hearts of those who seek the LORD + +rejoice. + +Seek out the LORD and His strength; + +12 + +seek His face always. + +Remember the wonders He has done, +His marvels, and the judgments He + +13 + +has pronounced, +O offspring of His servant Israel, + +14 + +O sons of Jacob, His chosen ones. + +He is the LORD our God; + b + +15 + +His judgments carry throughout the earth. + His covenant forever, + +Remember + +16 + +the word He ordained for a thousand + +generations— + +the covenant He made with Abraham, +and the oath He swore to Isaac. +He confirmed it to Jacob as a decree, + +17 + +18 + +to Israel as an everlasting covenant: + +‘I will give you the land of Canaan + +19 + +as the portion of your inheritance.’ + +When they were few in number, + +20 + +few indeed, and strangers in the land, + +21 + +they wandered from nation to nation, +from one kingdom to another. + +He let no man oppress them; + +22 + +He rebuked kings on their behalf: + +‘Do not touch My anointed ones! +Do no harm to My prophets!’ + +Sing to the LORD, All the Earth +(Psalm 96:1–13) + +23 + +Sing to the LORD, all the earth. + +24 + +Proclaim His salvation day after day. + +25 + +Declare His glory among the nations, +His wonders among all peoples. + +For great is the LORD, and greatly to be + +26 + +praised; + +He is to be feared above all gods. +For all the gods of the nations are idols, + +27 + +but it is the LORD who made the heavens. + +Splendor and majesty are before Him; +strength and joy fill His dwelling. + +He remembers + +Or + +Hebrew; some LXX manuscripts + +; see Psalm 105:8. + + 28 + +42 + +1 Chronicles 17:13 | 389 + +Ascribe to the LORD, O families of the + +29 + +nations, + +ascribe to the LORD glory and strength. +Ascribe to the LORD the glory due His name; +bring an offering and come before Him. + +30 + +Worship the LORD in the splendor of His + +holiness; + +tremble before Him, all the earth. + +The world is firmly established; + +31 + +it cannot be moved. + +Let the heavens be glad, +and the earth rejoice. + +32 + +Let them say among the nations, + +‘The LORD reigns!’ + +Let the sea resound, +and all that fills it; + +33 + +let the fields exult, + +and all that is in them. + +Then the trees of the forest will sing for joy + +34 + +before the LORD, + +35 + +for He is coming to judge the earth. +Give thanks to the LORD, for He is good; + endures forever. + +His loving devotion + + a + +Then cry out: ‘Save us, O God of our salvation; +gather and deliver us from the nations, +that we may give thanks to Your holy name, + +that we may glory in Your praise.’ + +36 + +Blessed be the LORD, the God of Israel, +from everlasting to everlasting.” + +Then all the people said, “Amen!” and “Praise the +Worship before the Ark +LORD!” +37 + +38 + +So David left Asaph and his associates there +before the ark of the covenant of the LORD, to +minister there regularly according to the daily +along with Obed-edom and his +requirements, +sixty-eight relatives. Obed-edom son of Jedu- +39 +thun, and also Hosah, were to be gatekeepers. + +b + +Heman and Jeduthun had with them trumpets +and cymbals for the music and instruments for + And the sons of Jeduthun were +the songs of God. +43 +stationed at the gate. + +Then all the people departed for their homes, +God’s Covenant with David +and David returned home to bless his household. +(2 Samuel 7:1–17) + +17 + +After David had settled into his palace, +he said to Nathan the prophet, “Here I +am, living in a house of cedar, while the ark of the +2 +covenant of the LORD is under a tent.” + +And Nathan replied to David, “Do all that is in + +3 +your heart, for God is with you.” + +4 + + c + +5 + +But that night the word of God came to Nathan, +“Go and tell My servant David that this +saying, +is what the LORD says: You are not the one to +For I have +build Me a house in which to dwell. +not dwelt in a house from the day I brought Israel +6 + until this day, but I have moved +up out of Egypt +In all +from tent to tent and dwelling to dwelling. +My journeys with all the Israelites, have I ever + I appointed to shep- +asked any of the leaders +herd My people, ‘Why haven’t you built Me a +7 +house of cedar?’ + + d + +8 + +Now then, you are to tell My servant David that +this is what the LORD of Hosts says: I took you +from the pasture, from following the flock, to be +I have been +the ruler over My people Israel. +with you wherever you have gone, and I have cut +off all your enemies from before you. Now I will +make for you a name like that of the greatest in +9 +the land. + +And I will provide a place for My people Israel +and will plant them so that they may dwell in a +place of their own and be disturbed no more. No +longer will the sons of wickedness oppress them +and have done +as they did at the beginning +since the day I appointed judges over My people +Israel. And I will subdue all your enemies. + +10 + +11 + +40 + +And David left Zadok the priest and his fellow +priests before the tabernacle of the LORD at the +high place in Gibeon +to regularly present burnt +offerings to the LORD on the altar of burnt offer- +ings, morning and evening, according to all that +was written in the Law of the LORD, which He +With them +had commanded Israel to keep. +were Heman, Jeduthun, and the rest of those cho- +sen and designated by name to give thanks to the +chesed +a 34 +LORD, for “His loving devotion endures forever.” +love + +kindness + +Forms of the Hebrew +the sacred music +range of meaning includes + +c 5 Out of Egypt + +, + +41 + +Moreover, I declare to you that the LORD will +And when your days are +build a house for you. +fulfilled and you go to be with your fathers, I will +raise up your descendant after you, one of your +He +own sons, and I will establish his kingdom. +will build a house for Me, and I will establish his +I will be his Father, and he will +throne forever. +instruments for +mercy +goodness + are translated here and in most cases throughout the Scriptures as +. + is implied, but not included in the Hebrew; see 2 Samuel 7:6. + +loving devotion +b 42 +d 6 + +loyalty to a covenant + +; see v. 10. + +faithfulness + +judges + +, and + +; the + +Or + +Or + +13 + +12 + +, + +, + +, + + 390 | 1 Chronicles 17:14 + +14 + +be My son. And I will never remove My loving +devotion from him as I removed it from your pre- +But I will set him over My house and +decessor. +My kingdom forever, and his throne will be es- +15 +tablished forever.” + +So Nathan relayed to David all the words of + +David’s Prayer of Thanksgiving +this entire revelation. +(2 Samuel 7:18–29) + +16 + +a + +17 + +Then King David went in, sat before the LORD, +and said, “Who am I, O LORD God, and what is my +house, that You have brought me this far? +And +as if this was a small thing in Your eyes, O God, +You have spoken about the future of the house of +Your servant and have regarded me as a man of +What more +great distinction, +can David say to You for honoring Your servant? + For the +For You know Your servant, +sake of Your servant and according to Your own +heart, You have accomplished this great thing +20 +and made known all these great promises. + + O LORD God. + +O LORD. + +18 + +19 + +b + +O LORD, there is none like You, and there is no +21 +God but You, according to everything we have +heard with our own ears. +And who is like Your +people Israel—the one nation on earth whom +God went out to redeem as a people for Himself? +You made a name for Yourself through great and +awesome wonders by driving out nations from +before Your people, whom You redeemed from +For You have made Your people Israel +Egypt. +Your very own forever, and You, O LORD, have +23 +become their God. + +22 + +24 + +And now, O LORD, let the word You have spo- +ken concerning Your servant and his house be es- +tablished forever. Do as You have promised, +so +that Your name will be established and magni- +fied forever when it is said, ‘The LORD of Hosts, +the God of Israel, is God over Israel.’ And may the +house of Your servant David be established be- +For You, my God, have revealed to +fore You. +Your servant that You will build a house for him. +Therefore Your servant has found the courage to +26 +pray before You. + +25 + +27 + +And now, O LORD, You are God! And You have +So +promised this goodness to Your servant. +now You have been pleased to bless the house of +a 17 +Your servant, that it may continue forever before +ant. 19 O LORD, +Or +garrisons +g 9 Tou +clude + +and have shown me future generations +d 6 + +the LORD saved David + +Hebrew +Toi +Or + +c 3 +e 6 + +his hand + +b 19 + +. + +You. For You, O LORD, have blessed it, and it will +David’s Triumphs +be blessed forever.” +(2 Samuel 8:1–14 ; Psalm 60:1–12) + +18 + +Some time later, David defeated the Phil- +istines, subdued them, and took Gath and + +2 +its villages from the hand of the Philistines. + +David also defeated the Moabites, and they be- +3 +came subject to David and brought him tribute. + + c + +As far as Hamath, David also defeated King +Hadadezer of Zobah, who had marched out to es- +4 + along the Euphrates River. +tablish his dominion +David captured from him a thousand chariots, +seven thousand charioteers, and twenty thou- +sand foot soldiers, and he hamstrung all the +5 +horses except a hundred he kept for the chariots. + + d + +6 + +When the Arameans of Damascus came to help +King Hadadezer of Zobah, David struck down +Then he +twenty-two thousand of their men. + in Aram of Damascus, and the +placed garrisons + e +Arameans became subject to David and brought +him tribute. So the LORD made David victorious +7 +wherever he went. + + f + +8 + +And David took the gold shields that belonged +to the officers of Hadadezer and brought them to + and Cun, cities of +Jerusalem. +Hadadezer, David took a large amount of bronze, +with which Solomon made the bronze Sea, the + g +9 +pillars, and various bronze articles. + +And from Tibhath + + h + +10 + +When King Tou + + of Hamath heard that David +had defeated the entire army of Hadadezer king + to greet +he sent his son Hadoram +of Zobah, +King David and bless him for fighting and defeat- +ing Hadadezer, who had been at war with Tou. +Hadoram brought all kinds of articles of gold and +and King David dedicated +silver and bronze, +these to the LORD, along with the silver and gold +he had carried off from all these nations—from +Edom and Moab, and from the Ammonites, Phil- +12 +istines, and Amalekites. + +11 + +Moreover, Abishai son of Zeruiah struck down +13 +eighteen thousand Edomites in the Valley of Salt. +He placed garrisons in Edom, and all the +Edomites were subject to David. So the LORD +made David victorious wherever he went. + + 18 . . . For You know Your serv- + + is a variant of + +; also in verse 10; see 2 Samuel 8:9. + +LXX and Vulgate (see also 2 Samuel 8:6 and Syriac); Hebrew does not in- + +See 2 Samuel 7:20; many translators +f 8 Tibhath +h 10 Hadoram + +Tebah +Joram + +; also in verse 13 + + is a variant of + is a variant of + +; see 2 Samuel 8:8 LXX. +; see 2 Samuel 8:10. + + David’s Officers (2 Samuel 8:15–18) + +14 + +Thus David reigned over all Israel and admin- +istered justice and righteousness for all his peo- +15 +ple: + +Joab son of Zeruiah was over the army; + +16 +Jehoshaphat son of Ahilud was the recorder; + + a + +Zadok son of Ahitub and Ahimelech + + son + + b + +of Abiathar were priests; +17 +Shavsha + + was the scribe; + +Benaiah son of Jehoiada was over the + +Cherethites and Pelethites; +and David’s sons were chief officials at the +David’s Messengers Disgraced (2 Sam. 10:1–8) +king’s side. + +19 + +2 + +Some time later, Nahash king of the Am- +monites died and was succeeded by his +son. +And David said, “I will show kindness to +Hanun son of Nahash, because his father showed +kindness to me.” + +3 + +So David sent messengers to console Hanun +concerning his father. But when David’s servants +arrived in the land of the Ammonites to console +the princes of the Ammonites said to Ha- +him, +nun, “Just because David has sent you comfort- +ers, do you really believe he is showing respect +for your father? Have not his servants come to +you to explore the land, spy it out, and overthrow +4 +it?” + +So Hanun took David’s servants, shaved their +beards, cut off their garments at the hips, and +5 +sent them away. + +When someone came and told David about his +men, he sent messengers to meet them, since the +men had been thoroughly humiliated. The king +told them, “Stay in Jericho until your beards have +6 +grown back, and then return.” + + c + +d + +7 + +When the Ammonites realized that they had +become a stench to David, Hanun and the Ammo- + to hire for +nites sent a thousand talents of silver +themselves chariots and horsemen from Aram- +naharaim, +So they + Aram-maacah, and Zobah. +hired for themselves thirty-two thousand chari- +ots, as well as the king of Maacah with his troops, +who came and camped near Medeba while the +a 16 +Seraiah +b 16 Shavsha +ents +the two rivers +River + +, + is approximately 37.7 tons or 34.2 metric tons of silver. + + is also called + +f 16 Shophach + +Shobach + +Shisha + +Sheva + +, and + +1 Chronicles 19:19 | 391 + +Ammonites were mustered from their cities and +8 +marched out for battle. +9 + +On hearing this, David sent Joab and the entire +The Ammonites marched +army of mighty men. +out and arrayed themselves for battle at the en- +trance to the city, while the kings who had come +David Defeats Ammon and Aram +stayed by themselves in the open country. +(2 Samuel 10:9–19) + +10 + +When Joab saw the battle lines before him and +behind him, he selected some of the best men of +11 +Israel and arrayed them against the Arameans. +And he placed the rest of the troops under the +command of his brother Abishai, who arrayed +12 +them against the Ammonites. + +13 + +“If the Arameans are too strong for me,” said +Joab, “then you will come to my rescue. And if the +Ammonites are too strong for you, then I will +Be strong and let us fight +come to your rescue. +bravely for our people and for the cities of our +14 +God. May the LORD do what is good in His sight.” + +15 + +So Joab and his troops advanced to fight the +When the Am- +Arameans, who fled before him. +monites saw that the Arameans had fled, they too +fled before Joab’s brother Abishai, and they en- +16 +tered the city. So Joab went back to Jerusalem. + + f + +When the Arameans saw that they had been +e +defeated by Israel, they sent messengers to bring +more Arameans from beyond the Euphrates, +with Shophach +17 +army leading them. + + the commander of Hadadezer’s + +18 + +When this was reported to David, he gathered +all Israel, crossed the Jordan, advanced toward +the Arameans, and arrayed for battle against +them. When David lined up to engage them in +But the Arame- +battle, they fought against him. +ans fled before Israel, and David killed seven +thousand of their charioteers and forty thousand +foot soldiers. He also killed Shophach the com- +19 +mander of their army. + +When Hadadezer’s subjects saw that they +had been defeated by Israel, they made peace +with David and became subject to him. So the Ar- +ameans were unwilling to help the Ammonites +anymore. + +Abimelech + +Some Hebrew manuscripts, Vulgate, and Syriac (see also 2 Samuel 8:17); most Hebrew manuscripts +Aram-naharaim + +d 6 + +; see 2 Samuel 8:17, 2 Samuel 20:25, and 1 Kings 4:3. + +That is, Mesopotamia; + +c 6 1,000 tal- +Aram of + +e 16 + means + +the + +, likely the region between the Euphrates and Balih Rivers in northwestern Mesopotamia. + +Hebrew + + is a variant of + +; also in verse 18; see 2 Samuel 10:16. + + 392 | 1 Chronicles 20:1 + +The Capture of Rabbah (2 Samuel 12:26–31) + +20 + +a + +In the spring, + at the time when kings +march out to war, Joab led out the army +and ravaged the land of the Ammonites. He came +to Rabbah and besieged it, but David remained in +Jerusalem. And Joab attacked Rabbah and demol- +2 +ished it. + + c +Then David took the crown from the head of + +b + + It was found to weigh a talent of gold + +their king. +and was set with precious stones, and it was +placed on David’s head. And David took a great +3 +amount of plunder from the city. + + d + +David brought out the people who were there +and put them to work + with saws, iron picks, and +axes. And he did the same to all the Ammonite +cities. Then David and all his troops returned to +Battles against the Philistines +Jerusalem. +(2 Samuel 21:15–22) + +4 + +Some time later, war broke out with the Philis- +e +tines at Gezer. At that time Sibbecai the + a descendant of the +Hushathite killed Sippai, +5 +Rephaim, + + and the Philistines were subdued. + +f + + g + +Once again there was a battle with the Philis- +tines, and Elhanan son of Jair killed Lahmi the +brother + of Goliath the Gittite, the shaft of whose +6 +spear was like a weaver’s beam. + +And there was also a battle at Gath, where there +was a man of great stature with six fingers on +each hand and six toes on each foot—twenty- +7 +four in all. He too was descended from Rapha, +and when he taunted Israel, Jonathan the son of + +8 +David’s brother Shimei killed him. + +So these descendants of Rapha in Gath fell at the +David’s Military Census +hands of David and his servants. +(Exodus 30:11–16 ; 2 Samuel 24:1–9) + +21 + + h + +2 + +Then Satan + rose up against Israel and +incited David to take a census of Israel. +So David said to Joab and the commanders of +the troops, “Go and count the Israelites from +Beersheba to Dan and bring me a report, so that +3 +I may know their number.” + +are they not all servants of my lord? Why does +my lord want to do this? Why should he bring +4 +guilt on Israel?” + +5 + +Nevertheless, the king’s word prevailed against +Joab. So Joab departed and traveled throughout +And +Israel, and then he returned to Jerusalem. +Joab reported to David the total number of the +troops. In all Israel there were 1,100,000 men +6 +who drew the sword, including 470,000 in Judah. +But Joab did not include Levi and Benjamin in +the count, because the king’s command was de- +Judgment for David’s Sin (2 Samuel 24:10–14) +testable to him. +7 + +This command was also evil in the sight of God; + +8 +so He struck Israel. + +Then David said to God, “I have sinned greatly +because I have done this thing. Now I beg You to +take away the iniquity of Your servant, for I have +9 +acted very foolishly.” +10 + +And the LORD instructed Gad, David’s seer, +“Go and tell David that this is what the LORD +says: ‘I am offering you three options. Choose one +11 +of them, and I will carry it out against you.’ + +” + +12 + + i + +So Gad went and said to David, “This is what +the LORD says: ‘You must choose +between +three years of famine, three months of being + before your enemies and overtaken +swept away +by their swords, or three days of the sword of the +LORD—days of plague upon the land, with the +angel of the LORD ravaging every part of Israel.’ +Now then, decide how I should reply to Him who +13 +sent me.” + +David answered Gad, “I am deeply distressed. +Please, let me fall into the hand of the LORD, for +His mercies are very great; but do not let me fall +A Plague on Israel +into the hands of men.” +(2 Samuel 24:15–17) + +14 + +So the LORD sent a plague upon Israel, and + +15 +seventy thousand men of Israel fell dead. + +Then God sent an angel to destroy Jerusalem, +but as the angel was doing so, the LORD saw it +and relented from the calamity, and He said to +the angel who was destroying the people, +“Enough! Withdraw your hand now!” + +But Joab replied, “May the LORD multiply His +a 1 +troops a hundred times over. My lord the king, + +At the turn of the year + +from the head of Milcom + +b 2 + +c 2 A talent + +Literally + +cut them + +e 4 Sippai +d 3 +nites; see Leviticus 18:21 and 1 Kings 11:7. +g 5 +the Adversary +cuser +verses 6 and 8. + + is a variant of + +Or + +Or + +Or + +Saph + +Elhanan son of Jair the Bethlehemite killed the brother +Or +i 12 + +; see 2 Samuel 21:18. +of fleeing + +. Milcom, also called Molech, was god of the Ammo- +descendants of Rapha + is approximately 75.4 pounds or 34.2 kilograms of gold. +the Ac- + +the giants + +h 1 + +f 4 + +; see also + + in + +; see 2 Samuel 21:19. + +That is, + + or + +Hebrew; LXX and Vulgate + +; see 2 Samuel 24:13. + +  a + +28 + +1 Chronicles 22:10 | 393 + +At that time the angel of the LORD was standing +16 +by the threshing floor of Ornan + + the Jebusite. + + b + +17 + +When David lifted up his eyes and saw the an- +gel of the LORD standing between heaven and +earth, with a drawn sword in his hand stretched +out over Jerusalem, David and the elders, clothed +And David said to +in sackcloth, fell facedown. +God, “Was it not I who gave the order to count the +people? I + am the one who has sinned and acted +wickedly. But these sheep, what have they done? +O LORD my God, please let Your hand fall upon +me and my father’s house, but do not let this +David Builds an Altar (2 Samuel 24:18–25) +plague remain upon Your people.” +18 + +Then the angel of the LORD ordered Gad to tell +David to go up and build an altar to the LORD on +So +the threshing floor of Ornan the Jebusite. +David went up at the word that Gad had spoken +20 +in the name of the LORD. + +19 + +21 + +Now Ornan was threshing wheat when he +turned and saw the angel; and his four sons who +David came to +were with him hid themselves. +Ornan, and when Ornan looked out and saw +David, he left the threshing floor and bowed +22 +facedown before David. + +Then David said to Ornan, “Grant me the site of +this threshing floor, that I may build an altar to +the LORD. Sell it to me for the full price, so that +23 +the plague upon the people may be halted.” + +Ornan said to David, “Take it! May my lord the +king do whatever seems good to him. Look, I will +give the oxen for the burnt offerings, the thresh- +ing sledges for the wood, and the wheat for the +24 +grain offering—I will give it all.” + +“No,” replied King David, “I insist on paying the +full price, for I will not take for the LORD what +belongs to you, nor will I offer burnt offerings +25 +that cost me nothing.” + + c + +26 + + for the site. + +So David paid Ornan six hundred shekels of +gold +And there he built an altar to +the LORD and offered burnt offerings and peace +offerings. He called upon the LORD, who an- +swered him with fire from heaven on the altar of +27 +burnt offering. + +Then the LORD spoke to the angel, who put his + +sword back into its sheath. +Araunah +a 15 Ornan + +c 25 600 shekels + + is a variant of + +DSS and LXX. +probably derived from the Hebrew word for + +. + +At that time, when David saw that the LORD +had answered him at the threshing floor of +29 +Ornan the Jebusite, he offered sacrifices there. +For the tabernacle of the LORD that Moses had +made in the wilderness and the altar of burnt of- +30 +fering were presently at the high place in Gibeon, +but David could not go before it to inquire of +God, because he was afraid of the sword of the +Preparations for the Temple +angel of the LORD. + +22 + +Then David said, “Here shall be the house +of the LORD God, as well as the + +2 +altar of burnt offering for Israel.” + +So David gave orders to gather the foreigners in +the land of Israel, from whom he appointed +stonecutters to prepare finished stones for build- +3 +ing the house of God. + +4 + +David provided a large quantity of iron to make +the nails for the doors of the gateways and for the +fittings, together with more bronze than could be +and more cedar logs than could be +weighed +counted; for the Sidonians and Tyrians had +5 +brought a large quantity of cedar logs to David. + +And David said, “My son Solomon is young and +inexperienced, and the house to be built for the +LORD must be exceedingly magnificent—famous +and glorious throughout all lands. Therefore I +must make preparations for it.” So David made +Solomon Anointed to Build the Temple +lavish preparations before his death. +6 + +Then David called for his son Solomon and in- +structed him to build a house for the LORD, the +7 +God of Israel. + +9 + +8 + +“My son,” said David to Solomon, “it was in my +heart to build a house for the Name of the LORD +but this word of the LORD came to me: +my God, +‘You have shed much blood and waged great +wars. You are not to build a house for My Name +because you have shed so much blood on the +But a son will be born to you +ground before Me. +who will be a man of rest. I will give him rest from +d +all his enemies on every side; for his name will be +10 +Solomon, + and I will grant to Israel peace and +He is the one who will +quiet during his reign. +build a house for My Name. He will be My son, +and I will be his Father. And I will establish the +throne of his kingdom over Israel forever.’ +I, the shepherd, +d 9 Solomon + +b 17 + +; also in verses 18–28; see 2 Samuel 24:16. + +peace + +Or + + is approximately 15.1 pounds or 6.8 kilograms of gold. + + see 2 Samuel 24:17 + sounds like and is + + 394 | 1 Chronicles 22:11 + +11 + +6 + +in building + +may you succeed +12 +of + +Now, my son, may the LORD be with you, and +the house + the LORD your God, as He said you would. +Above all, may the LORD give you insight and +understanding when He puts you in command +over Israel, so that you may keep the Law of +Then you will succeed, if +the LORD your God. +you carefully follow the statutes and ordinances +that the LORD commanded Moses for Israel. +Be strong and courageous. Do not be afraid or +14 +discouraged. + +13 + +b + +a + + 1,000,000 talents of silver, + +Now behold, I have taken great pains to pro- +vide for the house of the LORD—100,000 talents + and bronze +of gold, +and iron too great to be weighed. I have also pro- +vided timber and stone, and you may add to +15 +them. + +16 + +You also have many workers: stonecutters, +masons, carpenters, and men skilled in every +kind of work— +in gold and silver, bronze and +iron—craftsmen beyond number. Now begin the +17 +work, and may the LORD be with you.” + +18 +Then David ordered all the leaders of Israel to +“Is not the LORD your +help his son Solomon: +God with you, and has He not granted you rest on +every side? For He has given the inhabitants of +the land into my hand, and the land has been sub- +dued before the LORD and His people. +Now set +your heart and soul to seek the LORD your God. +Begin building the sanctuary of the LORD God, so +that you may bring the ark of the covenant of the +LORD and the holy articles of God into the temple +The Divisions of the Levites +that will be built for the Name of the LORD.” + +19 + +23 + +2 + +When David was old and full of years, he +installed his son Solomon as king over Is- +Then he gathered all the leaders of Israel, + +rael. +3 +as well as the priests and Levites. + +c + +4 + +“Of these,” said David, +5 + +The Levites thirty years of age or older were +counted, and the total number of men was +38,000. + “24,000 are to +oversee the work of the house of the LORD, 6,000 +4,000 are to be +are to be officers and judges, +gatekeepers, and 4,000 are to praise the LORD +with the instruments I have made for giving +a 14 100,000 talents +praise.” + +Then David divided the Levites into divisions + +according to the sons of Levi: +The Gershonites +(Numbers 3:21–26 ; Numbers 4:21–28) + +Gershon, Kohath, and Merari. + +7 + + d + +8 + +The Gershonites: Ladan + + e + and Shimei. + +The sons of Ladan: Jehiel + +9 +and Joel—three in all. + + the first, Zetham, + +The sons of Shimei: Shelomoth, Haziel, and +Haran—three in all. These were the heads of +g +10 +the families of Ladan. + + f + + Jahath, Zina, + +And the sons of Shimei: + +11 +Jeush, and Beriah. These were the sons of +Jahath was the first +Shimei—four in all. +and Zizah was the second; but Jeush and Be- +riah did not have many sons, so they were +counted as one family and received a single +The Kohathites +assignment. +(Numbers 3:27–32 ; Numbers 4:1–20) + +12 + +The sons of Kohath: Amram, Izhar, Heb- + +13 +ron, and Uzziel—four in all. + +14 + +The sons of Amram: Aaron and Moses. +Aaron and his descendants were set apart +forever to consecrate the most holy things, to +burn incense before the LORD, to minister +before Him, and to pronounce blessings in +As for Moses the man of +His name forever. +God, his sons were named among the tribe of +15 +Levi. +16 + +The sons of Moses: Gershom and Eliezer. + +The descendants of Gershom: Shebuel was + +17 +the first. + +The descendants of Eliezer: Rehabiah was +the first. Eliezer did not have any other +sons, but the sons of Rehabiah were very +18 +numerous. +19 + +The sons of Izhar: Shelomith was the first. + +The sons of Hebron: Jeriah was the first, +Amariah the second, Jahaziel the third, and +20 +Jekameam the fourth. + +The sons of Uzziel: Micah was the first and + +Isshiah the second. + +b 14 1,000,000 talents + +said David, + +d 7 Ladan + +Libni + + is approximately 3,770 tons or 3,420 metric tons of gold. + +Jehieli + +c 4 +e 8 Jehiel + +Hebrew does not include + +g 10 + is a variant of + +; see 1 Chronicles 26:21. + + is approximately + +f 10 Shimei + is a variant of + +; also + was possibly + +Most Hebrew manuscripts; one Hebrew manuscript, LXX, and Vul- + +37,700 tons or 34,200 metric tons of silver. +in verses 8 and 9; see 1 Chronicles 6:17. +a son or grandson of the +gate (see also verse 11) + +Shimei +Zizah + + listed in verse 9. + + The Merarites (Numbers 3:33–37 ; 4:29–33) + +21 + +The sons of Merari: Mahli and Mushi. +22 +The sons of Mahli: Eleazar and Kish. +Eleazar died without having any sons; he +had only daughters. Their cousins, the sons +23 +of Kish, married them. + + a + +The sons of Mushi: Mahli, Eder, and + +Levite Duties Revised + +Jeremoth + +—three in all. + +24 + +These were the descendants of Levi by their +families—the heads of families, registered indi- +vidually by name—those twenty years of age or +older who worked in the service of the house of +25 +the LORD. + +26 + +For David had said, “The LORD, the God of Is- +rael, has given rest to His people and has come to +dwell in Jerusalem forever. +So now the Levites +no longer need to carry the tabernacle or any of +27 +the articles for its service.” + +28 + +For according to the final instructions of David, +the Levites twenty years of age or older were +counted, +but their duty was to assist the de- +scendants of Aaron with the service of the house +of the LORD, being responsible for the courts and +chambers, the purification of all the holy things, +29 +and the work of the service of the house of God, +as well as for the rows of the showbread, the +fine flour for the grain offering, the wafers of un- +leavened bread, the baking, the mixing, and all +30 +measurements of quantity and size. + +31 + +They were also to stand every morning to give +thanks and praise to the LORD, and likewise in +the evening. +Whenever burnt offerings were +presented to the LORD on the Sabbaths, New +Moons, and appointed feasts, they were to serve +regularly before the LORD in the numbers pre- +scribed for them. +So the Levites were to carry +out the responsibilities for the Tent of Meeting +and the Holy Place, and, under their brothers the +descendants of Aaron, the service of the house of +Twenty-Four Divisions of Priests +the LORD. + +32 + +24 + +2 + +These were the divisions of the descend- +ants of Aaron. The sons of Aaron were +Nadab, Abihu, Eleazar, and Ithamar. +But Nadab +and Abihu died before their father did, and they +had no sons; so Eleazar and Ithamar served as +3 +priests. + +With the help of Eleazar’s descendant Zadok +a 23 Jeremoth +and Ithamar’s descendant Ahimelech, David + +Jerimoth + +1 Chronicles 24:19 | 395 + +4 + +divided them according to the offices of their ser- +Since more leaders were found among +vice. +Eleazar’s descendants than those of Ithamar, +they were divided accordingly. There were six- +teen heads of families from the descendants of +Eleazar and eight from the descendants of +5 +Ithamar. + +Thus they were divided by lot, for there were +officers of the sanctuary and officers of God +6 +among both Eleazar’s and Ithamar’s descendants. + +The scribe, Shemaiah son of Nethanel, a Levite, +recorded their names in the presence of the king +and of the officers: Zadok the priest, Ahimelech +son of Abiathar, and the heads of families of the +priests and the Levites—one family being taken +from Eleazar, and then one from Ithamar. + +7 + +The first lot fell to Jehoiarib, + +8 +the second to Jedaiah, + +the third to Harim, + +9 +the fourth to Seorim, + +the fifth to Malchijah, + +10 +the sixth to Mijamin, + +the seventh to Hakkoz, + +11 +the eighth to Abijah, + +the ninth to Jeshua, + +12 +the tenth to Shecaniah, + +the eleventh to Eliashib, + +13 +the twelfth to Jakim, + +the thirteenth to Huppah, + +14 +the fourteenth to Jeshebeab, + +the fifteenth to Bilgah, + +15 +the sixteenth to Immer, + +the seventeenth to Hezir, + +16 +the eighteenth to Happizzez, + +the nineteenth to Pethahiah, + +17 +the twentieth to Jehezkel, + +the twenty-first to Jachin, + +18 +the twenty-second to Gamul, + +the twenty-third to Delaiah, + +19 + +and the twenty-fourth to Maaziah. + +This was their appointed order for service +when they entered the house of the LORD, +according to the regulations prescribed for them +by their forefather Aaron, as the LORD, the God +of Israel, had commanded him. + + is a variant of + +; see 1 Chronicles 24:30. + + 396 | 1 Chronicles 24:20 + +The Rest of the Levites + +20 + +Now these were the rest of the descendants of + + a + +Levi: + +From the sons of Amram: Shubael; +21 +from the sons of Shubael: Jehdeiah. + +b + +As for Rehabiah, from his sons: The first + + c + +22 +was Isshiah. + +From the Izharites: Shelomoth; + +23 +from the sons of Shelomoth: Jahath. + +d + +From the sons of Hebron: Jeriah was the + Amariah the second, Jahaziel the + +first, +24 +third, and Jekameam the fourth. + +From the sons of Uzziel: Micah; + +25 +from the sons of Micah: Shamir. + +The brother of Micah: Isshiah; + +26 +from the sons of Isshiah: Zechariah. + +The sons of Merari: Mahli and Mushi. + +27 +The son of Jaaziah: Beno. + +The descendants of Merari from Jaaziah: + +28 +Beno, Shoham, Zaccur, and Ibri. +29 + +From Mahli: Eleazar, who had no sons. + +30 + +From Kish: Jerahmeel the son of Kish. + +e + +And the sons of Mushi: Mahli, Eder, and + +Jerimoth. + +31 + +These were the sons of the Levites, according +to their families. +As their brothers the de- +scendants of Aaron did, they also cast lots in the +presence of King David and of Zadok, Ahimelech, +and the heads of the families of the priests and +Levites—the family heads and their younger +Twenty-Four Divisions of Musicians +brothers alike. + +25 + +Additionally, David and the commanders +of the army set apart some of the sons of +Asaph, Heman, and Jeduthun to prophesy with +the accompaniment of lyres, harps, and cymbals. +The following is the list of the men who per- +formed this service: + +2 + +From the sons of Asaph: Zaccur, Joseph, +Nethaniah, and Asarelah. These sons of +Asaph were under the direction of Asaph, + +Shebuel + +a 20 Shubael + +who prophesied under the direction of the +3 +king. + +f + +Jeshaiah, Shimei, + +From the sons of Jeduthun: Gedaliah, +Zeri, + Hashabiah, and +Mattithiah—six in all—under the direction +of their father Jeduthun, who prophesied +with the harp, giving thanks and praise to the +4 +LORD. + +g +From the sons of Heman: Bukkiah, Mat- +taniah, Uzziel, Shebuel, + Hananiah, +Hanani, Eliathah, Giddalti, Romamti-ezer, +Joshbekashah, Mallothi, Hothir, and Mahazi- +oth. +All these sons of Heman the king’s seer +were given him through the promises of God +to exalt him, for God had given Heman four- +teen sons and three daughters. + + Jerimoth, + +5 + +h + +6 + +All these were under the direction of their fa- +thers for the music of the house of the LORD with +cymbals, harps, and lyres, for the service of the +house of God. + +7 + +Asaph, Jeduthun, and Heman were under the +Together with their +direction of the king. +relatives, who were all trained and skillful in the +songs of the LORD, they numbered 288. +They +cast lots for their duties, young and old alike, +teacher as well as pupil. + +9 + +8 + + i + +The first lot, which was for Asaph, fell to +Joseph, his sons, and his brothers—12 in all; +the second to Gedaliah, his sons, and his +10 +brothers—12 in all; + +the third to Zaccur, his sons, and his +j +11 +brothers—12 in all; + +the fourth to Izri, +12 +brothers—12 in all; + + his sons, and his + +the fifth to Nethaniah, his sons, and his + +13 +brothers—12 in all; + +the sixth to Bukkiah, his sons, and his + +k + +14 +brothers—12 in all; + +the seventh to Jesarelah, + +15 +his brothers—12 in all; + + his sons, and + +the eighth to Jeshaiah, his sons, and his + +16 +brothers—12 in all; + +the ninth to Mattaniah, his sons, and his +b 21 Isshiah + +brothers—12 in all; + +variant of +23:18. +cles 23:23. +i 9 +include +Zeri + +Shimei + +Jeshaiah + +d 23 + + (twice in this verse) is a variant of +f 3 +Hebrew + +From the sons: Jeriah +; see 1 Chronicles 26:25. +g 4 Shebuel + +c 22 Shelomoth + +Shelomith +; see 1 Chronicles 23:16 and 1 Chronicles 26:24. +Jeremoth + +e 30 Jerimoth + + (twice in this verse) is a variant of + +One Hebrew manuscript and some LXX manuscripts (see also verse 17); most Hebrew manuscripts do not + +; see 1 Chronicles 23:19. +Shubael + +h 4 Jerimoth + + is a variant of +his sons, and his brothers—12 in all; + +Jeremoth + +j 11 Izri + +. + +k 14 Jesarelah + + is a variant of + +Asarelah + +; see verse 20. + + is a variant of + + is a + +; see 1 Chronicles +; see 1 Chroni- + +; see verse 22. + is a variant of + +See LXX and the total in verse 7; Hebrew does not include +; see verse 3. + + is a variant of + +; see verse 2. + + 17 + +6 + +1 Chronicles 26:22 | 397 + +the tenth to Shimei, his sons, and his + +a + +18 +brothers—12 in all; + +the eleventh to Azarel, + +19 +brothers—12 in all; + + his sons, and his + +the twelfth to Hashabiah, his sons, and his + +20 +brothers—12 in all; + +the thirteenth to Shubael, his sons, and + +21 +his brothers—12 in all; + +the fourteenth to Mattithiah, his sons, and + +b + +22 +his brothers—12 in all; + +the fifteenth to Jeremoth, + +23 +his brothers—12 in all; + + his sons, and + +the sixteenth to Hananiah, his sons, and + +24 +his brothers—12 in all; + +the seventeenth to Joshbekashah, his + +25 +sons, and his brothers—12 in all; + +the eighteenth to Hanani, his sons, and + +26 +his brothers—12 in all; + +the nineteenth to Mallothi, his sons, and + +27 +his brothers—12 in all; + +the twentieth to Eliathah, his sons, and + +28 +his brothers—12 in all; + +the twenty-first to Hothir, his sons, and + +29 +his brothers—12 in all; + +the twenty-second to Giddalti, his sons, + +30 +and his brothers—12 in all; + +the twenty-third to Mahazioth, his sons, + +31 +and his brothers—12 in all; + +and the twenty-fourth to Romamti-ezer, + +The Divisions of the Gatekeepers + +his sons, and his brothers—12 in all. + +26 + +These were the divisions of the gate- +keepers: + +From the Korahites: Meshelemiah son of +2 +Kore, one of the sons of Asaph. + +3 + +Meshelemiah had sons: Zechariah the +firstborn, Jediael the second, Zebadiah the +Elam the fifth, +third, Jathniel the fourth, +Jehohanan the sixth, and Eliehoenai the +4 +seventh. + +7 + +Also to his son Shemaiah were born sons +who ruled over their families because they +were strong, capable men. +Shemaiah’s sons +were Othni, Rephael, Obed, and Elzabad; his +8 +brothers were Elihu and Semachiah, also ca- +pable men. +All these were descendants of +Obed-edom; they and their sons and broth- +ers were capable men with strength to do +9 +the work—62 in all from Obed-edom. + +Meshelemiah also had sons and brothers + +10 +who were capable men—18 in all. + +Hosah the Merarite also had sons: Shimri +the first (although he was not the firstborn, +11 +his father had appointed him as the first), +Hilkiah the second, Tebaliah the third, and +Zechariah the fourth. The sons and brothers +of Hosah numbered 13 in all. + +12 + +These divisions of the gatekeepers, through +their chief men, had duties for ministering in the +13 +house of the LORD, just as their relatives did. +They cast lots for each gate, according to their +14 + +c + +families, young and old alike. + +The lot for the East Gate fell to Shelemiah. +Then lots were cast for his son Zechariah, a +wise counselor, and the lot for the North +15 +Gate fell to him. + +The lot for the South Gate fell to Obed- +edom, and the lot for the storehouses to his +16 +sons. + + d +The lots for the West Gate and the + +Shallecheth Gate on the ascending highway +fell to Shuppim and Hosah. + +17 +There were guards stationed at every watch. +Each day there were six Levites on the east, +18 +four on the north, four on the south, and two +pairs at the storehouse. + on +the west, there were four at the highway and two +19 +at the court. + +As for the court + + e + +These were the divisions of the gatekeepers + +The Treasurers, Officers, and Judges +who were descendants of Korah and Merari. +20 + + f + +And Obed-edom also had sons: Shemaiah +the firstborn, Jehozabad the second, Joah the +5 +third, Sachar the fourth, Nethanel the fifth, +Ammiel the sixth, Issachar the seventh, and +Peullethai the eighth. For God had blessed +Uzziel +Obed-edom. + +a 18 Azarel + +Meshelemiah + is a variant of + +As for the Levites, Ahijah was + +d 16 +; see verse 4. +g 21 Ladan +Or + +; see verse 2. + +b 22 Jeremoth +on the upper road + + g + +Now their fellow Levites were + + in charge of the +21 +treasuries of the house of God and the treasuries +From the descendants +of the dedicated things. +of Ladan, + who were Gershonites through Ladan +and heads of the families of Ladan the Gershon- +c 14 Shelemiah +Jerimoth +ite, were Jehieli, +the sons of Jehieli, Zetham, + +22 + +h + +f 20 + +e 18 + is a variant of +Libni + +parbar + +Hebrew + +; see verse 4. + +h 21 Jehieli +; twice in this verse + +Je- + + is a +LXX; He- + + is a variant of + +; see 1 Chronicles 6:17. + + is a variant of + +variant of +hiel +brew + +; also in verse 22; see 1 Chronicles 23:8. + + 398 | 1 Chronicles 26:23 + +and his brother Joel. They were in charge of the +23 +treasuries of the house of the LORD. + +From the Amramites, the Izharites, the Heb- +24 + +ronites, and the Uzzielites: + + a + +25 + +Shebuel, a descendant of Gershom son of +Moses, was the officer in charge of the treas- +His relatives through Eliezer in- +uries. + his son, +cluded Rehabiah his son, Jeshaiah +26 +Joram his son, Zichri his son, and Shelomith +This Shelomith and his brothers +his son. +were in charge of all the treasuries for the +things dedicated by King David, by the heads +of families who were the commanders of +thousands and of hundreds, and by the army +They had dedicated some of +commanders. +the plunder from their battles to the repair +of the house of the LORD. +Everything that +had been dedicated by Samuel the seer, Saul +son of Kish, Abner son of Ner, and Joab son +of Zeruiah, along with everything else that +was dedicated, was under the care of Shelo- +29 +mith and his brothers. + +28 + +27 + + b + +From the Izharites, Chenaniah and his + as officers and + +sons had the outside duties +30 +judges over Israel. + +31 + +As for the Hebronites, Jerijah + +From the Hebronites, Hashabiah and his +relatives, 1,700 capable men, had charge of +the affairs of Israel west of the Jordan for all + c +the work of the LORD and for the service of +the king. +was the chief of the Hebronites, according to +the genealogies of his ancestors. In the forti- +eth year of David’s reign the records were +searched, and strong, capable men were +found among the Hebronites at Jazer in Gil- +Among Jerijah’s relatives there were +ead. +2,700 capable men who were heads of fami- +lies. King David appointed them over the +Reubenites, the Gadites, and the half-tribe of +Manasseh for every matter pertaining to God +and for the affairs of the king. + +32 + +Twelve Captains for Twelve Months + +2 + +men in each division: + +3 + +Jashobeam son of Zabdiel was in charge of +the first division, which was assigned the +first month. There were 24,000 men in his +He was a descendant of Perez and +division. +chief of all the army commanders for the first + d +4 +month. + +Dodai + + the Ahohite was in charge of the di- +vision for the second month, and Mikloth +was the leader. There were 24,000 men in +5 +his division. + +6 + +The third army commander, as chief for the +third month, was Benaiah son of Jehoiada +the priest. There were 24,000 men in his di- +This Benaiah was mighty among the +vision. +Thirty and was over the Thirty, and his son +7 +Ammizabad was in charge of his division. + +The fourth, for the fourth month, was Joab’s +brother Asahel, and his son Zebadiah was +commander after him. There were 24,000 +8 +men in his division. + e + +The fifth, for the fifth month, was the com- + the Izrahite. There were + +mander Shamhuth +9 +24,000 men in his division. + +The sixth, for the sixth month, was Ira son +of Ikkesh the Tekoite. There were 24,000 +10 +men in his division. + +The seventh, for the seventh month, was +Helez the Pelonite, an Ephraimite. There +11 +were 24,000 men in his division. + +The eighth, for the eighth month, was +Sibbecai the Hushathite, a Zerahite. There +12 +were 24,000 men in his division. + +The ninth, for the ninth month, was Ab- +iezer the Anathothite, a Benjamite. There +13 +were 24,000 men in his division. + +The tenth, for the tenth month, was Maha- +rai the Netophathite, a Zerahite. There were +14 +24,000 men in his division. + +27 + +This is the list of the Israelites—the +heads of families, the commanders of +thousands and of hundreds, and their officers +who served the king in every matter concerning +the divisions on rotating military duty each +a 25 Jeshaiah +month throughout the year. There were 24,000 +c 31 Jerijah +Or +moth + f 15 Heldai + is a var. of + +; see 1 Chr. 24:21. + +b 29 +d 4 Dodai + +; see 1 Chr. 23:19. + + is a var. of + + is a var. of + +Shammah + +Isshiah + +Jeriah + +The eleventh, for the eleventh month, was +Benaiah the Pirathonite, an Ephraimite. +15 +There were 24,000 men in his division. + + f + +The twelfth, for the twelfth month, was +Heldai + the Netophathite, from the family +of Othniel. There were 24,000 men in his +the duties outside (Jerusalem) +division. +e 8 Shamhuth +Dodo + +Sham- + +the duties outside (the temple) + +Heled + + or +; see 2 Sam. 23:9. + + is a var. of + + or + +; see 1 Chr. 11:27 and 2 Sam. 23:25. + + is a var. of + +; see 1 Chr. 11:30 and 2 Sam. 23:29. + + The Leaders of the Twelve Tribes +16 + +These officers were in charge of the tribes of + +Israel: + +Over the Reubenites was Eliezer son of +Zichri; +over the Simeonites was Shephatiah son of +17 +Maacah; + +over Levi was Hashabiah son of Kemuel; + +18 +over Aaron was Zadok; + +over Judah was Elihu, one of David’s + +brothers; +19 +over Issachar was Omri son of Michael; +over Zebulun was Ishmaiah son of + +Obadiah; +20 +over Naphtali was Jerimoth son of Azriel; +over the Ephraimites was Hoshea son of + +Azaziah; +over one of the half-tribes of Manasseh was +21 +Joel son of Pedaiah; + +over the half-tribe of Manasseh in + +22 + +Gilead was Iddo son of Zechariah; +over Benjamin was Jaasiel son of Abner; +and over Dan was Azarel son of Jeroham. +23 +These were the leaders of the tribes of Israel. + +David did not count the men aged twenty or +under, because the LORD had said that He would +24 +make Israel as numerous as the stars of the sky. +Joab son of Zeruiah began to count the men but +did not finish. For because of this census wrath +came upon Israel, and the number was not en- +David’s Various Overseers +tered in the Book of the Chronicles of King David. + +25 + +Azmaveth son of Adiel was in charge of + +the royal storehouses. +Jonathan son of Uzziah was in charge of the +storehouses in the country, in the cities, in +26 +the villages, and in the fortresses. + +Ezri son of Chelub was in charge of the +27 +workers in the fields who tilled the soil. +Shimei the Ramathite was in charge of + +the vineyards. +Zabdi the Shiphmite was in charge of the +28 +produce of the vineyards for the wine vats. +Baal-hanan the Gederite was in charge of + +a + +the olive and sycamore trees in the +foothills. +lowlands +Joash was in charge of the stores of olive oil. + +Shephelah + +a 28 + +1 Chronicles 28:5 | 399 + +29 + +Shitrai the Sharonite was in charge of the + +herds grazing in Sharon. +Shaphat son of Adlai was in charge of the +30 +herds in the valleys. + +Obil the Ishmaelite was in charge of the + +camels. +Jehdeiah the Meronothite was in charge of +31 +the donkeys. + +Jaziz the Hagrite was in charge of the + +flocks. +All these officials were in charge of King +David’s property. +32 + +The Counselors + +David’s uncle Jonathan was a counselor; + +he was a man of insight and a scribe. +Jehiel son of Hachmoni attended to the sons +33 +of the king. + +Ahithophel was the king’s counselor. +34 +Hushai the Archite was the king’s friend. +Ahithophel was succeeded by Jehoiada + +son of Benaiah, then by Abiathar. +Joab was the commander of the king’s army. + +David Commissions Solomon + +28 + +Now David summoned all the leaders of +Israel to Jerusalem: the leaders of the +tribes, the leaders of the divisions in the king’s +service, the commanders of thousands and of +hundreds, and the officials in charge of all the +property and cattle of the king and his sons, +along with the court officials and mighty men— +2 +every mighty man of valor. + +Then King David rose to his feet and said, “Lis- +ten to me, my brothers and my people. It was in +my heart to build a house as a resting place for +the ark of the covenant of the LORD and as a foot- +stool for our God. I had made preparations to +but God said to me, ‘You are not to build +build it, +a house for My Name, because you are a man of +4 +war who has shed blood.’ + +3 + +Yet the LORD, the God of Israel, chose me out of +all my father’s house to be king over Israel for- +ever. For He chose Judah as leader, and from the +house of Judah He chose my father’s household, +and from my father’s sons He was pleased to +And of all my +make me king over all Israel. +sons—for the LORD has given me many sons— +He has chosen Solomon my son to sit on the +throne of the kingdom of the LORD over Israel. + +5 + +Hebrew + + or + +; that is, the western foothills of Judea + + 400 | 1 Chronicles 28:6 + +6 + +And He said to me, ‘Solomon your son is the one +who will build My house and My courts, for I have +chosen him as My son, and +I +will establish his kingdom forever, if he reso- +lutely carries out My commandments and ordi- +8 +nances, as is being done this day.’ + + I will be his Father. + +7 + +9 + +So now in the sight of all Israel, the assembly of +the LORD, and in the hearing of our God, keep +and seek out all the commandments of the LORD +your God, so that you may possess this good land +and leave it as an inheritance to your descend- +As for you, Solomon my son, know +ants forever. +the God of your father and serve Him whole- +heartedly and with a willing mind, for the LORD +searches every heart and understands the intent +of every thought. If you seek Him, He will be +found by you; but if you forsake Him, He will re- +Consider now that the LORD +ject you forever. +has chosen you to build a house for the sanctu- +The Plans for the Temple +ary. Be strong and do it.” + +10 + +11 + +a + +the weight of each gold dish; +18 +the weight of each silver bowl; + +the weight of the refined gold for the altar + +of incense; + +and the plans for the chariot of the gold cher- +ubim that spread their wings and overshad- +owed the ark of the covenant of the LORD. + +19 + +“All this,” said David, “all the details of this +plan, the LORD has made clear to me in writing +20 +by His hand upon me.” + +21 + +David also said to Solomon his son, “Be strong +and courageous, and do it. Do not be afraid or dis- +couraged, for the LORD God, my God, is with you. +He will neither fail you nor forsake you before all +the work for the service of the house of the LORD +The divisions of the priests and Le- +is finished. +vites are ready for all the service of the house of +God, and every willing man of every skill will be +at your disposal for the work. The officials and all +Offerings for the Temple +the people are fully at your command.” + + c + +b + +12 + +Then David gave his son Solomon the plans for +the portico of the temple, + its buildings, store- +houses, upper rooms, inner rooms, and the room +for the mercy seat. +The plans contained eve- +rything David had in mind + for the courts of the +house of the LORD, for all the surrounding +13 +rooms, for the treasuries of the house of God and +for the divisions of the +of the dedicated things, +priests and Levites, for all the work of service in +the house of the LORD, and for all the articles of +service in the house of the LORD: + +14 + +the weight of all the gold articles for + +every kind of service; + +the weight of all the silver articles for every +15 +kind of service; + +the weight of the gold lampstands and +their lamps, including the weight of each +lampstand and its lamps; + +the weight of each silver lampstand and its +lamps, according to the use of each +16 +lampstand; + +the weight of gold for each table of show- + +17 +bread, and of silver for the silver tables; + +the weight of the pure gold for the forks, + +29 + +2 + +Then King David said to the whole +assembly, “My son Solomon, the one +whom God has chosen, is young and inexperi- +enced. The task is great because this palace is not +Now with all my +for man, but for the LORD God. +ability I have made provision for the house of my +God—gold for the gold articles, silver for the sil- +ver, bronze for the bronze, iron for the iron, and +wood for the wood, as well as onyx for the set- +tings, turquoise, stones of various colors, all +kinds of precious stones, and slabs of marble— +3 +all in abundance. + +4 + +Moreover, because of my delight in the house of +my God, I now give for it my personal treasures +of gold and silver, over and above all that I have + d +provided for this holy temple: +three thousand +e +talents of gold + (the gold of Ophir) and seven + to overlay the +thousand talents of refined silver, +walls of the buildings, +for the gold work and the +silver work, and for all the work to be done by +the craftsmen. Now who is willing to consecrate +6 +himself to the LORD today?” + +5 + +Then the leaders of the families, the officers of +the tribes of Israel, the commanders of thou- +sands and of hundreds, and the officials in charge +of the king’s work gave willingly. +Toward the +d 4 3,000 +had with him by the Spirit + +c 12 + +7 + +sprinkling bowls, and pitchers; + +of the temple + +a 11 +talents + +b 11 + +atonement cover +e 4 7,000 talents + +LXX; Heb. does not include + +Or + is approx. 113 tons or 103 metric tons of gold. + +. + +Or + + is approx. 264 tons or 239.5 metric tons of silver. + + b + + a + +c + +  f + +d + +e 8 + + 18,000 talents of bronze, + +service of God’s house they gave 5,000 talents +and 10,000 darics of gold, + 10,000 talents of + and 100,000 +silver, +talents of iron. +Whoever had precious stones +gave them to the treasury of the house of the +9 + the Gershonite. +LORD, under the care of Jehiel +And the people rejoiced at the willing response +of their leaders, for they had given to the LORD +freely and wholeheartedly. And King David also +David’s Prayer of Blessing +rejoiced greatly. +10 + +Then David blessed the LORD in the sight of all + +the assembly and said: + +“May You be blessed, O LORD, God of our fa- +11 +ther Israel, from everlasting to everlasting. + +Yours, O LORD, is the greatness and the +power and the glory and the splendor and +the majesty, for everything in heaven and on +earth belongs to You. + +12 + +Yours, O LORD, is the kingdom, and You are +exalted as head over all. +Both riches and +honor come from You, and You are the ruler +over all. In Your hands are power and might +13 +to exalt and give strength to all. + +Now therefore, our God, we give You +14 +thanks, and we praise Your glorious name. +But who am I, and who are my people, that +we should be able to give as generously as +this? For everything comes from You, and +15 +from Your own hand we have given to You. +For we are foreigners and strangers in +Your presence, as were all our forefathers. +Our days on earth are like a shadow, without +16 +hope. + +17 + +O LORD our God, from Your hand comes +all this abundance that we have provided to +build You a house for Your holy Name, and +all of it belongs to You. +I know, my God, +that You test the heart and delight in up- +rightness. All these things I have given will- +ingly and with an upright heart, and now I +have seen Your people who are present here +18 +giving joyfully and willingly to You. + +O LORD, God of our fathers Abraham, +Isaac, and Israel, keep this desire forever in + +a 7 5,000 talents + +1 Chronicles 29:30 | 401 + +19 + +the intentions of the hearts of Your people, +And +and direct their hearts toward You. +give my son Solomon a whole heart to keep +and carry out all Your commandments, de- +crees, and statutes, and to build Your palace +for which I have made provision.” + +20 + +Then David said to the whole assembly, “Bless + +the LORD your God.” + +So the whole assembly blessed the LORD, the +God of their fathers. They bowed down and paid +Solomon Anointed King (1 Kings 1:32–40) +homage to the LORD and to the king. +21 + +The next day they offered sacrifices and pre- +sented burnt offerings to the LORD: a thousand +bulls, a thousand rams, and a thousand lambs, +along with their drink offerings, and other sacri- +That day they +fices in abundance for all Israel. +ate and drank with great joy in the presence of +the LORD. + +22 + +Then, for a second time, they designated David’s +son Solomon as king, anointing him before the +23 +LORD as ruler, and Zadok as the priest. + +24 + +So Solomon sat on the throne of the LORD as +king in place of his father David. He prospered, +All the officials and +and all Israel obeyed him. +mighty men, as well as all of King David’s sons, +25 +pledged their allegiance to King Solomon. + +The LORD highly exalted Solomon in the sight +of all Israel and bestowed on him royal majesty +such as had not been bestowed on any king in Is- +David’s Reign and Death (1 Kings 2:10–12) +rael before him. +26 +27 + +David son of Jesse was king over all Israel. +The length of David’s reign over Israel was +forty years—seven years in Hebron and thirty- +three years in Jerusalem. +He died at a ripe old +age, full of years, riches, and honor, and his son +29 +Solomon reigned in his place. + +28 + +Now the acts of King David, from first to last, +are indeed written in the Chronicles of Samuel +the Seer, the Chronicles of Nathan the Prophet, +and the Chronicles of Gad the Seer, +together +with all the details of his reign, his might, and the +circumstances that came upon him and Israel +and all the kingdoms of the lands. + +30 + +b 7 + +10,000 gold drachmas + +c 7 10,000 talents + +d 7 18,000 talents + + is approximately 188.5 tons or 171 metric tons of gold. + +mately 185.2 pounds or 84 kilograms of gold coins +silver. +mately 3,770 tons or 3,420 metric tons of iron. + + f 8 Jehiel + + is approximately 678.6 tons or 615.6 metric tons of bronze. + + is a variant of + +; see 1 Chronicles 26:21. + +Or + +; that is, approxi- + is approximately 377 tons or 342 metric tons of + is approxi- + +e 7 100,000 talents + +Jehieli + + 2 Chronicles + +Solomon’s Prayer for Wisdom +(1 Kings 3:1–15 ; Psalm 45:1–17 ; Psalm 72:1–20) + +1 + +Now Solomon son of David established him- +self securely over his kingdom, and the +LORD his God was with him and highly exalted +2 +him. + +Then Solomon spoke to all Israel, to the com- +manders of thousands and of hundreds, to the +3 +judges, and to every leader in all Israel—the +And Solomon and the +heads of the families. +whole assembly went to the high place at Gibeon +because it was the location of God’s Tent of Meet- +ing, which Moses the servant of the LORD had +4 +made in the wilderness. + +Now David had brought the ark of God from Kir- +iath-jearim to the place he had prepared for it, +5 +because he had pitched a tent for it in Jerusalem. +But the bronze altar made by Bezalel son of Uri, + the taber- +the son of Hur, was in Gibeon before +nacle of the LORD. So Solomon and the assembly +6 +inquired of Him there. + + a + +Solomon offered sacrifices there before the +LORD on the bronze altar at the Tent of Meeting, +7 +where he offered a thousand burnt offerings. + +That night God appeared to Solomon and said, + +8 +“Ask, and I will give it to you!” + + b + +Solomon replied to God: “You have shown much +9 +loving devotion + to my father David, and You +Now, O LORD +have made me king in his place. +God, let Your promise to my father David be ful- +10 +filled. For You have made me king over a people +Now +as numerous as the dust of the earth. +grant me wisdom and knowledge, so that I may + For who is able to govern this +lead this people. +11 +great people of Yours?” + +c + +12 + +honor for yourself or death for your enemies— +and since you have not even requested long life +but have asked for wisdom and knowledge to +govern My people over whom I have made you +therefore wisdom and knowledge have +king— +been granted to you. And I will also give you +riches and wealth and honor unlike anything +13 +given to the kings before you or after you.” + +So Solomon went to Jerusalem from the high +place in Gibeon, from before the Tent of Meeting, +Solomon’s Riches (1 Kings 10:26–29) +and he reigned over Israel. +14 + + d + +e + +Solomon accumulated + + 1,400 chariots and +15 +12,000 horses, + which he stationed in the chariot +The king +cities and also with him in Jerusalem. +made silver and gold as common in Jerusalem as +stones, and cedar as abundant as sycamore in the +16 +foothills. + +f + + g + +Solomon’s horses were imported from Egypt +17 + the royal merchants purchased them +and Kue; +A chariot could be imported from +from Kue. +i +Egypt for six hundred shekels of silver, + and a +horse for a hundred and fifty. + Likewise, they ex- +ported them to all the kings of the Hittites and to +Preparations for the Temple (1 Kings 5:1–6) +the kings of Aram. + +h + +2 + +2 + +Now Solomon purposed to build a house for +the Name of the LORD and a royal palace for +So he conscripted 70,000 porters, +himself. +80,000 stonecutters in the mountains, and 3,600 +3 +supervisors. + + j + +Then Solomon sent word to Hiram + + king of + +Tyre: + +God said to Solomon, “Since this was in your +a 5 +heart instead of requesting riches or wealth or + +was there before + +LXX, Vulgate, and some Hebrew manuscripts +faithfulness +d 14 + +goodness +kindness +are translated here and in most cases throughout the Scriptures as +people and come in +, and +, +, +lowlands +f 15 +Literally +h 17 600 shekels + +mercy +Solomon accumulated chariots and horses; he had + +loyalty to a covenant + +, as well as + +Shephelah + +. + +g 16 + +; MT + +Hebrew + + or + +; that is, the western foothills of Judea +Huram + +j 3 + +4 + +“Do for me as you did for my father David +when you sent him cedars to build himself a +Behold, I am about to build +house to live in. +chesed +b 8 +he placed before +a house for the Name of the LORD my God to +loving devotion +love +c 10 + +so that I may go out before this + +Forms of the Hebrew +; the range of meaning includes +e 14 +Literally + +horsemen + +, +charioteers + + or +i 17 150 shekels +Probably an area in Cilicia, a province in + +Or +Hiram + +the southeast of Asia Minor +is approximately 3.8 pounds or 1.7 kilograms of silver. + + is approximately 15.1 pounds or 6.8 kilograms of silver. + +Hebrew + +, a variant of + +; also in verses 11 and 12 + + dedicate to Him for burning fragrant incense +before Him, for displaying the showbread +continuously, and for making burnt offerings +every morning and evening as well as on the +Sabbaths, New Moons, and appointed feasts +of the LORD our God. This is ordained for Is- +5 +rael forever. + +6 + +The house that I am building will be great, +for our God is greater than all gods. +But who +is able to build a house for Him, since the +heavens, even the highest heavens, cannot +contain Him? Who then am I, that I should +build a house for Him, except as a place to +7 +burn sacrifices before Him? + +Send me, therefore, a craftsman skilled in +engraving to work with gold and silver, with +bronze and iron, and with purple, crimson, +and blue yarn. He will work with my crafts- +men in Judah and Jerusalem, whom my + b +8 +father David provided. + +a + +Send me also cedar, cypress, + + and algum + +logs from Lebanon, for I know that your +servants have skill to cut timber there. And +9 +indeed, my servants will work with yours +to prepare for me timber in abundance, be- +cause the temple I am building will be great +I will pay your servants, +and wonderful. +c +the woodcutters, 20,000 cors of ground +f +e +wheat, + 20,000 baths + 20,000 cors of barley, +of wine, + + and 20,000 baths of olive oil. + +Hiram’s Reply to Solomon (1 Kings 5:7–12) + +10 + +” + +d + +11 + +Then Hiram king of Tyre wrote a letter in reply + +to Solomon: + +“Because the LORD loves His people, He has +12 +set you over them as king.” + +And Hiram added: + +“Blessed be the LORD, the God of Israel, who +made the heavens and the earth! He has +given King David a wise son with insight and +understanding, who will build a temple for +the LORD and a royal palace for himself. + +b 8 Algum + +juniper + +pine + +fir + +a 8 + +2 Chronicles 3:5 | 403 + +13 + +g + +14 + +So now I am sending you Huram-abi, a +skillful man endowed with creativity. +He +is the son of a woman from the daughters of +Dan, and his father is a man of Tyre. He is +skilled in work with gold and silver, bronze +and iron, stone and wood, purple, blue, and +crimson yarn, and fine linen. He is experi- +enced in every kind of engraving and can +execute any design that is given him. He will +work with your craftsmen and with those of +15 +my lord, your father David. + +16 + +Now let my lord send to his servants the +wheat, barley, olive oil, and wine he prom- +ised. +We will cut logs from Lebanon, as +many as you need, and we will float them to +you as rafts by sea down to Joppa. Then you +can take them up to Jerusalem.” + +17 + +18 + +Solomon numbered all the foreign men in the +land of Israel following the census his father Da- +vid had conducted, and there were found to be +Solomon made 70,000 of them +153,600 in all. +porters, 80,000 stonecutters in the mountains, +Temple Construction Begins (1 Kings 6:1–4) +and 3,600 supervisors. + +3 + + h + +Then Solomon began to build the house of +the LORD in Jerusalem on Mount Moriah, + to his father Da- +where the LORD had appeared +vid. This was the place that David had prepared +2 + the Jebusite. +on the threshing floor of Ornan +Solomon began construction on the second day +of the second month in the fourth year of his +3 +reign. + + i + +j + +k + +4 + + according to the old standard. + l + +The foundation that Solomon laid for the house +of God was sixty cubits long and twenty cubits +The por- +wide, +tico at the front, extending across the width of +the temple, was twenty cubits long + and twenty +cubits high. + He overlaid the inside with pure +The Temple’s Interior (1 Kings 6:14–22) +gold. +5 + +m + +n + +He paneled the main room with cypress, + + which +almug +he overlaid with fine gold and decorated with + +c 10 20,000 cors + +d 10 20,000 cors + +Or + + or + + or + + is probably a variant of + +124,800 bushels or 4.4 million liters (probably about 3,800 tons or 3,400 metric tons of wheat). +mately 124,800 bushels or 4.4 million liters (probably about 2,910 tons or 2,700 metric tons of barley). +i 1 Ornan +is approximately 116,000 gallons or 440,000 liters of wine. +Araunah +lons or 440,000 liters +Or +k 3 +; see 2 Samuel 24:16. + +Or +See LXX; Hebrew + +understanding +j 3 + +g 13 + +f 10 + +h 1 + +The foundation was approximately 90 feet long and 30 feet wide (27.4 meters long and + +; that is, approximately 116,000 gal- + + is a variant of + +l 4 20 cubits + +The old standard of measurement was a cubit equal to 18 inches or 45.7 centimeters. The new + +9.1 meters wide). +standard, a cubit of approximately 21 inches or 53.3 centimeters (the long cubit) is the basic unit of length throughout Eze- +kiel 40 to 48. +Some LXX and Syriac + is approximately 30 feet or 9.1 meters; also in verses 8, 11, and 13. +manuscripts; Hebrew + or + + (approximately 180 feet or 54.9 meters) + +m 4 +juniper + +120 cubits high + +pine + +n 5 + + or + +Or + +fir + +; see 1 Kings 10:11. +20,000 baths of oil +where He had appeared + + is approximately +e 10 20,000 baths + is approxi- + + 404 | 2 Chronicles 3:6 + +6 + +2 + +7 + +He adorned the temple +palm trees and chains. +with precious stones for beauty, and its gold was +He overlaid its beams, thresh- +from Parvaim. +olds, walls, and doors with gold, and he carved +8 +cherubim on the walls. + + a + +b + +9 + +Then he made the Most Holy Place; + + its length +corresponded to the width of the temple— +twenty cubits long and twenty cubits wide. And +he overlaid the inside with six hundred talents of +The weight of the nails was fifty +fine gold. +shekels of gold. + He also overlaid the upper +The Cherubim (1 Kings 6:23–30) +rooms with gold. +10 + +c + +j + +3 + +He also made the Sea of cast metal. It was circu- +lar in shape, measuring ten cubits from rim to +rim, five cubits in height, and thirty cubits in +Below the rim, figures of oxen +circumference. +encircled it, ten per cubit all the way around the +4 +Sea, cast in two rows as a part of the Sea. + +The Sea stood on twelve oxen, three facing +north, three facing west, three facing south, and +three facing east. The Sea rested on them, with all +k +It was a +their hindquarters toward the center. +handbreadth thick, + and its rim was fashioned +like the brim of a cup, like a lily blossom. It could +The Ten Basins, Lampstands, and Tables +hold three thousand baths. +(1 Kings 7:38–39) + +5 + +l + + d + +11 + +In the Most Holy Place he made two cherubim +of sculptured work, and he overlaid them with +gold. +The total wingspan of the cherubim was +twenty cubits. One wing of the first cherub was + and touched the wall of the tem- +five cubits long +ple, and its other wing was five cubits long and +The +touched the wing of the other cherub. +wing of the second cherub also measured five cu- +bits and touched the wall of the temple, while its +other wing measured five cubits and touched the +So the total wingspan +wing of the first cherub. +of these cherubim was twenty cubits. They stood +The Veil and Pillars (1 Kings 7:13–22) +on their feet, facing the main room. +14 + +12 + +13 + +6 + +He also made ten basins for washing and placed +five on the south side and five on the north. The +parts of the burnt offering were rinsed in them, +7 +but the priests used the Sea for washing. + +He made ten gold lampstands according to their +specifications and placed them in the temple, five +8 +on the south side and five on the north. + +Additionally, he made ten tables and placed +them in the temple, five on the south side and five +The Courts +on the north. He also made a hundred gold bowls. +9 + +He made the veil of blue, purple, and crimson +15 +yarn and fine linen, with cherubim woven into it. +e +In front of the temple he made two pillars, + +which together were thirty-five cubits high, +16 +each with a capital on top measuring five cubits. + + f + +He made the courtyard of the priests and +the large court with its doors, and he overlaid the +10 +doors with bronze. + +He put the Sea on the south side, at the south- + +Completion of the Bronze Works +east corner. +(1 Kings 7:40–47) + +He made interwoven chains + + and put them on +top of the pillars. He made a hundred pomegran- +17 +ates and fastened them into the chainwork. +Then he set up the pillars in front of the +temple, one on the south and one on the north. + and the +The pillar on the south he named Jachin, +The Bronze Altar and Molten Sea +pillar on the north he named Boaz. +(1 Kings 7:23–26) + +h + +g + +He made a bronze altar twenty cubits long, +the Holy of Holies +twenty cubits wide, and ten cubits high. + +b 8 600 talents + +i + +4 + +a 8 +c 9 50 shekels + +Or +g 17 Jachin +also in verse 15. + +11 + +Additionally, Huram made the pots, shovels, + +and sprinkling bowls. + +So Huram finished the work that he had under- +taken for King Solomon in the house of God: + +12 + +the two pillars; + +the two bowl-shaped capitals atop the +pillars; +the two sets of network covering both +bowls of the capitals atop the pillars; + +d 11 5 cubits + +e 15 35 cubits + +; also in verse 10 + + is approximately 1.26 pounds or 569.8 grams of gold. + +He establishes + +h 17 Boaz + + is approximately 52.5 feet or 16 meters. + +in Him is strength +Or + + is approximately 22.6 tons or 20.5 metric tons of gold. + +f 16 + +He made chains in the inner sanctuary + is approximately 7.5 feet or 2.3 meters; + +i 1 + +j 2 + + probably means + +. + + probably means + +. + +The altar was approxi- + +mately 30 feet in length and width and 15 feet high (9.1 meters in length and width and 4.6 meters high). +The Sea was +k 5 A handbreadth +approximately 15 feet from rim to rim, 7.5 feet in height, and 45 feet in circumference (4.6 meters from rim to rim, 2.3 me- +l 5 3,000 baths +ters in height, and 13.7 meters in circumference). + + is approximately 2.9 inches or 7.4 centimeters. + + is approximately 17,400 gallons or 66,000 liters. + + 13 + +the four hundred pomegranates for the + +two sets of network (two rows of pome- +granates for each network covering both +14 +the bowl-shaped capitals atop the pillars); + +the stands; + +15 +the basins on the stands; + +the Sea; + +16 +the twelve oxen underneath the Sea; + +and the pots, shovels, meat forks, and all + +the other articles. + +18 + +17 + +All these objects that Huram-abi made for King +Solomon for the house of the LORD were of pol- +The king had them cast in clay +ished bronze. +a +molds in the plain of the Jordan between Succoth +Solomon made all these articles +and Zeredah. +in such great abundance that the weight of the +Completion of the Gold Furnishings +bronze could not be determined. +(1 Kings 7:48–51) + +19 + +Solomon also made all the furnishings for the + +house of God: + +the golden altar; +the tables on which was placed the Bread of +20 +the Presence; + +the lampstands of pure gold and their + +lamps, to burn in front of the inner +21 +sanctuary as prescribed; + +the flowers, lamps, and tongs of gold— + +22 +of purest gold; + +the wick trimmers, sprinkling bowls, + +ladles, and censers of pure gold; +and the gold doors of the temple: the +inner doors to the Most Holy Place +as well as the doors of the main hall. + +The Ark Enters the Temple +(1 Kings 8:1–11) + + b + +5 + +So all the work that Solomon had performed +for the house of the LORD was completed. + +Then Solomon brought in the items his father Da- +vid had dedicated—the silver, the gold, and all +the furnishings—and he placed them in the +2 +treasuries of the house of God. + +2 Chronicles 5:14 | 405 + +3 + +family leaders of the Israelites—to bring up the +ark of the covenant of the LORD from Zion, the +So all the men of Israel came to- +City of David. +c +gether to the king at the feast in the seventh +4 +month. + +5 + +When all the elders of Israel had arrived, the Le- +and they brought up the +vites took up the ark, +ark and the Tent of Meeting with all its sacred +furnishings. The Levitical priests carried them +6 +up. + +There, before the ark, King Solomon and the +whole congregation of Israel who had assembled +with him sacrificed so many sheep and oxen that +7 +they could not be counted or numbered. + +d + +Then the priests brought the ark of the cove- +nant of the LORD to its place in the inner sanctu- + beneath +ary of the temple, the Most Holy Place, +the wings of the cherubim. +For the cherubim +spread their wings over the place of the ark and +9 +overshadowed the ark and its poles. + +8 + +e + +The poles of the ark extended far enough that + f +their ends were visible from in front of the inner +sanctuary, +10 +and they are there to this day. + + but not from outside the Holy Place; + +g +There was nothing in the ark except the two + +tablets that Moses had placed in it at Horeb, +where the LORD had made a covenant with the +11 +Israelites after they had come out of Egypt. + +12 + +Now all the priests who were present had con- +secrated themselves regardless of their divi- +sions. And when the priests came out of the Holy +all the Levitical singers—Asaph, Heman, +Place, +Jeduthun, and their sons and relatives—stood on +the east side of the altar, dressed in fine linen and +playing cymbals, harps, and lyres, accompanied +The trum- +by 120 priests sounding trumpets. +peters and singers joined together to praise and +thank the LORD with one voice. They lifted up +their voices, accompanied by trumpets, cymbals, +and musical instruments, in praise to the LORD: + +13 + +“For He is good; + +His loving devotion endures forever.” + +14 + +And the temple, the house of the LORD, was filled +so that the priests could not stand +with a cloud +there to minister because of the cloud. For the +glory of the LORD filled the house of God. +the Holy of Holies + +c 3 + +At that time Solomon assembled in Jerusalem +the elders of Israel—all the tribal heads and +b 22 +Zarethan +a 17 Zeredah +the Holy of Holies + +d 7 +poles extended far enough that their ends were visible from the Holy Place in front of the inner sanctuary +(or Booths or Shelters); see Leviticus 23:33–36. +f 9 + +; see 1 Kings 7:46. +Or + + is a variant of +not from outside + +The +That is, the Feast of Tabernacles + +Some Hebrew manuscripts and LXX + +g 10 + +e 9 + +Or + +Literally + +That is, Mount Sinai, or possibly a mountain in the range containing Mount Sinai + +; see 1 Kings 8:8. + + 406 | 2 Chronicles 6:1 + +Solomon Blesses the LORD (1 Kings 8:12–21) + +6 + +Then Solomon declared: + +2 + +“The LORD has said that He would dwell + in the thick cloud. + +3 + +But I have built You an exalted house, +a place for You to dwell forever.” + +And as the whole assembly of Israel stood there, +4 +the king turned around and blessed them all + +and said: + +5 + +“Blessed be the LORD, the God of Israel, who +has fulfilled with His own hand what He +spoke with His mouth to my father David, +‘Since the day I brought My people +saying, +out of the land of Egypt, I have not chosen a +city from any tribe of Israel in which to build +a house so that My Name would be there, nor +have I chosen anyone to be ruler over My +But now I have chosen Jeru- +people Israel. +salem for My Name to be there, and I have +7 +chosen David to be over My people Israel.’ + +6 + +8 + +Now it was in the heart of my father David +to build a house for the Name of the LORD, +But the LORD said to my +the God of Israel. +father David, ‘Since it was in your heart to +build a house for My Name, you have done +Neverthe- +well to have this in your heart. +less, you are not the one to build it; but your +son, your own offspring, will build the house +10 +for My Name.’ + +9 + +Now the LORD has fulfilled the word that +He spoke. I have succeeded my father David, +and I sit on the throne of Israel, as the LORD +promised. I have built the house for the +And +Name of the LORD, the God of Israel. +there I have placed the ark, which contains +the covenant of the LORD that He made with +the children of Israel.” + +Solomon’s Prayer of Dedication +(1 Kings 8:22–53) + +11 + +12 + +13 + +Then Solomon stood before the altar of the +LORD in front of the whole assembly of Israel and +Now Solomon had made +spread out his hands. +a bronze platform five cubits long, five cubits + and had placed it in +wide, and three cubits high +the middle of the courtyard. He stood on it, knelt +down before the whole assembly of Israel, +a 13 +and said: +spread out his hands toward heaven, + +14 + +a + +“O LORD, God of Israel, there is no God like +You in heaven or on earth, keeping Your cov- +enant of loving devotion with Your servants +15 +who walk before You with all their hearts. +You have kept Your promise to Your serv- +ant, my father David. What You spoke with +Your mouth You have fulfilled with Your +16 +hand this day. + +Therefore now, O LORD, God of Israel, +keep for Your servant, my father David, what +You promised when You said: ‘You will never +fail to have a man to sit before Me on the +throne of Israel, if only your descendants +guard their way to walk in My law as you +have walked before Me.’ +And now, O +LORD, God of Israel, please confirm what +18 +You promised to Your servant David. + +17 + +But will God indeed dwell with man upon +the earth? The heavens, even the highest +19 +heavens, cannot contain You, much less this +temple I have built. +Yet regard the prayer +and plea of Your servant, O LORD my God, so +that You may hear the cry and the prayer +20 +that Your servant is praying before You. + +21 + +May Your eyes be open toward this temple +day and night, toward the place where You +said You would put Your Name, so that You +may hear the prayer that Your servant prays +toward this place. +Hear the plea of Your +servant and of Your people Israel when they +pray toward this place. May You hear from +heaven, Your dwelling place. May You hear +22 +and forgive. + +When a man sins against his neighbor and +is required to take an oath, and he comes to +23 +take an oath before Your altar in this temple, +then may You hear from heaven and act. +May You judge Your servants, condemning +the wicked man by bringing down on his +own head what he has done, and justifying +the righteous man by rewarding him accord- +24 +ing to his righteousness. + +When Your people Israel are defeated be- +fore an enemy because they have sinned +against You, and they return to You and con- +25 +fess Your name, praying and pleading before +You in this temple, +then may You hear +from heaven and forgive the sin of Your peo- +ple Israel. May You restore them to the land +You gave to them and their fathers. + +The platform was approximately 7.5 feet in length and width, and 4.5 feet high (2.3 meters in length and width, and + +1.4 meters high). + + 26 + +When the skies are shut and there is no +rain because Your people have sinned +against You, and they pray toward this place +and confess Your name, and they turn from +27 +their sins because You have afflicted them, +then may You hear from heaven and for- +give the sin of Your servants, Your people Is- +rael, so that You may teach them the good +way in which they should walk. May You +send rain on the land that You gave Your +28 +people as an inheritance. + +29 + +When famine or plague comes upon the +land, or blight or mildew or locusts or grass- +hoppers, or when their enemies besiege +them in their cities, whatever plague or sick- +then may whatever prayer +ness may come, +or plea Your people Israel make—each +knowing his own afflictions and spreading +be +out his hands toward this temple— +heard by You from heaven, Your dwelling +place. And may You forgive and repay each +man according to all his ways, since You +know his heart—for You alone know the +so that they may fear You +hearts of men— +and walk in Your ways all the days they live +32 +in the land that You gave to our fathers. + +31 + +30 + +2 Chronicles 7:6 | 407 + +38 + +they repent and plead with You in the land of +their captors, saying, ‘We have sinned and +and +done wrong; we have acted wickedly,’ +when they return to You with all their heart +and soul in the land of the enemies who took +them captive, and when they pray in the di- +rection of the land that You gave to their fa- +thers, the city You have chosen, and the +then +house I have built for Your Name, +may You hear from heaven, Your dwelling +place, their prayer and pleas, and may You +uphold their cause. May You forgive Your +40 +people who sinned against You. + +39 + +Now, my God, may Your eyes be open and +Your ears attentive to the prayer offered in +this place. + +41 + +Now therefore, arise, O LORD God, + +and enter Your resting place, + +You and the ark of Your might. + +May Your priests, O LORD God, be clothed + +with salvation, + +42 + +and may Your godly ones rejoice in + +goodness. + +O LORD God, do not reject Your anointed one. +Remember Your loving devotion to Your + +Fire from Heaven (Psalm 136:1–26) + +servant David.” + +And as for the foreigner who is not of Your +people Israel but has come from a distant +land because of Your great name and Your +mighty hand and outstretched arm—when +33 +he comes and prays toward this temple, +then may You hear from heaven, Your +dwelling place, and do according to all for +which the foreigner calls to You. Then all the +peoples of the earth will know Your name +and fear You, as do Your people Israel, and +they will know that this house I have built is +34 +called by Your Name. + +When Your people go to war against their +enemies, wherever You send them, and +when they pray to You in the direction of this +35 +city You have chosen and the house I have +then may You hear +built for Your Name, +from heaven their prayer and their plea, and +36 +may You uphold their cause. + +37 + +When they sin against You—for there is no +one who does not sin—and You become an- +gry with them and deliver them to an enemy +who takes them as captives to a land far or +and when they come to their senses +near, +in the land to which they were taken, and + +7 + +When Solomon had finished praying, fire +came down from heaven and consumed the +2 +burnt offering and the sacrifices, and the glory of +the LORD filled the temple. +The priests were un- +able to enter the house of the LORD, because the +3 +glory of the LORD had filled it. + +When all the Israelites saw the fire coming +down and the glory of the LORD above the tem- +ple, they bowed down on the pavement with +their faces to the ground, and they worshiped +and gave thanks to the LORD: + +“For He is good; + +Sacrifices of Dedication (1 Kings 8:62–66) +His loving devotion endures forever.” + +4 + +5 +Then the king and all the people offered sacri- +And King Solomon of- +fices before the LORD. +fered a sacrifice of 22,000 oxen and 120,000 +sheep. So the king and all the people dedicated +6 +the house of God. + +The priests stood at their posts, as did the +Levites with the musical instruments of the +LORD, which King David had made for giving + + 408 | 2 Chronicles 7:7 + +thanks to the LORD and with which David had of- +fered praise, saying, “For His loving devotion en- +dures forever.” Across from the Levites, the +priests sounded trumpets, and all the Israelites +7 +were standing. + +commanded you, and if you keep My statutes +then I will establish your +and ordinances, +royal throne, as I covenanted with your fa- +ther David when I said, ‘You will never fail to +19 +have a man to rule over Israel.’ + +18 + +Then Solomon consecrated the middle of the +courtyard in front of the house of the LORD, and +there he offered the burnt offerings and the fat of +the peace offerings, since the bronze altar he had +8 +made could not hold all these offerings. + + a + +So at that time Solomon and all Israel with +him—a very great assembly of people from +9 +Lebo-hamath to the Brook of Egypt—kept the +feast +On the eighth day they +held a solemn assembly, for the dedication of the +altar had lasted seven days, and the feast seven +10 +days more. + + for seven days. + +On the twenty-third day of the seventh month, +Solomon sent the people away to their homes, +joyful and glad of heart for the good things that +the LORD had done for David, for Solomon, and +The LORD’s Response to Solomon +for His people Israel. +(1 Kings 9:1–9) + +11 + +When Solomon had finished the house of the +LORD and the royal palace, successfully carrying +out all that was in his heart to do for the house of +the LORD ap- +the LORD and for his own palace, +peared to him at night and said to him: + +12 + +14 + +“I have heard your prayer and have chosen +13 +this place for Myself as a house of sacrifice. +If I close the sky so there is no rain, or if I +command the locust to devour the land, or if +and if +I send a plague among My people, +My people who are called by My name hum- +ble themselves and pray and seek My face +and turn from their wicked ways, then I will +hear from heaven, forgive their sin, and heal +15 +their land. + +Now My eyes will be open and My ears at- +16 +tentive to the prayers offered in this place. +For I have now chosen and consecrated +this temple so that My Name may be there +forever. My eyes and My heart will be there +17 +for all time. + +a 8 + +And as for you, if you walk before Me as +your father David walked, doing all I have +And though this temple is now exalted + +20 + +But if you turn away and forsake the stat- +utes and commandments I have set before +you, and if you go off to serve and worship +then I will uproot Israel from +other gods, +the soil I have given them, and I will banish +from My presence this temple I have sancti- +fied for My Name. I will make it an object of +21 +scorn and ridicule among all the peoples. + +b + +22 + +And when this temple has become a heap +of rubble, + all who pass by it will be appalled +and say, ‘Why has the LORD done such a +And +thing to this land and to this temple?’ +others will answer, ‘Because they have for- +saken the LORD, the God of their fathers, +who brought them out of the land of Egypt, +and have embraced other gods, worshiping +and serving them—because of this, He has +Solomon’s Additional Achievements +” +brought all this disaster upon them.’ +(1 Kings 9:10–28) + +8 + +Now at the end of the twenty years during +2 +which Solomon had built the house of the +Solomon rebuilt the + had given him and settled Israelites + + c +LORD and his own palace, +cities Hiram +3 +there. + +4 + +5 + +Then Solomon went to Hamath-zobah and cap- +He built Tadmor in the wilderness, in +tured it. +addition to all the store cities that he had built +He rebuilt Upper and Lower Beth- +in Hamath. +6 +horon as fortified cities with walls, gates, and +as well as Baalath, all the store cities that +bars, +belonged to Solomon, and all the cities for his +—whatever he desired to +chariots and horses +build in Jerusalem, Lebanon, and throughout the +7 +land of his dominion. + + d + +As for all the people who remained of +the Hittites, Amorites, Perizzites, Hivites, and +8 +Jebusites (these people were not Israelites)— +their descendants who remained in the land, +those whom the Israelites had not destroyed— +Solomon conscripted these people to be forced +laborers, as they are to this day. +c 2 + +Huram + +Hiram + +b 21 + +That is, the Feast of Tabernacles (or Booths or Shelters); see Leviticus 23:33–36. + +d 6 + +horsemen + +charioteers + +and Arabic; Hebrew +also in verse 18 + +Or + + or + +; see also 1 Kings 9:8. + +Some LXX manuscripts, Syriac, +, a variant of + +; + +Hebrew + + 9 + +But Solomon did not consign any of the Israel- +ites to slave labor, because they were his men of +war, the leaders of his captains, and the com- +They +manders of his chariots and cavalry. +were also the chief officers for King Solomon: +11 +250 supervisors. + +10 + +Solomon brought the daughter of Pharaoh up +from the City of David to the palace he had built +for her. For he said, “My wife must not live in the +house of David king of Israel, because the places +12 +the ark of the LORD has entered are holy.” + +At that time Solomon offered burnt offerings +13 +to the LORD on the altar of the LORD he had built +He observed the daily +in front of the portico. +requirement for offerings according to the com- +mandment of Moses for Sabbaths, New Moons, +b +and the three annual appointed feasts—the +Feast of Unleavened Bread, +14 +and the Feast of Tabernacles. + +c + the Feast of Weeks, + +a + +In keeping with the ordinances of his father +David, Solomon appointed the divisions of the +priests over their service, and the Levites for +their duties to offer praise and to minister before +the priests according to the daily requirement. +He also appointed gatekeepers by their divisions +15 +at each gate, for this had been the command of +They did not turn aside +David, the man of God. +from the king’s command regarding the priests +or the Levites in any matter, including that of the +16 +treasuries. + +Thus all the work of Solomon was carried out, +from the day the foundation was laid for the +house of the LORD until it was finished. So the +17 +house of the LORD was completed. + + d + +e + +18 + + on the coast of Edom. + +Then Solomon went to Ezion-geber and to +Eloth +So Hiram sent +him ships captained by his servants, along with +crews of experienced sailors. They went with +Solomon’s servants to Ophir and acquired from + which they delivered +there 450 talents of gold, +The Queen of Sheba (1 Kings 10:1–13) +to King Solomon. + +f + +9 + +2 Chronicles 9:12 | 409 + +with difficult questions. She arrived in Jerusalem +with a very large caravan—with camels bearing +spices, gold in abundance, and precious stones. + +2 + +And she came to Solomon and spoke with him +And Solomon +about all that was on her mind. +answered all her questions; nothing was too dif- +3 +ficult for him to explain. + +4 + +When the queen of Sheba saw the wisdom of +the food at his +Solomon, the palace he had built, +table, the seating of his servants, the service and + g +attire of his attendants, the attire of his cupbear- + at the +ers, and the burnt offerings he presented +5 +house of the LORD, it took her breath away. + + h + +7 + +6 + +She said to the king, “The report I heard in my + and wisdom is +own country about your words +But I did not believe the reports until I +true. +came and saw with my own eyes. Indeed, not half +of the greatness of your wisdom was told to me. +How +You have far exceeded the report I heard. +blessed are your men! How blessed are these +servants of yours who stand continually before +you and hear your wisdom! +Blessed be the +LORD your God, who has delighted in you to set +you on His throne to be king for the LORD your +God. Because your God loved Israel enough to es- +tablish them forever, He has made you king over +9 +them to carry out justice and righteousness.” + +8 + +i + +Then she gave the king 120 talents of gold, + a +great quantity of spices, and precious stones. +There had never been such spices as those the +10 +queen of Sheba gave to King Solomon. + + j +(The servants of Hiram and of Solomon who + k + +brought gold from Ophir also brought algum +wood and precious stones. +The king made the + for the house of the +algum wood into steps +LORD and for the king’s palace, and into lyres +and harps for the singers. Never before had any- +12 +thing like them been seen in the land of Judah.) + +11 + +King Solomon gave the queen of Sheba all she +desired—whatever she asked—far more than +she had brought the king. Then she left and +returned to her own country, along with her +servants. + +b 13 + +a 13 + +Now when the queen of Sheba heard about +the fame of Solomon, she came to test him +That is, the seven-day period after the Passover during which no leaven may be eaten; see Ex. 12:14–20. + +Feast of Pentecost +c 13 +Shavuot, the late spring feast of pilgrimage to Jerusalem; it is also known as +Feast of Booths +d 17 Eloth + +the Feast of Shelters + (see Acts 2:1). +Elath + + (see Exodus 23:16) or +That is, Sukkot, the autumn feast of pilgrimage to Jerusalem; also translated as + +the Feast of Ingathering + +the Feast of Harvest + +e 17 + +the +That is, +the + +f 18 450 talents + + or + is a variant of +and his stairway by which he went up +j 10 Algum + + and originally called + +; see LXX, 2 Kings 14:22, and 2 Kings 16:6. + +your achievements + +h 5 + + is approximately 17 tons or 15.4 metric tons of gold. +Or + +almug + +g 4 +i 9 120 talents + + (see Exodus 23:16 and Exodus 34:22). +That is, along the shore of the Red Sea in the +LXX and Syriac (see also 1 Kings +gateways +k 11 + is approximately 4.52 tons + +land of Edom +10:5); Hebrew +or 4.1 metric tons of gold. + + is probably a variant of + +; also in verse 11; see 1 Kings 10:11. + +Or + + 410 | 2 Chronicles 9:13 + +Solomon’s Wealth and Splendor +(1 Kings 10:14–29) + +13 + +a + +14 + +The weight of gold that came to Solomon each +year was 666 talents, +not including the reve- +nue from the merchants and traders. And all the +Arabian kings and governors of the land also +15 +brought gold and silver to Solomon. + + b + +16 + +King Solomon made two hundred large shields +of hammered gold; six hundred shekels of ham- + went into each shield. +He also +mered gold + c +made three hundred small shields of hammered + went into +gold; three hundred shekels of gold +each shield. And the king put them in the House +17 +of the Forest of Lebanon. + +18 + +19 + +Additionally, the king made a great throne of +The +ivory and overlaid it with pure gold. +throne had six steps, and a footstool of gold was +attached to it. There were armrests on both sides +of the seat, with a lion standing beside each arm- +Twelve lions stood on the six steps, one at +rest. +either end of each step. Nothing like this had ever +20 +been made for any kingdom. + +21 + +All King Solomon’s drinking cups were gold, +and all the utensils of the House of the Forest of +Lebanon were pure gold. There was no silver, +because it was accounted as nothing in the days + d +of Solomon. +For the king had the ships of Tar- +shish + servants, and +once every three years the ships of Tarshish +would arrive bearing gold, silver, ivory, apes, and +22 +peacocks. + + that went with Hiram’s + + e + +f + +23 + +24 + +So King Solomon surpassed all the kings of the +earth in riches and wisdom. +All the kings of the +earth sought an audience with Solomon to hear +the wisdom that God had put in his heart. +Year +after year, each visitor would bring his tribute: +articles of silver and gold, clothing, weapons, +25 +spices, horses, and mules. + +g +Solomon had 4,000 stalls for horses and chari- +ots, and 12,000 horses, + which he stationed in +26 +the chariot cities and also with him in Jerusalem. + h +He reigned over all the kings from the Euphra- +tes + to the land of the Philistines, as far as the +border of Egypt. +The king made silver as com- +i +mon in Jerusalem as stones, and cedar as abun- +dant as sycamore in the foothills. +Solomon’s +horses were imported from Egypt and from all +a 13 666 talents +the lands. + +27 + +28 + +c 16 300 shekels + +The Death of Solomon (1 Kings 11:41–43) + +29 + +As for the rest of the acts of Solomon, from be- +ginning to end, are they not written in the Rec- +ords of Nathan the Prophet, in the Prophecy of +Ahijah the Shilonite, and in the Visions of Iddo +30 +the Seer concerning Jeroboam son of Nebat? +Solomon reigned in Jerusalem over all Israel +And Solomon rested with his fa- +forty years. +thers and was buried in the city of his father Da- +Rebellion against Rehoboam +vid. And his son Rehoboam reigned in his place. +(1 Kings 12:1–15) + +31 + +10 + +3 + +2 + +Then Rehoboam went to Shechem, for all +Israel had gone there to make him king. +When Jeroboam son of Nebat heard about this, +he returned from Egypt, where he had fled from +King Solomon. +So they sent for Jeroboam, and +4 +he and all Israel came to Rehoboam and said, +“Your father put a heavy yoke on us. But now +you must lighten the burden of your father’s ser- +vice and the heavy yoke he put on us, and we will +5 +serve you.” + +Rehoboam answered, “Come back to me in + +6 +three days.” So the people departed. + +Then King Rehoboam consulted with the elders +who had served his father Solomon during his +lifetime. “How do you advise me to respond to +7 +these people?” he asked. + +They replied, “If you will be kind to these people +and please them by speaking kind words to them, +8 +they will be your servants forever.” + +9 + +But Rehoboam rejected the advice of the +elders; instead, he consulted the young men who +had grown up with him and served him. +He +asked them, “What message do you advise that +we send back to these people who have spoken +to me, saying, ‘Lighten the yoke your father put +10 +on us’?” + +The young men who had grown up with him +replied, “This is how you should answer these +people who said to you, ‘Your father made our +yoke heavy, but you must make it lighter.’ This is +what you should tell them: ‘My little finger is +Whereas my fa- +thicker than my father’s waist! +ther burdened you with a heavy yoke, I will add +to your yoke. Whereas my father scourged you +” +with whips, I will scourge you with scorpions.’ +a fleet of trading + is approximately 15.1 pounds or +charioteers +g 25 + +b 15 600 shekels + +baboons + +d 21 + +11 + +ships +6.8 kilograms of gold. +h 26 + + is approximately 25.1 tons or 22.8 metric tons of gold. +Huram’s + is approximately 7.5 pounds or 3.4 kilograms of gold. +Shephelah + +the River + +Hiram’s + +e 21 + +f 21 + +i 27 + +horsemen +Or + +; twice in this verse +Hebrew + +Hebrew + +Hebrew + +Or + +Or + + or + +; that is, the western foothills of Judea + +lowlands +, a variant of + or + + 2 Chronicles 11:23 | 411 + +Rehoboam Fortifies Judah + +5 + +6 + +7 + +10 + +11 + +Gath, Mareshah, Ziph, + +cities for defense in Judah. +8 +hem, Etam, Tekoa, + +Rehoboam lived in Jerusalem, and he built up +He built up Bethle- +9 +Beth-zur, Soco, Adullam, +Adoraim, Lachish, Aze- +Zorah, Aijalon, and Hebron, the fortified +kah, +cities in Judah and Benjamin. +He strengthened +their fortifications and put officers in them, with +supplies of food, oil, and wine. +He also put +shields and spears in all the cities and strength- +ened them greatly. So Judah and Benjamin be- +Jeroboam Forsakes the Priests and Levites +longed to him. +13 + +12 + +14 + +Moreover, the priests and Levites from all +their districts throughout Israel stood with Re- +For the Levites left their pasturelands +hoboam. +and their possessions and went to Judah and +Jerusalem, because Jeroboam and his sons had +And +rejected them as priests of the LORD. +Jeroboam appointed his own priests for the high +places and for the goat demons and calf idols he +16 +had made. + +15 + +Those from every tribe of Israel who had set +their hearts to seek the LORD their God followed +17 +the Levites to Jerusalem to sacrifice to the LORD, +So they strengthened +the God of their fathers. +the kingdom of Judah and supported Rehoboam +son of Solomon for three years, because they +walked for three years in the way of David and +Rehoboam’s Family +Solomon. +18 + +And Rehoboam married Mahalath, who was +the daughter of David’s son Jerimoth and of Abi- +hail, the daughter of Jesse’s son Eliab. +She bore +20 +sons to him: Jeush, Shemariah, and Zaham. + +19 + +21 + +After her, he married Maacah daughter of Ab- +salom, and she bore to him Abijah, Attai, Ziza, and +Shelomith. +Rehoboam loved Maacah daughter +of Absalom more than all his wives and concu- +bines. In all, he had eighteen wives and sixty con- +cubines, and he was the father of twenty-eight +22 +sons and sixty daughters. + +12 + +13 + +14 + +After three days, Jeroboam and all the people +returned to Rehoboam, since the king had said, +And the +“Come back to me on the third day.” +king answered them harshly. King Rehoboam re- +and spoke to +jected the advice of the elders +them as the young men had advised, saying, + I +“Whereas my father made your yoke heavy, +will add to your yoke. Whereas my father +scourged you with whips, I will scourge you with +15 +scorpions.” + +a + +So the king did not listen to the people, and in- +deed this turn of events was from God, in order +that the LORD might fulfill the word that He had +spoken through Ahijah the Shilonite to Jeroboam +The Kingdom Divided +son of Nebat. +(1 Kings 12:16–19) + +16 + + b + +When all Israel saw that the king had refused + +to listen to them, they answered + + the king: + +“What portion do we have in David, + +and what inheritance in the son of Jesse? + +To your tents, O Israel! + +Look now to your own house, O David!” + +17 + +So all the Israelites went home, +but Rehoboam +still reigned over the Israelites living in the cities +18 +of Judah. + +c + +19 + +Then King Rehoboam sent out Hadoram, + + who +was in charge of the forced labor, but the Israel- +ites stoned him to death. And King Rehoboam +mounted his chariot in haste and escaped to +So to this day Israel has been in +Jerusalem. +Shemaiah’s Prophecy +rebellion against the house of David. +(1 Kings 12:20–24) + +11 + +3 + +When Rehoboam arrived in Jerusalem, +he mobilized the house of Judah and Ben- +fight +jamin—180,000 chosen warriors—to +2 +against Israel and restore the kingdom to Reho- +But the word of the LORD came to +boam. +“Tell Rehoboam son +Shemaiah the man of God: +of Solomon king of Judah and all the Israelites in +that this is what the LORD +Judah and Benjamin +says: ‘You are not to go up and fight against your +brothers. Each of you must return home, for this +is My doing.’ + +” + +4 + +23 + +Rehoboam appointed Abijah son of Maacah as +chief prince among his brothers, intending to +make him king. +Rehoboam also acted wisely by +dispersing some of his sons throughout the dis- +tricts of Judah and Benjamin, and to all the forti- +fied cities. He gave them abundant provisions +and sought many wives for them. + +Whereas I made your yoke heavy + +And all Israel, since the king had refused to listen to them, answered + +So they listened to the words of the LORD and +a 14 +turned back from going against Jeroboam. +b 16 +c 18 Hadoram + +LXX and many Hebrew manuscripts (see also 1 Kings 12:14); MT +Syriac, Vulgate, and many Hebrew manuscripts; MT + +Adoniram + +Adoram + + is a variant of + + and + +; see 2 Samuel 20:24 and 1 Kings 4:6. + + 412 | 2 Chronicles 12:1 + +Shishak Raids Jerusalem (1 Kings 14:25–28) + +12 + + a + +2 + +After Rehoboam had established his sov- +ereignty and royal power, he and all Is- +rael +In + with him forsook the Law of the LORD. +the fifth year of Rehoboam’s reign, because they +had been unfaithful to the LORD, Shishak king of +with 1,200 chariots, +Egypt attacked Jerusalem +60,000 horsemen, + and countless troops who +c +came with him out of Egypt—Libyans, Sukkites, +and Cushites. +He captured the fortified cities of +5 +Judah and came as far as Jerusalem. + +3 + +4 + +b + +Then Shemaiah the prophet came to Rehoboam +and the leaders of Judah who had gathered at Je- +rusalem because of Shishak, and he said to them, +“This is what the LORD says: ‘You have forsaken +Me; therefore, I have forsaken you into the hand +6 +of Shishak.’ + +” + +So the leaders of Israel and the king humbled + +7 +themselves and said, “The LORD is righteous.” + +When the LORD saw that they had humbled +themselves, the word of the LORD came to +Shemaiah, saying, “They have humbled them- +selves; I will not destroy them, but will soon +grant them deliverance. My wrath will not be +poured out on Jerusalem through Shishak. +Nev- +ertheless, they will become his servants, so that +they may learn the difference between serving +9 +Me and serving the kings of other lands.” + +8 + +So King Shishak of Egypt attacked Jerusalem +and seized the treasures of the house of the LORD +and of the royal palace. He took everything, in- +10 +cluding the gold shields that Solomon had made. + +11 + +Then King Rehoboam made bronze shields in +their place and committed them to the care of the +captains of the guard on duty at the entrance to +the royal palace. +And whenever the king en- +tered the house of the LORD, the guards would +go with him, bearing the shields, and later they +12 +would return them to the guardroom. + +Because Rehoboam humbled himself, the an- +ger of the LORD turned away from him, and He +did not destroy him completely. Indeed, condi- +Rehoboam’s Reign and Death +tions were good in Judah. +(1 Kings 14:21–24) + +13 + +when he became king, and he reigned seventeen +years in Jerusalem, the city the LORD had chosen +from all the tribes of Israel in which to put His +Name. His mother’s name was Naamah the Am- +monite. +And Rehoboam did evil because he did +15 +not set his heart to seek the LORD. + +14 + +Now the acts of Rehoboam, from first to last, +are they not written in the records of Shemaiah +the Prophet and of Iddo the Seer concerning the +genealogies? There was war between Rehoboam +And Re- +and Jeroboam throughout their days. +hoboam rested with his fathers and was buried +in the City of David. And his son Abijah + reigned +Abijah Reigns in Judah (1 Kings 15:1–8) +in his place. + +16 + + d + +13 + + e + +2 + +In the eighteenth year of Jeroboam’s +reign, Abijah + became king of Judah, + f +and he reigned in Jerusalem three years. His + of Uriel; + + daughter + + g + +mother’s name was Micaiah +she was from Gibeah. + +3 + +And there was war between Abijah and Jero- +Abijah went into battle with an army of +boam. +400,000 chosen men, while Jeroboam drew up in +formation against him with 800,000 chosen and +Civil War against Jeroboam +mighty men of valor. +4 + + h + +6 + +5 + +Then Abijah stood on Mount Zemaraim in the +hill country of Ephraim and said, “Hear me, O Jer- +oboam and all Israel! +Do you not know that the +LORD, the God of Israel, has given the kingship of +Israel to David and his descendants forever by a +covenant of salt +Yet Jeroboam son of Nebat, a +servant of Solomon son of David, rose up and +Then worthless +rebelled against his master. +and wicked men gathered around him to resist +Rehoboam son of Solomon when he was young, +8 +inexperienced, and unable to resist them. + +? + +7 + +9 + +And now you think you can resist the kingdom +of the LORD, which is in the hands of David’s de- +scendants. You are indeed a vast army, and you +have with you the golden calves that Jeroboam +made for you as gods. +But did you not drive out +the priests of the LORD, the sons of Aaron, and +the Levites? And did you not make priests for +yourselves as do the peoples of other lands? Now +whoever comes to consecrate himself with a +young bull and seven rams can become a priest +of things that are not gods. + +chariot- + +b 3 + +Abijam + +e 1 Abijah +Or + +Thus King Rehoboam established himself in Je- +a 1 +rusalem and reigned. He was forty-one years old +eers + +c 3 + +d 16 Abijah + +That is, Judah; in 2 Chronicles, Judah is occasionally called Israel, as representative of the true Israel. + +Maacah + +Abijam +That is, people from the upper Nile region + +granddaughter + +h 5 + +g 2 + +f 2 + + is a variant of + +variant of +1 Kings 15:2. + +; see 1 Kings 14:31. + +Hebrew; most LXX manuscripts and Syriac + +Or + +That is, a perpetual covenant + +; see 1 Kings 14:31. + + is a +; see 2 Chronicles 11:20 and + + 10 + +2 + +3 + +2 Chronicles 14:15 | 413 + +11 + +But as for us, the LORD is our God. We have not +forsaken Him; the priests who minister to the +LORD are sons of Aaron, and the Levites attend +Every morning and every even- +to their duties. +ing they present burnt offerings and fragrant +incense to the LORD. They set out the rows of +showbread on the ceremonially clean table, and +every evening they light the lamps of the gold +lampstand. We are carrying out the require- +ments of the LORD our God, while you have for- +12 +saken Him. + +Now behold, God Himself is with us as our +head, and His priests with their trumpets sound +the battle call against you. O children of Israel, do +not fight against the LORD, the God of your fa- +13 +thers, for you will not succeed.” + +14 + +Now Jeroboam had sent troops around to am- +bush from the rear, so that while he was in front +When +of Judah, the ambush was behind them. +Judah turned and discovered that the battle was +both before and behind them, they cried out to +15 +the LORD. Then the priests blew the trumpets, +and the men of Judah raised the battle cry. And +when they raised the cry, God routed Jeroboam +16 +and all Israel before Abijah and Judah. + +17 + +So the Israelites fled before Judah, and God de- +livered them into their hands. +Then Abijah and +his people struck them with a mighty blow, and +Thus +500,000 chosen men of Israel fell slain. +the Israelites were subdued at that time, and the +men of Judah prevailed because they relied on +19 +the LORD, the God of their fathers. + +18 + +Abijah pursued Jeroboam and captured some +cities from him: Bethel, Jeshanah, and Ephron, +20 +along with their villages. + +Jeroboam did not again recover his power dur- +ing the days of Abijah, and the LORD struck him +21 +down and he died. + +But Abijah grew strong, married fourteen +22 +wives, and became the father of twenty-two sons +and sixteen daughters. +Now the rest of the acts + a +of Abijah, along with his ways and his words, are +Asa Reigns in Judah (1 Kings 15:9–15) +written in the Treatise + + of the Prophet Iddo. + +4 + +And Asa did what was good and right in the eyes +of the LORD his God. +He removed the foreign al- +tars and high places, shattered the sacred pillars, +and chopped down the Asherah poles. +He com- +manded the people of Judah to seek the LORD, +the God of their fathers, and to observe the law +and the commandments. +He also removed the +high places and incense altars from all the cities +of Judah, and under him the kingdom was at +6 +peace. + +5 + +7 + +Because the land was at peace, Asa built forti- +fied cities in Judah. In those days no one made +war with him, because the LORD had given him +rest. +So he said to the people of Judah, “Let us +build these cities and surround them with walls +and towers, with doors and bars. The land is still +ours because we have sought the LORD our God. +We have sought Him, and He has given us rest on +8 +every side.” So they built and prospered. + +Asa had an army of 300,000 men from Judah +bearing large shields and spears, and 280,000 +men from Benjamin bearing small shields and +drawing the bow. All these were mighty men of +9 +valor. + + b +Then Zerah the Cushite came against them with +an army of 1,000,000 men + and 300 chariots, and +So Asa +they advanced as far as Mareshah. +marched out against him and lined up in battle +formation in the Valley of Zephathah near +11 +Mareshah. + +10 + +c + +Then Asa cried out to the LORD his God: +“O LORD, there is no one besides You to help the +powerless against the mighty. Help us, O LORD +our God, for we rely on You, and in Your name we +have come against this multitude. O LORD, You +are our God. Do not let a mere mortal prevail +12 +against You.” + +13 + +14 + +So the LORD struck down the Cushites before +Asa and Judah, and the Cushites fled. +Then Asa +and his army pursued them as far as Gerar. The +Cushites fell and could not recover, for they were +crushed before the LORD and His army. So the +people of Judah carried off a great amount of +plunder +and attacked all the cities around +Gerar, because the terror of the LORD had fallen +upon them. They plundered all the cities, since +there was much plunder there. +They also at- +tacked the tents of the herdsmen and carried off +many sheep and camels. Then they returned to +Jerusalem. + +an army of a thousand thousands + +15 + +14 + +Then Abijah rested with his fathers and +was buried in the City of David. And his +son Asa reigned in his place, and in his days the +a 22 +land was at peace for ten years. +c 10 + +Exposition +the valley north of Mareshah + +Study + +b 9 + +an army of thousands and thousands + +Or +Or + + or + +Or + +; Hebrew + + 414 | 2 Chronicles 15:1 + +The Prophecy of Azariah + +15 + +2 + +4 + +3 + +Now the Spirit of God came upon Azariah +So he went out to meet Asa +son of Oded. +and said to him, “Listen to me, Asa and all Judah +and Benjamin. The LORD is with you when you +are with Him. If you seek Him, He will be found +by you, but if you forsake Him, He will forsake +For many years Israel has been without the +you. +true God, without a priest to instruct them, and +without the law. +But in their distress they +5 +turned to the LORD, the God of Israel, and sought +In those days +Him, and He was found by them. +there was no safety for travelers, because the +Na- +residents of the lands had many conflicts. +tion was crushed by nation, and city by city, for +7 + kinds of adversity. +God afflicted them with all +But as for you, be strong; do not be discouraged, + +6 + +Asa’s Reforms (1 Kings 15:9–15) +for your work will be rewarded.” +8 + + a +When Asa heard these words and the prophecy + the prophet, he took +of Azariah son of Oded +courage and removed the detestable idols from +the whole land of Judah and Benjamin and from +the cities he had captured in the hill country of +Ephraim. He then restored the altar of the LORD +that was in front of the portico of the LORD’s +temple. +And he assembled all Judah and Benja- +min, along with those from the tribes of Ephraim, +Manasseh, and Simeon who had settled among +them, for great numbers had come over to him +from Israel when they saw that the LORD his God +10 +was with him. + +9 + +12 + +So they gathered together in Jerusalem in the +11 +third month of the fifteenth year of Asa’s reign. +At that time they sacrificed to the LORD seven +hundred oxen and seven thousand sheep from all +the plunder they had brought back. +Then they +entered into a covenant to seek the LORD, the +13 +God of their fathers, with all their heart and soul. +And whoever would not seek the LORD, the +God of Israel, would be put to death, whether +young or old, man or woman. +They took an +oath to the LORD with a loud voice, with shout- +ing, trumpets, and rams’ horns. +And all Judah +rejoiced over the oath, for they had sworn it with +all their heart. They had sought Him earnestly, +and He was found by them. So the LORD gave + b +16 +them rest on every side. + +14 + +15 + +King Asa also removed his grandmother +a 8 +Maacah from her position as queen mother +c 3 + +berit + +17 + +because she had made a detestable Asherah pole. +Asa chopped down the pole, crushed it, and +burned it in the Kidron Valley. +The high places +were not removed from Israel, but Asa’s heart +And he brought +was fully devoted all his days. +into the house of God the silver and gold and the +19 +articles that he and his father had dedicated. + +18 + +And there was no war until the thirty-fifth year + +War between Asa and Baasha +of Asa’s reign. +(1 Kings 15:16–22) + +16 + +2 + +In the thirty-sixth year of Asa’s reign, +Baasha king of Israel went up against Ju- +dah and fortified Ramah to prevent anyone from +leaving or entering the territory of Asa king of Ju- +So Asa withdrew the silver and gold from +dah. +the treasuries of the house of the LORD and the +royal palace, and he sent it with this message to +Ben-hadad king of Aram, who was ruling in + between me +“Let there be a treaty +Damascus: +and you as there was between my father and +your father. See, I have sent you silver and gold. +Now go and break your treaty with Baasha king +4 +of Israel, so that he will withdraw from me.” + +3 + + c + +And Ben-hadad listened to King Asa and sent +the commanders of his armies against the cities +of Israel, conquering Ijon, Dan, Abel-maim, + and +5 +all the store cities of Naphtali. + +d + +6 + +When Baasha learned of this, he stopped forti- +Then +fying Ramah and abandoned his work. +King Asa brought all the men of Judah, and they +carried away the stones of Ramah and the tim- +bers Baasha had used for building. And with +Hanani’s Message to Asa +these materials he built up Geba and Mizpah. +7 + + e + +8 + +Were not the Cushites + +At that time Hanani the seer came to King Asa +of Judah and told him, “Because you have relied +on the king of Aram and not on the LORD your +God, the army of the king of Aram has escaped + and +from your hand. +Libyans a vast army with many chariots and +horsemen? Yet because you relied on the LORD, +For the eyes +He delivered them into your hand. +of the LORD roam to and fro over all the earth, to +show Himself strong on behalf of those whose +hearts are fully devoted to Him. You have acted +foolishly in this matter. From now on, therefore, +Azariah son of +you will be at war.” + +his mother + +b 16 + +9 + +d 4 Abel-maim + +covenant + +Vulgate and Syriac (see also verse 1 and LXX); Hebrew does not include +Forms of the Hebrew + + are translated in most passages as + +Abel-beth-maacah + +e 8 + +. + +Hebrew + + was also + +; twice in this verse. +That is, people from the upper Nile region + +known as + +; see 1 Kings 15:20. + + 10 + +10 + +2 Chronicles 18:4 | 415 + +Asa was angry with the seer and became so en- +raged over this matter that he put the man in +prison. And at the same time Asa oppressed +The Death and Burial of Asa +some of the people. +11 + +12 + +Now the acts of Asa, from beginning to end, +are indeed written in the Book of the Kings of Ju- +In the thirty-ninth year of his +dah and Israel. +reign, Asa became diseased in his feet, and his +disease became increasingly severe. Yet even in +his illness he did not seek the LORD, but only the +13 +physicians. + +14 + +So in the forty-first year of his reign, Asa died +And he was buried +and rested with his fathers. +in the tomb that he had cut out for himself in the +City of David. They laid him on a bier that was full +of spices and various blended perfumes; then +Jehoshaphat Reigns in Judah +they made a great fire in his honor. +(1 Kings 15:23–24) + +17 + +2 + +Asa’s son Jehoshaphat reigned in his +place, and he strengthened himself +He stationed troops in every for- +against Israel. +tified city of Judah and put garrisons in the land +of Judah and in the cities of Ephraim that his fa- +3 +ther Asa had captured. + + a + +5 + +Now the LORD was with Jehoshaphat because +4 + of his father Da- +he walked in the earlier ways +but he sought the +vid. He did not seek the Baals, +God of his father and walked by His command- +So the +ments rather than the practices of Israel. +LORD established the kingdom in his hand, and +all Judah brought him tribute, so that he had an +And his heart +abundance of riches and honor. + in the ways of the LORD; further- +took delight +more, he removed the high places and Asherah +7 +poles from Judah. + +6 + + b + +8 + +In the third year of his reign, Jehoshaphat sent +his officials Ben-hail, Obadiah, Zechariah, +Nethanel, and Micaiah to teach in the cities of +Judah, +accompanied by certain Levites— +Shemaiah, Nethaniah, +Asahel, +Shemiramoth, Jehonathan, Adonijah, Tobijah, +9 +and Tob-adonijah—along with +the priests +They taught throughout +Elishama and Jehoram. +Judah, taking with them the Book of the Law of +the LORD. They went throughout the towns of +Judah and taught the people. +a 3 + +in his early years he walked in the ways + +Zebadiah, + +b 6 + +And the dread of the LORD fell upon all the +kingdoms of the lands that surrounded Judah, so +11 +that they did not make war against Jehoshaphat. +Some Philistines also brought gifts and silver +as tribute to Jehoshaphat, and the Arabs brought +him 7,700 rams and 7,700 goats from their +12 +flocks. + +13 + +Jehoshaphat grew stronger and stronger, and +he built fortresses and store cities in Judah +and +kept vast supplies in the cities of Judah. He also +had warriors in Jerusalem who were mighty men +These are their numbers according to +of valor. +the houses of their fathers: + +14 + +From Judah, the commanders of thousands: + +Adnah the commander, and with him +15 +300,000 mighty men of valor; + +next to him, Jehohanan the commander, + +16 +and with him 280,000; + +and next to him, Amasiah son of Zichri, +the volunteer for the LORD, and with him +200,000 mighty men of valor. + +17 + +From Benjamin: + +Eliada, a mighty man of valor, and with him +18 +200,000 armed with bows and shields; + +19 + +and next to him, Jehozabad, and with + +him 180,000 armed for battle. + +These were the men who served the king, be- +sides those he stationed in the fortified cities +Jehoshaphat Allies with Ahab +throughout Judah. +(1 Kings 22:1–12) + +18 + +2 + +Now Jehoshaphat had an abundance of +riches and honor, and he allied himself +And some years later he +with Ahab by marriage. +went down to visit Ahab in Samaria, where Ahab +sacrificed many sheep and cattle for him and the +people with him and urged him to march up to +3 +Ramoth-gilead. + +Ahab king of Israel asked Jehoshaphat king +of Judah, “Will you go with me against Ramoth- +gilead?” + +And Jehoshaphat replied, “I am as you are, and +my people are your people; we will join you in +4 +the war.” + +But Jehoshaphat also said to the king of Israel, + +was exalted + +was courageous + +“Please inquire first for the word of the LORD.” + +Or + +Or + + or + + 416 | 2 Chronicles 18:5 + +5 + +16 + +So the king of Israel assembled the prophets, +four hundred men, and asked them, “Should we +go to war against Ramoth-gilead, or should we +refrain?” + +So Micaiah declared: + +“I saw all Israel scattered on the hills +like sheep without a shepherd. +And the LORD said, ‘These people have + +“Go up,” they replied, “and God will deliver it into +6 +the hand of the king.” + +17 + +no master; + +let each one return home in peace.’ + +” + +But Jehoshaphat asked, “Is there not still +a prophet of the LORD here of whom we can +7 +inquire?” + +Then the king of Israel said to Jehoshaphat, +“Did I not tell you that he never prophesies good +18 +for me, but only bad?” + +The king of Israel answered, “There is still one +man through whom we can inquire of the LORD, +but I hate him because he never prophesies any- +thing good for me, but only bad. He is Micaiah son +of Imlah.” + +“The king should not say that!” Jehoshaphat +8 +replied. + +So the king of Israel called one of his officials + +9 +and said, “Bring Micaiah son of Imlah at once.” + +Dressed in royal attire, the king of Israel and +Jehoshaphat king of Judah were sitting on their +thrones at the threshing floor by the entrance of +the gate of Samaria, with all the prophets proph- +10 +esying before them. + +Now Zedekiah son of Chenaanah had made for +himself iron horns and declared, “This is what +the LORD says: ‘With these you shall gore the +11 +Arameans until they are finished off.’ + +” + +And all the prophets were prophesying the +same, saying, “Go up to Ramoth-gilead and tri- +umph, for the LORD will deliver it into the hand +Micaiah Prophesies against Ahab +of the king.” +(1 Kings 22:13–28) + +12 + +Micaiah continued, “Therefore hear the word +of the LORD: I saw the LORD sitting on His +throne, and all the host of heaven standing on His +19 +right and on His left. + +And the LORD said, ‘Who will entice Ahab king +of Israel to march up and fall at Ramoth-gilead?’ +20 +And one suggested this, and another that. + +Then a spirit came forward, stood before the + +LORD, and said, ‘I will entice him.’ +21 +‘By what means?’ asked the LORD. + +And he replied, ‘I will go out and be a lying + +spirit in the mouths of all his prophets.’ + +‘You will surely entice him and prevail,’ said the +22 +LORD. ‘Go and do it.’ + +So you see, the LORD has put a lying spirit in +the mouths of these prophets of yours, and the +23 +LORD has pronounced disaster against you.” + +Then Zedekiah son of Chenaanah went up, +struck Micaiah in the face, and demanded, +“Which way did the Spirit of the LORD go when +24 +He departed from me to speak with you?” + +Micaiah replied, “You will soon see, on that day + +25 +when you go and hide in an inner room.” + +Then the messenger who had gone to call Mi- +caiah instructed him, “Behold, with one accord +the words of the prophets are favorable to the +king. So please let your words be like theirs, and +13 +speak favorably.” + +But Micaiah said, “As surely as the LORD lives, + +14 +I will speak whatever my God tells me.” + +When Micaiah arrived, the king asked him, +“Micaiah, should we go to war against Ramoth- +gilead, or should we refrain?” + +“Go up and triumph,” Micaiah replied, “for they +15 +will be delivered into your hand.” + +But the king said to him, “How many times +must I make you swear not to tell me anything +but the truth in the name of the LORD?” + +26 + +And the king of Israel declared, “Take Micaiah +and return him to Amon the governor of the city +and tell them that +and to Joash the king’s son, +this is what the king says: ‘Put this man in prison +and feed him only bread and water until I return +27 +safely.’ + +” + +But Micaiah replied, “If you ever return safely, +the LORD has not spoken through me.” Then he +Ahab’s Defeat and Death (1 Kings 22:29–40) +added, “Take heed, all you people!” +28 + +29 + +So the king of Israel and Jehoshaphat king of +And the king +Judah went up to Ramoth-gilead. +of Israel said to Jehoshaphat, “I will disguise my- +self and go into battle, but you wear your royal +robes.” So the king of Israel disguised himself and +went into battle. + + 30 + +9 + +2 Chronicles 20:9 | 417 + +Now the king of Aram had ordered his chariot +commanders, “Do not fight with anyone, small or +31 +great, except the king of Israel.” + +When the chariot commanders saw Jehosha- +phat, they said, “This is the king of Israel!” So they +turned to fight against him, but Jehoshaphat +32 +cried out, and the LORD helped him. God drew +And when the chariot +them away from him. +commanders saw that he was not the king of Is- +33 +rael, they turned back from pursuing him. + +However, a certain man drew his bow without +taking special aim, and he struck the king of Is- +rael between the joints of his armor. So the king + and take +said to his charioteer, “Turn around +34 +me out of the battle, for I am badly wounded!” + + a + +The battle raged throughout that day, and the +king of Israel propped himself up in his chariot +facing the Arameans until evening. And at sunset +Jehoshaphat Reproved by Jehu +he died. + +19 + +2 + +When Jehoshaphat king of Judah had re- +turned safely to his home in Jerusalem, +Jehu son of Hanani the seer went out to con- +front him and said to King Jehoshaphat, “Should +you help the wicked and love those who hate the +LORD? Because of this, the wrath of the LORD is +However, some good is found in you, +upon you. +for you have removed the Asherah poles from +Jehoshaphat’s Reforms +the land and have set your heart on seeking God.” +4 + +3 + +5 + +6 + +Jehoshaphat lived in Jerusalem, and once again +he went out among the people from Beersheba to +the hill country of Ephraim and turned them +He +back to the LORD, the God of their fathers. +appointed judges in the land, in each of the forti- +Then he said to the judges, +fied cities of Judah. +“Consider carefully what you do, for you are not +judging for man, but for the LORD, who is with +And now, may +you when you render judgment. +the fear of the LORD be upon you. Be careful +what you do, for with the LORD our God there is +8 +no injustice or partiality or bribery.” + +7 + +Moreover, Jehoshaphat appointed in Jerusalem +some of the Levites, priests, and heads of the +Israelite families to judge on behalf of the +a 33 +LORD and to settle disputes. And they lived in +Ammonites + +Turn your hand +b 1 +together with some besides the Ammonites + +c 2 + +10 + +He commanded them, saying, “You +Jerusalem. +must serve faithfully and wholeheartedly in the +For every dispute that comes +fear of the LORD. +before you from your brothers who dwell in their +cities—whether it regards bloodshed or some +other violation of law, commandments, statutes, +or ordinances—you are to warn them, so that +they will not incur guilt before the LORD and +wrath will not come upon you and your brothers. +11 +Do this, and you will not incur guilt. + +Note that Amariah, the chief priest, will be +over you in all that pertains to the LORD, and +Zebadiah son of Ishmael, the ruler of the house of +Judah, in all that pertains to the king. And the Le- +vites will serve as officers before you. Act reso- +War against Jehoshaphat +lutely; may the LORD be with the upright!” + +20 + +b +After this, the Moabites and Ammonites, +together with some of the Meunites, + +2 + +came to make war against Jehoshaphat. +Then +some men came and told Jehoshaphat, “A vast + from +army is coming against you from Edom, +beyond the Sea; + they are already in Hazazon- +3 +tamar” (that is, En-gedi). + + d + +c + +4 + +Jehoshaphat was alarmed and set his face to +seek the LORD. And he proclaimed a fast +So the people of Judah gath- +throughout Judah. +ered to seek the LORD, and indeed, they came +Jehoshaphat’s Prayer +from all the cities of Judah to seek Him. +5 + +6 + +Then Jehoshaphat stood in the assembly of Ju- +dah and Jerusalem in the house of the LORD in +and said, “O LORD, +front of the new courtyard +God of our fathers, are You not the God who is in +heaven, and do You not rule over all the king- +doms of the nations? Power and might are in +7 +Your hand, and no one can stand against You. + +8 + +Our God, did You not drive out the inhabitants +of this land before Your people Israel and give it +forever to the descendants of Abraham Your +They have lived in the land and have +friend? +built in it a sanctuary for Your Name, saying, +‘If +e +disaster comes upon us—whether sword or + plague or famine—we will stand be- +judgment, +fore this temple and before You, for Your Name +is in this temple. We will cry out to You in our +distress, and You will hear us and save us.’ + +together with some other + +9 + +Literally + or + +Aram + +d 2 + +Some LXX manuscripts (see also 2 Chronicles 26:7); Hebrew +the sword of judgment + +e 9 + +One Hebrew manuscript; most Hebrew manuscripts, LXX, + +and Vulgate + +That is, the Dead Sea + +Or + + 418 | 2 Chronicles 20:10 + +10 + +11 + +And now, here are the men of Ammon, Moab, +and Mount Seir, whom You did not let Israel in- +vade when they came out of the land of Egypt. So +Israel turned away from them and did not de- +See how they are repaying us by +stroy them. +coming to drive us out of the possession that You +12 +gave us as an inheritance. + +Our God, will You not judge them? For we are +powerless before this vast army that comes +against us. We do not know what to do, but our +13 +eyes are upon You.” + +Meanwhile all the men of Judah, with their +wives and children and little ones, were standing +The Prophecy of Jahaziel +before the LORD. +14 + +15 + +Then the Spirit of the LORD came upon Jaha- +ziel son of Zechariah, the son of Benaiah, the son +of Jeiel, the son of Mattaniah, a Levite from +Asaph’s descendants, as he stood in the midst of +the assembly. +And he said, “Listen, all you peo- +ple of Judah and Jerusalem! Listen, King Jehosha- +phat! This is what the LORD says: ‘Do not be +afraid or discouraged because of this vast army, +16 +for the battle does not belong to you, but to God. +Tomorrow you are to march down against +them. You will see them coming up the Ascent of +Ziz, and you will find them at the end of the valley +facing the Wilderness of Jeruel. +You need not +fight this battle. Take up your positions, stand +firm, and see the salvation of the LORD on your +behalf, O Judah and Jerusalem. Do not be afraid +or discouraged. Go out and face them tomorrow, +18 +for the LORD is with you.’ + +17 + +” + +19 + +Then Jehoshaphat bowed facedown, and all +the people of Judah and Jerusalem fell down be- +And the Levites +fore the LORD to worship Him. +from the Kohathites and Korahites stood up to +praise the LORD, the God of Israel, shouting in a +The Enemies Destroy Themselves +very loud voice. +20 + +Early in the morning they got up and left for +the Wilderness of Tekoa. As they set out, Jehosh- +aphat stood up and said, “Hear me, O people of +Judah and Jerusalem. Believe in the LORD your +God, and you will be upheld; believe in His +21 +prophets, and you will succeed.” + +Then Jehoshaphat consulted with the people +cherem +a 23 +and appointed those who would sing to the LORD +Forms of the Hebrew +goods and clothing and valuables +by giving them as an offering. + +c 26 Beracah + +and praise the splendor of His holiness. As they +went out before the army, they were singing: + +“Give thanks to the LORD, + +22 + +for His loving devotion endures forever.” + +23 + +The moment they began their shouts and +praises, the LORD set ambushes against the men +of Ammon, Moab, and Mount Seir who had come +The +against Judah, and they were defeated. +Ammonites and Moabites rose up against the +inhabitants of Mount Seir, devoting them to +destruction. + And when they had finished off +the inhabitants of Seir, they helped to destroy +24 +one another. + +a + +25 + +When the men of Judah came to a place over- +looking the wilderness, they looked for the vast +army, but there were only corpses lying on the +ground; no one had escaped. +Then Jehosha- +phat and his people went to carry off the plunder, +and they found on the bodies an abundance of +goods and valuables +—more than they could +carry away. They were gathering the plunder for +The Joyful Return +three days because there was so much. +26 + + b + +c + +On the fourth day they assembled in the Valley +of Beracah, + where they blessed the LORD. +Therefore that place is called the Valley of +27 +Beracah to this day. + +28 + +Then all the men of Judah and Jerusalem, with +Jehoshaphat at their head, returned joyfully to Je- +rusalem, for the LORD had made them rejoice +over their enemies. +So they entered Jerusalem +and went into the house of the LORD with harps, +29 +lyres, and trumpets. + +And the fear of God came upon all the king- +doms of the lands when they heard that the +30 +LORD had fought against the enemies of Israel. +Then Jehoshaphat’s kingdom was at peace, for + +Summary of Jehoshaphat’s Reign +his God had given him rest on every side. +(1 Kings 22:41–50) + +31 + +So Jehoshaphat reigned over Judah. He was +thirty-five years old when he became king, and +he reigned in Jerusalem twenty-five years. His +32 +mother’s name was Azubah daughter of Shilhi. + +And Jehoshaphat walked in the way of his fa- +ther Asa and did not turn away from it; he did +what was right in the eyes of the LORD. + +b 25 + refer to the giving over of things or persons to the LORD, either by destroying them or + +they found among them an abundance of + +blessing + +Some Hebrew manuscripts and Vulgate + + means + +. + + 33 + +9 + +2 Chronicles 21:19 | 419 + +The high places, however, were not removed; +the people had not yet set their hearts on the God +34 +of their fathers. + +As for the rest of the acts of Jehoshaphat, from +beginning to end, they are indeed written in the +Chronicles of Jehu son of Hanani, which are rec- +Jehoshaphat’s Fleet Is Wrecked +orded in the Book of the Kings of Israel. +35 + +a + +36 + +Later, Jehoshaphat king of Judah made an +alliance with Ahaziah king of Israel, who acted +b +wickedly. +They agreed to make ships to go to +37 + and these were built in Ezion-geber. +Tarshish, + +Then Eliezer son of Dodavahu of Mareshah +prophesied against Jehoshaphat, saying, “Be- +cause you have allied yourself with Ahaziah, the +LORD has destroyed your works.” + +c + +So Jehoram crossed into Edom with his officers +and all his chariots. When the Edomites sur- +rounded him and his chariot commanders, he +10 +rose up and attacked + + by night. + + e + +So to this day Edom has been in rebellion +against the hand of Judah. Likewise, Libnah +rebelled against his hand at the same time, +because Jehoram had forsaken the LORD, the +11 +God of his fathers. + +Jehoram had also built high places on the hills +of Judah; he had caused the people of Jerusalem +to prostitute themselves and had led Judah +Elijah’s Letter to Jehoram +astray. +12 + +Then a letter came to Jehoram from Elijah the + +prophet, which stated: + +So the ships were wrecked and were unable to +Jehoram Reigns in Judah (2 Kings 8:16–19) +sail to Tarshish. + +“This is what the LORD, the God of your fa- +ther David, says: + +21 + +And Jehoshaphat rested with his fathers +and was buried with them in the City of +2 +David. And his son Jehoram reigned in his place. + +d + +3 + +Jehoram’s brothers, the sons of Jehoshaphat, +were Azariah, Jehiel, Zechariah, Azariah, Michael, +and Shephatiah; these were all sons of Jehosha- +phat king of Israel. +Their father had given them +many gifts of silver and gold and precious things, +as well as the fortified cities in Judah; but he gave +the kingdom to Jehoram because he was the +4 +firstborn. + +When Jehoram had established himself over his +father’s kingdom, he strengthened himself by +putting to the sword all his brothers along with +some of the princes of Israel. +Jehoram was +thirty-two years old when he became king, and +6 +he reigned in Jerusalem eight years. + +5 + +7 + +And Jehoram walked in the ways of the kings of +Israel, just as the house of Ahab had done. For he +married a daughter of Ahab and did evil in the +sight of the LORD. +Yet the LORD was unwilling +to destroy the house of David, because of the cov- +enant He had made with David, and since He had +promised to maintain a lamp for David and his +Edom and Libnah Rebel (2 Kings 8:20–24) +descendants forever. +8 + +‘You have not walked in the ways of your fa- +13 +ther Jehoshaphat or of Asa king of Judah, +but you have walked in the ways of the +kings of Israel and have caused Judah and the +people of Jerusalem to prostitute them- +selves, just as the house of Ahab prostituted +itself. You have also killed your brothers, +your father’s family, who were better than +14 +you. + +15 + +So behold, the LORD is about to strike your +people, your sons, your wives, and all your +possessions with a serious blow. +And day +after day you yourself will suffer from a +severe illness, a disease of your bowels, until +it causes your bowels to come out.’ + +Jehoram’s Disease and Death + +” + +16 + +17 + +Then the LORD stirred against Jehoram the +spirit of the Philistines and Arabs who lived near +the Cushites. +So they went to war against Ju- +dah, invaded it, and carried off all the posses- +sions found in the king’s palace, along with his +sons and wives; not a son was left to him except +18 +Jehoahaz, + + his youngest. + +f + +19 + +After all this, the LORD afflicted Jehoram with +an incurable disease of the bowels. +This con- +tinued day after day until two full years had +passed. Finally, his intestines came out because +of his disease, and he died in severe pain. And his +people did not make a fire in his honor as they +had done for his fathers. + +a fleet of trading ships + +b 36 + +c 37 + +set sail to trade +he went +e 9 + +who made him act wickedly + +In the days of Jehoram, Edom rebelled against +a 35 +the hand of Judah and appointed their own king. +d 2 +out and escaped + +by which he acted wickedly + +Or + +Or +That is, Judah; in 2 Chronicles, Judah is occasionally called Israel, as representative of the true Israel. + +f 17 Jehoahaz + +Ahaziah + + or + +Or + +Or + + is a variant of + +; see 2 Chronicles 22:1. + + 420 | 2 Chronicles 21:20 + +20 + +Jehoram was thirty-two years old when he be- +came king, and he reigned in Jerusalem eight +years. He died, to no one’s regret, and was buried +in the City of David, but not in the tombs of the +Ahaziah Reigns in Judah (2 Kings 8:25–29) +kings. + +grandson of Jehoshaphat, who sought the LORD +with all his heart.” + +So no one was left from the house of Ahaziah +Athaliah and Joash (2 Kings 11:1–3) +with the strength to rule the kingdom. +10 + +22 + + a + +Then the people of Jerusalem made +Ahaziah, the youngest son of Jehoram, +king in his place, since the raiders who had come + killed all the +into the camp with the Arabs + b +2 +older sons. So Ahaziah son of Jehoram became + years +king of Judah. +old when he became king, and he reigned in Jeru- +salem one year. His mother’s name was Athaliah, +3 +the granddaughter of Omri. + +Ahaziah was twenty-two + + had + +4 + +Ahaziah also walked in the ways of the house of +Ahab, for his mother was his counselor in wick- +edness. +And he did evil in the sight of the LORD, +as the house of Ahab had done, for to his destruc- +tion they were his counselors after the death of +5 +his father. + + c + + d + +6 + + wounded Joram. + +Ahaziah also followed their counsel and went +with Joram son of Ahab king of Israel to fight +against Hazael king of Aram at Ramoth-gilead. +So he re- +But the Arameans +turned to Jezreel to recover from the wounds +they had inflicted on him at Ramah + when he +fought against Hazael king of Aram. Then + son of Jehoram king of Judah went +Ahaziah +down to Jezreel to visit Joram son of Ahab, be- +7 +cause Joram had been wounded. + +  f + + e + +Ahaziah’s downfall came from God when he +went to visit Joram. When Ahaziah arrived, + of +he went out with Joram to meet Jehu son +Nimshi, whom the LORD had anointed to destroy +Jehu Kills the Princes of Judah +the house of Ahab. +(2 Kings 9:14–29) + + g + +8 + +So while Jehu was executing judgment on the +house of Ahab, he found the rulers of Judah and +the sons of Ahaziah’s brothers who were serving +9 +Ahaziah, and he killed them. + +Then Jehu looked for Ahaziah, and Jehu’s +soldiers captured him while he was hiding in Sa- +maria. So Ahaziah was brought to Jehu and put to +a 1 +death. They buried him, for they said, “He is the +c 5 +Or +Ramoth +Some LXX manuscripts +riah + +since the marauding bands of Arabs + +Heb. +h 11 Jehoshabeath + +f 6 +grandson + +the archers d 5 + +b 2 + + h + +11 + +When Athaliah the mother of Ahaziah saw that +her son was dead, she proceeded to annihilate all +the royal heirs of the house of Judah. +But Je- +hoshabeath + daughter of King Jehoram took +Joash son of Ahaziah and stole him away from +among the sons of the king who were being +murdered, and she put him and his nurse in a +bedroom. Because Jehoshabeath, the daughter of +King Jehoram and the wife of Jehoiada the priest, +was Ahaziah’s sister, she hid Joash from Athaliah +12 +so that she could not kill him. + +And Joash remained hidden with them in the +house of God for six years while Athaliah ruled +Joash Anointed King of Judah +the land. +(2 Kings 11:4–12) + +23 + +Then in the seventh year, Jehoiada +strengthened himself and made a cove- +nant with the commanders of hundreds—with +Azariah son of Jeroham, Ishmael son of Jeho- +hanan, Azariah son of Obed, Maaseiah son of +So they +Adaiah, and Elishaphat son of Zichri. +went throughout Judah and gathered the Levites +from all the cities of Judah and the heads of the +families of Israel. And when they came to Jerusa- +the whole assembly made a covenant with +lem, +the king in the house of God. + +2 + +3 + +6 + +5 + + “Behold, the king’s son!” said Jehoiada. “He must +4 +reign, just as the LORD promised concerning the +This is what you are to +descendants of David. +do: A third of you priests and Levites who come +on duty on the Sabbath shall keep watch at the +a third shall be at the royal palace, and a +doors, +third at the Foundation Gate, while all the others +are to be in the courtyards of the house of the +No one is to enter the house of the LORD +LORD. +except the priests and those Levites who serve; +they may enter because they are consecrated, +but all the people are to obey the requirement of +The Levites must surround the king +the LORD. +with weapons in hand, and anyone who enters +the temple must be put to death. You must stay +forty-two +close to the king wherever he goes.” +e 6 Ramah + +Joram + +7 + +Jehoram +Some LXX manuscripts and Syriac (see also 2 Kings 8:26); Hebrew +; also in verses 6 and 7 +Jehosheba + +, a variant of + +Aza- + is a variant of + +Some Heb. manuscripts, LXX, Vulgate, and Syriac (see also 2 Kings 8:29); most Heb. manuscripts +; see 2 Kings 9:14. + +; twice in this verse; see 2 Kings 11:2. + + is a variant of + +g 7 +; see v. 5. + +Or + + 8 + +So the Levites and all Judah did everything that +Jehoiada the priest had ordered. Each of them +took his men—those coming on duty on the Sab- +bath and those going off duty—for Jehoiada the +9 +priest had not released any of the divisions. +Then Jehoiada the priest gave to the command- +ers of hundreds the spears and the large and +small shields of King David that were in the +house of God. +He stationed all the troops, with +their weapons in hand, surrounding the king by +the altar and the temple, from the south side to +11 +the north side of the temple. + +10 + +Then Jehoiada and his sons brought out the +king’s son, put the crown on him, presented him +with the Testimony, and proclaimed him king. +They anointed him and shouted, “Long live the +The Death of Athaliah (2 Kings 11:13–16) +king!” +12 + +13 + +When Athaliah heard the noise of the people +running and cheering the king, she went out to +them in the house of the LORD. +And she looked +and saw the king standing by his pillar at the +entrance. The officers and trumpeters were be- +side the king, and all the people of the land were +rejoicing and blowing trumpets, while the sing- +ers with musical instruments were leading the +praises. + +Then Athaliah tore her clothes and screamed, +14 +“Treason, treason!” + +a + +And Jehoiada the priest sent out the command- +ers of hundreds in charge of the army, saying, +“Bring her out between the ranks, + and put to the +sword anyone who follows her.” For the priest +had said, “She must not be put to death in the +15 +house of the LORD.” + +So they seized Athaliah as she reached the en- +trance of the Horse Gate on the palace grounds, +Jehoiada Restores the Worship of the LORD +and there they put her to death. +(2 Kings 11:17–21) + +16 + +17 + +Then Jehoiada made a covenant between him- +self and the king and the people that they would +be the LORD’s people. +So all the people went to +the temple of Baal and tore it down. They +smashed the altars and idols to pieces and killed +18 +Mattan the priest of Baal in front of the altars. + +Moreover, Jehoiada put the oversight of the +house of the LORD into the hands of the Levitical +a 14 +priests, whom David had appointed over the + +out from the precincts + +Or + +2 Chronicles 24:11 | 421 + +house of the LORD, to offer burnt offerings to +the LORD as written in the Law of Moses, with +rejoicing and song, as ordained by David. +He +stationed gatekeepers at the gates of the house of +the LORD, so that no one who was in any way +20 +unclean could enter. + +19 + +And he took with him the commanders of hun- +dreds, the nobles, the rulers of the people, and all +the people of the land, and they brought the king +down from the house of the LORD and entered +the royal palace through the Upper Gate. They +seated King Joash on the royal throne, +and all +the people of the land rejoiced. And the city was +quiet, because Athaliah had been put to the +Joash Repairs the Temple (2 Kings 12:1–16) +sword. + +21 + +24 + +2 + +Joash was seven years old when he be- +came king, and he reigned in Jerusalem +forty years. His mother’s name was Zibiah; she +And Joash did what was +was from Beersheba. +right in the eyes of the LORD all the days of Jehoi- +ada the priest. +Jehoiada took for him two wives, +4 +and he had sons and daughters. + +3 + +5 + +Some time later, Joash set his heart on repairing +So he gathered the +the house of the LORD. +priests and Levites and said, “Go out to the cities +of Judah and collect the money due annually +from all Israel, to repair the house of your God. +Do it quickly.” + +6 + +So +The Levites, however, did not make haste. +the king called Jehoiada the high priest and said, +“Why have you not required the Levites to bring +from Judah and Jerusalem the tax imposed by +Moses the servant of the LORD and by the assem- +7 +bly of Israel for the Tent of the Testimony?” + +For the sons of that wicked woman Athaliah had +broken into the house of God and had even used +the sacred objects of the house of the LORD for +8 +the Baals. + +9 + +At the king’s command a chest was made and +placed outside, at the gate of the house of the +LORD. +And a proclamation was issued in Judah +and Jerusalem that they were to bring to the +LORD the tax imposed by Moses the servant of +God on Israel in the wilderness. +All the officers +and all the people rejoiced and brought their +contributions, and they dropped them in the +11 +chest until it was full. + +10 + +Whenever the chest was brought by the Le- +vites to the king’s overseers and they saw that + + 422 | 2 Chronicles 24:12 + +12 + +there was a large amount of money, the royal +scribe and the officer of the high priest would +come and empty the chest and carry it back to its +place. They did this daily and gathered the +money in abundance. +Then the king and +Jehoiada would give the money to those who su- +pervised the labor on the house of the LORD to +hire stonecutters and carpenters to restore the +house of the LORD, as well as workers in iron and +13 +bronze to repair the house of the LORD. + +14 + +So the workmen labored, and in their hands +the repair work progressed. They restored the +house of God according to its specifications, and +When they were finished, +they reinforced it. +they brought the rest of the money to the king +and Jehoiada, and with it were made articles for +the house of the LORD—utensils for the service +and for the burnt offerings, dishes, and other ob- +jects of gold and silver. + +Throughout the days of Jehoiada, burnt offerings +were presented regularly in the house of the +Jehoiada’s Death and Burial +LORD. +15 + +When Jehoiada was old and full of years, he + +16 +died at the age of 130. + +And Jehoiada was buried with the kings in the +City of David, because he had done what was +The Wickedness of Joash +good in Israel for God and His temple. +17 + +After the death of Jehoiada, however, the offi- +18 +cials of Judah came and paid homage to the king, +They abandoned the +and he listened to them. +house of the LORD, the God of their fathers, and +served the Asherah poles and idols. So wrath +came upon Judah and Jerusalem for this guilt of +Nevertheless, the LORD sent prophets +theirs. +to bring the people back to Him and to testify +20 +against them, but they would not listen. + +19 + +Then the Spirit of God came upon Zechariah +son of Jehoiada the priest, who stood up before +the people and said to them, “This is what God +says: ‘Why do you transgress the command- +ments of the LORD so that you cannot prosper? +Because you have forsaken the LORD, He has for- +21 +saken you.’ + +” + +22 + +Thus King Joash failed to remember the kind- +ness that Zechariah’s father Jehoiada had ex- +tended to him. Instead, Joash killed Jehoiada’s +son. As he lay dying, Zechariah said, “May the +The Death of Joash (2 Kings 12:17–21) +LORD see this and call you to account.” +23 + +a + +24 + +In the spring, + + the army of Aram went to war +against Joash. They entered Judah and Jerusalem +and destroyed all the leaders of the people, and +they sent all the plunder to their king in Damas- +cus. +Although the Aramean army had come +with only a few men, the LORD delivered into +their hand a very great army. Because Judah had +forsaken the LORD, the God of their fathers, judg- +25 +ment was executed on Joash. + + b + +And when the Arameans had withdrawn, they +left Joash severely wounded. His own servants +conspired against him for shedding the blood of +the son + of Jehoiada the priest, and they killed +him on his bed. So he died and was buried in the +26 +City of David, but not in the tombs of the kings. +Those who conspired against Joash were Za- + d + son of Shimeath the Ammonitess and Je- + + c + +bad +27 +hozabad son of Shimrith + + the Moabitess. + + f + + e + +The accounts of the sons of Joash and the many +pronouncements about him, and of the restora- +tion + of the house of God, are indeed written in +the Treatise + of the Book of the Kings. And his son +Amaziah Reigns in Judah (2 Kings 14:1–7) +Amaziah reigned in his place. + +25 + +Amaziah was twenty-five years old when +he became king, and he reigned in Jeru- +salem twenty-nine years. His mother’s name was +And he did +Jehoaddan; she was from Jerusalem. +what was right in the eyes of the LORD, but not +3 +wholeheartedly. + +2 + +4 + +As soon as the kingdom was firmly in his grasp, +Amaziah executed the servants who had mur- +Yet he did not put +dered his father the king. +their sons to death, but acted according to what +is written in the Law, in the Book of Moses, where +the LORD commanded: “Fathers must not be put +to death for their children, and children must not +be put to death for their fathers; each is to die for +Amaziah’s Victories +his own sin.” +5 + + g + +But they conspired against Zechariah, and by +order of the king, they stoned him in the court- +a 23 +yard of the house of the LORD. + +At the turn of the year + +b 25 +Shomer + +d 26 Shimrith + +Literally + +12:21. + + is a variant of + +LXX and Vulgate; Heb. +; see 2 Kings 12:21. + +Then Amaziah gathered the people of Judah and +of the sons +assigned them according to their families to +g 4 +Exposition +e 27 +; see 2 Kings + is a variant of + or + +c 26 Zabad +f 27 + +Jozabad +Study + +founding + +De. 24:16 + +Or + +Or + + commanders of thousands and of hundreds. And +he numbered those twenty years of age or older +throughout Judah and Benjamin and found +300,000 chosen men able to serve in the army, +6 +bearing the spear and shield. + +a + +7 + +He also hired 100,000 mighty men of valor from +Israel for a hundred talents of silver. +But a man +of God came to him and said, “O king, do not let +the army of Israel go with you, for the LORD is +8 +not with Israel—not with any of the Ephraimites. +Even if you go and fight bravely in battle, God +will overthrow you before the enemy, for God +9 +has power to help and power to overthrow.” + +Amaziah asked the man of God, “What should I +do about the hundred talents I have given to the +troops of Israel?” + +And the man of God replied, “The LORD is able to +10 +give you much more than this.” + +So Amaziah dismissed the troops who had +come to him from Ephraim and sent them home. +And they were furious with Judah and returned +11 +home in great anger. + +12 + +Amaziah, however, summoned his strength +and led his troops to the Valley of Salt, where he +struck down 10,000 men of Seir, +and the army +of Judah also captured 10,000 men alive. They +took them to the top of a cliff and threw them +13 +down so that all were dashed to pieces. + +Meanwhile the troops that Amaziah had dis- +missed from battle raided the cities of Judah, +from Samaria to Beth-horon. They struck down +3,000 people and carried off a great deal of plun- +Amaziah Rebuked for Idolatry +der. +14 + +When Amaziah returned from the slaughter of +the Edomites, he brought back the gods of the +Seirites, set them up as his own gods, bowed be- +15 +fore them, and burned sacrifices to them. +Therefore the anger of the LORD burned +against Amaziah, and He sent him a prophet, who +said, “Why have you sought this people’s gods, +16 +which could not deliver them from your hand?” + +While he was still speaking, the king asked, +“Have we made you the counselor to the king? +Stop! Why be struck down?” + +So the prophet stopped, but he said, “I know that +God has determined to destroy you, because you +a 6 100 talents +have done this and have not heeded my advice.” + +c 23 Jehoahaz + +2 Chronicles 25:28 | 423 + +Jehoash Defeats Amaziah (2 Kings 14:8–14) + +17 + + b + +Then Amaziah king of Judah took counsel and +sent word to the king of Israel Jehoash + son of Je- +hoahaz, the son of Jehu. “Come, let us meet face +18 +to face,” he said. + +19 + +But Jehoash king of Israel replied to Amaziah +king of Judah: “A thistle in Lebanon sent a mes- +sage to a cedar in Lebanon, saying, ‘Give your +daughter to my son in marriage.’ Then a wild +beast in Lebanon came along and trampled the +thistle. +You have said, ‘Look, I have defeated +Edom,’ and your heart has become proud and +boastful. Now stay at home. Why should you stir +up trouble so that you fall—you and Judah with +20 +you?” + +21 + +But Amaziah would not listen, for this had +come from God in order to deliver them into the +hand of Jehoash, because they had sought the +gods of Edom. +So Jehoash king of Israel ad- +vanced, and he and Amaziah king of Judah faced +each other at Beth-shemesh in Judah. +And Ju- +dah was routed before Israel, and every man fled +23 +to his own home. + +22 + +There at Beth-shemesh, Jehoash king of Israel +captured Amaziah king of Judah, the son of Joash, +the son of Jehoahaz. + +c + +d + +Then Jehoash brought him to Jerusalem and +broke down the wall of Jerusalem from the +24 +Ephraim Gate to the Corner Gate—a section of +four hundred cubits. +He took all the gold and +silver and all the articles found in the house of +God with Obed-edom and in the treasuries of the +royal palace, as well as some hostages. Then he +The Death of Amaziah (2 Kings 14:17–20) +returned to Samaria. +25 + +Amaziah son of Joash king of Judah lived for +26 +fifteen years after the death of Jehoash son of +Jehoahaz king of Israel. +As for the rest of the +acts of Amaziah, from beginning to end, are they +not written in the Book of the Kings of Judah and +27 +Israel? + +From the time that Amaziah turned from fol- +lowing the LORD, a conspiracy was formed +against him in Jerusalem, and he fled to Lachish. +But men were sent after him to Lachish, and they +killed him there. +They carried him back on +e +horses and buried him with his fathers in the City +b 17 Jehoash +of Judah. + +Joash + +28 + +Ahaziah + +d 23 400 cubits + +e 28 + +also in vv. 18, 21, 23, and 25. +ters. + + is approximately 3.77 tons or 3.42 metric tons of silver; also in verse 9. + is a variant of +Most Hebrew manuscripts; some Hebrew manuscripts, LXX, Vulgate, and Syriac + +. + +City of David + + is a variant of + +; + + is approximately 600 feet or 182.9 me- + +; see 2 Kings 14:20. + + 424 | 2 Chronicles 26:1 + +Uzziah Reigns in Judah +(2 Kings 14:21–22 ; 2 Kings 15:1–7) + +26 + +a + +2 + +All the people of Judah took Uzziah, + who +was sixteen years old, and made him +Uzziah was + c + and restored it + rested with his + +king in place of his father Amaziah. +the one who rebuilt Eloth +to Judah after King Amaziah +3 +fathers. + + b + +4 + +5 + +Uzziah was sixteen years old when he became +king, and he reigned in Jerusalem fifty-two years. +His mother’s name was Jecoliah; she was from +Jerusalem. +And he did what was right in the +eyes of the LORD, just as his father Amaziah had +done. +He sought God throughout the days of +Zechariah, who instructed him in the fear + of +God. And as long as he sought the LORD, God +6 +gave him success. + + d + +Uzziah went out to wage war against the Philis- +tines, and he tore down the walls of Gath, Jabneh, +7 +and Ashdod. Then he built cities near Ashdod and +God helped him against +among the Philistines. +the Philistines, against the Arabs living in Gur- +The Ammonites +baal, and against the Meunites. +brought tribute to Uzziah, and his fame spread as +far as the border of Egypt, for he had become ex- +9 +ceedingly powerful. + +8 + +Uzziah built towers in Jerusalem at the Corner +10 +Gate, the Valley Gate, and the angle in the wall, + e +Since he had much live- +and he fortified them. +stock in the foothills + and in the plain, he built +towers in the desert and dug many cisterns. And +since he was a lover of the soil, he had farmers +and vinedressers in the hill country and in the +11 +fertile fields. + +12 + +Uzziah had an army ready for battle that went +out to war by assigned divisions, as recorded by +Jeiel the scribe and Maaseiah the officer under +the direction of Hananiah, one of the royal offic- +The total number of family leaders of the +ers. +Under their +mighty men of valor was 2,600. +authority was an army of 307,500 trained for +war, a powerful force to support the king against +14 +his enemies. + +13 + +Uzziah supplied the entire army with shields, +15 +spears, helmets, armor, bows, and slingstones. +And in Jerusalem he made skillfully designed +Azariah + arrows and catapult large + +a 1 Uzziah +devices to shoot + + f + +stones from the towers and corners. So his fame +spread far and wide, for he was helped tremen- +16 +dously until he became powerful. + +But when Uzziah became powerful, his arro- +gance led to his own destruction. He was +unfaithful to the LORD his God, for he entered the +temple of the LORD to burn incense on the altar +17 +of incense. + +Then Azariah the priest, along with eighty +18 +brave priests of the LORD, went in after him. +They took their stand against King Uzziah and +said, “Uzziah, you have no right to offer incense +to the LORD. Only the priests, the descendants of +Aaron, are consecrated to burn incense. Leave +the sanctuary, for you have acted unfaithfully; +19 +you will not receive honor from the LORD God.” + + g + +20 + +Uzziah, with a censer in his hand to offer in- +cense, was enraged. But while he raged against +the priests in their presence in the house of the +LORD before the altar of incense, leprosy + broke +out on his forehead. +When Azariah the chief +priest and all the priests turned to him and saw +his leprous forehead, they rushed him out. In- +deed, he himself hurried to get out, because the +21 +LORD had afflicted him. + +So King Uzziah was a leper until the day +of his death. He lived in isolation, leprous and cut +off from the house of the LORD, while his son +Jotham had charge of the royal palace and gov- +22 +erned the people of the land. + +23 + +As for the rest of the acts of Uzziah, from be- +ginning to end, they are recorded by the prophet + h +Isaiah son of Amoz. +And Uzziah rested with his +fathers and was buried near them + in a field of +burial that belonged to the kings, for the people +said, “He was a leper.” And his son Jotham +Jotham Reigns in Judah +reigned in his place. +(2 Kings 15:32–38) + +27 + +2 + +Jotham was twenty-five years old when +he became king, and he reigned in Jeru- + i +salem sixteen years. His mother’s name was +And he did what +Jerushah +was right in the eyes of the LORD, just as his +father Uzziah + had done. In addition, he did not +enter the temple of the LORD. But the people still +b 2 Eloth +behaved corruptly. + + daughter of Zadok. + +Elath + +  j + +through the vision + + is also called +Kings 14:22, and 2 Kings 16:6. +tect those who shoot +manuscripts +fathers +i 1 Jerushah + +g 19 Leprosy + +c 2 +; throughout this chapter; see 2 Kings 14:21. +e 10 + +after the king +Shephelah + +lowlands + +d 5 + +Literally +Jerusha + was a term used for various skin diseases; see Leviticus 13. + +j 2 Uzziah + +Hebrew + +Azariah + + or + +; that is, the western foothills of Judea + + is a variant of +to pro- +Many Hebrew manuscripts, LXX, and Syriac; other Hebrew +h 23 + +; see LXX, 2 + +f 15 + +with his +Or + + is a variant of + +; see 2 Kings 15:33. + + is also called + +Literally +; see 2 Kings 14:21. + + 2 Chronicles 28:19 | 425 + +3 + +4 + +Jotham rebuilt the Upper Gate of the house of +the LORD, and he worked extensively on the wall +at the hill of Ophel. +He also built cities in the hill +country of Judah and fortresses and towers in the +5 +forests. + +governor of the palace, and Elkanah the second +to the king. +Then the Israelites took 200,000 +captives from their kinsmen—women, sons, and +daughters. They also carried off a great deal of +9 +plunder and brought it to Samaria. + +8 + +c + +b + +a + +Jotham waged war against the king of the Am- +monites and defeated them, and that year they +gave him a hundred talents of silver, + ten thou- + and ten thousand cors of +sand cors of wheat, +6 +barley. + They paid him the same in the second +So Jotham grew powerful be- +and third years. +cause he ordered his ways before the LORD his +7 +God. + +8 + +As for the rest of the acts of Jotham, along with +all his wars and his ways, they are indeed written +in the Book of the Kings of Israel and Judah. +He +9 +was twenty-five years old when he became king, +and he reigned in Jerusalem sixteen years. +And +Jotham rested with his fathers and was buried in +the City of David. And his son Ahaz reigned in his +Ahaz Reigns in Judah (2 Kings 16:1–9) +place. + +28 + +Ahaz was twenty years old when he be- +came king, and he reigned in Jerusalem +sixteen years. And unlike David his father, he did +2 +not do what was right in the eyes of the LORD. +Instead, he walked in the ways of the kings of + +3 +Israel and even made cast images of the Baals. + +d +Moreover, Ahaz burned incense in the Valley of + +Ben-hinnom and sacrificed his sons in the fire, +according to the abominations of the nations that +4 +the LORD had driven out before the Israelites. +And he sacrificed and burned incense on the +high places, on the hills, and under every green +Aram Defeats Judah (Isaiah 1:1–9) +tree. +5 + +So the LORD his God delivered Ahaz into the +hand of the king of Aram, who attacked him and +took many captives to Damascus. + +6 + +Ahaz was also delivered into the hand of the king +of Israel, who struck him with great force. +For +in one day Pekah son of Remaliah killed 120,000 +valiant men in Judah. This happened because +they had forsaken the LORD, the God of their fa- +thers. +Zichri, a mighty man of Ephraim, killed +a 5 100 talents +Maaseiah the son of the king, Azrikam the + +7 + +But a prophet of the LORD named Oded was +there, and he went out to meet the army +that returned to Samaria. “Look,” he said to them, +“because of His wrath against Judah, the LORD, +the God of your fathers, has delivered them into +your hand. But you have slaughtered them in a +rage that reaches up to heaven. +And now you +intend to reduce to slavery the men and women +11 +of Judah and Jerusalem. But are you not also +guilty before the LORD your God? +Now there- +fore, listen to me and return the captives you +took from your kinsmen, for the fierce anger of +12 +the LORD is upon you.” + +10 + + e + +f + +Then some of the leaders of the Ephraim- +—Azariah son of Jehohanan, Berechiah son +ites + Jehizkiah son of Shallum, and +of Meshillemoth, +13 +Amasa son of Hadlai—stood in opposition to +those arriving from the war. +“You must not +bring the captives here,” they said, “for you are +proposing to bring guilt upon us from the LORD +and to add to our sins and our guilt. For our guilt +14 +is great, and fierce anger is upon Israel.” + +So the armed men left the captives and the +15 +plunder before the leaders and all the assembly. +Then the men who were designated by name +arose, took charge of the captives, and provided +from the plunder clothing for the naked. They +clothed them, gave them sandals and food and +drink, anointed their wounds, and put all the fee- +ble on donkeys. So they brought them to Jericho, +the City of Palms, to their brothers. Then they re- +The Idolatry of Ahaz (2 Kings 16:10–20) +turned to Samaria. +16 + + g + +17 + + h + + of Assyria. + +At that time King Ahaz sent for help from the +The Edomites had again come +king +18 +and attacked Judah and carried away captives. +The Philistines had also raided the cities of the + and the Negev of Judah, capturing and +foothills +occupying Beth-shemesh, Aijalon, and Gederoth, +19 +as well as Soco, Timnah, and Gimzo with their vil- +lages. +For the LORD humbled Judah because + had thrown off restraint in +Ahaz king of Israel +b 5 10,000 cors +Judah and had been most unfaithful to the LORD. +c 5 10,000 cors + is approx. 62,400 bushels or 2.2 mil- +d 3 + is approx. 62,400 bushels or 2.2 mil- + +passed his sons through the fire +Meshillemith +lowlands + +Literally + + i + +; see 1 Chr. 9:12. +; that is, the western + + is approximately 3.77 tons or 3.42 metric tons of silver. +lion liters (probably about 1,920 tons or 1,740 metric tons of wheat). +e 12 +lion liters (probably about 1,450 tons or 1,315 metric tons of barley). + h 18 +g 16 + +kings + +f 12 Meshillemoth + +That is, the leaders of the northern kingdom of Israel +LXX, Syriac, and Vulgate (see also 2 Kings 16:7); Heb. + +i 19 + +Shephelah + is a variant of + or + +Hebrew + +foothills of Judea + +That is, Judah; in 2 Chronicles, Judah is occasionally called Israel, as representative of the true Israel. + + 426 | 2 Chronicles 28:20 + +20 + + a + +21 + +Then Tiglath-pileser + + king of Assyria came to +Ahaz but afflicted him rather than strengthening +Although Ahaz had taken a portion from +him. +the house of the LORD, from the royal palace, and +from the princes and had presented it to the king +22 +of Assyria, it did not help him. + +23 + +In the time of his distress, King Ahaz became +He sacri- +even more unfaithful to the LORD. +ficed to the gods of Damascus, who had defeated +him, and he said, “Because the gods of the kings +of Aram have helped them, I will sacrifice to them +that they may help me.” But these gods were the +24 +downfall of Ahaz and of all Israel. + +Then Ahaz gathered up the articles of the +house of God, cut them into pieces, shut the doors +of the house of the LORD, and set up altars of his +In +own on every street corner in Jerusalem. +every city of Judah he built high places to offer +incense to other gods, and so he provoked the +26 +LORD, the God of his fathers. + +25 + +27 + +As for the rest of the acts of Ahaz and all his +ways, from beginning to end, they are indeed +written in the Book of the Kings of Judah and Is- +And Ahaz rested with his fathers and was +rael. +buried in the city of Jerusalem, but he was not +placed in the tombs of the kings of Israel. And his +Hezekiah Cleanses the Temple +son Hezekiah reigned in his place. +(2 Kings 18:1–12) + +29 + +b + +Hezekiah was twenty-five years old +when he became king, and he reigned in +Jerusalem twenty-nine years. His mother’s name +And he +was Abijah, +did what was right in the eyes of the LORD, just +3 +as his father David had done. + + the daughter of Zechariah. + +2 + +In the first month of the first year of his reign, +4 +Hezekiah opened and repaired the doors of +Then he brought in the +the house of the LORD. +priests and Levites and gathered them in the +5 +square on the east side. + +“Listen to me, O Levites,” he said. “Consecrate +yourselves now and consecrate the house of the +LORD, the God of your fathers. Remove from the +6 +Holy Place every impurity. + +For our fathers were unfaithful and did evil in +the sight of the LORD our God. They abandoned +Him, turned their faces away from the dwelling +place of the LORD, and turned their backs on +a 20 +They also shut the doors of the portico and +Him. + +Tilgath-pilneser + +7 + +Tiglath-pileser + +extinguished the lamps. They did not burn in- +cense or present burnt offerings in the Holy Place +8 +of the God of Israel. + +Therefore, the wrath of the LORD has fallen +upon Judah and Jerusalem, and He has made +them an object of terror, horror, and scorn, as +For behold, +you can see with your own eyes. +this is why our fathers have fallen by the sword, +and our sons and daughters and wives are in cap- +10 +tivity. + +9 + +11 + +Now it is in my heart to make a covenant with +the LORD, the God of Israel, so that His fierce an- +Now, my sons, do +ger will turn away from us. +not be negligent, for the LORD has chosen you to +stand before Him, to serve Him, to minister be- +12 +fore Him, and to burn incense.” + +Then the Levites set to work: + +Mahath son of Amasai and Joel son of +Azariah from the Kohathites; +Kish son of Abdi and Azariah son of +Jehallelel from the Merarites; +Joah son of Zimmah and Eden son of Joah +13 +from the Gershonites; + +Shimri and Jeuel from the Elizaphanites; + +Zechariah and Mattaniah from the Asaph- +14 +ites; + +Jehiel and Shimei from the Hemanites; + +15 + +and Shemaiah and Uzziel from the +Jeduthunites. + +When they had assembled their brothers and +consecrated themselves, they went in to cleanse +the house of the LORD, according to the com- +16 +mand of the king by the words of the LORD. + +17 + +So the priests went inside the house of the +LORD to cleanse it, and they brought out to the +courtyard all the unclean things that they found +in the temple of the LORD. Then the Levites took +these things and carried them out to the Kidron +They began the consecration on the +Valley. +first day of the first month, and on the eighth day +of the month they reached the portico of the +LORD. For eight more days they consecrated the +house of the LORD itself, finishing on the six- +18 +teenth day of the first month. + +Then they went in to King Hezekiah and re- +ported, “We have cleansed the entire house of +the LORD, the altar of burnt offering with all its +Abi +utensils, and the table of the showbread with all + +b 1 Abijah + +Hebrew + +, a variant spelling of + + is a variant of + +; see 2 Kings 18:2. + + 19 + +Moreover, we have prepared and +its utensils. +consecrated all the articles that King Ahaz in his +unfaithfulness cast aside during his reign. They +Hezekiah Restores Temple Worship +are now in front of the altar of the LORD.” +20 + +21 + +Early the next morning King Hezekiah gath- +ered the city officials and went up to the house of +the LORD. +They brought seven bulls, seven +rams, seven lambs, and seven male goats as a sin +offering for the kingdom, for the sanctuary, and +for Judah. And the king commanded the priests, +the descendants of Aaron, to offer them on the al- +22 +tar of the LORD. + +So they slaughtered the bulls, and the priests +took the blood and splattered it on the altar. They +slaughtered the rams and splattered the blood on +the altar. And they slaughtered the lambs and +23 +splattered the blood on the altar. + +Then they brought the goats for the sin offer- +24 +ing before the king and the assembly, who laid +their hands on them. +And the priests slaugh- +tered the goats and put their blood on the altar +for a sin offering, to make atonement for all +Israel, because the king had ordered the burnt +25 +offering and the sin offering for all Israel. + +Hezekiah stationed the Levites in the house +of the LORD with cymbals, harps, and lyres ac- +cording to the command of David, of Gad the +king’s seer, and of Nathan the prophet. For the +command had come from the LORD through +His prophets. +The Levites stood with the in- +struments of David, and the priests with the +27 +trumpets. + +26 + +And Hezekiah ordered that the burnt offering +be sacrificed on the altar. When the burnt offer- +ing began, the song of the LORD and the trumpets +began as well, accompanied by the instruments +of David king of Israel. +The whole assembly +was worshiping, the singers were singing, and +the trumpeters were playing. All this continued +29 +until the burnt offering was completed. + +28 + +30 + +When the offerings were completed, the king +and all those present with him bowed down and +worshiped. +Then King Hezekiah and his offi- +cials ordered the Levites to sing praises to the +LORD in the words of David and of Asaph the +seer. So they sang praises with gladness and +31 +bowed down and worshiped. + +a + +Then Hezekiah said, “Now that you have con- +b 2 + come near and + +a 31 +secrated yourselves to the LORD, + +filled your hand for the LORD + +2 Chronicles 30:6 | 427 + +bring sacrifices and thank offerings to the house +of the LORD.” + +32 + +So the assembly brought sacrifices and thank of- +ferings, and all whose hearts were willing +The number of burnt +brought burnt offerings. +offerings the assembly brought was seventy +bulls, a hundred rams, and two hundred lambs; +33 +all these were for a burnt offering to the LORD. +And the consecrated offerings were six hun- + +34 +dred bulls and three thousand sheep. + +However, since there were not enough priests +to skin all the burnt offerings, their Levite broth- +ers helped them until the work was finished and +until the priests had consecrated themselves. For +the Levites had been more diligent in consecrat- +35 +ing themselves than the priests had been. + +Furthermore, the burnt offerings were abun- +dant, along with the fat of the peace offerings and +the drink offerings for the burnt offerings. So the +36 +service of the house of the LORD was established. +Then Hezekiah and all the people rejoiced at +what God had prepared for the people, because +Hezekiah Proclaims a Passover +everything had been accomplished so quickly. + +30 + +Then Hezekiah sent word throughout all +Israel and Judah, and he also wrote let- +ters to Ephraim and Manasseh inviting them to +come to the house of the LORD in Jerusalem to +2 +keep the Passover of the LORD, the God of Israel. +For the king and his officials and the whole as- +sembly in Jerusalem had decided to keep the +since they had +Passover in the second month, +been unable to keep it at the regular time, +because not enough priests had consecrated +themselves and the people had not been gath- +4 +ered in Jerusalem. + +3 + +b + +5 + +This plan pleased the king and the whole +assembly. +So they established a decree to +circulate a proclamation throughout Israel, from +Beersheba to Dan, that the people should come +to keep the Passover of the LORD, the God of Is- +rael, in Jerusalem. For they had not observed it in +6 +great numbers as prescribed. + +At the command of the king, the couriers went +throughout Israel and Judah with letters from +the king and his officials, which read: + + “Children of Israel, return to the LORD, the +God of Abraham, Isaac, and Israel, so that He +may return to those of you who remain, who +have escaped the grasp of the kings of + +Or + +See Numbers 9:9–12. + + 428 | 2 Chronicles 30:7 + +7 + +Do not be like your fathers and +Assyria. +brothers who were unfaithful to the LORD, +the God of their fathers, so that He made +8 +them an object of horror, as you can see. + +9 + +Now do not stiffen your necks as your fa- +thers did. Submit to the LORD and come to +His sanctuary, which He has consecrated for- +ever. Serve the LORD your God, so that His +fierce anger will turn away from you. +For if +you return to the LORD, your brothers and +sons will receive mercy in the presence of +their captors and will return to this land. For +the LORD your God is gracious and merciful; +He will not turn His face away from you if you +return to Him.” + +10 + +12 + +11 + +And the couriers traveled from city to city +through the land of Ephraim and Manasseh as far +as Zebulun, but the people scorned and mocked +them. +Nevertheless, some from Asher, Manas- +seh, and Zebulun humbled themselves and came +to Jerusalem. +Moreover, the power of God was +on the people in Judah to give them one heart to +obey the command of the king and his officials +Hezekiah Celebrates the Passover +according to the word of the LORD. +13 + +a + +15 + +14 + +In the second month, a very great assembly +gathered in Jerusalem to celebrate the Feast of +Unleavened Bread. +They proceeded to re- +move the altars in Jerusalem and to take away +the incense altars and throw them into the Ki- +dron Valley. +And on the fourteenth day of the +second month they slaughtered the Passover +lamb. The priests and Levites were ashamed, and +they consecrated themselves and brought burnt +16 +offerings to the house of the LORD. + +17 + +They stood at their prescribed posts, accord- +ing to the Law of Moses the man of God. The +priests splattered the blood, which they received +from the hand of the Levites. +Since there were +many in the assembly who had not consecrated +themselves, the Levites were in charge of slaugh- +tering the Passover lambs for every unclean +18 +person to consecrate the lambs to the LORD. + +A large number of the people—many from +Ephraim, Manasseh, Issachar, and Zebulun—had +not purified themselves, yet they ate the Passo- +ver, contrary to what was written. But Hezekiah +interceded for them, saying, “May the LORD, who +is good, provide atonement for everyone +who +a 13 +sets his heart on seeking God—the LORD, the God +b 21 + +19 + +of his fathers—even if he is not cleansed accord- +20 +ing to the purification rules of the sanctuary.” + +21 + +b + +22 + +And the LORD heard Hezekiah and healed the +people. +The Israelites who were present in Je- +rusalem celebrated the Feast of Unleavened +Bread for seven days with great joy, and the Le- +vites and priests praised the LORD day after day, +accompanied by loud instruments of praise to +the LORD. +And Hezekiah encouraged all the +Levites who performed skillfully before the +LORD. For seven days they ate their assigned +portion, sacrificing peace offerings and giving +23 +thanks to the LORD, the God of their fathers. + +24 + +The whole assembly agreed to observe seven +more days, so they observed seven days with +joy. +For Hezekiah king of Judah contributed a +thousand bulls and seven thousand sheep for the +assembly, and the officials contributed a thou- +sand bulls and ten thousand sheep for the assem- +bly, and a great number of priests consecrated +25 +themselves. + +Then the whole assembly of Judah rejoiced +along with the priests and Levites and the whole +assembly that had come from Israel, including +the foreigners who had come from Israel and +those who lived in Judah. +So there was great +rejoicing in Jerusalem, for nothing like this had +happened there since the days of Solomon son of +27 +David king of Israel. + +26 + +Then the priests and the Levites stood to bless +the people, and God heard their voice, and their +prayer came into His holy dwelling place in +The Destruction of Idols +heaven. + +31 + +When all this had ended, the Israelites in +attendance went out to the cities of Ju- +dah and broke up the sacred pillars, chopped +down the Asherah poles, and tore down the high +places and altars throughout Judah and Benja- +min, as well as in Ephraim and Manasseh, until +they had utterly destroyed them all. Then all the +Israelites returned to their cities, each to his own +2 +property. + +Hezekiah reestablished the divisions of the +priests and Levites—each of them according to +their duties as priests or Levites—for the burnt +offerings and peace offerings, for ministry, for +giving thanks, and for singing praises at the gates +of the LORD’s dwelling. + +day after day, with all their strength to the LORD. + +day after day, with loud instruments to the LORD. +That is, the seven-day period after the Passover during which no leaven may be eaten; see Exodus 12:14–20. + Literally +Or + + Contributions for Worship + +16 + +2 Chronicles 32:7 | 429 + +3 + +4 + +The king contributed from his own possessions +for the regular morning and evening burnt offer- +ings and for the burnt offerings on the Sabbaths, +New Moons, and appointed feasts, as written in +the Law of the LORD. +Moreover, he commanded +the people living in Jerusalem to make a contri- +bution for the priests and Levites so that they +5 +could devote themselves to the Law of the LORD. + +6 + +As soon as the order went out, the Israelites +generously provided the firstfruits of the grain, +new wine, oil, and honey, and of all the produce +of the field, and they brought in an abundance— +And the Israelites and Ju- +a tithe of everything. +dahites who lived in the cities of Judah also +brought a tithe of their herds and flocks and a +tithe of the holy things consecrated to the LORD +7 +their God, and they laid them in large heaps. + +In the third month they began building up the +8 +heaps, and they finished in the seventh month. +When Hezekiah and his officials came and +viewed the heaps, they blessed the LORD and His +9 +people Israel. + +10 +Then Hezekiah questioned the priests and Le- +and Azariah, the chief +vites about the heaps, +priest of the household of Zadok, answered him, +“Since the people began to bring their contribu- +tions into the house of the LORD, we have had +enough to eat, and there is plenty left over, be- +cause the LORD has blessed His people; this great +Hezekiah Organizes the Priests +abundance is what is left over.” +11 + +12 + +13 + +Then Hezekiah commanded them to prepare +storerooms in the house of the LORD, and they +And they faithfully brought in the con- +did so. +tributions, tithes, and dedicated gifts. Conaniah +the Levite was the officer in charge of them, and +Jehiel, Azaziah, +his brother Shimei was second. +Jozabad, Eliel, +Jerimoth, +Nahath, Asahel, +Ismachiah, Mahath, and Benaiah were overseers +under the authority of Conaniah and his brother +Shimei, by appointment of King Hezekiah and of +14 +Azariah the chief official of the house of God. + +15 + +Kore son of Imnah the Levite, the keeper of the +East Gate, was in charge of the freewill offerings +given to God, distributing the contributions to +the LORD and the consecrated gifts. +Under his +authority, Eden, Miniamin, Jeshua, Shemaiah, +Amariah, and Shecaniah faithfully distributed +portions to their fellow priests in their cities, ac- +a 15 +cording to their divisions, old and young alike. + +whether large or small + +b 4 + +a + +In addition, they distributed portions to the +males registered by genealogy who were three +years of age or older—to all who would enter the +house of the LORD for their daily duties for ser- +17 +vice in the responsibilities of their divisions— +and to the priests enrolled according to their +families in the genealogy, as well as to the Levites +twenty years of age or older, according to their +The genealogy +responsibilities and divisions. +included all the little ones, wives, sons, and +daughters of the whole assembly. For they had +19 +faithfully consecrated themselves as holy. + +18 + +As for the priests, the descendants of Aaron, +who lived on the farmlands around each of their +cities or in any other city, men were designated +by name to distribute a portion to every male +among the priests and to every Levite listed by +20 +the genealogies. + +So this is what Hezekiah did throughout Judah. +21 +He did what was good and upright and true be- +fore the LORD his God. +He acted with all his +heart in every work that he began in the service +of the house of God, and in the law and the com- +mandments, in order to seek his God. And so he +Sennacherib Invades Judah +prospered. +(2 Kings 18:13–16 ; Psalm 46:1–11) + +32 + +After all these acts of faithfulness, Sen- +nacherib king of Assyria came and in- +vaded Judah. He laid siege to the fortified cities, +2 +intending to conquer them for himself. + +3 + +4 + +When Hezekiah saw that Sennacherib had come +he consulted +to make war against Jerusalem, +with his leaders and mighty men about stopping +up the waters of the springs outside the city, and +Many people as- +they helped him carry it out. +sembled and stopped up all the springs and the +stream that flowed through the land. “Why + of Assyria come and find +should the kings +5 +plenty of water?” they said. + + b + +Then Hezekiah worked resolutely to rebuild all +the broken sections of the wall and to raise up +towers on it. He also built an outer wall and rein- + of the City of Da- +forced the supporting terraces +vid, and he produced an abundance of weapons +6 +and shields. + + c + +7 + +Hezekiah appointed military commanders over +the people and gathered the people in the square +of the city gate. Then he encouraged them, say- +“Be strong and courageous! Do not be afraid +ing, +or discouraged before the king of Assyria and the + +the Millo + +c 5 + +king + +Or + +Hebrew; LXX and Syriac + +Hebrew + + 430 | 2 Chronicles 32:8 + +a + +8 +vast army with him, for there is a greater One +With him is only the arm +with us than with him. +of flesh, + but with us is the LORD our God to help +us and to fight our battles.” + +So the people were strengthened by the words of +Sennacherib Threatens Jerusalem +Hezekiah king of Judah. +(2 Kings 18:17–37 ; Isaiah 36:1–22) + +9 + +10 + +Later, as Sennacherib king of Assyria and all his +forces besieged Lachish, he sent his servants to +Jerusalem with a message for King Hezekiah of +Judah and all the people of Judah who were in Je- +rusalem: +“This is what Sennacherib king of As- +syria says: What is the basis of your confidence, +that you remain in Jerusalem under siege? +Is +not Hezekiah misleading you to give you over to +death by famine and thirst when he says, ‘The +LORD our God will deliver us from the hand of +the king of Assyria?’ +Did not Hezekiah himself +remove His high places and His altars and say to +Judah and Jerusalem, ‘You must worship before +13 +one altar, and on it you shall burn sacrifices’? + +11 + +12 + +14 + +Do you not know what I and my fathers have +done to all the peoples of the lands? Have the +gods of these nations ever been able to deliver +Who among all the +their land from my hand? +gods of these nations that my fathers devoted to +destruction + has been able to deliver his people +from my hand? How then can your God deliver +15 +you from my hand? + + b + +So now, do not let Hezekiah deceive you, and +do not let him mislead you like this. Do not be- +lieve him, for no god of any nation or kingdom +has been able to deliver his people from my hand +or from the hand of my fathers. How much less +16 +will your God deliver you from my hand!” + +17 + +And the servants of Sennacherib spoke further +against the LORD God and against His servant +Hezekiah. +He also wrote letters mocking the +LORD, the God of Israel, and saying against Him: +“Just as the gods of the nations did not deliver +their people from my hand, so the God of Heze- +18 +kiah will not deliver His people from my hand.” + + c + +19 + +Then the Assyrians called out loudly in He- +brew + to the people of Jerusalem who were on +the wall, to frighten and terrify them in order to +They spoke against the God of +capture the city. +Jerusalem as they had spoken against the gods of +the peoples of the earth—the work of human +a 8 +hands. +Or + +He has only the strength of his own flesh + +b 14 + +Jerusalem Delivered from the Assyrians +(2 Kings 19:35–37 ; Isaiah 37:36–38) + +20 + +In response, King Hezekiah and the prophet +21 +Isaiah son of Amoz cried out to heaven in prayer, +and the LORD sent an angel who annihilated +every mighty man of valor and every leader and +commander in the camp of the king of Assyria. So +he withdrew to his own land in disgrace. And +when he entered the temple of his god, some of +22 +his own sons struck him down with the sword. + +23 + +So the LORD saved Hezekiah and the people of +Jerusalem from the hands of King Sennacherib of +Assyria and all others, and He gave them rest on +Many brought offerings to Jerusa- +every side. +lem for the LORD and valuable gifts for Hezekiah +king of Judah, and from then on he was exalted in +Hezekiah’s Illness and Recovery +the eyes of all nations. +(2 Kings 20:1–11 ; Isaiah 38:1–8) + +24 + +25 + +In those days Hezekiah became mortally ill. So +he prayed to the LORD, who spoke to him and +gave him a sign. +But because his heart was +proud, Hezekiah did not repay the favor shown +to him. Therefore wrath came upon him and +26 +upon Judah and Jerusalem. + +Then Hezekiah humbled the pride of his +heart—he and the people of Jerusalem—so that +the wrath of the LORD did not come upon them +27 +during the days of Hezekiah. + +28 + +Hezekiah had very great riches and honor, and +he made treasuries for his silver, gold, precious +stones, spices, shields, and all kinds of valuable +He also made storehouses for the har- +articles. +vest of grain and new wine and oil, stalls for all +kinds of livestock, and pens for the flocks. +He +made cities for himself, and he acquired herds of +sheep and cattle in abundance, for God gave him +30 +very great wealth. + +29 + +31 + +It was Hezekiah who blocked the upper outlet +of the Spring of Gihon and channeled it down to +the west side of the City of David. And Hezekiah +And so when am- +prospered in all that he did. +bassadors of the rulers of Babylon were sent to +him to inquire about the wonder that had hap- +pened in the land, God left him alone to test him, +that He might know all that was in Hezekiah’s +heart. + +cherem + +sons to the LORD, either by destroying them or by giving them as an offering. + +Or + +Forms of the Hebrew + +c 18 + +in the dialect of Judah + + refer to the giving over of things or per- + + Hezekiah’s Death + +32 + +33 + +As for the rest of the acts of Hezekiah and his +deeds of loving devotion, they are indeed written +in the vision of the prophet Isaiah son of Amoz in +And +the Book of the Kings of Judah and Israel. +Hezekiah rested with his fathers and was buried +in the upper tombs of David’s descendants. All +Judah and the people of Jerusalem paid him +honor at his death. And his son Manasseh +Manasseh Reigns in Judah (2 Kings 21:1–9) +reigned in his place. + +33 + +2 + +Manasseh was twelve years old when he +became king, and he reigned in Jerusa- +And he did evil in the sight +lem fifty-five years. +of the LORD by following the abominations of the +3 +nations that the LORD had driven out before the +For he rebuilt the high places that his +Israelites. +father Hezekiah had torn down, and he raised up +altars for the Baals and made Asherah poles. And +4 +he worshiped and served all the host of heaven. + + a + +5 + +Manasseh also built altars in the house of +the LORD, of which the LORD had said, “My Name +will remain in Jerusalem forever.” +In both court- +6 +yards of the house of the LORD, he built altars to +all the host of heaven. +He sacrificed his sons in +the fire + in the Valley of Ben-hinnom. He prac- +ticed sorcery, divination, and witchcraft, and +consulted mediums and spiritists. He did great +evil in the sight of the LORD, provoking Him to +7 +anger. + +8 + +Manasseh even took the carved image he had +made and set it up in the house of God, of which +God had said to David and his son Solomon, “In +this temple and in Jerusalem, which I have cho- +sen out of all the tribes of Israel, I will establish +My Name forever. +I will never again cause the +feet of the Israelites to leave the land that I as- +signed to your fathers, if only they are careful +to do all that I have commanded them through +9 +Moses—all the laws, statutes, and judgments.” + +So Manasseh led the people of Judah and Jeru- +salem astray, so that they did greater evil than +the nations that the LORD had destroyed before +Manasseh’s Repentance and Restoration +the Israelites. +(2 Kings 21:10–18) + +10 + +11 + +And the LORD spoke to Manasseh and his +b 15 +So the LORD + +a 6 +people, but they did not listen. + +made his sons pass through the fire + +2 Chronicles 33:23 | 431 + +12 + +brought against them the military commanders +of the king of Assyria, who captured Manasseh, +put a hook in his nose, bound him with bronze +shackles, and took him to Babylon. +And in his +distress, Manasseh sought the favor of the LORD +13 +his God and earnestly humbled himself before +the God of his fathers. +And when he prayed to +Him, the LORD received his plea and heard his +petition. So He brought him back to Jerusalem +and to his kingdom. Then Manasseh knew that +14 +the LORD is God. + +After this, Manasseh rebuilt the outer wall of +the City of David from west of Gihon in the valley +to the entrance of the Fish Gate, and he brought +it around the hill of Ophel and heightened it con- +siderably. He also stationed military command- +15 +ers in all the fortified cities of Judah. + + b + +He removed the foreign gods and the idol from +the house of the LORD, along with all the altars +he had built on the temple mount + and in Jerusa- +16 +lem, and he dumped them outside the city. +Then he restored the altar of the LORD and +sacrificed peace offerings and thank offerings on +it, and he told Judah to serve the LORD, the God +of Israel. +Nevertheless, the people still sacri- +ficed at the high places, but only to the LORD +18 +their God. + +17 + +c + +19 + +As for the rest of the acts of Manasseh, along +with his prayer to his God and the words of the +seers who spoke to him in the name of the LORD, +the God of Israel, they are indeed written in the +Chronicles of the Kings of Israel. +His prayer +and how God received his plea, as well as all his +sin and unfaithfulness, and the sites where he +built high places and set up Asherah poles and +idols before he humbled himself, they are indeed +written in the Records of the Seers. +And Ma- +nasseh rested with his fathers and was buried at +Amon Reigns in Judah (2 Kings 21:19–26) +his palace. And his son Amon reigned in his place. +21 + +20 + +d + +22 + +Amon was twenty-two years old when he be- +came king, and he reigned in Jerusalem two +years. +And he did evil in the sight of the LORD, +as his father Manasseh had done. +23 + +Amon served and sacrificed to all the idols that +his father Manasseh had made, +but he did not +humble himself before the LORD as his father +Manasseh had done; instead, Amon increased his +the mountain of the house of the LORD +guilt. + +c 18 + +d 19 + +the Records of the Hozai + +Literally + +the Annals of the Prophets +in 2 Chronicles, Judah is occasionally called Israel, as representative of the true Israel. + +Literally + +Or + +That is, Judah; + or + + 432 | 2 Chronicles 33:24 + +24 + +25 + +Then the servants of Amon conspired against +him and killed him in his palace. +But the people +of the land killed all those who had conspired + son Josiah +against King Amon, and they made his +Josiah Reigns in Judah (2 Kings 22:1–2) +king in his place. + +34 + +2 + +Josiah was eight years old when he be- +came king, and he reigned in Jerusalem +And he did what was right in +thirty-one years. +the eyes of the LORD and walked in the ways of +his father David; he did not turn aside to the right +Josiah Destroys Idolatry +or to the left. +(1 Kings 13:1–10 ; 2 Kings 23:4–20) + +3 + +4 + +In the eighth year of his reign, while he was still +young, Josiah began to seek the God of his father +David, and in the twelfth year he began to cleanse +Judah and Jerusalem of the high places, the +Asherah poles, the carved idols, and the cast im- +Then in his presence the altars of the Baals +ages. +were torn down, and he cut to pieces the incense +altars that were above them. He shattered the +Asherah poles, the carved idols, and the cast im- +ages, crushed them to dust, and scattered them +over the graves of those who had sacrificed to +Then he burned the bones of the priests +them. +6 +on their altars. So he cleansed Judah and Jerusalem. + +5 + + a + +7 + + around them. + +Josiah did the same in the cities of Manasseh, +Ephraim, and Simeon, as far as Naphtali, and +in the ruins +He tore down the +altars and Asherah poles, crushed the idols to +powder, and cut to pieces all the incense altars +throughout the land of Israel. Then he returned +Josiah Repairs the Temple (2 Kings 22:3–7) +to Jerusalem. +8 + +Now in the eighteenth year of his reign, in order +to cleanse the land and the temple, Josiah sent +Shaphan son of Azaliah, Maaseiah the governor +of the city, and Joah son of Joahaz, the recorder, +9 +to repair the house of the LORD his God. + +11 + +who in turn gave it to the workmen restoring and +They also +repairing the house of the LORD. +gave money to the carpenters and builders to +buy dressed stone, as well as timbers for cou- +plings and beams for the buildings that the kings +12 +of Judah had allowed to deteriorate. + +And the men did the work faithfully. The +Levites overseeing them were Jahath and Oba- +diah, descendants of Merari, and Zechariah and +Meshullam, descendants of Kohath. Other Le- +13 +instruments, +vites, all skilled with musical +were over the laborers and supervised all who +did the work, task by task. Some of the Levites +Hilkiah Finds the Book of the Law +were secretaries, officers, and gatekeepers. +(2 Kings 22:8–13) + +14 + + b + +15 + +While they were bringing out the money that +had been taken into the house of the LORD, +Hilkiah the priest found the Book of the Law of +the LORD given by +And Hilkiah said to + Moses. +Shaphan the scribe, “I have found the Book of the +Law in the house of the LORD!” And he gave it to +16 +Shaphan. + +17 + +Then Shaphan brought the book to the king +and reported, “Your servants are doing all that +has been placed in their hands. +They have paid +out the money that was found in the house of the +LORD and have put it into the hands of the super- +18 +visors and workers.” + +Moreover, Shaphan the scribe told the king, +“Hilkiah the priest has given me a book.” And +19 +Shaphan read it in the presence of the king. + +20 + + c + +21 + + son of Micah, + +When the king heard the words of the Law, he +d +and commanded Hilkiah, + +tore his clothes +Ahikam son of Shaphan, Abdon +Shaphan the scribe, and Asaiah the servant of the +king: +“Go and inquire of the LORD for me and +for those remaining in Israel and Judah concern- +ing the words in the book that has been found. +For great is the wrath of the LORD that has been +poured out on us because our fathers have not +kept the word of the LORD by doing all that is +Huldah’s Prophecy (2 Kings 22:14–20) +written in this book.” +22 + + e + +So they went to Hilkiah the high priest and gave +him the money that had been brought into the +house of God, which the Levites who guarded the +doors had collected from the people of Manasseh +and Ephraim, from all the remnant of Israel, from +all Judah and Benjamin, and from the people of +They put it into the hands of those +Jerusalem. +a 6 +supervising the work in the house of the LORD, +Micaiah +d 20 Micah +Hebrew +Or +and those the king had told went to Huldah + +in the regions + +b 14 + +10 + + is a variant of + +Harhas + +; see 2 Kings 22:12. +h 22 + +e 22 +f 22 Tokhath +the Second Quarter + +the Law of the LORD by the hand of + +f + +g + +So Hilkiah and those the king had designated + the prophetess, the + the son of + the keeper of the wardrobe. She lived in + +went and spoke to Huldah +wife of Shallum son of Tokhath, +Hasrah, +Achbor +Jerusalem, in the Second District. +Tikvah + + is a variant of +One Hebrew manuscript, Vulgate, and Syriac; most Hebrew man- + is + +; see 2 Kings 22:14. + + is a variant of + +the Mishneh + +c 20 Abdon + +h + +; see 2 Kings 22:12. +g 22 Hasrah + +uscripts +a variant of + +; see 2 Kings 22:14. + +Or + +, a newer section of Jerusalem; Hebrew + + 23 + +24 + +25 + +And Huldah said to them, “This is what the +LORD, the God of Israel, says: ‘Tell the man who +that this is what the LORD says: I am +sent you +about to bring calamity on this place and on its +people, according to all the curses written in the +book that has been read in the presence of the +because they have forsaken Me +king of Judah, +and burned incense to other gods, that they +might provoke Me to anger with all the works of +their hands. My wrath will be poured out upon +26 +this place and will not be quenched.’ + +27 + +But as for the king of Judah, who sent you to +inquire of the LORD, tell him that this is what the +LORD, the God of Israel, says: ‘As for the words +because your heart was tender +that you heard, +and you humbled yourself before God when you +heard His words against this place and against its +people, and because you have humbled yourself +before Me and have torn your clothes and wept +28 +before Me, I have heard you,’ declares the LORD. + +‘Now I will indeed gather you to your fathers, +and you will be gathered to your grave in peace. +Your eyes will not see all the calamity that I will +bring on this place and on its people.’ +Josiah Renews the Covenant +So they brought her answer back to the king. +(2 Kings 23:1–3) + +” + +29 + +30 + +Then the king summoned all the elders of Ju- +dah and Jerusalem. +And he went up to the +house of the LORD with all the people of Judah +and Jerusalem, as well as the priests and the Le- +vites—all the people great and small—and in +their hearing he read all the words of the Book of +the Covenant that had been found in the house of +31 +the LORD. + +So the king stood by the pillar and made a cov- +enant before the LORD to follow the LORD and to +keep His commandments, decrees, and statutes +with all his heart and all his soul, and to carry out +the words of the covenant that were written in +32 +this book. + +Then he had everyone in Jerusalem and Benja- +min take a stand in agreement to it. So all the peo- +ple of Jerusalem carried out the covenant of God, +33 +the God of their fathers. + +And Josiah removed all the abominations from +all the lands belonging to the Israelites, and he +required everyone in Israel to serve the LORD +the word of the LORD by the hand of +a 6 +their God. Throughout his reign they did not turn + +Hebrew + +2 Chronicles 35:12 | 433 + +aside from following the LORD, the God of their +Josiah Restores the Passover +fathers. +(2 Kings 23:21–27) + +35 + +2 + +Then Josiah kept the Passover to the +LORD in Jerusalem, and the Passover +lamb was slaughtered on the fourteenth day of +He appointed the priests to +the first month. +their duties and encouraged them in the service +3 +of the house of the LORD. + +4 + +To the Levites who taught all Israel and were +holy to the LORD, Josiah said: “Put the holy ark in +the temple built by Solomon son of David king of +Israel. It is not to be carried around on your +shoulders. Now serve the LORD your God and His +Prepare yourselves by families in +people Israel. +your divisions, according to the instructions +written by David king of Israel and Solomon his +5 +son. + +6 + +Moreover, stand in the Holy Place by the divi- +sions of the families of your kinsmen the lay peo- +ple, and by the divisions of the families of the +Slaughter the Passover lambs, conse- +Levites. +crate yourselves, and make preparations for +your fellow countrymen to carry out the word of +7 + Moses.” +the LORD given by + + a + +From his own flocks and herds Josiah contrib- +uted 30,000 lambs and goats plus 3,000 bulls for +the Passover offerings for all the people who +8 +were present. + +9 + +His officials also contributed willingly to the +people and priests and Levites. Hilkiah, Zecha- +riah, and Jehiel, the chief officials of the house of +God, gave the priests 2,600 Passover offerings +Additionally, Conaniah and his +and 300 bulls. +brothers Shemaiah and Nethanel, as well as +Hashabiah, Jeiel, and Jozabad, officers of the Le- +vites, contributed to the Levites 5,000 Passover +10 +offerings and 500 bulls. + +11 + +So the service was prepared; the priests stood +in their places and the Levites in their divisions +And they +according to the king’s command. +slaughtered the Passover +lambs, while the +priests splattered the blood handed to them and +They set aside +the Levites skinned the animals. +the burnt offerings to be given to the divisions of +the families of the people to offer to the LORD, as +it is written in the Book of Moses. And they did +the same with the bulls. + +12 + + 434 | 2 Chronicles 35:13 + +13 + +24 + +14 + +They roasted the Passover animals on the fire +according to the regulation, and they boiled the +other holy offerings in pots, kettles, and bowls +Af- +and quickly brought them to all the people. +terward, they made preparations for themselves +and for the priests, since the priests, the descend- +ants of Aaron, were offering up burnt offerings +and fat until nightfall. So the Levites made prep- +arations for themselves and for the priests, the +15 +descendants of Aaron. + +The singers, the descendants of Asaph, were at +their stations according to the command of Da- +vid, Asaph, Heman, and Jeduthun the king’s seer. +And the gatekeepers at each gate did not need to +leave their posts, because their fellow Levites +16 +made preparations for them. + + a + +17 + +18 + +So on that day the entire service of the LORD +was carried out for celebrating the Passover and +offering burnt offerings on the altar of the LORD, +The +according to the command of King Josiah. +Israelites who were present also observed the +Passover at that time, as well as the Feast of Un- +leavened Bread +No such Pass- + for seven days. +over had been observed in Israel since the days +of Samuel the prophet. None of the kings of Israel +ever observed a Passover like the one that Josiah +observed with the priests, the Levites, all Judah, +the Israelites who were present, and the people +In the eighteenth year of Josiah’s +of Jerusalem. +The Death of Josiah +reign, this Passover was observed. +(2 Kings 23:28–30) + +19 + +20 + +21 + +After all this, when Josiah had set the temple in +order, Neco king of Egypt marched up to fight at +Carchemish by the Euphrates, and Josiah went +But Neco sent messengers +out to confront him. +to him, saying, “What is the issue between you +and me, O king of Judah? I have not come against +you today, but I am fighting another dynasty, and +God has told me to hurry. So stop opposing God, +22 +who is with me, or He will destroy you!” + +Josiah, however, did not turn away from him; +instead, in order to engage him in battle, he dis- +guised himself. He did not listen to Neco’s words +23 +from the mouth of God, but went to fight him on +There the archers shot +the Plain of Megiddo. +King Josiah, who said to his servants, “Take me +away, for I am badly wounded!” +a 17 +Jehoahaz +b 2 + +Joahaz +d 3 A talent + +So his servants took him out of his chariot, put +him in his second chariot, and brought him to Je- +rusalem, where he died. And Josiah was buried in +the tomb of his fathers, and all Judah and Jerusa- +Laments over Josiah +lem mourned for him. +25 + +Then Jeremiah lamented over Josiah, and to +this day all the male and female singers recite la- +ments over Josiah. They established them as a +statute for Israel, and indeed they are written in +26 +the Book of Laments. + +27 + +As for the rest of the acts of Josiah and his +deeds of loving devotion according to what is +his acts from +written in the Law of the LORD— +beginning to end—they are indeed written in the +Jehoahaz Succeeds Josiah +Book of the Kings of Israel and Judah. +(2 Kings 23:31–35) + +36 + +Then the people of the land took Je- +hoahaz son of Josiah and made him king + +2 +in Jerusalem in place of his father. + + b + +Jehoahaz +3 + + was twenty-three years old when he +became king, and he reigned in Jerusalem three +And the king of Egypt dethroned him in +months. +Jerusalem and imposed on Judah a levy of a hun- +4 +dred talents of silver + + and a talent of gold. + +d + + c + +Then Neco king of Egypt made Eliakim brother +of Jehoahaz king over Judah and Jerusalem, and +he changed Eliakim’s name to Jehoiakim. But +Neco took Eliakim’s brother Jehoahaz and car- +Jehoiakim Reigns in Judah +ried him off to Egypt. +(2 Kings 23:36–37) + +5 + +Jehoiakim was twenty-five years old when he +became king, and he reigned in Jerusalem eleven +years. And he did evil in the sight of the LORD his +6 +God. + +7 + +Then Nebuchadnezzar king of Babylon came up +against Jehoiakim and bound him with bronze +Nebuchadnez- +shackles to take him to Babylon. +zar also took to Babylon some of the articles from +the house of the LORD, and he put them in his +8 +temple + + in Babylon. + + e + +As for the rest of the acts of Jehoiakim, the +abominations he committed, and all that was + +That is, the seven-day period after the Passover during which no leaven may be eaten; see Exodus 12:14–20. + +e 7 + +palace + +Hebrew + +silver. + +, a variant of +; also in verse 4 + is approximately 75.4 pounds or 34.2 kilograms of gold. + +Or + + is approximately 3.77 tons or 3.42 metric tons of + +c 3 100 talents + + found against him, they are indeed written in the +Book of the Kings of Israel and Judah. And his son +Jehoiachin Reigns in Judah +Jehoiachin reigned in his place. +(2 Kings 24:6–9) + +9 + + a + +Jehoiachin was eighteen + + years old when he be- +came king, and he reigned in Jerusalem three +months and ten days. And he did evil in the sight +10 +of the LORD. + +b + +In the spring, + + King Nebuchadnezzar sum- +moned Jehoiachin and brought him to Babylon, + c +along with the articles of value from the house of +the LORD. And he made Jehoiachin’s relative +Zedekiah Reigns in Judah +Zedekiah king over Judah and Jerusalem. +(2 Kings 24:18–20 ; Jeremiah 52:1–3) + +11 + +12 + +Zedekiah was twenty-one years old when he +became king, and he reigned in Jerusalem eleven +years. +And he did evil in the sight of the LORD +his God and did not humble himself before Jere- +13 +miah the prophet, who spoke for the LORD. + + d + +He also rebelled against King Nebuchadnezzar, +who had made him swear by God. But Zedekiah +stiffened his neck and hardened + his heart +14 +against turning to the LORD, the God of Israel. +Furthermore, all the leaders of the priests and +the people multiplied their unfaithful deeds, fol- +lowing all the abominations of the nations, and +they defiled the house of the LORD, which He had +The Fall of Jerusalem +consecrated in Jerusalem. +(2 Kings 25:1–7) + +15 + + e + +Again and again + + the LORD, the God of their fa- +thers, sent word to His people through His mes- +16 +sengers because He had compassion on them and +But they mocked the +on His dwelling place. +messengers of God, despising His words and +scoffing at His prophets, until the wrath of the + +2 Chronicles 36:23 | 435 + +LORD against His people was stirred up beyond +17 +remedy. + +f + +18 + +So He brought up against them the king of the +Chaldeans, + who put their young men to the +sword in the sanctuary, sparing neither young +men nor young women, neither elderly nor +infirm. God gave them all into the hand of Nebu- +who carried off everything to +chadnezzar, +Babylon—all the articles of the house of God, +both large and small, and the treasures of the +house of the LORD and of the king and his offi- +Then the Chaldeans set fire to the house +cials. +of God and broke down the wall of Jerusalem. +They burned down all the palaces and destroyed +20 +every article of value. + +19 + +Those who escaped the sword were carried by +Nebuchadnezzar into exile in Babylon, and they +became servants to him and his sons until the +21 +kingdom of Persia came to power. + +So the land enjoyed its Sabbath rest all the +days of the desolation, until seventy years were +g +completed, in fulfillment of the word of the LORD +The Proclamation of Cyrus +spoken through Jeremiah. +(Ezra 1:1–4 ; Isaiah 45:1–25) + +22 + +In the first year of Cyrus king of Persia, to fulfill +the word of the LORD spoken through Jeremiah, +the LORD stirred the spirit of Cyrus king of Persia +to send a proclamation throughout his kingdom +and to put it in writing as follows: + +23 + +“This is what Cyrus king of Persia says: + +‘The LORD, the God of heaven, who has given +me all the kingdoms of the earth, has ap- +pointed me to build a house for Him at Jeru- +salem in Judah. + +Whoever among you belongs to His people, +may the LORD his God be with him, and may +he go up.’ + +” + +eight + +a 9 +b 10 +e 15 +g 21 + +uncle +One Hebrew manuscript, some LXX manuscripts, and Syriac (see also 2 Kings 24:8); most Hebrew manuscripts + +At the turn of the year +Rising up early and sending (it), + +made courageous + +brother +f 17 + +made strong + +d 13 + +c 10 + +Literally +Literally +See Jeremiah 25:12 and Jeremiah 29:10. + +Or + + or + +Or + + or + +That is, the Babylonians; also clarified in verse 19 + + Ezra + +The Proclamation of Cyrus +(2 Chronicles 36:22–23 ; Isaiah 45:1–25) + +1 + +In the first year of Cyrus king of Persia, to ful- +fill the word of the LORD spoken through +Jeremiah, the LORD stirred the spirit of Cyrus +king of Persia to send a proclamation throughout +his kingdom and to put it in writing as follows: + +2 + +“This is what Cyrus king of Persia says: + +‘The LORD, the God of heaven, who has given +me all the kingdoms of the earth, has ap- +pointed me to build a house for Him at Jeru- +3 +salem in Judah. + +4 + +Whoever among you belongs to His people, +may his God be with him, and may he go to +Jerusalem in Judah and build the house of the +LORD, the God of Israel; He is the God who is +And let every survivor, wher- +in Jerusalem. +ever he lives, be assisted by the men of that +region with silver, gold, goods, and livestock, +along with a freewill offering for the house of +God in Jerusalem.’ + +” + +5 + +So the family heads of Judah and Benjamin, +along with the priests and Levites—everyone +whose spirit God had stirred—prepared to go up +6 +and rebuild the house of the LORD in Jerusalem. + +And all their neighbors supported them with ar- +ticles of silver and gold, with goods and livestock, +and with valuables, in addition to all their +Cyrus Restores the Holy Vessels +freewill offerings. +7 + +King Cyrus also brought out the articles +belonging to the house of the LORD that +Nebuchadnezzar had carried away from Jerusa- +Cyrus +lem and placed in the temple of his gods. +king of Persia had them brought out by the hand +a +9 +of Mithredath the treasurer, who counted them +This +out to Sheshbazzar the prince of Judah. +was the inventory: + +8 + +b + +10 +29 silver utensils, + +30 gold bowls, + +410 matching silver bowls, + +11 + +and 1,000 other articles. + +In all, there were 5,400 gold and silver articles. +Sheshbazzar brought all these along when the +The List of Returning Exiles (Neh. 7:4–69) +exiles went up from Babylon to Jerusalem. + +2 + +Now these are the people of the province +who came up from the captivity of the exiles +carried away to Babylon by Nebuchadnezzar its +king. They returned to Jerusalem and Judah, each +accompanied by Zerubbabel, +to his own town, +Jeshua, Nehemiah, Seraiah, Reelaiah, Mordecai, +Bilshan, Mispar, Bigvai, Rehum, and Baanah. + +2 + +c + +3 + +This is the count of the men of Israel: + +4 + +the descendants of Parosh, 2,172; + +5 + +the descendants of Shephatiah, 372; + +6 + +the descendants of Arah, 775; + +the descendants of Pahath-moab (through + +7 +the line of Jeshua and Joab), 2,812; +8 + +the descendants of Elam, 1,254; + +9 + +10 + +the descendants of Zattu, 945; + +d + +the descendants of Zaccai, 760; + +11 + +the descendants of Bani, + + 642; + +12 + +the descendants of Bebai, 623; + +13 + +the descendants of Azgad, 1,222; + +14 + +the descendants of Adonikam, 666; + +15 + +the descendants of Bigvai, 2,056; + +16 + +the descendants of Adin, 454; + +the descendants of Ater (through + +17 +Hezekiah), 98; +18 + +the descendants of Bezai, 323; + +e + +30 gold dishes, + +19 + +the descendants of Jorah, + + 112; + +a 8 + +1,000 silver dishes, +accompanied by Zerubbabel, Jeshua, Nehemiah, Azariah, Raamiah, Nahamani, Mordecai, Bilshan, Mispereth, Bigvai, +That is, the leader of the exiles returning to Judah +Or + +the descendants of Hashum, 223; + +; twice in this verse + +Parallel text at Nehemiah + +b 9 + +basins + +c 2 + +e 18 Jorah + +d 10 Bani + +Hariph + +Binnui + +Nehum, and Baanah +7:7 + +miah 7:24. + + is a variant of + +; see Nehemiah 7:15. + + is a variant of + +; see Nehe- + + 20 + +21 + +22 + +23 + +24 + +25 + +a + + 95; + + b + +the descendants of Gibbar, + + of Bethlehem, 123; + +the men +the men of Netophah, 56; +the men of Anathoth, 128; +d + +the descendants of Azmaveth, + +c + + 42; + +the men of Kiriath-jearim, + + Chephirah, + +26 +and Beeroth, 743; +27 + +28 + +29 + +30 + +31 + +the men of Ramah and Geba, 621; +the men of Michmash, 122; +the men of Bethel and Ai, 223; +the descendants of Nebo, 52; +the descendants of Magbish, 156; + +e + +the descendants of the other Elam, + +32 +1,254; +33 + +34 + +35 + +the descendants of Harim, 320; +the men of Lod, Hadid, and Ono, 725; +the men of Jericho, 345; +and the descendants of Senaah, 3,630. + +36 + +The priests: +The descendants of Jedaiah (through the +37 +house of Jeshua), 973; +38 + +the descendants of Immer, 1,052; +the descendants of Pashhur, 1,247; +and the descendants of Harim, 1,017. + +39 + +40 + +41 + +42 + + f + +), 74. + +The Levites: +the descendants of Jeshua and Kadmiel +(through the line of Hodaviah +The singers: +the descendants of Asaph, 128. +The gatekeepers: +the descendants of Shallum, +the descendants of Ater, +the descendants of Talmon, +the descendants of Akkub, +the descendants of Hatita, +and the descendants of Shobai, + +43 + +139 in all. + + g + +Ezra 2:56 | 437 + +44 +the descendants of Tabbaoth, +the descendants of Keros, + +h + +the descendants of Siaha, +45 +the descendants of Padon, + +the descendants of Lebanah, + +the descendants of Hagabah, +46 +the descendants of Akkub, + +i +the descendants of Hagab, + +the descendants of Shalmai, +47 +the descendants of Hanan, + +the descendants of Giddel, + +the descendants of Gahar, +48 +the descendants of Reaiah, +the descendants of Rezin, +the descendants of Nekoda, +49 +the descendants of Gazzam, +the descendants of Uzza, +the descendants of Paseah, +50 +the descendants of Besai, + +the descendants of Asnah, + +the descendants of Meunim, +51 +the descendants of Nephusim, + +j + +the descendants of Bakbuk, +the descendants of Hakupha, +k +52 +the descendants of Harhur, + +the descendants of Bazluth, + +the descendants of Mehida, +53 +the descendants of Harsha, + +the descendants of Barkos, + +the descendants of Sisera, +54 +the descendants of Temah, + +55 + +the descendants of Neziah, + +and the descendants of Hatipha. + +The descendants of the servants of Solomon: + +the descendants of Sotai, + +l + +the descendants of Hassophereth, +56 +the descendants of Peruda, + +the descendants of Jaala, + +The temple servants: +the descendants of Ziha, +Gibeon +the descendants of Hasupha, + +a 20 Gibbar +c 24 Azmaveth +arim + +e 31 + + is a variant of + +of West Elam + is a variant of + +h 44 Siaha + +Or +also in verses 58 and 70 +k 52 Bazluth +miah 7:48); the other alternate reads + is a variant of + +Bazlith + +b 21 + +the sons + +the descendants of Darkon, + +Beth-azmaveth + +; see Nehemiah 7:25. + +f 40 Hodaviah + +Literally + +Hodevah +; see Nehemiah 7:28. +j 50 Nephusim + +Sia + is a variant of + +Shamlai + is a variant of + +d 25 + +g 43 + +Kiriath- +; here and in verses 25, 26, 33, and 34 +The Nethinim +i 46 +; see Nehemiah 7:43. + +LXX (see also Nehemiah 7:29); Hebrew + +; +Hebrew +Nephushesim +Alternate MT reading (see also Nehe- +Perida +; see Nehemiah 7:52. +; see Nehemiah 7:57. + + is a variant of + +; see Nehemiah 7:47. + +l 55 Peruda + + is a variant of + +; see Nehemiah 7:54. + + 438 | Ezra 2:57 + +57 +the descendants of Giddel, + +the descendants of Shephatiah, + +the descendants of Hattil, + +a + +the descendants of Pochereth-hazzebaim, +58 +and the descendants of Ami. + +The temple servants and descendants of +the servants of Solomon numbered 392 in +all. + +59 + +b + +70 + +So the priests, the Levites, the singers, the +gatekeepers, and the temple servants, along with +some of the people, settled in their own towns; + settled in their +and the rest of the Israelites +Sacrifices Restored +towns. + + f + +3 + +By the seventh month, the Israelites had set- +tled in their towns, and the people assem- + +2 +bled as one man in Jerusalem. + + g + +The following came up from Tel-melah, +Tel-harsha, Cherub, Addan, + and Immer, but they +could not prove that their families were de- +scended from Israel: + +60 + +the descendants of Delaiah, + +the descendants of Tobiah, + +and the descendants of Nekoda, +61 + +652 in all. + +And from among the priests: the descend- + +ants of Hobaiah, + +the descendants of Hakkoz, + +and the descendants of Barzillai (who had +married a daughter of Barzillai the Gileadite +62 +and was called by their name). + +63 + +These men searched for their family rec- +ords, but they could not find them and so +were excluded from the priesthood as un- +The governor ordered them not to +clean. +eat the most holy things until there was a +65 +priest to consult the Urim and Thummim. + +c + +64 + +66 + +The whole assembly numbered 42,360, + +in +addition to their 7,337 menservants and maid- +servants, as well as their 200 male and female +67 +They had 736 horses, 245 mules, +singers. +Offerings by the Exiles +435 camels, and 6,720 donkeys. +(Exodus 38:21–31 ; Nehemiah 7:70–73) + +68 + +69 + +When they arrived at the house of the LORD in +Jerusalem, some of the heads of the families gave +freewill offerings to rebuild the house of God on +According to their ability, they +its original site. +d +gave to the treasury for this work 61,000 darics + and 100 priestly +of gold, +garments. +a 57 Ami +Lights and Perfections + + 5,000 minas of silver, + +61,000 gold drachmas + +Amon +d 69 + +e + +b 59 Addan + +Then Jeshua son of Jozadak + + and his fellow +priests, along with Zerubbabel son of Shealtiel +and his associates, began to build the altar of the +God of Israel to sacrifice burnt offerings on it, as +3 +it is written in the Law of Moses the man of God. +They set up the altar on its foundation and sac- +rificed burnt offerings on it to the LORD—both +the morning and evening burnt offerings—even + h +4 +though they feared the people of the land. + +They also celebrated the Feast of Tabernacles +in accordance with what is written, and they of- +fered burnt offerings daily based on the number +5 +prescribed for each day. + +After that, they presented the regular burnt of- +ferings and those for New Moons and for all the +appointed sacred feasts of the LORD, as well as +6 +all the freewill offerings brought to the LORD. + +7 + +On the first day of the seventh month, the Isra- +elites began to offer burnt offerings to the LORD, +although the foundation of the temple of the +They gave money to +LORD had not been laid. +the masons and carpenters, and food and drink +and oil to the people of Sidon and Tyre to bring +cedar logs from Lebanon to Joppa by sea, as au- +Temple Restoration Begins +thorized by Cyrus king of Persia. +8 + +In the second month of the second year after +they had arrived at the house of God in Jerusa- +lem, Zerubbabel son of Shealtiel, Jeshua son of +Jozadak, and the rest of their associates including +the priests, the Levites, and all who had returned +to Jerusalem from the captivity, began the work. +They appointed Levites twenty years of age or +older to supervise the construction of the house + +Addon + +c 63 + + is a variant of +e 69 5,000 minas + +Jehozadak + +; see Nehemiah 7:59. +Or + +Literally +; that is, approximately 1,129.7 pounds or 512.4 kilograms of gold + +; see Nehemiah 7:61. + + is a variant of + +g 2 Jozadak + +all Israel + +f 70 + +h 4 + +the Feast of Booths + + is approximately 3.14 tons or 2.85 metric tons of silver. + +the Feast of Shelters + + is a vari- +That is, Sukkot, the autumn feast of pilgrimage to Jerusalem; + +the Feast of Ingathering + +Or + +; also in verse 8; see 1 Chronicles 6:14. + + or + + and originally called + + (see Exodus 23:16 + +coins +ant of +also translated as +and Exodus 34:22). + + 9 + +So Jeshua and his sons and broth- +of the LORD. +a +ers, Kadmiel and his sons (descendants of Yehu- + and the sons of Henadad and their sons +dah), +and brothers—all Levites—joined together to +10 +supervise those working on the house of God. + +When the builders had laid the foundation of +the temple of the LORD, the priests in their ap- +parel with trumpets, and the Levites (the sons of +Asaph) with cymbals, took their positions to +praise the LORD, as David king of Israel had pre- +scribed. +And they sang responsively with +praise and thanksgiving to the LORD: + +11 + + b + +“For He is good; + +for His loving devotion +endures forever.” + + to Israel + +Then all the people gave a great shout of praise +to the LORD, because the foundation of the house +12 +of the LORD had been laid. + +But many of the older priests, Levites, and fam- +ily heads who had seen the first temple wept +loudly when they saw the foundation of this tem- +ple. Still, many others shouted joyfully. +The +people could not distinguish the shouts of joy +from the sound of weeping, because the people +were making so much noise. And the sound was +Adversaries Hinder the Work +heard from afar. + +13 + +4 + +2 + +When the enemies of Judah and Benjamin +heard that the exiles were building a temple +they approached +for the LORD, the God of Israel, +Zerubbabel and the heads of the families, saying, +“Let us build with you because, like you, we seek +your God and have been sacrificing to Him since +the time of King Esar-haddon of Assyria, who +3 +brought us here.” + +But Zerubbabel, Jeshua, and the other heads of +the families of Israel replied, “You have no part +with us in building a house for our God, since we +alone must build it for the LORD, the God of Is- +4 +rael, as Cyrus king of Persia has commanded us.” + +5 + +Then the people of the land set out to discour- +age the people of Judah and make them afraid to +They hired counselors against them to +build. +frustrate their plans throughout the reign of Cy- +rus king of Persia and down to the reign of Darius +sons of Judah +a 9 +king of Persia. +b 11 + +sons of Yehudah + +chesed +; that is, most likely, +love + +Ezra 4:16 | 439 + +Opposition under Xerxes and Artaxerxes + +6 + +c + +At the beginning of the reign of Xerxes, + + an ac- +cusation was lodged against the people of Judah +7 +and Jerusalem. + +And in the days of Artaxerxes king of Persia, +Bishlam, Mithredath, Tabeel, and the rest of his +associates wrote a letter to Artaxerxes. It was +8 +written in Aramaic and then translated. + +d + +Rehum the commander and Shimshai the scribe +wrote the letter against Jerusalem to King Arta- +xerxes as follows: + +9 + +From Rehum the commander, Shimshai the +scribe, and the rest of their associates—the +judges and officials over Tripolis, Persia, +10 +Erech and Babylon, the Elamites of Susa, +and the rest of the peoples whom the great + deported and +and honorable Ashurbanipal +f +settled in the cities of Samaria and elsewhere +11 +west of the Euphrates. + + e + +(This is the text of the letter they sent to + +him.) + +To King Artaxerxes, + +From your servants, the men west of the Eu- +12 +phrates: + +Let it be known to the king that the Jews +who came from you to us have returned to +Jerusalem and are rebuilding that rebellious +and wicked city. They are restoring its walls +13 +and repairing its foundations. + +Let it now be known to the king that +if that city is rebuilt and its walls are re- +stored, they will not pay tribute, duty, or toll, +14 +and the royal treasury will suffer. + + g + +15 + +Now because we are in the service of the +palace + and it is not fitting for us to allow the +king to be dishonored, we have sent to in- +that a search should be +form the king +made of the record books of your fathers. In +these books you will discover and verify that +the city is a rebellious city, harmful to kings +and provinces, inciting sedition from ancient +16 +times. That is why this city was destroyed. + +We advise the king that if this city is re- +built and its walls are restored, you will have +Hodaviah +no dominion west of the Euphrates. + +Hodevah + +loving devotion + +Heb. +Forms of the Heb. +7:43. +d 7 +the range of meaning includes +beyond the River +f 10 + +, +The original text of Ezra 4:8 through Ezra 6:18 is in Aramaic. +; also in verses 11, 16, 17, and 20 +Aramaic + +, + +, + +, and +Aramaic +Literally + +goodness + +kindness + +faithfulness + +, another name for + +mercy + are translated here and in most cases throughout the Scriptures as +e 10 +, +g 14 + + or +loyalty to a covenant +Osnappar +because the salt of the palace is our salt +, another name for + +; see Ezra 2:40 and Neh. +Ahasuerus +; +Ashurbanipal + +Heb. + +. + +c 6 + + 440 | Ezra 4:17 + +The Decree of Artaxerxes + +5 + +17 + +Then the king sent this reply: + +To Rehum the commander, Shimshai the +scribe, and the rest of your associates living +in Samaria and elsewhere in the region west +of the Euphrates: +18 +Greetings. + +19 + +20 + +The letter you sent us has been translated +and read in my presence. +I issued a decree, +and a search was conducted. It was discov- +ered that this city has revolted against kings +from ancient times, engaging in rebellion +And mighty kings have ruled +and sedition. +over Jerusalem and exercised authority over +the whole region west of the Euphrates; and +21 +tribute, duty, and toll were paid to them. + +Now, therefore, issue an order for these +22 +men to stop, so that this city will not be re- +See that you do not +built until I so order. +neglect this matter. Why allow this threat to +increase and the royal interests to suffer? + +23 + +When the text of the letter from King Arta- +xerxes was read to Rehum, Shimshai the scribe, +and their associates, they went immediately to +24 +the Jews in Jerusalem and forcibly stopped them. + +Thus the construction of the house of God in +Jerusalem ceased, and it remained at a standstill +until the second year of the reign of Darius king +of Persia. +Temple Rebuilding Resumes (Haggai 1:1–11) + +5 + +2 + +Later, the prophets Haggai and Zechariah +son of Iddo prophesied to the Jews in Judah +and Jerusalem in the name of the God of Israel, + a +Then Zerubbabel son of +who was over them. +Shealtiel and Jeshua son of Jozadak + rose up and +began to rebuild the house of God in Jerusalem. +And the prophets of God were with them, helping +3 +them. + +b +At that time Tattenai the governor of the region +west of the Euphrates, + Shethar-bozenai, and +their associates went to the Jews and asked, +“Who authorized you to rebuild this temple and +4 +restore this structure?” + +c + +They also asked, + + “What are the names of the + +men who are constructing this building?” +a 2 Jozadak +c 4 + +Then we told them, + +Jehozadak + +d 10 + +But the eye of their God was on the elders of the +Jews, so that they were not stopped until a report +was sent to Darius and written instructions +Tattenai’s Letter to Darius +about this matter were returned. +6 + +This is the text of the letter that Tattenai the +governor of the region west of the Euphrates, +Shethar-bozenai, and their associates, the offi- +The re- +cials in the region, sent to King Darius. +port they sent him read as follows: + +7 + +To King Darius: +8 +All peace. + +Let it be known to the king that we went +into the province of Judah, to the house of the +great God. The people are rebuilding it with +large stones and placing timbers in the walls. +This work is being carried out diligently and +9 +is prospering in their hands. + +So we questioned the elders and asked, +“Who authorized you to rebuild this temple +10 +and restore this structure?” + + d +We also asked for their names, so that we + +could write down the names of their leaders +11 +for your information. + +And this is the answer they returned: + +12 + +“We are servants of the God of heaven and +earth, and we are rebuilding the temple that +was built many years ago, which a great king +of Israel built and completed. +But since +our fathers angered the God of heaven, He +delivered them into the hand of Nebuchad- +nezzar king of Babylon, the Chaldean who +destroyed this temple and carried away the +13 +people to Babylon. + + e + +14 + +In the first year of his reign, however, +Cyrus king of Babylon issued a decree to re- +He also removed +build this house of God. + of Babylon the gold and sil- +from the temple +ver articles belonging to the house of God, +which Nebuchadnezzar had taken and car- +ried there from the temple in Jerusalem. +King Cyrus gave these articles to a man +named Sheshbazzar, whom he appointed +and instructed, ‘Take these arti- +governor +cles, put them in the temple in Jerusalem, +and let the house of God be rebuilt on its +original site.’ + +15 + +b 3 +the names of the men at their heads + +the governor beyond the River + +e 14 + +palace + +; also in verse 6 + +Or + + is a variant of + +LXX and Syriac; Aramaic + +; see 1 Chronicles 6:14. +Aramaic + +Aramaic + + 16 + +So this Sheshbazzar came and laid the +foundation of the house of God in Jerusalem, +and from that time until now it has been un- +der construction, but it has not yet been +17 +completed.” + +Now, therefore, if it pleases the king, let a +search be made of the royal archives in Bab- +ylon to see if King Cyrus did indeed issue a +decree to rebuild the house of God in Jerusa- +lem. Then let the king send us his decision in +this matter. + +The Decree of Darius + +6 + +2 + +Thus King Darius ordered a search of the +archives stored in the treasury of Babylon. +And a scroll was found in the fortress of Ecbat- +ana, in the province of Media, with the following +written on it: + +3 +Memorandum: + +Ezra 6:18 | 441 + +9 + +provinces west of the Euphrates, so that the +work will not be hindered. +Whatever is +needed—young bulls, rams, and lambs for +burnt offerings to the God of heaven, as well +as wheat, salt, wine, and oil, as requested by +the priests in Jerusalem—must be given to +Then they will be +them daily without fail. +able to offer sacrifices of a sweet aroma to +the God of heaven and to pray for the lives of +11 +the king and his sons. + +10 + +c + +I also decree that if any man interferes +with this directive, a beam is to be torn from +his house and raised up, and he is to be im- +paled on it. And his own house shall be made +May God, +a pile of rubble for this offense. +who has caused His Name to dwell there, +overthrow any king or people who lifts a +hand to alter this decree or to destroy this +house of God in Jerusalem. + +12 + +In the first year of King Cyrus, he issued a +decree concerning the house of God in Jeru- +salem: + +The Temple Completed + +I, Darius, have issued the decree. Let it be +carried out with diligence. + +13 + +a + +4 + +Let the house be rebuilt as a place for offer- +ing sacrifices, and let its foundations be +firmly laid. It is to be sixty cubits high and +sixty cubits wide, +with three layers of cut +stones and one of timbers. The costs are to +5 +be paid from the royal treasury. + +Furthermore, the gold and silver articles of +the house of God, which Nebuchadnezzar +took from the temple in Jerusalem and car- +ried to Babylon, must also be returned to the +temple in Jerusalem and deposited in the +house of God. + +6 + +Therefore Darius decreed: + +b + +To Tattenai governor of the region west +of the Euphrates, + Shethar-bozenai, and your +7 +associates and officials in the region: + +Leave +You must stay away from that place! +this work on the house of God alone. Let the +governor and elders of the Jews rebuild this +8 +house of God on its original site. + +I hereby decree what you must do for these +elders of the Jews who are rebuilding this +house of God: + +The cost is to be paid in full to these men +a 3 +from the royal treasury out of the taxes of the +sixty cubits long, twenty cubits wide, and thirty cubits high + +14 + +In response, Tattenai the governor of the re- +gion west of the Euphrates, Shethar-bozenai, and +their associates diligently carried out what King +So the Jewish elders built +Darius had decreed. +and prospered through the prophesying of Hag- +gai the prophet and Zechariah son of Iddo. + +They finished building according to the com- +mand of the God of Israel and the decrees of +15 +Cyrus, Darius, and Artaxerxes, kings of Persia. +d +And this temple was completed on the third + in the sixth year of the + +day of the month of Adar, +Dedication of the Temple +reign of King Darius. +16 + +Then the people of Israel—the priests, the Le- +vites, and the rest of the exiles—celebrated the +17 +dedication of the house of God with joy. + +For the dedication of the house of God they of- +fered a hundred bulls, two hundred rams, four +hundred lambs, and a sin offering for all Israel of +18 +twelve male goats, one for each tribe of Israel. + +They also appointed the priests by their divi- +sions and the Levites by their groups to the ser- +vice of God in Jerusalem, according to what is +written in the Book of Moses. + +It is to be + +b 6 + +governor beyond the River + +The house was to be approximately 90 feet or 27.4 meters in height and width; Syriac (see also 1 Kings 6:2) + +shall be made a dunghill because of this + +d 15 Adar + +c 11 + +and 13 +dar, usually occurring within the months of February and March. + +Literally + + is the twelfth month of the Hebrew lunar calen- + +. + +Aramaic + +; similarly in verses 8 + + 442 | Ezra 6:19 + +The Returned Exiles Keep the Passover + +Artaxerxes’ Letter for Ezra + +19 + +11 + +20 + +On the fourteenth day of the first month, the +exiles kept the Passover. +All the priests and +Levites had purified themselves and were cere- +monially clean. + +This is the text of the letter King Artaxerxes +had given to Ezra the priest and scribe, an expert +in the commandments and statutes of the LORD +to Israel: + +12 + + e + +21 + +And the Levites slaughtered the Passover lamb +for all the exiles, for their priestly brothers, and +for themselves. +The Israelites who had re- +turned from exile ate it, together with all who +had separated themselves from the uncleanness +of the peoples + of the land to seek the LORD, the +22 +God of Israel. + b + + a + +For seven days they kept the Feast of Unleav- + with joy, because the LORD had +ened Bread +made them joyful and turned the heart of the +king of Assyria toward them to strengthen their +hands in the work on the house of the God of Is- +Ezra Arrives in Jerusalem +rael. + +7 + +c + +4 + +2 + +5 + +3 + + during the reign of Arta- +Many years later, +xerxes king of Persia, Ezra son of Seraiah, the +the son of +son of Azariah, the son of Hilkiah, +the +Shallum, the son of Zadok, the son of Ahitub, +son of Amariah, the son of Azariah, the son of Me- +raioth, +the son of Zerahiah, the son of Uzzi, the +the son of Abishua, the son of +son of Bukki, +6 +Phinehas, the son of Eleazar, the son of Aaron the +this Ezra came up from Babylon. +chief priest— +He was a scribe skilled in the Law of Moses, +which the LORD, the God of Israel, had given. +7 + +The king had granted Ezra all his requests, for +So +the hand of the LORD his God was upon him. +in the seventh year of King Artaxerxes, he went +up to Jerusalem with some of the Israelites, in- +cluding priests, Levites, singers, gatekeepers, +8 +and temple servants. + +d + +9 + +Ezra arrived in Jerusalem in the fifth month of +He had begun the +the seventh year of the king. +journey from Babylon on the first day of the first +month, and he arrived in Jerusalem on the first +day of the fifth month, for the gracious hand of +For Ezra had set his +his God was upon him. +heart to study the Law of the LORD, to practice it, +a 21 +and to teach its statutes and ordinances in Israel. + +nations + +b 22 + +10 + +c 1 + +After these things + +d 7 + +Artaxerxes, king of kings. + +To Ezra the priest, the scribe of the Law of +f +the God of heaven: +13 +Greetings. + +14 + +I hereby decree that any volunteers among +the Israelites in my kingdom, including the +priests and Levites, may go up with you to +You are sent by the king and his +Jerusalem. +seven counselors to evaluate Judah and Jeru- +salem according to the Law of your God, +15 +which is in your hand. + +16 + +17 + +Moreover, you are to take with you the sil- +ver and gold that the king and his counselors +have freely offered to the God of Israel, +together +whose dwelling is in Jerusalem, +with all the silver and gold you may find in all +the province of Babylon, as well as the +freewill offerings of the people and priests to +With +the house of their God in Jerusalem. +this money, therefore, you are to buy as +many bulls, rams, and lambs as needed, to- +gether with their grain offerings and drink +offerings, and offer them on the altar at the +You and +house of your God in Jerusalem. +your brothers may do whatever seems best +with the rest of the silver and gold, according +19 +to the will of your God. + +18 + +You must deliver to the God of Jerusalem +20 +for the +all the articles given to you +service of the house of your God. +And if an- +ything else is needed for the house of your +God that you may have occasion to supply, +21 +you may pay for it from the royal treasury. + + g + +22 + +I, King Artaxerxes, decree to all the treas- + Whatever Ezra +urers west of the Euphrates: +the priest, the scribe of the Law of the God of +heaven, may require of you, it must be pro- +up to a hundred talents of +vided promptly, +k +silver, + a hundred +baths of wine, +Nethinim + + a hundred baths of olive oil, + + a hundred cors of wheat, + +e 11 + +h + +i + +j + +Or + +That is, the seven-day period after the Passover during which no leaven may be eaten; see + +beyond the River + +Perfect now + +g 21 + +f 12 + +Literally + +h 22 100 talents + +Exodus 12:14–20. +Ezra 7:12–26 is in Aramaic. +verse 25 +bushels or 22,000 liters (probably about 19.2 tons or 17.4 metric tons of wheat). +gallons or 2,200 liters of wine. + + is approximately 3.77 tons or 3.42 metric tons of silver. + + (probably a greeting) + +100 baths of oil + +Aramaic + +Hebrew + +k 22 + +Or + +; also in verse 24 + +i 22 100 cors +Aramaic +j 22 100 baths + +The original text of +; also in + + is approximately 624 + is approximately 580 + +; that is, approximately 580 gallons or 2,200 liters + + 23 + +6 + +Ezra 8:20 | 443 + +24 + +Whatever is com- +and salt without limit. +manded by the God of heaven must be done +diligently for His house. For why should +wrath fall on the realm of the king and his +And be advised that you have no +sons? +authority to impose tribute, duty, or toll +on any of the priests, Levites, singers, door- +keepers, temple servants, or other servants +25 +of this house of God. + +And you, Ezra, according to the wisdom of +your God, which you possess, are to appoint +magistrates and judges to judge all the peo- +ple west of the Euphrates—all who know the +laws of your God. And you are to teach these +26 +laws to anyone who does not know them. +If anyone does not keep the law of your +God and the law of the king, let a strict judg- +ment be executed against him, whether +death, banishment, confiscation of property, +or imprisonment. + +Ezra Blesses God + +27 + +Blessed be the LORD, the God of our fathers, +who has put into the heart of the king to so honor +the house of the LORD in Jerusalem, +and who +has shown me favor before the king, his counse- +lors, and all his powerful officials. + +28 + +And because the hand of the LORD my God was +upon me, I took courage and gathered the leaders +The Exiles Who Returned with Ezra +of Israel to return with me. + +8 + +2 + +These are the family heads and genealogical +records of those who returned with me from + +Babylon during the reign of King Artaxerxes: + +from the descendants of Phinehas, + +Gershom; +3 +from the descendants of Ithamar, Daniel; +from the descendants of David, Hattush +the descendants of Shecaniah; +from the descendants of Parosh, +Zechariah, and with him were registered +4 +150 men; + +of + +from the descendants of Pahath-Moab, +Eliehoenai son of Zerahiah, and with him +5 +200 men; + +f + +from the descendants of Zattu, + +Shecaniah son of Jahaziel, +him 300 men; +the last + +c 14 + +a 10 +b 13 + + and with + +from the descendants of Adin, Ebed son of + +7 +Jonathan, and with him 50 men; + +from the descendants of Elam, Jeshaiah + +8 +son of Athaliah, and with him 70 men; + +from the descendants of Shephatiah, Zeba- +9 +diah son of Michael, and with him 80 men; +from the descendants of Joab, Obadiah son + +10 +of Jehiel, and with him 218 men; +from the descendants of Bani, + +a + +Shelomith son of Josiphiah, +11 +160 men; + + and with him + +from the descendants of Bebai, + +Zechariah son of Bebai, and with him 28 +12 +men; + +from the descendants of Azgad, + +Johanan son of Hakkatan, and with him 110 +13 +men; + + b + +from the later + + descendants of + +Adonikam, these were their names: Eliphe- +let, Jeiel, and Shemaiah, and with them 60 +14 +men; + +c + +Ezra Sends for the Levites + +and from the descendants of Bigvai, both + and with them 70 men. + +Uthai and Zaccur, + +15 + +Now I assembled these exiles at the canal that +flows to Ahava, and we camped there three days. +And when I searched among the people and +16 +priests, I found no Levites there. + +d + +17 + +Then I summoned the leaders: Eliezer, Ariel, +Shemaiah, Elnathan, + Jarib, Elnathan, Nathan, +Zechariah, and Meshullam, as well as the teach- +And I sent them to +ers Joiarib and Elnathan. +Iddo, the leader at Casiphia, with a message for +him and his kinsmen, the temple servants + at +Casiphia, that they should bring to us ministers +18 +for the house of our God. + + e + +19 + +And since the gracious hand of our God was +upon us, they brought us Sherebiah—a man of +insight from the descendants of Mahli son of Levi, +the son of Israel—along with his sons and broth- +also Hashabiah, together with +ers, 18 men; +Jeshaiah, from the descendants of Merari, and his +They also +brothers and their sons, 20 men. +brought 220 of the temple servants, all desig- +nated by name. David and the officials had ap- +pointed them to assist the Levites. + +from the descendants of Shelomith, the son of Josiphiah +d 16 Elnathan +e 17 + +Zabbud + +20 + +Some LXX manuscripts (see also 1 Esdras 8:36); Hebrew +Or + +Nethinim +three times in verse, either as a repetition for emphasis or as a record of multiple men with this name. + +LXX, Syriac, and an alternate MT reading; the other alternate reads + +. + +the + appears + +Hebrew + +; also in verse 20 + + 444 | Ezra 8:21 + +Fasting for Protection + +21 + +22 + +And there by the Ahava Canal I proclaimed a +fast, so that we might humble ourselves before +our God and ask Him for a safe journey for us and +For I +our children, with all our possessions. +was ashamed to ask the king for an escort of sol- +diers and horsemen to protect us from our ene- +mies on the road, since we had told him, “The +hand of our God is gracious to all who seek Him, +but His great anger is against all who forsake +23 +Him.” + +So we fasted and petitioned our God about + +Priests to Guard the Offerings +this, and He granted our request. +24 + +25 + +Then I set apart twelve of the leading priests, +together with Sherebiah, Hashabiah, and ten of +and I weighed out to them the +their brothers, +contribution of silver and gold and the articles +that the king, his counselors, his leaders, and all +the Israelites there had offered for the house of +26 +our God. + +b +I weighed out into their hands 650 talents of + +a + +c + +27 + + articles of silver weighing 100 talents, + +d + +silver, +100 talents of gold, +1,000 darics, +28 +bronze, as precious as gold. + +20 gold bowls valued at + and two articles of fine polished + +29 + +Then I told them, “You are holy to the LORD, +and these articles are holy. The silver and gold +are a freewill offering to the LORD, the God of +Guard them carefully until you +your fathers. +weigh them out in the chambers of the house of +the LORD in Jerusalem before the leading priests, +30 +Levites, and heads of the Israelite families.” + +So the priests and Levites took charge of the +silver and gold and sacred articles that had been +weighed out to be taken to the house of our God +31 +in Jerusalem. + +On the twelfth day of the first month we set out +from the Ahava Canal to go to Jerusalem, and the +hand of our God was upon us to protect us from +the hands of the enemies and bandits along the +Arrival in Jerusalem +way. +32 + +So we arrived at Jerusalem and rested there + +for three days. +a 26 650 talents + +c 26 100 talents + +33 + +On the fourth day, in the house of our God, we +weighed out the silver and gold and sacred arti- +cles into the hand of Meremoth son of Uriah, the +priest. Eleazar son of Phinehas was with him, +34 +along with the Levites Jozabad son of Jeshua and +Everything was verified +Noadiah son of Binnui. +by number and weight, and the total weight was +35 +recorded at that time. + +Then the exiles who had returned from captiv- +ity sacrificed burnt offerings to the God of Israel: +12 bulls for all Israel, 96 rams, 77 lambs, and a +sin offering of 12 male goats. All this was a burnt +36 +offering to the LORD. + + e + +f + +They also delivered the king’s edicts to the + and governors of the region west + who proceeded to assist the + +royal satraps +of the Euphrates, +Intermarriage with Neighboring Peoples +people and the house of God. +(Nehemiah 13:23–31) + +9 + +After these things had been accomplished, +the leaders approached me and said, “The +people of Israel, including the priests and Le- +vites, have not kept themselves separate from +the surrounding peoples whose abominations +like those of the Canaanites, Hittites, +are +2 +Jebusites, Ammonites, Moabites, +Perizzites, +Indeed, the Israelites +Egyptians, and Amorites. +have taken some of their daughters as wives for +themselves and their sons, so that the holy seed +has been mixed with the people of the land. And +the leaders and officials have taken the lead in +3 +this unfaithfulness!” + +When I heard this report, I tore my tunic and +cloak, pulled out some hair from my head and +4 +beard, and sat down in horror. + +Then everyone who trembled at the words of +the God of Israel gathered around me because of +the unfaithfulness of the exiles, while I sat there +Ezra’s Prayer of Confession +in horror until the evening offering. +5 + +6 + +At the evening offering, I got up from my humil- +iation with my tunic and cloak torn, and I fell on +my knees, spread out my hands to the LORD my +God, + +and said: + +“O my God, I am ashamed and embarrassed +to lift up my face to You, my God, because our +worth + +b 26 100 talents + +d 27 + +1,000 drachmas +3.42 metric tons of silver articles. +f 36 + +governors beyond the River + + is approximately 24.5 tons or 22.2 metric tons of silver. + +e 36 + is approximately 3.77 tons or 3.42 metric tons of gold. + +satrap + + is approximately 3.77 tons or + +Or + was a Persian official. + +; that is, approximately 18.5 pounds or 8.4 kilograms of gold + +A + +Hebrew + + 7 + +iniquities are higher than our heads, and our +From the +guilt has reached the heavens. +days of our fathers to this day, our guilt has +been great. Because of our iniquities, we and +our kings and priests have been delivered +into the hands of the kings of the earth and +subjected to the sword and to captivity, to +8 +pillage and humiliation, as we are this day. + + a + +But now, for a brief moment, grace has +come from the LORD our God to preserve for +us a remnant and to give us a stake + in His +holy place. Even in our bondage, our God has +9 +given us new life and light to our eyes. +Though we are slaves, our God has not for- +saken us in our bondage, but He has ex- +tended to us grace in the sight of the kings of +Persia, giving us new life to rebuild the house +of our God and repair its ruins, and giving us +10 +a wall of protection in Judah and Jerusalem. + +11 + +12 + +And now, our God, what can we say after +this? For we have forsaken the command- +that You gave through Your serv- +ments +ants the prophets, saying: ‘The land that you +are entering to possess is a land polluted by +the impurity of its peoples and the abomina- +tions with which they have filled it from end +Now, therefore, do not give your +to end. +daughters in marriage to their sons or take +their daughters for your sons. Never seek +their peace or prosperity, so that you may be +strong and may eat the good things of the +land, leaving it as an inheritance to your sons +13 +forever.’ + +14 + +After all that has come upon us because of +our evil deeds and our great guilt (though +You, our God, have punished us less than our +iniquities deserve and have given us such a +shall we again break +remnant as this), +Your commandments and intermarry with +the peoples who commit these abomina- +tions? Would You not become so angry with +us as to wipe us out, leaving no remnant or +15 +survivor? + +O LORD, God of Israel, You are righteous! +For we remain this day as a remnant. Here +we are before You in our guilt, though be- +cause of it no one can stand before You.” + + a 8 + +nail + +foothold + +b 6 + +went + +Or + + or + +Or + +Ezra 10:11 | 445 + +Shecaniah’s Encouragement + +10 + +While Ezra prayed and made this confes- +sion, weeping and falling facedown be- +fore the house of God, a very large assembly of +Israelites—men, women, and children—gath- +ered around him, and the people wept bitterly as +2 +well. + +Then Shecaniah son of Jehiel, an Elamite, said to +Ezra: “We have been unfaithful to our God by +marrying foreign women from the people of the +3 +land, yet in spite of this, there is hope for Israel. +So now let us make a covenant before our God +to send away all the foreign wives and their chil- +dren, according to the counsel of my lord and of +those who tremble at the command of our God. +Get up, for +Let it be done according to the Law. +this matter is your responsibility, and we will +5 +support you. Be strong and take action!” + +4 + +So Ezra got up and made the leading priests, Le- +vites, and all Israel take an oath to do what had +The People’s Confession of Sin +been said. And they took the oath. +6 + + b + +Then Ezra withdrew from before the house of +God and walked to the chamber of Jehohanan son + there, he ate no +of Eliashib. And while he stayed +food and drank no water, because he was mourn- +7 +ing over the unfaithfulness of the exiles. + +8 + +And a proclamation was issued throughout Ju- +dah and Jerusalem that all the exiles should +Whoever failed to appear +gather at Jerusalem. +within three days would forfeit all his property, +according to the counsel of the leaders and el- +ders, and would himself be expelled from the +9 +assembly of the exiles. + +So within the three days, all the men of Judah +and Benjamin assembled in Jerusalem, and on +the twentieth day of the ninth month, all the peo- +ple sat in the square at the house of God, trem- +bling regarding this matter and because of the +10 +heavy rain. + +11 + +Then Ezra the priest stood up and said to them, +“You have been unfaithful by marrying foreign +Now, +women, adding to the guilt of Israel. +therefore, make a confession to the LORD, the +God of your fathers, and do His will. Separate +yourselves from the people of the land and from +your foreign wives.” + + 446 | Ezra 10:12 + +12 + +13 + +14 + +And the whole assembly responded in a loud +But there +voice: “Truly we must do as you say! +are many people here, and it is the rainy season. +We are not able to stay out in the open. Nor is this +the work of one or two days, for we have trans- +Let our leaders +gressed greatly in this matter. +represent the whole assembly. Then let everyone +in our towns who has married a foreign woman +come at an appointed time, together with the el- +ders and judges of each town, until the fierce +anger of our God in this matter is turned away +15 +from us.” + +(Only Jonathan son of Asahel and Jahzeiah son +of Tikvah, supported by Meshullam and Shab- +16 +bethai the Levite, opposed this plan.) + +So the exiles did as proposed. Ezra the priest +selected men who were family heads, each of +them identified by name, to represent their fam- +ilies. On the first day of the tenth month they +and by the first day +launched the investigation, +of the first month they had dealt with all the men +Those Guilty of Intermarriage +who had married foreign women. +18 + +17 + +Among the descendants of the priests who had +married foreign women were found these de- + and his +scendants of Jeshua son of Jozadak +brothers: + + a + +19 +Maaseiah, Eliezer, Jarib, and Gedaliah. + +They pledged to send their wives away, + +20 + +and for their guilt they presented a ram +from the flock as a guilt offering. + +From the descendants of Immer: + +21 + +Hanani and Zebadiah. + +From the descendants of Harim: + +22 + +Maaseiah, Elijah, Shemaiah, Jehiel, and +Uzziah. + +From the descendants of Pashhur: + +23 + +Elioenai, Maaseiah, Ishmael, Nethanel, +Jozabad, and Elasah. + +Among the Levites: + +24 + +Jozabad, Shimei, Kelaiah (that is, Kelita), +Pethahiah, Judah, and Eliezer. + +From the singers: + +From the gatekeepers: +25 + +Shallum, Telem, and Uri. + +And among the other Israelites, from the + +descendants of Parosh: +b + +26 + +Ramiah, Izziah, Malchijah, Mijamin, Eleazar, +Malchijah, + + and Benaiah. + +From the descendants of Elam: + +27 + +Mattaniah, Zechariah, Jehiel, Abdi, +Jeremoth, and Elijah. + +From the descendants of Zattu: + +28 + +Elioenai, Eliashib, Mattaniah, Jeremoth, +Zabad, and Aziza. + +From the descendants of Bebai: + +29 + +Jehohanan, Hananiah, Zabbai, and Athlai. + +From the descendants of Bani: + +30 + +Meshullam, Malluch, Adaiah, Jashub, Sheal, +and Jeremoth. + +From the descendants of Pahath-moab: + +31 + +Adna, Chelal, Benaiah, Maaseiah, Mattaniah, +Bezalel, Binnui, and Manasseh. + +From the descendants of Harim: + +32 + +Eliezer, Isshijah, Malchijah, Shemaiah, +Shimeon, +Shemariah. + +Benjamin, Malluch, and + +33 + +From the descendants of Hashum: + +34 + +Mattenai, Mattattah, Zabad, Eliphelet, +Jeremai, Manasseh, and Shimei. + +From the descendants of Bani: + +35 + +36 +Maadai, Amram, Uel, +37 +Bedeiah, Cheluhi, +Eliashib, +c + +38 + +Benaiah, + +Vaniah, Meremoth, + +Mattaniah, Mattenai, and Jaasu. + +39 +40 +41 + +From the descendants of Binnui: + +Shimei, +Adaiah, +Sharai, +Shemariah, +and Joseph. + +43 + +Shelemiah, Nathan, +Machnadebai, Shashai, +42 +Azarel, Shelemiah, + +Shallum, Amariah, + +And from the descendants of Nebo: + +44 + +Jeiel, Mattithiah, Zabad, Zebina, Jaddai, Joel, +and Benaiah. + +d + +All these men had married foreign women, and +And + +some of them had children by these wives. +b 25 + +Hashabiah c 38 + +Eliashib. + +a 18 Jozadak +Bani, and Binnui, (and) Shimei, + +Jehozadak + +d 44 + +and they sent them away with their children + + is a variant of + +; see 1 Chronicles 6:14. + +Hebrew; LXX + +See LXX; Hebrew + +Or + + Nehemiah + +Nehemiah’s Prayer (Deuteronomy 30:1–10) + +10 + +1 + +These are the words of Nehemiah son of +Hacaliah: + +a + +2 + + in the twentieth year, +In the month of Chislev, +Hanani, one +while I was in the citadel of Susa, +of my brothers, arrived with men from Judah. So +I questioned them about the remnant of the +Jews who had survived the exile, and also about +3 +Jerusalem. + +And they told me, “The remnant who survived +the exile are there in the province, in great trou- +ble and disgrace. The wall of Jerusalem is broken +4 +down, and its gates have been burned with fire.” + +When I heard these words, I sat down and wept. +I mourned for days, fasting and praying before +5 +the God of heaven. + +Then I said: + + b + +“O LORD, God of heaven, the great and awe- +some God who keeps His covenant of loving +6 + with those who love Him and keep +devotion +His commandments, +let Your eyes be open +and Your ears attentive to hear the prayer +that I, Your servant, now pray before You day +and night for Your servants, the Israelites. + +7 + +I confess the sins that we Israelites have +committed against You. Both I and my fa- +ther’s house have sinned. +We have behaved +corruptly against You and have not kept the +commandments, statutes, and ordinances +8 +that You gave Your servant Moses. + + e + +11 + +They are Your servants and Your people. +You redeemed them by Your great power +O Lord, may Your ear be +and mighty hand. +attentive to my prayer and to the prayers of + who delight to revere Your +Your servants +name. Give Your servant success this day, I +pray, and grant him mercy in the sight of this +man.” + +Nehemiah Sent to Jerusalem +(At that time I was the cupbearer to the king.) + +f + +2 + +Now in the month of Nisan, + in the twentieth +year of King Artaxerxes, when wine was set +before him, I took the wine and gave it to the +so +king. I had never been sad in his presence, +the king said to me, “Why is your face sad, though +you are not ill? This could only be sadness of the +heart.” + +2 + +3 + +and replied to the +I was overwhelmed with fear +king, “May the king live forever! Why should I not +be sad when the city where my fathers are buried +lies in ruins, and its gates have been destroyed by +4 +fire?” + +“What is your request?” replied the king. + +5 + +So I prayed to the God of heaven +and answered +the king, “If it pleases the king, and if your serv- +ant has found favor in your sight, I ask that you +send me to Judah, to the city where my fathers +6 +are buried, so that I may rebuild it.” + +Then the king, with the queen seated beside +him, asked me, “How long will your journey take, +and when will you return?” So it pleased the king +7 +to send me, and I set a time. + +9 + +Remember, I pray, the word that You com- +manded Your servant Moses when You said, +‘If you are unfaithful, I will scatter you +but if you return to Me +among the nations, +and keep and practice My commandments, +then even if your exiles have been banished + I will gather them +to the farthest horizon, + d +from there and bring them to the place I have +chosen as a dwelling for My Name.’ +goodness + +I also said to him, “If it pleases the king, may let- +ters be given to me for the governors west of the +8 + so that they will grant me safe pas- +Euphrates, +sage until I reach Judah. +And may I have a letter +to Asaph, keeper of the king’s forest, so that he +will give me timber to make beams for the gates +loving devotion + is the ninth month of the Hebrew lunar calendar, usually occurring within the months of November and Decem- +to +c 9 +Forms of the Hebrew +ber. +; +the extremity of the heavens +the range of meaning includes +Your servants +f 1 Nisan + +mercy +to the prayer of Your servant and to the prayer of +Or + + are translated here and in most cases throughout the Scriptures as + +chesed +love +d 9 + +a 1 Chislev +b 5 + +loyalty to a covenant + +faithfulness + +, as well as + +kindness + +e 11 + +. + +g + +c + +, +, +Deuteronomy 30:1–4 + +, + +, and +Literally + +g 7 + +beyond the River + is the first month of the Hebrew lunar calendar, usually occurring within the months of March + +and April. + +Hebrew + +; also in verse 9 + + 448 | Nehemiah 2:9 + +of the citadel to the temple, for the city wall, and +for the house I will occupy.” + +And because the gracious hand of my God was +9 +upon me, the king granted my requests. + +Then I went to the governors west of the +Euphrates and gave them the king’s letters. The +king had also sent army officers and cavalry with +10 +me. + +But when Sanballat the Horonite and Tobiah +the Ammonite official heard about this, they +were deeply disturbed that someone had come +Nehemiah Inspects the Walls +to seek the well-being of the Israelites. +11 + +12 + +After I had arrived in Jerusalem and had been +I set out at night with a few +there three days, +men. I did not tell anyone what my God had laid +on my heart to do for Jerusalem. The only animal +13 +with me was the one on which I was riding. + + a + +So I went out at night through the Valley Gate + and the Dung +toward the Well of the Serpent +Gate, and I inspected the walls of Jerusalem that +had been broken down and the gates that had +14 +been destroyed by fire. + +15 + +Then I went on to the Fountain Gate and the +King’s Pool, but there was no room for the animal +so I went up the val- +under me to get through; +ley by night and inspected the wall. Then I +headed back and reentered through the Valley +16 +Gate. + +17 + +The officials did not know where I had gone or +what I was doing, for I had not yet told the Jews +or priests or nobles or officials or any other +Then I said to them, “You see the +workers. +trouble we are in. Jerusalem lies in ruins, and its +gates have been burned down. Come, let us re- +build the wall of Jerusalem, so that we will no +18 +longer be a disgrace.” + +I also told them about the gracious hand of my +God upon me, and what the king had said to me. + +“Let us start rebuilding,” they replied, and they +19 +set their hands to this good work. + +But when Sanballat the Horonite, Tobiah the +Ammonite official, and Geshem the Arab heard +about this, they mocked us and ridiculed us, say- +ing, “What is this you are doing? Are you rebel- +the governor +b 5 +a 13 +ling against the king?” +e 13 1,000 cubits +the River +Or + +their Lord + +Dragon + +Jackal + + or + + or + +Or + +20 + +So I answered them and said, “The God of +heaven is the One who will grant us success. We, +His servants, will start rebuilding, but you have +The Builders of the Walls +no portion, right, or claim in Jerusalem.” + +3 + +At the Sheep Gate, Eliashib the high priest +and his fellow priests began rebuilding. +They dedicated it and installed its doors. After +building as far as the Tower of the Hundred and +2 +the Tower of Hananel, they dedicated the wall. +The men of Jericho built next to Eliashib, and + +3 +Zaccur son of Imri built next to them. + +4 + +The Fish Gate was rebuilt by the sons of +Hassenaah. They laid its beams and installed its +doors, bolts, and bars. +Next to them, Meremoth +son of Uriah, the son of Hakkoz, made repairs. +Next to him, Meshullam son of Berechiah, the son +of Meshezabel, made repairs; and next to him, Za- +dok son of Baana made repairs as well. +Next to +him, the Tekoites made repairs, but their nobles +did not put their shoulders to the work under +6 +their supervisors. + +5 + + b + + c + +7 + +The Jeshanah Gate + + was repaired by Joiada son +of Paseah and Meshullam son of Besodeiah. They +laid its beams and installed its doors, bolts, and +bars. +Next to them, repairs were made by Mela- +tiah the Gibeonite, Jadon the Meronothite, and +the men of Gibeon and Mizpah, who were under +the authority of the governor of the region west +of the Euphrates. +Next to them, Uzziel son of +Harhaiah, one of the goldsmiths, made repairs. +And next to him, Hananiah, one of the perfumers, +made repairs. They fortified Jerusalem as far as +9 +the Broad Wall. + +8 + +d + +10 + +11 + +Next to them, Rephaiah son of Hur, ruler of a +half-district of Jerusalem, made repairs; +next +to him, Jedaiah son of Harumaph made repairs +across from his house; and next to him, Hattush +son of Hashabneiah made repairs. +Malchijah +son of Harim and Hasshub son of Pahath-moab +repaired another section, as well as the Tower +of the Ovens. +And next to them, Shallum son +of Hallohesh, ruler of the other half-district of +Jerusalem, made repairs, with the help of his +13 +daughters. + +12 + +The Valley Gate was repaired by Hanun and +the residents of Zanoah. They rebuilt it, installed +its doors, bolts, and bars, and repaired a thou- +the governor beyond +c 6 + far as the Dung Gate. +sand cubits + + of the wall as + +The Old City Gate + +d 7 + + e + +Or + +Hebrew + + is approximately 1,500 feet or 457.2 meters. + + 14 + +The Dung Gate was repaired by Malchijah +son of Rechab, ruler of the district of Beth- +haccherem. He rebuilt it and installed its doors, + a +15 +bolts, and bars. + +The Fountain Gate was repaired by Shallun +son of Col-hozeh, ruler of the district of Mizpah. +He rebuilt it, roofed it, and installed its doors, +bolts, and bars. He also repaired the wall of the + near the king’s garden, as far as +Pool of Shelah +16 +the stairs that descend from the City of David. + + b + +Beyond him, Nehemiah son of Azbuk, ruler of +a half-district of Beth-zur, made repairs up to a +point opposite the tombs of David, as far as the +17 +artificial pool and the House of the Mighty. + +Nehemiah 4:9 | 449 + +Zadok son of Immer made repairs opposite his +house, and next to him, Shemaiah son of She- +30 +caniah, the guard of the East Gate, made repairs. + +31 + +Next to him, Hananiah son of Shelemiah, as +well as Hanun the sixth son of Zalaph, repaired +another section. Next to them, Meshullam son of +Berechiah made repairs opposite his own quar- +Next to him, Malchijah, one of the gold- +ters. +smiths, made repairs as far as the house of the +temple servants and the merchants, opposite the +Inspection Gate, and as far as the upper room +And between the upper +above the corner. +room above the corner and the Sheep Gate, the +The Work Ridiculed +goldsmiths and merchants made repairs. + +32 + + c + +18 + +Next to him, the Levites made repairs under +Rehum son of Bani, and next to him, Hashabiah, +ruler of a half-district of Keilah, made repairs for +his district. +Next to him, their countrymen +made repairs under Binnui + son of Henadad, +ruler of the other half-district of Keilah. +And +next to him, Ezer son of Jeshua, ruler of Mizpah, +repaired another section opposite the ascent to +20 +the armory, near the angle in the wall. + +19 + +Next to him, Baruch son of Zabbai diligently re- +paired another section, from the angle to the +21 +doorway of the house of Eliashib the high priest. +Next to him, Meremoth son of Uriah, the son of +Hakkoz, repaired another section, from the door- +way of the house of Eliashib to the end of the +house. +And next to him, the priests from the +23 +surrounding area made repairs. + +22 + +25 + +24 + +Beyond them, Benjamin and Hasshub made +repairs in front of their house, and next to them, +Azariah son of Maaseiah, the son of Ananiah, +made repairs beside his house. +After him, +Binnui son of Henadad repaired another section, +from the house of Azariah to the angle and the +corner, +and Palal son of Uzai made repairs +opposite the angle and the tower that juts out +from the upper palace of the king near the court- +yard of the guard. Next to him, Pedaiah son of Pa- +rosh + living on the hill +of Ophel made repairs opposite the Water Gate +27 +toward the east and the tower that juts out. +And next to them, the Tekoites repaired an- +other section, from a point opposite the great +28 +tower that juts out to the wall of Ophel. + +and the temple servants + +26 + + d + +29 + +Above the Horse Gate, each of the priests made +Next to them, + +a 15 +repairs in front of his own house. + +b 15 Pool of Shelah + +Shallum + +4 + +2 + +Now when Sanballat heard that we were re- +building the wall, he was furious and filled +before +with indignation. He ridiculed the Jews +his associates and the army of Samaria, saying, +“What are these feeble Jews doing? Can they re- +store the wall by themselves? + Will they offer +sacrifices? Will they complete it in a day? Can +they bring these burnt stones back to life from +3 +the mounds of rubble?” + + e + +Then Tobiah the Ammonite, who was beside +him, said, “If even a fox were to climb up on what +they are building, it would break down their wall +4 +of stones!” + +Hear us, O God, for we are despised. Turn their +scorn back upon their own heads, and let them +Do not +be taken as plunder to a land of captivity. +cover up their iniquity or let their sin be blotted +out from Your sight, for they have provoked the +6 +builders. + +5 + +f + +So we rebuilt the wall until all of it was joined +together up to half its height, for the people had +7 +a mind to work. + +8 + +When Sanballat and Tobiah, together with the +Arabs, Ammonites, and Ashdodites, heard that +the repair to the walls of Jerusalem was pro- +gressing and that the gaps were being closed, +and all of them conspired to +they were furious, +come and fight against Jerusalem and create a +Discouragement Overcome +hindrance. +9 + +So we prayed to our God and posted a guard +c 18 + +against them day and night. + +Hebrew; Syriac + +e 2 + +Will they commit themselves to God? + + is another name for the Pool of Siloam. + +the Nethinim +d 26 +Two Hebrew manu- +have provoked You to anger before the builders + +Bavvai + +f 5 + +scripts and Syriac (see also LXX and Nehemiah 3:24); most Hebrew manuscripts +also in verse 31 + +Or + +Or + +Hebrew + +; + + 450 | Nehemiah 4:10 + +10 + + a + +Meanwhile, the people of Judah said: + +“The strength of the laborer fails, +and there is so much rubble + +11 + +that we will never be able +to rebuild the wall.” + +And our enemies said, “Before they know or +see a thing, we will come into their midst, kill +12 +them, and put an end to the work.” + +At that time the Jews who lived nearby came +and told us ten times over, “Wherever you turn, +13 +they will attack us.” + +So I stationed men behind the lowest sections +of the wall, at the vulnerable areas. I stationed +them by families with their swords, spears, and +14 +bows. + +After I had made an inspection, I stood up and +said to the nobles, the officials, and the rest of the +people, “Do not be afraid of them. Remember the +Lord, who is great and awesome, and fight for +your brothers, your sons and your daughters, +15 +your wives and your homes.” + +When our enemies heard that we were aware +of their scheme and that God had frustrated it, +16 +each of us returned to his own work on the wall. +And from that day on, half of my servants did +the work while the other half held spears, +shields, bows, and armor. + +17 + +The officers stationed themselves behind all the +who were rebuilding the wall. +people of Judah +The laborers who carried materials worked with +18 +one hand and held a weapon with the other. +And each of the builders worked with his +sword strapped at his side. But the trumpeter +19 +stayed beside me. + +20 + +Then I said to the nobles, the officials, and the +rest of the people: “The work is great and exten- +sive, and we are spread out far from one another +Wherever you hear the sound +along the wall. +of the horn, rally to us there. Our God will fight +21 +for us!” + +22 + +So we continued the work, while half of the +men held spears from the break of dawn until +At that time I also said to +the stars came out. +the people, “Let every man and his servant spend +the night inside Jerusalem, so that they can stand +23 +guard by night and work by day.” + +b + +clothes; each carried his weapon, even to go for +Nehemiah Defends the Oppressed +water. + +5 + +About that time there was a great outcry +from the people and their wives against + +2 +their fellow Jews. + +Some were saying, “We and our sons and daugh- +ters are numerous. We must get grain in order to +3 +eat and stay alive.” + +Others were saying, “We are mortgaging our +fields, our vineyards, and our homes to get grain +4 +during the famine.” + +5 + +Still others were saying, “We have borrowed +money to pay the king’s tax on our fields and +vineyards. +We and our children are just like our +countrymen and their children, yet we are sub- +jecting our sons and daughters to slavery. Some +of our daughters are already enslaved, but we are +powerless to redeem them because our fields +6 +and vineyards belong to others.” + +7 + +When I heard their outcry and these com- +plaints, I became extremely angry, +and after se- +rious thought I rebuked the nobles and officials, +saying, “You are exacting usury from your own +brothers!” + +8 + +So I called a large assembly against them +and +said, “We have done our best to buy back our +Jewish brothers who were sold to foreigners, but +now you are selling your own brothers, that they +may be sold back to us!” + +But they remained silent, for they could find +9 +nothing to say. + +11 + +10 + +So I continued, “What you are doing is not right. +Shouldn’t you walk in the fear of our God to avoid +the reproach of our foreign enemies? +I, as well +as my brothers and my servants, have been lend- +ing the people money and grain. Please, let us +stop this usury. +Please restore to them imme- +diately their fields, vineyards, olive groves, and +houses, along with the percentage of the money, +grain, new wine, and oil that you have been as- +12 +sessing them.” + +“We will restore it,” they replied, “and will re- +quire nothing more from them. We will do as you +say.” + +So neither I nor my brothers nor my servants +a 10 +nor the guards with me changed out of our + +Meanwhile, Judah said + +b 23 + +each carried his weapon in his right hand + +So I summoned the priests and required of the +nobles and officials an oath that they would do +what they had promised. +I also shook out the + +13 + +Or + +Or + + folds of my robe and said, “May God likewise +shake out of his house and possessions every +man who does not keep this promise. May such a +man be shaken out and have nothing!” + +The whole assembly said, “Amen,” and they +praised the LORD. And the people did as they had +Nehemiah’s Generosity +promised. +14 + +Furthermore, from the day King Artaxerxes +appointed me to be their governor in the land of +Judah, from his twentieth year until his thirty- +second year (twelve years total), neither I nor my +15 +brothers ate the food allotted to the governor. + +a + +The governors before me had heavily bur- +dened the people, taking from them bread and +wine plus forty shekels of silver. + Their servants +also oppressed the people. But I did not do this, +Instead, I devoted +because of my fear of God. +myself to the construction of the wall, and all my +servants were gathered there for the work; we +17 +did not acquire any land. + +16 + +There were 150 Jews and officials at my table, +18 +besides the guests from the surrounding nations. +Each day one ox, six choice sheep, and some +fowl were prepared for me, and once every ten +days an abundance of all kinds of wine was pro- +vided. But I did not demand the food allotted to +the governor, because the burden on the people +19 +was so heavy. + +Remember me favorably, O my God, for all that + +Sanballat’s Conspiracy +I have done for this people. + +6 + +2 + +When Sanballat, Tobiah, Geshem the Arab, +and the rest of our enemies heard that I had +rebuilt the wall and not a gap was left—though +to that time I had not yet installed the doors in +Sanballat and Geshem sent me this +the gates— + c + b +message: “Come, let us meet together in one of +the villages +3 +But they were planning to harm me. + + on the plain + + of Ono.” + +So I sent messengers to them, saying, “I am do- +ing a great work and cannot come down. Why +should the work stop while I leave it to go down +4 +to you?” + +Nehemiah 6:16 | 451 + +5 + +The fifth time, Sanballat sent me this same mes- +sage by his young servant, who had in his hand +that read: +an unsealed letter + +6 + + d + +7 + +“It is reported among the nations—and Ge- + agrees—that you and the Jews are +shem +plotting to revolt, and this is why you are +building the wall. According to these reports, +and you have +you are to become their king, +even appointed prophets in Jerusalem to +proclaim on your behalf: ‘There is a king in +Judah.’ Soon these rumors will reach the ears +of the king. So come, let us confer together.” + +8 + +Then I sent him this reply: “There is nothing to +these rumors you are spreading; you are invent- +9 +ing them in your own mind.” + +For they were all trying to frighten us, saying, +“Their hands will be weakened in the work, and +it will never be finished.” +10 +But now, my God, + + strengthen my hands. + +e + +Later, I went to the house of Shemaiah son of +Delaiah, the son of Mehetabel, who was confined +to his house. He said: + +“Let us meet at the house of God + +inside the temple. + +Let us shut the temple doors + +11 + +because they are coming to kill you— +by night they are coming to kill you!” + +But I replied, “Should a man like me run away? +Should one like me go into the temple to save his +12 +own life? I will not go!” + +13 + +I realized that God had not sent him, but that +he had uttered this prophecy against me because +He had +Tobiah and Sanballat had hired him. +been hired to intimidate me so that I would sin +by doing as he suggested, so they could give me a +14 +bad name in order to discredit me. + +O my God, remember Tobiah and Sanballat for +what they have done, and also Noadiah the +prophetess and the other prophets who tried to +Completion of the Wall +intimidate me. +15 + +f + +16 +So the wall was completed in fifty-two days, on +the twenty-fifth of Elul. +When all our enemies +heard about this, all the surrounding nations +were afraid and disheartened, for they realized +that this task had been accomplished by our God. + +b 2 + +c 2 + +in Kephirim +my God + +in the valley d 6 +f 15 Elul + +Four times they sent me the same message, and +each time I gave the same reply. +a 15 40 shekels +Gashmu + +Geshem + +e 9 + +But now + + is approximately 1 pound or 453.6 grams of silver. + +Or + has been included. +sixth month of the Hebrew lunar calendar, usually occurring within the months of August and September. + +; see verse 1. + +, a variant of + +; for clarity, + +Hebrew + +Or + +Hebrew + is the + + 452 | Nehemiah 6:17 + +17 + +13 + +18 + +Also in those days, the nobles of Judah sent +many letters to Tobiah, and Tobiah’s letters kept +For many in Judah were +coming to them. +bound by oath to him, since he was a son-in-law +of Shecaniah son of Arah, and his son Jehohanan +had married the daughter of Meshullam son of +19 +Berechiah. + +Moreover, these nobles kept reporting to me +Tobiah’s good deeds, and they relayed my words +Securing the City +to him. And Tobiah sent letters to intimidate me. + +7 + +When the wall had been rebuilt and I had set +the doors in place, the gatekeepers, singers, + +2 +and Levites were appointed. + +3 + +Then I put my brother Hanani in charge of Jeru- +salem, along with Hananiah the commander of +the fortress, because he was a faithful man who +And I told them, +feared God more than most. +“Do not open the gates of Jerusalem until the sun +is hot. While the guards are on duty, keep the +doors shut and securely fastened. And appoint +the residents of Jerusalem as guards, some at +The List of Returning Exiles (Ezra 2:1–67) +their posts and some at their own homes.” +4 + +5 + +Now the city was large and spacious, but there +were few people in it, and the houses had not yet +Then my God put it into my heart +been rebuilt. +to assemble the nobles, the officials, and the peo- +ple to be enrolled by genealogy. I found the gene- +alogical register of those who had first returned, +6 +and I found the following written in it: + +7 + +These are the people of the province who came +up from the captivity of the exiles carried away +to Babylon by Nebuchadnezzar its king. They re- +turned to Jerusalem and Judah, each to his own +accompanied by Zerubbabel, Jeshua, Ne- +town, +a +hemiah, Azariah, Raamiah, Nahamani, Mordecai, +Bilshan, Mispereth, Bigvai, Nehum, and Baanah. + +8 + +9 + +10 + +11 + +This is the count of the men of Israel: + +the descendants of Parosh, 2,172; + +the descendants of Shephatiah, 372; + +the descendants of Arah, 652; + +the descendants of Pahath-moab + +12 +(through the line of Jeshua and Joab), 2,818; + +14 + +15 + +16 + +17 + +18 + +19 + +20 + +21 + +24 + +25 + +26 + +the descendants of Zattu, 845; + +b + +the descendants of Zaccai, 760; + +the descendants of Binnui, + + 648; + +the descendants of Bebai, 628; + +the descendants of Azgad, 2,322; + +the descendants of Adonikam, 667; + +the descendants of Bigvai, 2,067; + +the descendants of Adin, 655; + +the descendants of Ater (through + +22 +Hezekiah), 98; +23 + +the descendants of Hashum, 328; + +the descendants of Bezai, 324; + +the descendants of Hariph, + +the descendants of Gibeon, + + 95; + +c + +d + 112; + +the men of Bethlehem and Netophah, + +27 +188; +28 + +29 + +e +the men of Anathoth, 128; + +the men of Beth-azmaveth, + + 42; + +the men of Kiriath-jearim, Chephirah, + +30 +and Beeroth, 743; +31 + +32 + +33 + +34 + +the men of Ramah and Geba, 621; + +the men of Michmash, 122; +f + +the men of Bethel and Ai, 123; + +the men of the other Nebo, + + 52; + +g + +the descendants of the other Elam, + +35 +1,254; +36 + + h + +37 + +38 + +39 + +the descendants of Harim, 320; + + of Jericho, 345; + +the men +the men of Lod, Hadid, and Ono, 721; + +and the descendants of Senaah, 3,930. + +The priests: +the descendants of Jedaiah (through the +40 +house of Jeshua), 973; +41 + +the descendants of Immer, 1,052; + +the descendants of Pashhur, 1,247; + +and the descendants of Harim, 1,017. + +42 + +43 + +The Levites: + + i + +44 + +the descendants of Jeshua (through +Kadmiel, through the line of Hodevah + +), 74. + +The singers: +the descendants of Asaph, 148. + +the descendants of Elam, 1,254; + +accompanied by Zerubbabel, Jeshua, Nehemiah, Seraiah, Reelaiah, Mordecai, Bilshan, Mispar, + +a 7 +Bigvai, Rehum, and Baanah +Parallel text at Ezra 2:2 +d 25 Gibeon +Nebo +of West Elam +g 34 + + is a variant of +Or + +b 15 Binnui + +Gibbar + +Bani +e 28 Beth-azmaveth + +c 24 Hariph + +Azmaveth + +Jorah + +h 36 + + is a variant of +the sons + +; see Ezra 2:10. + +i 43 Hodevah + +; see Ezra 2:20. + + is a variant of + + is a variant of + +Hodaviah +; see Ezra 2:24. + +Or + +of West + +f 33 +; see Ezra 2:18. + +Literally + +; here and in v. 37 + + is a variant of + +; see Ezra 2:40. + + 45 + +56 + +Nehemiah 7:69 | 453 + +The gatekeepers: + +the descendants of Shallum, + +the descendants of Ater, + +the descendants of Talmon, + +the descendants of Akkub, + +the descendants of Hatita, + +and the descendants of Shobai, + + a + +46 + +138 in all. + +The temple servants: + +the descendants of Ziha, + +the descendants of Hasupha, +47 +the descendants of Tabbaoth, + +b + +the descendants of Keros, + +the descendants of Sia, +48 +the descendants of Padon, + +the descendants of Lebanah, + +the descendants of Hagabah, +49 +the descendants of Shalmai, + +the descendants of Hanan, + +the descendants of Giddel, +50 +the descendants of Gahar, + +the descendants of Reaiah, + +the descendants of Rezin, +51 +the descendants of Nekoda, + +the descendants of Gazzam, + +the descendants of Uzza, +52 +the descendants of Paseah, + +the descendants of Besai, + +the descendants of Meunim, +53 +the descendants of Nephushesim, + +c + +the descendants of Bakbuk, + +the descendants of Hakupha, +d +54 +the descendants of Harhur, + +the descendants of Bazlith, + +the descendants of Mehida, +55 +the descendants of Harsha, + +the descendants of Barkos, + +57 + +the descendants of Neziah, + +and the descendants of Hatipha. + +The descendants of the servants of + +Solomon: + +the descendants of Sotai, + +e + +the descendants of Sophereth, +58 +the descendants of Perida, + +the descendants of Jaala, + +the descendants of Darkon, +59 +the descendants of Giddel, + +the descendants of Shephatiah, + +the descendants of Hattil, + +f + +the descendants of Pochereth-hazzebaim, +60 +and the descendants of Amon. + +The temple servants and descendants of +the servants of Solomon numbered 392 in +all. + +61 + +g + +The following came up from Tel-melah, + and Immer, but they +families were + +Tel-harsha, Cherub, Addon, +could not prove that their +descended from Israel: + +62 + +the descendants of Delaiah, + +the descendants of Tobiah, + +and the descendants of Nekoda, +63 + +642 in all. + +And from among the priests: the + +descendants of Hobaiah, + +the descendants of Hakkoz, + +and the descendants of Barzillai (who +had married a daughter of Barzillai the Gile- +64 +adite and was called by their name). + +65 + +These men searched for their family rec- +ords, but they could not find them and so +were excluded from the priesthood as un- +The governor ordered them not to +clean. +eat the most holy things until there was a +67 +priest to consult the Urim and Thummim. + +h + +66 + +i + +68 + +The whole assembly numbered 42,360, + +in +addition to their 7,337 menservants and maid- +servants, as well as their 245 male and +69 +They had 736 horses, 245 +female singers. +c 52 Nephushesim +Siaha +435 camels, and 6,720 donkeys. +mules, +Bazluth + is a variant of +g 61 Addon + +e 57 Perida +; see Ezra 2:44. +Addan + +Peruda + is a + +h 65 + +; see Ezra 2:52. + is a variant of + + is a variant of + +; + +; see Ezra 2:59. + +Liter- + +the descendants of Sisera, +The Nethinim +the descendants of Temah, + +a 46 + +Nephusim + +Hebrew +f 59 Amon +Lights and Perfections + +; see Ezra 2:50. + +i 68 + +b 47 Sia + +; also in verses 60 and 73 + +d 54 Bazlith +Ami + + is a variant of + +; see Ezra 2:57. + + is a variant of + +variant of +see Ezra 2:55. +ally +clude this verse. + +Some Hebrew manuscripts (see also Ezra 2:66); most Hebrew manuscripts do not in- + + 454 | Nehemiah 7:70 + +Offerings by the Exiles +(Exodus 38:21–31 ; Ezra 2:68–70) + +70 + +a + +71 + +Some of the heads of the families contributed +to the project. The governor gave to the treasury + 50 bowls, and 530 priestly +1,000 darics of gold, +And some of the heads of the fami- +garments. + b +lies gave to the treasury for the project 20,000 +The +darics of gold +rest of the people gave a total of 20,000 darics of +gold, 2,000 minas of silver, + and 67 priestly gar- +73 +ments. + + and 2,200 minas of silver. +d + +72 + +c + +So the priests, Levites, gatekeepers, singers, +and temple servants, along with some of the peo- +ple and the rest of the Israelites, settled in their +own towns. And by the seventh month the Isra- +Ezra Reads the Law (Deuteronomy 31:9–13) +elites had settled in their towns. + +8 + +At that time all the people gathered together +in the square before the Water Gate, and +they asked Ezra the scribe to bring out the Book +of the Law of Moses, which the LORD had com- +2 +manded for Israel. + +3 + +On the first day of the seventh month, Ezra the +priest brought the Law before the assembly of +men and women and all who could listen and un- +So Ezra read it aloud from daybreak +derstand. +until noon as he faced the square before the +Water Gate, in front of the men and women and +those who could understand. + +And all the people listened attentively to the +4 +Book of the Law. + +Ezra the scribe stood on a high wooden +platform built for this occasion. At his right side +stood Mattithiah, Shema, Anaiah, Uriah, Hilkiah, +and Maaseiah, and at his left were Pedaiah, Mis- +hael, Malchijah, Hashum, Hash-baddanah, Zecha- +5 +riah, and Meshullam. + +8 + +Jozabad, Hanan, + +and Pelaiah— +Azariah, +instructed the people in the Law as they stood in +So they read from the Book of the +their places. +Law of God, explaining it + and giving insight, so +that the people could understand what was being +9 +read. + + e + +Nehemiah the governor, Ezra the priest and +scribe, and the Levites who were instructing the +people said to all of them, “This day is holy to the +LORD your God. Do not mourn or weep.” + +For all the people were weeping as they heard +10 +the words of the Law. + +Then Nehemiah told them, “Go and eat what is +rich, drink what is sweet, and send out portions +to those who have nothing prepared, since today +is holy to our Lord. Do not grieve, for the joy of +11 +the LORD is your strength.” + +And the Levites calmed all the people, saying, + +12 +“Be still, since today is holy. Do not grieve.” + +Then all the people began to eat and drink, to +send out portions, and to rejoice greatly, because +they understood the words that had been made +The Feast of Tabernacles +known to them. +(Leviticus 23:33–44 ; Zechariah 14:16–21) + +13 + +  f + +On the second day of the month, the heads of +all the families, along with the priests and Le- +14 +vites, gathered around Ezra the scribe to study +the words of the Law. +And they found written +in the Law, which the LORD had commanded +through Moses, that the Israelites were to dwell +15 +in booths + during the feast of the seventh month, +and that they should proclaim this message +and spread it throughout their towns and in Je- +rusalem, saying, “Go out to the hill country and +bring back branches of olive, wild olive, + myrtle, +palm, and other leafy trees, to make booths, as it +16 +is written.” + + h + +g + +6 + +Ezra opened the book in full view of all the peo- +ple, since he was standing above them all, and as +he opened it, all the people stood up. +Then Ezra +blessed the LORD, the great God, and with their +hands uplifted, all the people said, “Amen, +Amen!” Then they bowed down and worshiped +7 +the LORD with their faces to the ground. + +And the people went out, brought back +branches, and made booths on their own roof- +tops, in their courtyards, in the courts of the +house of God, and in the squares by the Water +Gate and by the Gate of Ephraim. +The whole as- +sembly that had returned from exile made booths +and lived in them. From the days of Joshua + son +of Nun until that day, the Israelites had not cele- +20,000 gold drach- +brated like this. And there was great rejoicing. +c 71 +; that is, approximately 18.5 pounds or 8.4 kilograms of gold coins +tabernacles +paragraph by paragraph +e 8 +is, approximately 1.38 tons or 1.25 metric tons of silver +pine +1.14 metric tons of silver +15, 16, and 17 + +The Levites—Jeshua, Bani, Sherebiah, Jamin, +a 70 +Akkub, Shabbethai, Hodiah, Maaseiah, Kelita, +mas + +Or +; that is, approximately 370.4 pounds or 168 kilograms of gold coins; also in verse 72 + +; that is, approximately 1.26 tons or +Joshua +; also in verses +Or + +2,000 silver minas +f 14 + +See Leviticus 23:37–40. + +Or +Jeshua + or + +Or +; literally + +1,000 gold drachmas + +Or +shelters + +2,200 silver minas + +translating it + +, a variant of + +Hebrew + +oil tree + +; that + +h 15 + +d 72 + +b 71 + +g 15 + +i 17 + + or + +Or + +Or + +17 + + i + + 18 + +10 + +Nehemiah 9:18 | 455 + +Day after day, from the first day to the last, +Ezra read from the Book of the Law of God. The +Israelites kept the feast for seven days, and on +the eighth day they held an assembly, according +The People Confess Their Sins +to the ordinance. + +9 + +2 + +On the twenty-fourth day of the same +month, the Israelites gathered together, fast- +ing and wearing sackcloth, with dust on their +Those of Israelite descent separated +heads. +themselves from all the foreigners, and they +stood and confessed their sins and the iniquities +3 +of their fathers. + +While they stood in their places, they read from +the Book of the Law of the LORD their God for a +quarter of the day, and they spent another quar- +ter of the day in confession and worship of the +4 +LORD their God. + +5 + +And the Levites—Jeshua, Bani, Kadmiel, She- +baniah, Bunni, Sherebiah, Bani, and Chenani— +stood on the raised platform and cried out in a +loud voice to the LORD their God. +Then the +Levites—Jeshua, Kadmiel, Bani, Hashabneiah, +Sherebiah, Hodiah, Shebaniah, and Pethahiah— +said, “Stand up and bless the LORD your God +from everlasting to everlasting: + +Blessed be Your glorious name, + +6 + +and may it be exalted +above all blessing and praise. + +You alone are the LORD. + +You created the heavens, + +You performed signs and wonders against + +Pharaoh, + +all his officials, and all the people of + +his land, + +for You knew they had acted with + +arrogance +against our fathers. + +11 + +You made a name for Yourself +that endures to this day. + +You divided the sea before them, + +and they crossed through it on dry + +ground. + +You hurled their pursuers into the depths + +12 + +like a stone into raging waters. + +You led them with a pillar of cloud by day + +and a pillar of fire by night, + +to light for them the way + +13 + +in which they should travel. +You came down on Mount Sinai + +and spoke with them from heaven. +You gave them just ordinances, true laws, +and good statutes and commandments. + +14 + +You revealed to them Your holy Sabbath +and gave them commandments and + +15 + +statutes and laws + +through Your servant Moses. + +In their hunger You gave them bread from + +heaven; + +in their thirst You brought them water + +from the rock. + +16 + +You told them to go in and possess the land + +that You had sworn to give them. + +the highest heavens with all their host, + +But they and our fathers became arrogant + +and the host of heaven worships You. + +remember + +the earth and all that is on it, +the seas and all that is in them. + +You give life to all things, + +7 + +You are the LORD, + +the God who chose Abram, + +who brought him out of Ur of the Chaldeans + +8 + +and gave him the name Abraham. +You found his heart faithful before You, +and made a covenant with him + +to give the land of the Canaanites and Hittites, + +of the Amorites and Perizzites, +of the Jebusites and Girgashites— + +to give it to his descendants. + +9 + +You have kept Your promise, +because You are righteous. + +17 + +and stiff-necked + +and did not obey Your commandments. + +They refused to listen and failed to + +the wonders You performed among them. +b + +They stiffened their necks and appointed + +a leader + +to return them to their bondage in Egypt. + +But You are a forgiving God, + +gracious and compassionate, + +slow to anger and rich in loving devotion, + +18 + +and You did not forsake them. + +Even when they cast for themselves + +an image of a calf and said, + +‘This is your God who brought you up out of + +a + +Egypt,’ + +You saw the affliction of our fathers in Egypt; + +a 9 + +b 17 +the Sea of Reeds +You heard their cry at the Red Sea. + +and when they committed terrible +to return them to their bondage in their rebellion + +blasphemies, + +Or + +LXX and a few Hebrew manuscripts; MT + + 456 | Nehemiah 9:19 + +19 + +You in Your great compassion + +From heaven You heard them, + +did not forsake them in the wilderness. +By day the pillar of cloud never turned away + +and in Your great compassion You gave + +them deliverers + +from guiding them on their path; + +28 + +who saved them from the hands of their + +20 + +and by the night the pillar of fire + +illuminated the way they should go. +You gave Your good Spirit to instruct them. +You did not withhold Your manna from + +21 + +their mouths, + +and You gave them water for their thirst. + +For forty years You sustained them in the + +wilderness, + +so that they lacked nothing. +Their clothes did not wear out +and their feet did not swell. + +22 + +You gave them kingdoms and peoples + +and allotted to them every corner of the + + a + +land. + +So they took the land of Sihon + + king of + +23 + +Heshbon + +and of Og king of Bashan. +You multiplied their descendants + +like the stars of heaven +and brought them to the land + +24 + +You had told their fathers to enter and + +possess. + +So their descendants went in and possessed + +the land; + +enemies. + +But as soon as they had rest, + +they again did evil in Your sight. + +So You abandoned them to the hands of their + +enemies, + +who had dominion over them. +When they cried out to You again, + +You heard from heaven, + +and You delivered them many times + +29 + +in Your compassion. + +You admonished them to turn back to Your + +law, + +but they were arrogant and disobeyed + +Your commandments. +They sinned against Your ordinances, + +by which a man will live if he practices + +them. + +They turned a stubborn shoulder; + +30 + +they stiffened their necks and would not + +obey. + +You were patient with them for many years, +and Your Spirit admonished them through + +Your prophets. + +Yet they would not listen, + +b + +You subdued before them the Canaanites + +31 + +so You gave them into the hands of the + +dwelling in the land. + +You delivered into their hands the kings and + +25 + +peoples of the land, + +to do with them as they wished. + +neighboring peoples. + +But in Your great compassion, + +You did not put an end to them; + +nor did You forsake them, + +They captured fortified cities and fertile land + +and took houses full of all goods, + +32 + +for You are a gracious and compassionate + +God. + +wells already dug, + +vineyards, olive groves, and fruit trees in + +abundance. +So they ate and were filled; + +26 + +they grew fat and delighted in Your great + +goodness. + +But they were disobedient and rebelled + +against You; + +So now, our God, the great and mighty and + +awesome God + +who keeps His gracious covenant, + +do not view lightly all the hardship + +that has come upon us, + +and upon our kings and leaders, +our priests and prophets, + +our ancestors and all Your people, + +they flung Your law behind their backs. + +33 + +from the days of the kings of Assyria until + +They killed Your prophets, + +who had admonished them to return to + +27 + +You. + +They committed terrible blasphemies. + +So You delivered them into the hands +of enemies who oppressed them, +and in their time of distress they cried out + +Sihon, the country of the + +a 22 + +to You. + +today. + +34 + +You are just in all that has befallen us, +because You have acted faithfully, +while we have acted wickedly. + +Our kings and leaders and priests and fathers + +did not obey Your law + +or listen to Your commandments + +b 30 + +and warnings that You gave them. + +into the hands of the peoples of the lands + +A Heb. ms. and LXX; most Heb. mss. + +Literally + + 35 + +18 + +Nehemiah 10:35 | 457 + +For even while they were in their kingdom, + +with the abundant goodness +that You had given them, + +and in the spacious and fertile land +that You had set before them, + +they would not serve You + +36 + +or turn from their wicked ways. + +So here we are today as slaves + +in the land You gave our fathers to enjoy + +37 + +its fruit and goodness— + +here we are as slaves! + +Its abundant harvest goes to the kings + +You have set over us because of our sins. + +And they rule over our bodies and our +livestock as they please. + +38 + +We are in great distress. + + a + +In view of all this, we make a binding agree- +ment, putting it in writing and sealing it with the +Signers of the Covenant +names of + + our leaders, Levites, and priests.” + +10 + +Now these were the ones who sealed the +document: + +Nehemiah the governor, son of Hacaliah, +2 +and also Zedekiah, +3 + +4 + +5 + +6 + +7 + +8 + +Seraiah, Azariah, Jeremiah, +Pashhur, Amariah, Malchijah, +Hattush, Shebaniah, Malluch, +Harim, Meremoth, Obadiah, +Daniel, Ginnethon, Baruch, +Meshullam, Abijah, Mijamin, +Maaziah, Bilgai, +These were the priests. + +b + + and Shemaiah. + +9 + +The Levites: +Jeshua son of Azaniah, +10 +Binnui of the sons of Henadad, Kadmiel, + +and their associates: Shebaniah, Hodiah, + +11 +Kelita, Pelaiah, Hanan, +12 + +14 + +13 + +Mica, Rehob, Hashabiah, +Zaccur, Sherebiah, Shebaniah, +Hodiah, Bani, and Beninu. +And the leaders of the people: +15 +Parosh, Pahath-moab, Elam, Zattu, Bani, +16 + +17 + +Bunni, Azgad, Bebai, +Adonijah, Bigvai, Adin, +Ater, Hezekiah, Azzur, +Hebrew does not include + +a 38 +d 32 A third of a shekel + +19 + +20 + +23 + +22 + +21 + +Hodiah, Hashum, Bezai, +Hariph, Anathoth, Nebai, +Magpiash, Meshullam, Hezir, +Meshezabel, Zadok, Jaddua, +Pelatiah, Hanan, Anaiah, +Hoshea, Hananiah, Hasshub, +Hallohesh, Pilha, Shobek, +Rehum, Hashabnah, Maaseiah, +Ahijah, Hanan, Anan, +The Vows of the Covenant +Malluch, Harim, and Baanah. + +27 + +24 + +25 + +26 + +28 + +c + +“The rest of the people—the priests, Levites, + and all +gatekeepers, singers, temple servants, +who had separated themselves from the people +of the land to obey the Law of God—along with +29 +their wives and all their sons and daughters who +hereby join with their +are able to understand, +noble brothers and commit themselves with a +sworn oath to follow the Law of God given +through His servant Moses and to obey carefully +all the commandments, ordinances, and statutes +30 +of the LORD our Lord. + +We will not give our daughters in marriage to +the people of the land, and we will not take their +31 +daughters for our sons. + +When the people of the land bring merchan- +dise or any kind of grain to sell on the Sabbath +day, we will not buy from them on a Sabbath or +holy day. Every seventh year we will let the fields +32 +lie fallow and will cancel every debt. + + d + +33 + +We also place ourselves under the obligation +to contribute a third of a shekel + yearly for the +for the show- +service of the house of our God: +bread, for the regular grain offerings and burnt +offerings, for the Sabbath offerings, for the New +Moons and appointed feasts, for the holy offer- +ings, for the sin offerings to make atonement for +Israel, and for all the duties of the house of our +34 +God. + +We have cast lots among the priests, Levites, +and people for the donation of wood by our fam- +ilies at the appointed times each year. They are +to bring it to the house of our God to burn on the +altar of the LORD our God, as it is written in the +35 +Law. + +the names of + +b 8 Bilgai + +We will also bring the firstfruits of our land +and of every fruit tree to the house of the LORD + +Nethinim + +Bilgah + +c 28 + +. + + is a variant of + +; see Nehemiah 12:5. + +Hebrew + + is approximately 0.13 ounces or 3.8 grams, probably of silver. + + 458 | Nehemiah 10:36 + +36 + +7 + +And we will bring the firstborn of +year by year. +our sons and our livestock, as it is written in the +Law, and will bring the firstborn of our herds and +flocks to the house of our God, to the priests who +37 +minister in the house of our God. + +38 + +Moreover, we will bring to the priests at the +storerooms of the house of our God the firstfruits +of our dough, of our grain offerings, of the fruit of +all our trees, and of our new wine and oil. A tenth +of our produce belongs to the Levites, so that +they shall receive tithes in all the towns where +A priest of Aaron’s line is to accom- +we labor. +pany the Levites when they collect the tenth, and +the Levites are to bring a tenth of these tithes to +the storerooms of the treasury in the house of +our God. +For the Israelites and the Levites are +to bring the contributions of grain, new wine, +and oil to the storerooms where the articles of +the sanctuary are kept and where the minister- +ing priests, the gatekeepers, and the singers stay. +Jerusalem’s New Settlers +Thus we will not neglect the house of our God.” + +39 + +11 + +Now the leaders of the people settled in +Jerusalem, and the rest of the people cast +lots to bring one out of ten to live in the holy city +of Jerusalem, while the remaining nine + were to +dwell in their own towns. +And the people +blessed all the men who volunteered to live in +3 +Jerusalem. + +2 + + a + +b + +These are the heads of the provinces who set- +tled in Jerusalem. (In the villages of Judah, how- +ever, each lived on his own property in their +towns—the Israelites, priests, Levites, temple +4 +servants, + and descendants of Solomon’s serv- +ants— +while some of the descendants of Judah +and Benjamin settled in Jerusalem.) + +From the descendants of Benjamin: + +8 + +9 + +Sallu son of Meshullam, the son of Joed, the +son of Pedaiah, the son of Kolaiah, the son of +Maaseiah, the son of Ithiel, the son of +and his followers Gabbai and Sal- +Jeshaiah; +Joel son of Zichri was the of- +lai—928 men. +ficer over them, and Judah son of Hassenuah +was over the Second District of the city. + +d + +10 + +From the priests: + + e + +11 + + Jachin; + +Jedaiah son of Joiarib; +Seraiah son +of Hilkiah, the son of Meshullam, the son of +12 +Zadok, the son of Meraioth, the son of Ahitub, +and +the chief official of the house of God; +their associates who did the work at the tem- +ple—822 men; + +Adaiah son of Jeroham, the son of Pelaliah, +the son of Amzi, the son of Zechariah, the son +and his +of Pashhur, the son of Malchijah; +associates, the leaders of families—242 men; + +13 + +Amashai son of Azarel, the son of Ahzai, the + f +14 +son of Meshillemoth, the son of Immer; +—128 mighty men of +valor. Zabdiel son of Haggedolim was their +overseer. + +and his associates + +15 + +From the Levites: + +17 + +Shemaiah son of Hasshub, the son of Azri- +16 +kam, the son of Hashabiah, the son of Bunni; +Shabbethai and Jozabad, two leaders of the +Levites, who supervised the work outside +Mattaniah son of Mica, +the house of God; +the son of Zabdi, the son of Asaph, who led in +thanksgiving and prayer; Bakbukiah, second +among his associates; and Abda son of Sham- +18 +mua, the son of Galal, the son of Jeduthun. +The Levites in the holy city totaled 284. + +19 + +From the descendants of Judah: + +And the gatekeepers: + +Athaiah son of Uzziah, the son of Zechariah, +the son of Amariah, the son of Shephatiah, +5 +the son of Mahalalel, a descendant of Perez; +and Maaseiah son of Baruch, the son of Col- +hozeh, the son of Hazaiah, the son of Adaiah, +c +the son of Joiarib, the son of Zechariah, a +The descendants of +descendant of Shelah. +Perez who settled in Jerusalem totaled 468 +men of valor. + +nine hands + +Nethinim + +b 3 + +6 + +a 1 +Quarter of the city +f 14 + +Hebrew + +Most LXX manuscripts; Hebrew + +Akkub, Talmon, and their associates, who +kept watch at the gates—172 men. + +Residents Outside Jerusalem + +20 + +21 + +The rest of the Israelites, with the priests and +Levites, were in all the villages of Judah, each on +The temple servants lived +his own inheritance. +on the hill of Ophel, with Ziha and Gishpa over +them. +d 9 +c 5 +e 10 +was second in command of the city + +was over the Second +Jedaiah; the son of Joiarib; + +of the Shilonite + +their associates +, a newer section of Jerusalem; or + +Hebrew + +; also in verse 21 + +Or + +Or +Or + + 22 + +9 + +Nehemiah 12:24 | 459 + +a + +Now the overseer of the Levites in Jerusalem +was Uzzi son of Bani, the son of Hashabiah, the +son of Mattaniah, the son of Mica. + He was one of +Asaph’s descendants, who were the singers in +charge of the service of the house of God. +For +there was a command from the king concerning +the singers, an ordinance regulating their daily +activities. +Pethahiah son of Meshezabel, a de- + b +scendant of Zerah son of Judah, was the king’s +25 +agent + + in every matter concerning the people. + +24 + +23 + +29 + +26 + +27 +28 + +As for the villages with their fields, some of the +people of Judah lived in Kiriath-arba, Dibon, Jek- +abzeel, and their villages; +in Jeshua, Moladah, +and Beth-pelet; +in Hazar-shual; in Beersheba +and its villages; +in Ziklag; in Meconah and its +villages; +Za- +noah, Adullam, and their villages; in Lachish and +its fields; and in Azekah and its villages. So they +settled from Beersheba all the way to the Valley +31 +of Hinnom. + +in En-rimmon, Zorah, Jarmuth, + +30 + +33 + +34 + +The descendants of Benjamin from Geba lived +32 +in Michmash, Aija, and Bethel with its villages; +35 +Hazor, Ramah, +c +Lod, and + +in Anathoth, Nob, Ananiah, + +Gittaim, +36 +Ono; and in the Valley of the Craftsmen. + +Hadid, Zeboim, Neballat, + +And some divisions of the Levites of Judah set- + +The Priests and Levites Who Returned +tled in Benjamin. + +12 + +Now these are the priests and Levites +who went up with Zerubbabel son of + +Shealtiel and with Jeshua: + +2 +Seraiah, Jeremiah, Ezra, +3 + +d + +4 + +5 + +6 + +7 + +e + Hattush, + Meremoth, +h + +Amariah, Malluch, +f +Shecaniah, Rehum, +g +Iddo, Ginnethon, +Mijamin, + Bilgah, + Maadiah, +Shemaiah, Joiarib, Jedaiah, +Sallu, Amok, Hilkiah, and Jedaiah. + + Abijah, + +i + +8 + +These were the leaders of the priests and +their associates in the days of Jeshua. +The Levites were Jeshua, Binnui, Kadmiel, +Sherebiah, Judah, and Mattaniah, who, with his +b 24 +a 22 Mica +led the songs of thanksgiving. +associates, + +Micaiah + +e 3 Rehum + +Malluchi + is a variant of + +Bakbukiah and Unni, their associates, stood +10 + +across from them in the services. + +Jeshua was the father of Joiakim, +Joiakim was the father of Eliashib, +11 +Eliashib was the father of Joiada, + +j + +12 + +Joiada was the father of Jonathan, +and Jonathan was the father of Jaddua. +In the days of Joiakim, these were the heads of + +the priestly families: + +of the family of Seraiah, Meraiah; +13 +of Jeremiah, Hananiah; +of Ezra, Meshullam; +14 +of Amariah, Jehohanan; + +k + +l +of Malluchi, +15 +of Shebaniah, +m + + Jonathan; + Joseph; + +of Harim, Adna; + +16 +of Meraioth, + + Helkai; +of Iddo, Zechariah; + +17 +of Ginnethon, Meshullam; + +n + +of Abijah, Zichri; + +18 +of Miniamin and of Moadiah, + + Piltai; + +of Bilgah, Shammua; +19 +of Shemaiah, Jonathan; +of Joiarib, Mattenai; + +20 +of Jedaiah, Uzzi; + +o + +of Sallai, + +21 +of Amok, Eber; + + Kallai; + +22 + +of Hilkiah, Hashabiah; +and of Jedaiah, Nethanel. + +p + +In the days of Eliashib, Joiada, Johanan, + + and +Jaddua, during the reign of Darius the Persian, +the heads of the families of the Levites and +23 +priests were recorded. + +As for the descendants of Levi, the family +q +heads up to the days of Johanan son of Eliashib +24 +were recorded in the Book of the Chronicles. + +r + +The leaders of the Levites were Hashabiah, + along +Sherebiah, and Jeshua son of Kadmiel, +with their associates, who stood across from +them to give praise and thanksgiving as one +section alternated with the other, as prescribed +by David the man of God. + +in Ge-harashim + +hand + +c 35 + +d 2 Malluch +f 4 + is a +Minia- +Many + +Harim +Hebrew + +; see verse 14. +h 5 Maadiah + +variant of +min +Hebrew manuscripts and Vulgate (see also verse 16); most MT manuscripts + is a variant of +l 14 Shebaniah +Nehemiah 10:8. +oth + +; see verse 17. + +; see verse 17. + + is a variant of + +j 11 Jonathan + +Shecaniah + +; see Nehemiah 12:35. + is a variant of +Moadiah +Johanan + +Meremoth + is a variant of + +o 20 Sallai + + is a variant of +Book of the Annals +verse 5. + +Sallu +the Book of the Historical Events +; see verse 7. + + is a variant of + +; see verse 22. +p 22 Johanan + +; see verse 3; see also Syriac and some Hebrew and LXX manuscripts. + +; see verse 3 and also some LXX manuscripts. + +Sherebiah, Jeshua, Binnui, and Kadmiel + + is a variant of + +r 24 + + is a variant of + + is a variant of +n 17 Moadiah +Jonathan + +; also in verse 18; see +m 15 Merai- +; see verse 2. +Maadiah +q 23 + +the +; see + +Ginnethoi + +Hebrew + +g 5 Mijamin +Bilgai + +; see verse 15, Nehemiah 7:42, and Ezra 2:39. + is a variant of + +i 5 Bilgah +k 14 Malluchi + +Malluch + + is a variant of + +; see verse 11. + +Or + + or + +Or + + 460 | Nehemiah 12:25 + +25 + +42 + +26 + +Mattaniah, Bakbukiah, Obadiah, Meshullam, +Talmon, and Akkub were gatekeepers who +They +guarded the storerooms at the gates. +served in the days of Joiakim son of Jeshua, the +son of Jozadak, + and in the days of Nehemiah the +The Dedication of the Wall +governor and Ezra the priest and scribe. +27 + +a + +28 + +At the dedication of the wall of Jerusalem, the +Levites were sought out from all their homes and +brought to Jerusalem to celebrate the joyous +dedication with thanksgiving and singing, ac- +The +companied by cymbals, harps, and lyres. +singers were also assembled from the region +around Jerusalem, from the villages of the +from Beth-gilgal, and from the +Netophathites, +fields of Geba and Azmaveth, for they had built +Af- +villages for themselves around Jerusalem. +ter the priests and Levites had purified them- +selves, they purified the people, the gates, and +31 +the wall. + +30 + +29 + +c + + b + +35 + +33 + +36 + +Judah, Benjamin, Shemaiah, Jeremiah, + +Then I brought the leaders of Judah up on the +wall, and I appointed two great thanksgiving +choirs. One was to proceed along the top of the +32 +wall + to the right, toward the Dung Gate. +Hoshaiah and half the leaders of Judah fol- +34 +lowed, +along with Azariah, Ezra, Meshullam, +and +some of the priests with trumpets, and also Zech- +ariah son of Jonathan, the son of Shemaiah, the +son of Mattaniah, the son of Micaiah, + the son of +and his associates— +Zaccur, the son of Asaph, +Shemaiah, Azarel, Milalai, Gilalai, Maai, Nethanel, +Judah, and Hanani—with the musical instru- +ments prescribed by David the man of God. Ezra +At the Fountain +the scribe led the procession. +Gate they went directly up the steps of the City of +David on the ascent to the wall and passed above +38 +the house of David to the Water Gate on the east. +The second thanksgiving choir proceeded to +the left, and I followed it with half the people +along the top of the wall, past the Tower of the +over the Gate of +Ovens to the Broad Wall, + the Fish Gate, the +Ephraim, the Jeshanah Gate, +Tower of Hananel, and the Tower of the Hun- +dred, as far as the Sheep Gate. And they stopped +40 +at the Gate of the Guard. + +39 +d + +37 + +and also Maaseiah, Shemaiah, +Hananiah— +Eleazar, Uzzi, Jehohanan, Malchijah, Elam, and +Ezer. Then the choirs sang out under the direc- +43 +tion of Jezrahiah. + +On that day they offered great sacrifices, re- +joicing because God had given them great joy. +The women and children also rejoiced, so that +Provisions for Temple Worship +the joy of Jerusalem was heard from afar. +44 + +And on that same day men were appointed +over the rooms that housed the supplies, contri- +butions, firstfruits, and tithes. The portions spec- +ified by the Law for the priests and Levites were +gathered into these storerooms from the fields of +the villages, because Judah rejoiced over the +45 +priests and Levites who were serving. + +46 + +They performed the service of their God and +the service of purification, along with the singers +and gatekeepers, as David and his son Solomon +had prescribed. +For long ago, in the days of Da- +vid and Asaph, there were directors for the sing- +ers and for the songs of praise and thanksgiving +47 +to God. + +So in the days of Zerubbabel and Nehemiah, all +Israel contributed the daily portions for the sing- +ers and gatekeepers. They also set aside daily +portions for the Levites, and the Levites set aside +Foreigners Excluded +daily portions for the descendants of Aaron. + +13 + +e + +At that time the Book of Moses was read +aloud in the hearing of the people, and in +it they found the passage stating that no Ammo- +2 +nite or Moabite should ever enter the assembly +of God, +because they had not met the Israelites +with food and water, but had hired Balaam to call +down a curse against them (although our God +3 +had turned the curse into a blessing). + +As soon as the people heard this law, they ex- + +The Temple Cleansed +cluded from Israel all of foreign descent. +4 + +Now before this, Eliashib the priest, a relative of +5 +Tobiah, had been put in charge of the storerooms +of the house of our God +and had prepared for +Tobiah a large room where they had previously +stored the grain offerings, the frankincense, the +temple articles, and the tithes of grain, new wine, +and oil prescribed for the Levites, singers, and +gatekeepers, along with the contributions for the +b 31 +priests. + e 1 +Or + +; also in verse 38 + +alongside the wall + +c 35 Micaiah + + is + +41 + +The two thanksgiving choirs then stood in the +house of God, as did I, along with the half of the +as well as the +officials accompanying me, +priests with their trumpets—Eliakim, Maaseiah, +a 26 Jozadak +Miniamin, Micaiah, Elioenai, Zechariah, and + +Jehozadak + +Mica + is a variant of + +d 39 + +the Old City Gate + +; see 1 Chronicles 6:14. + +a variant of + +; see Nehemiah 11:22. + +Or + +See Deuteronomy 23:3–6. + + 6 + +19 + +Nehemiah 13:31 | 461 + + a + +While all this was happening, I was not in Jeru- +salem, because I had returned to Artaxerxes king +of Babylon + in the thirty-second year of his reign. +7 +Some time later I obtained leave from the king +to return to Jerusalem. Then I discovered the +evil that Eliashib had done on behalf of Tobiah by +providing him a room in the courts of the house +8 +of God. + +9 + +And I was greatly displeased and threw all of +Then +Tobiah’s household goods out of the room. +I ordered that the rooms be purified, and I had +the articles of the house of God restored to them, +Tithes Restored +along with the grain offerings and frankincense. +(Lev. 27:30–34 ; De. 14:22–29 ; 26:1–15) +10 + +12 + +11 + +I also learned that because the portions for the +Levites had not been given to them, all the Le- +vites and singers responsible for performing the +service had gone back to their own fields. +So I +rebuked the officials and asked, “Why has the +house of God been neglected?” +Then I gathered the Levites and singers together +and stationed them at their posts, +and all Judah +brought a tenth of the grain, new wine, and oil +into the storerooms. +I appointed as treasurers +over the storerooms Shelemiah the priest, Zadok +the scribe, and Pedaiah of the Levites, with +Hanan son of Zaccur, the son of Mattaniah, to as- +sist them, because they were considered trust- +worthy. They were responsible for distributing +14 +the supplies to their fellow Levites. + +13 + +Remember me for this, O my God, and do not +blot out my deeds of loving devotion for the +The Sabbath Restored (Jeremiah 17:19–27) +house of my God and for its services. +15 + +In those days I saw people in Judah treading +winepresses on the Sabbath and bringing in +grain and loading it on donkeys, along with wine, +grapes, and figs. All kinds of goods were being +brought into Jerusalem on the Sabbath day. So I +16 +warned them against selling food on that day. +Additionally, men of Tyre who lived there +were importing fish and all kinds of merchandise +and selling them on the Sabbath to the people of +17 +Judah in Jerusalem. + +18 + +Then I rebuked the nobles of Judah and asked, +“What is this evil you are doing—profaning the +Sabbath day? +Did not your forefathers do the +same things, so that our God brought all this dis- +aster on us and on this city? And now you are re- +kindling His wrath against Israel by profaning +a 6 +the Sabbath!” + +When the evening shadows began to fall on the +gates of Jerusalem, just before the Sabbath, I or- +dered that the gates be shut and not opened until +after the Sabbath. I posted some of my servants +at the gates so that no load could enter on the +20 +Sabbath day. + +Once or twice, the merchants and those who +21 +sell all kinds of goods camped outside Jerusalem, +but I warned them, “Why are you camping in +front of the wall? If you do it again, I will lay +22 +hands on you.” From that time on, they did not +return on the Sabbath. +Then I instructed the +Levites to purify themselves and guard the gates +in order to keep the Sabbath day holy. + +Remember me for this as well, O my God, and +show me mercy according to Your abundant lov- +Intermarriage Forbidden (Ezra 9:1–4) +ing devotion. +23 + +24 + +In those days I also saw Jews who had married +women from Ashdod, Ammon, and Moab. +Half +of their children spoke the language of Ashdod or +of the other peoples, but could not speak the lan- +guage of Judah. +I rebuked them and called +down curses on them. I beat some of these men +and pulled out their hair. + +25 + +26 + +Then I made them take an oath before God and +said, “You must not give your daughters in mar- +riage to their sons or take their daughters as +wives for your sons or for yourselves! +Did not +King Solomon of Israel sin in matters like this? +There was not a king like him among many na- +tions, and he was loved by his God, who made +him king over all Israel—yet foreign women +drew him into sin. +Must we now hear that you +too are doing all this terrible evil and acting un- +faithfully against our God by marrying foreign +28 +women?” + +27 + +Even one of the sons of Jehoiada son of Eliashib +the high priest had become a son-in-law to San- +ballat the Horonite. Therefore I drove him away +29 +from me. + +Remember them, O my God, because they have +defiled the priesthood and the covenant of the +30 +priesthood and of the Levites. + +Thus I purified the priests and Levites from +everything foreign, and I assigned specific duties +to each of the priests and Levites. +I also +arranged for contributions of wood at the ap- +pointed times, and for the firstfruits. + +31 + +Remember me, O my God, with favor. + +Artaxerxes king of Persia is identified here as the king of Babylon because Persia had conquered the Babylonian Empire. + + Esther + +Xerxes’ Royal Feast + +Queen Vashti Deposed + +a + +13 + +1 + +b + +2 + +This is what happened in the days of Xerxes, +who reigned over 127 provinces from India +In those days King Xerxes sat on his + +to Cush. +3 +royal throne in the citadel of Susa. + +In the third year of his reign, Xerxes held a feast +for all his officials and servants. The military +leaders of Persia and Media were there, along +4 +with the nobles and princes of the provinces. +And for a full 180 days he displayed the glorious +riches of his kingdom and the magnificent splen- +5 +dor of his greatness. + +6 + +At the end of this time, in the garden court of the +royal palace, the king held a seven-day feast for +all the people in the citadel of Susa, from the least +Hangings of white and blue +to the greatest. +linen were fastened with cords of fine white and +purple material to silver rings on the marble pil- +lars. Gold and silver couches were arranged on a +mosaic pavement of porphyry, marble, mother- +7 +of-pearl, and other costly stones. + +8 + +Beverages were served in an array of goblets of +gold, each with a different design, and the royal +wine flowed freely, according to the king’s +By order of the king, no limit was placed +bounty. +on the drinking, and every official of his house- +Queen Vashti’s Refusal +hold was to serve each man whatever he desired. +9 + +Queen Vashti also gave a banquet for the + +10 +women in the royal palace of King Xerxes. + +On the seventh day, when the king’s heart was +merry with wine, he ordered the seven eunuchs +who served him—Mehuman, Biztha, Harbona, +to bring +Bigtha, Abagtha, Zethar, and Carkas— +Queen Vashti before him, wearing her royal +crown, to display her beauty to the people and +12 +officials. For she was beautiful to behold. + +11 + +14 + +Then the king consulted the wise men who +knew the times, for it was customary for him to +His +confer with the experts in law and justice. +closest advisors were Carshena, Shethar, Ad- +matha, Tarshish, Meres, Marsena, and Memucan, +the seven princes of Persia and Media who had +personal access to the king and ranked highest in +15 +the kingdom. + +“According to law,” he asked, “what should be +done with Queen Vashti, since she refused to +obey the command of King Xerxes delivered by +16 +the eunuchs?” + +17 + +And in the presence of the king and his princes, +Memucan replied, “Queen Vashti has wronged +not only the king, but all the princes and the peo- +For the +ples in all the provinces of King Xerxes. + c +conduct of the queen will become known to all +women, causing them to despise their husbands +and say, ‘King Xerxes ordered Queen Vashti to be +18 +brought before him, but she did not come.’ + +This very day the noble women of Persia and +Media who have heard about the queen’s con- +duct will say the same thing to all the king’s offi- +19 +cials, resulting in much contempt and wrath. + +So if it pleases the king, let him issue a royal +decree, and let it be recorded in the laws of Per- +sia and Media so that it cannot be repealed, that +Vashti shall never again enter the presence of +King Xerxes, and that her royal position shall be +The edict +given to a woman better than she. +the king issues will be heard throughout his vast +kingdom—and so all women, from the least to +21 +the greatest, will honor their husbands.” + +20 + +The king and his princes were pleased with +22 +this counsel; so the king did as Memucan advised. +He sent letters to all the provinces of the king- + d +dom, to each province in its own script and to +each people in their own language, proclaiming +that every man should be master of his own +household. + +c 17 + +to disdain their husbands + +Queen Vashti, however, refused to come at the +king’s command brought by his eunuchs. And the +king became furious, and his anger burned +a 1 +within him. +in their eyes +Hebrew + +; here and throughout Esther + +Ahasuerus +d 22 + +b 1 + +proclaiming in the language of his own people + +Literally + +That is, the upper Nile region + +Or + + Seeking Vashti’s Successor + +12 + +Esther 2:22 | 463 + +2 + +Some time later, when the anger of King +Xerxes had subsided, he remembered Vashti +and what she had done, and what had been de- +2 +creed against her. + +, + +3 + +Then the king’s attendants proposed, “Let a +search be made for beautiful young virgins for +and let the king appoint commission- +the king +ers in each province of his kingdom to assemble +all the beautiful young women into the harem at +the citadel of Susa. Let them be placed under the +care of Hegai, the king’s eunuch in charge of the +women, and let them be given beauty treat- +Then let the young woman who pleases +ments. +the king become queen in place of Vashti.” + +4 + +This suggestion pleased the king, and he acted +Esther Finds Favor +accordingly. +5 + +Now there was at the citadel of Susa a Jewish +man from the tribe of Benjamin named Mordecai +He +son of Jair, the son of Shimei, the son of Kish. +had been carried into exile from Jerusalem by +Nebuchadnezzar king of Babylon among those +7 +taken captive with Jeconiah + + king of Judah. + +6 + + a + +And Mordecai had brought up Hadassah (that +is, Esther), the daughter of his uncle, because she +did not have a father or mother. The young +woman was lovely in form and appearance, and +when her father and mother had died, Mordecai +8 +had taken her as his own daughter. + +9 + +When the king’s command and edict had been +proclaimed, many young women gathered at the +citadel of Susa under the care of Hegai. Esther +was also taken to the palace and placed under the +And +care of Hegai, the custodian of the women. +the young woman pleased him and obtained his +favor, so he quickly provided her with beauty +treatments and the special diet. He assigned to +her seven select maidservants from the palace +and transferred her with them to the best place +10 +in the harem. + +Esther did not reveal her people or her lineage, +11 +because Mordecai had instructed her not to do +And every day Mordecai would walk back +so. +and forth in front of the court of the harem to +learn about Esther’s welfare and what was hap- +a 6 Jeconiah +pening to her. + +Jehoiachin + +b 14 + +In the twelve months before her turn to go to +King Xerxes, the harem regulation required each +young woman to receive beauty treatments with +oil of myrrh for six months, and then with per- +13 +fumes and cosmetics for another six months. +When the young woman would go to the king, +she was given whatever she requested to take +14 +with her from the harem to the king’s palace. + b +She would go there in the evening, and in the + +morning she would return to a second harem +under the care of Shaashgaz, the king’s eunuch in +charge of the concubines. She would not return +to the king unless he delighted in her and sum- +15 +moned her by name. + +Now Esther was the daughter of Abihail, the +uncle from whom Mordecai had adopted her as +his own daughter. And when it was her turn to go +to the king, she did not ask for anything except +what Hegai, the king’s trusted official in charge of +the harem, had advised. And Esther found favor +16 +in the eyes of everyone who saw her. + +c + +She was taken to King Xerxes in the royal pal- + in + +ace in the tenth month, the month of Tebeth, +Esther Becomes Queen +the seventh year of his reign. +17 + +And the king loved Esther more than all the +other women, and she found grace and favor in +his sight more than all of the other virgins. So he +placed the royal crown upon her head and made +18 +her queen in place of Vashti. + +Then the king held a great banquet, Esther’s +banquet, for all his officials and servants. He pro- +claimed a tax holiday in the provinces and gave +19 +gifts worthy of the king’s bounty. + +d +When the virgins were assembled a second + +20 +time, Mordecai was sitting at the king’s gate. + +Esther still had not revealed her lineage or her +people, just as Mordecai had instructed. She +obeyed Mordecai’s command, as she had done +Mordecai Uncovers a Conspiracy +under his care. +21 + + e + +In those days, while Mordecai was sitting at +the king’s gate, Bigthan + and Teresh, two of the +king’s eunuchs who guarded the entrance, grew +22 +angry and conspired to assassinate King Xerxes. + +When Mordecai learned of the plot, he re- +ported it to Queen Esther, and she informed the +to another part of the harem +king on Mordecai’s behalf. + +c 16 Tebeth +d 19 + +Mordecai + is the tenth +Or + + is a variant of + +had become a palace official +month of the Hebrew lunar calendar, usually occurring within the months of December and January. + is a variant of + +; see Esther 6:2. + +e 21 Bigthan + +; see 2 Kings 24:12. + +Or +Bigthana + + 464 | Esther 2:23 + +23 + +After the report had been investigated and +verified, both officials were hanged on the gal- +lows. And all this was recorded in the Book of the +Haman’s Plot against the Jews +Chronicles + + in the presence of the king. + + a + +3 + +2 + +After these events, King Xerxes honored +Haman son of Hammedatha, the Agagite, el- +evating him to a position above all the princes +All the royal servants at the +who were with him. +king’s gate bowed down and paid homage to +Haman, because the king had commanded that +this be done for him. But Mordecai would not +3 +bow down or pay homage. + +Then the royal servants at the king’s gate asked +Mordecai, “Why do you disobey the command of +4 +the king?” + +Day after day they warned him, but he would +not comply. So they reported it to Haman to see +whether Mordecai’s behavior would be toler- +5 +ated, since he had told them he was a Jew. + +When Haman saw that Mordecai would not bow +6 +down or pay him homage, he was filled with rage. +And when he learned the identity of Mordecai’s +people, he scorned the notion of + laying hands +on Mordecai alone. Instead, he sought to destroy +all of Mordecai’s people, the Jews, throughout the +7 +kingdom of Xerxes. + + b + +c + +In the twelfth year of King Xerxes, in the first +month, the month of Nisan, + the Pur (that is, the +lot) was cast before Haman to determine a day +and month. And the lot fell on the twelfth month, +8 +the month of Adar. + +d + +Then Haman informed King Xerxes, “There is a +certain people scattered and dispersed among +the peoples of every province of your kingdom. +Their laws are different from everyone else’s, +and they do not obey the king’s laws. So it is not +If it +in the king’s best interest to tolerate them. +pleases the king, let a decree be issued to destroy +them, and I will deposit ten thousand talents of + into the royal treasury to pay those who +silver +10 +carry it out.” + +9 + + e + +money,” said the king to Haman. “These people +12 +are given to you to do with them as you please.” + +On the thirteenth day of the first month, the +royal scribes were summoned and the order was +written exactly as Haman commanded the royal +satraps, the governors of each province, and the +officials of each people, in the script of each prov- +ince and the language of every people. It was +written in the name of King Xerxes and sealed +13 +with the royal signet ring. + +And the letters were sent by couriers to each +of the royal provinces with the order to destroy, +kill, and annihilate all the Jews—young and old, +women and children—and to plunder their pos- +sessions on a single day, the thirteenth day of +14 +Adar, the twelfth month. + +15 + +A copy of the text of the edict was to be issued +in every province and published to all the people, +so that they would be ready on that day. +The +couriers left, spurred on by the king’s command, +and the edict was issued in the citadel of Susa. +Then the king and Haman sat down to drink, but +Mordecai Appeals to Esther +the city of Susa was in confusion. + +4 + +When Mordecai learned of all that had hap- +pened, he tore his clothes, put on sackcloth +and ashes, and went out into the middle of the +But he went +city, wailing loudly and bitterly. +only as far as the king’s gate, because the law pro- +hibited anyone wearing sackcloth from entering +3 +that gate. + +2 + +In every province to which the king’s command +and edict came, there was great mourning among +the Jews. They fasted, wept, and lamented, and +4 +many lay in sackcloth and ashes. + +When Esther’s maidens and eunuchs came and +told her about Mordecai, the queen was over- +come with distress. She sent clothes for Mordecai +to wear instead of his sackcloth, but he would not +5 +accept them. + +Then Esther summoned Hathach, one of the +king’s eunuchs appointed to her, and she dis- +6 +patched him to Mordecai to learn what was +troubling him and why. +So Hathach went out to +c 7 Nisan +Mordecai in the city square in front of the king’s + +he disdained in his eyes + +b 6 + +So the king removed the signet ring from his +finger and gave it to Haman son of Hammedatha, +a 23 +“Keep your +the Agagite, the enemy of the Jews. + +the Book of the Annals + +the Book of the Historical Events + +11 + +Or + + or +fore Haman—a day and month—and the lot fell on the fourteenth of the month of Adar +first month of the Hebrew lunar calendar, usually occurring within the months of March and April. +day and month—the twelfth, Adar +Adar + +Hebrew + +usually occurring within the months of February and March. +tons of silver. + +; the month of + + (also in verse 13) is the twelfth month of the Hebrew lunar calendar, + is approximately 377 tons or 342 metric + +e 9 10,000 talents + +; Hebrew + +d 7 + +was cast be- + is the +was cast before Haman a +LXX + + 7 + +3 + +Esther 6:2 | 465 + +and Mordecai told him all that had hap- +gate, +pened to him, including the exact amount of +money that Haman had promised to pay into the +8 +royal treasury in order to destroy the Jews. + +Mordecai also gave Hathach a copy of the writ- +ten decree issued in Susa for the destruction of +the Jews, to show and explain to Esther, urging +her to approach the king, implore his favor, and +9 +plead before him for her people. + +So Hathach went back and relayed Mordecai’s + +10 +response to Esther. + +11 + +Then Esther spoke to Hathach and instructed +“All the royal officials +him to tell Mordecai, +and the people of the king’s provinces know that +one law applies to every man or woman who +approaches the king in the inner court without +being summoned—that he be put to death. Only +if the king extends the gold scepter may that +person live. But I have not been summoned to +12 +appear before the king for the past thirty days.” + +13 + +When Esther’s words were relayed to Morde- +he sent back to her this reply: “Do not im- +cai, +agine that because you are in the king’s palace +14 +you alone will escape the fate of all the Jews. +For if you remain silent at this time, relief and +deliverance for the Jews will arise from another +place, but you and your father’s house will per- +ish. And who knows if perhaps you have come to +15 +the kingdom for such a time as this?” + +16 + +Then Esther sent this reply to Mordecai: + +“Go +and assemble all the Jews who can be found in +Susa, and fast for me. Do not eat or drink for +three days, night or day, and I and my maidens +will fast as you do. After that, I will go to the king, +even though it is against the law. And if I perish, +17 +I perish! + +” + + a + +So Mordecai went and did all that Esther had + +Esther Approaches the King +instructed him. + +5 + +On the third day, Esther put on her royal +robes and stood in the inner court of the pal- +ace across from the king’s quarters. The king was +sitting on his royal throne in the royal court- +2 +room, facing the entrance. + +As soon as the king saw Queen Esther standing +in the court, she found favor in his sight. The king +extended the gold scepter in his hand toward Es- +ther, and she approached and touched the tip of +a 16 +the scepter. +c 1 +Or + +if I am destroyed, then I will be destroyed! + +the Book of Memorials, the Annals + +Or + + or + +“What is it, Queen Esther?” the king inquired. +“What is your request? Even up to half the king- +4 +dom, it will be given to you.” + +“If it pleases the king,” Esther replied, “may the +king and Haman come today to the banquet I +5 +have prepared for the king.” + +“Hurry,” commanded the king, “and bring + +Haman, so we can do as Esther has requested.” +6 +So the king and Haman went to the banquet that +Esther had prepared. +And as they drank their +wine, the king said to Esther, “What is your peti- +tion? It will be given to you. What is your +request? Even up to half the kingdom, it will be +7 +fulfilled.” +8 + +Esther replied, “This is my petition and my +request: +If I have found favor in the sight of +the king, and if it pleases the king to grant my +petition and fulfill my request, may the king +and Haman come tomorrow to the banquet I will +prepare for them. Then I will answer the king’s +Haman’s Plot against Mordecai +question.” +9 + +That day Haman went out full of joy and glad of +heart. At the king’s gate, however, he saw Morde- +cai, who did not rise or tremble in fear at his +presence. And Haman was filled with rage to- +10 +ward Mordecai. + +11 + +Nevertheless, Haman restrained himself and +went home. And calling for his friends and his +wife Zeresh, +Haman recounted to them his glo- +rious wealth, his many sons, and all the ways the +king had honored and promoted him over the +12 +other officials and servants. + +“What is more,” Haman added, “Queen Esther +invited no one but me to join the king at the +banquet she prepared, and I am invited back to- +morrow along with the king. +Yet none of this +satisfies me as long as I see Mordecai the Jew sit- +14 +ting at the king’s gate.” + +13 + +b + +His wife Zeresh and all his friends told him, + and +“Have them build a gallows fifty cubits high, +ask the king in the morning to have Mordecai +hanged on it. Then go to the banquet with the +king and enjoy yourself.” +The advice pleased Haman, and he had the gal- +Mordecai Is Honored +lows constructed. + +6 + +c +That night sleep escaped the king; so he or- +dered the Book of Records, the Chronicles, + +2 + +b 14 50 cubits + +to be brought in and read to him. + +And there it + +the Book of Records of Historical Events + + is approximately 75 feet or 22.9 meters high. + + 466 | Esther 6:3 + +14 + + a + +was found recorded that Mordecai had exposed +Bigthana + and Teresh, two of the eunuchs who +guarded the king’s entrance, when they had con- +3 +spired to assassinate King Xerxes. + +The king inquired, + + “What honor or dignity has + +been bestowed on Mordecai for this act?” +“Nothing has been done for him,” replied the +4 +king’s attendants. + +“Who is in the court?” the king asked. + +5 + +Now Haman had just entered the outer court of +the palace to ask the king to hang Mordecai on the +So the king’s +gallows he had prepared for him. +attendants answered him, “Haman is there, +standing in the court.” +6 +“Bring him in,” ordered the king. + +Haman entered, and the king asked him, “What +should be done for the man whom the king is de- +lighted to honor?” +Now Haman thought to himself, “Whom would +7 +the king be delighted to honor more than me?” + +8 + +9 + +And Haman told the king, “For the man whom +have them bring +the king is delighted to honor, +a royal robe that the king himself has worn and +a horse on which the king himself has ridden— +Let +one with a royal crest placed on its head. +the robe and the horse be entrusted to one of the +king’s most noble princes. Let them array the +man the king wants to honor and parade him on +the horse through the city square, proclaiming +before him, ‘This is what is done for the man +10 +whom the king is delighted to honor!’ + +” + +“Hurry,” said the king to Haman, “and do just +as you proposed. Take the robe and the horse to +Mordecai the Jew, who is sitting at the king’s +gate. Do not neglect anything that you have sug- +11 +gested.” + +So Haman took the robe and the horse, +arrayed Mordecai, and paraded him through the +city square, crying out before him, “This is what +is done for the man whom the king is delighted +12 +to honor!” + +Then Mordecai returned to the king’s gate. But +Haman rushed home, with his head covered in +13 +grief. + +Haman told his wife Zeresh and all his friends +everything that had happened. His advisers and +his wife Zeresh said to him, “Since Mordecai, be- +fore whom your downfall has begun, is Jewish, +you will not prevail against him—for surely you +a 2 Bigthana +will fall before him.” + +Bigthan + +b 5 + +While they were still speaking with Haman, +the king’s eunuchs arrived and rushed him to the +Esther Pleads for Her People +banquet that Esther had prepared. + +7 + +2 + +So the king and Haman went to dine with Es- +and as they drank their +ther the queen, +wine on that second day, the king asked once +more, “Queen Esther, what is your petition? It +will be given to you. What is your request? Even +3 +up to half the kingdom, it will be fulfilled.” + +4 + +Queen Esther replied, “If I have found favor in +your sight, O king, and if it pleases the king, grant +me my life as my petition, and the lives of my +For my people and I have +people as my request. +been sold out to destruction, death, and annihila- +tion. If we had merely been sold as menservants +and maidservants, I would have remained silent, +because no such distress would justify burden- +5 +ing the king.” + + b + +Then King Xerxes spoke up and asked Queen +Esther, “Who is this, and where is the one who +6 + such a scheme?” +would devise + +Esther replied, “The adversary and enemy is + +this wicked man—Haman!” + +And Haman stood in terror before the king and +The Hanging of Haman +queen. +7 + +In his fury, the king arose from drinking his +wine and went to the palace garden, while +Haman stayed behind to beg Queen Esther for his +life, for he realized that the king was planning a +8 +terrible fate for him. + +Just as the king returned from the palace garden +to the banquet hall, Haman was falling on the +couch where Esther was reclining. The king ex- +claimed, “Would he actually assault the queen +while I am in the palace?” + +As soon as the words had left the king’s mouth, +9 +they covered Haman’s face. + + c + +Then Harbonah, one of the eunuchs attending +the king, said: “There is a gallows fifty cubits +high + at Haman’s house. He had it built for Mor- +decai, who gave the report that saved the king.” +10 +“Hang him on it!” declared the king. + +So they hanged Haman on the gallows he had +prepared for Mordecai. Then the fury of the king +subsided. + + is a var. of + +; Es. 2:21. + +Heb. + + is approx. 75 ft. or 22.9 m. + +whose heart has filled him to do + +c 9 50 cubits + + Esther Appeals for the Jews + +8 + +That same day King Xerxes awarded Queen +Esther the estate of Haman, the enemy of the +Jews. And Mordecai entered the king’s presence +2 +because Esther had revealed his relation to her. +The king removed the signet ring he had recov- +ered from Haman and presented it to Mordecai. +And Esther appointed Mordecai over the estate +3 +of Haman. + +And once again, Esther addressed the king. She +fell at his feet weeping and begged him to revoke +the evil scheme of Haman the Agagite, which he +4 +had devised against the Jews. + +The king extended the gold scepter toward Es- + +5 +ther, and she arose and stood before the king. + +“If it pleases the king,” she said, “and if I have +found favor in his sight, and the matter seems +proper to the king, and I am pleasing in his sight, +may an order be written to revoke the letters +that the scheming Haman son of Hammedatha, +the Agagite, wrote to destroy the Jews in all the +For how could I bear to see the +king’s provinces. +disaster that would befall my people? How could +The Decree of Xerxes +I bear to see the destruction of my kindred?” +7 + +6 + +8 + +So King Xerxes said to Esther the Queen and +Mordecai the Jew, “Behold, I have given Haman’s +estate to Esther, and he was hanged on the gal- +Now you +lows because he attacked the Jews. +may write in the king’s name as you please re- +garding the Jews, and seal it with the royal signet +ring. For a decree that is written in the name of +the king and sealed with the royal signet ring +9 +cannot be revoked.” + + b + + a + +At once the royal scribes were summoned, and +on the twenty-third day of the third month (the +), they recorded all of Mordecai’s +month of Sivan +orders to the Jews and to the satraps, governors, +and princes of the 127 provinces from India to +—writing to each province in its own +Cush +script, to every people in their own language, and +10 +to the Jews in their own script and language. + +Mordecai wrote in the name of King Xerxes +and sealed it with the royal signet ring. He sent +the documents by mounted couriers riding on +11 +swift horses bred from the royal mares. + +By these letters the king permitted the Jews in +a 9 Sivan +each and every city the right to assemble and +b 9 + +c 12 Adar + +Esther 9:6 | 467 + +12 + +defend themselves, to destroy, kill, and annihi- +late all the forces of any people or province hos- +tile to them, including women and children, and +to plunder their possessions. +The single day +appointed throughout all the provinces of King +Xerxes was the thirteenth day of the twelfth +13 +month, the month of Adar. + +c + +A copy of the text of the edict was to be issued +in every province and published to all the people, +so that the Jews would be ready on that day to +avenge themselves on their enemies. +The cou- +riers rode out in haste on their royal horses, +pressed on by the command of the king. And the +15 +edict was also issued in the citadel of Susa. + +14 + +Mordecai went out from the presence of the +king in royal garments of blue and white, with a +large gold crown and a purple robe of fine linen. +16 +And the city of Susa shouted and rejoiced. + +17 + +For the Jews it was a time of light and gladness, +In every province and every +of joy and honor. +city, wherever the king’s edict and decree +reached, there was joy and gladness among the +Jews, with feasting and celebrating. And many of +the people of the land themselves became Jews, +because the fear of the Jews had fallen upon +The Jews Destroy Their Enemies +them. + +9 + +d + +On the thirteenth day of the twelfth month, +the month of Adar, + the king’s command and +edict were to be executed. On this day the ene- +mies of the Jews had hoped to overpower them, +but their plan was overturned and the Jews over- +In each of the +powered those who hated them. +provinces of King Xerxes, the Jews assembled in +their cities to attack those who sought to harm +them. No man could withstand them, because the +3 +fear of them had fallen upon all peoples. + +2 + +And all the officials of the provinces, the +satraps, the governors, and the king’s adminis- +trators helped the Jews, because the fear of +For Mordecai +Mordecai had fallen upon them. +exercised great power in the palace, and his fame +spread throughout the provinces as he became +5 +more and more powerful. + +4 + +The Jews put all their enemies to the sword, kill- +ing and destroying them, and they did as they +In the citadel +pleased to those who hated them. +of Susa, the Jews killed and destroyed five + +6 + + is the third month of the Hebrew lunar calendar, usually occurring within the months of May and June. + +d 1 Adar + +That is, to the upper Nile region + + is the twelfth month of the Hebrew lunar calendar, usually occurring + +within the months of February and March. +within the months of February and March; also in verses 15, 17, 19, and 21. + + is the twelfth month of the Hebrew lunar calendar, usually occurring + + 468 | Esther 9:7 + +7 +8 + +9 +including Parshandatha, Dal- +hundred men, +10 +Par- +Poratha, Adalia, Aridatha, +phon, Aspatha, +mashta, Arisai, Aridai, and Vaizatha. +They +killed these ten sons of Haman son of Hammeda- +tha, the enemy of the Jews, but they did not lay a +Haman’s Sons Hanged +hand on the plunder. +11 + +12 + +On that day the number of those killed in the +who +citadel of Susa was reported to the king, +said to Queen Esther, “In the citadel of Susa the +Jews have killed and destroyed five hundred +men, including Haman’s ten sons. What have +they done in the rest of the royal provinces? Now +what is your petition? It will be given to you. And +13 +what further do you request? It will be fulfilled.” +Esther replied, “If it pleases the king, may the +Jews in Susa also have tomorrow to carry out to- +day’s edict, and may the bodies of Haman’s ten +14 +sons be hanged on the gallows.” + +15 + +So the king commanded that this be done. An +edict was issued in Susa, and they hanged the ten +On the fourteenth day of the +sons of Haman. +month of Adar, the Jews in Susa came together +again and put to death three hundred men there, +16 +but they did not lay a hand on the plunder. + +17 + +The rest of the Jews in the royal provinces also +assembled to defend themselves and rid them- +selves of their enemies. They killed 75,000 who +hated them, but they did not lay a hand on the +This was done on the thirteenth day +plunder. +of the month of Adar, and on the fourteenth day +The Feast of Purim Instituted +they rested, making it a day of feasting and joy. +18 + +19 + +The Jews in Susa, however, had assembled on +the thirteenth and the fourteenth days of the +month. So they rested on the fifteenth day, mak- +This is why the +ing it a day of feasting and joy. +rural Jews, who live in the villages, observe the +fourteenth day of the month of Adar as a day of +joy and feasting. It is a holiday for sending gifts +20 +to one another. + +22 + +21 + +Mordecai recorded these events and sent let- +ters to all the Jews in all the provinces of King +to establish among +Xerxes, both near and far, +them an annual celebration on the fourteenth +as the +and fifteenth days of the month of Adar +days on which the Jews gained rest from their en- +emies and the month in which their sorrow +turned to joy and their mourning into a holiday. +He wrote that these were to be days of feasting +and joy, of sending gifts to one another and to the +poor. + +23 + +So the Jews agreed to continue the custom they +24 +had started, as Mordecai had written to them. +For Haman son of Hammedatha, the Agagite, +the enemy of all the Jews, had plotted against the +Jews to destroy them and had cast the Pur (that +is, the lot) to crush and destroy them. +But +when it came before the king, he commanded by +letter that the wicked scheme which Haman had +devised against the Jews should come back upon +his own head, and that he and his sons should be +26 +hanged on the gallows. + +25 + +Therefore these days are called Purim, from + +the word Pur. +Because of all the instructions in this letter, and +27 +because of all they had seen and experienced, +the Jews bound themselves to establish the +custom that they and their descendants and all +who join them should not fail to celebrate these +two days at the appointed time each and every +year, according to their regulation. +These days +should be remembered and celebrated by every +generation, family, province, and city, so that +these days of Purim should not fail to be ob- +served among the Jews, nor should the memory +29 +of them fade from their descendants. + +28 + +So Queen Esther daughter of Abihail, along +with Mordecai the Jew, wrote with full authority +30 +to confirm this second letter concerning Purim. +And Mordecai sent letters with words of peace +31 +and truth to all the Jews in the 127 provinces of +the kingdom of Xerxes, +in order to confirm +these days of Purim at their appointed time, just +as Mordecai the Jew and Queen Esther had estab- +lished them and had committed themselves and +their descendants to the times of fasting and +32 +lamentation. + +So Esther’s decree confirmed these regula- +tions about Purim, which were written into the +Tribute to Xerxes and Mordecai +record. + +10 + +2 +shores. + +Now King Xerxes +tribute +throughout the land, even to its farthest + +imposed + +And all of Mordecai’s powerful and magnificent +accomplishments, together with the full account +of the greatness to which the king had raised him, +are they not written in the Book of the Chronicles +For Mordecai +of the Kings of Media and Persia? +the Jew was second only to King Xerxes, preemi- +nent among the Jews and highly favored by his +many kinsmen, seeking the good of his people +and speaking peace to all his countrymen. + +3 + + Job + +Job’s Character and Wealth (James 5:7–12) + +1 + +3 + +2 + +There was a man in the land of Uz whose +name was Job. And this man was blameless +and upright, fearing God and shunning evil. +He +and he +had seven sons and three daughters, +owned 7,000 sheep, 3,000 camels, 500 yoke of +oxen, 500 female donkeys, and a very large num- +ber of servants. Job was the greatest man of all +4 +the people of the East. + +Job’s sons would take turns holding feasts in +their homes, and they would invite their three +5 +sisters to eat and drink with them. + +And when the days of feasting were over, Job +would send for his children to purify them, rising +early in the morning to offer burnt offerings for +all of them. For Job thought, “Perhaps my chil- +dren have sinned and cursed God in their hearts.” +Satan’s First Attack +This was Job’s regular practice. +6 + + a + +One day the sons of God came to present them- + also came + +selves before the LORD, and Satan +7 +with them. + +“Where have you come from?” said the LORD to + +Satan. + +“From roaming through the earth,” he replied, +8 +“and walking back and forth in it.” + +Then the LORD said to Satan, “Have you consid- +ered My servant Job? For there is no one on earth +like him, a man who is blameless and upright, +9 +who fears God and shuns evil.” + +10 + +11 + +Satan answered the LORD, “Does Job fear God +Have You not placed a hedge on +for nothing? +every side around him and his household and all +that he owns? You have blessed the work of his +hands, and his possessions have increased in the +But stretch out Your hand and strike all +land. +that he has, and he will surely curse You to Your +12 +face.” + +“Very well,” said the LORD to Satan. “Every- +thing he has is in your hands, but you must not +lay a hand on the man himself.” +the Adversary +a 6 + +the Accuser + +Then Satan went out from the presence of the +Job Loses His Children and Possessions +LORD. +13 + +14 + +One day, while Job’s sons and daughters were +eating and drinking wine in their oldest brother’s +a messenger came and reported to Job: +house, +15 +“While the oxen were plowing and the donkeys +the Sabeans swooped +were grazing nearby, +down and took them away. They put the servants +to the sword, and I alone have escaped to tell +16 +you!” + +While he was still speaking, another messen- +ger came and reported: “The fire of God fell from +heaven. It burned and consumed the sheep and +the servants, and I alone have escaped to tell +17 +you!” + +While he was still speaking, another messen- +ger came and reported: “The Chaldeans formed +three bands, raided the camels, and took them +away. They put the servants to the sword, and I +18 +alone have escaped to tell you!” + +19 + +While he was still speaking, another messen- +ger came and reported: “Your sons and daugh- +ters were eating and drinking wine in their +when suddenly a +oldest brother’s house, +mighty wind swept in from the desert and struck +the four corners of the house. It collapsed on the +young people and they are dead, and I alone have +20 +escaped to tell you!” + +Then Job stood up, tore his robe, and shaved +21 +his head. He fell to the ground and worshiped, + +saying: + +“Naked I came from my mother’s + +womb, + +and naked I will return. + +The LORD gave, and the LORD has + +22 + +taken away. + +Blessed be the name of the LORD.” + +In all this, Job did not sin or charge God with + +wrongdoing. + +That is, + + or + +; here and throughout Job 1 + + 470 | Job 2:1 + +Job Loses His Health + +Job Laments His Birth + +2 + +On another day the sons of God came to + a +present themselves before the LORD, and + also came with them to present himself + +Satan +2 +before Him. + +“Where have you come from?” said the LORD to + +Satan. + +“From roaming through the earth,” he replied, +3 +“and walking back and forth in it.” + +Then the LORD said to Satan, “Have you consid- +ered My servant Job? For there is no one on earth +like him, a man who is blameless and upright, +who fears God and shuns evil. He still retains his +integrity, even though you incited Me against +4 +him to ruin him without cause.” + +5 + +“Skin for skin!” Satan replied. “A man will give +up all he owns in exchange for his life. +But +stretch out Your hand and strike his flesh and +6 +bones, and he will surely curse You to Your face.” + +“Very well,” said the LORD to Satan. “He is in + +7 +your hands, but you must spare his life.” + +So Satan went out from the presence of the +LORD and infected Job with terrible boils from +8 +the soles of his feet to the crown of his head. +And Job took a piece of broken pottery to scrape + +9 +himself as he sat among the ashes. + + b + +Then Job’s wife said to him, “Do you still retain + +10 +your integrity? Curse + + God and die!” + +“You speak as a foolish woman speaks,” he told +her. “Should we accept from God only good and +not adversity?” +Job’s Three Friends +In all this, Job did not sin in what he said. +11 + +Now when Job’s three friends—Eliphaz the Te- +manite, Bildad the Shuhite, and Zophar the +Naamathite—heard about all this adversity that +had come upon him, each of them came from his +home, and they met together to go and sympa- +12 +thize with Job and comfort him. + +When they lifted up their eyes from afar, they +could barely recognize Job. They began to weep +13 +aloud, and each man tore his robe and threw dust +Then they sat on the +in the air over his head. +ground with him for seven days and seven +nights, but no one spoke a word to him because +they saw how intense his suffering was. +a 1 + +the Adversary + +the Accuser + +3 + +3 +said: + +2 +After this, Job opened his mouth and cursed +And this is what he +the day of his birth. + +“May the day of my birth perish, +and the night it was said, +‘A boy is conceived.’ + +4 + +If only that day had turned to darkness! + +5 + +May God above disregard it; +may no light shine upon it. + +May darkness and gloom reclaim it, + +and a cloud settle over it; +may the blackness of the day + +6 + +overwhelm it. + +If only darkness had taken that night away! +May it not appear among the days of + +the year; + +7 + +may it never be entered in any of the + +months. + +Behold, may that night be barren; + +8 + +may no joyful voice come into it. +May it be cursed by those who curse + + c + +9 + +the day + +— + +those prepared to rouse Leviathan. + +May its morning stars grow dark; + +10 + +may it wait in vain for daylight; +may it not see the breaking of dawn. +For that night did not shut the doors of + +11 + +the womb + +to hide the sorrow from my eyes. + +Why did I not perish at birth; + +12 + +why did I not die as I came from the + +womb? + +13 + +Why were there knees to receive me, + +and breasts that I should be nursed? +For now I would be lying down in peace; + +14 + +I would be asleep and at rest + +with kings and counselors of the earth, + +15 + +who built for themselves cities now in + +ruins, + +16 + +or with princes who had gold, + +who filled their houses with silver. + +17 + +Or why was I not hidden like a stillborn child, +like an infant who never sees daylight? + +18 + +There the wicked cease from raging, +and there the weary find rest. + +The captives enjoy their ease; + +19 + +they do not hear the voice of the + +oppressor. + +Both small and great are there, +c 8 + +and the slave is freed from his master. +b 9 + +curse the sea + +Bless + +That is, + + or + +; here and throughout Job 2 + +Or + +Or + + 20 + +14 + +Job 5:12 | 471 + +21 + +Why is light given to the miserable, +and life to the bitter of soul, + +15 + +fear and trembling came over me + + a + +and made all my bones shudder. + +22 + +who long for death that does not come, + +16 + +Then a spirit + + glided past my face, + +and search for it like hidden treasure, + +and the hair on my body bristled. + +23 + +who rejoice and greatly exult + +when they reach the grave? + +Why is life given to a man whose way is + +24 + +hidden, + +whom God has hedged in? +I sigh when food is put before me, + +25 + +26 + +and my groans pour out like water. +For the thing I feared has overtaken me, +and what I dreaded has befallen me. + +I am not at ease or quiet; + +Eliphaz: The Innocent Prosper + +I have no rest, for trouble has come.” + +4 + +2 +Then Eliphaz the Temanite replied: + +“If one ventures a word with you, will you + +3 + +be wearied? + +Yet who can keep from speaking? + +Surely you have instructed many, + +4 + +and have strengthened their feeble hands. + +Your words have steadied those who + +stumbled; + +5 + +you have braced the knees that were + +buckling. + +But now trouble has come upon you, and you + +6 + +are weary. + +It strikes you, and you are dismayed. + +Is your reverence not your confidence, + +7 + +and the uprightness of your ways your + +hope? + +Consider now, I plead: + +Who, being innocent, has ever perished? +Or where have the upright been + +8 + +destroyed? + +7 + +As I have observed, those who plow iniquity + +9 + +and those who sow trouble reap the same. + +By the breath of God they perish, + +10 + +and by the blast of His anger they are + +consumed. + +The lion may roar, and the fierce lion may + +11 + +growl, + +yet the teeth of the young lions are broken. + +The old lion perishes for lack of prey, + +and the cubs of the lioness are scattered. + +Now a word came to me secretly; +my ears caught a whisper of it. +In disquieting visions in the night, +a wind +when deep sleep falls on men, + +b 5 + +a 15 + +and a snare snatches his wealth + +Or + +Or + +12 + +13 + +It stood still, + +but I could not discern its appearance; + +17 + +a form loomed before my eyes, + +and I heard a whispering voice: + +18 + +‘Can a mortal be more righteous than God, +or a man more pure than his Maker? + +19 + +If God puts no trust in His servants, + +and He charges His angels with error, +how much more those who dwell in houses + +of clay, + +20 + +whose foundations are in the dust, +who can be crushed like a moth! + +They are smashed to pieces from dawn to + +21 + +dusk; + +unnoticed, they perish forever. +Are not their tent cords pulled up, + +Eliphaz Continues: God Blesses those Who +so that they die without wisdom?’ +Seek Him + +5 + +“Call out if you please, but who will + +2 + +answer? + +To which of the holy ones will you turn? + +For resentment kills a fool, + +3 + +and envy slays the simple. +I have seen a fool taking root, + +4 + +but suddenly his house was cursed. + +His sons are far from safety, + +5 + +crushed in court without a defender. +b + +The hungry consume his harvest, +taking it even from the thorns, +and the thirsty pant after his wealth. +For distress does not spring from the dust, +and trouble does not sprout from the + +ground. + +Yet man is born to trouble + +as surely as sparks fly upward. + +6 + +8 + +However, if I were you, I would appeal to God + +9 + +and lay my cause before Him— + +the One who does great and unsearchable + +10 + +things, + +wonders without number. + +11 + +He gives rain to the earth + +and sends water upon the fields. + +12 + +He sets the lowly on high, + +so that mourners are lifted to safety. + +He thwarts the schemes of the crafty, +so that their hands find no success. + + 472 | Job 5:13 + +13 + +a + +5 + +14 + +He catches the wise in their craftiness, + +Does a wild donkey bray over fresh grass, + +6 + +and sweeps away the plans of the cunning. + +15 + +They encounter darkness by day + +and grope at noon as in the night. + +He saves the needy from the sword in their + +16 + +mouth + +and from the clutches of the powerful. + +So the poor have hope, + +17 + +and injustice shuts its mouth. + +Blessed indeed is the man whom God + +corrects; +b + +or an ox low over its fodder? +Is tasteless food eaten without salt, +or is there flavor in the white of + + c + +7 + +an egg + +? +My soul refuses to touch them; + +they are loathsome food to me. + +8 + +If only my request were granted + +9 + +10 + +and God would fulfill my hope: +that God would be willing to crush me, +to unleash His hand and cut me off! + +18 + +so do not despise the discipline of the + +It still brings me comfort, + +Almighty. + +and joy through unrelenting pain, + +19 + +For He wounds, but He also binds; + +20 + +He strikes, but His hands also heal. +He will rescue you from six calamities; +no harm will touch you in seven. + +21 + +In famine He will redeem you from death, + +and in battle from the stroke of the sword. + +You will be hidden from the scourge of the + +22 + +tongue, + +and will not fear havoc when it comes. +You will laugh at destruction and famine, + +23 + +and need not fear the beasts of the earth. +For you will have a covenant with the stones + +of the field, + +24 + +and the wild animals will be at peace with + +15 + +you. + +You will know that your tent is secure, + +25 + +and find nothing amiss when inspecting + +your home. + +You will know that your offspring will be + +many, + +26 + +your descendants like the grass of the + +earth. + +18 + +that I have not denied + +11 + +the words of the Holy One. + +What strength do I have, that I should + +still hope? + +12 + +What is my future, that I should be + +patient? + +13 + +Is my strength like that of stone, +or my flesh made of bronze? + +Is there any help within me + +14 + +now that success is driven from me? + +A despairing man should have the kindness + +of his friend, + +even if he forsakes the fear of the + +Almighty. + +16 + +But my brothers are as faithless as wadis, +as seasonal streams that overflow, + +17 + +darkened because of the ice + +and the inflow of melting snow, + +but ceasing in the dry season + +and vanishing from their channels in the + +heat. + +27 + +You will come to the grave in full vigor, + +like a sheaf of grain gathered in season. + +Indeed, we have investigated, and it is true! + +Job Replies: My Complaint Is Just + +So hear it and know for yourself.” + +6 + +2 +Then Job replied: + +3 + +“If only my grief could be weighed +and placed with my calamity on the scales. + +For then it would outweigh the sand of the + +4 + +seas— + +no wonder my words have been rash. +For the arrows of the Almighty have pierced + +me; + +my spirit drinks in their poison; +the terrors of God are arrayed against me. + +Shaddai + +b 17 + +a 13 + +19 + +Caravans turn aside from their routes; + +they go into the wasteland and perish. + +20 + +The caravans of Tema look for water; + +the travelers of Sheba hope to find it. + +They are confounded because they had + +21 + +hoped; + +their arrival brings disappointment. + +22 + +For now you are of no help; + +you see terror, and you are afraid. +Have I ever said, ‘Give me something; +offer me a bribe from your wealth; +deliver me from the hand of the enemy; +redeem me from the grasp of the + +23 + +24 + +ruthless’? + +Teach me, and I will be silent. +c 6 + +Help me understand how I have erred. +in the sap of the mallow plant + +Cited in 1 Corinthians 3:19 + +Hebrew + +; here and throughout Job + +Or + + 25 + +15 + +26 + +How painful are honest words! + +16 + +so that I would prefer strangling and death + +But what does your argument prove? + +over my life in this body. + +Job 8:13 | 473 + +27 + +Do you intend to correct my words, + +and treat as wind my cry of despair? +You would even cast lots for an orphan + +28 + +and barter away your friend. + +29 + +But now, please look at me. +Would I lie to your face? +Reconsider; do not be unjust. + +30 + +Reconsider, for my righteousness is + +at stake. + +Is there iniquity on my tongue? +Job Continues: Life Seems Futile + +Can my mouth not discern malice? + +7 + +2 + +“Is not man consigned to labor on earth? +Are not his days like those of a hired + +hand? + +Like a slave he longs for shade; + +3 + +like a hireling he waits for his wages. + +So I am allotted months of futility, + +4 + +and nights of misery are appointed + +to me. + +When I lie down I think: +‘When will I get up?’ +But the night drags on, +5 + +and I toss and turn until dawn. + +My flesh is clothed with worms +and encrusted with dirt; +my skin is cracked and festering. + +6 + +7 + +My days are swifter than a weaver’s shuttle; + +they come to an end without hope. + +Remember that my life is but a breath. + +8 + +My eyes will never again see happiness. + +The eye that beholds me will no longer + +9 + +see me. + +You will look for me, but I will be no more. + +As a cloud vanishes and is gone, + +I loathe my life! I would not live forever. +Leave me alone, for my days are but a + +17 + +breath. + +18 + +What is man that You should exalt him, + +that You should set Your heart upon him, + +19 + +that You attend to him every morning, + +and test him every moment? +Will You never look away from me, + +20 + +or leave me alone to swallow my spittle? + +If I have sinned, what have I done to You, + +O watcher of mankind? + + a + +21 + +Why have You made me Your target, + +so that I am a burden to You + +? + +Why do You not pardon my transgression + +and take away my iniquity? +For soon I will lie down in the dust; + +Bildad: Job Should Repent + +You will seek me, but I will be no more.” + +8 + +2 +Then Bildad the Shuhite replied: + +“How long will you go on saying such + +things? + +3 + +The words of your mouth are a blustering + +wind. + +Does God pervert justice? + +4 + +Does the Almighty pervert what is right? + +5 + +When your children sinned against Him, +He gave them over to their rebellion. + +6 + +But if you would earnestly seek God +and ask the Almighty for mercy, + +if you are pure and upright, + +even now He will rouse Himself on your + +7 + +behalf + +and restore your righteous estate. +Though your beginnings were modest, + +your latter days will flourish. + +8 + +10 + +so he who goes down to Sheol does not + +Please inquire of past generations + +come back up. +He never returns to his house; + +11 + +9 + +and consider the discoveries of their + +fathers. + +his place remembers him no more. + +For we were born yesterday and know + +Therefore I will not restrain my mouth; + +I will speak in the anguish of my spirit; +I will complain in the bitterness of my + +12 + +soul. + +13 + +Am I the sea, or the monster of the deep, +that You must keep me under guard? + +14 + +When I think my bed will comfort me + +and my couch will ease my complaint, + +then You frighten me with dreams +to myself +and terrify me with visions, + +a 20 + +LXX; Hebrew + +10 + +nothing; + +our days on earth are but a shadow. + +11 + +Will they not teach you and tell you, + +and speak from their understanding? +Does papyrus grow where there is no marsh? + +12 + +Do reeds flourish without water? + +While the shoots are still uncut, + +13 + +they dry up more quickly than grass. + +Such is the destiny of all who forget God; +so the hope of the godless will perish. + + 474 | Job 8:14 + +14 + +13 + +15 + +His confidence is fragile; + +his security is in a spider’s web. +He leans on his web, but it gives way; + +16 + +he holds fast, but it does not endure. +He is a well-watered plant in the sunshine, + +17 + +spreading its + + shoots over the garden. + +18 + +His roots wrap around the rock heap; + +he looks for a home among the stones. + +If he is uprooted from his place, + +19 + +it will disown him, saying, ‘I never saw + +you.’ + +20 + +Surely this is the joy of his way; + +yet others will spring from the dust. + +Behold, God does not reject the blameless, +nor will He strengthen the hand of + +21 + +evildoers. + +22 + +He will yet fill your mouth with laughter, +and your lips with a shout of joy. +Your enemies will be clothed in shame, +and the tent of the wicked will be no + +Job: How Can I Contend with God? + +more.” + +9 + +2 +Then Job answered: + +“Yes, I know that it is so, +but how can a mortal be righteous before + +a + +3 + +God? + +If one wished to contend with God, + +4 + +he could not answer Him one time out of a + +thousand. + +God is wise in heart and mighty in strength. +Who has resisted Him and prospered? +He moves mountains without their knowledge + +5 + +6 + +and overturns them in His anger. +He shakes the earth from its place, + b +so that its foundations tremble. +He commands the sun not to shine; + +7 + +8 + +He seals off the stars. + +He alone stretches out the heavens + +9 + +and treads on the waves of the sea. +He is the Maker of the Bear and Orion, + +10 + +of the Pleiades and the constellations of + +the south. + +11 + +He does great things beyond searching out, + +and wonders without number. + +Were He to pass by me, I would not see Him; +were He to move, I would not recognize + +c + +12 + +Him. + +God does not restrain His anger; + +14 + +the helpers of Rahab cower beneath Him. + +15 + +How then can I answer Him + +or choose my arguments against Him? +For even if I were right, I could not answer. +I could only beg my Judge for mercy. +If I summoned Him and He answered me, +I do not believe He would listen to my + +16 + +17 + +voice. + +18 + +For He would crush me with a tempest + +and multiply my wounds without cause. + +19 + +He does not let me catch my breath, + +but overwhelms me with bitterness. + +If it is a matter of strength, +He is indeed mighty! + d +If it is a matter of justice, +who can summon Him + +? + +20 + +Even if I were righteous, my mouth would + +condemn me; +e + +if I were blameless, it would declare me + +guilty. + +21 + +Though I am blameless, I have no concern for + +22 + +myself; + +I despise my own life. +It is all the same, and so I say, + +23 + +‘He destroys both the blameless and + +the wicked.’ + +24 + +When the scourge brings sudden death, +He mocks the despair of the innocent. + +The earth is given into the hand of the + +wicked; + +25 + +He blindfolds its judges. +If it is not He, then who is it? + +26 + +27 + +My days are swifter than a runner; +they flee without seeing good. +They sweep by like boats of papyrus, + +like an eagle swooping down on its prey. + +28 + +If I were to say, ‘I will forget my complaint +and change my expression and smile,’ + +29 + +I would still dread all my sufferings; + +I know that You will not acquit me. + + f + +Since I am already found guilty, +why should I labor in vain? +If I should wash myself with snow +and cleanse my hands with lye, +then You would plunge me into the pit, +and even my own clothes would + +30 + +31 + +32 + +despise me. + +If He takes away, + + who can stop Him? + +For He is not a man like me, that I can + +Who dares to ask Him, ‘What are You +If God wished to contend with someone +He would declare me guilty + +doing?’ + +soap + +f 30 + +b 7 + +a 3 +e 20 + +rise + +c 12 + +answer Him, + +snatches someone in death + +that we can take each other to court. + +d 19 + +me + +Or +Or + +Or + +Or + +Or + +See LXX; Hebrew + + 33 + +16 + +34 + +Nor is there a mediator between us, +to lay his hand upon us both. +Let Him remove His rod from me, + +35 + +so that His terror will no longer frighten + +me. + +Should I hold my head high, + +17 + +You would hunt me like a lion, +and again display Your power against me. + +You produce new witnesses against me +and multiply Your anger toward me. + +Job 11:11 | 475 + +Then I would speak without fear of Him. + +Job’s Plea to God + +But as it is, I am on my own. + +10 + +2 + +“I loathe my own life; +I will express my complaint + +and speak in the bitterness of my soul. + +I will say to God: + +3 + +Do not condemn me! +Let me know why You prosecute me. + +Does it please You to oppress me, + +4 + +to reject the work of Your hands +and favor the schemes of the wicked? + +Do You have eyes of flesh? + +5 + +Do You see as man sees? + +6 + +Are Your days like those of a mortal, +or Your years like those of a man, + +7 + +that You should seek my iniquity +and search out my sin— + +though You know that I am not guilty, + +8 + +and there is no deliverance from Your + +hand? + +Your hands shaped me and altogether formed + +9 + +me. + +Would You now turn and destroy me? +Please remember that You molded me like + +10 + +clay. + +Would You now return me to dust? + +11 + +Did You not pour me out like milk, +and curdle me like cheese? + +You clothed me with skin and flesh, + +12 + +and knit me together with bones and + +sinews. + +a + +You have granted me life and loving + +13 + +devotion, + +and Your care has preserved my spirit. + +14 + +Yet You concealed these things in Your heart, +and I know that this was in Your mind: + +If I sinned, You would take note, + +15 + +and would not acquit me of my iniquity. + +If I am guilty, woe to me! + +18 + +Hardships assault me +in wave after wave. + +Why then did You bring me from the womb? +Oh, that I had died, and no eye had seen + +19 + +me! + +If only I had never come to be, + +20 + +but had been carried from the womb to + +the grave. +Are my days not few? + +21 + +Withdraw from me, that I may have a little + +comfort, + +before I go—never to return— + +22 + +to a land of darkness and gloom, + +to a land of utter darkness, + +Zophar Rebukes Job + +of deep shadow and disorder, +where even the light is like darkness.” + +11 + +2 +Then Zophar the Naamathite replied: + +3 + +“Should this stream of words go +unanswered + +and such a speaker be vindicated? + +Should your babbling put others to silence? + +4 + +Will you scoff without rebuke? +You have said, ‘My doctrine is sound, +and I am pure in Your sight.’ + +5 + +But if only God would speak + +6 + +and open His lips against you, + +and disclose to you the secrets of wisdom, + +for true wisdom has two sides. +Know then that God exacts from you +less than your iniquity deserves. + +7 + +Can you fathom the deep things of God + +8 + +or discover the limits of the Almighty? +They are higher than the heavens—what can + +you do? + +9 + +They are deeper than Sheol—what can + +you know? + +Their measure is longer than the earth + +10 + +and wider than the sea. + +And even if I am righteous, I cannot lift my + +11 + +If He comes along to imprison you, + +head. +I am full of shame + +or convenes a court, who can stop Him? + +Surely He knows the deceit of men. + +a 12 + +and aware of my affliction. +goodness + are translated here and in most cases throughout the Scriptures as +, and + +Forms of the Hebrew +range of meaning includes + +chesed +love + +faithfulness + +, as well as + +kindness + +mercy + +If He sees iniquity, does He not take note? +loyalty to a covenant + +loving devotion + +; the + +. + +, + +, + +, + + 476 | Job 11:12 + +12 + +But a witless man can no more become wise +than the colt of a wild donkey can be born + + a + +13 + +a man! + +14 + +As for you, if you direct your heart +and lift up your hands to Him, + +if you put away the iniquity in your hand, +and allow no injustice to dwell in your + +15 + +tents, + +then indeed you will lift up your face without + +16 + +blemish; + +you will stand firm and unafraid. + +17 + +For you will forget your misery, + +18 + +recalling it only as waters gone by. +Your life will be brighter than noonday; +its darkness will be like the morning. +You will be secure, because there is hope, + +19 + +and you will look around and lie down in + +safety. + +20 + +You will lie down without fear, + +and many will court your favor. +But the eyes of the wicked will fail, +and escape will elude them; +they will hope for their last breath.” + +Job Presents His Case + +12 + +2 +Then Job answered: + +3 + +“Truly then you are the people +with whom wisdom itself will die! + +But I also have a mind; + +4 + +I am not inferior to you. +Who does not know such things as these? + +I am a laughingstock to my friends, + +though I called on God, and He answered. +The righteous and upright man is a + +5 + +laughingstock. + +The one at ease scorns misfortune + +6 + +as the fate of those whose feet are + +slipping. + +The tents of robbers are safe, + +b +and those who provoke God are secure— +those who carry their god in their hands. + +7 + +But ask the animals, and they will instruct + +you; + +8 + +ask the birds of the air, and they will tell + +you. + +Or speak to the earth, and it will teach you; + +9 + +let the fish of the sea inform you. + +10 + +Which of all these does not know + +that the hand of the LORD has done this? + +11 + +12 + +Does not the ear test words + +as the tongue tastes its food? +Wisdom is found with the elderly, + +13 + +and understanding comes with long life. + +14 + +Wisdom and strength belong to God; + +counsel and understanding are His. +What He tears down cannot be rebuilt; + +15 + +the man He imprisons cannot be released. + +If He holds back the waters, they dry up, + +16 + +and if He releases them, they overwhelm + +the land. + +17 + +True wisdom and power belong to Him. + +The deceived and the deceiver are His. + +18 + +He leads counselors away barefoot + +and makes fools of judges. + +19 + +He loosens the bonds placed by kings + +and fastens a belt around their waists. + +20 + +He leads priests away barefoot + +and overthrows the established. + +21 + +He deprives the trusted of speech + +and takes away the discernment of elders. + +22 + +He pours out contempt on nobles + +and disarms the mighty. + +23 + +24 + +He reveals the deep things of darkness +and brings deep shadows into light. +He makes nations great and destroys them; + +He enlarges nations, then disperses them. + +He deprives the earth’s leaders of reason +and makes them wander in a trackless + +25 + +wasteland. + +Job Prepares His Case + +They grope in the darkness without light; +He makes them stagger like drunkards. + +13 + +2 + +“Indeed, my eyes have seen all this; +my ears have heard and understood. + +3 + +What you know, I also know; +I am not inferior to you. + +4 + +Yet I desire to speak to the Almighty +and argue my case before God. + +5 + +You, however, smear with lies; + +you are all worthless physicians. + +If only you would remain silent; + +for that would be your wisdom! + +6 + +7 + +Hear now my argument, + +and listen to the plea of my lips. +Will you speak wickedly on God’s behalf + +8 + +9 + +or speak deceitfully for Him? +Would you show Him partiality +or argue in His defense? + +Would it be well when He examined you? +Could you deceive Him as you would + +The life of every living thing is in His hand, +b 6 +can be born tame +as well as the breath of all mankind. + +a 12 + +though God keeps them in His power + +deceive a man? + +Or + +Or + + 10 + +3 + +Job 14:20 | 477 + +your defenses are defenses of clay. + +and the number of his months is with You, + +Surely He would rebuke you + +11 + +if you secretly showed partiality. +Would His majesty not terrify you? +Would the dread of Him not fall + +12 + +upon you? + +Your maxims are proverbs of ashes; + +13 + +Be silent, and I will speak. + + a + +14 + +Then let come to me what may. + +Why do I put myself at risk + +b +and take my life in my own hands? +Though He slay me, I will hope in Him. + +15 + +16 + +Moreover, this will be my salvation, + +17 + +for no godless man can appear before + +Him. + +Listen carefully to my words; + +18 + +let my declaration ring in your ears. + +19 + +See now, I have prepared my case; +I know that I will be vindicated. + +Can anyone indict me? + +20 + +If so, I will be silent and die. + +Only grant these two things to me, + +21 + +so that I need not hide from You: + +Withdraw Your hand from me, + +22 + +I will still defend my ways to His face. + +8 + +and do not let Your terror frighten me. + +13 + +Then call me, and I will answer, + +23 + +or let me speak, and You can reply. +How many are my iniquities and sins? + +24 + +Reveal to me my transgression and sin. + +Why do You hide Your face + +25 + +and consider me as Your enemy? +Would You frighten a windblown leaf? +Would You chase after dry chaff? + +26 + +For You record bitter accusations against me + +27 + +and bequeath to me the iniquities of + +my youth. + +You put my feet in the stocks + +and stand watch over all my paths; + +You set a limit + +28 + +for the soles of my feet. + +So man wastes away like something rotten, + +Job Laments the Finality of Death + +like a moth-eaten garment. + +14 + +2 + +“Man, who is born of woman, +is short of days and full of trouble. + +Do You open Your eyes to one like this? + +4 + +Will You bring him into judgment before + +You? + +Who can bring out clean from unclean? + +5 + +No one! + +Since his days are determined + +6 + +and since You have set limits +that he cannot exceed, + +7 + +look away from him and let him rest, + +so he can enjoy his day as a hired hand. + +For there is hope for a tree: + +If it is cut down, it will sprout again, +and its tender shoots will not fail. + +9 + +If its roots grow old in the ground +and its stump dies in the soil, + +at the scent of water it will bud + +10 + +and put forth twigs like a sapling. + +But a man dies and is laid low; + +11 + +he breathes his last, and where is he? + +As water disappears from the sea + +12 + +and a river becomes parched and dry, + +so a man lies down + +and does not rise. + +Until the heavens are no more, + +he will not be awakened or roused + +from sleep. + +If only You would hide me in Sheol + +and conceal me until Your anger has + +passed! + +If only You would appoint a time for me + +14 + +and then remember me! + +When a man dies, will he live again? + + c + +15 + +All the days of my hard service I will wait, + comes. +until my renewal + +You will call, and I will answer; + +16 + +You will desire the work of Your hands. + +For then You would count my steps, + +17 + +but would not keep track of my sin. +My transgression would be sealed in a bag, +and You would cover over my iniquity. + +18 + +19 + +But as a mountain erodes and crumbles +and a rock is dislodged from its place, + +as water wears away the stones + +20 + +and torrents wash away the soil, +so You destroy a man’s hope. + +You forever overpower him, and he passes + +Like a flower, he comes forth, then withers + +on; + +away; + +You change his countenance and send him + +a 14 + +like a fleeting shadow, he does not endure. + +Why do I take my flesh in my teeth + +b 15 + +I have no other hope + +away. + + c 14 + +my change + +my relief + +Literally + +Or + +Or + + or + + 478 | Job 14:21 + +21 + +20 + +22 + +If his sons receive honor, he does not know it; +if they are brought low, he is unaware. + +A wicked man writhes in pain all his days; +only a few years are reserved for the + +21 + +He feels only the pain of his own body +and mourns only for himself.” + +Eliphaz: Job Does Not Fear God + +15 + +2 +Then Eliphaz the Temanite replied: + +3 + +“Does a wise man answer with empty +counsel + +or fill his belly with the hot east wind? + +Should he argue with useless words + +4 + +or speeches that serve no purpose? +But you even undermine the fear of God +and hinder meditation before Him. +For your iniquity instructs your mouth, + +5 + +6 + +and you choose the language of the crafty. + +Your own mouth, not mine, condemns you; + +7 + +your own lips testify against you. + +ruthless. + +Sounds of terror fill his ears; + +22 + +in his prosperity the destroyer attacks + +him. + +He despairs of his return from darkness; + +23 + +he is marked for the sword. + +He wanders about as food for vultures; + +24 + +he knows the day of darkness is at hand. + +Distress and anguish terrify him, + +25 + +overwhelming him like a king poised to + +attack. + +For he has stretched out his hand against + +God + +26 + +and has vaunted himself against the + +Almighty, +rushing headlong at Him + +27 + +with a thick, studded shield. + +Were you the first man ever born? + +8 + +Were you brought forth before the hills? + +Do you listen in on the council of God + +9 + +or limit wisdom to yourself? +What do you know that we do not? + +10 + +What do you understand that is not clear + +to us? + +Both the gray-haired and the aged are on our + +11 + +side— + +men much older than your father. +Are the consolations of God not enough + +12 + +for you, + +even words spoken gently to you? +Why has your heart carried you away, + +a + +13 + +and why do your eyes flash, + +so that you turn your spirit against God + +14 + +and pour such words from your mouth? + +What is man, that he should be pure, + +15 + +or one born of woman, that he should be + +Though his face is covered with fat + +28 + +and his waistline bulges with flesh, + +he will dwell in ruined cities, + +29 + +in abandoned houses destined to become + +rubble. + +He will no longer be rich; his wealth will not + +endure. + +30 + +His possessions will not overspread the + +land. + +He will not escape from the darkness; +the flame will wither his shoots, + +and the breath of God’s mouth + +31 + +will carry him away. + +Let him not deceive himself with trust in + +32 + +emptiness, + +for emptiness will be his reward. +It will be paid in full before his time, +and his branch will not flourish. + +33 + +He will be like a vine stripped of its unripe + +righteous? + +34 + +grapes, + +If God puts no trust in His holy ones, + +16 + +if even the heavens are not pure in His + +like an olive tree that sheds its blossoms. + +For the company of the godless will be + +eyes, + +how much less man, who is vile and corrupt, + +17 + +who drinks injustice like water? +Listen to me and I will inform you. +I will describe what I have seen, + +18 + +what was declared by wise men + +19 + +and was not concealed from their fathers, + +to whom alone the land was given + +35 + +barren, + +and fire will consume the tents of bribery. +They conceive trouble and give birth to evil; +their womb is pregnant with deceit.” + +Job Decries His Comforters + +16 + +2 +Then Job answered: + +“I have heard many things like these; + +a 12 + +when no foreigner passed among them. + +blink + +miserable comforters are you all. + +Or + + 3 + +Job Prepares for Death + +Job 18:4 | 479 + +Is there no end to your long-winded + +4 + +speeches? + +What provokes you to continue testifying? + +I could also speak like you +if you were in my place; + +5 + +I could heap up words against you +and shake my head at you. + +But I would encourage you with my mouth, +and the consolation of my lips would + +6 + +bring relief. + +Even if I speak, my pain is not relieved, + +7 + +and if I hold back, how will it go away? + +Surely He has now exhausted me; + +8 + +You have devastated all my family. +You have bound me, and it has become a + +witness; + +9 + +my frailty rises up and testifies against + +me. + +His anger has torn me and opposed me; + +10 + +He gnashes His teeth at me. +My adversary pierces me with His eyes. + +They open their mouths against me + +11 + +and strike my cheeks with contempt; +they join together against me. +God has delivered me to unjust men; + +12 + +He has thrown me to the clutches of the + +wicked. + +I was at ease, but He shattered me; + +13 + +He seized me by the neck and crushed me. + +He has set me up as His target; +His archers surround me. + +14 + +15 + +He pierces my kidneys without mercy +and spills my gall on the ground. +He breaks me with wound upon wound; +He rushes me like a mighty warrior. + +16 + +I have sewn sackcloth over my skin; +I have buried my horn in the dust. + +17 + +My face is red with weeping, + +and deep shadows ring my eyes; + +18 + +yet my hands are free of violence + +and my prayer is pure. + +O earth, do not cover my blood; + +19 + +may my cry for help never be laid + +to rest. + +20 + +Even now my witness is in heaven, +and my advocate is on high. + +21 + +My friends are my scoffers + +22 + +as my eyes pour out tears to God. +Oh, that a man might plead with God +as he pleads with his neighbor! +For when only a few years are past +I will go the way of no return. + +17 + +“My spirit is broken; my days are + +extinguished; +the grave awaits me. +Surely mockers surround me, + +and my eyes must gaze at their rebellion. + +4 + +Give me, I pray, the pledge You demand. +Who else will be my guarantor? + +You have closed their minds to +understanding; + +5 + +therefore You will not exalt them. +If a man denounces his friends for a price, + +the eyes of his children will fail. + +2 + +3 + +6 + +He has made me a byword among the people, + +7 + +a man in whose face they spit. +My eyes have grown dim with grief, + +8 + +and my whole body is but a shadow. + +The upright are appalled at this, + +9 + +and the innocent are stirred against the + +godless. + +Yet a righteous one holds to his way, + +10 + +and the one with clean hands grows + +stronger. + +11 + +But come back and try again, all of you. + +For I will not find a wise man among you. + +My days have passed; my plans are broken + +12 + +off— + +even the desires of my heart. +They have turned night into day, + +13 + +making light seem near in the face of + +darkness. + +14 + +If I look for Sheol as my home, + +if I spread out my bed in darkness, +and say to corruption, ‘You are my father,’ +and to the worm, ‘My mother,’ or ‘My + +15 + +sister,’ + +16 + +where then is my hope? + +Who can see any hope for me? +Will it go down to the gates of Sheol? + +Bildad: God Punishes the Wicked + +Will we go down together into the dust?” + +18 + +2 +Then Bildad the Shuhite replied: + +“How long until you end these +speeches? + +3 + +Show some sense, and then we can talk. + +4 + +Why are we regarded as cattle, +as stupid in your sight? + +You who tear yourself in anger— + +should the earth be forsaken on your + +account, + +or the rocks be moved from their place? + + 480 | Job 18:5 + +5 + +7 + +Indeed, the lamp of the wicked is + +Though I cry out, ‘Violence!’ I get no + +6 + +extinguished; + +the flame of his fire does not glow. + +The light in his tent grows dark, + +7 + +and the lamp beside him goes out. + +His vigorous stride is shortened, + +8 + +and his own schemes trip him up. +For his own feet lead him into a net, +and he wanders into its mesh. + +9 + +10 + +A trap seizes his heel; +a snare grips him. + +11 + +A noose is hidden in the ground, +and a trap lies in his path. + +12 + +Terrors frighten him on every side + +and harass his every step. + +13 + +His strength is depleted, + +and calamity is ready at his side. + +It devours patches of his skin; + +14 + +the firstborn of death devours his limbs. + +15 + +He is torn from the shelter of his tent + +and is marched off to the king of terrors. + +16 + +Fire resides in his tent; + +burning sulfur rains down on his dwelling. + +17 + +The roots beneath him dry up, + +and the branches above him wither away. +The memory of him perishes from the earth, + +18 + +and he has no name in the land. +He is driven from light into darkness + +19 + +and is chased from the inhabited world. +He has no offspring or posterity among his + +20 + +people, + +no survivor where he once lived. + +21 + +Those in the west are appalled at his fate, + +while those in the east tremble in horror. + +Surely such is the dwelling of the wicked + +and the place of one who does not know + +Job: My Redeemer Lives +God.” + +19 + +2 +Then Job answered: + +3 + +“How long will you torment me + +and crush me with your words? + +Ten times now you have reproached me; + +4 + +you shamelessly mistreat me. + +5 + +Even if I have truly gone astray, +my error concerns me alone. + +8 + +response; + +though I call for help, there is no justice. + +9 + +He has blocked my way so I cannot pass; +He has veiled my paths with darkness. + +10 + +He has stripped me of my honor + +and removed the crown from my head. +He tears me down on every side until I am + +11 + +gone; + +He uproots my hope like a tree. + +12 + +His anger burns against me, + +and He counts me among His enemies. + +His troops advance together; + +13 + +they construct a ramp against me +and encamp around my tent. + +14 + +He has removed my brothers from me; + +my acquaintances have abandoned me. + +15 + +My kinsmen have failed me, + +and my friends have forgotten me. +My guests and maidservants count me as a + +16 + +stranger; + +I am a foreigner in their sight. +I call for my servant, but he does not + +answer, + +17 + +though I implore him with my own + +mouth. + +18 + +My breath is repulsive to my wife, + +and I am loathsome to my own family. + +19 + +Even little boys scorn me; + +when I appear, they deride me. + +20 + +All my best friends despise me, + +and those I love have turned against me. + +My skin and flesh cling to my bones; + +I have escaped by the skin of my teeth. + +Have pity on me, my friends, have pity, +for the hand of God has struck me. +Why do you persecute me as God does? + +Will you never get enough of my flesh? + +21 + +22 + +23 + +24 + +I wish that my words were recorded + +and inscribed in a book, + +25 + +by an iron stylus on lead, + + a +or chiseled in stone forever. + +But I know that my Redeemer + +b + + lives, + +26 + +and in the end He will stand upon the + +earth. + + c + +If indeed you would exalt yourselves above + +27 + +Even after my skin has been destroyed, + +6 + +me + +and use my disgrace against me, +then understand that it is God who has + +wronged me + +yet in my flesh + + I will see God. + +I will see Him for myself; + d + +my eyes will behold Him, and not as a + +stranger. + +a 25 + +Vindicator +and drawn His net around me. + +on my grave + +b 25 + +c 26 + +without my flesh + +How my heart yearns + +my kidneys yearn + + within me! + +d 27 + +Or + +Or + +Or + +Hebrew + + 28 + +20 + +Job 21:10 | 481 + +If you say, ‘Let us persecute him, +a + +29 + +since the root of the matter lies +’ + +with him, + +then you should fear the sword yourselves, +because wrath brings punishment by the + +sword, + +so that you may know there is a +Zophar: Destruction Awaits the Wicked + +judgment.” + +20 + +2 +Then Zophar the Naamathite replied: + +“So my anxious thoughts compel me to +answer, + +3 + +because of the turmoil within me. +I have heard a rebuke that insults me, + +and my understanding prompts a reply. + +4 + +Do you not know that from antiquity, +since man was placed on the earth, +the triumph of the wicked has been brief + +5 + +6 + +and the joy of the godless momentary? +Though his arrogance reaches the heavens, + +7 + +and his head touches the clouds, +he will perish forever, like his own dung; + +8 + +those who had seen him will ask, ‘Where + +is he?’ + +He will fly away like a dream, never to be + +found; + +9 + +he will be chased away like a vision in the + +night. + +10 + +The eye that saw him will see him no more, +and his place will no longer behold him. + +11 + +His sons will seek the favor of the poor, + +for his own hands must return his wealth. + +12 + +The youthful vigor that fills his bones +will lie down with him in the dust. + +13 + +Though evil is sweet in his mouth + +and he conceals it under his tongue, + +14 + +15 + +though he cannot bear to let it go +and keeps it in his mouth, +yet in his stomach his food sours + +into the venom of cobras within him. + +16 + +He swallows wealth but vomits it out; +God will force it from his stomach. + +17 + +He will suck the poison of cobras; + +the fangs of a viper will kill him. + +18 + +He will not enjoy the streams, + +the rivers flowing with honey and cream. +He must return the fruit of his labor without + +19 + +consuming it; + +he cannot enjoy the profits of his trading. +For he has oppressed and forsaken the poor; +he has seized houses he did not build. + +a 28 + +21 + +Because his appetite is never satisfied, +he cannot escape with his treasure. + +Nothing is left for him to consume; + +22 + +thus his prosperity will not endure. + +In the midst of his plenty, he will be + +distressed; + +23 + +the full force of misery will come upon + +him. + +When he has filled his stomach, + +God will vent His fury upon him, +raining it down on him as he eats. +Though he flees from an iron weapon, + +24 + +25 + +a bronze-tipped arrow will pierce him. + +b + +It is drawn out of his back, + +26 + +the gleaming point from his liver. +Terrors come over him. + +Total darkness is reserved for his treasures. + +A fire unfanned will consume him +and devour what is left in his tent. +The heavens will expose his iniquity, + +27 + +28 + +and the earth will rise up against him. + +The possessions of his house will be + +29 + +removed, + +flowing away on the day of God’s wrath. +This is the wicked man’s portion from God, +the inheritance God has appointed him.” + +Job: God Will Punish the Wicked + +21 + +2 +Then Job answered: + +3 + +“Listen carefully to my words; +let this be your consolation to me. + +Bear with me while I speak; + +4 + +then, after I have spoken, you may go on + +mocking. + +Is my complaint against a man? + +5 + +Then why should I not be impatient? + +Look at me and be appalled; + +6 + +put your hand over your mouth. +When I remember, terror takes hold, +and my body trembles in horror. + +7 + +Why do the wicked live on, + +8 + +growing old and increasing in power? +Their descendants are established around + +9 + +them, + +and their offspring before their eyes. + +Their homes are safe from fear; + +10 + +no rod of punishment from God is upon + +them. + +Their bulls breed without fail; + +their cows bear calves and do not +b 25 + +from his gall + +with me +miscarry. + +Many Hebrew manuscripts, LXX, and Vulgate; most Hebrew manuscripts + +Literally + + 482 | Job 21:11 + +11 + +29 + +12 + +They send forth their little ones like a flock; + +Have you never asked those who travel + +their children skip about, + +singing to the tambourine and lyre + +30 + +the roads? + +Do you not accept their reports? + +13 + +and making merry at the sound of the + +Indeed, the evil man is spared from the day of + +flute. + +a + +14 + +15 + +They spend their days in prosperity +and go down to Sheol in peace. +Yet they say to God: ‘Leave us alone! + +For we have no desire to know Your ways. + +Who is the Almighty, that we should + +serve Him, + +16 + +and what would we gain if we pray + +to Him?’ + +Still, their prosperity is not in their own + +hands, + +31 + +calamity, + +delivered from the day of wrath. +Who denounces his behavior to his face? + +32 + +Who repays him for what he has done? + +He is carried to the grave, + +33 + +and watch is kept over his tomb. +The clods of the valley are sweet to him; + +34 + +everyone follows behind him, +and those before him are without number. + +So how can you comfort me with empty + +so I stay far from the counsel of the + +words? + +17 + +wicked. + +How often is the lamp of the wicked put out? + +Does disaster come upon them? +Does God, in His anger, apportion + +18 + +destruction? + +For your answers remain full of + +Eliphaz: Can a Man Be of Use to God? + +falsehood.” + +22 + +2 +Then Eliphaz the Temanite replied: + +19 + +Are they like straw before the wind, +like chaff swept away by a storm? + +It is said that God lays up one’s punishment + +3 + +“Can a man be of use to God? +Can even a wise man benefit Him? +Does it delight the Almighty that you are + +for his children. + +20 + +Let God repay the man himself, so he will + +4 + +righteous? + +Does He profit if your ways are blameless? + +know it. + +Let his eyes see his own destruction; + +21 + +let him drink for himself the wrath of the + +Almighty. + +For what does he care about his household + +after him, + +when the number of his months has + +run out? + +22 + +23 + +Can anyone teach knowledge to God, +since He judges those on high? + +24 + +One man dies full of vigor, +b + +completely secure and at ease. + +25 + +His body is well nourished, + +and his bones are rich with marrow. +Yet another man dies in the bitterness of his + +26 + +soul, + +having never tasted prosperity. +But together they lie down in the dust, + +and worms cover them both. + +27 + +5 + +Is it for your reverence that He rebukes you +and enters into judgment against you? + +Is not your wickedness great? + +6 + +Are not your iniquities endless? + +For you needlessly demanded security from + +7 + +your brothers + +and deprived the naked of their clothing. + +You gave no water to the weary + +8 + +and withheld food from the famished, +while the land belonged to a mighty man, + +9 + +and a man of honor lived on it. +You sent widows away empty-handed, + +10 + +and the strength of the fatherless was + +crushed. + +11 + +Therefore snares surround you, + +and sudden peril terrifies you; + +it is so dark you cannot see, + +12 + +and a flood of water covers you. + +Behold, I know your thoughts full well, + +28 + +the schemes by which you would wrong + +me. + +For you say, ‘Where now is the nobleman’s + +house, + +a 13 + +and where are the tents in which the +in an instant + +His pails are full of milk + +b 24 + +wicked dwell?’ + +Is not God as high as the heavens? + +13 + +Look at the highest stars, how lofty + +they are! + +14 + +Yet you say: ‘What does God know? + +Does He judge through thick darkness? +Thick clouds veil Him so He does not see us + +c + +c 14 + +heaven’s horizon +as He traverses the vault of heaven. + +the circle of the sky + +’ + +Or + +Literally + +Or + + or + + 15 + +7 + +Job 24:8 | 483 + +16 + +Will you stay on the ancient path +that wicked men have trod? + +They were snatched away before their time, +and their foundations were swept away + +17 + +by a flood. + +18 + +They said to God, ‘Depart from us. + +What can the Almighty do to us?’ +But it was He who filled their houses with + +good things; + +19 + +so I stay far from the counsel of the + +wicked. + +The righteous see it and are glad; +the innocent mock them: +‘Surely our foes are destroyed, + +20 + +21 + +and fire has consumed their excess.’ + +22 + +Reconcile now and be at peace with Him; + +thereby good will come to you. +Receive instruction from His mouth, + +23 + +and lay up His words in your heart. +If you return to the Almighty, you will be + +24 + +restored. + +If you remove injustice from your tents + +and consign your gold to the dust + +25 + +and the gold of Ophir to the stones of the + +ravines, + +26 + +then the Almighty will be your gold +and the finest silver for you. + +27 + +Surely then you will delight in the Almighty + +and lift up your face to God. + +28 + +You will pray to Him, and He will hear you, + +and you will fulfill your vows. +Your decisions will be carried out, + +29 + +and light will shine on your ways. + +When men are brought low and you say, ‘Lift + +30 + +them up!’ + +then He will save the lowly. + +He will deliver even one who is not innocent, +rescuing him through the cleanness of + +Job Longs for God + +your hands.” + +23 + +2 +Then Job answered: + +3 + +“Even today my complaint is bitter. +His hand is heavy despite my groaning. + +If only I knew where to find Him, +so that I could go to His seat. +I would plead my case before Him + +4 + +5 + +6 + +and fill my mouth with arguments. +I would learn how He would answer, +and consider what He would say. +Would He contend with me in His great + +power? + +Then an upright man could reason with Him, +and I would be delivered forever from my + +8 + +Judge. + +If I go east, He is not there, + +9 + +and if I go west, I cannot find Him. +When He is at work in the north, I cannot + +behold Him; + +10 + +when He turns to the south, I cannot see + +Him. + +Yet He knows the way I have taken; + +11 + +when He has tested me, I will come forth + +as gold. + +12 + +My feet have followed in His tracks; + +I have kept His way without turning aside. +I have not departed from the command of His + +lips; + +13 + +I have treasured the words of His mouth +more than my daily bread. + +But He is unchangeable, and who can oppose + +14 + +Him? + +He does what He desires. + +15 + +For He carries out His decree against me, + +and He has many such plans. + +16 + +Therefore I am terrified in His presence; + +when I consider this, I fear Him. + +17 + +God has made my heart faint; + +the Almighty has terrified me. +Yet I am not silenced by the darkness, + +Job: Judgment for the Wicked + +by the thick darkness that covers my face. + +24 + +“Why does the Almighty not reserve + +times for judgment? + +2 + +Why may those who know Him never see + +His days? + +3 + +Men move boundary stones; +they pasture stolen flocks. + +They drive away the donkey of the fatherless + +4 + +and take the widow’s ox in pledge. + +They push the needy off the road + +5 + +and force all the poor of the land into + +hiding. + +Indeed, like wild donkeys in the desert, + +6 + +the poor go to work foraging for food; +the wasteland is food for their children. + +They gather fodder in the fields + +7 + +and glean the vineyards of the wicked. +Without clothing, they spend the night naked; +they have no covering against the cold. + +8 + +Drenched by mountain rains, + +they huddle against the rocks for want + +No, He would certainly take note of me. + +of shelter. + + 484 | Job 24:9 + +9 + +The fatherless infant is snatched from the + +they are brought low and gathered up like all + +breast; + +25 + +others; + +10 + +the nursing child of the poor is seized for a + +debt. + +Without clothing, they wander about naked. + +11 + +They carry the sheaves, but still go + +hungry. + +They crush olives within their walls; + +12 + +they tread the winepresses, but go thirsty. + +From the city, men groan, + +13 + +and the souls of the wounded cry out, +yet God charges no one with wrongdoing. + +3 + +they are cut off like heads of grain. +If this is not so, then who can prove me + +a liar + +Bildad: Man Cannot Be Righteous + +and reduce my words to nothing?” + +25 + +2 +Then Bildad the Shuhite replied: + +“Dominion and awe belong to God; +He establishes harmony in the heights of + +heaven. + +Then there are those who rebel against the + +light, + +14 + +not knowing its ways or staying on its + +paths. + +When daylight is gone, the murderer rises + +15 + +to kill the poor and needy; +in the night he is like a thief. + +The eye of the adulterer watches for twilight. +Thinking, ‘No eye will see me,’ he covers + +16 + +his face. + +In the dark they dig through houses; +by day they shut themselves in, +never to experience the light. + +17 + +For to them, deep darkness is their morning; +surely they are friends with the terrors of + +18 + +darkness! + +They are but foam on the surface of the + +water; + +their portion of the land is cursed, +so that no one turns toward their + +19 + +vineyards. + +As drought and heat consume the melting + +20 + +snow, + +so Sheol steals those who have sinned. + +The womb forgets them; + +the worm feeds on them; +they are remembered no more. + +21 + +So injustice is broken like a tree. +They prey on the barren and childless, +and show no kindness to the widow. + +22 + +Can His troops be numbered? + +4 + +On whom does His light not rise? +How then can a man be just before God? +How can one born of woman be pure? + +5 + +If even the moon does not shine, + +6 + +and the stars are not pure in His sight, +how much less man, who is but a maggot, +Job: Who Can Understand God’s Majesty? + +and the son of man, who is but a worm!” + +26 + +2 +Then Job answered: + +3 + +“How you have helped the powerless + +and saved the arm that is feeble! +How you have counseled the unwise +and provided fully sound insight! +To whom have you uttered these words? +And whose spirit spoke through you? + +4 + +5 + +The dead tremble— + +6 + +those beneath the waters and those who + +dwell in them. +Sheol is naked before God, + + a + +7 + +and Abaddon + + has no covering. + +He stretches out the north over empty space; + +8 + +He hangs the earth upon nothing. +He wraps up the waters in His clouds, + +9 + +yet the clouds do not burst under their + +b + +own weight. + +10 + +He covers the face of the full moon, +spreading over it His cloud. + +He has inscribed a horizon on the face of the + +waters + +Yet by His power, God drags away the + +11 + +at the boundary between light and + +mighty; + +darkness. + +23 + +though rising up, they have no assurance + +of life. + +24 + +He gives them a sense of security, +but His eyes are on their ways. + +They are exalted for a moment, + +12 + +The foundations of heaven quake, + + c + +astounded at His rebuke. + +13 + +By His power He stirred + + the sea; + +by His understanding He shattered Rahab. + +d + +By His breath the skies were cleared; + +a 6 Abaddon + +then they are gone; +Destruction + +b 9 + +of His throne + +c 12 + +stilled + +His hand pierced the fleeing serpent. +d 13 + +nachash + +snake + + means + +. + +Or + +Or + +Heb. + +; translated in most cases as + + 14 + +18 + +Indeed, these are but the fringes of His ways; +how faint is the whisper we hear of Him! + +19 + +The house he built is like a moth’s cocoon, + +like a hut set up by a watchman. + +Job 28:17 | 485 + +For what is the hope of the godless when he + +6 + +Who then can understand + +Job Affirms His Integrity + +the thunder of His power?” + +27 + +2 +Job continued his discourse: + +“As surely as God lives, who has +deprived me of justice— + +3 + +the Almighty, who has embittered my + +soul— + +as long as my breath is still within me + +4 + +and the breath of God remains in my + +nostrils, + +my lips will not speak wickedness, + +5 + +and my tongue will not utter deceit. + +I will never say that you are right; + +6 + +I will maintain my integrity until I die. +I will cling to my righteousness and never let + +go. + +As long as I live, my conscience will not + +The Wicked Man’s Portion +accuse me. + +7 + +May my enemy be like the wicked + +8 + +and my opponent like the unjust. + +9 + +is cut off, + +when God takes away his life? + +Will God hear his cry + +10 + +when distress comes upon him? + +11 + +Will he delight in the Almighty? + +Will he call upon God at all times? +I will instruct you in the power of God. +I will not conceal the ways of the + +12 + +Almighty. + +13 + +Surely all of you have seen it for yourselves. + +Why then do you keep up this empty talk? + +This is the wicked man’s portion from God— +the heritage the ruthless receive from the + +14 + +Almighty. + +Though his sons are many, they are destined + +for the sword; + +15 + +and his offspring will never have enough + +food. + +16 + +His survivors will be buried by the plague, + +and their widows will not weep for them. + +17 + +Though he heaps up silver like dust +and piles up a wardrobe like clay, +what he lays up, the righteous will wear, +and his silver will be divided by the + +a 11 + +innocent. +Hebrew; LXX and Vulgate + +He searches + +20 + +He lies down wealthy, but will do so no more; + +when he opens his eyes, all is gone. + +21 + +Terrors overtake him like a flood; + +a tempest sweeps him away in the night. + +The east wind carries him away, and he + +22 + +is gone; + +it sweeps him out of his place. + +23 + +It hurls itself against him without mercy +as he flees headlong from its power. + +It claps its hands at him + +Where Can Wisdom Be Found? + +and hisses him out of his place. + +28 + +2 + +“Surely there is a mine for silver +and a place where gold is refined. + +Iron is taken from the earth, + +3 + +and copper is smelted from ore. + +Man puts an end to the darkness; + +4 + +he probes the farthest recesses +for ore in deepest darkness. + +Far from human habitation he cuts a shaft +in places forgotten by the foot of man. +Far from men he dangles and sways. + +5 + +Food may come from the earth, + +but from below it is transformed as + +by fire. + +Its rocks are the source of sapphires, + +7 + +containing flecks of gold. +No bird of prey knows that path; +no falcon’s eye has seen it. + +8 + +9 + +Proud beasts have never trodden it; +no lion has ever prowled over it. + +The miner strikes the flint; + +10 + +he overturns mountains at their base. + +11 + +He hews out channels in the rocks, + + a + +and his eyes spot every treasure. + +He stops up + + the sources of the streams + +to bring what is hidden to light. + +12 + +13 + +But where can wisdom be found, + +and where does understanding dwell? + +14 + +No man can know its value, + +nor is it found in the land of the living. + +15 + +The ocean depths say, ‘It is not in me,’ + +while the sea declares, ‘It is not with me.’ + +16 + +It cannot be bought with gold, + +nor can its price be weighed out in silver. + +17 + +It cannot be valued in the gold of Ophir, + +in precious onyx or sapphire. + +Neither gold nor crystal can compare to it, + +nor jewels of fine gold be exchanged for it. + + 486 | Job 28:18 + +18 + +11 + +19 + +20 + +Coral and quartz are unworthy of mention; +the price of wisdom is beyond rubies. + cannot compare to it, + +Topaz from Cush + + a + +nor can it be valued in pure gold. + +21 + +From where, then, does wisdom come, + +and where does understanding dwell? + +It is hidden from the eyes of every living + +22 + +thing + b + +and concealed from the birds of the air. + +23 + +Abaddon + + and Death say, + +‘We have heard a rumor about it.’ + +24 + +But God understands its way, +and He knows its place. + +25 + +For He looks to the ends of the earth + +and sees everything under the heavens. + +26 + +When God fixed the weight of the wind + +and measured out the waters, + +27 + +when He set a limit for the rain + +and a path for the thunderbolt, + +28 + +then He looked at wisdom and appraised it; +He established it and searched it out. + +And He said to man, ‘Behold, + +the fear of the Lord, that is wisdom, +and to turn away from evil is + +Job’s Former Blessings +understanding.’ + +” + +29 + +2 +And Job continued his discourse: + +3 + +“How I long for the months gone by, +for the days when God watched over me, + +when His lamp shone above my head, + +4 + +and by His light I walked through the + +c + +darkness, +when I was in my prime, + +5 + +when the friendship of God rested on my + +tent, + +6 + +when the Almighty was still with me +and my children were around me, +when my steps were bathed in cream + +7 + +and the rock poured out for me streams + +of oil! + +When I went out to the city gate + +8 + +and took my seat in the public square, + +9 + +the young men saw me and withdrew, +and the old men rose to their feet. +The princes refrained from speaking + +10 + +and covered their mouths with their + +hands. + +The voices of the nobles were hushed, + +and their tongues stuck to the roofs of + +12 + +For those who heard me called me blessed, +and those who saw me commended me, + +13 + +because I rescued the poor who cried out +and the fatherless who had no helper. + +The dying man blessed me, + +14 + +and I made the widow’s heart sing + +for joy. + +15 + +I put on righteousness, and it clothed me; +justice was my robe and my turban. + +16 + +17 + +I served as eyes to the blind +and as feet to the lame. +I was a father to the needy, + +and I took up the case of the stranger. + +18 + +I shattered the fangs of the unjust + +and snatched the prey from his teeth. + +19 + +So I thought: ‘I will die in my nest + +and multiply my days as the sand. +My roots will spread out to the waters, +and the dew will rest nightly on my + +20 + +branches. + +My glory is ever new within me, + +and my bow is renewed in my hand.’ + +21 + +22 + +23 + +Men listened to me with expectation, +waiting silently for my counsel. +After my words, they spoke no more; + +my speech settled on them like dew. + +They waited for me as for rain + +24 + +and drank in my words like spring + +showers. + +25 + +If I smiled at them, they did not believe it; + +the light of my countenance was precious. + +I chose their course and presided as chief. +So I dwelt as a king among his troops, +as a comforter of the mourners. + +Job’s Honor Turned to Contempt + +30 + +“But now they mock me, +men younger than I am, +whose fathers I would have refused +2 +to put with my sheep dogs. + +What use to me was the strength of their + +3 + +hands, + +since their vigor had left them? + +4 + +Gaunt from poverty and hunger, +they gnawed the dry land, +and the desolate wasteland by night. +They plucked mallow among the shrubs, + +d + +5 + +and the roots of the broom tree were their + +food. + +They were banished from among men, + +shouted at like thieves, + +in the time of my harvest + +c 4 + +d 4 + +their fuel + +a 19 + +their mouths. + +b 22 Abaddon + +Destruction + + That is, the upper Nile region + + means + +. + +Heb. + +Or + + 6 + +24 + +so that they lived on the slopes of the wadis, + +Yet no one stretches out his hand against + +7 + +among the rocks and in holes in the + +25 + +a ruined man + +Job 31:12 | 487 + +ground. + +They cried out among the shrubs + +8 + +and huddled beneath the nettles. + +9 + +A senseless and nameless brood, +they were driven off the land. + +And now they mock me in song; + +10 + +I have become a byword among them. + +They abhor me and keep far from me; + +11 + +they do not hesitate to spit in my face. + +Because God has unstrung my bow and + + a + +afflicted me, + +12 + +they have cast off restraint + + in my + +presence. + +The rabble arises at my right; +they lay snares for my feet +and build siege ramps against me. + +13 + +They tear up my path; + +b + +14 + +they profit from my destruction, +with no one to restrain them. + +Job’s Prosperity Becomes Calamity + +They advance as through a wide breach; +through the ruins they keep rolling in. + +15 + +Terrors are turned loose against me; + +they drive away my dignity as by the + +wind, + +when he cries for help in his distress. + +Have I not wept for those in trouble? + +26 + +Has my soul not grieved for the needy? + +But when I hoped for good, evil came; + +27 + +when I looked for light, darkness fell. + +28 + +I am churning within and cannot rest; +days of affliction confront me. + +I go about blackened, but not by the sun. +I stand up in the assembly and cry for + +e + +29 + +help. + +f + +I have become a brother of jackals, + +30 + +a companion of ostriches. +My skin grows black and peels, + +31 + +and my bones burn with fever. + +My harp is tuned to mourning + +Job’s Final Appeal + +and my flute to the sound of weeping. + +31 + +2 + +“I have made a covenant with my eyes. +How then could I gaze with desire at a + +virgin? + +For what is the allotment of God from above, +or the heritage from the Almighty on + +3 + +high? + +Does not disaster come to the unjust + +4 + +and calamity to the workers of iniquity? + +16 + +and my prosperity has passed like + +5 + +a cloud. + +Does He not see my ways + +and count my every step? + +And now my soul is poured out within me; + +17 + +If I have walked in falsehood + +6 + +days of affliction grip me. + +Night pierces my bones, + +18 + + c + +and my gnawing pains never rest. +With great force He grasps my garment; + +19 + +He seizes me by the collar of my tunic. + +He throws me into the mud, + +20 + +and I have become like dust and ashes. + +9 + +I cry out to You for help, but You do not + +21 + +answer; + +7 + +8 + +or my foot has rushed to deceit, +let God weigh me with honest scales, +that He may know my integrity. +If my steps have turned from the path, +if my heart has followed my eyes, +or if impurity has stuck to my hands, +then may another eat what I have sown, +and may my crops be uprooted. + +If my heart has been enticed by my + +when I stand up, You merely look at me. + +10 + +neighbor’s wife, + +You have ruthlessly turned on me; + +22 + +You oppose me with Your strong hand. + d + +You snatch me up into the wind + +23 + +and drive me before it; +You toss me about + + in the storm. + +or I have lurked at his door, + +then may my own wife grind grain for + +11 + +another, + +and may other men sleep with her. + +For that would be a heinous crime, + +12 + + g + +Yes, I know that You will bring me down to + +an iniquity to be judged. + +death, + +the bridle + +a 11 +garment is disfigured +of daughters of an owl + +to the place appointed for all the living. +e 29 +Destruction +Or + +d 22 +Or +g 12 Abaddon + +with no one to assist them + +You dissolve me + +Hebrew + +b 13 + +Or + +c 18 +serpents + + means + +. + +For it is a fire that burns down to Abaddon; +my +it would root out my entire harvest. +of daughters of an ostrich +dragons +LXX; Hebrew + or + +He becomes like a garment to me +f 29 + +Literally + + or + + or + + 488 | Job 31:13 + +13 + +33 + + c + +If I have rejected the cause of my manservant + +if I have covered my transgressions like + +14 + +or maidservant + +34 + +Adam + +when they made a complaint against me, + +what will I do when God rises to judge? + +15 + +by hiding my guilt in my heart, +because I greatly feared the crowds + +How will I answer when called to account? + +and the contempt of the clans terrified me, + +Did not He who made me in the womb also + +make them? + +Did not the same One form us in the + +womb? + +16 + +17 + +If I have denied the desires of the poor +or allowed the widow’s eyes to fail, + +if I have eaten my morsel alone, + +18 + +not sharing it with the fatherless— + +though from my youth I reared him as would + +a father, + +19 + +and from my mother’s womb I guided the + +widow— + +if I have seen one perish for lack of clothing, + + a + +20 + +or a needy man without a cloak, + +if his heart has not blessed me + +21 + +for warming him with the fleece of my + +sheep, + +if I have lifted up my hand against the + +fatherless + +22 + +because I saw that I had support in the + +gate, + +then may my arm fall from my shoulder + +23 + +and be torn from its socket. +For calamity from God terrifies me, + +24 + +and His splendor I cannot overpower. + +If I have put my trust in gold + +25 + +or called pure gold my security, +if I have rejoiced in my great wealth + + b +because my hand had gained so much, + +26 + +if I have beheld the sun + +27 + + in its radiance + +or the moon moving in splendor, +so that my heart was secretly enticed + +28 + +and my hand threw a kiss from my mouth, + +29 + +this would also be an iniquity to be judged, +for I would have denied God on high. + +If I have rejoiced in my enemy’s ruin, +or exulted when evil befell him— +I have not allowed my mouth to sin + +30 + +31 + +by asking for his life with a curse— + +if the men of my house have not said, + +32 + +‘Who is there who has not had his fill?’— + +but no stranger had to lodge on the street, + +for my door has been open to the +if his loins have not blessed me + +traveler— + +b 26 + +the Spirit + +a 20 +d 8 + +so that I kept silent + +35 + +and would not go outside— + +(Oh, that I had one to hear me! + +Here is my signature. +Let the Almighty answer me; + +36 + +let my accuser compose an indictment. + +Surely I would carry it on my shoulder + +37 + +and wear it like a crown. + +I would give account of all my steps; + +I would approach Him like a prince.)— + +38 + +if my land cries out against me + +39 + +and its furrows weep together, +if I have devoured its produce without + +40 + +payment + +or broken the spirit of its tenants, +then let briers grow instead of wheat +and stinkweed instead of barley.” + +Elihu Rebukes Job’s Friends +Thus conclude the words of Job. + +32 + +2 +eyes. + +So these three men stopped answering +Job, because he was righteous in his own + +3 + +This kindled the anger of Elihu son of Barachel +the Buzite, of the family of Ram. He burned with +anger against Job for justifying himself rather +and he burned with anger against +than God, +Job’s three friends because they had failed to re- +4 +fute Job, and yet had condemned him. + +5 + +6 + +Now Elihu had waited to speak to Job because +But when he saw +the others were older than he. +that the three men had no further reply, his anger +So Elihu son of Barachel the Buzite +was kindled. +declared: + +“I am young in years, +while you are old; + +that is why I was timid and afraid +7 + +to tell you what I know. +I thought that age should speak, + + d + +8 + +and many years should teach wisdom. + +But there is a spirit + + in a man, +the breath of the Almighty, +that gives him understanding. + +like men + +c 33 + +the light + +Hebrew + +Or + +; similarly in verse 18 + +Hebrew + +Or + + 9 + + a + +8 + +Job 33:27 | 489 + +10 + +It is not only the old + + who are wise, + +or the elderly who understand justice. + +11 + +Therefore I say, ‘Listen to me; + +I too will declare what I know.’ + +Indeed, I waited while you spoke; +I listened to your reasoning; + +12 + +as you searched for words, +I paid you full attention. +But no one proved Job wrong; + +13 + +not one of you rebutted his arguments. +So do not claim, ‘We have found wisdom; + +14 + +9 + +Surely you have spoken in my hearing, +and I have heard these very words: + +‘I am pure, without transgression; + +10 + +I am clean, with no iniquity in me. + +11 + +Yet God finds occasions against me; +He counts me as His enemy. + +12 + +He puts my feet in the stocks; + +He watches over all my paths.’ + +Behold, you are not right in this matter. + +13 + +I will answer you, for God is greater than + +man. + + b + +let God, not man, refute him.’ + +14 + +Why do you complain to Him + +But Job has not directed his words against + +me, + +that He answers nothing a man asks? +For God speaks in one way and in another, + +15 + +15 + +and I will not answer him with your + +yet no one notices. + +arguments. + +In a dream, + +Job’s friends are dismayed, with no more to + +16 + +say; + +words have escaped them. + +17 + +Must I wait, now that they are silent, + +now that they stand and no longer reply? + +18 + +I too will answer; + +yes, I will declare what I know. + +19 + +For I am full of words, + +and my spirit within me compels me. +Behold, my belly is like unvented wine; + +20 + +in a vision in the night, + +when deep sleep falls upon men + +16 + +as they slumber on their beds, + +17 + +He opens their ears + +and terrifies them with warnings + +to turn a man from wrongdoing +and keep him from pride, +to preserve his soul from the Pit + +18 + +19 + +and his life from perishing by the sword. + +A man is also chastened on his bed + +it is about to burst like a new wineskin. + +20 + +with pain and constant distress in his + +21 + +I must speak and find relief; + +bones, + +I must open my lips and respond. + +so that he detests his bread, + +21 + +22 + +I will be partial to no one, + +nor will I flatter any man. +For I do not know how to flatter, + +and his soul loathes his favorite food. + +His flesh wastes away from sight, + +22 + +and his hidden bones protrude. + +or my Maker would remove me in an + +Elihu Rebukes Job + +instant. + +33 + +2 + +“But now, O Job, hear my speech, +and listen to all my words. + +Behold, I will open my mouth; + +3 + +my address is on the tip of my tongue. + +My words are from an upright heart, + +4 + +and my lips speak sincerely what I know. + +The Spirit of God has made me, + +5 + +and the breath of the Almighty gives me + +life. + +Refute me if you can; + +6 + +prepare your case and confront me. + +I am just like you before God; + +7 + +I was also formed from clay. + +He draws near to the Pit, + +23 + +and his life to the messengers of death. + +Yet if there is a messenger on his side, + +24 + +one mediator in a thousand, +to tell a man what is right for him, +to be gracious to him and say, + +‘Spare him from going down to the Pit; + +25 + +I have found his ransom,’ + +26 + +then his flesh is refreshed like a child’s; +he returns to the days of his youth. + +He prays to God and finds favor; + +he sees God’s face and shouts for joy, + c + +and God restores His righteousness + +27 + +to that man. +Then he sings before + + men + +with these words: + +‘I have sinned and perverted what was right; + +yet I did not get what I deserved. +Then he looks upon + +c 27 + +Surely no fear of me should terrify you; +nor will my hand be heavy upon you. +many + +great + +b 13 + +a 9 + +that He answers for none of His actions + +Or + + or + +Or + +Or + + 490 | Job 33:28 + +28 + +16 + +He redeemed my soul from going down to the + +17 + +If you have understanding, hear this; + +29 + +Pit, + +and I will live to see the light.’ + +30 + +Behold, all these things God does to a man, + +two or even three times, + +to bring back his soul from the Pit, + +31 + +that he may be enlightened with the light + +of life. + +32 + +Pay attention, Job, and listen to me; + +be silent, and I will speak. + +33 + +But if you have something to say, answer me; +speak up, for I would like to vindicate you. + +But if not, then listen to me; +Elihu Confirms God’s Justice + +be quiet, and I will teach you wisdom.” + +34 + +2 +Then Elihu continued: + +3 + +“Hear my words, O wise men; +give ear to me, O men of learning. + +For the ear tests words + +4 + +as the mouth tastes food. + +5 + +6 + +Let us choose for ourselves what is right; +let us learn together what is good. +For Job has declared, ‘I am righteous, +yet God has deprived me of justice. + +Would I lie about my case? +My wound is incurable, +though I am without transgression.’ + +7 + +What man is like Job, + +8 + +who drinks up derision like water? + +9 + +He keeps company with evildoers +and walks with wicked men. + +For he has said, ‘It profits a man nothing + +10 + +that he should delight in God.’ + +Therefore listen to me, + +O men of understanding. +Far be it from God to do wrong, + +11 + +and from the Almighty to act unjustly. +For according to a man’s deeds He repays + +him; + +12 + +according to a man’s ways He brings + +consequences. + +Indeed, it is true that God does not act + +13 + +wickedly, + +and the Almighty does not pervert justice. + +Who gave Him charge over the earth? +Who appointed Him over the whole + +14 + +world? + +15 + +If He were to set His heart to it + +and withdraw His Spirit and breath, + +all flesh would perish together + +and mankind would return to the dust. + +listen to my words. + +Could one who hates justice govern? + +18 + +Will you condemn the just and mighty + +One, + +19 + +who says to kings, ‘You are worthless!’ +and to nobles, ‘You are wicked,’ + +who is not partial to princes + +20 + +and does not favor rich over poor? +For they are all the work of His hands. + +They die in an instant, + +in the middle of the night. + +The people convulse and pass away; + +21 + +the mighty are removed without human + +hand. + +22 + +For His eyes are on the ways of a man, + +and He sees his every step. + +23 + +There is no darkness or deep shadow + +where the workers of iniquity can hide. + +24 + +25 + +For God need not examine a man further +or have him approach for judgment. +He shatters the mighty without inquiry +and sets up others in their place. +Therefore, He recognizes their deeds; + +26 + +He overthrows them in the night and they + +are crushed. + +27 + +He strikes them for their wickedness + +in full view, + +28 + +because they turned aside from Him + +and had no regard for any of His ways. + +They caused the cry of the poor to come + +29 + +before Him, + +and He heard the outcry of the afflicted. + +But when He remains silent, who can + +condemn Him? + +30 + +When He hides His face, who can see Him? + +Yet He watches over both man and nation, + +31 + +that godless men should not rule +or lay snares for the people. + +Suppose someone says to God, + +32 + +‘I have endured my punishment; I will + +offend no more. +Teach me what I cannot see; + +33 + +if I have done wrong, I will not do it again.’ + +Should God repay you on your own terms + +when you have disavowed Him? + +34 + +You must choose, not I; + +so tell me what you know. + +35 + +Men of understanding will declare to me, + +and the wise men who hear me will say: + +‘Job speaks without knowledge; + +his words lack insight.’ + + 36 + +37 + +If only Job were tried to the utmost +for answering like a wicked man. + +For he adds rebellion to his sin; +he claps his hands among us +and multiplies his words against God.” + +Elihu Recalls God’s Justice + +35 + +2 +And Elihu went on to say: + +3 + +“Do you think this is just? + +You say, ‘I am more righteous than God.’ + +For you ask, ‘What does it profit me, + +4 + +and what benefit do I gain apart from + +sin?’ +I will reply to you + +5 + +and to your friends as well. + +Look to the heavens and see; + +6 + +gaze at the clouds high above you. +If you sin, what do you accomplish against + +Him? + +7 + +If you multiply your transgressions, what + +do you do to Him? + +If you are righteous, what do you give Him, + +8 + +or what does He receive from your hand? + +Your wickedness affects only a man like + +yourself, + +and your righteousness only a son of + +man. + +9 + +Men cry out under great oppression; + +10 + +they plead for relief from the arm of the + +mighty. + +But no one asks, ‘Where is God my Maker, + +11 + +who gives us songs in the night, + +earth + +12 + +and makes us wiser than the birds of the + +air?’ + +There they cry out, but He does not + +13 + +answer, + +because of the pride of evil men. + +Surely God does not listen to empty pleas, + +14 + +and the Almighty does not take note of it. +How much less, then, when you say that you + +do not see Him, + +who teaches us more than the beasts of the + +13 + +Job 36:18 | 491 + +Elihu Describes God’s Power + +36 + +2 +And Elihu continued: + +“Bear with me a little longer, and I will +show you + +3 + +that there is more to be said on God’s + +behalf. + + a + +I get my knowledge from afar, + +4 + +and I will ascribe justice to my Maker. +For truly my words are free of falsehood; +one perfect in knowledge is with you. + +5 + +Indeed, God is mighty, but He despises no + +6 + +one; + +He is mighty in strength of understanding. + +He does not keep the wicked alive, + +7 + +but He grants justice to the afflicted. +He does not take His eyes off the righteous, +but He enthrones them with kings +and exalts them forever. + +8 + +9 + +And if men are bound with chains, +caught in cords of affliction, +then He tells them their deeds + +10 + +and how arrogantly they have + +transgressed. + +He opens their ears to correction + +11 + +and commands that they turn from + +iniquity. + +If they obey and serve Him, + +12 + +then they end their days in prosperity +and their years in happiness. + + b + +But if they do not obey, + +then they perish by the sword +and die without knowledge. + +The godless in heart harbor resentment; + +14 + +even when He binds them, they do not cry + +for help. +They die in their youth, + +15 + + c + +among the male shrine prostitutes. +God rescues the afflicted by their affliction +and opens their ears in oppression. + +16 + +Indeed, He drew you from the jaws of + +distress + +to a spacious and broad place, +to a table full of richness. + +18 + +the wicked; + +judgment and justice have seized you. +Be careful that no one lures you with riches; +do not let a large bribe lead you astray. +in their affliction + +c 15 + +15 + +that your case is before Him and you must + +17 + +wait for Him, + +and further, that in His anger He has not + +But now you are laden with the judgment due + +16 + +punished + +or taken much notice of folly! + +So Job opens his mouth in vain + +a 2 + +and multiplies words without knowledge.” +‘I am righteous before God.’ + +they will cross the river of death + + b 12 + +Or + +Or + +Or + + 492 | Job 36:19 + +19 + + a + +6 + +Can your wealth + +20 + + or all your mighty effort + +keep you from distress? + +Do not long for the night, + +21 + +For He says to the snow, ‘Fall on the earth,’ +and to the gentle rain, ‘Pour out a mighty + +7 + +downpour.’ + +when people vanish from their homes. + +He seals up the hand of every man, + +8 + +Be careful not to turn to iniquity, + +22 + +for this you have preferred to affliction. + +Behold, God is exalted in His power. + +23 + +Who is a teacher like Him? + +Who has appointed His way for Him, + +24 + +or told Him, ‘You have done wrong’? + +Remember to magnify His work, + +25 + +which men have praised in song. + +All mankind has seen it; + +26 + +men behold it from afar. + +Indeed, God is great—beyond our + +27 + +knowledge; + +the number of His years is unsearchable. + +For He draws up drops of water + +28 + +which distill the rain from the mist, + +which the clouds pour out + +29 + +and shower abundantly on mankind. +Furthermore, who can understand how the + +30 + +clouds spread out, + +how the thunder roars from His pavilion? + +See how He scatters His lightning around + +31 + +Him + + b + +For by these He judges + +and covers the depths of the sea. + the nations +and provides food in abundance. + +32 + +He fills His hands with lightning + +33 + +and commands it to strike its mark. + +The thunder declares His presence; + +Elihu Proclaims God’s Majesty + +even the cattle regard the rising storm. + +37 + +2 + +“At this my heart also pounds +and leaps from its place. + +Listen closely to the thunder of His voice +and the rumbling that comes from His + +3 + +mouth. + +He unleashes His lightning beneath the whole + +4 + +sky + +so that all men may know His work. + +9 + +The wild animals enter their lairs; +they settle down in their dens. +The tempest comes from its chamber, + +10 + +and the cold from the driving north winds. + +11 + +By the breath of God the ice is formed + +and the watery expanses are frozen. + +12 + +He loads the clouds with moisture; + +He scatters His lightning through them. + +They swirl about, + +whirling at His direction, + +13 + +accomplishing all that He commands +over the face of all the earth. + +Whether for punishment or for His land, +He accomplishes this in His loving + +14 + +devotion. + +Listen to this, O Job; + +15 + +stand still and consider the wonders of + +God. + +16 + +Do you know how God dispatches the clouds + +or makes the lightning flash? + +Do you understand how the clouds float, + +17 + +those wonders of Him who is perfect in + +knowledge? +You whose clothes get hot + +18 + +when the land lies hushed under the south + +wind, + +can you, like Him, spread out the skies, +as strong as a mirror of bronze? + +19 + +Teach us what we should say to Him; + +20 + +we cannot draw up our case because of + +our darkness. + + c + +21 + +Should He be told that I want to speak? +Would a man ask to be swallowed up + +? + +22 + +Now no one can gaze at the sun +when it is bright in the skies +after the wind has swept them clean. + +Out of the north He comes in golden + +and sends it to the ends of the earth. + +23 + +splendor; + +Then there comes a roaring sound; + +awesome majesty surrounds Him. + +He thunders with His majestic voice. + +The Almighty is beyond our reach; + +5 + +He does not restrain the lightning +when His voice resounds. + +He is exalted in power! + +24 + +In His justice and great righteousness + +God thunders wondrously with His voice; + +He does great things we cannot + +He does not oppress. +Therefore, men fear Him, + +a 19 + +comprehend. + +your cry for help + +b 31 + +governs + +nourishes + +c 20 + +for He is not partial to the wise in heart.” + +speak without being swallowed up + +Or + +Or + + or + +Or + + The LORD Challenges Job + +20 + +Job 38:41 | 493 + +38 + +2 + +Then the LORD answered Job out of the +whirlwind and said: + + a + +“Who is this who obscures My counsel + b + +3 + +by words without knowledge? + like a man; + +Now brace yourself + +c + +4 + +I will question you, and you shall inform + +Me. + +Where were you when I laid the foundations + +5 + +of the earth? + +Tell Me, if you have understanding. +Who fixed its measurements? Surely you + +know! + +21 + +so you can lead it back to its border? + +Do you know the paths to its home? + +22 + +Surely you know, for you were already born! +And the number of your days is great! + +23 + +24 + +Have you entered the storehouses of snow +or observed the storehouses of hail, +which I hold in reserve for times of trouble, + +for the day of war and battle? + +25 + +In which direction is the lightning dispersed, +or the east wind scattered over the earth? + +26 + +Who cuts a channel for the flood + +or clears a path for the thunderbolt, + +27 + +to bring rain on a barren land, + +6 + +Or who stretched a measuring line across + +on a desert where no man lives, + +it? + +d + +28 + +to satisfy the parched wasteland + +7 + +On what were its foundations set, +or who laid its cornerstone, + +and make it sprout with tender grass? + +29 + +Does the rain have a father? + +while the morning stars sang together + +and all the sons of God shouted for joy? + +8 + +Who has begotten the drops of dew? +From whose womb does the ice emerge? + +30 + +Who enclosed the sea behind doors + +9 + +when it burst forth from the womb, + +10 + +when I made the clouds its garment +and thick darkness its blanket, + +11 + +when I fixed its boundaries + +and set in place its bars and doors, + +Who gives birth to the frost from heaven, + +31 + +when the waters become hard as stone + +and the surface of the deep is frozen? + +32 + +Can you bind the chains of the Pleiades + +or loosen the belt of Orion? + + e + +Can you bring forth the constellations in their + f + +and I declared: ‘You may come this far, but no + +33 + +seasons + +12 + +farther; + +here your proud waves must stop’? + +In your days, have you commanded the + +13 + +morning + +or assigned the dawn its place, + +14 + +that it might spread to the ends of the earth + +and shake the wicked out of it? + +The earth takes shape like clay under a seal; + +15 + +its hills stand out like the folds of a + +garment. + +16 + +Light is withheld from the wicked, + +and their upraised arm is broken. + +17 + +Have you journeyed to the vents of the sea +or walked in the trenches of the deep? + +Have the gates of death been revealed to + +you? + +18 + +Have you seen the gates of the shadow of + +death? + +Have you surveyed the extent of the earth? + +19 + +Tell Me, if you know all this. + +Where is the way to the home of light? +gird up your loins + +a 2 +Do you know where darkness resides, +bring forth Mazzaroth in its season +Hebrew + +Cited in Job 42:3 + +f 32 + +Leo + +b 3 + +c 3 +Arcturus + +about the flooding of the Nile + +Or + + or + +or lead out the Bear + + and her cubs? +Do you know the laws of the heavens? +Can you set their dominion over the + +34 + +earth? + +35 + +Can you command the clouds + +so that a flood of water covers you? +Can you send the lightning bolts on their + +36 + +way? + + g + +Do they report to you, ‘Here we are’? + +37 + +Who has put wisdom in the heart + +or given understanding to the mind? +Who has the wisdom to count the clouds? +Or who can tilt the water jars of the + +38 + +heavens + +when the dust hardens into a mass + +and the clods of earth stick together? + +39 + +41 + +40 + +Can you hunt the prey for a lioness + +or satisfy the hunger of young lions + +when they crouch in their dens +and lie in wait in the thicket? +Who provides food for the raven +when its young cry out to God +who set its core in place +as they wander about for lack of food? +Who has given the ibis wisdom +Or +, that is, wisdom + +e 32 + +d 6 + +Or + +Or + +g 36 + +Cited in Job 42:4 + + 494 | Job 39:1 + +The LORD Speaks of His Creation + +20 + +39 + +“Do you know when mountain goats + +2 + +give birth? + +Have you watched the doe bear her fawn? +Can you count the months they are pregnant? +Do you know the time they give birth? + +3 + +They crouch down and bring forth their + +4 + +young; + +they deliver their newborn. + +Their young ones thrive and grow up in the + +5 + +open field; + +they leave and do not return. + +21 + +Do you make him leap like a locust, + +striking terror with his proud snorting? + +He paws in the valley and rejoices in his + +22 + +strength; + +he charges into battle. + +23 + +He laughs at fear, frightened of nothing; +he does not turn back from the sword. +b + +24 + +A quiver rattles at his side, + +along with a flashing spear and lance. +Trembling with excitement, he devours the + +distance; + +25 + +he cannot stand still when the ram’s horn + +sounds. +c + +Who set the wild donkey free? + +At the blast of the horn, he snorts with + +6 + +Who released the swift donkey from the + +fervor. + +harness? + +7 + +I made the wilderness his home +and the salt flats his dwelling. + +He scorns the tumult of the city + +8 + +and never hears the shouts of a driver. + +9 + +He roams the mountains for pasture, +searching for any green thing. + +Will the wild ox consent to serve you? + +10 + +Will he stay by your manger at night? + +Can you hold him to the furrow with a + +11 + +harness? + +Will he plow the valleys behind you? + +Can you rely on his great strength? + +12 + +Will you leave your hard work to him? + +Can you trust him to bring in your grain +and gather it to your threshing floor? + +13 + + a + +The wings of the ostrich flap joyfully, + and + +but cannot match the pinions +feathers of the stork. + +14 + +15 + +16 + +For she leaves her eggs on the ground +and lets them warm in the sand. +She forgets that a foot may crush them, +or a wild animal may trample them. +She treats her young harshly, as if not her + +own, + +17 + +with no concern that her labor was in + +vain. + +He catches the scent of battle + +from afar, + +the shouts of captains and the cry of war. + +26 + +Does the hawk take flight by your + +27 + +understanding + +and spread his wings toward the south? + +28 + +Does the eagle soar at your command + +and make his nest on high? + +29 + +He dwells on a cliff and lodges there; +his stronghold is on a rocky crag. + +30 + +From there he spies out food; +his eyes see it from afar. +His young ones feast on blood; + +Job Humbles Himself before the LORD + +and where the slain are, there he is.” + +40 + +2 +And the LORD said to Job: + +“Will the faultfinder contend with the +Almighty? + +Let him who argues with God give an + +answer.” + +3 + +4 +Then Job answered the LORD: + +“Behold, I am insignificant. How can I reply to + +5 + +You? + +I place my hand over my mouth. + +I have spoken once, but I have no answer— + +The LORD Challenges Job Again + +twice, but I have nothing to add.” + +For God has deprived her of wisdom; +He has not endowed her with + +18 + +6 + +understanding. + +Yet when she proudly spreads her wings, +she laughs at the horse and its rider. + +19 + +Then the LORD answered Job out of the +7 +whirlwind and said: + + d + +“Now brace yourself +e + + like a man; + +Do you give strength to the horse +or adorn his neck with a mane? + +I will question you, and you shall inform +he snorts, ‘Aha!’ + +javelin + +Me. + +b 23 + +c 25 + +a 13 Pinions +d 7 + +Hebrew + +gird up your loins + are the outer parts of a bird’s wings, including the flight feathers. +Cited in Job 42:4 + +e 7 + +Or + +Or + + Job 41:26 | 495 + +8 + +4 + +Would you really annul My justice? + +9 + +Would you condemn Me to justify + +yourself? + +Do you have an arm like God’s? + +10 + +5 + +Will he make a covenant with you +to take him as a slave for life? + +Can you pet him like a bird + +6 + +or put him on a leash for your maidens? + +Can you thunder with a voice like His? + +Will traders barter for him + +7 + +Then adorn yourself with majesty and + +or divide him among the merchants? + +11 + +splendor, + +and clothe yourself with honor and glory. + +Unleash the fury of your wrath; + +12 + +look on every proud man and bring him + +low. + +8 + +Can you fill his hide with harpoons +or his head with fishing spears? + +If you lay a hand on him, + +9 + +you will remember the battle and never + +repeat it! + +13 + +14 + +Look on every proud man and humble him; +trample the wicked where they stand. + +a +Bury them together in the dust; +imprison them in the grave. + +Then I will confess to you + +15 + +that your own right hand can save you. + +Look at Behemoth, which I made along with + +12 + +10 + +Surely hope of overcoming him is false. + +11 + +Is not the sight of him overwhelming? +No one is so fierce as to rouse Leviathan. +Then who is able to stand against Me? + + e + +Who has given to Me that I should repay + +him? + +Everything under heaven is Mine. + +16 + +you. + +He feeds on grass like an ox. + +See the strength of his loins + +17 + +and the power in the muscles of his belly. + +His tail sways like a cedar; + +18 + +the sinews of his thighs are tightly knit. + +19 + +His bones are tubes of bronze; +his limbs are rods of iron. +He is the foremost of God’s works; + + b + +20 + +only his Maker can draw the sword + +against him. + +The hills yield him their produce, + +21 + +while all the beasts of the field play + +c + +nearby. + +22 + +23 + +He lies under the lotus plants, + d + +hidden among the reeds of the marsh. +The lotus plants conceal him in their shade; + of the brook surround him. + +the willows + +Though the river rages, Behemoth is + +unafraid; + +24 + +he remains secure, though the Jordan + +surges to his mouth. + +Can anyone capture him as he looks on, +The LORD’s Power Shown in Leviathan +or pierce his nose with a snare? + +I cannot keep silent about his limbs, +his power and graceful form. +Who can strip off his outer coat? + +13 + +14 + + f + +Who can approach him with a bridle? + +Who can open his jaws, + +15 + +ringed by his fearsome teeth? +His rows of scales are his pride, +tightly sealed together. +One scale is so near to another + +16 + +17 + +that no air can pass between them. + +They are joined to one another; + +18 + +they clasp and cannot be separated. + +His snorting flashes with light, + +19 + +and his eyes are like the rays of dawn. + +Firebrands stream from his mouth; + +20 + +fiery sparks shoot forth! +Smoke billows from his nostrils + +21 + +as from a boiling pot over burning reeds. + +His breath sets coals ablaze, + +22 + +and flames pour from his mouth. + +Strength resides in his neck, + +23 + +and dismay leaps before him. + +The folds of his flesh are tightly joined; + +24 + +they are firm and immovable. + +41 + +2 + +“Can you pull in Leviathan with a hook +or tie down his tongue with a rope? + +3 + +Can you put a cord through his nose +or pierce his jaw with a hook? + +Will he beg you for mercy +or speak to you softly? +b 19 +in the hidden place +f 13 + +a 13 +e 11 + +Or +Cited in Romans 11:35 + +Hebrew +Or + +His chest is as hard as a rock, + +as hard as a lower millstone! + +25 + +When Leviathan rises up, the mighty are + +26 + +terrified; + +they withdraw before his thrashing. +The sword that reaches him has no effect, +nor does the spear or dart or arrow. + +poplars + +d 22 + +c 21 + +ways + +bramble bushes +Who can come within his double mail? +Or + +; also in verse 22 + +Or + + 496 | Job 41:27 + +27 + +28 + +He regards iron as straw + +and bronze as rotten wood. + +29 + +No arrow can make him flee; + +slingstones become like chaff to him. + +a + +30 + +A club is regarded as straw, + +and he laughs at the sound of the lance. + +His undersides are jagged potsherds, + +31 + +spreading out the mud like a threshing + +sledge. + +32 + +He makes the depths seethe like a cauldron; +he makes the sea like a jar of ointment. + +33 + +He leaves a glistening wake behind him; + +one would think the deep had white hair! + +34 + +Nothing on earth is his equal— +a creature devoid of fear! + +He looks down on all the haughty; +Job Submits Himself to the LORD +he is king over all the proud.” + +42 + +2 +Then Job replied to the LORD: + +3 + +“I know that You can do all things +and that no plan of Yours can be thwarted. + +You asked, ‘Who is this + + b +who conceals My counsel without + +knowledge?’ + +Surely I spoke of things I did not understand, +4 +things too wonderful for me to know. + +You said, ‘Listen now, and I will speak. + + c + +5 + +I will question you, and you shall inform + +Me.’ + +My ears had heard of You, + +6 + +but now my eyes have seen You. + +Therefore I despise myself, + +The LORD Rebukes Job’s Friends + +and I repent in dust and ashes.” + +7 + +8 + +kindled against you and your two friends. For +you have not spoken about Me accurately, as My +So now, take seven bulls and +servant Job has. +seven rams, go to My servant Job, and sacrifice a +burnt offering for yourselves. Then My servant +Job will pray for you, for I will accept his prayer +and not deal with you according to your folly. For +you have not spoken accurately about Me, as My +9 +servant Job has.” + +So Eliphaz the Temanite, Bildad the Shuhite, +and Zophar the Naamathite went and did as the +LORD had told them; and the LORD accepted +The LORD Blesses Job +Job’s prayer. +10 + +11 + +After Job had prayed for his friends, the LORD +restored his prosperity and doubled his former +All his brothers and sisters and +possessions. +prior acquaintances came and dined with him in +his house. They consoled him and comforted him +over all the adversity that the LORD had brought +upon him. And each one gave him a piece of sil- +12 +ver + + and a gold ring. + + d + +13 + +14 + +So the LORD blessed Job’s latter days more +than his first. He owned 14,000 sheep, 6,000 +camels, 1,000 yoke of oxen, and 1,000 female +And he also had seven sons and +donkeys. +three daughters. +He named his first daughter +Jemimah, his second Keziah, and his third Keren- +No women as beautiful as Job’s +happuch. +daughters could be found in all the land, and +their father granted them an inheritance among +16 +their brothers. + +15 + +After the LORD had spoken these words to Job, +He said to Eliphaz the Temanite, “My wrath is + +After this, Job lived 140 years and saw his chil- +17 +dren and their children to the fourth generation. + +And so Job died, old and full of years. + +a 29 + +javelin + +b 3 + +c 4 + +d 11 + +a kesitah + +Or + +Job 38:2 + +Job 38:3 and Job 40:7 + +Hebrew + +; the value or weight of the kesitah is + +no longer known. + + Psalms + +Psalm 1 +The Two Paths +(Matthew 5:3–12 ; Luke 6:20–23) + + 1 + +Blessed is the man + +who does not walk in the counsel of + +7 + +BOOK I +Psalms 1–41 + +4 + +The One enthroned in heaven laughs; + +5 + +the Lord taunts them. + +6 + +Then He rebukes them in His anger, +and terrifies them in His fury: +“I have installed My King on Zion, +upon My holy mountain.” + +the wicked, + +or set foot on the path of sinners, +2 +or sit in the seat of mockers. + +But his delight is in the Law of the LORD, +and on His law he meditates day and + +3 + +night. + +He is like a tree planted by streams of water, + +yielding its fruit in season, + +whose leaf does not wither, +4 + +and who prospers in all he does. + +Not so the wicked! + +5 + +For they are like chaff driven off by the + +wind. + +Therefore the wicked will not stand in the + +judgment, + +nor sinners in the assembly of the + +righteous. + +6 + +For the LORD guards the path of the + +righteous, + +Psalm 2 +but the way of the wicked will perish. +The Triumphant Messiah +(Acts 4:23–31) + +1 + + a + +Why do the nations rage + +2 + +and the peoples plot in vain? + +The kings of the earth take their stand +and the rulers gather together, + b + +against the LORD +3 + +and against His Anointed One: + +“Let us break Their chains + +I will proclaim the decree + +spoken to Me by the LORD: + +c + +“You are My Son; + +8 + +today I have become Your Father. +Ask Me, and I will make the nations Your + d + +inheritance, + +9 + +the ends of the earth Your possession. + +e + +You will break them + + with an iron scepter; + +You will shatter them like pottery. + +” + +10 + +11 + +Therefore be wise, O kings; + +be admonished, O judges of the earth. + +12 + +Serve the LORD with fear, + +and rejoice with trembling. +Kiss the Son, lest He be angry + +and you perish in your rebellion, +when His wrath ignites in an instant. +Psalm 3 +Deliver Me, O LORD! +(2 Samuel 15:13–29) + +Blessed are all who take refuge in Him. + + A Psalm of David, when he fled from +his son Absalom. + + 1 + +2 + +O LORD, how my foes have increased! +How many rise up against me! + +Many say of me, + +“God will not deliver him.” + +3 + +Selah + + f + +But You, O LORD, are a shield around me, + +my glory, and the One who lifts my head. + +today I have begotten You + +c 7 + +a 1 + +and cast away Their cords.” +noisily assemble + +b 2 + +Or + +d 9 +; see Revelation 11:18. + +Acts 13:33, Hebrews 1:5, and Hebrews 5:5 +Revelation 2:27; see also Revelation 12:5 and Revelation 19:15. +term; here and throughout the Psalms. + +LXX + +You will rule them + +You will shepherd them + +e 9 + +Cited in Acts 4:25–26 +f 2 Selah + or + +Literally +Interlude + +; cited in + +Cited in + + or + + is probably a musical or literary + + 498 | Psalm 3:4 + +4 + +To the LORD I cry aloud, + +and He answers me from His holy + +mountain. + +5 + +Psalm 5 +Give Ear to My Words + +Selah + + For the choirmaster, to be accompanied +by flutes. A Psalm of David. + +I lie down and sleep; + +6 + +I wake again, for the LORD sustains me. + +I will not fear the myriads + +7 + +set against me on every side. + +Arise, O LORD! + +Save me, O my God! + +Strike all my enemies on the jaw; +8 +break the teeth of the wicked. + +Salvation belongs to the LORD; + +may Your blessing be on Your people. + +Selah + +Psalm 4 +Answer Me When I Call! + + For the choirmaster. With stringed +instruments. A Psalm of David. + + 1 + +Answer me when I call, + +O God of my righteousness! +You have relieved my distress; +2 + +show me grace and hear my prayer. + +How long, O men, will my honor be maligned? +How long will you love vanity and seek + + a + +Selah + +after lies + +? + +3 + +Know that the LORD has set apart the godly + +4 + +for Himself; + + b + +the LORD hears when I call to Him. + +Be angry, yet do not sin; + +on your bed, search your heart and be + +Selah + +5 + +still. + +Offer the sacrifices of the righteous + +and trust in the LORD. + +6 + + 1 + +2 + +Give ear to my words, O LORD; +consider my groaning. +Attend to the sound of my cry, + +3 + +my King and my God, +for to You I pray. + +In the morning, O LORD, You hear my voice; +at daybreak I lay my plea before You +and wait in expectation. + +4 + +For You are not a God who delights in + +5 + +wickedness; + +no evil can dwell with You. + +The boastful cannot stand in Your presence; + +6 + +You hate all workers of iniquity. + +You destroy those who tell lies; + +7 + +the LORD abhors the man of bloodshed + +and deceit. + +But I will enter Your house + + c + +by the abundance of Your loving + +devotion; + +8 + +in reverence I will bow down +toward Your holy temple. + +Lead me, O LORD, in Your righteousness + +9 + +because of my enemies; +make straight Your way before me. +For not a word they speak can be trusted; + +destruction lies within them. +d + +Their throats are open graves; +their tongues practice deceit. + +10 + +Declare them guilty, O God; + +let them fall by their own devices. + +Drive them out for their many +transgressions, + +11 + +for they have rebelled against You. + +Many ask, “Who can show us the good?” +Shine the light of Your face upon us, + +7 + +O LORD. + +But let all who take refuge in You rejoice; + +let them ever shout for joy. + +May You shelter them, + +You have filled my heart with more joy + +8 + +12 + +that those who love Your name may + +than when grain and new wine abound. + +rejoice in You. + +I will lie down and sleep in peace, + +for You alone, O LORD, make me dwell in + +For surely You, O LORD, bless the righteous; +You surround them with the shield of + +safety. + +b 4 + +In your anger do not sin + +Tremble and do not sin + +Your favor. + +c 7 + +goodness + are translated here and in most cases throughout the Scriptures as + +faithfulness + +loyalty to a covenant + +Or +kindness + + or +mercy + +Forms of the +flattery +; the range of meaning + +, + +, + +, and + +, as well as + +. + +Or + +; cited in + +loving devotion +; cited in Ephesians 4:26 + +d 9 + +a 2 + +false gods +chesed +love + +Or +Hebrew +includes +Romans 3:13 + +, + + Psalm 6 +Do Not Rebuke Me in Your Anger +(Psalm 38:1–22) + + For the choirmaster. With stringed instruments, +according to Sheminith.a +A Psalm of David. + + 1 + +O LORD, do not rebuke me in Your anger + +2 + +or discipline me in Your wrath. + +Be merciful to me, O LORD, for I am frail; +heal me, O LORD, for my bones are in + +3 + +agony. + +4 + +My soul is deeply distressed. + +How long, O LORD, how long? + +Turn, O LORD, and deliver my soul; + +5 + +save me because of Your loving devotion. + +6 + +For there is no mention of You in death; +who can praise You from Sheol? + +I am weary from groaning; + +7 + +all night I flood my bed with weeping +and drench my couch with tears. + +My eyes fail from grief; + +they grow dim because of all my foes. + +Depart from me, all you workers of iniquity, +for the LORD has heard my weeping. +The LORD has heard my cry for mercy; + +the LORD accepts my prayer. +All my enemies will be ashamed and + +dismayed; + +Psalm 7 +they will turn back in sudden disgrace. +I Take Refuge in You + + A Shiggaion b  of David, which he sang +to the LORD concerning the words of Cush, +a Benjamite. + + 1 + +8 + +9 + +10 + +Psalm 8:2 | 499 + +may he trample me to the ground +and leave my honor in the dust. + +Selah + +6 + +Arise, O LORD, in Your anger; + +rise up against the fury of my enemies. +Awake, my God, and ordain judgment. +Let the assembled peoples gather around You; + +7 + +8 + +take Your seat over them on high. + +The LORD judges the peoples; +vindicate me, O LORD, +according to my righteousness and + +9 + +integrity. + +Put an end to the evil of the wicked, +but establish the righteous, +O righteous God who searches hearts and + +d + +10 + +minds. +My shield is with God, + +11 + +who saves the upright in heart. + +12 + +God is a righteous judge + +and a God who feels indignation each day. + +If one does not repent, + +13 + +14 + +God will sharpen His sword; +He has bent and strung His bow. +He has prepared His deadly weapons; +He ordains His arrows with fire. + +15 + +Behold, the wicked man travails with evil; + +he conceives trouble and births falsehood. + +16 + +He has dug a hole and hollowed it out; + +he has fallen into a pit of his own making. + +His trouble recoils on himself, + +17 + +and his violence falls on his own head. + +I will thank the LORD for His righteousness +and sing praise to the name of the LORD + +Most High. Psalm 8 +How Majestic Is Your Name! + + For the choirmaster. According to Gittith.e +A Psalm of David. + +O LORD my God, I take refuge in You; +save me and deliver me from all my + +2 + + 1 + +pursuers, + +or they will shred my soul like a lion + +O LORD, our Lord, + +and tear me to pieces with no one to + +how majestic is Your name in all + +3 + +rescue me. + +4 + +O LORD my God, if I have done this, +if injustice is on my hands, + + c + +the earth! + +2 + +You have set Your glory +above the heavens. + + f + +if I have rewarded my ally + +5 + + with evil, + +From the mouths of children and infants + +if I have plundered my foe without cause, +then may my enemy pursue me and overtake + +a 1 Sheminith + +me; + +You have ordained praise +on account of Your adversaries, +b 1 Shiggaion + +to silence the enemy and avenger. + +the one at peace with me + is probably a musical term; here and in 1 Chronicles 15:21 and Psalm 12:1. +f 2 + +You have ordained strength + +hearts and kidneys + +d 9 + +c 4 + +e 1 Gittith + +musical or liturgical term. +prepared praise +a musical or liturgical term; here and in Psalms 81 and 84. + +Hebrew + +Hebrew + +Literally + +; cited in Matthew 21:16 + + is probably a +You have + + is probably + +; LXX + + 500 | Psalm 8:3 + +3 + +When I behold Your heavens, +the work of Your fingers, + +the moon and the stars, + +4 + +which You have set in place— + +5 + +6 + +what is man that You are mindful of him, + + a +or the son of man that You care for him? +You made him a little lower than the angels; +You crowned him with glory and honor. + +You made him ruler of the works of Your + +hands; + b + +7 + +You have placed everything under his + +feet: +all sheep and oxen, + +8 + +and even the beasts of the field, + +the birds of the air and the fish of the sea, +all that swim the paths of the seas. + +9 + +O LORD, our Lord, + +how majestic is Your name in all the earth! + +Psalm 9 +I Will Give Thanks to the LORD + +10 + +Those who know Your name trust in You, + +11 + +for You, O LORD, have not forsaken those + +who seek You. + +12 + +13 + +Sing praises to the LORD, who dwells in Zion; +proclaim His deeds among the nations. +For the Avenger of bloodshed remembers; + +He does not ignore the cry of the afflicted. + +Be merciful to me, O LORD; + +14 + +see how my enemies afflict me! +Lift me up from the gates of death, + +that I may declare all Your praises— +that within the gates of Daughter Zion +I may rejoice in Your salvation. + +15 + +The nations have fallen into a pit of their + +making; + +16 + +their feet are caught in the net they have + +hidden. + +The LORD is known by the justice He brings; +the wicked are ensnared by the work of +Higgaion Selah d + +their hands. + + For the choirmaster. To the tune of “The Death +of the Son.” A Psalm of David.c + +17 + + 1 + +I will give thanks to the LORD with all my + +2 + +heart; + +I will recount all Your wonders. + +I will be glad and rejoice in You; + +3 + +I will sing praise to Your name, O Most + +High. + +When my enemies retreat, + +4 + +they stumble and perish before You. + +For You have upheld my just cause; +You sit on Your throne judging + +5 + +righteously. + +18 + +The wicked will return to Sheol— +all the nations who forget God. + +For the needy will not always be forgotten; +nor the hope of the oppressed forever + +19 + +dashed. + +20 + +Rise up, O LORD, do not let man prevail; + +let the nations be judged in Your presence. + +Lay terror upon them, O LORD; + +Selah + +let the nations know they are but men. +Psalm 10 +The Perils of the Pilgrim + + 1 + +You have rebuked the nations; + +You have destroyed the wicked; +You have erased their name forever and + +6 + +Why, O LORD, do You stand far off? + +2 + +Why do You hide in times of trouble? + +In pride the wicked pursue the needy; + +ever. + +The enemy has come to eternal ruin, + +7 + +and You have uprooted their cities; +the very memory of them has vanished. + +But the LORD abides forever; + +8 + +He has established His throne for + +judgment. + +He judges the world with justice; + +9 + +He governs the people with equity. +The LORD is a refuge for the oppressed, +than God +a stronghold in times of trouble. + +than the heavenly beings + +a 5 +c 1 + +3 + +let them be caught in the schemes they + +devise. + +For the wicked man boasts in the cravings of + +4 + +his heart; + +he blesses the greedy and reviles the LORD. + +In his pride the wicked man does not seek + +5 + +Him; + +in all his schemes there is no God. +He is secure in his ways at all times; + +b 6 + +Your lofty judgments are far from him; +he sneers at all his foes. + +Or +Psalms 9 and 10 together follow an acrostic pattern, each stanza beginning with the successive letters of the Hebrew + +Cited in 1 Corinthians 15:27 and Hebrews 2:6–8 + +d 16 Higgaion Selah + +; see also LXX. + +quiet interlude + + or + +alphabet. In the LXX they form one psalm. + + or + + is probably a musical or liturgical term. + + 6 + +3 + +Psalm 13:1 | 501 + +7 + +He says to himself, “I will not be moved; +from age to age I am free of distress.” + +a + +4 + +If the foundations are destroyed, +what can the righteous do?” + +His mouth is full of cursing, deceit, + + and + +The LORD is in His holy temple; + +8 + +violence; + +the LORD is on His heavenly throne. + +trouble and malice are under his tongue. + +His eyes are watching closely; + +5 + +He lies in wait near the villages; + +they examine the sons of men. + +9 + +in ambush he slays the innocent; +his eyes watch in stealth for the helpless. + +He lies in wait like a lion in a thicket; +he lurks to seize the oppressed; + b +he catches the lowly in his net. +They are crushed and beaten down; + +10 + +11 + +the helpless fall prey to his strength. +He says to himself, “God has forgotten; +He hides His face and never sees.” + +12 + +13 + +Arise, O LORD! Lift up Your hand, O God! + +Do not forget the helpless. + +Why has the wicked man renounced God? + +14 + +He says to himself, “You will never call me + +to account.” + +But You have regarded trouble and grief; +You see to repay it by Your hand. +The victim entrusts himself to You; + +15 + +You are the helper of the fatherless. +Break the arm of the wicked and evildoer; +call him to account for his wickedness +until none is left to be found. + +16 + +17 + +The LORD is King forever and ever; +the nations perish from His land. +You have heard, O LORD, the desire of the + +humble; + +18 + +You will strengthen their hearts. + +You will incline Your ear, + +to vindicate the fatherless and oppressed, + +that the men of the earth + +may strike terror no more. + +Psalm 11 +In the LORD I Take Refuge +(Habakkuk 1:12–17) + + For the choirmaster. Of David. + +1 + +In the LORD I take refuge. + +How then can you say to me: + + 2 + +“Flee like a bird to your mountain! + +The LORD tests the righteous and the wicked; + +6 + +His soul hates the lover of violence. +On the wicked He will rain down fiery coals + +7 + +and sulfur; + +a scorching wind will be their portion. + +For the LORD is righteous; He loves justice. +Psalm 12 +The Godly Are No More + +The upright will see His face. + + For the choirmaster. According to Sheminith.c +A Psalm of David. + +1 + +Help, O LORD, for the godly are no more; +the faithful have vanished from among + +2 + +men. + +They lie to one another; + +3 + +they speak with flattering lips and a + +double heart. + +May the LORD cut off all flattering lips + +4 + +and every boastful tongue. + +They say, “With our tongues we will prevail. + +We own our lips—who can be our + +master?” + +5 + +“For the cause of the oppressed + +and for the groaning of the needy, + +I will now arise,” says the LORD. + +6 + +“I will bring safety to him who yearns.” + +The words of the LORD are flawless, +like silver refined in a furnace, +like gold purified sevenfold. + +d + +7 + +You, O LORD, will keep us; + +8 + +You will forever guard us from this + +generation. +The wicked wander freely, +Psalm 13 +and vileness is exalted among men. +How Long, O LORD? + + For the choirmaster. A Psalm of David. + +1 + +For behold, the wicked bend their bows. + +How long, O LORD? + +They set their arrow on the string + +to shoot from the shadows at the upright + +a 7 + +bitterness + +in heart. + +LXX +sevenfold +here and in 1 Chronicles 15:21 and Psalm 6:1. + +; cited in Romans 3:14 + +Probable reading; MT + +d 6 +Or + +Will You forget me forever? +How long will You hide Your face from + +me? +like silver refined in a furnace of clay, purified + is probably a musical term; + +b 10 + +He crouches and lies low + +c 1 Sheminith + + 502 | Psalm 13:2 + +2 + +2 + +How long must I wrestle in my soul, + +He who walks with integrity + +3 + +with sorrow in my heart each day? +How long will my enemy dominate me? + +3 + +and practices righteousness, +who speaks the truth from his heart, + +Consider me and respond, O LORD my God. + +4 + +Give light to my eyes, lest I sleep in death, + +lest my enemy say, “I have overcome him,” + +5 + +and my foes rejoice when I fall. + +6 + +But I have trusted in Your loving devotion; +my heart will rejoice in Your salvation. + +I will sing to the LORD, + +for He has been good to me. + +Psalm 14 +The Fool Says There Is No God +(Ps. 53:1–6 ; Isa. 59:1–17 ; Rom. 3:9–20) + + For the choirmaster. Of David. + +1 + + a + +The fool + + says in his heart, + +“There is no God.” + +2 + +They are corrupt; their acts are vile. +There is no one who does good. +The LORD looks down from heaven + +upon the sons of men +to see if any understand, +3 +if any seek God. +All have turned away, + + b + +who has no slander on his tongue, + +4 + +who does no harm to his neighbor, +who casts no scorn on his friend, + +who despises the vile + +5 + +but honors those who fear the LORD, +who does not revise a costly oath, +who lends his money without interest + +and refuses a bribe against the innocent. + +He who does these things +will never be shaken. + +Psalm 16 +The Presence of the LORD +(Acts 2:14–36) + + A Miktam d  of David. + +1 + +Preserve me, O God, + +2 + +for in You I take refuge. + +I said to the LORD, “You are my Lord; + +3 + +apart from You I have no good thing.” + +As for the saints in the land, +they are the excellence +in whom all my delight resides. + +4 + +they have together become corrupt; + +c + +Sorrows will multiply + +there is no one who does good, + +4 + +not even one. + +Will the workers of iniquity never learn? + +They devour my people like bread; + +5 + +they refuse to call upon the LORD. +There they are, overwhelmed with dread, + +6 + +for God is in the company of the righteous. + +You sinners frustrate the plans of the + +7 + +oppressed, + +yet the LORD is their shelter. + +8 + +Oh, that the salvation of Israel would come + +from Zion! + +When the LORD restores His captive people, +Psalm 15 +Who May Dwell on Your Holy Mountain? + +let Jacob rejoice, let Israel be glad! + + A Psalm of David. + +1 + +O LORD, who may abide in Your tent? + +Who may dwell on Your holy mountain? + +fool + +d 1 Miktam + +a 1 +c 3 +e 7 +h 10 + +to those who chase other gods. + +5 + +I will not pour out their libations of blood, +or speak their names with my lips. + +The LORD is my chosen portion and my cup; + +6 + +You have made my lot secure. + +The lines of my boundary have fallen in + +7 + +pleasant places; + +surely my inheritance is delightful. +I will bless the LORD who counsels me; + +e + +even at night my conscience instructs me. + +  f + +I have set + + the LORD always before me. + +9 + +Because He is at my right hand, I will not + +be shaken. + +Therefore my heart is glad and my tongue + +g + +10 + +rejoices; + +my body also will dwell securely. + +h + +11 + +For You will not abandon my soul to Sheol, +nor will You let Your Holy One see decay. +i +You have made known to me the path of life; +You will fill me with joy in Your presence, +with eternal pleasures at Your right hand. + +worthless + +b 3 + +The Hebrew words rendered +my heart instructs me +Cited in Romans 3:10–12 +i 11 +; Hebrew +Or + + throughout the Psalms denote one who is morally deficient. +my kidneys instruct me + +LXX +will dwell in hope + +I foresaw + +g 9 + +f 8 + + is probably a musical or liturgical term; used for Psalm 16 and Psalms 56–60. + +LXX + +LXX + +Cited in Acts 13:35 + +Cited in Acts 2:25–28 + + Psalm 17 +Hear My Righteous Plea + + A prayer of David. + +1 + +Hear, O LORD, my righteous plea; + +listen to my cry. +Give ear to my prayer— +2 + +it comes from lips free of deceit. +May my vindication come from Your + +3 + +presence; + +may Your eyes see what is right. + +You have tried my heart; + +You have visited me in the night. +You have tested me and found no evil; +4 + +I have resolved not to sin with my mouth. + +As for the deeds of men— + +5 + +by the word of Your lips +I have avoided the ways of the violent. + +6 + +My steps have held to Your paths; +my feet have not slipped. + +I call on You, O God, + +for You will answer me. + +7 + +Incline Your ear to me; +hear my words. + +Show the wonders of Your loving devotion, + +8 + +You who save by Your right hand +those who seek refuge from their foes. + + a + +Keep me as the apple of + +9 + + Your eye; + +hide me in the shadow of Your wings + +from the wicked who assail me, + +10 + +from my mortal enemies who surround + +me. + +11 + +They have closed their callous hearts; +their mouths speak with arrogance. + +They have tracked us down, and now + +12 + +surround us; + +their eyes are set to cast us to the ground, + +like a lion greedy for prey, + +13 + +like a young lion lurking in ambush. + +Arise, O LORD, confront them! +Bring them to their knees; + +14 + +deliver me from the wicked by Your sword, +from such men, O LORD, by Your hand— + +from men of the world + b + +whose portion is in this life. + +May You fill the bellies of Your treasured + +Psalm 18:13 | 503 + +15 + +As for me, I will behold Your face in + +righteousness; + +when I awake, I will be satisfied in Your + +presence. Psalm 18 + +The LORD Is My Rock +(2 Samuel 22:1–51) + + For the choirmaster. Of David the servant of the +LORD, who sang this song to the LORD on the day +the LORD had delivered him from the hand of all +his enemies and from the hand of Saul. He said: + +1 + +2 + +I love You, O LORD, my strength. + +The LORD is my rock, my fortress, and my + +deliverer. + +My God is my rock, in whom I take refuge, + +my shield, and the horn of my salvation, + +3 + +my stronghold. + +I will call upon the LORD, who is worthy to be + +4 + +praised; + +so shall I be saved from my enemies. + +The cords of death encompassed me; + +5 + +the torrents of chaos overwhelmed me. + +The cords of Sheol entangled me; + +6 + +the snares of death confronted me. +In my distress I called upon the LORD; + +I cried to my God for help. + +From His temple He heard my voice, +7 + +and my cry for His help reached His ears. + +Then the earth shook and quaked, + +and the foundations of the mountains + +trembled; + +8 + +they were shaken because He burned with + +anger. + +Smoke rose from His nostrils, + +9 + +and consuming fire came from His mouth; +glowing coals blazed forth. + +10 + +He parted the heavens and came down +with dark clouds beneath His feet. + +11 + +He mounted a cherub and flew; + +He soared on the wings of the wind. + +12 + +He made darkness His hiding place, + +and storm clouds a canopy around Him. + +From the brightness of His presence + +c + +13 + +His clouds advanced— +hailstones and coals of fire. + +ones + + and satisfy their sons, + +The LORD thundered from heaven; + +d + +so they leave their abundance to their + +a 8 +c 12 + +as the pupil, the daughter of +children. +bolts of lightning +—hailstones and coals of fire + +b 14 +d 13 + +Literally +Or +include + +; see 2 Samuel 22:14. + +May what You have stored up for the wicked fill their bellies + +the voice of the Most High resounded— +hailstones and coals of fire. + +; also in verse 13 + +Or +Most Hebrew manuscripts; some Hebrew manuscripts and LXX do not + + 504 | Psalm 18:14 + +14 + +32 + +15 + +He shot His arrows and scattered the foes; +He hurled lightning and routed them. + +The channels of the sea appeared, + +and the foundations of the world were + +33 + +It is God who arms me with strength + +and makes my way clear. + +34 + +He makes my feet like those of a deer +and stations me upon the heights. + +exposed, +at Your rebuke, O LORD, + +16 + +35 + +He trains my hands for battle; + +my arms can bend a bow of bronze. + +at the blast of the breath of Your nostrils. + +You have given me Your shield of salvation; + +a + +He reached down from on high and took hold + +17 + +of me; + +He drew me out of deep waters. + +18 + +He rescued me from my powerful enemy, + +from foes too mighty for me. + +19 + +They confronted me in my day of calamity, + +but the LORD was my support. +He brought me out into the open; + +20 + +He rescued me because He delighted in + +me. + +The LORD has rewarded me according to my + +righteousness; + +21 + +He has repaid me according to the + +cleanness of my hands. +For I have kept the ways of the LORD + +22 + +and have not wickedly departed from my + +God. + +23 + +For all His ordinances are before me; + +24 + +I have not disregarded His statutes. +And I have been blameless before Him +and kept myself from iniquity. + +So the LORD has repaid me according to my + +righteousness, + +according to the cleanness of my hands in + +His sight. + +25 + +To the faithful You show Yourself faithful, +to the blameless You show Yourself + +26 + +blameless; + +to the pure You show Yourself pure, + +27 + +but to the crooked You show Yourself + +shrewd. + +28 + +For You save an afflicted people, + +but You humble those with haughty eyes. + +29 + +For You, O LORD, light my lamp; + +my God lights up my darkness. + +30 + +For in You I can charge an army, + +and with my God I can scale a wall. + +As for God, His way is perfect; + +36 + +37 + +Your right hand upholds me, +and Your gentleness exalts me. +You broaden the path beneath me + +so that my ankles do not give way. +I pursued my enemies and overtook them; + +38 + +I did not turn back until they were + +consumed. + +39 + +I crushed them so they could not rise; +they have fallen under my feet. + +40 + +You have armed me with strength for battle; +You have subdued my foes beneath me. +You have made my enemies retreat before + +41 + +me; + +I destroyed those who hated me. + +They cried for help, but there was no one to + +42 + +save them— + b + +to the LORD, but He did not answer. + +43 + +I ground them as dust in the face of the wind; + +I trampled them + + like mud in the streets. + +You have delivered me from the strife of the + +people; + +44 + +You have made me the head of nations; +a people I had not known shall serve me. + +45 + +When they hear me, they obey me; +foreigners cower before me. + +Foreigners lose heart + +46 + +and come trembling from their + +strongholds. + +The LORD lives, and blessed be my Rock! +And may the God of my salvation be + +47 + +exalted— +the God who avenges me + +48 + +and subdues nations beneath me, +who delivers me from my enemies. + +49 + +You exalt me above my foes; + +You rescue me from violent men. +c + +Therefore I will praise You, O LORD, among + +the word of the LORD is flawless. +He is a shield to all who take refuge in + +50 + +the nations; + +I will sing praises to Your name. + +Him. + +Great salvation He brings to His king. + +31 + +For who is God besides the LORD? + +a 35 + +and Your help exalts me +And who is the Rock except our God? +I poured them out + +and You stoop down to make me great + +c 49 + +He shows loving devotion to His anointed, +to David and his descendants forever. + +b 42 + +Or + + or + +Syriac (see also 2 Samuel 22:43); MT + +Cited in Romans 15:9 + +Some Hebrew manuscripts, LXX, and + + Psalm 21:6 | 505 + +Psalm 19 +The Heavens Declare the Glory of God + +Psalm 20 +The Day of Trouble + + For the choirmaster. A Psalm of David. + + For the choirmaster. A Psalm of David. + +1 + +1 + +The heavens declare the glory of God; + +2 + +May the LORD answer you in the day of + +the skies proclaim the work of His hands. + +trouble; + +Day after day they pour forth speech; + +3 + +night after night they reveal knowledge. + +a + +Without speech or language, + + b + +4 + +without a sound to be heard, + +c + +their voice + + has gone out into all the earth, + +their words to the ends of the world. + +In the heavens He has pitched +5 + +a tent for the sun. + +Like a bridegroom emerging from his + +chamber, + +6 + +like a champion rejoicing to run his + +course, + +it rises at one end of the heavens + +7 + +and runs its circuit to the other; +nothing is deprived of its warmth. + +The Law of the LORD is perfect, + +reviving the soul; + +the testimony of the LORD is trustworthy, + +8 + +making wise the simple. + +The precepts of the LORD are right, + +bringing joy to the heart; + +the commandments of the LORD are radiant, + +9 + +giving light to the eyes. +The fear of the LORD is pure, + +enduring forever; + +10 + +the judgments of the LORD are true, +being altogether righteous. +They are more precious than gold, + +than much pure gold; +they are sweeter than honey, +than honey from the comb. + +11 + +By them indeed Your servant is warned; +in keeping them is great reward. + +12 + +Who can discern his own errors? + +13 + +Cleanse me from my hidden faults. +Keep Your servant also from willful sins; + +may they not rule over me. + +Then I will be blameless + +14 + +and cleansed of great transgression. + +May the words of my mouth + +and the meditation of my heart + +be pleasing in Your sight, + +2 + +may the name of the God of Jacob protect + +you. + +May He send you help from the sanctuary + +3 + +and sustain you from Zion. +May He remember all your gifts + +and look favorably on your burnt + +4 + +offerings. + +Selah + +5 + +May He give you the desires of your heart +and make all your plans succeed. +May we shout for joy at your victory + +6 + +and raise a banner in the name of our God. +May the LORD grant all your petitions. + +Now I know that the LORD saves His + +anointed; + +He answers him from His holy heaven +with the saving power of His right hand. +Some trust in chariots and others in horses, +but we trust in the name of the LORD + +7 + +8 + +our God. +They collapse and fall, + + d + +9 + +O LORD, save + +but we rise up and stand firm. + the king. +Answer us on the day we call. + +Psalm 21 +After the Battle +(Proverbs 21:1–31) + + For the choirmaster. A Psalm of David. + +1 + +2 + +O LORD, the king rejoices in Your strength. +How greatly he exults in Your salvation! + +You have granted his heart’s desire + +and have not withheld the request of + +Selah + +3 + +his lips. + +For You welcomed him with rich blessings; +You placed on his head a crown of pure + +4 + +gold. + +He asked You for life, and You granted it— + +5 + +length of days, forever and ever. + +Great is his glory in Your salvation; + +6 + +You bestow on him splendor and majesty. + +For You grant him blessings forever; + +a 3 +line + +There is no speech or language where their voice is not heard +O LORD, my Rock and my Redeemer. +c 4 + +give victory to + +d 9 + +Or + +Cited in Romans 10:18 + +Or + +their measuring +b 4 +You cheer him with joy in Your presence. + +LXX, Syriac, and Vulgate; Hebrew + + 506 | Psalm 21:7 + +7 + +8 + +For the king trusts in the LORD; + +“He trusts in the LORD, + +through the loving devotion of the Most + +let the LORD deliver him; + b + +8 + +High, + +he will not be shaken. + +Your hand will apprehend all Your enemies; +Your right hand will seize those who hate + +9 + +You. + +You will place them in a fiery furnace +at the time of Your appearing. + +10 + +In His wrath the LORD will engulf them, +and the fire will consume them. + +You will wipe their descendants from the + +11 + +earth, + +and their offspring from the sons of men. + +12 + +Though they intend You harm, + +the schemes they devise will not prevail. + +For You will put them to flight + +13 + +when Your bow is trained upon them. + +Be exalted, O LORD, in Your strength; + +we will sing and praise Your power. +Psalm 22 +The Psalm of the Cross +(Matthew 27:32–56 ; Mark 15:21–41 ; +Luke 23:26–43 ; John 19:16–30) + + For the choirmaster. To the tune of “The Doe of +the Dawn.” A Psalm of David. + +1 + + a + +My God, my God, + +why have You forsaken me? +Why are You so far from saving me, +2 + +so far from my words of groaning? + +I cry out by day, O my God, +but You do not answer, + +and by night, + +3 + +but I have no rest. + +Yet You are holy, + +4 + +enthroned on the praises of Israel. + +In You our fathers trusted; + +5 + +they trusted and You delivered them. +They cried out to You and were set free; +they trusted in You and were not + +disappointed. + +6 + +But I am a worm and not a man, + +7 + +scorned by men and despised by the + +people. + +All who see me mock me; + +a 1 + +they sneer and shake their heads: +b 8 + +Cited in Matthew 27:46 and Mark 15:34 + +d 16 + +let the LORD rescue him, + +9 + +since He delights in him.” + +Yet You brought me forth from the womb; +You made me secure at my mother’s + +10 + +breast. + +From birth I was cast upon You; + +11 + +from my mother’s womb You have been + +my God. + +Be not far from me, + +12 + +for trouble is near +and there is no one to help. + +13 + +Many bulls surround me; + +strong bulls of Bashan encircle me. + +14 + +They open their jaws against me +like lions that roar and maul. + +I am poured out like water, + +and all my bones are disjointed. + +15 + +My heart is like wax; + + c + +it melts away within me. + +My strength + + is dried up like a potsherd, +and my tongue sticks to the roof of my + +16 + +mouth. + +You lay me in the dust of death. + +For dogs surround me; + +d + +17 + +a band of evil men encircles me; +they have pierced my hands and feet. + +18 + +I can count all my bones; + +they stare and gloat over me. +e + +They divide my garments among them + +19 + +and cast lots for my clothing. + +20 + +But You, O LORD, be not far off; + +O my Strength, come quickly to help me. + +Deliver my soul from the sword, + +21 + +my precious life from the power of wild + +dogs. + +Save me from the mouth of the lion; + +22 + +at the horns of the wild oxen You have + +answered me! + +I will proclaim Your name to my + +f + +23 + +brothers; + +I will praise You in the assembly. +You who fear the LORD, praise Him! + +24 + +All descendants of Jacob, honor Him! +All offspring of Israel, revere Him! +For He has not despised or detested + +original Heb. text +also Matthew 27:35, Mark 15:24, and Luke 23:34 + +DSS, LXX, Vulgate, and Syriac; most MT + +LXX + +the torment of the afflicted. + +c 15 +like a lion at my hands and feet + +e 18 +I will sing Your praises in the assembly + +My mouth + +MT; or + +Cited in Matthew 27:43 + +f 22 + +, a possible reading of the +Cited in John 19:24; see +; cited in Hebrews 2:12. + + He has not hidden His face from him, + +25 + +but has attended to his cry for help. + +all the days of my life, + +c + +Psalm 25:3 | 507 + +6 + +Surely goodness and mercy will follow me + +My praise for You resounds in the great + +assembly; + +26 + +I will fulfill my vows before those + +who fear You. + +and I will dwell in the house of the LORD + +forever. + +Psalm 24 +The Earth Is the LORD’s + + A Psalm of David. + +The poor will eat and be satisfied; + +1 + +27 + +those who seek the LORD will praise Him. +May your hearts live forever! + +All the ends of the earth + +will remember and turn to the LORD. + +28 + +29 + +All the families of the nations +will bow down before Him. +For dominion belongs to the LORD +and He rules over the nations. +All the rich of the earth will feast and + +worship; + +all who go down to the dust will kneel + +30 + +before Him— + +even those unable to preserve their lives. + +Posterity will serve Him; + +31 + +they will declare the Lord to a new + +generation. + +They will come and proclaim His + +righteousness + +to a people yet unborn— +Psalm 23 +all that He has done. +The LORD Is My Shepherd +(Ezekiel 34:11–24 ; John 10:1–21) + +1 + + A Psalm of David. + + a + +The LORD is my shepherd; + +2 + +I shall not want. + +3 + +He makes me lie down in green pastures; +He leads me beside quiet waters. + +He restores my soul; + +He guides me in the paths of + +4 + +righteousness + +for the sake of His name. + +b + +Even though I walk through the valley of the + +shadow of death, + +I will fear no evil, +for You are with me; +5 + +Your rod and Your staff, they comfort me. + +You prepare a table before me + +in the presence of my enemies. + +You anoint my head with oil; + +3 + +4 + +5 + +d + +The earth is the LORD’s, and the fullness + +2 + +thereof, + +the world and all who dwell therein. + +For He has founded it upon the seas + +and established it upon the waters. + +Who may ascend the hill of the LORD? +Who may stand in His holy place? + e +He who has clean hands and a pure heart, +who does not lift up his soul to an idol +or swear deceitfully. + +He will receive blessing from the LORD +and vindication from the God of his +f + +salvation. + +6 + +Such is the generation of those who seek Him, + +Selah + +who seek Your face, O God of Jacob. + +7 + +Lift up your heads, O gates! + +8 + +Be lifted up, O ancient doors, +that the King of Glory may enter! + +Who is this King of Glory? + +9 + +The LORD strong and mighty, +the LORD mighty in battle. + +Lift up your heads, O gates! + +10 + +Be lifted up, O ancient doors, +that the King of Glory may enter! + +Who is He, this King of Glory? + +The LORD of Hosts— +He is the King of Glory. +Psalm 25 +To You I Lift Up My Soul + +Selah + + Of David. g + +1 + 2 + +To You, O LORD, I lift up my soul; + +in You, my God, I trust. +Do not let me be put to shame; +3 + +do not let my enemies exult over me. +Surely none who wait for You will be put to + +shame; + +but those who engage in treachery + +without cause will be disgraced. +for a length of days d 1 +who seek your face, O Jacob + +my cup overflows. +b 4 +to vanity +to falsehood + +the valley of deep darkness +f 6 + +c 6 + +a 1 +e 4 +g 1 + +See Revelation 7:17. +Or +This psalm is an acrostic poem, each verse beginning with the successive letters of the Hebrew alphabet. + +LXX, Syriac, and two Hebrew manuscripts; MT + +Literally + + or + +Or + +Cited in 1 Cor. 10:26 + + 508 | Psalm 25:4 + +4 + +5 + +Show me Your ways, O LORD; +teach me Your paths. + +Guide me in Your truth and teach me, + +1 + +Psalm 26 +Vindicate Me, O LORD + + Of David. + +6 + +for You are the God of my salvation; +all day long I wait for You. + +Remember, O LORD, Your compassion and + +7 + +loving devotion, + +for they are from age to age. +Remember not the sins of my youth, + +nor my rebellious acts; + +remember me according to Your loving + +devotion, + +8 + +because of Your goodness, O LORD. + +Good and upright is the LORD; + +9 + +therefore He shows sinners the way. + +He guides the humble in what is right + +10 + +and teaches them His way. +All the LORD’s ways are loving and + +faithful + +11 + +to those who keep His covenant and His + +decrees. + +For the sake of Your name, O LORD, +forgive my iniquity, for it is great. + +12 + +Who is the man who fears the LORD? + +13 + +He will instruct him in the path chosen + +for him. + +His soul will dwell in prosperity, + +14 + +and his descendants will inherit + +the land. + +15 + +The LORD confides in those who fear Him, +and reveals His covenant to them. + +My eyes are always on the LORD, + +16 + +for He will free my feet from the mesh. + +Turn to me and be gracious, + +17 + +for I am lonely and afflicted. +The troubles of my heart increase; + +18 + +free me from my distress. + +Consider my affliction and trouble, + +19 + +and take away all my sins. + +Consider my enemies, for they are many, +and they hate me with vicious hatred. + +20 + +Guard my soul and deliver me; +let me not be put to shame, +for I take refuge in You. +a + +21 + +May integrity and uprightness preserve me, + +22 + +because I wait for You. + +Vindicate me, O LORD! + +For I have walked with integrity; +2 + +I have trusted in the LORD without + b + +wavering. + +Test me, O LORD, and try me; + +3 + +examine my heart + + and mind. + +4 + +For Your loving devotion is before my eyes, + +and I have walked in Your truth. + +I do not sit with deceitful men, + +5 + +nor keep company with hypocrites. + +I hate the mob of evildoers, + +6 + +and refuse to sit with the wicked. + +I wash my hands in innocence + +7 + +that I may go about Your altar, O LORD, + +to raise my voice in thanksgiving + +and declare all Your wonderful works. + +O LORD, I love the house where You dwell, +the place where Your glory resides. +Do not take my soul away with sinners, +or my life with men of bloodshed, +in whose hands are wicked schemes, + +whose right hands are full of bribes. + +8 + +9 + +10 + +11 + +12 + +But I will walk with integrity; + +redeem me and be merciful to me. + +My feet stand on level ground; + +in the congregations I will bless the LORD. + +Psalm 27 +The LORD Is My Salvation + + Of David. + +1 + +The LORD is my light and my salvation— + +whom shall I fear? + +The LORD is the stronghold of my life— +2 + +whom shall I dread? + +When the wicked came upon me to devour + +3 + +my flesh, + +my enemies and foes stumbled and fell. + +Though an army encamps around me, + +my heart will not fear; + +though a war breaks out against me, + +4 + +I will keep my trust. + +One thing I have asked of the LORD; + +this is what I desire: + +to dwell in the house of the LORD + +Redeem Israel, O God, +because my hope is in You +from all its distress. + +a 21 + +because I wait for You, O Lord + +all the days of my life, + +my kidneys + +b 2 + +Or + +; LXX + +Hebrew + + to gaze on the beauty of the LORD +5 +and seek Him in His temple. + +For in the day of trouble + +He will hide me in His shelter; + +He will conceal me under the cover of His +6 + +tent; + +He will set me high upon a rock. + +Then my head will be held high + +above my enemies around me. + +At His tabernacle I will offer sacrifices with + +7 + +shouts of joy; + +I will sing and make music to the LORD. + +Hear, O LORD, my voice when I call; +be merciful and answer me. +My heart said, “Seek His face.” + +8 + +9 + +Your face, O LORD, I will seek. + +Hide not Your face from me, + +nor turn away Your servant in anger. + +You have been my helper; + +10 + +do not leave me or forsake me, +O God of my salvation. + +11 + +Though my father and mother forsake me, + +the LORD will receive me. +Teach me Your way, O LORD, + +12 + +and lead me on a level path, +because of my oppressors. + +Do not hand me over to the will of my foes, +for false witnesses rise up against me, +breathing out violence. + +13 + +Still I am certain to see + +14 + +the goodness of the LORD +in the land of the living. +Wait patiently for the LORD; +be strong and courageous. + +Wait patiently for the LORD! + +Psalm 28 +The LORD Is My Strength + + Of David. + +1 + +Psalm 29:10 | 509 + +who speak peace to their neighbors +4 +while malice is in their hearts. +Repay them according to their deeds + +and for their works of evil. + +Repay them for what their hands have done; +5 +bring back on them what they deserve. +Since they show no regard for the works of + +the LORD + +or what His hands have done, + +He will tear them down +6 + +and never rebuild them. + +Blessed be the LORD, + +7 + +for He has heard my cry for mercy. +The LORD is my strength and my shield; + +my heart trusts in Him, and I am helped. + +Therefore my heart rejoices, +8 + +and I give thanks to Him with my song. + +The LORD is the strength of His people, + +9 + +a stronghold of salvation for His anointed. +Save Your people and bless Your inheritance; +Psalm 29 +shepherd them and carry them forever. +Ascribe Glory to the LORD + + A Psalm of David. + +1 + +b + +Ascribe to the LORD, O heavenly beings, + +2 + +ascribe to the LORD glory and strength. +Ascribe to the LORD the glory due His name; +worship the LORD in the splendor of His + +c + +3 + +holiness. + +The voice of the LORD is over the waters; + +4 + +the God of glory thunders; +the LORD is heard over many waters. + +The voice of the LORD is powerful; + +5 + +the voice of the LORD is majestic. +The voice of the LORD breaks the cedars; + +6 + +the LORD shatters the cedars of Lebanon. + + d + +7 + +He makes Lebanon skip like a calf, + +and Sirion + + like a young wild ox. + +To You, O LORD, I call; + +be not deaf to me, O my Rock. + +For if You remain silent, +2 + +The voice of the LORD + +8 + +strikes with flames of fire. + +The voice of the LORD shakes the wilderness; + +I will be like those descending to the Pit. + +9 + +the LORD shakes the Wilderness of + e + +Hear my cry for mercy + +when I call to You for help, + +a + +when I lift up my hands +3 + +toward Your holy sanctuary. + +Kadesh. + +The voice of the LORD twists the oaks + +10 + +and strips the forests bare. +And in His temple all cry, “Glory!” + +Do not drag me away with the wicked, +Your innermost sanctuary +and with the workers of iniquity, +e 9 + +a 2 +d 6 + +Your Most Holy Place + +b 1 +LORD makes the deer to calve + or + +Or + +Or +That is, Mt. Hermon + +Or + +The LORD sits enthroned over the flood; +sons of God + +the LORD is enthroned as King forever. + +sons of might + +in holy attire + +c 2 + + or + +Or + + O LORD my God, I cried to You for help, + +3 + +6 + +510 | Psalm 29:11 + +11 + +The LORD gives His people strength; + +the LORD blesses His people with peace. + +Psalm 30 +You Turned My Mourning into Dancing + + A Psalm. A song for the dedication +of the temple. Of David. + +1 + +I will exalt You, O LORD, + +for You have lifted me up +and have not allowed my foes +2 + +to rejoice over me. + +and You healed me. + +O LORD, You pulled me up from Sheol; + +4 + +You spared me from descending into + +the Pit. + +a + +Sing to the LORD, O you His saints, + +5 + +and praise His holy name. + +For His anger is fleeting, + +but His favor lasts a lifetime. + +6 + +Weeping may stay the night, + +but joy comes in the morning. + +In prosperity I said, + +7 + +“I will never be shaken.” + +O LORD, You favored me; + +You made my mountain stand strong. + +When You hid Your face, +8 +I was dismayed. +To You, O LORD, I called, + +9 + +b +and I begged my Lord for mercy: +“What gain is there in my bloodshed, + + c + +in my descent to the Pit? + +10 + +Will the dust praise You? + +Will it proclaim Your faithfulness? + +Hear me, O LORD, and have mercy; + +11 + +O LORD, be my helper.” + +You turned my mourning into dancing; + +12 + +You peeled off my sackcloth and clothed + +me with joy, + +that my heart may sing Your praises and not + +be silent. + +Psalm 31 +O LORD my God, I will give thanks forever. +Into Your Hands I Commit My Spirit +(Luke 23:44–49) + + For the choirmaster. A Psalm of David. + +1 + +2 + +Incline Your ear to me; + +come quickly to my rescue. + +Be my rock of refuge, + +3 + +the stronghold of my deliverance. + +For You are my rock and my fortress; + +4 + +lead me and guide me for the sake of Your + +name. + +You free me from the net laid out for me, + + d + +5 + +for You are my refuge. + +Into Your hands I commit my spirit; + +You have redeemed me, O LORD, God + + e + +of truth. + +I hate + +7 + + those who cling to worthless idols, + +but in the LORD I trust. + +I will be glad and rejoice in Your loving + +devotion, + +8 + +for You have seen my affliction; +You have known the anguish of my soul. + +You have not delivered me to the enemy; +You have set my feet in the open. + +9 + +Be merciful to me, O LORD, +for I am in distress; +my eyes fail from sorrow, + +10 + +my soul and body as well. +For my life is consumed with grief +and my years with groaning; +my iniquity has drained my strength, +and my bones are wasting away. +Among all my enemies I am a disgrace, + +11 + +and among my neighbors even more. + +12 + +I am dreaded by my friends— + +they flee when they see me on the street. +I am forgotten like a dead man, out of mind. + +13 + +I am like a broken vessel. +For I hear the slander of many; +there is terror on every side. + +14 + +They conspire against me +and plot to take my life. + +15 + +But I trust in You, O LORD; +I say, “You are my God.” +My times are in Your hands; + +16 + +17 + +deliver me from my enemies +and from those who pursue me. +Make Your face shine on Your servant; +save me by Your loving devotion. + +In You, O LORD, I have taken refuge; +let me never be put to shame; +and praise the memorial of His holiness +save me by Your righteousness. +e 6 + +a 4 +d 5 + +b 9 + +O LORD, let me not be ashamed, +for I have called on You. +Let the wicked be put to shame; +to corruption +let them lie silent in Sheol. + +in my destruction + +c 9 + +You hate + +Or +Cited in Luke 23:46 + +; see Ex. 3:15. + +Or + +Or + +MT; one Hebrew manuscript, LXX, and Syriac + + 18 + +May lying lips be silenced— + +I said, “I will confess my transgressions to the + +Psalm 33:7 | 511 + +lips that speak with arrogance against the + +LORD,” + +and You forgave the guilt of my sin. + +6 + +Selah + +19 + +righteous, + +full of pride and contempt. + +How great is Your goodness + +which You have laid up for those who fear + +You, + +which You have bestowed before the sons of + +20 + +men + +on those who take refuge in You! +You hide them in the secret place of Your + +presence + +from the schemes of men. +You conceal them in Your shelter + +from accusing tongues. + +21 + +Blessed be the LORD, + +22 + +for He has shown me His loving devotion +in a city under siege. + +In my alarm I said, + +“I am cut off from Your sight!” +But You heard my plea for mercy +when I called to You for help. + +23 + +Love the LORD, all His saints. + +24 + +The LORD preserves the faithful, +but fully repays the arrogant. + +Be strong and courageous, +Psalm 32 +all you who hope in the LORD. +The Joy of Forgiveness +(Romans 4:1–12) + + Of David. A Maskil.a + +Blessed is he whose transgressions are + +b + +2 + +forgiven, + +whose sins are covered. + +Blessed is the man +c + +whose iniquity the LORD does not count + +3 + +against him, + +in whose spirit there is no deceit. + +When I kept silent, my bones became brittle + +4 + +from my groaning all day long. + +For day and night + + d + +Your hand was heavy upon me; + +my strength was drained + +as in the summer heat. + +5 + +1 + +1 + +Therefore let all the godly pray to You + +while You may be found. +Surely when great waters rise, +7 +they will not come near. + +You are my hiding place. + +You protect me from trouble; +You surround me with songs of + +8 + +deliverance. + +Selah + +I will instruct you and teach you the way you + +should go; + +9 + +I will give you counsel and watch over + +you. + +Do not be like the horse or mule, +which have no understanding; + +they must be controlled with bit and bridle + +10 + +to make them come to you. + +Many are the sorrows of the wicked, + +11 + +but loving devotion surrounds him who + +trusts in the LORD. + +Be glad in the LORD and rejoice, +O righteous ones; + +Psalm 33 +shout for joy, all you upright in heart. +Praise to the Creator +(Psalm 148:1–14) + +Rejoice in the LORD, O righteous ones; + +2 + +it is fitting for the upright to praise Him. + +Praise the LORD with the harp; + +3 + +make music to Him with ten strings. + +4 + +Sing to Him a new song; + +play skillfully with a shout of joy. + +5 + +For the word of the LORD is upright, +and all His work is trustworthy. + +6 + +The LORD loves righteousness and justice; +the earth is full of His loving devotion. + +By the word of the LORD the heavens were + +Selah + +made, + +Then I acknowledged my sin to You +and did not hide my iniquity. + +a 1 Maskil +b 1 +man whose sin the LORD does not count against him + +LXX + +Blessed is he whose lawless acts are forgiven, whose sins are covered + +c 2 + +Blessed is the + + is probably a musical or liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. + +my vitality was turned + +d 4 +; cited in Romans 4:7 + +LXX + +7 + +and all the stars by the breath of His + +mouth. + +He piles up the waters of the sea; + +He puts the depths into storehouses. + +; cited in Romans 4:8 + +Or + + 512 | Psalm 33:8 + +8 + +3 + +Let all the earth fear the LORD; + +9 + +let all the people of the world revere Him. + +4 + +Magnify the LORD with me; + +let us exalt His name together. + +10 + +For He spoke, and it came to be; + +He commanded, and it stood firm. + +11 + +The LORD frustrates the plans of the nations; +He thwarts the devices of the peoples. +The counsel of the LORD stands forever, + +12 + +the purposes of His heart to all + +generations. + +5 + +I sought the LORD, and He answered me; +He delivered me from all my fears. + +Those who look to Him are radiant with joy; + +6 + +their faces shall never be ashamed. +This poor man called out, and the LORD + +7 + +heard him; + +He saved him from all his troubles. + +Blessed is the nation whose God is the LORD, + +The angel of the LORD encamps around those + +13 + +the people He has chosen as His + +inheritance! + +8 + +who fear Him, +and he delivers them. + +14 + +The LORD looks down from heaven; + +He sees all the sons of men. + +15 + +From His dwelling place He gazes +on all who inhabit the earth. + +He shapes the hearts of each; + +16 + +He considers all their works. +No king is saved by his vast army; + +17 + +no warrior is delivered by his great + +strength. + +A horse is a vain hope for salvation; + +even its great strength cannot save. + +18 + +20 + +Surely the eyes of the LORD are on those who + +fear Him, + +19 + +on those whose hope is in His loving + +devotion + +to deliver them from death + +and keep them alive in famine. + +Our soul waits for the LORD; + +21 + +He is our help and our shield. + +For our hearts rejoice in Him, + +22 + +since we trust in His holy name. +May Your loving devotion rest on us, + +O LORD, + +Psalm 34 +as we put our hope in You. +Taste and See That the LORD Is Good +(1 Samuel 21:8–15) + + Of David, when he pretended to be insane before +Abimelech,a  so that the king +drove him away.b + +1 + +I will bless the LORD at all times; + +2 + +His praise will always be on my lips. + +My soul boasts in the LORD; + +a 1 Abimelech + +let the oppressed hear and rejoice. + +Achish + +Taste and see that the LORD is good; + +9 + +blessed is the man who takes refuge in + +Him! + +Fear the LORD, you His saints, + +10 + +for those who fear Him lack nothing. + +Young lions go lacking and hungry, + +11 + +but those who seek the LORD lack no good + +thing. + +Come, children, listen to me; + +12 + +I will teach you the fear of the LORD. + +13 + +Who is the man who delights in life, +who desires to see good days? + +14 + +Keep your tongue from evil + +and your lips from deceitful speech. + +15 + +Turn away from evil and do good; + +seek peace and pursue it. + +c + +16 + +The eyes of the LORD are on the righteous, +and His ears are inclined to their cry. + +d + +But the face of the LORD is against those who + +do evil, + +to wipe out all memory of them from the + +earth. + +17 + +18 + +The righteous cry out, and the LORD hears; +He delivers them from all their troubles. + +The LORD is near to the brokenhearted; + +He saves the contrite in spirit. + +20 + +Many are the afflictions of the righteous, + +but the LORD delivers him from them all. + +e + +He protects all his bones; + +not one of them will be broken. + +19 + +21 + +Evil will slay the wicked, + +22 + +and the haters of the righteous will be + +condemned. + +The LORD redeems His servants, + +and none who take refuge in Him will be + +condemned. +b 1 +c 15 + +to their prayer +This psalm is an acrostic poem, + +d 16 + + is another name for + +e 20 + +; see 1 Samuel 21–29 and 1 Kings 2:39. + +each verse beginning with the successive letters of the Hebrew alphabet. +1 Peter 3:10–12 + +Cited in John 19:36 + +LXX + +Cited in + + Psalm 35 +Contend with My Opponents, O LORD + Of David. + +1 + +Contend with my opponents, O LORD; + +2 + +fight against those who fight against me. + +3 + +Take up Your shield and buckler; +arise and come to my aid. + + a + +Draw the spear and javelin +pursuers; + + against my + +4 + +say to my soul: “I am your salvation.” + +May those who seek my life + +be disgraced and put to shame; + +may those who plan to harm me +5 + +be driven back and confounded. +May they be like chaff in the wind, + +6 + +as the angel of the LORD drives them + +away. + +May their path be dark and slick, + +7 + +as the angel of the LORD pursues. + +8 + +For without cause they laid their net for me; +without reason they dug a pit for my soul. + +May ruin befall them by surprise; + +9 + +may the net they hid ensnare them; +may they fall into the hazard they created. + +Then my soul will rejoice in the LORD + +10 + +and exult in His salvation. + +All my bones will exclaim, + +“Who is like You, O LORD, + +who delivers the afflicted from the aggressor, +the poor and needy from the robber?” + +11 + +Hostile witnesses come forward; + +12 + +they make charges I know nothing about. + +They repay me evil for good, + +13 + +to the bereavement of my soul. + +Yet when they were ill, +I put on sackcloth; + +b + +I humbled myself with fasting, + +14 + +but my prayers returned unanswered. + +I paced about + +as for my friend or brother; +I was bowed down with grief, + +15 + +Psalm 36:2 | 513 + +17 + +How long, O Lord, will You look on? + +18 + +Rescue my soul from their ravages, +my precious life from these lions. +Then I will give You thanks in the great + +19 + +assembly; + +I will praise You among many people. +Let not my enemies gloat over me without +d +nor those who hate me without reason + +cause, + +20 + +wink in malice. +For they do not speak peace, + +21 + +but they devise deceitful schemes +against those who live quietly in the land. + +22 + +They gape at me and say, + +“Aha, aha! Our eyes have seen!” +O LORD, You have seen it; be not silent. + +23 + +O Lord, be not far from me. +Awake and rise to my defense, + +24 + +to my cause, my God and my Lord! +Vindicate me by Your righteousness, + +25 + +O LORD my God, + +and do not let them gloat over me. + +Let them not say in their hearts, +“Aha, just what we wanted!” + +Let them not say, + +26 + +“We have swallowed him up!” + +May those who gloat in my distress +be ashamed and confounded; + +27 + +may those who exalt themselves over me +be clothed in shame and reproach. +May those who favor my vindication + +shout for joy and gladness; + +may they always say, “Exalted be the LORD + +28 + +who delights in His servant’s well-being.” + +Then my tongue will proclaim Your + +righteousness + +and Your praises all day long. + +Psalm 36 +The Transgression of the Wicked + + For the choirmaster. A Psalm of David, +the servant of the LORD. + +1 + +like one mourning for his mother. + +An oracle is in my heart + +But when I stumbled, they assembled in glee; + +regarding the transgression of the wicked + +they gathered together against me. + +Assailants I did not know + +16 + +c + +slandered me without ceasing. + +Like godless jesters at a feast, + +a 3 + +they gnashed their teeth at me. +and close the way + +b 13 + +returned to my bosom + +e 1 + +Or +15:25. + +Cited in Romans 3:18 + +Literally + +man: + +e + +There is no fear of God +2 +before his eyes. + +For his eyes are too full of conceit +to detect or hate his own sin. +Like a godless circle of mockers, +c 16 + +d 19 + +Or + +See John + + 514 | Psalm 36:3 + +3 + +6 + +The words of his mouth are wicked and + +He will bring forth your righteousness like + +deceitful; + +4 + +he has ceased to be wise and + +well-doing. + +Even on his bed he plots wickedness; + +5 + +he sets himself on a path that is not good; +he fails to reject evil. + +Your loving devotion, O LORD, reaches to the + +6 + +heavens, + +Your faithfulness to the clouds. +Your righteousness is like the highest + +mountains; + +7 + +Your judgments are like the deepest sea. +O LORD, You preserve man and beast. + +How precious is Your loving devotion, + +O God, + +8 + +that the children of men take refuge +in the shadow of Your wings! + +They feast on the abundance of Your house, +and You give them drink from Your river + +9 + +of delights. + +For with You is the fountain of life; + +10 + +in Your light we see light. + +Extend Your loving devotion to those who + +know You, + +11 + +and Your righteousness to the upright in + +heart. + +Let not the foot of the proud come against + +12 + +me, + +nor the hand of the wicked drive me away. + +There the evildoers lie fallen, + +Psalm 37 +thrown down and unable to rise. +Delight Yourself in the LORD +(1 Kings 2:1–9) + + Of David.a + +1 + +Do not fret over those who do evil; + +2 + +do not envy those who do wrong. + +For they wither quickly like grass +and wilt like tender plants. + +3 + +Trust in the LORD and do good; + +4 + +dwell in the land and cultivate + +faithfulness. + +Delight yourself in the LORD, + +7 + +the dawn, + +your justice like the noonday sun. + +Be still before the LORD + +and wait patiently for Him; + +do not fret when men prosper in their ways, +8 +when they carry out wicked schemes. + +9 + +Refrain from anger and abandon wrath; +do not fret—it can only bring harm. + +For the evildoers will be cut off, + +10 + +but those who hope in the LORD will + +inherit the land. + +Yet a little while, and the wicked will be no + +more; + +11 + +though you look for them, they will not be + + b + +found. + +But the meek will inherit the land + +and delight in abundant prosperity. + +13 + +The wicked scheme against the righteous + +and gnash their teeth at them, + +but the Lord laughs, + +seeing that their day is coming. + +The wicked have drawn the sword + +and bent the bow + +15 + +to bring down the poor and needy, + +to slay those whose ways are upright. +But their swords will pierce their own hearts, + +16 + +and their bows will be broken. + +Better is the little of the righteous + +17 + +than the abundance of many who are + +wicked. + +For the arms of the wicked will be broken, +but the LORD upholds the righteous. + +18 + +The LORD knows the days of the blameless, +and their inheritance will last forever. +In the time of evil they will not be ashamed, +and in the days of famine they will be + +satisfied. + +But the wicked and enemies of the LORD +will perish like the glory of the fields. + +They will vanish; + +like smoke they will fade away. + +12 + +14 + +19 + +20 + +21 + +5 + +and He will give you the desires of your + +heart. + +Commit your way to the LORD; + +a 1 +b 11 + +trust in Him, and He will do it. +the earth + +22 + +The wicked borrow and do not repay, + +but the righteous are gracious and giving. +Surely those He blesses will inherit the land, + +but the cursed will be destroyed. + +This psalm is an acrostic poem, each stanza beginning with the successive letters of the Hebrew alphabet. + +Or + +; see Matthew 5:5. + + 23 + +40 + +The steps of a man are ordered by the LORD + +24 + +The LORD helps and delivers them; + +who takes delight in his journey. +a + +He rescues and saves them from the + +Psalm 38:17 | 515 + +Though he falls, he will not be overwhelmed, + +25 + +for the LORD is holding his hand. + +I once was + + young and now am old, + +yet never have I seen the righteous + +26 + +abandoned + +or their children begging for bread. +They are ever generous and quick to lend, + +27 + +and their children are a blessing. + +28 + +Turn away from evil and do good, +so that you will abide forever. + +For the LORD loves justice + +and will not forsake His saints. + +They are preserved forever, + +29 + +but the offspring of the wicked will be cut + +off. + +The righteous will inherit the land + +30 + +and dwell in it forever. + +The mouth of the righteous man utters + +31 + +wisdom, + +and his tongue speaks justice. +The law of his God is in his heart; + +32 + +his steps do not falter. + +Though the wicked lie in wait for the + +33 + +righteous, + +and seek to slay them, + +the LORD will not leave them in their power + +34 + +or let them be condemned under + +judgment. + +Wait for the LORD and keep His way, + +and He will raise you up to inherit the + +land. + +When the wicked are cut off, + +35 + +you will see it. + +I have seen a wicked, ruthless man + +36 + +flourishing like a well-rooted native tree, + +37 + +yet he passed away and was no more; + +though I searched, he could not be found. + +Consider the blameless and observe the + +b + +38 + +upright, + +for posterity awaits the man of peace. +But the transgressors will all be destroyed; +the future of the wicked will be cut off. + +39 + +The salvation of the righteous is from the + +wicked, + +because they take refuge in Him. + +Psalm 38 +Do Not Rebuke Me in Your Anger +(Psalm 6:1–10) + + A Psalm of David, for remembrance. + +1 + +O LORD, do not rebuke me in Your anger + +2 + +or discipline me in Your wrath. + +For Your arrows have pierced me deeply, + +3 + +and Your hand has pressed down on me. + +There is no soundness in my body + +because of Your anger; +there is no rest in my bones +4 + +because of my sin. + +5 + +For my iniquities have overwhelmed me; +they are a burden too heavy to bear. + +6 + +My wounds are foul and festering +because of my sinful folly. + +I am bent and brought low; + +7 + +all day long I go about mourning. +For my loins are full of burning pain, + +8 + +and no soundness remains in my body. + +I am numb and badly crushed; +I groan in anguish of heart. + +9 + +O Lord, my every desire is before You; + +10 + +my groaning is not hidden from You. + +My heart pounds, my strength fails, + +11 + +and even the light of my eyes has faded. + +12 + +My beloved and friends shun my disease, +and my kinsmen stand at a distance. + +Those who seek my life lay snares; +those who wish me harm speak + +13 + +destruction, + +plotting deceit all day long. +But like a deaf man, I do not hear; + +14 + +and like a mute man, I do not open + +my mouth. + +15 + +I am like a man who cannot hear, +whose mouth offers no reply. + +I wait for You, O LORD; + +16 + +You will answer, O Lord my God. +For I said, “Let them not gloat over me— + +17 + +those who taunt me when my foot slips.” + +LORD; + +For I am ready to fall, + +a 24 + +He is their stronghold in time of trouble. +upholds him with His hand + +b 37 + +for there is a future for the man of peace + +and my pain is ever with me. + +Or + +Or + + 516 | Psalm 38:18 + +18 + +11 + +19 + +Yes, I confess my iniquity; + +I am troubled by my sin. + +a + +b + +20 + +21 + +Many are my enemies without cause, +and many hate me without reason. +Those who repay my good with evil +attack me for pursuing the good. + +22 + +Do not forsake me, O LORD; + +be not far from me, O my God. + +Come quickly to help me, +O Lord my Savior. + +Psalm 39 +I Will Watch My Ways + + For the choirmaster. For Jeduthun. +A Psalm of David. + +1 + +I said, “I will watch my ways + +so that I will not sin with my tongue; + +I will guard my mouth with a muzzle +2 + +as long as the wicked are present.” + +I was speechless and still; + +I remained silent, even from speaking + +3 + +good, + +and my sorrow was stirred. +My heart grew hot within me; +as I mused, the fire burned. + +4 + +Then I spoke with my tongue: +“Show me, O LORD, my end + +5 + +and the measure of my days. +Let me know how fleeting my life is. + +You, indeed, have made my days as + +handbreadths, + +and my lifetime as nothing before You. + +Truly each man at his best +exists as but a breath. + +6 + +Selah + +Surely every man goes about like a phantom; + +surely he bustles in vain; + +he heaps up riches + +7 + +not knowing who will haul them away. + +And now, O Lord, for what do I wait? + +8 + +My hope is in You. + +Deliver me from all my transgressions; + +9 + +do not make me the reproach of fools. + +I have become mute; + +10 + +I do not open my mouth +because of what You have done. + +Remove Your scourge from me; + +My enemies are vigorous and strong + +a 19 +gods + +I am perishing by the force of Your hand. +d 6 +who run after lies +One DSS manuscript; MT + or +10:5–7 + +Hebrew; some LXX manuscripts + +You discipline and correct a man for his + +iniquity, + +consuming like a moth what he holds + +dear; + +12 + +surely each man is but a vapor. + +Selah + +Hear my prayer, O LORD, + +and give ear to my cry for help; + +do not be deaf to my weeping. + +13 + +For I am a foreigner dwelling with You, +a stranger like all my fathers. + +Turn Your gaze away from me, +that I may again be cheered +before I depart and am no more.” + +Psalm 40 +I Waited Patiently for the LORD +(Psalm 70:1–5 ; Hebrews 10:1–18) + + For the choirmaster. A Psalm of David. + +1 + +I waited patiently for the LORD; + +2 + +He inclined to me and heard my cry. +He lifted me up from the pit of despair, + +out of the miry clay; +He set my feet upon a rock, +3 + +and made my footsteps firm. +He put a new song in my mouth, +a hymn of praise to our God. + +Many will see and fear + +4 + +and put their trust in the LORD. + +Blessed is the man + +who has made the LORD his trust, + +c + +who has not turned to the proud, +5 + +nor to those who lapse into falsehood. + +Many, O LORD my God, + +are the wonders You have done, + +and the plans You have for us— +none can compare to You— +if I proclaim and declare them, + +6 + +they are more than I can count. +d + +Sacrifice and offering You did not desire, + +but my ears You have opened. +Burnt offerings and sin offerings + +7 + +You did not require. + +8 + +Then I said, “Here I am, I have come— +it is written about me in the scroll: + + e + +I delight to do Your will, O my God; +Your law is within my heart.” +b 19 + +c 4 +but a body You prepared for me + +who turn aside to false +e 8 + +See John 15:25 + +Or + +Cited in Hebrews + + 9 + +I proclaim righteousness in the great + +assembly; + +10 + +behold, I do not seal my lips, +as You, O LORD, do know. + +I have not covered up Your righteousness in + +my heart; + +I have declared Your faithfulness and + +salvation; + +I have not concealed Your loving devotion + +11 + +and faithfulness +from the great assembly. + +Psalm 41:13 | 517 + +Psalm 41 +Victory over Betrayal +(John 13:18–30) + + For the choirmaster. A Psalm of David. + +1 + +Blessed is the one who cares for the poor; +the LORD will deliver him in the day + +2 + +of trouble. + +The LORD will protect and preserve him; + +He will bless him in the land + +3 + +and refuse to give him over +to the will of his foes. + +O LORD, do not withhold Your mercy + +The LORD will sustain him on his bed of + +4 + +illness + +and restore him from his bed of sickness. + +I said, “O LORD, be gracious to me; + +5 + +heal me, for I have sinned against + +You.” + +My enemies say with malice: + +6 + +“When will he die and be forgotten?” + +My visitor speaks falsehood; + +7 + +8 + +he gathers slander in his heart; +he goes out and spreads it abroad. +All who hate me whisper against me; +they imagine the worst for me: + +“A vile disease has been poured into him; + +9 + +he will never get up from where he lies!” + +Even my close friend whom I trusted, +the one who shared my bread, +has lifted up his heel against me. + +a + +10 + +But You, O LORD, be gracious to me and raise + +11 + +me up, + +that I may repay them. + +12 + +By this I know that You delight in me, + +for my enemy does not triumph over me. + +In my integrity You uphold me + +13 + +and set me in Your presence forever. + +Blessed be the LORD, the God of Israel, +from everlasting to everlasting. + +Amen and Amen. + +from me; + +12 + +Your loving devotion and faithfulness will + +always guard me. + +For evils without number surround + +me; + +my sins have overtaken me, so that + +I cannot see. + +They are more than the hairs of my + +13 + +head, + +and my heart has failed within me. + +Be pleased, O LORD, to deliver me; +hurry, O LORD, to help me. + +14 + +May those who seek my life + +be ashamed and confounded; + +15 + +may those who wish me harm +be repelled and humiliated. + +16 + +May those who say to me, “Aha, aha!” +be appalled at their own shame. + +May all who seek You + +rejoice and be glad in You; +may those who love Your salvation + +always say, “The LORD be + +17 + +magnified!” + +But I am poor and needy; + +may the Lord think of me. +You are my helper and deliverer; + +O my God, do not delay. + +a 9 + +Cited in John 13:18 + + BOOK II +Psalms 42–72 + +Psalm 42 +As the Deer Pants for the Water + + For the choirmaster. A Maskil of the sons +of Korah.a + +1 + +2 + +As the deer pants for streams of water, +so my soul longs after You, O God. +My soul thirsts for God, the living God. + + b + +3 + +When shall I come and appear in God’s + +presence? + +My tears have been my food +both day and night, + +while men ask me all day long, + +4 + +“Where is your God?” + +These things come to mind as I pour out my + +soul: + +how I walked with the multitude, + +leading the festive procession to the house + +5 + +of God + +with shouts of joy and praise. + +Why are you downcast, O my soul? +Why the unease within me? + +Put your hope in God, for I will yet praise Him +6 + +for the salvation of His presence. + +O my God, my soul despairs within me. + +Therefore I remember You + +from the land of Jordan and the peaks of +7 + +Hermon— + +even from Mount Mizar. + +Deep calls to deep + +in the roar of Your waterfalls; + +all Your breakers and waves +8 +have rolled over me. + +The LORD decrees His loving devotion by + +day, + +9 + +and at night His song is with me +as a prayer to the God of my life. + +1 + +11 + +Why are you downcast, O my soul? +Why the unease within me? +Put your hope in God, for I will yet + +praise Him, + +Psalm 43 +my Savior and my God. +Send Out Your Light + +1 + +Vindicate me, O God, and plead my case + +2 + +against an ungodly nation; +deliver me from deceitful and unjust men. + +For You are the God of my refuge. +Why have You rejected me? + +Why must I walk in sorrow + +3 + +because of the enemy’s oppression? + +Send out Your light and Your truth; + +let them lead me. + +Let them bring me to Your holy +4 + +mountain + +and to the place where You dwell. + +Then I will go to the altar of God, + +to God, my greatest joy. +I will praise You with the harp, + +5 + +O God, my God. + +Why are you downcast, O my soul? +Why the unease within me? + +Put your hope in God, for I will yet praise + +Him, + +Psalm 44 +my Savior and my God. +Redeem Us, O God +(Romans 8:35–39) + + For the choirmaster. A Maskil c  of the sons +of Korah. + +I say to God my Rock, + +“Why have You forgotten me? + +10 + +Why must I walk in sorrow + +because of the enemy’s oppression?” + +Like the crushing of my bones, +my enemies taunt me, + +while they say to me all day long, + +a 1 + +“Where is your God?” + +We have heard with our ears, O God; + +our fathers have told us +the work You did in their days, +2 + +in the days of old. + +With Your hand You drove out the nations + +and planted our fathers there; + +You crushed the peoples +and cast them out. +and see the face of God? + +Maskil + +b 2 + +c 1 Maskil + +In many Hebrew manuscripts Psalms 42 and 43 constitute one psalm. + +used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. +musical or liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. + +Or + + is probably a musical or liturgical term; + is probably a + + 3 + +20 + +For it was not by their sword that they took + +21 + +If we had forgotten the name of our God + +the land; + +or spread out our hands to a foreign god, + +their arm did not bring them victory. + +22 + +would not God have discovered, + +Psalm 45:7 | 519 + +It was by Your right hand, + +4 + +Your arm, and the light of Your face, +because You favored them. + +You are my King, O God, + +5 + +who ordains victories for Jacob. + +Through You we repel our foes; + +since He knows the secrets of the heart? +Yet for Your sake we face death all day long; + +d +we are considered as sheep to be + +23 + +slaughtered. + +24 + +Wake up, O Lord! Why are You sleeping? + +Arise! Do not reject us forever. + +6 + +through Your name we trample our + +25 + +Why do You hide Your face + +enemies. + +a + +For I do not trust in my bow, + +7 + +nor does my sword save me. +For You save us from our enemies; + +8 + +and forget our affliction and oppression? + +26 + +For our soul has sunk to the dust; +our bodies cling to the earth. + +Rise up; be our help! + +You put those who hate us to shame. + +In God we have boasted all day long, + +and Your name we will praise forever. Selah + +9 + +Redeem us on account of Your loving + +devotion. Psalm 45 + +My Heart Is Stirred by a Noble Theme +(1 Kings 3:1–15 ; 2 Chr. 1:1–13 ; Ps. 72:1–20) + +10 + +But You have rejected and humbled us; + +You no longer go forth with our armies. + +11 + +You have made us retreat from the foe, + + For the choirmaster. To the tune of “The Lilies.” +A Maskil e  of the sons of Korah. +A love song. + +and those who hate us have plundered us. + +1 + +You have given us up as sheep to be + +12 + +devoured; + +You have scattered us among the nations. + +13 + +You sell Your people for nothing; + +no profit do You gain from their sale. + +You have made us a reproach to our + +neighbors, + +14 + +a mockery and derision to those + +around us. + +You have made us a byword among the + b + +15 + +nations, +a laughingstock + + among the peoples. + +All day long my disgrace is before me, +and shame has covered my face, +at the voice of the scorner and reviler, + +16 + +17 + + f +My heart is stirred by a noble theme +as I recite my verses to the king; +my tongue is the pen of a skillful writer. + +2 + +You are the most handsome of men; +grace has anointed your lips; +therefore God has blessed you forever. + +3 + +Strap your sword at your side, O mighty + +4 + +warrior; + +appear in your majesty and splendor. + +In your splendor ride forth in victory +on behalf of truth and humility and + +justice; + +5 + +may your right hand show your awesome + +deeds. + +because of the enemy, bent on revenge. + +Your arrows pierce the hearts of the king’s + +All this has come upon us, + +6 + +foes; + +the nations fall beneath your feet. + +18 + +though we have not forgotten You +or betrayed Your covenant. +Our hearts have not turned back; + +19 + +our steps have not strayed from Your + +path. + + c + +But You have crushed us in the lair of + +jackals; + +You have covered us with deepest +b 14 +give me victory + +darkness. + +a 6 + +Your throne, O God, endures forever and + +7 + +ever, + +and justice is the scepter of Your kingdom. + +You have loved righteousness +and hated wickedness; + +g + +therefore God, your God, has anointed you +above your companions with the oil +d 22 +serpents + +dragons + +c 19 + +of joy. + +a shaking of the head + +e 1 Maskil +King + +Or + +f 1 + +in Romans 8:36 +and 142. +Or + +; similarly in verse 7 + +Cited + is probably a musical or liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, + +Literally + +g 7 + + or + +Or + +; here and throughout Psalm 45 + +Cited in Hebrews 1:8–9 + + 520 | Psalm 45:8 + +8 + +5 + +All your garments are fragrant + +with myrrh and aloes and cassia; +from palaces of ivory the harps make you + +9 + +glad. + +God is within her; she will not be moved. +God will help her when morning + +6 + +dawns. + +Nations rage, kingdoms crumble; + +7 + +The daughters of kings are among your + +the earth melts when He lifts His voice. + +honored women; + +10 + +the queen stands at your right hand, +adorned with the gold of Ophir. + +Listen, O daughter! Consider and incline your + +ear: + +11 + +Forget your people and your father’s + +house, + +12 + +and the king will desire your beauty; +bow to him, for he is your lord. + +13 + +The Daughter of Tyre will come with a gift; +men of wealth will seek your favor. + +14 + +All glorious is the princess in her chamber; +her gown is embroidered with gold. +In colorful garments she is led to the king; + +15 + +her virgin companions are brought before + +you. + +16 + +They are led in with joy and gladness; +they enter the palace of the king. + +The LORD of Hosts is with us; + +8 + +the God of Jacob is our fortress. + +Selah + +Come, see the works of the LORD, + +9 + +who brings devastation upon the earth. + +He makes wars to cease throughout the + +earth; + + b +He breaks the bow and shatters the spear; +He burns the shields + + in the fire. + +10 + +“Be still and know that I am God; + +11 + +I will be exalted among the nations, +I will be exalted over the earth.” + +The LORD of Hosts is with us; + +Selah + +the God of Jacob is our fortress. + +Psalm 47 +Clap Your Hands, All You Peoples + + For the choirmaster. A Psalm of the sons +of Korah. + +Your sons will succeed your fathers; + +17 + +you will make them princes throughout + +1 + +the land. + +I will commemorate your name through all + +generations; + +forever and ever. + +therefore the nations will praise you +Psalm 46 +God Is Our Refuge and Strength +(2 Kings 18:13–16 ; 2 Chronicles 32:1–8) + + For the choirmaster. Of the sons of Korah. +According to Alamoth.a  A song. + +1 + +God is our refuge and strength, + +2 + +an ever-present help in times of trouble. + +Therefore we will not fear, + +though the earth is transformed + +and the mountains are toppled +3 +into the depths of the seas, +though their waters roar and foam + +and the mountains quake in the surge. + +Selah + +4 + +There is a river whose streams delight the + +city of God, + +the holy place where the Most High + +Clap your hands, all you peoples; +shout unto God with a voice of + +2 + +triumph. + +3 + +How awesome is the LORD Most High, +the great King over all the earth! + +4 + +He subdues nations beneath us, +and peoples under our feet. +He chooses our inheritance for us, + +the pride of Jacob, whom He loves. Selah + +5 + +God has ascended amid shouts of joy, + +6 + +the LORD with the sound of the horn. + +7 + +Sing praises to God, sing praises; +c + +sing praises to our King, sing praises! + +For God is King of all the earth; +sing to Him a psalm of praise. + +8 + +God reigns over the nations; + +9 + +God is seated on His holy throne. +The nobles of the nations have assembled +as the people of the God of Abraham; +for the shields of the earth belong to God; + +a 1 Alamoth +of praise + +dwells. +sing praises with understanding + is probably a musical or liturgical term; here and in 1 Chronicles 15:20. + +Or + +Or + +He is highly exalted. + +b 9 + +chariots + +c 7 + +sing a Maskil + + or + + Psalm 48 +Broken Bondage + + A song. A Psalm of the sons of Korah. + +1 + +Great is the LORD, + +and greatly to be praised + +in the city of our God, +2 +His holy mountain. +Beautiful in loftiness, + + a + +the joy of all the earth, + +like the peaks of Zaphon +3 + + is Mount Zion, + +the city of the great King. + +God is in her citadels; + +He has shown Himself to be a fortress. + +For behold, the kings assembled; +they all advanced together. +They saw and were astounded; + +they fled in terror. + +Trembling seized them there, + +7 + +anguish like a woman in labor. + +b + +With a wind from the east + +You wrecked the ships of Tarshish. + +8 + +As we have heard, so we have seen +in the city of the LORD of Hosts, + +in the city of our God: +9 + +God will establish her forever. + +4 + +5 + +6 + +Psalm 49:20 | 521 + +2 + +both low and high, + +3 + +rich and poor alike. + +My mouth will impart wisdom, + +4 + +and the meditation of my heart will bring + +understanding. + +I will incline my ear to a proverb; + +5 + +I will express my riddle with the harp: + +Why should I fear in times of trouble, + +6 + +when wicked usurpers surround me? + e + +They trust in their wealth + +7 + +and boast in their great riches. + +No man can possibly redeem his brother + +8 + +or pay his ransom to God. + +9 + +For the redemption of his soul is costly, +and never can payment suffice, + +that he should live on forever + +10 + +and not see decay. + +For it is clear that wise men die, + +and the foolish and the senseless both + +11 + +perish + f + +and leave their wealth to others. + +Their graves + + are their eternal homes— + +their dwellings for endless generations— +even though their lands were their + +12 + +Selah + +namesakes. + +13 + +But a man, despite his wealth, cannot endure; + +he is like the beasts that perish. + + g + +10 + +Within Your temple, O God, + +we contemplate Your loving devotion. + +11 + +Your name, O God, like Your praise, +reaches to the ends of the earth; +Your right hand is full of righteousness. + + c + +Mount Zion is glad, +the daughters + of Judah rejoice, +on account of Your judgments. + +12 + +13 + +March around Zion, encircle her, + +count her towers, + +14 + +consider her ramparts, tour her citadels, +that you may tell the next generation. +For this God is our God forever and ever; +He will be our guide even till death. + +Psalm 49 +The Evanescence of Wealth +(Ecclesiastes 5:8–20) + +d + + For the choirmaster. A Psalm of the sons +of Korah. + +1 + +This is the fate of the foolish + +and their followers who endorse their + +Selah + +14 + +sayings. + +Like sheep they are destined for Sheol. + +Death will be their shepherd. + +15 + +The upright will rule them in the morning, +and their form will decay in Sheol, +far from their lofty abode. + +But God will redeem my life from Sheol, +for He will surely take me to Himself. + +Selah + +16 + +17 + +Do not be afraid when a man grows rich, + +when the splendor of his house increases. +For when he dies, he will carry nothing away; +his abundance will not follow him down. +Though in his lifetime he blesses his soul— + +18 + +19 + +and men praise you when you prosper— + +20 + +he will join the generation of his fathers, +who will never see the light of day. + +Hear this, all you peoples; + +a 2 +c 11 + +in the far north +listen, all inhabitants of the world, +the villages + +Or +Or + +He will guide us beyond death + +d 14 +; the most sacred mountain of the Canaanites was +the way of the foolish +g 13 + +e 7 + +Their inward thoughts +Or + +Targum; Hebrew + +Or + +A man who has riches without understanding + +Zaphon + +b 7 + +a fleet of trading ships + +is like the beasts that perish. +redeem another +Or + +f 11 + +Or + +LXX, Syriac, and Aramaic + + 522 | Psalm 50:1 + +Psalm 50 +The Mighty One Calls + + A Psalm of Asaph. + +1 + +The Mighty One, God the LORD, + +2 + +speaks and summons the earth +from where the sun rises to where it sets. + +From Zion, perfect in beauty, + +3 + +God shines forth. + +Our God approaches and will not be silent! + +4 + +Consuming fire precedes Him, +and a tempest rages around Him. + +He summons the heavens above, + +5 + +and the earth, that He may judge His + +people: + +“Gather to Me My saints, + +6 + +who made a covenant with Me by + +sacrifice.” + +a + +And the heavens proclaim His righteousness, +Selah + +7 + +for God Himself is Judge. + +“Hear, O My people, and I will speak, + +8 + +O Israel, and I will testify against you: +I am God, your God. + +I do not rebuke you for your sacrifices, + +9 + +and your burnt offerings are ever before + +Me. + +10 + +I have no need for a bull from your stall + +or goats from your pens, + +11 + +12 + +for every beast of the forest is Mine— +the cattle on a thousand hills. +I know every bird in the mountains, + +and the creatures of the field are Mine. + +If I were hungry, I would not tell you, + +13 + +for the world is Mine, and the fullness + +thereof. + +14 + +Do I eat the flesh of bulls, + +or drink the blood of goats? +Sacrifice a thank offering to God, + +15 + +and fulfill your vows to the Most High. + +Call upon Me in the day of trouble; + +16 + +I will deliver you, and you will honor Me.” + +To the wicked, however, God says, + +17 + +“What right have you to recite My statutes +and to bear My covenant on your lips? + +18 + +For you hate My instruction + +and cast My words behind you. +When you see a thief, you befriend him, + +19 + +and throw in your lot with adulterers. + +You unleash your mouth for evil + +20 + +21 + +You sit and malign your brother; + +you slander your own mother’s son. + b + +You have done these things, and I kept silent; + +you thought I was +But now I rebuke you + + just like you. + +c + +22 + +and accuse you to your face. + +Now consider this, you who forget God, + +23 + +lest I tear you to pieces, +with no one to rescue you: + +He who sacrifices a thank offering honors Me, +and to him who rightly orders his way, +Psalm 51 +I will show the salvation of God.” +Create in Me a Clean Heart, O God +(2 Samuel 12:1–12) + + For the choirmaster. A Psalm of David. +When Nathan the prophet came to him +after his adultery with Bathsheba. + +1 + +d + +Have mercy on me, + + O God, + +according to Your loving devotion; + +according to Your great compassion, +2 + +blot out my transgressions. +Wash me clean of my iniquity + +3 + +and cleanse me from my sin. + +For I know my transgressions, + +4 + +and my sin is always before me. +Against You, You only, have I sinned + +and done what is evil in Your sight, +so that You may be proved right when You + +e + +5 + +speak + +and blameless when You judge. +Surely I was brought forth in iniquity; + +6 + +I was sinful when my mother conceived + +me. + +Surely You desire truth in the inmost being; + +7 + +You teach me wisdom in the inmost place. + +Purify me with hyssop, and I will be clean; + +8 + +wash me, and I will be whiter than snow. + +Let me hear joy and gladness; + +9 + +let the bones You have crushed rejoice. + +Hide Your face from my sins + +and blot out all my iniquities. + +10 + +12 + +11 + +Create in me a clean heart, O God, + +and renew a right spirit within me. +Cast me not away from Your presence; +take not Your Holy Spirit from me. +Restore to me the joy of Your salvation, +and sustain me with a willing spirit. +and I set it in order before your eyes +c 21 + +a 6 +d 1 + +and harness your tongue to deceit. +He is a God of justice +e 4 +Be gracious to me + +you thought the ‘I AM’ was +and victorious when You judge +Or + +b 21 + +Or +Or + +LXX + +Literally +; cited in Romans 3:4 + + 13 + +7 + +Psalm 53:6 | 523 + +Then I will teach transgressors Your ways, + +“Look at the man + +14 + +and sinners will return to You. + +Deliver me from bloodguilt, O God, + +the God of my salvation, +and my tongue will sing of Your + +15 + +righteousness. +O Lord, open my lips, + +16 + +who did not make God his refuge, +but trusted in the abundance of his wealth + +8 + +and strengthened himself by destruction.” + +But I am like an olive tree + +flourishing in the house of God; +I trust in the loving devotion of God +9 + +and my mouth will declare Your praise. +For You do not delight in sacrifice, or I would + +forever and ever. +I will praise You forever, + +17 + +bring it; + +because You have done it. + +You take no pleasure in burnt offerings. + +I will wait on Your name— + +The sacrifices of God are a broken spirit; + +18 + +a broken and a contrite heart, +O God, You will not despise. + +19 + +In Your good pleasure, cause Zion to prosper; + +build up the walls of Jerusalem. + +Then You will delight in righteous sacrifices, + +in whole burnt offerings; +Psalm 52 +then bulls will be offered on Your altar. +Why Do You Boast of Evil? +(1 Samuel 22:6–23) + + For the choirmaster. A Maskil a  of David. After +Doeg the Edomite went to Saul and told him, +“David has gone to the house of Ahimelech.” + +1 + +Why do you boast of evil, O mighty man? +The loving devotion of God endures all + +2 + +day long. + +Your tongue devises destruction + +3 + +like a sharpened razor, +O worker of deceit. + +You love evil more than good, + +falsehood more than speaking truth. + +Selah + +4 + +You love every word that devours, + +5 + +O deceitful tongue. + +Surely God will bring you down to everlasting + +ruin; + +He will snatch you up and tear you away + +from your tent; + +He will uproot you from the land of the + +Selah + +living. + +6 + +for it is good— +in the presence of Your saints. + +Psalm 53 +The Fool Says There Is No God +(Psalm 14:1–7 ; Isaiah 59:1–17 ; +Romans 3:9–20) + + For the choirmaster. According to Mahalath.b +A Maskil c  of David. + +1 + +The fool says in his heart, +“There is no God.” + +They are corrupt; their ways are vile. +There is no one who does good. + +2 + +God looks down from heaven +upon the sons of men +to see if any understand, +3 +if any seek God. +All have turned away, + + d + +they have together become corrupt; + +e + +there is no one who does good, + +4 + +not even one. + +Will the workers of iniquity never learn? + +They devour my people like bread; +5 +they refuse to call upon God. + +There they are, overwhelmed with dread, +where there was nothing to fear. + +For God has scattered the bones +of those who besieged you. + +You put them to shame, + +6 + +for God has despised them. + +Oh, that the salvation of Israel would come + +f + +from Zion! + +The righteous will see and fear; + +they will mock the evildoer, saying, + +a 1 Maskil +b 1 Mahalath + +When God restores His captive people, +let Jacob rejoice, let Israel be glad! + +c 1 Maskil + + is probably a musical or liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. + +worthless + +e 3 + +d 3 + +f 6 +term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. + + is probably a musical or liturgical term; see also Psalm 88:1. + +the fortunes of His people + + is probably a musical or liturgical + +LXX + +Cited in Romans 3:10–12 + +Or + + 524 | Psalm 54:1 + +Psalm 54 +Save Me by Your Name +(1 Samuel 23:7–29) + + For the choirmaster. With stringed instruments. +A Maskil a  of David. +When the Ziphites went to Saul and said, +“Is David not hiding among us?” + +1 + +Save me, O God, by Your name, + +2 + +and vindicate me by Your might! + +Hear my prayer, O God; + +3 + +listen to the words of my mouth. + +For strangers rise up against me, + +and ruthless men seek my life— +men with no regard for God. + +Selah + +4 + +Surely God is my helper; + +5 + +the Lord is the sustainer of my soul. + +6 + +He will reward my enemies with evil. +In Your faithfulness, destroy them. + +Freely I will sacrifice to You; + +7 + +I will praise Your name, O LORD, for it is + +good. + +For He has delivered me from every trouble, +and my eyes have looked in triumph on + +my foes. Psalm 55 + +Cast Your Burden upon the LORD +(2 Samuel 17:15–29) + + For the choirmaster. With stringed instruments. +A Maskil b  of David. + +1 + +Listen to my prayer, O God, + +2 + +and do not ignore my plea. +Attend to me and answer me. +3 + +I am restless in my complaint, + +and distraught + +at the voice of the enemy, + +at the pressure of the wicked. +For they bring down disaster upon me +4 +and resent me in their anger. + +My heart pounds within me, + +5 + +and the terrors of death assail me. + +Fear and trembling grip me, + +6 + +and horror has overwhelmed me. +I said, “Oh, that I had wings like a dove! + +7 + +I would fly away and find rest. + +How far away I would flee! + +In the wilderness I would remain. Selah + +a 1 Maskil + +8 + +9 + +I would hurry to my shelter, + +far from this raging tempest.” + +10 + +O Lord, confuse and confound their speech, +for I see violence and strife in the city. + +11 + +Day and night they encircle the walls, +while malice and trouble lie within. + +Destruction is within; + +12 + +oppression and deceit never leave the + +streets. + +For it is not an enemy who insults me; + +that I could endure. + +13 + +It is not a foe who rises against me; + +from him I could hide. + +14 + +But it is you, a man like myself, + +my companion and close friend. +We shared sweet fellowship together; + +15 + +we walked with the crowd into the house + +of God. + +Let death seize them by surprise; + +16 + +let them go down to Sheol alive, +for evil is with them in their homes. + +17 + +But I call to God, + +and the LORD saves me. + +Morning, noon, and night, I cry out in + +18 + +distress, + +and He hears my voice. +He redeems my soul in peace + +19 + +from the battle waged against me, +even though many oppose me. +God will hear and humiliate them— +the One enthroned for the ages— + +Selah + +20 + +because they do not change + +and they have no fear of God. + +21 + +My companion attacks his friends; + +he violates his covenant. +His speech is smooth as butter, + +but war is in his heart. +His words are softer than oil, + +22 + +yet they are swords unsheathed. + +Cast your burden upon the LORD + +23 + +and He will sustain you; +He will never let the righteous be shaken. + +But You, O God, will bring them down + +to the Pit of destruction; +men of bloodshed and deceit + +will not live out half their days. + +But I will trust in You. + +b 1 Maskil + + is probably a musical or liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, 142. + + is + +probably a musical or liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, 142. + + Psalm 56 +Be Merciful to Me, O God +(1 Samuel 21:8–15) + + For the choirmaster. To the tune of “A Dove on +Distant Oaks.” A Miktam a  of David, +when the Philistines seized him in Gath. + +1 + +Be merciful to me, O God, + +2 + +3 + +for men are hounding me; +all day they press their attack. +My enemies pursue me all day long, +for many proudly assail me. + +When I am afraid, + +4 + +I put my trust in You. +In God, whose word I praise— + +in God I trust. +I will not be afraid. +5 + +What can man do to me? + +All day long they twist my words; + +6 + +all their thoughts are on my demise. + +7 + +They conspire, they lurk, +they watch my steps +while they wait to take my life. +In spite of such sin, will they escape? + + b + +In Your anger, O God, cast down the + +8 + +nations. + +c + +You have taken account of my + +wanderings. + +9 + +Put my tears in Your bottle— +are they not in Your book? +Then my enemies will retreat +on the day I cry for help. +By this I will know that God is on + +10 + +my side. + +In God, whose word I praise, + +11 + +in the LORD, whose word I praise, + +in God I trust; I will not be afraid. +What can man do to me? + +12 + +Your vows are upon me, O God; + +13 + +I will render thank offerings to You. + +For You have delivered my soul from + +death, + +and my feet from stumbling, + +that I may walk before God + +in the light of life. + +a 1 Miktam + +Psalm 57:11 | 525 + +Psalm 57 +In You My Soul Takes Refuge +(1 Samuel 22:1–5 ; Psalm 108:1–13 ; +Psalm 142:1–7) + + For the choirmaster. To the tune of +“Do Not Destroy.” A Miktam d  of David, +when he fled from Saul into the cave. + +1 + +Have mercy on me, O God, have mercy, +for in You my soul takes refuge. +In the shadow of Your wings I will take + +2 + +shelter + +e + +until the danger has passed. + +I cry out to God Most High, + +3 + +to God who fulfills His purpose for me. +He reaches down from heaven and saves me; +He rebukes those who trample me. Selah + +God sends forth +4 + +His loving devotion and His truth. + +My soul is among the lions; + +I lie down with ravenous beasts— + +with men whose teeth are spears and arrows, + +5 + +whose tongues are sharp swords. + +Be exalted, O God, above the heavens; +may Your glory cover all the earth. + +6 + +They spread a net for my feet; +my soul was despondent. + +They dug a pit before me, + +but they themselves have fallen into it! + +Selah + +7 + +My heart is steadfast, O God, my heart is + +8 + +steadfast. + f +I will sing and make music. + +Awake, my glory! + +9 + +Awake, O harp and lyre! +I will awaken the dawn. + +I will praise You, O Lord, among the nations; + +10 + +I will sing Your praises among the + +peoples. + +For Your loving devotion reaches to the + +11 + +heavens, + +and Your faithfulness to the clouds. +Be exalted, O God, above the heavens; +may Your glory cover all the earth. +do not let them escape + +b 7 + +do not + +c 8 +Elohim-Elyon + +sorrows +f 8 + +d 1 Miktam +Awake, my soul! + + is probably a musical or liturgical term; used for Psalms 16 and 56–60. +e 2 + +; MT + is probably a musical or liturgical term; used for Psalms 16 and + +Or + +does not include +56–60. + +Hebrew + +. + +Or + +Or + + 526 | Psalm 58:1 + +Psalm 58 +God Judges the Earth + + For the choirmaster. To the tune of +“Do Not Destroy.” A Miktam a  of David. + +1 + +Do you indeed speak justly, O rulers? + +2 + +Do you judge uprightly, O sons of men? + +No, in your hearts you devise injustice; + +3 + +with your hands you mete out violence on + +the earth. + +The wicked are estranged from the womb; + +4 + +the liars go astray from birth. + +Their venom is like the venom of a snake, + +5 + +like a cobra that shuts its ears, + +refusing to hear the tune of the charmer + +6 + +who skillfully weaves his spell. + +7 + +O God, shatter their teeth in their mouths; +O LORD, tear out the fangs of the lions. + +May they vanish + +like water that runs off; + +b + +when they draw the bow, +8 + +may their arrows be blunted. +Like a slug that dissolves in its slime, +like a woman’s stillborn child, +may they never see the sun. +Before your pots can feel the burning + +9 + +thorns— + +10 + +whether green or dry— +He will sweep them away. + +The righteous will rejoice + +when they see they are avenged; + +11 + +they will wash their feet + +in the blood of the wicked. + +Then men will say, + +“There is surely a reward for the + +righteous! + +There is surely a God who judges the +Psalm 59 +earth!” +Deliver Me from My Enemies +(1 Samuel 19:1–24) + + For the choirmaster. To the tune of +“Do Not Destroy.” A Miktam c  of David, +when Saul sent men to watch David’s house +in order to kill him. + +1 + +Deliver me from my enemies, O my God; + +2 + +protect me from those who rise against + +me. + +Deliver me from workers of iniquity, + +and save me from men of bloodshed. + +a 1 Miktam +may they wither like grass + +c 1 Miktam + +3 + +See how they lie in wait for me. + +Fierce men conspire against me +for no transgression or sin of my own, + +4 + +O LORD. +For no fault of my own, + +5 + +they move swiftly to attack me. +Arise to help me, and take notice. +O LORD God of Hosts, the God of Israel, + +rouse Yourself to punish all the nations; +show no mercy to the wicked traitors. + +Selah + +6 + +They return in the evening, snarling like dogs + +7 + +and prowling around the city. + +See what they spew from their mouths— + +8 + +sharp words from their lips: +“For who can hear us?” + +9 + +But You, O LORD, laugh at them; +You scoff at all the nations. + +10 + +I will keep watch for You, O my strength, +because You, O God, are my fortress. +My God of loving devotion will come to meet + +11 + +me; + +God will let me stare down my foes. + +Do not kill them, + +12 + +or my people will forget. +Scatter them by Your power, +and bring them down, +O Lord, our shield. +By the sins of their mouths + +13 + +and the words of their lips, +let them be trapped in their pride, +in the curses and lies they utter. + +Consume them in wrath; + +consume them till they are no more, +so it may be known to the ends of the earth + +Selah + +14 + +that God rules over Jacob. + +They return in the evening, + +15 + +snarling like dogs +and prowling around the city. + +They scavenge for food, + +16 + +and growl if they are not satisfied. + +But I will sing of Your strength + +and proclaim Your loving devotion in the + +morning. +For You are my fortress, + +17 + +my refuge in times of trouble. +To You, O my strength, I sing praises, +for You, O God, are my fortress, +my God of loving devotion. +b 7 + +when they are trodden down, + + is probably a musical or liturgical term; used for Psalms 16 and 56–60. + +Or + + is probably a musical or liturgical term; used for Psalms 16 and 56–60. + + Psalm 60 +Victory with God +(2 Samuel 8:1–14 ; 1 Chronicles 18:1–13 ; +Psalm 108:1–13) + + For the choirmaster. To the tune of “The Lily of +the Covenant.” A Miktam a  of David for +instruction. When he fought Aram-naharaim b +and Aram-zobah,c  and Joab returned and struck +down 12,000 Edomites in the Valley of Salt. + +1 + +You have rejected us, O God; +You have broken us; + +You have been angry; +2 + +restore us! + +You have shaken the land + +and torn it open. + +Heal its fractures, +3 + +for it is quaking. + +You have shown Your people hardship; + +we are staggered from the wine You made + +4 + +us drink. + +You have raised a banner for those who fear + +d + +You, + +that they may flee the bow. + +Selah + +5 + +6 + +Respond and save us with Your right hand, +that Your beloved may be delivered. + + e + +Psalm 62:4 | 527 + +Psalm 61 +You Have Heard My Vows + + For the choirmaster. +With stringed instruments. Of David. + +1 + +Hear my cry, O God; + +2 + +attend to my prayer. + +From the ends of the earth I call out to You + +whenever my heart is faint. + +Lead me to the rock +3 + +that is higher than I. + +For You have been my refuge, + +4 + +a tower of strength against the enemy. + +Let me dwell in Your tent forever + +and take refuge in the shelter of Your + +Selah + +5 + +wings. + +For You have heard my vows, O God; +You have given me the inheritance +reserved for those who fear Your name. + +6 + +Increase the days of the king’s life; + +7 + +may his years span many generations. + +May he sit enthroned in God’s presence + +forever; + +8 + +appoint Your loving devotion +and Your faithfulness to guard him. +Then I will ever sing praise to Your name + +and fulfill my vows day by day. + +Psalm 62 +Waiting on God + +God has spoken from His sanctuary: + +“I will triumph! + +I will parcel out Shechem +7 + +and apportion the Valley of Succoth. + +Gilead is Mine, and Manasseh is Mine; +Ephraim is My helmet, Judah is My + +8 + +scepter. +Moab is My washbasin; + +upon Edom I toss My sandal; +over Philistia I shout in triumph.” + +9 + +Who will bring me to the fortified city? + +10 + +Who will lead me to Edom? +Have You not rejected us, O God? + + For the choirmaster. According to Jeduthun. +A Psalm of David. + +1 + +In God alone my soul finds rest; + +2 + +my salvation comes from Him. +He alone is my rock and my salvation. + +3 + +He is my fortress; +I will never be shaken. + +How long will you threaten a man? +Will all of you throw him down + +like a leaning wall +4 + +or a tottering fence? + +11 + +Will You no longer march out, O God, with + +They fully intend to cast him down from his + +our armies? + +Give us aid against the enemy, + +12 + +lofty perch; +they delight in lies; + +for the help of man is worthless. +With God we will perform with valor, +and He will trample our enemies. +Aram of the two rivers +c 1 + means +in His holiness +e 6 +Mesopotamia. + +a 1 Miktam +naharaim + +Or + + is probably a musical or liturgical term; used for Psalms 16 and 56–60. + +that it may be displayed because of truth + +That is, Mesopotamia; + +d 4 + +, likely the region between the Euphrates and Balih Rivers in northwestern + +That is, the land northeast of Damascus + +Or + +with their mouths they bless, +but inwardly they curse. + +Selah + +b 1 + +Aram- + + 528 | Psalm 62:5 + +5 + +7 + +Rest in God alone, O my soul, + +6 + +for my hope comes from Him. +He alone is my rock and my salvation; + +7 + +For You are my help; + +8 + +I will sing for joy in the shadow of + +Your wings. + +He is my fortress; I will not be shaken. +My salvation and my honor rest on God, my + +My soul clings to You; + +9 + +Your right hand upholds me. + +8 + +strong rock; +my refuge is in God. + +Trust in Him at all times, O people; + +pour out your hearts before Him. +God is our refuge. + +Selah + +9 + +Lowborn men are but a vapor; +the exalted are but a lie. + +10 + +Weighed on the scale, they go up; +together they are but a vapor. + +Place no trust in extortion + +or false hope in stolen goods. + +If your riches increase, + +11 + +do not set your heart upon them. + +God has spoken once; + +12 + +I have heard this twice: +that power belongs to God, +a + +and loving devotion to You, O Lord. + +For You will repay each man +according to his deeds. + +Psalm 63 +Thirsting for God +(2 Samuel 15:30–37) + +10 + +11 + +But those who seek my life to destroy it +will go into the depths of the earth. +They will fall to the power of the sword; +they will become a portion for foxes. + +But the king will rejoice in God; + +all who swear by Him will exult, +for the mouths of liars will be shut. +Psalm 64 +The Hurtful Tongue +(James 3:1–12) + + For the choirmaster. +A Psalm of David. + +1 + +Hear, O God, my voice of complaint; + +2 + +preserve my life from dread of the + +enemy. + +Hide me from the scheming of the + +3 + +wicked, + +from the mob of workers of iniquity, +who sharpen their tongues like swords +and aim their bitter words like + +4 + +arrows, + + A Psalm of David, +when he was in the Wilderness of Judah. + +ambushing the innocent in seclusion, +shooting suddenly, without fear. + +5 + +1 + +O God, You are my God. +Earnestly I seek You; +my soul thirsts for You. + +My body yearns for You +2 + +in a dry and weary land without water. + +So I have seen You in the sanctuary + +3 + +and beheld Your power and glory. + +Because Your loving devotion is better than + +4 + +life, + +my lips will glorify You. + +5 + +So I will bless You as long as I live; + +in Your name I will lift my hands. + +My soul is satisfied as with the richest of + +6 + +foods; + +with joyful lips my mouth will praise You. + +When I remember You on my bed, + +I think of You through the watches of + +a 12 + +the night. + +Cited in Romans 2:6 + +They hold fast to their evil purpose; +they speak of hiding their snares. +“Who will see them?” they say. + +6 + +They devise injustice and say, + +“We have perfected a secret plan.” +For the inner man and the heart are + +7 + +mysterious. + +8 + +But God will shoot them with arrows; +suddenly they will be wounded. + +They will be made to stumble, + +their own tongues turned against + +9 + +them. + +All who see will shake their heads. + +Then all mankind will fear + +10 + +and proclaim the work of God; +so they will ponder what He has done. + +Let the righteous rejoice in the LORD + +and take refuge in Him; +let all the upright in heart exult. + + Psalm 65 +Praise Awaits God in Zion + + For the choirmaster. +A Psalm of David. A song. + +Psalm 66:15 | 529 + +Psalm 66 +Make a Joyful Noise +(Psalm 100:1–5) + + For the choirmaster. A song. A Psalm. + +1 + +1 + +Praise awaits You, O God, in Zion; + +2 + +to You our vows will be fulfilled. + +O You who listen to prayer, + +3 + +all people will come to You. +When iniquities prevail against me, + +4 + +You atone for our transgressions. + +Blessed is the one You choose + +and bring near to dwell in Your courts! + +We are filled with the goodness of Your + +house, + +Make a joyful noise to God, + +2 + +all the earth! + +Sing the glory of His name; + +3 + +make His praise glorious. + +Say to God, “How awesome are Your deeds! + +4 + +So great is Your power +that Your enemies cower before You. + +All the earth bows down to You; +they sing praise to You; +they sing praise to Your name.” + +Selah + +5 + +the holiness of Your temple. + +5 + +With awesome deeds of righteousness + +You answer us, +O God of our salvation, + +the hope of all the ends of the earth +6 + +and of the farthest seas. + +7 + +You formed the mountains by Your power, +having girded Yourself with might. + +8 + +You stilled the roaring of the seas, +the pounding of their waves, +and the tumult of the nations. +Those who live far away fear Your + +wonders; + +a + +Come and see the works of God; + +6 + +how awesome are His deeds toward + +mankind. + +He turned the sea into dry land; + +7 + +they passed through the waters on foot; +there we rejoiced in Him. +He rules forever by His power; +His eyes watch the nations. +Do not let the rebellious exalt + +Selah + +themselves. + +8 + +You make the dawn and sunset shout + +9 + +for joy. + + b + +Bless our God, O peoples; + +9 + +let the sound of His praise be heard. + +You attend to the earth and water it; +with abundance You enrich it. +The streams of God are full of water, + +c +for You prepare our grain +by providing for the earth. + +10 + +You soak its furrows and level its ridges; +You soften it with showers and bless + +11 + +its growth. + +You crown the year with Your bounty, + +12 + +and Your paths overflow with plenty. +The pastures of the wilderness overflow; + +13 + +the hills are robed with joy. + +The pastures are clothed with flocks, +and the valleys are decked with + +grain. + +They shout in triumph; +indeed, they sing. + +He preserves our lives + +10 + +and keeps our feet from slipping. + +For You, O God, have tested us; + +11 + +You have refined us like silver. + +You led us into the net; + +12 + +You laid burdens on our backs. + +You let men ride over our heads; + +13 + +we went through fire and water, +but You brought us into abundance. + +I will enter Your house with burnt + +14 + +offerings; + +I will fulfill my vows to You— +the vows that my lips promised + +15 + +and my mouth spoke in my distress. +I will offer You fatlings as burnt offerings, + +with the fragrant smoke of rams; +I will offer bulls and goats. + +Selah + +a 8 +c 9 + +where morning dawns and evening fades You call forth songs of joy. +to provide the people with grain, for so You have ordained it + +b 9 + +and make it overflow + +Or +Or + +Or + + 530 | Psalm 66:16 + +16 + +3 + +Come and listen, all you who fear God, +and I will declare what He has done + +17 + +for me. + +a + +18 + +I cried out to Him with my mouth + +19 + +and praised Him with my tongue. +If I had cherished iniquity in my heart, +the Lord would not have listened. + +But God has surely heard; + +20 + +He has attended to the sound of my + +prayer. + +Blessed be God, who has not rejected my + +prayer + +or withheld from me His loving devotion! + +Psalm 67 + +May God Cause His Face to Shine upon Us + + For the choirmaster. With stringed instruments. +A Psalm. A song. + +1 + +May God be gracious to us and bless us, +and cause His face to shine upon us, + +Selah + +2 + +3 + +that Your ways may be known on earth, +Your salvation among all nations. + +4 + +Let the peoples praise You, O God; +let all the peoples praise You. + +Let the nations be glad and sing for joy, +for You judge the peoples justly +and lead the nations of the earth. + +5 + +Selah + +Let the peoples praise You, O God; +let all the peoples praise You. + +6 + +7 + +The earth has yielded its harvest; +God, our God, blesses us. + +God blesses us, + +that all the ends of the earth shall fear +Psalm 68 +Him. +God’s Enemies Are Scattered + + For the choirmaster. A Psalm of David. +A song. + +1 + +God arises. His enemies are + +2 + +scattered, + +and those who hate Him flee His presence. + +As smoke is blown away, + +You will drive them out; +as wax melts before the fire, + +the wicked will perish in the presence +and His praise was on my tongue + +of God. + +b 4 + +a 17 + +But the righteous will be glad +and rejoice before God; +they will celebrate with joy. + +4 + +Sing to God! + + b + +Sing praises to His name. +Exalt Him who rides on the clouds + +— + +His name is the LORD— +and rejoice before Him. + +5 + +A father of the fatherless + +6 + +and a defender of widows +is God in His holy habitation. +God settles the lonely in families; + +He leads the prisoners out to prosperity, +but the rebellious dwell in a sun-scorched + +land. + +7 + +O God, when You went out before Your + +people, + +when You marched through the + +wasteland, + +Selah + +8 + +the earth shook and the heavens poured + +down rain + +9 + +before God, the One on Sinai, +before God, the God of Israel. +You sent abundant rain, O God; +You refreshed Your weary + +10 + +inheritance. +Your flock settled therein; + +11 + +O God, from Your bounty You provided for + +the poor. + +12 + +The Lord gives the command; + +a great company of women proclaim it: + +“Kings and their armies flee in haste; +she who waits at home divides the + +13 + +plunder. + +Though you lie down among the sheepfolds, +the wings of the dove are covered with + +14 + +silver, + + c + +and her feathers with shimmering gold.” + +When the Almighty + + scattered the kings in + +15 + +the land, + +it was like the snow falling on Zalmon. + +A mountain of God is Mount Bashan; + +16 + +a mountain of many peaks is Mount + +Bashan. + +Why do you gaze in envy, O mountains + +Or + +Or + +Hebrew + +rides through the deserts + +of many peaks? + +c 14 + +Shaddai + + Psalm 69:7 | 531 + +This is the mountain God chose for + +31 + +until it submits, bringing bars of silver. + +His dwelling, + +Scatter the nations who delight in war. + + d + +where the LORD will surely dwell forever. + +Envoys will arrive from Egypt; + +17 + +The chariots of God are tens of thousands— +a + +thousands of thousands are they; + +32 + +Cush + + will stretch out her hands + +to God. + +the Lord is in His sanctuary + +18 + +as He was at Sinai. + +You have ascended on high; + +b + +You have led captives away. +You have received gifts from men, +even from the rebellious, +that the LORD God may dwell there. + +19 + +Blessed be the Lord, + +who daily bears our burden, +the God of our salvation. + +Selah + +20 + +Our God is a God of deliverance; + +21 + +the Lord GOD is our rescuer from death. + +Surely God will crush the heads of His + +enemies, + +22 + +the hairy crowns of those who persist in + +guilty ways. + +The Lord said, “I will retrieve them from + +1 + +Sing to God, O kingdoms of the earth; + +sing praises to the Lord— + +33 + +Selah + +to Him who rides upon the highest heavens + +34 + +of old; + +behold, His mighty voice resounds. + +Ascribe the power to God, + +35 + +whose majesty is over Israel, +whose strength is in the skies. + +O God, You are awesome in Your sanctuary; + +the God of Israel Himself +gives strength and power to His people. + +Blessed be God! Psalm 69 + +The Waters Are up to My Neck + + For the choirmaster. To the tune of “Lilies.” +Of David. + +Bashan, + +23 + +I will bring them up from the depths + +of the sea, + +that your foot may be dipped +in the blood of your foes— +the tongues of your dogs in the + +24 + +same.” + +They have seen Your procession, O God— +the march of my God and King into the + +25 + +sanctuary. +The singers lead the way, + +26 + +the musicians follow after, +among the maidens playing tambourines. + +Bless God in the great congregation; + +27 + +bless the LORD from the fountain of Israel. +There is Benjamin, the youngest, ruling them, +the princes of Judah in their company, +the princes of Zebulun and of Naphtali. + + c + +28 + +Summon Your power, O God; + +29 + +show Your strength, O God, +which You have exerted on our behalf. + +Because of Your temple at Jerusalem + +30 + +kings will bring You gifts. +Rebuke the beast in the reeds, + +a 17 + +the herd of bulls among the calves of +the Lord has come from Sinai in His holiness + +b 18 + +the nations, + +Your God has summoned your power + +d 31 + +Or +manuscripts + +Save me, O God, + +2 + +for the waters are up to my neck. + +I have sunk into the miry depths, +where there is no footing; +I have drifted into deep waters, +3 +where the flood engulfs me. + +I am weary from my crying; +my throat is parched. + +My eyes fail, +4 + +looking for my God. + +Those who hate me without cause + +outnumber the hairs of my head; +many are those who would destroy me— + +e + +my enemies for no reason. + +Though I did not steal, + +5 + +I must repay. + +You know my folly, O God, + +6 + +and my guilt is not hidden from You. +May those who hope in You not be ashamed + +through me, +O Lord GOD of Hosts; + +may those who seek You not be dishonored +7 + +through me, +O God of Israel. + +For I have endured scorn for Your sake, +and shame has covered my face. +e 4 +LXX and Syriac; most Hebrew + +c 28 + +Cited in Ephesians 4:8 + +That is, the upper Nile region + +See John 15:25 + + 532 | Psalm 69:8 + +8 + +9 + +I have become a stranger to my brothers +and a foreigner to my mother’s sons, +because zeal for Your house has consumed + +a + +me, + +b + +25 + +May their place be deserted; + +26 + +let there be no one to dwell in their tents. + +For they persecute the one You struck +and recount the pain of those You + +27 + +e + +10 + +and the insults of those who insult You + +wounded. + +have fallen on me. + +I wept and fasted, + +11 + +but it brought me reproach. +I made sackcloth my clothing, +and I was sport to them. + +12 + +Those who sit at the gate mock me, +and I am the song of drunkards. + +13 + +But my prayer to You, O LORD, + +is for a time of favor. + +14 + +In Your abundant loving devotion, O God, +answer me with Your sure salvation. + +Rescue me from the mire +and do not let me sink; + +deliver me from my foes + +15 + +and out of the deep waters. +Do not let the floods engulf me + +16 + +or the depths swallow me up; +let not the Pit close its mouth over me. + +Answer me, O LORD, + +for Your loving devotion is good; +turn to me in keeping with Your great + +17 + +compassion. + +Hide not Your face from Your servant, + +36 + +18 + +for I am in distress. +Answer me quickly! + +Draw near to my soul and redeem me; +ransom me because of my foes. + +19 + +You know my reproach, my shame and + +20 + +disgrace. + +All my adversaries are before You. + +Insults have broken my heart, + +and I am in despair. + +21 + +I looked for sympathy, but there was none, +for comforters, but I found no one. + +1 + +They poisoned my food with gall + +Add iniquity to their iniquity; + +28 + +let them not share in Your righteousness. + +May they be blotted out of the Book of Life + +29 + +and not listed with the righteous. + +But I am in pain and distress; + +30 + +let Your salvation protect me, O God. + +I will praise God’s name in song + +31 + +and exalt Him with thanksgiving. + +And this will please the LORD more than an + +32 + +ox, + +more than a bull with horns and hooves. + +The humble will see and rejoice. + +33 + +You who seek God, let your hearts be + +revived! + +For the LORD listens to the needy + +34 + +and does not despise His captive people. + +Let heaven and earth praise Him, + +35 + +the seas and everything that moves + +in them. +For God will save Zion + +and rebuild the cities of Judah, +that they may dwell there and + +possess it. + +The descendants of His servants will + +inherit it, + +and those who love His name will + +settle in it. + +Psalm 70 +Hurry, O LORD, to Help Me! +(Psalm 40:1–17 ; Psalm 141:1–10) + + For the choirmaster. Of David. +To bring remembrance. + +22 + +and gave me vinegar to quench my thirst. + +c + +May their table become a snare; + +23 + +may it be a retribution and a trap. +d + +May their eyes be darkened so they cannot + +24 + +see, + +and their backs be bent forever. + +Pour out Your wrath upon them, + +Make haste, O God, to deliver me! +Hurry, O LORD, to help me! + +2 + +May those who seek my life + +be ashamed and confounded; + +may those who wish me harm +3 +be repelled and humiliated. +May those who say, “Aha, aha!” + +a 9 + +and let Your burning anger overtake them. + +c 22 + +b 9 + +Cited in John 2:17 + +tremble continually +and Vulgate); literally + +may their prosperity be a trap +e 25 + +Cited in Romans 15:3 + +retreat because of their shame. + +d 23 + +and may their loins + +A slight revocalization of the Hebrew (see also LXX, Syriac, +LXX; Hebrew + +; cited in Romans 11:10 + +; cited in Romans 11:9 +Cited in Acts 1:20 + + 4 + +15 + +Psalm 72:2 | 533 + +May all who seek You + +rejoice and be glad in You; +may those who love Your salvation +5 + +always say, + +“Let God be magnified!” + +But I am poor and needy; +hurry to me, O God. + +You are my help and my deliverer; + +O LORD, do not delay. + +Psalm 71 +Be My Rock of Refuge + +1 + +In You, O LORD, I have taken refuge; +let me never be put to shame. +In Your justice, rescue and deliver me; + +2 + +3 + +incline Your ear and save me. + +Be my rock of refuge, + +where I can always go. +Give the command to save me, +4 + +for You are my rock and my fortress. +Deliver me, O my God, from the hand of the + +5 + +wicked, + +from the grasp of the unjust and ruthless. + +6 + +For You are my hope, O Lord GOD, +my confidence from my youth. + +I have leaned on You since birth; + +You pulled me from my mother’s womb. +My praise is always for You. +I have become a portent to many, +but You are my strong refuge. +My mouth is filled with Your praise + +7 + +8 + +9 + +My mouth will declare Your righteousness + +16 + +and Your salvation all day long, +though I cannot know their full measure. +I will come in the strength of the Lord GOD; + +17 + +I will proclaim Your righteousness—Yours + +alone. + +O God, You have taught me from my youth, + +18 + +and to this day I proclaim Your marvelous + +deeds. + +Even when I am old and gray, +do not forsake me, O God, + +until I proclaim Your power to the next + +19 + +generation, + +Your might to all who are to come. + +Your righteousness reaches to the heavens, O + +God, + +20 + +You who have done great things. +Who, O God, is like You? + +Though You have shown me many troubles + +and misfortunes, + +21 + +You will revive me once again. +Even from the depths of the earth +You will bring me back up. + +22 + +You will increase my honor + +and comfort me once again. + +So I will praise You with the harp + +for Your faithfulness, O my God; +I will sing praise to You with the lyre, + +23 + +O Holy One of Israel. +When I sing praise to You + +my lips will shout for joy, + +and with Your splendor all day long. + +24 + +along with my soul, + +Do not discard me in my old age; + +10 + +do not forsake me when my strength fails. + +For my enemies speak against me, + +11 + +and those who lie in wait for my life + +conspire, + +saying, “God has forsaken him; +pursue him and seize him, +for there is no one to rescue him.” + +12 + +13 + +Be not far from me, O God. + +Hurry, O my God, to help me. + +May the accusers of my soul + +which You have redeemed. +My tongue will indeed proclaim + +Your righteousness all day long, + +for those who seek my harm + +are disgraced and confounded. + +Psalm 72 +Endow the King with Your Justice +(1 Kings 3:1–15 ; 2 Chronicles 1:1–13 ; +Psalm 45:1–17) + + Of Solomon. + +1 + +be ashamed and consumed; +may those who seek my harm + +14 + +be covered with scorn and disgrace. + +But I will always hope + +Endow the king with Your justice, O God, +and the son of the king with Your + +2 + +righteousness. + +May he judge Your people with righteousness + +and will praise You more and more. + +and Your afflicted with justice. + + 534 | Psalm 72:3 + +3 + +13 + +May the mountains bring peace to the people, + +4 + +and the hills bring righteousness. +May he vindicate the afflicted among the + +14 + +He will take pity on the poor and needy +and save the lives of the oppressed. +He will redeem them from oppression + +people; + +may he save the children of the + a + +needy + +5 + +and crush the oppressor. + +May they fear him + + as long as the sun shines, + +6 + +as long as the moon remains, +through all generations. + +May he be like rain that falls on freshly + +7 + +cut grass, + +like spring showers that water the earth. + righteous flourish in his days + +May the + +and prosperity abound +until the moon is no more. + +8 + + b +May he rule from sea to sea, +and from the Euphrates + +9 + + to the ends of + +the earth. + +10 + +May the nomads bow before him, +and his enemies lick the dust. + +May the kings of Tarshish and distant shores + +bring tribute; + +11 + +may the kings of Sheba and Seba offer + +gifts. + +May all kings bow down to him +and all nations serve him. + +12 + +15 + +and violence, + +for their blood is precious in his sight. + +Long may he live! + +May gold from Sheba be given him. + +May people ever pray for him; + +16 + +may they bless him all day long. + +May there be an abundance of grain in the + +land; + +may it sway atop the hills. + +May its fruit trees flourish like the forests of + +Lebanon, + +17 + +the people of its cities like the grass of the + +field. + + c + +May his name endure forever; +may his name continue + + as long as the sun + +shines. + +In him may all nations be blessed; +may they call him blessed. + +18 + +19 + +Blessed be the LORD God, the God of Israel, + +who alone does marvelous deeds. + +And blessed be His glorious name forever; + +may all the earth be filled with His glory. + +20 + +Amen and amen. + +For he will deliver the needy who cry out +and the afflicted who have no helper. + +Thus conclude the prayers of David son of + +Jesse. + +a 5 + +He shall endure + +b 8 + +the River + +c 17 + +increase + +LXX + +Hebrew + +Or + + Psalm 73 +Surely God Is Good to Israel + + A Psalm of Asaph. + +1 + +BOOK III +Psalms 73–89 + +20 + +Like one waking from a dream, + +21 + +so You, O Lord, awaken and despise their + +form. + +Surely God is good to Israel, + +2 + +to those who are pure in heart. + +But as for me, my feet had almost stumbled; + +3 + +my steps had nearly slipped. + +For I envied the arrogant + +when I saw the prosperity of the wicked. + +4 + +They have no struggle in their death; + +5 + +their bodies are well-fed. + +They are free of the burdens others carry; +they are not afflicted like other men. + a + +Therefore pride is their necklace; + +6 + +7 + +a garment of violence covers them. +From their prosperity proceeds iniquity; + +8 + +the imaginations of their hearts run wild. + +They mock and speak with malice; + +9 + +with arrogance they threaten oppression. + +They set their mouths against the heavens, +and their tongues strut across the earth. + + b + +10 + +11 + +So their people + + return to this place + +and drink up waters in abundance. +The wicked say, “How can God know? + +12 + +When my heart was grieved +and I was pierced within, +I was senseless and ignorant; + +22 + +23 + +I was a brute beast before You. + +24 + +Yet I am always with You; + +You hold my right hand. + +25 + +26 + +You guide me with Your counsel, +and later receive me in glory. +Whom have I in heaven but You? + +And on earth I desire no one besides You. + + c + +My flesh and my heart may fail, + +27 + +but God is the strength +and my portion forever. + + of my heart + +28 + +Those far from You will surely perish; + +You destroy all who are unfaithful to You. +But as for me, it is good to draw near to God. +I have made the Lord GOD my refuge, +Psalm 74 +that I may proclaim all Your works. +Why Have You Rejected Us Forever? +(Psalm 79:1–13 ; Jeremiah 52:1–11) + + A Maskil d  of Asaph. + +Does the Most High have knowledge?” + +1 + +Behold, these are the wicked— + +13 + +always carefree as they increase their + +wealth. + +Surely in vain I have kept my heart pure; + +14 + +in innocence I have washed my + +hands. + +15 + +For I am afflicted all day long + +and punished every morning. +If I had said, “I will speak this way,” + +16 + +Why have You rejected us forever, O God? + +2 + +Why does Your anger smolder +against the sheep of Your pasture? + +Remember Your congregation, + +which You purchased long ago +and redeemed as the tribe of Your +3 + +inheritance— + +Mount Zion, where You dwell. + +then I would have betrayed Your children. + +Turn Your steps to the everlasting ruins, + +17 + +When I tried to understand all this, +it was troublesome in my sight + +until I entered God’s sanctuary; +then I discerned their end. + +18 + +19 + +Surely You set them on slick ground; +You cast them down into ruin. +How suddenly they are laid waste, + +a 7 +rock + +completely swept away by terrors! +d 1 Maskil + +Their eye bulges with fatness + +4 + +to everything in the sanctuary the enemy + +has destroyed. + +Your foes have roared within Your meeting + +place; + +5 + 6 + +they have unfurled their banners as signs, + +like men wielding axes in a thicket of trees + +From their callous heart proceeds iniquity + +b 10 + +His people + +c 26 + +and smashing all the carvings +with hatchets and picks. + +Literally + +; Syriac + +Or + +Heb. + + is probably a musical or liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. + + 536 | Psalm 74:7 + +7 + +They have burned Your sanctuary to the + +ground; + +8 + +they have defiled the dwelling place of + +Your Name. + +They said in their hearts, + +“We will crush them completely.” + +They burned down every place +9 + +where God met us in the land. + +There are no signs for us to see. + +Psalm 75 +God’s Righteous Judgment +(Romans 2:1–16) + + For the choirmaster: To the tune of +“Do Not Destroy.” A Psalm of Asaph. A song. + +1 + +We give thanks to You, O God; + +2 + +we give thanks, for Your Name is near. +The people declare Your wondrous works. + +There is no longer any prophet. +And none of us knows how long this will + +10 + +3 + +“When I choose a time, +I will judge fairly. + +last. + +11 + +How long, O God, will the enemy taunt You? +Will the foe revile Your name forever? + +Why do You withdraw Your strong right + + a + +12 + +hand? + +Stretch it out to destroy them! + +13 + +Yet God is my King from ancient times, +working salvation on the earth. +You divided the sea by Your strength; + +When the earth and all its dwellers quake, + +Selah + +4 + +it is I who bear up its pillars. + +I say to the proud, ‘Do not boast,’ + +5 + +and to the wicked, ‘Do not lift up your + +horn. + +6 + +Do not lift up your horn against heaven +or speak with an outstretched neck.’ + +” + +For exaltation comes neither from east nor + +14 + +You smashed the heads of the dragons of + +7 + +west, + +the sea; + +15 + +You crushed the heads of Leviathan; + +You fed him to the creatures of the desert. + +16 + +You broke open the fountain and the flood; +You dried up the ever-flowing rivers. + + b + +17 + +The day is Yours, and also the night; + +You established the moon + + and the sun. + +18 + +You set all the boundaries of the earth; +You made the summer and winter. + +Remember how the enemy has mocked You, + +O LORD, + +19 + +how a foolish people has spurned Your + +name. + +Do not deliver the soul of Your dove to + +beasts; + +20 + +do not forget the lives of Your afflicted + +forever. + +Consider Your covenant, + +21 + +for haunts of violence fill the dark places + +of the land. + +Do not let the oppressed retreat in shame; + +22 + +nor out of the desert, +but it is God who judges; + +8 + +He brings down one and exalts another. + +For a cup is in the hand of the LORD, + +full of foaming wine mixed with spices. + +He pours from His cup, + +9 + +and all the wicked of the earth +drink it down to the dregs. + + c + +10 + +But I will proclaim Him + + forever; + +I will sing praise to the God of Jacob. + +“All the horns of the wicked I will cut off, +but the horns of the righteous will be + +exalted.” Psalm 76 +God’s Name Is Great in Israel + + For the choirmaster. With stringed instruments. +A Psalm of Asaph. A song. + +1 + +God is known in Judah; + +d + +2 + +His name is great in Israel. + +may the poor and needy praise Your name. + +His tent is in Salem, + +3 + +Rise up, O God; defend Your cause! + +23 + +Remember how the fool mocks You all day + +long. + +4 + +His dwelling place in Zion. + +There He shattered the flaming arrows, + +Selah +the shield and sword and weapons of war. + +Do not disregard the clamor of Your + +adversaries, + +You are resplendent with light, + +the uproar of Your enemies that ascends +From the midst of Your bosom destroy them! +continually. +c 9 +the light + +proclaim it + +d 2 + +a 11 +b 16 + +more majestic than mountains filled + +From the midst of Your bosom remove it! + +with game. + +Literally +Literally + +Or + + or +That is, Jerusalem + + 5 + +9 + +Psalm 78:4 | 537 + +The valiant lie plundered; they sleep their + +6 + +last sleep. + +No men of might could lift a hand. + +At Your rebuke, O God of Jacob, + +both horse and rider lie stunned. + +7 + +You alone are to be feared. + +8 + +When You are angry, who can stand + +before You? + +9 + +From heaven You pronounced judgment, +and the earth feared and was still + +when God rose up to judge, + +10 + +to save all the lowly of the earth. + +Selah + +Even the wrath of man shall praise You; +with the survivors of wrath You will + +a + +11 + +clothe Yourself. + +Make and fulfill your vows to the LORD your + +God; + +12 + +let all the neighboring lands bring tribute +to Him who is to be feared. +He breaks the spirits of princes; + +Psalm 77 +He is feared by the kings of the earth. +In the Day of Trouble I Sought the Lord + + For the choirmaster. According to Jeduthun. +A Psalm of Asaph. + +1 + +I cried out to God; + +2 + +I cried aloud to God to hear me. +In the day of trouble I sought the Lord; + +through the night my outstretched hands + +3 + +did not grow weary; + +my soul refused to be comforted. +I remembered You, O God, and I groaned; +I mused and my spirit grew faint. + +Selah + +4 + +You have kept my eyes from closing; + +5 + +I am too troubled to speak. + +6 + +I considered the days of old, +the years long in the past. +At night I remembered my song; + +7 + +in my heart I mused, and my spirit + +pondered: + +“Will the Lord spurn us forever + +8 + +and never show His favor again? +Is His loving devotion gone forever? + +Has God forgotten to be gracious? + +Selah +Has His anger shut off His compassion?” + +10 + +So I said, “I am grieved + + b + +11 + +that the right hand of the Most High has + +changed.” + +12 + +I will remember the works of the LORD; + +yes, I will remember Your wonders of old. + +13 + +I will reflect on all You have done + +and ponder Your mighty deeds. + +14 + +Your way, O God, is holy. + +What god is so great as our God? +You are the God who works wonders; + +15 + +You display Your strength among the + +peoples. + +With power You redeemed Your people, + +Selah + +16 + +the sons of Jacob and Joseph. + +The waters saw You, O God; + +17 + +the waters saw You and swirled; +even the depths were shaken. +The clouds poured down water; + +18 + +the skies resounded with thunder; +Your arrows flashed back and forth. +Your thunder resounded in the whirlwind; + +19 + +the lightning lit up the world; +the earth trembled and quaked. + +Your path led through the sea, + +c + +20 + +Your way through the mighty waters, +but Your footprints were not to be found. + +You led Your people like a flock + +by the hand of Moses and Aaron. + +Psalm 78 +I Will Open My Mouth in Parables +(Matthew 13:34–35) + + A Maskil d  of Asaph. + +1 + +2 + +Give ear, O my people, to my instruction; +listen to the words of my mouth. + +I will open my mouth in parables; +e + +3 + +I will utter things hidden from the + +beginning, + +that we have heard and known + +4 + +and our fathers have relayed to us. +We will not hide them from their children +but will declare to the next generation + +the praises of the LORD and His might + +a 10 +b 10 + +Surely Your wrath against men brings You praise, and the survivors of Your wrath will be restrained. +Has His promise failed for all time? +“To this I will appeal: to the years of the right hand of the Most High.” + +and the wonders He has performed. +were unknown + +c 19 + +Or +Or + +times +probably a musical or liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. + +Or + +Or + +; see also LXX; cited in Matthew 13:35 + +d 1 Maskil +e 2 + +from ancient + is + + 538 | Psalm 78:5 + +5 + +23 + +For He established a testimony in Jacob + +24 + +and appointed a law in Israel, +which He commanded our fathers +to teach to their children, + +6 + +Yet He commanded the clouds above +a + +and opened the doors of the heavens. +He rained down manna for them to eat; +He gave them grain from heaven. + +25 + +that the coming generation would know + +26 + +Man ate the bread of angels; + +them— + +7 + +even children yet to be born— +to arise and tell their own children + +He sent them food in abundance. + +27 + +He stirred the east wind from the heavens +and drove the south wind by His might. + +that they should put their confidence in God, + +28 + +He rained meat on them like dust, + +8 + +not forgetting His works, +but keeping His commandments. +Then they will not be like their fathers, + +a stubborn and rebellious generation, + +whose heart was not loyal, +9 + +whose spirit was not faithful to God. + +The archers of Ephraim + +10 + +11 + +turned back on the day of battle. +They failed to keep God’s covenant +and refused to live by His law. + +12 + +They forgot what He had done, + +the wonders He had shown them. +He worked wonders before their fathers + +13 + +in the land of Egypt, in the region of Zoan. + +14 + +He split the sea and brought them through; +He set the waters upright like a wall. + +15 + +He led them with a cloud by day + +and with a light of fire all night. +He split the rocks in the wilderness + +16 + +and gave them drink as abundant as the + +seas. + +He brought streams from the stone + +17 + +and made water flow down like rivers. + +But they continued to sin against Him, + +18 + +rebelling in the desert against the Most + +High. + +19 + +They willfully tested God + +by demanding the food they craved. + +They spoke against God, saying, + +20 + +“Can God really prepare a table in the + +wilderness? + +When He struck the rock, water gushed out + +and torrents raged. +But can He also give bread + +21 + +or supply His people with meat?” + +Therefore the LORD heard + +and was filled with wrath; +so a fire was kindled against Jacob, + +22 + +and His anger flared against Israel, + +because they did not believe God + +and winged birds like the sand of the sea. + +29 + +He felled them in the midst of their camp, + +all around their dwellings. +So they ate and were well filled, + +30 + +for He gave them what they craved. + +31 + +Yet before they had filled their desire, +with the food still in their mouths, + +God’s anger flared against them, + +32 + +and He put to death their strongest +and subdued the young men of Israel. + +In spite of all this, they kept on sinning; + +33 + +despite His wonderful works, they did not + +b + +believe. + +34 + +So He ended their days in futility, + +and their years in sudden terror. + +35 + +When He slew them, they would seek Him; +they repented and searched for God. +And they remembered that God was their + c + +36 + +Rock, + +that God Most High + + was their Redeemer. + +37 + +But they deceived Him with their mouths, +and lied to Him with their tongues. + +Their hearts were disloyal to Him, + +38 + +and they were unfaithful to His covenant. + +And yet He was compassionate; + +He forgave their iniquity and did not + +destroy them. +He often restrained His anger + +39 + +40 + +and did not unleash His full wrath. +He remembered that they were but flesh, +a passing breeze that does not return. + +How often they disobeyed Him in the + +41 + +wilderness + +and grieved Him in the desert! + +42 + +Again and again they tested God + + d + +and provoked the Holy One of Israel. + +They did not remember His power + +— + +43 + +the day He redeemed them from the + +adversary, + +when He performed His signs in Egypt + +a 24 + +or rely on His salvation. + +b 33 + +in vapor + +c 35 + +El-Elyon + +d 42 +and His wonders in the fields of Zoan. + +His hand + +Cited in John 6:31 + +Or + +Hebrew + +Or + + 44 + +63 + +He turned their rivers to blood, + +Fire consumed His young men, + +45 + +and from their streams they could not + +64 + +and their maidens were left without + +Psalm 79:6 | 539 + +drink. + +46 + +He sent swarms of flies that devoured them, + +47 + +and frogs that devastated them. +He gave their crops to the grasshopper, +the fruit of their labor to the locust. +a + +48 + +49 + +He killed their vines with hailstones +and their sycamore-figs with sleet. +He abandoned their cattle to the hail + +and their livestock to bolts of lightning. + +He unleashed His fury against them, + +50 + +wrath, indignation, and calamity— +a band of destroying angels. +He cleared a path for His anger; + +51 + +He did not spare them from death +but delivered their lives to the plague. + +He struck all the firstborn of Egypt, +the virility in the tents of Ham. + +52 + +He led out His people like sheep + +53 + +and guided them like a flock in the + +wilderness. + +54 + +He led them safely, so they did not fear, +but the sea engulfed their enemies. + +He brought them to His holy land, + +to the mountain His right hand had + +acquired. + +1 + +55 + +wedding songs. +His priests fell by the sword, + +65 + +but their widows could not lament. + +66 + +Then the Lord awoke as from sleep, + +like a mighty warrior overcome by wine. + +67 + +He beat back His foes; + +He put them to everlasting shame. + +68 + +He rejected the tent of Joseph + +and refused the tribe of Ephraim. + +69 + +But He chose the tribe of Judah, +Mount Zion, which He loved. + +70 + +He built His sanctuary like the heights, + +like the earth He has established forever. + +71 + +He chose David His servant + +and took him from the sheepfolds; +from tending the ewes He brought him +to be shepherd of His people Jacob, +of Israel His inheritance. + +72 + +So David shepherded them with integrity of + +heart + +Psalm 79 +and guided them with skillful hands. +A Prayer for Deliverance +(Psalm 74:1–23 ; Jeremiah 52:1–11) + + A Psalm of Asaph. + +He drove out nations before them + +and apportioned their inheritance; +He settled the tribes of Israel in their + +tents. + +56 + +But they tested and disobeyed God Most + +57 + +High, + +for they did not keep His decrees. +They turned back and were faithless like + +58 + +their fathers, + +twisted like a faulty bow. + +They enraged Him with their high places +and provoked His jealousy with their + +59 + +idols. + +60 + +On hearing it, God was furious + +61 + +and rejected Israel completely. +He abandoned the tabernacle of Shiloh, +the tent He had pitched among men. + +He delivered His strength to captivity, +and His splendor to the hand of the + +62 + +adversary. + +The nations, O God, have invaded Your + +inheritance; + +2 + +they have defiled Your holy temple +and reduced Jerusalem to rubble. + +They have given the corpses of Your servants + +as food to the birds of the air, +the flesh of Your saints to the beasts of the + +3 + +earth. + +They have poured out their blood like water + +4 + +all around Jerusalem, +and there is no one to bury the dead. + +We have become a reproach to our + +neighbors, + +5 + +a scorn and derision to those + +around us. + +How long, O LORD? + +6 + +Will You be angry forever? +Will Your jealousy burn like fire? +Pour out Your wrath on the nations +that do not acknowledge You, + +He surrendered His people to the sword + +on the kingdoms + +a 47 + +because He was enraged by His heritage. +frost + +driving rain + +that refuse to call on Your name, + +Or + + or + + 540 | Psalm 79:7 + +7 + +6 + +for they have devoured Jacob + +8 + +and devastated his homeland. +Do not hold past sins against us; + +9 + +let Your compassion come quickly, +for we are brought low. +Help us, O God of our salvation, +for the glory of Your name; +deliver us and atone for our sins, +for the sake of Your name. +Why should the nations ask, +“Where is their God?” + +10 + +Before our eyes, make known among + +the nations + +11 + +Your vengeance for the bloodshed of Your + +servants. + +12 + +May the groans of the captives reach You; +by the strength of Your arm preserve +those condemned to death. +Pay back into the laps of our neighbors + +13 + +sevenfold the reproach they hurled at You, + +O Lord. + +Then we Your people, the sheep of Your + +pasture, + +will thank You forever; +from generation to generation +we will declare Your praise. + +Psalm 80 +Hear Us, O Shepherd of Israel + + For the choirmaster. To the tune of “The Lilies of +the Covenant.” A Psalm of Asaph. + +1 + +Hear us, O Shepherd of Israel, + +who leads Joseph like a flock; +You who sit enthroned between the + +2 + +cherubim, + +shine forth + +before Ephraim, Benjamin, + +and Manasseh. + +Rally Your mighty power +and come to save us. + +3 + +Restore us, O God, + +4 + +and cause Your face to shine upon us, +that we may be saved. + +O LORD God of Hosts, + +5 + +how long will Your anger smolder +against the prayers of Your people? + +You fed them with the bread of tears + +and made them drink the full measure of + +a 11 + +their tears. + +You make us contend with our neighbors; + +7 + +our enemies mock us. +Restore us, O God of Hosts, + +8 + +and cause Your face to shine upon us, +that we may be saved. + +You uprooted a vine from Egypt; +You drove out the nations and + +9 + +transplanted it. +You cleared the ground for it, + +10 + +and it took root and filled the land. +The mountains were covered by its shade, + +a + +11 + +and the mighty cedars with its branches. + +b + +12 + +It sent out its branches to the Sea, + +and its shoots toward the River. + +13 + +Why have You broken down its walls, + +so that all who pass by pick its fruit? + +The boar from the forest ravages it, + +14 + +and the creatures of the field feed + +upon it. + +Return, O God of Hosts, we pray! + +15 + +Look down from heaven and see! + +Attend to this vine— + +16 + +the root Your right hand has planted, +the son You have raised up for Yourself. + +Your vine has been cut down and burned; + +17 + +they perish at the rebuke of Your + +countenance. + +Let Your hand be upon the man at Your right + +hand, + +18 + +on the son of man You have raised up for + +Yourself. + +19 + +Then we will not turn away from You; + +revive us, and we will call on Your name. + +Restore us, O LORD God of Hosts; + +cause Your face to shine upon us, +that we may be saved. + +Psalm 81 +Sing for Joy to God Our Strength + + For the choirmaster. According to Gittith.c +Of Asaph. + +1 + +Sing for joy to God our strength; + +2 + +make a joyful noise to the God of Jacob. + +Lift up a song, strike the tambourine, + +3 + +play the sweet-sounding harp and lyre. + +Sound the ram’s horn at the New Moon, +and at the full moon on the day of our + +b 11 + +Feast. + +c 1 Gittith + +That is, the Mediterranean Sea, also called the Great Sea + +That is, the Euphrates + + is probably a + +musical or liturgical term; here and in Psalms 8 and 84. + + 4 + +5 + +Psalm 83:15 | 541 + +For this is a statute for Israel, + +5 + +a + +an ordinance of the God of Jacob. +He ordained it as a testimony for Joseph + +6 + +when he went out over the land of Egypt, +where I heard an unfamiliar language: + +They do not know or understand; +they wander in the darkness; +all the foundations of the earth are + d + +shaken. + +6 + +I have said, ‘You are gods; + +7 + +“I relieved his shoulder of the burden; + +7 + +his hands were freed from the basket. +You called out in distress, and I rescued you; +b + +8 + +you are all sons of the Most High.’ + +But like mortals you will die, + +and like rulers you will fall.” + +I answered you from the cloud of thunder; + Selah +I tested you at the waters of Meribah. + +8 + +Hear, O My people, and I will warn you: + +9 + +10 + +O Israel, if only you would listen to Me! +There must be no strange god among you, +nor shall you bow to a foreign god. + +I am the LORD your God, + +who brought you up out of Egypt. + +11 + +Open wide your mouth, +and I will fill it. + +12 + +But My people would not listen to Me, +and Israel would not obey Me. + +13 + +So I gave them up to their stubborn hearts + +to follow their own devices. + +14 + +If only My people would listen to Me, +if Israel would follow My ways, + +15 + +how soon I would subdue their enemies +and turn My hand against their foes! + +Those who hate the LORD would feign + +16 + +obedience, + +and their doom would last forever. +But I would feed you the finest wheat; + +with honey from the rock I would satisfy + +you.” + +Psalm 82 +God Presides in the Divine Assembly + +Arise, O God, judge the earth, + +for all the nations are Your inheritance. +Psalm 83 +O God, Be Not Silent + + A song. A Psalm of Asaph. + +1 + + e + +O God, be not silent; be not speechless; + +2 + +be not still, O God. + +See how Your enemies rage, + +3 + +how Your foes have reared their heads. + +With cunning they scheme against Your + +4 + +people + +and conspire against those You cherish, +saying, “Come, let us erase them as a nation; +may the name of Israel be remembered no + +more.” + +5 + +For with one mind they plot together; + +6 + +they form an alliance against You— +the tents of Edom and the Ishmaelites, + +7 + +of Moab and the Hagrites, +of Gebal, Ammon, and Amalek, + +8 + +of Philistia with the people of Tyre. + +Even Assyria has joined them, + +lending strength to the sons of Lot. Selah + +9 + +10 + +Do to them as You did to Midian, + + A Psalm of Asaph. + +as to Sisera and Jabin at the River Kishon, + +1 + +2 + +God presides in the divine assembly; + + c + +He renders judgment among the gods: + +“How long will you judge unjustly + +and show partiality to the wicked? Selah + +3 + +11 + +who perished at Endor + +and became like dung on the ground. + +Make their nobles like Oreb and Zeeb, +and all their princes like Zebah and + +12 + +Zalmunna, + +who said, “Let us possess for ourselves + +13 + +the pastures of God.” + +Defend the cause of the weak and fatherless; +uphold the rights of the afflicted and + +4 + +like chaff before the wind. + +15 + +As fire consumes a forest, + +14 + +Make them like tumbleweed, O my God, + +oppressed. + +Rescue the weak and needy; + +a 5 +d 6 + +b 7 Meribah +e 1 + +deaf + means +Or + +Or +Cited in John 10:34 + +save them from the hand of the wicked. +in Joseph + +quarreling + +; see Exodus 17:7. + +Or + +as a flame sets the mountains ablaze, + +so pursue them with Your tempest, +and terrify them with Your storm. +How long will you defend the unjust +c 2 + + 542 | Psalm 83:16 + +16 + +11 + +Cover their faces with shame, + +17 + +that they may seek Your name, O LORD. + +For the LORD God is a sun and a shield; +the LORD gives grace and glory; + +May they be ever ashamed and terrified; + +18 + +may they perish in disgrace. +May they know that You alone, +whose name is the LORD, +are Most High over all the earth. + +Psalm 84 +Better Is One Day in Your Courts +(John 1:14–18) + + For the choirmaster. According to Gittith.a +A Psalm of the sons of Korah. + +1 + +How lovely is Your dwelling place, + +2 + +O LORD of Hosts! +My soul longs, even faints, + +for the courts of the LORD; +my heart and my flesh cry out + +3 + +for the living God. + +Even the sparrow has found a home, +and the swallow a nest for herself, + +where she places her young near Your altars, +4 +O LORD of Hosts, my King and my God. + +How blessed are those who dwell in Your + +house! + +5 + +They are ever praising You. + +Selah + +Blessed are those whose strength is + +8 + +in You, + +b +whose hearts are set on pilgrimage. +As they pass through the Valley of Baca, +they make it a place of springs; +even the autumn rain covers it with + +c + +pools. + +6 + +7 + +8 + +They go from strength to strength, + +until each appears before God in Zion. + +10 + +O LORD God of Hosts, hear my prayer; + +Selah + +9 + +give ear, O God of Jacob. + +He withholds no good thing + +12 + +from those who walk with integrity. + +O LORD of Hosts, + +how blessed is the man who trusts in You! + +Psalm 85 +You Showed Favor to Your Land + + For the choirmaster. +A Psalm of the sons of Korah. + +1 + +d + +2 + +You showed favor to Your land, O LORD; +You restored Jacob from captivity. +You forgave the iniquity of Your people; + +You covered all their sin. + +3 + +Selah + +You withheld all Your fury; + +You turned from Your burning + +anger. + +4 + +Restore us, O God of our salvation, +and put away Your displeasure + +5 + +toward us. + +Will You be angry with us forever? + +6 + +Will You draw out Your anger to all + +generations? +Will You not revive us again, + +7 + +that Your people may rejoice in You? +Show us Your loving devotion, O LORD, + +and grant us Your salvation. + +I will listen to what God the LORD + +will say; + +for He will surely speak peace to His + +9 + +people and His saints; + +He will not let them return to folly. + +Surely His salvation is near to those who fear + +Him, + +that His glory may dwell in our land. + +Loving devotion and faithfulness have joined + +11 + +together; + +Take notice of our shield, O God, + +righteousness and peace have kissed. + +10 + +and look with favor on the face of Your + +Faithfulness sprouts from the earth, + +anointed. + +For better is one day in Your courts +than a thousand elsewhere. + +12 + +and righteousness looks down from + +heaven. + +13 + +The LORD will indeed provide what is good, + +I would rather be a doorkeeper in the house + +and our land will yield its increase. + +of my God + +Righteousness will go before Him + +a 1 Gittith +blessings + +than dwell in the tents of the wicked. + +d 1 + +restored the fortunes of Jacob + +to prepare the way for His steps. +c 6 + +Valley of Poplars + + b 6 + +with + + is probably a musical or liturgical term; here and in Psalms 8 and 81. + +Or + +Or + +Or + + Psalm 86 +Tried but Trusting + + A prayer of David. + +1 + +Incline Your ear, O LORD, and answer me, + +2 + +for I am poor and needy. +Preserve my soul, for I am godly. + +3 + +You are my God; save Your servant + +who trusts in You. +Be merciful to me, O Lord, + +4 + +for I call to You all day long. + +Bring joy to Your servant, + +for to You, O Lord, I lift up my soul. + +For You, O Lord, are kind and forgiving, +rich in loving devotion to all who call + +6 + +on You. + +Hear my prayer, O LORD, + +7 + +and attend to my plea for mercy. +In the day of my distress I call on You, + +because You answer me. + +5 + +8 + +O Lord, there is none like You among + +9 + +the gods, + +nor any works like Yours. +All the nations You have made + +will come and bow before You, O Lord, +and they will glorify Your name. +For You are great and perform wonders; + +10 + +11 + +You alone are God. + +Teach me Your way, O LORD, + +that I may walk in Your truth. + +12 + +Give me an undivided heart, + +that I may fear Your name. + +I will praise You, O Lord my God, with all my + +13 + +heart; + +I will glorify Your name forever. +For great is Your loving devotion to me; + +14 + +You have delivered me from the depths + +of Sheol. + +The arrogant rise against me, O God; + +15 + +a band of ruthless men seeks my life; +they have no regard for You. + +17 + +Psalm 88:5 | 543 + +Show me a sign of Your goodness, + +that my enemies may see and be ashamed; +for You, O LORD, have helped me and +Psalm 87 +The LORD Loves the Gates of Zion + +comforted me. + + A Psalm of the sons of Korah. A song. + +1 + +He has founded His city + +2 + +on the holy mountains. + +a + +The LORD loves the gates of Zion + +3 + +more than all the dwellings of Jacob. + +Glorious things are ascribed to you, + +4 + +O city of God. + + b + +Selah + +“I will mention Rahab + + and Babylon + c + +among those who know Me— +along with Philistia, Tyre, and Cush + +5 + + — + +when I say, ‘This one was born in Zion.’ + +” + +And it will be said of Zion: + +“This one and that one were born in her, +and the Most High Himself will establish + +her.” + +6 + +The LORD will record in the register of the + +peoples: + +7 + +“This one was born in Zion.” + +Selah + +Singers and pipers will proclaim, + +“All my springs of joy are in You.” + +Psalm 88 +I Cry Out before You + + A song. A Psalm of the sons of Korah. +For the choirmaster. According to Mahalath +Leannoth.d  A Maskil e  of Heman the Ezrahite. + +1 + +O LORD, the God of my salvation, + +2 + +day and night I cry out before You. + +May my prayer come before You; +incline Your ear to my cry. +For my soul is full of troubles, + +3 + +4 + +and my life draws near to Sheol. + +But You, O Lord, are a compassionate and + +I am counted among those descending to the + +gracious God, + +16 + +slow to anger, abounding in loving +devotion and faithfulness. + +Turn to me and have mercy; + +grant Your strength to Your servant; +His foundation is on the holy mountains +save the son of Your maidservant. + +b 4 Rahab + +a 1 +d 1 Mahalath Leannoth + +5 + +Pit. + +I am like a man without strength. + +I am forsaken among the dead, + +like the slain who lie in the grave, + +whom You remember no more, + +c 4 +who are cut off from Your care. +e 1 Maskil + +Lit. + + is a poetic name for Egypt. + +That is, the upper Nile region + + is probably a musical or liturgical term; see also Psalm 53:1. + + is probably a musical or + +liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. + + 544 | Psalm 88:6 + +6 + +3 + +8 + +10 + +11 + +7 + +You have laid me in the lowest Pit, +in the darkest of the depths. +Your wrath weighs heavily upon me; + +all Your waves have submerged me. + +Selah + +You said, “I have made a covenant with + +4 + +My chosen one, + +I have sworn to David My servant: +‘I will establish your offspring forever +and build up your throne for all + +Selah + +You have removed my friends from me; + +5 + +generations.’ + +” + +You have made me repulsive + +9 + +to them; + +I am confined and cannot escape. + +The heavens praise Your wonders, + +O LORD— + +My eyes grow dim with grief. +I call to You daily, O LORD; +I spread out my hands to You. +Do You work wonders for the dead? + +Selah +Do departed spirits rise up to praise You? + +6 + +Your faithfulness as well— +in the assembly of the holy ones. + c + +For who in the skies can compare with the + +LORD? + +7 + +Who among the heavenly beings + + is like + +the LORD? + +Can Your loving devotion be proclaimed + + a + +12 + +in the grave, + +Your faithfulness in Abaddon + +? + +Will Your wonders be known in the darkness, + +8 + +In the council of the holy ones, God is greatly + +feared, + +and awesome above all who surround + +Him. + +13 + +or Your righteousness in the land of + +oblivion? + +But to You, O LORD, I cry for help; + +14 + +in the morning my prayer comes + +before You. + +Why, O LORD, do You reject me? +Why do You hide Your face + +15 + +from me? + +From my youth I was afflicted and near + +16 + +death. + +I have borne Your terrors; I am in despair. + +17 + +Your wrath has swept over me; + +18 + +Your terrors have destroyed me. +All day long they engulf me like water; +they enclose me on every side. +You have removed my beloved and my + +friend; + +Psalm 89 +darkness is my closest companion. +I Will Sing of His Love Forever + + A Maskil b  of Ethan the Ezrahite. + +1 + +I will sing of the loving devotion of the LORD + +forever; + +2 + +with my mouth I will proclaim Your + +faithfulness to all generations. +For I have said, “Loving devotion is built up + +forever; + +O LORD God of Hosts, who is like You? +O mighty LORD, Your faithfulness + +9 + +surrounds You. +You rule the raging sea; + +10 + +when its waves mount up, You still them. + +You crushed Rahab like a carcass; + +11 + +You scattered Your enemies with Your + +mighty arm. + +12 + +The heavens are Yours, and also the earth. +The earth and its fullness You founded. + +North and south You created; + +13 + +Tabor and Hermon shout for joy at Your + +name. + +14 + +Mighty is Your arm; strong is Your hand. + +Your right hand is exalted. + +Righteousness and justice are the foundation + +of Your throne; + +loving devotion and faithfulness go before + +You. + +15 + +Blessed are those who know the joyful sound, +who walk, O LORD, in the light of Your + +16 + +presence. + +17 + +They rejoice in Your name all day long, + +and in Your righteousness they exult. + +18 + +For You are the glory of their strength, + +and by Your favor our horn is exalted. + +19 + +Surely our shield belongs to the LORD, + +and our king to the Holy One of Israel. + +in the heavens You establish Your +Destruction + +b 1 Maskil + +a 11 Abaddon + +faithfulness.” + + means +52–55, 74, 78, 88–89, and 142. + +c 6 +. + +the sons of God + +Or + + or + +You once spoke in a vision; + +the sons of might + +to Your godly ones You said, + + is probably a musical or liturgical term; used for Psalms 32, 42, 44–45, + + 38 + +Psalm 89:52 | 545 + +20 + +“I have bestowed help on a warrior; + +Now, however, You have spurned and + +I have exalted one chosen from the people. + +39 + +rejected him; + +21 + +I have found My servant David; + +You are enraged by Your anointed one. + +with My sacred oil I have anointed him. + +You have renounced the covenant with + +My hand will sustain him; + +22 + +surely My arm will strengthen him. + +23 + +No enemy will exact tribute; + +no wicked man will oppress him. + +24 + +I will crush his foes before him + +and strike down those who hate him. +My faithfulness and loving devotion will be + +with him, + +40 + +Your servant + +and sullied his crown in the dust. +You have broken down all his walls; + +41 + +You have reduced his strongholds to + +rubble. + +All who pass by plunder him; + +42 + +he has become a reproach to his + +neighbors. + +25 + +and through My name his horn will be + +You have exalted the right hand of his + +exalted. + +43 + +foes; + +26 + +I will set his hand over the sea, + +and his right hand upon the rivers. +He will call to Me, ‘You are my Father, +my God, the Rock of my salvation.’ + +27 + +28 + +I will indeed appoint him as My firstborn, +the highest of the kings of the earth. + +I will forever preserve My loving devotion for + +29 + +him, + +and My covenant with him will stand fast. + +I will establish his line forever, + +30 + +his throne as long as the heavens endure. + +31 + +If his sons forsake My law + +and do not walk in My judgments, + +32 + +if they violate My statutes + +and fail to keep My commandments, +I will attend to their transgression with the + +33 + +rod, + +and to their iniquity with stripes. + +But I will not withdraw My loving devotion + +34 + +from him, + +nor ever betray My faithfulness. + +35 + +I will not violate My covenant + +or alter the utterance of My lips. +Once and for all I have sworn by My + +36 + +holiness— + +I will not lie to David— + +37 + +his offspring shall endure forever, + +You have made all his enemies rejoice. + +44 + +You have bent the edge of his sword + +and have not sustained him in battle. + +45 + +You have ended his splendor + +and cast his throne to the ground. +You have cut short the days of his youth; +You have covered him with shame. + +Selah + +46 + +How long, O LORD? + +47 + +Will You hide Yourself forever? +Will Your wrath keep burning like fire? + +Remember the briefness of my lifespan! +For what futility You have created + +48 + +all men! + +What man can live and never see death? + +Can he deliver his soul from the power + +Selah + +of Sheol? + +49 + +50 + +Where, O Lord, is Your loving devotion of old, + +which You faithfully swore to David? +Remember, O Lord, the reproach of Your + +servants, + +51 + +which I bear in my heart from so many + +people— + +how Your enemies have taunted, O LORD, +and have mocked every step of Your + +52 + +anointed one! + +and his throne before Me like the sun, + +like the moon, established forever, +a faithful witness in the sky.” + +Selah + +Blessed be the LORD forever! + +Amen and amen. + + BOOK IV +Psalms 90–106 + +Psalm 90 +From Everlasting to Everlasting + + A prayer of Moses the man of God. + +1 + +16 + +17 + + b + +May Your work be shown to Your servants, +and Your splendor to their children. + of the Lord our God rest + +May the favor + +Lord, You have been our dwelling place + +2 + +through all generations. +Before the mountains were born + +or You brought forth the earth and the + +world, + +1 + +upon us; + +establish for us the work of our hands— +yes, establish the work of our hands! +Psalm 91 +You Are My Refuge and My Fortress + +from everlasting to everlasting + +3 + +You are God. + +You return man to dust, + +4 + +saying, “Return, O sons of mortals.” + +a + +For in Your sight a thousand years + +5 + +are but a day that passes, +or a watch of the night. + +You sweep them away in their sleep; +they are like the new grass of the + +6 + +morning— + +7 + +in the morning it springs up new, + +but by evening it fades and withers. + +8 + +For we are consumed by Your anger +and terrified by Your wrath. + +You have set our iniquities before You, +our secret sins in the light of Your + +9 + +presence. + +10 + +For all our days decline in Your fury; +we finish our years with a sigh. + +The length of our days is seventy years— + +or eighty if we are strong— + +yet their pride is but labor and sorrow, + +for they quickly pass, and we fly away. + +11 + +13 + +12 + +Who knows the power of Your anger? + +Your wrath matches the fear You are due. + +So teach us to number our days, + +that we may present a heart of wisdom. + +14 + +Return, O LORD! How long will it be? + +Have compassion on Your servants. +Satisfy us in the morning with Your loving + +devotion, + +c + +2 + +He who dwells in the shelter of the Most High +will abide in the shadow of the Almighty. + +I will say to the LORD, “You are my refuge + +and my fortress, +my God, in whom I trust.” + +3 + +Surely He will deliver you + +4 + +from the snare of the fowler, +and from the deadly plague. +He will cover you with His feathers; + +5 + +under His wings you will find refuge; +His faithfulness is a shield and rampart. + +6 + +You will not fear the terror of the night, +nor the arrow that flies by day, + +7 + +nor the pestilence that stalks in the darkness, +nor the calamity that destroys at noon. + +8 + +Though a thousand may fall at your side, +and ten thousand at your right hand, +no harm will come near you. +You will only see it with your eyes + +and witness the punishment of the + +9 + +wicked. + +Because you have made the LORD your + +10 + +dwelling— + +my refuge, the Most High— + +no evil will befall you, + +11 + +no plague will approach your tent. + +For He will command His angels concerning + +12 + +you + +to guard you in all your ways. +They will lift you up in their hands, + +d + +15 + +that we may sing for joy and be glad all + +13 + +so that you will not strike your foot + +our days. + +against a stone. + +Make us glad for as many days as You have + +You will tread on the lion and cobra; + +a 4 + +afflicted us, +b 17 + +for as many years as we have seen evil. + +beauty + +c 1 + +Shaddai + +d 12 + +you will trample the young lion and + +serpent. + +See 2 Peter 3:8. + +Or + +Hebrew + +Cited in Matthew 4:6 and Luke 4:10–11 + + 14 + +“Because he loves Me, I will deliver him; + +15 + +because he knows My name, I will protect + +him. + +When he calls out to Me, +I will answer him; + +16 + +I will be with him in trouble. + +I will deliver him and honor him. + +With long life I will satisfy him + +and show him My salvation.” + +Psalm 92 +How Great Are Your Works! + + A Psalm. A song for the Sabbath day. + +1 + +It is good to praise the LORD, + +2 + +and to sing praises to Your name, + +O Most High, + +to proclaim Your loving devotion in the + +3 + +morning + +and Your faithfulness at night + +4 + +with the ten-stringed harp + +and the melody of the lyre. + +For You, O LORD, have made me glad by + +5 + +Your deeds; + +I sing for joy at the works of Your hands. + +How great are Your works, O LORD, +how deep are Your thoughts! +A senseless man does not know, + +6 + +7 + +and a fool does not understand, + +that though the wicked sprout like grass, + +8 + +and all evildoers flourish, +they will be forever destroyed. + +9 + +But You, O LORD, are exalted forever! + +For surely Your enemies, O LORD, + +10 + +surely Your enemies will perish; +all evildoers will be scattered. + +But You have exalted my horn like that of a + +11 + +wild ox; + +with fine oil I have been anointed. +My eyes see the downfall of my enemies; +my ears hear the wailing of my wicked + +a + +12 + +foes. + +13 + +The righteous will flourish like a palm tree, + +and grow like a cedar in Lebanon. + +14 + +Planted in the house of the LORD, + +they will flourish in the courts of our God. + +15 + +In old age they will still bear fruit; + +healthy and green they will remain, +to proclaim, “The LORD is upright; He is my + +Psalm 94:13 | 547 + +Psalm 93 +The LORD Reigns! +(Psalm 99:1–9) + +1 + +The LORD reigns! He is robed in majesty; + +the LORD has clothed and armed Himself + +with strength. + +The world indeed is firmly established; +2 + +it cannot be moved. + +3 + +Your throne was established long ago; + +You are from all eternity. + +The floodwaters have risen, O LORD; +the rivers have raised their voice; +the seas lift up their pounding waves. + +4 + +Above the roar of many waters— + +5 + +the mighty breakers of the sea— +the LORD on high is majestic. + +Your testimonies are fully confirmed; + +holiness adorns Your house, O LORD, +Psalm 94 +for all the days to come. +The LORD Will Not Forget His People + +1 + +O LORD, God of vengeance, + +2 + +O God of vengeance, shine forth. + +Rise up, O Judge of the earth; + +3 + +render a reward to the proud. +How long will the wicked, O LORD, +how long will the wicked exult? + +4 + +5 + +6 + +They pour out arrogant words; +all workers of iniquity boast. +They crush Your people, O LORD; +they oppress Your heritage. + +They kill the widow and the foreigner; + +7 + +they murder the fatherless. +They say, “The LORD does not see; +the God of Jacob pays no heed.” + +8 + +Take notice, O senseless among the people! + +9 + +O fools, when will you be wise? + +10 + +He who affixed the ear, can He not hear? + +He who formed the eye, can He not see? +He who admonishes the nations, does He not + +discipline? + +11 + +He who teaches man, does He lack + +knowledge? + +b + +The LORD knows the thoughts of man, + +12 + +that they are futile. + +13 + +Blessed is the man You discipline, O LORD, + +and teach from Your law, + +a 11 + +Rock, + +my ears hear evildoers when they rise against me +and in Him there is no unrighteousness.” + +b 11 + +to grant him relief from days of trouble +until a pit is dug for the wicked. + +, + +Or + +Cited in 1 Corinthians 3:20 + + 548 | Psalm 94:14 + +14 + +10 + +For the LORD will not forsake His people; +He will never abandon His heritage. +Surely judgment will again be righteous, + +15 + +16 + +For forty years I was angry with that + +generation, + +d + +and I said, “They are a people whose + +and all the upright in heart will follow it. + +11 + +hearts go astray, + +20 + +21 + +22 + +23 + +Who will rise up for me against the wicked? + +17 + +Who will stand for me against the workers + +of iniquity? + +Unless the LORD had been my helper, + +18 + +I would soon have dwelt in the abode of + +silence. + +If I say, “My foot is slipping,” + +19 + +Your loving devotion, O LORD, + +supports me. + +When anxiety overwhelms me, + +Your consolation delights my soul. + +Can a corrupt throne be Your ally— +one devising mischief by decree? +They band together against the righteous +and condemn the innocent to death. +But the LORD has been my stronghold, +and my God is my rock of refuge. + +a + +He will bring upon them their own iniquity +and destroy them for their wickedness. +Psalm 95 +The LORD our God will destroy them. +Do Not Harden Your Hearts +(Hebrews 3:7–11) + +1 + +Come, let us sing for joy to the LORD; + +2 + +let us shout to the Rock of our salvation! +Let us enter His presence with thanksgiving; +let us make a joyful noise to Him in song. + +3 + +For the LORD is a great God, + +4 + +a great King above all gods. + +In His hand are the depths of the earth, + +5 + +and the mountain peaks belong to Him. + +6 + +The sea is His, for He made it, + +and His hands formed the dry land. + +O come, let us worship and bow down; + +7 + +let us kneel before the LORD our Maker. + +For He is our God, + +and we are the people of His pasture, +the sheep under His care. + + 8 + +Today, if you hear His voice, + +b + +do not harden your hearts + +as you did at Meribah, +9 + +and they have not known My ways.” + + e + +So I swore on oath in My anger, + +“They shall never enter My rest.” + +Psalm 96 +Sing to the LORD, All the Earth +(1 Chronicles 16:23–36) + +1 + +Sing to the LORD a new song; + +2 + +sing to the LORD, all the earth. +Sing to the LORD, bless His name; + +3 + +proclaim His salvation day after day. + +Declare His glory among the nations, +His wonders among all peoples. + +4 + +For great is the LORD, and greatly to be + +5 + +praised; + +He is to be feared above all gods. +For all the gods of the nations are idols, + +6 + +but it is the LORD who made the heavens. + +7 + +Splendor and majesty are before Him; + +strength and beauty fill His sanctuary. + +Ascribe to the LORD, O families of the + +8 + +nations, + +ascribe to the LORD glory and strength. +Ascribe to the LORD the glory due His name; +bring an offering and enter His courts. + +9 + +Worship the LORD in the splendor of His + +10 + +holiness; + +tremble before Him, all the earth. + +Declare among the nations: “The LORD + +reigns!” + +The world is firmly established; it cannot + +11 + +be moved; + +He will judge the peoples with equity. + +Let the heavens be glad +and the earth rejoice; + +12 + +let the sea resound, + +and all that fills it. + +Let the fields exult, + +and all that is in them. +Then all the trees of the forest + +13 + +c + +will sing for joy +for He is coming— + +before the LORD, + +in the day at Massah in the wilderness, + +He is coming to judge the earth. + +where your fathers tested and tried Me, +condemn innocent blood +though they had seen My work. + +a 21 + +He will judge the world in righteousness +quarreling +Meribah +and the peoples in His faithfulness. + +b 8 +c 8 + +as you did in the rebellion +in the day of testing in the wilderness + +Massah + +e 11 + +; + + means + +testing +; see Exodus 17:7; cited in + +Or + +d 10 +Hebrews 3:15 and Hebrews 4:7. + +LXX +They always go astray in the heart +LXX + +LXX + +; +Cited in Hebrews 3:7–11, Hebrews 4:3, and Hebrews 4:5 + + means + +; see Exodus 17:7. + + Psalm 97 +Let the Earth Rejoice + +1 + +2 + +The LORD reigns, let the earth rejoice; +let the distant shores be glad. + +Psalm 99:9 | 549 + +4 + +Make a joyful noise to the LORD, all the earth; +break forth—let your cry ring out, and + +5 + +sing praises! + +6 + +Sing praises to the LORD with the lyre, +in melodious song with the harp. + +Clouds and darkness surround Him; + +3 + +righteousness and justice are His throne’s + +With trumpets and the blast of the ram’s horn +shout for joy before the LORD, the King. + +7 + +foundation. + +Fire goes before Him + +4 + +and consumes His foes on every side. + +5 + +His lightning illuminates the world; +the earth sees and trembles. + +The mountains melt like wax + +6 + +at the presence of the LORD, +before the Lord of all the earth. + +The heavens proclaim His righteousness; + +7 + +all the peoples see His glory. + +All worshipers of images are put to shame— + +8 + +those who boast in idols. +Worship Him, all you gods! + +Zion hears and rejoices, + +9 + +and the towns of Judah exult +because of Your judgments, O LORD. +For You, O LORD, are Most High over all + +10 + +the earth; + +You are exalted far above all gods. + +Hate evil, O you who love the LORD! + +He preserves the souls of His saints; +He delivers them from the hand of the + + a + +11 + +wicked. + +12 + +Light shines + + on the righteous, + +gladness on the upright in heart. +Rejoice in the LORD, you righteous ones, + +and praise His holy name. + +Psalm 98 +Sing to the LORD a New Song +(Psalm 149:1–9 ; Isaiah 42:10–17) + +8 + +Let the sea resound, and all that fills it, +the world, and all who dwell in it. + +Let the rivers clap their hands, + +9 + +let the mountains sing together for joy + +before the LORD, + +for He comes to judge the earth. + +He will judge the world with righteousness +Psalm 99 +and the peoples with equity. +The LORD Reigns! +(Psalm 93:1–5) + +1 + +The LORD reigns; + +let the nations tremble! + +He is enthroned above the cherubim; +2 + +let the earth quake! +Great is the LORD in Zion; + +3 + +He is exalted above all the peoples. +Let them praise Your great and awesome + + b +name— + +4 + +He is holy! + +c + +The mighty King loves justice. + +You have established equity; + +You have exercised justice +5 + +and righteousness in Jacob. + +Exalt the LORD our God, + +6 + +and worship at His footstool; +He is holy! + + A Psalm. + +1 + +Sing to the LORD a new song, +for He has done wonders; +His right hand and holy arm +2 + +have gained Him the victory. + +The LORD has proclaimed His salvation +and revealed His righteousness to the + +3 + +nations. + +He has remembered His love and faithfulness + +Moses and Aaron were among His priests; +Samuel was among those who called on + +His name. + +7 + +They called to the LORD and He + +answered. + +He spoke to them from the pillar of cloud; + +8 + +they kept His decrees and the statutes He + +gave them. + +O LORD our God, You answered them. +You were a forgiving God to them, +yet an avenger of their misdeeds. + +9 + +to the house of Israel; + +Exalt the LORD our God + +all the ends of the earth + +a 11 +c 4 + +have seen the salvation of our God. +The might of the King loves justice. + +and worship at His holy mountain, +it is holy! +Light is sown +for the LORD our God is holy. + +b 3 + +One Hebrew manuscript, LXX, Syriac, and Vulgate; most Hebrew manuscripts + +Or + +Or + + 550 | Psalm 100:1 + +Psalm 100 +Make a Joyful Noise +(Psalm 66:1–20) + +8 + +Every morning I will remove all the wicked of + +the land, + + A Psalm of thanksgiving. + +that I may cut off every evildoer from the + +1 + +2 + +Make a joyful noise to the LORD, + +all the earth. + +Serve the LORD with gladness; + +3 + +come into His presence with joyful songs. + + a + +Know that the LORD is God. + +It is He who made us, and we are His; +we are His people, and the sheep of His + +4 + +pasture. + +Enter His gates with thanksgiving +and His courts with praise; +give thanks to Him and bless His name. + +5 + +For the LORD is good, + +and His loving devotion endures forever; +His faithfulness continues to all +generations. Psalm 101 +I Will Set No Worthless Thing +before My Eyes + + A Psalm of David. + +1 + +I will sing of Your loving devotion and justice; +2 + +to You, O LORD, I will sing praises. + +I will ponder the way that is blameless— + +when will You come to me? + +I will walk in my house +3 + +with integrity of heart. +I will set no worthless thing + +before my eyes. + +I hate the work of those who fall away; +4 + +it shall not cling to me. + +A perverse heart shall depart from me; + +5 + +I will know nothing of evil. + +city of the LORD. + +Psalm 102 +The Prayer of the Afflicted + + A prayer of one who is afflicted, +when he grows faint and pours out his lament +before the LORD. + +1 + +Hear my prayer, O LORD; + +2 + +let my cry for help come before You. + +Do not hide Your face from me + +in my day of distress. + +Incline Your ear to me; + +3 + +answer me quickly when I call. + +For my days vanish like smoke, + +4 + +and my bones burn like glowing embers. +My heart is afflicted, and withered like grass; + +5 + +I even forget to eat my bread. + +Through my loud groaning + +6 + +my skin hangs on my bones. + +I am like a desert owl, + +7 + +like an owl among the ruins. + +I lie awake; + +I am like a lone bird on a housetop. + +8 + +9 + +All day long my enemies taunt me; +they ridicule me and curse me. +For I have eaten ashes like bread + +10 + +and mixed my drink with tears + +because of Your indignation and wrath, + +11 + +for You have picked me up and cast me + +aside. + +My days are like lengthening shadows, + +12 + +and I wither away like grass. + +13 + +But You, O LORD, sit enthroned forever; + +Your renown endures to all generations. + +Whoever slanders his neighbor in secret, + +You will rise up and have compassion on + +I will put to silence; + +the one with haughty eyes and a proud heart, +6 + +14 + +I will not endure. + +My eyes favor the faithful of the land, +that they may dwell with me; +he who walks in the way of integrity +7 + +shall minister to me. + +No one who practices deceit +shall dwell in my house; + +no one who tells lies +shall stand in my presence. +and not we ourselves + +a 3 + +Or + +Zion, + +for it is time to show her favor— +the appointed time has come. + +For Your servants delight in her stones + +15 + +and take pity on her dust. + +So the nations will fear the name of the + +LORD, + +16 + +and all the kings of the earth will fear + +Your glory. + +For the LORD will rebuild Zion; +He has appeared in His glory. + + 17 + +5 + +He will turn toward the prayer of the + +who satisfies you with good things, + +18 + +destitute; + +He will not despise their prayer. + +6 + +so that your youth is renewed like the + +eagle’s. + +Psalm 103:22 | 551 + +Let this be written for the generation to + +come, + +19 + +so that a people not yet created may + +praise the LORD. + +For He looked down from the heights of His + +20 + +sanctuary; + +the LORD gazed out from heaven to earth + +to hear a prisoner’s groaning, + +21 + +to release those condemned to death, +that they may proclaim the name of the LORD + +22 + +in Zion + +and praise Him in Jerusalem, + +when peoples and kingdoms assemble + +23 + +The LORD executes righteousness + +7 + +and justice for all the oppressed. +He made known His ways to Moses, +His deeds to the people of Israel. + +8 + +The LORD is compassionate and gracious, +slow to anger, abounding in loving + +9 + +devotion. + +10 + +He will not always accuse us, + +nor harbor His anger forever. + +11 + +He has not dealt with us according to our sins +or repaid us according to our iniquities. + +For as high as the heavens are above the + +earth, + +to serve the LORD. + +12 + +so great is His loving devotion for those + +He has broken my strength on the way; + +24 + +He has cut short my days. + +I say: “O my God, do not take me in the midst + +25 + +of my days! + +Your years go on through all generations. +In the beginning You laid the foundations of + +the earth, + +26 + +and the heavens are the work of Your + +hands. + +They will perish, but You remain; + +they will all wear out like a garment. + +27 + +Like clothing You will change them, +and they will be passed on. + +a + +But You remain the same, + +28 + +and Your years will never end. + +The children of Your servants will dwell + +securely, + +and their descendants will be established + +before You.” Psalm 103 + +Bless the LORD, O My Soul + + Of David. + +1 + +Bless the LORD, O my soul; + +2 + +all that is within me, bless His holy name. + +Bless the LORD, O my soul, + +3 + +and do not forget all His kind deeds— + +4 + +He who forgives all your iniquities +and heals all your diseases, +who redeems your life from the Pit + +and crowns you with loving devotion and + +a 27 + +compassion, + +Cited in Hebrews 1:10–12 + +who fear Him. + +As far as the east is from the west, + +13 + +so far has He removed our transgressions + +from us. + +As a father has compassion on his children, +so the LORD has compassion on those + +14 + +who fear Him. + +For He knows our frame; + +15 + +He is mindful that we are dust. + +16 + +As for man, his days are like grass— + +he blooms like a flower of the field; +when the wind passes over, it vanishes, +and its place remembers it no more. + +17 + +But from everlasting to everlasting +the loving devotion of the LORD +extends to those who fear Him, + +18 + +and His righteousness to their children’s + +children— + +19 + +to those who keep His covenant +and remember to obey His precepts. +The LORD has established His throne in + +20 + +heaven, + +and His kingdom rules over all. + +Bless the LORD, all His angels mighty in + +strength + +21 + +who carry out His word, +who hearken to the voice of His command. + +22 + +Bless the LORD, all His hosts, + +you servants who do His will. + +Bless the LORD, all His works + +in all places of His dominion. + +Bless the LORD, O my soul! + + 552 | Psalm 104:1 + +Psalm 104 +How Many Are Your Works, O LORD! + +1 + +Bless the LORD, O my soul! + +O LORD my God, You are very great; +2 + +You are clothed with splendor and + +majesty. + +3 + +He wraps Himself in light as with a garment; +He stretches out the heavens like a tent, + +laying the beams of His chambers + +in the waters above, + +making the clouds His chariot, +4 +a + +walking on the wings of the wind. +He makes the winds His messengers, + +5 + +flames of fire His servants. + +He set the earth on its foundations, + +6 + +never to be moved. + +7 + +You covered it with the deep like a garment; +the waters stood above the mountains. + +At Your rebuke the waters fled; + +8 + +at the sound of Your thunder they hurried + +away— + +9 + +the mountains rose and the valleys sank +to the place You assigned for them— + +You set a boundary they cannot cross, + +10 + +that they may never again cover the earth. + +He sends forth springs in the valleys; +they flow between the mountains. +They give drink to every beast of the field; +the wild donkeys quench their thirst. +The birds of the air nest beside the springs; + +11 + +12 + +13 + +they sing among the branches. + +He waters the mountains from His chambers; +the earth is satisfied by the fruit of His + +14 + +works. + +He makes the grass grow for the livestock +and provides crops for man to cultivate, +bringing forth food from the earth: + +15 + +wine that gladdens the heart of man, +oil that makes his face to shine, +and bread that sustains his heart. +The trees of the LORD have their fill, + +16 + +17 + +19 + +20 + +He made the moon to mark the seasons; + +the sun knows when to set. + +21 + +You bring darkness, and it becomes night, +when all the beasts of the forest prowl. + +22 + +23 + +The young lions roar for their prey +and seek their food from God. +The sun rises, and they withdraw; +they lie down in their dens. + +24 + +Man goes forth to his work + +and to his labor until evening. + +How many are Your works, O LORD! + +25 + +In wisdom You have made them all; +the earth is full of Your creatures. + +Here is the sea, vast and wide, + +26 + +teeming with creatures beyond number, +living things both great and small. + +There the ships pass, + +27 + +and Leviathan, which You formed to frolic + +there. + +All creatures look to You + +28 + +to give them their food in due season. + +When You give it to them, + +they gather it up; + +when You open Your hand, + +29 + +they are satisfied with good things. + +When You hide Your face, +they are terrified; + +30 + +when You take away their breath, +they die and return to dust. + +d + +When You send Your Spirit, + +they are created, + +and You renew + +31 + +the face of the earth. + +32 + +May the glory of the LORD endure forever; +may the LORD rejoice in His works. + +He looks on the earth, +and it trembles; + +33 + +He touches the mountains, +and they smolder. + +I will sing to the LORD all my life; + +34 + +I will sing praise to my God while I have + +my being. + +May my meditation be pleasing to Him, + +35 + +the cedars of Lebanon that He planted, + +for I rejoice in the LORD. + +where the birds build their nests; +b + +18 + +the stork makes her home in the + +cypresses. + +c +The high mountains are for the wild goats, +the cliffs a refuge for the rock badgers. +He makes His angels winds, His servants flames of fire. +the coneys + +the hyraxes + +breath + +d 30 + +e 35 + +a 4 +c 18 + +May sinners vanish from the earth +and the wicked be no more. + +Bless the LORD, O my soul. + + e + +Hallelujah! + +b 17 + +pines + +junipers + +firs + +Hallelu YAH +Cited in Hebrews 1:7 + +Praise the LORD +Or + + or + + or + + or + +Or + +Or + +, meaning + +LXX +Or + + Psalm 105 +Tell of His Wonders +(1 Chronicles 16:7–22) + +1 + +Psalm 105:44 | 553 + +22 + + b + +to instruct + + his princes as he pleased + +23 + +and teach his elders wisdom. + +Then Israel entered Egypt; + +24 + +Give thanks to the LORD, call upon His name; + +Jacob dwelt in the land of Ham. + +2 + +make known His deeds among the + +And the LORD made His people very fruitful, + +25 + +nations. + +Sing to Him, sing praises to Him; + +3 + +tell of all His wonders. + +Glory in His holy name; + +more numerous than their foes, + +whose hearts He turned to hate His people, + +26 + +to conspire against His servants. + +He sent Moses His servant, + +27 + +4 + +let the hearts of those who seek the LORD + +and Aaron, whom He had chosen. + +rejoice. + +Seek out the LORD and His strength; + +5 + +seek His face always. + +Remember the wonders He has done, + +They performed His miraculous signs among + +28 + +them, + +and wonders in the land of Ham. +He sent darkness, and it became dark— + +c + +6 + +His marvels, and the judgments He has + +29 + +yet they defied His words. + +pronounced, + +7 + +O offspring of His servant Abraham, +O sons of Jacob, His chosen ones. + +He is the LORD our God; + +8 + +His judgments carry throughout the earth. + +He remembers His covenant forever, + +9 + +the word He ordained for a thousand + +generations— + +10 + +11 + +the covenant He made with Abraham, +and the oath He swore to Isaac. +He confirmed it to Jacob as a decree, + +to Israel as an everlasting covenant: + +12 + +“I will give you the land of Canaan + +as the portion of your inheritance.” + +13 + +When they were few in number, + +few indeed, and strangers in the land, + +14 + +they wandered from nation to nation, +from one kingdom to another. + +15 + +He let no man oppress them; + +He rebuked kings on their behalf: + +16 + +“Do not touch My anointed ones! +Do no harm to My prophets!” + a + +17 + +18 + +He called down famine on the land +and cut off all their supplies +He sent a man before them— +Joseph, sold as a slave. + + of food. + +19 + +They bruised his feet with shackles +and placed his neck in irons, + +until his prediction came true + +20 + +and the word of the LORD proved him + +right. + +21 + +The king sent and released him; + +the ruler of peoples set him free. +He made him master of his household, + +a 16 + +ruler over all his substance, +b 22 + +staff + +to bind + +c 28 + +He turned their waters to blood +and caused their fish to die. +Their land teemed with frogs, + +30 + +31 + +even in their royal chambers. +He spoke, and insects swarmed— + +32 + +gnats throughout their country. + +He gave them hail for rain, + +33 + +with lightning throughout their land. + +He struck their vines and fig trees + +34 + +and shattered the trees of their country. + +He spoke, and the locusts came— + +35 + +young locusts without number. + +They devoured every plant in their land + +36 + +and consumed the produce of their soil. +Then He struck all the firstborn in their land, + +37 + +the firstfruits of all their vigor. + +38 + +He brought Israel out with silver and gold, +and none among His tribes stumbled. + +Egypt was glad when they departed, + +39 + +for the dread of Israel had fallen on them. + +He spread a cloud as a covering + +40 + +and a fire to light up the night. +They asked, and He brought quail + +41 + +and satisfied them with the bread of + +heaven. + +He opened a rock, and water gushed out; +it flowed like a river in the desert. +For He remembered His holy promise + +42 + +43 + +to Abraham His servant. + +He brought forth His people with rejoicing, + +44 + +His chosen with shouts of joy. +He gave them the lands of the nations, + +that they might inherit the fruit of others’ + +labor, + +for had they not defied His words? + +Hebrew + +LXX and Syriac; MT + +LXX and Syriac; Hebrew + + 554 | Psalm 105:45 + +45 + +16 + +that they might keep His statutes + + a + +and obey His laws. + +Hallelujah! + +Psalm 106 +Give Thanks to the LORD, for He Is Good + +1 + + b + +Hallelujah! + +Give thanks to the LORD, for He is good; +2 +His loving devotion endures forever. +Who can describe the mighty acts of the + +3 + +LORD + +or fully proclaim His praise? + +Blessed are those who uphold justice, + +who practice righteousness at all times. + +4 + +Remember me, O LORD, in Your favor to Your + +5 + +people; + +In the camp they envied Moses, + +17 + +as well as Aaron, the holy one of the + +LORD. + +18 + +The earth opened up and swallowed Dathan; + +it covered the assembly of Abiram. +Then fire blazed through their company; + +19 + + d + +flames consumed the wicked. + +20 + +At Horeb + + they made a calf + e +and worshiped a molten image. + +21 + +They exchanged their Glory + +for the image of a grass-eating ox. + +22 + +They forgot God their Savior, + +who did great things in Egypt, +wondrous works in the land of Ham, + +23 + +and awesome deeds by the Red Sea. + +So He said He would destroy them— +had not Moses His chosen one + +visit me with Your salvation, + +24 + +stood before Him in the breach + +that I may see the prosperity of Your chosen + +to divert His wrath from destroying them. + +ones, + +6 + +and rejoice in the gladness of Your nation, +and give glory with Your inheritance. + +We have sinned like our fathers; + +7 + +we have done wrong and acted wickedly. + +Our fathers in Egypt did not grasp Your + +wonders + +or remember Your abundant kindness; +c + +but they rebelled by the sea, +8 +there at the Red Sea. + +25 + +They despised the pleasant land; + +they did not believe His promise. + +They grumbled in their tents + +26 + +and did not listen to the voice of the + +LORD. + f + +27 + +So He raised His hand and swore + +to cast them down in the wilderness, + +to disperse + + their offspring among the + +28 + +nations + +and scatter them throughout the lands. + +Yet He saved them for the sake of His name, + +29 + +They yoked themselves to Baal of Peor + +9 + +to make His power known. + +He rebuked the Red Sea, and it dried up; +He led them through the depths as + +10 + +through a desert. + +He saved them from the hand that hated + +them; + +11 + +He redeemed them from the hand of the + +enemy. + +The waters covered their foes; +not one of them remained. +Then they believed His promises + +12 + +13 + +and ate sacrifices offered to lifeless gods. + +So they provoked the LORD to anger with + +30 + +their deeds, + +and a plague broke out among them. + +31 + +32 + +But Phinehas stood and intervened, +and the plague was restrained. +It was credited to him as righteousness +for endless generations to come. + + g + +At the waters of Meribah + + they angered the + +LORD, + +33 + +and trouble came to Moses because of + +h + +and sang His praise. + +them. + +14 + +Yet they soon forgot His works + +and failed to wait for His counsel. +They craved intensely in the wilderness + +15 + +and tested God in the desert. + +So He granted their request, + +a 45 +c 7 + +but sent a wasting disease upon them. +b 1 +Hallelu YAH +d 19 +the Sea of Reeds + +Praise the LORD + +34 + +For they rebelled against His Spirit, + +and Moses spoke rashly with his lips. + +35 + +They did not destroy the peoples + +as the LORD had commanded them, + +Hallelu YAH + +but they mingled with the nations +and adopted their customs. + +Praise the LORD + +Or + +Or + +h 33 + +, meaning + +e 20 +their glorious God +; also in verses 9 and 22 +they provoked His Spirit + +f 27 + +cast down + +Or +That is, Mount Sinai, or possibly a mountain in the range containing + +; also in verse 48 + +g 32 Meribah + +cause to fall + +quarreling + +, meaning + +Mount Sinai +17:7. +Or + +Or + +Or + + or + + means + +; see Exodus + + 36 + +43 + +Psalm 106:48 | 555 + +37 + +They worshiped their idols, + +which became a snare to them. + +38 + +They sacrificed their sons + +and their daughters to demons. + +They shed innocent blood— + +the blood of their sons and daughters, +whom they sacrificed to the idols of Canaan, +and the land was polluted with blood. +They defiled themselves by their actions +and prostituted themselves by their + +39 + +40 + +deeds. + +So the anger of the LORD burned against His + +41 + +people, + +and He abhorred His own inheritance. + +He delivered them into the hand of the + +nations, + +42 + +and those who hated them ruled over + +them. + +Their enemies oppressed them + +Many times He rescued them, + +44 + +but they were bent on rebellion +and sank down in their iniquity. + +45 + +Nevertheless He heard their cry; +He took note of their distress. + +And He remembered His covenant with them, + +46 + +and relented by the abundance of His + +loving devotion. + +47 + +He made them objects of compassion +to all who held them captive. + +Save us, O LORD our God, + +and gather us from the nations, + +that we may give thanks to Your holy name, + +48 + +that we may glory in Your praise. + +Blessed be the LORD, the God of Israel, +from everlasting to everlasting. + +Let all the people say, “Amen!” + +and subdued them under their hand. + +Hallelujah! + + BOOK V +Psalms 107–150 + +Psalm 107 +Thanksgiving for Deliverance +(Matt. 8:23–27 ; Mark 4:35–41 ; Luke 8:22–25) + +1 + +2 + +Give thanks to the LORD, for He is good; +His loving devotion endures forever. + +Let the redeemed of the LORD say so, + +3 + +whom He has redeemed from the hand of + +20 + +the enemy +and gathered from the lands, +a + +from east and west, from north and + +south. + +4 + +Some wandered in desert wastelands, + +5 + +finding no path to a city in which to dwell. + +They were hungry and thirsty; + +6 + +their soul fainted within them. + +17 + +Fools, in their rebellious ways, + +18 + +and through their iniquities, suffered + +affliction. +They loathed all food + +19 + +and drew near to the gates of death. +Then they cried out to the LORD in their + +trouble, + +and He saved them from their distress. + +21 + +He sent forth His word and healed them; + +He rescued them from the Pit. + +Let them give thanks to the LORD for His + +22 + +loving devotion + +and His wonders to the sons of men. +Let them offer sacrifices of thanksgiving +and declare His works with rejoicing. + +23 + +Then they cried out to the LORD in their + +24 + +Others went out to sea in ships, + +7 + +trouble, + +and He delivered them from their distress. + +He led them on a straight path + +8 + +to reach a city where they could live. +Let them give thanks to the LORD for His + +9 + +loving devotion + +conducting trade on the mighty waters. + +25 + +26 + +They saw the works of the LORD, +and His wonders in the deep. +For He spoke and raised a tempest +that lifted the waves of the sea. + +They mounted up to the heavens, then sunk + +and His wonders to the sons of men. + +27 + +to the depths; + +For He satisfies the thirsty + +10 + +and fills the hungry with good things. + +Some sat in darkness and in the shadow of + +11 + +death, + +prisoners in affliction and chains, + +because they rebelled against the words of + +12 + +God + +and despised the counsel of the Most High. + +He humbled their hearts with hard labor; +they stumbled, and there was no one to + +13 + +help. + +Then they cried out to the LORD in their + +14 + +trouble, + +and He saved them from their distress. + +He brought them out of darkness and the + +15 + +shadow of death + +their courage melted in their anguish. +They reeled and staggered like drunkards, + +b + +28 + +and all their skill was useless. + +Then they cried out to the LORD in their + +29 + +trouble, + +and He brought them out of their distress. + + c + +30 + +He calmed the storm to a whisper, + +and the waves of the sea +They rejoiced in the silence, + + were hushed. + +31 + +and He guided them to the harbor they + +desired. + +Let them give thanks to the LORD for His + +32 + +loving devotion + +and His wonders to the sons of men. +Let them exalt Him in the assembly of the + +people + +and praise Him in the council of the elders. + +34 + +He turns rivers into deserts, + +springs of water into thirsty ground, + +and fruitful land into fields of salt, + +and broke away their chains. + +33 + +Let them give thanks to the LORD for His + +16 + +loving devotion + +and His wonders to the sons of men. +For He has broken down the gates of bronze + +a 3 +c 29 + +north and the sea + +and cut through the bars of iron. + +b 27 + +their waves + +Hebrew +DSS; MT + +Or + + or + +and all their wisdom was swallowed up + +and they were at their wits’ end +because of the wickedness of its dwellers. + + Psalm 109:15 | 557 + +35 + +10 + +36 + +He turns a desert into pools of water + +11 + +Who will bring me to the fortified city? + +and a dry land into flowing springs. + +He causes the hungry to settle there, + +Who will lead me to Edom? +Have You not rejected us, O God? + +37 + +that they may establish a city in which to + +12 + +Will You no longer march out, O God, with + +dwell. + +our armies? + +38 + +They sow fields and plant vineyards + +13 + +Give us aid against the enemy, + +that yield a fruitful harvest. + +39 + +40 + +He blesses them, and they multiply greatly; +He does not let their herds diminish. +When they are decreased and humbled +by oppression, evil, and sorrow, +He pours out contempt on the nobles + +41 + +and makes them wander in a trackless + +wasteland. + +42 + +But He lifts the needy from affliction + +and increases their families like flocks. + +The upright see and rejoice, + +43 + +and all iniquity shuts its mouth. + +Let him who is wise pay heed to these things +and consider the loving devotion of the + +LORD. Psalm 108 +Israel’s Kingdom Blessing +(Psalm 57:1–11 ; Psalm 60:1–12) + + A song. A Psalm of David. + +1 + +My heart is steadfast, O God; +a + +2 + +I will sing and make music with all my + +being. + +Awake, O harp and lyre! + +3 + +I will awaken the dawn. + +I will praise You, O LORD, among the nations; + +4 + +I will sing Your praises among the + +peoples. + +For Your loving devotion extends beyond the + +heavens, + +5 + +and Your faithfulness reaches to the + +clouds. + +6 + +7 + +Be exalted, O God, above the heavens; +may Your glory cover all the earth. +Respond and save us with Your right hand, +that Your beloved may be delivered. + + b + +for the help of man is worthless. +With God we will perform with valor, +and He will trample our enemies. + +Psalm 109 +The Song of the Slandered + + For the choirmaster. A Psalm of David. + +1 + +2 + +O God of my praise, +be not silent. + +For wicked and deceitful mouths open + +3 + +against me; + +they speak against me with lying tongues. + +They surround me with hateful words + +4 + +and attack me without cause. +In return for my love they accuse me, + +5 + +but I am a man of prayer. +They repay me evil for good, +and hatred for my love. + +6 + +7 + +Set over him a wicked man; + +let an accuser stand at his right hand. +When he is tried, let him be found guilty, + +and may his prayer be regarded as sin. + +c + +8 + +May his days be few; + +9 + +may another take his position. + +10 + +May his children be fatherless +and his wife a widow. + + d + +May his children wander as beggars, + +11 + +seeking sustenance + + far from their ruined + +homes. + +May the creditor seize all he owns, + +12 + +and strangers plunder the fruits of his + +labor. + +May there be no one to extend kindness to + +13 + +him, + +and no one to favor his fatherless children. + +May his descendants be cut off; + +God has spoken from His sanctuary: + +14 + +may their name be blotted out from the + +“I will triumph! + +I will parcel out Shechem +8 + +and apportion the Valley of Succoth. + +Gilead is Mine, and Manasseh is Mine; +Ephraim is My helmet, Judah is My + +9 + +scepter. +Moab is My washbasin; + +next generation. +May the iniquity of his fathers be + +remembered before the LORD, + +15 + +and the sin of his mother never be blotted + +out. + +May their sins always remain before the + +LORD, + +a 1 + +upon Edom I toss My sandal; +in His holiness +b 7 +with my glory +over Philistia I shout in triumph.” +Or + +c 8 + +Or + +that He may cut off their memory from + +d 10 + +the earth. + +may they be driven + +Cited in Acts 1:20 + +Hebrew; LXX + + 558 | Psalm 109:16 + +16 + +For he never thought to show kindness, +but pursued the poor and needy and + +17 + +brokenhearted, +even to their death. +The cursing that he loved, +may it fall on him; + +the blessing in which he refused to delight, + +18 + +may it be far from him. + +The cursing that he wore like a coat, + +19 + +may it soak into his body like water, +and into his bones like oil. + +20 + +May it be like a robe wrapped about him, +like a belt tied forever around him. +May this be the LORD’s reward to my + +accusers, + +21 + +to those who speak evil against me. + +But You, O GOD, the Lord, + +deal kindly with me for the sake of Your + +name; + +22 + +deliver me by the goodness of Your + +loving devotion. + +For I am poor and needy; + +23 + +my heart is wounded within me. + +I am fading away like a lengthening shadow; + +24 + +I am shaken off like a locust. +My knees are weak from fasting, + +25 + +and my body grows lean and gaunt. +I am an object of scorn to my accusers; +when they see me, they shake their + +26 + +heads. + +Help me, O LORD my God; + +27 + +save me according to Your loving + +devotion. + +28 + +Let them know that this is Your hand, +that You, O LORD, have done it. +Though they curse, You will bless. + +Psalm 110 +God’s Faithful Messiah +(Genesis 14:17–24 ; Hebrews 5:1–10) + + A Psalm of David. + +1 + +The LORD said to my Lord: +“Sit at My right hand +until I make Your enemies + + a + +2 + +a footstool for Your feet.” + +The LORD extends Your mighty scepter + +3 + +from Zion: + +“Rule in the midst of Your enemies.” + +Your people shall be willing +on Your day of battle. + +Arrayed in holy splendor, from the womb of + +4 + +the dawn, + +to You belongs the dew of Your youth. + +The LORD has sworn + +and will not change His mind: + b + +“You are a priest forever + +5 + +in the order of Melchizedek.” + +The Lord is at Your right hand; + +6 + +He will crush kings in the day of His + +wrath. + +He will judge the nations, heaping up the + +7 + +dead; + +He will crush the leaders far and wide. +He will drink from the brook by the road; +therefore He will lift up His head. + +Psalm 111 +Majestic Is His Work + +1 + + c + +Hallelujah! + +I will give thanks to the LORD with all my + +heart + +When they rise up, they will be put to + +2 + +in the council of the upright and in the + +29 + +shame, + +but Your servant will rejoice. + +30 + +May my accusers be clothed with disgrace; +may they wear their shame like a robe. + +With my mouth I will thank the LORD + +31 + +profusely; + +assembly. + +Great are the works of the LORD; + +3 + +they are pondered by all who delight + +in them. + +Splendid and majestic is His work; + +4 + +His righteousness endures forever. + +I will praise Him in the presence of many. + +He has caused His wonders to be + +For He stands at the right hand of the + +5 + +remembered; + +needy one, + +to save him from the condemners of his + +a 1 + +soul. + +the LORD is gracious and compassionate. + +He provides food for those who fear Him; +He remembers His covenant forever. +b 4 + +Hallelu YAH +Cited in Matthew 22:44, Mark 12:36, Luke 20:42–43, Acts 2:34–35, and Hebrews 1:13 + +Praise the LORD + +c 1 + +Cited in Hebrews 5:6, + +Hebrews 7:17, and Hebrews 7:21 +beginning with the successive letters of the Hebrew alphabet. + +, meaning + +Or + +. This psalm is an acrostic poem, each line + + 6 + +He has shown His people the power of + +His works + +7 + +by giving them the inheritance of the + +nations. + +The works of His hands are truth and justice; + +8 + +all His precepts are trustworthy. + +They are upheld forever and ever, + +9 + +enacted in truth and uprightness. +He has sent redemption to His people; + +10 + +He has ordained His covenant forever; +holy and awesome is His name. + +Psalm 115:1 | 559 + +Psalm 113 +The LORD Exalts the Humble +(1 Samuel 1:1–8) + +1 + + c + +Hallelujah! + +2 + +3 + +Give praise, O servants of the LORD; +praise the name of the LORD. +Blessed be the name of the LORD +both now and forevermore. + +From where the sun rises to where it sets, + +4 + +the name of the LORD is praised. + +The fear of the LORD is the beginning of + +The LORD is exalted over all the nations, + +5 + +wisdom; + +all who follow His precepts gain rich + +understanding. + +Psalm 112 +His praise endures forever! +The Blessed Fear of the LORD +(Psalm 128:1–6) + +1 + + a + +Hallelujah! + +Blessed is the man who fears the LORD, + +2 + +who greatly delights in His +commandments. + +His glory above the heavens. + +6 + +7 + +Who is like the LORD our God, +the One enthroned on high? +He humbles Himself to behold +the heavens and the earth. + +He raises the poor from the dust + +8 + +and lifts the needy from the dump + +to seat them with nobles, + +9 + +with the princes of His people. + +He settles the barren woman in her home +as a joyful mother to her children. + +Hallelujah! + +Psalm 114 +A Psalm of Exodus + +His descendants will be mighty in the land; +the generation of the upright will be + +3 + +1 + +blessed. + +Wealth and riches are in his house, + +4 + +and his righteousness endures forever. +Light dawns in the darkness for the upright— + +for the gracious, compassionate, and + +righteous. + +5 + +It is well with the man who is generous and + +6 + +lends freely, + +whose affairs are guided by justice. + +Surely he will never be shaken; + +7 + +the righteous man will be remembered + +forever. + +He does not fear bad news; + +8 + +his heart is steadfast, trusting in the + +LORD. + +9 + +His heart is assured; he does not fear, + b + +until he looks in triumph on his foes. +He has scattered abroad his gifts to the poor; + +10 + +his righteousness endures forever; +his horn will be lifted high in honor. + +When Israel departed from Egypt, + +2 + +the house of Jacob from a people of + +foreign tongue, +Judah became God’s sanctuary, + +Israel His dominion. + +4 + +The sea observed and fled; +the Jordan turned back; + +the mountains skipped like rams, + +5 + +the hills like lambs. + +Why was it, O sea, that you fled, + +6 + +O Jordan, that you turned back, + +3 + +7 + +O mountains, that you skipped like rams, + +O hills, like lambs? + +Tremble, O earth + +8 + +, at the presence of the Lord, + +at the presence of the God of Jacob, + +who turned the rock into a pool, + +Psalm 115 +the flint into a fountain of water! +To Your Name Be the Glory +(Psalm 135:1–21) + +The wicked man will see and be grieved; +he will gnash his teeth and waste + +1 + +a 1 + +away; + +Hallelu YAH +the desires of the wicked will perish. +b 9 + +Praise the LORD + +c 1 + +Not to us, O LORD, not to us, + +but to Your name be the glory, + +Praise the LORD + +Hallelu YAH + +Or + +, meaning + +. This psalm is an acrostic poem, each line beginning with the successive letters + +of the Hebrew alphabet. + +Cited in 2 Corinthians 9:9 + +Or + +, meaning + +; also in verse 9 + + 560 | Psalm 115:2 + +2 + +because of Your loving devotion, +because of Your faithfulness. + +3 + +Why should the nations say, +“Where is their God?” + +Our God is in heaven; + +He does as He pleases. + +4 + +8 + +9 + +14 + +15 + +16 + +5 + +Their idols are silver and gold, +made by the hands of men. + +6 + +They have mouths, but cannot speak; +they have eyes, but cannot see; + +they have ears, but cannot hear; + +7 + +they have noses, but cannot smell; + +they have hands, but cannot feel; + +a + +they have feet, but cannot walk; +they cannot even clear their throats. +Those who make them become like them, + +b + +as do all who trust in them. + +O Israel, + +10 + + trust in the LORD! + +He is their help and shield. + +O house of Aaron, trust in the LORD! + +11 + +He is their help and shield. + +You who fear the LORD, trust in the LORD! + +12 + +He is their help and shield. + +The LORD is mindful of us; + +He will bless us. + +He will bless the house of Israel; + +13 + +He will bless the house of Aaron; +He will bless those who fear the LORD— + +small and great alike. + +May the LORD give you increase, +both you and your children. +May you be blessed by the LORD, +the Maker of heaven and earth. + +17 + +The highest heavens belong to the LORD, +but the earth He has given to mankind. + +18 + +It is not the dead who praise the LORD, +nor any who descend into silence. +But it is we who will bless the LORD, + + c + +both now and forevermore. + +3 + +The ropes of death entangled me; + +4 + +the anguish of Sheol overcame me; +I was confronted by trouble and sorrow. + +5 + +Then I called on the name of the LORD: + +“O LORD, deliver my soul!” + +6 + +The LORD is gracious and righteous; +our God is full of compassion. + +7 + +The LORD preserves the simplehearted; +I was helpless, and He saved me. + +Return to your rest, O my soul, + +8 + +for the LORD has been good to you. +For You have delivered my soul from death, + +my eyes from tears, my feet from + +stumbling. + +9 + +10 + +11 + +I will walk before the LORD +d +in the land of the living. +I believed, therefore I said, +“I am greatly afflicted.” + +12 + +In my alarm I said, + +“All men are liars!” + +13 + +How can I repay the LORD + +for all His goodness to me? + +14 + +I will lift the cup of salvation + +and call on the name of the LORD. + +15 + +I will fulfill my vows to the LORD + +in the presence of all His people. + +16 + +Precious in the sight of the LORD +is the death of His saints. + +Truly, O LORD, I am Your servant; + +I am Your servant, the son of Your + +17 + +maidservant; + +You have broken my bonds. + +18 + +I will offer to You a sacrifice of thanksgiving + +and call on the name of the LORD. + +19 + +I will fulfill my vows to the LORD + +in the presence of all His people, + +in the courts of the LORD’s house, +in your midst, O Jerusalem. + + e + +Hallelujah! + +Psalm 117 +Extol Him, All You Peoples + +Hallelujah! + +Psalm 116 +The LORD Has Heard My Voice + +1 + + f + +1 + +I love the LORD, for He has heard my voice— + +2 + +my appeal for mercy. + +Because He has inclined His ear to me, +I will call on Him as long as I live. +Hallelu YAH +Hallelu YAH + +they cannot utter with their throat +Praise the LORD +Praise the LORD + +a 7 +c 18 +e 19 + +b 9 +d 10 +f 1 + +Literally +Or +Or + +, meaning +, meaning + +2 + +Praise the LORD, all you nations! +Extol Him, all you peoples! + +For great is His loving devotion toward us, + +and the faithfulness of the LORD endures + + g +forever. + +Hallelujah! + +O house of Israel + +therefore I have spoken +g 2 + +MT; many Hebrew manuscripts, LXX, and Syriac +LXX + +Hallelu YAH + +; cited in 2 Corinthians 4:13 +Or + +, meaning + +Cited in Romans 15:11 + +Praise the LORD + + Psalm 118 +The LORD Is on My Side + +1 + +2 + +Give thanks to the LORD, for He is good; +His loving devotion endures forever. + + a + +Let Israel + +3 + + say, + +“His loving devotion endures forever.” + +Let the house of Aaron say, + +4 + +“His loving devotion endures forever.” + +Let those who fear the LORD say, + +“His loving devotion endures forever.” + +5 + +In my distress I called to the LORD, + + b + +6 + +and He answered and set me free. + + c + +The LORD is on my side; + +7 + + I will not be afraid. + +What can man do to me? + +The LORD is on my side; He is my helper. + +8 + +Therefore I will look in triumph on those + +26 + +who hate me. + +It is better to take refuge in the LORD + +9 + +than to trust in man. + +It is better to take refuge in the LORD + +10 + +than to trust in princes. + +11 + +All the nations surrounded me, + +Psalm 119:6 | 561 + +19 + +Open to me the gates of righteousness, +that I may enter and give thanks to + +20 + +the LORD. + +21 + +This is the gate of the LORD; + +the righteous shall enter through it. + +I will give You thanks, for You have answered + +22 + +me, + +23 + +and You have become my salvation. + +d +The stone the builders rejected +has become the cornerstone. + +e + +24 + +This is from the LORD, + +and it is marvelous in our eyes. + +25 + +This is the day that the LORD has made; +we will rejoice and be glad in it. + +f + +O LORD, save us, we pray. + +We beseech You, O LORD, cause us to + +prosper! + +g + +Blessed is he who comes in the name of the + +27 + +LORD. + +From the house of the LORD we bless you. + +The LORD is God; + +He has made His light to shine upon us. + +h + +but in the name of the LORD I cut them off. + +28 + +Bind the festal sacrifice with cords + +They surrounded me on every side, +but in the name of the LORD I cut + +12 + +them off. + +They swarmed around me like bees, + +but they were extinguished like burning + +13 + +thorns; + +in the name of the LORD I cut them off. + +14 + +I was pushed so hard I was falling, + +but the LORD helped me. + +15 + +The LORD is my strength and my song, +and He has become my salvation. + +to the horns of the altar. + +29 + +You are my God, and I will give You thanks. +You are my God, and I will exalt You. +Give thanks to the LORD, for He is good; +His loving devotion endures forever. +Psalm 119 +Your Word Is a Lamp to My Feet + א +ALEPH + +1 + + i + +Blessed + +2 + + are those whose way is blameless, + +Shouts of joy and salvation resound in the + +who walk in the Law of the LORD. + +tents of the righteous: + +Blessed are those who keep His testimonies + +3 + +16 + +“The right hand of the LORD performs + +and seek Him with all their heart. + +with valor! + +The right hand of the LORD is exalted! + +They do no iniquity; + +4 + +they walk in His ways. + +17 + +The right hand of the LORD performs with + +You have ordained Your precepts, + +5 + +valor!” + +18 + +I will not die, but I will live + +and proclaim what the LORD has done. + +The LORD disciplined me severely, + +a 2 + +but He has not given me over to death. +the house of Israel +The LORD is with me +b 6 +the head of the corner +d 22 + +that we should keep them diligently. + +Oh, that my ways were committed + +6 + +to keeping Your statutes! +Then I would not be ashamed +c 6 + +when I consider all Your commandments. + +The Lord is my helper + +LXX +e 23 +13:6 + +Hebrew + +Or + +Cited in Hebrews +; cited in Matthew 21:42, Mark 12:10, Luke 20:17, Acts 4:11, and 1 Peter 2:7 + +; also in verse 7; LXX + +save, we pray + +save now + +hosia-na + +f 25 +g 26 + +h 27 + +Cited in Matthew 21:42 and Mark 12:11 +Matthew 21:15, Mark 11:9, and John 12:13. +19:38, and John 12:13 +psalm is an acrostic poem of twenty-two stanzas, following the letters of the Hebrew alphabet; within a stanza, each +verse begins with the same Hebrew letter. + +Hebrew +Cited in Matthew 21:9, Matthew 23:39, Mark 11:9, Luke 13:35, Luke + +Join in the festal procession with boughs in hand, up to the horns of the altar. + +, meaning + +This + + or + +Or + +i 1 + +; see Matthew 21:9, + + 562 | Psalm 119:7 + +7 + +27 + +I will praise You with an upright heart + +8 + +when I learn Your righteous judgments. + +28 + +Make clear to me the way of Your precepts; +then I will meditate on Your wonders. + +I will keep Your statutes; + +do not utterly forsake me. + +ב +BETH + +9 + +10 + +How can a young man keep his way pure? +By guarding it according to Your word. + +With all my heart I have sought You; +do not let me stray from Your + +11 + +commandments. + +12 + +I have hidden Your word in my heart +that I might not sin against You. + +13 + +Blessed are You, O LORD; +teach me Your statutes. + +14 + +With my lips I proclaim + +all the judgments of Your mouth. +I rejoice in the way of Your testimonies + +15 + +as much as in all riches. + +16 + +I will meditate on Your precepts + +and regard Your ways. +I will delight in Your statutes; +I will not forget Your word. + +ג +GIMEL + +17 + +18 + +Deal bountifully with Your servant, + +that I may live and keep Your word. + +19 + +Open my eyes that I may see + +wondrous things from Your law. + +I am a stranger on the earth; + +20 + +do not hide Your commandments from + +me. + +21 + +My soul is consumed with longing +for Your judgments at all times. + +You rebuke the arrogant— + +22 + +the cursed who stray from Your + +commandments. +Remove my scorn and contempt, + +23 + +for I have kept Your testimonies. + +24 + +Though rulers sit and slander me, + +29 + +My soul melts with sorrow; + +strengthen me according to Your word. + +30 + +Remove me from the path of deceit + +and graciously grant me Your law. + +31 + +I have chosen the way of truth; + +I have set Your ordinances before me. + +32 + +I cling to Your testimonies, O LORD; + +let me not be put to shame. + +I run in the path of Your commandments, +ה +HE + +for You will enlarge my heart. + +33 + +34 + +Teach me, O LORD, the way of Your statutes, + +and I will keep them to the end. + +Give me understanding that I may obey Your + +a + +35 + +law, + +and follow it with all my heart. + +36 + +Direct me in the path of Your +commandments, +for there I find delight. + +37 + +Turn my heart to Your testimonies + +and not to covetous gain. + +b + +38 + +Turn my eyes away from worthless things; + +revive me with Your word. + +39 + +Establish Your word to Your servant, +to produce reverence for You. + +40 + +Turn away the disgrace I dread, +for Your judgments are good. + +How I long for Your precepts! + +Revive me in Your righteousness. + +ו +WAW + +41 + +May Your loving devotion come to me, + +42 + +O LORD, + +Your salvation, according to Your promise. + +43 + +Then I can answer him who taunts, + +for I trust in Your word. + +Never take Your word of truth from my + +Your servant meditates on Your statutes. + +44 + +mouth, + +Your testimonies are indeed my delight; + +ד +they are my counselors. +DALETH + +25 + +26 + +My soul cleaves to the dust; + +revive me according to Your word. + +I recounted my ways, and You answered me; + +a 33 + +keep them as my reward +teach me Your statutes. + +b 37 + +for I hope in Your judgments. + +45 + +I will always obey Your law, + +forever and ever. + +46 + +And I will walk in freedom, + +for I have sought Your precepts. + +47 + +I will speak of Your testimonies before kings, + +and I will not be ashamed. +I delight in Your commandments + +because I love them. + +in Your way + +Or + +Two MT manuscripts and DSS; most MT manuscripts + + 48 + +67 + +I lift up my hands to Your commandments, + +68 + +Before I was afflicted, I went astray; + +Psalm 119:84 | 563 + +which I love, + +and I meditate on Your statutes. + +ז +ZAYIN + +49 + +50 + +Remember Your word to Your servant, + +upon which You have given me hope. + +51 + +This is my comfort in affliction, + +that Your promise has given me life. + +52 + +The arrogant utterly deride me, + +but I do not turn from Your law. +I remember Your judgments of old, + +53 + +O LORD, + +and in them I find comfort. + +Rage has taken hold of me + +54 + +because of the wicked who reject Your + +law. + +55 + +Your statutes are songs to me + +in the house of my pilgrimage. + +56 + +In the night, O LORD, I remember Your name, + +that I may keep Your law. + +This is my practice, + +for I obey Your precepts. + +ח +HETH + +57 + +58 + +The LORD is my portion; + +I have promised to keep Your words. +I have sought Your face with all my heart; +be gracious to me according to Your + +59 + +promise. +I considered my ways + +60 + +and turned my steps to Your testimonies. + +61 + +I hurried without hesitating + +to keep Your commandments. + +62 + +Though the ropes of the wicked bind me, + +I do not forget Your law. + +63 + +64 + +At midnight I rise to give You thanks +for Your righteous judgments. +I am a friend to all who fear You, + +and to those who keep Your precepts. +The earth is filled with Your loving devotion, + +O LORD; + +ט +teach me Your statutes. +TETH + +65 + +but now I keep Your word. + +69 + +You are good, and You do what is good; + +teach me Your statutes. + +Though the arrogant have smeared me with + +70 + +lies, + + a + +I keep Your precepts with all my heart. + +71 + +Their hearts are callous and insensitive, + +but I delight in Your law. + +72 + +It was good for me to be afflicted, + +that I might learn Your statutes. + +The law from Your mouth is more precious to + +me + +than thousands of pieces of gold and +י +YODH + +silver. + +73 + +Your hands have made me and fashioned me; + +74 + +give me understanding to learn Your + +commandments. + +75 + +May those who fear You see me and rejoice, + +for I have hoped in Your word. + +I know, O LORD, that Your judgments are + +righteous, + +76 + +and that in faithfulness You have afflicted + +me. + +May Your loving devotion comfort me, I pray, + +77 + +according to Your promise to Your + +servant. + +May Your compassion come to me, that I may + +78 + +live, + +for Your law is my delight. + +May the arrogant be put to shame for +subverting me with a lie; +I will meditate on Your precepts. +May those who fear You turn to me, + +79 + +80 + +those who know Your testimonies. + +May my heart be blameless in Your statutes, +כ +KAPH + +that I may not be put to shame. + +81 + +82 + +My soul faints for Your salvation; + +I wait for Your word. + +83 + +My eyes fail, looking for Your promise; +I ask, “When will You comfort me?” +Though I am like a wineskin dried up by + +84 + +smoke, + + b + +66 + +You are good to Your servant, O LORD, + +I do not forget Your statutes. + +according to Your word. + +Teach me good judgment and knowledge, +fat +for I believe in Your commandments. + +How many are the days of Your servant? + +b 84 + +a 70 + +How many days must Your servant wait? + +When will You execute judgment on my + +persecutors? + +Or + +Or + + 564 | Psalm 119:85 + +85 + +The arrogant have dug pits for me + +86 + +in violation of Your law. + +All Your commandments are faithful; + +87 + +I am persecuted without cause—help me! + +They almost wiped me from the earth, + +88 + +but I have not forsaken Your precepts. +Revive me according to Your loving devotion, +that I may obey the testimony of Your +ל +LAMEDH + +mouth. + +89 + +90 + +Your word, O LORD, is everlasting; +it is firmly fixed in the heavens. +Your faithfulness continues through all + +91 + +generations; + +a + +You established the earth, and it endures. + +Your ordinances stand to this day, + +92 + +for all things are servants to You. +If Your law had not been my delight, +then I would have perished in my + +93 + +affliction. + +I will never forget Your precepts, + +94 + +for by them You have revived me. + +I am Yours; save me, + +95 + +for I have sought Your precepts. + +The wicked wait to destroy me, + +96 + +but I will ponder Your testimonies. + +I have seen a limit to all perfection, + +but Your commandment is without +מ +MEM + +limit. + +97 + +Oh, how I love Your law! + +98 + +All day long it is my meditation. + +Your commandments make me wiser than + +99 + +my enemies, + +for they are always with me. + +I have more insight than all my teachers, + +100 + +for Your testimonies are my meditation. + +101 + +I discern more than the elders, +for I obey Your precepts. + +נ +NUN + +105 + +106 + +Your word is a lamp to my feet + +and a light to my path. +I have sworn and confirmed + +107 + +that I will keep Your righteous judgments. + +108 + +I am severely afflicted, O LORD; +revive me through Your word. + +Accept the freewill offerings of my mouth, O + +109 + +LORD, + +and teach me Your judgments. + +110 + +I constantly take my life in my hands, + +yet I do not forget Your law. + +111 + +The wicked have set a snare for me, + +but I have not strayed from Your precepts. + +112 + +Your testimonies are my heritage forever, + +for they are the joy of my heart. + +I have inclined my heart to perform Your + +statutes, + +even to the very end. ס + +SAMEKH + +113 + +114 + +The double-minded I despise, + +but Your law I love. + +115 + +You are my hiding place and my shield; + +I put my hope in Your word. +Depart from me, you evildoers, + +116 + +that I may obey the commandments of + +my God. + +117 + +Sustain me as You promised, that I may live; + +let me not be ashamed of my hope. + +118 + +Uphold me, and I will be saved, + +that I may always regard Your statutes. +You reject all who stray from Your statutes, + +119 + +for their deceitfulness is in vain. + +All the wicked on earth You discard like + +120 + +dross; + +therefore I love Your testimonies. + +My flesh trembles in awe of You; + +I stand in fear of Your judgments. + +ע +AYIN + +102 + +I have kept my feet from every evil path, + +121 + +that I may keep Your word. + +103 + +I have not departed from Your ordinances, + +122 + +I have done what is just and right; + +for You Yourself have taught me. + +104 + +How sweet are Your words to my taste— + +sweeter than honey in my mouth! + +I gain understanding from Your precepts; +therefore I hate every false way. +They stand this day according to Your ordinances + +a 91 + +do not leave me to my oppressors. + +123 + +Ensure Your servant’s well-being; + +do not let the arrogant oppress me. +My eyes fail, looking for Your salvation, + +and for Your righteous promise. + +Or + + 124 + +Deal with Your servant according to Your + +125 + +loving devotion, + +and teach me Your statutes. + +126 + +I am Your servant; give me understanding, + +that I may know Your testimonies. + +127 + +It is time for the LORD to act, + +for they have broken Your law. + +Therefore I love Your commandments + +128 + +more than gold, + +even the purest gold. + +Therefore I admire all Your precepts + +and hate every false way. + + פ +PE + +129 + +130 + +Wonderful are Your testimonies; + +therefore I obey them. + +131 + +The unfolding of Your words gives light; + +it informs the simple. +I open my mouth and pant, + +132 + +longing for Your commandments. + +133 + +Turn to me and show me mercy, + +as You do to those who love Your name. + +134 + +Order my steps in Your word; + +let no sin rule over me. + +135 + +Redeem me from the oppression of man, + +that I may keep Your precepts. + +136 + +Make Your face shine upon Your servant, + +and teach me Your statutes. +My eyes shed streams of tears + +because Your law is not obeyed. + + צ +TZADE + +137 + +138 + +Righteous are You, O LORD, + +and upright are Your judgments. + +The testimonies You have laid down are + +139 + +righteous + +and altogether faithful. +My zeal has consumed me + +140 + +because my foes forget Your words. + +141 + +Your promise is completely pure; +therefore Your servant loves it. + +142 + +I am lowly and despised, + +but I do not forget Your precepts. + +143 + +Your righteousness is everlasting + +and Your law is true. + +Psalm 119:163 | 565 + +ק +KOPH + +145 + +I call with all my heart; answer me, + +146 + +O LORD! + +I will obey Your statutes. + +147 + +I call to You; save me, + +148 + +that I may keep Your testimonies. +I rise before dawn and cry for help; +in Your word I have put my hope. + +149 + +My eyes anticipate the watches of night, +that I may meditate on Your word. + +Hear my voice, O LORD, according to Your + +150 + +loving devotion; + +give me life according to Your justice. +Those who follow after wickedness draw + +151 + +near; + +they are far from Your law. + +152 + +You are near, O LORD, + +and all Your commandments are true. +Long ago I learned from Your testimonies +ר +that You have established them forever. +RESH + +153 + +154 + +Look upon my affliction and rescue me, +for I have not forgotten Your law. + +155 + +Defend my cause and redeem me; + +revive me according to Your word. + +156 + +Salvation is far from the wicked + +because they do not seek Your statutes. + +157 + +Great are Your mercies, O LORD; + +158 + +revive me according to Your ordinances. +Though my persecutors and foes are many, +I have not turned from Your testimonies. + +159 + +I look on the faithless with loathing + +because they do not keep Your word. + +Consider how I love Your precepts, + +O LORD; + +160 + +give me life according to Your loving + +devotion. + +The entirety of Your word is truth, + +and all Your righteous judgments endure + ש +SIN and SHIN + +forever. + +161 + +162 + +Rulers persecute me without cause, + +but my heart fears only Your word. + +144 + +Trouble and distress have found me, + +163 + +I rejoice in Your promise + +but Your commandments are my delight. + +like one who finds great spoil. + +Your testimonies are righteous forever. + +I hate and abhor falsehood, + +Give me understanding, that I may live. + +but Your law I love. + + 566 | Psalm 119:164 + +164 + +165 + +Seven times a day I praise You + +for Your righteous judgments. + +Abundant peace belongs to those who love + +166 + +Your law; + +nothing can make them stumble. +I wait for Your salvation, O LORD, + +167 + +and I carry out Your commandments. + +168 + +I obey Your testimonies +and love them greatly. + +I obey Your precepts and Your testimonies, +ת +TAW + +for all my ways are before You. + +169 + +May my cry come before You, O LORD; + +170 + +give me understanding according to Your + +word. + +171 + +May my plea come before You; + +rescue me according to Your promise. + +172 + +My lips pour forth praise, + +for You teach me Your statutes. + +173 + +My tongue sings of Your word, + +for all Your commandments are righteous. + +174 + +175 + +May Your hand be ready to help me, +for I have chosen Your precepts. +I long for Your salvation, O LORD, +and Your law is my delight. + +176 + +Let me live to praise You; + +may Your judgments sustain me. + +I have strayed like a lost sheep; + +seek Your servant, for I have not forgotten + +Your commandments. + +Psalm 120 +In My Distress I Cried to the LORD + + A song of ascents. + +1 + +In my distress I cried to the LORD, + +2 + +and He answered me. +Deliver my soul, O LORD, + +from lying lips and a deceitful tongue. + +3 + +What will He do to you, + +4 + +and what will be added to you, +O deceitful tongue? + +5 + +Sharp arrows will come from the warrior, +with burning coals of the broom tree! + +Woe to me that I dwell in Meshech, + +6 + +that I live among the tents of Kedar! + +Too long have I dwelt + +7 + +among those who hate peace. + +I am in favor of peace; + +a 6 + +be secure +but when I speak, they want war. + +security + +b 7 + +Or + +Or + +Psalm 121 +I Lift Up My Eyes to the Hills + A song of ascents. + +1 + +2 + +I lift up my eyes to the hills. + +From where does my help come? + +My help comes from the LORD, + +the Maker of heaven and earth. + +4 + +He will not allow your foot to slip; + +your Protector will not slumber. + +Behold, the Protector of Israel + +will neither slumber nor sleep. + +3 + +5 + +7 + +6 + +The LORD is your keeper; + +the LORD is the shade on your right hand. + +The sun will not strike you by day, + +nor the moon by night. + +8 + +The LORD will guard you from all evil; + +He will preserve your soul. + +The LORD will watch over your coming and + +going, + +both now and forevermore. + +Psalm 122 +Pray for the Peace of Jerusalem + A song of ascents. Of David. + +1 + +2 + +I was glad when they said to me, + +“Let us go to the house of the LORD.” + +3 + +Our feet are standing in your gates, + +O Jerusalem. +Jerusalem is built up + +4 + +as a city united together, + +where the tribes go up, + +the tribes of the LORD, + +as a testimony for Israel, +5 + +to give thanks to the name of the LORD. + +6 + +For there the thrones of judgment stand, +the thrones of the house of David. +a + +Pray for the peace of Jerusalem: + +7 + +“May those who love you prosper. + b +May there be peace within your walls, + +8 + +and prosperity + + inside your fortresses.” + +9 + +For the sake of my brothers and friends, +I will say, “Peace be within you.” +For the sake of the house of the LORD + +our God, + +I will seek your prosperity. + +Psalm 123 +I Lift Up My Eyes to You + + A song of ascents. + +1 + +I lift up my eyes to You, + +the One enthroned in heaven. + + 2 + +4 + +Psalm 127:5 | 567 + +As the eyes of servants + +look to the hand of their master, + +as the eyes of a maidservant + +look to the hand of her mistress, +so our eyes are on the LORD our God + +3 + +until He shows us mercy. + +4 + +Have mercy on us, O LORD, have mercy, +for we have endured much contempt. + +We have endured much scorn from the + +arrogant, + +Psalm 124 +much contempt from the proud. +Our Help Is in the Name of the LORD + + A song of ascents. Of David. + +1 + +If the LORD had not been on our side— + +2 + +let Israel now declare— + +if the LORD had not been on our side + +3 + +when men attacked us, + +when their anger flared against us, + +4 + +then they would have swallowed us alive, + +then the floods would have engulfed us, + +5 + +then the torrent would have overwhelmed + +us, + +then the raging waters + +6 + +would have swept us away. + +Blessed be the LORD, + +7 + +who has not given us as prey to their + +teeth. + +Do good, O LORD, to those who are good, + +5 + +and to the upright in heart. + +But those who turn to crooked ways + +the LORD will banish with the evildoers. + +Peace be upon Israel. + +Psalm 126 +Zion’s Captives Restored + + A song of ascents. + +1 + +a + +When the LORD restored the captives of + +b + +2 + +Zion, + +we were like dreamers. + +Then our mouths were filled with laughter, + +our tongues with shouts of joy. +Then it was said among the nations, +3 + +“The LORD has done great things for + +them.” + +4 + +The LORD has done great things for us; + +we are filled with joy. + +c + +Restore our captives, + +5 + + O LORD, + +like streams in the Negev. + +Those who sow in tears + +6 + +will reap with shouts of joy. + +He who goes out weeping, +bearing a trail of seed, + +will surely return with shouts of joy, + +carrying sheaves of grain. + +Psalm 127 +Children Are a Heritage from the LORD + + A song of ascents. Of Solomon. + +We have escaped like a bird from the + +8 + +snare of the fowler; + +1 + +the net is torn, and we have slipped away. + +Our help is in the name of the LORD, +the Maker of heaven and earth. + +Psalm 125 +The LORD Surrounds His People + + A song of ascents. + +1 + +Those who trust in the LORD are like Mount + +2 + +Zion. + +It cannot be moved; it abides forever. + +As the mountains surround Jerusalem, +so the LORD surrounds His people, +both now and forevermore. + +3 + +For the scepter of the wicked will not rest + +upon the land allotted to the + +righteous, + +Unless the LORD builds the house, + +its builders labor in vain; +unless the LORD protects the city, +2 + +its watchmen stand guard in vain. + +In vain you rise early +and stay up late, +toiling for bread to eat— +3 + +for He gives sleep to His beloved. + +Children are indeed a heritage from the + +4 + +LORD, + +and the fruit of the womb is His reward. + +Like arrows in the hand of a warrior, + +5 + +so are children born in one’s youth. + +Blessed is the man + +whose quiver is full of them. + +He will not be put to shame + +so that the righteous will not put forth + +a 1 +c 4 + +brought back the captives to Zion +their hands to injustice. +Restore our fortunes + +restored the fortunes of Zion + +when he confronts the enemies at the +like those restored to health + +b 1 +gate. + + or + +Or + +Or +Or + + 568 | Psalm 128:1 + +Psalm 128 +The Blessed Fear of the LORD +(Psalm 112:1–10) + +2 + + A song of ascents. + +3 + +O Lord, hear my voice; + +let Your ears be attentive to my plea for + +mercy. + +1 + +2 + +Blessed are all who fear the LORD, + +who walk in His ways! + +3 + +For when you eat the fruit of your labor, + +blessings and prosperity will be yours. + +Your wife will be like a fruitful vine +flourishing within your house, + +your sons like olive shoots +4 + +sitting around your table. + +5 + +In this way indeed shall blessing come +to the man who fears the LORD. + +May the LORD bless you from Zion, + +that you may see the prosperity of + +6 + +Jerusalem + +all the days of your life, + +that you may see + +your children’s children. +Psalm 129 +The Cords of the Wicked + +Peace be upon Israel! + + A song of ascents. + +1 + +Many a time they have persecuted me from + +2 + +my youth— + +let Israel now declare— + +many a time they have persecuted me from + +3 + +my youth, + +but they have not prevailed against me. + +4 + +The plowmen plowed over my back; +they made their furrows long. + +The LORD is righteous; + +5 + +He has cut me from the cords of the + +wicked. + +6 + +May all who hate Zion + +be turned back in shame. + +7 + +8 + +May they be like grass on the rooftops, +which withers before it can grow, +unable to fill the hands of the reaper, + +or the arms of the binder of sheaves. + +May none who pass by say to them, + +“The blessing of the LORD be on you; +Psalm 130 +we bless you in the name of the LORD.” +Out of the Depths + A song of ascents. + +4 + +5 + +If You, O LORD, kept track of iniquities, +then who, O Lord, could stand? +But with You there is forgiveness, +so that You may be feared. + +6 + +I wait for the LORD; my soul does wait, +and in His word I put my hope. + +My soul waits for the Lord + +more than watchmen wait for the + +morning— + +more than watchmen wait for the + +morning. + +7 + +O Israel, put your hope in the LORD, + +8 + +for with the LORD is loving devotion, +and with Him is redemption in abundance. + +And He will redeem Israel + +from all iniquity. Psalm 131 + +I Have Stilled My Soul + + A song of ascents. Of David. + +1 + +My heart is not proud, O LORD, +my eyes are not haughty. +I do not aspire to great things +2 +or matters too lofty for me. + +Surely I have stilled and quieted my soul; +like a weaned child with his mother, +like a weaned child is my soul within me. + +3 + +O Israel, put your hope in the LORD, +both now and forevermore. + +Psalm 132 +The LORD Has Chosen Zion + + A song of ascents. + +1 + +2 + +3 + +O LORD, remember on behalf of David +all the hardships he endured, +how he swore an oath to the LORD, + +and vowed to the Mighty One of Jacob: + +4 + +“I will not enter my house +or get into my bed, + +I will not give sleep to my eyes +or slumber to my eyelids, +until I find a place for the LORD, + +5 + +6 + + b +a dwelling for the Mighty One of Jacob. + +” + +a + +1 + +Out of the depths + +a 5 + +for the God of Jacob +I cry to You, O LORD! + +7 + +We heard that the ark was in Ephrathah; +we found it in the fields of Jaar. + +Let us go to His dwelling place; + +b 6 + +Behold, we heard of it in Ephrathah + +let us worship at His footstool. + +LXX + +; see Acts 7:46. + +Literally + + 8 + +9 + +Arise, O LORD, to Your resting place, +You and the ark of Your strength. + +May Your priests be clothed with + +10 + +righteousness, + +and Your saints shout for joy. +For the sake of Your servant David, +do not reject Your anointed one. + +11 + +The LORD swore an oath to David, +a promise He will not revoke: + +a + +12 + +“One of your descendants + +I will place on your throne. +If your sons keep My covenant + +and the testimony I will teach them, +then their sons will also sit on your throne + +13 + +forever and ever.” + +14 + +For the LORD has chosen Zion; + +He has desired it for His home: + +“This is My resting place forever and ever; +here I will dwell, for I have desired this + +15 + +home. + +16 + +17 + +I will bless her with abundant provisions; +I will satisfy her poor with bread. +I will clothe her priests with salvation, +and her saints will sing out in joy. +There I will make a horn grow for David; + +18 + +I have prepared a lamp for My + +anointed one. + +I will clothe his enemies with shame, + +Psalm 133 +but the crown upon him will gleam.” +How Pleasant to Live in Harmony! +(1 Corinthians 1:10–17 ; Ephesians 4:1–16) + + A song of ascents. Of David. + +1 + +Psalm 135:15 | 569 + +who serve by night +2 + +in the house of the LORD! + +Lift up your hands to the sanctuary + +3 + +and bless the LORD! + +May the LORD, the Maker of heaven and + +earth, + +Psalm 135 +bless you from Zion. +Give Praise, O Servants of the LORD +(Psalm 115:1–18) + +1 + + b + +Hallelujah! + +Praise the name of the LORD. + +2 + +Give praise, O servants of the LORD, + +who stand in the house of the LORD, + +3 + +in the courts of the house of our God. + +Hallelujah, for the LORD is good; + +4 + +sing praises to His name, for it is lovely. +For the LORD has chosen Jacob as His own, +Israel as His treasured possession. + +5 + +6 + +For I know that the LORD is great; +our Lord is above all gods. + +The LORD does all that pleases Him +in the heavens and on the earth, +in the seas and in all their depths. + +7 + +He causes the clouds to rise + +from the ends of the earth. + +He generates the lightning with the rain +and brings forth the wind from His + +8 + +storehouses. + +He struck down the firstborn of Egypt, + +9 + +of both man and beast. + +He sent signs and wonders into your midst, O + +Behold, how good and pleasant it is + +2 + +10 + +Egypt, + +when brothers live together in harmony! + +against Pharaoh and all his servants. + +It is like fine oil on the head, + +running down on the beard, + +running down Aaron’s beard +3 + +over the collar of his robes. + +It is like the dew of Hermon + +falling on the mountains of Zion. +For there the LORD has bestowed the + +blessing + +of life forevermore. + +Psalm 134 +Bless the LORD, All You Servants + + A song of ascents. + +1 + +Come, bless the LORD, + +11 + +He struck down many nations + +and slaughtered mighty kings: + +Sihon king of the Amorites, + +12 + +Og king of Bashan, +and all the kings of Canaan. + +13 + +He gave their land as an inheritance, +as a heritage to His people Israel. + +Your name, O LORD, endures forever, +Your renown, O LORD, through all + +14 + + c + +generations. + +For the LORD will vindicate His people + +15 + +and will have compassion on His servants. + +The idols of the nations are silver and gold, +b 1 + +made by the hands of men. + +Hallelu YAH + +all you servants of the LORD + +“From the fruit of your body I will set (one) on your throne. +will judge His people + +c 14 + +a 11 +Praise the LORD +Literally + +; also in verses 3 and 21 + +Or + + Cited in Acts 2:30 +; see also LXX; cited in Hebrews 10:30. + +Or + +, meaning + + 570 | Psalm 135:16 + +16 + +14 + +17 + +They have mouths, but cannot speak; +they have eyes, but cannot see; + +they have ears, but cannot hear; + +18 + +nor is there breath in their mouths. +Those who make them become like them, + +19 + +as do all who trust in them. + +O house of Israel, bless the LORD; + +20 + +O house of Aaron, bless the LORD; + +O house of Levi, bless the LORD; + +21 + +you who fear the LORD, bless the LORD! + +Blessed be the LORD from Zion— +He who dwells in Jerusalem. + +Hallelujah! + +Psalm 136 +His Loving Devotion Endures Forever +(2 Chronicles 7:1–3) + +1 + +Give thanks to the LORD, for He is good. + +His loving devotion endures forever. + +2 + +Give thanks to the God of gods. + +His loving devotion endures forever. + +3 + +Give thanks to the Lord of lords. + +His loving devotion endures forever. + +4 + +He alone does great wonders. + +His loving devotion endures forever. + +5 + +By His insight He made the heavens. + +His loving devotion endures forever. + +6 + +He spread out the earth upon the waters. + +His loving devotion endures forever. + +7 + +He made the great lights— + +His loving devotion endures forever. + +8 + +the sun to rule the day, + +His loving devotion endures forever. + +9 + +and led Israel through the midst, + +His loving devotion endures forever. + +15 + + b + +but swept + + Pharaoh and his army into the +His loving devotion endures forever. + +Red Sea. + +16 + +He led His people through the wilderness. + +His loving devotion endures forever. + +17 + +He struck down great kings + +His loving devotion endures forever. + +18 + +and slaughtered mighty kings— + +His loving devotion endures forever. + +19 + +Sihon king of the Amorites + +His loving devotion endures forever. + +20 + +and Og king of Bashan— + +His loving devotion endures forever. + +21 + +and He gave their land as an inheritance, + +His loving devotion endures forever. + +22 + +a heritage to His servant Israel. + +His loving devotion endures forever. + +23 + +He remembered us in our low estate + +His loving devotion endures forever. + +24 + +and freed us from our enemies. + +His loving devotion endures forever. + +25 + +He gives food to every creature. + +His loving devotion endures forever. + +26 + +Give thanks to the God of heaven! + +His loving devotion endures forever. + +Psalm 137 +By the Rivers of Babylon +(Ezekiel 1:1–3) + +the moon and stars to govern the night. + +His loving devotion endures forever. + +1 + +10 + +He struck down the firstborn of Egypt + +His loving devotion endures forever. + +11 + +and brought Israel out from among them + +His loving devotion endures forever. + +12 + +His loving devotion endures forever. +with a mighty hand and an outstretched arm. + a + +13 + +His loving devotion endures forever. + in two + +He divided the Red Sea +the Sea of Reeds + +a 13 + +By the rivers of Babylon we sat and wept + c + +2 + +when we remembered Zion. + +There on the willows + +3 + +we hung our harps, + +for there our captors requested a song; + +our tormentors demanded songs of joy: + +4 + +“Sing us a song of Zion.” + +How can we sing a song of the LORD + +5 + +in a foreign land? + +If I forget you, O Jerusalem, + +b 15 + +shook off + +c 2 + +poplars + +may my right hand cease to function. + +Or + +; also in verse 15 + +Hebrew + +Or + + 6 + +May my tongue cling to the roof of my mouth + +if I do not remember you, + +7 + +if I do not exalt Jerusalem +as my greatest joy! + +Remember, O LORD, + +the sons of Edom on the day Jerusalem + +fell: + +“Destroy it,” they said, + +8 + +“tear it down to its foundations!” + +O Daughter of Babylon, + +doomed to destruction, +blessed is he who repays you +9 +as you have done to us. + +Blessed is he who seizes your infants + +and dashes them against the rocks. +Psalm 138 +A Thankful Heart + + Of David. + +1 + +I give You thanks with all my heart; + +2 + +before the gods I sing Your praises. +I bow down toward Your holy temple +and give thanks to Your name +for Your loving devotion and Your + +faithfulness; +You have exalted Your name +3 + +and Your word above all else. +On the day I called, You answered me; + +a + +4 + +You emboldened me and strengthened my + +soul. + +All the kings of the earth will give You thanks, + +5 + +O LORD, + +when they hear the words of Your mouth. + +6 + +They will sing of the ways of the LORD, +for the glory of the LORD is great. + +Though the LORD is on high, +He attends to the lowly; +but the proud He knows from afar. + +7 + +If I walk in the midst of trouble, + +You preserve me from the anger of + +my foes; +You extend Your hand, +8 + +and Your right hand saves me. + +The LORD will fulfill + +His purpose for me. + +Psalm 139:18 | 571 + +Psalm 139 +You Have Searched Me and Known Me + + For the choirmaster. A Psalm of David. + +1 + +O LORD, You have searched me + +2 + +and known me. + +You know when I sit and when I rise; + +3 + +You understand my thoughts from afar. +You search out my path and my lying down; + +4 + +You are aware of all my ways. +Even before a word is on my tongue, +You know all about it, O LORD. +You hem me in behind and before; + +5 + +6 + +You have laid Your hand upon me. +Such knowledge is too wonderful for me, + +too lofty for me to attain. + +7 + +Where can I go to escape Your Spirit? + +8 + +Where can I flee from Your presence? +If I ascend to the heavens, You are there; + +9 + +if I make my bed in Sheol, You are there. + +10 + +11 + +12 + +If I rise on the wings of the dawn, +if I settle by the farthest sea, +even there Your hand will guide me; +Your right hand will hold me fast. +If I say, “Surely the darkness will hide me, + +and the light become night around me”— + +even the darkness is not dark to You, +but the night shines like the day, + b +for darkness is as light to You. + +13 + +For You formed my inmost being; + +14 + +You knit me together in my mother’s + +womb. + +I praise You, + +for I am fearfully and wonderfully made. + +15 + +Marvelous are Your works, + +and I know this very well. + +My frame was not hidden from You +when I was made in secret, + +16 + +when I was woven together + +in the depths of the earth. + +Your eyes saw my unformed body; + +all my days were written in Your book + +and ordained for me + +17 + +before one of them came to be. + +c + +How precious to me are Your thoughts, + +18 + +O God, + +how vast is their sum! + +If I were to count them, + +O LORD, Your loving devotion endures + +they would outnumber the grains of sand; + +forever— + +do not abandon the works of Your hands. +b 13 +You emboldened me with strength in my soul + +a 3 +concerning me + +and when I awake, +my kidneys c 17 + +I am still with You. + +How amazing are Your thoughts + +Or + +Hebrew + +Or + + 572 | Psalm 139:19 + +19 + +11 + +20 + +O God, that You would slay the wicked— +a + +away from me, you bloodthirsty men— + +who speak of You deceitfully; + +21 + +Your enemies take Your name in vain. +Do I not hate those who hate You, O LORD, +and detest those who rise against You? + +22 + +23 + +I hate them with perfect hatred; +I count them as my enemies. + +24 + +Search me, O God, and know my heart; +test me and know my concerns. +See if there is any offensive way in me; +lead me in the way everlasting. +Psalm 140 +Rescue Me from Evil Men + + For the choirmaster. A Psalm of David. + +1 + +Rescue me, O LORD, from evil men. + +2 + +Protect me from men of violence, + +3 + +who devise evil in their hearts +and stir up war all day long. + +b + +They sharpen their tongues like snakes; +the venom of vipers is on their lips. + +Selah + +4 + +Guard me, O LORD, + +from the hands of the wicked. +Keep me safe from men of violence +5 + +who scheme to make me stumble. + +The proud hide a snare for me; + +the cords of their net are spread along the + +path, + +and lures are set out for me. + +Selah + +6 + +7 + +I say to the LORD, “You are my God.” +Hear, O LORD, my cry for help. + +May no slanderer be established in the land; + +12 + +may calamity hunt down the man of + +violence. + +I know that the LORD upholds justice for the + +13 + +poor + +and defends the cause of the needy. +Surely the righteous will praise Your name; +Psalm 141 +the upright will dwell in Your presence. +Come Quickly to Me +(Psalm 70:1–5) + + A Psalm of David. + +1 + +I call upon You, O LORD; come quickly to me. + +2 + +Hear my voice when I call to You. +May my prayer be set before You like + +incense; + +3 + +my uplifted hands, like the evening + +offering. + +4 + +Set a guard, O LORD, over my mouth; +keep watch at the door of my lips. +Do not let my heart be drawn to any evil + +thing + +or take part in works of wickedness + +with men who do iniquity; + +5 + +let me not feast on their delicacies. + +Let the righteous man strike me; + +let his rebuke be an act of loving devotion. + +It is oil for my head; let me not refuse it. + +6 + +For my prayer is ever against the deeds of + +the wicked. + +When their rulers are thrown down from the + +cliffs, + +7 + +the people will listen to my words, +for they are pleasant. + +8 + +O GOD the Lord, the strength of my salvation, +You shield my head in the day of battle. +Grant not, O LORD, the desires of the wicked; + +8 + +As when one plows and breaks up the soil, +so our bones have been scattered at the + +mouth of Sheol. + +do not promote their evil plans, +lest they be exalted. + +9 + +Selah + +But my eyes are fixed on You, + +O GOD the Lord. +In You I seek refuge; +9 + +c + +May the heads of those who surround me + +10 + +be covered in the trouble their lips have + +do not leave my soul defenseless. + +Keep me from the snares they have laid for + +caused. + +May burning coals fall on them; + +may they be thrown into the fire, +into the miry pits, never to rise again. + +10 + +me, + +and from the lures of evildoers. +Let the wicked fall into their own nets, + +while I pass by in safety. + +Your enemies take Your cities in vain + +a 20 +b 3 + +Your enemies take in vain + +Your enemies bear up in vain + +Hebrew + + or + +Cited in Romans 3:13 + +Or + + or + +c 8 + +do not pour out my life + +do not give me over to death +; LXX + + Psalm 142 +I Lift My Voice to the LORD +(1 Samuel 22:1–5 ; Psalm 57:1–11) + + A Maskil a  of David, when he was in the cave. +A prayer. + +1 + +2 + +I cry aloud to the LORD; + +I lift my voice to the LORD for mercy. + +3 + +I pour out my complaint before Him; + +I reveal my trouble to Him. + +Psalm 144:7 | 573 + +7 + +Answer me quickly, O LORD; + +my spirit fails. + +Do not hide Your face from me, +8 + +or I will be like those who descend to the + +Pit. + +Let me hear Your loving devotion in the + +morning, + +for I have put my trust in You. +Teach me the way I should walk, +9 +for to You I lift up my soul. + +b + +Although my spirit grows faint within me, + +Deliver me from my enemies, O LORD; + +10 + +You know my way. +Along the path I travel +4 + +they have hidden a snare for me. + +Look to my right and see; +no one attends to me. +There is no refuge for me; +5 + +no one cares for my soul. + +6 + +I cry to You, O LORD: “You are my refuge, +my portion in the land of the living.” + +Listen to my cry, + +for I am brought quite low. +Rescue me from my pursuers, +7 + +for they are too strong for me. + +Free my soul from prison, + +that I may praise Your name. +The righteous will gather around me +because of Your goodness to me. + +Psalm 143 +I Stretch Out My Hands to You + + A Psalm of David. + +1 + +O LORD, hear my prayer. + +In Your faithfulness, give ear to my plea; +in Your righteousness, answer me. +Do not bring Your servant into judgment, + +for no one alive is righteous before You. + +For the enemy has pursued my soul, +crushing my life to the ground, + +making me dwell in darkness +4 +like those long since dead. +My spirit grows faint within me; + +my heart is dismayed inside me. + +2 + +3 + +5 + +I remember the days of old; + +6 + +I meditate on all Your works; +I consider the work of Your hands. + +I stretch out my hands to You; + +my soul thirsts for You like a parched + +Selah + +land. + +a 1 Maskil +b 9 + +I flee to You for refuge. +Teach me to do Your will, +for You are my God. + +May Your good Spirit lead me + +11 + +on level ground. + +For the sake of Your name, O LORD, + +revive me. + +12 + +In Your righteousness, + +bring my soul out of trouble. + +And in Your loving devotion, + +cut off my enemies. +Destroy all who afflict me, +for I am Your servant. + +Psalm 144 +Blessed Be the LORD, My Rock + + Of David. + +1 + +Blessed be the LORD, my Rock, + +2 + +who trains my hands for war, +my fingers for battle. + +He is my steadfast love and my fortress, +my stronghold and my deliverer. +He is my shield, in whom I take refuge, + + c + +who subdues peoples + + under me. + +3 + +4 + +O LORD, what is man, that You regard him, +the son of man that You think of him? + +5 + +Man is like a breath; + +his days are like a passing shadow. + +Part Your heavens, O LORD, and come down; + +6 + +touch the mountains, that they may + +smoke. + +Flash forth Your lightning and scatter them; + +7 + +shoot Your arrows and rout them. + +Reach down from on high; + +set me free and rescue me + +from the deep waters, + +from the grasp of foreigners, + +in You I take cover + +c 2 + + is probably a musical or liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. +subdues my people + +LXX and one Hebrew manuscript; most Hebrew manuscripts + +Many Hebrew + +manuscripts, DSS, Syriac; most Hebrew manuscripts + + 574 | Psalm 144:8 + +8 + +8 + +9 + +whose mouths speak falsehood, + +whose right hands are deceitful. + +The LORD is gracious and compassionate, +slow to anger and abounding in loving + +9 + +I will sing to You a new song, O God; + +10 + +on a harp of ten strings I will make music + +to You— + +to Him who gives victory to kings, + +11 + +who frees His servant David from the + +deadly sword. +Set me free and rescue me + +from the grasp of foreigners, +whose mouths speak falsehood, + +12 + +whose right hands are deceitful. + +Then our sons will be like plants + +13 + +nurtured in their youth, +our daughters like corner pillars +carved to adorn a palace. +Our storehouses will be full, + +14 + +supplying all manner of produce; +our flocks will bring forth thousands, +tens of thousands in our fields. + +a + +Our oxen will bear great loads. + +There will be no breach in the walls, + +no going into captivity, + +15 + +and no cry of lament in our streets. + +Blessed are the people of whom this is so; +blessed are the people whose God is + +the LORD. Psalm 145 + +I Will Exalt You, My God and King + + A Psalm of praise. Of David.b + +1 + +I will exalt You, my God and King; + +2 + +I will bless Your name forever and ever. + +Every day I will bless You, + +3 + +and I will praise Your name forever and + +ever. + +Great is the LORD and greatly to be praised; + +4 + +His greatness is unsearchable. + +One generation will commend Your works to + +5 + +the next, + +and will proclaim Your mighty acts— + +the glorious splendor of Your majesty. + +6 + +And I will meditate on Your wondrous + +works. + +3 + +They will proclaim the power of Your + +7 + +awesome deeds, + +and I will declare Your greatness. +They will extol the fame of Your abundant + +a 14 + +goodness + +Our chieftains will be firmly established +and sing joyfully of Your righteousness. +c 13 + +b 1 + +devotion. +The LORD is good to all; + +10 + +His compassion rests on all He has made. + +All You have made will give You thanks, + +11 + +O LORD, + +and Your saints will bless You. + +12 + +They will tell of the glory of Your kingdom + +and speak of Your might, + +to make known to men Your mighty acts +and the glorious splendor of Your + +13 + +kingdom. + +Your kingdom is an everlasting kingdom, + +and Your dominion endures through all + +generations. + +c + +14 + +The LORD is faithful in all His words + +and kind in all His actions. + +15 + +The LORD upholds all who fall + +and lifts up all who are bowed down. + +16 + +The eyes of all look to You, + +and You give them their food in season. + +You open Your hand + +17 + +and satisfy the desire of every living thing. + +18 + +The LORD is righteous in all His ways + +and kind in all His deeds. + +19 + +The LORD is near to all who call on Him, +to all who call out to Him in truth. + +20 + +He fulfills the desires of those who fear Him; + +21 + +He hears their cry and saves them. +The LORD preserves all who love Him, +but all the wicked He will destroy. +My mouth will declare the praise of the + +LORD; + +let every creature bless His holy name +Psalm 146 +forever and ever. +Praise the LORD, O My Soul + +1 + + d + +Hallelujah! + +2 + +Praise the LORD, O my soul. + +I will praise the LORD all my life; + +I will sing praises to my God while I have + +my being. + +Put not your trust in princes, + +4 + +in mortal man, who cannot save. +When his spirit departs, he returns to the + +ground; + +on that very day his plans perish. + +Or + +Hallelu YAH + +d 1 +successive letters of the Heb. alphabet. + +Praise the LORD + +This psalm is an acrostic poem, each verse beginning with the +The final two lines are supplied by one MT manuscript, LXX, Syriac, and DSS. + +Or + +, meaning + +; also in verse 10 + + 5 + +11 + +Psalm 148:6 | 575 + +6 + +Blessed is he whose help is the God of Jacob, +whose hope is in the LORD his God, + +the Maker of heaven and earth, + +7 + +the sea, and everything in them. +He remains faithful forever. + + 8 + +He executes justice for the oppressed +and gives food to the hungry. +The LORD sets the prisoners free, +the LORD opens the eyes of the + +blind, + +the LORD lifts those who are weighed down, +9 + +the LORD loves the righteous. + +The LORD protects foreigners; + +The LORD is pleased with those who + +12 + +fear Him, + +who hope in His loving devotion. + +13 + +Exalt the LORD, O Jerusalem; +praise your God, O Zion! + +For He strengthens the bars of your + +gates + +14 + +and blesses the children within + +you. + +He makes peace at your borders; + +He fills you with the finest wheat. + +15 + +He sends forth His command to the + +10 + +He sustains the fatherless and the widow, +but the ways of the wicked He frustrates. + +16 + +earth; + +His word runs swiftly. + +The LORD reigns forever, + +your God, O Zion, for all + +generations. + +Hallelujah! + +Psalm 147 +It Is Good to Sing Praises + +1 + + a + +Hallelujah! + +2 + +How good it is to sing praises to our God, + +how pleasant and lovely to praise Him! + +The LORD builds up Jerusalem; + +3 + +He gathers the exiles of Israel. + +He heals the brokenhearted + +4 + +and binds up their wounds. + +He determines the number of the stars; + +5 + +He calls them each by name. + +6 + +Great is our Lord, and mighty in power; +His understanding has no limit. + +The LORD sustains the humble, + +but casts the wicked to the ground. + +7 + +Sing to the LORD with thanksgiving; + +8 + +make music on the harp to our God, + +who covers the sky with clouds, + +9 + +who prepares rain for the earth, +who makes grass to grow on the hills. + +He provides food for the animals, + +10 + +and for the young ravens when they call. + +He does not delight in the strength + +of the horse; + +He takes no pleasure in the legs +Hallelu YAH + +a 1 +He has not made known to them His judgments +, meaning +e 1 + +Praise the LORD + +of a man. + +Or + +See Matthew 21:9, Mark 11:10, and Luke 19:38. + +He spreads the snow like wool; + +b +He scatters the frost like ashes; +He casts forth His hail like pebbles. + +17 + +18 + +Who can withstand His icy blast? + +He sends forth His word and melts + +them; + +19 + +He unleashes His winds, and the + +waters flow. + +He declares His word to Jacob, + +20 + +His statutes and judgments to + +Israel. + +c +He has done this for no other nation; +they do not know His judgments. + +Hallelujah! + +Psalm 148 +Praise the LORD from the Heavens +(Psalm 33:1–22) + +1 + + d + +Hallelujah! + +e +Praise the LORD from the heavens; +2 +praise Him in the highest places. + +Praise Him, all His angels; + +3 + +praise Him, all His heavenly hosts. + +Praise Him, O sun and moon; + +4 + +praise Him, all you shining stars. + +Praise Him, O highest heavens, + +5 + +and you waters above the skies. +Let them praise the name of the LORD, +for He gave the command and they + +6 + +were created. + +He established them forever and ever; +He issued a decree that will never +like morsels + +like crumbs + +c 20 + +pass away. + +b 17 + +d 1 + +Hallelu YAH + +; also in verse 20 +Or + +Or + +, meaning + +Praise the LORD + or + +MT; DSS and LXX + +; also in verse 14 + + 576 | Psalm 148:7 + +7 + +4 + +Praise the LORD from the earth, + +8 + +all great sea creatures and ocean + +depths, + +lightning and hail, snow and clouds, + +9 + +powerful wind fulfilling His word, + +10 + +mountains and all hills, + +fruit trees and all cedars, + +wild animals and all cattle, + +11 + +crawling creatures and flying + +birds, + +12 + +kings of the earth and all peoples, + +princes and all rulers of the earth, + +13 + +young men and maidens, + +old and young together. + +Let them praise the name of the LORD, + +for His name alone is exalted; +His splendor is above the earth and + +14 + +the heavens. + +He has raised up a horn for His people, + +the praise of all His saints, +of Israel, a people near to Him. + +Hallelujah! + +Psalm 149 +Sing to the LORD a New Song +(Psalm 98:1–9 ; Isaiah 42:10–17) + +1 + + a + +Hallelujah! + +Sing to the LORD a new song— + +2 + +His praise in the assembly of the godly. + +Let Israel rejoice in their Maker; + +3 + +let the children of Zion rejoice in their + +King. + +Let them praise His name with dancing, + +and make music to Him with tambourine + +and harp. + +For the LORD takes pleasure in His + +5 + +people; + +He adorns the afflicted with salvation. + +Let the saints exult in glory; + +6 + +let them shout for joy upon their + +beds. + +May the high praises of God be in their + +7 + +mouths, + +and a double-edged sword in their hands, + +8 + +to inflict vengeance on the nations +and punishment on the peoples, + +to bind their kings with chains + +9 + +and their nobles with shackles of iron, + +to execute the judgment written against + +them. + +This honor is for all His saints. + +Hallelujah! + +Psalm 150 +Let Everything That Has Breath +Praise the LORD + +1 + + b + +Hallelujah! + +c + +Praise God in His sanctuary. +2 + +Praise Him in His mighty heavens. + +Praise Him for His mighty acts; + +praise Him for His excellent greatness. + +3 + +4 + +5 + +Praise Him with the sound of the horn; +praise Him with the harp and lyre. +Praise Him with tambourine and dancing; +praise Him with strings and flute. + +6 + +Praise Him with clashing cymbals; + +praise Him with resounding cymbals. + +Let everything that has breath praise the + +LORD! + +Hallelujah! + +b 1 + +Hallelu YAH + +Praise the LORD + +a 1 +c 1 + +Hallelu YAH +in the expanse of His might + +Praise the LORD + +in the firmament of His might + +Or +Or + +, meaning + +; also in verse 9 + +Or + +, meaning + +; also in verse 6 + + or + +; see also Genesis 1:6–8. + + Proverbs + +The Beginning of Knowledge (Prov. 9:1–12) + +18 + +1 + + These are the proverbs of Solomon son of + +2 + +David, +king of Israel, + +for gaining wisdom and discipline, + +3 + +for comprehending words of insight, +and for receiving instruction in wise living + + a + +4 + +and in righteousness, justice, and equity. + +To impart prudence to the simple + +5 + +and knowledge and discretion to the + +young, + +let the wise listen and gain instruction, + +6 + +and the discerning acquire wise counsel +by understanding the proverbs and parables, + +the sayings and riddles of the wise. + +7 + +The fear of the LORD is the beginning of + + b +knowledge, + +The Enticement of Sin + +but fools + + despise wisdom and discipline. + +8 + +Listen, my son, to your father’s instruction, +and do not forsake the teaching of your + +9 + +mother. + +For they are a garland of grace on your head + +10 + +and a pendant around your neck. + +11 + +My son, if sinners entice you, +do not yield to them. + +If they say, “Come along, let us lie in wait for + +12 + +blood, + +let us ambush the innocent without cause, + +let us swallow them alive like Sheol, + +13 + +and whole like those descending into the + +Pit. + +14 + +We will find all manner of precious goods; +we will fill our houses with plunder. + +Throw in your lot with us; + +15 + +let us all share one purse”— + +my son, do not walk the road with them + +16 + +or set foot upon their path. + +17 + +For their feet run to evil, + +and they are swift to shed blood. + +How futile it is to spread the net +simple +where any bird can see it! +fool + +a 4 +b 7 + +19 + +But they lie in wait for their own blood; + +they ambush their own lives. +Such is the fate of all who are greedy, + +whose unjust gain takes the lives of its + +Wisdom Calls Aloud +possessors. + +20 + +21 + +Wisdom calls out in the street, + + c + +she lifts her voice in the square; + +in the main concourse + + she cries aloud, + +22 + +at the city gates she makes her speech: + +“How long, O simple ones, will you love your + +simple ways? + +How long will scoffers delight in their + +23 + +scorn + +and fools hate knowledge? +If you had repented at my rebuke, + +then surely I would have poured out my + +spirit on you; + +24 + +I would have made my words known + +to you. + +25 + +Because you refused my call, + +and no one took my outstretched hand, + +26 + +because you neglected all my counsel, +and wanted none of my correction, + +27 + +in turn I will mock your calamity; + +I will sneer when terror strikes you, + +when your dread comes like a storm, + +and your destruction like a whirlwind, +when distress and anguish overwhelm + +you. + +28 + +Then they will call on me, but I will not + +answer; + +29 + +they will earnestly seek me, but will not + +find me. + +30 + +For they hated knowledge + +31 + +and chose not to fear the LORD. +They accepted none of my counsel; +they despised all my reproof. + +32 + +So they will eat the fruit of their own way, +and be filled with their own devices. +For the waywardness of the simple will slay + +them, + +and the complacency of fools will destroy + +them. + +c 21 + +from the top of the wall + +The Hebrew word rendered +The Hebrew words rendered as + + in Proverbs refers to one who is naive, without moral direction, or inclined to evil. + in Proverbs denote one who is morally deficient. + +Or + + 578 | Proverbs 1:33 + +33 + +21 + +But whoever listens to me will dwell in + +22 + +For the upright will inhabit the land, + +safety, +The Benefits of Wisdom + +secure from the fear of evil.” + +2 + +2 + + My son, if you accept my words +and hide my commandments within you, + +3 + +if you incline your ear to wisdom + +3 + +2 + +and direct your heart to understanding, + +and the blameless will remain in it; +but the wicked will be cut off from the land, +Trust in the LORD with All Your Heart +and the unfaithful will be uprooted. + +My son, do not forget my teaching, +but let your heart keep my +commandments; + +if you truly call out to insight + +4 + +and lift your voice to understanding, + +if you seek it like silver + +5 + +and search it out like hidden treasure, +then you will discern the fear of the LORD +and discover the knowledge of God. + +6 + +For the LORD gives wisdom; + +7 + +from His mouth come knowledge and + +understanding. + +He stores up sound wisdom for the upright; +He is a shield to those who walk with + +8 + +integrity, + +to guard the paths of justice + +9 + +and protect the way of His saints. + +Then you will discern righteousness + +10 + +and justice and equity—every good path. + +11 + +For wisdom will enter your heart, + +and knowledge will delight your soul. + +12 + +Discretion will watch over you, + +and understanding will guard you, + +13 + +to deliver you from the way of evil, + +14 + +from the man who speaks perversity, +from those who leave the straight paths +to walk in the ways of darkness, + +15 + +from those who enjoy doing evil + +and rejoice in the twistedness of evil, + +whose paths are crooked + +16 + +and whose ways are devious. + +a + +It will rescue you from the forbidden + + b + +17 + +woman, +from the stranger + + with seductive words + +18 + +who abandons the partner of her youth +and forgets the covenant of her God. + +c + +19 + +For her house sinks down to death, + +and her tracks to the departed spirits. + +20 + +None who go to her return + +or negotiate the paths of life. + +3 + +for they will add length to your days, +years and peace to your life. + + d + +Never let loving devotion +leave you; + + or faithfulness + +4 + +bind them around your neck, +write them on the tablet of your heart. + +Then you will find favor and high regard + +5 + +in the sight of God and man. + +Trust in the LORD with all your heart, + +6 + +and lean not on your own understanding; + +in all your ways acknowledge Him, + +7 + +and He will make your paths straight. + +Be not wise in your own eyes; + +8 + + e + +fear the LORD and turn away from evil. + + f + +9 + +This will bring healing to your body + to your bones. + +and refreshment + +10 + +Honor the LORD with your wealth + +and with the firstfruits of all your crops; + +then your barns will be filled with plenty, +and your vats will overflow with new + +11 + +wine. + +My son, do not reject the discipline of the + + g + +12 + +LORD, + +and do not loathe His rebuke; + +for the LORD disciplines the one He loves, +as does a father the son in whom he + +h + +The Blessings of Wisdom +delights. + +13 + +14 + +Blessed is the man who finds wisdom, + +the man who acquires understanding, + +15 + +for she is more profitable than silver, + +and her gain is better than fine gold. + +16 + +She is more precious than rubies; + +nothing you desire compares with her. + +17 + +Long life is in her right hand; + +in her left hand are riches and honor. + +18 + +All her ways are pleasant, + +and all her paths are peaceful. + +So you will follow in the ways of the good, +wayward wife +and keep to the paths of the righteous. + +adulteress + +b 16 + +c 18 + +a 16 + +Or +faithfulness +here and in most cases throughout the Scriptures as +when He rebukes +, and + +loyalty to a covenant +h 12 + +, as well as + +mercy + +Or + +Hebrew + +e 8 + +to the Rephaim + +loving devotion + +d 3 + +She is a tree of life to those who embrace her, +and those who lay hold of her are blessed. +kindness + are translated +and do not lose heart +, +, +, + +navel +; the range of meaning includes + +Forms of the Hebrew + +goodness + +medicine + +chesed + +g 11 + +love + +f 8 + +and He flogs every son He receives + +. + +Hebrew + +Or + +LXX + +; cited in Hebrews 12:5 + +LXX + +; cited in Hebrews 12:6 + + 19 + +5 + +The LORD founded the earth by wisdom + +Get wisdom, get understanding; + +20 + +and established the heavens by + +6 + +do not forget my words or turn from + +understanding. + +them. + +By His knowledge the watery depths were + +Do not forsake wisdom, and she will preserve + +Proverbs 4:24 | 579 + +21 + +broken open, + +and the clouds dripped with dew. + +My son, do not lose sight of this: +Preserve sound judgment and + +22 + +discernment. +They will be life to your soul + +23 + +and adornment to your neck. + +24 + +Then you will go on your way in safety, +and your foot will not stumble. + +25 + +When you lie down, you will not be afraid; +when you rest, your sleep will be sweet. + +26 + +Do not fear sudden danger + +or the ruin that overtakes the wicked, + +27 + +for the LORD will be your confidence + + a +and will keep your foot from the snare. + +28 + +Do not withhold good from the deserving +when it is within your power to act. + +Do not tell your neighbor, + +“Come back tomorrow and I will + +29 + +provide”— + +30 + +when you already have the means. +Do not devise evil against your neighbor, +for he trustfully dwells beside you. + +31 + +Do not accuse a man without cause, +when he has done you no harm. + +32 + +Do not envy a violent man + +33 + +or choose any of his ways; +for the LORD detests the perverse, +but He is a friend to the upright. + +The curse of the LORD is on the house of the + +34 + +wicked, + +but He blesses the home of the righteous. + +b + +35 + +He mocks the mockers, + +but gives grace to the humble. + +The wise will inherit honor, + +A Father’s Instruction + +but fools are held up to shame. + +4 + +2 + +Listen, my sons, to a father’s instruction; +pay attention and gain understanding. + +For I give you sound teaching; + +3 + +do not abandon my directive. + +When I was a son to my father, + +4 + +tender and the only child of my mother, + +he taught me and said, + +a 27 + +“Let your heart lay hold of my words; +b 34 +keep my commands and you will live. + +from its owners +c 7 + +And whatever else you acquire + +Or +1 Peter 5:5 + +Or + +LXX + +7 + +you; + +love her, and she will guard you. +c +Wisdom is supreme; so acquire wisdom. + gain + +And whatever you may acquire, + +8 + +understanding. + +Prize her, and she will exalt you; + +9 + +if you embrace her, she will honor you. +She will set a garland of grace on your head; +she will present you with a crown of + +10 + +beauty.” + +11 + +Listen, my son, and receive my words, + +and the years of your life will be many. + +12 + +I will guide you in the way of wisdom; +I will lead you on straight paths. +When you walk, your steps will not be + +13 + +impeded; + +when you run, you will not stumble. + +14 + +Hold on to instruction; do not let go. + +Guard it, for it is your life. + +15 + +Do not set foot on the path of the wicked + +or walk in the way of evildoers. + +16 + +Avoid it; do not travel on it. + +Turn from it and pass on by. + +For they cannot sleep +unless they do evil; + +17 + +they are deprived of slumber + +18 + +until they make someone fall. +For they eat the bread of wickedness +and drink the wine of violence. + +The path of the righteous is like the first + +gleam of dawn, + +19 + +shining brighter and brighter until + +midday. + +But the way of the wicked is like the darkest + +gloom; + +20 + +they do not know what makes them + +stumble. + +21 + +My son, pay attention to my words; +incline your ear to my sayings. + +22 + +Do not lose sight of them; + +keep them within your heart. + +23 + +For they are life to those who find them, + +24 + +and health to the whole body. +Guard your heart with all diligence, +for from it flow springs of life. +Put away deception from your mouth; + +keep your lips from perverse speech. +; cited in James 4:6 and + +The Lord opposes the proud, but gives grace to the humble + + 580 | Proverbs 4:25 + +25 + +19 + +26 + +Let your eyes look forward; + +a +fix your gaze straight ahead. + +27 + +Make a level path for your feet, + +and all your ways will be sure. + +Do not swerve to the right or to the left; + +Avoiding Immorality +turn your feet away from evil. +(Leviticus 20:10–21 ; 1 Corinthians 5:1–8) + +5 + + My son, pay attention to my wisdom; +incline your ear to my insight, +that you may maintain discretion + + b + +2 + +3 + +and your lips may preserve knowledge. + +Though the lips of the forbidden woman + c +drip honey +and her speech + + is smoother than oil, + +4 + +5 + +in the end she is bitter as wormwood, +sharp as a double-edged sword. +d + +Her feet go down to death; + +6 + +her steps lead straight to Sheol. +She does not consider the path of life; + +7 + +she does not know that her ways are + +unstable. + +So now, my sons, listen to me, + +8 + +and do not turn aside from the words of + +my mouth. + +9 + +Keep your path far from her; + +do not go near the door of her house, + +10 + +lest you concede your vigor to others, +and your years to one who is cruel; + +lest strangers feast on your wealth, + +11 + +and your labors enrich the house of a + +foreigner. + +12 + +At the end of your life you will groan + +when your flesh and your body are spent, + +13 + +and you will say, “How I hated discipline, + +and my heart despised reproof! + +14 + +I did not listen to the voice of my teachers + +or incline my ear to my mentors. + +I am on the brink of utter ruin + +15 + +in the midst of the whole assembly.” + +16 + +Drink water from your own cistern, + +and running water from your own well. +Why should your springs flow in the streets, + +17 + +your streams of water in the public + +squares? +Let them be yours alone, + +18 + +never to be shared with strangers. + +May your fountain be blessed, + +A loving doe, a graceful fawn— + + e + +may her breasts satisfy you always; +may you be captivated + by her love + +20 + +forever. + + f + +Why be captivated, my son, by an adulteress, + +21 + +or embrace the bosom of a stranger? +For a man’s ways are before the eyes of the + + g + +22 + +LORD, + +and the LORD examines + + all his paths. + +The iniquities of a wicked man entrap him; + +23 + +the cords of his sin entangle him. + +He dies for lack of discipline, +Warnings against Foolishness + +led astray by his own great folly. + +6 + + My son, if you have put up security for + +your neighbor, + +2 + +if you have struck hands in pledge with + +a stranger, + +if you have been trapped by the words of + +3 + +your lips, + +ensnared by the words of your mouth, + +then do this, my son, to free yourself, + +for you have fallen into your neighbor’s + +h + +hands: +Go, humble yourself, + +4 + +and press your plea with your neighbor. + +Allow no sleep to your eyes + +5 + +or slumber to your eyelids. + +i + +Free yourself, like a gazelle from the hand of + +6 + +the hunter, + +like a bird from the snare of the fowler. + +7 + +Walk in the manner of the ant, O slacker; +observe its ways and become wise. + +Without a commander, + +8 + +without an overseer or ruler, +it prepares its provisions in summer; +it gathers its food at harvest. + +9 + +How long will you lie there, O slacker? + +10 + +When will you get up from your sleep? + +A little sleep, a little slumber, + +11 + +a little folding of the hands to rest, +and poverty will come upon you like a + +12 + +robber, + +and need like a bandit. + +13 + +A worthless person, a wicked man, +walks with a perverse mouth, + +winking his eyes, speaking with his feet, + +and pointing with his fingers. +f 20 +; cited in Hebrews 12:13 + +a foreign woman +of the hunter + +Or + +b 3 + +the adulteress +another + +and may you rejoice in the wife of your +Ponder the path for your feet +d 5 + +youth: + +her palate + +e 19 + +lay hold of Sheol +; LXX +makes level + +Make straight paths for your feet + +be led astray + +a 26 +c 3 +Or +man’s wife +Or + +g 21 + +ponders +Or + +Or + + or + +h 3 + +hasten + +Or + +Or + +i 5 +; also in verse 20 + +Or +Hebrew does not include + + or + +. + + 14 + +31 + +15 + +With deceit in his heart he devises evil; + +he continually sows discord. + +Yet if caught, he must pay sevenfold; + +32 + +he must give up all the wealth of his + +Therefore calamity will come upon him + +house. + +Proverbs 7:16 | 581 + +suddenly; + +in an instant he will be shattered beyond + +recovery. + +16 + +There are six things that the LORD hates, + +17 + +seven that are detestable to Him: + +haughty eyes, + +a lying tongue, +18 +hands that shed innocent blood, + +a heart that devises wicked schemes, + +19 +feet that run swiftly to evil, + +a false witness who gives false + +testimony, + +Warnings against Adultery + +and one who stirs up discord among +brothers. + +20 + +My son, keep your father’s commandment, + +21 + +and do not forsake your mother’s + +teaching. + +22 + +Bind them always upon your heart; +tie them around your neck. + +When you walk, they will guide you; + +when you lie down, they will watch over + +23 + +you; + +when you awake, they will speak to you. + +For this commandment is a lamp, this + +teaching is a light, + +24 + +and the reproofs of discipline are the way + +to life, + +to keep you from the evil woman, +a +from the smooth tongue of the + +25 + +33 + +He who commits adultery lacks judgment; +whoever does so destroys himself. +Wounds and dishonor will befall him, + +34 + +and his reproach will never be wiped + +away. + +For jealousy enrages a husband, + +35 + +and he will show no mercy in the day of + +vengeance. + +He will not be appeased by any ransom, + +Warnings about the Adulteress +or persuaded by lavish gifts. + +7 + +2 + +My son, keep my words +and treasure my commandments within + +you. + + d +Keep my commandments and live; +guard my teachings as the apple + +3 + + of your + +eye. + +Tie them to your fingers; + +4 + +write them on the tablet of your heart. + +Say to wisdom, “You are my sister,” + +5 + +and call understanding your kinsman, +that they may keep you from the adulteress, +from the stranger with seductive words. + +6 + +7 + +For at the window of my house +I looked through the lattice. + +I saw among the simple, + +I noticed among the youths, +a young man lacking judgment, +crossing the street near her corner, + +8 + +9 + +strolling down the road to her house, + +10 + +at twilight, as the day was fading +into the dark of the night. + +adulteress. + +b + +Then a woman came out to meet him, + +26 + +Do not lust in your heart for her beauty +c +or let her captivate you with her eyes. +For the levy of the prostitute is poverty, + +27 + +and the adulteress preys upon your very + +life. + +28 + +Can a man embrace fire + +and his clothes not be burned? + +29 + +Can a man walk on hot coals + +without scorching his feet? + +So is he who sleeps with another man’s wife; + +30 + +no one who touches her will go + +unpunished. + +Men do not despise the thief + +a 24 + +b 25 +the stranger +if he steals to satisfy his hunger. + +eyelids + +eyelashes + +c 26 + +11 + +with the attire of a harlot and cunning of + +heart. + +12 + +She is loud and defiant; + +her feet do not remain at home. +Now in the street, now in the squares, + +13 + +she lurks at every corner. +She seizes him and kisses him; +she brazenly says to him: + +14 + +15 + +“I have made my peace offerings; +today I have paid my vows. + +16 + +So I came out to meet you; + +I sought you, and I have found you. +I have decked my bed with coverings, +a crust of bread +with colored linen from Egypt. + +the pupil + +d 2 + +Or + +Or + + or + +Literally + +Literally + + 582 | Proverbs 7:17 + +17 + +12 + +18 + +I have perfumed my bed with myrrh, + +with aloes, and with + + cinnamon. + +13 + +I, wisdom, dwell together with prudence, +and I find knowledge and discretion. + +19 + +Come, let us take our fill of love till morning. + +To fear the LORD is to hate evil; + +Let us delight in loving caresses! + +20 + +For my husband is not at home; + +he has gone on a long journey. +He took with him a bag of money + +21 + +14 + +I hate arrogant pride, evil conduct, and + +perverse speech. + +Counsel and sound judgment are mine; + +15 + +I have insight and strength. + +and will not return till the moon is full.” + +By me kings reign, + +16 + +22 + +With her great persuasion she entices him; +with her flattering lips she lures him. + +23 + +He follows her on impulse, + +a +like an ox going to the slaughter, +like a deer bounding into a trap, + +until an arrow pierces his liver, + +24 + +like a bird darting into a snare— +not knowing it will cost him his life. + +25 + +Now, my sons, listen to me, + +and attend to the words of my mouth. +Do not let your heart turn aside to her ways; + +26 + +do not stray into her paths. + +and rulers enact just laws; + +c + +By me princes rule, + +17 + +and all nobles who govern justly. + +I love those who love me, + +18 + +and those who seek me early shall find + +me. + +With me are riches and honor, + +19 + +enduring wealth and righteousness. +My fruit is better than gold, pure gold, + +20 + +and my harvest surpasses choice silver. + +I walk in the way of righteousness, + +21 + +along the paths of justice, + +27 + +For she has brought many down to death; + +her slain are many in number. + +bestowing wealth on those who love me +d +and making their treasuries full. + +22 + +at the entrances she cries out: + +water. + +Her house is the road to Sheol, + +The Excellence of Wisdom + +descending to the chambers of death. + +8 + +2 + + Does not wisdom call out, +and understanding raise her voice? + +On the heights overlooking the road, + +3 + +at the crossroads she takes her stand. + +Beside the gates to the city, + +4 + +“To you, O men, I call out, + +5 + +and my cry is to the sons of men. + +b + +6 + +O simple ones, learn to be shrewd; +O fools, gain understanding. +Listen, for I speak of noble things, + +7 + +and the opening of my lips will reveal + +right. + +For my mouth will speak the truth, + +8 + +and wickedness is detestable to my lips. + +29 + +All the words of my mouth are righteous; + +9 + +none are crooked or perverse. +They are all plain to the discerning, + +10 + +and upright to those who find knowledge. + +11 + +Receive my instruction instead of silver, +and knowledge rather than pure gold. +For wisdom is more precious than rubies, +and nothing you desire compares with + +a 22 + +her. + +who govern the earth + +d 22 + +The LORD created me as His first course, + +23 + +before His works of old. + +From everlasting I was established, + +24 + +from the beginning, before the earth + +began. + +When there were no watery depths, I was + +brought forth, + +25 + +when no springs were overflowing with + +Before the mountains were settled, + +26 + +before the hills, I was brought forth, + +before He made the land or fields, +or any of the dust of the earth. + +27 + +I was there when He established the heavens, +when He inscribed a circle on the face of + +28 + +the deep, + +when He established the clouds above, + +when the fountains of the deep gushed + +forth, + +when He set a boundary for the sea, + +so that the waters would not surpass His + +command, + +30 + +when He marked out the foundations of + +the earth. + + e + +Then I was a skilled craftsman at His side, + +Prob. reading (see LXX, Vulgate, Syriac); Heb. + +mss. and LXX + +Or + +Or + +Or + +like fetters to discipline a fool + +The LORD possessed me at the beginning of His way + +and His delight +c 16 +rejoicing always in His presence. + + day by day, +instruct your minds +e 30 + +b 5 + +filled with His delight +Some Heb. + + 31 + +32 + +I was rejoicing in His whole world, + +delighting together in the sons of men. + +33 + +Now therefore, my sons, listen to me, + +Proverbs 10:11 | 583 + +The Way of Folly + +13 + +14 + +The woman named Folly is loud; + +she is naive and knows nothing. + +for blessed are those who keep my ways. + +15 + +She sits at the door of her house, + +34 + +Listen to instruction and be wise; + +do not ignore it. + +Blessed is the man who listens to me, + +35 + +watching daily at my doors, +waiting at the posts of my doorway. + +36 + +For whoever finds me finds life + +and obtains the favor of the LORD. +But he who fails to find me harms himself; + +The Way of Wisdom +(Proverbs 1:1–7) + +all who hate me love death.” + +9 + +2 + + a + + Wisdom has built her house; +she has carved out + + her seven pillars. +She has prepared her meat and mixed her + +3 + +wine; + +she has also set her table. + +She has sent out her maidservants; + +4 + +she calls out from the heights of the city. + +5 + +“Whoever is simple, let him turn in here!” +she says to him who lacks judgment. + +“Come, eat my bread + +6 + +and drink the wine I have mixed. +Leave your folly behind, and you will live; +walk in the way of understanding.” + +7 + +He who corrects a mocker brings shame on + +himself; + +8 + +he who rebukes a wicked man taints + +himself. + +9 + +Do not rebuke a mocker, or he will hate you; +rebuke a wise man, and he will love you. +Instruct a wise man, and he will be wiser still; + +10 + +teach a righteous man, and he will + +increase his learning. + +The fear of the LORD is the beginning of + +wisdom, + +11 + +and knowledge of the Holy One is + b + +understanding. + +For through wisdom + + your days will be + +12 + +multiplied, + +and years will be added to your life. +If you are wise, you are wise to your own + +advantage; + +on a seat in the heights of the city, + +16 + +calling out to those who pass by, + +who make their paths straight. + +17 + +“Whoever is simple, let him turn in here!” +she says to him who lacks judgment. + +18 + +“Stolen water is sweet, + + c + +and bread eaten in secret is tasty!” + +But they do not know that the dead + +are there, + +Solomon’s Proverbs: The Wise Son + +that her guests are in the depths of Sheol. + +10 + +The proverbs of Solomon: + +2 + +A wise son brings joy to his father, +but a foolish son grief to his mother. + +Ill-gotten treasures profit nothing, + +3 + +but righteousness brings deliverance + +from death. + +The LORD does not let the righteous go + +4 + +hungry, + +but He denies the craving of the wicked. + +5 + +6 + +7 + +Idle hands make one poor, + +but diligent hands bring wealth. + +He who gathers in summer is a wise son, +but he who sleeps during harvest is a + +disgraceful son. + +Blessings are on the head of the righteous, +but the mouth of the wicked conceals + +d + +violence. + +8 + +The memory of the righteous is a blessing, +but the name of the wicked will rot. + +9 + +A wise heart will receive commandments, + +but foolish lips will come to ruin. + +He who walks in integrity walks securely, +but he who perverts his ways will be + +found out. + +e + +10 + +11 + +He who winks the eye causes grief, +and foolish lips will come to ruin. + +The mouth of the righteous is a fountain of + +life, + +but the mouth of the wicked conceals + +a 1 +c 18 +will fall + +but if you scoff, you alone will bear the +has set up + +consequences. + +b 11 + +the Rephaim + +d 6 + +but violence covers the mouth of the wicked + +violence. + +through me +babbling fools + +e 10 + +Hebrew; LXX, Syriac, and Aramaic Targum +Hebrew + +Or + +LXX, Syriac, and Aramaic Targum; Hebrew + +; also in verse 11 + +Or + + 584 | Proverbs 10:12 + +12 + +Hatred stirs up dissension, + +13 + +but love covers all transgressions. + +30 + +29 + +a + +The way of the LORD is a refuge to the + +Wisdom is found on the lips of the discerning, +but a rod is for the back of him who lacks + +judgment. + +14 + +The wise store up knowledge, + +15 + +but the mouth of the fool invites + +destruction. + +The wealth of the rich man is his fortified + +16 + +city, + +but poverty is the ruin of the poor. + +The labor of the righteous leads to life, +but the gain of the wicked brings + +17 + +punishment. + +Whoever heeds instruction is on the path to + +18 + +life, + +but he who ignores reproof goes astray. + +19 + +The one who conceals hatred has lying lips, +and whoever spreads slander is a fool. + +20 + +When words are many, sin is unavoidable, +but he who restrains his lips is wise. + +The tongue of the righteous is choice silver, +but the heart of the wicked has little + +21 + +worth. + +22 + +The lips of the righteous feed many, +but fools die for lack of judgment. + +23 + +The blessing of the LORD enriches, +and He adds no sorrow to it. + +upright, + +but destruction awaits those who do evil. + +31 + +The righteous will never be shaken, + +but the wicked will not inhabit the land. + +The mouth of the righteous brings forth + +32 + +wisdom, + +but a perverse tongue will be cut out. + +The lips of the righteous know what is fitting, +but the mouth of the wicked is perverse. + +Dishonest Scales +(Deuteronomy 25:13–16 ; Ezekiel 45:10–12) + +11 + + Dishonest scales are an abomination to + +2 + +the LORD, + +but an accurate weight is His delight. + +3 + +When pride comes, disgrace follows, +but with humility comes wisdom. + +The integrity of the upright guides them, + +4 + +but the perversity of the faithless destroys + +them. + +Riches are worthless in the day of wrath, + +5 + +but righteousness brings deliverance from + +death. + +The righteousness of the blameless directs + +their path, + +6 + +but the wicked fall by their own + +wickedness. + +The righteousness of the upright delivers + +24 + +The fool delights in shameful conduct, + +but a man of understanding has wisdom. + +7 + +What the wicked man dreads will overtake + +them, + +but the faithless are trapped by their own + +desires. + +him, + +When the wicked man dies, his hope + +25 + +but the desire of the righteous will be + +granted. + +8 + +perishes, + +and the hope of his strength vanishes. + +When the whirlwind passes, the wicked are + +26 + +no more, + +but the righteous are secure forever. + +9 + +The righteous man is delivered from trouble; + +in his place the wicked man goes in. + +With his mouth the ungodly man destroys his + +Like vinegar to the teeth and smoke to the + +neighbor, + +27 + +eyes, + +so is the slacker to those who send him. + +10 + +but through knowledge the righteous are + +rescued. + +The fear of the LORD prolongs life, + +28 + +but the years of the wicked will be cut + +short. + +When the righteous thrive, the city rejoices, +and when the wicked perish, there are + +11 + +shouts of joy. + +The hope of the righteous is joy, + +but the expectations of the wicked will + +By the blessing of the upright a city is built up, +but by the mouth of the wicked it is torn + +a 12 + +perish. + +See 1 Peter 4:8 + +down. + + 12 + +28 + +Proverbs 12:11 | 585 + +17 + +18 + +19 + +20 + +Whoever shows contempt for his neighbor + +lacks judgment, + +but a man of understanding remains + +silent. + +13 + +A gossip reveals a secret, + +14 + +but a trustworthy person keeps a + +30 + +confidence. + +For lack of guidance, a nation falls, +but with many counselors comes + +deliverance. + +15 + +He who puts up security for a stranger will + +surely suffer, + +but the one who hates indebtedness is + +secure. + +16 + +A gracious woman attains honor, + +but ruthless men gain only wealth. + +A kind man benefits himself, + +but a cruel man brings trouble on himself. + +The wicked man earns an empty wage, + +29 + +31 + +He who trusts in his riches will fall, + +but the righteous will thrive like foliage. + +He who brings trouble on his house will + +inherit the wind, + +and the fool will be servant to the wise of + +heart. + +The fruit of the righteous is a tree of life, + +and he who wins souls is wise. + +If the righteous receive their due on earth, +how much more the ungodly and the + + a + +Loving Discipline and Knowledge + +sinner! + +12 + + Whoever loves discipline loves + +2 + +knowledge, + +but he who hates correction is stupid. + +The good man obtains favor from the LORD, +but the LORD condemns a man who + +devises evil. + +3 + +but he who sows righteousness reaps a + +A man cannot be established through + +true reward. + +Genuine righteousness leads to life, + +4 + +wickedness, + +but the righteous cannot be uprooted. + +but the pursuit of evil brings death. + +A wife of noble character is her husband’s + +The perverse in heart are an abomination to + +crown, + +the LORD, + +5 + +but she who causes shame is like decay in + +but the blameless in their walk are His + +his bones. + +delight. + +The plans of the righteous are just, + +21 + +7 + +8 + +9 + +Be assured that the wicked will not go + +6 + +unpunished, + +but the offspring of the righteous will + +escape. + +22 + +Like a gold ring in a pig’s snout + +23 + +but the counsel of the wicked leads to + +deceit. + +The words of the wicked lie in wait for blood, +but the speech of the upright rescues + +them. + +is a beautiful woman who lacks discretion. + +The wicked are overthrown and perish, + +The desire of the righteous leads only to + +good, + +but the hope of the wicked brings wrath. + +24 + +but the house of the righteous will stand. + +A man is praised according to his wisdom, + +but a twisted mind is despised. + +One gives freely, yet gains even more; + +Better to be lightly esteemed yet have a + +25 + +another withholds what is right, only to + +become poor. + +10 + +servant, + +than to be self-important but lack food. + +A generous soul will prosper, + +and he who refreshes others will himself + +be refreshed. + +26 + +The people will curse the hoarder of grain, +but blessing will crown the one who + +27 + +sells it. + +A righteous man regards the life of his + +animal, + +11 + +but the tender mercies of the wicked are + +only cruelty. + +The one who works his land will have plenty + +of food, + +He who searches out good finds favor, + +but whoever chases fantasies lacks + +a 31 + +If it is hard for the righteous to be saved, what will become of the ungodly and the sinner? + +but evil will come to him who seeks it. + +judgment. + +LXX + + Cited in 1 Peter 4:18 + + 586 | Proverbs 12:12 + +12 + +13 + +The wicked desire the plunder of evil men, +but the root of the righteous flourishes. + +3 + +things, + +but the desire of the faithless is violence. + +An evil man is trapped by his rebellious + +He who guards his mouth protects his life, + +14 + +speech, + +but a righteous man escapes from trouble. + +4 + +but the one who opens his lips invites his + +own ruin. + +By fruitful speech a man is filled with good + +The slacker craves yet has nothing, + +15 + +things, + +and the work of his hands returns to him. + +5 + +but the soul of the diligent is fully + +satisfied. + +The way of a fool is right in his own eyes, + +The righteous hate falsehood, + +but a wise man listens + + to counsel. + +but the wicked bring shame and disgrace. + +6 + +16 + +18 + +19 + +20 + +22 + +25 + +26 + +27 + +28 + +17 + +A fool’s anger is known at once, + +but a prudent man overlooks an insult. + +He who speaks the truth declares what is + +right, + +but a false witness speaks deceit. + +8 + +Speaking rashly is like a piercing sword, + +but the tongue of the wise brings healing. + +9 + +Truthful lips endure forever, + +but a lying tongue lasts only a moment. + +Deceit is in the hearts of those who devise + +21 + +evil, + +but the counselors of peace have joy. + +No harm befalls the righteous, + +but the wicked are filled with trouble. + +Lying lips are detestable to the LORD, + +12 + +23 + +but those who deal faithfully are His + +delight. + +A shrewd man keeps his knowledge to + +24 + +himself, + +but a foolish heart proclaims its folly. + +The hand of the diligent will rule, + +but laziness ends in forced labor. + +Anxiety weighs down the heart of a man, + +but a good word cheers it up. + +A righteous man is cautious in friendship, +but the ways of the wicked lead them + +astray. + +A lazy man does not roast his game, + +but a diligent man prizes his possession. + +There is life in the path of righteousness, + +A Father’s Discipline + +but another path leads to death. + +13 + +2 + + A wise son heeds his father’s discipline, +but a mocker does not listen to rebuke. + +From the fruit of his lips a man enjoys good + +law + +a 14 + +Or + +7 + +Righteousness guards the man of integrity, +but wickedness undermines the sinner. + +One pretends to be rich, but has nothing; + +another pretends to be poor, yet has great + +wealth. + +Riches may ransom a man’s life, + +but a poor man hears no threat. + +The light of the righteous shines brightly, + +10 + +but the lamp of the wicked is + +extinguished. + +Arrogance leads only to strife, + +11 + +but wisdom is with the well-advised. + +Dishonest wealth will dwindle, + +but what is earned through hard work will + +be multiplied. + +13 + +Hope deferred makes the heart sick, +but desire fulfilled is a tree of life. + +He who despises instruction will pay the + +penalty, + +14 + +but the one who respects a command will + + a +be rewarded. + +15 + +The teaching + + of the wise is a fountain of life, + +turning one from the snares of death. + +16 + +17 + +Good understanding wins favor, + +but the way of the faithless is difficult. + +Every prudent man acts with knowledge, + +but a fool displays his folly. + +18 + +A wicked messenger falls into trouble, +but a faithful envoy brings healing. + +Poverty and shame come to him who ignores + +19 + +discipline, + +but whoever heeds correction is honored. + +Desire fulfilled is sweet to the soul, + +but turning from evil is detestable to fools. + + 20 + +10 + +Proverbs 14:28 | 587 + +He who walks with the wise will become + +wise, + +21 + +but the companion of fools will be + +destroyed. + +Disaster pursues sinners, + +22 + +but prosperity is the reward of the + +righteous. + +A good man leaves an inheritance to his + +children’s children, + +but the sinner’s wealth is passed to the + +righteous. + +15 + +23 + +Abundant food is in the fallow ground of the + +24 + +poor, + +but without justice it is swept away. + +He who spares the rod hates his son, + +25 + +but he who loves him disciplines him + +diligently. + +The Wise Woman + +A righteous man eats to his heart’s content, +but the stomach of the wicked is empty. + +14 + +Every wise woman builds her house, +but a foolish one tears it down with her + +own hands. + +He who walks in uprightness fears the LORD, +but the one who is devious in his ways + +despises Him. + +The proud speech of a fool brings a rod to his + +4 + +back, + +but the lips of the wise protect them. + +Where there are no oxen, the manger is + +empty, + +5 + +but an abundant harvest comes through + +the strength of the ox. + +An honest witness does not deceive, + +but a dishonest witness pours forth lies. + +A mocker seeks wisdom and finds none, +but knowledge comes easily to the + +discerning. + +2 + +3 + +6 + +7 + +8 + +14 + +16 + +17 + +18 + +11 + +The heart knows its own bitterness, +and no stranger shares in its joy. + +12 + +The house of the wicked will be destroyed, +but the tent of the upright will flourish. + +13 + +There is a way that seems right to a man, + +but its end is the way of death. +Even in laughter the heart may ache, + +and joy may end in sorrow. + +The backslider in heart receives the fill of his + +own ways, + +but a good man is rewarded for his ways. + +The simple man believes every word, + + a + +but the prudent man watches his steps. + +A wise man fears + + and turns from evil, + +but a fool is careless and reckless. + +A quick-tempered man acts foolishly, + +and a devious man is hated. + +The simple inherit folly, + +19 + +but the prudent are crowned with + +knowledge. + +The evil bow before the good, + +20 + +and the wicked at the gates of the + +righteous. + +21 + +The poor man is hated even by his neighbor, +but many are those who love the rich. + +He who despises his neighbor sins, + +22 + +but blessed is he who shows kindness to + +the poor. + + b + +Do not those who contrive evil go astray? +But those who plan goodness find +devotion and faithfulness. + + loving + +23 + +24 + +25 + +26 + +There is profit in all labor, + +but mere talk leads only to poverty. + +The crown of the wise is their wealth, + +but the effort of fools is folly. + +A truthful witness saves lives, + +but one who utters lies is deceitful. + +Stay away from a foolish man; + +He who fears the LORD is secure in + +you will gain no knowledge from his + +confidence, + +speech. + +The wisdom of the prudent is to discern his + +9 + +way, + +but the folly of fools deceives them. + +Fools mock the making of amends, + +a 16 + +fears the LORD +but goodwill is found among the upright. + +show + +b 22 + +Or + +Or + +27 + +and his children shall have a place of + +refuge. + +28 + +The fear of the LORD is a fountain of life, + +turning a man from the snares of death. + +A large population is a king’s splendor, + +but a lack of subjects is a prince’s ruin. + + 588 | Proverbs 14:29 + +29 + +11 + + b + +A patient man has great understanding, +but a quick-tempered man promotes + +folly. + +30 + +Sheol and Abaddon + + lie open before the + +12 + +LORD— + +how much more the hearts of men! + +31 + +A tranquil heart is life to the body, + +but envy rots the bones. + +A mocker does not love to be reproved, + +nor will he consult the wise. + +Whoever oppresses the poor taunts their + +Maker, + +but whoever is kind to the needy honors + +Him. + +32 + +The wicked man is thrown down by his own + +sin, + +33 + +but the righteous man has a refuge even in + +death. + +a + +Wisdom rests in the heart of the discerning; + +even among fools she is known. + +Righteousness exalts a nation, + +but sin is a disgrace to any people. + +A king delights in a wise servant, +A Gentle Answer Turns Away Wrath + +but his anger falls on the shameful. + +15 + +2 + +A gentle answer turns away wrath, +but a harsh word stirs up anger. + +The tongue of the wise commends + +3 + +knowledge, + +but the mouth of the fool spouts folly. + +4 + +The eyes of the LORD are in every place, +observing the evil and the good. + +A soothing tongue is a tree of life, + +but a perverse tongue crushes the spirit. + +A fool rejects his father’s discipline, + +but whoever heeds correction is prudent. + +The house of the righteous has great treasure, + +7 + +but the income of the wicked is + +trouble. + +The lips of the wise spread knowledge, + +but not so the hearts of fools. + +The sacrifice of the wicked is detestable to + +9 + +the LORD, + +but the prayer of the upright is His delight. + +The LORD detests the way of the wicked, + +10 + +but He loves those who pursue + +righteousness. + +34 + +35 + +5 + +6 + +8 + +13 + +15 + +19 + +21 + +22 + +14 + +A joyful heart makes a cheerful countenance, +but sorrow of the heart crushes the spirit. + +A discerning heart seeks knowledge, + +but the mouth of a fool feeds on folly. + +All the days of the oppressed are bad, + +16 + +but a cheerful heart has a continual feast. + +17 + +Better a little with the fear of the LORD +than great treasure with turmoil. + +Better a dish of vegetables where there is + +18 + +love + +than a fattened ox with hatred. + +A hot-tempered man stirs up strife, + +but he who is slow to anger calms dispute. + +The way of the slacker is like a hedge of + +20 + +thorns, + +but the path of the upright is a highway. + +A wise son brings joy to his father, + +but a foolish man despises his mother. + +Folly is joy to one who lacks judgment, +but a man of understanding walks a + +straight path. + +23 + +Plans fail for lack of counsel, + +but with many advisers they succeed. + +24 + +A man takes joy in a fitting reply— +and how good is a timely word! + +25 + +The path of life leads upward for the wise, +that he may avoid going down to Sheol. + +The LORD tears down the house of the proud, + +26 + +but He protects the boundaries of the + +widow. + +The LORD detests the thoughts of the wicked, +but the words of the pure are pleasant + +27 + +to Him. + +He who is greedy for unjust gain brings +trouble on his household, +but he who hates bribes will live. + +28 + +The heart of the righteous ponders how to + +Discipline is harsh for him who leaves the + +answer, + +path; + +but the mouth of the wicked blurts out + +a 33 + +he who hates correction will die. + +but among fools she is not known + +b 11 + +evil. +Death and Destruction + +Hebrew; LXX and Syriac + +Or + + 29 + +13 + +Proverbs 16:31 | 589 + +30 + +32 + +33 + +2 + +3 + +4 + +5 + +6 + +The LORD is far from the wicked, + +Righteous lips are a king’s delight, + +but He hears the prayer of the righteous. + +and he who speaks honestly is beloved. + +31 + +The light of the eyes cheers the heart, + +and good news nourishes the bones. + +The wrath of a king is a messenger of death, + +but a wise man will pacify it. + +14 + +15 + +He who listens to life-giving reproof + +will dwell among the wise. + +He who ignores discipline despises himself, +but whoever heeds correction gains + +understanding. + +The fear of the LORD is the instruction of + +wisdom, + +The Reply of the Tongue Is from the LORD +and humility comes before honor. + +16 + +The plans of the heart belong to man, +but the reply of the tongue is from the + +19 + +All a man’s ways are pure in his own eyes, +but his motives are weighed out by the + +LORD. + +LORD. + +Commit your works to the LORD + +and your plans will be achieved. + +The LORD has made everything for His + +purpose— + +16 + +When a king’s face brightens, there is life; +his favor is like a rain cloud in spring. + +How much better to acquire wisdom than + +gold! + +17 + +To gain understanding is more desirable + +than silver. + +The highway of the upright leads away from + +18 + +evil; + +he who guards his way protects his life. + +Pride goes before destruction, + +and a haughty spirit before a fall. + +It is better to be lowly in spirit among the + +20 + +humble + +than to divide the spoil with the proud. + +a + +21 + +Whoever heeds instruction will find success, +and blessed is he who trusts in the LORD. + +22 + +The wise in heart are called discerning, + +and pleasant speech promotes instruction. + +Understanding is a fountain of life to its + +even the wicked for the day of disaster. + +23 + +Everyone who is proud in heart is detestable + +to the LORD; + +be assured that he will not go unpunished. + +24 + +possessor, + +but the discipline of fools is folly. + +The heart of the wise man instructs his + +mouth + +and adds persuasiveness to his lips. + +By loving devotion and faithfulness iniquity is + +atoned for, + +7 + +and by the fear of the LORD one turns + +aside from evil. + +When a man’s ways please the LORD, + +8 + +He makes even the man’s enemies live at + +peace with him. + +9 + +Better a little with righteousness +than great gain with injustice. + +A man’s heart plans his course, + +10 + +but the LORD determines his steps. + +11 + +A divine verdict is on the lips of a king; +his mouth must not betray justice. + +Honest scales and balances are from the + +12 + +LORD; + +all the weights in the bag are His concern. + +Wicked behavior is detestable for kings, +for a throne is established through +Whoever speaks prudently will find what is good + +a 20 + +righteousness. + +Or + +Or + +25 + +Pleasant words are a honeycomb, + +sweet to the soul and healing to the bones. + +26 + +28 + +There is a way that seems right to a man, + +but its end is the way of death. + +27 + +A worker’s appetite works for him + +because his hunger drives him onward. + + b + +A worthless man digs up evil, + +and his speech + + is like a scorching fire. + +29 + +A perverse man spreads dissension, +and a gossip divides close friends. + +A violent man entices his neighbor + +30 + +and leads him down a path that is not + +good. + +31 + +He who winks his eye devises perversity; +he who purses his lips is bent on evil. + +Gray hair is a crown of glory; + +it is attained along the path of + +b 27 + +and what is on his lips + +righteousness. + + 590 | Proverbs 16:32 + +32 + +16 + +He who is slow to anger is better than a + +warrior, + +17 + +Why should the fool have money in his hand +with no intention of buying wisdom? + +33 + +and he who controls his temper is greater + +than one who captures a city. + +The lot is cast into the lap, + +Better a Dry Morsel in Quietness + +but its every decision is from the LORD. + +17 + + a + +19 + +A friend loves at all times, + +18 + +and a brother is born for adversity. + +A man lacking judgment strikes hands in + +pledge + +and puts up security for his neighbor. + +Better a dry morsel in quietness +than a house full of feasting + + with + +He who loves transgression loves strife; +he who builds his gate high invites + + strife. + +destruction. + +2 + +5 + +6 + +8 + +9 + +14 + +15 + +A wise servant will rule over a disgraceful + +son + +3 + +and share his inheritance as one of the + +brothers. + +4 + +A crucible for silver and a furnace for gold, +but the LORD is the tester of hearts. + +A wicked man listens to evil lips; + +a liar gives ear to a destructive tongue. + +He who mocks the poor insults their Maker; +whoever gloats over calamity will not go + +unpunished. + +7 + +Grandchildren are the crown of the aged, +and the glory of a son is his father. + +Eloquent words are unfit for a fool; + +how much worse are lying lips to a ruler! + +A bribe is a charm to its giver; + +wherever he turns, he succeeds. + +10 + +Whoever conceals an offense promotes love, +but he who brings it up separates friends. + +A rebuke cuts into a man of discernment + +11 + +deeper than a hundred lashes cut into a + +fool. + +An evil man seeks only rebellion; + +12 + +a cruel messenger will be sent against + +him. + +It is better to meet a bear robbed of her cubs + +13 + +than a fool in his folly. + +If anyone returns evil for good, + +evil will never leave his house. + +To start a quarrel is to release a flood; + +20 + +21 + +23 + +The one with a perverse heart finds no good, +and he whose tongue is deceitful falls into + +trouble. + +22 + +A man fathers a fool to his own grief; +the father of a fool has no joy. + +A joyful heart is good medicine, + + b + +but a broken spirit dries up the bones. + +24 + +A wicked man takes a covert bribe +to subvert the course of justice. + +Wisdom is the focus of the discerning, + +25 + +but the eyes of a fool wander to the ends + +of the earth. + +26 + +A foolish son brings grief to his father + +and bitterness to her who bore him. + +27 + +It is surely not good to punish the innocent + +or to flog a noble for his honesty. +A man of knowledge restrains his words, + +28 + +and a man of understanding maintains a + +calm spirit. + +Even a fool is considered wise if he keeps + +silent, + +The Selfishness of the Unfriendly + +and discerning when he holds his tongue. + +18 + + He who isolates himself pursues selfish + +2 + +desires; + +he rebels against all sound judgment. + +3 + +A fool does not delight in understanding, + +but only in airing his opinions. + +4 + +With a wicked man comes contempt as well, +and shame is accompanied by disgrace. + +so abandon the dispute before it breaks + +The words of a man’s mouth are deep waters; + +out. + +5 + +the fountain of wisdom is a bubbling + +brook. + + c + +Acquitting the guilty and condemning the + +righteous— + +a 1 + +both are detestable to the LORD. +sacrifices + +a bribe from the bosom + +b 23 + +Showing partiality + + to the wicked is not good, + +c 5 + +nor is depriving the innocent of justice. +Lifting the face + +Or + +Hebrew + +Hebrew + + 8 + +9 + +10 + +11 + +6 + +The Man of Integrity + +Proverbs 19:18 | 591 + +7 + +A fool’s lips bring him strife, + +and his mouth invites a beating. + +A fool’s mouth is his ruin, + +and his lips are a snare to his soul. + +19 + + Better a poor man who walks with + +2 + +integrity + +than a fool whose lips are perverse. + +The words of a gossip are like choice morsels + +that go down into the inmost being. + +3 + +Even zeal is no good without knowledge, + +and he who hurries his footsteps misses + +the mark. + +the righteous run to it + + and are safe. + +Wealth attracts many friends, + +Whoever is slothful in his work + +is brother to him who destroys. + + a + +The name of the LORD is a strong tower; + +12 + +A rich man’s wealth is his fortified city; + +it is like a high wall in his imagination. +Before his downfall a man’s heart is proud, + +but humility comes before honor. + +13 + +He who answers a matter before he + +14 + +hears it— + +this is folly and disgrace to him. + +15 + +The spirit of a man can endure his sickness, +but who can survive a broken spirit? + +A man’s own folly subverts his way, + +yet his heart rages against the LORD. + +but a poor man is deserted by his friend. + +A false witness will not go unpunished, + +and one who utters lies will not escape. + +Many seek the favor of the prince, + +and everyone is a friend of the gift giver. + +All the brothers of a poor man hate him— + +how much more do his friends avoid him! + +He may pursue them with pleading, + +but they are nowhere to be found. + +The heart of the discerning acquires + +He who acquires wisdom loves himself; + +16 + +knowledge, + +and the ear of the wise seeks it out. + +9 + +one who safeguards understanding will + +find success. + +17 + +A man’s gift opens doors for him, + +and brings him before great men. + +A false witness will not go unpunished, + +and one who pours out lies will perish. + +The first to state his case seems right + +Luxury is unseemly for a fool— + +18 + +until another comes and cross-examines + +him. + +11 + +how much worse for a slave to rule over + +princes! + +19 + +Casting the lot ends quarrels + +and separates strong opponents. + +An offended brother is harder to win than a + +20 + +fortified city, + +and disputes are like the bars of a castle. + +A man’s insight gives him patience, + +and his virtue is to overlook an offense. + +A king’s rage is like the roar of a lion, + +but his favor is like dew on the grass. + +A foolish son is his father’s ruin, + +From the fruit of his mouth a man’s belly is + +14 + +and a quarrelsome wife is like a constant + +filled; + +dripping. + +with the harvest from his lips he is + +Houses and wealth are inherited from + +21 + +satisfied. + +22 + +Life and death are in the power of the tongue, +and those who love it will eat its fruit. + +23 + +He who finds a wife finds a good thing +and obtains favor from the LORD. + +24 + +The poor man pleads for mercy, + +but the rich man answers harshly. + +A man of many companions may come to + +ruin, + +15 + +fathers, + +but a prudent wife is from the LORD. + +Laziness brings on deep sleep, + +and an idle soul will suffer hunger. + +He who keeps a commandment preserves his + +17 + +soul, + +but he who is careless in his ways will die. + +Kindness to the poor is a loan to the LORD, + +and He will repay the lender. + +but there is a friend who stays closer than + +a 10 + +to Him + +a brother. + +Discipline your son, for in that there is hope; + +do not be party to his death. + +Or + +4 + +5 + +6 + +7 + +8 + +10 + +12 + +13 + +16 + +18 + + 592 | Proverbs 19:19 + +19 + +6 + +20 + +21 + +22 + +23 + +25 + +26 + +28 + +29 + +3 + +4 + +5 + +A man of great anger must pay the penalty; +if you rescue him, you will have to do so + +7 + +Many a man proclaims his loving devotion, +but who can find a trustworthy man? + +again. + +Listen to counsel and accept discipline, +that you may be wise the rest of your + +days. + +Many plans are in a man’s heart, + +but the purpose of the LORD will prevail. + +The desire of a man is loving devotion; + +better to be poor than a liar. + +The fear of the LORD leads to life, + +24 + +that one may rest content, without + +visitation from harm. + +The slacker buries his hand in the dish; + +8 + +The righteous man walks with integrity; +blessed are his children after him. + +9 + +A king who sits on a throne to judge +sifts out all evil with his eyes. + +10 + +Who can say, “I have kept my heart pure; + b + +I am cleansed from my sin”? + +11 + +Differing weights and unequal measures +both are detestable to the LORD. + +— + +12 + +Even a young man is known by his actions— +whether his conduct is pure and upright. + +13 + +Ears that hear and eyes that see— +the LORD has made them both. + +he will not even bring it back to his mouth. + +Do not love sleep, or you will grow poor; + +Strike a mocker, and the simple will beware; +rebuke the discerning man, and he will + +14 + +open your eyes, and you will have plenty + +of food. + +gain knowledge. + +He who assaults his father or evicts his + +27 + +mother + +is a son who brings shame and disgrace. + +If you cease to hear instruction, my son, +you will stray from the words of + +knowledge. + +A corrupt witness mocks justice, + +and a wicked mouth swallows iniquity. + +Wine Is a Mocker + +Judgments are prepared for mockers, +and beatings for the backs of fools. + +20 + + Wine is a mocker, strong drink is a + +“Worthless, worthless!” says the buyer, + +but on the way out, he gloats. + +There is an abundance of gold and rubies, + +but lips of knowledge are a rare treasure. + +Take the garment of the one who posts +c +security for a stranger; + +get collateral if it is for a foreigner. + +17 + +18 + +Food gained by fraud is sweet to a man, +but later his mouth is full of gravel. + +Set plans by consultation, + +19 + +and wage war under sound guidance. + + d + +20 + +He who reveals secrets is a constant gossip; + with his lips. + +avoid the one who babbles + +brawler, + +and whoever is led astray by them is not + +wise. + +2 + +Whoever curses his father or mother, + +21 + +his lamp will be extinguished in deepest + +darkness. + +The terror of a king is like the roar of a lion; +whoever provokes him forfeits his own + +a + +An inheritance gained quickly + +will not be blessed in the end. + +life. + +23 + +Do not say, “I will avenge this evil!” + +It is honorable for a man to resolve a dispute, + +but any fool will quarrel. + +The slacker does not plow in season; + +Wait on the LORD, and He will save you. +Unequal weights are detestable to the LORD, + +and dishonest scales are no good. + +at harvest time he looks, but nothing is + +A man’s steps are from the LORD, + +there. + +The intentions of a man’s heart are deep + +waters, + +25 + +so how can anyone understand his own + +way? + +It is a trap for a man to dedicate something + +but a man of understanding draws them + +rashly, + +a 2 +d 19 + +sins against his own soul +out. + +the one who is simple + +b 10 + +A stone and a stone, an ephah and an ephah + +only later to reconsider his vows. + +c 16 + +a wayward woman + +Literally + +Or + +Hebrew + +Or + +15 + +16 + +22 + +24 + + 26 + +14 + +Proverbs 21:31 | 593 + +27 + +28 + +A wise king separates out the wicked + + a + +and drives the threshing wheel over them. + +The spirit + + of a man is the lamp of the LORD, + +searching out his inmost being. + + c + +15 + +A gift in secret soothes anger, + +and a covert bribe + + pacifies great wrath. + +16 + +Justice executed is a joy to the righteous, +but a terror to the workers of iniquity. + +Loving devotion and faithfulness preserve a + +The man who strays from the path of + +29 + +king; + +by these he maintains his throne. + +17 + +understanding + +will rest in the assembly of the dead. + +30 + +The glory of young men is their strength, + +and gray hair is the splendor of the old. + +Lashes and wounds scour evil, +The King’s Heart (Psalm 21:1–13) + +and beatings cleanse the inmost parts. + +21 + +The king’s heart is a waterway in the + +2 + + hand of the LORD; + +He directs it where He pleases. + +3 + +All a man’s ways seem right to him, +but the LORD weighs the heart. + +To do righteousness and justice + +4 + +is more desirable to the LORD than + +sacrifice. + +Haughty eyes and a proud heart— + +the guides of the wicked—are sin. + +6 + +The plans of the diligent bring plenty, +as surely as haste leads to poverty. + +Making a fortune by a lying tongue + +is a vanishing mist, a deadly pursuit. + +The violence of the wicked will sweep them + +8 + +away + +because they refuse to do what is just. + +The way of a guilty man is crooked, + +but the conduct of the innocent is upright. + +Better to live on a corner of the roof + +He who loves pleasure will become poor; + +18 + +the one who loves wine and oil will never + +be rich. + +The wicked become a ransom for the + +19 + +righteous, + +and the faithless for the upright. + +Better to live in the desert + +20 + +than with a contentious and ill-tempered + +wife. + +Precious treasures and oil are in the dwelling + +21 + +of the wise, + +but a foolish man consumes them. + +He who pursues righteousness and loving + +22 + +devotion + +finds life, righteousness, and honor. + +A wise man scales the city of the mighty + +23 + +and pulls down the stronghold in which + +they trust. + +24 + +He who guards his mouth and tongue + +keeps his soul from distress. + +Mocker is the name of the proud and + +25 + +arrogant man— + +of him who acts with excessive pride. + +26 + +The craving of the slacker kills him + +because his hands refuse to work. + +All day long he covets more, + +27 + +but the righteous give without restraint. + +than to share a house with a quarrelsome + +The sacrifice of the wicked is detestable— + +wife. + +The soul of the wicked man craves evil; + +28 + +how much more so when brought with ill + +intent! + +his neighbor finds no favor in his eyes. + +A lying witness will perish, + +When a mocker is punished, the simple gain + +29 + +wisdom; + +but the man who listens to truth will + +d + +speak forever. + +and when a wise man is instructed, he + +acquires knowledge. + + b + +A wicked man hardens his face, + +30 + +but the upright man makes his way sure. + + considers the house of + +There is no wisdom, no understanding, no + +The Righteous One +the wicked + +and brings the wicked to ruin. + +Whoever shuts his ears to the cry of the poor, +c 14 +he too shall cry out and receive no answer. + +The righteous one + +speech + +breath + +b 12 + +a 27 + +31 + +counsel + +that can prevail against the LORD. + +A horse is prepared for the day of battle, +puts up a bold front + +but victory is of the LORD. +a bribe in the bosom + +d 29 + +Or + + or + +Or + +Hebrew + +Or + +5 + +7 + +9 + +10 + +11 + +12 + +13 + + 594 | Proverbs 22:1 + +A Good Name + +22 + + A good name is more desirable than + +2 + +great riches; + +favor is better than silver and gold. + +3 + +The rich and the poor have this in common: + LORD is Maker of them all. + +The + +The prudent see danger and take cover, + +4 + +but the simple keep going and suffer the + +consequences. + +The rewards of humility and the fear of the + +5 + +LORD + +are wealth and honor and life. + +Thorns and snares lie on the path of the + +Thirty Sayings of the Wise + +Saying 1 + +17 + +Incline your ear and hear the words of the + +18 + +wise— + +apply your mind to my knowledge— +for it is pleasing when you keep them within + +19 + +you + +20 + +and they are constantly on your lips. +So that your trust may be in the LORD, + c +I instruct you today—yes, you. + +21 + +Have I not written for you thirty sayings + +about counsel and knowledge, +to show you true and reliable words, + +that you may soundly answer those who + +Saying 2 + +sent you? + +perverse; + +he who guards his soul stays far from + +22 + +them. + +6 + +8 + +9 + +10 + +Train up a child in the way he should go, +and when he is old he will not depart + +from it. + +7 + +The rich rule over the poor, + +and the borrower is slave to the lender. + +He who sows injustice will reap disaster, + +and the rod of his fury will be destroyed. + + b + +A generous man + + will be blessed, + +for he shares his bread with the poor. + +26 + +23 + +Do not rob a poor man because he is poor, + +and do not crush the afflicted at the gate, + +Saying 3 + +for the LORD will take up their case + +and will plunder those who rob them. + +24 + +a + +Do not make friends with an angry man, + +25 + +and do not associate with a hot-tempered + +man, + +or you may learn his ways + +Saying 4 + +and entangle yourself in a snare. + +Drive out the mocker, and conflict will + +11 + +depart; + +even quarreling and insults will cease. + +12 + +He who loves a pure heart and gracious lips + +will have the king for a friend. +The LORD’s eyes keep watch over + +knowledge, + +13 + +but He frustrates the words of the + +faithless. + +The slacker says, “There is a lion outside! + +I will be slain in the streets!” + +The mouth of an adulteress is a deep pit; +he who is under the wrath of the LORD + +14 + +15 + +will fall into it. + +Foolishness is bound up in the heart of a + +child, + +16 + +but the rod of discipline drives it far from + +him. + +27 + +Do not be one who gives pledges, +who puts up security for debts. +If you have nothing with which to pay, + +why should your bed be taken from under + +Saying 5 + +you? + +28 + +Saying 6 + +Do not move an ancient boundary stone +which your fathers have placed. + +29 + +Do you see a man skilled in his work? + +He will be stationed in the presence of + +kings; + +True Riches (1 Timothy 6:17–19 ; James 5:1–6) +he will not stand before obscure men. + +Saying 7 + +23 + + When you sit down to dine with a + + d + +2 + +ruler, + +Oppressing the poor to enrich oneself or + +consider carefully what is set before you, + +giving gifts to the rich +will surely lead to poverty. + +a 8 +He whose eye is good +LXX includes + +God blesses a cheerful and generous man, but foolish works will come to an end + +c 20 + +written for you excellent sayings + +and put a knife to your throat + +if you possess a great appetite. + +written for you three times + +d 1 + +b 9 +who is before you + +Or + + or + +; see also 2 Cor. 9:7. + +Lit. + +Or + + a + +22 + +3 + +Saying 8 + +Do not crave his delicacies, + +for that food is deceptive. + +4 + +Do not wear yourself out to get rich; + +5 + +be wise enough to restrain yourself. +When you glance at wealth, it disappears, + +Saying 9 + +for it makes wings for itself +and flies like an eagle to the sky. + +6 + +7 + +Do not eat the bread of a stingy man, +and do not crave his delicacies; + +b + +for he is keeping track, + +inwardly counting the cost. +“Eat and drink,” he says to you, +8 +but his heart is not with you. + +You will vomit up what little you have eaten + +Saying 10 + +and waste your pleasant words. + +9 + +Do not speak to a fool, + +for he will despise the wisdom of your + +Saying 11 + +words. + +10 + +11 + +Do not move an ancient boundary stone + +or encroach on the fields of the fatherless, + +for their Redeemer is strong; + +Saying 12 + +He will take up their case against you. + +12 + +Apply your heart to instruction + +Saying 13 + +and your ears to words of knowledge. + +13 + +Do not withhold discipline from a child; + +14 + +although you strike him with a rod, he will + +not die. +Strike him with a rod, + +Saying 14 + +and you will deliver his soul from Sheol. + +15 + +16 + +My son, if your heart is wise, + + c + +my own heart will indeed rejoice. + +My inmost being + + will rejoice + +Saying 15 + +when your lips speak what is right. + +17 + +Do not let your heart envy sinners, + +18 + +but always continue in the fear of the + +LORD. + +Proverbs 23:35 | 595 + +Saying 16 + +19 + +20 + +Listen, my son, and be wise, + +and guide your heart on the right course. +Do not join those who drink too much wine + +21 + +or gorge themselves on meat. + +For the drunkard and the glutton will come + +Saying 17 + +to poverty, + +and drowsiness will clothe them in rags. + +Listen to your father who gave you life, + +23 + +and do not despise your mother when she + +is old. + +Invest in truth and never sell it— +in wisdom and instruction and + +24 + +understanding. + +The father of a righteous man will greatly + +rejoice, + +25 + +and he who fathers a wise son will delight + +in him. + +May your father and mother be glad, + +Saying 18 + +and may she who gave you birth rejoice! + +26 + +27 + +My son, give me your heart, + +and let your eyes delight in my ways. + d + +For a prostitute is a deep pit, + +28 + +and an adulteress + + is a narrow well. + +Like a robber she lies in wait + +Saying 19 + +and multiplies the faithless among men. + +29 + +Who has woe? Who has sorrow? + +Who has contentions? Who has + +complaints? + +30 + +Who has needless wounds? Who has + +bloodshot eyes? +Those who linger over wine, + +31 + +who go to taste mixed drinks. +Do not gaze at wine while it is red, +when it sparkles in the cup +and goes down smoothly. +In the end it bites like a snake +and stings like a viper. + +32 + +33 + +34 + +Your eyes will see strange things, + +and your mind will utter perversities. +You will be like one sleeping on the high seas + +35 + +or lying on the top of a mast: +“They struck me, but I feel no pain! + +They beat me, but I did not know it! + +For surely there is a future, + +a 6 +d 27 + +of him whose eye is evil + +and your hope will not be cut off. +a foreign woman + +a wayward wife + +b 7 + +for as he calculates in his soul, so is he + +My kidneys +to search for another drink?” + +c 16 + +When can I wake up + +Literally + +Or + + or + +Or + +Hebrew + + 596 | Proverbs 24:1 + +Do Not Envy + +Saying 20 + +24 + +2 + +Do not envy wicked men +or desire their company; +for their hearts devise violence, + +Saying 21 + +and their lips declare trouble. + +3 + +By wisdom a house is built + +4 + +and by understanding it is established; + +through knowledge its rooms are filled +with every precious and beautiful + +Saying 22 + +treasure. + +5 + +a + +A wise man is strong, + +6 + +and a man of knowledge enhances his + +strength. + +Only with sound guidance should you wage + +war, + +and victory lies in a multitude of + +Saying 23 + +counselors. + +7 + +Wisdom is too high for a fool; + +he does not open his mouth in the meeting + +Saying 24 + +place. + +8 + +He who plots evil + +9 + +will be called a schemer. + +A foolish scheme is sin, + +Saying 25 + +and a mocker is detestable to men. + +10 + +11 + +If you faint in the day of distress, +how small is your strength! + +Rescue those being led away to death, + +12 + +and restrain those stumbling toward the + +slaughter. + +If you say, “Behold, we did not know + +about this,” + +does not He who weighs hearts consider + +it? + +Does not the One who guards your life know? +Will He not repay a man according to his + +Saying 26 + +deeds? + +13 + +Eat honey, my son, for it is good, + +and the honeycomb is sweet to your + +a 5 + +taste. + +The wise are mightier than the strong + +LXX + +14 + +Know therefore that wisdom is sweet to your + +soul. + +If you find it, there is a future for + +you, + +Saying 27 + +and your hope will never be cut off. + +15 + +Do not lie in wait, O wicked man, near the +dwelling of the righteous; +do not destroy his resting place. + +16 + +For though a righteous man may fall seven + +times, he still gets up; + +Saying 28 + +but the wicked stumble in bad times. + +17 + +Do not gloat when your enemy falls, + +18 + +and do not let your heart rejoice when he + +stumbles, + +Saying 29 + +or the LORD will see and disapprove, + +and turn His wrath away from him. + +19 + +Do not fret over evildoers, + +20 + +and do not be envious of the wicked. + +For the evil man has no future; + +the lamp of the wicked will be + +Saying 30 + +extinguished. + +21 + +My son, fear the LORD and the king, +and do not associate with the + +22 + +rebellious. + +For they will bring sudden destruction. + +Further Sayings of the Wise + +Who knows what ruin they can bring? + +23 + +These also are sayings of the wise: + +To show partiality in judgment + +24 + +is not good. + +Whoever tells the guilty, “You are + +innocent”— + +25 + +peoples will curse him, and nations will + +denounce him; + +but it will go well with those who convict the + +26 + +guilty, + +and rich blessing will come upon them. + +An honest answer given + +27 + +is like a kiss on the lips. + +Complete your outdoor work and prepare + +your field; + +after that, you may build your house. + + Proverbs 25:28 | 597 + +28 + +11 + +Do not testify against your neighbor without + +12 + +A word fitly spoken + +29 + +cause, + +and do not deceive with your lips. + +Do not say, “I will do to him as he has done to + +me; + +30 + +I will repay the man according to his + +work.” + +is like apples of gold in settings of silver. +Like an earring of gold or an ornament of fine + +13 + +gold + +is a wise man’s rebuke to a listening ear. + +Like the cold of snow in the time of harvest +is a trustworthy messenger to those who + +I went past the field of a slacker + +31 + +and by the vineyard of a man lacking + +14 + +send him; + +he refreshes the soul of his masters. + +judgment. + +32 + +Thorns had grown up everywhere, +thistles had covered the ground, +and the stone wall was broken down. + +33 + +I observed and took it to heart; + +I looked and received instruction: + +34 + +A little sleep, a little slumber, + +a little folding of the hands to rest, +and poverty will come upon you like a + +robber, +More Proverbs of Solomon +and need like a bandit. + +25 + +These are additional proverbs of Sol- +omon, which were copied by the men of + +2 +Hezekiah king of Judah: + +3 + +It is the glory of God to conceal a matter +and the glory of kings to search it out. +As the heavens are high and the earth is + +4 + +deep, + +so the hearts of kings cannot be searched. + +Remove the dross from the silver, + +5 + +and a vessel for a silversmith will come + +forth. + +Remove the wicked from the king’s presence, + +6 + +and his throne will be established in + +23 + +righteousness. + +Do not exalt yourself in the presence of the + +7 + +king, + +and do not stand in the place of great men; + +for it is better to be told, “Come up here!” + +than to be demoted in the presence of the + + a +prince. + +Even what +8 + + you have seen with your own + +eyes, + +do not bring hastily to court. + +24 + +26 + +Otherwise, what will you do in the end +9 + +when your neighbor puts you to shame? + +27 + +10 + +Argue your case with your neighbor + +without betraying another’s confidence, +lest he who hears you bring shame upon you, + +b 20 + +Even the one +and your infamy never go away. +Or + +on soda + +c 22 + +LXX; Hebrew + +a 7 + +Or +12:20 + +Like clouds and wind without rain + +15 + +is the man who boasts of gifts never given. + +16 + +Through patience a ruler can be persuaded, +and a gentle tongue can break a bone. + +17 + +If you find honey, eat just what you need, + +lest you have too much and vomit it up. +Seldom set foot in your neighbor’s house, +lest he grow weary and hate you. + +18 + +Like a club or sword or sharp arrow + +19 + +is a man who bears false witness against + +his neighbor. + +Like a broken tooth or a foot out of joint + +20 + +is confidence in a faithless man in time of + +trouble. + +Like one who removes a garment on a cold + + b + +day + +21 + +or vinegar poured on a wound +is one who sings songs to a heavy heart. + +If your enemy is hungry, give him food to eat, + +22 + +and if he is thirsty, give him water to + +drink. + +c + +For in so doing, you will heap burning coals + +on his head, + +and the LORD will reward you. + +As the north wind brings forth rain, + +so a backbiting tongue brings angry looks. + +Better to live on a corner of the roof + +25 + +than to share a house with a quarrelsome + +wife. + +Like cold water to a weary soul + +is good news from a distant land. + +Like a muddied spring or a polluted well + +is a righteous man who gives way to the + +wicked. + +28 + +It is not good to eat too much honey +or to search out one’s own glory. + +Like a city whose walls are broken down + +For you will heap burning coals on his head + +is a man who does not control his temper. + +; cited in Romans + + 598 | Proverbs 26:1 + +Similitudes and Instructions + +21 + +26 + + Like snow in summer and rain at + +2 + +harvest, + +honor does not befit a fool. + +Like a fluttering sparrow or darting swallow, +an undeserved curse does not come to + +3 + +rest. + +A whip for the horse, a bridle for the donkey, + +4 + +and a rod for the backs of fools! + +Do not answer a fool according to his folly, + +5 + +or you yourself will be like him. +Answer a fool according to his folly, + +6 + +lest he become wise in his own eyes. +Like cutting off one’s own feet or drinking + +violence + +7 + +is the sending of a message by the + +hand of a fool. +Like lame legs hanging limp + +8 + +is a proverb in the mouth of a fool. + +Like binding a stone into a sling + +9 + +is the giving of honor to a fool. + +Like a thorn that goes into the hand of a + +10 + +drunkard + +11 + +is a proverb in the mouth of a fool. +Like an archer who wounds at random +is he who hires a fool or passerby. + +a + +12 + +As a dog returns to its vomit, +so a fool repeats his folly. + +Do you see a man who is wise in his own + +eyes? + +There is more hope for a fool than for him. + +4 + +13 + +15 + +17 + +The slacker says, “A lion is in the road! + +14 + +A fierce lion roams the public + +square!” + +As a door turns on its hinges, + +so the slacker turns on his bed. + +The slacker buries his hand in the dish; +it wearies him to bring it back to his + +16 + +mouth. + +The slacker is wiser in his own eyes +than seven men who answer + +discreetly. + +Like one who grabs a dog by the ears + +18 + +is a passerby who meddles in a quarrel + +not his own. + +19 + +Like a madman shooting firebrands + +10 + +and deadly arrows, + +Like charcoal for embers and wood for fire, +so is a quarrelsome man for kindling + +22 + +strife. + +The words of a gossip are like choice morsels + +23 + +that go down into the inmost being. + + b + +24 + +Like glaze covering an earthen vessel + +are burning + + lips and a wicked heart. +A hateful man disguises himself with his + +25 + +speech, + +but he lays up deceit in his heart. + +When he speaks graciously, do not believe + +26 + +him, + +for seven abominations fill his heart. +Though his hatred is concealed by deception, +his wickedness will be exposed in the + +27 + +assembly. + +He who digs a pit will fall into it, + +28 + +and he who rolls a stone will have it + +roll back on him. + +A lying tongue hates those it crushes, +Do Not Boast about Tomorrow (Jam. 4:13–17) +and a flattering mouth causes ruin. + +27 + +2 + +6 + +7 + +9 + +Do not boast about tomorrow, +for you do not know what a day may + + bring. + +Let another praise you, and not your own + +3 + +mouth— + +a stranger, and not your own lips. + +A stone is heavy and sand is a burden, + +but aggravation from a fool outweighs + +them both. + +5 + +Wrath is cruel and anger is like a flood, +but who can withstand jealousy? + +Better an open rebuke + +than love that is concealed. + +The wounds of a friend are faithful, + +but the kisses of an enemy are deceitful. + +The soul that is full loathes honey, + +8 + +but to a hungry soul, any bitter thing is + +sweet. + +Like a bird that strays from its nest + +is a man who wanders from his home. + +Oil and incense bring joy to the heart, + +and the counsel of a friend is sweetness to + +the soul. + +20 + +so is the man who deceives his neighbor + +Do not forsake your friend or your father’s + +and says, “I was only joking!” + +friend, + +Without wood, a fire goes out; + +a 11 + +without gossip, a conflict ceases. +Hebrew; LXX + +Cited in 2 Peter 2:22 + +b 23 + +smooth + +and do not go to your brother’s house +in the day of your calamity; + + 11 + +better a neighbor nearby + +than a brother far away. + +12 + +Be wise, my son, and bring joy to my heart, +so that I can answer him who taunts me. + +The prudent see danger and take cover, +but the simple keep going and pay the + +13 + +penalty. + +Take the garment of him who posts security + +a + +14 + +for a stranger; + +get collateral if it is for a foreigner. + +Proverbs 28:16 | 599 + +The Boldness of the Righteous + +28 + +2 + +The wicked flee when no one pursues, +but the righteous are as bold as a lion. + +A land in rebellion has many rulers, +but a man of understanding and +knowledge maintains order. + +3 + +4 + +A destitute leader who oppresses the poor +is like a driving rain that leaves no food. + +5 + +Those who forsake the law praise the wicked, +but those who keep the law resist them. + +If one blesses his neighbor with a loud voice + +Evil men do not understand justice, + +15 + +early in the morning, + +it will be counted to him as a curse. + +6 + +but those who seek the LORD comprehend + +fully. + +so one man sharpens another. + +He who increases his wealth by interest and + +A constant dripping on a rainy day + +16 + +and a contentious woman are alike— +restraining her is like holding back the wind +or grasping oil with one’s right hand. + +b + +As iron sharpens iron, + +17 + +18 + +Whoever tends a fig tree will eat its fruit, + +19 + +and he who looks after his master will be + +honored. + +20 + +As water reflects the face, + + c +so the heart reflects the true man. + +21 + +Sheol and Abaddon + + are never satisfied; +so the eyes of man are never satisfied. + +A crucible for silver and a furnace for gold, + +22 + +but a man is tested by the praise accorded + +him. + +Though you grind a fool like grain with + +23 + +mortar and a pestle, + +yet his folly will not depart from him. + +24 + +Be sure to know the state of your flocks, +and pay close attention to your herds; + +for riches are not forever, + +25 + +nor does a crown endure to every + +generation. + +When hay is removed and new growth + +26 + +appears + +and the grass from the hills is gathered, + +27 + +the lambs will provide you with clothing, +and the goats with the price of a field. +You will have plenty of goats’ milk to feed + +you— + +7 + +Better a poor man who walks with integrity + +than a rich man whose ways are perverse. + +A discerning son keeps the law, + +8 + +but a companion of gluttons disgraces his + +father. + +9 + +usury + +lays it up for one who is kind to the poor. +Whoever turns his ear away from hearing the + +10 + +law, + +even his prayer is detestable. + +He who leads the upright along the path of +evil will fall into his own pit, +but the blameless will inherit what is + +11 + +good. + +A rich man is wise in his own eyes, + +12 + +but a poor man with discernment sees + +through him. + +When the righteous triumph, there is great + +glory, + +13 + +but when the wicked rise, men hide + +themselves. + +14 + +15 + +16 + +He who conceals his sins will not prosper, +but whoever confesses and renounces + +d + +them will find mercy. + +Blessed is the man who is always reverent, +but he who hardens his heart falls into + +trouble. + +Like a roaring lion or a charging bear + +is a wicked ruler over a helpless people. + +A leader who lacks judgment is also a great + +oppressor, + +but he who hates dishonest profit will + +sharpens the countenance of a friend +prolong his days. +the LORD + +food for your household +and nourishment for your maidservants. +a wayward woman +b 17 +Death and Destruction + +always fears the LORD + +d 14 + +sharpens the face of another + +a 13 +c 20 + +Or +Or + +Hebrew +Or + + or + +; Hebrew does not include + +. + + 19 + +21 + +26 + +27 + +600 | Proverbs 28:17 + +17 + + a + +3 + +A man burdened by bloodguilt will flee into + +A man who loves wisdom brings joy to his + +18 + +the Pit; + +let no one support him. + +He who walks with integrity will be kept safe, +but whoever is perverse in his ways will + +suddenly fall. + +The one who works his land will have plenty + +of food, + +20 + +but whoever chases fantasies will have his + +fill of poverty. + +A faithful man will abound with blessings, +but one eager to be rich will not go + +unpunished. + +To show partiality is not good, + +22 + +yet a man will do wrong for a piece of + + b +bread. + +A stingy man + + hastens after wealth + +23 + +and does not know that poverty awaits + +him. + +He who rebukes a man will later find more + +24 + +favor + +than one who flatters with his tongue. + +He who robs his father or mother, saying, “It + +25 + +is not wrong,” + +is a companion to the man who destroys. + +A greedy man stirs up strife, + +father, + +4 + +but a companion of prostitutes squanders + +his wealth. + + c + +By justice a king brings stability to the land, + +5 + +but a man who exacts tribute + + demolishes + +it. + +6 + +A man who flatters his neighbor +spreads a net for his feet. + +An evil man is caught by his own sin, + +but a righteous one sings and rejoices. + +The righteous consider the cause of the poor, +but the wicked have no regard for such + +concerns. + +Mockers inflame a city, + +but the wise turn away anger. + +If a wise man goes to court with a fool, + +10 + +there will be raving and laughing with no + +resolution. + +d + +Men of bloodshed hate a blameless man, + +but the upright care for his life. + +A fool vents all his anger, + +but a wise man holds it back. + +If a ruler listens to lies, + +all his officials will be wicked. + +7 + +8 + +9 + +11 + +12 + +13 + +but he who trusts in the LORD will + +The poor man and the oppressor have this in + +prosper. + +He who trusts in himself is a fool, + +but one who walks in wisdom will be safe. + +Whoever gives to the poor will not be in + +need, + +28 + +but he who hides his eyes will receive + +16 + +many curses. + +14 + +common: + +The LORD gives light to the eyes of both. +A king who judges the poor with fairness— +his throne will be established forever. + +15 + +A rod of correction imparts wisdom, + +but a child left to himself disgraces his + +mother. + +When the wicked come to power, people hide + +themselves; + +17 + +When the wicked thrive, rebellion increases; +but the righteous will see their downfall. + +but when they perish, the righteous + +The Flourishing of the Righteous + +flourish. + +29 + + A man who remains stiff-necked after + +much reproof + +2 + +will suddenly be shattered beyond + +recovery. + +When the righteous flourish, the people + +20 + +rejoice, + +18 + +Discipline your son, and he will give you rest; + +he will bring delight to your soul. + +Where there is no vision, the people cast off + +19 + +restraint; + +but blessed is he who keeps the Law. + +A servant cannot be corrected by words + +alone; + +though he understands, he will not + +respond. + +but when the wicked rule, the people +will be a fugitive until death +but the upright seek his soul + +groan. + +b 22 + +a 17 +d 10 + +Do you see a man who speaks in haste? + +A man whose eye is evil + +There is more hope for a fool than for him. + +who taxes heavily + +who takes bribes + +c 4 + +Or +Or + +Hebrew + +Or + + or + + 22 + +23 + +24 + +25 + +27 + +21 + + 10 + +Proverbs 30:24 | 601 + +A servant pampered from his youth + +will bring grief in the end. + +11 + +An angry man stirs up dissension, + +Do not slander a servant to his master, + +or he will curse you, and you will bear the + +guilt. + +and a hot-tempered man abounds in + +There is a generation of those who curse + +transgression. + +A man’s pride will bring him low, + +but a humble spirit will obtain honor. + +A partner to a thief hates his own soul; + +he receives the oath but does not testify. + +The fear of man is a snare, + +26 + +but whoever trusts in the LORD is set + +securely on high. + +Many seek the ruler’s favor, + +but a man receives justice from the LORD. + +An unjust man is detestable to the righteous, + +The Words of Agur + +and one whose way is upright is +detestable to the wicked. + +30 + +These are the words of Agur son of +Jakeh—the burden that this man de- + +clared to Ithiel: + +a + +“I am weary, O God, +2 +and worn out. + +Surely I am the most ignorant of men, + +3 + +and I lack the understanding of a man. + +I have not learned wisdom, + +4 + +and I have no knowledge of the Holy One. +Who has ascended to heaven and come down? +Who has gathered the wind in His hands? + +Who has bound up the waters in His cloak? +Who has established all the ends of the + +earth? + +What is His name, and what is the name of + +5 + +His Son— +surely you know! + +Every word of God is flawless; + +6 + +He is a shield to those who take refuge in + +Him. + +Do not add to His words, + +7 + +lest He rebuke you and prove you a liar. + +Two things I ask of You— + +8 + +do not refuse me before I die: + +Keep falsehood and deceitful words far from + +me. + +9 + +Give me neither poverty nor riches; +feed me with the bread that is my portion. + +Otherwise, I may have too much + +and deny You, saying, ‘Who is the LORD?’ + +12 + +their fathers + +and do not bless their mothers. + +There is a generation of those who are pure + +13 + +in their own eyes + +and yet unwashed of their filth. + +There is a generation—how haughty are + +14 + +their eyes + +and pretentious are their glances— + +there is a generation whose teeth are swords + +and whose jaws are knives, + +15 + +devouring the oppressed from the earth +and the needy from among men. + +The leech has two daughters: + +Give and Give. + +16 + +There are three things that are never satisfied, +four that never say, ‘Enough!’: + +Sheol, + +the barren womb, +land never satisfied with water, +and fire that never says, ‘Enough!’ + +17 + +As for the eye that mocks a father + +and scorns obedience to a mother, +may the ravens of the valley pluck it out + +and young vultures devour it. + +18 + +There are three things too wonderful for me, +19 + +four that I cannot understand: + +the way of an eagle in the sky, + +the way of a snake on a rock, +the way of a ship at sea, +and the way of a man with a maiden. + +20 + +This is the way of an adulteress: +She eats and wipes her mouth +and says, ‘I have done nothing wrong.’ + +21 + +Under three things the earth trembles, under +22 + +four it cannot bear up: + +a servant who becomes king, + +23 +a fool who is filled with food, + +an unloved woman who marries, +and a maidservant who supplants her +mistress. + +24 + +Or I may become poor and steal, + +a 1 + +declared to Ithiel: “I am weary, O God, but I can prevail. +profaning the name of my God. + +Four things on earth are small, yet they are +declared to Ithiel—to Ithiel and Ucal: + +exceedingly wise: + +Or + + (revocalizations); Heb. + + b + +18 + +She girds herself + + with strength + +602 | Proverbs 30:25 + +25 + +The ants are creatures of little strength, +26 +yet they store up their food in the summer; + + a + +the rock badgers + + are creatures of little + +power, yet they make their homes in the +27 +rocks; + +the locusts have no king, yet they all + +28 +advance in formation; + +29 + +and the lizard can be caught in one’s + +hands, yet it is found in the palaces of kings. + +There are three things that are stately in their +stride, and four that are impressive in their +30 +walk: + +a lion, mighty among beasts, refusing to + +31 +retreat before anything; + +a strutting rooster; + +a he-goat; + +32 + +and a king with his army around him. + +If you have foolishly exalted yourself + +33 + +or if you have plotted evil, +put your hand over your mouth. + +For as the churning of milk yields butter, + +The Sayings for King Lemuel + +and the twisting of the nose draws blood, +so the stirring of anger brings forth strife.” + +31 + +2 + +These are the words of King Lemuel— +the burden that his mother taught him: + +c + +What shall I say, + + O my son? + +3 + +What, O son of my womb? +What, O son of my vows? + +Do not spend your strength on women + +4 + +or your vigor on those who ruin kings. + +It is not for kings, O Lemuel, + +5 + +6 + +it is not for kings to drink wine, +or for rulers to crave strong drink, +lest they drink and forget what is decreed, +depriving all the oppressed of justice. + +Give strong drink to one who is perishing, + +7 + +and wine to the bitter in soul. +Let him drink and forget his poverty, + +and remember his misery no more. + +8 + +9 + +Open your mouth for those with no voice, +for the cause of all the dispossessed. + +Open your mouth, judge righteously, + +and defend the cause of the poor and +the coneys + +the hyraxes + +b 31 + +needy. + +a 26 +d 10 +e 17 + +The Virtues of a Noble Woman + +10 + + d + +11 + +A wife + + of noble character, who can find? + +She is far more precious than rubies. + +12 + +The heart of her husband trusts in her, + +and he lacks nothing of value. +She brings him good and not harm + +13 + +all the days of her life. +She selects wool and flax + +14 + +and works with eager hands. + +15 + +She is like the merchant ships, +bringing her food from afar. + +She rises while it is still night + +16 + +to provide food for her household +and portions for her maidservants. + +17 + +She appraises a field and buys it; + e + +from her earnings she plants a vineyard. + +and shows that her arms are strong. + +19 + +She sees that her gain is good, + +and her lamp is not extinguished at night. + +20 + +She stretches out her hands to the distaff + +and grasps the spindle with her fingers. + +21 + +She opens her arms to the poor + +and reaches out her hands to the needy. + +When it snows, she has no fear for her + +f + +22 + +household, + +for they are all clothed in scarlet. + +23 + +She makes coverings for her bed; + +her clothing is fine linen and purple. +Her husband is known at the city gates, +where he sits among the elders of the + +24 + +land. + +25 + +She makes linen garments and sells them; +she delivers sashes to the merchants. + +26 + +Strength and honor are her clothing, + +and she can laugh at the days to come. + +27 + +She opens her mouth with wisdom, + +and faithful instruction is on her tongue. +She watches over the affairs of her household +and does not eat the bread of idleness. +Her children rise up and call her blessed; + +28 + +29 + +her husband praises her as well: + +“Many daughters have done noble things, + +30 + +but you surpass them all!” + +Charm is deceptive and beauty is fleeting, + +31 + +but a woman who fears the LORD is to be + +praised. + +Give her the fruit of her hands, + +a king against whom there is no rising up + +What are you doing +What +and let her works praise her at the gates. + +c 2 + + or + +She girds her loins + +Or +Verses 10–31 are an acrostic poem, each verse beginning with the successive letters of the Hebrew alphabet. +Hebrew + +Or +doubly clothed + +f 21 + + or + +Or + +Or + + Ecclesiastes + +Everything Is Futile + +1 + +2 + +These are the words of the Teacher, +of David, king in Jerusalem: + + b + +“Futility + + of futilities,” + +says the Teacher, +“futility of futilities! + +Everything is futile!” + +3 + +4 + +5 + +What does a man gain from all his labor, +at which he toils under the sun? +Generations come and generations go, +but the earth remains forever. + +The sun rises and the sun sets; + +6 + +it hurries back to where it rises. + +The wind blows southward, +then turns northward; +round and round it swirls, + +7 + +ever returning on its course. + +All the rivers flow into the sea, +yet the sea is never full; + +to the place from which the streams come, + +8 + +there again they flow. + +All things are wearisome, + +more than one can describe; +the eye is not satisfied with seeing, + +9 + +nor the ear content with hearing. + +What has been will be again, + +and what has been done will be done + +10 + +again; + +there is nothing new under the sun. + +Is there a case where one can say, + +“Look, this is new”? + +It has already existed + +11 + +in the ages before us. +There is no remembrance + +of those who came before, +and those yet to come will not be + +remembered +With Wisdom Comes Sorrow +by those who follow after. + +12 + +13 + +a + + the son + +wisdom all that is done under heaven. What a +miserable task God has laid upon the sons of men +14 +to occupy them! + +I have seen all the things that are done under +the sun, and have found them all to be futile, a +15 +pursuit of the wind. + +16 + +What is crooked cannot be straightened, + +and what is lacking cannot be counted. + +I said to myself, “Behold, I have grown and in- +creased in wisdom beyond all those before me +who were over Jerusalem, and my mind has ob- +17 +served a wealth of wisdom and knowledge.” + +So I set my mind to know wisdom and mad- +ness and folly; I learned that this, too, is a pursuit +18 +of the wind. + +For with much wisdom comes much + +sorrow, + +and as knowledge grows, grief + +The Futility of Pleasure + +increases. + +2 + +I said to myself, “Come now, I will test you +with pleasure; enjoy what is good!” + +2 +But it proved to be futile. + +I said of laughter, “It is folly,” and of pleasure, + +3 +“What does it accomplish?” + +I sought to cheer my body with wine and to +embrace folly—my mind still guiding me with +wisdom—until I could see what was worthwhile +for men to do under heaven during the few days +4 +of their lives. + +5 + +6 + +I expanded my pursuits. I built houses and +I made gardens +planted vineyards for myself. +and parks for myself, where I planted all kinds of +fruit trees. +I built reservoirs to water my groves +7 +of flourishing trees. + +8 + +I acquired menservants and maidservants, and +servants were born in my house. I also owned +more herds and flocks than anyone in Jerusalem +and I accumulated for myself silver +before me, +; Hebrew + +the Teacher +futile + + is rendered as + +Qoheleth + +fleeting + throughout + can + + or + +I, the Teacher, was king over Israel in Jerusa- +And I set my mind to seek and explore by + +the leader of the assembly + +the Preacher + +the Convener +b 2 + +vapor + +a 1 +lem. +Or + +Ecclesiastes. +also be translated as + + or +vanity +Literally + + or + +breath + or +meaningless + or + +; the Hebrew words translated in Ecclesiastes as forms of +. + + 604 | Ecclesiastes 2:9 + +and gold and the treasure of kings and provinces. +I gathered to myself male and female singers, and +the delights of the sons of men—many concu- +9 +bines. + +10 + +So I became great and surpassed all in Jerusa- +lem who had preceded me; and my wisdom re- +mained with me. +Anything my eyes desired, I +did not deny myself. I refused my heart no pleas- +ure. For my heart took delight in all my work, and +11 +this was the reward for all my labor. + +Yet when I considered all the works that my +hands had accomplished and what I had toiled to +achieve, I found everything to be futile, a pursuit +of the wind; there was nothing to be gained un- +The Wise and the Foolish +der the sun. +12 + +13 + +Then I turned to consider wisdom and +madness and folly; for what more can the king’s +successor do than what has already been accom- +plished? +And I saw that wisdom exceeds folly, +14 +just as light exceeds darkness: + +The wise man has eyes in his head, +but the fool walks in darkness. + +15 + +Yet I also came to realize that one fate overcomes +So I said to myself, “The fate of the +them both. +fool will also befall me. What then have I gained +by being wise?” +16 +And I said to myself that this too is futile. + +17 + +For there is no lasting remembrance of the +wise, just as with the fool, seeing that both will +be forgotten in the days to come. Alas, the wise +man will die just like the fool! +So I hated life, +because the work that is done under the sun was +grievous to me. For everything is futile and a pur- +The Futility of Work +suit of the wind. +18 + +19 + +I hated all for which I had toiled under the sun, +because I must leave it to the man who comes af- +And who knows whether that man will +ter me. +be wise or foolish? Yet he will take over all the +labor at which I have worked skillfully under the +20 +sun. This too is futile. + +21 + +So my heart began to despair over all the +labor that I had done under the sun. +When +there is a man who has labored with wisdom, +knowledge, and skill, and he must give his por- +tion to a man who has not worked for it, this too +a 25 +is futile and a great evil. +For what does a man + +22 + +23 +get for all the toil and striving with which he la- +bors under the sun? +Indeed, all his days are +filled with grief, and his task is sorrowful; even at +24 +night, his mind does not rest. This too is futile. + +a + +25 + +Nothing is better for a man than to eat and +drink and enjoy his work. I have also seen that +For apart from +this is from the hand of God. +26 + who can eat and who can find enjoyment? +Him, +To the man who is pleasing in His sight, He +gives wisdom and knowledge and joy, but to the +sinner He assigns the task of gathering and accu- +mulating that which he will hand over to one +who pleases God. This too is futile and a pursuit +To Everything There Is a Season +of the wind. + +3 + +2 + + To everything there is a season, +and a time for every purpose under + +heaven: + +a time to be born and a time to die, + +3 + +a time to plant and a time to uproot, + +a time to kill and a time to heal, + +4 + +a time to break down and a time to build, + +a time to weep and a time to laugh, + +5 + +a time to mourn and a time to dance, +a time to cast away stones and a time to +gather stones together, + +6 + +a time to embrace and a time to refrain + +from embracing, + +7 + +a time to search and a time to count as lost, +a time to keep and a time to discard, + +a time to tear and a time to mend, + +8 + +a time to be silent and a time to speak, + +a time to love and a time to hate, + +God’s Works Remain Forever + +a time for war and a time for peace. + +9 + +10 + +11 + +What does the worker gain from his toil? + +I +have seen the burden that God has laid upon the +He has made eve- +sons of men to occupy them. +rything beautiful in its time. He has also set eter- +nity in the hearts of men, yet they cannot fathom +the work that God has done from beginning to +12 +end. + +13 + +I know that there is nothing better for them +than to rejoice and do good while they live, +and +also that every man should eat and drink and find +14 +satisfaction in all his labor—this is the gift of God. +I know that everything God does endures for- +ever; nothing can be added to it or taken from it. +God does it so that they should fear Him. +What +exists has already been, and what will be has + +apart from me + +more than I + +15 + +Some Hebrew manuscripts, LXX, Syriac; most Hebrew manuscripts + + or + + already been, for God will call to account what +From Dust to Dust +has passed. +16 + +Furthermore, I saw under the sun that in the +place of judgment there is wickedness, and in the +place of righteousness there is wickedness. +I +said in my heart, “God will judge the righteous +and the wicked, since there is a time for every +18 +activity and every deed.” + +17 + +19 + +I said to myself, “As for the sons of men, God +tests them so that they may see for themselves +that they are but beasts.” +For the fates of both +men and beasts are the same: As one dies, so dies +the other—they all have the same breath. + Man +has no advantage over the animals, since every- +thing is futile. +All go to one place; all come from +21 +dust, and all return to dust. + +20 + +a + +22 + +Who knows if the spirit of man rises upward +and the spirit of the animal descends into the +earth? +I have seen that there is nothing better +for a man than to enjoy his work, because that is +his lot. For who can bring him to see what will +The Evil of Oppression +come after him? + +4 + +Again I looked, and I considered all the +oppression taking place under the sun. I +saw the tears of the oppressed, and they had no +comforter; the power lay in the hands of their +oppressors, and there was no comforter. +So I +admired the dead, who had already died, above +But better than +the living, who are still alive. +both is he who has not yet existed, who has not +4 +seen the evil that is done under the sun. + +2 + +3 + +I saw that all labor and success spring from a +man’s envy of his neighbor. This too is futile and +5 +a pursuit of the wind. + +The fool folds his hands + +6 + +and consumes his own flesh. +Better one handful with tranquility + +7 + +than two handfuls with toil and pursuit of + +8 + +the wind. + +Again, I saw futility under the sun. + +There is a +man all alone, without even a son or brother. And +though there is no end to his labor, his eyes are +still not content with his wealth: “For whom do I +toil and bereave my soul of enjoyment?” This too +9 +is futile—a miserable task. + +10 + +Two are better than one, because they have a +b 6 +a 19 +good return for their labor. +For if one falls + +angel + +spirit + +Or + +Or + +Ecclesiastes 5:9 | 605 + +down, his companion can lift him up; but pity the +11 +one who falls without another to help him up! +Again, if two lie down together, they will keep +warm; but how can one keep warm alone? +And +though one may be overpowered, two can resist. +Moreover, a cord of three strands is not quickly +The Futility of Power +broken. +13 + +12 + +14 + +Better is a poor but wise youth than an old but +foolish king who no longer knows how to take a +warning. +For the youth has come from the +prison to the kingship, though he was born poor +15 +in his own kingdom. + +16 + +I saw that all who lived and walked under the +sun followed this second one, the youth who suc- +ceeded the king. +There is no limit to all the peo- +ple who were before them. Yet the successor will +not be celebrated by those who come even later. +Approaching God with Awe +This too is futile and a pursuit of the wind. + +5 + +2 + +Guard your steps when you go to the house +of God. Draw near to listen rather than to of- +fer the sacrifice of fools, who do not know that +Do not be quick to speak, and do +they do wrong. +not be hasty in your heart to utter a word before +God. For God is in heaven and you are on earth. +3 +So let your words be few. + +As a dream comes through many cares, + +so the speech of a fool comes with many + +words. + +4 + +5 + +When you make a vow to God, do not delay in +fulfilling it, because He takes no pleasure in fools. +It is better not to vow than to +Fulfill your vow. +6 +make a vow and not fulfill it. + + b + +Do not let your mouth cause your flesh to sin, +and do not tell the messenger + that your vow +was a mistake. Why should God be angry with +7 +your words and destroy the work of your hands? +For as many dreams bring futility, so do many + +The Futility of Wealth (Psalm 49:1–20) +words. Therefore, fear God. +8 + +If you see the oppression of the poor and the de- +nial of justice and righteousness in the province, +do not be astonished at the matter; for one offi- +cial is watched by a superior, and others higher +still are over them. +The produce of the earth is +taken by all; the king himself profits from the +fields. + +9 + + 606 | Ecclesiastes 5:10 + +10 + +11 + +He who loves money is never satisfied by +money, and he who loves wealth is never satis- +When good +fied by income. This too is futile. +things increase, so do those who consume them; +what then is the profit to the owner, except to be- +12 +hold them with his eyes? + +The sleep of the worker is sweet, whether he +eats little or much, but the abundance of the rich +13 +man permits him no sleep. + +There is a grievous evil I have seen under the +14 +sun: wealth hoarded to the harm of its owner, +or wealth lost in a failed venture, so when that + +15 +man has a son there is nothing to pass on. + +16 + +As a man came from his mother’s womb, so he +will depart again, naked as he arrived. He takes +nothing for his labor to carry in his hands. +This +too is a grievous affliction: Exactly as a man is +17 +born, so he will depart. What does he gain as he +toils for the wind? +Moreover, all his days he +eats in darkness, with much sorrow, sickness, +18 +and anger. + +Here is what I have seen to be good and fitting: +to eat and drink, and to find satisfaction in all the +labor one does under the sun during the few days +19 +of life that God has given him—for this is his lot. + +Furthermore, God has given riches and wealth +to every man, and He has enabled him to enjoy +20 +them, to accept his lot, and to rejoice in his labor. +This is a gift from God. +For a man seldom con- +siders the days of his life, because God keeps him +The Futility of Life +occupied with the joy of his heart. + +6 + +2 + +There is another evil I have seen under the +sun, and it weighs heavily upon mankind: +God gives a man riches, wealth, and honor, so +that he lacks nothing his heart desires; but God +does not allow him to enjoy them. Instead, a +stranger will enjoy them. This is futile and a +3 +grievous affliction. + +4 + +A man may father a hundred children and live +for many years; yet no matter how long he lives, +if he is unsatisfied with his prosperity and does +not even receive a proper burial, I say that a still- +born child is better off than he. +For a stillborn +child enters in futility and departs in darkness, +and his name is shrouded in obscurity. +The +6 +child, though neither seeing the sun nor knowing +anything, has more rest than that man, +even if +he lives a thousand years twice over but fails to +enjoy his prosperity. Do not all go to the same +a 7 +place? + +in the bosom of fools + +filled + +b 9 + +5 + +Hebrew + +Hebrew + +7 + +8 + +All a man’s labor is for his mouth, + +yet his appetite is never satisfied. + +a + +What advantage, then, has the wise man over +the fool? What gain comes to the poor man who +9 +knows how to conduct himself before others? +Better what the eye can see than the wandering +of desire. This too is futile and a pursuit of the +10 +wind. + +11 + +Whatever exists was named long ago, and it is +known what man is; but he cannot contend with +one stronger than he. +For the more words, the +12 +more futility—and how does that profit anyone? +For who knows what is good for a man during +the few days in which he passes through his fleet- +ing life like a shadow? Who can tell a man what +The Value of Wisdom +will come after him under the sun? + +7 + +2 + + A good name is better than fine perfume, +and one’s day of death is better than his + +day of birth. + +It is better to enter a house of mourning + +than a house of feasting, + +since death is the end of every man, +and the living should take this to +3 + +heart. + +Sorrow is better than laughter, + +4 + +for a sad countenance is good for the + +heart. + +The heart of the wise is in the house of + +mourning, + +5 + +but the heart of fools is in the house + +of pleasure. + +6 + +It is better to heed a wise man’s rebuke +than to listen to the song of fools. +For like the crackling of thorns under + +the pot, + +7 + +so is the laughter of the fool. This too + +is futile. + +Surely extortion turns a wise man into + +8 + +a fool, + +and a bribe corrupts the heart. +The end of a matter is better than the + +beginning, + +9 + +and a patient spirit is better than + +a proud one. + +b + +10 + +Do not be quickly provoked in your spirit, +for anger settles in the lap of a fool. +Do not say, “Why were the old days better + +than these?” + +For it is unwise of you to ask about this. + + 11 + +27 + +Ecclesiastes 8:13 | 607 + +Wisdom, like an inheritance, is good, + +12 + +and it benefits those who see the sun. + +For wisdom, like money, is a shelter, +and the advantage of knowledge +is that wisdom preserves the life of its + +13 + +owner. + +Consider the work of God: + +14 + +Who can straighten what He has bent? + +In the day of prosperity, be joyful, + +but in the day of adversity, consider this: + +God has made one of these along with the + +other, + +The Limits of Human Wisdom + +so that a man cannot discover +anything that will come after him. + +15 + +In my futile life I have seen both of these: + +A righteous man perishing in his +righteousness, + +16 + +and a wicked man living long in his +wickedness. + +17 + +Do not be overly righteous, and do not make +yourself too wise. Why should you destroy your- +self? +Do not be excessively wicked, and do not +18 +be a fool. Why should you die before your time? +It is good to grasp the one and not let the other +slip from your hand. For he who fears God will +19 +follow both warnings. + +a + +Wisdom makes the wise man + +20 + +stronger than ten rulers in a city. + +Surely there is no righteous man on earth + +21 + +who does good and never sins. + +Do not pay attention to every word that is spo- +22 +ken, or you may hear your servant cursing you. +For you know in your heart that many times + +23 +you yourself have cursed others. +24 + +All this I tested by wisdom, saying, “I resolve to +What exists is +be wise.” But it was beyond me. +25 +out of reach and very deep. Who can fathom it? + +26 + +I directed my mind to understand, to explore, +to search out wisdom and explanations, and to +understand the stupidity of wickedness and the +And I find more bitter than +folly of madness. +death the woman who is a snare, whose heart +is a net, and whose hands are chains. The man +who pleases God escapes her, but the sinner is +ensnared. +a 18 +forgotten + +will avoid all extremes + +b 10 + +28 + +“Behold,” says the Teacher, “I have discovered +this by adding one thing to another to find an ex- +planation. +While my soul was still searching +but not finding, among a thousand I have found +29 +one upright man, but among all these I have not +Only this have I found: +found one such woman. +I have discovered that God made mankind up- +Obey the King +right, but they have sought out many schemes.” + +8 + +Who is like the wise man? Who knows the +interpretation of a matter? A man’s wisdom +brightens his face, and the sternness of his face is +2 +changed. + +3 + +Keep the king’s command, I say, because of your +oath before God. +Do not hasten to leave his +4 +presence, and do not persist in a bad cause, for +For the king’s +he will do whatever he pleases. +word is supreme, and who can say to him, “What +5 +are you doing?” + +6 + +Whoever keeps his command will come to no +harm, and a wise heart knows the right time and +For there is a right time and proce- +procedure. +dure to every purpose, though a man’s misery +Since no one knows +weighs heavily upon him. +what will happen, who can tell him what is to +8 +come? + +7 + +9 + +As no man has power over the wind to contain +it, so no one has authority over his day of death. +As no one can be discharged in wartime, so wick- +All +edness will not release those who practice it. +this I have seen, applying my mind to every deed +that is done under the sun; there is a time +when one man lords it over another to his own +Fear God (Isaiah 8:11–15) +detriment. +10 + + b + +11 + +Then too, I saw the burial of the wicked who +used to go in and out of the holy place, and they +were praised + in the city where they had done so. +This too is futile. +When the sentence for a +crime is not speedily executed, the hearts of men +12 +become fully set on doing evil. + +13 + +Although a sinner does evil a hundred times +and still lives long, yet I also know that it will go +well with those who fear God, who are reverent +Yet because the wicked do not +in His presence. +fear God, it will not go well with them, and their +days will not lengthen like a shadow. + +were soon + +Or + +Some Hebrew manuscripts, LXX, and Vulgate; most Hebrew manuscripts + + 608 | Ecclesiastes 8:14 + +God’s Ways Are Mysterious + +Enjoy Your Portion in This Life + +14 + +7 + +There is a futility that is done on the earth: +There are righteous men who get what the ac- +tions of the wicked deserve, and there are wicked +men who get what the actions of the righteous +15 +deserve. I say that this + + too is futile. + +So I commended the enjoyment of life, because +there is nothing + better for a man under the +sun than to eat and drink and be merry. For this +joy will accompany him in his labor during +the days of his life that God gives him under the +16 +sun. + +17 + +When I applied my mind to know wisdom and +to observe the task that one performs on the +earth—though his eyes do not see sleep in the +I saw every work of +day or even in the night— +God, and that a man is unable to comprehend the +work that is done under the sun. Despite his ef- +forts to search it out, he cannot find its meaning; +even if the wise man claims to know, he is unable +Death Comes to Good and Bad +to comprehend. + +9 + +So I took all this to heart and concluded that +the righteous and the wise, as well as their +deeds, are in God’s hands. Man does not know +2 +what lies ahead, whether love or hate. + +a + +It is the same for all: There is a common fate for +the righteous and the wicked, for the good and +the bad, + for the clean and the unclean, for the +one who sacrifices and the one who does not. As +it is for the good, so it is for the sinner; as it is for +the one who makes a vow, so it is for the one who +3 +refuses to take a vow. + +This is an evil in everything that is done +under the sun: There is one fate for everyone. +Furthermore, the hearts of men are full of evil +and madness while they are alive, and afterward +4 +they join the dead. + +5 + +6 + +There is hope, however, for anyone who is +among the living; for even a live dog is better +For the living know that they +than a dead lion. +will die, but the dead know nothing. They have +no further reward, because the memory of them +is forgotten. +Their love, their hate, and their +envy have already vanished, and they will never +again have a share in all that is done under the +sun. +a 2 + +Go, eat your bread with joy, and drink your +wine with a cheerful heart, for God has already +8 +approved your works: + +9 + +Let your garments always be white, + +and never spare the oil for your head. + + b + +Enjoy life with your beloved wife all the days of + life that God has given you under +the fleeting +the sun—all your fleeting days. For this is your +10 +portion in life and in your labor under the sun. +Whatever you find to do with your hands, do it +with all your might, for in Sheol, where you are +going, there is no work or planning or knowledge +11 +or wisdom. + +12 + +I saw something else under the sun: The race +is not to the swift, nor the battle to the strong; +neither is the bread to the wise, nor the wealth to +the intelligent, nor the favor to the skillful. For +time and chance happen to all. +For surely no +man knows his time: Like fish caught in a cruel +net or birds trapped in a snare, so men are en- +snared in an evil time that suddenly falls upon +them. Wisdom Is Better than Strength +13 + +14 +I have also seen this wisdom under the sun, +and it was great to me: +There was a small city +with few men. A mighty king came against it, sur- +15 +rounded it, and built large siege ramps against it. + +16 + +Now a poor wise man was found in the city, +and he saved the city by his wisdom. Yet no one +remembered that poor man. +And I said, “Wis- +dom is better than strength, but the wisdom of +the poor man is despised, and his words are not +17 +heeded.” + +The calm words of the wise are heeded + +18 + +over the shouts of a ruler among fools. + +Wisdom is better than weapons of war, +but one sinner destroys much good. + +Wisdom and Folly + +10 + + As dead flies bring a stench to the + +perfumer’s oil, + +2 + +so a little folly outweighs wisdom and + +honor. + +A wise man’s heart inclines to the + +right, +futile + +but the heart of a fool to the left. +b 9 + +and the bad + +LXX, Syriac, and Vulgate; Hebrew does not include + +. + +Or + +; twice in this verse + + 3 + +Even as the fool walks along the road, his + +4 + +sense is lacking, + +and he shows everyone that he is a fool. +If the ruler’s temper flares against you, do not + +5 + +abandon your post, + +for calmness lays great offenses to rest. + +6 + +There is an evil I have seen under the sun— +an error that proceeds from the ruler: + +Folly is appointed to great heights, + +7 + +but the rich sit in lowly positions. + +8 + +I have seen slaves on horseback, + +while princes go on foot like slaves. + +He who digs a pit may fall into it, + +9 + +and he who breaches a wall may be bitten + +by a snake. + +The one who quarries stones may be injured + +10 + +by them, + +and he who splits logs endangers himself. +If the axe is dull and the blade unsharpened, + +11 + +more strength must be exerted, +but skill produces success. + +12 + +If the snake bites before it is charmed, +there is no profit for the charmer. + +The words of a wise man’s mouth are + +13 + +gracious, + +but the lips of a fool consume him. + +14 + +The beginning of his talk is folly, + +and the end of his speech is evil madness. + +Yet the fool multiplies words. + +No one knows what is coming, +and who can tell him what will come after + +15 + +him? + +The toil of a fool wearies him, + +16 + +for he does not know the way to the city. + +a + +Ecclesiastes 11:10 | 609 + +for a bird of the air may carry your words, +and a winged creature may report your + +Cast Your Bread upon the Waters + +speech. + +11 + +2 + +Cast your bread upon the waters, +for after many days you will find it + + again. + +Divide your portion among seven, or even + +eight, + +3 + +for you do not know what disaster may + +befall the land. + +If the clouds are full, + +they will pour out rain upon the earth; + +whether a tree falls to the south or to the + +4 + +north, + +in the place where it falls, there it will lie. + +He who watches the wind will fail to sow, + +5 + +and he who observes the clouds will fail + +to reap. + + b + +As you do not know the path of the wind, + +or how the bones are formed + + in a + +mother’s womb, + +so you cannot understand the work of God, +6 + +the Maker of all things. +Sow your seed in the morning, + +and do not rest your hands in the + +evening, + +for you do not know which will succeed, +whether this or that, or if both will + +Enjoy Your Years + +equally prosper. + +7 + +Light is sweet, + +8 + +17 + +Woe to you, O land whose king is a youth, + +and whose princes feast in the morning. +Blessed are you, O land whose king is a son of + +nobles, + +and whose princes feast at the proper + +18 + +time— + +for strength and not for drunkenness. + +Through laziness the roof caves in, + +19 + +and in the hands of the idle, the house + +leaks. + +A feast is prepared for laughter, and wine + +20 + +makes life merry, + +but money is the answer for everything. + +and it pleases the eyes to see the sun. + +So if a man lives many years, +let him rejoice in them all. + +But let him remember the days of darkness, + +9 + +for they will be many. +Everything to come is futile. + +Rejoice, O young man, while you are young, +and let your heart be glad in the days + +of your youth. +Walk in the ways of your heart + +and in the sight of your eyes, +but know that for all these things + +10 + +God will bring you to judgment. +So banish sorrow from your heart, +c + +Do not curse the king even in your thoughts, +or curse the rich even in your bedroom, +a servant + +b 5 + +a 16 + +As you do not know the way the spirit comes to the bones + +and cast off pain from your body, +for youth and vigor are fleeting. + +futile + +c 10 + +Or + +Or + +Or + + 610 | Ecclesiastes 12:1 + +Remember Your Creator + +12 + + Remember your Creator in the days of + +your youth, + +before the days of adversity come + +and the years approach of which you will say, +2 + +“I find no pleasure in them,” + +8 + +before the light of the sun, moon, and stars is + +before the pitcher is shattered at the +7 + +spring + +and the wheel is broken at the well, + +before the dust returns to the ground + +from which it came + +and the spirit returns to God who + +gave it. + +3 + +darkened, + +and the clouds return after the rain, +on the day the keepers of the house tremble + +and the strong men stoop, + +when those grinding cease because they are + +few + +4 + +and those watching through windows see + +dimly, + +when the doors to the street are shut + +and the sound of the mill fades away, + +when one rises at the sound of a bird +5 + +and all the daughters of song grow faint, + +when men fear the heights and dangers + +of the road, + +when the almond tree blossoms, + +the grasshopper loses its spring, +and the caper berry shrivels— +for then man goes to his eternal home +and mourners walk the streets. + +6 + +Remember Him before the silver cord is + +snapped + +and the golden bowl is crushed, + +“Futility of futilities,” says the Teacher. + +The Whole Duty of Man + +“Everything is futile!” + +9 + +Not only was the Teacher wise, but he also +taught the people knowledge; he pondered, +10 +searched out, and arranged many proverbs. +The Teacher searched to find delightful say- + +a + +11 +ings and to record accurate words of truth. + +b + +12 + +The words of the wise are like goads, and the +anthologies of the masters are like firmly embed- +And by +ded nails driven by a single Shepherd. +these, my son, be further warned: There is no end +to the making of many books, and much study +13 +wearies the body. + +When all has been heard, the conclusion of the +matter is this: Fear God and keep His command- +14 +ments, because this is the whole duty of man. +For God will bring every deed into judgment, +along with every hidden thing, whether good or +evil. + +a 10 + +and sought to write what was upright and true + +b 11 + +shepherd + +Or + +Or + + Song of Solomon + +The Bride Confesses Her Love +(Ephesians 5:22–33 ; 1 Peter 3:1–7) + +10 + +a + +The Friends + +1 + +The Bride +This is Solomon’s Song of Songs. + +2 + +3 + +Let him kiss me with the kisses of his mouth! +For your love is more delightful than wine. + +The fragrance of your perfume is pleasing; +your name is like perfume poured out. +No wonder the maidens adore you. + +4 + +Take me away with you—let us hurry! + +The Friends + +May the king bring me to his chambers. + +We will rejoice and delight in you; + +The Bride + +we will praise your love more than wine. + +5 + +It is only right that they adore you. + +I am dark, yet lovely, O daughters of + +Jerusalem, + +6 + +like the tents of Kedar, like the curtains of + +Solomon. + +Do not stare because I am dark, + +for the sun has gazed upon me. +My mother’s sons were angry with me; + +7 + +they made me a keeper of the vineyards, +but my own vineyard I have neglected. + +Tell me, O one I love, + +where do you pasture your sheep? +Where do you rest them at midday? + +Why should I be like a veiled woman + +The Friends + +beside the flocks of your companions? + +8 + +Your cheeks are beautiful with ornaments, + +your neck with strings of jewels. + +11 + +The Bride + +We will make you ornaments of gold, +studded with beads of silver. + +12 + +13 + +While the king was at his table, + +my perfume spread its fragrance. +My beloved is to me a sachet of myrrh + +14 + +resting between my breasts. + +My beloved is to me a cluster of henna blos- + +soms +The Bridegroom + +in the vineyards of En-gedi. + +15 + +How beautiful you are, my darling! + +The Bride + +Oh, how very beautiful! +Your eyes are like doves. + +16 + +How handsome you are, my beloved! + +The Bridegroom + +Oh, how delightful! +The soft grass is our bed. + +17 + +The beams of our house are cedars; +our rafters are fragrant firs. + +The Bride’s Admiration +The Bride + +2 + + The Bridegroom + +I am a rose of Sharon, +a lily of the valley. + +b + +2 + +Like a lily among the thorns + +The Bride + +is my darling among the maidens. + +If you do not know, O fairest of women, + +3 + +follow the tracks of the flock, + +and graze your young goats + +The Bridegroom + +near the tents of the shepherds. + +9 + +I compare you, my darling, + +a 1 + +to a mare among Pharaoh’s chariots. + +b 1 + +Like an apple tree among the trees of the forest +is my beloved among the young men. +c + +I delight to sit in his shade, +4 + +and his fruit is sweet to my taste. +He has brought me to the house of wine, +The Friends +The Groom +and his banner over me is love. +c 4 + +The Bride + +Most translators add subheadings for speaker identifications such as + +, + +, and + + based on + +the gender and number of the Heb. words. +banquet hall + +Sharon Plain is a region in the coastal plain of Israel + +That is, the + + 612 | Song of Solomon 2:5 + +5 + +Sustain me with raisins; + +6 + +refresh me with apples, +for I am faint with love. + +His left hand is under my head, + +7 + +and his right arm embraces me. +O daughters of Jerusalem, I adjure you +by the gazelles and does of the field: + +Do not arouse or awaken love +8 +until the time is right. + +Listen! My beloved approaches. + +Look! Here he comes, +leaping across the mountains, +9 +bounding over the hills. + +My beloved is like a gazelle or a young stag. + +Look, he stands behind our wall, + +10 + +gazing through the windows, + +peering through the lattice. + +My beloved calls to me, +“Arise, my darling. +Come away with me, my beautiful one. + +11 + +For now the winter is past; + +12 + +the rain is over and gone. +The flowers have appeared in the + + a + +countryside; +the season of singing + + has come, + +and the cooing of turtledoves + +13 + +is heard in our land. +The fig tree ripens its figs; + +the blossoming vines spread their + +fragrance. + +Arise, come away, my darling; + +The Bridegroom + +come away with me, my beautiful one.” + +14 + +O my dove in the clefts of the rock, + +in the crevices of the cliff, + +let me see your face, + +let me hear your voice; + +for your voice is sweet, + +The Friends + +and your countenance is lovely. + +15 + +Catch for us the foxes— + +The Bride + +the little foxes that ruin the vineyards— +for our vineyards are in bloom. + +16 + +My beloved is mine and I am his; + +17 + +he pastures his flock among the lilies. +Before the day breaks and shadows flee, + +a 12 + +pruning + +turn, my beloved, + + b 17 + +the rugged mountains + +c 7 + +and be like a gazelle + +b + +or a young stag on the mountains of + +The Bride’s Dream + +Bether. + +3 + + On my bed at night +I sought the one I love; + +I sought him, +2 + +but did not find him. + +I will arise now and go about the city, +through the streets and squares. + +I will seek the one I love. +3 + +So I sought him but did not find him. + +I encountered the watchmen on their rounds + +4 + +of the city: + +“Have you seen the one I love?” + +I had just passed them when I found the one I + +love. + +I held him and would not let go + +until I had brought him to my mother’s house, +to the chamber of the one who conceived + +5 + +me. + +O daughters of Jerusalem, I adjure you +by the gazelles and does of the field: + +Solomon Arrives on His Wedding Day + +Do not arouse or awaken love +until the time is right. + +6 + +Who is this coming up from the wilderness + +like a column of smoke, + +scented with myrrh and frankincense +7 + +c + +from all the spices of the merchant? + +Behold, it is Solomon’s carriage, + +8 + +escorted by sixty of the mightiest men of + +Israel. + +All are skilled with the sword, +experienced in warfare. +Each has his sword at his side +9 + +prepared for the terror of the night. + +10 + +King Solomon has made his carriage +out of the timber of Lebanon. + +He has made its posts of silver, + +its base of gold, its seat of purple fabric. + +11 + +Its interior is inlaid with love + +by the daughters of Jerusalem. + +Come out, O daughters of Zion, +and gaze at King Solomon, + +wearing the crown with which his mother + +crowned him + +on the day of his wedding— +the day of his heart’s rejoicing. + +Or + +Or + +That is, the couch on which servants carry a king + + Song of Solomon 5:5 | 613 + +Solomon Admires His Bride + +12 + +The Bridegroom + +4 + + How beautiful you are, my darling— +how very beautiful! +Your eyes are like doves + behind your veil. + +My sister, my bride, you are a garden locked + +13 + +up, + +a spring enclosed, a fountain sealed. + +Your branches are an orchard of + +pomegranates + +14 + +with the choicest of fruits, with henna and + +nard, + +Your hair is like a flock of goats +2 + +streaming down Mount Gilead. + +with nard and saffron, with calamus and + +cinnamon, + +Your teeth are like a flock of newly shorn + +with every kind of frankincense tree, + +sheep + +15 + +with myrrh and aloes, + +coming up from the washing; + +each has its twin, +3 + +and not one of them is lost. +Your lips are like a scarlet ribbon, +and your mouth is lovely. +Your brow behind your veil +4 + +is like a slice of pomegranate. +Your neck is like the tower of David, + +built with rows of stones; +on it hang a thousand shields, + +5 + +all of them shields of warriors. + +Your breasts are like two fawns, + +6 + +8 + +twins of a gazelle grazing among the lilies. + +Before the day breaks and the shadows flee, + +I will make my way +to the mountain of myrrh + +7 + +and to the hill of frankincense. + +You are altogether beautiful, my darling; + +in you there is no flaw. + +Come with me from Lebanon, my bride, + + a + +come with me from Lebanon! + +Descend + + from the peak of Amana, +from the summits of Senir and Hermon, + +from the dens of the lions, + +9 + +from the mountains of the leopards. + +You have captured my heart, +my sister, my bride; + +you have stolen my heart with one glance of + +10 + +your eyes, + +with one jewel of your neck. + +How delightful is your love, +my sister, my bride! + +Your love is much better than wine, + +11 + +and the fragrance of your perfume than all + +spices. +Your lips, my bride, + +drip sweetness like the honeycomb; +honey and milk are under your tongue, +and the fragrance of your garments +Look down +is like the aroma of Lebanon. + +flowing water + +b 15 + +a 8 + +living water + +Or + +Or + + or + +with all the finest spices. + + b +You are a garden spring, +a well of fresh water +flowing down from Lebanon. + +The Bride + +16 + +Awake, O north wind, + +and come, O south wind. + +Breathe on my garden + +and spread the fragrance of its spices. + +Let my beloved come into his garden + +The Bride and Her Beloved + +and taste its choicest fruits. + +The Bridegroom + +5 + +I have come to my garden, my sister, my + +bride; + +I have gathered my myrrh with my spice. +I have eaten my honeycomb with my honey; +I have drunk my wine with my milk. + +The Friends + +The Bride + +Eat, O friends, and drink; + +drink freely, O beloved. + +2 + +I sleep, but my heart is awake. + +A sound! My beloved is knocking: + +“Open to me, my sister, my darling, +my dove, my flawless one. +My head is drenched with dew, +3 + +my hair with the dampness of the night.” + +I have taken off my robe— +must I put it back on? +I have washed my feet— +4 + +must I soil them again? + +My beloved put his hand to the latch; + +5 + +my heart pounded for him. +I rose up to open for my beloved. +My hands dripped with myrrh, + +my fingers with flowing myrrh +on the handles of the bolt. + + 614 | Song of Solomon 5:6 + +6 + +I opened for my beloved, + +but he had turned and gone. +My heart sank at his departure. + +7 + +I sought him but did not find him. +I called, but he did not answer. + +I encountered the watchmen on their rounds + +of the city. + +They beat me and bruised me; + +they took away my cloak, +8 + +those guardians of the walls. + +O daughters of Jerusalem, I adjure you, + +The Friends + +if you find my beloved, +tell him I am sick with love. + +9 + +How is your beloved better than others, +O most beautiful among women? +How is your beloved better than another, + +The Bride + +that you charge us so? + +10 + +11 + +My beloved is dazzling and ruddy, + +outstanding among ten thousand. + +12 + +His head is purest gold; + +his hair is wavy and black as a raven. + +His eyes are like doves + +beside the streams of water, + +13 + +bathed in milk + +and mounted like jewels. +His cheeks are like beds of spice, + +towers of perfume. +His lips are like lilies, + +14 + +dripping with flowing myrrh. + +His arms are rods of gold + +set with beryl. + +15 + +His body is polished ivory + +bedecked with sapphires. +His legs are pillars of marble +set on bases of pure gold. +His appearance is like Lebanon, +as majestic as the cedars. + + a + +16 + +His mouth + + is most sweet; +he is altogether lovely. + +This is my beloved, and this is my friend, + +Together in the Garden + +O daughters of Jerusalem. + +The Friends + +6 + + Where has your beloved gone, + O most beautiful among women? + +The Bride + +2 + +My beloved has gone down to his garden, + +to the beds of spices, + +to pasture his flock in the gardens +3 + +and to gather lilies. + +The Bridegroom + +I belong to my beloved and he belongs to me; +he pastures his flock among the lilies. + +4 + +You are as beautiful, my darling, as Tirzah, + +5 + +as lovely as Jerusalem, +as majestic as troops with banners. + +Turn your eyes away from me, +for they have overcome me. +Your hair is like a flock of goats +6 + +streaming down from Gilead. +Your teeth are like a flock of sheep +coming up from the washing; + +each has its twin, +7 + +and not one of them is lost. + +8 + +Your brow behind your veil + +is like a slice of pomegranate. + +There are sixty queens and eighty + +9 + +concubines, + +and maidens without number, +but my dove, my perfect one, is unique, + +the favorite of the mother who bore her. + +The maidens see her and call her blessed; +the queens and concubines sing her + +The Friends + +praises. + +10 + +Who is this who shines like the dawn, + +as fair as the moon, + +as bright as the sun, + +The Bridegroom + +as majestic as the stars in procession? + +11 + +I went down to the walnut grove + +to see the blossoms of the valley, + +12 + +to see if the vines were budding + +or the pomegranates were in bloom. +Before I realized it, my desire had set me +among the royal chariots of my people. + +The Friends + +b + +13 + +Come back, come back, O Shulammite! + +Come back, come back, that we may gaze + +The Bridegroom + +upon you. + + Which way has he turned? + +a 16 + +b 12 + We will seek him with you. + +palate + +among the chariots of Amminadab + +Hebrew + +Or + +Or + +Why do you look at the Shulammite, +the dance of the two camps +c 13 +as on the dance of Mahanaim + +? + + c + + Admiration by the Bridegroom + +Longing for Her Beloved + +Song of Solomon 8:10 | 615 + +7 + +How beautiful are your sandaled feet, +O daughter of the prince! + +The curves of your thighs are like jewels, + +2 + +the handiwork of a master. +Your navel is a rounded goblet; +it never lacks blended wine. +Your waist is a mound of wheat + +3 + +encircled by the lilies. + +Your breasts are like two fawns, + +4 + +twins of a gazelle. +Your neck is like a tower + +made of ivory; + +your eyes are like the pools of Heshbon + +by the gate of Bath-rabbim; + +your nose is like the tower of Lebanon, +5 + +facing toward Damascus. + +Your head crowns you like Mount Carmel, + +6 + +the hair of your head like purple threads; +the king is captured in your tresses. + +How fair and pleasant you are, +O love, with your delights! +Your stature is like a palm tree; + +7 + +8 + +your breasts are clusters of fruit. + +I said, “I will climb the palm tree; +I will take hold of its fruit.” + + 9 + +May your breasts be like clusters of the vine, +the fragrance of your breath like apples, +and your mouth + + like the finest wine. + +The Bride + + a + +b +May it flow smoothly to my beloved, +gliding gently over lips and teeth. + +10 + +I belong to my beloved, + +11 + +and his desire is for me. + +Come, my beloved, +let us go to the countryside; +c +let us spend the night among the + +12 + +wildflowers. + +Let us go early to the vineyards +to see if the vine has budded, + +if the blossom has opened, + +13 + +if the pomegranates are in bloom— +there I will give you my love. + +The mandrakes send forth a fragrance, +and at our door is every delicacy, + +new as well as old, + +that I have treasured up for you, my + +a 9 +blossoms + +b 9 +palate +beloved. +in the villages + +d 6 + +passion + +8 + +O that you were to me like a brother +who nursed at my mother’s breasts! +If I found you outdoors, I would kiss you, +2 + +and no one would despise me. + +I would lead you and bring you + +to the house of my mother who taught me. + +I would give you spiced wine to drink, +3 +the nectar of my pomegranates. + +His left hand is under my head, + +4 + +and his right arm embraces me. +O daughters of Jerusalem, I adjure you: + +The Friends + +Do not arouse or awaken love +until the time is right. + +5 + +Who is this coming up from the wilderness, + +The Bride + +leaning on her beloved? + +I roused you under the apple tree; + +6 + +there your mother conceived you; +there she travailed and brought you forth. + +Set me as a seal over your heart, +as a seal upon your arm. + d +For love is as strong as death, + +its jealousy + + as unrelenting as Sheol. + +Its sparks are fiery flames, +7 +the fiercest blaze of all. + +Mighty waters cannot quench love; +rivers cannot sweep it away. + +If a man were to give all the wealth of his + +house for love, + +The Friends + +his offer would be utterly scorned. + +8 + +We have a little sister, + +and her breasts are not yet grown. + +What shall we do for our sister +9 + +on the day she is spoken for? + +If she is a wall, + +we will build a tower of silver upon her. + +If she is a door, + +we will enclose her with panels of + +The Bride + +cedar. + +10 + +I am a wall, + +and my breasts are like towers. + +So I have become in his eyes + +gliding gently over lips as we sleep + +like one who brings peace. + +c 11 + +among the henna + +Hebrew + or + +LXX, Syriac, and Vulgate; Hebrew + +Or + +Or + + 616 | Song of Solomon 8:11 + +11 + +Solomon had a vineyard in +Baal-hamon. + +He leased it to the tenants. +For its fruit, each was to bring +a thousand shekels of silver. + +a + +12 + +But my own vineyard is mine to give; +the thousand shekels are for you, + +O Solomon, + +and two hundred are for those who + +tend its fruit. + +The Bridegroom +13 + +You who dwell in the gardens, + +my companions are listening for your + +voice. +Let me hear it! + +The Bride +14 + +Come away, my beloved, +and be like a gazelle + +or a young stag + +on the mountains of spices. + +a 11 + +a thousand of silver + +Hebrew + +; that is, approximately 25.1 pounds or 11.4 kilograms of silver + + Isaiah + +Judah’s Rebellion (2 Chronicles 28:5–15) + +Meaningless Offerings + +1 + +This is the vision concerning Judah and +Jerusalem that Isaiah son of Amoz saw +during the reigns of Uzziah, Jotham, Ahaz, and +2 +Hezekiah, kings of Judah. + +10 + +Hear the word of the LORD, +you rulers of Sodom; + +listen to the instruction of our God, + +11 + +you people of Gomorrah! + +Listen, O heavens, and give ear, O earth, + +“What good to Me is your multitude of + +for the LORD has spoken: + +“I have raised children and brought them up, + +3 + +but they have rebelled against Me. + +The ox knows its owner, + +and the donkey its master’s manger, + +but Israel does not know; + +My people do not understand.” + +4 + +5 + +Alas, O sinful nation, + +a people laden with iniquity, + +a brood of evildoers, + +children who act corruptly! +They have forsaken the LORD; + +they have despised the Holy One + +of Israel + +sacrifices?” +says the LORD. + +“I am full from the burnt offerings of rams + +and the fat of well-fed cattle; +I take no delight in the blood of bulls + +12 + +and lambs and goats. + +When you come to appear before Me, +who has required this of you— +this trampling of My courts? + +13 + +Bring your worthless offerings no more; +your incense is detestable to Me. + +New Moons, Sabbaths, and convocations— +I cannot endure iniquity in a solemn + assembly. + +14 + +and turned their backs on Him. + +I hate your New Moons + +Why do you want more beatings? +Why do you keep rebelling? +Your head has a massive wound, + +6 + +and your whole heart is afflicted. + +From the sole of your foot to the top of your + +head, + +there is no soundness— + +only wounds and welts and festering sores +neither cleansed nor bandaged nor +7 + +soothed with oil. + +Your land is desolate; + +your cities are burned with fire. + +Foreigners devour your fields before you— +8 +a desolation demolished by strangers. + +And the Daughter of Zion is abandoned + +like a shelter in a vineyard, +like a shack in a cucumber field, +9 + +like a city besieged. + +a + +Unless the LORD of Hosts + +had left us a few survivors, + +b + +we would have become like Sodom, + +had left us descendants + +we would have resembled Gomorrah. + +b 9 + +a 9 + +and your appointed feasts. +They have become a burden to Me; +I am weary of bearing them. + +15 + +When you spread out your hands in prayer, + +I will hide My eyes from you; + +even though you multiply your prayers, + +16 + +I will not listen. +Your hands are covered with blood. + +Wash and cleanse yourselves. + +17 + +Remove your evil deeds from My sight. +Stop doing evil! +c +Learn to do right; + +seek justice and correct the oppressor. + +Defend the fatherless + +18 + +and plead the case of the widow.” + +“Come now, let us reason together,” + +says the LORD. + +“Though your sins are like scarlet, +they will be as white as snow; +though they are as red as crimson, +and encourage the oppressed +they will become like wool. + +c 17 + +LXX + +Cited in Romans 9:29 + +Or + + 618 | Isaiah 1:19 + +19 + +If you are willing and obedient, + +20 + +you will eat the best of the land. + +But if you resist and rebel, + +For the mouth of the LORD has spoken. + +you will be devoured by the sword.” + +The Corruption of Zion + +21 + +See how the faithful city has become a harlot! + +She once was full of justice; +righteousness resided within her, +but now only murderers! +Your silver has become dross; + +22 + +23 + +your fine wine is diluted with water. + +Your rulers are rebels, +friends of thieves. + +They all love bribes + +and chasing after rewards. +They do not defend the fatherless, + +24 + +and the plea of the widow never comes + +before them. + +Therefore the Lord GOD of Hosts, + +the Mighty One of Israel, declares: + +“Ah, I will be relieved of My foes + +25 + +and avenge Myself on My enemies. + +I will turn My hand against you; + +26 + +I will thoroughly purge your dross; +I will remove all your impurities. +I will restore your judges as at first, + +The Mountain of the House of the LORD +(Micah 4:1–5) + +2 + +2 +Jerusalem: + +This is the message that was revealed to +Isaiah son of Amoz concerning Judah and + +In the last days the mountain of the house of + +the LORD + +will be established as the chief of the + +mountains; + +it will be raised above the hills, +3 + +and all nations will stream to it. + +And many peoples will come and say: + +“Come, let us go up to the mountain of + +the LORD, + +to the house of the God of Jacob. + +He will teach us His ways + +so that we may walk in His paths.” + +For the law will go forth from Zion, +4 + +and the word of the LORD from Jerusalem. + +Then He will judge between the nations +and arbitrate for many peoples. + +They will beat their swords into plowshares +and their spears into pruning hooks. +Nation will no longer take up the sword + +against nation, +The Day of Reckoning + +nor train anymore for war. + +5 + +and your counselors as at the beginning. + +Come, O house of Jacob, + +6 + +After that you will be called the City of + +27 + +Righteousness, + +the Faithful City.” + +Zion will be redeemed with justice, + +28 + +her repentant ones with righteousness. + +But rebels and sinners will together be + +shattered, + +29 + +and those who forsake the LORD will + +perish. + +Surely you will be ashamed of the sacred + +oaks + +in which you have delighted; + +you will be embarrassed by the gardens + +30 + +that you have chosen. + +let us walk in the light of the LORD. +For You have abandoned Your people, + +the house of Jacob, +because they are filled + +with influences from the east; + +they are soothsayers like the Philistines; +they strike hands with the children of + +7 + +foreigners. + +Their land is full of silver and gold, +with no limit to their treasures; + +their land is full of horses, +8 + +with no limit to their chariots. + +Their land is full of idols; + +9 + +they bow down to the work of their hands, +to what their fingers have made. + +For you will become like an oak whose leaves + +31 + +are withered, + +like a garden without water. +The strong man will become tinder +and his work will be a spark; + +both will burn together, + +with no one to quench the flames. + +So mankind is brought low, +and man is humbled— +do not forgive them! + +10 + +Go into the rocks + +and hide in the dust +from the terror of the LORD + +and the splendor of His majesty. + + 11 + +4 + +Isaiah 3:15 | 619 + +The proud look of man will be humbled, +and the loftiness of men brought low; +the LORD alone will be exalted in that day. + +12 + +For the Day of the LORD of Hosts + +will come against all the proud and lofty, + +13 + +against all that is exalted— +it will be humbled— + +against all the cedars of Lebanon, lofty and + +14 + +lifted up, + +against all the oaks of Bashan, + +15 + +against all the tall mountains, +against all the high hills, + +against every high tower, + +a +against every fortified wall, +against every ship of Tarshish, + +16 + +17 + +and against every stately vessel. + +“I will make mere lads their leaders, +and children will rule over them.” + +5 + +The people will oppress one another, +man against man, neighbor against + +neighbor; + +the young will rise up against the old, + +and the base against the honorable. + +A man will seize his brother +within his father’s house: + +“You have a cloak—you be our leader! +7 +Take charge of this heap of rubble.” +c + +On that day he will cry aloud: + +“I am not a healer. + +I have no food or clothing in my house. + +6 + +8 + +Do not make me leader of the people!” + +So the pride of man will be brought low, + +18 + +and the loftiness of men will be humbled; + +19 + +the LORD alone will be exalted in that day, +and the idols will vanish completely. + +Men will flee to caves in the rocks + +and holes in the ground, + +away from the terror of the LORD + +20 + +and from the splendor of His majesty, +when He rises to shake the earth. + +In that day men will cast away + +to the moles and bats +their idols of silver and gold— + +21 + +the idols they made to worship. +They will flee to caverns in the rocks + +and crevices in the cliffs, + +away from the terror of the LORD + +For Jerusalem has stumbled +and Judah has fallen + +because they spoke and acted against the + +d + +9 + +LORD, + +defying His glorious presence. +The expression on their faces testifies + +against them, + +and like Sodom they flaunt their sin; +they do not conceal it. + +Woe to them, + +10 + +for they have brought disaster upon + +themselves. + +Tell the righteous it will be well with them, +for they will enjoy the fruit of their + +11 + +labor. + +22 + +and from the splendor of His majesty, +when He rises to shake the earth. + +Woe to the wicked; disaster is upon them! +For they will be repaid with what their + +12 + +Put no more trust in man, + +Judgment on Jerusalem and Judah + +who has only the breath in his nostrils. +Of what account is he? + +3 + + b + + For behold, the Lord GOD of Hosts +is about to remove +from Jerusalem and Judah +2 +the whole supply of food and water, +the mighty man and the warrior, + + and support: + +both supply + +the judge and the prophet, +3 + +the soothsayer and the elder, + +the commander of fifty and the + +dignitary, + +a 16 + +the counselor, the cunning magician, and +b 1 +every ship of trade + +staff + +c 7 + +the clever enchanter. + +hands have done. + +Youths oppress My people, + +and women rule over them. + +13 + +O My people, your guides mislead you; +they turn you from your paths. + +The LORD arises to contend; + +14 + +He stands to judge the people. + +The LORD brings this charge + +against the elders and leaders of His + +people: + +“You have devoured the vineyard; + +15 + +the plunder of the poor is in your + +houses. + +Why do you crush My people + +and grind the faces of the poor?” + +declares the Lord GOD of Hosts. + +binder of wounds + +d 8 + +defying the eyes of His glory + +Or + +Hebrew + +Or + +Hebrew + + 620 | Isaiah 3:16 + +A Warning to the Daughters of Zion + +4 + +16 + +The LORD also says: + +“Because the daughters of Zion are + +haughty— + +walking with heads held high +and wanton eyes, + +17 + +prancing and skipping as they go, + +when the Lord has washed away + +the filth of the daughters of Zion + +and cleansed the bloodstains from the heart + +of Jerusalem + +5 + +by a spirit of judgment and a spirit of fire. + +Then the LORD will create over all of Mount + +Zion + +jingling the bracelets on their ankles— + +and over her assemblies + +the Lord will bring sores +a + +on the heads of the daughters of Zion, +and the LORD will make their foreheads + +18 + +bare. + +” + +In that day the Lord will take away their + +finery: + +19 +20 + +their anklets and headbands and + +crescents; + +their pendants, bracelets, and veils; + +their headdresses, ankle chains, and sashes; + +their perfume bottles and charms; + +their signet rings and nose rings; + +their festive robes, capes, cloaks, and purses; +and their mirrors, linen garments, tiaras, + +21 +22 +23 + +24 + +and shawls. + +Instead of fragrance + +there will be a stench; + +instead of a belt, a rope; + +instead of styled hair, baldness; +instead of fine clothing, sackcloth; + +b + +25 + +instead of beauty, shame. + +3 + +a cloud of smoke by day + +and a glowing flame of fire by night. + +For over all the glory + +6 + +there will be a canopy, + +a shelter to give shade + +from the heat by day, +and a refuge and hiding place + +The Song of the Vineyard (Luke 13:6–9) +from the storm and the rain. + +5 + +I will sing for my beloved a song of his +vineyard: + +2 + +My beloved had a vineyard +on a very fertile hill. + +He dug it up and cleared the stones +and planted the finest vines. +He built a watchtower in the middle +and dug out a winepress as well. + +He waited for the vineyard to yield good + +grapes, + +but the fruit it produced was sour! + +26 + +Your men will fall by the sword, +and your warriors in battle. + +And the gates of Zion will lament and mourn; + +A Remnant in Zion + +destitute, she will sit on the ground. + +4 + +In that day seven women +will take hold of one man and say, + +“We will eat our own bread + +and provide our own clothes. +Just let us be called by your name. +2 +Take away our disgrace!” + +On that day the Branch of the LORD +will be beautiful and glorious, + +and the fruit of the land + +3 + +will be the pride and glory of Israel’s + +survivors. +Whoever remains in Zion + +and whoever is left in Jerusalem + +will be called holy— + +a 17 + +all in Jerusalem who are recorded among +will uncover their secret parts + +b 24 + +branding + +the living— + +Or + +DSS; MT + +“And now, O dwellers of Jerusalem + +and men of Judah, +I exhort you to judge + +4 + +between Me and My vineyard. +What more could have been done for + +My vineyard + +than I have done for it? + +Why, when I expected sweet grapes, +5 +did it bring forth sour fruit? + +Now I will tell you what I am about to do + +to My vineyard: + +I will take away its hedge, + +and it will be consumed; + +I will tear down its wall, + +6 + +and it will be trampled. +I will make it a wasteland, + +neither pruned nor cultivated, +and thorns and briers will grow up. + +I will command the clouds + +that rain shall not fall on it.” + + 7 + +19 + +For the vineyard of the LORD of Hosts + +to those who say, “Let Him hurry and hasten + +Isaiah 5:28 | 621 + +I heard the LORD of Hosts declare: + +Woe to those who are heroes in drinking + +is the house of Israel, + +and the men of Judah + +are the plant of His delight. + +He looked for justice, + +but saw bloodshed; + +for righteousness, +Woes to the Wicked + +but heard a cry of distress. + +8 + +Woe to you who add house to house + +and join field to field + +until no place is left + +9 + +and you live alone in the land. + +10 + +“Surely many houses will become desolate, + +great mansions left unoccupied. + +a + +For ten acres of vineyard +b + +will yield but a bath of wine, + +and a homer of seed + +11 + +only an ephah of grain. + +” + +Woe to those who rise early in the morning + +12 + +in pursuit of strong drink, +who linger into the evening, +to be inflamed by wine. + +At their feasts are the lyre and harp, +tambourines and flutes and wine. +They disregard the actions of the LORD +and fail to see the work of His hands. + +13 + +Therefore My people will go into exile +for their lack of understanding; + +14 + +their dignitaries are starving + +22 + +24 + +His work + +so that we may see it! + +Let the plan of the Holy One of Israel come + +20 + +so that we may know it!” + +Woe to those who call evil good + +and good evil, + +who turn darkness to light +and light to darkness, +who replace bitter with sweet +and sweet with bitter. + +21 + +Woe to those who are wise in their own eyes + +and clever in their own sight. + +23 + +wine + +and champions in mixing strong drink, + +who acquit the guilty for a bribe + +and deprive the innocent of justice. + +Therefore, as a tongue of fire consumes the + +straw, + +and as dry grass shrivels in the flame, + +so their roots will decay + +and their blossoms will blow away like + +dust; + +for they have rejected the instruction of the + +LORD of Hosts + +25 + +and despised the word of the Holy One of + +Israel. + +Therefore the anger of the LORD burns + +against His people; + +His hand is raised against them to strike + +them down. + +and their masses are parched with thirst. + +The mountains quake, + +Therefore Sheol enlarges its throat + +and the corpses lie like refuse in the + +and opens wide its enormous jaws, +and down go Zion’s nobles and masses, + +her revelers and carousers! + +15 + +streets. + +Despite all this, His anger is not turned away; + +26 + +His hand is still upraised. + +So mankind will be brought low, and each + +16 + +man humbled; + +He lifts a banner for the distant nations +and whistles for those at the ends of + +the arrogant will lower their eyes. + +the earth. + +But the LORD of Hosts will be exalted by His + +27 + +Behold—how speedily and swiftly they + +justice, + +come! + +17 + +and the holy God will show Himself holy in + +None of them grows weary or stumbles; + +righteousness. + + c + +no one slumbers or sleeps. + +Lambs will graze as in their own pastures, + +28 + +No belt is loose + + will feed in the ruins of the + +and no sandal strap is broken. + +18 + +and strangers +wealthy. + +Woe to those who draw iniquity with cords + +of deceit + +a 10 + +ten yoke of vineyard will yield a bath +and pull sin along with cart ropes, + +Literally + +Their arrows are sharpened, + +and all their bows are strung. + +The hooves of their horses are like flint; + +b 10 +; that is, the area ten yoke of oxen can plow in a day will yield + +and a homer of seed will yield an ephah + +their chariot wheels are like a whirlwind. + +c 17 + +lambs + +approximately 5.8 gallons or 22 liters of wine. +seed (approximately 6.24 bushels or 220 liters) will yield a tenth of its weight in grain. + +Literally + +LXX + +; that is, a homer of + + 622 | Isaiah 5:29 + +29 + +9 + +Their roaring is like that of a lion; +they roar like young lions. +They growl and seize their prey; + +30 + +they carry it away, and no one can + +rescue it. + +In that day they will roar over it, +like the roaring of the sea. + +If one looks over the land, + +he will see darkness and distress; +Isaiah’s Commission +even the light will be obscured by clouds. +(Matt. 13:10–17 ; Mark 4:10–12 ; Acts 28:16–31) + +6 + + a + +2 +and the train of His robe + +In the year that King Uzziah died, I saw the +Lord seated on a throne, high and exalted; + filled the temple. +Above Him stood seraphim, each having six +wings: With two wings they covered their faces, +with two they covered their feet, and with two +And they were calling out to +they were flying. +one another: + +3 + +4 + +“Holy, holy, holy is the LORD of Hosts; +all the earth is full of His glory.” + +At the sound of their voices the doorposts and +thresholds shook, and the temple was filled with +5 +smoke. + +Then I said: + +“Woe is me, + +for I am ruined, + +because I am a man of unclean lips + +dwelling among a people of unclean lips; + +6 + +for my eyes have seen the King, + +the LORD of Hosts.” + +7 + +Then one of the seraphim flew to me, and in his +hand was a glowing coal that he had taken with +tongs from the altar. +And with it he touched my +mouth and said: + +“Now that this has touched your lips, + +8 + +your iniquity is removed +and your sin is atoned for.” + +Then I heard the voice of the Lord saying: + +And He replied: + +“Go and tell this people, + +‘Be ever hearing, but never + + b + +10 + +understanding; + +be ever seeing, but never perceiving.’ +Make the hearts of this people calloused; +deafen their ears and close their eyes. +Otherwise they might see with their eyes, + +hear with their ears, +c +understand with their hearts, + +11 + +and turn and be healed. + +” + +Then I asked: + +“How long, O Lord?” + +And He replied: + +“Until the cities lie ruined + + and without inhabitant, + +12 + +until the houses are left unoccupied + +13 + +and the land is desolate and ravaged, +until the LORD has driven men far away +and the land is utterly forsaken. +And though a tenth remains in the land, + +it will be burned again. + +As the terebinth and oak leave stumps when + +felled, + +so the holy seed will be a stump in + +A Message to Ahaz +the land.” + +7 + + d + +Now in the days that Ahaz son of Jotham, the +son of Uzziah, was king of Judah, Rezin king + marched up to wage war against Jeru- +of Aram +salem. He was accompanied by Pekah son of +Remaliah the king of Israel, but he could not +2 +overpower the city. + +e + +When it was reported to the house of David that + the hearts of +Aram was in league with Ephraim, +Ahaz and his people trembled like trees in the +3 +forest shaken by the wind. + + f + +“Whom shall I send? + +Who will go for Us?” + +4 + +Then the LORD said to Isaiah, “Go out with your + to meet Ahaz at the end of the +son Shear-jashub +aqueduct that feeds the upper pool, on the road +and say to him: Calm +to the Launderer’s Field, +down and be quiet. Do not be afraid or disheart- +ened over these two smoldering stubs of fire- +wood—over the fierce anger of Rezin and Aram +‘You shall be ever hearing, but never understanding; you shall be ever seeing, +For Aram, along +and of the son of Remaliah. +For this people’s + +c 10 + +5 + +And I said: +a 1 +but never perceiving.’ +heart has grown callous; they hardly hear with their ears, and they have closed their eyes. Otherwise they might see with their + Cited in Matthew 13:14, Mark 4:12, Luke 8:10, and Acts 28:26 +eyes, hear with their ears, understand with their hearts, and turn, and I would heal them. + +the hem of His robe b 9 +“Here am I. Send me!” +Or + +Hebrew; LXX + +Hebrew; LXX + +d 1 + +e 2 + +had set up camp in Ephraim + +f 3 Shear-jashub +John 12:40, and Acts 28:27 + +a remnant shall return + +That is, Syria + +Or + + means + +. + + Cited in Matthew 13:15, Mark 4:12, +, that is, the northern kingdom of Israel + + 6 +with Ephraim and the son of Remaliah, has plot- + a +‘Let us invade Judah, ter- +ted your ruin, saying: +rorize it, and divide it + among ourselves. Then +7 +we can install the son of Tabeal over it as king.’ + +But this is what the Lord GOD says: + + ‘It will not arise; +8 + +it will not happen. + +For the head of Aram is Damascus, + +and the head of Damascus is Rezin. + +Within sixty-five years +9 + +Ephraim will be shattered as a people. + +The head of Ephraim is Samaria, + +and the head of Samaria is the son of + +Remaliah. + +If you do not stand firm in your faith, +The Sign of Immanuel (Matthew 1:18–25) +then you will not stand at all.’ + +” + +10 + +11 + +Again the LORD spoke to Ahaz, saying, + +“Ask +for a sign from the LORD your God, whether from +12 +the depths of Sheol or the heights of heaven.” + +But Ahaz replied, “I will not ask; I will not test + +13 +the LORD.” + +c + + b + +15 + +14 + +Then Isaiah said, “Hear now, O house of David! +Is it not enough to try the patience of men? Will +There- +you try the patience of my God as well? +fore the Lord Himself will give you a sign: Behold, + will be with child and give birth to a +the virgin +son, and will call Him Immanuel. +By the time +He knows enough to reject evil and choose good, +For before +He will be eating curds and honey. +the boy knows enough to reject evil and choose +good, the land of the two kings you dread will be +Judgment to Come (Micah 1:1–7) +laid waste. +17 + +16 + +The LORD will bring on you and on your +people and on the house of your father a time un- +like any since the day Ephraim separated from +18 +Judah—He will bring the king of Assyria.” + +On that day the LORD will whistle to the flies +at the farthest streams of the Nile and to the bees +19 +in the land of Assyria. + +And they will all come and settle + +in the steep ravines and clefts of the + +20 + +Isaiah 8:8 | 623 + + d + +On that day the Lord will use a razor hired +from beyond the Euphrates +—the king of +21 +Assyria—to shave your head and the hair of your +legs, and to remove your beard as well. +On that +22 +day a man will raise a young cow and two sheep, +and from the abundance of milk they give, he +will eat curds; for all who remain in the land will +23 +eat curds and honey. + +e +And on that day, in every place that had a thou- +sand vines worth a thousand shekels of silver, +Men will +only briers and thorns will be found. +go there with bow and arrow, for the land will be +For fear of the +covered with briers and thorns. +briers and thorns, you will no longer traverse the +hills once tilled by the hoe; they will become +Assyrian Invasion Prophesied +places for oxen to graze and sheep to trample. + +24 + +25 + +8 + + f + +g + +2 + +Then the LORD said to me, “Take a large + sty- +scroll and write on it with an ordinary +lus: Maher-shalal-hash-baz. +And I will appoint +for Myself trustworthy witnesses—Uriah the +3 +priest and Zechariah son of Jeberekiah.” + +And I had relations with the prophetess, and +she conceived and gave birth to a son. The LORD +4 +said to me, “Name him Maher-shalal-hash-baz. +For before the boy knows how to cry ‘Father’ or +‘Mother,’ the wealth of Damascus and the plun- +der of Samaria will be carried off by the king of +5 +Assyria.” +6 +And the LORD spoke to me further: + +“Because this people has rejected + +the gently flowing waters of Shiloah + +and rejoiced in Rezin +7 + +and the son of Remaliah, + +the Lord will surely bring against them + + h +the mighty floodwaters of the + +Euphrates + +— + +the king of Assyria and all his + +pomp. + +8 + +It will overflow its channels +and overrun its banks. + +It will pour into Judah, + +rocks, +split it open + +a 6 +Immanuel +Immanuel + +Hebrew + +in all the thornbushes and watering holes. +and His name will be called Immanuel +Or + +b 14 + +young woman + +c 14 Immanuel + +d 20 +f 1 + +the River + or +with a man’s + +e 23 + +; DSS +; cited in Matthew 1:23. +Swift to plunder, quick to carry away +hastens +pounds or 11.4 kilograms of silver + +Hebrew +Hebrew + +swirling and sweeping over it, +reaching up to the neck; + i +its spreading streams will cover +your entire land, O Immanuel! +; literally +a thousand of silver + +God with us + + means + +and + +and He will call His name Immanuel + +you will call His name + +and she will call His name + +g 1 Maher-shalal-hash-baz + +Hebrew +h 7 + +the River + +; LXX + +The spoil speeds, the prey +; that is, approximately 25.1 +God with us + +i 8 Immanuel + means + + or + +; also in verse 3. + +Hebrew + + means + +. + + 624 | Isaiah 8:9 + +9 + +a + +21 + +Huddle together, + + O peoples, and be + +shattered; + +pay attention, all you distant lands; + +prepare for battle, and be shattered; + +10 + +Devise a plan, but it will be thwarted; + +prepare for battle, and be shattered! +b + it will not happen. +state a proposal, but +” +For God is with us. + +A Call to Fear God (Ecclesiastes 8:10–13) + +11 + +For this is what the LORD has spoken to me +with a strong hand, instructing me not to walk in +12 +the way of this people: + +“Do not call conspiracy + +everything these people regard as + + c + +conspiracy. +Do not fear what they fear; +do not live in dread. + +d + +13 + +The LORD of Hosts is the One +you shall regard as holy. + +Only He should be feared; + +14 + +only He should be dreaded. +And He will be a sanctuary— +e + +but to both houses of Israel + +a stone of stumbling and a rock + +of offense, + +to the dwellers of Jerusalem + +15 + +a trap and a snare. + +Many will stumble over these; +they will fall and be broken; +they will be ensnared and captured.” + +16 + +Bind up the testimony + +17 + +and seal the law among my disciples. + +I will wait for the LORD, + +who is hiding His face from the house + +f + +of Jacob. + +I will put my trust in Him. + +18 + + g + +Here am I, and the children the LORD has given + as signs and symbols in Israel from the + +me +Darkness and Light +LORD of Hosts, who dwells on Mount Zion. +19 + +20 + +When men tell you to consult mediums and +spiritists who whisper and mutter, shouldn’t a +people consult their God instead? Why consult +To the law and +the dead on behalf of the living? +to the testimony! If they do not speak according +to this word, they have no light of dawn. +Be evil +a 9 +threats +Or +eagerly look for Him +LXX + +g 18 +; cited in 1 Peter 3:14 + +do not be shaken + or + +Raise the war cry + +Be broken + +d 12 + +b 10 + + or + +e 14 + +Hebrew + +22 + +They will roam the land, dejected and hungry. +When they are famished, they will become en- +raged; and looking upward, they will curse their +king and their God. +Then they will look to the +earth and see only distress and darkness and the +gloom of anguish. And they will be driven into ut- +Unto Us a Child Is Born +ter darkness. +(Matt. 4:12–17 ; Mark 1:14–15 ; Luke 4:14–15) + +9 + +Nevertheless, there will be no more gloom +for those in distress. In the past He humbled +the land of Zebulun and the land of Naphtali, but +in the future He will honor the Way of the Sea, +2 +beyond the Jordan, Galilee of the nations: + +The people walking in darkness +have seen a great light; + +on those living in the land of the shadow +3 + +h + +of death, +a light has dawned. + +You have enlarged the nation +and increased its joy. +The people rejoice before You + +4 + +as they rejoice at harvest time, +as men rejoice in dividing the plunder. + +For as in the day of Midian + +You have shattered the yoke of their + +burden, + +the bar across their shoulders, +5 + +and the rod of their oppressor. +For every trampling boot of battle + +6 + +and every garment rolled in blood +will be burned as fuel for the fire. + +For unto us a child is born, +unto us a son is given, +and the government will be upon + +His shoulders. +And He will be called +7 + +Wonderful Counselor, Mighty God, +Everlasting Father, Prince of Peace. + +Of the increase of His government and peace + +there will be no end. + +He will reign on the throne of David + +and over his kingdom, +to establish and sustain it + +with justice and righteousness +from that time and forevermore. + +The zeal of the LORD of Hosts will accomplish + +Immanuel + +this. + +c 12 + +Do not fear their + +f 17 + +I will + +; see Matthew 1:23. +Cited in Romans 9:33 and 1 Peter 2:8 + +h 2 + +Or + +Or + +; cited in Hebrews 2:13 + +Cited in Hebrews 2:13 + +Cited in Matthew 4:15–16 + + Judgment against Israel’s Pride + +20 + +Isaiah 10:9 | 625 + +8 + +The Lord has sent a message against Jacob, + +9 + +and it has fallen upon Israel. + + a + +All the people will know it— + +Ephraim + + and the dwellers of Samaria. + +21 + +They carve out what is on the right, + +but they are still hungry; +they eat what is on the left, + +but they are still not satisfied. +Each one devours the flesh of his own + +c + +offspring. + +With pride and arrogance of heart + +10 + +they will say: + +“The bricks have fallen, + +but we will rebuild with finished stone; + +the sycamores have been felled, + +11 + +but we will replace them with cedars.” + +The LORD has raised up the foes of Rezin + +12 + + b + +against him + +and joined his enemies together. + +Aram + + from the east and Philistia from the +west + +have devoured Israel with open mouths. + +Despite all this, His anger is not turned away; + +Judgment against Israel’s Hypocrisy +His hand is still upraised. + +13 + +But the people did not return to Him who + +14 + +struck them; + +they did not seek the LORD of Hosts. + +15 + +So the LORD will cut off Israel’s head and tail, +both palm branch and reed in a single day. + +The head is the elder and honorable man, +and the tail is the prophet who teaches + +16 + +lies. + +For those who guide this people mislead + +Manasseh devours Ephraim, +and Ephraim Manasseh; +together they turn against Judah. + +Despite all this, His anger is not turned away; + +Woe to Tyrants + +His hand is still upraised. + +10 + + Woe to those who enact unjust + +2 + +statutes + +and issue oppressive decrees, +to deprive the poor of fair treatment + +and withhold justice from the oppressed + +of My people, +to make widows their prey + +and orphans their plunder. + +3 + +What will you do on the day of reckoning +when devastation comes from afar? + +To whom will you flee for help? + +4 + +Where will you leave your wealth? + +Nothing will remain but to crouch among the + +captives + +or fall among the slain. + +Despite all this, His anger is not turned away; + +Judgment on Assyria + +His hand is still upraised. + +17 + +them, + +and those they mislead are swallowed up. + +5 + +Therefore the Lord takes no pleasure in their + +young men; + +He has no compassion on their fatherless + +and widows. + +For every one of them is godless and wicked, + +and every mouth speaks folly. + +Despite all this, His anger is not turned away; + +Judgment against Israel’s Unrepentance + +His hand is still upraised. + +18 + +For wickedness burns like a fire + +that consumes the thorns and briers + +and kindles the forest thickets, + +19 + +Woe to Assyria, the rod of My anger; + +6 + +the staff in their hands is My wrath. +I will send him against a godless nation; +I will dispatch him against a people + +destined for My rage, + +to take spoils and seize plunder, + +7 + +and to trample them down like clay + +in the streets. + +But this is not his intention; + +this is not his plan. + +For it is in his heart to destroy +8 +and cut off many nations. + +which roll upward in billows of smoke. + +“Are not all my commanders kings?” + + 9 + +By the wrath of the LORD of Hosts + +the land is scorched, + +he says. + +“Is not Calno like Carchemish? + +and the people are fuel for the fire. +No man even spares his brother. + +b 12 + +a 9 + +Is not Hamath like Arpad? + c 20 + +of his own arm + +Is not Samaria like Damascus? + +That is, the northern kingdom of Israel + +That is, Syria + +Literally + + 626 | Isaiah 10:10 + +10 + +As my hand seized the idolatrous + +kingdoms + +11 + +whose images surpassed those of +Jerusalem and Samaria, + +and as I have done to Samaria and its idols, +will I not also do to Jerusalem and her + +12 + +idols?” + +So when the Lord has completed all His work +against Mount Zion and Jerusalem, He will say, “I +will punish the king of Assyria for the fruit of his +13 +arrogant heart and the proud look in his eyes. + +For he says: + +‘By the strength of my hand I have done this, + +and by my wisdom, for I am clever. +I have removed the boundaries of nations + +14 + +and plundered their treasures; +like a mighty one I subdued their rulers. + +My hand reached as into a nest + +to seize the wealth of the nations. +Like one gathering abandoned eggs, + +I gathered all the earth. + +No wing fluttered, + +15 + +no beak opened or chirped.’ + +” + +Does an axe raise itself above the one who + +swings it? + +Does a saw boast over him who saws with + +it? + +It would be like a rod waving the one who + +16 + +lifts it, + +or a staff lifting him who is not wood! +Therefore the Lord GOD of Hosts will send a + +wasting disease + +among Assyria’s stout warriors, +and under his pomp will be kindled + +17 + +a fire like a burning flame. + +And the Light of Israel will become a fire, + +and its Holy One a flame. + +18 + +In a single day it will burn and devour + +Assyria’s thorns and thistles. + +The splendor of its forests and orchards, + +both soul and body, +it will completely destroy, + +19 + +as a sickness consumes a man. + +The remaining trees of its forests will be so + +few + +A Remnant Shall Return + +that a child could count them. + +20 + +On that day the remnant of Israel + +and the survivors of the house of Jacob + +a 21 +Shear-jashub +remnant will be saved. +will make a short work in all the world. + +Heb. + +; also in verse 22; see Isa. 7:3. + Cited in Rom. 9:27 + +LXX + +c 23 + +will no longer depend + +on him who struck them, + +but they will truly rely on the LORD, + +21 + +the Holy One of Israel. + + a + +A remnant will return +Jacob— + +22 + +to the Mighty God. + +—a remnant of + +Though your people, O Israel, be like the sand + +b + +of the sea, + +only a remnant will return. +Destruction has been decreed, + +23 + +overflowing with righteousness. +For the Lord GOD of Hosts will carry out + +c + +24 + +the destruction decreed upon the whole + +land. + +Therefore this is what the Lord GOD of Hosts + +says: + +“O My people who dwell in Zion, + +do not fear Assyria, +who strikes you with a rod + +25 + +and lifts his staff against you +as the Egyptians did. +For in just a little while + +My fury against you will subside, +and My anger will turn to their + +destruction.” + +26 + +And the LORD of Hosts will brandish a whip + +against them, + +as when He struck Midian at the rock + +of Oreb. + +27 + +He will raise His staff over the sea, + +as He did in Egypt. + +On that day the burden will be lifted from + +your shoulders, + +and the yoke from your neck. + +d + +The yoke will be broken + +28 + +because your neck will be too large. + +Assyria has entered Aiath + +29 + +and passed through Migron, +storing their supplies at Michmash. + +They have crossed at the ford: + +“We will spend the night at Geba.” + +30 + +Ramah trembles; + +Gibeah of Saul flees. + +Cry aloud, O Daughter of Gallim! + +31 + +Listen, O Laishah! +O wretched Anathoth! + +Madmenah flees; + +b 22 + +Though the people of Israel be like the sand of the sea, only a +He will finish the work and cut it short in righteousness, because the Lord +broken from your shoulders + +the people of Gebim take refuge. + +broken because of fatness + +d 27 + +LXX + + Cited Rom. 9:28 + +Lit. + +; LXX + + 32 + +9 + +Yet today they will halt at Nob, + +They will neither harm nor destroy + +shaking a fist at the mount of Daughter + +on all My holy mountain, + +Isaiah 12:1 | 627 + +33 + +Zion, + +at the hill of Jerusalem. + +Behold, the Lord GOD of Hosts + +will lop off the branches with terrifying + +power. + +34 + +The tall trees will be cut down, +the lofty ones will be felled. + +He will clear the forest thickets with an axe, +and Lebanon will fall before the Mighty + +The Root of Jesse + +One. + +11 + +2 + +Then a shoot will spring up from the +stump of Jesse, + +and a Branch from his roots will bear fruit. + +The Spirit of the LORD will rest on Him— + +the Spirit of wisdom and understanding, +the Spirit of counsel and strength, +the Spirit of knowledge and fear of + +3 + +the LORD. + +And He will delight in the fear of the LORD. + +He will not judge by what His eyes see, + +4 + +and He will not decide by what His ears + +hear, + +but with righteousness He will judge the + +poor, + +and with equity He will decide for the + +lowly of the earth. + +He will strike the earth with the rod of His + +mouth + +5 + +and slay the wicked with the breath of + +His lips. + +Righteousness will be the belt around His + +6 + +hips, + +and faithfulness the sash around His waist. + +The wolf will live with the lamb, + +and the leopard will lie down with the + +goat; + +a + +the calf and young lion and fatling will be +7 + +together, + +and a little child will lead them. + +The cow will graze with the bear, + +8 + +their young will lie down together, +and the lion will eat straw like the ox. + +for the earth will be full of the knowledge of + +10 + +the LORD + +as the sea is full of water. + +b + +11 + +On that day the Root of Jesse will stand as a +banner for the peoples. The nations will seek +Him, +On + and His place of rest will be glorious. +that day the Lord will extend His hand a second +c +time to recover the remnant of His people from +d +Assyria, from Egypt, from Pathros, from Cush, + e +from Elam, from Shinar, +12 + of the sea. +the islands + + from Hamath, and from + +He will raise a banner for the nations +and gather the exiles of Israel; +He will collect the scattered of Judah +from the four corners of the earth. + + g + + f + +13 + +Then the jealousy of Ephraim + + will depart, + of Judah will be cut + +and the adversaries + +off. + +14 + +Ephraim will no longer envy Judah, +nor will Judah harass Ephraim. + +They will swoop down on the slopes of the + +Philistines to the west; + +together they will plunder the sons of the + +east. + +They will lay their hands on Edom and Moab, +and the Ammonites will be subject to + + h + +15 + +them. + i + +The LORD will devote to destruction + +the gulf + + of the Sea of Egypt; + +with a scorching wind He will sweep His + +j + +hand + +over the Euphrates. + +16 + +He will split it into seven streams + +for men to cross with dry sandals. +There will be a highway for the remnant + +of His people + +who remain from Assyria, + +as there was for Israel + +when they came up from the land + +Joyful Thanksgiving + +of Egypt. + +12 + +In that day you will say: + +“O LORD, I will praise You. + +Although You were angry with me, + +On that day the Root of Jesse will appear, One + +Your anger has turned away, + +b 10 +and You have comforted me. +c 11 +f 13 +the tongue + +; cited in Romans 15:12. + +the River + +LXX + +j 15 + +That is, the + +That is, the northern kingdom of Israel + +The infant will play by the cobra’s den, +and the toddler will reach into the + +a 6 +who will arise to rule over the Gentiles; in Him the Gentiles will put their hope + +the young calf and bull and lion will feed together + +viper’s nest. +d 11 + +Hebrew; LXX + +e 11 + +coastlands + +hostility +g 13 +upper Nile region + +h 15 + +will completely dry up +That is, Babylonia + +i 15 +Or + +Or + +Or + +Hebrew + +Hebrew + + 628 | Isaiah 12:2 + +2 + +Surely God is my salvation; + +I will trust and not be afraid. + +10 + +to make the earth a desolation + +and to destroy the sinners within it. + +For the LORD GOD is my strength and my + +For the stars of heaven and their + +3 + +song, + +and He also has become my salvation.” + +4 + +With joy you will draw water from the springs + +of salvation, + +and on that day you will say: + +“Give praise to the LORD; +proclaim His name! + +Make His works known among the peoples; +5 + +declare that His name is exalted. + +Sing to the LORD, for He has done glorious + +6 + +things. + +Let this be known in all the earth. + +Cry out and sing, O citizen of Zion, + +for great among you is the Holy One of + +The Burden against Babylon + +Israel.” + +13 + +2 + +This is the burden against Babylon that +Isaiah son of Amoz received: + +Raise a banner on a barren hilltop; + +call aloud to them. + +Wave your hand, +3 + +that they may enter the gates of the + +nobles. + +I have commanded My sanctified ones; +I have even summoned My warriors + +to execute My wrath +4 + +and exult in My triumph. + +Listen, a tumult on the mountains, +like that of a great multitude! + +Listen, an uproar among the kingdoms, +like nations gathered together! + +The LORD of Hosts is mobilizing +5 + +an army for war. + +They are coming from faraway lands, +from the ends of the heavens— + +the LORD and the weapons of His wrath— +6 + +to destroy the whole country. + +Wail, for the Day of the LORD is near; + +a + +7 + +it will come as destruction from the + +Almighty. + +Therefore all hands will fall limp, + +8 + +and every man’s heart will melt. + +Terror, pain, and anguish will seize them; +they will writhe like a woman in labor. + +9 + +They will look at one another, + +their faces flushed with fear. + +Behold, the Day of the LORD is coming— +cruel, with fury and burning anger— + +Shaddai + +Daughters of an ostrich + +b 21 + +a 6 + +Hebrew + +Literally + + or + +constellations +will not give their light. + +11 + +The rising sun will be darkened, + +and the moon will not give its light. + +I will punish the world for its evil + +and the wicked for their iniquity. +I will end the haughtiness of the arrogant +and lay low the pride of the ruthless. +I will make man scarcer than pure gold, + +12 + +13 + +and mankind rarer than the gold of Ophir. + +Therefore I will make the heavens tremble, + +and the earth will be shaken from its place + +14 + +at the wrath of the LORD of Hosts + +on the day of His burning anger. + +Like a hunted gazelle, + +15 + +like a sheep without a shepherd, +each will return to his own people, +each will flee to his native land. +Whoever is caught will be stabbed, + +16 + +and whoever is captured will die by + +the sword. + +Their infants will be dashed to pieces + +before their eyes, + +17 + +their houses will be looted, + +and their wives will be ravished. + +Behold, I will stir up against them the Medes, + +18 + +who have no regard for silver +and no desire for gold. + +Their bows will dash young men to pieces; + +they will have no mercy on the fruit of the + +womb; + +19 + +they will not look with pity on the + +children. + +And Babylon, the jewel of the kingdoms, + +the glory of the pride of the Chaldeans, + +20 + +will be overthrown by God + +like Sodom and Gomorrah. + +She will never be inhabited + +or settled from generation to generation; + +21 + +no nomad will pitch his tent there, + +no shepherd will rest his flock there. +But desert creatures will lie down there, + + b + +and howling creatures will fill her houses. + +22 + +Ostriches + + will dwell there, +and wild goats will leap about. +Hyenas will howl in her fortresses + + c + +and jackals + + in her luxurious palaces. + +Babylon’s time is at hand, + +Daughters of an owl + +c 22 + +serpents + +and her days will not be prolonged. +Or + + or + +dragons + + Restoration for Israel + +13 + +Isaiah 14:24 | 629 + +14 + +For the LORD will have compassion on +Jacob; once again He will choose Israel +and settle them in their own land. The foreigner +2 +will join them and unite with the house of Jacob. +The nations will escort Israel and bring it to its + +homeland. + +Then the house of Israel will possess the nations +as menservants and maidservants in the LORD’s +land. They will make captives of their captors +The Fall of the King of Babylon +and rule over their oppressors. +3 + +On the day that the LORD gives you rest from +your pain and torment, and from the hard +labor into which you were forced, +you will +sing this song of contempt against the king of +Babylon: + +4 + + a + +How the oppressor has ceased, + +5 + +and how his fury + + has ended! + +The LORD has broken the staff of the wicked, + +6 + +the scepter of the rulers. +It struck the peoples in anger +with unceasing blows; +it subdued the nations in rage +7 + +with relentless persecution. +All the earth is at peace and at rest; + + b + +8 + +they break out in song. + +Even the cypresses + + and cedars of + +Lebanon +exult over you: + +“Since you have been laid low, + +9 + +no woodcutter comes against us.” + +Sheol beneath is eager + +to meet you upon your arrival. + +It stirs the spirits of the dead to greet you— + +all the rulers of the earth. + +10 + +It makes all the kings of the nations + +rise from their thrones. + +They will all respond to you, saying, + +11 + +“You too have become weak, as we are; +you have become like us!” + +You said in your heart: + +“I will ascend to the heavens; + +I will raise my throne + +above the stars of God. + +d + +14 + +I will sit on the mount of assembly, +in the far reaches of the north. + +15 + +I will ascend above the tops of the clouds; +I will make myself like the Most High.” + +16 + +But you will be brought down to Sheol, + +to the lowest depths of the Pit. + +Those who see you will stare; +they will ponder your fate: + +17 + +“Is this the man who shook the earth +and made the kingdoms tremble, +who turned the world into a desert + +and destroyed its cities, +who refused to let the captives +return to their homes?” + +18 + +e + +19 + +All the kings of the nations lie in state, + +each in his own tomb. + +But you are cast out of your grave like a + +rejected branch, + +covered by those slain with the sword, + +20 + +and dumped into a rocky pit + +like a carcass trampled underfoot. + +You will not join them in burial, + +since you have destroyed your land +and slaughtered your own people. + +The offspring of the wicked + +21 + +will never again be mentioned. + +Prepare a place to slaughter his sons + +22 + +for the iniquities of their forefathers. +They will never rise up to possess a land +or cover the earth with their cities. + +“I will rise up against them,” + +declares the LORD of Hosts. + +“I will cut off from Babylon + +her name and her remnant, +her offspring and her posterity,” + +declares the LORD. + +23 + +“I will make her a place + +for owls and for swamplands; + +Your pomp has been brought down to Sheol, + +I will sweep her away + +along with the music of your harps. + +Maggots are your bed + +12 + +and worms your blanket. + +c + +24 + +God’s Purpose against Assyria + +with the broom of destruction,” +declares the LORD of Hosts. + +How you have fallen from heaven, + +O day star, + + son of the dawn! + +The LORD of Hosts has sworn: + +You have been cut down to the ground, + +the golden city + +b 8 + +pines + +junipers + +“Surely, as I have planned, so will it be; +morning star +as I have purposed, so will it stand. + +shining one + +c 12 + +firs + +Lucifer + +a 4 +d 13 + +O destroyer of nations. +in the remote parts of Zaphon + +DSS, LXX, and Syriac; MT + +Or + +on the heights of Zaphon + +Or + + or + +e 18 + or + +house +Or + + or + +Hebrew + + or + + or + + 630 | Isaiah 14:25 + +25 + +3 + +I will break Assyria in My land; + +I will trample him on My mountain. + +His yoke will be taken off My people, + +In its streets they wear sackcloth; + +4 + +on the rooftops and in the public squares +they all wail, falling down weeping. + +26 + +and his burden removed from their shoul- + +Heshbon and Elealeh cry out; + +ders.” + +This is the plan devised for the whole earth, +and this is the hand stretched out over all + +27 + +the nations. + +The LORD of Hosts has purposed, +and who can thwart Him? + +His hand is outstretched, +Philistia Will Be Destroyed + + can turn it back? + +so who + +28 + +In the year that King Ahaz died, this burden + +29 +was received: + +Do not rejoice, all you Philistines, + +that the rod that struck you is broken. +For a viper will spring from the root of the + +30 + +snake, + +and a flying serpent from its egg. + +Then the firstborn of the poor will find pas- + +ture, + +and the needy will lie down in safety, + +but I will kill your root by famine, +and your remnant will be slain. + +31 + +Wail, O gate! Cry out, O city! + +Melt away, all you Philistines! + +32 + +For a cloud of smoke comes from the north, +and there are no stragglers in its ranks. + +What answer will be given + +to the envoys of that nation? + +“The LORD has founded Zion, + +where His afflicted people will find +The Burden against Moab (Jeremiah 48:1–47) + +refuge.” + +15 + +This is the burden against Moab: + +Ar in Moab is ruined, + +2 + +destroyed in a night! +Kir in Moab is devastated, +destroyed in a night! +Dibon goes up to its temple + +to weep at its high places. + +Moab wails over Nebo, + +as well as over Medeba. + +Every head is shaved, + +a 5 + +every beard is cut off. +Zoar, like a heifer three years of age. + +b 7 + +Poplars + +Dibon + +Or + +Or + +wordplay on + + (see verse 2), sounds like the Hebrew for + +their voices are heard as far as Jahaz. + +Therefore the soldiers of Moab cry out; +5 + +their souls tremble within. + +My heart cries out over Moab; +a + +her fugitives flee as far as Zoar, +as far as Eglath-shelishiyah. + +With weeping they ascend the slope of + +Luhith; + +6 + +they lament their destruction on the road + +to Horonaim. + +The waters of Nimrim are dried up, + +and the grass is withered; + +the vegetation is gone, + +7 + +and the greenery is no more. + +b + +So they carry their wealth and belongings + +8 + +over the Brook of the Willows. + +For their outcry echoes to the border of + +Moab. + +9 + +Their wailing reaches Eglaim; +it is heard in Beer-elim. + + c + +The waters of Dimon + + are full of blood, +but I will bring more upon Dimon— + +a lion upon the fugitives of Moab + +Moab’s Destruction (Zephaniah 2:8–11) + +and upon the remnant of the land. + +16 + +Send the tribute lambs +to the ruler of the land, + + from Sela in the desert + +2 + +to the mount of Daughter Zion. + +Like fluttering birds + +pushed out of the nest, +so are the daughters of Moab +at the fords of the Arnon: + +3 + +“Give us counsel; + +render a decision. +Shelter us at noonday + +with shade as dark as night. + +Hide the refugees; + +4 + +do not betray the one who flees. + +Let my fugitives stay with you; + +be a refuge for Moab from the destroyer.” + +When the oppressor has gone, destruction + +has ceased, + +and the oppressors have vanished from +Dimon + +the land, + +Dibon + +c 9 +blood + +MT, twice in this verse; DSS and Vulgate +. + +; + +, a + + 5 + + a + +The Burden against Damascus (Jer. 49:23–27) + +Isaiah 17:11 | 631 + +in loving devotion + + a throne will be + +established +in the tent of David. + +A judge seeking justice and hastening + +6 + +righteousness + +will sit on it in faithfulness. + +We have heard of Moab’s pomposity, +his exceeding pride and conceit, + +his overflowing arrogance. + +7 + +But his boasting is empty. + +Therefore let Moab wail; + +let them wail together for Moab. + +Moan for the raisin cakes of Kir-hareseth, +8 + +you who are utterly stricken. + +For the fields of Heshbon have withered, +along with the grapevines of Sibmah. + +The rulers of the nations + +have trampled its choicest vines, + +which had reached as far as Jazer +and spread toward the desert. + +b +Their shoots had spread out +and passed over the sea. + +9 + +So I weep with Jazer + +for the vines of Sibmah; +I drench Heshbon and Elealeh + +with my tears. + +Triumphant shouts have fallen silent + +10 + +over your summer fruit and your harvest. + +Joy and gladness are removed from the + +orchard; + +no one sings or shouts in the vineyards. + +No one tramples the grapes in the + +11 + +winepresses; + +I have put an end to the cheering. + +Therefore my heart laments for Moab like a + +c + +12 + +harp, + +my inmost being for Kir-heres. + +When Moab appears on the high place, + +when he wearies himself +and enters his sanctuary to pray, + +13 + +it will do him no good. +14 + +This is the message that the LORD spoke +And now the LORD +earlier concerning Moab. +says, “In three years, as a hired worker counts +the years, Moab’s splendor will become an object +of contempt, with all her many people. And those +who are left will be few and feeble.” +a 5 + +chesed +love + +Forms of the Hebrew +b 8 +range of meaning includes +d 3 + +and had gone as far as the sea +, +The fortified city will disappear from Ephraim + +Or +Or + +17 + +This is the burden against Damascus: + +“Behold, Damascus is no longer + +2 + + a city; + +it has become a heap of ruins. +The cities of Aroer are forsaken; +they will be left to the flocks, +d +which will lie down with no one to fear. + +3 + +The fortress will disappear from Ephraim, +and the sovereignty from Damascus. + +The remnant of Aram will be + +like the splendor of the Israelites,” + +declares the LORD of Hosts. + +4 + +5 + +“In that day the splendor of Jacob will fade, +and the fat of his body will waste away, + +as the reaper gathers the standing grain +and harvests the ears with his arm, + +as one gleans heads of grain +6 +in the Valley of Rephaim. + +Yet gleanings will remain, + +like an olive tree that has been beaten— + +two or three berries atop the tree, + +declares the LORD, the God of Israel. + +four or five on its fruitful branches,” + +7 + +In that day men will look to their Maker +and turn their eyes to the Holy One of + +8 + +Israel. + +They will not look to the altars + +they have fashioned with their hands + +or to the Asherahs and incense altars +they have made with their fingers. + +9 + +In that day their strong cities + +will be like forsaken thickets and summits, + +10 + +abandoned to the Israelites +and to utter desolation. + +For you have forgotten the God of your + +salvation + +and failed to remember the Rock of your + +refuge. + +Therefore, though you cultivate delightful + +11 + +plots + +and set out cuttings from exotic vines— + +though on the day you plant +you make them grow, + +and on that morning + +you help your seed sprout— +loyalty to a covenant + +loving devotion + +kindness + +faithfulness + +goodness + are translated here and in most cases throughout the Scriptures as +, and +, +; that is, probably the Dead Sea + +mercy +c 11 Kir-heres + + is a variant of +, that is, from the northern kingdom of Israel + +, as well as + +, + +Kir-hareseth +. + +; the + +; see verse 7. + + 632 | Isaiah 17:12 + +yet the harvest will vanish + +12 + +from a people tall and smooth-skinned, + +on the day of disease and incurable pain. + +from a people widely feared, + +Alas, the tumult of + + many peoples; + +they rage like the roaring seas and + +clamoring nations; + +13 + +they rumble like the crashing of mighty + +waters. + +The nations rage like the rush of many + +waters. + +He rebukes them, and they flee far away, +driven before the wind like chaff on the hills, + +14 + +like tumbleweeds before a gale. +In the evening, there is sudden terror! +Before morning, they are no more! +This is the portion of those who loot us +and the lot of those who plunder us. + +A Message to Cush + +from a powerful nation of strange speech, +whose land is divided by rivers— + +to Mount Zion, the place of the Name of the LORD +The Burden against Egypt +of Hosts. + +19 + +This is the burden against Egypt: + +Behold, the LORD rides on a swift + + cloud; + +He is coming to Egypt. + +The idols of Egypt will tremble before Him, +and the hearts of the Egyptians will melt + +2 + +within them. + +a + +“So I will incite Egyptian against Egyptian; + +18 + +b + +2 + +Woe to the land of whirring wings, +along the rivers of Cush, +which sends couriers by sea, + +in papyrus vessels on the waters. + +Go, swift messengers, + +to a people tall and smooth-skinned, +to a people widely feared, + +to a powerful nation of strange speech, +3 +whose land is divided by rivers. + +All you people of the world + +and dwellers of the earth, + +when a banner is raised on the mountains, + +you will see it; + +4 + +when a ram’s horn sounds, + +you will hear it. + +For this is what the LORD has told me: + +“I will quietly look on from My dwelling place, +like shimmering heat in the sunshine, +like a cloud of dew in the heat of + +5 + +harvest.” + +For before the harvest, when the blossom is + +gone + +and the flower becomes a ripening grape, +He will cut off the shoots with a pruning knife +6 +and remove and discard the branches. +They will all be left to the mountain birds of + +prey, + +and to the beasts of the land. + +7 + +The birds will feed on them in summer, +and all the wild animals in winter. + +of many locusts + +At that time gifts will be brought to the LORD of +a 1 +Hosts— +Or + +That is, the upper Nile region + +b 1 + +brother will fight against brother, +neighbor against neighbor, +city against city, and kingdom against + +3 + +kingdom. + +Then the spirit of the Egyptians will be +emptied out from among them, + +and I will frustrate their plans, + +so that they will resort to idols and spirits of +4 + +the dead, + +to mediums and spiritists. + +I will deliver the Egyptians into the hands of a + +harsh master, + +and a fierce king will rule over them,” + +declares the Lord GOD of Hosts. + +5 + +The waters of the Nile will dry up, + +6 + +and the riverbed will be parched and + +empty. +The canals will stink; + +the streams of Egypt will trickle and dry + +7 + +up; + +the reeds and rushes will wither. + +The bulrushes by the Nile, + +by the mouth of the river, + +and all the fields sown along the Nile, +8 + +will wither, blow away, and be no more. + +Then the fishermen will mourn, + +all who cast a hook into the Nile will + +lament, + +9 + +and those who spread nets on the waters + +will pine away. + +The workers in flax will be dismayed, + +and the weavers of fine linen will turn + +pale. + + 10 + + a + +The workers in cloth + + will be dejected, + +11 + +and all the hired workers will be sick at + +to the LORD, and He will hear their prayers and +23 +heal them. + +Isaiah 21:3 | 633 + +heart. + +The princes of Zoan are mere fools; + +Pharaoh’s wise counselors give senseless + +advice. + +How can you say to Pharaoh, +“I am one of the wise, +a son of eastern kings”? +Where are your wise men now? +Let them tell you and reveal +what the LORD of Hosts has planned + +12 + +13 + +against Egypt. + + b + +The princes of Zoan have become fools; + +14 + +the princes of Memphis +The cornerstones of her tribes +have led Egypt astray. +The LORD has poured into her + + are deceived. + +a spirit of confusion. + +Egypt has been led astray in all she does, + +15 + +as a drunkard staggers through his own + +vomit. + +A Blessing upon the Earth + +There is nothing Egypt can do— +head or tail, palm or reed. + +16 + +17 + +In that day the Egyptians will be like women. +They will tremble with fear beneath the uplifted +hand of the LORD of Hosts, when He brandishes +The land of Judah will bring +it against them. +terror to Egypt; whenever Judah is mentioned, +Egypt will tremble over what the LORD of Hosts +18 +has planned against it. + +In that day five cities in the land of Egypt will +speak the language of Canaan and swear alle- +c +giance to the LORD of Hosts. One of them will be +19 +called the City of the Sun. + +20 + +In that day there will be an altar to the LORD +in the center of the land of Egypt, and a pillar to +the LORD near her border. +It will be a sign and +a witness to the LORD of Hosts in the land of +Egypt. When they cry out to the LORD because of +their oppressors, He will send them a savior and +The LORD will make +defender to rescue them. +Himself known to Egypt, and on that day Egypt +will acknowledge the LORD. They will worship +with sacrifices and offerings; they will make +22 +vows to the LORD and fulfill them. + +21 + +And the LORD will strike Egypt with a plague; +a 10 +He will strike them but heal them. They will turn +Destruction +Or + +Its pillars +d 3 + +LXX; Hebrew + +Noph + +b 13 + +c 18 + +In that day there will be a highway from Egypt +to Assyria. The Assyrians will go to Egypt, and +the Egyptians to Assyria. The Egyptians and As- +24 +syrians will worship together. + +25 + +In that day Israel will join a three-party +alliance with Egypt and Assyria—a blessing upon +The LORD of Hosts will bless them, +the earth. +saying, “Blessed be Egypt My people, Assyria My +A Sign against Egypt and Cush +handiwork, and Israel My inheritance.” + +20 + +Before the year that the chief com- +mander, sent by Sargon king of Assyria, +2 +came to Ashdod and attacked and captured it, +the LORD had already spoken through Isaiah +son of Amoz, saying, “Go, remove the sackcloth +from your waist and the sandals from your feet.” + +And Isaiah did so, walking around naked and +3 +barefoot. + +d + +4 + +Then the LORD said, “Just as My servant Isaiah +has gone naked and barefoot for three years as a +sign and omen against Egypt and Cush, +so the +king of Assyria will lead away the captives of +Egypt and the exiles of Cush, young and old alike, +naked and barefoot, with bared buttocks—to +5 +Egypt’s shame. + +6 + +Those who made Cush their hope and Egypt +And +their boast will be dismayed and ashamed. +on that day the dwellers of this coastland will +say, ‘See what has happened to our source of +hope, those to whom we fled for help and deliv- +erance from the king of Assyria! How then can we +Babylon Is Fallen (Revelation 18:1–8) +escape?’ + +” + +21 + +This is the burden against the Desert by +the Sea: + +Like whirlwinds sweeping through the Negev, +2 + +an invader comes from the desert, +from a land of terror. + +A dire vision is declared to me: +“The traitor still betrays, +and the destroyer still destroys. +Go up, O Elam! Lay siege, O Media! + +3 + +I will put an end to all her groaning.” + +Therefore my body is filled with anguish. + +Pain grips me, like the pains of a woman in + +City of + +labor. + +That is, the upper Nile region; similarly in verses 4 and 5 + +Some MT manuscripts, DSS, and Vulgate; most MT manuscripts + + 634 | Isaiah 21:4 + +I am bewildered to hear, +4 +I am dismayed to see. + +My heart falters; + +fear makes me tremble. + +The twilight I desired +5 + +has turned to horror. + +They prepare a table, they lay out a carpet, + +they eat, they drink! + + 6 + +Rise up, O princes, oil the shields! + +For this is what the Lord says to me: + +“Go, post a lookout + +7 + +and have him report what he sees. +When he sees chariots with teams of horse- + +men, + +8 + +riders on donkeys, riders on camels, + a +he must be alert, fully alert.” + +Then the lookout + + shouted: + +“Day after day, my lord, + +I stand on the watchtower; + +night after night +9 + +I stay at my post. + +Look, here come the riders, +horsemen in pairs.” + +And one answered, saying: + + b + +“Fallen, fallen is Babylon! + +10 + +All the images of her gods +lie shattered on the ground!” + +O my people, crushed on the threshing floor, + +I tell you what I have heard + +The Burden against Edom (Isaiah 34:5–17) + +from the LORD of Hosts, +the God of Israel. + +11 + + c + +This is the burden against Dumah: + +d + +One calls to me from Seir, + +12 + +“Watchman, what is left of the night? +Watchman, what is left of the night?” + +The watchman replies, + +“Morning has come, but also the night. + +If you would inquire, then inquire. + +The Burden against Arabia +Come back yet again.” + +13 + +This is the burden against Arabia: + +14 + +In the thickets of Arabia you must lodge, + +O caravans of Dedanites. +Bring water for the thirsty, +O dwellers of Tema; +b 9 +lion +meet the refugees with food. + +d 11 Seir + +a 8 +silence + +15 + +For they flee from the sword— +the sword that is drawn— + +from the bow that is bent, + +16 + +and from the stress of battle. + +17 + +For this is what the Lord says to me: “Within +one year, as a hired worker would count it, all the +glory of Kedar will be gone. +The remaining +archers, the warriors of Kedar, will be few.” +The Valley of Vision +For the LORD, the God of Israel, has spoken. + +22 + +This is the burden against the Valley of +Vision: + +What ails you now, +2 + +that you have all gone up to the rooftops, + +O city of commotion, +O town of revelry? + +Your slain did not die by the sword, +3 +nor were they killed in battle. +All your rulers have fled together, + +captured without a bow. + +All your fugitives were captured together, +4 + +having fled to a distant place. + +Therefore I said, + +“Turn away from me, let me weep bitterly! + +Do not try to console me + +5 + +over the destruction of the daughter + +of my people.” + +For the Lord GOD of Hosts has set a day + +of tumult and trampling and confusion in + +the Valley of Vision— +of breaking down the walls +6 + +and crying to the mountains. + +Elam takes up a quiver, with chariots and + +7 + +horsemen, + +and Kir uncovers the shield. + +8 + +Your choicest valleys are full of chariots, +and horsemen are posted at the gates. + +He has uncovered + +the defenses of Judah. + +9 + +10 + +On that day you looked to the weapons in the +You saw that there were +House of the Forest. +many breaches in the walls of the City of David. +You collected water from the lower pool. +You +counted the houses of Jerusalem and tore them +down to strengthen the wall. +You built a reser- +voir between the walls for the waters of the an- +cient pool, but you did not look to the One who +made it, or consider Him who planned it long ago. + +c 11 Dumah + +Edom + +11 + +DSS and Syriac; MT + +See Revelation 14:8 and Revelation 18:2. + + is a wordplay on + +, meaning + +. + + is another name for Edom. + + 12 + +The Burden against Tyre (Ezekiel 26:1–21) + +Isaiah 23:11 | 635 + +On that day the Lord GOD of Hosts +called for weeping and wailing, + +13 + +for shaven heads + +and the wearing of sackcloth. +But look, there is joy and gladness, + +butchering of cattle and slaughtering + +of sheep, + a + +eating of meat and drinking of wine: + +14 + +“Let us eat + + and drink, for tomorrow + +we die!” + +The LORD of Hosts has revealed in my hearing: + +“Until your dying day, + +says the Lord GOD of Hosts. +this sin of yours will never be atoned for,” + +A Message for Shebna + +15 + +16 + +This is what the Lord GOD of Hosts says: “Go, +say to Shebna, the steward in charge of the pal- +What are you doing here, and who author- +ace: +ized you to carve out a tomb for yourself here— +to chisel your tomb in the height and cut your +17 +resting place in the rock? + +Look, O mighty man! The LORD is about to +18 +shake you violently. He will take hold of you, +roll you into a ball, and sling you into a wide +land. There you will die, and there your glorious +chariots will remain—a disgrace to the house of +I will remove you from office, and +your master. +20 +you will be ousted from your position. + +19 + +21 + +On that day I will summon My servant, Eliakim +I will clothe him with your robe +son of Hilkiah. +and tie your sash around him. I will put your au- +thority in his hand, and he will be a father to the +22 +dwellers of Jerusalem and to the house of Judah. +I will place on his shoulder the key to the house +of David. What he opens no one can shut, and +I will drive +what he shuts no one can open. +him like a peg into a firm place, and he will be a +24 +throne of glory for the house of his father. + +23 + +b + +So they will hang on him all the glory of +his father’s house: the descendants and the off- +shoots—all the lesser vessels, from bowls to +25 +every kind of jar. + +In that day, declares the LORD of Hosts, the peg +driven into a firm place will give way; it will be +sheared off and fall, and the load upon it will be +cut down.” +a 13 +Indeed, the LORD has spoken. +d 1 + +b 22 +e 2 + +Kittim + +23 + +This is the burden against Tyre: + +c + +Wail, O ships of Tarshish, + +for Tyre is laid waste, +without house or harbor. +d + +Word has reached them + +2 + +from the land of Cyprus. + +Be silent, O dwellers of the coastland, + +e + +3 + +you merchants of Sidon, +whose traders have crossed the sea. + +On the great waters + +came the grain of Shihor; + +the harvest of the Nile was the revenue + +4 + +of Tyre; + +she was the merchant of the nations. +Be ashamed, O Sidon, the stronghold of + +the sea, + +for the sea has spoken: + + “I have not been in labor + +or given birth. + +I have not raised young men + +5 + +or brought up young women.” + +When the report reaches Egypt, + +6 + +they will writhe in agony over the news + +of Tyre. + +Cross over to Tarshish; + +7 + +wail, O inhabitants of the coastland! + +Is this your jubilant city, + +whose origin is from antiquity, + +8 + +whose feet have taken her +to settle far away? + +Who planned this against Tyre, +the bestower of crowns, +whose traders are princes, + +9 + +whose merchants are renowned on + +the earth? + +The LORD of Hosts planned it, + +10 + +to defile all its glorious beauty, +to disgrace all the renowned of the earth. + + f + +Cultivate + + your land like the Nile, + +11 + +O Daughter of Tarshish; +there is no longer a harbor. + +The LORD has stretched out His hand over + +the sea; + +He has made kingdoms tremble. + +He has given a command + +Cited in 1 Corinthians 15:32 + +Overflow +; also in verse 12 + +Hebrew +manuscripts; MT + +See Revelation 3:7. +DSS and LXX; MT + +Or + +that the strongholds of Canaan be +Wail, O fleet of trading ships + +c 1 + +whom the seafarers have enriched + +destroyed. + +f 10 + +; also in verse 14 + +DSS and some LXX + + 636 | Isaiah 23:12 + +12 + +6 + +He said, “You shall rejoice no more, + +O oppressed Virgin Daughter of Sidon. + +Therefore a curse has consumed the earth, +and its inhabitants must bear the guilt; + +13 + +Get up and cross over to Cyprus— + a + +even there you will find no rest.” + +Look at the land of the Chaldeans +a people now of no account. + +— + +The Assyrians destined it for the desert + +creatures; + +they set up their siege towers and + +14 + +stripped its palaces. +They brought it to ruin. + +Wail, O ships of Tarshish, + +15 + +for your harbor has been destroyed! + +At that time Tyre will be forgotten for seventy +years—the span of a king’s life. But at the end of +seventy years, it will happen to Tyre as in the +16 +song of the harlot: + +“Take up your harp, + +stroll through the city, +O forgotten harlot. + +Make sweet melody, +sing many a song, +so you will be remembered.” + +17 + +18 + +And at the end of seventy years, the LORD will +restore Tyre. Then she will return to hire as a +prostitute and sell herself to all the kingdoms on +Yet her profits and wages +the face of the earth. +will be set apart to the LORD; they will not be +stored or saved, for her profit will go to those +who live before the LORD, for abundant food and +God’s Judgment on the Earth +fine clothing. + +24 + + Behold, the LORD lays waste the earth +and leaves it in ruins. + +the earth’s dwellers have been burned, + +and only a few survive. + +The new wine dries up, the vine withers. +All the merrymakers now groan. +The joyful tambourines have ceased; +the noise of revelers has stopped; +the joyful harp is silent. + +They no longer sing and drink wine; +strong drink is bitter to those who + +7 + +8 + +9 + +10 + +consume it. + +11 + +The city of chaos is shattered; + +every house is closed to entry. +In the streets they cry out for wine. + +12 + +All joy turns to gloom; +rejoicing is exiled from the land. + +13 + +The city is left in ruins; + +its gate is reduced to rubble. + +So will it be on the earth + +and among the nations, +like a harvested olive tree, + +14 + +like a gleaning after a grape harvest. + + b + +They raise their voices, they shout for joy; + +15 + +from the west + + they proclaim the majesty + +of the LORD. + +Therefore glorify the LORD in the east. + +Extol the name of the LORD, the God of + + c + +16 + +Israel +in the islands + + of the sea. +From the ends of the earth we hear singing: + +“Glory to the Righteous One.” + +But I said, “I am wasting away! I am wasting + +away! +Woe is me.” + +He will twist its surface +2 + +and scatter its inhabitants— +people and priest alike, servant and + +master, + +3 + +maid and mistress, buyer and seller, +lender and borrower, creditor and debtor. + +17 + +The treacherous betray; + +the treacherous deal in treachery. + +18 + +Terror and pit and snare await you, + +O dweller of the earth. + +Whoever flees the sound of panic + +will fall into the pit, + +The earth will be utterly laid waste +and thoroughly plundered. + +For the LORD has spoken this word. + +and whoever climbs from the pit +will be caught in the snare. + +4 + +The earth mourns and withers; + +5 + +the world languishes and fades; +the exalted of the earth waste away. + +The earth is defiled by its people; + +they have transgressed the laws; + +they have overstepped the decrees + +from the sea +and broken the everlasting covenant. + +b 14 + +a 13 + +For the windows of heaven are open, + +19 + +and the foundations of the earth are + +shaken. + +The earth is utterly broken apart, + +20 + +the earth is split open, +the earth is shaken violently. +The earth staggers like a drunkard + +c 15 + +coastlands + +and sways like a shack. + +That is, the Babylonians + +Or + +Or + + 21 + +Earth’s rebellion weighs it down, +and it falls, never to rise again. + +22 + +In that day the LORD will punish +the host of heaven above +and the kings of the earth below. + +They will be gathered together + +like prisoners in a pit. + +23 + +They will be confined to a dungeon +and punished after many days. + +The moon will be confounded + +and the sun will be ashamed; +for the LORD of Hosts will reign + +on Mount Zion and in Jerusalem, +Praise to the Victorious God (Jer. 51:15–19) +and before His elders with great glory. + +25 + +O LORD, You are my God! + +I will exalt You; + +I will praise Your name. +For You have worked wonders— +plans formed long ago— +2 +in perfect faithfulness. + +Indeed, You have made the city a heap of + +rubble, + +the fortified town a ruin. + +The fortress of strangers is a city no more; +3 + +it will never be rebuilt. + +Therefore, a strong people will honor You. +The cities of ruthless nations will revere + +You. + +4 + +For You have been a refuge for the poor, +a stronghold for the needy in distress, + +a refuge from the storm, + +a shade from the heat. +For the breath of the ruthless +5 +is like rain against a wall, + +like heat in a dry land. + +Isaiah 26:8 | 637 + +and remove the disgrace of His people + +For the LORD has spoken. + +from the whole earth. + +9 + +And in that day it will be said, “Surely this is + +our God; + +we have waited for Him, and He has saved + +us. + +This is the LORD for whom we have waited. + +10 + +Let us rejoice and be glad in His + +salvation.” +For the hand of the LORD + +will rest on this mountain. + +11 + +But Moab will be trampled in his place + +as straw is trodden into the dung pile. + +He will spread out his hands within it, + +as a swimmer spreads his arms to swim. + + c + +12 + +His pride will be brought low, + +despite + + the skill of his hands. + +The high-walled fortress will be brought + +down, + +A Song of Salvation + +cast to the ground, into the dust. + +26 + +In that day this song will be sung in the +land of Judah: + +We have a strong city; +2 + +salvation is established as its walls and + +ramparts. + +Open the gates so a righteous nation may + +3 + +enter— + +one that remains faithful. + +You will keep in perfect peace the steadfast of + +4 + +mind, + +because he trusts in You. + +Trust in the LORD forever, + +5 + +because GOD the LORD is the Rock + +eternal. + +You subdue the uproar of foreigners. + +For He has humbled those who dwell + +As the shade of a cloud cools the heat, +6 + +so the song of the ruthless is silenced. + +On this mountain the LORD of Hosts + +will prepare a lavish banquet for all + +the peoples, + +a feast of aged wine, of choice meat, +7 + +of finely aged wine. + +On this mountain He will swallow up + +8 + +the shroud that enfolds all peoples, +the sheet that covers all nations; + +a + +He will swallow up death forever. + + b +The Lord GOD will wipe away the tears +He will swallow up death in victory +along with + +from every face + +a 8 +c 11 + +on high; + +He lays the lofty city low. +He brings it down to the ground; +He casts it into the dust. + +6 + +Feet trample it down— + +7 + +the feet of the oppressed, +the steps of the poor. + +The path of the righteous is level; + +8 + +You clear a straight path for the upright. + +Yes, we wait for You, O LORD; + +we walk in the path of Your judgments. + +Your name and renown + +b 8 + +are the desire of our souls. + +Or +Or + +; cited in 1 Corinthians 15:54 + +Cited in Revelation 7:17 and Revelation 21:4 + + 638 | Isaiah 26:9 + +9 + +a + +My soul longs for You in the night; + +indeed, my spirit seeks You at dawn. +For when Your judgments come upon the + +21 + +Hide yourselves a little while +until the wrath has passed. + +For behold, the LORD is coming out of His + +earth, + +10 + +the people of the world learn + +righteousness. + +dwelling + +to punish the inhabitants of the earth for + +their iniquity. + +Though grace is shown to the wicked man, + +he does not learn righteousness. + +The earth will reveal her bloodshed +The LORD’s Vineyard (John 15:1–8) + +and will no longer conceal her slain. + +11 + +In the land of righteousness he acts unjustly +and fails to see the majesty of the LORD. + +O LORD, Your hand is upraised, + +but they do not see it. + +They will see Your zeal for Your people + +and be put to shame. +The fire set for Your enemies + +12 + +will consume them! + +13 + +O LORD, You will establish peace for us. +For all that we have accomplished, +You have done for us. + +O LORD our God, other lords besides You + +14 + +have ruled over us, + +but Your name alone do we confess. + +The dead will not live; + +the departed spirits will not rise. + +Therefore You have punished and destroyed + +15 + +them; + +You have wiped out all memory of them. + +You have enlarged the nation, O LORD; + +You have enlarged the nation. +You have gained glory for Yourself; + +16 + +You have extended all the borders of the + +land. + +O LORD, they sought You in their distress; +when You disciplined them, they poured + +17 + +out a quiet prayer. + +As a woman with child about to give birth + +18 + +writhes and cries out in pain, +so were we in Your presence, O LORD. +We were with child; we writhed in pain; + +but we gave birth to wind. + +19 + +We have given no salvation to the earth, +nor brought any life into the world. + +Your dead will live; their bodies will rise. +Awake and sing, you who dwell in the + +dust! + +20 + +For your dew is like the dew of the morning, +and the earth will bring forth her dead. + +27 + +In that day the LORD will take His sharp, +great, and mighty sword, and bring judg- +—Levia- +ment on Leviathan the fleeing serpent +2 +than the coiling serpent—and He will slay the +dragon of the sea. +In that day: + 3 + + b + +“Sing about a fruitful vineyard. +I, the LORD, am its keeper; +I water it continually. + + 4 + +I guard it night and day + +so no one can disturb it; +I am not angry. + +If only thorns and briers confronted Me, +I would march and trample them, +5 +I would burn them to the ground. +Or let them lay claim to My protection; +let them make peace with Me— +yes, let them make peace with Me.” + +6 + +In the days to come, Jacob will take root. + +7 + +Israel will bud and blossom +and fill the whole world with fruit. + +Has the LORD struck Israel as He struck her + c + +oppressors? + +8 + +Was she killed like those who slayed her? + +By warfare and exile +her + + You contended with + +9 + +and removed her with a fierce wind, +as on the day the east wind blows. +Therefore Jacob’s guilt will be atoned for, + + d + +and the full fruit of the removal of his sin + +will be this: + +When he makes all the altar stones + +like crushed bits of chalk, +no Asherah poles or incense altars + +10 + +will remain standing. + +For the fortified city lies deserted— + +a homestead abandoned, a wilderness + +forsaken. + +There the calves graze, and there they lie + +Go, my people, enter your rooms + +down; + +my spirit within me seeks You. +and shut your doors behind you. +By driving her away into exile + +a 9 +c 8 +away, and this is his blessing when I take away his sin + +b 1 +Measure by measure, by exile + +they strip its branches bare. +d 9 +; translated in most cases as + +Hebrew + +nachash + +snake + +Therefore the guilt of Jacob will be taken + +; twice in this verse + +Or +Or + + or + +LXX +; cited in Romans 11:27 + + 11 + +8 + +Isaiah 28:17 | 639 + +When its limbs are dry, +they are broken off. + +Women come and use them for kindling; + +for this is a people without understanding. + +Therefore their Maker has no compassion + +12 + +on them, + +and their Creator shows them no favor. + + a + +13 + +In that day the LORD will thresh from the flow- + to the Wadi of Egypt, and you, O +ing Euphrates +Israelites, will be gathered one by one. +And in +that day a great ram’s horn will sound, and those +who were perishing in Assyria will come forth +with those who were exiles in Egypt. And they +will worship the LORD on the holy mountain in +The Captivity of Ephraim +Jerusalem. + +28 + + b + + Woe to the majestic crown of + +Ephraim’s + + drunkards, + +to the fading flower of his glorious + +splendor, + +2 + +set on the summit above the fertile valley, +the pride of those overcome by wine. + +Behold, the Lord has one + +who is strong and mighty. + +Like a hailstorm or destructive tempest, + +like a driving rain or flooding downpour, +he will smash that crown to the ground. +The majestic crown of Ephraim’s drunkards + +3 + +4 + +will be trampled underfoot. + +The fading flower of his beautiful splendor, + +set on the summit above the fertile valley, + +will be like a ripe fig before the summer + +harvest: + +5 + +Whoever sees it will take it in his hand + +and swallow it. + +On that day the LORD of Hosts will be a + +crown of glory, + +6 + +a diadem of splendor to the remnant of + +His people, + +a spirit of justice to him who sits in judgment, +and a strength to those who repel the + +16 + +7 + +onslaught at the gate. + +These also stagger from wine + +and stumble from strong drink: + +Priests and prophets reel from strong drink + +and are befuddled by wine. + +They stumble because of strong drink, + +muddled in their visions and stumbling in + +b 1 +their judgments. + +River +Do this, do that, a rule for this, a rule for that + +a 12 +For + +9 + +For all their tables are covered with vomit; + +there is not a place without filth. + +Whom is He trying to teach? + +To whom is He explaining His message? + +To infants just weaned from milk? + + c + +10 + +To babies removed from the breast? + +For they hear: + + d + +11 + +“Order on order, order on order, +line on line, line on line; +a little here, a little there.” + +Indeed, with mocking lips and foreign + + e + +12 + +tongues, + +He will speak to this people + +to whom He has said: + +“This is the place of rest, let the weary rest; + +this is the place of repose.” + +13 + +But they would not listen. + +Then the word of the LORD to them will + +become: + +“Order on order, order on order, +line on line, line on line; +a little here, a little there,” + +so that they will go stumbling backward +and will be injured, ensnared, and + +A Cornerstone in Zion +(1 Cor. 3:10–15 ; Eph. 2:19–22 ; 1 Peter 2:1–8) + +captured. + +14 + +Therefore hear the word of the LORD, + +15 + +O scoffers + +who rule this people in Jerusalem. + +For you said, “We have made a covenant with + +death; + +we have fashioned an agreement with + +Sheol. + +When the overwhelming scourge passes + +through + +it will not touch us, + + f + +because we have made lies our refuge + +and falsehood + + our hiding place.” + +So this is what the Lord GOD says: + +“See, I lay a stone in Zion, + +a tested stone, + +a precious cornerstone, a sure foundation; +the one who believes will never be + +g + +17 + +shaken. + +I will make justice the measuring line + +c 10 + +and righteousness the level. +sav lasav sav lasav kav lakav kav lakav +Or + or +e 11 + +For He says + +For it is + +; literally + +d 10 +Hebrew +Or +false gods + +That is, the northern kingdom of Israel; also in verse 3 + +will never be put to shame +f 15 +meaningless sounds to demonstrate an inability to understand); also in verse 13 + +g 16 + +; Hebrew + +Cited in 1 Corinthians 14:21 + + (possibly + +Or + +LXX + +; cited in Romans 9:33, Romans 10:11, and 1 Peter 2:6 + + 640 | Isaiah 28:18 + +28 + +18 + +Hail will sweep away your refuge of lies, + +Grain for bread must be ground, + +and water will flood your hiding place. +Your covenant with death will be dissolved, +and your agreement with Sheol will + +not stand. + +When the overwhelming scourge passes + +19 + +through, + +you will be trampled by it. +As often as it passes through, +it will carry you away; + +it will sweep through morning after morning, + +by day and by night.” + +20 + +The understanding of this message + +will bring sheer terror. + +Indeed, the bed is too short to stretch + +out on, + +21 + +and the blanket too small to wrap around + +you. + +For the LORD will rise up as at Mount + +Perazim. + +He will rouse Himself as in the Valley + +of Gibeon, + +to do His work, His strange work, + +22 + +and to perform His task, His disturbing + +task. + +So now, do not mock, + +or your shackles will become heavier. +Indeed, I have heard from the Lord GOD + +of Hosts + +a decree of destruction against the whole + +Listen and Hear + +land. + +23 + +24 + +Listen and hear my voice. + +Pay attention and hear what I say. +Does the plowman plow for planting every + +day? + +25 + +Does he continuously loosen and harrow + +the soil? + +but it is not endlessly threshed. + +29 + +Though the wheels of the cart roll over it, + +the horses do not crush it. + +This also comes from the LORD of Hosts, + +who is wonderful in counsel +Woe to David’s City (Luke 19:41–44) +and excellent in wisdom. + +a + +29 + +Woe to you, O Ariel, +the city of Ariel where David camped! + +Year upon year +2 + +let your festivals recur. +And I will constrain Ariel, + +and there will be mourning and + b + +3 + +lamentation; + +she will be like an altar hearth +I will camp in a circle around you; +I will besiege you with towers +and set up siege works against you. + +4 + + before Me. + +You will be brought low, + +you will speak from the ground, + +and out of the dust + +your words will be muffled. + +Your voice will be like a spirit from the + +5 + +ground; + +your speech will whisper out of the dust. + +But your many foes will be like fine dust, + +the multitude of the ruthless like blowing + + 6 + +chaff. + +Then suddenly, in an instant, + +you will be visited by the LORD of Hosts +with thunder and earthquake and loud noise, +7 + +with windstorm and tempest and +consuming flame of fire. + +All the many nations + +going out to battle against Ariel— + +even all who war against her, + +laying siege and attacking her— + +When he has leveled its surface, + +does he not sow caraway and scatter + +will be like a dream, +8 + +like a vision in the night, + +cumin? + +He plants wheat in rows and barley in plots, + +26 + +and rye within its border. + +27 + +For his God instructs + +and teaches him properly. + +Surely caraway is not threshed with a sledge, +and the wheel of a cart is not rolled over + +the cumin. + +But caraway is beaten out with a stick, +Lion of God + +a 1 + +Altar Hearth +and cumin with a rod. +like Ariel +b 2 + or + +Or +verse 7 + +Or + +; see the footnote for verse 1. + +as when a hungry man dreams he is eating, + +then awakens still hungry; + +as when a thirsty man dreams he is drinking, + +then awakens faint and parched. +So will it be for all the many nations + +who go to battle against Mount Zion. + +9 + +Stop and be astonished; + +blind yourselves and be sightless; + +be drunk, but not with wine; + +stagger, but not from strong drink. + +; probably a nickname for Jerusalem; twice in this verse, twice in verse 2, and once in + + 10 + +21 + +For the LORD has poured out on you + +those who indict a man with a word, + +a spirit of deep sleep. + +who ensnare the mediator at the gate, + +Isaiah 30:6 | 641 + +11 + +He has shut your eyes, O prophets; + +He has covered your heads, O seers. + +and who with false charges + +22 + +deprive the innocent of justice. + +And the entire vision will be to you like the +words sealed in a scroll. If it is handed to someone +12 +to read, he will say, “I cannot, because it is sealed.” +Or if the scroll is handed to one unable to read, + +13 +he will say, “I cannot read.” + +Therefore the LORD who redeemed Abraham + +says of the house of Jacob: + +23 + +“No longer will Jacob be ashamed + +and no more will his face grow pale. +For when he sees his children around him, + +Therefore the Lord said: + +“These people draw near to Me with their + +mouths + +and honor Me with their lips, +but their hearts are far from Me. + +a + +14 + +Their worship of Me is but rules taught by + +men. + +Therefore I will again confound these people + +with wonder upon wonder. +The wisdom of the wise will vanish, +b + +15 + +and the intelligence of the intelligent will + +be hidden. + +” + +Woe to those who dig deep + +16 + +to hide their plans from the LORD. +In darkness they do their works and say, +“Who sees us, and who will know?” +You have turned things upside down, + +as if the potter were regarded as clay. +Shall what is formed say to him who formed + + c + +it, + +“He did not make me”? + +Can the pottery say of the potter, +“He has no understanding”? + +Sanctification for the Godly + +17 + +In a very short time, + +18 + +will not Lebanon become an orchard, +and the orchard seem like a forest? +On that day the deaf will hear the words of + +the scroll, + +19 + +and out of the deep darkness the eyes of + +the blind will see. + +The humble will increase their joy in the + +LORD, + +20 + +and the poor among men will rejoice in + +the Holy One of Israel. + +For the ruthless will vanish, + +the mockers will disappear, + +the work of My hands, +they will honor My name, + +they will sanctify the Holy One of Jacob, + +24 + +and they will stand in awe +of the God of Israel. + +Then the wayward in spirit will come to + +understanding, + +and those who grumble will accept + +The Worthless Treaty with Egypt + +instruction.” + +30 + +“Woe to the rebellious children,” +declares the LORD, + +“to those who carry out a plan that is not + +Mine, + +2 + +who form an alliance, but against My will, +heaping up sin upon sin. +They set out to go down to Egypt +without asking My advice, + +to seek shelter under Pharaoh’s protection + +3 + +and take refuge in Egypt’s shade. + +But Pharaoh’s protection will become your + +shame, + +4 + +and the refuge of Egypt’s shade your + +disgrace. + +For though their princes are at Zoan + +5 + +and their envoys have arrived in Hanes, + +everyone will be put to shame + +because of a people useless to them. + +6 + +They bring neither help nor benefit, +but only shame and disgrace.” + +This is the burden against the beasts of the + +Negev: + +Through a land of hardship and distress, + +of lioness and lion, +of viper and flying serpent, + +they carry their wealth on the backs of + +donkeys + +and their treasures on the humps of + +and all who look for evil +will be cut down— + +a 13 + +camels, +They worship Me in vain; they teach as doctrine the precepts of men. + +I will destroy the wisdom of the wise, and will hide the intelligence of the intelligent. + +to a people of no profit to them. + + Cited in Matthew 15:8–9 and Mark + + Cited in + +b 14 +Hebrew; LXX + +c 16 +Hebrew; LXX + +7:6–7 +1 Corinthians 1:19 + +Cited in Romans 9:20 + + 642 | Isaiah 30:7 + +7 + +Egypt’s help is futile and empty; +therefore I have called her +Rahab Who Sits Still. + +a + +8 + +God Will Be Gracious + +18 + +Therefore the LORD longs to be gracious to + +you; + +Go now, write it on a tablet in their presence + +therefore He rises to show you compassion, + +and inscribe it on a scroll; +it will be for the days to come, +9 +a witness forever and ever. + +These are rebellious people, deceitful + +children, + +10 + +children unwilling to obey the LORD’s + +instruction. + +They say to the seers, + +“Stop seeing visions!” + +and to the prophets, + +“Do not prophesy to us the truth! + +11 + +Speak to us pleasant words; +prophesy illusions. + +12 + +Get out of the way; turn off the road. +Rid us of the Holy One of Israel!” + +Therefore this is what the Holy One of Israel + +says: + +“Because you have rejected this message, +trusting in oppression and relying on + +13 + +deceit, + +this iniquity of yours is like a breach about to + +fail, + +a bulge in a high wall, + +14 + +whose collapse will come suddenly— + +in an instant! + +It will break in pieces like a potter’s jar, +shattered so that no fragment can be + +found. + +Not a shard will be found in the dust + +large enough to scoop the coals from a + +15 + +hearth + +for the LORD is a just God. + +19 + +Blessed are all who wait for Him. + +20 + +O people in Zion who dwell in Jerusalem, you +will weep no more. He will surely be gracious +when you cry for help; when He hears, He will +The Lord will give you the bread +answer you. +of adversity and the water of affliction, but your +Teacher will no longer hide Himself—with your +21 +own eyes you will see Him. + +22 + +And whether you turn to the right or to the left, +your ears will hear this command behind you: +“This is the way. Walk in it.” +So you will dese- +crate your silver-plated idols and your gold- +plated images. You will throw them away like +23 +menstrual cloths, saying to them, “Be gone!” + +24 + +Then He will send rain for the seed that you +have sown in the ground, and the food that +comes from your land will be rich and plentiful. +On that day your cattle will graze in open pas- +The oxen and donkeys that work the +tures. +ground will eat salted fodder, winnowed with +25 +shovel and pitchfork. + +26 + +And from every high mountain and every +raised hill, streams of water will flow in the day +The +of great slaughter, when the towers fall. +light of the moon will be as bright as the sun, and +the light of the sun will be seven times brighter— +like the light of seven days—on the day that the +LORD binds up the brokenness of His people and +27 +heals the wounds He has inflicted. + +or to skim the water from a cistern.” + +Behold, the Name of the LORD comes + +For the Lord GOD, the Holy One of Israel, has + +said: + +“By repentance and rest +you would be saved; + +your strength would lie in quiet confidence— + +16 + +but you were not willing.” + +“No,” you say, “we will flee on horses.” + +Therefore you will flee! +“We will ride swift horses,” + +17 + +but your pursuers will be faster. +A thousand will flee at the threat of one; +at the threat of five you will all flee, +until you are left alone like a pole on a + +a 7 + +mountaintop, +Rahab-hem-shebeth +like a banner on a hill. + +Hebrew + +from afar, + +with burning anger and dense smoke. + +28 + +His lips are full of fury, + +and His tongue is like a consuming fire. + +His breath is like a rushing torrent + +that rises to the neck. + +He comes to sift the nations in a sieve of + +destruction; + +29 + +He bridles the jaws of the peoples to lead + +them astray. + +You will sing + +as on the night of a holy festival, + +and your heart will rejoice + +like one who walks to the music of a flute, + +going up to the mountain of the LORD, + +to the Rock of Israel. + + 30 + +5 + +And the LORD will cause His majestic voice to + +Like birds hovering overhead, + +Isaiah 32:7 | 643 + +be heard + +and His mighty arm to be revealed, +striking in angry wrath with a flame of + +consuming fire, + +and with cloudburst, storm, and + +hailstones. + +31 + +For Assyria will be shattered at the voice of + +32 + +the LORD; + +He will strike them with His scepter. + + a + +And with every stroke of the rod of + +punishment + +that the LORD brings down on them, + +33 + +the tambourines and lyres will sound + +as He battles with weapons brandished. + +For Topheth has long been prepared; + +it has been made ready for the king. + +Its funeral pyre is deep and wide, +with plenty of fire and wood. + +The breath of the LORD, like a torrent of + +burning sulfur, +Woe to Those Who Rely on Egypt + +sets it ablaze. + +31 + + Woe to those who go down to Egypt for + +help, + +who rely on horses, + +who trust in their abundance of chariots +and in their multitude of horsemen. +They do not look to the Holy One of Israel; +2 + +they do not seek the LORD. + +Yet He too is wise and brings disaster; +He does not call back His words. +He will rise up against the house of the +3 + +wicked + +and against the allies of evildoers. +But the Egyptians are men, not God; +their horses are flesh, not spirit. +When the LORD stretches out His hand, + +the helper will stumble, +and the one he helps will fall; +both will perish together. + +4 + +For this is what the LORD has said to me: + +“Like a lion roaring + +or a young lion over its prey— + +and though a band of shepherds is called out + +against it, + +it is not terrified by their shouting +or subdued by their clamor— + +so the LORD of Hosts will protect + +Jerusalem. + +6 + +He will shield it and deliver it; + +He will pass over it and preserve it.” +7 + +Return to the One against whom you have so +blatantly rebelled, O children of Israel. +For on +that day, every one of you will reject the idols of +silver and gold that your own hands have sinfully +8 +made. + +“Then Assyria will fall, + +but not by the sword of man; + +a sword will devour them, + +but not one made by mortals. +They will flee before the sword, +9 + +and their young men will be put to forced + +labor. + +Their rock will pass away for fear, + +and their princes will panic at the sight of + +the battle standard,” + +declares the LORD, whose fire is in Zion, + +A Righteous King + +whose furnace is in Jerusalem. + +32 + + Behold, a king will reign in + +2 + +righteousness, + +and princes will rule with justice. +Each will be like a shelter from the wind, + +a refuge from the storm, + +like streams of water in a dry land, + +3 + +like the shadow of a great rock in an arid + +land. + +Then the eyes of those who see will no longer + +4 + +be closed, + +and the ears of those who hear will listen. + +The mind of the rash will know and + +understand, + +5 + +and the stammering tongue will speak + +clearly and fluently. + +6 + +No longer will a fool be called noble, +nor a scoundrel be respected. + +For a fool speaks foolishness; +his mind plots iniquity. + +He practices ungodliness + +and speaks falsely about the LORD; + +he leaves the hungry empty + +7 + +and deprives the thirsty of drink. + +The weapons of the scoundrel are + +destructive; + +he hatches plots to destroy the poor with + +lies, + +the rod of His foundation +even when the plea of the needy is just. + +a 32 + +so the LORD of Hosts will come down + +to do battle on Mount Zion and its heights. + +the rod of foundation + +Some Hebrew manuscripts, Syriac; MT + +; DSS + + 644 | Isaiah 32:8 + +8 + +But a noble man makes honorable plans; + +The Women of Jerusalem + +he stands up for worthy causes. + +9 + +Stand up, you complacent women; + +listen to me. +Give ear to my word, + +10 + +you overconfident daughters. + +In a little more than a year you will tremble, + +O secure ones. + +For the grape harvest will fail + +11 + +and the fruit harvest will not arrive. + +Shudder, you ladies of leisure; + +tremble, you daughters of complacency. + +12 + +Strip yourselves bare + +and put sackcloth around your waists. +Beat your breasts for the pleasant fields, + +13 + +for the fruitful vines, + +and for the land of my people, + +overgrown with thorns and briers— + +even for every house of merriment + +14 + +in this city of revelry. + +7 + + a + +For the palace will be forsaken, +the busy city abandoned. + +The hill + + and the watchtower will become + +caves forever— + +15 + +the delight of wild donkeys +and a pasture for flocks— +until the Spirit is poured out +upon us from on high. + +16 + +Then the desert will be an orchard, + +and the orchard will seem like a forest. + +Then justice will inhabit the wilderness, + +17 + +and righteousness will dwell in the fertile + +field. + +The work of righteousness will be peace; + +the service of righteousness will be quiet + +11 + +confidence forever. + +18 + +20 + +Then my people will dwell in a peaceful + +19 + +place, + +in safe and secure places of rest. + +But hail will level the forest, + +and the city will sink to the depths. + +Blessed are those who sow beside abundant + +waters, + +The LORD Is Exalted + +who let the ox and donkey range freely. + +33 + + Woe to you, O destroyer never + +destroyed, +The Ophel + +a 14 + +b 4 O nations +O traitor never betrayed! +the cities + +d 8 + +covenant + +Hebrew + +as + +. + +DSS; MT + + is added for clarity. + +2 + +5 + +When you have finished destroying, + +you will be destroyed. + +When you have finished betraying, + +you will be betrayed. + +O LORD, be gracious to us! + +We wait for You. + +Be our strength every morning + +3 + +and our salvation in time of trouble. +The peoples flee the thunder of Your voice; +b +the nations scatter when You rise. + +4 + +Your spoil, O nations, +locusts; + + is gathered as by + +like a swarm of locusts men sweep over it. + +The LORD is exalted, for He dwells on high; + +6 + +He has filled Zion with justice and + +righteousness. + +He will be the sure foundation for your + +times, + +a storehouse of salvation, wisdom, and + +knowledge. + +The fear of the LORD is Zion’s treasure. + +Behold, their valiant ones cry aloud in the + +8 + +streets; + +the envoys of peace weep bitterly. + +The highways are deserted; + + c + +travel has ceased. + + d + + has been broken, + +The treaty +9 + +the witnesses +and human life is disregarded. +The land mourns and languishes; + + are despised, + +Lebanon is ashamed and decayed. + +Sharon is like a desert; + +10 + +Bashan and Carmel shake off their leaves. + +“Now I will arise,” says the LORD. + +“Now I will lift Myself up. Now I will be + +exalted. + +You conceive chaff; you give birth to stubble. +Your breath is a fire that will consume + +12 + +you. + +The peoples will be burned to ashes, + +13 + +like thorns cut down and set ablaze. +You who are far off, hear what I have done; +you who are near, acknowledge My + +14 + +might.” + +The sinners in Zion are afraid; + +trembling grips the ungodly: + +“Who of us can dwell with a consuming fire? +Who of us can dwell with everlasting + +c 8 + +flames?” +Forms of the Hebrew + +berit + + are translated in most passages + + 15 + +2 + +Isaiah 34:12 | 645 + +He who walks righteously + +and speaks with sincerity, +who refuses gain from extortion, + +whose hand never takes a bribe, + +16 + +who stops his ears against murderous plots +and shuts his eyes tightly against evil— + +he will dwell on the heights; + +the mountain fortress will be his refuge; + +17 + +his food will be provided +and his water assured. + +18 + +Your eyes will see the King in His beauty +and behold a land that stretches afar. +Your mind will ponder the former terror: + +“Where is he who tallies? Where is he who + +19 + +weighs? + +Where is he who counts the towers?” + +You will no longer see the insolent, + +a people whose speech is unintelligible, +who stammer in a language you cannot + +understand. + +20 + +Look upon Zion, + +the city of our appointed feasts. + +Your eyes will see Jerusalem, + +a peaceful pasture, a tent that does not + +wander; + +21 + +its tent pegs will not be pulled up, + +nor will any of its cords be broken. +But there the Majestic One, our LORD, + +will be for us a place of rivers and wide + +canals, + +22 + +where no galley with oars will row, +and no majestic vessel will pass. + +For the LORD is our Judge, + +the LORD is our lawgiver, + +the LORD is our King. + +23 + +It is He who will save us. + +Your ropes are slack; + +The LORD is angry with all the nations + a +and furious with all their armies. + +He will devote them to destruction; +3 + +He will give them over to slaughter. + +Their slain will be left unburied, + +4 + +and the stench of their corpses will rise; +the mountains will flow with their blood. + +All the stars of heaven will be dissolved. + +The skies will be rolled up like a scroll, + +and all their stars will fall + +like withered leaves from the vine, +Judgment on Edom (Isaiah 21:11–12) +like foliage from the fig tree. + +5 + +When My sword has drunk its fill in the + +heavens, + +then it will come down upon Edom, +upon the people I have devoted to + +6 + +destruction. + +The sword of the LORD is bathed in blood. + +It drips with fat— + +with the blood of lambs and goats, + +with the fat of the kidneys of rams. +For the LORD has a sacrifice in Bozrah, + +7 + +a great slaughter in the land of Edom. + +And the wild oxen will fall with them, + +the young bulls with the strong ones. +Their land will be drenched with blood, +8 +and their soil will be soaked with fat. + +For the LORD has a day of vengeance, + +b + +9 + +a year of recompense for the cause of + +Zion. + +Edom’s streams will be turned to tar, + +10 + +and her soil to sulfur; +her land will become a blazing pitch. + +It will not be quenched—day or night. +Its smoke will ascend forever. + +they cannot secure the mast or spread the + +From generation to generation it will lie + +sail. + +11 + +desolate; + +24 + +Then an abundance of spoils will be divided, +and even the lame will carry off plunder. +And no resident of Zion will say, “I am sick.” + +Judgment on the Nations + +The people who dwell there +will be forgiven of iniquity. + +no one will ever again pass through it. + +The desert owl and screech owl will +possess it, +c + +and the great owl and raven will + +dwell in it. + +34 + +Come near, O nations, to listen; +pay attention, O peoples. +Let the earth hear, and all that fills it, + +a 2 + +cherem +the world and all that springs from it. + +Forms of the Hebrew + +The LORD will stretch out over Edom + +12 + +a measuring line of chaos +and a plumb line of destruction. +No nobles will be left to proclaim a king, + +and all her princes will come to nothing. +b 8 + refer to the giving over of things or persons, either by destroying them or by giving them + +of recompense for (Edom’s) hostility against Zion. + +c 11 + +as an offering; also in verse 5. +these birds is uncertain. + +Or + +The precise identification of + + 646 | Isaiah 34:13 + +13 + +7 + +Her towers will be overgrown with thorns, +her fortresses with thistles and briers. + +a + +b + +She will become a haunt for jackals, + +14 + +an abode for ostriches. + c + +The desert creatures will meet with hyenas, +and one wild goat will call to another. + +There the night creature + +15 + + will settle + +and find her place of repose. +There the owl will make her nest; +she will lay and hatch her eggs +and gather her brood under her shadow. + +Even there the birds of prey will gather, + +16 + +each with its mate. + +Search and read the scroll of the LORD: + +Not one of these will go missing, +not one will lack her mate, + +17 + +because He has ordered it by His mouth, +and He will gather them by His Spirit. + +He has allotted their portion; + +His hand has distributed it by measure. + +They will possess it forever; + +they will dwell in it from generation + +The Glory of Zion + +to generation. + +35 + + The wilderness and the dry land will be + +glad; + +2 + +the desert will rejoice and blossom like a + +rose. + +It will bloom profusely + +and rejoice with joy and singing. +The glory of Lebanon will be given to it, +the splendor of Carmel and Sharon. + +They will see the glory of the LORD, + +3 + +5 + +the splendor of our God. + + d + +Strengthen the limp hands + +4 + +and steady the feeble knees! +Say to those with anxious hearts: + +“Be strong, do not fear! + +Behold, your God will come with vengeance. +With divine retribution He will come + +to save you.” + +6 + +Then the eyes of the blind will be opened +and the ears of the deaf unstopped. + +Then the lame will leap like a deer + +The parched ground will become a pool, +the thirsty land springs of water. + once lay, + +In the haunt where jackals + + e + +8 + +there will be grass and reeds and papyrus. + +And there will be a highway + +called the Way of Holiness. +The unclean will not travel it— + +9 + +only those who walk in the Way— +and fools will not stray onto it. + +No lion will be there, + +and no vicious beast will go up on it. + +Such will not be found there, + +10 + +but the redeemed will walk upon it. +So the redeemed of the LORD will return + +and enter Zion with singing, +crowned with everlasting joy. +Gladness and joy will overtake them, +Sennacherib Threatens Jerusalem +and sorrow and sighing will flee. +(2 Kings 18:13–37 ; 2 Chronicles 32:1–8) + +36 + +f + +In the fourteenth year of Hezekiah’s +reign, Sennacherib king of Assyria +2 +attacked and captured all the fortified cities of +And the king of Assyria sent the +Judah. + with a great army, from Lachish to +Rabshakeh, +King Hezekiah at Jerusalem. And he stopped by +the aqueduct of the upper pool, on the road to the +3 +Launderer’s Field. + +Then Eliakim son of Hilkiah the palace adminis- +trator, Shebna the scribe, and Joah son of Asaph +4 +the recorder, went out to him. + + g + +5 + +The Rabshakeh said to them, “Tell Hezekiah +that this is what the great king, the king of As- +syria, says: What is the basis of this confidence of + a strategy and +yours? +strength for war, but these are empty words. In +whom are you now trusting, that you have re- +6 +belled against me? + +You claim to have + +7 + +Look now, you are trusting in Egypt, that splin- +tered reed of a staff that will pierce the hand of +anyone who leans on it. Such is Pharaoh king of +But if you say to +Egypt to all who trust in him. +me, ‘We trust in the LORD our God,’ is He not the +One whose high places and altars Hezekiah has +removed, saying to Judah and Jerusalem, ‘You +c 14 +for daughters of an owl +must worship before this altar’? + +Lilith + +Rabshakeh + or + +g 5 + +Hebrew +You speak + +and the mute tongue will shout for joy. +For waters will gush forth in the wilderness, + +a 13 +d 3 + +dragons +serpents +and streams in the desert. + +b 13 +e 7 + +for daughters of an ostrich + +dragons + +f 2 + +serpents +Literally + +Or + + or +Cited in Hebrews 12:12 +I speak + +military officer; here and throughout chapters 36 and 37, as well as 2 Kings 18 and 19 +and 2 Kings 18:20; MT + +. + +Literally + +; see DSS + +Or + + or + +Hebrew + + is the title of a high-ranking Assyrian + + 8 + +22 + +Isaiah 37:11 | 647 + +Then Hilkiah’s son Eliakim the palace adminis- +trator, Shebna the scribe, and Asaph’s son Joah +the recorder came to Hezekiah with their clothes +torn, and they relayed to him the words of the +Isaiah’s Message of Deliverance +Rabshakeh. +(2 Kings 19:1–7) + +37 + +2 + +3 + +On hearing this report, King Hezekiah +tore his clothes, put on sackcloth, and en- +tered the house of the LORD. +And he sent Eli- +akim the palace administrator, Shebna the +scribe, and the leading priests, all wearing sack- +to tell +cloth, to the prophet Isaiah son of Amoz +him, “This is what Hezekiah says: Today is a day +of distress, rebuke, and disgrace; for children +have come to the point of birth, but there is no +Perhaps the LORD +strength to deliver them. +your God will hear the words of the Rabshakeh, +whom his master the king of Assyria has sent to +defy the living God, and He will rebuke him for +the words that the LORD your God has heard. +Therefore lift up a prayer for the remnant that +5 +still survives.” +6 + +4 + +So the servants of King Hezekiah went to Isaiah, +who replied, “Tell your master that this is what +the LORD says: ‘Do not be afraid of the words you +have heard, with which the servants of the king +of Assyria have blasphemed Me. +Behold, I will +put a spirit in him so that he will hear a rumor +and return to his own land, where I will cause +Sennacherib’s Blasphemous Letter +him to fall by the sword.’ +(2 Kings 19:8–13) + +” + +7 + +8 + +When the Rabshakeh heard that the king of As- +syria had left Lachish, he withdrew and found the +9 +king fighting against Libnah. + + c + +Now Sennacherib had been warned about Tir- + “He has set out to fight + +hakah king of Cush: +against you.” + +10 + +On hearing this, Sennacherib sent messengers to +Hezekiah, saying, +“Give this message to Heze- +kiah king of Judah: + +9 + +Now, therefore, make a bargain with my mas- +ter, the king of Assyria. I will give you two thou- +For +sand horses—if you can put riders on them! +how can you repel a single officer among the +least of my master’s servants when you depend +So now, +on Egypt for chariots and horsemen? +was it apart from the LORD that I have come up +against this land to destroy it? The LORD Himself +said to me, ‘Go up against this land and destroy +11 +it.’ + +” + +10 + + a + +Then Eliakim, Shebna, and Joah said to the +Rabshakeh, “Please speak to your servants in Ar- +amaic, since we understand it. Do not speak to us +in Hebrew + in the hearing of the people on the +12 +wall.” + +But the Rabshakeh replied, “Has my master +sent me to speak these words only to you and +your master, and not to the men sitting on the +wall, who are destined with you to eat their own +13 +dung and drink their own urine?” + +15 + +Then the Rabshakeh stood and called out +14 +loudly in Hebrew: “Hear the words of the great +king, the king of Assyria! +This is what the king +says: Do not let Hezekiah deceive you, for he can- +Do not let Hezekiah persuade +not deliver you. +you to trust in the LORD when he says, ‘The +LORD will surely deliver us; this city will not be +16 +given into the hand of the king of Assyria.’ + b + +Do not listen to Hezekiah, for this is what the +king of Assyria says: Make peace with me + and +come out to me. Then every one of you will eat +from his own vine and his own fig tree, and drink +until I come and +water from his own cistern, +take you away to a land like your own—a land of +grain and new wine, a land of bread and vine- +18 +yards. + +17 + +19 + +Do not let Hezekiah mislead you when he says, +‘The LORD will deliver us.’ Has the god of any na- +tion ever delivered his land from the hand of the +Where are the gods of Hamath +king of Assyria? +and Arpad? Where are the gods of Sepharvaim? +20 +Have they delivered Samaria from my hand? +Who among all the gods of these lands has de- +livered his land from my hand? How then can the +21 +LORD deliver Jerusalem from my hand?” + +But the people remained silent and did not an- +swer a word, for Hezekiah had commanded, “Do +a 11 +not answer him.” +d 11 + +in the dialect of Judah + +cherem + +b 16 + +; also in verse 13 + +Or + +Or +Forms of the Hebrew + +them as an offering. + +11 + + ‘Do not let your God, in whom you trust, de- +ceive you by saying that Jerusalem will not +be delivered into the hand of the king of As- +Surely you have heard what the +syria. +d +kings of Assyria have done to all the other +countries, devoting them to destruction. +That is, the upper Nile region + +c 9 + +Make a blessing with me + + refer to the giving over of things or persons, either by destroying them or by giving + + 648 | Isaiah 37:12 + +12 + +Did the gods of +Will you then be spared? +the nations destroyed by my fathers rescue +those nations—the gods of Gozan, Haran, +and Rezeph, and of the people of Eden + in +Telassar? +Where are the kings of Hamath, +Hezekiah’s Prayer (2 Kings 19:14–19) +Arpad, Sepharvaim, Hena, and Ivvah?’ + +13 + +” + +14 + +So Hezekiah received the letter from the mes- +sengers, read it, and went up to the house of the +And +LORD and spread it out before the LORD. +Hezekiah prayed to the LORD: + +15 + +16 + +“O LORD of Hosts, God of Israel, enthroned +above the cherubim, You alone are God over +17 +all the kingdoms of the earth. You made the +Incline Your ear, O +heavens and the earth. +LORD, and hear; open Your eyes, O LORD, +and see. Listen to all the words that Sennach- +18 +erib has sent to defy the living God. + +Truly, O LORD, the kings of Assyria have +19 +laid waste all these countries and their lands. +They have cast their gods into the fire and +destroyed them, for they were not gods, but +only wood and stone—the work of human +20 +hands. + +And now, O LORD our God, save us from +his hand, so that all the kingdoms of the earth +” +may know that You alone, O LORD, are God. + +Sennacherib’s Fall Prophesied +(2 Kings 19:20–34) + +a + +21 + +Then Isaiah son of Amoz sent a message to +Hezekiah: “This is what the LORD, the God of Is- +rael, says: Because you have prayed to Me con- +this is the +cerning Sennacherib king of Assyria, +word that the LORD has spoken against him: + +22 + +‘The Virgin Daughter of Zion + +despises you and mocks you; + +the Daughter of Jerusalem + +23 + +shakes her head behind you. + +Whom have you taunted and blasphemed? + +Against whom have you raised your voice + +24 + +and lifted your eyes in pride? + +Against the Holy One of Israel! + +to the heights of the mountains, + +to the remote peaks of Lebanon. + +b + +I have cut down its tallest cedars, +the finest of its cypresses. + +25 + +I have reached its farthest heights, + +the densest of its forests. + + c + +I have dug wells + +and drunk foreign +With the soles of my feet + + waters. + +26 + +I have dried up all the streams + +of Egypt.” + +Have you not heard? + +Long ago I ordained it; +in days of old I planned it. + +Now I have brought it to pass, +that you should crush fortified cities + +27 + +into piles of rubble. + +Therefore their inhabitants, devoid of power, + +are dismayed and ashamed. +They are like plants in the field, + +tender green shoots, + d + +grass on the rooftops, + +scorched + + before it is grown. + +28 + +But I know your sitting down, + +29 + +your going out and coming in, +and your raging against Me. + +Because your rage and arrogance against Me + +have reached My ears, + +I will put My hook in your nose +and My bit in your mouth; + +30 + +I will send you back + +the way you came.’ + +And this will be a sign to you, O Hezekiah: + +This year you will eat + +what grows on its own, + +and in the second year + +what springs from the same. + +But in the third year you will sow and reap; +you will plant vineyards and eat their + +31 + +fruit. + +And the surviving remnant of the house + +of Judah + +32 + +will again take root below +and bear fruit above. + +Through your servants you have taunted the + +For a remnant will go forth from + +Lord, + +and you have said: +“With my many chariots +I have ascended + +a 20 + +foreign + +Jerusalem, + +and survivors from Mount Zion. + +The zeal of the LORD of Hosts +junipers +will accomplish this. + +pines + +c 25 + +firs + +b 24 + +You alone are the LORD +d 27 + +DSS (see also 2 Kings 19:19); MT +. + +19:24); MT does not include +most MT manuscripts + +on the rooftops and terraced fields + +DSS (see also 2 Kings +DSS, some MT manuscripts, and some LXX manuscripts (see also 2 Kings 19:26); + + or + + or + +Or + + Isaiah 38:18 | 649 + +33 + +So this is what the LORD says about the king of + +Assyria: + +‘He will not enter this city + +or shoot an arrow into it. + +34 + +He will not come before it with a shield +or build up a siege ramp against it. + +shadow that falls on the stairway of Ahaz go back +ten steps.’ + +” + +So the sunlight went back the ten steps it had de- +Hezekiah’s Song of Thanksgiving +scended. +9 + +He will go back the way he came, +and he will not enter this city,’ + +declares the LORD. + +35 + +‘I will defend this city + +and save it +for My own sake + +Jerusalem Delivered from the Assyrians +and for the sake of My servant David.’ +(2 Kings 19:35–37 ; 2 Chronicles 32:20–23) + +” + +36 + +Then the angel of the LORD went out and +struck down 185,000 men in the camp of the As- +syrians. When the people got up + the next morn- +37 +ing, there were all the dead bodies! + + a + +38 + +So Sennacherib king of Assyria broke camp +and withdrew. He returned to Nineveh and +One day, while he was worship- +stayed there. +ing in the temple of his god Nisroch, his sons +Adrammelech and Sharezer put him to the sword +and escaped to the land of Ararat. And his son +Hezekiah’s Illness and Recovery +Esar-haddon reigned in his place. +(2 Kings 20:1–11 ; 2 Chronicles 32:24–31) + +38 + +In those days Hezekiah became mortally +ill. The prophet Isaiah son of Amoz came +to him and said, “This is what the LORD says: ‘Put +your house in order, for you are about to die; you +2 +will not recover.’ + +” + +3 + +Then Hezekiah turned his face to the wall and +saying, “Please, O LORD, re- +prayed to the LORD, +member how I have walked before You faithfully +and with wholehearted devotion; I have done +what is good in Your sight.” And Hezekiah wept +4 +bitterly. +5 + +And the word of the LORD came to Isaiah, say- +“Go and tell Hezekiah that this is what the +ing, +LORD, the God of your father David, says: ‘I have +heard your prayer; I have seen your tears. Be- +And I +hold, I will add fifteen years to your life. +will deliver you and this city from the hand of the +king of Assyria. I will defend this city. +This will +be a sign to you from the LORD that He will do +When they got up +b 6 +a 36 +I will make the sun’s +what He has promised: +d 13 +In the quiet + +In the middle + +7 + +6 + +8 + +b + +c 10 +Hebrew + +I cried out +MT and LXX; DSS includes + +This is a writing by Hezekiah king of Judah after + +10 +his illness and recovery: + + c + +I said, “In the prime + + of my life + +I must go through the gates of Sheol +and be deprived of the remainder of my + +11 + +years.” + +I said, “I will never again see the LORD, + +even the LORD, in the land of the living; + +12 + +I will no longer look on mankind + +with those who dwell in this world. + +My dwelling has been picked up and removed + +from me + +like a shepherd’s tent. + +I have rolled up my life like a weaver; +He cuts me off from the loom; +from day until night You make an end of + d + +13 + +me. +I composed myself + + until the morning. +Like a lion He breaks all my bones; +from day until night You make an end of + +14 + +15 + +me. + +I chirp like a swallow or crane; + +I moan like a dove. + +My eyes grow weak as I look upward. + +O Lord, I am oppressed; be my security.” + +What can I say? + +He has spoken to me, and He Himself has + +done this. + +I will walk slowly all my years + +16 + +because of the anguish of my soul. + +O Lord, by such things men live, + +and in all of them my spirit finds life. + +You have restored me to health + +17 + +and have let me live. +Surely for my own welfare + +I had such great anguish; + +but Your love has delivered me from + +the pit of oblivion, + +18 + +for You have cast all my sins behind Your + +back. + +For Sheol cannot thank You; +Death cannot praise You. +Those who descend to the Pit + +for My sake and for the sake of My servant David + +cannot hope for Your faithfulness. + +; see 2 Kings + +20:6. + +Or + + or + +Or + +; see Targum Yonaton. + + 650 | Isaiah 38:19 + +19 + +The living, only the living, can thank You, + +as I do today; + +20 + +fathers will tell their children +about Your faithfulness. + +The LORD will save me; + +we will play songs on stringed + +instruments + +all the days of our lives + +21 + +in the house of the LORD. + +Now Isaiah had said, “Prepare a lump of +pressed figs and apply it to the boil, and he will +22 +recover.” + +And Hezekiah had asked, “What will be the +Hezekiah Shows His Treasures +sign that I will go up to the house of the LORD?” +(2 Kings 20:12–19) + +39 + +At that time Merodach-baladan son of +Baladan king of Babylon sent letters and +2 +a gift to Hezekiah, for he had heard about Heze- +And Hezekiah wel- +kiah’s illness and recovery. +comed the envoys gladly and showed them what +was in his treasure house—the silver, the gold, +the spices, and the precious oil, as well as his +entire armory—all that was found in his store- +houses. There was nothing in his palace or in all +3 +his dominion that Hezekiah did not show them. + +Then the prophet Isaiah went to King Hezekiah +and asked, “Where did those men come from, and +what did they say to you?” + +“They came to me from a distant land,” Hezekiah +4 +replied, “from Babylon.” + +“What have they seen in your palace?” Isaiah + +asked. + +“They have seen everything in my palace,” an- +swered Hezekiah. “There is nothing among my +5 +treasures that I did not show them.” + +6 + +7 + +Then Isaiah said to Hezekiah, “Hear the word of +The time will surely come +the LORD of Hosts: +when everything in your palace and all that your +fathers have stored up until this day will be car- +ried off to Babylon. Nothing will be left, says the +And some of your descendants, your own +LORD. +flesh and blood, will be taken away to be eunuchs +8 +in the palace of the king of Babylon.” + +thought, “At least there will be peace and secu- +Prepare the Way for the LORD +rity in my lifetime.” +(Mt. 3:1–12 ; Mk. 1:1–8 ; Lk. 3:1–20 ; Jn. 1:19–28) + +40 + +2 + +“Comfort, comfort My people,” +says your God. + +“Speak tenderly to Jerusalem, + +and proclaim to her + +that her forced labor has been completed; + +her iniquity has been pardoned. +For she has received from the hand + +3 + +of the LORD + +double for all her sins.” + +A voice of one calling: + + a +“Prepare the way for the LORD in the +wilderness; +b + +4 + +make a straight highway for our God in + +the desert. + +Every valley shall be lifted up, + +and every mountain and hill made low; + +c + +the uneven ground will become smooth, +5 +d + +and the rugged land a plain. + +And the glory of the LORD will be revealed, +For the mouth of the LORD has spoken. +and all humanity together will see it.” + +The Enduring Word (1 Peter 1:22–25) + +6 + +A voice says, “Cry out!” + +And I asked, “What should I cry out?” + +“All flesh is like grass, +7 + +and all its glory like the flowers of the + +field. + +The grass withers and the flowers fall + +when the breath of the LORD blows + +8 + +on them; + +indeed, the people are grass. + + e + +The grass withers and the flowers fall, + +Here Is Your God! (Romans 11:33–36) + +but the word of our God stands forever.” + +9 + +Go up on a high mountain, + +O Zion, herald of good news. + +Raise your voice loudly, + +f + +O Jerusalem, herald of good news. + +Lift it up, + +do not be afraid! + +A voice of one calling in the wilderness: “Prepare the way for the LORD + +But Hezekiah said to Isaiah, “The word of +a 3 +the LORD that you have spoken is good.” For he +c 4 +shall be brought low. All the crooked ways shall become straight, and the rough places plains. +cited in Matthew 3:3, Mark 1:3, Luke 3:4, and John 1:23 +and all flesh together will see it. +on a high mountain. O herald of good news to Jerusalem, lift it up, + +Say to the cities of Judah, +“Here is your God!” +LXX +f 9 + +LXX + +b 3 + +e 8 + +Or + +make straight the paths of our God + +Every valley shall be filled in, and every mountain and hill +; + +d 5 + +O herald of good news to Zion, go up +Literally + + Cited in Luke 3:5 + + Cited in Luke 3:6 + +Cited in 1 Peter 1:24–25 + +Or + + 10 + +Behold, the Lord GOD comes with might, +and His arm establishes His rule. + +11 + +His reward is with Him, + +23 + +He stretches out the heavens like a curtain, +and spreads them out like a tent to dwell + d + +in. + +and His recompense accompanies Him. + +He brings the princes to nothing + +Isaiah 41:2 | 651 + +He tends His flock like a shepherd; + +He gathers the lambs in His arms +and carries them close to His heart. +He gently leads the nursing ewes. + +12 + +Who has measured the waters in the hollow + +of his hand, + +or marked off the heavens with the span + +of his hand? + +25 + +Who has held the dust of the earth in a + +basket, + +13 + +or weighed the mountains on a scale +a +and the hills with a balance? + + b + +14 + +Who has directed the Spirit of the LORD, +or informed Him as His counselor? +Whom did He consult to enlighten Him, + +and who taught Him the paths of justice? + +Who imparted knowledge to Him +and showed Him the way of + +15 + +understanding? + +Surely the nations are like a drop in a bucket; +they are considered a speck of dust on the + c + +16 + +scales; + +He lifts up the islands + + like fine dust. + +Lebanon is not sufficient for fuel, + +17 + +nor its animals enough for a burnt + +offering. + +All the nations are as nothing before Him; +He regards them as nothingness and + +18 + +emptiness. + +19 + +To whom will you liken God? + +To what image will you compare Him? + +To an idol that a craftsman casts + +20 + +and a metalworker overlays with gold +and fits with silver chains? + +One lacking such an offering chooses wood + +that will not rot. + +He seeks a skilled craftsman to set up an idol + +21 + +that will not topple. + +Do you not know? + +Have you not heard? + +Has it not been declared to you from the + +beginning? + +22 + +Have you not understood since the + +foundation of the earth? +He sits enthroned above the circle of the + +earth; +mind of the LORD +its dwellers are like grasshoppers. +coastlands +judges + +b 13 + +e 1 + +a 13 +d 23 + +Or +Or + +; see also LXX. + +Or + +; also in verse 5 + +Or + +24 + +and makes the rulers +meaningless. + + of the earth + +No sooner are they planted, no sooner are + +they sown, + +no sooner have their stems taken root in + +the ground, + +than He blows on them and they wither, + +and a whirlwind sweeps them away like + +stubble. + +26 + +“To whom will you liken Me, + +or who is My equal?” asks the Holy One. + +Lift up your eyes on high: +Who created all these? + +He leads forth the starry host by number; + +He calls each one by name. + +Because of His great power and mighty + +27 + +strength, + +not one of them is missing. + +Why do you say, O Jacob, + +and why do you assert, O Israel, +“My way is hidden from the LORD, + +28 + +and my claim is ignored by my God”? + +Do you not know? + +Have you not heard? + +The LORD is the everlasting God, + +the Creator of the ends of the earth. + +He will not grow tired or weary; + +29 + +His understanding is beyond searching + +out. + +30 + +He gives power to the faint + +and increases the strength of the weak. + +31 + +Even youths grow tired and weary, +and young men stumble and fall. +But those who wait upon the LORD will + +renew their strength; + +they will mount up with wings like eagles; + +God’s Help to Israel + +they will run and not grow weary, +they will walk and not faint. + +e + +41 + +“Be silent before Me, O islands, +and let the peoples renew their + + strength. + +Let them come forward and testify; + +2 + +let us together draw near for judgment. + +Who has aroused one from the east +and called him to his feet in + +  f + +c 15 + +coastlands + +? +Cited in Romans 11:34 and 1 Corinthians 2:16 + +from the east, whom victory meets at every step + +righteousness + +Or + +f 2 + + 652 | Isaiah 41:3 + +He hands nations over to him + +and subdues kings before him. +He turns them to dust with his sword, +to windblown chaff with his bow. + +3 + +He pursues them, going on safely, + +4 + +hardly touching the path with his feet. +Who has performed this and carried it out, +calling forth the generations from the + +beginning? + +You will thresh the mountains and crush + +16 + +them, + +and reduce the hills to chaff. + +You will winnow them, and a wind will carry + +them away; + +a gale will scatter them. + +But you will rejoice in the LORD; + +17 + +you will glory in the Holy One of Israel. + +The poor and needy seek water, but there is + +I, the LORD—the first and the last— +5 + +none; + +I am He.” + +The islands see and fear; + +6 + +the ends of the earth tremble. +They approach and come forward. + +Each one helps the other + +7 + +and says to his brother, “Be strong!” +The craftsman encourages the goldsmith, + +and he who wields the hammer +cheers him who strikes the anvil, + +saying of the welding, “It is good.” + +8 + +He nails it down so it will not be toppled. + +9 + +“But you, O Israel, My servant, +Jacob, whom I have chosen, +descendant of Abraham My friend— +I brought you from the ends of the earth + +their tongues are parched with thirst. + +18 + +I, the LORD, will answer them; + +I, the God of Israel, will not forsake them. + +I will open rivers on the barren heights, + +and fountains in the middle of the valleys. + +19 + +I will turn the desert into a pool of water, +and the dry land into flowing springs. + +I will plant cedars in the wilderness, + a +acacias, myrtles, and olive trees. + +20 + +I will set cypresses + + in the desert, + +elms and boxwood together, + +so that all may see and know, + +may consider and understand, + +that the hand of the LORD has done this + +and the Holy One of Israel has + +Meaningless Idols + +created it.” + +and called you from its farthest corners. + +21 + +I said, ‘You are My servant.’ + +10 + +I have chosen and not rejected you. + +Do not fear, for I am with you; + +do not be afraid, for I am your God. +I will strengthen you; I will surely help you; +I will uphold you with My righteous right + +11 + +hand. + +Behold, all who rage against you + +will be ashamed and disgraced; + +12 + +those who contend with you + +“Present your case,” says the LORD. + +22 + +“Submit your arguments,” says the King of + +Jacob. + +“Let them come and tell us what will happen. + +Tell the former things, + +so that we may reflect on them and know the + +23 + +outcome. + +Or announce to us what is coming. + +Tell us the things that are to come, + +so that we may know that you are gods. + +will be reduced to nothing and will perish. + +24 + +Yes, do something good or evil, + +You will seek them but will not find them. +Those who wage war against you will + +13 + +come to nothing. +For I am the LORD your God, + +who takes hold of your right hand + +14 + +and tells you: Do not fear, + +I will help you. + +Do not fear, O Jacob, you worm, + +O few men of Israel. + +15 + +I will help you,” declares the LORD. + +that we may look on together in dismay. + +Behold, you are nothing + +25 + +and your work is of no value. +Anyone who chooses you is detestable. + +I have raised up one from the north, and he + +has come— + +one from the east who calls on My name. + +He will march over rulers as if they were + +26 + +mortar, + +like a potter who treads the clay. + +“Your Redeemer is the Holy One of Israel. + +Who has declared this from the beginning, + +Behold, I will make you into a threshing + +sledge, + +a 19 + +new and sharp, with many teeth. +pines + +junipers + +firs + +so that we may know, + +and from times past, + +so that we may say: ‘He was right’? + +Or + + or + + or + + No one announced it, no one foretold it, + +27 + +no one heard your words. + + a + +I was the first to tell Zion: +‘Look, here they are!’ +And I gave to Jerusalem + +28 + +a herald of good news. +When I look, there is no one; + +there is no counselor among them; + +29 + +when I ask them, + +they have nothing to say. +See, they are all a delusion; + +their works amount to nothing; +Here Is My Servant (Matthew 12:15–21) +their images are as empty as the wind. + +42 + +“Here is My Servant, whom I uphold, +My Chosen One, in whom My soul + + delights. + +I will put My Spirit on Him, +2 + +and He will bring justice to the nations. + +He will not cry out or raise His voice, + +3 + +nor make His voice heard in the streets. + +A bruised reed He will not break + +and a smoldering wick He will not + +4 + +extinguish; + + b +He will faithfully bring forth justice. + +He will not grow weak or discouraged + +before He has established justice on + +the earth. + + c + +In His law the islands will put their + +hope.” + +5 + +This is what God the LORD says— +He who created the heavens + +and stretched them out, + +who spread out the earth and its offspring, + +who gives breath to the people on it +6 +and life to those who walk in it: + +“I, the LORD, have called you +for a righteous purpose, +and I will take hold of your hand. + +I will keep you and appoint you + +to be a covenant for the people +7 +and a light to the nations, +to open the eyes of the blind, + +to bring prisoners out of the dungeon + +8 + +and those sitting in darkness +out from the prison house. + +Isaiah 42:19 | 653 + +I will not yield My glory to another +9 + +or My praise to idols. + +Behold, the former things have happened, + +and now I declare new things. + +Before they spring forth + +A New Song of Praise (Ps. 98:1–9 ; Ps. 149:1–9) + +I proclaim them to you.” + +10 + +Sing to the LORD a new song— + +His praise from the ends of the earth— +you who go down to the sea, and all that is + +d + +11 + +in it, +you islands, + + and all who dwell in them. + +Let the desert and its cities raise their voices; + +let the villages of Kedar cry aloud. + +Let the people of Sela sing for joy; + +12 + +let them cry out from the mountaintops. + +Let them give glory to the LORD + +13 + +and declare His praise in the islands. +The LORD goes forth like a mighty one; +He stirs up His zeal like a warrior. + +He shouts; yes, He roars + +14 + +in triumph over His enemies: + +“I have kept silent from ages past; + +I have remained quiet and restrained. +But now I will groan like a woman in labor; + +15 + +I will at once gasp and pant. + +I will lay waste the mountains and hills + e +and dry up all their vegetation. + +I will turn the rivers into dry land + +16 + +and drain the marshes. + +I will lead the blind by a way they did not + +know; + +I will guide them on unfamiliar paths. +I will turn darkness into light before them +and rough places into level ground. + +17 + +These things I will do for them, +and I will not forsake them. + +But those who trust in idols + +and say to molten images, ‘You are our + +gods!’ +Israel Is Deaf and Blind + +will be turned back in utter shame. + +18 + +Listen, you deaf ones; + +19 + +look, you blind ones, that you may see! + +Who is blind but My servant, + +or deaf like the messenger I am sending? + +Who is blind like My covenant partner, + +I am the LORD; + +that is My name! +Formerly I said to Zion: + +a 27 +nations will put their hope + +Or + +b 4 + +bruised + +c 4 + +In His teaching the coastlands will put their hope + +or blind like the servant of the LORD? + +In His name the + +Or + +Or + +d 10 + +coastlands + +e 15 + +coastlands +; LXX + +islands + +; cited in Matthew 12:18–21 + +Or + +; also in verse 12 + +Or + + or + + 654 | Isaiah 42:20 + +20 + +5 + +Though seeing many things, you do not keep + +Do not be afraid, for I am with you; + +watch. + +Though your ears are open, you do not + +hear.” + +21 + +The LORD was pleased, for the sake of His + +22 + +righteousness, + +to magnify His law and make it glorious. + +But this is a people plundered and looted, +all trapped in caves or imprisoned in + +dungeons. + +They have become plunder with no one to + +rescue them, + +23 + +and loot with no one to say, “Send them + +back!” + +24 + +Who among you will pay attention to this? +Who will listen and obey hereafter? + +Who gave Jacob up for spoil, + +and Israel to the plunderers? + +Was it not the LORD, + +against whom we have sinned? + +25 + +They were unwilling to walk in His ways, +and they would not obey His law. + +So He poured out on them His furious anger + +and the fierceness of battle. + +It enveloped them in flames, + +but they did not understand; + +it consumed them, +Israel’s Only Savior + +but they did not take it to heart. + +43 + +But now, this is what the LORD says— +He who created you, O Jacob, +and He who formed you, O Israel: + +“Do not fear, for I have redeemed you; +2 + +I have called you by your name; you are + +Mine! + +When you pass through the waters, + +I will be with you; + +and when you go through the rivers, +they will not overwhelm you. +When you walk through the fire, +you will not be scorched; +the flames will not set you ablaze. + +3 + +For I am the LORD your God, + +the Holy One of Israel, your Savior; + + a + +I give Egypt for your ransom, + +4 + +Cush + + and Seba in your place. +Because you are precious and honored in My + +sight, + +and because I love you, + +a 3 + +I will give men in exchange for you +and nations in place of your life. + +b 14 + +6 + +I will bring your offspring from the east +and gather you from the west. +I will say to the north, ‘Give them up!’ + +and to the south, ‘Do not hold them back!’ + +Bring My sons from afar, + +7 + +and My daughters from the ends of the + +earth— + +everyone called by My name and created for + +8 + +My glory, + +whom I have indeed formed and made.” + +Bring out a people who have eyes but are + +9 + +blind, + +and who have ears but are deaf. + +All the nations gather together +and the peoples assemble. +Who among them can declare this, + +and proclaim to us the former things? +Let them present their witnesses to vindicate + +them, + +so that others may hear and say, “It is + +true.” + +10 + +“You are My witnesses,” declares the LORD, +“and My servant whom I have chosen, +so that you may consider and believe Me + +and understand that I am He. + +11 + +Before Me no god was formed, + +and after Me none will come. + +12 + +I, yes I, am the LORD, + +and there is no Savior but Me. + +I alone decreed and saved and proclaimed— +I, and not some foreign god among you. + +So you are My witnesses,” declares the + +13 + +LORD, +“that I am God. + +Even from eternity I am He, + +A Way in the Wilderness + +and none can deliver out of My hand. +When I act, who can reverse it?” + +14 + +Thus says the LORD your Redeemer, + +the Holy One of Israel: + +“For your sake, I will send to Babylon +and bring them all as fugitives, + +b + +15 + +even the Chaldeans, + +in the ships in which they rejoice. + +I am the LORD, your Holy One, + +16 + +the Creator of Israel, and your King.” + +Thus says the LORD, who makes a way in the + +sea + +and a path through the surging waters, + +That is, the upper Nile region + +That is, the Babylonians + + 17 + +The LORD Has Chosen Israel + +Isaiah 44:11 | 655 + +who brings out the chariots and horses, +the armies and warriors together, + +to lie down, never to rise again; + +18 + +to be extinguished, snuffed out like + +a wick: + +19 + +“Do not call to mind the former things; +pay no attention to the things of old. +Behold, I am about to do something new; + +even now it is coming. Do you not see it? +Indeed, I will make a way in the wilderness + +20 + +and streams in the desert. + + a + +b + +The beasts of the field will honor Me, + +the jackals + + and the ostriches, + +because I provide water in the wilderness + +21 + +and rivers in the desert, +to give drink to My chosen people. + +The people I formed for Myself +Israel’s Unfaithfulness +will declare My praise. +(Judges 2:10–15 ; Jeremiah 2:23–37) + +22 + +But you have not called on Me, O Jacob, + +23 + +because you have grown weary of Me, + +O Israel. + +You have not brought Me sheep for burnt + +offerings, + +24 + +nor honored Me with your sacrifices. +I have not burdened you with offerings, +nor wearied you with frankincense. +You have not bought Me sweet cane with + +your silver, + +nor satisfied Me with the fat of your + +sacrifices. + +But you have burdened Me with your sins; + +25 + +you have wearied Me with your iniquities. + +I, yes I, am He + +who blots out your transgressions + +26 + +for My own sake + +and remembers your sins no more. + +Remind Me, let us argue the matter together. + +27 + +State your case, so that you may be + +vindicated. +Your first father sinned, + +28 + +and your spokesmen rebelled against Me. + +So I will disgrace the princes of your + + c + +sanctuary, + +44 + +2 + +But now listen, O Jacob My servant, +Israel, whom I have chosen. + +This is the word of the LORD, your Maker, + +who formed you from the womb and who + +will help you: +d + +“Do not be afraid, O Jacob My servant, + +3 + +Jeshurun, + + whom I have chosen. + +For I will pour water on the thirsty land, +and currents on the dry ground. + +I will pour out My Spirit on your descendants, + +4 + +and My blessing on your offspring. + + e + +They will sprout among the grass + +5 + +like willows + + by flowing streams. +One will say, ‘I belong to the LORD,’ + +another will call himself by the name + +of Jacob, + +and still another will write on his hand, ‘The + +6 + +LORD’s,’ + +and will take the name of Israel.” + +Thus says the LORD, + +the King and Redeemer of Israel, the LORD + +of Hosts: + +7 + + “I am the first and I am the last, +and there is no God but Me. + +Who then is like Me? +Let him say so! + +Let him declare his case before Me, + +since I established an ancient people. + +Let him foretell the things to come, + +8 + +and what is to take place. + +Do not tremble or fear. + +Have I not told you and declared it + +long ago? +You are My witnesses! + +Is there any God but Me? + +9 + +There is no other Rock; +I know not one.” + +All makers of idols are nothing, + +and the things they treasure are + +worthless. + +Their witnesses fail to see or comprehend, + +10 + +so they are put to shame. + +11 + +Who fashions a god or casts an idol +which profits him nothing? + +Behold, all his companions will be put to + +shame, + +a 20 + +and I will devote Jacob to destruction +serpents +cherem + +and Israel to reproach.” + +dragons + +b 20 + +and daughters of an ostrich + +for the craftsmen themselves are only + +and daughters of an owl +human. + +c 28 + + or +d 2 Jeshurun + refer to the giving over of things or persons to the LORD, either by destroying them or by giving them as an + +the upright one + +Forms of the + +Literally + +poplars + + or + +e 4 + + means + +, a term of endearment for Israel. + +Or + +Or +Hebrew +offering. + + 656 | Isaiah 44:12 + +Let them all assemble and take their stand; +they will all be brought to terror and + +12 + +shame. + +The blacksmith takes a tool + +and labors over the coals; +he fashions an idol with hammers + +and forges it with his strong arms. + +13 + +Yet he grows hungry and loses his strength; +he fails to drink water and grows faint. +The woodworker extends a measuring line; + +he marks it out with a stylus; + +he shapes it with chisels + +and outlines it with a compass. +He fashions it in the likeness of man, + +14 + +like man in all his glory, +that it may dwell in a shrine. + + a + +He cuts down cedars + +or retrieves a cypress + + or oak. + +Shall I make something detestable with the + +20 + +rest of it? + +Shall I bow down to a block of wood?” + +He feeds on ashes. + +His deluded heart has led him astray, + +and he cannot deliver himself or say, +“Is not this thing in my right hand + +Jerusalem to Be Restored +a lie?” + +21 + +Remember these things, O Jacob, + +for you are My servant, O Israel. + +I have made you, and you are My servant; + +22 + +O Israel, I will never forget you. + +I have blotted out your transgressions like a + +cloud, + +23 + +and your sins like a mist. +Return to Me, for I have redeemed you. + +Sing for joy, O heavens, for the LORD has + +He lets it grow strong among the trees of the + +done this; + +forest. + +15 + +He plants a laurel, and the rain makes it + +grow. + +It serves as fuel for man. + +He takes some of it to warm himself, + +shout aloud, O depths of the earth. + +Break forth in song, O mountains, +you forests and all your trees. +For the LORD has redeemed Jacob, +and revealed His glory in Israel. + +24 + +and he kindles a fire + +and bakes his bread. + +He also fashions it into a god and + +16 + +worships it; + +he makes an idol and bows down to it. + +He burns half of it in the fire, + +and he roasts meat on that half. + +He eats the roast and is satisfied. + +17 + +Indeed, he warms himself and says, +“Ah! I am warm; I see the fire.” + +From the rest he makes a god, his graven + +image. + +He bows down to it and worships; + +he prays to it and says, + +18 + +“Save me, for you are my god.” + +They do not comprehend or discern, + +for He has shut their eyes so they cannot + +see + +19 + +and closed their minds so they cannot + +understand. + +And no one considers in his heart, + +no one has the knowledge or insight + +to say, + +“I burned half of it in the fire, + +a 14 + +and I baked bread on its coals; +fir +pine +I roasted meat and I ate. + +juniper + +Or + + or + + or + +Thus says the LORD, + +your Redeemer who formed you from the + +womb: + +“I am the LORD, + +who has made all things, + +who alone stretched out the heavens, + +25 + +who by Myself spread out the earth, + +who foils the signs of false prophets +and makes fools of diviners, + +who confounds the wise + +26 + +and turns their knowledge into nonsense, + +who confirms the message of His servant + +and fulfills the counsel of His messengers, + +who says of Jerusalem, + +‘She will be inhabited,’ +and of the cities of Judah, + +27 + +‘They will be rebuilt, and I will restore + +their ruins,’ + +who says to the depths of the sea, + +28 + +‘Be dry, and I will dry up your currents,’ + +who says of Cyrus, + +‘My shepherd will fulfill all that I desire,’ + +who says of Jerusalem, +‘She will be rebuilt,’ + +and of the temple, + +‘Let its foundation be laid.’ + +” + + God Calls Cyrus +(2 Chronicles 36:22–23 ; Ezra 1:1–4) + +45 + + This is what the LORD says to Cyrus + +11 + +Isaiah 45:19 | 657 + +Thus says the LORD, + +the Holy One of Israel, and its Maker: + +“Concerning things to come, do you question + +His anointed, + +12 + +Me about My sons, + +whose right hand I have grasped + +to subdue nations before him, + +to disarm kings, + +to open the doors before him, + +so that the gates will not be shut: + + a + +2 + +“I will go before you + +and level the mountains; + +I will break down the gates of bronze +3 +and cut through the bars of iron. +I will give you the treasures of darkness + +and the riches hidden in secret places, +so that you may know that I am the LORD, +4 + +the God of Israel, who calls you by name. + +For the sake of Jacob My servant +and Israel My chosen one, + +I call you by name; + +5 + +I have given you a title of honor, +though you have not known Me. +I am the LORD, and there is no other; + +there is no God but Me. +I will equip you for battle, +6 + +though you have not known Me, + +so that all may know, + +from where the sun rises to where it sets, + +that there is none but Me; +7 + +I am the LORD, and there is no other. +I form the light and create the darkness; + +8 + +I bring prosperity and create calamity. +I, the LORD, do all these things. + +Drip down, O heavens, from above, +and let the skies pour down + +righteousness. + +Let the earth open up that salvation may + +sprout + +9 + +and righteousness spring up with it; +I, the LORD, have created it. + +Woe to him who quarrels with his Maker— + +one clay pot among many. + + b + +Does the clay ask the potter, +‘What are you making?’ + +Does your work say, + +10 + +‘He has no hands’? + +Woe to him who says to his father, +‘What have you begotten?’ + +or to his mother, + +a 2 + +‘What have you brought forth?’ + +level the terrain + +b 9 + +” + +or instruct Me in the work of My hands? + +It is I who made the earth + +and created man upon it. + +It was My hands that stretched out the + +13 + +heavens, + +and I ordained all their host. + +I will raise up Cyrus in righteousness, + +and I will make all his ways straight. + +He will rebuild My city + +and set My exiles free, + +14 + +but not for payment or reward, +says the LORD of Hosts.” + +This is what the LORD says: +c + +“The products of Egypt and the merchandise + +of Cush, + +along with the Sabeans, men of stature, + +will come over to you +and will be yours; + +they will trudge behind you; + +they will come over in chains and bow + +down to you. +They will confess to you: + +‘God is indeed with you, and there is no + +15 + +other; + +there is no other God.’ + +” + +16 + +Truly You are a God who hides Himself, + +O God of Israel, the Savior. + +They will all be put to shame and humiliated; +the makers of idols will depart together in + +17 + +disgrace. + +But Israel will be saved by the LORD +with an everlasting salvation; + +you will not be put to shame or humiliated, + +18 + +to ages everlasting. + +For thus says the LORD, + +who created the heavens—He is God; + +He formed the earth and fashioned it; + +He established it; + +He did not create it to be empty, +but formed it to be inhabited: + +19 + +“I am the LORD, + +and there is no other. +I have not spoken in secret, + +from a place in a land of darkness. +I did not say to the descendants of Jacob, + +c 14 + +‘Seek Me in a wasteland.’ + +DSS and LXX; MT + +Cited in Romans 9:20 + +That is, the upper Nile region + + 658 | Isaiah 45:20 + +I, the LORD, speak the truth; + +20 + +I say what is right. + +Come, gather together, and draw near, +you fugitives from the nations. + +21 + +Ignorant are those who carry idols of wood +and pray to a god that cannot save. + +Speak up and present your case— + +yes, let them take counsel together. + +Who foretold this long ago? + +Who announced it from ancient times? + +Was it not I, the LORD? + +There is no other God but Me, + +22 + +a righteous God and Savior; +there is none but Me. + +Turn to Me and be saved, + +all the ends of the earth; + +for I am God, + +23 + +and there is no other. +By Myself I have sworn; + +truth has gone out from My mouth, +a word that will not be revoked: +a + +Every knee will bow before Me, + +24 + +every tongue will swear allegiance. + +Surely they will say of Me, + +‘In the LORD alone are righteousness +” + +and strength.’ + +All who rage against Him + +25 + +will come to Him and be put to shame. + +In the LORD all descendants of Israel +will be justified and will exult. + +Babylon’s Idols + +46 + +Bel crouches; Nebo cowers. +Their idols weigh down beasts and + + cattle. + +The images you carry are burdensome, + +2 + +a load to the weary animal. + +The gods cower; they crouch together, + +3 + +unable to relieve the burden; +but they themselves go into captivity. + +“Listen to Me, O house of Jacob, + +all the remnant of the house of Israel, +who have been sustained from the womb, + +4 + +carried along since birth. + +Even to your old age, I will be the same, +and I will bear you up when you turn + +gray. + +5 + +To whom will you liken Me or count Me + +equal? + +6 + +To whom will you compare Me, that + +we should be alike? +They pour out their bags of gold + +and weigh out silver on scales; +they hire a goldsmith to fashion it into + +7 + +a god, + +so they can bow down and worship. + +They lift it to their shoulder + +and carry it along; + +they set it in its place, and there it stands, + +not budging from that spot. + +They cry out to it, but it does not answer; +8 +it saves no one from his troubles. + +Remember this and be brave; + +9 + +take it to heart, you transgressors! +Remember what happened long ago, + +10 + +for I am God, and there is no other; +I am God, and there is none like Me. + +I declare the end from the beginning, + +and from ancient times what is still + +to come. + +I say, ‘My purpose will stand, + +11 + +and all My good pleasure I will + +accomplish.’ + +I summon a bird of prey from the east, + +a man for My purpose from a far-off land. + +Truly I have spoken, + +and truly I will bring it to pass. + +I have planned it, + +12 + +and I will surely do it. + +13 + +Listen to Me, you stubborn people, + +far removed from righteousness: +I am bringing My righteousness near; + +it is not far away, and My salvation will + +not be delayed. +I will grant salvation to Zion +The Humiliation of Babylon + +and adorn Israel with My splendor. + +47 + +“Go down and sit in the dust, +O Virgin Daughter of Babylon. +Sit on the ground without a throne, +O Daughter of the Chaldeans! +For you will no longer be called + + b + +2 + +tender or delicate. + +Take millstones and grind flour; + +remove your veil; + +I have made you, and I will carry you; +I will sustain you and deliver you. +every tongue will swear + +a 23 + +every tongue will swear by God + +strip off your skirt, bare your thigh, +and wade through the streams. + +b 1 + +Literally + +; LXX + +Babylonians; also in verse 5 + +; cited in Romans 14:11 + +That is, the + + 3 + +Your nakedness will be uncovered + +and your shame will be exposed. + +14 + +your astrologers who observe the stars, +who monthly predict your fate. + +Isaiah 48:8 | 659 + +I will take vengeance; +4 +I will spare no one. + +” + +Our Redeemer—the LORD of Hosts is His + +5 + +name— + +is the Holy One of Israel. + +6 + +“Sit in silence and go into darkness, +O Daughter of the Chaldeans. +For you will no longer be called +the queen of kingdoms. +I was angry with My people; +I profaned My heritage, +and I placed them under your control. + +You showed them no mercy; + +7 + +even on the elderly you laid a most heavy + +yoke. + +You said, ‘I will be queen forever.’ + +8 + +You did not take these things to heart +or consider their outcome. + +So now hear this, + +O lover of luxury who sits securely, + +who says to herself, + +‘I am, and there is none besides me. + +I will never be a widow + +9 + +or know the loss of children.’ + +These two things will overtake you in a + +moment, +in a single day: + +loss of children, and widowhood. + +They will come upon you in full measure, + +10 + +in spite of your many sorceries + +and the potency of your spells. +You were secure in your wickedness; + +you said, ‘No one sees me.’ + +Your wisdom and knowledge led you astray; +you told yourself, ‘I am, and there is none + +11 + +besides me.’ + +But disaster will come upon you; + +you will not know how to charm it away. + +A calamity will befall you + +that you will be unable to ward off. + +12 + +Devastation will happen to you +suddenly and unexpectedly. + +So take your stand with your spells +and with your many sorceries, +with which you have wearied yourself + +from your youth. + +13 + +Perhaps you will succeed; + +perhaps you will inspire terror! + +You are wearied by your many counselors; +let them come forward now and save + +you— + +Surely they are like stubble; + +the fire will burn them up. +They cannot deliver themselves +from the power of the flame. +There will be no coals to warm them + +15 + +or fire to sit beside. + +This is what they are to you— + +those with whom you have labored and + +traded from youth— +each one strays in his own direction; +not one of them can save you. + +Israel’s Stubbornness + +48 + +“Listen to this, O house of Jacob, +you who are called by the name of + + Israel, + +who have descended from the line of Judah, +who swear by the name of the LORD, + +who invoke the God of Israel— + +2 + +but not in truth or righteousness— + +who indeed call yourselves after the holy city + +3 + +and lean on the God of Israel; +the LORD of Hosts is His name. + +I foretold the former things long ago; +they came out of My mouth and I + +4 + +proclaimed them. + +Suddenly I acted, and they came to pass. + +For I knew that you are stubborn; + +5 + +your neck is iron and your forehead is + +bronze. + +Therefore I declared it to you long ago; + +I announced it before it came to pass, +so that you could not claim, ‘My idol has done + +this; + +6 + +my carved image and molten god has + +ordained it.’ + +You have heard these things; look at them all. + +Will you not acknowledge them? + +From now on I will tell you of new things, +7 + +hidden things unknown to you. +They are created now, and not long ago; + +you have not heard of them before today. + +So you cannot claim, + +8 + +‘I already knew them!’ + +You have never heard; you have never + +understood; + +for a long time your ears have not been + +open. + +For I knew how deceitful you are; + +you have been called a rebel from birth. + + 660 | Isaiah 48:9 + +9 + +19 + +For the sake of My name I will delay My + +wrath; + +10 + +for the sake of My praise I will restrain it, +so that you will not be cut off. + +See, I have refined you, but not as silver; +I have tested you in the furnace of + +11 + +affliction. + +For My own sake, My very own sake, I will + +act; + +Deliverance Promised to Israel + +for how can I let Myself be defamed? +I will not yield My glory to another. + +12 + +Listen to Me, O Jacob, + +and Israel, whom I have called: + +13 + +I am He; I am the first, +and I am the last. + +Surely My own hand founded the earth, +and My right hand spread out the + +heavens; +when I summon them, + +14 + +they stand up together. + +Come together, all of you, and listen: + +Which of the idols has foretold these + +things? + +The LORD’s chosen ally will carry out His + +desire against Babylon, +a +and His arm will be against the + +15 + +Chaldeans. +I, even I, have spoken; + +yes, I have called him. + +I have brought him, + +16 + +and he will succeed in his mission. + +Come near to Me and listen to this: + +From the beginning I have not spoken in + +secret; + +from the time it happened, I was there.” + +And now the Lord GOD has sent me, + +17 + +accompanied by His Spirit. + +Thus says the LORD your Redeemer, + +the Holy One of Israel: + +“I am the LORD your God, + +Your descendants would have been as +countless as the sand, + + b + +and your offspring as numerous as its + +grains; + +20 + +their name would never be cut off + +or eliminated from My presence.” + +Leave Babylon! + +Flee from the Chaldeans! +Declare it with a shout of joy, + +proclaim it, + +let it go out to the ends of the earth, saying, +“The LORD has redeemed His servant + +21 + +Jacob!” + +They did not thirst when He led them + +through the deserts; + +He made water flow for them from the + +22 + +rock; + +He split the rock, and water gushed out. + +“There is no peace,” says the LORD, +The Servant and Light to the Gentiles +(Acts 13:42–52) + +“for the wicked.” + + c + +49 + +Listen to Me, O islands; +pay attention, O distant peoples: + +The LORD called Me from the womb; +2 + +from the body of My mother He named + +Me. + +He made My mouth like a sharp sword; +He hid Me in the shadow of His hand. + +He made Me like a polished arrow; + +3 + +He hid Me in His quiver. + +He said to Me, “You are My Servant, Israel, + +in whom I will display My glory.” + +4 + +But I said, “I have labored in vain, + +I have spent My strength in futility and + +vanity; + +yet My vindication is with the LORD, +5 +and My reward is with My God.” + +And now says the LORD, + +who formed Me from the womb to be His + +Servant, + +to bring Jacob back to Him, + +18 + +who teaches you for your benefit, +who directs you in the way you should go. + +that Israel might be gathered to Him— +for I am honored in the sight of the LORD, + +6 + +If only you had paid attention to My + +commandments, + +and My God is My strength— + +He says: “It is not enough for You to be My + +your peace would have been like a river, +and your righteousness like waves of +b 19 + +the sea. + +coastlands + +a 14 +c 1 + +Servant, + +to raise up the tribes of Jacob, +like the sand, and your offspring like its grains +and to restore the protected ones of Israel. + +That is, the Babylonians; also in verse 20 + +Literally + +Or + + I will also make You a light for the nations, +to bring My salvation to the ends of the + + a + +7 + +earth.” + +Thus says the LORD, + +the Redeemer and Holy One of Israel, +to Him who was despised and abhorred by + +the nation, + +to the Servant of rulers: +“Kings will see You and rise, + +and princes will bow down, +because of the LORD, who is faithful, + +the Holy One of Israel, who has chosen + +You.” + +8 + +This is what the LORD says: + +“In the time of favor I will answer You, +and in the day of salvation I will help + + b + +You; + +I will keep You and appoint You + +to be a covenant for the people, + +to restore the land, +9 + +to apportion its desolate inheritances, + +to say to the prisoners, ‘Come out,’ +and to those in darkness, ‘Show + +yourselves.’ + +10 + +They will feed along the pathways, + +and find pasture on every barren hill. + +They will not hunger or thirst, +c + +Isaiah 49:25 | 661 + +16 + +Behold, I have inscribed you on the palms of + +17 + +My hands; + + f + +your walls are ever before Me. + +Your builders + + hasten back; +your destroyers and wreckers depart + +18 + +from you. + +Lift up your eyes and look around. + +They all gather together; they come to + +you. + +19 + +As surely as I live,” declares the LORD, +“you will wear them all as jewelry +and put them on like a bride. +For your ruined and desolate places + +and your ravaged land + +will now indeed be too small for your people, +and those who devoured you will be far + +20 + +away. + +Yet the children of your bereavement + +will say in your hearing, +‘This place is too small for us; + +make room for us to live here.’ + +21 + +Then you will say in your heart, + +‘Who has begotten these for me? + +I was bereaved and barren; +I was exiled and rejected. +So who has reared them? + +Look, I was left all alone, + +22 + +so where did they come from?’ + +” + +nor will scorching heat or sun beat down + +This is what the Lord GOD says: + +on them. + +For He who has compassion on them will + +11 + +guide them + +and lead them beside springs of water. + +12 + +13 + +I will turn all My mountains into roads, +and My highways will be raised up. +d +Behold, they will come from far away, +from the north and from the west, +and from the land of Aswan. + +” + +e + +Shout for joy, O heavens; rejoice, O earth; +break forth in song, O mountains! +For the LORD has comforted His people, +and He will have compassion on His + +afflicted ones. + +But Zion said, “The LORD has forsaken me; + +the Lord has forgotten me!” + +14 + +15 + +“Can a woman forget her nursing child, +or lack compassion for the son of her + +womb? + +“Behold, I will lift up My hand to the nations, + + g +and raise My banner to the peoples. +They will bring your sons in their arms +and carry your daughters on their + +23 + +shoulders. + +Kings will be your foster fathers, + +and their queens your nursing mothers. + +They will bow to you facedown +and lick the dust at your feet. + +Then you will know that I am the LORD; + +24 + +those who hope in Me will never be put to + +shame.” + +Can the plunder be snatched from + + h + +the mighty, + +25 + +or the captives of a tyrant + +be delivered? + +Indeed, this is what the LORD says: + +“Even the captives of the mighty will be taken + +away, + +a 6 +c 10 +f 17 + +b 8 + +Even if she could forget, +I will not forget you! +d 12 +LXX + +Cited in Acts 13:47 +g 22 +Your sons +Cited in Revelation 7:16 +DSS; MT + +Or +Hebrew + +In the time of favor I heard You, and in the day of salvation I helped You; + +and the plunder of the tyrant will be + +retrieved; + +from the sea +in their bosom + +e 12 + +h 24 + +the land of Sinim + cited in 2 Cor. 6:2 +of the righteous + +That is, a region in southern Egypt (from DSS); MT +DSS, Syriac, and Vulgate (see also verse 25); MT + + 662 | Isaiah 49:26 + +8 + +I will contend with those who contend with + +The One who vindicates Me is near. + +26 + +you, + +and I will save your children. + +I will make your oppressors eat their own + +flesh; + +they will be drunk on their own blood, as + +with wine. + +Then all mankind will know that I, the LORD, + +Israel’s Sin + +am your Savior and your Redeemer, +the Mighty One of Jacob.” + +50 + +This is what the LORD says: + +Who will dare to contend with Me? +Let us confront each other! + +9 + +Who has a case against Me? +Let him approach Me! +Surely the Lord GOD helps Me. + +Who is there to condemn Me? + +10 + +See, they will all wear out like a garment; + +the moths will devour them. + +Who among you fears the LORD + +and obeys the voice of His Servant? + +Who among you walks in darkness + +and has no light? + +“Where is your mother’s certificate + +11 + +Let him trust in the name of the LORD; + + of divorce + +with which I sent her away? + +Or to which of My creditors + +did I sell you? + +Look, you were sold for your iniquities, +2 + +and for your transgressions your mother + +was sent away. + +Why was no one there when I arrived? + +Why did no one answer when I called? + +Is My hand too short to redeem you? + +Or do I lack the strength to deliver you? + +Behold, My rebuke dries up the sea; +I turn the rivers into a desert; + +the fish rot for lack of water +3 + +and die of thirst. + +I clothe the heavens in black + +and make sackcloth their covering.” + +The Servant’s Obedience +(Matthew 27:27–31 ; Mark 15:16–20 ; +Luke 22:63–65 ; John 19:1–15) + +4 + +The Lord GOD has given Me + +the tongue of discipleship, +to sustain the weary with a word. +He awakens Me morning by morning; +5 + +He awakens My ear to listen as a disciple. + +The Lord GOD has opened My ears, +and I have not been rebellious, +nor have I turned back. + +6 + +I offered My back to those who struck Me, + +and My cheeks to those who tore out My + +5 + +beard. + +7 + +I did not hide My face from scorn and + +spittle. + +Because the Lord GOD helps Me, +I have not been disgraced; + +let him lean on his God. + +Behold, all you who kindle a fire, + +who array yourselves with firebrands, + +walk in the light of your fire + +and of the firebrands you have lit! + +Salvation for Zion + +This is what you will receive from My hand: +You will lie down in a place of torment. + +51 + +“Listen to Me, you who pursue +righteousness, + +you who seek the LORD: + +Look to the rock from which you were cut, +and to the quarry from which you were + +2 + +hewn. + +Look to Abraham your father, + +and to Sarah who gave you birth. + +When I called him, he was but one; + +3 + +then I blessed him and multiplied him. + +For the LORD will comfort Zion + +and will look with compassion on all her + +ruins; + +He will make her wilderness like Eden + +and her desert like the garden of the LORD. + +4 + +Joy and gladness will be found in her, +thanksgiving and melodious song. + +Pay attention to Me, My people, +and listen to Me, My nation; + +for a law will go out from Me, + +and My justice will become a light to the + +nations; + +I will bring it about quickly. + +My righteousness draws near, +My salvation is on the way, +and My arms will bring justice to the + + a +nations. + +therefore I have set My face like flint, + +The islands + + will look for Me + +a 5 + +and I know that I will not be put to shame. +coastlands + +and wait in hope for My arm. + +Or + + 6 + + a + +Isaiah 52:2 | 663 + +Lift up your eyes to the heavens, +and look at the earth below; + +to establish + + the heavens, to found the earth, + +God’s Fury Removed + +and to say to Zion, ‘You are My people.’ + +” + +for the heavens will vanish like smoke, + +17 + +the earth will wear out like a garment, +and its people will die like gnats. + +But My salvation will last forever, + +and My righteousness will never fail. + +Listen to Me, you who know what is right, +you people with My law in your hearts: + +Do not fear the scorn of men; + +8 + +do not be broken by their insults. +For the moth will devour them like a + +garment, + +and the worm will eat them like wool. + +But My righteousness will last forever, + +My salvation through all generations.” + +7 + +9 + +Awake, awake, + +put on strength, O arm of the LORD. + +Wake up as in days past, + +as in generations of old. + +10 + +Was it not You who cut Rahab to pieces, +who pierced through the dragon? +Was it not You who dried up the sea, +the waters of the great deep, + +11 + +who made a road in the depths of the sea + +for the redeemed to cross over? + +So the redeemed of the LORD will return + +12 + +and enter Zion with singing, +crowned with everlasting joy. +Gladness and joy will overtake them, +and sorrow and sighing will flee. +“I, even I, am He who comforts you. + +Awake, awake! + +Rise up, O Jerusalem, + +you who have drunk from the hand of the + +LORD + +the cup of His fury; + +you who have drained the goblet to the + +18 + +dregs— + +the cup that makes men stagger. + +Among all the sons she bore, + +19 + +there is no one to guide her; +among all the sons she brought up, +there is no one to take her hand. + +These pairs have befallen you: + +20 + +devastation and destruction, +famine and sword. +Who will grieve for you? +Who can comfort you? +Your sons have fainted; + + b + +they lie at the head of every street, +like an antelope in a net. + +They are full of the wrath of the LORD, + +21 + +the rebuke of your God. + +22 + +Therefore now hear this, you afflicted one, + +drunken, but not with wine. +Thus says your Lord, the LORD, + +even your God, who defends His people: + +“See, I have removed from your hand + +the cup of staggering. + +13 + +Why should you be afraid of mortal man, +of a son of man who withers like grass? + +But you have forgotten the LORD, your + +23 + +From that goblet, the cup of My fury, + +you will never drink again. +I will place it in the hands of your + +Maker, + +who stretched out the heavens +and laid the foundations of the earth. + +You live in terror all day long + +because of the fury of the oppressor + +14 + +who is bent on destruction. + +But where is the fury of the oppressor? + +The captive will soon be freed; + +15 + +he will not die in the dungeon, +and his bread will not be lacking. + +For I am the LORD your God + +who stirs up the sea so that its waves + +16 + +roar— + +the LORD of Hosts is His name. +I have put My words in your mouth, + +a 16 + +and covered you with the shadow of +to plant + +b 19 +My hand, + +Or + +DSS, LXX, Syriac, and Vulgate; MT + +tormentors, + +who told you: ‘Lie down, so we can walk + +over you,’ + +so that you made your back like the ground, + +Deliverance for Jerusalem + +like a street to be traversed.” + +52 + +Awake, awake, +clothe yourself with strength, + + O Zion! + +Put on your garments of splendor, + +O Jerusalem, holy city! + +For the uncircumcised and unclean +2 + +will no longer enter you. + +Shake off your dust! + +Rise up and sit on your throne, + +How can I comfort you? + +O Jerusalem. + + 664 | Isaiah 52:3 + +3 + +Remove the chains from your neck, +O captive Daughter of Zion. + +For this is what the LORD says: + +“You were sold for nothing, + +and without money you will be + +redeemed.” + +4 + +For this is what the Lord GOD says: + +“At first My people went down to Egypt to + +live, + +5 + +then Assyria oppressed them without + +cause. + +And now what have I here? +declares the LORD. + +For My people have been taken without + +a + +cause; + +those who rule them taunt, +declares the LORD, +b + +and My name is blasphemed continually + +6 + +all day long. + +Therefore My people will know My name; +therefore they will know on that day + +that I am He who speaks. +7 + +Here I am!” + +How beautiful on the mountains + +c + +are the feet of those who bring good + +news, + +who proclaim peace, who bring good tidings, + +8 + +who proclaim salvation, +who say to Zion, “Your God reigns!” +Listen! Your watchmen lift up their voices, + +together they shout for joy. + +For every eye will see + +9 + +when the LORD returns to Zion. + +Break forth in joy, sing together, + +O ruins of Jerusalem, + +10 + +for the LORD has comforted His people; + +He has redeemed Jerusalem. +The LORD has bared His holy arm +in the sight of all the nations; +all the ends of the earth will see +the salvation of our God. + d + +11 + +Depart, depart, go out from there! + +Touch no unclean thing; + +for the LORD goes before you, + +The Servant Exalted +(Philippians 2:5–11) + +and the God of Israel is your rear guard. + +13 + + e + +Behold, My Servant will prosper; + +14 + +He will be raised and lifted up and highly + + f + +exalted. + +Just as many were appalled at Him + +— + +His appearance was disfigured beyond + +that of any man, + +15 + +and His form was marred beyond human + + g + +likeness— +so He will sprinkle + + many nations. + +Kings will shut their mouths because of + +Him. + +For they will see what they have not been + +told, + +h + +and they will understand what they have + +The Suffering Servant +(Acts 8:26–40 ; 1 Peter 2:21–25) + +not heard. + +53 + +2 + +Who has believed our message? +And to whom has the arm of the + + i + + LORD been revealed? + +He grew up before Him like a tender shoot, + +and like a root out of dry ground. + +He had no stately form or majesty to attract +3 + +us, + +no beauty that we should desire Him. + +He was despised and rejected by men, + +a man of sorrows, acquainted with grief. + +Like one from whom men hide their faces, +He was despised, and we esteemed Him + +4 + +not. + + j + +Surely He took up our infirmities +and carried our sorrows; +yet we considered Him stricken, +5 + +struck down by God, and afflicted. +But He was pierced for our transgressions, +He was crushed for our iniquities; +the punishment that brought us peace was +k +6 + +l +and by His stripes we are healed. + +upon Him, + +12 + +come out from it, purify yourselves, + +you who carry the vessels of the LORD. + +We all like sheep have gone astray, + +each one has turned to his own way; + +a 5 + +For you will not leave in a hurry + +wail +nor flee in haste, +c 7 +startle +Cited in Romans 10:15 +i 1 +LXX + +at You +Romans 2:24 +Or + +DSS and Vulgate; MT + +h 15 + +g 15 + +b 5 + +in Romans 15:21 +Matthew 8:17 and 1 Peter 2:24 + +Cited in 2 Corinthians 6:17 +l 6 +Cited in John 12:38 and Romans 10:16 + +LXX + +k 5 + +j 4 + +Cited in 1 Peter 2:24 + +Cited in 1 Peter 2:25 + +and the LORD has laid upon Him + +—on account of you My name is blasphemed continually among the Gentiles + +the iniquity of us all. + +e 13 + +will act wisely + +f 14 + +d 11 + +LXX +For those who were not told will see, and those who have not heard will understand. + +This One bears our sins and is pained for us + +Or + +; cited in +Syriac; Hebrew + Cited +; cited in + + 7 + +Future Blessings for Zion + +Isaiah 54:9 | 665 + +He was oppressed and afflicted, + +yet He did not open His mouth. +He was led like a lamb to the slaughter, +and as a sheep before her shearers is + +8 + +silent, + +so He did not open His mouth. +By oppression and judgment He was + +taken away, + +and who can recount His + +descendants? + a + +For He was cut off from the land of the + +living; + +He was stricken for the transgression + +of My people. + +A Grave Assigned +(Matthew 27:57–61 ; Mark 15:42–47 ; +Luke 23:50–56 ; John 19:38–42) + +9 + +He was assigned a grave with the + +wicked, + +and with a rich man in His death, +b + +although He had done no violence, +nor was any deceit in His mouth. + +10 + +Yet it was the LORD’s will to crush Him + +c + +and to cause Him to suffer; + +and when His soul is made a guilt offering, + +He will see His offspring, He will prolong + +His days, + +11 + +and the good pleasure of the LORD will + +prosper in His hand. + + d +After the anguish of His soul, +He will see the light of life + + and be + +satisfied. + +54 + +“Shout for joy, O barren woman, +who bears no children; +break forth in song and cry aloud, +you who have never travailed; + +because more are the children of the desolate + + h + +woman + +than of her who has a husband,” + +2 + +says the LORD. + +“Enlarge the site of your tent, + +stretch out the curtains of your dwellings, +do not hold back. +Lengthen your ropes + +i + +3 + +and drive your stakes in deep. + +For you will spread out to the right and left; +your descendants will dispossess the + +4 + +nations + +and inhabit the desolate cities. + +Do not be afraid, for you will not be put to + +shame; + +do not be intimidated, for you will not be + +humiliated. + +For you will forget the shame of your youth +and will remember no more the reproach + +5 + +of your widowhood. +For your husband is your Maker— + +the LORD of Hosts is His name— +the Holy One of Israel is your Redeemer; +He is called the God of all the earth. + +6 + +For the LORD has called you back, + +like a wife deserted and wounded in spirit, + +like the rejected wife of one’s youth,” + +7 + +says your God. + +By His knowledge My righteous Servant will + +“For a brief moment I forsook you, + +12 + +justify many, + +and He will bear their iniquities. +Therefore I will allot Him a portion with + +e + +the great, + +f + +and He will divide the spoils with the + +strong, + +because He has poured out His life unto + +death, + +g + +and He was numbered with the + +transgressors. +Yet He bore the sin of many + +and made intercession for the + +8 + +but with great compassion I will bring you + +back. +In a surge of anger + +I hid My face from you for a moment, +but with everlasting kindness I will have + +9 + +compassion on you,” + +says the LORD your Redeemer. + +j + +“For to Me this is like the days of Noah, + +when I swore that the waters of Noah +would never again cover the earth. +So I have sworn that I will not be angry + +with you +or rebuke you. + +a 8 +earth; +d 11 + +LXX + +In humiliation He was deprived of justice. Who can recount His descendants? For His life was removed from the + +transgressors. + +b 9 + +c 10 + +and though He makes His life a guilt offering + + cited in Acts 8:32–33. + +h 1 + +waters of Noah +22:37 + +DSS (see also LXX); MT does not include +Cited in Galatians 4:27 + +Or + +the light of life +Cited in 1 Peter 2:22 + +i 2 + +and strengthen your stakes +Or + +. + +e 12 +Or + +many +j 9 + +f 12 + +numerous + +g 12 + +For this is like the + +Or +Some manuscripts + +Cited in Luke + + 666 | Isaiah 54:10 + +10 + +Though the mountains may be removed + +I will make with you an everlasting + +c + +and the hills may be shaken, + +4 + +covenant— + +My loving devotion will not depart from you, +and My covenant of peace will not be + +My loving devotion promised to David. +Behold, I have made him a witness to the + +broken,” + +says the LORD, who has compassion + +on you. + +11 + +5 + +nations, + +a leader and commander of the peoples. +Surely you will summon a nation you do not + +“O afflicted city, lashed by storms, + +without solace, + +a + +12 + +surely I will set your stones in antimony + +and lay your foundations with sapphires. + +13 + +I will make your pinnacles of rubies, +your gates of sparkling jewels, +and all your walls of precious stones. +Then all your sons will be taught by the + +b + +14 + +LORD, + +and great will be their prosperity. +In righteousness you will be established, + +far from oppression, +for you will have no fear. +Terror will be far removed, + +15 + +for it will not come near you. + +16 + +If anyone attacks you, it is not from Me; + +whoever assails you will fall before you. + +Behold, I have created the craftsman +who fans the coals into flame +and forges a weapon fit for its task; + +17 + +and I have created the destroyer + +to wreak havoc. + +No weapon formed against you shall prosper, + +and you will refute every tongue that + +accuses you. + +This is the heritage of the servants of the + +LORD, + +and their vindication is from Me,” + +Invitation to the Needy + +declares the LORD. + +55 + +“Come, all you who are thirsty, +come to the waters; + +and you without money, +come, buy, and eat! +Come, buy wine and milk + +2 + +without money and without cost! + +Why spend money on that which is not bread, +and your labor on that which does not + +satisfy? + +Listen carefully to Me, and eat what is good, +and your soul will delight in the richest of + +3 + +foods. + +Incline your ear and come to Me; +b 13 + +lapis lazuli +listen, so that your soul may live. + +a 11 + +c 3 + +know, + +and nations who do not know you will run + +to you. + +For the LORD your God, the Holy One of + +6 + +Israel, + +has bestowed glory on you.” + +Seek the LORD while He may be found; + +7 + +call on Him while He is near. +Let the wicked man forsake his way +and the unrighteous man his + +thoughts; + +let him return to the LORD, + +that He may have compassion, + +and to our God, +8 + +for He will freely pardon. + +“For My thoughts are not your thoughts, +neither are your ways My ways,” + +declares the LORD. + +9 + +10 + +“For as the heavens are higher than the earth, +so My ways are higher than your ways +and My thoughts than your thoughts. +For just as rain and snow fall from heaven +and do not return without watering the + +earth, + +11 + +making it bud and sprout, + +and providing seed to sow and food to eat, + +so My word that proceeds from My mouth + +will not return to Me empty, +but it will accomplish what I please, + +and it will prosper where I send it. + +12 + +You will indeed go out with joy +and be led forth in peace; + +the mountains and hills will burst into song + +before you, + +13 + +and all the trees of the field will clap their + + d + +hands. + +Instead of the thornbush, the cypress + + will + +grow, + +and instead of the brier, the myrtle will + +spring up; + +this will make a name for the LORD, +an everlasting sign, never to be + +d 13 + +destroyed.” +pine + +juniper + +fir + +Or + +Cited in John 6:45 + +Cited in Acts 13:34 + +Or + + or + + or + + Salvation for Foreigners + +10 + +Isaiah 57:8 | 667 + +56 + +This is what the LORD says: + +“Maintain justice and do what is right, + +2 + +for My salvation is coming soon, +and My righteousness will be revealed. + +Blessed is the man who does this, + +and the son of man who holds it fast, + +who keeps the Sabbath without + +profaning it + +and keeps his hand from doing + +any evil.” + +3 + +Let no foreigner who has joined himself + +to the LORD say, + +“The LORD will utterly exclude me + +from His people.” + +4 + +And let the eunuch not say, +“I am but a dry tree.” + +For this is what the LORD says: + +“To the eunuchs who keep My Sabbaths, +5 + +who choose what pleases Me +and hold fast to My covenant— + +I will give them, in My house and within My + +walls, + +a memorial and a name +better than that of sons and daughters. + +I will give them an everlasting name + +6 + +that will not be cut off. + +And the foreigners who join themselves + +to the LORD +to minister to Him, + +to love the name of the LORD, +and to be His servants— + +all who keep the Sabbath without profaning it +7 + +and who hold fast to My covenant— + +I will bring them to My holy mountain + +and make them joyful in My house of + +prayer. + +Their burnt offerings and sacrifices +will be accepted on My altar, + + a + +for My house will be called a house of prayer + +8 + +for all the nations.” + +Thus declares the Lord GOD, + +who gathers the dispersed of Israel: + +“I will gather to them still others + +Israel’s Sinful Leaders + +besides those already gathered.” + +9 + +Israel’s watchmen are blind, +they are all oblivious; + +they are all mute dogs, +they cannot bark; + +they are dreamers lying around, + +11 + +loving to slumber. + +Like ravenous dogs, + +they are never satisfied. + +They are shepherds with no discernment; + +12 + +they all turn to their own way, +each one seeking his own gain: + +“Come, let me get the wine, + +let us imbibe the strong drink, +and tomorrow will be like today, +The Blessed Death of the Righteous + +only far better!” + +57 + +The righteous perish, +and no one takes it to heart; + +devout men are taken away, +while no one considers + +2 + +that the righteous are taken away +from the presence of evil. + +God Condemns Idolatry + +Those who walk uprightly enter into peace; +they find rest, lying down in death. + +3 + +“But come here, you sons of a sorceress, + +4 + +you offspring of adulterers and + +prostitutes! +Whom are you mocking? + +At whom do you sneer and stick out your + +tongue? + +Are you not children of transgression, + +5 + +offspring of deceit, + +who burn with lust among the oaks, +under every luxuriant tree, + +who slaughter your children in the valleys, + +6 + +under the clefts of the rocks? + +Your portion is among the smooth stones of + +the valley; + +indeed, they are your lot. + +Even to them you have poured out a drink + +offering + +7 + +and offered a grain offering. +Should I relent because of these? + +On a high and lofty hill you have made your + +8 + +bed, + +and there you went up to offer sacrifices. + +Come, all you beasts of the field; + +a 7 + +eat greedily, all you beasts of the forest. + +Behind the door and doorpost + +you have set up your memorial. + +Cited in Matthew 21:13, Mark 11:17, and Luke 19:46 + + 668 | Isaiah 57:9 + +Forsaking Me, you uncovered your bed; +you climbed up and opened it wide. +And you have made a pact with those whose + +9 + +bed you have loved; + + a + +18 + +yet he kept turning back + +to the desires of his heart. + +I have seen his ways, +but I will heal him; + +you have gazed upon their nakedness. + +19 + +I will guide him and restore comfort + +You went to Molech + + with oil + + b + +and multiplied your perfumes. + +You have sent your envoys + +10 + + a great distance; + +you have descended even to Sheol itself. + +You are wearied by your many journeys, + +but you did not say, “There is no hope!” + +11 + +You found renewal of your strength; +therefore you did not grow weak. + +to him and his mourners, +bringing praise to their lips. + +Peace, peace to those far and near,” says the + +20 + +LORD, + +“and I will heal them.” + +But the wicked are like the storm-tossed sea, + +21 + +for it cannot be still, +and its waves churn up mire and muck. + +Whom have you dreaded and feared, + +so that you lied and failed +to remember Me or take this to heart? + +Is it not because I have long been silent + +12 + +that you do not fear Me? + +I will expose your righteousness and your + +13 + +works, + +and they will not profit you. + +When you cry out, + +let your companies of idols deliver you! + +Yet the wind will carry off all of them, +a breath will take them away. + +But he who seeks refuge in Me will inherit + +the land +Healing for the Repentant + +and possess My holy mountain.” + +14 + +And it will be said, + +“Build it up, build it up, prepare the way, + +15 + +take every obstacle out of the way of My + +people.” + +“There is no peace,” says my God, + +True Fasts and Sabbaths +“for the wicked.” + +58 + +“Cry aloud, do not hold back! +Raise your voice like a ram’s horn. +Declare to My people their transgression +2 +and to the house of Jacob their sins. + +For day after day they seek Me + +and delight to know My ways, +like a nation that does what is right + +and does not forsake the justice of their + +God. + +They ask Me for righteous judgments; +3 + +they delight in the nearness of God.” + +“Why have we fasted, + +and You have not seen? + +Why have we humbled ourselves, +and You have not noticed?” + +“Behold, on the day of your fast, you do as +4 + +you please, + +For thus says the One who is high and lifted + +and you oppress all your workers. + +up, + +who inhabits eternity, whose name is + +Holy: + +“I dwell in a high and holy place, + +You fast with contention and strife +to strike viciously with your fist. + +You cannot fast as you do today +5 + +and have your voice be heard on high. + +and with the oppressed and humble in + +Is this the fast I have chosen: + +spirit, + +to restore the spirit of the lowly + +16 + +a day for a man to deny himself, + +to bow his head like a reed, + +and revive the heart of the contrite. + +and to spread out sackcloth and ashes? + +For I will not accuse you forever, +nor will I always be angry; + +for then the spirit of man would grow weak + +17 + +before Me— + +the breath of life I have made. + +I was enraged by his sinful greed, + +a 9 + +to the king +so I struck him and hid My face in anger; + +idols + +b 9 + +Or + +Or + +Will you call this a fast + +6 + +and a day acceptable to the LORD? + +Isn’t this the fast that I have chosen: + +to break the chains of wickedness, +to untie the cords of the yoke, + +to set the oppressed free + +and tear off every yoke? + + 7 + +2 + +Isn’t it to share your bread with the hungry, +to bring the poor and homeless into your + +But your iniquities have built barriers + +between you and your God, + +home, + +and your sins have hidden His face from you, + +3 + +to clothe the naked when you see him, + +so that He does not hear. + +Isaiah 59:13 | 669 + +and not to turn away + +8 + +from your own flesh and blood? + +For your hands are stained with blood, +and your fingers with iniquity; + +Then your light will break forth like the + +dawn, + +and your healing will come quickly. +Your righteousness will go before you, +9 + +and the glory of the LORD will be your + +rear guard. + +Then you will call, and the LORD will answer; +you will cry out, and He will say, ‘Here I + +am.’ + +If you remove the yoke from your midst, + +10 + +the pointing of the finger and malicious + +talk, + +and if you give yourself to the hungry + +and satisfy the afflicted soul, + +11 + +then your light will go forth in the darkness, +and your night will be like noonday. + +The LORD will always guide you; + +He will satisfy you in a sun-scorched land +and strengthen your frame. + +12 + +You will be like a well-watered garden, + +like a spring whose waters never fail. +Your people will rebuild the ancient ruins; + +you will restore the age-old foundations; + +13 + +you will be called Repairer of the Breach, +Restorer of the Streets of Dwelling. + +If you turn your foot from breaking the + +Sabbath, + +from doing as you please on My holy day, + +if you call the Sabbath a delight, + +and the LORD’s holy day honorable, +if you honor it by not going your own way + +14 + +or seeking your own pleasure or speaking + +idle words, + +then you will delight yourself in the LORD, + +and I will make you ride on the heights of + +the land + +and feed you with the heritage of your + +For the mouth of the LORD has spoken. +father Jacob.” + +Sin Separates Us from God +(Psalm 14:1–7 ; Psalm 53:1–6 ; Romans 3:9–20) + +59 + + Surely the arm of the LORD is not too + +short to save, +b 8 + +misery + +nor His ear too dull to hear. + +a 7 + +LXX + +Cited in Romans 3:15–17 + +your lips have spoken lies, + +4 + +and your tongue mutters injustice. + +No one calls for justice; + +no one pleads his case honestly. +They rely on empty pleas; they tell lies; + +5 + +they conceive mischief and give birth to + +iniquity. + +They hatch the eggs of vipers +and weave a spider’s web. +Whoever eats their eggs will die; + +6 + +crack one open, and a viper is hatched. +Their cobwebs cannot be made into clothing, +and they cannot cover themselves with + +their works. +Their deeds are sinful deeds, +7 + +and acts of violence are in their hands. + +Their feet run to evil; + +they are swift to shed innocent blood. + + a + +Their thoughts are sinful thoughts; + +8 + +b + +ruin and destruction + + lie in their wake. + +The way of peace they have not known, + +and there is no justice in their tracks. +They have turned them into crooked paths; +no one who treads on them will know + +9 + +peace. + +Therefore justice is far from us, + +and righteousness does not reach us. +We hope for light, but there is darkness; +for brightness, but we walk in gloom. + +10 + +Like the blind, we feel our way along the wall, + +groping like those without eyes. +We stumble at midday as in the twilight; + +11 + +among the vigorous we are like the dead. + +We all growl like bears + +and moan like doves. + +12 + +We hope for justice, but find none, + +for salvation, but it is far from us. + +For our transgressions are multiplied before + +You, + +and our sins testify against us. +Our transgressions are indeed with us, + +13 + +and we know our iniquities: +rebelling and denying the LORD, +turning away from our God, + + 670 | Isaiah 59:14 + +speaking oppression and revolt, + +14 + +conceiving and uttering lies from the + +but the LORD will rise upon you, + +3 + +and His glory will appear over you. + +heart. + +So justice is turned away, + +and righteousness stands at a distance. +For truth has stumbled in the public square, + +15 + +and honesty cannot enter. + +Truth is missing, + +and whoever turns from evil becomes + + a + +prey. + +16 + +The LORD looked and was displeased + +that there was no justice. +He saw that there was no man; + +Nations will come to your light, + +4 + +and kings to the brightness of your dawn. + +Lift up your eyes and look around: + +They all gather and come to you; + +your sons will come from afar, + +5 + +and your daughters will be carried on the + +arm. + +Then you will look and be radiant, + +and your heart will tremble and swell + +with joy, + +because the riches of the sea will be brought + +He was amazed that there was no one to + +to you, + +intercede. + +6 + +and the wealth of the nations will come to + +17 + +So His own arm brought salvation, + +you. + +and His own righteousness sustained Him. + +He put on righteousness like a breastplate, +and the helmet of salvation on His head; + +Caravans of camels will cover your land, +young camels of Midian and Ephah, + +and all from Sheba will come, + +He put on garments of vengeance + +The Covenant of the Redeemer + +and wrapped Himself in a cloak of zeal. + +18 + +So He will repay according to their deeds: + +19 + +fury to His enemies, +retribution to His foes, +and recompense to the islands. + +b + +So shall they fear the name of the LORD + +where the sun sets, +and His glory where it rises. +c +For He will come like a raging flood, +driven by the breath of the LORD. + +20 + +“The Redeemer will come to Zion, +to those in Jacob who turn from + +d + +transgression, + +21 + +” declares the LORD. + e + +f + +“As for Me, this is My covenant with them,” +says the LORD. “My Spirit will not depart from +you, + and My words that I have put in your mouth +will not depart from your mouth or from the +mouths of your children and grandchildren, from +Future Glory for Zion +now on and forevermore,” says the LORD. + +60 + +2 + +Arise, shine, for your light has come, +and the glory of the LORD rises + + upon you. + +For behold, darkness covers the earth, +and it was evil in His eyes + +and thick darkness is over the peoples; + +a 15 +the LORD will drive him back +f 21 + +Hebrew + +7 + +bearing gold and frankincense +and proclaiming the praises of the LORD. + +All the flocks of Kedar will be gathered to + +you; + +the rams of Nebaioth will serve you +and go up on My altar with acceptance; +8 +I will adorn My glorious house. +Who are these who fly like clouds, + g +like doves to their shelters? + +9 + + h + +Surely the islands + + will wait for Me, + +with the ships of Tarshish +to bring your children from afar, +with their silver and gold, + + in the lead, + +to the honor of the LORD your God, + +10 + +the Holy One of Israel, +for He has glorified you. + +Foreigners will rebuild your walls, +and their kings will serve you. + +11 + +Although I struck you in anger, + +yet in favor I will show you mercy. + +Your gates will always stand open; + +they will never be shut, day or night, +so that the wealth of the nations may be + +12 + +brought into you, + +with their kings being led in procession. +For the nation or kingdom that will not serve + +13 + +you will perish; + +it will be utterly destroyed. + +i + +The glory of Lebanon will come to you— + +its cypress, + elm, and boxwood together— +When the enemy comes like a raging flood, the Spirit of + +d 20 + +coastlands + +b 18 +to remove godlessness from Jacob + +c 19 + +e 21 + +My Spirit, who is upon you, +LXX + +g 9 + +Or + +coastlands + +h 9 + +Or + +a fleet of trading ships + +i 13 + +pine + +juniper + +fir + +; cited in Romans 11:26 + +Cited in Rom. 11:27 + +Literally + +Or + +Or + +Or + + or + + or + + to adorn the place of My sanctuary, + +14 + +The + +and I will glorify the place of My feet. + sons of your oppressors +will come and bow down to you; + +all who reviled you + +will fall facedown at your feet +and call you the City of the LORD, +Zion of the Holy One of Israel. + +15 + +Whereas you have been forsaken and + +despised, + +with no one passing through, +I will make you an everlasting pride, + +16 + +a joy from age to age. + +You will drink the milk of nations + +and nurse at the breasts of royalty; +you will know that I, the LORD, am your + +Savior + +17 + +and your Redeemer, the Mighty One + +of Jacob. + +Instead of bronze I will bring you gold; +I will bring silver in place of iron, + +bronze instead of wood, + +and iron instead of stones. + +18 + +I will appoint peace as your governor +and righteousness as your ruler. + +No longer will violence be heard in your land, + +nor ruin or destruction within your + +borders. + +But you will name your walls Salvation + +19 + +and your gates Praise. + +No longer will the sun be your light by day, +nor the brightness of the moon shine on + + a + +your night; + +b + +20 + +for the LORD will be your everlasting light, +and your God will be your splendor. + +Your sun will no longer set, + +and your moon will not wane; + +21 + +for the LORD will be your everlasting light, +and the days of your sorrow will cease. + +Then all your people will be righteous; +they will possess the land forever; + +they are the branch of My planting, + +22 + +the work of My hands, +so that I may be glorified. + +The least of you will become a thousand, +and the smallest a mighty nation. + +I am the LORD; + +The Year of the LORD’s Favor (Luke 4:16–30) + +Isaiah 61:9 | 671 + +61 + +The Spirit of the Lord GOD is on Me, +because the LORD has anointed Me + +to preach good news to the poor. + +He has sent Me to bind up the brokenhearted, +2 + +to proclaim liberty to the captives +and freedom to the prisoners, + + d + +c + +3 + +to proclaim the year of the LORD’s favor +and the day of our God’s vengeance, +to comfort all who mourn, +to console the mourners in Zion— + +to give them a crown of beauty for ashes, + +the oil of joy for mourning, + +and a garment of praise for a spirit + +of despair. + +So they will be called oaks of righteousness, +the planting of the LORD, that He may be + +4 + +glorified. + +They will rebuild the ancient ruins; +they will restore the places long + +devastated; + +they will renew the ruined cities, +5 + +the desolations of many generations. +Strangers will stand and feed your flocks, + +6 + +and foreigners will be your plowmen and + +vinedressers. + +But you will be called the priests of the LORD; +they will speak of you as ministers of our + +God; + +you will feed on the wealth of nations, +7 +and you will boast in their riches. +Instead of shame, My people will have a + +double portion, + +and instead of humiliation, they will + +rejoice in their share; + +and so they will inherit a double portion + +8 + +in their land, + +and everlasting joy will be theirs. + +For I, the LORD, love justice; + +I hate robbery and iniquity; + +in My faithfulness I will give them their + +recompense + +9 + +and make an everlasting covenant with + +them. + +Their descendants will be known among the + +nations, + +and their offspring among the peoples. + +All who see them will acknowledge + +that they are a people the LORD has + +in its time I will accomplish it quickly. + +shine on you + +a 19 +and recovery of sight to the blind + +d 2 + +b 19 + +DSS, LXX, and Targum Yonaton; MT + +your beauty + +blessed. +to proclaim the acceptable year of the LORD +Or + +Heb.; LXX + +c 1 + +to proclaim liberty to the captives + +; cited in Luke 4:18 + +Or + +; cited in Luke 4:19 + + 672 | Isaiah 61:10 + +10 + +I will rejoice greatly in the LORD, +my soul will exult in my God; + +for He has clothed me with garments of + +salvation + +and wrapped me in a robe of + +righteousness, + +11 + +as a bridegroom wears a priestly headdress, +as a bride adorns herself with her jewels. + +For as the earth brings forth its growth, + +and as a garden enables seed to spring up, +so the Lord GOD will cause righteousness and + +praise + +Zion’s Salvation and New Name + +to spring up before all the nations. + +62 + +For Zion’s sake I will not keep silent, +and for Jerusalem’s sake I will not + + keep still, + +until her righteousness shines like a bright + +2 + +light, + +her salvation like a blazing torch. +Nations will see your righteousness, + +and all kings your glory. +You will be called by a new name + +3 + +that the mouth of the LORD will bestow. + +You will be a crown of glory in the hand + +4 + +of the LORD, + +a + +a royal diadem in the palm of your God. + + b + +No longer will you be called Forsaken, +c +nor your land named Desolate; +but you will be called Hephzibah, + + d + +and your land Beulah; + +5 + +for the LORD will take delight in you, +and your land will be His bride. + +For as a young man marries a young woman, + +so your sons will marry you; + +and as a bridegroom rejoices over his bride, +6 + +so your God will rejoice over you. + +On your walls, O Jerusalem, I have posted + +watchmen; + +they will never be silent day or night. + +You who call on the LORD + +7 + +shall take no rest for yourselves, + +nor give Him any rest + +8 + +until He establishes Jerusalem +and makes her the praise of the earth. + +The LORD has sworn by His right hand + +and by His mighty arm: + +“Never again will I give your grain +Shemamah +b 4 +to your enemies for food, +It is I, speaking in righteousness, + +Azubah + +a 4 +e 1 + +c 4 Hephzibah + +nor will foreigners drink the new wine + +9 + +for which you have toiled. +For those who harvest grain + +will eat it and praise the LORD, + +and those who gather grapes + +10 + +will drink the wine in My holy courts.” + +Go out, go out through the gates; + +prepare the way for the people! + +Build it up, build up the highway; + +11 + +clear away the stones; +raise a banner for the nations! + +Behold, the LORD has proclaimed + +to the ends of the earth, + +“Say to Daughter Zion: + +See, your Savior comes! +Look, His reward is with Him, + +12 + +and His recompense goes before Him.” + +And they will be called the Holy People, + +the Redeemed of The LORD; +and you will be called Sought Out, + +God’s Vengeance on the Nations + +A City Not Forsaken. + +63 + +Who is this coming from Edom, +from Bozrah with crimson-stained + + garments? +Who is this robed in splendor, + +e + +marching in the greatness of His strength? + +“It is I, proclaiming vindication, +2 + +mighty to save.” + +Why are Your clothes red, + +3 + +and Your garments like one who treads + +the winepress? + +“I have trodden the winepress alone, + +and no one from the nations was with Me. + +I trampled them in My anger + +and trod them down in My fury; +their blood spattered My garments, +and all My clothes were stained. + +4 + +For the day of vengeance was in My heart, + +5 + +and the year of My redemption had come. + +I looked, but there was no one to help; +I was appalled that no one assisted. + +So My arm brought Me salvation, +6 +and My own wrath upheld Me. +I trampled the nations in My anger; +in My wrath I made them drunk +and poured out their blood on the +My delight is in her + +d 4 Beulah + +ground.” + +married + +Hebrew +Or + +Hebrew + + means + +. + + means + +. + + God’s Mercies Recalled + +16 + +Isaiah 64:7 | 673 + +7 + +I will make known the LORD’s loving + +devotion + +and His praiseworthy acts, + +because of all that the LORD has done for + +17 + +us— + +Yet You are our Father, + +though Abraham does not know us +and Israel does not acknowledge us. + +You, O LORD, are our Father; + +our Redeemer from Everlasting is Your + +name. + +the many good things for the house of + +Why, O LORD, do You make us stray from + +Israel + +Your ways + +according to His great compassion and + +and harden our hearts from fearing You? + +8 + +loving devotion. + +For He said, “They are surely My people, + +9 + +sons who will not be disloyal.” +So He became their Savior. + a + +In all their distress, He too was afflicted, + saved + +and the Angel of His Presence + +them. + +In His love and compassion He redeemed + +them; + +10 + +He lifted them up and carried them +all the days of old. + +But they rebelled + +and grieved His Holy Spirit. + +11 + +So He turned and became their enemy, +and He Himself fought against them. + +Then His people remembered the days of old, + +the days of Moses. + +Where is He who brought them through the + +sea + +with the shepherds of His flock? + +Where is the One who set + +12 + +His Holy Spirit among them, + +who sent His glorious arm + +to lead them by the right hand of Moses, + +who divided the waters before them + +13 + +14 + +who led them through the depths +like a horse in the wilderness, +so that they did not stumble? +Like cattle going down to the valley, + +the Spirit of the LORD gave them rest. + +You led Your people this way + +A Prayer for Mercy +(Jeremiah 14:19–22) + +to make for Yourself a glorious name. + +15 + +to gain for Himself everlasting renown, + +5 + +18 + +Return, for the sake of Your servants, + +the tribes of Your heritage. + +For a short while Your people possessed + +Your holy place, + +19 + +but our enemies have trampled Your + +sanctuary. + +We have become like those You never ruled, + +A Prayer for God’s Power + +like those not called by Your name. + +64 + + If only You would rend the heavens + +and come down, + +2 + +so that mountains would quake at Your + +presence, + +as fire kindles the brushwood + +and causes the water to boil, + +to make Your name known to Your enemies, +so that the nations will tremble at Your + +3 + +presence! + +When You did awesome works that we did + +not expect, + +4 + +You came down, and the mountains +trembled at Your presence. + +From ancient times no one has heard, + +no ear has perceived, + +no eye has seen any God besides You, + +b + +who acts on behalf of those who wait for + +Him. + +You welcome those who gladly do right, + +who remember Your ways. + +Surely You were angry, for we sinned. + +6 + +How can we be saved if we remain in our + +sins? + +Each of us has become like something + +unclean, + c + +and all our righteous acts are like filthy + +rags; + +Look down from heaven and see, + +we all wither like a leaf, + +from Your holy and glorious habitation. + +7 + +and our iniquities carry us away like the + +Where are Your zeal and might? + +wind. + +Your yearning and compassion for me are +restrained. +b 4 +angel of His presence + +No one calls on Your name +like a stained menstrual garment + +or strives to take hold of You. + +c 6 + +a 9 + +Or + +Cited in 1 Corinthians 2:9 + +Or + + 674 | Isaiah 64:8 + +For You have hidden Your face from us + +both for your iniquities + + a + +7 + +8 + +and delivered us into the hand + + of our + +iniquity. + +and for those of your fathers,” + +says the LORD. + +But now, O LORD, You are our Father; + +9 + +we are the clay, and You are the potter; +we are all the work of Your hand. + +Do not be angry, O LORD, beyond measure; +do not remember our iniquity forever. + +8 + + “Because they burned incense on the + +mountains + +and scorned Me on the hills, + +I will measure into their laps + +full payment for their former deeds.” + +Oh, look upon us, we pray; +we are all Your people! + +10 + +Your holy cities have become a wilderness. + +11 + +Zion has become a wasteland and +Jerusalem a desolation. +Our holy and beautiful temple, + +where our fathers praised You, + +12 + +has been burned with fire, + +and all that was dear to us lies in ruins. + +After all this, O LORD, + +will You restrain Yourself? + +Will You keep silent + +Judgments and Promises (Romans 10:1–21) + +and afflict us beyond measure? + +65 + +“I revealed Myself to those who did not + +ask for Me; + +b + +This is what the LORD says: + +“As the new wine is found in a cluster of + +grapes, + +and men say, ‘Do not destroy it, for it + +contains a blessing,’ + +so I will act on behalf of My servants; +9 + +I will not destroy them all. + +And I will bring forth descendants from + +Jacob, + +and heirs from Judah; + +d + +10 + +My elect will possess My mountains, + +and My servants will dwell there. +Sharon will become a pasture for flocks, + +and the Valley of Achor a resting place for + +11 + +herds, + +for My people who seek Me. + +I was found by those who did not seek + +But you who forsake the LORD, + + e + +Me. + +To a nation that did not call My name, +2 +I said, ‘Here I am! Here I am!’ +All day long I have held out My hands + + c + +to an obstinate people +who walk in the wrong path, +3 + +who follow their own imaginations, +to a people who continually provoke Me + +to My face, + +4 + +sacrificing in the gardens +and burning incense on altars of brick, + +sitting among the graves, + +spending nights in secret places, + +eating the meat of pigs + +5 + +and polluted broth from their bowls. + +They say, ‘Keep to yourself; + +do not come near me, for I am holier than + +you!’ + +Such people are smoke in My nostrils, +6 + +a fire that burns all day long. +Behold, it is written before Me: + +who forget My holy mountain, + +f + +12 + +who set a table for Fortune + +and fill bowls of mixed wine for Destiny, + +I will destine you for the sword, + +and you will all kneel down to be + +slaughtered, + +because I called and you did not answer, + +I spoke and you did not listen; + +13 + +you did evil in My sight + +and chose that in which I did not delight.” + +Therefore this is what the Lord GOD says: + +“My servants will eat, + +but you will go hungry; + +My servants will drink, + +but you will go thirsty; + +14 + +My servants will rejoice, + +but you will be put to shame. + +My servants will shout for joy with a glad + +heart, + +15 + +but you will cry out with a heavy heart +and wail with a broken spirit. + +I will not keep silent, but I will repay; +I will pay it back into their laps, + +a 7 +disobedient and obstinate people +possess them +Gad + +LXX, Syriac, and Targum Yonaton; MT + +e 11 + +You will leave behind your name +c 2 +as a curse for My chosen ones, + +b 1 + +to a + +d 9 + +and heirs to My mountains out of Judah; My elect will +Cited in Romans 10:20 + +LXX + +Meni + +f 11 + +have made us melt in the hand + +Hebrew + +; cited in Romans 10:21 +, the Babylonian god of fortune + +Or + +Hebrew + +, the Babylonian god of fate + + and the Lord GOD will slay you; + +but the food of the serpent + + will be dust. + +Isaiah 66:7 | 675 + + b + +16 + +but to His servants He will give another + +name. + +Whoever invokes a blessing in the land + +will do so by the God of truth, +and whoever takes an oath in the land +will swear by the God of truth. + +For the former troubles will be forgotten + +A New Heaven and a New Earth +(Revelation 21:1–8) + +and hidden from My sight. + +17 + +For behold, I will create + +new heavens and a new earth. + +a + +18 + +The former things will not be remembered, + +nor will they come to mind. +But be glad and rejoice forever + +in what I create; + +19 + +for I will create Jerusalem to be a joy +and its people to be a delight. + +I will rejoice in Jerusalem + +and take delight in My people. +The sounds of weeping and crying +will no longer be heard in her. + +20 + +No longer will a nursing infant live but a few + +days, + +or an old man fail to live out his years. +For the youth will die at a hundred years, +and he who fails to reach a hundred +will be considered accursed. + +21 + +They will build houses and dwell in them; +they will plant vineyards and eat their + +22 + +fruit. + +No longer will they build houses for others to + +inhabit, + +nor plant for others to eat. +For as is the lifetime of a tree, + +so will be the days of My people, +and My chosen ones will fully enjoy + +23 + +the work of their hands. + +They will not labor in vain + +or bear children doomed to disaster; + +for they will be a people blessed by the + +24 + +LORD— + +they and their descendants with them. + +Even before they call, I will answer, + +25 + +and while they are still speaking, I will + +hear. + +a 17 + +The wolf and the lamb will feed together, +and the lion will eat straw like the ox, + +a new heaven and a new earth + c 2 + +snake + +They will neither harm nor destroy +on all My holy mountain,” + +says the LORD. + +Heaven Is My Throne + +66 + +This is what the LORD says: + +“Heaven is My throne, +and earth is My footstool. + +What kind of house will you build for Me? + c +2 +Or where will My place of repose be? + +Has not My hand made all these things? +And so they came into being,” + +declares the LORD. + +“This is the one I will esteem: + +3 + +he who is humble and contrite in spirit, +who trembles at My word. + +Whoever slaughters an ox is like one who + +slays a man; + +whoever sacrifices a lamb is like one who + +breaks a dog’s neck; + +whoever presents a grain offering is like one + +who offers pig’s blood; + +whoever offers frankincense is like one + +who blesses an idol. + +Indeed, they have chosen their own ways +4 +and delighted in their abominations. + +So I will choose their punishment + +and I will bring terror upon them, +because I called and no one answered, + +I spoke and no one listened. + +But they did evil in My sight + +5 + +and chose that in which I did not delight.” + +You who tremble at His word, +hear the word of the LORD: + +“Your brothers who hate you + +and exclude you because of My name + +have said, ‘Let the LORD be glorified + +6 + +that we may see your joy!’ +But they will be put to shame.” + +Hear the uproar from the city; + +listen to the voice from the temple! + +It is the voice of the LORD, + +Rejoice with Jerusalem + +repaying His enemies what they deserve! + +7 + +“Before she was in labor, she gave birth; +before she was in pain, she delivered + +a boy. + +b 25 + +nachash + +LXX +most cases as + +; see also Isaiah 66:22 and Revelation 21:1. + +Hebrew + +; translated in + +Cited in Acts 7:49–50 + + 676 | Isaiah 66:8 + +8 + +17 + +Who has heard of such as this? +Who has seen such things? +Can a country be born in a day + +or a nation be delivered in an instant? + +Yet as soon as Zion was in labor, +9 +she gave birth to her children. + +Shall I bring a baby to the point of birth and + +not deliver it?” + +says the LORD. + +“Or will I who deliver close the womb?” + +10 + +says your God. + +Be glad for Jerusalem and rejoice over her, + +all who love her. +Rejoice greatly with her, + +11 + +all who mourn over her, + +so that you may nurse and be satisfied + +at her comforting breasts; + +you may drink deeply and delight yourselves + +12 + +in her glorious abundance. +For this is what the LORD says: +“I will extend peace to her like a river, + +and the wealth of nations like a flowing + +stream; + +13 + +you will nurse and be carried on her arm, + +and bounced upon her knees. + +As a mother comforts her son, + +14 + +so will I comfort you, +and you will be consoled over Jerusalem.” + +When you see, you will rejoice, + +and you will flourish like grass; + +then the hand of the LORD will be revealed to + +His servants, + +but His wrath will be shown to His + +Final Judgments against the Wicked +15 + +enemies. + +For behold, the LORD will come with fire— +His chariots are like a whirlwind— + +16 + +to execute His anger with fury + +and His rebuke with flames of fire. + +For by fire and by His sword, + +the LORD will execute judgment on + +all flesh, + +“Those who consecrate and purify themselves +to enter the groves—to follow one in the center +of those who eat the flesh of swine and vermin +and rats—will perish together,” declares the +18 +LORD. + + a + +“And I, knowing their deeds and thoughts, am + to gather all nations and tongues, and + +coming +19 +they will come and see My glory. + +I will establish a sign among them, and I will +send survivors from among them to the na- +tions—to Tarshish, Put, and the archers of Lud; + far away who +to Tubal, Javan, and the islands +have not heard of My fame or seen My glory. + + b + +20 + +So they will proclaim My glory among the na- +tions. +And they will bring all your brothers +from all the nations as a gift to the LORD on +horses and chariots and wagons, on mules and +camels, to My holy mountain Jerusalem,” says the +LORD, “just as the Israelites bring an offering in +21 +a clean vessel to the house of the LORD.” + +“And I will select some of them as priests and + +22 +Levites,” says the LORD. + +c +“For just as the new heavens and the + +new earth, + +which I will make, will endure + +declares the LORD, + +before Me,” + +“so your descendants and your name will + +23 + +endure. + +From one New Moon to another + +and from one Sabbath to another, + +all mankind will come to worship before Me,” + +24 + +says the LORD. + +“As they go forth, they will see the corpses + +of the men who have rebelled against Me; + +d + +for their worm will never die, + +their fire will never be quenched, + +and they will be a horror + +and many will be slain by the LORD. + + to all mankind.” + +a 18 +earth + +And I, their deeds and their thoughts, am coming + +b 19 + +coastlands + +c 22 + +the new heaven and the new + +d 24 + +Literally +; see also Isaiah 65:17 and Revelation 21:1. + +Or + +LXX + +Cited in Mark 9:48 + + Jeremiah + +The Call of Jeremiah + +12 + +1 + +These are the words of Jeremiah son of +Hilkiah, one of the priests in Anathoth in the + +2 +territory of Benjamin. + +3 + +The word of the LORD came to Jeremiah in the +thirteenth year of the reign of Josiah son of Amon +king of Judah, +and through the days of Jehoia- +kim son of Josiah king of Judah, until the fifth +month of the eleventh year of Zedekiah son of Jo- +siah king of Judah, when the people of Jerusalem +4 +went into exile. +5 +The word of the LORD came to me, saying: + + a + +“You have observed correctly,” said the LORD, + over My word to accomplish + +“for I am watching +13 +it.” + +Again the word of the LORD came to me, ask- + +ing, “What do you see?” + +“I see a boiling pot,” I replied, “and it is tilting +14 +toward us from the north.” + +15 + +Then the LORD said to me, “Disaster from the +north will be poured out on all who live in the +For I am about to summon all the clans +land. +and kingdoms of the north,” declares the LORD. + +“Their kings will come and set up their + +“Before I formed you in the womb I knew + +thrones + +you, + +and before you were born I set you apart +and appointed you as a prophet to + +the nations.” + +6 + +“Ah, Lord GOD,” I said, “I surely do not know + +7 +how to speak, for I am only a child!” + +But the LORD told me: + +“Do not say, + +‘I am only a child.’ + +For to everyone I send you, + +you must go, + +and all that I command you, +8 + +you must speak. +Do not be afraid of them, + +for I am with you to deliver you,” + +declares the LORD. + +9 + +Then the LORD reached out His hand, touched + +my mouth, and said to me: + +10 + +“Behold, I have put My words + +in your mouth. + +See, I have appointed you today +over nations and kingdoms + +to uproot and tear down, + +11 + +to destroy and overthrow, +to build and plant.” + +And the word of the LORD came to me, asking, + +“Jeremiah, what do you see?” + +at the entrance of the gates of Jerusalem. + +16 + +They will attack all her surrounding walls + +and all the other cities of Judah. +I will pronounce My judgments against + +them + +for all their wickedness, +because they have forsaken Me, + +and they have burned incense to other + +gods + +17 + +and worshiped the works of their +b + +own hands. + +Get yourself ready. + + Stand up and tell them +everything that I command you. Do not be intim- +18 +idated by them, or I will terrify you before them. +Now behold, this day I have made you like a +fortified city, an iron pillar, and bronze walls +against the whole land—against the kings of Ju- +dah, its officials, its priests, and the people of the +They will fight against you but will never +land. +overcome you, since I am with you to deliver +Israel Has Forsaken God +you,” declares the LORD. + +19 + +2 + +2 + +Now the word of the LORD came to me, say- +ing, +“Go and proclaim in the hearing of Je- + +rusalem that this is what the LORD says: + +‘I remember the devotion of your youth, + +your love as a bride, + +how you followed Me in the wilderness, + +a 12 +“I see a branch of an almond tree,” I replied. + +watching + +almond tree + +in a land not sown. + +b 17 + +Gird up your loins. + +The Hebrew for + + sounds like the Hebrew for + +. + +Hebrew + + 678 | Jeremiah 2:3 + +3 + +Israel was holy to the LORD, + +the firstfruits of His harvest. + +All who devoured her +were found guilty; +disaster came upon them,’ +declares the LORD. + +” + +4 + +13 + +“For My people have committed two evils: + +They have forsaken Me, + +the fountain of living water, + +and they have dug their own cisterns— + +The Consequence of Israel’s Sin + +broken cisterns that cannot hold water. + +5 + +14 + +Hear the word of the LORD, O house of Jacob, +This + +and all you families of the house of Israel. +is what the LORD says: + + “What fault did your fathers find in Me +that they strayed so far from Me? + +They followed worthless idols, + +6 + +and became worthless themselves. +They did not ask, ‘Where is the LORD +who brought us up from the land + +of Egypt, + +who led us through the wilderness, + +through a land of deserts and pits, + +a land of drought and darkness, + +7 + +a land where no one travels and no one + +lives?’ + +I brought you into a fertile land +to eat its fruit and bounty, +but you came and defiled My land +8 + +and made My inheritance detestable. + +The priests did not ask, +‘Where is the LORD?’ + +The experts in the law no longer + +knew Me, + +and the leaders rebelled against Me. + +The prophets prophesied by Baal +and followed useless idols. + +9 + +Therefore, I will contend with you again, + +declares the LORD, +and I will bring a case + +10 + + a + +against your children’s children. + +Cross over to the coasts of Cyprus + +and take a look; + +send to Kedar and consider carefully; +see if there has ever been anything + +11 + +like this: + +Has a nation ever changed its gods? +(Yet they are not gods at all.) + + b + +But My people have exchanged their Glory + +12 + +for useless idols. + +Be stunned by this, O heavens; + +be shocked and utterly appalled,” +their glorious God + +Kittim + +a 10 + +c 16 + +declares the LORD. + +e 18 +Hebrew + +River + +Hebrew + +b 11 +the River +Or + +Is Israel a slave? + +15 + +Was he born into slavery? +Why then has he become prey? +The young lions have roared at him; +they have sounded their voices. + +They have laid waste his land; + +16 + +his cities lie in ruins, without + + c + +inhabitant. + +The men of Memphis + +17 + + and Tahpanhes + +have shaved the crown of your head. + +Have you not brought this on yourself +by forsaking the LORD your God +when He led you in the way? + +18 + +Now what will you gain on your way + + d + +to Egypt + +to drink the waters of the Nile +What will you gain on your way + +? + + e + +19 + +to Assyria + +to drink the waters of the Euphrates + +? + +Your own evil will discipline you; + +your own apostasies will reprimand you. + +Consider and realize + +how evil and bitter it is + +for you to forsake the LORD your God + +and to have no fear of Me,” + +declares the Lord GOD of Hosts. + +20 + +“For long ago you broke your yoke + +and tore off your chains, +saying, ‘I will not serve!’ + +Indeed, on every high hill + +21 + +and under every green tree +you lay down as a prostitute. +I had planted you like a choice vine + +from the very best seed. + +How could you turn yourself before Me + +22 + +into a rotten, wild vine? + +Although you wash with lye + +and use an abundance of soap, + +the stain of your guilt + +is still before Me,” declares the Lord GOD. +of Shihor +Noph + +d 18 + +LXX; Hebrew + +Hebrew + +, a branch of the Nile + + Israel’s Unfaithfulness +(Judges 2:10–15 ; Isaiah 43:22–28) + +23 + +“How can you say, ‘I am not defiled; +I have not run after the Baals’? +Look at your behavior in the valley; + +acknowledge what you have done. + +24 + +You are a swift young she-camel +galloping here and there, + +a wild donkey at home in the wilderness, + +sniffing the wind in the heat of her desire. +Who can restrain her passion? + +25 + +All who seek her need not weary themselves; + +in mating season they will find her. + +You should have kept your feet from + +going bare + +and your throat from being thirsty. + +But you said, ‘It is hopeless! +For I love foreign gods, +and I must go after them.’ + +26 + +As the thief is ashamed when he is + +caught, + +so the house of Israel is disgraced. + +27 + +They, their kings, their officials, + +their priests, and their prophets + +say to a tree, ‘You are my father,’ + +and to a stone, ‘You gave me birth.’ + +They have turned their backs to Me + +and not their faces. + +Yet in the time of trouble, they say, + +28 + +‘Rise up and save us!’ + +But where are the gods you made for + +yourselves? + +Let them rise up in your time of trouble +and save you if they can; +for your gods are as numerous +as your cities, O Judah. + +29 + +Why do you bring a case against Me? +You have all rebelled against Me,” + +declares the LORD. + +30 + +“I have struck your sons in vain; +they accepted no discipline. + +Your own sword has devoured your prophets + +31 + +like a voracious lion.” + +Jeremiah 3:5 | 679 + +32 + +Does a maiden forget her jewelry +or a bride her wedding sash? +Yet My people have forgotten Me +for days without number. + +33 + +How skillfully you pursue love! + +34 + +Even the most immoral of women +could learn from your ways. +Moreover, your skirts are stained + +with the blood of the innocent poor, +though you did not find them breaking in. + +35 + +But in spite of all these things +you say, ‘I am innocent. +Surely His anger will turn from me.’ + +Behold, I will judge you, + +36 + +because you say, ‘I have not sinned.’ + +How impulsive you are, + +37 + +constantly changing your ways! +You will be disappointed by Egypt +just as you were by Assyria. +Moreover, you will leave that place +with your hands on your head, + +The Wages of the Harlot + +for the LORD has rejected those you trust; +you will not prosper by their help.” + +3 + + “If a man divorces his wife +and she leaves him to marry another, + +can he ever return to her? + +Would not such a land be completely + +defiled? + +But you have played the harlot with many + +lovers— + +and you would return to Me?” + +declares the LORD. + +2 + +“Lift up your eyes to the barren heights and + +see. + +Is there any place where you have not + +been violated? + +You sat beside the highways waiting for your + +lovers, + +like a nomad in the desert. + +You have defiled the land +3 + +with your prostitution and wickedness. +Therefore the showers have been withheld, + +You people of this generation, consider the + +and no spring rains have fallen. + +word of the LORD: + +“Have I been a wilderness to Israel +or a land of dense darkness? + +Why do My people say, + +‘We are free to roam; +we will come to You no more’? + +Yet you have the brazen look of a prostitute; +4 + +you refuse to be ashamed. + +Have you not just called to Me, + +5 + +‘My Father, You are my friend from youth. + +Will He be angry forever? + +Will He be indignant to the end?’ + + 680 | Jeremiah 3:6 + +This you have spoken, + +Judah Follows Israel’s Example + +but you keep doing all the evil you can.” + +6 + +Now in the days of King Josiah, the LORD said to +me, “Have you seen what faithless Israel has +done? She has gone up on every high hill and un- +7 +der every green tree to prostitute herself there. +I thought that after she had done all these +things, she would return to Me. But she did not +8 +return, and her unfaithful sister Judah saw it. + + a + +She saw + + that because faithless Israel had com- +mitted adultery, I gave her a certificate of divorce +and sent her away. Yet that unfaithful sister Ju- +9 +dah had no fear and prostituted herself as well. +Indifferent to her own infidelity, Israel had de- +filed the land and committed adultery with +Yet in spite of all this, her un- +stones and trees. +faithful sister Judah did not return to Me with all +her heart, but only in pretense,” declares the +A Call to Repentance (Hos. 14:1–3 ; Zech. 1:1–6) +LORD. +11 + +10 + +12 + +And the LORD said to me, “Faithless Israel has +shown herself more righteous than unfaithful +Go, proclaim this message toward the +Judah. +north: + +‘Return, O faithless Israel,’ declares the LORD. +‘I will no longer look on you with anger, + +13 + +for I am merciful,’ declares the LORD. + +‘I will not be angry forever. +Only acknowledge your guilt, + +that you have rebelled against the LORD + +your God. + +You have scattered your favors to foreign + +gods + +under every green tree +and have not obeyed My voice,’ + +declares the LORD. +” + +14 + +“Return, O faithless children,” declares the +LORD, “for I am your master, and I will take +15 +you—one from a city and two from a family— +Then I will give you +and bring you to Zion. +shepherds after My own heart, who will feed you +16 +with knowledge and understanding.” + +“In those days, when you multiply and in- +crease in the land,” declares the LORD, “they will +no longer discuss the ark of the covenant of the +LORD. It will never come to mind, and no one will +remember it or miss it, nor will another one be +a 8 +made. + +I saw + +DSS, one LXX manuscript, and Syriac; MT + +17 + +18 + +At that time they will call Jerusalem The +Throne of the LORD, and all the nations will be +gathered in Jerusalem to honor the name of the +LORD. They will no longer follow the stubborn- +In those days the +ness of their evil hearts. +house of Judah will walk with the house of Israel, +and they will come together from the land of the +north to the land that I gave to your fathers as an +19 +inheritance. + +Then I said, ‘How I long to make you My sons + +and give you a desirable land, + +the most beautiful inheritance + +of all the nations!’ + +20 + +I thought you would call Me ‘Father’ + +and never turn away from following Me. + +But as a woman may betray her husband, +so you have betrayed Me, O house + +declares the LORD. + +21 + +of Israel,” + +A voice is heard on the barren heights, + +the children of Israel weeping and begging + +for mercy, + +22 + +because they have perverted their ways +and forgotten the LORD their God. + +“Return, O faithless children, + +and I will heal your faithlessness.” + +23 + +“Here we are. We come to You, + +for You are the LORD our God. +Surely deception comes from the hills, + +and commotion from the mountains. + +24 + +Surely the salvation of Israel +is in the LORD our God. + +From our youth, that shameful god + +has consumed what our fathers have + +worked for— + +25 + +their flocks and herds, + +their sons and daughters. +Let us lie down in our shame; +let our disgrace cover us. + +We have sinned against the LORD our God, + +both we and our fathers; +from our youth even to this day + +we have not obeyed the voice of the LORD + +A Plea to Return + +our God.” + +4 + +“If you will return, O Israel, +return to Me,” declares the LORD. + +“If you will remove your detestable idols from + +My sight + +and no longer waver, + + Jeremiah 4:24 | 681 + +2 + +12 + +and if you can swear, ‘As surely as the LORD + +lives,’ + +a wind too strong for that comes from Me. +sift; +13 +Now I also pronounce judgments against them.” + +in truth, in justice, and in righteousness, + +then the nations will be blessed by Him, + +and in Him they will glory.” + +3 + +For this is what the LORD says to the men of + +Judah and Jerusalem: + +“Break up your unplowed ground, +4 + +and do not sow among the thorns. + +Circumcise yourselves to the LORD, + +and remove the foreskins of your hearts, +O men of Judah and people of Jerusalem. + +Otherwise, My wrath will break out + +like fire + +Disaster from the North + +and burn with no one to extinguish it, +because of your evil deeds.” + +5 + +Announce in Judah, proclaim in Jerusalem, and + +say: + +Behold, he advances like the clouds, +his chariots like the whirlwind. +His horses are swifter than eagles. +Woe to us, for we are ruined! + +14 + +Wash the evil from your heart, + +O Jerusalem, + +so that you may be saved. + +15 + +How long will you harbor + +wicked thoughts within you? +For a voice resounds from Dan, + +16 + +proclaiming disaster from the hills + +of Ephraim. + +Warn the nations now! + +Proclaim to Jerusalem: + +“A besieging army comes from a distant land; +they raise their voices against the cities of + +17 + +Judah. + +They surround her like men guarding + +a field, + +“Blow the ram’s horn throughout the land. + +18 + +because she has rebelled against Me,” + +Cry aloud and say, +‘Assemble yourselves +6 + +and let us flee to the fortified cities.’ + +Raise a signal flag toward Zion. +Seek refuge! Do not delay! + +For I am bringing disaster from the north, +7 + +and terrible destruction. + +A lion has gone up from his thicket, + +and a destroyer of nations has set out. + +He has left his lair + +to lay waste your land. + +Your cities will be reduced to ruins +8 + +and lie uninhabited. + +So put on sackcloth, +mourn and wail, + +9 + +for the fierce anger of the LORD + +has not turned away from us.” + +“In that day,” declares the LORD, + +“the king and officials will lose their + +courage. + +The priests will tremble in fear, + +10 + +and the prophets will be astounded.” + +Then I said, “Ah, Lord GOD, how completely +You have deceived this people and Jerusalem by +saying, ‘You will have peace,’ while a sword is at +11 +our throats.” + +At that time it will be said to this people +and to Jerusalem, “A searing wind from the bar- +ren heights in the desert blows toward the +daughter of My people, but not to winnow or to + +declares the LORD. + +“Your ways and deeds + +have brought this upon you. + +This is your punishment; how bitter it is, + +Lamentation for Judah + +because it pierces to the heart!” + +19 + +My anguish, my anguish! I writhe in pain! + +Oh, the pain in my chest! +My heart pounds within me; + +I cannot be silent. + +20 + +For I have heard the sound of the horn, + +the alarm of battle. + +Disaster after disaster is proclaimed, +for the whole land is laid waste. +My tents are destroyed in an instant, + +21 + +my curtains in a moment. + +22 + +How long must I see the signal flag +and hear the sound of the horn? + +“For My people are fools; + +they have not known Me. + +They are foolish children, + +without understanding. +They are skilled in doing evil, + +23 + +but they know not how to do good.” + +I looked at the earth, + +and it was formless and void; + +24 + +I looked to the heavens, +and they had no light. +I looked at the mountains, + +and behold, they were quaking; +all the hills were swaying. + + 682 | Jeremiah 4:25 + +25 + +26 + +I looked, and no man was left; + +all the birds of the air had fled. + +I looked, and the fruitful land was a desert. + +All its cities were torn down + +before the LORD, + +27 + +before His fierce anger. + +For this is what the LORD says: + +28 + +“The whole land will be desolate, + +but I will not finish its destruction. + +Therefore the earth will mourn + +They have made their faces harder than stone + +4 + +and refused to repent. + +Then I said, “They are only the poor; + +they have played the fool, + +for they do not know the way of the LORD, + +5 + +the justice of their God. + +I will go to the powerful +and speak to them. + +Surely they know the way of the LORD, + +the justice of their God.” + +and the heavens above will grow dark. + +But they too, with one accord, had broken the + +I have spoken, I have planned, + +29 + +and I will not relent or turn back.” + +Every city flees + +at the sound of the horseman and archer. + +They enter the thickets + +and climb among the rocks. + +30 + +Every city is abandoned; +no inhabitant is left. + +And you, O devastated one, what will + +you do, + +though you dress yourself in scarlet, + +though you adorn yourself with gold jewelry, +though you enlarge your eyes with paint? + +You adorn yourself in vain; your lovers + +31 + +despise you; + +they want to take your life. + +For I hear a cry like a woman in labor, + +a cry of anguish like one bearing her first + +child— + +the cry of the Daughter of Zion gasping for + +breath, + +stretching out her hands to say, + +“Woe is me, +No One Is Just + +for my soul faints before the murderers!” + +5 + + “Go up and down the streets of Jerusalem. +Look now and take note; search her + +squares. + +If you can find a single person, +anyone who acts justly, +anyone who seeks the truth, +2 + +then I will forgive the city. + +6 + +yoke + +and torn off the chains. + +Therefore a lion from the forest will strike + +them down, + +a wolf from the desert will ravage them. + +A leopard will lie in wait near their cities, +and everyone who ventures out will be + +torn to pieces. + +For their rebellious acts are many, +7 + +and their unfaithful deeds are numerous. + +“Why should I forgive you? + +Your children have forsaken Me +and sworn by gods that are not gods. +I satisfied their needs, yet they committed + +adultery + +8 + +and assembled at the houses of + +prostitutes. + +They are well-fed, lusty stallions, + +9 + +each neighing after his neighbor’s wife. +Should I not punish them for these things?” + +declares the LORD. +“Should I not avenge Myself +on such a nation as this? + +10 + +Go up through her vineyards and ravage + +them, + +but do not finish them off. + +11 + +Strip off her branches, + +for they do not belong to the LORD. +For the house of Israel and the house of + +Judah + +have been utterly unfaithful to Me,” + +declares the LORD. + +12 + +Although they say, ‘As surely as the LORD + +They have lied about the LORD and said: + +3 + +lives,’ + +they are swearing falsely.” + +O LORD, do not Your eyes look for truth? +You struck them, but they felt no pain. + +You finished them off, + +a 13 + +let this befall them. + +but they refused to accept discipline. + +Literally + +“He will not do anything; harm will not come + +13 + +to us; + +we will not see sword or famine. + +The prophets are but wind, + +a + +for the word is not in them. +So let their own predictions befall them. + +” + + Judgment Proclaimed + +14 + +Therefore this is what the LORD God of Hosts + +says: + +“Because you + + have spoken this word, + +15 + +I will make My words a fire in your mouth +and this people the wood it consumes. +Behold, I am bringing a distant nation against + +you, + +O house of Israel,” declares the LORD. + +“It is an established nation, + +an ancient nation, + +16 + +a nation whose language you do not know + +and whose speech you do not understand. + +17 + +Their quivers are like open graves; + +they are all mighty men. + +They will devour your harvest and food; +they will consume your sons and + +daughters; + +they will eat up your flocks and herds; + +they will feed on your vines and fig trees. + +With the sword they will destroy + +18 + +the fortified cities in which you trust.” + +19 + +“Yet even in those days,” declares the LORD, “I +will not make a full end of you. +And when the +people ask, ‘For what offense has the LORD our +God done all these things to us?’ You are to tell +them, ‘Just as you have forsaken Me and served +foreign gods in your land, so will you serve +20 +foreigners in a land that is not your own.’ + +” + +Declare this in the house of Jacob and proclaim + +21 +it in Judah: + +“Hear this, + +O foolish and senseless people, + +22 + +who have eyes but do not see, + +who have ears but do not hear. + +Do you not fear Me?” +declares the LORD. + +“Do you not tremble before Me, + +the One who set the sand as the boundary + +for the sea, + +an enduring barrier it cannot cross? +The waves surge, but they cannot prevail. + +They roar but cannot cross it. + +23 + +But these people have stubborn and + +24 + +rebellious hearts. + +They have turned aside and gone away. + +They have not said in their hearts, +‘Let us fear the LORD our God, + +Jeremiah 6:5 | 683 + +25 + +who keeps for us the appointed weeks of + +harvest.’ + +26 + +Your iniquities have diverted these from you; +your sins have deprived you of My bounty. + +For among My people are wicked men; +they watch like fowlers lying in wait; +they set a trap to catch men. + +27 + +Like cages full of birds, + +so their houses are full of deceit. +Therefore they have become powerful + +and rich. + +28 + +They have grown fat and sleek, + +and have excelled in the deeds of the + +wicked. + +They have not taken up the cause of the + +fatherless, + +that they might prosper; + +nor have they defended + +29 + +the rights of the needy. + +Should I not punish them for these things?” + +declares the LORD. + +“Should I not avenge Myself +on such a nation as this? + +30 + +31 + +A horrible and shocking thing +has happened in the land. +The prophets prophesy falsely, + +and the priests rule by their own + +authority. + +My people love it so, + +Jerusalem’s Final Warning + +but what will you do in the end? + +6 + +“Run for cover, O sons of Benjamin; +flee from Jerusalem! + +Sound the ram’s horn in Tekoa; + +send up a signal over Beth-haccherem, + +for disaster looms from the north, + +2 + +even great destruction. + +a + +3 + +Though she is beautiful and delicate, +I will destroy the Daughter of Zion. + +Shepherds and their flocks +will come against her; + +they will pitch their tents all around her, + +4 + +each tending his own portion: + +‘Prepare for battle against her; + +rise up, let us attack at noon. +Woe to us, for the daylight is fading; +the evening shadows grow long. + +5 + +who gives the rains, both autumn and spring, + +a 2 + +To a lovely and delicate woman I have likened the Daughter of Zion + +in season, + +Rise up, let us attack by night +and destroy her fortresses!’ + +” + +Or + + 684 | Jeremiah 6:6 + +6 + +For this is what the LORD of Hosts says: + +“Cut down the trees + +and raise a siege ramp against Jerusalem. + +This city must be punished; +7 + +there is nothing but oppression in + +her midst. + +As a well gushes + + its water, + +so she pours out her evil. + +Violence and destruction resound in her; +8 + +sickness and wounds are ever + +before Me. + +Be forewarned, O Jerusalem, + +or I will turn away from you; + +9 + +I will make you a desolation, + +a land without inhabitant.” + +This is what the LORD of Hosts says: + +“Glean the remnant of Israel +as thoroughly as a vine. + +Pass your hand once more like a grape + +10 + +gatherer + +over the branches.” + +To whom can I give this warning? + +a + +Who will listen to me? +Look, their ears are closed, +so they cannot hear. + +See, the word of the LORD has become + +11 + +offensive to them; +they find no pleasure in it. +But I am full of the LORD’s wrath; +I am tired of holding it back. + +“Pour it out on the children in the street, + +and on the young men gathered together. +For both husband and wife will be captured, + +12 + +the old and the very old alike. + +No, they have no shame at all; +they do not even know how to blush. + +So they will fall among the fallen; + +when I punish them, they will collapse,” + +says the LORD. + +16 + +This is what the LORD says: + +“Stand at the crossroads and look. + +Ask for the ancient paths: ‘Where is the + +good way?’ + +Then walk in it, and you will find rest for + +17 + +your souls. + +But they said, ‘We will not walk in it!’ +I appointed watchmen over you and said, +‘Listen for the sound of the ram’s horn.’ +But they answered, ‘We will not listen!’ + +18 + +Therefore hear, O nations, + +19 + +and learn, O congregations, +what will happen to them. + +Hear, O earth! I am bringing disaster on this + +people, + +the fruit of their own schemes, + +because they have paid no attention to My + +20 + +word + +and have rejected My instruction. + +What use to Me is frankincense from Sheba + +or sweet cane from a distant land? +Your burnt offerings are not acceptable; +your sacrifices do not please Me.” + +21 + +Therefore this is what the LORD says: + +“I will lay stumbling blocks before this + +people; + +An Invasion from the North + +fathers and sons alike will be staggered; +friends and neighbors will perish.” + +22 + +Their houses will be turned over to others, + +This is what the LORD says: + +their fields and wives as well, + +for I will stretch out My hand + +against the inhabitants of the land,” + +declares the LORD. + +13 + +“For from the least of them to the greatest, + +all are greedy for gain; + +14 + +from prophet to priest, +all practice deceit. + +They dress the wound of My people + +with very little care, + +15 + +saying, ‘Peace, peace,’ + +when there is no peace at all. + +Are they ashamed of the abomination they + +a 10 + +uncircumcised + +b 23 +have committed? + +javelin + +Hebrew + +Or + +“Behold, an army is coming + +from the land of the north; + +23 + +a great nation is stirred up + + b + +from the ends of the earth. +They grasp the bow and spear; + +they are cruel and merciless. + +Their voice roars like the sea, +and they ride upon horses, +lined up like men in formation + +24 + +against you, O Daughter of Zion.” + +We have heard the report; +our hands hang limp. +Anguish has gripped us, + +pain like that of a woman in labor. + + 25 + +10 + +Jeremiah 7:24 | 685 + +26 + +Do not go out to the fields; +do not walk the road. +For the enemy has a sword; +terror is on every side. +O daughter of my people, + +dress yourselves in sackcloth and roll in + +ashes. + +Mourn with bitter wailing, + +as you would for an only son, + +27 + +for suddenly the destroyer +will come upon us. + +a + +“I have appointed you to examine My people + +28 + +like ore, + +so you may know and try their ways. + +All are hardened rebels, + +walking around as slanderers. + +29 + +They are bronze and iron; +all of them are corrupt. +The bellows blow fiercely, + +blasting away the lead with fire. + +30 + +The refining proceeds in vain, + +for the wicked are not purged. + +They are called rejected silver, + +Jeremiah’s Message at the Temple Gate + +because the LORD has rejected them.” + +7 + +2 + +3 + +This is the word that came to Jeremiah from +“Stand in the gate of the +the LORD, saying, +house of the LORD and proclaim this message: +Hear the word of the LORD, all you people of Ju- +dah who enter through these gates to worship +Thus says the LORD of Hosts, the God +the LORD. +of Israel: Correct your ways and deeds, and I will +Do not trust in decep- +let you live in this place. +tive words, saying: + +4 + + ‘This is the temple of the LORD, +the temple of the LORD, +the temple of the LORD.’ + +5 + +6 + +For if you really correct your ways and deeds, if +if you no +you act justly toward one another, +longer oppress the foreigner and the fatherless +and the widow, and if you no longer shed inno- +cent blood in this place or follow other gods to +then I will let you live in this +your own harm, +place, in the land that I gave to your fathers for- +8 +ever and ever. + +7 + +9 + +But look, you keep trusting in deceptive words +Will you steal and murder, commit +to no avail. +adultery and perjury, burn incense to Baal, and +a 27 +follow other gods that you have not known, +rising up early and speaking, + +to examine My people, a fortress + +b 11 + +11 + +and then come and stand before Me in this +house, which bears My Name, and say, ‘We are +delivered, so we can continue with all these +Has this house, which bears +abominations’? + in your +My Name, become a den of robbers +12 +sight? Yes, I too have seen it, declares the LORD. + + b + + c + +14 + +13 + +But go now to the place in Shiloh where I first +made a dwelling for My Name, and see what I did +to it because of the wickedness of My people Is- +And now, because you have done all these +rael. +things, declares the LORD, and because I have + but you would +spoken to you again and again +not listen, and I have called to you but you would +therefore what I did to Shiloh I will +not answer, +now do to the house that bears My Name, the +house in which you trust, the place that I gave to +And I will cast you out of +you and your fathers. +My presence, just as I have cast out all your +Judah’s Idolatry Persists +brothers, all the descendants of Ephraim. +16 + +15 + +18 + +17 + +As for you, do not pray for these people, do not +offer a plea or petition on their behalf, and do not +Do you not +beg Me, for I will not listen to you. +see what they are doing in the cities of Judah and +in the streets of Jerusalem? +The sons gather +wood, the fathers light the fire, and the women +knead the dough to make cakes for the Queen of +Heaven; they pour out drink offerings to other +But am I the One +gods to provoke Me to anger. +they are provoking? declares the LORD. Is it not +20 +themselves they spite, to their own shame? + +19 + +Therefore this is what the Lord GOD says: Be- +hold, My anger and My fury will be poured out on +this place, on man and beast, on the trees of the +field and the produce of the land, and it will burn +21 +and not be extinguished. + +22 + +This is what the LORD of Hosts, the God of Is- +rael, says: Add your burnt offerings to your other +For +sacrifices and eat the meat yourselves! +when I brought your fathers out of the land of +Egypt, I did not merely command them about +but this is what +burnt offerings and sacrifices, +I commanded them: Obey Me, and I will be your +God, and you will be My people. You must walk +in all the ways I have commanded you, so that it +24 +may go well with you. + +23 + +Yet they did not listen or incline their ear, but +they followed the stubborn inclinations of their +c 13 +own evil hearts. They went backward and not + +I have spoken to you, + +Or + +Cited in Mt. 21:13, Mk. 11:17, and Lk. 19:46 + +Lit. + + 686 | Jeremiah 7:25 + +25 + +From the day your fathers came out +forward. +a +of the land of Egypt until this day, I have sent you +26 +all My servants the prophets again and again. + +Yet they would not listen to Me or incline their +ear, but they stiffened their necks and did more +27 +evil than their fathers. + +28 + +When you tell them all these things, they will +not listen to you. When you call to them, they will +not answer. +Therefore you must say to them, +‘This is the nation that would not listen to the +voice of the LORD their God and would not +receive correction. Truth has perished; it has dis- +appeared from their lips. +Cut off your hair and +throw it away. Raise up a lamentation on the +barren heights, for the LORD has rejected and +The Valley of Slaughter +forsaken the generation of His wrath.’ +30 + +29 + +31 + +For the people of Judah have done evil in My +sight, declares the LORD. They have set up their +abominations in the house that bears My Name, +They have built the high +and so have defiled it. +places of Topheth in the Valley of Ben-hinnom so +they could burn their sons and daughters in the +fire—something I never commanded, nor did it +32 +even enter My mind. + +So behold, the days are coming, declares +the LORD, when this place will no longer be +called Topheth and the Valley of Ben-hinnom, +but the Valley of Slaughter. For they will bury the +33 +dead in Topheth until there is no more room. +The corpses of this people will become food for +the birds of the air and the beasts of the earth, +34 +and there will be no one to scare them away. + +I will remove from the cities of Judah and the +streets of Jerusalem the sounds of joy and glad- +ness and the voices of the bride and bridegroom, +Judah’s Sin and Punishment +for the land will become a wasteland.” + +8 + +2 + +“At that time,” declares the LORD, “the bones +of the kings of Judah, the bones of the offi- +cials, the bones of the priests, the bones of the +prophets, and the bones of the people of Jerusa- +They +lem will be removed from their graves. +will be exposed to the sun and moon, and to all +the host of heaven which they have loved, served, +followed, consulted, and worshiped. Their bones +will not be gathered up or buried, but will +And +become like dung lying on the ground. +a 25 +wherever I have banished them, the remnant of + +3 + +this evil family will choose death over life,” +4 +declares the LORD of Hosts. + +So you are to tell them this is what the LORD + +says: + +“Do men fall and not get up again? +5 + +Does one turn away and not return? +Why then have these people turned away? +Why does Jerusalem always turn away? + +They cling to deceit; +6 + +they refuse to return. +I have listened and heard; + +they do not speak what is right. +No one repents of his wickedness, +asking, ‘What have I done?’ + +Everyone has pursued his own course +7 +like a horse charging into battle. + +Even the stork in the sky + + b + +knows her appointed seasons. + +The turtledove, the swift, and the thrush + +keep their time of migration, + +but My people do not know + +8 + +the requirements of the LORD. + +How can you say, ‘We are wise, + +and the Law of the LORD is with us,’ +when in fact the lying pen of the scribes +9 + +has produced a deception? +The wise will be put to shame; + +they will be dismayed and trapped. + +Since they have rejected the word of + +10 + +the LORD, + +what wisdom do they really have? +Therefore I will give their wives to other + +men + +and their fields to new owners. + +For from the least of them to the greatest, + +all are greedy for gain; + +11 + +from prophet to priest, +all practice deceit. + +They dress the wound of the daughter of My + +people + +with very little care, + +12 + +saying, ‘Peace, peace,’ + +when there is no peace at all. + +Are they ashamed of the abomination they + +have committed? + +No, they have no shame at all; +they do not even know how to blush. + +So they will fall among the fallen; + +when I punish them, they will collapse, +says the LORD. + +b 7 + +I have sent you all My servants the prophets daily, rising up early and sending (them). + +Literally + +identification of some of these birds is uncertain. + +The precise + + 13 + +22 + +I will take away their harvest, + +declares the LORD. + +Is there no balm in Gilead? +Is no physician there? + +There will be no grapes on the vine, + +Why then has the health of the daughter + +nor figs on the tree, + +and even the leaf will wither. + +A Lament over Zion + +of my people +not been restored? + +Jeremiah 9:10 | 687 + +Whatever I have given them will be lost + +The People Respond + +to them.” + +14 + +9 + +Oh, that my head were a spring of water, +and my eyes a fountain of tears! + +Why are we just sitting here? + +Gather together, + +I would weep day and night +2 + +over the slain daughter of my people. + +let us flee to the fortified cities and perish + +If only I had a traveler’s lodge in the + +there, + +for the LORD our God has doomed us. +He has given us poisoned water to drink, + +15 + +because we have sinned against + +the LORD. + +We hoped for peace, + +but no good has come, + +for a time of healing, + +16 + +but there was only terror. + +The snorting of enemy horses + +is heard from Dan. + +At the sound of the neighing of mighty steeds, + +the whole land quakes. + +They come to devour the land and everything + +17 + +in it, + +the city and all who dwell in it. + +“For behold, I will send snakes + +among you, + +wilderness, + +I would abandon my people and depart + +from them, +for they are all adulterers, +3 + +a crowd of faithless people. + +“They bend their tongues like bows; +lies prevail over truth in the land. + +For they proceed from evil to evil, + +and they do not take Me into account,” + +declares the LORD. + +4 + +“Let everyone guard against his neighbor; + +do not trust any brother, +for every brother deals craftily, +5 + +and every friend spreads slander. + +Each one betrays his friend; +no one tells the truth. + +They have taught their tongues to lie; +6 + +they wear themselves out committing + + b + +vipers that cannot be charmed, +and they will bite you,” +Jeremiah Weeps for His People + +declares the LORD. + +18 + + a + +7 + +iniquity. + +You dwell + + in the midst of deception; + +declares the LORD. + +in their deceit they refuse to know Me,” + +19 + +My sorrow is beyond healing; + +my heart is faint within me. + +Listen to the cry of the daughter of my people + +from a land far away: + +“Is the LORD no longer in Zion? +Is her King no longer there?” + +“Why have they provoked Me to anger + +20 + +with their carved images, +with their worthless foreign idols?” + +“The harvest has passed, the summer + +21 + +has ended, + +but we have not been saved.” + +Therefore this is what the LORD of Hosts says: + +“Behold, I will refine them and test them, +8 + + c +for what else can I do +because of + + the daughter of My people? + +Their tongues are deadly arrows; + +they speak deception. + +With his mouth a man speaks peace to his +9 + +neighbor, + +but in his heart he sets a trap for him. +Should I not punish them for these things? + +declares the LORD. +Should I not avenge Myself + +on such a nation as this?” + +10 + +For the brokenness of the daughter of my + +I will take up a weeping and wailing for the + +people I am crushed. +b 6 + +O my Comforter in sorrow, +I mourn; horror has gripped me. + +a 18 + +mountains, +c 7 + +a dirge over the wilderness pasture, + +because of the wickedness of + +Or + +That is, Jeremiah dwells (the Heb. is singular) + +LXX + + 688 | Jeremiah 9:11 + +21 + +for they have been scorched so no one passes + +For death has climbed in through our + +through, + +and the lowing of cattle is not heard. +Both the birds of the air and the beasts have + +11 + +fled; + +they have gone away. + + a +“And I will make Jerusalem a heap of rubble, + +a haunt for jackals; + +and I will make the cities of Judah a + +12 + +desolation, +without inhabitant.” + +Who is the man wise enough to understand +this? To whom has the mouth of the LORD +spoken, that he may explain it? Why is the land +destroyed and scorched like a desert, so no one +13 +can pass through it? + +And the LORD answered, “It is because they +have forsaken My law, which I set before them; +14 +they have not walked in it or obeyed My voice. +Instead, they have followed the stubbornness +of their hearts and gone after the Baals, as their +15 +fathers taught them.” + +16 + +Therefore this is what the LORD of Hosts, the +God of Israel, says: “Behold, I will feed this people +wormwood and give them poisoned water to +I will scatter them among the nations +drink. +that neither they nor their fathers have known, +and I will send a sword after them until I have +17 +finished them off.” + +This is what the LORD of Hosts says: + +18 + +“Take note, and summon the wailing women; +send for the most skillful among them. + +Let them come quickly + +and take up a lament over us, + +that our eyes may overflow with tears, + +19 + +and our eyelids may gush with water. + +For the sound of wailing +is heard from Zion: +‘How devastated we are! + +How great is our shame! +For we have abandoned the land + +20 + +because our dwellings have been torn + +down.’ + +” + +windows; + +it has entered our fortresses + +to cut off the children from the streets, + +the young men from the town squares. + +Declare that this is what the LORD says: + +“The corpses of men will fall like dung + +upon the open field, + +like newly cut grain behind the reaper, + +with no one to gather it.” + +22 + +23 + +This is what the LORD says: + +24 + +“Let not the wise man boast in his wisdom, +nor the strong man in his strength, +nor the wealthy man in his riches. +But let him who boasts boast in this, +b + +that he understands and knows Me, + +c + +that I am the LORD, + +who exercises loving devotion, + +justice and righteousness on the earth— + +declares the LORD. + +for I delight in these things,” + +25 + +26 + +“Behold, the days are coming,” declares the +LORD, “when I will punish all who are circum- +cised only in the flesh— +Egypt, Judah, Edom, +Ammon, Moab, and all the inhabitants of the +desert who clip the hair of their temples. For all +these nations are uncircumcised, and the whole +The Sovereignty of God +house of Israel is uncircumcised in heart.” + +10 + +2 + +Hear the word that the LORD speaks to +This is what the +you, O house of Israel. + +LORD says: + +“Do not learn the ways of the nations + +or be terrified by the signs in the heavens, +though the nations themselves are + +3 + +terrified by them. + +For the customs of the peoples are worthless; +they cut down a tree from the forest; + +it is shaped with a chisel +4 + +by the hands of a craftsman. +They adorn it with silver and gold + +5 + +and fasten it with hammer and nails, +so that it will not totter. + +Now, O women, hear the word of the LORD. +Open your ears to the word of His mouth. + +Like scarecrows in a cucumber patch, + +their idols cannot speak. + +Teach your daughters to wail, +dragons +serpents +and one another to lament. + +b 24 + +a 11 + +They must be carried +c 24 + +because they cannot walk. + +loving devotion + +chesed + +love + +Cited in 1 Corinthians 1:31 and 2 Corinthians 10:17 + +loyalty to a covenant + +Forms of the Hebrew + +Or + + or +kindness + +goodness +are translated here and in most cases throughout the Scriptures as +, and + +faithfulness + +, as well as + +mercy + +, + +, + +; the range of meaning includes + +, + +. + + Jeremiah 10:25 | 689 + +16 + +Do not fear them, for they can do no harm, +6 +and neither can they do any good.” + +The Portion of Jacob is not like these, +for He is the Maker of all things, + +There is none like You, O LORD. + +7 + +You are great, and Your name is mighty in + +power. + +Who would not fear You, O King of nations? + +This is Your due. + +For among all the wise men of the nations, + +8 + +and in all their kingdoms, +there is none like You. + +But they are altogether senseless and foolish, +instructed by worthless idols made of + +9 + +wood! + +Hammered silver is brought from Tarshish, + +and gold from Uphaz— + +the work of a craftsman + +from the hands of a goldsmith. +Their clothes are blue and purple, + +10 + +all fashioned by skilled workers. + +But the LORD is the true God; + +He is the living God and eternal King. + +The earth quakes at His wrath, + +11 + +and the nations cannot endure His + +indignation. + +Thus you are to tell them: “These gods, who +have made neither the heavens nor the earth, +will perish from this earth and from under these +12 +heavens.” + + a + +The LORD made the earth by His power; + +He established the world by His + +wisdom + +13 + +and stretched out the heavens by His + +understanding. + +When He thunders, + +the waters in the heavens roar; + +He causes the clouds to rise + +from the ends of the earth. + +He generates the lightning with the rain +and brings forth the wind from His + +14 + +storehouses. + +Every man is senseless and devoid of + +knowledge; + +every goldsmith is put to shame by + +his idols. + +15 + +For his molten images are a fraud, +and there is no breath in them. + +and Israel is the tribe of His inheritance— + +The Coming Captivity of Judah + +the LORD of Hosts is His name. + +17 + +18 + +Gather up your belongings from this land, you +For this is what the LORD + +who live under siege. +says: + +“Behold, at this time I will sling out + +the inhabitants of the land +and bring distress upon them + +19 + +so that they may be captured.” + +Woe to me because of my brokenness; + +my wound is grievous! + +But I said, “This is truly my sickness, + +20 + +and I must bear it.” +My tent is destroyed, + +and all its ropes are snapped. +My sons have departed from me + +and are no more. + +I have no one left to pitch my tent + +21 + +or set up my curtains. + +For the shepherds have become senseless; + +they do not seek the LORD. +Therefore they have not prospered, +and all their flock is scattered. + +22 + +Listen! The sound of a report is coming— +a great commotion from the land to + +the north. + +It will make the cities of Judah a + +b + +23 + +desolation, +a haunt for jackals. + +I know, O LORD, that a man’s way is not his + +24 + +own; + +no one who walks directs his own steps. + +Correct me, O LORD, + +but only with justice— + +not in Your anger, + +25 + +or You will bring me to nothing. + +Pour out Your wrath on the nations +that do not acknowledge You, + +and on the families + +that do not call on Your name. + +For they have devoured Jacob; + +They are worthless, a work to be mocked. + +In the time of their punishment they will + +they have consumed him and finished + +him off; + +a 11 + +perish. + +b 22 + +serpents + +they have devastated his homeland. +dragons + +The original text of this verse is in Aramaic. + +Or + + or + + 690 | Jeremiah 11:1 + +The Broken Covenant + +11 + +2 + +3 + +4 + +This is the word that came to Jeremiah +from the LORD: +“Listen to the words of +this covenant and tell them to the men of Judah +You must tell +and the residents of Jerusalem. +them that this is what the LORD, the God of Israel, +says: Cursed is the man who does not obey the +which I commanded +words of this covenant, +your forefathers when I brought them out of the +land of Egypt, out of the iron furnace, saying, +‘Obey Me, and do everything I command you, and +5 +you will be My people, and I will be your God.’ +This was in order to establish the oath I swore +to your forefathers, to give them a land flowing +with milk and honey, as it is to this day.” +6 +“Amen, LORD,” I answered. + +a + +7 + +Then the LORD said to me, “Proclaim all these +words in the cities of Judah and in the streets of +Jerusalem, saying: Hear the words of this cove- +For from the time I +nant and carry them out. +brought your fathers out of the land of Egypt un- +til today, I strongly warned them again and +Yet they would +again, +not obey or incline their ears, but each one fol- +lowed the stubbornness of his evil heart. So I +brought on them all the curses of this covenant I +had commanded them to follow but they did not +9 +keep.” + + saying, ‘Obey My voice.’ + +8 + +10 + +And the LORD told me, “There is a conspiracy +among the men of Judah and the residents of Je- +They have returned to the sins of +rusalem. +their forefathers who refused to obey My words. +They have followed other gods to serve them. +The house of +the house of +Israel and +Judah have broken the covenant I made with +11 +their fathers. + +12 + +Therefore this is what the LORD says: ‘I am +about to bring upon them a disaster that they +cannot escape. They will cry out to Me, but I will +Then the cities of Judah and +not listen to them. +the residents of Jerusalem will go and cry out +to the gods to which they have been burning +incense, but these gods certainly will not save +Your gods are +them in their time of disaster. +indeed as numerous as your cities, O Judah; the +altars of shame you have set up—the altars to +burn incense to Baal—are as many as the streets +14 +of Jerusalem.’ + +13 + +not be listening when they call out to Me in their +15 +time of disaster. + +What right has My beloved in My house, + +having carried out so many evil schemes? + +16 + +Can consecrated meat avert your doom? + +When you are wicked, then you rejoice. +The LORD once called you a flourishing olive + +tree, + +beautiful with well-formed fruit. + +17 + +But with a mighty roar He will set it on fire, +and its branches will be consumed. + +The LORD of Hosts, who planted you, has de- +creed disaster against you on account of the evil +that the house of Israel and the house of Judah +have brought upon themselves, provoking Me to +A Plot against Jeremiah (Jeremiah 18:18–23) +anger by burning incense to Baal.” +18 + +19 + +And the LORD informed me, so I knew. +Then You showed me their deeds. + +For I was like a gentle lamb led to + +slaughter; + +I did not know that they had plotted + +against me: + +“Let us destroy the tree with its fruit; +let us cut him off from the land of + +the living, + +20 + +that his name may be remembered + +no more.” + + b + +O LORD of Hosts, who judges righteously, + +who examines the heart + + and mind, +let me see Your vengeance upon them, + +for to You I have committed my cause. + +21 + +22 + +Therefore this + +is what the LORD says +concerning the people of Anathoth who are seek- +ing your life and saying, “You must not prophesy +in the name of the LORD, or you will die by our +hand.” +So this is what the LORD of Hosts says: +“I will punish them. Their young men will die by +23 +the sword, their sons and daughters by famine. +There will be no remnant, for I will bring dis- +aster on the people of Anathoth in the year of +The Prosperity of the Wicked +their punishment.” + +12 + +Righteous are You, O LORD, +when I plead before You. + +Yet about Your judgments + +I wish to contend with You: + +As for you, do not pray for these people. Do not +a 7 +raise up a cry or a prayer on their behalf, for I will + +I earnestly warned them, rising up early and warning (them), + +Why does the way of the wicked prosper? +the kidneys +Why do all the faithless live at ease? + +b 20 + +Literally + +Hebrew + + 2 + +You planted them, and they have taken root. +They have grown and produced fruit. + +a + +12 + +All the land is laid waste, + +but no man takes it to heart. + +Jeremiah 13:7 | 691 + +You are ever on their lips, +3 + +but far from their hearts. +But You know me, O LORD; + +You see me and test my heart toward You. + +Drag away the wicked like sheep to the +4 + +slaughter + +and set them apart for the day of carnage. + +How long will the land mourn + +and the grass of every field be withered? + +Because of the evil of its residents, + +the animals and birds have been swept + +away, + +for the people have said, +God’s Answer to Jeremiah + +“He cannot see what our end will be.” + +5 + +“If you have raced with men on foot +and they have worn you out, +how can you compete with horses? + +If you stumble in a peaceful land, +6 + +how will you do in the thickets of the + +Jordan? +Even your brothers— + +your own father’s household— + +even they have betrayed you; + +even they have cried aloud against you. + +Do not trust them, +7 + +though they speak well of you. + +I have forsaken My house; + +I have abandoned My inheritance. + +I have given the beloved of My soul +8 +into the hands of her enemies. +My inheritance has become to Me + +like a lion in the forest. +She has roared against Me; +9 +therefore I hate her. +Is not My inheritance to Me + b + +like a speckled bird of prey +with other birds of prey + + circling against + +her? + +10 + +Go, gather all the beasts of the field; + +bring them to devour her. + +Many shepherds have destroyed My + +vineyard; + +they have trampled My plot of ground. + +11 + +They have turned My pleasant field + +into a desolate wasteland. +They have made it a desolation; + +their kidneys + +b 9 + +desolate before Me, it mourns. + +a 2 + +Over all the barren heights in the wilderness + +the destroyers have come, +for the sword of the LORD devours + +13 + +from one end of the earth to the other. +No flesh has peace. + +They have sown wheat but harvested thorns. + +They have exhausted themselves to + +no avail. + +Bear the shame of your harvest +because of the fierce anger of +A Message for Israel’s Neighbors +(Amos 1:1–15) + +the LORD.” + +14 + +This is what the LORD says: “As for all My evil +neighbors who attack the inheritance that I be- +queathed to My people Israel, I am about to +uproot them from their land, and I will uproot +the house of Judah from among them. +But after +I have uprooted them, I will once again have com- +passion on them and return each one to his +16 +inheritance and to his land. + +15 + +And if they will diligently learn the ways of My +people and swear by My name, saying, ‘As surely +as the LORD lives’—just as they once taught My +people to swear by Baal—then they will be es- +tablished among My people. +But if they will not +obey, then I will uproot that nation; I will uproot +The Linen Loincloth +it and destroy it, declares the LORD.” + +17 + +13 + +This is what the LORD said to me: “Go +and buy yourself a linen loincloth and +put it around your waist, but do not let it touch +2 +water.” + +So I bought a loincloth in accordance with the +3 +word of the LORD, and I put it around my waist. + +4 + +Then the word of the LORD came to me a second +“Take the loincloth that you bought and + and hide + +time: +are wearing, and go at once to Perath +5 +it there in a crevice of the rocks.” + + c + +So I went and hid it at Perath, as the LORD had + +6 +commanded me. + +7 + +Many days later the LORD said to me, “Arise, go +to Perath, and get the loincloth that I commanded +you to hide there.” +So I went to Perath and dug +up the loincloth, and I took it from the place +where I had hidden it. But now it was ruined—of +no use at all. + +to the Euphrates + +c 4 + +like a speckled hyena with birds of prey + +Hebrew +verses 5–7 + +Or + +Or possibly + +; similarly in + + 692 | Jeremiah 13:8 + +8 + +9 + +19 + +10 + +Then the word of the LORD came to me: + +“This +is what the LORD says: In the same way I will ruin +the pride of Judah and the great pride of Jerusa- +These evil people, who refuse to listen to +lem. +My words, who follow the stubbornness of their +own hearts, and who go after other gods to serve +and worship them, they will be like this loin- +11 +cloth—of no use at all. + +For just as a loincloth clings to a man’s waist, +so I have made the whole house of Israel and the +whole house of Judah cling to Me, declares the +LORD, so that they might be My people for My +renown and praise and glory. But they did not +The Wineskins +listen. +12 + +Therefore you are to tell them that this is what +the LORD, the God of Israel, says: ‘Every wineskin +shall be filled with wine.’ + +And when they reply, ‘Don’t we surely know that +13 +every wineskin should be filled with wine?’ +then you are to tell them that this is what the +LORD says: ‘I am going to fill with drunkenness +all who live in this land—the kings who sit on Da- +vid’s throne, the priests, the prophets, and all the +I will smash them against +people of Jerusalem. +one another, fathers and sons alike, declares the +LORD. I will allow no mercy or pity or compas- +Captivity Threatened +sion to keep Me from destroying them.’ +15 + +14 + +” + +16 + +Listen and give heed. Do not be arrogant, + +for the LORD has spoken. +Give glory to the LORD your God +before He brings darkness, + +before your feet stumble + +on the dusky mountains. + +You wait for light, + +17 + +but He turns it into deep gloom and thick + +darkness. +But if you do not listen, + +I will weep in secret because of your pride. + +My eyes will overflow with tears, + +18 + +because the LORD’s flock has been taken + +captive. + +Say to the king + +and to the queen mother: + +“Take a lowly seat, + +The cities of the Negev have been shut tight, + +and no one can open them. + +20 + +All Judah has been carried into exile, + +wholly taken captive. +Lift up your eyes and see + +those coming from the north. +Where is the flock entrusted to you, +the sheep that were your pride? + +21 + +What will you say when He sets over you + +close allies whom you yourself trained? + +22 + +Will not pangs of anguish grip you, +as they do a woman in labor? + +And if you ask yourself, + +“Why has this happened to me?” +It is because of the magnitude of your +a + +iniquity + +23 + +that your skirts have been stripped off +and your body has been exposed. + change his skin, + +Can the Ethiopian + + b + +or the leopard his spots? + +Neither are you able to do good— + +24 + +you who are accustomed to doing evil. + +25 + +“I will scatter you like chaff + +driven by the desert wind. + +This is your lot, + +the portion I have measured to you,” + +declares the LORD, + +26 + +“because you have forgotten Me +and trusted in falsehood. + +27 + +So I will pull your skirts up over your face, + +that your shame may be seen. +Your adulteries and lustful neighings, + +your shameless prostitution + +on the hills and in the fields— + +I have seen your detestable acts. + +Woe to you, O Jerusalem! + +Drought, Famine, Sword, and Plague + +How long will you remain unclean?” + +14 + +2 + +This is the word of the LORD that came +to Jeremiah concerning the drought: + +“Judah mourns + +and her gates languish. +Her people wail for the land, + +3 + +and a cry goes up from Jerusalem. +The nobles send their servants for water; + +they go to the cisterns, but find no water; +their jars return empty. + +for your glorious crowns have fallen from +b 23 +and your heels have suffered violence + +your heads.” + +a 22 + +They are ashamed and humiliated; +that Cushite + +they cover their heads. + +Literally + +Nile region + +Hebrew + +; that is, probably a person from the upper + + 4 + +The ground is cracked + +because no rain has fallen on the land. + +5 + +The farmers are ashamed; +they cover their heads. + +Even the doe in the field deserts her newborn + +6 + +fawn + +because there is no grass. + + a + +Wild donkeys stand on barren heights; + +7 + +they pant for air like jackals; +their eyes fail for lack of pasture.” + +Although our iniquities testify against us, O + +LORD, + +act for the sake of Your name. +Indeed, our rebellions are many; +we have sinned against You. + +8 + +O Hope of Israel, + +its Savior in times of distress, + +9 + +why are You like a stranger in the land, +like a traveler who stays but a night? +Why are You like a man taken by surprise, + +like a warrior powerless to save? + +Yet You are among us, O LORD, + +and we are called by Your name. + +10 + +Do not forsake us! + +This is what the LORD says about this people: + +“Truly they love to wander; + +they have not restrained their feet. + +So the LORD does not accept them; + +11 + +He will now remember their iniquity +and punish them for their sins.” + +12 + +Then the LORD said to me, “Do not pray for the +well-being of this people. +Although they may +fast, I will not listen to their cry; although they +may offer burnt offerings and grain offerings, I +will not accept them. Instead, I will finish them +13 +off by sword and famine and plague.” + +“Ah, Lord GOD!” I replied, “Look, the prophets +are telling them, ‘You will not see the sword or +suffer famine, but I will give you lasting peace in +14 +this place.’ + +” + +“The prophets are prophesying lies in My +name,” replied the LORD. “I did not send them or +appoint them or speak to them. They are proph- +esying to you a false vision, a worthless divina- +15 +tion, the futility and delusion of their own minds. + +Therefore this is what the LORD says about the +prophets who prophesy in My name: I did not +send them, yet they say, ‘No sword or famine will +serpents +a 6 +touch this land.’ + +dragons + +Or + + or + +Jeremiah 15:2 | 693 + +16 + +By sword and famine these very prophets will +And the people to whom they +meet their end! +prophesy will be thrown into the streets of Jeru- +salem because of famine and sword. There will +be no one to bury them or their wives, their sons +or their daughters. I will pour out their own evil +17 +upon them. + +You are to speak this word to them: + +‘My eyes overflow with tears; + +day and night they do not cease, +for the virgin daughter of my people + +18 + +has been shattered by a crushing blow, +a severely grievous wound. + +If I go out to the country, + +I see those slain by the sword; + +if I enter the city, + +I see those ravaged by famine! + +For both prophet and priest + +A Prayer for Mercy +(Isaiah 63:15–19) + +travel to a land they do not know.’ + +” + +19 + +Have You rejected Judah completely? + +Do You despise Zion? +Why have You stricken us + +so that we are beyond healing? + +We hoped for peace, + +but no good has come, +and for the time of healing, + +20 + +but there was only terror. + +We acknowledge our wickedness, O LORD, + +21 + +the guilt of our fathers; +indeed, we have sinned against You. + +For the sake of Your name do not despise us; +do not disgrace Your glorious throne. + +Remember Your covenant with us; + +22 + +do not break it. + +Can the worthless idols of the nations bring + +rain? + +Do the skies alone send showers? +Is this not by You, O LORD our God? + +Judgment to Continue + +So we put our hope in You, +for You have done all these things. + +15 + +Then the LORD said to me: “Even if Mo- +ses and Samuel should stand before Me, +My heart would not go out to this people. Send +If they +them from My presence, and let them go! +ask you, ‘Where shall we go?’ you are to tell them +that this is what the LORD says: + +2 + + 694 | Jeremiah 15:3 + +‘Those destined for death, to death; + + a + +those destined for the sword, to the + +sword; + +those destined for famine, to famine; +and those destined for captivity, to + +captivity.’ + +3 + +I will appoint over them four kinds of destroy- +ers, declares the LORD: the sword to kill, the dogs +to drag away, and the birds of the air and beasts +I will make +of the earth to devour and destroy. +them a horror to all the kingdoms of the earth +because of what Manasseh son of Hezekiah king +5 +of Judah did in Jerusalem. + +4 + +Who will have pity on you, O Jerusalem? + +Who will mourn for you? + +Who will turn aside +6 + +to ask about your welfare? + +You have forsaken Me, declares the LORD. + +You have turned your back. + +So I will stretch out My hand against you + +7 + +and I will destroy you; +I am weary of showing compassion. + +I will scatter them with a winnowing fork + +at the gates of the land. + +I will bereave and destroy My people +8 + +who have not turned from their ways. +I will make their widows more numerous + +than the sand of the sea. +I will bring a destroyer at noon + +12 + +in your time of trouble, + +in your time of distress. + +13 + +Can anyone smash iron— + +iron from the north—or bronze? + +Your wealth and your treasures +I will give up as plunder, +without charge for all your sins +within all your borders. + + b + +14 + +Then I will enslave you to your enemies + +in a land + + you do not know, +for My anger will kindle a fire +that will burn against you.” + +15 + +You understand, O LORD; + +remember me and attend to me. +Avenge me against my persecutors. + +In Your patience, do not take me away. +Know that I endure reproach for Your + +16 + +honor. + +Your words were found, and I ate them. + +Your words became my joy +and my heart’s delight. + +17 + +For I bear Your name, + +O LORD God of Hosts. + +I never sat with the band of revelers, +nor did I celebrate with them. + +18 + +Because Your hand was on me, I sat alone, +for You have filled me with indignation. + +Why is my pain unending, + +and my wound incurable, +refusing to be healed? + +against the mothers of young men. + +You have indeed become like a mirage + +I will suddenly bring upon them + +9 + +anguish and dismay. + +The mother of seven will grow faint; +she will breathe her last breath. +Her sun will set while it is still day; + +she will be disgraced and humiliated. + +And the rest I will put to the sword + +in the presence of their enemies,” + +Jeremiah’s Woe + +declares the LORD. + +10 + +Woe to me, my mother, + +that you have borne me, +a man of strife and conflict + +in all the land. + +11 + +I have neither lent nor borrowed, + +yet everyone curses me. + +The LORD said: + +to me— + +The LORD’s Promise + +water that is not there. + +19 + +Therefore this is what the LORD says: + +“If you return, I will restore you; +you will stand in My presence. +And if you speak words that are noble + +instead of worthless, +you will be My spokesman. +It is they who must turn to you, + +20 + +but you must not turn to them. + +Then I will make you a wall to this people, + +a fortified wall of bronze; + +they will fight against you + +but will not overcome you, + +21 + +for I am with you to save and deliver you, + +declares the LORD. + +I will deliver you from the hand of the wicked + +and redeem you from the grasp of + +a 2 + +“Surely I will deliver you for a good purpose; +b 14 +surely I will intercede with your enemy + +Then I will cause your enemies to bring you into a land + +the ruthless.” + +See Revelation 13:10. + +Some Hebrew manuscripts, LXX, and Syriac (see also Jeremiah 17:4); most Hebrew + +manuscripts + + Disaster Predicted + +16 + +2 + +Then the word of the LORD came to me, +saying, +“You must not marry or have + +3 +sons or daughters in this place.” + +4 + +For this is what the LORD says concerning the +sons and daughters born in this place, and the +mothers who bore them, and the fathers who fa- +“They will die from +thered them in this land: +deadly diseases. They will not be mourned or +buried, but will lie like dung on the ground. They +will be finished off by sword and famine, and +their corpses will become food for the birds of +5 +the air and beasts of the earth.” + +Indeed, this is what the LORD says: “Do not en- +ter a house where there is a funeral meal. Do not +go to mourn or show sympathy, for I have re- +moved from this people My peace, My loving de- +6 +votion, and My compassion,” declares the LORD. + +7 + +“Both great and small will die in this land. They +will not be buried or mourned, nor will anyone +No food +cut himself or shave his head for them. +will be offered to comfort those who mourn the +dead; not even a cup of consolation will be given +8 +for the loss of a father or mother. + +You must not enter a house where there is +9 +feasting and sit down with them to eat and drink. +For this is what the LORD of Hosts, the God of +Israel, says: I am going to remove from this place, +before your very eyes and in your days, the +sounds of joy and gladness, the voices of the +10 +bride and bridegroom. + +When you tell these people all these things, +they will ask you, ‘Why has the LORD pro- +nounced all this great disaster against us? What +is our iniquity? What is the sin that we have com- +11 +mitted against the LORD our God?’ + +12 + +Then you are to answer them: ‘It is because +your fathers have forsaken Me, declares the +LORD, and followed other gods, and served and +worshiped them. They abandoned Me and did +And you have done +not keep My instruction. +more evil than your fathers. See how each of you +follows the stubbornness of his evil heart instead +So I will cast you out of this land +of obeying Me. +into a land that neither you nor your fathers have +known. There you will serve other gods day and +God Will Restore Israel +night, for I will show you no favor.’ +14 + +13 + +Yet behold, the days are coming, declares the +LORD, when they will no longer say, ‘As surely as +the LORD lives, who brought the Israelites up out + +Jeremiah 17:4 | 695 + +15 + +Instead they will say, ‘As +of the land of Egypt.’ +surely as the LORD lives, who brought the Israel- +ites up out of the land of the north and all the +other lands to which He had banished them.’ For +I will return them to their land that I gave to their +16 +forefathers. + +But for now I will send for many fishermen, de- +clares the LORD, and they will catch them. After +that I will send for many hunters, and they will +hunt them down on every mountain and hill, +17 +even from the clefts of the rocks. + +For My eyes are on all their ways. They +18 +are not hidden from My face, and their guilt is not +And I will first repay +concealed from My eyes. +them double their iniquity and their sin, because +they have defiled My land with the carcasses of +their detestable idols, and they have filled My +19 +inheritance with their abominations.” + +O LORD, my strength and my fortress, +my refuge in the day of distress, + +the nations will come to You + +from the ends of the earth, and they will + +say, + +20 + +“Our fathers inherited nothing but lies, +worthless idols of no benefit at all. + +Can man make gods for himself? + +21 + +Such are not gods!” + +“Therefore behold, I will inform them, + +and this time I will make them know +My power and My might; + +then they will know + +The Sin and Punishment of Judah +that My name is the LORD. + +17 + +“The sin of Judah is written with an iron + +stylus, + +engraved with a diamond point + +2 + +on the tablets of their hearts + +and on the horns of their altars. + +Even their children remember their altars + +3 + +and Asherah poles + +by the green trees and on the high hills. + +O My mountain in the countryside, +I will give over your wealth +and all your treasures as plunder, +because of the sin of your high places, + +4 + +within all your borders. +And you yourself will relinquish + +the inheritance that I gave you. +I will enslave you to your enemies +in a land that you do not know, + +for you have kindled My anger; + +it will burn forever.” + + 696 | Jeremiah 17:5 + +5 + +This is what the LORD says: + + a + +“Cursed is the man who trusts in mankind, +who makes mere flesh his strength +6 +and turns his heart from the LORD. + +He will be like a shrub in the desert; + +he will not see when prosperity comes. + +He will dwell in the parched places of the + +7 + +desert, + +in a salt land where no one lives. + +But blessed is the man who trusts in the + +8 + +LORD, + +You know that the utterance of my lips + +17 + +was spoken in Your presence. + +18 + +Do not become a terror to me; + +You are my refuge in the day of disaster. + +Let my persecutors be put to shame, +but do not let me be put to shame. + +Let them be terrified, + +but do not let me be terrified. +Bring upon them the day of disaster + +and shatter them with double destruction. + +Restoring the Sabbath +(Nehemiah 13:15–22) + +whose confidence is in Him. + +He is like a tree planted by the waters + +19 + +that sends out its roots toward the stream. + +It does not fear when the heat comes, +and its leaves are always green. +It does not worry in a year of drought, +nor does it cease to produce fruit. +9 + +The heart is deceitful above all things + +10 + +and beyond cure. +Who can understand it? +I, the LORD, search the heart; + + b + +I examine the mind + +11 + +to reward a man according to his way, + +by what his deeds deserve. + +Like a partridge hatching eggs it did + +not lay + +is the man who makes a fortune unjustly. +In the middle of his days his riches will desert + +him, + +Jeremiah’s Prayer for Deliverance + +and in the end he will be the fool.” + +12 + +A glorious throne, exalted from the + +13 + +beginning, + +is the place of our sanctuary. + +O LORD, the hope of Israel, + +all who abandon You will be put to shame. + +All who turn away will be written in + +the dust, + +14 + +for they have abandoned the LORD, +the fountain of living water. + +Heal me, O LORD, and I will be healed; + +15 + +save me, and I will be saved, +for You are my praise. + +Behold, they keep saying to me, + +16 + +“Where is the word of the LORD? +Let it come now!” + +But I have not run away from being Your + +This is what the LORD said to me: “Go and +stand at the gate of the people, through which the +kings of Judah go in and out; and stand at all the +20 +other gates of Jerusalem. + +22 + +21 + +Say to them, ‘Hear the word of the LORD, +O kings of Judah, all people of Judah and Jerusa- +This is +lem who enter through these gates. +what the LORD says: Take heed for yourselves; +do not carry a load or bring it through the gates +You must not +of Jerusalem on the Sabbath day. +carry a load out of your houses or do any work +on the Sabbath day, but you must keep the Sab- +bath day holy, just as I commanded your forefa- +Yet they would not listen or incline their +thers. +ear, but they stiffened their necks and would not +24 +listen or receive My discipline. + +23 + +25 + +If, however, you listen carefully to Me, says the +LORD, and bring no load through the gates of this +city on the Sabbath day, and keep the Sabbath +day holy, and do no work on it, +then kings and +princes will enter through the gates of this city. +They will sit on the throne of David, riding in +chariots and on horses with their officials, along +with the men of Judah and the residents of Jeru- +26 +salem, and this city will be inhabited forever. +And people will come from the cities of Judah +and the places around Jerusalem, from the land + the hill +of Benjamin, and from the foothills, +country, and the Negev, bringing burnt offerings +and sacrifices, grain offerings and frankincense, +27 +and thank offerings to the house of the LORD. + +c + +But if you do not listen to Me to keep the +Sabbath day holy by not carrying a load while +entering the gates of Jerusalem on the Sabbath +day, then I will kindle an unquenchable fire in its +gates to consume the citadels of Jerusalem.’ + +lowlands + +” + +shepherd; +b 10 +arm + +I have not desired the day of despair. + +kidneys + +c 26 + +a 5 + +Shephelah + +Hebrew + +Hebrew + +Hebrew + + or + +; that is, the western foothills of Judea + + The Potter and the Clay + +16 + +Jeremiah 19:3 | 697 + +18 + +2 + +4 + +This is the word that came to Jeremiah +from the LORD: +“Go down at once to the +potter’s house, and there I will give you My mes- +3 +sage.” + +So I went down to the potter’s house and saw +But the vessel that he +him working at the wheel. +was shaping from the clay became flawed in his +hand; so he formed it into another vessel, as it +5 +seemed best for him to do. +6 + +Then the word of the LORD came to me, saying, +“O house of Israel, declares the LORD, can I not +treat you as this potter treats his clay? Just like +clay in the potter’s hand, so are you in My hand, +7 +O house of Israel. + +8 + +At any time I might announce that a nation or +kingdom will be uprooted, torn down, and de- +But if that nation I warned turns from +stroyed. +its evil, then I will relent of the disaster I had +9 +planned to bring. + +And if at another time I announce that I will +10 +build up and establish a nation or kingdom, +and if it does evil in My sight and does not lis- +ten to My voice, then I will relent of the good I +11 +had intended for it. + +Now therefore, tell the men of Judah and the +residents of Jerusalem that this is what the LORD +says: ‘Behold, I am planning a disaster for you +and devising a plan against you. Turn now, each +of you, from your evil ways, and correct your +12 +ways and deeds.’ + +But they will reply, ‘It is hopeless. We will fol- +low our own plans, and each of us will act accord- +13 +ing to the stubbornness of his evil heart.’ + +” + +Therefore this is what the LORD says: + +“Inquire among the nations: + +Who has ever heard things like these? +Virgin Israel has done a most terrible + +14 + +thing. + +Does the snow of Lebanon + +ever leave its rocky slopes? + +Or do its cool waters flowing from a distance + +15 + +ever run dry? + +Yet My people have forgotten Me. + +They burn incense to worthless idols +that make them stumble in their ways, + +They have made their land a desolation, + +a perpetual object of scorn; +all who pass by will be appalled + +17 + +and shake their heads. + +I will scatter them before the enemy + +like the east wind. + +I will show them My back and not My face +Another Plot against Jeremiah (Jer. 11:18–23) + +in the day of their calamity.” + +18 + +Then some said, “Come, let us make plans +against Jeremiah, for the law will never be lost to +the priest, nor counsel to the wise, nor an oracle +to the prophet. Come, let us denounce him and +19 +pay no heed to any of his words.” + +20 + +Attend to me, O LORD. + +Hear what my accusers are saying! + +Should good be repaid with evil? +Yet they have dug a pit for me. +Remember how I stood before You +to speak good on their behalf, +to turn Your wrath from them. + +21 + +Therefore, hand their children over to + +famine; + +pour out the power of the sword upon + +them. + +Let their wives become childless and + +widowed; + +let their husbands be slain by disease, +their young men struck down by the + +22 + +sword in battle. + +Let a cry be heard from their houses + +when You suddenly bring raiders against + +them, + +23 + +for they have dug a pit to capture me + +and have hidden snares for my feet. + +But You, O LORD, know all their deadly plots + +against me. + +Do not wipe out their guilt +or blot out their sin from Your sight. + +Let them be overthrown before You; + +The Broken Jar + +deal with them in the time of Your anger. + +19 + +This is what the LORD says: “Go and buy +a clay jar from a potter. Take some of the +2 +elders of the people and leaders of the priests, +and go out to the Valley of Ben-hinnom near the + +3 + +entrance of the Potsherd Gate. + +leaving the ancient roads + +to walk on rutted bypaths +instead of on the highway. + +Proclaim there the words I speak to you, +saying, +‘Hear the word of the LORD, O kings of Judah and +residents of Jerusalem. This is what the LORD of + + 698 | Jeremiah 19:4 + +4 + +Hosts, the God of Israel, says: I am going to bring +such disaster on this place that the ears of all who +because they have aban- +hear of it will ring, +doned Me and made this a foreign place. They +have burned incense in this place to other gods +that neither they nor their fathers nor the kings +of Judah have ever known. They have filled this +They have +place with the blood of the innocent. +built high places to Baal on which to burn their +children in the fire as offerings to Baal—some- +thing I never commanded or mentioned, nor did +6 +it even enter My mind. + +5 + +7 + +So behold, the days are coming, declares the +LORD, when this place will no longer be called + a +Topheth or the Valley of Ben-hinnom, but the +Valley of Slaughter. +the plans of Judah and Jerusalem. I will make +them fall by the sword before their enemies, by +the hands of those who seek their lives, and I will +give their carcasses as food to the birds of the air +8 +and the beasts of the earth. + +And in this place I will ruin + +b + +9 + +I will make this city a desolation and an object +of scorn. + All who pass by will be appalled and +will scoff at all her wounds. +I will make them eat +the flesh of their sons and daughters, and they +will eat one another’s flesh in the siege and dis- +tress inflicted on them by their enemies who +10 +seek their lives.’ + +11 + +Then you are to shatter the jar in the presence +and you are to +of the men who accompany you, +proclaim to them that this is what the LORD of +Hosts says: I will shatter this nation and this city, +like one shatters a potter’s jar that can never +again be repaired. They will bury the dead in To- +12 +pheth until there is no more room to bury them. + +13 + +This is what I will do to this place and to its res- +idents, declares the LORD. I will make this city +like Topheth. +The houses of Jerusalem and the +houses of the kings of Judah will be defiled like +that place, Topheth—all the houses on whose +rooftops they burned incense to all the host of +heaven and poured out drink offerings to other +14 +gods.” + +Then Jeremiah returned from Topheth, where +the LORD had sent him to prophesy, and he stood +in the courtyard of the house of the LORD and +“This is what the +proclaimed to all the people, +LORD of Hosts, the God of Israel, says: ‘Behold, I +jar +a 7 +am about to bring on this city and on all the +c 3 Magor-missabib + +terror on every side + +ruin + +15 + +villages around it every disaster I have pro- +nounced against them, because they have stiff- +Pashhur Persecutes Jeremiah +ened their necks so as not to heed My words.’ +” + +20 + +When Pashhur the priest, the son of Im- +mer and the chief official in the house of +2 +the LORD, heard Jeremiah prophesying these +he had Jeremiah the prophet beaten and +things, +put in the stocks at the Upper Gate of Benjamin, +3 +which was by the house of the LORD. + +The next day, when Pashhur released Jeremiah +c +from the stocks, Jeremiah said to him, “The LORD +4 +does not call you Pashhur, but Magor-missabib. + +5 + +For this is what the LORD says: ‘I will make you +a terror to yourself and to all your friends. They +will fall by the sword of their enemies before +your very eyes. And I will hand Judah over to the +king of Babylon, and he will carry them away to +I will give +Babylon and put them to the sword. +away all the wealth of this city—all its products +and valuables, and all the treasures of the kings +of Judah—to their enemies. They will plunder +6 +them, seize them, and carry them off to Babylon. +And you, Pashhur, and all who live in your +house, will go into captivity. You will go to Baby- +lon, and there you will die and be buried—you +and all your friends to whom you have prophe- +Jeremiah’s Complaint +sied these lies.’ +7 + +” + +You have deceived me, O LORD, and I was + +deceived. + +You have overcome me and prevailed. + +I am a laughingstock all day long; + +8 + +everyone mocks me. + +For whenever I speak, I cry out; + +I proclaim violence and destruction. + +For the word of the LORD has become + +9 + +to me + +a reproach and derision all day long. + +If I say, “I will not mention Him + +or speak any more in His name,” +His message becomes a fire burning in + +my heart, + +shut up in my bones, + +and I become weary of holding it in, + +10 + +and I cannot prevail. + +For I have heard the whispering of many: + +“Terror is on every side! +and a hissing +b 8 +Report him; let us report him!” + +The Hebrew term for + + sounds like the Hebrew for + +; see verses 1 and 10. + +Literally + + means + + or + +. + +the man who lives in terror + + All my trusted friends +watch for my fall: + +“Perhaps he will be deceived + +11 + +so that we may prevail against him +and take our vengeance upon him.” + +But the LORD is with me like a fearsome + +warrior. + +Therefore, my persecutors will stumble + +and will not prevail. + +Since they have not succeeded, they will be + +utterly put to shame, + +12 + +with an everlasting disgrace that will + +never be forgotten. +O LORD of Hosts, who examines the + + a + +righteous, +who sees the heart + + and mind, + +13 + +let me see Your vengeance upon them, + +for to You I have committed my cause. + +Sing to the LORD! + +Praise the LORD! + +14 + +For He rescues the life of the needy +from the hands of evildoers. + +Cursed be the day I was born! + +15 + +May the day my mother bore me never be + +blessed. + +Cursed be the man who brought my father + +the news, + +16 + +saying, “A son is born to you,” +bringing him great joy. +May that man be like the cities + +that the LORD overthrew without + +compassion. + +May he hear an outcry in the morning + +17 + +and a battle cry at noon, + +because he did not kill me in the womb +so that my mother might have been + +18 + +my grave, + +and her womb forever enlarged. + +Why did I come out of the womb + +Jerusalem Will Fall to Babylon + +to see only trouble and sorrow, +and to end my days in shame? + +21 + +2 + +This is the word that came to Jeremiah +from the LORD when King Zedekiah sent +to him Pashhur son of Malchijah and the priest +“Please +Zephaniah son of Maaseiah. They said, +inquire of the LORD on our behalf, since Nebu- + king of Babylon is waging war +chadnezzar +a 12 +against us. Perhaps the LORD will perform for us +, a variant of +Heb. + +Nebuchadrezzar + +Hebrew + +kidneys + +b 2 + + b + +Jeremiah 21:13 | 699 + +something like all His past wonders, so that Neb- +3 +uchadnezzar will withdraw from us.” + +4 + +But Jeremiah answered, “You are to tell +Zedekiah that +this is what the LORD, the God +of Israel, says: ‘I will turn against you the weap- + c +ons of war in your hands, with which you are +fighting the king of Babylon and the Chaldeans +who besiege you outside the wall, and I will +5 +assemble their forces in the center of this city. +And I Myself will fight against you with an out- +stretched hand and a mighty arm, with anger, +fury, and great wrath. +I will strike down the res- +idents of this city, both man and beast. They will +7 +die in a terrible plague.’ + +6 + +‘After that,’ declares the LORD, ‘I will hand over +Zedekiah king of Judah, his officers, and the peo- +ple in this city who survive the plague and sword +and famine, to Nebuchadnezzar king of Babylon +and to their enemies who seek their lives. He will +put them to the sword; he will not spare them or +8 +show pity or compassion.’ + +9 + +Furthermore, you are to tell this people that this +is what the LORD says: ‘Behold, I set before you +the way of life and the way of death. +Whoever +stays in this city will die by sword and famine +and plague, but whoever goes out and surren- +ders to the Chaldeans who besiege you will live; +For I +he will retain his life like a spoil of war. +have set My face against this city to bring disaster +and not good, declares the LORD. It will be deliv- +ered into the hand of the king of Babylon, who +A Message to the House of David +will destroy it with fire.’ +11 + +10 + +Moreover, tell the house of the king of Judah +O house of + +to hear the word of the LORD. +David, this is what the LORD says: + +12 + +‘Administer justice every morning, + +and rescue the victim of robbery + +from the hand of his oppressor, + +or My wrath will go forth like fire +and burn with no one to extinguish it + +because of their evil deeds. + +13 + +Behold, I am against you who dwell above the + +valley, + +atop the rocky plateau— +declares the LORD— + +you who say, “Who can come against us? + +Nebuchadnezzar + +Who can enter our dwellings?” + +c 4 + (king of Babylon), which occurs frequently +That is, the Babylonians; also in verse 9 + +in Jeremiah. The latter spelling is used throughout Jeremiah for consistency. + + 700 | Jeremiah 21:14 + +14 + +I will punish you as your deeds deserve, + +declares the LORD. + +I will kindle a fire in your forest + +that will consume everything around + +A Warning to Judah’s Kings +” + +you.’ + +22 + +3 + +2 + +This is what the LORD says: “Go down to +the palace of the king of Judah and pro- +saying, ‘Hear the word +claim this message there, +of the LORD, O king of Judah, who sits on the +throne of David—you and your officials and your +This is what the +people who enter these gates. +LORD says: Administer justice and righteous- +ness. Rescue the victim of robbery from the hand +of his oppressor. Do no wrong or violence to the +foreigner, the fatherless, or the widow. Do not +4 +shed innocent blood in this place. + +5 + +For if you will indeed carry out these com- +mands, then kings who sit on David’s throne will +enter through the gates of this palace riding on +chariots and horses—they and their officials and +But if you do not obey these words, +their people. +then I swear by Myself, declares the LORD, that +A Warning about the Palace +this house will become a pile of rubble.’ +6 + +” + +11 + + a + +For this is what the LORD says concerning +Shallum + son of Josiah, king of Judah, who suc- +ceeded his father Josiah but has gone forth from +this place: “He will never return, +but he will die +in the place to which he was exiled; he will never +A Warning about Jehoiakim +see this land again.” +13 + +12 + +“Woe to him who builds his palace by + +unrighteousness, + +and his upper rooms without justice, +who makes his countrymen serve without + +14 + +pay, + +and fails to pay their wages, +who says, ‘I will build myself a great + +palace, + +with spacious upper rooms.’ + +So he cuts windows in it, +panels it with cedar, + b +and paints it with vermilion. + +15 + +Does it make you a king to excel + + in cedar? + +Did not your father have food and drink? +He administered justice and righteousness, + +16 + +and so it went well with him. + +He took up the cause of the poor and needy, + +and so it went well with him. + +17 + +Is this not what it means to know Me?” + +For this is what the LORD says concerning the + +declares the LORD. + +house of the king of Judah: + +“You are like Gilead to Me, + +like the summit of Lebanon; + +but I will surely turn you into a desert, +7 +like cities that are uninhabited. +I will appoint destroyers against you, + +each man with his weapons, + +and they will cut down the choicest of + +8 + +your cedars + +and throw them into the fire. + +And many nations will pass by this city and ask +one another, ‘Why has the LORD done such a +9 +thing to this great city?’ + +Then people will reply, ‘Because they have for- +saken the covenant of the LORD their God and +A Warning about Shallum +have worshiped and served other gods.’ +10 + +” + +“But your eyes and heart are set on nothing + +except your own dishonest gain, + +on shedding innocent blood, + +18 + +on practicing extortion and oppression.” + +Therefore this is what the LORD says concern- + +ing Jehoiakim son of Josiah king of Judah: + +“They will not mourn for him: + +‘Alas, my brother! Alas, my sister!’ + +19 + +They will not mourn for him: + +‘Alas, my master! Alas, his splendor!’ + +He will be buried like a donkey, + +20 + +dragged away and thrown outside the + +gates of Jerusalem. + +Go up to Lebanon and cry out; +raise your voice in Bashan; + +cry out from Abarim, + +21 + +for all your lovers have been crushed. + +Do not weep for him who is dead; + +do not mourn his loss. + +Weep bitterly for him who is exiled, + +I warned you when you were secure. + +You said, ‘I will not listen.’ + +22 + +This has been your way from youth, + +that you have not obeyed My voice. + +a 11 Shallum + +for he will never return +Jehoahaz +to see his native land. + was also called + +b 15 + +because you enclose yourself + +The wind will drive away all your shepherds, +and your lovers will go into captivity. + +. + +Or + + 23 + +Then you will be ashamed and humiliated + +a + +because of all your wickedness. + +O inhabitant of Lebanon, +nestled in the cedars, + +how you will groan when pangs of anguish + +come upon you, + +A Warning to Coniah + +agony like a woman in labor.” + +24 + + b + +25 + +“As surely as I live,” declares the LORD, “even +if you, Coniah + son of Jehoiakim king of Judah, +were a signet ring on My right hand, I would pull +In fact, I will hand you over to those +you off. +you dread, who want to take your life—to Nebu- +c +26 +chadnezzar king of Babylon and to the Chalde- +ans. +I will hurl you and the mother who gave +you birth into another land, where neither of you +You +were born—and there you both will die. +28 +will never return to the land for which you long.” + +27 + +Is this man Coniah a despised and shattered + +pot, + +a jar that no one wants? + +29 + +Why are he and his descendants hurled out +and cast into a land they do not know? + +O land, land, land, + +30 + +hear the word of the LORD! + +This is what the LORD says: + +“Enroll this man as childless, + +a man who will not prosper in his + +lifetime. + +None of his descendants will prosper + +David’s Righteous Branch + +to sit on the throne of David +or to rule again in Judah.” + +23 + +“Woe to the shepherds who destroy and +scatter the sheep of My pasture!” de- + +2 +clares the LORD. + +Therefore this is what the LORD, the God of Is- +rael, says about the shepherds who tend My peo- +ple: “You have scattered My flock and driven +them away, and have not attended to them. Be- +hold, I will attend to you for the evil of your +3 +deeds, declares the LORD. + +Then I Myself will gather the remnant of My +flock from all the lands to which I have banished +them, and I will return them to their pasture, +I will +where they will be fruitful and multiply. +raise up shepherds over them who will tend +a 23 +them, and they will no longer be afraid or +up for David’s line +c 25 +That is, the palace in Jerusalem; see 1 Kings 7:2. +That is, the Babylonians + +d 5 + +Or + +4 + +Jeremiah 23:12 | 701 + +dismayed, nor will any go missing, declares the +5 +LORD. + +Behold, the days are coming, + d + +declares the LORD, + +when I will raise up for David +a righteous Branch, + +and He will reign wisely as King + +6 + +and will administer justice and +righteousness in the land. + +In His days Judah will be saved, + +and Israel will dwell securely. +And this is His name by which He will +e + +7 + +be called: + +The LORD Our Righteousness. + +8 + +So behold, the days are coming, declares the +LORD, when they will no longer say, ‘As surely as +the LORD lives, who brought the Israelites up out +Instead they will say, ‘As +of the land of Egypt.’ +surely as the LORD lives, who brought and led +the descendants of the house of Israel up out of +the land of the north and all the other lands to +which He had banished them.’ Then they will +Lying Prophets +dwell once more in their own land.” +9 + +As for the prophets: + +My heart is broken within me, +and all my bones tremble. +I have become like a drunkard, + +like a man overcome by wine, + +because of the LORD, + +10 + +because of His holy words. +For the land is full of adulterers— + +because of the curse, the land mourns +and the pastures of the wilderness have + +dried up— +their course is evil + +11 + +and their power is misused. + +“For both prophet and priest are ungodly; +even in My house I have found their + +declares the LORD. + +wickedness,” + +12 + +“Therefore their path will become slick; + +they will be driven away into the darkness + +and fall into it. + +For I will bring disaster upon them +in the year of their punishment,” + +declares the LORD. + +b 24 Coniah +e 6 + +Jehoiachin + +YHWH Tsidqenu + + is a variant of + +; also in verse 28. + +Hebrew + + 702 | Jeremiah 23:13 + +13 + +22 + +“Among the prophets of Samaria +I saw an offensive thing: + +They prophesied by Baal + +14 + +And + +and led My people Israel astray. + among the prophets of Jerusalem +I have seen a horrible thing: + +They commit adultery +and walk in lies. + +They strengthen the hands of evildoers, +so that no one turns his back on + +wickedness. + +They are all like Sodom to Me; + +15 + +the people of Jerusalem are like + +Gomorrah.” + +Therefore this is what the LORD of Hosts says + +concerning the prophets: + +“I will feed them wormwood + +and give them poisoned water to drink, + +for from the prophets of Jerusalem + +16 + +ungodliness has spread throughout the + +land.” + +This is what the LORD of Hosts says: + +“Do not listen to the words of the prophets + +who prophesy to you. + +They are filling you with false hopes. +They speak visions from their own minds, + +17 + +not from the mouth of the LORD. + +They keep saying to those who despise Me, + +‘The LORD says that you will have peace,’ + +and to everyone who walks in the + +18 + +stubbornness of his own heart, + +‘No harm will come to you.’ + +But which of them has stood in the council of + +the LORD + +to see and hear His word? +Who has given heed to His word + +19 + +and obeyed it? + +Behold, the storm of the LORD +has gone out with fury, +a whirlwind swirling down + +20 + +upon the heads of the wicked. + +The anger of the LORD will not turn back +until He has fully accomplished the + +purposes of His heart. + +In the days to come + +21 + +you will understand this clearly. + +I did not send these prophets, + +yet they have run with their message; + +I did not speak to them, + +yet they have prophesied. + +But if they had stood in My council, + +they would have proclaimed My words to + +My people + +and turned them back + +23 + +from their evil ways and deeds.” + +“Am I only a God nearby,” declares the LORD, + +24 +“and not a God far away?” + +“Can a man hide in secret places where I can- + +not see him?” declares the LORD. + +“Do I not fill the heavens and the earth?” declares +25 +the LORD. + +27 + +26 + +“I have heard the sayings of the prophets who +prophesy lies in My name: ‘I had a dream! I had a +How long will this continue in the +dream!’ +hearts of these prophets who prophesy false- +hood, these prophets of the delusion of their own +They suppose the dreams that they tell +minds? +one another will make My people forget My +name, just as their fathers forgot My name +28 +through the worship of Baal. + +29 + +Let the prophet who has a dream retell it, but +let him who has My word speak it truthfully. For +what is straw compared to grain?” declares the +“Is not My word like fire,” declares the +LORD. +30 +LORD, “and like a hammer that smashes a rock?” + +“Therefore behold,” declares the LORD, “I am +against the prophets who steal from one another +31 +words they attribute to Me.” + +“Yes,” declares the LORD, “I am against the +prophets who wag their own tongues and pro- +32 +claim, ‘The LORD declares it.’ + +” + +“Indeed,” declares the LORD, “I am against +those who prophesy false dreams and retell +them to lead My people astray with their reckless +lies. It was not I who sent them or commanded +them, and they are of no benefit at all to these +False Prophecies +people,” declares the LORD. +33 + +“Now when this people or a prophet or priest +asks you, ‘What is the burden of the LORD?’ you +are to say to them, ‘What burden? I will forsake +34 +you, declares the LORD.’ + +As for the prophet or priest or anyone who +claims, ‘This is the burden of the LORD,’ I will +35 +punish that man and his household. + +This is what each man is to say to his friend +and to his brother: +‘What has the LORD +answered?’ or ‘What has the LORD spoken?’ + + 36 + +But refer no more to the burden of the LORD, +for each man’s word becomes the burden, so that +you pervert the words of the living God, the +37 +LORD of Hosts, our God. + +Thus you are to say to the prophet: ‘What has +the LORD answered you?’ and ‘What has the +38 +LORD spoken?’ + +But if you claim, ‘This is the burden of the +LORD,’ then this is what the LORD says: Because +you have said, ‘This is the burden of the LORD,’ +39 +and I specifically told you not to make this claim, +therefore I will surely forget you and will cast +you out of My presence, both you and the city +that I gave to you and your fathers. +And I will +bring upon you everlasting shame and perpetual +The Good and Bad Figs +humiliation that will never be forgotten.” + +40 + +Jeremiah 25:10 | 703 + +9 + +10 + +of Jerusalem—those remaining in this land and +those living in the land of Egypt. +I will make +them a horror and an offense to all the kingdoms +of the earth, a disgrace and an object of scorn, +ridicule, and cursing wherever I have banished +And I will send against them sword and +them. +famine and plague, until they have perished from +Seventy Years of Captivity +the land that I gave to them and their fathers.’ + +” + +25 + +This is the word that came to Jeremiah +concerning all the people of Judah in the +fourth year of Jehoiakim son of Josiah king of Ju- +dah, which was the first year of Nebuchadnezzar +So the prophet Jeremiah spoke +king of Babylon. +to all the people of Judah and all the residents of +3 +Jerusalem as follows: + +2 + +24 + + a + +After Nebuchadnezzar king of Babylon +had carried away Jeconiah + son of Jehoi- +akim king of Judah, as well as the officials of Ju- +dah and the craftsmen and metalsmiths from Je- + the +rusalem, and had brought them to Babylon, +LORD showed me two baskets of figs placed in +One basket had +front of the temple of the LORD. +very good figs, like those that ripen early, but the +other basket contained very poor figs, so bad +3 +they could not be eaten. + +2 + +b + +“Jeremiah,” the LORD asked, “what do you see?” + +“Figs!” I replied. “The good figs are very good, but +the bad figs are very bad, so bad they cannot be +4 +eaten.” +5 + +c + +6 + +Then the word of the LORD came to me, saying, +“This is what the LORD, the God of Israel, says: +‘Like these good figs, so I regard as good the ex- +iles from Judah, whom I have sent away from this +I will keep +place to the land of the Chaldeans. +My eyes on them for good and will return them +to this land. I will build them up and not tear +them down; I will plant them and not uproot +I will give them a heart to know Me, that +them. +I am the LORD. They will be My people, and I will +be their God, for they will return to Me with all +8 +their heart. + +7 + +“From the thirteenth year of Josiah son of Amon +king of Judah until this very day—twenty-three +years—the word of the LORD has come to me, +4 + but +and I have spoken to you again and again, +And the LORD has sent all +you have not listened. +His servants the prophets to you again and + but you have not listened or inclined your +again, +5 +ear to hear. + +d + +e + +The prophets told you, ‘Turn now, each of you, +from your evil ways and deeds, and you can +dwell in the land that the LORD has given to you +Do not follow +and your fathers forever and ever. +other gods to serve and worship them, and do +not provoke Me to anger with the works of your +7 +hands. Then I will do you no harm.’ + +6 + +‘But to your own harm, you have not listened to +Me,’ declares the LORD, ‘so you have provoked +8 +Me to anger with the works of your hands.’ + +9 + +Therefore this is what the LORD of Hosts says: +‘Because you have not obeyed My words, +be- +hold, I will summon all the families of the north, +declares the LORD, and I will send for My servant +Nebuchadnezzar king of Babylon, whom I will +bring against this land, against its residents, and +against all the surrounding nations. So I will de- +vote them to destruction + and make them an +object of horror and contempt, an everlasting +10 +desolation. + +f + +But like the bad figs, so bad they cannot be +eaten,’ says the LORD, ‘so will I deal with Zede- +Jehoiachin +a 1 Jeconiah +kiah king of Judah, his officials, and the remnant +Babylon +c 5 + is a variant of +you, rising up early and sending (them), + +; see 2 Kings 24:12. + +d 3 +f 9 + +b 1 + +Moreover, I will banish from them the sounds +of joy and gladness, the voices of the bride and +bridegroom, the sound of the millstones, and the + +metalsmiths, and had brought them from Jerusalem to + +I have spoken to you, rising up early and speaking, + +e 4 + +to + +Or + +cherem + +That is, the Babylonians + +Literally +Forms of the Hebrew + +Literally + refer to the giving over of things or persons, + +either by destroying them or by giving them as an offering. + + 704 | Jeremiah 25:11 + +11 + +28 + +And this whole land will be- +light of the lamp. +come a desolate wasteland, and these nations +12 +will serve the king of Babylon for seventy years. + +But when seventy years are complete, I will +a +punish the king of Babylon and that nation, the + for their guilt, declares +land of the Chaldeans, +the LORD, and I will make it an everlasting deso- +13 +lation. + +14 + +I will bring upon that land all the words I have +pronounced against it, all that is written in this +book, which Jeremiah has prophesied against all +For many nations and great kings +the nations. +will enslave them, and I will repay them accord- +ing to their deeds and according to the work of +The Cup of God’s Wrath +” +their hands.’ + +15 + +This is what the LORD, the God of Israel, said +to me: “Take from My hand this cup of the wine +16 +of wrath, and make all the nations to whom I +And they will drink and +send you drink from it. +stagger and go out of their minds, because of the +17 +sword that I will send among them.” + +21 + +19 + +18 + +20 + +So I took the cup from the LORD’s hand and +made all the nations drink from it, each one to +to make them a +whom the LORD had sent me, +ruin, an object of horror and contempt and curs- +ing, as they are to this day—Jerusalem and the +Pharaoh +cities of Judah, its kings and officials; +king of Egypt, his officials, his leaders, and all his +all the mixed tribes; all the kings of Uz; +people; +all the kings of the Philistines: Ashkelon, Gaza, +Edom, +Ekron, and the remnant of Ashdod; +Moab, and the Ammonites; +all the kings of Tyre +and Sidon; the kings of the coastlands across the +Dedan, Tema, Buz, and all who cut the cor- +sea; +all the kings of Arabia, and +ners of their hair; +25 +all the kings of the mixed tribes who dwell in the +26 +all the kings of Zimri, Elam, and Media; +desert; +all the kings of the north, both near and far, one +after another—all the kingdoms on the face of +the earth. And after all of them, the king of +27 +Sheshach + + will drink it too. + +22 + +23 + +24 + + b + +“Then you are to tell them that this is what the +LORD of Hosts, the God of Israel, says: ‘Drink, get +drunk, and vomit. Fall down and never get up +again, because of the sword I will send among +a 12 +you.’ +the rams + +b 26 Sheshach + +29 + +If they refuse to take the cup from your hand +and drink it, you are to tell them that this is what +the LORD of Hosts says: ‘You most certainly must +For behold, I am beginning to bring +drink it! +disaster on the city that bears My Name, so how +could you possibly go unpunished? You will not +go unpunished, for I am calling down a sword +upon all the inhabitants of the earth, declares the +30 +LORD of Hosts.’ + +So you are to prophesy all these words against + +them and say to them: + +‘The LORD will roar from on high; + +He will raise His voice from His holy + +habitation. + +He will roar loudly over His pasture; +like those who tread the grapes, + +He will call out with a shout + +31 + +against all the inhabitants of the earth. +The tumult will resound to the ends of the + +earth + +because the LORD brings a charge against + +the nations. + +He brings judgment on all mankind + +and puts the wicked to the sword,’ + +” + +declares the LORD. + +32 + +This is what the LORD of Hosts says: + +“Behold! Disaster is spreading +from nation to nation; + +a mighty storm is rising + +33 + +from the ends of the earth.” + +Those slain by the LORD on that day will be +spread from one end of the earth to the other. +They will not be mourned, gathered, or buried. +The Cry of the Shepherds +They will be like dung lying on the ground. +34 + +Wail, you shepherds, and cry out; + +roll in the dust, you leaders of the flock. +For the days of your slaughter have come; +you will fall and be shattered like fine + +c + +35 + +pottery. + +Flight will evade the shepherds, + +36 + +and escape will elude the leaders of the + +flock. + +Hear the cry of the shepherds, + +the wailing of the leaders of the flock, +for the LORD is destroying their + +c 34 +pasture. + +you will fall like the best of + +That is, the Babylonians + + is a code name for Babylon. + +Hebrew; LXX + + 37 + +38 + +The peaceful meadows have been silenced +because of the LORD’s burning anger. + +death, for he has prophesied against this city, as +12 +you have heard with your own ears!” + +Jeremiah 26:23 | 705 + +He has left His den like a lion, + +for their land has been made + + a +a desolation + +by the sword + + of the oppressor, + +and because of the fierce anger of + +A Warning to the Cities of Judah + +the LORD. + +26 + +2 + +At the beginning of the reign of Jehoia- +kim son of Josiah king of Judah, this word +“This is what the LORD +came from the LORD: +says: Stand in the courtyard of the house of the +LORD and speak all the words I have commanded +you to speak to all the cities of Judah who come +Perhaps +to worship there. Do not omit a word. +they will listen and turn—each from his evil way +of life—so that I may relent of the disaster I am +planning to bring upon them because of the evil +4 +of their deeds. + +3 + +5 + +And you are to tell them that this is what the +LORD says: ‘If you do not listen to Me and walk in +and if you +My law, which I have set before you, + b +do not listen to the words of My servants the +prophets, whom I have sent you again and again +then I will make +even though you did not listen, +this house like Shiloh, and I will make this city an +object of cursing among all the nations of the +Jeremiah Threatened with Death +earth.’ +7 + +” + +6 + +8 + +Now the priests and prophets and all the people +heard Jeremiah speaking these words in the +house of the LORD, +and as soon as he had fin- +ished telling all the people everything the LORD +had commanded him to say, the priests and +prophets and all the people seized him, shouting, +How dare you prophesy +“You must surely die! +in the name of the LORD that this house will be- +come like Shiloh and this city will be desolate and +deserted!” + +9 + +And all the people assembled against Jeremiah in +10 +the house of the LORD. + +When the officials of Judah heard these things, +they went up from the king’s palace to the house +of the LORD and sat there at the entrance of the +11 +New Gate. + +Then the priests and prophets said to the offi- +a 38 +cials and all the people, “This man is worthy of +sent you, rising up early and sending (them), + +c 18 + +14 + +13 + +But Jeremiah said to all the officials and all the +people, “The LORD sent me to prophesy against +this house and against this city all the words that +So now, correct your ways and +you have heard. +deeds, and obey the voice of the LORD your God, +so that He might relent of the disaster He has +As for me, here I am +pronounced against you. +in your hands; do to me what you think is good +But know for certain that if you put +and right. +me to death, you will bring innocent blood upon +yourselves, upon this city, and upon its residents; +for truly the LORD has sent me to speak all these +Jeremiah Spared from Death +words in your hearing.” +16 + +15 + +Then the officials and all the people told the +priests and prophets, “This man is not worthy of +death, for he has spoken to us in the name of the +17 +LORD our God!” + +18 + +Some of the elders of the land stood up and +said to the whole assembly of the people, +“Mi- +cah the Moreshite prophesied in the days of Hez- +ekiah king of Judah and told all the people of +Judah that this is what the LORD of Hosts says: + +‘Zion will be plowed like a field, + + c +Jerusalem will become a heap of rubble, +and the temple mount a wooded ridge.’ + +19 + +Did Hezekiah king of Judah or anyone else in +Judah put him to death? Did Hezekiah not fear +the LORD and seek His favor, and did not the +LORD relent of the disaster He had pronounced +against them? But we are about to bring great +The Prophet Uriah +harm on ourselves!” +20 + +d + +21 + +Now there was another man prophesying in +the name of the LORD, Uriah son of Shemaiah +from Kiriath-jearim. He prophesied against this +city and against this land the same things that +Jeremiah did. +King Jehoiakim and all his +mighty men and officials heard his words, and +the king sought to put him to death. But when +Uriah found out about it, he fled in fear and went +22 +to Egypt. + +Then King Jehoiakim sent men to Egypt: Elna- +23 +than son of Achbor along with some other men. +They brought Uriah out of Egypt and took him +I have +to King Jehoiakim, who had him put to the sword +d 20 + +according to all the words of Jeremiah + +anger + +b 5 + +Some Heb. manuscripts and LXX (see also Jer. 46:16 and Jer. 50:16); most Heb. manuscripts + +Literally + + c + +Micah 3:12 + +Literally + + 706 | Jeremiah 26:24 + +and his body thrown into the burial place of the +24 +common people. + +Nevertheless, Ahikam son of Shaphan sup- +ported Jeremiah, so he was not handed over to +The Yoke of Nebuchadnezzar +the people to be put to death. + +27 + + a + +At the beginning of the reign of Zede- +kiah + son of Josiah king of Judah, this +This is + +2 + +b + +word came to Jeremiah from the LORD. +what the LORD said to me: + +3 +“Make for yourself a yoke out of leather straps +Send word to the kings +and put it on your neck. +of Edom, Moab, Ammon, Tyre, and Sidon through +the envoys who have come to Jerusalem to Zede- +Give them a message from +kiah king of Judah. +the LORD of Hosts, the God of Israel, to relay to +5 +their masters: + +4 + +6 + +7 + +By My great power and outstretched arm, I +made the earth and the men and beasts on the +So now +face of it, and I give it to whom I please. +I have placed all these lands under the authority +of My servant Nebuchadnezzar king of Babylon. I +have even made the beasts of the field subject to +All nations will serve him and his son and +him. +grandson, until the time of his own land comes; +then many nations and great kings will enslave +8 +him. + +As for the nation or kingdom that does not serve +Nebuchadnezzar king of Babylon and does not +place its neck under his yoke, I will punish that +nation by sword and famine and plague, declares +9 +the LORD, until I have destroyed it by his hand. + +10 + +But as for you, do not listen to your prophets, +your diviners, your interpreters of dreams, your +mediums, or your sorcerers who declare, ‘You +For they +will not serve the king of Babylon.’ +prophesy to you a lie that will serve to remove +you from your land; I will banish you and you will +But the nation that will put its neck un- +perish. +der the yoke of the king of Babylon and serve +him, I will leave in its own land, to cultivate it and +12 +reside in it, declares the LORD.” + +11 + +13 + +And to Zedekiah king of Judah I spoke the same +message: “Put your necks under the yoke of the +king of Babylon; serve him and his people, and +Why should you and your people die by +live! +sword and famine and plague, as the LORD has +decreed against any nation that does not serve +a 1 +the king of Babylon? +Jehoiakim + +b 1 +d 4 Jeconiah + +14 + +15 + +Do not listen to the words of the prophets who +say, ‘You must not serve the king of Babylon,’ for +For I have +they are prophesying to you a lie. +not sent them, declares the LORD, and yet they +are prophesying falsely in My name; therefore I +will banish you, and you will perish—you and the +16 +prophets who prophesy to you.” + +Then I said to the priests and to all this +people, “This is what the LORD says: Do not listen +to the words of your prophets who prophesy to +you, saying, ‘Look, very soon now the articles +from the house of the LORD will be brought back +17 +from Babylon.’ They are prophesying to you a lie. +Do not listen to them. Serve the king of Baby- +18 +lon and live! Why should this city become a ruin? + +If they are indeed prophets and the word of the +LORD is with them, let them now plead with the +LORD of Hosts that the articles remaining in the +house of the LORD, in the palace of the king of Ju- +19 +dah, and in Jerusalem, not be taken to Babylon. + +21 + +20 + +For this is what the LORD of Hosts says about +the pillars, the sea, the bases, and the rest of the +articles that remain in this city, +which Nebu- + c +chadnezzar king of Babylon did not take when he +carried Jeconiah + son of Jehoiakim king of Judah +into exile from Jerusalem to Babylon, along with +all the nobles of Judah and Jerusalem. +Yes, this +is what the LORD of Hosts, the God of Israel, says +about the articles that remain in the house of the +LORD, in the palace of the king of Judah, and in +Jerusalem: +‘They will be carried to Babylon +and will remain there until the day I attend to +them again,’ declares the LORD. ‘Then I will bring +Hananiah’s False Prophecy +them back and restore them to this place.’ + +22 + +” + +28 + +2 + +In the fifth month of that same year, the +fourth year, near the beginning of the +reign of King Zedekiah of Judah, the prophet Han- +aniah son of Azzur, who was from Gibeon, said to +me in the house of the LORD in the presence of +“This is what the +the priests and all the people: +LORD of Hosts, the God of Israel, says: ‘I have bro- +Within two +ken the yoke of the king of Babylon. +years I will restore to this place all the articles of +the house of the LORD that Nebuchadnezzar king +of Babylon removed from here and carried to + d +And I will restore to this place Jeco- +Babylon. +niah + son of Jehoiakim king of Judah, along with +all the exiles from Judah who went to Babylon,’ + +3 + +4 + +c 20 Jeconiah + +Jehoiachin + +A few Hebrew manuscripts and Syriac (see also verses 3 and 12, and Jeremiah 28:1); most Hebrew manuscripts + +Jehoiachin + +24:12. + + is a variant of + +; see 2 Kings 24:12. + +Most LXX manuscripts do not include this verse. + + is a variant of + +; see 2 Kings + + declares the LORD, ‘for I will break the yoke of +5 +the king of Babylon.’ + +” + +Then the prophet Jeremiah replied to the +prophet Hananiah in the presence of the priests +6 +and all the people who were standing in the +“Amen!” Jeremiah said. +house of the LORD. +“May the LORD do so! May the LORD fulfill the +words you have prophesied, and may He restore +the articles of His house and all the exiles back to +7 +this place from Babylon. + +8 + +Nevertheless, listen now to this message I am +speaking in your hearing and in the hearing of all +The prophets of old who preceded +the people. +you and me prophesied war, disaster, and plague +As for +against many lands and great kingdoms. +the prophet who prophesies peace, only if the +word of the prophet comes true will the prophet +10 +be recognized as one the LORD has truly sent.” + +9 + +Then the prophet Hananiah took the yoke off +11 +the neck of Jeremiah the prophet and broke it. +And in the presence of all the people Hananiah +proclaimed, “This is what the LORD says: ‘In this +way, within two years I will break the yoke of +Nebuchadnezzar king of Babylon off the neck of +all the nations.’ +12 +At this, Jeremiah the prophet went on his way. +But shortly after Hananiah the prophet had +13 +broken the yoke off his neck, the word of the +“Go and tell Hananiah +LORD came to Jeremiah: +that this is what the LORD says: ‘You have broken +a yoke of wood, but in its place you have fash- +14 +ioned a yoke of iron.’ + +” + +For this is what the LORD of Hosts, the God of +Israel, says: ‘I have put a yoke of iron on the neck +of all these nations to make them serve Nebu- +chadnezzar king of Babylon, and they will serve +him. I have even given him control of the beasts +15 +of the field.’ + +” + +16 + +Then the prophet Jeremiah said to the prophet +Hananiah, “Listen, Hananiah! The LORD did not +send you, but you have persuaded this people to +Therefore this is what the LORD +trust in a lie. +says: ‘I am about to remove you from the face of +the earth. You will die this year because you have +17 +preached rebellion against the LORD.’ + +” + +And in the seventh month of that very year, the +Jehoiachin + +prophet Hananiah died. +a 2 Jeconiah + +b 9 + +Jeremiah 29:14 | 707 + +Jeremiah’s Letter to the Exiles + +29 + +a + +2 + +This is the text of the letter that Jeremiah +the prophet sent from Jerusalem to the +surviving elders among the exiles and to the +priests, the prophets, and all the others Nebu- +chadnezzar had carried into exile from Jerusalem + the +to Babylon. +queen mother, the court officials, the officials of +Judah and Jerusalem, the craftsmen, and the met- +The +alsmiths had been exiled from Jerusalem.) +letter was entrusted to Elasah son of Shaphan +and Gemariah son of Hilkiah, whom Zedekiah +king of Judah sent to King Nebuchadnezzar in +Babylon. It stated: + +(This was after King Jeconiah, +3 + +4 + +6 + +5 + +This is what the LORD of Hosts, the God of +Israel, says to all the exiles who were carried +away from Jerusalem to Babylon: +“Build +houses and settle down. Plant gardens and +eat their produce. +Take wives and have +sons and daughters. Take wives for your +sons and give your daughters in marriage, so +that they too may have sons and daughters. +Seek the +Multiply there; do not decrease. +prosperity of the city to which I have sent +you as exiles. Pray to the LORD on its behalf, +8 +for if it prospers, you too will prosper.” + +7 + +For this is what the LORD of Hosts, the God +of Israel, says: “Do not be deceived by the +prophets and diviners among you, and do +9 +not listen to the dreams you elicit from them. +For they are falsely prophesying to you in +My name; I have not sent them, declares the +LORD.” + + b + +10 + +13 + +11 + +For this is what the LORD says: “When Baby- +lon’s seventy years are complete, I will attend to +you and confirm My promise to restore you to +For I know the plans I have for you, +this place. +declares the LORD, plans to prosper you and not +12 +to harm you, to give you a future and a hope. +Then you will call upon Me and come and pray +You will seek Me +to Me, and I will listen to you. +and find Me when you search for Me with all your +I will be found by you, declares the +heart. +LORD, and I will restore you from captivity + and +gather you from all the nations and places to +which I have banished you, declares the LORD. I +will restore you to the place from which I sent +you into exile.” + +14 + + c + +c 14 + is a variant of + +restore your fortunes + +; see 2 Kings 24:12. + +Some translators close the written portion of this letter later + +in the chapter. + +Or + + 708 | Jeremiah 29:15 + +15 + +16 + +Because you may say, “The LORD has raised up +this is what the +for us prophets in Babylon,” +LORD says about the king who sits on David’s +throne and all the people who remain in this city, +your brothers who did not go with you into ex- +ile— + +this is what the LORD of Hosts says: + +17 + +18 + + “I will send against them sword and famine and +plague, and I will make them like rotten figs, so +I will pursue them +bad they cannot be eaten. +with sword and famine and plague. I will make +them a horror to all the kingdoms of the earth— +a curse, a desolation, and an object of scorn and +reproach among all the nations to which I banish +I will do this because they have not lis- +them. +tened to My words, declares the LORD, which I +sent to them again and again + through My serv- +ants the prophets. And neither have you exiles +20 +listened, declares the LORD.” + +19 + + a + +22 + +So hear the word of the LORD, all you exiles I +21 +have sent away from Jerusalem to Babylon. +This is what the LORD of Hosts, the God of Is- +rael, says about Ahab son of Kolaiah and Zede- +kiah son of Maaseiah, who are prophesying to +you lies in My name: “I will deliver them to Neb- +uchadnezzar king of Babylon, and he will kill +Because of them, +them before your very eyes. +all the exiles of Judah who are in Babylon will use +this curse: ‘May the LORD make you like Zede- +kiah and Ahab, whom the king of Babylon +For they have committed +roasted in the fire!’ +an outrage in Israel by committing adultery with +the wives of their neighbors and speaking lies in +My name, which I did not command them to do. I +am He who knows, and I am a witness, declares +The Message to Shemaiah +the LORD.” +24 +25 + +23 + +You are to tell Shemaiah the Nehelamite that +this is what the LORD of Hosts, the God of Is- +rael, says: “In your own name you have sent out +letters to all the people of Jerusalem, to the priest + b +Zephaniah son of Maaseiah, and to all the priests. +You said to Zephaniah: + +26 + +‘The LORD has appointed you priest in +place of Jehoiada, to be the chief officer in the +house of the LORD, responsible for any mad- +man who acts like a prophet—you must put +So now, why +him in stocks and neck irons. +have you not rebuked Jeremiah of Anathoth, +For +who poses as a prophet among you? + +28 + +27 + +c 3 + +restore the fortunes of + +a 19 + +I sent to them, rising up early and sending (to them) + +he has sent to us in Babylon, claiming: Since +the exile will be lengthy, build houses and +settle down; plant gardens and eat their pro- +duce.’ + +” + +29 + +(Zephaniah the priest, however, had read this + +30 +letter to Jeremiah the prophet.) +31 + +32 + +Then the word of the LORD came to Jeremiah: +“Send a message telling all the exiles what the +LORD says concerning Shemaiah the Nehelamite. +Because Shemaiah has prophesied to you— +though I did not send him—and has made you +this is what the LORD says: ‘I will +trust in a lie, +surely punish Shemaiah the Nehelamite and his +descendants. He will have no one left among this +people, nor will he see the good that I will bring +to My people, declares the LORD, for he has +The Restoration of Israel and Judah +preached rebellion against the LORD.’ +(Ezekiel 28:25–26) + +” + +30 + +2 + +3 + +This is the word that came to Jeremiah +“This is what the LORD, +from the LORD: +the God of Israel, says: ‘Write in a book all the +words that I have spoken to you. +For behold, the + c +days are coming, declares the LORD, when I will + My people Israel and +restore from captivity +Judah, declares the LORD. I will restore them to +the land that I gave to their fathers, and they will +4 +possess it.’ + +” + +5 + +These are the words that the LORD spoke con- +Yes, this is what the + +cerning Israel and Judah. +LORD says: + +“A cry of panic is heard— +6 + +a cry of terror, not of peace. + +Ask now, and see: + +Can a male give birth? +Why then do I see every man + +with his hands on his stomach like + +7 + +a woman in labor + +and every face turned pale? + +How awful that day will be! +None will be like it! + +It is the time of Jacob’s distress, +8 +but he will be saved out of it. + +On that day, + +declares the LORD of Hosts, +I will break the yoke off their necks + +and tear off their bonds, +You said +and no longer will strangers enslave them. + +Zephaniah + +b 25 + +Literally +added for clarity. + +Or + +Hebrew + +; the addressee + + is + + 9 + +Instead, they will serve the LORD their God + +10 + +and David their king, +whom I will raise up for them. + +As for you, O Jacob My servant, do not be + +afraid, + +declares the LORD, +and do not be dismayed, + +O Israel. + +For I will surely save you out of a distant + +place, + +your descendants from the land of their + +captivity! + +11 + +Jacob will return to quiet and ease, +with no one to make him afraid. + +For I am with you to save you, + +declares the LORD. + +Though I will completely destroy all the + +nations to which I have scattered you, + +I will not completely destroy you. + +Yet I will discipline you justly, + +12 + +and will by no means leave you + +unpunished.” + +For this is what the LORD says: + +13 + +“Your injury is incurable; + +your wound is grievous. + +There is no one to plead your cause, + +14 + +no remedy for your sores, +no recovery for you. + +All your lovers have forgotten you; + +they no longer seek you, + +for I have struck you as an enemy + +would, + +with the discipline of someone cruel, + +15 + +because of your great iniquity +and your numerous sins. + +Why do you cry out over your wound? + +Your pain has no cure! +Because of your great iniquity +and your numerous sins +I have done these things to you. + +16 + +Nevertheless, all who devour you will be + +devoured, + +and all your adversaries—every one + +of them— + +will go off into exile. + +17 + +Those who plundered you will be plundered, +and all who raided you will be raided. +But I will restore your health and heal your + +wounds, +restore from captivity +declares the LORD, + +a 18 + +Or + +Or + +Jeremiah 31:3 | 709 + +18 + +because they call you an outcast, +Zion, for whom no one cares.” + + a +This is what the LORD says: + +“I will restore the fortunes of + + Jacob’s tents +and have compassion on his dwellings. +And the city will be rebuilt on her own ruins, +and the palace will stand in its rightful + +19 + +place. + +Thanksgiving will proceed from them, + +a sound of celebration. + +I will multiply them, and they will not be + +decreased; + +20 + +I will honor them, and they will not be + +belittled. + +Their children will be as in days of old, + +and their congregation will be established + +21 + +before Me; + +and I will punish all their oppressors. + +Their leader will be one of their own, + +and their ruler will arise from their midst. + +And I will bring him near, and he will + +approach Me, + +for who would dare on his own to + +declares the LORD. + +22 + +approach Me?” + +23 + +“And you will be My people, +and I will be your God.” + +Behold, the storm of the LORD +has gone out with fury, +a whirlwind swirling down + +24 + +upon the heads of the wicked. + +The fierce anger of the LORD will not turn + +back + +until He has fully accomplished the + +purposes of His heart. + +In the days to come + +Mourning Turned to Joy (Matthew 2:16–18) + +you will understand this. + +31 + +“At that time,” declares the LORD, “I will +be the God of all the families of Israel, + +2 +and they will be My people.” + +This is what the LORD says: + +“The people who survived the sword +found favor in the wilderness +when Israel went to find rest.” + +3 + + b + +The LORD appeared to us in the past, saying: + +“I have loved you with an everlasting love; +therefore I have drawn you with loving + +b 3 + +The LORD appeared to him from afar, saying + +devotion. + + 710 | Jeremiah 31:4 + +4 + +13 + +Again I will build you, and you will be rebuilt, + +Then the maidens will rejoice with dancing, + +O Virgin Israel. + +Again you will take up your tambourines +5 + +young men and old as well. +I will turn their mourning into joy, + +and go out in joyful dancing. + +14 + +and give them comfort and joy for their + +Again you will plant vineyards on the hills of + +sorrow. + +6 + +Samaria; + +the farmers will plant and enjoy the fruit. +For there will be a day when watchmen will + +I will fill the souls of the priests abundantly, +declares the LORD. +and will fill My people with My goodness,” + +15 + +call out + +on the hills of Ephraim, +‘Arise, let us go up to Zion, +” +to the LORD our God!’ + +7 + +For this is what the LORD says: + +“Sing with joy for Jacob; + +shout for the foremost of the nations! + +Make your praises heard, and say, +‘O LORD, save Your people, +the remnant of Israel!’ + +8 + +Behold, I will bring them from the land of the + +north + +and gather them from the farthest parts of + +the earth, + +including the blind and the lame, + +9 + +expectant mothers and women in labor. +They will return as a great assembly! + +They will come with weeping, + +and by their supplication I will lead them; + +I will make them walk beside streams of + +waters, + +on a level path where they will not + +stumble. +For I am Israel’s Father, + +10 + +Hear, O nations, the word of the LORD, + +and proclaim it in distant coastlands: + +“The One who scattered Israel will gather + +11 + +them and keep them +as a shepherd keeps his flock. +For the LORD has ransomed Jacob + +12 + +and redeemed him from the hand that had + +overpowered him. + +This is what the LORD says: + +“A voice is heard in Ramah, + +mourning and great weeping, +Rachel weeping for her children +and refusing to be comforted, +because they are no more.” + + a + +16 + +This is what the LORD says: + +“Keep your voice from weeping +and your eyes from tears, + +for the reward for your work will come, + +declares the LORD. + +17 + +Then your children will return +from the land of the enemy. +So there is hope for your future, + +declares the LORD, + +and your children will return + b + +18 + +to their own land. + +I have surely heard Ephraim’s + + moaning: + +‘You disciplined me severely, +like an untrained calf. +Restore me, that I may return, + +19 + +for You are the LORD my God. + +After I returned, I repented; + +thigh in grief. + +I was ashamed and humiliated + +20 + +because I bore the disgrace of my youth.’ + +Is not Ephraim a precious son to Me, + +a delightful child? + +Though I often speak against him, + + c + +I still remember him. + +Therefore My heart yearns for him; + +I have great compassion for him,” + +declares the LORD. + +and Ephraim is My firstborn.” + +and after I was instructed, I struck my + +They will come and shout for joy on the + +21 + +heights of Zion; + +they will be radiant over the bounty of the + +LORD— + +the grain, new wine, and oil, + +and the young of the flocks and herds. +Their life will be like a well-watered garden, + +and never again will they languish. + +b 18 + +a 15 +for him + +“Set up the road markers, +put up the signposts. +Keep the highway in mind, + +the road you have traveled. + +Return, O Virgin Israel, + +return to these cities of yours. + +c 20 + +My bowels yearn + +Cited in Matthew 2:18 + +That is, the northern kingdom of Israel; also in verse 20 + +Hebrew + + 22 + +How long will you wander, +O faithless daughter? + a + +For the LORD has created a new thing + +23 + +in the land— +a woman will shelter + + a man.” + +24 + +b +This is what the LORD of Hosts, the God of Is- +rael, says: “When I restore them from captivity, +they will once again speak this word in the land +of Judah and in its cities: ‘May the LORD bless +you, O righteous dwelling place, O holy moun- +And Judah and all its cities will dwell +tain.’ +25 +together in the land, the farmers and those who +move with the flocks, +for I will refresh the +The New Covenant (Hebrews 8:6–13) +weary soul and replenish all who are weak.” +26 + +At this I awoke and looked around. My sleep + +27 +had been most pleasant to me. + +“The days are coming,” declares the LORD, +“when I will sow the house of Israel and the +28 +house of Judah with the seed of man and of beast. +Just as I watched over them to uproot and tear +down, to demolish, destroy, and bring disaster, +so I will watch over them to build and to plant,” +29 +declares the LORD. + +“In those days, it will no longer be said: + +Jeremiah 32:2 | 711 + +I will put My law in their minds + +and inscribe it on their hearts. + +34 + +And I will be their God, + +and they will be My people. + +No longer will each man teach his neighbor + +or his brother, + +saying, ‘Know the LORD,’ +because they will all know Me, + +from the least of them to the greatest, + +declares the LORD. +For I will forgive their iniquities + +35 + +and will remember their sins no more.” + + d + +Thus says the LORD, who gives the sun for +light by day, who sets in order the moon and +stars for light by night, who stirs up the sea so +that its waves roar—the LORD of Hosts is His +36 +name: + +“Only if this fixed order departed from My + +presence, +declares the LORD, + +would Israel’s descendants ever cease + +37 + +to be a nation before Me.” + +This is what the LORD says: + +“Only if the heavens above could be + +measured + +and the foundations of the earth below + +‘The fathers have eaten sour grapes, + +searched out + +30 + +and the teeth of the children are set + +on edge.’ + +Instead, each will die for his own iniquity. If +anyone eats the sour grapes, his own teeth will +31 +be set on edge. + +Behold, the days are coming, declares + +the LORD, + +when I will make a new covenant + +with the house of Israel + +32 + +and with the house of Judah. +It will not be like the covenant +I made with their fathers +when I took them by the hand + +to lead them out of the land of Egypt— + +c + +a covenant they broke, + +though I was a husband to them, + +” + +declares the LORD. + +33 + +“But this is the covenant I will make with the + +house of Israel + +would I reject all of Israel’s descendants + +declares the LORD. + +because of all they have done,” + +38 + + e + +40 + +39 + +“The days are coming,” + + declares the LORD, +“when this city will be rebuilt for Me, from the +The +tower of Hananel to the Corner Gate. +measuring line will once again stretch out +straight to the hill of Gareb and then turn toward +The whole valley of the dead bodies and +Goah. +ashes, and all the fields as far as the Kidron Val- +ley, to the corner of the Horse Gate to the east, +will be holy to the LORD. It will never again be +Jeremiah Buys Hanamel’s Field +uprooted or demolished.” + +32 + +This is the word that came to Jeremiah +from the LORD in the tenth year of Zede- +kiah king of Judah, which was the eighteenth +At that time the army +year of Nebuchadnezzar. +of the king of Babylon was besieging Jerusalem, +and Jeremiah the prophet was imprisoned in the + +for they did not abide in My + +c 32 + +2 + +after those days, declares the LORD. +will return to +will surround + +b 23 + +restore their fortunes + +a 22 +covenant, and I disregarded them +e 38 + + or +Behold, the days + +Or + +Or + +d 34 +Behold, the days are coming + +Hebrew; LXX + +Literally + +; see also Syriac. +; alternate MT reading + +Cited in Hebrews 8:8–12 and Hebrews 10:16–17 + + 712 | Jeremiah 32:3 + +courtyard of the guard, which was in the palace +3 +of the king of Judah. + +a + +4 + +For Zedekiah king of Judah had imprisoned him, +saying: “Why are you prophesying like this? You +claim that the LORD says, ‘Behold, I am about to +deliver this city into the hand of the king of Bab- +Zedekiah king of +ylon, and he will capture it. +Judah will not escape from the hands of the Chal- +deans, + but he will surely be delivered into the +hand of the king of Babylon, and will speak with +him face to face and see him eye to eye. +He will +take Zedekiah to Babylon, where he will stay un- +til I attend to him, declares the LORD. If you fight +6 +against the Chaldeans, you will not succeed.’ + +” + +5 + +7 + +8 + +Jeremiah replied, “The word of the LORD came +to me, saying: +Behold! Hanamel, the son of your +uncle Shallum, is coming to you to say, ‘Buy for +yourself my field in Anathoth, for you have the +Then, as the +right of redemption to buy it.’ +LORD had said, my cousin Hanamel came to me +in the courtyard of the guard and urged me, +‘Please buy my field in Anathoth in the land of +Benjamin, for you own the right of inheritance +and redemption. Buy it for yourself.’ +9 +Then I knew that this was the word of the LORD. + +” + +b + +11 + +10 + +So I bought the field in Anathoth from my +cousin Hanamel, and I weighed out seventeen +shekels of silver. +I signed and sealed the deed, +called in witnesses, and weighed out the silver on +Then I took the deed of purchase— +the scales. +12 +the sealed copy with its terms and conditions, as +and I gave this deed to +well as the open copy— +Baruch son of Neriah, the son of Mahseiah, in the +sight of my cousin Hanamel and the witnesses +who were signing the purchase agreement and +13 +all the Jews sitting in the courtyard of the guard. + +14 + +15 + +In their sight I instructed Baruch, + +“This is +what the LORD of Hosts, the God of Israel, says: +Take these deeds—both the sealed copy and the +open copy of the deed of purchase—and put +them in a clay jar to preserve them for a long +For this is what the LORD of Hosts, the +time. +God of Israel, says: Houses, fields, and vineyards +Jeremiah Prays for Understanding +will again be bought in this land.” +16 + +17 + +After I had given the deed of purchase to Ba- +“Oh, +ruch son of Neriah, I prayed to the LORD: +a 4 +Lord GOD! You have made the heavens and the + +c 18 + +into the bosom + +earth by Your great power and outstretched arm. +18 +Nothing is too difficult for You! + + c + +You show loving devotion to thousands but lay +the iniquity of the fathers into the laps + of their +19 +children after them, O great and mighty God +the One +whose name is the LORD of Hosts, +great in counsel and mighty in deed, whose eyes +are on all the ways of the sons of men, to reward +each one according to his ways and according to +20 +the fruit of his deeds. + +You performed signs and wonders in the land +of Egypt, and You do so to this very day, both in +Israel and among all mankind. And You have +made a name for Yourself, as is the case to this +21 +day. + +22 + +You brought Your people Israel out of the land +of Egypt with signs and wonders, with a strong +hand and an outstretched arm, and with great +You gave them this land that You had +terror. +sworn to give their fathers, a land flowing with +23 +milk and honey. + +24 + +They came in and possessed it, but they did not +obey Your voice or walk in Your law. They failed +to perform all that You commanded them to do, +and so You have brought upon them all this dis- +See how the siege ramps are mounted +aster. +against the city to capture it. And by sword and +famine and plague, the city has been given into +the hands of the Chaldeans who are fighting +against it. What You have spoken has happened, +25 +as You now see! + +Yet You, O Lord GOD, have said to me, ‘Buy for +yourself the field with silver and call in wit- +nesses, even though the city has been delivered +The LORD Answers Jeremiah +into the hands of the Chaldeans!’ +26 +27 + +” + +Then the word of the LORD came to Jeremiah: +“Behold, I am the LORD, the God of all flesh. Is + +28 +anything too difficult for Me? + +29 + +Therefore this is what the LORD says: Behold, +I am about to deliver this city into the hands of +the Chaldeans and of Nebuchadnezzar king of +And the Chalde- +Babylon, who will capture it. +ans who are fighting against this city will come +in, set it on fire, and burn it, along with the +houses of those who provoked Me to anger by +burning incense to Baal on their rooftops and by +pouring out drink offerings to other gods. + +b 9 17 shekels + +That is, the Babylonians; also in verses 5, 24, 25, 28, 29, and 43 + + is approximately 6.8 ounces or 193.8 + +grams of silver. + +Hebrew + + 30 + +For the children of Israel and of Judah have +done nothing but evil in My sight from their +youth; indeed, they have done nothing but pro- +voke Me to anger by the work of their hands, +31 +declares the LORD. + +32 + +For this city has aroused My wrath and fury +from the day it was built until now. Therefore I +because of all +will remove it from My presence +the evil the children of Israel and of Judah have +done to provoke Me to anger—they, their kings, +their officials, their priests and prophets, the +33 +men of Judah, and the residents of Jerusalem. +They have turned their backs to Me and not +their faces. Though I taught them again and + they would not listen or respond to disci- +again, +34 +pline. + +a + +They have placed their abominations in the +35 +house that bears My Name, and so have defiled it. +They have built the high places of Baal in the +Valley of Ben-hinnom to make their sons and +daughters pass through the fire to Molech— +something I never commanded them, nor had it +ever entered My mind, that they should commit +A Promise of Restoration (Ezekiel 11:13–21) +such an abomination and cause Judah to sin. +36 + +37 + +Now therefore, about this city of which you +say, ‘It will be delivered into the hand of the king +of Babylon by sword and famine and plague,’ this +I will +is what the LORD, the God of Israel, says: +surely gather My people from all the lands to +which I have banished them in My furious anger +38 +and great wrath, and I will return them to this +b +They will +place and make them dwell in safety. +be My people, and I will be their God. +I will +give them one heart and one way, so that they +will always fear Me for their own good and for +40 +the good of their children after them. + +39 + +I will make an everlasting covenant with them: +I will never turn away from doing good to them, +and I will put My fear in their hearts, so that they +Yes, I will re- +will never turn away from Me. +joice in doing them good, and I will faithfully +plant them in this land with all My heart and with +42 +all My soul. + +41 + +Jeremiah 33:11 | 713 + +44 + +about which you are saying, ‘It is a desolation, +without man or beast; it has been delivered into +Fields will be pur- +the hands of the Chaldeans.’ +chased with silver, and deeds will be signed, +sealed, and witnessed in the land of Benjamin, in +the areas surrounding Jerusalem, and in the cit- +ies of Judah—the cities of the hill country, the + and the Negev—because I will restore +foothills, +The Excellence of the Restored Nation +them from captivity, + + declares the LORD.” + +d + +c + +33 + +e + +2 + +While Jeremiah was still confined in the +courtyard of the guard, the word of the +“Thus says +LORD came to him a second time: +the LORD who made the earth, + the LORD who +formed it and established it, the LORD is His +Call to Me, and I will answer and show +name: +you great and unsearchable things you do not +4 +know. + +3 + +For this is what the LORD, the God of Israel, says +about the houses of this city and the palaces of +the kings of Judah that have been torn down for +5 +defense against the siege ramps and the sword: + and to fill +those places with the corpses of the men I will +strike down in My anger and in My wrath. I have +hidden My face from this city because of all its +6 +wickedness. + +The Chaldeans are coming to fight + +  f + + g + +7 + +Nevertheless, I will bring to it health and heal- +ing, and I will heal its people and reveal to them +the abundance of peace and truth. +I will restore +8 +Judah and Israel from captivity + and will rebuild +And I will cleanse them +them as in former times. +from all the iniquity they have committed against +Me, and will forgive all their sins of rebellion +9 +against Me. + +So this city will bring Me renown, joy, praise, +and glory before all the nations of the earth, +who will hear of all the good I do for it. They will +tremble in awe because of all the goodness and +10 +prosperity that I will provide for it. + +This is what the LORD says: In this place you +say is a wasteland without man or beast, in the +cities of Judah and in the streets of Jerusalem +that are deserted—inhabited by neither man +the +nor beast—there will be heard again +sounds of joy and gladness, the voices of the +bride and bridegroom, and the voices of those +bringing thank offerings into the house of the +LORD, saying: + +Shephelah + +c 44 + +11 + +43 + +For this is what the LORD says: Just as I have +brought all this great disaster on this people, so I +will bring on them all the good I have promised +I taught them, rising up early and teaching, +a 33 +And fields will be bought in this land +them. +lowlands +d 44 +f 5 + +They are coming to fight the Chaldeans + +Literally + +b 38 + +; that is, the western foothills of Judea + +Or + +LXX; Hebrew + +Or + +; that is, the Babylonians + +Or + +restore their fortunes + +Cited in 2 Corinthians 6:16 + +g 7 + + e 2 +restore the fortunes of Judah and Israel + +who made it +Hebrew + + or + + 714 | Jeremiah 33:12 + + ‘Give thanks to the LORD of Hosts, + +for the LORD is good; + a +His loving devotion endures forever.’ + +For I will restore the land from captivity +12 +former times, says the LORD. + + as in + +13 + +This is what the LORD of Hosts says: In this +desolate place, without man or beast, and in all +its cities, there will once more be pastures for +b +In the cities of +shepherds to rest their flocks. +the hill country, the foothills, + and the Negev, in +the land of Benjamin and the cities surrounding +Jerusalem, and in the cities of Judah, the flocks +will again pass under the hands of the one who +The Covenant with David +counts them, says the LORD. +14 + +Behold, the days are coming, + +declares the LORD, + +when I will fulfill the gracious promise + +that I have spoken +to the house of Israel + +15 + +and the house of Judah. +In those days and at that time + +I will cause to sprout for David a + +righteous Branch, +and He will administer justice + +16 + +and righteousness in the land. +In those days Judah will be saved, + +and Jerusalem will dwell securely, + +and this is the name by which it will + +c + +17 + +be called: + +The LORD Our Righteousness. + +18 + +For this is what the LORD says: David will +never lack a man to sit on the throne of the house +nor will the priests who are Levites +of Israel, +ever fail to have a man before Me to offer burnt +offerings, to burn grain offerings, and to present +19 +sacrifices.” +20 + +And the word of the LORD came to Jeremiah: +“This is what the LORD says: If you can break +My covenant with the day and My covenant with +21 +the night, so that day and night cease to occupy +then My covenant may +their appointed time, +also be broken with David My servant and with +My ministers the Levites who are priests, so that +22 +David will not have a son to reign on his throne. +As the hosts of heaven cannot be counted +and as the sand on the seashore cannot be meas- +ured, so too will I multiply the descendants of +My servant David and the Levites who minister +a 11 +before Me.” +c 16 +Or +Hebrew + +restore the fortunes of the land +d 26 + +restore their fortunes +Hebrew + +YHWH Tsidqenu + +b 13 + +Or + +23 + +24 + +25 + +Moreover, the word of the LORD came to Jere- +miah: +“Have you not noticed what these people +are saying: ‘The LORD has rejected the two fami- +lies He had chosen’? So they despise My people +This is +and no longer regard them as a nation. +what the LORD says: If I have not established My +covenant with the day and the night and the fixed +then I would also +order of heaven and earth, +reject the descendants of Jacob and of My servant +David, so as not to take from his descendants rul- +ers over the descendants of Abraham, Isaac, and +Jacob. For I will restore them from captivity + and +A Prophecy against Zedekiah +will have compassion on them.” + +26 + + d + +34 + +2 + +This is the word that came to Jeremiah +from the LORD when Nebuchadnezzar +king of Babylon, all his army, all the earthly king- +doms under his control, and all the other nations +were fighting against Jerusalem and all its sur- +The LORD, the God of Israel, +rounding cities. +told Jeremiah to go and speak to Zedekiah king of +Judah and tell him that this is what the LORD +says: “Behold, I am about to deliver this city into +the hand of the king of Babylon, and he will burn +And you yourself will not escape his +it down. +grasp, but will surely be captured and delivered +into his hand. You will see the king of Babylon +eye to eye and speak with him face to face; and +4 +you will go to Babylon. + +3 + +5 + +Yet hear the word of the LORD, O Zedekiah king +of Judah. This is what the LORD says concerning +you will die +you: You will not die by the sword; +in peace. As spices were burned for your fathers, +the former kings who preceded you, so people +will burn spices for you and lament, ‘Alas, O mas- +ter!’ For I Myself have spoken this word, declares +6 +the LORD.” + +7 + +In Jerusalem, then, Jeremiah the prophet +relayed all these words to Zedekiah king of +Judah +as the army of the king of Babylon was +fighting against Jerusalem and the remaining cit- +ies of Judah—against Lachish and Azekah. For +these were the only fortified cities remaining in +Freedom for Hebrew Slaves +Judah. +8 + +After King Zedekiah had made a covenant with +all the people in Jerusalem to proclaim liberty, +the word came to Jeremiah from the LORD +that +each man should free his Hebrew slaves, both + or + +; that is, the western foothills of Judea + +lowlands + +9 + +Shephelah + + 10 + +male and female, and no one should hold his fel- +So all the officials and all +low Jew in bondage. +the people who entered into this covenant +agreed that they would free their menservants +and maidservants and no longer hold them in +but +bondage. They obeyed and released them, +later they changed their minds and took back the +menservants and maidservants they had freed, +12 +and they forced them to become slaves again. +13 + +11 + +Then the word of the LORD came to Jeremiah +“This is what the LORD, +from the LORD, saying, +the God of Israel, says: I made a covenant with +your forefathers when I brought them out of the +14 +land of Egypt, out of the house of slavery, saying: +Every seventh year, each of you must free his +Hebrew brother who has sold himself to you. He +may serve you six years, but then you must let +him go free. But your fathers did not listen or in- +15 +cline their ear. + +16 + +Recently you repented and did what pleased +Me; each of you proclaimed freedom for his +neighbor. You made a covenant before Me in the +But now you have +house that bears My Name. +changed your minds and profaned My name. +Each of you has taken back the menservants and +maidservants whom you had set at liberty to go +wherever they wanted, and you have again +17 +forced them to be your slaves. + +Therefore this is what the LORD says: You +have not obeyed Me; you have not proclaimed +freedom, each man for his brother and for his +neighbor. So now I proclaim freedom for you, de- +clares the LORD—freedom to fall by sword, by +plague, and by famine! I will make you a horror +18 +to all the kingdoms of the earth. + +19 + +20 + +And those who have transgressed My cove- +nant and have not fulfilled the terms of the +covenant they made before Me, I will treat like +the calf they cut in two in order to pass between +The officials of Judah and Jerusalem, +its pieces. +the court officials, the priests, and all the people +of the land who passed between the pieces of the +calf, +I will deliver into the hands of their ene- +mies who seek their lives. Their corpses will be- +come food for the birds of the air and the beasts +And I will deliver Zedekiah king of +of the earth. +Judah and his officials into the hands of their en- +emies who seek their lives, to the army of the +king of Babylon that had withdrawn from you. +Jehonadab +a 6 Jonadab + +21 + +Jeremiah 35:13 | 715 + +22 + +Behold, I am going to give the command, de- +clares the LORD, and I will bring them back to +this city. They will fight against it, capture it, and +burn it down. And I will make the cities of Judah +The Obedience of the Rechabites +a desolation, without inhabitant.” + +35 + +This is the word that came to Jeremiah +2 +from the LORD in the days of Jehoiakim +son of Josiah king of Judah: +“Go to the house of +the Rechabites, speak to them, and bring them to +one of the chambers of the house of the LORD to +3 +offer them a drink of wine.” + +4 + +So I took Jaazaniah son of Jeremiah, the son of +Habazziniah, and his brothers and all his sons— +the entire house of the Rechabites— +and I +brought them into the house of the LORD, to a +chamber occupied by the sons of Hanan son of +Igdaliah, a man of God. This room was near the +chamber of the officials, which was above the +chamber of Maaseiah son of Shallum the door- +5 +keeper. + +Then I set pitchers full of wine and some cups +before the men of the house of the Rechabites, +6 +and I said to them, “Drink some wine.” + a + +7 + +“We do not drink wine,” they replied, “for our +forefather Jonadab + son of Rechab commanded +us, ‘Neither you nor your descendants are ever to +Nor are you ever to build a house or +drink wine. +sow seed or plant a vineyard. Those things are +not for you. Instead, you must live in tents all +your lives, so that you may live a long time in the +8 +land where you wander.’ + +And we have obeyed the voice of our forefather +Jonadab son of Rechab in all he commanded us. +So we have not drunk wine all our lives—neither +9 +we nor our wives nor our sons and daughters. +Nor have we built houses in which to live, and +we have not owned any vineyards or fields or +crops. +But we have lived in tents and have +obeyed and done exactly as our forefather Jon- +11 +adab commanded us. + +10 + + b + +So when Nebuchadnezzar king of Babylon +marched into the land, we said: ‘Come, let us go +into Jerusalem to escape the armies of the Chal- +deans + and the Arameans.’ So we have remained +Judah Rebuked +in Jerusalem.” +12 +13 + +Then the word of the LORD came to Jeremiah: +“This is what the LORD of Hosts, the God of +b 11 + + is a variant of + +; here and throughout this chapter; see 2 Kings 10:15. + +That is, the Babylonians + + 716 | Jeremiah 35:14 + +Israel, says: Go and tell the men of Judah and the +residents of Jerusalem: ‘Will you not accept dis- +14 +cipline and obey My words?’ declares the LORD. + +The words of Jonadab son of Rechab have been +carried out. He commanded his sons not to drink +wine, and they have not drunk it to this very day +because they have obeyed the command of their +forefather. But I have spoken to you again and +15 +again, + + and you have not obeyed Me! + + b + +a + +Again and again I have sent you + + all My serv- +ants the prophets, proclaiming: ‘Turn now, each +of you, from your wicked ways, and correct your +actions. Do not go after other gods to serve them. +Live in the land that I have given to you and your +fathers.’ But you have not inclined your ear or lis- +tened to Me. +Yes, the sons of Jonadab son of +Rechab carried out the command their forefather +gave them, but these people have not listened to +17 +Me. + +16 + +Therefore this is what the LORD God of Hosts, +the God of Israel, says: ‘Behold, I will bring to +Judah and to all the residents of Jerusalem all the +disaster I have pronounced against them, be- +cause I have spoken to them but they have not +obeyed, and I have called to them but they have +18 +not answered.’ + +” + +Then Jeremiah said to the house of the Recha- +bites: “This is what the LORD of Hosts, the God of +Israel, says: ‘Because you have obeyed the com- +mand of your forefather Jonadab and have kept +19 +all his commandments and have done all that +he charged you to do, +this is what the LORD +of Hosts, the God of Israel, says: Jonadab son +of Rechab will never fail to have a man to stand +Jeremiah’s Scroll Read in the Temple +before Me.’ + +” + +36 + +2 + +In the fourth year of Jehoiakim son of Jo- +siah king of Judah, this word came to Jer- +emiah from the LORD: +“Take a scroll and write +on it all the words I have spoken to you concern- +ing Israel, Judah, and all the nations, from the day +I first spoke to you during the reign of Josiah until +Perhaps when the people of Judah hear +today. +about all the calamity I plan to bring upon them, +each of them will turn from his wicked way. Then +4 +I will forgive their iniquity and their sin.” + +3 + +So Jeremiah called Baruch son of Neriah, and at +the dictation of Jeremiah, Baruch wrote on a +scroll all the words that the LORD had spoken to +But I have spoken to you, rising up early and speaking, +a 14 +Jeremiah. +Lit. + +5 + +Then Jeremiah commanded Baruch, “I am re- +6 +stricted; I cannot enter the house of the LORD; +so you are to go to the house of the LORD on a +day of fasting, and in the hearing of the people +you are to read the words of the LORD from the +scroll you have written at my dictation. Read +them in the hearing of all the people of Judah who +7 +are coming from their cities. + +Perhaps they will bring their petition before the +LORD, and each one will turn from his wicked +way; for great are the anger and fury that the +8 +LORD has pronounced against this people.” + +So Baruch son of Neriah did everything that Jer- +emiah the prophet had commanded him. In the +house of the LORD he read the words of the LORD +9 +from the scroll. + +10 + +Now in the ninth month of the fifth year of +Jehoiakim son of Josiah king of Judah, a fast be- +fore the LORD was proclaimed to all the people +of Jerusalem and all who had come there from +the cities of Judah. +From the chamber of Gema- +riah son of Shaphan the scribe, which was in the +upper courtyard at the opening of the New Gate +of the house of the LORD, Baruch read from the +scroll the words of Jeremiah in the hearing of all +Jeremiah’s Scroll Read in the Palace +the people. +11 + +12 + +When Micaiah son of Gemariah, the son of +Shaphan, heard all the words of the LORD from +the scroll, +he went down to the scribe’s cham- +ber in the king’s palace, where all the officials +were sitting: Elishama the scribe, Delaiah son of +Shemaiah, Elnathan son of Achbor, Gemariah son +of Shaphan, Zedekiah son of Hananiah, and all the +other officials. +And Micaiah reported to them +all the words he had heard Baruch read from the +14 +scroll in the hearing of the people. + +13 + +Then all the officials sent word to Baruch +through Jehudi son of Nethaniah, the son of +Shelemiah, the son of Cushi, saying, “Bring the +scroll that you read in the hearing of the people, +and come here.” + +So Baruch son of Neriah took the scroll and went +15 +to them. + +“Please sit down,” they said, “and read it in our + +hearing.” +16 +So Baruch read it in their hearing. + +When they had heard all these words, they +b 15 +turned to one another in fear and said to Baruch, + +Rising up early and sending (you), I have sent you + +Lit. + + “Surely we must report all these words to the +17 +king.” + +“Tell us now,” they asked Baruch, “how did you +write all these words? Was it at Jeremiah’s dicta- +18 +tion?” + +“It was at his dictation,” Baruch replied. “He re- +cited all these words to me and I wrote them in +19 +ink on the scroll.” + +Then the officials said to Baruch, “You and Jer- +emiah must hide yourselves and tell no one +Jehoiakim Burns the Scroll +where you are.” +20 + +So the officials went to the king in the court- +yard. And having stored the scroll in the chamber +of Elishama the scribe, they reported everything +21 +to the king. + +Then the king sent Jehudi to get the scroll, and +he took it from the chamber of Elishama the +scribe. And Jehudi read it in the hearing of the +king and all the officials who were standing be- +22 +side him. + +23 + +Since it was the ninth month, the king was sit- +ting in his winter quarters with a fire burning +And as soon as Jehudi had read +before him. +three or four columns, Jehoiakim would cut them +off with a scribe’s knife and throw them into the +firepot, until the entire scroll had been consumed +24 +by the fire. + +25 + +Yet in hearing all these words, the king and his +servants did not become frightened or tear their +Even though Elnathan, Delaiah, and +garments. +26 +Gemariah urged the king not to burn the scroll, +Instead, the king +he would not listen to them. +commanded Jerahmeel, a son of the king, as well +as Seraiah son of Azriel and Shelemiah son of Ab- +deel, to seize Baruch the scribe and Jeremiah the +Jeremiah Rewrites the Scroll +prophet. But the LORD had hidden them. +27 + +28 + +After the king had burned the scroll containing +the words that Baruch had written at Jeremiah’s +dictation, the word of the LORD came to Jere- +“Take another scroll and rewrite on it +miah: +the very words that were on the original scroll, +29 +which Jehoiakim king of Judah has burned. + +You are to proclaim concerning Jehoiakim king +of Judah that this is what the LORD says: You +Jehoiachin +a 1 Coniah +have burned the scroll and said, ‘Why have you + +b 3 Jehucal + +Jeremiah 37:10 | 717 + +written on it that the king of Babylon would +surely come and destroy this land and deprive it +30 +of man and beast?’ + +Therefore this is what the LORD says about Je- +hoiakim king of Judah: He will have no one to sit +on David’s throne, and his body will be thrown +31 +out and exposed to heat by day and frost by night. +I will punish him and his descendants and +servants for their iniquity. I will bring on them, +on the residents of Jerusalem, and on the men of +Judah, all the calamity about which I warned +32 +them but they did not listen.” + +Then Jeremiah took another scroll and gave it +to the scribe Baruch son of Neriah, and at Jere- +miah’s dictation he wrote on it all the words of +the scroll that Jehoiakim king of Judah had +burned in the fire. And many similar words were +Jeremiah Warns Zedekiah +added to them. + +37 + + a + +2 + +Nebuchadnezzar king of Babylon made +Zedekiah son of Josiah the king of Judah, +and he reigned in place of Coniah + son of Jehoia- +kim. +But he and his officers and the people of +the land refused to obey the words that the LORD +3 +had spoken through Jeremiah the prophet. + + b + +Yet King Zedekiah sent Jehucal + + son of Shele- +miah and Zephaniah the priest, the son of +Maaseiah, to Jeremiah the prophet with the mes- +4 +sage, “Please pray to the LORD our God for us!” + + c + +Now Jeremiah was free to come and go among +5 +the people, for they had not yet put him in prison. +Pharaoh’s army had left Egypt, and when the + who were besieging Jerusalem heard + +Chaldeans +6 +the report, they withdrew from Jerusalem. + +7 + +Then the word of the LORD came to Jeremiah +the prophet: +“This is what the LORD, the God of +Israel, says that you are to tell the king of Judah, +who sent you to Me: Behold, Pharaoh’s army, +which has marched out to help you, will go back +to its own land of Egypt. +Then the Chaldeans +will return and fight against this city. They will +9 +capture it and burn it down. + +8 + +10 + +This is what the LORD says: Do not deceive +yourselves by saying, ‘The Chaldeans will go +away for good,’ for they will not! +Indeed, if you +were to strike down the entire army of the Chal- +deans that is fighting against you, and only +wounded men remained in their tents, they +c 5 +Jucal +would still get up and burn this city down.” + + is a variant of + +. + + is a variant of + +; see Jeremiah 38:1. + +That is, the Babylonians; + +also in verses 8, 9, 13, and 14 + + 718 | Jeremiah 37:11 + +Jeremiah Imprisoned + +11 + +12 + +13 + +When the Chaldean army withdrew from Jeru- +salem for fear of Pharaoh’s army, +Jeremiah + a +started to leave Jerusalem to go to the land of +Benjamin to claim his portion there + among the +people. +But when he reached the Gate of Ben- +jamin, the captain of the guard, whose name was +Irijah son of Shelemiah, the son of Hananiah, +seized him and said, “You are deserting to the +14 +Chaldeans!” + +“That is a lie,” Jeremiah replied. “I am not + +deserting to the Chaldeans!” + +But Irijah would not listen to him; instead, he +15 +arrested Jeremiah and took him to the officials. + +The officials were angry with Jeremiah, and +they beat him and placed him in jail in the house +of Jonathan the scribe, for it had been made into +16 +a prison. + +So Jeremiah went into a cell in the dungeon + +17 +and remained there a long time. + +Later, King Zedekiah sent for Jeremiah and +received him in his palace, where he asked him +privately, “Is there a word from the LORD?” + +“There is,” Jeremiah replied. “You will be deliv- +18 +ered into the hand of the king of Babylon.” + +Then Jeremiah asked King Zedekiah, “How +have I sinned against you or your servants or +19 +these people, that you have put me in prison? +Where are your prophets who prophesied to +you, claiming, ‘The king of Babylon will not come +against you or this land’? +But now please lis- +ten, O my lord the king. May my petition come +before you. Do not send me back to the house of +21 +Jonathan the scribe, or I will die there.” + +20 + +So King Zedekiah gave orders for Jeremiah to +be placed in the courtyard of the guard and given +a loaf of bread daily from the street of the bakers, +until all the bread in the city was gone. So Jere- +Jeremiah Cast into the Cistern +miah remained in the courtyard of the guard. + +38 + + b +Now Shephatiah son of Mattan, Gedaliah +son of Pashhur, Jucal + son of Shelemiah, +2 +and Pashhur son of Malchijah heard that Jere- +“This is +miah had been telling all the people: +what the LORD says: Whoever stays in this city + c +will die by sword and famine and plague, but +whoever surrenders to the Chaldeans + will live; +to divide from there +a 12 +he will retain his life like a spoil of war, and he + +b 1 Jucal + +d 7 + +3 + +This is what the LORD says: This city +will live. +will surely be delivered into the hands of the +army of the king of Babylon, and he will capture +4 +it.” + +Then the officials said to the king, “This man +ought to die, for he is discouraging the warriors +who remain in this city, as well as all the people, +by speaking such words to them; this man is not +seeking the well-being of these people, but their +5 +ruin.” + +“Here he is,” replied King Zedekiah. “He is in +your hands, since the king can do nothing to stop +6 +you.” + +So they took Jeremiah and dropped him into the +cistern of Malchiah, the king’s son, which was in +the courtyard of the guard. They lowered Jere- +miah with ropes into the cistern, which had no +water but only mud, and Jeremiah sank down + e +7 +into the mud. + +d + +Now Ebed-melech the Cushite, + + a court official + +9 + +in the royal palace, heard that Jeremiah had been +8 +put into the cistern. While the king was sitting at +Ebed-melech went out +the Gate of Benjamin, +from the king’s palace and said to the king, +“My +lord the king, these men have acted wickedly in +all that they have done to Jeremiah the prophet. +They have dropped him into the cistern, where +he will starve to death, for there is no more bread +10 +in the city.” + +So the king commanded Ebed-melech the +Cushite, “Take thirty men from here with you +and pull Jeremiah the prophet out of the cistern +11 +before he dies.” + +Then Ebed-melech took the men with him and +went to the king’s palace, to a place below the +storehouse. From there he took old rags and +worn-out clothes and lowered them with ropes +12 +to Jeremiah in the cistern. + +Ebed-melech the Cushite cried out to Jeremiah, +“Put these worn-out rags and clothes under your +arms to pad the ropes.” Jeremiah did so, +and +they pulled him up with the ropes and lifted him +out of the cistern. And Jeremiah remained in the +14 +courtyard of the guard. + +13 + +Then King Zedekiah sent for Jeremiah the +prophet and received him at the third entrance +to the house of the LORD. “I am going to ask you +something,” said the king to Jeremiah. “Do not +hide anything from me.” +eunuch +; see Jeremiah 37:3. + +That is, the Babylonians; also in + +e 7 + +c 2 + +Jehucal + +Literally + + is a variant of + +verses 18, 19, and 23 + +Probably from the upper Nile region + +Or + + Jeremiah 39:10 | 719 + +15 + +27 + +“If I tell you,” Jeremiah replied, “you will surely +put me to death. And even if I give you advice, +16 +you will not listen to me.” + +But King Zedekiah swore secretly to Jeremiah, +“As surely as the LORD lives, who has given us +this life, I will not kill you, nor will I deliver you +into the hands of these men who are seeking +17 +your life.” + +When all the officials came to Jeremiah and +questioned him, he relayed to them the exact +words the king had commanded him to say. So +they said no more to him, for no one had over- +And Jeremiah re- +heard the conversation. +mained in the courtyard of the guard until the +day Jerusalem was captured. +The Fall of Jerusalem +(2 Kings 25:1–12 ; 2 Chronicles 36:15–21) + +28 + +18 + +Then Jeremiah said to Zedekiah, “This is what +the LORD God of Hosts, the God of Israel, says: ‘If +you indeed surrender to the officers of the king +of Babylon, then you will live, this city will not be +burned down, and you and your household will +But if you do not surrender to the of- +survive. +ficers of the king of Babylon, then this city will be +delivered into the hands of the Chaldeans. They +will burn it down, and you yourself will not es- +19 +cape their grasp.’ + +” + +But King Zedekiah said to Jeremiah, “I am +afraid of the Jews who have deserted to the Chal- +deans, for the Chaldeans may deliver me into +20 +their hands to abuse me.” + +21 + +“They will not hand you over,” Jeremiah re- +plied. “Obey the voice of the LORD in what I am +telling you, that it may go well with you and you +But if you refuse to surrender, this is +may live. +All the +the word that the LORD has shown me: +women who remain in the palace of the king of +Judah will be brought out to the officials of the +king of Babylon, and those women will say: + +22 + +‘They misled you and overcame you— +those trusted friends of yours. + +23 + +Your feet sank into the mire, +and they deserted you.’ + +All your wives and children will be brought out +to the Chaldeans. And you yourself will not es- +cape their grasp, for you will be seized by the +king of Babylon, and this city will be burned +24 +down.” + +25 + +Then Zedekiah warned Jeremiah, “Do not let +anyone know about this conversation, or you will +If the officials hear that I have spoken with +die. +you, and they come and demand of you, ‘Tell us +what you said to the king and what he said to +26 +you; do not hide it from us, or we will kill you,’ +then tell them, ‘I was presenting to the king my +petition that he not return me to the house of +a 3 +Jonathan to die there.’ +d 4 + +Nergal-sharezer, Samgar-nebo, Sarsekim + +Rabmag + +b 3 + +Or + +” + +c 3 +the Jordan Valley +Hebrew + +also in verse 13. +verse 13. +Or + +39 + +In the ninth year of Zedekiah king of Ju- +dah, in the tenth month, Nebuchadnez- +zar king of Babylon marched against Jerusalem +2 +with his entire army and laid siege to the city. +And on the ninth day of the fourth month of +3 +Zedekiah’s eleventh year, the city was breached. + + a + +Then all the officials of the king of Babylon en- +b +tered and sat in the Middle Gate: Nergal-sharezer +c +of Samgar, Nebo-sarsekim +Nergal-sharezer the Rabmag, +4 +the officials of the king of Babylon. + +the Rabsaris, + and all the rest of + +d + +5 + +When Zedekiah king of Judah and all the sol- +diers saw them, they fled. They left the city at +night by way of the king’s garden, through the +gate between the two walls, and they went out + e +along the route to the Arabah. +But the army of +the Chaldeans + pursued them and overtook Zed- +ekiah in the plains of Jericho. They seized him +and brought him up to Nebuchadnezzar king of +Babylon at Riblah in the land of Hamath, where +6 +he pronounced judgment on him. + +7 + +There at Riblah the king of Babylon slaughtered +the sons of Zedekiah before his eyes, and he also +killed all the nobles of Judah. +Then he put out +Zedekiah’s eyes and bound him with bronze +8 +chains to take him to Babylon. + +The Chaldeans set fire to the palace of the king +and to the houses of the people, and they broke +9 +down the walls of Jerusalem. + +10 + +Then Nebuzaradan captain of the guard carried +away to Babylon the remnant of the people who +had remained in the city, along with the desert- +ers who had defected to him. +But Nebuzaradan +left behind in the land of Judah some of the poor +people who had no property, and at that time he +gave them vineyards and fields. + +Rabsaris + +e 5 + is the title of the chief soothsayer or chief of princes in the Assyrian military; also in + + is the title of the chief eunuch in the Assyrian military; + +Hebrew + +That is, the Babylonians; also in verse 8 + + 720 | Jeremiah 39:11 + +Jeremiah Delivered + +11 + +Now Nebuchadnezzar king of Babylon had +given orders about Jeremiah through Nebuzara- +“Take him, +dan captain of the guard, saying, +look after him, and do not let any harm come to +13 +him; do for him whatever he says.” + +12 + + a + +shazban +14 +mag + +So Nebuzaradan captain of the guard, Nebu- + the Rabsaris, Nergal-sharezer the Rab- +, and all the captains of the king of Babylon +had Jeremiah brought from the courtyard of +the guard, and they turned him over to Gedaliah +son of Ahikam, the son of Shaphan, to take him +home. So Jeremiah remained among his own +15 +people. + +16 + +And while Jeremiah had been confined in the +courtyard of the guard, the word of the LORD had +come to him: +“Go and tell Ebed-melech the +Cushite that this is what the LORD of Hosts, the +God of Israel, says: ‘I am about to fulfill My words +against this city for harm and not for good, and +17 +on that day they will be fulfilled before your eyes. +But I will deliver you on that day, declares the +LORD, and you will not be delivered into the +For I will +hands of the men whom you fear. +surely rescue you so that you do not fall by the +sword. Because you have trusted in Me, you will +escape with your life like a spoil of war, declares +Jeremiah Remains in Judah +the LORD.’ + +” + +18 + +40 + +This is the word that came to Jeremiah +from the LORD after Nebuzaradan cap- +tain of the guard had released him at Ramah, +having found him bound in chains among all the +captives of Jerusalem and Judah who were being +2 +exiled to Babylon. + +4 + +The captain of the guard found Jeremiah and +3 +said to him, “The LORD your God decreed this +and now the LORD has +disaster on this place, +fulfilled it; He has done just as He said. Because +you people have sinned against the LORD and +have not obeyed His voice, this thing has hap- +But now, behold, I am freeing you +pened to you. +today from the chains that were on your wrists. +If it pleases you to come with me to Babylon, then +come, and I will take care of you. But if it seems +wrong to you to come with me to Babylon, go no +farther. Look, the whole land is before you. +Wherever it seems good and right to you, go +a 13 Nebushazban +there.” + +Nebo-sarsekim + +c 9 + +5 + +But before Jeremiah turned to go, Nebuzaradan +added, “Return to Gedaliah son of Ahikam, the +son of Shaphan, whom the king of Babylon has +appointed over the cities of Judah, and stay with +him among the people, or go anywhere else that +seems right.” Then the captain of the guard gave +6 +him a ration and a gift and released him. + +So Jeremiah went to Gedaliah son of Ahikam at +Mizpah and stayed with him among the people +Gedaliah Governs in Judah +who were left in the land. +(2 Kings 25:22–24) + +7 + +8 + +When all the commanders and men of the +armies in the field heard that the king of +Babylon had appointed Gedaliah son of Ahikam +over the land and that he had put him in charge +of the men, women, and children who were the +poorest of the land and had not been exiled +they came to Gedaliah at Mizpah— +to Babylon, +Ishmael son of Nethaniah, Johanan and Jonathan +the sons of Kareah, Seraiah son of Tanhumeth, +the sons of Ephai the Netophathite, and Jeza- +9 +niah + son of the Maacathite—they and their men. + + b + +10 + +Gedaliah son of Ahikam, the son of Shaphan, +c +swore an oath to them and their men, assuring +them, “Do not be afraid to serve the Chaldeans. +Live in the land and serve the king of Babylon, +As for me, I will +and it will go well with you. +stay in Mizpah to represent you before the Chal- +deans who come to us. As for you, gather wine +grapes, summer fruit, and oil, place them in your +storage jars, and live in the cities you have +11 +taken.” + +12 + +When all the Jews in Moab, Ammon, Edom, and +all the other lands heard that the king of Babylon +had left a remnant in Judah and had appointed +Gedaliah son of Ahikam, the son of Shaphan, over +they all returned from all the places to +them, +which they had been banished and came to the +land of Judah, to Gedaliah at Mizpah. And they +gathered an abundance of wine grapes and sum- +The Plot against Gedaliah +mer fruit. +13 + +14 + +Meanwhile, Johanan son of Kareah and all the +commanders of the armies in the field came to +and said to him, “Are you +Gedaliah at Mizpah +aware that Baalis king of the Ammonites has sent +Ishmael son of Nethaniah to take your life?” + +b 8 Jezaniah + +Jaazaniah + +25:23. + +That is, the Babylonians; also in verse 10 + + is possibly a variant of + +; see verse 3. + + is a variant of + +; see 2 Kings + + Jeremiah 42:4 | 721 + +along with all the others who remained in +Mizpah—over whom Nebuzaradan captain of +the guard had appointed Gedaliah son of Ahikam. +Ishmael son of Nethaniah took them captive and +Johanan Rescues the Captives +set off to cross over to the Ammonites. +11 + +12 + +When Johanan son of Kareah and all the com- +manders of the armies with him heard of all the +crimes that Ishmael son of Nethaniah had com- +they took all their men and went to +mitted, +fight Ishmael son of Nethaniah. And they found +13 +him near the great pool in Gibeon. + +14 + +When all the people with Ishmael saw Johanan +son of Kareah and all the commanders of the +army with him, they rejoiced, +and all the peo- +ple whom Ishmael had taken captive at Mizpah +15 +turned and went over to Johanan son of Kareah. +But Ishmael son of Nethaniah and eight of +his men escaped from Johanan and went to the +16 +Ammonites. + + b + +Then Johanan son of Kareah and all the com- +manders of the armies with him took the whole +remnant of the people from Mizpah whom he +had recovered from Ishmael son of Nethaniah +after Ishmael had killed Gedaliah son of Ahikam: +the soldiers, women, children, and court offi- +And + he had brought back from Gibeon. +cials +18 +they went and stayed in Geruth Chimham, near +c +to +Bethlehem, in order to proceed into Egypt +escape the Chaldeans. + For they were afraid of +the Chaldeans because Ishmael son of Nethaniah +had struck down Gedaliah son of Ahikam, whom +A Warning against Going to Egypt +the king of Babylon had appointed over the land. + +17 + +42 + + d + +2 + +Then all the commanders of the forces, +along with Johanan son of Kareah, Jeza- + son of Hoshaiah, and all the people from +niah +Jeremiah +the least to the greatest, approached +the prophet and said, “May our petition come +before you; pray to the LORD your God on behalf +of this entire remnant. For few of us remain of +3 +the many, as you can see with your own eyes. +Pray that the LORD your God will tell us the way + +4 +we should walk and the thing we should do.” + +15 +But Gedaliah son of Ahikam did not believe them. + +Then Johanan son of Kareah spoke privately to +Gedaliah at Mizpah. “Let me go and kill Ishmael +son of Nethaniah,” he said. “No one will know it. +Why should he take your life and scatter all the +people of Judah who have gathered to you, so +16 +that the remnant of Judah would perish?” + +But Gedaliah son of Ahikam said to Johanan +son of Kareah, “Do not do such a thing! What you +The Murder of Gedaliah (2 Kings 25:25–26) +are saying about Ishmael is a lie.” + +41 + +2 + +In the seventh month, Ishmael son of +Nethaniah, the son of Elishama, who was +a member of the royal family and one of the +king’s chief officers, came with ten men to Geda- +liah son of Ahikam at Mizpah, and they ate a meal +Then Ishmael son of Nethaniah +together there. +and the ten men who were with him got up and +struck down Gedaliah son of Ahikam, the son of +Shaphan, with the sword, killing the one whom +the king of Babylon had appointed to govern the +Ishmael also killed all the Jews who were +land. + a +with Gedaliah at Mizpah, as well as the Chal- +4 +dean + + soldiers who were there. +5 + +3 + +On the second day after the murder of Gedaliah, +when no one yet knew about it, +eighty men who +had shaved off their beards, torn their garments, +and cut themselves came from Shechem, Shiloh, +and Samaria, carrying grain offerings and frank- +And Ishmael +incense for the house of the LORD. +son of Nethaniah went out from Mizpah to meet +them, weeping as he went. + +6 + +7 + +When Ishmael encountered the men, he said, +“Come to Gedaliah son of Ahikam.” +And when +they came into the city, Ishmael son of Nethaniah +and the men with him slaughtered them and +8 +threw them into a cistern. + +But ten of the men among them said to Ishmael, +“Do not kill us, for we have hidden treasure in the +field—wheat, barley, oil, and honey!” So he re- +9 +frained from killing them with the others. + +Now the cistern into which Ishmael had thrown +all the bodies of the men he had struck down +along with Gedaliah was a large one that King Asa +had made for fear of Baasha king of Israel. Ish- +10 +mael son of Nethaniah filled it with the slain. + +Then Ishmael took captive all the remnant of +eunuchs +a 3 +the people of Mizpah—the daughters of the king + +Babylonian + +b 16 + +c 18 + +Or + +Or + +“I have heard you,” replied Jeremiah the prophet. +“I will surely pray to the LORD your God as you +request, and I will tell you everything that the +LORD answers. I will not withhold a word from +you.” +That is, the Babylonians + +; see Jeremiah 43:2. + +Hebrew; LXX + +Azariah + +d 1 + + 722 | Jeremiah 42:5 + +5 + +19 + +6 + +Then they said to Jeremiah, “May the LORD be a +true and faithful witness against us if we do not +act upon every word that the LORD your God +Whether it is pleasant or +sends you to tell us. +unpleasant, we will obey the voice of the LORD +our God to whom we are sending you, so that it +may go well with us when we obey the voice of +7 +the LORD our God!” +8 + +After ten days the word of the LORD came to +Jeremiah, +and he summoned Johanan son of Ka- +reah, all the commanders of the forces who were +with him, and all the people from the least to the +9 +greatest. + +10 + +Jeremiah told them, “Thus says the LORD, the +God of Israel, to whom you sent me to present +‘If you will indeed stay in this +your petition: +land, then I will build you up and not tear you +down; I will plant you and not uproot you, for I +will relent of the disaster I have brought upon +11 +you. + +Do not be afraid of the king of Babylon, whom +you now fear; do not be afraid of him, declares +12 +the LORD, for I am with you to save you and +deliver you from him. +And I will show you +compassion, and he will have compassion on you +13 +and restore you to your own land.’ + +15 + +14 + +But if you say, ‘We will not stay in this land,’ +and you thus disobey the voice of the LORD your +and if you say, ‘No, but we will go to the +God, +land of Egypt and live there, where we will not +see war or hear the sound of the ram’s horn or +then hear the word of the +hunger for bread,’ +LORD, O remnant of Judah! This is what the LORD +of Hosts, the God of Israel, says: ‘If you are deter- +then the +mined to go to Egypt and reside there, +sword you fear will overtake you there, and the +famine you dread will follow on your heels into +So all who re- +Egypt, and you will die there. +solve to go to Egypt to reside there will die by +sword and famine and plague. Not one of them +will survive or escape the disaster I will bring +18 +upon them.’ + +16 + +17 + +For this is what the LORD of Hosts, the God of +Israel, says: ‘Just as My anger and wrath were +poured out on the residents of Jerusalem, so will +My wrath be poured out on you if you go to +Egypt. You will become an object of cursing and +horror, of vilification and disgrace, and you will +a 3 +never see this place again.’ + +That is, the Babylonians + +20 + +The LORD has told you, O remnant of Judah, +‘Do not go to Egypt.’ Know for sure that I have +For you have deceived +warned you today! +yourselves by sending me to the LORD your God, +saying, ‘Pray to the LORD our God on our behalf, +and as for all that the LORD our God says, tell it +21 +to us and we will do it.’ + +For I have told you today, but you have not +22 +obeyed the voice of the LORD your God in all He +has sent me to tell you. +Now therefore, know +for sure that by sword and famine and plague +you will die in the place where you desire to go +Jeremiah Taken to Egypt +to reside.” + +43 + +2 + +When Jeremiah had finished telling all +the people all the words of the LORD +their God—everything that the LORD had sent +Azariah son of Hoshaiah, Johanan +him to say— +son of Kareah, and all the arrogant men said to +Jeremiah, “You are lying! The LORD our God has +not sent you to say, ‘You must not go to Egypt to +Rather, Baruch son of Neriah is in- +reside there.’ +citing you against us to deliver us into the hands + so that they may put us to +of the Chaldeans, +4 +death or exile us to Babylon!” + +3 + +a + +5 + +So Johanan son of Kareah and all the command- +ers of the forces disobeyed the command of the +Instead, Jo- +LORD to stay in the land of Judah. +hanan son of Kareah and all the commanders of +the forces took the whole remnant of Judah, +those who had returned to the land of Judah from +6 +all the nations to which they had been scattered, +the men, the women, the children, the king’s +daughters, and everyone whom Nebuzaradan +captain of the guard had allowed to remain with +Gedaliah son of Ahikam, the son of Shaphan, as +well as Jeremiah the prophet and Baruch son of +7 +Neriah. + +So they entered the land of Egypt because they +did not obey the voice of the LORD, and they +8 +went as far as Tahpanhes. +9 + +Then the word of the LORD came to Jeremiah at +“In the sight of the Jews, pick up +Tahpanhes: +some large stones and bury them in the clay of +the brick pavement at the entrance to Pharaoh’s +10 +palace at Tahpanhes. + +Then tell them that this is what the LORD of +Hosts, the God of Israel, says: ‘I will send for My +servant Nebuchadnezzar king of Babylon, and I + + Jeremiah 44:18 | 723 + +9 + +As a result, you will be cut off and will become an +object of cursing and reproach among all the +Have you forgotten the +nations of the earth. +wickedness of your fathers and of the kings of Ju- +dah and their wives, as well as the wickedness +that you and your wives committed in the land of +To this +Judah and in the streets of Jerusalem? +day they have not humbled themselves or shown +reverence, nor have they followed My instruc- +tion or the statutes that I set before you and your +11 +fathers. + +10 + +12 + +Therefore this is what the LORD of Hosts, the +God of Israel, says: I will set My face to bring dis- +And I will take +aster and to cut off all Judah. +away the remnant of Judah who have resolved to +go to the land of Egypt to reside there; they will +meet their end. They will all fall by the sword or +be consumed by famine. From the least to the +greatest, they will die by sword or famine; and +they will become an object of cursing and horror, +13 +of vilification and reproach. + +14 + +I will punish those who live in the land of +Egypt, just as I punished Jerusalem, by sword and +famine and plague, +so that none of the remnant +of Judah who have gone to reside in Egypt will +escape or survive to return to the land of Judah, +where they long to return and live; for none will +The Stubbornness of the People +return except a few fugitives.” +15 + +g + +16 + + said to Jeremiah, +17 + +Then all the men who knew that their wives +were burning incense to other gods, and all the +women standing by—a great assembly—along +with all the people living in the land of Egypt and +in Pathros, +“As for the word +you have spoken to us in the name of the LORD, +we will not listen to you! +Instead, we will do +everything we vowed to do: We will burn incense +to the Queen of Heaven and offer drink offerings +to her, just as we, our fathers, our kings, and our +officials did in the cities of Judah and in the +streets of Jerusalem. + +18 + +At that time we had plenty of food and good +But from the +things, and we saw no disaster. +time we stopped burning incense to the Queen of +Heaven and pouring out drink offerings to her, +we have lacked everything and have been perish- +ing by sword and famine.” + +He will demolish the pillars of Heliopolis in On + +He + +11 + +will set his throne over these stones that I have +embedded, and he will spread his royal pavilion +over them. +He will come and strike down the +land of Egypt, bringing death to those destined +for death, captivity to those destined for captiv- +ity, and the sword to those destined for the +12 +sword. + +a + +I will kindle a fire in the temples of the gods of +Egypt, and Nebuchadnezzar will burn those + So he +temples and take their gods as captives. +will wrap himself with the land of Egypt as a +shepherd wraps himself in his garment, and he +He will de- +will depart from there unscathed. +molish the sacred pillars of the temple of the sun + and he will burn down the +in the land of Egypt, +Judgment on the Jews in Egypt +temples of the gods of Egypt.’ + +13 + +” + +b + +44 + + c + + e + +2 + +—and in the land of Pathros: + +This is the word that came to Jeremiah +concerning all the Jews living in the land + d +of Egypt +—in Migdol, Tahpanhes, and Mem- +“This is +phis +what the LORD of Hosts, the God of Israel, says: +You have seen all the disaster that I brought +against Jerusalem and all the cities of Judah; and +3 +behold, they lie today in ruins and desolation + +because of the evil they have done. + +f + +They provoked Me to anger by continuing to +burn incense and to serve other gods that neither +Yet I +they nor you nor your fathers ever knew. +sent you all My servants the prophets again and + saying: ‘Do not do this detestable thing +again, +5 +that I hate.’ + +4 + +6 + +But they did not listen or incline their ears; they +did not turn from their wickedness or stop burn- +Therefore My wrath +ing incense to other gods. +and anger poured out and burned in the cities of +Judah and in the streets of Jerusalem, so that they +7 +have become the desolate ruin they are today. + +8 + +So now, this is what the LORD God of Hosts, the +God of Israel, says: Why are you doing such great +harm to yourselves by cutting off from Judah +man and woman, child and infant, leaving your- +Why are you provok- +selves without a remnant? +ing Me to anger by the work of your hands by +burning incense to other gods in the land of +Egypt, where you have gone to reside? +a 12 +will demolish the pillars of Heliopolis in Egypt +c 1 + +and he will burn them and take them captive + +northern Egypt + +Lower Egypt + +Literally + +d 1 + +Or + +in the land of Egypt at Pathros + +; also in verse 15 + +f 4 + or + +b 13 + +also in verse 15 +possibly + +Literally + +Noph +the prophets, rising up early and sending (them), + +; Hebrew + +e 1 +g 15 + +He will demolish the pillars of Beth-shemesh in the land of Egypt + or +southern Egypt + +Upper Egypt + +LXX + +LXX; Hebrew + +Or +That is, in Lower and Upper Egypt; + + or + +; + + 724 | Jeremiah 44:19 + +19 + +30 + +“Moreover,” said the women, “when we +burned incense to the Queen of Heaven and +poured out drink offerings to her, was it without +our husbands’ knowledge that we made sacrifi- +cial cakes in her image and poured out drink of- +Calamity for the Jews +ferings to her?” +20 + +know that My threats of harm against you will +This is what the LORD says: Be- +surely stand. +hold, I will deliver Pharaoh Hophra king of Egypt +into the hands of his enemies who seek his life, +just as I delivered Zedekiah king of Judah into the +hand of Nebuchadnezzar king of Babylon, the en- +Jeremiah’s Message to Baruch +emy who was seeking his life.” + +21 + +22 + +Then Jeremiah said to all the people, both men +and women, who were answering him, +“As for +the incense you burned in the cities of Judah and +in the streets of Jerusalem—you, your fathers, +your kings, your officials, and the people of the +land—did the LORD not remember and bring +this to mind? +So the LORD could no longer +endure the evil deeds and detestable acts you +committed, and your land became a desolation, +a horror, and an object of cursing, without inhab- +itant, as it is this day. +Because you burned +incense and sinned against the LORD and did +not obey the voice of the LORD or walk in His in- +struction, His statutes, and His testimonies, this +24 +disaster has befallen you, as you see today.” + +23 + +Then Jeremiah said to all the people, including +all the women, “Hear the word of the LORD, all +25 +those of Judah who are in the land of Egypt. +This is what the LORD of Hosts, the God of Is- +rael, says: As for you and your wives, you have +spoken with your mouths and fulfilled with your +hands your words: ‘We will surely perform our +vows that we have made to burn incense to the +Queen of Heaven and to pour out drink offerings +to her.’ Go ahead, then, do what you have prom- +26 +ised! Keep your vows! + +Nevertheless, hear the word of the LORD, all +you people of Judah living in Egypt: Behold, I +have sworn by My great name, says the LORD, +that never again will any man of Judah living in +the land of Egypt invoke My name or say, ‘As +27 +surely as the Lord GOD lives.’ + +I am watching over them for harm and not for +good, and every man of Judah who is in the land +of Egypt will meet his end by sword or famine, +28 +until they are finished off. + +Those who escape the sword will return from +Egypt to Judah, few in number, and the whole +remnant of Judah who went to dwell in the land +of Egypt will know whose word will stand, Mine +29 +or theirs! + +This will be a sign to you that I will punish you +a 4 +in this place, declares the LORD, so that you may + +Thus you shall say to him: + +Literally + +45 + +This is the word that Jeremiah the +prophet spoke to Baruch son of Neriah +when he wrote these words on a scroll at the dic- +tation of Jeremiah in the fourth year of Jehoiakim +2 +son of Josiah, king of Judah: + +3 + +“This is what the LORD, the God of Israel, says +You have said, ‘Woe is me be- +to you, Baruch: +cause the LORD has added sorrow to my pain! I +am worn out with groaning and have found no +4 +rest.’ + +” + + a + +5 + +Thus Jeremiah was to say to Baruch: + + “This is +what the LORD says: Throughout the land I will +demolish what I have built and uproot what I +But as for you, do you seek great +have planted. +things for yourself? Stop seeking! For I will bring +disaster on every living creature, declares the +LORD, but wherever you go, I will grant your life +Judgment on Egypt +as a spoil of war.” + +46 + +2 + +This is the word of the LORD about the +nations—the word that came to Jere- +concerning Egypt and the +miah the prophet +army of Pharaoh Neco king of Egypt, which was +defeated at Carchemish on the Euphrates River +by Nebuchadnezzar king of Babylon in the fourth +3 +year of Jehoiakim the son of Josiah king of Judah: + +“Deploy your shields, small and large; + +4 + +advance for battle! + +Harness the horses; mount the steeds; + +take your positions with helmets on! + +5 + +Polish your spears; +put on armor! + +Why am I seeing this? + +They are terrified, + +they are retreating; +their warriors are defeated, + +they flee in haste without looking + +back; + +terror is on every side!” + +declares the LORD. + + 6 + +17 + +“The swift cannot flee, + +There they will cry out: + +Jeremiah 46:27 | 725 + +and the warrior cannot escape! +In the north by the River Euphrates + +they stumble and fall. + +Who is this, rising like the Nile, + +8 + +like rivers whose waters churn? + +Egypt rises like the Nile, + +and its waters churn like rivers, +boasting, ‘I will rise and cover the earth; + +7 + +9 + +18 + +‘Pharaoh king of Egypt was all noise; +he has let the appointed time pass him by.’ + +As surely as I live, declares the King, +whose name is the LORD of Hosts, + +there will come one who is like Tabor among + +19 + +the mountains + +and like Carmel by the sea. + +Pack your bags for exile, + +I will destroy the cities and their people.’ + +O daughter dwelling in Egypt! + +Advance, O horses! Race furiously, + + a + +O chariots! + +20 + +For Memphis will be laid waste, +destroyed and uninhabited. + +Let the warriors come forth— + +Egypt is a beautiful heifer, + +Cush + +10 + + and Put carrying their shields, + +21 + +but a gadfly from the north is coming + +men of Lydia drawing the bow. +For that day belongs to the Lord GOD of + +Hosts, + +a day of vengeance against His foes. +The sword will devour until it is satisfied, +until it is quenched with their blood. + +For the Lord GOD of Hosts will hold a + +sacrifice + +11 + +in the land of the north by the River + +Euphrates. + +Go up to Gilead for balm, + +O Virgin Daughter of Egypt! +In vain you try many remedies, + +12 + +but for you there is no healing. +The nations have heard of your shame, +and your outcry fills the earth, + +because warrior stumbles over warrior + +13 + +against her. + +Even the mercenaries among her + +are like fattened calves. + +They too will turn back; + +together they will flee, they will not stand + +their ground, + +for the day of calamity is coming upon + +22 + +them— + +the time of their punishment. + +c + +Egypt will hiss like a fleeing serpent, + +for the enemy will advance in force; + +23 + +with axes they will come against her + +like woodsmen cutting down trees. + +They will chop down her forest, declares the + +LORD, + +dense though it may be, + +24 + +for they are more numerous than locusts; + +and both of them have fallen together.” + +they cannot be counted. + +This is the word that the LORD spoke to Jere- +miah the prophet about the coming of Nebuchad- +nezzar king of Babylon to strike the land of +14 +Egypt: + +“Announce it in Egypt, and proclaim it in + + b + +Migdol; + +proclaim it in Memphis + + and Tahpanhes: + +15 + +‘Take your positions and prepare yourself, + +for the sword devours those around you.’ + +Why have your warriors been laid low? +They cannot stand, for the LORD has + +16 + +thrust them down. +They continue to stumble; + +indeed, they have fallen over one another. +They say, ‘Get up! Let us return to our people + +and to the land of our birth, +away from the sword of the oppressor.’ +b 14 + +Noph + +a 9 + +The Daughter of Egypt will be put to shame; +she will be delivered into the hands of the + +25 + +people of the north.” + +d + +The LORD of Hosts, the God of Israel, says: +“Behold, I am about to punish Amon god of +Thebes, + along with Pharaoh, Egypt with her +26 +gods and kings, and those who trust in Pharaoh. +I will deliver them into the hands of those who +seek their lives—of Nebuchadnezzar king of +Babylon and his officers. But after this, Egypt will +27 +be inhabited as in days of old, declares the LORD. + +But you, O Jacob My servant, do not be afraid, + +and do not be dismayed, O Israel. +For I will surely save you out of a distant + +place, + +your descendants from the land of + +their captivity! + +c 22 + +nachash + +snake + +d 25 +That is, the upper Nile region + +Amon of No + +LXX; Hebrew + +; also in verse 19 + +Hebrew + +; translated in most + +cases as + +Hebrew + + 726 | Jeremiah 46:28 + +28 + +Jacob will return to quiet and ease, +with no one to make him afraid. + +And you, My servant Jacob, do not be afraid, +declares the LORD, for I am with you. +Though I will completely destroy all the + +nations to which I have banished you, + +I will not completely destroy you. + +Yet I will discipline you justly, + +and will by no means leave you +Judgment on the Philistines (Zeph. 2:4–7) + +unpunished.” + +47 + +This is the word of the LORD that came +to Jeremiah the prophet about the +2 +Philistines before Pharaoh struck down Gaza. + +This is what the LORD says: + +“See how the waters are rising from the north +and becoming an overflowing torrent. +They will overflow the land and its fullness, + +the cities and their inhabitants. + +The people will cry out, +3 + +and all who dwell in the land will wail + +at the sound of the galloping hooves of + +stallions, + +the rumbling of chariots, +and the clatter of their wheels. + +The fathers will not turn back for their sons; + +4 + +their hands will hang limp. + +For the day has come + +to destroy all the Philistines, + +to cut off from Tyre and Sidon +every remaining ally. + +Indeed, the LORD is about to destroy the +5 + +Philistines, + +a + +the remnant from the coasts of Caphtor. +The people of Gaza will shave their heads in + +mourning; + +b + +Ashkelon will be silenced. + +O remnant of their valley, + +6 + +how long will you gash yourself? + +‘Alas, O sword of the LORD, +how long until you rest? + +Return to your sheath; +cease and be still!’ + +7 + +How can it rest + +Judgment on Moab (Isaiah 15:1–9) + +48 + +Concerning Moab, this is what the LORD +of Hosts, the God of Israel, says: + +“Woe to Nebo, + +for it will be devastated. + +Kiriathaim will be captured and disgraced; + +2 + +the fortress will be shattered and + +dismantled. + + c + +There is no longer praise for Moab; + +in Heshbon + they devise evil against her: +d +‘Come, let us cut her off from nationhood.’ + +You too, O people of Madmen, +3 + +silenced; + + will be + +the sword will pursue you. +A voice cries out from Horonaim: + +4 + +‘Devastation and great destruction!’ + +e + +Moab will be shattered; + +her little ones will cry out. + +For on the ascent to Luhith + +they weep bitterly as they go, +and on the descent to Horonaim +cries of distress resound +over the destruction: +‘Flee! Run for your lives! + +5 + +6 + +7 + +f + +Become like a juniper in the desert. + +’ + +Because you trust in your works and + +treasures, + +you too will be captured, +and Chemosh will go into exile +8 + +with his priests and officials. + +The destroyer will move against every city, + +and not one town will escape. + +The valley will also be ruined, + +9 + +and the high plain will be destroyed, +as the LORD has said. + + g + +Put salt on Moab, + +for she will be laid waste; +her cities will become desolate, + +10 + +with no one to dwell in them. +Cursed is the one who is remiss + +in doing the work of the LORD, + +11 + +and cursed is he who withholds +his sword from bloodshed. + +Moab has been at ease from youth, +settled like wine on its dregs; + +he has not been poured from vessel to vessel + +when the LORD has commanded it? + +or gone into exile. + +He has appointed it against Ashkelon +and the shore of its coastland.” +d 2 + +Madmen + +b 5 + +a 4 +plot +That is, Crete +heard as far away as Zoar +. + +The name of the Moabite town + +That is, the Mediterranean coast or plain + +like a wild donkey + +like Aroer + +f 6 + +g 9 + + sounds like the Hebrew for + +. + +Give wings to Moab, for she would fly away + + sounds like the Hebrew for +Hebrew; LXX + +Or + + or + +Or + +So his flavor has remained the same, +Heshbon +c 2 +and his aroma is unchanged. +e 4 + +silenced +The Hebrew for + +her cries are + + 12 + +26 + +Therefore behold, the days are coming, + +“Make him drunk, + +declares the LORD, + +because he has magnified himself against + +when I will send to him wanderers, + +the LORD; + +Jeremiah 48:35 | 727 + +13 + +who will pour him out. +They will empty his vessels +and shatter his jars. + +Then Moab will be ashamed of Chemosh, + +14 + +just as the house of Israel was ashamed +when they trusted in Bethel. + +27 + +so Moab will wallow in his own vomit, + +and he will also become a laughingstock. + +Was not Israel your object of ridicule? +Was he ever found among thieves? + +28 + +For whenever you speak of him + +you shake your head. + +15 + +How can you say, ‘We are warriors, +mighty men ready for battle’? + +Moab has been destroyed + +Abandon the towns and settle among the + +rocks, + +O dwellers of Moab! + +and its towns have been invaded; + +29 + +Be like a dove + +the best of its young men + +have gone down in the slaughter, + +16 + +declares the King, + +whose name is the LORD of Hosts. + +17 + +Moab’s calamity is at hand, + +and his affliction is rushing swiftly. +Mourn for him, all you who surround him, + +everyone who knows his name; + +tell how the mighty scepter is shattered— + +18 + +the glorious staff! + +Come down from your glory; sit on parched + +ground, + +O daughter dwelling in Dibon, + +for the destroyer of Moab has come against + +19 + +you; + +he has destroyed your fortresses. + +Stand by the road and watch, + +O dweller of Aroer! + +20 + +Ask the man fleeing or the woman escaping, + +‘What has happened?’ + +Moab is put to shame, for it has been + +shattered. +Wail and cry out! +Declare by the Arnon + +that Moab is destroyed. + +a + +21 + +22 +23 + +Judgment has come upon the high plain— + +upon Holon, Jahzah, + + and Mephaath, +upon Dibon, Nebo, and Beth-diblathaim, + +24 + +upon Kiriathaim, Beth-gamul, and Beth- + +meon, + +upon Kerioth, Bozrah, and all the towns of + +25 + +Moab, + +those far and near. + +The horn of Moab has been cut off, + +declares the LORD. + +and his arm is broken,” + +that nests at the mouth of a cave. +We have heard of Moab’s pomposity, +his exceeding pride and conceit, +his proud arrogance and haughtiness of + +30 + +heart. +I know his insolence,” + +declares the LORD, + +31 + +“but it is futile. +His boasting is as empty as his deeds. + +32 + +Therefore I will wail for Moab; +I will cry out for all of Moab; +I will moan for the men of Kir-heres. + c + +I will weep for you, O vine of Sibmah, + +b + +more than I weep for Jazer. + +d + +Your tendrils have extended to the sea; + +they reach even to Jazer. +The destroyer has descended + +33 + +on your summer fruit and grape harvest. + +Joy and gladness are removed from the + +orchard + +and from the fields of Moab. + +I have stopped the flow of wine from the + +presses; + +34 + +no one treads them with shouts of joy; +their shouts are not for joy. + +There is a cry from Heshbon to Elealeh; +they raise their voices to Jahaz, + +from Zoar to Horonaim and + +Eglath-shelishiyah; + +35 + +for even the waters of Nimrim have dried + +up. + +In Moab, declares the LORD, + +I will bring an end + +to those who make offerings on the high + +places + +a 21 Jahzah +c 32 + +Jahaz + +b 31 Kir-heres + +and burn incense to their gods. + +Kir-hareseth + + is a variant of + +d 32 +; see verse 34. + + is a variant of + +to the Sea of Jazer +; also in verse 36; see Isaiah 16:7. + +Probably the Dead Sea + +Two Hebrew manuscripts and LXX; most Hebrew manuscripts + + 728 | Jeremiah 48:36 + +36 + +Therefore My heart laments like a flute + +The people of Chemosh have perished; + +for Moab; + +it laments like a flute for the men of + +Kir-heres, + +because the wealth they acquired has + +perished. + +37 + +For every head is shaved + +and every beard is clipped; + +38 + +on every hand is a gash, + +and around every waist is sackcloth. + +On all the rooftops of Moab + +and in the public squares, + +everyone is mourning; + +for I have shattered Moab like an + +unwanted jar,” + +39 + +declares the LORD. + +“How shattered it is! How they wail! + +How Moab has turned his back in shame! + +Moab has become an object of ridicule + +40 + +and horror + +to all those around him.” + +For this is what the LORD says: + +41 + +“Behold, an eagle swoops down + +and spreads his wings against Moab. + +Kirioth has been taken, + +and the strongholds seized. + +42 + +In that day the heart of Moab’s warriors + +will be like the heart of a woman in labor. + +Moab will be destroyed as a nation + +43 + +because he vaunted himself against + +the LORD. + +Terror and pit and snare await you, +O dweller of Moab,” + +declares the LORD. + +44 + +“Whoever flees the panic +will fall into the pit, + +and whoever climbs from the pit +will be caught in the snare. + +For I will bring upon Moab + +the year of their punishment,” + +declares the LORD. + +45 + +“Those who flee will stand helpless in + +Heshbon’s shadow, + +because fire has gone forth from Heshbon +and a flame from within Sihon. +It devours the foreheads of Moab + +46 + +a 47 + +and the skulls of the sons of tumult. +restore the fortunes of Moab +c 4 + +Woe to you, O Moab! + +b 1 + +their king + +d 6 + +your valleys flowing +Or + +Or + +and 1 Kings 11:7. + +Or + +for your sons have been taken into exile +and your daughters have gone into + +47 + +captivity. +a + +Yet in the latter days I will restore Moab from +declares the LORD. + +captivity, + +” + +Here ends the judgment on Moab. +Judgment on the Ammonites + +49 + +Concerning the Ammonites, this is what +the LORD says: + +“Has Israel no sons? + + b +Is he without heir? + +Why then has Milcom +of Gad? + + taken possession + +2 + +Why have his people settled in their + +cities? + +Therefore, behold, the days are coming, + +declares the LORD, + +when I will sound the battle cry + +against Rabbah of the Ammonites. + +It will become a heap of ruins, + +and its villages will be burned. + +Then Israel will drive out their +dispossessors, + +3 + +says the LORD. + +Wail, O Heshbon, for Ai has been + +destroyed; + +cry out, O daughters of Rabbah! + +Put on sackcloth and mourn; + +run back and forth within your walls, + +for Milcom will go into exile +4 + +together with his priests and officials. + +c + +Why do you boast of your valleys— + +your valleys so fruitful, +O faithless daughter? + +You trust in your riches and say, +5 +‘Who can come against me?’ + +Behold, I am about to bring terror upon you, + +declares the Lord GOD of Hosts, +from all those around you. +You will each be driven headlong, +6 + +with no one to regather the fugitives. +d +Yet afterward I will restore the Ammonites + +from captivity, + +” + +Judgment on Edom (Obadiah 1:1–14) + +declares the LORD. + +Milcom +restore the fortunes of the Ammonites + +Molech + +; +Or + + is a variant of + +; also in verse 3; see Leviticus 18:21 + + Jeremiah 49:27 | 729 + +7 + +Concerning Edom, this is what the LORD of + +Hosts says: + +“Is there no longer wisdom in Teman? +8 + +Has counsel perished from the prudent? +Has their wisdom decayed? + +Turn and run! + +Lie low, O dwellers of Dedan, +for I will bring disaster on Esau +at the time I punish him. + +9 + +If grape gatherers came to you, + +along with their neighbors,” + +says the LORD, + +19 + +“no one will dwell there; + +no man will abide there. + +Behold, one will come up like a lion + +from the thickets of the Jordan to the + +watered pasture. + +For in an instant I will chase Edom from her + +land. + +Who is the chosen one I will appoint + +for this? + +would they not leave some gleanings? + +For who is like Me, and who can challenge + +Were thieves to come in the night, + +10 + +would they not steal only what they + +20 + +Me? + +What shepherd can stand against Me?” + +wanted? + +But I will strip Esau bare; + +I will uncover his hiding places, +and he will be unable to conceal himself. + +His descendants will be destroyed + +11 + +along with his relatives and neighbors, +and he will be no more. + +Abandon your orphans; I will preserve their + +12 + +lives. + +Let your widows trust in Me.” + +13 + +For this is what the LORD says: “If those who +do not deserve to drink the cup must drink it, can +you possibly remain unpunished? You will not go +For by +unpunished, for you must drink it too. +Myself I have sworn, declares the LORD, that +Bozrah will become a desolation, a disgrace, a +ruin, and a curse, and all her cities will be in ruins +14 +forever.” + +I have heard a message from the LORD; + +an envoy has been sent to the nations: +“Assemble yourselves to march against her! + +15 + +Rise up for battle!” + +“For behold, I will make you small among + +16 + +nations, + +despised among men. + +The terror you cause + +and the pride of your heart +have deceived you, + +a + +O dwellers in the clefts of the rocks, + +O occupiers of the mountain summit. +Though you elevate your nest like the eagle, +declares the LORD. +even from there I will bring you down,” + +17 + +Therefore hear the plans + +that the LORD has drawn up against Edom + +and the strategies He has devised +against the people of Teman: + +Surely the little ones of the flock will be + +dragged away; + +b + +21 + +certainly their pasture will be made + +desolate because of them. + +c + +22 + +At the sound of their fall the earth will quake; + +their cry will resound to the Red Sea. +Look! An eagle will soar and swoop down, + +spreading its wings over Bozrah. + +In that day the hearts of Edom’s mighty men + +will be like the heart of a woman +Judgment on Damascus (Isaiah 17:1–14) + +in labor. + +23 + +Concerning Damascus: + +“Hamath and Arpad are put to shame, +for they have heard a bad report; + + d + +24 + +they are agitated like the sea; + +their anxiety cannot be calmed. + +Damascus has become feeble; +she has turned to flee. + +Panic has gripped her; + +25 + +anguish and pain have seized her +like a woman in labor. + +26 + +How is the city of praise not forsaken, + +the town that brings Me joy? + +For her young men will fall in the streets, +and all her warriors will be silenced in + +declares the LORD of Hosts. + +that day,” + +27 + +18 + +“Edom will become an object of horror. +All who pass by will be appalled +and will scoff at all her wounds. +of Sela + +b 20 + +a 16 + +As Sodom and Gomorrah were overthrown + +their pasture will be appalled at their fate + +“I will set fire to the walls of Damascus; +it will consume the fortresses of + +Ben-hadad.” +d 23 +Sea of Reeds + +c 21 + +on the sea + +by the sea + +Or + +Or + +Or + +Hebrew + + or + + 730 | Jeremiah 49:28 + +Judgment on Kedar and Hazor + +28 + +Concerning Kedar and the kingdoms of Hazor, +which Nebuchadnezzar king of Babylon de- +feated, this is what the LORD says: + +29 + +“Rise up, advance against Kedar, + +and destroy the people of the east! + +They will take their tents and flocks, + +their tent curtains and all their goods. +They will take their camels for themselves. +They will shout to them: ‘Terror is on + +30 + +every side!’ + +Run! Escape quickly! + +Lie low, O residents of Hazor,” + +declares the LORD, + +“for Nebuchadnezzar king of Babylon +has drawn up a plan against you; +he has devised a strategy against you. + +31 + +Rise up, advance against a nation at ease, + +declares the LORD. + +one that dwells securely,” + +“They have no gates or bars; + +32 + +they live alone. + +Their camels will become plunder, + +and their large herds will be spoil. +I will scatter to the wind in every direction + +those who shave their temples; + +I will bring calamity on them + +declares the LORD. + +33 + +from all sides,” + +I will bring disaster upon them, + +even My fierce anger,” + +declares the LORD. + +“I will send out the sword after them + +38 + +until I finish them off. +I will set My throne in Elam, + +and destroy its king and officials,” + +declares the LORD. + +39 + +“Yet in the last days, + +b + +I will restore Elam from captivity, + +” + +declares the LORD. + +A Prophecy against Babylon + +50 + +This is the word that the LORD spoke +through Jeremiah the prophet concern- + + c + +2 +ing Babylon and the land of the Chaldeans: + +“Announce and declare to the nations; +lift up a banner and proclaim it; +hold nothing back when you say, + +‘Babylon is captured; + +Bel is put to shame; + +Marduk is shattered, + +3 + +her images are disgraced, +her idols are broken in pieces.’ + +For a nation from the north will come against + +her; + +it will make her land a desolation. + +a + +No one will live in it; + +Hope for Israel and Judah + +both man and beast will flee.” + +“Hazor will become a haunt for jackals, + +a desolation forever. +No one will dwell there; + +Judgment on Elam + +no man will abide there.” + +34 + +This is the word of the LORD that came to +Jeremiah the prophet concerning Elam at the +35 +beginning of the reign of Zedekiah king of Judah. + +This is what the LORD of Hosts says: + +36 + +“Behold, I will shatter Elam’s bow, +the mainstay of their might. + +I will bring the four winds against Elam +from the four corners of the heavens, + +and I will scatter them +to all these winds. +There will not be a nation + +37 + +to which Elam’s exiles will not go. +So I will shatter Elam before their foes, +serpents +before those who seek their lives. + +dragons + +b 39 + +a 33 + +restore the fortunes of Elam + +Or + + or + +Or + +4 + +“In those days and at that time, + +declares the LORD, + +the children of Israel and the children + +of Judah + +5 + +will come together, weeping as they come, +and will seek the LORD their God. + +They will ask the way to Zion + +and turn their faces toward it. +They will come and join themselves to + +the LORD + +6 + +in an everlasting covenant +that will never be forgotten. + +My people are lost sheep; + +their shepherds have led them astray, +causing them to roam the mountains. +They have wandered from mountain to hill; +they have forgotten their resting place. +That is, the Babylonians; also in vv. 8, 25, 35, and 45 + +c 1 + + 7 + +16 + +All who found them devoured them, + +Cut off the sower from Babylon, + +Jeremiah 50:24 | 731 + +and their enemies said, + +‘We are not guilty, + +for they have sinned against the LORD, + +8 + +their true pasture, + +the LORD, the hope of their fathers.’ + +Flee from the midst of Babylon; + +9 + +depart from the land of the Chaldeans; +be like the he-goats that lead the flock. + +For behold, I stir up and bring against + +Babylon + +an assembly of great nations from the + +land of the north. + +They will line up against her; + +from the north she will be captured. +Their arrows will be like skilled warriors +who do not return empty-handed. + + a + +10 + +Chaldea + + will be plundered; + +all who plunder her will have their fill,” + +declares the LORD. + +Babylon’s Fall Is Certain + +11 + +“Because you rejoice, + +because you sing in triumph— +you who plunder My inheritance— + +and the one who wields the sickle + +at harvest time. + +In the face of the oppressor’s sword, +each will turn to his own people, +each will flee to his own land. + +Redemption for God’s People + +17 + +Israel is a scattered flock, +chased away by lions. + +The first to devour him + +was the king of Assyria; +the last to crush his bones + +18 + +was Nebuchadnezzar king of Babylon.” + +Therefore this is what the LORD of Hosts, the + +God of Israel, says: + +“I will punish the king of Babylon and + +19 + +his land + +as I punished the king of Assyria. + +I will return Israel to his pasture, + +and he will graze on Carmel and Bashan; + +his soul will be satisfied + +20 + +on the hills of Ephraim and Gilead. + +In those days and at that time, + +12 + +because you frolic like a heifer treading grain + +declares the LORD, + +and neigh like stallions, + +your mother will be greatly ashamed; + +she who bore you will be disgraced. +Behold, she will be the least of the nations, +a wilderness, a dry land, and a desert. + +13 + +Because of the wrath of the LORD, + +she will not be inhabited; +she will become completely desolate. + +All who pass through Babylon will be + +14 + +horrified + +and will hiss at all her wounds. + +a search will be made for Israel’s guilt, + +but there will be none, + +and for Judah’s sins, + +but they will not be found; + +for I will forgive + +The Destruction of Babylon +the remnant I preserve. + +21 + +Go up against the land of Merathaim, + + b + +c + +and against the residents of Pekod. + +Kill them + + and devote them to destruction. + +Do all that I have commanded you,” + +declares the LORD. + +Line up in formation around Babylon, + +22 + +all you who draw the bow! +Shoot at her! Spare no arrows! + +15 + +For she has sinned against the LORD. +Raise a war cry against her on every side! + +She has thrown up her hands in + +surrender; +her towers have fallen; + +her walls are torn down. + +Since this is the vengeance of the LORD, +take out your vengeance upon her; + +23 + +“The noise of battle is in the land— +the noise of great destruction. +How the hammer of the whole earth + +lies broken and shattered! + +What a horror Babylon has become + +24 + +among the nations! + +I laid a snare for you, O Babylon, + +and you were caught before you + +knew it. + +as she has done, +Babylonia +do the same to her. + +b 21 + +a 10 + +Avenge, O sword, + +c 21 + +You were found and captured + +because you challenged the LORD. + +cherem + +Or + +LXX + +Forms of the Hebrew + + refer to the giving over of things or + +persons to the LORD, either by destroying them or by giving them as an offering; also in verse 26. + + 732 | Jeremiah 50:25 + +25 + +35 + +The LORD has opened His armory + +A sword is against the Chaldeans, + +and brought out His weapons of wrath, + +declares the LORD, + +for this is the work of the Lord GOD + +36 + +against those who live in Babylon, + +26 + +of Hosts + +in the land of the Chaldeans. + +Come against her + +from the farthest border. + +Break open her granaries; + +pile her up like mounds of grain. + +27 + +Devote her to destruction; +leave her no survivors. + +Kill all her young bulls; + +let them go down to the slaughter. +Woe to them, for their day has come— + +the time of their punishment. + +28 + +Listen to the fugitives and refugees + +from the land of Babylon, + +declaring in Zion the vengeance of the LORD + +29 + +our God, + +the vengeance for His temple. +Summon the archers against Babylon, + +all who string the bow. + +Encamp all around her; +let no one escape. + +Repay her according to her deeds; +do to her as she has done. +For she has defied the LORD, +the Holy One of Israel. + +30 + +Therefore, her young men will fall in the + +streets, + +and all her warriors will be silenced in + +declares the LORD. + +31 + +that day,” + +“Behold, I am against you, O arrogant one,” + +declares the Lord GOD of Hosts, + +32 + +“for your day has come, + +the time when I will punish you. +The arrogant one will stumble and fall + +with no one to pick him up. +And I will kindle a fire in his cities + +to consume all those around him.” + +33 + +and against her officials and wise men. + +A sword is against her false prophets, + +and they will become fools. +A sword is against her warriors, + +37 + +and they will be filled with terror. + +A sword is against her horses and chariots + +and against all the foreigners in her midst, +and they will become like women. + +A sword is against her treasuries, +and they will be plundered. +A drought is upon her waters, +and they will be dried up. +For it is a land of graven images, + +38 + +39 + +and the people go mad over idols. + +a + +So the desert creatures and hyenas will live + + b + +there +and ostriches + + will dwell there. + +40 + +It will never again be inhabited + +or lived in from generation to generation. + +As God overthrew Sodom and Gomorrah + +declares the LORD, + +along with their neighbors,” + +41 + +“no one will dwell there; + +no man will abide there. + +Behold, an army is coming from the north; + +a great nation and many kings are stirred + +42 + +up + + c + +from the ends of the earth. +They grasp the bow and spear; + +they are cruel and merciless. + +Their voice roars like the sea, +and they ride upon horses, +lined up like men in formation + +43 + +against you, O Daughter of Babylon. +The king of Babylon has heard the report, + +and his hands hang limp. + +Anguish has gripped him, + +44 + +pain like that of a woman in labor. + +This is what the LORD of Hosts says: + +“The sons of Israel are oppressed, +and the sons of Judah as well. +All their captors hold them fast, +refusing to release them. + +34 + +Their Redeemer is strong; + +the LORD of Hosts is His name. +He will fervently plead their case + +a 38 + +so that He may bring rest to the earth, +b 39 +go mad with fear +but turmoil to those who live in Babylon. + +daughters of an ostrich + +Or + +Literally + + or + +Behold, one will come up like a lion + +from the thickets of the Jordan to the + +watered pasture. + +For in an instant I will chase Babylon from + +her land. + +Who is the chosen one I will appoint for + +this? + +For who is like Me, and who can challenge + +Me? +daughters of an owl + +What shepherd can stand against Me?” +Or + +c 42 + +javelin + + Jeremiah 51:16 | 733 + +45 + +9 + +Therefore hear the plans + +“We tried to heal Babylon, + +that the LORD has drawn up against + +but she could not be healed. + +Babylon + +Abandon her! + +and the strategies He has devised + +against the land of the Chaldeans: +Surely the little ones of the flock will be + +Let each of us go to his own land, +for her judgment extends to the sky +and reaches to the clouds.” + +10 + +dragged away; + +46 + +certainly their pasture will be made +desolate because of them. + +At the sound of Babylon’s capture the earth + +11 + +“The LORD has brought forth our vindication; + +come, let us tell in Zion +what the LORD our God has + +accomplished.” + + d + +will quake; + +Judgment on Babylon + +a cry will be heard among the nations. + +51 + +This is what the LORD says: + + a + +“Behold, I will stir up against Babylon + +2 + +and against the people of Leb-kamai +the spirit of a destroyer. +I will send strangers to Babylon + +to winnow her and empty her land; + +for they will come against her from every side +3 + +in her day of disaster. + +Do not let the archer bend his bow + +or put on his armor. +Do not spare her young men; + +4 + + b + +devote all her army to destruction! +And they will fall slain in the land of the + +c + +5 + +Chaldeans, + +and pierced through in her streets. + +For Israel and Judah have not been + +abandoned + +by their God, the LORD of Hosts, + +though their land is full of guilt +6 + +before the Holy One of Israel.” + +Flee from Babylon! Escape with your lives! +Do not be destroyed in her punishment. +For this is the time of the LORD’s vengeance; + +7 + +He will pay her what she deserves. +Babylon was a gold cup in the hand of the + +LORD, + +making the whole earth drunk. + +The nations drank her wine; +8 + +therefore the nations have gone mad. + +Suddenly Babylon has fallen and been + +shattered. + +Wail for her; get her balm for her pain; +perhaps she can be healed. + +a 1 Leb-kamai + +Sharpen the arrows! +Fill the quivers! + +The LORD has aroused the spirit +of the kings of the Medes, + +because His plan is aimed at Babylon + +to destroy her, + +for it is the vengeance of the LORD— + +12 + +vengeance for His temple. + +Raise a banner against the walls of Babylon; + +post the guard; +station the watchmen; + +prepare the ambush. + +For the LORD has both devised and + +accomplished + +13 + +what He spoke against the people of + +Babylon. + +You who dwell by many waters, + +rich in treasures, +your end has come; + +14 + +the thread of your life is cut. + +The LORD of Hosts has sworn by Himself: + +“Surely I will fill you up with men as with + +locusts, + +Praise to the God of Jacob (Isaiah 25:1–12) + +and they will shout in triumph over you.” + +15 + +The LORD made the earth by His power; + +He established the world by His wisdom +and stretched out the heavens by His + +16 + +understanding. + +When He thunders, + +the waters in the heavens roar; + +He causes the clouds to rise + +from the ends of the earth. + +He generates the lightning with the rain +and brings forth the wind from His + +b 3 + +storehouses. + +cherem +c 4 + + is a code name for Chaldea, that is, Babylonia. +d 11 + +Forms of the Hebrew + +Fill the hand with the shields! + +things or persons to the LORD, either by destroying them or by giving them as an offering. +also in v. 54 + +LXX and some translations of the Hebrew; literally + + or + + refer to the giving over of +Take up the shields! +That is, the Babylonians; + + 734 | Jeremiah 51:17 + +17 + +Every man is senseless and devoid of + +28 + +Appoint a captain against her; + +knowledge; + +every goldsmith is put to shame by his + +bring up horses like swarming locusts. +Prepare the nations for battle against her— + +idols. + +18 + +For his molten images are a fraud, +and there is no breath in them. + +They are worthless, a work to be mocked. + +19 + +In the time of their punishment they will + +perish. + +The Portion of Jacob is not like these, +for He is the Maker of all things, +and of the tribe of His inheritance— +the LORD of Hosts is His name. + +Babylon’s Punishment + +20 + +“You are My war club, + +My weapon for battle. +With you I shatter nations; + +21 + +with you I bring kingdoms to ruin. +With you I shatter the horse and rider; + +22 + +with you I shatter the chariot and driver. + +With you I shatter man and woman; + +with you I shatter the old man and + +the youth; + +23 + +with you I shatter the young man and the + +maiden. + +With you I shatter the shepherd and his flock; + +with you I shatter the farmer and his + +the kings of the Medes, + +29 + +their governors and all their officials, + +and all the lands they rule. + +The earth quakes and writhes + +because the LORD’s intentions against + +Babylon stand: + +30 + +to make the land of Babylon a desolation, + +without inhabitant. + +The warriors of Babylon have stopped + +fighting; + +they sit in their strongholds. + +Their strength is exhausted; + +31 + +they have become like women. +Babylon’s homes have been set ablaze, +the bars of her gates are broken. +One courier races to meet another, + +and messenger follows messenger, + +to announce to the king of Babylon + +32 + +that his city has been captured from end + +to end. + +The fords have been seized, +the marshes set on fire, +and the soldiers are terrified.” + +33 + +For this is what the LORD of Hosts, the God of + +oxen; + +Israel, says: + +24 + +with you I shatter the governors and + +officials. + +“The Daughter of Babylon is like a threshing + + a + +floor + +Before your very eyes I will repay + +at the time it is trampled. + +Babylon and all the dwellers of Chaldea +for all the evil they have done in Zion,” + +declares the LORD. + +25 + +“Behold, I am against you, +O destroying mountain, + +you who devastate the whole earth, + +declares the LORD. + +I will stretch out My hand against you; + +26 + +I will roll you over the cliffs +and turn you into a charred mountain. +No one shall retrieve from you a cornerstone + +or a foundation stone, +because you will become desolate + +declares the LORD. + +27 + +forever,” + +“Raise a banner in the land! + +Blow the ram’s horn among the nations! + +Prepare the nations against her. + +a 24 + +Summon the kingdoms against her— +Ararat, Minni, and Ashkenaz. +That is, Babylonia; also in verse 35 + +b 34 + +Or + +expelled me + +In just a little while + +34 + +her harvest time will come.” + +“Nebuchadnezzar king of Babylon has + +devoured me; + +he has crushed me. + +He has set me aside like an empty vessel; +he has swallowed me like a monster; + +b + +35 + +he filled his belly with my delicacies + +and vomited me out. + +May the violence done to me + +and to my flesh +be upon Babylon,” + +says the dweller of Zion. + +“May my blood be on the dwellers of + +36 + +Chaldea,” +says Jerusalem. + +Therefore this is what the LORD says: + +“Behold, I will plead your case + +and take vengeance on your behalf; + + Jeremiah 51:58 | 735 + +37 + +I will dry up her sea + +and make her springs run dry. +Babylon will become a heap of rubble, + +a + +49 + +because the destroyers from the north + +declares the LORD. + +will come against her,” + +a haunt for jackals, + +38 + +an object of horror and scorn, + +without inhabitant. + +39 + +They will roar together like young lions; + +they will growl like lion cubs. +While they are flushed with heat, + +I will serve them a feast, +and I will make them drunk +so that they may revel; + +then they will fall asleep forever and never + +40 + +wake up, +declares the LORD. + +I will bring them down like lambs to the + +41 + +slaughter, + + b + +like rams with male goats. + +“Babylon must fall + +on account of the slain of Israel, + +50 + +just as the slain of all the earth + +have fallen because of Babylon. +You who have escaped the sword, + +depart and do not linger! + +51 + +Remember the LORD from far away, +and let Jerusalem come to mind.” + +“We are ashamed because we have heard + +reproach; + +disgrace has covered our faces, + +52 + +because foreigners have entered + +the holy places of the LORD’s house.” + +“Therefore, behold, the days are coming,” + +How Sheshach + + has been captured! + +The praise of all the earth has been seized. + +declares the LORD, + +“when I will punish her idols, + +42 + +What a horror Babylon has become + +among the nations! + +43 + +The sea has come up over Babylon; + +she is covered in turbulent waves. +Her cities have become a desolation, + +a dry and arid land, +a land where no one lives, + +44 + +where no son of man passes through. + +I will punish Bel in Babylon. + +I will make him spew out what he + +swallowed. + +45 + +The nations will no longer stream to him; +even the wall of Babylon will fall. + + c + +Come out of her, My people! + +46 + +Save your lives, each of you, +from the fierce anger of the LORD. + +Do not let your heart grow faint, + +and do not be afraid +when the rumor is heard in the land; + +for a rumor will come one year— + +and then another the next year— + +of violence in the land + +47 + +and of ruler against ruler. + +Therefore, behold, the days are coming + +when I will punish the idols of Babylon. + +Her entire land will suffer shame, +and all her slain will lie fallen + +48 + +within her. + +Then heaven and earth and all that is + +a 37 + +in them + +b 41 Sheshach +serpents +will shout for joy over Babylon + +dragons + +53 + +and throughout her land the wounded will + +groan. + +Even if Babylon ascends to the heavens +and fortifies her lofty stronghold, + +the destroyers I send will come against her,” + +54 + +declares the LORD. + +“The sound of a cry + +comes from Babylon, + +the sound of great destruction + +55 + +from the land of the Chaldeans! +For the LORD will destroy Babylon; +He will silence her mighty voice. +The waves will roar like great waters; + +56 + +the tumult of their voices will resound. + +For a destroyer is coming against her— + +against Babylon. + +Her warriors will be captured, + +and their bows will be broken, +for the LORD is a God of retribution; + +57 + +He will repay in full. + +I will make her princes and wise men drunk, + +along with her governors, officials, + +and warriors. + +Then they will fall asleep forever + +and not wake up,” + +declares the King, + +58 + +whose name is the LORD of Hosts. + +This is what the LORD of Hosts says: + +“Babylon’s thick walls will be leveled, + +c 45 + +and her high gates consumed by fire. + +Or + + or + + is a code name for Babylon. + +See Revelation 18:4. + + 736 | Jeremiah 51:59 + +6 + +So the labor of the people will be for nothing; +the nations will exhaust themselves to fuel + +Jeremiah’s Message to Seraiah +the flames.” + +59 + +60 + +This is the message that Jeremiah the prophet +gave to the quartermaster Seraiah son of Neriah, +the son of Mahseiah, when he went to Babylon +with King Zedekiah of Judah in the fourth year of +Jeremiah had written on a +Zedekiah’s reign. +single scroll about all the disaster that would +come upon Babylon—all these words that had +61 +been written concerning Babylon. + +And Jeremiah said to Seraiah, “When you get to +62 +Babylon, see that you read all these words aloud, +and say, ‘O LORD, You have promised to cut off +this place so that no one will remain—neither +man nor beast. Indeed, it will be desolate +63 +forever.’ + +64 + +When you finish reading this scroll, tie a stone +Then you +to it and cast it into the Euphrates. +are to say, ‘In the same way Babylon will sink and +never rise again, because of the disaster I will +bring upon her. And her people will grow +weary.’ +The Fall of Jerusalem Recounted +Here end the words of Jeremiah. +(Psalm 74:1–23 ; Psalm 79:1–13 ; +2 Kings 24:18–20 ; 2 Chronicles 36:11–14) + +” + +52 + +Zedekiah was twenty-one years old +when he became king, and he reigned in +Jerusalem eleven years. His mother’s name was +Hamutal daughter of Jeremiah; she was from +2 +Libnah. + +3 + +And Zedekiah did evil in the sight of the LORD, +For because of the +just as Jehoiakim had done. +anger of the LORD, all this happened in Jerusalem +and Judah, until He finally banished them from +His presence. + +And Zedekiah also rebelled against the king of +4 +Babylon. + +So in the ninth year of Zedekiah’s reign, on the +tenth day of the tenth month, Nebuchadnezzar +king of Babylon marched against Jerusalem with +his entire army. They encamped outside the city +And the city +and built a siege wall all around it. +was kept under siege until King Zedekiah’s elev- +a 7 +enth year. + +5 + + a + +7 + +By the ninth day of the fourth month, the famine +in the city was so severe that the people of the +Then the city was breached; +land had no food. +and though the Chaldeans + had surrounded the +city, all the men of war fled the city by night by +way of the gate between the two walls near the +king’s garden. + +8 + +b + +They headed toward the Arabah, +but the army +of the Chaldeans pursued the king and overtook +Zedekiah in the plains of Jericho, and his whole +9 +army deserted him. + +The Chaldeans seized the king and brought him +up to the king of Babylon at Riblah in the land +of Hamath, where he pronounced judgment on +10 +Zedekiah. + +11 + +There at Riblah the king of Babylon slaugh- +tered the sons of Zedekiah before his eyes, and +he also killed all the officials of Judah. +Then he +put out Zedekiah’s eyes, bound him with bronze +shackles, and took him to Babylon, where he kept +The Temple Destroyed +him in custody until his dying day. +(2 Kings 25:8–17) + +12 + +13 + +On the tenth day of the fifth month, in the nine- +teenth year of Nebuchadnezzar’s reign over +Babylon, Nebuzaradan captain of the guard, a +servant of the king of Babylon, entered Jerusa- +He burned down the house of the LORD, +lem. +the royal palace, and all the houses of Jerusa- +And the whole +lem—every significant building. +army of the Chaldeans under the captain of the +15 +guard broke down all the walls around Jerusalem. + +14 + +Then Nebuzaradan captain of the guard car- +ried into exile some of the poorest people and +those who remained in the city, along with +the deserters who had defected to the king of +But +Babylon and the rest of the craftsmen. +Nebuzaradan captain of the guard left behind +some of the poorest of the land to tend the vine- +17 +yards and fields. + +16 + +18 + +Moreover, the Chaldeans broke up the bronze +pillars and stands and the bronze Sea in the +house of the LORD, and they carried all the +They also took away the +bronze to Babylon. +pots, shovels, wick trimmers, sprinkling bowls, +19 +dishes, and all the articles of bronze used in the +The captain of the guard +temple service. +also took away the basins, censers, sprinkling +bowls, pots, lampstands, pans, and drink offering + +the Jordan Valley + +b 7 + +That is, the Babylonians; similarly in verses 8, 9, 14, and 17 + +Or + + bowls—anything made of pure gold or fine +20 +silver. + +As for the two pillars, the Sea, the twelve +bronze bulls under it, and the movable stands +that King Solomon had made for the house of the +LORD, the weight of the bronze from all these +Each pillar was +articles was beyond measure. +b +eighteen cubits tall and twelve cubits in circum- +22 +ference; + each was hollow, four fingers thick. + +21 + + a + +c + +The bronze capital atop one pillar was five +cubits high, + with a network of bronze pome- +23 +granates all around. The second pillar, with its +Each capital had +pomegranates, was similar. +ninety-six pomegranates on the sides, and a total +of a hundred pomegranates were above the sur- +Captives Carried to Babylon +rounding network. +(2 Kings 25:18–21) + +24 + +25 + +The captain of the guard also took away +Seraiah the chief priest, Zephaniah the priest of +Of +second rank, and the three doorkeepers. +those still in the city, he took a court official who +had been appointed over the men of war, as well +as seven trusted royal advisers. He also took the +scribe of the captain of the army, who had en- +listed the people of the land, and sixty men who +26 +were found in the city. + +Nebuzaradan captain of the guard took them +and brought them to the king of Babylon at + +Jeremiah 52:34 | 737 + +27 + +There at Riblah in the land of Hamath, +Riblah. +the king of Babylon struck them down and put +them to death. So Judah was taken into exile, +28 +away from its own land. + +These are the people Nebuchadnezzar carried + +away: +29 +in the seventh year, 3,023 Jews; + +in Nebuchadnezzar’s eighteenth year, 832 + +30 +people from Jerusalem; + +in Nebuchadnezzar’s twenty-third year, +Nebuzaradan captain of the guard carried +away 745 Jews. + +Jehoiachin Released from Prison +So in all, 4,600 people were taken away. +(2 Kings 25:27–30) + +31 + + a + +On the twenty-fifth day of the twelfth month of +the thirty-seventh year of the exile of Jehoiachin +king of Judah, in the first year of the reign of Evil- + Jehoi- +merodach king of Babylon, he pardoned +achin king of Judah and released him from +prison. +And he spoke kindly to Jehoiachin and +set his throne above the thrones of the other +33 +kings who were with him in Babylon. + +32 + +34 + +So Jehoiachin changed out of his prison +clothes, and he dined regularly at the king’s table +for the rest of his life. +And the king of Babylon +provided Jehoiachin a daily portion for the rest +of his life, until the day of his death. + +a 21 + +b 21 4 fingers + +c 22 5 cubits + +Each pillar was approximately 27 feet high and 18 feet in circumference (8.2 meters high and 5.5 meters in + +circumference). +or 2.3 meters. + + is approximately 2.9 inches or 7.4 centimeters. + + is approximately 7.5 feet + + Lamentations + +How Lonely Lies the City! (2 Kings 24:10–17) + + a + +1 + + lonely lies the city, + +How + once so full of people! + +8 + +Her enemies looked upon her, +laughing at her downfall. + +Jerusalem has sinned greatly; + +She who was great among the nations + +therefore she has become an object of + +has become a widow. +The princess of the provinces +2 + +has become a slave. + +She weeps aloud in the night, + +with tears upon her cheeks. + +Among all her lovers + +there is no one to comfort her. +All her friends have betrayed her; +they have become her enemies. + +3 + +Judah has gone into exile + +under affliction and harsh slavery; + +she dwells among the nations +but finds no place to rest. + +All her pursuers have overtaken her +4 +in the midst of her distress. + +The roads to Zion mourn, + +because no one comes to her appointed + +feasts. + +All her gates are deserted; +her priests groan, + +her maidens grieve, +5 + +and she herself is bitter with anguish. + +Her foes have become her masters; + +her enemies are at ease. + +For the LORD has brought her grief + +because of her many transgressions. + +Her children have gone away +6 + +as captives before the enemy. + +All the splendor has departed +from the Daughter of Zion. + +Her princes are like deer +that find no pasture; +they lack the strength to flee +7 +in the face of the hunter. + +In the days of her affliction and wandering +Jerusalem remembers all the treasures +that were hers in days of old. + +When her people fell into enemy hands + +b 8 + +her shame + +she received no help. +This chapter is an acrostic poem + +a 1 + +scorn. + + b +All who honored her now despise her, +for they have seen her nakedness; +she herself groans and turns away. + +9 + +Her uncleanness stains her skirts; +she did not consider her end. + +Her downfall was astounding; + +there was no one to comfort her. + +10 + +Look, O LORD, on my affliction, + +for the enemy has triumphed! + +The adversary has seized +all her treasures. + +For she has seen the nations +enter her sanctuary— +those You had forbidden + +to enter Your assembly. + +11 + +All her people groan + +as they search for bread. + +They have traded their treasures for food + +to keep themselves alive. +Look, O LORD, and consider, + +for I have become despised. + +12 + +Is this nothing to you, all you who pass by? + +Look around and see! +Is there any sorrow like mine, +which was inflicted on me, +which the LORD made me suffer +on the day of His fierce anger? + +13 + +He sent fire from on high, + +and it overpowered my bones. + +He spread a net for my feet +and turned me back. + +14 + +He made me desolate, + +faint all the day long. + +c + +My transgressions are bound into a yoke, + +knit together by His hand; +they are draped over my neck, + +and the Lord has broken my strength. + +c 14 + +He has delivered me into the hands +of those I cannot withstand. + +He kept watch over my sins + +Or + +Other Hebrew mss. and LXX + + 15 + +God’s Anger over Jerusalem + +Lamentations 2:8 | 739 + +The Lord has rejected + + a + +all the mighty men in my midst; +He has summoned an army against me + +to crush my young warriors. + +Like grapes in a winepress, + +16 + +the Lord has trampled the Virgin Daughter + +of Judah. + +For these things I weep; + +my eyes flow with tears. + +For there is no one nearby to comfort me, + +no one to revive my soul. + +My children are destitute + +17 + +because the enemy has prevailed. + +Zion stretches out her hands, + +but there is no one to comfort her. +The LORD has decreed against Jacob + +that his neighbors become his foes. + +Jerusalem has become + +18 + +an unclean thing among them. + +The LORD is righteous, + +yet I rebelled against His + +command. + +Listen, all you people; + +look upon my suffering. +My young men and maidens +have gone into captivity. + +19 + +I called out to my lovers, + +but they have betrayed me. + +My priests and elders +perished in the city + +20 + +while they searched for food +to keep themselves alive. + +See, O LORD, how distressed I am! + +I am churning within; + +my heart is pounding within me, + +for I have been most rebellious. + +21 + +Outside, the sword bereaves; +inside, there is death. + +People have heard my groaning, + +but there is no one to comfort me. +All my enemies have heard of my trouble; +they are glad that You have caused it. +May You bring the day You have announced, + +so that they may become like me. + +22 + +Let all their wickedness come before You, + +and deal with them +as You have dealt with me + +because of all my transgressions. + +For my groans are many, +b 1 +has set a time for me +and my heart is faint. + +a 15 + + b + +2 + + How + + the Lord has covered the Daughter + +of Zion + +with the cloud of His anger! + +He has cast the glory of Israel +from heaven to earth. + +2 + +He has abandoned His footstool +in the day of His anger. + +Without pity the Lord has swallowed up + +all the dwellings of Jacob. +In His wrath He has demolished + +the fortified cities of the Daughter of + +Judah. + +He brought to the ground and defiled +3 +her kingdom and its princes. + + c +In fierce anger He has cut off + +every horn + + of Israel + +and withdrawn His right hand + +at the approach of the enemy. + +He has burned in Jacob like a flaming fire +4 +that consumes everything around it. + +He has bent His bow like an enemy; +His right hand is positioned. + +Like a foe He has killed + +all who were pleasing to the eye; +He has poured out His wrath like fire +5 + +on the tent of the Daughter of Zion. + +The Lord is like an enemy; + +He has swallowed up Israel. +He has swallowed up all her palaces +and destroyed her strongholds. + +He has multiplied mourning and lamentation +6 + +for the Daughter of Judah. + +He has laid waste His tabernacle like a garden + +booth; + +He has destroyed His place of meeting. + +The LORD has made Zion forget + +her appointed feasts and Sabbaths. + +In His fierce anger + +7 + +He has despised both king and priest. + +The Lord has rejected His altar; + +He has abandoned His sanctuary; +He has delivered the walls of her palaces + +into the hand of the enemy. + +They have raised a shout in the house of the + +8 + +LORD + +as on the day of an appointed feast. + +The LORD determined to destroy + +c 3 +the wall of the Daughter of Zion. + +all the strength + +Or + +This chapter is an acrostic poem + +Or + + 740 | Lamentations 2:9 + +He stretched out a measuring line + +and did not withdraw His hand from + +destroying. + +He made the ramparts and walls lament; +9 + +together they waste away. + +Her gates have sunk into the ground; + +He has destroyed and shattered their bars. + +Her king and her princes are exiled among + +the nations, +the law is no more, +and even her prophets + +10 + +11 + +find no vision from the LORD. + +The elders of the Daughter of Zion +sit on the ground in silence. + +They have thrown dust on their heads + +and put on sackcloth. + +The young women of Jerusalem + +have bowed their heads to the ground. + +My eyes fail from weeping; +I am churning within. + +My heart is poured out in grief + +over the destruction of the daughter of my + +people, + +12 + +because children and infants faint + +in the streets of the city. + +They cry out to their mothers: + +“Where is the grain and wine?” + +as they faint like the wounded +in the streets of the city, + +as their lives fade away + +13 + +in the arms of their mothers. + +What can I say for you? + +To what can I compare you, +O Daughter of Jerusalem? + +To what can I liken you, + +that I may console you, +O Virgin Daughter of Zion? + +For your wound is as deep as the sea. + +14 + +Who can ever heal you? + +The visions of your prophets + +were empty and deceptive; +they did not expose your guilt +to ward off your captivity. + +15 + +The burdens they envisioned for you +were empty and misleading. + +All who pass by + +clap their hands at you in scorn. + +“Is this the city that was called +the perfection of beauty, +the joy of all the earth?” + +16 + +All your enemies + +open their mouths against you. + +They hiss and gnash their teeth, + +saying, “We have swallowed her up. +This is the day for which we have waited. + +We have lived to see it!” + +The LORD has done what He planned; +He has accomplished His decree, + +which He ordained in days of old; + +He has overthrown you without pity. + + a + +He has let the enemy gloat over you + +and exalted the horn +b + + of your foes. + +17 + +18 + +The hearts of the people +cry out to the Lord. + +O wall of the Daughter of Zion, + +let your tears run down like a river +day and night. +Give yourself no relief, + +and your eyes no rest. + +c + +19 + +Arise, cry out in the night + +from the first watch of the night. + +Pour out your heart like water +in the presence of the Lord. + +Lift up your hands to Him + +for the lives of your children + +who are fainting from hunger + +on the corner of every street. + +20 + +Look, O LORD, and consider: + +Whom have You ever treated like this? + +Should women eat their offspring, +the infants they have nurtured? +Should priests and prophets be killed +in the sanctuary of the Lord? + +21 + +Both young and old lie together +in the dust of the streets. +My young men and maidens +have fallen by the sword. + +You have slain them in the day of Your anger; + +22 + +You have slaughtered them without + +compassion. + +You summoned my terrors on every side, +as for the day of an appointed feast. + +In the day of the LORD’s anger +no one escaped or survived; + +They hiss and shake their heads +at the Daughter of Jerusalem: +b 18 + +the strength + +a 17 + +Their heart cries out to the Lord. + +my enemy has destroyed + +those I nurtured and reared. + +c 19 + +Or + +Literally + +That is, between six and nine at night + + The Prophet’s Afflictions + +23 + +Lamentations 3:44 | 741 + + a + +3 + +2 + + am the man who has seen affliction + + I +under the rod of God’s wrath. + +He has driven me away and made me walk + +3 + +in darkness instead of light. +Indeed, He keeps turning His hand + +against me all day long. + +He has worn away my flesh and skin; + +5 + +He has shattered my bones. + +He has besieged me and surrounded me + +6 + +with bitterness and hardship. +He has made me dwell in darkness + +like those dead for ages. + +4 + +7 + +He has walled me in so I cannot escape; + +8 + +He has weighed me down with chains. + +Even when I cry out and plead for help, + +9 + +He shuts out my prayer. + +10 + +He has barred my ways with cut stones; +He has made my paths crooked. + +11 + +He is a bear lying in wait, + +a lion hiding in ambush. + +He forced me off my path and tore me + +12 + +to pieces; + +He left me without help. + +He bent His bow + +13 + +and set me as the target for His arrow. + +14 + +He pierced my kidneys +with His arrows. + +15 + +I am a laughingstock to all my people; +they mock me in song all day long. + +He has filled me with bitterness; + +16 + +He has intoxicated me with wormwood. + +17 + +18 + +He has ground my teeth with gravel +and trampled me in the dust. +My soul has been deprived of peace; + +I have forgotten what prosperity is. + +So I say, “My strength has perished, + +The Prophet’s Hope + +along with my hope from the LORD.” + +19 + +20 + +Remember my affliction and wandering, + +the wormwood and the gall. + +21 + +Surely my soul remembers + +and is humbled within me. + +25 + +28 + +24 + +They are new every morning; +great is Your faithfulness! + +“The LORD is my portion,” says my soul, + +“therefore I will hope in Him.” + +26 + +The LORD is good to those who wait for Him, + +to the soul who seeks Him. + +27 + +It is good to wait quietly + +for the salvation of the LORD. +It is good for a man to bear the yoke + +while he is still young. + +29 + +Let him sit alone in silence, + +for the LORD has laid it upon him. + +30 + +Let him bury his face in the dust— +perhaps there is still hope. + +Let him offer his cheek to the one who would + +31 + +strike him; + +let him be filled with reproach. + +32 + +For the Lord will not +cast us off forever. + +Even if He causes grief, He will show + +33 + +compassion + +according to His abundant loving devotion. + +34 + +For He does not willingly afflict +or grieve the sons of men. + +35 + +To crush underfoot + +all the prisoners of the land, + +36 + +to deny a man justice + +before the Most High, + +to subvert a man in his lawsuit— + +God’s Justice + +of these the Lord does not approve. + +37 + +38 + +Who has spoken and it came to pass, +unless the Lord has ordained it? + +39 + +Do not both adversity and good + +come from the mouth of the Most High? + +Why should any mortal man complain, + +in view of his sins? + +40 + +41 + +42 + +Let us examine and test our ways, +and turn back to the LORD. +Let us lift up our hearts and hands + +to God in heaven: + +43 + +“We have sinned and rebelled; +You have not forgiven.” + +Yet I call this to mind, + +22 + +and therefore I have hope: + +Because of the loving devotion +we are not consumed, +for His mercies never fail. + +a 1 +b 22 + +chesed +love + + b + +You have covered Yourself in anger and + + of the LORD + +You have killed without pity. + +44 + +pursued us; + +You have covered Yourself with a cloud +that no prayer can pass through. + +loving devotion + +This chapter is an acrostic poem, each 3–verse stanza beginning with the successive letters of the Hebrew alphabet. +; the + +goodness + are translated here and in most cases throughout the Scriptures as +, and + +Forms of the Hebrew +range of meaning includes + +loyalty to a covenant + +faithfulness + +, as well as + +kindness + +mercy + +. + +, + +, + +, + + 742 | Lamentations 3:45 + +45 + +The Distress of Zion + +You have made us scum and refuse + +46 + +among the nations. + +47 + +All our enemies + +open their mouths against us. +Panic and pitfall have come upon us— + +48 + +devastation and destruction. +Streams of tears flow from my eyes + +49 + +over the destruction of the daughter of + +my people. + +50 + +My eyes overflow unceasingly, + +without relief, + +51 + +until the LORD + +looks down from heaven and sees. + +My eyes bring grief to my soul + +because of all the daughters of my city. + +52 + +54 + +55 + +58 + +53 + +Without cause my enemies +hunted me like a bird. + +They dropped me alive into a pit +and cast stones upon me. +The waters flowed over my head, + +and I thought I was going to die. + +56 + +I called on Your + + name, O LORD, +out of the depths of the Pit. + +57 + +You heard my plea: + +“Do not ignore my cry for relief.” +You drew near when I called on You; + +You said, “Do not be afraid.” + +59 + +You defend my cause, O Lord; + +You redeem my life. + +You have seen, O LORD, the wrong done + +60 + +to me; + +vindicate my cause! + +61 + +You have seen all their malice, +all their plots against me. + +62 + +O LORD, You have heard their insults, + +all their plots against me— +the slander and murmuring of my + +63 + +assailants + +against me all day long. + +64 + +When they sit and when they rise, +see how they mock me in song. + +You will pay them back what they deserve, O + +65 + +LORD, + + a + +4 + +2 + + the gold has become tarnished, + +How +the pure gold has become dull! +The gems of the temple lie scattered + +on every street corner. + +How the precious sons of Zion, + +once worth their weight in pure gold, + +are now esteemed as jars of clay, +3 +the work of a potter’s hands! + + b + +Even jackals + + offer their breasts + +to nurse their young, + +but the daughter of my people has become + +4 + +cruel, + +like an ostrich in the wilderness. + +The nursing infant’s tongue + +clings in thirst to the roof of his mouth. + +Little children beg for bread, +5 + +but no one gives them any. + +Those who once ate delicacies +are destitute in the streets; + +those brought up in crimson +6 +huddle in ash heaps. + + c + +The punishment + + of the daughter of my + +people + +is greater than that of Sodom, +which was overthrown in an instant +7 + +without a hand turned to help her. + +Her dignitaries were brighter than snow, +whiter than milk; + d +their bodies were more ruddy than rubies, +8 + +e + +their appearance + + like sapphires. + +But now their appearance is blacker than + +soot; + +they are not recognized in the streets. + +Their skin has shriveled on their bones; + +9 + +it has become as dry as a stick. + +Those slain by the sword are better off +than those who die of hunger, +who waste away, pierced with pain +because the fields lack produce. + +10 + +The hands of compassionate women +have cooked their own children, + +who became their food + +in the destruction of the daughter + +of my people. + +according to the work of their hands. + +11 + +66 + +Put a veil of anguish over their hearts; +may Your curse be upon them! +You will pursue them in anger and +exterminate them + +from under Your heavens, O LORD. +d 7 +serpents + +dragons + +iniquity + +c 6 + +a 1 +b 3 + +The LORD has exhausted His wrath; + +He has poured out His fierce anger; + +He has kindled a fire in Zion, + +their polishing + +and it has consumed her foundations. +their hair + +lapis lazuli + +e 7 + +This chapter is an acrostic poem, each verse beginning with the successive letters of the Hebrew alphabet. +Or + +Hebrew + + or + + or + +Or + +Or + + 12 + +A Prayer for Restoration + +Lamentations 5:22 | 743 + +The presence of the LORD has scattered + +9 + +there is no one to deliver us from their + +13 + +14 + +16 + +17 + +18 + +19 + +20 + +The kings of the earth did not believe, + +nor any people of the world, + +that an enemy or a foe + +could enter the gates of Jerusalem. + +But this was for the sins of her prophets + +and the guilt of her priests, + +who shed the blood of the righteous + +in her midst. + +They wandered blind in the streets, + +defiled by this blood, + +so that no one dared + +15 + +to touch their garments. + +“Go away! Unclean!” + +men shouted at them. + +“Away, away! Do not touch us!” +So they fled and wandered. +Among the nations it was said, + +“They can stay here no longer.” + +them; + +He regards them no more. +The priests are shown no honor; + +the elders find no favor. + +All the while our eyes were failing +as we looked in vain for help. + +We watched from our towers + +They stalked our every step, + +so that we could not walk in our streets. + +Our end drew near, our time ran out, + +for our end had come! + +Those who chased us were swifter + +than the eagles in the sky; + +they pursued us over the mountains + +and ambushed us in the wilderness. + +The LORD’s anointed, the breath of our life, + +was captured in their pits. + +We had said of him, + +21 + +“Under his shadow we will live among the + +nations.” + +So rejoice and be glad, O Daughter of Edom, + +you who dwell in the land of Uz. +Yet the cup will pass to you as well; + +22 + +you will get drunk and expose yourself. + +O Daughter of Zion, your punishment is + +a + +complete; + +He will not prolong your exile. +But He will punish your iniquity, + +a 22 + +O Daughter of Edom; +He will not exile you again +He will expose your sins. + +Or + +5 + + Remember, O LORD, what has happened to + +2 + +us. + +Look and see our disgrace! + +Our inheritance has been turned over to + +3 + +strangers, + +our houses to foreigners. + +We have become fatherless orphans; + +4 + +our mothers are widows. +We must buy the water we drink; +our wood comes at a price. + +5 + +We are closely pursued; + +6 + +we are weary and find no rest. + +We submitted to Egypt and Assyria + +7 + +to get enough bread. + +8 + +Our fathers sinned and are no more, +but we bear their punishment. + +Slaves rule over us; + +hands. + +10 + +We get our bread at the risk of our lives + +because of the sword in the wilderness. + +11 + +Our skin is as hot as an oven + +with fever from our hunger. + +12 + +Women have been ravished in Zion, +virgins in the cities of Judah. + +elders receive no respect. +Young men toil at millstones; + +14 + +boys stagger under loads of wood. + +15 + +The elders have left the city gate; + +the young men have stopped their music. + +16 + +Joy has left our hearts; + +our dancing has turned to mourning. + +17 + +The crown has fallen from our head. +Woe to us, for we have sinned! + +18 + +Because of this, our hearts are faint; + +because of these, our eyes grow dim— +because of Mount Zion, which lies desolate, + +19 + +patrolled by foxes. + +You, O LORD, reign forever; + +20 + +Your throne endures from generation to + +generation. + +21 + +Why have You forgotten us forever? + +Why have You forsaken us for so long? +Restore us to Yourself, O LORD, so we may + +22 + +return; + +renew our days as of old, + +unless You have utterly rejected us + +and remain angry with us beyond + +measure. + +for a nation that could not save us. + +13 + +Princes have been hung up by their hands; + + Ezekiel + +Ezekiel’s Vision by the River Kebar +(Psalm 137:1–9) + +1 + +In the thirtieth year, on the fifth day of the +fourth month, while I was among the exiles +by the River Kebar, the heavens opened and I +2 +saw visions of God. + +a + +3 + +On the fifth day of the month—it was the fifth +the word +year of the exile of King Jehoiachin— + b +of the LORD came directly to Ezekiel the priest, +the son of Buzi, in the land of the Chaldeans + by +the River Kebar. And there the LORD’s hand was +The Four Living Creatures +upon him. +4 + +I looked and saw a whirlwind coming from the +north, a great cloud with fire flashing back and +forth and brilliant light all around it. In the center +and within +of the fire was a gleam like amber, +it was the form of four living creatures. + +5 + +c + +6 + +7 + +And this was their appearance: They had a hu- +but each had four faces and four +man form, +wings. +Their legs were straight, and the soles of +their feet were like the hooves of a calf, gleaming +8 +like polished bronze. + +9 + +Under their wings on their four sides they had +human hands. All four living creatures had faces +and wings, +and their wings were touching one +another. They did not turn as they moved; each +10 +one went straight ahead. + +The form of their faces was that of a man, and +each of the four had the face of a lion on the right +side, the face of an ox on the left side, and also the +face of an eagle. + +Such were their faces. + +11 + +Their wings were spread upward; each had two +wings touching the wings of the creature on +12 +either side, and two wings covering its body. +Each creature went straight ahead. Wherever +the spirit would go, they would go, without turn- +13 +ing as they moved. + +In the midst of the living creatures was +the appearance of glowing coals of fire, or of +a 1 +torches. Fire moved back and forth between the +d 24 + +b 3 +Shaddai + +from God + +c 4 + +14 + +living creatures; it was bright, and lightning +The creatures were darting +flashed out of it. +The Four Wheels +back and forth as quickly as flashes of lightning. +15 + +17 + +16 + +When I looked at the living creatures, I saw a +wheel on the ground beside each creature with +its four faces. +The workmanship of the wheels +looked like the gleam of beryl, and all four had +the same likeness. Their workmanship looked +like a wheel within a wheel. +As they moved, +they went in any of the four directions, without +pivoting as they moved. +Their rims were high +19 +and awesome, and all four rims were full of eyes +all around. +So as the living creatures moved, +the wheels moved beside them, and when the +creatures rose from the ground, the wheels also +20 +rose. + +18 + +21 + +Wherever the spirit would go, they would go, +and the wheels would rise alongside them, +because the spirit of the living creatures was in +the wheels. +When the creatures moved, the +wheels moved; when the creatures stood still, +the wheels stood still; and when the creatures +rose from the ground, the wheels rose alongside +them, because the spirit of the living creatures +The Divine Glory +was in the wheels. +22 + +23 + +Spread out above the heads of the living crea- +tures was the likeness of an awesome expanse, +gleaming like crystal. +And under the expanse, +their wings stretched out toward one another. +24 +Each one also had two wings covering its body. + +When the creatures moved, I heard the sound +d +of their wings like the roar of many waters, like + like the tumult of an +the voice of the Almighty, +army. +25 +When they stood still, they lowered their wings. +And there came a voice from above the ex- +panse over their heads as they stood still with +26 +their wings lowered. + +Or + +Hebrew + +That is, the Babylonians + +Or + +; similarly in verse 27 + +The center of the fire looked like glowing metal + +Above the expanse over their heads was the +likeness of a throne with the appearance of + + 27 + +sapphire, and on the throne high above was a fig- +ure like that of a man. +From what seemed to be +His waist up, I saw a gleam like amber, with what +looked like fire within it all around. And from +what seemed to be His waist down, I saw what +looked like fire; and brilliant light surrounded +28 +Him. + +The appearance of the brilliant light all around +Him was like that of a rainbow in a cloud on a +rainy day. This was the appearance of the like- +ness of the glory of the LORD. And when I saw it, +Ezekiel’s Call +I fell facedown and heard a voice speaking. + +2 + +a + +2 + +“Son of man, +your feet and I will speak to you.” + +” He said to me, “stand up on +And as He +spoke to me, the Spirit entered me and set me on +3 +my feet, and I heard Him speaking to me. + +“Son of man,” He said to me, “I am sending you +to the Israelites, to a rebellious nation that has +rebelled against Me. To this very day they and +their fathers have rebelled against Me. +They are +obstinate and stubborn children. I am sending +you to them, and you are to say to them, ‘This is +5 +what the Lord GOD says.’ + +4 + +And whether they listen or refuse to listen—for +they are a rebellious house—they will know that +6 +a prophet has been among them. + +But you, son of man, do not be afraid of them +or their words. Do not be afraid, though briers +and thorns surround you, and you dwell among +scorpions. Do not be afraid of their words or +dismayed by their presence, though they are a +But speak My words to them, +rebellious house. +whether they listen or refuse to listen, for they +8 +are rebellious. + +7 + +And you, son of man, listen to what I tell you. Do +not be rebellious like that rebellious house. Open +9 +your mouth and eat what I give you.” + +10 + +Then I looked and saw a hand reaching out to +which He unrolled +me, and in it was a scroll, +before me. And written on the front and back of +it were words of lamentation, mourning, and +Ezekiel Eats the Scroll (Revelation 10:1–11) +woe. + +3 + +Ezekiel 3:17 | 745 + +2 + +3 + +So I opened my mouth, and He fed me the scroll. + +“Son of man,” He said to me, “eat and fill your + +stomach with this scroll I am giving you.” + +So I ate, and it was as sweet as honey in my +4 +mouth. + +6 + +Then He said to me, “Son of man, go now to the +5 +house of Israel and speak My words to them. +For you are not being sent to a people of unfa- +miliar speech or difficult language, but to the +house of Israel— +not to the many peoples of +unfamiliar speech and difficult language whose +words you cannot understand. Surely if I had +sent you to them, they would have listened to +7 +you. + +But the house of Israel will be unwilling to listen +to you, since they are unwilling to listen to Me. +For the whole house of Israel is hard-headed and +8 +hard-hearted. + +9 + +Behold, I will make your face as hard as their +faces, and your forehead as hard as their fore- +heads. +I will make your forehead like a dia- +mond, harder than flint. Do not be afraid of them +or dismayed at their presence, even though they +10 +are a rebellious house.” + +“Son of man,” He added, “listen carefully to all +11 +the words I speak to you, and take them to heart. +Go to your people, the exiles; speak to them +and tell them, ‘This is what the Lord GOD says,’ +12 +whether they listen or refuse to listen.” + + b + +Then the Spirit + + lifted me up, and I heard a +great rumbling sound behind me: “Blessed be the +glory of the LORD in His dwelling place! +It +was the sound of the wings of the living creatures +brushing against one another and the sound of +14 +the wheels beside them, a great rumbling sound. + +13 + +” + + c + +So the Spirit lifted me up and took me away, +and I went in bitterness and in the anger of my +15 +spirit, with the strong hand of the LORD upon me. +I came to the exiles at Tel-abib who dwelt by +the River Kebar. And for seven days I sat where +they sat and remained there among them, over- +A Watchman for Israel +whelmed. +16 + +17 + +At the end of seven days the word of the LORD +came to me, saying, +“Son of man, I have made +you a watchman for the house of Israel. When- +ever you hear a word from My mouth, give them +a warning from Me. + +sound behind me as the + +c 12 + +“Son of man,” He said to me, “eat what you +find here. Eat this scroll, then go and speak +Son of Adam + +b 12 + +a 1 +to the house of Israel.” +glory of the LORD rose from its place! + +the wind + +Or + +; here and throughout Ezekiel + +Or + +; also in verse 14 + +Or + + 746 | Ezekiel 3:18 + +18 + +4 + +a + +If I say to the wicked man, ‘You will surely die,’ +but you do not warn him or speak out to warn +him from his wicked way to save his life, that +wicked man will die in his iniquity, + and I will +But if you +hold you responsible for his blood. +warn a wicked man and he does not turn from his +wickedness and his wicked way, he will die in his +20 +iniquity, but you will have saved yourself. + +19 + +b + +Now if a righteous man turns from his right- +eousness and commits iniquity, and I put a +stumbling block before him, he will die. If you did + and the +not warn him, he will die in his sin, +righteous acts he did will not be remembered. +21 +And I will hold you responsible for his blood. +But if you warn the righteous man not to sin, +and he does not sin, he will indeed live because +he heeded your warning, and you will have saved +22 +yourself.” + +And there the hand of the LORD was upon me, +and He said to me, “Get up, go out to the plain, +23 +and there I will speak with you.” + +So I got up and went out to the plain, and be- +hold, the glory of the LORD was present there, +like the glory I had seen by the River Kebar, and +24 +I fell facedown. + +Then the Spirit entered me and set me on my +25 +feet. He spoke with me and said, “Go, shut your- +self inside your house. +And you, son of man, +they will tie with ropes, and you will be bound so +that you cannot go out among the people. +I will +make your tongue stick to the roof of your +mouth, and you will be silent and unable to re- +27 +buke them, though they are a rebellious house. + +26 + +But when I speak with you, I will open your +mouth, and you are to tell them, ‘This is what the +Lord GOD says.’ Whoever listens, let him listen; +and whoever refuses, let him refuse, for they are +A Sign of Jerusalem’s Siege +a rebellious house. + +4 + +“Now you, son of man, take a brick, place it +2 +before you, and draw on it the city of Jerusa- +Then lay siege against it: Construct a siege +lem. +wall, build a ramp to it, set up camps against it, +3 +and place battering rams around it on all sides. +Then take an iron plate and set it up as an iron +wall between yourself and the city. Turn your +face toward it so that it is under siege, and be- +for his sin +a 18 +siege it. This will be a sign to the house of Israel. +Or +“Behold, my soul has never been made unclean. +food. + +for his iniquity +d 11 A sixth of a hin + +; also in verse 19 + +b 20 + +f 16 + +Or + +5 + +Then lie down on your left side and place the in- +iquity of the house of Israel upon yourself. You +are to bear their iniquity for the number of days +you lie on your side. +For I have assigned to you +390 days, according to the number of years of +their iniquity. So you shall bear the iniquity of the +6 +house of Israel. + +When you have completed these days, lie down +again, but on your right side, and bear the iniq- +uity of the house of Judah. I have assigned to you +You must turn your +40 days, a day for each year. +face toward the siege of Jerusalem with your arm +8 +bared, and prophesy against it. + +7 + +Now behold, I will tie you up with ropes so you +cannot turn from side to side until you have fin- +The Defiled Bread +ished the days of your siege. +9 + +But take wheat, barley, beans, lentils, millet, and +spelt; put them in a single container and make +them into bread for yourself. This is what you are + c +10 +to eat during the 390 days you lie on your side. +You are to weigh out twenty shekels of food +11 +to eat each day, and you are to eat it at set times. + + d + +You are also to measure out a sixth of a hin of +12 +water + to drink, and you are to drink it at set +times. +And you shall eat the food as you would +a barley cake, after you bake it over dried human +13 +excrement in the sight of the people.” + +Then the LORD said, “This is how the Israelites +will eat their defiled bread among the nations to +14 +which I will banish them.” + +e + +“Ah, Lord GOD,” I said, “I have never defiled +myself. + From my youth until now I have not +eaten anything found dead or mauled by wild +beasts. No unclean meat has ever entered my +15 +mouth.” + +“Look,” He replied, “I will let you use cow dung +instead of human excrement, and you may bake +16 +your bread over that.” + + f + +Then He told me, “Son of man, I am going to cut + of food in Jerusalem. They will +off the supply +anxiously eat bread rationed by weight, and in +So +despair they will drink water by measure. +they will lack food and water; they will be ap- +palled at the sight of one another wasting away +c 10 20 shekels +in their iniquity. + +17 + +“Ah, Lord GOD,” I said, + +e 14 + +staff + + is approximately 8 ounces or 228 grams of + + is approximately 0.65 quarts or 0.61 liters of water. + +Hebrew + +Hebrew + + The Razor of Judgment + +13 + +Ezekiel 6:9 | 747 + +5 + +2 + +“As for you, son of man, take a sharp sword, +use it as a barber’s razor, and shave your +head and beard. Then take a set of scales and di- +When the days of the siege have +vide the hair. +ended, you are to burn up a third of the hair in- +side the city; you are also to take a third and slash +it with the sword all around the city; and you are +to scatter a third to the wind. For I will unleash a +3 +sword behind them. + +4 + +But you are to take a few strands of hair and se- +cure them in the folds of your garment. +Again, +take a few of these, throw them into the fire, and +burn them. From there a fire will spread to the +5 +whole house of Israel. + +6 + +This is what the Lord GOD says: ‘This is Jerusa- +lem, which I have set in the center of the +nations, with countries all around her. +But she +has rebelled against My ordinances more wick- +edly than the nations, and against My statutes +worse than the countries around her. For her +people have rejected My ordinances and have +7 +not walked in My statutes.’ + + a + +Therefore this is what the Lord GOD says: ‘You +have been more insubordinate than the nations +around you; you have not walked in My statutes +or kept My ordinances, nor have you even con- +formed + to the ordinances of the nations around +8 +you.’ + +9 + +10 + +Therefore this is what the Lord GOD says: ‘Be- +hold, I Myself am against you, Jerusalem, and I +will execute judgments among you in the sight of +the nations. +Because of all your abominations, I +will do to you what I have never done before and +will never do again. +As a result, fathers among +you will eat their sons, and sons will eat their fa- +thers. I will execute judgments against you and +Famine, Sword, and Dispersion +scatter all your remnant to every wind.’ +11 + +Therefore as surely as I live, declares the Lord +GOD, because you have defiled My sanctuary +with all your detestable idols and abominations, +I Myself will withdraw My favor; I will not look +12 +upon you with pity, nor will I spare you. + +A third of your people will die by plague or be +consumed by famine within you, a third will fall +by the sword outside your walls, and a third I will +scatter to every wind and unleash a sword be- +a 7 +hind them. +So it will be + +them + +d 16 + +c 16 + +staff + +And when My anger is spent and I have vented +My wrath against them, I will be appeased. And +when I have spent My wrath on them, they will +14 +know that I, the LORD, in My zeal have spoken. + +15 + +So you will be + +I will make you a ruin and a disgrace among + b +the nations around you, in the sight of all who + a reproach and a taunt, +pass by. +a warning and a horror to the nations around +you, when I execute judgments against you in +anger, wrath, and raging fury. I, the LORD, have +16 +spoken. + + c + + d + +17 + +When I shower you + + with the deadly arrows of +famine and destruction that I will send to destroy +you, I will intensify the famine against you and +cut off your supply +I will send famine + of food. +and wild beasts against you, and they will leave +you childless. Plague and bloodshed will sweep +through you, and I will bring a sword against you. +Judgment against Idolatry +I, the LORD, have spoken.” +(Deuteronomy 4:15–31 ; Deuteronomy 12:29–32) + +6 + +2 + +And the word of the LORD came to me, say- +“Son of man, set your face against the +ing, +3 +mountains of Israel and prophesy against them. + +4 + +You are to say: ‘O mountains of Israel, hear the +word of the Lord GOD! This is what the Lord GOD +says to the mountains and hills, to the ravines +and valleys: I am about to bring a sword against +you, and I will destroy your high places. +Your al- +tars will be demolished and your incense altars +will be smashed; and I will cast down your slain +before your idols. +I will lay the corpses of the Is- +raelites before their idols and scatter your bones +6 +around your altars. + +5 + +Wherever you live, the cities will be laid waste +and the high places will be demolished, so that +your altars will be laid waste and desecrated, +your idols smashed and obliterated, your incense +7 +altars cut down, and your works blotted out. +The slain will fall among you, and you will know + +A Remnant to Be Blessed +that I am the LORD. +8 + +Yet I will leave a remnant, for some of you will +escape the sword when you are scattered among +9 +the nations and throughout the lands. + +Then in the nations to which they have been +carried captive, your survivors will remember + +My ordinances; you have even conformed + +b 15 + +Some Hebrew manuscripts and Syriac +Hebrew + +Hebrew + +DSS, LXX, Syriac, and Vulgate; MT + + 748 | Ezekiel 6:10 + +Me—how I have been grieved by their adulter- +ous hearts that turned away from Me, and by +their eyes that lusted after idols. So they will +loathe themselves for the evil they have done and +for all their abominations. +And they will know +that I am the LORD; I did not declare in vain that +11 +I would bring this calamity upon them. + +10 + +12 + +This is what the Lord GOD says: Clap your +hands, stomp your feet, and cry out “Alas!” be- +cause of all the wicked abominations of the +house of Israel, who will fall by sword and famine +and plague. +He who is far off will die by the +plague, he who is near will fall by the sword, and +he who remains will die by famine. So I will vent +13 +My fury upon them. + +14 + +Then you will know that I am the LORD, when +their slain lie among their idols around their al- +tars, on every high hill, on all the mountaintops, +and under every green tree and leafy oak—the +places where they offered fragrant incense to all +their idols. +I will stretch out My hand against +a +them, and wherever they live I will make the land +a desolate waste, from the wilderness to Diblah. +The Hour of Doom +Then they will know that I am the LORD.’ + +” + +7 + +2 + +And the word of the LORD came to me, say- +“O son of man, this is what the Lord +ing, + +GOD says to the land of Israel: + +‘The end! The end has come +3 + +upon the four corners of the land. + +The end is now upon you, + +The time has come; +the day is near; + +there is panic on the mountains +8 +instead of shouts of joy. + +Very soon I will pour out My wrath upon you + +and vent My anger against you; +I will judge you according to your ways + +9 + +and repay you for all your abominations. + +I will not look on you with pity, + +nor will I spare you, + +but I will punish you for your ways + +and for the abominations among you. +Then you will know that it is I, the LORD, + +10 + +who strikes the blow. + +Behold, the day is here! + +It has come! +Doom has gone out, + +11 + +the rod has budded, +arrogance has bloomed. + +c + +Their violence has grown into a rod + +to punish their wickedness. + +None of them will remain: +none of their multitude, + +12 + +none of their wealth, + +and nothing of value. + +The time has come; + +the day has arrived. +Let the buyer not rejoice + +13 + +and the seller not mourn, +for wrath is upon the whole multitude. + +The seller will surely not recover what + +and I will unleash My anger against you. + +I will judge you according to your ways + +4 + +he sold + +while both remain alive. + +and repay you for all your abominations. + +For the vision concerning the whole + +I will not look on you with pity, + +nor will I spare you, + +but I will punish you for your ways + +and for the abominations among you. + +5 + +Then you will know that I am the LORD.’ + +This is what the Lord GOD says: + + b + +‘Disaster! An unprecedented disaster + +— + +6 + +behold, it is coming! + +The end has come! + +The end has come! + +It has roused itself against you. + +7 + +multitude +will not be revoked, + +and because of their iniquity, + +The Desolation of Israel + +not one of them will preserve his life. + +14 + +They have blown the trumpet + +and made everything ready, + +15 + +but no one goes to war, + +for My wrath is upon the whole multitude. + +The sword is outside; + +plague and famine are within. + +Behold, it has come! +Doom has come to you, + +a 14 + +O inhabitants of the land. + +Those in the country will die by the sword, +and those in the city will be devoured +b 5 +by famine and plague. + +A unique disaster + +Riblah + +c 11 +Or + +The violence has grown + +, as in most + +Disaster after disaster + +Most Hebrew manuscripts; Vulgate and a few Hebrew manuscripts + +into a rod of wickedness +Hebrew manuscripts; some Hebrew manuscripts and Syriac + +Literally + + 16 + +The survivors will escape + +17 + +and live in the mountains, +moaning like doves of the valley, +each for his own iniquity. + +18 + +Every hand will go limp, + +and every knee will turn to water. + +They will put on sackcloth, + +and terror will overwhelm them. + +Shame will cover all their faces, + +and all their heads will be shaved. + +19 + +They will throw their silver into the streets, + +and their gold will seem unclean. +Their silver and gold cannot save them +in the day of the wrath of the LORD. + +They cannot satisfy their appetites + +or fill their stomachs with wealth, + +20 + +for it became the stumbling block +that brought their iniquity. + +His beautiful ornaments + +they transformed into pride + +and used them to fashion + +their vile images and detestable idols. + +21 + +Therefore I will make these + +into something unclean for them. + +And I will hand these things over + +as plunder to foreigners + +22 + +and loot to the wicked of the earth, + +who will defile them. + +I will turn My face away from them, + +and they will defile My treasured place. + +23 + +Violent men will enter it, +and they will defile it. + +Forge the chain, + +24 + +for the land is full of crimes of bloodshed, +and the city is full of violence. + +So I will bring the most wicked of nations +to take possession of their houses. + +I will end the pride of the mighty, + +25 + +and their holy places will be profaned. + +26 + +Anguish is coming! + +They will seek peace, but find none. + +Disaster upon disaster will come, + +and rumor after rumor. + +Then they will seek a vision from a prophet, +but instruction from the priests will + +27 + +perish, + +as will counsel from the elders. + +The king will mourn, + +the prince will be clothed with despair, +and the hands of the people of the land +as glowing metal + +gate of the altar + +b 5 +will tremble. + +a 2 + +Or + +Or + +Ezekiel 8:11 | 749 + +I will deal with them according to their + +conduct, + +and I will judge them by their own + +standards. + +The Vision of Idolatry in the Temple + +Then they will know that I am the LORD.’ + +” + +8 + +In the sixth year, on the fifth day of the sixth +month, I was sitting in my house, and the el- +ders of Judah were sitting before me; and there +2 +the hand of the Lord GOD fell upon me. + +Then I looked and saw a figure like that of a +man. From His waist down His appearance was +a +3 +like fire, and from His waist up He was as bright +He stretched out what +as the gleam of amber. +looked like a hand and took me by the hair of my +head. Then the Spirit lifted me up between earth +and heaven and carried me in visions of God to +Jerusalem, to the entrance of the north gate of the +inner court, where the idol that provokes jeal- +4 +ousy was seated. + +5 + +And there I saw the glory of the God of Israel, +like the vision I had seen in the plain. +“Son of +man,” He said to me, “now lift up your eyes to the +north.” + + b + +So I lifted up my eyes to the north, and in the +entrance north of the Altar Gate + I saw this idol +6 +of jealousy. + +“Son of man,” He said to me, “do you see what +they are doing—the great abominations that the +house of Israel is committing—to drive Me far +from My sanctuary? Yet you will see even greater +7 +abominations.” + +Then He brought me to the entrance to the + +8 +court, and I looked and saw a hole in the wall. + +“Son of man,” He told me, “dig through the wall.” + +So I dug through the wall and discovered a +9 +doorway. + +Then He said to me, “Go in and see the wicked + +10 +abominations they are committing here.” + +So I went in and looked, and engraved all +around the wall was every kind of crawling crea- +11 +ture and detestable beast, along with all the idols +Before them stood sev- +of the house of Israel. +enty elders of the house of Israel, with Jaazaniah +son of Shaphan standing among them. Each had +a censer in his hand, and a fragrant cloud of +incense was rising. + + 750 | Ezekiel 8:12 + +12 + +5 + +“Son of man,” He said to me, “do you see what +the elders of the house of Israel are doing in the +darkness +, each at the shrine of his own idol? For +they are saying, ‘The LORD does not see us; the +13 +LORD has forsaken the land.’ + +” + +Again, He told me, “You will see them commit- + +14 +ting even greater abominations.” + +Then He brought me to the entrance of the +north gate of the house of the LORD, and I saw +15 +women sitting there, weeping for Tammuz. + +a + +“Son of man,” He said to me, “do you see this? +Yet you will see even greater abominations than +16 +these.” + +So He brought me to the inner court of the +house of the LORD, and there at the entrance to +the temple of the LORD, between the portico and +the altar, were about twenty-five men with their +backs to the temple of the LORD and their faces +toward the east; and they were bowing to the +17 +east in worship of the sun. + +“Son of man,” He said to me, “do you see this? +Is it not enough for the house of Judah to commit +the abominations they are practicing here, that +they must also fill the land with violence and con- +tinually provoke Me to anger? Look, they are +There- +even putting the branch to their nose! +fore I will respond with wrath. I will not look on +them with pity, nor will I spare them. Although +they shout loudly in My ears, I will not listen to +Execution of the Idolaters +them.” + +18 + +9 + +Then I heard Him call out in a loud voice, +saying, “Draw near, O executioners of the +2 +city, each with a weapon of destruction in hand.” + +And I saw six men coming from the direction of +the Upper Gate, which faces north, each with a +weapon of slaughter in his hand. With them was +another man clothed in linen who had a writing +kit at his side. And they came in and stood beside +3 +the bronze altar. + +4 + +Then the glory of the God of Israel rose from +above the cherubim, where it had been, and +moved to the threshold of the temple. And He +called to the man clothed in linen who had the +“Go throughout the city of +writing kit at his side. +Jerusalem,” said the LORD, “and put a mark on +the foreheads of the men sighing and groaning +Sprout of Life +a 14 Tammuz +over all the abominations committed there.” + +6 + +And as I listened, He said to the others, “Follow +him through the city and start killing; do not +Slaughter the old +show pity or spare anyone! +men, the young men and maidens, the women +and children; but do not go near anyone who has +the mark. Now begin at My sanctuary.” + +So they began with the elders who were before +7 +the temple. + +Then He told them, “Defile the temple and fill + +the courts with the slain. Go forth!” + +So they went out and began killing throughout +8 +the city. + +While they were killing, I was left alone. And I +fell facedown and cried out, “Oh, Lord GOD, when +You pour out Your wrath on Jerusalem, will You +9 +destroy the entire remnant of Israel?” + +10 + +He replied, “The iniquity of the house of Israel +and Judah is exceedingly great. The land is full of +bloodshed, and the city is full of perversity. For +they say, ‘The LORD has forsaken the land; the +But as for Me, I will not +LORD does not see.’ +look on them with pity, nor will I spare them. I +will bring their deeds down upon their own +11 +heads.” + +Then the man clothed in linen with the writing +kit at his side reported back, “I have done as You +God’s Glory Exits the Temple +commanded.” + +10 + +2 + +And I looked and saw above the expanse, +above the heads of the cherubim, the +And the LORD +likeness of a throne of sapphire. +said to the man clothed in linen, “Go inside the +wheelwork beneath the cherubim. Fill your +hands with burning coals from among the cheru- +bim and scatter them over the city.” And as I +3 +watched, he went in. + +4 + +Now when the man went in, the cherubim were +standing on the south side of the temple, and a +Then the glory of +cloud filled the inner court. +the LORD rose from above the cherubim and +stood over the threshold of the temple. The tem- +ple was filled with the cloud, and the court was +filled with the brightness of the glory of the +The sound of the wings of the cherubim +LORD. +could be heard as far as the outer court, like the +6 +voice of God Almighty + + when He speaks. + +5 + + b + +When the LORD commanded the man clothed +in linen, saying, “Take fire from within the + +El-Shaddai + +b 5 + +, meaning + +, was a Sumerian god of fertility. + +Hebrew + + 7 + +wheelwork, from among the cherubim,” the man +Then one of +went in and stood beside a wheel. +the cherubim reached out his hand and took +some of the fire that was among them. And he put +it into the hands of the man clothed in linen, who +(The cherubim ap- +received it and went out. +peared to have the form of human hands under +9 +their wings.) + +8 + +11 + +10 + +Then I looked and saw four wheels beside the +cherubim, one wheel beside each cherub. And +As for +the wheels gleamed like a beryl stone. +their appearance, all four had the same form, like +a wheel within a wheel. +When they moved, +they would go in any of the four directions, with- +out turning as they moved. For wherever the +head faced, the cherubim would go in that direc- +12 +tion, without turning as they moved. + +Their entire bodies, including their backs, +hands, and wings, were full of eyes all around, as +I heard the wheels +were their four wheels. +14 +being called “the whirling wheels.” + +13 + +Each of the cherubim had four faces: the first +face was that of a cherub, the second that of a +man, the third that of a lion, and the fourth that +15 +of an eagle. + +16 + +Then the cherubim rose upward. These were +the living creatures I had seen by the River Ke- +bar. +When the cherubim moved, the wheels +moved beside them, and even when they spread +their wings to rise from the ground, the wheels +did not veer away from their side. +When the +cherubim stood still, the wheels also stood still, +and when they ascended, the wheels ascended +with them, for the spirit of the living creatures +18 +was in the wheels. + +17 + +19 + +Then the glory of the LORD moved away from +the threshold of the temple and stood above the +cherubim. +As I watched, the cherubim lifted +their wings and rose up from the ground, with +the wheels beside them as they went. And they +stopped at the entrance of the east gate of the +house of the LORD, with the glory of the God of +20 +Israel above them. + +21 + +These were the living creatures I had seen +beneath the God of Israel by the River Kebar, and +Each had four +I knew that they were cherubim. +22 +faces and four wings, with what looked like +Their faces +human hands under their wings. +looked like the faces I had seen by the River Ke- +a 3 +bar. Each creature went straight ahead. + +cauldron + +Or + +Ezekiel 11:16 | 751 + +Evil in High Places + +11 + +Then the Spirit lifted me up and brought +me to the gate of the house of the LORD +that faces east. And there at the entrance of the +gate were twenty-five men. Among them I saw +Jaazaniah son of Azzur and Pelatiah son of +And +Benaiah, who were leaders of the people. +the LORD said to me, “Son of man, these are the +men who plot evil and give wicked counsel in this +They are saying, ‘Is not the time near to +city. +build houses? The city is the cooking pot, + and +we are the meat.’ +Therefore prophesy against +5 +them; prophesy, O son of man!” + +4 + +2 + +3 + +a + +And the Spirit of the LORD fell upon me and told +me to declare that this is what the LORD says: +“That is what you are thinking, O house of Israel; +6 +and I know the thoughts that arise in your minds. +You have multiplied those you killed in this city + +7 +and filled its streets with the dead. + +8 + +9 + +Therefore this is what the Lord GOD says: The +slain you have laid within this city are the meat, +and the city is the pot; but I will remove you from +it. +You fear the sword, so I will bring the sword +against you, declares the Lord GOD. +I will bring +you out of the city and deliver you into the hands +of foreigners, and I will execute judgments +against you. +You will fall by the sword, and I +will judge you even to the borders of Israel. Then +11 +you will know that I am the LORD. + +10 + +12 + +The city will not be a pot for you, nor will you +be the meat within it. I will judge you even to the +borders of Israel. +Then you will know that I am +the LORD. For you have neither followed My stat- +utes nor practiced My ordinances, but you have +conformed to the ordinances of the nations +A Promise of Restoration (Jeremiah 32:36–44) +around you.” +13 + +Now as I was prophesying, Pelatiah son of +Benaiah died. Then I fell facedown and cried out +in a loud voice, “Oh, Lord GOD, will You bring the +14 +remnant of Israel to a complete end?” + +15 + +Then the word of the LORD came to me, say- +“Son of man, your brothers—your rela- +ing, +tives, your fellow exiles, and + the whole house of +Israel—are those of whom the people of Jerusa- +lem have said, ‘They are far away from the LORD; +16 +this land has been given to us as a possession.’ + +Therefore declare that this is what the Lord +GOD says: ‘Although I sent them far away among +the nations and scattered them among the + + 752 | Ezekiel 11:17 + +countries, yet for a little while I have been a sanc- +tuary for them in the countries to which they +17 +have gone.’ + +Therefore declare that this is what the Lord +GOD says: ‘I will gather you from the peoples and +assemble you from the countries to which you +have been scattered, and I will give back to you +18 +the land of Israel.’ + +19 + +When they return to it, they will remove all its +detestable things and all its abominations. +And +I will give them singleness of heart and put a +20 +new spirit within them; I will remove their heart +of stone and give them a heart of flesh, +so +that they may follow My statutes, keep My ordi- +nances, and practice them. Then they will be My +21 +people, and I will be their God. + +But as for those whose hearts pursue detesta- +ble things and abominations, I will bring their +conduct down upon their own heads, declares +God’s Glory Leaves Jerusalem +the Lord GOD.” +22 + +23 + +Then the cherubim, with the wheels beside +them, spread their wings, and the glory of the +God of Israel was above them. +And the glory of +the LORD rose up from within the city and stood +24 +over the mountain east of the city. + +a + +And the Spirit lifted me up and carried me back + to the exiles in the vision given by +to Chaldea, +25 +the Spirit of God. After the vision had gone up +from me, +I told the exiles everything the LORD +Signs of the Coming Captivity +had shown me. + +12 + +2 + +Then the word of the LORD came to me, +saying, +“Son of man, you are living in a +rebellious house. They have eyes to see but do +not see, and ears to hear but do not hear, for they +3 +are a rebellious house. + +Therefore, son of man, pack your bags for exile. +In broad daylight, set out from your place and go +to another as they watch. Perhaps they will un- +4 +derstand, though they are a rebellious house. +Bring out your baggage for exile by day, as they +watch. Then in the evening, as they watch, go out +5 +like those who go into exile. + +6 + +As they watch, dig through the wall and carry +And as they +your belongings out through it. +watch, lift your bags to your shoulder and take +them out at dusk; cover your face so that you can- +not see the land. For I have made you a sign to +b 11 +Babylonia +a 24 +the house of Israel.” + +‘I am a sign to you.’ Just as I have done + +7 + +So I did as I was commanded. I brought out my +bags for exile by day, and in the evening I dug +through the wall by hand. I took my belongings +out at dusk, carrying them on my shoulder as +8 +they watched. +9 + +And in the morning the word of the LORD came +“Son of man, hasn’t the rebellious +to me, saying, +10 +house of Israel asked you, ‘What are you doing?’ +Tell them that this is what the Lord GOD says: +‘This burden concerns the prince in Jerusalem +11 +and all the house of Israel who are there.’ + +b + +12 + +You are to say, ‘I am a sign to you.’ Just as it +happened here, + so will it be done to them; they +And at dusk the +will go into exile as captives. +prince among them will lift his bags to his shoul- +der and go out. They will dig through the wall to +bring him out. He will cover his face so he cannot +But I will spread My net over him, +see the land. +and he will be caught in My snare. I will bring him +to Babylon, the land of the Chaldeans; yet he will +14 +not see it, and there he will die. + +13 + +15 + +And I will scatter to every wind all the attend- +ants around him and all his troops, and I will +And they +draw a sword to chase after them. +will know that I am the LORD, when I disperse +them among the nations and scatter them +16 +throughout the countries. + +But I will spare a few of them from sword and +famine and plague, so that in the nations to which +they go, they can recount all their abominations. +17 +Then they will know that I am the LORD.” + +18 + +Moreover, the word of the LORD came to me, +“Son of man, eat your bread with trem- +saying, +19 +bling, and drink your water with quivering and +Then tell the people of the land that +anxiety. +this is what the Lord GOD says about those living +in Jerusalem and in the land of Israel: ‘They will +eat their bread with anxiety and drink their +water in dread, for their land will be stripped of +everything in it because of the violence of all who +The inhabited cities will be laid +dwell in it. +waste, and the land will become desolate. Then +The Presumptuous Proverb +you will know that I am the LORD.’ +21 + +20 + +” + +22 + +Again the word of the LORD came to me, say- +“Son of man, what is this proverb that you + +ing, +have in the land of Israel: + +‘The days go by, + +and every vision fails’? + +Or + +Lit. + +; some translators close the quotation after the verse. + + 23 + +10 + +Ezekiel 13:23 | 753 + +Therefore tell them that this is what the Lord +GOD says: ‘I will put an end to this proverb, and +in Israel they will no longer recite it.’ + +24 + +But say to them: ‘The days are at hand when +For there will be +every vision will be fulfilled. +25 +no more false visions or flattering divinations +because I, the LORD, +within the house of Israel, +will speak whatever word I speak, and it will be +fulfilled without delay. For in your days, O rebel- +lious house, I will speak a message and bring it to +26 +pass, declares the Lord GOD.’ +27 + +” + +Furthermore, the word of the LORD came to +“Son of man, take note that the +me, saying, +house of Israel is saying, ‘The vision that he sees +is for many years from now; he prophesies about +28 +the distant future.’ + +Therefore tell them that this is what the Lord +GOD says: ‘None of My words will be delayed any +longer. The message I speak will be fulfilled, de- +Reproof of False Prophets (Micah 2:6–11) +” +clares the Lord GOD.’ + +13 + +2 + +4 + +3 + +Then the word of the LORD came to me, +“Son of man, prophesy against +saying, +the prophets of Israel who are now prophesying. +Tell those who prophesy out of their own imagi- +This is what +nation: Hear the word of the LORD! +the Lord GOD says: Woe to the foolish prophets +who follow their own spirit yet have seen noth- +Your prophets, O Israel, are like foxes +ing. +You did not go up to the gaps +among the ruins. +or restore the wall around the house of Israel so +that it would stand in the battle on the Day of the +6 +LORD. + +5 + +They see false visions and speak lying divina- +tions. They claim, ‘Thus declares the LORD,’ +when the LORD did not send them; yet they wait +7 +for the fulfillment of their message. + +Haven’t you seen a false vision and spoken +a lying divination when you proclaim, ‘Thus +declares the LORD,’ even though I have not spo- +8 +ken? + +9 + +Therefore this is what the Lord GOD says: +Because you have uttered vain words and seen +false visions, I am against you, declares the Lord +My hand will be against the prophets who +GOD. +see false visions and speak lying divinations. +They will not belong to the council of My people +or be recorded in the register of the house of Is- +rael, nor will they enter the land of Israel. Then +you will know that I am the Lord GOD. + +11 + +Because they have led My people astray, say- +ing, ‘Peace,’ when there is no peace, and white- +tell those +washing any flimsy wall that is built, +whitewashing the wall that it will fall. Rain will +12 +come in torrents, I will send hailstones plunging +Surely +down, and a windstorm will burst forth. +when the wall has fallen, you will not be asked, +‘Where is the whitewash with which you covered +13 +it?’ + +14 + +Therefore this is what the Lord GOD says: +In My wrath I will release a windstorm, and in My +anger torrents of rain and hail will fall with de- +I will tear down the wall you +structive fury. +whitewashed and level it to the ground, so that +its foundation is exposed. The city will fall, and +you will be destroyed within it. Then you will +15 +know that I am the LORD. + +And after I have vented My wrath against the +wall and against those who whitewashed it, I will +16 +say to you: ‘The wall is gone, and so are those +those prophets of Israel +who whitewashed it— +who prophesied to Jerusalem and saw a vision of +peace for her when there was no peace, declares +Reproof of False Prophetesses +the Lord GOD.’ +17 + +Now, O son of man, set your face against the +daughters of your people who prophesy out of +18 +their own imagination. Prophesy against them +and tell them that this is what the Lord GOD +says: Woe to the women who sew magic charms +on their wrists and make veils for the heads of +people of every height, in order to ensnare their +19 +souls. Will you ensnare the souls of My people +but preserve your own? +You have profaned Me +among My people for handfuls of barley and +scraps of bread. By lying to My people who would +listen, you have killed those who should not have +20 +died and spared those who should not have lived. + +21 + +Therefore this is what the Lord GOD says: See, +I am against the magic charms with which you +ensnare souls like birds, and I will tear them +from your arms. So I will free the souls you have +ensnared like birds. +I will also tear off your +veils and deliver My people from your hands, so +that they will no longer be prey in your hands. +22 +Then you will know that I am the LORD. + +Because you have disheartened the righteous +with your lies, even though I have caused them +no grief, and because you have encouraged the +wicked not to turn from their evil ways to save +therefore you will no longer see +their lives, + +23 + + 754 | Ezekiel 14:1 + +false visions or practice divination. I will deliver +My people from your hands. Then you will know +Idolatrous Elders Condemned +that I am the LORD.” +(Romans 14:13–23 ; 1 Corinthians 8:1–13) + +14 + +2 +Then some of the elders of Israel came +3 +And the word +and sat down before me. +“Son of man, +of the LORD came to me, saying, +these men have set up idols in their hearts and +put wicked stumbling blocks before their faces. +4 +Should I consult with them in any way? + +Therefore speak to them and tell them that this +is what the Lord GOD says: ‘When any Israelite +sets up idols in his heart and puts a wicked stum- +bling block before his face, and then comes to the +prophet, I the LORD will answer him according +so that I may take hold of +to his great idolatry, +the hearts of the people of Israel. For because of +6 +their idols, they are all estranged from Me.’ + +5 + +7 + +Therefore tell the house of Israel that this is +what the Lord GOD says: ‘Repent and turn away +from your idols; turn your faces away from all +For when any Israelite or +your abominations. +any foreigner dwelling in Israel separates him- +self from Me, sets up idols in his heart, and puts +a wicked stumbling block before his face, and +then comes to the prophet to inquire of Me, I the +I will set My face +LORD will answer him Myself. +against that man and make him a sign and a prov- +erb; I will cut him off from among My people. +9 +Then you will know that I am the LORD. + +8 + +10 + +But if the prophet is enticed to speak a message, +then it was I the LORD who enticed him, and I will +stretch out My hand against him and destroy him +from among My people Israel. +They will bear +their punishment—the punishment of the in- +11 +quirer will be the same as that of the prophet— +in order that the house of Israel may no longer +stray from Me and no longer defile themselves +with all their transgressions. Then they will be +My people and I will be their God, declares the +Four Dire Judgments +Lord GOD.’ +” +12 +13 + + a + +And the word of the LORD came to me, saying, +“Son of man, if a land sins against Me by acting +unfaithfully, and I stretch out My hand against it +to cut off its supply + of food, to send famine upon +14 +it, and to cut off from it both man and beast, +then even if these three men—Noah, Daniel, +and Job—were in it, their righteousness could +a 13 +deliver only themselves, declares the Lord GOD. + +staff + +Hebrew + +15 + +16 + +Or if I send wild beasts through the land to +leave it childless and desolate, with no man pass- +ing through it for fear of the beasts, +then as +surely as I live, declares the Lord GOD, even if +these three men were in it, they could not deliver +their own sons or daughters. They alone would +17 +be delivered, but the land would be desolate. + +Or if I bring a sword against that land and say, +18 +‘Let a sword pass through it,’ so that I cut off from +then as surely as I live, +it both man and beast, +declares the Lord GOD, even if these three men +were in it, they could not deliver their own sons +19 +or daughters. They alone would be delivered. + +20 + +Or if I send a plague into that land and pour out +My wrath upon it through bloodshed, cutting off +then as surely as I +from it both man and beast, +live, declares the Lord GOD, even if Noah, Daniel, +and Job were in it, they could not deliver their +own sons or daughters. Their righteousness +21 +could deliver only themselves. + +For this is what the Lord GOD says: ‘How much +worse will it be when I send against Jerusalem +My four dire judgments—sword, famine, wild +beasts, and plague—in order to cut off from it +22 +both man and beast? + +Yet, behold, some survivors will be left in it— +sons and daughters who will be brought out. +They will come out to you, and when you see +their conduct and actions, you will be comforted +regarding the disaster I have brought upon Jeru- +They +salem—all that I have brought upon it. +will bring you consolation when you see their +conduct and actions, and you will know that it +was not without cause that I have done all these +Jerusalem the Useless Vine +things within it,’ declares the Lord GOD.” + +23 + +15 + +2 + +3 + +Then the word of the LORD came to me, +“Son of man, how does the wood +saying, +of the vine surpass any other branch among the +trees in the forest? +Can wood be taken from it to +make +Or +useful? +can one make from it a peg on which to hang +4 +utensils? + +something + +5 + +No, it is cast into the fire for fuel. The fire de- +vours both ends, and the middle is charred. Can +Even when it was +it be useful for anything? +whole, it could not be made useful. How much +less can it ever be useful when the fire has con- +sumed it and charred it! + + 6 + +14 + +Ezekiel 16:29 | 755 + +7 + +Therefore this is what the Lord GOD says: ‘Like +the wood of the vine among the trees of the for- +est, which I have given to the fire for fuel, so I will +And I will set +give up the people of Jerusalem. +My face against them. Though they may have es- +caped the fire, yet another fire will consume +them. And when I set My face against them, you +8 +will know that I am the LORD. + +Thus I will make the land desolate, because they +Jerusalem’s Unfaithfulness +have acted unfaithfully,’ declares the Lord GOD.” + +16 + +2 + +4 + +3 + +Again the word of the LORD came to me, +saying, +“Son of man, confront Jerusalem +and tell her that this is +with her abominations +what the Lord GOD says to Jerusalem: Your +origin and your birth were in the land of the +Canaanites. Your father was an Amorite and your +On the day of your birth your +mother a Hittite. +cord was not cut, nor were you washed with wa- +ter for cleansing. You were not rubbed with salt +No one cared enough for +or wrapped in cloths. +you to do even one of these things out of compas- +sion for you. Instead, you were thrown out into +the open field, because you were despised on the +6 +day of your birth. + +5 + +7 + +Then I passed by and saw you wallowing in +your blood, and as you lay there in your blood I +said to you, ‘Live!’ There I said to you, ‘Live!’ +I +made you thrive like a plant of the field. You grew +up and matured and became very beautiful. Your +breasts were formed and your hair grew, but you +8 +were naked and bare. + +10 + +Then I passed by and saw you, and you were in- +deed old enough for love. So I spread My cloak +over you and covered your nakedness. I pledged +Myself to you, entered into a covenant with you, +9 +and you became Mine, declares the Lord GOD. +Then I bathed you with water, rinsed off your +blood, and anointed you with oil. +I clothed you +in embroidered cloth and gave you sandals of +fine leather. I wrapped you in fine linen and cov- +ered you with silk. +I adorned you with jewelry, +and I put bracelets on your wrists and a chain +around your neck. +I put a ring in your nose, +earrings on your ears, and a beautiful crown +13 +upon your head. + +12 + +11 + +So you were adorned with gold and silver, and +your clothing was made of fine linen, silk, and +embroidered cloth. You ate fine flour, honey, and +a 29 +oil. You became very beautiful and rose to be + +Babylonia + +Or + +Your fame spread among the nations on +queen. +account of your beauty, for it was perfect in the +splendor I bestowed on you, declares the Lord +15 +GOD. + +16 + +But because of your fame, you trusted in your +beauty and played the harlot. You lavished +your favors on everyone who passed by, and +You took +your beauty was theirs for the asking. +some of your garments and made colorful high +places for yourself, and on them you prostituted +yourself. Such things should not have happened; +17 +never should they have occurred! + +18 + +You also took the fine jewelry of gold and sil- +ver I had given you, and you made male idols +with which to prostitute yourself. +You took +19 +your embroidered garments to cover them, and +And +you set My oil and incense before them. +you set before them as a pleasing aroma the food +I had given you—the fine flour, oil, and honey +that I had fed you. That is what happened, de- +20 +clares the Lord GOD. + +You even took the sons and daughters you +bore to Me and sacrificed them as food to idols. +You +Was your prostitution not enough? +slaughtered My children and delivered them up +22 +through the fire to idols. + +21 + +And in all your abominations and acts of pros- +titution, you did not remember the days of your +youth when you were naked and bare, wallowing +23 +in your own blood. + +24 + +25 + +Woe! Woe to you, declares the Lord GOD. And +you +in addition to all your other wickedness, +built yourself a mound and made yourself a lofty +shrine in every public square. +At the head +of every street you built your lofty shrines and +degraded your beauty. With increasing promis- +26 +cuity, you spread your legs to all who passed by. +You prostituted yourself with your lustful +neighbors, the Egyptians, and increased your +27 +promiscuity to provoke Me to anger. + +28 + +Therefore I stretched out My hand against you +and reduced your portion. I gave you over to the +desire of those who hate you, the daughters of +the Philistines, who were ashamed of your lewd +conduct. +Then you prostituted yourself with +29 +the Assyrians, because you were not yet satisfied. +a +Even after that, you were still not satisfied. +So +you extended your promiscuity to Chaldea, + the +land of merchants—but even with this you were +not satisfied! + + 756 | Ezekiel 16:30 + +30 + +a + + your heart, +31 + +How weak-willed is + + declares the +Lord GOD, while you do all these things, the acts +But when you built +of a shameless prostitute! +your mounds at the head of every street and +made your lofty shrines in every public square, +you were not even like a prostitute, because you +32 +scorned + + payment. + +33 + +34 + +You adulterous wife! You receive strangers +instead of your own husband! +Men give gifts +to all their prostitutes, but you gave gifts to all +your lovers. You bribed them to come to you +So your +from everywhere for your illicit favors. +prostitution is the opposite of that of other +women: No one solicited your favors, and you +paid a fee instead of receiving one; so you are the +Judgment on Jerusalem +very opposite! +35 + +36 + +own head, declares the Lord GOD. Have you not +committed this lewdness on top of all your other +44 +abominations? + +Behold, all who speak in proverbs will quote + +this proverb about you: +45 + +‘Like mother, like daughter.’ + +46 + +You are the daughter of your mother, who +despised her husband and children. You are the +sister of your sisters, who despised their hus- +bands and children. Your mother was a Hittite +and your father an Amorite. +Your older sister +was Samaria, who lived with her daughters to +your north; and your younger sister was Sodom, +47 +who lived with her daughters to your south. +And you not only walked in their ways and +practiced their abominations, but soon you were +48 +more depraved than they were. + +37 + +Therefore, O prostitute, hear the word of the +LORD! +This is what the Lord GOD says: Be- +cause you poured out your wealth and exposed +your nakedness in your promiscuity with your +lovers and with all your detestable idols, and be- +cause of the blood of your children which you +therefore I will surely gather all +gave to them, +the lovers with whom you found pleasure, all +those you loved and all those you hated. I will +gather them against you from all around and +expose you before them, and they will see you +And I will sentence you to +completely naked. +the punishment of women who commit adultery +and those who shed blood; so I will bring upon +39 +you the wrath of your bloodshed and jealousy. + +38 + +40 + +Then I will deliver you into the hands of your +lovers, and they will level your mounds and tear +down your lofty shrines. They will strip off your +clothes, take your fine jewelry, and leave you na- +They will bring a mob against +ked and bare. +you, who will stone you and cut you to pieces +Then they will burn down +with their swords. +your houses and execute judgment against you in +the sight of many women. + +41 + +42 + +I will put an end to your prostitution, and you +So I will lay to +will never again pay your lovers. +rest My wrath against you, and My jealousy will +turn away from you. Then I will be calm and no +43 +longer angry. + +Because you did not remember the days of +your youth, but enraged Me with all these things, +How feverish is your heart, +a 30 +I will surely bring your deeds down upon your +d 57 +of Sodom and her daughters + +b 50 + +49 + +As surely as I live, declares the Lord GOD, your +sister Sodom and her daughters never did as you +Now this was +and your daughters have done. +the iniquity of your sister Sodom: She and her +daughters were arrogant, overfed, and compla- +50 +cent; they did not help the poor and needy. +Thus they were haughty and committed abom- +inations before Me. Therefore I removed them, as +51 +you have seen. + +b + +52 + +Furthermore, Samaria did not commit half the +sins you did. You have multiplied your abomina- +tions beyond theirs, and all the abominations you +have committed have made your sisters appear +righteous. +So now you must bear your dis- +grace, since you have brought justification for +your sisters. For they appear more righteous +than you, because your sins were more vile than +theirs. So you too must bear your shame and dis- +grace, since you have made your sisters appear +53 +righteous. + +c + +But I will restore Sodom and her daughters +from captivity, + as well as Samaria and her +54 +daughters. And I will restore you along with +So you will bear your disgrace and be +them. +55 +ashamed of all you did to comfort them. + +56 + +And your sisters, Sodom with her daughters +and Samaria with her daughters, will return to +their former state. You and your daughters will +Did you not +also return to your former state. +57 +treat your sister Sodom as an object of scorn in +before your wickedness +the day of your pride, +was uncovered? Even so, you are now scorned by +restore the fortunes + and all those around her, +the daughters of Edom +Aram + +as I have seen + +c 53 + + d + +Or + +A few Hebrew manuscripts and LXX; MT + +Or + +Many Hebrew manuscripts and Syriac; most Hebrew manuscripts, LXX, and Vulgate + + 58 + +and by the daughters of the Philistines—all those +You will bear the +around you who despise you. +consequences of your lewdness and your abomi- +The Covenant Remembered +nations, declares the LORD. +59 + +For this is what the Lord GOD says: I will deal +with you according to your deeds, since you have +60 +despised the oath by breaking the covenant. +But I will remember the covenant I made with +you in the days of your youth, and I will establish +Then you +an everlasting covenant with you. +will remember your ways and be ashamed when +you receive your older and younger sisters. I will +give them to you as daughters, but not because of +62 +My covenant with you. + +61 + +63 + +So I will establish My covenant with you, and +so that +you will know that I am the LORD, +when I make atonement for all you have done, +you will remember and be ashamed and never +again open your mouth because of your disgrace, +The Parable of Two Eagles and a Vine +declares the Lord GOD.” +(Matthew 13:24–30) + +17 + +Now the word of the LORD came to me, +“Son of man, pose a riddle; +saying, +and tell + +speak a parable to the house of Israel +them that this is what the Lord GOD says: + +3 + +2 + +a + +‘A great eagle with great wings and long + +pinions, + +full of feathers of many colors, + +came to Lebanon + +4 + +and took away the top of the cedar. + +He plucked off its topmost shoot, + +5 + +carried it to the land of merchants, +and planted it in a city of traders. +He took some of the seed of the land + + b + +and planted it in fertile soil; +he placed it by abundant waters +6 +and set it out like a willow. + +It sprouted and became a spreading vine, +low in height, with branches turned + +toward him; + +yet its roots remained where it stood. +So it became a vine and yielded branches + +7 + +and sent out shoots. + +But there was another great eagle + +with great wings and many feathers. + +And behold, this vine bent its roots + +Ezekiel 17:18 | 757 + +It stretched out its branches to him from + +8 + +its planting bed, +so that he might water it. +It had been planted in good soil + +by abundant waters + +9 + +in order to yield branches and bear fruit + +and become a splendid vine.’ + +So you are to tell them that this is what the Lord + +GOD says: + +‘Will it flourish? + +Will it not be uprooted and stripped of its + +fruit +so that it shrivels? + +All its foliage will wither! + +It will not take a strong arm or many people + +10 + +to pull it up by its roots. + +Even if it is transplanted, + +will it flourish? + +Will it not completely wither when the east + +wind strikes? + +It will wither on the bed where it + +The Parable Explained + +sprouted.’ + +” + +11 +12 + +Then the word of the LORD came to me, saying, +“Now say to this rebellious house: ‘Do you not + +know what these things mean?’ + + c + +13 + +Tell them, ‘Behold, the king of Babylon came to +Jerusalem, carried off its king and officials, and +He +brought them back with him to Babylon. +took a member of the royal family + and made a +covenant with him, putting him under oath. Then +he carried away the leading men of the land, +so +that the kingdom would be brought low, unable +to lift itself up, surviving only by keeping his cov- +15 +enant. + +14 + +But this king rebelled against Babylon by send- +ing his envoys to Egypt to ask for horses and a +large army. Will he flourish? Will the one who +does such things escape? Can he break a cove- +16 +nant and yet escape?’ + +17 + +‘As surely as I live,’ declares the Lord GOD, ‘he +will die in Babylon, in the land of the king who +enthroned him, whose oath he despised and +Pharaoh with his +whose covenant he broke. +mighty army and vast horde will not help him in +battle, when ramps are built and siege walls con- +He despised +structed to destroy many lives. +the oath by breaking the covenant. Seeing that he + +in a field of seed + +b 5 + +18 + +a 3 Pinions +c 13 + +Hebrew + +toward him. +the royal seed + are the outer parts of a bird’s wings, including the flight feathers. + +Hebrew + + 758 | Ezekiel 17:19 + +5 + +gave his hand in pledge yet did all these things, +19 +he will not escape!’ + +Now suppose a man is righteous and does what +6 +is just and right: + +20 + +Therefore this is what the Lord GOD says: ‘As +surely as I live, I will bring down upon his +head My oath that he despised and My covenant +I will spread My net over him +that he broke. +and catch him in My snare. I will bring him to +Babylon and execute judgment upon him there +All +for the treason he committed against Me. + will fall by the sword, and +his choice troops +those who survive will be scattered to every +wind. Then you will know that I, the LORD, have +22 +spoken.’ + +21 + + a + +This is what the Lord GOD says: + +‘I will take a shoot from the lofty top of the + +cedar, + +and I will set it out. + +I will pluck a tender sprig from its topmost + +shoots, + +23 + +and I will plant it on a high and lofty + +mountain. + +I will plant it on the mountain heights + +of Israel + +so that it will bear branches; + +it will yield fruit + +and become a majestic cedar. +Birds of every kind will nest under it, + +24 + +Then all the trees of the field will know + +that I am the LORD. +I bring the tall tree down + +and make the low tree tall. + +I dry up the green tree + +and make the withered tree flourish. + +I, the LORD, have spoken, +The Soul Who Sins Will Die +and I have done it.’ + +” + +18 + +2 + +Then the word of the LORD came to me, +“What do you people mean by +saying, + +quoting this proverb about the land of Israel: + +‘The fathers have eaten sour grapes, + +and the teeth of the children are set on + +edge’? + +4 + +3 + +As surely as I live, declares the Lord GOD, you +will no longer quote this proverb in Israel. +Be- +hold, every soul belongs to Me; both father and +son are Mine. The soul who sins is the one who +a 21 +will die. + +All his fleeing troops + +He does not eat at the mountain + +or look to the idols of the house of Israel. + +He does not defile his neighbor’s wife + +7 + +or approach a woman during her period. + +He does not oppress another, + +but restores the pledge to the debtor. + +He does not commit robbery, + +8 + +but gives his bread to the hungry +and covers the naked with clothing. + +He does not engage in usury +or take excess interest, + +but he withholds his hand from iniquity + +9 + +and executes true justice between men. + +He follows My statutes + +and faithfully keeps My ordinances. + +That man is righteous; +surely he will live, + +10 + +declares the Lord GOD. + +Now suppose that man has a violent son, who +11 +sheds blood or does any of these things, +though the father has done none of them: + +12 + +Indeed, the son eats at the mountain +and defiles his neighbor’s wife. +He oppresses the poor and needy; + +he commits robbery +and does not restore a pledge. + +he commits abominations. + +He engages in usury + +and takes excess interest. + +Will this son live? He will not! Since he has com- +mitted all these abominations, he will surely die; +14 +his blood will be on his own head. + +Now suppose this son has a son who sees all +the sins his father has committed, considers +15 +them, and does not do likewise: + +He does not eat at the mountain + +16 + +or look to the idols of the house of Israel. +He does not defile his neighbor’s wife. + +He does not oppress another, + +or retain a pledge, or commit robbery. + +17 + +He gives his bread to the hungry + b + +and covers the naked with clothing. + +He withholds his hand from harming + +the poor + +and takes no interest or usury. + +b 17 + +He keeps My ordinances + +and follows My statutes. + +He withholds his hand from iniquity + +taking shelter in the shade of its branches. + +13 + +He lifts his eyes to idols; + +Many Hebrew manuscripts; MT + +Hebrew; LXX + + Such a man will not die for his father’s iniquity. +18 +He will surely live. + +As for his father, he will die for his own iniq- +uity, because he practiced extortion, robbed +his brother, and did what was wrong among his +19 +people. + +Yet you may ask, ‘Why shouldn’t the son bear + +the iniquity of his father?’ + +Since the son has done what is just and right, +carefully observing all My statutes, he will surely +20 +live. + +The soul who sins is the one who will die. A son +will not bear the iniquity of his father, and a fa- +ther will not bear the iniquity of his son. The +righteousness of the righteous man will fall upon +him, and the wickedness of the wicked man will +21 +fall upon him. + +22 + +But if the wicked man turns from all the sins +he has committed, keeps all My statutes, and +does what is just and right, he will surely live; he +None of the transgressions he has +will not die. +committed will be held against him. Because of +23 +the righteousness he has practiced, he will live. +Do I take any pleasure in the death of the +wicked? declares the Lord GOD. Wouldn’t I pre- +24 +fer that he turn from his ways and live? + +But if a righteous man turns from his right- +eousness and practices iniquity, committing the +same abominations as the wicked, will he live? +None of the righteous acts he did will be remem- +bered. Because of the unfaithfulness and sin he +25 +has committed, he will die. + +Yet you say, ‘The way of the Lord is not just.’ + +Hear now, O house of Israel: Is it My way that is +26 +unjust? Is it not your ways that are unjust? + +If a righteous man turns from his righteous- +ness and practices iniquity, he will die for this. He +27 +will die because of the iniquity he has committed. + +28 + +But if a wicked man turns from the wickedness +he has committed and does what is just and right, +Because he considered and +he will save his life. +turned from all the transgressions he had com- +29 +mitted, he will surely live; he will not die. + +Yet the house of Israel says, ‘The way of the + +Lord is not just.’ + +30 + +Ezekiel 19:10 | 759 + +31 + +Therefore, O house of Israel, I will judge you, +each according to his ways, declares the Lord +GOD. Repent and turn from all your transgres- +sions, so that your iniquity will not become your +Cast away from yourselves all the +downfall. +transgressions you have committed, and fashion +for yourselves a new heart and a new spirit. Why +32 +should you die, O house of Israel? + +For I take no pleasure in anyone’s death, de- + +A Lament for the Princes of Israel +clares the Lord GOD. So repent and live! + +19 + +2 + +“As for you, take up a lament for the +princes of Israel + +and say: + +‘What was your mother? + +A lioness among the lions! + +She lay down among the young lions; + +3 + +she reared her cubs. + +She brought up one of her cubs, +and he became a young lion. + +After learning to tear his prey, + +4 + +he devoured men. + +When the nations heard of him, +he was trapped in their pit. +With hooks they led him away + +5 + +to the land of Egypt. + +When she saw that she had waited in vain, + +that her hope was lost, +she took another of her cubs + +6 + +and made him a young lion. + +He prowled among the lions, +and became a young lion. +After learning to tear his prey, + +7 + + a + +he devoured men. + +He broke down their strongholds +and devastated their cities. + +The land and everything in it + +8 + +shuddered at the sound of his roaring. + +Then the nations set out against him +from the provinces on every side. + +9 + +They spread their net over him; +he was trapped in their pit. + +With hooks they caged him + +and brought him to the king of Babylon. + +They brought him into captivity + +10 + +so that his roar was heard no longer +on the mountains of Israel. +b + +Your mother was like a vine in your + +Are My ways unjust, O house of Israel? Is it not +your ways that are unjust? +b 10 +He knew their widows +a 7 + +He seized their widows + +vineyard, + +planted by the water; + +in your bloodline + +Or + + or + +Some Heb. mss.; most Hebrew manuscripts + + 760 | Ezekiel 19:11 + +11 + +it was fruitful and full of branches + +because of the abundant waters. +It had strong branches, fit for a ruler’s + +scepter. + +It towered high above the thick + +branches, +conspicuous for its height + +and for its dense foliage. + +12 + +But it was uprooted in fury, +cast down to the ground, +and the east wind dried up its fruit. + +Its strong branches were stripped off + +13 + +and they withered; +the fire consumed them. + +14 + +Now it is planted in the wilderness, + +in a dry and thirsty land. + +Fire has gone out from its main branch + +and devoured its fruit; +on it no strong branch remains +fit for a ruler’s scepter.’ +Israel’s Rebellion in Egypt +This is a lament and shall be used as a lament.” + +20 + +In the seventh year, on the tenth day of +the fifth month, some of the elders of Is- +rael came to inquire of the LORD, and they sat +2 +down before me. +3 + +Then the word of the LORD came to me, saying, +“Son of man, speak to the elders of Israel and +tell them that this is what the Lord GOD says: +Have you come to inquire of Me? As surely as I +live, I will not be consulted by you, declares the +4 +Lord GOD. + +5 + +Will you judge them, will you judge them, son of +man? Confront them with the abominations of +their fathers +and tell them that this is what the +Lord GOD says: On the day I chose Israel, I swore +an oath to the descendants of the house of Jacob +and made Myself known to them in the land of +Egypt. With an uplifted hand I said to them, ‘I am +6 +the LORD your God.’ + +7 + +On that day I swore to bring them out of the +land of Egypt into a land that I had searched out +for them, a land flowing with milk and honey, the +glory of all lands. +And I said to them: ‘Each of +you must throw away the abominations before +his eyes, and you must not defile yourselves with +8 +the idols of Egypt. I am the LORD your God.’ + +But they rebelled against Me and refused to lis- +a 11 +ten. None of them cast away the abominations +See Leviticus 18:5; also in Ezekiel 20:13 and 21. + +9 + +before their eyes, and they did not forsake the +idols of Egypt. So I resolved to pour out My wrath +upon them and vent My anger against them in +the land of Egypt. +But I acted for the sake of My +name, that it should not be profaned in the eyes +of the nations among whom they were living, in +whose sight I had revealed Myself to Israel by +Israel’s Rebellion in the Wilderness +bringing them out of the land of Egypt. +10 + +11 + +a + +So I brought them out of the land of Egypt and +And I gave them +led them into the wilderness. +My statutes and made known to them My ordi- +12 +nances—for the man who does these things will +live by them. +I also gave them My Sabbaths as +a sign between us, so that they would know that +13 +I am the LORD who sanctifies them. + +Yet the house of Israel rebelled against Me in +follow My +the wilderness. They did not +statutes and they rejected My ordinances— +though the man who does these things will live +by them—and they utterly profaned My Sab- +baths. Then I resolved to pour out My wrath +upon them and put an end to them in the wilder- +But I acted for the sake of My name, so +ness. +that it would not be profaned in the eyes of the +15 +nations in whose sight I had brought them out. + +14 + +16 + +Moreover, with an uplifted hand I swore to +them in the wilderness that I would not bring +them into the land that I had given them—a land +flowing with milk and honey, the glory of all +because they kept rejecting My ordi- +lands— +nances, refusing to walk in My statutes, and pro- +17 +faning My Sabbaths; for their hearts continually +Yet I looked on them +went after their idols. +with pity and did not destroy them or bring them +18 +to an end in the wilderness. + +19 + +In the wilderness I said to their children: ‘Do +not walk in the statutes of your fathers or keep +their ordinances or defile yourselves with their +I am the LORD your God; walk in My stat- +idols. +20 +utes, keep My ordinances, and practice them. +Keep My Sabbaths holy, that they may be a sign +between us, so that you may know that I am the +21 +LORD your God.’ + +But the children rebelled against Me. They did +not walk in My statutes or carefully observe My +ordinances—though the man who does these +things will live by them—and they profaned My +Sabbaths. So I resolved to pour out My wrath +upon them and vent My anger against them in + + 22 + +But I withheld My hand and +the wilderness. +acted for the sake of My name, so that it would +not be profaned in the eyes of the nations in +23 +whose sight I had brought them out. + +24 + +However, with an uplifted hand I swore to +them in the wilderness that I would scatter them +among the nations and disperse them through- +For they did not practice My +out the lands. +ordinances, but they rejected My statutes and +profaned My Sabbaths, fixing their eyes on the +25 +idols of their fathers. + +26 + +I also gave them over to statutes that were not +good and ordinances by which they could not +live. +And I pronounced them unclean through +their gifts—the sacrifice of every firstborn in the +fire—so that I might devastate them, in order +Israel’s Rebellion in the Land +that they would know that I am the LORD. +27 + +Therefore, son of man, speak to the house of +Israel, and tell them that this is what the Lord +GOD says: In this way also your fathers blas- +28 +phemed Me by their unfaithfulness against Me. +When I brought them into the land that I swore +to give them and they saw any high hill or leafy +tree, there they offered their sacrifices, pre- +sented offerings that provoked Me, sent up their +fragrant incense, and poured out their drink of- +So I asked them: ‘What is this high +ferings. +place to which you go?’ +30 +(And to this day it is called Bamah. + +29 + +) + +a + +b + +31 + +Therefore tell the house of Israel that this is +what the Lord GOD says: Will you defile your- +selves the way your fathers did, prostituting +When +yourselves with their abominations? +you offer your gifts, sacrificing your sons in the + you continue to defile yourselves with all +fire, +your idols to this day. So should I be consulted by +you, O house of Israel? As surely as I live, declares +32 +the Lord GOD, I will not be consulted by you! + +When you say, ‘Let us be like the nations, like +the peoples of the lands, serving wood and +stone,’ what you have in mind will never come to +Judgment and Restoration +pass. +33 + +Ezekiel 20:47 | 761 + + c +outpoured wrath I will bring you out from the + from the lands to which +peoples and gather you +And I will bring you +you have been scattered. +into the wilderness of the nations, where I will +36 +enter into judgment with you face to face. + +35 + +d + +37 + +Just as I entered into judgment with your fa- +thers in the wilderness of the land of Egypt, + so I +will enter into judgment with you, declares the +I will make you pass under the rod +Lord GOD. +38 +and will bring you into the bond of the covenant. +And I will purge you of those who rebel and +transgress against Me. I will bring them out of the +land in which they dwell, but they will not enter +the land of Israel. Then you will know that I am +39 +the LORD. + +And as for you, O house of Israel, this is what +the Lord GOD says: Go and serve your idols, +every one of you. But afterward, you will surely +listen to Me, and you will no longer defile My holy +40 +name with your gifts and idols. + +For on My holy mountain, the high mountain +of Israel, declares the Lord GOD, there the whole +house of Israel, all of them, will serve Me in the +land. There I will accept them and will require +your offerings and choice gifts, along with all +41 +your holy sacrifices. + +When I bring you from the peoples and gather +you from the lands to which you have been scat- +tered, I will accept you as a pleasing aroma. And +I will show My holiness through you in the sight +of the nations. +Then you will know that I am +the LORD, when I bring you into the land of Is- +43 +rael, the land that I swore to give your fathers. + +42 + +There you will remember your ways and all +the deeds with which you have defiled your- +44 +selves, and you will loathe yourselves for all the +Then you will know, O +evils you have done. +house of Israel, that I am the LORD, when I have +dealt with you for the sake of My name and not +according to your wicked ways and corrupt acts, +A Prophecy against the South +declares the Lord GOD.” +45 +46 + +e +Now the word of the LORD came to me, saying, +“Son of man, set your face toward the south, +preach against it, and prophesy against the forest +Say to the forest of the Negev: +of the Negev. +Hear the word of the LORD! This is what the Lord +GOD says: I am about to ignite in you a fire, and it +will devour all your trees, both green and dry. +receive you +The blazing flame will not be quenched, and by it +toward Teman +LXX + +; see also 2 + +c 34 + +47 + +As surely as I live, declares the Lord GOD, +with a strong hand, an outstretched arm, and +outpoured wrath I will rule over you. +With +high place +a 29 Bamah +a strong hand, an outstretched arm, and +d 36 +. + +Literally + +b 31 + +34 + + means +Corinthians 6:17. + +in the wilderness after bringing them out of Egypt + +making your sons pass through the fire +e 46 + +Or + +Hebrew + + 762 | Ezekiel 20:48 + +48 +every face + + from south to north will be scorched. +Then all people will see that I, the LORD, have + +49 +kindled it; it will not be quenched.” + +Then I said, “Ah, Lord GOD, they are saying of + +God’s Sword of Judgment +me, ‘Is he not just telling parables?’ + +” + +21 + +2 + +3 + +And the word of the LORD came to me, +“Son of man, set your face +saying, +against Jerusalem and preach against the sanctu- +and +aries. Prophesy against the land of Israel +tell her that this is what the LORD says: ‘I am +against you, and I will draw My sword from its +sheath and cut off from you both the righteous +Because I will cut off both the +and the wicked. +righteous and the wicked, My sword will be un- +5 +sheathed against everyone from south to north. +Then all flesh will know that I, the LORD, have +taken My sword from its sheath, not to return it +6 +again.’ + +4 + +7 + +But you, son of man, groan! Groan before their +And +eyes with a broken heart and bitter grief. +when they ask, ‘Why are you groaning?’ you are +to say, ‘Because of the news that is coming. Every +heart will melt, and every hand will go limp. +Every spirit will faint, and every knee will turn to +water.’ Yes, it is coming and it will surely happen, +8 +declares the Lord GOD.” +9 + +Again the word of the LORD came to me, saying, +“Son of man, prophesy and tell them that this is + +what the Lord says: +‘A sword, a sword, + +10 + +sharpened and polished— +it is sharpened for the slaughter, + +polished to flash like lightning! + +11 + +Should we rejoice in the scepter of My son? +The sword despises every such stick. +The sword is appointed to be polished, + +to be grasped in the hand. +It is sharpened and polished, + +12 + +to be placed in the hand of the slayer. + +Cry out and wail, +O son of man, + +for the sword is wielded against My people; +it is against all the princes of Israel! + +a + +13 + +They are tossed to the sword with My people; + +therefore strike your thigh. + +Surely testing will come! + +And what if even the scepter, + +which the sword despises, +does not continue? +beat your breast + +declares the Lord GOD. +’ + +a 12 + +Or + +14 + +‘So then, son of man, + +prophesy and strike your hands together. + +Let the sword strike two times, + +even three. + +It is a sword that slays, + +15 + +a sword of great slaughter +closing in on every side! + +So that their hearts may melt +and many may stumble, + +I have appointed at all their gates + +a sword for slaughter. + +16 + +Yes, it is ready to flash like lightning; + +it is drawn for slaughter. + +Slash to the right; + +17 + +set your blade to the left— +wherever your blade is directed. + +I too will strike My hands together, +and I will satisfy My wrath.’ + + I, the LORD, have spoken.” + +18 +19 + +Then the word of the LORD came to me, saying, +“Now you, son of man, mark out two roads for +the sword of the king of Babylon to take, both +starting from the same land. And make a signpost +Mark +where the road branches off to each city. +out one road for the sword to come against Rab- +bah of the Ammonites, and another against Judah +21 +into fortified Jerusalem. + +20 + +For the king of Babylon stands at the fork in +the road, at the junction of the two roads, to seek +an omen: He shakes the arrows, he consults the +22 +idols, he examines the liver. + +In his right hand appears the portent for Jeru- +salem, where he is to set up battering rams, to +call for the slaughter, to lift a battle cry, to direct +the battering rams against the gates, to build a +ramp, and to erect a siege wall. +It will seem like +a false omen to the eyes of those who have sworn +allegiance to him, but it will draw attention to +24 +their guilt and take them captive. + +23 + +Therefore this is what the Lord GOD says: ‘Be- +cause you have drawn attention to your guilt, +exposing your transgressions, so that your sins +are revealed in all your deeds—because you +have come to remembrance—you shall be taken +25 +in hand. + +And you, O profane and wicked prince of + +Israel, + +the day has come for your final + +punishment.’ + + 26 + +This is what the Lord GOD says: + +‘Remove the turban, + +and take off the crown. + +Things will not remain as they are: + +27 + +Exalt the lowly +and bring low the exalted. + +A ruin, a ruin, + +I will make it a ruin! +And it will not be restored + +belongs, + +until the arrival of Him to whom it +a +to whom I have assigned the right +’ + +of judgment. + +28 + +Now prophesy, son of man, and declare that +this is what the Lord GOD says concerning the +Ammonites and their contempt: + +‘A sword! A sword + +is drawn for slaughter, + +29 + +polished to consume, + +to flash like lightning— + +while they offer false visions for you +and lying divinations about you— + +to be placed on the necks + +of the wicked who are slain, + +whose day has come, + +30 + +the time of their final punishment. + +Return the sword to its sheath! + +In the place where you were created, + +31 + +in the land of your origin, +I will judge you. + +I will pour out My anger upon you; +I will breathe the fire of My fury + +against you; + +32 + +I will hand you over to brutal men, + +skilled in destruction. +You will be fuel for the fire. + +Your blood will stain your own + +land. + +You will not be remembered, + +The Sins of Jerusalem + +for I, the LORD, have spoken.’ + +” + +22 + +2 + +Then the word of the LORD came to me, +“As for you, son of man, will you +saying, +judge her? Will you pass judgment on the city of +3 +bloodshed? Then confront her with all her abom- +and tell her that this is what the Lord +inations +GOD says: ‘O city who brings her own doom by +shedding blood within her walls and making +you are guilty of the blood +idols to defile herself, +a 27 +you have shed, and you are defiled by the idols + +4 + +of Him to whom it rightfully belongs, to whom I have given it. + +Or + +Or + +Ezekiel 22:20 | 763 + +you have made. You have brought your days to a +close and have come to the end of your years. +Therefore I have made you a reproach to the +Those +nations and a mockery to all the lands. +near and far will mock you, O infamous city, full +6 +of turmoil. + +5 + +7 + +See how every prince of Israel within you has +used his power to shed blood. +Father and +mother are treated with contempt. Within your +walls the foreign resident is exploited, the father- +8 +less and the widow are oppressed. + +9 + +You have despised My holy things and profaned +My Sabbaths. +Among you are slanderous men +bent on bloodshed; within you are those who eat +on the mountain shrines and commit acts of in- +10 +decency. + +11 + +In you they have uncovered the nakedness of +their fathers; in you they violate women during +their menstrual impurity. +One man commits +an abomination with his neighbor’s wife; an- +other wickedly defiles his daughter-in-law; and +yet another violates his sister, his own father’s +12 +daughter. + +In you they take bribes to shed blood. You en- +gage in usury, take excess interest, and extort +your neighbors. But Me you have forgotten, de- +13 +clares the Lord GOD. + +15 + +14 + +Now look, I strike My hands together against +your unjust gain and against the blood you have +shed in your midst. +Will your courage endure +or your hands be strong in the day I deal with +you? I, the LORD, have spoken, and I will act. +I +will disperse you among the nations and scatter +you throughout the lands; I will purge your un- +cleanness. +And when you have defiled your- +self + in the eyes of the nations, then you will +The Refining Furnace +know that I am the LORD.’ +” +17 +18 + +16 + + b + +Then the word of the LORD came to me, saying, +“Son of man, the house of Israel has become +dross to Me. All of them are copper, tin, iron, and +lead inside the furnace; they are but the dross of +19 +silver. + +20 + +Therefore this is what the Lord GOD says: ‘Be- +cause all of you have become dross, behold, I will +gather you into Jerusalem. +Just as one gathers +silver, copper, iron, lead, and tin into the furnace +to melt with a fiery blast, so I will gather you in +My anger and wrath, leave you there, and melt +And when I have allotted you your inheritance +you. + +b 16 + + 764 | Ezekiel 22:21 + +21 + +22 + +Yes, I will gather you together and blow on you +with the fire of My wrath, and you will be melted +within the city. +As silver is melted in a furnace, +so you will be melted within the city. Then you +will know that I, the LORD, have poured out My +Israel’s Wicked Leaders +wrath upon you.’ +23 + +” + +24 + +And the word of the LORD came to me, +saying, +“Son of man, say to her, ‘In the day of +indignation, you are a land that has not been +25 +cleansed, upon which no rain has fallen.’ + + a + +The conspiracy of the princes + + in her midst is +lion tearing its prey. They +like a roaring +devour the people, seize the treasures and pre- +26 +cious things, and multiply the widows within her. + +Her priests do violence to My law and profane +My holy things. They make no distinction be- +tween the holy and the common, and they fail to +distinguish between the clean and the unclean. +They disregard My Sabbaths, so that I am pro- +27 +faned among them. + +Her officials within her are like wolves tearing +their prey, shedding blood, and destroying lives +28 +for dishonest gain. + +Her prophets whitewash these deeds by false +visions and lying divinations, saying, ‘This is +what the Lord GOD says,’ when the LORD has not +29 +spoken. + +The people of the land have practiced extor- +tion and committed robbery. They have op- +pressed the poor and needy and have exploited +30 +the foreign resident without justice. + +31 + +I searched for a man among them to repair the +wall and stand in the gap before Me on behalf of +the land, so that I should not destroy it. But I +found no one. +So I have poured out My indig- +nation upon them and consumed them with the +fire of My fury. I have brought their ways down +The Two Adulterous Sisters +upon their own heads, declares the Lord GOD.” + +c + +was named Oholibah. + They became Mine and +gave birth to sons and daughters. As for their +identities, Oholah is Samaria, and Oholibah is +5 +Jerusalem. + +6 + +Oholah prostituted herself while she was still +Mine. She lusted after her lovers, the Assyrians— +warriors +clothed in blue, governors and com- +manders, all desirable young men, horsemen +mounted on steeds. +She offered sexual favors to +all the elite of Assyria. She defiled herself with all +8 +the idols of those for whom she lusted. + +7 + +9 + +10 + +She did not give up the prostitution she began +in Egypt, when men slept with her in her youth, +caressed her virgin bosom, and poured out their +lust upon her. +Therefore I delivered her into the +hands of her lovers, the Assyrians for whom she +lusted. +They exposed her nakedness, seized +her sons and daughters, and put her to the +sword. Thus she became a byword among +11 +women, and they executed judgment against her. + +12 + +Her sister Oholibah saw this, yet in her lust and +prostitution she was more depraved than her sis- +She too lusted after the Assyrians—gover- +ter. +nors and commanders, warriors dressed in +splendor, horsemen riding on steeds, all desira- +And I saw that she too had +ble young men. +defiled herself; both of them had taken the same +14 +path. + +13 + +e + +16 + +But Oholibah carried her prostitution even +d +further. She saw the men portrayed on the wall, +15 +images of the Chaldeans, + engraved in vermilion, +wearing belts on their waists and flowing tur- +bans on their heads; all of them looked like offic- +ers of the Babylonians in Chaldea, + the land of +their birth. +At the sight of them, she lusted for +17 +them and sent messengers to them in Chaldea. +Then the Babylonians came to her, to the bed +of love, and in their lust they defiled her. But after +she had been defiled by them, she turned away in +18 +disgust. + +23 + +2 + +3 + +Again the word of the LORD came to me, +“Son of man, there were two +saying, +and +women, daughters of the same mother, +they played in Egypt, prostituting themselves +from their youth. Their breasts were fondled +The +there, and their virgin bosoms caressed. +her own tent +a 25 +older was named Oholah, + and her sister +the tent is in her + or + +LXX; Hebrew + +c 4 Oholibah + +b 4 Oholah + +prophets + + means + +4 + +b + +d 14 + +e 15 + +19 + +When Oholibah openly prostituted herself and +exposed her nakedness, I turned away from her +in disgust, just as I had turned away from her sis- +ter. +Yet she multiplied her promiscuity, re- +membering the days of her youth, when she had +prostituted herself in the land of Egypt +and +lusted after their lovers, whose genitals were like +those of donkeys and whose emission was like +she worships at a tent shrine +that of stallions. +So you revisited the indecency +she is a tent shrine + +20 + +21 + +adulteress with Assyria. +adulterous wife. + +That is, the Babylonians + +Or + +; also in verse 16 + + means + +Babylonia + or + +, a metaphor for Samaria as an + +, a metaphor for Jerusalem as an + + of your youth, when the Egyptians caressed your +Oholibah to Be Plagued +bosom and pressed your young breasts. +22 + +Therefore, Oholibah, this is what the Lord GOD +says: ‘I will incite your lovers against you, those +from whom you turned away in disgust. And I +23 +will bring them against you from every side— +the Babylonians and all the Chaldeans, the +men of Pekod, Shoa, and Koa, and all the Assyri- +ans with them—all desirable young men, gover- +nors and commanders, officers and men of +24 +renown, mounted on horses. + +a + +25 + +They will come against you with a host of peo- +ples, + with weapons, chariots, and wagons. They +will array themselves against you on every side +with buckler and shield and helmet. I will dele- +gate judgment to them, and they will punish you +according to their own standards. +And I will +set My jealous rage against you, and they will +deal with you in fury. They will cut off your noses +and ears, and your survivors will fall by the +sword. They will seize your sons and daughters, +26 +and your remnant will be consumed by fire. +They will strip off your clothes and take your +fine jewelry. +So I will put an end to your inde- +cency and prostitution, which began in the land +of Egypt, and you will not lift your eyes to them +28 +or remember Egypt anymore.’ + +27 + +29 + +For this is what the Lord GOD says: ‘Surely I +will deliver you into the hands of those you hate, +from whom you turned away in disgust. +They +will treat you with hatred, take all for which you +have worked, and leave you naked and bare, so +that the shame of your prostitution will be ex- +posed. Your indecency and promiscuity +have +brought these things upon you, because you have +prostituted yourself with the nations and defiled +yourself with their idols. +Because you have fol- +lowed the path of your sister, I will put her cup +32 +into your hand.’ + +31 + +30 + +This is what the Lord GOD says: + +‘You will drink your sister’s cup, + +a cup deep and wide. + +33 + +It will bring scorn and derision, + +for it holds so much. + +You will be filled with drunkenness + +and grief, + +with a cup of devastation and + +desolation, + +a 24 +the fire + +They will all come against you from the north b 37 +c 40 + +the cup of your sister Samaria. +they sent + +Sabeans + +d 42 + +Ezekiel 23:47 | 765 + +34 + +You will drink it and drain it; +you will dash it to pieces, + +and tear your breasts. + +For I have spoken,’ declares the Lord GOD. + +35 + +Therefore this is what the Lord GOD says: ‘Be- +cause you have forgotten Me and have cast Me +behind your back, you must bear the conse- +Judgment on Both Sisters +quences of your indecency and prostitution.’ +36 + +” + +37 + +Then the LORD said to me: “Son of man, +will you pass judgment against Oholah and +Oholibah? Then declare to them their abomina- +For they have committed adultery, and +tions. +blood is on their hands. They have committed +adultery with their idols. They have even sacri- +ficed their children, whom they bore to Me, in the +38 +fire + + as food for their idols. + + b + +They have also done this to Me: On that very +39 +same day, they defiled My sanctuary and pro- +faned My Sabbaths. +On the very day they +slaughtered their children for their idols, they +entered My sanctuary to profane it. Yes, they did +40 +this inside My house. + + c + +41 + +Furthermore, you sisters sent + + messengers for +men who came from afar; and behold, when they +arrived, you bathed for them, painted your eyes, +You sat on +and adorned yourself with jewelry. +42 +a couch of luxury with a table spread before it, on +ac- +which you had set My incense and My oil, +companied by the sound of a carefree crowd. +Drunkards + were brought in from the desert +along with men from the rabble, who put brace- +lets on your wrists and beautiful crowns on your +43 +head. + + d + +Then I said of her who had grown old in adul- +teries: ‘Now let them use her as a prostitute, for +44 +that is all she is!’ + +45 + +And they slept with her as with a prostitute; +they slept with Oholah and Oholibah, those lewd +But righteous men will sentence them +women. +to the punishment of those who commit adultery +and bloodshed, because they are adulteresses +46 +with blood on their hands. + +47 + +This is what the Lord GOD says: ‘Bring a mob +against them and consign them to terror and +The mob will stone them and cut +plunder. +them down with their swords. They will kill their + +passed their children, whom they bore to Me, through + +LXX + +Hebrew + +Or + +Literally + + 766 | Ezekiel 23:48 + +49 + +48 +sons and daughters and burn down their houses. +So I will put an end to indecency in the land, +and all the women will be admonished not to im- +They will repay you for +itate your behavior. +your indecency, and you will bear the conse- +quences of your sins of idolatry. Then you will +The Parable of the Cooking Pot +” +know that I am the Lord GOD.’ + +24 + +2 + +In the ninth year, on the tenth day of the +tenth month, the word of the LORD came +“Son of man, write down today’s +to me, saying, +3 +date, for on this very day the king of Babylon has +Now speak a parable to +laid siege to Jerusalem. +this rebellious house and tell them that this is +what the Lord GOD says: + +‘Put the pot on the fire; + +4 + +put it on and pour in the water. + +Put in the pieces of meat, +every good piece— + +thigh and shoulder— +5 + +fill it with choice bones. +Take the choicest of the flock + +and pile the fuel beneath it. + +Bring it to a boil + +and cook the bones in it.’ + +6 + +Therefore this is what the Lord GOD says: + +‘Woe to the city of bloodshed, +to the pot now rusted, +whose rust will not come off! + +a + +Empty it piece by piece; + +7 + +cast no lots for its contents. + +For the blood she shed is still within her; +she poured it out on the bare rock; + +she did not pour it on the ground + +8 + +to cover it with dust. +In order to stir up wrath +and take vengeance, + +9 + +I have placed her blood on the bare rock, +so that it would not be covered.’ + +Yes, this is what the Lord GOD says: + +‘Woe to the city of bloodshed! + +10 + +I, too, will pile the kindling high. +Pile on the logs and kindle the fire; + +cook the meat well +and mix in the spices; + +11 + +let the bones be burned. +Set the empty pot on its coals + +until it becomes hot and its copper glows. + +a 6 + +Then its impurity will melt within; + +let no lot fall upon it +its rust will be consumed. + +Or + +12 + +It has frustrated every effort; + +13 + +its thick rust has not been removed, +even by the fire. + +Because of the indecency of your + +uncleanness +I tried to cleanse you, +but you would not be purified + +from your filthiness. +You will not be pure again + +14 + +until My wrath against you has + +subsided. +I, the LORD, have spoken; + +the time is coming, and I will act. + +I will not refrain or show pity, + +nor will I relent. + +I will judge you + +according to your ways and deeds,’ + +Ezekiel’s Wife Dies + +declares the Lord GOD.” + +15 +16 + +Then the word of the LORD came to me, saying, +“Son of man, behold, I am about to take away +the desire of your eyes with a fatal blow. But you +17 +must not mourn or weep or let your tears flow. +Groan quietly; do not mourn for the dead. Put +on your turban and strap your sandals on your +feet; do not cover your lips or eat the bread of +18 +mourners.” + +So I spoke to the people in the morning, and in +the evening my wife died. And the next morning +19 +I did as I had been commanded. + +Then the people asked me, “Won’t you tell us + +20 +what these things you are doing mean to us?” +21 + +So I answered them, “The word of the LORD +came to me, saying: +Tell the house of Israel +that this is what the Lord GOD says: ‘I am about +to desecrate My sanctuary, the pride of your +power, the desire of your eyes, and the delight of +your soul. And the sons and daughters you left +22 +behind will fall by the sword.’ + +Then you will do as I have done: You will not +23 +cover your lips or eat the bread of mourners. +Your turbans will remain on your heads and +your sandals on your feet. You will not mourn or +weep, but you will waste away because of your +24 +sins, and you will groan among yourselves. + +‘Thus Ezekiel will be a sign for you; you will do +everything that he has done. When this happens, +25 +you will know that I am the Lord GOD.’ + +And you, son of man, know that on the day I +take away their stronghold, their pride and joy— + + 27 + +the desire of their eyes which uplifted their +26 +souls—and their sons and daughters as well, +on that day a fugitive will come and tell you the +On that day your mouth will be opened +news. +to him who has escaped; you will speak and no +longer be mute. So you will be a sign to them, and +A Prophecy against Ammon +they will know that I am the LORD.” + +25 + +2 + +4 + +3 + +Then the word of the LORD came to me, +“Son of man, set your face +saying, +against the Ammonites and prophesy against +Tell the Ammonites to hear the word of +them. +the Lord GOD, for this is what the Lord GOD says: +‘Because you exclaimed, “Aha!” when My sanctu- +ary was profaned, when the land of Israel was +laid waste, and when the house of Judah went +therefore I will indeed give you as a +into exile, +possession to the people of the East. They will set +up their camps and pitch their tents among you. +I +They will eat your fruit and drink your milk. +will make Rabbah a pasture for camels, and Am- + a resting place for sheep. Then you will +mon +6 +know that I am the LORD.’ + +5 + + a + +7 + +For this is what the Lord GOD says: ‘Because +you clapped your hands and stomped your feet +and rejoiced over the land of Israel with a heart +full of contempt, +therefore I will indeed stretch +out My hand against you and give you as plunder +to the nations. I will cut you off from the peoples +and exterminate you from the countries. I will +destroy you, and you will know that I am the +A Prophecy against Moab +LORD.’ +8 + + b + +10 + +This is what the Lord GOD says: ‘Because Moab +9 +and Seir + said, “Look, the house of Judah is like +all the other nations,” +therefore I will indeed +expose the flank of Moab beginning with its fron- +tier cities—Beth-jeshimoth, Baal-meon, and +Kiriathaim—the glory of the land. +I will give it +along with the Ammonites as a possession to the +people of the East, so that the Ammonites will no +longer be remembered among the nations. +So +I will execute judgments on Moab, and they will +A Prophecy against Edom +know that I am the LORD.’ +12 + +11 + +This is what the Lord GOD says: ‘Because +Edom acted vengefully against the house of Ju- +13 +dah, and in so doing incurred grievous guilt, +a 5 +therefore this is what the Lord GOD says: I will +the eleventh year +Hebrew + +and the Ammonites +d 7 + +LXX does not include + +Nebuchadrezzar + +b 8 + +Ezekiel 26:10 | 767 + +14 + +stretch out My hand against Edom and cut off +from it both man and beast. I will make it a +wasteland, and from Teman to Dedan they will +fall by the sword. +I will take My vengeance on +Edom by the hand of My people Israel, and they +will deal with Edom according to My anger and +wrath. Then they will know My vengeance, de- +A Prophecy against the Philistines +clares the Lord GOD.’ +15 + +16 + +This is what the Lord GOD says: ‘Because the +Philistines acted in vengeance, taking vengeance +with malice of soul to destroy Judah with ancient +therefore this is what the Lord GOD +hostility, +says: Behold, I will stretch out My hand against +the Philistines, and I will cut off the Cherethites +I will +and destroy the remnant along the coast. +execute great vengeance against them with furi- +ous reproof. Then they will know that I am the +A Prophecy against Tyre (Isaiah 23:1–18) +LORD, when I lay My vengeance upon them.’ + +17 + +” + +26 + +c + +2 + +3 + +4 + +In the eleventh month of the twelfth +year, + on the first day of the month, the +“Son of +word of the LORD came to me, saying, +man, because Tyre has said of Jerusalem, ‘Aha! +The gate to the nations is broken; it has swung +open to me; now that she lies in ruins I will be +therefore this is what the Lord GOD says: +filled,’ +‘Behold, O Tyre, I am against you, and I will raise +up many nations against you, as the sea brings up +They will destroy the walls of Tyre +its waves. +and demolish her towers. I will scrape the soil +She will be- +from her and make her a bare rock. +come a place to spread nets in the sea, for I have +6 +spoken, declares the Lord GOD. She will become +and the villages on her +plunder for the nations, +mainland will be slain by the sword. Then they +7 +will know that I am the LORD.’ + +5 + + d + +8 + +For this is what the Lord GOD says: ‘Behold, I +will bring against Tyre from the north Nebuchad- +nezzar + king of Babylon, king of kings, with +horses and chariots, with cavalry and a great +company of troops. +He will slaughter the vil- +lages of your mainland with the sword; he will +set up siege works against you, build a ramp to +your walls, and raise his shields against you. +He +will direct the blows of his battering rams against +your walls and tear down your towers with his +axes. +His multitude of horses will cover you in +c 1 +their dust. +Nebuchadnezzar +. + +Likely reading of the original Hebrew text; MT + +10 + +In + +9 + +and Seir + +throughout Ezekiel for consistency. + +Hebrew + +, a variant of + + (king of Babylon). The latter spelling is used + + 768 | Ezekiel 26:11 + +A Lament for Tyre + +11 + +When he enters your gates as an army entering a +breached city, your walls will shake from the +The +noise of cavalry, wagons, and chariots. +hooves of his horses will trample all your streets. +He will slaughter your people with the sword, +12 +and your mighty pillars will fall to the ground. +They will plunder your wealth and pillage your +merchandise. They will demolish your walls, tear +down your beautiful homes, and throw your +13 +stones and timber and soil into the water. + +So I will silence the sound of your songs, and +14 +the music of your lyres will no longer be heard. +I will make you a bare rock, and you will be- +come a place to spread the fishing nets. You will +never be rebuilt, for I, the LORD, have spoken, +15 +declares the Lord GOD.’ + +This is what the Lord GOD says to Tyre: ‘Will +not the coastlands quake at the sound of your +downfall, when the wounded groan at the +16 +slaughter in your midst? + +All the princes of the sea will descend from +their thrones, remove their robes, and strip off +their embroidered garments. Clothed with ter- +ror, they will sit on the ground, trembling every +Then they will +moment, appalled over you. +lament for you, saying, + +17 + +“How you have perished, O city of renown + +inhabited by seafaring men— +she who was powerful on the sea, + + a + +18 + +along with her people, + +who imposed terror on all peoples! + +Now the coastlands tremble + +on the day of your downfall; + +the islands in the sea + +19 + +are dismayed by your demise.” + +’ + +20 + +For this is what the Lord GOD says: ‘When I +make you a desolate city like other deserted cit- +ies, and when I raise up the deep against you so +that the mighty waters cover you, +then I will +bring you down with those who descend to the +Pit, to the people of antiquity. I will make you +dwell in the earth below like the ancient ruins, +with those who descend to the Pit, so that you +21 + in +will no longer be inhabited or set in splendor +I will make you an object +the land of the living. +of horror, and you will be no more. You will be +sought, but will never be found,’ declares the +a 17 +Lord GOD.” +e 6 +Or + +on all her inhabitants + +or take your place + +Kittim + +b 20 + +f 13 + + b + +LXX +That is, Greece + +Hebrew + +27 + +2 + +Then the word of the LORD came to me, +3 +saying, +“Now you, son of man, take up a +lament for Tyre. +Tell Tyre, who dwells at the +gateway to the sea, merchant of the peoples on +many coasts, that this is what the Lord GOD says: + +You have said, O Tyre, + +4 + +‘I am perfect in beauty.’ + +5 + +Your borders are in the heart of the seas; +your builders perfected your beauty. + +d + + c + +They constructed all your planking + +with cypress + + from Senir. + +They took a cedar from Lebanon + +6 + +to make a mast for you. + +Of oaks from Bashan + +they made your oars; + + e + +of wood from the coasts of Cyprus + +7 + +they made your deck, inlaid with ivory. + +Of embroidered fine linen from Egypt + +they made your sail, +which served as your banner. + +Of blue and purple from the coasts of Elishah + +8 + +they made your awning. + +The men of Sidon and Arvad +were your oarsmen. +Your men of skill, O Tyre, + +9 + +were there as your captains. +The elders of Gebal were aboard as + +shipwrights, +repairing your leaks. + +All the ships of the sea and their sailors +came alongside to barter for your + +10 + +merchandise. + +Men of Persia, Lydia, and Put + +served as warriors in your army. + +They hung their shields and helmets on your + +11 + +walls; + +they gave you splendor. + +Men of Arvad and Helech + +manned your walls all around, + +and the men of Gammad +were in your towers. + +They hung their shields around your walls; +12 + +they perfected your beauty. + +Tarshish was your merchant because of +your great wealth of goods; they exchanged +13 +silver, iron, tin, and lead for your wares. + +f + +c 5 + +Javan, + + Tubal, and Meshech were your +merchants. They exchanged slaves and +bronze utensils for your merchandise. +Or + +That is, Mount Hermon + +juniper + +pine + +d 5 + + or + + or + +fir + + 14 + +The men of Beth-togarmah exchanged +horses, war horses, and mules for your + a +15 +wares. + +The men of Dedan + + were your clients; +many coastlands were your market; they +16 +paid you with ivory tusks and ebony. + + b + +Aram + + was your customer because of your +many products; they exchanged turquoise, +purple, embroidered work, fine linen, coral, +17 +and rubies for your wares. + +Judah and the land of Israel traded with +you; they exchanged wheat from Minnith, +cakes and honey, oil and balm for your +18 +merchandise. + +c + +19 + +Because of your many products and your +great wealth of goods, Damascus traded +with you wine from Helbon, wool from +and casks of wine from Izal for +Zahar, + d +your wares. + Wrought iron, cassia, and +e +sweet cane + were exchanged for your +20 +merchandise. + +Dedan was your merchant in saddlecloths + +21 +for riding. + +Arabia and all the princes of Kedar were +your customers, trading in lambs, rams, and +22 +goats. + +The merchants of Sheba and Raamah +traded with you; for your wares they ex- +changed gold, the finest of all spices, and +23 +precious stones. + +24 + +Haran, Canneh, and Eden traded with you, +and so did the merchants of Sheba, Asshur, +In your marketplace they +and Chilmad. +traded with you fine garments of blue, em- +broidered work, and multicolored rugs with + f +cords tightly twisted and knotted. + +25 + +The ships of Tarshish + +carried your merchandise. + +26 + +And you were filled with heavy cargo + +in the heart of the sea. + +Your oarsmen have brought you + +onto the high seas, + +27 + +but the east wind will shatter you + +in the heart of the sea. + +Your wealth, wares, and merchandise, + +your sailors, captains, and shipwrights, +your merchants and all the warriors within + +Ezekiel 28:2 | 769 + +28 + +will sink into the heart of the sea +on the day of your downfall. + +29 + +The countryside will shake + +when your sailors cry out. + +All who handle the oars + +will abandon their ships. + +30 + +The sailors and all the captains of the sea + +will stand on the shore. + +They will raise their voices for you + +and cry out bitterly. + +31 + +They will throw dust on their heads + +and roll in ashes. + +They will shave their heads for you + +and wrap themselves in sackcloth. + +They will weep over you + +32 + +with anguish of soul and bitter mourning. + +As they wail and mourn over you, + +they will take up a lament for you: + +33 + +‘Who was ever like Tyre, + +silenced in the middle of the sea? + +When your wares went out to sea, +you satisfied many nations. +You enriched the kings of the earth +with your abundant wealth and + +34 + +merchandise. + +Now you are shattered by the seas +in the depths of the waters; + +35 + +your merchandise and the people among you + +have gone down with you. +All the people of the coastlands + +36 + +are appalled over you. +Their kings shudder with fear; +their faces are contorted. + +Those who trade among the nations + +hiss at you; + +you have come to a horrible end + +A Prophecy against the Ruler of Tyre + +and will be no more.’ + +” + +28 + +2 + +And the word of the LORD came to me, +“Son of man, tell the ruler of +saying, + +Tyre that this is what the Lord GOD says: + +Your heart is proud, + +and you have said, + +‘I am a god; + +I sit in the seat of gods +in the heart of the sea.’ + +Yet you are a man and not a god, + +a 15 + +Rhodes + +b 16 + +you, + +with all the other people on board, + +—and Dan and Javan from Uzal (traded) for your wares + +though you have regarded your heart +as that of a god. +e 19 +calamus +d 19 + +were among your + +Edom + +c 19 + +Hebrew; LXX +f 25 + +merchandise +reading; MT + +A fleet of trading ships + +Most Hebrew manuscripts; some Hebrew manuscripts and Syriac + +Probable + +Or + +Or + +Or + + 770 | Ezekiel 28:3 + +3 + +15 + +4 + +Behold, you are wiser than Daniel; +no secret is hidden from you! +By your wisdom and understanding +you have gained your wealth + +5 + +and amassed gold and silver +for your treasuries. + +By your great skill in trading + +you have increased your wealth, + +but your heart has grown proud +6 + +because of it. + +Therefore this is what the Lord GOD says: + +Because you regard your heart +7 + +as the heart of a god, + +behold, I will bring foreigners against you, + +the most ruthless of nations. + +They will draw their swords + +8 + +9 + +against the beauty of your wisdom +and will defile your splendor. +They will bring you down to the Pit, +and you will die a violent death +in the heart of the seas. + +Will you still say, ‘I am a god,’ + +in the presence of those who slay you? + +You will be only a man, not a god, + +10 + +in the hands of those who wound you. +You will die the death of the uncircumcised + +at the hands of foreigners. + +declares the Lord GOD.” + +For I have spoken, + +A Lament for the King of Tyre + +11 + +12 + +Again the word of the LORD came to me, say- +ing, +“Son of man, take up a lament for +the king of Tyre and tell him that this is what the +Lord GOD says: + +From the day you were created + +16 + +you were blameless in your ways— +until wickedness was found in you. + +By the vastness of your trade, + +you were filled with violence, and you + +sinned. + +So I drove you in disgrace + +from the mountain of God, + +17 + +and I banished you, O guardian cherub, + +from among the fiery stones. + +Your heart grew proud of your beauty; +you corrupted your wisdom because + +of your splendor; +so I cast you to the earth; + +18 + +I made you a spectacle before kings. + +By the multitude of your iniquities + +and the dishonesty of your trading +you have profaned your sanctuaries. + +So I made fire come from within you, + +and it consumed you. + +19 + +I reduced you to ashes on the ground +in the eyes of all who saw you. + +All the nations who know you +are appalled over you. + +You have come to a horrible end + +A Prophecy against Sidon +” + +and will be no more.’ + +20 +21 + +22 + +Then the word of the LORD came to me, saying, +“Son of man, set your face against Sidon and +And you are to declare + +prophesy against her. +that this is what the Lord GOD says: + +‘Behold, I am against you, O Sidon, + +and I will be glorified within you. + +They will know that I am the LORD + +23 + +when I execute judgments against her +and demonstrate My holiness through her. + +13 + +‘You were the seal of perfection, + +full of wisdom and perfect in beauty. + +You were in Eden, + +the garden of God. + + a + +I will send a plague against her + +and shed blood in her streets; + +the slain will fall within her, + +Every kind of precious stone adorned you: + +while the sword is against her on every + +ruby, topaz, and diamond, + +b +beryl, onyx, and jasper, + +sapphire, + + turquoise, and emerald. + +Your mountings and settings were crafted in + +14 + +gold, + +prepared on the day of your creation. + +You were anointed as a guardian cherub, + +for I had ordained you. + +You were on the holy mountain of God; +you walked among the fiery stones. + +a 13 + +side. + +24 + +Then they will know that I am the LORD. + +For the people of Israel will no longer face a +pricking brier or a painful thorn from all around +them who treat them with contempt. Then they +The Restoration of Israel (Jeremiah 30:1–17) +will know that I am the Lord GOD.’ +25 + +This is what the Lord GOD says: ‘When I gather +the house of Israel from the peoples among + +lapis lazuli + +b 13 + +The precise identification of some of these gemstones is uncertain. + +Or + + whom they have been scattered, I will show My- +self holy among them in the sight of the nations. + +26 + +Then they will dwell in their own land, which I +have given to My servant Jacob. +And there they +will dwell securely, build houses, and plant vine- +yards. They will dwell securely when I execute +judgments against all those around them who +treat them with contempt. Then they will know +A Prophecy against Pharaoh +” +that I am the LORD their God.’ + +29 + +2 + +In the tenth year, on the twelfth day of +the tenth month, the word of the LORD +“Son of man, set your face +came to me, saying, +3 +against Pharaoh king of Egypt and prophesy +Speak to him +against him and against all Egypt. +and tell him that this is what the Lord GOD says: + +Behold, I am against you, + +O Pharaoh king of Egypt, + +O great monster who lies +among his rivers, + +who says, ‘The Nile is mine; + +4 + +I made it myself.’ + +But I will put hooks in your jaws + +and cause the fish of your streams +to cling to your scales. + +5 + +I will haul you up out of your rivers, +and all the fish of your streams +will cling to your scales. +I will leave you in the desert, + +you and all the fish of your streams. + +You will fall on the open field +and will not be taken away +or gathered for burial. + +I have given you as food + +6 + +to the beasts of the earth +and the birds of the air. +Then all the people of Egypt + +will know that I am the LORD. + +For you were only a staff of reeds + +7 + +to the house of Israel. + +When Israel took hold of you with their + +hands, + +you splintered, tearing all their shoulders; + +when they leaned on you, + +a + +you broke, and their backs were + +The Desolation of Egypt + +wrenched. + +8 + +Ezekiel 29:21 | 771 + +9 + +The land of Egypt will become a +man and beast. +desolate wasteland. Then they will know that I +am the LORD. +10 +Because you said, ‘The Nile is mine; I made it,’ +therefore I am against you and against your +rivers. I will turn the land of Egypt into a ruin, a +b +desolate wasteland from Migdol to Syene, and as +No foot of man or +far as the border of Cush. +beast will pass through, and it will be uninhab- +12 +ited for forty years. + +11 + +I will make the land of Egypt a desolation +among desolate lands, and her cities will lie des- +olate for forty years among the ruined cities. And +I will disperse the Egyptians among the nations +13 +and scatter them throughout the countries. + +14 + +For this is what the Lord GOD says: At the end +of forty years I will gather the Egyptians from the + c +I will re- +nations to which they were scattered. +store Egypt from captivity + and bring them back +to the land of Pathros, the land of their origin. +15 +There they will be a lowly kingdom. + +16 + +Egypt will be the lowliest of kingdoms and will +never again exalt itself above the nations. For I +will diminish Egypt so that it will never again +Egypt will never again be +rule over the nations. +an object of trust for the house of Israel, but will +remind them of their iniquity in turning to the +Egyptians. Then they will know that I am the +Egypt the Reward of Nebuchadnezzar +Lord GOD.” +17 + +18 + +In the twenty-seventh year, on the first day of +the first month, the word of the LORD came to +“Son of man, Nebuchadnezzar king +me, saying, +of Babylon caused his army to labor strenuously +against Tyre. Every head was made bald and +every shoulder made raw. But he and his army +received no wages from Tyre for the labor they +19 +expended on it. + +Therefore this is what the Lord GOD says: I will +give the land of Egypt to Nebuchadnezzar king of +Babylon, who will carry off its wealth, seize its +spoil, and remove its plunder. This will be the +I have given him the land +wages for his army. +of Egypt as the reward for his labor, because it +21 +was done for Me, declares the Lord GOD. + +20 + +In that day I will cause a horn to sprout for the +house of Israel, and I will open your mouth to +speak among them. Then they will know that I +am the LORD.” + +b 10 + +Therefore this is what the Lord GOD says: I will +a 7 +bring a sword against you and cut off from you +c 14 + +restore the fortunes of Egypt + +and you caused their loins to shake. + +Syriac (see also LXX and Vulgate); Hebrew +Or + +That is, the upper Nile region + + 772 | Ezekiel 30:1 + +A Lament for Egypt + +30 + +2 + +Again the word of the LORD came to me, +“Son of man, prophesy and de- +saying, + +clare that this is what the Lord GOD says: + +Wail, ‘Alas +3 + +for that day!’ +For the day is near, + +the Day of the LORD is near. + +a + +It will be a day of clouds, +4 + +a time of doom for the nations. + + b + +A sword will come against Egypt, + +and there will be anguish in Cush + +when the slain fall in Egypt, +its wealth is taken away, +5 +and its foundations are torn down. + +c + +Cush, Put, and Lud, + +and all the various peoples, +as well as Libya and the men of the + +6 + +covenant land, + +will fall with Egypt by the sword. + +For this is what the LORD says: + +The allies of Egypt will fall, + + d +and her proud strength will collapse. + +From Migdol to Syene + +they will fall by the sword within her, + +declares the Lord GOD. + +7 + +8 + +They will be desolate among desolate lands, +and their cities will lie among ruined + +cities. + +Then they will know that I am the LORD + +9 + +when I set fire to Egypt +and all her helpers are shattered. + +On that day messengers will go out from Me +in ships to frighten Cush out of complacency. +Anguish will come upon them on the day of +Egypt’s doom. + + For it is indeed coming. + +e + +10 + +This is what the Lord GOD says: + +I will put an end to the hordes of Egypt + +11 + +by the hand of Nebuchadnezzar king of + +Babylon. + +He and his people with him, + +the most ruthless of the nations, +will be brought in to destroy the land. +They will draw their swords against Egypt + +12 + +and fill the land with the slain. + +a 3 + +I will make the streams dry up + +and sell the land to the wicked. +e 9 +Hebrew does not include +Sin + +h 15 + +. + +of doom + +b 4 + +Aswan; see Isaiah 49:12 +15 and 16 +Hebrew + +Hebrew +; also in verse 16 + +the day of Egypt + +f 13 + +By the hands of foreigners I will bring + +desolation + +upon the land and everything in it. + +I, the LORD, have spoken. + +13 + +This is what the Lord GOD says: + +f + +I will destroy the idols + +and put an end to the images in Memphis. + +There will no longer be a prince in Egypt, + +14 + +and I will instill fear in that land. + +15 + +I will lay waste Pathros, +set fire to Zoan, +and execute judgment on Thebes. +I will pour out My wrath on Pelusium, + +g + +h + +16 + +the stronghold of Egypt, +and cut off the crowds of Thebes. + +I will set fire to Egypt, + +Pelusium will writhe in anguish, + +Thebes will be split open, + +17 + +and Memphis will face daily distress. + + i + +The young men of On and Pi-beseth + +18 + +will fall by the sword, +and those cities will go into captivity. +The day will be darkened in Tahpanhes +when I break the yoke of Egypt +and her proud strength comes to an end. + +A cloud will cover her, + +19 + +and her daughters will go into captivity. + +So I will execute judgment on Egypt, + +Pharaoh’s Power Broken + +and they will know that I am the LORD.” + +20 + +21 + +In the eleventh year, on the seventh day of the +first month, the word of the LORD came to me, +“Son of man, I have broken the arm of +saying, +Pharaoh king of Egypt. See, it has not been bound +up for healing, or splinted for strength to hold the +22 +sword. + +Therefore this is what the Lord GOD says: Be- +hold, I am against Pharaoh king of Egypt. I will +break his arms, both the strong one and the one +already broken, and will make the sword fall +I will disperse the Egyptians +from his hand. +among the nations and scatter them throughout +24 +the lands. + +23 + +I will strengthen the arms of Babylon’s king +and place My sword in his hand, but I will break +the arms of Pharaoh, who will groan before him +I will strengthen +like a mortally wounded man. +g 14 +Or + +Aven and Pi-beseth + +d 6 +No + +Lydia + +Noph + +c 5 + +25 + +i 17 + +That is, the upper Nile region; also in vv. 5 and 9 +Heliopolis and Bubastis +LXX; Hebrew + +; also in v. 16 + +Hebrew + +That is, +; also in vv. + +That is, + +, as in LXX; Hebrew + + the arms of Babylon’s king, but Pharaoh’s arms +will fall limp. + +Then they will know that I am the LORD, when I +place My sword in the hand of Babylon’s king, +I will +and he wields it against the land of Egypt. +disperse the Egyptians among the nations and +scatter them throughout the lands. Then they +Egypt Will Fall like Assyria +will know that I am the LORD.” + +26 + +31 + +2 + +In the eleventh year, on the first day of +the third month, the word of the LORD +“Son of man, say to Pharaoh + +came to me, saying, +king of Egypt and to his multitude: + +‘Who can be compared +3 +to your greatness? + +Look at Assyria, a cedar in Lebanon, + +with beautiful branches that shaded the + +forest. +It towered on high; + +4 + +its top was among the clouds. + +The waters made it grow; + +the deep springs made it tall, + +directing their streams all around its base + +5 + +and sending their channels to all the trees + +of the field. + +Therefore it towered higher + +than all the trees of the field. + +Its branches multiplied, + +and its boughs grew long + +as it spread them out + +6 + +because of the abundant waters. + +All the birds of the air + +nested in its branches, +and all the beasts of the field + +gave birth beneath its boughs; + +7 + +all the great nations +lived in its shade. + +It was beautiful in its greatness, +in the length of its limbs, + +for its roots extended +8 + +to abundant waters. + a + +The cedars in the garden of God + +could not rival it; + +the cypresses + + could not compare with its + + b + +branches, +nor the plane trees + + match its boughs. + +No tree in the garden of God +9 + +could compare with its beauty. + +Ezekiel 32:2 | 773 + +10 + + c + +d + +11 + +Therefore this is what the Lord GOD says: +‘Since it became great + in height and set its top +among the clouds, + and it grew proud on account +I delivered it into the hand of the +of its height, +ruler of the nations, for him to deal with it ac- +12 +cording to its wickedness. I have banished it. + +Foreigners, the most ruthless of the nations, +cut it down and left it. Its branches have fallen on +the mountains and in every valley; its boughs lay +broken in all the earth’s ravines. And all the peo- +13 +ples of the earth left its shade and abandoned it. + +14 + +All the birds of the air nested on its fallen +trunk, and all the beasts of the field lived among +This happened so that no other +its boughs. +trees by the waters would become great in height +and set their tops among the clouds, and no other +well-watered trees would reach them in height. +For they have all been consigned to death, to the +depths of the earth, among the mortals who de- +15 +scend to the Pit.’ + +This is what the Lord GOD says: ‘On the day it +was brought down to Sheol, I caused mourning. I +covered the deep because of it; I held back its riv- +ers; its abundant waters were restrained. I made +Lebanon mourn for it, and all the trees of the field +fainted because of it. +I made the nations quake +at the sound of its downfall, when I cast it down +to Sheol with those who descend to the Pit. + +16 + +17 + +Then all the trees of Eden, the choicest and best +of Lebanon, all the well-watered trees, were con- +soled in the earth below. +They too descended +with it to Sheol, to those slain by the sword. As its +allies they had lived in its shade among the na- +18 +tions. + +Who then is like you in glory and greatness +among the trees of Eden? You also will be +brought down to the depths of the earth to be +with the trees of Eden. You will lie among the un- +circumcised, with those slain by the sword. This +is Pharaoh and all his multitude, declares the +A Lament for Pharaoh King of Egypt +Lord GOD.’ + +” + +32 + +2 + +In the twelfth year, on the first day of the +twelfth month, the word of the LORD +“Son of man, take up a la- +came to me, saying, +ment for Pharaoh king of Egypt and say to him: + +‘You are like a lion among the nations; +you are like a monster in the seas. + +I made it beautiful with its many branches, + +You thrash about in your rivers, + +a 8 + +the envy of all the trees of Eden, +firs +pines +which were in the garden of God.’ + +junipers + +chestnut + +b 8 + +juniper + +c 10 + +churning up the waters with your feet +d 10 +and muddying the streams.’ + +you became great + +through the thick boughs + +Or + + or + + or + +Possibly + + or + +Heb. + +Or + + 774 | Ezekiel 32:3 + +3 + +14 + +This is what the Lord GOD says: + +‘I will spread My net over you + +4 + +with a company of many peoples, +and they will draw you up in My net. + +I will abandon you on the land + +and hurl you into the open field. + +I will cause all the birds of the air + +to settle upon you, + +and all the beasts of the earth +5 +to eat their fill of you. + +a + +I will put your flesh on the mountains + +6 + +and fill the valleys with your remains. + +I will drench the land + +with the flow of your blood, +all the way to the mountains— +7 +the ravines will be filled. + +When I extinguish you, + +I will cover the heavens +and darken their stars. + +Then I will let her waters settle + +and will make her rivers flow like oil,’ + +declares the Lord GOD. + +15 + +‘When I make the land of Egypt a desolation + +and empty it of all that filled it, +when I strike down all who live there, + +16 + +then they will know that I am the LORD.’ + +This is the lament they will chant for her; the +daughters of the nations will chant it. Over Egypt +and all her multitudes they will chant it, declares +Egypt Cast into the Pit +the Lord GOD.” +17 + +c + +In the twelfth year, on the fifteenth day of the +18 +month, + the word of the LORD came to me, say- +“Son of man, wail for the multitudes of +ing, +Egypt, and consign her and the daughters of the +mighty nations to the depths of the earth with +19 +those who descend to the Pit: + +I will cover the sun with a cloud, +8 + +and the moon will not give its light. + +All the shining lights in the heavens + +Whom do you surpass in beauty? + +20 + +Go down and be placed with the + +uncircumcised! + +I will darken over you, +and I will bring darkness +upon your land,’ + +9 + +declares the Lord GOD. + +They will fall among those slain by the sword. + +The sword is appointed! + +Let them drag her away + +21 + +along with all her multitudes. + +‘I will trouble the hearts of many peoples, +when I bring about your destruction + + b + +10 + +among the nations, + +Mighty chiefs will speak from the midst + +of Sheol + +about Egypt and her allies: + +in countries + + you do not know. + +‘They have come down and lie with the + +I will cause many peoples + +to be appalled over you, + +and their kings will shudder in horror + +because of you + +when I brandish My sword before them. + +On the day of your downfall +each of them will tremble +every moment for his life.’ + +11 + +22 + +uncircumcised, + +with those slain by the sword.’ + +Assyria is there with her whole company; + +her graves are all around her. + +23 + +All of them are slain, + +fallen by the sword. + +Her graves are set in the depths of the Pit, + +and her company is all around her grave. + +For this is what the Lord GOD says: + +All of them are slain, + +12 + +‘The sword of the king of Babylon + +will come against you! +I will make your hordes fall + +by the swords of the mighty, +the most ruthless of all nations. +They will ravage the pride of Egypt + +13 + +fallen by the sword— +those who once spread terror +in the land of the living. + +24 + +Elam is there + +with all her multitudes around her grave. + +All of them are slain, + +and all her multitudes will be destroyed. + +fallen by the sword— + +I will slaughter all her cattle + +beside the abundant waters. + +those who went down uncircumcised + +to the earth below, + +No human foot will muddy them again, +b 9 + +your lofty stature +and no cattle hooves will disturb them. + +when I lead you into captivity among the nations, into countries + +who once spread their terror +in the land of the living. + +on the fifteenth day of the first month + +a 5 +c 17 + +Or +Presumably the fifteenth day of the twelfth month (see verse 1); LXX + +Hebrew; LXX + +. + + 32 + +Ezekiel 33:11 | 775 + +25 + +They bear their disgrace + +with those who descend to the Pit. + +For I will spread My terror +in the land of the living, + +Among the slain they prepare +a resting place for Elam + +with all her hordes, + +with her graves all around her. + +All of them are uncircumcised, + +slain by the sword, + +although their terror was once spread + +in the land of the living. + +They bear their disgrace + +26 + +with those who descend to the Pit. +They are placed among the slain. + +Meshech and Tubal are there +with all their multitudes, +with their graves all around them. + +All of them are uncircumcised, + +slain by the sword, + +27 + +because they spread their terror + +in the land of the living. + +a + +They do not lie down + +with the fallen warriors of old, + +who went down to Sheol + +with their weapons of war, + b + +whose swords were placed under their + +heads, +whose shields + + rested on their bones, + +28 + +although the terror of the mighty + +was once in the land of the living. + +But you too will be shattered + +29 + +and lie down among the uncircumcised, +with those slain by the sword. + +Edom is there, + +and all her kings and princes, + +who despite their might + +are laid among those slain by the sword. + +30 + +They lie down with the uncircumcised, +with those who descend to the Pit. + +All the leaders of the north + +and all the Sidonians are there; + +they went down in disgrace with the slain, + +despite the terror of their might. + +They lie uncircumcised + +with those slain by the sword + +and bear their shame + +31 + +with those who descend to the Pit. + +Pharaoh will see them + +and be comforted over all his multitude— +declares the Lord GOD. + +Pharaoh and all his army, +slain by the sword, + +a 27 + +warriors of the uncircumcised + +b 27 + +LXX; Heb. + +so that Pharaoh and all his multitude +will be laid to rest among the + +uncircumcised, + +declares the Lord GOD.” + +with those slain by the sword, + +Ezekiel the Watchman for Israel + +33 + +2 + +Again the word of the LORD came to me, +“Son of man, speak to your peo- +saying, +ple and tell them: ‘Suppose I bring the sword +against a land, and the people of that land choose +a man from among them, appointing him as their +and he sees the sword coming +watchman, +against that land and blows the ram’s horn to +4 +warn the people. + +3 + +5 + +Then if anyone hears the sound of the horn but +fails to heed the warning, and the sword comes +and takes him away, his blood will be on his own +Since he heard the sound of the horn but +head. +failed to heed the warning, his blood will be on +his own head. If he had heeded the warning, he +6 +would have saved his life. + +But if the watchman sees the sword coming and +fails to blow the horn to warn the people, and the +sword comes and takes away a life, then that one +will be taken away in his iniquity, but I will hold +7 +the watchman accountable for his blood.’ + +8 + +As for you, O son of man, I have made you a +watchman for the house of Israel; so hear the +word from My mouth and give them the warning +If I say to the wicked, ‘O wicked man, +from Me. +you will surely die,’ but you do not speak out to +dissuade him from his way, then that wicked +man will die in his iniquity, yet I will hold you ac- +But if you warn the +countable for his blood. +wicked man to turn from his way, and he does +c +not turn from it, he will die in his iniquity, but you +The Message of the Watchman +will have saved your life. +10 + +9 + +Now as for you, son of man, tell the house of +Israel that this is what they have said: ‘Our trans- +gressions and our sins are heavy upon us, and we +are wasting away because of them! How can we +11 +live?’ + +Say to them: ‘As surely as I live, declares +the Lord GOD, I take no pleasure in the death of +iniquities +the wicked, but rather that the wicked should +See Acts 20:25–26 + + c 9 + +Likely reading of the original Heb.; MT + + 776 | Ezekiel 33:12 + +turn from their ways and live. Turn! Turn from +your evil ways! For why should you die, O house +12 +of Israel?’ + +Therefore, son of man, say to your people: ‘The +righteousness of the righteous man will not de- +liver him in the day of his transgression; neither +will the wickedness of the wicked man cause him +to stumble on the day he turns from his wicked- +ness. Nor will the righteous man be able to sur- +13 +vive by his righteousness on the day he sins.’ + +If I tell the righteous man that he will surely +live, but he then trusts in his righteousness and +commits iniquity, then none of his righteous +works will be remembered; he will die because +14 +of the iniquity he has committed. + +15 + +But if I tell the wicked man, ‘You will surely +die,’ and he turns from his sin and does what is +just and right— +if he restores a pledge, makes +restitution for what he has stolen, and walks in +the statutes of life without practicing iniquity— +None of +then he will surely live; he will not die. +the sins he has committed will be held against +him. He has done what is just and right; he will +17 +surely live. + +16 + +18 + +Yet your people say, ‘The way of the Lord is not +If a +just.’ But it is their way that is not just. +righteous man turns from his righteousness and +commits iniquity, he will die for it. +But if a +wicked man turns from his wickedness and does +20 +what is just and right, he will live because of this. + +19 + +Yet you say, ‘The way of the Lord is not just.’ +But I will judge each of you according to his ways, +Word of Jerusalem’s Fall +O house of Israel.” +21 + +In the twelfth year of our exile, on the fifth day +of the tenth month, a fugitive from Jerusalem +came to me and reported, “The city has been +22 +taken!” + +Now the evening before the fugitive arrived, +the hand of the LORD was upon me, and He +opened my mouth before the man came to me in +the morning. So my mouth was opened and I was +23 +no longer mute. +24 + +Then the word of the LORD came to me, +saying, +“Son of man, those living in the ruins in +the land of Israel are saying, ‘Abraham was only +one man, yet he possessed the land. But we are +many; surely the land has been given to us as a +possession.’ + +25 + +26 + +Therefore tell them that this is what the Lord +GOD says: ‘You eat meat with the blood in it, lift +up your eyes to your idols, and shed blood. +Should you then possess the land? +You have +relied on your swords, you have committed de- +testable acts, and each of you has defiled his +neighbor’s wife. Should you then possess the +27 +land?’ + +28 + +Tell them that this is what the Lord GOD says: +‘As surely as I live, those in the ruins will fall by +the sword, those in the open field I will give to be +devoured by wild animals, and those in the +strongholds and caves will die by plague. +I will +make the land a desolate waste, and the pride of +her strength will come to an end. The mountains +of Israel will become desolate, so that no one will +pass through. +Then they will know that I am +the LORD, when I have made the land a desolate +waste because of all the abominations they have +30 +committed.’ + +29 + +As for you, son of man, your people are talking +about you near the city walls and in the door- +ways of their houses. One speaks to another, each +saying to his brother, ‘Come and hear the mes- +31 +sage that has come from the LORD!’ + +32 + +So My people come to you as usual, sit before +you, and hear your words; but they do not put +them into practice. Although they express love +with their mouths, their hearts pursue dishonest +gain. +Indeed, you are to them like a singer of +love songs with a beautiful voice, who skillfully +plays an instrument. They hear your words but +do not put them into practice. +So when it +comes to pass—and surely it will come—then +they will know that a prophet has been among +A Prophecy against Israel’s Shepherds +them.” + +33 + +34 + +2 + +Then the word of the LORD came to me, +saying, +“Son of man, prophesy against +the shepherds of Israel. Prophesy and tell them +that this is what the Lord GOD says: ‘Woe to the +shepherds of Israel, who only feed themselves! +You +Should not the shepherds feed their flock? +eat the fat, wear the wool, and butcher the fat- +4 +tened sheep, but you do not feed the flock. + +3 + +You have not strengthened the weak, healed the +sick, bound up the injured, brought back the +strays, or searched for the lost. Instead, you have +They +ruled them with violence and cruelty. +were scattered for lack of a shepherd, and when +they were scattered they became food for all the + +5 + + 6 + +20 + +Ezekiel 35:4 | 777 + +My flock went astray on all the +wild beasts. +mountains and every high hill. They were scat- +tered over the face of all the earth, with no one to +7 +search for them or seek them out.’ + +8 + +Therefore, you shepherds, hear the word of the +‘As surely as I live, declares the Lord +LORD: +GOD, because My flock lacks a shepherd and has +become prey and food for every wild beast, and +because My shepherds did not search for My +flock but fed themselves instead, +therefore, you +10 +shepherds, hear the word of the LORD!’ + +9 + +This is what the Lord GOD says: ‘Behold, I am +against the shepherds, and I will demand from +them My flock and remove them from tending +the flock, so that they can no longer feed them- +selves. For I will deliver My flock from their +The Good Shepherd +mouths, and it will no longer be food for them.’ +(Psalm 23:1–6 ; John 10:1–21) + +11 + +12 + +For this is what the Lord GOD says: ‘Behold, I +Myself will search for My flock and seek them +As a shepherd looks for his scattered +out. +sheep when he is among the flock, so I will look +for My flock. + +13 + +14 + +I will rescue them from all the places to which +they were scattered on a day of clouds and dark- +I will bring them out from the peoples, +ness. +gather them from the countries, and bring them +into their own land. I will feed them on the moun- +tains of Israel, in the ravines, and in all the settle- +I will feed them in good +ments of the land. +pasture, and the lofty mountains of Israel will be +their grazing land. There they will lie down in a +good grazing land; they will feed in rich pasture +15 +on the mountains of Israel. +16 +I will tend My flock and make them lie down, +I will seek the lost, +declares the Lord GOD. +bring back the strays, bind up the broken, and +strengthen the weak; but the sleek and strong I +17 +will destroy. I will shepherd them with justice.’ + +18 + +This is what the Lord GOD says to you, My +flock: ‘I will judge between one sheep and an- +other, between the rams and the goats. +Is it not +enough for you to feed on the good pasture? Must +you also trample the rest of the pasture with +your feet? Is it not enough for you to drink the +clear waters? Must you also muddy the rest with +Why must My flock feed on what +your feet? +your feet have trampled, and drink what your +feet have muddied?’ + +19 + +23 + +22 + +Therefore this is what the Lord GOD says to +21 +them: ‘Behold, I Myself will judge between the fat +sheep and the lean sheep. +Since you shove with +flank and shoulder, butting all the weak ones +with your horns until you have scattered them +abroad, +I will save My flock, and they will no +longer be prey. I will judge between one sheep +and another. +I will appoint over them one +shepherd, My servant David, and he will feed +24 +them. He will feed them and be their shepherd. +I, the LORD, will be their God, and My servant +David will be a prince among them. I, the LORD, +The Covenant of Peace +have spoken. +25 + +26 + +27 + +I will make with them a covenant of peace and +rid the land of wild animals, so that they may +dwell securely in the wilderness and sleep in the +forest. +I will make them and the places around +My hill a blessing. I will send down showers in +season—showers of blessing. +The trees of the +field will give their fruit, and the land will yield +its produce; My flock will be secure in their land. +Then they will know that I am the LORD, when I +have broken the bars of their yoke and delivered +28 +them from the hands that enslaved them. + +They will no longer be prey for the nations, +and the beasts of the earth will not consume +them. They will dwell securely, and no one will +29 +frighten them. + +30 + +And I will raise up for them a garden of +renown, and they will no longer be victims of +famine in the land or bear the scorn of the na- +tions. +Then they will know that I, the LORD +their God, am with them, and that they, the house +31 +of Israel, are My people,’ declares the Lord GOD. + +‘You are My flock, the sheep of My pasture, My +people, and I am your God,’ declares the Lord +A Prophecy against Mount Seir +GOD.” + +35 + +2 + +Moreover, the word of the LORD came to +me, saying, +“Son of man, set your face +and + +against Mount Seir and prophesy against it, +declare that this is what the Lord GOD says: + +3 + +Behold, I am against you, + +O Mount Seir. + +I will stretch out My hand against you +4 +and make you a desolate waste. + +I will turn your cities into ruins, + +and you will become a desolation. + +Then you will know that I am the LORD. + + 778 | Ezekiel 35:5 + +5 + +6 + +Because you harbored an ancient hatred and +delivered the Israelites over to the sword in the +time of their disaster at the final stage of their +therefore as surely as I live, de- +punishment, +clares the Lord GOD, I will give you over to blood- +shed and it will pursue you. Since you did not +7 +hate bloodshed, it will pursue you. + +8 + +I will make Mount Seir a desolate waste and will +I will fill +cut off from it those who come and go. +its mountains with the slain; those killed by the +9 +sword will fall on your hills, in your valleys, and +I will make you a perpetual +in all your ravines. +desolation, and your cities will not be inhabited. +10 +Then you will know that I am the LORD. + +11 + +Because you have said, ‘These two nations and +countries will be ours, and we will possess them,’ +even though the LORD was there, +therefore as +surely as I live, declares the Lord GOD, I will treat +you according to the anger and jealousy you +showed in your hatred against them, and I will +make Myself known among them when I judge +12 +you. + +13 + +Then you will know that I, the LORD, have +heard every contemptuous word you uttered +against the mountains of Israel when you said, +‘They are desolate; they are given to us to de- +You boasted against Me with your +vour!’ +mouth and multiplied your words against Me. I +14 +heard it Myself! + +This is what the Lord GOD says: While the +15 +whole earth rejoices, I will make you desolate. +As you rejoiced when the inheritance of the +house of Israel became desolate, so will I do to +you. You will become a desolation, O Mount Seir, +and so will all of Edom. Then they will know that +A Prophecy to the Mountains of Israel +I am the LORD. + +36 + +2 + +3 + +“And you, son of man, prophesy to the +mountains of Israel and say: O moun- +This +tains of Israel, hear the word of the LORD. +is what the Lord GOD says: Because the enemy +has said of you, ‘Aha! The ancient heights have +therefore prophesy +become our possession,’ +and declare that this is what the Lord GOD says: +Because they have made you desolate and have +trampled you on every side, so that you became +a possession of the rest of the nations and were +4 +taken up in slander by the lips of their talkers, +therefore, O mountains of Israel, hear the word + +of the Lord GOD. + +5 + +This is what the Lord GOD says to the mountains +and hills, to the ravines and valleys, to the deso- +late ruins and abandoned cities, which have be- +come a spoil and a mockery to the rest of the na- +tions around you. +Therefore this is what the +Lord GOD says: Surely in My burning zeal I have +spoken against the rest of the nations, and +against all Edom, who took My land as their own +possession with wholehearted joy and utter con- +6 +tempt, so that its pastureland became plunder. + +Therefore, prophesy concerning the land of Is- +rael and tell the mountains and hills, the +ravines and valleys, that this is what the Lord +GOD says: Behold, I have spoken in My burning +zeal because you have endured the reproach of +7 +the nations. + +8 + +Therefore this is what the Lord GOD says: I have +sworn with an uplifted hand that surely the na- +tions around you will endure reproach of their +But you, O mountains of Israel, will pro- +own. +duce branches and bear fruit for My people Is- +9 +rael, for they will soon come home. + +10 + +11 + +For behold, I am on your side; I will turn toward +I will mul- +you, and you will be tilled and sown. +tiply the people upon you—the house of Israel in +its entirety. The cities will be inhabited and the +I will fill you with people and an- +ruins rebuilt. +imals, and they will multiply and be fruitful. I will +make you as inhabited as you once were, and I +will make you prosper more than before. Then +12 +you will know that I am the LORD. + +Yes, I will cause My people Israel to walk upon +you; they will possess you, and you will be their +inheritance, and you will no longer deprive them +13 +of their children. + +14 + +For this is what the Lord GOD says: Because +people say to you, ‘You devour men and deprive +therefore you will +your nation of its children,’ +15 +no longer devour men or deprive your nation of +I will no +its children, declares the Lord GOD. +longer allow the taunts of the nations to be heard +against you, and you will no longer endure the +reproach of the peoples or cause your nation to +A New Heart and a New Spirit +stumble, declares the Lord GOD.” +(Romans 8:9–11 ; Galatians 5:16–26) + +16 + +17 + +Again the word of the LORD came to me, say- +ing, +“Son of man, when the people of Israel +lived in their land, they defiled it by their own +ways and deeds. Their behavior before Me was + + 18 + +33 + +Ezekiel 37:9 | 779 + +So +like the uncleanness of a woman’s impurity. +I poured out My wrath upon them because of the +blood they had shed on the land, and because +19 +they had defiled it with their idols. + +20 + +I dispersed them among the nations, and they +were scattered throughout the lands. I judged +them according to their ways and deeds. +And +wherever they went among the nations, they +profaned My holy name, because it was said of +them, ‘These are the people of the LORD, yet they +But I had concern for My +had to leave His land.’ +holy name, which the house of Israel had pro- +22 +faned among the nations to which they had gone. + +21 + +23 + +Therefore tell the house of Israel that this is +what the Lord GOD says: It is not for your sake +that I will act, O house of Israel, but for My holy +name, which you profaned among the nations to +I will show the holiness of My +which you went. +great name, which has been profaned among the +nations—the name you have profaned among +them. Then the nations will know that I am the +LORD, declares the Lord GOD, when I show My +24 +holiness in you before their eyes. + +26 + +25 + +For I will take you from among the nations and +gather you out of all the countries, and I will +I will also +bring you back into your own land. +sprinkle clean water on you, and you will be +clean. I will cleanse you from all your impurities +I will give you a new heart +and all your idols. +and put a new spirit within you; I will remove +27 +your heart of stone and give you a heart of flesh. +And I will put My Spirit within you and cause +you to walk in My statutes and to carefully ob- +28 +serve My ordinances. + +29 + +Then you will live in the land that I gave your +forefathers; you will be My people, and I will be +your God. +I will save you from all your unclean- +ness. I will summon the grain and make it plenti- +I will +ful, and I will not bring famine upon you. +also make the fruit of the trees and the crops +of the field plentiful, so that you will no longer +bear reproach among the nations on account of +31 +famine. + +30 + +32 + +Then you will remember your evil ways and +wicked deeds, and you will loathe yourselves for +It is not for +your iniquities and abominations. +your sake that I will act, declares the Lord GOD— +let it be known to you. Be ashamed and disgraced +for your ways, O house of Israel! +a 5 + +spirit + +Or + +; also in verses 6, 9, and 10 + +34 + +This is what the Lord GOD says: On the day I +cleanse you from all your iniquities, I will cause +the cities to be resettled and the ruins to be re- +The desolate land will be cultivated in- +built. +35 +stead of lying desolate in the sight of all who pass +Then they will say, ‘This land that was +through. +desolate has become like the garden of Eden. The +cities that were once ruined, desolate, and de- +36 +stroyed are now fortified and inhabited.’ + +Then the nations around you that remain will +know that I, the LORD, have rebuilt what was de- +stroyed, and I have replanted what was desolate. +37 +I, the LORD, have spoken, and I will do it. + +This is what the Lord GOD says: Once again I +will hear the plea of the house of Israel and do for +38 +them this: I will multiply their people like a flock. +Like the numerous flocks for sacrifices at Jeru- +salem during her appointed feasts, so the ruined +cities will be filled with flocks of people. Then +The Valley of Dry Bones +they will know that I am the LORD.” + +37 + +2 + +The hand of the LORD was upon me, and +He brought me out by His Spirit and set +me down in the middle of the valley, and it was +full of bones. +He led me all around among them, +and I saw a great many bones on the floor of the +3 +valley, and indeed, they were very dry. + +Then He asked me, “Son of man, can these bones + +come to life?” +4 +“O Lord GOD,” I replied, “only You know.” + + a + +5 + +6 + +And He said to me, “Prophesy concerning these +bones and tell them, ‘Dry bones, hear the word of +This is what the Lord GOD says to +the LORD! +these bones: I will cause breath + to enter you, +I will attach tendons +and you will come to life. +to you and make flesh grow upon you and cover +you with skin. I will put breath within you so that +you will come to life. Then you will know that I +7 +am the LORD.’ + +” + +8 + +So I prophesied as I had been commanded. And +as I prophesied, there was suddenly a noise, a +rattling, and the bones came together, bone to +As I looked on, tendons appeared on +bone. +them, flesh grew, and skin covered them; but +9 +there was no breath in them. + +Then He said to me, “Prophesy to the breath; +prophesy, son of man, and tell the breath that +this is what the Lord GOD says: Come from the + + 780 | Ezekiel 37:10 + +four winds, O breath, and breathe into these +10 +slain, so that they may live!” + +So I prophesied as He had commanded me, and +the breath entered them, and they came to life +11 +and stood on their feet—a vast army. + +Then He said to me, “Son of man, these bones +are the whole house of Israel. Look, they are say- +ing, ‘Our bones are dried up, and our hope has +12 +perished; we are cut off.’ + +13 + +14 + +Therefore prophesy and tell them that this is +what the Lord GOD says: ‘O My people, I will open +your graves and bring you up from them, and I +Then +will bring you back to the land of Israel. +you, My people, will know that I am the LORD, +when I open your graves and bring you up from +I will put My Spirit in you and you will +them. +live, and I will settle you in your own land. Then +you will know that I, the LORD, have spoken, and +One Nation with One King +I will do it, declares the LORD.’ +15 + +” + +16 + + a +Again the word of the LORD came to me, say- +ing, +“And you, son of man, take a single stick +and write on it: ‘Belonging to Judah and to the Is- +raelites associated with him.’ Then take another +stick and write on it: ‘Belonging to Joseph—the +stick of Ephraim—and to all the house of Israel +Then join them together +associated with him.’ +into one stick, so that they become one in your +18 +hand. + +17 + +19 + +When your people ask you, ‘Won’t you explain +you are to tell +to us what you mean by these?’ +them that this is what the Lord GOD says: ‘I will +take the stick of Joseph, which is in the hand of +Ephraim, and the tribes of Israel associated with +him, and I will put them together with the stick +of Judah. I will make them into a single stick, and +20 +they will become one in My hand.’ + +21 + +When the sticks on which you write are in your +hand and in full view of the people, +you are to +tell them that this is what the Lord GOD says: ‘I +will take the Israelites out of the nations to which +they have gone, and I will gather them from all +around and bring them into their own land. +I +will make them one nation in the land, on the +mountains of Israel, and one king will rule over +all of them. Then they will no longer be two na- +tions and will never again be divided into two +branch +a 16 +kingdoms. +their dwelling places where they sinned +Or +prince of Rosh, Meshech, and Tubal + +; also in verses 17, 19, and 20 + +b 23 + +c 27 + +22 + +f 3 + +23 + +b + +They will no longer defile themselves with +their idols or detestable images, or with any of +their transgressions. I will save them from all + and I will +their apostasies by which they sinned, +24 +cleanse them. Then they will be My people, and I +My servant David will be king +will be their God. +over them, and there will be one shepherd for all +of them. They will follow My ordinances and +25 +keep and observe My statutes. + +26 + +They will live in the land that I gave to My serv- +ant Jacob, where your fathers lived. They will live +there forever with their children and grandchil- +dren, and My servant David will be their prince +And I will make a covenant of peace +forever. +with them; it will be an everlasting covenant. I +will establish them and multiply them, and I will +My +set My sanctuary among them forever. +d +dwelling place + will be with them; I will be their +Then the na- +God, and they will be My people. +tions will know that I the LORD sanctify Israel, +A Prophecy against Gog +when My sanctuary is among them forever.’ + +” + +27 + +28 + + c + +38 + +2 + +f + +4 + +And the word of the LORD came to me, +“Son of man, set your face +saying, +e +against Gog of the land of Magog, the chief prince +3 + Prophesy against him +of Meshech and Tubal. +and declare that this is what the Lord GOD says: +Behold, I am against you, O Gog, chief prince of +I will turn you around, put +Meshech and Tubal. +hooks in your jaws, and bring you out with all +your army—your horses, your horsemen in full +armor, and a great company armed with shields +Per- +and bucklers, all brandishing their swords. +6 +sia, Cush, + and Put will accompany them, all with +as well as Gomer with all +shields and helmets, +its troops, and Beth-togarmah from the far north +7 +with all its troops—the many nations with you. + +5 + +g + +8 + +Get ready; prepare yourself, you and all your +company gathered around you; you will be their +After a long time you will be summoned. +guard. +In the latter years you will enter a land that has +recovered from war, whose people were gath- +ered from many nations to the mountains of +Israel, which had long been desolate. They had +been brought out from the nations, and all now +You and all your troops, and +dwell securely. +many peoples with you will go up, advancing like +a thunderstorm; you will be like a cloud covering +the land. +d 27 + +of Magog, the + +e 2 + +all + +9 + +My tabernacle + +Gog, the prince of Rosh, Meshech, and Tubal + +Many Hebrew manuscripts (see also LXX); most Heb. manuscripts +Cited in 2 Corinthians 6:16 + +g 5 + +Or + +Or + +Or + +That is, the upper Nile region + + 10 + +11 + +This is what the Lord GOD says: On that day, +thoughts will arise in your mind, and you will de- +You will say, ‘I will go up +vise an evil plan. +against a land of unwalled villages; I will come +against a quiet people who dwell securely, all of +in +them living without walls or bars or gates— +order to seize the spoil and carry off the plunder, +to turn a hand against the desolate places now +inhabited and against a people gathered from the +nations, who have acquired livestock and posses- +13 +sions and who live at the center of the land.’ + +12 + + a + +Sheba and Dedan and the merchants of Tar- +shish with all its villages + will ask, ‘Have you +come to capture the plunder? Have you assem- +bled your hordes to carry away loot, to make off +with silver and gold, to take cattle and goods, to +14 +seize great spoil?’ + + b + +15 + +Therefore prophesy, son of man, and tell Gog +that this is what the Lord GOD says: On that day +when My people Israel are dwelling securely, will +you not take notice of this? +And you will come +from your place out of the far north—you and +many peoples with you, all riding horses—a +mighty horde, a huge army. +You will advance +against My people Israel like a cloud covering the +land. It will happen in the latter days, O Gog, that +I will bring you against My land, so that the na- +tions may know Me when I show Myself holy in +17 +you before their eyes. + +16 + +This is what the Lord GOD says: Are you the +one of whom I have spoken in former days +through My servants, the prophets of Israel, who +18 +in those times prophesied for years that I would +bring you against them? +Now on that day when +Gog comes against the land of Israel, declares the +19 +Lord GOD, My wrath will flare up. + +20 + +In My zeal and fiery rage I proclaim that on +that day there will be a great earthquake in the +land of Israel. +The fish of the sea, the birds of +the air, the beasts of the field, every creature that +crawls upon the ground, and all mankind on the +face of the earth will tremble at My presence. The +mountains will be thrown down, the cliffs will +21 +collapse, and every wall will fall to the ground. + +22 + +And I will summon a sword against Gog on all +My mountains, declares the Lord GOD, and every +man’s sword will be against his brother. +I will +execute judgment upon him with plague and +bloodshed. I will pour out torrents of rain, hail- +a 13 +stones, fire, and sulfur on him and on his troops + +will you not rouse yourself? +multitude of Gog + +e 11 Hamon-gog + +young lions + +b 14 + +Ezekiel 39:14 | 781 + +23 + +and on the many nations with him. +I will mag- +nify and sanctify Myself, and I will reveal Myself +in the sight of many nations. Then they will know +The Slaughter of Gog’s Armies +that I am the LORD. + +39 + +c + +2 + +“As for you, O son of man, prophesy +against Gog and declare that this is what +the Lord GOD says: Behold, I am against you, O +I will +Gog, chief prince of Meshech and Tubal. +turn you around, drive you along, bring you up +from the far north, and send you against the +Then I will strike the bow +mountains of Israel. +from your left hand and dash down the arrows +4 +from your right hand. + +3 + +On the mountains of Israel you will fall—you +and all your troops and the nations with you. I +will give you as food to every kind of ravenous +bird and wild beast. +You will fall in the open +6 +field, for I have spoken, declares the Lord GOD. + +5 + +I will send fire on Magog and on those who +7 +dwell securely in the coastlands, and they will +know that I am the LORD. +So I will make My holy +name known among My people Israel and will no +longer allow it to be profaned. Then the nations +will know that I am the LORD, the Holy One in Is- +rael. +Yes, it is coming, and it will surely happen, +declares the Lord GOD. This is the day of which I +9 +have spoken. + +8 + +10 + +Then those who dwell in the cities of Israel will +go out, kindle fires, and burn up the weapons— +the bucklers and shields, the bows and arrows, +the clubs and spears. For seven years they will +use them for fuel. +They will not gather wood +from the countryside or cut it from the forests, +for they will use the weapons for fuel. They will +loot those who looted them and plunder those +11 +who plundered them, declares the Lord GOD. + +d + +And on that day I will give Gog a burial place in +Israel, the Valley of the Travelers, east of the +Sea. + It will block those who travel through, be- +e +cause Gog and all his hordes will be buried there. +12 +So it will be called the Valley of Hamon-gog. + +13 + +For seven months the house of Israel will be +burying them in order to cleanse the land. +All +the people of the land will bury them, and it will +bring them renown on the day I display My +14 +glory, + + declares the Lord GOD. + +f + +And men will be employed to continually pass +c 1 +Gog, prince of Rosh, Meshech, and Tubal +through the land to cleanse it by burying the +f 13 +Or + +d 11 +and the day I display My glory will be a day of + +That + +Or +renown +is, the Dead Sea + +LXX + + means + +. + +Or + + 782 | Ezekiel 39:15 + +29 + +invaders who remain on the ground. At the end +15 +of the seven months they will begin their search. +As they pass through the land, anyone who +sees a human bone will set up a pillar next to it, +until the gravediggers have buried it in the Valley +(Even the city will be named +of Hamon-gog. +17 +Hamonah. + +) And so they will cleanse the land. + +16 + +a + +18 + +And as for you, son of man, this is what the +Lord GOD says: Call out to every kind of bird and +to every beast of the field: ‘Assemble and come +together from all around to the sacrificial feast +that I am preparing for you, a great feast on the +mountains of Israel. There you will eat flesh and +You will eat the flesh of the mighty +drink blood. +and drink the blood of the princes of the earth as +though they were rams, lambs, goats, and bulls— +At the sac- +all the fattened animals of Bashan. +rifice I am preparing, you will eat fat until you are +20 +gorged and drink blood until you are drunk. +And at My table you will eat your fill of horses +and riders, of mighty men and warriors of every +Israel to Be Restored +kind,’ declares the Lord GOD. +21 + +19 + +22 + +23 + +I will display My glory among the nations, and +all the nations will see the judgment that I exe- +From +cute and the hand that I lay upon them. +that day forward the house of Israel will know +And the nations +that I am the LORD their God. +will know that the house of Israel went into exile +for their iniquity, because they were unfaithful to +Me. So I hid My face from them and delivered +them into the hands of their enemies, so that they +I dealt with them accord- +all fell by the sword. +ing to their uncleanness and transgressions, and +25 +I hid My face from them. + +24 + + b + + c + +26 + +Therefore this is what the Lord GOD says: Now +I will restore Jacob from captivity + and will have +compassion on the whole house of Israel, and I +They will for- +will be jealous for My holy name. +get + their disgrace and all the treachery they +committed against Me, when they dwell securely +27 +in their land, with no one to frighten them. +When I bring them back from the peoples and +gather them out of the lands of their enemies, I +will show My holiness in them in the sight of +Then they will know that I am +many nations. +multitude +a 16 Hamonah +the LORD their God, when I regather them to +bear + +horde + +b 25 + +28 + +d 5 6 long cubits + means + +their own land, not leaving any of them behind +And I will +after their exile among the nations. +no longer hide My face from them, for I will pour +out My Spirit on the house of Israel, declares the +The Man with a Measuring Rod (Zech. 2:1–5) +Lord GOD.” + +40 + +In the twenty-fifth year of our exile, at +the beginning of the year, on the tenth +day of the month—in the fourteenth year after +Jerusalem had been struck down—on that very +day the hand of the LORD was upon me, and He +In visions of God He took me to +took me there. +the land of Israel and set me on a very high +mountain, on whose southern slope was a struc- +3 +ture that resembled a city. + +2 + +4 + +So He took me there, and I saw a man whose ap- +pearance was like bronze. He was standing in the +gateway with a linen cord and a measuring rod +“Son of man,” he said to me, “look +in his hand. +with your eyes, hear with your ears, and pay at- +tention to everything I am going to show you, for +that is why you have been brought here. Report +The East Gate +to the house of Israel everything you see.” +5 + +And I saw a wall surrounding the temple area. + d +Now the length of the measuring rod in the man’s +hand was six long cubits + (each measuring a cu- +bit and a handbreadth), and he measured the +6 +wall to be one rod thick and one rod high. + + f + +e + +7 + +Then he came to the gate facing east and +climbed its steps. He measured the threshold of +the gate to be one rod deep. +Each gate chamber +was one rod long and one rod wide, and there +were five cubits + between the gate chambers. +8 +The inner threshold of the gate by the portico +9 +Then he meas- +facing inward was one rod deep. +ured the portico of the gateway inside; +it was +eight cubits deep, + and its jambs were two cubits +thick. + And the portico of the gateway faced the +10 +temple. + + g + +h + +i + +There were three gate chambers on each side +of the east gate, each with the same measure- +11 +ments, and the gateposts on either side also had +j +And he measured the +the same measurements. +width of the gateway entrance to be ten cubits, +They will +and its length was thirteen cubits. + +c 26 + +k + +restore the fortunes of Jacob + + or + +. + +Or + +A few Heb. manuscripts; MT + +e 6 + +one reed deep, even one threshold, one reed deep. + +, the length of the reed used for measuring, is approximately 10.5 feet or 3.2 meters; similarly in + +Hebrew + +verses 6, 7, and 12. The long cubit of about 21 inches or 53.3 centimeters is the basic unit of length throughout Ezekiel 40 +to 48. + is approximately 8.75 feet or 2.7 +meters; also in verses 30 and 48. +mately 14 feet or 4.3 meters. +mately 17.5 feet or 5.3 meters. + +i 9 2 (long) cubits +Literally +k 11 13 (long) cubits + +h 9 8 (long) cubits +j 11 10 (long) cubits + + is approximately 22.75 feet or 6.9 meters. + + is approximately 3.5 feet or 1.1 meters. + + is approxi- + + is approxi- + +g 8 + +f 7 5 (long) cubits +the portico of the gateway inside, one rod + + 12 + +13 + +In front of each gate chamber was a wall one +cubit high, and the gate chambers were six cubits +Then he measured the gateway from +square. +the roof of one gate chamber to the roof of + a +the opposite one; the distance was twenty-five +14 +cubits + + from doorway to doorway. + +b + +Next he measured the gateposts to be sixty cu- +15 +bits high. + The gateway extended around to the +And the distance +gatepost of the courtyard. +from the entrance of the gateway to the far end +16 +of its inner portico was fifty cubits. + + d + +c + +The gate chambers and their side pillars + + had +beveled windows all around the inside of the +gateway. The porticos also had windows all +around on the inside. Each side pillar was deco- +The Outer Court +rated with palm trees. +17 + +18 + +Then he brought me into the outer court, and +there were chambers and a pavement laid out all +around the court. Thirty chambers faced the +pavement, +which flanked the gateways and +corresponded to the length of the gates; this was +19 +the lower pavement. + + e + +Then he measured the distance from the front +of the lower gateway to the outside of the inner +court; it was a hundred cubits + on the east side +The North Gate +as well as on the north. +20 + +21 + +22 + +He also measured the length and width of the +Its +gateway of the outer court facing north. +three gate chambers on each side, its side pillars, +and its portico all had the same measurements as +the first gate: fifty cubits long and twenty-five +cubits wide. +Its windows, portico, and palm +trees had the same measurements as those of the +gate facing east. Seven steps led up to it, with its +23 +portico opposite them. + +There was a gate to the inner court facing the +north gate, just as there was on the east. He +measured the distance from gateway to gateway +The South Gate +to be a hundred cubits. +24 + +Ezekiel 40:39 | 783 + +25 + +measurements as the others. +Both the gateway +and its portico had windows all around, like the +other windows. It was fifty cubits long and +Seven steps led up to +twenty-five cubits wide. +it, and its portico was opposite them; it had palm +27 +trees on its side pillars, one on each side. + +26 + +The inner court also had a gate facing south, +and he measured the distance from gateway to +The Gates of the Inner Court +gateway toward the south to be a hundred cubits. +28 + +29 + +Next he brought me into the inner court +through the south gate, and he measured the +south gate; it had the same measurements as the +Its gate chambers, side pillars, and por- +others. +tico had the same measurements as the others. +Both the gateway and its portico had windows all +around; it was fifty cubits long and twenty-five +(The porticoes around the inner +cubits wide. +court were twenty-five cubits long and five cu- +bits deep. +Its portico faced the outer court, +and its side pillars were decorated with palm +32 +trees. Eight steps led up to it. + +31 + +30 + +) + +f + +33 + +And he brought me to the inner court on the +east side, and he measured the gateway; it had +Its gate +the same measurements as the others. +chambers, side pillars, and portico had the same +measurements as the others. Both the gateway +and its portico had windows all around. It was +34 +fifty cubits long and twenty-five cubits wide. +Its portico faced the outer court, and its side +pillars were decorated with palm trees on each +35 +side. Eight steps led up to it. + +36 + +Then he brought me to the north gate and +measured it. It had the same measurements as +as did its gate chambers, side +the others, +pillars, and portico. It also had windows all +around. It was fifty cubits long and twenty-five +cubits wide. + faced the outer court, +and its side pillars were decorated with palm +Eight Tables for Sacrifices +trees on each side. Eight steps led up to it. +38 + +Its portico + +37 + + g + + h + +39 + +There was a chamber with a doorway by the +portico + in each of the inner gateways. There +Inside the +the burnt offering was to be washed. +portico of the gateway were two tables on each +side, on which the burnt offerings, sin offerings, +and guilt offerings were to be slaughtered. + +b 14 60 (long) + + is approximately 87.5 feet or 26.7 meters; also in +g 37 + +; here and throughout Ezekiel 40 and 41. + +f 30 + +Then he led me to the south side, and I saw a +gateway facing south. He measured its side +a 13 25 (long) cubits +pillars and portico, and they had the same +cubits + +c 15 50 (long) cubits + +gateposts + is approximately 105 feet or 32 meters. + +d 16 + +e 19 100 (long) cubits +verses 21, 25, 29, 33, and 36. + +Or + + or + + or +h 38 + + is approximately 43.75 feet or 13.3 meters; also in verses 21, 25, 29, 30, 33, and 36. + +projecting walls + +jambs + +dividing wall +approximately 43.75 feet long and 8.75 feet deep (13.3 meters long and 2.7 meters deep). +verses 26, 31, and 34); Hebrew + + is approximately 175 feet or 53.3 meters; also in verses 23, 27, and 47. + +at the jambs + +Hebrew + +jambs + + or + +The porticoes were +LXX and Vulgate (see also + + 784 | Ezekiel 40:40 + +40 + +Inside the Temple + +41 + +Outside, as one goes up to the entrance of the +north gateway, there were two tables on one side +and two more tables on the other side of the +So there were four tables inside +gate’s portico. +the gateway and four outside—eight tables in +all—on which the sacrifices were to be slaugh- +42 +tered. + +There were also four tables of dressed stone +for the burnt offering, each a cubit and a half long, +a cubit and a half wide, and a cubit high. + On +these were placed the utensils used to slaughter +43 +the burnt offerings and the other sacrifices. + +a + +b + +c + +The double-pronged hooks, + + each a hand- + were fastened all around the +breadth long, +inside of the room, and the flesh of the offering +Chambers for Ministry +was to be placed on the tables. +44 + +d + + e + +Outside the inner gate, within the inner court, +were two chambers, + one beside the north gate +and facing south, and another beside the south +45 +gate + + and facing north. + +46 + +Then the man said to me: “The chamber that +faces south is for the priests who keep charge of +the temple, +and the chamber that faces north +is for the priests who keep charge of the altar. +These are the sons of Zadok, the only Levites who +The Inner Court +may approach the LORD to minister before Him.” +47 + +Next he measured the court. It was square, a +hundred cubits long and a hundred cubits wide. +48 +And the altar was in front of the temple. + +f + +h + +49 + +Then he brought me to the portico of the tem- +ple and measured the side pillars of the portico +to be five cubits on each side. The width of the +gateway was fourteen cubits and its sidewalls +were three cubits on either side. +The portico +i + and twelve cubits +was twenty cubits wide +deep, + There were col- +a 42 +umns by the side pillars, one on each side. +d 44 +and 53.3 centimeters high). + + and ten steps led up to it. + +shelves + +b 43 + +Or + + g + +41 + +l + + j + +k + +2 + +Then the man brought me into the outer +sanctuary and measured the side pillars +to be six cubits wide +The width + on each side. + m +of the entrance was ten cubits, + and the sides of +the entrance were five cubits + on each side. He +also measured the length of the outer sanctuary +to be forty cubits, and the width to be twenty cu- +3 +bits. + +n + +o + +4 + +And he went into the inner sanctuary and meas- +ured the side pillars at the entrance to be two + The entrance was six cubits wide, +cubits wide. +p +and the walls on each side were seven cubits +Then he measured the room adjacent to +wide. +r +the inner sanctuary + to be twenty cubits long +s +and twenty cubits wide. + And he said to me, “This +Outside the Temple +is the Most Holy Place. +5 + +” + + q + +t + +6 + +7 + +Next he measured the wall of the temple to be +six cubits thick, and the width of each side room +around the temple was four cubits. +The side +rooms were arranged one above another in three +levels of thirty rooms each. There were ledges all +around the wall of the temple to serve as sup- +ports for the side rooms, so that the supports +would not be fastened into the wall of the temple +The side rooms surrounding the temple +itself. +widened at each successive level, because the +structure surrounding the temple ascended by +stages corresponding to the narrowing of the +temple wall as it rose upward. And so a stairway +went up from the lowest story to the highest, +8 +through the middle one. + +9 + +I saw that the temple had a raised base all +around it, forming the foundation of the side +rooms. It was the full length of a rod, six long cu- +The outer wall of the side rooms was five +bits. +cubits thick, and the open area between the side +and the outer chambers +rooms of the temple +was twenty cubits wide all around the temple. + +10 + +c 43 A handbreadth + +within the inner court were chambers for the singers + +The tables were approximately 2.6 feet in length and width, and 1.75 feet high (79.2 centimeters in length and width, + is approximately 2.9 inches or 7.4 centimeters long. +LXX; the + +The width of the gateway was three cubits on either side. + +g 49 20 (long) cubits + +the east gateway + +LXX; Hebrew + +LXX; Hebrew + +e 44 + +f 48 + +h 49 + +12 (long) cubits + +gateway was approximately 24.5 feet or 7.5 meters wide, with sidewalls approximately 5.25 feet or 1.6 meters wide on +either side. Hebrew +or 10.7 meters. +approximately 19.25 feet or 5.9 meters. +side—the width of the tent +l 2 10 (long) cubits +feet or 3.2 meters; also in verses 3, 5, and 8. + + is approximately 21 feet or 6.4 meters; Hebrew + +k 1 +LXX; Hebrew + +and steps led up to it + +m 2 5 (long) cubits + +eleven cubits deep + +j 1 6 (long) cubits + +; that is, +on each + +LXX; + +i 49 + + is approximately 10.5 + + is approximately 35 feet + +One Hebrew manuscript and LXX; most Hebrew manuscripts + is + + is approximately 17.5 feet or 5.3 meters. + +o 3 2 (long) cubits + +n 2 + +approximately 8.75 feet or 2.7 meters; also in verses 9, 11, and 12. +q 4 +p 3 7 (long) cubits +long and 35 feet wide (21.3 meters long and 10.7 meters wide). +t 5 4 (long) cubits +approximately 35 feet long and 35 feet wide (10.7 meters long and 10.7 meters wide). + + is approximately 12.25 feet or 3.7 meters. + +Or + +the length of the inner sanctuary + +The outer sanctuary was approximately 70 feet + +r 4 + is approximately 3.5 feet or 1.1 meters. +the Holy of Holies + +s 4 + +The room was + +Or + + is approximately 7 feet or 2.1 meters. + + 11 + +The side rooms opened into this area, with one +entrance on the north and another on the south. +12 +The open area was five cubits wide all around. + +a + +Now the building that faced the temple court- +yard on the west was seventy cubits wide, + and +the wall of the building was five cubits thick all +13 +around, with a length of ninety cubits. + +b + +c + +Then he measured the temple to be a hundred +cubits long, + and the temple courtyard and the +14 +building with its walls were also a hundred cu- +bits long. +The width of the temple courtyard on +the east, including the front of the temple, was a +The Interior Structures +hundred cubits. +15 + +Next he measured the length of the building +facing the temple courtyard at the rear of the +temple, including its galleries on each side; it was +a hundred cubits. The outer sanctuary, the inner +16 +sanctuary, and the porticoes facing the court, +as well as the thresholds and the beveled win- +dows and the galleries all around with their three +levels opposite the threshold, were overlaid with +wood on all sides. They were paneled from the +ground to the windows, and the windows were +17 +covered. + +19 + +In the space above the outside of the entrance +to the inner sanctuary on all the walls, spaced +18 +evenly around the inner and outer sanctuary, +were alternating carved cherubim and palm +the face of a +trees. Each cherub had two faces: +man was toward the palm tree on one side, and +the face of a young lion was toward the palm tree +on the other side. They were carved all the way +around the temple. +Cherubim and palm trees +were carved on the wall of the outer sanctuary +21 +from the floor to the space above the entrance. + +20 + +The outer sanctuary had a rectangular door- +frame, and the doorframe of the sanctuary was +22 +similar. + +d +There was an altar of wood three cubits high +and two cubits square. + Its corners, base, and +sides were of wood. And the man told me, “This +23 +is the table that is before the LORD.” + +24 + +Both the outer sanctuary and the inner sanctu- +and each door had two + +a 12 70 (long) cubits +ary had double doors, + +c 13 100 (long) cubits + +Ezekiel 42:12 | 785 + +25 + +26 + +swinging panels. There were two panels for one +door and two for the other. +Cherubim and +palm trees like those on the walls were carved on +the doors of the outer sanctuary, and there was a +wooden canopy outside, on the front of the por- +There were beveled windows and palm +tico. +trees on the sidewalls of the portico. The side +Chambers for the Priests +rooms of the temple also had canopies. + +42 + +2 + +Then the man led me out northward into +the outer court, and he brought me to the +group of chambers opposite the temple court- +The +yard and the outer wall on the north side. +building with the door facing north was a hun- +dred cubits long and fifty cubits wide. +Gallery +faced gallery in three levels opposite the twenty + that belonged to the inner court and op- +cubits +posite the pavement that belonged to the outer +4 +court. + +3 + +e + + f + +g + +In front of the chambers was an inner walkway + Their + +ten cubits wide and a hundred cubits long. +5 +doors were on the north. + +7 + +Now the upper chambers were smaller because +the galleries took more space from the chambers +6 +on the lower and middle floors of the building. +For they were arranged in three stories, and un- +like the courts, they had no pillars. So the upper +chambers were set back further than the lower +An outer wall in front of the +and middle floors. +chambers was fifty cubits long and ran parallel to +For the +the chambers and the outer court. +chambers on the outer court were fifty cubits +9 +long, while those facing the temple were a hun- +And below these chambers +dred cubits long. +was the entrance on the east side as one enters +10 +them from the outer court. + +8 + + h + +11 + +On the south side + + along the length of the wall +of the outer court were chambers adjoining the +courtyard and opposite the building, +with a +passageway in front of them, just like the cham- +bers that were on the north. They had the same +length and width, with similar exits and dimen- +And corresponding to the doors of the +sions. +chambers that were facing south, there was a +door in front of the walkway that was parallel to +the wall extending eastward. + +b 12 90 (long) cubits + +12 + +d 22 + +long + + is approximately 122.5 feet or 37.3 meters. + + is approximately 157.5 feet or 48 +e 2 + is approximately 175 feet or 53.3 meters; similarly in verses 14 and 15. + +meters. +altar was approximately 5.25 feet high and 3.5 feet square (1.6 meters high and 1.1 meters square) +approximately 175 feet long and 87.5 feet wide (53.3 meters long and 26.7 meters wide). +approximately 35 feet or 10.7 meters. +meters wide and 53.3 meters long). Hebrew + +ten cubits wide and a cubit long. +h 10 +LXX. The walkway was approximately 17.5 feet wide and 175 feet long (5.3 + +; the +The building was + +f 3 20 (long) cubits + +LXX; Hebrew + +east side + +g 4 + +Or + + is + + 786 | Ezekiel 42:13 + +13 + +6 + +14 + +Then the man said to me, “The north and south +chambers facing the temple courtyard are the +holy chambers where the priests who approach +the LORD will eat the most holy offerings. There +they will place the most holy offerings—the +grain offerings, the sin offerings, and the guilt of- +ferings—for the place is holy. +Once the priests +have entered the holy area, they must not go out +into the outer court until they have left behind +the garments in which they minister, for these +are holy. They are to put on other clothes before +The Outer Measurements +they approach the places that are for the people.” +15 + +Now when the man had finished measuring +the interior of the temple area, he led me out by +the gate that faced east, and he measured the +area all around: + +16 + +a + +With a measuring rod he measured the + +17 +east side to be five hundred cubits long. +He measured the north side to be five + +18 +hundred cubits long. + +He measured the south side to be five + +19 +hundred cubits long. + +20 + +And he came around and measured the +west side to be five hundred cubits long. + +So he measured the area on all four sides. It +had a wall all around, five hundred cubits long +and five hundred cubits wide, to separate the +The Glory of the LORD Returns to the Temple +holy from the common. + +43 + +2 +Then the man brought me back to the +and I saw the glory +gate that faces east, +of the God of Israel coming from the east. His +voice was like the roar of many waters, and the +3 +earth shone with His glory. + + b + +4 + +The vision I saw was like the vision I had seen +when He came + to destroy the city and like the +visions I had seen by the River Kebar. I fell +facedown, +and the glory of the LORD entered +the temple through the gate facing east. +Then +the Spirit lifted me up and brought me into the +inner court, and the glory of the LORD filled the +temple. +a 16 + +five hundred cubits + +5 + +While the man was standing beside me, I heard +7 +someone speaking to me from inside the temple, +and He said to me, “Son of man, this is the place +of My throne and the place for the soles of My +feet, where I will dwell among the Israelites for- +ever. The house of Israel will never again defile + c +My holy name—neither they nor their kings—by +their prostitution and by the funeral offerings +for their kings at their deaths. +When they +placed their threshold next to My threshold and +their doorposts beside My doorposts, with only a +wall between Me and them, they defiled My holy +name by the abominations they committed. +9 +Therefore I have consumed them in My anger. +Now let them remove far from Me their prosti- +tution and the funeral offerings for their kings, +10 +and I will dwell among them forever. + +8 + +d + + e + +11 + +As for you, son of man, describe the temple +to the people of Israel, so that they may be +ashamed of their iniquities. Let them measure + of all they +and if they are ashamed +the plan, +have done, then make known to them the design +of the temple—its arrangement and its exits and +entrances—its whole design along with all its +statutes, forms, and laws. Write it down in their +sight, so that they may keep its complete design +12 +and all its statutes and may carry them out. + +This is the law of the temple: All its surround- +ing territory on top of the mountain will be most +The Altar of Sacrifice +holy. Yes, this is the law of the temple. +13 + + f + +These are the measurements of the altar in +long cubits + (a cubit and a handbreadth): Its gut- +ter shall be a cubit deep and a cubit wide, with a +rim of one span + around its edge. + +14 + + g + +h + +The space +And this is the height of the altar: +from the gutter on the ground to the lower ledge +shall be two cubits, and the ledge one cubit + The space from the smaller ledge to the +wide. +larger ledge shall be four cubits, and the ledge +15 +one cubit wide. + +i + +The altar hearth shall be four cubits high, and +four horns shall project upward from the hearth. + +five hundred reeds, with the measuring reed round about + + from verse 17 LXX and implied in verses 16, 18, 19, and 20 is approx. 875 feet or 266.7 + +when I + +See LXX; +c 7 + +meters in length. Hebrew +came +meters; similarly in verses 17, 18, 19, and 20. +and they will be ashamed +Or +; also in verse 9 + +the monuments + +long cubit + +f 13 + +b 3 +d 7 + +The + +for their kings on their high places + +, that is approx. 5,250 feet or 1,600 +Some Hebrew manuscripts and Vulgate; most Heb. manuscripts +Or + +Hebrew; LXX and Vulgate +, about 21 inches or 53.3 centimeters, is the basic unit for linear +i 14 + is approx. 9 inches or 22.9 centimeters. + +The space was to + +h 14 + +e 11 + +g 13 One span + +measurement throughout Ezekiel 40–48. +be approx. 3.5 feet (1.1 meters), and the ledge was to be approx. 1.75 feet wide (53.3 centimeters wide). +was to be approx. 7 feet (2.1 meters), and the ledge was to be approx. 1.75 feet wide (53.3 centimeters wide). + +The space + + 16 + +a +The altar hearth shall be square at its four cor- +17 +ners, twelve cubits long and twelve cubits wide. + +b + + c + +The ledge shall also be square, fourteen cubits + with a rim of half + and a gutter of a cubit all around it. The + +long and fourteen cubits wide, +a cubit +18 +steps of the altar shall face east.” + +19 + +20 + +Then He said to me: “Son of man, this is what +the Lord GOD says: ‘These are the statutes for the +altar on the day it is constructed, so that burnt +offerings may be sacrificed on it and blood may +You are to give a young bull +be splattered on it: +from the herd as a sin offering to the Levitical +priests who are of the family of Zadok, who ap- +proach Me to minister before Me, declares the +You are to take some of its blood +Lord GOD. +and put it on the four horns of the altar, on the +four corners of the ledge, and all around the rim; +thus you will cleanse the altar and make atone- +Then you are to take away the bull +ment for it. +for the sin offering and burn it in the appointed +22 +part of the temple area outside the sanctuary. + +21 + +On the second day you are to present an un- +blemished male goat as a sin offering, and the al- +23 +tar is to be cleansed as it was with the bull. +When you have finished the purification, you +are to present a young, unblemished bull and an +You must +unblemished ram from the flock. +present them before the LORD; the priests are to +sprinkle salt on them and sacrifice them as a +25 +burnt offering to the LORD. + +24 + +26 + +For seven days you are to provide a male goat +daily for a sin offering; you are also to provide a +young bull and a ram from the flock, both un- +For seven days the priests are to +blemished. +d +make atonement for the altar and cleanse it; so +they shall consecrate it. +At the end of these +days, from the eighth day on, the priests are to +present your burnt offerings and peace offerings +on the altar. Then I will accept you, declares the +The East Gate Assigned to the Prince +Lord GOD.’ + +27 + +” + +44 + +2 + +The man then brought me back to the +outer gate of the sanctuary that faced +east, but it was shut. +And the LORD said to me, +“This gate is to remain shut. It shall not be +opened, and no man shall enter through it, be- +cause the LORD, the God of Israel, has entered +Only +through it. Therefore it will remain shut. +a 16 12 (long) cubits +the prince himself may sit inside the gateway to +c 17 A half cubit + +3 + +Ezekiel 44:14 | 787 + +eat in the presence of the LORD. He must enter +by way of the portico of the gateway and go out +4 +the same way.” + +5 + +Then the man brought me to the front of the +temple by way of the north gate. I looked and saw +the glory of the LORD filling His temple, and I fell +The LORD said to me: “Son of man, +facedown. +pay attention; look carefully with your eyes and +listen closely with your ears to everything I tell +you concerning all the statutes and laws of the +house of the LORD. Take careful note of the en- +trance to the temple, along with all the exits of +Reproof of the Levites +the sanctuary. +6 + +7 + +Tell the rebellious house of Israel that this is +what the Lord GOD says: ‘I have had enough of all +In addi- +your abominations, O house of Israel. +tion to all your other abominations, you brought +in foreigners uncircumcised in both heart and +flesh to occupy My sanctuary; you defiled My +temple when you offered My food—the fat and +And you +the blood; you broke My covenant. +have not kept charge of My holy things, but have +appointed others to keep charge of My sanctuary +9 +for you.’ + +8 + +This is what the Lord GOD says: No foreigner +uncircumcised in heart and flesh may enter My +sanctuary—not even a foreigner who lives +10 +among the Israelites. + +11 + +Surely the Levites who wandered away from +Me when Israel went astray, and who wandered +away from Me after their idols, will bear the con- +Yet they shall be +sequences of their iniquity. +ministers in My sanctuary, having charge of the +gates of the temple and ministering there. They +shall slaughter the burnt offerings and other sac- +rifices for the people and stand before them to +12 +minister to them. + +13 + +Because they ministered before their idols and +became a stumbling block of iniquity to the +house of Israel, therefore I swore with an uplifted +hand concerning them that they would bear the +consequences of their iniquity, declares the Lord +They must not approach Me to serve Me +GOD. +as priests or come near any of My holy things or +the most holy things. They will bear the shame of +Yet I +the abominations they have committed. +will appoint them to keep charge of all the work +for the temple and everything to be done in it. + +14 + +b 17 14 (long) cubits + +d 26 + +fill its hand + is approximately 24.5 feet or 7.5 meters. + + is approximately 21 feet or 6.4 meters. + is approximately 10.5 inches or 26.7 centimeters. + +Hebrew + + 788 | Ezekiel 44:15 + +The Duties of the Priests + +28 + +15 + +But the Levitical priests, who are descended +from Zadok and who kept charge of My sanctu- +ary when the Israelites went astray from Me, are +to approach Me to minister before Me. They will +stand before Me to offer Me fat and blood, de- +They alone shall enter My +clares the Lord GOD. +sanctuary and draw near to My table to minister +17 +before Me. They will keep My charge. + +16 + +18 + +When they enter the gates of the inner court, +they are to wear linen garments; they must not +wear anything made of wool when they minister +at the gates of the inner court or inside the tem- +They are to wear linen turbans on their +ple. +heads and linen undergarments around their +waists. They must not wear anything that makes +19 +them perspire. + +When they go out to the outer court, to the +people, they are to take off the garments in which +they have ministered, leave them in the holy +chambers, and dress in other clothes so that they +do not transmit holiness to the people with their +20 +garments. + +22 + +They must not shave their heads or let their +21 +hair grow long, but must carefully trim their hair. +No priest may drink wine before he enters the +And they shall not marry a widow +inner court. +or a divorced woman, but must marry a virgin of +the descendants of the house of Israel, or a +They are to teach My people +widow of a priest. +the difference between the holy and the common +and show them how to discern between the clean +24 +and the unclean. + +23 + +In any dispute, they shall officiate as judges +and judge according to My ordinances. They +must keep My laws and statutes regarding all My +appointed feasts, and they must keep My Sab- +25 +baths holy. + +27 + +26 + +A priest must not defile himself by going near +a dead person. However, for a father, a mother, a +son, a daughter, a brother, or an unmarried sis- +and after he is cleansed, he +ter, he may do so, +And on +must count off seven days for himself. +the day he goes into the sanctuary, into the inner +court, to minister in the sanctuary, he must pre- +a 1 +sent his sin offering, declares the Lord GOD. +cubits +kilometers wide). Hebrew +d 3 + +25,000 cubits long and 10,000 wide + + is approximately 875 feet or 266.7 meters. +f 5 + +the Holy of Holies + +e 3 + +In regard to their inheritance, I am their inher- +itance. You are to give them no possession in +29 +Israel, for I am their possession. + +30 + +They shall eat the grain offerings, the sin offer- +ings, and the guilt offerings. Everything in Israel +The +devoted to the LORD will belong to them. +best of all the firstfruits and of every contribu- +tion from all your offerings will belong to the +priests. You are to give your first batch of dough +to the priest, so that a blessing may rest upon +The priests may not eat any bird +your homes. +Consecration of the Land +or animal found dead or torn by wild beasts. + +31 + +45 + +“When you divide the land by lot as an +inheritance, you are to set aside a por- +tion for the LORD, a holy portion of the land + This +25,000 cubits long and 20,000 cubits wide. +2 +entire tract of land will be holy. +b + + c +Within this area there is to be a section for the + +a + +sanctuary 500 cubits square, +3 +around it for open land. + + with 50 cubits + +e + +d + +4 + +From this holy portion, you are to measure off a +length of 25,000 cubits and a width of 10,000 +cubits, + and in it will be the sanctuary, the Most +Holy Place. +It will be a holy portion of the land +to be used by the priests who minister in the +sanctuary, who draw near to minister before the +LORD. It will be a place for their houses, as well +5 +as a holy area for the sanctuary. + +An adjacent area 25,000 cubits long and 10,000 +cubits wide shall belong to the Levites who min- +ister in the temple; it will be their possession for +6 +towns in which to live. + +f + +g + +As the property of the city, you are to set aside +an area 5,000 cubits wide and 25,000 cubits +long, + adjacent to the holy district. It will belong +The Prince’s Portion +to the whole house of Israel. +7 + +Now the prince will have the area bordering +each side of the area formed by the holy +district and the property of the city, extending +westward from the western side and eastward +from the eastern side, running lengthwise from +the western boundary to the eastern boundary +This +and parallel to one of the tribal portions. +land will be his possession in Israel. + +8 + +b 2 500 (long) + +LXX; the holy portion was to be approximately 8.3 miles long and 6.6 miles wide (13.3 kilometers long and 10.7 + +c 2 50 (long) cubits + +. See also verses 3 and 5 and Ezekiel 48:9. +g 6 + +their possession, twenty chambers + + is approximately 87.5 feet or 26.7 meters. + +The portion was to be approximately 8.3 miles long and 3.3 miles wide (13.3 kilometers long and 5.3 kilometers wide); + +similarly in verse 5. +LXX; Hebrew +the city was to be approximately 1.7 miles wide and 8.3 miles long (2.7 kilometers wide and 13.3 kilometers long). + +The property of + +Or + + 9 + +And My princes will no longer oppress My peo- +ple, but will give the rest of the land to the house +For this is +of Israel according to their tribes. +what the Lord GOD says: ‘Enough, O princes of +Israel! Cease your violence and oppression, and +do what is just and right. Stop dispossessing My +Honest Scales (De. 25:13–16 ; Prov. 11:1–3) +people, declares the Lord GOD.’ +a +10 + +b + +You must use honest scales, a just ephah, + +11 +a just bath. + + and + +The ephah and the bath shall be the same +quantity so that the bath will contain a tenth of a +homer, and the ephah a tenth of a homer; the +d +12 +homer will be the standard measure for both. + +c + +The shekel will consist of twenty gerahs. +Twenty shekels plus twenty-five shekels plus fif- +Offerings and Feasts +teen shekels will equal one mina. +13 + +e + + g + +This is the contribution you are to offer: a sixth +f +of an ephah from each homer of wheat, and a +14 +sixth of an ephah from each homer of barley. +The prescribed portion of oil, measured by the +bath, is a tenth of a bath from each cor + (a cor +15 +consists of ten baths or one homer, since ten +baths are equivalent to a homer). +And one +sheep shall be given from each flock of two hun- +dred from the well-watered pastures of Israel. +These are for the grain offerings, burnt offerings, +and peace offerings, to make atonement for the +16 +people, declares the Lord GOD. + +17 + +All the people of the land must participate in +this contribution for the prince in Israel. +And it +shall be the prince’s part to provide the burnt of- +ferings, grain offerings, and drink offerings for +the feasts, New Moons, and Sabbaths—for all the +appointed feasts of the house of Israel. He will +provide the sin offerings, + grain offerings, burnt +offerings, and peace offerings to make atone- +18 +ment for the house of Israel. + +h + +This is what the Lord GOD says: ‘On the first +day of the first month you are to take a young bull +And +without blemish and purify the sanctuary. +a 10 An ephah +the priest is to take some of the blood from the +c 11 A homer + +19 + +Ezekiel 46:5 | 789 + +sin offering and put it on the doorposts of the +temple, on the four corners of the ledge of the al- +20 +tar, and on the gateposts of the inner court. +You must do the same thing on the seventh day +of the month for anyone who strays unintention- +ally or in ignorance. In this way you will make +21 +atonement for the temple. + +23 + +On the fourteenth day of the first month you +are to observe the Passover, a feast of seven days, +22 +during which unleavened bread shall be eaten. +On that day the prince shall provide a bull as a +sin offering for himself and for all the people of +Each day during the seven days of the +the land. +feast, he shall provide seven bulls and seven rams +without blemish as a burnt offering to the LORD, +He +along with a male goat for a sin offering. +shall also provide as a grain offering an ephah for +25 +each bull and an ephah for each ram, along with +Dur- +a hin of olive oil for each ephah of grain. +ing the seven days of the feast that begins on the +fifteenth day of the seventh month, + he is to make +the same provision for sin offerings, burnt offer- +The Prince’s Offerings +ings, grain offerings, and oil.’ + +24 + +i + +j + +46 + +2 + +“This is what the Lord GOD says: ‘The +gate of the inner court that faces east +must be kept shut during the six days of work, +but on the Sabbath day and on the day of the New +The prince is to enter +Moon it shall be opened. +from the outside through the portico of the gate- +way and stand by the gatepost, while the priests +sacrifice his burnt offerings and peace offerings. +He is to bow in worship at the threshold of the +gate and then depart, but the gate must not be +On the Sabbaths and New +shut until evening. +Moons the people of the land are also to bow in +worship before the LORD at the entrance to that +4 +gateway. + +3 + +5 + +The burnt offering that the prince presents to +the LORD on the Sabbath day shall be six +unblemished male lambs and an unblemished +The grain offering with the ram shall be +ram. +one ephah, + and the grain offering with the lambs +shall be as much as he is able, along with a + +b 10 A bath + +k + +d 12 20 gerahs +gallons or 22 liters. + + is a dry measure of approx. 20 dry quarts or 22 liters. + + was a liquid measure of approx. 5.8 + +e 12 + + was a dry measure of approx. 6.24 bushels or 220 liters; also in verses 13 and 14. + +a tenth of a bath + +a sixth of an ephah + + is equivalent to one shekel (approx. 0.4 ounces or 11.4 grams). +common mina was 50 shekels. Sixty shekels weighed approx. 1.5 pounds or 683.8 grams. +purification offerings + was approx. 3.3 dry quarts or 3.7 liters. +harvest of wheat and of barley; +i 24 +one’s oil; +j 25 +Shelters + +Literally +That is, Sukkot, the autumn feast of pilgrimage to Jerusalem; also translated as + + was approx. 2.3 quarts or 2.2 liters. + +a hin of oil for each ephah + +the Feast of Ingathering + +h 17 + +Or + +That is, 60 shekels total; elsewhere, the + +That is, a sixtieth of the +That is, one percent of +; also in verses 19, 22, 23, 25 + +the Feast of + +the Feast of Booths + +; that is, approx. 0.97 gallons or 3.67 liters of oil for each ephah of grain + +k 5 An ephah + + or + + and originally called + + (see Exodus 23:16 and Exodus 34:22). + + is approx. 20 + +dry quarts or 22 liters (probably about 38.3 pounds or 17.4 kilograms of grain); also in verses 7 and 11. + +f 13 +g 14 + + 790 | Ezekiel 46:6 + +6 + +7 + +On the day of the New +hin of oil per ephah. +Moon he shall offer a young, unblemished bull, +He is to +six lambs, and a ram without blemish. +provide a grain offering of an ephah with the bull, +an ephah with the ram, and as much as he is able +8 +with the lambs, along with a hin of oil per ephah. +When the prince enters, he shall go in through +the portico of the gateway, and he shall go out the +9 +same way. + +When the people of the land come before the +LORD at the appointed feasts, whoever enters by +the north gate to worship must go out by the +south gate, and whoever enters by the south gate +must go out by the north gate. No one is to return +through the gate by which he entered, but each +10 +must go out by the opposite gate. + +When the people enter, the prince shall go in +11 +with them, and when they leave, he shall leave. +At the festivals and appointed feasts, the grain +offering shall be an ephah with a bull, an ephah +with a ram, and as much as one is able to give +12 +with the lambs, along with a hin of oil per ephah. + +When the prince makes a freewill offering to +the LORD, whether a burnt offering or a peace +offering, the gate facing east must be opened for +him. He is to offer his burnt offering or peace of- +fering just as he does on the Sabbath day. Then +he shall go out, and the gate must be closed after +13 +he goes out. + + a + +14 + +And you shall provide an unblemished year- +old lamb as a daily burnt offering to the LORD; +You are also +you are to offer it every morning. + b +to provide with it every morning a grain offering +of a sixth of an ephah +to moisten the fine flour—a grain offering to the +Thus they +LORD. This is a permanent statute. +shall provide the lamb, the grain offering, and the +16 +oil every morning as a regular burnt offering.’ + + with a third of a hin of oil + +15 + +17 + +This is what the Lord GOD says: ‘If the prince +gives a gift to any of his sons as an inheritance, it +will belong to his descendants. It will become +But if he gives a +their property by inheritance. +gift from his inheritance to one of his servants, it +will belong to that servant until the year of free- +dom; then it will revert to the prince. His inher- +18 +itance belongs only to his sons; it shall be theirs. + +The prince must not take any of the inher- +itance of the people by evicting them from their +property. He is to provide an inheritance for his +a 14 A sixth of an ephah +sons from his own property, so that none of My +a third of a hin of olive oil + +The Courts for Boiling and Baking +people will be displaced from his property.’ +19 + +” + +20 + +Then the man brought me through the en- +trance at the side of the gate into the holy cham- +bers facing north, which belonged to the priests, +and he showed me a place there at the far west- +and said to me, “This is the place +ern end +where the priests shall boil the guilt offering +and the sin offering, and where they shall bake +the grain offering, so that they do not bring them +into the outer court and transmit holiness to the +21 +people.” + +c + +22 + +Then he brought me into the outer court and +led me around to its four corners, and I saw a +In the +separate court in each of its corners. +four corners of the outer court there were en- +closed courts, each forty cubits long and thirty +23 +cubits wide. + Each of the four corner areas had +Around the inside of +the same dimensions. +each of the four courts was a row of masonry +with ovens built at the base of the walls on all +24 +sides. + +And he said to me, “These are the kitchens +where those who minister at the temple will +Waters from under the Temple +cook the sacrifices offered by the people.” + +47 + +the + +Then the man brought me back to the en- +I saw +trance of +water flowing from under the threshold of the +temple toward the east (for the temple faced +east). The water was coming down from under +2 +the south side of the temple, south of the altar. + +temple, and + +Next he brought me out through the north gate +and led me around the outside to the outer gate +facing east, and there I saw the water trickling +3 +out from the south side. + + d + +As the man went eastward with a measuring +line in his hand, he measured off a thousand +4 +cubits + + and led me through ankle-deep water. + +Then he measured off a thousand cubits and led + +me through knee-deep water. + +Again he measured a thousand cubits and led me +5 +through waist-deep water. + +Once again he measured off a thousand cubits, +but now it was a river that I could not cross, +because the water had risen and was deep +enough for swimming—a river that could not be +crossed on foot. +d 3 1,000 (long) cubits + +Or +The enclosed courts were approximately 70 feet long + +b 14 + +c 22 + + is approx. 3.3 dry quarts or 3.7 liters (probably about 4.2 pounds or 1.9 kilograms of flour). + +; that is, approx. 1.3 quarts or 1.2 liters + +and 52.5 feet wide (21.3 meters long and 16 meters wide). + + is approx. 1,750 feet or 533.4 meters. + + 6 + +“Son of man, do you see this?” he asked. Then he + +7 +led me back to the bank of the river. + +8 + +When I arrived, I saw a great number of trees +along both banks of the river. +And he said to me, +“This water flows out to the eastern region and +b +a +goes down into the Arabah. When it empties into +9 +the Dead Sea, + + the water there becomes fresh. + +Wherever the river flows, there will be swarms +of living creatures and a great number of fish, be- +cause it flows there and makes the waters fresh; +so wherever the river flows, everything will +10 +flourish. + +c + +Fishermen will stand by the shore; from En- +gedi to En-eglaim they will spread their nets to +catch fish of many kinds, like the fish of the Great +11 +Sea. + +But the swamps and marshes will not become + +12 +fresh; they will be left for salt. + +Along both banks of the river, fruit trees of all +kinds will grow. Their leaves will not wither, and +their fruit will not fail. Each month they will bear +fruit, because the water from the sanctuary flows +to them. Their fruit will be used for food and their +The Borders of the Land +leaves for healing.” +13 + +d + +This is what the Lord GOD says: “These are the +boundaries by which you are to divide the land +as an inheritance among the twelve tribes of +Israel; Joseph shall receive two portions. +You +are to divide it equally among them. Because +I swore with an uplifted hand to give it to +your forefathers, this land will fall to you as an +15 +inheritance. + +14 + +16 + +This shall be the boundary of the land: +On the north side it will extend from the + e +Great Sea by way of Hethlon through Lebo- +hamath to Zedad, +Berothah, and Sibraim +(which is on the border between Damascus +and Hamath), as far as Hazer-hatticon, which +is on the border of Hauran. +So the border +will run from the Sea to Hazar-enan, along +the northern border of Damascus, with the +territory of Hamath to the north. This will be +18 +the northern boundary. + +17 + +On the east side the border will run +between Hauran and Damascus, along the +Jordan between Gilead and the land of Israel, +b 8 +to the Eastern Sea and as far as Tamar. + This +d 13 +Literally + +is healed + +Hebrew + +the Sea + +f + +a 8 + +Ezekiel 48:9 | 791 + +19 +will be the eastern boundary. + + g + +On the south side it will run from Tamar to +the waters of Meribath-kadesh, and along +the Brook of Egypt + to the Great Sea. This +20 +will be the southern boundary. + +And on the west side, the Great Sea will be +the boundary up to a point opposite Lebo- +hamath. This will be the western boundary. + +21 + +22 + +You are to divide this land among yourselves +according to the tribes of Israel. +You shall allot +it as an inheritance for yourselves and for the +foreigners who dwell among you and who have +children. You are to treat them as native-born Is- +raelites; along with you, they shall be allotted an +inheritance among the tribes of Israel. +In what- +ever tribe a foreigner dwells, you are to assign +The Portions for the Tribes +his inheritance there,” declares the Lord GOD. + +23 + +48 + +“Now these are the names of the tribes: + +At the northern frontier, Dan will have +one portion bordering the road of Hethlon to +Lebo-hamath and running on to Hazar-enan +on the border of Damascus with Hamath to +the north, and extending from the east side +2 +to the west side. + +Asher will have one portion bordering the + +3 +territory of Dan from east to west. + +Naphtali will have one portion bordering + +4 +the territory of Asher from east to west. + +Manasseh will have one portion bordering + +5 +the territory of Naphtali from east to west. + +Ephraim will have one portion bordering +6 +the territory of Manasseh from east to west. +Reuben will have one portion bordering the + +7 +territory of Ephraim from east to west. + +Judah will have one portion bordering the + +The Portions for the Priests and Levites +territory of Reuben from east to west. + +8 + +h + +Bordering the territory of Judah, from east to +west, will be the portion you are to set apart. It +will be 25,000 cubits wide, + and the length of a +tribal portion from east to west. In the center will +9 +be the sanctuary. + +i + +The special portion you set apart to the LORD +shall be 25,000 cubits long and 10,000 cubits +wide. + +c 10 + +e 16 +verses 15, 19, and 20 +Sea and as far as Tamar +of Egypt +i 9 10,000 (long) cubits +. + +LXX; MT + +h 8 25,000 (long) cubits + +; Hebrew + +15 . . . through Lebo to Zedad, 16 Hamath, Berothah, and Sibraim + +; similarly in verses 9 and 11 +of Israel. And along the Eastern Sea you are to measure. + +Since Levi had no portion, Joseph’s sons Ephraim and Manasseh received land as two tribes. + +That is, the Mediterranean Sea; also in + +of Israel, to the Dead + +g 19 + +f 18 + + is approximately 8.3 miles or 13.3 kilometers; also in verses 9, 10, 13, 15, 20, and 21. + +See Syriac; that is, + +Hebrew does not include + + is approximately 3.3 miles or 5.3 kilometers; also in verses 10, 13, and 18. + + 792 | Ezekiel 48:10 + +10 + +This will be the holy portion for the priests. It +will be 25,000 cubits long on the north side, +10,000 cubits wide on the west side, 10,000 +cubits wide on the east side +, and 25,000 cubits +11 +long on the south side. In the center will be the +sanctuary of the LORD. +It will be for the conse- +crated priests, the descendants of Zadok, who +kept My charge and did not go astray as the +Levites did when the Israelites went astray. +It +will be a special portion for them set apart from +the land, a most holy portion + adjacent to the ter- +13 +ritory of the Levites. + +12 + + a + +Bordering the territory of the priests, the Le- +vites shall have an area 25,000 cubits long and +10,000 cubits wide. The whole length will be +14 +25,000 cubits, and the width 10,000 cubits. +They must not sell or exchange any of it, and +they must not transfer this best part of the land, +The Common Portion +for it is holy to the LORD. +15 + + b + +16 + +The remaining area, 5,000 cubits + + wide and +25,000 cubits long, will be for common use by the +city, for houses, and for pastureland. The city will + c +be in the center of it +and will have these meas- + on the north side, 4,500 +urements: 4,500 cubits +cubits on the south side, 4,500 cubits on the east +17 +side, and 4,500 cubits on the west side. + + d + +The pastureland of the city will extend 250 cu- + to the north, 250 cubits to the south, 250 + +bits +18 +cubits to the east, and 250 cubits to the west. + +The remainder of the length bordering the +holy portion and running adjacent to it will be +10,000 cubits on the east side and 10,000 cubits +19 +on the west side. Its produce will supply food for +the workers of the city. +The workers of the city +who cultivate it will come from all the tribes of +20 +Israel. + +The entire portion will be a square, 25,000 cu- +bits by 25,000 cubits. You are to set apart the +The Portion for the Prince +holy portion, along with the city property. +21 + +The remaining area on both sides of the holy +portion and of the property of the city will belong +to the prince. He will own the land adjacent to the +tribal portions, extending eastward from the +25,000 cubits of the holy district toward the east- +ern border, and westward from the 25,000 cu- +bits to the western border. And in the center of +a 12 +them will be the holy portion and the sanctuary + + b 15 5,000 (long) cubits + +a Most Holy Place + +22 +of the temple. + +So the Levitical property and the city property +will lie in the center of the area belonging to the +prince—the area between the borders of Judah +The Portions for the Remaining Tribes +and Benjamin. +23 + +As for the rest of the tribes: +Benjamin will have one portion extending +24 +from the east side to the west side. + +Simeon will have one portion bordering +25 +the territory of Benjamin from east to west. +Issachar will have one portion bordering + +26 +the territory of Simeon from east to west. + +Zebulun will have one portion bordering + +27 +the territory of Issachar from east to west. + +28 + +And Gad will have one portion bordering + +the territory of Zebulun from east to west. + +f + +29 + +The southern border of Gad will run from + e +Tamar to the waters of Meribath-kadesh, then +along the Brook of Egypt + and out to the Great +This is the land you are to allot as an in- +Sea. +heritance to the tribes of Israel, and these will be +The City Gates and Dimensions +their portions,” declares the Lord GOD. +30 + +31 + +“These will be the exits of the city: +Beginning on the north side, which will be +4,500 cubits long, +the gates of the city will +be named after the tribes of Israel. On the +north side there will be three gates: the gate +of Reuben, the gate of Judah, and the gate of +32 +Levi. + +On the east side, which will be 4,500 +cubits long, there will be three gates: the gate +of Joseph, the gate of Benjamin, and the gate +33 +of Dan. + +On the south side, which will be 4,500 cu- +bits long, there will be three gates: the gate +of Simeon, the gate of Issachar, and the gate +34 +of Zebulun. + +35 + +And on the west side, which will be 4,500 +cubits long, there will be three gates: the gate +of Gad, the gate of Asher, and the gate of +Naphtali. +g +The perimeter of the city will be 18,000 + and from that day on the name of the city + +h + +THE LORD IS THERE. +d 17 250 (long) cubits + +c 16 4,500 (long) cubits + +” +g 35 18,000 + is approximately + +cubits, +will be: + +. +Hebrew + +Or +is approximately 1.5 miles or 2.4 kilometers; also in verses 30, 32, 33, and 34. +(long) cubits +437.5 feet or 133.4 meters. + +Hebrew does not include + +f 28 +YHWH Shammah + + is approximately 1.7 miles or 2.7 kilometers. + +of Egypt + +That is, the Mediterranean Sea + +h 35 + +e 28 + + is approximately 6 miles or 9.6 kilometers. + + Daniel + +Daniel Removed to Babylon + +1 + +2 + +In the third year of the reign of Jehoiakim +king of Judah, Nebuchadnezzar king of Bab- +ylon came to Jerusalem and besieged it. +And the +Lord delivered into his hand Jehoiakim king of +Judah, along with some of the articles from the +house of God. He carried these off to the land of +Shinar, + to the house of his god, where he put +3 +them in the treasury of his god. + +a + + b + +4 + + and the nobility— + +Then the king ordered Ashpenaz, the chief of his +court officials, to bring in some Israelites from +the royal family +young men +without blemish, handsome, gifted in all wisdom, +knowledgeable, quick to understand, and quali- +fied to serve in the king’s palace—and to teach +them the language and literature of the Chalde- +5 +ans. + +c + +The king assigned them daily provisions of the +royal food and wine. They were to be trained for +three years, after which they were to enter the +6 +king’s service. + +Among these young men were some from +7 +Judah: Daniel, Hananiah, Mishael, and Azariah. +The chief official gave them new names: +To Daniel he gave the name Belteshazzar; to +Hananiah, Shadrach; to Mishael, Meshach; and to +Daniel’s Faithfulness +Azariah, Abednego. +8 + +But Daniel made up his mind that he would not +defile himself with the king’s food or wine. So he +asked the chief official for permission not to de- +9 +file himself. + +10 + +Now God had granted Daniel favor and compas- +sion from the chief official, +but he said to Dan- +iel, “I fear my lord the king, who has assigned +your food and drink. For why should he see your +faces looking thinner than those of the other +young men your age? You would endanger my +11 +head before the king!” + +13 + +servants for ten days. Let us be given only +vegetables to eat and water to drink. +Then +compare our appearances with those of the +young men who are eating the royal food, and +deal with your servants according to what you +14 +see.” + +15 + +So he consented to this and tested them for ten +days. +And at the end of ten days, they looked +healthier and better nourished than all the young +men who were eating the king’s food. +So the +steward continued to withhold their choice food +and the wine they were to drink, and he gave +Daniel’s Wisdom +them vegetables instead. +17 + +16 + +To these four young men God gave knowledge +and understanding in every kind of literature +and wisdom. And Daniel had insight into all kinds +18 +of visions and dreams. + +19 + +Now at the end of the time specified by the +king, the chief official presented them to +Nebuchadnezzar. +And the king spoke with +them, and among all the young men he found no +one equal to Daniel, Hananiah, Mishael, and Aza- +20 +riah. So they entered the king’s service. + +In every matter of wisdom and understanding +about which the king consulted them, he found +them ten times better than all the magicians and +enchanters in his entire kingdom. +And Daniel +Nebuchadnezzar’s Troubling Dream +remained there until the first year of King Cyrus. + +21 + +2 + + d + +2 + +In the second year of his reign, Nebuchad- +nezzar had dreams that troubled his spirit, +So the king gave orders +and sleep escaped him. +to summon the magicians, enchanters, sorcerers, + to explain his dreams. When +and astrologers +they came and stood before the king, +he said to +them, “I have had a dream, and my spirit is anx- +4 +ious to understand it.” + +3 + +e + +Then the astrologers answered the king in + “O king, may you live forever! Tell +Aramaic, +your servants the dream, and we will give the +interpretation.” + +Chaldeans + +d 2 + +c 4 + +Then Daniel said to the steward whom the +chief official had appointed over Daniel, Hana- +from the seed of the kingdom +a 2 +niah, Mishael, and Azariah, +“Please test your + +b 3 + +12 + +e 4 +That is, Babylonia + +verses 4, 5, and 10 + +The original text from this point of Daniel 2:4 through Daniel 7:28 is in Aramaic. + +Hebrew + +That is, the Babylonians + +Or + +; also in + + 794 | Daniel 2:5 + +5 + +The king replied to the astrologers, “My word is +final: If you do not tell me the dream and its in- +terpretation, you will be cut into pieces and your +houses will be reduced to rubble. +But if you tell +me the dream and its interpretation, you will re- +ceive from me gifts and rewards and great honor. +7 +So tell me the dream and its interpretation.” + +6 + +“Blessed be the name of God forever + +and ever, + +21 + +for wisdom and power belong to + +Him. + +He changes the times and seasons; + +He removes kings and establishes + +them. + +They answered a second time, “Let the king tell +the dream to his servants, and we will give the +8 +interpretation.” + +22 + +He gives wisdom to the wise + +and knowledge to the discerning. + +He reveals the deep and hidden + +9 + +The king replied, “I know for sure that you are +stalling for time because you see that my word is +final. +If you do not tell me the dream, there is +only one decree for you. You have conspired to +speak before me false and fraudulent words, +hoping the situation will change. Therefore tell +me the dream, and I will know that you can give +10 +me its interpretation.” + +11 + +The astrologers answered the king, “No one on +earth can do what the king requests! No king, +however great and powerful, has ever asked an- +ything like this of any magician, enchanter, or as- +trologer. +What the king requests is so difficult +that no one can tell it to him except the gods, +12 +whose dwelling is not with mortals.” + +13 + +This response made the king so angry and fu- +rious that he gave orders to destroy all the wise +men of Babylon. +So the decree went out that +the wise men were to be executed, and men went +to look for Daniel and his friends to execute +The Dream Revealed to Daniel +them. +14 + +When Arioch, the commander of the king’s +guard, went out to execute the wise men of Bab- +15 +ylon, Daniel responded with discretion and tact. +“Why is the decree from the king so harsh?” he + +asked. +16 +Then Arioch explained the situation to Daniel. +So Daniel went in and asked the king to give +him some time, so that he could give him the +17 +interpretation. + +18 + +Then Daniel returned to his house and ex- +plained the matter to his friends Hananiah, +Mishael, and Azariah, +urging them to plead for +mercy from the God of heaven concerning this +mystery, so that Daniel and his friends would +not be killed with the rest of the wise men of +19 +Babylon. + +20 + +During the night, the mystery was revealed to +Daniel in a vision, and he blessed the God of +heaven + +and declared: + +things; + +23 + +He knows what lies in darkness, +and light dwells with Him. +To You, O God of my fathers, +I give thanks and praise, +because You have given me +wisdom and power. + +And now You have made known to me + +what we have requested, +for You have made known to us + +Daniel Interprets the Dream + +the dream of the king.” + +24 + +Therefore Daniel went to Arioch, whom the +king had appointed to destroy the wise men of +Babylon, and said to him, “Do not execute the +wise men of Babylon! Bring me before the king, +25 +and I will give him the interpretation.” + +Arioch hastily brought Daniel before the king +and said to him, “I have found a man among the +exiles from Judah who will tell the king the inter- +26 +pretation.” + +The king responded to Daniel, whose name +was Belteshazzar, “Are you able to tell me what I +27 +saw in the dream, as well as its interpretation?” + +28 + +Daniel answered the king, “No wise man, en- +chanter, medium, or magician can explain to the +But +king the mystery of which he inquires. +there is a God in heaven who reveals mysteries, +and He has made known to King Nebuchadnez- +zar what will happen in the latter days. Your +dream and the visions that came into your mind +29 +as you lay on your bed were these: + +30 + +As you lay on your bed, O king, your thoughts +turned to the future, and the Revealer of Myster- +ies made known to you what will happen. +And +to me this mystery has been revealed, not be- +cause I have more wisdom than any man alive, +but in order that the interpretation might be +made known to the king, and that you may un- +derstand the thoughts of your mind. + + 31 + + a + +32 + +As you, O king, were watching, a great statue +appeared. A great and dazzling statue stood be- +fore you, and its form was awesome. +The head +of the statue was pure gold, its chest and arms +33 +were silver, its belly and thighs were bronze, +its legs were iron, and its feet were part iron + +b + +34 +and part clay. + +35 + +As you watched, a stone was cut out, + + but not +by human hands. It struck the statue on its feet of +Then the iron, +iron and clay, and crushed them. +clay, bronze, silver, and gold were shattered and +became like chaff on the threshing floor in sum- +mer. The wind carried them away, and not a +trace of them could be found. But the stone that +had struck the statue became a great mountain +36 +and filled the whole earth. + +This was the dream; now we will tell the king + +37 +its interpretation. + +38 + +You, O king, are the king of kings, to whom the +God of heaven has given sovereignty, power, +Wherever the sons of men +strength, and glory. +or beasts of the field or birds of the air dwell, He +has given them into your hand and has made you +39 +ruler over them all. You are that head of gold. + +But after you, there will arise another king- + +dom, inferior to yours. + +Next, a third kingdom, one of bronze, will rule the +40 +whole earth. + +42 + +41 + +Finally, there will be a fourth kingdom as +strong as iron; for iron shatters and crushes all +things, and like iron that crushes all things, it will +And just as +shatter and crush all the others. +you saw that the feet and toes were made partly +of fired clay and partly of iron, so this will be a +divided kingdom, yet some of the strength of iron +will be in it—just as you saw the iron mixed with +And as the toes of the feet were partly +clay. +iron and partly clay, so this kingdom will be +partly strong and partly brittle. +As you saw the +iron mixed with clay, so the peoples + will mix +with one another but will not hold together any +44 +more than iron mixes with clay. + +43 + + c + +In the days of those kings, the God of heaven +will set up a kingdom that will never be de- +stroyed, nor will it be left to another people. It +will shatter all these kingdoms and bring them to +And just as +an end, but will itself stand forever. +b 34 +a 31 +you saw a stone being cut out of the mountain +d 1 + +image + +image + +e 1 + +45 + +Daniel 3:7 | 795 + +without human hands, and it shattered the iron, +bronze, clay, silver, and gold, so the great God has +told the king what will happen in the future. + +The dream is true, and its interpretation is trust- +Nebuchadnezzar Promotes Daniel +worthy.” +46 + +47 + +At this, King Nebuchadnezzar fell on his face, +paid homage to Daniel, and ordered that an offer- +The king +ing and incense be presented to him. +said to Daniel, “Your God is truly the God of gods +and Lord of kings, the Revealer of Mysteries, +48 +since you were able to reveal this mystery.” + +49 + +Then the king promoted Daniel and gave him +many generous gifts. He made him ruler over the +entire province of Babylon and chief administra- +And at +tor over all the wise men of Babylon. +Daniel’s request, the king appointed Shadrach, +Meshach, and Abednego to manage the province +of Babylon, while Daniel remained in the king’s +Nebuchadnezzar’s Golden Statue +court. + +3 + + d + +2 + +King Nebuchadnezzar made a golden +e +statue + sixty cubits high and six cubits +wide, + and he set it up on the plain of Dura in the +Then King Nebuchadnez- +province of Babylon. +zar sent word to assemble the satraps, prefects, +governors, advisers, treasurers, judges, magis- +trates, and all the other officials of the provinces +to attend the dedication of the statue he had +3 +set up. + +So the satraps, prefects, governors, advisers, +treasurers, judges, magistrates, and all the rulers +of the provinces assembled for the dedication of +the statue that King Nebuchadnezzar had set up, +4 +and they stood before it. + +5 + +Then the herald loudly proclaimed, “O people of +every nation and language, this is what you are +commanded: +As soon as you hear the sound of +f +the horn, flute, zither, lyre, harp, pipes, and all + you must fall down and worship +kinds of music, +6 +the golden statue that King Nebuchadnezzar has +And whoever does not fall down and +set up. +worship will immediately be thrown into the +7 +blazing fiery furnace.” + +Therefore, as soon as all the people heard the +sound of the horn, flute, zither, lyre, harp, and all +cut out from a mountain c 43 +kinds of music, the people of every nation and + +the seed of men + +Or + +Or + +; here and through the rest of Daniel 2 + +f 5 + +LXX + +Aramaic + +; here and throughout Daniel 3 + +The statue was approximately 90 feet high and 9 feet wide (27.4 meters + +high and 2.7 meters wide). + +The precise identification of some musical instruments in this chapter is uncertain. + + 796 | Daniel 3:8 + +language would fall down and worship the +golden statue that King Nebuchadnezzar had +Shadrach, Meshach, and Abednego Accused +set up. +8 + + a + +9 + +10 + +At this time some astrologers + + came forward +saying to +and maliciously accused the Jews, +King Nebuchadnezzar, “O king, may you live for- +You, O king, have issued a decree that +ever! +everyone who hears the sound of the horn, flute, +zither, lyre, harp, pipes, and all kinds of music +11 +must fall down and worship the golden statue, +and that whoever does not fall down and wor- +12 +ship will be thrown into the blazing fiery furnace. +But there are some Jews you have appointed to +manage the province of Babylon—Shadrach, +Meshach, and Abednego—who have ignored +you, O king, and have refused to serve your gods +13 +or worship the golden statue you have set up.” + +15 + +14 + +Then Nebuchadnezzar, furious with rage, sum- +moned Shadrach, Meshach, and Abednego. So +and +these men were brought before the king, +Nebuchadnezzar said to them, “Shadrach, Me- +shach, and Abednego, is it true that you do not +serve my gods or worship the golden statue I +Now when you hear the sound of +have set up? +the horn, flute, zither, lyre, harp, pipes, and all +kinds of music, if you are ready to fall down and +worship the statue I have made, very good. But if +you refuse to worship, you will be thrown at once +into the blazing fiery furnace. Then what god will +16 +be able to deliver you from my hands?” + +18 + +Shadrach, Meshach, and Abednego replied to +17 +the king, “O Nebuchadnezzar, we have no need to + b +If the God whom we +answer you in this matter. +serve exists, then He is able + to deliver us from +the blazing fiery furnace and from your hand, O +But even if He does not, let it be known to +king. +you, O king, that we will not serve your gods or +The Fiery Furnace +worship the golden statue you have set up.” +19 + +20 + +At this, Nebuchadnezzar was filled with rage, +and the expression on his face changed toward +Shadrach, Meshach, and Abednego. He gave or- +ders to heat the furnace seven times hotter than +and he commanded some mighty men of +usual, +valor in his army to tie up Shadrach, Meshach, +and Abednego and throw them into the blazing +21 +fiery furnace. + +22 + +23 + +The king’s command was so urgent and the +furnace so hot that the fiery flames killed the +men who carried up Shadrach, Meshach, and +Abednego. +And these three men, Shadrach, +Meshach, and Abednego, firmly bound, fell into +24 +the blazing fiery furnace. + +Suddenly King Nebuchadnezzar jumped up in +amazement and asked his advisers, “Did we not +throw three men, firmly bound, into the fire?” +25 +“Certainly, O king,” they replied. + +“Look!” he exclaimed. “I see four men, un- + c +bound and unharmed, walking around in the +26 +” +fire—and the fourth looks like a son of the gods! + +Then Nebuchadnezzar approached the door of +the blazing fiery furnace and called out, “Shad- +rach, Meshach, and Abednego, servants of the +Most High God, come out!” + +27 + +So Shadrach, Meshach, and Abednego came out +and when the satraps, prefects, gov- +of the fire, +ernors, and royal advisers had gathered around, +they saw that the fire had no effect on the bodies +of these men. Not a hair of their heads was +singed, their robes were unaffected, and there +28 +was no smell of fire on them. + + d + +29 + +Nebuchadnezzar declared, “Blessed be the God +of Shadrach, Meshach, and Abednego, who has +sent His angel + and delivered His servants who +trusted in Him. They violated the king’s com- +mand and risked their lives rather than serve or +There- +worship any god except their own God. +fore I decree that the people of any nation or +language who say anything offensive against the +God of Shadrach, Meshach, and Abednego will +be cut into pieces and their houses reduced to +rubble. For there is no other god who can deliver +30 +in this way.” + +Then the king promoted Shadrach, Meshach, + +Nebuchadnezzar Confesses God’s Kingdom +and Abednego in the province of Babylon. + +4 + +King Nebuchadnezzar, + +To the people of every nation and language + +2 + +who dwell in all the earth: + +I am pleased +May your prosperity be multiplied. +to declare the signs and wonders that the Most +3 +High God has performed for me. + +So they were tied up, wearing robes, trousers, +turbans, and other clothes, and they were +b 17 +a 8 +thrown into the blazing fiery furnace. + +Chaldeans + +If this be so, then the God whom we serve is able + +How great are His signs, + +like the Son of God +how mighty His wonders! + +c 25 + +d 28 + +Angel + +Or + +Or + +Or + +Or + + His kingdom is an eternal kingdom; + +Let his mind be changed from that of a + +16 + +Daniel 4:24 | 797 + +His dominion endures from generation to + +Nebuchadnezzar’s Dream of a Great Tree + +generation. + +4 + +5 + +I, Nebuchadnezzar, was at ease in my house and +I had a dream, and it +flourishing in my palace. +6 +frightened me; while I was in my bed, the images +So I issued +and visions in my mind alarmed me. +a decree that all the wise men of Babylon be +a +7 +brought before me to interpret the dream for me. +When the magicians, enchanters, astrologers, +and diviners came in, I told them the dream, but +8 +they could not interpret it for me. + +9 + +But at last, into my presence came Daniel +(whose name is Belteshazzar after the name of +my god, and in whom is the spirit of the holy +“O Belteshaz- +gods). And I told him the dream: +zar, chief of the magicians, I know that the spirit +of the holy gods is in you and that no mystery baf- +fles you. So explain to me the visions I saw in my +In these vi- +dream, and their interpretation. +sions of my mind as I was lying in bed, I saw this +come to pass: + +10 + +There was a tree in the midst of the land, + +11 + +and its height was great. +The tree grew large and strong; +its top reached the sky, + +and it was visible + +12 + +to the ends of the earth. + +Its leaves were beautiful, +its fruit was abundant, +and upon it was food for all. + +Under it the beasts of the field found shelter, +in its branches the birds of the air nested, +and from it every creature was fed. + +13 + +b + +As I lay on my bed, I also saw in the visions of + a holy one, coming down + +14 + +my mind a watcher, +from heaven. + +He called out in a loud voice: + +‘Cut down the tree and chop off its branches; +strip off its leaves and scatter its fruit. + +Let the beasts flee from under it, + +15 + +and the birds from its branches. +But leave the stump with its roots in the + +ground, + +with a band of iron and bronze around it, +in the tender grass of the field. + +Let him be drenched with the dew of heaven +and graze with the beasts on the grass of +Chaldeans + +an angelic watcher + +a messenger + +a 7 + +b 13 +the earth. + +man, + +17 + +and let him be given the mind of a beast +till seven times pass him by. + +This decision is the decree of the watchers, +the verdict declared by the holy ones, +so that the living will know + +that the Most High rules over the kingdom + +of mankind + +18 + +and gives it to whom He wishes, +setting over it the lowliest of men.’ + +This is the dream that I, King Nebuchadnezzar, +saw. Now, Belteshazzar, tell me the interpreta- +tion, because none of the wise men of my king- +dom can interpret it for me. But you are able, +Daniel Interprets the Second Dream +because the spirit of the holy gods is in you.” +19 + +For a time, Daniel, who was also known as +Belteshazzar, was perplexed, and his thoughts +alarmed him. + +So the king said, “Belteshazzar, do not let the +dream or its interpretation alarm you.” + +“My lord,” replied Belteshazzar, “may the dream +apply to those who hate you, and its interpreta- +20 +tion to your enemies! + +21 + +The tree you saw that grew large and strong, +whose top reached the sky and was visible to all +whose foliage was beautiful and +the earth, +whose fruit was abundant, providing food for all, +under which the beasts of the field lived, and in +22 +whose branches the birds of the air nested— +you, O king, are that tree! For you have become +great and strong; your greatness has grown to +reach the sky, and your dominion extends to the +23 +ends of the earth. + +And you, O king, saw a watcher, a holy one, + +coming down from heaven and saying: + +‘Cut down the tree and destroy it, + +but leave the stump with its roots in the + +ground, + +with a band of iron and bronze around it, + +in the tender grass of the field. + +Let him be drenched with the dew of heaven, +and graze with the beasts of the field +till seven times pass him by.’ + +24 + +This is the interpretation, O king, and this is +the decree that the Most High has issued against +my lord the king: + +Or + +Or + + or + +; also in verses 17 and 23 + + 798 | Daniel 4:25 + +25 + +You will be driven away from mankind, and +your dwelling will be with the beasts of the field. +You will feed on grass like an ox and be drenched +with the dew of heaven, and seven times shall +pass you by, until you acknowledge that the Most +High rules over the kingdom of mankind and +26 +gives it to whom He wishes. + +27 + +As for the command to leave the stump of the +tree with its roots, your kingdom will be restored +to you as soon as you acknowledge that Heaven +Therefore, may my advice be pleasing to +rules. +you, O king. Break away from your sins by doing +what is right, and from your iniquities by show- +ing mercy to the oppressed. Perhaps there will be +The Second Dream Fulfilled +an extension of your prosperity.” +28 +29 + +30 + +All this happened to King Nebuchadnezzar. +Twelve months later, as he was walking on the +roof of the royal palace of Babylon, +the king ex- +claimed, “Is this not Babylon the Great, which I +myself have built as a royal residence by the +might of my power and for the glory of my maj- +31 +esty?” + +32 + +While the words were still in the king’s mouth, +a voice came from heaven: “It is decreed to you, +King Nebuchadnezzar, that the kingdom has de- +You will be driven away from +parted from you. +mankind to live with the beasts of the field, and +you will feed on grass like an ox. And seven times +will pass you by, until you acknowledge that the +Most High rules over the kingdom of mankind +33 +and gives it to whom He wishes.” + +At that moment the sentence against Nebu- +chadnezzar was fulfilled. He was driven away +from mankind. He ate grass like an ox, and his +body was drenched with the dew of heaven, until +his hair grew like the feathers of an eagle and his +Nebuchadnezzar Restored +nails like the claws of a bird. +34 + +But at the end of those days I, Nebuchadnez- +zar, looked up to heaven, and my sanity was re- +stored to me. Then I praised the Most High, and I +honored and glorified Him who lives forever: + +“For His dominion is an everlasting + +dominion, + +35 + +and His kingdom endures from generation + +to generation. +All the peoples of the earth +are counted as nothing, +predecessor + +Later + +b 2 + +a 1 + +grandfather + +and He does as He pleases + +with the army of heaven +and the peoples of the earth. + +36 + +There is no one who can restrain His hand +” +or say to Him, ‘What have You done?’ + +At the same time my sanity was restored, my +honor and splendor returned to me for the glory +of my kingdom. My advisers and nobles sought +me out, and I was restored to my throne, and sur- +passing greatness was added to me. +Now I, +Nebuchadnezzar, praise and exalt and glorify the +King of heaven, for all His works are true and all +His ways are just. And He is able to humble those +Belshazzar’s Feast +who walk in pride. +a + +37 + +5 + +2 + +Later, + King Belshazzar held a great feast for +a thousand of his nobles, and he drank wine +Under the influence of the wine, +with them. + b +Belshazzar gave orders to bring in the gold and +silver vessels that Nebuchadnezzar his father +had taken from the temple in Jerusalem, so that +the king could drink from them, along with his +3 +nobles, his wives, and his concubines. + +Thus they brought in the gold vessels that had +been taken from the temple, the house of God in +Jerusalem, and the king drank from them, along +4 +with his nobles, his wives, and his concubines. +As they drank the wine, they praised their gods +of gold and silver, bronze and iron, wood and +The Handwriting on the Wall +stone. +5 + +At that moment the fingers of a human hand ap- +peared and wrote on the plaster of the wall, near +the lampstand in the royal palace. As the king +his face +watched the hand that was writing, +grew pale and his thoughts so alarmed him that +his hips gave way and his knees knocked to- +7 +gether. + +6 + +c + +The king called out for the enchanters, astrolo- +gers, + and diviners to be brought in, and he said +to these wise men of Babylon, “Whoever reads +this inscription and tells me its interpretation +will be clothed in purple and have a gold chain +placed around his neck, and he will be made the +8 +third highest ruler in the kingdom.” + +9 + +So all the king’s wise men came in, but they +could not read the inscription or interpret it for +Then King Belshazzar became even more +him. +terrified, his face grew even more pale, and his +nobles were bewildered. + +Many years later + +c 7 + +Chaldeans + +Aramaic does not include + +. Some translators include + +about 30 years. + +Or + + or + +; also in verses 11, 13, and 18. + + to account for the time elapsed, probably +; also in verse 11 + +Or + + Daniel 6:3 | 799 + +10 + + a + +21 + +Hearing the outcry of the king and his +nobles, the queen + entered the banquet hall. “O +king, may you live forever!” she said. “Do not let +11 +your thoughts terrify you, or your face grow pale. +There is a man in your kingdom who has the +spirit of the holy gods in him. In the days of your +father he was found to have insight, intelligence, +and wisdom like that of the gods. + +from his royal throne, and his glory was taken +He was driven away from mankind, +from him. +and his mind was like that of a beast. He lived +with the wild donkeys and ate grass like an ox, +and his body was drenched with the dew of +heaven until he acknowledged that the Most +High God rules over the kingdom of mankind, +22 +setting over it whom He wishes. + +b + +Your father, King Nebuchadnezzar, appointed +him chief of the magicians, enchanters, astrolo- +12 +gers, and diviners. Your own father, the king, +did this because Daniel, the one he named +Belteshazzar, was found to have an extraordi- +nary spirit, as well as knowledge, understanding, +and the ability to interpret dreams, explain +riddles, and solve difficult problems. Summon +Daniel, therefore, and he will give you the inter- +Daniel Interprets the Handwriting +pretation.” +13 + +14 + +So Daniel was brought before the king, who +asked him, “Are you Daniel, one of the exiles my +father the king brought from Judah? +I have +heard that the spirit of the gods is in you, and that +you have insight, intelligence, and extraordinary +15 +wisdom. + +16 + +Now the wise men and enchanters were +brought before me to read this inscription and +interpret it for me, but they could not give its in- +But I have heard about you, that +terpretation. +you are able to give interpretations and solve dif- +ficult problems. Therefore, if you can read this +inscription and give me its interpretation, you +will be clothed in purple and have a gold chain +placed around your neck, and you will be made +17 +the third highest ruler in the kingdom.” + +18 + +In response, Daniel said to the king, “You may +keep your gifts for yourself and give your re- +wards to someone else. Nevertheless, I will read +the inscription for the king and interpret it for +As for you, O king, the Most High God gave +him. +your father Nebuchadnezzar sovereignty and +Because of the +greatness, glory and honor. +greatness that He bestowed on him, the people of +every nation and language trembled in fear be- +fore him. He killed whom he wished and kept +alive whom he wished; he exalted whom he +20 +wished and humbled whom he wished. + +19 + +queen mother + +But when his heart became arrogant and his +a 10 +spirit was hardened with pride, he was deposed +e 28 Peres +d 27 Tekel + or +Or +Or + +weighed + or + +descendant + +successor + +b 22 + +Persia + +f 30 + +But you his son, + + O Belshazzar, have not hum- +23 +bled your heart, even though you knew all this. +Instead, you have exalted yourself against the +Lord of heaven. The vessels from His house were +brought to you, and as you drank wine from them +with your nobles, wives, and concubines, you +praised your gods of silver and gold, bronze and +iron, wood and stone, which cannot see or hear +or understand. But you have failed to glorify the +God who holds in His hand your very breath and +Therefore He sent the hand that +all your ways. +25 +wrote the inscription. + +24 + +26 + +Now this is the inscription that was written: + +MENE, MENE, TEKEL, PARSIN. + c + +And this is the interpretation of the message: + + means that God has numbered the + +MENE +27 +days of your reign and brought it to an end. + + d + +TEKEL + e + + means that you have been + +28 +weighed on the scales and found deficient. + +PERES + + means that your kingdom has + +29 + +been divided and given over to the Medes +and Persians.” + +Then Belshazzar gave the command, and they +clothed Daniel in purple, placed a gold chain +around his neck, and proclaimed him the third +30 +highest ruler in the kingdom. + +  f + +31 + +That very night Belshazzar king of the +and Darius the Mede re- + +Chaldeans +The Plot against Daniel +ceived the kingdom at the age of sixty-two. + + was slain, + +6 + +2 + +Now it pleased Darius to appoint 120 +satraps to rule throughout the kingdom, +and over them three administrators, including +Daniel, to whom these satraps were accountable +Soon, by +so that the king would not suffer loss. +his extraordinary spirit, Daniel distinguished +himself among the administrators and satraps. +So the king planned to set him over the whole +grandson c 26 Mene +kingdom. +Parsin + +numbered +divided + +3 + + sounds like the Aramaic for +) sounds like the Aramaic for + +. + + sounds like the Aramaic for + +. + + (the singular of + +and for + +. + +That is, the Babylonians + + 800 | Daniel 6:4 + +4 + +16 + +Thus the administrators and satraps sought a +charge against Daniel concerning the kingdom, +but they could find no charge or corruption, be- +cause he was trustworthy, and no negligence or +Finally these men +corruption was found in him. +said, “We will never find any charge against this +Daniel unless we find something against him +6 +concerning the law of his God.” + +5 + +7 + +So the administrators and satraps went to- +gether to the king and said, “O King Darius, may +All the royal administrators, +you live forever! +prefects, satraps, advisers, and governors have +agreed that the king should establish an ordi- +nance and enforce a decree that for thirty days +anyone who petitions any god or man except +8 +you, O king, will be thrown into the den of lions. +Therefore, O king, establish the decree and sign +the document so that it cannot be changed—in +accordance with the law of the Medes and Per- +9 +sians, which cannot be repealed.” + +Therefore King Darius signed the written + +Daniel in the Lions’ Den +decree. +10 + +11 + +Now when Daniel learned that the document +had been signed, he went into his house, where +the windows of his upper room opened toward +Jerusalem, and three times a day he got down on +his knees, prayed, and gave thanks to his God, +Then these men +just as he had done before. +went as a group and found Daniel petitioning and +imploring his God. +So they approached the +king and asked about his royal decree: “Did you +not sign a decree that for thirty days any man +who petitions any god or man except you, O king, +will be thrown into the den of lions?” + +12 + +The king replied, “According to the law of the +Medes and Persians the order stands, and it can- +13 +not be repealed.” + +Then they told the king, “Daniel, one of the +exiles from Judah, shows no regard for you, +O king, or for the decree that you have signed. He +14 +still makes his petition three times a day.” + +As soon as the king heard this, he was deeply +distressed and set his mind on delivering Daniel, +15 +and he labored until sundown to rescue him. + +So the king gave the order, and they brought + +Daniel and threw him into the den of lions. + +The king said to Daniel, “May your God, whom +17 +you serve continually, deliver you!” + +A stone was brought and placed over the +mouth of the den, and the king sealed it with his +own signet ring and with the rings of his nobles, +so that nothing concerning Daniel could be +18 +changed. + +Then the king went to his palace and spent the +night fasting. No entertainment was brought be- +19 +fore him, and sleep fled from him. + +20 + +At the first light of dawn, the king got up and +When he reached +hurried to the den of lions. +the den, he cried out in a voice of anguish, “O +Daniel, servant of the living God, has your God, +whom you serve continually, been able to deliver +21 +you from the lions?” + +22 + +Then Daniel replied, “O king, may you live for- +My God sent His angel and shut the +ever! +mouths of the lions. They have not hurt me, for I +was found innocent in His sight, and I have done +23 +no wrong against you, O king.” + +The king was overjoyed and gave orders to lift +Daniel out of the den, and when Daniel was lifted +out of the den, no wounds whatsoever were +24 +found on him, because he had trusted in his God. + +At the command of the king, the men who had +falsely accused Daniel were brought and thrown +into the den of lions—they and their children and +wives. And before they had reached the bottom +of the den, the lions overpowered them and +Darius Honors God +crushed all their bones. +25 + +Then King Darius wrote to the people of every +26 +nation and language throughout the land: “May +your prosperity abound. +I hereby decree that +in every part of my kingdom, men are to tremble +in fear before the God of Daniel: + +For He is the living God, + +and He endures forever; + +27 + +His kingdom will never be destroyed, +and His dominion will never end. + +He delivers and rescues; + +He performs signs and wonders +in the heavens and on the earth, + +Then the men approached the king together +and said to him, “Remember, O king, that by the +law of the Medes and Persians no decree or ordi- +a 28 +nance established by the king can be changed.” + +prospered during the reign of Darius, that is, the reign of Cyrus + +28 + +for He has rescued Daniel + +from the power of the lions.” + + a + +So Daniel prospered during the reign of Darius + +and the reign of Cyrus + + the Persian. + +Or + + Daniel’s Vision of the Four Beasts +(Revelation 13:1–10) + +7 + +In the first year of the reign of Belshazzar +over Babylon, Daniel had a dream, and vi- +sions passed through his mind as he lay on his +bed. He wrote down the dream, and this is the +2 +summary of his account. + +Daniel declared: “In my vision in the night I +looked, and suddenly the four winds of heaven +were churning up the great sea. +Then four +great beasts came up out of the sea, each one dif- +ferent from the others: + +4 + +3 + +a + +The + + first beast was like a lion, and it had the +wings of an eagle. I watched until its wings +were torn off and it was lifted up from the +ground and made to stand on two feet like a +5 +man and given the mind of a man. + +Suddenly another beast appeared, which +looked like a bear. It was raised up on one of +its sides, and it had three ribs in its mouth +between its teeth. So it was told, ‘Get up and +6 +gorge yourself on flesh!’ + +Next, as I watched, suddenly another beast +appeared. It was like a leopard, and on its +back it had four wings like those of a bird. +The beast also had four heads, and it was +7 +given authority to rule. + +After this, as I watched in my vision in the +night, suddenly a fourth beast appeared, and +it was terrifying—dreadful and extremely +strong—with large iron teeth. It devoured +and crushed; then it trampled underfoot +whatever was left. It was different from all +8 +the beasts before it, and it had ten horns. +While I was contemplating the horns, sud- +denly another horn, a little one, came up +among them, and three of the first horns +were uprooted before it. This horn had eyes +like those of a man and a mouth that spoke +words of arrogance. + +Daniel’s Vision of the Ancient of Days +9 + +As I continued to watch, + +thrones were set in place, + +and the Ancient of Days took His seat. + +His clothing was white as snow, + +and the hair of His head was like pure + +wool. + +a 2 + +His throne was flaming with fire, +and its wheels were all ablaze. + +the Great Sea + +10 + +Daniel 7:20 | 801 + +A river of fire was flowing, + +coming out from His presence. + +Thousands upon thousands attended Him, + +and myriads upon myriads stood + +before Him. +The court was convened, + +11 + +and the books were opened. + +Then I kept watching because of the arrogant +words the horn was speaking. As I continued to +watch, the beast was slain, and its body was +As +destroyed and thrown into the blazing fire. +for the rest of the beasts, their dominion was +removed, but they were granted an extension of +Daniel’s Vision of the Son of Man +life for a season and a time. +13 + +12 + +In my vision in the night I continued to watch, + + b + +c + +and I saw One like the Son of Man + +14 + +coming with the clouds of heaven. +He approached the Ancient of Days +and was led into His presence. + +And He was given dominion, + +glory, and kingship, + +that the people of every nation and + +language +should serve Him. + +His dominion is an everlasting dominion + +that will not pass away, + +and His kingdom is one + +Daniel’s Visions Interpreted + +that will never be destroyed. + +15 + +16 + +I, Daniel, was grieved in my spirit, and the vi- +sions in my mind alarmed me. +I approached +one of those who were standing there, and I +asked him the true meaning of all this. +17 +So he told me the interpretation of these things: +‘These four great beasts are four kings who +will arise from the earth. +But the saints of the +Most High will receive the kingdom and possess +19 +it forever—yes, forever and ever.’ + +18 + +20 + +Then I wanted to know the true meaning of the +fourth beast, which was different from all the +others—extremely terrifying—devouring and +crushing with iron teeth and bronze claws, then +trampling underfoot whatever was left. +I also +wanted to know about the ten horns on its head +and the other horn that came up, before which +three of them fell—the horn whose appearance +was more imposing than the others, with eyes +c 13 +and with a mouth that spoke words of arrogance. +Or + +See Matthew 24:30, + +one like a son of man + +b 13 + +Perhaps + +, that is, the Mediterranean Sea + +Matthew 26:64, Mark 13:26, Mark 14:62, Luke 21:27, Revelation 1:13, and Revelation 14:14. + + 802 | Daniel 7:21 + +21 + +As I watched, this horn was waging war +22 +against the saints and prevailing against them, +until the Ancient of Days arrived and pro- +nounced judgment in favor of the saints of the +Most High, and the time came for them to possess +23 +the kingdom. + +24 + +This is what he said: ‘The fourth beast is a +fourth kingdom that will appear on the earth, dif- +ferent from all the other kingdoms, and it will +devour the whole earth, trample it down, and +crush it. +And the ten horns are ten kings who +will rise from this kingdom. After them another +king, different from the earlier ones, will rise and +subdue three kings. +He will speak out against +the Most High and oppress the saints of the Most +High, intending to change the appointed times +and laws; and the saints will be given into his +26 +hand for a time, and times, and half a time. + +25 + +27 + +But the court will convene, and his dominion +will be taken away and completely destroyed +forever. +Then the sovereignty, dominion, and +greatness of the kingdoms under all of heaven +will be given to the people, the saints of the Most +High. His kingdom will be an everlasting king- +28 +dom, and all rulers will serve and obey Him.’ + +Thus ends the matter. As for me, Daniel, my +thoughts troubled me greatly, and my face +Daniel’s Vision of the Ram and the Goat +turned pale. But I kept the matter to myself.” + +8 + +2 + +In the third year of the reign of King +Belshazzar, a vision appeared to me, Daniel, +subsequent to the one that had appeared to me +And in the vision I saw myself in the cit- +earlier. +adel of Susa, in the province of Elam. I saw in the +3 +vision that I was beside the Ulai Canal. + +4 + +Then I lifted up my eyes and saw a ram with two +horns standing beside the canal. The horns were +long, but one was longer than the other, and the +I saw the ram charg- +longer one grew up later. +ing toward the west and the north and the south. +No animal could stand against him, and there +was no deliverance from his power. He did as he +5 +pleased and became great. + +6 + +As I was contemplating all this, suddenly a goat +with a prominent horn between his eyes came +out of the west, crossing the surface of the entire +He came to- +earth without touching the ground. +ward the two-horned ram I had seen standing +beside the canal and rushed at him with furious +of Javan +a 12 +I saw him approach the ram in a rage +power. +Or + +on account of transgression + +Hebrew + +b 21 + +7 + +against him, and he struck the ram and shattered +his two horns. The ram was powerless to stand +against him, and the goat threw him to the +ground and trampled him, and no one could de- +8 +liver the ram from his power. + +Thus the goat became very great, but at the +height of his power, his large horn was broken +off, and four prominent horns came up in its +9 +place, pointing toward the four winds of heaven. + +10 + +From one of these horns a little horn emerged +and grew extensively toward the south and the +It grew as +east and toward the Beautiful Land. +high as the host of heaven, and it cast down some +11 +of the host and some of the stars to the earth and +It magnified itself, even to the +trampled them. +Prince of the host; it removed His daily sacrifice +a +And +and overthrew the place of His sanctuary. +in the rebellion, + the host and the daily sacrifice +were given over to the horn, and it flung truth to +13 +the ground and prospered in whatever it did. + +12 + +Then I heard a holy one speaking, and another +holy one said to him, “How long until the fulfill- +ment of the vision of the daily sacrifice, the rebel- +lion that causes desolation, and the surrender of +14 +the sanctuary and of the host to be trampled?” + +He said to me, “It will take 2,300 evenings and +mornings; then the sanctuary will be properly +Gabriel Interprets Daniel’s Vision +restored.” +15 + +16 + +While I, Daniel, was watching the vision and +trying to understand it, there stood before me +one having the appearance of a man. +And I +heard the voice of a man calling from between +the banks of the Ulai: “Gabriel, explain the vision +17 +to this man.” + +As he came near to where I stood, I was terri- + +fied and fell facedown. + +“Son of man,” he said to me, “understand that the +18 +vision concerns the time of the end.” + +While he was speaking with me, I fell into a + +deep sleep, with my face to the ground. + +19 + +and +Then he touched me, helped me to my feet, +said, “Behold, I will make known to you what will +happen in the latter time of wrath, because it +20 +concerns the appointed time of the end. + +21 +The two-horned ram that you saw represents +b +The shaggy goat + and the large + +the kings of Media and Persia. +represents the king of Greece, + + 22 + +The +horn between his eyes is the first king. +four horns that replaced the broken one repre- +sent four kingdoms that will rise from that nation +23 +but will not have the same power. + +24 + +In the latter part of their reign, when the +rebellion has reached its full measure, an inso- +lent king, skilled in intrigue, will come to the +His power will be great, but it will not +throne. +be his own. He will cause terrible destruction and +succeed in whatever he does. He will destroy +25 +the mighty men along with the holy people. +Through his craft and by his hand, he will +cause deceit to prosper, and in his own mind he +will make himself great. In a time of peace he will +destroy many, and he will even stand against the +Prince of princes. Yet he will be broken off, but +26 +not by human hands. + +The vision of the evenings and the mornings +that has been spoken is true. Now you must seal +27 +up the vision, for it concerns the distant future.” + +I, Daniel, was exhausted and lay ill for days. +Then I got up and went about the king’s business. +I was confounded by the vision; it was beyond +Daniel’s Prayer for His People +understanding. + +a + + b + +2 + + — + + a +In the first year of Darius son of Xerxes, +Mede by descent, who was made ruler over +in the first +the kingdom of the Chaldeans +year of his reign, I, Daniel, understood from the +sacred books, according to the word of the LORD +to Jeremiah the prophet, that the desolation of Je- +So I turned +rusalem would last seventy years. +my attention to the Lord God to seek Him by +prayer and petition, with fasting, sackcloth, and +4 +ashes. + +3 + +c + + d + +5 + +And I prayed to the LORD my God and con- +fessed, “O, Lord, the great and awesome God, + to +who keeps His covenant of loving devotion +those who love Him and keep His command- +ments, +we have sinned and done wrong. We +have acted wickedly and rebelled. We have +6 +turned away from Your commandments and or- +We have not listened to Your servants +dinances. +the prophets, who spoke in Your name to our +kings, leaders, fathers, and all the people of the +7 +land. + +To You, O Lord, belongs righteousness, but this +c 2 +a 1 +day we are covered with shame—the men of + +Ahasuerus + +b 1 + +9 + +Daniel 9:18 | 803 + +Judah, the people of Jerusalem, and all Israel near +and far, in all the countries to which You have +8 +driven us because of our unfaithfulness to You. +O LORD, we are covered with shame—our +kings, our leaders, and our fathers—because we +9 +have sinned against You. + +10 + +To the Lord our God belong compassion and +forgiveness, even though we have rebelled +and have not obeyed the voice of +against Him +the LORD our God to walk in His laws, which He +11 +set before us through His servants the prophets. + +12 + +All Israel has transgressed Your law and +turned away, refusing to obey Your voice; so the +oath and the curse written in the Law of Moses +the servant of God has been poured out on us, +You have +because we have sinned against You. +carried out the words spoken against us and +against our rulers by bringing upon us a great +disaster. For under all of heaven, nothing +has ever been done like what has been done to +13 +Jerusalem. + +14 + +Just as it is written in the Law of Moses, all this +disaster has come upon us, yet we have not +sought the favor of the LORD our God by turning +from our iniquities and giving attention to Your +Therefore the LORD has kept the calam- +truth. +ity in store and brought it upon us. For the LORD +our God is righteous in all He does; yet we have +15 +not obeyed His voice. + +16 + +Now, O Lord our God, who brought Your peo- +ple out of the land of Egypt with a mighty hand, +and who made for Yourself a name renowned to +this day, we have sinned; we have acted wick- +O Lord, in keeping with all Your righteous +edly. +acts, I pray that Your anger and wrath may turn +away from Your city Jerusalem, Your holy moun- +tain; for because of our sins and the iniquities +of our fathers, Jerusalem and Your people are a +17 +reproach to all around us. + +18 + +So now, our God, hear the prayers and peti- +tions of Your servant. For Your sake, O Lord, +cause Your face to shine upon Your desolate +sanctuary. +Incline Your ear, O my God, and +hear; open Your eyes and see the desolation of +the city that bears Your name. For we are not +presenting our petitions before You because of +our righteous acts, but because of Your great +compassion. + +d 4 + +loving devotion + +chesed +Hebrew +love + +Hebrew +includes + +goodness + are translated here and in most cases throughout the Scriptures as + +That is, the Babylonians +mercy + +faithfulness + +kindness + +See Jeremiah 25:11–12 and Jeremiah 29:10. + +loyalty to a covenant + +; the range of meaning + +Forms of the + +, + +, + +, + +, and + +, as well as + +. + + 804 | Daniel 9:19 + +19 + +O Lord, listen! O Lord, forgive! O Lord, hear and +act! For Your sake, O my God, do not delay, +because Your city and Your people bear Your +Gabriel’s Prophecy of the Seventy Weeks +name.” +20 + +22 + +21 + +While I was speaking, praying, confessing my +sin and that of my people Israel, and presenting +my petition before the LORD my God concerning +while I was still praying, +His holy mountain— +Gabriel, the man I had seen in the earlier vision, +came to me in swift flight about the time of the +He instructed me and spoke +evening sacrifice. +with me, saying: “O Daniel, I have come now to +At the be- +give you insight and understanding. +ginning of your petitions, an answer went out, +and I have come to tell you, for you are highly +precious. So consider the message and under- + a +24 +stand the vision: + +23 + +Seventy weeks + + are decreed for your people +and your holy city to stop their transgression, to +put an end to sin, to make atonement for +iniquity, to bring in everlasting righteousness, to +seal up vision and prophecy, and to anoint the +25 +Most Holy Place. + +b + +c + +Know and understand this: From the issuance +of the decree to restore and rebuild Jerusalem +until the Messiah, + the Prince, there will be seven +weeks and sixty-two weeks. It will be rebuilt +26 +with streets and a trench, but in times of distress. + +d + +Then after the sixty-two weeks +will be cut off and will have nothing. + + the Messiah + +e + +27 + +Then the people of the prince who is to come will +destroy the city and the sanctuary. The end will +come like a flood, and until the end there will be +And he +war; desolations have been decreed. +will confirm a covenant with many for one + but in the middle of the week he will put +week, +an end to sacrifice and offering. And on the wing +of the temple will come the abomination that +g +causes desolation, + until the decreed destruction +Daniel’s Vision by the Tigris +is poured out upon him. + +” + +f + +10 + +understanding of the message was given to him +2 +in a vision. +3 + +In those days I, Daniel, was mourning for three +full weeks. +I ate no rich food, no meat or wine +entered my mouth, and I did not anoint myself +4 +with oil until the three weeks were completed. + +5 + +On the twenty-fourth day of the first month, as +I was standing on the bank of the great river, the +I lifted up my eyes, and behold, there was +Tigris, +a certain man dressed in linen, with a belt of fine +gold from Uphaz around his waist. +His body was +like beryl, his face like the brilliance of lightning, +his eyes like flaming torches, his arms and legs +like the gleam of polished bronze, and his voice +7 +like the sound of a multitude. + +6 + +Only I, Daniel, saw the vision; the men with me +did not see it, but a great terror fell upon them, +8 +and they ran and hid themselves. + +9 + +So I was left alone, gazing at this great vision. No +strength remained in me; my face grew deathly +I heard the sound of +pale, and I was powerless. +his words, and as I listened, I fell into a deep +10 +sleep, with my face to the ground. +11 + +Suddenly, a hand touched me and set me trem- +bling on my hands and knees. +He said to me, +“Daniel, you are a man who is highly precious. +Consider carefully the words that I am about to +say to you. Stand up, for I have now been sent to +you.” + +And when he had said this to me, I stood up +12 +trembling. + +“Do not be afraid, Daniel,” he said, “for from the +first day that you purposed to understand and to +humble yourself before your God, your words +13 +were heard, and I have come in response to them. +However, the prince of the kingdom of Persia +opposed me for twenty-one days. Then Michael, +one of the chief princes, came to help me, for I +14 +had been left there with the kings of Persia. +Now I have come to explain to you what will +happen to your people in the latter days, for the +15 +vision concerns those days.” + +In the third year of Cyrus king of Persia, +a message was revealed to Daniel, who +was called Belteshazzar. The message was true, +a 24 + And the +and it concerned a great conflict. +the Anointed One +c 25 + +While he was speaking these words to me, I set +my face toward the ground and became speech- +And suddenly one with the likeness of a +less. +d 26 +; also twice in verse 25 and once in verse 26 +; liter- +And on the wing (will come) the abomination that causes + +Then after sixty-two sevens + +the Most Holy One + +the Holy of Holies + +Seventy sevens + +for one seven + +the Most Holy +Or +e 27 +ally +Or +desolation, +Or +consummation is poured out upon (him who) is desolate. + +; similarly again in this verse + +f 27 +; also in verse 26 +Literally + +And on the wing of abominations (will come) one who causes desolation, + +g 27 +true and greatly burdensome + +until the decreed + +Hebrew + +b 24 + +h 1 + + or + +Or + +16 + +h + + or + +Or + +Literally + +  a + + touched my lips, and I opened my mouth +man +and said to the one standing before me, “My lord, +because of the vision, I am overcome with an- +How can I, your +guish, and I have no strength. +servant, speak with you, my lord? Now I have no +18 +strength, nor is any breath left in me.” +19 + +17 + +Again the one with the likeness of a man +“Do not be +touched me and strengthened me. +afraid, you who are highly precious,” he said. +“Peace be with you! Be strong now; be very +strong!” + +As he spoke with me, I was strengthened and +said, “Speak, my lord, for you have strengthened +20 +me.” + +“Do you know why I have come to you?” he +said. “I must return at once to fight against the + b +prince of Persia, and when I have gone forth, be- +But first +hold, the prince of Greece +I will tell you what is inscribed in the Book of +Truth. Yet no one has the courage to support me +Kings of the South and North +against these, except Michael your prince. + + will come. + +21 + +11 + +2 +tect him. + +“And I, in the first year of Darius the +Mede, stood up to strengthen and pro- + +Now then, I will tell you the truth: Three more +kings will arise in Persia, and then a fourth, who +will be far richer than all the others. By the power +of his wealth, he will stir up everyone against the +3 +kingdom of Greece. + +c + +4 + +Then a mighty king will arise, who will rule with +great authority and do as he pleases. +But as +soon as he is established, his kingdom will be +broken up and parceled out toward the four +winds of heaven. It will not go to his descendants, +nor will it have the authority with which he +ruled, because his kingdom will be uprooted and +5 +given to others. + +The king of the South will grow strong, but one +of his commanders will grow even stronger and +6 +will rule his own kingdom with great authority. + +Daniel 11:19 | 805 + + e + +she will be given up, along with her royal escort +7 + and the one who supported her. +and her father + +  f + +8 + +But one from her family line + + will rise up in his +place, come against the army of the king of the +North, and enter his fortress, fighting and pre- +He will take even their gods captive to +vailing. +Egypt, with their metal images and their precious +vessels of silver and gold. For some years he will +stay away from the king of the North, +who will +invade the realm of the king of the South and +10 +then return to his own land. + +9 + +But his sons will stir up strife and assemble a +great army, which will advance forcefully, +sweeping through like a flood, and will again +carry the battle as far as his fortress. +In a rage, +the king of the South will march out to fight the +king of the North, who will raise a large army, but +12 +it will be delivered into the hand of his enemy. + +11 + +13 + +When the army is carried off, the king of the +South will be proud in heart and will cast down +tens of thousands, but he will not triumph. +For + g +the king of the North will raise another army, +larger than the first, and after some years + he +will advance with a great army and many sup- +14 +plies. + +In those times many will rise up against the +king of the South. Violent ones among your own +people will exalt themselves in fulfillment of the +15 +vision, but they will fail. + +16 + +Then the king of the North will come, build up +a siege ramp, and capture a fortified city. The +forces of the South will not stand; even their best +troops will not be able to resist. +The invader +will do as he pleases, and no one will stand +against him. He will establish himself in the +17 +Beautiful Land, with destruction in his hand. +He will resolve to come with the strength of his +whole kingdom, and will reach an agreement +with the king of the South. He will give him a +daughter in marriage in order to overthrow the +kingdom, but his plan will not succeed or help +18 +him. + +h + +After some years they will form an alliance, and +the daughter of the king of the South will go to +the king of the North to seal the agreement. But +his daughter will not retain her position of +with the likeness of sons of man +a 16 + endure. At that time +power, nor will his strength +c 2 +of Javan +the hand of a man + +of Javan + + d + +Most MT manuscripts; literally + +f 7 + +b 20 +a branch from her roots + +him or support him +Syriac. + +Literally + +Hebrew + +g 13 +Hebrew + +Hebrew + +19 + +Then he will turn his face to the coastlands and +capture many of them. But a commander will put +an end to his reproach and will turn it back upon +him. +After this, he will turn back toward the +fortresses of his own land, but he will stumble +and fall and be no more. +offspring +at the end of the times +Or + +child +but she will not stand with +; see Vulgate and + +; DSS, LXX, and one MT manuscript + +with the likeness of + +e 6 +h 17 + +d 6 + +Or +Or + + 806 | Daniel 11:20 + +20 + +35 + +In his place one will arise who will send out a +tax collector for the glory of the kingdom; but +within a few days he will be destroyed, though +21 +not in anger or in battle. + +22 + +In his place a despicable person will arise; +royal honors will not be given to him, but he will +come in a time of peace and seize the kingdom by +Then a flood of forces will be swept +intrigue. +away before him and destroyed, along with a +23 +prince of the covenant. + +24 + +After an alliance is made with him, he will act +deceitfully; for he will rise to power with only a +In a time of peace, he will invade +few people. +the richest provinces and do what his fathers and +forefathers never did. He will lavish plunder, +loot, and wealth on his followers, and he will plot +25 +against the strongholds—but only for a time. + +26 + +And with a large army he will stir up his power +and his courage against the king of the South, +who will mobilize a very large and powerful +army but will not withstand the plots devised +Those who eat from his provi- +against him. +sions will seek to destroy him; his army will be +27 +swept away, and many will fall slain. + +28 + +And the two kings, with their hearts bent on +evil, will speak lies at the same table, but to no +avail, for still the end will come at the appointed +The king of the North will return to his +time. +land with great wealth, but his heart will be set +against the holy covenant; so he will do damage +29 +and return to his own land. + + a + +Ships of Kittim + +At the appointed time he will invade the South +30 +again, but this time will not be like the first. + will come against him, and he +will lose heart. Then he will turn back and rage +against the holy covenant and do damage. So he +will return and show favor to those who forsake +the holy covenant. +His forces will rise up and +desecrate the temple fortress. They will abolish +the daily sacrifice and set up the abomination of +32 +desolation. + +31 + +With flattery he will corrupt those who violate +33 +the covenant, but the people who know their God +Those with insight will +will firmly resist him. +instruct many, though for a time they will fall by +34 +sword or flame, or be captured or plundered. + +Now when they fall, they will be granted a +b 39 +a 30 +little help, but many will join them insincerely. +d 43 + +Mediterranean islands + +western coastlands + +e 44 + +Some of the wise will fall so that they may be +refined, purified, and made spotless until the +time of the end, for it will still come at the ap- +The King Who Exalts Himself +pointed time. +36 + +37 + +Then the king will do as he pleases and will ex- +alt and magnify himself above every god, and he +will speak monstrous things against the God of +gods. He will be successful until the time of wrath +is completed, for what has been decreed must be +accomplished. +He will show no regard for the +gods of his fathers, nor for the one desired by +women, nor for any other god, because he will +38 +magnify himself above them all. + +And in their place, he will honor a god of +fortresses—a god his fathers did not know— +39 +with gold, silver, precious stones, and riches. +He will attack the strongest fortresses with the +help of a foreign god and will greatly honor those +who acknowledge him, making them rulers over +40 +many and distributing the land for a price. +c + +b + +At the time of the end, the king of the South will +engage him in battle, + but the king of the North +will storm out against him with chariots, horse- +men, and many ships, invading many countries +He +and sweeping through them like a flood. +will also invade the Beautiful Land, and many +countries will fall. But these will be delivered +from his hand: Edom, Moab, and the leaders of +42 +the Ammonites. + +41 + +43 + +He will extend his power over many countries, +He +and not even the land of Egypt will escape. +will gain control of the treasures of gold and + d +silver and over all the riches of Egypt, and the +44 +Libyans and Cushites + + will also submit to him. + +But news from the east and the north will +e +alarm him, and he will go out with great fury to +45 +destroy many and devote them to destruction. + +He will pitch his royal tents between the sea +and the beautiful holy mountain, but he will meet +The End Times (Revelation 1:1–3) +his end with no one to help him. + +12 + +“At that time Michael, the great prince +who stands watch over your people, will +rise up. There will be a time of distress, the likes +of which will not have occurred from the begin- +ning of nations until that time. But at that time +your people—everyone whose name is found +for a reward +written in the book—will be delivered. +Hebrew + refer to the giving over of things or + +will thrust at him + +c 40 +cherem + +Or + or +That is, people from the upper Nile region + +Or + +Forms of the Hebrew + +persons, either by destroying them or by giving them as an offering. + + 2 + +b + +a + +3 + +And many who sleep in the dust of the earth will +awake, some to everlasting life, but others to +shame and everlasting contempt. +Then the +wise will shine like the brightness of the heav- + and those who lead many to righteousness +ens, +4 +will shine like the stars forever and ever. + +c + +But you, Daniel, shut up these words and seal +the book until the time of the end. Many will +5 +roam to and fro, and knowledge will increase.” + +6 + +Then I, Daniel, looked and saw two others +standing there, one on this bank of the river and +one on the opposite bank. +One of them said to +the man dressed in linen, who was above the wa- +ters of the river, “How long until the fulfillment +7 +of these wonders?” + +And the man dressed in linen, who was above +the waters of the river, raised his right hand and +his left hand toward heaven, and I heard him +swear by Him who lives forever, saying, “It will + +Daniel 12:13 | 807 + +be for a time, and times, and half a time. When +the power of the holy people has finally been +8 +shattered, all these things will be completed.” + +I heard, but I did not understand. So I asked, +“My lord, what will be the outcome of these +9 +things?” + +10 + +“Go on your way, Daniel,” he replied, “for the +words are closed up and sealed until the time of +the end. +Many will be purified, made spotless, +and refined, but the wicked will continue to act +wickedly. None of the wicked will understand, +11 +but the wise will understand. + +And from the time the daily sacrifice is abol- +ished and the abomination of desolation set up, +there will be 1,290 days. +Blessed is he who +13 +waits and reaches the end of the 1,335 days. + +12 + +But as for you, go on your way until the end. +You will rest, and then you will arise to your +inheritance at the end of the days.” + +a 2 + +b 3 + +expanse + +firmament + +c 3 + +See John 5:29 and Revelation 11:18. + +Or + + or + +; see also Genesis 1:6–8. + +See Matthew 13:43. + + Hosea + +Hosea’s Wife and Children + +Israel’s Adultery Rebuked + +1 + +This is the word of the LORD that came to +Hosea son of Beeri in the days of Uzziah, +Jotham, Ahaz, and Hezekiah, kings of Judah, and +2 +of Jeroboam son of Jehoash, + + king of Israel. + +a + +When the LORD first spoke through Hosea, He +told him, “Go, take a prostitute as your wife and +have children of adultery, because this land is +flagrantly prostituting itself by departing from +3 +the LORD.” + +So Hosea went and married Gomer daughter +of Diblaim, and she conceived and bore him a +4 +son. + +b + +Then the LORD said to Hosea, “Name him +Jezreel, + for soon I will bring the bloodshed of +Jezreel upon the house of Jehu, and I will put an +end to the kingdom of Israel. +And on that day I +will break the bow of Israel in the Valley of +6 +Jezreel.” + +5 + +c + +Gomer again conceived and gave birth to a +daughter, and the LORD said to Hosea, “Name her +Lo-ruhamah, + for I will no longer have compas- +7 +sion on the house of Israel, that I should ever +forgive them. +Yet I will have compassion on the +house of Judah, and I will save them—not by bow +or sword or war, not by horses and cavalry, but +8 +by the LORD their God.” + +9 + +After she had weaned Lo-ruhamah, Gomer con- +And the LORD + for you are not My + +ceived and gave birth to a son. +e +said, “Name him Lo-ammi, +10 +people, and I am not your God. + +d + + f + +11 + +Yet the number of the Israelites will be like +the sand of the sea, which cannot be measured or +counted. And it will happen that in the very place +where it was said to them, ‘You are not My +people,’ they will be called ‘sons of the living +God.’ +Then the people of Judah and of Israel +will be gathered together, and they will appoint +for themselves one leader, and will go up out of +a 1 +the land. For great will be the day of Jezreel. +received mercy +Hebrew +g 1 + +b 4 Jezreel +not My people + +d 9 Lo-ammi +, a variant of +h 1 + +Jehoash + +Joash + +Ammi +. + +Mercy is shown + means + +2 + +2 + + g + + h + + “Say of your brothers, ‘My people,’ +and of your sisters, ‘My loved one.’ + +Rebuke your mother, + +rebuke her, + +for she is not My wife, + +and I am not her husband. + +Let her remove the adultery from her face + +3 + +and the unfaithfulness from between her + +breasts. + +Otherwise, I will strip her naked + +and expose her like the day of her birth. + +I will make her like a desert + +4 + +and turn her into a parched land, +and I will let her die of thirst. + +I will have no compassion on her children, + +5 + +because they are the children of adultery. + +For their mother has played the harlot +and has conceived them in disgrace. + +For she thought, + +‘I will go after my lovers, +who give me bread and water, +6 + +wool and linen, oil and drink.’ + + i + +Therefore, behold, + +I will hedge up her path +I will enclose her with a wall, + +7 + + with thorns; + +so she cannot find her way. + +She will pursue her lovers but not catch + +them; + +she will seek them but not find them. + +Then she will say, + +8 + +‘I will return to my first husband, +for then I was better off than now.’ + +For she does not acknowledge + +that it was I who gave her grain, +new wine, and oil, + +who lavished on her silver and gold— +9 + +which they crafted for Baal. + +Therefore I will take back My grain in its time + +and My new wine in its season; +I will take away My wool and linen, + +Hebrew + +Or + +; Hebrew + +, which means + +God sows + +she has not +c 6 Lo-ruhamah +which were given to cover her nakedness. + +e 9 + means +Ruhamah +. + +Hebrew + +f 10 +I am not yours +; also in verse 11. +she has received mercy + +i 6 + + means +Cited in Romans 9:26 +Hebrew + +your path + + 10 + +19 + +And then I will expose her lewdness + +So I will betroth you to Me forever; + +Hosea 4:1 | 809 + +in the sight of her lovers, + +and no one will deliver her + +11 + +out of My hands. + +I will put an end to all her exultation: + +12 + +her feasts, New Moons, and Sabbaths— +all her appointed feasts. + +I will destroy her vines and fig trees, + +which she thinks are the wages paid by + +her lovers. + +So I will make them into a thicket, + +13 + +and the beasts of the field will devour + +them. + +I will punish her for the days of the Baals +when she burned incense to them, +when she adorned herself with rings and + +jewelry, + +and went after her lovers. + +declares the LORD. + +But Me she forgot,” +God’s Mercy to Israel + +14 + +“Therefore, behold, I will allure her +and lead her to the wilderness, +and speak to her tenderly. + + a + +15 + +There I will give back her vineyards +and make the Valley of Achor +into a gateway of hope. + +There she will respond as she did + +16 + +in the days of her youth, +as in the day she came up out of Egypt. + +In that day,” + +declares the LORD, + + b + + c + +“you will call Me ‘my Husband,’ + +17 + +and no longer call Me ‘my Master.’ + +For I will remove from her lips the names of + +18 + +the Baals; + +no longer will their names be invoked. + +On that day I will make a covenant for them +with the beasts of the field and the birds + +of the air + +and the creatures that crawl on the + +ground. + +And I will abolish bow and sword + +I will betroth you in righteousness and + d + +20 + +justice, +in loving devotion + + and compassion. + +21 + +And I will betroth you in faithfulness, +and you will know the LORD.” + +“On that day I will respond—” + +declares the LORD— + +22 + +“I will respond to the heavens, + +and they will respond to the earth. +And the earth will respond to the grain, + +e + +23 + +to the new wine and oil, +and they will respond to Jezreel. + +And I will sow her as My own in the land, + f +and I will have compassion on ‘No + g + +Compassion.’ + + h + +I will say to those called ‘Not My People,’ + +‘You are My people,’ + +and they will say, + +Hosea Redeems His Wife (Zechariah 2:6–13) +” + +‘You are my God.’ + +3 + +Then the LORD said to me, “Go show love to + i +your wife again, though she is loved by an- +other + and is an adulteress. Love her as the LORD +loves the Israelites, though they turn to other +2 +gods and love to offer raisin cakes to idols. + + k +” + +j + +l + +3 + +So I bought her for fifteen shekels of silver + + and +a homer and a lethech of barley. +Then I said to +her, “You must live with me for many days; you +must not be promiscuous or belong to another, +4 +and I will do the same for you.” + +5 + +For the Israelites must live many days without +king or prince, without sacrifice or sacred pillar, +Afterward, the peo- +and without ephod or idol. +ple of Israel will return and seek the LORD their +God and David their king. They will come trem- +bling to the LORD and to His goodness in the last +God’s Case against His People +days. + +4 + + Hear the word of the LORD, +O children of Israel, +for the LORD has a case + +against the people of the land: + +a 15 Achor + +and battle in the land, +c 16 +b 16 +trouble +and will make them lie down in safety. +loving devotion +Hebrew +loyalty to a covenant + + means +faithfulness + +my Ishi + +. +kindness +mercy +here and in most cases throughout the Scriptures as +ruhamah +, +i 1 +; LXX + +g 23 +I will love her who was not loved +Go show love to a woman who is loved by another + +, as well as + +Hebrew + +, and + +l 2 + +Lo-ammi +. +a homer and a half of barley +Literally + +j 1 +Hebrew + +Or + +“There is no truth, no loving devotion, +my Baal + +and no knowledge of God in the land! + +chesed + +d 19 + +love +Forms of the Hebrew +f 23 +God sows + +e 22 Jezreel +; the range of meaning includes +h 23 + means +. +and love raisin cakes +Cited in Romans 9:25 and 1 Peter 2:10 + +, +Hebrew +k 2 15 shekels + + are translated + +goodness +Lo- +, + +a homer of barley and a wineskin full of wine +; that is, a total of approximately 9.36 bushels or 330 + + is approximately + +6 ounces or 171 grams of silver. +liters (probably about 436 pounds or 198 kilograms of barley); LXX + +Or + + 810 | Hosea 4:2 + +2 + +Cursing and lying, + +murder and stealing, +and adultery are rampant; + +3 + +one act of bloodshed follows another. + +Therefore the land mourns, + +and all who dwell in it will waste away + +with the beasts of the field and the birds + +4 + +of the air; + +even the fish of the sea disappear. + +But let no man contend; + +let no man offer reproof; +a +for your people are like those +who contend with a priest. + +5 + +You will stumble by day, + +and the prophet will stumble with you by + +6 + +night; + +so I will destroy your mother— + +My people are destroyed +for lack of knowledge. + +Because you have rejected knowledge, +I will also reject you as My priests. + +Since you have forgotten the law of your God, +7 + +I will also forget your children. + +The more they multiplied, + b + +the more they sinned against Me; + +they exchanged their Glory +8 +for a thing of disgrace. + + c + +9 + +They feed on the sins + + of My people +and set their hearts on iniquity. + +And it shall be + +like people, like priest. + +10 + +I will punish both of them for their ways +and repay them for their deeds. + +They will eat but not be satisfied; + +they will be promiscuous but not multiply. + +11 + +For they have abandoned the LORD to give + + themselves +to promiscuity, wine, and new wine, +which take away understanding. + +12 + +My people consult their wooden idols, + +and their divining rods inform them. +For a spirit of prostitution leads them astray +and they have played the harlot against + +13 + +their God. + +They sacrifice on the mountaintops +and burn offerings on the hills, +under oak, poplar, and terebinth, +b 7 +for My case is against you, O priests +because their shade is pleasant. +the sin offerings + +d 15 Beth-aven + +h 3 + + means + +e 17 + +a 4 +c 8 +Or +of God +Or +wrapped her + +14 + +And so your daughters turn to prostitution +and your daughters-in-law to adultery. + +I will not punish your daughters + +when they prostitute themselves, + +nor your daughters-in-law + +when they commit adultery. +For the men themselves go off with + +prostitutes + +and offer sacrifices with shrine + +prostitutes. + +So a people without understanding + +15 + +will come to ruin. + +Though you prostitute yourself, O Israel, + +may Judah avoid such guilt! + +d + +Do not journey to Gilgal, + +do not go up to Beth-aven, + +16 + +and do not swear on oath, + +‘As surely as the LORD lives!’ + +For Israel is as obstinate +as a stubborn heifer. + +17 + +18 + + e + +Can the LORD now shepherd them +like lambs in an open meadow? + is joined to idols; + +Ephraim + +leave him alone! + +When their liquor is gone, + + f + +19 + +they turn to prostitution; +their rulers + + dearly love disgrace. + + g + +The whirlwind has wrapped them + +in its wings, +Judgment on Israel and Judah + +and their sacrifices will bring them shame. + +5 + + “Hear this, O priests! +Take heed, O house of Israel! + Give ear, O royal house! +For this judgment is against you + +2 + +3 + +because you have been a snare at Mizpah, +a net spread out on Tabor. +The rebels are deep in slaughter; +but I will chastise them all. + +h + +I know all about Ephraim, + +and Israel is not hidden from Me. + +For now, O Ephraim, + +4 + +you have turned to prostitution; +Israel is defiled. + +Their deeds do not permit them + +to return to their God, + +they exchanged their glorious God + +for a spirit of prostitution is within them, +and they do not know the LORD. + +I will exchange their glory + +house of wickedness +Or + +f 18 + + (Syriac); MT + +her shields + +g 19 + +. This is a derogatory term for Bethel, which means +Hebrew + +Hebrew + +house +has + +; see 1 Kings 12:28–29. + +That is, the northern kingdom of Israel +That is, the northern kingdom of Israel; also in verses 5, 9, 11, 12, 13, and 14 + + 5 + +The Unrepentance of Israel and Judah + +Hosea 6:11 | 811 + +Israel’s arrogance testifies against them; +Israel and Ephraim stumble in their + +6 + +iniquity; + +even Judah stumbles with them. +They go with their flocks and herds + +to seek the LORD, +but they do not find Him; + +7 + +He has withdrawn Himself from them. + +They have been unfaithful to the LORD; + a + +for they have borne illegitimate children. + +Now the New Moon +8 + +along with their land. + + will devour them + +Blow the ram’s horn in Gibeah, +the trumpet in Ramah; +raise the battle cry in Beth-aven: + + b + +9 + +Lead on, O Benjamin! +Ephraim will be laid waste +on the day of rebuke. +Among the tribes of Israel + +10 + +I proclaim what is certain. + +The princes of Judah + + c + +are like those who move boundary + +stones; +I will pour out My fury + +11 + +upon them like water. + +Ephraim is oppressed, crushed in judgment, +for he is determined to follow worthless + +d + +12 + +idols. + +So I am like a moth to Ephraim, + +13 + +and like decay to the house of Judah. + +When Ephraim saw his sickness + +and Judah his wound, + +e + +then Ephraim turned to Assyria +and sent to the great king. + +14 + +But he cannot cure you +or heal your wound. + +For I am like a lion to Ephraim + +and like a young lion to the house of + +Judah. + +I, even I, will tear them to pieces + +and then go away. + +15 + +I will carry them off + +where no one can rescue them. + +Then I will return to My place + +until they admit their guilt and seek + +My face; + +6 + + Come, let us return to the LORD. + + For He has torn us to pieces, + but He will heal us; + +He has wounded us, + +2 + +but He will bind up our wounds. + +After two days He will revive us; +on the third day He will raise + +3 + +us up, + +that we may live in His presence. + +So let us know— + +let us press on to know the LORD. + +As surely as the sun rises, + +He will appear; + +He will come to us like the rain, + +like the spring showers that water + + f + +4 + +the earth. + +What shall I do with you, O Ephraim + +? +What shall I do with you, O Judah? +For your loyalty is like a morning mist, +like the early dew that vanishes. + +5 + +Therefore I have hewn them by the prophets; + +I have slain them by the words of + +6 + +My mouth, + +g + +and My judgments go forth like lightning. + +For I desire mercy, not sacrifice, +and the knowledge of God +rather than burnt offerings. + +7 + + h + +But they, like Adam, have transgressed + + the + +8 + +covenant; + +there they were unfaithful to Me. + +Gilead is a city of evildoers, + +9 + +tracked with footprints of blood. + +Like raiders who lie in ambush, +so does a band of priests; + +they murder on the way to Shechem; + +10 + +surely they have committed atrocities. + +In the house of Israel + +I have seen a horrible thing: + +Ephraim practices prostitution there, + +11 + +and Israel is defiled. + +in their affliction they will earnestly seek +their New Moon feast + +the coming month + +Me.” + +b 8 Beth-aven + +a 7 + +house of God + +c 10 + +to follow human precepts + + or + +Or + +d 11 +for Bethel, which means +g 6 +Or +My people + +e 13 + +to King Jareb +; see 1 Kings 12:28–29. +h 7 + +f 4 + + means + +As at Adam, they have transgressed + +See Proverbs 22:28 and Proverbs 23:10. + +. This is a derogatory term +i 11 + +restore the fortunes of + +Or + +That is, the northern kingdom of Israel; also in verse 10 + +Cited in Matthew 9:13 and Matthew 12:7 + +Or + +Or + +Also for you, O Judah, + +a harvest is appointed, + +i + +when I restore + +My people from captivity. + +house of wickedness + + 812 | Hosea 7:1 + +Ephraim’s Iniquity + +13 + +7 + + a + +When I heal Israel, +the iniquity of Ephraim +as well as the crimes of Samaria. + + will be exposed, + +For they practice deceit and thieves break in; +2 + +bandits raid in the streets. + +But they fail to consider in their hearts + +that I remember all their evil. +Now their deeds are all around them; + +3 + +they are before My face. + +4 + +They delight the king with their evil, +and the princes with their lies. + +They are all adulterers, + +like an oven heated by a baker + +who needs not stoke the fire + +5 + +from the kneading to the rising of the + +dough. + +The princes are inflamed with wine + +on the day of our king; + +so he joins hands + +6 + +with those who mock him. + b + +For they prepare their heart like an oven + +while they lie in wait; +all night their anger smolders; + +7 + +Woe to them, for they have strayed from Me! + +Destruction to them, for they have + +rebelled against Me! + +14 + +Though I would redeem them, +they speak lies against Me. + +They do not cry out to Me from their hearts + d + +when they wail upon their beds. + +They slash themselves + + for grain and + +15 + +new wine, + +but turn away from Me. + +Although I trained and strengthened + +16 + +their arms, + +they plot evil against Me. + +They turn, but not to the Most High; + +they are like a faulty bow. + +Their leaders will fall by the sword +for the cursing of their tongue; + +for this they will be ridiculed +Israel Will Reap the Whirlwind +in the land of Egypt. + +8 + +Put the ram’s horn to your lips! +An eagle looms over the house of the + +LORD, + +because the people have transgressed +2 + +My covenant + +in the morning it blazes like a flaming fire. + +and rebelled against My law. + +All of them are hot as an oven, + +and they devour their rulers. + +All their kings fall; +8 + +not one of them calls upon Me. + +9 + +Ephraim mixes with the nations; +Ephraim is an unturned cake. +Foreigners consume his strength, + +but he does not notice. + +Even his hair is streaked with gray, + +10 + +but he does not know. + +Israel’s arrogance testifies against them, + +yet they do not return to the LORD their + +11 + +God; + +despite all this, they do not seek Him. + +So Ephraim has become like a silly, senseless + +dove— + +12 + +calling out to Egypt, then turning to + +Assyria. + +As they go, I will spread My net over them; +I will bring them down like birds of the + +Israel cries out to Me, + +3 + +“O our God, we know You!” + +4 + +But Israel has rejected good; + +an enemy will pursue him. + +They set up kings, but not by Me. + +They make princes, but without My + +approval. + +With their silver and gold they make +5 + +themselves idols, +e +to their own destruction. + +He has rejected your calf, + + O Samaria. + +My anger burns against them. + +How long will they be +6 + +incapable of innocence? +For this thing is from Israel— + +a craftsman made it, and it is not God. + +It will be broken to pieces, +7 +that calf of Samaria. + +For they sow the wind, + +and they shall reap the whirlwind. + +There is no standing grain; + +air. +I will chastise them + +c + +what sprouts fails to yield flour. + +a 1 +them according to what was reported against them in the assembly. + +when I hear them flocking together. + +Even if it should produce, +their baker sleeps + +b 6 +the foreigners would swallow it up. +d 14 + +c 12 + +I will chastise + +That is, the northern kingdom of Israel; also in verses 8 and 11 + +They gather together + +calf idol + +e 5 + +Literally + +Or + +Some Hebrew manuscripts and LXX; see 1 Kings + +18:28. Most Hebrew manuscripts + +Or + +; see 1 Kings 12:29. + + 8 + +6 + +Hosea 9:15 | 813 + +Israel is swallowed up! + +9 + +Now they are among the nations +like a worthless vessel. + +10 + + a + +For they have gone up to Assyria +like a wild donkey on its own. +Ephraim + + has hired lovers. +Though they hire allies among the nations, + +I will now round them up, +and they will begin to diminish + +under the oppression of the king of + +princes. + +11 + +For even if they flee destruction, + +Egypt will gather them +and Memphis will bury them. + +Their precious silver will be taken over + +7 + +by thistles, + +and thorns will overrun their tents. + +The days of punishment have come; + +the days of retribution have arrived— +let Israel know it. + +The prophet is called a fool, + +and the inspired man insane, + +12 + +Though Ephraim multiplied the altars for sin, + +because of the greatness +8 + +they became his altars for sinning. + +Though I wrote for them the great things of + +of your iniquity and hostility. +The prophet is Ephraim’s watchman, + +c + +13 + +My law, + +they regarded them as something strange. + +Though they offer sacrifices as gifts to Me, + +and though they eat the meat, +the LORD does not accept them. +Now He will remember their iniquity and + +14 + +punish their sins: +They will return to Egypt. + +Israel has forgotten his Maker and built + +palaces; + +Judah has multiplied its fortified cities. + +But I will send fire upon their cities, +and it will consume their citadels. + +Israel’s Punishment + +9 + + Do not rejoice, O Israel, +with exultation like the nations, +for you have played the harlot against + +your God; + +2 + +you have made love for hire on every + +threshing floor. + +The threshing floor and winepress will not + +3 + +feed them, + +and the new wine will fail them. + +They will not remain + + b + +in the land of the LORD; + +4 + +Ephraim + + will return to Egypt +and eat unclean food in Assyria. + +They will not pour out wine offerings to the + +LORD, + +and their sacrifices will not please Him, + +but will be to them like the bread of + +mourners; + +all who eat will be defiled. + +For their bread will be for themselves; + +5 + +along with my God, + +yet the snare of the fowler lies on all his +9 + +paths. + +Hostility is in the house of his God! +They have deeply corrupted themselves + +as in the days of Gibeah; +He will remember their guilt; +He will punish their sins. + +10 + +I found Israel like grapes in the + +wilderness. + +I saw your fathers as the firstfruits +of the fig tree in its first season. + +But they went to Baal-peor, + +and consecrated themselves to + +Shame; + +11 + +so they became as detestable +as the thing they loved. + +Ephraim’s glory will fly away like a bird, +with no birth, no pregnancy, and no + +12 + +conception. + +Even if they raise their children, + +I will bereave them of each one. + +13 + +Yes, woe be to them + +when I turn away from them! + +I have seen Ephraim, like Tyre, + +planted in a meadow. +But Ephraim will bring out + +14 + +his children for slaughter. + +Give them, O LORD— + +what will You give? + +15 + +Give them wombs that miscarry +and breasts that dry up! + +All their evil appears at Gilgal, +for there I hated them. + +I will drive them from My house + +it will not enter the house of the LORD. + +for the wickedness of their deeds. + +a 9 + +What will you do on the appointed day, +on the day of the LORD’s feast? + +c 8 + +b 3 +The prophet is the watchman over Ephraim, the people of my God + +all their leaders are rebellious. + +I will no longer love them; + +That is, the northern kingdom of Israel; also in verse 11 + +That is, the northern kingdom of Israel; similarly in + +verses 8, 11, 13, and 16 + +Or + + 814 | Hosea 9:16 + +16 + +Ephraim is struck down; +their root is withered; +they cannot bear fruit. +Even if they bear children, + +17 + +I will slay the darlings of their wombs. + +My God will reject them + +9 + +Since the days of Gibeah you have sinned, + +O Israel, + +and there you have remained. + g + +10 + +Did not the battle in Gibeah + +overtake the sons of iniquity? +I will chasten them when I please; + +because they have not obeyed Him; + +nations will be gathered against them + +and they shall be wanderers + +Retribution for Israel’s Sin +among the nations. + +11 + +to put them in bondage + +for their double transgression. + +10 + +Israel was a luxuriant vine, +yielding fruit for himself. + +The more his fruit increased, + +the more he increased the altars. + +The better his land produced, + +2 + +the better he made the sacred pillars. + +Their hearts are devious; + +now they must bear their guilt. +The LORD will break down their altars +3 +and demolish their sacred pillars. + +Surely now they will say, +“We have no king, + +4 + +for we do not revere the LORD. +What can a king do for us?” + +They speak mere words; + +Ephraim is a well-trained heifer that loves + +to thresh; + +but I will place a yoke on her fair neck. + +12 + +I will harness Ephraim, Judah will plow, +and Jacob will break the hard ground. + +Sow for yourselves righteousness + +and reap the fruit of loving devotion; +break up your unplowed ground. + +For it is time to seek the LORD + +13 + +until He comes and sends righteousness +upon you like rain. + +You have plowed wickedness and reaped + +injustice; + +you have eaten the fruit of lies. + +14 + +Because you have trusted in your own way + +and in the multitude of your mighty men, + +with false oaths they make covenants. + +the roar of battle will rise against your + +So judgment springs up + +people, + +like poisonous weeds in the furrows + +so that all your fortresses will be + +5 + +of a field. + +a + +The people of Samaria will fear +for the calf of Beth-aven. + +Indeed, its people will mourn over it +with its idolatrous priests— +those who rejoiced in its glory— + +6 + +for it has been taken from them into exile. + +b +Yes, it will be carried to Assyria +as tribute to the great king. + + c + +Ephraim + + will be seized with shame; + +d + +7 + +Israel will be ashamed of its wooden + +idols. + +8 + +Samaria will be carried off with her king +like a twig on the surface of the water. + + e + +The high places of Aven +it is the sin of Israel; +thorns and thistles will overgrow their + + will be destroyed— + +altars. + +Then they will say to the mountains, “Cover + + f + +demolished + +as Shalman devastated Beth-arbel + +in the day of battle, + +15 + +when mothers were dashed to pieces + +along with their children. + +Thus it will be done to you, O Bethel, +because of your great wickedness. + +When the day dawns, + +Out of Egypt I Called My Son (Matt. 2:13–15) + +the king of Israel will be utterly cut off. + +11 + +2 + +h + +When Israel was a child, I loved him, +and out of Egypt I called My son. +i + +But the more I called Israel, + +the farther they departed from Me. + +They sacrificed to the Baals +3 + + j + +and burned incense to carved images. + +It was I who taught Ephraim +taking them by the arms, + + to walk, + +but they never realized + +that it was I who healed them. + +house of God +of its own counsel + +e 8 + +of wickedness + +d 6 +f 8 + +us!” + +house of wickedness +and to the hills, “Fall on us!” +c 6 +to King Jareb + +a 5 Beth-aven +b 6 +Aven +g 9 +called them, the more they went from them. + + means + +Or + +Or + +. This is a derogatory term for Bethel, which is + +; see 1 Kings 12:28–29. + +Did not the battle overtake the sons of iniquity in Gibeah? + +That is, the northern kingdom of Israel; also v. 11 + +h 1 + + is a reference to Beth-aven (a derogatory term for Bethel); see verse 5. + +j 3 + +Cited in Matthew 2:15 +That is, the northern kingdom of Israel; also in verses 8, 9, and 12 + +i 2 + +Or +; +The more they +Cited in Luke 23:30; see also Rev. 6:16. +LXX; Hebrew + +Or + + 4 + +4 + + d + +I led them with cords of kindness, + +Yes, he struggled with the angel + + and + +Hosea 13:2 | 815 + +with ropes of love; + +I lifted the yoke from their necks +5 +and bent down to feed them. + +Will they not return to the land of Egypt + +6 + +and be ruled by Assyria +because they refused to repent? +A sword will flash through their cities; + +7 + +it will destroy the bars of their gates +and consume them in their own plans. + +My people are bent on turning from Me. +Though they call to the Most High, +He will by no means exalt them. + +God’s Love for Israel + +8 + +How could I give you up, O Ephraim? + +How could I surrender you, O Israel? + +How could I make you like Admah? + +How could I treat you like Zeboiim? + +My heart is turned within Me; +9 +My compassion is stirred! + +prevailed; + +he wept and sought His favor; + + e + +he found Him at Bethel + +5 + +and spoke with Him there + +— + +the LORD God of Hosts, + +6 + +the LORD is His name of renown. + +But you must return to your God; +maintain love and justice, +and always wait on your God. + +7 + +A merchant loves to defraud + +8 + +with dishonest scales in his hands. + +And Ephraim boasts: “How rich I have become! + +I have found wealth for myself. +In all my labors, they can find in me +9 + +no iniquity that is sinful.” +But I am the LORD your God + +ever since the land of Egypt. +I will again make you dwell in tents, + +10 + +as in the days of the appointed feast. + +I will not execute the full fury of My anger; + +I spoke through the prophets + +I will not destroy Ephraim again. + +For I am God and not man— + +10 + +the Holy One among you— +and I will not come in wrath. +They will walk after the LORD; +He will roar like a lion. + +When He roars, + +11 + +His children will come trembling from the + +west. + +They will come trembling like birds from + +Egypt + +and like doves from the land of Assyria. + +Then I will settle them in their homes, + +declares the LORD. + +12 + +Ephraim surrounds Me with lies, +the house of Israel with deceit; +a + +but Judah still walks with God + +A Reproof of Ephraim, Judah, and Jacob +and is faithful to the Holy One. + +12 + + b + + feeds on the wind +Ephraim +and pursues the east wind all day long; + +he multiplies lies and violence; +he makes a covenant with Assyria +2 +and sends olive oil to Egypt. + +3 + + c +The LORD has a charge to bring against Judah. + according to his ways + +He will punish Jacob +and repay him according to his deeds. +In the womb he grasped his brother’s heel, +and Judah is unruly against God, the faithful Holy One +and in his vigor he wrestled with God. +d 4 + +he deceives + +he grasps the heel +g 1 + +a 12 +c 2 Jacob +Or + + means + + or + +. + +Or + +11 + +and multiplied their visions; +I gave parables through the prophets. + +Is there iniquity in Gilead? + +They will surely come to nothing. + +Do they sacrifice bulls in Gilgal? + +12 + +Indeed, their altars will be heaps of stones + f +in the furrows of the field. +Jacob fled to the land of Aram + +13 + +and Israel worked for a wife— +for a wife he tended sheep. + +But by a prophet the LORD brought Israel out + +14 + +of Egypt, + +and by a prophet he was preserved. + +Ephraim has provoked bitter anger, + +so his Lord will leave his bloodguilt upon + +him + +God’s Anger against Israel + +and repay him for his contempt. + + g + +13 + + When Ephraim +trembling; + + spoke, there was + +he was exalted in Israel. + +But he incurred guilt through Baal, + +and he died. + +2 + +Now they sin more and more + +and make for themselves cast images, + +idols skillfully made from their silver, +all of them the work of craftsmen. + + h + offer human + +People say of them, “They + +b 1 +e 4 + +Angel + +sacrifice and kiss the calves!” + +and there He spoke with us + +f 12 + +That is, the northern kingdom of Israel; also in vv. 8, 14 +“The men who sacrifice kiss the calves!” +That +LXX and Syriac; MT + +h 2 + +is, NW Mesopotamia + +That is, the northern kingdom of Israel; also in v. 12 + +Or + + 816 | Hosea 13:3 + +3 + +Therefore they will be like the morning mist, + +His fountain will fail, + +like the early dew that vanishes, +like chaff blown from a threshing floor, + +like smoke through an open window. + +4 + +Yet I am the LORD your God + +ever since the land of Egypt; + +5 + +you know no God but Me, + +for there is no Savior besides Me. + +6 + +I knew you in the wilderness, +in the land of drought. + +When they had pasture, + +they became satisfied; +when they were satisfied, + +7 + +8 + +their hearts became proud, +and as a result they forgot Me. +So like a lion I will pounce on them; + +like a leopard I will lurk by the path. +Like a bear robbed of her cubs I will attack + +them, + +and I will tear open their chests. +There I will devour them like a lion, + +Death and Resurrection (1 Cor. 15:50–58) +9 + +like a wild beast tearing them apart. + +You are destroyed, O Israel, + +10 + +because you are against Me— + a +against your helper. + +Where is your king now + +to save you in all your cities, +and the rulers to whom you said, +“Give me a king and princes”? +So in My anger I gave you a king, + +11 + +12 + +14 + +13 + +The iniquity of Ephraim is bound up; + +his sin is stored up. + +Labor pains come upon him, +but he is an unwise son. + +When the time arrives, + +he fails to present himself at the opening + +8 + +of the womb. + +b + +I will ransom them from the power of Sheol; + +I will redeem them from Death. + c +Where, O Death, are your plagues? +Where, O Sheol, is your sting? + +Judgment on Samaria + +Compassion is hidden from My eyes. + +15 + +Although he flourishes among his brothers, + +an east wind will come— + +and his spring will run dry. +The wind will plunder his treasury + +of every precious article. + +16 + +Samaria will bear her guilt + +because she has rebelled against her God. + +They will fall by the sword; + +A Call to Repentance (Jer. 3:11–25 ; Zech. 1:1–6) + +their little ones will be dashed to pieces, +and their pregnant women ripped open. + +14 + +2 + + Return, O Israel, to the LORD your God, +for you have stumbled by your iniquity. + +Bring your confessions + +and return to the LORD. + +Say to Him: “Take away all our iniquity + +and receive us graciously, + +d + +that we may present +3 +the fruit of our lips. +Assyria will not save us, + +nor will we ride on horses. +We will never again say, ‘Our gods!’ +to the work of our own hands. + +A Promise of God’s Blessing + +For in You the fatherless find compassion.” + +4 + +I will heal their apostasy; +I will freely love them, +for My anger has turned away from them. + +5 + +I will be like the dew to Israel; +he will blossom like the lily +and take root like the cedars of Lebanon. + +6 + +7 + +and his splendor will be like the olive tree, +his fragrance like the cedars of Lebanon. + +They will return and dwell in his shade; + +they will grow grain and blossom like the + +vine. + +His renown will be like the wine of + +e +Lebanon. + +O Ephraim, + + what have I to do + +anymore with idols? + + f + +It is I who answer and watch over him. + +9 + +I am like a flourishing cypress; +your fruit comes from Me. + +Whoever is wise, let him understand these + +things; + +whoever is discerning, let him know them. + +a wind from the LORD + +a 10 +Shall I be your King now b 14 +rising up from the desert. +c 14 +that we may present our lips as sacrificial bulls + +Or + +e 8 + +Where, O Death, is your penalty? Where, O Hades, is your sting? + +Or +LXX + +Shall I ransom them from the power of Sheol? Shall I redeem them from Death? + +For the ways of the LORD are right, +and the righteous walk in them +but the rebellious stumble in them. + + Cited in 1 Cor. 15:55 +That is, the northern kingdom of Israel + +d 2 +f 8 + +pine + +juniper +LXX and Syriac; Hebrew + +fir + +Or + + or + + or + +and in My wrath I took him away. + +His shoots will sprout, + + Joel + +The Invasion of Locusts + +11 + +1 + +2 + +This is the word of the LORD that came to +Joel son of Pethuel: + +Hear this, O elders; + +and give ear, all who dwell in the land. +Has anything like this ever happened in your + +3 + +days + +or in the days of your fathers? + +Tell it to your children; + +let your children tell it to their + +4 + +children, + +and their children to the next generation. + +What the devouring locust has left, +the swarming locust has eaten; +what the swarming locust has left, +the young locust has eaten; +a +and what the young locust has left, +5 +the destroying locust has eaten. + +Wake up, you drunkards, and weep; +wail, all you drinkers of wine, + +because of the sweet wine, + +6 + +for it has been cut off from your mouth. + +For a nation has invaded My land, +powerful and without number; + +its teeth are the teeth of a lion, + +7 + +and its fangs are the fangs of a lioness. + +It has laid waste My grapevine +and splintered My fig tree. + +It has stripped off the bark and thrown it + +away; + +A Call to Mourning + +the branches have turned white. + +8 + +Wail like a virgin dressed in sackcloth, + +9 + +grieving for the husband of her youth. + +Grain and drink offerings have been + +cut off + +from the house of the LORD; + +the priests are in mourning, + +10 + +those who minister before the LORD. + +The field is ruined; + +the land mourns. + +For the grain is destroyed, + +Be dismayed, O farmers, +wail, O vinedressers, +over the wheat and barley, + +12 + +because the harvest of the field has + +perished. + +The grapevine is dried up, + +and the fig tree is withered; +the pomegranate, palm, and apple— + +all the trees of the orchard—are withered. +A Call to Repentance +Surely the joy of mankind has dried up. +(Amos 5:4–15 ; Zephaniah 2:1–3 ; Luke 13:1–5) + +13 + +Put on sackcloth and lament, O priests; + +wail, O ministers of the altar. +Come, spend the night in sackcloth, + +O ministers of my God, + +14 + +because the grain and drink offerings + +are withheld from the house of your God. + +Consecrate a fast; + +proclaim a solemn assembly! + +Gather the elders + +and all the residents of the land +to the house of the LORD your God, + +and cry out to the LORD. + +15 + +Alas for the day! + +For the Day of the LORD is near, + +b + +16 + +and it will come + +as destruction from the Almighty. + +Has not the food been cut off +before our very eyes— + +17 + +joy and gladness + +from the house of our God? + +The seeds lie shriveled beneath the clods; + +the storehouses are in ruins; +the granaries are broken down, + +18 + +for the grain has withered away. + +How the cattle groan! + +The herds wander in confusion + +because they have no pasture. + +19 + +Even the flocks of sheep are suffering. + +To You, O LORD, I call, + +for fire has consumed the open pastures +and flames have scorched all the trees of + +b 15 + +Shaddai + +a 4 + +the new wine is dried up, and the oil fails. + +the field. + +The precise identification of the four kinds of locusts mentioned here is uncertain. + +Hebrew + + 818 | Joel 1:20 + +20 + +Even the beasts of the field pant for You, + +Indeed, His camp is very large, + +The Army of Locusts (Amos 7:1–9) + +for the streams of water have dried up, +and fire has consumed the open pastures. + +for mighty are those who obey His + +command. + +2 + +Blow the ram’s horn in Zion; +sound the alarm on My holy mountain! + +Let all who dwell in the land tremble, +for the Day of the LORD is coming; +indeed, it is near— + +2 + +a day of darkness and gloom, + +a day of clouds and blackness. + +Like the dawn overspreading the mountains + +a great and strong army appears, + +such as never was of old, + +3 + +nor will ever be in ages to come. + +Before them a fire devours, + +and behind them a flame scorches. +The land before them is like the Garden of + +Eden, + +but behind them, it is like a desert + +4 + +wasteland— + +surely nothing will escape them. +a +Their appearance is like that of horses, +and they gallop like swift steeds. + +5 + +With a sound like that of chariots + +they bound over the mountaintops, +like the crackling of fire consuming stubble, +like a mighty army deployed for battle. + +6 + +Nations writhe in horror before them; + +7 + +every face turns pale. +They charge like mighty men; + +they scale the walls like men of war. + +Each one marches in formation, + +8 + +not swerving from the course. + +They do not jostle one another; +each proceeds in his path. +They burst through the defenses, + +9 + +never breaking ranks. + +They storm the city; + +they run along the wall; + +they climb into houses, + +10 + +entering through windows like thieves. + +Before them the earth quakes; + +the heavens tremble. + +The sun and moon grow dark, + +11 + +and the stars lose their brightness. + +a 4 + +The LORD raises His voice +like cavalry + +like charioteers +in the presence of His army. +loving devotion + +b 13 + +For the Day of the LORD is great and very + +dreadful. +Return with All Your Heart +Who can endure it? + +12 + +“Yet even now,” + +declares the LORD, + +“return to Me with all your heart, + +with fasting, weeping, and mourning.” + +13 + +So rend your hearts and not your garments, + +and return to the LORD your God. +For He is gracious and compassionate, +slow to anger, abounding in loving + +b + +14 + +devotion. + +And He relents from sending disaster. + +Who knows? He may turn and relent +and leave a blessing behind Him— + +15 + +grain and drink offerings + +for the LORD your God. + +Blow the ram’s horn in Zion, + +16 + +consecrate a fast, +proclaim a sacred assembly. + +Gather the people, sanctify the congregation, +assemble the aged, gather the children, +even those nursing at the breast. +Let the bridegroom leave his room, +and the bride her chamber. + +17 + +Let the priests who minister before the LORD +weep between the portico and the altar, + +saying, “Spare Your people, O LORD, +and do not make Your heritage a + +reproach, + +an object of scorn among the nations. +Why should they say among the peoples, + +Restoration Promised + +‘Where is their God?’ + +” + +18 + +19 + +Then the LORD became jealous for His land, + +and He spared His people. + +And the LORD answered His people: + +“Behold, I will send you + +grain, new wine, and oil, +and by them you will be satisfied. + +I will never again make you +chesed + +a reproach among the nations. +goodness + +faithfulness + +kindness + +love + +mercy + +Or + +loyalty to a covenant +the Scriptures as + + or + +Forms of the Hebrew + +; the range of meaning includes + +, + +. + + are translated here and in most cases throughout +, as well as + +, and + +, + +, + + 20 + +29 + +Joel 3:8 | 819 + +The northern army I will drive away from + +you, + +a + +banishing it to a barren and desolate land, + +b + +its front ranks into the Eastern Sea, + +and its rear guard into the Western Sea. + +And its stench will rise; + +its foul odor will ascend. + +21 + +For He has done great things. + +22 + +Do not be afraid, O land; +rejoice and be glad, +for the LORD has done great things. + +Do not be afraid, O beasts of the field, + +for the open pastures have turned green, +c + +23 + +the trees bear their fruit, + +and the fig tree and vine yield their best. + +Be glad, O children of Zion, + +and rejoice in the LORD your God, +for He has given you the autumn rains + +for your vindication. +He sends you showers, + +24 + +both autumn and spring rains, as before. + +The threshing floors will be full of grain, + +25 + +and the vats will overflow with new wine + +and oil. + +I will repay you for the years eaten by + +locusts— + +the swarming locust, the young locust, + + d + +the destroying locust, and the devouring + +26 + +locust + +— + +My great army that I sent against you. + +You will have plenty to eat, +until you are satisfied. + +You will praise the name of the LORD your + +God, + +who has worked wonders for you. + +27 + +My people will never again + +be put to shame. + +Then you will know that I am present in + +Israel + +and that I am the LORD your God, +and there is no other. +My people will never again + +I Will Pour Out My Spirit (Acts 2:14–36) + +be put to shame. + +28 + +And afterward, I will pour out My Spirit on all + +people. + +Your sons and daughters will prophesy, + +your old men will dream dreams, + +30 + +Even on My menservants and maidservants, +I will pour out My Spirit in those days. +I will show wonders in the heavens and on + + e + +31 + +the earth, + +blood and fire and columns +The sun will be turned to darkness +  f + +and the moon to blood +before the coming of the great and + + of smoke. + +32 + +And everyone who calls on the name of + +awesome + + Day of the LORD. + g +the LORD +will be saved; + +for on Mount Zion and in Jerusalem + +there will be deliverance, as the LORD + +has promised, +The LORD Judges the Nations + +among the remnant called by the LORD. + +3 + +2 + + “Yes, in those days and at that time, +when I restore Judah and Jerusalem from + +h + +captivity, + +I will gather all the nations + +i + +and bring them down to the Valley of + +Jehoshaphat. + +There I will enter into judgment against them +concerning My people, My inheritance, + +Israel, + +whom they have scattered among the +3 + +nations + +as they divided up My land. + +They cast lots for My people; + +4 + +they bartered a boy for a prostitute +and sold a girl for wine to drink. + +Now what do you have against Me, O Tyre, +Sidon, and all the regions of Philistia? Are you +rendering against Me a recompense? If you retal- +iate against Me, I will swiftly and speedily return +For you +your recompense upon your heads. +took My silver and gold and carried off My finest +k +You sold the people +treasures to your temples. + to send +of Judah and Jerusalem to the Greeks, +7 +them far from their homeland. + +5 + +6 + +j + +Behold, I will rouse them from the places to +8 +which you sold them; I will return your recom- +pense upon your heads. +I will sell your sons and +daughters into the hands of the people of Judah, +and they will sell them to the Sabeans—to a +distant nation.” + +b 20 + +your young men will see visions. +dreadful + +a 20 +d 25 +That is, the Dead Sea +f 31 +The precise identification of the four kinds of insects mentioned here is uncertain. +Jerusalem +i 2 Jehoshaphat +Or + +Indeed, the LORD has spoken. +h 1 +palaces + +That is, the Mediterranean Sea, also called the Great Sea +restore the fortunes of Judah and +g 32 +k 6 + +clouds +Literally +LXX +to the peoples of Javan + +Cited in Acts 2:17–21 and Romans 10:13 + +their strength +billows + +the LORD judges + +c 22 +e 30 + +glorious + +; LXX + + or + +Or + +j 5 + + means + +; also in verse 12. + +Or + +Or + + 820 | Joel 3:9 + +9 + +Proclaim this among the nations: + +But the LORD will be a refuge for His + +“Prepare for war; + +rouse the mighty men; + +let all the men of war + +10 + +advance and attack! + +Beat your plowshares into swords + +11 + +and your pruning hooks into spears. +Let the weak say, ‘I am strong!’ + +Come quickly, all you surrounding nations, + +and gather yourselves. +Bring down Your mighty ones, + +O LORD. + +12 + +Let the nations be roused + +and advance to the Valley of + +Jehoshaphat, + +13 + +for there I will sit down + +to judge all the nations on every side. + +a + +Swing the sickle, + +for the harvest is ripe. +Come, trample the grapes, +for the winepress is full; + +the wine vats overflow + +because their wickedness is great. + +14 + +Multitudes, multitudes + +15 + +in the valley of decision! +For the Day of the LORD is near +in the valley of decision. + +16 + +The sun and moon will grow dark, + +and the stars will no longer shine. + +The LORD will roar from Zion + +and raise His voice from Jerusalem; +heaven and earth will tremble. + +people, + +a stronghold for the people + +Blessings for God’s People +of Israel. + +17 + +Then you will know that I am the LORD your + +God, + +who dwells in Zion, My holy + +mountain. +Jerusalem will be holy, + +18 + +never again to be overrun by + +foreigners. + +And in that day the mountains will drip with + +sweet wine, + +and the hills will flow with milk. +All the streams of Judah will run with + +water, + +and a spring will flow from the house + +b + +19 + +of the LORD + +to water the Valley of Acacias. + +Egypt will become desolate, + +and Edom a desert wasteland, + +because of the violence done to the people of + +20 + +Judah, + +in whose land they shed innocent blood. + +But Judah will be inhabited forever, + +21 + +and Jerusalem from generation to + +generation. + +c + +For I will avenge their blood, + +which I have not yet avenged. + +” + +For the LORD dwells in Zion. + +a 13 +the harvest has come +which I have not yet pardoned. + +b 18 + +Valley of Shittim + +c 21 + +For I will pardon their bloodguilt, + +LXX + +; see also Mark 4:29. + +Or + +Or + + Amos + +Judgment on Israel’s Neighbors (Jer. 12:14–17) + +9 + +1 + + a + + b + +These are the words of Amos, who was +among the sheepherders + of Tekoa—what + before the +he saw concerning Israel two years + c +earthquake, in the days when Uzziah was king of + was king of +Judah and Jeroboam son of Jehoash +Israel. + +He said: + +2 + +“The LORD roars from Zion + +and raises His voice from Jerusalem; + +3 + +the pastures of the shepherds mourn, + +and the summit of Carmel withers.” + +This is what the LORD says: + +“For three transgressions of Damascus, even + +d + +four, + +I will not revoke My judgment, + +because they threshed Gilead +4 + +with sledges of iron. + +5 + +So I will send fire upon the house of Hazael +to consume the citadels of Ben-hadad. +I will break down the gates of Damascus; + from the Valley + +I will cut off the ruler + + e + + f + +of Aven + +This is what the LORD says: + +“For three transgressions of Tyre, + +even four, + +I will not revoke My judgment, +because they delivered up a whole + +congregation of exiles to Edom +and broke a covenant of brotherhood. +So I will send fire upon the walls of Tyre + +10 + +11 + +to consume its citadels.” + +This is what the LORD says: + +“For three transgressions of Edom, even four, + +I will not revoke My judgment, + +because he pursued his brother with the + +sword + +and stifled all compassion; + +12 + +his anger raged continually, + +and his fury flamed incessantly. + +So I will send fire upon Teman + +13 + +to consume the citadels of Bozrah.” + +This is what the LORD says: + +“For three transgressions of the Ammonites, + +even four, + +and the one who wields the scepter in + +Beth-eden. + +says the LORD. +The people of Aram will be exiled to Kir,” + +I will not revoke My judgment, +because they ripped open the pregnant + +14 + +women of Gilead + +6 + +This is what the LORD says: + +“For three transgressions of Gaza, even four, + +I will not revoke My judgment, + +because they exiled a whole population, +7 + +delivering them up to Edom. + +So I will send fire upon the walls of Gaza, + +8 + +to consume its citadels. +I will cut off the ruler of Ashdod + +and the one who wields the scepter in + +Ashkelon. + +I will turn My hand against Ekron, + +and the remnant of the Philistines will + +says the Lord GOD. + +in order to enlarge their territory. + +So I will kindle a fire in the walls of Rabbah + +to consume its citadels + +15 + +amid war cries on the day of battle + + g + +and a violent wind on the day of tempest. +says the LORD. + +Their king will go into exile + + — +he and his princes together,” +Judgment on Moab, Judah, and Israel + +2 + +This is what the LORD says: + +“For three transgressions of Moab, + +h + +even four, + +I will not revoke My judgment, + +perish,” +sheep breeders + +a 1 +punishment +Or +g 15 + +I will not revoke it +Or + +Milcom will go into exile + +b 1 + +during the two years + +c 1 + +I will not revoke the + +because he burned to lime +Joash + +the bones of Edom’s king. +Jehoash +f 5 Aven +the inhabitants +Or + +d 3 + +e 5 +, a variant of +Or +; Milcom, also called Molech, was god of the Ammonites; see Leviticus 18:21 and + +; also in verses 6, 9, 11, and 13 + +I will not revoke it + +Hebrew + + means + +wickedness + +. + +; Hebrew + +; also in verses 4 and 6 + +; Hebrew + +h 1 + +I will not revoke the punishment + +Possibly +1 Kings 11:7. + +Or + + 822 | Amos 2:2 + +2 + +12 + +So I will send fire against Moab + +to consume the citadels of Kerioth. + +Moab will die in tumult, +3 + +amid war cries and the sound of + +the ram’s horn. +I will cut off the ruler of Moab + +and kill all the officials with him,” + +says the LORD. + +4 + +This is what the LORD says: + +“For three transgressions of Judah, + +even four, + +I will not revoke My judgment, + +because they reject the Law of the LORD + +and fail to keep His statutes; + +they are led astray by the lies +5 + +in which their fathers walked. + +6 + +So I will send fire upon Judah + +to consume the citadels of Jerusalem.” + +This is what the LORD says: + +“For three transgressions of Israel, + +even four, + +I will not revoke My judgment, + +because they sell the righteous for silver +7 +and the needy for a pair of sandals. +They trample on the heads of the poor + +as on the dust of the earth; +they push the needy out of their way. + +A man and his father +8 + +have relations with the same girl +and so profane My holy name. +They lie down beside every altar +on garments taken in pledge. + +a + +b + +And in the house of their God, + +9 + +they drink wine obtained through fines. + +Yet it was I who destroyed + +the Amorite before them, + +though his height was like that of the cedars, + +and he was as strong as the oaks. + +10 + +Yet I destroyed his fruit above + +and his roots below. + +And I brought you up from the land + +of Egypt + +and led you forty years in the wilderness, + +11 + +that you might take possession +of the land of the Amorite. + +I raised up prophets from your sons + +and Nazirites from your young men. + +Is this not true, + +declares the LORD. + +O children of Israel?” +of their gods + +b 8 + +a 8 +appointment to meet + +“But you made the Nazirites drink wine +and commanded the prophets not to + +13 + +prophesy. + +14 + +Behold, I am about to crush you in your place + +as with a cart full of grain. + +Escape will fail the swift, + +15 + +the strong will not prevail by his strength, +and the mighty will not save his life. + +16 + +The archer will not stand his ground, +the fleet of foot will not escape, +and the horseman will not save his life. + +Even the bravest of mighty men +will flee naked on that day,” + +Witnesses against Israel + +declares the LORD. + +3 + +Hear this word that the LORD has spoken +against you, O children of Israel, against the +whole family that I brought up out of the land of +2 +Egypt: + + c + +“Only you have I known + +from all the families of the earth; + +3 + +therefore I will punish you +for all your iniquities.” + + d + +Can two walk together + +4 + +without agreeing where to go? + +Does a lion roar in the forest +when he has no prey? + +Does a young lion growl in his den + +5 + +if he has caught nothing? + +Does a bird land in a snare + +where no bait has been set? +Does a trap spring from the ground +6 +when it has nothing to catch? + +If a ram’s horn sounds in a city, +do the people not tremble? + +If calamity comes to a city, +7 + +has not the LORD caused it? + +Surely the Lord GOD does nothing +without revealing His plan +to His servants the prophets. + +8 + +The lion has roared— +who will not fear? + +The Lord GOD has spoken— +9 +who will not prophesy? + +Proclaim to the citadels of Ashdod +and to the citadels of Egypt: + +“Assemble on the mountains of Samaria; + +see the great unrest in the city +d 3 +and the acts of oppression in her midst.” + +without an + +chosen + +c 2 + +they drink the wine of those who have been fined + +Or + +Or + +Or + +Or + + 10 + +“For they know not how to do right,” + +declares the LORD. + +“They store up violence and destruction + +11 + +in their citadels.” + a + +Therefore this is what the Lord GOD says: + +“An enemy + + will surround the land; + +12 + +he will pull down your strongholds +and plunder your citadels.” + +Amos 4:12 | 823 + +d + +Bring your sacrifices every morning, +5 +your tithes every three days. + +Offer leavened bread as a thank offering, +and loudly proclaim your freewill + +offerings. + +For that is what you children of Israel love +declares the Lord GOD. + +to do,” + +6 + + e + +“I afflicted all your cities with cleanness of + +This is what the LORD says: + +teeth + +“As the shepherd snatches from the mouth of + +the lion + +two legs or a piece of an ear, + +so the Israelites dwelling in Samaria will be + +rescued + +b + +13 + +having just the corner of a bed +or the cushion of a couch. + +14 + +Hear and testify against the house of Jacob, +declares the Lord GOD, the God of Hosts. + +On the day I punish Israel for their + +transgressions, + +I will visit destruction on the altars + +of Bethel; + +15 + +the horns of the altar will be cut off, +and they will fall to the ground. +I will tear down the winter house +along with the summer house; +the houses of ivory will also perish, + +declares the LORD. +and the great houses will come to an end,” + +Punishment Brings No Repentance + +4 + + Hear this word, +you cows of Bashan on Mount Samaria, + +you women who oppress the poor + +and crush the needy, +who say to your husbands, + +“Bring us more to drink.” + +2 + +The Lord GOD has sworn by His holiness: + +“Behold, the days are coming +3 + +when you will be taken away with hooks, +and your posterity with fishhooks. +You will go out through broken walls, +each one straight ahead of her, +and you will be cast out toward Harmon, + +declares the LORD. + +c + +” + +4 + +and all your towns with lack of bread, +yet you did not return to Me,” + +declares the LORD. + +7 + +“I also withheld the rain from you + +when the harvest was three months away. + +I sent rain on one city + +but withheld it from another. + +One field received rain; +8 + +another without rain withered. +People staggered from city to city + +for water to drink, +but they were not satisfied; + +yet you did not return to Me,” + +declares the LORD. + +9 + +“I struck you with blight and mildew + +in your growing gardens and vineyards; +the locust devoured your fig and olive trees, +declares the LORD. + +yet you did not return to Me,” + +10 + +“I sent plagues among you +like those of Egypt; + +I killed your young men with the sword, +along with your captured horses. + +I filled your nostrils with the stench of your + +camp, + +yet you did not return to Me,” + +declares the LORD. + +11 + +“Some of you I overthrew + +  f + +as I overthrew Sodom and Gomorrah, + +and you were like a firebrand + + snatched from + +declares the LORD. + +a blaze, + +yet you did not return to Me,” + +12 + +“Therefore, that is what I will do + +to you, O Israel, + +and since I will do this to you, + +“Go to Bethel and transgress; +a 11 +b 12 +An adversary +rebel even more at Gilgal! +in Damascus on their couches +f 11 + +a burning stick + +Or + +Or + +so will the Israelites be snatched away, those who sit in Samaria on the edge of their beds and +c 3 + +prepare to meet your God, O Israel! +d 4 + +with empty stomachs + +years + +e 6 + +That is, + +That is, possibly Mount Hermon + +Or + +That is, + + 824 | Amos 4:13 + +13 + +10 + +For behold, He who forms the mountains, + +There are those who hate the one who + +who creates the wind +and reveals His thoughts to man, + +who turns the dawn to darkness + +reproves in the gate + +11 + +and despise him who speaks with + +integrity. + +A Lamentation against Israel + +and strides on the heights of the earth— +the LORD, the God of Hosts, is His name.” + +Therefore, because you trample on the poor + +and exact from him a tax of grain, + +5 + +2 + +Hear this word, O house of Israel, this +lamentation I take up against you: + +“Fallen is Virgin Israel, +never to rise again. + +3 + +She lies abandoned on her land, +with no one to raise her up.” + +This is what the Lord GOD says: + +“The city that marches out a thousand + +strong + +will have but a hundred left, + +and the one that marches out a hundred + +strong + +will have but ten left in the house of + +A Call to Repentance +(Joel 1:13–20 ; Zephaniah 2:1–3 ; Luke 13:1–5) + +Israel.” + +4 + +For this is what the LORD says to the house of + +Israel: +5 + +“Seek Me and live! + +Do not seek Bethel or go to Gilgal; +do not journey to Beersheba, +for Gilgal will surely go into exile, + +6 + +a + +and Bethel will come to nothing. + +Seek the LORD and live, + +or He will sweep like fire through the + +house of Joseph; + +you will never live + +in the stone houses you have built; + +you will never drink the wine + +from the lush vineyards you have planted. + +12 + +For I know that your transgressions are + +many + +and your sins are numerous. + +13 + +You oppress the righteous by taking bribes; + +you deprive the poor of justice in the gate. + +Therefore, the prudent keep silent in such + +14 + +times, + +for the days are evil. + +Seek good, not evil, + +so that you may live. + +15 + +And the LORD, the God of Hosts, + +will be with you, as you have claimed. + +Hate evil and love good; + +establish justice in the gate. + +Perhaps the LORD, the God of Hosts, +Woe to Rebellious Israel (Acts 7:39–43) + +will be gracious to the remnant of Joseph.” + +16 + +Therefore this is what the LORD, the God of + +Hosts, the Lord, says: + +“There will be wailing in all the public + +squares + +and cries of ‘Alas! Alas!’ in all the streets. + +17 + +The farmer will be summoned to mourn, + +and the mourners to wail. + +There will be wailing in all the vineyards, +for I will pass through your midst,” + +says the LORD. + +it will devour everything, + +7 + +with no one at Bethel to extinguish it. + +18 + +There are those who turn justice into + +8 + +wormwood + +and cast righteousness to the ground. + +He who made the Pleiades and Orion, +who turns darkness into dawn +and darkens day into night, +who summons the waters of the sea + +Woe to you who long for the Day of the + +LORD! + +19 + +What will the Day of the LORD be for you? +It will be darkness and not light. + +It will be like a man who flees from a lion, + +only to encounter a bear, + +or who enters his house and rests his hand + +and pours them over the face of the + +20 + +against the wall, + +9 + +earth— + +the LORD is His name— + +He flashes destruction on the strong, + +a 5 + +so that fury comes upon the stronghold. + +to Aven + +only to be bitten by a snake. + +Will not the Day of the LORD +be darkness and not light, +even gloom with no brightness in it? + +Hebrew + +, a reference to Beth-aven, a derogatory term for Bethel; see Hosea 4:15. + + 21 + +“I hate, I despise your feasts! + +22 + +I cannot stand the stench of your solemn + +assemblies. + +Even though you offer Me burnt offerings and + +grain offerings, +I will not accept them; + +23 + +for your peace offerings of fattened cattle + +I will have no regard. + +24 + +Take away from Me the noise of your songs! + +I will not listen to the music of your harps. + +But let justice roll on like a river, + +25 + +and righteousness like an ever-flowing + +stream. + +Did you bring Me sacrifices and offerings + +26 + +forty years in the wilderness, O house of + +Israel? + +a + +You have taken along Sakkuth your king + +27 + +and Kaiwan your star god, +the idols you made for yourselves. +Therefore I will send you into exile beyond + + b + +Damascus,” + +says the LORD, whose name is the God of +Woe to Those at Ease in Zion (Luke 6:24–26) + +Hosts. + +6 + + Woe to those at ease in Zion +and those secure on Mount Samaria, + +the distinguished ones of the foremost nation, + +2 + +to whom the house of Israel comes. + +Cross over to Calneh and see; + +go from there to the great Hamath; +then go down to Gath of the Philistines. + +Amos 7:4 | 825 + +The Pride of Israel + +8 + +The Lord GOD has sworn by Himself—the LORD, + +the God of Hosts, has declared: + +“I abhor Jacob’s pride + +and detest his citadels, +so I will deliver up the city +and everything in it.” + +10 + +9 + +And if there are ten men left in one house, they + c +too will die. +And when the relative who is to +burn the bodies + picks them up to remove them +from the house, he will call to one inside, “Is any- +one else with you?” + +“None,” that person will answer. + +“Silence,” the relative will retort, “for the name of +11 +the LORD must not be invoked.” + +For the LORD gives a command: + +“The great house will be smashed to pieces, + +12 + +and the small house to rubble.” + + d + +“Do horses gallop on the cliffs? + +Does one plow the sea + + with oxen? + +But you have turned justice into poison +and the fruit of righteousness into + + e + +13 + +wormwood— +you who rejoice in Lo-debar +‘Did we not take Karnaim + +14 + + f + and say, + by our own + +strength?’ + +For behold, I will raise up a nation +against you, O house of Israel,” + +declares the LORD, the God of Hosts, + +Are you better than these kingdoms? + +3 + +Is their territory larger than yours? + +“and they will oppress you + +You dismiss the day of calamity + +4 + +and bring near a reign of violence. + +You lie on beds inlaid with ivory, + +and lounge upon your couches. + +You dine on lambs from the flock +5 +and calves from the stall. + +You improvise songs on the harp like David + +6 + +and invent your own musical instruments. + +You drink wine by the bowlful + +and anoint yourselves with the finest oils, + +but you fail to grieve + +7 + +over the ruin of Joseph. + +Therefore, you will now go into exile + +from Lebo-hamath to the Brook of the +The Locusts, Fire, and Plumb Line (Joel 2) + +Arabah.” + +7 + +g + +2 + +This is what the Lord GOD showed me: +He was preparing swarms of locusts just af- +ter the king’s harvest, as the late spring crop was +And when the locusts had eaten +coming up. +every green plant in the land, I said, “Lord GOD, +please forgive! How will Jacob survive, since he +3 +is so small?” + +So the LORD relented from this plan. “It will not + +4 +happen,” He said. + +as the first of the captives, +and your feasting and lounging + +a 26 +will come to an end. +to make a funeral fire to honor the dead +g 1 + +horn + +LXX + +This is what the Lord GOD showed me: The +Lord GOD was calling for judgment by fire. It +consumed the great deep and devoured the land. +f 13 Karnaim +Or +A swarm of locusts coming from the east; and, behold, one grasshopper, king Gog. + +b 27 +e 13 Lo-debar + +Does one plow (there) + +c 10 + +nothing +Cited in Acts 7:42–43 + means + +. + +d 12 + +You have taken along the tabernacle of Molech and the star of your god Rephan + +means + +, a symbol of strength. + +LXX + +Literally + + 826 | Amos 7:5 + +5 + +Then I said, “Lord GOD, please stop! How will + +6 +Jacob survive, since he is so small?” + +Your land will be divided by a measuring line, + +and you yourself will die on pagan + + soil. + + c + +So the LORD relented from this plan. “It will not + +7 +happen either,” said the Lord GOD. + +This is what He showed me: Behold, the Lord +was standing by a wall true to plumb, with a +plumb line in His hand. +“Amos, what do you +see?” asked the LORD. + +8 + +“A plumb line,” I replied. + +“Behold,” said the Lord, “I am setting a plumb line +among My people Israel; I will no longer spare +9 +them: + +The high places of Isaac will be deserted, + +and the sanctuaries of Israel will be laid + +waste; + +and I will rise up against the house of + +Amaziah Accuses Amos + +Jeroboam +with My sword.” + +10 + +Then Amaziah the priest of Bethel sent word +to Jeroboam king of Israel, saying, “Amos has +conspired against you in the midst of the house +11 +of Israel. The land cannot bear all his words, + +for this is what Amos has said: + +‘Jeroboam will die by the sword, + +12 + +and Israel will surely go into exile, +away from their homeland.’ + +” + +And Amaziah said to Amos, “Go away, you +seer! Flee to the land of Judah; earn your bread +there and do your prophesying there. +But +never prophesy at Bethel again, because it is +the sanctuary of the king and the temple of the +14 +kingdom.” + +13 + + a + + b + +“I was not + + a prophet,” Amos replied, “nor was +I the son + of a prophet; rather, I was a herdsman +But the +and a tender of sycamore-fig trees. +LORD took me from following the flock and said +16 +to me, ‘Go, prophesy to My people Israel.’ + +15 + +Now, therefore, hear the word of the LORD. + +You say: + +‘Do not prophesy against Israel; + +17 + +do not preach against the house of Isaac.’ + +Therefore this is what the LORD says: + +‘Your wife will become a prostitute in the city, +and your sons and daughters will fall by +b 14 +I am not +the sword. +palace +f 3 +Or + +nor am I the son +g 5 + +a 14 +women +Or + +Hebrew + +c 17 + +Or + +Or + +The Basket of Summer Fruit + +And Israel will surely go into exile, +away from their homeland.’ + +” + +8 + +2 + +d + +This is what the Lord GOD showed me: I saw +a basket of summer fruit. + +“Amos, what do you see?” He asked. + +“A basket of summer fruit,” I replied. + +So the LORD said to me, “The end has come for + e +3 +My people Israel; I will no longer spare them.” + + f + +“In that day,” declares the Lord GOD, “the songs + +of the temple +4 +the corpses, strewn in silence everywhere!” + + will turn to wailing. Many will be + +Hear this, you who trample the needy, + +5 + +who do away with the poor of the land, +asking, “When will the New Moon be over, + +that we may sell grain? +When will the Sabbath end, + g + +that we may market wheat? + +Let us reduce the ephah and increase the +6 + +shekel; + +let us cheat with dishonest scales. + +Let us buy the poor with silver + +7 + +and the needy for a pair of sandals, +selling even the chaff with the wheat!” + +The LORD has sworn by the Pride of Jacob: +8 + +“I will never forget any of their deeds. + +Will not the land quake for this, +and all its dwellers mourn? +All of it will swell like the Nile; + +9 + +it will surge and then subside +like the Nile in Egypt. + +And in that day, + +declares the Lord GOD, + +I will make the sun go down at noon, + +10 + +and I will darken the earth in the daytime. + +I will turn your feasts into mourning + +and all your songs into lamentation. +I will cause everyone to wear sackcloth + +and every head to be shaved. + +I will make it like a time of mourning for an + +11 + +only son, + +and its outcome like a bitter day. + +Let us reduce the measure and increase the price + +Behold, the days are coming, +declares the Lord GOD, +the singing +d 1 +when I will send a famine on the land— + +ripe fruit + +e 3 + +unclean + +Or + +; also in verse 2 + +Or + + not a famine of bread or a thirst for water, +but a famine of hearing the words of the + +12 + +LORD. + +People will stagger from sea to sea +and roam from north to east, + +13 + +seeking the word of the LORD, +but they will not find it. + +In that day the lovely young women— + +14 + +the young men as well— +will faint from thirst. + +Those who swear by the guilt of Samaria +and say, ‘As surely as your god lives, + + a + +O Dan,’ +or, ‘As surely as the way +lives’— +The Destruction of Israel + + of Beersheba + +they will fall, never to rise again.” + +9 + +I saw the Lord standing beside the altar, and +He said: + +“Strike the tops of the pillars + +so that the thresholds shake. + +Topple them on the heads of all the people, +and I will kill the rest with the sword. + +None of those who flee will get away; +2 +none of the fugitives will escape. + +Though they dig down to Sheol, + +from there My hand will take them; + +and though they climb up to heaven, +3 +from there I will pull them down. + +Though they hide themselves atop Carmel, +there I will track them and seize them; +and though they hide from Me at the bottom + + b + +of the sea, + +4 + +there I will command the serpent + +to bite them. + +Though they are driven by their enemies into + +captivity, + +there I will command the sword + +to slay them. +I will fix My eyes upon them + +5 + +for harm and not for good.” + +The Lord GOD of Hosts, + +He who touches the earth and it melts, +and all its dwellers mourn— + +all the land rises like the Nile, +6 + +then sinks like the river of Egypt— +He builds His upper rooms in the heavens +and founds His vault upon the earth. + +He summons the waters of the sea + +and pours them over the face of the earth. +nachash +b 3 +the god +The LORD is His name. + +a 14 +d 7 + +7 + + c + +Amos 9:15 | 827 + +“Are you not like the Cushites +O children of Israel?” + +declares the LORD. + + to Me, + +“Did I not bring Israel + +d +up from the land of Egypt, + +the Philistines from Caphtor, +8 + +and the Arameans from Kir? +Surely the eyes of the Lord GOD +are on the sinful kingdom, + +and I will destroy it from the face of the earth. +Yet I will not utterly destroy the house of +declares the LORD. + +Jacob,” + +9 + +“For surely I will give the command, + +and I will shake the house of Israel + +among all the nations + +10 + +as grain is sifted in a sieve; +but not a pebble will reach the ground. + +All the sinners among My people + +will die by the sword— + +all those who say, + +‘Disaster will never draw near or confront + +A Promise of Restoration (Acts 15:5–21) + +us.’ + +” + +11 + +“In that day I will restore + +the fallen tent of David. + +12 + +I will repair its gaps, restore its ruins, +and rebuild it as in the days of old, + + a + +that they may possess the remnant of Edom +declares the LORD, who will do this. +and all the nations that bear My name,” + +13 + +“Behold, the days are coming,” + +declares the LORD, + +“when the plowman will overtake the reaper +and the treader of grapes, the sower of + +seed. + +14 + +The mountains will drip with sweet wine, + +with which all the hills will flow. + b +I will restore My people Israel from + +captivity; + +they will rebuild and inhabit the ruined + +cities. + +They will plant vineyards and drink their + +15 + +wine; + +they will make gardens and eat their fruit. + +I will firmly plant them in their own land, + +never again to be uprooted +from the land that I have given them,” + +says the LORD your God. + +snake + +c 7 + +Or + +That is, Crete + +Hebrew + +; translated in most cases as + +That is, people from the upper Nile region + + Obadiah + +The Destruction of Edom (Jeremiah 49:7–22) + +9 + +1 + +This is the vision of Obadiah: + +This is what the Lord GOD says about + +Edom— + +We have heard a message from the LORD; + +an envoy has been sent among the nations + +to say, “Rise up, + +2 + +and let us go to battle against her!”— + +“Behold, I will make you small among the + +3 + +nations; + +you will be deeply despised. + + a + +The pride of your heart has deceived you, +O dwellers in the clefts of the rocks +whose habitation is the heights, + +who say in your heart, +4 + +‘Who can bring me down to the ground?’ + +Though you soar like the eagle + +and make your nest among the stars, +even from there I will bring you + +declares the LORD. + +5 + +down,” + +“If thieves came to you, +if robbers by night— +oh, how you will be ruined— + +would they not steal only what they + +wanted? + +If grape gatherers came to you, +6 + +would they not leave some gleanings? + +But how Esau will be pillaged, + +7 + +his hidden treasures sought out! + +All the men allied with you + +will drive you to the border; + +the men at peace with you + b + +will deceive and overpower you. + +Those who eat your bread +will set a trap for you +without your awareness of it. + +8 + +In that day, declares the LORD, + +will I not destroy the wise men of + +Edom + +and the men of understanding +in the retreats of Sela +in the mountains of Esau? + +b 7 + +a 3 + +Then your mighty men, O Teman, + +will be terrified, + +10 + +so that everyone in the mountains of Esau +will be cut down in the slaughter. + +Because of the violence against your brother + +Jacob, + +11 + +you will be covered with shame +and cut off forever. +On the day you stood aloof + +while strangers carried off his wealth + +12 + +and foreigners entered his gate +and cast lots for Jerusalem, +you were just like one of them. +But you should not gloat in that day, +your brother’s day of misfortune, +nor rejoice over the people of Judah + c +in the day of their destruction, + +nor boast proudly + +13 + +in the day of their distress. + +You should not enter the gate of My people + +in the day of their disaster, +nor gloat over their affliction +in the day of their disaster, + +nor loot their wealth + +14 + +in the day of their disaster. + +Nor should you stand at the crossroads + +to cut off their fugitives, +nor deliver up their survivors +in the day of their distress. + +The Deliverance of Israel + +15 + +For the Day of the LORD is near + +for all the nations. + +As you have done, it will be done to you; + +16 + +your recompense will return upon your + +own head. + +For as you drank on My holy mountain, + +so all the nations will drink continually. + +17 + +They will drink and gulp it down; + +they will be as if they had never existed. +But on Mount Zion there will be deliverance, + +and it will be holy, +and the house of Jacob +c 12 + +Those who eat + +will reclaim their possession. + +nor enlarge your mouth + +Or + +Hebrew does not include + +. + +Hebrew + + 18 + +Then the house of Jacob will be a blazing fire, +and the house of Joseph a burning flame; + +but the house of Esau will be stubble— + +Jacob will set it ablaze and consume it. + +Therefore no survivor will remain + +from the house of Esau.” + +For the LORD has spoken. + +19 + +Those from the Negev will possess the moun- + + a + +tains of Esau; +those from the foothills + + will possess the + +Obadiah 1:21 | 829 + +They will occupy the fields of Ephraim and + +20 + +Samaria, + +and Benjamin will possess Gilead. +And the exiles of this host of the Israelites + +will possess the land of the Canaanites as + +far as Zarephath; + +and the exiles from Jerusalem who are in + +21 + +Sepharad + + b + +will possess the cities of the Negev. + +The deliverers will ascend + + Mount Zion + +to rule over the mountains of Esau. + +land of the Philistines. + +And the kingdom will belong to the LORD. + +a 19 +Those being delivered will go up + +Shephelah + +lowlands + +b 21 + +The deliverers will go up from + +Hebrew + + or + +; that is, the western foothills of Judea + +Or + +; LXX + + Jonah + +Jonah Flees from the LORD +(Nahum 1:1–15) + +Jonah Cast into the Sea + +11 + +1 + +2 + +Now the word of the LORD came to Jonah +“Get up! Go to the +son of Amittai, saying, +great city of Nineveh and preach against it, be- +3 +cause its wickedness has come up before Me.” + +Jonah, however, got up to flee to Tarshish, away +from the presence of the LORD. He went down to +Joppa and found a ship bound for Tarshish. So he +paid the fare and went aboard to sail for Tar- +The Great Storm +shish, away from the presence of the LORD. +(Acts 27:13–26) + +4 + +5 + +Then the LORD hurled a great wind upon +the sea, and such a violent storm arose that the +The sail- +ship was in danger of breaking apart. +ors were afraid, and each cried out to his own +god. And they threw the ship’s cargo into the sea +to lighten the load. But Jonah had gone down to +the lowest part of the vessel, where he lay down +6 +and fell into a deep sleep. + +The captain approached him and said, “How can +you sleep? Get up and call upon your God. Per- +haps this God will consider us, so that we may not +7 +perish.” + +“Come!” said the sailors to one another. “Let us +cast lots to find out who is responsible for this +calamity that is upon us.” +8 +So they cast lots, and the lot fell on Jonah. + +“Tell us now,” they demanded, “who is to blame +for this calamity that is upon us? What is your oc- +cupation, and where have you come from? What +9 +is your country, and who are your people?” + +“I am a Hebrew,” replied Jonah. “I worship the +LORD, the God of the heavens, who made the sea +10 +and the dry land.” + +Then the men were even more afraid and said +to him, “What have you done?” The men knew +that he was fleeing from the presence of the +LORD, because he had told them. +the men dug in +a 13 + +Hebrew + +Now the sea was growing worse and worse, so +they said to Jonah, “What must we do to you to +12 +calm this sea for us?” + +“Pick me up,” he answered, “and cast me into +the sea, so it may quiet down for you. For I know +that I am to blame for this violent storm that has +13 +come upon you.” + + a + +Nevertheless, the men rowed hard + + to get back +to dry land, but they could not, for the sea was +14 +raging against them more and more. + +So they cried out to the LORD: “Please, O LORD, +do not let us perish on account of this man’s life! +Do not charge us with innocent blood! For You, O +15 +LORD, have done as You pleased.” + +Then they picked up Jonah and cast him into + +16 +the sea, and the raging sea grew calm. + +Then the men feared the LORD greatly, and +they offered a sacrifice to the LORD and made +17 +vows to Him. + +Now the LORD had appointed a great fish to +swallow Jonah, and Jonah spent three days and +Jonah’s Prayer +three nights in the belly of the fish. + +2 + +2 + +From inside the fish, Jonah prayed to the +LORD his God, + +saying: + +“In my distress I called to the LORD, + +and He answered me. + +From the belly of Sheol I called for help, + +3 + +and You heard my voice. +For You cast me into the deep, +into the heart of the seas, +and the current swirled about me; + +4 + +all Your breakers and waves swept + +over me. + +At this, I said, + +‘I have been banished from Your sight; + +yet I will look once more + +toward Your holy temple.’ + + 5 + +The waters engulfed me + +to take my life; + +the watery depths closed around me; +6 + +the seaweed wrapped around my head. +To the roots of the mountains I descended; +the earth beneath me barred me in + +forever! + +But You raised my life from the pit, +7 + +O LORD my God! + +As my life was fading away, +I remembered the LORD. + +My prayer went up to You, +8 +to Your holy temple. + +a + +9 + +Those who cling to worthless idols +forsake His loving devotion. + +But I, with the voice of thanksgiving, + +will sacrifice to You. + +10 + +I will fulfill what I have vowed. + +Salvation is from the LORD!” + +And the LORD commanded the fish, and it + +The Ninevites Repent +vomited Jonah onto dry land. +(Matthew 12:38–42 ; Luke 11:29–32) + +3 + +2 + +Then the word of the LORD came to Jonah a +second time: +“Get up! Go to the great city of +Nineveh and proclaim to it the message that I +3 +give you.” + +This time Jonah got up and went to Nineveh, in +b + +accordance with the word of the LORD. + +c + +4 + +Now Nineveh was an exceedingly great city, +On the first day +requiring a three-day journey. +of his journey, Jonah set out into the city and pro- +claimed, “Forty more days and Nineveh will be +5 +overturned!” + +And the Ninevites believed God. They pro- +claimed a fast and dressed in sackcloth, from the +6 +greatest of them to the least. + +When word reached the king of Nineveh, he got +up from his throne, took off his royal robe, cov- +7 +ered himself with sackcloth, and sat in ashes. + +Then he issued a proclamation in Nineveh: + +“By the decree of the king and his nobles: + +Let no man or beast, herd or flock, taste +8 +anything at all. They must not eat or drink. +Furthermore, let both man and beast be +chesed +covered with sackcloth, and have everyone +love +Forms of the Hebrew +b 3 +range of meaning includes +became angry + +was a great city to God +e 6 + +a 8 + +, + +Jonah 4:11 | 831 + +9 + +call out earnestly to God. Let each one turn +from his evil ways and from the violence in +his hands. +Who knows? God may turn and +relent; He may turn from His fierce anger, so +that we will not perish.” + +10 + +When God saw their actions—that they had +turned from their evil ways—He relented from +the disaster He had threatened to bring upon +Jonah’s Anger at the LORD’s Compassion +them. + +4 + +d + +2 +Jonah, however, was greatly displeased, and +he became angry. +So he prayed to the +LORD, saying, “O LORD, is this not what I said +while I was still in my own country? This is why +I was so quick to flee toward Tarshish. I knew +that You are a gracious and compassionate God, +slow to anger, abounding in loving devotion— +And +One who relents from sending disaster. +now, O LORD, please take my life from me, for it +4 +is better for me to die than to live.” + +3 + +But the LORD replied, “Have you any right to be + +5 +angry?” + +e + +6 + +Then Jonah left the city and sat down east of it, +where he made himself a shelter and sat in its +shade to see what would happen to the city. +So +the LORD God appointed a vine, + and it grew up +to provide shade over Jonah’s head to ease his +discomfort, and Jonah was greatly pleased with +7 +the plant. + +When dawn came the next day, God appointed +a worm that attacked the plant so that it +8 +withered. + +As the sun was rising, God appointed a scorch- +ing east wind, and the sun beat down on Jonah’s +head so that he grew faint and wished to die, say- +9 +ing, “It is better for me to die than to live.” + +Then God asked Jonah, “Have you any right to + +be angry about the plant?” +10 +“I do,” he replied. “I am angry enough to die!” + +11 + +But the LORD said, “You cared about the plant, +which you neither tended nor made grow. It +So +sprang up in a night and perished in a night. +should I not care about the great city of Nineveh, +which has more than 120,000 people who cannot +tell their right hand from their left, and many +cattle as well?” + +loving devotion + +kindness + +goodness + are translated here and in most cases throughout the Scriptures as +c 3 +, and +, +qiqayon + +mercy +great city, a three-day journey + +faithfulness + +, as well as + +d 1 + +, + +loyalty to a covenant + +. + +It was exceedingly evil to Jonah, and he + +; the + +Or + +Literally + +Or + +Hebrew + +; that is, possibly the castor oil plant; also in verses 7, 9, and 10 + + Micah + +Judgment to Come (Isaiah 7:17–25) + +9 + +1 + +This is the word of the LORD that came to +Micah the Moreshite in the days of Jotham, +Ahaz, and Hezekiah, kings of Judah—what he +2 +saw regarding Samaria and Jerusalem: + +Hear, O peoples, all of you; + +listen, O earth, and everyone in it! + +May the Lord GOD bear witness against you, + +3 + +the Lord from His holy temple. +For behold, the LORD comes forth + +from His dwelling place; +He will come down and tread + +4 + +on the high places of the earth. +The mountains will melt beneath Him, +and the valleys will split apart, + +like wax before the fire, +5 + +like water rushing down a slope. + +All this is for the transgression of Jacob +and the sins of the house of Israel. + +What is the transgression of Jacob? + +Is it not Samaria? + +And what is the high place of Judah? +6 + +Is it not Jerusalem? + +Therefore I will make Samaria + +a heap of rubble in the open field, +a planting area for a vineyard. +I will pour her stones into the valley +7 +and expose her foundations. + +All her carved images will be smashed to + +pieces; + +all her wages will be burned in the fire, +and I will destroy all her idols. + +Weeping and Mourning + +Since she collected the wages of a prostitute, +they will be used again on a prostitute. + +8 + +Because of this I will lament and wail; +I will walk barefoot and naked. + + a + +b + +For her wound is incurable; + +it has reached even Judah; + +it has approached the gate of my people, + c + +10 + +as far as Jerusalem itself. + +d + +11 + +Do not tell it in Gath; + + do not weep at all. + +Roll in the dust in Beth-leaphrah. + +e + +Depart in shameful nakedness, + + f +O dwellers of Shaphir. + +The dwellers of Zaanan +will not come out. + + g + +12 + +Beth-ezel + + is in mourning; + h +its support is taken from you. + +For the dwellers of Maroth + + pined for good, +but calamity came down from the LORD, +even to the gate of Jerusalem. + +13 + +i + +Harness your chariot horses, + +O dweller of Lachish. + +You were the beginning of sin to the + +Daughter of Zion, + +14 + +for the transgressions of Israel were found + k + +in you. + + j + + l + +Therefore, send farewell gifts +Moresheth-gath; +the houses of Achzib +to the kings of Israel. + +m + +15 + + to + + will prove deceptive + +I will again bring a conqueror against you, + +16 + +O dweller of Mareshah. +The glory of Israel will come to Adullam. +Shave yourselves bald and cut off your hair +in mourning for your precious children; + +make yourselves as bald as an eagle, + +Woe to Oppressors + +for they will go from you into exile. + +2 + + Woe to those who devise iniquity +and plot evil on their beds! + +At morning’s light they accomplish it +2 + +because the power is in their hands. + +They covet fields and seize them; + +they take away houses. + +I will howl like a jackal + +a 8 + +a dragon +a serpent +and mourn like an ostrich. + +b 8 +d 10 Beth-leaphrah +Literally +g 11 Beth-ezel + +Or +the Hebrew for +i 13 Lachish +the Hebrew for +gift + sounds like the Hebrew term for + +l 14 Achzib + +tell + or +come out +. +dowry + +. + +They deprive a man of his home, + +like daughters of an ostrich +house of dust +adjoining house +. +j 14 + +like daughters of an owl + +c 10 Gath +a fellow man of his inheritance. +f 11 Zaanan +pleasant +e 11 Shaphir + or +h 12 Maroth +give dowry + + means + +k 14 Moresheth + +. + sounds like the Hebrew for + + means + means + +team of horses +deception + +. +m 15 Mareshah +Or +. + +Hebrew for + + or + +. + + means + +. + + sounds like the Hebrew for + +. + +conqueror + sounds like the +. + + sounds like +bitter + sounds like + + 3 + +13 + +Micah 3:9 | 833 + +Therefore this is what the LORD says: + +“I am planning against this nation a disaster +from which you cannot free your necks. + +Then you will not walk so proudly, +4 +for it will be a time of calamity. +In that day they will take up a proverb + +against you + +and taunt you with this bitter lamentation: + +‘We are utterly ruined! + +He has changed the portion of my people. + +How He has removed it from me! +5 + +He has allotted our fields to traitors.’ + +” + +Therefore, you will have no one in the +assembly of the LORD + +Reproof of False Prophets (Ezekiel 13:1–16) + +to divide the land by lot. + +6 + +“Do not preach,” they preach. + +7 + +“Do not preach these things; +disgrace will not overtake us.” +Should it be said, O house of Jacob, + +“Is the Spirit of the LORD impatient? +Are these the things He does?” + +Do not My words bring good +8 + +to him who walks uprightly? +But of late My people have risen up + +like an enemy: + +You strip off the splendid robe +9 + +from unsuspecting passersby +like men returning from battle. +You drive the women of My people +from their pleasant homes. + +10 + +You take away My blessing + +from their children forever. + +Arise and depart, + +for this is not your place of rest, + +11 + +because its defilement brings destruction— + +a grievous destruction! +If a man of wind were to come + +and say falsely, + + a + +“I will preach to you of wine and strong + +drink,” + +he would be just the preacher for this + +The Remnant of Israel (Micah 5:7–15) + +people! + +12 + +I will surely gather all of you, O Jacob; +I will collect the remnant of Israel. + +One who breaks open the way +will go up before them; + +they will break through the gate, + +and go out by it. + +Their King will pass through before them, + +Rulers and Prophets Condemned +the LORD as their leader. + +3 + +Then I said: + +2 + +“Hear now, O leaders of Jacob, +you rulers of the house of Israel. +Should you not know justice? + +You hate good and love evil. + +3 + +You tear the skin from my people +and strip the flesh from their bones. + +You eat the flesh of my people +after stripping off their skin +and breaking their bones. + +You chop them up like flesh for the + +4 + +cooking pot, + +like meat in a cauldron.” + +Then they will cry out to the LORD, +but He will not answer them. + +5 + +At that time He will hide His face from them + +because of the evil they have done. + +This is what the LORD says: + +“As for the prophets + +who lead My people astray, + +who proclaim peace + +while they chew with their teeth, + +but declare war against one +6 + +who puts nothing in their mouths: + +Therefore night will come over you without + +visions, + +and darkness without divination. + +The sun will set on these prophets, +7 + +and the daylight will turn black over them. + +Then the seers will be ashamed + +and the diviners will be disgraced. + +They will all cover their mouths +8 + +because there is no answer from God.” + +As for me, however, I am filled with power + +by the Spirit of the LORD, + +with justice and courage, + +9 + +to declare to Jacob his transgression +and to Israel his sin. + +Now hear this, O leaders of the house + +of Jacob + +I will bring them together like sheep in a pen, +like a flock in the midst of its pasture— +“I will prophesy to you for wine and strong drink” +a noisy throng. + +a 11 + +and rulers of the house of Israel, + +who despise justice + +and pervert all that is right, + +Or + + 834 | Micah 3:10 + +10 + +11 + +who build Zion with bloodshed +and Jerusalem with iniquity. + +Her leaders judge for a bribe, + +her priests teach for a price, +and her prophets practice divination for + +money. + +Yet they lean upon the LORD, saying, + +12 + +“Is not the LORD among us? +No disaster can come upon us.” + +Therefore, because of you, + +Zion will be plowed like a field, + +Jerusalem will become a heap of rubble, +The Mountain of the House of the LORD +(Isaiah 2:1–4) + +and the temple mount a wooded ridge. + +4 + + In the last days the mountain of the house + +I will assemble the outcast, +7 + +even those whom I have afflicted. +And I will make the lame into a remnant, +the outcast into a strong nation. + +Then the LORD will rule over them in Mount + +8 + +Zion + +from that day and forever. + a + +And you, O watchtower of the flock, + +O stronghold + + of the Daughter of Zion— + +the former dominion will be restored to you; +sovereignty will come to the Daughter of + +9 + +Jerusalem.” + +Why do you now cry aloud? + +Is there no king among you? + +Has your counselor perished + +10 + +so that anguish grips you like a woman in + +of the LORD + +labor? + +will be established as the chief of the + +Writhe in agony, O Daughter of Zion, + +mountains; + +2 + +it will be raised above the hills, + +and the peoples will stream to it. + +And many nations will come and say: + +“Come, let us go up to the mountain of the + +LORD, + +to the house of the God of Jacob. + +He will teach us His ways, + +so that we may walk in His paths.” + +For the law will go forth from Zion + +3 + +and the word of the LORD from Jerusalem. + +Then He will judge between many peoples +and arbitrate for strong nations far and + +wide. + +Then they will beat their swords into + +plowshares + +and their spears into pruning hooks. +Nation will no longer take up the sword +4 + +against nation, + +nor will they train anymore for war. +And each man will sit under his own vine + +and under his own fig tree, + +with no one to frighten him. +5 + +For the mouth of the LORD of Hosts has + +spoken. +Though all the nations + +may walk in the name of their gods, + +yet we will walk in the name of the LORD our + +God + +The Restoration of Zion (Zechariah 8:1–23) + +forever and ever. + +6 + +a 8 + +“On that day,” declares the LORD, + +hill +“I will gather the lame; + +And you, Migdal-eder, the Ophel + +b 13 + +Or + +; Hebrew + +Or + +like a woman in labor. + +For now you will leave the city +and camp in the open fields. + +You will go to Babylon; + +there you will be rescued; +there the LORD will redeem you + +11 + +from the hand of your enemies! + +But now many nations + +have assembled against you, + +12 + +saying, “Let her be defiled, + +and let us feast our eyes on Zion.” +But they do not know the thoughts of + +the LORD + +or understand His plan, + +13 + +for He has gathered them + +like sheaves to the threshing floor. + +Rise and thresh, O Daughter of Zion, +for I will give you horns of iron + +and hooves of bronze + b + +to break to pieces many peoples. + +Then you will devote + + their gain to the LORD, + +A Ruler from Bethlehem (Matthew 2:1–12) +their wealth to the Lord of all the earth. + +5 + + Now, O daughter of troops, +mobilize your troops; + for a siege is laid against us! +With a rod they will strike the cheek +2 + +of the judge of Israel. + + c + +But you, Bethlehem Ephrathah, + +who are small among the clans + +of Judah, + + d + +devote to destruction + +out of you will come forth for Me +— +One to be ruler over Israel +Cited in Matt. 2:6 + +thousands + +d 2 + +c 2 + +Or + + Micah 6:9 | 835 + +One whose origins are of old, +3 +from the days of eternity. + +14 + +so that you will no longer bow down +to the work of your own hands. + +Therefore Israel will be abandoned + +I will root out the Asherah poles from your + +until she who is in labor has given birth; + +15 + +midst + +then the rest of His brothers will return +4 + +to the children of Israel. + +He will stand and shepherd His flock +in the strength of the LORD, +in the majestic name of the LORD His God. + +And they will dwell securely, +5 + +for then His greatness will extend +to the ends of the earth. + + a + +And He will be our peace + +when Assyria invades our land +and tramples our citadels. + +We will raise against it seven shepherds, +6 + +even eight leaders of men. + +And they will rule the land of Assyria with the + +sword, + +and demolish your cities. + +I will take vengeance in anger and wrath +upon the nations that have not obeyed + +The Case against Israel +Me.” + +6 + +Hear now what the LORD says: + +“Arise, plead your case before the + +2 + +mountains, + +and let the hills hear your voice. + +Hear, O mountains, the LORD’s indictment, +you enduring foundations of the earth. +For the LORD has a case against His people, +3 + +and He will argue it against Israel: + +‘My people, what have I done to you? + +and the land of Nimrod with the blade + +4 + +Testify against Me how I have wearied + +drawn. +So He will deliver us + +when Assyria invades our land +The Remnant of Jacob (Micah 2:12–13) +and marches into our borders. + +7 + +Then the remnant of Jacob will be +in the midst of many peoples + +like dew from the LORD, + +like showers on the grass, + +which do not wait for man +8 +or linger for mankind. + +Then the remnant of Jacob will be among the + +nations, + +in the midst of many peoples, + +like a lion among the beasts of the forest, + +like a young lion among flocks of sheep, + +which tramples and tears as it passes +9 + +through, + +with no one to rescue them. + +10 + +Your hand will be lifted over your foes, +and all your enemies will be cut off. + +“In that day,” + +declares the LORD, + +11 + +“I will remove your horses from among you + +and wreck your chariots. + +12 + +I will remove the cities of your land + +13 + +and tear down all your strongholds. +I will cut the sorceries from your hand, +and you will have no fortune-tellers. + +I will also cut off the carved images + +a 5 + +their peace +and sacred pillars from among you, + +Acacia Grove + +b 5 + +Or + +Or + +you! + +For I brought you up from the land of Egypt +and redeemed you from the house of + +slavery. +I sent Moses before you, +5 + +as well as Aaron and Miriam. + +My people, remember what Balak king of + +Moab counseled + + b + +and what Balaam son of Beor answered. + +Remember your journey from Shittim + + to + +Gilgal, + +6 + +so that you may acknowledge the +” +righteousness of the LORD.’ + +With what shall I come before the LORD +when I bow before the God on high? +Should I come to Him with burnt offerings, +7 + +with year-old calves? + +Would the LORD be pleased with thousands + +of rams, + +with ten thousand rivers of oil? +Shall I present my firstborn for my + +8 + +transgression, + +the fruit of my body for the sin of my soul? + +He has shown you, O man, what is good. + +And what does the LORD require of you + +but to act justly, to love mercy, + +The Punishment of Israel + +and to walk humbly with your God? + +9 + +The voice of the LORD calls out to the city +(and it is sound wisdom to fear Your + +name): + + 836 | Micah 6:10 + +“Heed the rod + +10 + +and the One who ordained it. + +Can I forget any longer, + +O house of the wicked, +the treasures of wickedness + +11 + +and the short ephah, which is accursed? + +12 + +Can I excuse dishonest scales +or bags of false weights? + +For the wealthy of the city +are full of violence, + +and its residents speak lies; + +13 + +their tongues are deceitful in their + +mouths. + +14 + +Therefore I am striking you severely, +to ruin you because of your sins. + +You will eat but not be satisfied, + +and your hunger will remain with you. +What you acquire, you will not preserve; +and what you save, I will give to the + +15 + +sword. + +You will sow but not reap; + +you will press olives but not anoint + +yourselves with oil; + +16 + +you will tread grapes but not drink the + +wine. + +You have kept the statutes of Omri + +and all the practices of Ahab’s house; +you have followed their counsel. +Therefore I will make you a desolation, +and your inhabitants an object of + +contempt; + +a + +you will bear the scorn of the + +Israel’s Great Misery +” +(Matthew 10:34–39 ; Luke 12:49–53) + +nations. + +7 + +Woe is me! + +For I am like one gathering summer fruit +at the gleaning of the vineyard; + +there is no cluster to eat, +2 + +no early fig that I crave. + +The godly man has perished from the earth; +there is no one upright among men. + +They all lie in wait for blood; +3 + +they hunt one another with a net. + +Both hands are skilled at evil; + +the prince and the judge demand + +a bribe. + +a 16 + +When the powerful utters his evil desire, +scorn of My people + +they all conspire together. +e 12 + +b 4 +the River + +your punishment + +4 + +The best of them is like a brier; + +the most upright is sharper than a + +hedge of thorns. + +b + +The day for your watchmen has come, +5 + +the day of your visitation. +Now is the time of their confusion. + +Do not rely on a friend; + +do not trust in a companion. + +c + +Seal the doors of your mouth +6 + +from her who lies in your arms. + +For a son dishonors his father, + +a daughter rises against her mother, +and a daughter-in-law against her + +mother-in-law. + +d + +A man’s enemies are the members + +Israel’s Confession and Comfort +of his own household. + +7 + +But as for me, I will look to the LORD; + +8 + +I will wait for the God of my salvation. +My God will hear me. + +Do not gloat over me, my enemy! + +Though I have fallen, I will arise; + +though I sit in darkness, +9 + +the LORD will be my light. + +Because I have sinned against Him, + +I must endure the rage of the LORD, + +until He argues my case + +and executes justice for me. +He will bring me into the light; +I will see His righteousness. + +10 + +Then my enemy will see + +and will be covered with shame— + +she who said to me, + +“Where is the LORD your God?” + +My eyes will see her; + +11 + +at that time she will be trampled +like mud in the streets. + +The day for rebuilding your walls will + +come— + +12 + +the day for extending your + +boundary. + +On that day they will come to you +e + +from Assyria and the cities of Egypt, + +even from Egypt to the Euphrates, + +13 + +from sea to sea and mountain to + +mountain. + +Then the earth will become desolate + +because of its inhabitants, +as the fruit of their deeds. + +in your bosom + +d 6 + +c 5 + +LXX; Hebrew +see also Luke 12:53. + +Hebrew + +Or + +Hebrew + +Cited in Matthew 10:35–36; + + God’s Compassion on Israel + +14 + +Shepherd with Your staff Your people, + +the flock of Your inheritance. + +a + +They live alone in a woodland, +surrounded by pastures. + +Let them graze in Bashan and Gilead, + +as in the days of old. + +15 + +As in the days when you came out + +16 + +of Egypt, + +I will show My wonders. + +Nations will see and be ashamed, +deprived of all their might. + +They will put their hands over their + +17 + +mouths, + +and their ears will become deaf. +They will lick the dust like a snake, + +like reptiles slithering on the ground. + +Micah 7:20 | 837 + +They will come trembling from their + +strongholds + +18 + +in the presence of the LORD our God; +they will tremble in fear of You. + +Who is a God like You, + +who pardons iniquity + +and passes over the transgression + +of the remnant of His inheritance— +who does not retain His anger forever, + +19 + +  b + +because He delights in loving devotion? + +He will again have compassion on us; +He will vanquish our iniquities. + +20 + +You will cast out all our sins +into the depths of the sea. + +You will show faithfulness to Jacob +and loving devotion to Abraham, + +as You swore to our fathers +from the days of old. + +a 14 + +in a woodland, in the midst of Carmel +loving devotion + +b 18 + +chesed +love + +goodness + +kindness + +faithfulness + +Or + +mercy +throughout the Scriptures as + +loyalty to a covenant + +Forms of the Hebrew + +; the range of meaning includes + +, as well as + +. + + are translated here and in most cases +, and +, + +, + +, + + Nahum + +The Burden against Nineveh (Jonah 1:1–3) + +12 + +1 + +This is what the LORD says: + +2 + +This is the burden against Nineveh, the book +of the vision of Nahum the Elkoshite: + +“Though they are allied and numerous, + +yet they will be cut down and pass away. + +The LORD is a jealous and avenging God; + +the LORD is avenging and full of wrath. + +The LORD takes vengeance on His foes +3 +and reserves wrath for His enemies. + +The LORD is slow to anger +and great in power; +the LORD will by no means + +leave the guilty unpunished. + +His path is in the whirlwind and storm, +4 + +and clouds are the dust beneath His feet. + +He rebukes the sea and dries it up; +He makes all the rivers run dry. + +Bashan and Carmel wither, +5 + +and the flower of Lebanon wilts. + +The mountains quake before Him, + +and the hills melt away; + +the earth trembles at His presence— +6 +the world and all its dwellers. +Who can withstand His indignation? + +Who can endure His burning anger? + +His wrath is poured out like fire; + +7 + +even rocks are shattered before Him. + +The LORD is good, + +8 + +a stronghold in the day of distress; +He cares for those who trust in Him. + + a + +But with an overwhelming flood + +9 + +He will make an end of Nineveh +and pursue His enemies into darkness. + +Whatever you plot against the LORD, + +He will bring to an end. + +Affliction will not rise up + +10 + +a second time. + +For they will be entangled as with thorns + +and consumed like the drink of a + +11 + +drunkard— + +like stubble that is fully dry. +From you, O Nineveh, comes forth + +13 + +Though I have afflicted you, O Judah, + +I will afflict you no longer. + +For I will now break their yoke from your + +14 + +neck + +and tear away your shackles.” + +The LORD has issued a command concerning + +you, O Nineveh: + +“There will be no descendants +to carry on your name. + +I will cut off the carved image and cast idol + +from the house of your gods; + +15 + +I will prepare your grave, + +for you are contemptible.” + +Look to the mountains— + +the feet of one who brings good news, +who proclaims peace! + +Celebrate your feasts, O Judah; + +fulfill your vows. + +For the wicked will never again march + +through you; + +The Overthrow of Nineveh + +they will be utterly cut off. + +2 + + One who scatters advances +against you, O Nineveh. + +Guard the fortress! + b +Watch the road! + +Brace yourselves! + +2 + +Summon all your strength! + +For the LORD will restore the splendor of + +Jacob + +like the splendor of Israel, + +3 + +though destroyers have laid them waste +and ruined the branches of their vine. + +The shields of his mighty men are red; + +the valiant warriors are dressed in scarlet. + +The fittings of the chariots flash like fire + +on the day they are prepared, + +c +and the spears of cypress +have been brandished. + +pine + +juniper + +a 8 + +a plotter of evil against the LORD, +b 1 +a counselor of wickedness. + +of her place + +Strengthen your loins! + +c 3 + +they are prepared, and the horsemen rush to and fro. + +fir +Literally + +or + +; LXX and Syriac + +Hebrew + +Hebrew; alternately, the spears may be of + + or + + 4 + +2 + +The chariots dash through the streets; + +The crack of the whip, + +Nahum 3:12 | 839 + +they rush around the plazas, + +appearing like torches, +5 + +darting about like lightning. + +He summons his nobles; + +they stumble as they advance. + +They race to its wall; +6 + +the protective shield is set in place. + +7 + +The river gates are thrown open +and the palace collapses. + +It is decreed that the city be exiled + +and carried away; + +her maidservants moan like doves, +8 +and beat upon their breasts. + +Nineveh has been like a pool of water + +throughout her days, +but now it is draining away. + +“Stop! Stop!” they cry, +9 + +but no one turns back. + +“Plunder the silver! + +Plunder the gold!” + +There is no end to the treasure, + +10 + +an abundance of every precious thing. + +She is emptied! + +Yes, she is desolate and laid waste! + +Hearts melt, knees knock, + +bodies tremble, and every face grows + +pale! + +11 + +Where is the lions’ lair + +or the feeding ground of the young lions, + +where the lion and lioness prowled with + +12 + +their cubs, + +with nothing to frighten them away? + +The lion mauled enough for its cubs + +and strangled prey for the lioness. + +13 + +It filled its dens with the kill, + +and its lairs with mauled prey. + +“Behold, I am against you,” + +declares the LORD of Hosts. + +“I will reduce your chariots to cinders, + +and the sword will devour your young + +lions. + +I will cut off your prey from the earth, +and the voices of your messengers +will no longer be heard.” + +Judgment on Nineveh + +3 + + Woe to the city of blood, +full of lies, +full of plunder, +No-amon + +never without prey. + +b 9 + +a 8 + +Hebrew + +That is, the upper Nile region + +the rumble of the wheel, + +galloping horse +3 + +and bounding chariot! + +Charging horseman, +flashing sword, +shining spear; + +heaps of slain, + +mounds of corpses, +dead bodies without end— +4 + +they stumble over their dead— + +because of the many harlotries of the harlot, + +the seductive mistress of sorcery, +who betrays nations by her prostitution +5 + +and clans by her witchcraft. + +“Behold, I am against you,” + +declares the LORD of Hosts. +“I will lift your skirts over your face. +6 + +I will show your nakedness to the nations +and your shame to the kingdoms. + +I will pelt you with filth + +7 + +and treat you with contempt; +I will make a spectacle of you. + +Then all who see you + +will recoil from you and say, + +‘Nineveh is devastated; + +who will grieve for her?’ + +Where can I find + +8 + +comforters for you?” + +a + +Are you better than Thebes, + +stationed by the Nile with water around + +her, + +whose rampart was the sea, +9 + + b + +whose wall was the water? + +Cush + +10 + + and Egypt were her boundless +strength; + +Put and Libya were her allies. + +Yet she became an exile; + +she went into captivity. + +Her infants were dashed to pieces +at the head of every street. +They cast lots for her dignitaries, + +11 + +and all her nobles were bound in chains. + +You too will become drunk; +you will go into hiding +and seek refuge from the enemy. + +12 + +All your fortresses are fig trees + +with the first ripe figs; + +when shaken, they fall + +into the mouth of the eater! + + 840 | Nahum 3:13 + +13 + +Look at your troops— + +they are like your women! + +The gates of your land + +14 + +are wide open to your enemies; +fire consumes their bars. + +Draw your water for the siege; +strengthen your fortresses. + +17 + +The young locust strips the land + + a + +and flies away. + + b + +Your guards + + are like the swarming locust, + like clouds of locusts + +and your scribes +that settle on the walls on a cold day. + +18 + +When the sun rises, they fly away, +and no one knows where. + +15 + +Work the clay and tread the mortar; + +O king of Assyria, your shepherds + +repair the brick kiln! + +There the fire will devour you; +the sword will cut you down +and consume you like a young locust. + +Make yourself many like the young + +locust; + +16 + +make yourself many like the swarming + +locust! + +You have multiplied your merchants +more than the stars of the sky. + +slumber; +your officers sleep. + +19 + +Your people are scattered on the mountains + +with no one to gather them. +There is no healing for your injury; + +your wound is severe. +All who hear the news of you +applaud your downfall, +for who has not experienced +your constant cruelty? + +a 17 + +princes + +b 17 + +marshals + +Or + +Or + + Habakkuk + +Habakkuk’s First Complaint + +1 + +2 + +This is the burden that Habakkuk the +prophet received in a vision: + +How long, O LORD, must I call for help + +but You do not hear, +or cry out to You, “Violence!” +3 +but You do not save? + +Why do You make me see iniquity? + +Why do You tolerate wrongdoing? +Destruction and violence are before me. + +4 + +Strife is ongoing, and conflict + +abounds. + +Therefore the law is paralyzed, +and justice never goes forth. +For the wicked hem in the righteous, + +The LORD’s Answer + +so that justice is perverted. + +5 + + a + +“Look at the nations and observe— + +be utterly astounded! + +6 + +For I am doing a work in your days +that you would never believe +even if someone told you. + c +For behold, I am raising up the + +b + +Chaldeans + +— + +that ruthless and impetuous nation +which marches through the breadth of + +7 + +the earth + +to seize dwellings not their own. + +They are dreaded and feared; + +8 + +from themselves they derive justice + +and sovereignty. + +Their horses are swifter than leopards, +fiercer than wolves of the night. + +Their horsemen charge ahead, + +and their cavalry comes from afar. + +They fly like a vulture, +9 + +swooping down to devour. +All of them come bent on violence; + +their hordes advance like the east + +10 + +wind; + +11 + +They laugh at every fortress + +and build up siege ramps to seize it. + +Then they sweep by like the wind + +and pass through. + +They are guilty; + +Habakkuk’s Second Complaint (Psalm 11:1–7) + +their own strength is their god.” + +12 + +Are You not from everlasting, + +O LORD, my God, my Holy One? +We will not die. + +O LORD, You have appointed them + +to execute judgment; + +13 + +O Rock, You have established them + +for correction. + +Your eyes are too pure to look upon evil, +and You cannot tolerate wrongdoing. + +So why do You tolerate the faithless? + +Why are You silent + +14 + +while the wicked swallow up + +15 + +those more righteous than themselves? +You have made men like the fish of the sea, +like creeping things that have no ruler. + with a hook; + +The foe pulls all of them up + + d + +he catches them in his dragnet, +and gathers them in his fishing net; + +16 + +so he rejoices gladly. + +Therefore he sacrifices to his dragnet + +and burns incense to his fishing net, +for by these things his portion is sumptuous + +17 + +and his food is rich. + +Will he, therefore, empty his net + +and continue to slay nations without + +The LORD Answers Again +mercy? + +2 + +2 + + I will stand at my guard post +and station myself on the ramparts. +I will watch to see what He will say to me, + +and how I should answer when corrected. + +Then the LORD answered me: + +they gather prisoners like sand. + +“Write down this vision + +They scoff at kings + +a 5 +pulls all of them up + +Look, you scoffers, wonder and perish! + +b 5 +and make rulers an object of scorn. + +LXX + +Cited in Acts 13:41 + +c 6 + +and clearly inscribe it on tablets, +so that a herald may run with it. +That is, the Babylonians + +d 15 + +Literally + +He + + 842 | Habakkuk 2:3 + +3 + +14 + +For the vision awaits an appointed time; +it testifies of the end and does not lie. + +Though it lingers, wait for it, +a +4 + +since it will surely come and will not + +For the earth will be filled + +with the knowledge of the glory of the + +15 + +LORD + +as the waters cover the sea. + +delay. + + b + +Look at the proud one; his soul is not + c + +5 + +upright + d + + — + +but the righteous will live by faith + +— + +and wealth + + indeed betrays him. + +He is an arrogant man never at rest. + +He enlarges his appetite like Sheol, + +and like Death, he is never satisfied. + +He gathers all the nations to himself + +Woe to the Chaldeans + +and collects all the peoples as his own. + +6 + +Will not all of these take up a taunt against + +him, + +speaking with mockery and derision: + +‘Woe to him who amasses what is not his + +7 + +and makes himself rich with many loans! +How long will this go on?’ + +18 + +Will not your creditors suddenly arise + +8 + +and those who disturb you awaken? +Then you will become their prey. + +Because you have plundered many nations, +the remnant of the people will plunder + +you— + +because of your bloodshed against man + +and your violence against the land, the + +9 + +city, + +and all their dwellers. + +Woe to him who builds his house + +by unjust gain, + +to place his nest on high + +10 + +and escape the hand of disaster! +You have plotted shame for your house + +e + +11 + +by cutting off many peoples +and forfeiting your life. + +For the stones will cry out from the wall, +and the rafters will echo it from the + +12 + +woodwork. + +13 + +Woe to him who builds a city with bloodshed + +and establishes a town by iniquity! +Is it not indeed from the LORD of Hosts + +that the labor of the people only feeds the + +fire, + +Woe to him who gives drink to his neighbors, +pouring it from the wineskin until they are + +16 + +drunk, + +in order to gaze at their nakedness! + +You will be filled with shame instead of glory. + + f + +You too must drink +and expose your uncircumcision! + +17 + +The cup in the LORD’s right hand +will come around to you, +and utter disgrace will cover your glory. + +For your violence against Lebanon will + +overwhelm you, + +and the destruction of animals will terrify + +you, + +because of your bloodshed against men + +and your violence against the land, the + +city, + +and all their dwellers. + +What use is an idol, + +that a craftsman should carve it— + +or an image, + +a teacher of lies? + +19 + +For its maker trusts in his own creation; +he makes idols that cannot speak. +Woe to him who says to wood, ‘Awake!’ + +or to silent stone, ‘Arise!’ +Can it give guidance? + +20 + +Behold, it is overlaid with gold and silver, + +yet there is no breath in it at all.” + +But the LORD is in His holy temple; + +Habakkuk’s Prayer + +let all the earth be silent before Him. + +3 + +2 + + g + +This is a prayer of Habakkuk the prophet, +according to Shigionoth: + +O LORD, I have heard the report of You; + +I stand in awe, O LORD, of Your deeds. + +Revive them in these years; + +3 + +make them known in these years. +In Your wrath, remember mercy! + +God came from Teman, + +and the Holy One from Mount Paran. + +Selah h + +a 3 +b 4 + +Though He lingers, wait for Him, since He will surely come and will not delay +and the nations weary themselves in vain? +faithfulness + +If he should draw back, My soul has no pleasure in him c 4 + +Or +LXX + +g 1 Shigionoth +Hebrews 10:38 + +d 5 + +wine + +e 10 + +sinning against your soul + +Or + +DSS; MT + +Literally + +; see also LXX; cited in Hebrews 10:37. +f 16 +; cited in Romans 1:17, Galatians 3:11, and +h 3 Selah + +and stagger + +Interlude +DSS, LXX, and Syriac + + is probably a musical term indicating the setting for the prayer. + + or + + is probably a musical + +or literary term; also in verses 9 and 13. + + His glory covered the heavens, +4 + +and His praise filled the earth. +His radiance was like the sunlight; +rays flashed from His hand, +where His power is hidden. + +5 + +Plague went before Him, + +6 + +and fever followed in His steps. +He stood and measured the earth; + +He looked and startled the nations; + +the ancient mountains crumbled; +the perpetual hills collapsed. +His ways are everlasting. + +7 + +I saw the tents of Cushan in distress; + +8 + +the curtains of Midian were trembling. + +Were You angry at the rivers, O LORD? + +Was Your wrath against the streams? + +Selah + +Did You rage against the sea +9 + +when You rode on Your horses, +on Your chariots of salvation? + +You brandished Your bow; + +You called for many arrows. + +10 + +You split the earth with rivers. +The mountains saw You and quaked; + +11 + +torrents of water swept by. +The deep roared with its voice +and lifted its hands on high. + +Sun and moon stood still + +in their places + +12 + +at the flash of Your flying arrows, + +at the brightness of Your shining spear. + +13 + +You marched across the earth with fury; +You threshed the nations in wrath. +You went forth for the salvation of Your + +people, + +to save Your anointed. + +Habakkuk 3:19 | 843 + +You crushed the head of the house of the + +Selah + +wicked + +and stripped him from head to toe. + +14 + +With his own spear You pierced his head, +when his warriors stormed out to + +scatter us, +gloating as though ready + +15 + +to secretly devour the weak. + +You trampled the sea with Your horses, + +16 + +churning the great waters. + +I heard and trembled within; + +my lips quivered at the sound. + +Decay entered my bones; + +I trembled where I stood. + +Yet I must wait patiently for the day + +of distress + +to come upon the people who + +Habakkuk Rejoices +invade us. + +17 + +Though the fig tree does not bud +and no fruit is on the vines, + +though the olive crop fails + +and the fields produce no food, + +18 + +though the sheep are cut off from the fold + +and no cattle are in the stalls, + +yet I will exult in the LORD; + +19 + +I will rejoice in the God of my + +salvation! + +GOD the Lord is my strength; + +He makes my feet like those of a deer; +For the choirmaster. +He makes me walk upon the heights! +With stringed instruments. + + Zephaniah + +Zephaniah Prophesies Judgment on Judah +(Matthew 13:36–43) + +1 + +This is the word of the LORD that came to +Zephaniah son of Cushi, the son of Gedaliah, +the son of Amariah, the son of Hezekiah, in the +2 +days of Josiah son of Amon king of Judah: + +“I will completely sweep away + +everything from the face of the earth,” + +declares the LORD. + +3 + +“I will sweep away man and beast; + +I will sweep away the birds of the air, + +and the fish of the sea, + +a +and the idols with their wicked + +worshipers. + +I will cut off mankind + +from the face of the earth,” + +declares the LORD. + +4 + +“I will stretch out My hand against Judah + +and against all who dwell in Jerusalem. +I will cut off from this place every remnant of + +Baal, + +5 + +the names of the idolatrous and pagan + +priests— + +those who bow on the rooftops + +to worship the host of heaven, +those who bow down and swear by +6 + +the LORD + +b + +but also swear by Milcom, + +and those who turn back + +from following the LORD, + +neither seeking the LORD +nor inquiring of Him.” + +The Day of the LORD +(Malachi 4:1–6 ; 1 Thess. 5:1–11 ; 2 Peter 3:8–13) + +7 + +8 + +“On the Day of the LORD’s sacrifice + +I will punish the princes, + +the sons of the king, +9 + +and all who are dressed in foreign + +apparel. +On that day I will punish + + d +all who leap over the threshold, + +c + +10 + +who fill the house of their master +with violence and deceit. +On that day,” declares the LORD, + +e + +“a cry will go up from the Fish Gate, + +a wail from the Second District, +f + +11 + +and a loud crashing from the hills. + + g + +Wail, O dwellers of the Hollow, + +12 + +for all your merchants +all who weigh out silver will be cut off. + + will be silenced; + +And at that time I will search Jerusalem with + +lamps + +h + +and punish the men settled in + +complacency, + +who say to themselves, + +13 + +‘The LORD will do nothing, +either good or bad.’ + +Their wealth will be plundered +and their houses laid waste. + +They will build houses but not inhabit them, +and plant vineyards but never drink their + +14 + +wine. + +The great Day of the LORD is near— + +near and coming quickly. +Listen, the Day of the LORD! + +15 + +Then the cry of the mighty will be bitter. + +That day will be + +a day of wrath, + +a day of trouble and distress, + +a day of destruction and desolation, + +Be silent in the presence of the Lord GOD, + +a day of darkness and gloom, + +16 + +for the Day of the LORD is near. + +Indeed, the LORD has prepared + +a sacrifice; + +a 3 + +He has consecrated His guests. +and the idols that cause the wicked to stumble +d 9 + +b 5 + +by their king +the temple of their gods +; +the Mortar + +f 11 + +Or +the market district + +c 9 +the Mishneh + +Or + +and 1 Kings 11:7. +thickening on the dregs +Jerusalem; Hebrew + +See 1 Samuel 5:5. + +Or + +Or + + or + +Or +Or + +a day of clouds and blackness, +a day of horn blast and battle cry +against the fortified cities, +and against the high corner towers. +Molech +the Second Quarter +all the people of Canaan + +Milcom +e 10 +g 11 + + is a variant of + +; see Leviticus 18:21 + +h 12 +, a newer section of + +Or + + 17 + +I will bring such distress on mankind +that they will walk like the blind, +because they have sinned against the + +LORD. + +18 + +Their blood will be poured out like dust + +and their flesh like dung. + +Neither their silver nor their gold +will be able to deliver them +on the Day of the LORD’s wrath. +The whole earth will be consumed +by the fire of His jealousy.” + +a + +For indeed, He will make a sudden end + +A Call to Repentance +of all who dwell on the earth. +(Joel 1:13–20 ; Amos 5:4–15 ; Luke 13:1–5) + +2 + +2 + + Gather yourselves, gather together, +O shameful nation, + + b + +before the decree takes effect + +and the day passes like chaff, + +Zephaniah 2:15 | 845 + +Judgment on Moab and Ammon +(Isaiah 16:1–14 ; Jeremiah 48:1–47) + +8 + +“I have heard the reproach of Moab + +and the insults of the Ammonites, + +who have taunted My people + +9 + +and threatened their borders. + +Therefore, as surely as I live,” + +declares the LORD of Hosts, +the God of Israel, + + “surely Moab will be like Sodom + +and the Ammonites like Gomorrah— + +a place of weeds and salt pits, +a perpetual wasteland. + +The remnant of My people will plunder them; + +10 + +the remainder of My nation will + +dispossess them.” + +This they shall have in return for their pride, +for taunting and mocking the people +of the LORD of Hosts. + +11 + +before the burning anger of the LORD comes + +The LORD will be terrifying to them + +upon you, + +when He starves all the gods of the earth. + +3 + +before the Day of the LORD’s anger comes + +upon you. + +Seek the LORD, all you humble of the earth + +who carry out His justice. +Seek righteousness; seek humility. +Perhaps you will be sheltered +Judgment on the Philistines (Jer. 47:1–7) +on the day of the LORD’s anger. + +4 + +For Gaza will be abandoned, + +and Ashkelon left in ruins. +Ashdod will be driven out at noon, +5 +and Ekron will be uprooted. +Woe to the dwellers of the seacoast, +O nation of the Cherethites! + +The word of the LORD is against you, +O Canaan, land of the Philistines: + +“I will destroy you, +6 + +and no one will be left.” + + c + +7 + +with wells +sheep. + + for shepherds and folds for + +The coast will belong to the remnant of the + +house of Judah; + +there they will find pasture. +They will lie down in the evening +among the houses of Ashkelon, + +d + +for the LORD their God will attend to them + +of all the people living in the land +and restore their captives. + +b 2 + +a 18 +e 12 + +Or +That is, people from the upper Nile region + +screech owl + +desert owl + +f 14 +Hebrew + +animals rendered + + and + + is uncertain. + +So the seacoast will become a land of pastures, + +15 + +Then the nations of every shore +will bow in worship to Him, +Judgment on Cush and Assyria +each in its own place. + +12 + +e + +“You too, O Cushites, + +13 + +will be slain by My sword.” + +And He will stretch out His hand against the + +north + +and destroy Assyria; + +He will make Nineveh a desolation, + +14 + +as dry as a desert. + +f + +Herds will lie down in her midst, + + g + +creatures of every kind. + +Both the desert owl and screech owl + +will roost atop her pillars. + +Their calls will sound from the window, + +but desolation will lie on the threshold, +for He will expose the beams of cedar. + +This carefree city + +that dwells securely, + +that thinks to herself: + +“I am it, and there is none besides me,” + +what a ruin she has become, +a resting place for beasts. +Everyone who passes by her +caves +c 6 +hisses and shakes his fist. +beasts of every nation +Or + +camps +g 14 + +d 7 + + or + +Or + +is given birth + +their fortunes + +Hebrew + +The precise identification of the + + 846 | Zephaniah 3:1 + +Judgment on Jerusalem + +11 + +3 + +2 + + Woe to the city of oppressors, +rebellious and defiled! + +She heeded no voice; + +she accepted no correction. +She does not trust in the LORD; +3 + +she has not drawn near to her God. + +Her princes are roaring lions; + +4 + +her judges are evening wolves, +leaving nothing for the morning. + +Her prophets are reckless, + +faithless men. + +Her priests profane the sanctuary; +5 +they do violence to the law. +The LORD within her is righteous; + +He does no wrong. + +He applies His justice morning by morning; + +Purification of the Nations + +He does not fail at dawn, +yet the unjust know no shame. + +6 + +“I have cut off the nations; + +their corner towers are destroyed. + +I have made their streets deserted +with no one to pass through. + +Their cities are laid waste, +7 + +with no man, no inhabitant. +I said, ‘Surely you will fear Me +and accept correction.’ + +Then her dwelling place would not be cut off +despite all for which I punished her. + +But they rose early +8 + +to corrupt all their deeds. + +Therefore wait for Me,” +declares the LORD, + +a + +“until the day + +I rise to testify. + +For My decision is to gather nations, + +to assemble kingdoms, + +to pour out upon them My indignation— + +all My burning anger. + +A Faithful Remnant + +For all the earth will be consumed +by the fire of My jealousy. + +9 + +For then I will restore + +pure lips to the peoples, + +10 + +that all may call upon the name of the LORD +and serve Him shoulder to shoulder. + + b + +From beyond the rivers of Cush + +a 8 + +My worshipers, My scattered people, +b 10 +will bring Me an offering. + +rise up to plunder + +He will renew you with His love + +d 20 + +LXX and Syriac; Hebrew + +and Syriac + +Or + +On that day you will not be put to shame + +for any of the deeds +by which you have transgressed + +against Me. + +For then I will remove from among you +those who rejoice in their pride, +and you will never again be haughty + +12 + +on My holy mountain. + +But I will leave within you a meek and + +humble people, + +13 + +and they will trust in the name of the + +LORD. +The remnant of Israel + +will no longer do wrong or speak lies, + +nor will a deceitful tongue + +be found in their mouths. +But they will feed and lie down, + +Israel’s Restoration + +with no one to make them tremble.” + +14 + +Sing for joy, O Daughter of Zion; + +shout aloud, O Israel! + +15 + +Be glad and rejoice with all your heart, + +O Daughter of Jerusalem! + +The LORD has taken away your punishment; + +16 + +He has turned back your enemy. +Israel’s King, the LORD, is among you; +no longer will you fear any harm. +On that day they will say to Jerusalem: + +17 + +“Do not fear, O Zion; +do not let your hands fall limp. +The LORD your God is among you; + c + +He is mighty to save. + +He will rejoice over you with gladness; +He will quiet you with His love; +He will rejoice over you with singing.” + +18 + +“I will gather those among you who grieve + +19 + +over the appointed feasts, +so that you will no longer suffer reproach. + +Behold, at that time, + +I will deal with all who afflict you. + +I will save the lame + +and gather the scattered; + +20 + +and I will appoint praise and fame + +for the disgraced throughout the earth. + +At that time I will bring you in; + +yes, at that time I will gather you. + +For I will give you fame and praise + + d + +among all the peoples of the earth + +when I restore your captives +before your very eyes,” +c 17 + +He will be silent in His love + +says the LORD. + +your fortunes +That is, the upper Nile region + +Or + +; LXX + + Haggai + +A Call to Rebuild the Temple (Ezra 5:1–5) + +10 + +1 + +In the second year of the reign of Darius, on +the first day of the sixth month, the word of +the LORD came through Haggai the prophet to +Zerubbabel son of Shealtiel, governor of Judah, +and to Joshua son of Jehozadak, + the high priest, +that this is what the LORD of Hosts says: +stating + +2 + +a + +“These people say, ‘The time has not yet come + +to rebuild the house of the LORD.’ + +” + +3 + +Then the word of the LORD came through Hag- +4 +gai the prophet, saying: + +“Is it a time for you yourselves + +5 + +to live in your paneled houses, +while this house lies in ruins?” + +Now this is what the LORD of Hosts says: +6 +“Consider carefully your ways. + +You have planted much +but harvested little. + +You eat but never have enough. + +You drink but never have your fill. + +You put on clothes but never get + +warm. + +7 + +You earn wages to put into a bag pierced + +through.” + +This is what the LORD of Hosts says: +8 + +“Consider carefully your ways. + +Go up into the hills, + +bring down lumber, and build the house, + +so that I may take pleasure in it and + +9 + +be glorified, +says the LORD. +You expected much, + +but behold, it amounted to little. +And what you brought home, I blew + +away. + +Why? declares the LORD of Hosts. + +Because My house still lies in ruins, + +a 1 Jehozadak + +while each of you is busy +with his own house. + +Jozadak + +Therefore, on account of you + +the heavens have withheld their + +dew + +11 + +and the earth has withheld its + +crops. + +I have summoned a drought + +on the fields and on the mountains, + +on the grain, new wine, and oil, + +and on whatever the ground yields, + +on man and beast, + +The People Obey + +and on all the labor of your hands.” + +12 + +Then Zerubbabel son of Shealtiel and Joshua +son of Jehozadak, the high priest, as well as all the +remnant of the people, obeyed the voice of the +LORD their God and the words of the prophet +Haggai, because the LORD their God had sent +13 +him. So the people feared the LORD. + +Haggai, the messenger of the LORD, delivered + +the message of the LORD to the people: + +“I am with you,” + +14 + +declares the LORD. + +So the LORD stirred the spirit of Zerubbabel +son of Shealtiel, governor of Judah, and the spirit +of Joshua son of Jehozadak, the high priest, as +well as the spirit of all the remnant of the people. +And they came and began the work on the house +on the twenty- +of the LORD of Hosts, their God, +fourth day of the sixth month, in the second year +The Coming Glory of God’s House +of King Darius. + +15 + +2 + +2 + +On the twenty-first day of the seventh +month, the word of the LORD came through +“Speak to Zerubba- +Haggai the prophet, saying: +b +bel son of Shealtiel, governor of Judah, and to + the high priest, and +Joshua son of Jehozadak, +3 +also to the remnant of the people. Ask them, +‘Who is left among you who saw this house +in its former glory? How does it look to you +now? Does it not appear to you like nothing in +comparison?’ + +b 2 Jehozadak + +Jozadak + + is a variant of + +; also in verses 12 and 14; see Ezra 3:2. + + is a variant of + +; also in + +verse 4; see Ezra 3:2. + + 848 | Haggai 2:4 + +4 + +But now be strong, O Zerubbabel, + +declares the LORD. + +Be strong, O Joshua son of Jehozadak, + +the high priest. + +And be strong, all you people of the land, + +declares the LORD. +Work! For I am with you, +5 + +declares the LORD of Hosts. +This is the promise I made to you +when you came out of Egypt. +And My Spirit remains among you; + +do not be afraid.” + +6 + +For this is what the LORD of Hosts says: + +“Once more, in a little while, +a + +I will shake the heavens and the + +7 + +earth, + +the sea and the dry land. + +I will shake all the nations, + +and they will come with all their + +treasures, + +and I will fill this house with glory, +8 + +says the LORD of Hosts. + +The silver is Mine, and the gold is Mine, + +9 + +declares the LORD of Hosts. + +The latter glory of this house + +will be greater than the former, +says the LORD of Hosts. + +Blessings for a Defiled People + +And in this place I will provide peace, +declares the LORD of Hosts.” + +10 + +12 + +On the twenty-fourth day of the ninth month, +in the second year of Darius, the word of the +11 +LORD came to Haggai the prophet, saying, +“This is what the LORD of Hosts says: ‘Ask the +If a man carries conse- +priests for a ruling. +crated meat in the fold of his garment, and it +touches bread, stew, wine, oil, or any other food, +does that item become holy?’ +13 +“No,” replied the priests. + +” + +14 +“Yes, it becomes defiled,” the priests answered. + +Then Haggai replied, “So it is with this people +and this nation before Me, declares the LORD, +and so it is with every work of their hands; what- +15 +ever they offer there is defiled. + + b + +c + +16 + +Now consider carefully from this day for- +ward: + Before one stone was placed on another +in the temple of the LORD, +from that time, +when one came expecting a heap of twenty +d + there were but ten. When one +ephahs of grain, +came to the winepress to draw out fifty baths, +I struck you—all the +there were but twenty. +work of your hands—with blight, mildew, and +hail, but you did not turn to Me, declares the +18 +LORD. + +17 + +19 + +Consider carefully from this day forward— +from the twenty-fourth day of the ninth month, +the day the foundation of the LORD’s temple was +Is there still seed in +laid—consider carefully: +the barn? The vine, the fig, the pomegranate, and +the olive tree have not yet yielded fruit. But from +Zerubbabel the LORD’s Signet Ring +this day on, I will bless you.” +20 + +21 + +For the second time that day, the twenty- +fourth day of the month, the word of the LORD +“Tell Zerubbabel +came to Haggai, saying, +governor of Judah that I am about to shake the +22 +heavens and the earth: + +I will overturn royal thrones +and destroy the power +of the kingdoms of the nations. + +I will overturn chariots and their riders; + +23 + +horses and their riders will fall, +each by the sword of his brother. + +On that day, + +declares the LORD of Hosts, + +I will take you, My servant, + +Zerubbabel son of Shealtiel, +declares the LORD, + +So Haggai asked, “If one who is defiled by con- +tact with a corpse touches any of these, does it +become defiled?” + +and I will make you like My signet ring, + +for I have chosen you, +declares the LORD of Hosts.” + +a 6 +out fifty from the winepress + +b 15 + +backward + +c 16 + +a heap of twenty + +d 16 + +to draw + +Cited in Hebrews 12:26 + +Or + +; also in verse 18 + +Literally + +Literally + + Zechariah + +A Call to Repentance +(Jeremiah 3:11–25 ; Hosea 14:1–3) + +1 + +In the eighth month of the second year of Da- +rius, the word of the LORD came to the +prophet Zechariah son of Berechiah, the son of +2 +Iddo, saying: +3 + +“The LORD was very angry with your fathers. +So tell the people that this is what the LORD of +Hosts says: ‘Return to Me, declares the LORD +of Hosts, and I will return to you, says the LORD +4 +of Hosts.’ + +Do not be like your fathers, to whom the former +prophets proclaimed that this is what the LORD +of Hosts says: ‘Turn now from your evil ways and +deeds.’ + +But they did not listen or pay attention to Me, de- +5 +clares the LORD. + +6 + +Where are your fathers now? And the prophets, +But did not My words and +do they live forever? +My statutes, which I commanded My servants the +prophets, overtake your fathers? They repented +and said, ‘Just as the LORD of Hosts purposed to +do to us according to our ways and deeds, so He +The Vision of the Horses +has done to us.’ +7 + +” + +a + +On the twenty-fourth day of the eleventh +month, the month of Shebat, + in the second year +of Darius, the word of the LORD came to the +prophet Zechariah son of Berechiah, the son of +8 +Iddo. + +I looked out into the night and saw a man riding +on a red horse. He was standing among the myr- +tle trees in the hollow, and behind him were red, +9 +sorrel, and white horses. + +“What are these, my lord?” I asked. + +And the angel who was speaking with me replied, +10 +“I will show you what they are.” + +Then the man standing among the myrtle trees +explained, “They are the ones the LORD has sent +a 7 Shebat +to patrol the earth.” + +they have overdone the punishment + +b 15 + +11 + +And the riders answered the angel of the LORD +who was standing among the myrtle trees, “We +have patrolled the earth, and behold, all the earth +12 +is at rest and tranquil.” + +Then the angel of the LORD said, “How long, +O LORD of Hosts, will You withhold mercy from +Jerusalem and the cities of Judah, with which You +13 +have been angry these seventy years?” + +So the LORD spoke kind and comforting words + +14 +to the angel who was speaking with me. + +15 + +Then the angel who was speaking with me +said, “Proclaim this word: This is what the LORD +of Hosts says: ‘I am very jealous for Jerusalem +but I am fiercely angry with the na- +and Zion, +tions that are at ease. For I was a little angry, but +16 +they have added to the calamity. + +’ + +b + +Therefore this is what the LORD says: ‘I will re- +turn to Jerusalem with mercy, and there My +house will be rebuilt, declares the LORD of Hosts, +and a measuring line will be stretched out over +17 +Jerusalem.’ + +Proclaim further that this is what the LORD of +Hosts says: ‘My cities will again overflow with +prosperity; the LORD will again comfort Zion and +The Vision of the Horns and the Craftsmen +choose Jerusalem.’ +18 + +19 + +” + +Then I looked up and saw four horns. + +So I +asked the angel who was speaking with me, +“What are these?” + +And he told me, “These are the horns that have +20 +scattered Judah, Israel, and Jerusalem.” +21 + +Then the LORD showed me four craftsmen. + +“What are these coming to do?” I asked. + +And He replied, “These are the horns that scat- +tered Judah so that no one could raise his head; +but the craftsmen have come to terrify them and +throw down these horns of the nations that have +lifted up their horns against the land of Judah to +scatter it.” + + is the eleventh month of the Hebrew lunar calendar, usually occurring within the months of January and + +February. + +Or + + 850 | Zechariah 2:1 + +The Vision of the Measuring Line +(Ezekiel 40:1–4) + +2 + +2 + +Then I lifted up my eyes and saw a man with +a measuring line in his hand. + +“Where are you going?” I asked. + +“To measure Jerusalem,” he replied, “and to de- +3 +termine its width and length.” + +4 + +5 + +Then the angel who was speaking with me went +forth, and another angel came forward to meet +him +and said to him, “Run and tell that young +man: ‘Jerusalem will be a city without walls be- +cause of the multitude of men and livestock +For I will be a wall of fire around it, +within it. +declares the LORD, and I will be the glory within +” The Redemption of Zion (Hosea 3:1–5) +it.’ +6 + +“Get up! Get up! Flee from the land of the north,” +declares the LORD, “for I have scattered you like +7 +the four winds of heaven,” declares the LORD. +“Get up, O Zion! Escape, you who dwell with the + +8 +Daughter of Babylon!” + a + + b + +For this is what the LORD of Hosts says: “After + against the nations that +His Glory has sent Me +9 +have plundered you—for whoever touches you +I will surely +touches the apple +wave My hand over them, so that they will be- +come plunder for their own servants. Then you +10 +will know that the LORD of Hosts has sent Me.” + + of His eye— + +11 + +“Shout for joy and be glad, O Daughter of Zion, +for I am coming to dwell among you,” declares +“On that day many nations will join +the LORD. +themselves to the LORD, and they will become +My people. I will dwell among you, and you will +12 +know that the LORD of Hosts has sent Me to you. +And the LORD will take possession of Judah as +13 +His portion in the Holy Land, and He will once +Be silent before the +again choose Jerusalem. +LORD, all people, for He has roused Himself from +The Vision of Joshua the High Priest +His holy dwelling.” + +3 + + c + + d + +Then the angel showed me Joshua the high + of the +priest standing before the angel + standing at his right hand to + +LORD, with Satan +2 +accuse him. + +And the LORD said to Satan: “The LORD rebukes +a 8 +you, Satan! Indeed, the LORD, who has chosen + +After the Glorious One has sent Me + + e + +Jerusalem, rebukes you! Is not this man a fire- +3 +brand + + snatched from the fire?” + +4 + +Now Joshua was dressed in filthy garments as +he stood before the angel. +So the angel said to +those standing before him, “Take off his filthy +clothes!” + +Then he said to Joshua, “See, I have removed your +iniquity, and I will clothe you with splendid +5 +robes.” + +Then I said, “Let them put a clean turban on his +head.” So a clean turban was placed on his head, +and they clothed him, as the angel of the LORD +6 +stood by. +7 + +Then the angel of the LORD gave this charge to +Joshua: +“This is what the LORD of Hosts says: ‘If +you walk in My ways and keep My instructions, +then you will govern My house and will also have +charge of My courts; and I will give you a place +8 +among these who are standing here. + +9 + +Hear now, O high priest Joshua, you and +your companions seated before you, who are in- +deed a sign. For behold, I am going to bring My +f +See the stone I have set be- +servant, the Branch. +fore Joshua; on that one stone are seven eyes. +Behold, I will engrave on it an inscription, de- +clares the LORD of Hosts, and I will remove the +On that day, +iniquity of this land in a single day. +declares the LORD of Hosts, you will each invite +your neighbor to sit under your own vine and fig +The Vision of the Lampstand and Olive Trees +tree.’ + +” + +10 + +4 + +Then the angel who was speaking with me +returned and woke me, as a man is awak- + +2 +ened from his sleep. + +“What do you see?” he asked. + +3 + +“I see a solid gold lampstand,” I replied, “with a +bowl at the top and seven lamps on it, with seven +There are also two olive +spouts to the lamps. +trees beside it, one on the right side of the bowl +4 +and the other on its left.” + +“What are these, my lord?” I asked the angel + +5 +who was speaking with me. + +“Do you not know what they are?” replied the + +angel. + +Or + +e 2 + +a burning stick + + or +f 9 + +facets + +Or + +verses 3, 4, 5, and 6; corresponding pronouns may also be capitalized. +verse 2 + +That is, + +Or + +That is, + + or + +After He has honored Me and sent Me + +the pupil +“No, my lord,” I answered. +the Accuser + +b 8 + +d 1 + +c 1 + +Angel +the Adversary +Or + +; also in +; also in + + 6 + +The Vision of the Woman in a Basket + +Zechariah 6:8 | 851 + +7 + +So he said to me, “This is the word of the LORD +to Zerubbabel: Not by might nor by power, but +What are +by My Spirit, says the LORD of Hosts. +you, O great mountain? Before Zerubbabel you +will become a plain. Then he will bring forth the +capstone accompanied by shouts of ‘Grace, grace +8 +to it!’ +9 + +” + +10 + +Then the word of the LORD came to me, saying, +“The hands of Zerubbabel have laid the founda- +tion of this house, and his hands will complete it. +Then you will know that the LORD of Hosts has +For who has despised the day +sent me to you. + of the +of small things? But these seven eyes +LORD, which scan the whole earth, will rejoice + in the hand of +when they see the plumb line +11 +Zerubbabel.” + + a + + b + +Then I asked the angel, “What are the two olive +12 +trees on the right and left of the lampstand?” +And I questioned him further, “What are the + c +two olive branches beside the two gold pipes +13 +from which the golden oil + + pours?” + +“Do you not know what these are?” he + +inquired. +14 +“No, my lord,” I replied. + + d + + e + +So he said, “These are the two anointed ones +who are standing beside the Lord of all the +The Vision of the Flying Scroll +earth.” + +5 + +2 + +Again I lifted up my eyes and saw before me +a flying scroll. + +“What do you see?” asked the angel. + +f +“I see a flying scroll,” I replied, “twenty cubits +3 +long and ten cubits wide. + +” + +4 + +Then he told me, “This is the curse that is going +out over the face of all the land, for according to +one side of the scroll, every thief will be re- +moved; and according to the other side, every +I will send it out, de- +perjurer will be removed. +clares the LORD of Hosts, and it will enter the +house of the thief and the house of him who +swears falsely by My name. It will remain inside +his house and destroy it, down to its timbers and +stones.” +a 10 +e 14 + +the chosen capstone + +facets + +b 10 + +c 12 + +f 2 +An ephah + +5 + + g + + h + is going + +Then the angel who was speaking with me came +forward and told me, “Now lift up your eyes and +6 +see what is approaching.” + +“What is it?” I asked. + +And he replied, “A measuring basket +forth.” Then he continued, “This is their iniquity +7 +in all the land.” + +And behold, the cover of lead was raised, and + +8 +there was a woman sitting inside the basket. + +“This is Wickedness,” he said. And he shoved +her down into the basket, pushing down the lead +9 +cover over its opening. + +Then I lifted up my eyes and saw two women +approaching, with the wind in their wings. Their +wings were like those of a stork, and they lifted +10 +up the basket between heaven and earth. + +“Where are they taking the basket?” I asked + +11 +the angel who was speaking with me. + +i + +“To build a house for it in the land of Shinar, +” +he told me. “And when it is ready, the basket will +The Vision of the Four Chariots +be set there on its pedestal.” + +6 + +And again I lifted up my eyes and saw four +chariots coming out from between two +The first +mountains—mountains of bronze. +3 +chariot had red horses, the second black horses, +the third white horses, and the fourth dappled + +2 + +4 +horses—all of them strong. + +So I inquired of the angel who was speaking + +5 +with me, “What are these, my lord?” + + j + +6 + +And the angel told me, “These are the four spir- +its + of heaven, going forth from their station +before the Lord of all the earth. +The one with the +black horses is going toward the land of the +north, the one with the white horses toward the +west, + and the one with the dappled horses +7 +toward the south.” + +k + +As the strong horses went out, they were eager +to go and patrol the earth; and the LORD said, “Go +8 +and patrol the earth.” So they patrolled the earth. + +Then the LORD summoned me and said, “Be- +hold, those going to the land of the north have +given rest to My Spirit in the land of the north.” + +the two sons of new oil + +d 14 + +from which the gold + +Or +See Revelation 11:4. +their eye +appearance +4.6 meters wide). +Or +them + +Or +g 6 + +h 6 + +their +The flying scroll was approximately 30 feet long and 15 feet wide (9.1 meters long and +the one with the white horses after + +k 6 +One Hebrew manuscript, LXX, and Syriac; most Hebrew manuscripts + +winds + +i 11 + +j 5 + +Hebrew + +Hebrew + + or (literally) + +That is, Babylonia + +Or + +Or + + 852 | Zechariah 6:9 + +The Crown and the Temple + +9 +10 + +The word of the LORD also came to me, saying, +“Take an offering from the exiles—from +Heldai, Tobijah, and Jedaiah, who have arrived +from Babylon—and go that same day to the +Take silver +house of Josiah son of Zephaniah. +a +and gold, make an ornate crown, and set it on the +12 +head of the high priest, Joshua son of Jehozadak. + +11 + +13 + +And you are to tell him that this is what the +LORD of Hosts says: ‘Here is a man whose name +is the Branch, and He will branch out from His +Yes, He +place and build the temple of the LORD. + the LORD; He will be +will build the temple of +clothed in splendor and will sit on His throne and + and +rule. And He will be a priest on His throne, +14 +there will be peaceful counsel between the two.’ + +b + +c + + d + +15 + +The crown will reside in the temple of the +LORD as a memorial to Helem, + Tobijah, Jedaiah, +and the gracious +Even +those far away will come and build the temple of +the LORD, and you will know that the LORD of +Hosts has sent Me to you. This will happen if you +A Call to Justice and Mercy +diligently obey the voice of the LORD your God.” + + son of Zephaniah. + +7 + +In the fourth year of King Darius, the word of +e +the LORD came to Zechariah on the fourth + +2 +day of the ninth month, the month of Chislev. + +f + +Now the people of Bethel had sent Sharezer and +3 +Regem-melech, along with their men, + to plead +before the LORD +by asking the priests of the +house of the LORD of Hosts, as well as the proph- +ets, “Should I weep and fast in the fifth month, as +4 +I have done these many years?” + +5 + +6 + +Then the word of the LORD of Hosts came to me, +“Ask all the people of the land and the +saying, +priests, ‘When you fasted and mourned in the +fifth and seventh months for these seventy years, +And when +was it really for Me that you fasted? +you were eating and drinking, were you not do- +Are these not +ing so simply for yourselves? +the words that the LORD proclaimed through +the earlier prophets, when Jerusalem and its +surrounding towns were populous and prosper- + were +ous, and the Negev and the foothills +b 13 +a 11 Jehozadak +” +inhabited?’ +Heldai + is a variant of + +; see Ezra 3:2. + +and Josiah + +and Hen + +Jozadak + +d 14 + +7 + + g + +Or + +8 + +9 + +Then the word of the LORD came to Zechariah, + h +“This is what the LORD of Hosts says: + +saying, +‘Administer true justice. Show loving devotion +and compassion to one another. +Do not op- +press the widow or the fatherless, the foreigner +or the poor. And do not plot evil in your hearts +11 +against one another.’ + +10 + +i + +12 + +But they refused to pay attention and turned a +stubborn shoulder; they stopped up their ears +from hearing. +They made their hearts like flint +and would not listen to the law or to the words +that the LORD of Hosts had sent by His Spirit +through the earlier prophets. Therefore great an- +13 +ger came from the LORD of Hosts. + +14 + +And just as I had called and they would not lis- +ten, so when they called I would not listen, says +the LORD of Hosts. +But I scattered them with a +whirlwind among all the nations that they had +not known, and the land was left desolate behind +them so that no one could come or go. Thus they +The Restoration of Jerusalem (Micah 4:6–13) +turned the pleasant land into a desolation.” + +8 + +2 + +Again the word of the LORD of Hosts came to +me, saying: +This is what the LORD of Hosts +says: “I am jealous for Zion with great zeal; I am +3 +jealous for her with great fervor.” + +This is what the LORD says: “I will return to +Zion and dwell in Jerusalem. Then Jerusalem will +be called the City of Truth, and the mountain of +the LORD of Hosts will be called the Holy Moun- +4 +tain.” + +5 + +This is what the LORD of Hosts says: “Old men +and old women will again sit along the streets of +Jerusalem, each with a staff in hand because of +great age. +And the streets of the city will be +6 +filled with boys and girls playing there.” + + j + +This is what the LORD of Hosts says: “If this is + in the eyes of the remnant of this +impossible +people in these days, should it also be impossible +7 +in My eyes?” declares the LORD of Hosts. + +8 + +This is what the LORD of Hosts says: “I will save +My people from the land of the east and from the +land of the west. +I will bring them back to dwell +in Jerusalem, where they will be My people, and +I will be their faithful and righteous God.” + +And there will be a priest on His throne + +c 14 + +e 1 Chislev +f 2 + +Hebrew; Syriac +Bethel-sharezer had sent Regem-melech, + is the ninth month of the Hebrew lunar + +h 9 + +; see verse 10. + +g 7 + +along with his men, +Shephelah +calendar, usually occurring within the months of November and December. +chesed +love +goodness +heavy to hear + + are translated here and in most cases throughout the Scriptures as + +kindness +j 6 + +loyalty to a covenant + +lowlands + + or +mercy + +; see verse 10. + +; Syriac + +Or + +Or +loving devotion + +; that is, the western foothills of Judea + +i 11 + +Forms of the Hebrew +; the range of meaning includes + +they made their ears too + +, + +, + +, and + +, as well as + +. + +Hebrew + +Hebrew +faithfulness +marvelous +, + +Or + +; twice in this verse + + 9 + +The Burden against Israel’s Enemies + +Zechariah 9:9 | 853 + +10 + +This is what the LORD of Hosts says: “Let your +hands be strong, you who now hear these words +spoken by the prophets who were present when +the foundations were laid to rebuild the temple, +the house of the LORD of Hosts. +For before +those days neither man nor beast received +wages, nor was there safety from the enemy for +anyone who came or went, for I had turned every +man against his neighbor. +But now I will not +treat the remnant of this people as I did in the +12 +past,” declares the LORD of Hosts. + +11 + +9 + + This is the burden of the word of the LORD +against the land of Hadrach +and Damascus its resting place— + +for the eyes of men + + a + +and of all the tribes of Israel +— +are upon the LORD +and also against Hamath, +which borders it, +as well as Tyre and Sidon, + +2 + +3 + +though they are very shrewd. + +13 + +“For the seed will be prosperous, the vine will +yield its fruit, the ground will yield its produce, +and the skies will give their dew. To the remnant +of this people I will give all these things as an in- +heritance. +As you have been a curse among the +nations, O house of Judah and house of Israel, so +I will save you, and you will be a blessing. Do not +14 +be afraid; let your hands be strong.” + +15 + +16 + +For this is what the LORD of Hosts says: “Just +as I resolved to bring disaster upon you when +your fathers provoked Me to anger, and I did not +relent,” says the LORD of Hosts, +“so now I have +resolved to do good again to Jerusalem and Ju- +dah. Do not be afraid. +These are the things you +17 +must do: Speak truth to one another, render true +and sound judgments in your gates, +do not plot +evil in your hearts against your neighbor, and do +not love to swear falsely, for I hate all these +18 +things,” declares the LORD. +19 + +Then the word of the LORD of Hosts came to +“This is what the LORD of Hosts +me, saying, +says: The fasts of the fourth, the fifth, the seventh, +and the tenth months will become times of joy +and gladness, cheerful feasts for the house of Ju- +dah. Therefore you are to love both truth and +20 +peace.” + +This is what the LORD of Hosts says: “Peoples +21 +will yet come—the residents of many cities— +and the residents of one city will go to another, +saying: ‘Let us go at once to plead before the +LORD and to seek the LORD of Hosts. I myself am +going.’ +And many peoples and strong nations +will come to seek the LORD of Hosts in Jerusalem +23 +and to plead before the LORD.” + +22 + +Tyre has built herself a fortress; + +4 + +she has heaped up silver like dust, +and gold like the dirt of the streets. + +b + +Behold, the Lord will impoverish her +and cast her wealth into the sea, +and she will be consumed by fire. + +5 + +Ashkelon will see and fear; + +Gaza will writhe in agony, + +as will Ekron, + +for her hope will wither. + +6 + +There will cease to be a king in Gaza, +and Ashkelon will be uninhabited. + +A mixed race will occupy Ashdod, + +7 + +and I will cut off the pride of the + +Philistines. + +I will remove the blood from their mouths + +and the abominations from between their + +teeth. + +Then they too will become a remnant for our + + c + +God; + +8 + +they will become like a clan +and Ekron will be like the Jebusites. +But I will camp around My house because of + + in Judah, + +an army, + +because of those who march to and fro, +and never again will an oppressor overrun + +My people, +Zion’s Coming King +(Matthew 21:1–11 ; Mark 11:1–11 ; +Luke 19:28–40 ; John 12:12–19) + +for now I keep watch with My own eyes. + +9 + +Rejoice greatly, O Daughter of Zion! +Shout in triumph, O Daughter of + +This is what the LORD of Hosts says: “In those +days ten men from the nations of every tongue +will tightly grasp the robe of a Jew, saying, ‘Let us +go with you, for we have heard that God is with +a 1 +you.’ +leader +Or + +for the eye of the LORD is on all men and all the tribes of Israel +” + +righteous and endowed with salvation + +d 9 + +e 9 + +Jerusalem! + +d +See, your King comes to you, +righteous and victorious, +humble and riding on a donkey, +b 4 +on a colt, the foal of a donkey. + +strike down her power on the sea + +e + +Or + +Or + +Cited in Matthew 21:5 and John 12:15 + +c 7 + +like a + +Or + + 854 | Zechariah 9:10 + +10 + + a + +2 + +And I will cut off the chariot from Ephraim + the horse from Jerusalem, +and +and the bow of war will be broken. +Then He will proclaim peace to the nations. + b +His dominion will extend from sea to sea, + +and from the Euphrates + +11 + +to the ends of the earth. + +As for you, + +because of the blood of My + +covenant, + +12 + +I will release your prisoners +from the waterless pit. +Return to your stronghold, +O prisoners of hope; + +even today I declare + +13 + +that I will restore to you double. + +For I will bend Judah as My bow + +and fit it with Ephraim. +c +I will rouse your sons, O Zion, +against the sons of Greece. +I will make you like the sword +The LORD Will Save His People + +of a mighty man. + +14 + +Then the LORD will appear over them, +and His arrow will go forth like + +lightning. + +The Lord GOD will sound the ram’s horn +and advance in the whirlwinds of the + +15 + +south. + +The LORD of Hosts will shield them. + +They will destroy and conquer with + +slingstones; + +16 + +they will drink and roar as with wine. +And they will be filled like sprinkling bowls, +drenched like the corners of the altar. +On that day the LORD their God will save + +them + +as the flock of His people; + +for like jewels in a crown + +17 + +they will sparkle over His land. + +How lovely they will be, +and how beautiful! + +Judah and Israel Will Be Restored + +Grain will make the young men flourish, +and new wine, the young women. + +10 + +Ask the LORD for rain in springtime; +the LORD makes the storm clouds, + +and He will give everyone showers of rain + +For idols speak deceit + +and diviners see illusions; + +they tell false dreams + +and offer empty comfort. + +Therefore the people wander like sheep, +3 +oppressed for lack of a shepherd. + +d + +“My anger burns against the shepherds, + +and I will punish the leaders. + +For the LORD of Hosts attends to His flock, + +the house of Judah; + +He will make them + +4 + +like His royal steed in battle. + +The cornerstone will come from Judah, + +the tent peg from him, +as well as the battle bow + +5 + +and every ruler together. + +They will be like mighty men in battle, + +trampling the enemy in the mire of the + +streets. + +They will fight because the LORD is with + +6 + +them, + +and they will put the horsemen to shame. + +I will strengthen the house of Judah +and save the house of Joseph. +I will restore them because I have + +compassion on them, + +and they will be as though I had not + +rejected them. +For I am the LORD their God, +7 +and I will answer them. + +Ephraim will be like a mighty man, + +and their hearts will be glad as with wine. + +Their children will see it and be + +8 + +joyful; + +their hearts will rejoice in the LORD. + +I will whistle for them to gather, +for I have redeemed them; +and they will be as numerous +9 + +as they once were. + +Though I sow them among the nations, +they will remember Me in distant + +lands; + +10 + +they and their children +will live and return. + +I will bring them back from Egypt +and gather them from Assyria. + +I will bring them to Gilead and Lebanon +until no more room is found for + +a 10 +goats + +and crops in the field. + +b 10 + +the River + +c 13 + +them. + +the sons of Javan + +d 3 + +these male + +That is, the northern kingdom of Israel + +Hebrew + +Hebrew + +Or + + 11 + +12 + +Zechariah 12:6 | 855 + +They will pass through the sea of distress + +and strike the waves of the sea; +all the depths of the Nile will dry up. + +The pride of Assyria will be brought + +12 + +down, + +and the scepter of Egypt will depart. + +I will strengthen them in the LORD, +and in His name they will walk,” + +declares the LORD. + +The Doomed Flock + +11 + +2 + +Open your doors, O Lebanon, +that the fire may consume your cedars! + +a + +Wail, O cypress, + + for the cedar has fallen; + +the majestic trees are ruined! + +Wail, O oaks of Bashan, + +3 + +for the dense forest has been cut down! + +Listen to the wailing of the shepherds, + +for their glory is in ruins. + +Listen to the roaring of the young lions, +for the thickets of the Jordan are + +destroyed. + +5 + +4 + +This is what the LORD my God says: “Pasture +whose buyers +the flock marked for slaughter, +slaughter them without remorse. Those who sell +them say, ‘Blessed be the LORD, for I am rich!’ +Even their own shepherds have no compassion +6 +on them. + +For I will no longer have compassion on the +people of the land, declares the LORD, but +behold, I will cause each man to fall into the +hands of his neighbor and his king, who will dev- +astate the land, and I will not deliver it from their +7 +hands.” + +8 + +So I pastured the flock marked for slaughter, es- +pecially the afflicted of the flock. Then I took for +myself two staffs, calling one Favor and the other +And in one +Union, and I pastured the flock. +month I dismissed three shepherds. + +9 +My soul grew impatient with the flock, and their +Then I said, “I will no +souls also detested me. +longer shepherd you. Let the dying die, and the +perishing perish; and let those who remain de- +Thirty Pieces of Silver (Matthew 27:3–10) +vour one another’s flesh.” +10 + +b + +11 + +Next I took my staff called Favor and cut it in +two, + revoking the covenant I had made with all +the nations. +It was revoked on that day, and so +the afflicted of the flock who were watching me +fir +a 2 +knew that it was the word of the LORD. + +broke it + +juniper + +b 10 + +pine + +Then I told them, “If it seems right to you, give +me my wages; but if not, keep them.” So they +13 +weighed out my wages, thirty pieces of silver. + +And the LORD said to me, “Throw it to the pot- +ter”—this magnificent price at which they valued +me. So I took the thirty pieces of silver and threw +14 +them to the potter in the house of the LORD. + +Then I cut in two my second staff called +Union, breaking the brotherhood between Judah +15 +and Israel. + +16 + +And the LORD said to me: “Take up once more +For be- +the equipment of a foolish shepherd. +hold, I will raise up a shepherd in the land who +will neither care for the lost, nor seek the young, +nor heal the broken, nor sustain the healthy, but +he will devour the flesh of the choice sheep and +17 +tear off their hooves. + +Woe to the worthless shepherd, + +who deserts the flock! +May a sword strike his arm + +and his right eye! + +May his arm be completely withered +The Coming Deliverance of Jerusalem +and his right eye utterly blinded!” + +12 + +This is the burden of the word of the +LORD concerning Israel. + +Thus declares the LORD, who stretches out the +heavens and lays the foundation of the earth, +2 +who forms the spirit of man within him: + +“Behold, I will make Jerusalem a cup of drunk- +enness to all the surrounding peoples. Judah will +3 +be besieged, as well as Jerusalem. + +On that day, when all the nations of the earth +gather against her, I will make Jerusalem a heavy +stone for all the peoples; all who would heave it +4 +away will be severely injured. + +On that day, declares the LORD, I will strike +every horse with panic, and every rider with +madness. I will keep a watchful eye on the house +of Judah, but I will strike with blindness all the +5 +horses of the nations. + +Then the leaders of Judah will say in their +hearts: ‘The people of Jerusalem are my strength, +6 +for the LORD of Hosts is their God.’ + +On that day I will make the clans of Judah like a +firepot in a woodpile, like a flaming torch among +the sheaves; they will consume all the peoples + +Or + + or + + or + +Or + +; similarly in verse 14 + + 856 | Zechariah 12:7 + +around them on the right and on the left, while +7 +the people of Jerusalem remain secure there. + +8 + +The LORD will save the tents of Judah first, so +that the glory of the house of David and of the +people of Jerusalem may not be greater than that +On that day the LORD will defend the +of Judah. +people of Jerusalem, so that the weakest among + a +them will be like David, and the house of David +will be like God, like the angel + of the LORD going +9 +before them. + +So on that day I will set out to destroy all the + +Mourning the One They Pierced +nations that come against Jerusalem. +(John 19:31–37) + +10 + + b + +d + +Then I will pour out on the house of David and +c +on the people of Jerusalem a spirit + of grace and +prayer, and they will look on Me, + the One they + They will mourn for Him as one +have pierced. +mourns for an only child, and grieve bitterly for +11 +Him as one grieves for a firstborn son. + +On that day the wailing in Jerusalem will be as +12 +in +great as the wailing of Hadad-rimmon +the plain of Megiddo. +The land will mourn, +each clan on its own: the clan of the house of Da- +13 +vid and their wives, the clan of the house of Na- +than and their wives, +the clan of the house of +Levi and their wives, the clan of Shimei and their +wives, +and all the remaining clans and their +An End to Idolatry +wives. + +14 + +13 + +“On that day a fountain will be opened to +the house of David and the people of Je- +2 +rusalem, to cleanse them from sin and impurity. +And on that day, declares the LORD of Hosts, I +will erase the names of the idols from the land, +and they will no longer be remembered. I will +also remove the prophets and the spirit of impu- +3 +rity + + from the land. + + e + +And if anyone still prophesies, his father and +mother who bore him will say to him, ‘You shall +not remain alive, because you have spoken falsely +in the name of the LORD.’ When he prophesies, +his father and mother who bore him will pierce +4 +him through. + +And on that day every prophet who prophesies +will be ashamed of his vision, and he will not put +d 10 +a 8 +on a hairy cloak in order to deceive. +He will say, +farmer, for the land has been my livelihood since my youth. +Or +with You + +the Spirit + +Angel + +to Me + +b 10 + +c 10 + +Or + +Or + +i 5 + +5 + +f + +6 + + g + +‘I am not a prophet; I work the land, for I was pur- +chased as a servant in my youth. +If someone +asks him, ‘What are these wounds on your +chest +?’ he will answer, ‘These are the wounds I +The Shepherd Struck, the Sheep Scattered +received in the house of my friends.’ +(Matthew 26:31–35 ; Mark 14:27–31) + +’ + +7 + +Awake, O sword, against My Shepherd, + +against the man who is My Companion, +declares the LORD of Hosts. +Strike the Shepherd, and the sheep + +h + +will be scattered, + +8 + +and I will turn My hand against the + +little ones. +And in all the land, + +declares the LORD, + +two-thirds will be cut off and perish, +9 + +but a third will be left in it. + +This third I will bring through the fire; + +I will refine them like silver +and test them like gold. +They will call on My name, +and I will answer them. +I will say, ‘They are My people,’ + +The Destroyers of Jerusalem Destroyed + +and they will say, ‘The LORD is our God.’ + +” + +14 + +2 + +Behold, a day of the LORD is coming +when your plunder will be divided in +For I will gather all the nations +your presence. +for battle against Jerusalem, and the city will be +captured, the houses looted, and the women rav- +ished. Half of the city will go into exile, but the +rest of the people will not be removed from the +3 +city. + +4 + +Then the LORD will go out to fight against those +On that +nations, as He fights in the day of battle. +day His feet will stand on the Mount of Olives, +east of Jerusalem, and the Mount of Olives will be +split in two from east to west, forming a great +valley, with half the mountain moving to the +You will flee by My +north and half to the south. +mountain valley, for it will extend to Azal. You +will flee as you fled from the earthquake in the +days of Uzziah king of Judah. Then the LORD my +6 +God will come, and all the holy ones with Him. + +5 + +i + +7 + +On that day there will be no light, no cold or +It will be a unique day known only to the +frost. +LORD, without day or night; but when evening +the unclean spirit +e 2 +comes, there will be light. + +I am a + +f 5 + +14:27 + +LXX; Hebrew + +Lit. + +Cited in Matt. 26:31 and Mark + +g 6 + +Cited in John 19:37 + +between your hands +Or + +h 7 + +Or + + 8 + + a + +b + +And on that day living water will flow out from + and +Jerusalem, half of it toward the Eastern Sea +9 +the other half toward the Western Sea, + in sum- +On that day the LORD will +mer and winter alike. +become King over all the earth—the LORD alone, +10 +and His name alone. + +All the land from Geba to Rimmon south of Je- +rusalem will be turned into a plain, but Jerusalem +will be raised up and will remain in her place, +from the Benjamin Gate to the site of the First +Gate to the Corner Gate, and from the Tower of +People will +Hananel to the royal winepresses. +live there, and never again will there be an utter +12 +destruction. So Jerusalem will dwell securely. + +11 + +And this will be the plague with which the +LORD strikes all the peoples who have warred +against Jerusalem: Their flesh will rot while they +stand on their feet, their eyes will rot in their +sockets, and their tongues will rot in their +13 +mouths. + +14 + +On that day a great panic from the LORD will +come upon them, so that each will seize the hand +of another, and the hand of one will rise against +Judah will also fight at Jerusalem, +the other. +and the wealth of all the surrounding nations will +be collected—gold, silver, and apparel in great +And a similar plague will strike the +abundance. + +15 + +Zechariah 14:21 | 857 + +horses and mules, camels and donkeys, and all +All Nations Will Worship the King +the animals in those camps. +(Leviticus 23:33–44 ; Nehemiah 8:13–18) + +16 + +c + +17 + +Then all the survivors from the nations that +came against Jerusalem will go up year after year +to worship the King, the LORD of Hosts, and to +And +celebrate the Feast of Tabernacles. +should any of the families of the earth not go up +to Jerusalem to worship the King, the LORD of +And +Hosts, then the rain will not fall on them. +if the people of Egypt will not go up and enter in, +then the rain will not fall on them; this will be the +plague with which the LORD strikes the nations +who do not go up to celebrate the Feast of Taber- +This will be the punishment of Egypt +nacles. +and of all the nations that do not go up to cele- +20 +brate the Feast of Tabernacles. + +18 + +19 + + d + +21 + +On that day, HOLY TO THE LORD + + will be in- +scribed on the bells of the horses, and the cook- +ing pots in the house of the LORD will be like the +Indeed, +sprinkling bowls before the altar. +every pot in Jerusalem and Judah will be holy to +the LORD of Hosts, and all who sacrifice will + e +come and take some pots and cook in them. And +on that day there will no longer be a Canaanite +in the house of the LORD of Hosts. + +a 8 + +b 8 + +c 16 + +That is, the Dead Sea + +of Ingathering +feast of pilgrimage to Jerusalem; also translated as + +the LORD + or + +merchant + +That is, Sukkot, the autumn + + and originally called + +the Feast of Booths +That is, the Mediterranean Sea, also called the Great Sea + +the Feast of Shelters +e 21 + +d 20 + +the Feast + + (see Exodus 23:16 and Exodus 34:22). + +That is, + +Or + + Malachi + +The LORD’s Love for Israel +(Genesis 25:19–28 ; Romans 9:6–29) + +1 + +2 + + a + +This is the burden of the word of the LORD +to Israel through Malachi: + +“I have loved you,” says the LORD. + +But you ask, “How have You loved us?” + +3 + +b + +“Was not Esau Jacob’s brother?” declares the +but Esau I have +LORD. “Yet Jacob I have loved, + and I have made his mountains a waste- +hated, +c +land and left his inheritance to the desert jack- +4 +als. + +” + +5 + +Though Edom may say, “We have been devas- +tated, but we will rebuild the ruins,” this is what +the LORD of Hosts says: “They may build, but I +will demolish. They will be called the Land of +Wickedness, and a people with whom the LORD +You will see this with your +is indignant forever. +own eyes, and you yourselves will say, ‘The +LORD is great—even beyond the borders of +The Polluted Offerings +Israel.’ +6 + +” + +“A son honors his father, and a servant his mas- +ter. But if I am a father, where is My honor? And +if I am a master, where is your fear of Me?” says +the LORD of Hosts to you priests who despise My +name. +7 +“But you ask, ‘How have we despised Your name?’ + +By presenting defiled food on My altar. + + d + +But you ask, ‘How have we defiled You + +?’ + +By saying that the table of the LORD is contempt- +8 +ible. + +When you offer blind animals for sacrifice, is it +not wrong? And when you present the lame and +sick ones, is it not wrong? Try offering them to +your governor! Would he be pleased with you or +9 +show you favor?” asks the LORD of Hosts. + +“But ask now for God’s favor. Will He be gra- +cious? Since this has come from your hands, will +My messenger +a 1 Malachi +He show you favor?” asks the LORD of Hosts. +defiled it +the wilderness + +b 3 +e 3 + +d 7 + + means + +. + +LXX + +I will blight your grain +Cited in Romans 9:13 +Or + +10 + +“Oh, that one of you would shut the temple +doors, so that you would no longer kindle useless +fires on My altar! I take no pleasure in you,” says +the LORD of Hosts, “and I will accept no offering +11 +from your hands. + +For My name will be great among the nations, +from where the sun rises to where it sets. In +every place, incense and pure offerings will be +presented in My name, because My name will be +great among the nations,” says the LORD of +“But you profane it when you say, ‘The +Hosts. +table of the Lord is defiled, and as for its fruit, its +13 +food is contemptible.’ + +12 + +You also say: ‘Oh, what a nuisance!’ And you +turn up your nose at it,” says the LORD of Hosts. + +“You bring offerings that are stolen, lame, or sick! +Should I accept these from your hands?” asks the +14 +LORD. + +“But cursed is the deceiver who has an ac- +ceptable male in his flock and vows to give it, but +sacrifices a defective animal to the Lord. For I am +a great King,” says the LORD of Hosts, “and My +A Warning to the Priests +name is to be feared among the nations. + +2 + +2 +“And now this decree is for you, O priests: + +If you do not listen, and if you do not take it +to heart to honor My name,” says the LORD of +Hosts, “I will send a curse among you, and I will +curse your blessings. Yes, I have already begun to +curse them, because you are not taking it to +3 +heart. + +e + +Behold, I will rebuke your descendants, + + and I +will spread dung on your faces, the waste from +4 +your feasts, and you will be carried off with it. + +Then you will know that I have sent you this +commandment so that My covenant with Levi +may continue,” says the LORD of Hosts. +“My +covenant with him was one of life and peace, +which I gave to him; it called for reverence, and +to the dragons of +c 3 +he revered Me and stood in awe of My name. + +to the serpents of the wilderness + +5 + +Or + + or + + 6 + +17 + +Malachi 3:10 | 859 + +7 + +True instruction was in his mouth, and nothing +false was found on his lips. He walked with Me in +peace and uprightness, and he turned many from +For the lips of a priest should preserve +iniquity. +knowledge, and people should seek instruction +from his mouth, because he is the messenger of +8 +the LORD of Hosts. + +9 + +But you have departed from the way, and your +instruction has caused many to stumble. You +have violated the covenant of Levi,” says the +“So I in turn have made you des- +LORD of Hosts. +pised and humiliated before all the people, be- +cause you have not kept My ways, but have +Judah’s Unfaithfulness +shown partiality in matters of the law.” +10 + +Do we not all have one Father? Did not one God +create us? Why then do we break faith with one +another so as to profane the covenant of our +11 +fathers? + +Judah has broken faith; an abomination has +been committed in Israel and in Jerusalem. For +Judah has profaned the LORD’s beloved sanctu- +12 +ary by marrying the daughter of a foreign god. +As for the man who does this, may the LORD +cut off from the tents of Jacob everyone who is +awake and aware—even if he brings an offering +13 +to the LORD of Hosts. + +And this is another thing you do: You cover the +altar of the LORD with tears, with weeping and +groaning, because He no longer regards your of- +14 +ferings or receives them gladly from your hands. + +Yet you ask, “Why?” + +It is because the LORD has been a witness be- +tween you and the wife of your youth, against +whom you have broken faith, though she is your +15 +companion and your wife by covenant. + +Has not the LORD made them one, having a +portion of the Spirit? And why one? Because He +seeks godly offspring. So guard yourselves in + break faith with the wife +your spirit and do not +16 +of your youth. + +You have wearied the LORD with your words; + +yet you ask, “How have we wearied Him?” + +By saying, “All who do evil are good in the sight +of the LORD, and in them He delights,” or, “Where +I Will Send My Messenger +is the God of justice?” +(Matthew 11:7–19 ; Luke 7:24–35) + +3 + +b + +“Behold, I will send My messenger, who will + Then the Lord +prepare the way before Me. +whom you seek will suddenly come to His tem- +ple—the Messenger of the covenant, in whom +you delight—see, He is coming,” says the LORD +2 +of Hosts. + +But who can endure the day of His coming? And +who can stand when He appears? For He will be +3 +like a refiner’s fire, like a launderer’s soap. + +And He will sit as a refiner and purifier of silver; +He will purify the sons of Levi and refine them +like gold and silver. Then they will present offer- +4 +ings to the LORD in righteousness. + +Then the offerings of Judah and Jerusalem will +please the LORD, as in days of old and years gone +5 +by. + +“Then I will draw near to you for judgment. And +I will be a swift witness against sorcerers and +adulterers and perjurers, against oppressors of +the widowed and fatherless, and against those +who defraud laborers of their wages and deny +justice to the foreigner but do not fear Me,” says +Robbing God +the LORD of Hosts. +6 + +7 + +“Because I, the LORD, do not change, you de- +Yet +scendants of Jacob have not been destroyed. +from the days of your fathers, you have turned +away from My statutes and have not kept them. +Return to Me, and I will return to you,” says the +LORD of Hosts. +8 +“But you ask, ‘How can we return?’ + +Will a man rob God? Yet you are robbing Me! +9 + +But you ask, ‘How do we rob You?’ + + a + +In tithes and offerings. +You are cursed with a +10 +curse, yet you—the whole nation—are still rob- +bing Me. +Bring the full tithe into the store- +house, so that there may be food in My house. +Test Me in this,” says the LORD of Hosts. “See if I +“For the man who hates his wife and divorces her,” says the LORD, the God of Israel, “covers his garment with violence,” +will not open the windows of heaven and pour + +“For I hate divorce,” says the LORD, the God of +Israel. “He who divorces his wife covers his gar- + says the LORD of Hosts. So +ment with violence,” +guard yourselves in your spirit and do not break +a 16 +faith. +b 1 + +Or + +Cited in Matthew 11:10, Mark 1:2, and Luke 7:27 + + 860 | Malachi 3:11 + +a + +11 + +18 + + b + +I will +out for you blessing without measure. +rebuke the devourer + for you, so that it will not +destroy the fruits of your land, and the vine in +your field will not fail to produce fruit,” says the +12 +LORD of Hosts. + +“Then all the nations will call you blessed, for +you will be a land of delight,” says the LORD of +The Book of Remembrance +Hosts. +13 + +“Your words against Me have been harsh,” +says the LORD. “Yet you ask, ‘What have we spo- +14 +ken against You?’ + +You have said, ‘It is futile to serve God. What +have we gained by keeping His requirements and +15 +walking mournfully before the LORD of Hosts? +So now we call the arrogant blessed. Not only +do evildoers prosper, they even test God and es- +16 +cape.’ + +” + +At that time those who feared the LORD spoke +with one another, and the LORD listened and +heard them. So a scroll of remembrance was +written before Him regarding those who feared +17 +the LORD and honored His name. + +“They will be Mine,” says the LORD of Hosts, +“on the day when I prepare My treasured posses- +sion. And I will spare them as a man spares his + +So you will again dis- +own son who serves him. +tinguish between the righteous and the wicked, +between those who serve God and those who do +The Day of the LORD +not.” +(Zeph. 1:7–18 ; 1 Thess. 5:1–11 ; 2 Peter 3:8–13) + +4 + +“For behold, the day is coming, burning like +a furnace, when all the arrogant and every +evildoer will be stubble; the day is coming when +I will set them ablaze,” says the LORD of Hosts. +2 +“Not a root or branch will be left to them.” + +c + +“But for you who fear My name, the sun of right- +eousness will rise with healing in its wings, + and +3 +you will go out and leap like calves from the stall. +Then you will trample the wicked, for they will +be ashes under the soles of your feet on the day I +4 +am preparing,” says the LORD of Hosts. + +d + +“Remember the law of My servant Moses, the +statutes and ordinances I commanded him for all +5 +Israel at Horeb. + +e + +6 + +Behold, I will send you Elijah the prophet before +the coming of the great and awesome + Day of the +LORD. +And he will turn the hearts of the fathers +to their children, and the hearts of the children to + Otherwise, I will come and strike +their fathers. +the land with a curse.” + +f + +a 10 +c 2 + +blessing for which there will be no room + +b 11 The devourer + +the Sun of Righteousness will rise with healing in His wings +e 5 + +dreadful + +glorious + +Literally + +d 4 + +f 6 + + is probably a name for a crop-destroying pest. + +Or + +That is, Mount Sinai, or possibly a mountain in the + +range containing Mount Sinai + +Or + +; LXX + +Cited in Luke 1:17 + + Matthew + +The Genealogy of Jesus +(Ruth 4:18–22 ; Luke 3:23–38) + +1 + +2 + +This is the record of the genealogy of Jesus +Christ, the son of David, the son of Abraham: + +Abraham was the father of Isaac, +Isaac the father of Jacob, +and Jacob the father of Judah and his + +3 + +brothers. + +Judah was the father of Perez and Zerah + +by Tamar, + +a + +4 + +Perez the father of Hezron, +and Hezron the father of Ram. + +Ram was the father of Amminadab, +Amminadab the father of Nahshon, +and Nahshon the father of Salmon. + +5 + +Salmon was the father of Boaz by Rahab, +Boaz the father of Obed by Ruth, +6 +Obed the father of Jesse, +and Jesse the father of David the king. + +Next: + +David was the father of Solomon by +7 + +Uriah’s wife, + +Solomon the father of Rehoboam, +Rehoboam the father of Abijah, +and Abijah the father of Asa. + +b + +8 + +Asa was the father of Jehoshaphat, +Jehoshaphat the father of Joram, +and Joram the father of Uzziah. + +9 + +Uzziah was the father of Jotham, +Jotham the father of Ahaz, +and Ahaz the father of Hezekiah. + +10 + +c + +11 + +Hezekiah was the father of Manasseh, +Manasseh the father of Amon, +Amon the father of Josiah, +and Josiah the father of Jeconiah and his + +12 + +brothers + +at the time of the exile to Babylon. + +After the exile to Babylon: + +13 + +Zerubbabel the father of Abiud, +Abiud the father of Eliakim, +and Eliakim the father of Azor. + +14 + +Azor was the father of Zadok, +Zadok the father of Achim, +and Achim the father of Eliud. + +15 + +16 + +Eliud was the father of Eleazar, +Eleazar the father of Matthan, +Matthan the father of Jacob, +and Jacob the father of Joseph, the husband + +of Mary, + +of whom was born Jesus, who is called + +Christ. + +17 + +In all, then, there were fourteen generations +from Abraham to David, fourteen from David to +the exile to Babylon, and fourteen from the exile +The Birth of Jesus (Isaiah 7:10–16 ; Luke 2:1–7) +to the Christ. +18 + +This is how the birth of Jesus Christ came +about: His mother Mary was pledged in marriage +to Joseph, but before they came together, she was +19 +found to be with child through the Holy Spirit. +Because Joseph her husband was a righteous +man and was unwilling to disgrace her publicly, +20 +he resolved to divorce her quietly. + +But after he had pondered these things, an an- +gel of the Lord appeared to him in a dream and +said, “Joseph, son of David, do not be afraid to +embrace Mary as your wife, for the One con- +ceived in her is from the Holy Spirit. +She will +give birth to a Son, and you are to give Him the +name Jesus, + because He will save His people +22 +from their sins.” + +21 + +d + +All this took place to fulfill what the Lord had + +23 +said through the prophet: + +“Behold, the virgin will be with child + + e + +and will give birth to a son, + f +and they will call Him Immanuel” +(which means, “God with us” + +). + +24 + +a 3 + +Aram + +Jeconiah was the father of Shealtiel, +Shealtiel the father of Zerubbabel, +Greek +they will call His name Immanuel + +Amōs +, a variant of + +Ram + +c 10 + +e 23 +3:10. + +; also in verse 4; see 1 Chr. 2:9–10. + +b 7 + +When Joseph woke up, he did as the angel of +the Lord had commanded him and embraced +d 21 Jesus +; also in v. 8; see 1 Chr. + +The LORD saves + +, a variant of + +Greek + +Asaph + +Asa + +f 23 + +Greek + +, a variant spelling of Amon + +; twice in this verse; see 1 Chr. 3:14. + + means + +. + +Literally + +; Isaiah 7:14 (see also DSS) + +See Isaiah 7:14, Isaiah 8:8, and Isaiah 8:10. + + 862 | Matthew 1:25 + +25 + +14 + + a + +But he had no union with + until she gave birth to a Son. And he gave + +Mary as his wife. +her +The Pilgrimage of the Magi (Micah 5:1–6) +Him the name Jesus. + +2 + +After Jesus was born in Bethlehem in Judea, +2 +during the time of King Herod, Magi from the +east arrived in Jerusalem, +asking, “Where is the +One who has been born King of the Jews? We saw +His star in the east + and have come to worship +3 +Him.” + + b + +4 + +When King Herod heard this, he was disturbed, +and all Jerusalem with him. +And when he had +assembled all the chief priests and scribes of the +people, he asked them where the Christ was to be +5 +born. + +“In Bethlehem in Judea,” they replied, “for this +6 +is what the prophet has written: + +‘But you, Bethlehem, in the land of Judah, + +are by no means least among the rulers of + +Judah, + c + +for out of you will come a ruler + +who will be the shepherd of My people + +Israel.’ + +” + +7 + +Then Herod called the Magi secretly and learned +8 +from them the exact time the star had appeared. +And sending them to Bethlehem, he said: “Go +and search carefully for the Child, and when you +find Him, report to me, so that I too may go and +9 +worship Him.” + +10 + +11 + +After they had heard the king, they went on +their way, and the star they had seen in the east +went ahead of them until it stood over the place +where the Child was. +When they saw the star, +they rejoiced with great delight. +On coming to +the house, they saw the Child with His mother +Mary, and they fell down and worshiped Him. +Then they opened their treasures and presented +Him with gifts of gold and frankincense and +12 +myrrh. + +And having been warned in a dream not to re- +turn to Herod, they withdrew to their country by +The Flight to Egypt (Hosea 11:1–7) +another route. +13 + +When the Magi had gone, an angel of the Lord +appeared to Joseph in a dream. “Get up!” he said. +“Take the Child and His mother and flee to Egypt. +Stay there until I tell you, for Herod is going to +a 25 +search for the Child to kill Him.” + +he did not know her + +as it rose + +b 2 + +c 6 + + f 3 +Literally + +31:15 + +Isaiah 40:3 (see also LXX) + +Or + +15 + +So he got up, took the Child and His mother by +where he stayed +night, and withdrew to Egypt, +until the death of Herod. This fulfilled what the +Lord had spoken through the prophet: “Out of +Weeping and Great Mourning (Jer. 31:1–25) +Egypt I called My Son.” +16 + + d + +When Herod saw that he had been outwitted +by the Magi, he was filled with rage. Sending or- +ders, he put to death all the boys in Bethlehem +and its vicinity who were two years old and un- +der, according to the time he had learned from +Then what was spoken through the +the Magi. +18 +prophet Jeremiah was fulfilled: + +17 + +“A voice is heard in Ramah, + +weeping and great mourning, +Rachel weeping for her children +and refusing to be comforted, +The Return to Nazareth (Luke 2:39–40) +because they are no more.” + + e + +19 + +20 + +After Herod died, an angel of the Lord ap- +“Get up!” +peared in a dream to Joseph in Egypt. +he said. “Take the Child and His mother and go to +the land of Israel, for those seeking the Child’s life +21 +are now dead.” + +22 + +So Joseph got up, took the Child and His +mother, and went to the land of Israel. +But +when he learned that Archelaus was reigning in +Judea in place of his father Herod, he was afraid +to go there. And having been warned in a dream, +and he +he withdrew to the district of Galilee, +went and lived in a town called Nazareth. So was +fulfilled what was spoken through the prophets: +The Mission of John the Baptist +“He will be called a Nazarene.” +(Isaiah 40:1–5 ; Mark 1:1–8 ; Luke 3:1–20 ; +John 1:19–28) + +23 + +3 + +2 + +In those days John the Baptist came, preach- +and saying, +ing in the wilderness of Judea +3 +“Repent, for the kingdom of heaven is near.” +This is he who was spoken of through the + +prophet Isaiah: + +“A voice of one calling in the wilderness, + + f +‘Prepare the way for the Lord, +” +make straight paths for Him.’ + +4 + +John wore a garment of camel’s hair, with a +5 +leather belt around his waist. His food was lo- +d 15 +custs and wild honey. +People went out to him +Jeremiah +Micah 5:2; see also 2 Samuel 5:2. + +Hosea 11:1 + +e 18 + + 6 + +from Jerusalem and all Judea and the whole re- +Confessing their sins, +gion around the Jordan. +7 +they were baptized by him in the Jordan River. + +8 + +But when John saw many of the Pharisees and +Sadducees coming to his place of baptism, he said +to them, “You brood of vipers, who warned you +9 +Produce fruit, +to flee from the coming wrath? +then, in keeping with repentance. +And do not +presume to say to yourselves, ‘We have Abraham +as our father.’ For I tell you that out of these +10 +stones God can raise up children for Abraham. +The axe lies ready at the root of the trees, and +every tree that does not produce good fruit will +11 +be cut down and thrown into the fire. + + a + +I baptize you with water + + for repentance, but +after me will come One more powerful than I, +b +whose sandals I am not worthy to carry. He will +12 +baptize you with the Holy Spirit and with fire. + +His winnowing fork is in His hand to clear His +threshing floor and to gather His wheat into the +barn; but He will burn up the chaff with un- +The Baptism of Jesus +quenchable fire.” +(Mark 1:9–11 ; Luke 3:21–22 ; John 1:29–34) + +13 + +14 + +At that time Jesus came from Galilee to the Jor- +But John tried to +dan to be baptized by John. +prevent Him, saying, “I need to be baptized by +15 +You, and do You come to me?” + +“Let it be so now,” Jesus replied. “It is fitting for +us to fulfill all righteousness in this way.” Then +16 +John permitted Him. + +c + + d + + and He saw + +As soon as Jesus was baptized, He went up +out of the water. Suddenly the heavens were +17 + the Spirit of God descend- +opened, +And a voice +ing like a dove and resting on Him. +from heaven said, “This is My beloved Son, in +The Temptation of Jesus +whom I am well pleased!” +(Mark 1:12–13 ; Luke 4:1–13) + +Matthew 4:18 | 863 + +4 + +But Jesus answered, “It is written: + +‘Man shall not live on bread alone, + + e +but on every word that comes from the +” + +mouth of God.’ + +6 + +5 + +Then the devil took Him to the holy city and set +Him on the pinnacle of the temple. +“If You are +the Son of God,” he said, “throw Yourself down. +For it is written: + +‘He will command His angels concerning You, +and they will lift You up in their hands, + + f + +so that You will not strike Your foot + +against a stone.’ + +” + + g + +7 + +Jesus replied, “It is also written: ‘Do not put the + +8 +Lord your God to the test.’ + +” + +Again, the devil took Him to a very high moun- +9 +tain and showed Him all the kingdoms of the +“All this I will give You,” +world and their glory. +10 +he said, “if You will fall down and worship me.” + + h + +“Away from Me, Satan!” Jesus told him. “For it +is written: ‘Worship the Lord your God and serve +11 +Him only.’ + +” + +Then the devil left Him, and angels came and + +Jesus Begins His Ministry +ministered to Him. +(Isaiah 9:1–7 ; Mark 1:14–15 ; Luke 4:14–15) + +12 + +13 + +When Jesus heard that John had been impris- +Leaving Naza- +oned, He withdrew to Galilee. +reth, He went and lived in Capernaum, which is +14 +by the sea in the region of Zebulun and Naphtali, +to fulfill what was spoken through the prophet + +15 +Isaiah: + +“Land of Zebulun + +and land of Naphtali, + +16 + +the Way of the Sea, beyond the Jordan, + +Galilee of the Gentiles— +the people living in darkness +have seen a great light; + +on those living in the land of the shadow + + i + +4 + +2 + +17 + +of death, + +a light has dawned.” + +Then Jesus was led by the Spirit into the wil- +After +derness to be tempted by the devil. +fasting forty days and forty nights, He was hun- +3 +gry. + +From that time on Jesus began to preach, “Re- + +The First Disciples +pent, for the kingdom of heaven is near.” +(Mark 1:16–20 ; Luke 5:1–11 ; John 1:35–42) + +18 + +The tempter came to Him and said, “If You are +the Son of God, tell these stones to become +c 16 +a 11 +bread.” +he saw +Or +i 16 + +in the Holy Spirit and in fire + +in water + +b 11 + +e 4 + +Or + +f 6 + +As Jesus was walking beside the Sea of Galilee, +and +the heavens were opened to Him +He saw two brothers, Simon called Peter and his + +d 16 + +g 7 +NA, BYZ, and TR + +h 10 + +Or + +; see John 1:32–33. + +Deuteronomy 8:3 + +Psalm 91:11–12 + +Deuteronomy 6:16 + +Deuteronomy 6:13 + +Isaiah 9:1–2 + + 864 | Matthew 4:19 + +19 + +11 + +20 + +brother Andrew. They were casting a net into the +sea, for they were fishermen. +“Come, follow +Me,” Jesus said, “and I will make you fishers of +men.” +And at once they left their nets and fol- +21 +lowed Him. + +Going on from there, He saw two other broth- +ers, James son of Zebedee and his brother John. +They were in a boat with their father Zebedee, +mending their nets. Jesus called them, +and im- +mediately they left the boat and their father and +Jesus Heals the Multitudes +followed Him. +(Mark 3:7–12 ; Luke 6:17–19) + +22 + +23 + +24 + +Jesus went throughout Galilee, teaching in +their synagogues, preaching the gospel of the +kingdom, and healing every disease and sickness +among the people. +News about Him spread all +over Syria, and people brought to Him all who +were ill with various diseases, those suffering +acute pain, the demon-possessed, those having +25 +seizures, and the paralyzed, and He healed them. + +a + +Large crowds followed Him, having come from + Jerusalem, Judea, and be- + +Galilee, the Decapolis, +The Sermon on the Mount +yond the Jordan. + +5 + +2 + +When Jesus saw the crowds, He went up on +the mountain and sat down. His disciples +and He began to teach them, + +came to Him, +The Beatitudes (Psalm 1:1–6 ; Luke 6:20–23) +saying: +3 + +“Blessed are the poor in spirit, + +4 + +for theirs is the kingdom of heaven. + +5 + +Blessed are those who mourn, +for they will be comforted. + +b + +Blessed are the meek, + +6 + +for they will inherit the earth. + +Blessed are those who hunger and thirst for + +righteousness, +for they will be filled. +Blessed are the merciful, + +7 + +8 + +9 + +for they will be shown mercy. + +Blessed are the pure in heart, +for they will see God. +Blessed are the peacemakers, + +10 + +for they will be called sons of God. +Blessed are those who are persecuted +because of righteousness, + +b 5 +for theirs is the kingdom of heaven. +A city lying on a hill +f 22 Raca + +c 14 +That is, the Ten Cities +Literally + +Or + +d 21 + +a 25 + +cause +Psalm 37:11. +. + +12 + +Blessed are you when people insult you, per- +secute you, and falsely say all kinds of evil against +you because of Me. +Rejoice and be glad, be- +cause great is your reward in heaven, for in the +same way they persecuted the prophets before +Salt and Light (Mark 9:49–50 ; Luke 14:34–35 ; +you. +Philippians 2:12–18) + +13 + +You are the salt of the earth. But if the salt loses +its savor, how can it be made salty again? It is no +longer good for anything, except to be thrown + c +14 +out and trampled by men. + +15 + +You are the light of the world. A city on a hill + +16 + +cannot be hidden. +Neither do people light a +lamp and put it under a basket. Instead, they set +it on a stand, and it gives light to everyone in the +house. +In the same way, let your light shine be- +fore men, that they may see your good deeds and +The Fulfillment of the Law +glorify your Father in heaven. +17 + +18 + +Do not think that I have come to abolish +the Law or the Prophets. I have not come to abol- +ish them, but to fulfill them. +For I tell you truly, +until heaven and earth pass away, not a single jot, +not a stroke of a pen, will disappear from the Law +19 +until everything is accomplished. + +So then, whoever breaks one of the least of +these commandments and teaches others to do +likewise will be called least in the kingdom of +heaven; but whoever practices and teaches them +20 +will be called great in the kingdom of heaven. +For I tell you that unless your righteousness +exceeds that of the scribes and Pharisees, you +Anger and Reconciliation (Luke 12:57–59) +will never enter the kingdom of heaven. +21 + + d + + e + +You have heard that it was said to the ancients, +22 +‘Do not murder’ + and ‘Anyone who murders will +be subject to judgment.’ +But I tell you that an- +yone who is angry with his brother + will be sub- +g +ject to judgment. Again, anyone who says to his +brother, ‘Raca,’ +But anyone who says, ‘You fool!’ will be subject +23 +to the fire of hell. + + will be subject to the Sanhedrin. + +h + + f + +Blessed are those who exercise strength under control, for they will inherit the land + +24 + +So if you are offering your gift at the altar and +there remember that your brother has some- +thing against you, +leave your gift there before +the altar. First go and be reconciled to your +brother; then come and offer your gift. + +e 22 +the hell of fire + +without +; see + +the Gehenna of fire + +g 22 + +the Council + +h 22 + +Exodus 20:13; Deuteronomy 5:17 + +BYZ and TR include + + is an Aramaic expression of contempt. + +Or + +Or + +; Greek + + 25 + +42 + +Matthew 6:8 | 865 + +Reconcile quickly with your adversary, while +you are still on the way to court. Otherwise, he +may hand you over to the judge, and the judge +may hand you over to the officer, and you may be +Truly I tell you, you will +thrown into prison. +Adultery (Leviticus 18:1–30) +not get out until you have paid the last penny. +27 + +26 + +a + + b + +28 + +29 + +You have heard that it was said, ‘Do not com- +mit adultery.’ +But I tell you that anyone who +looks at a woman to lust after her has already +If +committed adultery with her in his heart. +your right eye causes you to sin, gouge it out and +throw it away. It is better for you to lose one part +of your body than for your whole body to be +And if your right hand +thrown into hell. +causes you to sin, cut it off and throw it away. It +is better for you to lose one part of your body +Divorce (Deuteronomy 24:1–5 ; Luke 16:18) +than for your whole body to depart into hell. +31 + +30 + +c + + d +It has also been said, ‘Whoever divorces his + +32 +wife must give her a certificate of divorce.’ + +e + +But I tell you that anyone who divorces his +wife, except for sexual immorality, brings adul- + And he who marries a divorced +tery upon her. +Oaths and Vows (Numbers 30:1–16) +woman commits adultery. +33 + + f + +34 + +Again, you have heard that it was said to the +ancients, ‘Do not break your oath, but fulfill your +But I tell you not to swear +vows to the Lord.’ +35 +at all: either by heaven, for it is God’s throne; +or by the earth, for it is His footstool; or by Je- +Nor +rusalem, for it is the city of the great King. +should you swear by your head, for you cannot +Simply let +make a single hair white or black. +your ‘Yes’ be ‘Yes,’ and your ‘No,’ ‘No.’ Anything +Love Your Enemies +more comes from the evil one. +(Leviticus 24:17–23 ; Luke 6:27–36) + +37 + +36 + +g + +38 + + h + +39 + +You have heard that it was said, ‘Eye for eye +and tooth for tooth.’ +But I tell you not to resist +an evil person. If someone slaps you on your +right cheek, turn to him the other also; +if some- +41 +one wants to sue you and take your tunic, let him +j +and if someone forces +have your cloak as well; +kodrantēn +a 26 +you to go one mile, + + go with him two miles. + +40 + +i + +Give to the one who asks you, and do not turn +away from the one who wants to borrow from +43 +you. + + k + +44 + +l + +45 + +You have heard that it was said, ‘Love your +neighbor’ +But I tell + and ‘Hate your enemy.’ +you, love your enemies and pray for those who +that you may be sons of your +persecute you, +Father in heaven. He causes His sun to rise on the +evil and the good, and sends rain on the right- +If you love those +eous and the unrighteous. +who love you, what reward will you get? Do not +And if you +even tax collectors do the same? +greet only your brothers, what are you doing +more than others? Do not even Gentiles do the +48 +same? + +46 + +47 + +Be perfect, therefore, as your heavenly Father + +Giving to the Needy +is perfect. +(Deuteronomy 15:7–11) + +6 + + m + +“Be careful not to perform your righteous + before men to be seen by them. If you +acts +do, you will have no reward from your Father in +2 +heaven. + +3 + +So when you give to the needy, do not sound a +trumpet before you, as the hypocrites do in the +synagogues and on the streets, to be honored by +men. Truly I tell you, they already have their full +But when you give to the needy, do not +reward. +4 +let your left hand know what your right hand is +so that your giving may be in secret. And +doing, +your Father, who sees what is done in secret, will +The Lord’s Prayer (Luke 11:1–4) +reward you. +5 + +6 + +And when you pray, do not be like the hypo- +crites. For they love to pray standing in the syna- +gogues and on the street corners to be seen by +men. Truly I tell you, they already have their full +But when you pray, go into your inner +reward. +room, shut your door, and pray to your Father, +who is unseen. And your Father, who sees what +7 +is done in secret, will reward you. + +8 + +And when you pray, do not babble on like pa- +gans, for they think that by their many words +Do not be like them, for your +they will be heard. +Father knows what you need before you ask Him. + +b 27 + +c 29 + +Greek + +Gehenna +; that is, a Roman copper coin worth about 1/64 of a denarius +g 37 + +from evil + +f 33 +5:18 +; also in verse 30 +Or +l 44 +that is, a Roman mile, approximately 4,855 feet or 1,480 meters +accuse you and persecute you + +j 41 +Greek +; +love your enemies, bless those who curse you, do good to those who hate you, and pray for those who spitefully +Leviticus 19:18 + +Exodus 21:24; Leviticus 24:20; Deuteronomy 19:21 +Literally +charitable acts + +Deuteronomy 24:1 + +Or +go with him two. + +Numbers 30:2 + +i 41 +k 43 + +one milion + +Exodus 20:14; Deuteronomy + +causes her to commit adultery + +Greek + +alms + +h 38 + +d 31 + +e 32 + +m 1 + +BYZ and TR + +; see Luke 6:27–28. + +BYZ and TR + + or + + 866 | Matthew 6:9 + +9 + +So then, this is how you should pray: + +10 + +‘Our Father in heaven, + +hallowed be Your name. + +Your kingdom come, +Your will be done, +on earth as it is in heaven. +Give us this day our daily bread. +And forgive us our debts, + +11 +12 + +13 + +as we also have forgiven our debtors. + +a + +And lead us not into temptation, + +but deliver us from the evil one. + +’ + +15 + +14 + +For if you forgive men their trespasses, your +But if +heavenly Father will also forgive you. +you do not forgive men their trespasses, neither +Proper Fasting +will your Father forgive yours. +16 + +17 + +When you fast, do not be somber like the hyp- +ocrites, for they disfigure their faces to show men +they are fasting. Truly I tell you, they already +But when you fast, +have their full reward. +anoint your head and wash your face, +so that +your fasting will not be obvious to men, but only +to your Father, who is unseen. And your Father, +Treasures in Heaven (Luke 12:32–34) +who sees what is done in secret, will reward you. +19 + +18 + + b + +Do not store up for yourselves treasures on +20 + destroy, and where +earth, where moth and rust +But store up for +thieves break in and steal. +yourselves treasures in heaven, where moth and +rust do not destroy, and where thieves do not +For where your treasure is, +break in and steal. +The Lamp of the Body (Luke 11:33–36) +there your heart will be also. +22 + +21 + +c + +23 +are good, + +The eye is the lamp of the body. If your eyes +d + your whole body will be full of light. + your whole body will +be full of darkness. If then the light within you is +24 +darkness, how great is that darkness! + +But if your eyes are bad, + +No one can serve two masters: Either he will +hate the one and love the other, or he will be +devoted to the one and despise the other. You +Do Not Worry (Luke 12:22–31) +cannot serve both God and money. +25 + +26 + +body, what you will wear. Is not life more than +Look at +food, and the body more than clothes? +the birds of the air: They do not sow or reap or +gather into barns, and yet your heavenly Father +feeds them. Are you not much more valuable +Who of you by worrying can add a +than they? +28 +single hour to his life? + +27 + + e + +29 + +And why do you worry about clothes? Con- +sider how the lilies of the field grow: They do not +Yet I tell you that not even Solo- +labor or spin. +30 +mon in all his glory was adorned like one of +these. +If that is how God clothes the grass of the +field, which is here today and tomorrow is +thrown into the furnace, will He not much more +31 +clothe you, O you of little faith? + +32 + +33 + +Therefore do not worry, saying, ‘What shall we +eat?’ or ‘What shall we drink?’ or ‘What shall we +wear?’ +For the Gentiles strive after all these + f +things, and your heavenly Father knows that you +need them. +and His righteousness, and all these things will +34 +be added unto you. + +But seek first the kingdom of God + +Therefore do not worry about tomorrow, for +tomorrow will worry about itself. Today has +Judging Others (Luke 6:37–42 ; Rom. 14:1–12) +enough trouble of its own. + +2 + +“Do not judge, or you will be judged. +For +with the same judgment you pronounce, you +will be judged, and with the measure you use, it +3 +will be measured to you. + +Why do you look at the speck in your brother’s +4 +eye but fail to notice the beam in your own eye? +How can you say to your brother, ‘Let me take +the speck out of your eye,’ while there is still a +beam in your own eye? +You hypocrite! First +take the beam out of your own eye, and then you +will see clearly to remove the speck from your +6 +brother’s eye. + +5 + +Do not give dogs what is holy; do not throw +your pearls before swine. If you do, they may +trample them under their feet, and then turn and +Ask, Seek, Knock (Luke 11:5–13) +tear you to pieces. +7 + +7 + +Therefore I tell you, do not worry about your +a 13 +life, what you will eat or drink; or about your + +from evil + +Or + +also in verse 20 +f 33 +and Proverbs 28:22 +SBL, WH, and NE + +c 22 + +If your eye is sound +a single cubit to his height + +; BYZ and TR include +e 27 +Literally +Or + +seek first His kingdom + +For Yours is the kingdom and the power and the glory, forever. Amen. + +8 + +Ask, and it will be given to you; seek, and you +will find; knock, and the door will be opened to +you. +For everyone who asks receives; he who + +worm + +b 19 + +d 23 + +if your eye is evil + +; see Proverbs 22:9 + +Literally + +; a cubit was approximately 18 inches or 45 centimeters. + +; see also Luke 12:31. + +Or +; +; see Proverbs 23:6 + + 10 +11 + +seeks finds; and to him who knocks, the door will +9 +be opened. + +Which of you, if his son asks for bread, will give +Or if he asks for a fish, will give +him a stone? +him a snake +So if you who are evil know how +? +to give good gifts to your children, how much +more will your Father in heaven give good things +12 +to those who ask Him! + +In everything, then, do to others as you would +have them do to you. For this is the essence of the +The Narrow Gate (Luke 13:22–30) +Law and the Prophets. +13 + +14 + +Enter through the narrow gate. For wide is the +gate and broad is the way that leads to destruc- +tion, and many enter through it. +But small is +the gate and narrow the way that leads to life, +A Tree and Its Fruit (Luke 6:43–45) +and only a few find it. +15 + +17 + +16 + +Beware of false prophets. They come to you in +sheep’s clothing, but inwardly they are ravenous +wolves. +By their fruit you will recognize them. +Are grapes gathered from thornbushes, or figs +Likewise, every good tree bears +from thistles? +A +good fruit, but a bad tree bears bad fruit. +good tree cannot bear bad fruit, and a bad tree +Every tree that does +cannot bear good fruit. +not bear good fruit is cut down and thrown into +the fire. +So then, by their fruit you will recog- +21 +nize them. + +20 + +18 + +19 + +Matthew 8:13 | 867 + +torrents raged, and the winds blew and beat +against that house, and it fell—and great was its +The Authority of Jesus +collapse!” +28 + +When Jesus had finished saying these things, +29 +the crowds were astonished at His teaching, +because He taught as one who had authority, + +The Leper’s Prayer +and not as their scribes. +(Leviticus 14:1–32 ; Mark 1:40–45 ; Luke 5:12–16) + +8 + +2 + +When Jesus came down from the mountain, + a +Suddenly a +large crowds followed Him. + came and knelt before Him, saying, “Lord, + +leper +3 +if You are willing, You can make me clean.” + +Jesus reached out His hand and touched the +man. “I am willing,” He said. “Be clean!” And im- +4 +mediately his leprosy was cleansed. + +Then Jesus instructed him, “See that you don’t +tell anyone. But go, show yourself to the priest +and offer the gift prescribed by Moses, as a testi- +The Faith of the Centurion +mony to them.” +(Luke 7:1–10 ; John 4:43–54) + + b + +5 + +6 + + c + +When Jesus had entered Capernaum, a centu- +“Lord, my + lies at home, paralyzed and in terrible + +rion came and pleaded with Him, +servant +7 +agony.” +8 + +“I will go and heal him,” Jesus replied. + +22 + +Not everyone who says to Me, ‘Lord, Lord,’ will +enter the kingdom of heaven, but only he who +Many will +does the will of My Father in heaven. +say to Me on that day, ‘Lord, Lord, did we not +prophesy in Your name, and in Your name drive +23 +out demons and perform many miracles?’ + +Then I will tell them plainly, ‘I never knew you; + +The House on the Rock (Luke 6:46–49) +depart from Me, you workers of lawlessness!’ +24 + +25 + +Therefore everyone who hears these words of +Mine and acts on them is like a wise man who +The rain fell, the +built his house on the rock. +torrents raged, and the winds blew and beat +against that house; yet it did not fall, because its +26 +foundation was on the rock. + +9 + +The centurion answered, “Lord, I am not wor- +thy to have You come under my roof. But just say +the word, and my servant will be healed. +For I +myself am a man under authority, with soldiers +under me. I tell one to go, and he goes, and an- +other to come, and he comes. I tell my servant to +10 +do something, and he does it.” + +When Jesus heard this, He marveled and said +to those following Him, “Truly I tell you, I have +11 +not found anyone in Israel with such great faith. +I say to you that many will come from the east +and the west to share the banquet with Abraham, +Isaac, and Jacob in the kingdom of heaven. +But +the sons of the kingdom will be thrown into the +outer darkness, where there will be weeping and +13 +gnashing of teeth.” + +12 + +But everyone who hears these words of Mine +and does not act on them is like a foolish man +a 2 +who built his house on sand. +The rain fell, the + +leper + +27 + +Then Jesus said to the centurion, “Go! As you + will it be done for you.” And his +child + +have believed, so +servant was healed at that very hour. + +b 4 + +c 6 + +A + + was one afflicted with a skin disease. See Leviticus 13. + +See Leviticus 14:1–32. + +Or + +; also in verses + +8 and 13 + + 868 | Matthew 8:14 + +Jesus Heals at Peter’s House +(Mark 1:29–34 ; Luke 4:38–41) + +14 + +When Jesus arrived at Peter’s house, He saw +15 +Peter’s mother-in-law sick in bed with a fever. +So He touched her hand, and the fever left her, + +16 +and she got up and began to serve Him. + +When evening came, many who were demon- +possessed were brought to Jesus, and He drove +17 +out the spirits with a word and healed all the sick. +This was to fulfill what was spoken through + +the prophet Isaiah: + + a + +“He took up our infirmities + +The Cost of Discipleship +(Luke 9:57–62 ; Luke 14:25–33 ; John 6:59–66) + +and carried our diseases.” + +18 + +b +When Jesus saw a large crowd around Him, He + +19 +gave orders to cross to the other side of the sea. + +And one of the scribes came to Him and said, + +20 +“Teacher, I will follow You wherever You go.” + +Jesus replied, “Foxes have dens and birds of +the air have nests, but the Son of Man has no +21 +place to lay His head.” + +29 + +“What do You want with us, Son of God?” they +shouted. “Have You come here to torture us be- +30 +fore the appointed time?” +31 + +In the distance a large herd of pigs was feeding. +So the demons begged Jesus, “If You drive us + +32 +out, send us into the herd of pigs.” + +“Go!” He told them. So they came out and went +into the pigs, and the whole herd rushed down +the steep bank into the sea and died in the +33 +waters. + +Those tending the pigs ran off into the town +34 +and reported all this, including the account of the +Then the whole town +demon-possessed men. +went out to meet Jesus. And when they saw Him, +Jesus Heals a Paralytic +they begged Him to leave their region. +(Mark 2:1–12 ; Luke 5:17–26) + +9 + + d + +2 +Jesus got into a boat, crossed over, and came +Just then some men +to His own town. +brought + to Him a paralytic lying on a mat. When +Jesus saw their faith, He said to the paralytic, +3 +“Take courage, son; your sins are forgiven.” + +Another of His disciples requested, “Lord, first + +22 +let me go and bury my father.” + +On seeing this, some of the scribes said to them- + + e +4 +selves, “This man is blaspheming!” + +But Jesus told him, “Follow Me, and let the + +Jesus Calms the Storm +dead bury their own dead.” +(Psalm 107:1–43 ; Mark 4:35–41 ; Luke 8:22–25) + +23 + +24 + +When He got into the boat, His disciples fol- +lowed Him. +Suddenly a violent storm came up +on the sea, so that the boat was engulfed by the +waves. But Jesus was sleeping. +The disciples +went and woke Him, saying, “Lord, save us! We +26 +are perishing!” + +25 + +“You of little faith,” Jesus replied, “why are you +so afraid?” Then He got up and rebuked the +27 +winds and the sea, and it was perfectly calm. + +The men were amazed and asked, “What kind +of man is this? Even the winds and the sea obey +The Demons and the Pigs +Him!” +(Mark 5:1–20 ; Luke 8:26–39) + +28 + +c + +6 + +But Jesus knew + + what they were thinking and +5 +said, “Why do you harbor evil in your hearts? +Which is easier: to say, ‘Your sins are forgiven,’ +But so that you may +or to say, ‘Get up and walk’? +know that the Son of Man has authority on earth +to forgive sins +” Then He said to the paralytic, +And +“Get up, pick up your mat, and go home.” +8 +the man got up and went home. + +7 + +. + +. + +. + +When the crowds saw this, they were filled with +awe and glorified God, who had given such au- +Jesus Calls Matthew +thority to men. +(Mark 2:13–17 ; Luke 5:27–32) + +9 + +As Jesus went on from there, He saw a man +named Matthew sitting at the tax booth. “Follow +Me,” He told him, and Matthew got up and fol- +10 +lowed Him. + +11 + +Later, as Jesus was dining at Matthew’s house, +many tax collectors and sinners came and ate +with Him and His disciples. +When the Phari- +sees saw this, they asked His disciples, “Why +does your Teacher eat with tax collectors and +sinners?” +e 4 + +Gergesenes + +c 28 + +saw +BYZ, TR, and GOC + +; other + +When Jesus arrived on the other side in +the region of the Gadarenes, + He was met by two +demon-possessed men coming from the tombs. +They were so violent that no one could pass that +a 17 +way. + +b 18 +Gerasenes + +And behold, they brought + +d 2 + +Isaiah 53:4 + +That is, the Sea of Galilee; Greek + +to the other side + +manuscripts + +Literally + +NA, BYZ, and TR + + 12 + +13 + + a + +On hearing this, Jesus said, “It is not the healthy +But go and +who need a doctor, but the sick. +learn what this means: ‘I desire mercy, not sacri- + For I have not come to call the righteous, +fice.’ +Questions about Fasting +” +but sinners. +(Mark 2:18–20 ; Luke 5:33–35) + +b + +14 + +c + +Then John’s disciples came to Jesus and asked, +“Why is it that we and the Pharisees fast so of- +15 +ten, + + but Your disciples do not fast?” + +Jesus replied, “How can the guests of the bride- +groom mourn while He is with them? But the +time will come when the bridegroom will be +The Patches and the Wineskins +taken from them; then they will fast. +(Mark 2:21–22 ; Luke 5:36–39) + +16 + +No one sews a patch of unshrunk cloth on an +old garment. For the patch will pull away from +17 +the garment, and a worse tear will result. + +Neither do men pour new wine into old wine- +skins. If they do, the skins will burst, the wine will +spill, and the wineskins will be ruined. Instead, +they pour new wine into new wineskins, and +The Healing Touch of Jesus +both are preserved.” +(Mark 5:21–43 ; Luke 8:40–56) + +18 + +While Jesus was saying these things, a syna- +gogue leader came and knelt before Him. “My +daughter has just died,” he said. “But come and +19 +place Your hand on her, and she will live.” + +20 + +So Jesus got up and went with him, along with +Suddenly a woman who had suf- +His disciples. +fered from bleeding for twelve years came up be- +21 +hind Him and touched the fringe of His cloak. +She said to herself, “If only I touch His cloak, I + +22 +will be healed.” + +Jesus turned and saw her. “Take courage, +daughter,” He said, “your faith has healed you.” +23 +And the woman was healed from that very hour. + +24 + +When Jesus entered the house of the syna- +gogue leader, He saw the flute players and the +noisy crowd. +“Go away,” He told them. “The girl +25 +is not dead, but asleep.” And they laughed at Him. + +26 + +After the crowd had been put outside, Jesus +went in and took the girl by the hand, and she got +up. +And the news about this spread through- +but sinners, to repentance +a 13 +out that region. +d 4 + +b 13 +Simon the Cananean + +e 4 + +Matthew 10:4 | 869 + +Jesus Heals the Blind and Mute +(Mark 7:31–37) + +27 + +As Jesus went on from there, two blind men +followed Him, crying out, “Have mercy on us, Son +28 +of David!” + +After Jesus had entered the house, the blind +men came to Him. “Do you believe that I am able +to do this?” He asked. +29 +“Yes, Lord,” they answered. + +30 + +Then He touched their eyes and said, “Accord- +ing to your faith will it be done to you.” +And +their eyes were opened. Jesus warned them +31 +sternly, “See that no one finds out about this!” +But they went out and spread the news about + +32 +Him throughout the land. + +33 + +As they were leaving, a demon-possessed man +And when +who was mute was brought to Jesus. +the demon had been driven out, the man began +to speak. The crowds were amazed and said, +34 +“Nothing like this has ever been seen in Israel!” + +But the Pharisees said, “It is by the prince of + +The Lord of the Harvest (Luke 10:1–12) +demons that He drives out demons.” +35 + +36 + +Jesus went through all the towns and villages, +teaching in their synagogues, preaching the gos- +pel of the kingdom, and healing every disease +When He saw the crowds, He +and sickness. +was moved with compassion for them, because +they were harassed and helpless, like sheep +37 +without a shepherd. + +38 + +Then He said to His disciples, “The harvest is +Ask the +plentiful, but the workers are few. +Lord of the harvest, therefore, to send out work- +The Twelve Apostles +ers into His harvest.” +(Mark 3:13–19 ; Luke 6:12–16) + +10 + +And calling His twelve disciples to Him, +Jesus gave them authority over unclean +spirits, so that they could drive them out and heal +2 +every disease and sickness. + +These are the names of the twelve apostles: first +Simon, called Peter, and his brother Andrew; +3 +James son of Zebedee, and his brother John; +Philip and Bartholomew; Thomas and Matthew +the tax collector; James son of Alphaeus, and +e + and Judas Iscar- +Thaddaeus; +iot, who betrayed Jesus. + +Simon the Zealot, +c 14 + +so often + +4 + +d + +Hosea 6:6 + +BYZ and TR + +; see Luke 5:32. + +NE and WH do not include + +. + +Greek + +Literally + +the one also having betrayed Him + + 870 | Matthew 10:5 + +The Ministry of the Twelve +(Mark 6:7–13 ; Luke 9:1–6) + +5 + +6 + +7 + +These twelve Jesus sent out with the following +instructions: “Do not go onto the road of the Gen- +Go ra- +tiles or enter any town of the Samaritans. +ther to the lost sheep of Israel. +As you go, preach +a +8 +this message: ‘The kingdom of heaven is near.’ +Heal the sick, raise the dead, cleanse the lepers, +drive out demons. Freely you have received; +9 +freely give. + +10 + +Do not take along any gold or silver or copper +Take no bag for the road, or sec- +in your belts. +ond tunic, or sandals, or staff; for the worker is +11 +worthy of his provisions. + + b + +c + +12 + +14 + +Whatever town or village you enter, find out + until +who is worthy there and stay at his house +13 +you move on. +As you enter the home, greet its +occupants. +If the home is worthy, let your +peace rest on it, but if it is not, let your peace re- +And if anyone will not welcome +turn to you. +you or heed your words, shake the dust off your +Truly I +feet when you leave that home or town. +tell you, it will be more bearable for Sodom and +Gomorrah on the day of judgment than for that +Sheep among Wolves (2 Timothy 1:3–12) +town. +16 + +15 + +17 + +Behold, I am sending you out like sheep among +wolves; therefore be as shrewd as snakes and as +But beware of men, for they +innocent as doves. +18 +will hand you over to their councils and flog you +On My account you will be +in their synagogues. +brought before governors and kings as witnesses +But when they +to them and to the Gentiles. +hand you over, do not worry about how to +respond or what to say. In that hour you will be +For it will not be you speak- +given what to say. +ing, but the Spirit of your Father speaking +21 +through you. + +19 + +20 + +24 + +25 +A disciple is not above his teacher, nor a +It is enough for a dis- +servant above his master. +ciple to be like his teacher, and a servant like his +master. If the head of the house has been called + how much more the members of his +Beelzebul, +Fear God Alone (Luke 12:4–7) +household! +26 + +d + +So do not be afraid of them. For there is noth- +ing concealed that will not be disclosed, and +27 +nothing hidden that will not be made known. +What I tell you in the dark, speak in the day- +light; what is whispered in your ear, proclaim +28 +from the housetops. + +Do not be afraid of those who kill the body but +cannot kill the soul. Instead, fear the One who can +29 +destroy both soul and body in hell. + +e + + f + + Yet +Are not two sparrows sold for a penny? +30 +not one of them will fall to the ground apart from +And even the very hairs +the will of your Father. +So do not be +of your head are all numbered. +Confessing Christ (Luke 12:8–12) +afraid; you are worth more than many sparrows. +32 + +31 + +33 + +Therefore everyone who confesses Me before +men, I will also confess him before My Father in +But whoever denies Me before men, I +heaven. +Not Peace but a Sword +will also deny him before My Father in heaven. +(Micah 7:1–6 ; Luke 12:49–53) + +34 + +35 + +Do not assume that I have come to bring peace +to the earth; I have not come to bring peace, but +For I have come to turn +a sword. + +‘a man against his father, + +a daughter against her mother, +a daughter-in-law against her + +36 + +mother-in-law. + +A man’s enemies will be the + + g + +37 + +members + +of his own household.’ + +22 + +Brother will betray brother to death, and a +father his child; children will rise against their +You will +parents and have them put to death. +be hated by everyone because of My name, but +23 +the one who perseveres to the end will be saved. + +Anyone who loves his father or mother more +than Me is not worthy of Me; anyone who loves +his son or daughter more than Me is not worthy +and anyone who does not take up his +of Me; +Who- +cross and follow Me is not worthy of Me. +ever finds his life will lose it, and whoever loses +his life for My sake will find it. +f 29 + was one afflicted with a skin disease. See Leviticus 13. + +When they persecute you in one town, flee to +the next. Truly I tell you, you will not reach all the +a 8 +towns of Israel before the Son of Man comes. +d 25 +A + +an assarion + +Beezeboul + +stay there + +Literally + +Gehenna + +greet it + +leper + +b 11 + +e 28 + +c 12 + +39 + +38 + +Beelzebub +g 36 + +Literally +; that is, a Roman copper coin worth + +WH + +; Vulgate +about 1/16 of a denarius + +Micah 7:6 + +Greek + +Greek + + The Reward of Service (2 Kings 4:8–17) + +14 + +Matthew 11:29 | 871 + +g + +prophesied until John. +15 +accept it, he is the Elijah who was to come. +16 + +And if you are willing to + +h + +He who has ears, + + let him hear. + +To what can I compare this generation? They +are like children sitting in the marketplaces and +17 +calling out to others: + +‘We played the flute for you, +and you did not dance; + +we sang a dirge, + +18 + +and you did not mourn.’ + +19 + +For John came neither eating nor drinking, and +The Son of Man +they say, ‘He has a demon!’ +came eating and drinking, and they say, ‘Look at +this glutton and drunkard, a friend of tax collec- +tors and sinners!’ But wisdom is vindicated by +Woe to the Unrepentant (Luke 10:13–16) +her actions.” +20 + +21 + +Then Jesus began to denounce the cities in +which most of His miracles had been performed, +because they did not repent. +“Woe to you, Cho- +razin! Woe to you, Bethsaida! For if the miracles +that were performed in you had been performed +in Tyre and Sidon, they would have repented +But I tell you, +long ago in sackcloth and ashes. +it will be more bearable for Tyre and Sidon on the +23 +day of judgment than for you. + +22 + +24 + +And you, Capernaum, will you be lifted up to +heaven? No, you will be brought down to Hades! +For if the miracles that were performed in you +had been performed in Sodom, it would have re- +But I tell you that it will be +mained to this day. +more bearable for Sodom on the day of judgment +Rest for the Weary (Luke 10:21–24) +than for you.” +25 + +At that time Jesus declared, “I praise You, Fa- +ther, Lord of heaven and earth, because You have +hidden these things from the wise and learned, +Yes, Fa- +and revealed them to little children. +27 +ther, for this was well-pleasing in Your sight. + +26 + +All things have been entrusted to Me by My Fa- +ther. No one knows the Son except the Father, +and no one knows the Father except the Son and +28 +those to whom the Son chooses to reveal Him. + +29 + +40 + +He who receives you receives Me, and he who +41 +receives Me receives the One who sent Me. +Whoever receives a prophet because he is a +prophet will receive a prophet’s reward, and +whoever receives a righteous man because he is +a righteous man will receive a righteous man’s +And if anyone gives even a cup of cold +reward. +water to one of these little ones because he is +My disciple, truly I tell you, he will never lose his +John’s Inquiry (Luke 7:18–23) +reward.” + +42 + +11 + +After Jesus had finished instructing His +twelve disciples, He went on from there + +a + +2 +to teach and preach in their cities. + + b + +3 + +Meanwhile John heard in prison about the +works of Christ, and he sent his disciples +to ask +Him, “Are You the One who was to come, or +4 +should we look for someone else?” + +5 + + c + +Jesus replied, “Go back and report to John what +The blind receive sight, the +you hear and see: +lame walk, the lepers + are cleansed, the deaf +6 +hear, the dead are raised, and the good news is +d +Blessed is the one who +preached to the poor. +Jesus Testifies about John +does not fall away on account of Me. +(Malachi 3:1–5 ; Luke 7:24–35) + +” + +7 + +8 + +As John’s disciples were leaving, Jesus began to +speak to the crowds about John: “What did you +go out into the wilderness to see? A reed swaying +Otherwise, what did you go out to +in the wind? +see? A man dressed in fine clothes? Look, those +9 +who wear fine clothing are found in kings’ pal- +What then did you go out to see? A +aces. +10 +prophet? Yes, I tell you, and more than a prophet. + +This is the one about whom it is written: + +‘Behold, I will send My messenger ahead + e + +of You, + +11 + +who will prepare Your way + +before You.’ + +12 + +Truly I tell you, among those born of women +there has risen no one greater than John the Bap- +tist. Yet even the least in the kingdom of heaven +From the days of John the +is greater than he. +Baptist until now, the kingdom of heaven has +13 + and the violent lay +been subject to violence, +b 2 +a 1 +For all the Prophets and the Law +claim to it. +who is not offended by Me +BYZ and TR +ears to hear + +That is, in the towns of Galilee + +d 6 + +f + +h 15 +g 14 +disease. See Leviticus 13. +See Malachi 4:5. + +Or + +BYZ and TR + +Come to Me, all you who are weary and bur- +dened, and I will give you rest. +Take My yoke +c 5 +he sent two of his disciples +upon you and learn from Me, for I am gentle and +f 12 +e 10 + +has been forcefully advancing + +leper + +Malachi 3:1 + +A +Or + + was one afflicted with a skin + + 872 | Matthew 11:30 + +30 + +humble in heart, and you will find rest for your +For My yoke is easy and My burden is +souls. +The Lord of the Sabbath +light.” +(1 Samuel 21:1–7 ; Mark 2:23–28 ; Luke 6:1–5) + +12 + +2 + +At that time Jesus went through the +grainfields on the Sabbath. His disciples +were hungry and began to pick the heads of grain + the Pharisees saw this, they +and eat them. +said to Him, “Look, Your disciples are doing what +3 +is unlawful on the Sabbath.” + +When + +Jesus replied, “Have you not read what David +4 +did when he and his companions were hungry? +He entered the house of God, and he and his + which +companions ate the consecrated bread, +was not lawful for them to eat, but only for the +5 +priests. + +a + +Or haven’t you read in the Law that on the Sab- +6 +bath the priests in the temple break the Sabbath +and yet are innocent? +But I tell you that One +7 +greater than the temple is here. + + b + +If only you had known the meaning of ‘I desire +8 + you would not have con- +For the Son of Man is + +mercy, not sacrifice,’ +demned the innocent. +Jesus Heals on the Sabbath +Lord of the Sabbath.” +(Mark 3:1–6 ; Luke 6:6–11) + +9 + +10 + +Moving on from there, Jesus entered their syn- +and a man with a withered hand was +agogue, +there. In order to accuse Jesus, they asked Him, +11 +“Is it lawful to heal on the Sabbath?” + +He replied, “If one of you has a sheep and it +12 +falls into a pit on the Sabbath, will he not take +How much more valu- +hold of it and lift it out? +able is a man than a sheep! Therefore it is lawful +13 +to do good on the Sabbath.” + +14 + +Then Jesus said to the man, “Stretch out your +hand.” So he stretched it out, and it was restored +But the Pharisees +to full use, just like the other. +God’s Chosen Servant (Isaiah 42:1–9) +went out and plotted how they might kill Jesus. +15 + +16 + +Aware of this, Jesus withdrew from that place. +Large crowds followed Him, and He healed them +17 +warning them not to make Him known. +all, +This was to fulfill what was spoken through + +b 7 + +c 21 + +the Bread of the Presence + +a 4 +the prophet Isaiah: +Beelzebub +Or + +; also in verse 27 + +18 + +“Here is My Servant, + +whom I have chosen, + +My beloved, + +in whom My soul delights. + +I will put My Spirit on Him, + +19 + +and He will proclaim justice to the + +nations. + +20 + +He will not quarrel or cry out; + +no one will hear His voice in the streets. + +A bruised reed He will not break, + +and a smoldering wick He will not + +21 + +till He leads justice to victory. + +extinguish, + c +In His name the nations will put + +A House Divided (Mk. 3:20–27 ; Lk. 11:14–23) + +their hope.” + +22 + +Then a demon-possessed man who was blind +and mute was brought to Jesus, and He healed +The +the man so that he could speak and see. +crowds were astounded and asked, “Could this +24 +be the Son of David?” + +23 + +d + +But when the Pharisees heard this, they said, + the prince of demons, does + +“Only by Beelzebul, +25 +this man drive out demons.” + +26 + +Knowing their thoughts, Jesus said to them, +“Every kingdom divided against itself will be laid +waste, and every city or household divided +If Satan drives out +against itself will not stand. +27 +Satan, he is divided against himself. How then +And if I drive out de- +can his kingdom stand? +mons by Beelzebul, by whom do your sons drive +28 +them out? So then, they will be your judges. +But if I drive out demons by the Spirit of God, + +29 +then the kingdom of God has come upon you. + +Or again, how can anyone enter a strong man’s +house and steal his possessions, unless he first +ties up the strong man? Then he can plunder his +30 +house. + +He who is not with Me is against Me, and he + +The Unpardonable Sin (Mark 3:28–30) +who does not gather with Me scatters. +31 + +32 + +Therefore I tell you, every sin and blasphemy +will be forgiven men, but the blasphemy against +Whoever speaks +the Spirit will not be forgiven. +a word against the Son of Man will be forgiven, +but whoever speaks against the Holy Spirit will +not be forgiven, either in this age or in the one to +come. + +Beezeboul + +d 24 + +Hosea 6:6 + +Isaiah 42:1–4 (see also LXX) + +WH + +; Vulgate + + Good and Bad Fruit (Luke 6:43–45) + +48 + +Matthew 13:14 | 873 + +33 + +34 + +Make a tree good and its fruit will be good, or +make a tree bad and its fruit will be bad, for a tree +You brood of vipers, how +is known by its fruit. +can you who are evil say anything good? For out +35 +of the overflow of the heart the mouth speaks. +The good man brings good things out of his +good store of treasure, and the evil man brings +But +evil things out of his evil store of treasure. +I tell you that men will give an account on the day +of judgment for every careless word they have +For by your words you will be acquit- +spoken. +The Sign of Jonah (Jonah 3:1–10 ; Lk. 11:29–32) +ted, and by your words you will be condemned.” +38 + +36 + +37 + +Then some of the scribes and Pharisees said to +39 +Him, “Teacher, we want to see a sign from You.” + +40 + +Jesus replied, “A wicked and adulterous gener- +ation demands a sign, but none will be given it +For as Jo- +except the sign of the prophet Jonah. +nah was three days and three nights in the belly +of the great fish, so the Son of Man will be three +41 +days and three nights in the heart of the earth. + +42 + +The men of Nineveh will stand at the judgment +with this generation and condemn it; for they re- +pented at the preaching of Jonah, and now One +The Queen of the +greater than Jonah is here. +South will rise at the judgment with this genera- +tion and condemn it; for she came from the ends +of the earth to hear the wisdom of Solomon, and +An Unclean Spirit Returns (Luke 11:24–26) +now One greater than Solomon is here. +43 + +44 + +When an unclean spirit comes out of a man, it +passes through arid places seeking rest and does +Then it says, ‘I will return to the +not find it. +house I left.’ On its return, it finds the house va- +cant, swept clean, and put in order. +Then it +goes and brings with it seven other spirits more +wicked than itself, and they go in and dwell there. +And the final plight of that man is worse than the +Jesus’ Mother and Brothers +first. So will it be with this wicked generation.” +(Mark 3:31–35 ; Luke 8:19–21) + +45 + +46 + +49 + +But Jesus replied, “Who is My mother, and who +Pointing to His disciples, He +are My brothers?” +50 +said, “Here are My mother and My brothers. +For whoever does the will of My Father in + +The Parable of the Sower +heaven is My brother and sister and mother.” +(Mark 4:1–9 ; Luke 8:4–8) + +13 + +2 + +That same day Jesus went out of the +house and sat by the sea. +Such large +crowds gathered around Him that He got into a +boat and sat down, while all the people stood on +3 +the shore. + +4 + +And He told them many things in parables, say- +ing, “A farmer went out to sow his seed. +And as +he was sowing, some seed fell along the path, and +5 +the birds came and devoured it. + +6 + +Some fell on rocky ground, where it did not +have much soil. It sprang up quickly because the +But when the sun rose, the +soil was shallow. +seedlings were scorched, and they withered be- +7 +cause they had no root. + +Other seed fell among thorns, which grew up + +8 +and choked the seedlings. + +Still other seed fell on good soil and produced a + +b + +9 +crop—a hundredfold, sixtyfold, or thirtyfold. +The Purpose of Jesus’ Parables + let him hear.” +(Isaiah 6:1–13 ; Mark 4:10–12 ; Luke 8:9–10) + +He who has ears, + +10 + +Then the disciples came to Jesus and asked, + +11 +“Why do You speak to the people in parables?” + +12 + +He replied, “The knowledge of the mysteries of +the kingdom of heaven has been given to you, +Whoever has will be given +but not to them. +more, and he will have an abundance. Whoever +does not have, even what he has will be taken +This is why I speak to them in +away from him. +parables: + +13 + +‘Though seeing, they do not see; + + c + +14 + +though hearing, they do not hear or + +understand.’ + +In them the prophecy of Isaiah is fulfilled: + +47 + +While Jesus was still speaking to the crowds, +His mother and brothers stood outside, wanting +to speak to Him. +Someone told Him, “Look, +Your mother and brothers are standing outside, +wanting to speak to You.” +a 47 + +b 9 + + a + +ears to hear + +‘You will be ever hearing but never + +understanding; + +you will be ever seeing but never + +perceiving. +c 13 + +WH does not include verse 47. +42:20, Jeremiah 5:21, and Ezekiel 12:2. + +BYZ and TR + +; also in verse 43 + +See Deuteronomy 29:4, Isaiah + + 874 | Matthew 13:15 + +15 + +29 + +For this people’s heart has grown callous; + +they hardly hear with their ears, +and they have closed their eyes. + +Otherwise they might see with their eyes, + +hear with their ears, + a +understand with their hearts, +and turn, and I would heal them.’ +17 + +16 + +But blessed are your eyes because they see, +and your ears because they hear. +For truly I tell +you, many prophets and righteous men longed to +see what you see but did not see it, and to hear +The Parable of the Sower Explained +what you hear but did not hear it. +(Mark 4:13–20 ; Luke 8:11–15) + +18 +19 + +Consider, then, the parable of the sower: +When anyone hears the message of the king- +dom but does not understand it, the evil one +comes and snatches away what was sown in his +20 +heart. This is the seed sown + + along the path. + + b + +The seed sown on rocky ground is the one who +21 +hears the word and at once receives it with joy. +But since he has no root, he remains for only a +season. When trouble or persecution comes be- +22 +cause of the word, he quickly falls away. + +The seed sown among the thorns is the one +who hears the word, but the worries of this life +and the deceitfulness of wealth choke the word, +23 +and it becomes unfruitful. + +But the seed sown on good soil is the one who +hears the word and understands it. He indeed +bears fruit and produces a crop—a hundredfold, +The Parable of the Weeds +sixtyfold, or thirtyfold.” +(Ezekiel 17:1–10) + +24 + +25 + +Jesus put before them another parable: “The +kingdom of heaven is like a man who sowed good +seed in his field. +But while everyone was +asleep, his enemy came and sowed weeds among +When the wheat +the wheat, and slipped away. +sprouted and bore grain, then the weeds also +27 +appeared. + +26 + +The owner’s servants came to him and said, +‘Sir, didn’t you sow good seed in your field? +28 +Where then did the weeds come from?’ + +‘An enemy did this,’ he replied. + +30 + +‘No,’ he said, ‘if you pull the weeds now, you +Let both +might uproot the wheat with them. +grow together until the harvest. At that time I +will tell the harvesters: First collect the weeds +and tie them in bundles to be burned; then gather +The Parable of the Mustard Seed +” +the wheat into my barn.’ +(Mark 4:30–34 ; Luke 13:18–19) + +31 + +32 + +He put before them another parable: “The +kingdom of heaven is like a mustard seed that a +Although it +man took and planted in his field. +is the smallest of all seeds, yet it grows into the +largest of garden plants and becomes a tree, so +that the birds of the air come and nest in its +The Parable of the Leaven (Luke 13:20–21) +branches.” +33 + +He told them still another parable: “The king- +dom of heaven is like leaven that a woman took +and mixed into three measures of flour, until all +I Will Open My Mouth in Parables +of it was leavened.” +(Psalm 78:1–72) + +34 + +35 + +Jesus spoke all these things to the crowds in +parables. He did not tell them anything without +using a parable. +So was fulfilled what was spo- +ken through the prophet: + +“I will open My mouth in parables; + + c + +I will utter things hidden since the + +The Parable of the Weeds Explained +(Zephaniah 1:1–6) + +foundation of the world.” + +36 + +Then Jesus dismissed the crowds and went +into the house. His disciples came to Him and +said, “Explain to us the parable of the weeds in +37 +the field.” + +38 + +He replied, “The One who sows the good seed +The field is the world, and +is the Son of Man. +the good seed represents the sons of the king- +39 +dom. The weeds are the sons of the evil one, +and the enemy who sows them is the devil. The +harvest is the end of the age, and the harvesters +40 +are angels. + +41 + +As the weeds are collected and burned in the +The Son +fire, so will it be at the end of the age. +of Man will send out His angels, and they will +weed out of His kingdom every cause of sin +And they will +and all who practice lawlessness. + +c 35 + +42 + +So the servants asked him, ‘Do you want us to go +a 15 +and pull them up?’ + +the one sown + +b 19 + +of the world +Literally + +Isaiah 6:9–10 (see also LXX) +LXX); SBL, NE, and WH do not include + +; also in verses 20, 22, and 23 + +Psalm 78:2 (see also + +. + + 43 + +throw them into the fiery furnace, where there +Then +will be weeping and gnashing of teeth. +a +the righteous will shine like the sun in the king- +dom of their Father. +The Parables of the Treasure and the Pearl +He who has ears, let him hear. +44 + +The kingdom of heaven is like treasure hidden +in a field. When a man found it, he hid it again, +and in his joy he went and sold all he had and +45 +bought that field. + +46 + +Again, the kingdom of heaven is like a mer- +chant in search of fine pearls. +When he found +one very precious pearl, he went away and sold +The Parable of the Net +all he had and bought it. +47 + +48 + +Once again, the kingdom of heaven is like a net +that was cast into the sea and caught all kinds of +fish. +When it was full, the men pulled it ashore. +Then they sat down and sorted the good fish into +49 +containers, but threw the bad away. + +50 + +So will it be at the end of the age: The angels +will come and separate the wicked from the +righteous +and throw them into the fiery fur- +nace, where there will be weeping and gnashing +51 +of teeth. + +Have you understood all these things?” + +52 +“Yes,” they answered. + +Then He told them, “For this reason, every +scribe who has been discipled in the kingdom of +heaven is like a homeowner who brings out of his +The Rejection at Nazareth +storeroom new treasures as well as old.” +(Mark 6:1–6 ; Luke 4:16–30) + +53 + +54 + +55 + +When Jesus had finished these parables, He +withdrew from that place. +Coming to His +hometown, He taught the people in their syna- +gogue, and they were astonished. “Where did +this man get such wisdom and miraculous pow- +ers?” they asked. +“Isn’t this the carpenter’s +son? Isn’t His mother’s name Mary, and aren’t His +56 +brothers James, Joseph, + Simon, and Judas? +Aren’t all His sisters with us as well? Where +And + +then did this man get all these things?” +they took offense at Him. + +57 + +b + +58 + +But Jesus said to them, “Only in his hometown +and in his own household is a prophet without +honor.” +And He did not do many miracles +there, because of their unbelief. +a 43 + +Joses + +b 55 + +See Daniel 12:3. + +BYZ and TR + +; see Mark 6:3. + +Matthew 14:17 | 875 + +The Beheading of John +(Mark 6:14–29 ; Luke 9:7–9) + +14 + +2 +At that time Herod the tetrarch heard the +and said to his serv- +reports about Jesus +ants, “This is John the Baptist; he has risen from +the dead! That is why miraculous powers are at +3 +work in him.” + +Now Herod had arrested John and bound him +4 +and put him in prison on account of Herodias, his +brother Philip’s wife, +because John had been +5 +telling him, “It is not lawful for you to have her.” +Although Herod wanted to kill John, he was +afraid of the people, because they regarded John +6 +as a prophet. + +On Herod’s birthday, however, the daughter of +7 +Herodias danced before them and pleased Herod +so much that he promised with an oath to give + +8 +to her whatever she asked. + +Prompted by her mother, she said, “Give me + +9 +here on a platter the head of John the Baptist.” + +10 + +The king was grieved, but because of his oaths +and his guests, he ordered that her wish be +granted +and sent to have John beheaded in the +11 +prison. + +John’s head was brought in on a platter and +presented to the girl, who carried it to her +12 +mother. + +Then John’s disciples came and took his body +The Feeding of the Five Thousand +and buried it. And they went and informed Jesus. +(Mark 6:30–44 ; Luke 9:10–17 ; John 6:1–15) + +13 + +14 + +When Jesus heard about John, He withdrew by +boat privately to a solitary place. But the crowds +found out about it and followed Him on foot from +When He stepped ashore and saw a +the towns. +large crowd, He had compassion on them and +15 +healed their sick. + +When evening came, the disciples came to Him +and said, “This is a desolate place, and the hour is +already late. Dismiss the crowds so they can go +16 +to the villages and buy themselves some food.” + +“They do not need to go away,” Jesus replied. + +17 +“You give them something to eat.” + +“We have here only five loaves of bread and + +two fish,” they answered. + + 876 | Matthew 14:18 + +18 + +19 + +“Bring them here to Me,” Jesus said. + +And He +directed the crowds to sit down on the grass. +Taking the five loaves and the two fish and look- +ing up to heaven, He spoke a blessing. Then He +broke the loaves and gave them to the disciples, +20 +and the disciples gave them to the people. + +21 + +They all ate and were satisfied, and the disci- +ples picked up twelve basketfuls of broken +pieces that were left over. +About five thousand +Jesus Walks on Water +men were fed, besides women and children. +(Mark 6:45–52 ; John 6:16–21) + +22 + +23 + +Immediately Jesus made the disciples get into +the boat and go on ahead of Him to the other side, +while He dismissed the crowds. +After He had +dismissed them, He went up on the mountain by + a +Himself to pray. When evening came, He was + from +there alone, +land, buffeted by the waves because the wind +25 +was against it. + +but the boat was already far + +24 + +b + +26 + +During the fourth watch of the night, + + Jesus +When +went out to them, walking on the sea. +the disciples saw Him walking on the sea, they +were terrified. “It’s a ghost!” they said, and cried +27 +out in fear. + +But Jesus spoke up at once: “Take courage! It is + +28 +I. Do not be afraid.” + +“Lord, if it is You,” Peter replied, “command me + +29 +to come to You on the water.” + +“Come,” said Jesus. + +30 + +Then Peter got down out of the boat, walked on +the water, and came toward Jesus. +But when + he was afraid +he saw the strength of the wind, +31 +and, beginning to sink, cried out, “Lord, save me!” + +c + +Immediately Jesus reached out His hand and +took hold of Peter. “You of little faith,” He said, +32 +“why did you doubt?” + +33 + +36 + +surrounding region. People brought all the sick +and begged Him just to let them touch +to Him +the fringe of His cloak. And all who touched Him +The Tradition of the Elders (Mark 7:1–13) +were healed. + +15 + +2 + +Then some Pharisees and scribes came +to Jesus from Jerusalem and asked, +“Why do Your disciples break the tradition of +the elders? They do not wash their hands before +3 +they eat.” + +4 + + e + +5 + +Jesus replied, “And why do you break the com- + d +mand of God for the sake of your tradition? +For +God said, ‘Honor your father and mother’ + and +‘Anyone who curses his father or mother must be +But you say that if anyone says to +put to death.’ +his father or mother, ‘Whatever you would have +f +received from me is a gift devoted to God,’ +he +need not honor his father or mother with it. +Thus you nullify the word of God for the sake of +You hypocrites! Isaiah prophe- +your tradition. +8 +sied correctly about you: + +7 + +6 + +9 + +‘These people honor Me with their lips, +but their hearts are far from Me. + +They worship Me in vain; + + g + +they teach as doctrine the precepts + +What Defiles a Man (Mark 7:14–23) +” + +of men.’ + +10 + +11 + +Jesus called the crowd to Him and said, “Listen +A man is not defiled by what + +and understand. +12 +enters his mouth, but by what comes out of it.” + +Then the disciples came to Him and said, “Are +You aware that the Pharisees were offended +13 +when they heard this?” + +h + +14 + +But Jesus replied, “Every plant that My heav- +enly Father has not planted will be pulled up by +Disregard them! They are blind +its roots. +guides. + If a blind man leads a blind man, both +15 +will fall into a pit.” +16 +17 + +Peter said to Him, “Explain this parable to us.” + +And when they had climbed back into the boat, +the wind died down. +Then those who were in +the boat worshiped Him, saying, “Truly You are +Jesus Heals at Gennesaret (Mark 6:53–56) +the Son of God!” +34 + +When they had crossed over, they landed +And when the men of that +at Gennesaret. +a 24 +place recognized Jesus, they sent word to all the +c 30 +e 4 + +when he saw the strong wind + +many stadia + +Greek +Literally +Exodus 21:17; Leviticus 20:9 + +; a stadion was about 607 feet or 185 meters +; NE and WH do not include +g 9 + +f 6 +or mother + +18 + +“Do you still not understand?” Jesus asked. +“Do you not yet realize that whatever enters +the mouth goes into the stomach and then is +eliminated? +But the things that come out of the +mouth come from the heart, and these things de- +For out of the heart come evil +file a man. +thoughts, murder, adultery, sexual immorality, +d 4 +That is, between three and six in the morning +he need not honor his father or mother +. +blind guides of the blind +h 14 +NE and TR (see also Mark 7:12); literally +Isaiah 29:13 (see also LXX) + +Exodus 20:12; Deuteronomy 5:16 + +b 25 +strong + +; SBL, + +. + +Or + +19 + +NA, WH, and BYZ do not include + +35 + + 20 + +35 + +Matthew 16:12 | 877 + +These are +theft, false testimony, and slander. +what defile a man, but eating with unwashed +The Faith of the Canaanite Woman +hands does not defile him.” +(Mark 7:24–30) + +21 + +22 + +Leaving that place, Jesus withdrew to the dis- +And a Canaanite +trict of Tyre and Sidon. +woman from that region came to Him, crying out, +“Lord, Son of David, have mercy on me! My +23 +daughter is miserably possessed by a demon.” + +But Jesus did not answer a word. So His disci- +ples came and urged Him, “Send her away, for +24 +she keeps crying out after us.” + +He answered, “I was sent only to the lost sheep + +25 +of the house of Israel.” + +The woman came and knelt before Him. “Lord, + +26 +help me!” she said. + +But Jesus replied, “It is not right to take the + + a +27 +children’s bread and toss it to the dogs.” + +“Yes, Lord,” she said, “even the dogs +28 +crumbs that fall from their master’s table.” + + eat the + +“O woman,” Jesus answered, “your faith is +great! Let it be done for you as you desire.” And +The Feeding of the Four Thousand +her daughter was healed from that very hour. +(2 Kings 4:42–44 ; Mark 8:1–10) + +29 + +30 + +Moving on from there, Jesus went along the +Sea of Galilee. Then He went up on a mountain +Large crowds came to Him, +and sat down. +bringing the lame, the blind, the crippled, the +mute, and many others, and laid them at His feet, +and He healed them. +The crowd was amazed +when they saw the mute speaking, the crippled +restored, the lame walking, and the blind seeing. +32 +And they glorified the God of Israel. + +31 + +Then Jesus called His disciples to Him and said, +“I have compassion for this crowd, because they +have already been with Me three days and have +nothing to eat. I do not want to send them away +33 +hungry, or they may faint along the way.” + +The disciples replied, “Where in this desolate +place could we find enough bread to feed such a +34 +large crowd?” + +“How many loaves do you have?” Jesus asked. + +a 27 +“Seven,” they replied, “and a few small fish.” + +puppies + +b 3 + +36 + +And He instructed the crowd to sit down on +Taking the seven loaves and the +the ground. +fish, He gave thanks and broke them. Then He +gave them to the disciples, and the disciples gave +37 +them to the people. + +38 + +They all ate and were satisfied, and the disci- +ples picked up seven basketfuls of broken pieces +A total of four thousand +that were left over. +39 +men were fed, besides women and children. + +After Jesus had dismissed the crowds, He got +The Demand for a Sign +into the boat and went to the region of Magadan. +(Mark 8:11–13 ; Luke 12:54–56) + +16 + +Then the Pharisees and Sadducees came +and tested Jesus by asking Him to show + +2 +them a sign from heaven. + +3 + +b + +4 + +But He replied, “When evening comes, you say, +‘The weather will be fair, for the sky is red,’ +and +in the morning, ‘Today it will be stormy, for the +sky is red and overcast.’ You know how to inter- +pret the appearance of the sky, but not the signs +A wicked and adulterous genera- +of the times. +tion demands a sign, but none will be given it +except the sign of Jonah.” Then He left them and +The Leaven of the Pharisees and Sadducees +went away. +(Mark 8:14–21 ; Luke 12:1–3) + +5 + +6 + +When they crossed to the other side, the disci- +“Watch out!” Jesus +ples forgot to take bread. +told them. “Beware of the leaven of the Pharisees +7 +and Sadducees.” + +They discussed this among themselves and con- +cluded, “It is because we did not bring any +8 +bread.” + +9 + +Aware of their conversation, Jesus said, “You of +little faith, why are you debating among your- +Do you still not +selves about having no bread? +understand? Do you not remember the five +10 +loaves for the five thousand, and how many bas- +ketfuls you gathered? +Or the seven loaves for +11 +the four thousand, and how many basketfuls you +How do you not understand that I +gathered? +was not telling you about bread? But beware of +12 +the leaven of the Pharisees and Sadducees.” + +Or + +Several manuscripts do not include + + from verses 2 and 3. + +Then they understood that He was not telling +them to beware of the leaven used in bread, but +of the teaching of the Pharisees and Sadducees. + +When evening comes . . . of the times. + + 878 | Matthew 16:13 + +Peter’s Confession of Christ +(Mark 8:27–30 ; Luke 9:18–20 ; John 6:67–71) + +28 + +13 + +When Jesus came to the region of Caesarea +Philippi, He questioned His disciples: “Who do +14 +people say the Son of Man is?” + +They replied, + + “Some say John the Baptist; oth- +ers say Elijah; and still others, Jeremiah or one of +15 +the prophets.” + +“But what about you?” Jesus asked. “Who do + +16 +you say I am?” + +Simon Peter answered, “You are the Christ, the + +17 +Son of the living God.” + + a + +18 + +Jesus replied, “Blessed are you, Simon son of +Jonah! + For this was not revealed to you by flesh +And I +and blood, but by My Father in heaven. +tell you that you are Peter, and on this rock I will +build My church, and the gates of Hades will not +prevail against it. +I will give you the keys of the +kingdom of heaven. Whatever you bind on earth +will be bound in heaven, and whatever you loose +20 +on earth will be loosed in heaven.” + +19 + +Then He admonished the disciples not to tell + +Christ’s Passion Foretold +anyone that He was the Christ. +(Mark 8:31–33 ; Luke 9:21–22) + +21 + + b + +From that time on Jesus + + began to show His +disciples that He must go to Jerusalem and suffer +many things at the hands of the elders, chief +priests, and scribes, and that He must be killed +22 +and on the third day be raised to life. + +Peter took Him aside and began to rebuke Him. +“Far be it from You, Lord!” he said. “This shall +23 +never happen to You!” + +But Jesus turned and said to Peter, “Get behind +Me, Satan! You are a stumbling block to Me. For +you do not have in mind the things of God, but the +Take Up Your Cross +things of men.” +(Mark 8:34–38 ; Luke 9:23–27) + +24 + +25 + +26 + +Then Jesus told His disciples, “If anyone wants +to come after Me, he must deny himself and take +up his cross and follow Me. +For whoever wants +to save his life will lose it, but whoever loses his +life for My sake will find it. +What will it profit a +man if he gains the whole world, yet forfeits his +soul? Or what can a man give in exchange for +his soul? +For the Son of Man will come in His +Father’s glory with His angels, and then He will +Jesus Christ +a 17 +repay each one according to what he has done. + +Simon Bar-Jonah + +b 21 + +27 + +Truly I tell you, some who are standing here +will not taste death before they see the Son of +The Transfiguration +Man coming in His kingdom.” +(Mark 9:1–13 ; Luke 9:28–36 ; 2 Peter 1:16–21) + +17 + +After six days Jesus took with Him Peter, +James, and John the brother of James, +2 +and led them up a high mountain by themselves. +There He was transfigured before them. His +face shone like the sun, and His clothes became +3 +as white as the light. + +4 + +Suddenly Moses and Elijah appeared before +them, talking with Jesus. +Peter said to Jesus, + c +“Lord, it is good for us to be here. If You wish, I +—one for You, one for +will put up three shelters +5 +Moses, and one for Elijah.” + +d + +While Peter was still speaking, a bright cloud +enveloped them, and a voice from the cloud said, +“This is My beloved Son, in whom I am well +When the disciples +pleased. +7 +heard this, they fell facedown in terror. + + Listen to Him!” + +6 + +8 + +Then Jesus came over and touched them. “Get +And when they + +up,” He said. “Do not be afraid.” +9 +looked up, they saw no one except Jesus. + +As they were coming down the mountain, Jesus +commanded them, “Do not tell anyone about this +vision until the Son of Man has been raised from +10 +the dead.” + +The disciples asked Him, “Why then do the + +11 +scribes say that Elijah must come first?” + +12 + +Jesus replied, “Elijah does indeed come, and he +But I tell you that Elijah +will restore all things. +has already come, and they did not recognize +him, but have done to him whatever they wished. +In the same way, the Son of Man will suffer at +13 +their hands.” + +Then the disciples understood that He was + +The Boy with a Demon +speaking to them about John the Baptist. +(Mark 9:14–29 ; Luke 9:37–42) + +14 + +15 + +When they came to the crowd, a man came up +“Lord, have +to Jesus and knelt before Him. +mercy on my son,” he said. “He has seizures and +is suffering terribly. He often falls into the fire or +into the water. +I brought him to Your disciples, +but they could not heal him.” + +16 + +c 4 + +three tabernacles + +d 5 + +Greek + +NE and WH + +Or + +Cited in 2 Peter 1:17 + + 17 + +2 +3 + +Matthew 18:17 | 879 + +18 + +“O unbelieving and perverse generation!” Je- +sus replied. “How long must I remain with you? +How long must I put up with you? Bring the boy +Then Jesus rebuked the demon, +here to Me.” +and it came out of the boy, and he was healed +The Power of Faith (Luke 17:5–10) +from that moment. +19 + +Afterward the + + disciples came to Jesus pri- +20 +vately and asked, “Why couldn’t we drive it out?” + +“Because you have so little faith,” He an- +swered. “For truly I tell you, if you have faith the +size of a mustard seed, you can say to this moun- +tain, ‘Move from here to there,’ and it will move. +The Second Prediction of the Passion +Nothing will be impossible for you.” +(Mark 9:30–32 ; Luke 9:43–45) + + a + +22 + +23 + +When they gathered together in Galilee, Jesus +told them, “The Son of Man is about to be deliv- +ered into the hands of men. +They will kill Him, +and on the third day He will be raised to life.” And +The Temple Tax +the disciples were deeply grieved. +24 + + b + +After they had arrived in Capernaum, the +collectors of the two-drachma tax + came to Peter +and asked, “Does your Teacher pay the two +25 +drachmas?” + +“Yes,” he answered. + +When Peter entered the house, Jesus preempted +him. “What do you think, Simon?” He asked. +“From whom do the kings of the earth collect +customs and taxes: from their own sons, or from +26 +others?” + +“From others,” Peter answered. + +27 +“Then the sons are exempt,” Jesus said to him. +“But so that we may not offend them, go to the +sea, cast a hook, and take the first fish you catch. +When you open its mouth, you will find a four- +drachma coin. + Take it and give it to them for My +The Greatest in the Kingdom +tax and yours.” +(Mark 9:33–41 ; Luke 9:46–50) + +c + +4 + +Jesus invited a little child to stand among them. +“Truly I tell you,” He said, “unless you change +and become like little children, you will never +Therefore, who- +enter the kingdom of heaven. +ever humbles himself like this little child is the +And who- +greatest in the kingdom of heaven. +ever welcomes a little child like this in My name +Temptations and Trespasses +welcomes Me. +(Mark 9:42–48 ; Luke 17:1–4) + +5 + +6 + +But if anyone causes one of these little ones who +believe in Me to stumble, it would be better for +him to have a large millstone hung around his +7 +neck and to be drowned in the depths of the sea. + +Woe to the world for the causes of sin. These +stumbling blocks must come, but woe to the man +8 +through whom they come! + +If your hand or your foot causes you to sin, cut +it off and throw it away. It is better for you to en- +ter life crippled or lame than to have two hands +9 +and two feet and be thrown into the eternal fire. +And if your eye causes you to sin, gouge it out +and throw it away. It is better for you to enter life +with one eye than to have two eyes and be +The Parable of the Lost Sheep (Luke 15:1–7) +thrown into the fire of hell. +10 + +d + +See that you do not look down on any of these +little ones. For I tell you that their angels in +heaven always see the face of My Father in +12 +heaven. + +e + +13 + +What do you think? If a man has a hundred +sheep and one of them goes astray, will he not +leave the ninety-nine on the hills and go out to +And if he finds +search for the one that is lost? +it, truly I tell you, he rejoices more over that one +sheep than over the ninety-nine that did not go +In the same way, your Father in heaven +astray. +is not willing that any of these little ones should +A Brother Who Sins (Deuteronomy 19:15–21) +perish. +15 + +14 + +f + +18 + +At that time the disciples came to Jesus +and asked, “Who then is the greatest in + +a 20 +the kingdom of heaven?” +didrachma +BYZ and TR include +of fire +f 15 + +; twice in this verse + +the Gehenna of fire + + c 27 + +a stater + +e 10 +against you + +Greek + +g 16 + +21 But this kind does not come out except by prayer and fasting + +If your brother sins against you, + + go and con- +16 +front him privately. If he listens to you, you have +But if he will not listen, +won your brother over. +take one or two others along, so that ‘every mat- +17 +ter may be established by the testimony of two +the +If he refuses to listen to +or three witnesses.’ +the hell + +b 24 + + g + +11 For the Son of Man came to save the lost +; that is, a silver coin worth approximately one shekel + +; see Mark 9:29. + +d 9 +Greek +Or + +; Greek + +BYZ and TR include + +NE and WH do not include + +. + +Deuteronomy 19:15 + +; see Luke 19:10. + + 880 | Matthew 18:18 + +32 + +them, tell it to the church. And if he refuses to lis- + church, regard him as you would +ten even to the +18 +a pagan or a tax collector. + +Truly I tell you, whatever you bind on earth +will be bound in heaven, and whatever you loose +Ask in My Name (John 16:23–33) +on earth will be loosed in heaven. +19 + +Again, I tell you truly that if two of you on the +earth agree about anything you ask for, it will be +For +done for you by My Father in heaven. +where two or three gather together in My name, +The Unforgiving Servant (Romans 12:14–21) +there am I with them.” +21 + +20 + +Then Peter came to Jesus and asked, “Lord, +how many times shall I forgive my brother who +22 +sins against me? Up to seven times?” + + a + +Jesus answered, “I tell you, not just seven + +23 +times, but seventy-seven times! + +b + +24 + +25 + +As he began + +Because of this, the kingdom of heaven is like +a king who wanted to settle accounts with his +the settlements, +servants. +a debtor owing ten thousand talents was brought +Since the man was unable to pay, the +to him. +master ordered that he be sold to pay his debt, +along with his wife and children and everything +26 +he owned. + +Then the servant fell on his knees before him. +‘Have patience with me,’ he begged, ‘and I will +27 +pay back everything.’ + +His master had compassion on him, forgave his + +28 +debt, and released him. + +c + +But when that servant went out, he found one +of his fellow servants who owed him a hundred +denarii. + He grabbed him and began to choke +29 +him, saying, ‘Pay back what you owe me!’ + +So his fellow servant fell down and begged +him, ‘Have patience with me, and I will pay you +30 +back.’ + +But he refused. Instead, he went and had the +man thrown into prison until he could pay his +31 +debt. + +33 + +Then the master summoned him and said, ‘You +wicked servant! I forgave all your debt because +Shouldn’t you have had mercy +you begged me. +In +on your fellow servant, just as I had on you?’ +anger his master turned him over to the jailers to +be tortured, until he should repay all that he +35 +owed. + +34 + +That is how My heavenly Father will treat each +of you unless you forgive your brother from your +Teachings about Divorce (Mark 10:1–12) +heart.” + +19 + +When Jesus had finished saying these +things, He left Galilee and went into the +Large +region of Judea beyond the Jordan. +3 +crowds followed Him, and He healed them there. + +2 + +Then some Pharisees came and tested Him by +asking, “Is it lawful for a man to divorce his wife +4 +for any reason?” + + d + +5 + +Jesus answered, “Have you not read that from +the beginning the Creator ‘made them male and +and said, ‘For this reason a man will +female,’ +leave his father and mother and be united to his +So +wife, and the two will become one flesh’ +they are no longer two, but one flesh. Therefore +what God has joined together, let man not sepa- +7 +rate.” + +? + +6 + + e + + f + +“Why then,” they asked, “did Moses order a man +to give his wife a certificate of divorce and send +8 +her away? + +” + +Jesus replied, “Moses permitted you to divorce +your wives because of your hardness of heart. +Now +But it was not this way from the beginning. +I tell you that whoever divorces his wife, except +for sexual immorality, and marries another +10 +woman commits adultery. + +” + +9 + +g + +His disciples said to Him, “If this is the case be- +tween a man and his wife, it is better not to +11 +marry.” + +“Not everyone can accept this word,” He re- +12 +plied, “but only those to whom it has been given. +For there are eunuchs who were born that +way; others were made that way by men; and +still others live like eunuchs for the sake of the +kingdom of heaven. The one who can accept this +should accept it.” + +d 4 + +seventy times seven + +When his fellow servants saw what had hap- +pened, they were greatly distressed, and they +b 24 +a 22 +went and recounted all of this to their master. +c 28 +e 5 +woman commits adultery + +Or +A denarius was customarily a day’s wage for a laborer; see Matthew 20:2. +Genesis 2:24 (see also LXX) + +; see Genesis 4:24 LXX + +See Deuteronomy 24:1. + +f 7 + +SBL and BYZ include + +; see Matthew 5:32. + +A talent was worth about twenty years’ wages for a laborer. +And he who marries a divorced + + g 9 + +Genesis 1:27; Genesis 5:2 + + Jesus Blesses the Children +(Mark 10:13–16 ; Luke 18:15–17) + +13 + +14 + +Then little children were brought to Jesus for +Him to place His hands on them and pray for +them. And the disciples rebuked those who +But Jesus said, “Let the little +brought them. +children come to Me, and do not hinder them! +15 +For the kingdom of heaven belongs to such as +And after He had placed His hands on +these.” +The Rich Young Man +them, He went on from there. +(Mark 10:17–31 ; Luke 18:18–30) + +16 + +Just then a man came up to Jesus and inquired, +“Teacher, what good thing must I do to obtain + a +17 +eternal life?” + +“Why do you ask Me about what is good?” +Jesus replied. “There is only One who is good. If +18 +you want to enter life, keep the commandments.” + +“Which ones?” the man asked. + +Jesus answered, “ +‘Do not murder, do not commit +19 +adultery, do not steal, do not bear false witness, +honor your father and mother, and love your + + b + +20 +neighbor as yourself.’ + +” + +“All these I have kept,” said the young man. + +21 +“What do I still lack?” + +Jesus told him, “If you want to be perfect, go, +sell your possessions and give to the poor, and +you will have treasure in heaven. Then come, +22 +follow Me.” + +When the young man heard this, he went away + +23 +in sorrow, because he had great wealth. + +24 + +Then Jesus said to His disciples, “Truly I tell +you, it is hard for a rich man to enter the kingdom +Again I tell you, it is easier for a +of heaven. +camel to pass through the eye of a needle than for +25 +a rich man to enter the kingdom of God.” + +When the disciples heard this, they were +greatly astonished and asked, “Who then can be +26 +saved?” + +Jesus looked at them and said, “With man this +is impossible, but with God all things are possi- +27 +ble.” + +“Look,” Peter replied, “we have left everything + +a 17 +to follow You. What then will there be for us?” + +b 19 + +BYZ and TR + +eration +Mark 10:17–18 and Luke 18:18–19. + +d 29 + +f 3 + +or wife + +e 2 + +Matthew 20:14 | 881 + +28 + +c + +Jesus said to them, “Truly I tell you, in the re- +newal of all things, + when the Son of Man sits on +His glorious throne, you who have followed Me +29 +will also sit on twelve thrones, judging the twelve +And everyone who has left +tribes of Israel. + d +houses or brothers or sisters or father or mother + or children or fields for the sake of My +or wife +name will receive a hundredfold and will inherit +But many who are first will be last, +eternal life. +The Parable of the Workers +and the last will be first. + +30 + +20 + +“For the kingdom of heaven is like a land- +owner who went out early in the morn- +He agreed + for the day and sent + +ing to hire workers for his vineyard. +to pay them a denarius +3 +them into his vineyard. + +2 + + e + + f + +About the third hour + + he went out and saw oth- +4 +ers standing in the marketplace doing nothing. +‘You also go into my vineyard,’ he said, ‘and I + +5 + +will pay you whatever is right.’ + + g + +So they went. + +He went out again about the sixth hour and the +6 + and did the same thing. +ninth hour + + h + +About the eleventh hour + + he went out and +found still others standing around. ‘Why have +you been standing here all day long doing noth- +7 +ing?’ he asked. + + i +‘Because no one has hired us,’ they answered. + +8 +So he told them, ‘You also go into my vineyard.’ + +When evening came, the owner of the vineyard +said to his foreman, ‘Call the workers and pay +them their wages, starting with the last ones +9 +hired and moving on to the first.’ + +The workers who were hired about the elev- +10 +enth hour came and each received a denarius. +So when the original workers came, they +assumed they would receive more. But each of +11 +them also received a denarius. + +12 +On receiving their pay, they began to grumble +against the landowner. +‘These men who were +hired last worked only one hour,’ they said, ‘and +you have made them equal to us who have borne +13 +the burden and the scorching heat of the day.’ + +14 + +But he answered one of them, ‘Friend, I am not +being unfair to you. Did you not agree with me on +one denarius? +Take your pay and go. I want to +in the regen- +c 28 + See + +16 . . . “Good Teacher, what good thing must I do to obtain eternal life?” 17 “Why do you call Me good?” + +h 6 + +NE, WH, and NA do not include + +. + +That is, about nine in the morning + +i 7 + +A denarius was customarily a day’s wage for a laborer; similarly +and whatever is right, you shall receive. +That is, about noon and again about three in the after- + +in verses 9, 10, and 13. +noon + +That is, about five in the afternoon; also in v. 9 + +BYZ and TR include + +Exodus 20:12–16; Leviticus 19:18; Deuteronomy 5:16–20 + +g 5 + +Or + + 882 | Matthew 20:15 + +15 + +Do I +give this last man the same as I gave you. +not have the right to do as I please with what is +16 +mine? Or are you envious because I am generous?’ + + a + +sitting beside the road. When they heard that +Jesus was passing by, they cried out, “Lord, Son +31 +of David, have mercy on us!” + +So the last will + + be first, and the first will be + +The Third Prediction of the Passion +last.” +(Mark 10:32–34 ; Luke 18:31–34) + +17 + +18 + +As Jesus was going up to Jerusalem, He took +“Look, we +the twelve disciples aside and said, +are going up to Jerusalem, and the Son of Man +19 +will be delivered over to the chief priests and +and +scribes. They will condemn Him to death +will deliver Him over to the Gentiles to be +mocked and flogged and crucified. And on the +A Mother’s Request (Mark 10:35–45) +third day He will be raised to life.” +20 + +Then the mother of Zebedee’s sons came to +Jesus with her sons and knelt down to make a +21 +request of Him. + +“What do you want?” He inquired. + +She answered, “Declare that in Your kingdom +one of these two sons of mine may sit at Your +22 +right hand, and the other at Your left.” + + b + +“You do not know what you are asking,” Jesus +replied. “Can you drink the cup I am going to +drink?” +23 +“We can,” the brothers answered. + + c + +“You will indeed drink My cup,” + + Jesus said. +“But to sit at My right or left is not Mine to grant. +These seats belong to those for whom My Father +24 +has prepared them.” + +25 + +26 + +When the ten heard about this, they were in- +dignant with the two brothers. +But Jesus called +them aside and said, “You know that the rulers of +the Gentiles lord it over them, and their superi- +ors exercise authority over them. +It shall +not be this way among you. Instead, whoever +wants to become great among you must be your +28 +servant, +and whoever wants to be first among +you must be your slave— +just as the Son of +Man did not come to be served, but to serve, and +The Blind Men by the Road +to give His life as a ransom for many.” +(Mark 10:46–52 ; Luke 18:35–43) + +27 + +29 + +30 + +The crowd admonished them to be silent, but +they cried out all the louder, “Lord, Son of David, +32 +have mercy on us!” + +Jesus stopped and called them. “What do you + +33 +want Me to do for you?” He asked. + +“Lord,” they answered, “let our eyes be + +34 +opened.” + +Moved with compassion, Jesus touched their +eyes, and at once they received their sight and +The Triumphal Entry (Zechariah 9:9–13 ; +followed Him. +Mark 11:1–11 ; Luke 19:28–40 ; John 12:12–19) + +21 + +As they approached Jerusalem and came +2 +to Bethphage on the Mount of Olives, Je- +saying to them, “Go +sus sent out two disciples, +into the village ahead of you, and at once you will +3 +find a donkey tied there, with her colt beside her. +If anyone +Untie them and bring them to Me. +questions you, tell him that the Lord needs them, +4 +and he will send them right away.” + +This took place to fulfill what was spoken +5 +through the prophet: + +“Say to the Daughter of Zion, + +‘See, your King comes to you, + + d + +gentle and riding on a donkey, + +on a colt, the foal of a donkey.’ + +7 + +” + +6 + +So the disciples went and did as Jesus had di- +They brought the donkey and the +rected them. +colt and laid their cloaks on them, and Jesus sat +8 +on them. + +A massive crowd spread their cloaks on the +road, while others cut branches from the trees +9 +and spread them on the road. + +The crowds that went ahead of Him and those + + e + +that followed were shouting: + +“Hosanna to the Son of David!” + + f + +“Blessed is He who comes in the name of the + + g + +Lord!” + +10 + +“Hosanna in the highest!” + +As they were leaving Jericho, a large crowd fol- +And there were two blind men +c 23 + +For many are called, but few are chosen. + +a 16 +lowed Him. +which I am baptized. +d 5 + +BYZ and TR include + +Zechariah 9:9 + +heaven!” +became a shout of praise; see Psalm 118:25; also in verse 15. + +BYZ and TR include + +f 9 + is a transliteration of the Hebrew + +e 9 Hosanna + TR is similar. + +When Jesus had entered Jerusalem, the whole +b 22 + +or be baptized with the baptism with + +city was stirred and asked, “Who is this?” +and be baptized with the baptism with which I am baptized + +Hosia-na + +BYZ includes + +Save, we pray + +Save now + +g 9 + +“Hosanna in the highest + +. + +, meaning + + or + +, which + +Psalm 118:26 + +Or + + See Psalm 118:25 and Psalm 148:1. + + 11 + +24 + +Matthew 21:37 | 883 + +The crowds replied, “This is Jesus, the prophet + +Jesus Cleanses the Temple +from Nazareth in Galilee.” +(Mark 11:15–19 ; Luke 19:45–48 ; John 2:12–25) + +12 + + a + +Then Jesus entered the temple courts + + and +drove out all who were buying and selling there. +He overturned the tables of the money changers +and the seats of those selling doves. +And He + b +declared to them, “It is written: ‘My house will be + c + But you are making it +called a house of prayer.’ +14 +‘a den of robbers.’ + +13 + +” + +15 + +The blind and the lame came to Him at the +But the chief +temple, and He healed them. +priests and scribes were indignant when they +saw the wonders He performed and the children +shouting in the temple courts, “Hosanna to the +16 +Son of David!” + +“Do You hear what these children are saying?” + +they asked. + +“Yes,” Jesus answered. “Have you never read: + + d + +17 + +‘From the mouths of children and infants + +You have ordained praise’ + +?” + +Then He left them and went out of the city to + +The Barren Fig Tree (Mark 11:12–14 , , 20–25) +Bethany, where He spent the night. +18 + +19 + +In the morning, as Jesus was returning to the +Seeing a fig tree by the +city, He was hungry. +road, He went up to it but found nothing on it ex- +cept leaves. “May you never bear fruit again!” He +20 +said. And immediately the tree withered. + +When the disciples saw this, they marveled +and asked, “How did the fig tree wither so +21 +quickly?” + +“Truly I tell you,” Jesus replied, “if you have +faith and do not doubt, not only will you do what +was done to the fig tree, but even if you say to this +mountain, ‘Be lifted up and thrown into the sea,’ +If you believe, you will receive +it will happen. +Jesus’ Authority Challenged +whatever you ask for in prayer.” +(Mark 11:27–33 ; Luke 20:1–8) + +22 + +23 + +When Jesus returned to the temple courts and +began to teach, the chief priests and elders of the +people came up to Him. “By what authority are +You doing these things?” they asked. “And who +a 12 +gave You this authority?” +d 16 + +the temple + +But he went. + +e 29 + +“I will also ask you one question,” Jesus re- +plied, “and if you answer Me, I will tell you by +What +what authority I am doing these things. +was the source of John’s baptism? Was it from +heaven or from men?” + +25 + +They deliberated among themselves and said, “If +26 +we say, ‘From heaven,’ He will ask, ‘Why then did +But if we say, ‘From +you not believe him?’ +27 +men,’ we are afraid of the people, for they all re- +So they answered, +gard John as a prophet.” +“We do not know.” + +And Jesus replied, “Neither will I tell you by what +The Parable of the Two Sons +authority I am doing these things. +28 + +But what do you think? There was a man who +had two sons. He went to the first one and said, +29 +‘Son, go and work today in the vineyard.’ + +e + +‘I will not,’ he replied. But later he changed his + +30 +mind and went. + +Then the man went to the second son and told + +him the same thing. +31 +‘I will, sir,’ he said. But he did not go. + +f + +Which of the two did the will of his father?” + +“The first, + +” they answered. + +Jesus said to them, “Truly I tell you, the tax +32 +collectors and prostitutes are entering the king- +For John came to you +dom of God before you. +in the way of righteousness, and you did not be- +lieve him, but the tax collectors and prostitutes +did. And even after you saw this, you did not +The Parable of the Wicked Tenants +repent and believe him. +(Mark 12:1–12 ; Luke 20:9–18) + +33 + +Listen to another parable: There was a land- +owner who planted a vineyard. He put a wall +around it, dug a winepress in it, and built a tower. +Then he rented it out to some tenants and went +34 +away on a journey. + +35 + +When the harvest time drew near, he sent his +servants to the tenants to collect his share of the +fruit. +But the tenants seized his servants. They +36 +beat one, killed another, and stoned a third. + +Again, he sent other servants, more than the +37 +first group. But the tenants did the same to them. + +Finally, he sent his son to them. ‘They will re- + +the temple of God +spect my son,’ he said. +f 31 + +b 13 +The latter + +c 13 + +Literally +Psalm 8:2 (see also LXX) + +; also in verses 15 and 23; BYZ and TR +NE and WH + +NE and WH + +Isaiah 56:7 + +Jeremiah 7:11 + + 884 | Matthew 21:38 + +38 + +10 + +But when + + the tenants saw the son, they said to +one another, ‘This is the heir. Come, let us kill him +So they seized him +and take his inheritance.’ +40 +and threw him out of the vineyard and killed him. + +39 + +Therefore, when the owner of the vineyard re- + +41 +turns, what will he do to those tenants?” + +“He will bring those wretches to a wretched +end,” they replied, “and will rent out the vineyard +to other tenants who will give him his share of +42 +the fruit at harvest time.” + +Jesus said to them, “Have you never read in the + +Scriptures: + +‘The stone the builders rejected +has become the cornerstone. + + a + +So the servants went out into the streets and +gathered everyone they could find, both evil and +good, and the wedding hall was filled with +11 +guests. + +12 + +But when the king came in to see the guests, he +spotted a man who was not dressed in wedding +‘Friend,’ he asked, ‘how did you get in +clothes. +here without wedding clothes?’ +13 +But the man was speechless. + +Then the king told the servants, ‘Tie him hand +and foot, and throw him into the outer darkness, +where there will be weeping and gnashing of +14 +teeth.’ +Paying Taxes to Caesar +(Mark 12:13–17 ; Luke 20:19–26) + +For many are called, but few are chosen.” + +This is from the Lord, + +43 + +and it is marvelous in our eyes’ + +? + +15 + +44 + +Therefore I tell you that the kingdom of God +will be taken away from you and given to a peo- +ple who will produce its fruit. +He who falls on +b +this stone will be broken to pieces, but he on +45 +whom it falls will be crushed. + +” + +46 + +When the chief priests and Pharisees heard +His parables, they knew that Jesus was speaking +Although they wanted to arrest +about them. +Him, they were afraid of the crowds, because the +The Parable of the Banquet (Luke 14:15–24) +people regarded Him as a prophet. + +22 + +2 + +3 + +Once again, Jesus spoke to them in para- +bles: +“The kingdom of heaven is like a +king who prepared a wedding banquet for his +He sent his servants to call those he had in- +son. +4 +vited to the banquet, but they refused to come. + +Again, he sent other servants and said, ‘Tell +those who have been invited that I have pre- +pared my dinner. My oxen and fattened cattle +have been killed, and everything is ready. Come +5 +to the wedding banquet.’ + +6 + +But they paid no attention and went away, one +The rest +to his field, another to his business. +seized his servants, mistreated them, and killed +7 +them. + +9 + +The king was enraged, and he sent his troops to +8 +destroy those murderers and burn their city. +Then he said to his servants, ‘The wedding ban- +quet is ready, but those I invited were not wor- +Go therefore to the crossroads and invite to +thy. +a 42 +the banquet as many as you can find.’ +c 19 + +b 44 + +16 +Then the Pharisees went out and conspired to +They sent their disci- +trap Jesus in His words. +ples to Him along with the Herodians. “Teacher,” +they said, “we know that You are honest and that +You teach the way of God in accordance with the +truth. You seek favor from no one, because You +pay no attention to external appearance. +So +tell us what You think: Is it lawful to pay taxes to +18 +Caesar or not?” + +17 + +19 + +But Jesus knew their evil intent and said, “You +Show Me + +hypocrites, why are you testing Me? +the coin used for the tax.” +20 +And they brought Him a denarius. + +c + +“Whose image is this,” He asked, “and whose + +21 +inscription?” + +“Caesar’s,” they answered. + +So Jesus told them, “Give to Caesar what is Cae- +22 +sar’s, and to God what is God’s.” + +And when they heard this, they were amazed. + +The Sadducees and the Resurrection +So they left Him and went away. +(Mark 12:18–27 ; Luke 20:27–40) + +23 + +24 + +That same day the Sadducees, who say there is +no resurrection, came to Jesus and questioned +Him. +“Teacher,” they said, “Moses declared +that if a man dies without having children, his +brother is to marry the widow and raise up off- +Now there were seven broth- +spring for him. +ers among us. The first one married and died +without having children. So he left his wife to his + +25 + +d + +d 24 + +Psalm 118:22–23 +A denarius was customarily a day’s wage for a laborer; see Matthew 20:2. + +Tischendorf and some early manuscripts do not include verse 44; see also Luke 20:18. + +Deuteronomy 25:5 + + 26 + +46 + +Matthew 23:21 | 885 + +brother. +The same thing happened to the sec- +27 +ond and third brothers, down to the seventh. +In the resur- +rection, then, whose wife will she be of the +29 +seven? For all of them were married to her.” + +And last of all, the woman died. + +28 + + a + +30 + +31 + +Jesus answered, “You are mistaken because +you do not know the Scriptures or the power of +In the resurrection, people will neither +God. +marry nor be given in marriage. Instead, they will +be like the angels + in heaven. +But concerning +32 +the resurrection of the dead, have you not read +‘I am the God of Abra- +what God said to you: +ham, the God of Isaac, and the God of Jacob’ +? He +33 +is not the God of the dead, but of the living.” + + b + +When the crowds heard this, they were aston- + +The Greatest Commandment +ished at His teaching. +(Deuteronomy 6:1–19 ; Mark 12:28–34) + +34 + +35 + +And when the Pharisees heard that Jesus had +silenced the Sadducees, they themselves gath- +ered together. +One of them, an expert in the +“Teacher, +law, tested Him with a question: +37 +which commandment is the greatest in the Law?” + +36 + +Jesus declared, “ + c + +‘Love the Lord your God +38 +with all your heart and with all your soul and +39 +with all your mind.’ +This is the first and great- + d +est commandment. +And the second is like it: +‘Love your neighbor as yourself.’ +All the +Law and the Prophets hang on these two +Whose Son Is the Christ? +commandments.” +(Mark 12:35–37 ; Luke 20:41–44) + +40 + +41 + +42 + +While the Pharisees were assembled, Jesus +“What do you think about + +questioned them: +the Christ? Whose son is He?” +43 +“David’s,” they answered. + +Jesus said to them, “How then does David in + +44 +the Spirit call Him ‘Lord’? For he says: + +‘The Lord said to my Lord, +“Sit at My right hand +until I put Your enemies +under Your feet.” + + e + +’ + +45 + +No one was able to answer a word, and from +that day on no one dared to question Him any +Woes to Scribes and Pharisees +further. +(Luke 11:37–54) + +23 + +2 +Then Jesus spoke to the crowds and to +3 +“The scribes and Phari- +His disciples: +So practice and observe +sees sit in Moses’ seat. +everything they tell you. But do not do what they +4 +do, for they do not practice what they preach. + and lay +them on men’s shoulders, but they themselves +5 +are not willing to lift a finger to move them. + +They tie up heavy, burdensome loads + + f + +6 + +All their deeds are done for men to see. They +broaden their phylacteries and lengthen their +tassels. +They love the places of honor at ban- +the +quets, the chief seats in the synagogues, +greetings in the marketplaces, and the title of +8 +‘Rabbi’ by which they are addressed. + +7 + +g + +9 + +11 + +10 + +But you are not to be called ‘Rabbi,’ for you have +And do +one Teacher, and you are all brothers. +not call anyone on earth your father, for you have +one Father, who is in heaven. +Nor are you to be +called instructors, for you have one Instructor, +12 +the Christ. +The greatest among you shall be +your servant. +For whoever exalts himself will +be humbled, and whoever humbles himself will +13 +be exalted. + +Woe to you, scribes and Pharisees, you +hypocrites! You shut the kingdom of heaven in +men’s faces. You yourselves do not enter, nor will +15 +you let in those who wish to enter. + +h + +Woe to you, scribes and Pharisees, you +hypocrites! You traverse land and sea to win a +single convert, and when he becomes one, you +16 + as you are. +make him twice as much a son of hell + + i + +18 + +17 + +Woe to you, blind guides! You say, ‘If anyone +swears by the temple, it means nothing; but if an- +yone swears by the gold of the temple, he +is bound by his oath.’ +You blind fools! Which is +greater: the gold, or the temple that makes it +sacred? +And you say, ‘If anyone swears by the +altar, it means nothing; but if anyone swears by +the gift on it, he is bound by his oath.’ +You blind +20 +men! Which is greater: the gift, or the altar that +21 +makes it sacred? +So then, he who swears by the +altar swears by it and by everything on it. +And + +d 39 + +e 44 + +19 + +So if David calls Him ‘Lord,’ how can He be +the angels of God + +b 32 + +c 37 + +a 30 +David’s son?” +f 4 + +They tie up heavy loads + +g 7 + +and to be called ‘Rabbi’ by men + +h 13 + +SBL, BYZ, and TR + +14 Woe to you, scribes and Pharisees, you hypocrites! You defraud widows of their houses, and for a show make lengthy prayers. +110:1 +BYZ and TR include +Literally +Therefore you will receive greater condemnation. + +Leviticus 19:18 +Gehenna + +Deuteronomy 6:5 + +SBL, NE, and WH + +Exodus 3:6 + +Psalm + +i 15 + + See Mark 12:40 and Luke 20:47. + +Greek + +; also in verse 33 + + 886 | Matthew 23:22 + +22 + +38 + +he who swears by the temple swears by it and by +the One who dwells in it. +And he who swears +by heaven swears by God’s throne and by the +23 +One who sits on it. + +Woe to you, scribes and Pharisees, you +hypocrites! You pay tithes of mint, dill, and +cumin. But you have disregarded the weightier +matters of the law: justice, mercy, and faithful- +ness. You should have practiced the latter, with- +You blind guides! +out neglecting the former. +25 +You strain out a gnat but swallow a camel. + +24 + +a + +26 + +Woe to you, scribes and Pharisees, you +hypocrites! You clean the outside of the cup and +dish, but inside they are full of greed and self-in- +Blind Pharisee! First clean the inside +dulgence. +of the cup and dish, + so that the outside may be- +27 +come clean as well. + +b + +28 + +Woe to you, scribes and Pharisees, you +hypocrites! You are like whitewashed tombs, +which look beautiful on the outside but on the in- +side are full of dead men’s bones and every kind +In the same way, on the outside +of impurity. +you appear to be righteous, but on the inside you +29 +are full of hypocrisy and wickedness. + +30 + +Woe to you, scribes and Pharisees, you +hypocrites! You build tombs for the prophets and +And +decorate the monuments of the righteous. +you say, ‘If we had lived in the days of our fathers, +31 +we would not have been partners with them in +So you +shedding the blood of the prophets.’ +testify against yourselves that you are the sons of +those who murdered the prophets. +Fill up, +33 +then, + the measure of the sin of your fathers. +You snakes! You brood of vipers! How will you + +32 + +c + +34 +escape the sentence of hell? + +Because of this, I am sending you prophets and +wise men and teachers. Some of them you will +kill and crucify, and others you will flog in your +35 +synagogues and persecute from town to town. +And so upon you will come all the righteous +blood shed on earth, from the blood of righteous +Abel to the blood of Zechariah son of Berechiah, +whom you murdered between the temple and +Truly I tell you, all these things will +the altar. +Lament over Jerusalem (Luke 13:31–35) +come upon this generation. +37 + +36 + +O Jerusalem, Jerusalem, who kills the prophets +and stones those sent to her, how often I have +a 24 +longed to gather your children together, as a hen +d 38 + +Go ahead, then, and complete + +and dish + +c 32 + +gathers her chicks under her wings, but you were +d +39 +Look, your house is left to you des- +unwilling! +olate. +For I tell you that you will not see Me +again until you say, ‘Blessed is He who comes in +Temple Destruction and Other Signs +” +the name of the Lord.’ +(Mark 13:1–8 ; Luke 21:5–9) + + e + +24 + +As Jesus left the temple and was walking +away, His disciples came up to Him to + +2 +point out its buildings. + +“Do you see all these things?” He replied. “Truly +I tell you, not one stone here will be left on an- +3 +other; every one will be thrown down.” + +While Jesus was sitting on the Mount of Olives, +the disciples came to Him privately. “Tell us,” +they said, “when will these things happen, and +what will be the sign of Your coming and of the +4 +end of the age?” + +5 + +6 + +Jesus answered, “See to it that no one deceives +you. +For many will come in My name, claiming, +‘I am the Christ,’ and will deceive many. +You will +hear of wars and rumors of wars, but see to it +that you are not alarmed. These things must hap- +pen, but the end is still to come. +Nation will rise +against nation, and kingdom against kingdom. +There will be famines and earthquakes in vari- +ous places. +All these are the beginning of birth +Witnessing to All Nations +pains. +(Mark 13:9–13 ; Luke 21:10–19) + +8 + +7 + +9 + +10 + +Then they will deliver you over to be perse- +cuted and killed, and you will be hated by all +At that time many +nations because of My name. +will fall away and will betray and hate one +and many false prophets will arise +another, +12 +and deceive many. + +11 + +13 + +Because of the multiplication of wickedness, +But the one + +the love of most will grow cold. +14 +who perseveres to the end will be saved. + +And this gospel of the kingdom will be +preached in all the world as a testimony to all na- +The Abomination of Desolation +tions, and then the end will come. +(Mark 13:14–23 ; Luke 21:20–24) + +15 + + f + +So when you see standing in the holy place ‘the +abomination of desolation,’ + spoken of by the +b 26 +prophet Daniel (let the reader understand), +e 39 + +desolate + +f 15 +include + +See Leviticus 11:4 and Leviticus 11:23, where camels and gnats are both forbidden as food. + +. + +Or + +NE and WH do not include + +. + +NA does not +Psalm 118:26 + +See Daniel 9:27, Daniel 11:31, and Daniel 12:11. + + 16 + +17 + +Matthew 25:2 | 887 + +33 + +then let those who are in Judea flee to the +Let no one on the housetop come +And + +mountains. +down to retrieve anything from his house. +19 +let no one in the field return for his cloak. + +18 + +20 + +21 + +How miserable those days will be for pregnant +Pray that your flight will +and nursing mothers! +For +not occur in the winter or on the Sabbath. +at that time there will be great tribulation, un- +seen from the beginning of the world until now, +If those days had +and never to be seen again. +not been cut short, nobody would be saved. But +for the sake of the elect, those days will be cut +23 +short. + +22 + +At that time, if anyone says to you, ‘Look, here +24 +is the Christ!’ or ‘There He is!’ do not believe it. +For false Christs and false prophets will appear +and perform great signs and wonders to deceive +See, I have +even the elect, if that were possible. +The Return of the Son of Man +told you in advance. +(Mark 13:24–27 ; Luke 21:25–28) + +25 + +26 + +27 + +So if they tell you, ‘There He is, in the wilder- +ness,’ do not go out, or, ‘Here He is, in the inner +For just as the light- +rooms,’ do not believe it. +ning comes from the east and flashes as far as the +28 +west, so will be the coming of the Son of Man. +Wherever there is a carcass, there the vultures + +29 +will gather. + +Immediately after the tribulation of those + +days: + +‘The sun will be darkened, + +and the moon will not give its + +light; + +the stars will fall from the sky, + +a + +30 + +and the powers of the heavens will + +be shaken. + +b + +’ + +c + +At that time the sign of the Son of Man will ap- + and all the tribes of the earth +pear in heaven, +will mourn. They will see the Son of Man coming +31 +on the clouds of heaven with power and great +And He will send out His angels with a +glory. +loud trumpet call, and they will gather His elect +from the four winds, from one end of the heavens +The Lesson of the Fig Tree +to the other. +(Mark 13:28–31 ; Luke 21:29–33) + +32 + + d + +Now learn this lesson + + from the fig tree: As +a 29 +soon as its branches become tender and sprout + +and the celestial bodies will be shaken +c 30 + +this parable + +d 32 + +e 33 + +e + +34 + + right at the door. + +So also, +leaves, you know that summer is near. +when you see all these things, you will know that +He is near, +Truly I tell you, +35 +this generation will not pass away until all these +Heaven and earth will +things have happened. +Readiness at Any Hour +pass away, but My words will never pass away. +(Genesis 6:1–7 ; Mark 13:32–37 ; Luke 12:35–48) + +36 + +f + +37 + +39 + +No one knows about that day or hour, not even +the angels in heaven, nor the Son, + but only the +38 +As it was in the days of Noah, so will it +Father. +be at the coming of the Son of Man. +For in the +days before the flood, people were eating and +drinking, marrying and giving in marriage, up to +the day Noah entered the ark. +And they were +oblivious until the flood came and swept them all +away. So will it be at the coming of the Son of +Man. +Two men will be in the field: one will be +taken and the other left. +Two women will be +grinding at the mill: one will be taken and the +42 +other left. + +40 + +41 + +Therefore keep watch, because you do not +43 +know the day on which your Lord will come. +But understand this: If the homeowner had +known in which watch of the night the thief was +coming, he would have kept watch and would not +have let his house be broken into. +For this rea- +son, you also must be ready, because the Son of +45 +Man will come at an hour you do not expect. + +44 + +46 + +Who then is the faithful and wise servant, +whom the master has put in charge of his house- +hold, to give the others their food at the proper +Blessed is that servant whose master +time? +Truly I +finds him doing so when he returns. +tell you, he will put him in charge of all his +48 +possessions. + +47 + +50 + +But suppose that servant is wicked and says in +49 +his heart, ‘My master will be away a long time.’ +And he begins to beat his fellow servants and +The master of +to eat and drink with drunkards. +that servant will come on a day he does not ex- +51 +pect and at an hour he does not anticipate. +Then he will cut him to pieces and assign him +a place with the hypocrites, where there will be +The Parable of the Ten Virgins +weeping and gnashing of teeth. + +25 + +“At that time the kingdom of heaven will +be like ten virgins who took their lamps +Five of + +and went out to meet the bridegroom. + +the sky + +b 30 + +2 + +it is near + +f 36 + +nor the Son +; twice in this +. + +Or +verse + +See Daniel 7:13–14. + +Or + +Or + +BYZ and TR do not include + +; see Isaiah 13:10, Isaiah 34:4, and Joel 2:10. + +Or + + 888 | Matthew 25:3 + +3 + +4 + +The fool- +them were foolish, and five were wise. +ish ones took their lamps but did not take along +5 +But the wise ones took oil in flasks +any extra oil. +When the bridegroom +along with their lamps. +was delayed, they all became drowsy and fell +6 +asleep. + +things; I will put you in charge of many things. +22 +Enter into the joy of your master!’ + +The servant who had received the two +talents also came and said, ‘Master, you en- +trusted me with two talents. See, I have gained +23 +two more.’ + +13 +you.’ + +At midnight the cry rang out: ‘Here is the bride- + +7 +groom! Come out to meet him!’ + +8 + +Then all the virgins woke up and trimmed their +The foolish ones said to the wise, ‘Give + +lamps. +9 +us some of your oil; our lamps are going out.’ + +‘No,’ said the wise ones, ‘or there may not be +enough for both us and you. Instead, go to those +10 +who sell oil and buy some for yourselves.’ + +But while they were on their way to buy it, the +bridegroom arrived. Those who were ready +went in with him to the wedding banquet, and +11 +the door was shut. + +Later the other virgins arrived and said, ‘Lord, + +12 +lord, open the door for us!’ + +But he replied, ‘Truly I tell you, I do not know + +a +Therefore keep watch, because you do not + +The Parable of the Talents +know the day or the hour. +(Luke 19:11–27) + +14 + +15 + +For it is just like a man going on a journey, who +called his servants and entrusted them with his + to +possessions. +another two talents, and to another one talent— +each according to his own ability. And he went on +16 +his journey. + +To one he gave five talents, + +b + + c + +17 + +The servant who had received the five talents +went at once and put them to work + and gained +18 +Likewise, the one with the two tal- +five more. +ents gained two more. +But the servant who +had received the one talent went off, dug a hole +19 +in the ground, and hid his master’s money. +20 + +After a long time the master of those servants +returned and settled accounts with them. +The +servant who had received the five talents came +and presented five more. ‘Master,’ he said, ‘you +entrusted me with five talents. See, I have gained +21 +five more.’ + +His master replied, ‘Well done, good and faith- +ful servant! You have been faithful with a few +things; I will put you in charge of many things. +24 +Enter into the joy of your master!’ + +25 + +Finally, the servant who had received the one +talent came and said, ‘Master, I knew that you are +a hard man, reaping where you have not sown +and gathering where you have not scattered +seed. +So I was afraid and went out and hid your +talent in the ground. See, you have what belongs +26 +to you.’ + +‘You wicked, lazy servant!’ replied his master. +‘You knew that I reap where I have not sown and +gather where I have not scattered seed. +Then +you should have deposited my money with the +bankers, and on my return I would have received +28 +it back with interest. + +27 + +29 + +Therefore take the talent from him and give it +For everyone +to the one who has ten talents. +who has will be given more, and he will have an +abundance. But the one who does not have, even +And +what he has will be taken away from him. +throw that worthless servant into the outer +darkness, where there will be weeping and +The Sheep and the Goats +gnashing of teeth.’ +31 + +30 + +32 + +When the Son of Man comes in His glory, and +all the angels with Him, He will sit on His glorious +throne. +All the nations will be gathered before +Him, and He will separate the people one from +33 +another, as a shepherd separates the sheep from +the goats. +He will place the sheep on His right +34 +and the goats on His left. + +35 + +Then the King will say to those on His right, +‘Come, you who are blessed by My Father, inherit +the kingdom prepared for you from the founda- +tion of the world. +For I was hungry and you +gave Me something to eat, I was thirsty and you +36 +gave Me something to drink, I was a stranger and +you took Me in, +I was naked and you clothed +Me, I was sick and you looked after Me, I was in +prison and you visited Me.’ + +His master replied, ‘Well done, good and faith- +b 15 +a 13 +ful servant! You have been faithful with a few +c 16 + +when the Son of Man comes + +15 . . . And he went on his journey at once. 16 . . . went and put them to work + +BYZ and TR include +eutheōs +Or + +. + +A talent was worth about twenty years’ wages for a laborer. + +. Translators vary as to the placement of + +the Greek adverb + + (at once) at the end of verse 15 or at the beginning of verse 16. + + 37 + +11 + +Matthew 26:29 | 889 + +Then the righteous will answer Him, ‘Lord, +when did we see You hungry and feed You, or +38 +thirsty and give You something to drink? +When did we see You a stranger and take You +When did we see + +in, or naked and clothe You? +40 +You sick or in prison and visit You?’ + +39 + +And the King will reply, ‘Truly I tell you, what- +ever you did for one of the least of these brothers +41 +of Mine, you did for Me.’ + +42 + +Then He will say to those on His left, ‘Depart +from Me, you who are cursed, into the eternal fire +For I +prepared for the devil and his angels. +was hungry and you gave Me nothing to eat, I was +I was +thirsty and you gave Me nothing to drink, +a stranger and you did not take Me in, I was +naked and you did not clothe Me, I was sick and +44 +in prison and you did not look after Me.’ + +43 + +And they too will reply, ‘Lord, when did we see +You hungry or thirsty or a stranger or naked or +45 +sick or in prison, and did not minister to You?’ + +Then the King will answer, ‘Truly I tell you, +whatever you did not do for one of the least of +46 +these, you did not do for Me.’ + +And they will go away into eternal punish- + +The Plot to Kill Jesus +ment, but the righteous into eternal life.” +(Mark 14:1–2 ; Luke 22:1–2 ; John 11:45–57) + +26 + +When Jesus had finished saying all these +“You know +things, He told His disciples, +that the Passover is two days away, and the Son +3 +of Man will be handed over to be crucified.” + +4 + +At that time the chief priests and elders of the +people assembled in the courtyard of the high +and they con- +priest, whose name was Caiaphas, +spired to arrest Jesus covertly and kill Him. +“But +not during the feast,” they said, “or there may be +Jesus Anointed at Bethany +a riot among the people.” +(Mark 14:3–9 ; Luke 7:36–50 ; John 12:1–8) +6 + +5 + +a + +7 + +While Jesus was in Bethany in the home of +Simon the Leper, +a woman came to Him with +an alabaster jar of expensive perfume, which she +8 +poured on His head as He reclined at the table. + +9 + +When the disciples saw this, they were indig- +This perfume +nant and asked, “Why this waste? +could have been sold at a high price, and the +10 +money given to the poor.” + +12 + +b +to Me. +The poor you will always have with +By + but you will not always have Me. +you, +pouring this perfume on Me, she has prepared +My body for burial. +Truly I tell you, wherever +this gospel is preached in all the world, what she +Judas Agrees to Betray Jesus +has done will also be told in memory of her.” +(Mark 14:10–11 ; Luke 22:3–6) + +13 + +14 + +15 + +Then one of the Twelve, the one called Judas +Iscariot, went to the chief priests +and asked, +“What are you willing to give me if I hand Him +16 +over to you?” And they set out for him thirty +pieces of silver. +So from then on Judas looked +Preparing the Passover +for an opportunity to betray Jesus. +(Mark 14:12–16 ; Luke 22:7–13) + +17 + +c + +On the first day of the Feast of Unleavened + the disciples came to Jesus and asked, +Bread, +“Where do You want us to prepare for You to eat +18 +the Passover?” + +19 + +He answered, “Go into the city to a certain man +and tell him that the Teacher says, ‘My time is +near. I will keep the Passover with My disciples +at your house.’ +So the disciples did as Jesus +The Last Supper (Mark 14:17–26 ; +had directed them and prepared the Passover. +Luke 22:14–23 ; 1 Corinthians 11:17–34) +20 + +” + +When evening came, Jesus was reclining with +the twelve disciples. +And while they were eat- +ing, He said to them, “Truly I tell you, one of you +22 +will betray Me.” + +They were deeply grieved and began to ask + +23 +Him one after another, “Surely not I, Lord?” +24 + +Jesus answered, “The one who has dipped his +hand into the bowl with Me will betray Me. +The +Son of Man will go just as it is written about Him, +but woe to that man by whom He is betrayed. It +25 +would be better for him if he had not been born.” + +Then Judas, who would betray Him, said, + +“Surely not I, Rabbi?” +26 +Jesus answered, “You have said it yourself.” + +While they were eating, Jesus took bread, +spoke a blessing and broke it, and gave it to the +27 +disciples, saying, “Take and eat; this is My body.” + +28 + +e + +Then He took the cup, gave thanks, and gave it +to them, saying, “Drink from it, all of you. +This +29 + which is poured out +is My blood of the covenant, +for many for the forgiveness of sins. +I tell you, +I will not drink of this fruit of the vine from now +the new covenant +Literally + +On the first of the + +e 28 + +c 17 + +See Deuteronomy 15:11. + +Aware of this, Jesus asked, “Why are you both- +b 11 +a 6 +ering this woman? She has done a beautiful deed +the Twelve +Unleavened + or +Aramaic + +Simon the Jar Maker + +Simon the Potter + +d 20 + +; see Exodus 12:14–20. + +BYZ and TR + +BYZ and TR + +2 + +d + +21 + + 890 | Matthew 26:30 + +on until that day when I drink it anew with you +30 +in My Father’s kingdom.” + +And when they had sung a hymn, they went + +Jesus Predicts Peter’s Denial (Zech. 13:7–9 ; +out to the Mount of Olives. +Mark 14:27–31 ; Luke 22:31–38 ; John 13:36–38) + +31 + +Then Jesus said to them, “This very night +you will all fall away on account of Me. For it is +written: + +‘I will strike the Shepherd, + + a + +32 + +and the sheep of the flock will be + +scattered.’ + +But after I have risen, I will go ahead of you + +33 +into Galilee.” + +Peter said to Him, “Even if all fall away on + +34 +account of You, I never will.” + +“Truly I tell you,” Jesus declared, “this very +night, before the rooster crows, you will deny Me +35 +three times.” + +Peter replied, “Even if I have to die with You, I +will never deny You.” And all the other disciples +Jesus Prays at Gethsemane +said the same thing. +(Mark 14:32–42 ; Luke 22:39–46) + +36 + +Then Jesus went with His disciples to a place +called Gethsemane, and He told them, “Sit here +37 +while I go over there and pray.” + +38 + +He took with Him Peter and the two sons of +Zebedee and began to be sorrowful and deeply +distressed. +Then He said to them, “My soul is +consumed with sorrow to the point of death. Stay +39 +here and keep watch with Me.” + +Going a little farther, He fell facedown and +prayed, “My Father, if it is possible, let this cup +40 +pass from Me. Yet not as I will, but as You will.” + +41 + +Then Jesus returned to the disciples and found +them sleeping. “Were you not able to keep watch +with Me for one hour?” He asked Peter. +“Watch +and pray so that you will not enter into tempta- +tion. For the spirit is willing, but the body is +42 +weak.” + +43 + +A second time He went away and prayed, “My +Father, if this cup cannot pass unless I drink it, +may Your will be done.” +And again Jesus re- +turned and found them sleeping, for their eyes +44 +were heavy. + +45 + +46 + +Then He returned to the disciples and said, +“Are you still sleeping and resting? Look, the +hour is near, and the Son of Man is betrayed into +Rise, let us go! See, My be- +the hands of sinners. +The Betrayal of Jesus +trayer is approaching!” +(Mark 14:43–52 ; Luke 22:47–53 ; John 18:1–14) +47 + +While Jesus was still speaking, Judas, one of +the Twelve, arrived, accompanied by a large +crowd armed with swords and clubs, sent from +48 +the chief priests and elders of the people. + +Now the betrayer had arranged a signal with +49 +them: “The One I kiss is the man; arrest Him.” +Going directly to Jesus, he said, “Greetings, + b + +50 +Rabbi!” and kissed Him. + +51 + +“Friend,” Jesus replied, “do what you came for.” +Then the men stepped forward, seized Jesus, and +At this, one of Jesus’ companions +arrested Him. +drew his sword and struck the servant of the +52 +high priest, cutting off his ear. + +53 + +“Put your sword back in its place,” Jesus said +to him. “For all who draw the sword will die by +the sword. +Are you not aware that I can call on +My Father, and He will at once put at My disposal +more than twelve legions of angels? +But how +then would the Scriptures be fulfilled that say it +55 +must happen this way?” + +54 + +At that time Jesus said to the crowd, “Have you +come out with swords and clubs to arrest Me as +you would an outlaw? Every day I sat teaching in +56 +the temple courts, + and you did not arrest Me. +But this has all happened so that the writings + +c + +of the prophets would be fulfilled.” +Jesus before the Sanhedrin +Then all the disciples deserted Him and fled. +(Mark 14:53–65 ; Luke 22:66–71 ; John 18:19–24) +57 + +58 + +Those who had arrested Jesus led Him away to +the house of Caiaphas the high priest, where the +But Peter +scribes and elders had gathered. +followed Him at a distance, right up to the court- +yard of the high priest. And he went in and sat +59 +down with the guards to see the outcome. + + d +Now the chief priests and the whole Sanhed- + were seeking false testimony against Jesus +rin +But they did not +in order to put Him to death. +find any, though many false witnesses came +forward. + +61 + +60 + +Finally two came forward +and declared, “This +man said, ‘I am able to destroy the temple of God +the whole Council +and rebuild it in three days.’ + +the temple + +d 59 +” + +c 55 + +So He left them and went away once more and +a 31 +prayed a third time, saying the same thing. + +“Friend,” Jesus replied, “for what have you come?” + +b 50 + +Zech. 13:7 + +Or + +Lit. + +Or + + 62 + +Judas Hangs Himself (Zechariah 11:10–17) + +Matthew 27:19 | 891 + +So the high priest stood up and asked Him, +“Have You no answer? What are these men testi- +63 +fying against You?” + +But Jesus remained silent. + +Then the high priest said to Him, “I charge You +under oath by the living God: Tell us if You are +64 +the Christ, the Son of God.” + +“You have said it yourself,” Jesus answered. + a +“But I say to all of you, from now on you will see +the Son of Man sitting at the right hand of Power +65 +and coming on the clouds of heaven.” + + b + +66 + +At this, the high priest tore his clothes and de- +clared, “He has blasphemed! Why do we need +any more witnesses? Look, now you have heard +the blasphemy. +67 +“He deserves to die,” they answered. +68 + +What do you think?” + +Then they spit in His face and struck Him. Oth- +and said, “Prophesy to us, + +ers slapped Him +Peter Denies Jesus +Christ! Who hit You?” +(Mark 14:66–72 ; Luke 22:54–62 ; John 18:15–18) + +69 + +Meanwhile, Peter was sitting out in the court- +yard, and a servant girl came up to him. “You also +70 +were with Jesus the Galilean,” she said. + +But he denied it before them all: “I do not know + +71 +what you are talking about.” + +When Peter had gone out to the gateway, an- +other servant girl saw him and said to the people +72 +there, “This man was with Jesus of Nazareth.” + +And again he denied it with an oath: “I do not + +73 +know the man!” + +After a little while, those standing nearby came +up to Peter. “Surely you are one of them,” they +74 +said, “for your accent gives you away.” + +At that he began to curse and swear to them, “I + +do not know the man!” +75 +And immediately a rooster crowed. + +Then Peter remembered the word that Jesus +had spoken: “Before the rooster crows, you will +deny Me three times.” And he went outside and +Jesus Delivered to Pilate (Mark 15:1–5) +wept bitterly. + +27 + +When morning came, all the chief priests +and elders of the people conspired +against Jesus to put Him to death. +They bound +Him, led Him away, and handed Him over to +a 64 +Pilate the governor. + +the right hand of the Mighty One + +b 64 + +2 + +d 16 + +Jesus Barabbas + +3 + +When Judas, who had betrayed Him, saw that +Jesus was condemned, he was filled with re- +morse and returned the thirty pieces of silver to +“I have sinned by +the chief priests and elders. +betraying innocent blood,” he said. + +4 + +“What is that to us?” they replied. “You bear the +5 +responsibility.” + +So Judas threw the silver into the temple and + +6 +left. Then he went away and hanged himself. + +7 + +The chief priests picked up the pieces of silver +and said, “It is unlawful to put this into the treas- +ury, since it is blood money.” +After conferring +together, they used the money to buy the potter’s +field as a burial place for foreigners. +That is why +9 +it has been called the Field of Blood to this day. +Then what was spoken through Jeremiah the + +8 + +prophet was fulfilled: + +10 + +“They took the thirty pieces of silver, +the price set on Him by the people + c + +of Israel, + +Jesus before Pilate (Lk. 23:1–5 ; John 18:28–40) + +and they gave them for the potter’s field, +as the Lord had commanded me.” + +11 + +Meanwhile Jesus stood before the governor, +who questioned Him: “Are You the King of the +Jews?” +12 + “You have said so,” Jesus replied. + +And when He was accused by the chief priests + +13 +and elders, He gave no answer. + +Then Pilate asked Him, “Do You not hear how + +14 +many charges they are bringing against You?” + +But Jesus gave no answer, not even to a single + +The Crowd Chooses Barabbas +charge, much to the governor’s amazement. +(Mark 15:6–11 ; Luke 23:13–25) +15 + +16 + +Now it was the governor’s custom at the feast +to release to the crowd a prisoner of their choos- +d +17 +At that time they were holding a notorious +ing. +prisoner named Barabbas. +So when the crowd +had assembled, Pilate asked them, “Which one do +18 +you want me to release to you: Barabbas, or Jesus +For he knew it was out +who is called Christ?” +19 +of envy that they had handed Jesus over to him. + +While Pilate was sitting on the judgment seat, +his wife sent him this message: “Have nothing to +do with that innocent man, for I have suffered +terribly in a dream today because of Him.” +Barabbas + +c 10 + +Or +11:12–13. + +SBL and NA + +; also in verse 17, but universally called + + in verses 20, 21, and 26 + +See Ps. 110:1 and Dan. 7:13. + +See Jer. 19:1–15, Jer. 32:6–9, and Zech. + + 892 | Matthew 27:20 + +20 + +But the chief priests and elders persuaded the +crowds to ask for Barabbas and to have Jesus put +21 +to death. + +“Which of the two do you want me to release + +to you?” asked the governor. +22 +“Barabbas,” they replied. + +offered Him wine to drink, mixed with gall; but +35 +after tasting it, He refused to drink it. + +b + +36 + +When they had crucified Him, they divided up +And sitting + +His garments by casting lots. +37 +down, they kept watch over Him there. + +Above His head they posted the written charge + +“What then should I do with Jesus who is called + +against Him: + +Christ?” Pilate asked. +23 +They all answered, “Crucify Him!” + +38 + +THIS IS JESUS, +THE KING OF THE JEWS. + + c + +“Why?” asked Pilate. “What evil has He done?” + +Pilate Washes His Hands (Mark 15:12–15) +But they shouted all the louder, “Crucify Him!” +24 + +When Pilate saw that he was accomplishing +nothing, but that instead a riot was breaking out, +he took water and washed his hands before the +crowd. “I am innocent of this man’s blood, +” he +25 +said. “You bear the responsibility.” + +a + +All the people answered, “His blood be on us + +26 +and on our children!” + +So Pilate released Barabbas to them. But he +had Jesus flogged, and handed Him over to be +The Soldiers Mock Jesus (Isaiah 50:4–11 ; +crucified. +Mark 15:16–20 ; Luke 22:63–65 ; John 19:1–15) + +27 + +28 + +29 + +Then the governor’s soldiers took Jesus into +the Praetorium and gathered the whole company +around Him. +They stripped Him and put a scar- +let robe on Him. +And they twisted together a +crown of thorns and set it on His head. They put +a staff in His right hand, knelt down before Him, +30 +and mocked Him, saying, “Hail, King of the Jews!” +Then they spit on Him and took the staff and + +31 +struck Him on the head repeatedly. + +After they had mocked Him, they removed the +robe and put His own clothes back on Him. Then +The Crucifixion (Psalm 22:1–31 ; +they led Him away to crucify Him. +Mark 15:21–32 ; Luke 23:26–43 ; John 19:16–27) + +32 + +Along the way they found a man from Cyrene, +named Simon, and they forced him to carry the +33 +cross of Jesus. + +34 + +Two robbers + + were crucified with Him, one on + +39 +His right and the other on His left. + +40 +And those who passed by heaped abuse on +and saying, “You who +Him, shaking their heads +are going to destroy the temple and rebuild it in +three days, save Yourself! If You are the Son of +41 +God, come down from the cross!” + +42 + +In the same way, the chief priests, scribes, and +“He saved others, +elders mocked Him, saying, +but He cannot save Himself. He is the King of Is- +rael! Let Him come down now from the cross, +He trusts in God. +and we will believe in Him. +Let God deliver Him now if He wants Him. + For +44 +He said, ‘I am the Son of God.’ + +43 + +” + +d + +In the same way, even the robbers who were + +The Death of Jesus +crucified with Him berated Him. +(Psalm 22:1–31 ; Mark 15:33–41 ; + Luke 23:44–49 ; John 19:28–30) + +45 + + e + +46 + +From the sixth hour until the ninth hour + +ness came over all the land. +hour Jesus cried out in a loud voice, “Eli, Eli, +lema sabachthani?” which means, “My God, My +47 +God, why have You forsaken Me?” + + g + + dark- +f +About the ninth + +48 + +When some of those standing there heard this, +One of them +they said, “He is calling Elijah.” +h +quickly ran and brought a sponge. He filled it +i + put it on a reed, and held it up +with sour wine, +49 +for Jesus to drink. + + j + +But the others said, “Leave Him alone. Let us + +50 +see if Elijah comes to save Him.” + +51 + +When Jesus had cried out again in a loud voice, +At that moment the +He yielded up His spirit. +veil of the temple was torn in two from top to +bottom. The earth quaked, and the rocks were + +And when they came to a place called Golgo- +they + +this righteous blood +a 24 +tha, which means The Place of the Skull, +through the prophet: “They divided My garments among them, and cast lots for My clothing.” +f 46 + +; BYZ and TR +e 45 + +this blood + +Literally + +d 43 + +b 35 + +See Psalm 22:18; TR includes +j 49 + +filled it with wine vinegar +h 48 +g 46 +in verse 44 +Psalm 22:8 +and pierced His side, and water and blood flowed out + +i 48 + +That is, from noon until three in the afternoon + +NE and WH + +Psalm 22:1 + +Or + +See Psalm 69:21. + +WH includes + +; see John 19:34. + +to fulfill what was said +insurrectionists +c 38 +Eloi, Eloi +And another took a spear + +Or + +; also + + 52 + +2 + +Matthew 28:20 | 893 + +split. +The tombs broke open, and the bodies of +53 +many saints who had fallen asleep were raised. +After Jesus’ resurrection, when they had come +out of the tombs, they entered the holy city and +54 +appeared to many people. + +When the centurion and those with him who +were guarding Jesus saw the earthquake and all +that had happened, they were terrified and said, +55 +“Truly this was the Son of God.” + +56 + +And many women were there, watching from +a distance. They had followed Jesus from Galilee +Among them were Mary +to minister to Him. +Magdalene, Mary the mother of James and Jo- +The Burial of Jesus +seph, and the mother of Zebedee’s sons. +(Isaiah 53:9–12 ; Mark 15:42–47 ; + Luke 23:50–56 ; John 19:38–42) + +57 + +58 + +When it was evening, there came a rich man +from Arimathea named Joseph, who himself was +He went to Pilate to ask for +a disciple of Jesus. +59 +the body of Jesus, and Pilate ordered that it be +60 +given to him. +So Joseph took the body, +and placed it +wrapped it in a clean linen cloth, +in his own new tomb that he had cut into the +61 +rock. Then he rolled a great stone across the +Mary +entrance to the tomb and went away. +Magdalene and the other Mary were sitting there +The Guards at the Tomb +opposite the tomb. +62 + +64 + +63 + +The next day, the one after Preparation Day, +the chief priests and Pharisees assembled before +Pilate. +“Sir,” they said, “we remember that +while He was alive that deceiver said, ‘After three +So give the order that the +days I will rise again.’ +tomb be secured until the third day. Otherwise, +His disciples may come and steal Him away and +tell the people He has risen from the dead. And +65 +this last deception would be worse than the first.” + +66 + +“You have a guard,” Pilate said. “Go, make the +So they +tomb as secure as you know how.” +went and secured the tomb by sealing the stone +The Resurrection +and posting the guard. +(Mark 16:1–8 ; Luke 24:1–12 ; John 20:1–9) + +28 + +a + +After the Sabbath, at dawn on the first + Mary Magdalene and +day of the week, + +3 + +Suddenly there was a great earthquake, for an +angel of the Lord descended from heaven, rolled +His appearance +away the stone, and sat on it. +was like lightning, and his clothes were white as +snow. +The guards trembled in fear of him and +5 +became like dead men. + +4 + +b + +7 + +6 + +But the angel said to the women, “Do not be +afraid, for I know that you are looking for Jesus, +who was crucified. +He is not here; He has risen, +just as He said! Come, see the place where He +Then go quickly and tell His disciples, ‘He +lay. +has risen from the dead and is going ahead of you +into Galilee. There you will see Him.’ See, I have +8 +told you.” + + c +So they hurried away from the tomb in fear and + +9 + +Suddenly + +great joy, and ran to tell His disciples. +Jesus met them and said, “Greetings!” They came +10 +to Him, grasped His feet, and worshiped Him. +“Do not be afraid,” said Jesus. “Go and tell My +The Report of the Guards +brothers to go to Galilee. There they will see Me.” +11 + +12 + +13 + +While the women were on their way, some of +the guards went into the city and reported to the +chief priests all that had happened. +And after +the chief priests had met with the elders and +formed a plan, they gave the soldiers a large sum +and instructed them: “You are to say, +of money +14 +‘His disciples came by night and stole Him away +If this report reaches +while we were asleep.’ +the governor, we will satisfy him and keep you +15 +out of trouble.” + +So the guards took the money and did as they +were instructed. And this account has been cir- +The Great Commission (Mark 16:14–18) +culated among the Jews to this very day. +16 + +Meanwhile, the eleven disciples went to Gali- +17 +lee, to the mountain Jesus had designated. +When they saw Him, they worshiped Him, but + +18 +some doubted. + + d + +19 + +Then Jesus came to them and said, “All author- +ity in heaven and on earth has been given to +Me. + of all +Therefore go and make disciples +20 +nations, baptizing them in the name of the Father +and of the Son and of the Holy Spirit, +and +teaching them to obey all that I have commanded +you. And surely I am with you always, even to the +end of the age.” + +b 6 + +where the Lord lay +Having gone, therefore, make disciples + +the other Mary went to see the tomb. +a 1 +c 9 + +They were going to tell His disciples, and suddenly d 19 + +Now after the Sabbaths, it being dawn toward the first of the Sabbaths, + +Literally +BYZ and TR + +Literally + +BYZ and TR + + Mark + +The Mission of John the Baptist (Isa. 40:1–5 ; +Matthew 3:1–17 ; Luke 3:1–22 ; John 1:19–34) + +The First Disciples +(Matthew 4:18–22 ; Luke 5:1–11 ; John 1:35–42) + +1 + +a + +2 + +16 + +17 + +As Jesus was walking beside the Sea of Galilee, +He saw Simon and his brother Andrew. They +were casting a net into the sea, for they were fish- +“Come, follow Me,” Jesus said, “and I +ermen. +And at once they +will make you fishers of men.” +19 +left their nets and followed Him. + +18 + +20 + +Going on a little farther, He saw James son of +Zebedee and his brother John. They were in a +Immediately Jesus +boat, mending their nets. +called them, and they left their father Zebedee in +Jesus Expels an Unclean Spirit (Luke 4:31–37) +the boat with the hired men and followed Him. +21 + +Then Jesus and His companions went to +Capernaum, and right away Jesus entered the +22 +synagogue on the Sabbath and began to teach. +The people were astonished at His teaching, +because He taught as one who had authority, and +23 +not as the scribes. + +24 + +Suddenly a man with an unclean spirit cried +“What do You want with +out in the synagogue: +us, Jesus of Nazareth? Have You come to destroy +25 +us? I know who You are—the Holy One of God!” + +26 + +But Jesus rebuked the spirit. “Be silent!” He +At this, the unclean +said. “Come out of him!” +spirit threw the man into convulsions and came +27 +out with a loud shriek. + +All the people were amazed and began to ask +one another, “What is this? A new teaching with +28 +authority! He commands even the unclean spir- +And the news about +its, and they obey Him!” +Jesus spread quickly through the whole region of +Jesus Heals at Peter’s House +Galilee. +(Matthew 8:14–17 ; Luke 4:38–41) + +29 + +This is the beginning of the gospel of Jesus +As it is written in +Christ, the Son of God. + + b + +Isaiah the prophet: + +“Behold, I will send My messenger ahead +3 + +of You, + + c + +who will prepare Your way.” + +“A voice of one calling in the wilderness, + + d +‘Prepare the way for the Lord, +make straight paths for Him.’ +” + +4 + +5 + +John the Baptist appeared in the wilderness, +preaching a baptism of repentance for the for- +giveness of sins. +People went out to him from all +of Jerusalem and the countryside of Judea. Con- +fessing their sins, they were baptized by him in +6 +the Jordan River. + +7 + +John was clothed in camel’s hair, with a leather +belt around his waist. His food was locusts and +wild honey. +And he proclaimed: “After me will +come One more powerful than I, the straps of +8 +whose sandals I am not worthy to stoop down +and untie. + but He will +I baptize you with water, +9 +baptize you with the Holy Spirit. + +” + +e + +f + +10 + +In those days Jesus came from Nazareth in Gal- + g +As + +ilee and was baptized by John in the Jordan. +soon as Jesus came up out of the water, He saw +the heavens breaking open and the Spirit de- +scending on Him like a dove. +And a voice came +from heaven: “You are My beloved Son; in You I +The Temptation and Preaching of Jesus +am well pleased.” +(Matthew 4:1–17 ; Luke 4:1–15) + +11 + +12 + +13 + +At once the Spirit drove Jesus into the wilder- +ness, +and He was there for forty days, being +tempted by Satan. He was with the wild animals, +14 +and the angels ministered to Him. +h + +15 + +After the arrest of John, Jesus went into Galilee +and proclaimed the gospel of God. +“The time +is fulfilled,” He said, “and the kingdom of God is +a 1 +near. Repent and believe in the gospel!” +c 2 +h 14 + +d 3 +the gospel of the kingdom of God +Isaiah 40:3 (see also LXX) + +ECM, NE, BYZ, and TR; SBL and WH +Malachi 3:1 +BYZ and TR + +Or + +the beginning of the gospel of Jesus Christ. +in water + +e 8 + +30 + +As soon as Jesus and His companions had left +the synagogue, they went with James and John +Simon’s +to the home of Simon and Andrew. +mother-in-law was sick in bed with a fever, and +g 10 +BYZ and TR +Or + +in the prophets: +he saw + +in the Holy Spirit + +; see John 1:32–33 + +b 2 + +Or + +f 8 + + 31 + +3 + +4 + +Mark 2:18 | 895 + +So He went +they promptly told Jesus about her. +to her, took her by the hand, and helped her up. +32 +The fever left her, and she began to serve them. + +33 + +That evening, after sunset, people brought to +34 +and +Jesus all the sick and demon-possessed, +And He +the whole town gathered at the door. +healed many who were ill with various diseases +and drove out many demons. But He would not +allow the demons to speak, because they knew +Jesus Prays and Preaches (Luke 4:42–44) +who He was. +35 + +36 + +Early in the morning, while it was still dark, +Jesus got up and went out to a solitary place to +37 +pray. +Simon and his companions went to look +for Him, +and when they found Him, they said, +38 +“Everyone is looking for You!” + +39 + +But Jesus answered, “Let us go on to the neigh- +boring towns so I can preach there as well, for +that is why I have come.” +So He went through- +out Galilee, preaching in their synagogues and +The Leper’s Prayer +driving out demons. +(Lev. 14:1–32 ; Matthew 8:1–4 ; Luke 5:12–16) + +40 + + a + +Then a leper + + came to Jesus, begging on his +knees: “If You are willing, You can make me +41 +clean.” + +b + +42 + +Moved with compassion, + + Jesus reached out +His hand and touched the man. “I am willing,” He +said. “Be clean!” +And immediately the leprosy +43 +left him, and the man was cleansed. + +44 + +Jesus promptly sent him away with a stern +warning: +“See that you don’t tell anyone. But +go, show yourself to the priest and present the +offering Moses prescribed for your cleansing, as +45 +a testimony to them.” + + c + +But the man went out and openly began to pro- + +claim and spread the news. + +Consequently, Jesus could no longer enter a town +in plain view, but He stayed out in solitary places. +Jesus Heals a Paralytic +Yet people came to Him from every quarter. +(Matthew 9:1–8 ; Luke 5:17–26) + +2 + +2 + +A few days later Jesus went back to Caper- +naum. And when the people heard that He +they gathered in such large numbers +was home, +that there was no more room, not even outside +a 40 +the door, as Jesus spoke the word to them. + +leper + +A +14:1–32. + +and drink +d 16 + was one afflicted with a skin disease. See Leviticus 13. + +BYZ and TR include + +; see Luke 5:30. + +Then a paralytic was brought to Him, carried by +Since they were unable to get to Jesus +four men. +through the crowd, they uncovered the roof +above Him, made an opening, and lowered the +5 +paralytic on his mat. + +When Jesus saw their faith, He said to the para- + +6 +lytic, “Son, your sins are forgiven.” + +7 + +But some of the scribes were sitting there and +“Why does this man +thinking in their hearts, +speak like this? He is blaspheming! Who can for- +8 +give sins but God alone?” + +9 + +At once Jesus knew in His spirit that they were +thinking this way within themselves. “Why are +you thinking these things in your hearts?” He +“Which is easier: to say to a paralytic, +asked. +‘Your sins are forgiven,’ or to say, ‘Get up, pick up +But so that you may know +your mat, and walk’? +that the Son of Man has authority on earth to for- +give sins +“I tell you, +” He said to the paralytic, +12 +get up, pick up your mat, and go home.” + +. . . + +10 + +11 + +And immediately the man got up, picked up his +mat, and walked out in front of them all. As a re- +sult, they were all astounded and glorified God, +Jesus Calls Levi (Matt. 9:9–13 ; Luke 5:27–32) +saying, “We have never seen anything like this!” +13 + +Once again Jesus went out beside the sea. All +the people came to Him, and He taught them +14 +there. + +As He was walking along, He saw Levi son of +Alphaeus sitting at the tax booth. “Follow Me,” He +15 +told him, and Levi got up and followed Him. + +16 + +While Jesus was dining at Levi’s house, many +tax collectors and sinners were eating with Him +and His disciples—for there were many who fol- +When the scribes who were Phari- +lowed Him. +sees saw Jesus eating with these people, they + with tax +asked His disciples, “Why does He eat +17 +collectors and sinners?” + + d + +On hearing this, Jesus told them, “It is not the +healthy who need a doctor, but the sick. I have +Questions about Fasting +not come to call the righteous, but sinners.” +(Matthew 9:14–15 ; Luke 5:33–35) + +18 + +Now John’s disciples and the Pharisees were +often fasting. So people came to Jesus and asked, +“Why don’t Your disciples fast like John’s disci- +ples and those of the Pharisees?” + +Moved with indignation + +b 41 + +c 44 + +SBL + +See Leviticus + + 896 | Mark 2:19 + +19 + +6 + +20 + +Jesus replied, “How can the guests of the bride- +groom fast while He is with them? As long as He +But the time will +is with them, they cannot fast. +come when the bridegroom will be taken from +The Patches and the Wineskins +them; then they will fast. +(Matthew 9:16–17 ; Luke 5:36–39) + +21 + +No one sews a patch of unshrunk cloth on an +old garment. If he does, the new piece will pull +22 +away from the old, and a worse tear will result. + +And no one pours new wine into old wine- +skins. If he does, the wine will burst the skins, +and both the wine and the wineskins will be +ruined. Instead, new wine is poured into new +The Lord of the Sabbath +wineskins.” +(1 Samuel 21:1–7 ; Matthew 12:1–8 ; Luke 6:1–5) + + a + +23 + +One Sabbath Jesus was passing through the +grainfields, and His disciples began to pick +the heads of grain as they walked along. +So the +Pharisees said to Him, “Look, why are they doing +25 +what is unlawful on the Sabbath?” + +24 + +26 + +Jesus replied, “Have you never read what Da- +vid did when he and his companions were hun- +gry and in need? +During the high priesthood of +b +Abiathar, he entered the house of God and ate the +consecrated bread, + which was lawful only for +the priests. And he gave some to his companions +27 +as well.” + +28 + +Then Jesus declared, “The Sabbath was made +Therefore, + +for man, not man for the Sabbath. +Jesus Heals on the Sabbath +the Son of Man is Lord even of the Sabbath.” +(Matthew 12:9–14 ; Luke 6:6–11) + +3 + +2 + +Once again Jesus entered the synagogue, and +In +a man with a withered hand was there. +order to accuse Jesus, they were watching to see +3 +if He would heal on the Sabbath. + +4 + +Then Jesus said to the man with the withered +hand, “Stand up among us.” +And He asked them, +“Which is lawful on the Sabbath: to do good or to +do evil, to save life or to destroy it?” +5 +But they were silent. + +Jesus looked around at them with anger and +sorrow at their hardness of heart. Then He said +to the man, “Stretch out your hand.” So he +a 22 +stretched it out, and it was restored. +c 14 +e 16 +g 19 + +Tischendorf does not include +ECM, +who also betrayed Him +SBL, NE, and WH; ECM, BYZ, and TR do not include +Literally + +SBL, NE, BYZ, and TR do not include + +Literally + +h 20 + +At this, the Pharisees went out and began plot- +ting with the Herodians how they might kill +Jesus Heals the Multitudes +Jesus. +(Matthew 4:23–25 ; Luke 6:17–19) + +7 + +8 + +So Jesus withdrew with His disciples to the sea, +accompanied by a large crowd from Galilee, Ju- +dea, +Jerusalem, Idumea, the region beyond the +Jordan, and the vicinity of Tyre and Sidon. The +large crowd came to Him when they heard what +9 +great things He was doing. + +Jesus asked His disciples to have a boat ready +10 +for Him so that the crowd would not crush Him. +For He had healed so many that all who had +11 +diseases were pressing forward to touch Him. +And when the unclean spirits saw Him, they +fell down before Him and cried out, “You are the +Son of God!” +But He warned them sternly not +The Twelve Apostles +to make Him known. +(Matthew 10:1–4 ; Luke 6:12–16) + +12 + +13 + +c + +14 + +Then Jesus went up on the mountain and +called for those He wanted, and they came to +Him. +He appointed twelve of them, whom He +15 +designated as apostles, + to accompany Him, to be +sent out to preach, + to +16 +drive out demons. + +and to have authority + + e + +d + +17 + +These are the twelve He appointed: + Simon +(whom He named Peter), +James son of Zebe- +18 +dee and his brother John (whom He named Boa- +nerges, meaning “Sons of Thunder”), +Andrew, +f +Philip, Bartholomew, Matthew, Thomas, James +19 +son of Alphaeus, Thaddaeus, Simon the Zealot, +A House Divided +(Matthew 12:22–30 ; Luke 11:14–23) + +and Judas Iscariot, who betrayed Jesus. + +g + +20 + +h + +21 + +Then Jesus went home, + + and once again a +crowd gathered, so that He and His disciples +could not even eat. +When His family heard +about this, they went out to take custody of Him, +22 +saying, “He is out of His mind.” + +i + +And the scribes who had come down from +Jerusalem were saying, “He is possessed by +Beelzebul, +” and, “By the prince of the demons He +23 +drives out demons.” + +Instead, new wine is poured into new wineskins + +whom He designated as apostles + +So Jesus called them together and began to +speak to them in parables: “How can Satan drive + +the Bread of the Presence + +b 26 + +to heal sicknesses, and + +These are the twelve He appointed + +Simon the Cananean + +Then He comes to a house + +Beelzebub + +d 15 +. +i 22 + +Or +f 18 +BYZ and TR include +Beezeboul +. + +Greek + +WH + +; Vulgate + + Mark 4:21 | 897 + +24 + +25 + +8 + +If a kingdom is divided against +out Satan? +26 +If a house is divided +itself, it cannot stand. +And if Satan is +against itself, it cannot stand. +27 +divided and rises against himself, he cannot +stand; his end has come. +Indeed, no one can en- +ter a strong man’s house to steal his possessions +unless he first ties up the strong man. Then he +The Unpardonable Sin (Matthew 12:31–32) +can plunder his house. +28 + +Still other seed fell on good soil, where it +sprouted, grew up, and produced a crop—one +bearing thirtyfold, another sixtyfold, and another +9 +a hundredfold.” + +Then Jesus said, “He who has ears to hear, let + +The Purpose of Jesus’ Parables +him hear.” +(Isaiah 6:1–13 ; Matthew 13:10–17 ; Luke 8:9–10) + +10 + +29 + +Truly I tell you, the sons of men will be for- +given all sins and blasphemies, as many as they +But whoever blasphemes against the +utter. +Holy Spirit will never be forgiven; he is guilty of +30 +eternal sin.” + +Jesus made this statement because they were + +Jesus’ Mother and Brothers +saying, “He has an unclean spirit.” +(Matthew 12:46–50 ; Luke 8:19–21) + +31 + +As soon as Jesus was alone with the Twelve +and those around Him, they asked Him about the +11 +parable. + +He replied, “The mystery of the kingdom of God +has been given to you, but to those on the outside +everything is expressed in parables, + +so that, + +12 + +‘they may be ever seeing but never + +perceiving, + +and ever hearing but never + +understanding; + + b + +32 + +Then Jesus’ mother and brothers came and +stood outside. They sent someone in to summon + a +Him, +and a crowd was sitting around Him. +“Look,” He was told, “Your mother and brothers +33 +are outside, asking for You.” + +34 + +But Jesus replied, “Who are My mother and My +Looking at those seated in a circle +brothers?” +35 +around Him, He said, “Here are My mother and +For whoever does the will of God +My brothers! +The Parable of the Sower +is My brother and sister and mother.” +(Matthew 13:1–9 ; Luke 8:4–8) + +4 + +Once again Jesus began to teach beside the +sea, and such a large crowd gathered around +Him that He got into a boat and sat in it, while all +2 +the people crowded along the shore. + +3 + +And He taught them many things in parables, +4 +“Listen! A farmer +and in His teaching He said, +And as he was sowing, +went out to sow his seed. +some seed fell along the path, and the birds came +5 +and devoured it. + +6 + +Some fell on rocky ground, where it did not +have much soil. It sprang up quickly because the +soil was shallow. +But when the sun rose, the +seedlings were scorched, and they withered be- +7 +cause they had no root. + +otherwise they might turn + +The Parable of the Sower Explained +(Matthew 13:18–23 ; Luke 8:11–15) + +and be forgiven.’ + +” + +13 + +Then Jesus said to them, “Do you not +understand this parable? Then how will you un- +15 +14 +derstand any of the parables? + + c + +The farmer sows the word. + +Some are like the + along the path, where the word is sown. +seeds +As soon as they hear it, Satan comes and takes +16 +away the word that was sown in them. + +17 + +Some are like the seeds sown on rocky ground. +They hear the word and at once receive it with +joy. +But they themselves have no root, and they +remain for only a season. When trouble or perse- +cution comes because of the word, they quickly +18 +fall away. + +19 + +Others are like the seeds sown among the +but the worries of +thorns. They hear the word, +this life, the deceitfulness of wealth, and the de- +sire for other things come in and choke the word, +20 +and it becomes unfruitful. + +Still others are like the seeds sown on good +soil. They hear the word, receive it, and produce +The Lesson of the Lamp (Luke 8:16–18) +a crop—thirtyfold, sixtyfold, or a hundredfold.” +21 + +Other seed fell among thorns, which grew up +and choked the seedlings, and they yielded no +a 32 +crop. + +and Your sisters +Now these are the ones + +Jesus also said to them, “Does anyone bring in +b 12 +a lamp to put it under a basket or under a bed? + +the word + +c 15 + +ECM, SBL, WH, and TR; NE and BYZ include + +. + +Isaiah 6:9–10 (see also LXX) + +Or + +; + +similarly in verses 16, 18, and 20; literally + + 898 | Mark 4:22 + +22 + +39 + +For there is noth- +Doesn’t he set it on a stand? +ing hidden that will not be disclosed, and nothing +23 +concealed that will not be brought to light. +24 + +If anyone has ears to hear, let him hear.” + +He went on to say, “Pay attention to what you +hear. With the measure you use, it will be meas- +25 +ured to you, and even more will be added to you. +For whoever has will be given more. But +whoever does not have, even what he has will be +The Seed Growing Secretly +taken away from him.” +26 + +27 + +Jesus also said, “The kingdom of God is like a +man who scatters seed on the ground. +Night +and day he sleeps and wakes, and the seed +28 +sprouts and grows, though he knows not how. +All by itself the earth produces a crop—first +the stalk, then the head, then grain that ripens +And as soon as the grain is ripe, he +within. +a +swings the sickle, because the harvest has +The Parable of the Mustard Seed +come. +(Matthew 13:31–32 ; Luke 13:18–19) + +29 + +” + +30 + +31 + +Then He asked, “To what can we compare the +kingdom of God? With what parable shall we pre- +It is like a mustard seed, which is the +sent it? +But +smallest of all seeds sown upon the earth. +after it is planted, it grows to be the largest of all +garden plants and puts forth great branches, so +33 +that the birds of the air nest in its shade.” + +32 + +34 + +With many such parables Jesus spoke the +word to them, to the extent that they could +He did not tell them anything +understand. +without using a parable. But privately He +Jesus Calms the Storm +explained everything to His own disciples. +(Psalm 107:1–43 ; Matt. 8:23–27 ; Luke 8:22–25) + +35 + +36 + +When that evening came, He said to His disci- +ples, “Let us cross to the other side.” +After they +had dismissed the crowd, they took Jesus with +them, since He was already in the boat. And there +37 +were other boats with Him. + +Soon a violent windstorm came up, and the +38 +waves were breaking over the boat, so that it +But Jesus was in the +was being swamped. +stern, sleeping on the cushion. So they woke Him +and said, “Teacher, don’t You care that we are +perishing?” +Gadarenes +a 29 +sea + +b 1 + +Then Jesus got up and rebuked the wind and +the sea. “Silence!” He commanded. “Be still!” And +40 +the wind died down, and it was perfectly calm. + +“Why are you so afraid?” He asked. “Do you + +41 +still have no faith?” + +Overwhelmed with fear, they asked one an- +other, “Who is this, that even the wind and the +The Demons and the Pigs +sea obey Him?” +(Matthew 8:28–34 ; Luke 8:26–39) + +5 + +b + +2 + +4 + +3 + +On the other side of the sea, they arrived in +As soon as Je- +the region of the Gerasenes. +sus got out of the boat, He was met by a man with +an unclean spirit, who was coming from the +This man had been living in the tombs +tombs. +and could no longer be restrained, even with +Though he was often bound with chains +chains. +and shackles, he had broken the chains and shat- +5 +tered the shackles. Now there was no one with +Night and day in the +the strength to subdue him. +tombs and in the mountains he kept crying out +6 +and cutting himself with stones. + +7 + +When the man saw Jesus from a distance, he ran +And he +and fell on his knees before Him. +shouted in a loud voice, “What do You want with +me, Jesus, Son of the Most High God? I beg You +For Jesus had +before God not to torture me!” +already declared, “Come out of this man, you +9 +unclean spirit!” + +8 + +“What is your name?” Jesus asked. + +10 + +“My name is Legion,” he replied, “for we are +And he begged Jesus repeatedly not to +many.” +11 +send them out of that region. + +12 + +There on the nearby hillside a large herd of +So the demons begged Jesus, +pigs was feeding. +13 +“Send us to the pigs, so that we may enter them.” + +He gave them permission, and the unclean +spirits came out and went into the pigs, and +the herd of about two thousand rushed down the +steep bank into the sea and drowned in the +14 +water. + +c + +15 + +Those tending the pigs ran off and reported +this in the town and countryside, and the people +went out to see what had happened. +When +they came to Jesus, they saw the man who had +been possessed by the legion of demons sitting +there, clothed and in his right mind; and they +were afraid. +Gergesenes + +and were drowned in the + +c 13 + +See Joel 3:13, including LXX. + +BYZ and TR + +; GOC + +Literally + + 16 + +34 + +Mark 6:6 | 899 + +17 + +Those who had seen it described what had +happened to the demon-possessed man and also +And the people began to beg Jesus +to the pigs. +18 +to leave their region. + +19 + +As He was getting into the boat, the man who +had been possessed by the demons begged to go +But Jesus would not allow him. “Go +with Him. +home to your own people,” He said, “and tell +them how much the Lord has done for you, and +20 +what mercy He has shown you.” + + a +So the man went away and began to proclaim + how much Jesus had + +throughout the Decapolis +The Healing Touch of Jesus +done for him. And everyone was amazed. +(Matthew 9:18–26 ; Luke 8:40–56) + +21 + +22 + +When Jesus had again crossed by boat to the +other side, a large crowd gathered around Him +A synagogue leader named +beside the sea. +23 +Jairus arrived, and seeing Jesus, he fell at His feet +and pleaded with Him urgently, “My little +daughter is near death. Please come and place +Your hands on her, so that she will be healed and +24 +live.” + +25 + +So Jesus went with him, and a large crowd fol- +And a woman +lowed and pressed around Him. +26 +was there who had suffered from bleeding for +She had borne much agony un- +twelve years. +der the care of many physicians and had spent all +she had, but to no avail. Instead, her condition +27 +had only grown worse. + +28 + +When the woman heard about Jesus, she came +up through the crowd behind Him and touched +For she kept saying, “If only I touch +His cloak. +Immediately +His garments, I will be healed.” +her bleeding stopped, and she sensed in her body +30 +that she was healed of her affliction. + +29 + +At once Jesus was aware that power had gone +out from Him. Turning to the crowd, He asked, +31 +“Who touched My garments?” + +His disciples answered, “You can see the +crowd pressing in on You, and yet You ask, ‘Who +32 +touched Me?’” + +33 + +But He kept looking around to see who had +Then the woman, knowing what had +done this. +happened to her, came and fell down before Him +trembling in fear, and she told Him the whole +truth. +a 20 + + b 36 + +c 3 Joses + +ignored + +“Daughter,” said Jesus, “your faith has healed + +35 +you. Go in peace and be free of your affliction.” + +While He was still speaking, messengers from +the house of Jairus arrived and said, “Your +daughter is dead; why bother the Teacher any- + b +36 +more?” + +But Jesus overheard + + their conversation and +37 +said to Jairus, “Do not be afraid; just believe.” +And He did not allow anyone to accompany +Him except Peter, James, and John the brother of +38 +James. + +When they arrived at the house of the syna- +gogue leader, Jesus saw the commotion and the +people weeping and wailing loudly. +He went +inside and asked, “Why all this commotion and +40 +weeping? The child is not dead, but asleep.” + +39 + +And they laughed at Him. + +42 + +41 + +After He had put them all outside, He took the +child’s father and mother and His own compan- +Taking her +ions, and went in to see the child. +by the hand, Jesus said, “Talitha koum!” which +Imme- +means, “Little girl, I say to you, get up!” +diately the girl got up and began to walk around +43 +(she was twelve years old). And at once they +Then Jesus gave strict +were utterly astounded. +orders that no one should know about this, and +The Rejection at Nazareth +He told them to give her something to eat. +(Matthew 13:53–58 ; Luke 4:16–30) + +6 + +2 + +Jesus went on from there and came to His +hometown, accompanied by His disciples. +When the Sabbath came, He began to teach in +the synagogue, and many who heard Him were +astonished. “Where did this man get these +ideas?” they asked. “What is this wisdom He has +been given? And how can He perform such mira- +Isn’t this the carpenter, the son of Mary +cles? +and the brother of James, Joses, + Judas, and Si- +mon? Aren’t His sisters here with us as well?” +4 +And they took offense at Him. + +3 + +c + +5 + +Then Jesus said to them, “Only in his hometown, +among his relatives, and in his own household is +So He could not per- +a prophet without honor.” +form any miracles there, except to lay His hands +And He was +on a few of the sick and heal them. +amazed at their unbelief. + +6 + +And He went around from village to village, +teaching the people. + +Joseph + +That is, the Ten Cities + +Or + + is a variant of + +; see Matthew 13:55. + + 900 | Mark 6:7 + +The Ministry of the Twelve +(Matthew 10:5–15 ; Luke 9:1–6) + +7 + +Then Jesus called the Twelve to Him and began +8 +to send them out two by two, giving them author- +ity over unclean spirits. +He instructed them to + a +take nothing but a staff for the journey—no +and to +bread, no bag, no money +10 +wear sandals, but not a second tunic. + + in their belts— + +9 + +11 + +And He told them, “When you enter a house, +If anyone +stay there until you leave that area. +will not welcome you or listen to you, shake the + b +dust off your feet when you leave that place, as a +12 +testimony against them.” + +13 + +So they set out and preached that the people +They also drove out many de- +should repent. +mons and healed many of the sick, anointing +The Beheading of John +them with oil. +(Matthew 14:1–12 ; Luke 9:7–9) + +14 + +c + +Now King Herod heard about this, for Jesus’ +name had become well known, and people were +saying, + “John the Baptist has risen from the +dead! That is why miraculous powers are at +Others were saying, “He is Eli- +work in him.” +jah,” and still others, “He is a prophet, like one of +16 +the prophets of old.” + +15 + +But when Herod heard this, he said, “John, +17 +whom I beheaded, has risen from the dead!” +For Herod himself had ordered that John be ar- +rested and bound and imprisoned, on account of +his brother Philip’s wife Herodias, whom Herod +For John had been telling Herod, +had married. +“It is not lawful for you to have your brother’s +19 +wife!” + +18 + +So Herodias held a grudge against John and +20 +wanted to kill him. But she had been unable, +because Herod feared John and protected him, +knowing that he was a righteous and holy man. +When he heard John’s words, he was greatly per- +21 +plexed; yet he listened to him gladly. + + d + +When the daughter of Herodias + +On Herod’s birthday, her opportunity arose. +Herod held a banquet for his nobles and military +22 +commanders and the leading men of Galilee. + came and +danced, she pleased Herod and his guests, and +the king said to the girl, “Ask me for whatever +b 11 +a 8 +And he +you wish, and I will give it to you.” +c 14 +judgment than for that town + +copper coins + +swore to her, “Whatever you ask of me, I will give +24 +you, up to half my kingdom!” + +Then she went out and asked her mother, + +“What should I request?” + +And her mother answered, “The head of John the +25 +Baptist.” + +At once the girl hurried back to the king with +her request: “I want you to give me the head of +26 +John the Baptist on a platter immediately.” + +27 + +The king was consumed with sorrow, but be- +cause of his oaths and his guests, he did not want +So without delay, the king com- +to refuse her. +manded that John’s head be brought in. He sent +28 +an executioner, who went and beheaded him in +The man brought John’s head on a +the prison. +platter and presented it to the girl, who gave it to +29 +her mother. + +When John’s disciples heard about this, they +The Feeding of the Five Thousand +came and took his body and placed it in a tomb. +(Matthew 14:13–21 ; Luke 9:10–17 ; John 6:1–15) + +30 + +31 + +Meanwhile, the apostles gathered around Je- +sus and brought Him news of all they had done +And He said to them, “Come with +and taught. +Me privately to a solitary place, and let us rest for +a while.” For many people were coming and go- +32 +ing, and they did not even have time to eat. + +33 + +So they went away in a boat by themselves to +But many people saw them +a solitary place. +leaving and recognized them. They ran together +34 +on foot from all the towns and arrived before +When Jesus stepped ashore and saw a +them. +large crowd, He had compassion on them, be- +cause they were like sheep without a shepherd. +35 +And He began to teach them many things. + +36 + +By now the hour was already late. So the disci- +ples came to Jesus and said, “This is a desolate +Dismiss the +place, and the hour is already late. +crowd so they can go to the surrounding coun- +tryside and villages and buy themselves some- +37 +thing to eat.” + +But Jesus told them, “You give them something + +to eat.” + + e + +23 + +They asked Him, “Should we go out and spend +two hundred denarii + to give all of them bread to +Truly I tell you, it will be more tolerable for Sodom and Gomorrah on the day of +eat?” +they were saying + +he was saying + +d 22 + +Or + +BYZ and TR include +When his daughter Herodias + +e 37 + +early manuscripts + +; see Matthew 10:15. + +Lit. + +Some +A denarius was customarily a day’s wage for a laborer; see Matt. 20:2. + +; some manuscripts + + 38 + +“Go and see how many loaves you have,” He + +told them. + +them touch the fringe of His cloak. And all who +The Tradition of the Elders (Matthew 15:1–9) +touched Him were healed. + +Mark 7:15 | 901 + +And after checking, they said, “Five—and two +39 +fish.” + +40 + +Then Jesus directed them to have the people +So they sat + +sit in groups on the green grass. +41 +down in groups of hundreds and fifties. + +Taking the five loaves and the two fish and +looking up to heaven, Jesus spoke a blessing and +broke the loaves. Then He gave them to His dis- +ciples to set before the people. And He divided +42 +the two fish among them all. + +43 + +44 + +They all ate and were satisfied, + +and the dis- +ciples picked up twelve basketfuls of broken +pieces of bread and fish. +And there were five +Jesus Walks on Water +thousand men who had eaten the loaves. +(Matthew 14:22–33 ; John 6:16–21) + +45 + +Immediately Jesus made His disciples get into +the boat and go on ahead of Him to Bethsaida, +while He dismissed the crowd. +After bidding +them farewell, He went up on the mountain to +47 +pray. + +46 + +48 + +When evening came, the boat was in the mid- +dle of the sea, and Jesus was alone on land. +He +could see that the disciples were straining to +row, because the wind was against them. About +the fourth watch of the night, + Jesus went out to +them, walking on the sea. He intended to pass by +them, +but when they saw Him walking on the +50 +sea, they cried out, thinking He was a ghost— + +49 + +a + +for they all saw Him and were terrified. + +51 + +But Jesus spoke up at once: “Take courage! It is I. +Do not be afraid.” +Then He climbed into the +52 +boat with them, and the wind died down. And the +disciples were utterly astounded, +for they had +not understood about the loaves, but their hearts +Jesus Heals at Gennesaret (Matt. 14:34–36) +had been hardened. +53 + +54 + +56 + +55 + +When they had crossed over, they landed at +Gennesaret and moored the boat. +As soon as +they got out of the boat, the people recognized +Jesus +and ran through that whole region, car- +rying the sick on mats to wherever they heard He +was. +And wherever He went—villages and +towns and countrysides—they laid the sick in +a 48 +the marketplaces and begged Him just to let + +b 3 + +7 + +2 + +Then the Pharisees and some of the scribes +who had come from Jerusalem gathered +and they saw some of His disci- +around Jesus, +ples eating with hands that were defiled—that is, +3 +unwashed. + +b + +4 + +Now in holding to the tradition of the elders, the +Pharisees and all the Jews do not eat until they +And on return- +wash their hands ceremonially. +ing from the market, they do not eat unless they +wash. And there are many other traditions for +them to observe, including the washing of cups, +5 +pitchers, kettles, and couches for dining. + +c + +So the Pharisees and scribes questioned Jesus: +“Why do Your disciples not walk according to the +tradition of the elders? Instead, they eat with de- +6 +filed hands.” + +Jesus answered them, “Isaiah prophesied cor- + +rectly about you hypocrites, as it is written: + +‘These people honor Me with their lips, +7 +but their hearts are far from Me. + +They worship Me in vain; + + d + +8 + +they teach as doctrine the precepts + +of men.’ + +e + +You have disregarded the commandment of + +9 +God to keep the tradition of men. + +” + + f + + h + +11 + +10 + +He went on to say, “You neatly set aside the +command of God to maintain + your own tradi- + g +tion. +For Moses said, ‘Honor your father and +your mother’ + and ‘Anyone who curses his +father or mother must be put to death.’ +But +you say that if a man says to his father or mother, +12 +‘Whatever you would have received from me is +he is no +Corban’ (that is, a gift devoted to God), +longer permitted to do anything for his father or +mother. +Thus you nullify the word of God by +the tradition you have handed down. And you do +What Defiles a Man (Matthew 15:10–20) +so in many such matters.” +14 + +13 + +Once again Jesus called the crowd to Him and +15 +said, “All of you, listen to Me and understand: +Nothing that enters a man from the outside +can defile him; but the things that come out of a +man, these are what defile him.” + +until they have washed their hands to the fist +e 8 + +c 4 + +—washings of pots and cups and +NE and +h 10 + + i + +cups, pitchers, and kettles. +That is, between three and six in the morning +Literally +g 10 +establish +Isaiah 29:13 (see also LXX) +16 If anyone has ears to hear, let him hear. + +many such things like these. +WH +i 15 + +d 7 + +f 9 + +BYZ and TR include + +NA + +BYZ and TR include +Exodus 20:12; Deuteronomy 5:16 + +Exodus 21:17; Leviticus 20:9 + + 902 | Mark 7:17 + +17 + +35 + +f + +After Jesus had left the crowd and gone into +the house, His disciples inquired about the para- +18 +ble. + +Immediately + +opened!”). + the man’s ears were +opened and his tongue was released, and he be- +36 +gan to speak plainly. + +“Are you still so dull?” He asked. “Do you not +19 +understand? Nothing that enters a man from the +because it does not en- +outside can defile him, +ter his heart, but it goes into the stomach and +20 +then is eliminated.” (Thus all foods are clean.) + + a + +21 + +22 + +He continued: “What comes out of a man, that +For from within the hearts +is what defiles him. +b +of men come evil thoughts, sexual immorality, +greed, wickedness, +theft, murder, adultery, +deceit, debauchery, envy, slander, arrogance, +and foolishness. +All these evils come from +The Faith of the Gentile Woman +within, and these are what defile a man.” +(Matthew 15:21–28) + +23 + +24 + +c + +25 + +Jesus left that place and went to the region of +Tyre. + Not wanting anyone to know He was +there, He entered a house, but was unable to +escape their notice. +Instead, a woman whose +little daughter had an unclean spirit soon heard +26 +about Jesus, and she came and fell at His feet. +Now she was a Greek woman of Syrophoeni- +cian origin, and she kept asking Jesus to drive the +27 +demon out of her daughter. + +“First let the children have their fill,” He said. +“For it is not right to take the children’s bread +28 +and toss it to the dogs.” + + d + +“Yes, Lord,” she replied, “even the dogs + +29 +the table eat the children’s crumbs.” + + under + +Then Jesus told her, “Because of this answer, +30 +you may go. The demon has left your daughter.” +And she went home and found her child lying + +The Deaf and Mute Man (Matthew 9:27–34) +on the bed, and the demon was gone. +31 + +Then Jesus left the region of Tyre and went +e +32 +through Sidon to the Sea of Galilee and into the +Some people brought +region of the Decapolis. +to Him a man who was deaf and hardly able to +speak, and they begged Jesus to place His hand +33 +on him. + +37 + +Jesus ordered them not to tell anyone. But the +more He ordered them, the more widely they +proclaimed it. +The people were utterly aston- +ished and said, “He has done all things well! He +The Feeding of the Four Thousand +makes even the deaf hear and the mute speak!” +(2 Kings 4:42–44 ; Matthew 15:29–39) + +8 + +2 + +In those days the crowd once again became +very large, and they had nothing to eat. Jesus +“I have +called the disciples to Him and said, +compassion for this crowd, because they have al- +ready been with Me three days and have nothing +If I send them home hungry, they will +to eat. +faint along the way. For some of them have come +4 +a great distance.” + +3 + +His disciples replied, “Where in this desolate +place could anyone find enough bread to feed all +5 +these people?” + +“How many loaves do you have?” Jesus asked. + +6 +“Seven,” they replied. + +And He instructed the crowd to sit down on the +ground. Then He took the seven loaves, gave +thanks and broke them, and gave them to His +disciples to set before the people. And they dis- +They also had a few +tributed them to the crowd. +small fish, and Jesus blessed them and ordered +8 +that these be set before them as well. + +7 + +The people ate and were satisfied, and the dis- +ciples picked up seven basketfuls of broken +pieces that were left over. +And about four thou- + were present. +sand men + +10 + +9 + + g + +And when Jesus had dismissed the crowd, +He +immediately got into the boat with His disciples +The Demand for a Sign +and went to the district of Dalmanutha. +(Matthew 16:1–4 ; Luke 12:54–56) + +11 + +Then the Pharisees came and began to argue +with Jesus, testing Him by demanding from Him +12 +a sign from heaven. + +So Jesus took him aside privately, away from +the crowd, and put His fingers into the man’s +34 +ears. Then He spit and touched the man’s tongue. +And looking up to heaven, He sighed deeply +and then is eliminated, thereby expelling all foods.” +a 19 +and said to him, “Ephphatha!” (which means, “Be +puppies + +d 28 + +and Sidon +Immediately + +Or +TR include +include + +g 9 Men + + ; see Matthew 15:21. +. + +Jesus sighed deeply in His spirit and said, “Why +does this generation demand a sign? Truly I tell +13 +you, no sign will be given to this generation.” +And He left them, got back into the boat, and + +adultery + +c 24 + +b 21 + +crossed to the other side. +f 35 +e 31 +Many texts move + + to verse 22. + +WH, BYZ, and +ECM, WH, and SBL do not + + is implied here, that is, in addition to women and children; see Matthew 15:38. + +Or + +That is, the Ten Cities + + The Leaven of the Pharisees and of Herod +(Matthew 16:5–12 ; Luke 12:1–3) + +14 + +15 + +Now the disciples had forgotten to take bread, +except for one loaf they had with them in the +“Watch out!” He cautioned them. “Be- +boat. +16 +ware of the leaven of the Pharisees and of Herod.” + +So they began to discuss with one another the + +17 +fact that they had no bread. + +18 + +Aware of their conversation, Jesus asked them, +“Why are you debating about having no bread? +Do you still not see or understand? Do you have +‘Having eyes, do you not +such hard hearts? +19 +see? And having ears, do you not hear?’ + And do +When I broke the five +you not remember? +loaves for the five thousand, how many basket- +fuls of broken pieces did you collect?” +20 +“Twelve,” they answered. + + a + +“And when I broke the seven loaves for the +four thousand, how many basketfuls of broken +pieces did you collect?” +21 +“Seven,” they said. + +Then He asked them, “Do you still not + +The Blind Man at Bethsaida +understand?” +22 + +23 + +When they arrived at Bethsaida, some people +brought a blind man and begged Jesus to touch +So He took the blind man by the hand and +him. +led him out of the village. Then He spit on the +man’s eyes and placed His hands on him. “Can +24 +you see anything?” He asked. + +The man looked up and said, “I can see the peo- + +25 +ple, but they look like trees walking around.” + +26 + +Once again Jesus placed His hands on the +man’s eyes, and when he opened them his sight +was restored, and he could see everything + b +Jesus sent him home and said, “Do not +clearly. +Peter’s Confession of Christ +go back into the village.” +(Matt. 16:13–20 ; Luke 9:18–20 ; John 6:67–71) + +27 + +Then Jesus and His disciples went on to the vil- +lages around Caesarea Philippi. On the way, He +questioned His disciples: “Who do people say I +28 +am?” + +They replied, “Some say John the Baptist; +others say Elijah; and still others, one of the +a 18 +prophets.” +the village.” + +three tabernacles + +c 5 + +Mark 9:5 | 903 + +29 + +“But what about you?” Jesus asked. “Who do + +you say I am?” +30 +Peter answered, “You are the Christ.” + +And Jesus warned them not to tell anyone + +Christ’s Passion Foretold +about Him. +(Matthew 16:21–23 ; Luke 9:21–22) + +31 + +Then He began to teach them that the Son of +Man must suffer many things and be rejected by +the elders, chief priests, and scribes, and that He +32 +must be killed and after three days rise again. +He spoke this message quite frankly, and Peter + +33 +took Him aside and began to rebuke Him. + +But Jesus, turning and looking at His disciples, +rebuked Peter and said, “Get behind Me, Satan! +For you do not have in mind the things of God, +Take Up Your Cross +but the things of men.” +(Matthew 16:24–28 ; Luke 9:23–27) + +34 + +Then Jesus called the crowd to Him along with +His disciples, and He told them, “If anyone wants +to come after Me, he must deny himself and take +For whoever wants +up his cross and follow Me. +to save his life will lose it, but whoever loses his +36 +life for My sake and for the gospel will save it. + +35 + +37 + +38 + +What does it profit a man to gain the whole +world, yet forfeit his soul? +Or what can a man +give in exchange for his soul? +If anyone is +ashamed of Me and My words in this adulterous +and sinful generation, the Son of Man will also be +ashamed of him when He comes in His Father’s +The Transfiguration +glory with the holy angels.” +(Matt. 17:1–13 ; Luke 9:28–36 ; 2 Peter 1:16–21) + +9 + +Then Jesus said to them, “Truly I tell you, +there are some standing here who will not +taste death before they see the kingdom of God +2 +arrive with power.” + +3 + +After six days Jesus took with Him Peter, James, +and John, and led them up a high mountain +by themselves. There He was transfigured +His clothes became radiantly +before them. +white, brighter than any launderer on earth +could bleach them. +And Elijah and Moses ap- +5 +peared before them, talking with Jesus. + +4 + + c + +Peter said to Jesus, “Rabbi, it is good for us to be +“Do not go and tell anyone in +—one for You, + +here. Let us put up three shelters + +b 26 + +See Deuteronomy 29:4, Isaiah 42:20, Jeremiah 5:21, and Ezekiel 12:2. + +BYZ and TR + +Or + + 904 | Mark 9:6 + +6 + +For they +one for Moses, and one for Elijah.” +were all so terrified that Peter did not know what +7 +else to say. + +8 + +Then a cloud appeared and enveloped them, +and a voice came from the cloud: “This is My +beloved Son. Listen to Him!” +Suddenly, when +they looked around, they saw no one with them +9 +except Jesus. + +10 + +As they were coming down the mountain, Jesus +admonished them not to tell anyone what they +had seen until the Son of Man had risen from the +dead. +So they kept this matter to themselves, +11 +discussing what it meant to rise from the dead. +And they asked Jesus, “Why do the scribes say + +12 +that Elijah must come first?” + +13 + +He replied, “Elijah does indeed come first, and +he restores all things. Why then is it written that +the Son of Man must suffer many things and be +rejected? +But I tell you that Elijah has indeed +come, and they have done to him whatever they +The Boy with an Evil Spirit +wished, just as it is written about him.” +(Matthew 17:14–18 ; Luke 9:37–42) + +14 + +15 + +When they returned to the other disciples, +they saw a large crowd around them, and scribes +arguing with them. +As soon as all the people +saw Jesus, they were filled with awe and ran to +16 +greet Him. + +“What are you disputing with them?” He + +17 +asked. + +18 + +Someone in the crowd replied, “Teacher, I +brought You my son, who has a spirit that makes +Whenever it seizes him, it throws +him mute. +him to the ground. He foams at the mouth, + I asked +gnashes his teeth, and becomes rigid. +Your disciples to drive it out, but they were una- +19 +ble.” + +a + +“O unbelieving generation!” Jesus replied. +“How long must I remain with you? How long +20 +must I put up with you? Bring the boy to Me.” + +So they brought him, and seeing Jesus, the +spirit immediately threw the boy into a convul- +sion. He fell to the ground and rolled around, +21 +foaming at the mouth. + +Jesus asked the boy’s father, “How long has + +this been with him?” + +22 + +But if You can do anything, have compassion on +23 +us and help us.” + +“If You can?” echoed Jesus. “All things are pos- + +b + +24 +sible to him who believes!” + +Immediately the boy’s father cried out, + +25 +believe; help my unbelief!” + + “I do + +When Jesus saw that a crowd had come run- +ning, He rebuked the unclean spirit. “You deaf +and mute spirit,” He said, “I command you to +26 +come out and never enter him again.” + +After shrieking and convulsing him violently, +the spirit came out. The boy became like a +But Je- +corpse, so that many said, “He is dead.” +sus took him by the hand and helped him to his +28 +feet, and he stood up. + +27 + +After Jesus had gone into the house, His disci- +ples asked Him privately, “Why couldn’t we drive +29 +it out?” + + c + +Jesus answered, “This kind cannot come out, + +The Second Prediction of the Passion +except by prayer.” +(Matthew 17:22–23 ; Luke 9:43–45) + +30 + +Going on from there, they passed through Gal- +31 +ilee. But Jesus did not want anyone to know, +because He was teaching His disciples. He told +them, “The Son of Man will be delivered into the +hands of men. They will kill Him, and after three +But they did not understand +days He will rise.” +this statement, and they were afraid to ask Him +The Greatest in the Kingdom +about it. +(Matthew 18:1–5 ; Luke 9:46–50) + +32 + +33 + +34 + +Then they came to Capernaum. While Jesus +was in the house, He asked them, “What were +But they were si- +you discussing on the way?” +lent, for on the way they had been arguing about +35 +which of them was the greatest. + +Sitting down, Jesus called the Twelve and said, +“If anyone wants to be first, he must be the last of +36 +all and the servant of all.” + +Then He had a little child stand among them. +37 +Taking the child in His arms, He said to them, +“Whoever welcomes one of these little chil- +dren in My name welcomes Me, and whoever +welcomes Me welcomes not only Me, but the One +c 29 +who sent Me.” + +prayer and fasting + +“It often throws him +“From childhood,” he said. +a 18 +into the fire or into the water, trying to kill him. + +and is withering away + +b 24 + +cried out with tears + +Or + +BYZ and TR + +BYZ and TR + + 38 + +5 + +Mark 10:21 | 905 + +John said to Him, “Teacher, we saw someone +else driving out demons in Your name, and we +tried to stop him, because he does not accom- +39 +pany us.” + +40 + +“Do not stop him,” Jesus replied. “For no one +who performs a miracle in My name can turn +41 +For whoever is +around and speak evil of Me. +Indeed, if anyone gives +not against us is for us. +you even a cup of water because you bear the +name of Christ, truly I tell you, he will never lose +Temptations and Trespasses +his reward. +(Matthew 18:6–9 ; Luke 17:1–4) + +42 + +But if anyone causes one of these little ones +who believe in Me to stumble, it would be better +for him to have a large millstone hung around his +43 +neck and to be thrown into the sea. + +b + +a + +45 + +If your hand causes you to sin, cut it off. It is +better for you to enter life crippled than to have + into the unquencha- +two hands and go into hell, +ble fire. +If your foot causes you to sin, cut it +c +off. It is better for you to enter life lame than to +have two feet and be thrown into hell. +And if +your eye causes you to sin, pluck it out. It is bet- +ter for you to enter the kingdom of God with one +eye than to have two eyes and be thrown into +where ‘their worm never dies, and the fire +hell, +Good Salt (Matthew 5:13–16 ; Luke 14:34–35) +is never quenched.’ +49 + +47 + +48 + + d + +e + +50 + +For everyone will be salted with fire. + +Salt is good, but if the salt loses its saltiness, +with what will you season it? Have salt among +Teachings about Divorce (Matthew 19:1–12) +yourselves, and be at peace with one another.” + +10 + +Then Jesus left that place and went into +the region of Judea, beyond the Jordan. +Again the crowds came to Him and He taught +2 +them, as was His custom. + +Some Pharisees came to test Him. “Is it lawful + +3 +for a man to divorce his wife?” they inquired. +4 + +“What did Moses command you?” He replied. + + f + +They answered, “Moses permitted a man to +write his wife a certificate of divorce and send +a 43 +her away.” + +Gehenna + +b 43 + + g + +7 + +6 + +But Jesus told them, “Moses wrote this com- +mandment for you because of your hardness of +heart. +However, from the beginning of creation, +‘God made them male and female.’ +‘For this +8 +reason a man will leave his father and mother +and be united to his wife, +and the two will be- +come one flesh.’ + So they are no longer two, but +Therefore what God has joined to- +one flesh. +10 +gether, let man not separate.” + +9 + +h + + i + +11 + +When they were back inside the house, the dis- +ciples asked Jesus about this matter. +So He told +them, “Whoever divorces his wife and marries +12 +another woman commits adultery against her. +And if a woman divorces her husband and + +Jesus Blesses the Children +marries another man, she commits adultery.” +(Matthew 19:13–15 ; Luke 18:15–17) + +13 + +Now people were bringing the little children to +Jesus for Him to place His hands on them, and the +14 +disciples rebuked those who brought them. + +But when Jesus saw this, He was indignant and +told them, “Let the little children come to Me, and +15 +do not hinder them! For the kingdom of God be- +longs to such as these. +Truly I tell you, anyone +who does not receive the kingdom of God like a +little child will never enter it.” +And He took the +children in His arms, placed His hands on them, +The Rich Young Man +and blessed them. +(Matthew 19:16–30 ; Luke 18:18–30) + +16 + +17 + +As Jesus started on His way, a man ran up and +knelt before Him. “Good Teacher,” he asked, +18 +“what must I do to inherit eternal life?” + +19 + +“Why do you call Me good?” Jesus replied. “No +one is good except God alone. +You know the +commandments: ‘Do not murder, do not commit +adultery, do not steal, do not bear false witness, +do not cheat others, honor your father and +20 +mother.’ + +” + + j + +“Teacher,” he replied, “all these I have kept + +21 +from my youth.” + +Jesus looked at him, loved him, and said to him, +“There is one thing you lack: Go, sell everything +you own and give to the poor, and you will have +treasure in heaven. Then come, follow Me. +44 where their worm never dies, and the fire is never quenched + +” + +k + +c 45 +; also vv. 45, 47 + +Greek + +d 48 +see verse 48 and Isaiah 66:24. +g 6 +verse 48 and Isaiah 66:24. +j 19 +De. 24:1. +also LXX) + +46 where their worm never dies, and the fire is never quenched + +BYZ and TR include +e 49 +h 7 + +BYZ and TR include + +and every sacrifice will be salted with salt +and be united to his wife. + +i 8 + +; +f 4 +; see + +Genesis 1:27; Genesis 5:2 + +Isaiah 66:24 + +BYZ and TR include +NE and WH do not include + +k 21 + +Then come, take up the cross, and follow Me. + +. + +See + +Genesis 2:24 (see + +Exodus 20:12–16; Deuteronomy 5:16–20 + +BYZ and TR + + 906 | Mark 10:22 + +22 + +37 + +But the man was saddened by these words and +went away in sorrow, because he had great +23 +wealth. + +They answered, “Grant that one of us may sit +at Your right hand and the other at Your left in +38 +Your glory.” + +Then Jesus looked around and said to His dis- +ciples, “How hard it is for the rich to enter the +24 +kingdom of God!” + +“You do not know what you are asking,” +Jesus replied. “Can you drink the cup I will drink, +39 +or be baptized with the baptism I will undergo?” + +And the disciples were amazed at His words. + + a + +25 + +But Jesus said to them again, “Children, how hard +it is to enter +It is easier + the kingdom of God! +for a camel to pass through the eye of a needle +26 +than for a rich man to enter the kingdom of God.” + +They were even more astonished and said to + +27 +one another, “Who then can be saved?” + +Jesus looked at them and said, “With man this +is impossible, but not with God. For all things are +28 +possible with God.” + +Peter began to say to Him, “Look, we have left + +29 +everything and followed You.” + +30 + +“Truly I tell you,” Jesus replied, “no one who +has left home or brothers or sisters or mother or +father or children or fields for My sake and for +the gospel +will fail to receive a hundredfold in +the present age—houses and brothers and sis- +ters and mothers and children and fields, along +with persecutions—and in the age to come, eter- +nal life. +But many who are first will be last, and +The Third Prediction of the Passion +the last will be first.” +(Matthew 20:17–19 ; Luke 18:31–34) + +31 + +32 + +33 + +As they were going up the road to Jerusalem, +Jesus was walking ahead of them. The disciples +were amazed, but those who followed were +afraid. Again Jesus took the Twelve aside and be- +gan to tell them what was going to happen to +Him: +“Look, we are going up to Jerusalem, and +the Son of Man will be delivered over to the chief +priests and scribes. They will condemn Him to +34 +death and will deliver Him over to the Gentiles, +who will mock Him and spit on Him and flog +Him and kill Him. And after three days He will +The Request of James and John +rise again.” +(Matthew 20:20–28) + +35 + +Then James and John, the sons of Zebedee, +came to Jesus and declared, “Teacher, we want +36 +You to do for us whatever we ask.” + +“What do you want Me to do for you?” He + +“We can,” the brothers answered. + +40 + + “You will drink the cup that I drink,” Jesus said, +“and you will be baptized with the baptism that I +But to sit at My right or left is not +undergo. +Mine to grant. These seats belong to those for +41 +whom + + they have been prepared.” + + b + +42 + +When the ten heard about this, they became +So Jesus called +indignant with James and John. +them together and said, “You know that those re- +garded as rulers of the Gentiles lord it over them, +43 +and their superiors exercise authority over them. +But it shall not be this way among you. Instead, +whoever wants to become great among you must +and whoever wants to be first +be your servant, +For even the Son of +must be the slave of all. +Man did not come to be served, but to serve, and +Jesus Heals Bartimaeus +to give His life as a ransom for many.” +(Matthew 20:29–34 ; Luke 18:35–43) + +44 + +45 + +46 + +Next, they came to Jericho. And as Jesus and +His disciples were leaving Jericho with a large +crowd, a blind beggar named Bartimaeus, +47 +the son of Timaeus, was sitting beside the road. +When he heard that it was Jesus of Nazareth, +he began to cry out, “Jesus, Son of David, have +48 +mercy on me!” + +Many people admonished him to be silent, but +he cried out all the louder, “Son of David, have +49 +mercy on me!” + +Jesus stopped and said, “Call him.” + +So they called the blind man. “Take courage!” +50 +they said. “Get up! He is calling for you.” + +Throwing off his cloak, Bartimaeus jumped up + +51 +and came to Jesus. + +“What do you want Me to do for you?” Jesus + +asked. +52 +“Rabboni,” said the blind man, “let me see again.” + +“Go,” said Jesus, “your faith has healed you.” +And immediately he received his sight and fol- +lowed Jesus along the road. + +a 24 +inquired. + +how hard it is for those who trust in riches to enter + +b 40 + +Mine to grant, but for whom + +BYZ and TR + +Literally + + The Triumphal Entry (Zechariah 9:9–13 ; +Matt. 21:1–11 ; Luke 19:28–40 ; John 12:12–19) + +11 + +2 + +As they approached Jerusalem and came +to Bethphage and Bethany at the Mount +and +of Olives, Jesus sent out two of His disciples +said to them, “Go into the village ahead of you, +and as soon as you enter it, you will find a colt +tied there, on which no one has ever sat. Untie it +If anyone asks, ‘Why are you +and bring it here. +doing this?’ tell him, ‘The Lord needs it and will +4 +return it shortly.’ + +” + +3 + +5 + +So they went and found the colt outside in the +and +street, tied at a doorway. They untied it, +some who were standing there asked, “Why are +6 +you untying the colt?” + +The disciples answered as Jesus had instructed +7 +them, and the people gave them permission. +Then they led the colt to Jesus and threw their + +8 +cloaks over it, and He sat on it. + +9 + +Many in the crowd spread their cloaks on the +road, while others spread branches they had cut +The ones who went ahead and +from the fields. +those who followed were shouting: + + a + +“Hosanna!” +“Blessed is He who comes in the name of the + + b + +10 + +11 + +Lord!” + +“Blessed is the coming kingdom of our + + c + +father David!” + +“Hosanna in the highest!” + +d + +Then Jesus entered Jerusalem and went +into the temple courts. + He looked around at eve- +rything, but since it was already late, He went out +Jesus Curses the Fig Tree +to Bethany with the Twelve. +(Matthew 21:18–22 ; Mark 11:20–25) + +12 + +13 + +14 + +The next day, when they had left Bethany, Je- +Seeing in the distance a fig +sus was hungry. +tree in leaf, He went to see if there was any fruit +on it. But when He reached it, He found nothing +on it except leaves, since it was not the season for +Then He said to the tree, “May no one ever +figs. +eat of your fruit again.” And His disciples heard +Jesus Cleanses the Temple +this statement. +(Matt. 21:12–17 ; Luke 19:45–48 ; John 2:12–25) + +15 + +Mark 11:32 | 907 + +16 + +17 + +who were buying and selling there. He over- +turned the tables of the money changers and the +seats of those selling doves. +And He would not +allow anyone to carry merchandise through the +temple courts. +Then Jesus began to teach them, +and He declared, “Is it not written: ‘My house will +be called a house of prayer for all the nations’ +? +18 +But you have made it ‘a den of robbers.’ + +” + + e + + f + +When the chief priests and scribes heard this, +they looked for a way to kill Him. For they were +afraid of Him, because the whole crowd was +19 +astonished at His teaching. + +  g + +And when evening came, Jesus and His disci- + +The Withered Fig Tree +ples went + out of the city. +(Matthew 21:18–22 ; Mark 11:12–14) + +20 + +As they were walking back in the morning, +21 +they saw the fig tree withered from its roots. +Peter remembered it and said, “Look, Rabbi! + +22 +The fig tree You cursed has withered.” +23 + +“Have faith in God,” Jesus said to them. +“Truly I tell you that if anyone says to this +mountain, ‘Be lifted up and thrown into the sea,’ +and has no doubt in his heart but believes that it +will happen, it will be done for him. +Therefore +I tell you, whatever you ask for in prayer, believe +25 +that you have received it, and it will be yours. + +24 + +h + +And when you stand to pray, if you hold +anything against another, forgive it, so that your +Father in heaven will forgive your trespasses as +Jesus’ Authority Challenged +well. +(Matthew 21:23–27 ; Luke 20:1–8) + +” + +27 + +After their return to Jerusalem, Jesus was +walking in the temple courts, and the chief +priests, scribes, and elders came up to Him. +“By +what authority are You doing these things?” they +asked. “And who gave You the authority to do +29 +them?” + +28 + +“I will ask you one question,” Jesus replied, +“and if you answer Me, I will tell you by what +authority I am doing these things. +John’s +baptism—was it from heaven or from men? An- +31 +swer Me!” + +30 + +When they arrived in Jerusalem, Jesus entered +a 9 Hosanna +the temple courts and began to drive out those +“Hosanna in the highest heaven!” +, meaning +temple +f 17 +see Ps. 118:25. +h 25 + + is a transliteration of the Heb. +e 17 +Or +Ps. 118:26 + +Hosia-na + +c 10 + +b 9 + +26 But if you do not forgive, neither will your Father in heaven forgive your trespasses + + See Psalm 118:25 and Psalm 148:1. + + or + +g 19 + +they went + +, which became a shout of praise; +He went +Lit. + +They deliberated among themselves what they +should answer: “If we say, ‘From heaven,’ He will +Save, we pray +ask, ‘Why then did you not believe him?’ +But if +the + +Save now + +d 11 + +32 + +; also in verses 15, 16, and 27 + +Isaiah 56:7 + +Jeremiah 7:11 + +Literally + +; BYZ and TR + +BYZ and TR include + +; see Matt. 6:15. + + 908 | Mark 11:33 + +we say, ‘From men’ +” they were afraid of the +33 +people, for they all held that John truly was a +prophet. +So they answered, “We do not know.” + +. . . + +teach the way of God in accordance with the +truth. Is it lawful to pay taxes to Caesar or not? +15 +Should we pay them or not?” + +And Jesus replied, “Neither will I tell you by what +The Parable of the Wicked Tenants +authority I am doing these things.” +(Matthew 21:33–46 ; Luke 20:9–18) + +12 + +Then Jesus began to speak to them in +parables: “A man planted a vineyard. He +put a wall around it, dug a wine vat, and built a +watchtower. Then he rented it out to some ten- +2 +ants and went away on a journey. + +At harvest time, he sent a servant to the tenants +3 +to collect his share of the fruit of the vineyard. +But they seized the servant, beat him, and sent + +4 +him away empty-handed. + +Then he sent them another servant, and they +struck him over the head and treated him +5 +shamefully. + +He sent still another, and this one they killed. + +He sent many others; some they beat and others +6 +they killed. + +Finally, having one beloved son, he sent him to + +7 +them. ‘They will respect my son,’ he said. + +8 + +But the tenants said to one another, ‘This is the +heir. Come, let us kill him, and the inheritance +will be ours.’ +So they seized the son, killed him, +9 +and threw him out of the vineyard. + +10 + +What then will the owner of the vineyard do? +He will come and kill those tenants and give the +vineyard to others. +Have you never read this +Scripture: + +11 + +‘The stone the builders rejected +has become the cornerstone. + + a + +This is from the Lord, + +12 + + b + +and it is marvelous in our eyes’ + +?” + +At this, the leaders sought + + to arrest Jesus, for +they knew that He had spoken this parable +against them. But fearing the crowd, they left +Paying Taxes to Caesar +Him and went away. +(Matthew 22:15–22 ; Luke 20:19–26) + +13 + +14 + +Later, they sent some of the Pharisees and He- +“Teacher,” +rodians to catch Jesus in His words. +they said, “we know that You are honest and seek +a 11 +favor from no one. Indeed, You are impartial and + +b 12 + +c 15 + +they sought +e 23 + +d 19 + +Psalm 118:22–23 + +Matthew 20:2. + +Literally +Deuteronomy 25:5 + + c + + to inspect.” + +But Jesus saw through their hypocrisy and +16 +said, “Why are you testing Me? Bring Me a +denarius +So they brought it, and +He asked them, “Whose image is this? And whose +inscription?” +17 +“Caesar’s,” they answered. + +Then Jesus told them, “Give to Caesar what is + +Caesar’s, and to God what is God’s.” +The Sadducees and the Resurrection +And they marveled at Him. +(Matthew 22:23–33 ; Luke 20:27–40) + +18 + +d + +20 + +Then the Sadducees, who say there is no res- +19 +urrection, came to Jesus and questioned Him: +“Teacher, Moses wrote for us that if a man’s +brother dies and leaves a wife but no children, +the man is to marry his brother’s widow and +raise up offspring for him. +Now there were +21 +seven brothers. The first one married and died, +Then the second one +leaving no children. +married the widow, but he also died and left no +In this +children. And the third did likewise. +way, none of the seven left any children. And last +of all, the woman died. +In the resurrection, +then, + whose wife will she be? For all seven were +24 +married to her.” + +22 + +23 + +e + +25 + +Jesus said to them, “Aren’t you mistaken, be- +cause you do not know the Scriptures or the +When the dead rise, they will +power of God? +neither marry nor be given in marriage. Instead, +26 +they will be like the angels in heaven. + +But concerning the dead rising, have you not +read about the burning bush in the Book of Mo- +ses, how God told him, ‘I am the God of Abraham, +the God of Isaac, and the God of Jacob’ +He is +not the God of the dead, but of the living. You are +The Greatest Commandment +badly mistaken!” +(Deuteronomy 6:1–19 ; Matthew 22:34–40) + +27 + +? + + f + +28 + +Now one of the scribes had come up and heard +their debate. Noticing how well Jesus had an- +swered them, he asked Him, “Which command- +29 +ment is the most important of all?” + +Jesus replied, “This is the most important: +‘Hear O Israel, the Lord our God, the Lord is One. + +In the resurrection, when they rise, +A denarius was customarily a day’s wage for a laborer; see + +f 26 + +Literally + +Exodus 3:6 + + 30 + +43 + +Mark 13:14 | 909 + +31 + +Love the Lord your God with all your heart and + a +with all your soul and with all your mind and +with all your strength.’ +The second is this: + No other com- +‘Love your neighbor as yourself.’ +32 +mandment is greater than these.” + + b + +33 + +“Right, Teacher,” the scribe replied. “You have +stated correctly that God is One and there is no +other but Him, +and to love Him with all your +heart and with all your understanding and with +all your strength, and to love your neighbor as +yourself. This is more important than all burnt +34 +offerings and sacrifices.” + +When Jesus saw that the man had answered +wisely, He said, “You are not far from the king- +dom of God.” +Whose Son Is the Christ? +And no one dared to question Him any further. +(Matthew 22:41–46 ; Luke 20:41–44) + +35 + +c + +While Jesus was teaching in the temple + He asked, “How can the scribes say that +Speaking by the + +courts, +the Christ is the Son of David? +Holy Spirit, David himself declared: + +36 + +‘The Lord said to my Lord, +“Sit at My right hand +until I put Your enemies +under Your feet.” + + d + +’ + +37 + +David himself calls Him ‘Lord.’ So how can He + +Jesus called His disciples to Him and said, +“Truly I tell you, this poor widow has put more +For they +than all the others into the treasury. +all contributed out of their surplus, but she out of +Temple Destruction and Other Signs +her poverty has put in all she had to live on.” +(Matthew 24:1–8 ; Luke 21:5–9) + +44 + +13 + +As Jesus was leaving the temple, one of +His disciples said to Him, “Teacher, look + +2 +at the magnificent stones and buildings!” + +“Do you see all these great buildings?” Jesus re- +plied. “Not one stone here will be left on another; +3 +every one will be thrown down.” + +4 + +While Jesus was sitting on the Mount of +Olives opposite the temple, Peter, James, John, +and Andrew asked Him privately, +“Tell us, when +will these things happen? And what will be the +5 +sign that they are about to be fulfilled?” +6 + +Jesus began by telling them, “See to it that no +Many will come in My name, +one deceives you. +7 +claiming, ‘I am He,’ and will deceive many. +When you hear of wars and rumors of wars, do +8 +not be alarmed. These things must happen, but +Nation will rise against +the end is still to come. +nation, and kingdom against kingdom. There will +be earthquakes in various places, as well as fam- +Witnessing to All Nations +ines. These are the beginning of birth pains. +(Matthew 24:9–14 ; Luke 21:10–19) + +be David’s son?” + +9 + +And the large crowd listened to Him with +Beware of the Scribes (Luke 20:45–47) +delight. +38 + +In His teaching Jesus also said, “Watch out for +the scribes. They like to walk around in long +39 +robes, to receive greetings in the marketplaces, +and to have the chief seats in the synagogues +and the places of honor at banquets. +They de- +fraud widows of their houses, + and for a show +make lengthy prayers. These men will receive +The Widow’s Offering (Luke 21:1–4) +greater condemnation.” +41 + +40 + +e + +42 + +As Jesus was sitting opposite the treasury, He +watched the crowd putting money into it. And +many rich people put in large amounts. +Then +one poor widow came and put in two small cop- +per coins, which amounted to a small fraction of +b 31 +a 30 +a denarius. +devour widows’ houses + +f 42 + +f + +Deuteronomy 6:4–5 + +Leviticus 19:18 +Greek +Daniel the prophet +where he should not be +worth about 1/128 of a denarius. + +h 14 + +c 35 +put in two lepta, which is a kodrantēs +g 14 + +Literally + +. + +Or + +10 + +So be on your guard. You will be delivered over +to the councils and beaten in the synagogues. On +My account you will stand before governors and +kings as witnesses to them. +And the gospel +must first be proclaimed to all the nations. +But +when they arrest you and hand you over, do not +worry beforehand what to say. Instead, speak +whatever you are given at that time, for it will not +12 +be you speaking, but the Holy Spirit. + +11 + +Brother will betray brother to death, and a +father his child. Children will rise against their +parents and have them put to death. +You will +be hated by everyone because of My name, but +The Abomination of Desolation +the one who perseveres to the end will be saved. +(Matthew 24:15–25 ; Luke 21:20–24) + +13 + +14 + + g + + h + +d 36 + +So when you see the abomination of desola- +They +the temple +tion + (let the + + standing where it should not be +Literally +Psalm 110:1 + +spoken of by +; a lepton was a Jewish coin of bronze or copper + +e 40 + +See Daniel 9:27, Daniel 11:31, and Daniel 12:11; BYZ and TR include + + 910 | Mark 13:15 + +15 + +reader understand), then let those who are in Ju- +dea flee to the mountains. +Let no one on the +housetop go back inside to retrieve anything +from his house. +And let no one in the field re- +17 +turn for his cloak. + +16 + +18 + +How miserable those days will be for pregnant +19 +and nursing mothers! +Pray that this will not +occur in the winter. +For those will be days of +tribulation unseen from the beginning of God’s +20 +creation until now, and never to be seen again. +If the Lord had not cut short those days, no- +body would be saved. But for the sake of the +elect, whom He has chosen, He has cut them +21 +short. + +At that time if anyone says to you, ‘Look, here +22 +is the Christ!’ or ‘There He is!’ do not believe it. +For false Christs and false prophets will appear +and perform signs and wonders to deceive even +the elect, if that were possible. +So be on your +The Return of the Son of Man +guard; I have told you everything in advance. +(Matthew 24:26–31 ; Luke 21:25–28) + +23 + +24 + +33 + + e + +Be on your guard and stay alert! + + For +Father. +you do not know when the appointed time will +34 +come. + +It is like a man going on a journey who left his +house, put each servant in charge of his own task, +35 +and instructed the doorkeeper to keep watch. +Therefore keep watch, because you do not +know when the master of the house will return— +whether in the evening, at midnight, when the +Otherwise, +rooster crows, or in the morning. +he may arrive without notice and find you sleep- +ing. +And what I say to you, I say to everyone: +The Plot to Kill Jesus +Keep watch!” +(Matthew 26:1–5 ; Luke 22:1–2 ; John 11:45–57) + +36 + +37 + +14 + + f + +Now the Passover and the Feast of Un- +leavened Bread + were two days away, +and the chief priests and scribes were looking for +“But +a covert way to arrest Jesus and kill Him. +not during the feast,” they said, “or there may be +Jesus Anointed at Bethany +a riot among the people.” +(Matthew 26:6–13 ; Luke 7:36–50 ; John 12:1–8) + +2 + +But in those days, after that tribulation: + +3 + +25 + +‘The sun will be darkened, + +and the moon will not give its light; + +the stars will fall from the sky, + + a + +and the powers of the heavens will + +26 + +be shaken.’ + +b +At that time they will see the Son of Man com- +27 +ing in the clouds with great power and glory. + +And He will send out the angels to gather His +elect from the four winds, from the ends of the +The Lesson of the Fig Tree +earth to the ends of heaven. +(Matthew 24:32–35 ; Luke 21:29–33) + +28 + + c + +d + +29 + +Now learn this lesson + + from the fig tree: As +soon as its branches become tender and sprout +leaves, you know that summer is near. +So also, +when you see these things happening, know that +He is near, +Truly I tell you, +31 +this generation will not pass away until all these +things have happened. +Heaven and earth will +Readiness at Any Hour +pass away, but My words will never pass away. +(Matthew 24:36–51 ; Luke 12:35–48) + + right at the door. + +30 + +g + +While Jesus was in Bethany reclining at the ta- +ble in the home of Simon the Leper, + a woman +came with an alabaster jar of expensive perfume, +made of pure nard. She broke open the jar and +4 +poured it on Jesus’ head. + +5 + +Some of those present, however, expressed +their indignation to one another: “Why this +It could have been sold for +waste of perfume? +over three hundred denarii + and the money +6 +given to the poor.” And they scolded her. + + h + +7 + +8 + +But Jesus said, “Leave her alone; why are you +i +bothering her? She has done a beautiful deed to +The poor you will always have with you, +Me. +and you can help them whenever you want. But +She has done what +you will not always have Me. +she could to anoint My body in advance of My +burial. +And truly I tell you, wherever the gospel +is preached in all the world, what she has done +Judas Agrees to Betray Jesus +will also be told in memory of her.” +(Matthew 26:14–16 ; Luke 22:3–6) + +9 + +32 + +10 + +11 + +No one knows about that day or hour, not even +a 25 +the angels in heaven, nor the Son, but only the +c 28 +Or +Unleavened +Or + +and the celestial bodies will be shaken +this parable + +BYZ and TR + +it is near + +d 29 + +e 33 + +g 3 + +Or + +Then Judas Iscariot, one of the Twelve, went to +b 26 +They +Be on your guard, stay alert, and pray! +h 5 + +the chief priests to betray Jesus to them. + +Simon the Jar Maker + +and the + +f 1 + +; see Isaiah 13:10, Isaiah 34:4, and Joel 2:10. + +Simon the Potter + +; see Exodus 12:14–20. + +Aramaic + +i 7 + + or + +See Daniel 7:13–14. +Literally +A denarius was + +customarily a day’s wage for a laborer; see Matthew 20:2. + +See Deuteronomy 15:11. + + were delighted to hear this, and they promised to +give him money. + +So Judas began to look for an opportunity to be- +Preparing the Passover +tray Jesus. +(Matthew 26:17–19 ; Luke 22:7–13) + +12 + +a + +On the first day of the Feast of Unleavened +Bread, + when the Passover lamb was to be sacri- +ficed, Jesus’ disciples asked Him, “Where do You +13 +want us to prepare for You to eat the Passover?” + +14 + +So He sent two of His disciples and told them, +“Go into the city, and a man carrying a jug of wa- +and whichever +ter will meet you. Follow him, +house he enters, say to the owner, ‘The Teacher +15 +asks: Where is My guest room, where I may eat +And he will +the Passover with My disciples?’ +show you a large upper room, furnished and +16 +ready. Make preparations for us there.” + +So the disciples left and went into the city, +where they found everything as Jesus had de- +The Last Supper (Matthew 26:20–30 ; +scribed. And they prepared the Passover. +Luke 22:14–23 ; 1 Corinthians 11:17–34) + +17 + +18 + +When evening came, Jesus arrived with the +And while they were reclining and eat- +Twelve. +ing, Jesus said, “Truly I tell you, one of you who is +19 +eating with Me will betray Me.” + +They began to be grieved and to ask Him one + +20 +after another, “Surely not I?” + +21 +who is dipping his hand + + b +He answered, “It is one of the Twelve—the one + into the bowl with Me. +The Son of Man will go just as it is written +about Him, but woe to that man by whom He is +betrayed! It would be better for him if he had not +22 +been born.” + +While they were eating, Jesus took bread, +spoke a blessing and broke it, and gave it to the +23 +disciples, saying, “Take it; this is My body.” + +24 + +c + +Then He took the cup, gave thanks, and gave it +He said to +to them, and they all drank from it. +25 + which +them, “This is My blood of the covenant, +Truly I tell you, I will +is poured out for many. +no longer drink of the fruit of the vine until that +26 +day when I drink it anew in the kingdom of God.” + +And when they had sung a hymn, they went +On the first day of the Unleavened + +a 12 +out to the Mount of Olives. + +Mark 14:42 | 911 + +Jesus Predicts Peter’s Denial +(Zechariah 13:7–9 ; Matthew 26:31–35 ; +Luke 22:31–38 ; John 13:36–38) + +27 + +d + +Then Jesus said to them, “You will all fall + +away, + + for it is written: + + e + +‘I will strike the Shepherd, + +28 + +and the sheep will be scattered.’ + +But after I have risen, I will go ahead of you + +29 +into Galilee.” + +Peter declared, “Even if all fall away, I never + +30 +will.” + +“Truly I tell you,” Jesus replied, “this very +night, before the rooster crows twice, you will +31 +deny Me three times.” + +But Peter kept insisting, “Even if I have to die +with You, I will never deny You.” And all the oth- +Jesus Prays at Gethsemane +ers said the same thing. +(Matthew 26:36–46 ; Luke 22:39–46) + +32 + +Then they came to a place called Gethsemane, +and Jesus told His disciples, “Sit here while I +33 +pray.” + +He took with Him Peter, James, and John, and +34 +began to be deeply troubled and distressed. +Then He said to them, “My soul is consumed +with sorrow to the point of death. Stay here and +35 +keep watch.” + +36 + +Going a little farther, He fell to the ground and +prayed that, if it were possible, the hour would +pass from Him. +“Abba, Father,” He said, “all +things are possible for You. Take this cup from +37 +Me. Yet not what I will, but what You will.” + +38 + +Then Jesus returned and found them sleeping. +“Simon, are you asleep?” He asked. “Were you +not able to keep watch for one hour? +Watch +and pray so that you will not enter into tempta- +tion. For the spirit is willing, but the body is +39 +weak.” + +40 + +Again He went away and prayed, saying +the same thing. +And again Jesus returned and +found them sleeping, for their eyes were heavy. +41 +And they did not know what to answer Him. + +When Jesus returned the third time, He said, +“Are you still sleeping and resting? That is +enough! The hour has come. Look, the Son of Man +is betrayed into the hands of sinners. +Rise, let +c 24 +us go. See, My betrayer is approaching!” + +the one who is dipping + +b 20 + +42 + +the new covenant + +d 27 + +on account of Me this night + +e 27 + +Literally + +TR + +BYZ and TR include + +; see Matthew 26:31. + +Zechariah 13:7 + +; see Exodus 12:14–20. + +Literally + +BYZ and + + 912 | Mark 14:43 + +The Betrayal of Jesus +(Matt. 26:47–56 ; Luke 22:47–53 ; John 18:1–14) + +43 + +While Jesus was still speaking, Judas, one of +the Twelve, arrived, accompanied by a crowd +armed with swords and clubs, sent from the chief +44 +priests, scribes, and elders. + +Now the betrayer had arranged a signal with +them: “The One I kiss is the man; arrest Him and +lead Him away securely.” +Going directly to +46 +Jesus, he said, “Rabbi!” and kissed Him. +47 + +45 + +Then the men seized Jesus and arrested Him. +And one of the bystanders drew his sword and +struck the servant of the high priest, cutting off +48 +his ear. + +a + +49 + +Jesus asked the crowd, “Have you come out +with swords and clubs to arrest Me as you would +an outlaw? +Every day I was with you, teaching +in the temple courts, + and you did not arrest Me. +But this has happened that the Scriptures would +50 +be fulfilled.” + +51 + +Then everyone deserted Him and fled. +52 + +One +young man who had been following Jesus was +wearing a linen cloth around his body. They +caught hold of him, +but he pulled free of the +Jesus before the Sanhedrin +linen cloth and ran away naked. +(Matt. 26:57–68 ; Luke 22:66–71 ; John 18:19–24) + +53 + +They led Jesus away to the high priest, and all +54 +the chief priests, elders, and scribes assembled. +Peter followed Him at a distance, right into the +courtyard of the high priest. And he sat with the +55 +officers and warmed himself by the fire. + + b +Now the chief priests and the whole Sanhed- +rin + were seeking testimony against Jesus to put +Him to death, but they did not find any. +For +many bore false witness against Jesus, but their +57 +testimony was inconsistent. +58 + +56 + +Then some men stood up and testified falsely +against Him: +“We heard Him say, ‘I will destroy +this man-made temple, and in three days I will +59 +build another that is made without hands.’ +” +60 +But even their testimony was inconsistent. + +So the high priest stood up before them and +questioned Jesus, “Have You no answer? What +61 +are these men testifying against You?” + +Again the high priest questioned Him, “Are You +62 +the Christ, the Son of the Blessed One?” + + c + +“I am,” said Jesus, “and you will see the Son of + and com- + +Man sitting at the right hand of Power +63 +ing with the clouds of heaven.” + + d + +At this, the high priest tore his clothes and de- +64 +clared, “Why do we need any more witnesses? +You have heard the blasphemy. What is your + +verdict?” + +And they all condemned Him as deserving of +65 +death. + +Then some of them began to spit on Him. They +blindfolded Him, struck Him with their fists, and +said to Him, “Prophesy!” And the officers re- +Peter Denies Jesus +ceived Him with slaps in His face. +(Matt. 26:69–75 ; Luke 22:54–62 ; John 18:15–18) + +66 + +While Peter was in the courtyard below, one of +67 +the servant girls of the high priest came down +and saw him warming himself there. She +looked at Peter and said, “You also were with +68 +Jesus the Nazarene.” + +e + +But he denied it. “I do not know or even under- +stand what you are talking about,” he said. Then +he went out to the gateway, and the rooster +69 +crowed. + +There the servant girl saw him and again said +to those standing nearby, “This man is one of +70 +them.” + +But he denied it again. + +After a little while, those standing nearby said +once more to Peter, “Surely you are one of them, +71 +for you too are a Galilean.” + + f + +72 + +But he began to curse and swear, “I do not +And im- + +know this man of whom you speak!” +mediately the rooster crowed a second time. + +Then Peter remembered the word that Jesus had +spoken to him: “Before the rooster crows twice, +you will deny Me three times.” And he broke +Jesus Delivered to Pilate (Matthew 27:1–2) +down and wept. + +15 + + g +Early in the morning, the chief priests, el- +ders, scribes, and the whole Sanhedrin + +devised a plan. They bound Jesus, led Him away, +2 +and handed Him over to Pilate. + +But Jesus remained silent and made no + +the temple + +b 55 + +the whole Council + +So Pilate questioned Him, “Are You the King of + +c 62 +and the rooster crowed + +the right hand of the Mighty One +the Jews?” +f 70 + +d 62 +and your speech is similar +See Psalm 110:1 and + +the whole Council + +Or +NE and WH do not include + +Or + +. + +BYZ and TR include + +. + +e 68 + +a 49 +reply. +g 1 +Daniel 7:13. + +Literally + +Or + + Him. +read: +27 + +Mark 15:38 | 913 + +The Crucifixion (Psalm 22:1–31 ; +Matt. 27:32–44 ; Luke 23:26–43 ; John 19:16–27) + +21 + +Now Simon of Cyrene, the father of Alexander +and Rufus, was passing by on his way in from the +country, and the soldiers forced him to carry the +22 +cross of Jesus. + +23 + +They brought Jesus to a place called Golgotha, +which means The Place of the Skull. +There they +offered Him wine mixed with myrrh, but He did +24 +not take it. + +And they crucified Him. + +b + +They also divided His garments by casting lots to +25 +decide what each of them would take. + + c + +26 + +It was the third hour + + when they crucified +And the charge inscribed against Him + +THE KING OF THE JEWS. +e + +d + +Along with Jesus, they crucified two robbers, + +29 +one on His right and one on His left. + +And those who passed by heaped abuse on +Him, shaking their heads and saying, “Aha! You +who are going to destroy the temple and rebuild +it in three days, +come down from the cross and +31 +save Yourself!” + +30 + +32 + +In the same way, the chief priests and scribes +mocked Him among themselves, saying, “He +saved others, but He cannot save Himself! +Let +the Christ, the King of Israel, come down now +from the cross, so that we may see and believe!” +And even those who were crucified with Him be- +The Death of Jesus (Psalm 22:1–31 ; +rated Him. + Matt. 27:45–56 ; Luke 23:44–49 ; John 19:28–30) + +33 + + f + +34 + +From the sixth hour until the ninth hour + + dark- +ness came over all the land. +At the ninth hour, +Jesus cried out in a loud voice, “Eloi, Eloi, lema +sabachthani?” which means, “My God, My God, +35 +why have You forsaken Me?” + + g + +When some of those standing nearby heard + +36 +this, they said, “Behold, He is calling Elijah.” + +h + +i + +And someone ran and filled a sponge with sour + He put it on a reed and held it up for Jesus + saying, “Leave Him alone. Let us see if + +wine. +to drink, +37 +Elijah comes to take Him down.” + +38 + +But Jesus let out a loud cry and breathed His +And the veil of the temple was torn in two + +last. +from top to bottom. + +c 25 + +3 +“You have said so,” Jesus replied. + +And the chief priests began to accuse Him of + +4 +many things. + +Then Pilate questioned Him again, “Have You +no answer? Look how many charges they are +5 +bringing against You!” + +But to Pilate’s amazement, Jesus made no fur- + +The Crowd Chooses Barabbas +ther reply. +(Matthew 27:15–23 ; Luke 23:13–25) + +6 + + a + +7 + +Now it was Pilate’s custom at the feast to + a prisoner of their choos- +release to the people +And a man named Barabbas was impris- +ing. +8 +oned with the rebels who had committed murder +So the crowd went up +during the insurrection. +9 +and began asking Pilate to keep his custom. + +10 +“Do you want me to release to you the King of +the Jews?” Pilate asked. +For he knew it was out +of envy that the chief priests had handed Jesus +11 +over. + +But the chief priests stirred up the crowd to + +Pilate Delivers Up Jesus (Matthew 27:24–26) +have him release Barabbas to them instead. +12 + +So Pilate asked them again, “What then do you +want me to do with the One you call the King of +13 +the Jews?” +14 + +And they shouted back, “Crucify Him!” + +“Why?” asked Pilate. “What evil has He done?” + +15 +But they shouted all the louder, “Crucify Him!” + +And wishing to satisfy the crowd, Pilate re- +leased Barabbas to them. But he had Jesus +The Soldiers Mock Jesus (Isaiah 50:4–11 ; +flogged, and handed Him over to be crucified. +Matt. 27:27–31 ; Luke 22:63–65 ; John 19:1–15) + +16 + +17 + +Then the soldiers led Jesus away into the pal- +ace (that is, the Praetorium) and called the whole +company together. +They dressed Him in a pur- +ple robe, twisted together a crown of thorns, and +set it on His head. +And they began to salute +19 +Him: “Hail, King of the Jews!” + +18 + +20 + +They kept striking His head with a staff and +spitting on Him. And they knelt down and bowed +before Him. +After they had mocked Him, they +removed the purple robe and put His own +clothes back on Him. Then they led Him out to +b 24 +a 6 +crucify Him. +d 27 +Literally +transgressors.” +Or +h 36 + +Now at the feast he would release to them + +a sponge with wine vinegar + +BYZ and TR include + See Isaiah 53:12 and Luke 22:37. + +insurrectionists + +e 27 + +i 36 + +Or + +See Psalm 69:21. + +28 So the Scripture was fulfilled that says, “And He was numbered with the +f 33 + +That is, nine in the morning + +See Psalm 22:18. + +g 34 + +That is, from noon until three in the afternoon + +Psalm 22:1 + + 914 | Mark 15:39 + +39 + +a + +7 + +When the centurion standing there in front of + he said, + +Jesus saw how He had breathed His last, +40 +“Truly this man was the Son of God!” + +b + +41 + +And there were also women watching from a +distance. Among them were Mary Magdalene, +Mary the mother of James the younger and of +These women had fol- +Joses, +lowed Jesus and ministered to Him while He was +in Galilee, and there were many other women +The Burial of Jesus (Isaiah 53:9–12 ; +who had come up to Jerusalem with Him. + Matt. 27:57–61 ; Luke 23:50–56 ; John 19:38–42) + + and Salome. + +42 + +Now it was already evening. Since it was Prep- +43 +aration Day (that is, the day before the Sabbath), +Joseph of Arimathea, a prominent Council +member who himself was waiting for the king- +dom of God, boldly went to Pilate to ask for the +44 +body of Jesus. + +45 + +Pilate was surprised to hear that Jesus was al- +ready dead, so he summoned the centurion to +ask if this was so. +When Pilate had confirmed +it with the centurion, he granted the body to +46 +Joseph. + +47 + +So Joseph bought a linen cloth, took down the +body of Jesus, wrapped it in the cloth, and placed +it in a tomb that had been cut out of the rock. +Then he rolled a stone against the entrance to the + c +Mary Magdalene and Mary the mother +tomb. +The Resurrection + saw where His body was placed. +of Joseph +(Matt. 28:1–10 ; Luke 24:1–12 ; John 20:1–9) + +16 + +d + +3 + +2 + +When the Sabbath was over, Mary Mag- +dalene, Mary the mother of James, and +Salome bought spices so they could go and anoint +Very early on the first day of +the body of Jesus. +the week, + just after sunrise, they went to the +They were asking one another, “Who will +tomb. +4 +roll away the stone from the entrance of the +tomb?” +But when they looked up, they saw that +the stone had been rolled away, even though it +5 +was extremely large. + +risen! He is not here! See the place where they +put Him. +But go, tell His disciples and Peter, ‘He +is going ahead of you into Galilee. There you will +8 +see Him, just as He told you.’ + +” + +So the women left the tomb and ran away, trem- +bling and bewildered. And in their fear they did +Jesus Appears to Mary Magdalene +not say a word to anyone. +(John 20:10–18) + +e + +9 + +f + +Early on the first day of the week, after Jesus +had risen, + He appeared first to Mary Magdalene, +10 +from whom He had driven out seven demons. +She went and told those who had been with +And +Him, who were mourning and weeping. +when they heard that Jesus was alive and she had +Jesus Appears to Two Disciples +seen Him, they did not believe it. +(Luke 24:13–35) + +11 + +12 + +After this, Jesus appeared in a different form to +13 +two of them as they walked along in the country. + +And they went back and reported it to the rest, + +The Great Commission (Matthew 28:16–20) +but they did not believe them either. +14 + +Later, as they were eating, Jesus appeared to +the Eleven and rebuked them for their unbelief +and hardness of heart, because they did not be- +15 +lieve those who had seen Him after He had risen. + +16 + +And He said to them, “Go into all the world and +Whoever +preach the gospel to every creature. +17 +believes and is baptized will be saved, but who- +And +ever does not believe will be condemned. +these signs will accompany those who believe: In + g +My name they will drive out demons; they will +they will pick up +speak in new tongues; +snakes with their hands, and if they drink any +deadly poison, it will not harm them; they will lay +their hands on the sick, and they will be made +The Ascension (Luke 24:50–53 ; Acts 1:6–11) +well.” + h +19 + +18 + +After the Lord Jesus + + had spoken to them, He +was taken up into heaven and sat down at the +20 +right hand of God. + +And they went out and preached everywhere, +and the Lord worked through them, confirming +Joseph +His word by the signs that accompanied it. + +b 40 Joses +e 8 + +6 + +When they entered the tomb, they saw a young +man dressed in a white robe sitting on the right +side, and they were alarmed. +But he said to +them, “Do not be alarmed. You are looking for Je- +a 39 +sus the Nazarene, who was crucified. He has +c 47 + +saw how, having cried out, He had breathed His last + +d 2 + +And very early on the first of the Sabbaths, + +Joses +BYZ, TR +Or + +; see Matthew 27:56. +9 But they quickly reported all +these instructions to Peter’s companions. Afterward, Jesus Himself, through them, sent out from east to west the sacred and +Mark after v. 8. Other manuscripts contain only a short ending, a version of the following: +imperishable proclamation of eternal salvation. Amen. f 9 +After the Lord +g 17 + + is a variant of +Some early manuscripts end the Gospel of + +After Jesus had risen early on the first day of the week + +in tongues + +Literally + +h 19 + +WH + +ECM, BYZ, and TR + +Or + + Luke + +Dedication to Theophilus (Acts 1:1–3) + +1 + +3 + +2 + +Many have undertaken to compose an ac- +count of the things that have been fulfilled +among us, +just as they were handed down to us +by the initial eyewitnesses and servants of the +Therefore, having carefully investigated +word. +everything from the beginning, it seemed good +also to me to write an orderly account for you, +so that you may +most excellent Theophilus, +know the certainty of the things you have been +Gabriel Foretells John’s Birth +taught. +5 + +4 + +6 + +In the time of Herod king of Judea there was a +priest named Zechariah, who belonged to the +priestly division of Abijah, and whose wife Eliza- +Both of them +beth was a descendant of Aaron. +were righteous in the sight of God, walking +blamelessly in all the commandments and de- +But they had no children, +crees of the Lord. +because Elizabeth was barren, and they were +8 +both well along in years. + +7 + +9 + +10 + +One day while Zechariah’s division was on duty +and he was serving as priest before God, +he was +chosen by lot, according to the custom of the +priesthood, to enter the temple of the Lord and +And at the hour of the incense +burn incense. +offering, the whole congregation was praying +11 +outside. + +12 + +Just then an angel of the Lord appeared to +Zechariah, standing at the right side of the altar +When Zechariah saw him, he was +of incense. +13 +startled and gripped with fear. + +15 + +14 + +But the angel said to him, “Do not be afraid, +Zechariah, because your prayer has been heard. +Your wife Elizabeth will bear you a son, and you +He will be a joy +are to give him the name John. +and delight to you, and many will rejoice at his +birth, +for he will be great in the sight of the +Lord. He shall never take wine or strong drink, +and he will be filled with the Holy Spirit even +Many of the sons of +from his mother’s womb. +17 +Israel he will turn back to the Lord their God. +a 17 +And he will go on before the Lord in the spirit + +Rejoice + +b 28 + +c 28 + +16 + + a +and power of Elijah, to turn the hearts of the fa- + and the disobedient to +thers to their children +the wisdom of the righteous—to make ready a +18 +people prepared for the Lord.” + +“How can I be sure of this?” Zechariah asked +the angel. “I am an old man, and my wife is well +19 +along in years.” + +20 + +“I am Gabriel,” replied the angel. “I stand in the +presence of God, and I have been sent to speak to +And now +you and to bring you this good news. +you will be silent and unable to speak until the +day this comes to pass, because you did not be- +lieve my words, which will be fulfilled at their +21 +proper time.” + +22 + +Meanwhile, the people were waiting for Zech- +ariah and wondering why he took so long in the +temple. +When he came out and was unable to +speak to them, they realized he had seen a vision +in the temple. He kept making signs to them but +And when the days +remained unable to speak. +24 +of his service were complete, he returned home. + +23 + +25 + +After these days, his wife Elizabeth became +pregnant and for five months remained in seclu- +“The Lord has done this for +sion. She declared, +me. In these days He has shown me favor and +Gabriel Foretells Jesus’ Birth +taken away my disgrace among the people.” +26 + +27 + +In the sixth month, God sent the angel Gabriel +to a virgin +to a town in Galilee called Nazareth, +pledged in marriage to a man named Joseph, who +was of the house of David. And the virgin’s name +The angel appeared to her and said, +was Mary. +“Greetings, + you who are highly favored! The +29 +Lord is with you. + +28 +b + +” + +c + +31 + +Mary was greatly troubled at his words and +30 +wondered what kind of greeting this might be. +So the angel told her, “Do not be afraid, Mary, +Behold, you +for you have found favor with God. +will conceive and give birth to a son, and you are +to give Him the name Jesus. +He will be great +and will be called the Son of the Most High. The +Blessed are you among women! +Lord God will give Him the throne of His father + +32 + +Malachi 4:5–6 + +Or + +BYZ and TR include + + 916 | Luke 1:33 + +33 + +53 + +David, +34 +Jacob forever. His kingdom will never end!” + +and He will reign over the house of + +54 + +He has filled the hungry with good things, +but has sent the rich away empty. + +“How can this be,” Mary asked the angel, “since + +35 +I am a virgin?” + +36 + +The angel replied, “The Holy Spirit will come + a +upon you, and the power of the Most High will +overshadow you. So the Holy One to be born +will be called the Son of God. +Look, even Eliza- +beth your relative has conceived a son in her old +age, and she who was called barren is in her sixth +38 +” +month. + +For no word from God will ever fail. + +37 + +b + +“I am the Lord’s servant,” Mary answered. +“May it happen to me according to your word.” +Mary Visits Elizabeth +Then the angel left her. +39 + +40 + +In those days Mary got ready and hurried to a +town in the hill country of Judah, +where she +entered the home of Zechariah and greeted Eliz- +41 +abeth. + +44 + +43 + +42 + +When Elizabeth heard Mary’s greeting, the +baby leaped in her womb, and Elizabeth was +filled with the Holy Spirit. +In a loud voice she +exclaimed, “Blessed are you among women, and +And why am +blessed is the fruit of your womb! +I so honored, that the mother of my Lord should +For as soon as the sound of your +come to me? +45 +greeting reached my ears, the baby in my womb +Blessed is she who has believed +leaped for joy. +Mary’s Song (1 Samuel 2:1–11) +that the Lord’s word to her will be fulfilled.” +46 + +Then Mary said: + +47 +48 + +“My soul magnifies the Lord, + +and my spirit rejoices in God my Savior! +For He has looked with favor on the humble + +state of His servant. + +49 + +From now on all generations will call me + +blessed. + +For the Mighty One has done great things for + +50 + +me. + +Holy is His name. + +51 + +His mercy extends to those who fear Him, + +from generation to generation. + +He has performed mighty deeds with His + +arm; + +52 + +He has scattered those who are proud +in the thoughts of their hearts. +He has brought down rulers from their + +55 + +He has helped His servant Israel, +remembering to be merciful, + +as He promised to our fathers, + +56 + +to Abraham and his descendants + +forever.” + +Mary stayed with Elizabeth for about three + +The Birth of John the Baptist +months and then returned home. +57 + +58 + +When the time came for Elizabeth to have her +child, she gave birth to a son. +Her neighbors +and relatives heard that the Lord had shown her +59 +great mercy, and they rejoiced with her. + +60 + +On the eighth day, when they came to circum- +cise the child, they were going to name him after +his father Zechariah. +But his mother replied, +61 +“No! He shall be called John.” + +62 + +They said to her, “There is no one among your +So they made +relatives who bears this name.” +signs to his father to find out what he wanted to +63 +name the child. + +64 + +Zechariah asked for a tablet and wrote, “His +Im- +name is John.” And they were all amazed. +mediately Zechariah’s mouth was opened and +his tongue was released, and he began to speak, +65 +praising God. + +66 + +All their neighbors were filled with awe, and +people throughout the hill country of Judea were +And all who heard +talking about these events. +this wondered in their hearts and asked, “What +then will this child become?” For the Lord’s hand +Zechariah’s Song +was with him. +67 + +Then his father Zechariah was filled with the + +68 +Holy Spirit and prophesied: + +“Blessed be the Lord, the God of Israel, + +69 + +because He has visited and redeemed + +His people. + +He has raised up a horn of salvation + +70 + +for us + +in the house of His servant David, +as He spoke through His holy prophets, + +71 + +those of ages past, + +salvation from our enemies + +72 + +and from the hand of all who hate us, + +a 35 + +born of you + +b 37 +but has exalted the humble. + +For nothing will be impossible with God. + +and to remember His holy covenant, + +to show mercy to our fathers + +thrones, + +TR + +Or + + 73 + +74 + +the oath He swore to our father Abraham, +deliverance from hostile + +to grant us +hands, + +that we may serve Him without fear, +in holiness and righteousness before Him + +all the days of our lives. + +75 + +76 + +And you, child, will be called + +77 + +a prophet of the Most High; +for you will go on before the Lord +to prepare the way for Him, + +to give to His people the knowledge of + +78 + +salvation + +through the forgiveness of their sins, + a +because of the tender mercy of our God, + +79 + +by which the Dawn + + will visit us from on + +high, + +to shine on those who live in darkness + +and in the shadow of death, + +to guide our feet + +80 + +into the path of peace.” + b + +And the child grew and became strong in + and he lived in the wilderness until the + +spirit; +The Birth of Jesus (Matthew 1:18–25) +time of his public appearance to Israel. + +2 + +c + +2 + +Now in those days a decree went out from +Caesar Augustus that a census should be + d +This was the first +taken of the whole empire. +3 + Quirinius was gover- +census to take place while +And everyone went to his own +nor of Syria. +4 +town to register. + +5 + +So Joseph also went up from Nazareth in +Galilee to Judea, to the city of David called Beth- +lehem, since he was from the house and line of +He went there to register with Mary, who +David. +was pledged to him in marriage and was expect- +6 +ing a child. + +7 + +While they were there, the time came for her +And she gave birth to her +Child to be born. +firstborn, a Son. She wrapped Him in swaddling +cloths and laid Him in a manger, because there +The Shepherds and the Angels +was no room for them in the inn. +8 + +Luke 2:27 | 917 + +11 + +bring you good news of great joy that will be for +Today in the city of David a Sav- +all the people: +12 +ior has been born to you. He is Christ the Lord! +And this will be a sign to you: You will find a +baby wrapped in swaddling cloths and lying in a +13 +manger.” + +And suddenly there appeared with the angel a +great multitude of the heavenly host, praising +14 +God and saying: + +“Glory to God in the highest, + +15 + +and on earth peace to men +on whom His favor rests!” + +When the angels had left them and gone into +heaven, the shepherds said to one another, “Let +us go to Bethlehem and see this thing that has +happened, which the Lord has made known to +16 +us.” + +17 + +So they hurried off and found Mary and Joseph +and the Baby, who was lying in the manger. +Af- +ter they had seen the Child, they spread the mes- +And all who +sage they had received about Him. +heard it were amazed at what the shepherds said +to them. +But Mary treasured up all these things +20 +and pondered them in her heart. + +19 + +18 + +The shepherds returned, glorifying and prais- +ing God for all they had heard and seen, which +Jesus Presented at the Temple +was just as the angel had told them. +21 + +When the eight days before His circumcision +had passed, He was named Jesus, the name the +22 +angel had given Him before He was conceived. + + e + +23 + +And when the time of purification according to +the Law of Moses was complete, His parents +brought Him to Jerusalem to present Him to the +(as it is written in the Law of the Lord: +Lord +24 +“Every firstborn male shall be consecrated to the +and to offer the sacrifice specified in +Lord” +the Law of the Lord: “A pair of turtledoves or two +The Prophecy of Simeon +young pigeons.” +25 + +), + + f + +And there were shepherds residing in the fields +9 +nearby, keeping watch over their flocks by night. +Just then an angel of the Lord stood before +them, and the glory of the Lord shone around +But the angel +them, and they were terrified. +b 80 +the Sunrise +a 78 +said to them, “Do not be afraid! For behold, I +f 24 +was the census before + +the Morning Light + +10 + +in the Spirit + +Or + +e 23 + or + +Exodus 13:2 + +Or +Leviticus 12:8 + +Now there was a man in Jerusalem named Sim- +eon, who was righteous and devout. He was wait- +26 +ing for the consolation of Israel, and the Holy +The Holy Spirit had re- +Spirit was upon him. +vealed to him that he would not see death before +g +Led by the Spirit, +he had seen the Lord’s Christ. +This + d 2 +he went into the temple courts. + And when the +the temple + +of the whole world + +of the whole land + +27 + + or + +Or + +c 1 +g 27 +Or + +Literally + +; also in verse 46 + + 918 | Luke 2:28 + +28 + +44 + +parents brought in the child Jesus to do for Him +Simeon +what was customary under the Law, +29 +took Him in his arms and blessed God, saying: + +“Sovereign Lord, as You have promised, + +You now dismiss Your servant in peace. + +30 +31 + +For my eyes have seen Your salvation, + +32 + +which You have prepared in the sight of all + +people, + +33 + +a light for revelation to the Gentiles, + +and for glory to Your people Israel.” + +34 + +The Child’s father and mother were amazed at +Then Simeon + +what was spoken about Him. +blessed them and said to His mother Mary: + +“Behold, this Child is appointed to cause +the rise and fall of many in Israel, +and to be a sign that will be spoken + +35 + +against, + +so that the thoughts of many hearts will + +be revealed— + +and a sword will pierce your soul + +The Prophecy of Anna + +as well.” + +36 + +There was also a prophetess named Anna, the +daughter of Phanuel, of the tribe of Asher, who +37 +was well along in years. She had been married for +a +and then was a widow to the age +seven years, +of eighty-four. + She never left the temple, but +38 +worshiped night and day, fasting and praying. + +Coming forward at that moment, she gave +thanks to God and spoke about the Child to all who +The Return to Nazareth (Matthew 2:19–23) +were waiting for the redemption of Jerusalem. +39 + +When Jesus’ parents had done everything re- +quired by the Law of the Lord, they returned to +40 +Galilee, to their own town of Nazareth. + +b + +And the Child grew and became strong. + + He +was filled with wisdom, and the grace of God was +The Boy Jesus at the Temple +upon Him. +41 + +42 + +Every year His parents went to Jerusalem for +And when He was +the Feast of the Passover. +twelve years old, they went up according to the +43 +custom of the Feast. + +Assuming He was in their company, +stayed. +they traveled on for a day before they began to +45 +look for Him among their relatives and friends. + +46 + +When they could not find Him, they returned +Finally, after +to Jerusalem to search for Him. +three days they found Him in the temple courts, +47 +sitting among the teachers, listening to them and +And all who heard Him +asking them questions. +were astounded at His understanding and His +48 +answers. + +When His parents saw Him, they were aston- +ished. “Child, why have You done this to us?” His +mother asked. “Your father and I have been anx- +49 +iously searching for You.” + + c + +50 + +“Why were you looking for Me?” He asked. +“Did you not know that I had to be in My Father’s +house +But they did not understand the +51 +statement He was making to them. + +?” + +Then He went down to Nazareth with them +and was obedient to them. But His mother treas- +52 +ured up all these things in her heart. + +And Jesus grew in wisdom and stature, and in + +The Mission of John the Baptist (Isa. 40:1–5 ; +favor with God and man. +Matthew 3:1–12 ; Mark 1:1–8 ; John 1:19–28) + +3 + +In the fifteenth year of the reign of Tiberius +Caesar, while Pontius Pilate was governor of +Judea, Herod tetrarch of Galilee, his brother +Philip tetrarch of Ituraea and Trachonitis, and +during the high +Lysanias tetrarch of Abilene, +priesthood of Annas and Caiaphas, the word +of God came to John son of Zechariah in the +3 +wilderness. + +2 + +4 + +He went into all the region around the Jordan, +preaching a baptism of repentance for the for- +as it is written in the book of +giveness of sins, +the words of Isaiah the prophet: + +“A voice of one calling in the wilderness, + +5 + +‘Prepare the way for the Lord, +make straight paths for Him. + +Every valley shall be filled in, + +and every mountain and hill made + +low. + +The crooked ways shall be made straight, +6 + +When those days were over and they were re- +turning home, the boy Jesus remained behind in +a 37 +Jerusalem, but His parents were unaware He had +business +Or + +And all flesh will see God’s salvation + +was a widow for eighty-four years + +BYZ and TR + +b 40 + +d 6 + +and the rough ways smooth. + d +And all humanity will see God’s + +became strong in spirit + +salvation.’ + +c 49 +” + +I had to be about My Father’s + +Literally + +; Isaiah 40:3–5 (see also LXX) + +Or + + 7 + +8 + +Then John said to the crowds coming out to be +baptized by him, “You brood of vipers, who +warned you to flee from the coming wrath? +Pro- +duce fruit, then, in keeping with repentance. And +do not begin to say to yourselves, ‘We have Abra- +ham as our father.’ For I tell you that out of these +9 +stones God can raise up children for Abraham. +The axe lies ready at the root of the trees, and +every tree that does not produce good fruit will +10 +be cut down and thrown into the fire.” + +The crowds asked him + +11 +do?” + +, “What then should we + +John replied, “Whoever has two tunics should +share with him who has none, and whoever has +12 +food should do the same.” + +Even tax collectors came to be baptized. + +13 +“Teacher,” they asked, “what should we do?” + +“Collect no more than you are authorized,” he + +14 +answered. + +Then some soldiers asked him, “And what + +should we do?” + +Luke 3:37 | 919 + +The Genealogy of Jesus +(Ruth 4:18–22 ; Matthew 1:1–17) + +23 + +Jesus Himself was about thirty years old when + +He began His ministry. + +He was regarded as the son of Joseph, + +24 + +the son of Heli, + +the son of Matthat, the son of Levi, + +25 + +the son of Melchi, + +the son of Jannai, the son of Joseph, +the son of Mattathias, the son of Amos, + +26 + +the son of Nahum, + +the son of Esli, the son of Naggai, +the son of Maath, the son of Mattathias, + +27 + +the son of Semein, + +the son of Josech, the son of Joda, +the son of Joanan, the son of Rhesa, +the son of Zerubbabel, + +28 + +the son of Shealtiel, the son of Neri, + +the son of Melchi, the son of Addi, +the son of Cosam, + +29 + +the son of Elmadam, the son of Er, + +the son of Joshua, the son of Eliezer, + +“Do not take money by force or false accusation,” +15 +he said. “Be content with your wages.” + +30 + +the son of Jorim, + +the son of Matthat, the son of Levi, + +a + +16 + +The people were waiting expectantly and were +all wondering in their hearts if John could be the +Christ. +John answered all of them: “I baptize +you with water, + but One more powerful than I +b +will come, the straps of whose sandals I am not +c +worthy to untie. + He will baptize you with the +Holy Spirit and with fire. +His winnowing fork +is in His hand to clear His threshing floor and to +gather the wheat into His barn; but He will burn +18 +up the chaff with unquenchable fire.” + +17 + +19 + +20 + +With these and many other exhortations, John +proclaimed the good news to the people. +But +when he rebuked Herod the tetrarch regarding +his brother’s wife Herodias and all the evils he +had done, +Herod added this to them all: He +The Baptism of Jesus +locked John up in prison. +(Matthew 3:13–17 ; Mark 1:9–11 ; John 1:29–34) + +21 + +22 + +When all the people were being baptized, Jesus +was baptized too. And as He was praying, heaven +was opened, +and the Holy Spirit descended on +Him in a bodily form like a dove. And a voice +came from heaven: “You are My beloved Son; in +a 16 +You I am well pleased.” +e 33 + +in water + +Aram + +b 16 + +c 16 + +Ram + +the son of Simeon, the son of Judah, + +31 + +the son of Joseph, + +the son of Jonam, the son of Eliakim, + +the son of Melea, the son of Menna, +the son of Mattatha, + +32 + +the son of Nathan, the son of David, + +the son of Jesse, the son of Obed, + +d + +33 + +the son of Boaz, +f + +the son of Sala, + + the son of Nahshon, +the son of Amminadab, the son of Admin, + +e + +the son of Arni, + +34 + +the son of Hezron, the son of Perez, + +the son of Judah, +the son of Jacob, the son of Isaac, +the son of Abraham, + +35 + +the son of Terah, the son of Nahor, + +the son of Serug, the son of Reu, +the son of Peleg, + +36 + +the son of Eber, the son of Shelah, +the son of Cainan, the son of Arphaxad, + +37 + +the son of Shem, + +the son of Noah, the son of Lamech, +the son of Methuselah, the son of Enoch, + +Or + +the son of Arni +21 and Matthew 1:4–5. +not include + +Cited in Acts 13:25 + +BYZ and TR + +. + +Or +; others + +BYZ and TR +; see Ruth 4:19 and Matthew 1:3–4. + +; see Ruth 4:20– +WH, BYZ, and TR do + +in the Holy Spirit and in fire + +the son of Mahalalel, the son of Cainan, + +Salmon +f 33 + +the son of Jared, +d 32 + + 920 | Luke 3:38 + +38 + +a + +the son of Enosh, + + the son of Seth, + +the son of Adam, +The Temptation of Jesus +the son of God. +(Matthew 4:1–11 ; Mark 1:12–13) + +4 + +b + +2 + +Then Jesus, full of the Holy Spirit, returned +from the Jordan and was led by the Spirit +where for forty days He +into the wilderness, +was tempted by the devil. He ate nothing during +those days, and when they had ended, He was +3 +hungry. + +The devil said to Him, “If You are the Son of God, + +4 +tell this stone to become bread.” + + c +But Jesus answered, “It is written: ‘Man shall +” + +5 +not live on bread alone.’ + +6 + +Then the devil led Him up to a high place and +showed Him in an instant all the kingdoms of the +“I will give You authority over all these +world. +kingdoms and all their glory,” he said. “For it has +been relinquished to me, and I can give it to any- +one I wish. +So if You worship me, it will all be +8 +Yours.” + +7 + + d + +But Jesus answered, “It is written: ‘Worship the + +9 +Lord your God and serve Him only.’ + +” + +Then the devil led Him to Jerusalem and set Him +on the pinnacle of the temple. “If You are the Son +10 +of God,” he said, “throw Yourself down from here. + +For it is written: + +‘He will command His angels concerning You + +11 + +to guard You carefully, + +and they will lift You up in their hands, +so that You will not strike Your foot + + e + +12 + +against a stone.’ + +” + + f + +But Jesus answered, “It also says, ‘Do not put + +13 +the Lord your God to the test.’ + +” + +When the devil had finished every temptation, + +Jesus Begins His Ministry +he left Him until an opportune time. +(Isaiah 9:1–7 ; Matthew 4:12–17 ; Mark 1:14–15) + +14 + +The Rejection at Nazareth +(Isaiah 61:1–11 ; Matthew 13:53–58 ; Mark 6:1–6) + +16 + +17 + +Then Jesus came to Nazareth, where He had +been brought up. As was His custom, He entered +the synagogue on the Sabbath. And when He +the scroll of the prophet +stood up to read, +Isaiah was handed to Him. Unrolling it, He found +18 +the place where it was written: + +“The Spirit of the Lord is on Me, +because He has anointed Me +to preach good news to the poor. + g +He has sent Me to proclaim liberty to + +the captives + +19 + +20 + +and recovery of sight to the blind, +to release the oppressed, + + h + +to proclaim the year of the Lord’s favor.” + +Then He rolled up the scroll, returned it +to the attendant, and sat down. The eyes of eve- +ryone in the synagogue were fixed on Him, +and +He began by saying, “Today this Scripture is ful- +22 +filled in your hearing.” + +21 + +All spoke well of Him and marveled at the gra- +cious words that came from His lips. “Isn’t this +23 +the son of Joseph?” they asked. + +Jesus said to them, “Surely you will quote this +proverb to Me: ‘Physician, heal yourself! Do here +in Your hometown what we have heard that You +24 +did in Capernaum.’ + +” + +25 + +26 + +Then He added, “Truly I tell you, no prophet is +accepted in his hometown. +But I tell you truth- +fully that there were many widows in Israel in +the time of Elijah, when the sky was shut for +three and a half years and great famine swept +Yet Elijah was not sent to any +over all the land. +27 +of them, but to the widow of Zarephath in Sidon. + in Israel in the +time of Elisha the prophet. Yet not one of them +28 +was cleansed—only Naaman the Syrian.” + +And there were many lepers + + i + +29 + +On hearing this, all the people in the synagogue +They got up, drove Him out of +were enraged. +the town, and led Him to the brow of the hill on +which the town was built, in order to throw Him +But Jesus passed through the +over the cliff. +crowd and went on His way. +b 1 + +in the wilderness + +c 4 + +30 + +“Get behind Me, Satan! For it is written… + +15 + +Jesus returned to Galilee in the power of the +Spirit, and the news about Him spread through- +He taught in their +out the surrounding region. +synagogues and was glorified by everyone. +a 38 +on bread alone, but on every word of God +e 11 +captives + +, a variant spelling of Enosh +g 18 +. + +to proclaim the acceptable year of the Lord + +d 8 +; see Genesis 5:6. + +Greek + +Enōs + +f 12 + +h 19 +Psalm 91:11–12 + +Deut. 6:16 + +BYZ and TR + +Deuteronomy 6:13; BYZ and TR + +Deuteronomy 8:3; BYZ and TR +He has sent Me to heal the brokenhearted, to proclaim liberty to the +i 27 + +leper + +Or + +Or +with a skin disease. See Lev. 13. + +; Isaiah 61:1–2 (see also LXX) + +A + + was one afflicted + + Jesus Expels an Unclean Spirit +(Mark 1:21–28) + +The First Disciples +(Matthew 4:18–22 ; Mark 1:16–20 ; John 1:35–42) + +Luke 5:15 | 921 + +31 + +32 + +Then He went down to Capernaum, a town in +Galilee, and on the Sabbath He began to teach the +They were astonished at His teaching, +people. +33 +because His message had authority. + +34 + +In the synagogue there was a man possessed +by the spirit of an unclean demon. He cried out in +“Ha! What do You want with us, +a loud voice, +Jesus of Nazareth? Have You come to destroy us? +35 +I know who You are—the Holy One of God!” + +But Jesus rebuked the demon. “Be silent!” He +said. “Come out of him!” At this, the demon threw +the man down before them all and came out +36 +without harming him. + +All the people were overcome with amaze- +ment and asked one another, “What is this mes- +sage? With authority and power He commands +And +the unclean spirits, and they come out!” +the news about Jesus spread throughout the sur- +Jesus Heals at Peter’s House +rounding region. +(Matthew 8:14–17 ; Mark 1:29–34) + +37 + +38 + +39 + +After Jesus had left the synagogue, He went to +the home of Simon, whose mother-in-law was +suffering from a high fever. So they appealed to +and He stood over her and +Jesus on her behalf, +rebuked the fever, and it left her. And she got up +40 +at once and began to serve them. + +41 + +At sunset, all who were ill with various dis- +eases were brought to Jesus, and laying His +Demons +hands on each one, He healed them. +also came out of many people, shouting, “You are +the Son of God!” But He rebuked the demons and +would not allow them to speak, because they +Jesus Preaches in Judea +knew He was the Christ. +(Mark 1:35–39) + +42 + +At daybreak, Jesus went out to a solitary place, +and the crowds were looking for Him. They came +But +to Him and tried to keep Him from leaving. +Jesus told them, “I must preach the good news of +the kingdom of God to the other towns as well, +44 +because that is why I was sent.” + +43 + +a + +5 + + b + +2 + +On one occasion, while Jesus was standing + with the crowd +by the Lake of Gennesaret +He +pressing in on Him to hear the word of God, +saw two boats at the edge of the lake. The fisher- +3 +men had left them and were washing their nets. +Jesus got into the boat belonging to Simon and +asked him to put out a little from shore. And sit- +4 +ting down, He taught the people from the boat. + +When Jesus had finished speaking, He said to Si- +mon, “Put out into deep water and let down your +5 +nets for a catch.” + +6 + +“Master,” Simon replied, “we have worked hard +all night without catching anything. But because +When they +You say so, I will let down the nets.” +7 +had done so, they caught such a large number of +fish that their nets began to tear. +So they sig- +naled to their partners in the other boat to come +and help them, and they came and filled both +8 +boats so full that they began to sink. + +9 + +When Simon Peter saw this, he fell at Jesus’ +knees. “Go away from me, Lord,” he said, “for I am +For he and his companions were +a sinful man.” +10 +astonished at the catch of fish they had taken, +and so were his partners James and John, the + +sons of Zebedee. + +11 + + “Do not be afraid,” Jesus said to Simon. “From +And when they +now on you will catch men.” +had brought their boats ashore, they left every- +The Leper’s Prayer +thing and followed Him. +(Lev. 14:1–32 ; Matthew 8:1–4 ; Mark 1:40–45) + +12 + +c +While Jesus was in one of the towns, a man + +came along who was covered with leprosy. +When he saw Jesus, he fell facedown and begged +Him, “Lord, if You are willing, You can make me +13 +clean.” + +Jesus reached out His hand and touched the +man. “I am willing,” He said. “Be clean!” And im- +14 +mediately the leprosy left him. + +“Do not tell anyone,” Jesus instructed him. “But +go, show yourself to the priest and present the +offering Moses prescribed for your cleansing, as +15 +a testimony to them.” + + d + +And He continued to preach in the synagogues + +of Judea. +a 44 + +Galilee + +b 1 + +But the news about Jesus spread all the more, +and great crowds came to hear Him and to be + +c 12 + +BYZ and TR + +; see Mark 1:39. + +That is, the Sea of Galilee + +Leprosy was a term used for various skin + +diseases. See Leviticus 13. + +See Leviticus 14:1–32. + +d 14 + + 922 | Luke 5:16 + +16 + +31 + +healed of their sicknesses. +Jesus Heals a Paralytic +withdrew to the wilderness to pray. +(Matthew 9:1–8 ; Mark 2:1–12) + +Yet He frequently + +17 + +One day Jesus was teaching, and the Pharisees +and teachers of the law were sitting there. People +had come from Jerusalem and from every village +of Galilee and Judea, and the power of the Lord +18 +was present for Him to heal the sick. + +Just then some men came carrying a paralyzed +19 +man on a mat. They tried to bring him inside to +set him before Jesus, +but they could not find +a way through the crowd. So they went up on +the roof and lowered him on his mat through the +tiles into the middle of the crowd, right in front +20 +of Jesus. + +When Jesus saw their faith, He said, “Friend, + +21 +your sins are forgiven.” + +But the scribes and Pharisees began thinking +to themselves, “Who is this man who speaks blas- +22 +phemy? Who can forgive sins but God alone?” + +24 + +23 + +Knowing what they were thinking, Jesus re- +plied, “Why are you thinking these things in your +Which is easier: to say, ‘Your sins are +hearts? +But so +forgiven,’ or to say, ‘Get up and walk’? +that you may know that the Son of Man has +authority on the earth to forgive sins. . .” He said +to the paralytic, “I tell you, get up, pick up your +25 +mat, and go home.” + +26 + +And immediately the man stood up before +them, took what he had been lying on, and went +home glorifying God. +Everyone was taken with +amazement and glorified God. They were filled +with awe and said, “We have seen remarkable +Jesus Calls Levi +things today.” +(Matthew 9:9–13 ; Mark 2:13–17) + +27 + +28 + +After this, Jesus went out and saw a tax collec- +tor named Levi sitting at the tax booth. “Follow +and Levi got up, left every- +Me,” He told him, +29 +thing, and followed Him. + +30 + +Then Levi hosted a great banquet for Jesus at +his house. A large crowd of tax collectors was +there, along with others who were eating with +But the Pharisees and their scribes com- +them. +plained to Jesus’ disciples, “Why do you eat and +a 1 +drink with tax collectors and sinners?” + +On the second Sabbath after the first + +b 4 + +32 + +Jesus answered, “It is not the healthy who need +I have not come to call + +a doctor, but the sick. +Questions about Fasting +the righteous, but sinners, to repentance.” +(Matthew 9:14–15 ; Mark 2:18–20) + +33 + +Then they said to Him, “John’s disciples and +those of the Pharisees frequently fast and pray, +34 +but Yours keep on eating and drinking.” + +35 + +Jesus replied, “Can you make the guests of the +bridegroom fast while He is with them? +But +the time will come when the bridegroom will be +The Patches and the Wineskins +taken from them; then they will fast.” +(Matthew 9:16–17 ; Mark 2:21–22) + +36 + +He also told them a parable: “No one tears a +piece of cloth from a new garment and sews it on +an old one. If he does, he will tear the new gar- +ment as well, and the patch from the new will not +37 +match the old. + +38 + +And no one pours new wine into old wine- +skins. If he does, the new wine will burst the +skins, the wine will spill, and the wineskins will +be ruined. +Instead, new wine is poured into +new wineskins. +And no one after drinking old +The Lord of the Sabbath +wine wants new, for he says, ‘The old is better.’ +” +(1 Sam. 21:1–7 ; Matthew 12:1–8 ; Mark 2:23–28) + +39 + +6 + + a + + Jesus was passing through the +One Sabbath +grainfields, and His disciples began to pick +2 +the heads of grain, rub them in their hands, and +But some of the Pharisees asked, “Why +eat them. +3 +are you doing what is unlawful on the Sabbath?” + + b + +Jesus replied, “Have you not read what David +4 +did when he and his companions were hungry? +He entered the house of God, took the conse- + and gave it to his companions, and + +crated bread +5 +ate what is lawful only for the priests to eat.” + +Then Jesus declared, “The Son of Man is Lord of + +Jesus Heals on the Sabbath +the Sabbath.” +(Matthew 12:9–14 ; Mark 3:1–6) + +6 + +7 + +On another Sabbath Jesus entered the syna- +gogue and was teaching, and a man was there +whose right hand was withered. +Looking for a +reason to accuse Jesus, the scribes and Pharisees +were watching Him closely to see if He would +heal on the Sabbath. + +the Bread of the Presence + +BYZ and TR + +Or + + 8 + +Woes to the Satisfied (Amos 6:1–7) + +Luke 6:40 | 923 + +But Jesus knew their thoughts and said to the +man with the withered hand, “Get up and stand +9 +among us.” So he got up and stood there. + +10 + +Then Jesus said to them, “I ask you, which is +lawful on the Sabbath: to do good or to do evil, to +And after looking +save life or to destroy it?” +around at all of them, He said to the man, “Stretch +11 +out your hand.” He did so, and it was restored. + +But the scribes and Pharisees were filled with +rage and began to discuss with one another what +The Twelve Apostles +they might do to Jesus. +(Matthew 10:1–4 ; Mark 3:13–19) + +24 + +But woe to you who are rich, + +25 + +for you have already received your + +comfort. + +Woe to you who are well fed now, + +for you will hunger. +Woe to you who laugh now, + +26 + +for you will mourn and weep. +Woe to you when all men speak well + +of you, + +for their fathers treated the false prophets + +Love Your Enemies (Matthew 5:38–48) + +in the same way. + +12 + +27 + +14 + +In those days Jesus went out to the mountain +13 +to pray, and He spent the night in prayer to God. +When daylight came, He called His disciples to +Him and chose twelve of them, whom He also +Simon, whom He +designated as apostles: +named Peter, and his brother Andrew; James and +Matthew and +John; Philip and Bartholomew; +Thomas; James son of Alphaeus and Simon called +Judas son of James, and Judas Iscar- +the Zealot; +Jesus Heals the Multitudes +iot, who became a traitor. +(Matthew 4:23–25 ; Mark 3:7–12) + +15 + +16 + +17 + +18 + +Then Jesus came down with them and stood on +a level place. A large crowd of His disciples was +there, along with a great number of people from +all over Judea, Jerusalem, and the seacoast of +They had come to hear Him +Tyre and Sidon. +and to be healed of their diseases, and those trou- +bled by unclean spirits were healed. +The entire +crowd was trying to touch Him, because power +The Beatitudes +was coming from Him and healing them all. +(Psalm 1:1–6 ; Matthew 5:3–12) + +19 + +20 + +29 + +But to those of you who will listen, I say: Love +28 +your enemies, do good to those who hate you, +bless those who curse you, pray for those who +mistreat you. +If someone strikes you on one +cheek, turn to him the other also. And if someone +30 +takes your cloak, do not withhold your tunic as +well. +Give to everyone who asks you, and if an- +31 +yone takes what is yours, do not demand it back. +32 +Do to others as you would have them do to you. + +34 + +33 + +If you love those who love you, what credit is +that to you? Even sinners love those who love +them. +If you do good to those who do good to +you, what credit is that to you? Even sinners do +the same. +And if you lend to those from whom +you expect repayment, what credit is that to you? +Even sinners lend to sinners, expecting to be re- +35 +paid in full. + +But love your enemies, do good to them, and +lend to them, expecting nothing in return. Then +your reward will be great, and you will be sons of +the Most High; for He is kind to the ungrateful +and wicked. +Be merciful, just as your Father is +Judging Others +merciful. +(Matthew 7:1–6 ; Romans 14:1–12) + +36 + +Looking up at His disciples, Jesus said: + +37 + +21 + +“Blessed are you who are poor, + +for yours is the kingdom of God. + +Blessed are you who hunger now, + +for you will be filled. + +Blessed are you who weep now, + +22 + +for you will laugh. + +Blessed are you when people hate you, and +when they exclude you and insult you and reject +23 +your name as evil because of the Son of Man. +Rejoice in that day and leap for joy, because +great is your reward in heaven. For their fathers +treated the prophets in the same way. + +38 + +Do not judge, and you will not be judged. Do +not condemn, and you will not be condemned. +Give, and it +Forgive, and you will be forgiven. +will be given to you. A good measure, pressed +down, shaken together, and running over will be +poured into your lap. For with the measure you +39 +use, it will be measured back to you.” + +40 + +Jesus also told them a parable: “Can a blind +man lead a blind man? Will they not both fall into +a pit? +A disciple is not above his teacher, but +everyone who is fully trained will be like his +teacher. + + 924 | Luke 6:41 + +41 + +7 + +a + +How can you say, ‘Brother, + +Why do you look at the speck in your brother’s +42 +eye but fail to notice the beam in your own eye? + let me take the +speck out of your eye,’ while you yourself fail to +see the beam in your own eye? You hypocrite! +First take the beam out of your own eye, and then +you will see clearly to remove the speck from +A Tree and Its Fruit +your brother’s eye. +(Matthew 7:15–23 ; Matthew 12:33–37) + +43 + +44 + +45 + +No good tree bears bad fruit, nor does a bad +For each tree is known by +tree bear good fruit. +its own fruit. Indeed, figs are not gathered from +thornbushes, nor grapes from brambles. +The +good man brings good things out of the good +treasure of his heart, and the evil man brings evil +things out of the evil treasure of his heart. For out +The House on the Rock (Matthew 7:24–27) +of the overflow of the heart the mouth speaks. +46 + +47 + +48 + +Why do you call Me ‘Lord, Lord,’ but do not do +I will show you what he is like who +what I say? +comes to Me and hears My words and acts on +them: +He is like a man building a house, who +dug down deep and laid his foundation on the +rock. When the flood came, the torrent crashed +against that house but could not shake it, because +49 +it was well built. + +b + +But the one who hears My words and does not +act on them is like a man who built his house +on ground without a foundation. The torrent +crashed against that house, and immediately it +The Faith of the Centurion +fell—and great was its destruction!” +(Matthew 8:5–13 ; John 4:43–54) + +7 + +3 + +2 + +When Jesus had concluded His discourse +in the hearing of the people, He went to +There a highly valued servant of a +Capernaum. +When the +centurion was sick and about to die. +centurion heard about Jesus, he sent some +Jewish elders to ask Him to come and heal his +They came to Jesus and pleaded with +servant. +5 +Him earnestly, “This man is worthy to have You +for he loves our nation and has built +grant this, +6 +our synagogue.” + +4 + +So Jesus went with them. But when He was not +far from the house, the centurion sent friends +with the message: “Lord, do not trouble Yourself, +How can you say to your brother, ‘Brother +a 42 +for I am not worthy to have You come under my +c 14 + +b 48 + +bier + +roof. +That is why I did not consider myself wor- +8 +thy to come to You. But just say the word, and my +servant will be healed. +For I myself am a man +under authority, with soldiers under me. I tell +one to go, and he goes, and another to come, and +he comes. I tell my servant to do something, and +9 +he does it.” + +10 + +When Jesus heard this, He marveled at the cen- +turion. Turning to the crowd following Him, He +said, “I tell you, not even in Israel have I found +such great faith.” +And when the messengers +returned to the house, they found the servant in +Jesus Raises a Widow’s Son +good health. +11 + +12 + +Soon afterward, Jesus went to a town called +Nain. His disciples went with Him, accompanied +by a large crowd. +As He approached the town +gate, He saw a dead man being carried out, the +only son of his mother, and she was a widow. And +13 +a large crowd from the town was with her. + +14 + +15 + +When the Lord saw her, He had compassion on +c +her and said, “Do not weep.” +Then He went up +and touched the coffin, + and those carrying it +stood still. “Young man,” He said, “I tell you, get +And the dead man sat up and began to +up!” +16 +speak! Then Jesus gave him back to his mother. + +17 + +A sense of awe swept over all of them, and they +glorified God. “A great prophet has appeared +among us!” they said. “God has visited His peo- +ple!” +And the news about Jesus spread +John’s Inquiry (Matthew 11:1–6) +throughout Judea and all the surrounding region. +18 + +19 + +Then John’s disciples informed him about all +these things. +So John called two of his disciples +and sent them to ask the Lord, “Are You the One +who was to come, or should we look for someone +20 +else?” + +When the men came to Jesus, they said, “John +the Baptist sent us to ask, ‘Are You the One who +was to come, or should we look for someone +21 +else?’ + +” + +22 + +At that very hour Jesus healed many people of +their diseases, afflictions, and evil spirits, and He +gave sight to many who were blind. +So He re- +plied, “Go back and report to John what you have +seen and heard: The blind receive sight, the lame +walk, the lepers + are cleansed, the deaf hear, the +dead are raised, and the good news is preached + +because its foundation was on the rock + + d + +Lit. +Literally + +, probably a wooden plank or open coffin + +A + +; see Matt. 7:25. + was one afflicted with a skin disease. See Lev. 13. + +d 22 +BYZ and TR + +leper + + 23 + +a + +38 + +Luke 8:3 | 925 + +to the poor. +Jesus Testifies about John +fall away on account of Me. +(Malachi 3:1–5 ; Matthew 11:7–19) + +” + +Blessed is the one who does not + +24 + +25 + +After John’s messengers had left, Jesus began +to speak to the crowds about John: “What did you +go out into the wilderness to see? A reed swaying +Otherwise, what did you go out to +in the wind? +see? A man dressed in fine clothes? Look, those +who wear elegant clothing and live in luxury are +26 +found in palaces. + +27 + +What then did you go out to see? A prophet? +This is + +Yes, I tell you, and more than a prophet. +the one about whom it is written: + +‘Behold, I will send My messenger ahead of + b + +28 + +You, + +who will prepare Your way before You.’ + +As she stood behind Him at His feet weeping, +she began to wet His feet with her tears and wipe +them with her hair. Then she kissed His feet and +39 +anointed them with the perfume. + +When the Pharisee who had invited Jesus saw +this, he said to himself, “If this man were a +prophet, He would know who this is and what +kind of woman is touching Him—for she is a sin- +40 +ner!” + +But Jesus answered him, “Simon, I have some- + +thing to tell you.” +41 +“Tell me, Teacher,” he said. + +c + +42 + +“Two men were debtors to a certain money- +lender. One owed him five hundred denarii, + and +When they were unable to re- +the other fifty. +pay him, he forgave both of them. Which one, +43 +then, will love him more?” + +I tell you, among those born of women there is +no one greater than John, yet even the least in the +29 +kingdom of God is greater than he.” + +“I suppose the one who was forgiven more,” + +Simon replied. +44 +“You have judged correctly,” Jesus said. + +30 + +All the people who heard this, even the tax col- +lectors, acknowledged God’s justice. For they had +received the baptism of John. +But the Pharisees +and experts in the law rejected God’s purpose for +themselves, because they had not been baptized +31 +by John. + +32 + +“To what, then, can I compare the men of this +They are like +generation? What are they like? +children sitting in the marketplace and calling +out to one another: + +‘We played the flute for you, +and you did not dance; + +we sang a dirge, + +33 + +and you did not weep.’ + +For John the Baptist came neither eating bread +34 +nor drinking wine, and you say, ‘He has a demon!’ +The Son of Man came eating and drinking, and +you say, ‘Look at this glutton and drunkard, a +But wis- +friend of tax collectors and sinners!’ +A Sinful Woman Anoints Jesus +dom is vindicated by all her children.” +(Matthew 26:6–13 ; Mark 14:3–9 ; John 12:1–8) + +35 + +36 + +Then one of the Pharisees invited Jesus to eat +37 +with him, and He entered the Pharisee’s house +and reclined at the table. +When a sinful woman +from that town learned that Jesus was dining +c 41 +a 23 +there, she brought an alabaster jar of perfume. + +who is not offended by Me +d 3 + +to Him + +b 27 + +Or + +Matthew 20:2. + +TR + +Malachi 3:1 + +45 + +And turning toward the woman, He said to Si- +mon, “Do you see this woman? When I entered +your house, you did not give Me water for My +feet, but she wet My feet with her tears and +You did not greet +wiped them with her hair. +46 +Me with a kiss, but she has not stopped kissing +You did not anoint My +My feet since I arrived. +47 +head with oil, but she has anointed My feet with +Therefore I tell you, her many sins +perfume. +have been forgiven, for she has loved much. But +48 +he who has been forgiven little loves little.” +49 + +Then Jesus said to her, “Your sins are forgiven.” + +But those at the table began to say to them- + +50 +selves, “Who is this who even forgives sins?” + +And Jesus told the woman, “Your faith has + +Women Minister to Jesus +saved you; go in peace.” + +8 + +2 + +Soon afterward, Jesus traveled from one +town and village to another, preaching and +proclaiming the good news of the kingdom of +as well as +God. The Twelve were with Him, +some women who had been healed of evil spirits +and infirmities: Mary called Magdalene, from +Joanna the +whom seven demons had gone out, +wife of Herod’s household manager Chuza, Su- +sanna, and many others. These women were +ministering to them + + out of their own means. +A denarius was customarily a day’s wage for a laborer; see + +3 + + d + + 926 | Luke 8:4 + +The Parable of the Sower +(Matthew 13:1–23 ; Mark 4:1–20) + +4 + +While a large crowd was gathering and people +5 +were coming to Jesus from town after town, He +told them this parable: +“A farmer went out to +sow his seed. And as he was sowing, some seed +fell along the path, where it was trampled, and +6 +the birds of the air devoured it. + +Some fell on rocky ground, and when it came +up, the seedlings withered because they had no +7 +moisture. + +Other seed fell among thorns, which grew up + +8 +with it and choked the seedlings. + +Still other seed fell on good soil, where it sprang + +up and produced a crop—a hundredfold.” + +nothing concealed that will not be made known +18 +and brought to light. + +Pay attention, therefore, to how you listen. +Whoever has will be given more, but whoever +does not have, even what he thinks he has will be +Jesus’ Mother and Brothers +taken away from him.” +(Matthew 12:46–50 ; Mark 3:31–35) + +19 + +20 + +Then Jesus’ mother and brothers came to see +Him, but they were unable to reach Him because +of the crowd. +He was told, “Your mother and +brothers are standing outside, wanting to see +21 +You.” + +But He replied, “My mother and brothers are +Jesus Calms the Storm +those who hear the word of God and carry it out.” +(Psalm 107:1–43 ; Matt. 8:23–27 ; Mark 4:35–41) + +As Jesus said this, He called out, “He who has ears +9 +to hear, let him hear.” + +22 + +Then His disciples asked Him what this parable + +10 +meant. + +He replied, “The knowledge of the mysteries of +the kingdom of God has been given to you, but to +others I speak in parables, so that, + +‘though seeing, they may not see; +though hearing, they may not + + a + +11 + +understand.’ + + b + +12 +Now this is the meaning of the parable: The +seed is the word of God. + along the +path are those who hear, but the devil comes and +takes away the word from their hearts, so that +13 +they may not believe and be saved. + +The seeds + +The seeds on rocky ground are those who hear +the word and receive it with joy, but they have no +root. They believe for a season, but in the time of +14 +testing, they fall away. + +The seeds that fell among the thorns are those +who hear, but as they go on their way, they are +choked by the worries, riches, and pleasures of +15 +this life, and their fruit does not mature. + +But the seeds on good soil are those with a no- +ble and good heart, who hear the word, cling to +The Lesson of the Lamp (Mark 4:21–25) +it, and by persevering produce a crop. +16 + +No one lights a lamp and covers it with a jar or +puts it under a bed. Instead, he sets it on a stand, +For there +so those who enter can see the light. +a 10 +is nothing hidden that will not be disclosed, and + +the ones + +b 12 + +17 + +Gergesenes +Isaiah 6:9 (See also LXX) + +Tischendorf + +; also in verse 37 + +One day Jesus said to His disciples, “Let us +cross to the other side of the lake.” So He got into +23 +a boat with them and set out. + +As they sailed, He fell asleep, and a windstorm +came down on the lake, so that the boat was be- +24 +ing swamped, and they were in great danger. +The disciples went and woke Him, saying, + +“Master, Master, we are perishing!” + +25 + +Then Jesus got up and rebuked the wind and the +raging waters, and they subsided, and all was +calm. +“Where is your faith?” He asked. + +Frightened and amazed, they asked one another, +“Who is this? He commands even the winds and +The Demons and the Pigs +the water, and they obey Him!” +(Matthew 8:28–34 ; Mark 5:1–20) + +26 + +c + +27 + + across the lake from Galilee. + +Then they sailed to the region of the Gerase- +nes, +When Jesus +stepped ashore, He was met by a demon-pos- +sessed man from the town. For a long time this +man had not worn clothing or lived in a house, +28 +but he stayed in the tombs. + +29 + +When the man saw Jesus, he cried out and fell +down before Him, shouting in a loud voice, “What +do You want with me, Jesus, Son of the Most High +God? I beg You not to torture me!” +For Jesus +had commanded the unclean spirit to come out +of the man. Many times it had seized him, and +though he was bound with chains and shackles, +he had broken the chains and been driven by the +demon into solitary places. + +Gadarenes + +c 26 + +Literally + +; also in verses 13, 14, and 15 + +BYZ and TR + +; + + 30 + +“What is your name?” Jesus asked. + +31 + +“Legion,” he replied, because many demons had +And the demons kept begging +gone into him. +32 +Jesus not to order them to go into the Abyss. + +There on the hillside a large herd of pigs was +feeding. So the demons begged Jesus to let them +33 +enter the pigs, and He gave them permission. + +Then the demons came out of the man and +went into the pigs, and the herd rushed down the +34 +steep bank into the lake and was drowned. + +When those tending the pigs saw what had +35 +happened, they ran off and reported this in the +So the people went +town and countryside. +out to see what had happened. They came to +Jesus and found the man whom the demons +had left, sitting at Jesus’ feet, clothed and in his +Meanwhile, +right mind; and they were afraid. +those who had seen it reported how the demon- +37 +possessed man had been healed. + +36 + +Then all the people of the region of the Gerase- +nes asked Jesus to depart from them, because +great fear had taken hold of them. So He got into +38 +the boat and started back. + +The man whom the demons had left begged to +39 +go with Jesus. But He sent him away, saying, +“Return home and describe how much God has +done for you.” So the man went away and pro- +claimed all over the town how much Jesus had +The Healing Touch of Jesus +done for him. +(Matthew 9:18–26 ; Mark 5:21–43) + +40 + +41 + +When Jesus returned, the crowd welcomed +Him, for they had all been waiting for Him. +Just +then a synagogue leader named Jairus came and +fell at Jesus’ feet. He begged Him to come to his +because his only daughter, who was +house, +about twelve, was dying. + +42 + +43 + +As Jesus went with him, the crowds pressed +including a woman who had suf- +around Him, +fered from bleeding for twelve years. She had + but no one +spent all her money on physicians, +She came up behind Jesus +was able to heal her. +and touched the fringe of His cloak, and immedi- +45 +ately her bleeding stopped. + +44 + +a + +Luke 9:6 | 927 + +b + + “the +But they all denied it. “Master,” said Peter, +46 +people are crowding and pressing against You.” + +But Jesus declared, “Someone touched Me, for + +47 +I know that power has gone out from Me.” + +Then the woman, seeing that she could not es- +cape notice, came trembling and fell down before +Him. In the presence of all the people, she ex- +plained why she had touched Him and how she +48 +had immediately been healed. + +“Daughter,” said Jesus, “your faith has healed + +49 +you. Go in peace.” + +While He was still speaking, someone arrived +from the house of the synagogue leader. “Your +daughter is dead,” he told Jairus. “Do not bother +50 +the Teacher anymore.” + +But Jesus overheard them and said to Jairus, +“Do not be afraid; just believe, and she will be +51 +healed.” + +When He entered the house, He did not +allow anyone to go in with Him except Peter, +52 +John, James, and the child’s father and mother. +Meanwhile, everyone was weeping and +mourning for her. But Jesus said, “Stop weeping; +she is not dead but asleep.” +And they laughed +54 +at Him, knowing that she was dead. + +53 + +55 + +But Jesus took her by the hand and called out, +Her spirit returned, and at once +“Child, get up!” +56 +she got up. And He directed that she be given +something to eat. +Her parents were astounded, +but Jesus ordered them not to tell anyone what +The Ministry of the Twelve +had happened. +(Matthew 10:5–15 ; Mark 6:7–13) + + c + +3 + + together and +Then Jesus called the Twelve +2 +gave them power and authority over all de- +And He sent +mons, and power to cure diseases. +them out to proclaim the kingdom of God and to +d +“Take nothing for the journey,” He +heal the sick. +told them, “no staff, no bag, no bread, no money, +no second tunic. +Whatever house you enter, +If anyone +stay there until you leave that area. +does not welcome you, shake the dust off your +feet when you leave that town, as a testimony +6 +against them.” + +5 + +4 + +9 + +a 43 +with him + +“Who touched Me?” Jesus asked. +d 3 + +His twelve disciples + +c 1 + +So they set out and went from village to village, +preaching the gospel and healing people every- +where. +She had spent all her money on physicians +silver coins + +and those who were + +b 45 + +NE and WH do not include +TR + +. + +Or + +. + +BYZ and TR include + + 928 | Luke 9:7 + +Herod Tries to See Jesus +(Matthew 14:1–12 ; Mark 6:14–29) + +7 + +When Herod the tetrarch heard about all that +was happening, he was perplexed. For some +8 +were saying that John had risen from the dead, +others that Elijah had appeared, and still others + +9 +that a prophet of old had arisen. + +“I beheaded John,” Herod said, “but who is this +man I hear such things about?” And he kept try- +The Feeding of the Five Thousand +ing to see Jesus. +(Matt. 14:13–21 ; Mark 6:30–44 ; John 6:1–15) + +20 + +“But what about you?” Jesus asked. “Who do + +you say I am?” +Christ’s Passion Foretold +Peter answered, “The Christ of God.” +(Matthew 16:21–23 ; Mark 8:31–33) + +21 + +22 + +Jesus strictly warned them not to tell this to +anyone. +“The Son of Man must suffer many +things,” He said. “He must be rejected by the el- +ders, chief priests, and scribes, and He must be +Take Up Your Cross +killed and on the third day be raised to life.” +(Matthew 16:24–28 ; Mark 8:34–38) + +10 + +23 + +Then the apostles returned and reported to Je- +sus all that they had done. Taking them away pri- +11 +vately, He withdrew to a town called Bethsaida. +But the crowds found out and followed Him. +He welcomed them and spoke to them about the +kingdom of God, and He healed those who +12 +needed healing. + +As the day neared its end, the Twelve came to +Jesus and said, “Dismiss the crowd so they can go +to the surrounding villages and countryside for +lodging and provisions. For we are in a desolate +13 +place here.” + +But Jesus told them, “You give them something + +to eat.” + +14 + +“We have only five loaves of bread and two fish,” +they answered, “unless we go and buy food for all +these people.” +(There were about five thou- +sand men.) + +15 + +He told His disciples, “Have them sit down in +groups of about fifty each.” +They did so, and +16 +everyone was seated. + +Taking the five loaves and the two fish and +looking up to heaven, Jesus spoke a blessing and +broke them. Then He gave them to the disciples +17 +to set before the people. + +They all ate and were satisfied, and the disci- +ples picked up twelve basketfuls of broken +Peter’s Confession of Christ +pieces that were left over. +(Matt. 16:13–20 ; Mark 8:27–30 ; John 6:67–71) + +18 + +One day as Jesus was praying in private and +the disciples were with Him, He questioned +19 +them: “Who do the crowds say I am?” + +Then Jesus said to all of them, “If anyone wants +to come after Me, he must deny himself and take +up his cross daily and follow Me. +For whoever +wants to save his life will lose it, but whoever +25 +loses his life for My sake will save it. + +24 + +26 + +What does it profit a man to gain the whole +world, yet lose or forfeit his very self? +If +anyone is ashamed of Me and My words, the Son +of Man will be ashamed of him when He comes in +His glory and in the glory of the Father and of the +holy angels. +But I tell you truly, some who are +standing here will not taste death before they see +The Transfiguration +the kingdom of God.” +(Matt. 17:1–13 ; Mark 9:1–13 ; 2 Peter 1:16–21) + +27 + +28 + +29 + +About eight days after Jesus had said these +things, He took with Him Peter, John, and James, +and went up on a mountain to pray. +And as He +30 +was praying, the appearance of His face changed, +and His clothes became radiantly white. +Sud- +denly two men, Moses and Elijah, began talking +with Jesus. +They appeared in glory and spoke +about His departure, which He was about to +32 +accomplish at Jerusalem. + +31 + +33 + +Meanwhile Peter and his companions were +overcome by sleep, but when they awoke, they +saw Jesus’ glory and the two men standing with +Him. +As Moses and Elijah were leaving, Peter + a +said to Jesus, “Master, it is good for us to be here. +Let us put up three shelters +—one for You, one +for Moses, and one for Elijah.” (He did not know +34 +what he was saying.) + +While Peter was speaking, a cloud appeared +35 +and enveloped them, and they were afraid as +they entered the cloud. +And a voice came from +the cloud, saying, “This is My Son, whom I have +chosen. + + Listen to Him!” + +b + +They replied, “Some say John the Baptist; oth- +ers say Elijah; and still others, that a prophet of +b 35 +a 33 +old has arisen.” + +three tabernacles + +This is My beloved Son + +Or + +BYZ and TR + +; see Matthew 17:5. + + 36 + +50 + +Luke 10:4 | 929 + +After the voice had spoken, only Jesus was pre- +sent with them. The disciples kept this to them- +selves, and in those days they did not tell anyone +The Boy with an Evil Spirit +what they had seen. +(Matthew 17:14–18 ; Mark 9:14–29) + +37 + +39 + +The next day, when they came down from the +38 +mountain, Jesus was met by a large crowd. +Suddenly a man in the crowd cried out, +“Teacher, I beg You to look at my son, for he is my +only child. +A spirit keeps seizing him, and he +screams abruptly. It throws him into convulsions +so that he foams at the mouth. It keeps mauling +him and rarely departs from him. +I begged +Your disciples to drive it out, but they were +41 +unable.” + +40 + +“O unbelieving and perverse generation!” Je- +sus replied. “How long must I remain with you +42 +and put up with you? Bring your son here.” + +Even while the boy was approaching, the de- +mon slammed him to the ground in a convulsion. +But Jesus rebuked the unclean spirit, healed the +The Second Prediction of the Passion +boy, and gave him back to his father. +(Matthew 17:22–23 ; Mark 9:30–32) + +43 + +And they were all astonished at the greatness + +of God. + +44 + +While everyone was marveling at all that Jesus +was doing, He said to His disciples, +“Let these +words sink into your ears: The Son of Man is +45 +about to be delivered into the hands of men.” +But they did not understand this statement. It +was veiled from them so that they could not com- +prehend it, and they were afraid to ask Him +The Greatest in the Kingdom +about it. +(Matthew 18:1–5 ; Mark 9:33–41) + +46 + +47 + +48 + +Then an argument started among the disciples +as to which of them would be the greatest. +But +Jesus, knowing the thoughts of their hearts, had +a little child stand beside Him. +And He said to +them, “Whoever welcomes this little child in My +name welcomes Me, and whoever welcomes Me +welcomes the One who sent Me. For whoever is +49 +the least among all of you, he is the greatest.” + +“Do not stop him,” Jesus replied, “for whoever + +The Samaritans Reject Jesus +is not against you is for you.” +51 + +52 + +As the day of His ascension approached, +He sent +Jesus resolutely set out for Jerusalem. +messengers on ahead, who went into a village of +53 +the Samaritans to make arrangements for Him. +But the people there refused to welcome Him, + +54 +because He was heading for Jerusalem. + +When the disciples James and John saw this, +they asked, “Lord, do You want us to call down +55 +fire from heaven + + to consume them?” + +56 + + a + +b + +But Jesus turned and rebuked them. + +And +The Cost of Discipleship +He and His disciples went on to another village. +(Matt. 8:18–22 ; Luke 14:25–33 ; John 6:59–66) + +57 + +As they were walking along the road, someone +58 +said to Jesus, “I will follow You wherever You go.” + +Jesus replied, “Foxes have dens and birds of +the air have nests, but the Son of Man has no +59 +place to lay His head.” + +Then He said to another man, “Follow Me.” + +The man replied, “Lord, first let me go and bury +60 +my father.” + +But Jesus told him, “Let the dead bury their +own dead. You, however, go and proclaim the +61 +kingdom of God.” + +Still another said, “I will follow You, Lord; but + +62 +first let me bid farewell to my family.” + +Then Jesus declared, “No one who puts his +hand to the plow and then looks back is fit for the +Jesus Sends the Seventy-Two +kingdom of God.” +(Matthew 9:35–38) + +10 + + c + +2 + +After this, the Lord appointed seventy- +two + others and sent them two by two +ahead of Him to every town and place He was +about to visit. +And He told them, “The harvest is +plentiful, but the workers are few. Ask the Lord +of the harvest, therefore, to send out workers +3 +into His harvest. +4 + +Go! I am sending you out like lambs among +Carry no purse or bag or sandals. Do not + +“Master,” said John, “we saw someone driving +out demons in Your name, and we tried to stop +from heaven, just as Elijah did +a 54 +him, because he does not accompany us.” +know what kind of spirit you are of. 56 For the Son of Man did not come to destroy the lives of men, but to save them.” +c 1 + +wolves. +greet anyone along the road. + +; see 2 Kings 1:10–12. + +BYZ and TR include + +BYZ and TR + +seventy + +b 55 + +and He said, “You do not + +NE, BYZ, and TR + +; also in verse 17 + + 930 | Luke 10:5 + +5 + +6 + +7 + +Whatever house you enter, begin by saying, +If a man of peace is there, +‘Peace to this house.’ +your peace will rest on him; if not, it will return +Stay at the same house, eating and drink- +to you. +ing whatever you are offered. For the worker is +worthy of his wages. + Do not move around from +8 +house to house. + +a + +9 + +If you enter a town and they welcome you, eat +Heal the sick who +whatever is set before you. +are there and tell them, ‘The kingdom of God is +10 +near you.’ + +But if you enter a town and they do not wel- +11 +come you, go into the streets and declare, +‘Even the dust of your town that clings to our +feet, we wipe off as a testimony against you. Yet +be sure of this: The kingdom of God is near.’ +I +tell you, it will be more bearable on that day for +Woe to the Unrepentant (Matthew 11:20–24) +Sodom than for that town. +13 + +12 + +Woe to you, Chorazin! Woe to you, Bethsaida! +For if the miracles that were performed in you +had been performed in Tyre and Sidon, they +would have repented long ago, sitting in sack- +But it will be more bearable +cloth and ashes. +15 +for Tyre and Sidon at the judgment than for you. + +14 + +And you, Capernaum, will you be lifted up to +16 +heaven? No, you will be brought down to Hades! + +Whoever listens to you listens to Me; whoever +rejects you rejects Me; and whoever rejects Me +The Joyful Return +rejects the One who sent Me.” +17 + +The seventy-two returned with joy and said, +“Lord, even the demons submit to us in Your +18 +name.” + +19 + +So He told them, “I saw Satan fall like lightning +Behold, I have given you author- +from heaven. +ity to tread on snakes and scorpions, and over all +20 +the power of the enemy. Nothing will harm you. +Nevertheless, do not rejoice that the spirits +submit to you, but rejoice that your names are +Jesus’ Prayer of Thanksgiving +written in heaven.” +(Matthew 11:25–30) + +21 + +At that time Jesus rejoiced in the Holy Spirit +and declared, “I praise You, Father, Lord of +heaven and earth, because You have hidden +these things from the wise and learned, and +a 7 + +d 35 + +revealed them to little children. Yes, Father, for +22 +this was well-pleasing in Your sight. + +All things have been entrusted to Me by My Fa- +ther. No one knows who the Son is except the Fa- +ther, and no one knows who the Father is except +the Son and those to whom the Son chooses to +23 +reveal Him.” + +24 + +Then Jesus turned to the disciples and said pri- +vately, “Blessed are the eyes that see what you +For I tell you that many prophets and +see. +kings desired to see what you see but did not see +The Parable of the Good Samaritan +it, and to hear what you hear but did not hear it.” +25 + +One day an expert in the law stood up to test +Him. “Teacher,” he asked, “what must I do to in- +26 +herit eternal life?” + +“What is written in the Law?” Jesus replied. + +27 +“How do you read it?” + +He answered, “ + +‘Love the Lord your God with +all your heart and with all your soul and with all +your strength and with all your mind’ + and ‘Love +28 +your neighbor as yourself.’ + +” + + b + + c + +“You have answered correctly,” Jesus said. “Do + +29 +this and you will live.” + +But wanting to justify himself, he asked Jesus, + +30 +“And who is my neighbor?” + +Jesus took up this question and said, “A man +was going down from Jerusalem to Jericho when +he fell into the hands of robbers. They stripped +him, beat him, and went away, leaving him half +31 +dead. + +Now by chance a priest was going down the +same road, but when he saw him, he passed by +32 +on the other side. + +So too, when a Levite came to that spot and + +33 +saw him, he passed by on the other side. + +34 + +But a Samaritan on a journey came upon him, +and when he saw him, he had compassion. +He +went to him and bandaged his wounds, pouring +on oil and wine. Then he put him on his own ani- +35 +mal, brought him to an inn, and took care of him. + + d + +The next day he took out two denarii + + and +gave them to the innkeeper. ‘Take care of him,’ he +said, ‘and on my return I will repay you for any +additional expense.’ + +b 27 + +c 27 + +See Leviticus 19:13 and Deuteronomy 24:14–15; cited in 1 Timothy 5:18. + +Deuteronomy 6:5 + +Leviticus + +19:18 + +A denarius was customarily a day’s wage for a laborer; see Matthew 20:2. + + 36 + +9 + +Luke 11:26 | 931 + +Which of these three do you think was a neigh- +bor to the man who fell into the hands of rob- +37 +bers?” + +“The one who showed him mercy,” replied the + +expert in the law. +Martha and Mary +Then Jesus told him, “Go and do likewise.” +38 + +39 + +As they traveled along, Jesus entered a village +where a woman named Martha welcomed Him +into her home. +She had a sister named Mary, +40 +who sat at the Lord’s feet listening to His mes- +sage. +But Martha was distracted by all the +preparations to be made. She came to Jesus and +said, “Lord, do You not care that my sister has left +41 +me to serve alone? Tell her to help me!” +42 + +“Martha, Martha,” the Lord replied, “you are +worried and upset about many things. +But only +one thing is necessary. Mary has chosen the good +The Lord’s Prayer (Matthew 6:5–15) +portion, and it will not be taken away from her.” + +11 + +One day in a place where Jesus had just +finished praying, one of His disciples re- +quested, “Lord, teach us to pray, just as John +2 +taught his disciples.” +a + +So Jesus told them, “When you pray, say: + +b + hallowed be Your name. + +‘Father, +3 +Your kingdom come. +4 +Give us each day our daily bread. +And forgive us our sins, + +for we also forgive everyone who sins + +c + +against us. + +Ask, Seek, Knock (Matthew 7:7–12) +And lead us not into temptation. +” + +’ + +5 + +6 + +Then Jesus said to them, “Suppose one of you +goes to his friend at midnight and says, ‘Friend, +lend me three loaves of bread, +because a friend +of mine has come to me on a journey, and I have +7 +nothing to set before him.’ + +And suppose the one inside answers, ‘Do not +bother me. My door is already shut, and my chil- +dren and I are in bed. I cannot get up to give you +8 +anything.’ + +10 + +So I tell you: Ask, and it will be given to you; +seek, and you will find; knock, and the door will +be opened to you. +For everyone who asks re- +ceives; he who seeks finds; and to him who +11 +knocks, the door will be opened. + +d + +12 + +13 + +What father among you, if his son asks for a +fish, +Or if he + will give him a snake instead? +asks for an egg, will give him a scorpion? +So if +you who are evil know how to give good gifts to +your children, how much more will your +Father in heaven give the Holy Spirit to those +A House Divided +who ask Him!” +(Matthew 12:22–30 ; Mark 3:20–27) + +14 + +e + +15 + +One day Jesus was driving out a demon that +was mute. And when the demon was gone, the +man who had been mute spoke. The crowds were +but some of them said, “It is by Beel- +amazed, +zebul, + the prince of the demons, that He drives +And others tested Him by de- +out demons.” +17 +manding a sign from heaven. + +16 + +18 + +Knowing their thoughts, Jesus said to them, +“Every kingdom divided against itself will be laid +waste, and a house divided against a house will +If Satan is divided against himself, how can +fall. +19 +his kingdom stand? After all, you say that I drive +out demons by Beelzebul. +And if I drive out de- +mons by Beelzebul, by whom do your sons drive +20 +them out? So then, they will be your judges. +But if I drive out demons by the finger of God, + +21 +then the kingdom of God has come upon you. + +22 + +When a strong man, fully armed, guards his +But when +house, his possessions are secure. +someone stronger attacks and overpowers him, +he takes away the armor in which the man +23 +trusted, and then he divides up his plunder. + +He who is not with Me is against Me, and he + +An Unclean Spirit Returns (Matt. 12:43–45) +who does not gather with Me scatters. +24 + +25 + +When an unclean spirit comes out of a man, it +passes through arid places seeking rest and does +not find it. Then it says, ‘I will return to the house +26 +On its return, it finds the house swept +I left.’ +clean and put in order. +Then it goes and brings +seven other spirits more wicked than itself, and +they go in and dwell there. And the final plight of +Your will be done, on earth as it is in heaven +that man is worse than the first.” +if his son asks +; + +d 11 +Beelzebub + +I tell you, even though he will not get up to pro- +vide for him because of his friendship, yet be- +cause of the man’s persistence, he will get up and +b 2 +a 2 +give him as much as he needs. +c 4 + +Our Father in heaven + +but deliver us from the evil one + +BYZ and TR +for bread, will give him a stone, or for a fish +see Matt. 6:10. + +BYZ and TR include + +; see Matthew 6:9. + +BYZ and TR include + +e 15 + +Beezeboul +; see Matthew 6:13. + +BYZ and TR + +; see Matt. 7:9–10. + +WH + +; Vulgate + +; also in vv. 18 and 19 + + 42 + +Woe to you Pharisees! For you pay tithes of +mint, rue, and every herb, but you disregard jus- +tice and the love of God. You should have prac- +43 +ticed the latter without neglecting the former. + +44 + +Woe to you Pharisees! For you love the chief +seats in the synagogues and the greetings in the +marketplaces. +Woe to you! For you are like un- +marked graves, which men walk over without +45 +even noticing.” + +One of the experts in the law told Him, +“Teacher, when You say these things, You insult +46 +us as well.” + +“Woe to you as well, experts in the law!” He re- +plied. “For you weigh men down with heavy bur- +dens, but you yourselves will not lift a finger to +47 +lighten their load. + +48 + +Woe to you! For you build tombs for the +prophets, but it was your fathers who killed +them. +So you are witnesses consenting to the +49 +deeds of your fathers: They killed the prophets, +and you build their tombs. +Because of this, the +wisdom of God said, ‘I will send them prophets +and apostles; some of them they will kill and oth- +50 +ers they will persecute.’ + +51 + +As a result, this generation will be charged +with the blood of all the prophets that has been +shed since the foundation of the world, +from +c +the blood of Abel to the blood of Zechariah, who +was killed between the altar and the sanctuary. +Yes, I tell you, all of it will be charged to this gen- +52 +eration. + +Woe to you experts in the law! For you have +taken away the key to knowledge. You your- +selves have not entered, and you have hindered +53 +those who were entering.” + +As Jesus went on from there, the scribes and +Pharisees began to oppose Him bitterly and to +54 +ply Him with questions about many things, +waiting to catch Him in something He might + +say. The Leaven of the Pharisees +(Matthew 16:5–12 ; Mark 8:14–21) + +932 | Luke 11:27 + +True Blessedness + +27 + +As Jesus was saying these things, a woman in +the crowd raised her voice and said, “Blessed is +the womb that bore You, and blessed are the +28 +breasts that nursed You!” + +But He replied, “Blessed rather are those who + +The Sign of Jonah +hear the word of God and obey it.” +(Jonah 3:1–10 ; Matthew 12:38–42) + +29 + +As the crowds were increasing, Jesus said, +“This is a wicked generation. It demands a sign, +30 +but none will be given it except the sign of Jonah. +For as Jonah was a sign to the Ninevites, so the + +31 +Son of Man will be a sign to this generation. + +32 + +The Queen of the South will rise at the judg- +ment with the men of this generation and con- +demn them; for she came from the ends of the +earth to hear the wisdom of Solomon, and now +One greater than Solomon is here. +The men of +Nineveh will stand at the judgment with this gen- +eration and condemn it; for they repented at the +preaching of Jonah, and now One greater than Jo- +The Lamp of the Body (Matthew 6:22–24) +nah is here. +33 + +No one lights a lamp and puts it in a cellar or +under a basket. Instead, he sets it on a stand, so +34 +those who enter can see the light. + +a + +b + +36 + +35 + +Your eye is the lamp of your body. When your +eyes are good, + your whole body also is full of +light. But when they are bad, + your body is full of +Be careful, then, that the light within +darkness. +you is not darkness. +So if your whole body is +full of light, with no part of it in darkness, you will +be radiant, as though a lamp were shining on +you.” Woes to Pharisees and Experts in the Law +(Matthew 23:1–36) + +37 + +38 + +As Jesus was speaking, a Pharisee invited Him +to dine with him; so He went in and reclined at +the table. +But the Pharisee was surprised to +39 +see that Jesus did not first wash before the meal. + +40 + +Then the Lord said, “Now you Pharisees clean +the outside of the cup and dish, but inside you are +full of greed and wickedness. +You fools! Did +41 +not the One who made the outside make the in- +side as well? +But give as alms the things that +are within you, and behold, everything will be +a 34 +clean for you. + +When your eye is sound + + c 51 + +the house + +Literally +Proverbs 28:22. + +Literally + +12 + +In the meantime, a crowd of many thou- +sands had gathered, so that they were +trampling one another. Jesus began to speak first +to His disciples: “Beware of the leaven of the +There is nothing +Pharisees, which is hypocrisy. +concealed that will not be disclosed, and nothing + +when it is evil + +2 + +b 34 + +; see Proverbs 22:9. + +Literally + +; see Proverbs 23:6 and + + 3 + +What you +hidden that will not be made known. +have spoken in the dark will be heard in the day- +light, and what you have whispered in the inner +Fear God Alone (Matthew 10:26–31) +rooms will be proclaimed from the housetops. +4 + +I tell you, My friends, do not be afraid of those +5 +who kill the body and after that can do no more. +But I will show you whom you should fear: Fear +the One who, after you have been killed, has au- +thority to throw you into hell. + Yes, I tell you, fear + b +6 +Him! + +a + +7 + +Are not five sparrows sold for two pennies? + +Yet not one of them is forgotten by God. +And +even the very hairs of your head are all num- +bered. So do not be afraid; you are worth more +Confessing Christ (Matthew 10:32–33) +than many sparrows. +8 + +9 + +10 + +I tell you, everyone who confesses Me before +men, the Son of Man will also confess him before +the angels of God. +But whoever denies Me be- +fore men will be denied before the angels of +And everyone who speaks a word against +God. +the Son of Man will be forgiven, but whoever +blasphemes against the Holy Spirit will not be +11 +forgiven. + +12 + +When you are brought before synagogues, rul- +ers, and authorities, do not worry about how to +defend yourselves or what to say. +For at that +time the Holy Spirit will teach you what you +The Parable of the Rich Fool +should say.” +13 + +Someone in the crowd said to Him, “Teacher, +tell my brother to divide the inheritance with +14 +me.” + +15 + +But Jesus replied, “Man, who appointed Me +And He said +judge or executor between you?” +to them, “Watch out! Guard yourselves against +every form of greed, for one’s life does not con- +16 +sist in the abundance of his possessions.” + +17 + +18 + +Then He told them a parable: “The ground of a +So +certain rich man produced an abundance. +he thought to himself, ‘What shall I do, since I +Then he +have nowhere to store my crops?’ +said, ‘This is what I will do: I will tear down my +19 +barns and will build bigger ones, and there I will +two assaria +b 6 +a 5 +Then I will +store up all my grain and my goods. +c 25 +a single cubit to his height +sider the lilies: They do not spin or weave. + +Gehenna + +Greek + +Greek +Or + +Luke 12:36 | 933 + +say to myself, “You have plenty of good things +laid up for many years. Take it easy. Eat, drink, +20 +and be merry!” + +’ + +But God said to him, ‘You fool! This very night +your life will be required of you. Then who will +21 +own what you have accumulated?’ + +This is how it will be for anyone who stores up +Do Not Worry (Matthew 6:25–34) +treasure for himself but is not rich toward God.” +22 + +24 + +Then Jesus said to His disciples, “Therefore I +tell you, do not worry about your life, what you +23 +will eat, or about your body, what you will wear. +For life is more than food, and the body more +than clothes. +Consider the ravens: They do not +sow or reap, they have no storehouse or barn; yet +God feeds them. How much more valuable you +25 +are than the birds! + + c + +26 + +Who of you by worrying can add a single hour +So if you cannot do such a small + +to his life? +27 +thing, why do you worry about the rest? + +d + +28 + +Consider how the lilies grow: They do not la- +bor or spin. + Yet I tell you, not even Solomon in +all his glory was adorned like one of these. +If +that is how God clothes the grass of the field, +which is here today and tomorrow is thrown into +the furnace, how much more will He clothe you, +29 +O you of little faith! + +30 + +And do not be concerned about what you will +For the +eat or drink. Do not worry about it. +Gentiles of the world strive after all these things, +31 +and your Father knows that you need them. + kingdom, and these things will + +But seek His + + e + +Treasures in Heaven (Matthew 6:19–21) +be added unto you. +32 + +33 + +Do not be afraid, little flock, for your Father is +Sell your +pleased to give you the kingdom. +possessions and give to the poor. Provide your- +selves with purses that will not wear out, an in- +exhaustible treasure in heaven, where no thief +For where +approaches and no moth destroys. +Readiness at Any Hour +your treasure is, there your heart will be also. +(Matthew 24:36–51 ; Mark 13:32–37) + +34 + +35 + +36 + +Be dressed for service and keep your lamps +burning. +Then you will be like servants waiting +for their master to return from the wedding +d 27 + +Con- + +God’s +; a cubit was approximately 18 inches or 45 centimeters. + +; an assarion was a Roman copper coin worth about 1/16 of a denarius. +e 31 +NE and Tischendorf + +BYZ and TR + +; see Matthew 6:33. + + 934 | Luke 12:37 + +37 + +banquet, so that when he comes and knocks, they +can open the door for him at once. +Blessed are +those servants whom the master finds on watch +when he returns. Truly I tell you, he will dress +himself to serve and will have them recline at the +38 +table, and he himself will come and wait on them. +Even if he comes in the second or third watch + and finds them alert, those servants + + a + +of the night +39 +will be blessed. + +b + +But understand this: If the homeowner had +known at what hour the thief was coming, + he +40 +would not have let his house be broken into. +You also must be ready, because the Son of + +41 +Man will come at an hour you do not expect.” + +“Lord,” said Peter, “are You addressing this + +42 +parable to us, or to everyone else as well?” + +43 + +And the Lord answered, “Who then is the faith- +ful and wise manager, whom the master puts in +charge of his servants to give them their portion +Blessed is that servant +at the proper time? +whose master finds him doing so when he re- +Truly I tell you, he will put him in charge +turns. +45 +of all his possessions. + +44 + +46 + +But suppose that servant says in his heart, ‘My +master will be a long time in coming,’ and he be- +gins to beat the menservants and maidservants, +The master +and to eat and drink and get drunk. +of that servant will come on a day he does not ex- +pect and at an hour he does not anticipate. Then +he will cut him to pieces and assign him a place +47 +with the unbelievers. + +48 + +That servant who knows his master’s will but +does not get ready or follow his instructions will +But the one who +be beaten with many blows. +unknowingly does things worthy of punishment +will be beaten with few blows. From everyone +who has been given much, much will be re- +quired; and from him who has been entrusted +Not Peace but Division +with much, even more will be demanded. +(Micah 7:1–6 ; Matthew 10:34–39) + +53 + +They +three against two and two against three. +will be divided, father against son and son +against father, mother against daughter and +daughter against mother, mother-in-law against +daughter-in-law and daughter-in-law against +Interpreting the Present Time +mother-in-law. +” +(Matthew 16:1–4 ; Mark 8:11–13) + +c + +54 + +56 + +55 + +Then Jesus said to the crowds, “As soon as you +see a cloud rising in the west, you say, ‘A shower +is coming,’ and that is what happens. +And +when the south wind blows, you say, ‘It will be +hot,’ and it is. +You hypocrites! You know how +to interpret the appearance of the earth and sky. +Why don’t you know how to interpret the pre- +Reconciling with an Adversary +sent time? +(Matthew 5:21–26) + +57 + +58 + +And why don’t you judge for yourselves what +is right? +Make every effort to reconcile with +your adversary while you are on your way to the +magistrate. Otherwise, he may drag you off to the +judge, and the judge may hand you over to the of- +59 +ficer, and the officer may throw you into prison. +d +I tell you, you will not get out until you have +” + +A Call to Repentance +paid the very last penny. +(Joel 1:13–20 ; Amos 5:4–15 ; Zephaniah 2:1–3) + +13 + +2 + +3 + +At that time some of those present told +Jesus about the Galileans whose blood +Pilate had mixed with their sacrifices. +To this He +replied, “Do you think that these Galileans were +worse sinners than all the other Galileans, be- +No, I tell you. But +cause they suffered this way? +Or +unless you repent, you too will all perish. +those eighteen who were killed when the tower +of Siloam collapsed on them: Do you think that +they were more sinful than all the others living in +No, I tell you. But unless you repent, +Jerusalem? +The Parable of the Barren Fig Tree +you too will all perish.” +(Isaiah 5:1–7) + +4 + +5 + +49 + +50 + +6 + +I have come to ignite a fire on the earth, and +But I have +how I wish it were already kindled! +a baptism to undergo, and how distressed I am +51 +until it is accomplished! + +52 + +Do you think that I have come to bring peace +to the earth? No, I tell you, but division. +From +b 39 +a 38 +now on, five in one household will be divided, +That is, between 9 at night and 3 in the morning + +lepton + +d 59 + +7 + +Then Jesus told this parable: “A man had a fig +tree that was planted in his vineyard. He went to +So he +look for fruit on it but did not find any. +said to the keeper of the vineyard, ‘Look, for the +past three years I have come to search for fruit +on this fig tree and haven’t found any. Therefore +cut it down! +BYZ and TR include + +he would have stayed awake, and +c 53 + Why should it use up the soil?’ +Cut it down! +e 7 +See + + e + +Mic. 7:6. + +Greek + +; that is, a bronze or copper coin worth about 1/128 of a denarius + +SBL, NE, WH + + 8 + +9 + +‘Sir,’ the man replied, ‘leave it alone again this +year, until I dig around it and fertilize it. +If it +bears fruit next year, fine. But if not, you can cut +Jesus Heals a Disabled Woman +it down.’ +10 + +” + +11 + +One Sabbath Jesus was teaching in one of the +synagogues, +and a woman there had been dis- +abled by a spirit for eighteen years. She was +12 +hunched over and could not stand up straight. +When Jesus saw her, He called her over and +said, “Woman, you are set free from your disabil- +ity.” +Then He placed His hands on her, and +immediately she straightened up and began to +14 +glorify God. + +13 + +But the synagogue leader was indignant that +Jesus had healed on the Sabbath. “There are six +days for work,” he told the crowd. “So come and +15 +be healed on those days and not on the Sabbath.” + +16 + +“You hypocrites!” the Lord replied. “Does not +each of you on the Sabbath untie his ox or donkey +from the stall and lead it to water? +Then should +not this daughter of Abraham, whom Satan has +kept bound for eighteen long years, be released +17 +from her bondage on the Sabbath day?” + +When Jesus said this, all His adversaries were +humiliated. And the whole crowd rejoiced at all +The Parable of the Mustard Seed +the glorious things He was doing. +(Matthew 13:31–32 ; Mark 4:30–34) + +18 + +19 + +Then Jesus asked, “What is the kingdom of God +like? To what can I compare it? +It is like a mus- +tard seed that a man tossed into his garden. It +grew and became a tree, and the birds of the air +The Parable of the Leaven (Matthew 13:33) +nested in its branches.” +20 + +21 + +Again He asked, “To what can I compare the +kingdom of God? +It is like leaven that a woman +took and mixed into three measures of flour, un- +The Narrow Door (Matthew 7:13–14) +til all of it was leavened.” +22 + +23 + +Then Jesus traveled throughout the towns and +villages, teaching as He made His way toward Je- +rusalem. +“Lord,” someone asked Him, “will +only a few people be saved?” + +24 + +Jesus answered, +“Make every effort to enter +through the narrow door. For many, I tell you, +will try to enter and will not be able. +After the +donkey +b 5 +a 35 +master of the house gets up and shuts the door, + +25 + +Psalm 118:26 + +TR + +Luke 14:5 | 935 + +you will stand outside knocking and saying, +‘Lord, open the door for us.’ + +But he will reply, ‘I do not know where you are +26 +from.’ + +Then you will say, ‘We ate and drank with you, + +27 +and you taught in our streets.’ + +And he will answer, ‘I tell you, I do not know +where you are from. Depart from me, all you evil- +28 +doers.’ + +There will be weeping and gnashing of teeth +when you see Abraham, Isaac, Jacob, and all the +29 +prophets in the kingdom of God, but you your- +People will come from +selves are thrown out. +east and west and north and south, and will re- +And +cline at the table in the kingdom of God. +indeed, some who are last will be first, and some +Lament over Jerusalem (Matthew 23:37–39) +who are first will be last.” +31 + +30 + +At that very hour, some Pharisees came to Je- +sus and told Him, “Leave this place and get away, +32 +because Herod wants to kill You.” + +33 + +But Jesus replied, “Go tell that fox, ‘Look, I will +keep driving out demons and healing people to- +day and tomorrow, and on the third day I will +Nevertheless, I must keep go- +reach My goal.’ +ing today and tomorrow and the next day, for it +is not admissible for a prophet to perish outside +34 +of Jerusalem. + +35 + +O Jerusalem, Jerusalem, who kills the prophets +and stones those sent to her, how often I have +longed to gather your children together as a hen +gathers her chicks under her wings, but you were +Look, your house is left to you des- +unwilling! +olate. And I tell you that you will not see Me again +until you say, ‘Blessed is He who comes in the +Jesus Heals a Man with Dropsy +name of the Lord.’ + +” + + a + +14 + +One Sabbath, Jesus went to eat in the +home of a leading Pharisee, and those in +Right +attendance were watching Him closely. +So Je- +there before Him was a man with dropsy. +sus asked the experts in the law and the Phari- +4 +sees, “Is it lawful to heal on the Sabbath or not?” + +2 +3 + +But they remained silent. + +5 +Then Jesus took hold of the man, healed him, and + b +And He asked them, +sent him on his way. +“Which of you whose son + or ox falls into a pit on +the Sabbath day will not immediately pull him +out?” + + 936 | Luke 14:6 + +6 + +22 + +And they were unable to answer these ques- + +The Parable of the Guests +tions. +7 + +8 + +When Jesus noticed how the guests chose the +“When +places of honor, He told them a parable: +you are invited to a wedding banquet, do not sit +9 +in the place of honor, in case someone more dis- +Then the +tinguished than you has been invited. +host who invited both of you will come and tell +you, ‘Give this man your seat.’ And in humiliation, +10 +you will have to take the last place. + + c + +11 + +But when you are invited, go and sit in the last +place, so that your host will come and tell you, +‘Friend, move up to a better place.’ + Then you +will be honored in front of everyone at the table +For everyone who exalts himself will +with you. +be humbled, and the one who humbles himself +12 +will be exalted.” + +13 + +Then Jesus said to the man who had invited +Him, “When you host a dinner or a banquet, do +not invite your friends or brothers or relatives or +rich neighbors. Otherwise, they may invite you in +But when you +return, and you will be repaid. +host a banquet, invite the poor, the crippled, the +and you will be blessed. +lame, and the blind, +Since they cannot repay you, you will be repaid +The Parable of the Banquet (Matt. 22:1–14) +at the resurrection of the righteous.” +15 + +14 + +When one of those reclining with Him heard +this, he said to Jesus, “Blessed is everyone who +16 +will eat at the feast + + in the kingdom of God.” + + d + +17 + +But Jesus replied, “A certain man prepared a +When +great banquet and invited many guests. +it was time for the banquet, he sent his servant to +tell those who had been invited, ‘Come, for eve- +18 +rything is now ready.’ + +But one after another they all began to make +excuses. The first one said, ‘I have bought a field, +19 +and I need to go see it. Please excuse me.’ + +Another said, ‘I have bought five yoke of oxen, +20 +and I am going to try them out. Please excuse me.’ + +Still another said, ‘I have married a wife, so I + +21 +cannot come.’ + +The servant returned and reported all this to +his master. Then the owner of the house +became angry and said to his servant, ‘Go out +quickly into the streets and alleys of the city, and +bring in the poor, the crippled, the blind, and the +lame.’ + +‘Sir,’ the servant replied, ‘what you ordered + +23 +has been done, and there is still room.’ + +24 + +So the master told his servant, ‘Go out to the +highways and hedges and compel them to come +in, so that my house will be full. +For I tell you, +not one of those men who were invited will taste +The Cost of Discipleship +my banquet.’ +” +(Matt. 8:18–22 ; Luke 9:57–62 ; John 6:59–66) + +25 + +26 + +Now large crowds were traveling with Jesus, +and He turned and said to them, +“If anyone +comes to Me and does not hate his father and +mother and wife and children and brothers and +sisters—yes, even his own life—he cannot be My +disciple. +And whoever does not carry his cross +28 +and follow Me cannot be My disciple. + +27 + +29 + +Which of you, wishing to build a tower, does +not first sit down and count the cost to see if he +has the resources to complete it? +Otherwise, if +he lays the foundation and is unable to finish the +30 +work, everyone who sees it will ridicule him, +saying, ‘This man could not finish what he + +31 +started to build.’ + +Or what king on his way to war with another +king will not first sit down and consider whether +he can engage with ten thousand men the one +32 +coming against him with twenty thousand? +And if he is unable, he will send a delegation +while the other king is still far off, to ask for terms +33 +of peace. + +In the same way, any one of you who does not +Good Salt +give up everything he has cannot be My disciple. +(Matthew 5:13–16 ; Mark 9:49–50) + +34 + +35 +Salt is good, but if the salt loses its savor, with +what will it be seasoned? +It is fit neither for the +soil nor for the manure pile, and it is thrown out. +The Parable of the Lost Sheep +He who has ears to hear, let him hear.” +(Matthew 18:10–14) + +15 + +2 + +Now all the tax collectors and sinners +were gathering around to listen to Jesus. +So the Pharisees and scribes began to grumble: +“This man welcomes sinners and eats with +3 +them.” + +4 + +Then Jesus told them this parable: + +“What man +among you, if he has a hundred sheep and loses +one of them, does not leave the ninety-nine in the +pasture and go after the one that is lost, until he + + 5 + +6 + +22 + +Luke 16:6 | 937 + +And when he finds it, he joyfully puts it +finds it? +comes home, and calls to- +on his shoulders, +7 +gether his friends and neighbors to tell them, ‘Re- +I +joice with me, for I have found my lost sheep!’ +tell you that in the same way there will be more +joy in heaven over one sinner who repents than +over ninety-nine righteous ones who do not need +The Parable of the Lost Coin +to repent. +8 + + a + +Or what woman who has ten silver coins + + and +loses one of them does not light a lamp, sweep +9 +her house, and search carefully until she finds it? +And when she finds it, she calls together her +friends and neighbors to say, ‘Rejoice with me, +for I have found my lost coin.’ +In the same way, +I tell you, there is joy in the presence of God’s an- +The Parable of the Prodigal Son +gels over one sinner who repents.” +(Deuteronomy 21:18–21) + +10 + +11 + +12 + +Then Jesus said, “There was a man who had +two sons. +The younger son said to him, ‘Father, +give me my share of the estate.’ So he divided his +13 +property between them. + +After a few days, the younger son got every- +thing together and journeyed to a distant coun- +try, where he squandered his wealth in wild +14 +living. + +15 + +After he had spent all he had, a severe famine +swept through that country, and he began to be +in need. +So he went and hired himself out to a +citizen of that country, who sent him into his +fields to feed the pigs. +He longed to fill his belly +with the pods the pigs were eating, but no one +17 +would give him a thing. + +16 + +18 + +Finally he came to his senses and said, ‘How +many of my father’s hired servants have plenty +of food, but here I am, starving to death! +I will +get up and go back to my father and say to him, +“Father, I have sinned against heaven and against +you. +I am no longer worthy to be called your +20 +son. Make me like one of your hired servants.” +’ + +19 + +So he got up and went to his father. But while +he was still in the distance, his father saw him +and was filled with compassion. He ran to his +21 +son, embraced him, and kissed him. + +The son declared, + +‘Father, I have sinned +against heaven and against you. I am no longer +ten drachmas +a 8 +worthy to be called your son. + +’ + +b + +c 6 + +‘A hundred baths of oil’ + +23 + +But the father said to his servants, ‘Quick! +Bring the best robe and put it on him. Put a ring +Bring the +on his finger and sandals on his feet. +24 +fattened calf and kill it. Let us feast and celebrate. +For this son of mine was dead and is alive +again! He was lost and is found!’ So they began to +25 +celebrate. + +26 + +Meanwhile the older son was in the field, and +as he approached the house, he heard music +and dancing. +So he called one of the servants +27 +and asked what was going on. + +‘Your brother has returned,’ he said, ‘and your +father has killed the fattened calf, because he has +28 +him back safe and sound.’ + +The older son became angry and refused to go +29 +in. So his father came out and pleaded with him. + +30 + +But he answered his father, ‘Look, all these +years I have served you and never disobeyed a +commandment of yours. Yet you never gave me +even a young goat so I could celebrate with my +But when this son of yours returns +friends. +from squandering your wealth with prostitutes, +31 +you kill the fattened calf for him!’ + +32 + +‘Son, you are always with me,’ the father said, +But it was fitting +‘and all that is mine is yours. +to celebrate and be glad, because this brother of +yours was dead and is alive again; he was lost +The Parable of the Shrewd Manager +and is found.’ + +” + +16 + +2 + +Jesus also said to His disciples, “There +was a rich man whose manager was ac- +So he called +cused of wasting his possessions. +him in to ask, ‘What is this I hear about you? Turn +in an account of your management, for you can- +3 +not be manager any longer.’ + +4 + +The manager said to himself, ‘What shall I do, +now that my master is taking away my position? +I am too weak to dig and too ashamed +I know what I will do so that after +to beg. +my removal from management, people will wel- +5 +come me into their homes.’ + +And he called in each one of his master’s debt- +ors. ‘How much do you owe my master?’ he asked +6 +the first. + + c + +‘A hundred measures of olive oil,’ + + he answered. + +Greek +verse 19. + +Greek + +, each worth about a day’s wages + +WH includes + +; see + +; that is, approximately 870 gallons or 3,300 liters + +‘Take your bill,’ said the manager, ‘sit down +quickly, and write fifty.’ + +Make me like one of your hired servants + +b 21 + + 938 | Luke 16:7 + +7 + +Then he asked another, ‘And how much do you + + a + +owe?’ + +‘A hundred measures of wheat,’ +8 +‘Take your bill and write eighty,’ he told him. + + he replied. + +The master commended the dishonest manager +because he had acted shrewdly. For the sons of +this age are more shrewd in dealing with their +own kind than are the sons of light. +I tell you, +use worldly wealth to make friends for your- +selves so that when it is gone, they will welcome +10 +you into eternal dwellings. + +9 + +Whoever is faithful with very little will also be +faithful with much, and whoever is dishonest +11 +with very little will also be dishonest with much. +So if you have not been faithful with worldly +12 +wealth, who will entrust you with true riches? +And if you have not been faithful with the be- +longings of another, who will give you belongings +13 +of your own? + +No servant can serve two masters. Either he +will hate the one and love the other, or he will be +devoted to the one and despise the other. You +The Law and the Prophets +cannot serve both God and money.” +14 + +15 + +The Pharisees, who were lovers of money, +So +heard all of this and were scoffing at Jesus. +He said to them, “You are the ones who justify +yourselves before men, but God knows your +hearts. For what is prized among men is detesta- +16 +ble before God. + +The Law and the Prophets were proclaimed +until John. Since that time, the gospel of the king- +b +dom of God is being preached, and everyone is +forcing his way into it. +But it is easier for +heaven and earth to pass away than for a single +18 +stroke of a pen to drop out of the Law. + +17 + +Anyone who divorces his wife and marries an- +other woman commits adultery, and he who +The Rich Man and Lazarus (John 5:39–47) +marries a divorced woman commits adultery. +19 + +20 + +Now there was a rich man dressed in purple +and fine linen, who lived each day in joyous +21 +splendor. +And a beggar named Lazarus lay at +his gate, covered with sores +and longing to be +fed with the crumbs that fell from the rich man’s +22 +table. Even the dogs came and licked his sores. + +23 + +also died and was buried. +In Hades, where he +was in torment, he looked up and saw Abraham +24 +from afar, with Lazarus by his side. + +So he cried out, ‘Father Abraham, have mercy +on me and send Lazarus to dip the tip of his fin- +ger in water and cool my tongue. For I am in +25 +agony in this fire.’ + +But Abraham answered, ‘Child, remember that +during your lifetime you received your good +things, while Lazarus received bad things. But +26 +now he is comforted here, while you are in agony. +And besides all this, a great chasm has been +fixed between us and you, so that even those who +wish cannot cross from here to you, nor can any- +27 +one cross from there to us.’ + +28 + +‘Then I beg you, father,’ he said, ‘send Lazarus +to my father’s house, +for I have five brothers. +Let him warn them, so that they will not also end +29 +up in this place of torment.’ + +But Abraham replied, ‘They have Moses and + +30 +the Prophets; let your brothers listen to them.’ + +‘No, father Abraham,’ he said, ‘but if someone +31 +is sent to them from the dead, they will repent.’ + +Then Abraham said to him, ‘If they do not lis- +ten to Moses and the Prophets, they will not be +Temptations and Trespasses +persuaded even if someone rises from the dead.’ +” +(Matthew 18:6–9 ; Mark 9:42–48) + +17 + +Jesus said to His disciples, “It is inevita- +ble that stumbling blocks will come, but +It +woe to the one through whom they come! +would be better for him to have a millstone hung +around his neck and to be thrown into the sea +3 +than to cause one of these little ones to stumble. + +2 + +4 + +Watch yourselves. If your brother sins, rebuke +Even if he +him; and if he repents, forgive him. +sins against you seven times in a day, and seven +times returns to say, ‘I repent,’ you must forgive +The Power of Faith +him.” +(Matthew 17:19–20) + +5 + +The apostles said to the Lord, “Increase our + +6 +faith!” + +One day the beggar died and was carried by + And the rich man +everyone is urged to enter into it + +a 7 +the angels to Abraham’s side. + +‘A hundred cors of wheat’ + +b 16 + +c + +And the Lord answered, “If you have faith the +size of a mustard seed, you can say to this mul- +berry tree, ‘Be uprooted and planted in the sea,’ +and it will obey you. +; that is, approximately 1,000 bushels or 35,000 liters (probably about 30 tons or 27 + +into Abraham’s bosom + +c 22 + +Greek + +metric tons of wheat) + +Or + +Greek + +; similarly in verse 23 + + 7 + +26 + +Luke 18:9 | 939 + +27 + +Just as it was in the days of Noah, so also will it +be in the days of the Son of Man: +People were +eating and drinking, marrying and being given in +marriage, up to the day Noah entered the ark. +28 +Then the flood came and destroyed them all. + +29 + +It was the same in the days of Lot: People were +eating and drinking, buying and selling, planting +and building. +But on the day Lot left Sodom, +fire and sulfur rained down from heaven and de- +30 +stroyed them all. + +31 + +It will be just like that on the day the Son of +Man is revealed. +On that day, let no one on the +housetop come down to retrieve his possessions. +32 +Likewise, let no one in the field return for any- +33 +thing he has left behind. +Remember Lot’s wife! +Whoever tries to save his life will lose it, but +whoever loses his life will preserve it. +I tell +you, on that night two people will be in one bed: +one will be taken and the other left. +Two +women will be grinding grain together: one will +37 +be taken and the other left.” + +35 + +34 + + e + +“Where, Lord?” they asked. + +Jesus answered, “Wherever there is a carcass, +The Parable of the Persistent Widow +there the vultures will gather.” + +18 + +3 + +2 + +Then Jesus told them a parable about +their need to pray at all times and +not lose heart: +“In a certain town there was a +judge who neither feared God nor respected +And there was a widow in that town who +men. +kept appealing to him, ‘Give me justice against +4 +my adversary.’ + +For a while he refused, but later he said to him- +5 +self, ‘Though I neither fear God nor respect men, +yet because this widow keeps pestering me, I +will give her justice. Otherwise, she will wear me +6 +out with her perpetual requests.’ + +” + +7 + +And the Lord said, “Listen to the words of the +unjust judge. +Will not God bring about justice +8 +for His elect who cry out to Him day and night? +Will He delay in helping them? +I tell you, He will +promptly carry out justice on their behalf. Never- +theless, when the Son of Man comes, will He find +The Pharisee and the Tax Collector +faith on earth?” +9 + +8 + +Which of you whose servant comes in from +plowing or shepherding in the field will say to +Instead, +him, ‘Come at once and sit down to eat’? +won’t he tell him, ‘Prepare my meal and dress +9 +yourself to serve me while I eat and drink, and +Does he +afterward you may eat and drink’? +thank the servant because he did what he was +So you also, when you have done every- +told? +thing commanded of you, should say, ‘We are un- +The Ten Lepers (2 Kings 5:1–14) +” +worthy servants; we have only done our duty.’ +11 + +10 + +12 + +a + +While Jesus was on His way to Jerusalem, He +As +was passing between Samaria and Galilee. +He entered one of the villages, He was met by ten +lepers. +and raised +their voices, shouting, “Jesus, Master, have mercy +14 +on us!” + + They stood at a distance + +13 + + b + +When Jesus saw them, He said, “Go, show your- + And as they were on their + +selves to the priests.” +15 +way, they were cleansed. + +16 + +When one of them saw that he was healed, he +came back, praising God in a loud voice. +He fell +facedown at Jesus’ feet in thanksgiving to Him— +17 +and he was a Samaritan. + +18 + +“Were not all ten cleansed?” Jesus asked. +Was no one +“Where then are the other nine? +found except this foreigner to return and give +19 +glory to God?” + + c + +Then Jesus said to him, “Rise and go; your faith + +The Coming of the Kingdom +has made you well! +(Genesis 19:24–29) + +” + +20 + +When asked by the Pharisees when the king- +dom of God would come, Jesus replied, “The king- +21 +dom of God will not come with observable signs. +Nor will people say, ‘Look, here it is,’ or ‘There +it is.’ For you see, the kingdom of God is in your +22 +midst. + +” + +d + +24 + +23 + +Then He said to the disciples, “The time is com- +ing when you will long to see one of the days of +People +the Son of Man, but you will not see it. +will tell you, ‘Look, there He is!’ or ‘Look, here He +For just +is!’ Do not go out or chase after them. +as the lightning flashes and lights up the sky from +one end to the other, so will be the Son of Man in +But first He must suffer many things +His day. +leper +a 12 +and be rejected by this generation. +d 21 +within you +left + +within your grasp + +e 35 + +25 + + or + +TR includes + +A +Or + +; see Matthew 24:40. + + was one afflicted with a skin disease. See Leviticus 13. + +See Leviticus 14:1–32. + +Or + +To some who trusted in their own righteous- +ness and viewed others with contempt, He also + +has saved you +36 Two men will be in the field. One will be taken and the other + +b 14 + +c 19 + + 940 | Luke 18:10 + +10 + +26 + +a + +told this parable: +“Two men went up to the +11 +temple to pray. One was a Pharisee and the other +The Pharisee stood by himself +a tax collector. +and prayed, + ‘God, I thank You that I am not like +12 +other men—swindlers, evildoers, adulterers— +I fast twice a +or even like this tax collector. +13 +week and pay tithes of all that I acquire.’ + +14 + +But the tax collector stood at a distance, un- +willing even to lift up his eyes to heaven. Instead, +he beat his breast and said, ‘God, have mercy on +I tell you, this man, rather than +me, a sinner!’ +the Pharisee, went home justified. For everyone +who exalts himself will be humbled, but the one +Jesus Blesses the Children +who humbles himself will be exalted.” +(Matthew 19:13–15 ; Mark 10:13–16) + +15 + +Now people were even bringing their babies to +Jesus for Him to place His hands on them. And +when the disciples saw this, they rebuked those +16 +who brought them. + +17 + +But Jesus called the children to Him and said, +“Let the little children come to Me, and do not +hinder them! For the kingdom of God belongs to +Truly I tell you, anyone who +such as these. +does not receive the kingdom of God like a little +The Rich Young Ruler +child will never enter it.” +(Matthew 19:16–30 ; Mark 10:17–31) + +18 + +Then a certain ruler asked Him, “Good +19 +Teacher, what must I do to inherit eternal life?” + +20 + +“Why do you call Me good?” Jesus replied. “No +You know the +one is good except God alone. +commandments: ‘Do not commit adultery, do not + b +murder, do not steal, do not bear false witness, +21 +honor your father and mother.’ +22 + +“All these I have kept from my youth,” he said. + +” + +On hearing this, Jesus told him, “You still lack +one thing: Sell everything you own and give to +the poor, and you will have treasure in heaven. +23 +Then come, follow Me.” + +But when the ruler heard this, he became very + +24 +sad, because he was extremely wealthy. + +c + +Seeing the man’s sadness, + + Jesus said, “How +25 +hard it is for the rich to enter the kingdom of God! +Indeed, it is easier for a camel to pass through +the eye of a needle than for a rich man to enter +a 11 +the kingdom of God.” +become sorrowful + +stood and prayed to himself + +b 20 +Seeing him + +d 28 + +Those who heard this asked, “Who then can be + +27 +saved?” + +But Jesus said, “What is impossible with man is + + d + +28 +possible with God.” + +“Look,” said Peter, “we have left all we had + +29 +follow You.” + + to + +“Truly I tell you,” Jesus replied, “no one who +has left home or wife or brothers or parents or +30 +children for the sake of the kingdom of God +will fail to receive many times more in this + +The Third Prediction of the Passion +age—and in the age to come, eternal life.” +(Matthew 20:17–19 ; Mark 10:32–34) + +31 + +32 + +Then Jesus took the Twelve aside and said to +them, “Look, we are going up to Jerusalem, and +everything the prophets have written about the +He will be deliv- +Son of Man will be fulfilled. +33 +ered over to the Gentiles and will be mocked and +They will flog Him and +insulted and spit upon. +34 +kill Him, and on the third day He will rise again.” + +But the disciples did not understand any of +these things. The meaning was hidden from +them, and they did not comprehend what He was +Jesus Heals a Blind Beggar +saying. +(Matthew 20:29–34 ; Mark 10:46–52) + +35 + +36 + +As Jesus drew near to Jericho, a blind man was +When he +sitting beside the road, begging. +heard the crowd going by, he asked what was +37 +happening. +38 + +“Jesus of Nazareth is passing by,” they told him. + +So he called out, “Jesus, Son of David, have + +39 +mercy on me!” + +Those who led the way admonished him to be +silent, but he cried out all the louder, “Son of Da- +40 +vid, have mercy on me!” + +41 + +Jesus stopped and directed that the man be +brought to Him. When he had come near, Jesus +asked him, +“What do you want Me to do for +you?” +42 +“Lord,” he said, “let me see again.” +43 + +“Receive your sight!” Jesus replied. “Your faith +has healed you.” +Immediately he received his +sight and followed Jesus, glorifying God. And all +the people, when they saw it, gave praise to God. + +c 24 + +Seeing that he had + +left our own + +left all + +Or + +Exodus 20:12–16; Deuteronomy 5:16–20 + +Literally + +; SBL, NE, and WH + +Literally + +; BYZ and TR + + Jesus and Zacchaeus (Numbers 5:5–10) + +18 + +Luke 19:37 | 941 + +19 + +2 + +3 + +Then Jesus entered Jericho and was +And there was a man +passing through. +named Zacchaeus, a chief tax collector, who was +He was trying to see who Jesus +very wealthy. +was, but could not see over the crowd because he +was small in stature. +So he ran on ahead and +climbed a sycamore tree to see Him, since Jesus +5 +was about to pass that way. + +4 + +When Jesus came to that place, He looked up +and said, “Zacchaeus, hurry down, for I must stay +6 +at your house today.” + +7 + +So Zacchaeus hurried down and welcomed Him +And all who saw this began to grumble, +joyfully. +saying, “He has gone to be the guest of a sinful +8 +man!” + +But Zacchaeus stood up and said to the Lord, +“Look, Lord, half of my possessions I give to the +poor, and if I have cheated anyone, I will repay it +9 +fourfold.” + +10 + +Jesus said to him, “Today salvation has come to +this house, because this man too is a son of Abra- +For the Son of Man came to seek and to +ham. +The Parable of the Ten Minas (Matt. 25:14–30) +save the lost.” +11 + +12 + +While the people were listening to this, Jesus +proceeded to tell them a parable, because He was +near Jerusalem and they thought the kingdom of +So He said, “A +God would appear imminently. +man of noble birth went to a distant country to +Be- +lay claim to his kingship and then return. +forehand, he called ten of his servants and gave + ‘Conduct business with this un- +them ten minas. +14 +til I return,’ he said. + +13 + +a + +But his subjects hated him and sent a delega- +tion after him to say, ‘We do not want this man to +15 +rule over us.’ + +When he returned from procuring his king- +ship, he summoned the servants to whom he had +given the money, to find out what each one had +16 +earned. + +The first servant came forward and said, ‘Mas- +ten more + +ter, your mina has produced +17 +minas.’ + +His master replied, ‘Well done, good servant! +Because you have been faithful in a very small +a 13 +matter, you shall have authority over ten cities.’ + +b 20 + +soudariō + +The second servant came and said, ‘Master, + +19 +your mina has made five minas.’ + +And to this one he said, ‘You shall have author- + +20 +ity over five cities.’ + +b + +21 + +Then another servant came and said, ‘Master, +here is your mina, which I have laid away in a +For I was afraid of you, because +piece of cloth. +you are a harsh man. You withdraw what you did +22 +not deposit and reap what you did not sow.’ + +His master replied, ‘You wicked servant, I will +judge you by your own words. So you knew that +I am a harsh man, withdrawing what I did not de- +Why +posit and reaping what I did not sow? +then did you not deposit my money in the bank, +and upon my return I could have collected it with +24 +interest?’ + +23 + +Then he told those standing by, ‘Take the mina +from him and give it to the one who has ten mi- +25 +nas.’ +26 + +‘Master,’ they said, ‘he already has ten!’ + +27 + +He replied, ‘I tell you that everyone who has +will be given more; but the one who does not +have, even what he has will be taken away from +And these enemies of mine who were un- +him. +willing for me to rule over them, bring them here +The Triumphal Entry (Zechariah 9:9–13 ; +and slay them in front of me.’ +Matthew 21:1–11 ; Mark 11:1–11 ; John 12:12–19) + +” + +28 + +After Jesus had said this, He went on ahead, go- + +29 +ing up to Jerusalem. + +30 + +As He approached Bethphage and Bethany at +the Mount of Olives, He sent out two of His disci- +ples, +saying, “Go into the village ahead of you, +and as you enter it, you will find a colt tied there, +31 +on which no one has ever sat. Untie it and bring +If anyone asks, ‘Why are you untying +it here. +32 +it?’ tell him, ‘The Lord needs it.’ + +” + +33 + +So those who were sent went out and found it +As they were unty- +just as Jesus had told them. +ing the colt, its owners asked, “Why are you +34 +untying the colt?” + +35 + +“The Lord needs it,” they answered. + +Then +they led the colt to Jesus, threw their cloaks over +36 +it, and put Jesus on it. +37 + +As He rode along, the people spread their +And as He approached the + +cloaks on the road. + +That is, he gave each servant one mina. A mina was most likely a silver coin worth a hundred drachmas, that is, about a + +hundred days’ wages. + +Greek + + 942 | Luke 19:38 + +descent from the Mount of Olives, the whole mul- +titude of disciples began to praise God joyfully in +38 +a loud voice for all the miracles they had seen: + a + +“Blessed is the King who comes in the name + +of the Lord!” + + b +“Peace in heaven and glory in the + +39 + +highest!” + +But some of the Pharisees in the crowd said to + +40 +Him, “Teacher, rebuke Your disciples!” + +“I tell you,” He answered, “if they remain silent, +Jesus Weeps over Jerusalem (Isaiah 29:1–16) +the very stones will cry out.” +41 + +42 + +44 + +43 + +As Jesus approached Jerusalem and saw the +city, He wept over it +and said, “If only you had +known on this day what would bring you peace! +For the +But now it is hidden from your eyes. +days will come upon you when your enemies will +barricade you and surround you and hem you in +They will level you to the +on every side. +ground—you and the children within your walls. +They will not leave one stone on another, +because you did not recognize the time of your +Jesus Cleanses the Temple +visitation from God. +(Matt. 21:12–17 ; Mark 11:15–19 ; John 2:12–25) + +” + +c + +45 + + d + +Then Jesus entered the temple courts + + and be- +46 +gan to drive out those who were selling there. + e +He declared to them, “It is written: ‘My house + But you have made it + + f + +will be a house of prayer.’ +47 +‘a den of robbers.’ + +” + +48 + +Jesus was teaching at the temple every day, but +the chief priests, scribes, and leaders of the peo- +Yet they could +ple were intent on killing Him. +not find a way to do so, because all the people +Jesus’ Authority Challenged +hung on His words. +(Matthew 21:23–27 ; Mark 11:27–33) + +20 + + g + +One day as Jesus was teaching the people + and proclaiming +in the temple courts +the gospel, the chief priests and scribes, together +“Tell us,” they +with the elders, came up to Him. +said, “by what authority are You doing these +3 +things, and who gave You this authority?” + +2 + +4 + +“I will also ask you a question,” Jesus replied. +John’s baptism—was it from heaven, + +“Tell Me: +or from men?” +a 38 +f 46 + +5 + +6 + +They deliberated among themselves and said, +“If we say, ‘From heaven,’ He will ask, ‘Why did +But if we say, ‘From men,’ +you not believe him?’ +all the people will stone us, for they are con- +7 +vinced that John was a prophet.” + +So they answered that they did not know where + +8 +it was from. + +And Jesus replied, “Neither will I tell you by + +The Parable of the Wicked Tenants +what authority I am doing these things.” +(Matthew 21:33–46 ; Mark 12:1–12) + +9 + +Then He proceeded to tell the people this para- +ble: “A man planted a vineyard, rented it out to +10 +some tenants, and went away for a long time. +At harvest time, he sent a servant to the ten- +ants to collect his share of the fruit of the vine- +yard. But the tenants beat the servant and sent +11 +him away empty-handed. + +So he sent another servant, but they beat him +and treated him shamefully, sending him away +12 +empty-handed. + +Then he sent a third, but they wounded him + +13 +and threw him out. + +‘What shall I do?’ asked the owner of the vine- +yard. ‘I will send my beloved son. Perhaps they +14 +will respect him.’ + +15 + +But when the tenants saw the son, they dis- +cussed it among themselves and said, ‘This is the +heir. Let us kill him, and the inheritance will be +ours.’ +So they threw him out of the vineyard +and killed him. +16 + +What then will the owner of the vineyard do to +He will come and kill those tenants and +them? +give the vineyard to others.” + +And when the people heard this, they said, “May +17 +such a thing never happen!” + +But Jesus looked directly at them and said, +“Then what is the meaning of that which is +written: + + h +‘The stone the builders rejected +has become the cornerstone’ + +18 + +? + +Everyone who falls on this stone will be bro- +ken to pieces, but he on whom it falls will be +crushed.” + +b 38 +g 1 + +the temple + +c 44 +h 17 + +your visitation + +d 45 + +the temple + +e 46 + +Psalm 118:26 +Jeremiah 7:11 + +See Psalm 148:1. + +Literally + +Literally + +Psalm 118:22 + +Literally + +Isaiah 56:7 + + Paying Taxes to Caesar +(Matthew 22:15–22 ; Mark 12:13–17) + +19 + +When the scribes and chief priests realized +that Jesus had spoken this parable against them, +they sought to arrest Him that very hour. But +20 +they were afraid of the people. + +So they watched Him closely and sent spies +who pretended to be sincere. They were hoping +to catch Him in His words in order to hand Him +21 +over to the rule and authority of the governor. +“Teacher,” they inquired, “we know that You +speak and teach correctly. You show no partiality +but teach the way of God in accordance with the +Is it lawful for us to pay taxes to Caesar +truth. +23 +or not?” + +22 + +a + +24 + +But Jesus saw through their duplicity and said + Whose image + +“Show Me a denarius. + +to them, +and inscription are on it?” +25 +“Caesar’s,” they answered. + +So Jesus told them, “Give to Caesar what is Cae- + +26 +sar’s, and to God what is God’s.” + +And they were unable to trap Him in His words +before the people. And amazed at His answer, +The Sadducees and the Resurrection +they fell silent. +(Matthew 22:23–33 ; Mark 12:18–27) + +27 + +b + +29 + +Then some of the Sadducees, who say there +28 +is no resurrection, came to question Him. +“Teacher,” they said, “Moses wrote for us that +if a man’s brother dies and leaves a wife but no +children, the man is to marry his brother’s +Now +widow and raise up offspring for him. + c +there were seven brothers. The first one married +31 +a wife but died childless. +and the third married the widow, and in the +32 +same way all seven died, leaving no children. +So then, in +the resurrection, whose wife will she be? For all +34 +seven were married to her.” +35 + +And last of all, the woman died. + +Then the second + +33 + +30 + +Jesus answered, “The sons of this age marry +But those who are +and are given in marriage. +considered worthy to share in the age to come +36 +and in the resurrection from the dead will nei- +In fact, +ther marry nor be given in marriage. +they can no longer die, because they are like the +angels. And since they are sons of the resurrec- +a 24 +tion, they are sons of God. + +married the widow, and he also died, + +d 37 + +37 + +Luke 21:6 | 943 + +Even Moses demonstrates that the dead are +raised, in the passage about the burning bush. +For he calls the Lord ‘the God of Abraham, the +He is not +God of Isaac, and the God of Jacob.’ +the God of the dead, but of the living, for to Him +39 +all are alive.” + +38 + + d + +40 + +Some of the scribes answered, “Teacher, You +And they did not dare to + +have spoken well!” +Whose Son Is the Christ? +question Him any further. +(Matthew 22:41–46 ; Mark 12:35–37) + +41 + +42 + +Then Jesus declared, “How can it be said that +For David him- + +the Christ is the Son of David? +self says in the book of Psalms: + +43 + +44 + +‘The Lord said to my Lord, +“Sit at My right hand +until I make Your enemies +a footstool for Your feet.” + + e + +’ + +Thus David calls Him ‘Lord.’ So how can He be + +Beware of the Scribes (Mark 12:38–40) +David’s son?” +45 + +46 + +In the hearing of all the people, Jesus said to +“Beware of the scribes. They like +His disciples, +to walk around in long robes, and they love the +greetings in the marketplaces, the chief seats in +f +the synagogues, and the places of honor at ban- +They defraud widows of their houses, +quets. +and for a show make lengthy prayers. These men +The Poor Widow’s Offering (Mark 12:41–44) +will receive greater condemnation.” + +47 + +21 + +2 + +g + +Then Jesus looked up and saw the rich +and +putting their gifts into the treasury, +He saw a poor widow put in two small copper +3 +coins. + +4 + +“Truly I tell you,” He said, “this poor widow has +For they all con- +put in more than all the others. +tributed out of their surplus, but she out of her +Temple Destruction and Other Signs +poverty has put in all she had to live on.” +(Matthew 24:1–8 ; Mark 13:1–8) + +5 + +6 + +As some of the disciples were remarking how +the temple was adorned with beautiful stones +“As for what +and consecrated gifts, Jesus said, +you see here, the time will come when not one +stone will be left on another; every one will be +thrown down.” +e 43 + +c 30 +They devour widows’ houses +BYZ and TR + +Deuteronomy 25:5 + +b 28 + +f 47 + +g 2 +include + +A denarius was customarily a day’s wage for a laborer; see Matthew 20:2. + +two lepta + +Exodus 3:6 + +Psalm 110:1 + +Literally + +Greek + +; a lepton was a Jewish coin of bronze or copper worth about 1/128 of a denarius. + + 944 | Luke 21:7 + +7 + +“Teacher,” they asked, “when will these things +happen? And what will be the sign that they are +8 +about to take place?” + +9 + +Jesus answered, “See to it that you are not de- +ceived. For many will come in My name, claiming, +‘I am He,’ and, ‘The time is near.’ Do not follow +When you hear of wars and rebellions, do +them. +not be alarmed. These things must happen first, +Witnessing to All Nations +but the end is not imminent.” +(Matthew 24:9–14 ; Mark 13:9–13) + +10 + +11 + +Then He told them, “Nation will rise against +There +nation, and kingdom against kingdom. +will be great earthquakes, famines, and pesti- +lences in various places, along with fearful sights +12 +and great signs from heaven. + +14 + +But before all this, they will seize you and per- +secute you. On account of My name they will +deliver you to the synagogues and prisons, and +13 +they will bring you before kings and governors. +This will be your opportunity to serve as wit- +nesses. +So make up your mind not to worry be- +For I will +forehand how to defend yourselves. +give you speech and wisdom that none of your +16 +adversaries will be able to resist or contradict. + +15 + +You will be betrayed even by parents and +17 +brothers and relatives and friends, and some of +And you will be hated +you will be put to death. +19 +by everyone because of My name. +Yet not even +By your patient +a hair of your head will perish. +The Destruction of Jerusalem +endurance you will gain your souls. +(Matthew 24:15–25 ; Mark 13:14–23) + +18 + +20 + +But when you see Jerusalem surrounded by ar- +21 +mies, you will know that her desolation is near. +Then let those who are in Judea flee to the +mountains, let those in the city get out, and let +For +those in the country stay out of the city. +these are the days of vengeance, to fulfill all that +23 +is written. + +22 + +The Return of the Son of Man +(Matthew 24:26–31 ; Mark 13:24–27) + +25 + +27 + +26 + +There will be signs in the sun and moon and +stars, and on the earth dismay among the na- +tions, bewildered by the roaring of the sea and +Men will faint from +the surging of the waves. +fear and anxiety over what is coming upon the +earth, for the powers of the heavens will be +At that time they will see the Son of +shaken. +Man coming in a cloud with power and great +glory. +When these things begin to happen, +stand up and lift up your heads, because your re- +The Lesson of the Fig Tree +demption is drawing near.” +(Matthew 24:32–35 ; Mark 13:28–31) + +28 + +a + +29 + +30 + +31 + +Then Jesus told them a parable: “Look at the fig +When they sprout leaves, +tree and all the trees. +you can see for yourselves and know that sum- +So also, when you see these things +mer is near. +32 +happening, know that the kingdom of God is +Truly I tell you, this generation will not +near. +33 +pass away until all these things have happened. +Heaven and earth will pass away, but My + +Be Watchful for the Day +words will never pass away. +34 + +36 + +35 + +But watch yourselves, or your hearts will be +weighed down by dissipation, drunkenness, +and the worries of life—and that day will spring +For it will +upon you suddenly like a snare. +come upon all who dwell on the face of all the +So keep watch at all times, and pray that +earth. +you may have the strength to escape all that is +about to happen and to stand before the Son of +37 +Man.” + +38 + +Every day Jesus taught at the temple, but every +evening He went out to spend the night on the +And early in the morning all +Mount of Olives. +the people would come to hear Him at the tem- +ple. The Plot to Kill Jesus +(Matt. 26:1–5 ; Mark 14:1–2 ; John 11:45–57) + +b + +2 + +Now the Feast of Unleavened Bread, +called the Passover, was approaching, +and the chief priests and scribes were looking +for a way to put Jesus to death, for they feared the +people. + +22 + +24 + +How miserable those days will be for pregnant +and nursing mothers! For there will be great dis- +tress upon the land and wrath against this peo- +They will fall by the edge of the sword and +ple. +be led captive into all the nations. And Jerusalem +will be trodden down by the Gentiles, until the +times of the Gentiles are fulfilled. +b 1 +a 27 + +the feast of the Unleavened + +See Daniel 7:13–14. + +Literally + +; see Exodus 12:14–20. + + Judas Agrees to Betray Jesus +(Matthew 26:14–16 ; Mark 14:10–11) + +3 + +4 + +5 + +Then Satan entered Judas Iscariot, who was +And Judas went to discuss +one of the Twelve. +with the chief priests and temple officers how +he might betray Jesus to them. +They were de- +lighted and agreed to give him money. +Judas +consented, and began to look for an opportunity +Preparing the Passover +to betray Jesus to them in the absence of a crowd. +(Matthew 26:17–19 ; Mark 14:12–16) + +6 + +7 + +Then came the day of Unleavened Bread on +8 +which the Passover lamb was to be sacrificed. +Jesus sent Peter and John, saying, “Go and make + +9 +preparations for us to eat the Passover.” + +“Where do You want us to prepare it?” they + +10 +asked. + +He answered, “When you enter the city, a man +11 +carrying a jug of water will meet you. Follow him +to the house he enters, +and say to the owner of +that house, ‘The Teacher asks: Where is the guest +room, where I may eat the Passover with My dis- +ciples?’ +And he will show you a large upper +room, already furnished. Make preparations +13 +there.” + +12 + +So they went and found it just as Jesus had told + +The Last Supper (Matthew 26:20–30 ; +them. And they prepared the Passover. +Mark 14:17–26 ; 1 Corinthians 11:17–34) + +14 + +15 +When the hour had come, Jesus reclined at the +And He said to them, “I +table with His apostles. +16 +have eagerly desired to eat this Passover with +you before My suffering. +For I tell you that I +will not eat it again until it is fulfilled in the king- +17 +dom of God.” + +18 + +After taking the cup, He gave thanks and said, +“Take this and divide it among yourselves. +For +I tell you that I will not drink of the fruit of the +vine from now on until the kingdom of God +19 +comes.” + +And He took the bread, gave thanks and broke +it, and gave it to them, saying, “This is My body, +20 +given for you; do this in remembrance of Me.” + +In the same way, after supper He took the cup, +saying, “This cup is the new covenant in My +21 +blood, which is poured out for you. + +a + +22 + +Look! The hand of My betrayer is with Mine on +Indeed, the Son of Man will go as it + +This is My body + +a 20 +the table. + +Luke 22:38 | 945 + +has been determined, but woe to that man who +23 +betrays Him.” + +Then they began to question among them- + +Who Is the Greatest? +selves which of them was going to do this. +24 + +26 + +A dispute also arose among the disciples as to +25 +which of them should be considered the greatest. +So Jesus declared, “The kings of the Gentiles +lord it over them, and those in authority over +But you +them call themselves benefactors. +shall not be like them. Instead, the greatest +27 +among you should be like the youngest, and the +For +one who leads like the one who serves. +who is greater, the one who reclines at the table +or the one who serves? Is it not the one who re- +28 +clines? But I am among you as one who serves. + +29 + +30 + +You are the ones who have stood by Me in My +And I bestow on you a kingdom, just as +trials. +My Father has bestowed one on Me, +so that +you may eat and drink at My table in My kingdom +and sit on thrones, judging the twelve tribes of +Jesus Predicts Peter’s Denial +Israel. +(Matt. 26:31–35 ; Mark 14:27–31 ; John 13:36–38) + +31 + +32 + +Simon, Simon, Satan has asked to sift all of you +But I have prayed for you, Simon, +like wheat. +that your faith will not fail. And when you have +33 +turned back, strengthen your brothers.” + +“Lord,” said Peter, “I am ready to go with You + +34 +even to prison and to death.” + +But Jesus replied, “I tell you, Peter, the rooster +will not crow today until you have denied three +35 +times that you know Me.” + +Then Jesus asked them, “When I sent you out +without purse or bag or sandals, did you lack an- +ything?” +36 +“Nothing,” they answered. + +37 + +“Now, however,” He told them, “the one with a +purse should take it, and likewise a bag; and the +one without a sword should sell his cloak and +buy one. +For I tell you that this Scripture must +be fulfilled in Me: ‘And He was numbered with +the transgressors.’ + For what is written about Me +38 +is reaching its fulfillment.” + + b + +So they said, “Look, Lord, here are two + +swords.” + +“That is enough,” He answered. + +b 37 + +Some manuscripts end verse 19 after + + and do not include verse 20. + +Isaiah 53:12 + + 946 | Luke 22:39 + +Jesus Prays on the Mount of Olives +(Matthew 26:36–46 ; Mark 14:32–42) + +39 + +40 + +Jesus went out as usual to the Mount of Olives, +and the disciples followed Him. +When He came +to the place, He told them, “Pray that you will not +41 +enter into temptation.” + +And He withdrew about a stone’s throw be- +42 +yond them, where He knelt down and prayed, +“Father, if You are willing, take this cup from + +43 +Me. Yet not My will, but Yours be done.” + +44 +Then an angel from heaven appeared to Him +and strengthened Him. +And in His anguish, He +prayed more earnestly, and His sweat became +45 +like drops of blood falling to the ground. + +a + +46 + +When Jesus rose from prayer and returned to +the disciples, He found them asleep, exhausted +from sorrow. +“Why are you sleeping?” He +asked. “Get up and pray so that you will not enter +The Betrayal of Jesus +into temptation.” +(Matt. 26:47–56 ; Mark 14:43–52 ; John 18:1–14) + +47 + +While He was still speaking, a crowd arrived, +led by the man called Judas, one of the Twelve. +He approached Jesus to kiss Him. +But Jesus +asked him, “Judas, are you betraying the Son of +49 +Man with a kiss?” + +48 + +50 + +Those around Jesus saw what was about to +happen and said, “Lord, should we strike with +our swords?” +And one of them struck the serv- +51 +ant of the high priest, cutting off his right ear. + +But Jesus answered, “No more of this!” And He + +52 +touched the man’s ear and healed him. + +Then Jesus said to the chief priests, temple of- +ficers, and elders who had come for Him, “Have +53 +you come out with swords and clubs as you +b +would against an outlaw? +Every day I was with + and you did not lay a +you in the temple courts, +hand on Me. But this hour belongs to you and to +Peter Denies Jesus +the power of darkness.” +(Matt. 26:69–75 ; Mark 14:66–72 ; John 18:15–18) + +54 + +Then they seized Jesus, led Him away, and took +Him into the house of the high priest. And Peter +55 +followed at a distance. + +57 + +But Peter denied it. “Woman, I do not know + +58 +Him,” he said. + +A short time later, someone else saw him and + +said, “You also are one of them.” +59 +But Peter said, “Man, I am not.” + +About an hour later, another man insisted, +“Certainly this man was with Him, for he too is a +60 +Galilean.” + +“Man, I do not know what you are talking + +about,” Peter replied. + +61 + +And immediately, while he was still speaking, the +rooster crowed. +And the Lord turned and +looked at Peter. + +Then Peter remembered the word that the Lord +had spoken to him: “Before the rooster crows to- +day, you will deny Me three times.” +And he +The Soldiers Mock Jesus (Isaiah 50:4–11 ; +went outside and wept bitterly. + Matt. 27:27–31 ; Mark 15:16–20 ; John 19:1–15) + +62 + +63 + +64 + + c + +The men who were holding Jesus began to +They blindfolded +65 + and kept demanding, “Prophesy! Who hit +And they said many other blasphemous + +mock Him and beat Him. +Him +You?” +Jesus before the Sanhedrin +things against Him. +(Matt. 26:57–68 ; Mark 14:53–65 ; John 18:19–24) + +66 + + d + +67 + +At daybreak the council of the elders of the +people, both the chief priests and scribes, met to- +gether. They led Jesus into their Sanhedrin + and +said, +“If You are the Christ, tell us.” +68 +Jesus answered, “If I tell you, you will not believe. +And if I ask you a question, you will not an- +But from now on the Son of Man will be + +swer. +70 +seated at the right hand of the power of God.” + +69 + + e + +So they all asked, “Are You then the Son of + +God?” +71 +He replied, “You say that I am.” + +“Why do we need any more testimony?” they +declared. “We have heard it for ourselves from +Jesus before Pilate +His own lips.” +(Matthew 27:11–14 ; John 18:28–40) + +23 + +56 + +When those present had kindled a fire in the +middle of the courtyard and sat down together, +Peter sat down among them. +A servant girl saw +him seated in the firelight and looked intently at +a 44 +him. “This man also was with Him,” she said. +e 69 +striking Him on the face + +their Council + +d 66 + +Some manuscripts do not include verses 43 and 44. + +2 +Then the whole council rose and led Je- +And they began to +sus away to Pilate. +accuse Him, saying, “We found this man subvert- +ing our nation, forbidding payment of taxes to +Literally +See Psalm 110:1. + +BYZ and TR include + +the temple + +and were + +b 53 + +c 64 + +. + +Or + + Luke 23:35 | 947 + +20 + +21 + +Caesar, and proclaiming Himself to be Christ, a +3 +King.” + +So Pilate asked Him, “Are You the King of the + +Wanting to release Jesus, Pilate addressed +but they kept shouting, “Crucify + +them again, +22 +Him! Crucify Him!” + +Jews?” +4 +“You have said so,” Jesus replied. + +Then Pilate said to the chief priests and the +crowds, “I find no basis for a charge against this +5 +man.” + +But they kept insisting, “He stirs up the people +all over Judea with His teaching. He began in Gal- +Jesus before Herod +ilee and has come all the way here.” +6 + +7 + +When Pilate heard this, he asked if the man was +And learning that Jesus was under +a Galilean. +Herod’s jurisdiction, he sent Him to Herod, who +8 +himself was in Jerusalem at that time. + +When Herod saw Jesus, he was greatly pleased. +He had wanted to see Him for a long time, be- +cause he had heard about Him and was hoping to +Herod questioned +see Him perform a miracle. +10 +Jesus at great length, but He gave no answer. + +9 + +11 + +Meanwhile, the chief priests and scribes stood +And even +there, vehemently accusing Him. +Herod and his soldiers ridiculed and mocked +Him. Dressing Him in a fine robe, they sent Him +12 +back to Pilate. + +A third time he said to them, “What evil has +this man done? I have found in Him no offense +worthy of death. So after I punish Him, I will re- +23 +lease Him.” + + b +But they were insistent, demanding with loud + +24 + +25 + +voices for Jesus to be crucified. And their clamor +So Pilate sentenced that their de- +prevailed. +As they had requested, he re- +mand be met. +leased the one imprisoned for insurrection and +The Crucifixion (Psalm 22:1–31 ; +murder, and he handed Jesus over to their will. + Matt. 27:32–44 ; Mark 15:21–32 ; John 19:16–27) + +26 + +As the soldiers led Him away, they seized +Simon of Cyrene on his way in from the country, +and they put the cross on him to carry behind +27 +Jesus. + +28 + +A great number of people followed Him, +including women who kept mourning and wail- +ing for Him. +But Jesus turned to them and +said, “Daughters of Jerusalem, do not weep for +29 +Me, but weep for yourselves and for your chil- +Look, the days are coming when people +dren. +will say, ‘Blessed are the barren women, the +30 +wombs that never bore, and breasts that never +nursed!’ + +At that time + +That day Herod and Pilate became friends; be- + +The Crowd Chooses Barabbas +fore this time they had been enemies. +(Matthew 27:15–23 ; Mark 15:6–11) + +‘they will say to the mountains, “Fall + + c + +31 + +on us!” + +and to the hills, “Cover us!” + +’ + +13 + +14 + +Then Pilate called together the chief priests, +the rulers, and the people, +and said to them, +“You brought me this man as one who was incit- +ing the people to rebellion. I have examined Him +here in your presence and found Him not guilty +Neither has +of your charges against Him. +Herod, for he sent Him back to us. As you can see, + a +16 +He has done nothing deserving of death. +18 +Therefore I will punish Him and release Him.” + +15 + +19 + +For if men do these things while the tree is + +32 +green, what will happen when it is dry?” + +Two others, who were criminals, were also led +d + +33 +away to be executed with Jesus. + +When they came to the place called The Skull, +they crucified Him there, along with the crimi- +34 +nals, one on His right and the other on His left. + + e + +Then Jesus said, “Father, forgive them, for they + And they + +do not know what they are doing.” +35 +divided up His garments by casting lots. + +f + +g + +But they all cried out in unison: “Away with +(Barabbas +this man! Release Barabbas to us!” +had been imprisoned for an insurrection in the +city, and for murder.) +a 16 + +b 23 + +iae +Mark 15:6. +are doing.” + +BYZ and TR include +f 34 + +BYZ and TR include + +and that of the chief priests + +Calvary +g 35 + +e 34 + +. + + at Him, + +The people stood watching, and the rulers +sneered + saying, “He saved others; let +Him save Himself if He is the Christ of God, the +Chosen One.” +c 30 + +d 33 + +Calvar- +Kranion +; see Matthew 27:15 and +Then Jesus said, “Father . . . what they +; Vulgate + +Greek + +Hosea 10:8 + +17 Now Pilate was obligated to release to the people one prisoner at the feast + +, rendered in some translations as +See Psalm 22:18. + +Some manuscripts do not include + +See Psalm 22:7. + + 948 | Luke 23:36 + +36 + +a + +37 + +The soldiers also mocked Him and came up to +“If You are the King of + +offer Him sour wine. +38 +the Jews,” they said, “save Yourself!” + + b + +Above + + Him was posted an inscription: + +39 + +THIS IS THE KING OF THE JEWS. + +One of the criminals who hung there heaped +abuse on Him. “Are You not the Christ?” he said. +40 +“Save Yourself and us!” + +41 + +But the other one rebuked him, saying, “Do you +not even fear God, since you are under the same +We are punished justly, for we are +judgment? +receiving what our actions deserve. But this man + c +Then he said, “Jesus, +has done nothing wrong.” +remember me + when You come into Your king- +43 +dom!” + +42 + +And Jesus said to him, “Truly I tell you, today + +The Death of Jesus (Psalm 31:1–24 ; +you will be with Me in Paradise.” +Matt. 27:45–56 ; Mark 15:33–41 ; John 19:28–30) + +44 + +d +It was now about the sixth hour, and darkness + +45 +came over all the land until the ninth hour. + +e + +The sun was darkened, + + and the veil of the + +46 +temple was torn down the middle. + + f + +54 + +h + +been laid. +55 +bath was beginning. + +It was Preparation Day, and the Sab- + +The women who had come with Jesus from +56 +Galilee followed, and they saw the tomb and how +Then they returned to +His body was placed. +prepare spices and perfumes. And they rested on +The Resurrection +the Sabbath, according to the commandment. +(Matthew 28:1–10 ; Mark 16:1–8 ; John 20:1–9) + +i + +24 + +3 + +On the first day of the week, + very early +in the morning, the women came to the +2 +tomb, bringing the spices they had prepared. +They found the stone rolled away from the +but when they entered, they did not find +tomb, +While they were puz- +the body of the Lord Jesus. +zling over this, suddenly two men in radiant +5 +apparel stood beside them. + +4 + +6 + +As the women bowed their faces to the ground +in terror, the two men asked them, “Why do you +He is not +look for the living among the dead? +here; He has risen! Remember how He told you +‘The Son of Man +while He was still in Galilee: +must be delivered into the hands of sinful men, +8 +and be crucified, and on the third day rise again.’” + +7 + +9 + +Then Jesus called out in a loud voice, “Father, + And when + +into Your hands I commit My Spirit.” +47 +He had said this, He breathed His last. + +g + +” + +48 + +49 + +When the centurion saw what had happened, +he gave glory to God, saying, “Surely this was a +And when all the people who +righteous man. +had gathered for this spectacle saw what had +happened, they returned home beating their +But all those who knew Jesus, includ- +breasts. +ing the women who had followed Him from Gali- +The Burial of Jesus (Isaiah 53:9–12 ; +lee, stood at a distance watching these things. +Matt. 27:57–61 ; Mark 15:42–47 ; John 19:38–42) + +50 + +Then they remembered His words. + +And when +they returned from the tomb, they reported all +10 +these things to the Eleven and to all the others. +It was Mary Magdalene, Joanna, Mary the +mother of James, and the other women with +But their +them who told this to the apostles. +words seemed like nonsense to them, and they +12 +did not believe the women. + +11 + +Peter, however, got up and ran to the tomb. +And after bending down and seeing only the +linen cloths, he went away, wondering to himself +The Road to Emmaus +what had happened. +(Mark 16:12–13) + +51 + +13 + +Now there was a Council member named +who had not +Joseph, a good and righteous man, +consented to their decision or action. He was +52 +from the Judean town of Arimathea and was +53 +He went to Pi- +waiting for the kingdom of God. +Then he took +late to ask for the body of Jesus. +it down, wrapped it in a linen cloth, and placed it +a 36 +in a tomb cut into the rock, where no one had yet +c 42 + +said to Jesus, “Remember me, Lord, + +to offer Him wine vinegar + +d 44 + +b 38 + +Or +was obscured +BYZ and TR + +became dark +But on the first of the Sabbaths, + +f 46 +j 13 + +BYZ and TR include + +i 1 +or + +Literally + +11.1 kilometers + +; BYZ and TR + + j + +14 + +That same day two of them were going to a vil- + from Je- +lage called Emmaus, about seven miles +15 +rusalem. +They were talking with each other +And as +about everything that had happened. +they talked and deliberated, Jesus Himself came +But their eyes +up and walked along with them. +were kept from recognizing Him. + +written in Greek, Latin, and Hebrew + +16 + + g 47 + +an innocent man + +h 54 + +That is, from noon until three in the afternoon + +being sixty stadia in distance +Or + +Or + +; that is, approximately 6.9 miles or + +e 45 +was about to begin + +; see John 19:20. +Or + +failed + +Psalm 31:5 +Greek + + 17 + +He asked them, “What are you discussing so in- + +tently as you walk along?” +18 +They stood still, with sadness on their faces. +One of them, named Cleopas, asked Him, “Are +You the only visitor to Jerusalem who does not +know the things that have happened there in +19 +recent days?” + +“What things?” He asked. + +“The events involving Jesus of Nazareth,” they +answered. “This man was a prophet, powerful in +20 +speech and action before God and all the people. +Our chief priests and rulers delivered Him up +21 +to the sentence of death, and they crucified Him. +But we were hoping He was the One who +would redeem Israel. And besides all this, it is the +22 +third day since these things took place. + +Furthermore, some of our women astounded +23 +us. They were at the tomb early this morning, +but they did not find His body. They came and +told us they had seen a vision of angels, who said +Then some of our com- +that Jesus was alive. +panions went to the tomb and found it just as the +25 +women had described. But Him they did not see.” + +24 + +26 + +27 + +Then Jesus said to them, “O foolish ones, +and slow of heart to believe all that the prophets +Was it not necessary for the +have spoken! +Christ to suffer these things and then to enter His +And beginning with Moses and all the +glory?” +Prophets, He explained to them what was writ- +28 +ten in all the Scriptures about Himself. + +As they approached the village where they +29 +were headed, He seemed to be going farther. +But they pleaded with Him, “Stay with us, for it + +is nearly evening and the day is almost over.” + +30 + +So He went in to stay with them. +While He was +reclining at the table with them, He took bread, +31 +spoke a blessing and broke it, and gave it to them. +Then their eyes were opened and they recog- +nized Jesus—and He disappeared from their +32 +sight. + +They asked each other, “Were not our hearts +burning within us as He spoke with us on the +And +road and opened the Scriptures to us?” +they got up that very hour and returned to +Jerusalem. + +33 + +Luke 24:53 | 949 + +34 + +There they found the Eleven and those with +and saying, “The Lord +them, gathered together +35 +has indeed risen and has appeared to Simon!” + +Then the two told what had happened on the +road, and how they had recognized Jesus in the +Jesus Appears to the Disciples +breaking of the bread. +(John 20:19–23 ; 1 John 1:1–4) + +36 + +37 + +While they were describing these events, +Jesus Himself stood among them and said, “Peace +be with you.” +But they were startled and fright- +38 +ened, thinking they had seen a spirit. + +39 + +“Why are you troubled,” Jesus asked, “and why +do doubts arise in your hearts? +Look at My +hands and My feet. It is I Myself. Touch Me and +see—for a spirit does not have flesh and bones, +And when He had said this, +as you see I have.” +41 +He showed them His hands and feet. + +40 + +While they were still in disbelief because of +their joy and amazement, He asked them, “Do +So they gave +you have anything here to eat?” +Him a piece of broiled fish, +and He took it and +44 +ate it in front of them. + +43 + +42 + +a + +Jesus said to them, “These are the words I +spoke to you while I was still with you: Every- +thing must be fulfilled that is written about Me in +45 +the Law of Moses, the Prophets, and the Psalms.” +Then He opened their minds to understand the + +46 +Scriptures. + +47 + +And He told them, “This is what is written: The +b +Christ will suffer and rise from the dead on the +third day, +forgiveness of sins will be proclaimed to all na- +tions, beginning in Jerusalem. +You are wit- +49 +nesses of these things. + +and in His name repentance and + +48 + +And behold, I am sending the promise of My +Father upon you. But remain in the city until you +The Ascension (Mark 16:19–20 ; Acts 1:6–11) +have been clothed with power from on high.” +50 + +51 + +When Jesus had led them out as far as Bethany, +While +He lifted up His hands and blessed them. +He was blessing them, He left them and was car- +ried up into heaven. +And they worshiped Him +53 +and returned to Jerusalem with great joy, + +52 + +praising God continually in the temple. + +a 42 + +and some honeycomb + +b 47 + +repentance for + +BYZ and TR include + +. + +NA, NE, and WH + + John + +The Beginning +(Genesis 1:1–2 ; Hebrews 11:1–3) + +The Mission of John the Baptist (Isa. 40:1–5 ; +Matthew 3:1–12 ; Mark 1:1–8 ; Luke 3:1–20) + +1 + +3 + +2 + +In the beginning was the Word, and the +Word was with God, and the Word was God. +Through +He was with God in the beginning. +Him all things were made, and without Him noth- +5 +In Him was +ing was made that has been made. +The Light +life, and that life was the light of men. +shines in the darkness, and the darkness has not +The Witness of John +overcome +6 + + it. + +4 + + a + +7 + +There came a man who was sent from God. His +He came as a witness to testify +name was John. +8 +about the Light, so that through him everyone +He himself was not the Light, but +might believe. +9 +he came to testify about the Light. + +10 +The true Light, who gives light to everyone, was +He was in the world, +coming into the world. +and though the world was made through Him, +12 +He came to +the world did not recognize Him. +But +His own, and His own did not receive Him. +to all who did receive Him, to those who believed +in His name, He gave the right to become chil- +children born not of blood, nor +dren of God— +The Word Became Flesh (Psalm 84:1–12) +of the desire or will of man, but born of God. +14 + +11 + +13 + +b + + c + +The Word became flesh and made His dwelling + We have seen His glory, the glory of + from the Father, full of + +among us. +the one and only Son +15 +grace and truth. + +John testified concerning Him. He cried out, +saying, “This is He of whom I said, ‘He who comes +after me has surpassed me because He was be- +16 +fore me.’ + +” + +17 + +From His fullness we have all received grace +For the law was given through Mo- +upon grace. +18 +ses; grace and truth came through Jesus Christ. +No one has ever seen God, but the one and only + is at the Father’s + + d + +e + +Son, who is Himself God and +comprehended +a 5 +side, + has made Him known. +only begotten God, who +g 26 + +b 14 + +Or + +in + +Or +; BYZ and TR +Or + +19 + +20 + +And this was John’s testimony when the Jews +of Jerusalem sent priests and Levites to ask him, +“Who are you?” +He did not refuse to confess, +21 +but openly declared, “I am not the Christ.” + +“Then who are you?” they inquired. “Are you + +Elijah?” + +He said, “I am not.” + +“Are you the Prophet?” +22 +He answered, “No.” + +So they said to him, “Who are you? We need an +answer for those who sent us. What do you say +23 +about yourself?” + +John replied in the words of Isaiah the prophet: + + “I am a voice of one calling in the + +wilderness, + f + +‘Make straight the way for the + +Lord.’ + +” + +24 + +25 + +Then the Pharisees who had been sent + +asked +him, “Why then do you baptize, if you are not the + g +26 +Christ, nor Elijah, nor the Prophet?” + +27 + +“I baptize with + + water,” John replied, “but +He is +among you stands One you do not know. +the One who comes after me, the straps of whose +28 +sandals I am not worthy to untie.” + +All this happened at Bethany beyond the Jor- + +Jesus the Lamb of God +dan, where John was baptizing. +(Matthew 3:13–17 ; Mark 1:9–11 ; Luke 3:21–22) + +29 + +30 + +The next day John saw Jesus coming toward +him and said, “Look, the Lamb of God, who takes +This is He of whom +away the sin of the world! +I said, ‘A man who comes after me has surpassed +me because He was before me.’ +I myself did not +know Him, but the reason I came baptizing with +water was that He might be revealed to Israel.” +but the + +the Unique One + +d 18 + +31 + +Or + + or + +Greek + +f 23 + +Or +Isaiah 40:3 + +and tabernacled among us + +c 14 +but the only begotten Son, who + +the Only Begotten +e 18 + +in the Father’s bosom + +(see also LXX) + +; also in verse 31 and twice in verse 33 + + 32 + +48 + +John 2:12 | 951 + +Then John testified, “I saw the Spirit descend- +33 +ing from heaven like a dove and resting on Him. +I myself did not know Him, but the One who +sent me to baptize with water told me, ‘The man +on whom you see the Spirit descend and rest is +I +He who will baptize with the Holy Spirit.’ +have seen and testified that this is the Son of +The First Disciples +God. +(Matthew 4:18–22 ; Mark 1:16–20 ; Luke 5:1–11) + +34 + +” + +a + +35 + +36 + +The next day John was there again with two of +37 +his disciples. +When he saw Jesus walking by, he +And when the +said, “Look, the Lamb of God!” +two disciples heard him say this, they followed +38 +Jesus. + +Jesus turned and saw them following. “What + +do you want?” He asked. + +They said to Him, “Rabbi” (which means Teacher), +39 +“where are You staying?” + +“Come and see,” He replied. So they went and +saw where He was staying, and spent that day +40 +with Him. It was about the tenth hour. + +b + +41 + +Andrew, Simon Peter’s brother, was one of the +two who heard John’s testimony and followed Je- +He first found his brother Simon and told +sus. +him, “We have found the Messiah” (which is +42 +translated as Christ). + +Andrew brought him to Jesus, who looked at +him and said, “You are Simon son of John. You +will be called Cephas” (which is translated as Pe- +Jesus Calls Philip and Nathanael +ter). +43 + +The next day Jesus decided to set out for Gali- +44 +lee. Finding Philip, He told him, “Follow Me.” +Now Philip was from Bethsaida, the same + +45 +town as Andrew and Peter. + +Philip found Nathanael and told him, “We have +found the One Moses wrote about in the Law, the +One the prophets foretold—Jesus of Nazareth, +46 +the son of Joseph.” + +“Can anything good come from Nazareth?” Na- + +thanael asked. +47 +“Come and see,” said Philip. + +When Jesus saw Nathanael approaching, He +said of him, “Here is a true Israelite, in whom +a 34 +there is no deceit.” +three metretae +SBL + +the Chosen One of God + +b 39 + +“How do You know me?” Nathanael asked. + +Jesus replied, “Before Philip called you, I saw you +49 +under the fig tree.” + +“Rabbi,” Nathanael answered, “You are the Son + +50 +of God! You are the King of Israel!” + +51 + +Jesus said to him, “Do you believe just because +I told you I saw you under the fig tree? You will +see greater things than these.” +Then He de- +clared, “Truly, truly, I tell you, you will all see + c +heaven open and the angels of God ascending +The Wedding at Cana +and descending on the Son of Man.” + +2 + +3 + +2 + +On the third day a wedding took place at +Cana in Galilee. Jesus’ mother was there, +and Jesus and His disciples had also been in- +When the wine ran out, +vited to the wedding. +Jesus’ mother said to Him, “They have no more +4 +wine.” + +“Woman, what is that to you and to Me?” Jesus + +5 +replied. “My hour has not yet come.” + +His mother said to the servants, “Do whatever + +6 +He tells you.” + +d + +7 + +Now six stone water jars had been set there for +the Jewish rites of purification. Each could hold +from twenty to thirty gallons. +Jesus told the +servants, “Fill the jars with water.” +8 +So they filled them to the brim. + +“Now draw some out,” He said, “and take it to + +9 +the master of the banquet.” + +They did so, +and the master of the banquet +tasted the water that had been turned into wine. +He did not know where it was from, but the serv- +ants who had drawn the water knew. Then he +and said, “Every- +called the bridegroom aside +one serves the fine wine first, and then the cheap +wine after the guests are drunk. But you have +11 +saved the fine wine until now!” + +10 + +Jesus performed this, the first of His signs, at +Cana in Galilee. He thus revealed His glory, and +Jesus Cleanses the Temple +His disciples believed in Him. +(Matt. 21:12–17 ; Mark 11:15–19 ; Luke 19:45–48) + +12 + +After this, He went down to Capernaum with +His mother and brothers and His disciples, and +they stayed there a few days. + +two or + +c 51 + +d 6 + +; that is, approximately 20.8 to 31.2 gallons (78.8 to 118.1 liters) + +That is, about four in the afternoon + +See Genesis 28:12. + +Greek + + 952 | John 2:13 + +13 + +14 + + a + +6 + +7 + +15 + +In the temple courts + +When the Jewish Passover was near, Jesus +went up to Jerusalem. + He +found men selling cattle, sheep, and doves, and +So He +money changers seated at their tables. +made a whip out of cords and drove all from the +temple courts, both sheep and cattle. He poured +out the coins of the money changers and over- +To those selling doves He +turned their tables. +said, “Get these out of here! How dare you turn +17 +My Father’s house into a marketplace!” + b + +16 + +His disciples remembered that it is written: + +18 +“Zeal for Your house will consume Me.” + +On account of this, the Jews demanded, “What +sign can You show us to prove Your authority to +19 +do these things?” + +Jesus answered, “Destroy this temple, and in + +20 +three days I will raise it up again.” + +“This temple took forty-six years to build,” the +Jews replied, “and You are going to raise it up in +21 +three days?” +22 + +But Jesus was speaking about the temple of His +body. +After He was raised from the dead, His +disciples remembered that He had said this. +Then they believed the Scripture and the word +23 +that Jesus had spoken. + +24 + +While He was in Jerusalem at the Passover +Feast, many people saw the signs He was doing +But Jesus did not en- +and believed in His name. +He +trust Himself to them, for He knew them all. +did not need any testimony about man, for He +Jesus and Nicodemus +knew what was in a man. +(Genesis 22:1–10 ; Romans 5:6–11) + +25 + +3 + +2 + +Now there was a man of the Pharisees +named Nicodemus, a leader of the Jews. +He +came to Jesus at night and said, “Rabbi, we know +that You are a teacher who has come from God. +For no one could perform the signs You are doing +3 +if God were not with him.” + +c + +Jesus replied, “Truly, truly, I tell you, no one can +” + +4 +see the kingdom of God unless he is born again. + +“How can a man be born when he is old?” Nico- +demus asked. “Can he enter his mother’s womb a +5 +second time to be born?” + +Jesus answered, “Truly, truly, I tell you, no one +a 14 +can enter the kingdom of God unless he is born of + +the temple + +b 17 + +you +Literally +nal life in Him. +for + + is plural; also in verse 12. + +g 16 + +; also in verse 15 +only begotten + +Psalm 69:9 + +unique +BYZ and TR include + +e 13 + + d + + must be born again.’ + +Flesh is born of flesh, but +water and the Spirit. +8 +spirit is born of the Spirit. +Do not be amazed +that I said, ‘You +The wind +blows where it wishes. You hear its sound, but +you do not know where it comes from or where +it is going. So it is with everyone born of the +9 +Spirit.” +10 + +“How can this be?” Nicodemus asked. + +11 + +“You are Israel’s teacher,” said Jesus, “and you +Truly, truly, I +do not understand these things? +tell you, we speak of what we know, and we tes- +tify to what we have seen, and yet you people do +12 +not accept our testimony. + +e + +If I have told you about earthly things and you +13 +do not believe, how will you believe if I tell you +No one has ascended +about heavenly things? +14 +into heaven except the One who descended from +Just as Moses lifted +heaven—the Son of Man. +up the snake in the wilderness, so the Son of Man +f +must be lifted up, +that everyone who believes +16 +in Him may have eternal life. + g + +15 + +17 + +18 + +For God so loved the world that He gave His +one and only + Son, that everyone who believes in +For +Him shall not perish but have eternal life. +God did not send His Son into the world to con- +demn the world, but to save the world through +Whoever believes in Him is not con- +Him. +demned, but whoever does not believe has +already been condemned, because he has not +19 +believed in the name of God’s one and only Son. + +And this is the verdict: The Light has come into +the world, but men loved the darkness rather +20 +than the Light because their deeds were evil. +Everyone who does evil hates the Light, and +21 +does not come into the Light for fear that his +But whoever practices +deeds will be exposed. +the truth comes into the Light, so that it may be +seen clearly that what he has done has been ac- +John’s Testimony about Jesus +complished in God.” +22 + + h + +After this, Jesus and His disciples went into the +Judean countryside, where He spent some time +23 +with them and baptized. + +Now John was also baptizing at Aenon near +Salim, because the water was plentiful there, and +(For John +people kept coming to be baptized. +d 7 +c 3 +had not yet been thrown into prison.) +everyone who believes may have eter- +The Greek word + +; also in verse 7. + +born from above + +who is in heaven +Or +h 21 + +f 15 + +24 + +. + +Or + +Or + + or + +; also in verse 18 + +Some translators close this quotation after verse 15. + + 25 + + a + +10 + +John 4:26 | 953 + +26 + +Then a dispute arose between John’s disciples +and a certain Jew + over the issue of ceremonial +So John’s disciples came to him and +washing. +said, “Look, Rabbi, the One who was with you be- +yond the Jordan, the One you testified about—He +27 +is baptizing, and everyone is going to Him.” + +28 + +29 + +John replied, “A man can receive only what is +You yourselves can +given him from heaven. +testify that I said, ‘I am not the Christ, but am sent +ahead of Him.’ +The bride belongs to the bride- +groom. The friend of the bridegroom stands and +listens for him, and is overjoyed to hear the +bridegroom’s voice. That joy is mine, and it is +He must increase; I must de- +now complete. +31 +crease. + +30 + +b + +32 + +The One who comes from above is above all. +The one who is from the earth belongs to the +earth and speaks as one from the earth. The One +He testi- +who comes from heaven is above all. +33 +fies to what He has seen and heard, yet no one +34 +accepts His testimony. +Whoever accepts His +For +testimony has certified that God is truthful. +the One whom God has sent speaks the words of +35 +God, for God gives the Spirit without limit. +36 + +The Father loves the Son and has placed all +Whoever believes in the +things in His hands. +Son has eternal life. Whoever rejects the Son will +not see life. Instead, the wrath of God remains on +Jesus and the Samaritan Woman +him.” + + c + +4 + + d + +2 + +When Jesus realized that the Pharisees were +aware He + was gaining and baptizing more +3 +(although it was not Jesus +disciples than John +He left Judea +who baptized, but His disciples), +5 +4 +and returned to Galilee. + +6 + +Now He had to pass through Samaria. + +So He +came to a town of Samaria called Sychar, near the +plot of ground that Jacob had given to his son Jo- +Since Jacob’s well was there, Jesus, weary +seph. +from His journey, sat down by the well. It was +7 +about the sixth hour. + +e + +8 + +When a Samaritan woman came to draw water, +(His disci- + +Jesus said to her, “Give Me a drink.” +9 +ples had gone into the town to buy food.) + +Jesus answered, “If you knew the gift of God +and who is asking you for a drink, you would +have asked Him, and He would have given you +11 +living water.” + +12 + +“Sir,” the woman replied, “You have nothing +to draw with and the well is deep. Where then +Are You greater +will You get this living water? +than our father Jacob, who gave us this well and +drank from it himself, as did his sons and his live- +13 +stock?” + +14 + +Jesus said to her, “Everyone who drinks this +But whoever +water will be thirsty again. +drinks the water I give him will never thirst. In- +deed, the water I give him will become in him a +15 +fount of water springing up to eternal life.” + +The woman said to Him, “Sir, give me this wa- +ter so that I will not get thirsty and have to keep +16 +coming here to draw water.” + +Jesus told her, “Go, call your husband and come + +17 +back.” + +“I have no husband,” the woman replied. + +18 + +Jesus said to her, “You are correct to say that you +In fact, you have had five +have no husband. +husbands, and the man you now have is not your +19 +husband. You have spoken truthfully.” + +20 + +“Sir,” the woman said, “I see that You are a +Our fathers worshiped on this moun- +prophet. +tain, but you Jews say that the place where one +21 +must worship is in Jerusalem.” + +22 + +“Believe Me, woman,” Jesus replied, “a time is +coming when you will worship the Father nei- +You +ther on this mountain nor in Jerusalem. +worship what you do not know; we worship +23 +what we do know, for salvation is from the Jews. +But a time is coming and has now come when +the true worshipers will worship the Father in +24 +spirit and in truth, for the Father is seeking such +God is Spirit, and His +as these to worship Him. +worshipers must worship Him in spirit and in +25 +truth.” + +The woman said, “I know that Messiah” (called +Christ) “is coming. When He comes, He will ex- +26 +plain everything to us.” + +Jesus answered, “I who speak to you am He.” + +“You are a Jew,” said the woman. “How can You +ask for a drink from me, a Samaritan woman?” +(For Jews do not associate with Samaritans.) +a 25 + +and the Jews + +b 31 + + f + +The One comes from heaven. + +c 36 + +d 1 +TR + +Lord knew that the Pharisees had heard that Jesus +30. + +Literally + +Tischendorf + +When therefore Jesus knew that the Pharisees had heard that Jesus + +When therefore the + +e 6 + +Some translators close this quotation after verse + +f 9 + +; NE, WH, BYZ, TR + +That is, about noon + +Tischendorf does not include this sentence. + + 954 | John 4:27 + +The Disciples Return and Marvel + +46 + +27 + +Just then His disciples returned and were sur- +prised that He was speaking with a woman. But +no one asked Him, “What do You want from her?” +28 +or “Why are You talking with her?” + +29 + +Then the woman left her water jar, went back +into the town, and said to the people, +“Come, +30 +see a man who told me everything I ever did. +Could this be the Christ?” +So they left the town +31 +and made their way toward Jesus. + +Meanwhile the disciples urged Him, “Rabbi, + +32 +eat something.” + +But He told them, “I have food to eat that you + +33 +know nothing about.” + +So the disciples asked one another, “Could + +34 +someone have brought Him food?” + +35 + +Jesus explained, “My food is to do the will of +Do +Him who sent Me and to finish His work. +you not say, ‘There are still four months until the +harvest’? I tell you, lift up your eyes and look at +36 +the fields, for they are ripe + + for harvest. + + a + +37 + +38 + +Already the reaper draws his wages and gath- +ers a crop for eternal life, so that the sower and +the reaper may rejoice together. +For in this +case the saying ‘One sows and another reaps’ is +I sent you to reap what you have not +true. +worked for; others have done the hard work, and +Many Samaritans Believe +now you have taken up their labor.” +39 + +Many of the Samaritans from that town +believed in Jesus because of the woman’s testi- +mony, “He told me everything I ever did.” +So +when the Samaritans came to Him, they asked +41 +Him to stay with them, and He stayed two days. + +40 + +42 + +And many more believed because of His mes- +sage. +They said to the woman, “We now be- +lieve not only because of your words; we have +heard for ourselves, and we know that this man +Jesus Heals the Official’s Son +truly is the Savior of the world.” +(Matthew 8:5–13 ; Luke 7:1–10) + +43 + +44 + +47 + +So once again He came to Cana in Galilee, +where He had turned the water into wine. And +there was a royal official whose son lay sick at +Capernaum. +When he heard that Jesus had +come from Judea to Galilee, he went and begged +Him to come down and heal his son, who was +48 +about to die. + +Jesus said to him, “Unless you people see signs + +49 +and wonders, you will never believe.” + +“Sir,” the official said, “come down before my + +50 +child dies.” + +“Go,” said Jesus. “Your son will live.” + +51 +The man took Jesus at His word and departed. +And while he was still on the way, his servants + +52 +met him with the news that his boy was alive. + +So he inquired as to the hour when his son had +recovered, and they told him, “The fever left him +53 +yesterday at the seventh hour. + +” + +b + +Then the father realized that this was the very +hour in which Jesus had told him, “Your son will +54 +live.” And he and all his household believed. + +This was now the second sign that Jesus per- + +The Pool of Bethesda +formed after coming from Judea into Galilee. + +5 + +2 + +Some time later there was a feast of the Jews, +and Jesus went up to Jerusalem. + + c + +3 + +Now there is in Jerusalem near the Sheep Gate + e +d +a pool with five covered colonnades, which in He- +On these walkways +brew +lay a great number of the sick, the blind, the lame, +5 +and the paralyzed. + + is called Bethesda. + +f + +6 + +One man there had been an invalid for thirty- +When Jesus saw him lying there and +eight years. +realized that he had spent a long time in this con- +7 +dition, He asked him, “Do you want to get well?” + +“Sir,” the invalid replied, “I have no one to help +me into the pool when the water is stirred. While +I am on my way, someone else goes in before +8 +me.” + +Then Jesus told him, “Get up, pick up your mat, + +9 +and walk.” + +After two days, Jesus left for Galilee. + +Now He +45 +Himself had testified that a prophet has no honor +in his own hometown. +Yet when He arrived, +the Galileans welcomed Him. They had seen all +the great things He had done in Jerusalem at the +b 52 +a 35 +feast, for they had gone there as well. +e 3 +f 3 +scended into the pool and stirred the water. As soon as it was stirred, the first to enter the pool would be healed of his disease. + +Now this happened on the Sabbath day, +so the +Jews said to the man who had been healed, “This +Or + +Immediately the man was made well, and he + +awaiting the moving of the waters. 4 For from time to time an angel de- + +picked up his mat and began to walk. + +That is, one in the afternoon + +white +In these + +NA, NE, and WH + +in Aramaic + +Bethzatha + +Literally + +d 2 + +c 2 + +10 + +Literally + +NE, BYZ, and TR include + + is the Sabbath! It is unlawful for you to carry your +11 +mat.” + +He has given Him authority to execute judgment, +28 +because He is the Son of Man. + +John 5:47 | 955 + +But he answered, “The man who made me well + +12 +told me, ‘Pick up your mat and walk.’” + +“Who is this man who told you to pick it up and + +13 +walk?” they asked. + +But the man who was healed did not know +who it was, for Jesus had slipped away while the +14 +crowd was there. + +Afterward, Jesus found the man at the temple +and said to him, “See, you have been made well. +Stop sinning, or something worse may happen to +15 +you.” + +And the man went away and told the Jews that + +The Father and the Son +it was Jesus who had made him well. +16 + +Now because Jesus was doing these things on +17 +the Sabbath, the Jews began to persecute Him. +But Jesus answered them, “To this very day My + +18 +Father is at His work, and I too am working.” + +Because of this, the Jews tried all the harder to +kill Him. Not only was He breaking the Sabbath, +but He was even calling God His own Father, +19 +making Himself equal with God. + +20 + +So Jesus replied, “Truly, truly, I tell you, the Son +can do nothing by Himself, unless He sees the Fa- +ther doing it. For whatever the Father does, the +The Father loves the Son and +Son also does. +shows Him all He does. And to your amazement, +21 +He will show Him even greater works than these. +For just as the Father raises the dead and gives +them life, so also the Son gives life to whom He +22 +wishes. + +23 + +Furthermore, the Father judges no one, but +has assigned all judgment to the Son, +so that all +may honor the Son just as they honor the Father. +Whoever does not honor the Son does not honor +24 +the Father who sent Him. + +Truly, truly, I tell you, whoever hears My word +and believes Him who sent Me has eternal life +and will not come under judgment. Indeed, he +25 +has crossed over from death to life. + +Truly, truly, I tell you, the hour is coming and +has now come when the dead will hear the voice +26 +of the Son of God, and those who hear will live. +For as the Father has life in Himself, so also He +And + +has granted the Son to have life in Himself. +a 29 + +27 + +See Daniel 12:2. + +29 + +Do not be amazed at this, for the hour is com- +ing when all who are in their graves will hear His +voice +and come out—those who have done +a +good to the resurrection of life, and those who +30 +have done evil to the resurrection of judgment. + +I can do nothing by Myself; I judge only as I +hear. And My judgment is just, because I do not +seek My own will, but the will of Him who sent +Testimonies about Jesus +Me. +31 + +32 + +If I testify about Myself, My testimony is not +There is another who testifies about Me, +valid. +33 +and I know that His testimony about Me is valid. + +34 + +You have sent to John, and he has testified to +Even though I do not accept human +the truth. +testimony, I say these things so that you may be +35 +saved. + +37 + +36 + +John was a lamp that burned and gave light, +and you were willing for a season to bask in his +light. +But I have testimony more substantial +than that of John. For the works that the Father +has given Me to accomplish—the very works I +am doing—testify about Me that the Father has +And the Father who sent Me has Him- +sent Me. +self testified about Me. You have never heard His +nor does His word +voice nor seen His form, +abide in you, because you do not believe the One +The Witness of Scripture (Luke 16:19–31) +He sent. +39 + +38 + +You pore over the Scriptures because you pre- +sume that by them you possess eternal life. These +are the very words that testify about Me, +yet +42 +41 +you refuse to come to Me to have life. + +40 + +43 + +I do not accept glory from men, + +but I know +you, that you do not have the love of God within +you. +I have come in My Father’s name, and you +have not received Me; but if someone else comes +in his own name, you will receive him. +How can +you believe if you accept glory from one another, +yet do not seek the glory that comes from the +45 +only God? + +44 + +46 + +Do not think that I will accuse you before the +Father. Your accuser is Moses, in whom you have +put your hope. +If you had believed Moses, you +47 +would believe Me, because he wrote about Me. +But since you do not believe what he wrote, + +how will you believe what I say?” + + 956 | John 6:1 + +The Feeding of the Five Thousand +(Matt. 14:13–21 ; Mark 6:30–44 ; Luke 9:10–17) + +6 + +2 + +After this, Jesus crossed to the other side of +the Sea of Galilee (that is, the Sea of Tibe- +A large crowd followed Him because they +rias). +3 +saw the signs He was performing on the sick. +Then Jesus went up on the mountain and sat + +4 +down with His disciples. +5 + +Now the Jewish Feast of the Passover was near. +When Jesus looked up and saw a large crowd +coming toward Him, He said to Philip, “Where +can we buy bread for these people to eat?” +But +He was asking this to test him, for He knew what +7 +He was about to do. + +6 + + a + +Philip answered, “Two hundred denarii + + would +not buy enough bread for each of them to have a +8 +small piece.” + +9 + +One of His disciples, Andrew, Simon Peter’s +brother, said to Him, +“Here is a boy with five +barley loaves and two small fish. But what differ- +10 +ence will these make among so many?” + +“Have the people sit down,” Jesus said. Now +there was plenty of grass in that place, so the +11 +men sat down, about five thousand of them. + +Then Jesus took the loaves and the fish, gave +thanks, and distributed to those who were +12 +seated as much as they wanted. + +And when everyone was full, He said to His dis- +ciples, “Gather the pieces that are left over, so +13 +that nothing will be wasted.” + +So they collected them and filled twelve bas- +kets with the pieces of the five barley loaves left +14 +over by those who had eaten. + +b + +When the people saw the sign that Jesus had + they began to say, “Truly this is the + +performed, +15 +Prophet who is to come into the world.” + +Then Jesus, realizing that they were about to +come and make Him king by force, withdrew +Jesus Walks on Water +again to a mountain by Himself. +(Matthew 14:22–33 ; Mark 6:45–52) + +16 + +17 + +When evening came, His disciples went down +to the sea, +got into a boat, and started across +the sea to Capernaum. It was already dark, and +Jesus had not yet gone out to them. +A strong +a 7 +wind was blowing, and the sea grew agitated. +c 19 +about twenty-five or thirty stadia +d 31 + +18 + +19 + +c + +When they had rowed about three or four +miles, + they saw Jesus approaching the boat, +20 +walking on the sea—and they were terrified. +21 +But Jesus spoke up: “It is I; do not be afraid.” +Then they were willing to take Him into the +boat, and at once the boat reached the shore +Jesus the Bread of Life +where they were heading. +22 + +23 + +The next day, the crowd that had remained on +the other side of the sea realized that only one +boat had been there, and that Jesus had not +boarded it with His disciples, but they had gone +However, some boats from Tibe- +away alone. +rias landed near the place where the people had +24 +eaten the bread after the Lord had given thanks. +So when the crowd saw that neither Jesus nor +His disciples were there, they got into the boats +and went to Capernaum to look for Him. +When +they found Him on the other side of the sea, they +26 +asked Him, “Rabbi, when did You get here?” + +25 + +27 + +Jesus replied, “Truly, truly, I tell you, it is not +because you saw these signs that you are looking +for Me, but because you ate the loaves and had +Do not work for food that perishes, +your fill. +but for food that endures to eternal life, which +the Son of Man will give you. For on Him God the +28 +Father has placed His seal of approval.” + +Then they inquired, “What must we do to per- + +29 +form the works of God?” + +Jesus replied, “The work of God is this: to be- + +30 +lieve in the One He has sent.” + +31 + +So they asked Him, “What sign then will You +perform, so that we may see it and believe You? +What will You do? +Our fathers ate the manna +in the wilderness, as it is written: ‘He gave them +32 +bread from heaven to eat.’ + +” + + d + +Jesus said to them, “Truly, truly, I tell you, it +was not Moses who gave you the bread from +33 +heaven, but it is My Father who gives you the +true bread from heaven. +For the bread of God +is He who comes down from heaven and gives +34 +life to the world.” +35 + +“Sir,” they said, “give us this bread at all times.” + +Jesus answered, “I am the bread of life. Who- +ever comes to Me will never hunger, and who- +ever believes in Me will never thirst. +But as +I stated, you have seen Me and still you do not +He had performed +believe. + +b 14 + +36 + +A denarius was customarily a day’s wage for a laborer; see Matthew 20:2. +Greek +Psalm 78:24; see also Exodus 16:4. + +; that is, approximately 2.87 to 3.45 miles (4.62 to 5.55 kilometers) + +SBL, NA, NE, and WH + + 37 + +38 + +Everyone the Father gives Me will come to Me, +and the one who comes to Me I will never drive +For I have come down from heaven, not +away. +to do My own will, but to do the will of Him who +39 +sent Me. + +40 + +And this is the will of Him who sent Me, that I +shall lose none of those He has given Me, but +raise them up at the last day. +For it is My Fa- +ther’s will that everyone who looks to the Son +and believes in Him shall have eternal life, and I +41 +will raise him up at the last day.” + +42 + +At this, the Jews began to grumble about +Jesus because He had said, “I am the bread that +came down from heaven.” +They were asking, +“Is this not Jesus, the son of Joseph, whose father +and mother we know? How then can He say, ‘I +43 +have come down from heaven?’” + +44 + +45 + +“Stop grumbling among yourselves,” Jesus re- +plied. +“No one can come to Me unless the Fa- +ther who sent Me draws him, and I will raise him +up at the last day. +It is written in the Prophets: +‘And they will all be taught by God.’ + Everyone +46 +who has heard the Father and learned from Him +comes to Me— +not that anyone has seen the +Father except the One who is from God; only He +47 +has seen the Father. + + a + +48 + +49 + +Truly, truly, I tell you, he who believes has +Your fa- +I am the bread of life. +eternal life. +50 +thers ate the manna in the wilderness, yet they +This is the bread that comes down from +died. +51 +heaven, so that anyone may eat of it and not die. +I am the living bread that came down from +heaven. If anyone eats of this bread, he will live +forever. And this bread, which I will give for the +52 +life of the world, is My flesh.” + +At this, the Jews began to argue among them- +selves, “How can this man give us His flesh to +53 +eat?” + +John 7:3 | 957 + +58 + +so also the one who feeds on Me will live because +This is the bread that came down from +of Me. +heaven. Unlike your fathers, who ate the manna +and died, the one who eats this bread will live +Many Disciples Turn Back +forever.” +(Matt. 8:18–22 ; Luke 9:57–62 ; Luke 14:25–33) + +59 + +60 + +Jesus said this while teaching in the synagogue +On hearing it, many of His dis- +in Capernaum. +ciples said, “This is a difficult teaching. Who can +61 +accept it?” + +62 + +Aware that His disciples were grumbling +about this teaching, Jesus asked them, “Does this +offend you? +Then what will happen if you see +63 +the Son of Man ascend to where He was before? + +64 + +The Spirit gives life; the flesh profits nothing. +The words I have spoken to you are spirit and +they are life. +However, there are some of you +who do not believe.” (For Jesus had known from +the beginning which of them did not believe and +65 +who would betray Him.) + +Then Jesus said, “This is why I told you that no +one can come to Me unless the Father has +66 +granted it to him.” + +From that time on many of His disciples turned + +Peter’s Confession of Faith +back and no longer walked with Him. +(Matt. 16:13–20 ; Mark 8:27–30 ; Luke 9:18–20) + +67 + +So Jesus asked the Twelve, “Do you want to + +68 +leave too?” + +69 + +b + +Simon Peter replied, “Lord, to whom would we +We be- +go? You have the words of eternal life. +lieve and know that You are the Holy One of +70 +God. + +” + +71 + +Jesus answered them, “Have I not chosen you, +He was +the Twelve? Yet one of you is a devil!” +speaking about Judas, the son of Simon Iscariot. +For although Judas was one of the Twelve, he was +Jesus Teaches at the Feast +later to betray Jesus. + +So Jesus said to them, “Truly, truly, I tell you, +unless you eat the flesh and drink the blood of +the Son of Man, you have no life in you. +Who- +ever eats My flesh and drinks My blood has eter- +55 +nal life, and I will raise him up at the last day. +For My flesh is real food, and My blood is real + +54 + +7 + +56 +drink. + +57 + +Whoever eats My flesh and drinks My blood +Just as the living +remains in Me, and I in him. +You are the Christ, the Son of the living God +a 45 +Father sent Me and I live because of the Father, +the Feast of Booths +BYZ and TR + +Isaiah 54:13 + +b 69 + +gathering +pilgrimage to Jerusalem; also translated as + + (see Exodus 23:16 and Exodus 34:22). + +2 + +After this, Jesus traveled throughout Galilee. +He did not want to travel in Judea, because +the Jews there were trying to kill Him. +However, +the Jewish Feast of Tabernacles +So +Jesus’ brothers said to Him, “Leave here and go +to Judea, so that Your disciples there may see the + + was near. + +c 2 + +3 + + c + +the Feast of Shelters + +the Feast of In- +That is, Sukkot, the autumn feast of + + or + + and originally called + + 958 | John 7:4 + +4 + +For no one who wants to +works You are doing. +be known publicly acts in secret. Since You are +5 +doing these things, show Yourself to the world.” +For even His own brothers did not believe in + +6 +Him. + +Therefore Jesus told them, “Although your time +7 +is always at hand, My time has not yet come. +The world cannot hate you, but it hates Me, be- +Go up to + going up to this + +cause I testify that its works are evil. +the feast on your own. I am not +9 +feast, because My time has not yet come.” +10 + +8 + + a + +Having said this, Jesus remained in Galilee. +But after His brothers had gone up to the feast, + +11 +He also went—not publicly, but in secret. + +So the Jews were looking for Him at the feast + +12 +and asking, “Where is He?” + +Many in the crowds were whispering about + +Him. Some said, “He is a good man.” +13 +But others replied, “No, He deceives the people.” + +Yet no one would speak publicly about Him for + +14 +fear of the Jews. + +15 +up to the temple courts + + b +About halfway through the feast, Jesus went + and began to teach. +The Jews were amazed and asked, “How did +this man attain such learning without having +16 +studied?” + +17 + +18 + +“My teaching is not My own,” Jesus replied. “It +comes from Him who sent Me. +If anyone de- +sires to do His will, he will know whether My +teaching is from God or whether I speak on My +own. +He who speaks on his own authority +seeks his own glory, but He who seeks the glory +of the One who sent Him is a man of truth; in Him +there is no falsehood. +Has not Moses given you +the law? Yet not one of you keeps it. Why are you +20 +trying to kill Me?” + +19 + +“You have a demon,” the crowd replied. “Who + +21 +is trying to kill You?” + +22 + +23 + +Jesus answered them, “I did one miracle, and +you are all amazed. +But because Moses gave +you circumcision, you circumcise a boy on the +Sabbath (not that it is from Moses, but from the +patriarchs.) +If a boy can be circumcised on the +Sabbath so that the law of Moses will not be bro- +ken, why are you angry with Me for making the +whole man well on the Sabbath? +Stop judging +I am not yet +a 8 +by outward appearances, and start judging justly.” +among the Greeks +pora + +NE, WH, BYZ, and TR + +the Spirit was not yet + +Literally + +b 14 + +d 39 + +24 + +Is Jesus the Christ? + +25 + +Then some of the people of Jerusalem began to +26 +say, “Isn’t this the man they are trying to kill? +Yet here He is, speaking publicly, and they are +not saying anything to Him. Have the rulers truly +recognized that this is the Christ? +But we know +where this man is from. When the Christ comes, +28 +no one will know where He is from.” + +27 + +Then Jesus, still teaching in the temple courts, +cried out, “You know Me, and you know where I +am from. I have not come of My own accord, but +29 +He who sent Me is true. You do not know Him, +but I know Him, because I am from Him and He + +30 +sent Me.” + +So they tried to seize Him, but no one laid a +31 +hand on Him, because His hour had not yet come. +Many in the crowd, however, believed in Him +and said, “When the Christ comes, will He per- +32 +form more signs than this man?” + +33 + +When the Pharisees heard the crowd whisper- +ing these things about Jesus, they and the chief +priests sent officers to arrest Him. +So Jesus +34 +said, “I am with you only a little while longer, and +then I am going to the One who sent Me. +You +will look for Me, but you will not find Me; and +35 +where I am, you cannot come.” + +c + +36 + +At this, the Jews said to one another, “Where +does He intend to go that we will not find Him? +Will He go where the Jews are dispersed among +the Greeks, +What does + and teach the Greeks? +He mean by saying, ‘You will look for Me, but you +will not find Me,’ and, ‘Where I am, you cannot +Living Water +come’?” +37 + +39 + +38 + +On the last and greatest day of the feast, Jesus +stood up and called out in a loud voice, “If anyone +is thirsty, let him come to Me and drink. +Who- +ever believes in Me, as the Scripture has said: +‘Streams of living water will flow from within +him.’ +He was speaking about the Spirit, whom +those who believed in Him were later to receive. +For the Spirit had not yet been given, + because +Division over Jesus +Jesus had not yet been glorified. +40 + +” + +d + +On hearing these words, some of the people + +41 +said, “This is truly the Prophet.” + +; the Jewish people living outside the land of Israel since the Babylonian exile were referred to as + +. + +Literally + +; BYZ and TR + +the temple + +Others declared, “This is the Christ.” + +Will He go to the Diaspora +the Dias- + +c 35 + +the Holy Spirit was not yet + +; also in verse 28 + +Literally + + 42 + +9 + +d + +John 8:24 | 959 + +But still others asked, “How can the Christ come +Doesn’t the Scripture say that the +from Galilee? +Christ will come from the line of David and from +43 +Bethlehem, the village where David lived? + +” + + a + +44 + +So there was division in the crowd because of +Some of them wanted to seize Him, but + +Jesus. +The Unbelief of the Jewish Leaders +no one laid a hand on Him. +45 + +Then the officers returned to the chief priests +and Pharisees, who asked them, “Why didn’t you +46 +bring Him in?” + +“Never has anyone spoken like this man!” the + +47 +officers answered. + +48 + +49 + +“Have you also been deceived?” replied the +“Have any of the rulers or Pharisees +But this crowd that does not + +Pharisees. +believed in Him? +50 +know the law—they are under a curse.” + +51 + +Nicodemus, who had gone to Jesus earlier and +who himself was one of them, asked, +“Does our +law convict a man without first hearing from him +52 +to determine what he has done?” + + b + +“Aren’t you also from Galilee?” they replied. +“Look into it, and you will see that no prophet +53 +comes out of Galilee.” +The Woman Caught in Adultery + +Then each went to his own home. + +8 + +2 +But Jesus went to the Mount of Olives. + +c + +4 + +Early in the morning He went back into the +3 +temple courts. + All the people came to Him, and +He sat down to teach them. +The scribes and +Pharisees, however, brought to Him a woman +caught in adultery. They made her stand before +and said, “Teacher, this woman was +them +In the Law Moses +caught in the act of adultery. +commanded us to stone such a woman. So what +6 +do You say?” + +5 + +10 + +When they heard this, + +they began to go away +one by one, beginning with the older ones, until + e +only Jesus was left, with the woman standing + and asked +there. +her, “Woman, where are your accusers? + Has no +11 +one condemned you?” + +Then Jesus straightened up + + f + +“No one, Lord,” she answered. + +“Then neither do I condemn you,” Jesus declared. +Jesus the Light of the World (1 John 1:5–10) +“Now go and sin no more.” +12 + +Once again, Jesus spoke to the people and said, +“I am the light of the world. Whoever follows Me +will never walk in the darkness, but will have the +13 +light of life.” + +So the Pharisees said to Him, “You are testify- +14 +ing about Yourself; Your testimony is not valid.” + +Jesus replied, “Even if I testify about Myself, My +testimony is valid, because I know where I came +from and where I am going. But you do not know +You +where I came from or where I am going. +But +judge according to the flesh; I judge no one. +g +even if I do judge, My judgment is true, because I +17 +am not alone; I am with the Father who sent Me. + +15 +16 + +h + +18 + +Even in your own Law it is written that the +testimony of two men is valid. +I am One who +testifies about Myself, and the Father, who sent +19 +Me, also testifies about Me.” + +“Where is Your Father?” they asked Him. + +“You do not know Me or My Father,” Jesus +answered. “If you knew Me, you would know My +20 +Father as well.” + +He spoke these words while teaching in the +temple courts, near the treasury. Yet no one +21 +seized Him, because His hour had not yet come. + +Again He said to them, “I am going away, and +you will look for Me, but you will die in your sin. +22 +Where I am going, you cannot come.” + +They said this to test Him, in order to have a +basis for accusing Him. But Jesus bent down and +7 +began to write on the ground with His finger. + +So the Jews began to ask, “Will He kill Himself, +since He says, ‘Where I am going, you cannot +23 +come’?” + +When they continued to question Him, He +straightened up and said to them, “Let him who +is without sin among you be the first to cast a +And again He bent down and +stone at her.” +b 52 +a 42 +wrote on the ground. + +8 + +24 + +Then He told them, “You are from below; I am +from above. You are of this world; I am not of this +world. +That is why I told you that you would +die in your sins. For unless you believe that I am +c 2 +He, you will die in your sins.” + +the temple + +Some early manuscripts do not include John 7:53 through John 8:11. + +and were convicted by their conscience, +g 16 +where are they + +e 10 + +and +; + +d 9 +See Micah 5:2. +saw no one but the woman +also in verse 20 +but (it is) I and the One who sent Me + +f 10 + +NE, BYZ, and TR include +h 17 +WH and NA + +. + +Literally +but (it is) I and the Father who sent Me +NE, BYZ, and TR include + +Literally + +; NE + +See Deuteronomy 19:15. + + 960 | John 8:25 + +25 + +“Who are You?” they asked. + +26 + +“Just what I have been telling you from the begin- +ning,” Jesus replied. +“I have much to say about +you and much to judge. But the One who sent Me +is truthful, and what I have heard from Him, I tell +27 +the world.” + +28 +They did not understand that He was telling +them about the Father. +So Jesus said, “When +you have lifted up the Son of Man, then you will +know that I am He, and that I do nothing on My +own, but speak exactly what the Father has +taught Me. +He who sent Me is with Me. He has +not left Me alone, because I always do what +The Truth Will Set You Free (2 John 1:4–6) +pleases Him.” +30 + +29 + +31 + +32 + +As Jesus spoke these things, many believed in +Him. +So He said to the Jews who had believed +Him, “If you continue in My word, you are truly +My disciples. +Then you will know the truth, +33 +and the truth will set you free.” + +“We are Abraham’s descendants,” they an- +swered. “We have never been slaves to anyone. +34 +How can You say we will be set free?” + +35 + +36 + +Jesus replied, “Truly, truly, I tell you, everyone +who sins is a slave to sin. +A slave does not +remain in the house forever, but a son remains +forever. +So if the Son sets you free, you will be +37 +free indeed. + +38 + +I know you are Abraham’s descendants, but +you are trying to kill Me because My word has no +place within you. +I speak of what I have seen in +the presence of the Father, and you do what you +39 +have heard from your father.” + +“Abraham is our father,” they replied. +40 + +“If you were children of Abraham,” said Jesus, +“you would do the works of Abraham. +But now +you are trying to kill Me, a man who has told you +41 +the truth that I heard from God. Abraham never +did such a thing. +You are doing the works of +your father.” + +“We are not illegitimate children,” they declared. +42 +“Our only Father is God Himself.” + +Jesus said to them, “If God were your Father, +you would love Me, for I have come here from +43 +God. I have not come on My own, but He sent Me. + +Why do you not understand what I am saying? +a 54 +It is because you are unable to accept My +and so He passed by +WH and TR + +before Abraham was, I am! + +Literally + +Your + +b 58 + +. + +44 + +message. +You belong to your father, the devil, +and you want to carry out his desires. He was a +murderer from the beginning, refusing to uphold +the truth, because there is no truth in him. When +he lies, he speaks his native language, because he +But because I +is a liar and the father of lies. +46 +speak the truth, you do not believe Me! + +45 + +Which of you can prove Me guilty of sin? If I +47 +speak the truth, why do you not believe Me? +Whoever belongs to God hears the words of +God. The reason you do not hear is that you do +Before Abraham Was Born, I Am +not belong to God.” +48 + +The Jews answered Him, “Are we not right to +say that You are a Samaritan and You have a de- +49 +mon?” + +50 + +“I do not have a demon,” Jesus replied, “but I +I do +honor My Father, and you dishonor Me. +51 +not seek My own glory. There is One who seeks +Truly, truly, I tell you, if +it, and He is the Judge. +52 +anyone keeps My word, he will never see death.” + +“Now we know that You have a demon!” de- +clared the Jews. “Abraham died, and so did the +prophets, yet You say that anyone who keeps +Are You +Your word will never taste death. +greater than our father Abraham? He died, as did +54 +the prophets. Who do You claim to be?” + +53 + + a + +55 + +Jesus answered, “If I glorify Myself, My glory +means nothing. The One who glorifies Me is My +You +Father, of whom you say, ‘He is our +do not know Him, but I know Him. If I said I did +not know Him, I would be a liar like you. But I do +Your father +know Him, and I keep His word. +Abraham rejoiced that he would see My day. He +57 +saw it and was glad.” + + God.’ + +56 + +Then the Jews said to Him, “You are not yet + +58 +fifty years old, and You have seen Abraham?” + + b +“Truly, truly, I tell you,” Jesus declared, “before + +59 +Abraham was born, I am! + +” + +c + +At this, they picked up stones to throw at Him. +But Jesus was hidden and went out of the temple +Jesus Heals the Man Born Blind +area. + +9 + +2 + +Now as Jesus was passing by, He saw a man +and His disciples asked +blind from birth, +Him, “Rabbi, who sinned, this man or his parents, +going through the midst of them, +that he was born blind?” + +c 59 + +BYZ and TR include + + 3 + + a + +4 + +Jesus answered, “Neither this man nor his par- +ents sinned, but this happened so that the works +of God would be displayed in him. +While it is +daytime, we must do + the works of Him who sent +5 +Me. Night is coming, when no one can work. +While I am in the world, I am the light of the + +6 +world.” + +When Jesus had said this, He spit on the ground, +7 +made some mud, and applied it to the man’s eyes. +Then He told him, “Go, wash in the Pool of +Siloam” (which means “Sent”). So the man went +8 +and washed, and came back seeing. + +At this, his neighbors and those who had for- +merly seen him begging began to ask, “Isn’t this +9 +the man who used to sit and beg?” + +Some claimed that he was, but others said, “No, + +he just looks like him.” +10 +But the man kept saying, “I am the one.” + +“How then were your eyes opened?” they + +11 +asked. + +He answered, “The man they call Jesus made +some mud and anointed my eyes, and He told me +to go to Siloam and wash. So I went and washed +12 +and received my sight.” + +“Where is He?” they asked. + +The Pharisees Investigate the Healing +“I do not know,” he answered. +13 + +14 + +15 + +They brought to the Pharisees the man who +had been blind. +Now the day on which Jesus +had made the mud and opened his eyes was a +Sabbath. +So the Pharisees also asked him how +he had received his sight. + +The man answered, “He put mud on my eyes, and +16 +I washed, and now I can see.” + +Because of this, some of the Pharisees said, +“This man is not from God, for He does not keep +the Sabbath.” + +But others said, “How can a sinful man perform +such signs?” + +17 + +And there was division among them. +So once +again they asked the man who had been blind, +“What do you say about Him, since it was your +eyes He opened?” +18 +“He is a prophet,” the man replied. + +The Jews still did not believe that the man had +19 +been blind and had received his sight until they +b 35 +a 4 +summoned his parents +and asked, “Is this your +BYZ and TR + +the Son of God + +BYZ and TR + +I must do + +John 9:38 | 961 + +son, the one you say was born blind? So how is it +20 +that he can now see?” + +21 + +His parents answered, “We know he is our son, +But how he +and we know he was born blind. +can now see or who opened his eyes, we do not +know. Ask him. He is old enough to speak for +22 +himself.” + +His parents said this because they were afraid +of the Jews. For the Jews had already determined +that anyone who confessed Jesus as the Christ +That was +would be put out of the synagogue. +24 +why his parents said, “He is old enough. Ask him.” + +23 + +So a second time they called for the man who +had been blind and said, “Give glory to God! We +25 +know that this man is a sinner.” + +He answered, “Whether He is a sinner I do not +know. There is one thing I do know: I was blind, +26 +but now I see!” + +“What did He do to you?” they asked. “How did + +27 +He open your eyes?” + +He replied, “I already told you, and you did not +listen. Why do you want to hear it again? Do you +28 +also want to become His disciples?” + +Then they heaped insults on him and said, +29 +“You are His disciple; we are disciples of Moses. +We know that God spoke to Moses, but we do + +30 +not know where this man is from.” + +31 + +“That is remarkable indeed!” the man said. +“You do not know where He is from, and yet He +opened my eyes. +We know that God does not +listen to sinners, but He does listen to the one +who worships Him and does His will. +Never +before has anyone heard of opening the eyes of a +man born blind. +If this man were not from God, +34 +He could do no such thing.” + +33 + +32 + +They replied, “You were born in utter sin, and +Spiritual Blindness +you are instructing us?” And they threw him out. +35 + +When Jesus heard that they had thrown him +out, He found the man and said, “Do you believe +36 +in the Son of Man + +?” + + b + +“Who is He, Sir?” he replied. “Tell me so that I + +37 +may believe in Him.” + +“You have already seen Him,” Jesus answered. + +38 +“He is the One speaking with you.” + +“Lord, I believe,” he said. And he worshiped + +Jesus. + + 962 | John 9:39 + +39 + +Then Jesus declared, “For judgment I have +come into this world, so that the blind may see +40 +and those who see may become blind.” + + a + +Some of the Pharisees who were with Him +heard this, and they asked Him, “Are we blind +41 +too?” + +“If you were blind,” Jesus replied, “you would +not be guilty of sin. But since you claim you can +Jesus the Good Shepherd +see, your guilt remains.” +(Psalm 23:1–6 ; Ezekiel 34:11–24) + +10 + +“Truly, truly, I tell you, whoever does not +enter the sheepfold by the gate, but +2 +climbs in some other way, is a thief and a robber. +But the one who enters by the gate is the shep- +herd of the sheep. +The gatekeeper opens the +gate for him, and the sheep listen for his voice. He +4 +calls his own sheep by name and leads them out. + +3 + +5 + +When he has brought out all his own, he goes on +ahead of them, and his sheep follow him because +But they will never follow +they know his voice. +a stranger; in fact, they will flee from him be- +6 +cause they do not recognize his voice.” + + b + +8 + +7 + +Jesus spoke to them using this illustration, but +they did not understand what He was telling +So He said to them again, “Truly, truly, I +them. +tell you, I am the gate for the sheep. +All who +9 +came before Me + were thieves and robbers, but +I am the gate. +the sheep did not listen to them. +If anyone enters through Me, he will be saved. He +will come in and go out and find pasture. +The +thief comes only to steal and kill and destroy. I +have come that they may have life, and have it in +11 +all its fullness. + +10 + +12 + +I am the good shepherd. The good shepherd +The hired +lays down His life for the sheep. +hand is not the shepherd, and the sheep are not +his own. When he sees the wolf coming, he aban- +dons the sheep and runs away. Then the wolf +The +pounces on them and scatters the flock. +man runs away because he is a hired servant and +14 +is unconcerned for the sheep. + +13 + +15 + +will listen to My voice. Then there will be one +17 +flock and one shepherd. + +18 + +The reason the Father loves Me is that I lay +No +down My life in order to take it up again. +one takes it from Me, but I lay it down of My own +accord. I have authority to lay it down and +authority to take it up again. This charge I have +19 +received from My Father.” + +20 + +Again there was division among the Jews be- +cause of Jesus’ message. +Many of them said, +“He is demon-possessed and insane. Why would +21 +you listen to Him?” + +But others replied, “These are not the words of +a man possessed by a demon. Can a demon open +Jesus at the Feast of Dedication +the eyes of the blind?” + +22 + + c + +23 + +24 + +At that time the Feast of Dedication + + took place + d +and Jesus was +in Jerusalem. It was winter, + in Solomon’s Col- +walking in the temple courts +So the Jews gathered around Him and +onnade. +demanded, “How long will You keep us in sus- +25 +pense? If You are the Christ, tell us plainly.” + +26 + +27 + +“I already told you,” Jesus replied, “but you did +not believe. The works I do in My Father’s name +But because you are not +testify on My behalf. +My sheep lis- +My sheep, you refuse to believe. +28 +ten to My voice; I know them, and they follow Me. +I give them eternal life, and they will never +29 +perish. No one can snatch them out of My hand. +My Father who has given them to Me is greater +than all. No one can snatch them out of My Fa- +31 +ther’s hand. + +I and the Father are one.” +32 + +30 + +At this, the Jews again picked up stones +to stone Him. +But Jesus responded, “I have +shown you many good works from the Father. +33 +For which of these do you stone Me?” + +35 + +“We are not stoning You for any good work,” +said the Jews, “but for blasphemy, because You, +34 +who are a man, make Yourself out to be God.” + + e +Jesus replied, “Is it not written in your Law: ‘I +If he called them +have said you are gods’ +36 +gods to whom the word of God came—and the +then what about +Scripture cannot be broken— +the One whom the Father sanctified and sent into +the world? How then can you accuse Me of blas- +38 “Lord, +phemy for stating that I am the Son of God? + +? + +16 + +I am the good shepherd. I know My sheep and +My sheep know Me, +just as the Father knows +Me and I know the Father. And I lay down My life +I have other sheep that are not +for the sheep. +a 39 +of this fold. I must bring them in as well, and they +All who came +I believe.”. . .  39 Then Jesus declared +d 23 + +Literally + +b 8 + +c 22 + +so that those not seeing may see and those seeing may become blind. + +BYZ +bean Revolt and rededication of the temple + +. + +That is, Hanukkah, the historic celebration of the Macca- + +Literally + +Psalm 82:6 + +the temple + +e 34 + + Some manuscripts do not include + + 37 + +38 + +If I am not doing the works of My Father, then +do not believe Me. +But if I am doing them, even +though you do not believe Me, believe the works +themselves, so that you may know and under- +stand that the Father is in Me, and I am in the +39 +Father.” + +At this, they tried again to seize Him, but He es- + +John’s Testimony Confirmed +caped their grasp. +40 + +41 + +Then Jesus went back across the Jordan to the +place where John had first been baptizing, and +He stayed there. +Many came to Him and said, +“Although John never performed a sign, every- +thing he said about this man was true.” +And +The Death of Lazarus +many in that place believed in Jesus. + +42 + +11 + +2 + +At this time a man named Lazarus was +sick. He lived in Bethany, the village of +Mary and her sister Martha. +(Mary, whose +brother Lazarus was sick, was to anoint the Lord +3 +with perfume and wipe His feet + with her hair.) +So the sisters sent word to Jesus, “Lord, the one + + a + +4 +You love is sick.” + +When Jesus heard this, He said, “This sickness +will not end in death. No, it is for the glory of God, +so that the Son of God may be glorified through +5 +it.” + +6 + +Now Jesus loved Martha and her sister and Laz- +So on hearing that Lazarus was sick, He +and then He + +arus. +stayed where He was for two days, +8 +said to the disciples, “Let us go back to Judea.” + +7 + +“Rabbi,” they replied, “the Jews just tried to + +9 +stone You, and You are going back there?” + +10 + +Jesus answered, “Are there not twelve hours of +daylight? If anyone walks in the daytime, he will +not stumble, because he sees by the light of this +world. +But if anyone walks at night, he will +11 +stumble, because he has no light.” + +After He had said this, He told them, “Our +friend Lazarus has fallen asleep, but I am going +12 +there to wake him up.” + +13 + +His disciples replied, “Lord, if he is sleeping, he +will get better.” +They thought that Jesus was +talking about actual sleep, but He was speaking +14 +about the death of Lazarus. +15 + +So Jesus told them plainly, “Lazarus is dead, +and for your sake I am glad I was not there, so + +a 2 +that you may believe. But let us go to him.” +Literally +indignant in spirit +. +means + +about fifteen stadia + +the twin + +Greek + +c 18 + +; similarly in verse 38 + +John 11:34 | 963 + +16 + + b + +Then Thomas called Didymus + + said to his fel- +low disciples, “Let us also go, so that we may die +Jesus Comforts Martha and Mary +with Him.” +17 + +18 + + c + +19 + + away, + +When Jesus arrived, He found that Lazarus had +Now Beth- +already spent four days in the tomb. +any was near Jerusalem, a little less than two +and many of the Jews had come +miles +20 +to Martha and Mary to console them in the loss +So when Martha heard that Je- +of their brother. +sus was coming, she went out to meet Him, but +21 +Mary stayed at home. + +22 + +Martha said to Jesus, “Lord, if You had been +But +here, my brother would not have died. +even now I know that God will give You whatever +23 +You ask of Him.” +24 + +“Your brother will rise again,” Jesus told her. + +Martha replied, “I know that he will rise again + +25 +in the resurrection at the last day.” + +26 + +Jesus said to her, “I am the resurrection and +the life. Whoever believes in Me will live, even +And everyone who lives and +though he dies. +believes in Me will never die. Do you believe +27 +this?” + +“Yes, Lord,” she answered, “I believe that You +are the Christ, the Son of God, who was to come +28 +into the world.” + +After Martha had said this, she went back and +called her sister Mary aside to tell her, “The +Teacher is here and is asking for you.” +And +when Mary heard this, she got up quickly and +30 +went to Him. + +29 + +Now Jesus had not yet entered the village, but +31 +was still at the place where Martha had met Him. +When the Jews who were in the house consol- +ing Mary saw how quickly she got up and went +out, they followed her, supposing she was going +When Mary came +to the tomb to mourn there. +to Jesus and saw Him, she fell at His feet and said, +“Lord, if You had been here, my brother would +33 +not have died.” + +32 + + d + +When Jesus saw her weeping, and the Jews +who had come with her also weeping, He was +“Where +deeply moved in spirit +have you put him?” He asked. + + and troubled. + +34 + +“Come and see, Lord,” they answered. + +d 33 +; see John 12:3. + +b 16 Didymus +He was + +was the one having anointed the Lord with fragrant oil and having wiped His feet + +; that is, approximately 1.72 miles or 2.78 kilometers + +Or + + 964 | John 11:35 + +35 + +36 + +Jesus wept. + +37 + +Then the Jews said, “See how He loved him!” + +But some of them asked, “Could not this man +who opened the eyes of the blind also have kept +Jesus Raises Lazarus +Lazarus from dying?” +(Acts 9:36–43) + +38 + +the nation, but also for the scattered children of +53 +God, to gather them together into one. +54 + +So from that day on they plotted to kill Him. +As a result, Jesus no longer went about publicly +among the Jews, but He withdrew to a town +called Ephraim in an area near the wilderness. +55 +And He stayed there with the disciples. + +39 + +Jesus, once again deeply moved, came to the +tomb. It was a cave with a stone laid across the +entrance. + +“Take away the stone,” Jesus said. + +“Lord, by now he stinks,” said Martha, the sister +40 +of the dead man. “It has already been four days.” + +Jesus replied, “Did I not tell you that if you be- + +41 +lieved, you would see the glory of God?” + +42 + +So they took away the stone. Then Jesus lifted +His eyes upward and said, “Father, I thank You +that You have heard Me. +I knew that You al- +ways hear Me, but I say this for the benefit of the +people standing here, so they may believe that +43 +You sent Me.” + +After Jesus had said this, He called out in a loud + +44 +voice, “Lazarus, come out!” + +The man who had been dead came out with his +a +hands and feet bound in strips of linen, and his +face wrapped in a cloth. +The Plot to Kill Jesus +“Unwrap him and let him go,” Jesus told them. +(Matthew 26:1–5 ; Mark 14:1–2 ; Luke 22:1–2) + +45 + +46 + +Therefore many of the Jews who had come to +Mary, and had seen what Jesus did, believed in +Him. +But some of them went to the Pharisees +47 +and told them what Jesus had done. + + b + +48 + +Then the chief priests and Pharisees convened +the Sanhedrin + and said, “What are we to do? +This man is performing many signs. +If we let +Him go on like this, everyone will believe in Him, +and then the Romans will come and take away +49 +both our place and our nation.” + +50 + +But one of them, named Caiaphas, who was +high priest that year, said to them, “You know +nothing at all! +You do not realize that it is bet- +ter for you that one man die for the people than +51 +that the whole nation perish.” + +c + +56 + +Now the Jewish Passover was near, and many +people went up from the country to Jerusalem to +They +purify themselves before the Passover. +kept looking for Jesus and asking one another as + “What do you +they stood in the temple courts, +think? Will He come to the feast at all?” +But the +chief priests and Pharisees had given orders that +anyone who knew where He was must report it, +Mary Anoints Jesus +so that they could arrest Him. +(Matthew 26:6–13 ; Mark 14:3–9 ; Luke 7:36–50) + +57 + +12 + +3 + +2 + +Six days before the Passover, Jesus came +to Bethany, the hometown of Lazarus, +So they +whom He had raised from the dead. +hosted a dinner for Jesus there. Martha served, + d +and Lazarus was among those reclining at the ta- + of +ble with Him. +expensive perfume, made of pure nard, and she +anointed Jesus’ feet and wiped them with her +hair. And the house was filled with the fragrance +4 +of the perfume. + +Then Mary took about a pint + +5 + +6 + +But one of His disciples, Judas Iscariot, who was + e +“Why wasn’t this +going to betray Him, asked, + and the +perfume sold for three hundred denarii +money given to the poor?” +Judas did not say this +because he cared about the poor, but because he +was a thief. As keeper of the money bag, he used +7 +to take from what was put into it. + +8 + +“Leave her alone,” Jesus replied. “She has kept +f +this perfume in preparation for the day of My +The poor you will always have with you, +burial. +The Plot to Kill Lazarus +but you will not always have Me.” +9 + +10 + +Meanwhile a large crowd of Jews learned that +Jesus was there. And they came not only because +of Him, but also to see Lazarus, whom He had +So the chief priests made +raised from the dead. +for on account of +plans to kill Lazarus as well, +him many of the Jews were deserting them and +a litra +believing in Jesus. + +d 3 + +11 + +f 8 + +Caiaphas did not say this on his own. Instead, +as high priest that year, he was prophesying that +a 44 +Jesus would die for the nation, +and not only for + +the Council + +b 47 + +c 56 + +52 + +soudariō +e 5 + +the temple + +Greek +340 grams + +Or + +Literally + +Greek + +A denarius was customarily a day’s wage for a laborer; see Matthew 20:2. + +; that is, approximately 12 ounces or +See Deuteronomy 15:11. + + The Triumphal Entry (Zechariah 9:9–13 ; +Matt. 21:1–11 ; Mark 11:1–11 ; Luke 19:28–40) + +12 + +13 + +The next day the great crowd that had come to +the feast heard that Jesus was coming to Jerusa- +They took palm branches and went out to +lem. +meet Him, shouting: + + a + +“Hosanna!” + + b + +“Blessed is He who comes in the name of the + +Lord!” + +14 + +“Blessed is the King of Israel!” + +Finding a young donkey, Jesus sat on it, as it is + +15 +written: + +“Do not be afraid, O Daughter of Zion. + + c + +16 + +See, your King is coming, +seated on the colt of a donkey.” + +At first His disciples did not understand these +things, but after Jesus was glorified they remem- +bered what had been done to Him, and they real- +ized that these very things had also been written +17 +about Him. + +Meanwhile, many people who had been with +Jesus when He called Lazarus from the tomb and +18 +raised him from the dead continued to testify. +That is also why the crowd went out to meet +Him, because they heard that He had performed +19 +this sign. + +Then the Pharisees said to one another, “You +can see that this is doing you no good. Look how +Jesus Predicts His Death +the whole world has gone after Him!” +20 + +21 + +22 + +Now there were some Greeks among those +They +who went up to worship at the feast. +came to Philip, who was from Bethsaida in Gali- +lee, and requested of him, “Sir, we want to see Je- +sus.” +Philip relayed this appeal to Andrew, and +23 +both of them went and told Jesus. + +24 + +25 + +But Jesus replied, “The hour has come for the +Truly, truly, I tell +Son of Man to be glorified. +you, unless a kernel of wheat falls to the ground +and dies, it remains only a seed. But if it dies, it +bears much fruit. +Whoever loves his life will +lose it, but whoever hates his life in this world +If anyone serves Me, +will keep it for eternal life. +he must follow Me; and where I am, My servant +will be as well. If anyone serves Me, the Father +a 13 Hosanna +will honor him. + +26 + +Hosia-na +c 15 + +b 13 + is a transliteration of the Hebrew + +John 12:40 | 965 + +27 + +Now My soul is troubled, and what shall I say? +‘Father, save Me from this hour’? No, it is for this +Father, +purpose that I have come to this hour. +glorify Your name!” + +28 + +Then a voice came from heaven: “I have glorified +29 +it, and I will glorify it again.” + +The crowd standing there heard it and said +that it had thundered. Others said that an angel +30 +had spoken to Him. + +31 + +In response, Jesus said, “This voice was not for +Now judgment is upon +My benefit, but yours. +32 +this world; now the prince of this world will be +And I, when I am lifted up from the +cast out. +He said +earth, will draw everyone to Myself.” +this to indicate the kind of death He was going to +34 +die. + +33 + +The crowd replied, “We have heard from the +Law that the Christ will remain forever. So how +can You say that the Son of Man must be lifted +35 +up? Who is this Son of Man?” + +Then Jesus told them, “For a little while longer, +the Light will be among you. Walk while you have +the Light, so that darkness will not overtake you. +The one who walks in the darkness does not +While you have the +know where he is going. +Light, believe in the Light, so that you may be- +come sons of light.” + +36 + +After Jesus had spoken these things, He went +Belief and Unbelief +away and was hidden from them. +37 + +38 + +Although Jesus had performed so many signs +in their presence, they still did not believe in +This was to fulfill the word of Isaiah the +Him. +prophet: + +“Lord, who has believed our message? + + d + +39 + +And to whom has the arm of the Lord + +been revealed?” + +For this reason they were unable to believe. + +40 +For again, Isaiah says: + +“He has blinded their eyes + +and hardened their hearts, + +so that they cannot see with their eyes, +and understand with their hearts, + + e + +and turn, + +and I would heal them.” + +Save, we pray +d 38 + +Save now + +e 40 + +praise; see Psalm 118:25. + +Psalm 118:26 + +Zechariah 9:9 + +Isaiah 53:1 + +Isaiah 6:10 + +, meaning + + or + +, which became a shout of + + 966 | John 12:41 + +41 + +42 + +9 + +Isaiah said these things because he saw Jesus’ +glory and spoke about Him. +Nevertheless, +many of the leaders believed in Him. But because +of the Pharisees they did not confess Him, for +43 +fear that they would be put out of the synagogue. +For they loved praise from men more than + +44 +praise from God. + +“Then, Lord,” Simon Peter replied, “not only my + +10 +feet, but my hands and my head as well!” + +11 + +Jesus told him, “Whoever has already bathed +needs only to wash his feet, and he will be com- +pletely clean. And you are clean, though not all of +For He knew who would betray Him. +you.” +12 +That is why He said, “Not all of you are clean.” + +46 + +45 + +Then Jesus cried out, “Whoever believes in Me +does not believe in Me alone, but in the One who +sent Me. +And whoever sees Me sees the One +who sent Me. +I have come into the world as a +light, so that no one who believes in Me should +47 +remain in darkness. + +As for anyone who hears My words and does +not keep them, I do not judge him. For I have not +48 +come to judge the world, but to save the world. +There is a judge for the one who rejects Me and +does not receive My words: The word that I have +49 +spoken will judge him on the last day. + +50 + +I have not spoken on My own, but the Father +who sent Me has commanded Me what to say and +And I know that His command +how to say it. +leads to eternal life. So I speak exactly what the +Jesus Washes His Disciples’ Feet +Father has told Me to say.” + +13 + +It was now just before the Passover +Feast, and Jesus knew that His hour +had come to leave this world and return to the +Father. Having loved His own who were in the +The +world, He loved them to the very end. +evening meal was underway, and the devil had +already put into the heart of Judas, the son of Si- +3 +mon Iscariot, to betray Jesus. + +2 + +a + +4 + +Jesus knew that the Father had delivered all +things into His hands, and that He had come from +God and was returning to God. +So He got up +5 +from the supper, laid aside His outer garments, +and wrapped a towel around His waist. +After +that, He poured water into a basin and began to +wash the disciples’ feet and dry them with the +6 +towel that was around Him. + +He came to Simon Peter, who asked Him, “Lord, + +7 +are You going to wash my feet?” + +Jesus replied, “You do not realize now what I am + +8 +doing, but later you will understand.” + +“Never shall You wash my feet!” Peter told Him. + +Jesus answered, “Unless I wash you, you have no +a 1 +part with Me.” +in the bosom of Jesus + +He showed them the full extent of His love. + +b 16 + +13 + +14 + +When Jesus had washed their feet and put on +His outer garments, He reclined with them again +and asked, “Do you know what I have done for +You call Me Teacher and Lord, and rightly +you? +So if I, your Lord and Teacher, +so, because I am. +15 +have washed your feet, you also should wash one +I have set you an example so +another’s feet. +16 +that you should do as I have done for you. +Truly, truly, I tell you, no servant is greater + nor is a messenger greater than +If you know these + +than his master, +the one who sent him. +Jesus Predicts His Betrayal (Psalm 41:1–13) +things, you will be blessed if you do them. +18 + +17 + +b + + c + +19 + +I am not speaking about all of you; I know +whom I have chosen. But this is to fulfill the +Scripture: ‘The one who shares My bread has +I am telling you +lifted up his heel against Me.’ +now before it happens, so that when it comes to +Truly, truly, +pass, you will believe that I am He. +I tell you, whoever receives the one I send re- +ceives Me, and whoever receives Me receives the +21 +One who sent Me.” + +20 + +After Jesus had said this, He became troubled +in spirit and testified, “Truly, truly, I tell you, one +22 +of you will betray Me.” + +23 + +d + +24 + +The disciples looked at one another, perplexed +as to which of them He meant. +One of His dis- +ciples, the one whom Jesus loved, was reclining +at His side. +So Simon Peter motioned to him +25 +to ask Jesus which one He was talking about. +Leaning back against Jesus, he asked, “Lord, + +26 +who is it?” + +27 + +Jesus answered, “It is the one to whom I give +this morsel after I have dipped it.” Then He +dipped the morsel and gave it to Judas son of Si- +And when Judas had taken the +mon Iscariot. +morsel, Satan entered into him. + +28 + +Then Jesus said to Judas, “What you are about to +do, do quickly.” +But no one at the table knew +Since Judas +why Jesus had said this to him. +kept the money bag, some thought that Jesus was + +was reclining + +d 23 + +c 18 + +29 + +Or + +Cited in John 15:20 + +Psalm 41:9 + +Greek + + John 14:24 | 967 + +30 + +telling him to buy what was needed for the feast, +As soon as he +or to give something to the poor. +had received the morsel, Judas went out into the +Love One Another +night. +(Romans 12:9–13 ; 1 John 3:11–24) + +know My Father as well. From now on you do +8 +know Him and have seen Him.” + +Philip said to Him, “Lord, show us the Father, + +9 +and that will be enough for us.” + +31 + +32 + +When Judas had gone out, Jesus said, “Now the +Son of Man is glorified, and God is glorified in +Him. + God will also +glorify the Son in Himself—and will glorify Him +33 +at once. + +If God is glorified in Him, + +a + +Little children, I am with you only a little while +longer. You will look for Me, and as I said to the +Jews, so now I say to you: ‘Where I am going, you +34 +cannot come.’ + +35 + +A new commandment I give you: Love one an- +other. As I have loved you, so you also must love +one another. +By this everyone will know that +Jesus Predicts Peter’s Denial +you are My disciples, if you love one another.” +(Matt. 26:31–35 ; Mark 14:27–31 ; Luke 22:31–38) + +36 + +“Lord, where are You going?” Simon Peter + +asked. + +Jesus answered, “Where I am going, you cannot +37 +follow Me now, but you will follow later.” + +“Lord,” said Peter, “why can’t I follow You + +38 +now? I will lay down my life for You.” + +“Will you lay down your life for Me?” Jesus re- +plied. “Truly, truly, I tell you, before the rooster +In My Father’s House Are Many Rooms +crows, you will deny Me three times. + +14 + + b + +2 + +3 + + believe in Me as well. + +“Do not let your hearts be troubled. You +In +believe in God; +My Father’s house are many rooms. If it were not + c +so, would I have told you that I am going there to +And if I go and pre- +prepare a place for you? +pare a place for you, I will come back and wel- +come you into My presence, so that you also may +d +You know the way to the place +be where I am. +The Way, the Truth, and the Life +where I am going. +5 + +” + +4 + +10 + +Jesus replied, “Philip, I have been with you all +this time, and still you do not know Me? Anyone +who has seen Me has seen the Father. How can +Do you not +you say, ‘Show us the Father’? +believe that I am in the Father and the Father is +in Me? The words I say to you, I do not speak on +11 +My own. Instead, it is the Father dwelling in Me, +Believe Me that I am in +performing His works. +the Father and the Father is in Me—or at least +12 +believe on account of the works themselves. + +13 + +Truly, truly, I tell you, whoever believes in Me +will also do the works that I am doing. He will do +even greater things than these, because I am go- +And I will do whatever you +ing to the Father. +14 +ask in My name, so that the Father may be glori- +fied in the Son. + for anything in +If you ask Me +Jesus Promises the Holy Spirit (John 16:5–16) +My name, I will do it. +15 + + e + + f + +16 + +If you love Me, you will keep + + My command- + g +And I will ask the Father, and He will +ments. +17 + to be with you +give you another Advocate +the Spirit of truth. The world cannot +forever— +receive Him, because it neither sees Him nor +knows Him. But you do know Him, for He abides +18 +with you and will be in you. + +h + +19 + +20 + +I will not leave you as orphans; I will come to +In a little while the world will see Me no +you. +more, but you will see Me. Because I live, you also +will live. +On that day you will know that I am in +21 +My Father, and you are in Me, and I am in you. +Whoever has My commandments and keeps +them is the one who loves Me. The one who loves +Me will be loved by My Father, and I will love him +22 +and reveal Myself to him.” + +Judas (not Iscariot) asked Him, “Lord, why are +You going to reveal Yourself to us and not to the +23 +world?” + +“Lord,” said Thomas, “we do not know where + +6 +You are going, so how can we know the way?” + +7 + +Jesus answered, “I am the way and the truth and +the life. No one comes to the Father except +If God is glorified in Him +a 32 +through Me. +If you had known Me, you would +going there to prepare a place for you. +d 4 +Me +g 16 + +WH does not include +f 15 + +If you love Me, keep + +Or +Helper + +b 1 + +Comforter +BYZ, TR + +Jesus replied, “If anyone loves Me, he will keep +My word. My Father will love him, and We will +24 +come to him and make Our home with him. +Whoever does not love Me does not keep My +words. The word that you hear is not My own, +If it were not so, I would have told you. I am +but it is from the Father who sent Me. +e 14 + +c 2 + +Believe in God + +And where I go you know, and the way you know. +. + +Or + +Counselor + +Paraclete + +h 17 + +and is in you +TR does not include + +. + +Or + +Or + + or + + or + +; Greek + +; also v. 26 + +WH + + 968 | John 14:25 + +25 + +26 + +All this I have spoken to you while I am still +But the Advocate, the Holy Spirit, +with you. +whom the Father will send in My name, will teach +you all things and will remind you of everything +Peace I Leave with You +I have told you. +27 + +28 + +Peace I leave with you; My peace I give to you. +I do not give to you as the world gives. Do not let +You +your hearts be troubled; do not be afraid. +heard Me say, ‘I am going away, and I am coming +back to you.’ If you loved Me, you would rejoice +that I am going to the Father, because the Father +And now I have told you be- +is greater than I. +fore it happens, so that when it does happen, you +30 +will believe. + +29 + +31 + +I will not speak with you much longer, for the +prince of this world is coming, and he has no +claim on Me. +But I do exactly what the Father +has commanded Me, so that the world may know +that I love the Father. +Jesus the True Vine (Isaiah 27:1–13) +Get up! Let us go on from here. + +15 + +2 + +“I am the true vine, and My Father is the +He cuts off +keeper of the vineyard. +every branch in Me that bears no fruit, and every +3 +branch that does bear fruit, He prunes to make it +You are already clean be- +even more fruitful. +cause of the word I have spoken to you. +Remain +in Me, and I will remain in you. Just as no branch +can bear fruit by itself unless it remains in the +vine, neither can you bear fruit unless you re- +5 +main in Me. + +4 + +6 + +7 + +I am the vine and you are the branches. The one +who remains in Me, and I in him, will bear much +fruit. For apart from Me you can do nothing. +If +anyone does not remain in Me, he is like a branch +that is thrown away and withers. Such branches +are gathered up, thrown into the fire, and +If you remain in Me and My words re- +burned. +main in you, ask whatever you wish, and it will +be done for you. +This is to My Father’s glory, +that you bear much fruit, proving yourselves to +No Greater Love +be My disciples. +9 + +8 + +10 + +As the Father has loved Me, so have I loved you. +If you keep My command- +Remain in My love. +ments, you will remain in My love, just as I have +a 20 +kept My Father’s commandments and remain in + +b 25 + +11 + +His love. +I have told you these things so that My +12 +joy may be in you and your joy may be complete. + +13 + +This is My commandment, that you love one +another as I have loved you. +Greater love has +no one than this, that he lay down his life for his +14 +friends. + +15 + +16 + +You are My friends if you do what I command +No longer do I call you servants, for a serv- +you. +ant does not understand what his master is do- +ing. But I have called you friends, because every- +thing I have learned from My Father I have made +You did not choose Me, but I +known to you. +chose you. And I appointed you to go and bear +fruit—fruit that will remain—so that whatever +17 +you ask the Father in My name, He will give you. +The Hatred of the World +This is My command to you: Love one another. + +18 + +19 + +If the world hates you, understand that it hated +If you were of the world, it would love +Me first. +you as its own. Instead, the world hates you, be- +cause you are not of the world, but I have chosen +20 +you out of the world. + + a + +Remember the word that I spoke to you: ‘No +servant is greater than his master.’ + If they per- +secuted Me, they will persecute you as well; if +21 +they kept My word, they will keep yours as well. +But they will treat you like this because of My +name, since they do not know the One who sent +If I had not come and spoken to them, they +Me. +would not be guilty of sin. Now, however, they +23 +have no excuse for their sin. +24 + +22 + +Whoever hates Me hates My Father as well. +If I had not done among them the works that +no one else did, they would not be guilty of sin; +but now they have seen and hated both Me and +But this is to fulfill what is written +My Father. + c +26 +in their Law: ‘They hated Me without reason.’ + +25 + + b + +27 + +When the Advocate + + comes, whom I will send +to you from the Father—the Spirit of truth who +proceeds from the Father—He will testify about +And you also must testify, because you +Me. +Persecution Foretold (Acts 23:12–22) +have been with Me from the beginning. + +16 + +2 + +“I have told you these things so that you +will not fall away. +They will put you out +of the synagogues. In fact, a time is coming when +anyone who kills you will think he is offering +Comforter +c 26 +They will do these things +a service to God. + +Counselor + +Paraclete + +Helper + +3 + +John 13:16 + +See Ps. 35:19, Ps. 38:19, and Ps. 69:4. + +Or + + or + + or + +; Greek + + 4 +because they have not known the Father or Me. +But I have told you these things so that when +their hour comes, you will remember that I told +you about them. I did not tell you these things +The Promise of the Holy Spirit +from the beginning, because I was with you. +(John 14:15–26) + +5 + +Now, however, I am going to Him who sent Me; +6 +yet none of you asks Me, ‘Where are You going?’ +Instead, your hearts are filled with sorrow be- +But I tell you +cause I have told you these things. +the truth, it is for your benefit that I am going + will not +away. Unless I go away, the Advocate +8 +come to you; but if I go, I will send Him to you. + +7 + + a + +10 + +And when He comes, He will convict the world +9 +in regard to sin and righteousness and judgment: +in regard to sin, because they do not believe in +Me; +in regard to righteousness, because I am +going to the Father and you will no longer see +and in regard to judgment, because the +Me; +12 +prince of this world has been condemned. + +11 + +13 + +14 + +I still have much to tell you, but you cannot yet +bear to hear it. +However, when the Spirit of +truth comes, He will guide you into all truth. For +He will not speak on His own, but He will speak +what He hears, and He will declare to you what is +He will glorify Me by taking from +to come. +Every- +what is Mine and disclosing it to you. +thing that belongs to the Father is Mine. That is +why I said that the Spirit will take from what is +16 +Mine and disclose it to you. + +15 + +b + +In a little while you will see Me no more, and + +Grief Will Turn to Joy +then after a little while you will see Me. +17 + +” + +Then some of His disciples asked one another, +“Why is He telling us, ‘In a little while you will not +see Me, and then after a little while you will see +18 +Me’ and ‘Because I am going to the Father’?” +They kept asking, “Why is He saying, ‘a little +19 +while’? We do not understand what He is saying.” + +20 + +Aware that they wanted to question Him, Jesus +said to them, “Are you asking one another why I +said, ‘In a little while you will not see Me, and +then after a little while you will see Me’? +Truly, +truly, I tell you, you will weep and wail while the +world rejoices. You will grieve, but your grief will +turn to joy. +A woman has pain in childbirth be- +a 7 +cause her time has come; but when she brings +c 27 + +from the Father + +Comforter + +Counselor + +Paraclete + +Helper + +21 + +Or +WH + + or + +d 2 + or + +all flesh +; Greek + +Literally + +b 16 + +John 17:5 | 969 + +22 + +forth her child, she forgets her anguish because +of her joy that a child has been born into the +So also you have sorrow now, but I will +world. +see you again and your hearts will rejoice, and no +Ask in My Name (Matthew 18:19–20) +one will take away your joy. +23 + +In that day you will no longer ask Me +anything. Truly, truly, I tell you, whatever you +24 +ask the Father in My name, He will give you. +Until now you have not asked for anything in +My name. Ask and you will receive, so that your +25 +joy may be complete. + +26 + +27 + +I have spoken these things to you in figures of +speech. An hour is coming when I will no longer +speak to you this way, but will tell you plainly +about the Father. +In that day you will ask in My +name. I am not saying that I will ask the Father +on your behalf. +For the Father Himself loves +you, because you have loved Me and have be- +lieved that I came from God. +I came from the +Father and entered the world. In turn, I will leave +29 +the world and go to the Father.” + +28 + +c + +30 + +His disciples said, “See, now You are speaking +plainly and without figures of speech. +Now we +understand that You know all things and that +You have no need for anyone to question You. Be- +cause of this, we believe that You came from +31 +God.” +32 + +finally believe?” + +“Do you +Jesus replied. +“Look, an hour is coming and has already come +when you will be scattered, each to his own +home, and you will leave Me all alone. Yet I am +not alone, because the Father is with Me. +I have +told you these things so that in Me you may have +peace. In the world you will have tribulation. But +Prayer for the Son +take courage; I have overcome the world!” + +33 + +17 + +When Jesus had spoken these things, He +lifted up His eyes to heaven and said, “Fa- +2 +ther, the hour has come. Glorify Your Son, that +d +Your Son may glorify You. +For You granted Him +authority over all people, + so that He may give +Now +eternal life to all those You have given Him. +this is eternal life, that they may know You, the +only true God, and Jesus Christ, whom You have +I have glorified You on earth by accom- +sent. +And now, +plishing the work You gave Me to do. +Father, glorify Me in Your presence with the +glory I had with You before the world existed. + +because I go away to the Father. + +5 + +4 + +3 + +BYZ and TR include + + 970 | John 17:6 + +Prayer for the Disciples + +24 + +6 + +8 + +I have revealed Your name to those You have +given Me out of the world. They were Yours; You +7 +gave them to Me, and they have kept Your word. +Now they know that everything You have given +Me comes from You. +For I have given them the +words You gave Me, and they have received +them. They knew with certainty that I came from +9 +You, and they believed that You sent Me. + +11 + +10 + +I ask on their behalf. I do not ask on behalf of the +world, but on behalf of those You have given Me; +for they are Yours. +All I have is Yours, and all +You have is Mine; and in them I have been glori- +fied. +I will no longer be in the world, but they +are in the world, and I am coming to You. +a + +12 + +Holy Father, protect them by Your name, the +name You gave Me, + so that they may be one as +While I was with them, I protected +We are one. +and preserved them by Your name, the name You +gave Me. Not one of them has been lost, except +the son of destruction, so that the Scripture +13 +would be fulfilled. + +14 + +But now I am coming to You; and I am saying +these things while I am in the world, so that they +may have My joy fulfilled within them. +I have +given them Your word and the world has hated +them. For they are not of the world, just as I am +15 +not of the world. + +b +I am not asking that You take them out of the + +16 +world, but that You keep them from the evil one. + +17 + +They are not of the world, just as I am not of +18 +Sanctify them by the truth; Your +the world. +As You sent Me into the world, I +word is truth. +For them I +have also sent them into the world. +sanctify Myself, so that they too may be sancti- +Prayer for All Believers +fied by the truth. +20 + +19 + +I am not asking on behalf of them alone, but +21 +also on behalf of those who will believe in Me +through their message, +that all of them may be +one, as You, Father, are in Me, and I am in You. +May they also be in Us, so that the world may be- +22 +lieve that You sent Me. + +23 + +I have given them the glory You gave Me, so +that they may be one as We are one— +I in them +and You in Me—that they may be perfectly +united, so that the world may know that You sent +Me and have loved them just as You have loved +Your name, which You gave Me +a 11 +Me. +b 15 + +from evil + +c 9 + +Literally +Or + +See John 6:39 and John 17:12. + +; TR + +Father, I want those You have given Me to be +with Me where I am, that they may see the glory +You gave Me because You loved Me before the +25 +foundation of the world. + +26 + +Righteous Father, although the world has not +known You, I know You, and they know that You +sent Me. +And I have made Your name known to +them and will continue to make it known, so that +the love You have for Me may be in them, and I in +The Betrayal of Jesus +them.” +(Matt. 26:47–56 ; Mark 14:43–52 ; Luke 22:47–53) + +18 + +2 + +3 + +After Jesus had spoken these words, He +went out with His disciples across the Ki- +Now +dron Valley, where they entered a garden. +Judas His betrayer also knew the place, +because Jesus had often met there with His disci- +So Judas brought a band of soldiers and +ples. +officers from the chief priests and Pharisees. +They arrived at the garden carrying lanterns, +4 +torches, and weapons. + +Jesus, knowing all that was coming upon Him, +stepped forward and asked them, “Whom are +5 +you seeking?” + +“Jesus of Nazareth,” they answered. + +Jesus said, “I am He.” + +6 + +And Judas His betrayer was standing there with +them. +When Jesus said, “I am He,” they drew +7 +back and fell to the ground. + +So He asked them again, “Whom are you seek- + +ing?” +8 +“Jesus of Nazareth,” they answered. + +9 + +“I told you that I am He,” Jesus replied. “So if you +are looking for Me, let these men go.” +This was +to fulfill the word He had spoken: “I have not lost +10 +one of those You have given Me.” + + c + +Then Simon Peter drew his sword and struck +the servant of the high priest, cutting off his right +11 +ear. The servant’s name was Malchus. + +“Put your sword back in its sheath!” Jesus said +to Peter. “Shall I not drink the cup the Father has +12 +given Me?” + +13 + +Then the band of soldiers, with its commander +and the officers of the Jews, arrested Jesus and +bound Him. +They brought Him first to Annas, +who was the father-in-law of Caiaphas, the high +Your name. These You have given Me +priest that year. +Caiaphas was the one who had +; similarly in verse 12 + +14 + + 27 + +John 18:40 | 971 + +advised the Jews that it would be better if one +Peter’s First Denial +man died for the people. +(Matt. 26:69–70 ; Mark 14:66–68 ; Luke 22:54–57) + +Peter denied it once more, and immediately a + +Jesus before Pilate +rooster crowed. +(Matthew 27:11–14 ; Luke 23:1–5) + +15 + +28 + +16 + +Now Simon Peter and another disciple were +following Jesus. Since that disciple was known to +the high priest, he also went with Jesus into the +But Peter stood +courtyard of the high priest. +outside at the door. Then the disciple who was +known to the high priest went out and spoke to +17 +the doorkeeper, and brought Peter in. + +At this, the servant girl watching the door said +to Peter, “Aren’t you also one of this man’s disci- +ples?” +18 +“I am not,” he answered. + +Because it was cold, the servants and officers +were standing around a charcoal fire they had +made to keep warm. And Peter was also standing +Jesus before the High Priest +with them, warming himself. +(Matt. 26:57–68 ; Mark 14:53–65 ; Luke 22:66–71) + +19 + +Meanwhile, the high priest questioned Jesus + +20 +about His disciples and His teaching. + +“I have spoken openly to the world,” Jesus an- +swered. “I always taught in the synagogues and +at the temple, where all the Jews come together. +Why are you asking +I said nothing in secret. +Me? Ask those who heard My message. Surely +22 +they know what I said.” + +21 + +When Jesus had said this, one of the officers +standing nearby slapped Him in the face and +23 +said, “Is this how You answer the high priest?” + +Jesus replied, “If I said something wrong, +testify as to what was wrong. But if I spoke cor- +24 +rectly, why did you strike Me?” + +Then Annas sent Him, still bound, to Caiaphas + +Peter’s Second and Third Denials +the high priest. +(Matt. 26:71–75 ; Mark 14:69–72 ; Luke 22:58–62) + +25 + +Simon Peter was still standing and warming +himself. So they asked him, “Aren’t you also one +of His disciples?” +26 +He denied it and said, “I am not.” + +One of the high priest’s servants, a relative of +the man whose ear Peter had cut off, asked, +“Didn’t I see you with Him in the garden?” +a 32 + +See John 12:32–33. + +Then they led Jesus away from Caiaphas into +the Praetorium. By now it was early morning, +and the Jews did not enter the Praetorium, +to avoid being defiled and unable to eat the +29 +Passover. + +So Pilate went out to them and asked, “What + +30 +accusation are you bringing against this man?” + +“If He were not a criminal,” they replied, “we + +31 +would not have handed Him over to you.” + +“You take Him and judge Him by your own + +law,” Pilate told them. + +32 + +“We are not permitted to execute anyone,” the +This was to fulfill the word that +Jews replied. +a +Jesus had spoken to indicate the kind of death He +33 +was going to die. + +Pilate went back into the Praetorium, sum- +moned Jesus, and asked Him, “Are You the King +34 +of the Jews?” + +“Are you saying this on your own,” Jesus asked, + +35 +“or did others tell you about Me?” + +“Am I a Jew?” Pilate replied. “Your own people +and chief priests handed You over to me. What +36 +have You done?” + +Jesus answered, “My kingdom is not of this +world; if it were, My servants would fight to pre- +vent My arrest by the Jews. But now My kingdom +37 +is not of this realm.” + +“Then You are a king!” Pilate said. + +“You say that I am a king,” Jesus answered. “For +this reason I was born and have come into the +world, to testify to the truth. Everyone who be- +38 +longs to the truth listens to My voice.” + +“What is truth?” Pilate asked. + +39 + +And having said this, he went out again to the +Jews and told them, “I find no basis for a charge +against Him. +But it is your custom that I release +to you one prisoner at the Passover. So then, do +you want me to release to you the King of the +40 +Jews?” + +“Not this man,” they shouted, “but Barabbas!” + +(Now Barabbas was an insurrectionist.) + + 972 | John 19:1 + +The Soldiers Mock Jesus (Isaiah 50:4–11 ; +Matt. 27:27–31 ; Mark 15:16–20 ; Luke 22:63–65) + +The Crucifixion (Psalm 22:1–31 ; +Matt. 27:32–44 ; Mark 15:21–32 ; Luke 23:26–43) + +19 + +2 + +3 + +Then Pilate took Jesus and had Him +The soldiers twisted together a +flogged. +crown of thorns, set it on His head, and dressed +And they went up to Him +Him in a purple robe. +again and again, saying, “Hail, King of the Jews!” +4 +and slapping Him in the face. + +5 + +Once again Pilate came out and said to the Jews, +“Look, I am bringing Him out to you to let you +know that I find no basis for a charge against +Him.” +When Jesus came out wearing the crown +of thorns and the purple robe, Pilate said to them, +6 +“Here is the man!” + +As soon as the chief priests and officers saw + +Him, they shouted, “Crucify Him! Crucify Him!” + +“You take Him and crucify Him,” Pilate replied, +7 +“for I find no basis for a charge against Him.” + +“We have a law,” answered the Jews, “and ac- +cording to that law He must die, because He +8 +declared Himself to be the Son of God.” + +9 + +When Pilate heard this statement, he was even +and he went back into the Praeto- + +more afraid, +rium. “Where are You from?” he asked. +10 +But Jesus gave no answer. + +So Pilate said to Him, “Do You refuse to speak +to me? Do You not know that I have authority to +11 +release You and authority to crucify You?” + +Jesus answered, “You would have no authority +over Me if it were not given to you from above. +Therefore the one who handed Me over to you is +12 +guilty of greater sin.” + +From then on, Pilate tried to release Him, but +the Jews kept shouting, “If you release this man, +you are no friend of Caesar. Anyone who declares +13 +himself a king is defying Caesar.” + +14 + +When Pilate heard these words, he brought Je- +sus out and sat on the judgment seat at a place +called the Stone Pavement, which in Hebrew + is +b +Gabbatha. +It was the day of Preparation for the +Passover, about the sixth hour. + And Pilate said +15 +to the Jews, “Here is your King!” + + a + +At this, they shouted, “Away with Him! Away + +with Him! Crucify Him!” + +“Shall I crucify your King?” Pilate asked. + +“We have no king but Caesar,” replied the chief +a 13 +priests. +e 29 + +in Aramaic +A jar of wine vinegar + +b 14 + +f 29 + +16 + +17 + +Then Pilate handed Jesus over to be crucified, +and the soldiers took Him away. +Carrying His +own cross, He went out to The Place of the Skull, +18 +which in Hebrew is called Golgotha. + +There they crucified Him, and with Him two +19 +others, one on each side, with Jesus in the middle. + +Pilate also had a notice posted on the cross. It + +read: + +20 + +JESUS OF NAZARETH, +THE KING OF THE JEWS. + +21 + +Many of the Jews read this sign, because the +place where Jesus was crucified was near the +city, and it was written in Hebrew, Latin, and +Greek. +So the chief priests of the Jews said to +Pilate, “Do not write, ‘The King of the Jews,’ but +22 +only that He said, ‘I am the King of the Jews.’” + +Pilate answered, “What I have written, I have + +23 +written.” + +When the soldiers had crucified Jesus, they di- +vided His garments into four parts, one for each +soldier, with the tunic remaining. It was seam- +less, woven in one piece from top to bottom. +So +they said to one another, “Let us not tear it. In- +stead, let us cast lots to see who will get it.” This +was to fulfill the Scripture: + +24 + + c + +“They divided My garments among them, + +and cast lots for My clothing.” + +25 +So that is what the soldiers did. + +27 + +26 + +Near the cross of Jesus stood His mother and +her sister, as well as Mary the wife of Clopas and +Mary Magdalene. +When Jesus saw His mother +and the disciple whom He loved standing nearby, +He said to His mother, “Woman, here is your +son.” +Then He said to the disciple, “Here is your +mother.” So from that hour, this disciple took her +The Death of Jesus (Psalm 22:1–31 ; +into his home. +Matt. 27:45–56 ; Mark 15:33–41 ; Luke 23:44–49) + +28 + +29 + +After this, knowing that everything had now + e + d +been accomplished, and to fulfill the Scripture, +Jesus said, “I am thirsty.” +was sitting there. So they soaked a sponge in the +30 +wine, put it on a stalk of hyssop, and lifted it to +His mouth. +When Jesus had received the sour +wine, He said, “It is finished.” And bowing His +head, He yielded up His spirit. + +A jar of sour wine + +d 28 + +c 24 + +f + +Or +Or + +; also in verses 17 and 20 + +; similarly in verse 30 + +That is, about noon +See Psalm 69:21. + +Psalm 22:18 + +See Psalm 22:15. + + Jesus’ Side Is Pierced (Zechariah 12:10–14) + +3 + +John 20:18 | 973 + +31 + +It was the day of Preparation, and the next day +was a High Sabbath. In order that the bodies +would not remain on the cross during the Sab- +bath, the Jews asked Pilate to have the legs bro- +So the soldiers +ken and the bodies removed. +came and broke the legs of the first man who had +33 +been crucified with Jesus, and those of the other. + +32 + +35 + +But when they came to Jesus and saw that He +34 +was already dead, they did not break His legs. +Instead, one of the soldiers pierced His side +with a spear, and immediately blood and water +The one who saw it has testified to +flowed out. +this, and his testimony is true. He knows that he +36 +is telling the truth, so that you also may believe. + + a + +37 + +Now these things happened so that the Scrip- +ture would be fulfilled: “Not one of His bones will +be broken.” +And, as another Scripture says: +The Burial of Jesus (Isaiah 53:9–12 ; +“They will look on the One they have pierced.” +Matt. 27:57–61 ; Mark 15:42–47 ; Luke 23:50–56) + + b + +38 + +39 + +Afterward, Joseph of Arimathea, who was a +disciple of Jesus (but secretly for fear of the +Jews), asked Pilate to let him remove the body of +Jesus. Pilate gave him permission, so he came +Nicodemus, who had +and removed His body. +previously come to Jesus at night, also brought a +mixture of myrrh and aloes, about seventy-five +So they took the body of Jesus and +pounds. +wrapped it in linen cloths with the spices, ac- +41 +cording to the Jewish burial custom. + +40 + +c + +42 + +Now there was a garden in the place where Je- +sus was crucified, and in the garden a new tomb +And because +in which no one had yet been laid. +it was the Jewish day of Preparation and the +The Resurrection +tomb was nearby, they placed Jesus there. +(Matt. 28:1–10 ; Mark 16:1–8 ; Luke 24:1–12) + +4 + +Then Peter and the other disciple set out for the +The two were running together, but the +tomb. +5 +other disciple outran Peter and reached the tomb +He bent down and looked in at the linen +first. +6 +cloths lying there, but he did not go in. + + e + +8 + +The cloth + +Simon Peter arrived just after him. He entered +7 +the tomb and saw the linen cloths lying there. + that had been around Jesus’ head +was rolled up, lying separate from the linen +Then the other disciple, who had +cloths. +reached the tomb first, also went in. And he saw +For they still did not understand +and believed. +from the Scripture that Jesus had to rise from the +Jesus Appears to Mary Magdalene +dead. +(Mark 16:9–11) + +9 + +10 +11 + +Then the disciples returned to their homes. +But Mary stood outside the tomb weeping. And +12 +as she wept, she bent down to look into the tomb, +and she saw two angels in white sitting where +the body of Jesus had lain, one at the head and +13 +the other at the feet. + +“Woman, why are you weeping?” they asked. + +“Because they have taken my Lord away,” she +said, “and I do not know where they have put +14 +Him.” + +When she had said this, she turned around and +saw Jesus standing there. But she did not recog- +15 +nize that it was Jesus. + +“Woman, why are you weeping?” Jesus asked. + +“Whom are you seeking?” + +Thinking He was the gardener, she said, “Sir, if +you have carried Him off, tell me where you have +16 +put Him, and I will get Him.” + +Jesus said to her, “Mary.” + +f + +20 + +d + +She turned and said to Him in Hebrew, +17 +boni!” (which means “Teacher”). + + “Rab- + +2 + + while +Early on the first day of the week, +it was still dark, Mary Magdalene went to +the tomb and saw that the stone had been re- +So she came running +moved from the entrance. +to Simon Peter and the other disciple, the one +whom Jesus loved. “They have taken the Lord out +of the tomb,” she said, “and we do not know +where they have put Him!” +a 36 + +“Do not cling to Me,” Jesus said, “for I have not +yet ascended to the Father. But go and tell My +brothers, ‘I am ascending to My Father and your +18 +Father, to My God and your God.’ + +” + +Mary Magdalene went and announced to the +disciples, “I have seen the Lord!” And she told +them what He had said to her. +b 37 + +about a hundred litras + +c 39 + +Psalm 34:20; see also Exodus 12:46 and Numbers 9:12. + +f 16 +that is, approximately 34 kilograms + +in Aramaic + +Literally + +d 1 + +Now on the first of the Sabbaths, early, +Zechariah 12:10 + +e 7 +Greek + +soudarion + +Greek + +; + +Or + + 974 | John 20:19 + +Jesus Appears to the Disciples +(Luke 24:36–49 ; 1 John 1:1–4) + +19 + +20 + +It was the first day of the week, and that very +evening, while the disciples were together with +the doors locked for fear of the Jews, Jesus came +and stood among them. “Peace be with you!” He +After He had said this, He showed +said to them. +them His hands and His side. +21 +The disciples rejoiced when they saw the Lord. + +22 + +Again Jesus said to them, “Peace be with you. +As the Father has sent Me, so also I am sending +When He had said this, He breathed +you.” +If +on them and said, “Receive the Holy Spirit. +you forgive anyone his sins, they are forgiven; +if you withhold forgiveness from anyone, it is +Jesus Appears to Thomas +withheld.” + +23 + +24 + +a + +25 + +Now Thomas called Didymus, + + one of the +Twelve, was not with the disciples when Jesus +So the other disciples told him, “We have +came. +seen the Lord!” + +But he replied, “Unless I see the nail marks in His +hands, and put my finger where the nails have +been, and put my hand into His side, I will never +26 +believe.” + +Eight days later, His disciples were once again +inside with the doors locked, and Thomas was +with them. Jesus came and stood among them +27 +and said, “Peace be with you.” + +Then Jesus said to Thomas, “Put your finger +here and look at My hands. Reach out your +hand and put it into My side. Stop doubting and +28 +believe.” +29 + +Thomas replied, “My Lord and my God!” + +Jesus said to him, “Because you have seen Me, +you have believed; blessed are those who have +The Purpose of John’s Book +not seen and yet have believed.” + +30 + +31 + b + +Jesus performed many other signs in the pres- +ence of His disciples, which are not written in +But these are written so that you +this book. + that Jesus is the Christ, the Son of +may believe +God, and that by believing you may have life in +His name. +a 24 Didymus +twin + +about two hundred cubits away + +the twin + +b 31 + +e 8 + +may continue to believe + +Jesus Appears by the Sea of Tiberias + +c + +21 + +d + +Later, by the Sea of Tiberias, + Jesus again +2 +revealed Himself to the disciples. He +made Himself known in this way: +Simon Peter, +Thomas called Didymus, + Nathanael from Cana +in Galilee, the sons of Zebedee, and two other dis- +Simon Peter told them, “I +ciples were together. +am going fishing.” + +3 + +“We will go with you,” they said. So they went out +and got into the boat, but caught nothing that +4 +night. + +5 + +Early in the morning, Jesus stood on the shore, +but the disciples did not recognize that it was Je- +So He called out to them, “Children, do you +sus. +have any fish?” +6 +“No,” they answered. + +He told them, “Cast the net on the right side of +the boat, and you will find some.” So they cast it +there, and they were unable to haul it in because +7 +of the great number of fish. + +Then the disciple whom Jesus loved said to Pe- +ter, “It is the Lord!” As soon as Simon Peter heard +that it was the Lord, he put on his outer garment +8 +(for he had removed it) and jumped into the sea. +The other disciples came ashore in the boat. +They dragged in the net full of fish, for they were +9 +not far from land, only about a hundred yards. + +e + +When they landed, they saw a charcoal fire + +10 +there with fish on it, and some bread. +11 + +Jesus told them, “Bring some of the fish you +So Simon Peter went aboard +have just caught.” +and dragged the net ashore. It was full of large +fish, 153, but even with so many, the net was not +12 +torn. + +“Come, have breakfast,” Jesus said to them. +None of the disciples dared to ask Him, “Who are +Jesus came +You?” They knew it was the Lord. +and took the bread and gave it to them, and He +14 +did the same with the fish. + +13 + +This was now the third time that Jesus +appeared to the disciples after He was raised +Jesus and Peter +from the dead. +15 + +When they had finished eating, Jesus asked +Simon Peter, “Simon son of John, do you love Me +more than these?” + +d 2 Didymus + +the + +c 1 + + means + +. + +Or + +. + +Greek + +That is, the Sea of Galilee +; that is, approximately 300 feet or 91 meters + + means + + John 21:25 | 975 + +“Yes, Lord,” he answered, “You know I love You.” +16 +Jesus replied, “Feed My lambs.” + +And after He had said this, He told him, “Follow +Jesus and the Beloved Disciple +Me.” +20 + +Jesus asked a second time, “Simon son of John, + +do you love Me?” + +“Yes, Lord,” he answered, “You know I love You.” +17 +Jesus told him, “Shepherd My sheep.” + +Jesus asked a third time, “Simon son of John, do + +you love Me?” + +Peter was deeply hurt that Jesus had asked him a +third time, “Do you love Me?” + +“Lord, You know all things,” he replied. “You +know I love You.” +18 +Jesus said to him, “Feed My sheep. + +Truly, truly, I tell you, when you were young, +you dressed yourself and walked where you +wanted; but when you are old, you will stretch + will dress +out your hands, and someone else +19 +you and lead you where you do not want to go.” +Jesus said this to indicate the kind of death by + + a + +which Peter would glorify God. + +Peter turned and saw the disciple whom Jesus + b +loved following them. He was the one who had +21 +leaned back against Jesus + at the supper to ask, +“Lord, who is going to betray You?” +When Pe- +22 +ter saw him, he asked, “Lord, what about him?” + +Jesus answered, “If I want him to remain until +23 +I return, what is that to you? You follow Me!” +Because of this, the rumor spread among the +brothers that this disciple would not die. How- +ever, Jesus did not say that he would not die, but +only, “If I want him to remain until I return, what +24 +is that to you?” + +This is the disciple who testifies to these things +and who has written them down. And we know +25 +that his testimony is true. + +There are many more things that Jesus did. If +all of them were written down, I suppose that not +even the world itself would have space for the +books that would be written. + +a 18 + +others + +b 20 + +reclined on His bosom + +Or + +Greek + + Acts + +Prologue (Luke 1:1–4) + +1 + +2 + +3 + +In my first book, O Theophilus, I wrote about +all that Jesus began to do and to teach, +until +the day He was taken up to heaven, after giving +instructions through the Holy Spirit to the apos- +After His suffering, He pre- +tles He had chosen. +sented Himself to them with many convincing +proofs that He was alive. He appeared to them +over a span of forty days and spoke about the +4 +kingdom of God. + +a + +And while they were gathered together, + + He +commanded them: “Do not leave Jerusalem, but +5 +wait for the gift the Father promised, which you +For John baptized with +have heard Me discuss. +water, but in a few days you will be baptized with +The Ascension (Mark 16:19–20 ; Luke 24:50–53) +the Holy Spirit. +6 + +” + +b + +So when they came together, they asked Him, +“Lord, will You at this time restore the kingdom +7 +to Israel?” + +8 + +Jesus replied, “It is not for you to know times or +seasons that the Father has fixed by His own au- +But you will receive power when the +thority. +Holy Spirit comes upon you, and you will be My +witnesses in Jerusalem, and in all Judea and Sa- +9 +maria, and to the ends of the earth.” + +After He had said this, they watched as He was +10 +taken up, and a cloud hid Him from their sight. +They were looking intently into the sky as He +11 +was going, when suddenly two men dressed in +“Men of Galilee,” they +white stood beside them. +said, “why do you stand here looking into the +sky? This same Jesus, who has been taken from +you into heaven, will come back in the same way +Matthias Replaces Judas +you have seen Him go into heaven.” +12 + +c + +13 + +Then they returned to Jerusalem from the +Mount of Olives, which is near the city, a Sabbath +When they arrived, they +day’s journey away. +a 4 +went to the upper room where they were staying: + +eating together + +b 5 + +c 12 A Sabbath day’s journey + +14 + +Peter and John, James and Andrew, Philip and +Thomas, Bartholomew and Matthew, James son +of Alphaeus, Simon the Zealot, and Judas son of +With one accord they all continued in +James. +prayer, along with the women and Mary the +15 +mother of Jesus, and with His brothers. + +16 + +In those days Peter stood up among the broth- +ers (a gathering of about a hundred and twenty) +“Brothers, the Scripture had to be ful- +and said, +filled that the Holy Spirit foretold through the +mouth of David concerning Judas, who became a +He was one +guide for those who arrested Jesus. +18 +of our number and shared in this ministry.” + +17 + +19 + +(Now with the reward for his wickedness +Judas bought a field; there he fell headlong and +burst open in the middle, and all his intestines +This became known to all who +spilled out. +lived in Jerusalem, so they called that field in +their own language Akeldama, that is, Field of +20 +Blood.) + +“For it is written in the book of Psalms: + + d + +‘May his place be deserted; + +let there be no one to dwell in it,’ + +and, +21 + +‘May another take his position.’ + + e + +Therefore it is necessary to choose one of the +men who have accompanied us the whole time +be- +the Lord Jesus went in and out among us, +ginning from John’s baptism until the day Jesus +was taken up from us. For one of these must be- +23 +come a witness with us of His resurrection.” + +22 + +25 + +So they proposed two men: Joseph called Bars- +24 +abbas (also known as Justus) and Matthias. +And they prayed, “Lord, You know everyone’s +heart. Show us which of these two You have cho- +to take up this ministry and apostleship, +sen +which Judas abandoned to go to his rightful +26 +place.” + +Then they cast lots, and the lot fell to Matthias. + +For John baptized in water, but in a few days you will be baptized in the Holy Spirit +So he was added to the eleven apostles. + +d 20 + +Or + +e 20 +Acts 11:16 +69:25 + +Psalm 109:8 + +Or + +; cited in + + is 2,000 cubits (approximately 3,000 feet or 914.4 meters) + +Psalm + + The Holy Spirit at Pentecost +(Genesis 11:1–9 ; Leviticus 23:15–22) + + a + +2 + +2 +When the day of Pentecost +all together in one place. +3 + + came, they were +Suddenly a sound +like a mighty rushing wind came from heaven +and filled the whole house where they were sit- +They saw tongues like flames of fire that +ting. +4 +separated and came to rest on each of them. +And they were all filled with the Holy Spirit and +began to speak in other tongues as the Spirit en- +5 +abled them. + + b + +Now there were dwelling + + in Jerusalem God- +6 +fearing Jews from every nation under heaven. +And when this sound rang out, a crowd came to- +gether in bewilderment, because each one heard +7 +them speaking his own language. + +8 + +c + +9 + +10 + +Astounded and amazed, they asked, “Are not all +How is it +these who are speaking Galileans? +then that each of us hears them in his own native +language? +Parthians, Medes, and Elamites; resi- +dents of Mesopotamia, Judea and Cappadocia, +Phrygia and Pamphylia, +Pontus and Asia, +Egypt and the parts of Libya near Cyrene; visitors +both Jews and converts to Juda- +from Rome, +ism; Cretans and Arabs—we hear them declaring +12 +the wonders of God in our own tongues!” + +11 + +Astounded and perplexed, they asked one an- + +13 +other, “What does this mean?” + +But others mocked them and said, “They are + +Peter Addresses the Crowd +drunk on new wine!” +(Psalm 16:1–11 ; Joel 2:28–32) + +14 + +Then Peter stood up with the Eleven, lifted up +his voice, and addressed the crowd: “Men of Ju- +dea and all who dwell in Jerusalem, let this be +15 +known to you, and listen carefully to my words. +These men are not drunk, as you suppose. It is +No, this is what + +only the third hour of the day! +17 +was spoken by the prophet Joel: + +16 + + d + +‘In the last days, God says, + +I will pour out My Spirit on all people. + +Your sons and daughters will prophesy, +your young men will see visions, +your old men will dream dreams. + +a 1 + +the Feast of Weeks + +Acts 2:31 | 977 + +18 + +Even on My menservants and maidservants +I will pour out My Spirit in those days, +and they will prophesy. + +19 + +I will show wonders in the heavens above + +20 + +and signs on the earth below, +blood and fire and billows of smoke. + +The sun will be turned to darkness, + +and the moon to blood, +before the coming of the great and +glorious Day of the Lord. +And everyone who calls on the name + + e +of the Lord + +will be saved.’ + +21 + +22 + +23 + +Men of Israel, listen to this message: Jesus of +Nazareth was a man certified by God to you by +miracles, wonders, and signs, which God did +among you through Him, as you yourselves +He was delivered up by God’s set plan +know. +and foreknowledge, and you, by the hands of the +lawless, put Him to death by nailing Him +But God raised Him from the dead, +to the cross. +releasing Him from the agony of death, because +it was impossible for death to keep Him in its +25 +grip. + +24 + + f + +David says about Him: + +‘I saw + + the Lord always before me; + +26 + +because He is at my right hand, I will not + +be shaken. + +Therefore my heart is glad and my tongue + +27 + +rejoices; + +my body also will dwell in hope, +because You will not abandon my soul + +28 + +to Hades, + +nor will You let Your Holy One see decay. + +You have made known to me the paths + +of life; + + g + +You will fill me with joy in Your + +presence.’ + +29 + +30 + +Brothers, I can tell you with confidence that +the patriarch David died and was buried, and his +tomb is with us to this day. +But he was a +prophet and knew that God had promised him on +h +oath that He would place one of his descendants +Foreseeing this, David spoke +on his throne. +about the resurrection of the Christ, that He was +not abandoned to Hades, nor did His body see + +the Feast of Harvest + +31 + +c 9 + +That is, Shavuot, the late spring feast of pilgrimage to Jerusalem; it is also known as + + (see Exodus + +I foresaw + +23:16) or +f 25 +of Asia, located in what is now western Turkey +out of the fruit of his loins on his throne +; see verse 31. +Christ to sit on his throne + + (see Exodus 34:22). + +Literally + +Or +That is, nine in the morning + +That is, the Roman Province +on oath that He would place +Joel 2:28–32 (see also LXX) +on oath out of the fruit of his loins, according to the flesh, to raise up +Literally + +Psalm 16:8–11 (see also LXX) + +h 30 + +g 28 + +e 21 +; similarly in verse 14 + +staying + +b 5 +d 15 + +; BYZ and TR + +; Psalm 132:11 + + 978 | Acts 2:32 + +32 + +A Lame Man Walks + +decay. +33 +which we are all witnesses. + +God has raised this Jesus to life, to + +34 + +Exalted, then, to the right hand of God, He has +received from the Father the promised Holy +Spirit and has poured out what you now see and +For David did not ascend into heaven, but +hear. +he himself says: + +35 + +36 + +‘The Lord said to my Lord, +“Sit at My right hand +until I make Your enemies +a footstool for Your feet.” + + a + +’ + +Therefore let all Israel know with certainty +that God has made this Jesus, whom you cruci- +Three Thousand Believe +fied, both Lord and Christ!” +37 + +When the people heard this, they were cut to +the heart and asked Peter and the other apostles, +38 +“Brothers, what shall we do?” + +39 + +Peter replied, “Repent and be baptized, every +one of you, in the name of Jesus Christ for the for- +giveness of your sins, and you will receive the gift +This promise belongs to you +of the Holy Spirit. +and your children and to all who are far off—to +40 +all whom the Lord our God will call to Himself.” + +41 + +With many other words he testified, and he +urged them, “Be saved from this corrupt genera- +Those who embraced his message were +tion.” +b +baptized, and about three thousand were added +The Fellowship of Believers +to the believers that day. +(Acts 4:32–37) + +42 + +They devoted themselves to the apostles’ +43 +teaching and to the fellowship, to the breaking of + came +bread and to prayer. +over everyone, and the apostles performed many +44 +wonders and signs. +45 + +A sense of awe + + c + +All the believers were together and had every- +Selling their possessions and +thing in common. +46 +goods, they shared with anyone who was in need. + + d + +47 + +With one accord they continued to meet daily +in the temple courts + and to break bread from +house to house, sharing their meals with glad- +praising God and +ness and sincerity of heart, +enjoying the favor of all the people. And the Lord +added to their number daily those who were be- +a 35 +ing saved. +e 1 +of Nazareth, walk! + +Psalm 110:1 + +Literally + +h 11 + +b 41 + +3 + +2 + +One afternoon Peter and John were going up +e +to the temple at the hour of prayer, the ninth +And a man who was lame from birth was +hour. +being carried to the temple gate called Beautiful, +f +3 +where he was put every day to beg from those +When he saw Peter +entering the temple courts. +and John about to enter, he asked them for +4 +money. + +5 + +6 + +Peter looked directly at him, as did John. “Look +at us!” said Peter. +So the man gave them his at- +tention, expecting to receive something from +them. +But Peter said, “Silver or gold I do not +have, but what I have I give you: In the name of +7 +Jesus Christ of Nazareth, get up and walk! + +” + + g + +8 + +Taking him by the right hand, Peter helped him +up, and at once the man’s feet and ankles were +made strong. +He sprang to his feet and began to +walk. Then he went with them into the temple +9 +courts, walking and leaping and praising God. + +10 + +When all the people saw him walking and prais- +they recognized him as the man who +ing God, +used to sit begging at the Beautiful Gate of the +temple, and they were filled with wonder and +Peter Speaks in Solomon’s Colonnade +amazement at what had happened to him. +(Deuteronomy 18:15–22) + +11 + +h + +12 + +While the man clung to Peter and John, all the +people were astonished and ran to them in the +walkway called Solomon’s Colonnade. +And +when Peter saw this, he addressed the people: +“Men of Israel, why are you surprised by this? +Why do you stare at us as if by our own power or +13 +godliness we had made this man walk? + + i + +14 + +The God of Abraham, Isaac, and Jacob, the God +of our fathers, has glorified His servant + Jesus. +You handed Him over and rejected Him before +Pilate, even though he had decided to release +You rejected the Holy and Righteous One +Him. +15 +and asked that a murderer be released to you. +You killed the Author of life, but God raised +Him from the dead, and we are witnesses of this +16 +fact. + +By faith in the name of Jesus, this man whom +you see and know has been made strong. It is +Jesus’ name and the faith that comes through +Him that has given him this complete healing in +fear +your presence. + +the temple +In the name of Jesus Christ + +d 46 + +c 43 + +i 13 + +His child + +Or + +Literally + +about three thousand souls were added that day +g 6 + +f 2 +in the colonnade called Solomon’s + +the temple + +That is, three in the afternoon +Literally + +Literally + +; also in verse 8 + +SBL, NE, and WH + +Or + +; also in verse 26 + + 17 + +10 + +Acts 4:25 | 979 + +18 + +And now, brothers, I know that you acted in ig- +But in this way +norance, as did your leaders. +God has fulfilled what He foretold through all the +19 +prophets, saying that His Christ would suffer. +Repent, then, and turn back, so that your sins +that times of refreshing +may be wiped away, +may come from the presence of the Lord, and +that He may send Jesus, the Christ, who has been +21 +appointed for you. + +20 + +Heaven must take Him in until the time comes +for the restoration of all things, which God an- +22 +nounced long ago through His holy prophets. +For Moses said, ‘The Lord your God will raise +up for you a prophet like me from among your +brothers. You must listen to Him in everything +Everyone who does not listen to +He tells you. +Him will be completely cut off from among his +24 +people. + +23 + +’ + +a + +b + +25 + +Indeed, all the prophets from Samuel on, as +many as have spoken, have proclaimed these +And you are sons of the prophets and of +days. +the covenant God made with your fathers when + c +He said to Abraham, ‘Through your offspring all +26 +the families of the earth will be blessed.’ + +When God raised up His Servant, He sent Him +first to you to bless you by turning each of you +Peter and John before the Sanhedrin +from your wicked ways.” + +4 + +3 + +2 + +While Peter and John were speaking to the +people, the priests and the captain of the +temple guard and the Sadducees came up to +greatly disturbed that they were teaching +them, +the people and proclaiming in Jesus the resurrec- +They seized Peter and John, +tion of the dead. +4 +and because it was evening, they put them in cus- +tody until the next day. +But many who heard the +message believed, and the number of men grew +5 +to about five thousand. + +6 +The next day the rulers, elders, and scribes as- +along with Annas the +sembled in Jerusalem, +7 +high priest, Caiaphas, John, Alexander, and many +They had +others from the high priest’s family. +Peter and John brought in and began to question +them: “By what power or what name did you do +8 +this?” + +9 + +Then Peter, filled with the Holy Spirit, said to +If we are +them, “Rulers and elders of the people! +being examined today about a kind service to a +b 23 +a 22 +man who was lame, to determine how he was +child +e 15 + +the Council + +f 25 + +then let this be known to all of you and +healed, +to all the people of Israel: It is by the name of Je- +sus Christ of Nazareth, whom you crucified but +whom God raised from the dead, that this man +stands before you healed. + +11 + +This Jesus is + d + +12 + +‘the stone you builders rejected, + +which has become the cornerstone.’ + +Salvation exists in no one else, for there is no +other name under heaven given to men by which +The Name Forbidden +we must be saved.” +13 + +14 + +When they saw the boldness of Peter and John +and realized that they were unschooled, ordi- +nary men, they marveled and took note that +these men had been with Jesus. +And seeing the +15 +man who had been healed standing there with + e +them, they had nothing to say in response. +So +they ordered them to leave the Sanhedrin + and +16 +then conferred together. + +17 + +“What shall we do with these men?” they +asked. “It is clear to everyone living in Jerusalem +that a remarkable miracle has occurred through +them, and we cannot deny it. +But to keep this +message from spreading any further among the +people, we must warn them not to speak to any- +18 +one in this name.” + +19 + +Then they called them in again and com- +manded them not to speak or teach at all in the +name of Jesus. +But Peter and John replied, +“Judge for yourselves whether it is right in God’s +sight to listen to you rather than God. +For we +cannot stop speaking about what we have seen +21 +and heard.” + +20 + +22 + +After further threats they let them go. They +could not find a way to punish them, because all +the people were glorifying God for what had hap- +For the man who was miraculously +pened. +The Believers’ Prayer (Psalm 2:1–12) +healed was over forty years old. +23 + +On their release, Peter and John returned to +their own people and reported everything that +24 +the chief priests and elders had said to them. +When the believers heard this, they lifted up +their voices to God with one accord. “Sovereign +Lord,” they said, “You made the heaven and the +You +earth and the sea and everything in them. +spoke by the Holy Spirit through the mouth of +c 25 + our father David: +Your servant, + +d 11 + +25 + +f + +Deuteronomy 18:15 +Or +Or + +See Deuteronomy 18:19. +; also in verses 27 and 30 + +Genesis 22:18 + +Psalm 118:22 + + 980 | Acts 4:26 + +26 + +‘Why do the nations rage + +and the peoples plot in vain? + +The kings of the earth take their stand +and the rulers gather together + a + +against the Lord + +27 + +and against His Anointed One.’ + +28 + +29 + +In fact, this is the very city where Herod and +Pontius Pilate conspired with the Gentiles and +the people of Israel against Your holy servant Je- +They carried out +sus, whom You anointed. +what Your hand and will had decided beforehand +And now, Lord, consider their +would happen. +30 +threats, and enable Your servants to speak Your +as You stretch +word with complete boldness, +out Your hand to heal and perform signs and +wonders through the name of Your holy servant +31 +Jesus.” + +After they had prayed, their meeting place was +shaken, and they were all filled with the Holy +Sharing among Believers (Acts 2:42–47) +Spirit and spoke the word of God boldly. +32 + +33 + +The multitude of believers was one in heart +and soul. No one claimed that any of his posses- +sions was his own, but they shared everything +With great power the apostles +they owned. +continued to give their testimony about the res- +urrection of the Lord Jesus. And abundant grace +34 +was upon them all. + +35 + +There were no needy ones among them, +because those who owned lands or houses would +sell their property, bring the proceeds from the +and lay them at the apostles’ feet for dis- +sales, +36 +tribution to anyone as he had need. + +37 + +Joseph, a Levite from Cyprus, whom the apos- +tles called Barnabas (meaning Son of Encourage- +sold a field he owned, brought the +ment), +Ananias and Sapphira +money, and laid it at the apostles’ feet. + +5 + +2 + +Now a man named Ananias, together with +his wife Sapphira, also sold a piece of prop- +erty. +With his wife’s full knowledge, he kept +back some of the proceeds for himself, but +3 +brought a portion and laid it at the apostles’ feet. + +Then Peter said, “Ananias, how is it that Satan +has filled your heart to lie to the Holy Spirit and +4 +withhold some of the proceeds from the land? +Did it not belong to you before it was sold? And +a 26 +after it was sold, was it not at your disposal? How + +His Messiah + +His Christ + +b 20 + +could you conceive such a deed in your heart? +5 +You have not lied to men, but to God!” + +On hearing these words, Ananias fell down and +6 +died. And great fear came over all who heard +Then the young men +what had happened. +stepped forward, wrapped up his body, and car- +7 +ried him out and buried him. + +8 + +About three hours later his wife also came in, +“Tell me,” said +unaware of what had happened. +Peter, “is this the price you and your husband got +for the land?” +9 +“Yes,” she answered, “that is the price.” + +“How could you agree to test the Spirit of the +Lord?” Peter replied. “Look, the feet of the men +who buried your husband are at the door, and +10 +they will carry you out also.” + +11 + +At that instant she fell down at his feet and +died. Then the young men came in and, finding +her dead, carried her out and buried her beside +And great fear came over the +her husband. +whole church and all who heard about these +The Apostles Heal Many +events. +12 + +13 + +The apostles performed many signs and won- +ders among the people, and with one accord the +believers gathered together in Solomon’s Colon- +Although the people regarded them +nade. +highly, no one else dared to join them. +Yet +more and more believers were brought to the +15 +Lord—large numbers of both men and women. + +14 + +16 + +As a result, people brought the sick into the +streets and laid them on cots and mats, so that at +least Peter’s shadow might fall on some of them +Crowds also gathered from +as he passed by. +the towns around Jerusalem, bringing the sick +and those tormented by unclean spirits, and all +The Apostles Arrested and Freed +of them were healed. +17 + +18 + +19 + +Then the high priest and all his associates, who +belonged to the party of the Sadducees, were +filled with jealousy. They went out +and ar- +rested the apostles and put them in the public +But during the night an angel of the Lord +jail. + b +opened the doors of the jail and brought them +out, saying, +and tell the people the full message of this new +the temple +life.” + +“Go, stand in the temple courts + +20 + +Or + + or + +; Psalm 2:1–2 + +Literally + +; also in verses 21, 25, and 42 + + 21 + +At daybreak the apostles entered the temple +courts as they had been told and began to teach +the people. + + a + +When the high priest and his associates arrived, +—the full assem- +they convened the Sanhedrin +22 +bly of the elders of Israel—and sent to the jail for +But on arriving at the jail, the of- +the apostles. +ficers did not find them there. So they returned +with the report: +“We found the jail securely +locked, with the guards posted at the doors; but +The Apostles before the Sanhedrin +when we opened them, we found no one inside.” +24 + +23 + +b + +25 + +When the captain of the temple guard and the +chief priests heard this account, they were per- +Then some- +plexed as to what was happening. +one came in and announced, “Look, the men you +put in jail are standing in the temple courts +26 +teaching the people!” + +27 + +28 + +At that point, the captain went with the offic- +ers and brought the apostles—but not by force, +They +for fear the people would stone them. +brought them in and made them stand before the +Sanhedrin, where the high priest interrogated +“We gave you strict orders not to teach +them. +in this name,” he said. “Yet you have filled Jerusa- +lem with your teaching and are determined to +29 +make us responsible for this man’s blood.” + +30 + +31 + +But Peter and the other apostles replied, “We +The God of +must obey God rather than men. +our fathers raised up Jesus, whom you had killed +by hanging Him on a tree. +God exalted Him to +His right hand as Prince and Savior, in order to +grant repentance and forgiveness of sins to Is- +We are witnesses of these things, and so +rael. +is the Holy Spirit, whom God has given to those +Gamaliel’s Advice +who obey Him.” +33 + +32 + + c + +34 + +When the Council members heard this, they + to put the +were enraged, and they resolved +But a Pharisee named Gama- +apostles to death. +liel, a teacher of the law who was honored by all +the people, stood up in the Sanhedrin and or- +dered that the men be put outside for a short +35 +time. + +36 + +Acts 6:7 | 981 + +37 + +somebody, and about four hundred men joined +him. He was killed, all his followers were dis- +After him, +persed, and it all came to nothing. +Judas the Galilean appeared in the days of the +census and drew away people after him. He too +38 +perished, and all his followers were scattered. + +So in the present case I advise you: Leave these +men alone. Let them go! For if their purpose or +But if +endeavor is of human origin, it will fail. +it is from God, you will not be able to stop them. +You may even find yourselves fighting against +40 +God.” + +39 + +At this, they yielded to Gamaliel. They called +the apostles in and had them flogged. Then they +ordered them not to speak in the name of Jesus, +41 +and released them. + +42 + +The apostles left the Sanhedrin, rejoicing that +they had been counted worthy of suffering dis- +grace for the Name. +Every day, in the temple +courts and from house to house, they did not stop +teaching and proclaiming the good news that Je- +The Choosing of the Seven (1 Timothy 3:8–13) +sus is the Christ. + +6 + +In those days when the disciples were in- +creasing in number, the Grecian Jews among + d +them began to grumble against the Hebraic + because their widows were being over- +Jews +2 +looked in the daily distribution of food. + +3 + +So the Twelve summoned all the disciples and +said, “It is unacceptable for us to neglect the +word of God in order to wait on tables. +There- +fore, brothers, select from among you seven men +4 +confirmed to be full of the Spirit and wisdom. We +and will +will assign this responsibility to them +devote ourselves to prayer and to the ministry of +5 +the word.” + +e + +This proposal pleased the whole group. They +chose Stephen, a man full of faith and of the Holy +Spirit, as well as Philip, Prochorus, Nicanor, Ti- +mon, Parmenas, and Nicolas from Antioch, a con- +They presented these seven to +vert to Judaism. + who prayed and laid their hands on +the apostles, +7 +them. + +6 + +f + +So the word of God continued to spread. The +number of disciples in Jerusalem grew rapidly, +and a great number of priests became obedient +c 33 +as to what this might be +to the faith. +d 1 + +the Hellenists began to grumble against the He- +ECM, BYZ, TR, and Tischen- + +hom they set before the apostles, + +“Men of Israel,” he said, “consider carefully +Some +what you are about to do to these men. +b 24 +a 21 +time ago Theudas rose up, claiming to be +they wanted +Literally + f 6 + +the Council +they took counsel +e 5 + +; also in verses 27, 34, and 41 + +and Nicolas, a convert of Antioch +; NA, SBL, NE, and WH + +Or +brews +dorf; or + +Literally + +Literally + +Literally —w + + 982 | Acts 6:8 + +The Arrest of Stephen + +8 + +9 + +Now Stephen, who was full of grace and power, +was performing great wonders and signs among +But resistance arose from what was +the people. +called the Synagogue of the Freedmen, including +Cyrenians, Alexandrians, and men from the prov- +inces of + They disputed with +but they could not stand up to his +Stephen, +11 +wisdom or the Spirit by whom he spoke. + +10 + Cilicia and Asia. + +a + +Then they prompted some men to say, “We +heard Stephen speak words of blasphemy against +12 +Moses and against God.” + +b + +13 + +So they stirred up the people, elders, and +scribes and confronted Stephen. They seized him +and brought him before the Sanhedrin, +where +they presented false witnesses who said, “This +man never stops speaking against this holy place +and against the law. +For we have heard him say +that Jesus of Nazareth will destroy this place and +change the customs that Moses handed down to +15 +us.” + +14 + +All who were sitting in the Sanhedrin looked +intently at Stephen, and they saw that his face +Stephen’s Address: The Call of Abraham +was like the face of an angel. +(Genesis 12:1–9) + +7 + +2 + +Then the high priest asked Stephen, “Are +these charges true?” + +3 + +And Stephen declared: “Brothers and fathers, +listen to me! The God of glory appeared to our fa- +ther Abraham while he was still in Mesopotamia, +and told him, ‘Leave +before he lived in Haran, +your country and your kindred and go to the land +So Abraham left the land of +I will show you.’ +the Chaldeans and settled in Haran. After his fa- +ther died, God brought him out of that place and +5 +into this land where you are now living. + +4 + + c + +6 + +He gave him no inheritance here, not even a foot +of ground. But God promised to give possession +of the land to Abraham and his descendants, +even though he did not yet have a child. +God told +him that his descendants would be foreigners in +7 +a strange land, and that they would be enslaved +and mistreated four hundred years. +‘But I will +punish the nation that enslaves them,’ God said, +‘and afterward they will come forth and worship +a 9 +Me in this place.’ +b 12 +Literally +made known to +tus in God’s eyes + +Joseph was recognized by +; also in verse 15 +he was no ordinary child + +and those from Cilicia and Asia + +Genesis 12:1 + +the Council + + c 3 + +Or + + d + +d 7 + +8 + +Then God gave Abraham the covenant of cir- +cumcision, and Abraham became the father of +Isaac and circumcised him on the eighth day. And +Isaac became the father of Jacob, and Jacob of the +Joseph Sold into Egypt (Genesis 37:12–30) +twelve patriarchs. +9 + +10 + +Because the patriarchs were jealous of Joseph, +they sold him as a slave into Egypt. But God was +and rescued him from all his trou- +with him +bles. He granted Joseph favor and wisdom in the +sight of Pharaoh king of Egypt, who appointed +11 +him ruler over Egypt and all his household. + +12 + +Then famine and great suffering swept across +Egypt and Canaan, and our fathers could not find +food. +When Jacob heard that there was grain in +13 +Egypt, he sent our fathers on their first visit. + e +On their second visit, Joseph revealed his iden- +tity to + his brothers, and his family became +Then Joseph sent for his fa- +known to Pharaoh. +Israel Oppressed in Egypt (Exodus 1:8–22) +ther Jacob and all his relatives, seventy-five in all. +15 + +14 + +16 + +  f + +So Jacob went down to Egypt, where he and +our fathers died. +Their bones were carried +back + to Shechem and placed in the tomb that +Abraham had bought from the sons of Hamor at +17 +Shechem for a price he paid in silver. + +18 + +As the time drew near for God to fulfill His +promise to Abraham, our people in Egypt in- +Then another king, +creased greatly in number. +19 +who knew nothing of Joseph, arose over Egypt. +He exploited our people and oppressed our fa- +thers, forcing them to abandon their infants so +The Birth and Adoption of Moses +they would die. +(Exodus 2:1–10 ; Hebrews 11:23–29) + +20 + +g + +21 + +At that time Moses was born, and he was beau- +tiful in the sight of God. + For three months he was +When he was +nurtured in his father’s house. +set outside, Pharaoh’s daughter took him and +So Moses was +brought him up as her own son. +educated in all the wisdom of the Egyptians and +The Rejection and Flight of Moses +was powerful in speech and action. +(Exodus 2:11–22) + +22 + +23 + +24 + +When Moses was forty years old, he decided to +And + +visit his brothers, the children of Israel. +Joseph was +he was of great sta- + +e 13 + +; the Roman Province of Asia was located in what is now western Turkey. + +And they were carried back + +g 20 + +f 16 + +Genesis 15:13–14; Exodus 3:12 + +Or + + or + or + +Literally + +Or + + when he saw one of them being mistreated, Mo- +ses went to his defense and avenged him by strik- +25 +ing down the Egyptian who was oppressing him. +He assumed his brothers would understand +that God was using him to deliver them, but they +26 +did not. + +The next day he came upon two Israelites who +were fighting, and he tried to reconcile them, +saying, ‘Men, you are brothers. Why are you mis- +27 +treating each other?’ + +But the man who was abusing his neighbor +28 +pushed Moses aside and said, ‘Who made you + a +Do you want to kill me +ruler and judge over us? +At this +as you killed the Egyptian yesterday?’ +remark, Moses fled to the land of Midian, where +The Call of Moses +he lived as a foreigner and had two sons. +(Exodus 3:1–22) + +29 + +30 + +31 + +After forty years had passed, an angel ap- +peared to Moses in the flames of a burning bush +in the desert near Mount Sinai. +When Moses +saw it, he marveled at the sight. As he ap- +proached to look more closely, the voice of the + b +‘I am the God of your fa- +Lord came to him: +thers, the God of Abraham, Isaac, and Jacob.’ +Moses trembled with fear and did not dare to +33 +look. + +32 + +34 + +Then the Lord said to him, ‘Take off your san- +dals, for the place where you are standing is holy +I have indeed seen the oppression of +ground. +My people in Egypt. I have heard their groaning + c +and have come down to deliver them. Now come, +35 +I will send you back to Egypt.’ + + d + +36 + +This Moses, whom they had rejected with the + is the +words, ‘Who made you ruler and judge?’ + e +one whom God sent to be their ruler and re- + who appeared to him +deemer through the angel +in the bush. +He led them out and performed +wonders and signs in the land of Egypt, at the +37 +Red Sea, and for forty years in the wilderness. + + f + +This is the same Moses who told the Israelites, +38 +‘God will raise up for you a prophet like me from +He was in the assembly +among your brothers.’ +in the wilderness with the angel who spoke to +him on Mount Sinai, and with our fathers. And he +a 28 +received living words to pass on to us. + +g + +b 32 +g 38 + +c 34 +to you + +f 37 + +Acts 7:50 | 983 + +The Rebellion of Israel (Exodus 32:1–35 ; +Deuteronomy 9:7–29 ; Amos 5:16–27) + +39 + +40 + +But our fathers refused to obey him. Instead, +they rejected him and in their hearts turned back +They said to Aaron, ‘Make us gods +to Egypt. +who will go before us! As for this Moses who led +us out of the land of Egypt, we do not know what +41 +has happened to him.’ + + h + +42 + +At that time they made a calf and offered +a sacrifice to the idol, rejoicing in the works of +But God turned away from them +their hands. +and gave them over to the worship of the host +of heaven, as it is written in the book of the +prophets: + +‘Did you bring Me sacrifices and + +offerings + +43 + +forty years in the wilderness, + +O house of Israel? + +You have taken along the tabernacle + +of Molech + +and the star of your god Rephan, +the idols you made to worship. + i +Therefore I will send you into exile + +The Tabernacle of the Testimony +(Exodus 40:1–33 ; Hebrews 9:1–10) + +beyond Babylon.’ + +44 + +45 + +Our fathers had the tabernacle of the Testi- +mony with them in the wilderness. It was con- +structed exactly as God had directed Moses, +according to the pattern he had seen. +And our +fathers who received it brought it in with Joshua +when they dispossessed the nations God drove +out before them. It remained until the time of Da- +who found favor in the sight of God and +vid, +47 +asked to provide a dwelling place for the God of +Jacob. +But it was Solomon who built the house +48 +for Him. + +46 + +j + +However, the Most High does not dwell in +houses made by human hands. As the prophet +49 +says: + +‘Heaven is My throne + +and the earth is My footstool. + +50 + +says the Lord, + +What kind of house will you build for Me, + k +or where will My place of repose be? +Has not My hand made all these things?’ +h 40 + +Angel + +d 35 + +e 35 + +i 43 +Exodus 2:14 + +j 46 +verse 38 +k 50 + +Exodus 2:13–14 (see also LXX) +Deuteronomy 18:15 + +Exodus 3:6 +NE and WH + +Exodus 3:5–10 + +; also in +Or +a dwelling place for the house of Jacob. +Exodus 32:1 +Amos 5:25–27 (see also LXX) + +SBL, WH, BYZ, and TR; see also LXX for Psalm 132:5; ECM and NE +Isaiah 66:1–2 + + 984 | Acts 7:51 + +51 + +52 + +You stiff-necked people with uncircumcised +hearts and ears! You always resist the Holy +Which of the +Spirit, just as your fathers did. +prophets did your fathers fail to persecute? They +even killed those who foretold the coming of the +Righteous One. And now you are His betrayers +you who received the law or- +and murderers— +The Stoning of Stephen +dained by angels, yet have not kept it.” +54 + +53 + +a + +55 + +On hearing this, the members of the Sanhedrin +were enraged, + and they gnashed their teeth at +him. +But Stephen, full of the Holy Spirit, looked +intently into heaven and saw the glory of God and +“Look,” +Jesus standing at the right hand of God. +he said, “I see heaven open and the Son of Man +57 +standing at the right hand of God.” + +56 + +58 + +At this they covered their ears, cried out in a +loud voice, and rushed together at him. +They +dragged him out of the city and began to stone +him. Meanwhile the witnesses laid their gar- +59 +ments at the feet of a young man named Saul. + +60 + +While they were stoning him, Stephen ap- +Falling +pealed, “Lord Jesus, receive my spirit.” +on his knees, he cried out in a loud voice, “Lord, +do not hold this sin against them.” And when he +Saul Persecutes the Church +had said this, he fell asleep. + +8 + +And Saul was there, giving approval to Ste- +phen’s death. + +3 + +2 + +On that day a great persecution broke out against +the church in Jerusalem, and all except the +apostles were scattered throughout Judea and +God-fearing men buried Stephen and +Samaria. +But Saul began to de- +mourned deeply over him. +stroy the church. Going from house to house, he +dragged off men and women and put them in +Philip in Samaria +prison. +4 + +5 + +7 + +6 + +Those who had been scattered preached the +Philip went down to +word wherever they went. +a city in Samaria and proclaimed the Christ to +The crowds all paid close attention to +them. +Philip’s message and to the signs they saw him +With loud shrieks, unclean spirits +perform. +came out of many who were possessed, and +So +many of the paralyzed and lame were healed. +there was great joy in that city. +a 54 + +8 + +On hearing these things, they were cut in their hearts, + +Literally + +Simon the Sorcerer +(Deuteronomy 18:9–14) + +9 + +10 + +Prior to that time, a man named Simon had +practiced sorcery in the city and astounded the +people of Samaria. He claimed to be someone +and all the people, from the least to the +great, +greatest, heeded his words and said, “This man is +11 +the divine power called the Great Power.” +They paid close attention to him because he +had astounded them for a long time with his sor- +12 +cery. + +13 + +But when they believed Philip as he preached +the gospel of the kingdom of God and the name +of Jesus Christ, they were baptized, both men and +women. +Even Simon himself believed and was +baptized. He followed Philip closely and was +astounded by the great signs and miracles he ob- +14 +served. + +16 + +When the apostles in Jerusalem heard that Sa- +15 +maria had received the word of God, they sent +On their arrival, they +Peter and John to them. +prayed for them to receive the Holy Spirit. +For +the Holy Spirit had not yet fallen upon any of +them; they had simply been baptized into the +Then Peter and John +name of the Lord Jesus. +laid their hands on them, and they received the +18 +Holy Spirit. + +17 + +When Simon saw that the Spirit was given +19 +through the laying on of the apostles’ hands, he +“Give me this power as +offered them money. +well,” he said, “so that everyone on whom I lay +20 +my hands may receive the Holy Spirit.” + +22 + +21 + +But Peter replied, “May your silver perish with +you, because you thought you could buy the gift +You have no part or share +of God with money! +in our ministry, because your heart is not right +Repent, therefore, of your wicked- +before God. +ness, and pray to the Lord. Perhaps He will for- +For I see +give you for the intent of your heart. +that you are poisoned by bitterness and captive +24 +to iniquity.” + +23 + +Then Simon answered, “Pray to the Lord for +me, so that nothing you have said may happen to +25 +me.” + +And after Peter and John had testified and +spoken the word of the Lord, they returned to +Jerusalem, preaching the gospel in many of the +Samaritan villages. + + Philip and the Ethiopian (Isaiah 53:1–8) + +26 + +a + +Now an angel of the Lord said to Philip, “Get up +27 +and go south to the desert road that goes down +from Jerusalem to Gaza.” +So he started out, and +on his way he met an Ethiopian eunuch, a court +official in charge of the entire treasury of Can- +28 + queen of the Ethiopians. He had gone to +dace, +and on his return was +Jerusalem to worship, +29 +sitting in his chariot reading Isaiah the prophet. + +The Spirit said to Philip, “Go over to that char- + +30 +iot and stay by it.” + +So Philip ran up and heard the man reading +Isaiah the prophet. “Do you understand what you +31 +are reading?” Philip asked. + +“How can I,” he said, “unless someone guides +me?” And he invited Philip to come up and sit +32 +with him. + +The eunuch was reading this passage of + +Scripture: + +“He was led like a sheep to the slaughter, + +33 + +and as a lamb before the shearer is silent, +so He did not open His mouth. + +In His humiliation He was deprived of justice. + b + +34 + +Who can recount His descendants? +For His life was removed from the earth.” + +“Tell me,” said the eunuch, “who is the prophet + +35 +talking about, himself or someone else?” + +Then Philip began with this very Scripture and + +36 +told him the good news about Jesus. + + c + +38 + +As they traveled along the road and came to +some water, the eunuch said, “Look, here is wa- +ter! What is there to prevent me from being bap- +tized?” +And he gave orders to stop the chariot. +Then both Philip and the eunuch went down into +39 +the water, and Philip baptized him. + +When they came up out of the water, the Spirit +of the Lord carried Philip away, and the eunuch +40 +saw him no more, but went on his way rejoicing. +But Philip appeared at Azotus and traveled +through that region, preaching the gospel in all +The Road to Damascus (Acts 22:1–21 , 26:1–23) +the towns until he came to Caesarea. + +9 + +Acts 9:19 | 985 + +so that if he found any men or women belonging +to the Way, he could bring them as prisoners to +3 +Jerusalem. + +4 + +As Saul drew near to Damascus on his journey, +suddenly a light from heaven flashed around +him. +He fell to the ground and heard a voice say +5 +to him, “Saul, Saul, why do you persecute Me?” + +“Who are You, Lord?” Saul asked. + +d + +6 + +“I am Jesus, whom you are persecuting,” He +replied. +“Now get up and go into the city, and +7 +you will be told what you must do.” + +8 + +The men traveling with Saul stood there +speechless. They heard the voice but did not see +anyone. +Saul got up from the ground, but when +9 +he opened his eyes he could not see a thing. + So +For +they led him by the hand into Damascus. +three days he was without sight, and he did not +Ananias Baptizes Saul +eat or drink anything. +10 + +e + +In Damascus there was a disciple named +Ananias. The Lord spoke to him in a vision, +“Ananias!” +11 +“Here I am, Lord,” he answered. + +“Get up!” the Lord told him. “Go to the house of +Judas on Straight Street and ask for a man from +Tarsus named Saul, for he is praying. +In a vi- +sion he has seen a man named Ananias come and +13 +place his hands on him to restore his sight.” + +12 + +But Ananias answered, “Lord, many people +have told me about this man and all the harm he +has done to Your saints in Jerusalem. +And now +he is here with authority from the chief priests to +15 +arrest all who call on Your name.” + +14 + +“Go!” said the Lord. “This man is My chosen in- +strument to carry My name before the Gentiles +16 +and their kings, and before the people of Israel. +I will show him how much he must suffer for + +17 +My name.” + +So Ananias went to the house, and when he ar- +rived, he placed his hands on Saul. “Brother +Saul,” he said, “the Lord Jesus, who appeared to +you on the road as you were coming here, has +sent me so that you may see again and be filled +18 +with the Holy Spirit.” + +Meanwhile, Saul was still breathing out mur- +derous threats against the disciples of the +and re- +Lord. He approached the high priest +b 33 +a 27 +quested letters to the synagogues in Damascus, +your heart, you may be baptized.” The eunuch replied, “I believe that Jesus Christ is the Son of God.” +is hard for you to kick against the goads.” +he could see no one + +At that instant, something like scales fell from +Saul’s eyes, and his sight was restored. He got up +37 And Philip said, “If you believe with all +and was baptized, +and after taking some food, +TR includes +he could see nothing + +Isaiah 53:7–8 (see also LXX) + +Kandakē + +Greek + +c 36 + +d 5 + +e 8 + +“It + +19 + +2 + +Literally + + or + +TR includes + + 986 | Acts 9:20 + +he regained his strength. And he spent several +Saul Preaches at Damascus +days with the disciples in Damascus. +20 + +Saul promptly began to proclaim Jesus in the + +21 +synagogues, declaring, “He is the Son of God.” + +All who + + heard him were astounded and asked, +“Isn’t this the man who wreaked havoc in Jerusa- +lem on those who call on this name? And hasn’t +he come here to take them as prisoners to the +22 +chief priests?” + +But Saul was empowered all the more, and he +confounded the Jews living in Damascus by prov- +The Escape from Damascus +ing that Jesus is the Christ. +23 + +24 + +25 + +After many days had passed, the Jews con- +spired to kill him, +but Saul learned of their plot. +Day and night they watched the city gates in +order to kill him. +One night, however, his disci- +ples took him and lowered him in a basket +Saul in Jerusalem +through a window in the wall. +26 + +a + +27 + +When Saul arrived in Jerusalem, he tried to +join the disciples, but they were all afraid of him, +not believing that he was a disciple. +Then Bar- +nabas brought him to the apostles and described +how Saul had seen the Lord, who had spoken to +him on the road to Damascus, and how Saul had +28 +spoken boldly in that city in the name of Jesus. + +29 +b + +So Saul stayed with them, moving about freely +in Jerusalem and speaking boldly in the name of +the Lord. +He talked and debated with the Gre- +cian Jews, +When the + but they tried to kill him. +brothers learned of this, they took him down to +The Healing of Aeneas +Caesarea and sent him off to Tarsus. +31 + +30 + +Then the church throughout Judea, Galilee, +and Samaria experienced a time of peace. It grew +in strength and numbers, living in the fear of the +32 +Lord and the encouragement of the Holy Spirit. + +33 + +As Peter traveled throughout the area, he went +to visit the saints in Lydda. +There he found a +34 +man named Aeneas who had been paralyzed and +bedridden for eight years. +“Aeneas,” Peter said +to him, “Jesus Christ heals you! Get up and put +35 +away your mat.” Immediately Aeneas got up, +and all who lived in Lydda and Sharon saw him + +through the wall +a 25 +and turned to the Lord. +gazelle + +d 3 + +b 29 + +The Raising of Tabitha (John 11:38–44) + +36 + +c + +In Joppa there was a disciple named Tabitha +(which is translated as Dorcas), + who was always +37 +occupied with works of kindness and charity. +At that time, however, she became sick and +died, and her body was washed and placed in an +Since Lydda was near Joppa, the +upper room. +disciples, hearing that Peter was there, sent two +39 +men to urge him, “Come to us without delay.” + +38 + +So Peter got up and went with them. On his ar- +rival, they took him to the upper room. All the +widows stood around him, weeping and showing +him the tunics and other clothing that Dorcas had +40 +made while she was still with them. + +Then Peter sent them all out of the room. He +knelt down and prayed, and turning toward her +body, he said, “Tabitha, get up!” She opened her +eyes, and seeing Peter, she sat up. +Peter took +her by the hand and helped her up. Then he +called the saints and widows and presented her +42 +to them alive. + +41 + +43 + +This became known all over Joppa, and many +And Peter stayed +people believed in the Lord. +for several days in Joppa with a tanner named +Cornelius Sends for Peter +Simon. + +10 + +2 + +At Caesarea there was a man named Cor- +nelius, a centurion in what was called the +He and all his household were +Italian Regiment. +devout and God-fearing. He gave generously to +d +One day +the people and prayed to God regularly. + he had a clear vision of +at about the ninth hour, +an angel of God who came to him and said, “Cor- +4 +nelius!” + +3 + +Cornelius stared at him in fear and asked, “What + +is it, Lord?” + +5 + +The angel answered, “Your prayers and gifts to +the poor have ascended as a memorial offering +Now send men to Joppa to call for a +before God. +He is +man named Simon who is called Peter. +staying with Simon the tanner, whose house is by +7 +the sea. + +” + +6 + +e + +When the angel who spoke to him had gone, +Cornelius called two of his servants and a devout +soldier from among his attendants. +He ex- +plained what had happened and sent them to +Joppa. + +c 36 Tabitha + +Hellenists + +Dorcas + +8 + +e 6 + +He will tell you what you + +Literally + +need to do. +both mean + +; see 2 Corinthians 11:33. + +Or + + in Aramaic and + + in Greek + +. + +That is, about three in the afternoon; also in verse 30 + +TR includes + + Peter’s Vision +(Leviticus 11:1–47 ; Deuteronomy 14:1–21) + +9 + +a + +10 + +The next day at about the sixth hour, + + as the +men were approaching the city on their journey, +Peter went up on the roof to pray. +He became +hungry and wanted something to eat, but while +the meal was being prepared, he fell into a +11 +trance. + +12 + +He saw heaven open and something like a +large sheet being let down to earth by its four +corners. +It contained all kinds of four-footed +animals and reptiles of the earth, as well as birds +of the air. +Then a voice said to him: “Get up, Pe- +14 +ter, kill and eat!” + +13 + + b + +“No, Lord!” Peter answered. “I have never + +15 +eaten anything impure + + or unclean.” + +The voice spoke to him a second time: “Do not +16 +call anything impure that God has made clean.” + +This happened three times, and all at once the + +Peter Called to Caesarea +sheet was taken back up into heaven. +17 + +While Peter was puzzling over the meaning of +the vision, the men sent by Cornelius found Si- +mon’s house and approached the gate. +They +called out to ask if Simon called Peter was staying +19 +there. + +18 + +c + +20 + +As Peter continued to reflect on the vision, the +Spirit said to him, “Behold, three men are looking +for you. +So get up! Go downstairs and accom- +pany them without hesitation, because I have +21 +sent them.” + + d + +So Peter went down to the men + + and said, +“Here am I, the one you are looking for. Why have +22 +you come?” + +“Cornelius the centurion has sent us,” they +said. “He is a righteous and God-fearing man with +a good reputation among the whole Jewish na- +tion. A holy angel instructed him to request your +presence in his home so he could hear a message +23 +from you.” + +So Peter invited them in as his guests. And the +next day he got ready and went with them, ac- +Peter Visits Cornelius +companied by some of the brothers from Joppa. +24 + +Acts 10:42 | 987 + +25 +called together his relatives and close friends. +As Peter was about to enter, Cornelius met him +But Peter +and fell at his feet to worship him. +helped him up. “Stand up,” he said, “I am only a +27 +man myself.” + +26 + +28 + +As Peter talked with him, he went inside and +found many people gathered together. +He said +to them, “You know how unlawful it is for a Jew +to associate with a foreigner or visit him. But God +has shown me that I should not call any man im- +pure or unclean. +So when I was invited, I came +without objection. I ask, then, why have you sent +30 +for me?” + +29 + +e + +Cornelius answered: “Four days ago I was in +my house praying at this, the ninth hour. + Sud- +31 +denly a man in radiant clothing stood before me +and said, ‘Cornelius, your prayer has been +heard, and your gifts to the poor have been +remembered before God. +Therefore send to +Joppa for Simon, who is called Peter. He is a guest +33 +in the home of Simon the tanner, by the sea.’ + +32 + +So I sent for you immediately, and you were +kind enough to come. Now then, we are all here +in the presence of God to listen to everything the +Good News for the Gentiles +Lord has instructed you to tell us.” +34 + +35 + +Then Peter began to speak: “I now truly under- +but +stand that God does not show favoritism, +36 +welcomes those from every nation who fear Him +and do what is right. +He has sent this message +to the people of Israel, proclaiming the gospel of +37 +peace through Jesus Christ, who is Lord of all. + +38 + +You yourselves know what has happened +throughout Judea, beginning in Galilee with the +baptism that John proclaimed: +how God +anointed Jesus of Nazareth with the Holy Spirit +and with power, and how Jesus went around do- +ing good and healing all who were oppressed by +39 +the devil, because God was with Him. + +41 + +We are witnesses of all that He did, both in the +land of the Jews and in Jerusalem. And although +40 +they put Him to death by hanging Him on a tree, +God raised Him up on the third day and caused +not by all the people, but by +Him to be seen— +the witnesses God had chosen beforehand, by us +who ate and drank with Him after He rose from +And He commanded us to preach to +the dead. +the people and to testify that He is the One + +c 19 +the men sent to him by Cornelius + +two men + +d 21 + +42 + +The following day he arrived in Caesarea, +a 9 +where Cornelius was expecting them and had +are looking for you +e 30 + +That is, about noon + +Literally + +common + +b 14 + +; SBL, BYZ, and Tischendorf + +BYZ and TR + +men are looking for you + +; similarly in verses 15 and 28 +TR + +Four days ago I was fasting until this hour, and at the ninth hour I was praying in my house. + +ECM and TR; NE and WH + + 988 | Acts 10:43 + +43 + +appointed by God to judge the living and the +All the prophets testify about Him that +dead. +everyone who believes in Him receives for- +The Gentiles Receive the Holy Spirit +giveness of sins through His name.” +(Acts 19:1–7) + +44 + +While Peter was still speaking these words, the +45 +Holy Spirit fell upon all who heard his message. +All the circumcised believers who had accom- +panied Peter were astounded that the gift of the +Holy Spirit had been poured out even on the Gen- +tiles. +For they heard them speaking in tongues +47 +and exalting God. + +46 + +Then Peter said, +“Can anyone withhold the wa- +48 +ter to baptize these people? They have received +the Holy Spirit just as we have!” +So he ordered +that they be baptized in the name of Jesus Christ. +Peter’s Report at Jerusalem +Then they asked him to stay for a few days. + +11 + +2 + +The apostles and brothers throughout +Judea soon heard that the Gentiles also + a +So when Peter + +had received the word of God. +went up to Jerusalem, the circumcised believers +took issue with him +4 +circumcised men and ate with them.” + +and said, “You visited un- + +3 + +5 + +6 + +But Peter began and explained to them the +whole sequence of events: +“I was in the city of +Joppa praying, and in a trance I saw a vision of +something like a large sheet being let down from +heaven by its four corners, and it came right +down to me. +I looked at it closely and saw four- +footed animals of the earth, wild beasts, reptiles, +and birds of the air. +Then I heard a voice saying +8 +to me, ‘Get up, Peter, kill and eat.’ + +7 + + b + +‘No, Lord,’ I said, ‘for nothing impure + +9 +clean has ever entered my mouth.’ + + or un- + +But the voice spoke from heaven a second time, +‘Do not call anything impure that God has made +10 +clean.’ + +This happened three times, and everything + +11 +was drawn back up into heaven. + +12 + +Just then three men sent to me from Caesarea +stopped at the house where I was staying. +The +Spirit told me to accompany them without hesi- +tation. These six brothers also went with me, and +we entered the man’s home. +He told us how he +had seen an angel standing in his house and say- +common +a 2 +ing, ‘Send to Joppa for Simon who is called Peter. +few days you will be baptized in the Holy Spirit.’ + +those of the circumcision + +b 8 + +13 + +Literally + +Literally + +14 + +He will convey to you a message by which you + +15 +and all your household will be saved.’ + +16 + +As I began to speak, the Holy Spirit fell upon +them, just as He had fallen upon us at the begin- +Then I remembered the word of the Lord, +ning. +how He said, ‘John baptized with water, but you +will be baptized with the Holy Spirit.’ +So if God +gave them the same gift He gave us who believed +in the Lord Jesus Christ, who was I to hinder the +18 +work of God?” + +17 + + c + +When they heard this, they had no further ob- +jections, and they glorified God, saying, “So then, +God has granted even the Gentiles repentance +The Church at Antioch +unto life.” + +19 + +20 + +Meanwhile those scattered by the persecution +that began with Stephen traveled as far as Phoe- +nicia, Cyprus, and Antioch, speaking the message +But some of them, men from Cy- +only to Jews. + d +prus and Cyrene, went to Antioch and began + as well, proclaiming the +speaking to the Greeks +The hand of +good news about the Lord Jesus. +the Lord was with them, and a great number of +22 +people believed and turned to the Lord. + +21 + +23 + +When news of this reached the ears of the +church in Jerusalem, they sent Barnabas to Anti- +When he arrived and saw the grace of God, +och. +he rejoiced and encouraged them all to abide in +Barnabas was a +the Lord with all their hearts. +good man, full of the Holy Spirit and faith, and a +great number of people were brought to the +25 +Lord. +26 + +24 + +Then Barnabas went to Tarsus to look for Saul, +and when he found him, he brought him back +to Antioch. So for a full year they met together +with the church and taught large numbers of +people. The disciples were first called Christians +27 +at Antioch. + +28 + +e + +In those days some prophets came down from +One of them named Aga- +Jerusalem to Antioch. +bus stood up and predicted through the Spirit +that a great famine would sweep across the +29 + (This happened under Claudius.) +whole world. +So the disciples, each according to his ability, +decided to send relief to the brothers living in +This they did, sending their gifts to the +Judea. +‘John baptized in water, but in a +elders with Barnabas and Saul. +e 28 + +the entire Roman world + +c 16 + +30 + +d 20 + +the Hellenists +; similarly in verse 9 + +Or + +Or + + Acts 1:5 + +Or + + James Killed, Peter Imprisoned + +15 + +Acts 13:3 | 989 + +12 + + b + + a + +About that time, King Herod +2 +out to harm + + reached + some who belonged to the +He had James, the brother of John, put + +church. +3 +to death with the sword. + +c + +4 + +And seeing that this pleased the Jews, Herod +proceeded to seize Peter during the Feast of Un- +leavened Bread. +He arrested him and put him +in prison, handing him over to be guarded by +four squads of four soldiers each. Herod in- +tended to bring him out to the people after the +The Rescue of Peter +Passover. +5 + +So Peter was kept in prison, but the church was + +6 +fervently praying to God for him. + +7 + +On the night before Herod was to bring him to +trial, Peter was sleeping between two soldiers, +bound with two chains, with sentries standing +guard at the entrance to the prison. +Suddenly an +angel of the Lord appeared and a light shone in +the cell. He tapped Peter on the side and woke +him up, saying, “Get up quickly.” And the chains +fell off his wrists. +“Get dressed and put on your +sandals,” said the angel. Peter did so, and the an- +gel told him, “Wrap your cloak around you and +9 +follow me.” + +8 + +10 + +So Peter followed him out, but he was unaware +that what the angel was doing was real. He +thought he was only seeing a vision. +They +passed the first and second guards and came to +the iron gate leading to the city, which opened for +them by itself. When they had gone outside and +walked the length of one block, the angel sud- +11 +denly left him. + +“You are out of your mind,” they told her. But +when she kept insisting it was so, they said, “It +16 +must be his angel.” + +17 + +But Peter kept on knocking, and when they +opened the door and saw him, they were +Peter motioned with his hand for +astounded. +silence, and he described how the Lord had +brought him out of the prison. “Send word to +James and to the brothers,” he said, and he left +18 +for another place. + +19 + +At daybreak there was no small commotion +among the soldiers as to what had become of Pe- +After Herod had searched for him unsuc- +ter. +cessfully, he examined the guards and ordered +that they be executed. Then he went down from +The Death of Herod +Judea to Caesarea and spent some time there. +20 + + d + +Now Herod was in a furious dispute + + with the +people of Tyre and Sidon, and they convened be- +fore him. Having secured the support of Blastus, +the king’s chamberlain, they asked for peace, +because their region depended on the king’s +On the appointed day, Herod +country for food. +22 +donned his royal robes, sat on his throne, and ad- +And they began to shout, +dressed the people. +23 +“This is the voice of a god, not a man!” + +21 + +Immediately, because Herod did not give glory +to God, an angel of the Lord struck him down, and +24 +he was eaten by worms and died. + +But the word of God continued to spread and + +25 +multiply. + +e + +When Barnabas and Saul had fulfilled their + bringing + +mission to Jerusalem, they returned, +Paul’s First Missionary Journey Begins +with them John, also called Mark. +(Acts 15:36–41 ; Acts 18:23–28) + +Then Peter came to himself and said, “Now I +know for sure that the Lord has sent His +angel and rescued me from Herod’s grasp and +from everything the Jewish people were antici- +12 +pating.” + +13 + +13 + +And when he had realized this, he went to the +house of Mary the mother of John, also called +Mark, where many people had gathered together +and were praying. +He knocked at the outer +14 +gate, and a servant girl named Rhoda came to an- +swer it. +When she recognized Peter’s voice, she +was so overjoyed that she forgot to open the gate, +but ran inside and announced, “Peter is standing +a 1 +at the gate!” +the days of the Unleavened +returned to Jerusalem + +That is, King Herod Agrippa + +Literally + +d 20 + +b 1 + +2 + +Now in the church at Antioch there were +prophets and teachers: Barnabas, Sim- +eon called Niger, Lucius of Cyrene, Manaen (who +had been brought up with Herod the tetrarch), +While they were worshiping the Lord +and Saul. +and fasting, the Holy Spirit said, “Set apart for Me +Barnabas and Saul for the work to which I have +And after they had fasted and +called them.” +prayed, they laid their hands on them and sent +them off. +put forth the hands to mistreat + +c 3 + +3 + +seize Peter—now these were +had fulfilled their mission, they + +; see Exodus 12:14–20. + +had fulfilled their mission, they returned from Jerusalem +Or + +Or + +had become furious + +e 25 +Literally + +; NE and TR + + 990 | Acts 13:4 + +On Cyprus + +4 + +So Barnabas and Saul, sent forth by the Holy +5 +Spirit, went down to Seleucia and sailed +When they arrived at +from there to Cyprus. +Salamis, they proclaimed the word of God in the +Jewish synagogues. And John was with them as +6 +their helper. + +7 + +They traveled through the whole island as far +as Paphos, where they found a Jewish sorcerer +and false prophet named Bar-Jesus, +an at- +tendant of the proconsul, Sergius Paulus. The +proconsul, a man of intelligence, summoned Bar- +nabas and Saul because he wanted to hear the +But Elymas the sorcerer (for that +word of God. +is what his name means) opposed them and tried +9 +to turn the proconsul from the faith. + +8 + +10 + +11 + +Then Saul, who was also called Paul, filled with +the Holy Spirit, looked directly at Elymas +and +said, “O child of the devil and enemy of all right- +eousness, you are full of all kinds of deceit and +trickery! Will you never stop perverting the +Now look, the hand +straight ways of the Lord? +of the Lord is against you, and for a time you will +be blind and unable to see the light of the sun.” +Immediately mist and darkness came over him, +and he groped about, seeking someone to lead +12 +him by the hand. + +When the proconsul saw what had happened, +he believed, for he was astonished at the teach- +In Pisidian Antioch +ing about the Lord. +13 + +14 + +After setting sail from Paphos, Paul and his +companions came to Perga in Pamphylia, where +And +John left them to return to Jerusalem. +from Perga, they traveled inland to Pisidian An- +15 +tioch, where they entered the synagogue on the +After the reading from +Sabbath and sat down. +the Law and the Prophets, the synagogue leaders +sent word to them: “Brothers, if you have a word +16 +of encouragement for the people, please speak.” + +17 + +Paul stood up, motioned with his hand, and be- +gan to speak: “Men of Israel and you Gentiles +The God of the peo- +who fear God, listen to me! +ple of Israel chose our fathers. He made them +into a great people during their stay in Egypt, and +18 +with an uplifted arm He led them out of that land. +He endured their conduct for about forty years +b 25 +And having vanquished +d 34 + +a 22 +in the wilderness. +day I have begotten You + +19 + +See 1 Samuel 13:14. + +20 + +seven nations in Canaan, He gave their land to +All this took +His people as an inheritance. +about 450 years. + +21 + +After this, God gave them judges until the time of +Then the people asked for +Samuel the prophet. +a king, and God gave them Saul son of Kish, from +22 +the tribe of Benjamin, who ruled forty years. +After removing Saul, He raised up David as +their king and testified about him: ‘I have found +David son of Jesse a man after My own heart; he +23 +will carry out My will in its entirety.’ + + a + +25 + +24 + +From the descendants of this man, God has +brought to Israel the Savior Jesus, as He prom- +Before the arrival of Jesus, John preached +ised. +a baptism of repentance to all the people of Is- +As John was completing his course, he +rael. +said, ‘Who do you suppose I am? I am not that +One. But there is One coming after me whose +26 +sandals I am not worthy to untie.’ + + b + +Brothers, children of Abraham, and you Gen- +27 +tiles who fear God, it is to us that this message of +The people of Jerusa- +salvation has been sent. +lem and their rulers did not recognize Jesus, yet +in condemning Him they fulfilled the words of +And +the prophets that are read every Sabbath. +though they found no ground for a death sen- +29 +tence, they asked Pilate to have Him executed. + +28 + +30 + +31 + +When they had carried out all that was written +about Him, they took Him down from the tree +But God raised Him +and laid Him in a tomb. +and for many days He was seen +from the dead, +by those who had accompanied Him from Galilee +to Jerusalem. They are now His witnesses to our +32 +people. + +33 + +And now we proclaim to you the good news: +What God promised our fathers +He has ful- +filled for us, their children, by raising up Jesus. As +it is written in the second Psalm: + + c + +‘You are My Son; + +today I have become Your Father.’ + +In fact, God raised Him from the dead, never to + +see decay. As He has said: + + d + +‘I will give you the holy and sure blessings + +promised to David.’ + +So also, He says in another Psalm: + + e + +34 + +35 + +I will give you the holy, the trustworthy of David +Luke 3:16; see also Matthew 3:11, Mark 1:7, and John 1:27. +Literally + +e 35 + +Psalm 2:7; literally + +; Isaiah 55:3 + +Psalm 16:10 + +‘You will not let Your Holy One see decay.’ + +c 33 + +to- + + 36 + +51 + +Acts 14:17 | 991 + +For when David had served God’s purpose in +his own generation, he fell asleep. His body was +buried with his fathers and saw decay. +But the + from the dead did not see +One whom God raised +38 +decay. + +37 + +39 + +Therefore let it be known to you, brothers, that +through Jesus the forgiveness of sins is pro- +claimed to you. +Through Him everyone who +believes is justified from everything from which +40 +you could not be justified by the law of Moses. +Watch out, then, that what was spoken by the + +41 +prophets does not happen to you: + +‘Look, you scoffers, + +wonder and perish! + +For I am doing a work in your days +that you would never believe, +A Light for the Gentiles (Isaiah 49:1–6) +even if someone told you.’ + +” + + a + +42 + +43 + +As Paul and Barnabas were leaving the syna- +gogue, the people urged them to continue this +After the syna- +message on the next Sabbath. +gogue was dismissed, many of the Jews and +devout converts to Judaism followed Paul and +Barnabas, who spoke to them and urged them to +44 +continue in the grace of God. + +45 + +On the following Sabbath, nearly the whole +city gathered to hear the word of the Lord. +But +when the Jews saw the crowds, they were filled +with jealousy, and they blasphemously contra- +46 +dicted what Paul was saying. + +Then Paul and Barnabas answered them +boldly: “It was necessary to speak the word of +God to you first. But since you reject it and do not +consider yourselves worthy of eternal life, we +now turn to the Gentiles. +For this is what the +Lord has commanded us: + +47 + +‘I have made you a light for the Gentiles, +to bring salvation to the ends of the + + b + +48 + +earth.’ + +” + +district. +So they shook the dust off their feet in +And +protest against them and went to Iconium. +the disciples were filled with joy and with the +Paul and Barnabas at Iconium +Holy Spirit. + +52 + +14 + +2 + +At Iconium, Paul and Barnabas went as +usual into the Jewish synagogue, where +they spoke so well that a great number of Jews +But the unbelieving Jews +and Greeks believed. +3 +stirred up the Gentiles and poisoned their minds +against the brothers. +So Paul and Barnabas +spent considerable time there, speaking boldly +for the Lord, who affirmed the message of His +grace by enabling them to perform signs and +4 +wonders. + +5 + +The people of the city were divided. Some sided +But +with the Jews, and others with the apostles. +6 +when the Gentiles and Jews, together with their +they +rulers, set out to mistreat and stone them, +found out about it and fled to the Lycaonian cities +of Lystra and Derbe and to the surrounding +where they continued to preach the +region, +The Visit to Lystra and Derbe +gospel. +8 + +7 + +In Lystra there sat a man crippled in his feet, +9 +who was lame from birth and had never walked. +This man was listening to the words of Paul, +who looked intently at him and saw that he had +In a loud voice Paul called +faith to be healed. +out, “Stand up on your feet!” And the man jumped +11 +up and began to walk. + +10 + +13 + +12 + +When the crowds saw what Paul had done, +they lifted up their voices in the Lycaonian +language: “The gods have come down to us in +Barnabas they called Zeus, and +human form!” +Paul they called Hermes, because he was the +The priest of Zeus, whose tem- +chief speaker. +ple was just outside the city, brought bulls and +wreaths to the city gates, hoping to offer a sacri- +14 +fice along with the crowds. + +When the Gentiles heard this, they rejoiced +and glorified the word of the Lord, and all who +And +were appointed for eternal life believed. +the word of the Lord spread throughout that +50 +region. + +49 + +The Jews, however, incited the religious +women of prominence and the leading men of +the city. They stirred up persecution against Paul +and Barnabas and drove them out of their +a 41 + +b 47 + +Habakkuk 1:5 (see also LXX) + +Isaiah 49:6 + +15 + +But when the apostles Barnabas and Paul +found out about this, they tore their clothes and +“Men, why +rushed into the crowd, shouting, +are you doing this? We too are only men, human +like you. We are bringing you good news that you +should turn from these worthless things to the +living God, who made heaven and earth and sea +In past generations, +and everything in them. +Yet He has +He let all nations go their own way. + +16 + +17 + + 992 | Acts 14:18 + +not left Himself without testimony to His good- +ness: He gives you rain from heaven and fruitful +seasons, filling your hearts with food and glad- +18 +ness.” + +Even with these words, Paul and Barnabas +could hardly stop the crowds from sacrificing to +19 +them. + +20 + +Then some Jews arrived from Antioch and Ico- +nium and won over the crowds. They stoned Paul +and dragged him outside the city, presuming he +was dead. +But after the disciples had gathered +around him, he got up and went back into the +city. And the next day he left with Barnabas for +Strengthening the Disciples +Derbe. +21 + +22 + +They preached the gospel to that city and +made many disciples. Then they returned to Lys- +tra, Iconium, and Antioch, +strengthening the +souls of the disciples and encouraging them to +continue in the faith. “We must endure many +hardships to enter the kingdom of God,” they +23 +said. + +Paul and Barnabas appointed elders for them +in each church, praying and fasting as they en- +trusted them to the Lord, in whom they had be- +24 +lieved. + +25 + +After passing through Pisidia, they came to +And when they had spoken the + +Pamphylia. +26 +word in Perga, they went down to Attalia. + +27 + +From Attalia they sailed to Antioch, where +they had been commended to the grace of God +for the work they had just completed. +When +they arrived, they gathered the church together +and reported all that God had done through +them, and how He had opened the door of faith +to the Gentiles. +And they spent a long time +The Dispute over Circumcision +there with the disciples. + +28 + +15 + +2 + +Then some men came down from Judea +and were teaching the brothers, “Unless +you are circumcised according to the custom of +And after engag- +Moses, you cannot be saved.” +ing these men in sharp debate, Paul and Barna- +bas were appointed, along with some other be- +lievers, to go up to Jerusalem to see the apostles +3 +and elders about this question. + +Sent on their way by the church, they passed +a 14 +through Phoenicia and Samaria, recounting the +things. 18 Known unto God are all His works from the ages. +, a variant of Simon + +Simeon + +Greek + +b 18 + +4 + +conversion of the Gentiles and bringing great joy +On their arrival in Jerusalem, +to all the brothers. +they were welcomed by the church and apostles +and elders, to whom they reported all that God +The Council at Jerusalem +had done through them. +(Amos 9:11–15 ; Galatians 2:1–10) + +5 + +6 + +But some believers from the party of the Phari- +sees stood up and declared, “The Gentiles must +be circumcised and required to obey the law of +Moses.” +So the apostles and elders met to look +7 +into this matter. + +8 + +After much discussion, Peter got up and said to +them, “Brothers, you know that in the early days +God made a choice among you that the Gentiles +would hear from my lips the message of the gos- +And God, who knows the heart, +pel and believe. +showed His approval by giving the Holy Spirit to +He made no distinc- +them, just as He did to us. +tion between us and them, for He cleansed their +10 +hearts by faith. + +9 + +Now then, why do you test God by placing on +the necks of the disciples a yoke that neither we +nor our fathers have been able to bear? +On +the contrary, we believe it is through the grace of +the Lord Jesus that we are saved, just as they +12 +are.” + +11 + + a + +14 + +13 + +The whole assembly fell silent as they +listened to Barnabas and Paul describing the +signs and wonders God had done among the Gen- +When they had finished +tiles through them. +speaking, James declared, “Brothers, listen to + has told us how God first visited +me! +the Gentiles to take from them a people to be His +The words of the prophets agree with +own. +16 +this, as it is written: + +Simon +15 + +‘After this I will return and rebuild + +the fallen tent of David. + +17 + +Its ruins I will rebuild, +and I will restore it, + +so that the remnant of men may seek + +the Lord, + +and all the Gentiles who are called + +18 + +by My name, + + b + +19 + +says the Lord who does these things +that have been known for ages.’ + +20 + +It is my judgment, therefore, that we should +not cause trouble for the Gentiles who are turn- +Instead, we should write and tell +ing to God. + +says the Lord, who does all these + +Amos 9:11–12 (see also LXX); BYZ and TR + + 21 + +them to abstain from food polluted by idols, from +sexual immorality, from the meat of strangled +For Moses has been +animals, and from blood. +proclaimed in every city from ancient times and +The Letter to the Gentile Believers +is read in the synagogues on every Sabbath.” +22 + +Then the apostles and elders, with the whole +church, decided to select men from among them +to send to Antioch with Paul and Barnabas. They +chose Judas called Barsabbas and Silas, two lead- +and sent them with +ers among the brothers, +this letter: + +23 + +The apostles and the elders, your brothers, + +To the brothers among the Gentiles in Anti- +och, Syria, and Cilicia: +24 +Greetings. + +a + +25 + +It has come to our attention that some +went out from us without our authorization +and unsettled you, troubling your minds by +So we all agreed to choose +what they said. +26 +men to send to you along with our beloved +men who have risked +Barnabas and Paul, +27 +their lives for the name of our Lord Jesus +Therefore we are sending Judas +Christ. +and Silas to tell you in person the same +28 +things we are writing. + +29 + +It seemed good to the Holy Spirit and to us +not to burden you with anything beyond +You must +these essential requirements: +abstain from food sacrificed to idols, from +blood, from the meat of strangled animals, +and from sexual immorality. You will do well +to avoid these things. + +The Believers at Antioch Rejoice + +Farewell. + +30 + +So the men were sent off and went down to An- +31 +tioch, where they assembled the congregation +When the people read +and delivered the letter. +32 +it, they rejoiced at its encouraging message. + +Acts 16:12 | 993 + +Paul’s Second Missionary Journey Begins +(Acts 13:1–3 ; Acts 18:23–28) + +36 + +37 + +Some time later Paul said to Barnabas, “Let us +go back and visit the brothers in every town +where we proclaimed the word of the Lord, to +38 +see how they are doing.” +Barnabas wanted to +take John, also called Mark. +But Paul thought it +best not to take him, because he had deserted +them in Pamphylia and had not accompanied +39 +them in the work. + +40 + +Their disagreement was so sharp that they +parted company. Barnabas took Mark and sailed +for Cyprus, +but Paul chose Silas and left, com- +41 +mended by the brothers to the grace of the Lord. +And he traveled through Syria and Cilicia, + +Timothy Joins Paul and Silas +strengthening the churches. + +16 + +2 + +Paul came to Derbe and then to Lystra, +where he found a disciple named Timo- +thy, the son of a believing Jewish woman and a +Greek father. +The brothers in Lystra and Ico- +Paul wanted Timothy +nium spoke well of him. +to accompany him, so he took him and circum- +cised him on account of the Jews in that area, for +4 +they all knew that his father was a Greek. + +3 + +As they went from town to town, they delivered +the decisions handed down by the apostles and +elders in Jerusalem for the people to obey. +So +the churches were strengthened in the faith and +Paul’s Vision of the Macedonian +grew daily in numbers. +6 + +5 + +c + +7 + +After the Holy Spirit had prevented them from +speaking the word in the province of Asia, + they +traveled through the region of Phrygia and Gala- +tia. +And when they came to the border of Mysia, +8 +they tried to enter Bithynia, but the Spirit of Jesus +would not permit them. +So they passed by My- +9 +sia and went down to Troas. + +10 + +During the night, Paul had a vision of a man of +Macedonia standing and pleading with him, +“Come over to Macedonia and help us.” +As +soon as Paul had seen the vision, we got ready to +leave for Macedonia, concluding that God had +Lydia’s Conversion in Philippi +called us to preach the gospel to them. +(Revelation 2:18–29) + +11 + +12 + +We sailed from Troas straight to Samothrace, +From + +and the following day on to Neapolis. + +34 Silas, however, decided to + +b 33 + +33 + +Judas and Silas, who themselves were proph- +ets, said much to encourage and strengthen the +After spending some time there, they +brothers. +35 +were sent off by the brothers in peace to return +But Paul and Bar- +to those who had sent them. +nabas remained at Antioch, along with many oth- +ers, teaching and preaching the word of the Lord. +a 24 +in Asia +remain there. + +b + +by saying that you must be circumcised and keep the law. +c 6 + +BYZ and TR + +TR includes + +Literally + +; Asia was a Roman province in what is now western Turkey. + + 994 | Acts 16:13 + +a +there we went to the Roman colony of Philippi, +the leading city of that district of Macedonia. +13 +And we stayed there several days. + +On the Sabbath we went outside the city gate +along the river, where it was customary to find a +place of prayer. After sitting down, we spoke to +14 +the women who had gathered there. + +Among those listening was a woman named +Lydia, a dealer in purple cloth from the city of +Thyatira, who was a worshiper of God. The Lord +15 +opened her heart to respond to Paul’s message. +And when she and her household had been +baptized, she urged us, “If you consider me a be- +liever in the Lord, come and stay at my house.” +Paul and Silas Imprisoned +And she persuaded us. +16 + +b + +17 + +One day as we were going to the place of +prayer, we were met by a slave girl with a spirit +of divination, + who earned a large income for her +This girl followed +masters by fortune-telling. +Paul and the rest of us, shouting, “These men are +servants of the Most High God, who are proclaim- +18 +ing to you the way of salvation!” + +She continued this for many days. Eventually +Paul grew so aggravated that he turned and said +to the spirit, “In the name of Jesus Christ I com- +mand you to come out of her!” And the spirit left +19 +her at that very moment. + +20 + +When the girl’s owners saw that their hope of +making money was gone, they seized Paul and +Silas and dragged them before the authorities in +They brought them to the +the marketplace. +21 +magistrates and said, “These men are Jews and +by promot- +are throwing our city into turmoil +ing customs that are unlawful for us Romans to +22 +adopt or practice.” + +23 + +24 + +The crowd joined in the attack against Paul +and Silas, and the magistrates ordered that they +And after +be stripped and beaten with rods. +striking them with many blows, they threw them +into prison and ordered the jailer to guard them +On receiving this order, he placed +securely. +them in the inner cell and fastened their feet in +The Conversion of the Jailer +the stocks. +25 + +earthquake shook the foundations of the prison. +At once all the doors flew open and everyone’s +27 +chains came loose. + +28 + +When the jailer woke up and saw the prison +doors open, he drew his sword and was about to +kill himself, presuming that the prisoners had +escaped. +But Paul called out in a loud voice, +29 +“Do not harm yourself! We are all here!” + +30 + +Calling for lights, the jailer rushed in and fell +trembling before Paul and Silas. +Then he +brought them out and asked, “Sirs, what must I +31 +do to be saved?” + +33 + +They replied, “Believe in the Lord Jesus and +32 +you will be saved, you and your household.” +Then Paul and Silas spoke the word of the Lord +At that +to him and to everyone in his house. +hour of the night, the jailer took them and +34 +washed their wounds. And without delay, he and +all his household were baptized. +Then he +brought them into his home and set a meal be- +fore them. So he and all his household rejoiced +An Official Apology +that they had come to believe in God. +35 + +When daylight came, the magistrates sent +their officers with the order: “Release those +36 +men.” + +The jailer informed Paul: “The magistrates +have sent orders to release you. Now you may go +37 +on your way in peace.” + +But Paul said to the officers, “They beat us pub- +licly without a trial and threw us into prison, +even though we are Roman citizens. And now do +they want to send us away secretly? Absolutely +not! Let them come themselves and escort us +38 +out!” + +40 + +39 + +So the officers relayed this message to the +magistrates, who were alarmed to hear that Paul +and Silas were Roman citizens. +They came to +appease them and led them out, requesting that +they leave the city. +After Paul and Silas came +out of the prison, they went to Lydia’s house to +see the brothers and encourage them. Then they +The Uproar in Thessalonica +left the city. + +17 + +About midnight Paul and Silas were praying +and singing hymns to God, and the other prison- +a 12 +ers were listening to them. +Suddenly a strong +Python + +26 + +we went to Philippi, which is a leading city of the district of Macedonia—a colony + +When +through +they had passed +Amphipolis and Apollonia, they came to +2 +Thessalonica, where there was a Jewish syna- +b 16 +As was his custom, Paul went into the +gogue. + +a spirit of + +Literally + +Greek + +; that is, a spirit of divination named after the mythical serpent slain by Apollo + + 3 + +synagogue, and on three Sabbaths he reasoned +explaining and +with them from the Scriptures, +proving that the Christ had to suffer and rise +4 +from the dead. “This Jesus I am proclaiming to +Some of the Jews +you is the Christ,” he declared. +were persuaded and joined Paul and Silas, along +with a large number of God-fearing Greeks and +5 +quite a few leading women. + +6 + +The Jews, however, became jealous. So they +brought in some troublemakers from the mar- +ketplace, formed a mob, and sent the city into an +uproar. They raided Jason’s house in search of +Paul and Silas, hoping to bring them out to the +But when they could not find them, they +people. +dragged Jason and some other brothers before +the city officials, shouting, “These men who have +turned the world upside down have now come +and Jason has welcomed them into his +here, +home. They are all defying Caesar’s decrees, say- +8 +ing that there is another king, named Jesus!” + +7 + +9 + +On hearing this, the crowd and city officials +And they collected +were greatly disturbed. +bond from Jason and the others and then re- +The Character of the Bereans +leased them. +10 + +11 + +As soon as night had fallen, the brothers sent +Paul and Silas away to Berea. On arriving there, +Now the +they went into the Jewish synagogue. +Bereans were more noble-minded than the Thes- +salonians, for they received the message with +a +great eagerness and examined the Scriptures +12 +every day to see if these teachings were true. + +As a result, many of them believed, along with + +13 +quite a few prominent Greek women and men. + +15 + +But when the Jews from Thessalonica learned +that Paul was also proclaiming the word of God +14 +in Berea, they went there themselves to incite +The brothers immedi- +and agitate the crowds. +ately sent Paul to the coast, but Silas and Timothy +remained in Berea. +Those who escorted Paul +brought him to Athens and then returned with +instructions for Silas and Timothy to join him as +Paul in Athens +soon as possible. +16 + +While Paul was waiting for them in Athens, he +17 +was deeply disturbed in his spirit to see that the +a 11 +So he reasoned in the +city was full of idols. +Mars Hill + +Literally + +From one blood + +e 28 + +Acts 17:29 | 995 + +synagogue with the Jews and God-fearing Gen- +tiles, and in the marketplace with those he met +18 +each day. + +Some Epicurean and Stoic philosophers also +began to debate with him. Some of them asked, +“What is this babbler trying to say?” Others said, +“He seems to be advocating foreign gods.” They +said this because Paul was proclaiming the good +19 +news of Jesus and the resurrection. + +b + +So they took Paul and brought him to the +Areopagus, + where they asked him, “May we +20 +know what this new teaching is that you are pre- +senting? +For you are bringing some strange +notions to our ears, and we want to know what +21 +they mean.” + +Now all the Athenians and foreigners who +lived there spent their time doing nothing more +Paul’s Address in the Areopagus +than hearing and articulating new ideas. +22 + + c + +Then Paul stood up in the meeting + + of the Are- +23 +opagus and said, “Men of Athens, I see that in +every way you are very religious. +For as I +walked around and examined your objects of +worship, I even found an altar with this inscrip- +tion: + +TO AN UNKNOWN GOD. + +Therefore what you worship as something un- +24 +known, I now proclaim to you. + +25 + +The God who made the world and everything +in it is the Lord of heaven and earth and does not +live in temples made by human hands. +Nor is +He served by human hands, as if He needed any- + d +thing, because He Himself gives everyone life and +breath and everything else. + He +made every nation of men, that they should in- +habit the whole earth; and He determined their +appointed times and the boundaries of their +27 +lands. + +From one man + +26 + + f + + e + +29 + +28 + +God intended that they would seek Him and +perhaps reach out for Him and find Him, though +He is not far from each one of us. +‘For in Him +we live and move and have our being.’ + As some +of your own poets have said, ‘We are His off- +spring.’ +Therefore, being offspring of God, we +should not think that the Divine Being is like gold +or silver or stone, an image formed by man’s skill +and imagination. + +Ares Hill + +b 19 + +c 22 + +in the middle + +d 26 + +From one +Or +f 28 + + or +; BYZ +This is + +with great eagerness, every day examining the Writings, whether these things were so. + +; also in verse 22 and added for clarity in verse 33 + +Literally +This is probably a quote from the Cretan philosopher Epimenides of Knossos. + +Literally + +and TR +probably a quote from the poem “Phainomena” by the Cilician philosopher Aratus. + + 996 | Acts 17:30 + +30 + +31 + +Although God overlooked the ignorance of ear- +lier times, He now commands all people every- +For He has set a day when +where to repent. +He will judge the world with justice by the Man +He has appointed. He has given proof of this to +32 +everyone by raising Him from the dead.” + +34 + +33 + +When they heard about the resurrection of the +dead, some began to mock him, but others said, +“We want to hear you again on this topic.” +At +that, Paul left the Areopagus. + joined +him and believed, including Dionysius the Areop- +agite, a woman named Damaris, and others who +Paul Ministers in Corinth +were with them. +(1 Corinthians 1:1–3 ; 2 Corinthians 1:1–2) + +But some + + a + +18 + +2 + +After this, Paul left Athens and went to +There he found a Jew named +Corinth. +Aquila, a native of Pontus, who had recently +come from Italy with his wife Priscilla because +Claudius had ordered all the Jews to leave Rome. +and he stayed and +Paul went to visit them, +worked with them because they were tentmak- +4 +ers by trade, just as he was. + +3 + +5 + +Every Sabbath he reasoned in the synagogue, +And +trying to persuade Jews and Greeks alike. +when Silas and Timothy came down from Mace- +6 +donia, Paul devoted himself fully to the word, +But +testifying to the Jews that Jesus is the Christ. +when they opposed and insulted him, he shook +out his garments and told them, “Your blood be +on your own heads! I am innocent of it. From now +7 +on I will go to the Gentiles.” +b + +8 +to the house of Titus Justus, + +So Paul left the synagogue and went next door + a worshiper of God. +Crispus, the synagogue leader, and his whole +household believed in the Lord. And many of the +Corinthians who heard the message believed and +9 +were baptized. + +One night the Lord spoke to Paul in a vision: “Do +10 +not be afraid; keep on speaking; do not be silent. +For I am with you and no one will lay a hand +11 +on you, because I have many people in this city.” +So Paul stayed for a year and a half, teaching + +Paul before Gallio +the word of God among the Corinthians. +12 + +13 + +“This man is per- +before the judgment seat. +suading the people to worship God in ways con- +14 +trary to the law,” they said. + +15 + +But just as Paul was about to speak, Gallio told +the Jews, “If this matter involved a wrongdoing +or vicious crime, O Jews, it would be reasonable +But since it is a +for me to hear your complaint. +dispute about words and names and your own +16 +law, settle it yourselves. I refuse to be a judge of +And he drove them away from +such things.” +17 +the judgment seat. + + c + +At this, the crowd + + seized Sosthenes the +synagogue leader and beat him in front of the +judgment seat. But none of this was of concern to +Paul Returns to Antioch +Gallio. +18 + +Paul remained in Corinth for quite some time +before saying goodbye to the brothers. He had +his head shaved in Cenchrea to keep a vow he +had made, and then he sailed for Syria, accompa- +19 +nied by Priscilla and Aquila. + +20 + +When they reached Ephesus, Paul left Priscilla +and Aquila. He himself went into the synagogue +there and reasoned with the Jews. +When they +21 +asked him to stay for a while longer, he declined. + to you + +But as he left, he said, “I will come back + +22 +if God is willing.” And he set sail from Ephesus. + + d + +e + +When Paul had landed at Caesarea, he went up + Then he + +and greeted the church at Jerusalem. +Paul’s Third Missionary Journey Begins +went down to Antioch. +(Acts 13:1–3 ; Acts 15:36–41) + +23 + +After Paul had spent some time in Antioch, he +traveled from place to place throughout the re- +gion of Galatia and Phrygia, strengthening all the +24 +disciples. + +f + +25 + +Meanwhile a Jew named Apollos, a native of Al- +exandria, came to Ephesus. He was an eloquent +man, well versed in the Scriptures. +He had +been instructed in the way of the Lord and was +fervent in spirit. He spoke and taught accurately +26 +about Jesus, + though he knew only the baptism of +And he began to speak boldly in the syn- +John. +agogue. When Priscilla and Aquila heard him, +they took him aside and explained to him the way +all +of God more accurately. + +Justus + +c 17 + +While Gallio was proconsul of Achaia, the Jews +a 34 +coordinated an attack on Paul and brought him +the Greeks +he went up and greeted the church + +they all +I must by all means keep this feast that comes in Jerusalem, but I will come back +ECM; SBL, NE, and WH + +some men +d 21 + +about the Lord + +; BYZ and TR + +Titius Justus + +Literally + +Literally + +f 25 + +b 7 + +e 22 +; BYZ and TR + +BYZ and TR + +BYZ and TR + +Literally + + 27 + +28 + +When Apollos resolved to cross over to Achaia, +the brothers encouraged him and wrote to the +disciples there to welcome him. On his arrival, he +was a great help to those who by grace had be- +For he powerfully refuted the Jews in +lieved. +public debate, proving from the Scriptures that +The Holy Spirit Received at Ephesus +Jesus is the Christ. +(Acts 10:44–48) + +19 + + a + +While Apollos was at Corinth, Paul +2 + and came +passed through the interior +and +to Ephesus. There he found some disciples +asked them, “Did you receive the Holy Spirit +when you became believers?” + + “No,” they answered, “we have not even heard +3 +that there is a Holy Spirit.” + +“Into what, then, were you baptized?” Paul + +asked. +4 +“The baptism of John,” they replied. + +Paul explained: “John’s baptism was a baptism +of repentance. He told the people to believe in the +5 +One coming after him, that is, in Jesus.” + +6 +On hearing this, they were baptized into the +name of the Lord Jesus. +And when Paul laid his +hands on them, the Holy Spirit came upon them, +7 +and they spoke in tongues and prophesied. +Paul Ministers in Ephesus +(Ephesians 1:1–2 ; Revelation 2:1–7) + +There were about twelve men in all. + +8 + +9 + +Then Paul went into the synagogue and spoke +boldly there for three months, arguing persua- +sively about the kingdom of God. +But when +some of them stubbornly refused to believe and +publicly maligned the Way, Paul took his disci- +ples and left the synagogue to conduct daily dis- +cussions in the lecture hall of Tyrannus. +This +continued for two years, so that everyone who +lived in the province of Asia, + Jews and Greeks +11 +alike, heard the word of the Lord. + +10 + +b + + c + +12 + +God did extraordinary miracles through the +hands of Paul, + and +aprons that had touched him were taken to the +Seven Sons of Sceva +sick, and the diseases and evil spirits left them. +13 + +so that even handkerchiefs + +Acts 19:27 | 997 + +14 + +Jesus over those with evil spirits. They would +say, “I command you by Jesus, whom Paul pro- +Seven sons of Sceva, a Jewish chief +claims.” +15 +priest, were doing this. + +But one day the evil spirit responded, “Jesus I +16 +know, and I know about Paul, but who are you?” +Then the man with the evil spirit jumped on +them and overpowered them all. The attack was +so violent that they ran out of the house naked +17 +and wounded. + +18 + +This became known to all the Jews and Greeks +living in Ephesus, and fear came over all of them. +So the name of the Lord Jesus was held in high +Many who had believed now came for- +honor. +19 +ward, confessing and disclosing their deeds. +And a number of those who had practiced +magic arts brought their books and burned them +in front of everyone. When the value of the books +was calculated, the total came to fifty thousand +So the word of the Lord powerfully +drachmas. +The Riot in Ephesus +continued to spread and prevail. +21 + +20 + +d + + e + +After + +these + +things had happened, Paul +resolved in the Spirit + to go to Jerusalem, passing +through Macedonia and Achaia. “After I have +22 +been there,” he said, “I must see Rome as well.” +He sent two of his helpers, Timothy and +Erastus, to Macedonia, while he stayed for a time +23 +in the province of Asia. + + f + +24 + + about the Way. + +About that time there arose a great disturb- +ance +It began with a silver- +smith named Demetrius who made silver shrines +of Artemis, bringing much business + to the +25 +craftsmen. + + g + +26 + +Demetrius assembled the craftsmen, along +with the workmen in related trades. “Men,” +he said, “you know that this business is our +And you can see and hear +source of prosperity. +that not only in Ephesus, but in nearly the whole +province of Asia, this Paul has persuaded a great +number of people to turn away. He says that +There is +man-made gods are no gods at all. +danger not only that our business will fall into +disrepute, but also that the temple of the great +goddess Artemis will be discredited and her maj- +esty deposed—she who is worshiped by all the +province of Asia and the whole world.” + +27 + +Now there were some itinerant Jewish exor- +a 1 +cists who tried to invoke the name of the Lord + +the highland + +b 10 + +c 12 + +d 19 + +fifty thousand pieces of silver. + +in Asia +soudaria +Lit. + +Or + +e 21 + +26, 27, and 31. +day’s wages. + +resolved in spirit +Greek + +f 23 + +; Asia was a Roman province in what is now western Turkey; similarly in verses 22, + A drachma was a silver coin worth about one + +there arose no little disturbance + +bringing no little business + +g 24 + +Or + +Or + +Lit. + +Lit. + + 998 | Acts 19:28 + +28 + +29 + +When the men heard this, they were enraged +and began shouting, “Great is Artemis of the +Ephesians!” +Soon the whole city was in disar- +ray. They rushed together into the theatre, drag- +ging with them Gaius and Aristarchus, Paul’s +30 +traveling companions from Macedonia. + +31 + + a + +Paul wanted to go before the assembly, but the +Even some of +disciples would not allow him. +Paul’s friends who were officials of the province + sent word to him, begging him not to +of Asia +32 +venture into the theatre. + +33 + +Meanwhile the assembly was in turmoil. Some +were shouting one thing and some another, and +most of them did not even know why they were +The Jews in the crowd pushed Alexan- +there. +der forward to explain himself, and he motioned +34 +for silence so he could make his defense to the +But when they realized that he was a +people. +Jew, they all shouted in unison for about two +35 +hours: “Great is Artemis of the Ephesians!” + +36 + +Finally the city clerk quieted the crowd and de- +clared, “Men of Ephesus, doesn’t everyone know +that the city of Ephesus is guardian of the temple +of the great Artemis and of her image, which fell +Since these things are undenia- +from heaven? +37 +ble, you ought to be calm and not do anything +For you have brought these men here, +rash. +though they have neither robbed our temple nor +38 +blasphemed our goddess. + +39 + +So if Demetrius and his fellow craftsmen have +a complaint against anyone, the courts are open +and proconsuls are available. Let them bring +But if you +charges against one another there. +40 +are seeking anything beyond this, it must be set- +For we are in jeopardy +tled in a legal assembly. +of being charged with rioting for today’s events, +and we have no justification to account for this +41 +commotion.” + +After he had said this, he dismissed the + +Paul in Macedonia and Greece +assembly. + +And when the Jews formed a plot against him as +he was about to sail for Syria, he decided to go +4 +back through Macedonia. + +b + +5 + +6 + +Paul was accompanied by Sopater son of +Pyrrhus from Berea, Aristarchus and Secundus +from Thessalonica, Gaius from Derbe, Timothy, +and Tychicus and Trophimus from the province +These men went on ahead and waited +of Asia. +And after the Feast of Unleav- +for us in Troas. +ened Bread, + we sailed from Philippi, and five +days later we rejoined them in Troas, where we +Eutychus Revived at Troas (2 Kings 4:18–37) +stayed seven days. +7 + +c + +On the first day of the week we came together +to break bread. Since Paul was ready to leave the +next day, he talked to them and kept on speaking +8 +until midnight. + +9 + +Now there were many lamps in the upper room +And a certain young +where we were gathered. +man named Eutychus, seated in the window, was +sinking into a deep sleep as Paul talked on and +on. When he was sound asleep, he fell from the +But Paul +third story and was picked up dead. +went down, threw himself on the young man, and +embraced him. “Do not be alarmed!” he said. “He +11 +is still alive!” + +10 + +12 + +Then Paul went back upstairs, broke bread, +and ate. And after speaking until daybreak, he +And the people were greatly re- +departed. +From Troas to Miletus +lieved to take the boy home alive. +13 + +We went on ahead to the ship and sailed to As- +sos, where we were to take Paul aboard. He had +14 +arranged this because he was going there on foot. +And when he met us at Assos, we took him +Sailing on +aboard and went on to Mitylene. +from there, we arrived the next day opposite +Chios. The day after that we arrived at Samos, +16 +and + + on the following day we came to Miletus. + +15 + + d + +Paul had decided to sail past Ephesus to avoid +spending time in the province of Asia, because he +was in a hurry to reach Jerusalem, if possible, by +Paul’s Farewell to the Ephesians +the day of Pentecost. +17 + +e + +From Miletus, Paul sent to Ephesus for the el- + +20 + +When the uproar had ended, Paul sent +for the disciples. And after encouraging +2 +them, he said goodbye to them and left for Mace- +After traveling through that area and +donia. +speaking many words of encouragement, he ar- +a 31 +where he stayed three months. +rived in Greece, +c 6 +Or +maining at Trogyllium, +in verses 16 and 18. +of Harvest + +friends who were Asiarchs + +e 16 +Literally + +the Feast of Weeks + +from Asia + +Literally + +b 4 + +3 + +after the days of the Unleavened + + (see Exodus 23:16) or + + (see Exodus 34:22). + +That is, Shavuot, the late spring feast of pilgrimage to Jerusalem; it is also known as + +ders of the church. + +and, after re- +; Asia was a Roman province in what is now western Turkey; also +the Feast + +d 15 + +; see Exodus 12:14–20. + +BYZ and TR + + 18 + +36 + +Acts 21:14 | 999 + +19 + +20 + +When they came to him, he said, “You know +how I lived the whole time I was with you, from +I +the first day I arrived in the province of Asia. +served the Lord with great humility and with +tears, especially in the trials that came upon me +I did not shrink +through the plots of the Jews. +back from declaring anything that was helpful to +you as I taught you publicly and from house to +testifying to Jews and Greeks alike +house, +a +about repentance to God and faith in our Lord Je- +22 +sus Christ. + +21 + +24 + +23 + +And now, compelled by the Spirit, I am +going to Jerusalem, not knowing what will hap- +I only know that in town after +pen to me there. +town the Holy Spirit warns me that chains and +But I consider my life of +afflictions await me. +no value to me, if only I may finish my course and +complete the ministry I have received from the +Lord Jesus—the ministry of testifying to the good +25 +news of God’s grace. + +26 + +Now I know that none of you among whom I +have preached the kingdom will see my face +Therefore I testify to you this day that I +again. +am innocent of the blood of all men. +For I did +not shrink back from declaring to you the whole +28 +will of God. + +27 + +b + +c + +d + +Keep watch over yourselves and the entire +flock of which the Holy Spirit has made you over- +29 + which +seers. Be shepherds of the church of God, +I know +He purchased with His own blood. +30 +that after my departure, savage wolves will come +Even +in among you and will not spare the flock. +from your own number, men will rise up and dis- +31 +tort the truth to draw away disciples after them. +Therefore be alert and remember that for +three years I never stopped warning each of you +32 +night and day with tears. + +And now I commit you to God and to the word +of His grace, which can build you up and give you +33 +an inheritance among all who are sanctified. + +34 + +I have not coveted anyone’s silver or gold +You yourselves know that these +or clothing. +35 +hands of mine have ministered to my own needs +In everything, I +and those of my companions. +showed you that by this kind of hard work we +must help the weak, remembering the words of +the Lord Jesus Himself: ‘It is more blessed to give +than to receive.’” +a 21 +Lord + +of the Lord and God +ECM, TR, and Tischendorf; SBL, NE, BYZ, and WH +; BYZ and GOC + +d 28 + +Or + +37 + +When Paul had said this, he knelt down with +38 +They all wept openly as +all of them and prayed. +They were +they embraced Paul and kissed him. +especially grieved by his statement that they +would never see his face again. Then they accom- +Paul’s Journey to Jerusalem +panied him to the ship. + +21 + +After we had torn ourselves away from +them, we sailed directly to Cos, and the +2 +next day on to Rhodes, and from there to Patara. +3 +Finding a ship crossing over to Phoenicia, we +boarded it and set sail. +After sighting Cyprus +and passing south of it, we sailed on to Syria and +landed at Tyre, where the ship was to unload its +4 +cargo. + +5 + +We sought out the disciples in Tyre and stayed +with them seven days. Through the Spirit they +But +kept telling Paul not to go up to Jerusalem. +when our time there had ended, we set out on +our journey. All the disciples, with their wives +and children, accompanied us out of the city and +And +knelt down on the beach to pray with us. +after we had said our farewells, we went aboard +7 +the ship, and they returned home. + +6 + +When we had finished our voyage from Tyre, +we landed at Ptolemais, where we greeted the +Paul Visits Philip the Evangelist +brothers and stayed with them for a day. +8 + +Leaving the next day, we went on to Caesarea +and stayed at the home of Philip the evangelist, +who was one of the Seven. +He had four unmar- +10 +ried daughters who prophesied. + +9 + +e + +After we had been there several days, a +11 +prophet named Agabus came down from Judea. +Coming over to us, he took Paul’s belt, bound +his own feet and hands, and said, “The Holy Spirit +says: ‘In this way the Jews of Jerusalem will bind +the owner of this belt and hand him over to the +When we heard this, we and the +Gentiles.’ +people there pleaded with Paul not to go up to +13 +Jerusalem. + +12 + +” + +14 + +Then Paul answered, “Why are you weeping +and breaking my heart? I am ready not only to be +bound, but also to die in Jerusalem for the name +When he would not be dis- +of the Lord Jesus.” +suaded, we quieted down and said, “The Lord’s +will be done.” + +of the + +b 26 + +c 28 + +See Ezekiel 33:8–9. +See Acts 6:5. + +Tischendorf + +our Lord Jesus + +with the blood of His own Son. + +e 8 + + 1000 | Acts 21:15 + +15 + +16 + +After these days, we packed up and went on to +Some of the disciples from Caesa- +Jerusalem. +rea accompanied us, and they took us to stay at +the home of Mnason the Cypriot, an early disci- +ple. Paul’s Arrival at Jerusalem +17 + +18 + +19 + +When we arrived in Jerusalem, the brothers +welcomed us joyfully. +The next day Paul went +in with us to see James, and all the elders were +Paul greeted them and recounted one +present. +by one the things that God had done among the +20 +Gentiles through his ministry. + +When they heard this, they glorified God. Then +they said to Paul, “You see, brother, how many +21 +thousands of Jews have believed, and all of them +But they are under the +are zealous for the law. +impression that you teach all the Jews who live +among the Gentiles to forsake Moses, telling +them not to circumcise their children or observe +What then should we do? They +our customs. +23 +will certainly hear that you have come. + +22 + +24 + +Therefore do what we advise you. There are +four men with us who have taken a vow. +Take +these men, purify yourself along with them, and +pay their expenses so they can have their heads +shaved. Then everyone will know that there is no +truth to these rumors about you, but that you +25 +also live in obedience to the law. + +As for the Gentile believers, we have written to +them our decision that they must abstain from +food sacrificed to idols, from blood, from the +meat of strangled animals, and from sexual im- +26 +morality.” + +So the next day Paul took the men and purified +himself along with them. Then he entered the +temple to give notice of the date when their pu- +rification would be complete and the offering +Paul Seized at the Temple +would be made for each of them. +27 + + a + +28 + +When the seven days were almost over, some + saw Paul at the +Jews from the province of Asia +temple. They stirred up the whole crowd and +crying out, “Men of Israel, help us! +seized him, +This is the man who teaches everyone every- +where against our people and against our law +and against this place. Furthermore, he has +brought Greeks into the temple and defiled this +a 27 +in the Hebrew language +cohort + +in Aramaic + +from Asia + +c 40 +Literally + +29 + +For they had previously seen +holy place.” +Trophimus the Ephesian with him in the city, and +they assumed that Paul had brought him into the +30 +temple. + + b + +31 + +The whole city was stirred up, and the people +rushed together. They seized Paul and dragged +him out of the temple, and at once the gates were +While they were trying to kill him, the +shut. +32 + received a +commander of the Roman regiment +Im- +report that all Jerusalem was in turmoil. +mediately he took some soldiers and centurions +and ran down to the crowd. When the people saw +the commander and the soldiers, they stopped +33 +beating Paul. + +The commander came up and arrested Paul, +ordering that he be bound with two chains. Then +34 +he asked who he was and what he had done. + +35 + +Some in the crowd were shouting one thing, +and some another. And since the commander +could not get at the truth because of the uproar, +he ordered that Paul be brought into the bar- +When Paul reached the steps, he had to +racks. +be carried by the soldiers because of the violence +For the crowd that followed him +of the mob. +Paul Addresses the Crowd +kept shouting, “Away with him!” +37 + +36 + +As they were about to take Paul into the +barracks, he asked the commander, “May I say +something to you?” + +38 + +“Aren’t you + “Do you speak Greek?” he replied. +the Egyptian who incited a rebellion some time +ago and led four thousand members of the Assas- +39 +sins into the wilderness?” + +But Paul answered, “I am a Jew from Tarsus in +Cilicia, a citizen of no ordinary city. Now I beg you +40 +to allow me to speak to the people.” + + c + +Having received permission, Paul stood on the +steps and motioned to the crowd. A great hush +came over the crowd, and he addressed them in +Paul’s Defense to the Crowd +Hebrew: +(Acts 9:1–19 ; Acts 26:1–23) + +22 + +2 +d + +“Brothers and fathers, listen now to my +When they heard +defense before you.” +him speak to them in Hebrew, + they became even +more silent. +the commander of the +in Aramaic +d 2 + +in the Hebrew language + +b 31 + +; Asia was a Roman province in what is now western Turkey. + +Literally + +Or + +; literally + +Or + +; literally + + 3 + +“I am a Jew, born in Tarsus +Then Paul declared, +of Cilicia, but raised in this city. I was educated at +the feet of Gamaliel in strict conformity to the law +of our fathers. I was just as zealous for God as any +4 +of you are today. + +5 + +I persecuted this Way even to the death, detain- +ing both men and women and throwing them +into prison, +as the high priest and the whole +Council can testify about me. I even obtained let- +ters from them to their brothers in Damascus, +and I was on my way to apprehend these people +6 +and bring them to Jerusalem to be punished. + +7 + +About noon as I was approaching Damascus, +suddenly a bright light from heaven flashed +around me. +I fell to the ground and heard a voice +8 +say to me, ‘Saul, Saul, why do you persecute Me?’ + +‘Who are You, Lord?’ I asked. + +9 + +‘I am Jesus of Nazareth, whom you are persecut- +My companions saw the light, +ing,’ He replied. +but they could not understand the voice of the +10 +One speaking to me. + +Then I asked, ‘What should I do, Lord?’ + +‘Get up and go into Damascus,’ He told me. ‘There +you will be told all that you have been appointed +11 +to do.’ + +12 + +Because the brilliance of the light had blinded +me, my companions led me by the hand into Da- +mascus. +There a man named Ananias, a devout +13 +observer of the law who was highly regarded by +all the Jews living there, +came and stood beside +me. ‘Brother Saul,’ he said, ‘receive your sight.’ +14 +And at that moment I could see him. + +16 + +15 + +Then he said, ‘The God of our fathers has +appointed you to know His will and to see the +Righteous One and to hear His voice. +You will +be His witness to everyone of what you have seen +And now what are you waiting for? +and heard. +Get up, be baptized, and wash your sins away, +17 +calling on His name.’ + + a + +Later, when I had returned to Jerusalem and +18 +was praying at the temple, I fell into a trance + saying to me, ‘Hurry! Leave +Jerusalem quickly, because the people here will +19 +not accept your testimony about Me.’ + +and saw the Lord + +‘Lord,’ I answered, ‘they know very well that in +one synagogue after another I imprisoned and +And when the +beat those who believed in You. +c 30 +martyr +a 18 +blood of Your witness + Stephen was shed, I stood + +saw Him + +b 20 + +20 + + b + +Acts 23:2 | 1001 + +there giving my approval and watching over the +21 +garments of those who killed him.’ + +Then He said to me, ‘Go! I will send you far + +Paul the Roman Citizen +away to the Gentiles.’” +22 + +The crowd listened to Paul until he made this +statement. Then they lifted up their voices and +shouted, “Rid the earth of him! He is not fit to +23 +live!” + +24 + +As they were shouting and throwing off their +the com- +cloaks and tossing dust into the air, +mander ordered that Paul be brought into the +barracks. He directed that Paul be flogged and +interrogated to determine the reason for this +25 +outcry against him. + +But as they stretched him out to strap him +down, Paul said to the centurion standing there, +“Is it lawful for you to flog a Roman citizen with- +26 +out a trial?” + +On hearing this, the centurion went and re- +ported it to the commander. “What are you going +27 +to do?” he said. “This man is a Roman citizen.” + +The commander went to Paul and asked, “Tell + +me, are you a Roman citizen?” +28 +“Yes,” he answered. + +“I paid a high price for my citizenship,” said the + +commander. +29 +“But I was born a citizen,” Paul replied. + +At once those who were about to interrogate +Paul stepped back, and the commander himself +was alarmed when he realized that he had put a +30 +Roman citizen in chains. + +The next day the commander, wanting to learn +the real reason Paul was accused by the Jews, re- +leased him and ordered the chief priests and the + to assemble. Then he brought +whole Sanhedrin +Paul before the Sanhedrin +Paul down and had him stand before them. + + c + + d + +Paul looked directly at the Sanhedrin +and said, “Brothers, I have conducted +myself before God in all good conscience to this +2 +day.” + +23 + +Literally + +Or + +Or + +Or + +; also in verses 6, 15, 20, and 28 + +At this, the high priest Ananias ordered those + +the whole Council + +standing near Paul to strike him on the mouth. + +the Council + +d 1 + + 1002 | Acts 23:3 + +3 + +18 + +Then Paul said to him, “God will strike you, you +whitewashed wall! You sit here to judge me ac- +cording to the law, yet you yourself violate the +4 +law by commanding that I be struck.” + +So the centurion took him to the commander +and said, “Paul the prisoner sent and asked me to +bring this young man to you. He has something +19 +to tell you.” + +But those standing nearby said, “How dare you + +5 +insult the high priest of God!” + +“Brothers,” Paul replied, “I was not aware that +he was the high priest, for it is written: ‘Do not +6 +speak evil about the ruler of your people.’ + +” + + a + +Then Paul, knowing that some of them were +Sadducees and the others Pharisees, called out in +the Sanhedrin, “Brothers, I am a Pharisee, the son +of a Pharisee. It is because of my hope in the res- +7 +urrection of the dead that I am on trial.” + +As soon as he had said this, a dispute broke out +8 +between the Pharisees and Sadducees, and the +assembly was divided. +For the Sadducees say +that there is neither a resurrection nor angels +nor spirits, but the Pharisees acknowledge them +9 +all. + +A great clamor arose, and some scribes from +the party of the Pharisees got up and contended +sharply, “We find nothing wrong with this man. +10 +What if a spirit or an angel has spoken to him?” +The dispute grew so violent that the com- +mander was afraid they would tear Paul to pieces. +He ordered the soldiers to go down and remove +11 +him by force and bring him into the barracks. + +The following night the Lord stood near Paul +and said, “Take courage! As you have testified +about Me in Jerusalem, so also you must testify in +The Plot to Kill Paul (John 16:1–4) +Rome.” +12 + +13 + +When daylight came, the Jews formed a con- +spiracy and bound themselves with an oath not +to eat or drink until they had killed Paul. +More +14 +than forty of them were involved in this plot. +They went to the chief priests and elders and +said, “We have bound ourselves with a solemn +15 +oath not to eat anything until we have killed Paul. +Now then, you and the Sanhedrin petition the +commander to bring him down to you on the pre- +text of examining his case more carefully. We are +16 +ready to kill him on the way.” + +b + +17 +the plot, + +But when the son of Paul’s sister heard about + he went into the barracks and told Paul. +Then Paul called one of the centurions and +said, “Take this young man to the commander; he +a 5 +has something to tell him.” + +the ambush + +b 16 + +c 23 + +The commander took the young man by the +hand, drew him aside, and asked, “What do you +20 +need to tell me?” + +21 + +He answered, “The Jews have agreed to ask +you to bring Paul to the Sanhedrin tomorrow on +the pretext of acquiring more information about +Do not let them persuade you, because +him. +more than forty men are waiting to ambush him. +They have bound themselves with an oath not to +eat or drink until they have killed him; they are +22 +ready now, awaiting your consent.” + +So the commander dismissed the young man +and instructed him, “Do not tell anyone that you +Paul Sent to Felix +have reported this to me.” +23 + +Then he called two of his centurions and said, +“Prepare two hundred soldiers, seventy horse- +men, and two hundred spearmen to go to Caesa- +rea in the third hour of the night. +Provide +mounts for Paul to take him safely to Governor +26 +Felix.” + +And he wrote the following letter: + +24 + +25 + +c + +Claudius Lysias, + +To His Excellency, Governor Felix: +27 +Greetings. + +This man was seized by the Jews, and they +were about to kill him when I came with my +28 +troops to rescue him. For I had learned that +and since I wanted +he is a Roman citizen, +to understand their charges against him, I +brought him down to their Sanhedrin. +I +found that the accusation involved questions +about their own law, but there was no charge +30 +worthy of death or imprisonment. + +29 + +When I was informed that there was a plot +against the man, I sent him to you at once. I +also instructed his accusers to present their +case against him before you. + +31 + +32 + +So the soldiers followed their orders and +brought Paul by night to Antipatris. +The next +day they returned to the barracks and let the +horsemen go on with him. +When the horsemen +arrived in Caesarea, they delivered the letter to +34 +the governor and presented Paul to him. + +33 + +The governor read the letter and asked what +province Paul was from. Learning that he was + +Exodus 22:28 (see also LXX) + +Or + +That is, at nine tonight + + 35 + +18 + +Acts 25:6 | 1003 + +he said, “I will hear your case +from Cilicia, +when your accusers arrive.” Then he ordered +that Paul be kept under guard in Herod’s Praeto- +Tertullus Prosecutes Paul +rium. + +24 + +Five days later the high priest Ananias + a +came down with some elders and a + named Tertullus, who presented to the + +lawyer +2 +governor their case against Paul. + +3 + +When Paul had been called in, Tertullus opened +the prosecution: “Because of you, we have en- +joyed a lasting peace, and your foresight has +brought improvements to this nation. +In every +4 +way and everywhere, most excellent Felix, we +acknowledge this with all gratitude. +But in +order not to delay you any further, I beg your +5 +indulgence to hear us briefly. + +6 + +We have found this man to be a pestilence, stir- +ring up dissension among the Jews all over the +world. He is a ringleader of the sect of the Naza- +8 +renes, +and he even tried to desecrate the +temple; so we seized him. +By examining him +yourself, you will be able to learn the truth about +9 +all our charges against him.” + +b + +The Jews concurred, asserting that these + +Paul’s Defense to Felix +charges were true. +10 + +11 + +When the governor motioned for Paul to +speak, he began his response: “Knowing that you +have been a judge over this nation for many +years, I gladly make my defense. +You can verify +12 +for yourself that no more than twelve days ago I +went up to Jerusalem to worship. +Yet my ac- +cusers did not find me debating with anyone in +the temple or riling up a crowd in the synagogues +or in the city. +Nor can they prove to you any of +14 +their charges against me. + +13 + +I do confess to you, however, that I worship the +God of our fathers according to the Way, which +they call a sect. I believe everything that is laid +15 +down by the Law and written in the Prophets, +and I have the same hope in God that they +themselves cherish, that there will be a resurrec- +tion of both the righteous and the wicked. +In +this hope, I strive always to maintain a clear con- +17 +science before God and man. + +16 + +19 + +20 + +At the time they found me in the +offerings. +temple, I was ceremonially clean and was not in- + c +citing a crowd or an uproar. But there are some +Jews from the province of Asia +who ought to +appear before you and bring charges, if they have +Otherwise, let these men +anything against me. +d +state for themselves any crime they found in me +when I stood before the Sanhedrin, +unless it +was this one thing I called out as I stood in their +presence: ‘It is concerning the resurrection of the +The Verdict Postponed +dead that I am on trial before you today.’ +22 + +21 + +” + +23 + +Then Felix, who was well informed about the +Way, adjourned the hearing and said, “When Lys- +ias the commander comes, I will decide your +He ordered the centurion to keep Paul +case.” +under guard, but to allow him some freedom and +24 +permit his friends to minister to his needs. + +25 + +After several days, Felix returned with his wife +Drusilla, who was a Jewess. He sent for Paul +and listened to him speak about faith in Christ Je- +sus. +As Paul expounded on righteousness, self- +control, and the coming judgment, Felix became +frightened and said, “You may go for now. When +I find the time, I will call for you.” +At the same +time, he was hoping that Paul would offer him a +bribe. So he sent for Paul frequently and talked +27 +with him. + +26 + +After two years had passed, Felix was suc- +ceeded by Porcius Festus. And wishing to do the +Paul’s Trial before Festus +Jews a favor, Felix left Paul in prison. + +25 + +2 + +3 + +Three days after his arrival in the prov- +ince, Festus went up from Caesarea to Je- +rusalem, +where the chief priests and Jewish +leaders presented their case against Paul. They +to grant them a concession against +urged Festus +Paul by summoning him to Jerusalem, because +they were preparing an ambush to kill him along +4 +the way. + +5 + +But Festus replied, “Paul is being held in Caesa- +So if this +rea, and I myself am going there soon. +man has done anything wrong, let some of your +leaders come down with me and accuse him +6 +there.” + +After several years, then, I returned to Jerusa- +a 1 +lem to bring alms to my people and to present +with great force and took him out of our hands, 8 ordering his accusers to come before you. + +an orator + +b 6 + +and we would have judged him according to our law. 7 But Lysias the commander came + +After spending no more than eight or ten days +with them, Festus went down to Caesarea. The +next day he sat on the judgment seat and ordered +c 18 + +from Asia + +Or + +TR includes + +d 20 + +the Council + +was a Roman province in what is now western Turkey. + +Or + +Literally + +; Asia + + 1004 | Acts 25:7 + +7 + +22 + +When Paul arrived, the +that Paul be brought in. +Jews who had come down from Jerusalem stood +around him, bringing many serious charges that +8 +they could not prove. + +Then Agrippa said to Festus, “I would like to + +hear this man myself.” +Paul before Agrippa and Bernice +“Tomorrow you will hear him,” Festus declared. +23 + +Then Paul made his defense: “I have committed +no offense against the law of the Jews or against +9 +the temple or against Caesar.” + +But Festus, wishing to do the Jews a favor, said +to Paul, “Are you willing to go up to Jerusalem to +Paul Appeals to Caesar +stand trial before me on these charges?” +10 + +11 + +Paul replied, “I am standing before the judg- +ment seat of Caesar, where I ought to be tried. I +have done nothing wrong to the Jews, as you +yourself know very well. +If, however, I am +guilty of anything worthy of death, I do not +refuse to die. But if there is no truth to their ac- +cusations against me, no one has the right to +12 +hand me over to them. I appeal to Caesar!” + +Then Festus conferred with his council and re- +plied, “You have appealed to Caesar. To Caesar +Festus Consults Agrippa +you will go!” +13 + +The next day Agrippa and Bernice came with +great pomp and entered the auditorium, along +with the commanders and leading men of the +24 +city. And Festus ordered that Paul be brought in. + +Then Festus said, “King Agrippa and all who +are present with us, you see this man. The whole +Jewish community has petitioned me about him, +both here and in Jerusalem, crying out that he +But I found he had +ought not to live any longer. +done nothing worthy of death, and since he has +now appealed to the Emperor, I decided to send +26 +him. + +25 + +I have nothing definite to write to our sover- +eign about him. Therefore I have brought him be- +fore all of you, and especially before you, King +Agrippa, so that after this inquiry I may have +For it seems unreasonable +something to write. +to me to send on a prisoner without specifying +Paul’s Testimony to Agrippa (Acts 9, Acts 22) +the charges against him.” + +27 + +14 + +15 + +After several days had passed, King Agrippa +and Bernice came down to Caesarea to pay their +respects to Festus. +Since they were staying +several days, Festus laid out Paul’s case before +the king: “There is a certain man whom Felix left +in prison. +While I was in Jerusalem, the chief +priests and elders of the Jews presented their +case and requested a judgment against him. +I +told them that it is not the Roman custom to hand +a man over before he has had an opportunity to +face his accusers and defend himself against +17 +their charges. + +16 + +18 + +So when they came here with me, I did not de- +lay. The next day I sat on the judgment seat and +ordered that the man be brought in. +But when +his accusers rose to speak, they did not charge +19 +him with any of the crimes I had expected. +They only had some contentions with him re- +garding their own religion and a certain Jesus +who had died, but whom Paul affirmed to be +20 +alive. + +Since I was at a loss as to how to investigate +these matters, I asked if he was willing to go to +21 +Jerusalem and be tried there on these charges. +But when Paul appealed to be held over for the +decision of the Emperor, I ordered that he be +held until I could send him to Caesar.” + +26 + +Agrippa said to Paul, “You have permis- +sion to speak for yourself.” + +2 + +Then Paul stretched out his hand and began +“King Agrippa, I consider myself +his defense: +fortunate to stand before you today to defend +3 +myself against all the accusations of the Jews, +especially since you are acquainted with all the +Jewish customs and controversies. I beg you, +4 +therefore, to listen to me patiently. + +5 + +Surely all the Jews know how I have lived from +my earliest childhood among my own people, +and also in Jerusalem. +They have known me for +a long time and can testify, if they are willing, that +I lived as a Pharisee, adhering to the strictest sect +6 +of our religion. + +7 + +And now I stand on trial because of my hope in +the +the promise that God made to our fathers, +promise our twelve tribes are hoping to see +fulfilled as they earnestly serve God day and +night. It is because of this hope, O king, that I am +Why would any of you con- +accused by the Jews. +9 +sider it incredible that God raises the dead? + +8 + +10 + +So then, I too was convinced that I ought to do +all I could to oppose the name of Jesus of Naza- +reth. +And that is what I did in Jerusalem. With + + authority from the chief priests I put many of +11 +the saints in prison, and when they were con- +demned to death, I cast my vote against them. +I +frequently had them punished in the synagogues, +and I tried to make them blaspheme. In my rag- +ing fury against them, I even went to foreign +12 +cities to persecute them. + +13 + +In this pursuit I was on my way to Damascus +with the authority and commission of the chief +priests. +About noon, O king, as I was on the +road, I saw a light from heaven, brighter than the +14 +sun, shining around me and my companions. +We all fell to the ground, and I heard a voice +say to me in Hebrew, + ‘Saul, Saul, why do you +persecute Me? It is hard for you to kick against +15 +the goads.’ + +a + +‘Who are You, Lord?’ I asked. + +16 + +‘I am Jesus, whom you are persecuting,’ the Lord +‘But get up and stand on your feet. For +replied. +I have appeared to you to appoint you as a serv- +17 +ant and as a witness of what you have seen from +I will rescue you +Me and what I will show you. +from your own people and from the Gentiles. I +to open their eyes, so +am sending you to them +that they may turn from darkness to light and +from the power of Satan to God, that they may re- +ceive forgiveness of sins and an inheritance +19 +among those sanctified by faith in Me.’ + +18 + +20 + +So then, King Agrippa, I was not disobedient to +First to those in Damascus +the heavenly vision. +and Jerusalem, then to everyone in the region of +Judea, and then to the Gentiles, I declared that +they should repent and turn to God, performing +For this rea- +deeds worthy of their repentance. + and +son the Jews seized me in the temple courts +22 +tried to kill me. + +21 + + b + +23 + +But I have had God’s help to this day, and I +stand here to testify to small and great alike. I am +saying nothing beyond what the prophets and +Moses said would happen: +that the Christ +would suffer, and as the first to rise from the +dead, would proclaim light to our people and to +Festus Interrupts Paul’s Defense +the Gentiles.” +24 + +At this stage of Paul’s defense, Festus ex- +claimed in a loud voice, “You are insane, Paul! +25 +Your great learning is driving you to madness!” + +26 + +But Paul answered, “I am not insane, most ex- +cellent Festus; I am speaking words of truth and +a 14 +sobriety. +For the king knows about these +along Asia +Or + +in the Hebrew language + +in Aramaic + +; literally + +b 21 + +Lit. + +; Asia was a Roman province in what is now western Turkey. + +Acts 27:10 | 1005 + +matters, and I can speak freely to him. I am con- +fident that none of this has escaped his notice, +because it was not done in a corner. +King +Agrippa, do you believe the prophets? I know you +28 +do.” + +27 + +Then Agrippa said to Paul, “Can you persuade +29 +me in such a short time to become a Christian?” + +“Short time or long,” Paul replied, “I wish to +God that not only you but all who hear me this +day may become what I am, except for these +30 +chains.” + +31 + +Then the king and the governor rose, along +with Bernice and those seated with them. +On +their way out, they said to one another, “This +man has done nothing worthy of death or impris- +32 +onment.” + +And Agrippa said to Festus, “This man could +have been released if he had not appealed to Cae- +Paul Sails for Rome +sar.” + +27 + + c + +When it was decided that we would sail +for Italy, Paul and some other prisoners +were handed over to a centurion named Julius, +who belonged to the Imperial +We +d +boarded an Adramyttian ship about to sail for + and we put out to +ports along the coast of Asia, +sea. Aristarchus, a Macedonian from Thessalo- +3 +nica, was with us. + + Regiment. + +2 + +4 + +The next day we landed at Sidon, and Julius +treated Paul with consideration, allowing him to +visit his friends and receive their care. +After +5 +putting out from there, we sailed to the lee of Cy- +prus because the winds were against us. +And +when we had sailed across the open sea off the +coast of Cilicia and Pamphylia, we came to Myra +in Lycia. +There the centurion found an Alexan- +7 +drian ship sailing for Italy and put us on board. + +6 + +8 + +After sailing slowly for many days, we arrived +off Cnidus. When the wind impeded us, we sailed +to the lee of Crete, opposite Salmone. +After we +had moved along the coast with difficulty, we +came to a place called Fair Havens, near the town +9 +of Lasea. + +e + +10 + +By now much time had passed, and the voyage +had already become dangerous because it was +after the Fast. +“Men, I +can see that our voyage will be filled with disas- +ter and great loss, not only to ship and cargo, but +the temple +to our own lives as well.” +Or + + So Paul advised them, + +Lit. +That is, Yom Kippur, the Day of Atonement + +sail to the places + +Augustan + + e 9 + +d 2 + +c 1 + + 1006 | Acts 27:11 + +11 + +28 + +12 + +But contrary to Paul’s advice, the centurion +was persuaded by the pilot and by the owner of +the ship. +Since the harbor was unsuitable to +winter in, the majority decided to sail on, hoping +that somehow they could reach Phoenix to win- +ter there. Phoenix was a harbor in Crete facing +The Storm at Sea (Jonah 1:4–10) +both southwest and northwest. +13 + +14 + +When a gentle south wind began to blow, they +thought they had their opportunity. So they +weighed anchor and sailed along, hugging the +But it was not long before a cy- +coast of Crete. +15 +clone called the Northeaster swept down across +Unable to head into the wind, the +the island. +ship was caught up. So we gave way and let our- +16 +selves be driven along. + +a + +Passing to the lee of a small island called +17 +Cauda, + we barely managed to secure the life- +After hoisting it up, the crew used ropes +boat. +to undergird the ship. And fearing that they +would run aground on the sandbars of Syrtis, +they lowered the sea anchor + and were driven +18 +along. + + b + +19 + +We were tossed so violently that the next day +On the +the men began to jettison the cargo. +20 +third day, they threw the ship’s tackle overboard +When neither sun nor +with their own hands. +stars appeared for many days and the great +storm continued to batter us, we abandoned all +21 +hope of being saved. + +22 + +After the men had gone a long time without +food, Paul stood up among them and said, “Men, +you should have followed my advice not to sail +from Crete. Then you would have averted this +But now I urge you to keep +disaster and loss. +23 +up your courage, because you will not experience +any loss of life, but only of the ship. +For just last +24 +night an angel of the God to whom I belong and +and said, ‘Do +whom I serve stood beside me +not be afraid, Paul; you must stand before Caesar. +And look, God has granted you the lives of all who +25 +sail with you.’ + +26 + +So take courage, men, for I believe God that it +However, we + +will happen just as He told me. +The Shipwreck +must run aground on some island.” +27 + +c + +e + +d +They took soundings and found that the water +was twenty fathoms deep. + Going a little farther, +they took another set of soundings that read fif- +teen fathoms. +Fearing that we would run +aground on the rocks, they dropped four anchors +30 +from the stern and prayed for daybreak. + +29 + +Meanwhile, the sailors attempted to escape +from the ship. Pretending to lower anchors from +31 +the bow, they let the lifeboat down into the sea. +But Paul said to the centurion and the soldiers, +“Unless these men remain with the ship, you can- +So the soldiers cut the ropes to +not be saved.” +33 +the lifeboat and set it adrift. + +32 + +34 + +Right up to daybreak, Paul kept urging them all +to eat: “Today is your fourteenth day in constant +So for your +suspense, without taking any food. +own preservation, I urge you to eat something, +because not a single hair of your head will be +35 +lost.” + +36 + +After he had said this, Paul took bread and +gave thanks to God in front of them all. Then he +They were all en- +broke it and began to eat. +38 +In +couraged and took some food themselves. +all, there were 276 +After the +men had eaten their fill, they lightened the ship +39 +by throwing the grain into the sea. + + of us on board. + +37 + +  f + +When daylight came, they did not recognize +the land, but they sighted a bay with a sandy +40 +beach, where they decided to run the ship +aground if they could. +Cutting away the an- +chors, they left them in the sea as they loosened +the ropes that held the rudders. Then they +hoisted the foresail to the wind and made for the +beach. +But the ship struck a sandbar and ran +aground. The bow stuck fast and would not +move, and the stern was being broken up by the +42 +pounding of the waves. + +41 + +43 + +The soldiers planned to kill the prisoners so +none of them could swim to freedom. +But the +centurion, wanting to spare Paul’s life, thwarted +their plan. He commanded those who could swim +to jump overboard first and get to land. +The +rest were to follow on planks and various parts +of the ship. In this way everyone was brought +Ashore on Malta +safely to land. + +44 + +28 + +2 + +On the fourteenth night we were still being +driven across the Adriatic Sea. + About midnight +the sails +a 16 +the sailors sensed they were approaching land. + +Clauda + +b 17 + +c 27 + +Once we were safely ashore, we learned +that the island was called Malta. +The is- +landers showed us extraordinary kindness. They + +d 28 20 fathoms + +NE, BYZ, and TR + +e 28 15 fathoms +include the central portion of the Mediterranean Sea. + +Or + +The Adriatic Sea referred to an area extending well south of Italy to + +f 37 + +76 + + is approximately 120 feet or 36.6 meters. + + is approximately 90 feet or 27.4 meters. + +WH + + kindled a fire and welcomed all of us because it +3 +was raining and cold. + + a + +4 + +Paul gathered a bundle of sticks, and as he laid +them on the fire, a viper, driven out by the heat, +When the islanders +fastened itself to his hand. +saw the creature hanging from his hand, they +said to one another, “Surely this man is a mur- +derer. Although he was saved from the sea, Jus- +But Paul +tice +shook the creature off into the fire and suffered +The islanders were expecting him +no ill effects. +to swell up or suddenly drop dead. But after +waiting a long time and seeing nothing unusual +happen to him, they changed their minds and +7 +said he was a god. + + has not allowed him to live.” + +6 + +5 + +Nearby stood an estate belonging to Publius, +the chief official of the island. He welcomed us +8 +and entertained us hospitably for three days. +The father of Publius was sick in bed, suffering +from fever and dysentery. Paul went in to see +him, and after praying and placing his hands on +After this had hap- +him, he healed the man. +pened, the rest of the sick on the island came and +10 +were cured as well. + +9 + +The islanders honored us in many ways and +Paul Arrives in Italy +supplied our needs when we were ready to sail. +11 + + b + +12 + +13 + + as a figurehead. + +After three months we set sail in an Alexan- +drian ship that had wintered in the island. It had +the Twin Brothers +Putting in +From +at Syracuse, we stayed there three days. +there we weighed anchor and came to Rhegium. +After one day, a south wind came up, and on the +There we +second day we arrived at Puteoli. +found some brothers who invited us to spend the +15 +week with them. And so we came to Rome. + +14 + + c + + d + +The brothers there had heard about us and + and the + to meet us. When Paul saw them, + +traveled as far as the Forum of Appius +Three Taverns +Paul Preaches at Rome (Isaiah 6:1–13) +he was encouraged and gave thanks to God. +16 + +e + +Acts 28:31 | 1007 + +18 + +against our people or the customs of our fathers, +I was taken prisoner in Jerusalem and handed +over to the Romans. +They examined me and +19 +wanted to release me, because there was no ba- +sis for a death sentence against me. +But when +the Jews objected, I was compelled to appeal to +Caesar, even though I have no charge to bring +So for this reason I have +against my nation. +called to see you and speak with you. It is be- +cause of the hope of Israel that I am bound with +21 +this chain.” + +20 + +The leaders replied, “We have not received any +letters about you from Judea, nor have any of the +22 +brothers from there reported or even mentioned +But we consider your +anything bad about you. +views worth hearing, because we know that peo- +23 +ple everywhere are speaking against this sect.” + +So they set a day to meet with Paul, and many +people came to the place he was staying. He ex- +pounded to them from morning to evening, testi- +fying about the kingdom of God and persuading +them about Jesus from the Law of Moses and the +24 +Prophets. + +25 + +Some of them were convinced by what he said, +They disagreed +but others refused to believe. +among themselves and began to leave after Paul +had made this final statement: “The Holy Spirit +was right when He spoke to your fathers through +26 +Isaiah the prophet: + +‘Go to this people and say, + +“You will be ever hearing but never + +understanding; + +27 + +you will be ever seeing but never + +perceiving.” + +For this people’s heart has grown callous; + +they hardly hear with their ears, +and they have closed their eyes. + +Otherwise they might see with their eyes, + +hear with their ears, + f +understand with their hearts, +and turn, and I would heal them.’ + +28 + + g + +Be advised, therefore, that God’s salvation has + +30 +been sent to the Gentiles, and they will listen!” + +When we arrived in Rome, + + Paul was permit- +ted to stay by himself, with a soldier to guard +17 +him. + +After three days, he called together the leaders +of the Jews. When they had gathered, he said to +a 4 +them, “Brothers, although I have done nothing + +b 11 + +Dikē + +31 + +Paul stayed there two full years in his own +rented house, welcoming all who came to visit +Boldly and freely he proclaimed the king- +him. +dom of God and taught about the Lord Jesus +Dioscuri +Christ. +d 15 +the centurion delivered up the prisoners to the captain of the barrack, but + +; that is, the Greek gods Castor and Pollux + +c 15 + +The + +f 27 + +The Three Taverns was about 35 miles or 57 km +29 When he had said this, the Jews went away, disputing sharply among themselves. +Isaiah 6:9, + +Greek + +; that is, the Greek goddess of justice +e 16 +Forum of Appius was about 43 miles or 70 kilometers from Rome. +from Rome. +10 (see also LXX) + +g 28 +BYZ, TR include + +BYZ, TR include + +Greek + + Romans + +Paul Greets the Saints in Rome + +16 + +1 + +2 + +3 + +Paul, a servant of Christ Jesus, called to be an +apostle, and set apart for the gospel of God— +the gospel He promised beforehand through +His prophets in the Holy Scriptures, +regarding +His Son, who was a descendant of David accord- +and who through the Spirit of +ing to the flesh, +holiness was declared with power to be the Son +of God by His resurrection from the dead: Jesus +5 +Christ our Lord. + +4 + +6 + +Through Him and on behalf of His name, we re- +ceived grace and apostleship to call all those +among the Gentiles to the obedience that comes +And you also are among those who +from faith. +7 +are called to belong to Jesus Christ. + +To all in Rome who are loved by God and called + +to be saints: + +Grace and peace to you from God our Father and +Unashamed of the Gospel +the Lord Jesus Christ. + +8 + + a + +9 + +10 + +First, I thank my God through Jesus Christ for all +of you, because your faith is being proclaimed all +God, whom I serve with my +over the world. + in preaching the gospel of His Son, is +spirit +my witness how constantly I remember you +in +11 +my prayers at all times, asking that now at last by +For +God’s will I may succeed in coming to you. +I long to see you so that I may impart to you some +that is, that you +spiritual gift to strengthen you, +and I may be mutually encouraged by each +13 +other’s faith. + +12 + + b + +I do not want you to be unaware, brothers, +how often I planned to come to you (but have + until now), in or- +been prevented from visiting +der that I might have a harvest among you, just +I am +as I have had among the other Gentiles. + both +obligated both to Greeks and non-Greeks, +That is why I am so +to the wise and the foolish. +eager to preach the gospel also to you who are in +a 9 +Rome. +d 17 + +but have been prevented + +in my spirit + +14 +c + +b 13 + +15 + +17 + +I am not ashamed of the gospel, because it is +the power of God for salvation to everyone who +For +believes, first to the Jew, then to the Greek. +the gospel reveals the righteousness of God that + e + just as it is +comes by faith from start to finish, +God’s Wrath against Sin +written: “The righteous will live by faith.” +18 + +d + +19 + +The wrath of God is being revealed from +heaven against all the godlessness and wicked- +ness of men who suppress the truth by their +wickedness. +For what may be known about +20 +God is plain to them, because God has made it +plain to them. +For since the creation of the +world God’s invisible qualities, His eternal power +and divine nature, have been clearly seen, being +understood from His workmanship, so that men +21 +are without excuse. + +22 + +For although they knew God, they neither glo- +rified Him as God nor gave thanks to Him, but +they became futile in their thinking and dark- +ened in their foolish hearts. +Although they +claimed to be wise, they became fools, +and +exchanged the glory of the immortal God for im- +ages of mortal man and birds and animals and +24 +reptiles. + +23 + +25 + +Therefore God gave them over in the desires of +their hearts to impurity for the dishonoring of +their bodies with one another. +They ex- +changed the truth of God for a lie, and worshiped +and served the creature rather than the Creator, +26 +who is forever worthy of praise! + + Amen. + + f + +27 + +For this reason God gave them over to dishon- +orable passions. Even their women exchanged +Likewise, +natural relations for unnatural ones. +the men abandoned natural relations with +women and burned with lust for one another. +Men committed indecent acts with other men +and received in themselves the due penalty for +28 +their error. + +Furthermore, since they did not see fit to +acknowledge God, He gave them up to a de- +praved mind, to do what ought not to be done. + +to Greeks and barbarians + +c 14 + +f 25 + +forever blessed + +Or + +For in it is revealed the righteousness of God from faith to faith +Literally + +Literally + +e 17 + +Literally + +Habakkuk 2:4 + +Or + + 29 + +Romans 3:4 | 1009 + +15 + +30 + +They have become filled with every kind of +wickedness, evil, greed, and depravity. They are +full of envy, murder, strife, deceit, and malice. +slanderers, God-haters, inso- +They are gossips, +lent, arrogant, and boastful. They invent new +They +forms of evil; they disobey their parents +32 +are senseless, faithless, heartless, merciless. + +31 + +. + +Although they know God’s righteous decree +that those who do such things are worthy of +death, they not only continue to do these things, +God’s Righteous Judgment (Psalm 75:1–10) +but also approve of those who practice them. + +2 + +3 + +2 + +You, therefore, have no excuse, you who +pass judgment on another. For on whatever +grounds you judge the other, you are condemn- +ing yourself, because you who pass judgment do +And we know that God’s judg- +the same things. +ment against those who do such things is based +So when you, O man, pass judgment on +on truth. +4 +others, yet do the same things, do you think you +Or do you disre- +will escape God’s judgment? +gard the riches of His kindness, tolerance, and +patience, not realizing that God’s kindness leads +5 +you to repentance? + +7 + +But because of your hard and unrepentant +heart, you are storing up wrath against yourself +6 +for the day of wrath, when God’s righteous judg- + a +God “will repay each one +ment will be revealed. +To those who by per- +according to his deeds.” +severance in doing good seek glory, honor, and +But for +immortality, He will give eternal life. +those who are self-seeking and who reject the +truth and follow wickedness, there will be wrath +9 +and anger. + +8 + +10 + +There will be trouble and distress for every hu- +man being who does evil, first for the Jew, then +but glory, honor, and peace for +for the Greek; +everyone who does good, first for the Jew, then +For God does not show favorit- +for the Greek. +12 +ism. + +11 + +All who sin apart from the law will also perish +13 +apart from the law, and all who sin under the law +For it is not the hear- +will be judged by the law. +ers of the law who are righteous before God, but +it is the doers of the law who will be declared +14 +righteous. + +Indeed, when Gentiles, who do not have the +a 6 +law, do by nature what the law requires, they are + +through Jesus Christ + +b 16 + +c 24 + +a law to themselves, even though they do not +So they show that the work of the +have the law. +law is written on their hearts, their consciences +also bearing witness, and their thoughts either +on the day when +accusing or defending them +God will judge men’s secrets through Christ +The Jews and the Law +Jesus, +17 + + as proclaimed by my gospel. + +16 + +b + +18 + +19 + +20 + +Now you, if you call yourself a Jew; if you rely +if you know His +on the law and boast in God; +will and approve of what is superior because you +if you are convinced +are instructed by the law; +that you are a guide for the blind, a light for those +in darkness, +an instructor of the foolish, a +teacher of infants, because you have in the law +21 +the embodiment of knowledge and truth— +you, then, who teach others, do you not teach +yourself? You who preach against stealing, do +You who forbid adultery, do you +you steal? +23 +commit adultery? You who abhor idols, do you +You who boast in the law, do +rob temples? +As it is +you dishonor God by breaking the law? + c +written: “God’s name is blasphemed among the +25 +Gentiles because of you.” + +24 + +22 + +Circumcision has value if you observe the law, +26 +but if you break the law, your circumcision has +If a man who is not +become uncircumcision. +circumcised keeps the requirements of the law, +27 +will not his uncircumcision be regarded as cir- +The one who is physically uncir- +cumcision? +cumcised yet keeps the law will condemn you +who, even though you have the written code and +28 +circumcision, are a lawbreaker. + +29 + +A man is not a Jew because he is one out- +wardly, nor is circumcision only outward and +No, a man is a Jew because he is one +physical. +inwardly, and circumcision is a matter of the +heart, by the Spirit, not by the written code. Such +a man’s praise does not come from men, but from +God Remains Faithful +God. + +3 + +2 + +What, then, is the advantage of being a Jew? +Or what is the value of circumcision? +Much +in every way. First of all, they have been en- +3 +trusted with the very words + + of God. + + d + +4 + +What if some did not have faith? Will their lack +of faith nullify God’s faithfulness? +Certainly +not! Let God be true and every man a liar. As it is +d 2 +written: + +the oracles + +Psalm 62:12 + +BYZ and TR + +Isaiah 52:5 (see also LXX) + +Or + + 1010 | Romans 3:5 + +“So that You may be proved right +when You speak + + a + +and victorious when You judge.” + +5 + +6 + +But if our unrighteousness highlights the right- +eousness of God, what shall we say? That God is +unjust to inflict His wrath on us? I am speaking in +7 +human terms. +Certainly not! In that case, how +could God judge the world? +However, if my +falsehood accentuates God’s truthfulness, to the +increase of His glory, why am I still condemned +as a sinner? +Why not say, as some slanderously +claim that we say, “Let us do evil that good may +There Is No One Righteous +result”? Their condemnation is deserved! +(Psalm 14:1–7 ; Psalm 53:1–6 ; Isaiah 59:1–17) + +8 + +9 + +What then? Are we any better? Not at all. For we +have already made the charge that Jews and +Greeks alike are all under sin. +As it is written: + +10 + +11 + +“There is no one righteous, + +not even one. + +12 + +There is no one who understands, + +no one who seeks God. + +All have turned away, + +they have together become worthless; + + b + +13 + +there is no one who does good, + +not even one.” + + c + +14 + +“Their throats are open graves; +their tongues practice deceit.” +“The venom of vipers is on their lips.” + + e + + d + +15 +16 +17 + +“Their mouths are full + +of cursing and bitterness.” + +“Their feet are swift to shed blood; + +18 + + f + +ruin and misery lie in their wake, +and the way of peace they have not + g + +known.” + +19 + +“There is no fear of God +before their eyes.” + +20 + +Now we know that whatever the law says, it +says to those who are under the law, so that every +mouth may be silenced and the whole world held +Therefore no one will be +accountable to God. +justified in His sight by works of the law. For the +Righteousness through Faith in Christ +law merely brings awareness of sin. +(Philippians 3:1–11) + +21 + +22 + +But now, apart from the law, the righteousness +of God has been revealed, as attested by the Law +a 4 +And this righteousness from +and the Prophets. +c 13 +d 13 +h 25 + +when You are judged + +; Psalm 51:4 (see also LXX) +i 3 +Psalm 140:3 + +as a propitiation + +e 14 + +j 8 + +b 12 + +Or +Psalm 5:9 +Or + +23 + +God comes through faith in Jesus Christ to all +for all +who believe. There is no distinction, +24 +have sinned and fall short of the glory of God, +and are justified freely by His grace through + +25 +the redemption that is in Christ Jesus. + + h + +God presented Him as an atoning sacrifice + in +His blood through faith, in order to demonstrate +His righteousness, because in His forbearance He +26 +had passed over the sins committed beforehand. +He did this to demonstrate His righteousness +at the present time, so as to be just and to justify +27 +the one who has faith in Jesus. + +28 + +Where, then, is boasting? It is excluded. On +what principle? On that of works? No, but on that +For we maintain that a man is justified +of faith. +29 +by faith apart from works of the law. +30 + +Is God the God of Jews only? Is He not the God +of Gentiles too? Yes, of Gentiles too, +since there +is only one God, who will justify the circumcised +by faith and the uncircumcised through that +31 +same faith. + +Do we, then, nullify the law by this faith? Cer- + +Abraham Justified by Faith +tainly not! Instead, we uphold the law. +(Genesis 15:1–7 ; Psalm 32:1–11 ; Heb. 11:8–19) + +4 + +2 + +3 + +What then shall we say that Abraham, +our forefather according to the flesh, has dis- +If Abraham was indeed justified by +covered? +works, he had something to boast about, but not +For what does the Scripture say? +before God. +“Abraham believed God, and it was credited to +4 +him as righteousness.” + + i + +5 + +6 + +Now the wages of the worker are not credited +However, to the +as a gift, but as an obligation. +one who does not work, but believes in Him who +justifies the ungodly, his faith is credited as right- +And David speaks likewise of the +eousness. +blessedness of the man to whom God credits +7 +righteousness apart from works: + +“Blessed are they whose lawless acts are + +8 + +forgiven, + +whose sins are covered. + +Blessed is the man + + j +whose sin the Lord will never count + +against him.” + +9 + +Is this blessing only on the circumcised, or also +on the uncircumcised? We have been saying that + +g 18 +Psalm 14:1–3 and Psalm 53:1–3 (see also LXX) + +f 17 + +Psalm 10:7 (see also LXX) + +Isaiah 59:7–8 (see also LXX) + +Psalm 36:1 + +Genesis 15:6 + +Psalm 32:1–2 (see also LXX) + + Romans 5:14 | 1011 + +10 + +25 + +Abraham’s faith was credited to him as right- +In what context was it credited? Was +eousness. +it after his circumcision, or before? It was not +11 +after, but before. + +a + +who believe in Him who raised Jesus our Lord +He was delivered over to death +from the dead. +for our trespasses and was raised to life for our +The Triumph of Faith +justification. + +12 + +And he received the sign of circumcision as a +seal of the righteousness that he had by faith +while he was still uncircumcised. So then, he is +the father of all who believe but are not circum- +cised, in order that righteousness might be cred- +And he is also the father of the +ited to them. +circumcised who not only are circumcised, +but who also walk in the footsteps of the faith +that our father Abraham had before he was +Abraham Receives the Promise +circumcised. +(Genesis 15:8–21) + +13 + +14 + +For the promise to Abraham and his offspring +that he would be heir of the world was not given +through the law, but through the righteousness +For if those who live by the +that comes by faith. +law are heirs, faith is useless and the promise is +because the law brings wrath. And +worthless, +16 +where there is no law, there is no transgression. + +15 + + b + +17 + +Therefore, the promise comes by faith, so that +it may rest on grace and may be guaranteed to all +Abraham’s offspring—not only to those who are +of the law, but also to those who are of the faith +of Abraham. He is the father of us all. +As it is +written: “I have made you a father of many na- + He is our father in the presence of God, +tions.” +in whom he believed, the God who gives life to +the dead and calls into being what does not yet +18 +exist. + +20 + +Against all hope, Abraham in hope believed + c +and so became the father of many nations, just as +19 +he had been told, “So shall your offspring be.” +Without weakening in his faith, he acknowl- +edged the decrepitness of his body (since he was +about a hundred years old) and the lifelessness +Yet he did not waver through +of Sarah’s womb. +disbelief in the promise of God, but was strength- +being +ened in his faith and gave glory to God, +fully persuaded that God was able to do what He +had promised. +This is why “it was credited to +23 +him as righteousness.” + +22 + +21 + + d + +24 + +Now the words “it was credited to him” were +written not only for Abraham, +but also for us, +a 10 +to whom righteousness will be credited—for us +c 18 +sion. + +d 22 + +b 17 +Literally + +5 + + e + +2 + +Therefore, since we have been justified +through faith, we have + peace with God +through whom +through our Lord Jesus Christ, + f +we have gained access by faith into this grace in + in the hope of +which we stand. And we rejoice +3 +the glory of God. + +Not only that, but we also rejoice in our +4 +sufferings, because we know that suffering pro- +5 +perseverance, character; +duces perseverance; +And hope does not disap- +and character, hope. +point us, because God has poured out His love +into our hearts through the Holy Spirit, whom He +Christ’s Sacrifice for the Ungodly +has given us. +(John 3:1–21) + +6 + +7 + +8 + +For at just the right time, while we were still +Very +powerless, Christ died for the ungodly. +rarely will anyone die for a righteous man, +though for a good man someone might possibly +But God proves His love for us in +dare to die. +this: While we were still sinners, Christ died for +9 +us. + +10 + +Therefore, since we have now been justified +by His blood, how much more shall we be +saved from wrath through Him! +For if, when +we were enemies of God, we were reconciled to +Him through the death of His Son, how much +11 +more, having been reconciled, shall we be +Not only that, but we +saved through His life! +also rejoice in God through our Lord Jesus +Christ, through whom we have now received +Death in Adam, Life in Christ +reconciliation. +(Genesis 3:1–7) + +12 + +13 + +Therefore, just as sin entered the world +through one man, and death through sin, so also +death was passed on to all men, because all +For sin was in the world before the law +sinned. +was given; but sin is not taken into account when +there is no law. +Nevertheless, death reigned +from Adam until Moses, even over those who did +not sin in the way that Adam transgressed. He is +a pattern of the One to come. + +14 + +e 1 + +let us have + +f 2 + +exult + +How then was it reckoned—being in circumcision, or in uncircumcision? Not in circumcision, but in uncircumci- + +Genesis 17:5 + +Genesis 15:5 + +Genesis 15:6 + +Or + +Or + +; also in verses 3 and 11 + + 1012 | Romans 5:15 + +15 + +16 + +But the gift is not like the trespass. For if the +many died by the trespass of the one man, how +much more did God’s grace and the gift that came +by the grace of the one man, Jesus Christ, abound +Again, the gift is not like the result +to the many! +of the one man’s sin: The judgment that followed +one sin brought condemnation, but the gift that +17 +followed many trespasses brought justification. +For if, by the trespass of the one man, death +reigned through that one man, how much more +will those who receive the abundance of grace +and of the gift of righteousness reign in life +18 +through the one man, Jesus Christ! + +So then, just as one trespass brought condem- +nation for all men, so also one act of righteous- +19 +ness brought justification and life for all men. +For just as through the disobedience of the one +man the many were made sinners, so also +through the obedience of the one man the many +20 +will be made righteous. + +21 + +The law came in so that the trespass would in- +crease; but where sin increased, grace increased +all the more, +so that, just as sin reigned in +death, so also grace might reign through right- +eousness to bring eternal life through Jesus +Dead to Sin, Alive to God (2 Cor. 4:7–18) +Christ our Lord. + +6 + +2 + +4 + +3 + +What then shall we say? Shall we continue in +Certainly +sin so that grace may increase? +not! How can we who died to sin live in it any +longer? +Or aren’t you aware that all of us who +were baptized into Christ Jesus were baptized +We were therefore buried with +into His death? +Him through baptism into death, in order that, +just as Christ was raised from the dead through +the glory of the Father, we too may walk in new- +5 +ness of life. + +For if we have been united with Him like this in +6 +His death, we will certainly also be united with +We know that our old +Him in His resurrection. +self was crucified with Him so that the body of sin +7 +might be rendered powerless, that we should no +For anyone who has died +longer be slaves to sin. +8 +has been freed from sin. +9 +Now if we died with Christ, we believe that we +will also live with Him. +For we know that since +Christ was raised from the dead, He cannot die +10 +again; death no longer has dominion over Him. +The death He died, He died to sin once for all; +So you too + +but the life He lives, He lives to God. + +11 + +must count yourselves dead to sin, but alive to +12 +God in Christ Jesus. + +13 + +Therefore do not let sin reign in your mortal +Do not pre- +body so that you obey its desires. +sent the parts of your body to sin as instruments +of wickedness, but present yourselves to God as +those who have been brought from death to life; +and present the parts of your body to Him as in- +For sin shall not +struments of righteousness. +be your master, because you are not under law, +The Wages of Sin +but under grace. +15 + +14 + +16 + +What then? Shall we sin because we are not +Do +under law, but under grace? Certainly not! +you not know that when you offer yourselves as +obedient slaves, you are slaves to the one you +obey, whether you are slaves to sin leading to +17 +death, or to obedience leading to righteousness? +But thanks be to God that, though you once +were slaves to sin, you wholeheartedly obeyed +the form of teaching to which you were commit- +You have been set free from sin and have +ted. +19 +become slaves to righteousness. + +18 + +I am speaking in human terms because of the +weakness of your flesh. Just as you used to offer +the parts of your body in slavery to impurity and +to escalating wickedness, so now offer them in +20 +slavery to righteousness leading to holiness. + +21 + +For when you were slaves to sin, you were free +What fruit did +of obligation to righteousness. +you reap at that time from the things of which +22 +you are now ashamed? The outcome of those +But now that you have been set +things is death. +free from sin and have become slaves to God, the +23 +fruit you reap leads to holiness, and the outcome +For the wages of sin is death, but +is eternal life. +the gift of God is eternal life in Christ Jesus our +Release from the Law (Galatians 3:15–25) +Lord. + +7 + +3 + +Do you not know, brothers (for I am speak- +ing to those who know the law), that the law +2 +has authority over a man only as long as he lives? +For instance, a married woman is bound by law +to her husband as long as he lives. But if her +husband dies, she is released from the law of +So then, if she is joined to another +marriage. +man while her husband is still alive, she is called +an adulteress; but if her husband dies, she is free +from that law and is not an adulteress if she mar- +ries another man. + + 4 + +5 + +Therefore, my brothers, you also died to the law +through the body of Christ, that you might belong +to another, to Him who was raised from the dead, +For +in order that we might bear fruit to God. +when we lived according to the flesh, the sinful +passions aroused by the law were at work in our +But now, having +bodies, bearing fruit for death. +died to what bound us, we have been released +from the law, so that we serve in the new way of +the Spirit, and not in the old way of the written +God’s Law Is Holy +code. +7 + +6 + + a + +8 + +What then shall we say? Is the law sin? Certainly +not! Indeed, I would not have been mindful of sin +if not for the law. For I would not have been +aware of coveting if the law had not said, “Do not +covet.” +But sin, seizing its opportunity through +the commandment, produced in me every kind of +covetous desire. For apart from the law, sin is +9 +dead. + +10 + +Once I was alive apart from the law; but when +the commandment came, sin sprang to life and I +So I discovered that the very command- +died. +ment that was meant to bring life actually +brought death. +For sin, seizing its opportunity +through the commandment, deceived me and +12 +through the commandment put me to death. + +11 + +So then, the law is holy, and the commandment + +Struggling with Sin +is holy, righteous, and good. +13 + +Did that which is good, then, become death to +me? Certainly not! But in order that sin might be +exposed as sin, it produced death in me through +what was good, so that through the command- +14 +ment sin might become utterly sinful. + +15 + +We know that the law is spiritual; but I am un- +I do not under- +spiritual, sold as a slave to sin. +16 +stand what I do. For what I want to do, I do not +And if I do what I do +do. But what I hate, I do. +In +not want to do, I admit that the law is good. +that case, it is no longer I who do it, but it is sin +18 +living in me that does it. + +17 + +Romans 8:11 | 1013 + +20 + +And if I do what I do +evil I do not want to do. +not want, it is no longer I who do it, but it is sin +21 +living in me that does it. + +22 +23 + +So this is the principle I have discovered: +When I want to do good, evil is right there with +me. +For in my inner being I delight in God’s +law. +But I see another law at work in my body, +warring against the law of my mind and holding +b +me captive to the law of sin that dwells within +24 +me. + +25 + +What a wretched man I am! Who will rescue +Thanks be to God, + +me from this body of death? +through Jesus Christ our Lord! + +So then, with my mind I serve the law of God, but +Walking by the Spirit +with my flesh I serve the law of sin. +(Ezekiel 36:16–38 ; Galatians 5:16–26) + +8 + +c + +2 + +Therefore, there is now no condemnation + d +For in +for those who are in Christ Jesus. + +3 + +Christ Jesus the law of the Spirit of life set you +For what the +free from the law of sin and death. +law was powerless to do in that it was weakened +e +by the flesh, God did by sending His own Son in +the likeness of sinful man, as an offering for sin. +He thus condemned sin in the flesh, +so that the +righteous standard of the law might be fulfilled +in us, who do not walk according to the flesh but +5 +according to the Spirit. + +4 + +6 + +Those who live according to the flesh set their +minds on the things of the flesh; but those who +live according to the Spirit set their minds on the +things of the Spirit. +The mind of the flesh is +7 +death, but the mind of the Spirit is life and peace, +because the mind of the flesh is hostile to God: +8 +It does not submit to God’s law, nor can it do so. + cannot please + +Those controlled by the flesh + + f + +9 +God. + + g + +10 + +You, however, are controlled not by the flesh, +but by the Spirit, if the Spirit of God lives in you. +And if anyone does not have the Spirit of Christ, +But if Christ is in +he does not belong to Christ. +11 +you, your body is dead because of sin, yet your +And if +spirit is alive +the Spirit of Him who raised Jesus from the dead +is living in you, He who raised Christ Jesus from + will also give life to your mortal bodies +the dead +through His Spirit, who lives in you. + + because of righteousness. + +19 + +I know that nothing good lives in me, that is, in +my flesh; for I have the desire to do what is good, +For I do not do the +but I cannot carry it out. +a 7 +good I want to do. Instead, I keep on doing the +Christ Jesus, who do not walk according to the flesh but according to the Spirit. +ness of sinful flesh and for sin +h 11 + +Exodus 20:17; Deuteronomy 5:21 + +raised Christ from the dead + +Those being in the flesh + +Literally + +b 23 + +f 8 + + h + +captive to the law of sin being in my members. +me + +d 2 + +c 1 +e 3 + +in +in the like- + +g 10 +BYZ and TR + +yet the Spirit is life + +BYZ and TR +Literally + +NA, BYZ, and TR + +Literally + +; similarly in verse 9 + +Or + + 1014 | Romans 8:12 + +Heirs with Christ + +12 + +Therefore, brothers, we have an obligation, +13 +but it is not to the flesh, to live according to it. +For if you live according to the flesh, you will +14 +die; but if by the Spirit you put to death the deeds +For all who are led by +of the body, you will live. +15 +the Spirit of God are sons of God. + +16 + +For you did not receive a spirit of slavery that +returns you to fear, but you received the Spirit of +adoption to sonship, by whom we cry, “Abba! +The Spirit Himself testifies with our +Father!” +And if we are +spirit that we are God’s children. +children, then we are heirs: heirs of God and co- +heirs with Christ—if indeed we suffer with Him, +Future Glory (2 Corinthians 5:1–10) +so that we may also be glorified with Him. +18 + +17 + +20 + +I consider that our present sufferings are not +19 +comparable to the glory that will be revealed in +us. +The creation waits in eager expectation for +For the crea- +the revelation of the sons of God. +tion was subjected to futility, not by its own will, +21 +but because of the One who subjected it, in hope +that the creation itself will be set free from its +bondage to decay and brought into the glorious +22 +freedom of the children of God. + +23 + +We know that the whole creation has been +groaning together in the pains of childbirth until +the present time. +Not only that, but we our- +selves, who have the firstfruits of the Spirit, +groan inwardly as we wait eagerly for our adop- +For +tion as sons, the redemption of our bodies. +in this hope we were saved; but hope that is seen +is no hope at all. Who hopes for what he can al- +But if we hope for what we do not +ready see? +26 +yet see, we wait for it patiently. + +25 + +24 + +27 + +In the same way, the Spirit helps us in our +weakness. For we do not know how we ought to +pray, but the Spirit Himself intercedes for us with +And He who +groans too deep for words. +searches our hearts knows the mind of the Spirit, +because the Spirit intercedes for the saints +God Works in All Things (Ephesians 1:3–14) +according to the will of God. +28 + +those He predestined, He also called; those He +called, He also justified; those He justified, He +31 +also glorified. + +33 + +34 + +What then shall we say in response to these +32 +things? If God is for us, who can be against us? +He who did not spare His own Son but gave +Him up for us all, how will He not also, along with +Who will bring +Him, freely give us all things? +any charge against God’s elect? It is God who jus- +tifies. +Who is there to condemn us? For Christ +Jesus, who died, and more than that was raised +to life, is at the right hand of God—and He is +More than Conquerors (Psalm 44:1–26) +interceding for us. +35 + +Who shall separate us from the love of Christ? +Shall trouble or distress or persecution or famine +As it is +or nakedness or danger or sword? +written: + +36 + +“For Your sake we face death all day long; + a +we are considered as sheep to be + +37 + +slaughtered.” + +38 + +No, in all these things we are more than con- +For I am +querors through Him who loved us. +convinced that neither death nor life, neither an- +gels nor principalities, neither the present nor +neither height nor +the future, nor any powers, +depth, nor anything else in all creation, will be +able to separate us from the love of God that is in +Paul’s Concern for the Jews +Christ Jesus our Lord. + +39 + +9 + +3 + +4 + +2 + +I speak the truth in Christ; I am not lying, as +confirmed by my conscience in the Holy +I have deep sorrow and unceasing an- +Spirit. +guish in my heart. +For I could wish that I myself +were cursed and cut off from Christ for the sake +the +of my brothers, my own flesh and blood, +people of Israel. Theirs is the adoption as sons; +theirs the divine glory and the covenants; theirs +the giving of the law, the temple worship, and the +Theirs are the patriarchs, and from +promises. +them proceeds the human descent of Christ, who +God’s Sovereign Choice +is God over all, forever worthy of praise! + Amen. +(Genesis 25:19–28 ; Malachi 1:1–5) + +5 + + b + +29 + +And we know that God works all things to- +gether for the good of those who love Him, who +For those +are called according to His purpose. +God foreknew, He also predestined to be con- +30 +formed to the image of His Son, so that He would +a 36 +And +be the firstborn among many brothers. + +forever blessed + +b 5 + +6 + +It is not as though God’s word has failed. For not +7 +all who are descended from Israel are Israel. +Nor because they are Abraham’s descendants +are they all his children. On the contrary, + +Psalm 44:22 + +Or + +  a + +8 + +“Through Isaac your offspring will be reck- +oned.” +So it is not the children of the flesh who +are God’s children, but it is the children of the +promise who are regarded as offspring. +For this + b +is what the promise stated: “At the appointed +10 +time I will return, and Sarah will have a son.” + +9 + +11 + +12 + +Not only that, but Rebecca’s children were +conceived by one man, our father Isaac. +Yet be- +fore the twins were born or had done anything +good or bad, in order that God’s plan of election +not by works but by Him who +might stand, +13 +calls, she was told, “The older will serve the + d +So it is written: “Jacob I loved, but +younger.” +14 +Esau I hated.” +15 + + c + +What then shall we say? Is God unjust? Cer- +For He says to Moses: + +tainly not! + +“I will have mercy on whom I have mercy, +and I will have compassion on whom + + e + +16 + +I have compassion.” + +17 + + f + +So then, it does not depend on man’s desire or +effort, but on God’s mercy. +For the Scripture +says to Pharaoh: “I raised you up for this very +purpose, that I might display My power in you, +and that My name might be proclaimed in all the +earth.” +Therefore God has mercy on whom He +wants to have mercy, and He hardens whom He +19 +wants to harden. + +18 + +20 + +One of you will say to me, “Then why does God +But +still find fault? For who can resist His will?” +who are you, O man, to talk back to God? Shall +what is formed say to Him who formed it, “Why +did You make me like this?” +Does not the pot- +ter have the right to make from the same lump of +clay one vessel for special occasions and another +22 +for common use? + +21 + + g + +23 + +What if God, intending to show His wrath and +make His power known, bore with great patience +the vessels of His wrath, prepared for destruc- +What if He did this to make the riches of +tion? +His glory known to the vessels of His mercy, +in- +whom He prepared in advance for glory— +cluding us, whom He has called not only from the +As He says in +Jews, but also from the Gentiles? +Hosea: + +24 + +25 + +“I will call them ‘My People’ who are not My + +people, + + h + +and I will call her ‘My Beloved’ who is not + +a 7 + +b 9 + +My beloved,” +g 20 + +c 12 + +Genesis 21:12 + +k 29 +also LXX) + +Genesis 18:14 +Isaiah 29:16; Isaiah 45:9 + +l 33 + +h 25 +Genesis 25:23 +m 33 +Hosea 2:23 + +Romans 10:6 | 1015 + +26 + +and, + +“It will happen that in the very place where + +it was said to them, +‘You are not My people,’ + i + +they will be called + +27 + +‘sons of the living God.’ + +” + +Isaiah cries out concerning Israel: + +28 + +“Though the number of the Israelites is +like the sand of the sea, +only the remnant will be saved. +For the Lord will carry out His sentence + + j + +29 + +on the earth + +thoroughly and decisively.” + +It is just as Isaiah foretold: + +“Unless the Lord of Hosts had left us + +descendants, + +we would have become like Sodom, +we would have resembled + + k + +Israel’s Unbelief + +Gomorrah.” + +30 + +31 + +32 + +What then will we say? That the Gentiles, who +did not pursue righteousness, have obtained it, a +but Israel, who +righteousness that is by faith; +pursued a law of righteousness, has not attained +Why not? Because their pursuit was not by +it. +33 +faith, but as if it were by works. They stumbled +over the stumbling stone, + +as it is written: + + l + +“See, I lay in Zion a stone of stumbling + +and a rock of offense; + + m +and the one who believes in Him +will never be put to shame.” + +The Word Brings Salvation (Isaiah 65:1–16) + +10 + +2 + +Brothers, my heart’s desire and prayer to +God for the Israelites is for their salva- +For I testify about them that they are zeal- +tion. +3 +ous for God, but not on the basis of knowledge. +Because they were ignorant of God’s righteous- +ness and sought to establish their own, they did +not submit to God’s righteousness. +For Christ is +the end of the law, to bring righteousness to eve- +5 +ryone who believes. + +4 + + n + +6 + +For concerning the righteousness that is by the +law, Moses writes: “The man who does these +things will live by them.” +But the righteous- +ness that is by faith says: “Do not say in your +i 26 +Malachi 1:2–3 +Exodus 9:16 (see +Exodus 33:19 +Hosea 1:10 + +Isaiah 10:22–23 (see also LXX) + +e 15 + +f 17 + +j 28 + +n 5 + +d 13 + +Isaiah 1:9 (see also LXX) + +Isaiah 8:14 + +Isaiah 28:16 (see also LXX) + +Lev. 18:5; see also Ezek. 20:11, 13, 21. + + 1016 | Romans 10:7 + + a + +21 + +7 + + b + +heart, ‘Who will ascend into heaven?’ +bring Christ down) +the Abyss?’ +8 +dead).” + + (that is, to +or, ‘Who will descend into + (that is, to bring Christ up from the + + c + +10 + +But what does it say? “The word is near you; it +9 +is in your mouth and in your heart,” + that is, the +that if you +word of faith we are proclaiming: +confess with your mouth, “Jesus is Lord,” and be- +lieve in your heart that God raised Him from the +For with your heart +dead, you will be saved. +you believe and are justified, and with your +11 +mouth you confess and are saved. + + d +It is just as the Scripture says: “Anyone who + +12 +believes in Him will never be put to shame.” + +For there is no difference between Jew and +Greek: The same Lord is Lord of all, and gives + e +richly to all who call on Him, +for, “Everyone +14 +who calls on the name of the Lord will be saved.” + +13 + +15 + +How then can they call on the One in whom +they have not believed? And how can they be- +lieve in the One of whom they have not heard? +And how can they hear without someone to +And how can they preach unless they +preach? +are sent? As it is written: “How beautiful are the +16 +feet of those who bring good news!” + + f + + g + +17 + +But not all of them welcomed the good news. +For Isaiah says, “Lord, who has believed our mes- +sage?” +Consequently, faith comes by hearing, +18 +and hearing by the word of Christ. + +But I ask, did they not hear? Indeed they did: + +But as for Israel he says: + +“All day long I have held out My hands +to a disobedient and obstinate + + k + +A Remnant Chosen by Grace + +people.” + +11 + +2 + +I ask then, did God reject His people? +Certainly not! I am an Israelite myself, a +descendant of Abraham, from the tribe of Benja- +min. +God did not reject His people, whom He +foreknew. Do you not know what the Scripture +says about Elijah, how he appealed to God +“Lord, they have killed Your +against Israel: +prophets and torn down Your altars. I am the +only one left, and they are seeking my life as +4 +well” + +? + +3 + + l + +And what was the divine reply to him? “I have +reserved for Myself seven thousand men who +5 +have not bowed the knee to Baal.” + + m + +6 + +In the same way, at the present time there is a +And if it is by grace, +remnant chosen by grace. +n +then it is no longer by works. Otherwise, grace +7 +would no longer be grace. + +8 + +What then? What Israel was seeking, it failed to +obtain, but the elect did. The others were hard- +ened, + +as it is written: + +“God gave them a spirit of stupor, +eyes that could not see, + o +and ears that could not hear, + +to this very day.” + +9 + +“Their voice has gone out into all + + h + +And David says: + +19 + +the earth, + +their words to the ends of the world.” + +“May their table become a snare and a trap, +a stumbling block and a retribution to + +10 + +I ask instead, did Israel not understand? First, + +them. + +Moses says: + +May their eyes be darkened so they cannot + + p + +“I will make you jealous by those who are + +not a nation; + + i + +20 + +I will make you angry by a nation +without understanding.” + +And Isaiah boldly says: + +“I was found by those who did not seek Me; +I revealed Myself to those who did not + + j + +a 6 +e 13 +of peace, who bring good news of good things + +ask for Me.” +f 15 +Deuteronomy 30:12 +Joel 2:32 + +good news of good things +See Deuteronomy 30:13. +j 20 + +Literally + +k 21 + +b 7 + +see, + +The Ingrafting of the Gentiles + +and their backs be bent forever.” + +11 + + q + +I ask then, did they stumble so as to fall + Certainly not! However, be- +beyond recovery? +cause of their trespass, salvation has come to the +But if their +Gentiles to make Israel jealous. +trespass means riches for the world, and their +How beautiful are the feet of those who bring good news + +d 11 + +12 + +c 8 + +n 6 +onomy 32:21 (see also LXX) + +Psalm 19:4 (see also LXX) +But if it is by works, then it is no longer grace; otherwise work is no longer work. +1 Kings 19:10, 14 +did they stumble so as to lose their share? + +Isaiah 53:1 +q 11 + +Isaiah 65:2 (see also LXX) + +; Isaiah 52:7 + +Isaiah 65:1 + +p 10 + +BYZ and TR include +did they stumble that they might fall? + +omy 29:4 and Isaiah 29:10. +ally + +Psalm 69:22–23 (see also LXX) + +Or + +Isaiah 28:16 (see also LXX) +m 4 +o 8 + +i 19 + +Deuter- +1 Kings 19:18 +See Deuteron- + Liter- + +Deuteronomy 30:14 + +g 16 +; BYZ and TR + +h 18 +l 3 + + failure means riches for the Gentiles, how much +13 +greater riches will their fullness bring! + +15 + +14 + +I am speaking to you Gentiles. Inasmuch as I +am the apostle to the Gentiles, I magnify my min- +in the hope that I may provoke my own +istry +people to jealousy and save some of them. +For +if their rejection is the reconciliation of the +world, what will their acceptance be but life from +If the first part of the dough is holy, +the dead? +so is the whole batch; if the root is holy, so are +17 +the branches. + +16 + +18 + +Now if some branches have been broken off, +and you, a wild olive shoot, have been grafted in +among the others to share in the nourishment +do not boast over those +of the olive root, +branches. If you do, remember this: You do not +19 +support the root, but the root supports you. + +20 + +You will say then, “Branches were broken off +so that I could be grafted in.” +That is correct: +They were broken off because of unbelief, but +you stand by faith. Do not be arrogant, but be +For if God did not spare the natural +afraid. +22 +branches, He will certainly not + spare you either. + +21 + + a + +23 + +Take notice, therefore, of the kindness and +severity of God: severity to those who fell, but +kindness to you, if you continue in His kindness. +And if they +Otherwise you also will be cut off. +24 +do not persist in unbelief, they will be grafted in, +For if you +for God is able to graft them in again. +were cut from a wild olive tree, and contrary to +nature were grafted into one that is cultivated, +how much more readily will these, the natural +All Israel Will Be Saved +branches, be grafted into their own olive tree! +25 + +I do not want you to be ignorant of this mys- +tery, brothers, so that you will not be conceited: +A hardening in part has come to Israel, until the +And so +full number of the Gentiles has come in. +all Israel will be saved, as it is written: + +26 + +27 + +“The Deliverer will come from Zion; + +He will remove godlessness from Jacob. + + b + +28 + +And this is My covenant with them +when I take away their sins.” + +Romans 12:8 | 1017 + +30 + +c + +Just as you who formerly disobeyed God have +31 +now received mercy through their disobedience, +so they too have now disobeyed, in order that +32 +they too may now receive mercy through the +For God has consigned +mercy shown to you. +everyone to disobedience so that He may have +A Hymn of Praise +mercy on everyone. +(Isaiah 40:9–31) + +33 + +O, the depth of the riches + +of the wisdom and knowledge of God! + +How unsearchable are His judgments, + +34 + +and untraceable His ways! + + d + +35 + +“Who has known the mind of the Lord? +Or who has been His counselor?” + + e + +“Who has first given to God, + +36 + +that God should repay him?” + +For from Him and through Him and to Him + +are all things. + +Living Sacrifices +To Him be the glory forever! Amen. +(1 Corinthians 3:16–23 ; 1 Corinthians 6:18–20) + +12 + +Therefore I urge you, brothers, on +account of God’s mercy, to offer your +f +bodies as living sacrifices, holy and pleasing to +2 +God, which is your spiritual service of worship. +Do not be conformed to this world, but be trans- +formed by the renewing of your mind. Then you +will be able to test and approve what is the good, +3 +pleasing, and perfect will of God. + +4 + +For by the grace given me I say to every one of +you: Do not think of yourself more highly than +you ought, but think of yourself with sober judg- +ment, according to the measure of faith God has +Just as each of us has one body with +given you. +many members, and not all members have the +so in Christ we who are many +same function, +are one body, and each member belongs to one +6 +another. + +5 + +We have different gifts according to the grace +7 +given us. If one’s gift is prophecy, let him use it in +8 +if it is serving, let him +proportion to his faith; +serve; if it is teaching, let him teach; +if it is en- +couraging, let him encourage; if it is giving, let +him give generously; if it is leading, let him lead +with diligence; if it is showing mercy, let him do +it cheerfully. + +may receive mercy through your mercy + +Regarding the gospel, they are enemies on +your account; but regarding election, they are +loved on account of the patriarchs. +For God’s +a 21 +gifts and His call are irrevocable. +c 31 +d 34 + +He will not +may now receive mercy through your mercy + +; SBL, NE, and WH +e 35 + +He will perhaps not + +29 + +f 1 + +b 27 + +Or +Literally +Isaiah 40:13 (see also LXX) + +Job 41:11 + +Or + +; BYZ and TR + +your reasonable service + +Isaiah 27:9 and Isaiah 59:20–21; see also LXX + + 1018 | Romans 12:9 + +Love, Zeal, Hope, Hospitality +(John 13:31–35 ; 1 John 3:11–24) + +9 + +10 + +Love must be sincere. Detest what is evil; cling +Be devoted to one another in +to what is good. +brotherly love. Outdo yourselves in honoring one +11 +another. + +Do not let your zeal subside; keep your spir- + +12 +itual fervor, serving the Lord. + +Be joyful in hope, patient in affliction, persis- + +13 +tent in prayer. + +Share with the saints who are in need. Practice + +Forgiveness (Matthew 18:21–35) +hospitality. +14 + +15 + +Bless those who persecute you. Bless and do +16 +Rejoice with those who rejoice; +not curse. +Live in harmony +weep with those who weep. +with one another. Do not be proud, but associate +17 +with the lowly. Do not be conceited. + +Do not repay anyone evil for evil. Carefully +18 +consider what is right in the eyes of everybody. +If it is possible on your part, live at peace with + +19 +everyone. + +Do not avenge yourselves, beloved, but leave +room for God’s wrath. For it is written: “Venge- +20 +ance is Mine; I will repay, says the Lord.” + + a + +On the contrary, + +“If your enemy is hungry, feed him; +if he is thirsty, give him a drink. + + b + +For in so doing, + +21 + +you will heap burning coals on his head.” + +Do not be overcome by evil, but overcome evil + +Submission to Authorities (1 Peter 2:13–20) +with good. + +13 + +does not carry the sword in vain. He is God’s +servant, an agent of retribution to the wrong- +5 +doer. + +6 + +Therefore it is necessary to submit to authority, +not only to avoid punishment, but also as a mat- +This is also why you pay taxes. +ter of conscience. +7 +For the authorities are God’s servants, who de- +vote themselves to their work. +Pay everyone +what you owe him: taxes to whom taxes are due, +revenue to whom revenue is due, respect to +whom respect is due, honor to whom honor is +Love Fulfills the Law (Leviticus 19:9–18) +due. +8 + +9 + +Be indebted to no one, except to one another in +love. For he who loves his neighbor has fulfilled +The commandments “Do not commit +the law. + c +adultery,” “Do not murder,” “Do not steal,” “Do + and any other commandments, are +not covet,” +summed up in this one decree: “Love your neigh- +bor as yourself.” +Love does no wrong to its +neighbor. Therefore love is the fulfillment of the +The Day Is Near +law. +11 + +10 + + d + +13 + +12 + +And do this, understanding the occasion. The +hour has come for you to wake up from your +slumber, for our salvation is nearer now than +The night is nearly +when we first believed. +over; the day has drawn near. So let us lay aside +the deeds of darkness and put on the armor of +Let us behave decently, as in the daytime, +light. +not in carousing and drunkenness, not in sexual + e +immorality and debauchery, not in dissension +and jealousy. +the Lord Jesus Christ, and make no provision for +The Law of Liberty +the desires of the flesh. +(Matthew 7:1–6 ; Luke 6:37–42) + +Instead, clothe yourselves with + +14 + +14 + +f + +2 + +Everyone must submit himself to the +governing authorities, for there is no +authority except that which is from God. The au- +2 +thorities that exist have been appointed by God. +Consequently, whoever resists authority is op- +posing what God has set in place, and those who +3 +do so will bring judgment on themselves. + +For rulers are not a terror to good conduct, but +to bad. Do you want to be unafraid of the one in +authority? Then do what is right, and you will +For he is God’s servant for +have his approval. +your good. But if you do wrong, be afraid, for he +a 19 + +4 + +b 20 +put on + +d 9 + +e 14 + +Deuteronomy 32:35 (see also LXX) +Leviticus 19:18 + +Or + +5:17–21 + +3 + +Accept him whose faith is weak, without +For +passing judgment on his opinions. +one person has faith to eat all things, while an- +The +other, who is weak, eats only vegetables. +one who eats everything must not belittle the +one who does not, and the one who does not eat +4 +everything must not judge the one who does, for +Who are you to judge +God has accepted him. +someone else’s servant? To his own master he +stands or falls. And he will stand, for the Lord is +able to make him stand. +f 1 +Proverbs 25:21–22 (see also LXX) +; see verse 12. + +without quarreling over disputable matters + +Exodus 20:13–17; Deuteronomy + +c 9 + +Or + + Romans 15:12 | 1019 + +c + +wine or to do anything to cause your brother to +22 +stumble. + +d + +Keep your belief about such matters between +yourself and God. + Blessed is the one who does +But +not condemn himself by what he approves. +the one who has doubts is condemned if he eats, +because his eating is not from faith; and every- +Accept One Another +thing that is not from faith is sin. + +23 + +e + +15 + + f + +2 + +3 + +We who are strong ought to bear with +the shortcomings of the weak and not to +Each of us should please his +please ourselves. +For even +neighbor for his good, to build him up. +Christ did not please Himself, but as it is written: +“The insults of those who insult You have fallen +on Me.” +For everything that was written in the +past was written for our instruction, so that +through endurance and the encouragement of +5 +the Scriptures, we might have hope. + +4 + +6 + +Now may the God who gives endurance and en- +couragement grant you harmony with one an- +so that with one mind and +other in Christ Jesus, +one voice you may glorify the God and Father of +Christ the Servant of Jews and Gentiles +our Lord Jesus Christ. +7 + +8 + +Accept one another, then, just as Christ ac- +For I +cepted you, in order to bring glory to God. +tell you that Christ has become a servant of the +circumcised on behalf of God’s truth, to confirm +so that the +the promises made to the patriarchs, +Gentiles may glorify God for His mercy. As it is +written: + +9 + +“Therefore I will praise You among the + + g + +10 + +Gentiles; + +I will sing hymns to Your name.” + +Again, it says: + +11 + +“Rejoice, O Gentiles, with His people.” + + h + +And again: + + i + +12 + +“Praise the Lord, all you Gentiles, +and extol Him, all you peoples.” + +And once more, Isaiah says: + +“The Root of Jesse will appear, + +One who will arise to rule over the + + j + +5 + + a + +6 + +One person regards a certain day above the oth- +ers, while someone else considers every day +alike. Each one should be fully convinced in his +He who observes a special day does +own mind. +so to the Lord; + he who eats does so to the Lord, +for he gives thanks to God; and he who abstains +7 +does so to the Lord and gives thanks to God. + +8 + +For none of us lives to himself alone, and none +If we live, we live to +of us dies to himself alone. +the Lord, and if we die, we die to the Lord. So +9 +whether we live or die, we belong to the Lord. +For this reason Christ died and returned to life, +that He might be the Lord of both the dead and +10 +the living. + +Why, then, do you judge your brother? Or why +do you belittle your brother? For we will all stand +before God’s judgment seat. + +It is written: + +11 + +“As surely as I live, +says the Lord, + + b + +12 + +every knee will bow before Me; + +every tongue will confess to God.” + +So then, each of us will give an account of him- + +The Law of Love +self to God. +(Ezekiel 14:1–11 ; 1 Corinthians 8:1–13) + +13 + +Therefore let us stop judging one another. In- +stead, make up your mind not to put any stum- +14 +bling block or obstacle in your brother’s way. + +15 + +I am convinced and fully persuaded in the Lord +Jesus that nothing is unclean in itself. But if any- +one regards something as unclean, then for him +If your brother is distressed by +it is unclean. +what you eat, you are no longer acting in love. Do +not by your eating destroy your brother, for +16 +whom Christ died. + +17 + +Do not allow what you consider good, then, to +For the kingdom of God is +be spoken of as evil. +not a matter of eating and drinking, but of right- +For +eousness, peace, and joy in the Holy Spirit. +whoever serves Christ in this way is pleasing to +19 +God and approved by men. + +18 + +20 + +So then, let us pursue what leads to peace and +to mutual edification. +Do not destroy the work +of God for the sake of food. All food is clean, but +it is wrong for a man to let his eating be a stum- +a 6 +It is better not to eat meat or drink +bling block. +c 21 + +21 + +d 22 +or +f 3 + +Keep the faith that you have to yourself before God +h 10 + +; Isaiah 45:23 (see also LXX) + +g 9 + +will acknowledge God +BYZ and TR include + +Lit. + +Gentiles; +he who does not regard the day, to the Lord he does not regard it; + +will give praise to God +in Him the Gentiles will put their hope.” + +b 11 + +or to be hindered or weakened + +e 23 +SBL, BYZ, and TR include +i 11 + +Or + +j 12 + +. + +Some manuscripts place the text of Romans 16:25–27 here. + +Psalm 69:9 + +2 Samuel 22:50; Psalm 18:49 + +De. 32:43 + +Psalm 117:1 + +Isaiah 11:10 (see also LXX) + + 1020 | Romans 15:13 + +13 + +Now may the God of hope fill you with all joy +and peace as you believe in Him, so that you may +overflow with hope by the power of the Holy +Paul the Minister to the Gentiles +Spirit. +14 + +16 + +I myself am convinced, my brothers, that you +yourselves are full of goodness, brimming with +15 +knowledge, and able to instruct one another. +However, I have written you a bold reminder +on some points, because of the grace God has +to be a minister of Christ Jesus to the +given me +Gentiles in the priestly service of the gospel of +God, so that the Gentiles might become an offer- +ing acceptable to God, sanctified by the Holy +17 +Spirit. + +18 + +Therefore I exult in Christ Jesus in my service +I will not presume to speak of anything +to God. +except what Christ has accomplished through me +19 +in leading the Gentiles to obedience by word and +by the power of signs and wonders, and +deed, +by the power of the Spirit of God. + So from Jeru- +salem all the way around to Illyricum, I have fully +20 +proclaimed the gospel of Christ. + +a + +In this way I have aspired to preach the gospel +where Christ was not known, so that I would not +Ra- +be building on someone else’s foundation. +ther, as it is written: + +21 + +“Those who were not told about Him will see, + + b +and those who have not heard will + +22 + +understand.” + +That is why I have often been hindered from + +Paul’s Travel Plans +coming to you. +(1 Corinthians 16:5–9) + +23 + +24 + +But now that there are no further opportuni- +ties for me in these regions, and since I have +longed for many years to visit you, +I hope to +see you on my way to Spain. And after I have en- +joyed your company for a while, you can equip +25 +me for my journey. + +26 +Now, however, I am on my way to Jerusalem to +For Macedonia and +serve the saints there. +Achaia were pleased to make a contribution for +They +the poor among the saints in Jerusalem. +were pleased to do it, and indeed they owe it to +a 19 +them. For if the Gentiles have shared in their +d 33 + +the power of the Spirit + +27 + +of the gospel +e 1 + +SBL +BYZ include +16:25–27 here. +man province in what is now western Turkey. + +deaconess +. + +; NE and WH + +f 3 Prisca + +Or + +spiritual blessings, they are obligated to minister +28 +to them with material blessings. + +29 + +So after I have completed this service and have +safely delivered this bounty to them, I will set off +I know that when I +to Spain by way of you. +come to you, I will come in the fullness of the +30 +blessing + + of Christ. + + c + +31 + +Now I urge you, brothers, by our Lord Jesus +Christ and by the love of the Spirit, to join me in +Pray +my struggle by praying to God for me. +that I may be delivered from the unbelievers in +Judea, and that my service in Jerusalem may be +so that by God’s +acceptable to the saints there, +will I may come to you with joy and together with +33 +you be refreshed. +Personal Greetings and Love + +The God of peace be with all of you. Amen. + +32 + +d + +16 + + e + +2 + +I commend to you our sister Phoebe, a + of the church in Cenchrea. +servant +Welcome her in the Lord in a manner worthy of +the saints, and assist her with anything she may +need from you. For she has been a great help to + f +3 +many people, including me. +4 + and Aquila, my fellow workers in +Greet Prisca +who have risked their lives for me. +Christ Jesus, +Not only I but all the churches of the Gentiles are +Greet also the church that +grateful to them. +meets at their house. + +5 + +g + +Greet my beloved Epenetus, who was the first +6 +convert to Christ in the province of Asia. +7 + +Greet Mary, who has worked very hard for you. + +h + +Greet Andronicus and Junia, + + my fellow coun- +trymen and fellow prisoners. They are outstand- +ing among the apostles, and they were in Christ +8 +before I was. +9 + +Greet Ampliatus, my beloved in the Lord. + +Greet Urbanus, our fellow worker in Christ, and + +10 +my beloved Stachys. + +Greet Apelles, who is approved in Christ. + +Greet those who belong to the household of Aris- +11 +tobulus. + +Greet Herodion, my fellow countryman. + +the power of the Holy Spirit + +Greet those from the household of Narcissus who +are in the Lord. + +b 21 + +c 29 + +Amen. + +Some manuscripts do not include +h 7 + + is a variant of + +Junias + + One early manuscript places the text of Romans +; Asia was a Ro- + +Literally + +; see Acts 18:2. + +Priscilla + +Isaiah 52:15 (see also LXX) + +in Asia + +g 5 + +TR and + +Some translators + + 12 + +20 + +Romans 16:27 | 1021 + +Greet Tryphena and Tryphosa, women who + +have worked hard in the Lord. + +Greet my beloved Persis, who has worked very +13 +hard in the Lord. + +Greet Rufus, chosen in the Lord, and his + +14 +mother, who has been a mother to me as well. + +Greet Asyncritus, Phlegon, Hermes, Patrobas, + +15 +Hermas, and the brothers with them. + +Greet Philologus and Julia, Nereus and his sis- + +16 +ter, and Olympas and all the saints with them. + +Greet one another with a holy kiss. + +Avoid Divisions +All the churches of Christ send you greetings. +(Titus 3:9–11) + +17 + +18 + +Now I urge you, brothers, to watch out for +those who create divisions and obstacles that are +contrary to the teaching you have learned. Turn +For such people are not serv- +away from them. +ing our Lord Christ, but their own appetites. By +smooth talk and flattery they deceive the hearts +19 +of the naive. + +Everyone has heard about your obedience, so +I rejoice over you. But I want you to be wise +about what is good and innocent about what is +evil. + +The God of peace will soon crush Satan under + be + +your feet. The grace of our Lord Jesus Christ +Greetings from Paul’s Fellow Workers +with you. +(Colossians 4:7–14) + + a + +21 + +Timothy, my fellow worker, sends you greet- +ings, as do Lucius, Jason, and Sosipater, my fellow +22 +countrymen. + +I, Tertius, who wrote down this letter, greet + +23 +you in the Lord. + +Gaius, who has hosted me and all the church, + +sends you greetings. + +b + +Erastus, the city treasurer, sends you greetings, +Doxology +as does our brother Quartus. +(Jude 1:24–25) + +25 + +Now to Him who is able to strengthen you by +my gospel and by the proclamation of Jesus +26 +Christ, according to the revelation of the mystery +but now revealed and +concealed for ages past +made known through the writings of the proph- +ets by the command of the eternal God, in order +to lead all nations to the obedience that comes +d +to the only wise God be glory for- +from faith +ever through Jesus Christ! Amen. + +— + +27 + + c + +a 20 +Amen. + +c 26 + +Lord Jesus +the obedience of faith + +b 23 + +d 27 + +24 May the grace of our Lord Jesus Christ be with you all. + +NA, NE, and WH +Literally +after Romans 15:33. + +SBL, BYZ, and TR include + +Some manuscripts place the text of verses 25–27 after Romans 14:23 or + + 1 Corinthians + +Greetings from Paul and Sosthenes +(Acts 18:1–11 ; 2 Corinthians 1:1–2) + +1 + +2 +nes, + +Paul, called to be an apostle of Christ Jesus +by the will of God, and our brother Sosthe- + +To the church of God in Corinth, to those sancti- +fied in Christ Jesus and called to be holy, together +with all those everywhere who call on the name +3 +of our Lord Jesus Christ, their Lord and ours: + +Grace and peace to you from God our Father +Thanksgiving (Philippians 1:3–11 ; Col. 1:3–14) +and the Lord Jesus Christ. +4 + +5 + +I always thank my God for you because of the +grace He has given you in Christ Jesus. +For in +Him you have been enriched in every way, in all +because our testi- +speech and all knowledge, +7 +mony about Christ was confirmed in you. + +6 + +8 + +Therefore you do not lack any spiritual gift as +you eagerly await the revelation of our Lord +He will sustain you to the end, so +Jesus Christ. +9 +that you will be blameless on the day of our Lord +God, who has called you into fel- +Jesus Christ. +lowship with His Son Jesus Christ our Lord, is +Unity in the Church (Ps. 133:1–3 ; Eph. 4:1–16) +faithful. +10 + +I appeal to you, brothers, in the name of our +Lord Jesus Christ, that all of you agree together, +so that there may be no divisions among you and +11 +that you may be united in mind and conviction. +My brothers, some from Chloe’s household +have informed me that there are quarrels among +What I mean is this: Individuals among +you. +you are saying, “I follow Paul,” “I follow Apollos,” +13 +“I follow Cephas,” + + or “I follow Christ.” + +12 + + a + +14 + +15 + +Is Christ divided? Was Paul crucified for you? +Were you baptized into the name of Paul? +I +thank God that I did not baptize any of you except +Crispus and Gaius, +so no one can say that you +Yes, I also bap- +were baptized into my name. +tized the household of Stephanas; beyond that I +c 23 +a 12 +do not remember if I baptized anyone else. +For + +b 19 + +16 + +17 + +e 31 + +Christ did not send me to baptize, but to preach +the gospel, not with words of wisdom, lest the +The Message of the Cross +cross of Christ be emptied of its power. +18 + +For the message of the cross is foolishness to +those who are perishing, but to us who are being +saved it is the power of God. +For it is written: + +19 + +“I will destroy the wisdom of the wise; + + b + +20 + +the intelligence of the intelligent I will + +frustrate.” + +Where is the wise man? Where is the scribe? +Where is the philosopher of this age? Has not +21 +God made foolish the wisdom of the world? +For since in the wisdom of God the world +through its wisdom did not know Him, God was +pleased through the foolishness of what was +22 +preached to save those who believe. + +23 + +Jews demand signs and Greeks search for wis- +c +but we preach Christ crucified, a stum- +dom, +24 +bling block to Jews and foolishness to Gentiles, + +but to those who are called, both Jews and +Greeks, Christ the power of God and the wisdom +25 +of God. + +d + +For the foolishness of God is wiser than man’s + and the weakness of God is stronger + +wisdom, +Wisdom from God +than man’s strength. +26 + +27 + +Brothers, consider the time of your calling: Not +many of you were wise by human standards; not +many were powerful; not many were of noble +birth. +But God chose the foolish things of the +world to shame the wise; God chose the weak +things of the world to shame the strong. +He +chose the lowly and despised things of the world, +and the things that are not, to nullify the things +that are, +so that no one may boast in His pres- +30 +ence. + +29 + +28 + +It is because of Him that you are in Christ Jesus, +who has become for us wisdom from God: +31 +our righteousness, holiness, and redemption. +Therefore, as it is written: “Let him who boasts + + e + +boast in the Lord.” + +to Greeks + +d 25 + +than men + +That is, Peter + +Isaiah 29:14 (see also LXX) + +BYZ and TR + +Literally + +; twice in this + +verse + +Jeremiah 9:24 + + Paul’s Message by the Spirit’s Power + +God’s Fellow Workers (Hebrews 5:11–14) + +1 Corinthians 3:19 | 1023 + +2 + +2 + +When I came to you, brothers, I did not come +with eloquence or wisdom as I proclaimed +For I resolved +to you the testimony about God. +3 +to know nothing while I was with you except +Jesus Christ and Him crucified. +I came to you in +4 +weakness and fear, and with much trembling. +My message and my preaching were not with +persuasive words of wisdom, but with a demon- +so that your faith +stration of the Spirit’s power, +would not rest on men’s wisdom, but on God’s +Spiritual Wisdom (Ephesians 1:15–23) +power. +6 + +5 + +7 + +Among the mature, however, we speak a mes- +sage of wisdom—but not the wisdom of this age +or of the rulers of this age, who are coming to +a +No, we speak of the mysterious and +nothing. +8 + which He destined for +hidden wisdom of God, +None of the rulers +our glory before time began. +of this age understood it. For if they had, they +Ra- +would not have crucified the Lord of glory. +ther, as it is written: + +9 + +“No eye has seen, + +no ear has heard, +no heart has imagined, + + b + +what God has prepared for those who + +10 + +love Him.” + +But God has revealed it to us by the Spirit. + +11 + +12 + +The Spirit searches all things, even the deep +For who among men knows the +things of God. +thoughts of man except his own spirit within +him? So too, no one knows the thoughts of God +We have not received +except the Spirit of God. +the spirit of the world, but the Spirit who is from +God, that we may understand what God has +And this is what we speak, not +freely given us. +in words taught us by human wisdom, but in +c +words taught by the Spirit, expressing spiritual +14 +truths in spiritual words. + +13 + +The natural man does not accept the things +that come from the Spirit of God. For they are +foolishness to him, and he cannot understand +15 +them, because they are spiritually discerned. +The spiritual man judges all things, but he +16 +himself is not subject to anyone’s judgment. +“For who has known the mind of the Lord, so + But we have the mind of + + d + +we speak God’s wisdom in a mystery +f 16 + +among + +b 9 + +as to instruct Him?” +a 7 +Christ. +e 8 +Or +Literally + +are one + +Or + +Isaiah 64:4 + +3 + +3 + +2 +Brothers, I could not address you as spir- +itual, but as worldly—as infants in Christ. +I +gave you milk, not solid food, for you were not +yet ready for solid food. In fact, you are still not +for you are still worldly. For since there +ready, +is jealousy and dissension among you, are you +4 +not worldly? Are you not walking in the way of +For when one of you says, “I follow Paul,” +man? +and another, “I follow Apollos,” are you not mere +5 +men? + +6 + +7 + +What then is Apollos? And what is Paul? They +are servants through whom you believed, as the +Lord has assigned to each his role. +I planted the +seed and Apollos watered it, but God made it +So neither he who plants nor he who wa- +grow. +8 +ters is anything, but only God, who makes things +He who plants and he who waters are one +grow. +in purpose, + and each will be rewarded accord- +ing to his own labor. +For we are God’s fellow +Christ Our Foundation (Isaiah 28:14–22 ; +workers; you are God’s field, God’s building. +Ephesians 2:19–22 ; 1 Peter 2:1–8) + +9 + +e + +10 + +11 + +By the grace God has given me, I laid a founda- +tion as an expert builder, and someone else is +building on it. But each one must be careful how +For no one can lay a foundation +he builds. +other than the one already laid, which is Jesus +12 +Christ. + +13 + +14 + +If anyone builds on this foundation using gold, +silver, precious stones, wood, hay, or straw, +his +workmanship will be evident, because the Day +will bring it to light. It will be revealed with fire, +and the fire will prove the quality of each man’s +If what he has built survives, he will re- +work. +If it is burned up, he will suffer +ceive a reward. +loss. He himself will be saved, but only as if +God’s Temple and God’s Wisdom +through the flames. +(Romans 12:1–8 ; 1 Corinthians 6:18–20) + +15 + +16 + + f + +17 + +Do you not know that you yourselves are God’s +temple, and that God’s Spirit dwells in +If +anyone destroys God’s temple, God will destroy +him; for God’s temple is holy, and you are that +18 +temple. + + you? + +Let no one deceive himself. If any of you thinks +he is wise in this age, he should become a fool, so +d 16 +c 13 +For the wisdom of +that he may become wise. +Isaiah 40:13 (see also LXX) + +to spiritual people + +Or + +19 + + 1024 | 1 Corinthians 3:20 + + a + +20 + +this world is foolishness in God’s sight. As it is +written: “He catches the wise in their crafti- +ness.” +And again, “The Lord knows that the +21 +thoughts of the wise are futile.” + + b + + c + +22 + +whether Paul or Apollos or Cephas + +Therefore, stop boasting in men. All things are +yours, + or +the world or life or death or the present or the +and you be- +future. All of them belong to you, +Servants of Christ +long to Christ, and Christ belongs to God. + +23 + +4 + +So then, men ought to regard us as servants +2 +of Christ and stewards of the mysteries of +Now it is required of stewards that they be + +God. +3 +found faithful. + +4 + +I care very little, however, if I am judged by you +or by any human court. In fact, I do not even +My conscience is clear, but that +judge myself. +does not vindicate me. It is the Lord who judges +5 +me. + +Therefore judge nothing before the appointed +time; wait until the Lord comes. He will bring to +light what is hidden in darkness and will expose +the motives of men’s hearts. At that time each +6 +will receive his praise from God. + +7 + +Brothers, I have applied these things to myself +and Apollos for your benefit, so that you may +learn from us not to go beyond what is written. +Then you will not take pride in one man over an- +For who makes you so superior? What do +other. +you have that you did not receive? And if you did +receive it, why do you boast as though you did +8 +not? + +9 + +Already you have all you want. Already you +have become rich. Without us, you have become +kings. How I wish you really were kings, so that +For it seems to me +we might be kings with you! +that God has displayed us apostles at the end of +the procession, like prisoners appointed for +death. We have become a spectacle to the whole +10 +world, to angels as well as to men. + +we answer gently. Up to this moment we have +become the scum of the earth, the refuse of the +Paul’s Fatherly Warning +world. +14 + +15 + +16 + +I am not writing this to shame you, but to warn +you as my beloved children. +Even if you have +ten thousand guardians in Christ, you do not +have many fathers; for in Christ Jesus I became +17 +your father through the gospel. +Therefore I +urge you to imitate me. +That is why I have sent +you Timothy, my beloved and faithful child in the +d +Lord. He will remind you of my way of life in +Christ Jesus, + which is exactly what I teach eve- +18 +rywhere in every church. + +19 + +Some of you have become arrogant, as if I were +not coming to you. +But I will come to you +shortly, if the Lord is willing, and then I will find +out not only what these arrogant people are say- +ing, but what power they have. +For the king- +21 +dom of God is not a matter of talk but of power. +Which do you prefer? Shall I come to you with + +Immorality Rebuked +a rod, or in love and with a gentle spirit? +(Leviticus 20:10–21 ; Proverbs 5:1–23) + +20 + +5 + +2 + +It is actually reported that there is sexual +immorality among you, and of a kind that is +intolerable even among pagans: A man has his +And you are proud! Shouldn’t you +father’s wife. +rather have been stricken with grief and have +removed from your fellowship the man who did +3 +this? + + e + +4 + +Although I am absent from you in body, I am +present with you in spirit, and I have already pro- +nounced judgment on the one who did this, just +as if I were present. +When you are assembled in +the name of our Lord Jesus + and I am with you in +5 +spirit, along with the power of the Lord Jesus, +hand this man over to Satan for the destruction +of the flesh, so that his spirit may be saved on the +6 +Day of the Lord. + +f + +11 + +12 + +We are fools for Christ, but you are wise in +Christ. We are weak, but you are strong. You are +honored, but we are dishonored. +To this very +hour we are hungry and thirsty, we are poorly +clothed, we are brutally treated, we are home- +We work hard with our own hands. When +less. +we are vilified, we bless; when we are perse- +b 20 +a 19 +when we are slandered, +cuted, we endure it; +f 5 +our Lord Jesus, when you are assembled + +c 22 + +13 + +7 + +Your boasting is not good. Do you not know that +a little leaven works through the whole batch of +Get rid of the old leaven, that you may +dough? +be a new unleavened batch, as you really are. For +8 +Christ, our Passover lamb, has been sacrificed. +Therefore let us keep the feast, not with the old +bread, leavened with malice and wickedness, but +with the unleavened bread of sincerity and of +d 17 +truth. +the Lord Jesus + +my way of life in Christ, + +In the name of + +e 4 + +Job 5:13 + +Psalm 94:11 + +That is, Peter +BYZ and TR + +BYZ and TR + +Or + + Expel the Immoral Brother + +12 + +1 Corinthians 7:7 | 1025 + +9 + +10 + +11 + +I wrote you in my letter not to associate with +sexually immoral people. +I was not including +the sexually immoral of this world, or the greedy +and swindlers, or idolaters. In that case you +would have to leave this +But now I am +writing you not to associate with anyone who +claims to be a brother but is sexually immoral or +greedy, an idolater or a verbal abuser, a drunk- +ard or a swindler. With such a man do not even +12 +eat. + + world. + +13 + +What business of mine is it to judge those out- +side the church? Are you not to judge those in- +side? +God will judge those outside. “Expel the +Lawsuits among Believers +wicked man from among you.” + + a + +6 + +2 + +If any of you has a grievance against another, +how dare he go to law before the unright- +eous instead of before the saints! +Do you not +know that the saints will judge the world? And if +you are to judge the world, are you not compe- +Do you not know that +tent to judge trivial cases? +we will judge angels? How much more the things +4 +of this life! + +3 + +5 + +So if you need to settle everyday matters, do +you appoint as judges those of no standing in +I say this to your shame. Is there re- +the church? +6 +ally no one among you wise enough to arbitrate +between his brothers? +Instead, one brother +goes to law against another, and this in front of +7 +unbelievers! + +8 + +The very fact that you have lawsuits among you +means that you are thoroughly defeated already. +Why not rather be wronged? Why not rather be +Instead, you yourselves cheat and do +cheated? +Members of Christ +wrong, even against your own brothers! +9 + + b + +10 + +Do you not know that the wicked will not in- +herit the kingdom of God? Do not be deceived: +Neither the sexually immoral, nor idolaters, nor +adulterers, nor men who submit to or perform +nor thieves, nor the greedy, +homosexual acts, +nor drunkards, nor verbal abusers, nor swin- +And that +dlers, will inherit the kingdom of God. +is what some of you were. But you were washed, +you were sanctified, you were justified, in the +name of the Lord Jesus Christ and by the Spirit of +a 13 +our God. +wrong, and this to brothers! +long to God + +Expel the evil from among you + +Literally + +c 16 + +e 1 + +11 + +13 + +“Everything is permissible for me,” but not +everything is beneficial. “Everything is permissi- +ble for me,” but I will not be mastered by any- +“Food for the stomach and the stomach +thing. +for food,” but God will destroy them both. The +body is not intended for sexual immorality, but +By His +for the Lord, and the Lord for the body. +power God raised the Lord from the dead, and He +15 +will raise us also. + +14 + +Do you not know that your bodies are mem- +bers of Christ? Shall I then take the members of +16 +Christ and unite them with a prostitute? Never! +Or don’t you know that he who unites himself +with a prostitute is one with her in body? For it +But +is said, “The two will become one flesh.” +he who unites himself with the Lord is one with +The Temple of the Holy Spirit +Him in spirit. +(Romans 12:1–8 ; 1 Corinthians 3:16–23) + +17 + + c + +18 + +19 + +Flee from sexual immorality. Every other sin a +man can commit is outside his body, but he who +Do you +sins sexually sins against his own body. +not know that your body is a temple of the Holy +20 +Spirit who is in you, whom you have received +you were +from God? You are not your own; +bought at a price. Therefore glorify God with +Principles of Marriage +your body. + +d + +7 + +e + +2 + +Now for the matters you wrote about: It is +But +good to abstain from sexual relations. +because there is so much sexual immorality, each +man should have his own wife, and each woman +3 +her own husband. + +The husband should fulfill his marital duty to +4 +his wife, and likewise the wife to her husband. +The wife does not have authority over her own +body, but the husband. Likewise the husband +does not have authority over his own body, but +5 +the wife. + +6 + +Do not deprive each other, except by mutual +consent and for a time, so you may devote your- +selves to prayer. Then come together again, so +that Satan will not tempt you through your lack +7 +I say this as a concession, not as +of self-control. +I wish that all men were as I am. +a command. +But each man has his own gift from God; one has +this gift, another has that. + +d 20 + +do +and with your spirit, which be- + +b 8 + +It is good for a man not to touch a woman. + +; Deuteronomy 13:5, 17:7, 19:19, 21:21, 22:21, 22:24, 24:7 + +Literally + +. + +Literally + +Genesis 2:24 (see also LXX) + +BYZ and TR include + + 1026 | 1 Corinthians 7:8 + +8 + +Now to the unmarried and widows I say this: It +9 +is good for them to remain unmarried, as I am. +But if they cannot control themselves, let them +marry. For it is better to marry than to burn with +10 +passion. + +11 + +To the married I give this command (not I, but +the Lord): A wife must not separate from her +husband. +But if she does, she must remain un- +married or else be reconciled to her husband. +12 +And a husband must not divorce his wife. + +14 + +To the rest I say this (I, not the Lord): If a +brother has an unbelieving wife and she is will- +13 +ing to live with him, he must not divorce her. +And if a woman has an unbelieving husband +and he is willing to live with her, she must not +divorce him. +For the unbelieving husband is +sanctified through his believing wife, and the +unbelieving wife is sanctified through her believ- +ing husband. Otherwise your children would be +15 +unclean, but now they are holy. + +16 + +But if the unbeliever leaves, let him go. The be- + a +lieving brother or sister is not bound in such +cases. God has called you +How +do you know, wife, whether you will save your +husband? Or how do you know, husband, +Live Your Calling +whether you will save your wife? +17 + + to live in peace. + +18 + +Regardless, each one should lead the life that +the Lord has assigned to him and to which God +has called him. This is what I prescribe in all the +churches. +Was a man already circumcised +when he was called? He should not become un- +circumcised. Was a man still uncircumcised +19 +when called? He should not be circumcised. +Circumcision is nothing and uncircumcision is +nothing. Keeping God’s commandments is what +20 +counts. + +21 + +22 + +Each one should remain in the situation he was +in when he was called. +Were you a slave when +you were called? Do not let it concern you—but +if you can gain your freedom, take the oppor- +tunity. +For he who was a slave when he was +called by the Lord is the Lord’s freedman. Con- +versely, he who was a free man when he was +23 +called is Christ’s slave. + +24 + +The Unmarried and Widowed + +25 + + b + +26 + +27 + +Now about virgins, I have no command from +the Lord, but I give a judgment as one who by the +Lord’s mercy is trustworthy. +Because of the +present + crisis, I think it is good for a man to +remain as he is. +Are you committed to a wife? +28 +Do not seek to be released. Are you free of com- +mitment? Do not look for a wife. +But if you do +marry, you have not sinned. And if a virgin mar- +ries, she has not sinned. But those who marry +will face troubles in this life, and I want to spare +29 +you this. + +30 + +What I am saying, brothers, is that the time is +short. From now on those who have wives +should live as if they had none; +those who +weep, as if they did not; those who are joyful, as +if they were not; those who make a purchase, as +if they had nothing; +and those who use the +things of this world, as if not dependent on them. +For this world in its present form is passing +32 +away. + +31 + +34 + +33 + +I want you to be free from concern. The un- +married man is concerned about the work of the +Lord, how he can please the Lord. +But the mar- +ried man is concerned about the affairs of this +world, how he can please his wife, +and his +interests are divided. The unmarried woman or +virgin is concerned about the work of the Lord, +how she can be holy in both body and spirit. +But the married woman is concerned about the +affairs of this world, how she can please her +35 +husband. + +I am saying this for your own good, not to re- +strict you, but in order to promote proper deco- +36 +rum and undivided devotion to the Lord. + +c + +However, if someone thinks he is acting inap- +propriately toward his betrothed, and if she is +beyond her youth and they ought to marry, + let +37 +him do as he wishes; he is not sinning; they +But the man who is firmly +should get married. +established in his heart and under no constraint, +d +with control over his will and resolve in his heart +38 +not to marry the virgin, + + he will do well. + +So then, he who marries the virgin does well, +39 +but he who does not marry her does even better. + +You were bought at a price; do not become +slaves of men. +Brothers, each one should re- +main in the situation he was in when God called +b 26 +a 15 +him. +virgin + +in his heart to keep the betrothed + +A wife is bound to her husband as long as +he lives. But if her husband dies, she is free +to marry anyone she wishes, as long as he be- +longs to the Lord. +In my judgment, however, + +d 37 +she is free to be married to whom she wishes, only in the Lord + +in his heart to keep the + +and it ought to be so + +impending + +e 39 + +c 36 + +40 + +us + +e + +SBL, BYZ, and TR + +Or + + or + +Literally + +Literally + +Literally + + she is happier if she remains as she is. And I think +Food Sacrificed to Idols +that I too have the Spirit of God. +(Ezekiel 14:1–11 ; Romans 14:13–23) + +8 + +2 + +Now about food sacrificed to idols: We know +that we all have knowledge. Knowledge +The one who thinks +puffs up, but love builds up. +he knows something does not yet know as he +ought to know. +But the one who loves God is +4 +known by God. + +3 + +6 + +5 + +So about eating food sacrificed to idols: We +know that an idol is nothing at all in the world, +For even if +and that there is no God but one. +there are so-called gods, whether in heaven or +on earth (as there are many so-called gods and +yet for us there is but one God, the Fa- +lords), +ther, from whom all things came and for whom +we exist. And there is but one Lord, Jesus Christ, +through whom all things came and through +7 +whom we exist. + +But not everyone has this knowledge. Some +people are still so accustomed to idols that they +eat such food as if it were sacrificed to an idol. +8 +And since their conscience is weak, it is defiled. +But food does not bring us closer to God: We are +9 +no worse if we do not eat, and no better if we do. + +10 + +11 + +Be careful, however, that your freedom does +For +not become a stumbling block to the weak. +if someone with a weak conscience sees you who +are well informed eating in an idol’s temple, will +he not be encouraged to eat food sacrificed to +So this weak brother, for whom Christ +idols? +By sin- +died, is destroyed by your knowledge. +ning against your brothers in this way and +wounding their weak conscience, you sin against +13 +Christ. + +12 + +Therefore, if what I eat causes my brother to +stumble, I will never eat meat again, so that I will +The Rights of an Apostle (De. 18:1–8) +not cause him to stumble. + +9 + +2 + +Am I not free? Am I not an apostle? Have I +not seen Jesus our Lord? Are you yourselves +not my workmanship in the Lord? +Even if I am +not an apostle to others, surely I am to you. For +3 +you are the seal of my apostleship in the Lord. +4 + +5 + +This is my defense to those who scrutinize me: +a 5 +take along a sister—a wife— +Have we no right to food and to drink? +Have +thority not to work? + +b 5 + +d 9 + +1 Corinthians 9:21 | 1027 + +a + + b + +6 + + as do +we no right to take along a believing wife, +the other apostles and the Lord’s brothers and +Or are Barnabas and I the only apos- +Cephas? +7 +tles who must work for a living? + + c + +Who serves as a soldier at his own expense? +Who plants a vineyard and does not eat of its +fruit? Who tends a flock and does not drink of its +8 +milk? + +9 + + d + +10 + +Do I say this from a human perspective? Doesn’t +For it is written in +the Law say the same thing? +the Law of Moses: “Do not muzzle an ox while it + Is it about oxen that +is treading out the grain.” +Isn’t He actually speaking +God is concerned? +on our behalf? Indeed, this was written for us, be- +cause when the plowman plows and the thresher +threshes, they should also expect to share in the +11 +harvest. + +12 + +If we have sown spiritual seed among you, is it +too much for us to reap a material harvest from +If others have this right to your support, +you? +shouldn’t we have it all the more? But we did not +exercise this right. Instead, we put up with any- +13 +thing rather than hinder the gospel of Christ. + +14 + +15 + +Do you not know that those who work in the +temple eat of its food, and those who serve at the +In the same way, +altar partake of its offerings? +the Lord has prescribed that those who preach +the gospel should receive their living from the +But I have not used any of these rights. +gospel. +And I am not writing this to suggest that some- +thing be done for me. Indeed, I would rather die +16 +than let anyone nullify my boast. + +17 + +18 + +Yet when I preach the gospel, I have no reason +to boast, because I am obligated to preach. Woe +to me if I do not preach the gospel! +If my +preaching is voluntary, I have a reward. But if it +is not voluntary, I am still entrusted with a re- +What then is my reward? That in +sponsibility. +preaching the gospel I may offer it free of charge, +Paul the Servant to All +and so not use up my rights in preaching it. +19 + +20 + +Though I am free of obligation to anyone, I +make myself a slave to everyone, to win as many +To the Jews I became like a Jew, to +as possible. +win the Jews. To those under the law I became +like one under the law (though I myself am not +To +under the law), to win those under the law. +Or is it only Barnabas and I who do not have au- +c 6 +those without the law I became like one without + +21 + +Literally + +That is, Peter + +Literally + +Deuteronomy 25:4 + + 1028 | 1 Corinthians 9:22 + +22 + +the law (though I am not outside the law of God +but am under the law of Christ), to win those +To the weak I became weak, +without the law. +to win the weak. I have become all things to all +people so that by all possible means I might save +23 +some. + +seized you except what is common to man. And +God is faithful; He will not let you be tempted be- +yond what you can bear. But when you are +tempted, He will also provide an escape, so that +Flee from Idolatry (Exodus 20:22–26) +you can stand up under it. +14 + +15 + +I do all this for the sake of the gospel, so that I + +Run Your Race to Win +may share in its blessings. +24 + +25 + +Do you not know that in a race all the runners +run, but only one receives the prize? Run in such +a way as to take the prize. +Everyone who com- +petes in the games trains with strict discipline. +They do it for a crown that is perishable, but we +There- +do it for a crown that is imperishable. +fore I do not run aimlessly; I do not fight like I am +No, I discipline my body and +beating the air. +make it my slave, so that after I have preached to +Warnings from Israel’s Past +others, I myself will not be disqualified. +(Numbers 16:41–50 ; Numbers 25:1–5) + +26 + +27 + +10 + +2 + +4 + +I do not want you to be unaware, broth- +ers, that our forefathers were all under +the cloud, and that they all passed through the +3 +They were all baptized into Moses in the +sea. +They all ate the same +cloud and in the sea. +spiritual food +and drank the same spiritual +drink; for they drank from the spiritual rock that +5 +accompanied them, and that rock was Christ. +Nevertheless, God was not pleased with most +of them, for they were struck down in the +6 +wilderness. + +7 + + a + +These things took place as examples to keep us +from craving evil things as they did. +Do not be +idolaters, as some of them were. As it is written: +8 +“The people sat down to eat and drink and got up +to indulge in revelry.” +We should not commit +sexual immorality, as some of them did, and in +9 +one day twenty-three thousand of them died. +10 + as some of them did, +We should not test Christ, +And do not com- +and were killed by snakes. +plain, as some of them did, and were killed by the +11 +destroying angel. + +b + +c + +Now these things happened to them as exam- +ples and were written down as warnings for us, +12 +on whom the fulfillment of the ages has come. +So the one who thinks he is standing firm +b 9 +a 7 +No temptation has +should be careful not to fall. +are lawful,” +; Exodus 32:6 +Or +Lord’s, and the fullness thereof— + twice in this verse + +e 26 +WH, NE, and Tischendorf + +Psalm 24:1 + +to play + +f 28 + +13 + +16 + +Therefore, my beloved, flee from idolatry. +I +speak to reasonable people; judge for yourselves +Is not the cup of blessing that we +what I say. +bless a participation in the blood of Christ? And +is not the bread that we break a participation in +Because there is one loaf, +the body of Christ? +we who are many are one body; for we all par- +18 +take of the one loaf. + +17 + +19 + +21 + +Consider the people of Israel: Are not those +who eat the sacrifices fellow partakers in the al- +tar? +Am I suggesting, then, that food sacrificed +20 +to an idol is anything, or that an idol is anything? +No, but the sacrifices of pagans are offered to +demons, not to God. And I do not want you to be +You cannot drink +participants with demons. +the cup of the Lord and the cup of demons too; +22 +you cannot partake in the table of the Lord and +Are we trying to pro- +the table of demons too. +voke the Lord to jealousy? Are we stronger than +He? All to God’s Glory (1 Peter 4:1–11) +23 + + d + +“Everything is permissible,” + + but not every- +24 +thing is beneficial. “Everything is permissible,” +No one should +but not everything is edifying. +25 +seek his own good, but the good of others. + +26 + +Eat anything sold in the meat market without +for, “The earth + +raising questions of conscience, +27 +is the Lord’s, and the fullness thereof.” + + e + +28 + +If an unbeliever invites you to a meal and you +want to go, eat anything set before you without +But if some- +raising questions of conscience. +one tells you, “This food was offered to idols,” + f +then do not eat it, for the sake of the one who told +you and for the sake of conscience— +the other +one’s conscience, I mean, not your own. For why +should my freedom be determined by someone +If I partake in the meal with +else’s conscience? +thankfulness, why am I denounced because of +31 +that for which I give thanks? + +30 + +29 + +32 + +test the Lord + +So whether you eat or drink or whatever you +d 23 +the destroyer +Do not become +do, do it all to the glory of God. + +and for the sake of conscience—for the earth is the + +“All things + +c 10 + +Literally + +Or + +BYZ and TR + + 33 + +a stumbling block, whether to Jews or Greeks or +as I also try to please eve- +the church of God— +ryone in all I do. For I am not seeking my own +good, but the good of many, that they may be +Roles in Worship +saved. + +11 + +2 + +You are to imitate me, just as I imitate +Christ. + +3 + +Now I commend you for remembering me in +everything and for maintaining the traditions, +But I want you +just as I passed them on to you. +to understand that the head of every man is +Christ, and the head of the woman is man, and +4 +the head of Christ is God. + +5 + +Every man who prays or prophesies with his +head covered dishonors his head. +And every +woman who prays or prophesies with her head +6 +uncovered dishonors her head, for it is just as if +If a woman does not +her head were shaved. +cover her head, she should have her hair cut off. +And if it is shameful for a woman to have her hair +7 +cut or shaved off, she should cover her head. + +8 + +A man ought not to cover his head, since he is +the image and glory of God; but the woman is the +For man did not come from +glory of man. +Neither was +woman, but woman from man. +10 +man created for woman, but woman for man. +For this reason a woman ought to have a sign + her head, because of the angels. + +11 +of authority on + +9 + + a + +In the Lord, however, woman is not independ- +12 +ent of man, nor is man independent of woman. +For just as woman came from man, so also man +is born of woman. But everything comes from +13 +God. + +15 + +Judge for yourselves: Is it proper for a woman +14 +to pray to God with her head uncovered? +Doesn’t nature itself teach you that if a man +but that if +has long hair, it is a disgrace to him, +16 +a woman has long hair, it is her glory? For long +hair is given to her as a covering. +If anyone is +inclined to dispute this, we have no other prac- +Sharing in the Lord’s Supper +tice, nor do the churches of God. +(Matt. 26:20–30 ; Mark 14:17–26 ; Luke 22:14–23) + +17 + +1 Corinthians 12:3 | 1029 + +19 + +among you, and in part I believe it. +And indeed, +there must be differences among you to show +20 +which of you are approved. +21 + +Now then, when you come together, it is not +b +For as you eat, each + +the Lord’s Supper you eat. +of you goes ahead without sharing his meal. +22 +While one remains hungry, another gets drunk. +Don’t you have your own homes in which to +eat and drink? Or do you despise the church of +God and humiliate those who have nothing? +What can I say to you? Shall I praise you for this? +23 +No, I will not! + + c + +For I received from the Lord what I also passed +24 +on to you: The Lord Jesus, on the night He was +betrayed, took bread, +and when He had given +thanks, He broke it and said, “This is My body, +25 +which is for you; + do this in remembrance of Me.” +In the same way, after supper He took the cup, +saying, “This cup is the new covenant in My +blood; do this, as often as you drink it, in remem- +brance of Me.” +For as often as you eat this +bread and drink this cup, you proclaim the Lord’s +27 +death until He comes. + +26 + + d + +28 + +Therefore, whoever eats the bread or drinks +the cup of the Lord in an unworthy manner will +be guilty of sinning against the + body and blood +of the Lord. +Each one must examine himself +29 +before he eats of the bread and drinks of the cup. +For anyone who eats and drinks without rec- +ognizing the body + eats and drinks judgment on +himself. +That is why many among you are +weak and sick, and a number of you have fallen +31 +asleep. + +30 + + e + +32 + +Now if we judged ourselves properly, we +But when we +would not come under judgment. +are judged by the Lord, we are being disciplined +33 +so that we will not be condemned with the world. + +34 + +So, my brothers, when you come together to +If anyone is hungry, +eat, wait for one another. +he should eat at home, so that when you come to- +gether it will not result in judgment. And when I +come, I will give instructions about the remain- +Spiritual Gifts +ing matters. + +12 + +2 + +18 + +In the following instructions I have no praise +to offer, because your gatherings do more harm +than good. +First of all, I hear that when you +a 10 +come together as a church, there are divisions +d 27 + +have authority over +will be responsible for the + +b 21 + +each one takes first his own meal. + +the body of the Lord + +Now about spiritual gifts, brothers, I do +You +not want you to be uninformed. +know that when you were pagans, you were in- +Therefore +fluenced and led astray to mute idols. +I inform you that no one who is speaking by the + +which is broken for you + +c 24 + +3 + +BYZ and TR + +Or +Or + +e 29 +Literally + +BYZ and TR + + 1030 | 1 Corinthians 12:4 + +Spirit of God says, “Jesus be cursed,” and no one +4 +can say, “Jesus is Lord,” except by the Holy Spirit. +5 + +6 + +There are different gifts, but the same Spirit. +There are different ministries, but the same +There are different ways of working, but + +Lord. +7 +the same God works all things in all people. + +8 + +9 + +10 + +Now to each one the manifestation of the Spirit +is given for the common good. +To one there is +given through the Spirit the message of wisdom, +to another the message of knowledge by the +same Spirit, +to another faith by the same Spirit, +to another gifts of healing by that one Spirit, +to +another the working of miracles, to another +prophecy, to another distinguishing between +spirits, to another speaking in various tongues, +11 +and to still another the interpretation of tongues. +All these are the work of one and the same +Spirit, who apportions them to each one as He +The Body of Christ +determines. +12 + +The body is a unit, though it is composed of +many parts. And although its parts are many, +they all form one body. So it is with Christ. +For +in one Spirit we were all baptized into one body, +whether Jews or Greeks, slave or free, and we +14 +were all given one Spirit to drink. + +13 + +15 + +For the body does not consist of one part, but +of many. +If the foot should say, “Because I am +not a hand, I do not belong to the body,” that +16 +would not make it any less a part of the body. +And if the ear should say, “Because I am not an +eye, I do not belong to the body,” that would not +make it any less a part of the body. +If the whole +body were an eye, where would the sense of +hearing be? If the whole body were an ear, where +18 +would the sense of smell be? + +17 + +19 + +20 + +But in fact, God has arranged the members of +the body, every one of them, according to His de- +sign. +If they were all one part, where would the +body be? +As it is, there are many parts, but one +21 +body. + +22 + +The eye cannot say to the hand, “I do not need +you.” Nor can the head say to the feet, “I do not +need you.” +On the contrary, the parts of the +23 +body that seem to be weaker are indispensable, +and the parts we consider less honorable, we +treat with greater honor. And our unpresentable +24 +treated with special modesty, +parts are +whereas our presentable parts have no such + +a 3 +need. + +surrender my body to be burned + +SBL, NE, BYZ, and TR + +25 + +26 + +But God has composed the body and has given +so that +greater honor to the parts that lacked it, +there should be no division in the body, but that +its members should have mutual concern for one +If one part suffers, every part suffers +another. +with it; if one part is honored, every part rejoices +The Greater Gifts +with it. +27 + +28 + +29 + +Now you are the body of Christ, and each of +you is a member of it. +And in the church God +has appointed first of all apostles, second proph- +ets, third teachers, then workers of miracles, and +those with gifts of healing, helping, administra- +tion, and various tongues. +Are all apostles? Are +all prophets? Are all teachers? Do all work mira- +31 +cles? +Do all have gifts of healing? Do all speak +in tongues? Do all interpret? +But eagerly desire +the greater gifts. +Love +And now I will show you the most excellent way. + +30 + +13 + +2 + +If I speak in the tongues of men and of +angels, but have not love, I am only a +ringing gong or a clanging cymbal. +If I have the +gift of prophecy and can fathom all mysteries and +all knowledge, and if I have absolute faith so as to +3 +move mountains, but have not love, I am nothing. +If I give all I possess to the poor and exult in the + but have not love, I gain + +a + +surrender of my body, +4 +nothing. + +5 + +Love is patient, love is kind. It does not envy, it +It is not rude, it +does not boast, it is not proud. +6 +is not self-seeking, it is not easily angered, +it keeps no account of wrongs. +Love takes no +pleasure in evil, but rejoices in the truth. +It +bears all things, believes all things, hopes all +8 +things, endures all things. + +7 + +Love never fails. But where there are prophe- +cies, they will cease; where there are tongues, +9 +there +they will be restrained; where +is +10 +knowledge, it will be dismissed. +For we know in +part and we prophesy in part, +but when the +11 +perfect comes, the partial passes away. + +When I was a child, I talked like a child, I +thought like a child, I reasoned like a child. When +Now +I became a man, I set aside childish ways. +we see but a dim reflection as in a mirror; then +we shall see face to face. Now I know in part; then +I shall know fully, even as I am fully known. + +12 + + 1 Corinthians 14:35 | 1031 + +18 + +19 + +I thank God that I speak in tongues more than +But in the church, I would rather +all of you. +speak five coherent words to instruct others than +20 +ten thousand words in a tongue. + +Brothers, stop thinking like children. In regard +21 +to evil be infants, but in your thinking be mature. + +It is written in the Law: + +“By strange tongues and foreign lips + c + +I will speak to this people, + +but even then they will not listen to Me, + +22 + +says the Lord.” + +Tongues, then, are a sign, not for believers, but +for unbelievers. Prophecy, however, is for believ- +23 +ers, not for unbelievers. + +So if the whole church comes together and +everyone speaks in tongues, and some who are +uninstructed or some unbelievers come in, will +24 +they not say that you are out of your minds? +But if an unbeliever or uninstructed person +comes in while everyone is prophesying, he will +and +be convicted and called to account by all, +the secrets of his heart will be made known. So +he will fall facedown and worship God, proclaim- +Orderly Worship +ing, “God is truly among you!” +26 + +25 + +What then shall we say, brothers? When you +come together, everyone has a psalm or a teach- +ing, a revelation, a tongue, or an interpretation. +27 +All of these must be done to build up the church. + +28 + +If anyone speaks in a tongue, two, or at most +three, should speak in turn, and someone must +interpret. +But if there is no interpreter, he +should remain silent in the church and speak +29 +only to himself and God. + +31 + +Two or three prophets should speak, and the +30 +others should weigh carefully what is said. +And if a revelation comes to someone who is +For you +seated, the first speaker should stop. +can all prophesy in turn so that everyone may be +33 +The spirits of +instructed and encouraged. +For God is +prophets are subject to prophets. +not a God of disorder, but of peace—as in all the +34 +churches of the saints. + +32 + +d + +13 + +And now these three remain: faith, hope, and + +Prophecy and Tongues +love; but the greatest of these is love. + +14 + +2 + +Earnestly pursue love and eagerly desire +spiritual gifts, especially the gift of +For he who speaks in a tongue does +prophecy. +not speak to men, but to God. Indeed, no one un- +3 +derstands him; he utters mysteries in the Spirit. +But he who prophesies speaks to men for their +The +edification, encouragement, and comfort. +one who speaks in a tongue edifies himself, but +5 +the one who prophesies edifies the church. + +4 + +I wish that all of you could speak in tongues, but +I would rather have you prophesy. He who +prophesies is greater than one who speaks in +tongues, unless he interprets so that the church +6 +may be edified. + +8 + +7 + +Now, brothers, if I come to you speaking in +tongues, how will I benefit you, unless I bring you +some revelation or knowledge or prophecy or +teaching? +Even in the case of lifeless instru- +ments, such as the flute or harp, how will anyone +recognize the tune they are playing unless the +notes are distinct? +Again, if the trumpet sounds +a muffled call, who will prepare for battle? +So it +is with you. Unless you speak intelligible words +with your tongue, how will anyone know what +you are saying? You will just be speaking into the +10 +air. + +9 + +11 + +Assuredly, there are many different languages +in the world, yet none of them is without mean- +ing. +If, then, I do not know the meaning of +someone’s language, I am a foreigner + to the +12 +speaker, and he is a foreigner to me. + + a + +13 + +14 + +It is the same with you. Since you are eager to +have spiritual gifts, strive to excel in gifts that +Therefore, the one who +build up the church. +speaks in a tongue should pray that he may inter- +For if I pray in a tongue, my spirit prays, +pret. +15 +but my mind is unfruitful. + +What then shall I do? I will pray with my spirit, +but I will also pray with my mind. I will sing with +b +16 +my spirit, but I will also sing with my mind. +Otherwise, if you speak a blessing in spirit, +how can someone who is uninstructed say +“Amen” to your thanksgiving, since he does not +You may be giving +know what you are saying? +thanks well enough, but the other one is not +a barbarian +a 11 +edified. +the churches of the saints: + +b 16 + +17 + +Women are to be silent in the churches. They +35 +are not permitted to speak, but must be in sub- +If they wish to inquire +mission, as the law says. +about something, they are to ask their own + +d 33 + +of peace. As in all + +in the Spirit + +c 21 + +peace + +Literally + +; twice in this verse + Thus, some translators begin the new paragraph after + +Or + +. + +Isaiah 28:11–12 + +Or + + 1032 | 1 Corinthians 14:36 + +husbands at home; for it is dishonorable for a +36 +woman to speak in the church. + +37 + +a + +Did the word of God originate with you? Or are +If anyone +you the only ones it has reached? +considers himself a prophet or spiritual person, +38 +let him acknowledge that what I am writing you +But if anyone ignores +is the Lord’s command. +39 +this, he himself will be ignored. + +b + +40 + +So, my brothers, be eager to prophesy, and do +But everything + +not forbid speaking in tongues. +The Resurrection of Christ +must be done in a proper and orderly manner. + +15 + +2 + +Now, brothers, I want to remind you of +the gospel I preached to you, which you +By this +received, and in which you stand firm. +gospel you are saved, if you hold firmly to the +word I preached to you. Otherwise, you have be- +3 +lieved in vain. + +5 + +4 + +and that He appeared to Cephas + +For what I received I passed on to you as of first +importance: that Christ died for our sins accord- +ing to the Scriptures, +that He was buried, that + c +He was raised on the third day according to the +6 +Scriptures, +and then to the Twelve. +After that, He appeared +to more than five hundred brothers at once, most +of whom are still living, though some have fallen +asleep. +Then He appeared to James, then to all +the apostles. +And last of all He appeared to me +9 +also, as to one of untimely birth. + +8 + +7 + +10 + +For I am the least of the apostles and am unwor- +thy to be called an apostle, because I persecuted +the church of God. +But by the grace of God I am +what I am, and His grace to me was not in vain. +No, I worked harder than all of them—yet not +11 +I, but the grace of God that was with me. +Whether, then, it was I or they, this is what we + +The Resurrection of the Dead +preach, and this is what you believed. +12 + +16 + +17 +For if the dead are not raised, then not even +And if Christ has not +Christ has been raised. +18 +been raised, your faith is futile; you are still in +Then those also who have fallen +your sins. +If our hope in +asleep in Christ have perished. +Christ is for this life alone, we are to be pitied +The Order of Resurrection +more than all men. +20 + +19 + +22 + +21 + +But Christ has indeed been raised from the +dead, the firstfruits of those who have fallen +For since death came through a man, +asleep. +the resurrection of the dead comes also through +For as in Adam all die, so in Christ all +a man. +will be made alive. +But each in his own turn: +Christ the firstfruits; then at His coming, those +24 +who belong to Him. + +23 + +26 + +Then the end will come, when He hands over +the kingdom to God the Father after He has +25 +destroyed all dominion, authority, and power. +For He must reign until He has put all His ene- +27 +mies under His feet. +The last enemy to be de- + d +For “God has put everything +stroyed is death. +under His feet.” + Now when it says that every- +thing has been put under Him, this clearly does +not include the One who put everything under +And when all things have been subjected +Him. +to Him, then the Son Himself will be made subject +to Him who put all things under Him, so that God +29 +may be all in all. + +28 + +31 + +30 + +If these things are not so, what will those do +who are baptized for the dead? If the dead are +not raised at all, why are people baptized for +And why do we endanger ourselves +them? +I face death every day, brothers, +every hour? +32 +as surely as I boast about you in Christ Jesus our +Lord. +If I fought wild beasts in Ephesus for hu- +man motives, what did I gain? If the dead are not +raised, + + e + +13 + +15 + +But if it is preached that Christ has been raised +from the dead, how can some of you say that +there is no resurrection of the dead? +If there is +14 +no resurrection of the dead, then not even Christ +has been raised. +And if Christ has not been +raised, our preaching is worthless, and so is your +faith. +In that case, we are also exposed as false +witnesses about God. For we have testified about +God that He raised Christ from the dead, but He +did not raise Him if in fact the dead are not +a 35 +raised. +d 27 + +e 32 + +f 33 + +Some manuscripts place verses 34–35 after verse 40. +Psalm 8:6 + +Isaiah 22:13 + +“Let us eat and drink, + +33 + +for tomorrow we die.” + f + +34 + +Do not be deceived: “Bad company corrupts +good character.” +Sober up as you ought, and +stop sinning; for some of you are ignorant of God. +The Resurrection Body +I say this to your shame. +35 + +But someone will ask, “How are the dead +raised? With what kind of body will they come?” + +b 38 + +let him be ignorant +Thais + +c 5 + +BYZ and TR + +That is, Peter + +Probably a quote from the Greek comedy + + by Menander + + 36 + +37 + +You fool! What you sow does not come to life +And what you sow is not the +unless it dies. +body that will be, but just a seed, perhaps of +But God gives it a +wheat or something else. +body as He has designed, and to each kind of seed +39 +He gives its own body. + +38 + +40 + +Not all flesh is the same: Men have one kind of +flesh, animals have another, birds another, and +There are also heavenly bodies +fish another. +and earthly bodies. But the splendor of the heav- +enly bodies is of one degree, and the splendor of +the earthly bodies is of another. +The sun has +one degree of splendor, the moon another, and +the stars another; and star differs from star in +42 +splendor. + +41 + +44 + +43 + +So will it be with the resurrection of the dead: +What is sown is perishable; it is raised imperish- +It is sown in dishonor; it is raised in glory. +able. +It is sown in weakness; it is raised in power. +It +is sown a natural body; it is raised a spiritual +body. If there is a natural body, there is also a +So it is written: “The first man +spiritual body. +Adam became a living being”; + the last Adam a +46 +life-giving spirit. + +45 + + a + +47 + +48 + +The spiritual, however, was not first, but the +natural, and then the spiritual. +The first man +was of the dust of the earth, the second man from +As was the earthly man, so also are +heaven. +those who are of the earth; and as is the heavenly +man, so also are those who are of heaven. +And +just as we have borne the likeness of the earthly +man, so also shall we bear the likeness of the +Where, O Death, Is Your Victory? +heavenly man. +(Hosea 13:9–14) + +49 + +50 + +Now I declare to you, brothers, that flesh and +blood cannot inherit the kingdom of God, nor +51 +does the perishable inherit the imperishable. + +52 + +Listen, I tell you a mystery: We will not all +in an in- +sleep, but we will all be changed— +stant, in the twinkling of an eye, at the last trum- +pet. For the trumpet will sound, the dead will be +53 +raised imperishable, and we will be changed. + with the +imperishable, and the mortal with immortality. +a 45 +e 55 + +For the perishable must be clothed + +clothe itself + +b 53 + +c 54 + + b + +1 Corinthians 16:12 | 1033 + +54 + +c +When the perishable has been clothed with the + +imperishable and the mortal with immortality, +then the saying that is written will come to pass: +55 +“Death has been swallowed up in victory.” + + d + + e +“Where, O Death, is your victory? +Where, O Death, is your sting?” + +56 + +57 + +The sting of death is sin, and the power of sin +But thanks be to God, who gives us + +is the law. +58 +the victory through our Lord Jesus Christ! + +Therefore, my beloved brothers, be steadfast +and immovable. Always excel in the work of the +Lord, because you know that your labor in the +The Collection for the Saints +Lord is not in vain. +(2 Corinthians 9:1–15) + +16 + +3 + +2 + +Now about the collection for the saints, +you are to do as I directed the churches +On the first day of every week, each +of Galatia: +of you should set aside a portion of his income, +saving it up, so that when I come no collections +Then, on my arrival, I will send +will be needed. +4 +letters with those you recommend to carry your +And if it is advisable for me to +gift to Jerusalem. +Paul’s Travel Plans (Romans 15:23–33) +go also, they can travel with me. +5 + +6 + +After I go through Macedonia, however, I will +come to you; for I will be going through Macedo- +Perhaps I will stay with you awhile, or even +nia. +7 +spend the winter, so that you can help me on my +For I do not want to see +journey, wherever I go. +you now only in passing; I hope to spend some +But I will stay +time with you, if the Lord permits. +because a great +in Ephesus until Pentecost, +door for effective work has opened to me, even +Timothy and Apollos (Philippians 2:19–30) +though many oppose me. +10 + +8 + +9 + +f + +11 + +If Timothy comes, see to it that he has nothing +to fear while he is with you, for he is doing the +No one, then, +work of the Lord, just as I am. +should treat him with contempt. Send him on his +way in peace so that he can return to me, for I am +12 +expecting him along with the brothers. + +Now about our brother Apollos: I strongly +urged him to go to you with the brothers. He was + +Genesis 2:7 +Or +Hosea 13:14 (see also LXX); BYZ and TR + +Feast of Weeks +Shavuot, the late spring feast of pilgrimage to Jerusalem; it is also known as + + (see Exodus 34:22). + +d 54 +“Where, O Death, is your sting? Where, O Hades, is your victory?” +WH does not include + +and the mortal with immortality + +the Feast of Harvest + +. + +f 8 + +Isaiah 25:8 +the +That is, + + (see Exodus 23:16) or + + 1034 | 1 Corinthians 16:13 + +not at all inclined to go now, but he will go when +Concluding Exhortations +he has the opportunity. + +13 + +14 + +Be on the alert. Stand firm in the faith. Be men + +15 +of courage. Be strong. + +Do everything in love. + +You know that Stephanas and his household +were the first converts in Achaia, and they have +devoted themselves to the service of the saints. +to submit to such as +Now I urge you, brothers, +17 +these, and to every fellow worker and laborer. + +16 + +I am glad that Stephanas, Fortunatus, and +Achaicus have arrived, because they have sup- +For they re- +plied what was lacking from you. +freshed my spirit and yours as well. Show your +appreciation, therefore, to such men. + +18 + +Signature and Final Greetings +(Colossians 4:15–18 ; 2 Thessalonians 3:16–18) + +19 + + a + +The churches in the province of Asia + + send you + + b + +greetings. + + greet you warmly in the Lord, +Aquila and Prisca +20 +and so does the church that meets at their house. + +All the brothers here send you greetings. Greet + +21 +one another with a holy kiss. +22 + +This greeting is in my own hand—Paul. + + c + +If anyone does not love the Lord, let him be un- + +23 +der a curse. Come, O Lord! +24 + +The grace of the Lord Jesus be with you. + +d + +My love be with all of you in Christ Jesus. + +Amen. + +a 19 + +in Asia +c 22 + +Marana Tha! + +b 19 Prisca + +Priscilla + +Literally +d 24 +Acts 18:2. + +; Asia was a Roman province in what is now western Turkey. + +Amen. + from a transliteration of the Aramaic, an exclamation of approaching divine judgment + + is a variant of + +; see + +Greek +SBL, WH, and NA do not include + + 2 Corinthians + +Paul Greets the Corinthians +(Acts 18:1–11 ; 1 Corinthians 1:1–3) + +1 + +Paul, an apostle of Christ Jesus by the will of +God, and Timothy our brother, + +To the church of God in Corinth, together with all +2 +the saints throughout Achaia: + +Grace and peace to you from God our Father + +The God of All Comfort +and the Lord Jesus Christ. +3 + +4 + +Blessed be the God and Father of our Lord Jesus +Christ, the Father of compassion and the God of +all comfort, +who comforts us in all our troubles, +so that we can comfort those in any trouble with +5 +the comfort we ourselves have received from +For just as the sufferings of Christ overflow +God. +to us, so also through Christ our comfort over- +6 +flows. + +If we are afflicted, it is for your comfort and sal- +vation; if we are comforted, it is for your comfort, +which accomplishes in you patient endurance of +And our +the same sufferings we experience. +hope for you is sure, because we know that just +as you share in our sufferings, so also you will +8 +share in our comfort. + +7 + +a + +We do not want you to be unaware, brothers, +of the hardships we encountered in the province + We were under a burden far beyond our +of Asia. +9 +ability to endure, so that we despaired even of +Indeed, we felt we were under the sentence +life. +of death, in order that we would not trust in our- +10 +selves, but in God, who raises the dead. + +11 + +He has delivered us from such a deadly peril, +and He will deliver us. In Him we have placed our +as you +hope that He will yet again deliver us, +help us by your prayers. Then many will give +thanks on our behalf for the favor shown us in +Paul’s Change of Plans +answer to their prayers. +12 + +For this is our boast: Our conscience testifies +a 8 +that we have conducted ourselves in the world, +the Lord Jesus +Literally + +in Asia + +d 19 + +That is, Silas + +13 + + b +and especially in relation to you, in the holiness +and sincerity that are from God—not in worldly +For we do not +wisdom, but in the grace of God. +write you anything that is beyond your ability to +read and understand. And I hope that you will +as you have already +understand us completely, +understood us in part, that you may boast of us +just as we will boast of you in the day of our Lord +15 +Jesus. + +14 + +c + +16 + +Confident of this, I planned to visit you first, so +I +that you might receive a double blessing. +wanted to visit you on my way to Macedonia, and +to return to you from Macedonia, and then to +17 +have you help me on my way to Judea. + +20 + +19 + +18 + +When I planned this, did I do it carelessly? Or +do I make my plans by human standards, so as to +say “Yes, yes” and also “No, no”? +But as surely +as God is faithful, our message to you is not “Yes” + d +and “No.” +For the Son of God, Jesus Christ, who +was proclaimed among you by me and Silvanus +and Timothy, was not “Yes” and “No,” but in Him +it has always been “Yes.” +For all the promises +of God are “Yes” in Christ. And so through Him, +21 +our “Amen” is spoken to the glory of God. + +22 +Now it is God who establishes both us and you +in Christ. He anointed us, +placed His seal on us, +and put His Spirit in our hearts as a pledge of +what is to come. +I call God as my witness that +it was in order to spare you that I did not return +to Corinth. +Not that we lord it over your faith, +but we are fellow workers with you for your joy, +Reaffirm Your Love +because it is by faith that you stand firm. + +23 + +24 + +2 + +2 + +3 + +So I made up my mind not to make another +painful visit to you. +For if I grieve you, who +is left to cheer me but those whom I have +grieved? +I wrote as I did so that on my arrival I +would not be grieved by those who ought to +4 +make me rejoice. I had confidence in all of you, +For through many +that you would share my joy. +tears I wrote you out of great distress and an- +guish of heart, not to grieve you but to let you +know how much I love you. + +fleshly + +b 12 + +c 14 + +; Asia was a Roman province in what is now western Turkey. + +Literally + +BYZ and TR + + 1036 | 2 Corinthians 2:5 + +5 + +6 + +Now if anyone has caused grief, he has not +grieved me but all of you—to some degree, not to +The punishment imposed on him +overstate it. +So instead, +by the majority is sufficient for him. +you ought to forgive and comfort him, so that he +8 +will not be overwhelmed by excessive sorrow. +Therefore I urge you to reaffirm your love for + +7 + +9 +him. + +10 + +My purpose in writing you was to see if you +would stand the test and be obedient in every- +If you forgive anyone, I also forgive him. +thing. +And if I have forgiven anything, I have forgiven it +in order +in the presence of Christ for your sake, +that Satan should not outwit us. For we are not +Triumph in Christ +unaware of his schemes. +12 + +11 + +13 + +Now when I went to Troas to preach the gospel +of Christ and a door stood open for me in the +Lord, +I had no peace in my spirit, because I did +not find my brother Titus there. So I said good- +14 +bye to them and went on to Macedonia. + +15 + +But thanks be to God, who always leads us +triumphantly as captives in Christ and through +us spreads everywhere the fragrance of the +For we are to God the sweet +knowledge of Him. +aroma of Christ among those who are being +saved and those who are perishing. +To the one +we are an odor that brings death, to the other a + And who is qualified +fragrance that brings life. +17 +for such a task? + +16 + +a + +For we are not like so many others, who ped- +dle the word of God for profit. On the contrary, in +Christ we speak before God with sincerity, as +Ministers of a New Covenant +men sent from God. + +3 + +Are we beginning to commend ourselves +again? Or do we need, like some people, let- +2 +ters of recommendation to you or from you? +You yourselves are our letter, inscribed on our +It is clear +hearts, known and read by everyone. +that you are a letter from Christ, the result of our +ministry, written not with ink but with the Spirit +of the living God, not on tablets of stone but on +4 +tablets of human hearts. + +3 + +5 + +qualified us as ministers of a new covenant, not +of the letter but of the Spirit; for the letter kills, +The Glory of the New Covenant +but the Spirit gives life. +(Exodus 34:10–35) + +7 + +8 + +Now if the ministry of death, which was +engraved in letters on stone, came with such +glory that the Israelites could not gaze at the face +will not +of Moses because of its fleeting glory, +9 +the ministry of the Spirit be even more glorious? +For if the ministry of condemnation was glori- +ous, how much more glorious is the ministry of +righteousness! +Indeed, what was once glorious +11 +has no glory now in comparison to the glory that +For if what was fading away came +surpasses it. +with glory, how much greater is the glory of that +12 +which endures! + +10 + +13 + +Therefore, since we have such a hope, we are +We are not like Moses, who would +very bold. +put a veil over his face to keep the Israelites from +14 +gazing at the end of what was fading away. + +But their minds were closed. For to this day +the same veil remains at the reading of the old +15 +covenant. It has not been lifted, because only in +And even to this day +Christ can it be removed. +16 +when Moses is read, a veil covers their hearts. +But whenever anyone turns to the Lord, the + +17 +veil is taken away. + +18 + +Now the Lord is the Spirit, and where the Spirit +And we, who +of the Lord is, there is freedom. +with unveiled faces all reflect the glory of the +Lord, are being transformed into His image with +intensifying glory, which comes from the Lord, +The Light of the Gospel +who is the Spirit. + +4 + +b + +2 + + we do not lose heart. + +Therefore, since God in His mercy has given +In- +us this ministry, +stead, we have renounced secret and shameful +ways. We do not practice deceit, nor do we dis- +tort the word of God. On the contrary, by open +proclamation of the truth, we commend our- +selves to every man’s conscience in the sight of +And even if our gospel is veiled, it is veiled +God. +4 +to those who are perishing. + +3 + +Such confidence before God is ours through +Not that we are competent in ourselves +Christ. +to claim that anything comes from us, but our +a 16 +And He has +competence comes from God. +b 1 + +6 + +Therefore, having this ministry, as we have received mercy, + +The god of this age has blinded the minds of un- +believers, so they cannot see the light of the gos- +5 +pel of the glory of Christ, who is the image of God. +For we do not proclaim ourselves, but Jesus + +To the one, indeed, an aroma from death to death; but to the other, an aroma from life to life. + +Literally + +Literally + + 6 + + a + +Christ as Lord, and ourselves as your servants for +For God, who said, “Let light shine +Jesus’ sake. + made His light shine in our +out of darkness,” +hearts to give us the light of the knowledge of the +Treasure in Jars of Clay +glory of God in the face of Jesus Christ. +(Romans 6:1–14) + +b + +7 + +8 + +Now we have this treasure in jars of clay to +show that this surpassingly great power is from +We are hard pressed on all +God and not from us. +sides, but not crushed; perplexed, but not in des- +persecuted, but not forsaken; struck +pair; +10 +down, but not destroyed. + +9 + +11 + +We always carry around in our body the death +of Jesus, so that the life of Jesus may also be re- +For we who are alive are +vealed in our body. +always consigned to death for Jesus’ sake, so that +the life of Jesus may also be revealed in our mor- +tal body. +So then, death is at work in us, but life +13 +is at work in you. + +12 + + c + +14 + +And in keeping with what is written, “I be- +lieved, therefore I have spoken,” + we who have +the same spirit of faith also believe and therefore + d +knowing that the One who raised the +speak, + will also raise us with Jesus and pre- +Lord Jesus +sent us with you in His presence. +All this is for +your benefit, so that the grace that is extending +to more and more people may cause thanksgiv- +16 +ing to overflow, to the glory of God. + +15 + +18 + +17 + +Therefore we do not lose heart. Though our +outer self is wasting away, yet our inner self is +For our light and +being renewed day by day. +momentary affliction is producing for us an eter- +nal weight of glory that is far beyond compari- +son. +So we fix our eyes not on what is seen, but +on what is unseen. For what is seen is temporary, +Our Eternal Dwelling (Romans 8:18–27) +but what is unseen is eternal. + +5 + +2 + +For we know that if the earthly tent we live +in is dismantled, we have a building from +God, an eternal house in heaven, not built by hu- +For in this tent we groan, longing to +man hands. +because +be clothed with our heavenly dwelling, +4 +when we are clothed, we will not be found naked. +For while we are in this tent, we groan under +our burdens, because we do not wish to be un- +a 6 +clothed but clothed, so that our mortality may be +e 17 + +b 6 +a new creature + +in the face of Christ + +a sin offering + +f 21 + +3 + +2 Corinthians 5:21 | 1037 + +5 + +And it is God who has pre- +swallowed up by life. +pared us for this very purpose and has given us +6 +the Spirit as a pledge of what is to come. + +8 + +7 + +Therefore we are always confident, although +we know that while we are at home in the body, +For we walk by +we are away from the Lord. +faith, not by sight. +We are confident, then, and +9 +would prefer to be away from the body and at +So we aspire to please Him, +home with the Lord. +whether we are at home in this body or away +For we must all appear before the judg- +from it. +ment seat of Christ, that each one may receive his +due for the things done in the body, whether +Ambassadors for Christ +good or bad. +11 + +10 + +12 + +Therefore, since we know what it means to +fear the Lord, we try to persuade men. What we +are is clear to God, and I hope it is clear to your +We are not commending +conscience as well. +ourselves to you again. Instead, we are giving you +an occasion to be proud of us, so that you can an- +swer those who take pride in appearances rather +13 +than in the heart. + +14 + +15 + +If we are out of our mind, it is for God; if we are +For Christ’s love +of sound mind, it is for you. +compels us, because we are convinced that One +And He died for +died for all, therefore all died. +all, that those who live should no longer live for +themselves, but for Him who died for them and +16 +was raised again. + +17 + +So from now on we regard no one according to +the flesh. Although we once regarded Christ in +Therefore if any- +this way, we do so no longer. + The old has +one is in Christ, he is a new creation. +18 +passed away. Behold, the new has come! + +e + +19 + +All this is from God, who reconciled us to Him- +self through Christ and gave us the ministry of +that God was reconciling the +reconciliation: +world to Himself in Christ, not counting men’s +trespasses against them. And He has committed +20 +to us the message of reconciliation. + +21 + +Therefore we are ambassadors for Christ, as +though God were making His appeal through us. +We implore you on behalf of Christ: Be recon- +ciled to God. +God made Him who knew no sin +to be sin + on our behalf, so that in Him we might + d 14 +become the righteousness of God. + +who raised Jesus + + f + +c 13 + +Genesis 1:3 +Or + +SBL, NE, and WH +Or + +Psalm 116:10 (see also LXX) + +SBL + + 1038 | 2 Corinthians 6:1 + +Paul’s Hardships and God’s Grace + +18 + +6 + +a + +2 + +And: + +As God’s fellow workers, +not to receive God’s grace in vain. + + then, we urge you +For He + +says: + + b + +“In the time of favor I heard you, + +and in the day of salvation I helped you.” + +Behold, now is the time of favor; now is the day +3 +of salvation! + +We put no obstacle in anyone’s way, so that no + +4 +one can discredit our ministry. + +7 + +5 + +Rather, as servants of God we commend our- +selves in every way: in great endurance; in trou- +bles, hardships, and calamities; +in beatings, +6 +imprisonments, and riots; in labor, sleepless +nights, and hunger; +in purity, knowledge, +patience, and kindness; in the Holy Spirit and in +sincere love; +in truthful speech and in the +power of God; with the weapons of righteous- +ness in the right hand and in the left; +through +glory and dishonor, slander and praise; viewed +as imposters, yet genuine; +unknown, yet well- +10 +known; dying, and yet we live on; punished, yet +not killed; +sorrowful, yet always rejoicing; +poor, yet making many rich; having nothing, and +11 +yet possessing everything. + +8 + +9 + +12 + +We have spoken freely to you, Corinthians. +13 +Our hearts are open wide. +It is not our affec- +tion, but yours, that is restrained. +As a fair +exchange—I speak as to my children—open +Do Not Be Unequally Yoked +wide your hearts also. +14 + + c + +15 + +Do not be unequally yoked with unbelievers. +For what partnership can righteousness have +with wickedness? Or what fellowship does light +What harmony is there +have with darkness? +between Christ and Belial? + Or what does a be- +16 +liever have in common with an unbeliever? +What agreement can exist between the temple +of God and idols? For we are the temple of the +living God. As God has said: + +“I will dwell with them + +and walk among them, + + d + +and I will be their God, + +17 + +and they will be My people.” + +“Therefore come out from among them +and be separate, says the Lord. + + e + +Touch no unclean thing, +b 2 +Now working together +and I will receive you.” + +a 1 +d 16 + +e 17 + +“I will be a Father to you, + + f + +and you will be My sons and daughters, +Paul’s Joy in the Corinthians +says the Lord Almighty.” + +7 + +Therefore, beloved, since we have these +promises, let us cleanse ourselves from eve- +rything that defiles body and spirit, perfecting +2 +holiness in the fear of God. + +Make room for us in your hearts. We have +3 +wronged no one, we have corrupted no one, we +I do not say this to con- +have exploited no one. +demn you. I have said before that you so occupy +4 +our hearts that we live and die together with you. +Great is my confidence in you; great is my pride +in you; I am filled with encouragement; in all our +5 +troubles my joy overflows. + +7 + +For when we arrived in Macedonia, our bodies +had no rest, but we were pressed from every +6 +direction—conflicts on the outside, fears within. +But God, who comforts the downcast, com- +and not only by +forted us by the arrival of Titus, +his arrival, but also by the comfort he had re- +ceived from you. He told us about your longing, +your mourning, and your zeal for me, so that I +8 +rejoiced all the more. + +9 + +Even if I caused you sorrow by my letter, I do +not regret it. Although I did regret it—for I see +that my letter caused you sorrow, but only for a +yet now I rejoice, not because you +short time— +were made sorrowful, but because your sorrow +led you to repentance. For you felt the sorrow +that God had intended, and so were not harmed +Godly sorrow brings repent- +in any way by us. +ance that leads to salvation without regret, but +11 +worldly sorrow brings death. + +10 + +Consider what this godly sorrow has produced +in you: what earnestness, what eagerness to +clear yourselves, what indignation, what alarm, +what longing, what zeal, what vindication! In +12 +every way you have proved yourselves to be in- +So even though I wrote +nocent in this matter. +to you, it was not on account of the one who did +wrong or the one who was harmed, but rather +that your earnestness on our behalf would be +On ac- +made clear to you in the sight of God. +count of this, we are encouraged. +Beliar +c 15 + +13 + +f 18 + +Lit. + +Isaiah 49:8 (see also LXX) + +Scrivener’s TR and GOC; many Greek sources + +Lev. 26:12; Jer. 32:38; Ezek. 37:27 + +Isaiah 52:11; see also Ezekiel 20:34, including LXX. + +See 2 Samuel 7:14. + + 14 + +In addition to our own encouragement, we were +even more delighted by the joy of Titus. For his +Indeed, +spirit has been refreshed by all of you. +I was not embarrassed by anything I had boasted +to him about you. But just as everything we said +to you was true, so our boasting to Titus has +And his affection for +proved to be true as well. +you is even greater when he remembers that you +were all obedient as you welcomed him with fear +I rejoice that I can have com- +and trembling. +Generosity Commended +plete confidence in you. +(Philippians 4:10–20) + +16 + +15 + +8 + +3 + +2 + +Now, brothers, we want you to know about +the grace that God has given the churches of +In the terrible ordeal they suffered, +Macedonia. +their abundant joy and deep poverty overflowed +For I testify that they gave +into rich generosity. +4 +according to their ability and even beyond it. Of +they earnestly pleaded with +their own accord, +us for the privilege of sharing in this service to +the saints. +And not only did they do as we ex- +pected, but they gave themselves first to the Lord +6 +and then to us, through the will of God. + +5 + +7 + +So we urged Titus to help complete your act of +But just as you +grace, just as he had started it. +excel in everything—in faith, in speech, in + a +knowledge, in complete earnestness, and in the +8 + —see that you also excel +love we inspired in you +I am not giving a com- +in this grace of giving. +mand, but I am testing the sincerity of your love +9 +through the earnestness of others. + +10 + +For you know the grace of our Lord Jesus Christ, +that though He was rich, yet for your sake He be- +came poor, so that you through His poverty +And this is my opinion +might become rich. +about what is helpful for you in this matter: Last +11 +year you were the first not only to give, but even +Now finish the work, so +to have such a desire. +that you may complete it with the same eager de- +For if the eager- +sire, according to your means. +ness is there, the gift is acceptable according to +what one has, not according to what he does not +13 +have. + +12 + +14 + +It is not our intention that others may be re- +lieved while you are burdened, but that there +At the present time, your sur- +may be equality. +plus will meet their need, so that in turn their +surplus will meet your need. This way there will +b 15 +a 7 +be equality. + +As it is written: + +in your love for us + +c 19 + +15 + +2 Corinthians 9:7 | 1039 + + “He who gathered much had no excess, +and he who gathered little had no + + b + +Titus Commended (Titus 1:1–4) + +shortfall.” + +16 + +17 + +But thanks be to God, who put into the heart of +Titus the same devotion I have for you. +For not +only did he welcome our appeal, but he is eagerly +18 +coming to you of his own volition. + +19 + +Along with Titus we are sending the brother +who is praised by all the churches for his work in +More than that, this brother was +the gospel. +chosen by the churches to accompany us with the +gracious offering + we administer to honor the +20 +Lord Himself and to show our eagerness to help. + + c + +21 + +We want to avoid any criticism of the way we +For we are tak- +administer this generous gift. +ing great care to do what is right, not only in the +22 +eyes of the Lord, but also in the eyes of men. + +23 + +And we are sending along with them our +brother who has proven his earnestness to us +many times and in many ways, and now even +more so by his great confidence in you. +As for + d +Titus, he is my partner and fellow worker among +you. As for our brothers, they are messengers + of +the churches, the glory of Christ. +In full view +of the churches, then, show these men the proof +of your love and the reason for our boasting +God Loves a Cheerful Giver (1 Cor. 16:1–4) +about you. + +24 + +9 + +2 + +Now about the service to the saints, there is +For I know +no need for me to write to you. +your eagerness to help, and I have been boasting +to the Macedonians that since last year you in +Achaia were prepared to give. And your zeal has +3 +stirred most of them to do likewise. + +4 + +But I am sending the brothers in order that our +boasting about you in this matter should not +prove empty, but that you will be prepared, just +Otherwise, if any Macedonians come +as I said. +with me and find you unprepared, we—to say +nothing of you—would be ashamed of having +So I thought it necessary to +been so confident. +urge the brothers to visit you beforehand and +make arrangements for the generous gift you +had promised. This way, your gift will be pre- +6 +pared generously and not begrudgingly. + +5 + +Remember this: Whoever sows sparingly will +also reap sparingly, and whoever sows gener- +apostles +d 23 +Each one +ously will also reap generously. + +7 + +Or + +Exodus 16:18 + +See 1 Corinthians 16:3–4. + +Or + + 1040 | 2 Corinthians 9:8 + +a + +should give what he has decided in his heart to +8 +give, not out of regret or compulsion. For God +And God is able to make +loves a cheerful giver. +all grace abound to you, so that in all things, at all +times, having all that you need, you will abound +in every good work. + +As it is written: + +9 + +“He has scattered abroad His gifts to + + b + +10 + +the poor; + +His righteousness endures forever.” + +11 + + righteousness. + +Now He who supplies seed to the sower and +bread for food will supply and multiply your +store of seed and will increase the harvest of +your +You will be enriched in +every way to be generous on every occasion, and +through us your generosity will produce thanks- +For this ministry of service is not +giving to God. +only supplying the needs of the saints but is also +overflowing in many expressions of thanksgiving +13 +to God. + +12 + +14 + +Because of the proof this ministry provides, +the saints will glorify God for your obedient con- +fession of the gospel of Christ, and for the gener- +osity of your contribution to them and to all the +And their prayers for you will express +others. +their affection for you, because of the surpassing +grace God has given you. +Thanks be to God for +Paul’s Apostolic Authority +His indescribable gift! + +15 + +10 + +2 + +Now by the mildness and gentleness of +Christ, I appeal to you—I, Paul, who am +humble when face to face with you, but bold +I beg you that when I come I may +when away. +not need to be as bold as I expect toward those +3 +who presume that we live according to the flesh. + +4 + +For though we live in the flesh, we do not wage +The weapons of our +war according to the flesh. +warfare are not the weapons of the flesh. Instead, +5 +they have divine power to demolish strongholds. +We demolish arguments and every presump- +tion set up against the knowledge of God; and we +take captive every thought to make it obedient to +And we will be ready to punish every act +Christ. +of disobedience, as soon as your obedience is +7 +complete. + +6 + +You are looking at outward appearances. If an- +yone is confident that he belongs to Christ, he +should remind himself that we belong to Christ +a 7 + +b 9 + +c 17 + +8 + +For even if I boast +just as much as he does. +somewhat excessively about the authority the +Lord gave us for building you up rather than +9 +tearing you down, I will not be ashamed. +10 + +11 + +I do not want to seem to be trying to frighten +For some say, “His letters +you by my letters. +are weighty and forceful, but his physical pres- +ence is unimpressive, and his speaking is of no +Such people should consider that +account.” +what we are in our letters when absent, we will +12 +be in our actions when present. + +We do not dare to classify or compare +ourselves with some who commend themselves. +When they measure themselves by themselves +13 +and compare themselves with themselves, they +We, however, will not +show their ignorance. +boast beyond our limits, but only within the field +of influence that God has assigned to us—a field +We are not overstep- +that reaches even to you. +ping our bounds, as if we had not come to you. +Indeed, we were the first to reach you with the +15 +gospel of Christ. + +14 + +Neither do we boast beyond our limits in the +labors of others. But we hope that as your faith +16 +increases, our area of influence among you will +so that we can preach +greatly increase as well, +the gospel in the regions beyond you. Then we +will not be boasting in the work already done in +17 +another man’s territory. + + c + +18 + +Rather, “Let him who boasts boast in the +Lord.” +For it is not the one who commends +himself who is approved, but the one whom the +Paul and the False Apostles +Lord commends. + +11 + +2 + +I hope you will put up with a little of my +foolishness, but you are already doing +that. +I am jealous for you with a godly jealousy. +For I promised you to one husband, to present +3 +you as a pure virgin to Christ. + +4 + +I am afraid, however, that just as Eve was +deceived by the serpent’s cunning, your minds +may be led astray from your simple and pure de- +For if someone comes and pro- +votion to Christ. +claims a Jesus other than the One we proclaimed, +or if you receive a different spirit than the One +you received, or a different gospel than the one +you accepted, you put up with it very easily. + +See Proverbs 22:8, LXX addition. + +Psalm 112:9 + +Jeremiah 9:24 + + 2 Corinthians 12:9 | 1041 + +5 + +6 + +25 + +I consider myself in no way inferior to those +Although I am not a polished +“super-apostles.” +speaker, I am certainly not lacking in knowledge. +We have made this clear to you in every way +7 +possible. + +times I received from the Jews the forty lashes +Three times I was beaten with +minus one. +rods, once I was stoned, three times I was ship- +wrecked. I spent a night and a day in the open +26 +sea. + +Was it a sin for me to humble myself in order to +8 +exalt you, because I preached the gospel of God +I robbed other churches +to you free of charge? +9 +by accepting their support in order to serve you. +And when I was with you and in need, I was not +a burden to anyone; for the brothers who came +from Macedonia supplied my needs. I have re- +frained from being a burden to you in any way, +As surely as the +and I will continue to do so. +11 +truth of Christ is in me, this boasting of mine will +Why? +not be silenced in the regions of Achaia. +12 +Because I do not love you? God knows I do! + +10 + +But I will keep on doing what I am doing, in +order to undercut those who want an oppor- +13 +tunity to be regarded as our equals in the things +of which they boast. +For such men are false +14 +apostles, deceitful workers, masquerading as +And no wonder, for Satan +apostles of Christ. +It is +himself masquerades as an angel of light. +not surprising, then, if his servants masquerade +as servants of righteousness. Their end will cor- +Paul’s Suffering and Service +respond to their actions. +(Colossians 1:24–29) + +15 + +16 + +19 + +17 + +I repeat: Let no one take me for a fool. But if +you do, then receive me as a fool, so that I too +In this confident boasting of +may boast a little. +18 +mine, I am not speaking as the Lord would, but as +Since many are boasting according to +a fool. +the flesh, I too will boast. +For you gladly put up +In fact, you +with fools, since you are so wise. +even put up with anyone who enslaves you or ex- +ploits you or takes advantage of you or exalts +To my shame +himself or strikes you in the face. +I concede that we were too weak for that! + +20 + +21 + +22 + +In my frequent journeys, I have been in danger +from rivers and from bandits, in danger from my +countrymen and from the Gentiles, in danger in +the city and in the country, in danger on the sea +in labor and toil and +and among false brothers, +often without sleep, in hunger and thirst and of- +28 +ten without food, in cold and exposure. + +27 + +Apart from these external trials, I face daily the +29 +pressure of my concern for all the churches. +Who is weak, and I am not weak? Who is led + +30 +into sin, and I do not burn with grief? + +31 + +32 + +If I must boast, I will boast of the things that +a +The God and Father of the + +show my weakness. +Lord Jesus, who is forever worthy of praise, +In Damascus, the +knows that I am not lying. +governor under King Aretas secured the city of +But I +the Damascenes in order to arrest me. +was lowered in a basket through a window in the +Paul’s Revelation +wall and escaped his grasp. + +33 + +12 + +I must go on boasting. Although there is +2 +nothing to gain, I will go on to visions and +I know a man in +revelations from the Lord. +Christ who fourteen years ago was caught up to +the third heaven. Whether it was in the body or +And I +out of it I do not know, but God knows. +know that this man—whether in the body or out +was caught +of it I do not know, but God knows— +up to Paradise. The things he heard were inex- +Paul’s Thorn and God’s Grace +pressible, things that man is not permitted to tell. +5 + +3 + +4 + +I will boast about such a man, but I will not +6 +boast about myself, except in my weaknesses. +Even if I wanted to boast, I would not be a fool, +because I would be speaking the truth. But I re- +frain, so no one will credit me with more than he +or because of these +sees in me or hears from me, +surpassingly great revelations. + +7 + +b + +8 + +So to keep me from becoming conceited, + I was +given a thorn in my flesh, a messenger of Satan, +Three times I pleaded with the +to torment me. +Lord to take it away from me. +But He said to me, + +So to + +9 + +Speaking as a fool, however, I can match what +anyone else dares to boast about. +Are they +23 +Hebrews? So am I. Are they Israelites? So am I. +Are +Are they descendants of Abraham? So am I. +they servants of Christ? (I am speaking as if I +were out of my mind.) I am so much more: in +harder labor, in more imprisonments, in worse +Five +beatings, in frequent danger of death. + b 7 +a 31 +keep me from becoming conceited because of these surpassingly great revelations, + +forever blessed + +24 + +Or + +Some translators end the previous paragraph after verse 6, and begin verse 7 with + + 1042 | 2 Corinthians 12:10 + +Examine Yourselves + +“My grace is sufficient for you, for My power is +perfected in weakness.” Therefore I will boast all +the more gladly in my weaknesses, so that the +That is why, +power of Christ may rest on me. +for the sake of Christ, I delight in weaknesses, in +insults, in hardships, in persecutions, in difficul- +Paul’s Concern for the Corinthians +ties. For when I am weak, then I am strong. + +10 + +11 + +12 + +I have become a fool, but you drove me to +it. In fact, you should have commended me, since +I am in no way inferior to those “super-apostles,” +The marks of a true +even though I am nothing. +apostle—signs, wonders, and miracles—were +13 +performed among you with great perseverance. +In what way were you inferior to the other +churches, except that I was not a burden to you? +14 +Forgive me this wrong! + +See, I am ready to come to you a third time, and +I will not be a burden, because I am not seeking +your possessions, but you. For children should +not have to save up for their parents, but parents +And for the sake of your +for their children. +souls, I will most gladly spend my money and +16 +myself. If I love you more, will you love me less? + +15 + +17 + +18 + +Be that as it may, I was not a burden to you; but +Did I +crafty as I am, I caught you by trickery. +exploit you by anyone I sent you? +I urged Titus +to visit you, and I sent our brother with him. Did +Titus exploit you in any way? Did we not walk in +the same Spirit and follow in the same foot- +19 +steps? + + a + +20 + +Have you been thinking all along that we were +making a defense to you? We speak before God +in Christ, and all of this, beloved, is to build you +For I am afraid that when I come, I may not +up. +find you as I wish, and you may not find me as +you wish. I fear that there may be quarreling, +jealousy, rage, rivalry, slander, gossip, arrogance, +I am afraid that when I come +and disorder. +again, my God will humble me before you, and I +will be grieved over many who have sinned ear- +lier and have not repented of their acts of impu- +rity, sexual immorality, and debauchery. + +21 + +13 + +This is the third time I am coming to you. +“Every matter must be established by the + + b + +2 +testimony of two or three witnesses.” + +I already warned you the second time I was +with you. So now in my absence I warn those +3 +who sinned earlier and everyone else: If I return, +since you are demand- +I will not spare anyone, +ing proof that Christ is speaking through me. He +is not weak in dealing with you but is powerful +For He was indeed crucified in +among you. +weakness, yet He lives by God’s power. For we +are also weak in Him, yet by God’s power we will +5 +live with Him concerning you. + +4 + +Examine yourselves to see whether you are in +the faith; test yourselves. Do you not realize that +6 +Jesus Christ is in you—unless you fail the test? +And I hope you will realize that we have not + +7 +failed the test. + +8 + +Now we pray to God that you will not do +anything wrong—not that we will appear to have +stood the test, but that you will do what is +For we +right, even if we appear to have failed. +cannot do anything against the truth, but only for +In fact, we rejoice when we are weak +the truth. +but you are strong, and our prayer is for your +10 +perfection. + +9 + +This is why I write these things while absent, +so that when I am present I will not need to be +severe in my use of the authority that the Lord +gave me for building you up, not for tearing you +Benediction and Farewell +down. +11 + +c + +Finally, brothers, rejoice! Aim for perfect har- +mony, encourage one another, + be of one mind, +live in peace. And the God of love and peace will +12 +be with you. +13 + +Greet one another with a holy kiss. + +14 + +All the saints send you greetings. + +d + +The grace of the Lord Jesus Christ, and the love +of God, and the fellowship of the Holy Spirit be +with all of you. + +a 18 +my appeal + +Did we not walk in the same Spirit? Not in the same footsteps? +d 14 + +b 1 + +listen to + +c 11 +Amen + +Literally + +Deuteronomy 19:15 +Texts vary in verse numbering for the last three verses of this chapter. BYZ ends with + +Or +. + + Galatians + +Paul’s Greeting to the Galatians + +16 + +1 + +Paul, an apostle—sent not from men nor by +man, but by Jesus Christ and God the Father, +and all the + +2 + +who raised Him from the dead— +brothers with me, +3 +To the churches of Galatia: +a + +4 + +Grace and peace to you from God our Father +and the Lord Jesus Christ, +who gave Himself +for our sins to rescue us from the present evil +5 +age, according to the will of our God and Father, +No Other Gospel + +to whom be glory forever and ever. Amen. + +6 + +7 + +I am amazed how quickly you are deserting the +One who called you by the grace of Christ and are +turning to a different gospel— +which is not +even a gospel. Evidently some people are trou- +bling you and trying to distort the gospel of +8 +Christ. + +9 + +But even if we or an angel from heaven should +preach a gospel contrary to the one we preached +to you, let him be under a curse! +As we have said +before, so now I say again: If anyone is preaching +to you a gospel contrary to the one you received, +Paul Preaches the Gospel +let him be under a curse! +10 + +11 + +Am I now seeking the approval of men, or +of God? Or am I striving to please men? If I were +still trying to please men, I would not be a serv- +ant of Christ. +For I want you to know, brothers, +b +that the gospel I preached was not devised by +man. +I did not receive it from any man, nor +was I taught it; rather, I received it by revelation +13 +from Jesus Christ. + +12 + +14 + +For you have heard of my former way of life in +Judaism, how severely I persecuted the church of +God and tried to destroy it. +I was advancing in +Judaism beyond many of my contemporaries and +was extremely zealous for the traditions of my +15 +fathers. + +But when God, who set me apart from my +God the Father and our Lord Jesus Christ +a 3 +mother’s womb and called me by His grace, was +God does not accept the face of man +d 6 + +SBL, BYZ, and TR +Literally + +17 + +pleased +to reveal His Son in me so that I might +preach Him among the Gentiles, I did not rush to +consult with flesh and blood, +nor did I go up +to Jerusalem to the apostles who came before +me, but I went into Arabia and later returned to +18 +Damascus. + +c + +Only after three years did I go up to Jerusalem +19 + and I stayed with him fif- +to confer with Cephas, +20 +But I saw none of the other apostles +teen days. +except James, the Lord’s brother. +I assure you +21 +before God that what I am writing to you is no lie. +22 + +23 + +Later I went to the regions of Syria and Cilicia. +I was personally unknown, however, to the +They only +churches of Judea that are in Christ. +heard the account: “The man who formerly per- +secuted us is now preaching the faith he once +And they glorified God be- +tried to destroy.” +The Council at Jerusalem (Acts 15:5–21) +cause of me. + +24 + +2 + +2 + +Fourteen years later I went up again to +Jerusalem, accompanied by Barnabas. I took +I went in response to a revela- +Titus along also. +tion and set before them the gospel that I preach +among the Gentiles. But I spoke privately to +those recognized as leaders, for fear that I was +Yet not even +running or had already run in vain. +Titus, who was with me, was compelled to be cir- +4 +cumcised, even though he was a Greek. + +3 + +This issue arose because some false brothers +had come in under false pretenses to spy on our +5 +freedom in Christ Jesus, in order to enslave us. +We did not give in to them for a moment, so that + +6 +the truth of the gospel would remain with you. + + d + +But as for the highly esteemed—whatever they +were makes no difference to me; God does not +7 +show favoritism +—those leaders added nothing +to me. +On the contrary, they saw that I had been +entrusted to preach the gospel to the uncircum- +8 +cised, just as Peter had been to the circumcised. +For the One who was at work in Peter’s +apostleship to the circumcised was also at work +c 18 +b 11 +in my apostleship to the Gentiles. + +not according to man + +Literally + +That is, Peter + + 1044 | Galatians 2:9 + +9 + +a + +And recognizing the grace that I had been given, +James, Cephas, + and John—those reputed to be +pillars—gave me and Barnabas the right hand of +fellowship, so that we should go to the Gentiles, +They only asked +and they to the circumcised. +us to remember the poor, the very thing I was ea- +Paul Confronts Cephas +ger to do. +11 + +10 + +12 + +When Cephas came to Antioch, however, I op- +posed him to his face, because he stood con- +demned. +For before certain men came from +James, he used to eat with the Gentiles. But when +they arrived, he began to draw back and separate +himself, for fear of those in the circumcision +group. +The other Jews joined him in his hypoc- +risy, so that by their hypocrisy even Barnabas +14 +was led astray. + +13 + +When I saw that they were not walking +in line with the truth of the gospel, I said to +Cephas in front of them all, “If you, who are a Jew, +live like a Gentile and not like a Jew, how can you +15 +compel the Gentiles to live like Jews?” + + b + +16 + +We who are Jews by birth and not Gentile “sin- +know that a man is not justified by works +ners” +of the law, but by faith in Jesus Christ. So we, too, +have believed in Christ Jesus, that we may be jus- +tified by faith in Christ and not by works of the +law, because by works of the law no one will be +17 +justified. + +But if, while we seek to be justified in Christ, +we ourselves are found to be sinners, does that +make Christ a minister of sin? Certainly not! +If +I rebuild what I have already torn down, I prove +19 +myself to be a lawbreaker. + +18 + +20 + +21 + +For through the law I died to the law so that I +might live to God. +I have been crucified with +Christ, and I no longer live, but Christ lives in me. +The life I live in the body, I live by faith in the Son +of God, who loved me and gave Himself up for +me. +I do not set aside the grace of God. For if +righteousness comes through the law, then +Faith and Belief (James 2:14–26) +Christ died for nothing. + +3 + +Spirit by works of the law, or by hearing with +3 +faith? + +4 + +5 + +Are you so foolish? After starting in the Spirit, +Have you suf- +are you now finishing in the flesh? +fered so much for nothing, if it really was for +nothing? +Does God lavish His Spirit on you and +work miracles among you because you practice +6 +the law, or because you hear and believe? + + c + +7 + +8 + +So also, “Abraham believed God, and it was +Understand, +credited to him as righteousness.” +then, that those who have faith are sons of Abra- +The Scripture foresaw that God would jus- +ham. +tify the Gentiles by faith, and foretold the gospel + d +9 +to Abraham: “All nations will be blessed through +you.” +So those who have faith are blessed +Christ Has Redeemed Us +along with Abraham, the man of faith. +10 + + e + +11 + +All who rely on works of the law are under a +curse. For it is written: “Cursed is everyone who +does not continue to do everything written in the +Book of the Law.” +Now it is clear that no one +is justified before God by the law, because, “The +righteous will live by faith.” +The law, however, +is not based on faith; on the contrary, “The man +13 +who does these things will live by them.” + +12 + + g + + f + +Christ redeemed us from the curse of the law + h +by becoming a curse for us. For it is written: +14 +“Cursed is everyone who is hung on a tree.” + i + +He redeemed us in order that the blessing +promised to Abraham + would come to the Gen- +tiles in Christ Jesus, so that by faith we might re- +The Purpose of the Law (Romans 7:1–6) +ceive the promise of the Spirit. +15 + +Brothers, let me put this in human terms. Even +16 +a human covenant, once it is ratified, cannot be +The promises were spo- +canceled or amended. +ken to Abraham and to his seed. The Scripture +does not say, “and to seeds,” meaning many, but +17 +“and to your seed,” + meaning One, who is Christ. + + j + +18 + +What I mean is this: The law that came 430 +years later does not revoke the covenant previ- +ously established by God, so as to nullify the +For if the inheritance depends on the +promise. +law, then it no longer depends on a promise; but +God freely granted it to Abraham through a +promise. + +2 + +O foolish Galatians! Who has bewitched you? +Before your very eyes Jesus Christ was +I would like to +clearly portrayed as crucified. +a 9 +learn just one thing from you: Did you receive the +c 6 +f 11 +i 14 + +That is, Peter; also in verses 11 and 14 +g 12 +Genesis 15:6 +See Genesis 12:3, Genesis 18:18, and Genesis 22:18. +j 16 +the blessing of Abraham +Habakkuk 2:4 +Literally + +Leviticus 18:5; see also Ezekiel 20:11, 13, and 21. + +Genesis 12:7; Genesis 13:15 + +b 14 + +d 8 + +e 10 +Some translators close this quotation after verse 16 or 21. +h 13 + +Deuteronomy 27:26 (see also LXX) + +Deuteronomy 21:23 (see also LXX) + + 19 + +Why then was the law given? It was added be- +cause of transgressions, until the arrival of the +seed to whom the promise referred. It was ad- +ministered through angels by a mediator. +A +mediator is unnecessary, however, for only one +21 +party; but God is one. + +20 + +Is the law, then, opposed to the promises of +God? Certainly not! For if a law had been given +that could impart life, then righteousness would +certainly have come from the law. +But the +Scripture pronounces all things confined by sin, +so that by faith in Jesus Christ the promise might +23 +be given to those who believe. + +22 + +24 + +Before this faith came, we were held in custody +under the law, locked up until faith should be re- +vealed. +So the law became our guardian to lead +25 +us to Christ, that we might be justified by faith. +Now that faith has come, we are no longer un- + +Sons through Faith in Christ +der a guardian. +26 + +27 + +29 + +You are all sons of God through faith in Christ +For all of you who were baptized into +Jesus. +28 +Christ have clothed yourselves with Christ. +There is neither Jew nor Greek, slave nor free, +male nor female, for you are all one in Christ +Jesus. +And if you belong to Christ, then you +are Abraham’s seed and heirs according to the +Sons and Heirs +promise. + +4 + +What I am saying is that as long as the heir is +a child, he is no different from a slave, alt- +hough he is the owner of everything. +He is sub- +ject to guardians and trustees until the date set +3 +by his father. + +2 + + a + +5 + +6 + +4 +slaved under the basic principles + +So also, when we were children, we were en- + of the world. +But when the time had fully come, God sent His +Son, born of a woman, born under the law, +to +redeem those under the law, that we might re- +ceive our adoption as sons. +And because you are +sons, God sent the Spirit of His Son into our +hearts, crying out, “Abba, Father!” +So you are no +longer a slave, but a son; and since you are a son, +Paul’s Concern for the Galatians +you are also an heir through God. +8 + +7 + +Formerly, when you did not know God, you +9 +were slaves to those who by nature are not gods. +But now that you know God, or rather are +a 3 +known by God, how is it that you are turning back + +elemental forces + +b 22 + +Galatians 4:27 | 1045 + +to those weak and worthless principles? Do you +10 +wish to be enslaved by them all over again? +11 +You are observing special days and months +and seasons and years! +I fear for you, that my +efforts for you may have been in vain. +I beg +you, brothers, become like me, for I became like +13 +you. You have done me no wrong. + +12 + +14 + +15 + +You know that it was because of an illness that +I first preached the gospel to you. +And alt- +hough my illness was a trial to you, you did not +despise or reject me. Instead, you welcomed me +as if I were an angel of God, as if I were Christ +Jesus Himself. +What then has become of your +blessing? For I can testify that, if it were possible, +16 +you would have torn out your eyes and given +them to me. +Have I now become your enemy +17 +by telling you the truth? + +Those people are zealous for you, but not in a +good way. Instead, they want to isolate you from +us, so that you may be zealous for them. +Nev- +ertheless, it is good to be zealous if it serves a +noble purpose—at any time, and not only when I +19 +am with you. + +18 + +20 + +My children, for whom I am again in the pains +of childbirth until Christ is formed in you, +how +I wish I could be with you now and change my +Hagar and Sarah (Genesis 21:9–21) +tone, because I am perplexed about you. +21 + +22 + +Tell me, you who want to be under the law, do +you not understand what the law says? +For it +b +is written that Abraham had two sons, one by the +23 +slave woman and the other by the free woman. +His son by the slave woman was born accord- +ing to the flesh, but his son by the free woman +24 +was born through the promise. + +25 + +These things serve as illustrations, for the +women represent two covenants. One covenant +is from Mount Sinai and bears children into slav- +ery: This is Hagar. +Now Hagar stands for +Mount Sinai in Arabia and corresponds to the +26 +present-day Jerusalem, because she is in slavery +with her children. +But the Jerusalem above is +free, and she is our mother. + +For it is written: + +27 + +“Rejoice, O barren woman, +who bears no children; +break forth and cry aloud, + +you who have never travailed; + +because more are the children +of the desolate woman +than of her who has a husband.” +Isaiah 54:1 + +c 27 + + c + +Or + +; similarly in verse 9 + +See Genesis 16:15 and Genesis 21:2–3. + + 1046 | Galatians 4:28 + +28 + +a + +29 +Now you, + + brothers, like Isaac, are children of +promise. +At that time, however, the son born +by the flesh persecuted the son born by the +30 +Spirit. It is the same now. + + b + +31 + +But what does the Scripture say? “Expel the +slave woman and her son, for the slave woman’s +son will never share in the inheritance with the +free woman’s son.” +Therefore, brothers, we +are not children of the slave woman, but of the +Freedom in Christ +free woman. + +5 + +It is for freedom that Christ has set us free. +Stand firm, then, and do not be encumbered + +2 +once more by a yoke of slavery. + +3 + +Take notice: I, Paul, tell you that if you let your- +selves be circumcised, Christ will be of no value +to you at all. +Again I testify to every man who +gets himself circumcised that he is obligated to +obey the whole law. +You who are trying to be +justified by the law have been severed from +5 +Christ; you have fallen away from grace. + +4 + +6 + +But by faith we eagerly await through the Spirit +the hope of righteousness. +For in Christ Jesus +neither circumcision nor uncircumcision has any +value. What matters is faith expressing itself +7 +through love. + +8 + +9 + +10 + +You were running so well. Who has obstructed +Such persuasion +you from obeying the truth? +A lit- +does not come from the One who calls you. +tle leaven works through the whole batch of +I am confident in the Lord that you will +dough. +take no other view. The one who is troubling you +11 +will bear the judgment, whoever he may be. + +Now, brothers, if I am still preaching circumci- +sion, why am I still being persecuted? In that case +As +the offense of the cross has been abolished. +for those who are agitating you, I wish they +13 +would proceed to emasculate themselves! + +12 + +For you, brothers, were called to freedom; but +do not use your freedom as an opportunity for +14 +the flesh. Rather, serve one another in love. +The entire law is fulfilled in a single decree: +“Love your neighbor as yourself.” +But if you +keep on biting and devouring one another, watch +Walking by the Spirit +out, or you will be consumed by one another. +(Ezekiel 36:16–38 ; Romans 8:9–11) + +15 + + c + +16 + +17 + +So I say, walk by the Spirit, and you will not +For the flesh +c 14 +b 30 + +gratify the desires of the flesh. +a 28 + +we + +18 + +craves what is contrary to the Spirit, and the +Spirit what is contrary to the flesh. They are op- +posed to each other, so that you do not do what +you want. +But if you are led by the Spirit, you +19 +are not under the law. + +20 + +21 + +The acts of the flesh are obvious: sexual immo- +idolatry and +rality, impurity, and debauchery; +sorcery; hatred, discord, jealousy, and rage; +and envy; drunk- +rivalries, divisions, factions, +enness, orgies, and the like. I warn you, as I did +before, that those who practice such things will +22 +not inherit the kingdom of God. + +23 + +But the fruit of the Spirit is love, joy, peace, pa- +tience, kindness, goodness, faithfulness, +gen- +tleness, and self-control. Against such things +24 +there is no law. + +Those who belong to Christ Jesus have cruci- +25 +fied the flesh with its passions and desires. +Since we live by the Spirit, let us walk in step +Let us not become conceited, + +with the Spirit. +Carry One Another’s Burdens +provoking and envying one another. + +26 + +6 + +Brothers, if someone is caught in a trespass, +you who are spiritual should restore him +2 +with a spirit of gentleness. But watch yourself, or +Carry one another’s +you also may be tempted. +burdens, and in this way you will fulfill the law of +3 +Christ. + +If anyone thinks he is something when he is + +4 +nothing, he deceives himself. + +5 + +6 + +Each one should test his own work. Then he will +have reason to boast in himself alone, and not in +For each one should carry his +someone else. +own load. +Nevertheless, the one who receives +instruction in the word must share in all good +7 +things with his instructor. + +Do not be deceived: God is not to be mocked. +8 +Whatever a man sows, he will reap in return. +The one who sows to please his flesh, from the +flesh will reap destruction; but the one who sows +to please the Spirit, from the Spirit will reap eter- +9 +nal life. + +Let us not grow weary in well-doing, for in due +10 +time we will reap a harvest if we do not give up. +Therefore, as we have opportunity, let us do +good to everyone, and especially to the family of +faith. + +WH, BYZ, and TR + +Genesis 21:10 + +Leviticus 19:18 + + Final Warnings and Blessings + +11 + +See what large letters I am using to write to + +12 +you with my own hand! + +13 + +Those who want to make a good impression +outwardly are trying to compel you to be circum- +cised. They only do this to avoid persecution for +the cross of Christ. +For the circumcised do not +even keep the law themselves, yet they want you +to be circumcised that they may boast in your +14 +flesh. + + a +But as for me, may I never boast, except in the + +Galatians 6:18 | 1047 + +15 + +the world has been crucified to me, and I to the +For neither circumcision nor uncircum- +world. +cision means anything. What counts is a new +16 +creation. + +Peace and mercy to all who walk by this rule, + +17 +even to the Israel of God. + +From now on let no one cause me trouble, for + +18 +I bear on my body the marks of Jesus. + +The grace of our Lord Jesus Christ be with your + +spirit, brothers. + +cross of our Lord Jesus Christ, through which + +Amen. + +a 14 + +through whom + +Or + + Ephesians + +Paul’s Greeting to the Ephesians +(Acts 19:8–12 ; Revelation 2:1–7) + +Spiritual Wisdom (1 Corinthians 2:6–16) + +15 + +1 + +Paul, an apostle of Christ Jesus by the will of +a +God, + +To the saints in Ephesus, +2 +Jesus: + + the faithful in Christ + +Grace and peace to you from God our Father + +Spiritual Blessings +and the Lord Jesus Christ. +(Romans 8:28–34) + +3 + +4 + +5 + +Blessed be the God and Father of our Lord Jesus +Christ, who has blessed us in Christ with every +For He +spiritual blessing in the heavenly realms. +chose us in Him before the foundation of the +world to be holy and blameless in His presence. +He predestined us for adoption as His +In love +sons through Jesus Christ, according to the good +to the praise of His glorious +pleasure of His will, +grace, which He has freely given us in the Be- +7 +loved One. + +6 + +In Him we have redemption through His blood, +8 +the forgiveness of our trespasses, according to +9 +that He lavished on us +the riches of His grace +with all wisdom and understanding. +And He has +made known to us the mystery of His will accord- +ing to His good pleasure, which He purposed in +as a plan for the fullness of time, to bring +Christ +all things in heaven and on earth together in +11 +Christ. + +10 + +12 + +In Him we were also chosen as God’s own, hav- +ing been predestined according to the plan of +Him who works out everything by the counsel of +in order that we, who were the first to +His will, +hope in Christ, would be for the praise of His +13 +glory. + +And in Him, having heard and believed the +word of truth—the gospel of your salvation— +14 +you were sealed with the promised Holy Spirit, +who is the pledge of our inheritance until the +redemption of those who are God’s possession, +a 1 +to the praise of His glory. + +in Ephesus + +b 18 + +Some manuscripts do not include + +. + +TR + +16 + +For this reason, ever since I heard about your +faith in the Lord Jesus and your love for all the +saints, +I have not stopped giving thanks for +you, remembering you in my prayers, +that the +God of our Lord Jesus Christ, the glorious Father, +may give you a spirit of wisdom and revelation in +18 +your knowledge of Him. + +17 + + b + +19 + +I ask that the eyes of your heart + + may be +enlightened, so that you may know the hope of +His calling, the riches of His glorious inheritance +in the saints, +and the surpassing greatness of +His power to us who believe. These are in accord- +20 +ance with the working of His mighty strength, +which He exerted in Christ when He raised +Him from the dead and seated Him at His right +hand in the heavenly realms, +far above all rule +and authority, power and dominion, and every +name that is named, not only in the present age +22 +but also in the one to come. + +21 + +And God put everything under His feet and +23 +made Him head over everything for the church, +which is His body, the fullness of Him who fills + +Alive with Christ (Colossians 2:6–23) +all in all. + +2 + +2 + +And you were dead in your trespasses and +sins, +in which you used to walk when you +conformed to the ways of this world and of the +ruler of the power of the air, the spirit who is now +All of us +at work in the sons of disobedience. +also lived among them at one time, fulfilling the +cravings of our flesh and indulging its desires +and thoughts. Like the rest, we were by nature +4 +children of wrath. + +3 + +5 + +6 + +But because of His great love for us, God, who is +made us alive with Christ even +rich in mercy, +when we were dead in our trespasses. It is by +grace you have been saved! +And God raised us +up with Christ and seated us with Him in the +heavenly realms in Christ Jesus, +in order that in +the coming ages He might display the surpassing +riches of His grace, demonstrated by His kind- +ness to us in Christ Jesus. + +7 + +the eyes of your understanding + + 8 + +Ephesians 4:1 | 1049 + +4 + +9 + +For it is by grace you have been saved through +faith, and this not from yourselves; it is the gift of +10 +not by works, so that no one can boast. +God, +For we are God’s workmanship, created in +Christ Jesus to do good works, which God pre- +One in Christ (Philippians 2:1–4) +pared in advance as our way of life. +11 + +a + +12 + +Therefore remember that formerly you who +are Gentiles in the flesh and called uncircum- +cised by the so-called circumcision (that done in +remember that +the body by human hands)— +at that time you were separate from Christ, alien- +ated from the commonwealth of Israel, and +strangers to the covenants of the promise, with- +But +out hope and without God in the world. +now in Christ Jesus you who once were far away +have been brought near through the blood of +14 +Christ. + +13 + +15 + +For He Himself is our peace, who has made the +two one and has torn down the dividing wall of +by abolishing in His flesh the law of +hostility +commandments and decrees. He did this to cre- +ate in Himself one new man out of the two, thus +and reconciling both of them to +making peace +God in one body through the cross, by which He +17 +put to death their hostility. + +16 + +He came and preached peace to you who were +18 +far away and peace to those who were near. +For through Him we both have access to the + +Christ Our Cornerstone (Isaiah 28:14–22 ; +Father by one Spirit. +1 Corinthians 3:10–15 ; 1 Peter 2:1–8) + +19 + +20 + +Therefore you are no longer strangers and for- +eigners, but fellow citizens with the saints and +built on the +members of God’s household, +foundation of the apostles and prophets, with +In Him +Christ Jesus Himself as the cornerstone. +the whole building is fitted together and grows +into a holy temple in the Lord. +And in Him you +too are being built together into a dwelling place +The Mystery of the Gospel +for God in His Spirit. + +21 + +22 + +3 + +2 + +For this reason I, Paul, the prisoner of Christ +Jesus for the sake of you Gentiles + +. . . + +b + +3 + +5 + +6 + +In reading this, +I have already written briefly. +then, you will be able to understand my insight +which was not made +into the mystery of Christ, +known to men in other generations as it has now +been revealed by the Spirit to God’s holy apostles +This mystery is that through the +and prophets. +gospel the Gentiles are fellow heirs, fellow mem- +bers of the body, and fellow partakers of the +7 +promise in Christ Jesus. + +8 + +I became a servant of this gospel by the gift of +God’s grace, given me through the working of His +power. +Though I am less than the least of all the +9 +saints, this grace was given me: to preach to the + c +Gentiles the unsearchable riches of Christ, +and +to illuminate for everyone the stewardship + of +this mystery, which for ages past was kept hid- +His purpose +den in God, who created all things. +was that now, through the church, the manifold +wisdom of God should be made known to the +11 +rulers and authorities in the heavenly realms, +according to the eternal purpose that He ac- + +10 + + d +12 +complished in Christ Jesus our Lord. + +In Him and through faith in Him + + we may en- +13 +ter God’s presence with boldness and confidence. +So I ask you not to be discouraged because of + +Paul’s Prayer for the Ephesians +my sufferings for you, which are your glory. +14 + +e + +15 + +17 + +16 + +for this reason I bow my knees before the +. . . +Father, +from whom every family in heaven +I ask that out of +and on earth derives its name. +the riches of His glory He may strengthen you +with power through His Spirit in your inner +being, +so that Christ may dwell in your hearts +through faith. Then you, being rooted and +grounded in love, +will have power, together +with all the saints, to comprehend the length and +width and height and depth +of the love of +Christ, and to know this love that surpasses +knowledge, that you may be filled with all the +20 +fullness of God. + +19 + +18 + +Now to Him who is able to do immeasurably +more than all we ask or imagine, according to His +power that is at work within us, +to Him be the +glory in the church and in Christ Jesus through- +Unity in the Body (Ps. 133:1–3 ; 1 Cor. 1:10–17) +out all generations, forever and ever. Amen. + +21 + +Surely you have heard about the stewardship of +that is, +God’s grace that was given to me for you, +which God prepared beforehand, that we should walk in them. +a 10 +the mystery made known to me by revelation, as +and to illuminate the stewardship + +c 9 + +As a prisoner in the Lord, then, I urge you to +walk in a manner worthy of the calling you + +b 1 + +and to illuminate for everyone the fellowship + +through His faithfulness + +e 14 + +before the Father of our Lord Jesus Christ, + +This train of thought is continued in + +Literally + +d 12 +verse 14. +Or + +NE and WH + +; TR + +BYZ and TR + +4 + + 1050 | Ephesians 4:2 + +2 + +have received: +with all humility and gentleness, +3 +with patience, bearing with one another in love, +and with diligence to preserve the unity of the + +4 +Spirit through the bond of peace. + +There is one body and one Spirit, just as you +5 +were called to one hope when you were called; +one God and +Father of all, who is over all and through all and +7 +in all. + +one Lord, one faith, one baptism; + +6 + +8 + + a + +Now to each one of us grace has been given ac- +This + +cording to the measure of the gift of Christ. +is why it says: + +“When He ascended on high, +He led captives away, +and gave gifts to men.” + c + + b + +9 + +10 +also descended + +What does “He ascended” mean, except that He + to the lower parts of the earth? +He who descended is the very One who as- +cended above all the heavens, in order to fill all +11 +things. + +13 + +12 + +And it was He who gave some to be apostles, +some to be prophets, some to be evangelists, and +to equip the +some to be pastors and teachers, +saints for works of ministry and to build up +until we all reach unity in +the body of Christ, +the faith and in the knowledge of the Son of God, +as we mature to the full measure of the stature of +14 +Christ. + +15 + +Then we will no longer be infants, tossed about +by the waves and carried around by every wind +of teaching and by the clever cunning of men in +Instead, speaking the +their deceitful scheming. +truth in love, we will in all things grow up into +From Him the +Christ Himself, who is the head. +whole body, fitted and held together by every +supporting ligament, grows and builds itself up +New Life in Christ (Colossians 3:1–17) +in love through the work of each individual part. +17 + +16 + +18 + +So I tell you this, and insist on it in the Lord, +that you must no longer walk as the Gentiles do, +They are dark- +in the futility of their thinking. +ened in their understanding and alienated from +the life of God because of the ignorance that is in +Hav- +them due to the hardness of their hearts. +ing lost all sense of shame, they have given them- +selves over to sensuality for the practice of every +kind of impurity, with a craving for more. +a 8 +d 26 + +“In your anger do not sin.” + +He says + +b 8 + +e 2 + +c 9 + +19 + +Or + +Or + +Psalm 68:18 + +BYZ and TR + + Psalm 4:4 + +NE and WH + +20 + +21 + +But this is not the way you came to know +Christ. +Surely you heard of Him and were +22 +taught in Him—in keeping with the truth that is +to put off your former way of life, +in Jesus— +your old self, which is being corrupted by its de- +24 +ceitful desires; +to be renewed in the spirit of +and to put on the new self, created +your minds; +25 +to be like God in true righteousness and holiness. + +23 + + d + +26 + +Therefore each of you must put off falsehood +and speak truthfully to his neighbor, for we are +all members of one another. +“Be angry, yet do +27 +not sin.” + Do not let the sun set upon your anger, +28 + +and do not give the devil a foothold. + +He who has been stealing must steal no longer, +but must work, doing good with his own hands, +that he may have something to share with the +29 +one in need. + +Let no unwholesome talk come out of your +mouths, but only what is helpful for building up +the one in need and bringing grace to those who +30 +listen. + +And do not grieve the Holy Spirit of God, in +whom you were sealed for the day of redemp- +31 +tion. + +Get rid of all bitterness, rage and anger, outcry +32 +and slander, along with every form of malice. +Be kind and tenderhearted to one another, for- +giving each other just as in Christ God forgave +Imitators of God +you. + +5 + +2 + +Be imitators of God, therefore, as beloved + e +and walk in love, just as Christ +children, + and gave Himself up for us as a fragrant + +loved us +3 +sacrificial offering to God. + +5 + +4 + +But among you, as is proper among the saints, +there must not be even a hint of sexual immoral- +Nor +ity, or of any kind of impurity, or of greed. +should there be obscenity, foolish talk, or crude +joking, which are out of character, but rather +For of this you can be sure: No +thanksgiving. +immoral, impure, or greedy person (that is, an +idolater) has any inheritance in the kingdom of +6 +Christ and of God. + +Let no one deceive you with empty words, for +because of such things the wrath of God is com- +ing on the sons of disobedience. +Therefore do +not be partakers with them. +Christ loved you + +7 + +except that He also descended first + + Children of Light + +8 + +9 + +For you were once darkness, but now you are +light in the Lord. Walk as children of light, +for +the fruit of the light consists in all goodness, +righteousness, and truth. +Test and prove what +11 +pleases the Lord. + +10 + +12 + +13 + +Have no fellowship with the fruitless deeds of +darkness, but rather expose them. +For it is +shameful even to mention what the disobedient +do in secret. +But everything exposed by the +14 +light becomes visible, + for everything that is illu- +minated becomes a light itself. + +So it is said: + +a + +“Wake up, O sleeper, + +15 + +rise up from the dead, +and Christ will shine on you.” + +Pay careful attention, then, to how you walk, +not as unwise but as wise, +redeeming the time, +because the days are evil. +Therefore do not be +18 +foolish, but understand what the Lord’s will is. +Do not get drunk on wine, which leads to reck- +19 +less indiscretion. Instead, be filled with the Spirit. + +16 +17 + +20 + +Speak to one another with psalms, hymns, and +spiritual songs. Sing and make music in your +hearts to the Lord, +always giving thanks to God +the Father for everything in the name of our Lord +Wives and Husbands +Jesus Christ. +(Song of Solomon 1:1–17 ; 1 Peter 3:1–7) + +21 + +b + +Submit to one another out of reverence for + +22 +Christ. +23 + +Wives, submit to your husbands as to the Lord. +For the husband is the head of the wife as +24 +Christ is the head of the church, His body, of +which He is the Savior. +Now as the church sub- +mits to Christ, so also wives should submit to +25 +their husbands in everything. + +26 + +Husbands, love your wives, just as Christ loved +the church and gave Himself up for her +to sanc- +27 +tify her, cleansing her by the washing with water +through the word, +and to present her to Him- +self as a glorious church, without stain or wrinkle +28 +or any such blemish, but holy and blameless. + +Ephesians 6:15 | 1051 + +31 + + d + +32 + +“For this reason a man will leave his father and +mother and be united to his wife, and the two will +This mystery is profound, +become one flesh.” +33 +but I am speaking about Christ and the church. +Nevertheless, each one of you also must love +his wife as he loves himself, and the wife must re- +Children and Parents (Colossians 3:18–21) +spect her husband. + +6 + +2 + +Children, obey your parents in the Lord, for +this is right. +“Honor your father and +3 +mother” (which is the first commandment with a +“that it may go well with you and that +promise), +4 +you may have a long life on the earth.” + + e + +Fathers, do not provoke your children to wrath; +instead, bring them up in the discipline and in- +Serving with Honor +struction of the Lord. +(Colossians 3:22–25 ; 1 Timothy 6:1–2) + +5 + +6 + +Slaves, obey your earthly masters with respect +and fear and sincerity of heart, just as you would +And do this not only to please them +obey Christ. +while they are watching, but as servants of +7 +Christ, doing the will of God from your heart. +Serve with good will, as to the Lord and not to +because you know that the Lord will +men, +reward each one for whatever good he does, +9 +whether he is slave or free. + +8 + +And masters, do the same for your slaves. Give +up your use of threats, because you know that He +who is both their Master and yours is in heaven, +The Full Armor of God +and there is no favoritism with Him. +10 + +11 + +Finally, be strong in the Lord and in His mighty +power. +Put on the full armor of God, so that you +12 +can make your stand against the devil’s schemes. +For our struggle is not against flesh and blood, +but against the rulers, against the authorities, +against the powers of this world’s darkness, and +against the spiritual forces of evil in the heavenly +13 +realms. + +14 + +Therefore take up the full armor of God, so that +when the day of evil comes, you will be able to +stand your ground, and having done everything, +Stand firm then, with the belt of truth +to stand. +buckled around your waist, with the breastplate +and with your feet +of righteousness arrayed, +fitted with the readiness of the gospel of peace. + +—of His flesh and of His + +c 30 + +15 + +29 + +In the same way, husbands ought to love their +wives as their own bodies. He who loves his wife +loves himself. +Indeed, no one ever hated his +own body, but he nourishes and cherishes it, just +c +as Christ does the church. +For we are members +of His body. +a 13 +d 31 +bones + +visible, + +b 21 + +30 + +in the fear of Christ. + +SBL begins verse 14 after +. + +Genesis 2:24 (see also LXX) + +e 3 +Or + +Exodus 20:12; Deuteronomy 5:16 + +BYZ and TR include + + 1052 | Ephesians 6:16 + +16 + +17 + +In addition to all this, take up the shield of +faith, with which you can extinguish all the flam- +And take the helmet +ing arrows of the evil one. +of salvation and the sword of the Spirit, which is +18 +the word of God. + +Pray in the Spirit at all times, with every kind +of prayer and petition. To this end, stay alert with +19 +all perseverance in your prayers for all the saints. +Pray also for me, that whenever I open my +mouth, words may be given me so that I will +20 +boldly make known the mystery of the gospel, +for which I am an ambassador in chains. Pray + +Final Greetings +(Philippians 4:21–23 ; 2 Timothy 4:19–22) + +21 + +22 + +Tychicus, the beloved brother and faithful +servant in the Lord, will tell you everything, so +that you also may know about me and what I am +I have sent him to you for this very pur- +doing. +pose, that you may know about us, and that he +23 +may encourage your hearts. + +Peace to the brothers and love with faith from + +24 +God the Father and the Lord Jesus Christ. + +Grace to all who love our Lord Jesus Christ + +that I may proclaim it fearlessly, as I should. + +with an undying love. + + Philippians + +Greetings from Paul and Timothy +(Colossians 1:1–2 ; Philemon 1:1–3) + +1 + +Paul and Timothy, servants of Christ Jesus, + +To all the saints in Christ Jesus at Philippi, + +2 +together with the overseers and deacons: + +Grace and peace to you from God our Father + +Thanksgiving and Prayer +and the Lord Jesus Christ. +(1 Corinthians 1:4–9 ; Colossians 1:3–14) + +3 + +4 + +I thank my God every time I remember you. + +In +5 +every prayer for all of you, I always pray with joy, +6 +because of your partnership in the gospel from +the first day until now, +being confident of this, +that He who began a good work in you will carry +7 +it on to completion until the day of Christ Jesus. + +It is right for me to feel this way about all of you, +since I have you in my heart. For in my chains and +in my defense and confirmation of the gospel, +God is my +you are all partners in grace with me. +witness how I long for all of you with the affec- +9 +tion of Christ Jesus. + +8 + +10 + +And this is my prayer: that your love may +abound more and more in knowledge and depth +so that you may be able to test and +of insight, +prove what is best and may be pure and blame- +filled with the fruit of +less for the day of Christ, +righteousness that comes through Jesus Christ, +Paul’s Trials Advance the Gospel +to the glory and praise of God. +(James 1:2–12) + +11 + +12 + + a + +13 + +Now I want you to know, brothers, that my cir- +cumstances have actually served to advance the +As a result, it has become clear through- +gospel. +out the whole palace guard + and to everyone else +that I am in chains for Christ. +And most of the +brothers, confident in the Lord by my chains, +now dare more greatly to speak the word + with- +15 +out fear. + +14 + + b + +16 + +c + +17 + +latter do so in love, knowing that I am appointed +for the defense of the gospel. +The former, +however, preach Christ out of selfish ambition, +not sincerely, supposing that they can add to the +18 +distress of my chains. + + d + +19 + +20 + +What then is the issue? + + Just this: that in every +way, whether by false motives or true, Christ is +preached. And in this I rejoice. Yes, and I will con- +because I know that through +tinue to rejoice, +your prayers and the provision of the Spirit of +Jesus Christ, my distress will turn out for my de- +I eagerly expect and hope that I will +liverance. +in no way be ashamed, but will have complete +boldness so that now as always Christ will be ex- +To Live Is Christ +alted in my body, whether by life or by death. +21 +22 + +23 + +For to me, to live is Christ, and to die is gain. +But if I go on living in the body, this will mean +fruitful labor for me. So what shall I choose? I do +I am torn between the two. I desire +not know. +24 +to depart and be with Christ, which is far better +But it is more necessary for you that I +indeed. +25 +remain in the body. + +26 + +Convinced of this, I know that I will remain and +will continue with all of you for your progress +so that through my coming +and joy in the faith, +to you again your exultation in Christ Jesus will +Worthy of the Gospel +resound on account of me. +27 + +e + +28 + +Nevertheless, conduct yourselves in a manner +worthy of the gospel of Christ. Then, whether I +come and see you or only hear about you in my +absence, I will know that you stand firm in one + for the faith +spirit, contending together as one +without being frightened in any +of the gospel, +way by those who oppose you. This is a clear sign +29 +of their destruction but of your salvation, and it +For it has been granted to you on +is from God. +behalf of Christ not only to believe in Him, but +since you are encounter- +also to suffer for Him, +ing the same struggle you saw I had, and now +hear that I still have. + +c 16 + +30 + +It is true that some preach Christ out of envy +the word of God +b 14 +The + +a 13 +and rivalry, but others out of goodwill. +d 18 + +all the Praetorium +What then? + +striving together with one mind + +e 27 + +Or +Literally + +NE and WH + +Or + +BYZ and TR reverse the order of verses 16 and 17. + + 1054 | Philippians 2:1 + +One in Christ (Ephesians 2:11–18) + +17 + +2 + +2 + +Therefore if you have any encouragement in +Christ, if any comfort from His love, if any +fellowship with the Spirit, if any affection and +then make my joy complete by be- +compassion, +ing like-minded, having the same love, being +3 +united in spirit and purpose. + +4 + +Do nothing out of selfish ambition or empty +pride, but in humility consider others more im- +portant than yourselves. +Each of you should +look not only to your own interests, but also to +The Mind of Christ (Isaiah 52:13–15) +the interests of others. +5 + +Let this mind be in you which was also in Christ +6 +Jesus: + +Who, existing in the form of God, + +a + +7 + +did not consider equality with God +something to be grasped, + +but emptied Himself, + +8 + +taking the form of a servant, +being made in human likeness. + +And being found in appearance as a man, + +He humbled Himself + +9 + +and became obedient to death— + +even death on a cross. + +Therefore God exalted Him to the highest + +10 + +place + +and gave Him the name above all names, +that at the name of Jesus every knee should + +bow, + +11 + +in heaven and on earth and under + +the earth, + +and every tongue confess that Jesus Christ + +is Lord, + +Lights in the World (Matthew 5:13–16) +to the glory of God the Father. + +12 + +Therefore, my beloved, just as you have always +obeyed, not only in my presence, but now even +more in my absence, continue to work out your +salvation with fear and trembling. +For it is God +who works in you to will and to act on behalf of +14 +His good purpose. + +13 + +15 + +b + +Do everything without complaining or argu- +ing, +so that you may be blameless and pure, +children of God without fault in a crooked and +16 +perverse generation, + in which you shine as +lights in the world +as you hold forth the word +of life, in order that I may boast on the day of +a 6 +Christ that I did not run or labor in vain. + +something to be exploited + +b 15 + +Or + +Deuteronomy 32:5 + +But even if I am being poured out like a drink +offering on the sacrifice and service of your faith, +So you too +I am glad and rejoice with all of you. +Timothy and Epaphroditus (1 Cor. 16:10–12) +should be glad and rejoice with me. +19 + +18 + +22 + +20 + +Now I hope in the Lord Jesus to send Timothy +to you soon, that I also may be cheered when I +learn how you are doing. +I have nobody else +21 +like him who will genuinely care for your needs. +For all the others look after their own inter- +But you know +ests, not those of Jesus Christ. +Timothy’s proven worth, that as a child with his +father he has served with me to advance the gos- +So I hope to send him as soon as I see what +pel. +And I trust in the Lord that I +happens with me. +25 +myself will come soon. + +24 + +23 + +27 + +But I thought it necessary to send back to you +Epaphroditus, my brother, fellow worker, and +26 +fellow soldier, who is also your messenger and +For he has been longing +minister to my needs. +for all of you and is distressed because you heard +He was sick indeed, nearly unto +he was ill. +death. But God had mercy on him, and not only +on him but also on me, to spare me sorrow upon +28 +sorrow. + +29 + +Therefore I am all the more eager to send him, +so that when you see him again you may rejoice, +Welcome him in the +and I may be less anxious. +30 +Lord with great joy, and honor men like him, +because he nearly died for the work of Christ, +risking his life to make up for your deficit of ser- +Righteousness through Faith in Christ +vice to me. +(Romans 3:21–31) + +3 + +Finally, my brothers, rejoice in the Lord. It is +no trouble for me to write the same things to + +2 +you again, and it is a safeguard for you. + +3 + +Watch out for those dogs, those workers of evil, +For it is we who +those mutilators of the flesh! +are the circumcision, we who worship by the +4 +Spirit of God, who glory in Christ Jesus, and who +though I myself +put no confidence in the flesh— +could have such confidence. + +5 + +If anyone else thinks he has grounds for confi- +dence in the flesh, I have more: +circumcised on +the eighth day, of the people of Israel, of the tribe +of Benjamin; a Hebrew of Hebrews; as to the law, +as to zeal, persecuting the church; as +a Pharisee; +to righteousness in the law, faultless. + +6 + + 7 + +8 + +2 + +3 + +Philippians 4:18 | 1055 + +But whatever was gain to me I count as loss for +More than that, I count all +the sake of Christ. +things as loss compared to the surpassing excel- +lence of knowing Christ Jesus my Lord, for whom +I have lost all things. I consider them rubbish, +and be found in Him, not +that I may gain Christ +having my own righteousness from the law, but +that which is through faith in Christ, + the right- +10 +eousness from God on the basis of faith. + +9 + +a + +11 + +I want to know Christ and the power of His res- +urrection and the fellowship of His sufferings, +and so, +being conformed to Him in His death, +somehow, to attain to the resurrection from the +Pressing on toward the Goal +dead. +12 + +13 + +Not that I have already obtained all this, or +have already been made perfect, but I press on to +take hold of that for which Christ Jesus took hold +Brothers, I do not consider myself yet to +of me. +have taken hold of it. But one thing I do: Forget- +ting what is behind and straining toward what is +I press on toward the goal to win the +ahead, +15 +prize of God’s heavenly calling in Christ Jesus. + +14 + +All of us who are mature should embrace this +point of view. And if you think differently about +16 +some issue, God will reveal this to you as well. +Nevertheless, we must live up to what we have + +Citizenship in Heaven +already attained. +17 + +18 + +Join one another in following my example, +brothers, and carefully observe those who walk +according to the pattern we set for you. +For as +I have often told you before, and now say again +even with tears: Many live as enemies of the +Their end is destruction, their +cross of Christ. +god is their belly, and their glory is in their +20 +shame. Their minds are set on earthly things. + +19 + +21 + +But our citizenship is in heaven, and we ea- +gerly await a Savior from there, the Lord Jesus +who, by the power that enables Him to +Christ, +subject all things to Himself, will transform our +Rejoice in the Lord +lowly bodies to be like His glorious body. + +4 + +b + +I urge Euodia and Syntyche to agree with each +Yes, and I ask you, my true +other in the Lord. +yokefellow, + to help these women who have con- +tended at my side for the gospel, along with +Clement and the rest of my fellow workers, +4 +whose names are in the Book of Life. + +5 + +Rejoice in the Lord always. I will say it again: +Let your gentleness be apparent to all. + +Rejoice! +6 +The Lord is near. + +Be anxious for nothing, but in everything, by +7 +prayer and petition, with thanksgiving, present +And the peace of God, +your requests to God. +which surpasses all understanding, will guard +8 +your hearts and your minds in Christ Jesus. + +9 + +Finally, brothers, whatever is true, whatever is +honorable, whatever is right, whatever is pure, +whatever is lovely, whatever is admirable—if +anything is excellent or praiseworthy—think on +Whatever you have learned or +these things. +received or heard from me, or seen in me, put it +into practice. And the God of peace will be with +The Generosity of the Philippians +you. +(2 Corinthians 8:1–15) + +10 + +12 + +11 + +Now I rejoice greatly in the Lord that at last +you have revived your concern for me. You were +indeed concerned, but you had no opportunity to +I am not saying this out of need, for I +show it. +have learned to be content regardless of my cir- +I know how to live humbly, and I +cumstances. +know how to abound. In any and every situation +I have learned the secret of being filled and being +I can +hungry, of having plenty and having need. +do all things through Christ who gives me +14 +strength. + +13 + +c + +15 + +Nevertheless, you have done well to share in +And as you Philippians know, in +my affliction. +the early days of the gospel, when I left Macedo- +16 +nia, no church but you partnered with me in the +For even while +matter of giving and receiving. +I was in Thessalonica, you provided for my needs +17 +again and again. + +Not that I am seeking a gift, but I am looking +18 +for the fruit that may be credited to your account. +I have all I need and more, now that I have re- +ceived your gifts from Epaphroditus. They are a +fragrant offering, an acceptable sacrifice, well- +pleasing to God. + +in the One who gives + +c 13 + +Therefore, my brothers, whom I love and +long for, my joy and crown, that is how you +through the faithfulness of Christ + +must stand firm in the Lord, my beloved. +a 9 +me strength. + +in Christ who gives me strength. + +b 3 + +I ask you, loyal Syzygus + +Or + + BYZ and TR + +Or + +NA, SBL, NE, and WH + + 1056 | Philippians 4:19 + +19 + +And my God will supply all your needs accord- +To our +ing to His glorious riches in Christ Jesus. +Final Greetings +God and Father be glory forever and ever. Amen. +(Ephesians 6:21–24 ; 2 Timothy 4:19–22) + +20 + +21 + +The brothers who are with me send you greet- +22 +ings. + +All the saints send you greetings, especially + +23 +those from the household of Caesar. + +a + +Greet all the saints in Christ Jesus. + +spirit. + +The grace of the Lord Jesus Christ be with your + +a 23 + +Amen. + +BYZ and TR include + + Colossians + +Greetings from Paul and Timothy +(Philippians 1:1–2 ; Philemon 1:1–3) + +1 + +2 + +Paul, an apostle of Christ Jesus by the will of +God, and Timothy our brother, + +To the saints and faithful brothers in Christ at + +a + +Colossae: +Thanksgiving and Prayer +Grace and peace to you from God our Father. +(1 Corinthians 1:4–9 ; Philippians 1:3–11) + +3 + +4 + +5 + +We always thank God, the Father of our Lord Je- +because we +sus Christ, when we pray for you, +have heard about your faith in Christ Jesus and +the faith and love +your love for all the saints— +proceeding from the hope stored up for you in +heaven, of which you have already heard in the +that has come to you. +word of truth, the gospel + +6 + +7 + +All over the world this gospel is bearing fruit and +growing, just as it has been doing among you +since the day you heard it and truly understood +You learned it from Epaphras, +the grace of God. + b +8 +our beloved fellow servant, who is a faithful min- +ister of Christ on our +and who also +9 +informed us of your love in the Spirit. + + behalf, + +For this reason, since the day we heard about +you, we have not stopped praying for you and +asking God to fill you with the knowledge of His +10 +will in all spiritual wisdom and understanding, +so that you may walk in a manner worthy of +the Lord and may please Him in every way: bear- +ing fruit in every good work, growing in the +being strengthened with all +knowledge of God, +power according to His glorious might so that +you may have full endurance and patience, and +giving thanks to the Father, who has +joyfully +qualified you + to share in the inheritance of the +13 +saints in the light. + +11 + +12 + + c + +14 + +He has rescued us from the dominion of dark- +d +ness and brought us into the kingdom of His +beloved Son, +a 2 +the forgiveness of sins. +d 14 + +in whom we have redemption, + +God our Father and the Lord Jesus Christ + +redemption through His blood, + +b 7 +in all creation + +e 23 + +The Supremacy of the Son (Hebrews 1:1–14) + +15 + +16 + +The Son is the image of the invisible God, +the firstborn over all creation. +For in Him all +things were created, things in heaven and on +earth, visible and invisible, whether thrones or +dominions or rulers or authorities. All things +17 +were created through Him and for Him. + +18 + +19 + +He is before all things, and in Him all things +And He is the head of the body, +hold together. +the church; He is the beginning and firstborn +from among the dead, so that in all things He may +20 +For God was pleased to +have preeminence. +and through +have all His fullness dwell in Him, +Him to reconcile to Himself all things, whether +things on earth or things in heaven, by making +21 +peace through the blood of His cross. + +Once you were alienated from God and were +22 +hostile in your minds, engaging in evil deeds. +But now He has reconciled you by Christ’s +physical body through death to present you holy, +23 +unblemished, and blameless in His presence— +if indeed you continue in your faith, estab- +lished and firm, not moved from the hope of the +gospel you heard, which has been proclaimed to + under heaven, and of which I, +every creature +Paul’s Suffering for the Church +Paul, have become a servant. +(2 Corinthians 11:16–33) + + e + +24 + +26 + +25 + +Now I rejoice in my sufferings for you, and I fill +up in my flesh what is lacking in regard to +Christ’s afflictions for the sake of His body, which +I became its servant by the com- +is the church. +mission God gave me to fully proclaim to you the +word of God, +the mystery that was hidden for +ages and generations but is now revealed to His +To them God has chosen to make +saints. +known among the Gentiles the glorious riches of +this mystery, which is Christ in you, the hope of +28 +glory. + +27 + +We proclaim Him, admonishing and teaching +everyone with all wisdom, so that we may pre- +To this end I +sent everyone perfect +fully mature +f 28 + + in Christ. + +your + +c 12 + +29 + +us + + f + +BYZ and TR + +TR + +NE, NA, BYZ, and TR + +BYZ and TR + +Or + +Or + + 17 + +18 + +Therefore let no one judge you by what you eat +or drink, or with regard to a feast, a New Moon, +or a Sabbath. +These are a shadow of the things +c +to come, but the body that casts it belongs to +Do not let anyone who delights in false +Christ. +humility and the worship of angels disqualify you +with speculation about what he has seen. Such a +person is puffed up without basis by his unspir- +He has lost connection to the head, +itual mind. +from whom the whole body, supported and knit +together by its joints and ligaments, grows as +20 +God causes it to grow. + +19 + +21 +22 + +If you have died with Christ to the spiritual +forces of the world, why, as though you still +belonged to the world, do you submit to its regu- +“Do not handle, do not taste, do not +lations: +touch!”? +These will all perish with use, because +23 +they are based on human commands and teach- +Such restrictions indeed have an appear- +ings. +ance of wisdom, with their self-prescribed +worship, their false humility, and their harsh +treatment of the body; but they are of no value +Put On the New Self (Ephesians 4:17–32) +against the indulgence of the flesh. + +3 + +3 + +2 + +Therefore, since you have been raised with +Christ, strive for the things above, where +Christ is seated at the right hand of God. +Set +your minds on things above, not on earthly + d +For you died, and your life is now hidden +things. +with Christ in God. +life, appears, then you also will appear with Him +5 +in glory. + +When Christ, who is your + +4 + +6 + +Put to death, therefore, the components of your +earthly nature: sexual immorality, impurity, lust, +evil desires, and greed, which is idolatry. +Be- +e +7 +cause of these, the wrath of God is coming on the +sons of disobedience. +When you lived among +But +them, you also used to walk in these ways. +now you must put aside all such things as these: +anger, rage, malice, slander, and filthy language +9 +from your lips. + +8 + +10 + +1058 | Colossians 2: 1 + +16 + +also labor, striving with all His energy working +Absent in Body, Present in Spirit +powerfully within me. +(Revelation 3:14–22) + +2 + +For I want you to know how much I am +struggling for you and for those at Laodicea, +2 +and for all who have not met me face to face, +that they may be encouraged in heart, knit to- +gether in love, and filled with the full riches of +complete understanding, so that they may know +the mystery of God, namely Christ, +in whom +are hidden all the treasures of wisdom and +4 +knowledge. + +3 + +a + +5 + +I say this so that no one will deceive you by +smooth rhetoric. +For although I am absent from +you in body, I am present with you in spirit, and +I delight to see your orderly condition and firm +Alive with Christ (Ephesians 2:1–10) +faith in Christ. +6 + +7 + +Therefore, just as you have received Christ Je- +rooted and +sus as Lord, continue to walk in Him, +built up in Him, established in the faith as you +8 +were taught, and overflowing with thankfulness. + +See to it that no one takes you captive through +philosophy and empty deception, which are +based on human tradition and the spiritual +For +forces of the world rather than on Christ. +in Christ all the fullness of the Deity dwells in +And you have been made com- +bodily form. +plete in Christ, who is the head over every ruler +11 +and authority. + +10 + +9 + + b + +12 + +In Him you were also circumcised, in the put- +ting off of your sinful nature, with the circumci- +sion performed by Christ + and not by human +And having been buried with Him in +hands. +baptism, you were raised with Him through your +faith in the power of God, who raised Him from +13 +the dead. + +14 + +When you were dead in your trespasses and in +the uncircumcision of your sinful nature, God +made you alive with Christ. He forgave us all our +having canceled the debt ascribed +trespasses, +15 +to us in the decrees that stood against us. He took +it away, nailing it to the cross! +And having dis- +armed the powers and authorities, He made a +public spectacle of them, triumphing over them +a 2 +by the cross. +Christ + +but the body is of the Christ + +the mystery of God: Christ + +b 11 + +d 4 + +c 17 +Literally +on the sons of disobedience + +Literally + +include + +. + +Do not lie to one another, since you have taken +and have put +off the old self with its practices, +11 +on the new self, which is being renewed in +knowledge in the image of its Creator. +Here +there is no Greek or Jew, circumcised or uncir- +cumcised, barbarian, Scythian, slave, or free, but +Christ is all and is in all. +our + +in the cutting away of the body of the flesh, by the circumcision of +e 6 + +Literally + +NE, WH, BYZ, and TR + +NE, WH, and Tischendorf do not + + 12 + +4 + +Colossians 4:18 | 1059 + +13 + +Therefore, as the elect of God, holy and +beloved, clothe yourselves with hearts of com- +passion, kindness, humility, gentleness, and pa- +Bear with one another and forgive any +tience. +complaint you may have against someone else. +Forgive as the Lord forgave you. +And over all +15 +these virtues put on love, which is the bond of +Let the peace of Christ rule in +perfect unity. +your hearts, for to this you were called as mem- +16 +bers of one body. And be thankful. + +14 + +17 + +Let the word of Christ richly dwell within you +as you teach and admonish one another with all +wisdom, and as you sing psalms, hymns, and +spiritual songs with gratitude in your hearts to +And whatever you do, in word or deed, do +God. +it all in the name of the Lord Jesus, giving thanks +Christian Households (Ephesians 6:1–4) +to God the Father through Him. +18 + +Wives, submit to your husbands, as is fitting in + +19 +the Lord. + +Husbands, love your wives and do not be harsh + +20 +with them. + +Children, obey your parents in everything, for + +21 +this is pleasing to the Lord. + +Fathers, do not provoke your children, so they + +Serving with Honor +will not become discouraged. +(Ephesians 6:5–9 ; 1 Timothy 6:1–2) + +22 + +Slaves, obey your earthly masters in every- +thing, not only to please them while they are +watching, but with sincerity of heart and fear of +23 +the Lord. + +24 + +Whatever you do, work at it with your whole +because +being, as for the Lord and not for men, +you know that you will receive an inheritance +25 +from the Lord as your reward. It is the Lord +Whoever does wrong +Christ you are serving. +will be repaid for his wrong, and there is no +Prayerful Speech and Actions +favoritism. + +4 + +Masters, supply your slaves with what is +right and fair, since you know that you also + +2 +have a Master in heaven. + +3 + +Devote yourselves to prayer, being watchful +as you pray also for us, that God +and thankful, +may open to us a door for the word, so that we +may proclaim the mystery of Christ, for which I +a 18 + +Amen. + +BYZ and TR include + +am in chains. +5 +as I should. +6 + +Pray that I may declare it clearly, + +Act wisely toward outsiders, redeeming the +time. +Let your speech always be gracious, sea- +soned with salt, so that you may know how to +Greetings from Paul’s Fellow Workers +answer everyone. +(Romans 16:21–23) + +7 + +Tychicus will tell you all the news about me. He +8 +is a beloved brother, a faithful minister, and a fel- +I have sent him to you +low servant in the Lord. +for this very purpose, that you may know about +9 +us, and that he may encourage your hearts. +With him I am sending Onesimus, our faithful +and beloved brother, who is one of you. They will +10 +tell you about everything here. + +11 + +My fellow prisoner Aristarchus sends you +greetings, as does Mark the cousin of Barnabas. +You have already received instructions about +Jesus, +him: If he comes to you, welcome him. +who is called Justus, also sends greetings. These +are the only Jews among my fellow workers for +the kingdom of God, and they have been a com- +12 +fort to me. + +13 + +Epaphras, who is one of you and a servant of +Christ Jesus, sends you greetings. He is always +wrestling in prayer for you, so that you may +stand mature and fully assured in the full will of +For I testify about him that he goes to +God. +great pains for you and for those at Laodicea and +14 +Hierapolis. + +Luke, the beloved physician, and Demas send + +Signature and Final Instructions +you greetings. +(1 Cor. 16:19–24 ; 2 Thess. 3:16–18) + +15 + +Greet the brothers in Laodicea, as well as Nym- + +16 +pha and the church that meets at her house. + +After this letter has been read among you, +make sure that it is also read in the church of the +Laodiceans, and that you in turn read the letter +17 +from Laodicea. + +Tell Archippus: “See to it that you complete the + +18 +ministry you have received in the Lord.” + +This greeting is in my own hand—Paul. + +Remember my chains. + +a + +Grace be with you. + + 1 Thessalonians + +Greetings to the Thessalonians +(2 Thessalonians 1:1–4) + +1 + +a + +Paul, Silvanus, + + and Timothy, + +To the church of the Thessalonians in God + +b + +the Father and the Lord Jesus Christ: +2 +Grace and peace to you. +3 + +We always thank God for all of you, remember- +and continually recalling +ing you in our prayers +before our God and Father your work of faith, +your labor of love, and your enduring hope in our +4 +Lord Jesus Christ. + +5 + +Brothers who are beloved by God, we know that +because our gospel came to +He has chosen you, +you not only in word, but also in power, in the +Holy Spirit, and with great conviction—just as +6 +you know we lived among you for your sake. +And you became imitators of us and of the Lord +when you welcomed the message with the joy of +7 +the Holy Spirit, in spite of your great suffering. + +8 + +9 + +As a result, you have become an example to all +the believers in Macedonia and Achaia. +For not +only did the message of the Lord ring out from +you to Macedonia and Achaia, but your faith in +God has gone out to every place, so that we have +For they them- +no need to say anything more. +selves report what kind of welcome you gave us, +and how you turned to God from idols to serve +the living and true God +and to await His Son +from heaven, whom He raised from the dead— +Paul’s Ministry +Jesus our deliverer from the coming wrath. + +10 + +5 + +as those approved by God to be entrusted with +the gospel, not in order to please men but God, +As you know, we +who examines our hearts. +6 +never used words of flattery or any pretext for +greed. God is our witness! +Nor did we seek +praise from you or from anyone else, although as +apostles of Christ we had authority to demand +d +7 +it. + +c + +On the contrary, we were gentle among you, +8 +like a nursing mother caring for her children. +We cared so deeply that we were delighted to +share with you not only the gospel of God, but +our own lives as well. That is how beloved you +9 +have become to us. + +Surely you recall, brothers, our labor and toil. +We worked night and day so that we would not +10 +be a burden to anyone while we proclaimed to +You are witnesses, and +you the gospel of God. +so is God, of how holy, righteous, and blameless +For +our conduct was among you who believed. +you know that we treated each of you as a father +encouraging you, +treats his own children— +comforting you, and urging you to walk in a man- +ner worthy of God, who calls you into His own +13 +kingdom and glory. + +12 + +11 + +And we continually thank God because, when +you received the word of God that you heard +from us, you accepted it not as the word of men, +but as it truly is, the word of God, which is also +14 +now at work in you who believe. + +2 + +You yourselves know, brothers, that our +As you are +visit to you was not in vain. +aware, we had already endured suffering and +shameful treatment in Philippi. But in the face of +strong opposition, we were bold in our God to +3 +speak to you the gospel of God. + +4 + +For our appeal does not arise from deceit or ul- +b 1 +a 1 +terior motives or trickery. +Instead, we speak +Christ we could have been a burden to you +young children among you + +BYZ and TR include + +That is, Silas + +e 16 + +2 + +15 + +For you, brothers, became imitators of the +churches of God in Judea that are in Christ Jesus. +You suffered from your own countrymen the +who +very things they suffered from the Jews, +killed both the Lord Jesus and their own proph- +ets and drove us out as well. They are displeasing +hindering us +to God and hostile to all men, +from telling the Gentiles how they may be saved. +As a result, they continue to heap up their sins to +full capacity; the utmost wrath has come upon +c 6 +from God our Father and the Lord Jesus Christ +them. + +although as apostles of + +16 + +e + +d 7 +Or + +. + +we were like + +at last the wrath (of God) has come upon them. + +; SBL, NE, and WH include this phrase with verse 7. + +WH and NA + +Or + + Paul’s Longing to Visit + +Living to Please God + +1 Thessalonians 4:17 | 1061 + +17 + +19 + +18 + +Brothers, although we were torn away from +you for a short time (in person, not in heart), our +desire to see you face to face was even more in- +For we wanted to come to you—indeed +tense. +I, Paul, tried again and again—but Satan ob- +After all, who is our hope, our joy, +structed us. +our crown of boasting, if it is not you yourselves +20 +in the presence of our Lord Jesus at His coming? +Timothy’s Visit + +You are indeed our glory and our joy. + +3 + +2 + +3 + +So when we could bear it no longer, we were +We +willing to be left on our own in Athens. + a +sent Timothy, our brother and fellow worker for + in the gospel of Christ, to strengthen and +God +so that none of you +encourage you in your faith, +4 +would be shaken by these trials. For you know +that we are destined for this. +Indeed, when we +were with you, we kept warning you that we +5 +would suffer persecution; and as you know, it has +For this reason, when I could bear +come to pass. +it no longer, I sent to find out about your faith, for +fear that the tempter had somehow tempted you +Timothy’s Encouraging Report +and that our labor might have been in vain. + +6 + +But just now, Timothy has returned from his +visit with the good news about your faith, your +love, and the fond memories you have preserved, +For +longing to see us just as we long to see you. +this reason, brothers, in all our distress and per- +secution, we have been reassured about you, be- +For now we can go on living, +cause of your faith. +9 +as long as you are standing firm in the Lord. + +8 + +7 + +How can we adequately thank God for you in re- +10 +turn for our great joy over you in His presence? +Night and day we pray most earnestly that we +may see you face to face and supply what is lack- +11 +ing in your faith. + +12 + +13 + +Now may our God and Father Himself, and our +And may the +Lord Jesus, direct our way to you. +Lord cause you to increase and overflow with +love for one another and for everyone else, just +so that He may +as our love for you overflows, +establish your hearts in blamelessness and holi- +ness before our God and Father at the coming of +our Lord Jesus with all His saints. Amen. +our brother and God’s fellow worker +a 2 +to possess his own vessel +have fallen asleep + +c 6 + +Or + +Or + +, as in verses 14 and 15 + +4 + +Finally, brothers, we ask and encourage you +in the Lord Jesus to live in a way that is pleas- +ing to God, just as you have received from us. +This is how you already live, so you should do so +For you know the instructions we +all the more. +3 +gave you by the authority of the Lord Jesus. + +2 + +4 + +c + +For it is God’s will that you should be holy: You + b +each of +must abstain from sexual immorality; +5 +you must know how to control his own body + in +6 +not in lustful passion like +holiness and honor, +and no one +the Gentiles who do not know God; +should ever violate or exploit his brother in this +regard, + because the Lord will avenge all such +acts, as we have already told you and solemnly +For God has not called us to impu- +warned you. +Anyone, then, who rejects +rity, but to holiness. +this command does not reject man but God, the +9 +very One who gives you His Holy Spirit. + +7 + +8 + +Now about brotherly love, you do not need an- +yone to write to you, because you yourselves +10 +have been taught by God to love one another. +And you are indeed showing this love to all the +brothers throughout Macedonia. But we urge +you, brothers, to excel more and more +and to +aspire to live quietly, to attend to your own mat- +ters, and to work with your own hands, as we in- +structed you. +Then you will behave properly +toward outsiders, without being dependent on +The Return of the Lord +anyone. +13 + +11 + +12 + +d + +14 + +Brothers, we do not want you to be unin- +formed about those who sleep in death, + so that +you will not grieve like the rest, who are without +hope. +For since we believe that Jesus died and +rose again, we also believe that God will bring +15 +with Jesus those who have fallen asleep in Him. + +16 + +By the word of the Lord, we declare to you that +we who are alive and remain until the coming of +the Lord will by no means precede those who +have fallen asleep. +For the Lord Himself will +descend from heaven with a loud command, with +the voice of an archangel, and with the trumpet +of God, and the dead in Christ will be the first to +rise. +After that, we who are alive and remain +will be caught up together with them in the +clouds to meet the Lord in the air. And so we will +always be with the Lord. +our brother and minister of God + +know how + +b 4 + +17 + +no one should ever harm or cheat his brother in this matter + +; NE, WH, BYZ, and TR + +d 13 + +those who + +Literally + +Literally + + 1062 | 1 Thessalonians 4:18 + +18 + +13 + +Therefore encourage one another with these + +The Day of the Lord +words. +(Zeph. 1:7–18 ; Malachi 4:1–6 ; 2 Peter 3:8–13) + +for you in the Lord and who admonish you. +In +love, hold them in highest regard because of their +14 +work. Live in peace with one another. + +5 + +2 + +Now about the times and seasons, brothers, +For you are +we do not need to write to you. +3 +fully aware that the Day of the Lord will come +While people are saying, +like a thief in the night. +“Peace and security,” destruction will come upon +them suddenly, like labor pains on a pregnant +4 +woman, and they will not escape. + +6 + +But you, brothers, are not in the darkness so +5 +that this day should overtake you like a thief. +For you are all sons of the light and sons of the +day; we do not belong to the night or to the dark- +ness. +So then, let us not sleep as the others do, +For those +but let us remain awake and sober. +8 +who sleep, sleep at night, and those who get +But since we belong +drunk, get drunk at night. +to the day, let us be sober, putting on the breast- +plate of faith and love, and the helmet of our hope +9 +of salvation. + +7 + +10 + +For God has not appointed us to suffer wrath, +but to obtain salvation through our Lord Jesus +He died for us so that, whether we are +Christ. +11 +awake or asleep, we may live together with Him. +Therefore encourage and build one another + +Christian Living +up, just as you are already doing. +12 + +And we urge you, brothers, to admonish the +unruly, encourage the fainthearted, help the +15 +weak, and be patient with everyone. + +Make sure that no one repays evil for evil. Al- +ways pursue what is good for one another and +17 +16 +for all people. +18 + +Rejoice at all times. +Pray without ceasing. +Give thanks in every circumstance, for this is + +19 +God’s will for you in Christ Jesus. + +20 + +21 + +Do not extinguish the Spirit. + +22 + +prophecies with contempt, +Hold fast to what is good. +Final Blessings and Instructions +form of evil. +23 + +Do not treat +but test all things. +Abstain from every + + a + +24 + +Now may the God of peace Himself sanctify +you completely, and may your entire spirit, soul, +and body be kept blameless + at the coming of our +The One who calls you is +Lord Jesus Christ. +25 +faithful, and He will do it. +26 + +Brothers, pray for us as well. + +27 + +Greet all the brothers with a holy kiss. + +I charge you before the Lord to have this letter + +28 +read to all the brothers. + +b + +But we ask you, brothers, to acknowledge +those who work diligently among you, who care + +The grace of our Lord Jesus Christ be with + +you. + +a 23 + +may your spirit, soul, and body be kept entirely blameless + +b 28 + +Amen. + +Or + +BYZ and TR include + + 2 Thessalonians + +Greetings to the Thessalonians +(1 Thessalonians 1:1–10) + +1 + +a + +Paul, Silvanus, + + and Timothy, + +To the church of the Thessalonians in God + b + +2 +our Father and the Lord Jesus Christ: + +Grace and peace to you from God our Father + +3 +and the Lord Jesus Christ. + +We are obligated to thank God for you all the +time, brothers, as is fitting, because your faith is +4 +growing more and more, and your love for one +That is why we boast +another is increasing. +among God’s churches about your perseverance +and faith in the face of all the persecution and af- +Christ’s Coming +fliction you are enduring. + +5 + +7 + +All this is clear evidence of God’s righteous +judgment. And so you will be counted worthy of +6 +the kingdom of God, for which you are suffering. +After all, it is only right for God to repay with +affliction those who afflict you, +and to grant +relief to you who are oppressed and to us as +well. This will take place when the Lord Jesus +8 +is revealed from heaven with His mighty angels +in blazing fire, inflicting vengeance on those +who do not know God and do not obey the gospel +of our Lord Jesus. +They will suffer the penalty +of eternal destruction, separated from the +10 +presence of the Lord and the glory of His might, +on the day He comes to be glorified in His +saints and regarded with wonder by all who have +believed, including you who have believed our +11 +testimony. + +9 + +12 + +To this end, we always pray for you, that our +God will count you worthy of His calling, and that +He will powerfully fulfill your every good desire +and work of faith, +so that the name of our Lord +Jesus will be glorified in you, and you in Him, ac- +cording to the grace of our God and of the Lord +Jesus Christ. +a 1 +has chosen you as the firstfruits + +God the Father + +b 2 + +c + +c 12 + +The Man of Lawlessness + +2 + +2 + +Now concerning the coming of our Lord Je- +sus Christ and our being gathered together +not to be easily +to Him, we ask you, brothers, +disconcerted or alarmed by any spirit or mes- +3 +sage or letter seeming to be from us, alleging that +Let no +the Day of the Lord has already come. +one deceive you in any way, for it will not come +4 +until the rebellion occurs and the man of lawless- +He +ness—the son of destruction—is revealed. +will oppose and exalt himself above every so- +called god or object of worship. So he will seat +himself in the temple of God, proclaiming himself +5 +to be God. + +6 + +7 + +Do you not remember that I told you these +And you know +things while I was still with you? +what is now restraining him, so that he may be +For the mystery of +revealed at the proper time. +lawlessness is already at work, but the one who +now restrains it will continue until he is taken +And then the lawless one will be +out of the way. +revealed, whom the Lord Jesus will slay with the +breath of His mouth and annihilate by the maj- +9 +esty of His arrival. + +8 + +10 + +The coming of the lawless one will be accompa- +nied by the working of Satan, with every kind of +and with every +power, sign, and false wonder, +wicked deception directed against those who are +perishing, because they refused the love of the +For this rea- +truth that would have saved them. +12 +son God will send them a powerful delusion so +in order that judgment +that they believe the lie, +may come upon all who have disbelieved the +Stand Firm +truth and delighted in wickedness. +13 + +11 + + d + +But we should always thank God for you, +brothers who are loved by the Lord, because God +chose you from the beginning + to be saved by the +sanctification of the Spirit and by faith in the +To this He called you through our gospel, +truth. +so that you may share in the glory of our Lord + +14 + +the grace of our God and Lord, Jesus Christ. + +d 13 + +God + +That is, Silas + +SBL, NE, and WH + +Or + +Or + + 1064 | 2 Thessalonians 2:15 + +15 + +Therefore, brothers, stand firm +Jesus Christ. +and cling to the traditions we taught you, +16 +whether by speech or by letter. + +Now may our Lord Jesus Christ Himself and +God our Father, who by grace has loved us and +en- +given us eternal comfort and good hope, +courage your hearts and strengthen you in every +Request for Prayer +good word and deed. + +17 + +3 + +a + +2 + +Finally, brothers, pray for us, that the word +of the Lord may spread quickly and be held +in honor, just as it was with you. +And pray that +3 +we may be delivered from wicked and evil men; +But the Lord +for not everyone holds to the faith. +4 +is faithful, and He will strengthen you and guard +And we have confidence +you from the evil one. +in the Lord that you are doing and will continue +to do what we command. +May the Lord direct + and Christ’s perse- +your hearts into God’s love +A Warning against Idleness +verance. +6 + +5 + +7 + +Now we command you, brothers, in the name of +our Lord Jesus Christ, to keep away from any + b +brother who leads an undisciplined life that is +not in keeping with the tradition you received +from us. +For you yourselves know how you +ought to imitate us, because we were not undis- +nor did we eat anyone’s +ciplined among you, + +8 + +9 + +food without paying for it. Instead, in labor and +toil, we worked night and day so that we would +Not that we lack +not be a burden to any of you. +10 +this right, but we wanted to offer ourselves as an +example for you to imitate. +For even while we +were with you, we gave you this command: “If +11 +anyone is unwilling to work, he shall not eat.” + +12 + +For we hear that some of you are leading un- +disciplined lives, accomplishing nothing, but be- +We command and urge such +ing busybodies. +13 +people by our Lord Jesus Christ to begin working +But as for you, +quietly to earn their own living. +14 +brothers, do not grow weary in well-doing. + +Take note of anyone who does not obey the +instructions we have given in this letter. Do not +15 +associate with him, so that he may be ashamed. +Yet do not regard him as an enemy, but ad- + +Signature and Final Greetings +monish him as a brother. +(1 Corinthians 16:19–24 ; Colossians 4:15–18) + +16 + +Now may the Lord of peace Himself give you +peace at all times and in every way. The Lord be +17 +with all of you. + +This greeting is in my own hand—Paul. This is + +18 +my mark in every letter; it is the way I write. + +c + +The grace of our Lord Jesus Christ be with all + +of you. + +a 3 + +from evil + +b 6 + +they received + +c 18 + +Amen. + +Or + +Or + +BYZ and TR include + + 1 Timothy + +Paul’s Greeting to Timothy (2 Timothy 1:1–2) + +15 + +1 + +2 +our hope, + +Paul, an apostle of Christ Jesus by the com- +mand of God our Savior and of Christ Jesus + +To Timothy, my true child in the faith: + +Grace, mercy, and peace from God the Father and +Correcting False Teachers (Titus 1:10–16) +Christ Jesus our Lord. +3 + +4 + +As I urged you on my departure to Macedonia, +you should stay on at Ephesus to instruct certain +or devote +men not to teach false doctrines +themselves to myths and endless genealogies, +which promote speculation rather than the stew- +5 +ardship of God’s work, which is by faith. + +a + +6 + +The goal of our instruction is the love that +comes from a pure heart, a clear conscience, and +a sincere faith. +Some have strayed from these +They want +ways and turned aside to empty talk. +to be teachers of the law, but they do not under- +stand what they are saying or that which they so +8 +confidently assert. + +7 + +9 + +10 + +Now we know that the law is good, if one uses it +We realize that law is not enacted +legitimately. +for the righteous, but for the lawless and rebel- +lious, for the ungodly and sinful, for the unholy +and profane, for killers of father or mother, for + b +for the sexually immoral, for +murderers, +homosexuals, for slave traders + and liars and +11 +perjurers, and for anyone else who is averse to +that agrees with the glorious +sound teaching +gospel of the blessed God, with which I have been +God’s Grace to Paul +entrusted. +12 + +13 + +I thank Christ Jesus our Lord, who has +strengthened me, that He considered me faithful +I was formerly a +and appointed me to service. +blasphemer, a persecutor, and a violent man; yet +because I had acted in ignorance and unbelief, I +And the grace of our Lord +was shown mercy. +overflowed to me, along with the faith and love +a 4 +that are in Christ Jesus. + +rather than the stewardship of God in faith + +14 + +b 10 + +16 + +This is a trustworthy saying, worthy of full ac- +ceptance: Christ Jesus came into the world to +But for +save sinners, of whom I am the worst. +this very reason I was shown mercy, so that in +me, the worst of sinners, Christ Jesus might dis- +play His perfect patience as an example to those +Now +who would believe in Him for eternal life. +to the King eternal, immortal, and invisible, the +only God, be honor and glory forever and ever. +18 +Amen. + +17 + +19 + +Timothy, my child, I entrust you with this com- +mand in keeping with the previous prophecies +about you, so that by them you may fight the +holding on to faith and a good con- +good fight, +science, which some have rejected and thereby +shipwrecked their faith. +Among them are Hy- +menaeus and Alexander, whom I have handed +A Call to Prayer +over to Satan to be taught not to blaspheme. + +20 + +2 + +2 + +First of all, then, I urge that petitions, pray- +ers, intercessions, and thanksgiving be of- +for kings and all those in +fered for everyone— +authority—so that we may lead tranquil and +This is +quiet lives in all godliness and dignity. +4 +good and pleasing in the sight of God our Savior, +who wants everyone to be saved and to come to + +3 + +5 +the knowledge of the truth. + +For there is one God, and there is one mediator +6 +between God and men, the man Christ Jesus, +who gave Himself as a ransom for all—the tes- + +7 +timony that was given at just the right time. + +8 + +For this reason I was appointed as a preacher, +an apostle, and a faithful and true teacher of the +Gentiles. I am telling the truth; I am not lying + c +Therefore I want the men eve- +about anything. + to pray, lifting up holy hands, without +rywhere +Instructions to Women +anger or dissension. +9 + +Likewise, I want the women to adorn them- +selves with respectable apparel, with modesty, +and with self-control, not with braided hair or +but with +gold or pearls or expensive clothes, + +in every place (of worship) + +for kidnappers + +c 8 + +10 + +Literally + +Or + +Or + + 1066 | 1 Timothy 2:11 + +good deeds, as is proper for women who profess +11 +to worship God. + + a + +12 + + b + +13 + + must learn in quietness and full +A woman +I do not permit a woman to +submissiveness. +teach or to exercise authority over a man; + she is +14 +For Adam was formed first, +to remain quiet. +And it was not Adam who was +and then Eve. +15 +deceived, but the woman who was deceived and +fell into transgression. +Women, however, will +be saved + through childbearing, if they continue +Qualifications for Overseers +in faith, love, and holiness, with self-control. +(Titus 1:5–9 ; 1 Peter 5:1–4) + + c + +3 + +2 + +This is a trustworthy saying: If anyone as- +pires to be an overseer, he desires a noble +task. +An overseer, then, must be above re- +proach, the husband of but one wife, + temperate, +3 +self-controlled, respectable, hospitable, able to +not dependent on wine, not violent but +teach, +4 +gentle, peaceable, and free of the love of money. + +d + +6 + +5 + +An overseer must manage his own household +well and keep his children under control, with +For if someone does not know +complete dignity. +how to manage his own household, how can he +He must not be a re- +care for the church of God? +cent convert, or he may become conceited and +7 +fall under the same condemnation as the devil. +Furthermore, he must have a good reputation +with outsiders, so that he will not fall into dis- +Qualifications for Deacons +grace and into the snare of the devil. +(Acts 6:1–7) + +8 + +9 + +Deacons likewise must be dignified, not double- +tongued or given to much wine or greedy for +They must hold to the mystery of the +money. +Additionally, +faith with a clear conscience. +they must first be tested. Then, if they are above +11 +reproach, let them serve as deacons. + +10 + + e + +In the same way, the women + +must be digni- +fied, not slanderers, but temperate and faithful in +12 +all things. + +13 + +A deacon must be the husband of but one wife, +a good manager of his children and of his own +For those who have served well as +household. +deacons acquire for themselves a high standing +and great confidence in the faith that is in Christ +a 11 +Jesus. +wife +; also in verse 12 +Or +in spirit +h 10 +Or +; also in verse 12 + +over her husband +f 16 + +b 12 +their wives +Or + +and suffer reproach + +Literally + +e 11 + +wife + +SBL, BYZ, and TR + +The Mystery of Godliness + +14 + +15 + +Although I hope to come to you soon, I +am writing you these things +in case I am +delayed, so that you will know how each one +must conduct himself in God’s household, which +is the church of the living God, the pillar and +16 +foundation of the truth. + +By common confession, the mystery of godli- + +ness is great: + + f + +g + +He appeared + + in the flesh, + +was vindicated by the Spirit, + +was seen by angels, + +was proclaimed among the nations, +was believed in throughout the world, + +A Warning against Apostasy + +was taken up in glory. + +4 + +Now the Spirit expressly states that in later +times some will abandon the faith to follow +2 +deceitful spirits and the teachings of demons, +influenced by the hypocrisy of liars, whose con- + +3 +sciences are seared with a hot iron. + +4 + +They will prohibit marriage and require absti- +nence from certain foods that God has created to +be received with thanksgiving by those who be- +For every creation of +lieve and know the truth. +God is good, and nothing that is received with +because it is +thanksgiving should be rejected, +A Good Servant of Jesus Christ +sanctified by the word of God and prayer. +6 + +5 + +By pointing out these things to the brothers, +you will be a good servant of Christ Jesus, nour- +ished by the words of faith and sound instruction +7 +that you have followed. +8 +But reject irreverent, silly myths. Instead, train +For physical exercise is +yourself for godliness. +of limited value, but godliness is valuable in +every way, holding promise for the present life +This is a trustworthy +and for the one to come. +10 +saying, worthy of full acceptance. + +9 + +h + +To this end we labor and strive, + + because we +have set our hope on the living God, who is the +Savior of everyone, and especially of those who +12 +believe. + +Command and teach these things. + +11 + +Let no one despise your youth, but set an +example for the believers in speech, in conduct, +faithful to his +Until I come, devote +in love, in faith, in purity. +vindicated + +She, however, will be saved + +God appeared + +d 2 + +13 + +c 15 + +He who appeared + +Literally + +g 16 +Or + +; BYZ and TR + +Or + + yourself to the public reading of Scripture, to ex- +14 +hortation, and to teaching. + +15 + +Do not neglect the gift that is in you, which was +given you through the prophecy spoken over you +Be +at the laying on of the hands of the elders. +diligent in these matters and absorbed in them, +Pay +so that your progress will be evident to all. +close attention to your life and to your teaching. +Persevere in these things, for by so doing you will +Reproof and Respect +save both yourself and those who hear you. + +16 + +5 + +Do not rebuke an older man, but appeal to +him as to a father. + +2 + +older women as +Treat younger men as brothers, +mothers, and younger women as sisters, with ab- +Honoring True Widows (Ruth 1:1–5) +solute purity. +3 + +4 + +Honor the widows who are truly widows. + +But +if a widow has children or grandchildren, they +must first learn to show godliness to their own +family and repay their parents, for this is pleas- +5 +ing in the sight of God. + +The widow who is truly in need and left all +alone puts her hope in God and continues night +But she +and day in her petitions and prayers. +who lives for pleasure is dead even while she is +7 +still alive. + +6 + +8 + +Give these instructions to the believers, so that +If anyone does not +they will be above reproach. +provide for his own, and especially his own +household, he has denied the faith and is worse +9 +than an unbeliever. + +10 + +A widow should be enrolled if she is at least +sixty years old, faithful to her husband, +and +well known for good deeds such as bringing up +children, entertaining strangers, washing the +feet of the saints, imparting relief to the afflicted, +11 +and devoting herself to every good work. + +13 + +12 + +But refuse to enroll younger widows. For +when their passions draw them away from +and thus will +Christ, they will want to marry, +incur judgment because they are setting aside +At the same time they will +their first faith. +also learn to be idle, going from house to house +and being not only idle, but also gossips and +busybodies, discussing things they should not +mention. +b 18 +a 18 + +1 Timothy 6:2 | 1067 + +14 + +So I advise the younger widows to marry, have +children, and manage their households, denying +For some +the adversary occasion for slander. +16 +have already turned aside to follow Satan. + +15 + +If any believing woman has dependent wid- +ows, she must assist them and not allow the +church to be burdened, so that it can help the +Honoring Elders +widows who are truly in need. +17 + +Elders who lead effectively are worthy of dou- +18 +ble honor, especially those who work hard at +For the Scripture says, +preaching and teaching. + a +“Do not muzzle an ox while it is treading out +the grain,” + and, “The worker is worthy of his +19 +wages.” + + b + +20 + +Do not entertain an accusation against an el- +der, except on the testimony of two or three wit- +nesses. +But those who persist in sin should be +rebuked in front of everyone, so that the others +A Charge to Timothy +will stand in fear of sin. +21 + +I solemnly charge you before God and Christ +Jesus and the elect angels to maintain these prin- +ciples without bias, and to do nothing out of par- +22 +tiality. + +Do not be too quick in the laying on of hands +and thereby share in the sins of others. Keep +23 +yourself pure. + +Stop drinking only water and use a little wine +instead, because of your stomach and your fre- +24 +quent ailments. + +25 + +The sins of some men are obvious, going ahead +of them to judgment; but the sins of others do not +surface until later. +In the same way, good +deeds are obvious, and even the ones that are +Serving with Honor +inconspicuous cannot remain hidden. +(Ephesians 6:5–9 ; Colossians 3:22–25) + +6 + +2 + +All who are under the yoke of slavery should +regard their masters as fully worthy of +honor, so that God’s name and our teaching will +Those who have believing +not be discredited. +masters should not show disrespect because +they are brothers, but should serve them all the +more, since those receiving their good service +are beloved believers. Teach and encourage +these principles. + +Deuteronomy 25:4 + +Luke 10:7; see also Leviticus 19:13 and Deuteronomy 24:14–15. + + 1068 | 1 Timothy 6:3 + +Reject False Doctrines + +3 + +4 + +If anyone teaches another doctrine and disa- +grees with the sound words of our Lord Jesus +Christ and with godly teaching, +he is conceited +and understands nothing. Instead, he has an un- +healthy interest in controversies and disputes +about words, out of which come envy, strife, abu- +and constant friction +sive talk, evil suspicions, +between men of depraved mind who are devoid +of the truth. These men regard godliness as a +Godliness with Contentment +means of gain. +6 + +5 + +a + +7 + +Of course, godliness with contentment is great + b +For we brought nothing into the world, +gain. +so +But if we +have food and clothing, we will be content with +9 +these. + + we cannot carry anything out of it. + +8 + +10 + +Those who want to be rich, however, fall into +temptation and become ensnared by many fool- +ish and harmful desires that plunge them into +For the love of money is +ruin and destruction. +the root of all kinds of evil. By craving it, some +have wandered away from the faith and pierced +Fight the Good Fight +themselves with many sorrows. +11 + +12 + +But you, O man of God, flee from these things +and pursue righteousness, godliness, faith, love, +Fight the good +perseverance, and gentleness. +fight of the faith. Take hold of the eternal life to +which you were called when you made the good +confession before many witnesses. + +13 + +15 + +14 + +I charge you in the presence of God, who gives +life to all things, and of Christ Jesus, who made +the good confession in His testimony before Pon- +Keep this commandment without +tius Pilate: +stain or reproach until the appearance of our +which the blessed and only +Lord Jesus Christ, +Sovereign One—the King of kings and Lord of +He +lords—will bring about in His own time. +alone is immortal and dwells in unapproachable +light. No one has ever seen Him, nor can anyone +see Him. To Him be honor and eternal dominion! +A Charge to the Rich +Amen. +(Proverbs 23:1–5 ; James 5:1–6) + +16 + +17 + +18 + +Instruct those who are rich in the present age +not to be conceited and not to put their hope in +the uncertainty of wealth, but in God, who richly +Instruct +provides all things for us to enjoy. +them to do good, to be rich in good works, and to +treasuring up +be generous and ready to share, +for themselves a firm foundation for the future, +so that they may take hold of that which is truly +life. Guard the Faith +20 + +19 + +O Timothy, guard what has been entrusted to +you. Avoid irreverent, empty chatter and the op- +21 +posing arguments of so-called “knowledge,” +which some have professed and thus swerved + +away from the faith. + +c + +Grace be with you all. + +a 5 + +Withdraw yourself from such. + +b 7 + +so certainly + +c 21 + +Amen. + +BYZ and TR include + +BYZ and TR + +BYZ and TR include + + 2 Timothy + +Paul’s Greeting to Timothy +(1 Timothy 1:1–2) + +Holding to Sound Teaching + +13 + + d + +1 + +2 +Christ Jesus, + +Paul, an apostle of Christ Jesus by the will of +God, according to the promise of life in + +To Timothy, my beloved child: + +Grace, mercy, and peace from God the Father and +Faithfulness under Persecution +Christ Jesus our Lord. +(Matthew 10:16–25) + +3 + +I thank God, whom I serve with a clear con- +science as did my forefathers, as I constantly +4 +remember you night and day in my prayers. +Recalling your tears, I long to see you so that I + +5 +may be filled with joy. + +I am reminded of your sincere faith, which first +dwelt in your grandmother Lois and your mother +6 +Eunice, and I am convinced is in you as well. + +7 + +For this reason I remind you to fan into flame +the gift of God, which is in you through the laying +a +on of my hands. +For God has not given us a spirit +8 +of fear, + + but of power, love, and self-control. + +b + +9 + +10 + +So do not be ashamed of the testimony of our +Lord, or of me, His prisoner. Instead, join me in +He +suffering for the gospel by the power of God. +has saved us and called us to a holy calling, not +because of our works, but by His own purpose +and by the grace He granted us in Christ Jesus be- +And now He has revealed +fore time began. +this grace through the appearing of our Savior, +Christ Jesus, who has abolished death and illumi- +nated the way to life and immortality through the +to which I was appointed as a preacher, +gospel, +12 +an apostle, and a teacher. + +11 + +e + +Hold on to the pattern of sound teaching +14 + + you +have heard from me, with the faith and love that +Guard the treasure en- +are in Christ Jesus. +trusted to you, + with the help of the Holy Spirit +15 +who dwells in us. + + f + +You know that everyone in the Province of + has deserted me, including Phygelus and + +Asia +16 +Hermogenes. + +May the Lord grant mercy to the household of +Onesiphorus, because he has often refreshed me +Indeed, +and was unashamed of my chains. +when he arrived in Rome, he searched diligently +18 +until he found me. + +17 + +May the Lord grant Onesiphorus His mercy on +that day. You know very well how much he min- +Grace and Perseverance (Hebrews 12:1–3) +istered to me in Ephesus. + +2 + +2 + +You therefore, my child, be strong in the +And the things +grace that is in Christ Jesus. +that you have heard me say among many wit- +nesses, entrust these to faithful men who will be +3 +qualified to teach others as well. + +4 + +A soldier refrains + +Join me in suffering, like a good soldier of Christ +from entangling +Jesus. +5 +himself in civilian affairs, in order to please the +Likewise, a competitor +one who enlisted him. +6 +does not receive the crown unless he competes +according to the rules. +The hardworking farmer +Con- +should be the first to partake of the crops. +sider what I am saying, for the Lord will give you +8 +insight into all things. + +7 + +9 + +10 + +Remember Jesus Christ, raised from the dead, +descended from David, as proclaimed by my gos- +for which I suffer to the extent of being +pel, +chained like a criminal. But the word of God can- +For this reason I endure all +not be chained! +things for the sake of the elect, so that they too +may obtain the salvation that is in Christ Jesus, +with eternal glory. +f 15 + +what He has entrusted to me +in Asia + +c 12 + +For this reason, even though I suffer as I do, I +am not ashamed; for I know whom I have be- +lieved, and I am convinced that He is able to + for that day. +guard what I have entrusted to Him + b 9 +before times eternal + cowardice +a 7 +the good deposit entrusted to you +e 14 +d 13 + +timidity + + c + +sound words +or + +Or + +Literally + +province in what is now western Turkey. + +Literally +Or + +Or + +Literally + +; Asia was a Roman + + 1070 | 2 Timothy 2:11 + +11 + +26 + +This is a trustworthy saying: + +If we died with Him, + +12 + +we will also live with Him; + +if we endure, + +we will also reign with Him; + +if we deny Him, + +13 + +He will also deny us; + +if we are faithless, + +He remains faithful, +The Lord’s Approved Workman +for He cannot deny Himself. + +14 + + a + +Remind the believers of these things, charging + to avoid quarreling over +them before God +words, which succeeds only in leading the listen- +15 +ers to ruin. + +Make every effort to present yourself ap- +proved to God, an unashamed workman who +16 +accurately handles the word of truth. + +17 + +18 + +But avoid irreverent, empty chatter, which will +and the talk of +only lead to more ungodliness, +such men will spread like gangrene. Among them +who have devi- +are Hymenaeus and Philetus, +ated from the truth. They say that the resurrec- +tion has already occurred, and they undermine +19 +the faith of some. + + b + +Nevertheless, God’s firm foundation stands, +bearing this seal: “The Lord knows those who are +His,” + and, “Everyone who calls on the name of +20 +the Lord must turn away from iniquity.” + +21 + +A large house contains not only vessels of gold +and silver, but also of wood and clay. Some in- +deed are for honorable use, but others are for +c +So if anyone cleanses himself of +common use. + he will be a vessel for honor: sanc- +what is unfit, +tified, useful to the Master, and prepared for +22 +every good work. + +Flee from youthful passions and pursue right- +eousness, faith, love, and peace, together with +23 +those who call on the Lord out of a pure heart. + +24 + +25 + +But reject foolish and ignorant speculation, for +And a serv- +you know that it breeds quarreling. +ant of the Lord must not be quarrelsome, but +must be kind to everyone, able to teach, and +He must gently reprove those who +forbearing. +oppose him, in the hope that God may grant them +repentance leading to a knowledge of the truth. +b 19 +the Lord +a 14 +The Book of Jashar +d 8 + +Then they will come to their senses and escape +the snare of the devil, who has taken them cap- +Evil in the Last Days +tive to his will. + +3 + +2 + +3 + +But understand this: In the last days terrible +For men will be lovers of +times will come. +themselves, lovers of money, boastful, arrogant, +abusive, disobedient to their parents, ungrateful, +unloving, unforgiving, slanderous, +unholy, +4 +without self-control, brutal, without love of good, +traitorous, reckless, conceited, lovers of pleas- +having a form of +ure rather than lovers of God, +godliness but denying its power. Turn away from +6 +such as these! + +5 + +7 + +They are the kind who worm their way into +households and captivate vulnerable women +who are weighed down with sins and led astray +who are always learning +by various passions, +but never able to come to a knowledge of the +8 +truth. + +d + +Just as Jannes and Jambres opposed Moses, + + so +also these men oppose the truth. They are de- +9 +praved in mind and disqualified from the faith. +But they will not advance much further. For just +like Jannes and Jambres, their folly will be plain +All Scripture Is God-Breathed +to everyone. +(Hebrews 4:12–16) + +10 + +You, however, have observed my teaching, my +11 +conduct, my purpose, my faith, my patience, my +my persecutions, and +love, my perseverance, +the sufferings that came upon me in Antioch, Ico- +nium, and Lystra. What persecutions I endured! +In- +Yet the Lord rescued me from all of them. +deed, all who desire to live godly lives in Christ +while evil men and +Jesus will be persecuted, +imposters go from bad to worse, deceiving and +14 +being deceived. + +12 + +13 + +15 + +But as for you, continue in the things you have +learned and firmly believed, since you know +From +from whom you have learned them. +infancy you have known the Holy Scriptures, +which are able to make you wise for salvation +All Scripture is +through faith in Christ Jesus. +God-breathed and is useful for instruction, for +17 +conviction, for correction, and for training in +so that the man of God may be +righteousness, +complete, fully equipped for every good work. +cleanses himself of these +c 21 + +16 + +SBL, BYZ, and TR +See Jasher 79:27. + +the Book of the Upright One +Numbers 16:5 (see also LXX) + or + +Jasher + +Literally + + is often cited as + +. + + Preach the Word + +4 + +2 + +I charge you in the presence of God and of +Christ Jesus, who will judge the living and +the dead, and in view of His appearing and His +Preach the word; be prepared in sea- +kingdom: +son and out of season; reprove, rebuke, and en- +3 +courage with every form of patient instruction. + +For the time will come when men will not toler- +ate sound doctrine, but with itching ears they +will gather around themselves teachers to suit +So they will turn their ears +their own desires. +5 +away from the truth and turn aside to myths. + +4 + +8 + +But you, be sober in all things, endure hardship, +6 +do the work of an evangelist, fulfill your ministry. +For I am already being poured out like a drink +7 +offering, and the time of my departure is at hand. +I have fought the good fight, I have finished the +race, I have kept the faith. +From now on there is +laid up for me the crown of righteousness, which +the Lord, the righteous Judge, will award to me +on that day—and not only to me, but to all who +Personal Concerns +crave His appearing. +9 + +10 + +2 Timothy 4:22 | 1071 + +Carpus at Troas, and my scrolls, especially the +14 +parchments. + +15 + +Alexander the coppersmith did great harm to +me. The Lord will repay him according to his +You too should beware of him, for he +deeds. +The Lord Remains Faithful +has vigorously opposed our message. + +16 + +17 + +At my first defense, no one stood with me, but +everyone deserted me. May it not be charged +But the Lord stood by me and +against them. +strengthened me, so that through me the mes- +sage would be fully proclaimed, and all the Gen- +tiles would hear it. So I was delivered from the +And the Lord will rescue me +mouth of the lion. +from every evil action and bring me safely into +His heavenly kingdom. To Him be the glory for- +Final Greetings +ever and ever. Amen. +(Ephesians 6:21–24 ; Philippians 4:21–23) + +18 + +19 + + a + +Greet Prisca + + and Aquila, as well as the house- + +20 +hold of Onesiphorus. + +Make every effort to come to me quickly, +11 + +be- +cause Demas, in his love of this world, has de- +serted me and gone to Thessalonica. Crescens +Only +has gone to Galatia, and Titus to Dalmatia. +Luke is with me. Get Mark and bring him with +12 +you, because he is useful to me in the ministry. +13 +Tychicus, however, I have sent to Ephesus. +When you come, bring the cloak that I left with + +Erastus has remained at Corinth, and Trophi- + +21 +mus I left sick in Miletus. + +Make every effort to come to me before winter. + +Eubulus sends you greetings, as do Pudens, +22 +Linus, Claudia, and all the brothers. + +b +The Lord be with your spirit. Grace be with you + +all. + +a 19 Prisca + +Priscilla + +b 22 + +Amen. + + is a variant of + +; see Acts 18:2. + +BYZ and TR include + + Titus + +13 + +Paul’s Greeting to Titus +(2 Corinthians 8:16–24) + +1 + +Paul, a servant of God and an apostle of Jesus +Christ for the faith of God’s elect and their +2 +knowledge of the truth that leads to godliness, +in the hope of eternal life, which God, who can- +not lie, promised before time began. +In His +own time He has made His word evident in the +proclamation entrusted to me by the command +4 +of God our Savior. + +3 + +a + +To Titus, my true child in our common faith: + +Grace and peace from God the Father and Christ +Appointing Elders on Crete +Jesus our Savior. +(1 Timothy 3:1–7 ; 1 Peter 5:1–4) + +5 + +b + +6 + +The reason I left you in Crete was that you +would set in order what was unfinished and ap- +An +point elders in every town, as I directed you. +elder must be blameless, the husband of but one +wife, + having children who are believers and +who are not open to accusation of indiscretion or +7 +insubordination. + +8 + +9 + +As God’s steward, an overseer must be above +reproach—not self-willed, not quick-tempered, +not given to drunkenness, not violent, not greedy +Instead, he must be hospitable, a +for money. +lover of good, self-controlled, upright, holy, and +He must hold firmly to the faithful +disciplined. +word as it was taught, so that he can encourage +others by sound teaching and refute those who +Correcting False Teachers +contradict it. +(1 Timothy 1:3–11) + +10 + +11 + +For many are rebellious and full of empty talk +and deception, especially those of the circumci- +who must be silenced. For the sake of +sion, +dishonorable gain, they undermine entire house- +holds and teach things they should not. +As one + c +of their own prophets has said, “Cretans are +always liars, evil beasts, lazy gluttons.” +a 2 + +before times eternal + +faithful to his wife + +b 6 + +12 + +This testimony is true. Therefore rebuke them +14 +sternly, so that they will be sound in the faith +and will pay no attention to Jewish myths or to +the commands of men who have rejected the +15 +truth. + +16 + +To the pure, all things are pure; but to the de- +filed and unbelieving, nothing is pure. Indeed, +both their minds and their consciences are +They profess to know God, but by their +defiled. +actions they deny Him. They are detestable, dis- +Teaching Sound Doctrine +obedient, and unfit for any good deed. + +2 + +2 + +But as for you, speak the things that are con- +sistent with sound doctrine. + +Older men are to be temperate, dignified, +self-controlled, and sound in faith, love, and +3 +perseverance. + +4 + +Older women, likewise, are to be reverent in +their behavior, not slanderers or addicted to +In this way +much wine, but teachers of good. +they can train the young women to love their +to be self-controlled, +husbands and children, +pure, managers of their households, kind, and +submissive to their own husbands, so that the +6 +word of God will not be discredited. + +5 + +In the same way, urge the younger men to be + +7 +self-controlled. + +8 + +In everything, show yourself to be an example +by doing good works. In your teaching show in- +and wholesome speech that is +tegrity, dignity, +above reproach, so that anyone who opposes us +will be ashamed, having nothing bad to say about +9 +us. + +10 + +Slaves are to submit to their own masters in +everything, to be well-pleasing, not argumenta- +not stealing from them, but showing all +tive, +good faith, so that in every respect they will +adorn the teaching about God our Savior. + +c 12 + +Literally + +Or + +This quote, also known as the Epimenides paradox, has + +been attributed to the Cretan philosopher Epimenides of Knossos. + + Titus 3:15 | 1073 + +7 + +through Jesus Christ our Savior, +so that, having +8 +been justified by His grace, we would become +This saying is +heirs with the hope of eternal life. +trustworthy. And I want you to emphasize these +things, so that those who have believed God will +take care to devote themselves to good deeds. +These things are excellent and profitable for the +Avoid Divisions +people. +(Romans 16:17–20) + +9 + +But avoid foolish controversies, genealogies, ar- +guments, and quarrels about the law, because +10 +these things are pointless and worthless. + +11 + +Reject a divisive man after a first and second +knowing that such a man is cor- + +admonition, +Final Remarks and Greetings +rupt and sinful; he is self-condemned. +12 + +13 + +As soon as I send Artemas or Tychicus to you, +make every effort to come to me at Nicopolis, +Do +because I have decided to winter there. +your best to equip Zenas the lawyer and Apollos, +14 +so that they will have everything they need. +And our people must also learn to devote +themselves to good works in order to meet the +pressing needs of others, so that they will not be +15 +unfruitful. + +All who are with me send you greetings. + +b + +Greet those who love us in the faith. + +Grace be with all of you. + +God’s Grace Brings Salvation + +11 + +12 +For the grace of God has appeared, bringing +salvation to everyone. +It instructs us to re- +nounce ungodliness and worldly passions, and to +13 +live sensible, upright, and godly lives in the pre- +as we await the blessed hope and +sent age, +14 +glorious appearance of our great God and Savior +He gave Himself for us to redeem +Jesus Christ. +us from all lawlessness and to purify for Himself +a people for His own possession, zealous for +15 +good deeds. + +Speak these things as you encourage and +Heirs of Grace +rebuke with all authority. Let no one despise you. + +3 + +2 + +Remind the believers to submit to rulers and +authorities, to be obedient and ready for +to malign no one, and to be +every good work, +peaceable and gentle, showing full consideration +3 +to everyone. + +For at one time we too were foolish, disobedi- +ent, misled, and enslaved to all sorts of desires +and pleasures—living in malice and envy, being +4 +hated and hating one another. + +5 + + a + +But when the kindness of God our Savior and +He saved us, not +His love for mankind appeared, +by the righteous deeds we had done, but accord- +6 +ing to His mercy, through the washing of new +This is +birth +the Spirit He poured out on us abundantly + + and renewal by the Holy Spirit. + +a 5 + +of regeneration + +b 15 + +Amen. + +Or + +BYZ and TR include + + Philemon + +Greetings from Paul and Timothy +(Philippians 1:1–2 ; Colossians 1:1–2) + +1 + +Paul, a prisoner of Christ Jesus, and Timothy our + +2 + +brother, + +To Philemon our beloved fellow worker, +to Ap- +phia our sister, to Archippus our fellow soldier, +3 +and to the church that meets at your + + house: + + a + +Grace and peace to you from God our Father + +Philemon’s Faith and Love +and the Lord Jesus Christ. + +4 + +5 + +6 + +I always thank my God, remembering you in my +because I hear about your faith in the +prayers, +Lord Jesus and your love for all the saints. +I pray +that your partnership in the faith may become ef- +fective as you fully acknowledge every good +I take great joy and +thing that is ours in Christ. +encouragement +love, because you, +in your +Paul’s Appeal for Onesimus +brother, have refreshed the hearts of the saints. + +7 + +8 + +9 + +So although in Christ I am bold enough to order +you to do what is proper, +I prefer to appeal on +the basis of love. For I, Paul, am now aged, and a +10 +prisoner of Christ Jesus as well. + +11 +I appeal to you for my child Onesimus, + whose +father I became while I was in chains. +For- +merly he was useless to you, but now he has +I am +become useful both to you and to me. +sending back to you him who is my very heart. + +12 + +b + +13 + +16 + +14 + +I would have liked to keep him with me, so that +on your behalf he could minister to me in my +chains for the gospel. +But I did not want to do +anything without your consent, so that your +15 +goodness will not be out of compulsion, but by +your own free will. +For perhaps this is why he +was separated from you for a while, so that you +might have him back for good— +no longer as a +slave, but better than a slave, as a beloved +brother. He is especially beloved to me, but even +17 +more so to you, both in person and in the Lord. +18 +So if you consider me a partner, receive him as +you would receive me. +But if he has wronged +you in any way or owes you anything, charge it +I, Paul, write this with my own +to my account. +hand. I will repay it—not to mention that you +20 +owe me your very self. + +19 + + c + +Yes, brother, let me have some benefit +21 +you in the Lord. Refresh my heart in Christ. + + from + +Confident of your obedience, I write to you, + +22 +knowing that you will do even more than I ask. + +In the meantime, prepare a guest room for me, +because I hope that through your prayers I will +Additional Greetings +be restored to you. +23 + +24 + +Epaphras, my fellow prisoner in Christ Jesus, +as do Mark, Aristarchus, + +sends you greetings, +25 +Demas, and Luke, my fellow workers. + +d + +The grace of the Lord Jesus Christ be with your + +spirit. + +a 2 You + +Your +beneficial + and + +11) or + +d 25 + are singular throughout this letter, except in verses 3, 22, and 25. + (see verse 20). + +, a play on the name + +Onesimus + +onaimēn + +Greek + +c 20 + + means +BYZ and TR include + + (see verse + +b 10 Onesimus + +useful +Amen. + + Hebrews + +The Supremacy of the Son +(Colossians 1:15–23) + +1 + +2 + +On many past occasions and in many differ- +ent ways, God spoke to our fathers through +a +But in these last days He has +the prophets. +spoken to us by His Son, + whom He appointed +heir of all things, and through whom He made the +3 +universe. + +b + +The Son is the radiance of God’s glory and the +exact representation of His nature, upholding all +things by His powerful word. After He had pro- +vided purification for sins, He sat down at the +So He became +right hand of the Majesty on high. +5 +as far superior to the angels as the name He has +For to +inherited is excellent beyond theirs. +which of the angels did God ever say: + +4 + + c + +“You are My Son; + +today I have become Your Father” + +? + +Or again: + + d + +“I will be His Father, + +and He will be My Son” + +? + +6 + +And again, when God brings His firstborn into + + e + +the world, He says: +7 + +“Let all God’s angels worship Him.” + +Now about the angels He says: + f + +“He makes His angels winds, +His servants flames of fire.” + +8 + +But about the Son He says: + +“Your throne, O God, endures forever + +and ever, + +9 + +and justice is the scepter of Your + +kingdom. + +You have loved righteousness +and hated wickedness; + g + +therefore God, Your God, has anointed You +above Your companions with the oil +the ages +the world +in His Son + +b 2 + +c 5 + +a 2 + +of joy.” +e 6 + +10 + +And: + +“In the beginning, O Lord, You laid the +foundations of the earth, +and the heavens are the work of + +11 + +Your hands. + +12 + +They will perish, but You remain; + h +You will roll them up like a robe; + +they will all wear out like a garment. + +like a garment + + they will be changed; + + i + +but You remain the same, + +13 + +and Your years will never end.” + +Yet to which of the angels did God ever say: + +“Sit at My right hand + + j + +14 + +until I make Your enemies a footstool for + +Your feet” + + k +? + +Are not the angels +Salvation Confirmed +serve those who will inherit salvation? + + ministering spirits sent to + +2 + +2 + +We must pay closer attention, therefore, to +what we have heard, so that we do not drift +away. +For if the message spoken by angels was +binding, and every transgression and disobedi- +how shall we +ence received its just punishment, +escape if we neglect such a great salvation? + +3 + +This salvation was first announced by the Lord, +4 +was confirmed to us by those who heard Him, +and was affirmed by God through signs, won- +ders, various miracles, and gifts of the Holy Spirit +Jesus like His Brothers +distributed according to His will. +5 + +For it is not to angels that He has subjected the +6 +world to come, about which we are speaking. +But somewhere it is testified in these words: + +“What is man that You are mindful of him, + + l + +7 + + 8 + +You made him a little lower + +or the son of man that You care for him? + m + than the angels; + + n +You crowned him with glory and honor +and placed everything under his feet.” +g 9 + +today I have begotten You + +d 5 + +Or +1 Chr. 17:13 +lower +TR do not include + +Or + +; literally +like a garment +i 12 +Deuteronomy 32:43 (see DSS and LXX) +m 7 + +. + +Psalm 102:25–27 + +f 7 +Psalm 2:7; literally +and set him over the works of Your hands +Lit. + +j 13 +Psalm 104:4 (see also LXX) + +Psalm 110:1 + +k 14 + +; also in verse 9 + +WH and TR include + +. + +Are they not all l 7 + +h 12 +2 Samuel 7:14; +a little while +BYZ and + +n 8 + +Psalm 45:6–7 +Or +Psalm 8:4–6 (see also LXX) + + 1076 | Hebrews 2:9 + +9 + +When God subjected all things to him, He left +nothing outside of his control. Yet at present we +But we see +do not see everything subject to him. +Jesus, who was made a little lower than the an- +gels, now crowned with glory and honor because +He suffered death, so that by the grace of God He +10 +might taste death for everyone. + +In bringing many sons to glory, it was fitting + a +for God, for whom and through whom all things +11 +exist, to make the author + of their salvation per- +fect through suffering. +For both the One who +sanctifies and those who are sanctified are of the +same family. So Jesus is not ashamed to call them +brothers. + +He says: + +12 + +“I will proclaim Your name to My brothers; + + b +I will sing Your praises in the + +13 + +assembly.” + +And again: + + c + +“I will put My trust in Him.” + +And once again: + + d +“Here am I, and the children God has + +14 + +given Me.” + +Now since the children have flesh and blood, +He too shared in their humanity, so that by His +death He might destroy him who holds the +and free those +power of death, that is, the devil, +who all their lives were held in slavery by their +16 +fear of death. + +15 + +17 + +For surely it is not the angels He helps, but the +For this reason He +descendants of Abraham. +had to be made like His brothers in every way, so +that He might become a merciful and faithful +high priest in service to God, in order to make +Because + for the sins of the people. +atonement +He Himself suffered when He was tempted, He is +Jesus Our Apostle and High Priest +able to help those who are being tempted. + +18 + + e + +3 + +Therefore, holy brothers, who share in the +heavenly calling, set your focus on Jesus, the +He +apostle and high priest whom we confess. +was faithful to the One who appointed Him, just +3 +as Moses was faithful in all God’s house. + +2 + +f + +every house is built by someone, but God is the +5 +builder of everything. + +g + +6 +house, + +Now Moses was faithful as a servant in all God’s + testifying to what would be spoken later. + h +But Christ is faithful as the Son over God’s + +house. And we are His house, if we hold firmly +to our confidence and the hope of which we +Do Not Harden Your Hearts +boast. +(Psalm 95:1–11) + +7 + +Therefore, as the Holy Spirit says: + + 8 + +“Today, if you hear His voice, +do not harden your hearts, + +as you did in the rebellion, +9 + +in the day of testing in the + +wilderness, + +10 + +where your fathers tested and tried Me, +and for forty years saw My works. + +Therefore I was angry with that + +generation, + +and I said, + +‘Their hearts are always going astray, + +11 + +and they have not known My ways.’ + + i + +So I swore on oath in My anger, + +The Peril of Unbelief + +‘They shall never enter My rest.’ + +” + +12 + +13 + +See to it, brothers, that none of you has a +wicked heart of unbelief that turns away from +But exhort one another daily, as +the living God. +long as it is called today, so that none of you may +14 +be hardened by sin’s deceitfulness. + +We have come to share in Christ if we hold +15 +firmly to the end the assurance we had at first. + +As it has been said: + +“Today, if you hear His voice, +do not harden your hearts, + + j + +as you did in the rebellion.” + +16 + +17 + +For who were the ones who heard and re- +belled? Were they not all those Moses led out of +And with whom was God angry for +Egypt? +forty years? Was it not with those who sinned, +whose bodies fell in the wilderness? +And to +whom did He swear that they would never +enter His rest? Was it not to those who diso- +So we see that it was because of their +beyed? +unbelief that they were unable to enter. +c 13 + +to make pro- + +e 17 + +18 + +19 + +just as Moses in His house + +d 13 +g 5 + +; SBL + +j 15 + +Isaiah 8:17 + +Isaiah 8:18 +Numbers 12:7 + +NE, WH, BYZ, + +h 6 +Or + +For Jesus has been counted worthy of greater +glory than Moses, just as the builder of a house +And +has greater honor than the house itself. +a 10 +pitiation +Or + +just as Moses in all His house + +pioneer +f 2 + +founder + +b 12 + +Psalm 22:22 (see also LXX) + +4 + +i 11 + + or +to the end +Literally + +and TR include + +. + +Psalm 95:7–11 (see also LXX) + +Psalm 95:7–8 + + The Sabbath Rest +(Genesis 2:1–3 ; Exodus 16:22–30) + +4 + +2 + +Therefore, while the promise of entering His +rest still stands, let us be careful that none of +For we +you be deemed to have fallen short of it. +also received the good news just as they did; but +the message they heard was of no value to them, +since they did not share the faith of those who +3 +comprehended it. + +a + +Now we who have believed enter that rest. As + +for the others, it is just as God has said: + b + +“So I swore on oath in My anger, + +‘They shall never enter My rest.’ + +” + +4 +And yet His works have been finished since the +foundation of the world. +For somewhere He has +spoken about the seventh day in this manner: +“And on the seventh day God rested from all His +works.” +And again, as He says in the passage +6 +above: “They shall never enter My rest.” + +5 + + c + +7 + +Since, then, it remains for some to enter His +rest, and since those who formerly heard the +good news did not enter because of their disobe- +God again designated a certain day as +dience, +“Today,” when a long time later He spoke +through David as was just stated: “Today, if you +8 +hear His voice, do not harden your hearts.” +9 + + d + +10 + +For if Joshua had given them rest, God would +not have spoken later about another day. +There +remains, then, a Sabbath rest for the people of +For whoever enters God’s rest also rests +God. +11 +from his own work, just as God did from His. +Let us, therefore, make every effort to enter +that rest, so that no one will fall by following the +The Living Word (2 Timothy 3:10–17) +same pattern of disobedience. +12 + +13 + +For the word of God is living and active. +Sharper than any double-edged sword, it pierces +even to dividing soul and spirit, joints and mar- +row. It judges the thoughts and intentions of the +Nothing in all creation is hidden from +heart. +God’s sight; everything is uncovered and ex- +posed before the eyes of Him to whom we must +14 +give account. + +Hebrews 5:14 | 1077 + +16 + +to sympathize with our weaknesses, but we have +one who was tempted in every way that we are, +Let us then approach the +yet was without sin. +throne of grace with confidence, so that we may +receive mercy and find grace to help us in our +The Perfect High Priest +time of need. +(Psalm 110:1–7) + +5 + +2 + +Every high priest is appointed from among +men to represent them in matters relating to +He is +God, to offer gifts and sacrifices for sins. +able to deal gently with those who are ignorant +and misguided, since he himself is subject to +That is why he is obligated to offer +weakness. +sacrifices for his own sins, as well as for the sins +4 +of the people. + +3 + +5 + +No one takes this honor upon himself; he must +So also +be called by God, just as Aaron was. +Christ did not take upon Himself the glory of be- +coming a high priest, but He was called by the +One who said to Him: + + e + +6 + +“You are My Son; + +today I have become Your Father.” + +And in another passage God says: + f + +7 + +“You are a priest forever + +in the order of Melchizedek.” + +9 + +8 + +During the days of Jesus’ earthly life, He offered +up prayers and petitions with loud cries and +tears to the One who could save Him from death, +Alt- +and He was heard because of His reverence. +hough He was a Son, He learned obedience from +And having been made per- +what He suffered. +fect, He became the source of eternal salvation to +all who obey Him +and was designated by God +Milk and Solid Food +as high priest in the order of Melchizedek. +(1 Corinthians 3:1–9) + +10 + +11 + +12 + +We have much to say about this, but it is hard +Alt- +to explain, because you are dull of hearing. +hough by this time you ought to be teachers, you +need someone to reteach you the basic principles +13 +of God’s word. + + You need milk, not solid food! + +g + +Therefore, since we have a great high priest +who has passed through the heavens, Jesus the +15 +Son of God, let us hold firmly to what we profess. +For we do not have a high priest who is unable +a 2 +d 7 + +not having been united in the faith of those who heard + +today I have begotten You + +e 5 + +Literally +Psalm 95:7–8 + +Psalm 2:7; literally + +14 + +For everyone who lives on milk is still an +infant, inexperienced in the message of right- +eousness. +But solid food is for the mature, who +by constant use have trained their senses to dis- +tinguish good from evil. + +b 3 + +c 4 + +f 6 +Psalm 95:11; also in verse 5 + +g 12 + +of the oracles of God + +Genesis 2:2 + +Psalm 110:4 + +Or + + 1078 | Hebrews 6:1 + +A Call to Maturity + +6 + +b + +a + +Therefore let us leave the elementary teach- +ings about Christ and go on to maturity, not +laying again the foundation of repentance from +dead works, +instruction + and of faith in God, +about baptisms, + the laying on of hands, the res- +3 +urrection of the dead, and eternal judgment. +4 + +And this we will do, if God permits. + +2 + +5 + +6 + +It is impossible for those who have once been +enlightened, who have tasted the heavenly gift, +who have +who have shared in the Holy Spirit, +tasted the goodness of the word of God and the +and then have +powers of the coming age— +fallen away—to be restored to repentance, be- +cause they themselves are crucifying the Son of +God all over again and subjecting Him to open +7 +shame. + +For land that drinks in the rain often falling on +it and that produces a crop useful to those for +8 +whom it is tended receives the blessing of God. +But land that produces thorns and thistles is +worthless, and its curse is imminent. In the end it +9 +will be burned. + +10 + +Even though we speak like this, beloved, we are +convinced of better things in your case—things +For God is not un- +that accompany salvation. +just. He will not forget your work and the love +you have shown for His name as you have minis- +11 +tered to the saints and continue to do so. + +12 + +We want each of you to show this same dili- +gence to the very end, in order to make your +Then you will not be sluggish, but +hope sure. +will imitate those who through faith and patience +God’s Unchangeable Promise +inherit what has been promised. +13 + +14 + +When God made His promise to Abraham, +since He had no one greater to swear by, He +saying, “I will surely bless +swore by Himself, +And so +you and multiply your descendants.” +Abraham, after waiting patiently, obtained the +16 +promise. + +15 + + c + +17 + +Men swear by someone greater than them- +selves, and their oath serves as a confirmation to +So when God wanted to +end all argument. +make the unchanging nature of His purpose very +clear to the heirs of the promise, He guaranteed +Thus by two unchangeable +it with an oath. +a 1 +things in which it is impossible for God to lie, we + +from acts that lead to death + +cleansing rites + +b 2 + +18 + +who have fled to take hold of the hope set before +19 +us may be strongly encouraged. + +20 + +We have this hope as an anchor for the soul, +firm and secure. It enters the inner sanctuary be- +where Jesus our forerunner +hind the curtain, +has entered on our behalf. He has become a high +Melchizedek and Abraham +priest forever in the order of Melchizedek. +(Genesis 14:17–24) + +7 + +d + +2 + +This Melchizedek was king of Salem and + He met Abraham +priest of God Most High. +returning from the slaughter of the kings and +and Abraham apportioned to him +blessed him, +a tenth of everything. First, his name means “king +of righteousness.” Then also, “king of Salem” +Without father or +means “king of peace.” +mother or genealogy, without beginning of days +or end of life, like the Son of God, he remains a +4 +priest for all time. + +3 + +5 + +Consider how great Melchizedek was: Even the +patriarch Abraham gave him a tenth of the plun- +Now the law commands the sons of Levi +der. +who become priests to collect a tenth from the +people—that is, from their brothers—though +But Mel- +they too are descended from Abraham. +chizedek, who did not trace his descent from +Levi, collected a tenth from Abraham and blessed +And indisputably, +him who had the promises. +8 +the lesser is blessed by the greater. + +7 + +6 + +In the case of the Levites, mortal men collect the +9 +tenth; but in the case of Melchizedek, it is af- +And so to speak, Levi, +firmed that he lives on. +10 +who collects the tenth, paid the tenth through +For when Melchizedek met Abra- +Abraham. +A Superior Priesthood +ham, Levi was still in the loin of his ancestor. +11 + +Now if perfection could have been attained +through the Levitical priesthood (for on this ba- +sis the people received the law), why was there +still need for another priest to appear—one in +the order of Melchizedek and not in the order of +For when the priesthood is changed, +Aaron? +13 +the law must be changed as well. + +12 + +14 + +He of whom these things are said belonged to +a different tribe, from which no one has ever +For it is clear that our Lord +served at the altar. +descended from Judah, a tribe as to which Moses +said nothing about priests. + +d 1 + +c 14 + +Or + +Or + +Genesis 22:17 + +Genesis 14:18 + + 15 + +16 + +4 + +Hebrews 8:13 | 1079 + +And this point is even more clear if another +one who has +priest like Melchizedek appears, +become a priest not by a law of succession, but +For it is +by the power of an indestructible life. +testified: + +17 + + a + +“You are a priest forever + +18 + +in the order of Melchizedek.” + +19 + +So the former commandment is set aside be- +(for the law +cause it was weak and useless +made nothing perfect), and a better hope is intro- +20 +duced, by which we draw near to God. + +21 + +And none of this happened without an oath. +but +For others became priests without an oath, +Jesus became a priest with an oath by the One +who said to Him: + +“The Lord has sworn and will not change + + b + +22 + +His mind: + +‘You are a priest forever.’ + +” + +Because of this oath, Jesus has become the + +23 +guarantee of a better covenant. + +25 + +Now there have been many other priests, since +24 +death prevented them from continuing in office. +But because Jesus lives forever, He has a per- +manent priesthood. +Therefore He is able to + those who draw near to God +save completely +through Him, since He always lives to intercede +26 +for them. + + c + +27 + +Such a high priest truly befits us—One who is +holy, innocent, undefiled, set apart from sinners, +Unlike the +and exalted above the heavens. +other high priests, He does not need to offer daily +sacrifices, first for His own sins and then for the +sins of the people; He sacrificed for sin once for +For the law ap- +all when He offered up Himself. +points as high priests men who are weak; but the +oath, which came after the law, appointed the +Christ’s Eternal Priesthood +Son, who has been made perfect forever. + +28 + +8 + +2 + +The point of what we are saying is this: We +do have such a high priest, who sat down at +the right hand of the throne of the Majesty in +and who ministers in the sanctuary and +heaven, +3 +true tabernacle set up by the Lord, not by man. +And since every high priest is appointed to offer +both gifts and sacrifices, it was necessary for this +d 5 +c 25 +b 21 +a 17 +One also to have something to offer. +f 13 + +forever + +In saying new +Or + +5 + +Now if He were on earth, He would not be a +priest, since there are already priests who offer +The place where they +gifts according to the law. +serve is a copy and shadow of what is in heaven. +This is why Moses was warned when he was +about to build the tabernacle: “See to it that you +make everything according to the pattern shown +The New Covenant +you on the mountain.” +(Jeremiah 31:26–40) + + d + +6 + +Now, however, Jesus has received a much more +excellent ministry, just as the covenant He medi- +7 +ates is better and is founded on better promises. +For if that first covenant had been without fault, +8 +no place would have been sought for a second. +But God found fault with the people and said: + +“Behold, the days are coming, declares + +the Lord, + +when I will make a new covenant + +with the house of Israel +9 + +and with the house of Judah. + +It will not be like the covenant +I made with their fathers +when I took them by the hand + +to lead them out of the land of Egypt, + +because they did not abide by My + +covenant, + +and I disregarded them, + +declares the Lord. + +10 + +For this is the covenant I will make + +with the house of Israel + +after those days, + +declares the Lord. + +I will put My laws in their minds + +and inscribe them on their hearts. + +And I will be their God, + +11 + +and they will be My people. + +No longer will each one teach his neighbor + +or his brother, +saying, ‘Know the Lord,’ +because they will all know Me, + +12 + +from the least of them to the greatest. + + e + +For I will forgive their iniquities +f + +and will remember their sins no more.” + +13 + +By speaking of a new covenant, + + He has made +the first one obsolete; and what is obsolete and +aging will soon disappear. + +e 12 + +Psalm 110:4 +34 (see also LXX) +contained in the Greek. A broader interpretation could also include + +Psalm 110:4 +Literally + +; here and in Hebrews 9:1 and 18, + or + +priesthood + +Exodus 25:40; see also Exodus 26:30. + +Jeremiah 31:31– + is included for clarity but is not + +. + +covenant +tabernacle + + 1080 | Hebrews 9:1 + +The Earthly Tabernacle (Ex. 40 ; Acts 7:44–47) + +9 + + a + +2 + +c + +b + +3 + +4 + +Now the first covenant + had regulations for +worship and also an earthly sanctuary. +A +tabernacle was prepared. In its first room were +the lampstand, the table, and the consecrated +Behind + This was called the Holy Place. +bread. +the second curtain was a room called the Most +containing the golden altar of in- +Holy Place, +cense and the gold-covered ark of the covenant. +Inside the ark were the gold jar of manna, Aa- +ron’s staff that had budded, and the stone tablets +Above the ark were the cheru- +of the covenant. +bim of glory, overshadowing the mercy seat. + But +6 +we cannot discuss these things in detail now. + +5 + +d + +7 + +When everything had been prepared in this +way, the priests entered regularly into the first +But only +room to perform their sacred duties. +the high priest entered the second room, and +then only once a year, and never without blood, +which he offered for himself and for the sins the +8 +people had committed in ignorance. + + e + +By this arrangement the Holy Spirit was show- + had +ing that the way into the Most Holy Place +9 +not yet been disclosed as long as the first taber- +nacle was still standing. +It is an illustration for +the present time, because the gifts and sacrifices +10 +being offered were unable to cleanse the con- +science of the worshiper. +They consist only in +food and drink and special washings—external +Redemption through His Blood +regulations imposed until the time of reform. +11 + +f + +12 + +But when Christ came as high priest of the +good things that have come, + He went through +the greater and more perfect tabernacle that is +not made by hands and is not a part of this crea- +He did not enter by the blood of goats and +tion. +calves, but He entered the Most Holy Place once +for all by His own blood, thus securing eternal +13 +redemption. + +14 + +For if the blood of goats and bulls and the +ashes of a heifer sprinkled on those who are cer- +emonially unclean sanctify them so that their +bodies are clean, +how much more will the + g +blood of Christ, who through the eternal Spirit +offered Himself unblemished to God, purify our +consciences from works of death, so that we may +15 +serve the living God! + +the first + +Therefore Christ is the mediator of a new cov- +a 1 +enant, so that those who are called may receive +atonement cover +Lit. +diathēkē + +; also in v. 18; see the footnote for Heb. 8:13. + +the Holy Place +covenant + +e 8 + +b 2 +f 11 + +Or + + is also translated as + +; also in vv. 12, 25 + throughout this chapter. + +the promised eternal inheritance, now that He +has died to redeem them from the transgressions +16 +committed under the first covenant. + +h + +17 + +In the case of a will, + + it is necessary to establish +because a +the death of the one who made it, +will does not take effect until the one who made +it has died; it cannot be executed while he is still +18 +alive. + +19 +That is why even the first covenant was not put +For when Moses had +into effect without blood. +i +proclaimed every commandment of the law to all +the people, he took the blood of calves and goats, +along with water, scarlet wool, and hyssop, and +saying, +sprinkled the scroll and all the people, +“This is the blood of the covenant, which God has +21 +commanded you to keep.” + +20 + + j + +In the same way, he sprinkled with blood the +22 +tabernacle and all the vessels used in worship. +According to the law, in fact, nearly everything +must be purified with blood, and without the +23 +shedding of blood there is no forgiveness. + +24 + +So it was necessary for the copies of the heav- +enly things to be purified with these sacrifices, +but the heavenly things themselves with better +For Christ did not enter a +sacrifices than these. +man-made copy of the true sanctuary, but He en- +tered heaven itself, now to appear on our behalf +25 +in the presence of God. + +Nor did He enter heaven to offer Himself again +and again, as the high priest enters the Most Holy +26 +Place every year with blood that is not his own. +Otherwise, Christ would have had to suffer re- +peatedly since the foundation of the world. But +now He has appeared once for all at the end of the +27 +ages to do away with sin by the sacrifice of Himself. +28 +Just as man is appointed to die once, and after +so also Christ was of- +that to face judgment, +fered once to bear the sins of many; and He will +appear a second time, not to bear sin, but to bring +Christ’s Perfect Sacrifice (Psalm 40:1–17) +salvation to those who eagerly await Him. + +10 + +For the law is only a shadow of the good +things to come, not the realities them- +selves. It can never, by the same sacrifices +2 +offered year after year, make perfect those who +If it could, would not the +draw near to worship. +offerings have ceased? For the worshipers would +have been cleansed once for all, and would no +c 3 +longer have felt the guilt of their sins. +your +g 14 +Or +j 20 +and goats +BYZ, TR +. + +the Bread of the Presence +that are to come + +Greek +Exodus 24:8 + +SBL does not include + +Or +i 19 +BYZ, TR + +the Holy of Holies + +h 16 + +d 5 + +Or + + Hebrews 10:39 | 1081 + +us draw near with a sincere heart in full assur- +ance of faith, having our hearts sprinkled to +cleanse us from a guilty conscience and our bod- +23 +ies washed with pure water. + +24 + +Let us hold resolutely to the hope we profess, +for He who promised is faithful. +And let us con- +25 +sider how to spur one another on to love and +good deeds. +Let us not neglect meeting to- +gether, as some have made a habit, but let us +encourage one another, and all the more as you +26 +see the Day approaching. + +27 + +28 + +If we deliberately go on sinning after we have +received the knowledge of the truth, no further +sacrifice for sins remains, +but only a fearful ex- +pectation of judgment and of raging fire that will +consume all adversaries. +Anyone who rejected +the law of Moses died without mercy on the tes- +timony of two or three witnesses. +How much +more severely do you think one deserves to be +punished who has trampled on the Son of God, +profaned the blood of the covenant that sancti- +30 +fied him, and insulted the Spirit of grace? + f + +29 + +For we know Him who said, “Vengeance is +31 + and again, “The Lord will +It is a fearful thing to fall + + g +Mine; I will repay,” +judge His people.” +32 +into the hands of the living God. + +h + +Remember the early days that you were in the +33 +light. + In those days, you endured a great conflict +Sometimes you were +in the face of suffering. +publicly exposed to ridicule and persecution; at +other times you were partners with those who +You sympathized with those +were so treated. +in prison and joyfully accepted the confiscation +of your property, knowing that you yourselves +35 +had a better and permanent possession. + +34 + +36 + +So do not throw away your confidence; it holds +You need to persevere, so that +a great reward. +after you have done the will of God, you will re- +ceive what He has promised. + +For, + +37 + +“In just a little while, + +38 + +He who is coming will come and will + + i + +not delay. + +But My righteous one will live by faith; + + j + +39 + +and if he shrinks back, +I will take no pleasure in him.” + +3 + +4 + +Instead, those sacrifices are an annual reminder +because it is impossible for the blood of +Therefore, + +of sins, +bulls and goats to take away sins. +when Christ came into the world, He said: + +5 + +“Sacrifice and offering You did not desire, +6 + +but a body You prepared for Me. +In burnt offerings and sin offerings + +7 + +You took no delight. + +Then I said, ‘Here I am, it is written +about Me in the scroll: + + a + +I have come to do Your will, O God.’ + +” + +8 + +In the passage above He says, “Sacrifices and +offerings, burnt offerings and sin offerings You +did not desire, nor did You delight in them” (alt- +9 +hough they are offered according to the law). +Then He adds, “Here I am, I have come to do +Your will.” He takes away the first to establish the +And by that will, we have been sancti- +second. +fied through the sacrifice of the body of Jesus +11 +Christ once for all. + +10 + +12 + +Day after day every priest stands to minister +and to offer again and again the same sacrifices, +which can never take away sins. +But when this +Priest had offered for all time one sacrifice for +13 +sins, He sat down at the right hand of God. +Since that time, He waits for His enemies to be +made a footstool for His feet, +because by a +single offering He has made perfect for all time +15 +those who are being sanctified. + +14 + +The Holy Spirit also testifies to us about this. + +16 +First He says: + +“This is the covenant I will make with them +after those days, declares the Lord. + b + +17 + +I will put My laws in their hearts + +and inscribe them on their minds.” + +Then He adds: + + c + +18 + +“Their sins and lawless acts +I will remember no more.” + +And where these have been forgiven, an offer- + +A Call to Persevere (Jude 1:17–23) +ing for sin is no longer needed. +19 + + d + +20 + +Therefore, brothers, since we have confidence + by the blood of Je- +by the new and living way opened for us +and since we +c 17 +let + +to enter the Most Holy Place +sus, +through the curtain of His body, +b 16 +a 7 +have a great priest over the house of God, +f 30 +the veil that is His flesh +Psalm 40:6–8 (see also LXX) +ber when you were first enlightened. + +21 + +22 + +e + +But we are not of those who shrink back and +are destroyed, but of those who have faith and +through +the Holy Place +preserve their souls. +Remem- + +d 19 + +e 20 + +g 30 +Or +Jeremiah 31:34 +But the righteous will live by faith + +j 38 +Deuteronomy 32:36; Psalm 135:14 + +h 32 +Literally +Or + +Habakkuk 2:3–4 (see also LXX) + +i 38 + +Jeremiah 31:33 +Deuteronomy 32:35 (see also LXX) +BYZ and TR + + 1082 | Hebrews 11:1 + +Faith and Assurance (Gen. 1:1–2 ; John 1:1–5) + +11 + +do not see. +3 +commended. + +2 + +Now faith is the assurance of what we +hope for and the certainty of what we +This is why the ancients were + +By faith we understand that the universe was +formed at God’s command, so that what is seen +The Faith of Abel, Enoch, Noah (Genesis 4–9) +was not made out of what was visible. +4 + +By faith Abel offered God a better sacrifice than +Cain did. By faith he was commended as right- +eous when God gave approval to his gifts. And by +5 +faith he still speaks, even though he is dead. + + a + + b + +By faith Enoch was taken up + + so that he did not +see death: “He could not be found, because God + For before he was taken, +had taken him away.” +6 +he was commended as one who pleased God. + +And without faith it is impossible to please God. +For anyone who approaches Him must believe +that He exists and that He rewards those who +7 +earnestly seek Him. + +By faith Noah, when warned about things not +yet seen, in godly fear built an ark to save his +family. By faith he condemned the world and be- +came heir of the righteousness that comes by +The Faith of Abraham and Sarah +faith. +(Genesis 15–22 ; Romans 4:1–12) + +8 + +afar. And they acknowledged that they were +14 +strangers and exiles on the earth. + +15 + +Now those who say such things show that they +If they had +are seeking a country of their own. +16 +been thinking of the country they had left, they +Instead, +would have had opportunity to return. +they were longing for a better country, a heavenly +one. Therefore God is not ashamed to be called +17 +their God, for He has prepared a city for them. + +c + + d + +18 + +By faith Abraham, when he was tested, offered +up Isaac on the altar. He who had received the +promises was ready to offer his one and only +son, +even though God had said to him, +19 +“Through Isaac your offspring will be reck- +Abraham reasoned that God could +oned.” +raise the dead, and in a sense, he did receive +The Faith of Isaac, Jacob, and Joseph +Isaac back from death. +(Genesis 27–50) + +20 + +By faith Isaac blessed Jacob and Esau concern- + +21 +ing the future. + +By faith Jacob, when he was dying, blessed +each of Joseph’s sons and worshiped as he leaned +22 +on the top of his staff. + +By faith Joseph, when his end was near, spoke +about the exodus of the Israelites and gave in- +The Faith of Moses (Ex. 2–15 ; Acts 7:20–22) +structions about his bones. +23 + +By faith Abraham, when called to go to a place +he would later receive as his inheritance, obeyed +9 +and went, without knowing where he was going. +By faith he dwelt in the promised land as a +stranger in a foreign country. He lived in tents, as +did Isaac and Jacob, who were heirs with him of +For he was looking forward +the same promise. +to the city with foundations, whose architect and +11 +builder is God. + +10 + +By faith Sarah, even though she was barren +and beyond the proper age, was enabled to con- +12 +ceive a child, because she considered Him faith- +And so from one man, +ful who had promised. +and he as good as dead, came descendants as +numerous as the stars in the sky and as countless +13 +as the sand on the seashore. + +By faith Moses’ parents hid him for three +months after his birth, because they saw that he +was a beautiful child, and they were unafraid of +24 +the king’s edict. + +25 + +26 + +By faith Moses, when he was grown, refused to +He +be called the son of Pharaoh’s daughter. +chose to suffer oppression with God’s people ra- +ther than to experience the fleeting enjoyment of +He valued disgrace for Christ above the +sin. +treasures of Egypt, for he was looking ahead to +27 +his reward. + +28 + +By faith Moses left Egypt, not fearing the king’s +anger; he persevered because he saw Him who is +invisible. +By faith he kept the Passover and the +sprinkling of blood, so that the destroyer of the +29 +firstborn would not touch Israel’s own firstborn. + +All these people died in faith, without having +received the things they were promised. How- +a 5 +ever, they saw them and welcomed them from +e 29 + +made an attempt + +transferred + +translated + +b 5 + +e + +By faith the people passed through the Red Sea +as on dry land; but when the Egyptians tried to +c 17 +follow, + +only begotten son + they were drowned. + +unique son + +d 18 + +Lit. +Literally + + or + +Gen. 5:24 (see also LXX) + +Or + + or + +Gen. 21:12 + + The Faith of Many (Joshua–Malachi) + +30 + +By faith the walls of Jericho fell, after the peo- + +31 +ple had marched around them for seven days. + +By faith the prostitute Rahab, because she wel- +comed the spies in peace, did not perish with +32 +those who were disobedient. + +7 + +33 + +And what more shall I say? Time will not +allow me to tell of Gideon, Barak, Samson, Jeph- +thah, David, Samuel, and the prophets, +who +through faith conquered kingdoms, adminis- +tered justice, and gained what was promised; +who shut the mouths of lions, +quenched the +raging fire, and escaped the edge of the sword; +who gained strength from weakness, became +35 +mighty in battle, and put foreign armies to flight. + +34 + +36 + +Women received back their dead, raised to life +again. Others were tortured and refused their +release, so that they might gain a better resurrec- +tion. +Still others endured mocking and flog- +a +37 +ging, and even chains and imprisonment. + +38 + +They were stoned, they were sawed in two, +they were put to death by the sword. They went +around in sheepskins and goatskins, destitute, +oppressed, and mistreated. +The world was not +worthy of them. They wandered in deserts and +mountains, and hid in caves and holes in the +39 +ground. + +40 + +These were all commended for their faith, yet +God +they did not receive what was promised. +had planned something better for us, so that +A Call to Endurance (2 Timothy 2:1–13) +together with us they would be made perfect. + +12 + + b + +Therefore, since we are surrounded by +such a great cloud of witnesses, let us +throw off every encumbrance and the sin that so +2 +easily entangles, and let us run with endurance +Let us fix our eyes on Je- +the race set out for us. +sus, the author + and perfecter of our faith, who +for the joy set before Him endured the cross, +scorning its shame, and sat down at the right +Consider Him who +hand of the throne of God. +endured such hostility from sinners, so that you +God Disciplines His Sons +will not grow weary and lose heart. +4 + +3 + +Hebrews 12:21 | 1083 + +“My son, do not take lightly the discipline of + +the Lord, + +6 + +and do not lose heart when He + +rebukes you. + + c + +For the Lord disciplines the one He loves, + +and He chastises every son He receives.” + +8 + +9 + +Endure suffering as discipline; God is treating +you as sons. For what son is not disciplined by his +father? +If you do not experience discipline like +everyone else, then you are illegitimate children +and not true sons. +Furthermore, we have all had +earthly fathers who disciplined us, and we re- +spected them. Should we not much more submit +10 +to the Father of our spirits and live? + +11 + +Our fathers disciplined us for a short time as +they thought best, but God disciplines us for our +good, so that we may share in His holiness. +No +discipline seems enjoyable at the time, but pain- + d +ful. Later on, however, it yields a harvest of right- +eousness and peace + to those who have been +12 +trained by it. +e + +13 + +f + +Therefore strengthen your limp hands and +Make straight paths for your + so that the lame may not be disabled, but + +weak knees. +feet, +A Call to Holiness (1 Peter 1:13–21) +rather healed. +14 + + g + +Pursue peace with everyone, as well as holi- +15 +ness, without which no one will see the Lord. +See to it that no one falls short of the grace of +16 +God, and that no root of bitterness + springs up to +cause trouble and defile many. +See to it that no +one is sexually immoral, or is godless like Esau, +who for a single meal sold his birthright. +For +you know that afterward, when he wanted to in- +herit the blessing, he was rejected. He could find +no ground for repentance, though he sought the +An Unshakable Kingdom +blessing with tears. +(Exodus 20:18–21 ; Deuteronomy 5:22–33) + +17 + +18 + + h + +19 + +For you have not come to a mountain that can +be touched and that + is burning with fire; to +to a trumpet blast +darkness, gloom, and storm; +20 +or to a voice that made its hearers beg that no +further word be spoken. +For they could not +bear what was commanded: “If even an animal +touches the mountain, it must be stoned.” +The + j +sight was so terrifying that even Moses said, “I +and He flogs every son He receives +pioneer +am trembling with fear.” + +21 + + i + +f 13 +j 21 + +Lit. +Isaiah 35:3 +Exodus 19:12–13 + +; +Proverbs 4:26 (see +De. 9:19 + +In your struggle against sin, you have not yet +5 +resisted to the point of shedding your blood. +And you have forgotten the exhortation that ad- +b 2 +a 37 +dresses you as sons: + +they were put to the test, + +NE, WH, BYZ, TR include + +g 15 + +h 18 + +Prov. 3:11–12 (see also LXX) +also LXX) + +See De. 29:18 + +Or + +Literally + +d 11 + +founder +it yields the peaceful fruit of righteousness + or +Or +i 20 +to what can be touched and + +c 6 +e 12 + + 1084 | Hebrews 12:22 + +22 + +9 + +23 + +Instead, you have come to Mount Zion, to the +city of the living God, the heavenly Jerusalem. +You have come to myriads of angels +in joyful +assembly, to the congregation of the firstborn, +enrolled in heaven. You have come to God the +Judge of all, to the spirits of the righteous made +to Jesus the mediator of a new cove- +perfect, +nant, and to the sprinkled blood that speaks a +25 +better word than the blood of Abel. + +24 + +26 + +See to it that you do not refuse Him who +speaks. For if the people did not escape when +they refused Him who warned them on earth, +how much less will we escape if we reject Him +At that time His +who warns us from heaven? +voice shook the earth, but now He has promised, +“Once more I will shake not only the earth, but +The words “Once more” +heaven as well.” +signify the removal of what can be shaken—that +is, created things—so that the unshakable may +28 +remain. + +27 + + a + +29 + +Therefore, since we are receiving an unshaka- +ble kingdom, let us be filled with gratitude, and +so worship God acceptably with reverence and +Brotherly Love +awe. +“For our God is a consuming fire.” + + b + +2 + +Continue in brotherly love. +Do not ne- +glect to show hospitality to strangers, for +3 +by so doing some people have entertained angels +Remember those in prison +without knowing it. +as if you were bound with them, and those who +4 +are mistreated as if you were suffering with them. + +Marriage should be honored by all and the mar- +riage bed kept undefiled, for God will judge the +Christ’s Unchanging Nature +sexually immoral and adulterers. +5 + +Keep your lives free from the love of money and +be content with what you have, for God has said: + + c + +6 + +“Never will I leave you, + +never will I forsake you.” + +So we say with confidence: + + d + +7 + +“The Lord is my helper; I will not be afraid. + +What can man do to me?” + +8 + +Remember your leaders who spoke the word of +God to you. Consider the outcome of their way of +Jesus Christ is the +life and imitate their faith. +same yesterday and today and forever. +c 5 +a 26 +every good work +e 21 + +b 29 + +f 21 + +you + +13 + +Do not be carried away by all kinds of strange +teachings, for it is good for the heart to be +strengthened by grace and not by foods of no +value to those devoted to them. +We have an al- +tar from which those who serve at the tabernacle +11 +have no right to eat. + +10 + +12 + +Although the high priest brings the blood of +animals into the Holy Place as a sacrifice for sin, +the bodies are burned outside the camp. +And +13 +so Jesus also suffered outside the city gate, to +sanctify the people by His own blood. +There- +fore let us go to Him outside the camp, bearing +the disgrace He bore. +For here we do not have +a permanent city, but we are looking for the city +Sacrifice, Obedience, and Prayer +that is to come. +15 + +14 + +Through Jesus, therefore, let us continually of- +16 +fer to God a sacrifice of praise, the fruit of lips +that confess His name. +And do not neglect to do +good and to share with others, for with such sac- +17 +rifices God is pleased. + +Obey your leaders and submit to them, for they +watch over your souls as those who must give an +account. To this end, allow them to lead with joy +and not with grief, for that would be of no ad- +18 +vantage to you. + +19 + +Pray for us; we are convinced that we have a +clear conscience and desire to live honorably in +every way. +And I especially urge you to pray +Benediction and Farewell +that I may be restored to you soon. +20 + +21 + +Now may the God of peace, who through the +blood of the eternal covenant brought back from +the dead our Lord Jesus, that great Shepherd of +the sheep, + to +do His will. And may He accomplish in us + what +is pleasing in His sight through Jesus Christ, to +22 +whom be glory forever and ever. Amen. + +equip you with every good thing + + e + + f + +I urge you, brothers, to bear with my word of +exhortation, for I have only written to you +23 +briefly. + +Be aware that our brother Timothy has been +released. If he arrives soon, I will come with him +24 +to see you. + +Greet all your leaders and all the saints. + +25 +Those from Italy send you greetings. + +g + +Haggai 2:6 +BYZ and TR + +Deuteronomy 4:24 + +BYZ and TR + +Deuteronomy 31:6, 8; Joshua 1:5 +BYZ and TR include + +Psalm 118:6 (see also LXX) + +Grace be with all of you. + +d 6 +Amen. + +g 25 + + James + +16 +17 + +A Greeting from James (Jude 1:1–2) + +1 + +James, a servant of God and of the Lord Jesus +Christ, + + a + +To the twelve tribes of the Dispersion: +Rejoicing in Trials (Philippians 1:12–20) +Greetings. +2 + +3 + +4 + +Consider it pure joy, my brothers, when you en- +counter trials of many kinds, +because you know +that the testing of your faith develops persever- +ance. +Allow perseverance to finish its work, so +that you may be mature and complete, not lack- +5 +ing anything. + +6 + +Now if any of you lacks wisdom, he should ask +God, who gives generously to all without finding +fault, and it will be given to him. +But he must ask +in faith, without doubting, because he who +7 +doubts is like a wave of the sea, blown and tossed +8 +by the wind. +That man should not expect to +receive anything from the Lord. +He is a double- +9 +minded man, unstable in all his ways. + +10 + +The brother in humble circumstances should +exult in his high position. +But the one who is +11 +rich should exult in his low position, because he +will pass away like a flower of the field. +For the +sun rises with scorching heat and withers the +plant; its flower falls and its beauty is lost. So too, +the rich man will fade away in the midst of his +12 +pursuits. + +Blessed is the man who perseveres under trial, +because when he has stood the test, he will re- +ceive the crown of life that God has promised to +Good and Perfect Gifts +those who love Him. +13 + +15 + +14 + +When tempted, no one should say, “God is +tempting me.” For God cannot be tempted by evil, +But each one is +nor does He tempt anyone. +tempted when by his own evil desires he is lured +away and enticed. +Then after desire has con- +ceived, it gives birth to sin; and sin, when it is full- +To the twelve tribes in the Diaspora +a 1 +grown, gives birth to death. +the Diaspora +Literally +c 18 + +of His creatures. + +your synagogue + +d 2 + +b + +18 + +Do not be deceived, my beloved brothers. +Every good and perfect gift is from above, com- +ing down from the Father of the heavenly lights, +with whom there is no change or shifting +He chose to give us birth through the +shadow. +c +word of truth, that we would be a kind of +Hearing and Doing +firstfruits of His creation. +19 + +20 + +My beloved brothers, understand this: Every- +one should be quick to listen, slow to speak, and +for man’s anger does not bring +slow to anger, +21 +about the righteousness that God desires. +Therefore, get rid of all moral filth and every +expression of evil, and humbly accept the word +22 +planted in you, which can save your souls. + +23 + +Be doers of the word, and not hearers only. +Otherwise, you are deceiving yourselves. +For +anyone who hears the word but does not carry it +24 +out is like a man who looks at his face in a mirror, +and after observing himself goes away and im- +But the +mediately forgets what he looks like. +one who looks intently into the perfect law of +freedom, and continues to do so—not being a +forgetful hearer, but an effective doer—he will +26 +be blessed in what he does. + +25 + +27 + +If anyone considers himself religious and yet +does not bridle his tongue, he deceives his heart +and his religion is worthless. +Pure and unde- +filed religion before our God and Father is this: to +care for orphans and widows in their distress, +and to keep oneself from being polluted by the +A Warning against Favoritism +world. + +2 + +My brothers, as you hold out your faith in +our glorious Lord Jesus Christ, do not show + + d + +2 +favoritism. + +3 + +Suppose a man comes into your meeting + + wear- +ing a gold ring and fine clothes, and a poor man +If you lavish at- +in shabby clothes also comes in. +tention on the man in fine clothes and say, “Here +is a seat of honor,” but say to the poor man, “You + +no change or shadow of turning. + +b 17 + + is applied here to the Jewish believers scattered abroad. + +Or + +Or + +Greek + +. Originally referring to the Jewish people living outside the land of Israel, + + 1086 | James 2:4 + +4 + +have you not +must stand” or “Sit at my feet,” +discriminated among yourselves and become +5 +judges with evil thoughts? + +6 + +Listen, my beloved brothers: Has not God cho- +sen the poor of this world to be rich in faith and +to inherit the kingdom He promised those who +But you have dishonored the poor. Is +love Him? +it not the rich who oppress you and drag you into + a +court? +Are they not the ones who blaspheme +8 +the noble name by which you have been called? + +7 + + b + +9 + +If you really fulfill the royal law stated in Scrip- + you are +But if you show favoritism, you sin + +ture, “Love your neighbor as yourself,” +doing well. +10 +and are convicted by the law as transgressors. + +11 +Whoever keeps the whole law but stumbles at + c +For +just one point is guilty of breaking all of it. +He who said, “Do not commit adultery,” + also + If you do not commit +said, “Do not murder.” +adultery, but do commit murder, you have be- +12 +come a lawbreaker. + + d + +13 + +Speak and act as those who are going to be +For judg- +judged by the law that gives freedom. +ment without mercy will be shown to anyone +who has not been merciful. Mercy triumphs over +Faith and Works (Galatians 3:1–9) +judgment. +14 + +15 + +What good is it, my brothers, if someone +claims to have faith, but has no deeds? Can such +16 +Suppose a brother or sister is +faith save him? +If one of you +without clothes and daily food. +tells him, “Go in peace; stay warm and well fed,” +but does not provide for his physical needs, what +e +So too, faith by itself, if it does not +good is that? +18 +result in action, + is dead. + +17 + +But someone will say, “You have faith and I +have deeds.” Show me your faith without deeds, +f +You +and I will show you my faith by my deeds. + Good for you! Even the +believe that God is one. +20 +demons believe that—and shudder. + +19 + + g + +21 + +22 + +O foolish man, do you want evidence that faith +without deeds is worthless? +Was not our fa- +ther Abraham justified by what he did when he +You see that +offered his son Isaac on the altar? +his faith was working with his actions, and his +And the +faith was perfected by what he did. +the noble name invoked upon you +a 7 +Scripture was fulfilled that says, “Abraham +d 11 + +23 + +Or +there is one God +20:14; Deuteronomy 5:18 +Gehenna +l 11 + +g 20 + + or + +dead + +h 23 +Can both fresh and bitter +BYZ and TR + + h + +i +believed God, and it was credited to him as right- +24 +eousness,” + and he was called a friend of God. +As you can see, a man is justified by his deeds + +25 +and not by faith alone. + + j + +In the same way, was not even Rahab the pros- +titute justified by her actions when she wel- +26 + and sent them off on another +comed the spies +route? +As the body without the spirit is dead, +Taming the Tongue (Psalm 64:1–10) +so faith without deeds is dead. + +3 + +2 + +Not many of you should become teachers, +my brothers, because you know that we who +We all stum- +teach will be judged more strictly. +ble in many ways. If anyone is never at fault in +what he says, he is a perfect man, able to control +3 +his whole body. + +4 + +When we put bits into the mouths of horses to +make them obey us, we can guide the whole ani- +Consider ships as well. Although they are +mal. +so large and are driven by strong winds, they are +steered by a very small rudder wherever the +5 +pilot is inclined. + +6 + +In the same way, the tongue is a small part of +the body, but it boasts of great things. Consider +The +how small a spark sets a great forest ablaze. +tongue also is a fire, a world of wickedness +among the parts of the body. It pollutes the +whole person, sets the course of his life on fire, +7 +and is itself set on fire by hell. + +k + +8 + +All kinds of animals, birds, reptiles, and crea- +tures of the sea are being tamed and have been +tamed by man, +but no man can tame the tongue. +9 +It is a restless evil, full of deadly poison. + +10 + +With the tongue we bless our Lord and Father, +and with it we curse men, who have been made +in God’s likeness. +Out of the same mouth come + l +11 +blessing and cursing. My brothers, this should +not be! +My brothers, can a +flow from the same spring? +fig tree grow olives, or a grapevine bear figs? Nei- +The Wisdom from Above +ther can a salt spring +13 + +12 +Can both fresh water and salt water + + produce fresh water. + + m + +Who is wise and understanding among you? +Let him show it by his good conduct, by deeds +14 +done in the humility that comes from wisdom. +But if you harbor bitter jealousy and selfish +if it does not have works + +c 11 +f 19 + +e 17 + +b 8 + +i 23 + +j 25 + +Leviticus 19:18 +messengers + +that +Exodus +k 6 +Or + +the noble name of Him to whom you belong + +Exodus 20:13; Deuteronomy 5:17 + +Neither can salt + +Literally + +m 12 + +Genesis 15:6 + +See Isaiah 41:8. + +Literally + +Greek + +Literally + +Literally + + 15 + +ambition in your hearts, do not boast in it or deny +Such wisdom does not come from +the truth. +For +above, but is earthly, unspiritual, demonic. +where jealousy and selfish ambition exist, there +17 +will be disorder and every evil practice. + +16 + +But the wisdom from above is first of all pure, +then peace-loving, gentle, accommodating, full of +18 +mercy and good fruit, impartial, and sincere. +Peacemakers who sow in peace reap the fruit + +a + +A Warning against Pride +of righteousness. + +4 + + b + +2 + +What causes conflicts and quarrels among +you? Don’t they come from the passions at +You crave what you do not +war within you? +have; you kill and covet, but are unable to obtain +3 +it. You quarrel and fight. You do not have, be- +And when you do ask, +cause you do not ask. +you do not receive, because you ask with wrong +motives, that you may squander it on your +4 +pleasures. + + c + + d + +You adulteresses! + + Do you not know that +friendship with the world is hostility toward +God? Therefore, whoever chooses to be a friend +5 + an enemy of God. +of the world renders himself +Or do you think the Scripture says without rea- + He caused to dwell in us +But He gives us more grace. + +6 +son that the Spirit +yearns with envy? +This is why it says: + + e + + f + +“God opposes the proud, + +Drawing Near to God + +but gives grace to the humble.” + +7 + +8 + +9 + +Submit yourselves, then, to God. Resist the +Draw near to +devil, and he will flee from you. +God, and He will draw near to you. Cleanse your +hands, you sinners, and purify your hearts, you +Grieve, mourn, and weep. Turn +double-minded. +10 +your laughter to mourning, and your joy to +Humble yourselves before the Lord, +gloom. +11 +and He will exalt you. + +Brothers, do not slander one another. Anyone +who speaks against his brother or judges him +speaks against the law and judges it. And if you +12 +judge the law, you are not a practitioner of the +There is only one Law- +law, but a judge of it. +giver and Judge, the One who is able to save and +a 18 +destroy. But who are you to judge your neighbor? +your members? +g 7 + +for it until it receives the early and the late + +is appointed + +Literally + +d 4 + +c 4 + +James 5:11 | 1087 + +Do Not Boast about Tomorrow +(Proverbs 27:1) + +13 + +14 + +Come now, you who say, “Today or tomorrow +we will go to this or that city, spend a year there, +You do +carry on business, and make a profit.” +not even know what will happen tomorrow! +What is your life? You are a mist that appears for +15 +a little while and then vanishes. + +16 + +17 + +Instead, you ought to say, “If the Lord is will- +As it is, you +ing, we will live and do this or that.” +boast in your proud intentions. All such boasting +Anyone, then, who knows the right +is evil. +A Warning to the Rich +thing to do, yet fails to do it, is guilty of sin. +(Proverbs 23:1–5 ; 1 Timothy 6:17–19) + +5 + +2 + +3 + +Come now, you who are rich, weep and wail +Your +over the misery to come upon you. +riches have rotted and moths have eaten your +clothes. +Your gold and silver are corroded. +Their corrosion will testify against you and con- +sume your flesh like fire. +4 +You have hoarded treasure in the last days. +Look, the wages you withheld from the work- +men who mowed your fields are crying out +against you. The cries of the harvesters have +5 +reached the ears of the Lord of Hosts. + +6 + +You have lived on earth in luxury and self- +indulgence. You have fattened your hearts in the +You have condemned and +day of slaughter. +Patience in Suffering (Job 1:1–5) +murdered the righteous, who did not resist you. +7 + +g + +8 + +Be patient, then, brothers, until the Lord’s com- +ing. See how the farmer awaits the precious fruit +of the soil—how patient he is for the fall and +too, be patient and +spring rains. +strengthen your hearts, because the Lord’s com- +Do not complain about one another, +ing is near. +brothers, so that you will not be judged. Look, the +10 +Judge is standing at the door! + +You, + +9 + +11 + +Brothers, as an example of patience in afflic- +tion, take the prophets who spoke in the name of +See how blessed we consider those +the Lord. +who have persevered. You have heard of Job’s +perseverance and have seen the outcome from +the Lord. The Lord is full of compassion and +mercy. + +passions warring among + +b 1 + +But the fruit of righteousness is sown in peace by those making peace. + +e 5 + +the spirit + +f 6 + +Literally + +Literally + +See Hosea 3:1. + +Or + +Or + +Proverbs 3:34 (see also LXX) + + 1088 | James 5:12 + +12 + +16 + +Above all, my brothers, do not swear, not by +heaven or earth or by any other oath. Simply let +your “Yes” be yes, and your “No,” no, so that you +The Prayer of Faith +will not fall under judgment. + +13 + +14 + +Is any one of you suffering? He should pray. Is +Is any +anyone cheerful? He should sing praises. +one of you sick? He should call the elders of the +15 +church to pray over him and anoint him with oil +in the name of the Lord. +And the prayer offered +in faith will restore the one who is sick. The Lord +will raise him up. If he has sinned, he will be +forgiven. + +17 + +Therefore confess your sins to each other and +pray for each other so that you may be healed. +The prayer of a righteous man has great power +Elijah was a man just like us. He +to prevail. +prayed earnestly that it would not rain, and it did +18 +not rain on the land for three and a half years. +Again he prayed, and the heavens gave rain, + +Restoring a Sinner +and the earth yielded its crops. +19 + +My brothers, if one of you should wander from +20 +the truth and someone should bring him back, +consider this: Whoever turns a sinner from the +error of his way will save his soul from death and +cover over a multitude of sins. + + 1 Peter + +A Greeting from Peter (2 Peter 1:1–2) + +1 + +Peter, an apostle of Jesus Christ, + + a + +To the elect who are exiles of the Dispersion +2 +throughout Pontus, Galatia, Cappadocia, Asia, +according to the fore- +and Bithynia, chosen +knowledge of God the Father and sanctified by +the Spirit for obedience to Jesus Christ and sprin- +kling by His blood: + +A Living Hope +Grace and peace be yours in abundance. + +3 + + b + +4 + +Blessed be the God and Father of our Lord +Jesus Christ! By His great mercy He has given us + into a living hope through the resur- +new birth +and into +rection of Jesus Christ from the dead, +5 +an inheritance that is imperishable, undefiled, +who +and unfading, reserved in heaven for you, +through faith are shielded by God’s power for the +salvation that is ready to be revealed in the last +6 +time. + +7 + +In this you greatly rejoice, though now for a lit- +tle while you may have had to suffer grief in var- +so that the proven character of your +ious trials +faith—more precious than gold, which perishes +even though refined by fire—may result in +praise, glory, and honor at the revelation of Jesus +8 +Christ. + +9 + +Though you have not seen Him, you love Him; +and though you do not see Him now, you believe +in Him and rejoice with an inexpressible and glo- +now that you are receiving the goal of +rious joy, +10 +your faith, the salvation of your souls. + +Concerning this salvation, the prophets who +11 +foretold the grace to come to you searched and +trying to determine the +investigated carefully, +time and setting to which the Spirit of Christ in +them was pointing when He predicted the suffer- +12 +ings of Christ and the glories to follow. + +the things now announced by those who +preached the gospel to you by the Holy Spirit +sent from heaven. Even angels long to look into +A Call to Holiness (Hebrews 12:14–17) +these things. +13 + +c + +Therefore prepare your minds for action. + + Be +sober-minded. Set your hope fully on the grace to +14 +be given you at the revelation of Jesus Christ. +As obedient children, do not conform to the +But just as +passions of your former ignorance. + d +16 +He who called you is holy, so be holy in all you do, +17 +for it is written: “Be holy, because I am holy.” + +15 + +Since you call on a Father who judges each +one’s work impartially, conduct yourselves in +18 +reverent fear during your stay as foreigners. +For you know that it was not with perishable +things such as silver or gold that you were +redeemed from the empty way of life you +but with the +inherited from your forefathers, +precious blood of Christ, a lamb without blemish +He was known before the foundation +or spot. +of the world, but was revealed in the last times +21 +for your sake. + +19 + +20 + +Through Him you believe in God, who raised +Him from the dead and glorified Him; and so +The Enduring Word (Isaiah 40:6–8) +your faith and hope are in God. +22 + +e + +23 + +Since you have purified your souls by obedi- +ence to the truth so that you have a genuine love +for your brothers, love one another deeply, from +For you have been born again, +a pure heart. +not of perishable seed, but of imperishable, +24 +through the living and enduring word of God. + +For, + +“All flesh is like grass, + +and all its glory like the flowers of the + +25 + +field; + + f + +the grass withers and the flowers fall, + +but the word of the Lord stands forever.” + +It was revealed to them that they were not +a 1 +serving themselves, but you, when they foretold + +To the elect sojourners of the Diaspora of Pontus, Galatia, Cappadocia, Asia, and Bithynia +has caused us to be born again + +has begotten us again + +And this is the word that was proclaimed to you. + +Literally + +gird up the loins of your mind +located in what is now Turkey. + +b 3 +d 16 + +Or +Lev. 11:44–45; Lev. 19:2 + +e 22 + + or + +from the heart + +Wherefore +c 13 +. These provinces were + +f 25 +Literally + +SBL, NE, and WH + +Isaiah 40:6–8 + + 1090 | 1 Peter 2:1 + +The Living Stone and Chosen People +(Isa. 28:14–22 ; 1 Cor.3:10–15 ; Eph. 2:19–22) + +2 + +2 + +Rid yourselves, therefore, of all malice, de- +Like +ceit, hypocrisy, envy, and slander. +newborn babies, crave pure spiritual milk, so +3 +that by it you may grow up in your salvation, +4 +now that you have tasted that the Lord is good. + +As you come to Him, the living stone, rejected +5 +by men but chosen and precious in God’s sight, +you also, like living stones, are being built into a +spiritual house to be a holy priesthood, offering +spiritual sacrifices acceptable to God through Je- +sus Christ. +For it stands in Scripture: + +6 + +“See, I lay in Zion a stone, + +a chosen and precious cornerstone; + + a + +7 + +and the one who believes in Him +will never be put to shame.” + +To you who believe, then, this stone is precious. + +But to those who do not believe, + + b +“The stone the builders rejected +has become the cornerstone,” + +8 + +and, + + c + +“A stone of stumbling + +and a rock of offense.” + +They stumble because they disobey the word— +9 +and to this they were appointed. + +But you are a chosen people, a royal priesthood, +a holy nation, a people for God’s own possession, +to proclaim the virtues of Him who called you out +of darkness into His marvelous light. +Once you +were not a people, but now you are the people of +God; once you had not received mercy, but now +11 +you have received mercy. + +10 + +d + +12 + +Beloved, I urge you, as foreigners and exiles, to +abstain from the desires of the flesh, which war +against your soul. +Conduct yourselves with +such honor among the Gentiles that, though they +slander you as evildoers, they may see your good +Submission to Authorities (Romans 13:1–7) +deeds and glorify God on the day He visits us. +13 + +14 + +Submit yourselves for the Lord’s sake to every +human institution, whether to the king as the su- +preme authority, +or to governors as those sent +by him to punish those who do wrong and to +praise those who do right. +For it is God’s will +that by doing good you should silence the igno- +a 6 +rance of foolish men. +f 18 + +in all fear + +h 24 + +g 22 + +b 7 + +c 8 + +15 + +16 + +Live in freedom, but do not use your freedom +17 +as a cover-up for evil; live as servants of God. +e +Treat everyone with high regard: Love the + fear God, honor the + +brotherhood of believers, +18 +king. + +f + +19 + +20 + +Servants, submit yourselves to your masters +with all respect, + not only to those who are good +and gentle, but even to those who are unreason- +able. +For if anyone endures the pain of unjust +suffering because he is conscious of God, this is +How is it to your credit if +to be commended. +you are beaten for doing wrong and you endure +it? But if you suffer for doing good and you en- +Christ’s Example of Suffering (Isaiah 53:1–8) +dure it, this is commendable before God. +21 + +For to this you were called, because Christ also +suffered for you, leaving you an example, that +22 +you should follow in His footsteps: + + g + +23 + +“He committed no sin, + +and no deceit was found in His mouth.” + +When they heaped abuse on Him, + +He did not retaliate; + +when He suffered, He made no threats, + +24 + +but entrusted Himself to Him who judges + + h + +justly. + +He Himself bore our sins + +in His body on the tree, +so that we might die to sin + + i + +25 + +and live to righteousness. +“By His stripes you are healed.” + + j + +For “you were like sheep going astray,” + + but +now you have returned to the Shepherd and +Wives and Husbands +Overseer of your souls. +(Song of Solomon 1:1–17 ; Ephesians 5:22–33) + +3 + +Wives, in the same way, submit yourselves +to your husbands, so that even if they refuse +to believe the word, they will be won over with- +when +out words by the behavior of their wives +3 +they see your pure and reverent demeanor. + +2 + +4 + +Your beauty should not come from outward +adornment, such as braided hair or gold jewelry +but from the inner disposition of +or fine clothes, +your heart, the unfading beauty of a gentle and +For +quiet spirit, which is precious in God’s sight. +this is how the holy women of the past adorned +themselves. They put their hope in God and were +just as Sarah +submissive to their husbands, + +Love the brotherhood + +d 10 + +e 17 + +5 + +6 + +i 24 + +j 25 + +Isaiah 28:16 (see also LXX) +Or + +Isaiah 53:9 + +Psalm 118:22 + +Isaiah 8:14 + +Hosea 2:23 + +Literally + +Isaiah 53:4 (see also LXX) + +Isaiah 53:5 + +Isaiah 53:6 + + 4 + +1 Peter 4:13 | 1091 + + f + +21 +In the ark a few people, only eight souls, were +And this water symbol- +saved through water. +izes the baptism that now saves you also—not +the removal of dirt from the body, but the pledge + a clear conscience toward God—through the +of +who has gone into +resurrection of Jesus Christ, +heaven and is at the right hand of God, with an- +Living for God’s Glory +gels, authorities, and powers subject to Him. +(1 Corinthians 10:23–33) + +22 + + g + +2 + + in His +Therefore, since Christ suffered +body, arm yourselves with the same resolve, +because anyone who has suffered in his body is +Consequently, he does not live +done with sin. +out his remaining time on earth for human pas- +For you have spent +sions, but for the will of God. +enough time in the past carrying out the same de- +sires as the Gentiles: living in debauchery, lust, +drunkenness, orgies, carousing, and detestable +4 +idolatry. + +3 + +5 + +Because of this, they consider it strange of you +not to plunge with them into the same flood of +reckless indiscretion, and they heap abuse on +But they will have to give an account to +you. +6 +Him who is ready to judge the living and the +h +That is why the gospel was preached even +dead. +to those who are now dead, + so that they might +be judged as men in the flesh, but live according +7 +to God in the spirit. + +8 + +The end of all things is near. Therefore be clear- +minded and sober, so that you can pray. +Above +i +all, love one another deeply, because love covers +over a multitude of sins. +Show hospitality to +10 +one another without complaining. + +9 + +11 + +As good stewards of the manifold grace of God, +each of you should use whatever gift he has re- +ceived to serve one another. +If anyone speaks, +he should speak as one conveying the words of +God. If anyone serves, he should serve with the +strength God provides, so that in all things God +may be glorified through Jesus Christ, to whom +be the glory and the power forever and ever. +Suffering as Christians +Amen. +12 + +obeyed Abraham and called him lord. And you +are her children if you do what is right and refuse +7 +to give way to fear. + +Husbands, in the same way, treat your wives +with consideration as a delicate vessel, and with +honor as fellow heirs of the gracious gift of life, +Turning from Evil +so that your prayers will not be hindered. +8 + +9 + +Finally, all of you, be like-minded and sympa- +thetic, love as brothers, be tenderhearted and +humble. +Do not repay evil with evil or insult +with insult, but with blessing, because to this you +10 +were called so that you may inherit a blessing. + +For, + +“Whoever would love life +and see good days + +must keep his tongue from evil + +11 + +and his lips from deceitful speech. +He must turn from evil and do good; +he must seek peace and pursue it. + +12 + +For the eyes of the Lord are on the + +righteous, + +and His ears are inclined to their prayer. + a + +But the face of the Lord is against + +13 + +those who do evil.” + +Who can harm you if you are zealous for what + +Suffering for Righteousness +is good? +14 + + b + +15 + +But even if you should suffer for what is right, +you are blessed. “Do not fear what they fear; do +c +not be shaken.” +But in your hearts sanctify +Christ as Lord. + Always be prepared to give a de- +fense to everyone who asks you the reason for +the hope that is in you. But respond with gentle- +keeping a clear conscience, +ness and respect, +so that those who slander you may be put to +For it +shame by your good behavior in Christ. +is better, if it is God’s will, to suffer for doing good +18 +than for doing evil. + +16 + +17 + + d + + e + +19 + +20 + +For Christ also suffered + + for sins once for all, +the righteous for the unrighteous, to bring you to +God. He was put to death in the body but made +alive in the Spirit, + He also went and +in whom +who diso- +preached to the spirits in prison +beyed long ago when God waited patiently in the +a 12 +days of Noah while the ark was being built. +But sanctify the Lord God in your hearts. +Psalm 34:12–16 (see also LXX) +died +d 18 +i 8 +to those who are dead +NE and WH + +us +see Isaiah 8:13. + +Or +e 19 + +b 14 + +h 6 + +. + +Or + +See Proverbs 10:12 + +Beloved, do not be surprised at the fiery trial +that has come upon you, as though something +But rejoice +strange were happening to you. + +c 15 + +13 + +“Do not fear their threats; do not be shaken.” + +in the spirit, 19 in which + +f 21 + +appeal for + + Isaiah 8:12 +g 1 + +BYZ and TR +for + + This sentence may also be included with the quotation from the previous verse; +BYZ and TR include + +Or + +Or + + 1092 | 1 Peter 4:14 + +that you share in the sufferings of Christ, so that +you may be overjoyed at the revelation of His +14 +glory. + +a + +15 + +16 + +If you are insulted for the name of Christ, you + Spirit of glory and of +are blessed, because the +God rests on you. +Indeed, none of you should +suffer as a murderer or thief or wrongdoer, or +But if you suffer as a Chris- +even as a meddler. +17 +tian, do not be ashamed, but glorify God that you +bear that name. +For it is time for judgment to +begin with the family of God; and if it begins with +18 +us, what will the outcome be for those who diso- +bey the gospel of God? + +And, + +b + +“If it is hard for the righteous to be saved, + + c + +19 + +what will become of the ungodly and the + +sinner?” + +So then, those who suffer according to God’s +will should entrust their souls to their faithful +Instructions to Elders +Creator and continue to do good. +(1 Timothy 3:1–7 ; Titus 1:5–9) + +5 + + e + + d + +2 + + among you: + +As a fellow elder, a witness of Christ’s +sufferings, and a partaker of the glory to be +revealed, I appeal to the elders +Be +shepherds of God’s flock that is among you, + not out of compulsion, but +watching over them +willingly, as God would have you; + not out of +greed, but out of eagerness; +not lording it over +those entrusted to you, but being examples to the +And when the Chief Shepherd appears, +flock. +you will receive the crown of glory that will +never fade away. + +3 + +4 + + f + +Cast Your Cares on Him + +5 + +Young men, in the same way, submit yourselves +to your elders. And all of you, clothe yourselves +with humility toward one another, because, + + g + +6 + + “God opposes the proud, + +but gives grace to the humble.” + +7 + +Humble yourselves, therefore, under God’s +mighty hand, so that in due time He may exalt +Cast all your anxiety on Him, because He +you. +8 +cares for you. + +9 + +Be sober-minded and alert. Your adversary the +devil prowls around like a roaring lion, seeking +Resist him, standing firm in +someone to devour. +your faith and in the knowledge that your broth- +ers throughout the world are undergoing the +Benediction and Farewell +same kinds of suffering. +10 + +h + +And after you have suffered for a little while, +the God of all grace, who has called you to His +eternal glory in Christ, + will Himself restore you, +11 +secure you, strengthen you, and establish you. +12 +To Him be the power forever and ever. Amen. + +i + +Through Silvanus, + + whom I regard as a faithful +brother, I have written to you briefly, encourag- +ing you and testifying that this is the true grace +13 +of God. Stand firm in it. + +j + +The church in Babylon, + + chosen together with +14 +you, sends you greetings, as does my son Mark. + +Greet one another with a kiss of love. + +k + +Peace to all of you who are in Christ. + +a 14 +name +ders + +On their part He is spoken of as evil, but on your part He is glorified. + +b 16 + +glorify God in that + +glorify God in this matter + +BYZ and TR include +e 2 +; NA +h 10 + +in Christ Jesus +NE and WH do not include + +c 18 +watching over them + +f 2 +j 13 + +but willingly +SBL, NE, and WH + +k 14 + +She in Babylon + +i 12 + +Proverbs 11:31 (see also LXX) +. +That is, Silas + +WH, BYZ, and TR +Literally + +I appeal therefore to the el- +Literally +g 5 + +Proverbs 3:34 (see also + +Amen. + +BYZ and TR include + +d 1 + +LXX) + +BYZ and TR + + 2 Peter + +A Greeting from Peter +(1 Peter 1:1–2) + +1 + +Simon Peter, a servant and apostle of Jesus +Christ, + +To those who through the righteousness of our +God and Savior Jesus Christ have received a faith +2 +as precious as ours: + +Grace and peace be multiplied to you through + +Partakers of the Divine Nature +the knowledge of God and of Jesus our Lord. +3 + + a + +4 + +His divine power has given us everything we +need for life and godliness through the knowl- +edge of Him who called us by His own + glory and +Through these He has given us His +excellence. +precious and magnificent promises, so that +through them you may become partakers of the +divine nature, now that you have escaped the +5 +corruption in the world caused by evil desires. + +8 + +7 + +For this very reason, make every effort to add +6 +to your faith virtue; and to virtue, knowledge; +and to knowledge, self-control; and to self- +control, perseverance; and to perseverance, god- +and to godliness, brotherly kindness; +liness; +and to brotherly kindness, love. +For if you +possess these qualities and continue to grow in +them, they will keep you from being ineffective +and unproductive in your knowledge of our Lord +But whoever lacks these traits is +Jesus Christ. +nearsighted to the point of blindness, having for- +gotten that he has been cleansed from his past +10 +sins. + +9 + +11 + +Therefore, brothers, strive to make your call- +ing and election sure. For if you practice these +and you will re- +things you will never stumble, +ceive a lavish reception into the eternal kingdom +12 +of our Lord and Savior Jesus Christ. + +13 + +Therefore I will always remind you of these +things, even though you know them and are es- +tablished in the truth you now have. +I think it +b +is right to refresh your memory as long as I live +as long as I am in this tent +a 3 +because I know that +in the tent of my body, +d 4 + +b 13 +cast them into Tartarus +Literally + +to His own + +14 + +Or +Greek + +15 + +this tent will soon be laid aside, as our Lord Jesus +And I will make +Christ has made clear to me. +every effort to ensure that after my departure, +Eyewitnesses of His Majesty +you will be able to recall these things at all times. +(Matt. 17:1–13 ; Mark 9:1–13 ; Luke 9:28–36) + +16 + +17 + +For we did not follow cleverly devised fables +when we made known to you the power and +coming of our Lord Jesus Christ, but we were +For He received +eyewitnesses of His majesty. +honor and glory from God the Father when the +voice came to Him from the Majestic Glory, say- +ing, “This is My beloved Son, in whom I am well +And we ourselves heard this voice +pleased.” +from heaven when we were with Him on the holy +19 +mountain. + +18 + + c + +20 + +We also have the word of the prophets as con- +firmed beyond doubt. And you will do well to pay +attention to it, as to a lamp shining in a dark +place, until the day dawns and the morning star +Above all, you must un- +rises in your hearts. +derstand that no prophecy of Scripture comes +For no such +from one’s own interpretation. +prophecy was ever brought forth by the will of +man, but men spoke from God as they were car- +Deliverance from False Prophets +ried along by the Holy Spirit. +(Jude 1:3–16) + +21 + +2 + +2 + +Now there were also false prophets among +the people, just as there will be false teach- +ers among you. They will secretly introduce +destructive heresies, even denying the Master +who bought them—bringing swift destruction +Many will follow in their de- +on themselves. +pravity, and because of them the way of truth will +be defamed. +In their greed, these false teachers +will exploit you with deceptive words. The +longstanding verdict against them remains in +4 +force, and their destruction does not sleep. + +3 + +d + +For if God did not spare the angels when they +sinned, but cast them deep into hell, + placing +c 17 +them in chains of darkness to be held for + +Matthew 17:5; see also Mark 9:7 and Luke 9:35. + +; see the First Book of Enoch (1 Enoch 13:1–11 and 1 Enoch 20:1–4). + + 1094 | 2 Peter 2:5 + +5 + +a + +6 + +if He did not spare the ancient world +judgment; +when He brought the flood on its ungodly people, +but preserved Noah, a preacher of righteousness, +if He condemned the cities of +among the eight; +Sodom and Gomorrah to destruction, + reducing + b +7 +them to ashes as an example of what is coming +and if He rescued Lot, a right- +on the ungodly; +8 +eous man distressed by the depraved conduct of +the lawless +(for that righteous man, living +among them day after day, was tormented in his +righteous soul by the lawless deeds he saw and +if all this is so, then the Lord knows +heard)— +how to rescue the godly from trials and to hold +the unrighteous for punishment on the day of +10 +judgment. + +9 + +Such punishment is specially reserved for +those who indulge the corrupt desires of the +c +flesh and despise authority. Bold and self-willed, +11 +they are unafraid to slander glorious beings. + +Yet not even angels, though greater in strength +and power, dare to bring such slanderous +12 +charges against them before the Lord. + +These men are like irrational animals, crea- +tures of instinct, born to be captured and de- +stroyed. They blaspheme in matters they do not +understand, and like such creatures, they too will +The harm they will suffer is the +be destroyed. +wages of their wickedness. + +13 + +14 + +They consider it a pleasure to carouse in broad +daylight. They are blots and blemishes, reveling +Their +in their deception as they feast with you. +eyes are full of adultery; their desire for sin is +never satisfied; they seduce the unstable. They +are accursed children with hearts trained in +15 +greed. + +d + +16 + +They have left the straight way and wandered +off to follow the way of Balaam son of Beor, + who +But he was re- +loved the wages of wickedness. +buked for his transgression by a donkey, other- +wise without speech, that spoke with a man’s +17 +voice and restrained the prophet’s madness. + +18 + +These men are springs without water and +mists driven by a storm. Blackest darkness is re- +served for them. +With lofty but empty words, +they appeal to the sensual passions of the flesh +and entice those who are just escaping from +others who live in error. +They promise them +a 6 +freedom, while they themselves are slaves to +ties + +to destruction + +b 6 +e 20 + +d 15 + +19 + +depravity. For a man is a slave to whatever has +20 +mastered him. + +21 + +If indeed they have escaped the corruption of +e +the world through the knowledge of our Lord +and Savior Jesus Christ, + only to be entangled and +overcome by it again, their final condition is +worse than it was at first. +It would have been +better for them not to have known the way of +righteousness than to have known it and then to +turn away from the holy commandment passed +on to them. +Of them the proverbs are true: “A +dog returns to its vomit,” + and, “A sow that is +The Coming Judgment +washed goes back to her wallowing in the mud.” +(Genesis 7:1–24 ; Jude 1:17–23) + +22 + + f + +3 + +2 + +Beloved, this is now my second letter to you. +Both of them are reminders to stir you to +wholesome thinking +by recalling what was +foretold by the holy prophets and commanded +3 +by our Lord and Savior through your apostles. + +g + +4 + +Most importantly, you must understand that in +the last days scoffers will come, scoffing and fol- +lowing their own evil desires. +“Where is the +promise of His coming?” they will ask. “Ever +since our fathers fell asleep, everything contin- +5 +ues as it has from the beginning of creation.” + + h + +7 + +through which + +But they deliberately overlook the fact that long +ago by God’s word the heavens existed and the +6 +earth was formed out of water and by water, + the world of that time perished +And by that same word, the present +in the flood. +heavens and earth are reserved for fire, being +kept for the day of judgment and destruction of +The Day of the Lord +ungodly men. +(Zeph. 1:7–18 ; Mal. 4:1–6 ; 1 Thess. 5:1–11) + +8 + +i + +9 + +Beloved, do not let this one thing escape your +notice: With the Lord a day is like a thousand +years, and a thousand years are like a day. +The +Lord is not slow in keeping His promise as some +understand slowness, but is patient with you, not +wanting anyone to perish but everyone to come +10 +to repentance. + +But the Day of the Lord will come like a thief. +  j +The heavens will disappear with a roar, the ele- + by fire, and the earth +ments will be destroyed +to blaspheme angelic majes- +and its works will be laid bare. + +c 10 + +k + +on future generations of the ungodly + +WH does not include +h 6 + +NA, SBL, BYZ, and TR + +through whom +will be burned up + +found +Jude 1:18. + +NA + +Bosor +. +i 8 + +Or +SBL and WH +See Psalm 90:4. + +the Lord and Savior Jesus Christ +j 10 +will be found +Or + +dissolved + +will be unable to hide + +f 22 +Or + +. BYZ and TR + +; SBL, NE, and WH + +, i.e., + +. + +; also in verses 11 and 12. + +Or + +k 10 +Proverbs 26:11 + +g 3 +will not be +See + + 11 + +Since everything will be destroyed in this way, +what kind of people ought you to be? You ought +12 +to conduct yourselves in holiness and godliness +as you anticipate and hasten the coming of the +day of God, when the heavens will be destroyed +13 +by fire and the elements will melt in the heat. +But in keeping with God’s promise, we are +looking forward to a new heaven and a new +Final Exhortations +earth, where righteousness dwells. +14 + +Therefore, beloved, as you anticipate these +things, make every effort to be found at peace— +15 +spotless and blameless in His sight. + +a + +2 Peter 3:18 | 1095 + +16 + +b + +He +wrote you with the wisdom God gave him. +writes this way in all his letters, + speaking in +them about such matters. Some parts of his let- +c +ters are hard to understand, which ignorant and + as they do the rest of +unstable people distort, +17 +the Scriptures, to their own destruction. + +Therefore, beloved, since you already know +these things, be on your guard so that you will +not be carried away by the error of the lawless +and fall from your secure standing. +But grow +in the grace and knowledge of our Lord and Sav- +ior Jesus Christ. To Him be the glory both now +and to the day of eternity. + +18 + +d + +Consider also that our Lord’s patience brings +salvation, just as our beloved brother Paul also + +Amen. + +a 14 +d 18 + +to be found by Him in peace, without spot and without blemish. +Amen. + +b 16 + +in all the letters + +c 16 + +will distort + +Or +NE, WH, and NA do not include + +Or + +NA + + 1 John + +5 + +The Word of Life +(Luke 24:36–49 ; John 20:19–23) + +1 + +2 + +That which was from the beginning, which +we have heard, which we have seen with our +own eyes, which we have gazed upon and +touched with our own hands—this is the Word +And this is the life that was revealed; we +of life. +have seen it and testified to it, and we proclaim +to you the eternal life that was with the Father +3 +and was revealed to us. + +We proclaim to you what we have seen and +heard, so that you also may have fellowship with +us. And this fellowship of ours is with the Father +and with His Son, Jesus Christ. +We write these +Walking in the Light (John 8:12–29) +things so that our +5 + + joy may be complete. + +4 + + a + +6 + +And this is the message we have heard from +Him and announce to you: God is light, and in +Him there is no darkness at all. +If we say we + b +7 +have fellowship with Him yet walk in the dark- +ness, we lie and do not practice the truth. +But +if we walk in the light as He is in the light, we +have fellowship with one another, and the blood +8 +of Jesus His Son cleanses us from all sin. + +9 +If we say we have no sin, we deceive ourselves, +and the truth is not in us. +If we confess our sins, +He is faithful and just to forgive us our sins and +If we +to cleanse us from all unrighteousness. +say we have not sinned, we make Him out to be a +Jesus Our Advocate +liar, and His word is not in us. + +10 + +2 + +My little children, I am writing these things +to you so that you will not sin. But if anyone +does sin, we have an advocate before the Fa- + c +He Him- +ther—Jesus Christ, the Righteous One. +self is the atoning sacrifice + for our sins, and not +only for ours but also for the sins of the whole +3 +world. + +2 + +4 + +By this we can be sure that we have come to +If +know Him: if we keep His commandments. +anyone says, “I know Him,” but does not keep His +a 4 +commandments, he is a liar, and the truth is not + +your + +But + +b 7 + +c 2 + +But if anyone keeps His word, the love of +in him. +6 +God has been truly perfected in him. By this we +Whoever claims to +know that we are in Him: +A New Commandment +abide in Him must walk as Jesus walked. +7 + +8 + +Beloved, I am not writing to you a new com- +mandment, but an old one, which you have had +from the beginning. This commandment is the +message you have heard. +Then again, I am also +writing to you a new commandment, which is +true in Him and also in you. For the darkness is +9 +fading and the true light is already shining. + +10 + +If anyone claims to be in the light but hates his +Whoever +brother, he is still in the darkness. +loves his brother remains in the light, and there +is no cause of stumbling in him. +But whoever +hates his brother is in the darkness and walks in +the darkness. He does not know where he is go- +12 +ing, because the darkness has blinded his eyes. + +11 + +I am writing to you, little children, because +13 +your sins have been forgiven through His name. + +I am writing to you, fathers, because you know + +Him who is from the beginning. + +d + +I am writing to you, young men, because you +have overcome the evil one. + +I have written to you, children, because you +14 +know the Father. + +I have written to you, fathers, because you + +know Him who is from the beginning. + +I have written to you, young men, because you +are strong, and the word of God abides in you, +Do Not Love the World +and you have overcome the evil one. +15 + +16 + +Do not love the world or anything in the world. +If anyone loves the world, the love of the Father +For all that is in the world—the +is not in him. +desires of the flesh, the desires of the eyes, and +17 +the pride of life—is not from the Father but from +The world is passing away, along +the world. +with its desires; but whoever does the will of God +d 13 +remains forever. + +you have overcome evil + +the propitiation + +BYZ and TR + +NA does not include + +. + +Or + +Or + +; also in v. 14 + + Beware of Antichrists + +4 + +1 John 3:22 | 1097 + +18 + +Children, it is the last hour; and just as you +have heard that the antichrist is coming, so now +19 +many antichrists have appeared. This is how we +know it is the last hour. +They went out from us, +but they did not belong to us. For if they had be- +longed to us, they would have remained with us. +But their departure made it clear that none of +20 +them belonged to us. + +a + +21 + +22 + +You, however, have an anointing from the Holy +One, and all of you know the truth. +I have not +written to you because you lack knowledge of the +truth, but because you have it, and because no lie +Who is the liar, if it is not +comes from the truth. +the one who denies that Jesus is the Christ? This +is the antichrist, who denies the Father and the +Son. +Whoever denies the Son does not have +the Father, but whoever confesses the Son has +Remain in Christ +the Father as well. +24 + +23 + +As for you, let what you have heard from the +beginning remain in you. If it does, you will also +remain in the Son and in the Father. +And this is +the promise that He Himself made to us: eternal +26 +life. + +25 + +27 + +I have written these things to you about those +who are trying to deceive you. +And as for you, +the anointing you received from Him remains in +you, and you do not need anyone to teach you. +But just as His true and genuine anointing +teaches you about all things, so remain in Him as +28 +you have been taught. + +b + +And now, little children, remain in Christ, + so +that when He appears, we may be confident and +29 +unashamed before Him at His coming. + +If you know that He is righteous, you also +know that everyone who practices righteousness +Children of God +has been born of Him. + +3 + +Behold what manner of love the Father has +given to us, that we should be called children +of God. And that is what we are! The reason the +2 +world does not know us is that it did not know +Beloved, we are now children of God, and +Him. +what we will be has not yet been revealed. We +3 + we will be like +know that when Christ appears, +And everyone +Him, for we will see Him as He is. +who has this hope in Him purifies himself, just as +a 20 +Christ is pure. +d 3 +BYZ and TR + +and you know all things + +is violation of the Law + +just as He is pure + +Literally + +b 28 + +e 4 + +d + +c + +Literally + +Or + +NA + +e + +5 + +Everyone who practices sin practices lawless- +ness as well. Indeed, sin is lawlessness. +But you +6 +know that Christ appeared to take away sins, and +in Him there is no sin. +No one who remains in +Him keeps on sinning. No one who continues to +f +7 +sin has seen Him or known Him. + +g + +8 + +Little children, + + let no one deceive you: The one +who practices righteousness is righteous, just as +Christ is righteous. +The one who practices sin +is of the devil, because the devil has been sinning +from the very start. This is why the Son of God +9 +was revealed, to destroy the works of the devil. + +10 + +Anyone born of God refuses to practice sin, be- +cause God’s seed abides in him; he cannot go on +By +sinning, because he has been born of God. +this the children of God are distinguished from +the children of the devil: Anyone who does not +practice righteousness is not of God, nor is any- +Love One Another +one who does not love his brother. +(John 13:31–35 ; Romans 12:9–13) + +11 + +12 + +This is the message you have heard from the +Do not +beginning: We should love one another. +be like Cain, who belonged to the evil one and +murdered his brother. And why did Cain slay +him? Because his own deeds were evil, while +So do not +those of his brother were righteous. +14 +be surprised, brothers, if the world hates you. + +13 + +15 + +We know that we have passed from death to +life, because we love our brothers. The one who +Everyone who +does not love remains in death. +hates his brother is a murderer, and you know +16 +that eternal life does not reside in a murderer. + +17 + +By this we know what love is: Jesus laid down +His life for us, and we ought to lay down our lives +for our brothers. +If anyone with earthly pos- +sessions sees his brother in need, but withholds +his compassion from him, how can the love of +18 +God abide in him? + +19 + +Little children, let us love not in word and +speech, but in action and truth. +And by this we +will know that we belong to the truth, and will +Even if our +assure our hearts in His presence: +hearts condemn us, God is greater than our +21 +hearts, and He knows all things. +22 + +20 + +Beloved, if our hearts do not condemn us, we +and we will re- +have confidence before God, +when it appears +when He appears +ceive from Him whatever we ask, because we +He is righteous + +g 7 + +c 2 + +f 7 + +remain in Him + +Young children in training +Literally + + or +Literally + + 1098 | 1 John 3:23 + +15 + +23 + +16 + +24 + +keep His commandments and do what is pleasing +And this is His commandment: +in His sight. +that we should believe in the name of His Son, Je- +sus Christ, and we should love one another just +Whoever keeps His com- +as He commanded us. +mandments remains in God, and God in him. And +by this we know that He remains in us: by the +Testing the Spirits +Spirit He has given us. + +If anyone confesses that Jesus is the Son of +God, God abides in him, and he in God. +And we +have come to know and believe the love that God +has for us. God is love; whoever abides in love +In this way, love +abides in God, and God in him. +has been perfected among us, so that we may +have confidence on the day of judgment; for in +18 +this world we are just like Him. + +17 + +4 + +2 + +Beloved, do not believe every spirit, but test +the spirits to see whether they are from God. +For many false prophets have gone out into the +By this you will know the Spirit of God: +world. +Every spirit that confesses that Jesus Christ has +and every spirit +come in the flesh is from God, + is not from God. This +that does not confess Jesus +is the spirit of the antichrist, which you have +heard is coming and which is already in the +4 +world at this time. + +3 + + a + +5 + +You, little children, are from God and have over- +come them, because greater is He who is in you +They are of the +than he who is in the world. +world. That is why they speak from the world’s +We +perspective, and the world listens to them. +are from God. Whoever knows God listens to us; +whoever is not from God does not listen to us. + of truth and the +That is how we know the Spirit +Love Comes from God +spirit of deception. +7 + +6 + + b + +8 + +Beloved, let us love one another, because love +comes from God. Everyone who loves has been +Whoever does not +born of God and knows God. +9 +love does not know God, because God is love. + + c +This is how God’s love was revealed among us: +God sent His one and only + Son into the world, so +And love con- +that we might live through Him. +sists in this: not that we loved God, but that He +loved us and sent His Son as the atoning sacri- +11 +fice + + for our sins. + +10 + + d + +12 + +13 + +14 + +Beloved, if God so loved us, we also ought to +No one has ever seen God; +love one another. +but if we love one another, God remains in us, +and His love is perfected in us. +By this we know +that we remain in Him, and He in us: He has given +And we have seen and testify +us of His Spirit. +that the Father has sent His Son to be the Savior +a 3 +of the world. +We love Him +tiation +e 19 +BYZ and TR +been begotten from Him. +g 7 +three are one. 8 And there are three that testify on earth: + +that Jesus Christ has come in the flesh + +BYZ and TR + +b 6 + +f 1 + +TR and GOC + +There is no fear in love, but perfect love drives +out fear, because fear involves punishment. The +19 +one who fears has not been perfected in love. +20 + because He first loved us. + +We love + + e + +If anyone says, “I love God,” but hates his +brother, he is a liar. For anyone who does not +love his brother, whom he has seen, cannot love +And we have this +God, whom he has not seen. +commandment from Him: Whoever loves God +Overcoming the World +must love his brother as well. + +21 + +5 + +3 + +2 + +Everyone who believes that Jesus is the +Christ has been born of God, and everyone +f +who loves the Father also loves those born of +Him. +By this we know that we love the children +of God: when we love God and keep His com- +For this is the love of God, that we +mandments. +keep His commandments. And His command- +ments are not burdensome, +because everyone +born of God overcomes the world. And this is the +5 +victory that has overcome the world: our faith. + +4 + +6 + +Who then overcomes the world? Only he who +believes that Jesus is the Son of God. +This is the +One who came by water and blood, Jesus +Christ—not by water alone, but by water and +blood. And it is the Spirit who testifies to this, be- +For there are three +cause the Spirit is the truth. +that testify: +the Spirit, the water, and the +God’s Testimony about His Son +blood—and these three are in agreement. +9 + +8 + +7 + + g + +10 + +Even if we accept human testimony, the testi- +mony of God is greater. For this is the testimony +Whoever be- +that God has given about His Son. +lieves in the Son of God has this testimony within +him; whoever does not believe God has made +Him out to be a liar, because he has not believed +in the testimony that God has given about His +Son. + +only begotten + +as a propi- + +unique + +d 10 + +c 9 + +spirit + +and everyone loving the One having begotten also loves the one having +three that testify in heaven: The Father, the Word, and the Holy Spirit; and these +Literally + + or + +Or + +Or + +Or + + 11 + +12 + +17 + +And this is that testimony: God has given us +Whoever +eternal life, and this life is in His Son. +has the Son has life; whoever does not have the +Effective Prayer +Son of God does not have life. +13 + +a sin that leads to death; I am not saying he +All unrighteous- +should ask regarding that sin. +ness is sin, yet there is sin that does not lead to +The True God +death. +18 + +1 John 5:21 | 1099 + +a + +14 + +I have written these things to you who believe +in the name of the Son of God, so that you may +And this is the +know that you have eternal life. +confidence that we have before Him: If we ask +15 +anything according to His will, He hears us. +And if we know that He hears us in whatever +we ask, we know that we already possess what +16 +we have asked of Him. + +If anyone sees his brother committing a sin not +leading to death, he should ask God, who will give +life to those who commit this kind of sin. There is + + c + +b + +We know that anyone born of God does not +keep on sinning; the One who was born of God +19 +protects him, + cannot touch + and the evil one +We know that we are of God, and that the +him. +20 +whole world is under the power of the evil one. +And we know that the Son of God has come and +has given us understanding, so that we may +know Him who is true; and we are in Him who is +true—in His Son Jesus Christ. He is the true God +21 +and eternal life. + +d + +Little children, keep yourselves from idols. + +a 13 +tects himself + +BYZ and TR include + or + +and that you may believe in the name of the Son of God + +b 18 + +the one who was born of God pro- + +God protects the one born of Him + +c 18 + +evil + +. + +d 21 +Or + +Amen. + +Or + +; similarly in verse 19 + +BYZ and TR include + + 2 John + +A Greeting from the Elder +(3 John 1:1–4) + +Beware of Deceivers + +7 + +1 + +The elder, + +2 + +To the chosen lady and her children, whom I love +in the truth—and not I alone, but also all who +because of the truth that +know the truth— +3 +abides in us and will be with us forever: + +Grace, mercy, and peace from God the Father +and from Jesus Christ, the Son of the Father, will +Walking in the Truth +be with us in truth and love. +(John 8:30–47) + +4 + +5 + +6 + +I was overjoyed to find some of your children +walking in the truth, just as the Father has com- +And now I urge you, dear lady—not +manded us. +as a new commandment to you, but one we have +had from the beginning—that we love one an- +And this is love, that we walk according +other. +to His commandments. This is the very com- +mandment you have heard from the beginning, +that you must walk in love. + +8 + +For many deceivers have gone out into the +world, refusing to confess the coming of Jesus +Christ in the flesh. Any such person is the de- +a +Watch yourselves, so +ceiver and the antichrist. +that you do not lose what we have worked for, +Anyone +but that you may be fully rewarded. +who runs ahead without remaining in the teach- +ing of Christ does not have God. Whoever re- +mains in His teaching has both the Father and the +10 +Son. + +9 + +11 + +If anyone comes to you but does not bring this +teaching, do not receive him into your home or +even greet him. +Whoever greets such a person +Conclusion (3 John 1:13–14) +shares in his evil deeds. +12 + +I have many things to write to you, but I would +prefer not to do so with paper and ink. Instead, I + so +hope to come and speak with you face to face, +13 +that our joy may be complete. + +b + +c + +The children of your elect sister send you + +greetings. + +a 8 + +what you have worked for + +b 12 + +mouth to mouth + +c 13 + +Amen. + +NE and WH + +Literally + +BYZ and TR include + + 3 John + +A Greeting from the Elder (2 John 1:1–3) + +1 + +The elder, + +2 +To the beloved Gaius, whom I love in the truth: + +3 + +Beloved, I pray that in every way you may pros- +per and enjoy good health, as your soul also pros- +pers. +For I was overjoyed when the brothers +came and testified about your devotion to the +I have no +truth, in which you continue to walk. +greater joy than to hear that my children are +Gaius Commended for Hospitality +walking in the truth. +5 + +4 + +6 + +Beloved, you are faithful in what you are doing +for the brothers, and especially since they are +strangers to you. +They have testified to the +church about your love. You will do well to send +7 +them on their way in a manner worthy of God. +For they went out on behalf of the Name, ac- +Therefore we +cepting nothing from the Gentiles. +ought to support such men, so that we may be fel- +Diotrephes and Demetrius +low workers for the truth. +9 + +8 + +a + +10 + +Diotrephes, who loves to be first, will not accept +So if I come, I will call attention +our instruction. +to his malicious slander against us. And unsatis- +fied with that, he refuses to welcome the broth- +ers and forbids those who want to do so, even +11 +putting them out of the church. + +Beloved, do not imitate what is evil, but what +is good. The one who does good is of God; the one +12 +who does evil has not seen God. + +Demetrius has received a good testimony from +everyone, and from the truth itself. We also tes- +tify for him, and you know that our testimony is +Conclusion +true. +(2 John 1:12–13) + +13 + +14 + +b + +I have many things to write to you, but I would +Instead, I +prefer not to do so with pen and ink. +hope to see you soon and speak with you face to +face. + +Peace to you. + +The friends here send you greetings. + +I have written to the church about this, + + but + +Greet each of our friends there by name. + +a 9 + +I have written something to the church + +b 14 + +and we will speak mouth to mouth + +Literally + +begin a new verse (15) after + +face to face. + +Literally + +; some translators + + Jude + +A Greeting from Jude (James 1:1) + +1 + +Jude, a servant of Jesus Christ and a brother of + +James, + +To those who are called, loved by God the Father, +2 +and kept in Jesus Christ: +God’s Judgment on the Ungodly (2 Pet. 3:1–7) +Mercy, peace, and love be multiplied to you. + +3 + +4 + +Beloved, although I made every effort to write +to you about the salvation we share, I felt it nec- +essary to write and urge you to contend ear- +nestly for the faith entrusted once for all to the +For certain men have crept in among you +saints. +unnoticed—ungodly ones who were designated +long ago for condemnation. They turn the grace +of our God into a license for immorality, and they +5 +deny our only Master and Lord, Jesus Christ. + + a + +Although you are fully aware of this, I want to +remind you that after Jesus + had delivered His +6 +people out of the land of Egypt, He destroyed +And the angels who +those who did not believe. +did not stay within their own domain but aban- +doned their proper dwelling—these He has kept +7 +in eternal chains under darkness, bound for judg- +In like manner, Sodom +ment on that great day. +and Gomorrah and the cities around them, who +indulged in sexual immorality and pursued +strange flesh, are on display as an example of +8 +those who sustain the punishment of eternal fire. + +9 + +Yet in the same way these dreamers defile their +bodies, reject authority, and slander glorious be- +But even the archangel Michael, when he +ings. +disputed with the devil over the body of Moses, + b +did not presume to bring a slanderous charge +10 +against him, but said, “The Lord rebuke you!” + +These men, however, slander what they do not +understand, and like irrational animals, they will +11 +be destroyed by the things they do instinctively. +Woe to them! They have traveled the path of +Cain; they have rushed headlong into the error of +12 +Balaam; they have perished in Korah’s rebellion. + + c + +These men are hidden reefs + + in your love +feasts, shamelessly feasting with you but shep- +the Lord +a 5 +herding only themselves. They are clouds without + +b 9 + +are blemishes + +d 15 + +c 12 + +water, carried along by the wind; fruitless trees +13 +in autumn, twice dead after being uprooted. +They are wild waves of the sea, foaming up +their own shame; wandering stars, for whom +14 +blackest darkness has been reserved forever. + +Enoch, the seventh from Adam, also prophe- + +sied about them: + +15 + +“Behold, the Lord is coming + +with myriads of His holy ones +to execute judgment on everyone, + +and to convict all the ungodly + +of every ungodly act of wickedness +and every harsh word spoken + + d + +against Him by ungodly sinners.” + +16 + +These men are discontented grumblers, fol- +lowing after their own lusts; their mouths +spew arrogance; they flatter others for their own +A Call to Persevere (Heb. 10:19–39 ; 2 Pet. 3) +advantage. +17 + +18 + +But you, beloved, remember what was foretold +by the apostles of our Lord Jesus Christ +when +they said to you, “In the last times there will be +scoffers who will follow after their own ungodly +desires.” +These are the ones who cause divi- +20 +sions, who are worldly and devoid of the Spirit. + +19 + + e + +21 + +But you, beloved, by building yourselves up in +your most holy faith and praying in the Holy +Spirit, +keep yourselves in the love of God as +you await the mercy of our Lord Jesus Christ to +22 +bring you eternal life. +23 + +And indeed, have mercy on those who doubt; +save others by snatching them from the fire; +and to still others show mercy tempered with +Doxology (Romans 16:25–27) +fear, hating even the clothing stained by the flesh. +24 + +25 + +Now to Him who is able to keep you from +stumbling and to present you unblemished in His +glorious presence, with great joy— +to the only +God our Savior be glory, majesty, dominion, and +authority through Jesus Christ our Lord before +all time, and now, and for all eternity. + +Amen. + +e 18 + +NE, WH, BYZ, and TR + +sumption of Moses. + +Or + +This account is attributed by Origen to the Testament of Moses, also called the As- + +See the First Book of Enoch (1 Enoch 1:9). + +See 2 Peter 3:3. + + Revelation + +Prologue (Daniel 12:1–13) + +1 + + a + +This is the revelation of Jesus Christ, which +God gave Him to show His servants what +must soon + come to pass. He made it known by +who tes- +sending His angel to His servant John, +tifies to everything he saw. This is the word of +3 +God and the testimony of Jesus Christ. + +2 + +Blessed is the one who reads aloud the words of +this prophecy, and blessed are those who hear +and obey what is written in it, because the time +John Greets the Seven Churches +is near. +4 + +John, + + b + +To the seven churches in the province of Asia: + + c + +5 + +Grace and peace to you from Him who is and was + before +and is to come, and from the seven spirits +and from Jesus Christ, the faithful +His throne, +witness, the firstborn from the dead, and the +ruler of the kings of the earth. + +6 + +To Him who loves us and has released us from +who has made us to be a +our sins by His blood, +kingdom, priests to His God and Father—to Him +7 +be the glory and power forever and ever! Amen. + +Behold, He is coming with the clouds, and every +eye will see Him—even those who pierced Him. +And all the tribes of the earth will mourn because +8 +of Him. So shall it be! Amen. + +d + +“I am the Alpha and the Omega, + +” says the Lord +God, who is and was and is to come—the +John’s Vision on Patmos +Almighty. + +9 + +seven churches: to Ephesus, Smyrna, Pergamum, +12 +Thyatira, Sardis, Philadelphia, and Laodicea.” + +f + +13 + +14 + +Then I turned to see the voice that was speak- +ing with me. And having turned, I saw seven +golden lampstands, +and among the lampstands +was One like the Son of Man, + dressed in a long +robe, with a golden sash around His chest. +The +hair of His head was white like wool, as white as +snow, and His eyes were like a blazing fire. +His +feet were like polished bronze refined in a fur- +nace, and His voice was like the roar of many wa- +ters. +He held in His right hand seven stars, and +a sharp double-edged sword came from His +mouth. His face was like the sun shining at its +17 +brightest. + +15 + +16 + +When I saw Him, I fell at His feet like a dead +man. But He placed His right hand on me and +18 +said, “Do not be afraid. I am the First and the Last, +the Living One. I was dead, and behold, now I +am alive forever and ever! And I hold the keys of +19 +Death and of Hades. + +20 + +Therefore write down the things you have +seen, the things that are, and the things that will +happen after this. +This is the mystery of the +seven stars you saw in My right hand and of the +seven golden lampstands: The seven stars are +the angels of the seven churches, and the seven +To the Church in Ephesus +lampstands are the seven churches. +(Acts 19:8–12 ; Ephesians 1:1–2) + +2 + +“To the angel of the church in Ephesus write: + +These are the words of Him who holds the +seven stars in His right hand and walks +2 +among the seven golden lampstands. + +10 + +I, John, your brother and partner in the tribula- +tion and kingdom and perseverance that are in +Jesus, was on the island of Patmos because of the +On +word of God and my testimony about Jesus. +e +the Lord’s day I was in the Spirit, and I heard be- +hind me a loud voice like a trumpet, +saying, +“Write on a scroll what you see and send it to the +suddenly +in Asia +b 4 +quickly +a 1 +c 4 +d 8 +the sevenfold Spirit +Alpha and the Omega, the First and the Last,” and, + + or + +11 + +Literally +TR + +Or +Or + +3 + +I know your deeds, your labor, and your +perseverance. I know that you cannot toler- +ate those who are evil, and you have tested +and exposed as liars those who falsely claim +to be apostles. +Without growing weary, you +have persevered and endured many things +for the sake of My name. + +the Alpha and the Omega, the Beginning and the End + +e 11 + +saying, “I am the + +; Asia was a Roman province in what is now western Turkey. + +one like a son of man + +f 13 + +Or + +TR +; see Daniel 7:13. + + 1104 | Revelation 2:4 + +4 + +16 + +5 + +But I have this against you: You have aban- +Therefore, keep in +doned your first love. +mind how far you have fallen. Repent and +perform the deeds you did at first. But if you +do not repent, I will come to you and remove +6 +your lampstand from its place. + +But you have this to your credit: You hate +the works of the Nicolaitans, which I also +7 +hate. + +He who has an ear, let him hear what the +Spirit says to the churches. To the one who +overcomes, I will grant the right to eat from +the tree of life in the Paradise of God. + +To the Church in Smyrna + +8 + +To the angel of the church in Smyrna write: + +These are the words of the First and the Last, +9 +who died and returned to life. + +I know your affliction and your poverty— +though you are rich! And I am aware of the +slander of those who falsely claim to be Jews, +10 +but are in fact a synagogue of Satan. + +Do not fear what you are about to suffer. +Behold, the devil is about to throw some of +you into prison to test you, and you will suf- +fer tribulation for ten days. Be faithful even +unto death, and I will give you the crown of +11 +life. + +He who has an ear, let him hear what the +Spirit says to the churches. The one who +overcomes will not be harmed by the second +death. + +To the Church in Pergamum + +12 + +To the angel of the church in Pergamum write: + +These are the words of the One who holds +13 +the sharp, double-edged sword. + +I know where you live, where the throne +of Satan sits, yet you hold fast to My name. +You did not deny your faith in Me, even in the +days of My faithful witness Antipas, who was +14 +killed among you where Satan dwells. + +But I have a few things against you, be- +cause some of you hold to the teaching of Ba- +laam, who taught Balak to place a stumbling +block before the Israelites so they would eat +food sacrificed to idols and commit sexual +In the same way, some of you +immorality. +also hold to the teaching of the Nicolaitans. + +15 + +a 27 + +Psalm 2:9 (see also LXX) + +Therefore repent! Otherwise I will come to +you shortly and wage war against them with +17 +the sword of My mouth. + +He who has an ear, let him hear what the +Spirit says to the churches. To the one who +overcomes, I will give the hidden manna. I +will also give him a white stone inscribed +with a new name, known only to the one who +To the Church in Thyatira +receives it. +(Acts 16:11–15) + +18 + +To the angel of the church in Thyatira write: + +These are the words of the Son of God, whose +eyes are like a blazing fire and whose feet are +19 +like polished bronze. + +I know your deeds—your love, your faith, +your service, your perseverance—and your +20 +latest deeds are greater than your first. + +But I have this against you: You tolerate +that woman Jezebel, who calls herself a +prophetess. By her teaching she misleads My +servants to be sexually immoral and to eat +Even though I have +food sacrificed to idols. +given her time to repent of her immorality, +22 +she is unwilling. + +21 + +Behold, I will cast her onto a bed of sick- +ness, and those who commit adultery with +23 +her will suffer great tribulation unless they +Then I will strike her +repent of her deeds. +children dead, and all the churches will know +that I am the One who searches minds and +hearts, and I will repay each of you according +24 +to your deeds. + +26 + +But I say to the rest of you in Thyatira, who +do not hold to her teaching and have not +learned the so-called deep things of Satan: I +25 +will place no further burden upon you +than to hold fast to what you have until I +And to the one who overcomes and +come. +continues in My work until the end, I will +He will +give authority over the nations. +rule them with an iron scepter and shatter +—just as I have received +them like pottery +And I will give +authority from My Father. +29 +him the morning star. + +28 + +27 + + a + +He who has an ear, let him hear what the + +Spirit says to the churches. + + To the Church in Sardis + +3 + +“To the angel of the church in Sardis write: + + a + +These are the words of the One who holds + of God and the seven stars. +2 + +the seven spirits + +3 + +I know your deeds; you have a reputation for +Wake up and +being alive, yet you are dead. +strengthen what remains, which is about to +die; for I have found your deeds incomplete +Remember, then, +in the sight of My God. +what you have received and heard. Keep it +and repent. If you do not wake up, I will come +like a thief, and you will not know the hour +4 +when I will come upon you. + +5 + +But you do have a few people in Sardis who +have not soiled their garments, and because +they are worthy, they will walk with Me in + b +Like them, he who overcomes will be +white. +dressed in white. And I will never blot out +his name from the Book of Life, but I will +confess his name before My Father and His +6 +angels. + +He who has an ear, let him hear what the + +To the Church in Philadelphia +Spirit says to the churches. + +7 + +To the angel of the church in Philadelphia write: + +These are the words of the One who is holy +and true, who holds the key of David. What +He opens no one can shut, and what He shuts +8 +no one can open. + +c + +9 + +I know your deeds. Behold, I have placed +before you an open door, which no one can +shut. I know that you have only a little +strength, yet you have kept My word and +As for those who +have not denied My name. +belong to the synagogue of Satan, who claim +to be Jews but are liars instead, I will make +them come and bow down at your feet, and +10 +they will know that I love you. + +d + +11 + +Because you have kept My command to +persevere, I will also keep you from the hour +of testing that is about to come upon the +whole world, to test those who dwell on the + Hold fast to what +earth. +you have, so that no one will take your +crown. +The one who overcomes I will +make a pillar in the temple of My God, and he +will never again leave it. Upon him I will +b 5 +write the name of My God, and the name of + +I am coming soon. +12 + +the sevenfold Spirit + +scrape off + +c 7 + +a 1 + +Revelation 4:4 | 1105 + +the city of My God (the new Jerusalem that +comes down out of heaven from My God), +13 +and My new name. + +He who has an ear, let him hear what the +To the Church in Laodicea (Colossians 2:1–5) + +Spirit says to the churches. + +14 + +To the angel of the church in Laodicea write: + + e + +These are the words of the Amen, the faithful +and true Witness, the Originator + of God’s +15 +creation. + +16 + +I know your deeds; you are neither cold +nor hot. How I wish you were one or the +other! +So because you are lukewarm— +neither hot nor cold—I am about to vomit +17 +you out of My mouth! + +18 + +You say, ‘I am rich; I have grown wealthy +and need nothing.’ But you do not realize +that you are wretched, pitiful, poor, blind, +and naked. +I counsel you to buy from Me +gold refined by fire so that you may become +rich, white garments so that you may be +clothed and your shameful nakedness not +exposed, and salve to anoint your eyes so +that you may see. +Those I love I rebuke and +20 +discipline. Therefore be earnest and repent. + +19 + +21 + +Behold, I stand at the door and knock. If +anyone hears My voice and opens the door, I +will come in and dine with him, and he with +Me. +To the one who overcomes, I will grant +the right to sit with Me on My throne, just as +I overcame and sat down with My Father on +22 +His throne. + +He who has an ear, let him hear what the + +The Throne in Heaven + +Spirit says to the churches.” + +4 + +After this I looked and saw a door standing +open in heaven. And the voice I had previ- +ously heard speak to me like a trumpet was say- +ing, “Come up here, and I will show you what +2 +must happen after these things.” + +At once I was in the Spirit, and I saw a throne +3 +standing in heaven, with someone seated on it. +The One seated there looked like jasper and car- +nelian, and a rainbow that gleamed like an emer- +Surrounding the +ald encircled the throne. +throne were twenty-four other thrones, and on +these thrones sat twenty-four elders dressed in +Ruler +quickly +white, with golden crowns on their heads. + +Beginning + +suddenly + +d 11 + +e 14 + +4 + +Or + +Or + +See Isaiah 22:22. + +Or + + or + +Or + + or + + 1106 | Revelation 4:5 + +Worship of the Creator + +5 + + a + +6 + + of God. + +From the throne came flashes of lightning, rum- +blings, and peals of thunder. Before the throne +burned seven torches of fire. These are the seven +spirits +And before the throne was +something like a sea of glass, as clear as crystal. +In the center, around the throne, were four living +7 +creatures, covered with eyes in front and back. +The first living creature was like a lion, the sec- +ond like a calf, the third had a face like a man, and +And each +the fourth was like an eagle in flight. +of the four living creatures had six wings and was +covered with eyes all around and within. Day and +night they never stop saying: + +8 + +“Holy, Holy, Holy, + +9 + +is the Lord God Almighty, +who was and is and is to come!” + +10 + +And whenever the living creatures give glory, +honor, and thanks to the One seated on the +throne, who lives forever and ever, +the twenty- +four elders fall down before the One seated on +the throne, and they worship Him who lives for- +ever and ever. They cast their crowns before the +11 +throne, saying: + +“Worthy are You, our Lord and God, + +to receive glory and honor and power, + +for You created all things; + +by Your will they exist and were + +The Lamb Takes the Scroll +created.” + +5 + +Then I saw a scroll in the right hand of the +One seated on the throne. It had writing on +And +both sides and was sealed with seven seals. +I saw a mighty angel proclaiming in a loud voice, +“Who is worthy to break the seals and open the +3 +scroll?” + +2 + +4 + +But no one in heaven or on earth or under the +earth was able to open the scroll or look inside +And I began to weep bitterly, because no +it. +one was found worthy to open the scroll or look +5 +inside it. + +Then one of the elders said to me, “Do not weep! +Behold, the Lion of the tribe of Judah, the Root of +David, has triumphed to open the scroll and its +6 +seven seals.” + +Then I saw a Lamb who appeared to have been +slain, standing in the center of the throne, encir- +the sevenfold Spirit +a 5 +cled by the four living creatures and the elders. +d 14 + +Him who lives for ever and ever + +This is the sevenfold Spirit + +b 6 + + b + +7 + +The Lamb had seven horns and seven eyes, + of God sent +which represent the seven spirits +And He came and took the +out into all the earth. +scroll from the right hand of the One seated on +8 +the throne. + +When He had taken the scroll, the four living +creatures and the twenty-four elders fell down +before the Lamb. Each one had a harp, and they +were holding golden bowls full of incense, which +And they sang a +are the prayers of the saints. +new song: + +9 + +“Worthy are You to take the scroll and open + +its seals, + +because You were slain, + +and by Your blood You purchased for God +those from every tribe and tongue + +10 + +and people and nation. +You have made them to be a kingdom + + c + +The Lamb Exalted + +and priests to serve our God, +and they will reign upon + + the earth.” + +11 + +Then I looked, and I heard the voices of many +angels encircling the throne, and the living crea- +tures and the elders. And their number was myr- +In +iads of myriads and thousands of thousands. +a loud voice they were saying: + +12 + +“Worthy is the Lamb who was slain, +to receive power and riches + +and wisdom and strength + +13 + +and honor and glory and blessing!” + +And I heard every creature in heaven and on +earth and under the earth and in the sea, and all +that is in them, saying: + +“To Him who sits on the throne + +and to the Lamb + +be praise and honor and glory and power + +14 + +forever and ever!” + +d + +And the four living creatures said, “Amen,” and + +The First Seal: The White Horse +the elders fell down and worshiped. + +6 + +Then I watched as the Lamb opened one of +the seven seals, and I heard one of the four +living creatures say in a voice like thunder, +2 +“Come!” + +So I looked and saw a white horse, and its rider +held a bow. And he was given a crown, and he +c 10 +rode out to overcome and conquer. + +they will reign over + +they reign upon + +Or + +TR includes + +Or + +. + +Or + +; WH + + The Second Seal: War + +15 + +Revelation 7:11 | 1107 + +3 + +And when the Lamb opened the second seal, I + +4 +heard the second living creature say, “Come!” + +Then another horse went forth. It was bright +red, and its rider was granted permission to take +away peace from the earth and to make men slay +The Third Seal: Famine +one another. And he was given a great sword. +5 + +And when the Lamb opened the third seal, I + +heard the third living creature say, “Come!” + +6 + +a + +Then I looked and saw a black horse, and its rider +held in his hand a pair of scales. +And I heard +what sounded like a voice from among the four +living creatures, saying, “A quart of wheat for a + and three quarts of barley for a denar- +denarius, +The Fourth Seal: Death +ius, and do not harm the oil and wine.” +7 + +And when the Lamb opened the fourth seal, I +heard the voice of the fourth living creature say, +8 +“Come!” + +Then I looked and saw a pale green horse. Its +rider’s name was Death, and Hades followed +close behind. And they were given authority over +a fourth of the earth, to kill by sword, by famine, +The Fifth Seal: The Martyrs +by plague, and by the beasts of the earth. +9 + +10 + +And when the Lamb opened the fifth seal, I saw +under the altar the souls of those who had been +slain for the word of God and for the testimony +And they cried out in a loud +they had upheld. +voice, “How long, O Lord, holy and true, until You +judge those who dwell upon the earth and +11 +avenge our blood?” + +Then each of them was given a white robe and +told to rest a little while longer until the full num- +ber of their fellow servants, their brothers, were +The Sixth Seal: Terror +killed, just as they had been killed. +12 + +13 + +And I watched as the Lamb opened the sixth +seal, and there was a great earthquake, and the +sun became black like sackcloth of goat hair, and +and the +the whole moon turned blood red, +stars of the sky fell to the earth like unripe figs +14 +dropping from a tree shaken by a great wind. +The sky receded like a scroll being rolled up, +and every mountain and island was moved from +a 6 +its place. + +A choenix of wheat for a denarius. + +Greek + + b + +16 + +Then the kings of the earth, the nobles, the +commanders, the rich, the mighty, and every +slave and free man hid in the caves and among +the rocks of the mountains. +And they said to +the mountains and the rocks, “Fall on us and hide + from the face of the One seated on the throne, +us +and from the wrath of the Lamb. +For the great +day of Their + wrath has come, and who is able to +144,000 Sealed +withstand it?” + +17 + + c + +7 + +2 + +After this I saw four angels standing at the +four corners of the earth, holding back its +four winds so that no wind would blow on land +or sea or on any tree. +And I saw another angel +ascending from the east, with the seal of the liv- +ing God. And he called out in a loud voice to the +four angels who had been given power to harm +“Do not harm the land or +the land and the sea: +sea or trees until we have placed a seal on the +4 +foreheads of the servants of our God.” + +3 + +And I heard the number of those who were +5 +sealed, 144,000 from all the tribes of Israel: + +From the tribe of Judah 12,000 were sealed, +from the tribe of Reuben 12,000, +from the tribe of Gad 12,000, + +6 + +from the tribe of Asher 12,000, +from the tribe of Naphtali 12,000, +from the tribe of Manasseh 12,000, + +7 + +from the tribe of Simeon 12,000, +from the tribe of Levi 12,000, +from the tribe of Issachar 12,000, + +8 + +from the tribe of Zebulun 12,000, +from the tribe of Joseph 12,000, +Praise from the Great Multitude +and from the tribe of Benjamin 12,000. + +9 + +After this I looked and saw a multitude too large +to count, from every nation and tribe and people +and tongue, standing before the throne and be- +fore the Lamb. They were wearing white robes +And +and holding palm branches in their hands. +they cried out in a loud voice: + +10 + +“Salvation to our God, + +11 + +who sits on the throne, +and to the Lamb!” + +denarius was customarily a day’s wage for a laborer; see Matthew 20:2. + +See Hosea 10:8. + +BYZ and TR + +And all the angels stood around the throne and +around the elders and the four living creatures. + +His + A choenix was a Greek dry measure equivalent to 1.92 pints or 0.91 liters. A + +b 16 + +c 17 + + 1108 | Revelation 7:12 + +12 + +7 + +And they fell facedown before the throne and +saying, “Amen! Blessing +worshiped God, +and glory and wisdom and thanks and honor +and power and strength be to our God forever +13 +and ever! Amen.” + +Then the first angel sounded his trumpet, and +hail and fire mixed with blood were hurled down +upon the earth. A third of the earth was burned +up, along with a third of the trees and all the +8 +green grass. + +Then one of the elders addressed me: “These +in white robes,” he asked, “who are they, and +14 +where have they come from?” + +“Sir,” I answered, “you know.” + +So he replied, “These are the ones who have +come out of the great tribulation; they have +washed their robes and made them white in the +blood of the Lamb. + +For this reason, + +15 + +they are before the throne of God + +and serve Him day and night in His + +temple; + +16 + +and the One seated on the throne + +will spread His tabernacle over them. + +‘Never again will they hunger, +and never will they thirst; + + a + +17 + +nor will the sun beat down upon them, + +nor any scorching heat.’ +b + +For the Lamb in the center of the + +throne +will be their shepherd. + c + +‘He will lead them to springs of living + +water,’ + + d + +and ‘God will wipe away every tear + +The Seventh Seal + +from their eyes.’ + +” + +8 + +2 + +When the Lamb opened the seventh seal, +there was silence in heaven for about half an +And I saw the seven angels who stand be- +hour. +3 +fore God, and they were given seven trumpets. + +Then another angel, who had a golden censer, +came and stood at the altar. He was given much +incense to offer, along with the prayers of all the +4 +saints, on the golden altar before the throne. +And the smoke of the incense, together with the +prayers of the saints, rose up before God from the +5 +hand of the angel. + +Then the angel took the censer, filled it with fire +from the altar, and hurled it to the earth; and +there were peals of thunder, rumblings, flashes +The First Four Trumpets +of lightning, and an earthquake. +6 + +And the seven angels with the seven trumpets +a 16 +prepared to sound them. + +b 17 + +c 17 + +9 + +Then the second angel sounded his trumpet, +and something like a great mountain burning +with fire was thrown into the sea. A third of the +a third of the living crea- +sea turned to blood, +tures in the sea died, and a third of the ships were +10 +destroyed. + +11 + +Then the third angel sounded his trumpet, and +a great star burning like a torch fell from heaven +and landed on a third of the rivers and on the +The name of the star is +springs of water. +Wormwood. A third of the waters turned bitter + and many people died from +like wormwood oil, +12 +the bitter waters. + +e + +Then the fourth angel sounded his trumpet, +and a third of the sun and moon and stars were +struck. A third of the stars were darkened, a third +of the day was without light, and a third of the +13 +night as well. + +And as I observed, I heard an eagle flying over- +head, calling in a loud voice, “Woe! Woe! Woe +to those who dwell on the earth, because of the +trumpet blasts about to be sounded by the re- +The Fifth Trumpet +maining three angels!” + +9 + +2 + +Then the fifth angel sounded his trumpet, +and I saw a star that had fallen from heaven +to earth, and it was given the key to the pit of the +The star opened the pit of the Abyss, and +Abyss. +smoke rose out of it like the smoke of a great fur- +nace, and the sun and the air were darkened by +3 +the smoke from the pit. + +5 + +And out of the smoke, locusts descended on the +4 +earth, and they were given power like that of the +They were told not to +scorpions of the earth. +harm the grass of the earth or any plant or tree, +but only those who did not have the seal of God +The locusts were not given +on their foreheads. +power to kill them, but only to torment them for +6 +five months, and their torment was like the sting- +In those days men will seek +ing of a scorpion. +death and will not find it; they will long to die, but +7 +death will escape them. + +And the locusts looked like horses prepared for +d 17 +battle, with something like crowns of gold on + +became wormwood + +e 11 + +Isaiah 49:10 + +See Psalm 23:1. + +Isaiah 49:10 + +Isaiah 25:8 + +Literally + + Revelation 11:5 | 1109 + +3 + +Then he cried out in a loud voice +on the land. +like the roar of a lion. And when he cried out, the +4 +seven thunders sounded their voices. + +When the seven thunders had spoken, I was +about to put it in writing. But I heard a voice from +heaven saying, “Seal up what the seven thunders +5 +have said, and do not write it down.” + +Then the angel I had seen standing on the sea +6 +and on the land lifted up his right hand to heaven. +And he swore by Him who lives forever and +ever, who created heaven and everything in it, +the earth and everything in it, and the sea and +7 +everything in it: “There will be no more delay! +But in the days of the voice of the seventh angel, +when he begins to sound his trumpet, the mys- +tery of God will be fulfilled, just as He proclaimed +8 +to His servants the prophets.” + +Then the voice that I had heard from heaven +spoke to me again, saying, “Go, take the small +scroll that lies open in the hand of the angel +9 +standing on the sea and on the land.” + +And I went to the angel and said, “Give me the + +small scroll.” + +“Take it and eat it,” he said. “It will make your +stomach bitter, but in your mouth it will be as +10 +sweet as honey.” + + c + +So I took the small scroll from the angel’s hand +and ate it, and it was as sweet as honey in my +mouth. But when I had eaten it, my stomach +11 +turned bitter. + +And they told me, “You must prophesy again +about many peoples and nations and tongues +The Two Witnesses +and kings.” + +11 + +2 + +Then I was given a measuring rod like a +staff and was told, “Go and measure the +temple of God and the altar, and count the num- +But exclude the court- +ber of worshipers there. +yard outside the temple. Do not measure it, +because it has been given over to the nations, and +3 +they will trample the holy city for 42 months. +And I will empower my two witnesses, and +they will prophesy for 1,260 days, clothed in +4 +sackcloth.” + +8 + +9 + +10 + +their heads; and their faces were like the faces of +They had hair like that of women, and +men. +They also had breast- +teeth like those of lions. +plates like breastplates of iron, and the sound of +their wings was like the roar of many horses and +They had tails +chariots rushing into battle. +with stingers like scorpions, which had the +They +power to injure people for five months. +were ruled by a king, the angel of the Abyss. His + and in Greek it is +name in Hebrew is Abaddon, +12 +Apollyon. + +11 + +a + +b + +The first woe has passed. Behold, two woes are + +The Sixth Trumpet +still to follow. +13 + +14 + +Then the sixth angel sounded his trumpet, and +I heard a voice from the four horns of the golden +altar before God +saying to the sixth angel with +the trumpet, “Release the four angels who are +15 +bound at the great river Euphrates.” + +So the four angels who had been prepared for +this hour and day and month and year were re- +leased to kill a third of mankind. +And the num- +ber of mounted troops was two hundred million; +17 +I heard their number. + +16 + +Now the horses and riders in my vision looked +like this: The riders had breastplates the colors +of fire, sapphire, and sulfur. The heads of the +horses were like the heads of lions, and out of +18 +their mouths proceeded fire, smoke, and sulfur. +A third of mankind was killed by the three +plagues of fire, smoke, and sulfur that proceeded +For the power of the horses +from their mouths. +was in their mouths and in their tails; indeed, +their tails were like snakes, having heads with +20 +which to inflict harm. + +19 + +Now the rest of mankind who were not killed +by these plagues still did not repent of the works +of their hands. They did not stop worshiping de- +mons and idols of gold, silver, bronze, stone, and +Fur- +wood, which cannot see or hear or walk. +thermore, they did not repent of their murder, +The Angel and the Small Scroll (Ezek. 3:1–15) +sorcery, sexual immorality, and theft. + +21 + +10 + +Then I saw another mighty angel coming +down from heaven, wrapped in a cloud, +with a rainbow above his head. His face was like +He +the sun, and his legs were like pillars of fire. +held in his hand a small scroll, which lay open. He +a 11 Abaddon +placed his right foot on the sea and his left foot + +b 11 Apollyon + +Destruction + +2 + +d + +5 + +These witnesses are the two olive trees and the +two lampstands that stand before the Lord of the +If anyone wants to harm them, fire pro- +earth. +ceeds from their mouths and devours their + +d 4 + +c 9 + +Destroyer + + means + +. + + means + +. + +See Num. 5:24 and Ezek. 3:3. + +See Zech. 4:14. + + 1110 | Revelation 11:6 + +6 +enemies. In this way, anyone who wants to harm +These witnesses have +them must be killed. +power to shut the sky so that no rain will fall dur- +ing the days of their prophecy, and power to turn +the waters into blood and to strike the earth with +The Witnesses Killed and Raised +every kind of plague as often as they wish. +7 + +8 + +When the two witnesses have finished their tes- +timony, the beast that comes up from the Abyss +will wage war with them, and will overpower +Their bodies will lie in the street +and kill them. +of the great city—figuratively called Sodom and +9 +Egypt—where their Lord was also crucified. +For three and a half days all peoples and tribes +and tongues and nations will view their bodies +10 +and will not permit them to be laid in a tomb. +And those who dwell on the earth will gloat +over them and celebrate and send one another +gifts, because these two prophets had tormented +11 +them. + +12 + +But after the three and a half days, the breath +of life from God entered the two witnesses, and +they stood on their feet, and great fear fell upon +And the witnesses heard +those who saw them. +a loud voice from heaven saying, “Come up here.” +And they went up to heaven in a cloud as their +13 +enemies watched them. + +And in that hour there was a great earthquake, +and a tenth of the city collapsed. Seven thousand +were killed in the quake, and the rest were terri- +14 +fied and gave glory to the God of heaven. + +The second woe has passed. Behold, the third + +The Seventh Trumpet +woe is coming shortly. +15 + +Then the seventh angel sounded his trumpet, + +and loud voices called out in heaven: + +“The kingdom of the world + +has become the kingdom of our Lord + +and of His Christ, + +16 + +and He will reign forever and ever.” + +17 + +And the twenty-four elders who sit on their +thrones before God fell on their faces and wor- +shiped God, + +saying: + +18 + +b + +The nations were enraged, + + c + +and Your wrath has come. + +The time has come to judge the dead +and to reward Your servants the + +prophets, + +as well as the saints and those who fear Your + +name, + +both small and great— +and to destroy those who destroy + +the earth.” + +19 + +Then the temple of God in heaven was opened, +and the ark of His covenant appeared in His tem- +ple. And there were flashes of lightning, rum- +blings, peals of thunder, an earthquake, and a +The Woman and the Dragon +great hailstorm. + +12 + +2 + +And a great sign appeared in heaven: a +woman clothed in the sun, with the moon +under her feet and a crown of twelve stars on her +She was pregnant and crying out in the +head. +3 +pain and agony of giving birth. + +4 + +Then another sign appeared in heaven: a huge +red dragon with seven heads, ten horns, and +His tail swept +seven royal crowns on his heads. +a third of the stars from the sky, hurling them to +the earth. And the dragon stood before the +woman who was about to give birth, ready to +5 +devour her child as soon as she gave birth. + +d +And she gave birth to a son, a male child, who + +6 + +will rule all the nations with an iron scepter. +And her child was caught up to God and to His +throne. +And the woman fled into the wilder- +ness, where God had prepared a place for her to +The War in Heaven +be nourished for 1,260 days. +7 + +9 + +8 + +Then a war broke out in heaven: Michael and +his angels fought against the dragon, and the +But the +dragon and his angels fought back. +dragon was not strong enough, and no longer +was any place found in heaven for him and his +And the great dragon was hurled +angels. +down—that ancient serpent called the devil and +Satan, the deceiver of the whole world. He was +10 +hurled to the earth, and his angels with him. + +“We give thanks to You, O Lord God + +a + +Almighty, + +the One who is and who was, + +And I heard a loud voice in heaven saying: + +“Now have come the salvation and the power + +because You have taken Your great power + +a 17 + +and have begun to reign. + +and who is to come + +b 18 + +and the kingdom of our God, +and the authority of His Christ. + +d 5 + +c 18 + +TR includes + +. + +See Psalm 2:1. + +See Daniel 12:2. + +See Psalm 2:9 (see also LXX). + + For the accuser of our brothers has been + +thrown down— + +11 + +he who accuses them day and night + +before our God. + +They have conquered him by the blood + +of the Lamb + +and by the word of their testimony. + +12 + +And they did not love their lives +so as to shy away from death. + +Therefore rejoice, O heavens, + +and you who dwell in them! +But woe to the earth and the sea; + +with great fury the devil has come down + +to you, +The Woman Persecuted + +knowing he has only a short time.” + +13 + +14 + +And when the dragon saw that he had been +thrown to the earth, he pursued the woman who +had given birth to the male child. +But the +woman was given two wings of a great eagle to +fly from the presence of the serpent to her place +in the wilderness, where she was nourished for a +15 +time, and times, and half a time. + +17 + +Then from his mouth the serpent spewed wa- +16 +ter like a river to overtake the woman and sweep +But the earth helped +her away in the torrent. +the woman and opened its mouth to swallow up +the river that the dragon had poured from his +And the dragon was enraged at the +mouth. +woman and went to make war with the rest of +her children, who keep the commandments of +God and hold to the testimony of Jesus. +The Beast from the Sea (Daniel 7:1–8) +And the dragon stood on the shore of the sea. + +a + +13 + +Then I saw a beast with ten horns and +seven heads rising out of the sea. There +2 +were ten royal crowns on its horns and blasphe- +The beast I saw was +mous names on its heads. +like a leopard, with the feet of a bear and the +mouth of a lion. And the dragon gave the beast +3 +his power and his throne and great authority. + +4 + +One of the heads of the beast appeared to have +been mortally wounded. But the mortal wound +was healed, and the whole world marveled and +They worshiped the dragon +followed the beast. +who had given authority to the beast, and they +worshiped the beast, saying, “Who is like the +And he stood on the sand of the sea. +a 17 +beast, and who can wage war against it?” + +Revelation 13:17 | 1111 + +5 + +6 + +The beast was given a mouth to speak arrogant +and blasphemous words, and authority to act for +42 months. +And the beast opened its mouth to +speak blasphemies against God and to slander +His name and His tabernacle—those who dwell +7 +in heaven. + +Then the beast was permitted to wage war +against the saints and to conquer them, and it +8 +was given authority over every tribe and people +And all who dwell on the +and tongue and nation. +earth will worship the beast—all whose names +have not been written from the foundation of the +world in the Book of Life belonging to the Lamb +9 +who was slain. +10 + +b + +He who has an ear, let him hear: + +“If anyone is destined for captivity, + c + d + +into captivity he will go; + +if anyone is to die + + by the sword, + +by the sword he must be killed.” + +Here is a call for the perseverance and faith of the +The Beast from the Earth +saints. +11 + +12 + +Then I saw another beast rising out of the +earth. This beast had two horns like a lamb, but +And this beast exercised +spoke like a dragon. +all the authority of the first beast and caused the +earth and those who dwell in it to worship the +first beast, whose mortal wound had been +13 +healed. + +14 + +And the second beast performed great signs, +even causing fire from heaven to come down to +earth in the presence of the people. +Because of +the signs it was given to perform on behalf of the +first beast, it deceived those who dwell on the +earth, telling them to make an image to the beast +that had been wounded by the sword and yet had +The second beast was permitted to give +lived. +breath to the image of the first beast, so that the +image could speak and cause all who refused to +The Mark of the Beast +worship it to be killed. +16 + +15 + +17 + +And the second beast required all people, +small and great, rich and poor, free and slave, to +receive a mark on their right hand or on their +so that no one could buy or sell un- +forehead, +less he had the mark—the name of the beast or +And I stood on the sand of the sea. +the number of its name. +b 8 + +written in the Book of Life belonging to the Lamb + +Literally + +who was slain from the foundation of the world. +sentence as verse 18; others include it with Revelation 13:1. + +c 10 + + BYZ and TR + +if anyone kills + +d 10 + + Some texts number this + +Or + +NE, WH, and BYZ + +See Jeremiah 15:2. + + 1112 | Revelation 13:18 + +18 + +13 + +Here is a call for wisdom: Let the one who has +insight calculate the number of the beast, for it is +The Lamb and the 144,000 +the number of a man, and that number is 666. + +a + +And I heard a voice from heaven telling me to +write, “Blessed are the dead—those who die in +the Lord from this moment on.” + +14 + +Then I looked and saw the Lamb stand- +ing on Mount Zion, and with Him +144,000 who had His name and His Father’s +And I heard a +name written on their foreheads. +sound from heaven like the roar of many waters +and the loud rumbling of thunder. And the sound +3 +I heard was like harpists strumming their harps. + +2 + +And they sang a new song before the throne and +before the four living creatures and the elders. +And no one could learn the song except the +4 +144,000 who had been redeemed from the earth. +These are the ones who have not been defiled +with women, for they are virgins. They follow the +Lamb wherever He goes. They have been re- +deemed from among men as firstfruits to God +and to the Lamb. +And no lie was found in their +The Three Angels and Babylon’s Fall +mouths; they are blameless. +6 + +5 + +b + +7 + +Then I saw another angel flying overhead, with +the eternal gospel to proclaim to those who dwell +on the earth—to every nation and tribe and +tongue and people. +And he said in a loud voice, +“Fear God and give Him glory, because the hour +of His judgment has come. Worship the One who +made the heavens and the earth and the sea and +8 +the springs of waters.” + +c + +Then a second angel followed, saying, “Fallen, +fallen is Babylon the great, + who has made all +the nations drink the wine of the passion of her +9 +immorality.” + +10 + +And a third angel followed them, calling out in a +loud voice, “If anyone worships the beast and its +image and receives its mark on his forehead or +on his hand, +he too will drink the wine of God’s +anger, poured undiluted into the cup of His +wrath. And he will be tormented in fire and sul- +fur in the presence of the holy angels and of the +Lamb. +And the smoke of their torment rises +forever and ever. Day and night there is no rest +for those who worship the beast and its image, or +12 +for anyone who receives the mark of its name.” + +11 + +“Yes,” says the Spirit, “they will rest from their la- +The Harvest of the Earth +bors, for their deeds will follow them.” +14 + +And I looked and saw a white cloud, and seated + with +on the cloud was One like the Son of Man, +a golden crown on His head and a sharp sickle in +15 +His hand. + +d + +16 + +Then another angel came out of the temple, +crying out in a loud voice to the One seated on +the cloud, “Swing Your sickle and reap, because +the time has come to harvest, for the crop of the +So the One seated on the cloud +earth is ripe.” +swung His sickle over the earth, and the earth +17 +was harvested. + +18 + +Then another angel came out of the temple in +Still an- +heaven, and he too had a sharp sickle. +other angel, with authority over the fire, came +from the altar and called out in a loud voice to the +angel with the sharp sickle, “Swing your sharp +sickle and gather the clusters of grapes from the +19 +vine of the earth, because its grapes are ripe.” + +20 + +So the angel swung his sickle over the earth +and gathered the grapes of the earth, and he +threw them into the great winepress of God’s +And the winepress was trodden outside +wrath. +the city, and the blood that flowed from it rose as +high as the bridles of the horses for a distance of +The Song of Moses and the Lamb +1,600 stadia. +(Deuteronomy 32:1–47) + +e + +15 + +Then I saw another great and marvelous +sign in heaven: seven angels with the +seven final plagues, with which the wrath of God +2 +is completed. + +And I saw something like a sea of glass mixed +with fire, beside which stood those who had con- +quered the beast and its image and the number +3 +of its name. They were holding harps from God, +and they sang the song of God’s servant Moses + +and of the Lamb: + +“Great and wonderful are Your works, + +Here is a call for the perseverance of the saints, +who keep the commandments of God and the +a 18 +faith of Jesus. +d 14 +f 3 + +616 +one like a son of man + +King of the saints + +King of the ages + +TR includes + +b 5 + +before the throne of God +e 20 1,600 stadia + +O Lord God Almighty! + f +Just and true are Your ways, +O King of the nations! +. + +c 8 + +Some manuscripts +Or + +; see Daniel 7:13. + +See Isaiah 21:9 and Revelation 18:2. + is approximately 184 miles or 296 kilometers. + +SBL and WH + +; TR + + 4 + +Who will not fear You, O Lord, +and glorify Your name? +For You alone are holy. + +All nations will come and worship before You, + +for Your righteous acts have been + +Preparation for Judgment +revealed.” + +5 + +After this I +6 + +looked, and the temple—the +tabernacle of the Testimony—was opened in +heaven. +And out of the temple came the seven +angels with the seven plagues, dressed in clean +and bright linen and girded with golden sashes +7 +around their chests. + +8 + +Then one of the four living creatures gave the +seven angels seven golden bowls full of the wrath +of God, who lives forever and ever. +And the tem- +ple was filled with smoke from the glory of God +and from His power; and no one could enter the +temple until the seven plagues of the seven an- +The First Six Bowls of Wrath +gels were completed. + +16 + +Then I heard a loud voice from the tem- +ple saying to the seven angels, “Go, pour +2 +out on the earth the seven bowls of God’s wrath.” + +So the first angel went and poured out his bowl +on the earth, and loathsome, malignant sores +broke out on those who had the mark of the beast +3 +and worshiped its image. + +And the second angel poured out his bowl into +the sea, and it turned to blood like that of the +4 +dead, and every living thing in the sea died. + +5 + +And the third angel poured out his bowl into the +rivers and springs of water, and they turned to +blood. +And I heard the angel of the waters say: + +“Righteous are You, O Holy One, + +who is and was, +because You have brought these + +6 + +judgments. + +For they have spilled the blood of saints and + +prophets, + +7 + +and You have given them blood to drink, +as they deserve.” + +And I heard the altar reply: + +8 + +“Yes, Lord God Almighty, + +true and just are Your judgments.” + +Then the fourth angel poured out his bowl on +the sun, and it was given power to scorch the +a 21 +people with fire. +And the people were scorched + +great hail as of a talent + +9 + +Revelation 17:2 | 1113 + +by intense heat, and they cursed the name of God, +who had authority over these plagues. Yet they +10 +did not repent and give Him glory. + +11 + +And the fifth angel poured out his bowl on the +throne of the beast, and its kingdom was plunged +into darkness, and men began to gnaw their +and curse the God of heaven +tongues in anguish +for their pains and sores. Yet they did not repent +12 +of their deeds. + +And the sixth angel poured out his bowl on the +great river Euphrates, and its water was dried up +13 +to prepare the way for the kings of the East. + +14 + +And I saw three unclean spirits that looked like +frogs coming out of the mouths of the dragon, the +These are de- +beast, and the false prophet. +monic spirits that perform signs and go out to all +the kings of the earth, to assemble them for battle +15 +on the great day of God the Almighty. + +“Behold, I am coming like a thief. Blessed is the +one who remains awake and clothed, so that he +16 +will not go naked and let his shame be exposed.” + +And they assembled the kings in the place that + +The Seventh Bowl of Wrath +in Hebrew is called Armageddon. +17 + +Then the seventh angel poured out his bowl +into the air, and a loud voice came from the +18 +throne in the temple, saying, “It is done!” + +And there were flashes of lightning, rumblings, +peals of thunder, and a great earthquake the likes +of which had not occurred since men were upon +The +the earth—so mighty was the great quake. +great city was split into three parts, and the cities +of the nations collapsed. And God remembered +Babylon the great and gave her the cup of the +20 +wine of the fury of His wrath. + +19 + +21 + +Then every island fled, and no mountain could + a +And great hailstones weighing al- +be found. +most a hundred pounds each + rained down on +them from above. And men cursed God for the +The Woman on the Beast +plague of hail, because it was so horrendous. + +17 + +2 + +Then one of the seven angels with the +seven bowls came and said to me, “Come, +I will show you the punishment of the great pros- +titute, who sits on many waters. +The kings of the +earth were immoral with her, and those who +dwell on the earth were intoxicated with the +wine of her immorality.” + +Greek + +; that is, hailstones weighing approximately 75.4 pounds or 34.2 kilograms each + + 1114 | Revelation 17:3 + +3 + +15 + +4 + +And the angel carried me away in the Spirit into +a wilderness, where I saw a woman sitting on a +scarlet beast that was covered with blasphemous +The +names and had seven heads and ten horns. +woman was dressed in purple and scarlet, and +adorned with gold and precious stones and +pearls. She held in her hand a golden cup full of +abominations and the impurities of her sexual +And on her forehead a mysterious +immorality. +name was written: + +5 + +BABYLON THE GREAT, +THE MOTHER OF PROSTITUTES +The Mystery Explained +AND OF THE ABOMINATIONS OF THE EARTH. +6 + +I could see that the woman was drunk with the +blood of the saints and witnesses for Jesus. And I +7 +was utterly amazed at the sight of her. + +“Why are you so amazed?” said the angel. “I will +tell you the mystery of the woman and of the +beast that carries her, which has the seven heads +8 +and ten horns. + +The beast that you saw—it was, and now is no +more, but is about to come up out of the Abyss +and go to its destruction. And those who dwell on +the earth whose names were not written in the +Book of Life from the foundation of the world will +marvel when they see the beast that was, and is +9 +not, and yet will be. + +10 + +This calls for a mind with wisdom. The seven +heads are seven mountains on which the woman +sits. +There are also seven kings. Five have +fallen, one is, and the other has not yet come. But +when he does come, he must remain for only a +11 +little while. + +12 + +The beast that was, and now is not, is an eighth +king, who belongs to the other seven and is going +The ten horns you saw are +into destruction. +ten kings who have not yet received a kingdom, +13 +but will receive one hour of authority as kings +These kings have one +along with the beast. +purpose: to yield their power and authority to +The Victory of the Lamb +the beast. +14 + +They will make war against the Lamb, and the +Lamb will triumph over them, because He is Lord +of lords and King of kings; and He will be accom- +panied by His called and chosen and faithful +a 2 +ones.” +detestable bird. + +have fallen by + +d 4 + +b 2 + +c 3 + +17 + +Then the angel said to me, “The waters you +saw, where the prostitute was seated, are peo- +16 +ples and multitudes and nations and tongues. +And the ten horns and the beast that you saw +will hate the prostitute. They will leave her des- +olate and naked, and they will eat her flesh and +burn her with fire. +For God has put it into their +hearts to carry out His purpose by uniting to give +their kingdom to the beast, until the words of +God are fulfilled. +And the woman you saw is +the great city that rules over the kings of the +Babylon Is Fallen (Isaiah 21:1–10) +earth.” + +18 + +18 + +After this I saw another angel descend- +ing from heaven with great authority, +And + +and the earth was illuminated by his glory. +he cried out in a mighty voice: + +2 + + a + +“Fallen, fallen is Babylon the great! + +She has become a lair for demons +and a haunt for every unclean spirit, +3 + +every unclean bird, +and every detestable beast. + +b + + c + +All the nations have drunk + + the wine +of the passion of her immorality. +The kings of the earth were immoral with + +her, + +and the merchants of the earth have + +grown wealthy + +from the extravagance of her luxury.” + +4 + +Then I heard another voice from heaven say: + +d + +“Come out of her, My people, +5 + +so that you will not share in her sins +or contract any of her plagues. +For her sins are piled up to heaven, + +6 + +and God has remembered her iniquities. +Give back to her as she has done to others; +pay her back double for what she has + +7 + +done; + +mix her a double portion in her own cup. +As much as she has glorified herself and lived + +in luxury, + +give her the same measure of torment and + +grief. + +In her heart she says, ‘I sit as queen; +8 + +I am not a widow and will never see grief.’ +Therefore her plagues will come in one day— + +death and grief and famine— +and she will be consumed by fire, + +for mighty is the Lord God who + +a haunt for every unclean spirit and every unclean and + +judges her.” + +See Isaiah 21:9 and Revelation 14:8. + +NE, WH, BYZ, and TR + +SBL and WH + +See Jeremiah 51:45. + + Lament over Babylon + +20 + +Revelation 19:3 | 1115 + +9 + +Then the kings of the earth who committed sex- +ual immorality and lived in luxury with her will +weep and wail at the sight of the smoke rising +In fear of her +from the fire that consumes her. +torment, they will stand at a distance and cry out: + +10 + +a + + “Woe, woe to the great city, + +the mighty city of Babylon! + +For in a single hour + +11 + +your judgment has come.” + +12 + +13 + +And the merchants of the earth will weep and +mourn over her, because there is no one left to +cargo of gold, silver, pre- +buy their cargo— +cious stones, and pearls; of fine linen, purple, silk, +and scarlet; of all kinds of citron wood and every +article of ivory, precious wood, bronze, iron, and +of cinnamon, spice, incense, myrrh, +marble; +and frankincense; of wine, olive oil, fine flour, +and wheat; of cattle, sheep, horses, and carriages; +And they will +of bodies and souls of slaves. +say: + +14 + + b + +“The fruit of your soul’s desire +has departed from you; + +all your luxury and splendor have vanished, + +15 + +never to be seen again.” + +The merchants who sold these things and +gained their wealth from her will stand at a dis- +tance, in fear of her torment. They will weep and +mourn, + +saying: + +16 + +“Woe, woe to the great city, + +clothed in fine linen and purple and + +scarlet, + +17 + +adorned with gold and precious stones + +and pearls! + +For in a single hour + +such fabulous wealth has been + +destroyed!” + +Rejoice over her, O heaven, + +and you saints and apostles and + +prophets, + +because God has pronounced for you + +The Doom of Babylon + +His judgment against her. + +21 + +Then a mighty angel picked up a stone the +size of a great millstone and cast it into the sea, +saying: + +“With such violence + +the great city of Babylon will be cast + +22 + +down, + +never to be seen again. + +And the sound of harpists and musicians, + +of flute players and trumpeters, +will never ring out in you again. +Nor will any craftsmen of any trade + +be found in you again, +nor the sound of a millstone +be heard in you again. + +23 + +The light of a lamp + +will never shine in you again, + +and the voices of a bride and bridegroom + +will never call out in you again. + +For your merchants were the great ones + +of the earth, + +24 + +because all the nations were deceived + +by your sorcery.” + +And there was found in her the blood of proph- +ets and saints, and of all who had been slain on +Rejoicing in Heaven +the earth. + +19 + +After this I heard a sound like the roar of +a great multitude in heaven, shouting: + + c + +“Hallelujah! + +18 + +Every shipmaster, passenger, and sailor, and all +who make their living from the sea, will stand at +and cry out at the sight of the smoke +a distance +rising from the fire that consumes her. “What city +19 +was ever like this great city?” they will exclaim. + +Salvation and glory and power belong to our + +2 + +God! + +For His judgments are true and just. + +He has judged the great prostitute + +who corrupted the earth with her + +Then they will throw dust on their heads as + +immorality. + +they weep and mourn and cry out: + +“Woe, woe to the great city, + +where all who had ships on the sea +were enriched by her wealth! + +For in a single hour + +a 9 + +when they see the smoke of her burning + +she has been destroyed.” + +Hallelu YAH + +Praise the LORD + +3 + +He has avenged the blood of His servants +that was poured out by her hand.” + +And a second time they called out: + +“Hallelujah! +b 14 + +Her smoke rises forever and ever.” + +c 1 Hallelujah + +And: + +Literally +of the Hebrew + +, meaning + +; also in verse 18 + +Literally + +; also in verses 3, 4, and 6. + + is a transliteration + + 1116 | Revelation 19:4 + +4 + +c + +And the twenty-four elders and the four living +creatures fell down and worshiped God who sits +on the throne, saying: +5 + + “Amen, Hallelujah!” + +Then a voice came from the throne, saying: + +16 + +will rule them with an iron scepter. + He treads +the winepress of the fury of the wrath of God the +And He has a name written on His +Almighty. +robe and on His thigh: + +Defeat of the Beast and False Prophet + +KING OF KINGS AND LORD OF LORDS. + + “Praise our God, + +all you who serve Him, + +and those who fear Him, +The Marriage of the Lamb +small and great alike!” + +6 + +And I heard a sound like the roar of a great mul- +titude, like the rushing of many waters, and like +a mighty rumbling of thunder, crying out: + +“Hallelujah! + +7 +For the Lord our God + + a + + the Almighty reigns. + +Let us rejoice and be glad +and give Him the glory. + +For the marriage of the Lamb has come, +8 + +and His bride has made herself ready. + +She was given clothing of fine linen, + +bright and pure.” + +For the fine linen she wears is the righteous acts +9 +of the saints. + +Then the angel told me to write, “Blessed are +those who are invited to the marriage supper of +the Lamb.” And he said to me, “These are the true +10 +words of God.” + +So I fell at his feet to worship him. But he told +me, “Do not do that! I am a fellow servant with +you and your brothers who rely on the testimony +of Jesus. Worship God! For the testimony of Jesus +The Rider on the White Horse +is the spirit of prophecy.” + +11 + +Then I saw heaven standing open, and there +before me was a white horse. And its rider is +12 +called Faithful and True. With righteousness He +judges and wages war. +He has eyes like blazing +fire, and many royal crowns on His head. He has +a name written on Him that only He Himself +b +He is dressed in a robe dipped in +knows. +14 +blood, + + and His name is The Word of God. + +13 + +The armies of heaven, dressed in fine linen, +15 +white and pure, follow Him on white horses. +And from His mouth proceeds a sharp sword +with which to strike down the nations, and He +a 6 + +the Lord God + + b 13 + +17 + +18 + +Then I saw an angel standing in the sun, and he +cried out in a loud voice to all the birds flying +overhead, “Come, gather together for the great +so that you may eat the flesh of +supper of God, +kings and commanders and mighty men, of +horses and riders, of everyone slave and free, +19 +small and great.” + +20 + +Then I saw the beast and the kings of the earth +with their armies assembled to wage war against +the One seated on the horse, and against His +army. +But the beast was captured along with +the false prophet, who on its behalf had per- +formed signs deceiving those who had the mark +of the beast and worshiped its image. Both the +beast and the false prophet were thrown alive +And the +into the fiery lake of burning sulfur. +rest were killed with the sword that proceeded +from the mouth of the One seated on the horse. + +21 + +And all the birds gorged themselves on their +Satan Bound +flesh. + +20 + +2 + +Then I saw an angel coming down from +heaven with the key to the Abyss, hold- +He seized the +ing in his hand a great chain. +dragon, that ancient serpent who is the devil and +And +Satan, and bound him for a thousand years. +he threw him into the Abyss, shut it, and sealed it +over him, so that he could not deceive the nations +until the thousand years were complete. After +that, he must be released for a brief period of +4 +time. + +3 + +Then I saw the thrones, and those seated on +them had been given authority to judge. And I +saw the souls of those who had been beheaded +for their testimony of Jesus and for the word of +God, and those who had not worshiped the beast +or its image and had not received its mark on +their foreheads or hands. And they came to life +5 +and reigned with Christ for a thousand years. + +The rest of the dead did not come back to life +until the thousand years were complete. This is + +sprinkled with blood + +c 15 + +SBL, BYZ, and TR + +WH + +See Psalm 2:9 (see also LXX). + + 6 + +3 + +Revelation 21:16 | 1117 + +Blessed and holy are +the first resurrection. +those who share in the first resurrection! The +second death has no power over them, but they +will be priests of God and of Christ and will reign +Satan Cast into the Lake of Fire +with Him for a thousand years. +7 + +8 + +When the thousand years are complete, Satan +and will go out +will be released from his prison, +to deceive the nations in the four corners of the +earth—Gog and Magog—to assemble them for +battle. Their number is like the sand of the sea- +9 +shore. + + a + +10 + + and consumed them. + +And they marched across the broad expanse of +the earth and surrounded the camp of the saints +and the beloved city. But fire came down from +And the devil +heaven +who had deceived them was thrown into the lake +of fire and sulfur, into which the beast and the +false prophet had already been thrown. There +they will be tormented day and night forever and +Judgment before the Great White Throne +ever. +11 + +Then I saw a great white throne and the One +seated on it. Earth and heaven fled from His pres- +And I +ence, and no place was found for them. +saw the dead, great and small, standing before +the throne. + +12 + +And books were opened, and one of them was the +Book of Life. And the dead were judged according +The +to their deeds, as recorded in the books. +sea gave up its dead, and Death and Hades gave +up their dead, and each one was judged accord- +14 +ing to his deeds. + +13 + +15 + +Then Death and Hades were thrown into the +lake of fire. This is the second death—the lake of +And if anyone was found whose name was +fire. +not written in the Book of Life, he was thrown +A New Heaven and a New Earth +into the lake of fire. +(Isaiah 65:17–25) + +21 + +b + +2 + +Then I saw a new heaven and a new + for the first heaven and earth had +earth, +I saw the +passed away, and the sea was no more. +holy city, the new Jerusalem, coming down out of +heaven from God, prepared as a bride adorned +for her husband. +a 9 + +came down from God out of heaven + +b 1 + +And I heard a loud voice from the throne saying: + +“Behold, the dwelling place of God is with + +man, + +and He will dwell with them. + +They will be His people, +4 + +c +and God Himself will be with them + +as their God. + d + +‘He will wipe away every tear from their + +eyes,’ + +and there will be no more death + +or mourning or crying or pain, + +for the former things have passed away.” + +5 + +And the One seated on the throne said, “Behold, +I make all things new.” Then He said, “Write this +6 +down, for these words are faithful and true.” +And He told me, “It is done! I am the Alpha and +the Omega, the Beginning and the End. To the +thirsty I will give freely from the spring of the +water of life. +The one who overcomes will in- +herit all things, and I will be his God, and he will +8 +be My son. + +7 + +But to the cowardly and unbelieving and abom- +inable and murderers and sexually immoral and +sorcerers and idolaters and all liars, their place +will be in the lake that burns with fire and sulfur. +The New Jerusalem +This is the second death.” + +9 + +Then one of the seven angels with the seven +bowls full of the seven final plagues came and +said to me, “Come, I will show you the bride, the +10 +wife of the Lamb.” + +12 + +11 + +And he carried me away in the Spirit to a moun- +tain great and high, and showed me the holy city +of Jerusalem coming down out of heaven from +shining with the glory of God. Its radiance +God, +was like a most precious jewel, like a jasper, as +The city had a great and high +clear as crystal. +wall with twelve gates inscribed with the names +of the twelve tribes of Israel, and twelve angels +There were three gates on the +at the gates. +east, three on the north, three on the south, and +The wall of the city had +three on the west. +twelve foundations bearing the names of the +15 +twelve apostles of the Lamb. + +13 + +14 + +16 + +The angel who spoke with me had a golden +measuring rod to measure the city and its gates +The city lies foursquare, with its +and walls. + +c 3 + +God Himself will be with them. + +d 4 + +BYZ and TR + +and BYZ + +See Isaiah 65:17 and Isaiah 66:22 (see also LXX). + +SBL, NE, WH, + +Isaiah 25:8. + + 1118 | Revelation 21:17 + + a + +17 + +width the same as its length. And he measured +the city with the rod, and all its dimensions were +equal—12,000 stadia + in length and width and +b +height. +And he measured its wall to be 144 cu- +18 + by the human measure the angel was using. +bits, + +19 + +The wall was made of jasper, and the city +The foun- +itself of pure gold, as pure as glass. +dations of the city walls were adorned with every +kind of precious stone: + +The first foundation was jasper, + +the second sapphire, + +the third chalcedony, +20 +the fourth emerald, + +the fifth sardonyx, + +the sixth carnelian, + +the seventh chrysolite, + +the eighth beryl, + +the ninth topaz, + +the tenth chrysoprase, + +the eleventh jacinth, + +21 + +and the twelfth amethyst. + +And the twelve gates were twelve pearls, with +each gate consisting of a single pearl. The main +22 +street of the city was pure gold, as clear as glass. + +24 + +But I saw no temple in the city, because the +23 +Lord God Almighty and the Lamb are its temple. +And the city has no need of sun or moon to +shine on it, because the glory of God illuminates +By its light +the city, and the Lamb is its lamp. +25 +the nations will walk, and into it the kings of the +Its gates will +earth will bring their glory. +never be shut at the end of the day, because there +26 +will be no night there. +27 + +c + +And into the city will be brought the glory and +But nothing unclean will +honor of the nations. +ever enter it, nor anyone who practices an abom- +ination or a lie, but only those whose names are +The River of Life +written in the Lamb’s Book of Life. + +22 + +Then the angel showed me a river of the +water of life, as clear as crystal, flowing +down +from the throne of God and of the Lamb +the middle of the main street of the city. On either +a 16 12,000 stadia + +2 + +side of the river stood a tree of life, bearing +twelve kinds of fruit and yielding a fresh crop for +each month. And the leaves of the tree are for the +3 +healing of the nations. + +4 + +No longer will there be any curse. The throne of +God and of the Lamb will be within the city, and +His servants will worship Him. +They will see His +5 +face, and His name will be on their foreheads. +There will be no more night in the city, and they +will have no need for the light of a lamp or of the +sun. For the Lord God will shine on them, and +Jesus Is Coming +they will reign forever and ever. +6 + +Then the angel said to me, “These words are +faithful and true. The Lord, the God of the spirits + d +of the prophets, has sent His angel to show His +7 +servants what must soon + + take place.” + +e + +“Behold, I am coming soon. Blessed is the one +” + +8 +who keeps the words of prophecy in this book. + +9 + +And I, John, am the one who heard and saw these +things. And when I had heard and seen them, +I fell down to worship at the feet of the angel +But he said to +who had shown me these things. +me, “Do not do that! I am a fellow servant with +you and your brothers the prophets, and with +those who keep the words of this book. Worship +10 +God!” + +Then he told me, “Do not seal up the words of +11 +prophecy in this book, because the time is near. +Let the unrighteous continue to be unright- +eous, and the vile continue to be vile; let the +righteous continue to practice righteousness, +12 +and the holy continue to be holy.” + +13 + +“Behold, I am coming soon, and My reward is +with Me, to give to each one according to what he +has done. +I am the Alpha and the Omega, the +14 +First and the Last, the Beginning and the End.” + +f + +15 + +Blessed are those who wash their robes, + so +that they may have the right to the tree of life and +may enter the city by its gates. +But outside are +the dogs, the sorcerers, the sexually immoral, the +murderers, the idolaters, and everyone who +16 +loves and practices falsehood. + +“I, Jesus, have sent My angel to give you this +testimony for the churches. I am the Root and the +Offspring of David, the bright Morning Star.” +suddenly + is approximately 216 feet or 65.8 +Blessed are those +. +Or + +BYZ and TR include + +b 17 144 cubits + +and honor + +c 24 + +f 14 + +d 6 + + or + +quickly +meters. The measure could indicate either height or thickness. +who do His commandments + + is approximately 1,380 miles or 2,220 kilometers. +e 7 + +scroll + +; similarly in verses 7, 12, and 20 + +Or + +; also in verses 9, 10, 18, 19 + +BYZ and TR + + 17 + +The Spirit and the bride say, “Come!” Let the +one who hears say, “Come!” And let the one who +is thirsty come, and the one who desires the wa- +Nothing May Be Added or Removed +ter of life drink freely. + +18 + +I testify to everyone who hears the words +of prophecy in this book: If anyone adds to +them, God will add to him the plagues described +And if anyone takes away from +in this book. + +19 + +Revelation 22:21 | 1119 + +the words of this book of prophecy, God will take +away his share in the tree of life and the holy city, +20 +which are described in this book. + +He who testifies to these things says, “Yes, I am + +21 +coming soon.” Amen. Come, Lord Jesus! + + a + +b + +The grace of the Lord Jesus + +c +saints. + + be with all the + +Amen. + +a 21 +c 21 + +the Lord Jesus Christ + +our Lord Jesus Christ + +b 21 + +the saints + +Amen. + +WH and BYZ +SBL, WH, NE, and NA do not include + +; TR + +SBL, WH, NE, and TR do not include + +. + + Lengths + +Table of Weights and Measures + +Finger +Handbreadth (4 fingers) +Span +Cubit +Long Cubit +Rod (6 long cubits) +Fathom +Weights +Stadion + +0.73 inches +2.92 inches +9 inches +18 inches +21 inches +10.5 feet +6 feet +607 feet + +1.85 centimeters +7.42 centimeters +22.86 centimeters +45.72 centimeters +53.34 centimeters +3.20 meters +1.83 meters +185 meters + +Gerah (1/20 shekel) +Beka (1/2 shekel) +Pim (2/3 shekel) +Shekel (20 gerahs) +Mina (50 shekels) +Talent (60 minas) +Liquid Measures +Litra (Roman Pound) + +0.0201 ounces +0.201 ounces +0.268 ounces +0.402 ounces +1.256 pounds +75.4 pounds +12 ounces + +0.57 grams +5.70 grams +7.60 grams +11.4 grams +0.57 kilograms +34.2 kilograms +340 grams + +Log +Hin (12 logs) +Bath (6 hins) +Homer (10 baths) +Cor (10 baths) +Bath (NT) +Dry Measures +Metretes (NT) + +Cab (1/18 ephah) +Omer (1/10 ephah) +Seah (1/3 ephah) +Ephah (10 omers) +Lethech (5 ephahs) +Homer (10 ephahs) +Cor (10 ephahs) +Cor (NT) + +0.33 quarts +0.98 gallons +5.8 gallons +58 gallons +58 gallons +8.7 gallons +10.4 gallons + +1.1 dry quarts +2.0 dry quarts +6.7 dry quarts +0.624 bushels +3.12 bushels +6.24 bushels +6.24 bushels +10 bushels + +0.31 liters +3.7 liters +22 liters +220 liters +220 liters +32.9 liters +39.4 liters + +1.2 liters +2.2 liters +7.3 liters +22 liters +110 liters +220 liters +220 liters +350 liters + +Jeremiah 52:21 +Exodus 25:25 +Exodus 28:16 +Genesis 6:15 +Ezekiel 40:5 +Ezekiel 40:5 +Acts 27:28 +Luke 24:13 + +Exodus 30:13 +Genesis 24:22 +1 Samuel 13:21 +Genesis 23:15 +Ezra 2:69 +Exodus 25:39 +John 19:39 + +Leviticus 14:10 +Numbers 15:4 +1 Kings 5:11 +Ezekiel 45:11 +Ezekiel 45:14 +Luke 16:6 +John 2:6 + +2 Kings 6:25 +Exodus 16:16 +Genesis 18:6 +Exodus 16:36 +Hosea 3:2 +Leviticus 27:16 +1 Kings 4:22 +Luke 16:7 \ No newline at end of file diff --git a/bibles/eng-web_usfm/00-FRTeng-web.usfm b/bibles/eng-web_usfm/00-FRTeng-web.usfm new file mode 100644 index 0000000..2db7a81 --- /dev/null +++ b/bibles/eng-web_usfm/00-FRTeng-web.usfm @@ -0,0 +1,37 @@ +\id FRT Preface to the World English Bible +\h Preface +\toc1 Preface +\toc2 Preface +\toc3 Pre +\mt1 Preface to the World English Bible +\is1 What is the Holy Bible? +\ip The Holy Bible is a collection of books and letters written by many people who were inspired by the Holy Spirit of God. These books tell us how we can be saved from the evil of this world and gain eternal life that is truly worth living. Although the Holy Bible contains rules of conduct, it is not just a rule book. It reveals God’s heart—a Father’s heart, full of love and compassion. The Holy Bible tells you what you need to know and believe to be saved from sin and evil and how to live a life that is truly worth living, no matter what your current circumstances may be. +\ip The Holy Bible consists of two main sections: the Old Testament (including Psalms and Proverbs) and the New Testament (Matthew through Revelation). The Old Testament records God’s interaction with mankind before He sent His son to redeem us, while recording prophesy predicting that coming. The New Testament tells us of God’s Son and Anointed One, Jesus, and the wonderful salvation that He purchased for us. +\ip The same Holy Spirit who inspired the Holy Bible is living among us today, and He is happy to help you understand what He intended as you study His Word. Just ask Him, and He is more than happy to help you apply His message to your life. +\ip The Old Testament was originally written mostly in Hebrew. The New Testament was originally written mostly in the common street Greek (not the formal Greek used for official legal matters). The Holy Bible is translated into many languages, and being translated into many more, so that everyone may have an opportunity to hear the Good News about Jesus Christ.\f + \fr 1:0 \ft “Christ” means “Anointed One”.\f* +\is1 Why was the World English Bible translated? +\ip There are already many good translations of the Holy Bible into contemporary English. Unfortunately, almost all of them are restricted by copyright and copyright holder policy. This restricts publication and republication of God’s Word in many ways, such as in downloadable files on the Internet, use of extensive quotations in books, etc. The World English Bible was commissioned by God in response to prayer about this subject. +\ip Because the World English Bible is in the Public Domain (not copyrighted), it can be freely copied, distributed, and redistributed without any payment of royalties. You don’t even have to ask permission to do so. You may publish the whole World English Bible in book form, bind it in leather and sell it. You may incorporate it into your Bible study software. You may make and distribute audio recordings of it. You may broadcast it. All you have to do is maintain the integrity of God’s Word before God, and reserve the name “World English Bible” for faithful copies of this translation. +\is1 How was the World English Bible translated? +\ip The World English Bible is an update of the American Standard Version (ASV) of the Holy Bible, published in 1901. A custom computer program updated the archaic words and word forms to contemporary equivalents, and then a team of volunteers proofread and updated the grammar. The New Testament was updated in places to conform to the Byzantine Majority Text reconstruction of the original Greek manuscripts, thus taking advantage of the superior access to manuscripts that we have now compared to when the original ASV was translated. +\is1 What is different about the World English Bible? +\ip The style of the World English Bible, while fairly literally translated, is in informal, spoken English. The World English Bible is designed to sound good and be accurate when read aloud. It is not formal in its language, just as the original Greek of the New Testament was not formal. The WEB uses contractions rather freely. +\ip The World English Bible doesn’t capitalize pronouns pertaining to God. The original manuscripts made no such distinction. Hebrew has no such thing as upper and lower case, and the original Greek manuscripts were written in all upper case letters. Attempting to add in such a distinction raises some difficulties in translating dual-meaning Scriptures such as the coronation psalms. +\ip The Classic World English Bible translates God’s Proper Name in the Old Testament as “Yahweh.” All other editions of the World English Bible translate the same name as “LORD” (all capital letters), or when used with “Lord” (mixed case, translated from “Adonai”), GOD. There are solid translational arguments for both traditions. +\ip Because World English Bible uses the Byzantine Majority Text (MT) as the primary basis for the New Testament, you may notice the following differences in comparing the WEB to other translations: +\ili The order of Matthew 23:13 and 14 is reversed in some translations. +\ili Luke 17:36 and Acts 15:34, which are not found in the majority of the Greek Manuscripts (and are relegated to footnotes in the WEB) may be included in some other translations. +\ili Romans 14:24-26 in the WEB may appear as Romans 16:25-27 in other translations. +\ili 1 John 5:7-8 contains an addition in some translations, including the KJV. Erasmus admitted adding this text to his published Greek New Testament, even though he could at first find no Greek manuscript support for it, because he was being pressured by men to do so, and because he didn’t see any doctrinal harm in it. Lots of things not written by John in this letter are true, but we decline to add them to what the Holy Spirit inspired through John. +\ip With all of the above and some other places where lack of clarity in the original manuscripts has led to multiple possible readings, significant variants are listed in footnotes. The reading that in our prayerful judgment is best is in the main text. Overall, the World English Bible doesn’t differ very much from several other good contemporary English translations of the Holy Bible. The message of Salvation through Jesus Christ is still the same. The point of this translation was not to be very different (except for legal status), but to update the ASV for readability while retaining or improving the accuracy of that well-respected translation and retaining the public domain status of the ASV. +\is1 Does the World English Bible include the Apocrypha? +\ip The World English Bible is an ecumenical project that includes books included in Bibles in many denominations. The main 66 books of the Old and New Testaments are recognized as Scripture by all true Christians. There are also books considered to be part of, depending on which book and who you ask, Deuterocanon, Apocrypha, and Pseudepigrapha. The Deuterocanon/Apocrypha books are included in the printed editions marked “Ecumenical” but not in the printed editions marked “Old and New Testaments”. +\ip The following books and parts of books are recognized as Deuterocanonical Scripture by the Roman Catholic, Greek, and Russian Orthodox Churches: \bk Tobit\bk*, \bk Judith\bk*, \bk Esther from the Greek Septuagint\bk*, \bk The Wisdom of Solomon\bk*, \bk Ecclesiasticus\bk* (also called \bk The Wisdom of Jesus Son of Sirach\bk*), \bk Baruch\bk*, \bk The Song of the Three Holy Children\bk*, \bk Susanna\bk*, and \bk Bel and the Dragon\bk*, \bk 1 Maccabees\bk*, \bk 2 Maccabees\bk*. In this edition, \bk The Letter of Jeremiah\bk* is included as chapter 6 of \bk Baruch\bk*. Three of those books come from parts of Daniel found in the Greek Septuagint, but not the Hebrew Old Testament: \bk The Song of the Three Holy Children\bk*, \bk Susanna\bk*, and \bk Bel and the Dragon\bk*. These three are included in \bk Daniel (Greek)\bk*, in context, as they make more sense that way. +\ip The following books are recognized as Deuterocanonical Scripture by the Greek and Russian Orthodox Churches, but not the Roman Catholic Church: 1 Esdras, The Prayer of Manasseh, Psalm 151, and 3 Maccabees. Note that 1 Esdras and the Prayer of Manasseh are also in an appendix to the Latin Vulgate Bible. +\ip The Slavonic Bible includes 2 Esdras, but calls it 3 Esdras. This same book is in the Appendix to the Latin Vulgate as 4 Esdras. +\ip An appendix to the Greek Septuagint contains 4 Maccabees. It is included for its historical value. +\ip Among Christian denominations and among individual Christians, opinions vary widely on the Deuterocanon/Apocrypha, as do the collective names they give them. Many regard them as useful in gaining additional understanding of the Old and New Testaments and the hand of God in history, even if they don’t give them the same status as the 66 books of the Old and New Testaments. They are included here in support of the churches and individuals who read them and use them, as separate from, but frequently used with, the core canon of the 66 books of the Holy Bible. +\is1 What are MT, TR, and NU? +\ip In the footnotes, MT refers to the Byzantine Greek Majority Text New Testament, which is usually in the main text. TR stands for Textus Receptus, which is the Greek Text from which the King James Version New Testament was translated. NU stands for the Nestle-Aland/UBS critical text of the Greek New Testament, which is used as a basis for some other Bible translations. +\is1 More Information +\ip For answers to frequently asked questions about the World English Bible, please visit our web site at WorldEnglish.Bible. \ No newline at end of file diff --git a/bibles/eng-web_usfm/02-GENeng-web.usfm b/bibles/eng-web_usfm/02-GENeng-web.usfm new file mode 100644 index 0000000..3b31f06 --- /dev/null +++ b/bibles/eng-web_usfm/02-GENeng-web.usfm @@ -0,0 +1,2242 @@ +\id GEN World English Bible (WEB) 2024-01-15 +\ide UTF-8 +\h Genesis +\toc1 The First Book of Moses, Commonly Called Genesis +\toc2 Genesis +\toc3 Gen +\mt2 The First Book of Moses, +\mt3 Commonly Called +\mt1 Genesis +\c 1 +\p +\v 1 \w In|strong="H8064"\w* \w the|strong="H1254"\w* \w beginning|strong="H7225"\w*, \w God|strong="H8064"\w*\f + \fr 1:1 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w created|strong="H1254"\w* \w the|strong="H1254"\w* \w heavens|strong="H8064"\w* \w and|strong="H8064"\w* \w the|strong="H1254"\w* \w earth|strong="H8064"\w*. +\v 2 \w The|strong="H6440"\w* earth \w was|strong="H1961"\w* \w formless|strong="H8414"\w* \w and|strong="H6440"\w* \w empty|strong="H8414"\w*. \w Darkness|strong="H2822"\w* \w was|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w deep|strong="H8415"\w* \w and|strong="H6440"\w* God’s \w Spirit|strong="H7307"\w* \w was|strong="H1961"\w* \w hovering|strong="H7363"\w* \w over|strong="H5921"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w waters|strong="H4325"\w*. +\p +\v 3 God said, “\w Let|strong="H1961"\w* \w there|strong="H1961"\w* \w be|strong="H1961"\w* light,” \w and|strong="H1961"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* light. +\v 4 God \w saw|strong="H7200"\w* \w the|strong="H7200"\w* light, \w and|strong="H7200"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H2896"\w* \w good|strong="H2896"\w*. God divided \w the|strong="H7200"\w* light \w from|strong="H7200"\w* \w the|strong="H7200"\w* \w darkness|strong="H2822"\w*. +\v 5 God \w called|strong="H7121"\w* \w the|strong="H3117"\w* light “\w day|strong="H3117"\w*”, \w and|strong="H3117"\w* \w the|strong="H3117"\w* \w darkness|strong="H2822"\w* \w he|strong="H3117"\w* \w called|strong="H7121"\w* “\w night|strong="H3915"\w*”. \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w evening|strong="H6153"\w* \w and|strong="H3117"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w morning|strong="H1242"\w*, \w the|strong="H3117"\w* \w first|strong="H3117"\w* \w day|strong="H3117"\w*. +\p +\v 6 God said, “\w Let|strong="H1961"\w* \w there|strong="H1961"\w* \w be|strong="H1961"\w* \w an|strong="H1961"\w* \w expanse|strong="H7549"\w* \w in|strong="H8432"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H4325"\w* \w the|strong="H8432"\w* \w waters|strong="H4325"\w*, \w and|strong="H4325"\w* \w let|strong="H1961"\w* \w it|strong="H8432"\w* divide \w the|strong="H8432"\w* \w waters|strong="H4325"\w* \w from|strong="H1961"\w* \w the|strong="H8432"\w* \w waters|strong="H4325"\w*.” +\v 7 God \w made|strong="H6213"\w* \w the|strong="H5921"\w* \w expanse|strong="H7549"\w*, \w and|strong="H6213"\w* divided \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w which|strong="H4325"\w* \w were|strong="H1961"\w* \w under|strong="H8478"\w* \w the|strong="H5921"\w* \w expanse|strong="H7549"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w which|strong="H4325"\w* \w were|strong="H1961"\w* \w above|strong="H5921"\w* \w the|strong="H5921"\w* \w expanse|strong="H7549"\w*; \w and|strong="H6213"\w* \w it|strong="H5921"\w* \w was|strong="H1961"\w* \w so|strong="H3651"\w*. +\v 8 \w God|strong="H8064"\w* \w called|strong="H7121"\w* \w the|strong="H3117"\w* \w expanse|strong="H7549"\w* “\w sky|strong="H8064"\w*”. \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w evening|strong="H6153"\w* \w and|strong="H3117"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w morning|strong="H1242"\w*, \w a|strong="H3068"\w* \w second|strong="H8145"\w* \w day|strong="H3117"\w*. +\p +\v 9 \w God|strong="H8064"\w* \w said|strong="H3651"\w*, “\w Let|strong="H3651"\w* \w the|strong="H7200"\w* \w waters|strong="H4325"\w* \w under|strong="H8478"\w* \w the|strong="H7200"\w* \w sky|strong="H8064"\w* \w be|strong="H1961"\w* \w gathered|strong="H6960"\w* \w together|strong="H6960"\w* \w to|strong="H1961"\w* \w one|strong="H1961"\w* \w place|strong="H4725"\w*, \w and|strong="H8064"\w* \w let|strong="H3651"\w* \w the|strong="H7200"\w* \w dry|strong="H3004"\w* \w land|strong="H3004"\w* \w appear|strong="H7200"\w*;” \w and|strong="H8064"\w* \w it|strong="H3651"\w* \w was|strong="H1961"\w* \w so|strong="H3651"\w*. +\v 10 God \w called|strong="H7121"\w* \w the|strong="H7200"\w* \w dry|strong="H3004"\w* \w land|strong="H3004"\w* “earth”, \w and|strong="H7200"\w* \w the|strong="H7200"\w* \w gathering|strong="H4723"\w* \w together|strong="H7121"\w* \w of|strong="H4325"\w* \w the|strong="H7200"\w* \w waters|strong="H4325"\w* \w he|strong="H3588"\w* \w called|strong="H7121"\w* “\w seas|strong="H3220"\w*”. God \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w it|strong="H7121"\w* \w was|strong="H4325"\w* \w good|strong="H2896"\w*. +\v 11 God \w said|strong="H3651"\w*, “\w Let|strong="H3651"\w* \w the|strong="H5921"\w* earth \w yield|strong="H6213"\w* \w grass|strong="H6212"\w*, \w herbs|strong="H6212"\w* \w yielding|strong="H2232"\w* \w seeds|strong="H2233"\w*, \w and|strong="H6086"\w* \w fruit|strong="H6529"\w* \w trees|strong="H6086"\w* \w bearing|strong="H6213"\w* \w fruit|strong="H6529"\w* \w after|strong="H5921"\w* \w their|strong="H5921"\w* \w kind|strong="H4327"\w*, \w with|strong="H6213"\w* \w their|strong="H5921"\w* \w seeds|strong="H2233"\w* \w in|strong="H5921"\w* \w it|strong="H5921"\w*, \w on|strong="H5921"\w* \w the|strong="H5921"\w* earth;” \w and|strong="H6086"\w* \w it|strong="H5921"\w* \w was|strong="H1961"\w* \w so|strong="H3651"\w*. +\v 12 \w The|strong="H7200"\w* earth \w yielded|strong="H2232"\w* \w grass|strong="H6212"\w*, \w herbs|strong="H6212"\w* \w yielding|strong="H2232"\w* \w seed|strong="H2233"\w* \w after|strong="H2233"\w* \w their|strong="H7200"\w* \w kind|strong="H4327"\w*, \w and|strong="H6086"\w* \w trees|strong="H6086"\w* \w bearing|strong="H6213"\w* \w fruit|strong="H6529"\w*, \w with|strong="H6213"\w* \w their|strong="H7200"\w* \w seeds|strong="H2233"\w* \w in|strong="H6213"\w* \w it|strong="H3588"\w*, \w after|strong="H2233"\w* \w their|strong="H7200"\w* \w kind|strong="H4327"\w*; \w and|strong="H6086"\w* God \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H6086"\w* \w good|strong="H2896"\w*. +\v 13 \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w evening|strong="H6153"\w* \w and|strong="H3117"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w morning|strong="H1242"\w*, \w a|strong="H3068"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*. +\p +\v 14 \w God|strong="H8064"\w* said, “\w Let|strong="H1961"\w* \w there|strong="H1961"\w* \w be|strong="H1961"\w* \w lights|strong="H3974"\w* \w in|strong="H8141"\w* \w the|strong="H3117"\w* \w expanse|strong="H7549"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w sky|strong="H8064"\w* \w to|strong="H1961"\w* divide \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w from|strong="H3117"\w* \w the|strong="H3117"\w* \w night|strong="H3915"\w*; \w and|strong="H3117"\w* \w let|strong="H1961"\w* \w them|strong="H1961"\w* \w be|strong="H1961"\w* \w for|strong="H3117"\w* signs \w to|strong="H1961"\w* mark \w seasons|strong="H4150"\w*, \w days|strong="H3117"\w*, \w and|strong="H3117"\w* \w years|strong="H8141"\w*; +\v 15 \w and|strong="H8064"\w* \w let|strong="H3651"\w* \w them|strong="H5921"\w* \w be|strong="H1961"\w* \w for|strong="H5921"\w* \w lights|strong="H3974"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w expanse|strong="H7549"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w sky|strong="H8064"\w* \w to|strong="H1961"\w* \w give|strong="H1961"\w* \w light|strong="H3974"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w earth|strong="H8064"\w*;” \w and|strong="H8064"\w* \w it|strong="H5921"\w* \w was|strong="H1961"\w* \w so|strong="H3651"\w*. +\v 16 God \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w two|strong="H8147"\w* \w great|strong="H1419"\w* \w lights|strong="H3974"\w*: \w the|strong="H6213"\w* \w greater|strong="H1419"\w* \w light|strong="H3974"\w* \w to|strong="H6213"\w* \w rule|strong="H4475"\w* \w the|strong="H6213"\w* \w day|strong="H3117"\w*, \w and|strong="H3117"\w* \w the|strong="H6213"\w* \w lesser|strong="H6996"\w* \w light|strong="H3974"\w* \w to|strong="H6213"\w* \w rule|strong="H4475"\w* \w the|strong="H6213"\w* \w night|strong="H3915"\w*. \w He|strong="H3117"\w* \w also|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w stars|strong="H3556"\w*. +\v 17 \w God|strong="H5414"\w* \w set|strong="H5414"\w* \w them|strong="H5414"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w expanse|strong="H7549"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w sky|strong="H8064"\w* \w to|strong="H5921"\w* \w give|strong="H5414"\w* light \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w earth|strong="H8064"\w*, +\v 18 \w and|strong="H3117"\w* \w to|strong="H3117"\w* \w rule|strong="H4910"\w* \w over|strong="H4910"\w* \w the|strong="H7200"\w* \w day|strong="H3117"\w* \w and|strong="H3117"\w* \w over|strong="H4910"\w* \w the|strong="H7200"\w* \w night|strong="H3915"\w*, \w and|strong="H3117"\w* \w to|strong="H3117"\w* divide \w the|strong="H7200"\w* light \w from|strong="H3117"\w* \w the|strong="H7200"\w* \w darkness|strong="H2822"\w*. God \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H3117"\w* \w good|strong="H2896"\w*. +\v 19 \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w evening|strong="H6153"\w* \w and|strong="H3117"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w morning|strong="H1242"\w*, \w a|strong="H3068"\w* \w fourth|strong="H7243"\w* \w day|strong="H3117"\w*. +\p +\v 20 \w God|strong="H8064"\w* said, “\w Let|strong="H5315"\w* \w the|strong="H6440"\w* \w waters|strong="H4325"\w* \w abound|strong="H8317"\w* \w with|strong="H5921"\w* \w living|strong="H2416"\w* \w creatures|strong="H2416"\w*, \w and|strong="H8064"\w* \w let|strong="H5315"\w* \w birds|strong="H5775"\w* \w fly|strong="H5774"\w* \w above|strong="H5921"\w* \w the|strong="H6440"\w* \w earth|strong="H8064"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w open|strong="H6440"\w* \w expanse|strong="H7549"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w sky|strong="H8064"\w*.” +\v 21 God \w created|strong="H1254"\w* \w the|strong="H3605"\w* \w large|strong="H1419"\w* \w sea|strong="H8577"\w* \w creatures|strong="H2416"\w* \w and|strong="H1419"\w* \w every|strong="H3605"\w* \w living|strong="H2416"\w* \w creature|strong="H5315"\w* \w that|strong="H3588"\w* \w moves|strong="H7430"\w*, \w with|strong="H5315"\w* \w which|strong="H4325"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w swarmed|strong="H8317"\w*, \w after|strong="H3588"\w* \w their|strong="H3605"\w* \w kind|strong="H4327"\w*, \w and|strong="H1419"\w* \w every|strong="H3605"\w* \w winged|strong="H3671"\w* \w bird|strong="H5775"\w* \w after|strong="H3588"\w* \w its|strong="H3605"\w* \w kind|strong="H4327"\w*. God \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H5315"\w* \w good|strong="H2896"\w*. +\v 22 God \w blessed|strong="H1288"\w* \w them|strong="H1288"\w*, saying, “\w Be|strong="H1288"\w* \w fruitful|strong="H6509"\w*, \w and|strong="H6509"\w* \w multiply|strong="H7235"\w*, \w and|strong="H6509"\w* \w fill|strong="H4390"\w* \w the|strong="H1288"\w* \w waters|strong="H4325"\w* \w in|strong="H3220"\w* \w the|strong="H1288"\w* \w seas|strong="H3220"\w*, \w and|strong="H6509"\w* let \w birds|strong="H5775"\w* \w multiply|strong="H7235"\w* \w on|strong="H3220"\w* \w the|strong="H1288"\w* earth.” +\v 23 \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w evening|strong="H6153"\w* \w and|strong="H3117"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w morning|strong="H1242"\w*, \w a|strong="H3068"\w* \w fifth|strong="H2549"\w* \w day|strong="H3117"\w*. +\p +\v 24 God \w said|strong="H3651"\w*, “\w Let|strong="H3651"\w* \w the|strong="H3318"\w* earth \w produce|strong="H1961"\w* \w living|strong="H2416"\w* \w creatures|strong="H2416"\w* \w after|strong="H1961"\w* \w their|strong="H1961"\w* \w kind|strong="H4327"\w*, livestock, \w creeping|strong="H7431"\w* \w things|strong="H7431"\w*, \w and|strong="H3318"\w* \w animals|strong="H2416"\w* \w of|strong="H3318"\w* \w the|strong="H3318"\w* earth \w after|strong="H1961"\w* \w their|strong="H1961"\w* \w kind|strong="H4327"\w*;” \w and|strong="H3318"\w* \w it|strong="H3651"\w* \w was|strong="H1961"\w* \w so|strong="H3651"\w*. +\v 25 God \w made|strong="H6213"\w* \w the|strong="H3605"\w* \w animals|strong="H2416"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* earth \w after|strong="H3588"\w* \w their|strong="H3605"\w* \w kind|strong="H4327"\w*, \w and|strong="H7200"\w* \w the|strong="H3605"\w* livestock \w after|strong="H3588"\w* \w their|strong="H3605"\w* \w kind|strong="H4327"\w*, \w and|strong="H7200"\w* \w everything|strong="H3605"\w* \w that|strong="H3588"\w* \w creeps|strong="H7431"\w* \w on|strong="H7200"\w* \w the|strong="H3605"\w* ground \w after|strong="H3588"\w* \w its|strong="H3605"\w* \w kind|strong="H4327"\w*. God \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H3605"\w* \w good|strong="H2896"\w*. +\p +\v 26 \w God|strong="H8064"\w* said, “Let’s \w make|strong="H6213"\w* \w man|strong="H3605"\w* \w in|strong="H5921"\w* \w our|strong="H3605"\w* \w image|strong="H6754"\w*, \w after|strong="H5921"\w* \w our|strong="H3605"\w* \w likeness|strong="H1823"\w*. Let \w them|strong="H5921"\w* \w have|strong="H3605"\w* \w dominion|strong="H7287"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w fish|strong="H1710"\w* \w of|strong="H5921"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w*, \w and|strong="H8064"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w birds|strong="H5775"\w* \w of|strong="H5921"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w and|strong="H8064"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* livestock, \w and|strong="H8064"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*, \w and|strong="H8064"\w* \w over|strong="H5921"\w* \w every|strong="H3605"\w* \w creeping|strong="H7431"\w* \w thing|strong="H7431"\w* \w that|strong="H3605"\w* \w creeps|strong="H7430"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*.” +\v 27 God \w created|strong="H1254"\w* \w man|strong="H2145"\w* \w in|strong="H2145"\w* his own \w image|strong="H6754"\w*. \w In|strong="H2145"\w* God’s \w image|strong="H6754"\w* \w he|strong="H5347"\w* \w created|strong="H1254"\w* \w him|strong="H2145"\w*; \w male|strong="H2145"\w* \w and|strong="H2145"\w* \w female|strong="H5347"\w* \w he|strong="H5347"\w* \w created|strong="H1254"\w* \w them|strong="H1254"\w*. +\v 28 \w God|strong="H8064"\w* \w blessed|strong="H1288"\w* \w them|strong="H5921"\w*. \w God|strong="H8064"\w* said \w to|strong="H5921"\w* \w them|strong="H5921"\w*, “\w Be|strong="H1288"\w* \w fruitful|strong="H6509"\w*, \w multiply|strong="H7235"\w*, \w fill|strong="H4390"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*, \w and|strong="H8064"\w* \w subdue|strong="H3533"\w* \w it|strong="H5921"\w*. \w Have|strong="H3605"\w* \w dominion|strong="H7287"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w fish|strong="H1710"\w* \w of|strong="H4390"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w*, \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w birds|strong="H5775"\w* \w of|strong="H4390"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w and|strong="H8064"\w* \w over|strong="H5921"\w* \w every|strong="H3605"\w* \w living|strong="H2416"\w* \w thing|strong="H2416"\w* \w that|strong="H3605"\w* \w moves|strong="H7430"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*.” +\v 29 \w God|strong="H5414"\w* said, “\w Behold|strong="H2009"\w*,\f + \fr 1:29 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w I|strong="H5414"\w* \w have|strong="H1961"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w* \w every|strong="H3605"\w* \w herb|strong="H6212"\w* \w yielding|strong="H2232"\w* \w seed|strong="H2233"\w*, \w which|strong="H6086"\w* \w is|strong="H2009"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth, \w and|strong="H6086"\w* \w every|strong="H3605"\w* \w tree|strong="H6086"\w*, \w which|strong="H6086"\w* bears \w fruit|strong="H6529"\w* \w yielding|strong="H2232"\w* \w seed|strong="H2233"\w*. \w It|strong="H5414"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w your|strong="H3605"\w* food. +\v 30 \w To|strong="H1961"\w* \w every|strong="H3605"\w* \w animal|strong="H2416"\w* \w of|strong="H5921"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*, \w and|strong="H8064"\w* \w to|strong="H1961"\w* \w every|strong="H3605"\w* \w bird|strong="H5775"\w* \w of|strong="H5921"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w and|strong="H8064"\w* \w to|strong="H1961"\w* \w everything|strong="H3605"\w* \w that|strong="H3605"\w* \w creeps|strong="H7430"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*, \w in|strong="H5921"\w* \w which|strong="H2416"\w* \w there|strong="H1961"\w* \w is|strong="H5315"\w* \w life|strong="H5315"\w*, \w I|strong="H5921"\w* \w have|strong="H1961"\w* given \w every|strong="H3605"\w* \w green|strong="H3418"\w* \w herb|strong="H6212"\w* \w for|strong="H5921"\w* food;” \w and|strong="H8064"\w* \w it|strong="H5921"\w* \w was|strong="H1961"\w* \w so|strong="H3651"\w*. +\p +\v 31 God \w saw|strong="H7200"\w* \w everything|strong="H3605"\w* \w that|strong="H7200"\w* \w he|strong="H3117"\w* \w had|strong="H1961"\w* \w made|strong="H6213"\w*, \w and|strong="H3117"\w*, \w behold|strong="H2009"\w*, \w it|strong="H6213"\w* \w was|strong="H1961"\w* \w very|strong="H3966"\w* \w good|strong="H2896"\w*. \w There|strong="H2009"\w* \w was|strong="H1961"\w* \w evening|strong="H6153"\w* \w and|strong="H3117"\w* \w there|strong="H2009"\w* \w was|strong="H1961"\w* \w morning|strong="H1242"\w*, \w a|strong="H3068"\w* \w sixth|strong="H8345"\w* \w day|strong="H3117"\w*. +\c 2 +\p +\v 1 \w The|strong="H3605"\w* \w heavens|strong="H8064"\w*, \w the|strong="H3605"\w* \w earth|strong="H8064"\w*, \w and|strong="H8064"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w vast|strong="H6635"\w* \w array|strong="H6635"\w* \w were|strong="H8064"\w* \w finished|strong="H3615"\w*. +\v 2 \w On|strong="H3117"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* God \w finished|strong="H3615"\w* \w his|strong="H3605"\w* \w work|strong="H4399"\w* \w which|strong="H4399"\w* \w he|strong="H3117"\w* \w had|strong="H4399"\w* \w done|strong="H6213"\w*; \w and|strong="H3117"\w* \w he|strong="H3117"\w* \w rested|strong="H7673"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w from|strong="H3117"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w work|strong="H4399"\w* \w which|strong="H4399"\w* \w he|strong="H3117"\w* \w had|strong="H4399"\w* \w done|strong="H6213"\w*. +\v 3 God \w blessed|strong="H1288"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*, \w and|strong="H3117"\w* \w made|strong="H6213"\w* \w it|strong="H3588"\w* \w holy|strong="H6942"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w rested|strong="H7673"\w* \w in|strong="H6213"\w* \w it|strong="H3588"\w* \w from|strong="H3117"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w work|strong="H4399"\w* \w of|strong="H3117"\w* \w creation|strong="H1254"\w* \w which|strong="H4399"\w* \w he|strong="H3588"\w* \w had|strong="H3588"\w* \w done|strong="H6213"\w*. +\p +\v 4 \w This|strong="H6213"\w* \w is|strong="H3068"\w* \w the|strong="H6213"\w* \w history|strong="H8435"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* \w generations|strong="H8435"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* \w heavens|strong="H8064"\w* \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* \w earth|strong="H8064"\w* \w when|strong="H3117"\w* \w they|strong="H3117"\w* \w were|strong="H3117"\w* \w created|strong="H1254"\w*, \w in|strong="H3068"\w* \w the|strong="H6213"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w Yahweh|strong="H3068"\w*\f + \fr 2:4 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w God|strong="H3068"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w earth|strong="H8064"\w* \w and|strong="H3068"\w* \w the|strong="H6213"\w* \w heavens|strong="H8064"\w*. +\v 5 \w No|strong="H3808"\w* \w plant|strong="H6212"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w was|strong="H3068"\w* \w yet|strong="H3588"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* earth, \w and|strong="H3068"\w* \w no|strong="H3808"\w* \w herb|strong="H6212"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w had|strong="H3068"\w* \w yet|strong="H3588"\w* \w sprung|strong="H6779"\w* \w up|strong="H6779"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w* \w had|strong="H3068"\w* \w not|strong="H3808"\w* \w caused|strong="H1961"\w* \w it|strong="H5921"\w* \w to|strong="H3068"\w* \w rain|strong="H4305"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth. \w There|strong="H1961"\w* \w was|strong="H3068"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w to|strong="H3068"\w* \w till|strong="H5647"\w* \w the|strong="H3605"\w* \w ground|strong="H7704"\w*, +\v 6 \w but|strong="H3605"\w* \w a|strong="H3068"\w* mist \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w earth|strong="H5927"\w*, \w and|strong="H6440"\w* \w watered|strong="H8248"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w ground|strong="H6440"\w*. +\v 7 \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w* \w formed|strong="H3335"\w* \w man|strong="H5315"\w* \w from|strong="H4480"\w* \w the|strong="H3068"\w* \w dust|strong="H6083"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w ground|strong="H6083"\w*, \w and|strong="H3068"\w* \w breathed|strong="H5397"\w* \w into|strong="H1961"\w* \w his|strong="H3068"\w* nostrils \w the|strong="H3068"\w* \w breath|strong="H5397"\w* \w of|strong="H3068"\w* \w life|strong="H5315"\w*; \w and|strong="H3068"\w* \w man|strong="H5315"\w* \w became|strong="H1961"\w* \w a|strong="H3068"\w* \w living|strong="H2416"\w* \w soul|strong="H5315"\w*. +\v 8 \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w* \w planted|strong="H5193"\w* \w a|strong="H3068"\w* \w garden|strong="H1588"\w* \w eastward|strong="H6924"\w*, \w in|strong="H3068"\w* \w Eden|strong="H5731"\w*, \w and|strong="H3068"\w* \w there|strong="H8033"\w* \w he|strong="H8033"\w* \w put|strong="H7760"\w* \w the|strong="H3068"\w* man whom \w he|strong="H8033"\w* \w had|strong="H3068"\w* \w formed|strong="H3335"\w*. +\v 9 \w Out|strong="H4480"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* ground \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w* \w made|strong="H6779"\w* \w every|strong="H3605"\w* \w tree|strong="H6086"\w* \w to|strong="H3068"\w* \w grow|strong="H6779"\w* \w that|strong="H3605"\w* \w is|strong="H3068"\w* \w pleasant|strong="H2896"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w sight|strong="H4758"\w*, \w and|strong="H3068"\w* \w good|strong="H2896"\w* \w for|strong="H3068"\w* \w food|strong="H3978"\w*, \w including|strong="H3605"\w* \w the|strong="H3605"\w* \w tree|strong="H6086"\w* \w of|strong="H3068"\w* \w life|strong="H2416"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w garden|strong="H1588"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w tree|strong="H6086"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w knowledge|strong="H1847"\w* \w of|strong="H3068"\w* \w good|strong="H2896"\w* \w and|strong="H3068"\w* \w evil|strong="H7451"\w*. +\v 10 \w A|strong="H3068"\w* \w river|strong="H5104"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H7218"\w* \w Eden|strong="H5731"\w* \w to|strong="H3318"\w* \w water|strong="H8248"\w* \w the|strong="H3318"\w* \w garden|strong="H1588"\w*; \w and|strong="H7218"\w* \w from|strong="H3318"\w* \w there|strong="H8033"\w* \w it|strong="H8033"\w* \w was|strong="H1961"\w* \w parted|strong="H6504"\w*, \w and|strong="H7218"\w* \w became|strong="H1961"\w* \w the|strong="H3318"\w* source \w of|strong="H7218"\w* four \w rivers|strong="H5104"\w*. +\v 11 \w The|strong="H3605"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w the|strong="H3605"\w* first \w is|strong="H1931"\w* \w Pishon|strong="H6376"\w*: \w it|strong="H1931"\w* \w flows|strong="H5437"\w* \w through|strong="H3605"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* land \w of|strong="H8034"\w* \w Havilah|strong="H2341"\w*, \w where|strong="H8033"\w* \w there|strong="H8033"\w* \w is|strong="H1931"\w* \w gold|strong="H2091"\w*; +\v 12 \w and|strong="H2091"\w* \w the|strong="H8033"\w* \w gold|strong="H2091"\w* \w of|strong="H2091"\w* \w that|strong="H1931"\w* land \w is|strong="H1931"\w* \w good|strong="H2896"\w*. Bdellium\f + \fr 2:12 \ft or, aromatic resin\f* \w and|strong="H2091"\w* \w onyx|strong="H7718"\w* stone \w are|strong="H2896"\w* \w also|strong="H1931"\w* \w there|strong="H8033"\w*. +\v 13 \w The|strong="H3605"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w the|strong="H3605"\w* \w second|strong="H8145"\w* \w river|strong="H5104"\w* \w is|strong="H1931"\w* \w Gihon|strong="H1521"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H3605"\w* \w same|strong="H1931"\w* \w river|strong="H5104"\w* \w that|strong="H3605"\w* \w flows|strong="H5437"\w* \w through|strong="H3605"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* land \w of|strong="H8034"\w* \w Cush|strong="H3568"\w*. +\v 14 \w The|strong="H1980"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w the|strong="H1980"\w* \w third|strong="H7992"\w* \w river|strong="H5104"\w* \w is|strong="H1931"\w* \w Hiddekel|strong="H2313"\w*. \w This|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H1980"\w* \w one|strong="H7992"\w* \w which|strong="H1931"\w* \w flows|strong="H1980"\w* \w in|strong="H1980"\w* front \w of|strong="H8034"\w* Assyria. \w The|strong="H1980"\w* \w fourth|strong="H7243"\w* \w river|strong="H5104"\w* \w is|strong="H1931"\w* \w the|strong="H1980"\w* \w Euphrates|strong="H6578"\w*. +\v 15 \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w man|strong="H5647"\w*, \w and|strong="H3068"\w* \w put|strong="H3240"\w* \w him|strong="H3947"\w* \w into|strong="H3947"\w* \w the|strong="H3947"\w* \w garden|strong="H1588"\w* \w of|strong="H3068"\w* \w Eden|strong="H5731"\w* \w to|strong="H3068"\w* \w cultivate|strong="H5647"\w* \w and|strong="H3068"\w* \w keep|strong="H8104"\w* \w it|strong="H3947"\w*. +\v 16 \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w* \w commanded|strong="H6680"\w* \w the|strong="H3605"\w* \w man|strong="H3605"\w*, saying, “\w You|strong="H6680"\w* \w may|strong="H3068"\w* freely eat \w of|strong="H3068"\w* \w every|strong="H3605"\w* \w tree|strong="H6086"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w garden|strong="H1588"\w*; +\v 17 \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3117"\w* \w not|strong="H3808"\w* eat \w of|strong="H3117"\w* \w the|strong="H3588"\w* \w tree|strong="H6086"\w* \w of|strong="H3117"\w* \w the|strong="H3588"\w* \w knowledge|strong="H1847"\w* \w of|strong="H3117"\w* \w good|strong="H2896"\w* \w and|strong="H3117"\w* \w evil|strong="H7451"\w*; \w for|strong="H3588"\w* \w in|strong="H4191"\w* \w the|strong="H3588"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* eat \w of|strong="H3117"\w* \w it|strong="H3588"\w*, \w you|strong="H3588"\w* \w will|strong="H3808"\w* \w surely|strong="H4191"\w* \w die|strong="H4191"\w*.” +\p +\v 18 \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w* said, “\w It|strong="H6213"\w* \w is|strong="H3068"\w* \w not|strong="H3808"\w* \w good|strong="H2896"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w man|strong="H2896"\w* \w to|strong="H3068"\w* \w be|strong="H1961"\w* \w alone|strong="H6213"\w*. \w I|strong="H3808"\w* \w will|strong="H3068"\w* \w make|strong="H6213"\w* \w him|strong="H6213"\w* \w a|strong="H3068"\w* \w helper|strong="H5828"\w* comparable \w to|strong="H3068"\w*\f + \fr 2:18 \ft or, suitable for, or appropriate for.\f* \w him|strong="H6213"\w*.” +\v 19 \w Out|strong="H4480"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w ground|strong="H7704"\w* \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w* \w formed|strong="H3335"\w* \w every|strong="H3605"\w* \w animal|strong="H2416"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*, \w and|strong="H3068"\w* \w every|strong="H3605"\w* \w bird|strong="H5775"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w and|strong="H3068"\w* \w brought|strong="H3068"\w* \w them|strong="H7121"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w man|strong="H5315"\w* \w to|strong="H3068"\w* \w see|strong="H7200"\w* \w what|strong="H4100"\w* \w he|strong="H1931"\w* \w would|strong="H3068"\w* \w call|strong="H7121"\w* \w them|strong="H7121"\w*. \w Whatever|strong="H3605"\w* \w the|strong="H3605"\w* \w man|strong="H5315"\w* \w called|strong="H7121"\w* \w every|strong="H3605"\w* \w living|strong="H2416"\w* \w creature|strong="H5315"\w* \w became|strong="H7200"\w* \w its|strong="H3605"\w* \w name|strong="H8034"\w*. +\v 20 \w The|strong="H3605"\w* \w man|strong="H3605"\w* \w gave|strong="H7121"\w* \w names|strong="H8034"\w* \w to|strong="H7121"\w* \w all|strong="H3605"\w* livestock, \w and|strong="H8064"\w* \w to|strong="H7121"\w* \w the|strong="H3605"\w* \w birds|strong="H5775"\w* \w of|strong="H8034"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w and|strong="H8064"\w* \w to|strong="H7121"\w* \w every|strong="H3605"\w* \w animal|strong="H2416"\w* \w of|strong="H8034"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*; \w but|strong="H3808"\w* \w for|strong="H7121"\w* \w man|strong="H3605"\w* \w there|strong="H4672"\w* \w was|strong="H8034"\w* \w not|strong="H3808"\w* \w found|strong="H4672"\w* \w a|strong="H3068"\w* \w helper|strong="H5828"\w* comparable \w to|strong="H7121"\w* \w him|strong="H7121"\w*. +\v 21 \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w* \w caused|strong="H5307"\w* \w the|strong="H5921"\w* \w man|strong="H5307"\w* \w to|strong="H3068"\w* \w fall|strong="H5307"\w* \w into|strong="H5307"\w* \w a|strong="H3068"\w* \w deep|strong="H8639"\w* \w sleep|strong="H3462"\w*. \w As|strong="H3068"\w* \w the|strong="H5921"\w* \w man|strong="H5307"\w* \w slept|strong="H3462"\w*, \w he|strong="H3068"\w* \w took|strong="H3947"\w* \w one|strong="H3068"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w ribs|strong="H6763"\w*, \w and|strong="H3068"\w* \w closed|strong="H5462"\w* \w up|strong="H5462"\w* \w the|strong="H5921"\w* \w flesh|strong="H1320"\w* \w in|strong="H5921"\w* \w its|strong="H5921"\w* \w place|strong="H8478"\w*. +\v 22 \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w* \w made|strong="H1129"\w* \w a|strong="H3068"\w* woman \w from|strong="H4480"\w* \w the|strong="H3947"\w* \w rib|strong="H6763"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w* \w taken|strong="H3947"\w* \w from|strong="H4480"\w* \w the|strong="H3947"\w* man, \w and|strong="H3068"\w* \w brought|strong="H3947"\w* \w her|strong="H3947"\w* \w to|strong="H3068"\w* \w the|strong="H3947"\w* man. +\v 23 \w The|strong="H3588"\w* \w man|strong="H1320"\w* \w said|strong="H7121"\w*, “\w This|strong="H2063"\w* \w is|strong="H1320"\w* \w now|strong="H6471"\w* \w bone|strong="H6106"\w* \w of|strong="H6106"\w* \w my|strong="H3947"\w* \w bones|strong="H6106"\w*, \w and|strong="H3947"\w* \w flesh|strong="H1320"\w* \w of|strong="H6106"\w* \w my|strong="H3947"\w* \w flesh|strong="H1320"\w*. \w She|strong="H3588"\w* \w will|strong="H1320"\w* \w be|strong="H1320"\w* \w called|strong="H7121"\w* ‘woman,’ \w because|strong="H3588"\w* \w she|strong="H3588"\w* \w was|strong="H1320"\w* \w taken|strong="H3947"\w* \w out|strong="H3947"\w* \w of|strong="H6106"\w* \w Man|strong="H1320"\w*.” +\v 24 \w Therefore|strong="H3651"\w* \w a|strong="H3068"\w* \w man|strong="H1320"\w* \w will|strong="H1961"\w* \w leave|strong="H5800"\w* \w his|strong="H5921"\w* father \w and|strong="H1320"\w* \w his|strong="H5921"\w* mother, \w and|strong="H1320"\w* \w will|strong="H1961"\w* join \w with|strong="H5921"\w* \w his|strong="H5921"\w* wife, \w and|strong="H1320"\w* \w they|strong="H3651"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w one|strong="H1961"\w* \w flesh|strong="H1320"\w*. +\v 25 \w The|strong="H1961"\w* man \w and|strong="H8147"\w* \w his|strong="H1961"\w* wife \w were|strong="H1961"\w* \w both|strong="H8147"\w* \w naked|strong="H6174"\w*, \w and|strong="H8147"\w* \w they|strong="H3808"\w* \w were|strong="H1961"\w* \w not|strong="H3808"\w* ashamed. +\c 3 +\p +\v 1 \w Now|strong="H1961"\w* \w the|strong="H3605"\w* \w serpent|strong="H5175"\w* \w was|strong="H3068"\w* \w more|strong="H3808"\w* subtle \w than|strong="H3808"\w* \w any|strong="H3605"\w* \w animal|strong="H2416"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w* \w had|strong="H3068"\w* \w made|strong="H6213"\w*. \w He|strong="H3588"\w* said \w to|strong="H3068"\w* \w the|strong="H3605"\w* woman, “\w Has|strong="H3068"\w* \w God|strong="H3068"\w* really said, ‘\w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* eat \w of|strong="H3068"\w* \w any|strong="H3605"\w* \w tree|strong="H6086"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w garden|strong="H1588"\w*’?” +\p +\v 2 \w The|strong="H6086"\w* woman said \w to|strong="H6086"\w* \w the|strong="H6086"\w* \w serpent|strong="H5175"\w*, “We \w may|strong="H5175"\w* eat \w fruit|strong="H6529"\w* \w from|strong="H6086"\w* \w the|strong="H6086"\w* \w trees|strong="H6086"\w* \w of|strong="H6086"\w* \w the|strong="H6086"\w* \w garden|strong="H1588"\w*, +\v 3 \w but|strong="H3808"\w* \w not|strong="H3808"\w* \w the|strong="H8432"\w* \w fruit|strong="H6529"\w* \w of|strong="H4480"\w* \w the|strong="H8432"\w* \w tree|strong="H6086"\w* \w which|strong="H6086"\w* \w is|strong="H4191"\w* \w in|strong="H4191"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H4480"\w* \w the|strong="H8432"\w* \w garden|strong="H1588"\w*. \w God|strong="H3808"\w* \w has|strong="H6086"\w* said, ‘\w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* eat \w of|strong="H4480"\w* \w it|strong="H8432"\w*. \w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w touch|strong="H5060"\w* \w it|strong="H8432"\w*, \w lest|strong="H6435"\w* \w you|strong="H3808"\w* \w die|strong="H4191"\w*.’” +\p +\v 4 \w The|strong="H4191"\w* \w serpent|strong="H5175"\w* said \w to|strong="H4191"\w* \w the|strong="H4191"\w* woman, “\w You|strong="H3808"\w* won’t really \w die|strong="H4191"\w*, +\v 5 \w for|strong="H3588"\w* God \w knows|strong="H3045"\w* \w that|strong="H3588"\w* \w in|strong="H3117"\w* \w the|strong="H3588"\w* \w day|strong="H3117"\w* \w you|strong="H3588"\w* eat \w it|strong="H3588"\w*, \w your|strong="H3045"\w* \w eyes|strong="H5869"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w opened|strong="H6491"\w*, \w and|strong="H3117"\w* \w you|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* God, \w knowing|strong="H3045"\w* \w good|strong="H2896"\w* \w and|strong="H3117"\w* \w evil|strong="H7451"\w*.” +\p +\v 6 \w When|strong="H3588"\w* \w the|strong="H7200"\w* woman \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H7200"\w* \w tree|strong="H6086"\w* \w was|strong="H1931"\w* \w good|strong="H2896"\w* \w for|strong="H3588"\w* \w food|strong="H3978"\w*, \w and|strong="H6086"\w* \w that|strong="H3588"\w* \w it|strong="H5414"\w* \w was|strong="H1931"\w* \w a|strong="H3068"\w* \w delight|strong="H2530"\w* \w to|strong="H5414"\w* \w the|strong="H7200"\w* \w eyes|strong="H5869"\w*, \w and|strong="H6086"\w* \w that|strong="H3588"\w* \w the|strong="H7200"\w* \w tree|strong="H6086"\w* \w was|strong="H1931"\w* \w to|strong="H5414"\w* \w be|strong="H1571"\w* \w desired|strong="H2530"\w* \w to|strong="H5414"\w* \w make|strong="H5414"\w* \w one|strong="H1931"\w* \w wise|strong="H7919"\w*, \w she|strong="H1931"\w* \w took|strong="H3947"\w* some \w of|strong="H5869"\w* \w its|strong="H5414"\w* \w fruit|strong="H6529"\w*, \w and|strong="H6086"\w* ate. \w Then|strong="H3947"\w* \w she|strong="H1931"\w* \w gave|strong="H5414"\w* some \w to|strong="H5414"\w* \w her|strong="H5414"\w* husband \w with|strong="H5973"\w* \w her|strong="H5414"\w*, \w and|strong="H6086"\w* \w he|strong="H1931"\w* ate \w it|strong="H5414"\w*, \w too|strong="H1571"\w*. +\v 7 \w Their|strong="H1992"\w* \w eyes|strong="H5869"\w* \w were|strong="H5869"\w* \w opened|strong="H6491"\w*, \w and|strong="H5869"\w* \w they|strong="H1992"\w* \w both|strong="H8147"\w* \w knew|strong="H3045"\w* \w that|strong="H3588"\w* \w they|strong="H1992"\w* \w were|strong="H5869"\w* \w naked|strong="H5903"\w*. \w They|strong="H1992"\w* \w sewed|strong="H8609"\w* \w fig|strong="H8384"\w* \w leaves|strong="H5929"\w* \w together|strong="H8609"\w*, \w and|strong="H5869"\w* \w made|strong="H6213"\w* \w coverings|strong="H2290"\w* \w for|strong="H3588"\w* \w themselves|strong="H1992"\w*. +\v 8 \w They|strong="H3117"\w* \w heard|strong="H8085"\w* \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w* \w walking|strong="H1980"\w* \w in|strong="H1980"\w* \w the|strong="H6440"\w* \w garden|strong="H1588"\w* \w in|strong="H1980"\w* \w the|strong="H6440"\w* \w cool|strong="H7307"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w day|strong="H3117"\w*, \w and|strong="H1980"\w* \w the|strong="H6440"\w* \w man|strong="H6440"\w* \w and|strong="H1980"\w* \w his|strong="H3068"\w* wife \w hid|strong="H2244"\w* \w themselves|strong="H2244"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w* \w among|strong="H8432"\w* \w the|strong="H6440"\w* \w trees|strong="H6086"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w garden|strong="H1588"\w*. +\p +\v 9 \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w* \w called|strong="H7121"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* man, \w and|strong="H3068"\w* \w said|strong="H7121"\w* \w to|strong="H3068"\w* \w him|strong="H7121"\w*, “Where \w are|strong="H3068"\w* \w you|strong="H7121"\w*?” +\p +\v 10 \w The|strong="H8085"\w* man \w said|strong="H8085"\w*, “\w I|strong="H3588"\w* \w heard|strong="H8085"\w* \w your|strong="H8085"\w* \w voice|strong="H6963"\w* \w in|strong="H8085"\w* \w the|strong="H8085"\w* \w garden|strong="H1588"\w*, \w and|strong="H6963"\w* \w I|strong="H3588"\w* \w was|strong="H6963"\w* \w afraid|strong="H3372"\w*, \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w was|strong="H6963"\w* \w naked|strong="H5903"\w*; \w so|strong="H3588"\w* \w I|strong="H3588"\w* \w hid|strong="H2244"\w* \w myself|strong="H2244"\w*.” +\p +\v 11 \w God|strong="H4310"\w* said, “\w Who|strong="H4310"\w* \w told|strong="H5046"\w* \w you|strong="H3588"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w were|strong="H4480"\w* \w naked|strong="H5903"\w*? \w Have|strong="H3588"\w* \w you|strong="H3588"\w* eaten \w from|strong="H4480"\w* \w the|strong="H3588"\w* \w tree|strong="H6086"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w commanded|strong="H6680"\w* \w you|strong="H3588"\w* \w not|strong="H1115"\w* \w to|strong="H6680"\w* eat \w from|strong="H4480"\w*?” +\p +\v 12 \w The|strong="H5414"\w* man said, “\w The|strong="H5414"\w* woman whom \w you|strong="H5414"\w* \w gave|strong="H5414"\w* \w to|strong="H5414"\w* \w be|strong="H5414"\w* \w with|strong="H6086"\w* \w me|strong="H5414"\w*, \w she|strong="H1931"\w* \w gave|strong="H5414"\w* \w me|strong="H5414"\w* \w fruit|strong="H6086"\w* \w from|strong="H4480"\w* \w the|strong="H5414"\w* \w tree|strong="H6086"\w*, \w and|strong="H6086"\w* \w I|strong="H5414"\w* ate \w it|strong="H5414"\w*.” +\p +\v 13 \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w* said \w to|strong="H3068"\w* \w the|strong="H6213"\w* woman, “\w What|strong="H4100"\w* \w have|strong="H3068"\w* \w you|strong="H6213"\w* \w done|strong="H6213"\w*?” +\p \w The|strong="H6213"\w* woman said, “\w The|strong="H6213"\w* \w serpent|strong="H5175"\w* \w deceived|strong="H5377"\w* \w me|strong="H6213"\w*, \w and|strong="H3068"\w* \w I|strong="H4100"\w* ate.” +\p +\v 14 \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w* said \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w serpent|strong="H5175"\w*, +\q1 “\w Because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w this|strong="H2063"\w*, +\q2 \w you|strong="H3588"\w* \w are|strong="H3117"\w* cursed \w above|strong="H5921"\w* \w all|strong="H3605"\w* livestock, +\q2 \w and|strong="H3068"\w* \w above|strong="H5921"\w* \w every|strong="H3605"\w* \w animal|strong="H2416"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*. +\q1 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w go|strong="H3212"\w* \w on|strong="H5921"\w* \w your|strong="H3068"\w* \w belly|strong="H1512"\w* +\q2 \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* eat \w dust|strong="H6083"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w life|strong="H2416"\w*. +\q1 +\v 15 I \w will|strong="H2233"\w* \w put|strong="H7896"\w* hostility between \w you|strong="H2233"\w* \w and|strong="H7218"\w* \w the|strong="H1931"\w* woman, +\q2 \w and|strong="H7218"\w* between \w your|strong="H7896"\w* \w offspring|strong="H2233"\w* \w and|strong="H7218"\w* \w her|strong="H7896"\w* \w offspring|strong="H2233"\w*. +\q1 \w He|strong="H1931"\w* \w will|strong="H2233"\w* \w bruise|strong="H7779"\w* \w your|strong="H7896"\w* \w head|strong="H7218"\w*, +\q2 \w and|strong="H7218"\w* \w you|strong="H2233"\w* \w will|strong="H2233"\w* \w bruise|strong="H7779"\w* \w his|strong="H7896"\w* \w heel|strong="H6119"\w*.” +\p +\v 16 \w To|strong="H3205"\w* \w the|strong="H3205"\w* \w woman|strong="H3205"\w* \w he|strong="H1931"\w* said, +\q1 “\w I|strong="H1121"\w* \w will|strong="H1121"\w* \w greatly|strong="H7235"\w* \w multiply|strong="H7235"\w* \w your|strong="H7235"\w* \w pain|strong="H6093"\w* \w in|strong="H1121"\w* \w childbirth|strong="H3205"\w*. +\q2 \w You|strong="H3205"\w* \w will|strong="H1121"\w* \w bear|strong="H3205"\w* \w children|strong="H1121"\w* \w in|strong="H1121"\w* \w pain|strong="H6093"\w*. +\q1 \w Your|strong="H7235"\w* \w desire|strong="H8669"\w* \w will|strong="H1121"\w* \w be|strong="H1121"\w* \w for|strong="H1121"\w* \w your|strong="H7235"\w* husband, +\q2 \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w will|strong="H1121"\w* \w rule|strong="H4910"\w* \w over|strong="H4910"\w* \w you|strong="H3205"\w*.” +\p +\v 17 \w To|strong="H3117"\w* Adam \w he|strong="H3588"\w* \w said|strong="H8085"\w*, +\q1 “\w Because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3117"\w* \w listened|strong="H8085"\w* \w to|strong="H3117"\w* \w your|strong="H3605"\w* \w wife|strong="H2416"\w*’s \w voice|strong="H6963"\w*, +\q2 \w and|strong="H3117"\w* \w have|strong="H3117"\w* eaten \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w tree|strong="H6086"\w*, +\q2 \w about|strong="H8085"\w* \w which|strong="H6086"\w* \w I|strong="H3588"\w* \w commanded|strong="H6680"\w* \w you|strong="H3588"\w*, \w saying|strong="H6963"\w*, ‘\w You|strong="H3588"\w* \w shall|strong="H3117"\w* \w not|strong="H3808"\w* eat \w of|strong="H3117"\w* \w it|strong="H3588"\w*,’ +\q2 \w the|strong="H3605"\w* ground \w is|strong="H3117"\w* cursed \w for|strong="H3588"\w* \w your|strong="H3605"\w* \w sake|strong="H5668"\w*. +\q1 \w You|strong="H3588"\w* \w will|strong="H3808"\w* eat \w from|strong="H4480"\w* \w it|strong="H3588"\w* \w with|strong="H3117"\w* \w much|strong="H3605"\w* labor \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H3605"\w* \w life|strong="H2416"\w*. +\q2 +\v 18 It \w will|strong="H7704"\w* yield \w thorns|strong="H6975"\w* \w and|strong="H7704"\w* \w thistles|strong="H1863"\w* \w to|strong="H7704"\w* you; +\q2 \w and|strong="H7704"\w* you \w will|strong="H7704"\w* eat \w the|strong="H7704"\w* \w herb|strong="H6212"\w* \w of|strong="H7704"\w* \w the|strong="H7704"\w* \w field|strong="H7704"\w*. +\q1 +\v 19 \w You|strong="H3588"\w* \w will|strong="H5704"\w* \w eat|strong="H3899"\w* \w bread|strong="H3899"\w* \w by|strong="H5704"\w* \w the|strong="H3588"\w* \w sweat|strong="H2188"\w* \w of|strong="H4480"\w* \w your|strong="H3947"\w* face \w until|strong="H5704"\w* \w you|strong="H3588"\w* \w return|strong="H7725"\w* \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w ground|strong="H6083"\w*, +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w were|strong="H4480"\w* \w taken|strong="H3947"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w it|strong="H3588"\w*. +\q1 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H4480"\w* \w dust|strong="H6083"\w*, +\q2 \w and|strong="H7725"\w* \w you|strong="H3588"\w* \w shall|strong="H6083"\w* \w return|strong="H7725"\w* \w to|strong="H5704"\w* \w dust|strong="H6083"\w*.” +\p +\v 20 \w The|strong="H3605"\w* \w man|strong="H3605"\w* \w called|strong="H7121"\w* \w his|strong="H3605"\w* \w wife|strong="H2416"\w* \w Eve|strong="H2332"\w* \w because|strong="H3588"\w* \w she|strong="H1931"\w* \w would|strong="H3605"\w* \w be|strong="H1961"\w* \w the|strong="H3605"\w* mother \w of|strong="H8034"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w living|strong="H2416"\w*. +\v 21 \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w* \w made|strong="H6213"\w* \w garments|strong="H3801"\w* \w of|strong="H3068"\w* animal \w skins|strong="H5785"\w* \w for|strong="H6213"\w* Adam \w and|strong="H3068"\w* \w for|strong="H6213"\w* \w his|strong="H3068"\w* wife, \w and|strong="H3068"\w* \w clothed|strong="H3847"\w* \w them|strong="H6213"\w*. +\p +\v 22 \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w* said, “\w Behold|strong="H2005"\w*, \w the|strong="H3947"\w* \w man|strong="H7451"\w* \w has|strong="H3068"\w* \w become|strong="H1961"\w* \w like|strong="H1961"\w* \w one|strong="H4480"\w* \w of|strong="H3068"\w* \w us|strong="H3045"\w*, \w knowing|strong="H3045"\w* \w good|strong="H2896"\w* \w and|strong="H3068"\w* \w evil|strong="H7451"\w*. \w Now|strong="H6258"\w*, \w lest|strong="H6435"\w* \w he|strong="H3068"\w* \w reach|strong="H1961"\w* \w out|strong="H7971"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w*, \w and|strong="H3068"\w* \w also|strong="H1571"\w* \w take|strong="H3947"\w* \w of|strong="H3068"\w* \w the|strong="H3947"\w* \w tree|strong="H6086"\w* \w of|strong="H3068"\w* \w life|strong="H2416"\w*, \w and|strong="H3068"\w* eat, \w and|strong="H3068"\w* \w live|strong="H2416"\w* \w forever|strong="H5769"\w*—” +\v 23 \w Therefore|strong="H7971"\w* \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w* \w sent|strong="H7971"\w* \w him|strong="H7971"\w* \w out|strong="H7971"\w* \w from|strong="H7971"\w* \w the|strong="H3947"\w* \w garden|strong="H1588"\w* \w of|strong="H3068"\w* \w Eden|strong="H5731"\w*, \w to|strong="H3068"\w* \w till|strong="H5647"\w* \w the|strong="H3947"\w* ground \w from|strong="H7971"\w* \w which|strong="H3068"\w* \w he|strong="H8033"\w* \w was|strong="H3068"\w* \w taken|strong="H3947"\w*. +\v 24 So \w he|strong="H2416"\w* \w drove|strong="H1644"\w* \w out|strong="H1644"\w* \w the|strong="H8104"\w* \w man|strong="H2416"\w*; \w and|strong="H6086"\w* \w he|strong="H2416"\w* \w placed|strong="H7931"\w* \w cherubim|strong="H3742"\w*\f + \fr 3:24 \ft cherubim are powerful angelic creatures, messengers of God with wings. See Ezekiel 10.\f* \w at|strong="H7931"\w* \w the|strong="H8104"\w* \w east|strong="H6924"\w* \w of|strong="H1870"\w* \w the|strong="H8104"\w* \w garden|strong="H1588"\w* \w of|strong="H1870"\w* \w Eden|strong="H5731"\w*, \w and|strong="H6086"\w* \w a|strong="H3068"\w* \w flaming|strong="H3858"\w* \w sword|strong="H2719"\w* \w which|strong="H6086"\w* \w turned|strong="H2015"\w* \w every|strong="H8104"\w* \w way|strong="H1870"\w*, \w to|strong="H8104"\w* \w guard|strong="H8104"\w* \w the|strong="H8104"\w* \w way|strong="H1870"\w* \w to|strong="H8104"\w* \w the|strong="H8104"\w* \w tree|strong="H6086"\w* \w of|strong="H1870"\w* \w life|strong="H2416"\w*. +\c 4 +\p +\v 1 \w The|strong="H3205"\w* \w man|strong="H3045"\w* \w knew|strong="H3045"\w*\f + \fr 4:1 \ft or, lay with, or, had relations with\f* \w Eve|strong="H2332"\w* \w his|strong="H3068"\w* wife. She \w conceived|strong="H2029"\w*,\f + \fr 4:1 \ft or, became pregnant\f* \w and|strong="H3068"\w* \w gave|strong="H3205"\w* \w birth|strong="H3205"\w* \w to|strong="H3068"\w* \w Cain|strong="H7014"\w*, \w and|strong="H3068"\w* said, “\w I|strong="H3045"\w* \w have|strong="H3068"\w* \w gotten|strong="H7069"\w* \w a|strong="H3068"\w* \w man|strong="H3045"\w* \w with|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s help.” +\v 2 \w Again|strong="H3254"\w* she \w gave|strong="H3205"\w* \w birth|strong="H3205"\w*, \w to|strong="H1961"\w* \w Cain|strong="H7014"\w*’s brother \w Abel|strong="H1893"\w*. \w Abel|strong="H1893"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w keeper|strong="H7462"\w* \w of|strong="H3205"\w* \w sheep|strong="H6629"\w*, \w but|strong="H1961"\w* \w Cain|strong="H7014"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w tiller|strong="H5647"\w* \w of|strong="H3205"\w* \w the|strong="H5647"\w* ground. +\v 3 \w As|strong="H3117"\w* \w time|strong="H3117"\w* \w passed|strong="H3068"\w*, \w Cain|strong="H7014"\w* \w brought|strong="H1961"\w* \w an|strong="H1961"\w* \w offering|strong="H4503"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w from|strong="H3117"\w* \w the|strong="H3068"\w* \w fruit|strong="H6529"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* ground. +\v 4 \w Abel|strong="H1893"\w* \w also|strong="H1571"\w* \w brought|strong="H3068"\w* some \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w firstborn|strong="H1062"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w flock|strong="H6629"\w* \w and|strong="H3068"\w* \w of|strong="H3068"\w* its \w fat|strong="H2459"\w*. \w Yahweh|strong="H3068"\w* respected \w Abel|strong="H1893"\w* \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w offering|strong="H4503"\w*, +\v 5 \w but|strong="H3808"\w* \w he|strong="H3808"\w* didn’t \w respect|strong="H8159"\w* \w Cain|strong="H7014"\w* \w and|strong="H6440"\w* \w his|strong="H6440"\w* \w offering|strong="H4503"\w*. \w Cain|strong="H7014"\w* \w was|strong="H3966"\w* \w very|strong="H3966"\w* \w angry|strong="H2734"\w*, \w and|strong="H6440"\w* \w the|strong="H6440"\w* \w expression|strong="H6440"\w* \w on|strong="H5307"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w* \w fell|strong="H5307"\w*. +\v 6 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Cain|strong="H7014"\w*, “\w Why|strong="H4100"\w* \w are|strong="H4100"\w* \w you|strong="H6440"\w* \w angry|strong="H2734"\w*? \w Why|strong="H4100"\w* \w has|strong="H3068"\w* \w the|strong="H6440"\w* \w expression|strong="H6440"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w face|strong="H6440"\w* \w fallen|strong="H5307"\w*? +\v 7 If \w you|strong="H3808"\w* \w do|strong="H3190"\w* \w well|strong="H3190"\w*, won’t \w it|strong="H3190"\w* \w be|strong="H3808"\w* \w lifted|strong="H7613"\w* \w up|strong="H7613"\w*? If \w you|strong="H3808"\w* don’t \w do|strong="H3190"\w* \w well|strong="H3190"\w*, \w sin|strong="H2403"\w* crouches \w at|strong="H3808"\w* \w the|strong="H3808"\w* \w door|strong="H6607"\w*. \w Its|strong="H3808"\w* \w desire|strong="H8669"\w* \w is|strong="H2403"\w* \w for|strong="H3808"\w* \w you|strong="H3808"\w*, \w but|strong="H3808"\w* \w you|strong="H3808"\w* \w are|strong="H2403"\w* \w to|strong="H3808"\w* \w rule|strong="H4910"\w* \w over|strong="H4910"\w* \w it|strong="H3190"\w*.” +\v 8 \w Cain|strong="H7014"\w* said \w to|strong="H1961"\w* \w Abel|strong="H1893"\w*, \w his|strong="H1961"\w* brother, “\w Let|strong="H1961"\w*’s \w go|strong="H6965"\w* \w into|strong="H1961"\w* \w the|strong="H6965"\w* \w field|strong="H7704"\w*.” \w While|strong="H1961"\w* they \w were|strong="H1961"\w* \w in|strong="H6965"\w* \w the|strong="H6965"\w* \w field|strong="H7704"\w*, \w Cain|strong="H7014"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H6965"\w* \w Abel|strong="H1893"\w*, \w his|strong="H1961"\w* brother, \w and|strong="H6965"\w* \w killed|strong="H2026"\w* \w him|strong="H2026"\w*. +\p +\v 9 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Cain|strong="H7014"\w*, “\w Where|strong="H3808"\w* \w is|strong="H3068"\w* \w Abel|strong="H1893"\w*, \w your|strong="H3068"\w* brother?” +\p \w He|strong="H3068"\w* said, “\w I|strong="H3045"\w* don’t \w know|strong="H3045"\w*. \w Am|strong="H3068"\w* \w I|strong="H3045"\w* \w my|strong="H8104"\w* brother’s \w keeper|strong="H8104"\w*?” +\p +\v 10 \w Yahweh|strong="H3068"\w* said, “\w What|strong="H4100"\w* have \w you|strong="H6213"\w* \w done|strong="H6213"\w*? \w The|strong="H6213"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w your|strong="H6213"\w* brother’s \w blood|strong="H1818"\w* \w cries|strong="H6963"\w* \w to|strong="H6213"\w* \w me|strong="H6963"\w* \w from|strong="H4480"\w* \w the|strong="H6213"\w* ground. +\v 11 \w Now|strong="H6258"\w* \w you|strong="H3947"\w* \w are|strong="H3027"\w* cursed \w because|strong="H4480"\w* \w of|strong="H3027"\w* \w the|strong="H3947"\w* ground, \w which|strong="H1818"\w* \w has|strong="H3027"\w* \w opened|strong="H6475"\w* \w its|strong="H6475"\w* \w mouth|strong="H6310"\w* \w to|strong="H3027"\w* \w receive|strong="H3947"\w* \w your|strong="H3947"\w* brother’s \w blood|strong="H1818"\w* \w from|strong="H4480"\w* \w your|strong="H3947"\w* \w hand|strong="H3027"\w*. +\v 12 \w From|strong="H1961"\w* \w now|strong="H1961"\w* \w on|strong="H1961"\w*, \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w till|strong="H5647"\w* \w the|strong="H3588"\w* ground, \w it|strong="H5414"\w* won’t \w yield|strong="H5414"\w* \w its|strong="H5414"\w* \w strength|strong="H3581"\w* \w to|strong="H1961"\w* \w you|strong="H3588"\w*. \w You|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w fugitive|strong="H5128"\w* \w and|strong="H3254"\w* \w a|strong="H3068"\w* \w wanderer|strong="H5110"\w* \w in|strong="H5414"\w* \w the|strong="H3588"\w* earth.” +\p +\v 13 \w Cain|strong="H7014"\w* said \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, “\w My|strong="H3068"\w* \w punishment|strong="H5771"\w* \w is|strong="H3068"\w* \w greater|strong="H1419"\w* \w than|strong="H1419"\w* \w I|strong="H3068"\w* can \w bear|strong="H5375"\w*. +\v 14 \w Behold|strong="H2005"\w*, \w you|strong="H6440"\w* \w have|strong="H1961"\w* \w driven|strong="H1644"\w* \w me|strong="H6440"\w* \w out|strong="H1644"\w* \w today|strong="H3117"\w* \w from|strong="H6440"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w ground|strong="H6440"\w*. \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w hidden|strong="H5641"\w* \w from|strong="H6440"\w* \w your|strong="H3605"\w* \w face|strong="H6440"\w*, \w and|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w fugitive|strong="H5128"\w* \w and|strong="H3117"\w* \w a|strong="H3068"\w* \w wanderer|strong="H5110"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* earth. \w Whoever|strong="H3605"\w* \w finds|strong="H4672"\w* \w me|strong="H6440"\w* \w will|strong="H1961"\w* \w kill|strong="H2026"\w* \w me|strong="H6440"\w*.” +\p +\v 15 \w Yahweh|strong="H3068"\w* \w said|strong="H3651"\w* \w to|strong="H3068"\w* \w him|strong="H5221"\w*, “\w Therefore|strong="H3651"\w* \w whoever|strong="H3605"\w* \w slays|strong="H2026"\w* \w Cain|strong="H7014"\w*, \w vengeance|strong="H5358"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w taken|strong="H5358"\w* \w on|strong="H7760"\w* \w him|strong="H5221"\w* \w sevenfold|strong="H7659"\w*.” \w Yahweh|strong="H3068"\w* \w appointed|strong="H7760"\w* \w a|strong="H3068"\w* sign \w for|strong="H3068"\w* \w Cain|strong="H7014"\w*, \w so|strong="H3651"\w* \w that|strong="H3605"\w* \w anyone|strong="H3605"\w* \w finding|strong="H4672"\w* \w him|strong="H5221"\w* \w would|strong="H3068"\w* \w not|strong="H1115"\w* \w strike|strong="H5221"\w* \w him|strong="H5221"\w*. +\p +\v 16 \w Cain|strong="H7014"\w* \w left|strong="H3318"\w* \w Yahweh|strong="H3068"\w*’s \w presence|strong="H6440"\w*, \w and|strong="H3068"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H3068"\w* \w Nod|strong="H5113"\w*, \w east|strong="H6926"\w* \w of|strong="H3068"\w* \w Eden|strong="H5731"\w*. +\v 17 \w Cain|strong="H7014"\w* \w knew|strong="H3045"\w* \w his|strong="H7121"\w* wife. \w She|strong="H7121"\w* \w conceived|strong="H2029"\w*, \w and|strong="H1121"\w* \w gave|strong="H3205"\w* \w birth|strong="H3205"\w* \w to|strong="H1961"\w* \w Enoch|strong="H2585"\w*. \w He|strong="H7121"\w* \w built|strong="H1129"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w*, \w and|strong="H1121"\w* \w named|strong="H7121"\w* \w the|strong="H3205"\w* \w city|strong="H5892"\w* \w after|strong="H1961"\w* \w the|strong="H3205"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w his|strong="H7121"\w* \w son|strong="H1121"\w*, \w Enoch|strong="H2585"\w*. +\v 18 \w Irad|strong="H5897"\w* \w was|strong="H3205"\w* \w born|strong="H3205"\w* \w to|strong="H3205"\w* \w Enoch|strong="H2585"\w*. \w Irad|strong="H5897"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Mehujael|strong="H4232"\w*. \w Mehujael|strong="H4232"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Methushael|strong="H4967"\w*. \w Methushael|strong="H4967"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Lamech|strong="H3929"\w*. +\v 19 \w Lamech|strong="H3929"\w* \w took|strong="H3947"\w* \w two|strong="H8147"\w* wives: \w the|strong="H3947"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w the|strong="H3947"\w* first \w one|strong="H8147"\w* \w was|strong="H8034"\w* \w Adah|strong="H5711"\w*, \w and|strong="H8147"\w* \w the|strong="H3947"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w the|strong="H3947"\w* \w second|strong="H8145"\w* \w one|strong="H8147"\w* \w was|strong="H8034"\w* \w Zillah|strong="H6741"\w*. +\v 20 \w Adah|strong="H5711"\w* \w gave|strong="H3205"\w* \w birth|strong="H3205"\w* \w to|strong="H1961"\w* \w Jabal|strong="H2989"\w*, \w who|strong="H1931"\w* \w was|strong="H1961"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3427"\w* \w those|strong="H1931"\w* \w who|strong="H1931"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* tents \w and|strong="H3427"\w* \w have|strong="H1961"\w* \w livestock|strong="H4735"\w*. +\v 21 \w His|strong="H3605"\w* brother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Jubal|strong="H3106"\w*, \w who|strong="H3605"\w* \w was|strong="H8034"\w* \w the|strong="H3605"\w* father \w of|strong="H8034"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w handle|strong="H8610"\w* \w the|strong="H3605"\w* \w harp|strong="H3658"\w* \w and|strong="H3658"\w* \w pipe|strong="H5748"\w*. +\v 22 \w Zillah|strong="H6741"\w* \w also|strong="H1571"\w* \w gave|strong="H3205"\w* \w birth|strong="H3205"\w* \w to|strong="H3205"\w* Tubal Cain, \w the|strong="H3605"\w* \w forger|strong="H3913"\w* \w of|strong="H3205"\w* \w every|strong="H3605"\w* cutting instrument \w of|strong="H3205"\w* \w bronze|strong="H5178"\w* \w and|strong="H5178"\w* \w iron|strong="H1270"\w*. Tubal Cain’s sister \w was|strong="H1931"\w* \w Naamah|strong="H5279"\w*. +\v 23 \w Lamech|strong="H3929"\w* \w said|strong="H8085"\w* \w to|strong="H8085"\w* \w his|strong="H8085"\w* wives, +\q1 “\w Adah|strong="H5711"\w* \w and|strong="H6963"\w* \w Zillah|strong="H6741"\w*, \w hear|strong="H8085"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*. +\q2 \w You|strong="H3588"\w* wives \w of|strong="H6963"\w* \w Lamech|strong="H3929"\w*, \w listen|strong="H8085"\w* \w to|strong="H8085"\w* \w my|strong="H8085"\w* speech, +\q1 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3588"\w* \w slain|strong="H2026"\w* \w a|strong="H3068"\w* \w man|strong="H3206"\w* \w for|strong="H3588"\w* \w wounding|strong="H6482"\w* \w me|strong="H6963"\w*, +\q2 \w a|strong="H3068"\w* \w young|strong="H3206"\w* \w man|strong="H3206"\w* \w for|strong="H3588"\w* bruising \w me|strong="H6963"\w*. +\q1 +\v 24 \w If|strong="H3588"\w* \w Cain|strong="H7014"\w* \w will|strong="H3588"\w* \w be|strong="H3588"\w* \w avenged|strong="H5358"\w* \w seven|strong="H7651"\w* \w times|strong="H7651"\w*, +\q2 \w truly|strong="H3588"\w* \w Lamech|strong="H3929"\w* \w seventy-seven|strong="H7657"\w* \w times|strong="H7651"\w*.” +\p +\v 25 Adam \w knew|strong="H3045"\w* \w his|strong="H7121"\w* wife \w again|strong="H5750"\w*. \w She|strong="H3588"\w* \w gave|strong="H3205"\w* \w birth|strong="H3205"\w* \w to|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w named|strong="H7121"\w* \w him|strong="H3205"\w* \w Seth|strong="H8352"\w*, saying, “\w for|strong="H3588"\w* God \w has|strong="H3588"\w* \w given|strong="H3205"\w* \w me|strong="H7121"\w* \w another|strong="H5750"\w* \w child|strong="H1121"\w* \w instead|strong="H8478"\w* \w of|strong="H1121"\w* \w Abel|strong="H1893"\w*, \w for|strong="H3588"\w* \w Cain|strong="H7014"\w* \w killed|strong="H2026"\w* \w him|strong="H3205"\w*.” +\v 26 \w A|strong="H3068"\w* \w son|strong="H1121"\w* \w was|strong="H3068"\w* \w also|strong="H1571"\w* \w born|strong="H3205"\w* \w to|strong="H3068"\w* \w Seth|strong="H8352"\w*, \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w named|strong="H7121"\w* \w him|strong="H3205"\w* Enosh. \w At|strong="H3068"\w* \w that|strong="H1931"\w* time \w men|strong="H1121"\w* \w began|strong="H2490"\w* \w to|strong="H3068"\w* \w call|strong="H7121"\w* \w on|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*. +\c 5 +\p +\v 1 \w This|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H6213"\w* \w book|strong="H5612"\w* \w of|strong="H3117"\w* \w the|strong="H6213"\w* \w generations|strong="H8435"\w* \w of|strong="H3117"\w* Adam. \w In|strong="H6213"\w* \w the|strong="H6213"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* God \w created|strong="H1254"\w* \w man|strong="H2088"\w*, \w he|strong="H3117"\w* \w made|strong="H6213"\w* \w him|strong="H6213"\w* \w in|strong="H6213"\w* God’s \w likeness|strong="H1823"\w*. +\v 2 \w He|strong="H3117"\w* \w created|strong="H1254"\w* \w them|strong="H7121"\w* \w male|strong="H2145"\w* \w and|strong="H3117"\w* \w female|strong="H5347"\w*, \w and|strong="H3117"\w* \w blessed|strong="H1288"\w* \w them|strong="H7121"\w*. \w On|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w they|strong="H3117"\w* \w were|strong="H3117"\w* \w created|strong="H1254"\w*, \w he|strong="H3117"\w* \w named|strong="H7121"\w* \w them|strong="H7121"\w* Adam.\f + \fr 5:2 \ft “Adam” and “Man” are spelled with the exact same consonants in Hebrew, so this can be correctly translated either way.\f* +\v 3 Adam \w lived|strong="H2421"\w* \w one|strong="H2421"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w* \w years|strong="H8141"\w*, \w and|strong="H3967"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H8141"\w* \w a|strong="H3068"\w* \w son|strong="H3205"\w* \w in|strong="H8141"\w* \w his|strong="H7121"\w* own \w likeness|strong="H1823"\w*, \w after|strong="H7121"\w* \w his|strong="H7121"\w* \w image|strong="H6754"\w*, \w and|strong="H3967"\w* \w named|strong="H7121"\w* \w him|strong="H3205"\w* \w Seth|strong="H8352"\w*. +\v 4 \w The|strong="H3205"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* Adam \w after|strong="H1961"\w* \w he|strong="H3117"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Seth|strong="H8352"\w* \w were|strong="H1961"\w* \w eight|strong="H8083"\w* \w hundred|strong="H3967"\w* \w years|strong="H8141"\w*, \w and|strong="H3967"\w* \w he|strong="H3117"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w other|strong="H3205"\w* \w sons|strong="H1121"\w* \w and|strong="H3967"\w* \w daughters|strong="H1323"\w*. +\v 5 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w that|strong="H3605"\w* Adam \w lived|strong="H2425"\w* \w were|strong="H1961"\w* \w nine|strong="H8672"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w* \w years|strong="H8141"\w*, \w then|strong="H1961"\w* \w he|strong="H3117"\w* \w died|strong="H4191"\w*. +\p +\v 6 \w Seth|strong="H8352"\w* \w lived|strong="H2421"\w* \w one|strong="H2421"\w* \w hundred|strong="H3967"\w* \w five|strong="H2568"\w* \w years|strong="H8141"\w*, then \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H8141"\w* Enosh. +\v 7 \w Seth|strong="H8352"\w* \w lived|strong="H2421"\w* \w after|strong="H8141"\w* \w he|strong="H8141"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* Enosh \w eight|strong="H8083"\w* \w hundred|strong="H3967"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w*, \w and|strong="H3967"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w other|strong="H3205"\w* \w sons|strong="H1121"\w* \w and|strong="H3967"\w* \w daughters|strong="H1323"\w*. +\v 8 \w All|strong="H3605"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w Seth|strong="H8352"\w* \w were|strong="H1961"\w* \w nine|strong="H8672"\w* \w hundred|strong="H3967"\w* \w twelve|strong="H8147"\w* \w years|strong="H8141"\w*, \w then|strong="H1961"\w* \w he|strong="H3117"\w* \w died|strong="H4191"\w*. +\p +\v 9 Enosh \w lived|strong="H2421"\w* \w ninety|strong="H8673"\w* \w years|strong="H8141"\w*, \w and|strong="H8141"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H8141"\w* \w Kenan|strong="H7018"\w*. +\v 10 Enosh \w lived|strong="H2421"\w* \w after|strong="H8141"\w* \w he|strong="H2568"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Kenan|strong="H7018"\w* \w eight|strong="H8083"\w* \w hundred|strong="H3967"\w* \w fifteen|strong="H2568"\w* \w years|strong="H8141"\w*, \w and|strong="H3967"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w other|strong="H3205"\w* \w sons|strong="H1121"\w* \w and|strong="H3967"\w* \w daughters|strong="H1323"\w*. +\v 11 \w All|strong="H3605"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* Enosh \w were|strong="H1961"\w* \w nine|strong="H8672"\w* \w hundred|strong="H3967"\w* \w five|strong="H2568"\w* \w years|strong="H8141"\w*, \w then|strong="H1961"\w* \w he|strong="H3117"\w* \w died|strong="H4191"\w*. +\p +\v 12 \w Kenan|strong="H7018"\w* \w lived|strong="H2421"\w* \w seventy|strong="H7657"\w* \w years|strong="H8141"\w*, then \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H8141"\w* \w Mahalalel|strong="H4111"\w*. +\v 13 \w Kenan|strong="H7018"\w* \w lived|strong="H2421"\w* \w after|strong="H8141"\w* \w he|strong="H8141"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Mahalalel|strong="H4111"\w* \w eight|strong="H8083"\w* \w hundred|strong="H3967"\w* forty \w years|strong="H8141"\w*, \w and|strong="H3967"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w other|strong="H3205"\w* \w sons|strong="H1121"\w* \w and|strong="H3967"\w* \w daughters|strong="H1323"\w* +\v 14 \w and|strong="H3967"\w* \w all|strong="H3605"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w Kenan|strong="H7018"\w* \w were|strong="H1961"\w* \w nine|strong="H8672"\w* \w hundred|strong="H3967"\w* \w ten|strong="H6235"\w* \w years|strong="H8141"\w*, \w then|strong="H1961"\w* \w he|strong="H3117"\w* \w died|strong="H4191"\w*. +\p +\v 15 \w Mahalalel|strong="H4111"\w* \w lived|strong="H2421"\w* \w sixty-five|strong="H8346"\w* \w years|strong="H8141"\w*, then \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H8141"\w* \w Jared|strong="H3382"\w*. +\v 16 \w Mahalalel|strong="H4111"\w* \w lived|strong="H2421"\w* \w after|strong="H8141"\w* \w he|strong="H8141"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Jared|strong="H3382"\w* \w eight|strong="H8083"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w* \w years|strong="H8141"\w*, \w and|strong="H3967"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w other|strong="H3205"\w* \w sons|strong="H1121"\w* \w and|strong="H3967"\w* \w daughters|strong="H1323"\w*. +\v 17 \w All|strong="H3605"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w Mahalalel|strong="H4111"\w* \w were|strong="H1961"\w* \w eight|strong="H8083"\w* \w hundred|strong="H3967"\w* \w ninety-five|strong="H8673"\w* \w years|strong="H8141"\w*, \w then|strong="H1961"\w* \w he|strong="H3117"\w* \w died|strong="H4191"\w*. +\p +\v 18 \w Jared|strong="H3382"\w* \w lived|strong="H2421"\w* \w one|strong="H2421"\w* \w hundred|strong="H3967"\w* \w sixty-two|strong="H8346"\w* \w years|strong="H8141"\w*, then \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H8141"\w* \w Enoch|strong="H2585"\w*. +\v 19 \w Jared|strong="H3382"\w* \w lived|strong="H2421"\w* \w after|strong="H8141"\w* \w he|strong="H8141"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Enoch|strong="H2585"\w* \w eight|strong="H8083"\w* \w hundred|strong="H3967"\w* \w years|strong="H8141"\w*, \w and|strong="H3967"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w other|strong="H3205"\w* \w sons|strong="H1121"\w* \w and|strong="H3967"\w* \w daughters|strong="H1323"\w*. +\v 20 \w All|strong="H3605"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w Jared|strong="H3382"\w* \w were|strong="H1961"\w* \w nine|strong="H8672"\w* \w hundred|strong="H3967"\w* \w sixty-two|strong="H8346"\w* \w years|strong="H8141"\w*, \w then|strong="H1961"\w* \w he|strong="H3117"\w* \w died|strong="H4191"\w*. +\p +\v 21 \w Enoch|strong="H2585"\w* \w lived|strong="H2421"\w* \w sixty-five|strong="H8346"\w* \w years|strong="H8141"\w*, then \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H8141"\w* \w Methuselah|strong="H4968"\w*. +\v 22 \w After|strong="H1980"\w* \w Methuselah|strong="H4968"\w*’s \w birth|strong="H3205"\w*, \w Enoch|strong="H2585"\w* \w walked|strong="H1980"\w* \w with|strong="H1980"\w* God \w for|strong="H1121"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w years|strong="H8141"\w*, \w and|strong="H3967"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w more|strong="H1980"\w* \w sons|strong="H1121"\w* \w and|strong="H3967"\w* \w daughters|strong="H1323"\w*. +\v 23 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w Enoch|strong="H2585"\w* \w were|strong="H1961"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w sixty-five|strong="H8346"\w* \w years|strong="H8141"\w*. +\v 24 \w Enoch|strong="H2585"\w* \w walked|strong="H1980"\w* \w with|strong="H1980"\w* God, \w and|strong="H1980"\w* \w he|strong="H3588"\w* \w was|strong="H2585"\w* \w not|strong="H3588"\w* found, \w for|strong="H3588"\w* God \w took|strong="H3947"\w* \w him|strong="H3947"\w*. +\p +\v 25 \w Methuselah|strong="H4968"\w* \w lived|strong="H2421"\w* \w one|strong="H2421"\w* \w hundred|strong="H3967"\w* \w eighty-seven|strong="H8084"\w* \w years|strong="H8141"\w*, then \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H8141"\w* \w Lamech|strong="H3929"\w*. +\v 26 \w Methuselah|strong="H4968"\w* \w lived|strong="H2421"\w* \w after|strong="H8141"\w* \w he|strong="H8147"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Lamech|strong="H3929"\w* \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w eighty-two|strong="H8084"\w* \w years|strong="H8141"\w*, \w and|strong="H3967"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w other|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H3967"\w* \w daughters|strong="H1323"\w*. +\v 27 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w Methuselah|strong="H4968"\w* \w were|strong="H1961"\w* \w nine|strong="H8672"\w* \w hundred|strong="H3967"\w* \w sixty-nine|strong="H8346"\w* \w years|strong="H8141"\w*, \w then|strong="H1961"\w* \w he|strong="H3117"\w* \w died|strong="H4191"\w*. +\p +\v 28 \w Lamech|strong="H3929"\w* \w lived|strong="H2421"\w* \w one|strong="H2421"\w* \w hundred|strong="H3967"\w* \w eighty-two|strong="H8084"\w* \w years|strong="H8141"\w*, \w then|strong="H1121"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*. +\v 29 \w He|strong="H3068"\w* \w named|strong="H7121"\w* \w him|strong="H7121"\w* \w Noah|strong="H5146"\w*, saying, “\w This|strong="H2088"\w* \w one|strong="H2088"\w* \w will|strong="H3068"\w* \w comfort|strong="H5162"\w* \w us|strong="H3027"\w* \w in|strong="H3068"\w* \w our|strong="H3068"\w* \w work|strong="H4639"\w* \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w toil|strong="H6093"\w* \w of|strong="H3068"\w* \w our|strong="H3068"\w* \w hands|strong="H3027"\w*, caused \w by|strong="H3027"\w* \w the|strong="H3068"\w* ground \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* cursed.” +\v 30 \w Lamech|strong="H3929"\w* \w lived|strong="H2421"\w* \w after|strong="H8141"\w* \w he|strong="H2568"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Noah|strong="H5146"\w* \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w ninety-five|strong="H8673"\w* \w years|strong="H8141"\w*, \w and|strong="H3967"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w other|strong="H3205"\w* \w sons|strong="H1121"\w* \w and|strong="H3967"\w* \w daughters|strong="H1323"\w*. +\v 31 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w Lamech|strong="H3929"\w* \w were|strong="H1961"\w* \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w seventy-seven|strong="H7657"\w* \w years|strong="H8141"\w*, \w then|strong="H1961"\w* \w he|strong="H3117"\w* \w died|strong="H4191"\w*. +\p +\v 32 \w Noah|strong="H5146"\w* \w was|strong="H1961"\w* \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*, \w then|strong="H1961"\w* \w Noah|strong="H5146"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Shem|strong="H8035"\w*, \w Ham|strong="H2526"\w*, \w and|strong="H3967"\w* \w Japheth|strong="H3315"\w*. +\c 6 +\p +\v 1 \w When|strong="H3588"\w* \w men|strong="H2490"\w* \w began|strong="H2490"\w* \w to|strong="H1961"\w* \w multiply|strong="H7231"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H1323"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w*, \w and|strong="H6440"\w* \w daughters|strong="H1323"\w* \w were|strong="H1961"\w* \w born|strong="H3205"\w* \w to|strong="H1961"\w* \w them|strong="H5921"\w*, +\v 2 God’s \w sons|strong="H1121"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w men|strong="H1121"\w*’s \w daughters|strong="H1323"\w* \w were|strong="H1121"\w* \w beautiful|strong="H2896"\w*, \w and|strong="H1121"\w* \w they|strong="H3588"\w* \w took|strong="H3947"\w* \w any|strong="H3605"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* wanted \w for|strong="H3588"\w* \w themselves|strong="H2896"\w* \w as|strong="H3588"\w* wives. +\v 3 \w Yahweh|strong="H3068"\w* said, “\w My|strong="H3068"\w* \w Spirit|strong="H7307"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w strive|strong="H1777"\w* \w with|strong="H3068"\w* \w man|strong="H1320"\w* \w forever|strong="H5769"\w*, \w because|strong="H3117"\w* \w he|strong="H1931"\w* \w also|strong="H1571"\w* \w is|strong="H3068"\w* \w flesh|strong="H1320"\w*; \w so|strong="H1961"\w* \w his|strong="H3068"\w* \w days|strong="H3117"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w one|strong="H3808"\w* \w hundred|strong="H3967"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w*.” +\v 4 \w The|strong="H3205"\w* \w Nephilim|strong="H5303"\w*\f + \fr 6:4 \ft or, giants\f* \w were|strong="H1961"\w* \w in|strong="H3117"\w* \w the|strong="H3205"\w* earth \w in|strong="H3117"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*, \w and|strong="H1121"\w* \w also|strong="H1571"\w* \w after|strong="H1961"\w* \w that|strong="H3117"\w*, \w when|strong="H1961"\w* God’s \w sons|strong="H1121"\w* \w came|strong="H1961"\w* \w in|strong="H3117"\w* \w to|strong="H1961"\w* \w men|strong="H1368"\w*’s \w daughters|strong="H1323"\w* \w and|strong="H1121"\w* \w had|strong="H1961"\w* \w children|strong="H1121"\w* \w with|strong="H3117"\w* \w them|strong="H1992"\w*. \w Those|strong="H1992"\w* \w were|strong="H1961"\w* \w the|strong="H3205"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w who|strong="H1121"\w* \w were|strong="H1961"\w* \w of|strong="H1121"\w* \w old|strong="H1121"\w*, \w men|strong="H1368"\w* \w of|strong="H1121"\w* \w renown|strong="H8034"\w*. +\p +\v 5 \w Yahweh|strong="H3068"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w wickedness|strong="H7451"\w* \w of|strong="H3068"\w* \w man|strong="H7451"\w* \w was|strong="H3068"\w* \w great|strong="H7227"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* earth, \w and|strong="H3068"\w* \w that|strong="H3588"\w* \w every|strong="H3605"\w* \w imagination|strong="H3336"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w thoughts|strong="H4284"\w* \w of|strong="H3068"\w* \w man|strong="H7451"\w*’s \w heart|strong="H3820"\w* \w was|strong="H3068"\w* \w continually|strong="H3605"\w* \w only|strong="H7535"\w* \w evil|strong="H7451"\w*. +\v 6 \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w sorry|strong="H5162"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H3068"\w* \w made|strong="H6213"\w* \w man|strong="H3820"\w* \w on|strong="H3068"\w* \w the|strong="H3588"\w* earth, \w and|strong="H3068"\w* \w it|strong="H3588"\w* \w grieved|strong="H6087"\w* \w him|strong="H6213"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w heart|strong="H3820"\w*. +\v 7 \w Yahweh|strong="H3068"\w* said, “\w I|strong="H3588"\w* \w will|strong="H3068"\w* \w destroy|strong="H4229"\w* \w man|strong="H6440"\w* \w whom|strong="H6440"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w created|strong="H1254"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w*—\w man|strong="H6440"\w*, \w along|strong="H5921"\w* \w with|strong="H3068"\w* animals, \w creeping|strong="H7431"\w* \w things|strong="H7431"\w*, \w and|strong="H3068"\w* \w birds|strong="H5775"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w sky|strong="H8064"\w*—\w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w sorry|strong="H5162"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w made|strong="H6213"\w* \w them|strong="H5921"\w*.” +\v 8 \w But|strong="H3068"\w* \w Noah|strong="H5146"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*. +\p +\v 9 \w This|strong="H1961"\w* \w is|strong="H6662"\w* \w the|strong="H1961"\w* \w history|strong="H8435"\w* \w of|strong="H8435"\w* \w the|strong="H1961"\w* \w generations|strong="H1755"\w* \w of|strong="H8435"\w* \w Noah|strong="H5146"\w*: \w Noah|strong="H5146"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w righteous|strong="H6662"\w* \w man|strong="H6662"\w*, \w blameless|strong="H8549"\w* \w among|strong="H1755"\w* \w the|strong="H1961"\w* people \w of|strong="H8435"\w* \w his|strong="H1961"\w* \w time|strong="H1755"\w*. \w Noah|strong="H5146"\w* \w walked|strong="H1980"\w* \w with|strong="H1980"\w* God. +\v 10 \w Noah|strong="H5146"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w three|strong="H7969"\w* \w sons|strong="H1121"\w*: \w Shem|strong="H8035"\w*, \w Ham|strong="H2526"\w*, \w and|strong="H1121"\w* \w Japheth|strong="H3315"\w*. +\v 11 \w The|strong="H6440"\w* earth \w was|strong="H6440"\w* \w corrupt|strong="H7843"\w* \w before|strong="H6440"\w* God, \w and|strong="H6440"\w* \w the|strong="H6440"\w* earth \w was|strong="H6440"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w violence|strong="H2555"\w*. +\v 12 God \w saw|strong="H7200"\w* \w the|strong="H3605"\w* earth, \w and|strong="H1870"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w it|strong="H5921"\w* \w was|strong="H1320"\w* \w corrupt|strong="H7843"\w*, \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w* \w had|strong="H3588"\w* \w corrupted|strong="H7843"\w* \w their|strong="H3605"\w* \w way|strong="H1870"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth. +\p +\v 13 God said \w to|strong="H6440"\w* \w Noah|strong="H5146"\w*, “\w I|strong="H3588"\w* \w will|strong="H1320"\w* bring \w an|strong="H3588"\w* \w end|strong="H7093"\w* \w to|strong="H6440"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w*, \w for|strong="H3588"\w* \w the|strong="H3605"\w* earth \w is|strong="H3605"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w violence|strong="H2555"\w* \w through|strong="H3605"\w* \w them|strong="H6440"\w*. \w Behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H1320"\w* \w destroy|strong="H7843"\w* \w them|strong="H6440"\w* \w and|strong="H6440"\w* \w the|strong="H3605"\w* earth. +\v 14 \w Make|strong="H6213"\w* \w a|strong="H3068"\w* \w ship|strong="H8392"\w* \w of|strong="H1004"\w* \w gopher|strong="H1613"\w* \w wood|strong="H6086"\w*. \w You|strong="H6213"\w* \w shall|strong="H1004"\w* \w make|strong="H6213"\w* \w rooms|strong="H7064"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w ship|strong="H8392"\w*, \w and|strong="H1004"\w* \w shall|strong="H1004"\w* seal \w it|strong="H6213"\w* \w inside|strong="H1004"\w* \w and|strong="H1004"\w* \w outside|strong="H2351"\w* \w with|strong="H1004"\w* \w pitch|strong="H3724"\w*. +\v 15 \w This|strong="H2088"\w* \w is|strong="H2088"\w* \w how|strong="H6213"\w* \w you|strong="H6213"\w* \w shall|strong="H2088"\w* \w make|strong="H6213"\w* \w it|strong="H6213"\w*. \w The|strong="H6213"\w* \w length|strong="H6967"\w* \w of|strong="H7341"\w* \w the|strong="H6213"\w* \w ship|strong="H8392"\w* \w shall|strong="H2088"\w* \w be|strong="H7970"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* cubits,\f + \fr 6:15 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w its|strong="H6213"\w* \w width|strong="H7341"\w* \w fifty|strong="H2572"\w* cubits, \w and|strong="H3967"\w* \w its|strong="H6213"\w* \w height|strong="H6967"\w* \w thirty|strong="H7970"\w* cubits. +\v 16 \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* roof \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w ship|strong="H8392"\w*, \w and|strong="H6213"\w* \w you|strong="H6213"\w* \w shall|strong="H6213"\w* \w finish|strong="H3615"\w* \w it|strong="H7760"\w* \w to|strong="H6213"\w* \w a|strong="H3068"\w* cubit \w upward|strong="H4605"\w*. \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w set|strong="H7760"\w* \w the|strong="H6213"\w* \w door|strong="H6607"\w* \w of|strong="H3615"\w* \w the|strong="H6213"\w* \w ship|strong="H8392"\w* \w in|strong="H6213"\w* \w its|strong="H6213"\w* \w side|strong="H6654"\w*. \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w it|strong="H7760"\w* \w with|strong="H6213"\w* \w lower|strong="H8482"\w*, \w second|strong="H8145"\w*, \w and|strong="H6213"\w* \w third|strong="H7992"\w* levels. +\v 17 \w I|strong="H2009"\w*, \w even|strong="H5921"\w* \w I|strong="H2009"\w*, \w will|strong="H8064"\w* bring \w the|strong="H3605"\w* \w flood|strong="H3999"\w* \w of|strong="H7307"\w* \w waters|strong="H4325"\w* \w on|strong="H5921"\w* \w this|strong="H7843"\w* \w earth|strong="H8064"\w*, \w to|strong="H5921"\w* \w destroy|strong="H7843"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w* having \w the|strong="H3605"\w* \w breath|strong="H7307"\w* \w of|strong="H7307"\w* \w life|strong="H2416"\w* \w from|strong="H5921"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*. \w Everything|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H2009"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w* \w will|strong="H8064"\w* \w die|strong="H1478"\w*. +\v 18 But \w I|strong="H6965"\w* \w will|strong="H1121"\w* \w establish|strong="H6965"\w* \w my|strong="H6965"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w you|strong="H6965"\w*. \w You|strong="H6965"\w* \w shall|strong="H1121"\w* \w come|strong="H6965"\w* into \w the|strong="H6965"\w* \w ship|strong="H8392"\w*, \w you|strong="H6965"\w*, \w your|strong="H6965"\w* \w sons|strong="H1121"\w*, \w your|strong="H6965"\w* wife, \w and|strong="H1121"\w* \w your|strong="H6965"\w* \w sons|strong="H1121"\w*’ wives \w with|strong="H1285"\w* \w you|strong="H6965"\w*. +\v 19 \w Of|strong="H3605"\w* \w every|strong="H3605"\w* \w living|strong="H2416"\w* \w thing|strong="H2416"\w* \w of|strong="H3605"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w*, \w you|strong="H3605"\w* \w shall|strong="H1320"\w* \w bring|strong="H1961"\w* \w two|strong="H8147"\w* \w of|strong="H3605"\w* \w every|strong="H3605"\w* sort \w into|strong="H1961"\w* \w the|strong="H3605"\w* \w ship|strong="H8392"\w*, \w to|strong="H1961"\w* \w keep|strong="H2421"\w* \w them|strong="H8147"\w* \w alive|strong="H2416"\w* \w with|strong="H1320"\w* \w you|strong="H3605"\w*. \w They|strong="H3605"\w* \w shall|strong="H1320"\w* \w be|strong="H1961"\w* \w male|strong="H2145"\w* \w and|strong="H8147"\w* \w female|strong="H5347"\w*. +\v 20 \w Of|strong="H4480"\w* \w the|strong="H3605"\w* \w birds|strong="H5775"\w* \w after|strong="H4480"\w* \w their|strong="H3605"\w* \w kind|strong="H4327"\w*, \w of|strong="H4480"\w* \w the|strong="H3605"\w* livestock \w after|strong="H4480"\w* \w their|strong="H3605"\w* \w kind|strong="H4327"\w*, \w of|strong="H4480"\w* \w every|strong="H3605"\w* \w creeping|strong="H7431"\w* \w thing|strong="H7431"\w* \w of|strong="H4480"\w* \w the|strong="H3605"\w* ground \w after|strong="H4480"\w* \w its|strong="H3605"\w* \w kind|strong="H4327"\w*, \w two|strong="H8147"\w* \w of|strong="H4480"\w* \w every|strong="H3605"\w* sort \w will|strong="H5775"\w* \w come|strong="H2421"\w* \w to|strong="H4480"\w* \w you|strong="H3605"\w*, \w to|strong="H4480"\w* \w keep|strong="H2421"\w* \w them|strong="H8147"\w* \w alive|strong="H2421"\w*. +\v 21 \w Take|strong="H3947"\w* \w with|strong="H3605"\w* \w you|strong="H3605"\w* \w some|strong="H3605"\w* \w of|strong="H3605"\w* \w all|strong="H3605"\w* \w food|strong="H3978"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w eaten|strong="H3978"\w*, \w and|strong="H3947"\w* gather \w it|strong="H1961"\w* \w to|strong="H1961"\w* yourself; \w and|strong="H3947"\w* \w it|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w for|strong="H3605"\w* \w food|strong="H3978"\w* \w for|strong="H3605"\w* \w you|strong="H3605"\w*, \w and|strong="H3947"\w* \w for|strong="H3605"\w* \w them|strong="H3947"\w*.” +\v 22 \w Thus|strong="H3651"\w* \w Noah|strong="H5146"\w* \w did|strong="H6213"\w*. \w He|strong="H3651"\w* \w did|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* God \w commanded|strong="H6680"\w* \w him|strong="H6213"\w*. +\c 7 +\p +\v 1 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Noah|strong="H5146"\w*, “Come \w with|strong="H1004"\w* \w all|strong="H3605"\w* \w of|strong="H1004"\w* \w your|strong="H3068"\w* \w household|strong="H1004"\w* \w into|strong="H7200"\w* \w the|strong="H3605"\w* \w ship|strong="H8392"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w seen|strong="H7200"\w* \w your|strong="H3068"\w* righteousness \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w in|strong="H3068"\w* \w this|strong="H2088"\w* \w generation|strong="H1755"\w*. +\v 2 \w You|strong="H3605"\w* \w shall|strong="H3808"\w* \w take|strong="H3947"\w* \w seven|strong="H7651"\w* \w pairs|strong="H2889"\w* \w of|strong="H4480"\w* \w every|strong="H3605"\w* \w clean|strong="H2889"\w* animal \w with|strong="H3605"\w* \w you|strong="H3605"\w*, \w the|strong="H3605"\w* male \w and|strong="H8147"\w* \w his|strong="H3605"\w* \w female|strong="H8147"\w*. \w Of|strong="H4480"\w* \w the|strong="H3605"\w* animals \w that|strong="H3605"\w* \w are|strong="H8147"\w* \w not|strong="H3808"\w* \w clean|strong="H2889"\w*, \w take|strong="H3947"\w* \w two|strong="H8147"\w*, \w the|strong="H3605"\w* male \w and|strong="H8147"\w* \w his|strong="H3605"\w* \w female|strong="H8147"\w*. +\v 3 \w Also|strong="H1571"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w birds|strong="H5775"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w seven|strong="H7651"\w* \w and|strong="H8064"\w* \w seven|strong="H7651"\w*, \w male|strong="H2145"\w* \w and|strong="H8064"\w* \w female|strong="H5347"\w*, \w to|strong="H5921"\w* \w keep|strong="H2421"\w* \w seed|strong="H2233"\w* \w alive|strong="H2421"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*. +\v 4 \w In|strong="H5921"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w I|strong="H3588"\w* \w will|strong="H3117"\w* \w cause|strong="H6213"\w* \w it|strong="H5921"\w* \w to|strong="H6213"\w* \w rain|strong="H4305"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth \w for|strong="H3588"\w* forty \w days|strong="H3117"\w* \w and|strong="H3117"\w* forty \w nights|strong="H3915"\w*. \w I|strong="H3588"\w* \w will|strong="H3117"\w* \w destroy|strong="H4229"\w* \w every|strong="H3605"\w* \w living|strong="H3351"\w* \w thing|strong="H3351"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3117"\w* \w made|strong="H6213"\w* \w from|strong="H6440"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w ground|strong="H6440"\w*.” +\p +\v 5 \w Noah|strong="H5146"\w* \w did|strong="H6213"\w* \w everything|strong="H3605"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w him|strong="H6213"\w*. +\p +\v 6 \w Noah|strong="H5146"\w* \w was|strong="H1961"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1961"\w* \w the|strong="H5921"\w* \w flood|strong="H3999"\w* \w of|strong="H1121"\w* \w waters|strong="H4325"\w* \w came|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* earth. +\v 7 \w Noah|strong="H5146"\w* \w went|strong="H1121"\w* \w into|strong="H4325"\w* \w the|strong="H6440"\w* \w ship|strong="H8392"\w* \w with|strong="H6440"\w* \w his|strong="H6440"\w* \w sons|strong="H1121"\w*, \w his|strong="H6440"\w* wife, \w and|strong="H1121"\w* \w his|strong="H6440"\w* \w sons|strong="H1121"\w*’ wives, \w because|strong="H6440"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w floodwaters|strong="H3999"\w*. +\v 8 \w Clean|strong="H2889"\w* animals, unclean animals, \w birds|strong="H5775"\w*, \w and|strong="H5775"\w* \w everything|strong="H3605"\w* \w that|strong="H3605"\w* \w creeps|strong="H7430"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* ground +\v 9 \w went|strong="H8147"\w* \w by|strong="H2145"\w* \w pairs|strong="H8147"\w* \w to|strong="H6680"\w* \w Noah|strong="H5146"\w* into \w the|strong="H6680"\w* \w ship|strong="H8392"\w*, \w male|strong="H2145"\w* \w and|strong="H8147"\w* \w female|strong="H5347"\w*, \w as|strong="H6680"\w* God \w commanded|strong="H6680"\w* \w Noah|strong="H5146"\w*. +\v 10 \w After|strong="H5921"\w* \w the|strong="H5921"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w the|strong="H5921"\w* \w floodwaters|strong="H3999"\w* \w came|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* earth. +\v 11 \w In|strong="H8141"\w* \w the|strong="H3605"\w* \w six|strong="H8337"\w* \w hundredth|strong="H3967"\w* \w year|strong="H8141"\w* \w of|strong="H3117"\w* \w Noah|strong="H5146"\w*’s \w life|strong="H2416"\w*, \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w second|strong="H8145"\w* \w month|strong="H2320"\w*, \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w seventeenth|strong="H7651"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w month|strong="H2320"\w*, \w on|strong="H3117"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fountains|strong="H4599"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w great|strong="H7227"\w* \w deep|strong="H8415"\w* \w burst|strong="H1234"\w* \w open|strong="H6605"\w*, \w and|strong="H3967"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*’s windows \w opened|strong="H6605"\w*. +\v 12 \w It|strong="H5921"\w* rained \w on|strong="H5921"\w* \w the|strong="H5921"\w* earth forty \w days|strong="H3117"\w* \w and|strong="H3117"\w* forty \w nights|strong="H3915"\w*. +\p +\v 13 \w In|strong="H3117"\w* \w the|strong="H3117"\w* \w same|strong="H6106"\w* \w day|strong="H3117"\w* \w Noah|strong="H5146"\w*, \w and|strong="H1121"\w* \w Shem|strong="H8035"\w*, \w Ham|strong="H2526"\w*, \w and|strong="H1121"\w* \w Japheth|strong="H3315"\w*—\w the|strong="H3117"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Noah|strong="H5146"\w*—\w and|strong="H1121"\w* \w Noah|strong="H5146"\w*’s wife \w and|strong="H1121"\w* \w the|strong="H3117"\w* \w three|strong="H7969"\w* wives \w of|strong="H1121"\w* \w his|strong="H3117"\w* \w sons|strong="H1121"\w* \w with|strong="H3117"\w* \w them|strong="H1121"\w*, entered \w into|strong="H2088"\w* \w the|strong="H3117"\w* \w ship|strong="H8392"\w*— +\v 14 \w they|strong="H1992"\w*, \w and|strong="H5775"\w* \w every|strong="H3605"\w* \w animal|strong="H2416"\w* \w after|strong="H5921"\w* \w its|strong="H3605"\w* \w kind|strong="H4327"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* livestock \w after|strong="H5921"\w* \w their|strong="H3605"\w* \w kind|strong="H4327"\w*, \w every|strong="H3605"\w* \w creeping|strong="H7431"\w* \w thing|strong="H7431"\w* \w that|strong="H3605"\w* \w creeps|strong="H7430"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth \w after|strong="H5921"\w* \w its|strong="H3605"\w* \w kind|strong="H4327"\w*, \w and|strong="H5775"\w* \w every|strong="H3605"\w* \w bird|strong="H6833"\w* \w after|strong="H5921"\w* \w its|strong="H3605"\w* \w kind|strong="H4327"\w*, \w every|strong="H3605"\w* \w bird|strong="H6833"\w* \w of|strong="H5921"\w* \w every|strong="H3605"\w* \w sort|strong="H3671"\w*. +\v 15 \w Pairs|strong="H8147"\w* \w from|strong="H7307"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w* \w with|strong="H1320"\w* \w the|strong="H3605"\w* \w breath|strong="H7307"\w* \w of|strong="H7307"\w* \w life|strong="H2416"\w* \w in|strong="H1320"\w* \w them|strong="H8147"\w* \w went|strong="H8147"\w* \w into|strong="H2416"\w* \w the|strong="H3605"\w* \w ship|strong="H8392"\w* \w to|strong="H7307"\w* \w Noah|strong="H5146"\w*. +\v 16 \w Those|strong="H3605"\w* \w who|strong="H3605"\w* \w went|strong="H3068"\w* \w in|strong="H3068"\w*, \w went|strong="H3068"\w* \w in|strong="H3068"\w* \w male|strong="H2145"\w* \w and|strong="H3068"\w* \w female|strong="H5347"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w*, \w as|strong="H3068"\w* \w God|strong="H3068"\w* \w commanded|strong="H6680"\w* \w him|strong="H6680"\w*; \w then|strong="H6680"\w* \w Yahweh|strong="H3068"\w* \w shut|strong="H5462"\w* \w him|strong="H6680"\w* \w in|strong="H3068"\w*. +\v 17 \w The|strong="H5921"\w* \w flood|strong="H3999"\w* \w was|strong="H1961"\w* forty \w days|strong="H3117"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* earth. \w The|strong="H5921"\w* \w waters|strong="H4325"\w* \w increased|strong="H7235"\w*, \w and|strong="H3117"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w the|strong="H5921"\w* \w ship|strong="H8392"\w*, \w and|strong="H3117"\w* \w it|strong="H5921"\w* \w was|strong="H1961"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w above|strong="H5921"\w* \w the|strong="H5921"\w* earth. +\v 18 \w The|strong="H6440"\w* \w waters|strong="H4325"\w* \w rose|strong="H1396"\w*, \w and|strong="H3212"\w* \w increased|strong="H7235"\w* \w greatly|strong="H3966"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* earth; \w and|strong="H3212"\w* \w the|strong="H6440"\w* \w ship|strong="H8392"\w* \w floated|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w waters|strong="H4325"\w*. +\v 19 \w The|strong="H3605"\w* \w waters|strong="H4325"\w* \w rose|strong="H1396"\w* \w very|strong="H3966"\w* \w high|strong="H1364"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w high|strong="H1364"\w* \w mountains|strong="H2022"\w* \w that|strong="H3605"\w* \w were|strong="H4325"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w sky|strong="H8064"\w* \w were|strong="H4325"\w* \w covered|strong="H3680"\w*. +\v 20 \w The|strong="H3680"\w* \w waters|strong="H4325"\w* \w rose|strong="H1396"\w* \w fifteen|strong="H2568"\w* \w cubits|strong="H2568"\w*\f + \fr 7:20 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w higher|strong="H4605"\w*, \w and|strong="H2568"\w* \w the|strong="H3680"\w* \w mountains|strong="H2022"\w* \w were|strong="H4325"\w* \w covered|strong="H3680"\w*. +\v 21 \w All|strong="H3605"\w* \w flesh|strong="H1320"\w* \w died|strong="H1478"\w* \w that|strong="H3605"\w* \w moved|strong="H7430"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth, \w including|strong="H3605"\w* \w birds|strong="H5775"\w*, livestock, \w animals|strong="H2416"\w*, \w every|strong="H3605"\w* \w creeping|strong="H8318"\w* \w thing|strong="H8318"\w* \w that|strong="H3605"\w* \w creeps|strong="H7430"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth, \w and|strong="H1320"\w* \w every|strong="H3605"\w* \w man|strong="H3605"\w*. +\v 22 \w All|strong="H3605"\w* \w on|strong="H4191"\w* \w the|strong="H3605"\w* \w dry|strong="H2724"\w* \w land|strong="H2724"\w*, \w in|strong="H4191"\w* \w whose|strong="H3605"\w* nostrils \w was|strong="H7307"\w* \w the|strong="H3605"\w* \w breath|strong="H7307"\w* \w of|strong="H7307"\w* \w the|strong="H3605"\w* \w spirit|strong="H7307"\w* \w of|strong="H7307"\w* \w life|strong="H2416"\w*, \w died|strong="H4191"\w*. +\v 23 \w Every|strong="H3605"\w* \w living|strong="H3351"\w* \w thing|strong="H7431"\w* \w was|strong="H5146"\w* \w destroyed|strong="H4229"\w* \w that|strong="H3605"\w* \w was|strong="H5146"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w ground|strong="H6440"\w*, \w including|strong="H5704"\w* \w man|strong="H3605"\w*, livestock, \w creeping|strong="H7431"\w* \w things|strong="H7431"\w*, \w and|strong="H8064"\w* \w birds|strong="H5775"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*. \w They|strong="H5921"\w* \w were|strong="H8064"\w* \w destroyed|strong="H4229"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*. \w Only|strong="H5704"\w* \w Noah|strong="H5146"\w* \w was|strong="H5146"\w* \w left|strong="H7604"\w*, \w and|strong="H8064"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H8064"\w* \w with|strong="H5921"\w* \w him|strong="H6440"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w ship|strong="H8392"\w*. +\v 24 \w The|strong="H5921"\w* \w waters|strong="H4325"\w* flooded \w the|strong="H5921"\w* earth \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w* \w days|strong="H3117"\w*. +\c 8 +\p +\v 1 God \w remembered|strong="H2142"\w* \w Noah|strong="H5146"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w animals|strong="H2416"\w*, \w and|strong="H4325"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* livestock \w that|strong="H3605"\w* \w were|strong="H4325"\w* \w with|strong="H5921"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w ship|strong="H8392"\w*; \w and|strong="H4325"\w* God \w made|strong="H5674"\w* \w a|strong="H3068"\w* \w wind|strong="H7307"\w* \w to|strong="H5921"\w* \w pass|strong="H5674"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* earth. \w The|strong="H3605"\w* \w waters|strong="H4325"\w* \w subsided|strong="H7918"\w*. +\v 2 \w The|strong="H4480"\w* \w deep|strong="H8415"\w*’s \w fountains|strong="H4599"\w* \w and|strong="H8064"\w* \w the|strong="H4480"\w* \w sky|strong="H8064"\w*’s windows \w were|strong="H8064"\w* \w also|strong="H8064"\w* \w stopped|strong="H5534"\w*, \w and|strong="H8064"\w* \w the|strong="H4480"\w* \w rain|strong="H1653"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w sky|strong="H8064"\w* \w was|strong="H8064"\w* \w restrained|strong="H3607"\w*. +\v 3 \w The|strong="H5921"\w* \w waters|strong="H4325"\w* \w continually|strong="H3117"\w* \w receded|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H5921"\w* earth. \w After|strong="H5921"\w* \w the|strong="H5921"\w* \w end|strong="H7097"\w* \w of|strong="H3117"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w* \w days|strong="H3117"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w receded|strong="H7725"\w*. +\v 4 \w The|strong="H5921"\w* \w ship|strong="H8392"\w* \w rested|strong="H5117"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w*, \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w seventeenth|strong="H7651"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w month|strong="H2320"\w*, \w on|strong="H5921"\w* Ararat’s \w mountains|strong="H2022"\w*. +\v 5 \w The|strong="H7200"\w* \w waters|strong="H4325"\w* receded \w continually|strong="H1980"\w* \w until|strong="H5704"\w* \w the|strong="H7200"\w* \w tenth|strong="H6224"\w* \w month|strong="H2320"\w*. \w In|strong="H1980"\w* \w the|strong="H7200"\w* \w tenth|strong="H6224"\w* \w month|strong="H2320"\w*, \w on|strong="H1980"\w* \w the|strong="H7200"\w* \w first|strong="H7218"\w* \w day|strong="H2320"\w* \w of|strong="H2022"\w* \w the|strong="H7200"\w* \w month|strong="H2320"\w*, \w the|strong="H7200"\w* \w tops|strong="H7218"\w* \w of|strong="H2022"\w* \w the|strong="H7200"\w* \w mountains|strong="H2022"\w* \w were|strong="H1961"\w* \w visible|strong="H7200"\w*. +\p +\v 6 \w At|strong="H3117"\w* \w the|strong="H6213"\w* \w end|strong="H7093"\w* \w of|strong="H3117"\w* forty \w days|strong="H3117"\w*, \w Noah|strong="H5146"\w* \w opened|strong="H6605"\w* \w the|strong="H6213"\w* \w window|strong="H2474"\w* \w of|strong="H3117"\w* \w the|strong="H6213"\w* \w ship|strong="H8392"\w* \w which|strong="H3117"\w* \w he|strong="H3117"\w* \w had|strong="H1961"\w* \w made|strong="H6213"\w*, +\v 7 \w and|strong="H7971"\w* \w he|strong="H5704"\w* \w sent|strong="H7971"\w* \w out|strong="H3318"\w* \w a|strong="H3068"\w* \w raven|strong="H6158"\w*. \w It|strong="H5921"\w* \w went|strong="H3318"\w* \w back|strong="H7725"\w* \w and|strong="H7971"\w* \w forth|strong="H3318"\w*, \w until|strong="H5704"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w were|strong="H4325"\w* \w dried|strong="H3001"\w* \w up|strong="H3001"\w* \w from|strong="H7725"\w* \w the|strong="H5921"\w* earth. +\v 8 \w He|strong="H5921"\w* \w himself|strong="H6440"\w* \w sent|strong="H7971"\w* \w out|strong="H7971"\w* \w a|strong="H3068"\w* \w dove|strong="H3123"\w* \w to|strong="H7971"\w* \w see|strong="H7200"\w* \w if|strong="H7200"\w* \w the|strong="H6440"\w* \w waters|strong="H4325"\w* \w were|strong="H4325"\w* \w abated|strong="H7043"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w*, +\v 9 \w but|strong="H3588"\w* \w the|strong="H3605"\w* \w dove|strong="H3123"\w* \w found|strong="H4672"\w* \w no|strong="H3808"\w* \w place|strong="H3027"\w* \w to|strong="H7725"\w* \w rest|strong="H4494"\w* \w her|strong="H3605"\w* \w foot|strong="H7272"\w*, \w and|strong="H7971"\w* \w she|strong="H3588"\w* \w returned|strong="H7725"\w* \w into|strong="H7725"\w* \w the|strong="H3605"\w* \w ship|strong="H8392"\w* \w to|strong="H7725"\w* \w him|strong="H6440"\w*, \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w were|strong="H4325"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* earth. \w He|strong="H3588"\w* \w put|strong="H7971"\w* \w out|strong="H7971"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*, \w and|strong="H7971"\w* \w took|strong="H3947"\w* \w her|strong="H3605"\w*, \w and|strong="H7971"\w* \w brought|strong="H7725"\w* \w her|strong="H3605"\w* \w to|strong="H7725"\w* \w him|strong="H6440"\w* \w into|strong="H7725"\w* \w the|strong="H3605"\w* \w ship|strong="H8392"\w*. +\v 10 \w He|strong="H3117"\w* \w waited|strong="H2342"\w* \w yet|strong="H5750"\w* \w another|strong="H5750"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*; \w and|strong="H7971"\w* \w again|strong="H5750"\w* \w he|strong="H3117"\w* \w sent|strong="H7971"\w* \w the|strong="H4480"\w* \w dove|strong="H3123"\w* \w out|strong="H7971"\w* \w of|strong="H3117"\w* \w the|strong="H4480"\w* \w ship|strong="H8392"\w*. +\v 11 \w The|strong="H5921"\w* \w dove|strong="H3123"\w* \w came|strong="H4325"\w* \w back|strong="H3045"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w* \w at|strong="H5921"\w* \w evening|strong="H6153"\w* \w and|strong="H3045"\w*, \w behold|strong="H2009"\w*, \w in|strong="H5921"\w* \w her|strong="H5921"\w* \w mouth|strong="H6310"\w* \w was|strong="H4325"\w* \w a|strong="H3068"\w* \w freshly|strong="H2965"\w* \w plucked|strong="H2965"\w* \w olive|strong="H2132"\w* \w leaf|strong="H5929"\w*. \w So|strong="H3588"\w* \w Noah|strong="H5146"\w* \w knew|strong="H3045"\w* \w that|strong="H3588"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w were|strong="H4325"\w* \w abated|strong="H7043"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* earth. +\v 12 \w He|strong="H3117"\w* \w waited|strong="H3176"\w* \w yet|strong="H5750"\w* \w another|strong="H5750"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w and|strong="H7971"\w* \w sent|strong="H7971"\w* \w out|strong="H7971"\w* \w the|strong="H3117"\w* \w dove|strong="H3123"\w*; \w and|strong="H7971"\w* \w she|strong="H3808"\w* didn’t \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w him|strong="H7971"\w* \w any|strong="H5750"\w* \w more|strong="H3254"\w*. +\p +\v 13 \w In|strong="H8141"\w* \w the|strong="H6440"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w first|strong="H7223"\w* \w year|strong="H8141"\w*, \w in|strong="H8141"\w* \w the|strong="H6440"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*, \w the|strong="H6440"\w* \w first|strong="H7223"\w* \w day|strong="H2320"\w* \w of|strong="H8141"\w* \w the|strong="H6440"\w* \w month|strong="H2320"\w*, \w the|strong="H6440"\w* \w waters|strong="H4325"\w* \w were|strong="H1961"\w* \w dried|strong="H2717"\w* \w up|strong="H7200"\w* \w from|strong="H5493"\w* \w the|strong="H6440"\w* earth. \w Noah|strong="H5146"\w* \w removed|strong="H5493"\w* \w the|strong="H6440"\w* \w covering|strong="H4372"\w* \w of|strong="H8141"\w* \w the|strong="H6440"\w* \w ship|strong="H8392"\w*, \w and|strong="H3967"\w* \w looked|strong="H7200"\w*. \w He|strong="H5921"\w* \w saw|strong="H7200"\w* \w that|strong="H7200"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H8141"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w* \w was|strong="H1961"\w* \w dry|strong="H2717"\w*. +\v 14 \w In|strong="H3117"\w* \w the|strong="H3117"\w* \w second|strong="H8145"\w* \w month|strong="H2320"\w*, \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w twenty-seventh|strong="H6242"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w month|strong="H2320"\w*, \w the|strong="H3117"\w* earth \w was|strong="H3117"\w* \w dry|strong="H3001"\w*. +\p +\v 15 God \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Noah|strong="H5146"\w*, \w saying|strong="H1696"\w*, +\v 16 “\w Go|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w ship|strong="H8392"\w*, \w you|strong="H4480"\w*, \w your|strong="H4480"\w* wife, \w your|strong="H4480"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w your|strong="H4480"\w* \w sons|strong="H1121"\w*’ wives \w with|strong="H3318"\w* \w you|strong="H4480"\w*. +\v 17 \w Bring|strong="H3318"\w* \w out|strong="H3318"\w* \w with|strong="H5921"\w* \w you|strong="H3605"\w* \w every|strong="H3605"\w* \w living|strong="H2416"\w* \w thing|strong="H7431"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w with|strong="H5921"\w* \w you|strong="H3605"\w* \w of|strong="H5921"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w*, \w including|strong="H3605"\w* \w birds|strong="H5775"\w*, livestock, \w and|strong="H3318"\w* \w every|strong="H3605"\w* \w creeping|strong="H7431"\w* \w thing|strong="H7431"\w* \w that|strong="H3605"\w* \w creeps|strong="H7430"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth, \w that|strong="H3605"\w* \w they|strong="H5921"\w* \w may|strong="H2416"\w* \w breed|strong="H8317"\w* \w abundantly|strong="H8317"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* earth, \w and|strong="H3318"\w* \w be|strong="H1320"\w* \w fruitful|strong="H6509"\w*, \w and|strong="H3318"\w* \w multiply|strong="H7235"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth.” +\p +\v 18 \w Noah|strong="H5146"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*, \w with|strong="H3318"\w* \w his|strong="H3318"\w* \w sons|strong="H1121"\w*, \w his|strong="H3318"\w* wife, \w and|strong="H1121"\w* \w his|strong="H3318"\w* \w sons|strong="H1121"\w*’ wives \w with|strong="H3318"\w* \w him|strong="H3318"\w*. +\v 19 \w Every|strong="H3605"\w* \w animal|strong="H2416"\w*, \w every|strong="H3605"\w* \w creeping|strong="H7431"\w* \w thing|strong="H7431"\w*, \w and|strong="H3318"\w* \w every|strong="H3605"\w* \w bird|strong="H5775"\w*, \w whatever|strong="H3605"\w* \w moves|strong="H7430"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth, \w after|strong="H4480"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w*, \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4480"\w* \w the|strong="H3605"\w* \w ship|strong="H8392"\w*. +\p +\v 20 \w Noah|strong="H5146"\w* \w built|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w took|strong="H3947"\w* \w of|strong="H3068"\w* \w every|strong="H3605"\w* \w clean|strong="H2889"\w* animal, \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w every|strong="H3605"\w* \w clean|strong="H2889"\w* \w bird|strong="H5775"\w*, \w and|strong="H3068"\w* \w offered|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w on|strong="H3068"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*. +\v 21 \w Yahweh|strong="H3068"\w* \w smelled|strong="H7306"\w* \w the|strong="H3605"\w* pleasant \w aroma|strong="H7381"\w*. \w Yahweh|strong="H3068"\w* said \w in|strong="H3068"\w* \w his|strong="H3605"\w* \w heart|strong="H3820"\w*, “\w I|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w again|strong="H5750"\w* \w curse|strong="H7043"\w* \w the|strong="H3605"\w* ground \w any|strong="H3605"\w* \w more|strong="H3254"\w* \w for|strong="H3588"\w* \w man|strong="H7451"\w*’s \w sake|strong="H5668"\w* \w because|strong="H3588"\w* \w the|strong="H3605"\w* \w imagination|strong="H3336"\w* \w of|strong="H3068"\w* \w man|strong="H7451"\w*’s \w heart|strong="H3820"\w* \w is|strong="H3068"\w* \w evil|strong="H7451"\w* \w from|strong="H3068"\w* \w his|strong="H3605"\w* \w youth|strong="H5271"\w*. \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w never|strong="H3808"\w* \w again|strong="H5750"\w* \w strike|strong="H5221"\w* \w every|strong="H3605"\w* \w living|strong="H2416"\w* \w thing|strong="H7043"\w*, \w as|strong="H6213"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w*. +\v 22 \w While|strong="H5750"\w* \w the|strong="H3605"\w* earth \w remains|strong="H5750"\w*, \w seed|strong="H2233"\w* \w time|strong="H3117"\w* \w and|strong="H3117"\w* \w harvest|strong="H7105"\w*, \w and|strong="H3117"\w* \w cold|strong="H7120"\w* \w and|strong="H3117"\w* \w heat|strong="H2527"\w*, \w and|strong="H3117"\w* \w summer|strong="H7019"\w* \w and|strong="H3117"\w* \w winter|strong="H2779"\w*, \w and|strong="H3117"\w* \w day|strong="H3117"\w* \w and|strong="H3117"\w* \w night|strong="H3915"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w cease|strong="H7673"\w*.” +\c 9 +\p +\v 1 God \w blessed|strong="H1288"\w* \w Noah|strong="H5146"\w* \w and|strong="H1121"\w* \w his|strong="H1288"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* said \w to|strong="H1121"\w* \w them|strong="H1121"\w*, “\w Be|strong="H1121"\w* \w fruitful|strong="H6509"\w*, \w multiply|strong="H7235"\w*, \w and|strong="H1121"\w* \w replenish|strong="H4390"\w* \w the|strong="H1288"\w* earth. +\v 2 \w The|strong="H3605"\w* \w fear|strong="H4172"\w* \w of|strong="H3027"\w* \w you|strong="H5414"\w* \w and|strong="H8064"\w* \w the|strong="H3605"\w* \w dread|strong="H4172"\w* \w of|strong="H3027"\w* \w you|strong="H5414"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w every|strong="H3605"\w* \w animal|strong="H2416"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*, \w and|strong="H8064"\w* \w on|strong="H5921"\w* \w every|strong="H3605"\w* \w bird|strong="H5775"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*. \w Everything|strong="H3605"\w* \w that|strong="H3605"\w* \w moves|strong="H7430"\w* \w along|strong="H5921"\w* \w the|strong="H3605"\w* ground, \w and|strong="H8064"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fish|strong="H1709"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w*, \w are|strong="H3027"\w* \w delivered|strong="H5414"\w* \w into|strong="H5921"\w* \w your|strong="H3605"\w* \w hand|strong="H3027"\w*. +\v 3 \w Every|strong="H3605"\w* \w moving|strong="H7431"\w* \w thing|strong="H7431"\w* \w that|strong="H3605"\w* \w lives|strong="H2416"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* food \w for|strong="H3605"\w* \w you|strong="H5414"\w*. \w As|strong="H1961"\w* \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w you|strong="H5414"\w* \w the|strong="H3605"\w* \w green|strong="H3418"\w* \w herb|strong="H6212"\w*, \w I|strong="H5414"\w* \w have|strong="H1961"\w* \w given|strong="H5414"\w* \w everything|strong="H3605"\w* \w to|strong="H1961"\w* \w you|strong="H5414"\w*. +\v 4 \w But|strong="H3808"\w* \w flesh|strong="H1320"\w* \w with|strong="H5315"\w* \w its|strong="H3808"\w* \w life|strong="H5315"\w*, \w that|strong="H5315"\w* \w is|strong="H5315"\w*, \w its|strong="H3808"\w* \w blood|strong="H1818"\w*, \w you|strong="H3808"\w* \w shall|strong="H5315"\w* \w not|strong="H3808"\w* eat. +\v 5 \w I|strong="H5315"\w* \w will|strong="H5315"\w* \w surely|strong="H1875"\w* \w require|strong="H1875"\w* accounting \w for|strong="H3027"\w* \w your|strong="H3605"\w* \w life|strong="H5315"\w*’s \w blood|strong="H1818"\w*. \w At|strong="H5315"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w every|strong="H3605"\w* \w animal|strong="H2416"\w* \w I|strong="H5315"\w* \w will|strong="H5315"\w* \w require|strong="H1875"\w* \w it|strong="H1818"\w*. \w At|strong="H5315"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w man|strong="H5315"\w*, even \w at|strong="H5315"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w every|strong="H3605"\w* \w man|strong="H5315"\w*’s brother, \w I|strong="H5315"\w* \w will|strong="H5315"\w* \w require|strong="H1875"\w* \w the|strong="H3605"\w* \w life|strong="H5315"\w* \w of|strong="H3027"\w* \w man|strong="H5315"\w*. +\v 6 Whoever \w sheds|strong="H8210"\w* man’s \w blood|strong="H1818"\w*, \w his|strong="H6213"\w* \w blood|strong="H1818"\w* \w will|strong="H1818"\w* \w be|strong="H1818"\w* \w shed|strong="H8210"\w* \w by|strong="H6213"\w* man, \w for|strong="H3588"\w* God \w made|strong="H6213"\w* man \w in|strong="H6213"\w* \w his|strong="H6213"\w* own \w image|strong="H6754"\w*. +\v 7 Be \w fruitful|strong="H6509"\w* \w and|strong="H6509"\w* \w multiply|strong="H7235"\w*. \w Increase|strong="H7235"\w* \w abundantly|strong="H8317"\w* \w in|strong="H7235"\w* \w the|strong="H7235"\w* earth, \w and|strong="H6509"\w* \w multiply|strong="H7235"\w* \w in|strong="H7235"\w* it.” +\p +\v 8 God spoke \w to|strong="H1121"\w* \w Noah|strong="H5146"\w* \w and|strong="H1121"\w* \w to|strong="H1121"\w* \w his|strong="H1121"\w* \w sons|strong="H1121"\w* \w with|strong="H1121"\w* \w him|strong="H1121"\w*, saying, +\v 9 “\w As|strong="H6965"\w* \w for|strong="H6965"\w* \w me|strong="H6965"\w*, \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w establish|strong="H6965"\w* \w my|strong="H6965"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w you|strong="H6965"\w*, \w and|strong="H6965"\w* \w with|strong="H1285"\w* \w your|strong="H6965"\w* \w offspring|strong="H2233"\w* \w after|strong="H2233"\w* \w you|strong="H6965"\w*, +\v 10 \w and|strong="H3318"\w* \w with|strong="H3318"\w* \w every|strong="H3605"\w* \w living|strong="H2416"\w* \w creature|strong="H5315"\w* \w that|strong="H3605"\w* \w is|strong="H5315"\w* \w with|strong="H3318"\w* \w you|strong="H3605"\w*: \w the|strong="H3605"\w* \w birds|strong="H5775"\w*, \w the|strong="H3605"\w* livestock, \w and|strong="H3318"\w* \w every|strong="H3605"\w* \w animal|strong="H2416"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* earth \w with|strong="H3318"\w* \w you|strong="H3605"\w*, \w of|strong="H3605"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w ship|strong="H8392"\w*, even \w every|strong="H3605"\w* \w animal|strong="H2416"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* earth. +\v 11 \w I|strong="H3808"\w* \w will|strong="H1961"\w* \w establish|strong="H6965"\w* \w my|strong="H3605"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w you|strong="H3605"\w*: \w All|strong="H3605"\w* \w flesh|strong="H1320"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w any|strong="H3605"\w* \w more|strong="H5750"\w* \w by|strong="H6965"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w of|strong="H4325"\w* \w the|strong="H3605"\w* \w flood|strong="H3999"\w*. \w There|strong="H1961"\w* \w will|strong="H1961"\w* \w never|strong="H3808"\w* \w again|strong="H5750"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w flood|strong="H3999"\w* \w to|strong="H1961"\w* \w destroy|strong="H7843"\w* \w the|strong="H3605"\w* earth.” +\v 12 \w God|strong="H5414"\w* said, “\w This|strong="H2063"\w* \w is|strong="H5315"\w* \w the|strong="H3605"\w* token \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w covenant|strong="H1285"\w* \w which|strong="H2416"\w* \w I|strong="H5414"\w* \w make|strong="H5414"\w* between \w me|strong="H5414"\w* \w and|strong="H5769"\w* \w you|strong="H5414"\w* \w and|strong="H5769"\w* \w every|strong="H3605"\w* \w living|strong="H2416"\w* \w creature|strong="H5315"\w* \w that|strong="H3605"\w* \w is|strong="H5315"\w* \w with|strong="H1285"\w* \w you|strong="H5414"\w*, \w for|strong="H5315"\w* \w perpetual|strong="H5769"\w* \w generations|strong="H1755"\w*: +\v 13 \w I|strong="H5414"\w* \w set|strong="H5414"\w* \w my|strong="H5414"\w* \w rainbow|strong="H7198"\w* \w in|strong="H5414"\w* \w the|strong="H5414"\w* \w cloud|strong="H6051"\w*, \w and|strong="H1285"\w* \w it|strong="H5414"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* sign \w of|strong="H1285"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* between \w me|strong="H5414"\w* \w and|strong="H1285"\w* \w the|strong="H5414"\w* earth. +\v 14 \w When|strong="H1961"\w* \w I|strong="H5921"\w* \w bring|strong="H6049"\w* \w a|strong="H3068"\w* \w cloud|strong="H6051"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* earth, \w that|strong="H7200"\w* \w the|strong="H5921"\w* \w rainbow|strong="H7198"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w seen|strong="H7200"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w cloud|strong="H6051"\w*, +\v 15 \w I|strong="H5315"\w* \w will|strong="H1961"\w* \w remember|strong="H2142"\w* \w my|strong="H3605"\w* \w covenant|strong="H1285"\w*, \w which|strong="H4325"\w* \w is|strong="H5315"\w* between \w me|strong="H5315"\w* \w and|strong="H1285"\w* \w you|strong="H3605"\w* \w and|strong="H1285"\w* \w every|strong="H3605"\w* \w living|strong="H2416"\w* \w creature|strong="H5315"\w* \w of|strong="H4325"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w*, \w and|strong="H1285"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w will|strong="H1961"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w flood|strong="H3999"\w* \w to|strong="H1961"\w* \w destroy|strong="H7843"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w*. +\v 16 \w The|strong="H3605"\w* \w rainbow|strong="H7198"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w cloud|strong="H6051"\w*. \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w look|strong="H7200"\w* \w at|strong="H5921"\w* \w it|strong="H5921"\w*, \w that|strong="H7200"\w* \w I|strong="H5921"\w* \w may|strong="H1961"\w* \w remember|strong="H2142"\w* \w the|strong="H3605"\w* \w everlasting|strong="H5769"\w* \w covenant|strong="H1285"\w* \w between|strong="H5921"\w* God \w and|strong="H5769"\w* \w every|strong="H3605"\w* \w living|strong="H2416"\w* \w creature|strong="H5315"\w* \w of|strong="H5921"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w* \w that|strong="H7200"\w* \w is|strong="H5315"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth.” +\v 17 God said \w to|strong="H5921"\w* \w Noah|strong="H5146"\w*, “\w This|strong="H2063"\w* \w is|strong="H3605"\w* \w the|strong="H3605"\w* token \w of|strong="H5921"\w* \w the|strong="H3605"\w* \w covenant|strong="H1285"\w* \w which|strong="H1285"\w* \w I|strong="H5921"\w* \w have|strong="H3605"\w* \w established|strong="H6965"\w* \w between|strong="H5921"\w* \w me|strong="H5921"\w* \w and|strong="H6965"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth.” +\p +\v 18 \w The|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Noah|strong="H5146"\w* \w who|strong="H1931"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w ship|strong="H8392"\w* \w were|strong="H1961"\w* \w Shem|strong="H8035"\w*, \w Ham|strong="H2526"\w*, \w and|strong="H1121"\w* \w Japheth|strong="H3315"\w*. \w Ham|strong="H2526"\w* \w is|strong="H1931"\w* \w the|strong="H4480"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*. +\v 19 \w These|strong="H3605"\w* \w three|strong="H7969"\w* \w were|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Noah|strong="H5146"\w*, \w and|strong="H1121"\w* \w from|strong="H1121"\w* \w these|strong="H3605"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* earth \w was|strong="H1121"\w* \w populated|strong="H5310"\w*. +\p +\v 20 \w Noah|strong="H5146"\w* \w began|strong="H2490"\w* \w to|strong="H2490"\w* \w be|strong="H3754"\w* \w a|strong="H3068"\w* farmer, \w and|strong="H3754"\w* \w planted|strong="H5193"\w* \w a|strong="H3068"\w* \w vineyard|strong="H3754"\w*. +\v 21 \w He|strong="H4480"\w* \w drank|strong="H8354"\w* \w of|strong="H4480"\w* \w the|strong="H8432"\w* \w wine|strong="H3196"\w* \w and|strong="H8354"\w* got \w drunk|strong="H8354"\w*. \w He|strong="H4480"\w* \w was|strong="H3196"\w* \w uncovered|strong="H1540"\w* \w within|strong="H8432"\w* \w his|strong="H1540"\w* tent. +\v 22 \w Ham|strong="H2526"\w*, \w the|strong="H7200"\w* father \w of|strong="H2351"\w* \w Canaan|strong="H3667"\w*, \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w nakedness|strong="H6172"\w* \w of|strong="H2351"\w* \w his|strong="H7200"\w* father, \w and|strong="H7200"\w* \w told|strong="H5046"\w* \w his|strong="H7200"\w* \w two|strong="H8147"\w* brothers \w outside|strong="H2351"\w*. +\v 23 \w Shem|strong="H8035"\w* \w and|strong="H3212"\w* \w Japheth|strong="H3315"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* \w garment|strong="H8071"\w*, \w and|strong="H3212"\w* \w laid|strong="H7760"\w* \w it|strong="H7760"\w* \w on|strong="H5921"\w* \w both|strong="H8147"\w* \w their|strong="H3947"\w* \w shoulders|strong="H7926"\w*, \w went|strong="H3212"\w* \w in|strong="H5921"\w* backwards, \w and|strong="H3212"\w* \w covered|strong="H3680"\w* \w the|strong="H6440"\w* \w nakedness|strong="H6172"\w* \w of|strong="H6440"\w* \w their|strong="H3947"\w* father. \w Their|strong="H3947"\w* \w faces|strong="H6440"\w* \w were|strong="H8147"\w* backwards, \w and|strong="H3212"\w* \w they|strong="H3808"\w* didn’t \w see|strong="H7200"\w* \w their|strong="H3947"\w* father’s \w nakedness|strong="H6172"\w*. +\v 24 \w Noah|strong="H5146"\w* \w awoke|strong="H3364"\w* \w from|strong="H1121"\w* \w his|strong="H3045"\w* \w wine|strong="H3196"\w*, \w and|strong="H1121"\w* \w knew|strong="H3045"\w* \w what|strong="H3045"\w* \w his|strong="H3045"\w* \w youngest|strong="H6996"\w* \w son|strong="H1121"\w* \w had|strong="H3045"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w him|strong="H6213"\w*. +\v 25 He said, +\q1 “\w Canaan|strong="H3667"\w* \w is|strong="H1961"\w* cursed. +\q2 He \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w servant|strong="H5650"\w* \w of|strong="H5650"\w* \w servants|strong="H5650"\w* \w to|strong="H1961"\w* \w his|strong="H1961"\w* brothers.” +\p +\v 26 \w He|strong="H3068"\w* said, +\q1 “\w Blessed|strong="H1288"\w* \w be|strong="H1961"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Shem|strong="H8035"\w*. +\q2 \w Let|strong="H1961"\w* \w Canaan|strong="H3667"\w* \w be|strong="H1961"\w* \w his|strong="H3068"\w* \w servant|strong="H5650"\w*. +\q1 +\v 27 \w May|strong="H1961"\w* God \w enlarge|strong="H6601"\w* \w Japheth|strong="H3315"\w*. +\q2 \w Let|strong="H1961"\w* \w him|strong="H1961"\w* \w dwell|strong="H7931"\w* \w in|strong="H7931"\w* \w the|strong="H1961"\w* tents \w of|strong="H5650"\w* \w Shem|strong="H8035"\w*. +\q2 \w Let|strong="H1961"\w* \w Canaan|strong="H3667"\w* \w be|strong="H1961"\w* \w his|strong="H1961"\w* \w servant|strong="H5650"\w*.” +\p +\v 28 \w Noah|strong="H5146"\w* \w lived|strong="H2421"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w* \w years|strong="H8141"\w* \w after|strong="H8141"\w* \w the|strong="H2421"\w* \w flood|strong="H3999"\w*. +\v 29 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w Noah|strong="H5146"\w* \w were|strong="H1961"\w* \w nine|strong="H8672"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w* \w years|strong="H8141"\w*, \w and|strong="H3967"\w* \w then|strong="H1961"\w* \w he|strong="H3117"\w* \w died|strong="H4191"\w*. +\c 10 +\p +\v 1 Now \w this|strong="H1121"\w* \w is|strong="H1121"\w* \w the|strong="H3205"\w* \w history|strong="H8435"\w* \w of|strong="H1121"\w* \w the|strong="H3205"\w* \w generations|strong="H8435"\w* \w of|strong="H1121"\w* \w the|strong="H3205"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Noah|strong="H5146"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w Shem|strong="H8035"\w*, \w Ham|strong="H2526"\w*, \w and|strong="H1121"\w* \w Japheth|strong="H3315"\w*. \w Sons|strong="H1121"\w* \w were|strong="H1121"\w* \w born|strong="H3205"\w* \w to|strong="H3205"\w* \w them|strong="H3205"\w* after \w the|strong="H3205"\w* \w flood|strong="H3999"\w*. +\p +\v 2 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Japheth|strong="H3315"\w* \w were|strong="H1121"\w*: \w Gomer|strong="H1586"\w*, \w Magog|strong="H4031"\w*, \w Madai|strong="H4074"\w*, \w Javan|strong="H3120"\w*, \w Tubal|strong="H8422"\w*, \w Meshech|strong="H4902"\w*, \w and|strong="H1121"\w* \w Tiras|strong="H8494"\w*. +\v 3 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Gomer|strong="H1586"\w* \w were|strong="H1121"\w*: Ashkenaz, \w Riphath|strong="H7384"\w*, \w and|strong="H1121"\w* \w Togarmah|strong="H8425"\w*. +\v 4 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Javan|strong="H3120"\w* \w were|strong="H1121"\w*: Elishah, \w Tarshish|strong="H8659"\w*, \w Kittim|strong="H3794"\w*, \w and|strong="H1121"\w* \w Dodanim|strong="H1721"\w*. +\v 5 \w Of|strong="H4940"\w* these \w were|strong="H4940"\w* \w the|strong="H6504"\w* islands \w of|strong="H4940"\w* \w the|strong="H6504"\w* \w nations|strong="H1471"\w* \w divided|strong="H6504"\w* \w in|strong="H1471"\w* \w their|strong="H1471"\w* lands, everyone after \w his|strong="H1471"\w* \w language|strong="H3956"\w*, after \w their|strong="H1471"\w* \w families|strong="H4940"\w*, \w in|strong="H1471"\w* \w their|strong="H1471"\w* \w nations|strong="H1471"\w*. +\p +\v 6 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Ham|strong="H2526"\w* \w were|strong="H1121"\w*: \w Cush|strong="H3568"\w*, \w Mizraim|strong="H4714"\w*, \w Put|strong="H6316"\w*, \w and|strong="H1121"\w* \w Canaan|strong="H3667"\w*. +\v 7 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Cush|strong="H3568"\w* \w were|strong="H1121"\w*: \w Seba|strong="H5434"\w*, \w Havilah|strong="H2341"\w*, \w Sabtah|strong="H5454"\w*, \w Raamah|strong="H7484"\w*, \w and|strong="H1121"\w* \w Sabteca|strong="H5455"\w*. \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Raamah|strong="H7484"\w* \w were|strong="H1121"\w*: \w Sheba|strong="H7614"\w* \w and|strong="H1121"\w* \w Dedan|strong="H1719"\w*. +\v 8 \w Cush|strong="H3568"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Nimrod|strong="H5248"\w*. \w He|strong="H1931"\w* \w began|strong="H2490"\w* \w to|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w mighty|strong="H1368"\w* \w one|strong="H1931"\w* \w in|strong="H1368"\w* \w the|strong="H3205"\w* earth. +\v 9 \w He|strong="H1931"\w* \w was|strong="H3068"\w* \w a|strong="H3068"\w* \w mighty|strong="H1368"\w* \w hunter|strong="H6718"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. \w Therefore|strong="H3651"\w* \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w said|strong="H3651"\w*, “\w like|strong="H1961"\w* \w Nimrod|strong="H5248"\w*, \w a|strong="H3068"\w* \w mighty|strong="H1368"\w* \w hunter|strong="H6718"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*”. +\v 10 \w The|strong="H1961"\w* \w beginning|strong="H7225"\w* \w of|strong="H4467"\w* \w his|strong="H1961"\w* \w kingdom|strong="H4467"\w* \w was|strong="H1961"\w* Babel, Erech, Accad, \w and|strong="H4467"\w* \w Calneh|strong="H3641"\w*, \w in|strong="H1961"\w* \w the|strong="H1961"\w* land \w of|strong="H4467"\w* \w Shinar|strong="H8152"\w*. +\v 11 \w Out|strong="H3318"\w* \w of|strong="H5892"\w* \w that|strong="H1931"\w* land \w he|strong="H1931"\w* \w went|strong="H3318"\w* \w into|strong="H3318"\w* Assyria, \w and|strong="H5892"\w* \w built|strong="H1129"\w* \w Nineveh|strong="H5210"\w*, \w Rehoboth|strong="H7344"\w* Ir, \w Calah|strong="H3625"\w*, +\v 12 \w and|strong="H1419"\w* \w Resen|strong="H7449"\w* \w between|strong="H7449"\w* \w Nineveh|strong="H5210"\w* \w and|strong="H1419"\w* \w the|strong="H5892"\w* \w great|strong="H1419"\w* \w city|strong="H5892"\w* \w Calah|strong="H3625"\w*. +\v 13 \w Mizraim|strong="H4714"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Ludim|strong="H3866"\w*, \w Anamim|strong="H6047"\w*, \w Lehabim|strong="H3853"\w*, \w Naphtuhim|strong="H5320"\w*, +\v 14 \w Pathrusim|strong="H6625"\w*, \w Casluhim|strong="H3695"\w* (\w which|strong="H8033"\w* \w the|strong="H3318"\w* \w Philistines|strong="H6430"\w* \w descended|strong="H3318"\w* \w from|strong="H3318"\w*), \w and|strong="H8033"\w* \w Caphtorim|strong="H3732"\w*. +\p +\v 15 \w Canaan|strong="H3667"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Sidon|strong="H6721"\w* (\w his|strong="H3205"\w* \w firstborn|strong="H1060"\w*), \w Heth|strong="H2845"\w*, +\v 16 \w the|strong="H2983"\w* \w Jebusites|strong="H2983"\w*, \w the|strong="H2983"\w* Amorites, \w the|strong="H2983"\w* \w Girgashites|strong="H1622"\w*, +\v 17 \w the|strong="H2340"\w* \w Hivites|strong="H2340"\w*, \w the|strong="H2340"\w* \w Arkites|strong="H6208"\w*, \w the|strong="H2340"\w* \w Sinites|strong="H5513"\w*, +\v 18 \w the|strong="H6327"\w* Arvadites, \w the|strong="H6327"\w* \w Zemarites|strong="H6786"\w*, \w and|strong="H3669"\w* \w the|strong="H6327"\w* \w Hamathites|strong="H2577"\w*. Afterward \w the|strong="H6327"\w* \w families|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H6327"\w* \w Canaanites|strong="H3669"\w* \w were|strong="H4940"\w* \w spread|strong="H6327"\w* \w abroad|strong="H6327"\w*. +\v 19 \w The|strong="H5704"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w the|strong="H5704"\w* \w Canaanites|strong="H3669"\w* \w was|strong="H1961"\w* \w from|strong="H5704"\w* \w Sidon|strong="H6721"\w*—\w as|strong="H5704"\w* \w you|strong="H5704"\w* \w go|strong="H1961"\w* \w toward|strong="H5704"\w* \w Gerar|strong="H1642"\w*—\w to|strong="H5704"\w* \w Gaza|strong="H5804"\w*—\w as|strong="H5704"\w* \w you|strong="H5704"\w* \w go|strong="H1961"\w* \w toward|strong="H5704"\w* \w Sodom|strong="H5467"\w*, \w Gomorrah|strong="H6017"\w*, Admah, \w and|strong="H5467"\w* \w Zeboiim|strong="H6636"\w*—\w to|strong="H5704"\w* \w Lasha|strong="H3962"\w*. +\v 20 These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Ham|strong="H2526"\w*, after \w their|strong="H1471"\w* \w families|strong="H4940"\w*, according \w to|strong="H1121"\w* \w their|strong="H1471"\w* \w languages|strong="H3956"\w*, \w in|strong="H1121"\w* \w their|strong="H1471"\w* lands \w and|strong="H1121"\w* \w their|strong="H1471"\w* \w nations|strong="H1471"\w*. +\p +\v 21 \w Children|strong="H1121"\w* \w were|strong="H1121"\w* \w also|strong="H1571"\w* \w born|strong="H3205"\w* \w to|strong="H3205"\w* \w Shem|strong="H8035"\w* (\w the|strong="H3605"\w* \w elder|strong="H1419"\w* brother \w of|strong="H1121"\w* \w Japheth|strong="H3315"\w*), \w the|strong="H3605"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Eber|strong="H5677"\w*. +\v 22 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shem|strong="H8035"\w* \w were|strong="H1121"\w*: \w Elam|strong="H5867"\w*, Asshur, Arpachshad, \w Lud|strong="H3865"\w*, \w and|strong="H1121"\w* Aram. +\v 23 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aram \w were|strong="H1121"\w*: \w Uz|strong="H5780"\w*, \w Hul|strong="H2343"\w*, \w Gether|strong="H1666"\w*, \w and|strong="H1121"\w* \w Mash|strong="H4851"\w*. +\v 24 Arpachshad \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Shelah|strong="H7974"\w*. \w Shelah|strong="H7974"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Eber|strong="H5677"\w*. +\v 25 \w To|strong="H3117"\w* \w Eber|strong="H5677"\w* \w were|strong="H1121"\w* \w born|strong="H3205"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w*. \w The|strong="H3588"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w one|strong="H1121"\w* \w was|strong="H8034"\w* \w Peleg|strong="H6389"\w*, \w for|strong="H3588"\w* \w in|strong="H3117"\w* \w his|strong="H3588"\w* \w days|strong="H3117"\w* \w the|strong="H3588"\w* earth \w was|strong="H8034"\w* \w divided|strong="H6385"\w*. \w His|strong="H3588"\w* brother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Joktan|strong="H3355"\w*. +\v 26 \w Joktan|strong="H3355"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* Almodad, \w Sheleph|strong="H8026"\w*, \w Hazarmaveth|strong="H2700"\w*, \w Jerah|strong="H3392"\w*, +\v 27 \w Hadoram|strong="H1913"\w*, Uzal, \w Diklah|strong="H1853"\w*, +\v 28 \w Obal|strong="H5745"\w*, Abimael, \w Sheba|strong="H7614"\w*, +\v 29 Ophir, \w Havilah|strong="H2341"\w*, \w and|strong="H1121"\w* \w Jobab|strong="H3103"\w*. \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w were|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Joktan|strong="H3355"\w*. +\v 30 \w Their|strong="H1961"\w* \w dwelling|strong="H4186"\w* \w extended|strong="H1961"\w* \w from|strong="H1961"\w* \w Mesha|strong="H4852"\w*, \w as|strong="H1961"\w* \w you|strong="H2022"\w* \w go|strong="H1961"\w* toward \w Sephar|strong="H5611"\w*, \w the|strong="H1961"\w* \w mountain|strong="H2022"\w* \w of|strong="H2022"\w* \w the|strong="H1961"\w* \w east|strong="H6924"\w*. +\v 31 These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shem|strong="H8035"\w*, \w by|strong="H4940"\w* \w their|strong="H1471"\w* \w families|strong="H4940"\w*, according \w to|strong="H1121"\w* \w their|strong="H1471"\w* \w languages|strong="H3956"\w*, lands, \w and|strong="H1121"\w* \w nations|strong="H1471"\w*. +\p +\v 32 These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Noah|strong="H5146"\w*, \w by|strong="H4940"\w* \w their|strong="H1471"\w* \w generations|strong="H8435"\w*, according \w to|strong="H1121"\w* \w their|strong="H1471"\w* \w nations|strong="H1471"\w*. \w The|strong="H1121"\w* \w nations|strong="H1471"\w* \w divided|strong="H6504"\w* \w from|strong="H1121"\w* these \w in|strong="H1121"\w* \w the|strong="H1121"\w* earth after \w the|strong="H1121"\w* \w flood|strong="H3999"\w*. +\c 11 +\p +\v 1 \w The|strong="H3605"\w* \w whole|strong="H3605"\w* earth \w was|strong="H1961"\w* \w of|strong="H1697"\w* \w one|strong="H3605"\w* \w language|strong="H8193"\w* \w and|strong="H1697"\w* \w of|strong="H1697"\w* \w one|strong="H3605"\w* \w speech|strong="H8193"\w*. +\v 2 \w As|strong="H1961"\w* \w they|strong="H8033"\w* \w traveled|strong="H5265"\w* \w east|strong="H6924"\w*,\f + \fr 11:2 \ft LXX reads “from the east”.\f* \w they|strong="H8033"\w* \w found|strong="H4672"\w* \w a|strong="H3068"\w* \w plain|strong="H1237"\w* \w in|strong="H3427"\w* \w the|strong="H1961"\w* land \w of|strong="H3427"\w* \w Shinar|strong="H8152"\w*, \w and|strong="H8033"\w* \w they|strong="H8033"\w* \w lived|strong="H3427"\w* \w there|strong="H8033"\w*. +\v 3 They said \w to|strong="H1961"\w* \w one|strong="H1961"\w* \w another|strong="H7453"\w*, “\w Come|strong="H1961"\w*, \w let|strong="H1961"\w*’s \w make|strong="H3835"\w* \w bricks|strong="H3843"\w*, \w and|strong="H7453"\w* \w burn|strong="H8313"\w* \w them|strong="H8313"\w* \w thoroughly|strong="H8316"\w*.” They \w had|strong="H1961"\w* \w brick|strong="H3843"\w* \w for|strong="H1961"\w* stone, \w and|strong="H7453"\w* they \w used|strong="H1961"\w* \w tar|strong="H2564"\w* \w for|strong="H1961"\w* \w mortar|strong="H2563"\w*. +\v 4 \w They|strong="H5921"\w* said, “\w Come|strong="H3051"\w*, let’s \w build|strong="H1129"\w* \w ourselves|strong="H1129"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w*, \w and|strong="H8064"\w* \w a|strong="H3068"\w* \w tower|strong="H4026"\w* \w whose|strong="H8034"\w* \w top|strong="H7218"\w* reaches \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w and|strong="H8064"\w* let’s \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w name|strong="H8034"\w* \w for|strong="H5921"\w* \w ourselves|strong="H1129"\w*, \w lest|strong="H6435"\w* \w we|strong="H3068"\w* \w be|strong="H8034"\w* \w scattered|strong="H6327"\w* \w abroad|strong="H6327"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w earth|strong="H8064"\w*.” +\p +\v 5 \w Yahweh|strong="H3068"\w* \w came|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w city|strong="H5892"\w* \w and|strong="H1121"\w* \w the|strong="H7200"\w* \w tower|strong="H4026"\w*, \w which|strong="H3068"\w* \w the|strong="H7200"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w* \w built|strong="H1129"\w*. +\v 6 \w Yahweh|strong="H3068"\w* said, “\w Behold|strong="H2005"\w*, \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w one|strong="H2088"\w* \w people|strong="H5971"\w*, \w and|strong="H3068"\w* \w they|strong="H1992"\w* \w all|strong="H3605"\w* \w have|strong="H3068"\w* \w one|strong="H2088"\w* \w language|strong="H8193"\w*, \w and|strong="H3068"\w* \w this|strong="H2088"\w* \w is|strong="H3068"\w* \w what|strong="H2088"\w* \w they|strong="H1992"\w* \w begin|strong="H2490"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w*. \w Now|strong="H6258"\w* \w nothing|strong="H3808"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* withheld \w from|strong="H3068"\w* \w them|strong="H1992"\w*, \w which|strong="H3068"\w* \w they|strong="H1992"\w* intend \w to|strong="H3068"\w* \w do|strong="H6213"\w*. +\v 7 \w Come|strong="H3381"\w*, \w let|strong="H3381"\w*’s \w go|strong="H3381"\w* \w down|strong="H3381"\w*, \w and|strong="H8033"\w* \w there|strong="H8033"\w* \w confuse|strong="H1101"\w* \w their|strong="H8085"\w* \w language|strong="H8193"\w*, \w that|strong="H8085"\w* \w they|strong="H8033"\w* \w may|strong="H8193"\w* \w not|strong="H3808"\w* \w understand|strong="H8085"\w* \w one|strong="H3808"\w* \w another|strong="H7453"\w*’s \w speech|strong="H8193"\w*.” +\v 8 \w So|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w scattered|strong="H6327"\w* \w them|strong="H5921"\w* \w abroad|strong="H6327"\w* \w from|strong="H6440"\w* \w there|strong="H8033"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth. \w They|strong="H8033"\w* \w stopped|strong="H2308"\w* \w building|strong="H1129"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*. +\v 9 \w Therefore|strong="H3651"\w* \w its|strong="H3605"\w* \w name|strong="H8034"\w* \w was|strong="H3068"\w* \w called|strong="H7121"\w* Babel, \w because|strong="H3588"\w* \w there|strong="H8033"\w* \w Yahweh|strong="H3068"\w* \w confused|strong="H1101"\w* \w the|strong="H3605"\w* \w language|strong="H8193"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth. \w From|strong="H6440"\w* \w there|strong="H8033"\w*, \w Yahweh|strong="H3068"\w* \w scattered|strong="H6327"\w* \w them|strong="H5921"\w* \w abroad|strong="H6327"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth. +\p +\v 10 \w This|strong="H1121"\w* \w is|strong="H1121"\w* \w the|strong="H3205"\w* \w history|strong="H8435"\w* \w of|strong="H1121"\w* \w the|strong="H3205"\w* \w generations|strong="H8435"\w* \w of|strong="H1121"\w* \w Shem|strong="H8035"\w*: \w Shem|strong="H8035"\w* \w was|strong="H1121"\w* \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H8141"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* Arpachshad \w two|strong="H3967"\w* \w years|strong="H8141"\w* \w after|strong="H8141"\w* \w the|strong="H3205"\w* \w flood|strong="H3999"\w*. +\v 11 \w Shem|strong="H8035"\w* \w lived|strong="H2421"\w* \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w years|strong="H8141"\w* \w after|strong="H8141"\w* \w he|strong="H2568"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* Arpachshad, \w and|strong="H3967"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w more|strong="H3205"\w* \w sons|strong="H1121"\w* \w and|strong="H3967"\w* \w daughters|strong="H1323"\w*. +\p +\v 12 Arpachshad \w lived|strong="H2421"\w* \w thirty-five|strong="H7970"\w* \w years|strong="H8141"\w* \w and|strong="H7970"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H8141"\w* \w Shelah|strong="H7974"\w*. +\v 13 Arpachshad \w lived|strong="H2421"\w* \w four|strong="H7969"\w* \w hundred|strong="H3967"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w* \w after|strong="H8141"\w* \w he|strong="H8141"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Shelah|strong="H7974"\w*, \w and|strong="H3967"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w more|strong="H3205"\w* \w sons|strong="H1121"\w* \w and|strong="H3967"\w* \w daughters|strong="H1323"\w*. +\p +\v 14 \w Shelah|strong="H7974"\w* \w lived|strong="H2421"\w* \w thirty|strong="H7970"\w* \w years|strong="H8141"\w*, \w and|strong="H7970"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H8141"\w* \w Eber|strong="H5677"\w*. +\v 15 \w Shelah|strong="H7974"\w* \w lived|strong="H2421"\w* \w four|strong="H7969"\w* \w hundred|strong="H3967"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w* \w after|strong="H8141"\w* \w he|strong="H8141"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Eber|strong="H5677"\w*, \w and|strong="H3967"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w more|strong="H3205"\w* \w sons|strong="H1121"\w* \w and|strong="H3967"\w* \w daughters|strong="H1323"\w*. +\p +\v 16 \w Eber|strong="H5677"\w* \w lived|strong="H2421"\w* \w thirty-four|strong="H7970"\w* \w years|strong="H8141"\w*, \w and|strong="H7970"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H8141"\w* \w Peleg|strong="H6389"\w*. +\v 17 \w Eber|strong="H5677"\w* \w lived|strong="H2421"\w* four \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w* \w years|strong="H8141"\w* \w after|strong="H8141"\w* \w he|strong="H8141"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Peleg|strong="H6389"\w*, \w and|strong="H3967"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w more|strong="H3205"\w* \w sons|strong="H1121"\w* \w and|strong="H3967"\w* \w daughters|strong="H1323"\w*. +\p +\v 18 \w Peleg|strong="H6389"\w* \w lived|strong="H2421"\w* \w thirty|strong="H7970"\w* \w years|strong="H8141"\w*, \w and|strong="H7970"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H8141"\w* \w Reu|strong="H7466"\w*. +\v 19 \w Peleg|strong="H6389"\w* \w lived|strong="H2421"\w* \w two|strong="H2421"\w* \w hundred|strong="H3967"\w* \w nine|strong="H8672"\w* \w years|strong="H8141"\w* \w after|strong="H8141"\w* \w he|strong="H8141"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Reu|strong="H7466"\w*, \w and|strong="H3967"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w more|strong="H3205"\w* \w sons|strong="H1121"\w* \w and|strong="H3967"\w* \w daughters|strong="H1323"\w*. +\p +\v 20 \w Reu|strong="H7466"\w* \w lived|strong="H2421"\w* \w thirty-two|strong="H7970"\w* \w years|strong="H8141"\w*, \w and|strong="H7970"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H8141"\w* \w Serug|strong="H8286"\w*. +\v 21 \w Reu|strong="H7466"\w* \w lived|strong="H2421"\w* \w two|strong="H2421"\w* \w hundred|strong="H3967"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w* \w after|strong="H8141"\w* \w he|strong="H8141"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Serug|strong="H8286"\w*, \w and|strong="H3967"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w more|strong="H3205"\w* \w sons|strong="H1121"\w* \w and|strong="H3967"\w* \w daughters|strong="H1323"\w*. +\p +\v 22 \w Serug|strong="H8286"\w* \w lived|strong="H2421"\w* \w thirty|strong="H7970"\w* \w years|strong="H8141"\w*, \w and|strong="H7970"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H8141"\w* \w Nahor|strong="H5152"\w*. +\v 23 \w Serug|strong="H8286"\w* \w lived|strong="H2421"\w* \w two|strong="H2421"\w* \w hundred|strong="H3967"\w* \w years|strong="H8141"\w* \w after|strong="H8141"\w* \w he|strong="H8141"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Nahor|strong="H5152"\w*, \w and|strong="H3967"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w more|strong="H3205"\w* \w sons|strong="H1121"\w* \w and|strong="H3967"\w* \w daughters|strong="H1323"\w*. +\p +\v 24 \w Nahor|strong="H5152"\w* \w lived|strong="H2421"\w* \w twenty-nine|strong="H6242"\w* \w years|strong="H8141"\w*, \w and|strong="H6242"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H8141"\w* \w Terah|strong="H8646"\w*. +\v 25 \w Nahor|strong="H5152"\w* \w lived|strong="H2421"\w* \w one|strong="H2421"\w* \w hundred|strong="H3967"\w* \w nineteen|strong="H8672"\w* \w years|strong="H8141"\w* \w after|strong="H8141"\w* \w he|strong="H8141"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Terah|strong="H8646"\w*, \w and|strong="H3967"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w more|strong="H3205"\w* \w sons|strong="H1121"\w* \w and|strong="H3967"\w* \w daughters|strong="H1323"\w*. +\p +\v 26 \w Terah|strong="H8646"\w* \w lived|strong="H2421"\w* \w seventy|strong="H7657"\w* \w years|strong="H8141"\w*, \w and|strong="H8141"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H8141"\w* Abram, \w Nahor|strong="H5152"\w*, \w and|strong="H8141"\w* \w Haran|strong="H2039"\w*. +\p +\v 27 Now this is \w the|strong="H3205"\w* \w history|strong="H8435"\w* \w of|strong="H3205"\w* \w the|strong="H3205"\w* \w generations|strong="H8435"\w* \w of|strong="H3205"\w* \w Terah|strong="H8646"\w*. \w Terah|strong="H8646"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* Abram, \w Nahor|strong="H5152"\w*, \w and|strong="H3205"\w* \w Haran|strong="H2039"\w*. \w Haran|strong="H2039"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Lot|strong="H3876"\w*. +\v 28 \w Haran|strong="H2039"\w* \w died|strong="H4191"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H6440"\w* \w his|strong="H6440"\w* \w birth|strong="H4138"\w*, \w in|strong="H5921"\w* Ur \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w Chaldees|strong="H3778"\w*, \w while|strong="H5921"\w* \w his|strong="H6440"\w* father \w Terah|strong="H8646"\w* \w was|strong="H6440"\w* still alive. +\v 29 Abram \w and|strong="H1323"\w* \w Nahor|strong="H5152"\w* \w married|strong="H3947"\w* wives. \w The|strong="H3947"\w* \w name|strong="H8034"\w* \w of|strong="H1323"\w* Abram’s wife \w was|strong="H8034"\w* \w Sarai|strong="H8297"\w*, \w and|strong="H1323"\w* \w the|strong="H3947"\w* \w name|strong="H8034"\w* \w of|strong="H1323"\w* \w Nahor|strong="H5152"\w*’s wife \w was|strong="H8034"\w* \w Milcah|strong="H4435"\w*, \w the|strong="H3947"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Haran|strong="H2039"\w*, \w who|strong="H1323"\w* \w was|strong="H8034"\w* \w also|strong="H8034"\w* \w the|strong="H3947"\w* father \w of|strong="H1323"\w* \w Iscah|strong="H3252"\w*. +\v 30 \w Sarai|strong="H8297"\w* \w was|strong="H1961"\w* \w barren|strong="H6135"\w*. She \w had|strong="H1961"\w* \w no|strong="H1961"\w* \w child|strong="H2056"\w*. +\v 31 \w Terah|strong="H8646"\w* \w took|strong="H3947"\w* Abram \w his|strong="H3947"\w* \w son|strong="H1121"\w*, \w Lot|strong="H3876"\w* \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Haran|strong="H2771"\w*, \w his|strong="H3947"\w* \w son|strong="H1121"\w*’s \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w Sarai|strong="H8297"\w* \w his|strong="H3947"\w* \w daughter-in-law|strong="H3618"\w*, \w his|strong="H3947"\w* \w son|strong="H1121"\w* Abram’s wife. \w They|strong="H8033"\w* \w went|strong="H3212"\w* \w from|strong="H3318"\w* Ur \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w Chaldees|strong="H3778"\w*, \w to|strong="H5704"\w* \w go|strong="H3212"\w* \w into|strong="H3212"\w* \w the|strong="H3947"\w* land \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*. \w They|strong="H8033"\w* \w came|strong="H3318"\w* \w to|strong="H5704"\w* \w Haran|strong="H2771"\w* \w and|strong="H1121"\w* \w lived|strong="H3427"\w* \w there|strong="H8033"\w*. +\v 32 \w The|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w Terah|strong="H8646"\w* \w were|strong="H1961"\w* \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* \w five|strong="H2568"\w* \w years|strong="H8141"\w*. \w Terah|strong="H8646"\w* \w died|strong="H4191"\w* \w in|strong="H8141"\w* \w Haran|strong="H2771"\w*. +\c 12 +\p +\v 1 \w Now|strong="H3212"\w* \w Yahweh|strong="H3068"\w* said \w to|strong="H3212"\w* Abram, “Leave \w your|strong="H3068"\w* country, \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w relatives|strong="H4138"\w*, \w and|strong="H3068"\w* \w your|strong="H3068"\w* father’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H7200"\w* land \w that|strong="H7200"\w* \w I|strong="H7200"\w* \w will|strong="H3068"\w* \w show|strong="H7200"\w* \w you|strong="H7200"\w*. +\v 2 \w I|strong="H6213"\w* \w will|strong="H1961"\w* \w make|strong="H6213"\w* \w of|strong="H8034"\w* \w you|strong="H6213"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w nation|strong="H1471"\w*. \w I|strong="H6213"\w* \w will|strong="H1961"\w* \w bless|strong="H1288"\w* \w you|strong="H6213"\w* \w and|strong="H1419"\w* \w make|strong="H6213"\w* \w your|strong="H6213"\w* \w name|strong="H8034"\w* \w great|strong="H1419"\w*. \w You|strong="H6213"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w blessing|strong="H1293"\w*. +\v 3 \w I|strong="H3605"\w* \w will|strong="H3605"\w* \w bless|strong="H1288"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w bless|strong="H1288"\w* \w you|strong="H3605"\w*, \w and|strong="H3605"\w* \w I|strong="H3605"\w* \w will|strong="H3605"\w* \w curse|strong="H7043"\w* \w him|strong="H3605"\w* \w who|strong="H3605"\w* treats \w you|strong="H3605"\w* \w with|strong="H3605"\w* \w contempt|strong="H7043"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w families|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H3605"\w* earth \w will|strong="H3605"\w* \w be|strong="H1288"\w* \w blessed|strong="H1288"\w* \w through|strong="H3605"\w* \w you|strong="H3605"\w*.” +\p +\v 4 \w So|strong="H3318"\w* Abram \w went|strong="H3212"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w told|strong="H1696"\w* \w him|strong="H3318"\w*. \w Lot|strong="H3876"\w* \w went|strong="H3212"\w* \w with|strong="H3068"\w* \w him|strong="H3318"\w*. Abram \w was|strong="H3068"\w* \w seventy-five|strong="H7657"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H3318"\w* \w he|strong="H3068"\w* \w departed|strong="H3212"\w* \w from|strong="H3318"\w* \w Haran|strong="H2771"\w*. +\v 5 Abram \w took|strong="H3947"\w* \w Sarai|strong="H8297"\w* \w his|strong="H3605"\w* wife, \w Lot|strong="H3876"\w* \w his|strong="H3605"\w* brother’s \w son|strong="H1121"\w*, \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w possessions|strong="H7399"\w* \w that|strong="H3605"\w* \w they|strong="H6213"\w* \w had|strong="H1121"\w* \w gathered|strong="H7408"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w people|strong="H1121"\w* whom \w they|strong="H6213"\w* \w had|strong="H1121"\w* \w acquired|strong="H6213"\w* \w in|strong="H6213"\w* \w Haran|strong="H2771"\w*, \w and|strong="H1121"\w* \w they|strong="H6213"\w* \w went|strong="H3212"\w* \w to|strong="H3318"\w* \w go|strong="H3212"\w* \w into|strong="H3212"\w* \w the|strong="H3605"\w* land \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*. \w They|strong="H6213"\w* \w entered|strong="H3318"\w* \w into|strong="H3212"\w* \w the|strong="H3605"\w* land \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*. +\v 6 Abram \w passed|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H5704"\w* \w land|strong="H4725"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w place|strong="H4725"\w* \w of|strong="H4725"\w* \w Shechem|strong="H7927"\w*, \w to|strong="H5704"\w* \w the|strong="H5704"\w* oak \w of|strong="H4725"\w* \w Moreh|strong="H4176"\w*. \w At|strong="H5704"\w* \w that|strong="H3669"\w* \w time|strong="H5704"\w*, \w Canaanites|strong="H3669"\w* \w were|strong="H3669"\w* \w in|strong="H4725"\w* \w the|strong="H5704"\w* \w land|strong="H4725"\w*. +\p +\v 7 \w Yahweh|strong="H3068"\w* \w appeared|strong="H7200"\w* \w to|strong="H3068"\w* Abram \w and|strong="H3068"\w* said, “\w I|strong="H5414"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w this|strong="H2063"\w* land \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w offspring|strong="H2233"\w*.”\f + \fr 12:7 \ft or, seed\f* +\p \w He|strong="H8033"\w* \w built|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w there|strong="H8033"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H3068"\w* \w had|strong="H3068"\w* \w appeared|strong="H7200"\w* \w to|strong="H3068"\w* \w him|strong="H5414"\w*. +\v 8 \w He|strong="H8033"\w* \w left|strong="H5186"\w* \w from|strong="H3068"\w* \w there|strong="H8033"\w* \w to|strong="H3068"\w* \w go|strong="H3068"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w mountain|strong="H2022"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w east|strong="H6924"\w* \w of|strong="H3068"\w* \w Bethel|strong="H1008"\w* \w and|strong="H3068"\w* \w pitched|strong="H5186"\w* \w his|strong="H3068"\w* tent, having \w Bethel|strong="H1008"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w west|strong="H3220"\w*, \w and|strong="H3068"\w* \w Ai|strong="H5857"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w east|strong="H6924"\w*. \w There|strong="H8033"\w* \w he|strong="H8033"\w* \w built|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w called|strong="H7121"\w* \w on|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*. +\v 9 Abram \w traveled|strong="H5265"\w*, \w still|strong="H1980"\w* \w going|strong="H1980"\w* \w on|strong="H1980"\w* \w toward|strong="H1980"\w* \w the|strong="H1980"\w* \w South|strong="H5045"\w*. +\p +\v 10 \w There|strong="H8033"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w famine|strong="H7458"\w* \w in|strong="H1481"\w* \w the|strong="H3588"\w* land. Abram \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w Egypt|strong="H4714"\w* \w to|strong="H3381"\w* \w live|strong="H1481"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* foreigner \w there|strong="H8033"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w famine|strong="H7458"\w* \w was|strong="H1961"\w* \w severe|strong="H3515"\w* \w in|strong="H1481"\w* \w the|strong="H3588"\w* land. +\v 11 \w When|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H1961"\w* \w come|strong="H1961"\w* \w near|strong="H7126"\w* \w to|strong="H1961"\w* enter \w Egypt|strong="H4714"\w*, \w he|strong="H3588"\w* said \w to|strong="H1961"\w* \w Sarai|strong="H8297"\w* \w his|strong="H3045"\w* wife, “\w See|strong="H2009"\w* \w now|strong="H4994"\w*, \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H4714"\w* \w a|strong="H3068"\w* \w beautiful|strong="H3303"\w* \w woman|strong="H4758"\w* \w to|strong="H1961"\w* \w look|strong="H2009"\w* \w at|strong="H1961"\w*. +\v 12 \w It|strong="H3588"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w that|strong="H3588"\w* \w when|strong="H3588"\w* \w the|strong="H7200"\w* \w Egyptians|strong="H4713"\w* \w see|strong="H7200"\w* \w you|strong="H3588"\w*, \w they|strong="H3588"\w* \w will|strong="H1961"\w* say, ‘\w This|strong="H2063"\w* \w is|strong="H1961"\w* \w his|strong="H7200"\w* wife.’ \w They|strong="H3588"\w* \w will|strong="H1961"\w* \w kill|strong="H2026"\w* \w me|strong="H7200"\w*, \w but|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H1961"\w* \w save|strong="H2421"\w* \w you|strong="H3588"\w* \w alive|strong="H2421"\w*. +\v 13 \w Please|strong="H4994"\w* say \w that|strong="H5315"\w* \w you|strong="H5315"\w* \w are|strong="H5315"\w* \w my|strong="H2421"\w* sister, \w that|strong="H5315"\w* \w it|strong="H3190"\w* \w may|strong="H4994"\w* \w be|strong="H5315"\w* \w well|strong="H3190"\w* \w with|strong="H5315"\w* \w me|strong="H4994"\w* \w for|strong="H4616"\w* \w your|strong="H3190"\w* \w sake|strong="H4616"\w*, \w and|strong="H5315"\w* \w that|strong="H5315"\w* \w my|strong="H2421"\w* \w soul|strong="H5315"\w* \w may|strong="H4994"\w* \w live|strong="H2421"\w* \w because|strong="H4616"\w* \w of|strong="H5315"\w* \w you|strong="H5315"\w*.” +\p +\v 14 \w When|strong="H3588"\w* Abram \w had|strong="H1961"\w* \w come|strong="H1961"\w* \w into|strong="H4714"\w* \w Egypt|strong="H4714"\w*, some \w Egyptians|strong="H4714"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H7200"\w* woman \w was|strong="H1961"\w* \w very|strong="H3966"\w* \w beautiful|strong="H3303"\w*. +\v 15 \w The|strong="H7200"\w* \w princes|strong="H8269"\w* \w of|strong="H1004"\w* \w Pharaoh|strong="H6547"\w* \w saw|strong="H7200"\w* \w her|strong="H3947"\w*, \w and|strong="H1004"\w* \w praised|strong="H1984"\w* \w her|strong="H3947"\w* \w to|strong="H1004"\w* \w Pharaoh|strong="H6547"\w*; \w and|strong="H1004"\w* \w the|strong="H7200"\w* \w woman|strong="H1004"\w* \w was|strong="H1004"\w* \w taken|strong="H3947"\w* \w into|strong="H3947"\w* \w Pharaoh|strong="H6547"\w*’s \w house|strong="H1004"\w*. +\v 16 \w He|strong="H1241"\w* dealt \w well|strong="H3190"\w* \w with|strong="H1241"\w* Abram \w for|strong="H5650"\w* \w her|strong="H3190"\w* \w sake|strong="H5668"\w*. \w He|strong="H1241"\w* \w had|strong="H1961"\w* \w sheep|strong="H6629"\w*, \w cattle|strong="H1241"\w*, \w male|strong="H5650"\w* \w donkeys|strong="H2543"\w*, \w male|strong="H5650"\w* \w servants|strong="H5650"\w*, \w female|strong="H8198"\w* \w servants|strong="H5650"\w*, \w female|strong="H8198"\w* \w donkeys|strong="H2543"\w*, \w and|strong="H5650"\w* \w camels|strong="H1581"\w*. +\v 17 \w Yahweh|strong="H3068"\w* \w afflicted|strong="H5060"\w* \w Pharaoh|strong="H6547"\w* \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w house|strong="H1004"\w* \w with|strong="H1004"\w* \w great|strong="H1419"\w* \w plagues|strong="H5061"\w* \w because|strong="H5921"\w* \w of|strong="H1004"\w* \w Sarai|strong="H8297"\w*, Abram’s wife. +\v 18 \w Pharaoh|strong="H6547"\w* \w called|strong="H7121"\w* Abram \w and|strong="H6213"\w* \w said|strong="H7121"\w*, “\w What|strong="H4100"\w* \w is|strong="H1931"\w* \w this|strong="H2063"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w me|strong="H5046"\w*? \w Why|strong="H4100"\w* didn’t \w you|strong="H3588"\w* \w tell|strong="H5046"\w* \w me|strong="H5046"\w* \w that|strong="H3588"\w* \w she|strong="H1931"\w* \w was|strong="H1931"\w* \w your|strong="H6213"\w* wife? +\v 19 \w Why|strong="H4100"\w* \w did|strong="H4100"\w* \w you|strong="H3947"\w* say, ‘\w She|strong="H1931"\w* \w is|strong="H1931"\w* \w my|strong="H3947"\w* sister,’ \w so|strong="H3947"\w* \w that|strong="H1931"\w* \w I|strong="H2009"\w* \w took|strong="H3947"\w* \w her|strong="H3947"\w* \w to|strong="H3212"\w* \w be|strong="H6258"\w* \w my|strong="H3947"\w* wife? \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w see|strong="H2009"\w* \w your|strong="H3947"\w* wife, \w take|strong="H3947"\w* \w her|strong="H3947"\w*, \w and|strong="H3212"\w* \w go|strong="H3212"\w* \w your|strong="H3947"\w* \w way|strong="H3212"\w*.” +\p +\v 20 \w Pharaoh|strong="H6547"\w* \w commanded|strong="H6680"\w* \w men|strong="H3605"\w* \w concerning|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H7971"\w* \w they|strong="H5921"\w* \w escorted|strong="H7971"\w* \w him|strong="H5921"\w* \w away|strong="H7971"\w* \w with|strong="H5921"\w* \w his|strong="H3605"\w* wife \w and|strong="H7971"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w had|strong="H6547"\w*. +\c 13 +\p +\v 1 Abram \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H3605"\w* \w of|strong="H3605"\w* \w Egypt|strong="H4714"\w*—\w he|strong="H1931"\w*, \w his|strong="H3605"\w* wife, \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H1931"\w* \w had|strong="H4714"\w*, \w and|strong="H4714"\w* \w Lot|strong="H3876"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*—\w into|strong="H5927"\w* \w the|strong="H3605"\w* \w South|strong="H5045"\w*. +\v 2 Abram \w was|strong="H3966"\w* \w very|strong="H3966"\w* \w rich|strong="H3513"\w* \w in|strong="H3701"\w* \w livestock|strong="H4735"\w*, \w in|strong="H3701"\w* \w silver|strong="H3701"\w*, \w and|strong="H3701"\w* \w in|strong="H3701"\w* \w gold|strong="H2091"\w*. +\v 3 \w He|strong="H5704"\w* \w went|strong="H3212"\w* \w on|strong="H1961"\w* \w his|strong="H1961"\w* \w journeys|strong="H4550"\w* \w from|strong="H5704"\w* \w the|strong="H5704"\w* \w South|strong="H5045"\w* \w as|strong="H5704"\w* \w far|strong="H5704"\w* \w as|strong="H5704"\w* \w Bethel|strong="H1008"\w*, \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w his|strong="H1961"\w* tent \w had|strong="H1961"\w* \w been|strong="H1961"\w* \w at|strong="H1961"\w* \w the|strong="H5704"\w* \w beginning|strong="H8462"\w*, \w between|strong="H5704"\w* \w Bethel|strong="H1008"\w* \w and|strong="H3212"\w* \w Ai|strong="H5857"\w*, +\v 4 \w to|strong="H3068"\w* \w the|strong="H6213"\w* \w place|strong="H4725"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* \w altar|strong="H4196"\w*, \w which|strong="H3068"\w* \w he|strong="H8033"\w* \w had|strong="H3068"\w* \w made|strong="H6213"\w* \w there|strong="H8033"\w* \w at|strong="H3068"\w* \w the|strong="H6213"\w* \w first|strong="H7223"\w*. \w There|strong="H8033"\w* Abram \w called|strong="H7121"\w* \w on|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*. +\v 5 \w Lot|strong="H3876"\w* \w also|strong="H1571"\w*, \w who|strong="H1980"\w* \w went|strong="H1980"\w* \w with|strong="H1980"\w* Abram, \w had|strong="H1961"\w* \w flocks|strong="H6629"\w*, \w herds|strong="H1241"\w*, \w and|strong="H1980"\w* tents. +\v 6 \w The|strong="H3588"\w* land \w was|strong="H1961"\w* \w not|strong="H3808"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w bear|strong="H5375"\w* \w them|strong="H5375"\w*, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w might|strong="H3201"\w* \w live|strong="H3427"\w* \w together|strong="H3162"\w*; \w for|strong="H3588"\w* \w their|strong="H5375"\w* \w possessions|strong="H7399"\w* \w were|strong="H1961"\w* \w so|strong="H1961"\w* \w great|strong="H7227"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* couldn’t \w live|strong="H3427"\w* \w together|strong="H3162"\w*. +\v 7 \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w strife|strong="H7379"\w* \w between|strong="H3427"\w* \w the|strong="H1961"\w* \w herdsmen|strong="H4735"\w* \w of|strong="H3427"\w* Abram’s \w livestock|strong="H4735"\w* \w and|strong="H3427"\w* \w the|strong="H1961"\w* \w herdsmen|strong="H4735"\w* \w of|strong="H3427"\w* \w Lot|strong="H3876"\w*’s \w livestock|strong="H4735"\w*. \w The|strong="H1961"\w* \w Canaanites|strong="H3669"\w* \w and|strong="H3427"\w* \w the|strong="H1961"\w* \w Perizzites|strong="H6522"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H1961"\w* land \w at|strong="H3427"\w* \w that|strong="H3669"\w* \w time|strong="H1961"\w*. +\v 8 Abram said \w to|strong="H1961"\w* \w Lot|strong="H3876"\w*, “\w Please|strong="H4994"\w*, \w let|strong="H4994"\w* \w there|strong="H1961"\w* \w be|strong="H1961"\w* \w no|strong="H1961"\w* \w strife|strong="H4808"\w* between \w you|strong="H3588"\w* \w and|strong="H4994"\w* \w me|strong="H4994"\w*, \w and|strong="H4994"\w* between \w your|strong="H3588"\w* \w herdsmen|strong="H7473"\w* \w and|strong="H4994"\w* \w my|strong="H1961"\w* \w herdsmen|strong="H7473"\w*; \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w are|strong="H1961"\w* relatives. +\v 9 Isn’t \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w land|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*? \w Please|strong="H4994"\w* \w separate|strong="H6504"\w* \w yourself|strong="H3231"\w* \w from|strong="H6440"\w* \w me|strong="H6440"\w*. If \w you|strong="H6440"\w* \w go|strong="H8041"\w* \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w left|strong="H8040"\w* \w hand|strong="H3225"\w*, \w then|strong="H3808"\w* \w I|strong="H5921"\w* \w will|strong="H3808"\w* \w go|strong="H8041"\w* \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w right|strong="H3225"\w*. \w Or|strong="H3808"\w* if \w you|strong="H6440"\w* \w go|strong="H8041"\w* \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w*, \w then|strong="H3808"\w* \w I|strong="H5921"\w* \w will|strong="H3808"\w* \w go|strong="H8041"\w* \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w left|strong="H8040"\w*.” +\p +\v 10 \w Lot|strong="H3876"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H3605"\w* \w eyes|strong="H5869"\w*, \w and|strong="H3068"\w* \w saw|strong="H7200"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w plain|strong="H3603"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*, \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H3068"\w* well-watered \w everywhere|strong="H3605"\w*, \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w destroyed|strong="H7843"\w* \w Sodom|strong="H5467"\w* \w and|strong="H3068"\w* \w Gomorrah|strong="H6017"\w*, \w like|strong="H3068"\w* \w the|strong="H3605"\w* \w garden|strong="H1588"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w like|strong="H3068"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w as|strong="H3068"\w* \w you|strong="H3588"\w* \w go|strong="H3068"\w* \w to|strong="H3068"\w* \w Zoar|strong="H6820"\w*. +\v 11 \w So|strong="H5921"\w* \w Lot|strong="H3876"\w* chose \w the|strong="H3605"\w* \w Plain|strong="H3603"\w* \w of|strong="H3603"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w* \w for|strong="H5921"\w* \w himself|strong="H6504"\w*. \w Lot|strong="H3876"\w* \w traveled|strong="H5265"\w* \w east|strong="H6924"\w*, \w and|strong="H5265"\w* \w they|strong="H5921"\w* \w separated|strong="H6504"\w* \w themselves|strong="H6504"\w* \w from|strong="H5265"\w* \w one|strong="H3605"\w* another. +\v 12 Abram \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5704"\w* land \w of|strong="H3427"\w* \w Canaan|strong="H3667"\w*, \w and|strong="H5892"\w* \w Lot|strong="H3876"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5704"\w* \w cities|strong="H5892"\w* \w of|strong="H3427"\w* \w the|strong="H5704"\w* \w plain|strong="H3603"\w*, \w and|strong="H5892"\w* moved \w his|strong="H3427"\w* tent \w as|strong="H5704"\w* \w far|strong="H5704"\w* \w as|strong="H5704"\w* \w Sodom|strong="H5467"\w*. +\v 13 Now \w the|strong="H3068"\w* \w men|strong="H7451"\w* \w of|strong="H3068"\w* \w Sodom|strong="H5467"\w* \w were|strong="H7451"\w* \w exceedingly|strong="H3966"\w* \w wicked|strong="H7451"\w* \w and|strong="H3068"\w* \w sinners|strong="H2400"\w* \w against|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 14 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* Abram, \w after|strong="H4480"\w* \w Lot|strong="H3876"\w* \w was|strong="H3068"\w* \w separated|strong="H6504"\w* \w from|strong="H4480"\w* \w him|strong="H7200"\w*, “\w Now|strong="H4994"\w*, \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w*, \w and|strong="H3068"\w* \w look|strong="H7200"\w* \w from|strong="H4480"\w* \w the|strong="H7200"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w you|strong="H5973"\w* \w are|strong="H5869"\w*, \w northward|strong="H6828"\w* \w and|strong="H3068"\w* \w southward|strong="H5045"\w* \w and|strong="H3068"\w* \w eastward|strong="H6924"\w* \w and|strong="H3068"\w* \w westward|strong="H3220"\w*, +\v 15 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w which|strong="H3588"\w* \w you|strong="H3588"\w* \w see|strong="H7200"\w* \w to|strong="H5704"\w* \w you|strong="H3588"\w* \w and|strong="H5769"\w* \w to|strong="H5704"\w* \w your|strong="H3605"\w* \w offspring|strong="H2233"\w* \w forever|strong="H5769"\w*. +\v 16 \w I|strong="H7760"\w* \w will|strong="H1571"\w* \w make|strong="H7760"\w* \w your|strong="H7760"\w* \w offspring|strong="H2233"\w* \w as|strong="H1571"\w* \w the|strong="H7760"\w* \w dust|strong="H6083"\w* \w of|strong="H2233"\w* \w the|strong="H7760"\w* \w earth|strong="H6083"\w*, \w so|strong="H1571"\w* \w that|strong="H1571"\w* \w if|strong="H7760"\w* \w a|strong="H3068"\w* man \w can|strong="H3201"\w* \w count|strong="H4487"\w* \w the|strong="H7760"\w* \w dust|strong="H6083"\w* \w of|strong="H2233"\w* \w the|strong="H7760"\w* \w earth|strong="H6083"\w*, \w then|strong="H1571"\w* \w your|strong="H7760"\w* \w offspring|strong="H2233"\w* \w may|strong="H3201"\w* \w also|strong="H1571"\w* \w be|strong="H1571"\w* \w counted|strong="H4487"\w*. +\v 17 \w Arise|strong="H6965"\w*, \w walk|strong="H1980"\w* \w through|strong="H1980"\w* \w the|strong="H3588"\w* land \w in|strong="H1980"\w* \w its|strong="H5414"\w* length \w and|strong="H1980"\w* \w in|strong="H1980"\w* \w its|strong="H5414"\w* \w width|strong="H7341"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H1980"\w* \w you|strong="H3588"\w*.” +\p +\v 18 Abram moved \w his|strong="H3068"\w* tent, \w and|strong="H3068"\w* \w came|strong="H3068"\w* \w and|strong="H3068"\w* \w lived|strong="H3427"\w* \w by|strong="H3068"\w* \w the|strong="H3068"\w* oaks \w of|strong="H3068"\w* \w Mamre|strong="H4471"\w*, \w which|strong="H3068"\w* \w are|strong="H3068"\w* \w in|strong="H3427"\w* \w Hebron|strong="H2275"\w*, \w and|strong="H3068"\w* \w built|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w there|strong="H8033"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\c 14 +\p +\v 1 \w In|strong="H4428"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* Amraphel, \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Shinar|strong="H8152"\w*; Arioch, \w king|strong="H4428"\w* \w of|strong="H4428"\w* Ellasar; \w Chedorlaomer|strong="H3540"\w*, \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Elam|strong="H5867"\w*; \w and|strong="H4428"\w* \w Tidal|strong="H8413"\w*, \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Goiim|strong="H1471"\w*, +\v 2 \w they|strong="H1931"\w* \w made|strong="H6213"\w* \w war|strong="H4421"\w* \w with|strong="H6213"\w* \w Bera|strong="H1298"\w*, \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Sodom|strong="H5467"\w*; \w Birsha|strong="H1306"\w*, \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Gomorrah|strong="H6017"\w*; \w Shinab|strong="H8134"\w*, \w king|strong="H4428"\w* \w of|strong="H4428"\w* Admah; \w Shemeber|strong="H8038"\w*, \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Zeboiim|strong="H6636"\w*; \w and|strong="H4428"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Bela|strong="H1106"\w* (\w also|strong="H6213"\w* called \w Zoar|strong="H6820"\w*). +\v 3 \w All|strong="H3605"\w* \w these|strong="H1931"\w* \w joined|strong="H2266"\w* \w together|strong="H2266"\w* \w in|strong="H3220"\w* \w the|strong="H3605"\w* \w valley|strong="H6010"\w* \w of|strong="H6010"\w* \w Siddim|strong="H7708"\w* (\w also|strong="H1931"\w* called \w the|strong="H3605"\w* \w Salt|strong="H4417"\w* \w Sea|strong="H3220"\w*). +\v 4 \w They|strong="H8141"\w* \w served|strong="H5647"\w* \w Chedorlaomer|strong="H3540"\w* \w for|strong="H8141"\w* \w twelve|strong="H8147"\w* \w years|strong="H8141"\w*, \w and|strong="H8141"\w* \w in|strong="H8141"\w* \w the|strong="H5647"\w* \w thirteenth|strong="H7969"\w* \w year|strong="H8141"\w* \w they|strong="H8141"\w* \w rebelled|strong="H4775"\w*. +\v 5 \w In|strong="H8141"\w* \w the|strong="H5221"\w* \w fourteenth|strong="H6240"\w* \w year|strong="H8141"\w* \w Chedorlaomer|strong="H3540"\w* \w and|strong="H4428"\w* \w the|strong="H5221"\w* \w kings|strong="H4428"\w* \w who|strong="H4428"\w* \w were|strong="H4428"\w* \w with|strong="H4428"\w* \w him|strong="H5221"\w* \w came|strong="H4428"\w* \w and|strong="H4428"\w* \w struck|strong="H5221"\w* \w the|strong="H5221"\w* \w Rephaim|strong="H7497"\w* \w in|strong="H8141"\w* Ashteroth \w Karnaim|strong="H6255"\w*, \w the|strong="H5221"\w* \w Zuzim|strong="H2104"\w* \w in|strong="H8141"\w* \w Ham|strong="H1990"\w*, \w the|strong="H5221"\w* Emim \w in|strong="H8141"\w* \w Shaveh|strong="H7740"\w* \w Kiriathaim|strong="H7156"\w*, +\v 6 \w and|strong="H2022"\w* \w the|strong="H5921"\w* \w Horites|strong="H2752"\w* \w in|strong="H5921"\w* \w their|strong="H5921"\w* \w Mount|strong="H2022"\w* \w Seir|strong="H8165"\w*, \w to|strong="H5704"\w* El Paran, \w which|strong="H2022"\w* \w is|strong="H4057"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*. +\v 7 \w They|strong="H1931"\w* \w returned|strong="H7725"\w*, \w and|strong="H7725"\w* \w came|strong="H7725"\w* \w to|strong="H7725"\w* En Mishpat (\w also|strong="H1571"\w* called \w Kadesh|strong="H6946"\w*), \w and|strong="H7725"\w* \w struck|strong="H5221"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w country|strong="H7704"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* \w Amalekites|strong="H6003"\w*, \w and|strong="H7725"\w* \w also|strong="H1571"\w* \w the|strong="H3605"\w* Amorites, \w that|strong="H3605"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* Hazazon Tamar. +\v 8 \w The|strong="H3318"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Sodom|strong="H5467"\w*, \w and|strong="H4428"\w* \w the|strong="H3318"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Gomorrah|strong="H6017"\w*, \w the|strong="H3318"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Admah, \w the|strong="H3318"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Zeboiim|strong="H6636"\w*, \w and|strong="H4428"\w* \w the|strong="H3318"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Bela|strong="H1106"\w* (\w also|strong="H4428"\w* called \w Zoar|strong="H6820"\w*) \w went|strong="H3318"\w* \w out|strong="H3318"\w*; \w and|strong="H4428"\w* \w they|strong="H1931"\w* \w set|strong="H6186"\w* \w the|strong="H3318"\w* \w battle|strong="H4421"\w* \w in|strong="H4428"\w* \w array|strong="H6186"\w* \w against|strong="H4421"\w* \w them|strong="H3318"\w* \w in|strong="H4428"\w* \w the|strong="H3318"\w* \w valley|strong="H6010"\w* \w of|strong="H4428"\w* \w Siddim|strong="H7708"\w* +\v 9 \w against|strong="H1471"\w* \w Chedorlaomer|strong="H3540"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Elam|strong="H5867"\w*, \w Tidal|strong="H8413"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Goiim|strong="H1471"\w*, Amraphel \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Shinar|strong="H8152"\w*, \w and|strong="H4428"\w* Arioch \w king|strong="H4428"\w* \w of|strong="H4428"\w* Ellasar; four \w kings|strong="H4428"\w* \w against|strong="H1471"\w* \w the|strong="H1471"\w* \w five|strong="H2568"\w*. +\v 10 \w Now|strong="H4428"\w* \w the|strong="H8033"\w* \w valley|strong="H6010"\w* \w of|strong="H4428"\w* \w Siddim|strong="H7708"\w* \w was|strong="H4428"\w* full \w of|strong="H4428"\w* \w tar|strong="H2564"\w* \w pits|strong="H5127"\w*; \w and|strong="H4428"\w* \w the|strong="H8033"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Sodom|strong="H5467"\w* \w and|strong="H4428"\w* \w Gomorrah|strong="H6017"\w* \w fled|strong="H5127"\w*, \w and|strong="H4428"\w* \w some|strong="H8033"\w* \w fell|strong="H5307"\w* \w there|strong="H8033"\w*. Those \w who|strong="H4428"\w* \w remained|strong="H7604"\w* \w fled|strong="H5127"\w* \w to|strong="H4428"\w* \w the|strong="H8033"\w* \w hills|strong="H2022"\w*. +\v 11 \w They|strong="H3605"\w* \w took|strong="H3947"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w goods|strong="H7399"\w* \w of|strong="H3605"\w* \w Sodom|strong="H5467"\w* \w and|strong="H3212"\w* \w Gomorrah|strong="H6017"\w*, \w and|strong="H3212"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* food, \w and|strong="H3212"\w* \w went|strong="H3212"\w* \w their|strong="H3605"\w* \w way|strong="H3212"\w*. +\v 12 \w They|strong="H1931"\w* \w took|strong="H3947"\w* \w Lot|strong="H3876"\w*, Abram’s brother’s \w son|strong="H1121"\w*, \w who|strong="H1931"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Sodom|strong="H5467"\w*, \w and|strong="H1121"\w* \w his|strong="H3947"\w* \w goods|strong="H7399"\w*, \w and|strong="H1121"\w* \w departed|strong="H3212"\w*. +\p +\v 13 \w One|strong="H1931"\w* \w who|strong="H1931"\w* \w had|strong="H1167"\w* \w escaped|strong="H6412"\w* came \w and|strong="H1285"\w* \w told|strong="H5046"\w* Abram, \w the|strong="H5046"\w* \w Hebrew|strong="H5680"\w*. \w At|strong="H7931"\w* \w that|strong="H1931"\w* time, \w he|strong="H1931"\w* \w lived|strong="H7931"\w* \w by|strong="H1167"\w* \w the|strong="H5046"\w* oaks \w of|strong="H1167"\w* \w Mamre|strong="H4471"\w*, \w the|strong="H5046"\w* Amorite, brother \w of|strong="H1167"\w* Eshcol \w and|strong="H1285"\w* brother \w of|strong="H1167"\w* \w Aner|strong="H6063"\w*. \w They|strong="H1992"\w* \w were|strong="H1992"\w* \w allies|strong="H1167"\w* \w of|strong="H1167"\w* Abram. +\v 14 \w When|strong="H3588"\w* Abram \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w his|strong="H8085"\w* relative \w was|strong="H1004"\w* \w taken|strong="H7617"\w* \w captive|strong="H7617"\w*, \w he|strong="H3588"\w* \w led|strong="H7617"\w* \w out|strong="H7324"\w* \w his|strong="H8085"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w eighteen|strong="H8083"\w* \w trained|strong="H2593"\w* \w men|strong="H2593"\w*, \w born|strong="H3211"\w* \w in|strong="H1004"\w* \w his|strong="H8085"\w* \w house|strong="H1004"\w*, \w and|strong="H3967"\w* \w pursued|strong="H7291"\w* \w as|strong="H5704"\w* \w far|strong="H5704"\w* \w as|strong="H5704"\w* \w Dan|strong="H1835"\w*. +\v 15 \w He|strong="H1931"\w* \w divided|strong="H2505"\w* \w himself|strong="H1931"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w* \w by|strong="H5921"\w* \w night|strong="H3915"\w*, \w he|strong="H1931"\w* \w and|strong="H5650"\w* \w his|strong="H5921"\w* \w servants|strong="H5650"\w*, \w and|strong="H5650"\w* \w struck|strong="H5221"\w* \w them|strong="H5921"\w*, \w and|strong="H5650"\w* \w pursued|strong="H7291"\w* \w them|strong="H5921"\w* \w to|strong="H5704"\w* \w Hobah|strong="H2327"\w*, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w left|strong="H8040"\w* \w hand|strong="H8040"\w* \w of|strong="H5650"\w* \w Damascus|strong="H1834"\w*. +\v 16 \w He|strong="H3605"\w* \w brought|strong="H7725"\w* \w back|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w goods|strong="H7399"\w*, \w and|strong="H7725"\w* \w also|strong="H1571"\w* \w brought|strong="H7725"\w* \w back|strong="H7725"\w* \w his|strong="H3605"\w* relative \w Lot|strong="H3876"\w* \w and|strong="H7725"\w* \w his|strong="H3605"\w* \w goods|strong="H7399"\w*, \w and|strong="H7725"\w* \w the|strong="H3605"\w* women \w also|strong="H1571"\w*, \w and|strong="H7725"\w* \w the|strong="H3605"\w* \w other|strong="H3605"\w* \w people|strong="H5971"\w*. +\p +\v 17 \w The|strong="H5221"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Sodom|strong="H5467"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H7725"\w* \w meet|strong="H7125"\w* \w him|strong="H5221"\w* \w after|strong="H3318"\w* \w his|strong="H7725"\w* \w return|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H5221"\w* \w slaughter|strong="H5221"\w* \w of|strong="H4428"\w* \w Chedorlaomer|strong="H3540"\w* \w and|strong="H7725"\w* \w the|strong="H5221"\w* \w kings|strong="H4428"\w* \w who|strong="H1931"\w* \w were|strong="H4428"\w* \w with|strong="H3318"\w* \w him|strong="H5221"\w*, \w at|strong="H4428"\w* \w the|strong="H5221"\w* \w valley|strong="H6010"\w* \w of|strong="H4428"\w* \w Shaveh|strong="H7740"\w* (\w that|strong="H1931"\w* \w is|strong="H1931"\w*, \w the|strong="H5221"\w* \w King|strong="H4428"\w*’s \w Valley|strong="H6010"\w*). +\v 18 \w Melchizedek|strong="H4442"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Salem|strong="H8004"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w bread|strong="H3899"\w* \w and|strong="H4428"\w* \w wine|strong="H3196"\w*. \w He|strong="H1931"\w* \w was|strong="H1931"\w* \w priest|strong="H3548"\w* \w of|strong="H4428"\w* God \w Most|strong="H5945"\w* \w High|strong="H5945"\w*. +\v 19 \w He|strong="H7069"\w* \w blessed|strong="H1288"\w* \w him|strong="H1288"\w*, \w and|strong="H8064"\w* said, “\w Blessed|strong="H1288"\w* \w be|strong="H1288"\w* Abram \w of|strong="H8064"\w* \w God|strong="H8064"\w* \w Most|strong="H5945"\w* \w High|strong="H5945"\w*, \w possessor|strong="H7069"\w* \w of|strong="H8064"\w* \w heaven|strong="H8064"\w* \w and|strong="H8064"\w* \w earth|strong="H8064"\w*. +\v 20 \w Blessed|strong="H1288"\w* \w be|strong="H3027"\w* \w God|strong="H5414"\w* \w Most|strong="H5945"\w* \w High|strong="H5945"\w*, \w who|strong="H3605"\w* \w has|strong="H3027"\w* \w delivered|strong="H5414"\w* \w your|strong="H3605"\w* \w enemies|strong="H6862"\w* \w into|strong="H3027"\w* \w your|strong="H3605"\w* \w hand|strong="H3027"\w*.” +\p Abram \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w a|strong="H3068"\w* \w tenth|strong="H4643"\w* \w of|strong="H3027"\w* \w all|strong="H3605"\w*. +\p +\v 21 \w The|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Sodom|strong="H5467"\w* said \w to|strong="H5414"\w* Abram, “\w Give|strong="H5414"\w* \w me|strong="H5414"\w* \w the|strong="H5414"\w* \w people|strong="H5315"\w*, \w and|strong="H4428"\w* \w take|strong="H3947"\w* \w the|strong="H5414"\w* \w goods|strong="H7399"\w* \w for|strong="H4428"\w* \w yourself|strong="H5315"\w*.” +\p +\v 22 Abram said \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Sodom|strong="H5467"\w*, “\w I|strong="H3027"\w* \w have|strong="H3068"\w* \w lifted|strong="H7311"\w* \w up|strong="H7311"\w* \w my|strong="H3068"\w* \w hand|strong="H3027"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w God|strong="H3068"\w* \w Most|strong="H5945"\w* \w High|strong="H7311"\w*, \w possessor|strong="H7069"\w* \w of|strong="H4428"\w* \w heaven|strong="H8064"\w* \w and|strong="H3068"\w* \w earth|strong="H8064"\w*, +\v 23 \w that|strong="H3605"\w* \w I|strong="H5704"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w thread|strong="H2339"\w* \w nor|strong="H3808"\w* \w a|strong="H3068"\w* \w sandal|strong="H5275"\w* \w strap|strong="H8288"\w* \w nor|strong="H3808"\w* \w anything|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* yours, lest \w you|strong="H3605"\w* should say, ‘\w I|strong="H5704"\w* \w have|strong="H3605"\w* \w made|strong="H6238"\w* Abram \w rich|strong="H6238"\w*.’ +\v 24 \w I|strong="H5288"\w* \w will|strong="H5288"\w* \w accept|strong="H3947"\w* \w nothing|strong="H1107"\w* \w from|strong="H1980"\w* \w you|strong="H3947"\w* \w except|strong="H7535"\w* \w that|strong="H5288"\w* \w which|strong="H1992"\w* \w the|strong="H3947"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w have|strong="H5288"\w* eaten, \w and|strong="H1980"\w* \w the|strong="H3947"\w* \w portion|strong="H2506"\w* \w of|strong="H2506"\w* \w the|strong="H3947"\w* \w men|strong="H5288"\w* \w who|strong="H1992"\w* \w went|strong="H1980"\w* \w with|strong="H1980"\w* \w me|strong="H3947"\w*: \w Aner|strong="H6063"\w*, Eshcol, \w and|strong="H1980"\w* \w Mamre|strong="H4471"\w*. \w Let|strong="H1980"\w* \w them|strong="H1992"\w* \w take|strong="H3947"\w* \w their|strong="H3947"\w* \w portion|strong="H2506"\w*.” +\c 15 +\p +\v 1 \w After|strong="H1961"\w* these \w things|strong="H1697"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* Abram \w in|strong="H3068"\w* \w a|strong="H3068"\w* \w vision|strong="H4236"\w*, \w saying|strong="H1697"\w*, “Don’t \w be|strong="H1961"\w* \w afraid|strong="H3372"\w*, Abram. \w I|strong="H1697"\w* \w am|strong="H1961"\w* \w your|strong="H3068"\w* \w shield|strong="H4043"\w*, \w your|strong="H3068"\w* \w exceedingly|strong="H3966"\w* \w great|strong="H3966"\w* \w reward|strong="H7939"\w*.” +\p +\v 2 Abram said, “\w Lord|strong="H3069"\w*\f + \fr 15:2 \ft The word translated “Lord” is “Adonai”.\f* \w Yahweh|strong="H3068"\w*, \w what|strong="H4100"\w* \w will|strong="H1121"\w* \w you|strong="H5414"\w* \w give|strong="H5414"\w* \w me|strong="H5414"\w*, since \w I|strong="H5414"\w* \w go|strong="H1980"\w* \w childless|strong="H6185"\w*, \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w who|strong="H1931"\w* \w will|strong="H1121"\w* inherit \w my|strong="H5414"\w* \w estate|strong="H1004"\w* \w is|strong="H1931"\w* Eliezer \w of|strong="H1121"\w* \w Damascus|strong="H1834"\w*?” +\v 3 Abram said, “\w Behold|strong="H2009"\w*, \w you|strong="H5414"\w* \w have|strong="H1121"\w* \w given|strong="H5414"\w* \w no|strong="H3808"\w* \w children|strong="H1121"\w* \w to|strong="H5414"\w* \w me|strong="H5414"\w*: \w and|strong="H1121"\w*, \w behold|strong="H2009"\w*, \w one|strong="H3808"\w* \w born|strong="H1121"\w* \w in|strong="H1004"\w* \w my|strong="H5414"\w* \w house|strong="H1004"\w* \w is|strong="H2009"\w* \w my|strong="H5414"\w* \w heir|strong="H3423"\w*.” +\p +\v 4 \w Behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H3318"\w*, \w saying|strong="H1697"\w*, “\w This|strong="H2088"\w* \w man|strong="H2088"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w your|strong="H3068"\w* \w heir|strong="H3423"\w*, \w but|strong="H3588"\w* \w he|strong="H1931"\w* \w who|strong="H1931"\w* \w will|strong="H3068"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w own|strong="H4578"\w* \w body|strong="H4578"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w your|strong="H3068"\w* \w heir|strong="H3423"\w*.” +\v 5 \w Yahweh|strong="H3068"\w* \w brought|strong="H3318"\w* \w him|strong="H3318"\w* \w outside|strong="H2351"\w*, \w and|strong="H8064"\w* \w said|strong="H3318"\w*, “\w Look|strong="H5027"\w* \w now|strong="H4994"\w* \w toward|strong="H3318"\w* \w the|strong="H3541"\w* \w sky|strong="H8064"\w*, \w and|strong="H8064"\w* \w count|strong="H5608"\w* \w the|strong="H3541"\w* \w stars|strong="H3556"\w*, \w if|strong="H1961"\w* \w you|strong="H4994"\w* \w are|strong="H8064"\w* \w able|strong="H3201"\w* \w to|strong="H3318"\w* \w count|strong="H5608"\w* \w them|strong="H3318"\w*.” \w He|strong="H3201"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* Abram, “\w So|strong="H3541"\w* \w your|strong="H4994"\w* \w offspring|strong="H2233"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w*.” +\v 6 \w He|strong="H3068"\w* believed \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H3068"\w* \w credited|strong="H2803"\w* \w it|strong="H2803"\w* \w to|strong="H3068"\w* \w him|strong="H2803"\w* \w for|strong="H3068"\w* \w righteousness|strong="H6666"\w*. +\v 7 \w He|strong="H3068"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* Abram, “\w I|strong="H5414"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w brought|strong="H3318"\w* \w you|strong="H5414"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* Ur \w of|strong="H3068"\w* \w the|strong="H5414"\w* \w Chaldees|strong="H3778"\w*, \w to|strong="H3318"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w this|strong="H2063"\w* land \w to|strong="H3318"\w* \w inherit|strong="H3423"\w* \w it|strong="H5414"\w*.” +\p +\v 8 \w He|strong="H3588"\w* said, “\w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, \w how|strong="H4100"\w* \w will|strong="H4100"\w* \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H4100"\w* \w inherit|strong="H3423"\w* \w it|strong="H3588"\w*?” +\p +\v 9 \w He|strong="H5795"\w* said \w to|strong="H3947"\w* \w him|strong="H3947"\w*, “\w Bring|strong="H3947"\w* \w me|strong="H3947"\w* \w a|strong="H3068"\w* \w heifer|strong="H5697"\w* \w three|strong="H8027"\w* years \w old|strong="H8027"\w*, \w a|strong="H3068"\w* \w female|strong="H5795"\w* \w goat|strong="H5795"\w* \w three|strong="H8027"\w* years \w old|strong="H8027"\w*, \w a|strong="H3068"\w* ram \w three|strong="H8027"\w* years \w old|strong="H8027"\w*, \w a|strong="H3068"\w* \w turtledove|strong="H8449"\w*, \w and|strong="H3947"\w* \w a|strong="H3068"\w* \w young|strong="H1469"\w* \w pigeon|strong="H1469"\w*.” +\v 10 \w He|strong="H3605"\w* \w brought|strong="H3947"\w* \w him|strong="H5414"\w* \w all|strong="H3605"\w* \w these|strong="H3947"\w*, \w and|strong="H3947"\w* \w divided|strong="H1334"\w* \w them|strong="H5414"\w* \w in|strong="H8432"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w*, \w and|strong="H3947"\w* \w laid|strong="H5414"\w* \w each|strong="H3605"\w* \w half|strong="H1335"\w* \w opposite|strong="H7125"\w* \w the|strong="H3605"\w* \w other|strong="H7453"\w*; \w but|strong="H3808"\w* \w he|strong="H3605"\w* didn’t \w divide|strong="H5414"\w* \w the|strong="H3605"\w* \w birds|strong="H6833"\w*. +\v 11 \w The|strong="H5921"\w* \w birds|strong="H5861"\w* \w of|strong="H5921"\w* \w prey|strong="H5861"\w* \w came|strong="H3381"\w* \w down|strong="H3381"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w carcasses|strong="H6297"\w*, \w and|strong="H3381"\w* Abram \w drove|strong="H5380"\w* \w them|strong="H5921"\w* \w away|strong="H5380"\w*. +\p +\v 12 \w When|strong="H1961"\w* \w the|strong="H5921"\w* \w sun|strong="H8121"\w* \w was|strong="H1961"\w* \w going|strong="H5307"\w* \w down|strong="H5307"\w*, \w a|strong="H3068"\w* \w deep|strong="H8639"\w* \w sleep|strong="H8639"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* Abram. \w Now|strong="H1961"\w* terror \w and|strong="H1419"\w* \w great|strong="H1419"\w* \w darkness|strong="H2825"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 13 \w He|strong="H3588"\w* said \w to|strong="H1961"\w* Abram, “\w Know|strong="H3045"\w* \w for|strong="H3588"\w* \w sure|strong="H3045"\w* \w that|strong="H3588"\w* \w your|strong="H3045"\w* \w offspring|strong="H2233"\w* \w will|strong="H1961"\w* \w live|strong="H8141"\w* \w as|strong="H1961"\w* \w foreigners|strong="H1616"\w* \w in|strong="H8141"\w* \w a|strong="H3068"\w* land \w that|strong="H3588"\w* \w is|strong="H1961"\w* \w not|strong="H3808"\w* theirs, \w and|strong="H3967"\w* \w will|strong="H1961"\w* \w serve|strong="H5647"\w* \w them|strong="H1961"\w*. \w They|strong="H3588"\w* \w will|strong="H1961"\w* \w afflict|strong="H6031"\w* \w them|strong="H1961"\w* four \w hundred|strong="H3967"\w* \w years|strong="H8141"\w*. +\v 14 \w I|strong="H3651"\w* \w will|strong="H1471"\w* \w also|strong="H1571"\w* \w judge|strong="H1777"\w* \w that|strong="H1471"\w* \w nation|strong="H1471"\w*, whom \w they|strong="H3651"\w* \w will|strong="H1471"\w* \w serve|strong="H5647"\w*. Afterward \w they|strong="H3651"\w* \w will|strong="H1471"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w with|strong="H3318"\w* \w great|strong="H1419"\w* \w wealth|strong="H7399"\w*; +\v 15 but \w you|strong="H2896"\w* \w will|strong="H2896"\w* \w go|strong="H7872"\w* \w to|strong="H2896"\w* \w your|strong="H6912"\w* fathers \w in|strong="H6912"\w* \w peace|strong="H7965"\w*. \w You|strong="H2896"\w* \w will|strong="H2896"\w* \w be|strong="H7965"\w* \w buried|strong="H6912"\w* \w at|strong="H6912"\w* \w a|strong="H3068"\w* \w good|strong="H2896"\w* \w old|strong="H7872"\w* \w age|strong="H7872"\w*. +\v 16 \w In|strong="H7725"\w* \w the|strong="H3588"\w* \w fourth|strong="H7243"\w* \w generation|strong="H1755"\w* \w they|strong="H3588"\w* \w will|strong="H3808"\w* \w come|strong="H7725"\w* \w here|strong="H2008"\w* \w again|strong="H7725"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w iniquity|strong="H5771"\w* \w of|strong="H5771"\w* \w the|strong="H3588"\w* Amorite \w is|strong="H5771"\w* \w not|strong="H3808"\w* \w yet|strong="H3588"\w* \w full|strong="H8003"\w*.” +\v 17 \w It|strong="H1961"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w pass|strong="H5674"\w* \w that|strong="H1961"\w*, \w when|strong="H1961"\w* \w the|strong="H5674"\w* \w sun|strong="H8121"\w* \w went|strong="H5674"\w* down, \w and|strong="H5674"\w* \w it|strong="H1961"\w* \w was|strong="H1961"\w* \w dark|strong="H5939"\w*, \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w smoking|strong="H6227"\w* \w furnace|strong="H8574"\w* \w and|strong="H5674"\w* \w a|strong="H3068"\w* flaming \w torch|strong="H3940"\w* \w passed|strong="H5674"\w* \w between|strong="H5674"\w* these \w pieces|strong="H1506"\w*. +\v 18 \w In|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H3068"\w* Abram, saying, “\w I|strong="H3117"\w* \w have|strong="H3068"\w* \w given|strong="H5414"\w* \w this|strong="H2063"\w* land \w to|strong="H5704"\w* \w your|strong="H3068"\w* \w offspring|strong="H2233"\w*, \w from|strong="H3772"\w* \w the|strong="H5414"\w* \w river|strong="H5104"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w* \w to|strong="H5704"\w* \w the|strong="H5414"\w* \w great|strong="H1419"\w* \w river|strong="H5104"\w*, \w the|strong="H5414"\w* \w river|strong="H5104"\w* \w Euphrates|strong="H6578"\w*: +\v 19 the land of the \w Kenites|strong="H7017"\w*, the \w Kenizzites|strong="H7074"\w*, the \w Kadmonites|strong="H6935"\w*, +\v 20 the \w Hittites|strong="H2850"\w*, the \w Perizzites|strong="H6522"\w*, the \w Rephaim|strong="H7497"\w*, +\v 21 \w the|strong="H2983"\w* Amorites, \w the|strong="H2983"\w* \w Canaanites|strong="H3669"\w*, \w the|strong="H2983"\w* \w Girgashites|strong="H1622"\w*, \w and|strong="H2983"\w* \w the|strong="H2983"\w* \w Jebusites|strong="H2983"\w*.” +\c 16 +\p +\v 1 Now \w Sarai|strong="H8297"\w*, Abram’s wife, \w bore|strong="H3205"\w* \w him|strong="H3205"\w* \w no|strong="H3808"\w* \w children|strong="H3205"\w*. \w She|strong="H3808"\w* \w had|strong="H3205"\w* \w a|strong="H3068"\w* \w servant|strong="H8198"\w*, \w an|strong="H3205"\w* \w Egyptian|strong="H4713"\w*, \w whose|strong="H8034"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Hagar|strong="H1904"\w*. +\v 2 \w Sarai|strong="H8297"\w* \w said|strong="H8085"\w* \w to|strong="H3068"\w* Abram, “\w See|strong="H2009"\w* \w now|strong="H4994"\w*, \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w restrained|strong="H6113"\w* \w me|strong="H4994"\w* \w from|strong="H4480"\w* \w bearing|strong="H3205"\w*. \w Please|strong="H4994"\w* \w go|strong="H3068"\w* \w in|strong="H3068"\w* \w to|strong="H3068"\w* \w my|strong="H8085"\w* \w servant|strong="H8198"\w*. \w It|strong="H1129"\w* \w may|strong="H4994"\w* \w be|strong="H3068"\w* \w that|strong="H8085"\w* \w I|strong="H2009"\w* \w will|strong="H3068"\w* \w obtain|strong="H1129"\w* \w children|strong="H3205"\w* \w by|strong="H3068"\w* \w her|strong="H1129"\w*.” Abram \w listened|strong="H8085"\w* \w to|strong="H3068"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w Sarai|strong="H8297"\w*. +\v 3 \w Sarai|strong="H8297"\w*, Abram’s wife, \w took|strong="H3947"\w* \w Hagar|strong="H1904"\w* \w the|strong="H5414"\w* \w Egyptian|strong="H4713"\w*, \w her|strong="H5414"\w* \w servant|strong="H8198"\w*, \w after|strong="H7093"\w* Abram \w had|strong="H5414"\w* \w lived|strong="H3427"\w* \w ten|strong="H6235"\w* \w years|strong="H8141"\w* \w in|strong="H3427"\w* \w the|strong="H5414"\w* land \w of|strong="H8141"\w* \w Canaan|strong="H3667"\w*, \w and|strong="H8141"\w* \w gave|strong="H5414"\w* \w her|strong="H5414"\w* \w to|strong="H5414"\w* Abram \w her|strong="H5414"\w* husband \w to|strong="H5414"\w* \w be|strong="H5414"\w* \w his|strong="H5414"\w* wife. +\v 4 \w He|strong="H3588"\w* \w went|strong="H7200"\w* \w in|strong="H5869"\w* \w to|strong="H7200"\w* \w Hagar|strong="H1904"\w*, \w and|strong="H5869"\w* \w she|strong="H3588"\w* \w conceived|strong="H2029"\w*. \w When|strong="H3588"\w* \w she|strong="H3588"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w she|strong="H3588"\w* \w had|strong="H3588"\w* \w conceived|strong="H2029"\w*, \w her|strong="H7200"\w* \w mistress|strong="H1404"\w* \w was|strong="H1404"\w* \w despised|strong="H7043"\w* \w in|strong="H5869"\w* \w her|strong="H7200"\w* \w eyes|strong="H5869"\w*. +\v 5 \w Sarai|strong="H8297"\w* said \w to|strong="H3068"\w* Abram, “\w This|strong="H5414"\w* \w wrong|strong="H2555"\w* \w is|strong="H3068"\w* \w your|strong="H3068"\w* fault. \w I|strong="H3588"\w* \w gave|strong="H5414"\w* \w my|strong="H5414"\w* \w servant|strong="H8198"\w* \w into|strong="H8199"\w* \w your|strong="H3068"\w* \w bosom|strong="H2436"\w*, \w and|strong="H3068"\w* \w when|strong="H3588"\w* \w she|strong="H3588"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w she|strong="H3588"\w* \w had|strong="H3068"\w* \w conceived|strong="H2029"\w*, \w she|strong="H3588"\w* \w despised|strong="H7043"\w* \w me|strong="H5414"\w*. \w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w judge|strong="H8199"\w* \w between|strong="H8199"\w* \w me|strong="H5414"\w* \w and|strong="H3068"\w* \w you|strong="H3588"\w*.” +\p +\v 6 \w But|strong="H2009"\w* Abram said \w to|strong="H6213"\w* \w Sarai|strong="H8297"\w*, “\w Behold|strong="H2009"\w*, \w your|strong="H6440"\w* \w maid|strong="H8198"\w* \w is|strong="H3027"\w* \w in|strong="H6213"\w* \w your|strong="H6440"\w* \w hand|strong="H3027"\w*. \w Do|strong="H6213"\w* \w to|strong="H6213"\w* \w her|strong="H6213"\w* \w whatever|strong="H2896"\w* \w is|strong="H3027"\w* \w good|strong="H2896"\w* \w in|strong="H6213"\w* \w your|strong="H6440"\w* \w eyes|strong="H5869"\w*.” \w Sarai|strong="H8297"\w* \w dealt|strong="H6213"\w* \w harshly|strong="H6031"\w* \w with|strong="H6213"\w* \w her|strong="H6213"\w*, \w and|strong="H3027"\w* \w she|strong="H6440"\w* \w fled|strong="H1272"\w* \w from|strong="H6440"\w* \w her|strong="H6213"\w* \w face|strong="H6440"\w*. +\p +\v 7 \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w found|strong="H4672"\w* \w her|strong="H5921"\w* \w by|strong="H5921"\w* \w a|strong="H3068"\w* \w fountain|strong="H5869"\w* \w of|strong="H3068"\w* \w water|strong="H4325"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*, \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w fountain|strong="H5869"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w* \w to|strong="H3068"\w* \w Shur|strong="H7793"\w*. +\v 8 \w He|strong="H6440"\w* said, “\w Hagar|strong="H1904"\w*, \w Sarai|strong="H8297"\w*’s \w servant|strong="H8198"\w*, \w where|strong="H2088"\w* did \w you|strong="H6440"\w* \w come|strong="H3212"\w* \w from|strong="H6440"\w*? \w Where|strong="H2088"\w* \w are|strong="H6440"\w* \w you|strong="H6440"\w* \w going|strong="H3212"\w*?” +\p \w She|strong="H6440"\w* said, “\w I|strong="H2088"\w* am \w fleeing|strong="H1272"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H6440"\w* \w my|strong="H6440"\w* \w mistress|strong="H1404"\w* \w Sarai|strong="H8297"\w*.” +\p +\v 9 \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* said \w to|strong="H7725"\w* \w her|strong="H7725"\w*, “\w Return|strong="H7725"\w* \w to|strong="H7725"\w* \w your|strong="H3068"\w* \w mistress|strong="H1404"\w*, \w and|strong="H3068"\w* \w submit|strong="H6031"\w* \w yourself|strong="H6031"\w* \w under|strong="H8478"\w* \w her|strong="H7725"\w* \w hands|strong="H3027"\w*.” +\v 10 \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* said \w to|strong="H3068"\w* \w her|strong="H7235"\w*, “\w I|strong="H3808"\w* \w will|strong="H3068"\w* \w greatly|strong="H7235"\w* \w multiply|strong="H7235"\w* \w your|strong="H3068"\w* \w offspring|strong="H2233"\w*, \w that|strong="H3068"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w counted|strong="H5608"\w* \w for|strong="H3068"\w* \w multitude|strong="H7230"\w*.” +\v 11 \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w said|strong="H7121"\w* \w to|strong="H3068"\w* \w her|strong="H7121"\w*, “\w Behold|strong="H2009"\w*, \w you|strong="H3588"\w* \w are|strong="H1121"\w* \w with|strong="H3068"\w* \w child|strong="H2030"\w*, \w and|strong="H1121"\w* \w will|strong="H3068"\w* \w bear|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*. \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w call|strong="H7121"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w* \w Ishmael|strong="H3458"\w*, \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w heard|strong="H8085"\w* \w your|strong="H3068"\w* \w affliction|strong="H6040"\w*. +\v 12 \w He|strong="H1931"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w wild|strong="H6501"\w* \w donkey|strong="H6501"\w* \w among|strong="H5921"\w* \w men|strong="H3605"\w*. \w His|strong="H3605"\w* \w hand|strong="H3027"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w against|strong="H5921"\w* \w every|strong="H3605"\w* \w man|strong="H3605"\w*, \w and|strong="H3027"\w* \w every|strong="H3605"\w* \w man|strong="H3605"\w*’s \w hand|strong="H3027"\w* \w against|strong="H5921"\w* \w him|strong="H6440"\w*. \w He|strong="H1931"\w* \w will|strong="H1961"\w* \w live|strong="H7931"\w* \w opposed|strong="H5921"\w* \w to|strong="H1961"\w* \w all|strong="H3605"\w* \w of|strong="H3027"\w* \w his|strong="H3605"\w* brothers.” +\p +\v 13 \w She|strong="H3588"\w* \w called|strong="H7121"\w* \w the|strong="H7200"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w her|strong="H7200"\w*, “\w You|strong="H3588"\w* \w are|strong="H3068"\w* \w a|strong="H3068"\w* \w God|strong="H3068"\w* \w who|strong="H3068"\w* \w sees|strong="H7200"\w*,” \w for|strong="H3588"\w* \w she|strong="H3588"\w* \w said|strong="H1696"\w*, “\w Have|strong="H3068"\w* \w I|strong="H3588"\w* \w even|strong="H1571"\w* stayed \w alive|strong="H7200"\w* \w after|strong="H3588"\w* \w seeing|strong="H7200"\w* \w him|strong="H7121"\w*?” +\v 14 \w Therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w well|strong="H3651"\w* \w was|strong="H3651"\w* \w called|strong="H7121"\w* Beer Lahai Roi.\f + \fr 16:14 \ft Beer Lahai Roi means “well of the one who lives and sees me”.\f* \w Behold|strong="H2009"\w*, \w it|strong="H7121"\w* \w is|strong="H2009"\w* \w between|strong="H5921"\w* \w Kadesh|strong="H6946"\w* \w and|strong="H7121"\w* \w Bered|strong="H1260"\w*. +\p +\v 15 \w Hagar|strong="H1904"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w for|strong="H7121"\w* Abram. Abram \w called|strong="H7121"\w* \w the|strong="H3205"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w his|strong="H7121"\w* \w son|strong="H1121"\w*, \w whom|strong="H7121"\w* \w Hagar|strong="H1904"\w* \w bore|strong="H3205"\w*, \w Ishmael|strong="H3458"\w*. +\v 16 Abram \w was|strong="H1121"\w* \w eighty-six|strong="H8084"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w Hagar|strong="H1904"\w* \w bore|strong="H3205"\w* \w Ishmael|strong="H3458"\w* \w to|strong="H3205"\w* Abram. +\c 17 +\p +\v 1 \w When|strong="H1961"\w* Abram \w was|strong="H3068"\w* \w ninety-nine|strong="H8673"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*, \w Yahweh|strong="H3068"\w* \w appeared|strong="H7200"\w* \w to|strong="H1980"\w* Abram \w and|strong="H1121"\w* said \w to|strong="H1980"\w* \w him|strong="H6440"\w*, “\w I|strong="H7200"\w* \w am|strong="H1961"\w* \w God|strong="H3068"\w* \w Almighty|strong="H7706"\w*. \w Walk|strong="H1980"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w and|strong="H1121"\w* \w be|strong="H1961"\w* \w blameless|strong="H8549"\w*. +\v 2 \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w make|strong="H5414"\w* \w my|strong="H5414"\w* \w covenant|strong="H1285"\w* between \w me|strong="H5414"\w* \w and|strong="H1285"\w* \w you|strong="H5414"\w*, \w and|strong="H1285"\w* \w will|strong="H5414"\w* \w multiply|strong="H7235"\w* \w you|strong="H5414"\w* \w exceedingly|strong="H3966"\w*.” +\p +\v 3 Abram \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w*. God \w talked|strong="H1696"\w* \w with|strong="H1696"\w* \w him|strong="H6440"\w*, \w saying|strong="H1696"\w*, +\v 4 “\w As|strong="H1961"\w* \w for|strong="H1961"\w* \w me|strong="H1961"\w*, \w behold|strong="H2009"\w*, \w my|strong="H1961"\w* \w covenant|strong="H1285"\w* \w is|strong="H2009"\w* \w with|strong="H1285"\w* \w you|strong="H1961"\w*. \w You|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w the|strong="H1961"\w* father \w of|strong="H1995"\w* \w a|strong="H3068"\w* \w multitude|strong="H1995"\w* \w of|strong="H1995"\w* \w nations|strong="H1471"\w*. +\v 5 \w Your|strong="H5414"\w* \w name|strong="H8034"\w* \w will|strong="H1961"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w be|strong="H1961"\w* \w called|strong="H7121"\w* Abram, \w but|strong="H3588"\w* \w your|strong="H5414"\w* \w name|strong="H8034"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* Abraham; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w made|strong="H5414"\w* \w you|strong="H3588"\w* \w the|strong="H3588"\w* father \w of|strong="H8034"\w* \w a|strong="H3068"\w* \w multitude|strong="H1995"\w* \w of|strong="H8034"\w* \w nations|strong="H1471"\w*. +\v 6 \w I|strong="H5414"\w* \w will|strong="H1471"\w* \w make|strong="H5414"\w* \w you|strong="H5414"\w* \w exceedingly|strong="H3966"\w* \w fruitful|strong="H6509"\w*, \w and|strong="H4428"\w* \w I|strong="H5414"\w* \w will|strong="H1471"\w* \w make|strong="H5414"\w* \w nations|strong="H1471"\w* \w of|strong="H4428"\w* \w you|strong="H5414"\w*. \w Kings|strong="H4428"\w* \w will|strong="H1471"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w you|strong="H5414"\w*. +\v 7 \w I|strong="H6965"\w* \w will|strong="H1961"\w* \w establish|strong="H6965"\w* \w my|strong="H6965"\w* \w covenant|strong="H1285"\w* between \w me|strong="H1961"\w* \w and|strong="H6965"\w* \w you|strong="H6965"\w* \w and|strong="H6965"\w* \w your|strong="H1961"\w* \w offspring|strong="H2233"\w* \w after|strong="H2233"\w* \w you|strong="H6965"\w* \w throughout|strong="H1755"\w* \w their|strong="H1961"\w* \w generations|strong="H1755"\w* \w for|strong="H1961"\w* \w an|strong="H1961"\w* \w everlasting|strong="H5769"\w* \w covenant|strong="H1285"\w*, \w to|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* God \w to|strong="H1961"\w* \w you|strong="H6965"\w* \w and|strong="H6965"\w* \w to|strong="H1961"\w* \w your|strong="H1961"\w* \w offspring|strong="H2233"\w* \w after|strong="H2233"\w* \w you|strong="H6965"\w*. +\v 8 \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w to|strong="H1961"\w* \w you|strong="H5414"\w*, \w and|strong="H5769"\w* \w to|strong="H1961"\w* \w your|strong="H3605"\w* \w offspring|strong="H2233"\w* \w after|strong="H2233"\w* \w you|strong="H5414"\w*, \w the|strong="H3605"\w* land \w where|strong="H4033"\w* \w you|strong="H5414"\w* \w are|strong="H1961"\w* traveling, \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H2233"\w* \w Canaan|strong="H3667"\w*, \w for|strong="H3605"\w* \w an|strong="H1961"\w* \w everlasting|strong="H5769"\w* \w possession|strong="H2233"\w*. \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w their|strong="H3605"\w* \w God|strong="H5414"\w*.” +\p +\v 9 God said \w to|strong="H8104"\w* Abraham, “\w As|strong="H2233"\w* \w for|strong="H2233"\w* \w you|strong="H8104"\w*, \w you|strong="H8104"\w* \w shall|strong="H2233"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w covenant|strong="H1285"\w*, \w you|strong="H8104"\w* \w and|strong="H1285"\w* \w your|strong="H8104"\w* \w offspring|strong="H2233"\w* \w after|strong="H2233"\w* \w you|strong="H8104"\w* \w throughout|strong="H1755"\w* \w their|strong="H8104"\w* \w generations|strong="H1755"\w*. +\v 10 \w This|strong="H2063"\w* \w is|strong="H3605"\w* \w my|strong="H8104"\w* \w covenant|strong="H1285"\w*, \w which|strong="H1285"\w* \w you|strong="H3605"\w* \w shall|strong="H2233"\w* \w keep|strong="H8104"\w*, between \w me|strong="H8104"\w* \w and|strong="H1285"\w* \w you|strong="H3605"\w* \w and|strong="H1285"\w* \w your|strong="H3605"\w* \w offspring|strong="H2233"\w* \w after|strong="H2233"\w* \w you|strong="H3605"\w*. \w Every|strong="H3605"\w* \w male|strong="H2145"\w* among \w you|strong="H3605"\w* \w shall|strong="H2233"\w* \w be|strong="H2145"\w* \w circumcised|strong="H4135"\w*. +\v 11 \w You|strong="H1320"\w* \w shall|strong="H1320"\w* \w be|strong="H1961"\w* circumcised \w in|strong="H1320"\w* \w the|strong="H1961"\w* \w flesh|strong="H1320"\w* \w of|strong="H1285"\w* \w your|strong="H1961"\w* \w foreskin|strong="H6190"\w*. \w It|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* token \w of|strong="H1285"\w* \w the|strong="H1961"\w* \w covenant|strong="H1285"\w* between \w me|strong="H1961"\w* \w and|strong="H1285"\w* \w you|strong="H1320"\w*. +\v 12 \w He|strong="H1931"\w* \w who|strong="H3605"\w* \w is|strong="H1931"\w* \w eight|strong="H8083"\w* \w days|strong="H3117"\w* \w old|strong="H1121"\w* \w shall|strong="H1121"\w* \w be|strong="H3808"\w* \w circumcised|strong="H4135"\w* \w among|strong="H3808"\w* \w you|strong="H3605"\w*, \w every|strong="H3605"\w* \w male|strong="H2145"\w* \w throughout|strong="H3605"\w* \w your|strong="H3605"\w* \w generations|strong="H1755"\w*, \w he|strong="H1931"\w* \w who|strong="H3605"\w* \w is|strong="H1931"\w* \w born|strong="H3211"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*, \w or|strong="H3808"\w* \w bought|strong="H4736"\w* \w with|strong="H1004"\w* \w money|strong="H3701"\w* \w from|strong="H1121"\w* \w any|strong="H3605"\w* \w foreigner|strong="H1121"\w* \w who|strong="H3605"\w* \w is|strong="H1931"\w* \w not|strong="H3808"\w* \w of|strong="H1121"\w* \w your|strong="H3605"\w* \w offspring|strong="H2233"\w*. +\v 13 \w He|strong="H1004"\w* \w who|strong="H3211"\w* \w is|strong="H3701"\w* \w born|strong="H3211"\w* \w in|strong="H1004"\w* \w your|strong="H1961"\w* \w house|strong="H1004"\w*, \w and|strong="H3701"\w* \w he|strong="H1004"\w* \w who|strong="H3211"\w* \w is|strong="H3701"\w* \w bought|strong="H4736"\w* \w with|strong="H1004"\w* \w your|strong="H1961"\w* \w money|strong="H3701"\w*, must \w be|strong="H1961"\w* \w circumcised|strong="H4135"\w*. \w My|strong="H1961"\w* \w covenant|strong="H1285"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w* \w in|strong="H1004"\w* \w your|strong="H1961"\w* \w flesh|strong="H1320"\w* \w for|strong="H1004"\w* \w an|strong="H1961"\w* \w everlasting|strong="H5769"\w* \w covenant|strong="H1285"\w*. +\v 14 \w The|strong="H3772"\w* \w uncircumcised|strong="H6189"\w* \w male|strong="H2145"\w* \w who|strong="H1931"\w* \w is|strong="H1931"\w* \w not|strong="H3808"\w* \w circumcised|strong="H4135"\w* \w in|strong="H1320"\w* \w the|strong="H3772"\w* \w flesh|strong="H1320"\w* \w of|strong="H5971"\w* \w his|strong="H3808"\w* \w foreskin|strong="H6190"\w*, \w that|strong="H5971"\w* \w soul|strong="H5315"\w* \w shall|strong="H5971"\w* \w be|strong="H3808"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w his|strong="H3808"\w* \w people|strong="H5971"\w*. \w He|strong="H1931"\w* \w has|strong="H5315"\w* \w broken|strong="H6565"\w* \w my|strong="H6565"\w* \w covenant|strong="H1285"\w*.” +\p +\v 15 \w God|strong="H3808"\w* \w said|strong="H7121"\w* \w to|strong="H7121"\w* Abraham, “\w As|strong="H3588"\w* \w for|strong="H3588"\w* \w Sarai|strong="H8297"\w* \w your|strong="H3588"\w* wife, \w you|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w call|strong="H7121"\w* \w her|strong="H7121"\w* \w name|strong="H8034"\w* \w Sarai|strong="H8297"\w*, \w but|strong="H3588"\w* \w her|strong="H7121"\w* \w name|strong="H8034"\w* \w shall|strong="H3808"\w* \w be|strong="H3808"\w* \w Sarah|strong="H8283"\w*. +\v 16 \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w bless|strong="H1288"\w* \w her|strong="H5414"\w*, \w and|strong="H1121"\w* \w moreover|strong="H1571"\w* \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w by|strong="H5414"\w* \w her|strong="H5414"\w*. \w Yes|strong="H1571"\w*, \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w bless|strong="H1288"\w* \w her|strong="H5414"\w*, \w and|strong="H1121"\w* \w she|strong="H1571"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* mother \w of|strong="H1121"\w* \w nations|strong="H1471"\w*. \w Kings|strong="H4428"\w* \w of|strong="H1121"\w* \w peoples|strong="H5971"\w* \w will|strong="H1961"\w* \w come|strong="H1961"\w* \w from|strong="H4480"\w* \w her|strong="H5414"\w*.” +\p +\v 17 \w Then|strong="H5307"\w* Abraham \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w*, \w and|strong="H3967"\w* \w laughed|strong="H6711"\w*, \w and|strong="H3967"\w* said \w in|strong="H8141"\w* \w his|strong="H6440"\w* \w heart|strong="H3820"\w*, “\w Will|strong="H1121"\w* \w a|strong="H3068"\w* \w child|strong="H1121"\w* \w be|strong="H1121"\w* \w born|strong="H3205"\w* \w to|strong="H5921"\w* \w him|strong="H3205"\w* \w who|strong="H1121"\w* \w is|strong="H3820"\w* \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*? \w Will|strong="H1121"\w* \w Sarah|strong="H8283"\w*, \w who|strong="H1121"\w* \w is|strong="H3820"\w* \w ninety|strong="H8673"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*, \w give|strong="H3205"\w* \w birth|strong="H3205"\w*?” +\v 18 Abraham said \w to|strong="H6440"\w* \w God|strong="H3863"\w*, “\w Oh|strong="H3863"\w* \w that|strong="H3863"\w* \w Ishmael|strong="H3458"\w* \w might|strong="H3458"\w* \w live|strong="H2421"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*!” +\p +\v 19 God \w said|strong="H7121"\w*, “\w No|strong="H6965"\w*, \w but|strong="H3205"\w* \w Sarah|strong="H8283"\w*, \w your|strong="H6965"\w* wife, \w will|strong="H1121"\w* \w bear|strong="H3205"\w* \w you|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*. \w You|strong="H3205"\w* \w shall|strong="H1121"\w* \w call|strong="H7121"\w* \w his|strong="H7121"\w* \w name|strong="H8034"\w* \w Isaac|strong="H3327"\w*.\f + \fr 17:19 \ft Isaac means “he laughs”.\f* \w I|strong="H6965"\w* \w will|strong="H1121"\w* \w establish|strong="H6965"\w* \w my|strong="H6965"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w him|strong="H3205"\w* \w for|strong="H7121"\w* \w an|strong="H6965"\w* \w everlasting|strong="H5769"\w* \w covenant|strong="H1285"\w* \w for|strong="H7121"\w* \w his|strong="H7121"\w* \w offspring|strong="H2233"\w* \w after|strong="H2233"\w* \w him|strong="H3205"\w*. +\v 20 \w As|strong="H5414"\w* \w for|strong="H3205"\w* \w Ishmael|strong="H3458"\w*, \w I|strong="H5414"\w* \w have|strong="H1471"\w* \w heard|strong="H8085"\w* \w you|strong="H5414"\w*. \w Behold|strong="H2009"\w*, \w I|strong="H5414"\w* \w have|strong="H1471"\w* \w blessed|strong="H1288"\w* \w him|strong="H5414"\w*, \w and|strong="H1419"\w* \w will|strong="H1471"\w* \w make|strong="H5414"\w* \w him|strong="H5414"\w* \w fruitful|strong="H6509"\w*, \w and|strong="H1419"\w* \w will|strong="H1471"\w* \w multiply|strong="H7235"\w* \w him|strong="H5414"\w* \w exceedingly|strong="H3966"\w*. \w He|strong="H5414"\w* \w will|strong="H1471"\w* \w become|strong="H3205"\w* \w the|strong="H8085"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w twelve|strong="H8147"\w* \w princes|strong="H5387"\w*, \w and|strong="H1419"\w* \w I|strong="H5414"\w* \w will|strong="H1471"\w* \w make|strong="H5414"\w* \w him|strong="H5414"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w nation|strong="H1471"\w*. +\v 21 \w But|strong="H3205"\w* \w I|strong="H2088"\w* \w will|strong="H2088"\w* \w establish|strong="H6965"\w* \w my|strong="H6965"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w Isaac|strong="H3327"\w*, whom \w Sarah|strong="H8283"\w* \w will|strong="H2088"\w* \w bear|strong="H3205"\w* \w to|strong="H3205"\w* \w you|strong="H3205"\w* \w at|strong="H6965"\w* \w this|strong="H2088"\w* \w set|strong="H6965"\w* \w time|strong="H4150"\w* next \w year|strong="H8141"\w*.” +\p +\v 22 \w When|strong="H3615"\w* \w he|strong="H5921"\w* \w finished|strong="H3615"\w* \w talking|strong="H1696"\w* \w with|strong="H1696"\w* \w him|strong="H5921"\w*, God \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5921"\w* Abraham. +\v 23 \w Abraham|strong="H3947"\w* \w took|strong="H3947"\w* \w Ishmael|strong="H3458"\w* \w his|strong="H3605"\w* \w son|strong="H1121"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w born|strong="H3211"\w* \w in|strong="H1004"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w bought|strong="H4736"\w* \w with|strong="H1004"\w* \w his|strong="H3605"\w* \w money|strong="H3701"\w*: \w every|strong="H3605"\w* \w male|strong="H2145"\w* among \w the|strong="H3605"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Abraham|strong="H3947"\w*’s \w house|strong="H1004"\w*, \w and|strong="H1121"\w* \w circumcised|strong="H4135"\w* \w the|strong="H3605"\w* \w flesh|strong="H1320"\w* \w of|strong="H1121"\w* \w their|strong="H3605"\w* \w foreskin|strong="H6190"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* \w same|strong="H6106"\w* \w day|strong="H3117"\w*, \w as|strong="H3117"\w* God \w had|strong="H1121"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H3947"\w*. +\v 24 Abraham \w was|strong="H1121"\w* \w ninety-nine|strong="H8673"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H8141"\w* \w was|strong="H1121"\w* \w circumcised|strong="H4135"\w* \w in|strong="H8141"\w* \w the|strong="H1121"\w* \w flesh|strong="H1320"\w* \w of|strong="H1121"\w* \w his|strong="H4135"\w* \w foreskin|strong="H6190"\w*. +\v 25 \w Ishmael|strong="H3458"\w*, \w his|strong="H3458"\w* \w son|strong="H1121"\w*, \w was|strong="H1121"\w* \w thirteen|strong="H7969"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H8141"\w* \w was|strong="H1121"\w* \w circumcised|strong="H4135"\w* \w in|strong="H8141"\w* \w the|strong="H3458"\w* \w flesh|strong="H1320"\w* \w of|strong="H1121"\w* \w his|strong="H3458"\w* \w foreskin|strong="H6190"\w*. +\v 26 \w In|strong="H3117"\w* \w the|strong="H3117"\w* \w same|strong="H6106"\w* \w day|strong="H3117"\w* both Abraham \w and|strong="H1121"\w* \w Ishmael|strong="H3458"\w*, \w his|strong="H3117"\w* \w son|strong="H1121"\w*, \w were|strong="H1121"\w* \w circumcised|strong="H4135"\w*. +\v 27 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*, \w those|strong="H3605"\w* \w born|strong="H3211"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*, \w and|strong="H1121"\w* \w those|strong="H3605"\w* \w bought|strong="H4736"\w* \w with|strong="H1004"\w* \w money|strong="H3701"\w* \w from|strong="H1121"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1121"\w*, \w were|strong="H1121"\w* \w circumcised|strong="H4135"\w* \w with|strong="H1004"\w* \w him|strong="H3605"\w*. +\c 18 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w appeared|strong="H7200"\w* \w to|strong="H3068"\w* \w him|strong="H7200"\w* \w by|strong="H3117"\w* \w the|strong="H7200"\w* oaks \w of|strong="H3068"\w* \w Mamre|strong="H4471"\w*, \w as|strong="H3117"\w* \w he|strong="H1931"\w* \w sat|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H7200"\w* tent \w door|strong="H6607"\w* \w in|strong="H3427"\w* \w the|strong="H7200"\w* \w heat|strong="H2527"\w* \w of|strong="H3068"\w* \w the|strong="H7200"\w* \w day|strong="H3117"\w*. +\v 2 \w He|strong="H5921"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w eyes|strong="H5869"\w* \w and|strong="H5869"\w* \w looked|strong="H7200"\w*, \w and|strong="H5869"\w* \w saw|strong="H7200"\w* \w that|strong="H7200"\w* \w three|strong="H7969"\w* men \w stood|strong="H5324"\w* \w near|strong="H5921"\w* \w him|strong="H5921"\w*. \w When|strong="H7200"\w* \w he|strong="H5921"\w* \w saw|strong="H7200"\w* \w them|strong="H5921"\w*, \w he|strong="H5921"\w* \w ran|strong="H7323"\w* \w to|strong="H5921"\w* \w meet|strong="H7125"\w* \w them|strong="H5921"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* tent \w door|strong="H6607"\w*, \w and|strong="H5869"\w* \w bowed|strong="H7812"\w* \w himself|strong="H7812"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* earth, +\v 3 \w and|strong="H5869"\w* said, “\w My|strong="H5921"\w* lord, if \w now|strong="H4994"\w* \w I|strong="H5921"\w* \w have|strong="H5869"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w sight|strong="H5869"\w*, \w please|strong="H4994"\w* don’t \w go|strong="H5674"\w* \w away|strong="H5674"\w* \w from|strong="H5921"\w* \w your|strong="H5921"\w* \w servant|strong="H5650"\w*. +\v 4 \w Now|strong="H4994"\w* \w let|strong="H4994"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w water|strong="H4325"\w* \w be|strong="H4994"\w* \w fetched|strong="H3947"\w*, \w wash|strong="H7364"\w* \w your|strong="H3947"\w* \w feet|strong="H7272"\w*, \w and|strong="H6086"\w* \w rest|strong="H8172"\w* \w yourselves|strong="H8172"\w* \w under|strong="H8478"\w* \w the|strong="H3947"\w* \w tree|strong="H6086"\w*. +\v 5 \w I|strong="H3588"\w* \w will|strong="H5650"\w* \w get|strong="H3947"\w* \w a|strong="H3068"\w* \w piece|strong="H6595"\w* \w of|strong="H5650"\w* \w bread|strong="H3899"\w* \w so|strong="H3651"\w* \w you|strong="H3588"\w* \w can|strong="H5650"\w* \w refresh|strong="H5582"\w* \w your|strong="H5921"\w* \w heart|strong="H3820"\w*. \w After|strong="H5921"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H6213"\w* \w go|strong="H5674"\w* \w your|strong="H5921"\w* \w way|strong="H5674"\w*, \w now|strong="H3588"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H5650"\w* \w come|strong="H5674"\w* \w to|strong="H1696"\w* \w your|strong="H5921"\w* \w servant|strong="H5650"\w*.” +\p \w They|strong="H3588"\w* \w said|strong="H1696"\w*, “\w Very|strong="H3651"\w* \w well|strong="H3820"\w*, \w do|strong="H6213"\w* \w as|strong="H6213"\w* \w you|strong="H3588"\w* \w have|strong="H5650"\w* \w said|strong="H1696"\w*.” +\p +\v 6 Abraham \w hurried|strong="H4116"\w* \w into|strong="H6213"\w* \w the|strong="H6213"\w* tent \w to|strong="H6213"\w* \w Sarah|strong="H8283"\w*, \w and|strong="H6213"\w* said, “\w Quickly|strong="H4116"\w* \w prepare|strong="H6213"\w* \w three|strong="H7969"\w* \w seahs|strong="H5429"\w*\f + \fr 18:6 \ft 1 seah is about 7 liters or 1.9 gallons or 0.8 pecks\f* \w of|strong="H5429"\w* \w fine|strong="H5560"\w* \w meal|strong="H7058"\w*, \w knead|strong="H3888"\w* \w it|strong="H6213"\w*, \w and|strong="H6213"\w* \w make|strong="H6213"\w* \w cakes|strong="H5692"\w*.” +\v 7 \w Abraham|strong="H3947"\w* \w ran|strong="H7323"\w* \w to|strong="H6213"\w* \w the|strong="H5414"\w* \w herd|strong="H1241"\w*, \w and|strong="H1121"\w* \w fetched|strong="H3947"\w* \w a|strong="H3068"\w* \w tender|strong="H7390"\w* \w and|strong="H1121"\w* \w good|strong="H2896"\w* \w calf|strong="H1121"\w*, \w and|strong="H1121"\w* \w gave|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H6213"\w* \w the|strong="H5414"\w* \w servant|strong="H5288"\w*. \w He|strong="H6213"\w* \w hurried|strong="H4116"\w* \w to|strong="H6213"\w* \w dress|strong="H6213"\w* \w it|strong="H5414"\w*. +\v 8 \w He|strong="H1931"\w* \w took|strong="H3947"\w* \w butter|strong="H2529"\w*, \w milk|strong="H2461"\w*, \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w calf|strong="H1121"\w* \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w had|strong="H5414"\w* \w dressed|strong="H6213"\w*, \w and|strong="H1121"\w* \w set|strong="H5414"\w* \w it|strong="H5414"\w* \w before|strong="H6440"\w* \w them|strong="H5414"\w*. \w He|strong="H1931"\w* \w stood|strong="H5975"\w* \w by|strong="H5921"\w* \w them|strong="H5414"\w* \w under|strong="H8478"\w* \w the|strong="H6440"\w* \w tree|strong="H6086"\w*, \w and|strong="H1121"\w* \w they|strong="H5921"\w* ate. +\p +\v 9 They asked him, “\w Where|strong="H2009"\w* \w is|strong="H2009"\w* \w Sarah|strong="H8283"\w*, \w your|strong="H8283"\w* wife?” +\p \w He|strong="H8283"\w* said, “\w There|strong="H2009"\w*, in \w the|strong="H2009"\w* tent.” +\p +\v 10 \w He|strong="H1931"\w* \w said|strong="H8085"\w*, “\w I|strong="H2009"\w* \w will|strong="H1121"\w* \w certainly|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w you|strong="H7725"\w* \w at|strong="H7725"\w* \w about|strong="H8085"\w* \w this|strong="H1931"\w* \w time|strong="H6256"\w* \w next|strong="H2416"\w* \w year|strong="H6256"\w*; \w and|strong="H1121"\w* \w behold|strong="H2009"\w*, \w Sarah|strong="H8283"\w* \w your|strong="H8085"\w* \w wife|strong="H2416"\w* \w will|strong="H1121"\w* \w have|strong="H1121"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*.” +\p \w Sarah|strong="H8283"\w* \w heard|strong="H8085"\w* \w in|strong="H8085"\w* \w the|strong="H8085"\w* tent \w door|strong="H6607"\w*, \w which|strong="H1931"\w* \w was|strong="H1931"\w* behind \w him|strong="H7725"\w*. +\v 11 \w Now|strong="H1961"\w* Abraham \w and|strong="H3117"\w* \w Sarah|strong="H8283"\w* \w were|strong="H1961"\w* \w old|strong="H2205"\w*, well advanced \w in|strong="H3117"\w* \w age|strong="H3117"\w*. \w Sarah|strong="H8283"\w* \w had|strong="H1961"\w* \w passed|strong="H1961"\w* \w the|strong="H3117"\w* \w age|strong="H3117"\w* \w of|strong="H3117"\w* childbearing. +\v 12 \w Sarah|strong="H8283"\w* \w laughed|strong="H6711"\w* \w within|strong="H7130"\w* \w herself|strong="H7130"\w*, saying, “\w After|strong="H1961"\w* \w I|strong="H1961"\w* \w have|strong="H1961"\w* \w grown|strong="H2204"\w* \w old|strong="H2204"\w* \w will|strong="H1961"\w* \w I|strong="H1961"\w* \w have|strong="H1961"\w* \w pleasure|strong="H5730"\w*, \w my|strong="H1961"\w* lord \w being|strong="H1961"\w* \w old|strong="H2204"\w* \w also|strong="H2204"\w*?” +\p +\v 13 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* Abraham, “\w Why|strong="H4100"\w* \w did|strong="H4100"\w* \w Sarah|strong="H8283"\w* \w laugh|strong="H6711"\w*, saying, ‘\w Will|strong="H3068"\w* \w I|strong="H2088"\w* \w really|strong="H2088"\w* \w bear|strong="H3205"\w* \w a|strong="H3068"\w* \w child|strong="H3205"\w* \w when|strong="H3068"\w* \w I|strong="H2088"\w* \w am|strong="H2204"\w* \w old|strong="H2204"\w*?’ +\v 14 \w Is|strong="H3068"\w* \w anything|strong="H1697"\w* \w too|strong="H1697"\w* \w hard|strong="H6381"\w* \w for|strong="H3068"\w* \w Yahweh|strong="H3068"\w*? \w At|strong="H3068"\w* \w the|strong="H3068"\w* \w set|strong="H7725"\w* \w time|strong="H6256"\w* \w I|strong="H1697"\w* \w will|strong="H3068"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w you|strong="H7725"\w*, \w when|strong="H6256"\w* \w the|strong="H3068"\w* \w season|strong="H6256"\w* comes \w around|strong="H7725"\w*, \w and|strong="H1121"\w* \w Sarah|strong="H8283"\w* \w will|strong="H3068"\w* \w have|strong="H3068"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*.” +\p +\v 15 \w Then|strong="H3588"\w* \w Sarah|strong="H8283"\w* \w denied|strong="H3584"\w* \w it|strong="H3588"\w*, saying, “\w I|strong="H3588"\w* didn’t \w laugh|strong="H6711"\w*,” \w for|strong="H3588"\w* \w she|strong="H3588"\w* \w was|strong="H3808"\w* \w afraid|strong="H3372"\w*. +\p \w He|strong="H3588"\w* said, “\w No|strong="H3808"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w did|strong="H3808"\w* \w laugh|strong="H6711"\w*.” +\p +\v 16 \w The|strong="H6440"\w* \w men|strong="H1980"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w from|strong="H6440"\w* \w there|strong="H8033"\w*, \w and|strong="H1980"\w* \w looked|strong="H8259"\w* \w toward|strong="H5921"\w* \w Sodom|strong="H5467"\w*. Abraham \w went|strong="H1980"\w* \w with|strong="H5973"\w* \w them|strong="H5921"\w* \w to|strong="H1980"\w* see \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w their|strong="H6440"\w* \w way|strong="H1980"\w*. +\v 17 \w Yahweh|strong="H3068"\w* said, “\w Will|strong="H3068"\w* \w I|strong="H3068"\w* \w hide|strong="H3680"\w* \w from|strong="H3068"\w* Abraham \w what|strong="H6213"\w* \w I|strong="H3068"\w* \w do|strong="H6213"\w*, +\v 18 since Abraham \w will|strong="H1961"\w* \w surely|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w and|strong="H1419"\w* \w mighty|strong="H6099"\w* \w nation|strong="H1471"\w*, \w and|strong="H1419"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* earth \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w blessed|strong="H1288"\w* \w in|strong="H1419"\w* \w him|strong="H3605"\w*? +\v 19 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w known|strong="H3045"\w* \w him|strong="H5921"\w*, \w to|strong="H1696"\w* \w the|strong="H5921"\w* \w end|strong="H4616"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w may|strong="H3068"\w* \w command|strong="H6680"\w* \w his|strong="H8104"\w* \w children|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8104"\w* \w household|strong="H1004"\w* \w after|strong="H5921"\w* \w him|strong="H5921"\w*, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w may|strong="H3068"\w* \w keep|strong="H8104"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*, \w to|strong="H1696"\w* \w do|strong="H6213"\w* \w righteousness|strong="H6666"\w* \w and|strong="H1121"\w* \w justice|strong="H4941"\w*; \w to|strong="H1696"\w* \w the|strong="H5921"\w* \w end|strong="H4616"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w may|strong="H3068"\w* \w bring|strong="H6213"\w* \w on|strong="H5921"\w* Abraham \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w of|strong="H1121"\w* \w him|strong="H5921"\w*.” +\v 20 \w Yahweh|strong="H3068"\w* said, “\w Because|strong="H3588"\w* \w the|strong="H3588"\w* \w cry|strong="H2201"\w* \w of|strong="H3068"\w* \w Sodom|strong="H5467"\w* \w and|strong="H3068"\w* \w Gomorrah|strong="H6017"\w* \w is|strong="H3068"\w* \w great|strong="H7227"\w*, \w and|strong="H3068"\w* \w because|strong="H3588"\w* \w their|strong="H3068"\w* \w sin|strong="H2403"\w* \w is|strong="H3068"\w* \w very|strong="H3966"\w* \w grievous|strong="H3513"\w*, +\v 21 \w I|strong="H3045"\w* \w will|strong="H3808"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w now|strong="H4994"\w*, \w and|strong="H7200"\w* \w see|strong="H7200"\w* \w whether|strong="H7200"\w* \w their|strong="H7200"\w* deeds \w are|strong="H6213"\w* \w as|strong="H6213"\w* bad \w as|strong="H6213"\w* \w the|strong="H7200"\w* reports which \w have|strong="H3045"\w* \w come|strong="H3381"\w* \w to|strong="H3381"\w* \w me|strong="H4994"\w*. \w If|strong="H7200"\w* \w not|strong="H3808"\w*, \w I|strong="H3045"\w* \w will|strong="H3808"\w* \w know|strong="H3045"\w*.” +\p +\v 22 \w The|strong="H6440"\w* men \w turned|strong="H6437"\w* \w from|strong="H6440"\w* \w there|strong="H8033"\w*, \w and|strong="H3068"\w* \w went|strong="H3212"\w* \w toward|strong="H6440"\w* \w Sodom|strong="H5467"\w*, \w but|strong="H6437"\w* Abraham \w stood|strong="H5975"\w* \w yet|strong="H5750"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 23 Abraham \w came|strong="H5066"\w* \w near|strong="H5066"\w*, \w and|strong="H5066"\w* said, “\w Will|strong="H6662"\w* \w you|strong="H5973"\w* \w consume|strong="H5595"\w* \w the|strong="H5973"\w* \w righteous|strong="H6662"\w* \w with|strong="H5973"\w* \w the|strong="H5973"\w* \w wicked|strong="H7563"\w*? +\v 24 What \w if|strong="H3426"\w* \w there|strong="H3426"\w* \w are|strong="H3426"\w* \w fifty|strong="H2572"\w* \w righteous|strong="H6662"\w* \w within|strong="H7130"\w* \w the|strong="H5375"\w* \w city|strong="H5892"\w*? \w Will|strong="H6662"\w* \w you|strong="H3808"\w* \w consume|strong="H5595"\w* \w and|strong="H5892"\w* \w not|strong="H3808"\w* \w spare|strong="H5375"\w* \w the|strong="H5375"\w* \w place|strong="H4725"\w* \w for|strong="H4616"\w* \w the|strong="H5375"\w* \w fifty|strong="H2572"\w* \w righteous|strong="H6662"\w* \w who|strong="H6662"\w* \w are|strong="H3426"\w* \w in|strong="H8432"\w* \w it|strong="H8432"\w*? +\v 25 \w May|strong="H1961"\w* \w it|strong="H6213"\w* \w be|strong="H1961"\w* \w far|strong="H2486"\w* \w from|strong="H1961"\w* \w you|strong="H3605"\w* \w to|strong="H4191"\w* \w do|strong="H6213"\w* \w things|strong="H1697"\w* \w like|strong="H1961"\w* \w that|strong="H3605"\w*, \w to|strong="H4191"\w* \w kill|strong="H4191"\w* \w the|strong="H3605"\w* \w righteous|strong="H6662"\w* \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w wicked|strong="H7563"\w*, \w so|strong="H6213"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* \w righteous|strong="H6662"\w* \w should|strong="H6213"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H3605"\w* \w wicked|strong="H7563"\w*. \w May|strong="H1961"\w* \w that|strong="H3605"\w* \w be|strong="H1961"\w* \w far|strong="H2486"\w* \w from|strong="H1961"\w* \w you|strong="H3605"\w*. Shouldn’t \w the|strong="H3605"\w* \w Judge|strong="H8199"\w* \w of|strong="H1697"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth \w do|strong="H6213"\w* \w right|strong="H4941"\w*?” +\p +\v 26 \w Yahweh|strong="H3068"\w* said, “If \w I|strong="H4672"\w* \w find|strong="H4672"\w* \w in|strong="H3068"\w* \w Sodom|strong="H5467"\w* \w fifty|strong="H2572"\w* \w righteous|strong="H6662"\w* \w within|strong="H8432"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w then|strong="H5375"\w* \w I|strong="H4672"\w* \w will|strong="H3068"\w* \w spare|strong="H5375"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w place|strong="H4725"\w* \w for|strong="H3068"\w* \w their|strong="H3605"\w* \w sake|strong="H5668"\w*.” +\v 27 Abraham \w answered|strong="H6030"\w*, “\w See|strong="H2009"\w* \w now|strong="H4994"\w*, \w I|strong="H2009"\w* \w have|strong="H1696"\w* taken \w it|strong="H1696"\w* \w on|strong="H1696"\w* myself \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H1696"\w* Lord, although \w I|strong="H2009"\w* am \w dust|strong="H6083"\w* \w and|strong="H6030"\w* \w ashes|strong="H6083"\w*. +\v 28 What if \w there|strong="H8033"\w* \w will|strong="H6662"\w* \w lack|strong="H2637"\w* \w five|strong="H2568"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w fifty|strong="H2572"\w* \w righteous|strong="H6662"\w*? \w Will|strong="H6662"\w* \w you|strong="H3605"\w* \w destroy|strong="H7843"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w for|strong="H5892"\w* \w lack|strong="H2637"\w* \w of|strong="H5892"\w* \w five|strong="H2568"\w*?” +\p \w He|strong="H8033"\w* said, “\w I|strong="H3808"\w* \w will|strong="H6662"\w* \w not|strong="H3808"\w* \w destroy|strong="H7843"\w* \w it|strong="H8033"\w* if \w I|strong="H3808"\w* \w find|strong="H4672"\w* forty-five \w there|strong="H8033"\w*.” +\p +\v 29 \w He|strong="H8033"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H6213"\w* \w yet|strong="H5750"\w* \w again|strong="H5750"\w*, \w and|strong="H8033"\w* \w said|strong="H1696"\w*, “\w What|strong="H6213"\w* if \w there|strong="H8033"\w* \w are|strong="H6213"\w* forty \w found|strong="H4672"\w* \w there|strong="H8033"\w*?” +\p \w He|strong="H8033"\w* \w said|strong="H1696"\w*, “\w I|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w do|strong="H6213"\w* \w it|strong="H6213"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* forty’s \w sake|strong="H5668"\w*.” +\p +\v 30 \w He|strong="H8033"\w* \w said|strong="H1696"\w*, “\w Oh|strong="H4994"\w* don’t \w let|strong="H4994"\w* \w the|strong="H6213"\w* Lord \w be|strong="H3808"\w* \w angry|strong="H2734"\w*, \w and|strong="H7970"\w* \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w speak|strong="H1696"\w*. \w What|strong="H6213"\w* if \w there|strong="H8033"\w* \w are|strong="H6213"\w* \w thirty|strong="H7970"\w* \w found|strong="H4672"\w* \w there|strong="H8033"\w*?” +\p \w He|strong="H8033"\w* \w said|strong="H1696"\w*, “\w I|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w do|strong="H6213"\w* \w it|strong="H6213"\w* if \w I|strong="H3808"\w* \w find|strong="H4672"\w* \w thirty|strong="H7970"\w* \w there|strong="H8033"\w*.” +\p +\v 31 \w He|strong="H8033"\w* \w said|strong="H1696"\w*, “\w See|strong="H2009"\w* \w now|strong="H4994"\w*, \w I|strong="H2009"\w* \w have|strong="H4672"\w* \w taken|strong="H4672"\w* \w it|strong="H8033"\w* \w on|strong="H1696"\w* myself \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H7843"\w* Lord. \w What|strong="H1696"\w* \w if|strong="H2009"\w* \w there|strong="H8033"\w* \w are|strong="H8033"\w* \w twenty|strong="H6242"\w* \w found|strong="H4672"\w* \w there|strong="H8033"\w*?” +\p \w He|strong="H8033"\w* \w said|strong="H1696"\w*, “\w I|strong="H2009"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w destroy|strong="H7843"\w* \w it|strong="H8033"\w* \w for|strong="H8033"\w* \w the|strong="H7843"\w* \w twenty|strong="H6242"\w*’s \w sake|strong="H5668"\w*.” +\p +\v 32 \w He|strong="H8033"\w* \w said|strong="H1696"\w*, “\w Oh|strong="H4994"\w* don’t \w let|strong="H4994"\w* \w the|strong="H7843"\w* Lord \w be|strong="H3808"\w* \w angry|strong="H2734"\w*, \w and|strong="H8033"\w* \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w speak|strong="H1696"\w* \w just|strong="H1696"\w* \w once|strong="H6471"\w* \w more|strong="H6471"\w*. \w What|strong="H1696"\w* if \w ten|strong="H6235"\w* \w are|strong="H8033"\w* \w found|strong="H4672"\w* \w there|strong="H8033"\w*?” +\p \w He|strong="H8033"\w* \w said|strong="H1696"\w*, “\w I|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w destroy|strong="H7843"\w* \w it|strong="H8033"\w* \w for|strong="H8033"\w* \w the|strong="H7843"\w* \w ten|strong="H6235"\w*’s \w sake|strong="H5668"\w*.” +\p +\v 33 \w Yahweh|strong="H3068"\w* \w went|strong="H3212"\w* \w his|strong="H3068"\w* \w way|strong="H3212"\w* \w as|strong="H3068"\w* soon \w as|strong="H3068"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w* \w finished|strong="H3615"\w* \w communing|strong="H1696"\w* \w with|strong="H3068"\w* Abraham, \w and|strong="H3068"\w* Abraham \w returned|strong="H7725"\w* \w to|strong="H1696"\w* \w his|strong="H3068"\w* \w place|strong="H4725"\w*. +\c 19 +\p +\v 1 \w The|strong="H7200"\w* \w two|strong="H8147"\w* \w angels|strong="H4397"\w* \w came|strong="H4397"\w* \w to|strong="H4397"\w* \w Sodom|strong="H5467"\w* \w at|strong="H3427"\w* \w evening|strong="H6153"\w*. \w Lot|strong="H3876"\w* \w sat|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H7200"\w* \w gate|strong="H8179"\w* \w of|strong="H3427"\w* \w Sodom|strong="H5467"\w*. \w Lot|strong="H3876"\w* \w saw|strong="H7200"\w* \w them|strong="H7200"\w*, \w and|strong="H6965"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w to|strong="H4397"\w* \w meet|strong="H7125"\w* \w them|strong="H7200"\w*. \w He|strong="H8147"\w* \w bowed|strong="H7812"\w* \w himself|strong="H7812"\w* \w with|strong="H3427"\w* \w his|strong="H7200"\w* \w face|strong="H7200"\w* \w to|strong="H4397"\w* \w the|strong="H7200"\w* earth, +\v 2 \w and|strong="H1980"\w* \w he|strong="H3588"\w* said, “\w See|strong="H2009"\w* \w now|strong="H4994"\w*, \w my|strong="H5493"\w* lords, \w please|strong="H4994"\w* \w come|strong="H1980"\w* \w into|strong="H1980"\w* \w your|strong="H3588"\w* \w servant|strong="H5650"\w*’s \w house|strong="H1004"\w*, \w stay|strong="H3885"\w* \w all|strong="H3885"\w* \w night|strong="H3885"\w*, \w wash|strong="H7364"\w* \w your|strong="H3588"\w* \w feet|strong="H7272"\w*, \w and|strong="H1980"\w* \w you|strong="H3588"\w* \w can|strong="H5650"\w* \w rise|strong="H7925"\w* \w up|strong="H7925"\w* \w early|strong="H7925"\w*, \w and|strong="H1980"\w* \w go|strong="H1980"\w* \w on|strong="H1980"\w* \w your|strong="H3588"\w* \w way|strong="H1870"\w*.” +\p \w They|strong="H3588"\w* said, “\w No|strong="H3808"\w*, \w but|strong="H3588"\w* \w we|strong="H3068"\w* \w will|strong="H5650"\w* \w stay|strong="H3885"\w* \w in|strong="H1980"\w* \w the|strong="H3588"\w* \w street|strong="H7339"\w* \w all|strong="H3885"\w* \w night|strong="H3885"\w*.” +\p +\v 3 \w He|strong="H6213"\w* \w urged|strong="H6484"\w* \w them|strong="H6213"\w* \w greatly|strong="H3966"\w*, \w and|strong="H1004"\w* \w they|strong="H6213"\w* came \w in|strong="H6213"\w* \w with|strong="H1004"\w* \w him|strong="H6213"\w*, \w and|strong="H1004"\w* entered \w into|strong="H6213"\w* \w his|strong="H5493"\w* \w house|strong="H1004"\w*. \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w them|strong="H6213"\w* \w a|strong="H3068"\w* \w feast|strong="H4960"\w*, \w and|strong="H1004"\w* baked \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w*, \w and|strong="H1004"\w* \w they|strong="H6213"\w* ate. +\v 4 \w But|strong="H5971"\w* \w before|strong="H2962"\w* \w they|strong="H5921"\w* \w lay|strong="H7901"\w* \w down|strong="H7901"\w*, \w the|strong="H3605"\w* \w men|strong="H5288"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w the|strong="H3605"\w* \w men|strong="H5288"\w* \w of|strong="H1004"\w* \w Sodom|strong="H5467"\w*, \w surrounded|strong="H5437"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*, \w both|strong="H3605"\w* \w young|strong="H5288"\w* \w and|strong="H1004"\w* \w old|strong="H2205"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w from|strong="H5921"\w* \w every|strong="H3605"\w* \w quarter|strong="H7097"\w*. +\v 5 \w They|strong="H3045"\w* \w called|strong="H7121"\w* \w to|strong="H3318"\w* \w Lot|strong="H3876"\w*, \w and|strong="H3915"\w* \w said|strong="H7121"\w* \w to|strong="H3318"\w* \w him|strong="H7121"\w*, “Where \w are|strong="H3045"\w* \w the|strong="H3045"\w* \w men|strong="H7121"\w* \w who|strong="H3045"\w* \w came|strong="H3318"\w* \w in|strong="H7121"\w* \w to|strong="H3318"\w* \w you|strong="H3045"\w* \w this|strong="H7121"\w* \w night|strong="H3915"\w*? \w Bring|strong="H3318"\w* \w them|strong="H7121"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w us|strong="H3045"\w*, \w that|strong="H3045"\w* \w we|strong="H3068"\w* may \w have|strong="H3045"\w* sex \w with|strong="H3045"\w* \w them|strong="H7121"\w*.” +\p +\v 6 \w Lot|strong="H3876"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w them|strong="H3318"\w* \w through|strong="H3318"\w* \w the|strong="H3318"\w* \w door|strong="H6607"\w*, \w and|strong="H3318"\w* \w shut|strong="H5462"\w* \w the|strong="H3318"\w* \w door|strong="H6607"\w* \w after|strong="H3318"\w* himself. +\v 7 He said, “\w Please|strong="H4994"\w*, \w my|strong="H7489"\w* brothers, don’t \w act|strong="H7489"\w* \w so|strong="H7489"\w* \w wickedly|strong="H7489"\w*. +\v 8 \w See|strong="H2009"\w* \w now|strong="H4994"\w*, \w I|strong="H3588"\w* \w have|strong="H5869"\w* \w two|strong="H8147"\w* virgin \w daughters|strong="H1323"\w*. \w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w me|strong="H4994"\w* \w bring|strong="H3318"\w* \w them|strong="H5921"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w you|strong="H3588"\w*, \w and|strong="H5869"\w* \w you|strong="H3588"\w* \w may|strong="H4994"\w* \w do|strong="H6213"\w* \w to|strong="H3318"\w* \w them|strong="H5921"\w* \w what|strong="H1697"\w* \w seems|strong="H2896"\w* \w good|strong="H2896"\w* \w to|strong="H3318"\w* \w you|strong="H3588"\w*. \w Only|strong="H7535"\w* don’t \w do|strong="H6213"\w* \w anything|strong="H1697"\w* \w to|strong="H3318"\w* \w these|strong="H6213"\w* \w men|strong="H6213"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H5869"\w* \w come|strong="H3318"\w* \w under|strong="H5921"\w* \w the|strong="H5921"\w* \w shadow|strong="H6738"\w* \w of|strong="H1323"\w* \w my|strong="H5921"\w* \w roof|strong="H6982"\w*.” +\p +\v 9 \w They|strong="H1992"\w* said, “\w Stand|strong="H1481"\w* \w back|strong="H1973"\w*!” \w Then|strong="H6258"\w* \w they|strong="H1992"\w* said, “\w This|strong="H6258"\w* one fellow \w came|strong="H5066"\w* \w in|strong="H7665"\w* \w to|strong="H5066"\w* \w live|strong="H1481"\w* \w as|strong="H1992"\w* \w a|strong="H3068"\w* foreigner, \w and|strong="H5066"\w* \w he|strong="H8199"\w* appoints himself \w a|strong="H3068"\w* \w judge|strong="H8199"\w*. \w Now|strong="H6258"\w* \w we|strong="H3068"\w* \w will|strong="H8199"\w* \w deal|strong="H3966"\w* \w worse|strong="H7489"\w* \w with|strong="H1481"\w* \w you|strong="H7489"\w* than \w with|strong="H1481"\w* \w them|strong="H1992"\w*!” \w They|strong="H1992"\w* \w pressed|strong="H6484"\w* \w hard|strong="H7489"\w* \w on|strong="H6258"\w* \w the|strong="H7665"\w* man \w Lot|strong="H3876"\w*, \w and|strong="H5066"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H5066"\w* \w break|strong="H7665"\w* \w the|strong="H7665"\w* \w door|strong="H1817"\w*. +\v 10 But \w the|strong="H7971"\w* men \w reached|strong="H7971"\w* \w out|strong="H7971"\w* \w their|strong="H7971"\w* \w hand|strong="H3027"\w*, \w and|strong="H7971"\w* \w brought|strong="H7971"\w* \w Lot|strong="H3876"\w* \w into|strong="H3027"\w* \w the|strong="H7971"\w* \w house|strong="H1004"\w* \w to|strong="H7971"\w* \w them|strong="H7971"\w*, \w and|strong="H7971"\w* \w shut|strong="H5462"\w* \w the|strong="H7971"\w* \w door|strong="H1817"\w*. +\v 11 \w They|strong="H5704"\w* \w struck|strong="H5221"\w* \w the|strong="H5221"\w* \w men|strong="H1419"\w* \w who|strong="H4672"\w* \w were|strong="H1419"\w* \w at|strong="H1004"\w* \w the|strong="H5221"\w* \w door|strong="H6607"\w* \w of|strong="H1004"\w* \w the|strong="H5221"\w* \w house|strong="H1004"\w* \w with|strong="H1004"\w* \w blindness|strong="H5575"\w*, both \w small|strong="H6996"\w* \w and|strong="H1419"\w* \w great|strong="H1419"\w*, \w so|strong="H4672"\w* \w that|strong="H5704"\w* \w they|strong="H5704"\w* \w wearied|strong="H3811"\w* \w themselves|strong="H3811"\w* \w to|strong="H5704"\w* \w find|strong="H4672"\w* \w the|strong="H5221"\w* \w door|strong="H6607"\w*. +\p +\v 12 \w The|strong="H3605"\w* \w men|strong="H1121"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w Lot|strong="H3876"\w*, “\w Do|strong="H3318"\w* \w you|strong="H3605"\w* \w have|strong="H1121"\w* anybody \w else|strong="H5750"\w* \w here|strong="H6311"\w*? \w Sons-in-law|strong="H2860"\w*, \w your|strong="H3605"\w* \w sons|strong="H1121"\w*, \w your|strong="H3605"\w* \w daughters|strong="H1323"\w*, \w and|strong="H1121"\w* \w whomever|strong="H3605"\w* \w you|strong="H3605"\w* \w have|strong="H1121"\w* \w in|strong="H5892"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w bring|strong="H3318"\w* \w them|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w place|strong="H4725"\w*: +\v 13 \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w destroy|strong="H7843"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*, \w because|strong="H3588"\w* \w the|strong="H6440"\w* \w outcry|strong="H6818"\w* \w against|strong="H6440"\w* \w them|strong="H7971"\w* \w has|strong="H3068"\w* \w grown|strong="H1431"\w* \w so|strong="H7971"\w* \w great|strong="H1431"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w sent|strong="H7971"\w* \w us|strong="H6440"\w* \w to|strong="H3068"\w* \w destroy|strong="H7843"\w* \w it|strong="H3588"\w*.” +\p +\v 14 \w Lot|strong="H3876"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H6965"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w his|strong="H3068"\w* \w sons-in-law|strong="H2860"\w*, \w who|strong="H3068"\w* \w were|strong="H1961"\w* pledged \w to|strong="H1696"\w* \w marry|strong="H3947"\w* \w his|strong="H3068"\w* \w daughters|strong="H1323"\w*, \w and|strong="H6965"\w* \w said|strong="H1696"\w*, “\w Get|strong="H3947"\w* \w up|strong="H6965"\w*! \w Get|strong="H3947"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w destroy|strong="H7843"\w* \w the|strong="H3588"\w* \w city|strong="H5892"\w*!” +\p \w But|strong="H3588"\w* \w he|strong="H3588"\w* \w seemed|strong="H5869"\w* \w to|strong="H1696"\w* \w his|strong="H3068"\w* \w sons-in-law|strong="H2860"\w* \w to|strong="H1696"\w* \w be|strong="H1961"\w* joking. +\v 15 \w When|strong="H3644"\w* \w the|strong="H3947"\w* \w morning|strong="H7837"\w* \w came|strong="H5927"\w*, \w then|strong="H6965"\w* \w the|strong="H3947"\w* \w angels|strong="H4397"\w* hurried \w Lot|strong="H3876"\w*, saying, “\w Get|strong="H3947"\w* \w up|strong="H5927"\w*! \w Take|strong="H3947"\w* \w your|strong="H3947"\w* wife \w and|strong="H6965"\w* \w your|strong="H3947"\w* \w two|strong="H8147"\w* \w daughters|strong="H1323"\w* \w who|strong="H4397"\w* \w are|strong="H5892"\w* \w here|strong="H4672"\w*, \w lest|strong="H6435"\w* \w you|strong="H3947"\w* \w be|strong="H5892"\w* \w consumed|strong="H5595"\w* \w in|strong="H5892"\w* \w the|strong="H3947"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1323"\w* \w the|strong="H3947"\w* \w city|strong="H5892"\w*.” +\v 16 \w But|strong="H2388"\w* \w he|strong="H3068"\w* \w lingered|strong="H4102"\w*; \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w men|strong="H2388"\w* \w grabbed|strong="H2388"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w*, \w his|strong="H3068"\w* wife’s \w hand|strong="H3027"\w*, \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w two|strong="H8147"\w* \w daughters|strong="H1323"\w*’ \w hands|strong="H3027"\w*, \w Yahweh|strong="H3068"\w* \w being|strong="H3068"\w* \w merciful|strong="H2551"\w* \w to|strong="H3318"\w* \w him|strong="H5921"\w*; \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w took|strong="H2388"\w* \w him|strong="H5921"\w* \w out|strong="H3318"\w*, \w and|strong="H3068"\w* \w set|strong="H3240"\w* \w him|strong="H5921"\w* \w outside|strong="H2351"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*. +\v 17 \w It|strong="H5921"\w* \w came|strong="H1961"\w* \w to|strong="H3318"\w* \w pass|strong="H1961"\w*, \w when|strong="H1961"\w* \w they|strong="H5921"\w* \w had|strong="H1961"\w* \w taken|strong="H1961"\w* \w them|strong="H5921"\w* \w out|strong="H3318"\w*, \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w said|strong="H3318"\w*, “\w Escape|strong="H4422"\w* \w for|strong="H5921"\w* \w your|strong="H3605"\w* \w life|strong="H5315"\w*! Don’t \w look|strong="H5027"\w* \w behind|strong="H5975"\w* \w you|strong="H3605"\w*, \w and|strong="H2022"\w* don’t \w stay|strong="H5975"\w* \w anywhere|strong="H3605"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w plain|strong="H3603"\w*. \w Escape|strong="H4422"\w* \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w*, \w lest|strong="H6435"\w* \w you|strong="H3605"\w* \w be|strong="H1961"\w* \w consumed|strong="H5595"\w*!” +\p +\v 18 \w Lot|strong="H3876"\w* said \w to|strong="H4994"\w* \w them|strong="H4994"\w*, “\w Oh|strong="H4994"\w*, not \w so|strong="H4994"\w*, \w my|strong="H4994"\w* lord. +\v 19 \w See|strong="H2009"\w* \w now|strong="H4994"\w*, \w your|strong="H6213"\w* \w servant|strong="H5650"\w* \w has|strong="H5650"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H6213"\w* \w your|strong="H6213"\w* \w sight|strong="H5869"\w*, \w and|strong="H5869"\w* \w you|strong="H6213"\w* \w have|strong="H5869"\w* \w magnified|strong="H1431"\w* \w your|strong="H6213"\w* loving \w kindness|strong="H2617"\w*, \w which|strong="H5869"\w* \w you|strong="H6213"\w* \w have|strong="H5869"\w* \w shown|strong="H6213"\w* \w to|strong="H4191"\w* \w me|strong="H4994"\w* \w in|strong="H6213"\w* \w saving|strong="H2421"\w* \w my|strong="H6213"\w* \w life|strong="H5315"\w*. \w I|strong="H2009"\w* \w can|strong="H3201"\w*’t \w escape|strong="H4422"\w* \w to|strong="H4191"\w* \w the|strong="H6213"\w* \w mountain|strong="H2022"\w*, \w lest|strong="H6435"\w* \w evil|strong="H7451"\w* \w overtake|strong="H4672"\w* \w me|strong="H4994"\w*, \w and|strong="H5869"\w* \w I|strong="H2009"\w* \w die|strong="H4191"\w*. +\v 20 \w See|strong="H2009"\w* \w now|strong="H4994"\w*, \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w is|strong="H1931"\w* \w near|strong="H7138"\w* \w to|strong="H8033"\w* \w flee|strong="H5127"\w* \w to|strong="H8033"\w*, \w and|strong="H5892"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w little|strong="H4705"\w* \w one|strong="H3808"\w*. \w Oh|strong="H4994"\w* \w let|strong="H4994"\w* \w me|strong="H4994"\w* \w escape|strong="H4422"\w* \w there|strong="H8033"\w* (isn’t \w it|strong="H1931"\w* \w a|strong="H3068"\w* \w little|strong="H4705"\w* \w one|strong="H3808"\w*?), \w and|strong="H5892"\w* \w my|strong="H3808"\w* \w soul|strong="H5315"\w* \w will|strong="H5315"\w* \w live|strong="H2421"\w*.” +\p +\v 21 \w He|strong="H1696"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H6440"\w*, “\w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w have|strong="H1571"\w* \w granted|strong="H5375"\w* \w your|strong="H5375"\w* \w request|strong="H1697"\w* \w concerning|strong="H1697"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w also|strong="H1571"\w*, \w that|strong="H1697"\w* \w I|strong="H2009"\w* \w will|strong="H1571"\w* \w not|strong="H1115"\w* \w overthrow|strong="H2015"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w* \w of|strong="H1697"\w* \w which|strong="H1697"\w* \w you|strong="H6440"\w* \w have|strong="H1571"\w* \w spoken|strong="H1696"\w*. +\v 22 \w Hurry|strong="H4116"\w*, \w escape|strong="H4422"\w* \w there|strong="H8033"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w can|strong="H3201"\w*’t \w do|strong="H6213"\w* \w anything|strong="H1697"\w* \w until|strong="H5704"\w* \w you|strong="H3588"\w* \w get|strong="H6213"\w* \w there|strong="H8033"\w*.” \w Therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H1697"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w was|strong="H8034"\w* \w called|strong="H7121"\w* \w Zoar|strong="H6820"\w*.\f + \fr 19:22 \ft Zoar means “little”.\f* +\p +\v 23 \w The|strong="H5921"\w* \w sun|strong="H8121"\w* \w had|strong="H8121"\w* \w risen|strong="H3318"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w earth|strong="H8121"\w* \w when|strong="H3318"\w* \w Lot|strong="H3876"\w* \w came|strong="H3318"\w* \w to|strong="H3318"\w* \w Zoar|strong="H6820"\w*. +\v 24 \w Then|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w rained|strong="H4305"\w* \w on|strong="H5921"\w* \w Sodom|strong="H5467"\w* \w and|strong="H3068"\w* \w on|strong="H5921"\w* \w Gomorrah|strong="H6017"\w* \w sulfur|strong="H1614"\w* \w and|strong="H3068"\w* fire \w from|strong="H4480"\w* \w Yahweh|strong="H3068"\w* \w out|strong="H4480"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w sky|strong="H8064"\w*. +\v 25 \w He|strong="H3605"\w* \w overthrew|strong="H2015"\w* \w those|strong="H3605"\w* \w cities|strong="H5892"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w plain|strong="H3603"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w*, \w and|strong="H5892"\w* \w that|strong="H3605"\w* \w which|strong="H5892"\w* \w grew|strong="H6780"\w* \w on|strong="H3427"\w* \w the|strong="H3605"\w* ground. +\v 26 \w But|strong="H1961"\w* Lot’s wife \w looked|strong="H5027"\w* \w back|strong="H5027"\w* \w from|strong="H1961"\w* behind \w him|strong="H1961"\w*, \w and|strong="H5027"\w* she \w became|strong="H1961"\w* \w a|strong="H3068"\w* \w pillar|strong="H5333"\w* \w of|strong="H5333"\w* \w salt|strong="H4417"\w*. +\p +\v 27 Abraham \w went|strong="H3068"\w* \w up|strong="H5975"\w* \w early|strong="H7925"\w* \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w morning|strong="H1242"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w he|strong="H8033"\w* \w had|strong="H3068"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 28 \w He|strong="H3605"\w* \w looked|strong="H7200"\w* \w toward|strong="H5921"\w* \w Sodom|strong="H5467"\w* \w and|strong="H6440"\w* \w Gomorrah|strong="H6017"\w*, \w and|strong="H6440"\w* \w toward|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w plain|strong="H3603"\w*, \w and|strong="H6440"\w* \w saw|strong="H7200"\w* \w that|strong="H7200"\w* \w the|strong="H3605"\w* \w smoke|strong="H7008"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w as|strong="H5927"\w* \w the|strong="H3605"\w* \w smoke|strong="H7008"\w* \w of|strong="H6440"\w* \w a|strong="H3068"\w* \w furnace|strong="H3536"\w*. +\p +\v 29 \w When|strong="H1961"\w* \w God|strong="H7971"\w* \w destroyed|strong="H7843"\w* \w the|strong="H8432"\w* \w cities|strong="H5892"\w* \w of|strong="H3427"\w* \w the|strong="H8432"\w* \w plain|strong="H3603"\w*, \w God|strong="H7971"\w* \w remembered|strong="H2142"\w* Abraham, \w and|strong="H7971"\w* \w sent|strong="H7971"\w* \w Lot|strong="H3876"\w* \w out|strong="H7971"\w* \w of|strong="H3427"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H3427"\w* \w the|strong="H8432"\w* \w overthrow|strong="H2015"\w*, \w when|strong="H1961"\w* \w he|strong="H7971"\w* \w overthrew|strong="H2015"\w* \w the|strong="H8432"\w* \w cities|strong="H5892"\w* \w in|strong="H3427"\w* \w which|strong="H2004"\w* \w Lot|strong="H3876"\w* \w lived|strong="H3427"\w*. +\p +\v 30 \w Lot|strong="H3876"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H3427"\w* \w of|strong="H1323"\w* \w Zoar|strong="H6820"\w*, \w and|strong="H2022"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3588"\w* \w mountain|strong="H2022"\w*, \w and|strong="H2022"\w* \w his|strong="H3588"\w* \w two|strong="H8147"\w* \w daughters|strong="H1323"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*; \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w afraid|strong="H3372"\w* \w to|strong="H5927"\w* \w live|strong="H3427"\w* \w in|strong="H3427"\w* \w Zoar|strong="H6820"\w*. \w He|strong="H1931"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w a|strong="H3068"\w* \w cave|strong="H4631"\w* \w with|strong="H5973"\w* \w his|strong="H3588"\w* \w two|strong="H8147"\w* \w daughters|strong="H1323"\w*. +\v 31 \w The|strong="H3605"\w* \w firstborn|strong="H1067"\w* said \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w younger|strong="H6810"\w*, “\w Our|strong="H3605"\w* father \w is|strong="H1870"\w* \w old|strong="H2204"\w*, \w and|strong="H1870"\w* \w there|strong="H3605"\w* \w is|strong="H1870"\w* \w not|strong="H1870"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* earth \w to|strong="H5921"\w* come \w in|strong="H5921"\w* \w to|strong="H5921"\w* \w us|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth. +\v 32 \w Come|strong="H3212"\w*, \w let|strong="H3212"\w*’s \w make|strong="H8248"\w* \w our|strong="H8248"\w* father \w drink|strong="H8248"\w* \w wine|strong="H3196"\w*, \w and|strong="H3212"\w* \w we|strong="H3068"\w* \w will|strong="H2233"\w* \w lie|strong="H7901"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*, \w that|strong="H3196"\w* \w we|strong="H3068"\w* \w may|strong="H2233"\w* \w preserve|strong="H2421"\w* \w our|strong="H8248"\w* father’s \w family|strong="H2233"\w* \w line|strong="H2233"\w*.” +\v 33 \w They|strong="H3808"\w* \w made|strong="H3045"\w* \w their|strong="H3045"\w* father \w drink|strong="H8248"\w* \w wine|strong="H3196"\w* \w that|strong="H3045"\w* \w night|strong="H3915"\w*: \w and|strong="H6965"\w* \w the|strong="H3045"\w* \w firstborn|strong="H1067"\w* \w went|strong="H6965"\w* \w in|strong="H7901"\w*, \w and|strong="H6965"\w* \w lay|strong="H7901"\w* \w with|strong="H3045"\w* \w her|strong="H3045"\w* father. \w He|strong="H1931"\w* didn’t \w know|strong="H3045"\w* \w when|strong="H7901"\w* \w she|strong="H1931"\w* \w lay|strong="H7901"\w* \w down|strong="H7901"\w*, \w nor|strong="H3808"\w* \w when|strong="H7901"\w* \w she|strong="H1931"\w* \w arose|strong="H6965"\w*. +\v 34 \w It|strong="H1961"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w pass|strong="H1961"\w* \w on|strong="H1961"\w* \w the|strong="H1961"\w* \w next|strong="H4283"\w* \w day|strong="H4283"\w*, \w that|strong="H1961"\w* \w the|strong="H1961"\w* \w firstborn|strong="H1067"\w* said \w to|strong="H1961"\w* \w the|strong="H1961"\w* \w younger|strong="H6810"\w*, “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w lay|strong="H7901"\w* last \w night|strong="H3915"\w* \w with|strong="H5973"\w* \w my|strong="H1961"\w* father. \w Let|strong="H1961"\w*’s \w make|strong="H8248"\w* \w him|strong="H5973"\w* \w drink|strong="H8248"\w* \w wine|strong="H3196"\w* \w again|strong="H1961"\w* \w tonight|strong="H3915"\w*. \w You|strong="H5973"\w* \w go|strong="H1961"\w* \w in|strong="H7901"\w*, \w and|strong="H3915"\w* \w lie|strong="H7901"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*, \w that|strong="H1961"\w* \w we|strong="H3068"\w* \w may|strong="H1961"\w* \w preserve|strong="H2421"\w* \w our|strong="H1961"\w* father’s \w family|strong="H2233"\w* \w line|strong="H2233"\w*.” +\v 35 \w They|strong="H3808"\w* \w made|strong="H3045"\w* \w their|strong="H3045"\w* father \w drink|strong="H8248"\w* \w wine|strong="H3196"\w* \w that|strong="H3045"\w* \w night|strong="H3915"\w* \w also|strong="H1571"\w*. \w The|strong="H3045"\w* \w younger|strong="H6810"\w* \w went|strong="H6965"\w* \w and|strong="H6965"\w* \w lay|strong="H7901"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*. \w He|strong="H1931"\w* didn’t \w know|strong="H3045"\w* \w when|strong="H7901"\w* \w she|strong="H1931"\w* \w lay|strong="H7901"\w* \w down|strong="H7901"\w*, \w nor|strong="H3808"\w* \w when|strong="H7901"\w* \w she|strong="H1931"\w* \w got|strong="H6965"\w* \w up|strong="H6965"\w*. +\v 36 Thus \w both|strong="H8147"\w* \w of|strong="H1323"\w* \w Lot|strong="H3876"\w*’s \w daughters|strong="H1323"\w* \w were|strong="H1323"\w* \w with|strong="H8147"\w* \w child|strong="H2029"\w* \w by|strong="H1323"\w* \w their|strong="H8147"\w* father. +\v 37 \w The|strong="H3205"\w* \w firstborn|strong="H1067"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w named|strong="H7121"\w* \w him|strong="H3205"\w* \w Moab|strong="H4124"\w*. \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w the|strong="H3205"\w* \w Moabites|strong="H4124"\w* \w to|strong="H5704"\w* \w this|strong="H1931"\w* \w day|strong="H3117"\w*. +\v 38 \w The|strong="H3205"\w* \w younger|strong="H6810"\w* \w also|strong="H1571"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w called|strong="H7121"\w* \w his|strong="H7121"\w* \w name|strong="H8034"\w* Ben Ammi. \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w the|strong="H3205"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w to|strong="H5704"\w* \w this|strong="H1931"\w* \w day|strong="H3117"\w*. +\c 20 +\p +\v 1 Abraham \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w there|strong="H8033"\w* toward \w the|strong="H8033"\w* land \w of|strong="H3427"\w* \w the|strong="H8033"\w* \w South|strong="H5045"\w*, \w and|strong="H8033"\w* \w lived|strong="H3427"\w* \w between|strong="H3427"\w* \w Kadesh|strong="H6946"\w* \w and|strong="H8033"\w* \w Shur|strong="H7793"\w*. \w He|strong="H8033"\w* \w lived|strong="H3427"\w* \w as|strong="H3427"\w* \w a|strong="H3068"\w* foreigner \w in|strong="H3427"\w* \w Gerar|strong="H1642"\w*. +\v 2 \w Abraham|strong="H3947"\w* said \w about|strong="H4428"\w* \w Sarah|strong="H8283"\w* \w his|strong="H7971"\w* wife, “\w She|strong="H1931"\w* \w is|strong="H1931"\w* \w my|strong="H3947"\w* sister.” Abimelech \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Gerar|strong="H1642"\w* \w sent|strong="H7971"\w*, \w and|strong="H7971"\w* \w took|strong="H3947"\w* \w Sarah|strong="H8283"\w*. +\v 3 \w But|strong="H2009"\w* God came \w to|strong="H4191"\w* Abimelech \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w dream|strong="H2472"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w night|strong="H3915"\w*, \w and|strong="H3915"\w* said \w to|strong="H4191"\w* \w him|strong="H5921"\w*, “\w Behold|strong="H2009"\w*, \w you|strong="H5921"\w* \w are|strong="H2472"\w* \w a|strong="H3068"\w* \w dead|strong="H4191"\w* \w man|strong="H1167"\w*, \w because|strong="H5921"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* woman whom \w you|strong="H5921"\w* \w have|strong="H3947"\w* \w taken|strong="H3947"\w*; \w for|strong="H5921"\w* \w she|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w man|strong="H1167"\w*’s \w wife|strong="H1166"\w*.” +\p +\v 4 \w Now|strong="H1571"\w* Abimelech \w had|strong="H1471"\w* \w not|strong="H3808"\w* \w come|strong="H7126"\w* \w near|strong="H7126"\w* \w her|strong="H1571"\w*. \w He|strong="H3808"\w* said, “\w Lord|strong="H6662"\w*, \w will|strong="H1471"\w* \w you|strong="H3808"\w* \w kill|strong="H2026"\w* \w even|strong="H1571"\w* \w a|strong="H3068"\w* \w righteous|strong="H6662"\w* \w nation|strong="H1471"\w*? +\v 5 Didn’t \w he|strong="H1931"\w* tell \w me|strong="H6213"\w*, ‘\w She|strong="H1931"\w* \w is|strong="H1931"\w* \w my|strong="H6213"\w* sister’? \w She|strong="H1931"\w*, \w even|strong="H1571"\w* \w she|strong="H1931"\w* \w herself|strong="H1931"\w*, said, ‘\w He|strong="H1931"\w* \w is|strong="H1931"\w* \w my|strong="H6213"\w* brother.’ \w I|strong="H3808"\w* \w have|strong="H1571"\w* \w done|strong="H6213"\w* \w this|strong="H2063"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w integrity|strong="H8537"\w* \w of|strong="H3709"\w* \w my|strong="H6213"\w* \w heart|strong="H3824"\w* \w and|strong="H6213"\w* \w the|strong="H6213"\w* \w innocence|strong="H5356"\w* \w of|strong="H3709"\w* \w my|strong="H6213"\w* \w hands|strong="H3709"\w*.” +\p +\v 6 \w God|strong="H5414"\w* \w said|strong="H3651"\w* \w to|strong="H6213"\w* \w him|strong="H5414"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w dream|strong="H2472"\w*, “\w Yes|strong="H3588"\w*, \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w integrity|strong="H8537"\w* \w of|strong="H5921"\w* \w your|strong="H5414"\w* \w heart|strong="H3824"\w* \w you|strong="H3588"\w* \w have|strong="H3045"\w* \w done|strong="H6213"\w* \w this|strong="H2063"\w*, \w and|strong="H6213"\w* \w I|strong="H3588"\w* \w also|strong="H1571"\w* \w withheld|strong="H2820"\w* \w you|strong="H3588"\w* \w from|strong="H5921"\w* \w sinning|strong="H2398"\w* \w against|strong="H5921"\w* \w me|strong="H5414"\w*. \w Therefore|strong="H3651"\w* \w I|strong="H3588"\w* didn’t \w allow|strong="H5414"\w* \w you|strong="H3588"\w* \w to|strong="H6213"\w* \w touch|strong="H5060"\w* \w her|strong="H5414"\w*. +\v 7 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w restore|strong="H7725"\w* \w the|strong="H3605"\w* \w man|strong="H4191"\w*’s wife. \w For|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w prophet|strong="H5030"\w*, \w and|strong="H7725"\w* \w he|strong="H1931"\w* \w will|strong="H1931"\w* \w pray|strong="H6419"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*, \w and|strong="H7725"\w* \w you|strong="H3588"\w* \w will|strong="H1931"\w* \w live|strong="H2421"\w*. \w If|strong="H3588"\w* \w you|strong="H3588"\w* don’t \w restore|strong="H7725"\w* \w her|strong="H3605"\w*, \w know|strong="H3045"\w* \w for|strong="H3588"\w* \w sure|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H1931"\w* \w die|strong="H4191"\w*, \w you|strong="H3588"\w*, \w and|strong="H7725"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H5030"\w* \w yours|strong="H4191"\w*.” +\p +\v 8 Abimelech \w rose|strong="H7925"\w* \w early|strong="H7925"\w* \w in|strong="H1696"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w*, \w and|strong="H5650"\w* \w called|strong="H7121"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w*, \w and|strong="H5650"\w* \w told|strong="H1696"\w* \w all|strong="H3605"\w* \w these|strong="H1696"\w* \w things|strong="H1697"\w* \w in|strong="H1696"\w* \w their|strong="H3605"\w* ear. \w The|strong="H3605"\w* \w men|strong="H5650"\w* \w were|strong="H1697"\w* \w very|strong="H3966"\w* scared. +\v 9 \w Then|strong="H6213"\w* Abimelech \w called|strong="H7121"\w* Abraham, \w and|strong="H1419"\w* \w said|strong="H7121"\w* \w to|strong="H6213"\w* \w him|strong="H7121"\w*, “\w What|strong="H4100"\w* \w have|strong="H3588"\w* \w you|strong="H3588"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w us|strong="H5921"\w*? \w How|strong="H4100"\w* \w have|strong="H3588"\w* \w I|strong="H3588"\w* \w sinned|strong="H2398"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* \w brought|strong="H6213"\w* \w on|strong="H5921"\w* \w me|strong="H5978"\w* \w and|strong="H1419"\w* \w on|strong="H5921"\w* \w my|strong="H5921"\w* \w kingdom|strong="H4467"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w sin|strong="H2398"\w*? \w You|strong="H3588"\w* \w have|strong="H3588"\w* \w done|strong="H6213"\w* \w deeds|strong="H4639"\w* \w to|strong="H6213"\w* \w me|strong="H5978"\w* \w that|strong="H3588"\w* ought \w not|strong="H3808"\w* \w to|strong="H6213"\w* \w be|strong="H3808"\w* \w done|strong="H6213"\w*!” +\v 10 Abimelech \w said|strong="H1697"\w* \w to|strong="H6213"\w* Abraham, “\w What|strong="H4100"\w* \w did|strong="H6213"\w* \w you|strong="H3588"\w* \w see|strong="H7200"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H7200"\w* \w done|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*?” +\p +\v 11 Abraham \w said|strong="H1697"\w*, “\w Because|strong="H3588"\w* \w I|strong="H3588"\w* \w thought|strong="H1697"\w*, ‘\w Surely|strong="H3588"\w* \w the|strong="H5921"\w* \w fear|strong="H3374"\w* \w of|strong="H1697"\w* God \w is|strong="H2088"\w* \w not|strong="H2088"\w* \w in|strong="H5921"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*. \w They|strong="H3588"\w* \w will|strong="H1697"\w* \w kill|strong="H2026"\w* \w me|strong="H5921"\w* \w for|strong="H3588"\w* \w my|strong="H5921"\w* wife’s \w sake|strong="H5921"\w*.’ +\v 12 \w Besides|strong="H1571"\w*, \w she|strong="H1931"\w* \w is|strong="H1931"\w* \w indeed|strong="H1571"\w* \w my|strong="H1961"\w* sister, \w the|strong="H1961"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w my|strong="H1961"\w* father, \w but|strong="H3808"\w* \w not|strong="H3808"\w* \w the|strong="H1961"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w my|strong="H1961"\w* mother; \w and|strong="H1323"\w* \w she|strong="H1931"\w* \w became|strong="H1961"\w* \w my|strong="H1961"\w* wife. +\v 13 \w When|strong="H1961"\w* God \w caused|strong="H1961"\w* \w me|strong="H5978"\w* \w to|strong="H1961"\w* \w wander|strong="H8582"\w* \w from|strong="H1961"\w* \w my|strong="H3605"\w* father’s \w house|strong="H1004"\w*, \w I|strong="H2088"\w* said \w to|strong="H1961"\w* \w her|strong="H3605"\w*, ‘\w This|strong="H2088"\w* \w is|strong="H2088"\w* \w your|strong="H3605"\w* \w kindness|strong="H2617"\w* \w which|strong="H1931"\w* \w you|strong="H3605"\w* \w shall|strong="H1004"\w* \w show|strong="H6213"\w* \w to|strong="H1961"\w* \w me|strong="H5978"\w*. \w Everywhere|strong="H3605"\w* \w that|strong="H3605"\w* \w we|strong="H3068"\w* \w go|strong="H1961"\w*, say \w of|strong="H1004"\w* \w me|strong="H5978"\w*, “\w He|strong="H1931"\w* \w is|strong="H2088"\w* \w my|strong="H3605"\w* brother.”’” +\p +\v 14 Abimelech \w took|strong="H3947"\w* \w sheep|strong="H6629"\w* \w and|strong="H7725"\w* \w cattle|strong="H1241"\w*, \w male|strong="H5650"\w* \w servants|strong="H5650"\w* \w and|strong="H7725"\w* \w female|strong="H8198"\w* \w servants|strong="H5650"\w*, \w and|strong="H7725"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H7725"\w* \w Abraham|strong="H3947"\w*, \w and|strong="H7725"\w* \w restored|strong="H7725"\w* \w Sarah|strong="H8283"\w*, \w his|strong="H5414"\w* wife, \w to|strong="H7725"\w* \w him|strong="H5414"\w*. +\v 15 Abimelech said, “\w Behold|strong="H2009"\w*, \w my|strong="H6440"\w* \w land|strong="H6440"\w* \w is|strong="H2896"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*. \w Dwell|strong="H3427"\w* \w where|strong="H2009"\w* \w it|strong="H6440"\w* \w pleases|strong="H5869"\w* \w you|strong="H6440"\w*.” +\v 16 \w To|strong="H5414"\w* \w Sarah|strong="H8283"\w* \w he|strong="H1931"\w* said, “\w Behold|strong="H2009"\w*, \w I|strong="H5414"\w* \w have|strong="H5869"\w* \w given|strong="H5414"\w* \w your|strong="H3605"\w* brother \w a|strong="H3068"\w* thousand pieces \w of|strong="H5869"\w* \w silver|strong="H3701"\w*. \w Behold|strong="H2009"\w*, \w it|strong="H5414"\w* \w is|strong="H1931"\w* \w for|strong="H3605"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w covering|strong="H3682"\w* \w of|strong="H5869"\w* \w the|strong="H3605"\w* \w eyes|strong="H5869"\w* \w to|strong="H5414"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w are|strong="H5869"\w* \w with|strong="H3198"\w* \w you|strong="H5414"\w*. \w In|strong="H5414"\w* front \w of|strong="H5869"\w* \w all|strong="H3605"\w* \w you|strong="H5414"\w* \w are|strong="H5869"\w* vindicated.” +\p +\v 17 Abraham \w prayed|strong="H6419"\w* \w to|strong="H3205"\w* God. So God \w healed|strong="H7495"\w* Abimelech, \w his|strong="H3205"\w* wife, \w and|strong="H6419"\w* \w his|strong="H3205"\w* female servants, \w and|strong="H6419"\w* \w they|strong="H3205"\w* \w bore|strong="H3205"\w* \w children|strong="H3205"\w*. +\v 18 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w closed|strong="H6113"\w* \w up|strong="H6113"\w* tight \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w wombs|strong="H7358"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* Abimelech, \w because|strong="H3588"\w* \w of|strong="H1004"\w* \w Sarah|strong="H8283"\w*, Abraham’s wife. +\c 21 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w visited|strong="H6485"\w* \w Sarah|strong="H8283"\w* \w as|strong="H6213"\w* \w he|strong="H6213"\w* \w had|strong="H3068"\w* \w said|strong="H1696"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w did|strong="H6213"\w* \w to|strong="H1696"\w* \w Sarah|strong="H8283"\w* \w as|strong="H6213"\w* \w he|strong="H6213"\w* \w had|strong="H3068"\w* \w spoken|strong="H1696"\w*. +\v 2 \w Sarah|strong="H8283"\w* \w conceived|strong="H2029"\w*, \w and|strong="H1121"\w* \w bore|strong="H3205"\w* Abraham \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w in|strong="H1696"\w* \w his|strong="H8283"\w* \w old|strong="H1121"\w* \w age|strong="H1121"\w*, \w at|strong="H1121"\w* \w the|strong="H3205"\w* \w set|strong="H4150"\w* \w time|strong="H4150"\w* \w of|strong="H1121"\w* \w which|strong="H4150"\w* God \w had|strong="H3205"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H3205"\w*. +\v 3 Abraham \w called|strong="H7121"\w* \w his|strong="H7121"\w* \w son|strong="H1121"\w* \w who|strong="H1121"\w* \w was|strong="H8034"\w* \w born|strong="H3205"\w* \w to|strong="H3205"\w* \w him|strong="H3205"\w*, \w whom|strong="H7121"\w* \w Sarah|strong="H8283"\w* \w bore|strong="H3205"\w* \w to|strong="H3205"\w* \w him|strong="H3205"\w*, \w Isaac|strong="H3327"\w*.\f + \fr 21:3 \ft Isaac means “He laughs”.\f* +\v 4 Abraham \w circumcised|strong="H4135"\w* \w his|strong="H6680"\w* \w son|strong="H1121"\w*, \w Isaac|strong="H3327"\w*, \w when|strong="H3117"\w* \w he|strong="H3117"\w* \w was|strong="H3117"\w* \w eight|strong="H8083"\w* \w days|strong="H3117"\w* \w old|strong="H1121"\w*, \w as|strong="H3117"\w* God \w had|strong="H3327"\w* \w commanded|strong="H6680"\w* \w him|strong="H6680"\w*. +\v 5 Abraham \w was|strong="H3327"\w* \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w his|strong="H3327"\w* \w son|strong="H1121"\w*, \w Isaac|strong="H3327"\w*, \w was|strong="H3327"\w* \w born|strong="H3205"\w* \w to|strong="H3205"\w* \w him|strong="H3205"\w*. +\v 6 \w Sarah|strong="H8283"\w* \w said|strong="H8085"\w*, “God \w has|strong="H3605"\w* \w made|strong="H6213"\w* \w me|strong="H6213"\w* \w laugh|strong="H6711"\w*. \w Everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w hears|strong="H8085"\w* \w will|strong="H8085"\w* \w laugh|strong="H6711"\w* \w with|strong="H6213"\w* \w me|strong="H6213"\w*.” +\v 7 \w She|strong="H3588"\w* \w said|strong="H4448"\w*, “\w Who|strong="H4310"\w* \w would|strong="H4310"\w* \w have|strong="H1121"\w* \w said|strong="H4448"\w* \w to|strong="H3205"\w* Abraham \w that|strong="H3588"\w* \w Sarah|strong="H8283"\w* \w would|strong="H4310"\w* \w nurse|strong="H3243"\w* \w children|strong="H1121"\w*? \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1121"\w* \w borne|strong="H3205"\w* \w him|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w in|strong="H1121"\w* \w his|strong="H3588"\w* \w old|strong="H1121"\w* \w age|strong="H1121"\w*.” +\p +\v 8 \w The|strong="H6213"\w* \w child|strong="H3206"\w* \w grew|strong="H1431"\w* \w and|strong="H3117"\w* \w was|strong="H3117"\w* \w weaned|strong="H1580"\w*. Abraham \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w feast|strong="H4960"\w* \w on|strong="H3117"\w* \w the|strong="H6213"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w Isaac|strong="H3327"\w* \w was|strong="H3117"\w* \w weaned|strong="H1580"\w*. +\v 9 \w Sarah|strong="H8283"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hagar|strong="H1904"\w* \w the|strong="H7200"\w* \w Egyptian|strong="H4713"\w*, whom she \w had|strong="H3205"\w* \w borne|strong="H3205"\w* \w to|strong="H3205"\w* Abraham, \w mocking|strong="H6711"\w*. +\v 10 \w Therefore|strong="H3588"\w* \w she|strong="H3588"\w* said \w to|strong="H1121"\w* Abraham, “\w Cast|strong="H3423"\w* \w out|strong="H3423"\w* \w this|strong="H2063"\w* servant \w and|strong="H1121"\w* \w her|strong="H3423"\w* \w son|strong="H1121"\w*! \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w this|strong="H2063"\w* servant \w will|strong="H1121"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w heir|strong="H3423"\w* \w with|strong="H5973"\w* \w my|strong="H3588"\w* \w son|strong="H1121"\w*, \w Isaac|strong="H3327"\w*.” +\p +\v 11 \w The|strong="H5921"\w* \w thing|strong="H1697"\w* \w was|strong="H1697"\w* \w very|strong="H3966"\w* grievous \w in|strong="H5921"\w* Abraham’s \w sight|strong="H5869"\w* \w on|strong="H5921"\w* \w account|strong="H5921"\w* \w of|strong="H1121"\w* \w his|strong="H5921"\w* \w son|strong="H1121"\w*. +\v 12 God \w said|strong="H7121"\w* \w to|strong="H5921"\w* Abraham, “Don’t let \w it|strong="H7121"\w* \w be|strong="H5869"\w* grievous \w in|strong="H5921"\w* \w your|strong="H3605"\w* \w sight|strong="H5869"\w* \w because|strong="H3588"\w* \w of|strong="H6963"\w* \w the|strong="H3605"\w* \w boy|strong="H5288"\w*, \w and|strong="H6963"\w* \w because|strong="H3588"\w* \w of|strong="H6963"\w* \w your|strong="H3605"\w* \w servant|strong="H5288"\w*. \w In|strong="H5921"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w Sarah|strong="H8283"\w* says \w to|strong="H5921"\w* \w you|strong="H3588"\w*, \w listen|strong="H8085"\w* \w to|strong="H5921"\w* \w her|strong="H3605"\w* \w voice|strong="H6963"\w*. \w For|strong="H3588"\w* \w your|strong="H3605"\w* \w offspring|strong="H2233"\w* \w will|strong="H5869"\w* \w be|strong="H5869"\w* \w named|strong="H7121"\w* \w through|strong="H5921"\w* \w Isaac|strong="H3327"\w*. +\v 13 \w I|strong="H3588"\w* \w will|strong="H1471"\w* \w also|strong="H1571"\w* \w make|strong="H7760"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* servant, \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w your|strong="H7760"\w* \w child|strong="H1121"\w*.” +\v 14 \w Abraham|strong="H3947"\w* \w rose|strong="H7925"\w* \w up|strong="H5414"\w* \w early|strong="H7925"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w morning|strong="H1242"\w*, \w and|strong="H7971"\w* \w took|strong="H3947"\w* \w bread|strong="H3899"\w* \w and|strong="H7971"\w* \w a|strong="H3068"\w* container \w of|strong="H4325"\w* \w water|strong="H4325"\w*, \w and|strong="H7971"\w* \w gave|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3212"\w* \w Hagar|strong="H1904"\w*, \w putting|strong="H7760"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w her|strong="H5414"\w* \w shoulder|strong="H7926"\w*; \w and|strong="H7971"\w* \w gave|strong="H5414"\w* \w her|strong="H5414"\w* \w the|strong="H5921"\w* \w child|strong="H3206"\w*, \w and|strong="H7971"\w* \w sent|strong="H7971"\w* \w her|strong="H5414"\w* \w away|strong="H7971"\w*. \w She|strong="H5921"\w* \w departed|strong="H3212"\w*, \w and|strong="H7971"\w* \w wandered|strong="H8582"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w* \w of|strong="H4325"\w* Beersheba. +\v 15 \w The|strong="H4480"\w* \w water|strong="H4325"\w* \w in|strong="H3615"\w* \w the|strong="H4480"\w* container \w was|strong="H3206"\w* \w spent|strong="H3615"\w*, \w and|strong="H4325"\w* she \w put|strong="H3615"\w* \w the|strong="H4480"\w* \w child|strong="H3206"\w* \w under|strong="H8478"\w* \w one|strong="H4480"\w* \w of|strong="H4325"\w* \w the|strong="H4480"\w* \w shrubs|strong="H7880"\w*. +\v 16 \w She|strong="H3588"\w* \w went|strong="H3212"\w* \w and|strong="H3212"\w* \w sat|strong="H3427"\w* \w down|strong="H3427"\w* \w opposite|strong="H5048"\w* \w him|strong="H7200"\w*, \w a|strong="H3068"\w* \w good|strong="H7368"\w* \w way|strong="H3212"\w* \w off|strong="H7368"\w*, \w about|strong="H5048"\w* \w a|strong="H3068"\w* \w bow|strong="H7198"\w* shot \w away|strong="H5375"\w*. \w For|strong="H3588"\w* \w she|strong="H3588"\w* said, “Don’t \w let|strong="H3212"\w* \w me|strong="H7200"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w death|strong="H4194"\w* \w of|strong="H3427"\w* \w the|strong="H7200"\w* \w child|strong="H3206"\w*.” \w She|strong="H3588"\w* \w sat|strong="H3427"\w* \w opposite|strong="H5048"\w* \w him|strong="H7200"\w*, \w and|strong="H3212"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w her|strong="H5375"\w* \w voice|strong="H6963"\w*, \w and|strong="H3212"\w* \w wept|strong="H1058"\w*. +\v 17 \w God|strong="H8064"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w boy|strong="H5288"\w*. +\p \w The|strong="H8085"\w* \w angel|strong="H4397"\w* \w of|strong="H6963"\w* \w God|strong="H8064"\w* \w called|strong="H7121"\w* \w to|strong="H8085"\w* \w Hagar|strong="H1904"\w* \w out|strong="H4480"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w sky|strong="H8064"\w*, \w and|strong="H8064"\w* \w said|strong="H7121"\w* \w to|strong="H8085"\w* \w her|strong="H7121"\w*, “\w What|strong="H4100"\w* troubles \w you|strong="H3588"\w*, \w Hagar|strong="H1904"\w*? Don’t \w be|strong="H8064"\w* \w afraid|strong="H3372"\w*. \w For|strong="H3588"\w* \w God|strong="H8064"\w* \w has|strong="H4100"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w boy|strong="H5288"\w* \w where|strong="H8033"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w*. +\v 18 \w Get|strong="H6965"\w* \w up|strong="H6965"\w*, \w lift|strong="H5375"\w* \w up|strong="H6965"\w* \w the|strong="H3588"\w* \w boy|strong="H5288"\w*, \w and|strong="H6965"\w* \w hold|strong="H2388"\w* \w him|strong="H3027"\w* \w with|strong="H3027"\w* \w your|strong="H7760"\w* \w hand|strong="H3027"\w*. \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H1471"\w* \w make|strong="H7760"\w* \w him|strong="H3027"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w nation|strong="H1471"\w*.” +\p +\v 19 God \w opened|strong="H6491"\w* \w her|strong="H7200"\w* \w eyes|strong="H5869"\w*, \w and|strong="H3212"\w* \w she|strong="H8248"\w* \w saw|strong="H7200"\w* \w a|strong="H3068"\w* \w well|strong="H5869"\w* \w of|strong="H5869"\w* \w water|strong="H4325"\w*. \w She|strong="H8248"\w* \w went|strong="H3212"\w*, \w filled|strong="H4390"\w* \w the|strong="H7200"\w* container \w with|strong="H4390"\w* \w water|strong="H4325"\w*, \w and|strong="H3212"\w* \w gave|strong="H8248"\w* \w the|strong="H7200"\w* \w boy|strong="H5288"\w* \w a|strong="H3068"\w* \w drink|strong="H8248"\w*. +\p +\v 20 God \w was|strong="H1961"\w* \w with|strong="H3427"\w* \w the|strong="H1961"\w* \w boy|strong="H5288"\w*, \w and|strong="H5288"\w* \w he|strong="H4057"\w* \w grew|strong="H1431"\w*. \w He|strong="H4057"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H1961"\w* \w wilderness|strong="H4057"\w*, \w and|strong="H5288"\w* \w as|strong="H1961"\w* \w he|strong="H4057"\w* \w grew|strong="H1431"\w* \w up|strong="H1431"\w*, \w he|strong="H4057"\w* \w became|strong="H1961"\w* \w an|strong="H1961"\w* \w archer|strong="H7235"\w*. +\v 21 \w He|strong="H4057"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3947"\w* \w wilderness|strong="H4057"\w* \w of|strong="H3427"\w* \w Paran|strong="H6290"\w*. \w His|strong="H3947"\w* mother \w got|strong="H3947"\w* \w a|strong="H3068"\w* wife \w for|strong="H4714"\w* \w him|strong="H3947"\w* \w out|strong="H3947"\w* \w of|strong="H3427"\w* \w the|strong="H3947"\w* land \w of|strong="H3427"\w* \w Egypt|strong="H4714"\w*. +\p +\v 22 \w At|strong="H6213"\w* \w that|strong="H3605"\w* \w time|strong="H6256"\w*, Abimelech \w and|strong="H6213"\w* \w Phicol|strong="H6369"\w* \w the|strong="H3605"\w* \w captain|strong="H8269"\w* \w of|strong="H8269"\w* \w his|strong="H3605"\w* \w army|strong="H6635"\w* spoke \w to|strong="H1961"\w* Abraham, saying, “God \w is|strong="H1931"\w* \w with|strong="H5973"\w* \w you|strong="H3605"\w* \w in|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w do|strong="H6213"\w*. +\v 23 \w Now|strong="H6258"\w*, \w therefore|strong="H6258"\w*, \w swear|strong="H7650"\w* \w to|strong="H6213"\w* \w me|strong="H5978"\w* \w here|strong="H2008"\w* \w by|strong="H7650"\w* God \w that|strong="H6213"\w* \w you|strong="H6213"\w* \w will|strong="H6213"\w* \w not|strong="H6213"\w* \w deal|strong="H6213"\w* \w falsely|strong="H8266"\w* \w with|strong="H5973"\w* \w me|strong="H5978"\w*, \w nor|strong="H5209"\w* \w with|strong="H5973"\w* \w my|strong="H6213"\w* \w son|strong="H5209"\w*, \w nor|strong="H5209"\w* \w with|strong="H5973"\w* \w my|strong="H6213"\w* \w son|strong="H5209"\w*’s \w son|strong="H5209"\w*. \w But|strong="H6258"\w* according \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w kindness|strong="H2617"\w* \w that|strong="H6213"\w* \w I|strong="H6258"\w* \w have|strong="H6258"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w you|strong="H6213"\w*, \w you|strong="H6213"\w* \w shall|strong="H2617"\w* \w do|strong="H6213"\w* \w to|strong="H6213"\w* \w me|strong="H5978"\w*, \w and|strong="H2617"\w* \w to|strong="H6213"\w* \w the|strong="H6213"\w* land \w in|strong="H6213"\w* \w which|strong="H2617"\w* \w you|strong="H6213"\w* \w have|strong="H6258"\w* \w lived|strong="H1481"\w* \w as|strong="H6213"\w* \w a|strong="H3068"\w* foreigner.” +\p +\v 24 Abraham said, “\w I|strong="H7650"\w* will \w swear|strong="H7650"\w*.” +\v 25 Abraham \w complained|strong="H3198"\w* \w to|strong="H5921"\w* Abimelech \w because|strong="H5921"\w* \w of|strong="H5650"\w* \w a|strong="H3068"\w* \w water|strong="H4325"\w* well, \w which|strong="H4325"\w* Abimelech’s \w servants|strong="H5650"\w* \w had|strong="H4325"\w* violently \w taken|strong="H1497"\w* \w away|strong="H1497"\w*. +\v 26 Abimelech \w said|strong="H1697"\w*, “\w I|strong="H3117"\w* don’t \w know|strong="H3045"\w* \w who|strong="H4310"\w* \w has|strong="H4310"\w* \w done|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*. \w You|strong="H3117"\w* didn’t \w tell|strong="H5046"\w* \w me|strong="H5046"\w*, \w and|strong="H3117"\w* \w I|strong="H3117"\w* didn’t \w hear|strong="H8085"\w* \w of|strong="H3117"\w* \w it|strong="H6213"\w* \w until|strong="H1115"\w* \w today|strong="H3117"\w*.” +\p +\v 27 \w Abraham|strong="H3947"\w* \w took|strong="H3947"\w* \w sheep|strong="H6629"\w* \w and|strong="H6629"\w* \w cattle|strong="H1241"\w*, \w and|strong="H6629"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H5414"\w* Abimelech. Those \w two|strong="H8147"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w*. +\v 28 Abraham \w set|strong="H5324"\w* \w seven|strong="H7651"\w* \w ewe|strong="H3535"\w* \w lambs|strong="H3535"\w* \w of|strong="H6629"\w* \w the|strong="H5324"\w* \w flock|strong="H6629"\w* \w by|strong="H6629"\w* themselves. +\v 29 Abimelech said \w to|strong="H5324"\w* Abraham, “\w What|strong="H4100"\w* \w do|strong="H4100"\w* \w these|strong="H2007"\w* \w seven|strong="H7651"\w* \w ewe|strong="H3535"\w* \w lambs|strong="H3535"\w*, \w which|strong="H4100"\w* \w you|strong="H4100"\w* have \w set|strong="H5324"\w* \w by|strong="H5324"\w* themselves, mean?” +\p +\v 30 \w He|strong="H3588"\w* said, “\w You|strong="H3588"\w* \w shall|strong="H3027"\w* \w take|strong="H3947"\w* \w these|strong="H2063"\w* \w seven|strong="H7651"\w* \w ewe|strong="H3535"\w* \w lambs|strong="H3535"\w* \w from|strong="H3027"\w* \w my|strong="H3947"\w* \w hand|strong="H3027"\w*, \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w witness|strong="H5713"\w* \w to|strong="H1961"\w* \w me|strong="H3947"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w dug|strong="H2658"\w* \w this|strong="H2063"\w* well.” +\v 31 \w Therefore|strong="H3651"\w* \w he|strong="H1931"\w* \w called|strong="H7121"\w* \w that|strong="H3588"\w* \w place|strong="H4725"\w* Beersheba,\f + \fr 21:31 \ft Beersheba can mean “well of the oath” or “well of seven”.\f* \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w both|strong="H8147"\w* \w swore|strong="H7650"\w* \w an|strong="H7650"\w* \w oath|strong="H7650"\w* \w there|strong="H8033"\w*. +\v 32 \w So|strong="H6965"\w* \w they|strong="H1285"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w at|strong="H7725"\w* Beersheba. Abimelech \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w with|strong="H1285"\w* \w Phicol|strong="H6369"\w*, \w the|strong="H7725"\w* \w captain|strong="H8269"\w* \w of|strong="H8269"\w* \w his|strong="H7725"\w* \w army|strong="H6635"\w*, \w and|strong="H6965"\w* \w they|strong="H1285"\w* \w returned|strong="H7725"\w* \w into|strong="H7725"\w* \w the|strong="H7725"\w* land \w of|strong="H8269"\w* \w the|strong="H7725"\w* \w Philistines|strong="H6430"\w*. +\v 33 \w Abraham|strong="H5193"\w* \w planted|strong="H5193"\w* \w a|strong="H3068"\w* tamarisk tree \w in|strong="H3068"\w* Beersheba, \w and|strong="H3068"\w* \w there|strong="H8033"\w* \w he|strong="H8033"\w* \w called|strong="H7121"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w Everlasting|strong="H5769"\w* \w God|strong="H3068"\w*. +\v 34 Abraham \w lived|strong="H1481"\w* \w as|strong="H3117"\w* \w a|strong="H3068"\w* foreigner \w in|strong="H3117"\w* \w the|strong="H3117"\w* land \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w Philistines|strong="H6430"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w*. +\c 22 +\p +\v 1 \w After|strong="H1961"\w* these \w things|strong="H1697"\w*, God \w tested|strong="H5254"\w* Abraham, \w and|strong="H1697"\w* \w said|strong="H1697"\w* \w to|strong="H1961"\w* \w him|strong="H1697"\w*, “Abraham!” +\p \w He|strong="H1697"\w* \w said|strong="H1697"\w*, “\w Here|strong="H2009"\w* \w I|strong="H2009"\w* \w am|strong="H1961"\w*.” +\p +\v 2 \w He|strong="H8033"\w* said, “\w Now|strong="H4994"\w* \w take|strong="H3947"\w* \w your|strong="H3947"\w* \w son|strong="H1121"\w*, \w your|strong="H3947"\w* \w only|strong="H3173"\w* \w son|strong="H1121"\w*, \w Isaac|strong="H3327"\w*, whom \w you|strong="H5921"\w* love, \w and|strong="H1121"\w* \w go|strong="H3212"\w* \w into|strong="H5927"\w* \w the|strong="H5921"\w* land \w of|strong="H1121"\w* \w Moriah|strong="H4179"\w*. \w Offer|strong="H5927"\w* \w him|strong="H5921"\w* \w there|strong="H8033"\w* \w as|strong="H5927"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w on|strong="H5921"\w* \w one|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w* \w which|strong="H8033"\w* \w I|strong="H5921"\w* \w will|strong="H1121"\w* \w tell|strong="H4994"\w* \w you|strong="H5921"\w* \w of|strong="H1121"\w*.” +\p +\v 3 \w Abraham|strong="H3947"\w* \w rose|strong="H6965"\w* \w early|strong="H7925"\w* \w in|strong="H3212"\w* \w the|strong="H3947"\w* \w morning|strong="H1242"\w*, \w and|strong="H1121"\w* \w saddled|strong="H2280"\w* \w his|strong="H3947"\w* \w donkey|strong="H2543"\w*; \w and|strong="H1121"\w* \w took|strong="H3947"\w* \w two|strong="H8147"\w* \w of|strong="H1121"\w* \w his|strong="H3947"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w with|strong="H3212"\w* \w him|strong="H3947"\w*, \w and|strong="H1121"\w* \w Isaac|strong="H3327"\w* \w his|strong="H3947"\w* \w son|strong="H1121"\w*. \w He|strong="H8147"\w* \w split|strong="H1234"\w* \w the|strong="H3947"\w* \w wood|strong="H6086"\w* \w for|strong="H6086"\w* \w the|strong="H3947"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w and|strong="H1121"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w*, \w and|strong="H1121"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H3947"\w* \w place|strong="H4725"\w* \w of|strong="H1121"\w* \w which|strong="H6086"\w* God \w had|strong="H3327"\w* told \w him|strong="H3947"\w*. +\v 4 \w On|strong="H3117"\w* \w the|strong="H7200"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w* \w Abraham|strong="H5375"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w eyes|strong="H5869"\w*, \w and|strong="H3117"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w place|strong="H4725"\w* \w far|strong="H7350"\w* \w off|strong="H7350"\w*. +\v 5 Abraham said \w to|strong="H5704"\w* \w his|strong="H7725"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w*, “\w Stay|strong="H3427"\w* \w here|strong="H6311"\w* \w with|strong="H5973"\w* \w the|strong="H3541"\w* \w donkey|strong="H2543"\w*. \w The|strong="H3541"\w* \w boy|strong="H5288"\w* \w and|strong="H7725"\w* \w I|strong="H5704"\w* \w will|strong="H5288"\w* \w go|strong="H3212"\w* \w over|strong="H3427"\w* \w there|strong="H3427"\w*. \w We|strong="H5704"\w* \w will|strong="H5288"\w* \w worship|strong="H7812"\w*, \w and|strong="H7725"\w* \w come|strong="H3212"\w* \w back|strong="H7725"\w* \w to|strong="H5704"\w* \w you|strong="H5704"\w*.” +\v 6 \w Abraham|strong="H3947"\w* \w took|strong="H3947"\w* \w the|strong="H5921"\w* \w wood|strong="H6086"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w and|strong="H1121"\w* \w laid|strong="H7760"\w* \w it|strong="H7760"\w* \w on|strong="H5921"\w* \w Isaac|strong="H3327"\w* \w his|strong="H7760"\w* \w son|strong="H1121"\w*. \w He|strong="H8147"\w* \w took|strong="H3947"\w* \w in|strong="H5921"\w* \w his|strong="H7760"\w* \w hand|strong="H3027"\w* \w the|strong="H5921"\w* fire \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w knife|strong="H3979"\w*. \w They|strong="H5921"\w* \w both|strong="H8147"\w* \w went|strong="H3212"\w* \w together|strong="H3162"\w*. +\v 7 \w Isaac|strong="H3327"\w* spoke \w to|strong="H1121"\w* Abraham \w his|strong="H3327"\w* \w father|strong="H1121"\w*, \w and|strong="H1121"\w* said, “My \w father|strong="H1121"\w*?” +\p \w He|strong="H2009"\w* said, “\w Here|strong="H2009"\w* \w I|strong="H2009"\w* am, my \w son|strong="H1121"\w*.” +\p \w He|strong="H2009"\w* said, “\w Here|strong="H2009"\w* \w is|strong="H2009"\w* \w the|strong="H2009"\w* fire \w and|strong="H1121"\w* \w the|strong="H2009"\w* \w wood|strong="H6086"\w*, \w but|strong="H2009"\w* \w where|strong="H2009"\w* \w is|strong="H2009"\w* \w the|strong="H2009"\w* \w lamb|strong="H7716"\w* \w for|strong="H6086"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*?” +\p +\v 8 Abraham said, “God \w will|strong="H1121"\w* \w provide|strong="H7200"\w* himself \w the|strong="H7200"\w* \w lamb|strong="H7716"\w* \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w my|strong="H7200"\w* \w son|strong="H1121"\w*.” \w So|strong="H7200"\w* \w they|strong="H5930"\w* \w both|strong="H8147"\w* \w went|strong="H3212"\w* \w together|strong="H3162"\w*. +\v 9 \w They|strong="H8033"\w* came \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w which|strong="H8033"\w* God \w had|strong="H3327"\w* \w told|strong="H7760"\w* \w him|strong="H5921"\w* \w of|strong="H1121"\w*. Abraham \w built|strong="H1129"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w there|strong="H8033"\w*, \w and|strong="H1121"\w* \w laid|strong="H7760"\w* \w the|strong="H5921"\w* \w wood|strong="H6086"\w* \w in|strong="H5921"\w* \w order|strong="H6186"\w*, \w bound|strong="H6123"\w* \w Isaac|strong="H3327"\w* \w his|strong="H7760"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w laid|strong="H7760"\w* \w him|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*, \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wood|strong="H6086"\w*. +\v 10 \w Abraham|strong="H3947"\w* \w stretched|strong="H7971"\w* \w out|strong="H7971"\w* \w his|strong="H7971"\w* \w hand|strong="H3027"\w*, \w and|strong="H1121"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w knife|strong="H3979"\w* \w to|strong="H7971"\w* \w kill|strong="H7819"\w* \w his|strong="H7971"\w* \w son|strong="H1121"\w*. +\p +\v 11 \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w called|strong="H7121"\w* \w to|strong="H3068"\w* \w him|strong="H7121"\w* \w out|strong="H4480"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w sky|strong="H8064"\w*, \w and|strong="H3068"\w* \w said|strong="H7121"\w*, “Abraham, Abraham!” +\p \w He|strong="H3068"\w* \w said|strong="H7121"\w*, “\w Here|strong="H2009"\w* \w I|strong="H2009"\w* \w am|strong="H3068"\w*.” +\p +\v 12 \w He|strong="H3588"\w* said, “Don’t \w lay|strong="H7971"\w* \w your|strong="H3045"\w* \w hand|strong="H3027"\w* \w on|strong="H3027"\w* \w the|strong="H3588"\w* \w boy|strong="H5288"\w* \w or|strong="H3808"\w* \w do|strong="H6213"\w* \w anything|strong="H3972"\w* \w to|strong="H7971"\w* \w him|strong="H7971"\w*. \w For|strong="H3588"\w* \w now|strong="H6258"\w* \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w fear|strong="H3373"\w* \w God|strong="H3808"\w*, \w since|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3045"\w* \w not|strong="H3808"\w* \w withheld|strong="H2820"\w* \w your|strong="H3045"\w* \w son|strong="H1121"\w*, \w your|strong="H3045"\w* \w only|strong="H3173"\w* \w son|strong="H1121"\w*, \w from|strong="H4480"\w* \w me|strong="H7971"\w*.” +\p +\v 13 \w Abraham|strong="H3947"\w* \w lifted|strong="H5375"\w* \w up|strong="H5927"\w* \w his|strong="H5375"\w* \w eyes|strong="H5869"\w*, \w and|strong="H1121"\w* \w looked|strong="H7200"\w*, \w and|strong="H1121"\w* \w saw|strong="H7200"\w* \w that|strong="H7200"\w* behind \w him|strong="H7200"\w* \w was|strong="H1121"\w* \w a|strong="H3068"\w* ram \w caught|strong="H3947"\w* \w in|strong="H3212"\w* \w the|strong="H7200"\w* \w thicket|strong="H5442"\w* \w by|strong="H5927"\w* \w his|strong="H5375"\w* \w horns|strong="H7161"\w*. \w Abraham|strong="H3947"\w* \w went|strong="H3212"\w* \w and|strong="H1121"\w* \w took|strong="H3947"\w* \w the|strong="H7200"\w* ram, \w and|strong="H1121"\w* \w offered|strong="H5927"\w* \w him|strong="H7200"\w* \w up|strong="H5927"\w* \w for|strong="H8478"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w instead|strong="H8478"\w* \w of|strong="H1121"\w* \w his|strong="H5375"\w* \w son|strong="H1121"\w*. +\v 14 Abraham \w called|strong="H7121"\w* \w the|strong="H7200"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w that|strong="H7200"\w* \w place|strong="H4725"\w* “\w Yahweh|strong="H3068"\w* \w Will|strong="H3068"\w* \w Provide|strong="H7200"\w*”.\f + \fr 22:14 \ft or, Yahweh-Jireh, or, Yahweh-Seeing\f* \w As|strong="H3117"\w* \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w said|strong="H7121"\w* \w to|strong="H3068"\w* \w this|strong="H1931"\w* \w day|strong="H3117"\w*, “\w On|strong="H3117"\w* \w Yahweh|strong="H3068"\w*’s \w mountain|strong="H2022"\w*, \w it|strong="H1931"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w provided|strong="H7200"\w*.” +\p +\v 15 \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w called|strong="H7121"\w* \w to|strong="H3068"\w* Abraham \w a|strong="H3068"\w* \w second|strong="H8145"\w* \w time|strong="H8145"\w* \w out|strong="H4480"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w sky|strong="H8064"\w*, +\v 16 \w and|strong="H1121"\w* \w said|strong="H1697"\w*, “‘\w I|strong="H3588"\w* \w have|strong="H3068"\w* \w sworn|strong="H7650"\w* \w by|strong="H7650"\w* myself,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, ‘\w because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*, \w and|strong="H1121"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w withheld|strong="H2820"\w* \w your|strong="H3068"\w* \w son|strong="H1121"\w*, \w your|strong="H3068"\w* \w only|strong="H3173"\w* \w son|strong="H1121"\w*, +\v 17 \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H8064"\w* \w bless|strong="H1288"\w* \w you|strong="H3588"\w* \w greatly|strong="H7235"\w*, \w and|strong="H8064"\w* \w I|strong="H3588"\w* \w will|strong="H8064"\w* \w multiply|strong="H7235"\w* \w your|strong="H5921"\w* \w offspring|strong="H2233"\w* \w greatly|strong="H7235"\w* \w like|strong="H5921"\w* \w the|strong="H5921"\w* \w stars|strong="H3556"\w* \w of|strong="H8179"\w* \w the|strong="H5921"\w* \w heavens|strong="H8064"\w*, \w and|strong="H8064"\w* \w like|strong="H5921"\w* \w the|strong="H5921"\w* \w sand|strong="H2344"\w* \w which|strong="H2344"\w* \w is|strong="H1288"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w seashore|strong="H3220"\w*. \w Your|strong="H5921"\w* \w offspring|strong="H2233"\w* \w will|strong="H8064"\w* \w possess|strong="H3423"\w* \w the|strong="H5921"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* \w his|strong="H5921"\w* enemies. +\v 18 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w of|strong="H6963"\w* \w the|strong="H3605"\w* earth \w will|strong="H1471"\w* \w be|strong="H1471"\w* \w blessed|strong="H1288"\w* \w by|strong="H3605"\w* \w your|strong="H3605"\w* \w offspring|strong="H2233"\w*, \w because|strong="H6118"\w* \w you|strong="H3605"\w* \w have|strong="H1471"\w* \w obeyed|strong="H8085"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*.’” +\p +\v 19 \w So|strong="H6965"\w* Abraham \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w*, \w and|strong="H6965"\w* \w they|strong="H3162"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w together|strong="H3162"\w* \w to|strong="H7725"\w* Beersheba. Abraham \w lived|strong="H3427"\w* \w at|strong="H3427"\w* Beersheba. +\p +\v 20 \w After|strong="H1961"\w* \w these|strong="H1931"\w* \w things|strong="H1697"\w*, Abraham \w was|strong="H1961"\w* \w told|strong="H5046"\w*, “\w Behold|strong="H2009"\w*, \w Milcah|strong="H4435"\w*, \w she|strong="H1931"\w* \w also|strong="H1571"\w* \w has|strong="H1961"\w* \w borne|strong="H3205"\w* \w children|strong="H1121"\w* \w to|strong="H1961"\w* \w your|strong="H1961"\w* brother \w Nahor|strong="H5152"\w*: +\v 21 \w Uz|strong="H5780"\w* \w his|strong="H5780"\w* \w firstborn|strong="H1060"\w*, Buz \w his|strong="H5780"\w* brother, \w Kemuel|strong="H7055"\w* \w the|strong="H7055"\w* father \w of|strong="H1060"\w* Aram, +\v 22 \w Chesed|strong="H3777"\w*, \w Hazo|strong="H2375"\w*, \w Pildash|strong="H6394"\w*, \w Jidlaph|strong="H3044"\w*, \w and|strong="H2375"\w* \w Bethuel|strong="H1328"\w*.” +\v 23 \w Bethuel|strong="H1328"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Rebekah|strong="H7259"\w*. These \w eight|strong="H8083"\w* \w Milcah|strong="H4435"\w* \w bore|strong="H3205"\w* \w to|strong="H3205"\w* \w Nahor|strong="H5152"\w*, Abraham’s brother. +\v 24 \w His|strong="H1931"\w* \w concubine|strong="H6370"\w*, \w whose|strong="H8034"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Reumah|strong="H7208"\w*, \w also|strong="H1571"\w* \w bore|strong="H3205"\w* \w Tebah|strong="H2875"\w*, \w Gaham|strong="H1514"\w*, \w Tahash|strong="H8477"\w*, \w and|strong="H8034"\w* \w Maacah|strong="H4601"\w*. +\c 23 +\p +\v 1 \w Sarah|strong="H8283"\w* \w lived|strong="H2416"\w* \w one|strong="H2416"\w* \w hundred|strong="H3967"\w* \w twenty-seven|strong="H6242"\w* \w years|strong="H8141"\w*. \w This|strong="H2416"\w* \w was|strong="H1961"\w* \w the|strong="H1961"\w* \w length|strong="H8141"\w* \w of|strong="H8141"\w* \w Sarah|strong="H8283"\w*’s \w life|strong="H2416"\w*. +\v 2 \w Sarah|strong="H8283"\w* \w died|strong="H4191"\w* \w in|strong="H4191"\w* Kiriath Arba (\w also|strong="H1931"\w* called \w Hebron|strong="H2275"\w*), \w in|strong="H4191"\w* \w the|strong="H4191"\w* land \w of|strong="H4191"\w* \w Canaan|strong="H3667"\w*. Abraham came \w to|strong="H4191"\w* \w mourn|strong="H5594"\w* \w for|strong="H4191"\w* \w Sarah|strong="H8283"\w*, \w and|strong="H4191"\w* \w to|strong="H4191"\w* \w weep|strong="H1058"\w* \w for|strong="H4191"\w* \w her|strong="H1058"\w*. +\v 3 Abraham \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w his|strong="H6440"\w* \w dead|strong="H4191"\w* \w and|strong="H1121"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Heth|strong="H2845"\w*, \w saying|strong="H1696"\w*, +\v 4 “\w I|strong="H5414"\w* am \w a|strong="H3068"\w* \w stranger|strong="H1616"\w* \w and|strong="H6440"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1616"\w* living \w with|strong="H5973"\w* \w you|strong="H5414"\w*. \w Give|strong="H5414"\w* \w me|strong="H5414"\w* \w a|strong="H3068"\w* possession \w of|strong="H6440"\w* \w a|strong="H3068"\w* burying-place \w with|strong="H5973"\w* \w you|strong="H5414"\w*, \w that|strong="H1616"\w* \w I|strong="H5414"\w* \w may|strong="H5414"\w* \w bury|strong="H6912"\w* \w my|strong="H5414"\w* \w dead|strong="H4191"\w* \w out|strong="H5414"\w* \w of|strong="H6440"\w* \w my|strong="H5414"\w* \w sight|strong="H6440"\w*.” +\p +\v 5 \w The|strong="H6030"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Heth|strong="H2845"\w* \w answered|strong="H6030"\w* Abraham, saying \w to|strong="H1121"\w* \w him|strong="H6030"\w*, +\v 6 “\w Hear|strong="H8085"\w* \w us|strong="H8085"\w*, \w my|strong="H8085"\w* lord. \w You|strong="H3808"\w* \w are|strong="H6913"\w* \w a|strong="H3068"\w* \w prince|strong="H5387"\w* \w of|strong="H4480"\w* \w God|strong="H3808"\w* \w among|strong="H8432"\w* \w us|strong="H8085"\w*. \w Bury|strong="H6912"\w* \w your|strong="H8085"\w* \w dead|strong="H4191"\w* \w in|strong="H4191"\w* \w the|strong="H8085"\w* best \w of|strong="H4480"\w* \w our|strong="H8085"\w* \w tombs|strong="H6913"\w*. \w None|strong="H3808"\w* \w of|strong="H4480"\w* \w us|strong="H8085"\w* \w will|strong="H3808"\w* \w withhold|strong="H3607"\w* \w from|strong="H4480"\w* \w you|strong="H3808"\w* \w his|strong="H8085"\w* \w tomb|strong="H6913"\w*. \w Bury|strong="H6912"\w* \w your|strong="H8085"\w* \w dead|strong="H4191"\w*.” +\p +\v 7 Abraham \w rose|strong="H6965"\w* \w up|strong="H6965"\w*, \w and|strong="H1121"\w* \w bowed|strong="H7812"\w* \w himself|strong="H7812"\w* \w to|strong="H1121"\w* \w the|strong="H6965"\w* \w people|strong="H5971"\w* \w of|strong="H1121"\w* \w the|strong="H6965"\w* land, \w to|strong="H1121"\w* \w the|strong="H6965"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Heth|strong="H2845"\w*. +\v 8 \w He|strong="H1696"\w* \w talked|strong="H1696"\w* \w with|strong="H1696"\w* \w them|strong="H6440"\w*, \w saying|strong="H1696"\w*, “\w If|strong="H3426"\w* \w you|strong="H6440"\w* \w agree|strong="H8085"\w* \w that|strong="H8085"\w* \w I|strong="H5315"\w* should \w bury|strong="H6912"\w* \w my|strong="H8085"\w* \w dead|strong="H4191"\w* \w out|strong="H6440"\w* \w of|strong="H1121"\w* \w my|strong="H8085"\w* \w sight|strong="H6440"\w*, \w hear|strong="H8085"\w* \w me|strong="H6440"\w*, \w and|strong="H1121"\w* \w entreat|strong="H6293"\w* \w for|strong="H6440"\w* \w me|strong="H6440"\w* \w to|strong="H1696"\w* \w Ephron|strong="H6085"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zohar|strong="H6714"\w*, +\v 9 \w that|strong="H5414"\w* \w he|strong="H5414"\w* \w may|strong="H5414"\w* \w sell|strong="H5414"\w* \w me|strong="H5414"\w* \w the|strong="H5414"\w* \w cave|strong="H4631"\w* \w of|strong="H4392"\w* \w Machpelah|strong="H4375"\w*, \w which|strong="H7704"\w* \w he|strong="H5414"\w* \w has|strong="H5414"\w*, \w which|strong="H7704"\w* \w is|strong="H3701"\w* \w in|strong="H8432"\w* \w the|strong="H5414"\w* \w end|strong="H7097"\w* \w of|strong="H4392"\w* \w his|strong="H5414"\w* \w field|strong="H7704"\w*. \w For|strong="H3701"\w* \w the|strong="H5414"\w* \w full|strong="H4392"\w* \w price|strong="H3701"\w* \w let|strong="H5414"\w* \w him|strong="H5414"\w* \w sell|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H5414"\w* \w me|strong="H5414"\w* \w among|strong="H8432"\w* \w you|strong="H5414"\w* \w as|strong="H5414"\w* \w a|strong="H3068"\w* possession \w for|strong="H3701"\w* \w a|strong="H3068"\w* \w burial|strong="H6913"\w* \w place|strong="H5414"\w*.” +\p +\v 10 Now \w Ephron|strong="H6085"\w* \w was|strong="H5892"\w* \w sitting|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Heth|strong="H2845"\w*. \w Ephron|strong="H6085"\w* \w the|strong="H3605"\w* \w Hittite|strong="H2850"\w* \w answered|strong="H6030"\w* Abraham \w in|strong="H3427"\w* \w the|strong="H3605"\w* hearing \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Heth|strong="H2845"\w*, even \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w went|strong="H5892"\w* \w in|strong="H3427"\w* \w at|strong="H3427"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w city|strong="H5892"\w*, saying, +\v 11 “\w No|strong="H3808"\w*, \w my|strong="H8085"\w* lord, \w hear|strong="H8085"\w* \w me|strong="H5414"\w*. \w I|strong="H5414"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w the|strong="H8085"\w* \w field|strong="H7704"\w*, \w and|strong="H1121"\w* \w I|strong="H5414"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w the|strong="H8085"\w* \w cave|strong="H4631"\w* \w that|strong="H5971"\w* \w is|strong="H1121"\w* \w in|strong="H4191"\w* \w it|strong="H5414"\w*. \w In|strong="H4191"\w* \w the|strong="H8085"\w* \w presence|strong="H5869"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w my|strong="H8085"\w* \w people|strong="H5971"\w* \w I|strong="H5414"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H4191"\w* \w you|strong="H5414"\w*. \w Bury|strong="H6912"\w* \w your|strong="H5414"\w* \w dead|strong="H4191"\w*.” +\p +\v 12 Abraham \w bowed|strong="H7812"\w* \w himself|strong="H7812"\w* \w down|strong="H7812"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*. +\v 13 \w He|strong="H8033"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Ephron|strong="H6085"\w* \w in|strong="H4191"\w* \w the|strong="H8085"\w* audience \w of|strong="H7704"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w* \w of|strong="H7704"\w* \w the|strong="H8085"\w* \w land|strong="H7704"\w*, \w saying|strong="H1696"\w*, “\w But|strong="H1696"\w* \w if|strong="H3863"\w* \w you|strong="H5414"\w* \w will|strong="H5971"\w*, \w please|strong="H8085"\w* \w hear|strong="H8085"\w* \w me|strong="H5414"\w*. \w I|strong="H5414"\w* \w will|strong="H5971"\w* \w give|strong="H5414"\w* \w the|strong="H8085"\w* \w price|strong="H3701"\w* \w of|strong="H7704"\w* \w the|strong="H8085"\w* \w field|strong="H7704"\w*. \w Take|strong="H3947"\w* \w it|strong="H5414"\w* \w from|strong="H4480"\w* \w me|strong="H5414"\w*, \w and|strong="H3701"\w* \w I|strong="H5414"\w* \w will|strong="H5971"\w* \w bury|strong="H6912"\w* \w my|strong="H8085"\w* \w dead|strong="H4191"\w* \w there|strong="H8033"\w*.” +\p +\v 14 \w Ephron|strong="H6085"\w* \w answered|strong="H6030"\w* Abraham, saying \w to|strong="H6030"\w* \w him|strong="H6030"\w*, +\v 15 “\w My|strong="H8085"\w* lord, \w listen|strong="H8085"\w* \w to|strong="H4191"\w* \w me|strong="H4191"\w*. \w What|strong="H4100"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* piece \w of|strong="H8255"\w* land worth four \w hundred|strong="H3967"\w* \w shekels|strong="H8255"\w* \w of|strong="H8255"\w* \w silver|strong="H3701"\w*\f + \fr 23:15 \ft A shekel is about 10 grams, so 400 shekels would be about 4 kg. or 8.8 pounds.\f* between \w me|strong="H4191"\w* \w and|strong="H3967"\w* \w you|strong="H4100"\w*? Therefore \w bury|strong="H6912"\w* \w your|strong="H8085"\w* \w dead|strong="H4191"\w*.” +\p +\v 16 Abraham \w listened|strong="H8085"\w* \w to|strong="H1696"\w* \w Ephron|strong="H6085"\w*. Abraham \w weighed|strong="H8254"\w* \w to|strong="H1696"\w* \w Ephron|strong="H6085"\w* \w the|strong="H8085"\w* \w silver|strong="H3701"\w* \w which|strong="H8085"\w* \w he|strong="H1696"\w* \w had|strong="H1121"\w* \w named|strong="H1696"\w* \w in|strong="H8085"\w* \w the|strong="H8085"\w* \w hearing|strong="H8085"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Heth|strong="H2845"\w*, four \w hundred|strong="H3967"\w* \w shekels|strong="H8255"\w* \w of|strong="H1121"\w* \w silver|strong="H3701"\w*, \w according|strong="H3701"\w* \w to|strong="H1696"\w* \w the|strong="H8085"\w* \w current|strong="H5674"\w* \w merchants|strong="H5503"\w*’ \w standard|strong="H5674"\w*. +\p +\v 17 \w So|strong="H6965"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w of|strong="H1366"\w* \w Ephron|strong="H6085"\w*, \w which|strong="H6086"\w* \w was|strong="H1366"\w* \w in|strong="H6440"\w* \w Machpelah|strong="H4375"\w*, \w which|strong="H6086"\w* \w was|strong="H1366"\w* \w before|strong="H6440"\w* \w Mamre|strong="H4471"\w*, \w the|strong="H3605"\w* \w field|strong="H7704"\w*, \w the|strong="H3605"\w* \w cave|strong="H4631"\w* \w which|strong="H6086"\w* \w was|strong="H1366"\w* \w in|strong="H6440"\w* \w it|strong="H5439"\w*, \w and|strong="H6965"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w trees|strong="H6086"\w* \w that|strong="H3605"\w* \w were|strong="H5439"\w* \w in|strong="H6440"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*, \w that|strong="H3605"\w* \w were|strong="H5439"\w* \w in|strong="H6440"\w* \w all|strong="H3605"\w* \w of|strong="H1366"\w* \w its|strong="H3605"\w* \w borders|strong="H1366"\w*, \w were|strong="H5439"\w* \w deeded|strong="H6965"\w* +\v 18 \w to|strong="H1121"\w* Abraham \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w possession|strong="H4736"\w* \w in|strong="H5892"\w* \w the|strong="H3605"\w* \w presence|strong="H5869"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Heth|strong="H2845"\w*, \w before|strong="H5869"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w went|strong="H5892"\w* \w in|strong="H5892"\w* \w at|strong="H5892"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w city|strong="H5892"\w*. +\v 19 \w After|strong="H5921"\w* \w this|strong="H3651"\w*, Abraham \w buried|strong="H6912"\w* \w Sarah|strong="H8283"\w* \w his|strong="H6440"\w* wife \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w cave|strong="H4631"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w field|strong="H7704"\w* \w of|strong="H6440"\w* \w Machpelah|strong="H4375"\w* \w before|strong="H6440"\w* \w Mamre|strong="H4471"\w* (\w that|strong="H1931"\w* \w is|strong="H1931"\w*, \w Hebron|strong="H2275"\w*), \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w land|strong="H7704"\w* \w of|strong="H6440"\w* \w Canaan|strong="H3667"\w*. +\v 20 \w The|strong="H6965"\w* \w field|strong="H7704"\w*, \w and|strong="H1121"\w* \w the|strong="H6965"\w* \w cave|strong="H4631"\w* \w that|strong="H1121"\w* \w is|strong="H1121"\w* \w in|strong="H1121"\w* \w it|strong="H6965"\w*, \w were|strong="H1121"\w* \w deeded|strong="H6965"\w* \w to|strong="H1121"\w* Abraham \w by|strong="H6965"\w* \w the|strong="H6965"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Heth|strong="H2845"\w* \w as|strong="H1121"\w* \w a|strong="H3068"\w* possession \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w burial|strong="H6913"\w* \w place|strong="H6913"\w*. +\c 24 +\p +\v 1 Abraham \w was|strong="H3068"\w* \w old|strong="H2204"\w*, \w and|strong="H3068"\w* well advanced \w in|strong="H3068"\w* \w age|strong="H3117"\w*. \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w blessed|strong="H1288"\w* Abraham \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w things|strong="H3605"\w*. +\v 2 Abraham said \w to|strong="H3027"\w* \w his|strong="H3605"\w* \w servant|strong="H5650"\w*, \w the|strong="H3605"\w* \w elder|strong="H2205"\w* \w of|strong="H1004"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*, \w who|strong="H3605"\w* \w ruled|strong="H4910"\w* \w over|strong="H3027"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w had|strong="H3027"\w*, “\w Please|strong="H4994"\w* \w put|strong="H7760"\w* \w your|strong="H3605"\w* \w hand|strong="H3027"\w* \w under|strong="H8478"\w* \w my|strong="H3605"\w* \w thigh|strong="H3409"\w*. +\v 3 \w I|strong="H3808"\w* \w will|strong="H3068"\w* \w make|strong="H3427"\w* \w you|strong="H3947"\w* \w swear|strong="H7650"\w* \w by|strong="H7650"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3947"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w heaven|strong="H8064"\w* \w and|strong="H1121"\w* \w the|strong="H3947"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w earth|strong="H8064"\w*, \w that|strong="H3068"\w* \w you|strong="H3947"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* wife \w for|strong="H3068"\w* \w my|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w daughters|strong="H1323"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w Canaanites|strong="H3669"\w*, \w among|strong="H7130"\w* whom \w I|strong="H3808"\w* \w live|strong="H3427"\w*. +\v 4 \w But|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H1121"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w my|strong="H3947"\w* country, \w and|strong="H1121"\w* \w to|strong="H3212"\w* \w my|strong="H3947"\w* \w relatives|strong="H4138"\w*, \w and|strong="H1121"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* wife \w for|strong="H3588"\w* \w my|strong="H3947"\w* \w son|strong="H1121"\w* \w Isaac|strong="H3327"\w*.” +\p +\v 5 \w The|strong="H7725"\w* \w servant|strong="H5650"\w* \w said|strong="H3318"\w* \w to|strong="H7725"\w* \w him|strong="H7725"\w*, “\w What|strong="H2063"\w* \w if|strong="H1121"\w* \w the|strong="H7725"\w* woman isn’t willing \w to|strong="H7725"\w* \w follow|strong="H3212"\w* \w me|strong="H7725"\w* \w to|strong="H7725"\w* \w this|strong="H2063"\w* land? \w Must|strong="H1121"\w* \w I|strong="H5650"\w* \w bring|strong="H3318"\w* \w your|strong="H7725"\w* \w son|strong="H1121"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H7725"\w* land \w you|strong="H7725"\w* \w came|strong="H3318"\w* \w from|strong="H7725"\w*?” +\p +\v 6 Abraham said \w to|strong="H7725"\w* \w him|strong="H7725"\w*, “\w Beware|strong="H8104"\w* \w that|strong="H1121"\w* \w you|strong="H7725"\w* don’t \w bring|strong="H7725"\w* \w my|strong="H8104"\w* \w son|strong="H1121"\w* \w there|strong="H8033"\w* \w again|strong="H7725"\w*. +\v 7 \w Yahweh|strong="H3068"\w*, \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w heaven|strong="H8064"\w*—\w who|strong="H1931"\w* \w took|strong="H3947"\w* \w me|strong="H5414"\w* \w from|strong="H6440"\w* \w my|strong="H5414"\w* \w father|strong="H1121"\w*’s \w house|strong="H1004"\w*, \w and|strong="H1121"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H1121"\w* \w my|strong="H5414"\w* \w birth|strong="H4138"\w*, \w who|strong="H1931"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H5414"\w*, \w and|strong="H1121"\w* \w who|strong="H1931"\w* \w swore|strong="H7650"\w* \w to|strong="H1696"\w* \w me|strong="H5414"\w*, \w saying|strong="H1696"\w*, ‘\w I|strong="H5414"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w this|strong="H2063"\w* \w land|strong="H6440"\w* \w to|strong="H1696"\w* \w your|strong="H3068"\w* \w offspring|strong="H2233"\w*—\w he|strong="H1931"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w his|strong="H5414"\w* \w angel|strong="H4397"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w*, \w and|strong="H1121"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w wife|strong="H1696"\w* \w for|strong="H6440"\w* \w my|strong="H5414"\w* \w son|strong="H1121"\w* \w from|strong="H6440"\w* \w there|strong="H8033"\w*. +\v 8 \w If|strong="H1121"\w* \w the|strong="H7725"\w* woman isn’t willing \w to|strong="H7725"\w* \w follow|strong="H3212"\w* \w you|strong="H7725"\w*, \w then|strong="H7725"\w* \w you|strong="H7725"\w* \w shall|strong="H1121"\w* \w be|strong="H3808"\w* \w clear|strong="H5352"\w* \w from|strong="H7725"\w* \w this|strong="H2063"\w* \w oath|strong="H7621"\w* \w to|strong="H7725"\w* \w me|strong="H7725"\w*. \w Only|strong="H7535"\w* \w you|strong="H7725"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w bring|strong="H7725"\w* \w my|strong="H7725"\w* \w son|strong="H1121"\w* \w there|strong="H8033"\w* \w again|strong="H7725"\w*.” +\p +\v 9 \w The|strong="H5921"\w* \w servant|strong="H5650"\w* \w put|strong="H7760"\w* \w his|strong="H7760"\w* \w hand|strong="H3027"\w* \w under|strong="H8478"\w* \w the|strong="H5921"\w* \w thigh|strong="H3409"\w* \w of|strong="H3027"\w* Abraham \w his|strong="H7760"\w* master, \w and|strong="H3027"\w* \w swore|strong="H7650"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w* \w concerning|strong="H5921"\w* \w this|strong="H2088"\w* \w matter|strong="H1697"\w*. +\v 10 \w The|strong="H3605"\w* \w servant|strong="H5650"\w* \w took|strong="H3947"\w* \w ten|strong="H6235"\w* \w of|strong="H3027"\w* \w his|strong="H3605"\w* master’s \w camels|strong="H1581"\w*, \w and|strong="H6965"\w* \w departed|strong="H3212"\w*, having \w a|strong="H3068"\w* \w variety|strong="H3605"\w* \w of|strong="H3027"\w* \w good|strong="H2898"\w* \w things|strong="H3605"\w* \w of|strong="H3027"\w* \w his|strong="H3605"\w* master’s \w with|strong="H3212"\w* \w him|strong="H3027"\w*. \w He|strong="H3605"\w* \w arose|strong="H6965"\w*, \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* Mesopotamia, \w to|strong="H3212"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w of|strong="H3027"\w* \w Nahor|strong="H5152"\w*. +\v 11 \w He|strong="H6256"\w* \w made|strong="H1288"\w* \w the|strong="H1288"\w* \w camels|strong="H1581"\w* \w kneel|strong="H1288"\w* \w down|strong="H1288"\w* \w outside|strong="H2351"\w* \w the|strong="H1288"\w* \w city|strong="H5892"\w* \w by|strong="H3318"\w* \w the|strong="H1288"\w* well \w of|strong="H5892"\w* \w water|strong="H4325"\w* \w at|strong="H3318"\w* \w the|strong="H1288"\w* \w time|strong="H6256"\w* \w of|strong="H5892"\w* \w evening|strong="H6153"\w*, \w the|strong="H1288"\w* \w time|strong="H6256"\w* \w that|strong="H5892"\w* women \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w draw|strong="H7579"\w* \w water|strong="H4325"\w*. +\v 12 \w He|strong="H3117"\w* said, “\w Yahweh|strong="H3068"\w*, \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* master Abraham, \w please|strong="H4994"\w* \w give|strong="H4994"\w* \w me|strong="H6440"\w* \w success|strong="H7136"\w* \w today|strong="H3117"\w*, \w and|strong="H3068"\w* \w show|strong="H6213"\w* \w kindness|strong="H2617"\w* \w to|strong="H3068"\w* \w my|strong="H3068"\w* master Abraham. +\v 13 \w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* am \w standing|strong="H5324"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w spring|strong="H3318"\w* \w of|strong="H1323"\w* \w water|strong="H4325"\w*. \w The|strong="H5921"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w the|strong="H5921"\w* men \w of|strong="H1323"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w are|strong="H5869"\w* \w coming|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w draw|strong="H7579"\w* \w water|strong="H4325"\w*. +\v 14 \w Let|strong="H4994"\w* \w it|strong="H3588"\w* \w happen|strong="H1961"\w*, \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w young|strong="H5291"\w* \w lady|strong="H5291"\w* \w to|strong="H1961"\w* \w whom|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* say, ‘\w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w down|strong="H5186"\w* \w your|strong="H5186"\w* \w pitcher|strong="H3537"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H1961"\w* \w drink|strong="H8354"\w*,’ \w then|strong="H1961"\w* \w she|strong="H3588"\w* \w says|strong="H8354"\w*, ‘\w Drink|strong="H8354"\w*, \w and|strong="H5650"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w also|strong="H1571"\w* \w give|strong="H8248"\w* \w your|strong="H5186"\w* \w camels|strong="H1581"\w* \w a|strong="H3068"\w* \w drink|strong="H8354"\w*,’—\w let|strong="H4994"\w* \w her|strong="H3045"\w* \w be|strong="H1961"\w* \w the|strong="H3588"\w* \w one|strong="H1961"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w appointed|strong="H3198"\w* \w for|strong="H3588"\w* \w your|strong="H5186"\w* \w servant|strong="H5650"\w* \w Isaac|strong="H3327"\w*. \w By|strong="H1571"\w* \w this|strong="H6213"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w shown|strong="H6213"\w* \w kindness|strong="H2617"\w* \w to|strong="H1961"\w* \w my|strong="H3045"\w* master.” +\p +\v 15 \w Before|strong="H2962"\w* \w he|strong="H1931"\w* \w had|strong="H1961"\w* \w finished|strong="H3615"\w* \w speaking|strong="H1696"\w*, \w behold|strong="H2009"\w*, \w Rebekah|strong="H7259"\w* \w came|strong="H1961"\w* \w out|strong="H3318"\w*, \w who|strong="H1931"\w* \w was|strong="H1961"\w* \w born|strong="H3205"\w* \w to|strong="H1696"\w* \w Bethuel|strong="H1328"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Milcah|strong="H4435"\w*, \w the|strong="H5921"\w* \w wife|strong="H1696"\w* \w of|strong="H1121"\w* \w Nahor|strong="H5152"\w*, Abraham’s brother, \w with|strong="H1696"\w* \w her|strong="H5921"\w* \w pitcher|strong="H3537"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w* \w shoulder|strong="H7926"\w*. +\v 16 \w The|strong="H3045"\w* \w young|strong="H5291"\w* \w lady|strong="H5291"\w* \w was|strong="H3966"\w* \w very|strong="H3966"\w* \w beautiful|strong="H2896"\w* \w to|strong="H3381"\w* \w look|strong="H5869"\w* \w at|strong="H3808"\w*, \w a|strong="H3068"\w* \w virgin|strong="H1330"\w*. \w No|strong="H3808"\w* \w man|strong="H2896"\w* \w had|strong="H3045"\w* \w known|strong="H3045"\w* \w her|strong="H4390"\w*. \w She|strong="H3808"\w* \w went|strong="H5927"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3045"\w* \w spring|strong="H5927"\w*, \w filled|strong="H4390"\w* \w her|strong="H4390"\w* \w pitcher|strong="H3537"\w*, \w and|strong="H5869"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w*. +\v 17 \w The|strong="H5650"\w* \w servant|strong="H5650"\w* \w ran|strong="H7323"\w* \w to|strong="H4325"\w* \w meet|strong="H7125"\w* \w her|strong="H7125"\w*, \w and|strong="H5650"\w* said, “\w Please|strong="H4994"\w* \w give|strong="H4994"\w* \w me|strong="H4994"\w* \w a|strong="H3068"\w* \w drink|strong="H1572"\w*, \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w water|strong="H4325"\w* \w from|strong="H5650"\w* \w your|strong="H4994"\w* \w pitcher|strong="H3537"\w*.” +\p +\v 18 \w She|strong="H8248"\w* said, “\w Drink|strong="H8354"\w*, \w my|strong="H5921"\w* lord.” \w She|strong="H8248"\w* \w hurried|strong="H4116"\w*, \w and|strong="H3027"\w* \w let|strong="H3381"\w* \w down|strong="H3381"\w* \w her|strong="H5921"\w* \w pitcher|strong="H3537"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w gave|strong="H8248"\w* \w him|strong="H5921"\w* \w a|strong="H3068"\w* \w drink|strong="H8354"\w*. +\v 19 \w When|strong="H3615"\w* \w she|strong="H8248"\w* \w had|strong="H1581"\w* \w finished|strong="H3615"\w* \w giving|strong="H8248"\w* \w him|strong="H8248"\w* \w a|strong="H3068"\w* \w drink|strong="H8354"\w*, \w she|strong="H8248"\w* said, “\w I|strong="H5704"\w* \w will|strong="H1571"\w* \w also|strong="H1571"\w* \w draw|strong="H7579"\w* \w for|strong="H5704"\w* \w your|strong="H5704"\w* \w camels|strong="H1581"\w*, \w until|strong="H5704"\w* \w they|strong="H5704"\w* \w have|strong="H1571"\w* \w finished|strong="H3615"\w* \w drinking|strong="H8354"\w*.” +\v 20 She \w hurried|strong="H4116"\w*, \w and|strong="H4116"\w* \w emptied|strong="H6168"\w* \w her|strong="H3605"\w* \w pitcher|strong="H3537"\w* into \w the|strong="H3605"\w* \w trough|strong="H8268"\w*, \w and|strong="H4116"\w* \w ran|strong="H7323"\w* \w again|strong="H5750"\w* \w to|strong="H7323"\w* \w the|strong="H3605"\w* well \w to|strong="H7323"\w* \w draw|strong="H7579"\w*, \w and|strong="H4116"\w* \w drew|strong="H7579"\w* \w for|strong="H3605"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w camels|strong="H1581"\w*. +\p +\v 21 \w The|strong="H3068"\w* \w man|strong="H3045"\w* \w looked|strong="H3068"\w* steadfastly \w at|strong="H3068"\w* \w her|strong="H3045"\w*, remaining \w silent|strong="H2790"\w*, \w to|strong="H3068"\w* \w know|strong="H3045"\w* \w whether|strong="H3045"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w made|strong="H3045"\w* \w his|strong="H3068"\w* \w journey|strong="H1870"\w* \w prosperous|strong="H6743"\w* \w or|strong="H3808"\w* \w not|strong="H3808"\w*. +\v 22 \w As|strong="H1961"\w* \w the|strong="H5921"\w* \w camels|strong="H1581"\w* \w had|strong="H1961"\w* \w finished|strong="H3615"\w* \w drinking|strong="H8354"\w*, \w the|strong="H5921"\w* man \w took|strong="H3947"\w* \w a|strong="H3068"\w* \w golden|strong="H2091"\w* \w ring|strong="H5141"\w* \w of|strong="H3027"\w* half \w a|strong="H3068"\w* \w shekel|strong="H1235"\w*\f + \fr 24:22 \ft A shekel is about 10 grams or about 0.35 ounces.\f* \w weight|strong="H4948"\w*, \w and|strong="H3027"\w* \w two|strong="H8147"\w* \w bracelets|strong="H6781"\w* \w for|strong="H5921"\w* \w her|strong="H3947"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w ten|strong="H6235"\w* \w shekels|strong="H4948"\w* \w weight|strong="H4948"\w* \w of|strong="H3027"\w* \w gold|strong="H2091"\w*, +\v 23 \w and|strong="H1004"\w* said, “\w Whose|strong="H4310"\w* \w daughter|strong="H1323"\w* \w are|strong="H3426"\w* \w you|strong="H5046"\w*? \w Please|strong="H4994"\w* \w tell|strong="H5046"\w* \w me|strong="H4994"\w*. \w Is|strong="H3426"\w* \w there|strong="H3426"\w* \w room|strong="H1004"\w* \w in|strong="H1004"\w* \w your|strong="H4994"\w* father’s \w house|strong="H1004"\w* \w for|strong="H1004"\w* \w us|strong="H4994"\w* \w to|strong="H1004"\w* \w stay|strong="H3885"\w*?” +\p +\v 24 She said \w to|strong="H3205"\w* \w him|strong="H3205"\w*, “\w I|strong="H1121"\w* am \w the|strong="H3205"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Bethuel|strong="H1328"\w* \w the|strong="H3205"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Milcah|strong="H4435"\w*, whom she \w bore|strong="H3205"\w* \w to|strong="H3205"\w* \w Nahor|strong="H5152"\w*.” +\v 25 \w She|strong="H5973"\w* said \w moreover|strong="H1571"\w* \w to|strong="H5973"\w* \w him|strong="H5973"\w*, “We \w have|strong="H1571"\w* \w both|strong="H1571"\w* \w straw|strong="H8401"\w* \w and|strong="H4725"\w* \w feed|strong="H4554"\w* \w enough|strong="H7227"\w*, \w and|strong="H4725"\w* \w room|strong="H4725"\w* \w to|strong="H5973"\w* \w lodge|strong="H3885"\w* \w in|strong="H7227"\w*.” +\p +\v 26 \w The|strong="H3068"\w* man \w bowed|strong="H7812"\w* \w his|strong="H3068"\w* \w head|strong="H6915"\w*, \w and|strong="H3068"\w* \w worshiped|strong="H7812"\w* \w Yahweh|strong="H3068"\w*. +\v 27 \w He|strong="H3068"\w* said, “\w Blessed|strong="H1288"\w* \w be|strong="H3808"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w my|strong="H3068"\w* master Abraham, \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w forsaken|strong="H5800"\w* \w his|strong="H3068"\w* loving \w kindness|strong="H2617"\w* \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w truth|strong="H3808"\w* \w toward|strong="H1870"\w* \w my|strong="H3068"\w* master. \w As|strong="H3068"\w* \w for|strong="H3068"\w* \w me|strong="H1288"\w*, \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w led|strong="H5148"\w* \w me|strong="H1288"\w* \w on|strong="H1870"\w* \w the|strong="H3068"\w* \w way|strong="H1870"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w my|strong="H3068"\w* master’s relatives.” +\p +\v 28 \w The|strong="H1697"\w* \w young|strong="H5291"\w* \w lady|strong="H5291"\w* \w ran|strong="H7323"\w*, \w and|strong="H1004"\w* \w told|strong="H5046"\w* \w her|strong="H5046"\w* mother’s \w house|strong="H1004"\w* \w about|strong="H1697"\w* \w these|strong="H1004"\w* \w words|strong="H1697"\w*. +\v 29 \w Rebekah|strong="H7259"\w* \w had|strong="H5869"\w* \w a|strong="H3068"\w* brother, \w and|strong="H5869"\w* \w his|strong="H7259"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Laban|strong="H3837"\w*. \w Laban|strong="H3837"\w* \w ran|strong="H7323"\w* \w out|strong="H2351"\w* \w to|strong="H5869"\w* \w the|strong="H2351"\w* man, \w to|strong="H5869"\w* \w the|strong="H2351"\w* \w spring|strong="H5869"\w*. +\v 30 \w When|strong="H1961"\w* \w he|strong="H3027"\w* \w saw|strong="H7200"\w* \w the|strong="H5921"\w* \w ring|strong="H5141"\w*, \w and|strong="H3027"\w* \w the|strong="H5921"\w* \w bracelets|strong="H6781"\w* \w on|strong="H5921"\w* \w his|strong="H8085"\w* sister’s \w hands|strong="H3027"\w*, \w and|strong="H3027"\w* \w when|strong="H1961"\w* \w he|strong="H3027"\w* \w heard|strong="H8085"\w* \w the|strong="H5921"\w* \w words|strong="H1697"\w* \w of|strong="H3027"\w* \w Rebekah|strong="H7259"\w* \w his|strong="H8085"\w* sister, \w saying|strong="H1697"\w*, “\w This|strong="H3541"\w* \w is|strong="H3027"\w* \w what|strong="H1697"\w* \w the|strong="H5921"\w* \w man|strong="H7200"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H7200"\w*,” \w he|strong="H3027"\w* \w came|strong="H1961"\w* \w to|strong="H1696"\w* \w the|strong="H5921"\w* \w man|strong="H7200"\w*. \w Behold|strong="H2009"\w*, \w he|strong="H3027"\w* \w was|strong="H1961"\w* \w standing|strong="H5975"\w* \w by|strong="H3027"\w* \w the|strong="H5921"\w* \w camels|strong="H1581"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w spring|strong="H5869"\w*. +\v 31 \w He|strong="H3068"\w* said, “Come \w in|strong="H3068"\w*, \w you|strong="H1288"\w* \w blessed|strong="H1288"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*. \w Why|strong="H4100"\w* \w do|strong="H3068"\w* \w you|strong="H1288"\w* \w stand|strong="H5975"\w* \w outside|strong="H2351"\w*? \w For|strong="H3068"\w* \w I|strong="H4100"\w* \w have|strong="H3068"\w* \w prepared|strong="H6437"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w room|strong="H1004"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w camels|strong="H1581"\w*.” +\p +\v 32 \w The|strong="H5414"\w* man \w came|strong="H4325"\w* \w into|strong="H4325"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w*, \w and|strong="H1004"\w* \w he|strong="H1004"\w* \w unloaded|strong="H6605"\w* \w the|strong="H5414"\w* \w camels|strong="H1581"\w*. \w He|strong="H1004"\w* \w gave|strong="H5414"\w* \w straw|strong="H8401"\w* \w and|strong="H1004"\w* \w feed|strong="H4554"\w* \w for|strong="H1004"\w* \w the|strong="H5414"\w* \w camels|strong="H1581"\w*, \w and|strong="H1004"\w* \w water|strong="H4325"\w* \w to|strong="H5414"\w* \w wash|strong="H7364"\w* \w his|strong="H5414"\w* \w feet|strong="H7272"\w* \w and|strong="H1004"\w* \w the|strong="H5414"\w* \w feet|strong="H7272"\w* \w of|strong="H1004"\w* \w the|strong="H5414"\w* men who \w were|strong="H4325"\w* \w with|strong="H1004"\w* \w him|strong="H5414"\w*. +\v 33 Food \w was|strong="H1697"\w* set \w before|strong="H6440"\w* \w him|strong="H6440"\w* \w to|strong="H1696"\w* eat, \w but|strong="H3808"\w* \w he|strong="H5704"\w* \w said|strong="H1696"\w*, “\w I|strong="H5704"\w* \w will|strong="H1697"\w* \w not|strong="H3808"\w* eat \w until|strong="H5704"\w* \w I|strong="H5704"\w* \w have|strong="H1697"\w* \w told|strong="H1696"\w* \w my|strong="H1696"\w* \w message|strong="H1697"\w*.” +\p Laban \w said|strong="H1696"\w*, “\w Speak|strong="H1696"\w* \w on|strong="H1696"\w*.” +\p +\v 34 He said, “\w I|strong="H5650"\w* am Abraham’s \w servant|strong="H5650"\w*. +\v 35 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w blessed|strong="H1288"\w* \w my|strong="H5414"\w* \w master|strong="H5414"\w* \w greatly|strong="H3966"\w*. \w He|strong="H3068"\w* \w has|strong="H3068"\w* \w become|strong="H1431"\w* \w great|strong="H1431"\w*. \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w him|strong="H5414"\w* \w flocks|strong="H6629"\w* \w and|strong="H3068"\w* \w herds|strong="H1241"\w*, \w silver|strong="H3701"\w* \w and|strong="H3068"\w* \w gold|strong="H2091"\w*, \w male|strong="H5650"\w* \w servants|strong="H5650"\w* \w and|strong="H3068"\w* \w female|strong="H8198"\w* \w servants|strong="H5650"\w*, \w and|strong="H3068"\w* \w camels|strong="H1581"\w* \w and|strong="H3068"\w* \w donkeys|strong="H2543"\w*. +\v 36 \w Sarah|strong="H8283"\w*, \w my|strong="H5414"\w* \w master|strong="H5414"\w*’s wife, \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w to|strong="H5414"\w* \w my|strong="H5414"\w* \w master|strong="H5414"\w* \w when|strong="H1121"\w* she \w was|strong="H1121"\w* \w old|strong="H1121"\w*. \w He|strong="H3605"\w* \w has|strong="H3605"\w* \w given|strong="H5414"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w has|strong="H3605"\w* \w to|strong="H5414"\w* \w him|strong="H5414"\w*. +\v 37 \w My|strong="H3947"\w* \w master|strong="H3427"\w* \w made|strong="H7650"\w* \w me|strong="H3947"\w* \w swear|strong="H7650"\w*, saying, ‘\w You|strong="H3947"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* wife \w for|strong="H3427"\w* \w my|strong="H3947"\w* \w son|strong="H1121"\w* \w from|strong="H1121"\w* \w the|strong="H3947"\w* \w daughters|strong="H1323"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w Canaanites|strong="H3669"\w*, \w in|strong="H3427"\w* \w whose|strong="H1121"\w* land \w I|strong="H3808"\w* \w live|strong="H3427"\w*, +\v 38 \w but|strong="H3808"\w* \w you|strong="H3947"\w* \w shall|strong="H1121"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w my|strong="H3947"\w* \w father|strong="H1121"\w*’s \w house|strong="H1004"\w*, \w and|strong="H1121"\w* \w to|strong="H3212"\w* \w my|strong="H3947"\w* \w relatives|strong="H4940"\w*, \w and|strong="H1121"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* wife \w for|strong="H1004"\w* \w my|strong="H3947"\w* \w son|strong="H1121"\w*.’ +\v 39 \w I|strong="H3808"\w* asked \w my|strong="H3808"\w* master, ‘What if \w the|strong="H3808"\w* woman \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w follow|strong="H3212"\w* \w me|strong="H3808"\w*?’ +\v 40 \w He|strong="H3068"\w* said \w to|strong="H1980"\w* \w me|strong="H6440"\w*, ‘\w Yahweh|strong="H3068"\w*, \w before|strong="H6440"\w* \w whom|strong="H6440"\w* \w I|strong="H1980"\w* \w walk|strong="H1980"\w*, \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w his|strong="H3068"\w* \w angel|strong="H4397"\w* \w with|strong="H1980"\w* \w you|strong="H6440"\w*, \w and|strong="H1121"\w* \w prosper|strong="H6743"\w* \w your|strong="H3068"\w* \w way|strong="H1870"\w*. \w You|strong="H6440"\w* \w shall|strong="H3068"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* wife \w for|strong="H6440"\w* \w my|strong="H3068"\w* \w son|strong="H1121"\w* \w from|strong="H6440"\w* \w my|strong="H3068"\w* \w relatives|strong="H4940"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w my|strong="H3068"\w* \w father|strong="H1121"\w*’s \w house|strong="H1004"\w*. +\v 41 \w Then|strong="H1961"\w* \w you|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w clear|strong="H5352"\w* \w from|strong="H1961"\w* \w my|strong="H5414"\w* oath, \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w come|strong="H1961"\w* \w to|strong="H1961"\w* \w my|strong="H5414"\w* \w relatives|strong="H4940"\w*. \w If|strong="H3588"\w* \w they|strong="H3588"\w* don’t \w give|strong="H5414"\w* \w her|strong="H5414"\w* \w to|strong="H1961"\w* \w you|strong="H3588"\w*, \w you|strong="H3588"\w* \w shall|strong="H3808"\w* \w be|strong="H1961"\w* \w clear|strong="H5352"\w* \w from|strong="H1961"\w* \w my|strong="H5414"\w* oath.’ +\v 42 \w I|strong="H3117"\w* \w came|strong="H1980"\w* \w today|strong="H3117"\w* \w to|strong="H1980"\w* \w the|strong="H5921"\w* \w spring|strong="H5869"\w*, \w and|strong="H1980"\w* said, ‘\w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* master Abraham, \w if|strong="H3426"\w* \w now|strong="H4994"\w* \w you|strong="H5921"\w* \w do|strong="H3068"\w* \w prosper|strong="H6743"\w* \w my|strong="H3068"\w* \w way|strong="H1870"\w* \w which|strong="H3068"\w* \w I|strong="H3117"\w* \w go|strong="H1980"\w*— +\v 43 \w behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w am|strong="H1961"\w* \w standing|strong="H5324"\w* \w by|strong="H5921"\w* \w this|strong="H4994"\w* \w spring|strong="H3318"\w* \w of|strong="H5869"\w* \w water|strong="H4325"\w*. \w Let|strong="H4994"\w* \w it|strong="H5921"\w* \w happen|strong="H1961"\w*, \w that|strong="H4325"\w* \w the|strong="H5921"\w* \w maiden|strong="H5959"\w* \w who|strong="H5959"\w* \w comes|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w draw|strong="H7579"\w*, \w to|strong="H3318"\w* \w whom|strong="H5869"\w* \w I|strong="H2009"\w* \w will|strong="H1961"\w* say, “\w Please|strong="H4994"\w* \w give|strong="H8248"\w* \w me|strong="H4994"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w water|strong="H4325"\w* \w from|strong="H3318"\w* \w your|strong="H5921"\w* \w pitcher|strong="H3537"\w* \w to|strong="H3318"\w* \w drink|strong="H8248"\w*,” +\v 44 \w then|strong="H1571"\w* \w she|strong="H1931"\w* tells \w me|strong="H1571"\w*, “\w Drink|strong="H8354"\w*, \w and|strong="H1121"\w* \w I|strong="H1571"\w* \w will|strong="H3068"\w* \w also|strong="H1571"\w* \w draw|strong="H7579"\w* \w for|strong="H3068"\w* \w your|strong="H3068"\w* \w camels|strong="H1581"\w*,”—let \w her|strong="H1571"\w* \w be|strong="H3068"\w* \w the|strong="H3068"\w* woman whom \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w appointed|strong="H1121"\w* \w for|strong="H3068"\w* \w my|strong="H3068"\w* master’s \w son|strong="H1121"\w*.’ +\v 45 \w Before|strong="H2962"\w* \w I|strong="H2009"\w* \w had|strong="H5869"\w* \w finished|strong="H3615"\w* \w speaking|strong="H1696"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* \w heart|strong="H3820"\w*, \w behold|strong="H2009"\w*, \w Rebekah|strong="H7259"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w with|strong="H1696"\w* \w her|strong="H5921"\w* \w pitcher|strong="H3537"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w* \w shoulder|strong="H7926"\w*. \w She|strong="H8248"\w* \w went|strong="H3318"\w* \w down|strong="H3381"\w* \w to|strong="H1696"\w* \w the|strong="H5921"\w* \w spring|strong="H3318"\w*, \w and|strong="H5869"\w* \w drew|strong="H7579"\w*. \w I|strong="H2009"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w her|strong="H5921"\w*, ‘\w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w me|strong="H4994"\w* \w drink|strong="H8248"\w*.’ +\v 46 \w She|strong="H8248"\w* \w hurried|strong="H4116"\w* \w and|strong="H3381"\w* \w let|strong="H3381"\w* \w down|strong="H3381"\w* \w her|strong="H5921"\w* \w pitcher|strong="H3537"\w* \w from|strong="H3381"\w* \w her|strong="H5921"\w* shoulder, \w and|strong="H3381"\w* said, ‘\w Drink|strong="H8354"\w*, \w and|strong="H3381"\w* \w I|strong="H5921"\w* \w will|strong="H1571"\w* \w also|strong="H1571"\w* \w give|strong="H8248"\w* \w your|strong="H5921"\w* \w camels|strong="H1581"\w* \w a|strong="H3068"\w* \w drink|strong="H8354"\w*.’ \w So|strong="H1571"\w* \w I|strong="H5921"\w* \w drank|strong="H8354"\w*, \w and|strong="H3381"\w* \w she|strong="H8248"\w* \w also|strong="H1571"\w* \w gave|strong="H8248"\w* \w the|strong="H5921"\w* \w camels|strong="H1581"\w* \w a|strong="H3068"\w* \w drink|strong="H8354"\w*. +\v 47 \w I|strong="H5921"\w* \w asked|strong="H7592"\w* \w her|strong="H5921"\w*, \w and|strong="H1121"\w* said, ‘\w Whose|strong="H4310"\w* \w daughter|strong="H1323"\w* \w are|strong="H1121"\w* \w you|strong="H5921"\w*?’ \w She|strong="H5921"\w* said, ‘\w The|strong="H5921"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Bethuel|strong="H1328"\w*, \w Nahor|strong="H5152"\w*’s \w son|strong="H1121"\w*, \w whom|strong="H4310"\w* \w Milcah|strong="H4435"\w* \w bore|strong="H3205"\w* \w to|strong="H5921"\w* \w him|strong="H3205"\w*.’ \w I|strong="H5921"\w* \w put|strong="H7760"\w* \w the|strong="H5921"\w* \w ring|strong="H5141"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w* nose, \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w bracelets|strong="H6781"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w* \w hands|strong="H3027"\w*. +\v 48 \w I|strong="H1121"\w* \w bowed|strong="H7812"\w* \w my|strong="H3068"\w* \w head|strong="H6915"\w*, \w and|strong="H1121"\w* \w worshiped|strong="H7812"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H1121"\w* \w blessed|strong="H1288"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3947"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w my|strong="H3068"\w* master \w Abraham|strong="H3947"\w*, \w who|strong="H3068"\w* \w had|strong="H3068"\w* \w led|strong="H5148"\w* \w me|strong="H3947"\w* \w in|strong="H3068"\w* \w the|strong="H3947"\w* \w right|strong="H3068"\w* \w way|strong="H1870"\w* \w to|strong="H3068"\w* \w take|strong="H3947"\w* \w my|strong="H3068"\w* master’s brother’s \w daughter|strong="H1323"\w* \w for|strong="H3068"\w* \w his|strong="H3068"\w* \w son|strong="H1121"\w*. +\v 49 \w Now|strong="H6258"\w* \w if|strong="H3426"\w* \w you|strong="H5921"\w* \w will|strong="H3808"\w* \w deal|strong="H6213"\w* \w kindly|strong="H2617"\w* \w and|strong="H6437"\w* \w truly|strong="H6213"\w* \w with|strong="H6213"\w* \w my|strong="H5921"\w* master, \w tell|strong="H5046"\w* \w me|strong="H5046"\w*. \w If|strong="H3426"\w* \w not|strong="H3808"\w*, \w tell|strong="H5046"\w* \w me|strong="H5046"\w*, \w that|strong="H6213"\w* \w I|strong="H5921"\w* \w may|strong="H6213"\w* \w turn|strong="H6437"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w*, \w or|strong="H3808"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w left|strong="H8040"\w*.” +\p +\v 50 \w Then|strong="H6030"\w* \w Laban|strong="H3837"\w* \w and|strong="H3068"\w* \w Bethuel|strong="H1328"\w* \w answered|strong="H6030"\w*, “\w The|strong="H3068"\w* \w thing|strong="H1697"\w* \w proceeds|strong="H3318"\w* \w from|strong="H3318"\w* \w Yahweh|strong="H3068"\w*. \w We|strong="H1697"\w* \w can|strong="H3201"\w*’t \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3808"\w* \w bad|strong="H7451"\w* \w or|strong="H3808"\w* \w good|strong="H2896"\w*. +\v 51 \w Behold|strong="H2009"\w*, \w Rebekah|strong="H7259"\w* \w is|strong="H3068"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*. \w Take|strong="H3947"\w* \w her|strong="H3947"\w*, \w and|strong="H1121"\w* \w go|strong="H3212"\w*, \w and|strong="H1121"\w* \w let|strong="H3212"\w* \w her|strong="H3947"\w* \w be|strong="H1961"\w* \w your|strong="H3068"\w* master’s \w son|strong="H1121"\w*’s \w wife|strong="H1696"\w*, \w as|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w*.” +\p +\v 52 \w When|strong="H1961"\w* Abraham’s \w servant|strong="H5650"\w* \w heard|strong="H8085"\w* \w their|strong="H3068"\w* \w words|strong="H1697"\w*, \w he|strong="H3068"\w* \w bowed|strong="H7812"\w* \w himself|strong="H7812"\w* \w down|strong="H7812"\w* \w to|strong="H3068"\w* \w the|strong="H8085"\w* earth \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 53 \w The|strong="H5414"\w* \w servant|strong="H5650"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w jewels|strong="H3627"\w* \w of|strong="H3627"\w* \w silver|strong="H3701"\w*, \w and|strong="H3701"\w* \w jewels|strong="H3627"\w* \w of|strong="H3627"\w* \w gold|strong="H2091"\w*, \w and|strong="H3701"\w* \w clothing|strong="H3627"\w*, \w and|strong="H3701"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H3318"\w* \w Rebekah|strong="H7259"\w*. \w He|strong="H5414"\w* \w also|strong="H3318"\w* \w gave|strong="H5414"\w* \w precious|strong="H4030"\w* \w things|strong="H4030"\w* \w to|strong="H3318"\w* \w her|strong="H5414"\w* brother \w and|strong="H3701"\w* \w her|strong="H5414"\w* mother. +\v 54 \w They|strong="H1931"\w* ate \w and|strong="H6965"\w* \w drank|strong="H8354"\w*, \w he|strong="H1931"\w* \w and|strong="H6965"\w* \w the|strong="H7971"\w* men \w who|strong="H1931"\w* were \w with|strong="H5973"\w* \w him|strong="H7971"\w*, \w and|strong="H6965"\w* \w stayed|strong="H3885"\w* \w all|strong="H3885"\w* \w night|strong="H3885"\w*. \w They|strong="H1931"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w in|strong="H3885"\w* \w the|strong="H7971"\w* \w morning|strong="H1242"\w*, \w and|strong="H6965"\w* \w he|strong="H1931"\w* said, “\w Send|strong="H7971"\w* \w me|strong="H7971"\w* \w away|strong="H7971"\w* \w to|strong="H7971"\w* \w my|strong="H7971"\w* master.” +\p +\v 55 \w Her|strong="H3212"\w* brother \w and|strong="H3117"\w* \w her|strong="H3212"\w* mother said, “\w Let|strong="H3212"\w* \w the|strong="H3117"\w* \w young|strong="H5291"\w* \w lady|strong="H5291"\w* \w stay|strong="H3427"\w* \w with|strong="H3427"\w* \w us|strong="H3117"\w* \w a|strong="H3068"\w* few \w days|strong="H3117"\w*, \w at|strong="H3427"\w* least \w ten|strong="H6218"\w*. \w After|strong="H3117"\w* \w that|strong="H3117"\w* she \w will|strong="H3117"\w* \w go|strong="H3212"\w*.” +\p +\v 56 \w He|strong="H3068"\w* said \w to|strong="H3068"\w* \w them|strong="H7971"\w*, “Don’t hinder \w me|strong="H7971"\w*, since \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w prospered|strong="H6743"\w* \w my|strong="H3068"\w* \w way|strong="H1870"\w*. \w Send|strong="H7971"\w* \w me|strong="H7971"\w* \w away|strong="H7971"\w* \w that|strong="H3068"\w* \w I|strong="H3068"\w* \w may|strong="H3068"\w* \w go|strong="H3212"\w* \w to|strong="H3068"\w* \w my|strong="H3068"\w* master.” +\p +\v 57 \w They|strong="H6310"\w* \w said|strong="H7121"\w*, “We \w will|strong="H6310"\w* \w call|strong="H7121"\w* \w the|strong="H7121"\w* \w young|strong="H5291"\w* \w lady|strong="H5291"\w*, \w and|strong="H6310"\w* \w ask|strong="H7592"\w* \w her|strong="H7121"\w*.” +\v 58 \w They|strong="H7121"\w* \w called|strong="H7121"\w* \w Rebekah|strong="H7259"\w*, \w and|strong="H3212"\w* \w said|strong="H7121"\w* \w to|strong="H3212"\w* \w her|strong="H7121"\w*, “\w Will|strong="H2088"\w* \w you|strong="H5973"\w* \w go|strong="H3212"\w* \w with|strong="H5973"\w* \w this|strong="H2088"\w* \w man|strong="H2088"\w*?” +\p \w She|strong="H7121"\w* \w said|strong="H7121"\w*, “\w I|strong="H2088"\w* \w will|strong="H2088"\w* \w go|strong="H3212"\w*.” +\p +\v 59 They \w sent|strong="H7971"\w* \w away|strong="H7971"\w* \w Rebekah|strong="H7259"\w*, \w their|strong="H7971"\w* sister, \w with|strong="H7971"\w* \w her|strong="H7971"\w* \w nurse|strong="H3243"\w*, Abraham’s \w servant|strong="H5650"\w*, \w and|strong="H7971"\w* \w his|strong="H7971"\w* \w men|strong="H5650"\w*. +\v 60 \w They|strong="H8179"\w* \w blessed|strong="H1288"\w* \w Rebekah|strong="H7259"\w*, \w and|strong="H8179"\w* said \w to|strong="H1961"\w* \w her|strong="H8130"\w*, “\w Our|strong="H1288"\w* sister, \w may|strong="H1961"\w* \w you|strong="H1288"\w* \w be|strong="H1961"\w* \w the|strong="H1288"\w* mother \w of|strong="H8179"\w* \w thousands|strong="H7233"\w* \w of|strong="H8179"\w* \w ten|strong="H7233"\w* \w thousands|strong="H7233"\w*, \w and|strong="H8179"\w* \w let|strong="H1961"\w* \w your|strong="H1961"\w* \w offspring|strong="H2233"\w* \w possess|strong="H3423"\w* \w the|strong="H1288"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* \w those|strong="H1961"\w* \w who|strong="H8130"\w* \w hate|strong="H8130"\w* \w them|strong="H3423"\w*.” +\p +\v 61 \w Rebekah|strong="H7259"\w* \w arose|strong="H6965"\w* \w with|strong="H5921"\w* \w her|strong="H3947"\w* \w ladies|strong="H5291"\w*. \w They|strong="H5921"\w* \w rode|strong="H7392"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w camels|strong="H1581"\w*, \w and|strong="H6965"\w* \w followed|strong="H3212"\w* \w the|strong="H5921"\w* man. \w The|strong="H5921"\w* \w servant|strong="H5650"\w* \w took|strong="H3947"\w* \w Rebekah|strong="H7259"\w*, \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w his|strong="H3947"\w* \w way|strong="H3212"\w*. +\v 62 \w Isaac|strong="H3327"\w* came \w from|strong="H3427"\w* \w the|strong="H3427"\w* way \w of|strong="H3427"\w* Beer Lahai Roi, \w for|strong="H3427"\w* \w he|strong="H1931"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3427"\w* land \w of|strong="H3427"\w* \w the|strong="H3427"\w* \w South|strong="H5045"\w*. +\v 63 \w Isaac|strong="H3327"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w meditate|strong="H7742"\w* \w in|strong="H7200"\w* \w the|strong="H7200"\w* \w field|strong="H7704"\w* \w at|strong="H7200"\w* \w the|strong="H7200"\w* \w evening|strong="H6153"\w*. \w He|strong="H3318"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w eyes|strong="H5869"\w* \w and|strong="H5869"\w* \w looked|strong="H7200"\w*. \w Behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w were|strong="H5869"\w* \w camels|strong="H1581"\w* \w coming|strong="H3318"\w*. +\v 64 \w Rebekah|strong="H7259"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w her|strong="H5375"\w* \w eyes|strong="H5869"\w*, \w and|strong="H5869"\w* \w when|strong="H7200"\w* \w she|strong="H5921"\w* \w saw|strong="H7200"\w* \w Isaac|strong="H3327"\w*, \w she|strong="H5921"\w* got \w off|strong="H5921"\w* \w the|strong="H5921"\w* \w camel|strong="H1581"\w*. +\v 65 \w She|strong="H1931"\w* said \w to|strong="H1980"\w* \w the|strong="H3947"\w* \w servant|strong="H5650"\w*, “\w Who|strong="H4310"\w* \w is|strong="H1931"\w* \w the|strong="H3947"\w* man \w who|strong="H4310"\w* \w is|strong="H1931"\w* \w walking|strong="H1980"\w* \w in|strong="H1980"\w* \w the|strong="H3947"\w* \w field|strong="H7704"\w* \w to|strong="H1980"\w* \w meet|strong="H7125"\w* \w us|strong="H7704"\w*?” +\p \w The|strong="H3947"\w* \w servant|strong="H5650"\w* said, “\w It|strong="H1931"\w* \w is|strong="H1931"\w* \w my|strong="H3947"\w* master.” +\p \w She|strong="H1931"\w* \w took|strong="H3947"\w* \w her|strong="H3947"\w* \w veil|strong="H6809"\w*, \w and|strong="H1980"\w* \w covered|strong="H3680"\w* \w herself|strong="H1931"\w*. +\v 66 \w The|strong="H3605"\w* \w servant|strong="H5650"\w* \w told|strong="H5608"\w* \w Isaac|strong="H3327"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w things|strong="H1697"\w* \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w had|strong="H3327"\w* \w done|strong="H6213"\w*. +\v 67 \w Isaac|strong="H3327"\w* \w brought|strong="H3947"\w* \w her|strong="H3947"\w* \w into|strong="H1961"\w* \w his|strong="H3947"\w* mother \w Sarah|strong="H8283"\w*’s tent, \w and|strong="H3327"\w* \w took|strong="H3947"\w* \w Rebekah|strong="H7259"\w*, \w and|strong="H3327"\w* \w she|strong="H3327"\w* \w became|strong="H1961"\w* \w his|strong="H3947"\w* wife. \w He|strong="H8283"\w* loved \w her|strong="H3947"\w*. \w So|strong="H3947"\w* \w Isaac|strong="H3327"\w* \w was|strong="H1961"\w* \w comforted|strong="H5162"\w* \w after|strong="H1961"\w* \w his|strong="H3947"\w* mother’s death. +\c 25 +\p +\v 1 \w Abraham|strong="H3947"\w* \w took|strong="H3947"\w* \w another|strong="H3254"\w* wife, \w and|strong="H3947"\w* \w her|strong="H3947"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Keturah|strong="H6989"\w*. +\v 2 She \w bore|strong="H3205"\w* \w him|strong="H3205"\w* \w Zimran|strong="H2175"\w*, \w Jokshan|strong="H3370"\w*, \w Medan|strong="H4091"\w*, \w Midian|strong="H4080"\w*, \w Ishbak|strong="H3435"\w*, \w and|strong="H4080"\w* \w Shuah|strong="H7744"\w*. +\v 3 \w Jokshan|strong="H3370"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Sheba|strong="H7614"\w*, \w and|strong="H1121"\w* \w Dedan|strong="H1719"\w*. \w The|strong="H3205"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Dedan|strong="H1719"\w* \w were|strong="H1961"\w* Asshurim, \w Letushim|strong="H3912"\w*, \w and|strong="H1121"\w* \w Leummim|strong="H3817"\w*. +\v 4 \w The|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Midian|strong="H4080"\w* \w were|strong="H1121"\w* \w Ephah|strong="H5891"\w*, \w Epher|strong="H6081"\w*, \w Hanoch|strong="H2585"\w*, Abida, \w and|strong="H1121"\w* Eldaah. \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w were|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Keturah|strong="H6989"\w*. +\v 5 Abraham \w gave|strong="H5414"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w had|strong="H5414"\w* \w to|strong="H5414"\w* \w Isaac|strong="H3327"\w*, +\v 6 \w but|strong="H5750"\w* Abraham \w gave|strong="H5414"\w* \w gifts|strong="H4979"\w* \w to|strong="H7971"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Abraham’s \w concubines|strong="H6370"\w*. \w While|strong="H5750"\w* \w he|strong="H5414"\w* \w still|strong="H5750"\w* \w lived|strong="H2416"\w*, \w he|strong="H5414"\w* \w sent|strong="H7971"\w* \w them|strong="H5414"\w* \w away|strong="H7971"\w* \w from|strong="H5921"\w* \w Isaac|strong="H3327"\w* \w his|strong="H5414"\w* \w son|strong="H1121"\w*, \w eastward|strong="H6924"\w*, \w to|strong="H7971"\w* \w the|strong="H5921"\w* \w east|strong="H6924"\w* \w country|strong="H6924"\w*. +\v 7 \w These|strong="H3117"\w* \w are|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w years|strong="H8141"\w* \w of|strong="H3117"\w* Abraham’s \w life|strong="H2416"\w* \w which|strong="H2416"\w* \w he|strong="H3117"\w* \w lived|strong="H2416"\w*: \w one|strong="H2416"\w* \w hundred|strong="H3967"\w* \w seventy-five|strong="H7657"\w* \w years|strong="H8141"\w*. +\v 8 Abraham gave up \w his|strong="H4191"\w* spirit, \w and|strong="H5971"\w* \w died|strong="H4191"\w* \w at|strong="H4191"\w* \w a|strong="H3068"\w* \w good|strong="H2896"\w* \w old|strong="H2205"\w* \w age|strong="H7872"\w*, \w an|strong="H4191"\w* \w old|strong="H2205"\w* \w man|strong="H2205"\w*, \w and|strong="H5971"\w* \w full|strong="H7649"\w* \w of|strong="H2205"\w* \w years|strong="H7872"\w*, \w and|strong="H5971"\w* \w was|strong="H2896"\w* gathered \w to|strong="H4191"\w* \w his|strong="H4191"\w* \w people|strong="H5971"\w*. +\v 9 \w Isaac|strong="H3327"\w* \w and|strong="H1121"\w* \w Ishmael|strong="H3458"\w*, \w his|strong="H6440"\w* \w sons|strong="H1121"\w*, \w buried|strong="H6912"\w* \w him|strong="H6440"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w cave|strong="H4631"\w* \w of|strong="H1121"\w* \w Machpelah|strong="H4375"\w*, \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w field|strong="H7704"\w* \w of|strong="H1121"\w* \w Ephron|strong="H6085"\w*, \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zohar|strong="H6714"\w* \w the|strong="H6440"\w* \w Hittite|strong="H2850"\w*, \w which|strong="H7704"\w* \w is|strong="H1121"\w* \w near|strong="H6440"\w* \w Mamre|strong="H4471"\w*, +\v 10 \w the|strong="H8033"\w* \w field|strong="H7704"\w* \w which|strong="H8033"\w* Abraham \w purchased|strong="H7069"\w* \w from|strong="H1121"\w* \w the|strong="H8033"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Heth|strong="H2845"\w*. Abraham \w was|strong="H1121"\w* \w buried|strong="H6912"\w* \w there|strong="H8033"\w* \w with|strong="H8033"\w* \w Sarah|strong="H8283"\w*, \w his|strong="H8283"\w* wife. +\v 11 \w After|strong="H1961"\w* \w the|strong="H1288"\w* \w death|strong="H4194"\w* \w of|strong="H1121"\w* Abraham, God \w blessed|strong="H1288"\w* \w Isaac|strong="H3327"\w*, \w his|strong="H1288"\w* \w son|strong="H1121"\w*. \w Isaac|strong="H3327"\w* \w lived|strong="H3427"\w* \w by|strong="H3427"\w* Beer Lahai Roi. +\p +\v 12 Now \w this|strong="H1121"\w* \w is|strong="H1121"\w* \w the|strong="H3205"\w* \w history|strong="H8435"\w* \w of|strong="H1121"\w* \w the|strong="H3205"\w* \w generations|strong="H8435"\w* \w of|strong="H1121"\w* \w Ishmael|strong="H3458"\w*, Abraham’s \w son|strong="H1121"\w*, whom \w Hagar|strong="H1904"\w* \w the|strong="H3205"\w* \w Egyptian|strong="H4713"\w*, \w Sarah|strong="H8283"\w*’s \w servant|strong="H8198"\w*, \w bore|strong="H3205"\w* \w to|strong="H3205"\w* Abraham. +\v 13 These \w are|strong="H1121"\w* \w the|strong="H3458"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H3458"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Ishmael|strong="H3458"\w*, \w by|strong="H8034"\w* their \w names|strong="H8034"\w*, according \w to|strong="H1121"\w* \w the|strong="H3458"\w* \w order|strong="H8435"\w* \w of|strong="H1121"\w* their \w birth|strong="H8435"\w*: \w the|strong="H3458"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1121"\w* \w Ishmael|strong="H3458"\w*, \w Nebaioth|strong="H5032"\w*, \w then|strong="H1121"\w* \w Kedar|strong="H6938"\w*, Adbeel, \w Mibsam|strong="H4017"\w*, +\v 14 \w Mishma|strong="H4927"\w*, \w Dumah|strong="H1746"\w*, \w Massa|strong="H4854"\w*, +\v 15 \w Hadad|strong="H2301"\w*, \w Tema|strong="H8485"\w*, \w Jetur|strong="H3195"\w*, \w Naphish|strong="H5305"\w*, \w and|strong="H5305"\w* \w Kedemah|strong="H6929"\w*. +\v 16 \w These|strong="H1992"\w* \w are|strong="H1992"\w* \w the|strong="H3458"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Ishmael|strong="H3458"\w*, \w and|strong="H1121"\w* \w these|strong="H1992"\w* \w are|strong="H1992"\w* \w their|strong="H1992"\w* \w names|strong="H8034"\w*, \w by|strong="H8034"\w* \w their|strong="H1992"\w* \w villages|strong="H2691"\w*, \w and|strong="H1121"\w* \w by|strong="H8034"\w* \w their|strong="H1992"\w* \w encampments|strong="H2918"\w*: \w twelve|strong="H8147"\w* \w princes|strong="H5387"\w*, according \w to|strong="H1121"\w* \w their|strong="H1992"\w* nations. +\v 17 \w These|strong="H5971"\w* \w are|strong="H5971"\w* \w the|strong="H3458"\w* \w years|strong="H8141"\w* \w of|strong="H8141"\w* \w the|strong="H3458"\w* \w life|strong="H2416"\w* \w of|strong="H8141"\w* \w Ishmael|strong="H3458"\w*: \w one|strong="H2416"\w* \w hundred|strong="H3967"\w* \w thirty-seven|strong="H7970"\w* \w years|strong="H8141"\w*. \w He|strong="H8141"\w* gave up \w his|strong="H3458"\w* spirit \w and|strong="H3967"\w* \w died|strong="H4191"\w*, \w and|strong="H3967"\w* \w was|strong="H8141"\w* gathered \w to|strong="H4191"\w* \w his|strong="H3458"\w* \w people|strong="H5971"\w*. +\v 18 \w They|strong="H5921"\w* \w lived|strong="H7931"\w* \w from|strong="H6440"\w* \w Havilah|strong="H2341"\w* \w to|strong="H5704"\w* \w Shur|strong="H7793"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w before|strong="H6440"\w* \w Egypt|strong="H4714"\w*, \w as|strong="H5704"\w* \w you|strong="H6440"\w* \w go|strong="H5307"\w* \w toward|strong="H5921"\w* Assyria. \w He|strong="H5704"\w* \w lived|strong="H7931"\w* \w opposite|strong="H5921"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* relatives. +\p +\v 19 \w This|strong="H1121"\w* \w is|strong="H1121"\w* \w the|strong="H3205"\w* \w history|strong="H8435"\w* \w of|strong="H1121"\w* \w the|strong="H3205"\w* \w generations|strong="H8435"\w* \w of|strong="H1121"\w* \w Isaac|strong="H3327"\w*, Abraham’s \w son|strong="H1121"\w*. Abraham \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Isaac|strong="H3327"\w*. +\v 20 \w Isaac|strong="H3327"\w* \w was|strong="H1961"\w* forty \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1961"\w* \w he|strong="H8141"\w* \w took|strong="H3947"\w* \w Rebekah|strong="H7259"\w*, \w the|strong="H3947"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Bethuel|strong="H1328"\w* \w the|strong="H3947"\w* Syrian \w of|strong="H1121"\w* \w Paddan|strong="H6307"\w* \w Aram|strong="H6307"\w*, \w the|strong="H3947"\w* sister \w of|strong="H1121"\w* \w Laban|strong="H3837"\w* \w the|strong="H3947"\w* Syrian, \w to|strong="H1961"\w* \w be|strong="H1961"\w* \w his|strong="H3947"\w* wife. +\v 21 \w Isaac|strong="H3327"\w* \w entreated|strong="H6279"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H3588"\w* \w his|strong="H3068"\w* wife, \w because|strong="H3588"\w* \w she|strong="H1931"\w* \w was|strong="H3068"\w* \w barren|strong="H6135"\w*. \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w entreated|strong="H6279"\w* \w by|strong="H3068"\w* \w him|strong="H1931"\w*, \w and|strong="H3068"\w* \w Rebekah|strong="H7259"\w* \w his|strong="H3068"\w* wife \w conceived|strong="H2029"\w*. +\v 22 \w The|strong="H3068"\w* \w children|strong="H1121"\w* \w struggled|strong="H7533"\w* \w together|strong="H7533"\w* \w within|strong="H7130"\w* \w her|strong="H7130"\w*. \w She|strong="H3651"\w* \w said|strong="H3651"\w*, “\w If|strong="H3651"\w* \w it|strong="H3651"\w* \w is|strong="H3068"\w* \w like|strong="H3651"\w* \w this|strong="H2088"\w*, \w why|strong="H4100"\w* \w do|strong="H3068"\w* \w I|strong="H3651"\w* \w live|strong="H7130"\w*?” \w She|strong="H3651"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w inquire|strong="H1875"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*. +\v 23 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w her|strong="H8147"\w*, +\q1 “\w Two|strong="H8147"\w* \w nations|strong="H1471"\w* \w are|strong="H1471"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w womb|strong="H4578"\w*. +\q1 \w Two|strong="H8147"\w* \w peoples|strong="H3816"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w separated|strong="H6504"\w* \w from|strong="H1471"\w* \w your|strong="H3068"\w* \w body|strong="H4578"\w*. +\q1 \w The|strong="H5647"\w* \w one|strong="H6810"\w* \w people|strong="H3816"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* stronger \w than|strong="H3068"\w* \w the|strong="H5647"\w* \w other|strong="H8147"\w* \w people|strong="H3816"\w*. +\q1 \w The|strong="H5647"\w* \w elder|strong="H7227"\w* \w will|strong="H3068"\w* \w serve|strong="H5647"\w* \w the|strong="H5647"\w* \w younger|strong="H6810"\w*.” +\p +\v 24 \w When|strong="H3117"\w* \w her|strong="H4390"\w* \w days|strong="H3117"\w* \w to|strong="H3117"\w* \w be|strong="H3117"\w* \w delivered|strong="H3205"\w* \w were|strong="H3117"\w* \w fulfilled|strong="H4390"\w*, \w behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w were|strong="H3117"\w* \w twins|strong="H8380"\w* \w in|strong="H3117"\w* \w her|strong="H4390"\w* womb. +\v 25 \w The|strong="H3605"\w* \w first|strong="H7223"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* red \w all|strong="H3605"\w* \w over|strong="H3318"\w*, \w like|strong="H3318"\w* \w a|strong="H3068"\w* \w hairy|strong="H8181"\w* garment. \w They|strong="H3605"\w* \w named|strong="H7121"\w* \w him|strong="H7121"\w* \w Esau|strong="H6215"\w*. +\v 26 \w After|strong="H3318"\w* \w that|strong="H3651"\w*, \w his|strong="H7121"\w* brother \w came|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H1121"\w* \w his|strong="H7121"\w* \w hand|strong="H3027"\w* \w had|strong="H3205"\w* hold \w on|strong="H3027"\w* \w Esau|strong="H6215"\w*’s \w heel|strong="H6119"\w*. \w He|strong="H3651"\w* \w was|strong="H8034"\w* \w named|strong="H7121"\w* \w Jacob|strong="H3290"\w*. \w Isaac|strong="H3327"\w* \w was|strong="H8034"\w* \w sixty|strong="H8346"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H3318"\w* \w she|strong="H7121"\w* \w bore|strong="H3205"\w* \w them|strong="H3027"\w*. +\p +\v 27 \w The|strong="H3045"\w* \w boys|strong="H5288"\w* \w grew|strong="H1431"\w*. \w Esau|strong="H6215"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w skillful|strong="H3045"\w* \w hunter|strong="H6718"\w*, \w a|strong="H3068"\w* \w man|strong="H5288"\w* \w of|strong="H3427"\w* \w the|strong="H3045"\w* \w field|strong="H7704"\w*. \w Jacob|strong="H3290"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* quiet \w man|strong="H5288"\w*, \w living|strong="H3427"\w* \w in|strong="H3427"\w* tents. +\v 28 \w Now|strong="H3588"\w* \w Isaac|strong="H3327"\w* loved \w Esau|strong="H6215"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* ate \w his|strong="H3327"\w* \w venison|strong="H6718"\w*. \w Rebekah|strong="H7259"\w* loved \w Jacob|strong="H3290"\w*. +\v 29 \w Jacob|strong="H3290"\w* boiled \w stew|strong="H5138"\w*. \w Esau|strong="H6215"\w* came \w in|strong="H4480"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w field|strong="H7704"\w*, \w and|strong="H7704"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w famished|strong="H5889"\w*. +\v 30 \w Esau|strong="H6215"\w* \w said|strong="H7121"\w* \w to|strong="H5921"\w* \w Jacob|strong="H3290"\w*, “\w Please|strong="H4994"\w* \w feed|strong="H3938"\w* \w me|strong="H4994"\w* \w with|strong="H5921"\w* \w some|strong="H4480"\w* \w of|strong="H8034"\w* \w that|strong="H3588"\w* red stew, \w for|strong="H3588"\w* \w I|strong="H3588"\w* am \w famished|strong="H5889"\w*.” \w Therefore|strong="H3651"\w* \w his|strong="H7121"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w called|strong="H7121"\w* Edom.\f + \fr 25:30 \ft “Edom” means “red”.\f* +\p +\v 31 \w Jacob|strong="H3290"\w* said, “\w First|strong="H3117"\w*, \w sell|strong="H4376"\w* \w me|strong="H3117"\w* \w your|strong="H4376"\w* \w birthright|strong="H1062"\w*.” +\p +\v 32 \w Esau|strong="H6215"\w* said, “\w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w am|strong="H1980"\w* \w about|strong="H1980"\w* \w to|strong="H1980"\w* \w die|strong="H4191"\w*. \w What|strong="H4100"\w* \w good|strong="H4100"\w* \w is|strong="H2088"\w* \w the|strong="H4191"\w* \w birthright|strong="H1062"\w* \w to|strong="H1980"\w* \w me|strong="H4191"\w*?” +\p +\v 33 \w Jacob|strong="H3290"\w* said, “\w Swear|strong="H7650"\w* \w to|strong="H3117"\w* \w me|strong="H3117"\w* \w first|strong="H3117"\w*.” +\p \w He|strong="H3117"\w* \w swore|strong="H7650"\w* \w to|strong="H3117"\w* \w him|strong="H3117"\w*. \w He|strong="H3117"\w* \w sold|strong="H4376"\w* \w his|strong="H3290"\w* \w birthright|strong="H1062"\w* \w to|strong="H3117"\w* \w Jacob|strong="H3290"\w*. +\v 34 \w Jacob|strong="H3290"\w* \w gave|strong="H5414"\w* \w Esau|strong="H6215"\w* \w bread|strong="H3899"\w* \w and|strong="H6965"\w* \w lentil|strong="H5742"\w* \w stew|strong="H5138"\w*. \w He|strong="H5414"\w* ate \w and|strong="H6965"\w* \w drank|strong="H8354"\w*, \w rose|strong="H6965"\w* \w up|strong="H6965"\w*, \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w his|strong="H5414"\w* \w way|strong="H3212"\w*. \w So|strong="H5414"\w* \w Esau|strong="H6215"\w* despised \w his|strong="H5414"\w* \w birthright|strong="H1062"\w*. +\c 26 +\p +\v 1 \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w famine|strong="H7458"\w* \w in|strong="H4428"\w* \w the|strong="H3117"\w* land, \w in|strong="H4428"\w* addition \w to|strong="H3212"\w* \w the|strong="H3117"\w* \w first|strong="H7223"\w* \w famine|strong="H7458"\w* \w that|strong="H3117"\w* \w was|strong="H1961"\w* \w in|strong="H4428"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* Abraham. \w Isaac|strong="H3327"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* Abimelech \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3117"\w* \w Philistines|strong="H6430"\w*, \w to|strong="H3212"\w* \w Gerar|strong="H1642"\w*. +\v 2 \w Yahweh|strong="H3068"\w* \w appeared|strong="H7200"\w* \w to|strong="H3381"\w* \w him|strong="H7200"\w*, \w and|strong="H3068"\w* said, “Don’t \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w Egypt|strong="H4714"\w*. \w Live|strong="H7931"\w* \w in|strong="H3068"\w* \w the|strong="H7200"\w* land \w I|strong="H4714"\w* \w will|strong="H3068"\w* \w tell|strong="H7200"\w* \w you|strong="H7200"\w* about. +\v 3 \w Live|strong="H1481"\w* \w in|strong="H5414"\w* \w this|strong="H2063"\w* land, \w and|strong="H6965"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*, \w and|strong="H6965"\w* \w will|strong="H1961"\w* \w bless|strong="H1288"\w* \w you|strong="H3588"\w*. \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w to|strong="H1961"\w* \w you|strong="H3588"\w*, \w and|strong="H6965"\w* \w to|strong="H1961"\w* \w your|strong="H3605"\w* \w offspring|strong="H2233"\w*, \w all|strong="H3605"\w* \w these|strong="H2063"\w* lands, \w and|strong="H6965"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w establish|strong="H6965"\w* \w the|strong="H3605"\w* \w oath|strong="H7621"\w* \w which|strong="H3588"\w* \w I|strong="H3588"\w* \w swore|strong="H7650"\w* \w to|strong="H1961"\w* Abraham \w your|strong="H3605"\w* father. +\v 4 \w I|strong="H5414"\w* \w will|strong="H1471"\w* \w multiply|strong="H7235"\w* \w your|strong="H3605"\w* \w offspring|strong="H2233"\w* \w as|strong="H5414"\w* \w the|strong="H3605"\w* \w stars|strong="H3556"\w* \w of|strong="H2233"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w and|strong="H8064"\w* \w will|strong="H1471"\w* \w give|strong="H5414"\w* \w all|strong="H3605"\w* \w these|strong="H3605"\w* lands \w to|strong="H5414"\w* \w your|strong="H3605"\w* \w offspring|strong="H2233"\w*. \w In|strong="H5414"\w* \w your|strong="H3605"\w* \w offspring|strong="H2233"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w of|strong="H2233"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w* \w will|strong="H1471"\w* \w be|strong="H1471"\w* \w blessed|strong="H1288"\w*, +\v 5 \w because|strong="H6118"\w* Abraham \w obeyed|strong="H8085"\w* \w my|strong="H8104"\w* \w voice|strong="H6963"\w*, \w and|strong="H6963"\w* \w kept|strong="H8104"\w* \w my|strong="H8104"\w* requirements, \w my|strong="H8104"\w* \w commandments|strong="H4687"\w*, \w my|strong="H8104"\w* \w statutes|strong="H2708"\w*, \w and|strong="H6963"\w* \w my|strong="H8104"\w* \w laws|strong="H8451"\w*.” +\p +\v 6 \w Isaac|strong="H3327"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Gerar|strong="H1642"\w*. +\v 7 \w The|strong="H5921"\w* \w men|strong="H2896"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w asked|strong="H7592"\w* \w him|strong="H5921"\w* \w about|strong="H5921"\w* \w his|strong="H5921"\w* wife. \w He|strong="H1931"\w* said, “\w She|strong="H1931"\w* \w is|strong="H1931"\w* \w my|strong="H5921"\w* sister,” \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w afraid|strong="H3372"\w* \w to|strong="H5921"\w* say, “\w My|strong="H5921"\w* wife”, \w lest|strong="H6435"\w*, \w he|strong="H1931"\w* thought, “\w the|strong="H5921"\w* \w men|strong="H2896"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w might|strong="H6435"\w* \w kill|strong="H2026"\w* \w me|strong="H5921"\w* \w for|strong="H3588"\w* \w Rebekah|strong="H7259"\w*, \w because|strong="H3588"\w* \w she|strong="H1931"\w* \w is|strong="H1931"\w* \w beautiful|strong="H2896"\w* \w to|strong="H5921"\w* look \w at|strong="H5921"\w*.” +\v 8 \w When|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H1961"\w* \w been|strong="H1961"\w* \w there|strong="H8033"\w* \w a|strong="H3068"\w* \w long|strong="H3117"\w* \w time|strong="H3117"\w*, Abimelech \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H7200"\w* \w Philistines|strong="H6430"\w* \w looked|strong="H7200"\w* \w out|strong="H8259"\w* \w at|strong="H3117"\w* \w a|strong="H3068"\w* \w window|strong="H2474"\w*, \w and|strong="H4428"\w* \w saw|strong="H7200"\w*, \w and|strong="H4428"\w*, \w behold|strong="H2009"\w*, \w Isaac|strong="H3327"\w* \w was|strong="H1961"\w* \w caressing|strong="H6711"\w* \w Rebekah|strong="H7259"\w*, \w his|strong="H7200"\w* wife. +\v 9 Abimelech \w called|strong="H7121"\w* \w Isaac|strong="H3327"\w*, \w and|strong="H3327"\w* \w said|strong="H7121"\w*, “\w Behold|strong="H2009"\w*, \w surely|strong="H4191"\w* \w she|strong="H1931"\w* \w is|strong="H1931"\w* \w your|strong="H5921"\w* wife. \w Why|strong="H5921"\w* \w did|strong="H3327"\w* \w you|strong="H3588"\w* say, ‘\w She|strong="H1931"\w* \w is|strong="H1931"\w* \w my|strong="H5921"\w* sister’?” +\p \w Isaac|strong="H3327"\w* \w said|strong="H7121"\w* \w to|strong="H4191"\w* \w him|strong="H7121"\w*, “\w Because|strong="H3588"\w* \w I|strong="H3588"\w* \w said|strong="H7121"\w*, ‘\w Lest|strong="H6435"\w* \w I|strong="H3588"\w* \w die|strong="H4191"\w* \w because|strong="H3588"\w* \w of|strong="H5921"\w* \w her|strong="H5921"\w*.’” +\p +\v 10 Abimelech said, “\w What|strong="H4100"\w* \w is|strong="H4100"\w* \w this|strong="H2063"\w* \w you|strong="H5921"\w* \w have|strong="H5971"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w us|strong="H5921"\w*? \w One|strong="H6213"\w* \w of|strong="H5971"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w might|strong="H5971"\w* \w easily|strong="H4592"\w* \w have|strong="H5971"\w* \w lain|strong="H7901"\w* \w with|strong="H6213"\w* \w your|strong="H5921"\w* wife, \w and|strong="H5971"\w* \w you|strong="H5921"\w* \w would|strong="H5971"\w* \w have|strong="H5971"\w* \w brought|strong="H6213"\w* guilt \w on|strong="H5921"\w* \w us|strong="H5921"\w*!” +\p +\v 11 Abimelech \w commanded|strong="H6680"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, saying, “\w He|strong="H3605"\w* \w who|strong="H3605"\w* \w touches|strong="H5060"\w* \w this|strong="H2088"\w* \w man|strong="H4191"\w* \w or|strong="H4191"\w* \w his|strong="H3605"\w* wife \w will|strong="H5971"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*.” +\p +\v 12 \w Isaac|strong="H3327"\w* \w sowed|strong="H2232"\w* \w in|strong="H8141"\w* \w that|strong="H1931"\w* land, \w and|strong="H3967"\w* \w reaped|strong="H4672"\w* \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w same|strong="H1931"\w* \w year|strong="H8141"\w* \w one|strong="H1931"\w* \w hundred|strong="H3967"\w* \w times|strong="H3967"\w* what \w he|strong="H1931"\w* \w planted|strong="H2232"\w*. \w Yahweh|strong="H3068"\w* \w blessed|strong="H1288"\w* \w him|strong="H4672"\w*. +\v 13 \w The|strong="H3588"\w* man \w grew|strong="H1431"\w* \w great|strong="H1431"\w*, \w and|strong="H1980"\w* \w grew|strong="H1431"\w* \w more|strong="H3966"\w* \w and|strong="H1980"\w* \w more|strong="H3966"\w* \w until|strong="H5704"\w* \w he|strong="H3588"\w* \w became|strong="H1431"\w* \w very|strong="H3966"\w* \w great|strong="H1431"\w*. +\v 14 \w He|strong="H1241"\w* \w had|strong="H1961"\w* \w possessions|strong="H4735"\w* \w of|strong="H6629"\w* \w flocks|strong="H6629"\w*, \w possessions|strong="H4735"\w* \w of|strong="H6629"\w* \w herds|strong="H1241"\w*, \w and|strong="H6629"\w* \w a|strong="H3068"\w* \w great|strong="H7227"\w* \w household|strong="H5657"\w*. \w The|strong="H1961"\w* \w Philistines|strong="H6430"\w* \w envied|strong="H7065"\w* \w him|strong="H7065"\w*. +\v 15 \w Now|strong="H3117"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* wells \w which|strong="H3117"\w* \w his|strong="H3605"\w* father’s \w servants|strong="H5650"\w* \w had|strong="H6430"\w* \w dug|strong="H2658"\w* \w in|strong="H3117"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* Abraham \w his|strong="H3605"\w* father, \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w had|strong="H6430"\w* \w stopped|strong="H5640"\w*, \w and|strong="H3117"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w earth|strong="H6083"\w*. +\v 16 Abimelech said \w to|strong="H3212"\w* \w Isaac|strong="H3327"\w*, “\w Go|strong="H3212"\w* \w away|strong="H3212"\w* \w from|strong="H4480"\w* \w us|strong="H3588"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H5973"\w* \w much|strong="H3966"\w* \w mightier|strong="H6105"\w* \w than|strong="H4480"\w* \w we|strong="H3068"\w*.” +\p +\v 17 \w Isaac|strong="H3327"\w* \w departed|strong="H3212"\w* \w from|strong="H3212"\w* \w there|strong="H8033"\w*, \w encamped|strong="H2583"\w* \w in|strong="H3427"\w* \w the|strong="H8033"\w* \w valley|strong="H5158"\w* \w of|strong="H3427"\w* \w Gerar|strong="H1642"\w*, \w and|strong="H3212"\w* \w lived|strong="H3427"\w* \w there|strong="H8033"\w*. +\p +\v 18 \w Isaac|strong="H3327"\w* \w dug|strong="H2658"\w* \w again|strong="H7725"\w* \w the|strong="H7725"\w* wells \w of|strong="H3117"\w* \w water|strong="H4325"\w*, \w which|strong="H4325"\w* \w they|strong="H3117"\w* \w had|strong="H6430"\w* \w dug|strong="H2658"\w* \w in|strong="H3117"\w* \w the|strong="H7725"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* Abraham \w his|strong="H7121"\w* father, \w for|strong="H7121"\w* \w the|strong="H7725"\w* \w Philistines|strong="H6430"\w* \w had|strong="H6430"\w* \w stopped|strong="H5640"\w* \w them|strong="H7725"\w* \w after|strong="H3117"\w* \w the|strong="H7725"\w* \w death|strong="H4194"\w* \w of|strong="H3117"\w* Abraham. \w He|strong="H3117"\w* \w called|strong="H7121"\w* \w their|strong="H7725"\w* \w names|strong="H8034"\w* \w after|strong="H3117"\w* \w the|strong="H7725"\w* \w names|strong="H8034"\w* \w by|strong="H3117"\w* \w which|strong="H4325"\w* \w his|strong="H7121"\w* father \w had|strong="H6430"\w* \w called|strong="H7121"\w* \w them|strong="H7725"\w*. +\v 19 \w Isaac|strong="H3327"\w*’s \w servants|strong="H5650"\w* \w dug|strong="H2658"\w* \w in|strong="H4672"\w* \w the|strong="H4672"\w* \w valley|strong="H5158"\w*, \w and|strong="H5650"\w* \w found|strong="H4672"\w* \w there|strong="H8033"\w* \w a|strong="H3068"\w* well \w of|strong="H5650"\w* \w flowing|strong="H2416"\w*\f + \fr 26:19 \ft Or, living. Or, fresh.\f* \w water|strong="H4325"\w*. +\v 20 \w The|strong="H3588"\w* \w herdsmen|strong="H7473"\w* \w of|strong="H4325"\w* \w Gerar|strong="H1642"\w* argued \w with|strong="H5973"\w* \w Isaac|strong="H3327"\w*’s \w herdsmen|strong="H7473"\w*, saying, “\w The|strong="H3588"\w* \w water|strong="H4325"\w* \w is|strong="H8034"\w* ours.” \w So|strong="H7121"\w* \w he|strong="H3588"\w* \w called|strong="H7121"\w* \w the|strong="H3588"\w* \w name|strong="H8034"\w* \w of|strong="H4325"\w* \w the|strong="H3588"\w* \w well|strong="H5973"\w* \w Esek|strong="H6230"\w*,\f + \fr 26:20 \ft “Esek” means “contention”.\f* \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w contended|strong="H7378"\w* \w with|strong="H5973"\w* \w him|strong="H7121"\w*. +\v 21 \w They|strong="H5921"\w* \w dug|strong="H2658"\w* \w another|strong="H1571"\w* \w well|strong="H1571"\w*, \w and|strong="H8034"\w* \w they|strong="H5921"\w* argued \w over|strong="H5921"\w* \w that|strong="H7121"\w*, \w also|strong="H1571"\w*. \w So|strong="H7121"\w* \w he|strong="H5921"\w* \w called|strong="H7121"\w* \w its|strong="H5921"\w* \w name|strong="H8034"\w* \w Sitnah|strong="H7856"\w*.\f + \fr 26:21 \ft “Sitnah” means “hostility”.\f* +\v 22 \w He|strong="H3588"\w* \w left|strong="H8033"\w* \w that|strong="H3588"\w* \w place|strong="H8033"\w*, \w and|strong="H3068"\w* \w dug|strong="H2658"\w* \w another|strong="H3808"\w* well. \w They|strong="H3588"\w* didn’t \w argue|strong="H7378"\w* \w over|strong="H5921"\w* \w that|strong="H3588"\w* \w one|strong="H3808"\w*. \w So|strong="H7121"\w* \w he|strong="H3588"\w* \w called|strong="H7121"\w* \w it|strong="H7121"\w* \w Rehoboth|strong="H7344"\w*.\f + \fr 26:22 \ft “Rehoboth” means “broad places”.\f* \w He|strong="H3588"\w* \w said|strong="H7121"\w*, “\w For|strong="H3588"\w* \w now|strong="H6258"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w made|strong="H7337"\w* \w room|strong="H7337"\w* \w for|strong="H3588"\w* \w us|strong="H5921"\w*, \w and|strong="H3068"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w fruitful|strong="H6509"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land.” +\p +\v 23 \w He|strong="H8033"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5927"\w* \w there|strong="H8033"\w* \w to|strong="H5927"\w* Beersheba. +\v 24 \w Yahweh|strong="H3068"\w* \w appeared|strong="H7200"\w* \w to|strong="H3068"\w* \w him|strong="H7200"\w* \w the|strong="H7200"\w* \w same|strong="H1931"\w* \w night|strong="H3915"\w*, \w and|strong="H3068"\w* said, “\w I|strong="H3588"\w* \w am|strong="H3068"\w* \w the|strong="H7200"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* Abraham \w your|strong="H3068"\w* father. Don’t \w be|strong="H3068"\w* \w afraid|strong="H3372"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w bless|strong="H1288"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w multiply|strong="H7235"\w* \w your|strong="H3068"\w* \w offspring|strong="H2233"\w* \w for|strong="H3588"\w* \w my|strong="H3068"\w* \w servant|strong="H5650"\w* Abraham’s \w sake|strong="H5668"\w*.” +\p +\v 25 \w He|strong="H8033"\w* \w built|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w there|strong="H8033"\w*, \w and|strong="H3068"\w* \w called|strong="H7121"\w* \w on|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*, \w and|strong="H3068"\w* \w pitched|strong="H5186"\w* \w his|strong="H3068"\w* tent \w there|strong="H8033"\w*. \w There|strong="H8033"\w* \w Isaac|strong="H3327"\w*’s \w servants|strong="H5650"\w* \w dug|strong="H3738"\w* \w a|strong="H3068"\w* well. +\p +\v 26 \w Then|strong="H1980"\w* Abimelech \w went|strong="H1980"\w* \w to|strong="H1980"\w* \w him|strong="H1980"\w* \w from|strong="H1980"\w* \w Gerar|strong="H1642"\w* \w with|strong="H1980"\w* Ahuzzath \w his|strong="H1980"\w* friend, \w and|strong="H1980"\w* \w Phicol|strong="H6369"\w* \w the|strong="H1980"\w* \w captain|strong="H8269"\w* \w of|strong="H8269"\w* \w his|strong="H1980"\w* \w army|strong="H6635"\w*. +\v 27 \w Isaac|strong="H3327"\w* said \w to|strong="H7971"\w* \w them|strong="H7971"\w*, “\w Why|strong="H4069"\w* \w have|strong="H4069"\w* \w you|strong="H7971"\w* \w come|strong="H7971"\w* \w to|strong="H7971"\w* \w me|strong="H7971"\w*, since \w you|strong="H7971"\w* \w hate|strong="H8130"\w* \w me|strong="H7971"\w*, \w and|strong="H7971"\w* \w have|strong="H4069"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w* \w away|strong="H7971"\w* \w from|strong="H7971"\w* \w you|strong="H7971"\w*?” +\p +\v 28 \w They|strong="H3588"\w* said, “\w We|strong="H3588"\w* \w saw|strong="H7200"\w* \w plainly|strong="H7200"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*. \w We|strong="H3588"\w* said, ‘\w Let|strong="H4994"\w* \w there|strong="H1961"\w* \w now|strong="H4994"\w* \w be|strong="H1961"\w* \w an|strong="H1961"\w* oath \w between|strong="H5973"\w* \w us|strong="H4994"\w*, \w even|strong="H3588"\w* \w between|strong="H5973"\w* \w us|strong="H4994"\w* \w and|strong="H3068"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w let|strong="H4994"\w*’s \w make|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*, +\v 29 \w that|strong="H3068"\w* \w you|strong="H7971"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w us|strong="H6213"\w* \w no|strong="H3808"\w* \w harm|strong="H7451"\w*, \w as|strong="H6213"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w touched|strong="H5060"\w* \w you|strong="H7971"\w*, \w and|strong="H3068"\w* \w as|strong="H6213"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w to|strong="H3068"\w* \w you|strong="H7971"\w* \w nothing|strong="H3808"\w* \w but|strong="H7535"\w* \w good|strong="H2896"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w sent|strong="H7971"\w* \w you|strong="H7971"\w* \w away|strong="H7971"\w* \w in|strong="H3068"\w* \w peace|strong="H7965"\w*.’ \w You|strong="H7971"\w* \w are|strong="H3068"\w* \w now|strong="H6258"\w* \w the|strong="H6213"\w* \w blessed|strong="H1288"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 30 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w them|strong="H6213"\w* \w a|strong="H3068"\w* \w feast|strong="H4960"\w*, \w and|strong="H6213"\w* \w they|strong="H6213"\w* ate \w and|strong="H6213"\w* \w drank|strong="H8354"\w*. +\v 31 \w They|strong="H7965"\w* \w rose|strong="H7925"\w* \w up|strong="H7925"\w* some time \w in|strong="H3212"\w* \w the|strong="H7971"\w* \w morning|strong="H1242"\w*, \w and|strong="H7971"\w* \w swore|strong="H7650"\w* \w an|strong="H7971"\w* \w oath|strong="H7650"\w* \w to|strong="H3212"\w* one another. \w Isaac|strong="H3327"\w* \w sent|strong="H7971"\w* \w them|strong="H7971"\w* \w away|strong="H7971"\w*, \w and|strong="H7971"\w* \w they|strong="H7965"\w* \w departed|strong="H3212"\w* \w from|strong="H7971"\w* \w him|strong="H7971"\w* \w in|strong="H3212"\w* \w peace|strong="H7965"\w*. +\v 32 \w The|strong="H5921"\w* \w same|strong="H1931"\w* \w day|strong="H3117"\w*, \w Isaac|strong="H3327"\w*’s \w servants|strong="H5650"\w* \w came|strong="H1961"\w*, \w and|strong="H3117"\w* \w told|strong="H5046"\w* \w him|strong="H5921"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* well \w which|strong="H1931"\w* \w they|strong="H3117"\w* \w had|strong="H1961"\w* \w dug|strong="H2658"\w*, \w and|strong="H3117"\w* said \w to|strong="H1961"\w* \w him|strong="H5921"\w*, “\w We|strong="H3117"\w* \w have|strong="H1961"\w* \w found|strong="H4672"\w* \w water|strong="H4325"\w*.” +\v 33 \w He|strong="H3117"\w* \w called|strong="H7121"\w* \w it|strong="H7121"\w* “\w Shibah|strong="H7656"\w*”.\f + \fr 26:33 \ft Shibah means “oath” or “seven”.\f* \w Therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w is|strong="H2088"\w* “Beersheba”\f + \fr 26:33 \ft Beersheba means “well of the oath” or “well of the seven”\f* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\p +\v 34 \w When|strong="H1961"\w* \w Esau|strong="H6215"\w* \w was|strong="H1961"\w* forty \w years|strong="H8141"\w* \w old|strong="H1121"\w*, \w he|strong="H8141"\w* \w took|strong="H3947"\w* \w as|strong="H1961"\w* wife \w Judith|strong="H3067"\w*, \w the|strong="H3947"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* Beeri \w the|strong="H3947"\w* \w Hittite|strong="H2850"\w*, \w and|strong="H1121"\w* \w Basemath|strong="H1315"\w*, \w the|strong="H3947"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* Elon \w the|strong="H3947"\w* \w Hittite|strong="H2850"\w*. +\v 35 They grieved \w Isaac|strong="H3327"\w*’s \w and|strong="H3327"\w* \w Rebekah|strong="H7259"\w*’s \w spirits|strong="H7307"\w*. +\c 27 +\p +\v 1 \w When|strong="H3588"\w* \w Isaac|strong="H3327"\w* \w was|strong="H1961"\w* \w old|strong="H1121"\w*, \w and|strong="H1121"\w* \w his|strong="H7121"\w* \w eyes|strong="H5869"\w* \w were|strong="H1961"\w* \w dim|strong="H3543"\w*, \w so|strong="H1961"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* could \w not|strong="H1961"\w* \w see|strong="H7200"\w*, \w he|strong="H3588"\w* \w called|strong="H7121"\w* \w Esau|strong="H6215"\w* \w his|strong="H7121"\w* \w elder|strong="H1419"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w said|strong="H7121"\w* \w to|strong="H1961"\w* \w him|strong="H7121"\w*, “\w My|strong="H7200"\w* \w son|strong="H1121"\w*?” +\p \w He|strong="H3588"\w* \w said|strong="H7121"\w* \w to|strong="H1961"\w* \w him|strong="H7121"\w*, “\w Here|strong="H2009"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w*.” +\p +\v 2 \w He|strong="H3117"\w* said, “\w See|strong="H2009"\w* \w now|strong="H4994"\w*, \w I|strong="H3117"\w* \w am|strong="H2204"\w* \w old|strong="H2204"\w*. \w I|strong="H3117"\w* don’t \w know|strong="H3045"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w my|strong="H3045"\w* \w death|strong="H4194"\w*. +\v 3 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w please|strong="H4994"\w* \w take|strong="H5375"\w* \w your|strong="H5375"\w* \w weapons|strong="H3627"\w*, \w your|strong="H5375"\w* \w quiver|strong="H8522"\w* \w and|strong="H7704"\w* \w your|strong="H5375"\w* \w bow|strong="H7198"\w*, \w and|strong="H7704"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H5375"\w* \w field|strong="H7704"\w*, \w and|strong="H7704"\w* \w get|strong="H3318"\w* \w me|strong="H4994"\w* venison. +\v 4 \w Make|strong="H6213"\w* \w me|strong="H5315"\w* \w savory|strong="H4303"\w* \w food|strong="H4303"\w*, \w such|strong="H6213"\w* \w as|strong="H6213"\w* \w I|strong="H2962"\w* love, \w and|strong="H6213"\w* \w bring|strong="H6213"\w* \w it|strong="H6213"\w* \w to|strong="H4191"\w* \w me|strong="H5315"\w*, \w that|strong="H5315"\w* \w I|strong="H2962"\w* \w may|strong="H5315"\w* eat, \w and|strong="H6213"\w* \w that|strong="H5315"\w* \w my|strong="H6213"\w* \w soul|strong="H5315"\w* \w may|strong="H5315"\w* \w bless|strong="H1288"\w* \w you|strong="H6213"\w* \w before|strong="H2962"\w* \w I|strong="H2962"\w* \w die|strong="H4191"\w*.” +\p +\v 5 \w Rebekah|strong="H7259"\w* \w heard|strong="H8085"\w* \w when|strong="H8085"\w* \w Isaac|strong="H3327"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Esau|strong="H6215"\w* \w his|strong="H8085"\w* \w son|strong="H1121"\w*. \w Esau|strong="H6215"\w* \w went|strong="H3212"\w* \w to|strong="H1696"\w* \w the|strong="H8085"\w* \w field|strong="H7704"\w* \w to|strong="H1696"\w* \w hunt|strong="H6679"\w* \w for|strong="H1121"\w* \w venison|strong="H6718"\w*, \w and|strong="H1121"\w* \w to|strong="H1696"\w* \w bring|strong="H3212"\w* \w it|strong="H1696"\w*. +\v 6 \w Rebekah|strong="H7259"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Jacob|strong="H3290"\w* \w her|strong="H3290"\w* \w son|strong="H1121"\w*, \w saying|strong="H1696"\w*, “\w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w heard|strong="H8085"\w* \w your|strong="H8085"\w* \w father|strong="H1121"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w Esau|strong="H6215"\w* \w your|strong="H8085"\w* brother, \w saying|strong="H1696"\w*, +\v 7 ‘\w Bring|strong="H6213"\w* \w me|strong="H6440"\w* \w venison|strong="H6718"\w*, \w and|strong="H3068"\w* \w make|strong="H6213"\w* \w me|strong="H6440"\w* \w savory|strong="H4303"\w* \w food|strong="H4303"\w*, \w that|strong="H3068"\w* \w I|strong="H6440"\w* \w may|strong="H3068"\w* eat, \w and|strong="H3068"\w* \w bless|strong="H1288"\w* \w you|strong="H6440"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w before|strong="H6440"\w* \w my|strong="H3068"\w* \w death|strong="H4194"\w*.’ +\v 8 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w my|strong="H8085"\w* \w son|strong="H1121"\w*, \w obey|strong="H8085"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w* according \w to|strong="H8085"\w* \w that|strong="H8085"\w* \w which|strong="H8085"\w* \w I|strong="H6258"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w*. +\v 9 \w Go|strong="H3212"\w* \w now|strong="H4994"\w* \w to|strong="H3212"\w* \w the|strong="H3947"\w* \w flock|strong="H6629"\w* \w and|strong="H3212"\w* \w get|strong="H3947"\w* \w me|strong="H4994"\w* \w two|strong="H8147"\w* \w good|strong="H2896"\w* \w young|strong="H1423"\w* \w goats|strong="H5795"\w* \w from|strong="H3947"\w* \w there|strong="H8033"\w*. \w I|strong="H3212"\w* \w will|strong="H6629"\w* \w make|strong="H6213"\w* \w them|strong="H6213"\w* \w savory|strong="H4303"\w* \w food|strong="H4303"\w* \w for|strong="H6213"\w* \w your|strong="H3947"\w* father, \w such|strong="H6213"\w* \w as|strong="H6213"\w* \w he|strong="H8033"\w* loves. +\v 10 \w You|strong="H6440"\w* \w shall|strong="H6440"\w* bring \w it|strong="H6440"\w* \w to|strong="H6440"\w* \w your|strong="H6440"\w* father, \w that|strong="H5668"\w* \w he|strong="H6440"\w* \w may|strong="H1288"\w* eat, \w so|strong="H5668"\w* \w that|strong="H5668"\w* \w he|strong="H6440"\w* \w may|strong="H1288"\w* \w bless|strong="H1288"\w* \w you|strong="H6440"\w* \w before|strong="H6440"\w* \w his|strong="H6440"\w* \w death|strong="H4194"\w*.” +\p +\v 11 \w Jacob|strong="H3290"\w* said \w to|strong="H3290"\w* \w Rebekah|strong="H7259"\w* \w his|strong="H3290"\w* mother, “\w Behold|strong="H2005"\w*, \w Esau|strong="H6215"\w* \w my|strong="H3290"\w* brother \w is|strong="H6215"\w* \w a|strong="H3068"\w* \w hairy|strong="H8163"\w* man, \w and|strong="H3290"\w* \w I|strong="H2005"\w* \w am|strong="H2005"\w* \w a|strong="H3068"\w* \w smooth|strong="H2509"\w* man. +\v 12 \w What|strong="H5921"\w* \w if|strong="H1961"\w* \w my|strong="H5921"\w* father touches \w me|strong="H5921"\w*? \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w seem|strong="H5869"\w* \w to|strong="H1961"\w* \w him|strong="H5921"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w deceiver|strong="H8591"\w*, \w and|strong="H5869"\w* \w I|strong="H5921"\w* would \w bring|strong="H1961"\w* \w a|strong="H3068"\w* \w curse|strong="H7045"\w* \w on|strong="H5921"\w* myself, \w and|strong="H5869"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w blessing|strong="H1293"\w*.” +\p +\v 13 \w His|strong="H3947"\w* mother \w said|strong="H8085"\w* \w to|strong="H3212"\w* \w him|strong="H5921"\w*, “\w Let|strong="H3212"\w* \w your|strong="H5921"\w* \w curse|strong="H7045"\w* \w be|strong="H1121"\w* \w on|strong="H5921"\w* \w me|strong="H5921"\w*, \w my|strong="H8085"\w* \w son|strong="H1121"\w*. Only \w obey|strong="H8085"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*, \w and|strong="H1121"\w* \w go|strong="H3212"\w* \w get|strong="H3947"\w* \w them|strong="H5921"\w* \w for|strong="H5921"\w* \w me|strong="H5921"\w*.” +\p +\v 14 \w He|strong="H6213"\w* \w went|strong="H3212"\w*, \w and|strong="H3212"\w* \w got|strong="H3947"\w* \w them|strong="H6213"\w*, \w and|strong="H3212"\w* \w brought|strong="H3947"\w* \w them|strong="H6213"\w* \w to|strong="H3212"\w* \w his|strong="H3947"\w* mother. \w His|strong="H3947"\w* mother \w made|strong="H6213"\w* \w savory|strong="H4303"\w* \w food|strong="H4303"\w*, \w such|strong="H6213"\w* \w as|strong="H6213"\w* \w his|strong="H3947"\w* father loved. +\v 15 \w Rebekah|strong="H7259"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* good \w clothes|strong="H3847"\w* \w of|strong="H1121"\w* \w Esau|strong="H6215"\w*, \w her|strong="H3947"\w* \w elder|strong="H1419"\w* \w son|strong="H1121"\w*, \w which|strong="H1004"\w* \w were|strong="H1121"\w* \w with|strong="H1004"\w* \w her|strong="H3947"\w* \w in|strong="H1004"\w* \w the|strong="H3947"\w* \w house|strong="H1004"\w*, \w and|strong="H1121"\w* \w put|strong="H3847"\w* \w them|strong="H3947"\w* \w on|strong="H3847"\w* \w Jacob|strong="H3290"\w*, \w her|strong="H3947"\w* \w younger|strong="H6996"\w* \w son|strong="H1121"\w*. +\v 16 \w She|strong="H5921"\w* \w put|strong="H3847"\w* \w the|strong="H5921"\w* \w skins|strong="H5785"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w young|strong="H1423"\w* \w goats|strong="H5795"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w hands|strong="H3027"\w*, \w and|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w smooth|strong="H2513"\w* \w of|strong="H3027"\w* \w his|strong="H5921"\w* \w neck|strong="H6677"\w*. +\v 17 \w She|strong="H4303"\w* \w gave|strong="H5414"\w* \w the|strong="H5414"\w* \w savory|strong="H4303"\w* \w food|strong="H3899"\w* \w and|strong="H1121"\w* \w the|strong="H5414"\w* \w bread|strong="H3899"\w*, \w which|strong="H3899"\w* \w she|strong="H4303"\w* \w had|strong="H3290"\w* \w prepared|strong="H6213"\w*, \w into|strong="H6213"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w her|strong="H5414"\w* \w son|strong="H1121"\w* \w Jacob|strong="H3290"\w*. +\p +\v 18 \w He|strong="H4310"\w* came \w to|strong="H1121"\w* \w his|strong="H1121"\w* \w father|strong="H1121"\w*, \w and|strong="H1121"\w* said, “My \w father|strong="H1121"\w*?” +\p \w He|strong="H4310"\w* said, “\w Here|strong="H2009"\w* \w I|strong="H2009"\w* am. \w Who|strong="H4310"\w* \w are|strong="H1121"\w* \w you|strong="H2009"\w*, my \w son|strong="H1121"\w*?” +\p +\v 19 \w Jacob|strong="H3290"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w his|strong="H1288"\w* father, “\w I|strong="H5315"\w* am \w Esau|strong="H6215"\w* \w your|strong="H6213"\w* \w firstborn|strong="H1060"\w*. \w I|strong="H5315"\w* \w have|strong="H1696"\w* \w done|strong="H6213"\w* \w what|strong="H6213"\w* \w you|strong="H6213"\w* \w asked|strong="H1696"\w* \w me|strong="H4994"\w* \w to|strong="H1696"\w* \w do|strong="H6213"\w*. \w Please|strong="H4994"\w* \w arise|strong="H6965"\w*, \w sit|strong="H3427"\w* \w and|strong="H6965"\w* eat \w of|strong="H3427"\w* \w my|strong="H6965"\w* \w venison|strong="H6718"\w*, \w that|strong="H5315"\w* \w your|strong="H6213"\w* \w soul|strong="H5315"\w* \w may|strong="H4994"\w* \w bless|strong="H1288"\w* \w me|strong="H4994"\w*.” +\p +\v 20 \w Isaac|strong="H3327"\w* said \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w son|strong="H1121"\w*, “\w How|strong="H4100"\w* \w is|strong="H3068"\w* \w it|strong="H3588"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w found|strong="H4672"\w* \w it|strong="H3588"\w* \w so|strong="H2088"\w* \w quickly|strong="H4116"\w*, \w my|strong="H3068"\w* \w son|strong="H1121"\w*?” +\p \w He|strong="H3588"\w* said, “\w Because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* gave \w me|strong="H6440"\w* \w success|strong="H7136"\w*.” +\p +\v 21 \w Isaac|strong="H3327"\w* said \w to|strong="H1121"\w* \w Jacob|strong="H3290"\w*, “\w Please|strong="H4994"\w* \w come|strong="H5066"\w* \w near|strong="H5066"\w*, \w that|strong="H1121"\w* \w I|strong="H2088"\w* \w may|strong="H4994"\w* \w feel|strong="H4184"\w* \w you|strong="H3808"\w*, \w my|strong="H3290"\w* \w son|strong="H1121"\w*, whether \w you|strong="H3808"\w* \w are|strong="H1121"\w* \w really|strong="H2088"\w* \w my|strong="H3290"\w* \w son|strong="H1121"\w* \w Esau|strong="H6215"\w* \w or|strong="H3808"\w* \w not|strong="H3808"\w*.” +\p +\v 22 \w Jacob|strong="H3290"\w* \w went|strong="H3290"\w* \w near|strong="H5066"\w* \w to|strong="H3027"\w* \w Isaac|strong="H3327"\w* \w his|strong="H3027"\w* father. \w He|strong="H3027"\w* \w felt|strong="H4959"\w* \w him|strong="H3027"\w*, \w and|strong="H3027"\w* said, “\w The|strong="H3027"\w* \w voice|strong="H6963"\w* \w is|strong="H3027"\w* \w Jacob|strong="H3290"\w*’s \w voice|strong="H6963"\w*, \w but|strong="H3290"\w* \w the|strong="H3027"\w* \w hands|strong="H3027"\w* \w are|strong="H3027"\w* \w the|strong="H3027"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w Esau|strong="H6215"\w*.” +\v 23 \w He|strong="H3588"\w* didn’t \w recognize|strong="H5234"\w* \w him|strong="H3027"\w*, \w because|strong="H3588"\w* \w his|strong="H3027"\w* \w hands|strong="H3027"\w* \w were|strong="H1961"\w* \w hairy|strong="H8163"\w*, \w like|strong="H1961"\w* \w his|strong="H3027"\w* brother \w Esau|strong="H6215"\w*’s \w hands|strong="H3027"\w*. \w So|strong="H1961"\w* \w he|strong="H3588"\w* \w blessed|strong="H1288"\w* \w him|strong="H3027"\w*. +\v 24 \w He|strong="H2088"\w* said, “\w Are|strong="H1121"\w* \w you|strong="H2088"\w* \w really|strong="H2088"\w* \w my|strong="H6215"\w* \w son|strong="H1121"\w* \w Esau|strong="H6215"\w*?” +\p \w He|strong="H2088"\w* said, “\w I|strong="H2088"\w* am.” +\p +\v 25 \w He|strong="H5315"\w* said, “\w Bring|strong="H5066"\w* \w it|strong="H5315"\w* \w near|strong="H5066"\w* \w to|strong="H1121"\w* \w me|strong="H5315"\w*, \w and|strong="H1121"\w* \w I|strong="H5315"\w* \w will|strong="H5315"\w* eat \w of|strong="H1121"\w* \w my|strong="H8354"\w* \w son|strong="H1121"\w*’s \w venison|strong="H6718"\w*, \w that|strong="H5315"\w* \w my|strong="H8354"\w* \w soul|strong="H5315"\w* \w may|strong="H5315"\w* \w bless|strong="H1288"\w* \w you|strong="H1288"\w*.” +\p \w He|strong="H5315"\w* \w brought|strong="H5066"\w* \w it|strong="H5315"\w* \w near|strong="H5066"\w* \w to|strong="H1121"\w* \w him|strong="H1288"\w*, \w and|strong="H1121"\w* \w he|strong="H5315"\w* ate. \w He|strong="H5315"\w* \w brought|strong="H5066"\w* \w him|strong="H1288"\w* \w wine|strong="H3196"\w*, \w and|strong="H1121"\w* \w he|strong="H5315"\w* \w drank|strong="H8354"\w*. +\v 26 \w His|strong="H3327"\w* \w father|strong="H1121"\w* \w Isaac|strong="H3327"\w* said \w to|strong="H1121"\w* \w him|strong="H5401"\w*, “\w Come|strong="H5066"\w* \w near|strong="H5066"\w* \w now|strong="H4994"\w*, \w and|strong="H1121"\w* \w kiss|strong="H5401"\w* \w me|strong="H4994"\w*, \w my|strong="H5401"\w* \w son|strong="H1121"\w*.” +\v 27 \w He|strong="H3068"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w*, \w and|strong="H1121"\w* \w kissed|strong="H5401"\w* \w him|strong="H7200"\w*. \w He|strong="H3068"\w* \w smelled|strong="H7306"\w* \w the|strong="H7200"\w* \w smell|strong="H7381"\w* \w of|strong="H1121"\w* \w his|strong="H3068"\w* clothing, \w and|strong="H1121"\w* \w blessed|strong="H1288"\w* \w him|strong="H7200"\w*, \w and|strong="H1121"\w* said, +\q1 “\w Behold|strong="H7200"\w*, \w the|strong="H7200"\w* \w smell|strong="H7381"\w* \w of|strong="H1121"\w* \w my|strong="H3068"\w* \w son|strong="H1121"\w* +\q2 \w is|strong="H3068"\w* \w as|strong="H3068"\w* \w the|strong="H7200"\w* \w smell|strong="H7381"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w field|strong="H7704"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w blessed|strong="H1288"\w*. +\q1 +\v 28 \w God|strong="H5414"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w of|strong="H7230"\w* \w the|strong="H5414"\w* \w dew|strong="H2919"\w* \w of|strong="H7230"\w* \w the|strong="H5414"\w* \w sky|strong="H8064"\w*, +\q2 \w of|strong="H7230"\w* \w the|strong="H5414"\w* \w fatness|strong="H4924"\w* \w of|strong="H7230"\w* \w the|strong="H5414"\w* \w earth|strong="H8064"\w*, +\q2 \w and|strong="H8064"\w* \w plenty|strong="H7230"\w* \w of|strong="H7230"\w* \w grain|strong="H1715"\w* \w and|strong="H8064"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w*. +\q1 +\v 29 Let \w peoples|strong="H5971"\w* \w serve|strong="H5647"\w* \w you|strong="H1288"\w*, +\q2 \w and|strong="H1121"\w* \w nations|strong="H5971"\w* \w bow|strong="H7812"\w* \w down|strong="H7812"\w* \w to|strong="H1121"\w* \w you|strong="H1288"\w*. +\q1 \w Be|strong="H1121"\w* \w lord|strong="H1376"\w* over \w your|strong="H1288"\w* \w brothers|strong="H1121"\w*. +\q2 Let \w your|strong="H1288"\w* mother’s \w sons|strong="H1121"\w* \w bow|strong="H7812"\w* \w down|strong="H7812"\w* \w to|strong="H1121"\w* \w you|strong="H1288"\w*. +\q1 \w Cursed|strong="H1288"\w* \w be|strong="H1121"\w* everyone \w who|strong="H5971"\w* \w curses|strong="H1288"\w* \w you|strong="H1288"\w*. +\q2 \w Blessed|strong="H1288"\w* \w be|strong="H1121"\w* everyone \w who|strong="H5971"\w* \w blesses|strong="H1288"\w* \w you|strong="H1288"\w*.” +\p +\v 30 \w As|strong="H1961"\w* soon \w as|strong="H1961"\w* \w Isaac|strong="H3327"\w* \w had|strong="H1961"\w* \w finished|strong="H3615"\w* \w blessing|strong="H1288"\w* \w Jacob|strong="H3290"\w*, \w and|strong="H6440"\w* \w Jacob|strong="H3290"\w* \w had|strong="H1961"\w* just \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H6440"\w* \w Isaac|strong="H3327"\w* \w his|strong="H6440"\w* father, \w Esau|strong="H6215"\w* \w his|strong="H6440"\w* brother \w came|strong="H1961"\w* \w in|strong="H6440"\w* \w from|strong="H3318"\w* \w his|strong="H6440"\w* \w hunting|strong="H6718"\w*. +\v 31 \w He|strong="H1931"\w* \w also|strong="H1571"\w* \w made|strong="H6213"\w* \w savory|strong="H4303"\w* \w food|strong="H4303"\w*, \w and|strong="H1121"\w* \w brought|strong="H6213"\w* \w it|strong="H1931"\w* \w to|strong="H6213"\w* \w his|strong="H1288"\w* \w father|strong="H1121"\w*. \w He|strong="H1931"\w* said \w to|strong="H6213"\w* \w his|strong="H1288"\w* \w father|strong="H1121"\w*, “\w Let|strong="H5315"\w* \w my|strong="H6965"\w* \w father|strong="H1121"\w* \w arise|strong="H6965"\w*, \w and|strong="H1121"\w* eat \w of|strong="H1121"\w* \w his|strong="H1288"\w* \w son|strong="H1121"\w*’s \w venison|strong="H6718"\w*, \w that|strong="H1931"\w* \w your|strong="H6213"\w* \w soul|strong="H5315"\w* \w may|strong="H5315"\w* \w bless|strong="H1288"\w* \w me|strong="H5315"\w*.” +\p +\v 32 \w Isaac|strong="H3327"\w* \w his|strong="H3327"\w* \w father|strong="H1121"\w* said \w to|strong="H1121"\w* \w him|strong="H1121"\w*, “\w Who|strong="H4310"\w* \w are|strong="H1121"\w* \w you|strong="H4310"\w*?” +\p \w He|strong="H4310"\w* said, “\w I|strong="H1121"\w* am \w your|strong="H6215"\w* \w son|strong="H1121"\w*, \w your|strong="H6215"\w* \w firstborn|strong="H1060"\w*, \w Esau|strong="H6215"\w*.” +\p +\v 33 \w Isaac|strong="H3327"\w* \w trembled|strong="H2729"\w* \w violently|strong="H3966"\w*, \w and|strong="H1419"\w* said, “\w Who|strong="H4310"\w*, \w then|strong="H1961"\w*, \w is|strong="H1931"\w* \w he|strong="H1931"\w* \w who|strong="H4310"\w* \w has|strong="H4310"\w* \w taken|strong="H1961"\w* \w venison|strong="H6718"\w*, \w and|strong="H1419"\w* \w brought|strong="H1961"\w* \w it|strong="H1931"\w* \w to|strong="H5704"\w* \w me|strong="H1288"\w*, \w and|strong="H1419"\w* \w I|strong="H5704"\w* \w have|strong="H1961"\w* eaten \w of|strong="H3605"\w* \w all|strong="H3605"\w* \w before|strong="H2962"\w* \w you|strong="H3605"\w* \w came|strong="H1961"\w*, \w and|strong="H1419"\w* \w have|strong="H1961"\w* \w blessed|strong="H1288"\w* \w him|strong="H1931"\w*? \w Yes|strong="H1571"\w*, \w he|strong="H1931"\w* \w will|strong="H4310"\w* \w be|strong="H1961"\w* \w blessed|strong="H1288"\w*.” +\p +\v 34 \w When|strong="H8085"\w* \w Esau|strong="H6215"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w his|strong="H8085"\w* father, \w he|strong="H5704"\w* \w cried|strong="H6817"\w* \w with|strong="H1697"\w* \w an|strong="H1288"\w* \w exceedingly|strong="H3966"\w* \w great|strong="H1419"\w* \w and|strong="H1419"\w* \w bitter|strong="H4751"\w* \w cry|strong="H6818"\w*, \w and|strong="H1419"\w* \w said|strong="H1697"\w* \w to|strong="H5704"\w* \w his|strong="H8085"\w* father, “\w Bless|strong="H1288"\w* \w me|strong="H1288"\w*, \w even|strong="H1571"\w* \w me|strong="H1288"\w* \w also|strong="H1571"\w*, \w my|strong="H8085"\w* father.” +\p +\v 35 \w He|strong="H1293"\w* said, “\w Your|strong="H3947"\w* brother came \w with|strong="H3947"\w* \w deceit|strong="H4820"\w*, \w and|strong="H3947"\w* \w has|strong="H3947"\w* \w taken|strong="H3947"\w* \w away|strong="H3947"\w* \w your|strong="H3947"\w* \w blessing|strong="H1293"\w*.” +\p +\v 36 \w He|strong="H3588"\w* \w said|strong="H7121"\w*, “Isn’t \w he|strong="H3588"\w* \w rightly|strong="H3588"\w* \w named|strong="H7121"\w* \w Jacob|strong="H3290"\w*? \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w supplanted|strong="H6117"\w* \w me|strong="H7121"\w* \w these|strong="H2088"\w* \w two|strong="H3947"\w* \w times|strong="H6471"\w*. \w He|strong="H3588"\w* \w took|strong="H3947"\w* \w away|strong="H3947"\w* \w my|strong="H3947"\w* \w birthright|strong="H1062"\w*. \w See|strong="H2009"\w*, \w now|strong="H6258"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w taken|strong="H3947"\w* \w away|strong="H3947"\w* \w my|strong="H3947"\w* \w blessing|strong="H1293"\w*.” \w He|strong="H3588"\w* \w said|strong="H7121"\w*, “Haven’t \w you|strong="H3588"\w* \w reserved|strong="H3947"\w* \w a|strong="H3068"\w* \w blessing|strong="H1293"\w* \w for|strong="H3588"\w* \w me|strong="H7121"\w*?” +\p +\v 37 \w Isaac|strong="H3327"\w* \w answered|strong="H6030"\w* \w Esau|strong="H6215"\w*, “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w have|strong="H1121"\w* \w made|strong="H6213"\w* \w him|strong="H5414"\w* \w your|strong="H3605"\w* \w lord|strong="H1376"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w brothers|strong="H1121"\w* \w I|strong="H2005"\w* \w have|strong="H1121"\w* \w given|strong="H5414"\w* \w to|strong="H6213"\w* \w him|strong="H5414"\w* \w for|strong="H6213"\w* \w servants|strong="H5650"\w*. \w I|strong="H2005"\w* \w have|strong="H1121"\w* \w sustained|strong="H5564"\w* \w him|strong="H5414"\w* \w with|strong="H6213"\w* \w grain|strong="H1715"\w* \w and|strong="H1121"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w*. \w What|strong="H4100"\w* \w then|strong="H6030"\w* \w will|strong="H5650"\w* \w I|strong="H2005"\w* \w do|strong="H6213"\w* \w for|strong="H6213"\w* \w you|strong="H5414"\w*, \w my|strong="H5414"\w* \w son|strong="H1121"\w*?” +\p +\v 38 \w Esau|strong="H6215"\w* said \w to|strong="H5375"\w* \w his|strong="H5375"\w* father, “Do \w you|strong="H1288"\w* \w have|strong="H1571"\w* \w just|strong="H1571"\w* \w one|strong="H1931"\w* \w blessing|strong="H1293"\w*, \w my|strong="H5375"\w* father? \w Bless|strong="H1288"\w* \w me|strong="H6963"\w*, \w even|strong="H1571"\w* \w me|strong="H6963"\w* \w also|strong="H1571"\w*, \w my|strong="H5375"\w* father.” \w Esau|strong="H6215"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w voice|strong="H6963"\w*, \w and|strong="H6963"\w* \w wept|strong="H1058"\w*. +\p +\v 39 \w Isaac|strong="H3327"\w* \w his|strong="H5921"\w* father \w answered|strong="H6030"\w* \w him|strong="H5921"\w*, +\q1 “\w Behold|strong="H2009"\w*, \w your|strong="H5921"\w* \w dwelling|strong="H4186"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w fatness|strong="H4924"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w earth|strong="H8064"\w*, +\q1 \w and|strong="H6030"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w dew|strong="H2919"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w sky|strong="H8064"\w* \w from|strong="H5921"\w* \w above|strong="H5921"\w*. +\q1 +\v 40 \w You|strong="H5921"\w* \w will|strong="H1961"\w* \w live|strong="H2421"\w* \w by|strong="H5921"\w* \w your|strong="H5921"\w* \w sword|strong="H2719"\w*, \w and|strong="H2719"\w* \w you|strong="H5921"\w* \w will|strong="H1961"\w* \w serve|strong="H5647"\w* \w your|strong="H5921"\w* brother. +\q1 \w It|strong="H5921"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w*, \w when|strong="H1961"\w* \w you|strong="H5921"\w* \w will|strong="H1961"\w* \w break|strong="H6561"\w* \w loose|strong="H5921"\w*, +\q1 \w that|strong="H1961"\w* \w you|strong="H5921"\w* \w will|strong="H1961"\w* shake \w his|strong="H5921"\w* \w yoke|strong="H5923"\w* \w from|strong="H5921"\w* \w off|strong="H5921"\w* \w your|strong="H5921"\w* \w neck|strong="H6677"\w*.” +\p +\v 41 \w Esau|strong="H6215"\w* \w hated|strong="H7852"\w* \w Jacob|strong="H3290"\w* \w because|strong="H5921"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w blessing|strong="H1293"\w* \w with|strong="H5921"\w* \w which|strong="H3117"\w* \w his|strong="H5921"\w* father \w blessed|strong="H1288"\w* \w him|strong="H5921"\w*. \w Esau|strong="H6215"\w* said \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w heart|strong="H3820"\w*, “\w The|strong="H5921"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* mourning \w for|strong="H5921"\w* \w my|strong="H5921"\w* father \w are|strong="H3117"\w* \w at|strong="H5921"\w* \w hand|strong="H7126"\w*. \w Then|strong="H7126"\w* \w I|strong="H3117"\w* \w will|strong="H3820"\w* \w kill|strong="H2026"\w* \w my|strong="H5921"\w* brother \w Jacob|strong="H3290"\w*.” +\p +\v 42 \w The|strong="H7121"\w* \w words|strong="H1697"\w* \w of|strong="H1121"\w* \w Esau|strong="H6215"\w*, \w her|strong="H7971"\w* \w elder|strong="H1419"\w* \w son|strong="H1121"\w*, \w were|strong="H1121"\w* \w told|strong="H5046"\w* \w to|strong="H7971"\w* \w Rebekah|strong="H7259"\w*. \w She|strong="H7121"\w* \w sent|strong="H7971"\w* \w and|strong="H1121"\w* \w called|strong="H7121"\w* \w Jacob|strong="H3290"\w*, \w her|strong="H7971"\w* \w younger|strong="H6996"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w said|strong="H1697"\w* \w to|strong="H7971"\w* \w him|strong="H7121"\w*, “\w Behold|strong="H2009"\w*, \w your|strong="H7971"\w* brother \w Esau|strong="H6215"\w* \w comforts|strong="H5162"\w* \w himself|strong="H7121"\w* \w about|strong="H1697"\w* \w you|strong="H7971"\w* \w by|strong="H7121"\w* planning \w to|strong="H7971"\w* \w kill|strong="H2026"\w* \w you|strong="H7971"\w*. +\v 43 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w my|strong="H8085"\w* \w son|strong="H1121"\w*, \w obey|strong="H8085"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*. \w Arise|strong="H6965"\w*, \w flee|strong="H1272"\w* \w to|strong="H8085"\w* \w Laban|strong="H3837"\w*, \w my|strong="H8085"\w* brother, \w in|strong="H8085"\w* \w Haran|strong="H2771"\w*. +\v 44 \w Stay|strong="H3427"\w* \w with|strong="H5973"\w* \w him|strong="H7725"\w* \w a|strong="H3068"\w* few \w days|strong="H3117"\w*, \w until|strong="H5704"\w* \w your|strong="H7725"\w* brother’s \w fury|strong="H2534"\w* \w turns|strong="H7725"\w* \w away|strong="H7725"\w*— +\v 45 \w until|strong="H5704"\w* \w your|strong="H3947"\w* brother’s anger \w turns|strong="H7725"\w* \w away|strong="H7971"\w* \w from|strong="H4480"\w* \w you|strong="H7971"\w*, \w and|strong="H7971"\w* \w he|strong="H3117"\w* \w forgets|strong="H7911"\w* \w what|strong="H4100"\w* \w you|strong="H7971"\w* \w have|strong="H1571"\w* \w done|strong="H6213"\w* \w to|strong="H5704"\w* \w him|strong="H7971"\w*. \w Then|strong="H3947"\w* \w I|strong="H3117"\w* \w will|strong="H1571"\w* \w send|strong="H7971"\w*, \w and|strong="H7971"\w* \w get|strong="H3947"\w* \w you|strong="H7971"\w* \w from|strong="H4480"\w* \w there|strong="H8033"\w*. \w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w I|strong="H3117"\w* \w be|strong="H1571"\w* \w bereaved|strong="H7921"\w* \w of|strong="H3117"\w* \w you|strong="H7971"\w* \w both|strong="H8147"\w* \w in|strong="H6213"\w* \w one|strong="H4480"\w* \w day|strong="H3117"\w*?” +\p +\v 46 \w Rebekah|strong="H7259"\w* said \w to|strong="H6440"\w* \w Isaac|strong="H3327"\w*, “\w I|strong="H4100"\w* am \w weary|strong="H6973"\w* \w of|strong="H1323"\w* \w my|strong="H3947"\w* \w life|strong="H2416"\w* \w because|strong="H6440"\w* \w of|strong="H1323"\w* \w the|strong="H6440"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w Heth|strong="H2845"\w*. If \w Jacob|strong="H3290"\w* \w takes|strong="H3947"\w* \w a|strong="H3068"\w* \w wife|strong="H2416"\w* \w of|strong="H1323"\w* \w the|strong="H6440"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w Heth|strong="H2845"\w*, such \w as|strong="H6440"\w* \w these|strong="H3947"\w*, \w of|strong="H1323"\w* \w the|strong="H6440"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*, \w what|strong="H4100"\w* \w good|strong="H4100"\w* \w will|strong="H3290"\w* \w my|strong="H3947"\w* \w life|strong="H2416"\w* \w do|strong="H4100"\w* \w me|strong="H6440"\w*?” +\c 28 +\p +\v 1 \w Isaac|strong="H3327"\w* \w called|strong="H7121"\w* \w Jacob|strong="H3290"\w*, \w blessed|strong="H1288"\w* \w him|strong="H7121"\w*, \w and|strong="H3290"\w* \w commanded|strong="H6680"\w* \w him|strong="H7121"\w*, “\w You|strong="H6680"\w* \w shall|strong="H1323"\w* \w not|strong="H3808"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* wife \w of|strong="H1323"\w* \w the|strong="H3947"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w Canaan|strong="H3667"\w*. +\v 2 \w Arise|strong="H6965"\w*, \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w Paddan|strong="H6307"\w* \w Aram|strong="H6307"\w*, \w to|strong="H3212"\w* \w the|strong="H3947"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Bethuel|strong="H1328"\w* \w your|strong="H3947"\w* mother’s father. \w Take|strong="H3947"\w* \w a|strong="H3068"\w* wife \w from|strong="H3947"\w* \w there|strong="H8033"\w* \w from|strong="H3947"\w* \w the|strong="H3947"\w* \w daughters|strong="H1323"\w* \w of|strong="H1004"\w* \w Laban|strong="H3837"\w*, \w your|strong="H3947"\w* mother’s brother. +\v 3 \w May|strong="H1961"\w* God \w Almighty|strong="H7706"\w* \w bless|strong="H1288"\w* \w you|strong="H1288"\w*, \w and|strong="H5971"\w* \w make|strong="H6509"\w* \w you|strong="H1288"\w* \w fruitful|strong="H6509"\w*, \w and|strong="H5971"\w* \w multiply|strong="H7235"\w* \w you|strong="H1288"\w*, \w that|strong="H5971"\w* \w you|strong="H1288"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w company|strong="H6951"\w* \w of|strong="H6951"\w* \w peoples|strong="H5971"\w*, +\v 4 \w and|strong="H2233"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w the|strong="H5414"\w* \w blessing|strong="H1293"\w* \w of|strong="H2233"\w* Abraham, \w to|strong="H5414"\w* \w you|strong="H5414"\w* \w and|strong="H2233"\w* \w to|strong="H5414"\w* \w your|strong="H5414"\w* \w offspring|strong="H2233"\w* \w with|strong="H1293"\w* \w you|strong="H5414"\w*, \w that|strong="H5414"\w* \w you|strong="H5414"\w* \w may|strong="H5414"\w* \w inherit|strong="H3423"\w* \w the|strong="H5414"\w* land \w where|strong="H4033"\w* \w you|strong="H5414"\w* travel, which \w God|strong="H5414"\w* \w gave|strong="H5414"\w* \w to|strong="H5414"\w* Abraham.” +\p +\v 5 \w Isaac|strong="H3327"\w* \w sent|strong="H7971"\w* \w Jacob|strong="H3290"\w* \w away|strong="H7971"\w*. \w He|strong="H7971"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Paddan|strong="H6307"\w* \w Aram|strong="H6307"\w* \w to|strong="H3212"\w* \w Laban|strong="H3837"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Bethuel|strong="H1328"\w* \w the|strong="H7971"\w* Syrian, \w the|strong="H7971"\w* brother \w of|strong="H1121"\w* \w Rebekah|strong="H7259"\w*, \w Jacob|strong="H3290"\w*’s \w and|strong="H1121"\w* \w Esau|strong="H6215"\w*’s mother. +\p +\v 6 \w Now|strong="H3588"\w* \w Esau|strong="H6215"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w Isaac|strong="H3327"\w* \w had|strong="H3588"\w* \w blessed|strong="H1288"\w* \w Jacob|strong="H3290"\w* \w and|strong="H7971"\w* \w sent|strong="H7971"\w* \w him|strong="H5921"\w* \w away|strong="H7971"\w* \w to|strong="H7971"\w* \w Paddan|strong="H6307"\w* \w Aram|strong="H6307"\w*, \w to|strong="H7971"\w* \w take|strong="H3947"\w* \w him|strong="H5921"\w* \w a|strong="H3068"\w* wife \w from|strong="H5921"\w* \w there|strong="H8033"\w*, \w and|strong="H7971"\w* \w that|strong="H3588"\w* \w as|strong="H3588"\w* \w he|strong="H3588"\w* \w blessed|strong="H1288"\w* \w him|strong="H5921"\w* \w he|strong="H3588"\w* \w gave|strong="H6680"\w* \w him|strong="H5921"\w* \w a|strong="H3068"\w* \w command|strong="H6680"\w*, saying, “\w You|strong="H3588"\w* \w shall|strong="H1323"\w* \w not|strong="H3808"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* wife \w of|strong="H1323"\w* \w the|strong="H5921"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w Canaan|strong="H3667"\w*;” +\v 7 \w and|strong="H3212"\w* \w that|strong="H8085"\w* \w Jacob|strong="H3290"\w* \w obeyed|strong="H8085"\w* \w his|strong="H8085"\w* father \w and|strong="H3212"\w* \w his|strong="H8085"\w* mother, \w and|strong="H3212"\w* \w was|strong="H3290"\w* \w gone|strong="H3212"\w* \w to|strong="H3212"\w* \w Paddan|strong="H6307"\w* \w Aram|strong="H6307"\w*. +\v 8 \w Esau|strong="H6215"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H7200"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w Canaan|strong="H3667"\w* didn’t \w please|strong="H7451"\w* \w Isaac|strong="H3327"\w*, \w his|strong="H7200"\w* father. +\v 9 \w So|strong="H3947"\w* \w Esau|strong="H6215"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Ishmael|strong="H3458"\w*, \w and|strong="H1121"\w* \w took|strong="H3947"\w*, \w in|strong="H5921"\w* \w addition|strong="H5921"\w* \w to|strong="H3212"\w* \w the|strong="H5921"\w* wives \w that|strong="H1121"\w* \w he|strong="H5921"\w* \w had|strong="H1121"\w*, \w Mahalath|strong="H4258"\w* \w the|strong="H5921"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Ishmael|strong="H3458"\w*, \w Abraham|strong="H3947"\w*’s \w son|strong="H1121"\w*, \w the|strong="H5921"\w* sister \w of|strong="H1121"\w* \w Nebaioth|strong="H5032"\w*, \w to|strong="H3212"\w* \w be|strong="H1121"\w* \w his|strong="H3947"\w* wife. +\p +\v 10 \w Jacob|strong="H3290"\w* \w went|strong="H3212"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* Beersheba, \w and|strong="H3212"\w* \w went|strong="H3212"\w* \w toward|strong="H3212"\w* \w Haran|strong="H2771"\w*. +\v 11 \w He|strong="H1931"\w* \w came|strong="H6293"\w* \w to|strong="H8033"\w* \w a|strong="H3068"\w* certain \w place|strong="H4725"\w*, \w and|strong="H8033"\w* \w stayed|strong="H7901"\w* \w there|strong="H8033"\w* \w all|strong="H7901"\w* \w night|strong="H3885"\w*, \w because|strong="H3588"\w* \w the|strong="H3588"\w* \w sun|strong="H8121"\w* \w had|strong="H3588"\w* \w set|strong="H7760"\w*. \w He|strong="H1931"\w* \w took|strong="H3947"\w* \w one|strong="H1931"\w* \w of|strong="H4725"\w* \w the|strong="H3588"\w* stones \w of|strong="H4725"\w* \w the|strong="H3588"\w* \w place|strong="H4725"\w*, \w and|strong="H8033"\w* \w put|strong="H7760"\w* \w it|strong="H7760"\w* under \w his|strong="H7760"\w* \w head|strong="H4763"\w*, \w and|strong="H8033"\w* \w lay|strong="H7901"\w* \w down|strong="H7901"\w* \w in|strong="H7901"\w* \w that|strong="H3588"\w* \w place|strong="H4725"\w* \w to|strong="H8033"\w* \w sleep|strong="H7901"\w*. +\v 12 \w He|strong="H4397"\w* \w dreamed|strong="H2492"\w* \w and|strong="H8064"\w* \w saw|strong="H2009"\w* \w a|strong="H3068"\w* stairway \w set|strong="H5324"\w* \w upon|strong="H5927"\w* \w the|strong="H5927"\w* \w earth|strong="H5927"\w*, \w and|strong="H8064"\w* \w its|strong="H5927"\w* \w top|strong="H7218"\w* \w reached|strong="H5060"\w* \w to|strong="H3381"\w* \w heaven|strong="H8064"\w*. \w Behold|strong="H2009"\w*, \w the|strong="H5927"\w* \w angels|strong="H4397"\w* \w of|strong="H7218"\w* \w God|strong="H8064"\w* \w were|strong="H8064"\w* \w ascending|strong="H5927"\w* \w and|strong="H8064"\w* \w descending|strong="H3381"\w* \w on|strong="H5927"\w* \w it|strong="H3381"\w*. +\v 13 \w Behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w* \w stood|strong="H5324"\w* \w above|strong="H5921"\w* \w it|strong="H5414"\w*, \w and|strong="H3068"\w* said, “\w I|strong="H5414"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* Abraham \w your|strong="H3068"\w* father, \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Isaac|strong="H3327"\w*. \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w the|strong="H5921"\w* land \w you|strong="H5414"\w* \w lie|strong="H7901"\w* \w on|strong="H5921"\w* \w to|strong="H3068"\w* \w you|strong="H5414"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w offspring|strong="H2233"\w*. +\v 14 \w Your|strong="H3605"\w* \w offspring|strong="H2233"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w the|strong="H3605"\w* \w dust|strong="H6083"\w* \w of|strong="H2233"\w* \w the|strong="H3605"\w* \w earth|strong="H6083"\w*, \w and|strong="H3220"\w* \w you|strong="H3605"\w* \w will|strong="H1961"\w* \w spread|strong="H6555"\w* \w abroad|strong="H6555"\w* \w to|strong="H1961"\w* \w the|strong="H3605"\w* \w west|strong="H3220"\w*, \w and|strong="H3220"\w* \w to|strong="H1961"\w* \w the|strong="H3605"\w* \w east|strong="H6924"\w*, \w and|strong="H3220"\w* \w to|strong="H1961"\w* \w the|strong="H3605"\w* \w north|strong="H6828"\w*, \w and|strong="H3220"\w* \w to|strong="H1961"\w* \w the|strong="H3605"\w* \w south|strong="H5045"\w*. \w In|strong="H3220"\w* \w you|strong="H3605"\w* \w and|strong="H3220"\w* \w in|strong="H3220"\w* \w your|strong="H3605"\w* \w offspring|strong="H2233"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w families|strong="H4940"\w* \w of|strong="H2233"\w* \w the|strong="H3605"\w* \w earth|strong="H6083"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w blessed|strong="H1288"\w*. +\v 15 \w Behold|strong="H2009"\w*, \w I|strong="H3588"\w* am \w with|strong="H5973"\w* \w you|strong="H3588"\w*, \w and|strong="H7725"\w* \w will|strong="H3808"\w* \w keep|strong="H8104"\w* \w you|strong="H3588"\w*, \w wherever|strong="H3605"\w* \w you|strong="H3588"\w* \w go|strong="H3212"\w*, \w and|strong="H7725"\w* \w will|strong="H3808"\w* \w bring|strong="H7725"\w* \w you|strong="H3588"\w* \w again|strong="H7725"\w* \w into|strong="H7725"\w* \w this|strong="H2063"\w* land. \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w leave|strong="H5800"\w* \w you|strong="H3588"\w* \w until|strong="H5704"\w* \w I|strong="H3588"\w* \w have|strong="H3605"\w* \w done|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3605"\w* \w spoken|strong="H1696"\w* \w of|strong="H3605"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*.” +\p +\v 16 \w Jacob|strong="H3290"\w* \w awakened|strong="H3364"\w* \w out|strong="H3045"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w sleep|strong="H8142"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* said, “\w Surely|strong="H3426"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*, \w and|strong="H3068"\w* \w I|strong="H3045"\w* didn’t \w know|strong="H3045"\w* \w it|strong="H3045"\w*.” +\v 17 \w He|strong="H3588"\w* \w was|strong="H1004"\w* \w afraid|strong="H3372"\w*, \w and|strong="H8064"\w* said, “\w How|strong="H4100"\w* \w awesome|strong="H3372"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w* \w is|strong="H2088"\w*! \w This|strong="H2088"\w* \w is|strong="H2088"\w* none \w other|strong="H2088"\w* \w than|strong="H3588"\w* \w God|strong="H8064"\w*’s \w house|strong="H1004"\w*, \w and|strong="H8064"\w* \w this|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H3588"\w* \w gate|strong="H8179"\w* \w of|strong="H1004"\w* \w heaven|strong="H8064"\w*.” +\p +\v 18 \w Jacob|strong="H3290"\w* \w rose|strong="H7925"\w* \w up|strong="H7760"\w* \w early|strong="H7925"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w morning|strong="H1242"\w*, \w and|strong="H7218"\w* \w took|strong="H3947"\w* \w the|strong="H5921"\w* stone \w that|strong="H8081"\w* \w he|strong="H5921"\w* \w had|strong="H3290"\w* \w put|strong="H7760"\w* \w under|strong="H5921"\w* \w his|strong="H7760"\w* \w head|strong="H7218"\w*, \w and|strong="H7218"\w* \w set|strong="H7760"\w* \w it|strong="H7760"\w* \w up|strong="H7760"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w pillar|strong="H4676"\w*, \w and|strong="H7218"\w* \w poured|strong="H3332"\w* \w oil|strong="H8081"\w* \w on|strong="H5921"\w* \w its|strong="H5921"\w* \w top|strong="H7218"\w*. +\v 19 \w He|strong="H1931"\w* \w called|strong="H7121"\w* \w the|strong="H7121"\w* \w name|strong="H8034"\w* \w of|strong="H5892"\w* \w that|strong="H1931"\w* \w place|strong="H4725"\w* \w Bethel|strong="H1008"\w*, \w but|strong="H1931"\w* \w the|strong="H7121"\w* \w name|strong="H8034"\w* \w of|strong="H5892"\w* \w the|strong="H7121"\w* \w city|strong="H5892"\w* \w was|strong="H8034"\w* \w Luz|strong="H3870"\w* \w at|strong="H5892"\w* \w the|strong="H7121"\w* \w first|strong="H7223"\w*. +\v 20 \w Jacob|strong="H3290"\w* \w vowed|strong="H5087"\w* \w a|strong="H3068"\w* \w vow|strong="H5088"\w*, saying, “\w If|strong="H1961"\w* \w God|strong="H5414"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w with|strong="H1980"\w* \w me|strong="H5414"\w*, \w and|strong="H1980"\w* \w will|strong="H1961"\w* \w keep|strong="H8104"\w* \w me|strong="H5414"\w* \w in|strong="H1980"\w* \w this|strong="H2088"\w* \w way|strong="H1870"\w* \w that|strong="H5414"\w* \w I|strong="H5414"\w* \w go|strong="H1980"\w*, \w and|strong="H1980"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w me|strong="H5414"\w* \w bread|strong="H3899"\w* \w to|strong="H1980"\w* \w eat|strong="H3899"\w*, \w and|strong="H1980"\w* \w clothing|strong="H3847"\w* \w to|strong="H1980"\w* \w put|strong="H5414"\w* \w on|strong="H3847"\w*, +\v 21 \w so|strong="H1961"\w* \w that|strong="H3068"\w* \w I|strong="H3068"\w* \w come|strong="H1961"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w my|strong="H3068"\w* father’s \w house|strong="H1004"\w* \w in|strong="H3068"\w* \w peace|strong="H7965"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*, +\v 22 \w then|strong="H1961"\w* \w this|strong="H2063"\w* stone, \w which|strong="H1004"\w* \w I|strong="H5414"\w* \w have|strong="H1961"\w* \w set|strong="H7760"\w* \w up|strong="H5414"\w* \w for|strong="H1004"\w* \w a|strong="H3068"\w* \w pillar|strong="H4676"\w*, \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w God|strong="H5414"\w*’s \w house|strong="H1004"\w*. \w Of|strong="H1004"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H5414"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w me|strong="H5414"\w* \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w surely|strong="H5414"\w* \w give|strong="H5414"\w* \w a|strong="H3068"\w* \w tenth|strong="H6237"\w* \w to|strong="H1961"\w* \w you|strong="H5414"\w*.” +\c 29 +\p +\v 1 \w Then|strong="H5375"\w* \w Jacob|strong="H3290"\w* \w went|strong="H3212"\w* \w on|strong="H3212"\w* \w his|strong="H5375"\w* \w journey|strong="H7272"\w*, \w and|strong="H1121"\w* \w came|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H5375"\w* land \w of|strong="H1121"\w* \w the|strong="H5375"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5375"\w* \w east|strong="H6924"\w*. +\v 2 \w He|strong="H1931"\w* \w looked|strong="H7200"\w*, \w and|strong="H1419"\w* \w saw|strong="H7200"\w* \w a|strong="H3068"\w* well \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w field|strong="H7704"\w*, \w and|strong="H1419"\w* \w saw|strong="H7200"\w* \w three|strong="H7969"\w* \w flocks|strong="H6629"\w* \w of|strong="H7704"\w* \w sheep|strong="H6629"\w* \w lying|strong="H7257"\w* \w there|strong="H8033"\w* \w by|strong="H5921"\w* \w it|strong="H1931"\w*. \w For|strong="H3588"\w* \w out|strong="H4480"\w* \w of|strong="H7704"\w* \w that|strong="H3588"\w* well \w they|strong="H3588"\w* \w watered|strong="H8248"\w* \w the|strong="H5921"\w* \w flocks|strong="H6629"\w*. \w The|strong="H5921"\w* stone \w on|strong="H5921"\w* \w the|strong="H5921"\w* well’s \w mouth|strong="H6310"\w* \w was|strong="H1931"\w* \w large|strong="H1419"\w*. +\v 3 \w There|strong="H8033"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w flocks|strong="H6629"\w* \w were|strong="H6629"\w* gathered. \w They|strong="H8033"\w* \w rolled|strong="H1556"\w* \w the|strong="H3605"\w* stone \w from|strong="H7725"\w* \w the|strong="H3605"\w* well’s \w mouth|strong="H6310"\w*, \w and|strong="H7725"\w* \w watered|strong="H8248"\w* \w the|strong="H3605"\w* \w sheep|strong="H6629"\w*, \w and|strong="H7725"\w* \w put|strong="H7725"\w* \w the|strong="H3605"\w* stone \w back|strong="H7725"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* well’s \w mouth|strong="H6310"\w* \w in|strong="H5921"\w* \w its|strong="H3605"\w* \w place|strong="H4725"\w*. +\v 4 \w Jacob|strong="H3290"\w* said \w to|strong="H3290"\w* them, “\w My|strong="H3290"\w* relatives, where are you \w from|strong="H3290"\w*?” +\p They said, “We are \w from|strong="H3290"\w* \w Haran|strong="H2771"\w*.” +\p +\v 5 \w He|strong="H1121"\w* said \w to|strong="H1121"\w* \w them|strong="H1121"\w*, “Do \w you|strong="H3045"\w* \w know|strong="H3045"\w* \w Laban|strong="H3837"\w*, \w the|strong="H3045"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nahor|strong="H5152"\w*?” +\p \w They|strong="H3045"\w* said, “We \w know|strong="H3045"\w* \w him|strong="H3045"\w*.” +\p +\v 6 \w He|strong="H2009"\w* said \w to|strong="H1323"\w* them, “\w Is|strong="H2009"\w* \w it|strong="H5973"\w* \w well|strong="H7965"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*?” +\p \w They|strong="H7965"\w* said, “\w It|strong="H5973"\w* \w is|strong="H2009"\w* \w well|strong="H7965"\w*. \w See|strong="H2009"\w*, \w Rachel|strong="H7354"\w*, \w his|strong="H7354"\w* \w daughter|strong="H1323"\w*, \w is|strong="H2009"\w* \w coming|strong="H2009"\w* \w with|strong="H5973"\w* \w the|strong="H5973"\w* \w sheep|strong="H6629"\w*.” +\p +\v 7 \w He|strong="H3117"\w* said, “\w Behold|strong="H2005"\w*, \w it|strong="H3117"\w* \w is|strong="H3117"\w* \w still|strong="H5750"\w* \w the|strong="H3117"\w* middle \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w*, \w not|strong="H3808"\w* \w time|strong="H6256"\w* \w to|strong="H3212"\w* gather \w the|strong="H3117"\w* \w livestock|strong="H4735"\w* together. \w Water|strong="H8248"\w* \w the|strong="H3117"\w* \w sheep|strong="H6629"\w*, \w and|strong="H3117"\w* \w go|strong="H3212"\w* \w and|strong="H3117"\w* \w feed|strong="H7462"\w* \w them|strong="H8248"\w*.” +\p +\v 8 \w They|strong="H3808"\w* \w said|strong="H6310"\w*, “\w We|strong="H5704"\w* \w can|strong="H3201"\w*’t, \w until|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w flocks|strong="H6629"\w* \w are|strong="H6310"\w* gathered \w together|strong="H5921"\w*, \w and|strong="H6629"\w* \w they|strong="H3808"\w* \w roll|strong="H1556"\w* \w the|strong="H3605"\w* stone \w from|strong="H5921"\w* \w the|strong="H3605"\w* well’s \w mouth|strong="H6310"\w*. \w Then|strong="H3808"\w* \w we|strong="H3068"\w* \w will|strong="H3808"\w* \w water|strong="H8248"\w* \w the|strong="H3605"\w* \w sheep|strong="H6629"\w*.” +\p +\v 9 \w While|strong="H5750"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w yet|strong="H5750"\w* \w speaking|strong="H1696"\w* \w with|strong="H5973"\w* \w them|strong="H7462"\w*, \w Rachel|strong="H7354"\w* came \w with|strong="H5973"\w* \w her|strong="H1931"\w* father’s \w sheep|strong="H6629"\w*, \w for|strong="H3588"\w* \w she|strong="H1931"\w* \w kept|strong="H7462"\w* \w them|strong="H7462"\w*. +\v 10 \w When|strong="H1961"\w* \w Jacob|strong="H3290"\w* \w saw|strong="H7200"\w* \w Rachel|strong="H7354"\w* \w the|strong="H5921"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Laban|strong="H3837"\w*, \w his|strong="H5921"\w* mother’s brother, \w and|strong="H6629"\w* \w the|strong="H5921"\w* \w sheep|strong="H6629"\w* \w of|strong="H1323"\w* \w Laban|strong="H3837"\w*, \w his|strong="H5921"\w* mother’s brother, \w Jacob|strong="H3290"\w* \w went|strong="H3290"\w* \w near|strong="H5066"\w*, \w and|strong="H6629"\w* \w rolled|strong="H1556"\w* \w the|strong="H5921"\w* stone \w from|strong="H5921"\w* \w the|strong="H5921"\w* well’s \w mouth|strong="H6310"\w*, \w and|strong="H6629"\w* \w watered|strong="H8248"\w* \w the|strong="H5921"\w* \w flock|strong="H6629"\w* \w of|strong="H1323"\w* \w Laban|strong="H3837"\w* \w his|strong="H5921"\w* mother’s brother. +\v 11 \w Jacob|strong="H3290"\w* \w kissed|strong="H5401"\w* \w Rachel|strong="H7354"\w*, \w and|strong="H6963"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w voice|strong="H6963"\w*, \w and|strong="H6963"\w* \w wept|strong="H1058"\w*. +\v 12 \w Jacob|strong="H3290"\w* \w told|strong="H5046"\w* \w Rachel|strong="H7354"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w her|strong="H5046"\w* \w father|strong="H1121"\w*’s relative, \w and|strong="H1121"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w Rebekah|strong="H7259"\w*’s \w son|strong="H1121"\w*. \w She|strong="H1931"\w* \w ran|strong="H7323"\w* \w and|strong="H1121"\w* \w told|strong="H5046"\w* \w her|strong="H5046"\w* \w father|strong="H1121"\w*. +\p +\v 13 \w When|strong="H1961"\w* \w Laban|strong="H3837"\w* \w heard|strong="H8085"\w* \w the|strong="H3605"\w* \w news|strong="H8088"\w* \w of|strong="H1121"\w* \w Jacob|strong="H3290"\w*, \w his|strong="H3605"\w* sister’s \w son|strong="H1121"\w*, \w he|strong="H3605"\w* \w ran|strong="H7323"\w* \w to|strong="H1961"\w* \w meet|strong="H7125"\w* \w Jacob|strong="H3290"\w*, \w and|strong="H1121"\w* \w embraced|strong="H2263"\w* \w him|strong="H3605"\w*, \w and|strong="H1121"\w* \w kissed|strong="H5401"\w* \w him|strong="H3605"\w*, \w and|strong="H1121"\w* \w brought|strong="H1961"\w* \w him|strong="H3605"\w* \w to|strong="H1961"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*. \w Jacob|strong="H3290"\w* \w told|strong="H5608"\w* \w Laban|strong="H3837"\w* \w all|strong="H3605"\w* \w these|strong="H8085"\w* \w things|strong="H1697"\w*. +\v 14 \w Laban|strong="H3837"\w* said \w to|strong="H3117"\w* \w him|strong="H5973"\w*, “Surely \w you|strong="H3117"\w* \w are|strong="H3117"\w* \w my|strong="H5973"\w* \w bone|strong="H6106"\w* \w and|strong="H3117"\w* \w my|strong="H5973"\w* \w flesh|strong="H1320"\w*.” Jacob \w stayed|strong="H3427"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w* \w for|strong="H3427"\w* \w a|strong="H3068"\w* \w month|strong="H2320"\w*. +\v 15 \w Laban|strong="H3837"\w* said \w to|strong="H5046"\w* \w Jacob|strong="H3290"\w*, “\w Because|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H4100"\w* \w my|strong="H5046"\w* relative, \w should|strong="H4100"\w* \w you|strong="H3588"\w* \w therefore|strong="H3588"\w* \w serve|strong="H5647"\w* \w me|strong="H5046"\w* \w for|strong="H3588"\w* \w nothing|strong="H2600"\w*? \w Tell|strong="H5046"\w* \w me|strong="H5046"\w*, \w what|strong="H4100"\w* \w will|strong="H3290"\w* \w your|strong="H3588"\w* \w wages|strong="H4909"\w* \w be|strong="H3290"\w*?” +\p +\v 16 \w Laban|strong="H3837"\w* \w had|strong="H7354"\w* \w two|strong="H8147"\w* \w daughters|strong="H1323"\w*. \w The|strong="H8034"\w* \w name|strong="H8034"\w* \w of|strong="H1323"\w* \w the|strong="H8034"\w* \w elder|strong="H1419"\w* \w was|strong="H8034"\w* \w Leah|strong="H3812"\w*, \w and|strong="H1419"\w* \w the|strong="H8034"\w* \w name|strong="H8034"\w* \w of|strong="H1323"\w* \w the|strong="H8034"\w* \w younger|strong="H6996"\w* \w was|strong="H8034"\w* \w Rachel|strong="H7354"\w*. +\v 17 \w Leah|strong="H3812"\w*’s \w eyes|strong="H5869"\w* \w were|strong="H1961"\w* \w weak|strong="H7390"\w*, \w but|strong="H1961"\w* \w Rachel|strong="H7354"\w* \w was|strong="H1961"\w* \w beautiful|strong="H3303"\w* \w in|strong="H5869"\w* \w form|strong="H8389"\w* \w and|strong="H5869"\w* \w attractive|strong="H3303"\w*. +\v 18 \w Jacob|strong="H3290"\w* loved \w Rachel|strong="H7354"\w*. \w He|strong="H8141"\w* said, “\w I|strong="H8141"\w* \w will|strong="H3290"\w* \w serve|strong="H5647"\w* \w you|strong="H5647"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w* \w for|strong="H8141"\w* \w Rachel|strong="H7354"\w*, \w your|strong="H5647"\w* \w younger|strong="H6996"\w* \w daughter|strong="H1323"\w*.” +\p +\v 19 \w Laban|strong="H3837"\w* said, “\w It|strong="H5414"\w* \w is|strong="H2896"\w* \w better|strong="H2896"\w* \w that|strong="H5414"\w* \w I|strong="H5414"\w* \w give|strong="H5414"\w* \w her|strong="H5414"\w* \w to|strong="H5414"\w* \w you|strong="H5414"\w*, \w than|strong="H2896"\w* \w that|strong="H5414"\w* \w I|strong="H5414"\w* should \w give|strong="H5414"\w* \w her|strong="H5414"\w* \w to|strong="H5414"\w* another \w man|strong="H2896"\w*. \w Stay|strong="H3427"\w* \w with|strong="H3427"\w* \w me|strong="H5414"\w*.” +\p +\v 20 \w Jacob|strong="H3290"\w* \w served|strong="H5647"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w* \w for|strong="H3117"\w* \w Rachel|strong="H7354"\w*. \w They|strong="H3117"\w* \w seemed|strong="H5869"\w* \w to|strong="H1961"\w* \w him|strong="H5647"\w* \w but|strong="H1961"\w* \w a|strong="H3068"\w* few \w days|strong="H3117"\w*, \w for|strong="H3117"\w* \w the|strong="H5647"\w* love \w he|strong="H3117"\w* \w had|strong="H1961"\w* \w for|strong="H3117"\w* \w her|strong="H3290"\w*. +\p +\v 21 \w Jacob|strong="H3290"\w* said \w to|strong="H3117"\w* \w Laban|strong="H3837"\w*, “\w Give|strong="H3051"\w* \w me|strong="H3051"\w* \w my|strong="H3290"\w* wife, \w for|strong="H3588"\w* \w my|strong="H3290"\w* \w days|strong="H3117"\w* \w are|strong="H3117"\w* \w fulfilled|strong="H4390"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H3117"\w* go \w in|strong="H3117"\w* \w to|strong="H3117"\w* \w her|strong="H4390"\w*.” +\p +\v 22 \w Laban|strong="H3837"\w* \w gathered|strong="H6213"\w* together \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H6213"\w* \w of|strong="H4725"\w* \w the|strong="H3605"\w* \w place|strong="H4725"\w*, \w and|strong="H6213"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w feast|strong="H4960"\w*. +\v 23 \w In|strong="H1961"\w* \w the|strong="H3947"\w* \w evening|strong="H6153"\w*, \w he|strong="H6153"\w* \w took|strong="H3947"\w* \w Leah|strong="H3812"\w* \w his|strong="H3947"\w* \w daughter|strong="H1323"\w*, \w and|strong="H1323"\w* \w brought|strong="H3947"\w* \w her|strong="H3947"\w* \w to|strong="H1961"\w* Jacob. \w He|strong="H6153"\w* \w went|strong="H3812"\w* \w in|strong="H1961"\w* \w to|strong="H1961"\w* \w her|strong="H3947"\w*. +\v 24 \w Laban|strong="H3837"\w* \w gave|strong="H5414"\w* \w Zilpah|strong="H2153"\w* \w his|strong="H5414"\w* \w servant|strong="H8198"\w* \w to|strong="H5414"\w* \w his|strong="H5414"\w* \w daughter|strong="H1323"\w* \w Leah|strong="H3812"\w* \w for|strong="H5414"\w* \w a|strong="H3068"\w* \w servant|strong="H8198"\w*. +\v 25 \w In|strong="H6213"\w* \w the|strong="H6213"\w* \w morning|strong="H1242"\w*, \w behold|strong="H2009"\w*, \w it|strong="H1931"\w* \w was|strong="H1961"\w* \w Leah|strong="H3812"\w*! \w He|strong="H1931"\w* said \w to|strong="H1961"\w* \w Laban|strong="H3837"\w*, “\w What|strong="H4100"\w* \w is|strong="H1931"\w* \w this|strong="H2063"\w* \w you|strong="H6213"\w* \w have|strong="H1961"\w* \w done|strong="H6213"\w* \w to|strong="H1961"\w* \w me|strong="H6213"\w*? Didn’t \w I|strong="H2009"\w* \w serve|strong="H5647"\w* \w with|strong="H5973"\w* \w you|strong="H6213"\w* \w for|strong="H6213"\w* \w Rachel|strong="H7354"\w*? \w Why|strong="H4100"\w* \w then|strong="H1961"\w* \w have|strong="H1961"\w* \w you|strong="H6213"\w* \w deceived|strong="H7411"\w* \w me|strong="H6213"\w*?” +\p +\v 26 \w Laban|strong="H3837"\w* \w said|strong="H3651"\w*, “\w It|strong="H5414"\w* \w is|strong="H3651"\w* \w not|strong="H3808"\w* \w done|strong="H6213"\w* \w so|strong="H3651"\w* \w in|strong="H6213"\w* \w our|strong="H5414"\w* \w place|strong="H4725"\w*, \w to|strong="H6213"\w* \w give|strong="H5414"\w* \w the|strong="H6440"\w* \w younger|strong="H6810"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w firstborn|strong="H1067"\w*. +\v 27 \w Fulfill|strong="H4390"\w* \w the|strong="H5414"\w* \w week|strong="H7620"\w* \w of|strong="H8141"\w* \w this|strong="H2063"\w* \w one|strong="H2063"\w*, \w and|strong="H8141"\w* \w we|strong="H3068"\w* \w will|strong="H1571"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w the|strong="H5414"\w* \w other|strong="H5750"\w* \w also|strong="H1571"\w* \w for|strong="H5414"\w* \w the|strong="H5414"\w* \w service|strong="H5656"\w* which \w you|strong="H5414"\w* \w will|strong="H1571"\w* \w serve|strong="H5647"\w* \w with|strong="H4390"\w* \w me|strong="H5414"\w* \w for|strong="H5414"\w* \w seven|strong="H7651"\w* \w more|strong="H5750"\w* \w years|strong="H8141"\w*.” +\p +\v 28 \w Jacob|strong="H3290"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*, \w and|strong="H6213"\w* \w fulfilled|strong="H4390"\w* \w her|strong="H5414"\w* \w week|strong="H7620"\w*. \w He|strong="H3651"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w Rachel|strong="H7354"\w* \w his|strong="H5414"\w* \w daughter|strong="H1323"\w* \w as|strong="H6213"\w* wife. +\v 29 \w Laban|strong="H3837"\w* \w gave|strong="H5414"\w* \w Bilhah|strong="H1090"\w*, \w his|strong="H5414"\w* \w servant|strong="H8198"\w*, \w to|strong="H5414"\w* \w his|strong="H5414"\w* \w daughter|strong="H1323"\w* \w Rachel|strong="H7354"\w* \w to|strong="H5414"\w* \w be|strong="H5414"\w* \w her|strong="H5414"\w* \w servant|strong="H8198"\w*. +\v 30 \w He|strong="H8141"\w* \w went|strong="H3812"\w* \w in|strong="H8141"\w* \w also|strong="H1571"\w* \w to|strong="H5973"\w* \w Rachel|strong="H7354"\w*, \w and|strong="H8141"\w* \w he|strong="H8141"\w* loved \w also|strong="H1571"\w* \w Rachel|strong="H7354"\w* \w more|strong="H5750"\w* \w than|strong="H5973"\w* \w Leah|strong="H3812"\w*, \w and|strong="H8141"\w* \w served|strong="H5647"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w* \w seven|strong="H7651"\w* \w more|strong="H5750"\w* \w years|strong="H8141"\w*. +\p +\v 31 \w Yahweh|strong="H3068"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w Leah|strong="H3812"\w* \w was|strong="H3068"\w* \w hated|strong="H8130"\w*, \w and|strong="H3068"\w* \w he|strong="H3588"\w* \w opened|strong="H6605"\w* \w her|strong="H7200"\w* \w womb|strong="H7358"\w*, \w but|strong="H3588"\w* \w Rachel|strong="H7354"\w* \w was|strong="H3068"\w* \w barren|strong="H6135"\w*. +\v 32 \w Leah|strong="H3812"\w* \w conceived|strong="H2029"\w*, \w and|strong="H1121"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w she|strong="H3588"\w* \w named|strong="H7121"\w* \w him|strong="H3205"\w* \w Reuben|strong="H7205"\w*. \w For|strong="H3588"\w* \w she|strong="H3588"\w* \w said|strong="H7121"\w*, “\w Because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w looked|strong="H7200"\w* \w at|strong="H3068"\w* \w my|strong="H3068"\w* \w affliction|strong="H6040"\w*; \w for|strong="H3588"\w* \w now|strong="H6258"\w* \w my|strong="H3068"\w* husband \w will|strong="H3068"\w* love \w me|strong="H7200"\w*.” +\v 33 \w She|strong="H3588"\w* \w conceived|strong="H2029"\w* \w again|strong="H5750"\w*, \w and|strong="H1121"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w said|strong="H7121"\w*, “\w Because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w hated|strong="H8130"\w*, \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w therefore|strong="H1571"\w* \w given|strong="H5414"\w* \w me|strong="H5414"\w* \w this|strong="H2088"\w* \w son|strong="H1121"\w* \w also|strong="H1571"\w*.” \w She|strong="H3588"\w* \w named|strong="H7121"\w* \w him|strong="H5414"\w* \w Simeon|strong="H8095"\w*. +\v 34 \w She|strong="H3588"\w* \w conceived|strong="H2029"\w* \w again|strong="H5750"\w*, \w and|strong="H1121"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*. \w She|strong="H3588"\w* \w said|strong="H7121"\w*, “\w Now|strong="H6258"\w* \w this|strong="H3651"\w* \w time|strong="H6471"\w* \w my|strong="H5921"\w* husband \w will|strong="H1121"\w* \w be|strong="H5750"\w* \w joined|strong="H3867"\w* \w to|strong="H5921"\w* \w me|strong="H5921"\w*, \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1121"\w* \w borne|strong="H3205"\w* \w him|strong="H3205"\w* \w three|strong="H7969"\w* \w sons|strong="H1121"\w*.” \w Therefore|strong="H3651"\w* \w his|strong="H7121"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w called|strong="H7121"\w* \w Levi|strong="H3878"\w*. +\v 35 \w She|strong="H7121"\w* \w conceived|strong="H2029"\w* \w again|strong="H5750"\w*, \w and|strong="H1121"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*. \w She|strong="H7121"\w* \w said|strong="H7121"\w*, “\w This|strong="H3651"\w* \w time|strong="H6471"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w praise|strong="H3034"\w* \w Yahweh|strong="H3068"\w*.” \w Therefore|strong="H3651"\w* \w she|strong="H7121"\w* \w named|strong="H7121"\w* \w him|strong="H3205"\w* \w Judah|strong="H3063"\w*. \w Then|strong="H3651"\w* \w she|strong="H7121"\w* \w stopped|strong="H5975"\w* \w bearing|strong="H3205"\w*. +\c 30 +\p +\v 1 \w When|strong="H3588"\w* \w Rachel|strong="H7354"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w she|strong="H3588"\w* \w bore|strong="H3205"\w* \w Jacob|strong="H3290"\w* \w no|strong="H3808"\w* \w children|strong="H1121"\w*, \w Rachel|strong="H7354"\w* \w envied|strong="H7065"\w* \w her|strong="H7200"\w* sister. \w She|strong="H3588"\w* said \w to|strong="H4191"\w* \w Jacob|strong="H3290"\w*, “\w Give|strong="H3051"\w* \w me|strong="H7200"\w* \w children|strong="H1121"\w*, \w or|strong="H3808"\w* \w else|strong="H3808"\w* \w I|strong="H3588"\w* \w will|strong="H1121"\w* \w die|strong="H4191"\w*.” +\p +\v 2 \w Jacob|strong="H3290"\w*’s anger \w burned|strong="H2734"\w* \w against|strong="H2734"\w* \w Rachel|strong="H7354"\w*, \w and|strong="H3290"\w* \w he|strong="H4480"\w* said, “Am \w I|strong="H8478"\w* \w in|strong="H8478"\w* God’s \w place|strong="H8478"\w*, who \w has|strong="H3290"\w* \w withheld|strong="H4513"\w* \w from|strong="H4480"\w* \w you|strong="H4480"\w* \w the|strong="H4480"\w* \w fruit|strong="H6529"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* womb?” +\p +\v 3 \w She|strong="H5921"\w* said, “\w Behold|strong="H2009"\w*, \w my|strong="H5921"\w* maid \w Bilhah|strong="H1090"\w*. \w Go|strong="H2009"\w* \w in|strong="H5921"\w* \w to|strong="H5921"\w* \w her|strong="H5921"\w*, \w that|strong="H4480"\w* \w she|strong="H5921"\w* \w may|strong="H1571"\w* \w bear|strong="H3205"\w* \w on|strong="H5921"\w* \w my|strong="H5921"\w* \w knees|strong="H1290"\w*, \w and|strong="H1129"\w* \w I|strong="H2009"\w* \w also|strong="H1571"\w* \w may|strong="H1571"\w* \w obtain|strong="H1129"\w* \w children|strong="H3205"\w* \w by|strong="H5921"\w* \w her|strong="H5921"\w*.” +\v 4 She \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w Bilhah|strong="H1090"\w* \w her|strong="H5414"\w* \w servant|strong="H8198"\w* \w as|strong="H5414"\w* wife, \w and|strong="H3290"\w* \w Jacob|strong="H3290"\w* \w went|strong="H3290"\w* \w in|strong="H5414"\w* \w to|strong="H5414"\w* \w her|strong="H5414"\w*. +\v 5 \w Bilhah|strong="H1090"\w* \w conceived|strong="H2029"\w*, \w and|strong="H1121"\w* \w bore|strong="H3205"\w* \w Jacob|strong="H3290"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*. +\v 6 \w Rachel|strong="H7354"\w* \w said|strong="H7121"\w*, “\w God|strong="H5414"\w* \w has|strong="H1571"\w* \w judged|strong="H1777"\w* \w me|strong="H5414"\w*, \w and|strong="H1121"\w* \w has|strong="H1571"\w* \w also|strong="H1571"\w* \w heard|strong="H8085"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*, \w and|strong="H1121"\w* \w has|strong="H1571"\w* \w given|strong="H5414"\w* \w me|strong="H5414"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*.” \w Therefore|strong="H3651"\w* \w she|strong="H7121"\w* \w called|strong="H7121"\w* \w his|strong="H5414"\w* \w name|strong="H8034"\w* \w Dan|strong="H1835"\w*. +\v 7 \w Bilhah|strong="H1090"\w*, \w Rachel|strong="H7354"\w*’s \w servant|strong="H8198"\w*, \w conceived|strong="H2029"\w* \w again|strong="H5750"\w*, \w and|strong="H1121"\w* \w bore|strong="H3205"\w* \w Jacob|strong="H3290"\w* \w a|strong="H3068"\w* \w second|strong="H8145"\w* \w son|strong="H1121"\w*. +\v 8 \w Rachel|strong="H7354"\w* \w said|strong="H7121"\w*, “\w I|strong="H3201"\w* \w have|strong="H1571"\w* \w wrestled|strong="H6617"\w* \w with|strong="H5973"\w* \w my|strong="H7121"\w* sister \w with|strong="H5973"\w* mighty \w wrestlings|strong="H5319"\w*, \w and|strong="H8034"\w* \w have|strong="H1571"\w* \w prevailed|strong="H3201"\w*.” \w She|strong="H7121"\w* \w named|strong="H7121"\w* \w him|strong="H7121"\w* \w Naphtali|strong="H5321"\w*. +\p +\v 9 \w When|strong="H3588"\w* \w Leah|strong="H3812"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w she|strong="H3588"\w* \w had|strong="H3205"\w* finished \w bearing|strong="H3205"\w*, \w she|strong="H3588"\w* \w took|strong="H3947"\w* \w Zilpah|strong="H2153"\w*, \w her|strong="H5414"\w* \w servant|strong="H8198"\w*, \w and|strong="H7200"\w* \w gave|strong="H5414"\w* \w her|strong="H5414"\w* \w to|strong="H5414"\w* \w Jacob|strong="H3290"\w* \w as|strong="H3588"\w* \w a|strong="H3068"\w* wife. +\v 10 \w Zilpah|strong="H2153"\w*, \w Leah|strong="H3812"\w*’s \w servant|strong="H8198"\w*, \w bore|strong="H3205"\w* \w Jacob|strong="H3290"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*. +\v 11 \w Leah|strong="H3812"\w* \w said|strong="H7121"\w*, “How \w fortunate|strong="H1409"\w*!” \w She|strong="H7121"\w* \w named|strong="H7121"\w* \w him|strong="H7121"\w* \w Gad|strong="H1410"\w*. +\v 12 \w Zilpah|strong="H2153"\w*, \w Leah|strong="H3812"\w*’s \w servant|strong="H8198"\w*, \w bore|strong="H3205"\w* \w Jacob|strong="H3290"\w* \w a|strong="H3068"\w* \w second|strong="H8145"\w* \w son|strong="H1121"\w*. +\v 13 \w Leah|strong="H3812"\w* \w said|strong="H7121"\w*, “Happy am \w I|strong="H3588"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w daughters|strong="H1323"\w* \w will|strong="H1323"\w* \w call|strong="H7121"\w* \w me|strong="H7121"\w* happy.” \w She|strong="H3588"\w* \w named|strong="H7121"\w* \w him|strong="H7121"\w* Asher. +\p +\v 14 \w Reuben|strong="H7205"\w* \w went|strong="H3212"\w* \w in|strong="H3117"\w* \w the|strong="H5414"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w wheat|strong="H2406"\w* \w harvest|strong="H7105"\w*, \w and|strong="H1121"\w* \w found|strong="H4672"\w* \w mandrakes|strong="H1736"\w* \w in|strong="H3117"\w* \w the|strong="H5414"\w* \w field|strong="H7704"\w*, \w and|strong="H1121"\w* \w brought|strong="H3212"\w* \w them|strong="H5414"\w* \w to|strong="H3212"\w* \w his|strong="H5414"\w* mother, \w Leah|strong="H3812"\w*. \w Then|strong="H5414"\w* \w Rachel|strong="H7354"\w* said \w to|strong="H3212"\w* \w Leah|strong="H3812"\w*, “\w Please|strong="H4994"\w* \w give|strong="H5414"\w* \w me|strong="H5414"\w* \w some|strong="H3117"\w* \w of|strong="H1121"\w* \w your|strong="H5414"\w* \w son|strong="H1121"\w*’s \w mandrakes|strong="H1736"\w*.” +\p +\v 15 Leah \w said|strong="H3651"\w* \w to|strong="H1121"\w* \w her|strong="H3947"\w*, “\w Is|strong="H1571"\w* \w it|strong="H3651"\w* \w a|strong="H3068"\w* \w small|strong="H4592"\w* \w matter|strong="H4592"\w* \w that|strong="H3651"\w* \w you|strong="H3947"\w* \w have|strong="H1121"\w* \w taken|strong="H3947"\w* \w away|strong="H3947"\w* \w my|strong="H3947"\w* husband? Would \w you|strong="H3947"\w* \w take|strong="H3947"\w* \w away|strong="H3947"\w* \w my|strong="H3947"\w* \w son|strong="H1121"\w*’s \w mandrakes|strong="H1736"\w*, \w also|strong="H1571"\w*?” +\p \w Rachel|strong="H7354"\w* \w said|strong="H3651"\w*, “\w Therefore|strong="H3651"\w* \w he|strong="H3651"\w* \w will|strong="H1571"\w* \w lie|strong="H7901"\w* \w with|strong="H5973"\w* \w you|strong="H3947"\w* \w tonight|strong="H3915"\w* \w for|strong="H8478"\w* \w your|strong="H3947"\w* \w son|strong="H1121"\w*’s \w mandrakes|strong="H1736"\w*.” +\p +\v 16 \w Jacob|strong="H3290"\w* \w came|strong="H3318"\w* \w from|strong="H4480"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w* \w in|strong="H1121"\w* \w the|strong="H3588"\w* \w evening|strong="H6153"\w*, \w and|strong="H1121"\w* \w Leah|strong="H3812"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w meet|strong="H7125"\w* \w him|strong="H5973"\w*, \w and|strong="H1121"\w* \w said|strong="H3318"\w*, “\w You|strong="H3588"\w* \w must|strong="H1121"\w* \w come|strong="H3318"\w* \w in|strong="H1121"\w* \w to|strong="H3318"\w* \w me|strong="H4480"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1121"\w* \w surely|strong="H3588"\w* \w hired|strong="H7936"\w* \w you|strong="H3588"\w* \w with|strong="H5973"\w* \w my|strong="H3318"\w* \w son|strong="H1121"\w*’s \w mandrakes|strong="H1736"\w*.” +\p \w He|strong="H1931"\w* \w lay|strong="H7901"\w* \w with|strong="H5973"\w* \w her|strong="H3290"\w* \w that|strong="H3588"\w* \w night|strong="H3915"\w*. +\v 17 God \w listened|strong="H8085"\w* \w to|strong="H3205"\w* \w Leah|strong="H3812"\w*, \w and|strong="H1121"\w* she \w conceived|strong="H2029"\w*, \w and|strong="H1121"\w* \w bore|strong="H3205"\w* \w Jacob|strong="H3290"\w* \w a|strong="H3068"\w* \w fifth|strong="H2549"\w* \w son|strong="H1121"\w*. +\v 18 \w Leah|strong="H3812"\w* \w said|strong="H7121"\w*, “\w God|strong="H5414"\w* \w has|strong="H8198"\w* \w given|strong="H5414"\w* \w me|strong="H5414"\w* \w my|strong="H5414"\w* \w hire|strong="H7939"\w*, because \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w my|strong="H5414"\w* \w servant|strong="H8198"\w* \w to|strong="H5414"\w* \w my|strong="H5414"\w* husband.” \w She|strong="H7121"\w* \w named|strong="H7121"\w* \w him|strong="H5414"\w* \w Issachar|strong="H3485"\w*. +\v 19 \w Leah|strong="H3812"\w* \w conceived|strong="H2029"\w* \w again|strong="H5750"\w*, \w and|strong="H1121"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w sixth|strong="H8345"\w* \w son|strong="H1121"\w* \w to|strong="H3205"\w* \w Jacob|strong="H3290"\w*. +\v 20 \w Leah|strong="H3812"\w* \w said|strong="H7121"\w*, “God \w has|strong="H3588"\w* \w endowed|strong="H2064"\w* \w me|strong="H7121"\w* \w with|strong="H2896"\w* \w a|strong="H3068"\w* \w good|strong="H2896"\w* \w dowry|strong="H2065"\w*. \w Now|strong="H6471"\w* \w my|strong="H3588"\w* husband \w will|strong="H1121"\w* \w live|strong="H8034"\w* \w with|strong="H2896"\w* \w me|strong="H7121"\w*, \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1121"\w* \w borne|strong="H3205"\w* \w him|strong="H3205"\w* \w six|strong="H8337"\w* \w sons|strong="H1121"\w*.” \w She|strong="H3588"\w* \w named|strong="H7121"\w* \w him|strong="H3205"\w* \w Zebulun|strong="H2074"\w*. +\v 21 Afterwards, \w she|strong="H7121"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w daughter|strong="H1323"\w*, \w and|strong="H1323"\w* \w named|strong="H7121"\w* \w her|strong="H7121"\w* \w Dinah|strong="H1783"\w*. +\p +\v 22 God \w remembered|strong="H2142"\w* \w Rachel|strong="H7354"\w*, \w and|strong="H8085"\w* God \w listened|strong="H8085"\w* \w to|strong="H8085"\w* \w her|strong="H6605"\w*, \w and|strong="H8085"\w* \w opened|strong="H6605"\w* \w her|strong="H6605"\w* \w womb|strong="H7358"\w*. +\v 23 She \w conceived|strong="H2029"\w*, \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* said, “God \w has|strong="H3205"\w* taken away my \w reproach|strong="H2781"\w*.” +\v 24 \w She|strong="H7121"\w* \w named|strong="H7121"\w* \w him|strong="H7121"\w* \w Joseph|strong="H3130"\w*,\f + \fr 30:24 \ft Joseph means “may he add”.\f* saying, “\w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w add|strong="H3254"\w* \w another|strong="H3254"\w* \w son|strong="H1121"\w* \w to|strong="H3068"\w* \w me|strong="H7121"\w*.” +\p +\v 25 \w When|strong="H1961"\w* \w Rachel|strong="H7354"\w* \w had|strong="H1961"\w* \w borne|strong="H3205"\w* \w Joseph|strong="H3130"\w*, \w Jacob|strong="H3290"\w* said \w to|strong="H3212"\w* \w Laban|strong="H3837"\w*, “\w Send|strong="H7971"\w* \w me|strong="H7971"\w* \w away|strong="H7971"\w*, \w that|strong="H1961"\w* \w I|strong="H3212"\w* \w may|strong="H1961"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w my|strong="H7971"\w* \w own|strong="H1961"\w* \w place|strong="H4725"\w*, \w and|strong="H7971"\w* \w to|strong="H3212"\w* \w my|strong="H7971"\w* \w country|strong="H4725"\w*. +\v 26 \w Give|strong="H5414"\w* \w me|strong="H5414"\w* \w my|strong="H5414"\w* wives \w and|strong="H3212"\w* \w my|strong="H5414"\w* \w children|strong="H3206"\w* \w for|strong="H3588"\w* \w whom|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3045"\w* \w served|strong="H5647"\w* \w you|strong="H3588"\w*, \w and|strong="H3212"\w* \w let|strong="H5414"\w* \w me|strong="H5414"\w* \w go|strong="H3212"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w know|strong="H3045"\w* \w my|strong="H5414"\w* \w service|strong="H5656"\w* \w with|strong="H3045"\w* \w which|strong="H2004"\w* \w I|strong="H3588"\w* \w have|strong="H3045"\w* \w served|strong="H5647"\w* \w you|strong="H3588"\w*.” +\p +\v 27 \w Laban|strong="H3837"\w* said \w to|strong="H3068"\w* \w him|strong="H4672"\w*, “\w If|strong="H1288"\w* \w now|strong="H4994"\w* \w I|strong="H4672"\w* \w have|strong="H3068"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w*, stay \w here|strong="H4672"\w*, \w for|strong="H3068"\w* \w I|strong="H4672"\w* \w have|strong="H3068"\w* \w divined|strong="H5172"\w* \w that|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w blessed|strong="H1288"\w* \w me|strong="H4994"\w* \w for|strong="H3068"\w* \w your|strong="H3068"\w* \w sake|strong="H1558"\w*.” +\v 28 \w He|strong="H5414"\w* said, “\w Appoint|strong="H5414"\w* \w me|strong="H5414"\w* \w your|strong="H5414"\w* \w wages|strong="H7939"\w*, \w and|strong="H5921"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w*.” +\p +\v 29 Jacob said \w to|strong="H1961"\w* \w him|strong="H5647"\w*, “\w You|strong="H3045"\w* \w know|strong="H3045"\w* \w how|strong="H3045"\w* \w I|strong="H3045"\w* \w have|strong="H1961"\w* \w served|strong="H5647"\w* \w you|strong="H3045"\w*, \w and|strong="H3045"\w* \w how|strong="H3045"\w* \w your|strong="H3045"\w* \w livestock|strong="H4735"\w* \w have|strong="H1961"\w* \w fared|strong="H1961"\w* \w with|strong="H3045"\w* \w me|strong="H1961"\w*. +\v 30 \w For|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H3068"\w* \w little|strong="H4592"\w* \w which|strong="H3068"\w* \w you|strong="H3588"\w* \w had|strong="H3068"\w* \w before|strong="H6440"\w* \w I|strong="H3588"\w* \w came|strong="H1961"\w*, \w and|strong="H3068"\w* \w it|strong="H3588"\w* \w has|strong="H3068"\w* \w increased|strong="H6555"\w* \w to|strong="H3068"\w* \w a|strong="H3068"\w* \w multitude|strong="H7230"\w*. \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w blessed|strong="H1288"\w* \w you|strong="H3588"\w* wherever \w I|strong="H3588"\w* \w turned|strong="H1961"\w*. \w Now|strong="H6258"\w* \w when|strong="H3588"\w* \w will|strong="H3068"\w* \w I|strong="H3588"\w* \w provide|strong="H6213"\w* \w for|strong="H3588"\w* \w my|strong="H3068"\w* \w own|strong="H1961"\w* \w house|strong="H1004"\w* \w also|strong="H1571"\w*?” +\p +\v 31 Laban \w said|strong="H1697"\w*, “\w What|strong="H4100"\w* \w shall|strong="H3808"\w* \w I|strong="H5414"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w*?” +\p \w Jacob|strong="H3290"\w* \w said|strong="H1697"\w*, “\w You|strong="H5414"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w give|strong="H5414"\w* \w me|strong="H5414"\w* \w anything|strong="H1697"\w*. If \w you|strong="H5414"\w* \w will|strong="H1697"\w* \w do|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w for|strong="H6213"\w* \w me|strong="H5414"\w*, \w I|strong="H5414"\w* \w will|strong="H1697"\w* \w again|strong="H7725"\w* \w feed|strong="H7462"\w* \w your|strong="H5414"\w* \w flock|strong="H6629"\w* \w and|strong="H7725"\w* \w keep|strong="H8104"\w* \w it|strong="H5414"\w*. +\v 32 \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w flock|strong="H6629"\w* \w today|strong="H3117"\w*, \w removing|strong="H5493"\w* \w from|strong="H5493"\w* \w there|strong="H8033"\w* \w every|strong="H3605"\w* \w speckled|strong="H5348"\w* \w and|strong="H3117"\w* \w spotted|strong="H2921"\w* \w one|strong="H3605"\w*, \w and|strong="H3117"\w* \w every|strong="H3605"\w* \w black|strong="H2345"\w* \w one|strong="H3605"\w* \w among|strong="H8033"\w* \w the|strong="H3605"\w* \w sheep|strong="H6629"\w*, \w and|strong="H3117"\w* \w the|strong="H3605"\w* \w spotted|strong="H2921"\w* \w and|strong="H3117"\w* \w speckled|strong="H5348"\w* \w among|strong="H8033"\w* \w the|strong="H3605"\w* \w goats|strong="H5795"\w*. \w This|strong="H5674"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w my|strong="H3605"\w* \w hire|strong="H7939"\w*. +\v 33 \w So|strong="H3588"\w* \w my|strong="H3605"\w* \w righteousness|strong="H6666"\w* \w will|strong="H1931"\w* \w answer|strong="H6030"\w* \w for|strong="H3588"\w* \w me|strong="H6440"\w* hereafter, \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w come|strong="H4279"\w* \w concerning|strong="H5921"\w* \w my|strong="H3605"\w* \w hire|strong="H7939"\w* \w that|strong="H3588"\w* \w is|strong="H1931"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*. \w Every|strong="H3605"\w* \w one|strong="H3605"\w* \w that|strong="H3588"\w* \w is|strong="H1931"\w* \w not|strong="H3588"\w* \w speckled|strong="H5348"\w* \w and|strong="H6030"\w* \w spotted|strong="H2921"\w* \w among|strong="H5921"\w* \w the|strong="H3605"\w* \w goats|strong="H5795"\w*, \w and|strong="H6030"\w* \w black|strong="H2345"\w* \w among|strong="H5921"\w* \w the|strong="H3605"\w* \w sheep|strong="H3775"\w*, \w that|strong="H3588"\w* might \w be|strong="H3117"\w* \w with|strong="H5921"\w* \w me|strong="H6440"\w*, \w will|strong="H1931"\w* \w be|strong="H3117"\w* considered \w stolen|strong="H1589"\w*.” +\p +\v 34 \w Laban|strong="H3837"\w* \w said|strong="H1697"\w*, “\w Behold|strong="H2005"\w*, \w let|strong="H1961"\w* \w it|strong="H1961"\w* \w be|strong="H1961"\w* according \w to|strong="H1961"\w* \w your|strong="H1961"\w* \w word|strong="H1697"\w*.” +\p +\v 35 \w That|strong="H3605"\w* \w day|strong="H3117"\w*, \w he|strong="H1931"\w* \w removed|strong="H5493"\w* \w the|strong="H3605"\w* \w male|strong="H8495"\w* \w goats|strong="H5795"\w* \w that|strong="H3605"\w* \w were|strong="H1121"\w* streaked \w and|strong="H1121"\w* \w spotted|strong="H2921"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w female|strong="H5795"\w* \w goats|strong="H5795"\w* \w that|strong="H3605"\w* \w were|strong="H1121"\w* \w speckled|strong="H5348"\w* \w and|strong="H1121"\w* \w spotted|strong="H2921"\w*, \w every|strong="H3605"\w* \w one|strong="H3605"\w* \w that|strong="H3605"\w* \w had|strong="H5414"\w* \w white|strong="H3836"\w* \w in|strong="H3117"\w* \w it|strong="H5414"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w black|strong="H2345"\w* \w ones|strong="H1121"\w* among \w the|strong="H3605"\w* \w sheep|strong="H3775"\w*, \w and|strong="H1121"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w*. +\v 36 \w He|strong="H3117"\w* \w set|strong="H7760"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*’ \w journey|strong="H1870"\w* between \w himself|strong="H3117"\w* \w and|strong="H3117"\w* \w Jacob|strong="H3290"\w*, \w and|strong="H3117"\w* \w Jacob|strong="H3290"\w* \w fed|strong="H7462"\w* \w the|strong="H3117"\w* \w rest|strong="H3498"\w* \w of|strong="H3117"\w* \w Laban|strong="H3837"\w*’s \w flocks|strong="H6629"\w*. +\p +\v 37 \w Jacob|strong="H3290"\w* \w took|strong="H3947"\w* \w to|strong="H5921"\w* himself \w rods|strong="H4731"\w* \w of|strong="H5921"\w* \w fresh|strong="H3892"\w* \w poplar|strong="H3839"\w*, \w almond|strong="H3869"\w*, \w and|strong="H3290"\w* \w plane|strong="H6196"\w* \w tree|strong="H6196"\w*, \w peeled|strong="H6478"\w* \w white|strong="H3836"\w* \w streaks|strong="H6479"\w* \w in|strong="H5921"\w* \w them|strong="H5921"\w*, \w and|strong="H3290"\w* \w made|strong="H3947"\w* \w the|strong="H5921"\w* \w white|strong="H3836"\w* \w appear|strong="H4286"\w* \w which|strong="H4286"\w* \w was|strong="H3290"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w rods|strong="H4731"\w*. +\v 38 \w He|strong="H4325"\w* \w set|strong="H3322"\w* \w the|strong="H8354"\w* \w rods|strong="H4731"\w* \w which|strong="H4325"\w* \w he|strong="H4325"\w* \w had|strong="H4325"\w* \w peeled|strong="H6478"\w* \w opposite|strong="H5227"\w* \w the|strong="H8354"\w* \w flocks|strong="H6629"\w* \w in|strong="H6629"\w* \w the|strong="H8354"\w* \w watering|strong="H4325"\w* \w troughs|strong="H8268"\w* where \w the|strong="H8354"\w* \w flocks|strong="H6629"\w* \w came|strong="H4325"\w* \w to|strong="H4325"\w* \w drink|strong="H8354"\w*. They \w conceived|strong="H3179"\w* when they \w came|strong="H4325"\w* \w to|strong="H4325"\w* \w drink|strong="H8354"\w*. +\v 39 \w The|strong="H3205"\w* \w flocks|strong="H6629"\w* \w conceived|strong="H3179"\w* before \w the|strong="H3205"\w* \w rods|strong="H4731"\w*, \w and|strong="H6629"\w* \w the|strong="H3205"\w* \w flocks|strong="H6629"\w* \w produced|strong="H3205"\w* streaked, \w speckled|strong="H5348"\w*, \w and|strong="H6629"\w* \w spotted|strong="H2921"\w*. +\v 40 \w Jacob|strong="H3290"\w* \w separated|strong="H6504"\w* \w the|strong="H3605"\w* \w lambs|strong="H3775"\w*, \w and|strong="H6629"\w* \w set|strong="H5414"\w* \w the|strong="H3605"\w* \w faces|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w flocks|strong="H6629"\w* \w toward|strong="H5921"\w* \w the|strong="H3605"\w* streaked \w and|strong="H6629"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w black|strong="H2345"\w* \w in|strong="H5921"\w* \w Laban|strong="H3837"\w*’s \w flock|strong="H6629"\w*. \w He|strong="H3605"\w* \w put|strong="H5414"\w* \w his|strong="H3605"\w* \w own|strong="H6440"\w* \w droves|strong="H5739"\w* \w apart|strong="H6504"\w*, \w and|strong="H6629"\w* didn’t \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H5921"\w* \w Laban|strong="H3837"\w*’s \w flock|strong="H6629"\w*. +\v 41 \w Whenever|strong="H3605"\w* \w the|strong="H3605"\w* \w stronger|strong="H7194"\w* \w of|strong="H5869"\w* \w the|strong="H3605"\w* \w flock|strong="H6629"\w* \w conceived|strong="H3179"\w*, \w Jacob|strong="H3290"\w* \w laid|strong="H7760"\w* \w the|strong="H3605"\w* \w rods|strong="H4731"\w* \w in|strong="H6629"\w* front \w of|strong="H5869"\w* \w the|strong="H3605"\w* \w eyes|strong="H5869"\w* \w of|strong="H5869"\w* \w the|strong="H3605"\w* \w flock|strong="H6629"\w* \w in|strong="H6629"\w* \w the|strong="H3605"\w* watering \w troughs|strong="H7298"\w*, \w that|strong="H3605"\w* \w they|strong="H3605"\w* might \w conceive|strong="H3179"\w* among \w the|strong="H3605"\w* \w rods|strong="H4731"\w*; +\v 42 \w but|strong="H3808"\w* \w when|strong="H1961"\w* \w the|strong="H7760"\w* \w flock|strong="H6629"\w* \w were|strong="H1961"\w* \w feeble|strong="H5848"\w*, \w he|strong="H3808"\w* didn’t \w put|strong="H7760"\w* \w them|strong="H7760"\w* \w in|strong="H6629"\w*. \w So|strong="H1961"\w* \w the|strong="H7760"\w* \w feebler|strong="H5848"\w* \w were|strong="H1961"\w* \w Laban|strong="H3837"\w*’s, \w and|strong="H6629"\w* \w the|strong="H7760"\w* \w stronger|strong="H7194"\w* \w Jacob|strong="H3290"\w*’s. +\v 43 \w The|strong="H1961"\w* man \w increased|strong="H6555"\w* \w exceedingly|strong="H3966"\w*, \w and|strong="H5650"\w* \w had|strong="H1961"\w* \w large|strong="H7227"\w* \w flocks|strong="H6629"\w*, \w female|strong="H8198"\w* \w servants|strong="H5650"\w* \w and|strong="H5650"\w* \w male|strong="H5650"\w* \w servants|strong="H5650"\w*, \w and|strong="H5650"\w* \w camels|strong="H1581"\w* \w and|strong="H5650"\w* \w donkeys|strong="H2543"\w*. +\c 31 +\p +\v 1 \w Jacob|strong="H3290"\w* \w heard|strong="H8085"\w* \w Laban|strong="H3837"\w*’s \w sons|strong="H1121"\w*’ \w words|strong="H1697"\w*, \w saying|strong="H1697"\w*, “\w Jacob|strong="H3290"\w* \w has|strong="H1697"\w* \w taken|strong="H3947"\w* \w away|strong="H3947"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w was|strong="H1697"\w* \w our|strong="H3605"\w* \w father|strong="H1121"\w*’s. \w He|strong="H6213"\w* \w has|strong="H1697"\w* obtained \w all|strong="H3605"\w* \w this|strong="H2088"\w* \w wealth|strong="H3519"\w* \w from|strong="H8085"\w* \w that|strong="H3605"\w* \w which|strong="H1697"\w* \w was|strong="H1697"\w* \w our|strong="H3605"\w* \w father|strong="H1121"\w*’s.” +\v 2 \w Jacob|strong="H3290"\w* \w saw|strong="H7200"\w* \w the|strong="H6440"\w* \w expression|strong="H6440"\w* \w on|strong="H7200"\w* \w Laban|strong="H3837"\w*’s \w face|strong="H6440"\w*, \w and|strong="H6440"\w*, \w behold|strong="H2009"\w*, \w it|strong="H7200"\w* \w was|strong="H3290"\w* \w not|strong="H7200"\w* \w toward|strong="H6440"\w* \w him|strong="H6440"\w* \w as|strong="H6440"\w* \w before|strong="H6440"\w*. +\v 3 \w Yahweh|strong="H3068"\w* said \w to|strong="H7725"\w* \w Jacob|strong="H3290"\w*, “\w Return|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H3068"\w* land \w of|strong="H3068"\w* \w your|strong="H3068"\w* fathers, \w and|strong="H3068"\w* \w to|strong="H7725"\w* \w your|strong="H3068"\w* \w relatives|strong="H4138"\w*, \w and|strong="H3068"\w* \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H7725"\w*.” +\p +\v 4 \w Jacob|strong="H3290"\w* \w sent|strong="H7971"\w* \w and|strong="H7971"\w* \w called|strong="H7121"\w* \w Rachel|strong="H7354"\w* \w and|strong="H7971"\w* \w Leah|strong="H3812"\w* \w to|strong="H7971"\w* \w the|strong="H7121"\w* \w field|strong="H7704"\w* \w to|strong="H7971"\w* \w his|strong="H7121"\w* \w flock|strong="H6629"\w*, +\v 5 \w and|strong="H6440"\w* said \w to|strong="H1961"\w* \w them|strong="H6440"\w*, “\w I|strong="H3588"\w* \w see|strong="H7200"\w* \w the|strong="H6440"\w* \w expression|strong="H6440"\w* \w on|strong="H7200"\w* \w your|strong="H6440"\w* father’s \w face|strong="H6440"\w*, \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H1961"\w* \w not|strong="H1961"\w* \w toward|strong="H6440"\w* \w me|strong="H6440"\w* \w as|strong="H1961"\w* \w before|strong="H6440"\w*; \w but|strong="H3588"\w* \w the|strong="H6440"\w* God \w of|strong="H6440"\w* \w my|strong="H7200"\w* father \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w with|strong="H6440"\w* \w me|strong="H6440"\w*. +\v 6 \w You|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3045"\w* \w served|strong="H5647"\w* \w your|strong="H3605"\w* father \w with|strong="H3045"\w* \w all|strong="H3605"\w* \w of|strong="H3605"\w* \w my|strong="H3605"\w* \w strength|strong="H3581"\w*. +\v 7 \w Your|strong="H5414"\w* father \w has|strong="H7489"\w* \w deceived|strong="H2048"\w* \w me|strong="H5414"\w*, \w and|strong="H3808"\w* \w changed|strong="H2498"\w* \w my|strong="H5414"\w* \w wages|strong="H4909"\w* \w ten|strong="H6235"\w* \w times|strong="H4489"\w*, \w but|strong="H3808"\w* \w God|strong="H5414"\w* didn’t \w allow|strong="H5414"\w* \w him|strong="H5414"\w* \w to|strong="H5414"\w* \w hurt|strong="H7489"\w* \w me|strong="H5414"\w*. +\v 8 \w If|strong="H1961"\w* \w he|strong="H3605"\w* said, ‘\w The|strong="H3605"\w* \w speckled|strong="H5348"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w your|strong="H3605"\w* \w wages|strong="H7939"\w*,’ \w then|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w flock|strong="H6629"\w* \w bore|strong="H3205"\w* \w speckled|strong="H5348"\w*. \w If|strong="H1961"\w* \w he|strong="H3605"\w* said, ‘\w The|strong="H3605"\w* streaked \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w your|strong="H3605"\w* \w wages|strong="H7939"\w*,’ \w then|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w flock|strong="H6629"\w* \w bore|strong="H3205"\w* streaked. +\v 9 Thus \w God|strong="H5414"\w* \w has|strong="H5414"\w* \w taken|strong="H5337"\w* \w away|strong="H5337"\w* \w your|strong="H5414"\w* father’s \w livestock|strong="H4735"\w*, \w and|strong="H4735"\w* \w given|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H5414"\w* \w me|strong="H5414"\w*. +\v 10 \w During|strong="H1961"\w* \w mating|strong="H3179"\w* \w season|strong="H6256"\w*, \w I|strong="H2009"\w* \w lifted|strong="H5375"\w* \w up|strong="H5927"\w* \w my|strong="H7200"\w* \w eyes|strong="H5869"\w*, \w and|strong="H5869"\w* \w saw|strong="H7200"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w dream|strong="H2472"\w*, \w and|strong="H5869"\w* \w behold|strong="H2009"\w*, \w the|strong="H5921"\w* \w male|strong="H6260"\w* \w goats|strong="H6260"\w* \w which|strong="H5869"\w* \w leaped|strong="H5927"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w flock|strong="H6629"\w* \w were|strong="H1961"\w* streaked, \w speckled|strong="H5348"\w*, \w and|strong="H5869"\w* grizzled. +\v 11 \w The|strong="H2009"\w* \w angel|strong="H4397"\w* \w of|strong="H4397"\w* God said \w to|strong="H4397"\w* \w me|strong="H2472"\w* \w in|strong="H3290"\w* \w the|strong="H2009"\w* \w dream|strong="H2472"\w*, ‘\w Jacob|strong="H3290"\w*,’ \w and|strong="H3290"\w* \w I|strong="H2009"\w* said, ‘\w Here|strong="H2009"\w* \w I|strong="H2009"\w* am.’ +\v 12 \w He|strong="H3588"\w* said, ‘\w Now|strong="H4994"\w* \w lift|strong="H5375"\w* \w up|strong="H5927"\w* \w your|strong="H3605"\w* \w eyes|strong="H5869"\w*, \w and|strong="H5869"\w* \w behold|strong="H7200"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w male|strong="H6260"\w* \w goats|strong="H6260"\w* \w which|strong="H5869"\w* \w leap|strong="H5927"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w flock|strong="H6629"\w* \w are|strong="H5869"\w* streaked, \w speckled|strong="H5348"\w*, \w and|strong="H5869"\w* grizzled, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H5869"\w* \w seen|strong="H7200"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w Laban|strong="H3837"\w* \w does|strong="H6213"\w* \w to|strong="H5927"\w* \w you|strong="H3588"\w*. +\v 13 \w I|strong="H6258"\w* am \w the|strong="H4480"\w* \w God|strong="H1008"\w* \w of|strong="H4480"\w* \w Bethel|strong="H1008"\w*, \w where|strong="H8033"\w* \w you|strong="H7725"\w* \w anointed|strong="H4886"\w* \w a|strong="H3068"\w* \w pillar|strong="H4676"\w*, \w where|strong="H8033"\w* \w you|strong="H7725"\w* \w vowed|strong="H5087"\w* \w a|strong="H3068"\w* \w vow|strong="H5088"\w* \w to|strong="H7725"\w* \w me|strong="H7725"\w*. \w Now|strong="H6258"\w* \w arise|strong="H6965"\w*, \w get|strong="H6965"\w* \w out|strong="H3318"\w* \w from|strong="H4480"\w* \w this|strong="H2063"\w* land, \w and|strong="H6965"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H4480"\w* land \w of|strong="H4480"\w* \w your|strong="H7725"\w* \w birth|strong="H4138"\w*.’” +\p +\v 14 \w Rachel|strong="H7354"\w* \w and|strong="H6030"\w* \w Leah|strong="H3812"\w* \w answered|strong="H6030"\w* \w him|strong="H6030"\w*, “\w Is|strong="H1004"\w* there \w yet|strong="H5750"\w* \w any|strong="H5750"\w* \w portion|strong="H2506"\w* \w or|strong="H2506"\w* \w inheritance|strong="H5159"\w* \w for|strong="H1004"\w* \w us|strong="H6030"\w* \w in|strong="H1004"\w* \w our|strong="H5750"\w* father’s \w house|strong="H1004"\w*? +\v 15 Aren’t \w we|strong="H3068"\w* \w considered|strong="H2803"\w* \w as|strong="H2803"\w* \w foreigners|strong="H5237"\w* \w by|strong="H1571"\w* \w him|strong="H2803"\w*? \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w sold|strong="H4376"\w* \w us|strong="H3588"\w*, \w and|strong="H3701"\w* \w has|strong="H3588"\w* \w also|strong="H1571"\w* used up \w our|strong="H3588"\w* \w money|strong="H3701"\w*. +\v 16 \w For|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w riches|strong="H6239"\w* \w which|strong="H1931"\w* God \w has|strong="H3588"\w* \w taken|strong="H5337"\w* \w away|strong="H5337"\w* \w from|strong="H1121"\w* \w our|strong="H3605"\w* \w father|strong="H1121"\w* \w are|strong="H1121"\w* ours \w and|strong="H1121"\w* \w our|strong="H3605"\w* \w children|strong="H1121"\w*’s. \w Now|strong="H6258"\w* \w then|strong="H6258"\w*, \w whatever|strong="H3605"\w* God \w has|strong="H3588"\w* said \w to|strong="H6213"\w* \w you|strong="H3588"\w*, \w do|strong="H6213"\w*.” +\p +\v 17 \w Then|strong="H6965"\w* \w Jacob|strong="H3290"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w*, \w and|strong="H1121"\w* \w set|strong="H6965"\w* \w his|strong="H5375"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H5375"\w* wives \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w camels|strong="H1581"\w*, +\v 18 \w and|strong="H3327"\w* \w he|strong="H3605"\w* took \w away|strong="H5090"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w livestock|strong="H4735"\w*, \w and|strong="H3327"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w possessions|strong="H7399"\w* \w which|strong="H7399"\w* \w he|strong="H3605"\w* \w had|strong="H3327"\w* \w gathered|strong="H7408"\w*, \w including|strong="H3605"\w* \w the|strong="H3605"\w* \w livestock|strong="H4735"\w* \w which|strong="H7399"\w* \w he|strong="H3605"\w* \w had|strong="H3327"\w* gained \w in|strong="H7408"\w* \w Paddan|strong="H6307"\w* \w Aram|strong="H6307"\w*, \w to|strong="H3605"\w* go \w to|strong="H3605"\w* \w Isaac|strong="H3327"\w* \w his|strong="H3605"\w* father, \w to|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H3605"\w* \w Canaan|strong="H3667"\w*. +\v 19 \w Now|strong="H1980"\w* \w Laban|strong="H3837"\w* \w had|strong="H7354"\w* \w gone|strong="H1980"\w* \w to|strong="H1980"\w* \w shear|strong="H1494"\w* \w his|strong="H1494"\w* \w sheep|strong="H6629"\w*; \w and|strong="H1980"\w* \w Rachel|strong="H7354"\w* \w stole|strong="H1589"\w* \w the|strong="H1980"\w* \w teraphim|strong="H8655"\w*\f + \fr 31:19 \ft teraphim were household idols that may have been associated with inheritance rights to the household property.\f* \w that|strong="H6629"\w* \w were|strong="H6629"\w* \w her|strong="H1980"\w* father’s. +\p +\v 20 \w Jacob|strong="H3290"\w* \w deceived|strong="H1589"\w* \w Laban|strong="H3837"\w* \w the|strong="H5921"\w* Syrian, \w in|strong="H5921"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* didn’t \w tell|strong="H5046"\w* \w him|strong="H5921"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H3820"\w* running \w away|strong="H1272"\w*. +\v 21 \w So|strong="H6965"\w* \w he|strong="H1931"\w* \w fled|strong="H1272"\w* \w with|strong="H6440"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H1931"\w* \w had|strong="H7760"\w*. \w He|strong="H1931"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w*, \w passed|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H3605"\w* \w River|strong="H5104"\w*, \w and|strong="H6965"\w* \w set|strong="H7760"\w* \w his|strong="H3605"\w* \w face|strong="H6440"\w* \w toward|strong="H6440"\w* \w the|strong="H3605"\w* \w mountain|strong="H2022"\w* \w of|strong="H2022"\w* \w Gilead|strong="H1568"\w*. +\p +\v 22 \w Laban|strong="H3837"\w* \w was|strong="H3117"\w* \w told|strong="H5046"\w* \w on|strong="H3117"\w* \w the|strong="H3588"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w Jacob|strong="H3290"\w* \w had|strong="H3588"\w* \w fled|strong="H1272"\w*. +\v 23 \w He|strong="H3117"\w* \w took|strong="H3947"\w* \w his|strong="H3947"\w* relatives \w with|strong="H5973"\w* \w him|strong="H5973"\w*, \w and|strong="H3117"\w* \w pursued|strong="H7291"\w* \w him|strong="H5973"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*’ \w journey|strong="H1870"\w*. \w He|strong="H3117"\w* \w overtook|strong="H1692"\w* \w him|strong="H5973"\w* \w in|strong="H3117"\w* \w the|strong="H3947"\w* \w mountain|strong="H2022"\w* \w of|strong="H3117"\w* \w Gilead|strong="H1568"\w*. +\v 24 God \w came|strong="H7451"\w* \w to|strong="H1696"\w* \w Laban|strong="H3837"\w* \w the|strong="H8104"\w* Syrian \w in|strong="H1696"\w* \w a|strong="H3068"\w* \w dream|strong="H2472"\w* \w of|strong="H1696"\w* \w the|strong="H8104"\w* \w night|strong="H3915"\w*, \w and|strong="H3915"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5973"\w*, “\w Be|strong="H7451"\w* \w careful|strong="H8104"\w* \w that|strong="H7451"\w* \w you|strong="H5704"\w* don’t \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w Jacob|strong="H3290"\w* \w either|strong="H3290"\w* \w good|strong="H2896"\w* \w or|strong="H6435"\w* \w bad|strong="H7451"\w*.” +\p +\v 25 \w Laban|strong="H3837"\w* \w caught|strong="H5381"\w* \w up|strong="H8628"\w* \w with|strong="H8628"\w* \w Jacob|strong="H3290"\w*. Now \w Jacob|strong="H3290"\w* \w had|strong="H3290"\w* \w pitched|strong="H8628"\w* \w his|strong="H3290"\w* tent \w in|strong="H3290"\w* \w the|strong="H8628"\w* \w mountain|strong="H2022"\w*, \w and|strong="H2022"\w* \w Laban|strong="H3837"\w* \w with|strong="H8628"\w* \w his|strong="H3290"\w* relatives encamped \w in|strong="H3290"\w* \w the|strong="H8628"\w* \w mountain|strong="H2022"\w* \w of|strong="H2022"\w* \w Gilead|strong="H1568"\w*. +\v 26 \w Laban|strong="H3837"\w* said \w to|strong="H6213"\w* \w Jacob|strong="H3290"\w*, “\w What|strong="H4100"\w* \w have|strong="H1323"\w* \w you|strong="H6213"\w* \w done|strong="H6213"\w*, \w that|strong="H6213"\w* \w you|strong="H6213"\w* \w have|strong="H1323"\w* \w deceived|strong="H1589"\w* \w me|strong="H6213"\w*, \w and|strong="H2719"\w* \w carried|strong="H7617"\w* \w away|strong="H7617"\w* \w my|strong="H6213"\w* \w daughters|strong="H1323"\w* \w like|strong="H6213"\w* \w captives|strong="H7617"\w* \w of|strong="H1323"\w* \w the|strong="H6213"\w* \w sword|strong="H2719"\w*? +\v 27 \w Why|strong="H4100"\w* \w did|strong="H4100"\w* \w you|strong="H7971"\w* \w flee|strong="H1272"\w* \w secretly|strong="H2244"\w*, \w and|strong="H7971"\w* \w deceive|strong="H1589"\w* \w me|strong="H7971"\w*, \w and|strong="H7971"\w* didn’t \w tell|strong="H5046"\w* \w me|strong="H7971"\w*, \w that|strong="H3808"\w* \w I|strong="H3808"\w* might \w have|strong="H3808"\w* \w sent|strong="H7971"\w* \w you|strong="H7971"\w* \w away|strong="H7971"\w* \w with|strong="H7971"\w* \w mirth|strong="H8057"\w* \w and|strong="H7971"\w* \w with|strong="H7971"\w* \w songs|strong="H7892"\w*, \w with|strong="H7971"\w* \w tambourine|strong="H8596"\w* \w and|strong="H7971"\w* \w with|strong="H7971"\w* \w harp|strong="H3658"\w*; +\v 28 \w and|strong="H1121"\w* didn’t \w allow|strong="H5203"\w* \w me|strong="H6213"\w* \w to|strong="H6213"\w* \w kiss|strong="H5401"\w* \w my|strong="H6213"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w my|strong="H6213"\w* \w daughters|strong="H1323"\w*? \w Now|strong="H6258"\w* \w you|strong="H6213"\w* \w have|strong="H1121"\w* \w done|strong="H6213"\w* \w foolishly|strong="H5528"\w*. +\v 29 \w It|strong="H6213"\w* \w is|strong="H3426"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w power|strong="H3027"\w* \w of|strong="H3027"\w* \w my|strong="H8104"\w* \w hand|strong="H3027"\w* \w to|strong="H1696"\w* \w hurt|strong="H7451"\w* \w you|strong="H5704"\w*, \w but|strong="H1696"\w* \w the|strong="H6213"\w* \w God|strong="H3027"\w* \w of|strong="H3027"\w* \w your|strong="H8104"\w* father \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H6213"\w* last night, \w saying|strong="H1696"\w*, ‘\w Be|strong="H3426"\w* \w careful|strong="H8104"\w* \w that|strong="H3027"\w* \w you|strong="H5704"\w* don’t \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w Jacob|strong="H3290"\w* \w either|strong="H3290"\w* \w good|strong="H2896"\w* \w or|strong="H5704"\w* \w bad|strong="H7451"\w*.’ +\v 30 \w Now|strong="H6258"\w*, \w you|strong="H3588"\w* want \w to|strong="H1980"\w* \w be|strong="H1004"\w* \w gone|strong="H1980"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w greatly|strong="H3700"\w* \w longed|strong="H3700"\w* \w for|strong="H3588"\w* \w your|strong="H3588"\w* father’s \w house|strong="H1004"\w*, \w but|strong="H3588"\w* \w why|strong="H4100"\w* \w have|strong="H6258"\w* \w you|strong="H3588"\w* \w stolen|strong="H1589"\w* \w my|strong="H3588"\w* \w gods|strong="H1980"\w*?” +\p +\v 31 \w Jacob|strong="H3290"\w* \w answered|strong="H6030"\w* \w Laban|strong="H3837"\w*, “\w Because|strong="H3588"\w* \w I|strong="H3588"\w* \w was|strong="H3290"\w* \w afraid|strong="H3372"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w said|strong="H6030"\w*, ‘\w Lest|strong="H6435"\w* \w you|strong="H3588"\w* \w should|strong="H3588"\w* \w take|strong="H1497"\w* \w your|strong="H3588"\w* \w daughters|strong="H1323"\w* \w from|strong="H5973"\w* \w me|strong="H5973"\w* \w by|strong="H5973"\w* \w force|strong="H1497"\w*.’ +\v 32 \w Anyone|strong="H3588"\w* \w you|strong="H3588"\w* \w find|strong="H4672"\w* \w your|strong="H3947"\w* gods \w with|strong="H5973"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w live|strong="H2421"\w*. \w Before|strong="H5048"\w* \w our|strong="H3947"\w* relatives, \w discern|strong="H5234"\w* \w what|strong="H4100"\w* \w is|strong="H4100"\w* yours \w with|strong="H5973"\w* \w me|strong="H5978"\w*, \w and|strong="H3045"\w* \w take|strong="H3947"\w* \w it|strong="H3588"\w*.” \w For|strong="H3588"\w* \w Jacob|strong="H3290"\w* didn’t \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Rachel|strong="H7354"\w* \w had|strong="H3588"\w* \w stolen|strong="H1589"\w* \w them|strong="H3947"\w*. +\p +\v 33 \w Laban|strong="H3837"\w* \w went|strong="H3318"\w* \w into|strong="H3318"\w* \w Jacob|strong="H3290"\w*’s tent, \w into|strong="H3318"\w* \w Leah|strong="H3812"\w*’s tent, \w and|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H3318"\w* tent \w of|strong="H3318"\w* \w the|strong="H3318"\w* \w two|strong="H8147"\w* \w female|strong="H8147"\w* servants; \w but|strong="H3808"\w* \w he|strong="H8147"\w* didn’t \w find|strong="H4672"\w* \w them|strong="H3318"\w*. \w He|strong="H8147"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w Leah|strong="H3812"\w*’s tent, \w and|strong="H3318"\w* \w entered|strong="H3318"\w* \w into|strong="H3318"\w* \w Rachel|strong="H7354"\w*’s tent. +\v 34 \w Now|strong="H3947"\w* \w Rachel|strong="H7354"\w* \w had|strong="H7354"\w* \w taken|strong="H3947"\w* \w the|strong="H3605"\w* \w teraphim|strong="H8655"\w*, \w put|strong="H7760"\w* \w them|strong="H5921"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w camel|strong="H1581"\w*’s \w saddle|strong="H3733"\w*, \w and|strong="H3427"\w* \w sat|strong="H3427"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*. \w Laban|strong="H3837"\w* \w felt|strong="H4959"\w* \w around|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* tent, \w but|strong="H3808"\w* didn’t \w find|strong="H4672"\w* \w them|strong="H5921"\w*. +\v 35 \w She|strong="H3588"\w* said \w to|strong="H3201"\w* \w her|strong="H4672"\w* father, “Don’t \w let|strong="H3808"\w* \w my|strong="H6965"\w* lord \w be|strong="H3808"\w* \w angry|strong="H2734"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w can|strong="H3201"\w*’t \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w*’m \w having|strong="H3808"\w* \w my|strong="H6965"\w* period.” \w He|strong="H3588"\w* \w searched|strong="H2664"\w*, \w but|strong="H3588"\w* didn’t \w find|strong="H4672"\w* \w the|strong="H6440"\w* \w teraphim|strong="H8655"\w*. +\p +\v 36 \w Jacob|strong="H3290"\w* \w was|strong="H3290"\w* \w angry|strong="H2734"\w*, \w and|strong="H6030"\w* argued \w with|strong="H7378"\w* \w Laban|strong="H3837"\w*. \w Jacob|strong="H3290"\w* \w answered|strong="H6030"\w* \w Laban|strong="H3837"\w*, “\w What|strong="H4100"\w* \w is|strong="H4100"\w* \w my|strong="H3290"\w* \w trespass|strong="H6588"\w*? \w What|strong="H4100"\w* \w is|strong="H4100"\w* \w my|strong="H3290"\w* \w sin|strong="H2403"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H2403"\w* \w hotly|strong="H1814"\w* \w pursued|strong="H1814"\w* \w me|strong="H6030"\w*? +\v 37 \w Now|strong="H3588"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H4672"\w* \w felt|strong="H4959"\w* around \w in|strong="H1004"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w stuff|strong="H3627"\w*, \w what|strong="H4100"\w* \w have|strong="H4672"\w* \w you|strong="H3588"\w* \w found|strong="H4672"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w household|strong="H1004"\w* \w stuff|strong="H3627"\w*? \w Set|strong="H7760"\w* \w it|strong="H7760"\w* \w here|strong="H3541"\w* \w before|strong="H5048"\w* \w my|strong="H3605"\w* relatives \w and|strong="H1004"\w* \w your|strong="H3605"\w* relatives, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w may|strong="H1004"\w* \w judge|strong="H3198"\w* between \w us|strong="H7760"\w* \w two|strong="H8147"\w*. +\p +\v 38 “\w These|strong="H2088"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w I|strong="H2088"\w* \w have|strong="H3808"\w* \w been|strong="H3808"\w* \w with|strong="H5973"\w* \w you|strong="H5973"\w*. \w Your|strong="H3808"\w* \w ewes|strong="H7353"\w* \w and|strong="H6242"\w* \w your|strong="H3808"\w* \w female|strong="H5795"\w* \w goats|strong="H5795"\w* \w have|strong="H3808"\w* \w not|strong="H3808"\w* \w cast|strong="H7921"\w* \w their|strong="H3808"\w* \w young|strong="H7921"\w*, \w and|strong="H6242"\w* \w I|strong="H2088"\w* haven’t eaten \w the|strong="H5973"\w* rams \w of|strong="H8141"\w* \w your|strong="H3808"\w* \w flocks|strong="H6629"\w*. +\v 39 \w That|strong="H3117"\w* \w which|strong="H3117"\w* \w was|strong="H3117"\w* \w torn|strong="H2966"\w* \w of|strong="H3117"\w* animals, \w I|strong="H3117"\w* didn’t \w bring|strong="H2398"\w* \w to|strong="H3027"\w* \w you|strong="H3117"\w*. \w I|strong="H3117"\w* \w bore|strong="H2398"\w* \w its|strong="H3808"\w* \w loss|strong="H2398"\w*. \w Of|strong="H3117"\w* \w my|strong="H1245"\w* \w hand|strong="H3027"\w* \w you|strong="H3117"\w* \w required|strong="H1245"\w* \w it|strong="H3915"\w*, whether \w stolen|strong="H1589"\w* \w by|strong="H3027"\w* \w day|strong="H3117"\w* \w or|strong="H3808"\w* \w stolen|strong="H1589"\w* \w by|strong="H3027"\w* \w night|strong="H3915"\w*. +\v 40 \w This|strong="H3117"\w* \w was|strong="H1961"\w* \w my|strong="H1961"\w* situation: \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w the|strong="H3117"\w* \w drought|strong="H2721"\w* consumed \w me|strong="H1961"\w*, \w and|strong="H3117"\w* \w the|strong="H3117"\w* \w frost|strong="H7140"\w* \w by|strong="H3117"\w* \w night|strong="H3915"\w*; \w and|strong="H3117"\w* \w my|strong="H1961"\w* \w sleep|strong="H8142"\w* \w fled|strong="H5074"\w* \w from|strong="H3117"\w* \w my|strong="H1961"\w* \w eyes|strong="H5869"\w*. +\v 41 \w These|strong="H2088"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w I|strong="H2088"\w* \w have|strong="H1323"\w* \w been|strong="H5647"\w* \w in|strong="H8141"\w* \w your|strong="H2088"\w* \w house|strong="H1004"\w*. \w I|strong="H2088"\w* \w served|strong="H5647"\w* \w you|strong="H5647"\w* \w fourteen|strong="H6240"\w* \w years|strong="H8141"\w* \w for|strong="H1004"\w* \w your|strong="H2088"\w* \w two|strong="H8147"\w* \w daughters|strong="H1323"\w*, \w and|strong="H6242"\w* \w six|strong="H8337"\w* \w years|strong="H8141"\w* \w for|strong="H1004"\w* \w your|strong="H2088"\w* \w flock|strong="H6629"\w*, \w and|strong="H6242"\w* \w you|strong="H5647"\w* \w have|strong="H1323"\w* \w changed|strong="H2498"\w* \w my|strong="H2498"\w* \w wages|strong="H4909"\w* \w ten|strong="H6235"\w* \w times|strong="H4489"\w*. +\v 42 \w Unless|strong="H3588"\w* \w the|strong="H7200"\w* \w God|strong="H7971"\w* \w of|strong="H3709"\w* \w my|strong="H7200"\w* father, \w the|strong="H7200"\w* \w God|strong="H7971"\w* \w of|strong="H3709"\w* Abraham, \w and|strong="H7971"\w* \w the|strong="H7200"\w* \w fear|strong="H6343"\w* \w of|strong="H3709"\w* \w Isaac|strong="H3327"\w*, \w had|strong="H1961"\w* \w been|strong="H1961"\w* \w with|strong="H3198"\w* \w me|strong="H7971"\w*, \w surely|strong="H3588"\w* \w now|strong="H6258"\w* \w you|strong="H3588"\w* would \w have|strong="H1961"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w* \w away|strong="H7971"\w* \w empty|strong="H7387"\w*. \w God|strong="H7971"\w* \w has|strong="H1961"\w* \w seen|strong="H7200"\w* \w my|strong="H7200"\w* \w affliction|strong="H6040"\w* \w and|strong="H7971"\w* \w the|strong="H7200"\w* \w labor|strong="H3018"\w* \w of|strong="H3709"\w* \w my|strong="H7200"\w* \w hands|strong="H3709"\w*, \w and|strong="H7971"\w* \w rebuked|strong="H3198"\w* \w you|strong="H3588"\w* \w last|strong="H3588"\w* night.” +\p +\v 43 \w Laban|strong="H3837"\w* \w answered|strong="H6030"\w* \w Jacob|strong="H3290"\w*, “\w The|strong="H3605"\w* \w daughters|strong="H1323"\w* \w are|strong="H3117"\w* \w my|strong="H3605"\w* \w daughters|strong="H1323"\w*, \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w are|strong="H3117"\w* \w my|strong="H3605"\w* \w children|strong="H1121"\w*, \w the|strong="H3605"\w* \w flocks|strong="H6629"\w* \w are|strong="H3117"\w* \w my|strong="H3605"\w* \w flocks|strong="H6629"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w that|strong="H7200"\w* \w you|strong="H3605"\w* \w see|strong="H7200"\w* \w is|strong="H1931"\w* \w mine|strong="H7200"\w*! \w What|strong="H4100"\w* \w can|strong="H4100"\w* \w I|strong="H3117"\w* \w do|strong="H6213"\w* \w today|strong="H3117"\w* \w to|strong="H6213"\w* \w these|strong="H6213"\w* \w my|strong="H3605"\w* \w daughters|strong="H1323"\w*, \w or|strong="H3117"\w* \w to|strong="H6213"\w* \w their|strong="H3605"\w* \w children|strong="H1121"\w* whom \w they|strong="H3117"\w* \w have|strong="H1121"\w* \w borne|strong="H3205"\w*? +\v 44 \w Now|strong="H6258"\w* \w come|strong="H1961"\w*, \w let|strong="H6258"\w*’s \w make|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w*, \w you|strong="H3772"\w* \w and|strong="H3212"\w* \w I|strong="H6258"\w*. \w Let|strong="H6258"\w* \w it|strong="H1961"\w* \w be|strong="H1961"\w* \w for|strong="H1961"\w* \w a|strong="H3068"\w* \w witness|strong="H5707"\w* between \w me|strong="H1961"\w* \w and|strong="H3212"\w* \w you|strong="H3772"\w*.” +\p +\v 45 \w Jacob|strong="H3290"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* stone, \w and|strong="H3290"\w* \w set|strong="H7311"\w* \w it|strong="H3947"\w* \w up|strong="H7311"\w* \w for|strong="H3947"\w* \w a|strong="H3068"\w* \w pillar|strong="H4676"\w*. +\v 46 \w Jacob|strong="H3290"\w* said \w to|strong="H6213"\w* \w his|strong="H3947"\w* relatives, “\w Gather|strong="H3950"\w* stones.” \w They|strong="H8033"\w* \w took|strong="H3947"\w* stones, \w and|strong="H8033"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w heap|strong="H1530"\w*. \w They|strong="H8033"\w* ate \w there|strong="H8033"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w heap|strong="H1530"\w*. +\v 47 \w Laban|strong="H3837"\w* \w called|strong="H7121"\w* \w it|strong="H7121"\w* Jegar Sahadutha,\f + \fr 31:47 \ft “Jegar Sahadutha” means “Witness Heap” in Aramaic.\f* \w but|strong="H3290"\w* \w Jacob|strong="H3290"\w* \w called|strong="H7121"\w* \w it|strong="H7121"\w* \w Galeed|strong="H1567"\w*.\f + \fr 31:47 \ft “Galeed” means “Witness Heap” in Hebrew.\f* +\v 48 \w Laban|strong="H3837"\w* \w said|strong="H7121"\w*, “\w This|strong="H2088"\w* \w heap|strong="H1530"\w* \w is|strong="H2088"\w* \w witness|strong="H5707"\w* \w between|strong="H5921"\w* \w me|strong="H5921"\w* \w and|strong="H3117"\w* \w you|strong="H5921"\w* \w today|strong="H3117"\w*.” \w Therefore|strong="H3651"\w* \w it|strong="H7121"\w* \w was|strong="H8034"\w* \w named|strong="H7121"\w* \w Galeed|strong="H1567"\w* +\v 49 \w and|strong="H3068"\w* \w Mizpah|strong="H4709"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* said, “\w Yahweh|strong="H3068"\w* \w watch|strong="H6822"\w* between \w me|strong="H5641"\w* \w and|strong="H3068"\w* \w you|strong="H3588"\w*, \w when|strong="H3588"\w* \w we|strong="H3068"\w* \w are|strong="H3068"\w* \w absent|strong="H5641"\w* \w one|strong="H3588"\w* \w from|strong="H3068"\w* \w another|strong="H7453"\w*. +\v 50 \w If|strong="H7200"\w* \w you|strong="H5921"\w* \w afflict|strong="H6031"\w* \w my|strong="H7200"\w* \w daughters|strong="H1323"\w*, \w or|strong="H7200"\w* \w if|strong="H7200"\w* \w you|strong="H5921"\w* \w take|strong="H3947"\w* wives \w in|strong="H5921"\w* \w addition|strong="H5921"\w* \w to|strong="H5921"\w* \w my|strong="H7200"\w* \w daughters|strong="H1323"\w*, \w no|strong="H3947"\w* \w man|strong="H7200"\w* \w is|strong="H1323"\w* \w with|strong="H5973"\w* \w us|strong="H5921"\w*; \w behold|strong="H7200"\w*, God \w is|strong="H1323"\w* \w witness|strong="H5707"\w* \w between|strong="H5973"\w* \w me|strong="H7200"\w* \w and|strong="H7200"\w* \w you|strong="H5921"\w*.” +\v 51 \w Laban|strong="H3837"\w* said \w to|strong="H2088"\w* \w Jacob|strong="H3290"\w*, “\w See|strong="H2009"\w* \w this|strong="H2088"\w* \w heap|strong="H1530"\w*, \w and|strong="H3290"\w* \w see|strong="H2009"\w* \w the|strong="H2009"\w* \w pillar|strong="H4676"\w*, \w which|strong="H2088"\w* \w I|strong="H2009"\w* \w have|strong="H1530"\w* \w set|strong="H3384"\w* between me \w and|strong="H3290"\w* \w you|strong="H3384"\w*. +\v 52 \w May|strong="H3808"\w* \w this|strong="H2088"\w* \w heap|strong="H1530"\w* \w be|strong="H3808"\w* \w a|strong="H3068"\w* \w witness|strong="H5707"\w*, \w and|strong="H2088"\w* \w the|strong="H5674"\w* \w pillar|strong="H4676"\w* \w be|strong="H3808"\w* \w a|strong="H3068"\w* \w witness|strong="H5707"\w*, \w that|strong="H2088"\w* \w I|strong="H2088"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w this|strong="H2088"\w* \w heap|strong="H1530"\w* \w to|strong="H5674"\w* \w you|strong="H3808"\w*, \w and|strong="H2088"\w* \w that|strong="H2088"\w* \w you|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w this|strong="H2088"\w* \w heap|strong="H1530"\w* \w and|strong="H2088"\w* \w this|strong="H2088"\w* \w pillar|strong="H4676"\w* \w to|strong="H5674"\w* \w me|strong="H5674"\w*, \w for|strong="H7451"\w* \w harm|strong="H7451"\w*. +\v 53 \w The|strong="H8199"\w* God \w of|strong="H6343"\w* Abraham, \w and|strong="H3290"\w* \w the|strong="H8199"\w* God \w of|strong="H6343"\w* \w Nahor|strong="H5152"\w*, \w the|strong="H8199"\w* God \w of|strong="H6343"\w* \w their|strong="H3290"\w* father, \w judge|strong="H8199"\w* \w between|strong="H8199"\w* \w us|strong="H8199"\w*.” Then \w Jacob|strong="H3290"\w* \w swore|strong="H7650"\w* \w by|strong="H7650"\w* \w the|strong="H8199"\w* \w fear|strong="H6343"\w* \w of|strong="H6343"\w* \w his|strong="H3327"\w* father, \w Isaac|strong="H3327"\w*. +\v 54 \w Jacob|strong="H3290"\w* \w offered|strong="H2076"\w* \w a|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w in|strong="H3899"\w* \w the|strong="H7121"\w* \w mountain|strong="H2022"\w*, \w and|strong="H3899"\w* \w called|strong="H7121"\w* \w his|strong="H7121"\w* relatives \w to|strong="H7121"\w* \w eat|strong="H3899"\w* \w bread|strong="H3899"\w*. \w They|strong="H7121"\w* ate \w bread|strong="H3899"\w*, \w and|strong="H3899"\w* \w stayed|strong="H3885"\w* \w all|strong="H3885"\w* \w night|strong="H3885"\w* \w in|strong="H3899"\w* \w the|strong="H7121"\w* \w mountain|strong="H2022"\w*. +\v 55 Early in the morning, Laban rose up, and kissed his sons and his daughters, and blessed them. Laban departed and returned to his place. +\c 32 +\p +\v 1 Jacob \w went|strong="H3212"\w* \w on|strong="H4725"\w* \w his|strong="H7725"\w* \w way|strong="H3212"\w*, \w and|strong="H1121"\w* \w the|strong="H7725"\w* angels \w of|strong="H1121"\w* God met \w him|strong="H7725"\w*. +\v 2 \w When|strong="H1980"\w* \w he|strong="H1980"\w* \w saw|strong="H3290"\w* \w them|strong="H1870"\w*, \w Jacob|strong="H3290"\w* said, “\w This|strong="H1870"\w* \w is|strong="H1870"\w* God’s army.” \w He|strong="H1980"\w* called \w the|strong="H1870"\w* name \w of|strong="H1870"\w* \w that|strong="H4397"\w* place Mahanaim.\f + \fr 32:2 \ft “Mahanaim” means “two camps”.\f* +\p +\v 3 \w Jacob|strong="H3290"\w* sent messengers \w in|strong="H8034"\w* front \w of|strong="H8034"\w* \w him|strong="H7121"\w* \w to|strong="H7200"\w* Esau, \w his|strong="H7121"\w* brother, \w to|strong="H7200"\w* \w the|strong="H7200"\w* \w land|strong="H4725"\w* \w of|strong="H8034"\w* Seir, \w the|strong="H7200"\w* field \w of|strong="H8034"\w* Edom. +\v 4 \w He|strong="H7971"\w* commanded \w them|strong="H7971"\w*, saying, “\w This|strong="H6440"\w* \w is|strong="H6440"\w* what \w you|strong="H6440"\w* \w shall|strong="H7704"\w* tell \w my|strong="H7971"\w* lord, \w Esau|strong="H6215"\w*: ‘\w This|strong="H6440"\w* \w is|strong="H6440"\w* what \w your|strong="H6440"\w* servant, \w Jacob|strong="H3290"\w*, says. \w I|strong="H6440"\w* have lived \w as|strong="H6440"\w* \w a|strong="H3068"\w* foreigner \w with|strong="H6440"\w* Laban, \w and|strong="H7971"\w* stayed \w until|strong="H7704"\w* \w now|strong="H7971"\w*. +\v 5 \w I|strong="H5704"\w* \w have|strong="H5650"\w* cattle, donkeys, flocks, \w male|strong="H5650"\w* \w servants|strong="H5650"\w*, \w and|strong="H5650"\w* female \w servants|strong="H5650"\w*. \w I|strong="H5704"\w* \w have|strong="H5650"\w* \w sent|strong="H6680"\w* \w to|strong="H5704"\w* tell \w my|strong="H3290"\w* lord, \w that|strong="H5650"\w* \w I|strong="H5704"\w* \w may|strong="H3541"\w* find favor \w in|strong="H5650"\w* \w your|strong="H6680"\w* sight.’” +\v 6 \w The|strong="H7971"\w* \w messengers|strong="H5650"\w* returned \w to|strong="H7971"\w* \w Jacob|strong="H7971"\w*, saying, “\w We|strong="H4672"\w* \w came|strong="H1961"\w* \w to|strong="H7971"\w* \w your|strong="H7971"\w* brother Esau. \w He|strong="H7971"\w* \w is|strong="H5650"\w* \w coming|strong="H5650"\w* \w to|strong="H7971"\w* \w meet|strong="H4672"\w* \w you|strong="H7971"\w*, \w and|strong="H7971"\w* four hundred \w men|strong="H5650"\w* \w are|strong="H5869"\w* \w with|strong="H5869"\w* \w him|strong="H7971"\w*.” +\v 7 \w Then|strong="H1980"\w* \w Jacob|strong="H3290"\w* \w was|strong="H3290"\w* greatly afraid \w and|strong="H3967"\w* \w was|strong="H3290"\w* distressed. \w He|strong="H1980"\w* divided \w the|strong="H7725"\w* \w people|strong="H1571"\w* \w who|strong="H4397"\w* \w were|strong="H3290"\w* \w with|strong="H5973"\w* \w him|strong="H7725"\w*, \w along|strong="H1980"\w* \w with|strong="H5973"\w* \w the|strong="H7725"\w* flocks, \w the|strong="H7725"\w* herds, \w and|strong="H3967"\w* \w the|strong="H7725"\w* camels, \w into|strong="H1980"\w* \w two|strong="H1980"\w* companies. +\v 8 \w He|strong="H8147"\w* said, “If Esau comes \w to|strong="H5971"\w* \w the|strong="H3372"\w* \w one|strong="H8147"\w* \w company|strong="H4264"\w*, \w and|strong="H5971"\w* strikes \w it|strong="H4264"\w*, \w then|strong="H3372"\w* \w the|strong="H3372"\w* \w company|strong="H4264"\w* \w which|strong="H5971"\w* \w is|strong="H5971"\w* left \w will|strong="H5971"\w* escape.” +\v 9 Jacob said, “God \w of|strong="H4264"\w* \w my|strong="H1961"\w* father Abraham, \w and|strong="H4264"\w* God \w of|strong="H4264"\w* \w my|strong="H1961"\w* father Isaac, \w Yahweh|strong="H3068"\w*, \w who|strong="H7604"\w* said \w to|strong="H1961"\w* \w me|strong="H5221"\w*, ‘Return \w to|strong="H1961"\w* \w your|strong="H1961"\w* country, \w and|strong="H4264"\w* \w to|strong="H1961"\w* \w your|strong="H1961"\w* relatives, \w and|strong="H4264"\w* \w I|strong="H6215"\w* \w will|strong="H1961"\w* do \w you|strong="H5221"\w* good,’ +\v 10 \w I|strong="H3068"\w* \w am|strong="H3068"\w* \w not|strong="H7725"\w* worthy \w of|strong="H3068"\w* \w the|strong="H3068"\w* least \w of|strong="H3068"\w* \w all|strong="H7725"\w* \w the|strong="H3068"\w* loving kindnesses, \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w all|strong="H7725"\w* \w the|strong="H3068"\w* truth, \w which|strong="H3068"\w* \w you|strong="H7725"\w* \w have|strong="H3068"\w* \w shown|strong="H5973"\w* \w to|strong="H7725"\w* \w your|strong="H3068"\w* servant; \w for|strong="H3068"\w* \w with|strong="H5973"\w* just \w my|strong="H3068"\w* staff \w I|strong="H3068"\w* crossed \w over|strong="H3068"\w* \w this|strong="H7725"\w* Jordan; \w and|strong="H3068"\w* \w now|strong="H3327"\w* \w I|strong="H3068"\w* \w have|strong="H3068"\w* \w become|strong="H7725"\w* two companies. +\v 11 Please deliver \w me|strong="H6213"\w* \w from|strong="H1961"\w* \w the|strong="H3605"\w* hand \w of|strong="H5650"\w* \w my|strong="H3605"\w* brother, \w from|strong="H1961"\w* \w the|strong="H3605"\w* hand \w of|strong="H5650"\w* Esau; \w for|strong="H3588"\w* \w I|strong="H3588"\w* fear \w him|strong="H6213"\w*, lest \w he|strong="H3588"\w* \w come|strong="H1961"\w* \w and|strong="H5650"\w* strike \w me|strong="H6213"\w* \w and|strong="H5650"\w* \w the|strong="H3605"\w* mothers \w with|strong="H6213"\w* \w the|strong="H3605"\w* children. +\v 12 \w You|strong="H3588"\w* said, ‘\w I|strong="H3588"\w* \w will|strong="H1121"\w* \w surely|strong="H3588"\w* \w do|strong="H4994"\w* \w you|strong="H3588"\w* good, \w and|strong="H1121"\w* \w make|strong="H3027"\w* \w your|strong="H5921"\w* \w offspring|strong="H1121"\w* \w as|strong="H3588"\w* \w the|strong="H5921"\w* sand \w of|strong="H1121"\w* \w the|strong="H5921"\w* sea, \w which|strong="H6215"\w* \w can|strong="H1121"\w*’t \w be|strong="H3027"\w* counted \w because|strong="H3588"\w* there \w are|strong="H1121"\w* \w so|strong="H6435"\w* many.’” +\p +\v 13 \w He|strong="H3808"\w* stayed \w there|strong="H7230"\w* \w that|strong="H3808"\w* night, \w and|strong="H3220"\w* \w took|strong="H7760"\w* \w from|strong="H5973"\w* \w that|strong="H3808"\w* \w which|strong="H2344"\w* \w he|strong="H3808"\w* \w had|strong="H7760"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w* \w a|strong="H3068"\w* present \w for|strong="H3808"\w* Esau, \w his|strong="H7760"\w* brother: +\v 14 \w two|strong="H3947"\w* hundred female goats \w and|strong="H3027"\w* twenty male goats, \w two|strong="H3947"\w* hundred ewes \w and|strong="H3027"\w* twenty rams, +\v 15 thirty milk camels \w and|strong="H3967"\w* their colts, forty cows, ten bulls, \w twenty|strong="H6242"\w* \w female|strong="H5795"\w* donkeys \w and|strong="H3967"\w* ten foals. +\v 16 \w He|strong="H6242"\w* delivered \w them|strong="H1121"\w* into \w the|strong="H1121"\w* hands \w of|strong="H1121"\w* \w his|strong="H1121"\w* servants, \w every|strong="H1121"\w* herd \w by|strong="H1121"\w* itself, \w and|strong="H1121"\w* said \w to|strong="H1121"\w* \w his|strong="H1121"\w* servants, “Pass over before \w me|strong="H1121"\w*, \w and|strong="H1121"\w* put \w a|strong="H3068"\w* space between herd \w and|strong="H1121"\w* herd.” +\v 17 \w He|strong="H5414"\w* commanded \w the|strong="H6440"\w* foremost, saying, “\w When|strong="H5674"\w* Esau, \w my|strong="H5414"\w* brother, meets \w you|strong="H5414"\w*, \w and|strong="H3027"\w* asks \w you|strong="H5414"\w*, saying, ‘\w Whose|strong="H5650"\w* \w are|strong="H3027"\w* \w you|strong="H5414"\w*? \w Where|strong="H3027"\w* \w are|strong="H3027"\w* \w you|strong="H5414"\w* \w going|strong="H5674"\w*? \w Whose|strong="H5650"\w* \w are|strong="H3027"\w* \w these|strong="H7760"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w*?’ +\v 18 \w Then|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H4310"\w* say, ‘\w They|strong="H3588"\w* \w are|strong="H4310"\w* \w your|strong="H6440"\w* servant, Jacob’s. \w It|strong="H3588"\w* \w is|strong="H4310"\w* \w a|strong="H3068"\w* present \w sent|strong="H6680"\w* \w to|strong="H3212"\w* \w my|strong="H3588"\w* lord, \w Esau|strong="H6215"\w*. Behold, \w he|strong="H3588"\w* \w also|strong="H3588"\w* \w is|strong="H4310"\w* behind \w us|strong="H6440"\w*.’” +\v 19 \w He|strong="H1931"\w* \w commanded|strong="H1571"\w* \w also|strong="H1571"\w* \w the|strong="H7971"\w* second, \w and|strong="H7971"\w* \w the|strong="H7971"\w* third, \w and|strong="H7971"\w* \w all|strong="H7971"\w* \w that|strong="H1931"\w* followed \w the|strong="H7971"\w* herds, saying, “\w This|strong="H1931"\w* \w is|strong="H1931"\w* \w how|strong="H2009"\w* \w you|strong="H7971"\w* \w shall|strong="H5650"\w* speak \w to|strong="H7971"\w* \w Esau|strong="H6215"\w*, \w when|strong="H7971"\w* \w you|strong="H7971"\w* find \w him|strong="H7971"\w*. +\v 20 \w You|strong="H6680"\w* \w shall|strong="H2088"\w* \w say|strong="H1696"\w*, ‘\w Not|strong="H2088"\w* \w only|strong="H3605"\w* \w that|strong="H3605"\w*, \w but|strong="H1696"\w* behold, \w your|strong="H3605"\w* servant, Jacob, \w is|strong="H2088"\w* \w behind|strong="H1980"\w* \w us|strong="H4672"\w*.’” \w For|strong="H3605"\w*, \w he|strong="H3605"\w* \w said|strong="H1696"\w*, “\w I|strong="H1697"\w* \w will|strong="H1571"\w* appease \w him|strong="H4672"\w* \w with|strong="H1980"\w* \w the|strong="H3605"\w* \w present|strong="H4672"\w* \w that|strong="H3605"\w* \w goes|strong="H1980"\w* \w before|strong="H1980"\w* \w me|strong="H1696"\w*, \w and|strong="H1980"\w* afterward \w I|strong="H1697"\w* \w will|strong="H1571"\w* see \w his|strong="H3605"\w* face. Perhaps \w he|strong="H3605"\w* \w will|strong="H1571"\w* accept \w me|strong="H1696"\w*.” +\p +\v 21 \w So|strong="H3651"\w* \w the|strong="H6440"\w* \w present|strong="H4503"\w* \w passed|strong="H5650"\w* \w over|strong="H6440"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, \w and|strong="H1980"\w* \w he|strong="H3588"\w* \w himself|strong="H6440"\w* stayed \w that|strong="H3588"\w* night \w in|strong="H1980"\w* \w the|strong="H6440"\w* camp. +\p +\v 22 \w He|strong="H1931"\w* rose \w up|strong="H5921"\w* \w that|strong="H1931"\w* \w night|strong="H3915"\w*, \w and|strong="H6440"\w* \w took|strong="H5674"\w* \w his|strong="H6440"\w* two wives, \w and|strong="H6440"\w* \w his|strong="H6440"\w* two \w servants|strong="H6440"\w*, \w and|strong="H6440"\w* \w his|strong="H6440"\w* eleven sons, \w and|strong="H6440"\w* \w crossed|strong="H5674"\w* \w over|strong="H5921"\w* \w the|strong="H6440"\w* \w ford|strong="H5674"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* Jabbok. +\v 23 \w He|strong="H1931"\w* \w took|strong="H3947"\w* \w them|strong="H3947"\w*, \w and|strong="H6965"\w* \w sent|strong="H5674"\w* \w them|strong="H3947"\w* \w over|strong="H5674"\w* \w the|strong="H3947"\w* stream, \w and|strong="H6965"\w* \w sent|strong="H5674"\w* \w over|strong="H5674"\w* \w that|strong="H1931"\w* \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w had|strong="H8198"\w*. +\v 24 Jacob was \w left|strong="H5674"\w* alone, \w and|strong="H3947"\w* wrestled \w with|strong="H3947"\w* \w a|strong="H3068"\w* \w man|strong="H5674"\w* \w there|strong="H5158"\w* until \w the|strong="H3947"\w* breaking \w of|strong="H5158"\w* \w the|strong="H3947"\w* day. +\v 25 \w When|strong="H5704"\w* \w he|strong="H5704"\w* \w saw|strong="H3290"\w* \w that|strong="H5704"\w* \w he|strong="H5704"\w* didn’t prevail \w against|strong="H5973"\w* \w him|strong="H5973"\w*, \w the|strong="H5704"\w* man touched \w the|strong="H5704"\w* hollow \w of|strong="H3498"\w* \w his|strong="H3290"\w* thigh, \w and|strong="H5927"\w* \w the|strong="H5704"\w* hollow \w of|strong="H3498"\w* \w Jacob|strong="H3290"\w*’s thigh \w was|strong="H3290"\w* strained \w as|strong="H5704"\w* \w he|strong="H5704"\w* wrestled. +\v 26 \w The|strong="H7200"\w* \w man|strong="H7200"\w* said, “\w Let|strong="H3808"\w* \w me|strong="H7200"\w* \w go|strong="H3201"\w*, \w for|strong="H3588"\w* \w the|strong="H7200"\w* day breaks.” +\p \w Jacob|strong="H3290"\w* said, “\w I|strong="H3588"\w* won’t \w let|strong="H3808"\w* \w you|strong="H3588"\w* \w go|strong="H3201"\w* \w unless|strong="H3588"\w* \w you|strong="H3588"\w* bless \w me|strong="H7200"\w*.” +\p +\v 27 \w He|strong="H3588"\w* said \w to|strong="H7971"\w* \w him|strong="H7971"\w*, “\w What|strong="H5927"\w* \w is|strong="H1288"\w* \w your|strong="H3588"\w* name?” +\p \w He|strong="H3588"\w* said, “\w Jacob|strong="H7971"\w*”. +\p +\v 28 \w He|strong="H3290"\w* said, “\w Your|strong="H4100"\w* \w name|strong="H8034"\w* \w will|strong="H3290"\w* no longer \w be|strong="H8034"\w* \w called|strong="H8034"\w* \w Jacob|strong="H3290"\w*, \w but|strong="H4100"\w* Israel; \w for|strong="H8034"\w* \w you|strong="H4100"\w* \w have|strong="H8034"\w* fought \w with|strong="H8034"\w* God \w and|strong="H3290"\w* \w with|strong="H8034"\w* \w men|strong="H8034"\w*, \w and|strong="H3290"\w* \w have|strong="H8034"\w* prevailed.” +\p +\v 29 \w Jacob|strong="H3290"\w* asked \w him|strong="H5973"\w*, “Please tell \w me|strong="H5973"\w* \w your|strong="H3588"\w* \w name|strong="H8034"\w*.” +\p \w He|strong="H3588"\w* said, “\w Why|strong="H3588"\w* \w is|strong="H8034"\w* \w it|strong="H3588"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* ask \w what|strong="H3588"\w* \w my|strong="H3290"\w* \w name|strong="H8034"\w* \w is|strong="H8034"\w*?” \w So|strong="H3808"\w* \w he|strong="H3588"\w* blessed \w him|strong="H5973"\w* \w there|strong="H8034"\w*. +\p +\v 30 \w Jacob|strong="H3290"\w* \w called|strong="H8034"\w* \w the|strong="H1288"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w the|strong="H1288"\w* \w place|strong="H8033"\w* Peniel;\f + \fr 32:30 \ft Peniel means “face of God”.\f* \w for|strong="H8034"\w* \w he|strong="H8033"\w* said, “\w I|strong="H2088"\w* \w have|strong="H8034"\w* seen God face \w to|strong="H8033"\w* face, \w and|strong="H8033"\w* \w my|strong="H5046"\w* life \w is|strong="H2088"\w* preserved.” +\v 31 \w The|strong="H6440"\w* sun \w rose|strong="H3290"\w* \w on|strong="H7200"\w* \w him|strong="H6440"\w* \w as|strong="H5315"\w* \w he|strong="H3588"\w* passed \w over|strong="H6440"\w* \w Peniel|strong="H6439"\w*, \w and|strong="H6440"\w* \w he|strong="H3588"\w* limped \w because|strong="H3588"\w* \w of|strong="H6440"\w* \w his|strong="H7121"\w* thigh. +\v 32 \w Therefore|strong="H5921"\w* \w the|strong="H5921"\w* children \w of|strong="H5921"\w* Israel don’t eat \w the|strong="H5921"\w* sinew \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w hip|strong="H3409"\w*, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* hollow \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w thigh|strong="H3409"\w*, \w to|strong="H5921"\w* \w this|strong="H1931"\w* day, \w because|strong="H5921"\w* \w he|strong="H1931"\w* touched \w the|strong="H5921"\w* hollow \w of|strong="H5921"\w* Jacob’s \w thigh|strong="H3409"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* sinew \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w hip|strong="H3409"\w*. +\c 33 +\p +\v 1 \w Jacob|strong="H3290"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w eyes|strong="H5869"\w*, \w and|strong="H3967"\w* \w looked|strong="H7200"\w*, \w and|strong="H3967"\w*, \w behold|strong="H2009"\w*, \w Esau|strong="H6215"\w* \w was|strong="H3206"\w* \w coming|strong="H2009"\w*, \w and|strong="H3967"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w* four \w hundred|strong="H3967"\w* \w men|strong="H3206"\w*. \w He|strong="H8147"\w* \w divided|strong="H2673"\w* \w the|strong="H5921"\w* \w children|strong="H3206"\w* \w between|strong="H5973"\w* \w Leah|strong="H3812"\w*, \w Rachel|strong="H7354"\w*, \w and|strong="H3967"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w servants|strong="H8198"\w*. +\v 2 \w He|strong="H7760"\w* \w put|strong="H7760"\w* \w the|strong="H7760"\w* \w servants|strong="H8198"\w* \w and|strong="H7223"\w* \w their|strong="H7760"\w* \w children|strong="H3206"\w* \w in|strong="H7760"\w* \w front|strong="H7223"\w*, \w Leah|strong="H3812"\w* \w and|strong="H7223"\w* \w her|strong="H7760"\w* \w children|strong="H3206"\w* after, \w and|strong="H7223"\w* \w Rachel|strong="H7354"\w* \w and|strong="H7223"\w* \w Joseph|strong="H3130"\w* at \w the|strong="H7760"\w* rear. +\v 3 \w He|strong="H1931"\w* \w himself|strong="H1931"\w* \w passed|strong="H5674"\w* \w over|strong="H5674"\w* \w in|strong="H6440"\w* \w front|strong="H6440"\w* \w of|strong="H6440"\w* \w them|strong="H6440"\w*, \w and|strong="H6440"\w* \w bowed|strong="H7812"\w* \w himself|strong="H1931"\w* \w to|strong="H5704"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w* \w seven|strong="H7651"\w* \w times|strong="H6471"\w*, \w until|strong="H5704"\w* \w he|strong="H1931"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H5704"\w* \w his|strong="H6440"\w* brother. +\p +\v 4 \w Esau|strong="H6215"\w* \w ran|strong="H7323"\w* \w to|strong="H5921"\w* \w meet|strong="H7125"\w* \w him|strong="H5921"\w*, \w embraced|strong="H2263"\w* \w him|strong="H5921"\w*, \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w neck|strong="H6677"\w*, \w kissed|strong="H5401"\w* \w him|strong="H5921"\w*, \w and|strong="H7323"\w* \w they|strong="H5921"\w* \w wept|strong="H1058"\w*. +\v 5 \w He|strong="H4310"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w eyes|strong="H5869"\w*, \w and|strong="H5869"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* women \w and|strong="H5869"\w* \w the|strong="H7200"\w* \w children|strong="H3206"\w*; \w and|strong="H5869"\w* said, “\w Who|strong="H4310"\w* \w are|strong="H5869"\w* these \w with|strong="H5869"\w* \w you|strong="H7200"\w*?” +\p \w He|strong="H4310"\w* said, “\w The|strong="H7200"\w* \w children|strong="H3206"\w* \w whom|strong="H4310"\w* \w God|strong="H4310"\w* \w has|strong="H4310"\w* \w graciously|strong="H2603"\w* \w given|strong="H5650"\w* \w your|strong="H5375"\w* \w servant|strong="H5650"\w*.” +\v 6 \w Then|strong="H5066"\w* \w the|strong="H7812"\w* \w servants|strong="H8198"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w with|strong="H5066"\w* \w their|strong="H7812"\w* \w children|strong="H3206"\w*, \w and|strong="H5066"\w* \w they|strong="H2007"\w* \w bowed|strong="H7812"\w* \w themselves|strong="H7812"\w*. +\v 7 \w Leah|strong="H3812"\w* \w also|strong="H1571"\w* \w and|strong="H5066"\w* \w her|strong="H1571"\w* \w children|strong="H3206"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w*, \w and|strong="H5066"\w* \w bowed|strong="H7812"\w* \w themselves|strong="H7812"\w*. After \w them|strong="H5066"\w*, \w Joseph|strong="H3130"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w with|strong="H1571"\w* \w Rachel|strong="H7354"\w*, \w and|strong="H5066"\w* \w they|strong="H1571"\w* \w bowed|strong="H7812"\w* \w themselves|strong="H7812"\w*. +\p +\v 8 \w Esau|strong="H4310"\w* said, “\w What|strong="H4310"\w* \w do|strong="H5869"\w* \w you|strong="H3605"\w* mean \w by|strong="H3605"\w* \w all|strong="H3605"\w* \w this|strong="H2088"\w* \w company|strong="H4264"\w* \w which|strong="H4310"\w* \w I|strong="H2088"\w* \w met|strong="H6298"\w*?” +\p Jacob said, “\w To|strong="H5869"\w* \w find|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H4672"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H5869"\w* \w my|strong="H3605"\w* lord.” +\p +\v 9 \w Esau|strong="H6215"\w* said, “\w I|strong="H6215"\w* \w have|strong="H1961"\w* \w enough|strong="H7227"\w*, \w my|strong="H1961"\w* brother; \w let|strong="H1961"\w* \w that|strong="H3426"\w* \w which|strong="H3426"\w* \w you|strong="H1961"\w* \w have|strong="H1961"\w* \w be|strong="H1961"\w* yours.” +\p +\v 10 \w Jacob|strong="H3290"\w* \w said|strong="H3651"\w*, “\w Please|strong="H4994"\w*, \w no|strong="H4672"\w*, \w if|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H5869"\w* \w now|strong="H4994"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H5921"\w* \w your|strong="H3947"\w* \w sight|strong="H5869"\w*, \w then|strong="H3947"\w* \w receive|strong="H3947"\w* \w my|strong="H7200"\w* \w present|strong="H4503"\w* \w at|strong="H5921"\w* \w my|strong="H7200"\w* \w hand|strong="H3027"\w*, \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H5869"\w* \w seen|strong="H7200"\w* \w your|strong="H3947"\w* \w face|strong="H6440"\w*, \w as|strong="H3651"\w* \w one|strong="H3588"\w* \w sees|strong="H7200"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H3027"\w* \w God|strong="H3027"\w*, \w and|strong="H3027"\w* \w you|strong="H3588"\w* \w were|strong="H5869"\w* \w pleased|strong="H7521"\w* \w with|strong="H5921"\w* \w me|strong="H6440"\w*. +\v 11 \w Please|strong="H4994"\w* \w take|strong="H3947"\w* \w the|strong="H3605"\w* \w gift|strong="H1293"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w brought|strong="H3947"\w* \w to|strong="H3947"\w* \w you|strong="H3588"\w*, \w because|strong="H3588"\w* God \w has|strong="H3588"\w* \w dealt|strong="H2603"\w* \w graciously|strong="H2603"\w* \w with|strong="H3605"\w* \w me|strong="H4994"\w*, \w and|strong="H3947"\w* \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3426"\w* \w enough|strong="H3605"\w*.” \w He|strong="H3588"\w* \w urged|strong="H6484"\w* \w him|strong="H3947"\w*, \w and|strong="H3947"\w* \w he|strong="H3588"\w* \w took|strong="H3947"\w* \w it|strong="H3588"\w*. +\p +\v 12 Esau said, “\w Let|strong="H3212"\w*’s \w take|strong="H3212"\w* \w our|strong="H5048"\w* \w journey|strong="H5265"\w*, \w and|strong="H3212"\w* \w let|strong="H3212"\w*’s \w go|strong="H3212"\w*, \w and|strong="H3212"\w* \w I|strong="H3212"\w* will \w go|strong="H3212"\w* \w before|strong="H5048"\w* \w you|strong="H3212"\w*.” +\p +\v 13 Jacob said \w to|strong="H4191"\w* \w him|strong="H5921"\w*, “\w My|strong="H3605"\w* lord \w knows|strong="H3045"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w children|strong="H3206"\w* \w are|strong="H3117"\w* \w tender|strong="H7390"\w*, \w and|strong="H3117"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w flocks|strong="H6629"\w* \w and|strong="H3117"\w* \w herds|strong="H1241"\w* \w with|strong="H5921"\w* \w me|strong="H5921"\w* \w have|strong="H3045"\w* \w their|strong="H3605"\w* \w young|strong="H1241"\w*, \w and|strong="H3117"\w* \w if|strong="H3588"\w* \w they|strong="H3588"\w* \w overdrive|strong="H1849"\w* \w them|strong="H5921"\w* \w one|strong="H3605"\w* \w day|strong="H3117"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w flocks|strong="H6629"\w* \w will|strong="H3117"\w* \w die|strong="H4191"\w*. +\v 14 \w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w my|strong="H5674"\w* lord \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w before|strong="H6440"\w* \w his|strong="H6440"\w* \w servant|strong="H5650"\w*, \w and|strong="H5650"\w* \w I|strong="H5704"\w* \w will|strong="H5650"\w* \w lead|strong="H5095"\w* \w on|strong="H5674"\w* gently, according \w to|strong="H5704"\w* \w the|strong="H6440"\w* \w pace|strong="H7272"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* livestock \w that|strong="H5650"\w* \w are|strong="H5650"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w and|strong="H5650"\w* according \w to|strong="H5704"\w* \w the|strong="H6440"\w* \w pace|strong="H7272"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w children|strong="H3206"\w*, \w until|strong="H5704"\w* \w I|strong="H5704"\w* \w come|strong="H5674"\w* \w to|strong="H5704"\w* \w my|strong="H5674"\w* lord \w to|strong="H5704"\w* \w Seir|strong="H8165"\w*.” +\p +\v 15 \w Esau|strong="H6215"\w* said, “\w Let|strong="H4994"\w* \w me|strong="H4994"\w* \w now|strong="H4994"\w* \w leave|strong="H4480"\w* \w with|strong="H5973"\w* \w you|strong="H5973"\w* \w some|strong="H4480"\w* \w of|strong="H5869"\w* \w the|strong="H4480"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w are|strong="H5971"\w* \w with|strong="H5973"\w* \w me|strong="H4994"\w*.” +\p \w He|strong="H4480"\w* said, “\w Why|strong="H4100"\w*? \w Let|strong="H4994"\w* \w me|strong="H4994"\w* \w find|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H4672"\w* \w the|strong="H4480"\w* \w sight|strong="H5869"\w* \w of|strong="H5869"\w* \w my|strong="H4480"\w* lord.” +\p +\v 16 \w So|strong="H7725"\w* \w Esau|strong="H6215"\w* \w returned|strong="H7725"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w on|strong="H3117"\w* \w his|strong="H7725"\w* \w way|strong="H1870"\w* \w to|strong="H7725"\w* \w Seir|strong="H8165"\w*. +\v 17 \w Jacob|strong="H3290"\w* \w traveled|strong="H5265"\w* \w to|strong="H5921"\w* \w Succoth|strong="H5523"\w*, \w built|strong="H1129"\w* \w himself|strong="H6213"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w*, \w and|strong="H1004"\w* \w made|strong="H6213"\w* \w shelters|strong="H5521"\w* \w for|strong="H5921"\w* \w his|strong="H7121"\w* \w livestock|strong="H4735"\w*. \w Therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w is|strong="H8034"\w* \w called|strong="H7121"\w* \w Succoth|strong="H5523"\w*.\f + \fr 33:17 \ft succoth means shelters or booths.\f* +\p +\v 18 \w Jacob|strong="H3290"\w* came \w in|strong="H2583"\w* peace \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w* \w of|strong="H5892"\w* \w Shechem|strong="H7927"\w*, \w which|strong="H5892"\w* \w is|strong="H5892"\w* \w in|strong="H2583"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H5892"\w* \w Canaan|strong="H3667"\w*, \w when|strong="H3290"\w* \w he|strong="H6440"\w* came \w from|strong="H6440"\w* \w Paddan|strong="H6307"\w* \w Aram|strong="H6307"\w*; \w and|strong="H5892"\w* \w encamped|strong="H2583"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w*. +\v 19 \w He|strong="H8033"\w* \w bought|strong="H7069"\w* \w the|strong="H3027"\w* \w parcel|strong="H2513"\w* \w of|strong="H1121"\w* \w ground|strong="H7704"\w* \w where|strong="H8033"\w* \w he|strong="H8033"\w* \w had|strong="H3027"\w* \w spread|strong="H5186"\w* \w his|strong="H5186"\w* tent, \w at|strong="H7704"\w* \w the|strong="H3027"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H3027"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hamor|strong="H2544"\w*, \w Shechem|strong="H7927"\w*’s \w father|strong="H1121"\w*, \w for|strong="H3027"\w* \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* \w pieces|strong="H7192"\w* \w of|strong="H1121"\w* \w money|strong="H7192"\w*. +\v 20 \w He|strong="H8033"\w* \w erected|strong="H5324"\w* \w an|strong="H8033"\w* \w altar|strong="H4196"\w* \w there|strong="H8033"\w*, \w and|strong="H3478"\w* \w called|strong="H7121"\w* \w it|strong="H7121"\w* El Elohe \w Israel|strong="H3478"\w*.\f + \fr 33:20 \ft El Elohe Israel means “God, the God of Israel” or “The God of Israel is mighty”.\f* +\c 34 +\p +\v 1 \w Dinah|strong="H1783"\w*, \w the|strong="H7200"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Leah|strong="H3812"\w*, whom she \w bore|strong="H3205"\w* \w to|strong="H3318"\w* \w Jacob|strong="H3290"\w*, \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w the|strong="H7200"\w* land. +\v 2 \w Shechem|strong="H7927"\w* \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hamor|strong="H2544"\w* \w the|strong="H7200"\w* \w Hivite|strong="H2340"\w*, \w the|strong="H7200"\w* \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* land, \w saw|strong="H7200"\w* \w her|strong="H3947"\w*. \w He|strong="H3947"\w* \w took|strong="H3947"\w* \w her|strong="H3947"\w*, \w lay|strong="H7901"\w* \w with|strong="H7901"\w* \w her|strong="H3947"\w*, \w and|strong="H1121"\w* \w humbled|strong="H6031"\w* \w her|strong="H3947"\w*. +\v 3 \w His|strong="H5921"\w* \w soul|strong="H5315"\w* \w joined|strong="H1692"\w* \w to|strong="H1696"\w* \w Dinah|strong="H1783"\w*, \w the|strong="H5921"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Jacob|strong="H3290"\w*, \w and|strong="H3290"\w* \w he|strong="H5921"\w* loved \w the|strong="H5921"\w* \w young|strong="H5291"\w* \w lady|strong="H5291"\w*, \w and|strong="H3290"\w* \w spoke|strong="H1696"\w* \w kindly|strong="H3820"\w* \w to|strong="H1696"\w* \w the|strong="H5921"\w* \w young|strong="H5291"\w* \w lady|strong="H5291"\w*. +\v 4 \w Shechem|strong="H7927"\w* spoke \w to|strong="H3947"\w* \w his|strong="H3947"\w* father, \w Hamor|strong="H2544"\w*, saying, “\w Get|strong="H3947"\w* \w me|strong="H3947"\w* \w this|strong="H2063"\w* \w young|strong="H3207"\w* lady \w as|strong="H3947"\w* \w a|strong="H3068"\w* wife.” +\p +\v 5 \w Now|strong="H1961"\w* \w Jacob|strong="H3290"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H1961"\w* \w defiled|strong="H2930"\w* \w Dinah|strong="H1783"\w*, \w his|strong="H8085"\w* \w daughter|strong="H1323"\w*; \w and|strong="H1121"\w* \w his|strong="H8085"\w* \w sons|strong="H1121"\w* \w were|strong="H1961"\w* \w with|strong="H8085"\w* \w his|strong="H8085"\w* \w livestock|strong="H4735"\w* \w in|strong="H8085"\w* \w the|strong="H8085"\w* \w field|strong="H7704"\w*. \w Jacob|strong="H3290"\w* \w held|strong="H1961"\w* \w his|strong="H8085"\w* \w peace|strong="H2790"\w* \w until|strong="H5704"\w* \w they|strong="H3588"\w* \w came|strong="H1961"\w*. +\v 6 \w Hamor|strong="H2544"\w* \w the|strong="H3318"\w* father \w of|strong="H3318"\w* \w Shechem|strong="H7927"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H1696"\w* \w Jacob|strong="H3290"\w* \w to|strong="H1696"\w* \w talk|strong="H1696"\w* \w with|strong="H1696"\w* \w him|strong="H3318"\w*. +\v 7 \w The|strong="H8085"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jacob|strong="H3290"\w* \w came|strong="H3478"\w* \w in|strong="H3478"\w* \w from|strong="H4480"\w* \w the|strong="H8085"\w* \w field|strong="H7704"\w* \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w heard|strong="H8085"\w* \w it|strong="H3588"\w*. \w The|strong="H8085"\w* \w men|strong="H1121"\w* \w were|strong="H3478"\w* \w grieved|strong="H6087"\w*, \w and|strong="H1121"\w* \w they|strong="H3588"\w* \w were|strong="H3478"\w* \w very|strong="H3966"\w* \w angry|strong="H2734"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H3478"\w* \w done|strong="H6213"\w* \w folly|strong="H5039"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w* \w in|strong="H3478"\w* \w lying|strong="H7901"\w* \w with|strong="H6213"\w* \w Jacob|strong="H3290"\w*’s \w daughter|strong="H1323"\w*, \w a|strong="H3068"\w* \w thing|strong="H5039"\w* \w that|strong="H3588"\w* \w ought|strong="H3651"\w* \w not|strong="H3808"\w* \w to|strong="H3478"\w* \w be|strong="H3808"\w* \w done|strong="H6213"\w*. +\v 8 \w Hamor|strong="H2544"\w* \w talked|strong="H1696"\w* \w with|strong="H1696"\w* \w them|strong="H5414"\w*, \w saying|strong="H1696"\w*, “\w The|strong="H5414"\w* \w soul|strong="H5315"\w* \w of|strong="H1121"\w* \w my|strong="H5414"\w* \w son|strong="H1121"\w*, \w Shechem|strong="H7927"\w*, \w longs|strong="H2836"\w* \w for|strong="H1121"\w* \w your|strong="H5414"\w* \w daughter|strong="H1323"\w*. \w Please|strong="H4994"\w* \w give|strong="H5414"\w* \w her|strong="H5414"\w* \w to|strong="H1696"\w* \w him|strong="H5414"\w* \w as|strong="H5315"\w* \w a|strong="H3068"\w* \w wife|strong="H1696"\w*. +\v 9 \w Make|strong="H5414"\w* \w marriages|strong="H2859"\w* \w with|strong="H2859"\w* \w us|strong="H5414"\w*. \w Give|strong="H5414"\w* \w your|strong="H5414"\w* \w daughters|strong="H1323"\w* \w to|strong="H5414"\w* \w us|strong="H5414"\w*, \w and|strong="H1323"\w* \w take|strong="H3947"\w* \w our|strong="H5414"\w* \w daughters|strong="H1323"\w* \w for|strong="H5414"\w* yourselves. +\v 10 \w You|strong="H6440"\w* \w shall|strong="H6440"\w* \w dwell|strong="H3427"\w* \w with|strong="H3427"\w* \w us|strong="H6440"\w*, \w and|strong="H6440"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*. \w Live|strong="H3427"\w* \w and|strong="H6440"\w* \w trade|strong="H5503"\w* \w in|strong="H3427"\w* \w it|strong="H6440"\w*, \w and|strong="H6440"\w* get possessions \w in|strong="H3427"\w* \w it|strong="H6440"\w*.” +\p +\v 11 \w Shechem|strong="H7927"\w* said \w to|strong="H5414"\w* \w her|strong="H5414"\w* father \w and|strong="H5869"\w* \w to|strong="H5414"\w* \w her|strong="H5414"\w* brothers, “\w Let|strong="H5414"\w* \w me|strong="H5414"\w* \w find|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H4672"\w* \w your|strong="H5414"\w* \w eyes|strong="H5869"\w*, \w and|strong="H5869"\w* whatever \w you|strong="H5414"\w* \w will|strong="H5869"\w* tell \w me|strong="H5414"\w* \w I|strong="H5414"\w* \w will|strong="H5869"\w* \w give|strong="H5414"\w*. +\v 12 \w Ask|strong="H7235"\w* \w me|strong="H5414"\w* \w a|strong="H3068"\w* \w great|strong="H3966"\w* \w amount|strong="H7235"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w dowry|strong="H4119"\w*, \w and|strong="H3966"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* whatever \w you|strong="H5414"\w* \w ask|strong="H7235"\w* \w of|strong="H5921"\w* \w me|strong="H5414"\w*, \w but|strong="H5921"\w* \w give|strong="H5414"\w* \w me|strong="H5414"\w* \w the|strong="H5921"\w* \w young|strong="H5291"\w* \w lady|strong="H5291"\w* \w as|strong="H5414"\w* \w a|strong="H3068"\w* wife.” +\p +\v 13 \w The|strong="H1696"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jacob|strong="H3290"\w* \w answered|strong="H6030"\w* \w Shechem|strong="H7927"\w* \w and|strong="H1121"\w* \w Hamor|strong="H2544"\w* \w his|strong="H2930"\w* \w father|strong="H1121"\w* \w with|strong="H1696"\w* \w deceit|strong="H4820"\w* \w when|strong="H1696"\w* \w they|strong="H4820"\w* \w spoke|strong="H1696"\w*, because \w he|strong="H1696"\w* \w had|strong="H3290"\w* \w defiled|strong="H2930"\w* \w Dinah|strong="H1783"\w* \w their|strong="H3290"\w* sister, +\v 14 \w and|strong="H6213"\w* \w said|strong="H1697"\w* \w to|strong="H3201"\w* \w them|strong="H5414"\w*, “\w We|strong="H3588"\w* \w can|strong="H3201"\w*’t \w do|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*, \w to|strong="H3201"\w* \w give|strong="H5414"\w* \w our|strong="H5414"\w* sister \w to|strong="H3201"\w* \w one|strong="H2088"\w* \w who|strong="H1931"\w* \w is|strong="H2088"\w* \w uncircumcised|strong="H6190"\w*; \w for|strong="H3588"\w* \w that|strong="H3588"\w* \w is|strong="H2088"\w* \w a|strong="H3068"\w* \w reproach|strong="H2781"\w* \w to|strong="H3201"\w* \w us|strong="H5414"\w*. +\v 15 \w Only|strong="H3605"\w* \w on|strong="H1961"\w* \w this|strong="H2063"\w* condition \w will|strong="H1961"\w* \w we|strong="H3068"\w* consent \w to|strong="H1961"\w* \w you|strong="H3605"\w*. \w If|strong="H1961"\w* \w you|strong="H3605"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w we|strong="H3068"\w* \w are|strong="H1961"\w*, \w that|strong="H3605"\w* \w every|strong="H3605"\w* \w male|strong="H2145"\w* \w of|strong="H3605"\w* \w you|strong="H3605"\w* \w be|strong="H1961"\w* \w circumcised|strong="H4135"\w*, +\v 16 \w then|strong="H1961"\w* \w will|strong="H1961"\w* \w we|strong="H3068"\w* \w give|strong="H5414"\w* \w our|strong="H5414"\w* \w daughters|strong="H1323"\w* \w to|strong="H1961"\w* \w you|strong="H5414"\w*; \w and|strong="H5971"\w* \w we|strong="H3068"\w* \w will|strong="H1961"\w* \w take|strong="H3947"\w* \w your|strong="H5414"\w* \w daughters|strong="H1323"\w* \w to|strong="H1961"\w* \w us|strong="H5414"\w*, \w and|strong="H5971"\w* \w we|strong="H3068"\w* \w will|strong="H1961"\w* \w dwell|strong="H3427"\w* \w with|strong="H3427"\w* \w you|strong="H5414"\w*, \w and|strong="H5971"\w* \w we|strong="H3068"\w* \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w one|strong="H1961"\w* \w people|strong="H5971"\w*. +\v 17 \w But|strong="H3808"\w* if \w you|strong="H3947"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H1980"\w* \w us|strong="H8085"\w* \w and|strong="H1980"\w* \w be|strong="H3808"\w* \w circumcised|strong="H4135"\w*, \w then|strong="H1980"\w* \w we|strong="H3068"\w* \w will|strong="H3808"\w* \w take|strong="H3947"\w* \w our|strong="H3947"\w* sister,\f + \fr 34:17 \ft Hebrew has, literally, “daughter”\f* \w and|strong="H1980"\w* \w we|strong="H3068"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w gone|strong="H1980"\w*.” +\p +\v 18 Their \w words|strong="H1697"\w* \w pleased|strong="H3190"\w* \w Hamor|strong="H2544"\w* \w and|strong="H1121"\w* \w Shechem|strong="H7927"\w*, \w Hamor|strong="H2544"\w*’s \w son|strong="H1121"\w*. +\v 19 \w The|strong="H3605"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* didn’t wait \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w this|strong="H6213"\w* \w thing|strong="H1697"\w*, \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w had|strong="H3588"\w* \w delight|strong="H2654"\w* \w in|strong="H6213"\w* \w Jacob|strong="H3290"\w*’s \w daughter|strong="H1323"\w*, \w and|strong="H1004"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w honored|strong="H3513"\w* above \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w his|strong="H3605"\w* father. +\v 20 \w Hamor|strong="H2544"\w* \w and|strong="H1121"\w* \w Shechem|strong="H7927"\w*, \w his|strong="H7927"\w* \w son|strong="H1121"\w*, came \w to|strong="H1696"\w* \w the|strong="H1696"\w* \w gate|strong="H8179"\w* \w of|strong="H1121"\w* their \w city|strong="H5892"\w*, \w and|strong="H1121"\w* \w talked|strong="H1696"\w* \w with|strong="H1696"\w* \w the|strong="H1696"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* their \w city|strong="H5892"\w*, \w saying|strong="H1696"\w*, +\v 21 “\w These|strong="H1992"\w* \w men|strong="H1992"\w* \w are|strong="H1992"\w* \w peaceful|strong="H3427"\w* \w with|strong="H3427"\w* \w us|strong="H5414"\w*. \w Therefore|strong="H3947"\w* \w let|strong="H5414"\w* \w them|strong="H5414"\w* \w live|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w and|strong="H3027"\w* \w trade|strong="H5503"\w* \w in|strong="H3427"\w* \w it|strong="H5414"\w*. \w For|strong="H6440"\w* \w behold|strong="H2009"\w*, \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w is|strong="H3027"\w* \w large|strong="H7342"\w* \w enough|strong="H3027"\w* \w for|strong="H6440"\w* \w them|strong="H5414"\w*. \w Let|strong="H5414"\w*’s \w take|strong="H3947"\w* \w their|strong="H5414"\w* \w daughters|strong="H1323"\w* \w to|strong="H5414"\w* \w us|strong="H5414"\w* \w for|strong="H6440"\w* wives, \w and|strong="H3027"\w* \w let|strong="H5414"\w*’s \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w our|strong="H5414"\w* \w daughters|strong="H1323"\w*. +\v 22 \w Only|strong="H3605"\w* \w on|strong="H3427"\w* \w this|strong="H2063"\w* condition \w will|strong="H1961"\w* \w the|strong="H3605"\w* \w men|strong="H2145"\w* consent \w to|strong="H1961"\w* \w us|strong="H1961"\w* \w to|strong="H1961"\w* \w live|strong="H3427"\w* \w with|strong="H3427"\w* \w us|strong="H1961"\w*, \w to|strong="H1961"\w* \w become|strong="H1961"\w* \w one|strong="H3605"\w* \w people|strong="H5971"\w*, \w if|strong="H1961"\w* \w every|strong="H3605"\w* \w male|strong="H2145"\w* \w among|strong="H3427"\w* \w us|strong="H1961"\w* \w is|strong="H3605"\w* \w circumcised|strong="H4135"\w*, \w as|strong="H1961"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w circumcised|strong="H4135"\w*. +\v 23 Won’t \w their|strong="H3605"\w* \w livestock|strong="H4735"\w* \w and|strong="H3427"\w* \w their|strong="H3605"\w* \w possessions|strong="H4735"\w* \w and|strong="H3427"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* animals \w be|strong="H3808"\w* ours? \w Only|strong="H3605"\w* \w let|strong="H3808"\w*’s give \w our|strong="H3605"\w* consent \w to|strong="H3427"\w* \w them|strong="H1992"\w*, \w and|strong="H3427"\w* \w they|strong="H1992"\w* \w will|strong="H3808"\w* \w dwell|strong="H3427"\w* \w with|strong="H3427"\w* us.” +\p +\v 24 \w All|strong="H3605"\w* \w who|strong="H3605"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w city|strong="H5892"\w* \w listened|strong="H8085"\w* \w to|strong="H3318"\w* \w Hamor|strong="H2544"\w*, \w and|strong="H1121"\w* \w to|strong="H3318"\w* \w Shechem|strong="H7927"\w* \w his|strong="H3605"\w* \w son|strong="H1121"\w*; \w and|strong="H1121"\w* \w every|strong="H3605"\w* \w male|strong="H2145"\w* \w was|strong="H5892"\w* \w circumcised|strong="H4135"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w city|strong="H5892"\w*. +\v 25 \w On|strong="H5921"\w* \w the|strong="H3605"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*, \w when|strong="H1961"\w* \w they|strong="H3117"\w* \w were|strong="H1961"\w* \w sore|strong="H3510"\w*, \w two|strong="H8147"\w* \w of|strong="H1121"\w* \w Jacob|strong="H3290"\w*’s \w sons|strong="H1121"\w*, \w Simeon|strong="H8095"\w* \w and|strong="H1121"\w* \w Levi|strong="H3878"\w*, \w Dinah|strong="H1783"\w*’s \w brothers|strong="H1121"\w*, \w each|strong="H3605"\w* \w took|strong="H3947"\w* \w his|strong="H3605"\w* \w sword|strong="H2719"\w*, \w came|strong="H1961"\w* \w upon|strong="H5921"\w* \w the|strong="H3605"\w* unsuspecting \w city|strong="H5892"\w*, \w and|strong="H1121"\w* \w killed|strong="H2026"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w males|strong="H2145"\w*. +\v 26 \w They|strong="H6310"\w* \w killed|strong="H2026"\w* \w Hamor|strong="H2544"\w* \w and|strong="H1121"\w* \w Shechem|strong="H7927"\w*, \w his|strong="H3947"\w* \w son|strong="H1121"\w*, \w with|strong="H1004"\w* \w the|strong="H3947"\w* \w edge|strong="H6310"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w sword|strong="H2719"\w*, \w and|strong="H1121"\w* \w took|strong="H3947"\w* \w Dinah|strong="H1783"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w Shechem|strong="H7927"\w*’s \w house|strong="H1004"\w*, \w and|strong="H1121"\w* \w went|strong="H3318"\w* \w away|strong="H3947"\w*. +\v 27 \w Jacob|strong="H3290"\w*’s \w sons|strong="H1121"\w* came \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w dead|strong="H2491"\w*, \w and|strong="H1121"\w* plundered \w the|strong="H5921"\w* \w city|strong="H5892"\w*, \w because|strong="H5921"\w* \w they|strong="H5921"\w* \w had|strong="H3290"\w* \w defiled|strong="H2930"\w* \w their|strong="H5921"\w* sister. +\v 28 \w They|strong="H5892"\w* \w took|strong="H3947"\w* \w their|strong="H3947"\w* \w flocks|strong="H6629"\w*, \w their|strong="H3947"\w* \w herds|strong="H1241"\w*, \w their|strong="H3947"\w* \w donkeys|strong="H2543"\w*, \w that|strong="H5892"\w* \w which|strong="H5892"\w* \w was|strong="H5892"\w* \w in|strong="H5892"\w* \w the|strong="H3947"\w* \w city|strong="H5892"\w*, \w that|strong="H5892"\w* \w which|strong="H5892"\w* \w was|strong="H5892"\w* \w in|strong="H5892"\w* \w the|strong="H3947"\w* \w field|strong="H7704"\w*, +\v 29 \w and|strong="H1004"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w wealth|strong="H2428"\w*. \w They|strong="H3605"\w* \w took|strong="H7617"\w* \w captive|strong="H7617"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w* \w and|strong="H1004"\w* \w their|strong="H3605"\w* wives, \w and|strong="H1004"\w* \w took|strong="H7617"\w* \w as|strong="H1004"\w* plunder \w everything|strong="H3605"\w* \w that|strong="H3605"\w* \w was|strong="H1004"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*. +\v 30 \w Jacob|strong="H3290"\w* said \w to|strong="H5921"\w* \w Simeon|strong="H8095"\w* \w and|strong="H1004"\w* \w Levi|strong="H3878"\w*, “\w You|strong="H5921"\w* \w have|strong="H1004"\w* \w troubled|strong="H5916"\w* \w me|strong="H5921"\w*, \w to|strong="H5921"\w* \w make|strong="H3427"\w* \w me|strong="H5921"\w* odious \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* land, \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w Canaanites|strong="H3669"\w* \w and|strong="H1004"\w* \w the|strong="H5921"\w* \w Perizzites|strong="H6522"\w*. \w I|strong="H5921"\w* am \w few|strong="H4557"\w* \w in|strong="H3427"\w* \w number|strong="H4557"\w*. \w They|strong="H5921"\w* \w will|strong="H1004"\w* gather \w themselves|strong="H5921"\w* \w together|strong="H5921"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w* \w and|strong="H1004"\w* \w strike|strong="H5221"\w* \w me|strong="H5921"\w*, \w and|strong="H1004"\w* \w I|strong="H5921"\w* \w will|strong="H1004"\w* \w be|strong="H1004"\w* \w destroyed|strong="H8045"\w*, \w I|strong="H5921"\w* \w and|strong="H1004"\w* \w my|strong="H5921"\w* \w house|strong="H1004"\w*.” +\p +\v 31 \w They|strong="H6213"\w* said, “\w Should|strong="H6213"\w* \w he|strong="H6213"\w* \w deal|strong="H6213"\w* \w with|strong="H6213"\w* \w our|strong="H6213"\w* sister \w as|strong="H6213"\w* \w with|strong="H6213"\w* \w a|strong="H3068"\w* \w prostitute|strong="H2181"\w*?” +\c 35 +\p +\v 1 \w God|strong="H1008"\w* said \w to|strong="H5927"\w* \w Jacob|strong="H3290"\w*, “\w Arise|strong="H6965"\w*, \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w Bethel|strong="H1008"\w*, \w and|strong="H6965"\w* \w live|strong="H3427"\w* \w there|strong="H8033"\w*. \w Make|strong="H6213"\w* \w there|strong="H8033"\w* \w an|strong="H6213"\w* \w altar|strong="H4196"\w* \w to|strong="H5927"\w* \w God|strong="H1008"\w*, \w who|strong="H3427"\w* \w appeared|strong="H7200"\w* \w to|strong="H5927"\w* \w you|strong="H6440"\w* \w when|strong="H7200"\w* \w you|strong="H6440"\w* \w fled|strong="H1272"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H3427"\w* \w Esau|strong="H6215"\w* \w your|strong="H6440"\w* brother.” +\p +\v 2 \w Then|strong="H3605"\w* \w Jacob|strong="H3290"\w* said \w to|strong="H1004"\w* \w his|strong="H3605"\w* \w household|strong="H1004"\w*, \w and|strong="H1004"\w* \w to|strong="H1004"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H3290"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*, “\w Put|strong="H5493"\w* \w away|strong="H5493"\w* \w the|strong="H3605"\w* \w foreign|strong="H5236"\w* gods \w that|strong="H3605"\w* \w are|strong="H1004"\w* \w among|strong="H8432"\w* \w you|strong="H3605"\w*, \w purify|strong="H2891"\w* \w yourselves|strong="H8432"\w*, \w and|strong="H1004"\w* \w change|strong="H2498"\w* \w your|strong="H3605"\w* \w garments|strong="H8071"\w*. +\v 3 \w Let|strong="H1980"\w*’s \w arise|strong="H6965"\w*, \w and|strong="H1980"\w* \w go|strong="H1980"\w* \w up|strong="H5927"\w* \w to|strong="H1980"\w* \w Bethel|strong="H1008"\w*. \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w make|strong="H6213"\w* \w there|strong="H8033"\w* \w an|strong="H6213"\w* \w altar|strong="H4196"\w* \w to|strong="H1980"\w* \w God|strong="H1008"\w*, \w who|strong="H6213"\w* \w answered|strong="H6030"\w* \w me|strong="H5978"\w* \w in|strong="H1980"\w* \w the|strong="H6213"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w my|strong="H6965"\w* \w distress|strong="H6869"\w*, \w and|strong="H1980"\w* \w was|strong="H1961"\w* \w with|strong="H1980"\w* \w me|strong="H5978"\w* \w on|strong="H3117"\w* \w the|strong="H6213"\w* \w way|strong="H1870"\w* \w which|strong="H8033"\w* \w I|strong="H3117"\w* \w went|strong="H1980"\w*.” +\p +\v 4 \w They|strong="H3605"\w* \w gave|strong="H5414"\w* \w to|strong="H5414"\w* \w Jacob|strong="H3290"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w foreign|strong="H5236"\w* gods \w which|strong="H5141"\w* \w were|strong="H3027"\w* \w in|strong="H3027"\w* \w their|strong="H3605"\w* \w hands|strong="H3027"\w*, \w and|strong="H3027"\w* \w the|strong="H3605"\w* \w rings|strong="H5141"\w* \w which|strong="H5141"\w* \w were|strong="H3027"\w* \w in|strong="H3027"\w* \w their|strong="H3605"\w* ears; \w and|strong="H3027"\w* \w Jacob|strong="H3290"\w* \w hid|strong="H2934"\w* \w them|strong="H5414"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* oak \w which|strong="H5141"\w* \w was|strong="H3290"\w* \w by|strong="H3027"\w* \w Shechem|strong="H7927"\w*. +\v 5 \w They|strong="H3808"\w* \w traveled|strong="H5265"\w*, \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w terror|strong="H2847"\w* \w of|strong="H1121"\w* \w God|strong="H3808"\w* \w was|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w cities|strong="H5892"\w* \w that|strong="H5892"\w* \w were|strong="H1961"\w* \w around|strong="H5439"\w* \w them|strong="H5921"\w*, \w and|strong="H1121"\w* \w they|strong="H3808"\w* didn’t \w pursue|strong="H7291"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jacob|strong="H3290"\w*. +\v 6 \w So|strong="H1931"\w* \w Jacob|strong="H3290"\w* \w came|strong="H5971"\w* \w to|strong="H5971"\w* \w Luz|strong="H3870"\w* (\w that|strong="H5971"\w* \w is|strong="H1931"\w*, \w Bethel|strong="H1008"\w*), \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w in|strong="H5971"\w* \w the|strong="H3605"\w* land \w of|strong="H5971"\w* \w Canaan|strong="H3667"\w*, \w he|strong="H1931"\w* \w and|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*. +\v 7 \w He|strong="H3588"\w* \w built|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w there|strong="H8033"\w*, \w and|strong="H6440"\w* \w called|strong="H7121"\w* \w the|strong="H6440"\w* \w place|strong="H4725"\w* El Beth El; \w because|strong="H3588"\w* \w there|strong="H8033"\w* \w God|strong="H1008"\w* \w was|strong="H4725"\w* \w revealed|strong="H1540"\w* \w to|strong="H6440"\w* \w him|strong="H6440"\w*, \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w fled|strong="H1272"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H6440"\w* \w his|strong="H7121"\w* brother. +\v 8 \w Deborah|strong="H1683"\w*, \w Rebekah|strong="H7259"\w*’s \w nurse|strong="H3243"\w*, \w died|strong="H4191"\w*, \w and|strong="H1008"\w* \w she|strong="H7121"\w* \w was|strong="H8034"\w* \w buried|strong="H6912"\w* \w below|strong="H8478"\w* \w Bethel|strong="H1008"\w* \w under|strong="H8478"\w* \w the|strong="H7121"\w* oak; \w and|strong="H1008"\w* \w its|strong="H8478"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w called|strong="H7121"\w* Allon Bacuth. +\p +\v 9 God \w appeared|strong="H7200"\w* \w to|strong="H7200"\w* \w Jacob|strong="H3290"\w* \w again|strong="H5750"\w*, \w when|strong="H7200"\w* \w he|strong="H3290"\w* came \w from|strong="H7200"\w* \w Paddan|strong="H6307"\w* \w Aram|strong="H6307"\w*, \w and|strong="H7200"\w* \w blessed|strong="H1288"\w* \w him|strong="H7200"\w*. +\v 10 \w God|strong="H3808"\w* \w said|strong="H7121"\w* \w to|strong="H3478"\w* \w him|strong="H7121"\w*, “\w Your|strong="H3588"\w* \w name|strong="H8034"\w* \w is|strong="H8034"\w* \w Jacob|strong="H3290"\w*. \w Your|strong="H3588"\w* \w name|strong="H8034"\w* \w shall|strong="H3478"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w Jacob|strong="H3290"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*, \w but|strong="H3588"\w* \w your|strong="H3588"\w* \w name|strong="H8034"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w Israel|strong="H3478"\w*.” \w He|strong="H3588"\w* \w named|strong="H7121"\w* \w him|strong="H7121"\w* \w Israel|strong="H3478"\w*. +\v 11 God \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H3318"\w*, “\w I|strong="H4480"\w* \w am|strong="H1961"\w* God \w Almighty|strong="H7706"\w*. \w Be|strong="H1961"\w* \w fruitful|strong="H6509"\w* \w and|strong="H4428"\w* \w multiply|strong="H7235"\w*. \w A|strong="H3068"\w* \w nation|strong="H1471"\w* \w and|strong="H4428"\w* \w a|strong="H3068"\w* \w company|strong="H6951"\w* \w of|strong="H4428"\w* \w nations|strong="H1471"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w from|strong="H4480"\w* \w you|strong="H4480"\w*, \w and|strong="H4428"\w* \w kings|strong="H4428"\w* \w will|strong="H1961"\w* \w come|strong="H1961"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w your|strong="H7235"\w* body. +\v 12 \w The|strong="H5414"\w* land which \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w to|strong="H5414"\w* Abraham \w and|strong="H3327"\w* \w Isaac|strong="H3327"\w*, \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H5414"\w* \w you|strong="H5414"\w*, \w and|strong="H3327"\w* \w to|strong="H5414"\w* \w your|strong="H5414"\w* \w offspring|strong="H2233"\w* \w after|strong="H2233"\w* \w you|strong="H5414"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w the|strong="H5414"\w* land.” +\p +\v 13 God \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5921"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w where|strong="H4725"\w* \w he|strong="H5921"\w* \w spoke|strong="H1696"\w* \w with|strong="H1696"\w* \w him|strong="H5921"\w*. +\v 14 \w Jacob|strong="H3290"\w* \w set|strong="H5324"\w* \w up|strong="H5324"\w* \w a|strong="H3068"\w* \w pillar|strong="H4676"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w where|strong="H4725"\w* \w he|strong="H5921"\w* \w spoke|strong="H1696"\w* \w with|strong="H1696"\w* \w him|strong="H5921"\w*, \w a|strong="H3068"\w* \w pillar|strong="H4676"\w* \w of|strong="H5921"\w* stone. \w He|strong="H5921"\w* \w poured|strong="H3332"\w* \w out|strong="H5258"\w* \w a|strong="H3068"\w* \w drink|strong="H5262"\w* \w offering|strong="H5262"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*, \w and|strong="H8081"\w* \w poured|strong="H3332"\w* \w oil|strong="H8081"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 15 \w Jacob|strong="H3290"\w* \w called|strong="H7121"\w* \w the|strong="H7121"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w the|strong="H7121"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w God|strong="H1008"\w* \w spoke|strong="H1696"\w* \w with|strong="H1696"\w* \w him|strong="H7121"\w* “\w Bethel|strong="H1008"\w*”. +\p +\v 16 \w They|strong="H3205"\w* \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Bethel|strong="H1008"\w*. \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w still|strong="H5750"\w* \w some|strong="H3530"\w* \w distance|strong="H3530"\w* \w to|strong="H1961"\w* \w come|strong="H1961"\w* \w to|strong="H1961"\w* Ephrath, \w and|strong="H1008"\w* \w Rachel|strong="H7354"\w* \w travailed|strong="H3205"\w*. She \w had|strong="H1961"\w* \w hard|strong="H7185"\w* \w labor|strong="H3205"\w*. +\v 17 \w When|strong="H3588"\w* \w she|strong="H3588"\w* \w was|strong="H1961"\w* \w in|strong="H1121"\w* \w hard|strong="H7185"\w* \w labor|strong="H3205"\w*, \w the|strong="H3588"\w* \w midwife|strong="H3205"\w* said \w to|strong="H1961"\w* \w her|strong="H3205"\w*, “Don’t \w be|strong="H1961"\w* \w afraid|strong="H3372"\w*, \w for|strong="H3588"\w* \w now|strong="H1961"\w* \w you|strong="H3588"\w* \w will|strong="H1961"\w* \w have|strong="H1961"\w* \w another|strong="H2088"\w* \w son|strong="H1121"\w*.” +\p +\v 18 \w As|strong="H1961"\w* \w her|strong="H7121"\w* \w soul|strong="H5315"\w* \w was|strong="H8034"\w* \w departing|strong="H3318"\w* (\w for|strong="H3588"\w* \w she|strong="H3588"\w* \w died|strong="H4191"\w*), \w she|strong="H3588"\w* \w named|strong="H7121"\w* \w him|strong="H7121"\w* Benoni,\f + \fr 35:18 \ft “Benoni” means “son of my trouble”.\f* \w but|strong="H3588"\w* \w his|strong="H7121"\w* father \w named|strong="H7121"\w* \w him|strong="H7121"\w* \w Benjamin|strong="H1144"\w*.\f + \fr 35:18 \ft “Benjamin” means “son of my right hand”.\f* +\v 19 \w Rachel|strong="H7354"\w* \w died|strong="H4191"\w*, \w and|strong="H1870"\w* \w was|strong="H1931"\w* \w buried|strong="H6912"\w* \w on|strong="H1870"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w to|strong="H4191"\w* Ephrath (\w also|strong="H1931"\w* called \w Bethlehem|strong="H1035"\w*). +\v 20 \w Jacob|strong="H3290"\w* \w set|strong="H5324"\w* \w up|strong="H5324"\w* \w a|strong="H3068"\w* \w pillar|strong="H4676"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w* \w grave|strong="H6900"\w*. \w The|strong="H5921"\w* \w same|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H5921"\w* \w Pillar|strong="H4676"\w* \w of|strong="H3117"\w* \w Rachel|strong="H7354"\w*’s \w grave|strong="H6900"\w* \w to|strong="H5704"\w* \w this|strong="H1931"\w* \w day|strong="H3117"\w*. +\v 21 \w Israel|strong="H3478"\w* \w traveled|strong="H5265"\w*, \w and|strong="H3478"\w* \w spread|strong="H5186"\w* \w his|strong="H5186"\w* tent \w beyond|strong="H1973"\w* \w the|strong="H5186"\w* \w tower|strong="H4029"\w* \w of|strong="H4029"\w* \w Eder|strong="H4029"\w*. +\v 22 \w While|strong="H1961"\w* \w Israel|strong="H3478"\w* \w lived|strong="H7931"\w* \w in|strong="H3478"\w* \w that|strong="H8085"\w* land, \w Reuben|strong="H7205"\w* \w went|strong="H3212"\w* \w and|strong="H1121"\w* \w lay|strong="H7901"\w* \w with|strong="H7901"\w* \w Bilhah|strong="H1090"\w*, \w his|strong="H8085"\w* \w father|strong="H1121"\w*’s \w concubine|strong="H6370"\w*, \w and|strong="H1121"\w* \w Israel|strong="H3478"\w* \w heard|strong="H8085"\w* \w of|strong="H1121"\w* \w it|strong="H1931"\w*. +\p \w Now|strong="H1961"\w* \w the|strong="H8085"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jacob|strong="H3290"\w* \w were|strong="H3478"\w* \w twelve|strong="H8147"\w*. +\v 23 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Leah|strong="H3812"\w*: \w Reuben|strong="H7205"\w* (\w Jacob|strong="H3290"\w*’s \w firstborn|strong="H1060"\w*), \w Simeon|strong="H8095"\w*, \w Levi|strong="H3878"\w*, \w Judah|strong="H3063"\w*, \w Issachar|strong="H3485"\w*, \w and|strong="H1121"\w* \w Zebulun|strong="H2074"\w*. +\v 24 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Rachel|strong="H7354"\w*: \w Joseph|strong="H3130"\w* \w and|strong="H1121"\w* \w Benjamin|strong="H1144"\w*. +\v 25 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Bilhah|strong="H1090"\w* (\w Rachel|strong="H7354"\w*’s \w servant|strong="H8198"\w*): \w Dan|strong="H1835"\w* \w and|strong="H1121"\w* \w Naphtali|strong="H5321"\w*. +\v 26 \w The|strong="H3205"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Zilpah|strong="H2153"\w* (\w Leah|strong="H3812"\w*’s \w servant|strong="H8198"\w*): \w Gad|strong="H1410"\w* \w and|strong="H1121"\w* Asher. These \w are|strong="H1121"\w* \w the|strong="H3205"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jacob|strong="H3290"\w*, \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w born|strong="H3205"\w* \w to|strong="H3205"\w* \w him|strong="H3205"\w* \w in|strong="H1121"\w* \w Paddan|strong="H6307"\w* \w Aram|strong="H6307"\w*. +\v 27 \w Jacob|strong="H3290"\w* came \w to|strong="H8033"\w* \w Isaac|strong="H3327"\w* \w his|strong="H3327"\w* father, \w to|strong="H8033"\w* \w Mamre|strong="H4471"\w*, \w to|strong="H8033"\w* Kiriath Arba (\w which|strong="H1931"\w* \w is|strong="H1931"\w* \w Hebron|strong="H2275"\w*), \w where|strong="H8033"\w* Abraham \w and|strong="H8033"\w* \w Isaac|strong="H3327"\w* \w lived|strong="H1481"\w* \w as|strong="H1481"\w* \w foreigners|strong="H1481"\w*. +\p +\v 28 \w The|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w Isaac|strong="H3327"\w* \w were|strong="H1961"\w* \w one|strong="H1961"\w* \w hundred|strong="H3967"\w* \w eighty|strong="H8084"\w* \w years|strong="H8141"\w*. +\v 29 \w Isaac|strong="H3327"\w* gave \w up|strong="H1121"\w* \w the|strong="H3117"\w* spirit \w and|strong="H1121"\w* \w died|strong="H4191"\w*, \w and|strong="H1121"\w* \w was|strong="H3117"\w* gathered \w to|strong="H4191"\w* \w his|strong="H3327"\w* \w people|strong="H5971"\w*, \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w full|strong="H3117"\w* \w of|strong="H1121"\w* \w days|strong="H3117"\w*. \w Esau|strong="H6215"\w* \w and|strong="H1121"\w* \w Jacob|strong="H3290"\w*, \w his|strong="H3327"\w* \w sons|strong="H1121"\w*, \w buried|strong="H6912"\w* \w him|strong="H4191"\w*. +\c 36 +\p +\v 1 Now \w this|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H1931"\w* \w history|strong="H8435"\w* \w of|strong="H8435"\w* \w the|strong="H1931"\w* \w generations|strong="H8435"\w* \w of|strong="H8435"\w* \w Esau|strong="H6215"\w* (\w that|strong="H1931"\w* \w is|strong="H1931"\w*, Edom). +\v 2 \w Esau|strong="H6215"\w* \w took|strong="H3947"\w* \w his|strong="H3947"\w* wives \w from|strong="H3947"\w* \w the|strong="H3947"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w Canaan|strong="H3667"\w*: \w Adah|strong="H5711"\w* \w the|strong="H3947"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* Elon, \w the|strong="H3947"\w* \w Hittite|strong="H2850"\w*; \w and|strong="H1323"\w* Oholibamah \w the|strong="H3947"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Anah|strong="H6034"\w*, \w the|strong="H3947"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Zibeon|strong="H6649"\w*, \w the|strong="H3947"\w* \w Hivite|strong="H2340"\w*; +\v 3 \w and|strong="H1323"\w* \w Basemath|strong="H1315"\w*, \w Ishmael|strong="H3458"\w*’s \w daughter|strong="H1323"\w*, sister \w of|strong="H1323"\w* \w Nebaioth|strong="H5032"\w*. +\v 4 \w Adah|strong="H5711"\w* \w bore|strong="H3205"\w* \w to|strong="H3205"\w* \w Esau|strong="H6215"\w* Eliphaz. \w Basemath|strong="H1315"\w* \w bore|strong="H3205"\w* \w Reuel|strong="H7467"\w*. +\v 5 Oholibamah \w bore|strong="H3205"\w* \w Jeush|strong="H3274"\w*, \w Jalam|strong="H3281"\w*, \w and|strong="H1121"\w* \w Korah|strong="H7141"\w*. These \w are|strong="H1121"\w* \w the|strong="H3205"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Esau|strong="H6215"\w*, \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w born|strong="H3205"\w* \w to|strong="H3205"\w* \w him|strong="H3205"\w* \w in|strong="H1121"\w* \w the|strong="H3205"\w* land \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*. +\v 6 \w Esau|strong="H6215"\w* \w took|strong="H3947"\w* \w his|strong="H3605"\w* wives, \w his|strong="H3605"\w* \w sons|strong="H1121"\w*, \w his|strong="H3605"\w* \w daughters|strong="H1323"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w members|strong="H1004"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w household|strong="H1004"\w*, \w with|strong="H1004"\w* \w his|strong="H3605"\w* \w livestock|strong="H4735"\w*, \w all|strong="H3605"\w* \w his|strong="H3605"\w* animals, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w possessions|strong="H4735"\w*, \w which|strong="H1004"\w* \w he|strong="H3605"\w* \w had|strong="H3290"\w* \w gathered|strong="H7408"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*, \w and|strong="H1121"\w* \w went|strong="H3212"\w* \w into|strong="H3212"\w* \w a|strong="H3068"\w* \w land|strong="H6440"\w* \w away|strong="H3947"\w* \w from|strong="H6440"\w* \w his|strong="H3605"\w* brother \w Jacob|strong="H3290"\w*. +\v 7 \w For|strong="H3588"\w* \w their|strong="H5375"\w* \w substance|strong="H7399"\w* \w was|strong="H1961"\w* \w too|strong="H3162"\w* \w great|strong="H7227"\w* \w for|strong="H3588"\w* \w them|strong="H6440"\w* \w to|strong="H3201"\w* \w dwell|strong="H3427"\w* \w together|strong="H3162"\w*, \w and|strong="H6440"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H3427"\w* \w their|strong="H5375"\w* travels couldn’t \w bear|strong="H5375"\w* \w them|strong="H6440"\w* \w because|strong="H3588"\w* \w of|strong="H3427"\w* \w their|strong="H5375"\w* \w livestock|strong="H4735"\w*. +\v 8 \w Esau|strong="H6215"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3427"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H3427"\w* \w Seir|strong="H8165"\w*. \w Esau|strong="H6215"\w* \w is|strong="H1931"\w* Edom. +\p +\v 9 This \w is|strong="H6215"\w* \w the|strong="H2022"\w* \w history|strong="H8435"\w* \w of|strong="H2022"\w* \w the|strong="H2022"\w* \w generations|strong="H8435"\w* \w of|strong="H2022"\w* \w Esau|strong="H6215"\w* \w the|strong="H2022"\w* father \w of|strong="H2022"\w* \w the|strong="H2022"\w* \w Edomites|strong="H8165"\w* \w in|strong="H2022"\w* \w the|strong="H2022"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H2022"\w* \w Seir|strong="H8165"\w*: +\v 10 these \w are|strong="H1121"\w* \w the|strong="H8034"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w Esau|strong="H6215"\w*’s \w sons|strong="H1121"\w*: Eliphaz, \w the|strong="H8034"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Adah|strong="H5711"\w*, \w the|strong="H8034"\w* wife \w of|strong="H1121"\w* \w Esau|strong="H6215"\w*; \w and|strong="H1121"\w* \w Reuel|strong="H7467"\w*, \w the|strong="H8034"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Basemath|strong="H1315"\w*, \w the|strong="H8034"\w* wife \w of|strong="H1121"\w* \w Esau|strong="H6215"\w*. +\v 11 \w The|strong="H1961"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Eliphaz \w were|strong="H1961"\w* \w Teman|strong="H8487"\w*, Omar, \w Zepho|strong="H6825"\w*, \w and|strong="H1121"\w* \w Gatam|strong="H1609"\w*, \w and|strong="H1121"\w* \w Kenaz|strong="H7073"\w*. +\v 12 \w Timna|strong="H8555"\w* \w was|strong="H1961"\w* \w concubine|strong="H6370"\w* \w to|strong="H1961"\w* Eliphaz, \w Esau|strong="H6215"\w*’s \w son|strong="H1121"\w*; \w and|strong="H1121"\w* she \w bore|strong="H3205"\w* \w to|strong="H1961"\w* Eliphaz \w Amalek|strong="H6002"\w*. These \w are|strong="H1121"\w* \w the|strong="H3205"\w* \w descendants|strong="H1121"\w* \w of|strong="H1121"\w* \w Adah|strong="H5711"\w*, \w Esau|strong="H6215"\w*’s wife. +\v 13 These \w are|strong="H1121"\w* \w the|strong="H1961"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuel|strong="H7467"\w*: \w Nahath|strong="H5184"\w*, \w Zerah|strong="H2226"\w*, \w Shammah|strong="H8048"\w*, \w and|strong="H1121"\w* \w Mizzah|strong="H4199"\w*. These \w were|strong="H1961"\w* \w the|strong="H1961"\w* \w descendants|strong="H1121"\w* \w of|strong="H1121"\w* \w Basemath|strong="H1315"\w*, \w Esau|strong="H6215"\w*’s wife. +\v 14 These \w were|strong="H1961"\w* \w the|strong="H3205"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Oholibamah, \w the|strong="H3205"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Anah|strong="H6034"\w*, \w the|strong="H3205"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Zibeon|strong="H6649"\w*, \w Esau|strong="H6215"\w*’s wife: she \w bore|strong="H3205"\w* \w to|strong="H1961"\w* \w Esau|strong="H6215"\w* \w Jeush|strong="H3274"\w*, \w Jalam|strong="H3281"\w*, \w and|strong="H1121"\w* \w Korah|strong="H7141"\w*. +\p +\v 15 These \w are|strong="H1121"\w* \w the|strong="H1121"\w* chiefs \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Esau|strong="H6215"\w*: \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Eliphaz \w the|strong="H1121"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1121"\w* \w Esau|strong="H6215"\w*: chief \w Teman|strong="H8487"\w*, chief Omar, chief \w Zepho|strong="H6825"\w*, chief \w Kenaz|strong="H7073"\w*, +\v 16 chief \w Korah|strong="H7141"\w*, chief \w Gatam|strong="H1609"\w*, chief \w Amalek|strong="H6002"\w*. These \w are|strong="H1121"\w* \w the|strong="H1121"\w* chiefs \w who|strong="H1121"\w* came \w of|strong="H1121"\w* Eliphaz \w in|strong="H1121"\w* \w the|strong="H1121"\w* land \w of|strong="H1121"\w* Edom. These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Adah|strong="H5711"\w*. +\v 17 These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuel|strong="H7467"\w*, \w Esau|strong="H6215"\w*’s \w son|strong="H1121"\w*: chief \w Nahath|strong="H5184"\w*, chief \w Zerah|strong="H2226"\w*, chief \w Shammah|strong="H8048"\w*, chief \w Mizzah|strong="H4199"\w*. These \w are|strong="H1121"\w* \w the|strong="H1121"\w* chiefs \w who|strong="H1121"\w* came \w of|strong="H1121"\w* \w Reuel|strong="H7467"\w* \w in|strong="H1121"\w* \w the|strong="H1121"\w* land \w of|strong="H1121"\w* Edom. These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Basemath|strong="H1315"\w*, \w Esau|strong="H6215"\w*’s wife. +\v 18 These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Oholibamah, \w Esau|strong="H6215"\w*’s wife: chief \w Jeush|strong="H3266"\w*, chief \w Jalam|strong="H3281"\w*, chief \w Korah|strong="H7141"\w*. These \w are|strong="H1121"\w* \w the|strong="H1121"\w* chiefs \w who|strong="H1121"\w* \w came|strong="H1323"\w* \w of|strong="H1121"\w* Oholibamah \w the|strong="H1121"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Anah|strong="H6034"\w*, \w Esau|strong="H6215"\w*’s wife. +\v 19 \w These|strong="H1931"\w* \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Esau|strong="H6215"\w* (\w that|strong="H1931"\w* \w is|strong="H1931"\w*, Edom), \w and|strong="H1121"\w* \w these|strong="H1931"\w* \w are|strong="H1121"\w* their chiefs. +\p +\v 20 These \w are|strong="H1121"\w* \w the|strong="H3427"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Seir|strong="H8165"\w* \w the|strong="H3427"\w* \w Horite|strong="H2752"\w*, \w the|strong="H3427"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1121"\w* \w the|strong="H3427"\w* land: \w Lotan|strong="H3877"\w*, \w Shobal|strong="H7732"\w*, \w Zibeon|strong="H6649"\w*, \w Anah|strong="H6034"\w*, +\v 21 \w Dishon|strong="H1787"\w*, Ezer, \w and|strong="H1121"\w* \w Dishan|strong="H1789"\w*. These \w are|strong="H1121"\w* \w the|strong="H1121"\w* chiefs \w who|strong="H1121"\w* came \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Horites|strong="H2752"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Seir|strong="H8165"\w* \w in|strong="H1121"\w* \w the|strong="H1121"\w* land \w of|strong="H1121"\w* Edom. +\v 22 \w The|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Lotan|strong="H3877"\w* \w were|strong="H1961"\w* \w Hori|strong="H2753"\w* \w and|strong="H1121"\w* Heman. \w Lotan|strong="H3877"\w*’s sister \w was|strong="H1961"\w* \w Timna|strong="H8555"\w*. +\v 23 These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Shobal|strong="H7732"\w*: \w Alvan|strong="H5935"\w*, \w Manahath|strong="H4506"\w*, \w Ebal|strong="H5858"\w*, \w Shepho|strong="H8195"\w*, \w and|strong="H1121"\w* Onam. +\v 24 \w These|strong="H1931"\w* \w are|strong="H1121"\w* \w the|strong="H4672"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Zibeon|strong="H6649"\w*: Aiah \w and|strong="H1121"\w* \w Anah|strong="H6034"\w*. \w This|strong="H1931"\w* \w is|strong="H1931"\w* \w Anah|strong="H6034"\w* \w who|strong="H1931"\w* \w found|strong="H4672"\w* \w the|strong="H4672"\w* \w hot|strong="H3222"\w* \w springs|strong="H3222"\w* \w in|strong="H4672"\w* \w the|strong="H4672"\w* \w wilderness|strong="H4057"\w*, \w as|strong="H1121"\w* \w he|strong="H1931"\w* \w fed|strong="H7462"\w* \w the|strong="H4672"\w* \w donkeys|strong="H2543"\w* \w of|strong="H1121"\w* \w Zibeon|strong="H6649"\w* \w his|strong="H4672"\w* \w father|strong="H1121"\w*. +\v 25 These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Anah|strong="H6034"\w*: \w Dishon|strong="H1787"\w* \w and|strong="H1121"\w* Oholibamah, \w the|strong="H1121"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Anah|strong="H6034"\w*. +\v 26 These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Dishon: \w Hemdan|strong="H2533"\w*, Eshban, \w Ithran|strong="H3506"\w*, \w and|strong="H1121"\w* \w Cheran|strong="H3763"\w*. +\v 27 These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Ezer: \w Bilhan|strong="H1092"\w*, \w Zaavan|strong="H2190"\w*, \w and|strong="H1121"\w* \w Akan|strong="H6130"\w*. +\v 28 These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Dishan|strong="H1789"\w*: \w Uz|strong="H5780"\w* \w and|strong="H1121"\w* Aran. +\v 29 These are \w the|strong="H7732"\w* chiefs who came of \w the|strong="H7732"\w* \w Horites|strong="H2752"\w*: chief \w Lotan|strong="H3877"\w*, chief \w Shobal|strong="H7732"\w*, chief \w Zibeon|strong="H6649"\w*, chief \w Anah|strong="H6034"\w*, +\v 30 chief \w Dishon|strong="H1787"\w*, chief Ezer, \w and|strong="H2753"\w* chief \w Dishan|strong="H1789"\w*. These are \w the|strong="H8165"\w* chiefs who came of \w the|strong="H8165"\w* Horites, according \w to|strong="H8165"\w* their chiefs in \w the|strong="H8165"\w* land of \w Seir|strong="H8165"\w*. +\p +\v 31 \w These|strong="H6440"\w* \w are|strong="H1121"\w* \w the|strong="H6440"\w* \w kings|strong="H4428"\w* \w who|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H3478"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H1121"\w* Edom, \w before|strong="H6440"\w* \w any|strong="H6440"\w* \w king|strong="H4428"\w* \w reigned|strong="H4427"\w* \w over|strong="H4427"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 32 \w Bela|strong="H1106"\w*, \w the|strong="H8034"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Beor|strong="H1160"\w*, \w reigned|strong="H4427"\w* \w in|strong="H4427"\w* Edom. \w The|strong="H8034"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w his|strong="H4427"\w* \w city|strong="H5892"\w* \w was|strong="H8034"\w* \w Dinhabah|strong="H1838"\w*. +\v 33 \w Bela|strong="H1106"\w* \w died|strong="H4191"\w*, \w and|strong="H1121"\w* \w Jobab|strong="H3103"\w*, \w the|strong="H8478"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zerah|strong="H2226"\w* \w of|strong="H1121"\w* \w Bozrah|strong="H1224"\w*, \w reigned|strong="H4427"\w* \w in|strong="H4191"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\v 34 \w Jobab|strong="H3103"\w* \w died|strong="H4191"\w*, \w and|strong="H4191"\w* \w Husham|strong="H2367"\w* \w of|strong="H8478"\w* \w the|strong="H8478"\w* land \w of|strong="H8478"\w* \w the|strong="H8478"\w* \w Temanites|strong="H8489"\w* \w reigned|strong="H4427"\w* \w in|strong="H4191"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\v 35 \w Husham|strong="H2367"\w* \w died|strong="H4191"\w*, \w and|strong="H1121"\w* \w Hadad|strong="H1908"\w*, \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Bedad, \w who|strong="H1121"\w* \w struck|strong="H5221"\w* \w Midian|strong="H4080"\w* \w in|strong="H4191"\w* \w the|strong="H5221"\w* \w field|strong="H7704"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w*, \w reigned|strong="H4427"\w* \w in|strong="H4191"\w* \w his|strong="H5221"\w* \w place|strong="H8478"\w*. \w The|strong="H5221"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w his|strong="H5221"\w* \w city|strong="H5892"\w* \w was|strong="H8034"\w* \w Avith|strong="H5762"\w*. +\v 36 \w Hadad|strong="H1908"\w* \w died|strong="H4191"\w*, \w and|strong="H4191"\w* \w Samlah|strong="H8072"\w* \w of|strong="H8478"\w* \w Masrekah|strong="H4957"\w* \w reigned|strong="H4427"\w* \w in|strong="H4191"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\v 37 \w Samlah|strong="H8072"\w* \w died|strong="H4191"\w*, \w and|strong="H7586"\w* \w Shaul|strong="H7586"\w* \w of|strong="H8478"\w* \w Rehoboth|strong="H7344"\w* \w by|strong="H4191"\w* \w the|strong="H8478"\w* \w river|strong="H5104"\w*, \w reigned|strong="H4427"\w* \w in|strong="H4191"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\v 38 \w Shaul|strong="H7586"\w* \w died|strong="H4191"\w*, \w and|strong="H1121"\w* Baal Hanan \w the|strong="H8478"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Achbor|strong="H5907"\w* \w reigned|strong="H4427"\w* \w in|strong="H4191"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\v 39 Baal Hanan \w the|strong="H8478"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Achbor|strong="H5907"\w* \w died|strong="H4191"\w*, \w and|strong="H1121"\w* \w Hadar|strong="H1924"\w* \w reigned|strong="H4427"\w* \w in|strong="H4191"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. \w The|strong="H8478"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w his|strong="H8478"\w* \w city|strong="H5892"\w* \w was|strong="H8034"\w* \w Pau|strong="H6464"\w*. \w His|strong="H8478"\w* wife’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Mehetabel|strong="H4105"\w*, \w the|strong="H8478"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Matred|strong="H4308"\w*, \w the|strong="H8478"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Mezahab|strong="H4314"\w*. +\p +\v 40 These \w are|strong="H8034"\w* \w the|strong="H8034"\w* \w names|strong="H8034"\w* \w of|strong="H8034"\w* \w the|strong="H8034"\w* chiefs \w who|strong="H6215"\w* came \w from|strong="H8034"\w* \w Esau|strong="H6215"\w*, according \w to|strong="H4725"\w* their \w families|strong="H4940"\w*, \w after|strong="H8034"\w* their \w places|strong="H4725"\w*, \w and|strong="H4725"\w* \w by|strong="H8034"\w* their \w names|strong="H8034"\w*: chief \w Timna|strong="H8555"\w*, chief \w Alvah|strong="H5933"\w*, chief \w Jetheth|strong="H3509"\w*, +\v 41 chief Oholibamah, chief Elah, chief \w Pinon|strong="H6373"\w*, +\v 42 chief \w Kenaz|strong="H7073"\w*, chief \w Teman|strong="H8487"\w*, chief \w Mibzar|strong="H4014"\w*, +\v 43 chief \w Magdiel|strong="H4025"\w*, \w and|strong="H6215"\w* chief \w Iram|strong="H5902"\w*. \w These|strong="H1931"\w* are \w the|strong="H1931"\w* chiefs \w of|strong="H4186"\w* Edom, according to their \w habitations|strong="H4186"\w* \w in|strong="H4186"\w* \w the|strong="H1931"\w* land \w of|strong="H4186"\w* their possession. \w This|strong="H1931"\w* \w is|strong="H1931"\w* \w Esau|strong="H6215"\w*, \w the|strong="H1931"\w* father \w of|strong="H4186"\w* \w the|strong="H1931"\w* Edomites. +\c 37 +\p +\v 1 \w Jacob|strong="H3290"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3427"\w* land \w of|strong="H3427"\w* \w his|strong="H3290"\w* father’s travels, \w in|strong="H3427"\w* \w the|strong="H3427"\w* land \w of|strong="H3427"\w* \w Canaan|strong="H3667"\w*. +\v 2 \w This|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H1961"\w* \w history|strong="H8435"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w generations|strong="H8435"\w* \w of|strong="H1121"\w* \w Jacob|strong="H3290"\w*. \w Joseph|strong="H3130"\w*, \w being|strong="H1961"\w* \w seventeen|strong="H7651"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*, \w was|strong="H1961"\w* \w feeding|strong="H7462"\w* \w the|strong="H1961"\w* \w flock|strong="H6629"\w* \w with|strong="H1961"\w* \w his|strong="H1961"\w* \w brothers|strong="H1121"\w*. \w He|strong="H1931"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w boy|strong="H5288"\w* \w with|strong="H1961"\w* \w the|strong="H1961"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Bilhah|strong="H1090"\w* \w and|strong="H1121"\w* \w Zilpah|strong="H2153"\w*, \w his|strong="H1961"\w* \w father|strong="H1121"\w*’s wives. \w Joseph|strong="H3130"\w* \w brought|strong="H1961"\w* \w an|strong="H1961"\w* \w evil|strong="H7451"\w* \w report|strong="H1681"\w* \w of|strong="H1121"\w* \w them|strong="H1961"\w* \w to|strong="H1961"\w* \w their|strong="H1961"\w* \w father|strong="H1121"\w*. +\v 3 \w Now|strong="H3588"\w* \w Israel|strong="H3478"\w* loved \w Joseph|strong="H3130"\w* \w more|strong="H3588"\w* \w than|strong="H3588"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w children|strong="H1121"\w*, \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H3478"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w old|strong="H1121"\w* \w age|strong="H1121"\w*, \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w made|strong="H6213"\w* \w him|strong="H6213"\w* \w a|strong="H3068"\w* \w tunic|strong="H3801"\w* \w of|strong="H1121"\w* many colors. +\v 4 \w His|strong="H3605"\w* brothers \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w their|strong="H3605"\w* father loved \w him|strong="H7200"\w* \w more|strong="H3808"\w* \w than|strong="H3808"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* brothers, \w and|strong="H7200"\w* \w they|strong="H3588"\w* \w hated|strong="H8130"\w* \w him|strong="H7200"\w*, \w and|strong="H7200"\w* couldn’t \w speak|strong="H1696"\w* \w peaceably|strong="H7965"\w* \w to|strong="H1696"\w* \w him|strong="H7200"\w*. +\p +\v 5 \w Joseph|strong="H3130"\w* \w dreamed|strong="H2492"\w* \w a|strong="H3068"\w* \w dream|strong="H2472"\w*, \w and|strong="H3254"\w* \w he|strong="H3130"\w* \w told|strong="H5046"\w* \w it|strong="H3254"\w* \w to|strong="H5046"\w* \w his|strong="H5046"\w* brothers, \w and|strong="H3254"\w* they \w hated|strong="H8130"\w* \w him|strong="H5046"\w* \w all|strong="H8130"\w* \w the|strong="H5046"\w* \w more|strong="H3254"\w*. +\v 6 \w He|strong="H2088"\w* \w said|strong="H8085"\w* \w to|strong="H8085"\w* \w them|strong="H8085"\w*, “\w Please|strong="H4994"\w* \w hear|strong="H8085"\w* \w this|strong="H2088"\w* \w dream|strong="H2492"\w* \w which|strong="H2088"\w* \w I|strong="H2088"\w* \w have|strong="H2088"\w* \w dreamed|strong="H2492"\w*: +\v 7 \w for|strong="H7704"\w* \w behold|strong="H2009"\w*, \w we|strong="H3068"\w* \w were|strong="H1571"\w* binding sheaves \w in|strong="H8432"\w* \w the|strong="H8432"\w* \w field|strong="H7704"\w*, \w and|strong="H6965"\w* \w behold|strong="H2009"\w*, \w my|strong="H6965"\w* sheaf \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w also|strong="H1571"\w* \w stood|strong="H5324"\w* \w upright|strong="H5324"\w*; \w and|strong="H6965"\w* \w behold|strong="H2009"\w*, \w your|strong="H6965"\w* sheaves came \w around|strong="H5437"\w*, \w and|strong="H6965"\w* \w bowed|strong="H7812"\w* \w down|strong="H7812"\w* \w to|strong="H6965"\w* \w my|strong="H6965"\w* sheaf.” +\p +\v 8 \w His|strong="H5921"\w* brothers \w asked|strong="H1697"\w* \w him|strong="H5921"\w*, “\w Will|strong="H1697"\w* \w you|strong="H5921"\w* \w indeed|strong="H4910"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w us|strong="H5921"\w*? \w Will|strong="H1697"\w* \w you|strong="H5921"\w* \w indeed|strong="H4910"\w* \w have|strong="H1697"\w* \w dominion|strong="H4910"\w* \w over|strong="H5921"\w* \w us|strong="H5921"\w*?” \w They|strong="H5921"\w* \w hated|strong="H8130"\w* \w him|strong="H5921"\w* \w all|strong="H1697"\w* \w the|strong="H5921"\w* \w more|strong="H3254"\w* \w for|strong="H5921"\w* \w his|strong="H5921"\w* \w dreams|strong="H2472"\w* \w and|strong="H1697"\w* \w for|strong="H5921"\w* \w his|strong="H5921"\w* \w words|strong="H1697"\w*. +\v 9 \w He|strong="H2009"\w* \w dreamed|strong="H2492"\w* \w yet|strong="H5750"\w* \w another|strong="H5750"\w* \w dream|strong="H2472"\w*, \w and|strong="H5750"\w* \w told|strong="H5608"\w* \w it|strong="H7812"\w* \w to|strong="H2472"\w* \w his|strong="H5608"\w* brothers, \w and|strong="H5750"\w* said, “\w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w have|strong="H2009"\w* \w dreamed|strong="H2492"\w* \w yet|strong="H5750"\w* \w another|strong="H5750"\w* \w dream|strong="H2472"\w*: \w and|strong="H5750"\w* \w behold|strong="H2009"\w*, \w the|strong="H7812"\w* \w sun|strong="H8121"\w* \w and|strong="H5750"\w* \w the|strong="H7812"\w* \w moon|strong="H3394"\w* \w and|strong="H5750"\w* \w eleven|strong="H6240"\w* \w stars|strong="H3556"\w* \w bowed|strong="H7812"\w* \w down|strong="H7812"\w* \w to|strong="H2472"\w* \w me|strong="H5608"\w*.” +\v 10 \w He|strong="H2088"\w* \w told|strong="H5608"\w* \w it|strong="H2088"\w* \w to|strong="H2472"\w* \w his|strong="H5608"\w* father \w and|strong="H2088"\w* \w to|strong="H2472"\w* \w his|strong="H5608"\w* brothers. \w His|strong="H5608"\w* father \w rebuked|strong="H1605"\w* \w him|strong="H2088"\w*, \w and|strong="H2088"\w* said \w to|strong="H2472"\w* \w him|strong="H2088"\w*, “\w What|strong="H4100"\w* \w is|strong="H2088"\w* \w this|strong="H2088"\w* \w dream|strong="H2472"\w* \w that|strong="H2088"\w* \w you|strong="H4100"\w* \w have|strong="H2088"\w* \w dreamed|strong="H2492"\w*? \w Will|strong="H4100"\w* \w I|strong="H2088"\w* \w and|strong="H2088"\w* \w your|strong="H2088"\w* mother \w and|strong="H2088"\w* \w your|strong="H2088"\w* brothers indeed come \w to|strong="H2472"\w* \w bow|strong="H7812"\w* \w ourselves|strong="H7812"\w* \w down|strong="H7812"\w* \w to|strong="H2472"\w* \w the|strong="H7812"\w* earth before \w you|strong="H4100"\w*?” +\v 11 \w His|strong="H8104"\w* brothers \w envied|strong="H7065"\w* \w him|strong="H7065"\w*, but \w his|strong="H8104"\w* father \w kept|strong="H8104"\w* \w this|strong="H1697"\w* \w saying|strong="H1697"\w* \w in|strong="H1697"\w* mind. +\p +\v 12 \w His|strong="H7462"\w* brothers \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w feed|strong="H7462"\w* \w their|strong="H7462"\w* father’s \w flock|strong="H6629"\w* \w in|strong="H3212"\w* \w Shechem|strong="H7927"\w*. +\v 13 \w Israel|strong="H3478"\w* said \w to|strong="H3478"\w* \w Joseph|strong="H3130"\w*, “Aren’t \w your|strong="H7971"\w* brothers \w feeding|strong="H7462"\w* \w the|strong="H7971"\w* flock \w in|strong="H3478"\w* \w Shechem|strong="H7927"\w*? \w Come|strong="H3212"\w*, \w and|strong="H3478"\w* \w I|strong="H2009"\w* \w will|strong="H3478"\w* \w send|strong="H7971"\w* \w you|strong="H7971"\w* \w to|strong="H3478"\w* \w them|strong="H7971"\w*.” \w He|strong="H3808"\w* said \w to|strong="H3478"\w* \w him|strong="H7971"\w*, “\w Here|strong="H2009"\w* \w I|strong="H2009"\w* am.” +\p +\v 14 \w He|strong="H7971"\w* \w said|strong="H1697"\w* \w to|strong="H7725"\w* \w him|strong="H7971"\w*, “\w Go|strong="H3212"\w* \w now|strong="H4994"\w*, \w see|strong="H7200"\w* \w whether|strong="H7200"\w* \w it|strong="H7725"\w* \w is|strong="H1697"\w* \w well|strong="H7965"\w* \w with|strong="H1697"\w* \w your|strong="H7200"\w* brothers, \w and|strong="H7971"\w* \w well|strong="H7965"\w* \w with|strong="H1697"\w* \w the|strong="H7200"\w* \w flock|strong="H6629"\w*; \w and|strong="H7971"\w* \w bring|strong="H7725"\w* \w me|strong="H4994"\w* \w word|strong="H1697"\w* \w again|strong="H7725"\w*.” \w So|strong="H7971"\w* \w he|strong="H7971"\w* \w sent|strong="H7971"\w* \w him|strong="H7971"\w* \w out|strong="H7971"\w* \w of|strong="H1697"\w* \w the|strong="H7200"\w* \w valley|strong="H6010"\w* \w of|strong="H1697"\w* \w Hebron|strong="H2275"\w*, \w and|strong="H7971"\w* \w he|strong="H7971"\w* \w came|strong="H3212"\w* \w to|strong="H7725"\w* \w Shechem|strong="H7927"\w*. +\v 15 \w A|strong="H3068"\w* certain man \w found|strong="H4672"\w* \w him|strong="H4672"\w*, \w and|strong="H7704"\w* \w behold|strong="H2009"\w*, \w he|strong="H4100"\w* \w was|strong="H7704"\w* \w wandering|strong="H8582"\w* \w in|strong="H4672"\w* \w the|strong="H1245"\w* \w field|strong="H7704"\w*. \w The|strong="H1245"\w* man \w asked|strong="H7592"\w* \w him|strong="H4672"\w*, “\w What|strong="H4100"\w* \w are|strong="H4100"\w* \w you|strong="H4100"\w* \w looking|strong="H1245"\w* \w for|strong="H7592"\w*?” +\p +\v 16 He said, “\w I|strong="H5046"\w* am \w looking|strong="H1245"\w* \w for|strong="H1245"\w* \w my|strong="H1245"\w* brothers. \w Tell|strong="H5046"\w* \w me|strong="H4994"\w*, \w please|strong="H4994"\w*, \w where|strong="H1992"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w feeding|strong="H7462"\w* \w the|strong="H1245"\w* flock.” +\p +\v 17 \w The|strong="H8085"\w* \w man|strong="H2088"\w* \w said|strong="H8085"\w*, “\w They|strong="H3588"\w* \w have|strong="H4672"\w* \w left|strong="H4672"\w* \w here|strong="H2088"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w heard|strong="H8085"\w* \w them|strong="H4672"\w* say, ‘\w Let|strong="H3212"\w*’s \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w Dothan|strong="H1886"\w*.’” +\p \w Joseph|strong="H3130"\w* \w went|strong="H3212"\w* \w after|strong="H3588"\w* \w his|strong="H8085"\w* brothers, \w and|strong="H3212"\w* \w found|strong="H4672"\w* \w them|strong="H4672"\w* \w in|strong="H8085"\w* \w Dothan|strong="H1886"\w*. +\v 18 \w They|strong="H2962"\w* \w saw|strong="H7200"\w* \w him|strong="H7200"\w* \w afar|strong="H7350"\w* \w off|strong="H7350"\w*, \w and|strong="H7200"\w* \w before|strong="H2962"\w* \w he|strong="H2962"\w* \w came|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H4191"\w* \w them|strong="H7126"\w*, \w they|strong="H2962"\w* \w conspired|strong="H5230"\w* against \w him|strong="H7200"\w* \w to|strong="H4191"\w* \w kill|strong="H4191"\w* \w him|strong="H7200"\w*. +\v 19 \w They|strong="H1167"\w* said \w to|strong="H2472"\w* one another, “\w Behold|strong="H2009"\w*, \w this|strong="H1976"\w* \w dreamer|strong="H1167"\w* comes. +\v 20 \w Come|strong="H1961"\w* \w now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w and|strong="H3212"\w* \w let|strong="H6258"\w*’s \w kill|strong="H2026"\w* \w him|strong="H7200"\w*, \w and|strong="H3212"\w* \w cast|strong="H7993"\w* \w him|strong="H7200"\w* \w into|strong="H3212"\w* \w one|strong="H2416"\w* \w of|strong="H2416"\w* \w the|strong="H7200"\w* pits, \w and|strong="H3212"\w* \w we|strong="H3068"\w* \w will|strong="H1961"\w* say, ‘\w An|strong="H1961"\w* \w evil|strong="H7451"\w* \w animal|strong="H2416"\w* \w has|strong="H1961"\w* devoured \w him|strong="H7200"\w*.’ \w We|strong="H6258"\w* \w will|strong="H1961"\w* \w see|strong="H7200"\w* \w what|strong="H4100"\w* \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w of|strong="H2416"\w* \w his|strong="H7200"\w* \w dreams|strong="H2472"\w*.” +\p +\v 21 \w Reuben|strong="H7205"\w* \w heard|strong="H8085"\w* \w it|strong="H5221"\w*, \w and|strong="H3027"\w* \w delivered|strong="H5337"\w* \w him|strong="H5221"\w* \w out|strong="H5337"\w* \w of|strong="H3027"\w* \w their|strong="H8085"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w said|strong="H8085"\w*, “\w Let|strong="H3808"\w*’s \w not|strong="H3808"\w* \w take|strong="H5221"\w* \w his|strong="H8085"\w* \w life|strong="H5315"\w*.” +\v 22 \w Reuben|strong="H7205"\w* said \w to|strong="H7725"\w* \w them|strong="H7725"\w*, “\w Shed|strong="H8210"\w* \w no|strong="H3808"\w* \w blood|strong="H1818"\w*. \w Throw|strong="H7993"\w* \w him|strong="H7971"\w* \w into|strong="H7725"\w* \w this|strong="H2088"\w* pit \w that|strong="H4616"\w* \w is|strong="H2088"\w* \w in|strong="H7725"\w* \w the|strong="H7725"\w* \w wilderness|strong="H4057"\w*, \w but|strong="H3808"\w* \w lay|strong="H7971"\w* \w no|strong="H3808"\w* \w hand|strong="H3027"\w* \w on|strong="H3027"\w* \w him|strong="H7971"\w*”—\w that|strong="H4616"\w* \w he|strong="H3027"\w* \w might|strong="H4616"\w* \w deliver|strong="H5337"\w* \w him|strong="H7971"\w* \w out|strong="H8210"\w* \w of|strong="H3027"\w* \w their|strong="H7725"\w* \w hand|strong="H3027"\w*, \w to|strong="H7725"\w* \w restore|strong="H7725"\w* \w him|strong="H7971"\w* \w to|strong="H7725"\w* \w his|strong="H7971"\w* father. +\v 23 \w When|strong="H1961"\w* \w Joseph|strong="H3130"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w his|strong="H5921"\w* brothers, \w they|strong="H5921"\w* \w stripped|strong="H6584"\w* \w Joseph|strong="H3130"\w* \w of|strong="H5921"\w* \w his|strong="H5921"\w* \w tunic|strong="H3801"\w*, \w the|strong="H5921"\w* \w tunic|strong="H3801"\w* \w of|strong="H5921"\w* many colors \w that|strong="H1961"\w* \w was|strong="H1961"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*; +\v 24 \w and|strong="H4325"\w* \w they|strong="H3947"\w* \w took|strong="H3947"\w* \w him|strong="H3947"\w*, \w and|strong="H4325"\w* \w threw|strong="H7993"\w* \w him|strong="H3947"\w* \w into|strong="H7993"\w* \w the|strong="H3947"\w* pit. \w The|strong="H3947"\w* pit \w was|strong="H4325"\w* \w empty|strong="H7386"\w*. There \w was|strong="H4325"\w* \w no|strong="H3947"\w* \w water|strong="H4325"\w* \w in|strong="H3947"\w* \w it|strong="H7993"\w*. +\p +\v 25 \w They|strong="H5375"\w* \w sat|strong="H3427"\w* \w down|strong="H3381"\w* \w to|strong="H1980"\w* \w eat|strong="H3899"\w* \w bread|strong="H3899"\w*, \w and|strong="H1980"\w* \w they|strong="H5375"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w their|strong="H5375"\w* \w eyes|strong="H5869"\w* \w and|strong="H1980"\w* \w looked|strong="H7200"\w*, \w and|strong="H1980"\w* \w saw|strong="H7200"\w* \w a|strong="H3068"\w* caravan \w of|strong="H3427"\w* \w Ishmaelites|strong="H3459"\w* \w coming|strong="H3381"\w* \w from|strong="H3381"\w* \w Gilead|strong="H1568"\w*, \w with|strong="H1980"\w* \w their|strong="H5375"\w* \w camels|strong="H1581"\w* \w bearing|strong="H5375"\w* \w spices|strong="H5219"\w* \w and|strong="H1980"\w* \w balm|strong="H6875"\w* \w and|strong="H1980"\w* \w myrrh|strong="H3910"\w*, \w going|strong="H1980"\w* \w to|strong="H1980"\w* \w carry|strong="H5375"\w* \w it|strong="H7200"\w* \w down|strong="H3381"\w* \w to|strong="H1980"\w* \w Egypt|strong="H4714"\w*. +\v 26 \w Judah|strong="H3063"\w* said \w to|strong="H3063"\w* \w his|strong="H3588"\w* brothers, “\w What|strong="H4100"\w* \w profit|strong="H1215"\w* \w is|strong="H4100"\w* \w it|strong="H3588"\w* \w if|strong="H3588"\w* \w we|strong="H3068"\w* \w kill|strong="H2026"\w* \w our|strong="H3588"\w* brother \w and|strong="H3063"\w* \w conceal|strong="H3680"\w* \w his|strong="H3588"\w* \w blood|strong="H1818"\w*? +\v 27 \w Come|strong="H1961"\w*, \w and|strong="H3027"\w* \w let|strong="H3212"\w*’s \w sell|strong="H4376"\w* \w him|strong="H3027"\w* \w to|strong="H3212"\w* \w the|strong="H8085"\w* \w Ishmaelites|strong="H3459"\w*, \w and|strong="H3027"\w* \w not|strong="H1961"\w* \w let|strong="H3212"\w* \w our|strong="H8085"\w* \w hand|strong="H3027"\w* \w be|strong="H1961"\w* \w on|strong="H3027"\w* \w him|strong="H3027"\w*; \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w our|strong="H8085"\w* brother, \w our|strong="H8085"\w* \w flesh|strong="H1320"\w*.” \w His|strong="H8085"\w* brothers \w listened|strong="H8085"\w* \w to|strong="H3212"\w* \w him|strong="H3027"\w*. +\v 28 \w Midianites|strong="H4084"\w* \w who|strong="H4376"\w* \w were|strong="H4714"\w* \w merchants|strong="H5503"\w* \w passed|strong="H5674"\w* \w by|strong="H5674"\w*, \w and|strong="H6242"\w* \w they|strong="H5674"\w* \w drew|strong="H4900"\w* \w and|strong="H6242"\w* \w lifted|strong="H5927"\w* \w up|strong="H5927"\w* \w Joseph|strong="H3130"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* pit, \w and|strong="H6242"\w* \w sold|strong="H4376"\w* \w Joseph|strong="H3130"\w* \w to|strong="H5927"\w* \w the|strong="H4480"\w* \w Ishmaelites|strong="H3459"\w* \w for|strong="H4714"\w* \w twenty|strong="H6242"\w* pieces \w of|strong="H4480"\w* \w silver|strong="H3701"\w*. \w The|strong="H4480"\w* \w merchants|strong="H5503"\w* \w brought|strong="H5927"\w* \w Joseph|strong="H3130"\w* \w into|strong="H5927"\w* \w Egypt|strong="H4714"\w*. +\p +\v 29 \w Reuben|strong="H7205"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H7725"\w* pit, \w and|strong="H7725"\w* \w saw|strong="H2009"\w* \w that|strong="H7725"\w* \w Joseph|strong="H3130"\w* wasn’t \w in|strong="H7725"\w* \w the|strong="H7725"\w* pit; \w and|strong="H7725"\w* \w he|strong="H7725"\w* \w tore|strong="H7167"\w* \w his|strong="H7725"\w* clothes. +\v 30 \w He|strong="H7725"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* brothers, \w and|strong="H7725"\w* said, “\w The|strong="H7725"\w* \w child|strong="H3206"\w* \w is|strong="H3206"\w* no \w more|strong="H7725"\w*; \w and|strong="H7725"\w* I, where \w will|strong="H3206"\w* I \w go|strong="H7725"\w*?” +\v 31 \w They|strong="H3947"\w* \w took|strong="H3947"\w* \w Joseph|strong="H3130"\w*’s \w tunic|strong="H3801"\w*, \w and|strong="H1818"\w* \w killed|strong="H7819"\w* \w a|strong="H3068"\w* \w male|strong="H8163"\w* \w goat|strong="H5795"\w*, \w and|strong="H1818"\w* \w dipped|strong="H2881"\w* \w the|strong="H3947"\w* \w tunic|strong="H3801"\w* \w in|strong="H3947"\w* \w the|strong="H3947"\w* \w blood|strong="H1818"\w*. +\v 32 \w They|strong="H3808"\w* \w took|strong="H5234"\w* \w the|strong="H7971"\w* \w tunic|strong="H3801"\w* \w of|strong="H1121"\w* \w many|strong="H3808"\w* colors, \w and|strong="H1121"\w* \w they|strong="H3808"\w* \w brought|strong="H7971"\w* \w it|strong="H1931"\w* \w to|strong="H7971"\w* \w their|strong="H7971"\w* \w father|strong="H1121"\w*, \w and|strong="H1121"\w* said, “\w We|strong="H4994"\w* \w have|strong="H1121"\w* \w found|strong="H4672"\w* \w this|strong="H2063"\w*. \w Examine|strong="H5234"\w* \w it|strong="H1931"\w*, \w now|strong="H4994"\w*, \w and|strong="H1121"\w* \w see|strong="H5234"\w* \w if|strong="H1931"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w your|strong="H7971"\w* \w son|strong="H1121"\w*’s \w tunic|strong="H3801"\w* \w or|strong="H3808"\w* \w not|strong="H3808"\w*.” +\p +\v 33 \w He|strong="H3130"\w* \w recognized|strong="H5234"\w* \w it|strong="H5234"\w*, \w and|strong="H1121"\w* said, “\w It|strong="H5234"\w* \w is|strong="H7451"\w* \w my|strong="H3130"\w* \w son|strong="H1121"\w*’s \w tunic|strong="H3801"\w*. An \w evil|strong="H7451"\w* \w animal|strong="H2416"\w* \w has|strong="H3130"\w* devoured \w him|strong="H5234"\w*. \w Joseph|strong="H3130"\w* \w is|strong="H7451"\w* without \w doubt|strong="H2963"\w* \w torn|strong="H2963"\w* \w in|strong="H1121"\w* \w pieces|strong="H2963"\w*.” +\v 34 \w Jacob|strong="H3290"\w* \w tore|strong="H7167"\w* \w his|strong="H7760"\w* \w clothes|strong="H8071"\w*, \w and|strong="H1121"\w* \w put|strong="H7760"\w* \w sackcloth|strong="H8242"\w* \w on|strong="H5921"\w* \w his|strong="H7760"\w* \w waist|strong="H4975"\w*, \w and|strong="H1121"\w* mourned \w for|strong="H5921"\w* \w his|strong="H7760"\w* \w son|strong="H1121"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w*. +\v 35 \w All|strong="H3605"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w daughters|strong="H1323"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w to|strong="H3381"\w* \w comfort|strong="H5162"\w* \w him|strong="H3381"\w*, \w but|strong="H3588"\w* \w he|strong="H3588"\w* \w refused|strong="H3985"\w* \w to|strong="H3381"\w* \w be|strong="H1121"\w* \w comforted|strong="H5162"\w*. \w He|strong="H3588"\w* said, “\w For|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H1121"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w Sheol|strong="H7585"\w*\f + \fr 37:35 \ft Sheol is the place of the dead.\f* \w to|strong="H3381"\w* \w my|strong="H3605"\w* \w son|strong="H1121"\w*, \w mourning|strong="H5162"\w*.” \w His|strong="H3605"\w* \w father|strong="H1121"\w* \w wept|strong="H1058"\w* \w for|strong="H3588"\w* \w him|strong="H3381"\w*. +\v 36 \w The|strong="H4376"\w* \w Midianites|strong="H4092"\w* \w sold|strong="H4376"\w* him \w into|strong="H4714"\w* \w Egypt|strong="H4714"\w* \w to|strong="H4714"\w* \w Potiphar|strong="H6318"\w*, \w an|strong="H4714"\w* \w officer|strong="H5631"\w* \w of|strong="H8269"\w* \w Pharaoh|strong="H6547"\w*’s, \w the|strong="H4376"\w* \w captain|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H4376"\w* \w guard|strong="H2876"\w*. +\c 38 +\p +\v 1 \w At|strong="H1961"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w*, \w Judah|strong="H3063"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H3381"\w* \w his|strong="H5186"\w* brothers, \w and|strong="H3063"\w* \w visited|strong="H5186"\w* \w a|strong="H3068"\w* \w certain|strong="H6256"\w* \w Adullamite|strong="H5726"\w*, \w whose|strong="H8034"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Hirah|strong="H2437"\w*. +\v 2 \w There|strong="H8033"\w*, \w Judah|strong="H3063"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w a|strong="H3068"\w* certain \w Canaanite|strong="H3669"\w* \w man|strong="H7200"\w* \w named|strong="H8034"\w* \w Shua|strong="H7770"\w*. \w He|strong="H8033"\w* \w took|strong="H3947"\w* \w her|strong="H3947"\w*, \w and|strong="H3063"\w* \w went|strong="H3063"\w* \w in|strong="H8034"\w* \w to|strong="H3063"\w* \w her|strong="H3947"\w*. +\v 3 \w She|strong="H7121"\w* \w conceived|strong="H2029"\w*, \w and|strong="H1121"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*; \w and|strong="H1121"\w* \w he|strong="H7121"\w* \w named|strong="H7121"\w* \w him|strong="H3205"\w* \w Er|strong="H6147"\w*. +\v 4 \w She|strong="H7121"\w* \w conceived|strong="H2029"\w* \w again|strong="H5750"\w*, \w and|strong="H1121"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*; \w and|strong="H1121"\w* \w she|strong="H7121"\w* \w named|strong="H7121"\w* \w him|strong="H3205"\w* Onan. +\v 5 \w She|strong="H7121"\w* \w yet|strong="H5750"\w* \w again|strong="H5750"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w named|strong="H7121"\w* \w him|strong="H3205"\w* \w Shelah|strong="H7956"\w*. \w He|strong="H7121"\w* \w was|strong="H8034"\w* \w at|strong="H1961"\w* \w Chezib|strong="H3580"\w* \w when|strong="H1961"\w* \w she|strong="H7121"\w* \w bore|strong="H3205"\w* \w him|strong="H3205"\w*. +\v 6 \w Judah|strong="H3063"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* wife \w for|strong="H8034"\w* \w Er|strong="H6147"\w*, \w his|strong="H3947"\w* \w firstborn|strong="H1060"\w*, \w and|strong="H3063"\w* \w her|strong="H3947"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Tamar|strong="H8559"\w*. +\v 7 \w Er|strong="H6147"\w*, \w Judah|strong="H3063"\w*’s \w firstborn|strong="H1060"\w*, \w was|strong="H3068"\w* \w wicked|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*. \w So|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w killed|strong="H4191"\w* \w him|strong="H4191"\w*. +\v 8 \w Judah|strong="H3063"\w* said \w to|strong="H6965"\w* Onan, “\w Go|strong="H6965"\w* \w in|strong="H3063"\w* \w to|strong="H6965"\w* \w your|strong="H6965"\w* \w brother|strong="H2992"\w*’s wife, \w and|strong="H3063"\w* \w perform|strong="H6965"\w* \w the|strong="H6965"\w* \w duty|strong="H2992"\w* \w of|strong="H2233"\w* \w a|strong="H3068"\w* husband’s \w brother|strong="H2992"\w* \w to|strong="H6965"\w* \w her|strong="H6965"\w*, \w and|strong="H3063"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w offspring|strong="H2233"\w* \w for|strong="H6965"\w* \w your|strong="H6965"\w* \w brother|strong="H2992"\w*.” +\v 9 Onan \w knew|strong="H3045"\w* \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w offspring|strong="H2233"\w* wouldn’t \w be|strong="H1961"\w* \w his|strong="H5414"\w*; \w and|strong="H3045"\w* \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w went|strong="H1961"\w* \w in|strong="H5414"\w* \w to|strong="H1961"\w* \w his|strong="H5414"\w* brother’s wife, \w he|strong="H3588"\w* \w spilled|strong="H7843"\w* \w his|strong="H5414"\w* semen \w on|strong="H1961"\w* \w the|strong="H3588"\w* ground, \w lest|strong="H1115"\w* \w he|strong="H3588"\w* \w should|strong="H3588"\w* \w give|strong="H5414"\w* \w offspring|strong="H2233"\w* \w to|strong="H1961"\w* \w his|strong="H5414"\w* brother. +\v 10 \w The|strong="H6213"\w* thing \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w* \w was|strong="H3068"\w* \w evil|strong="H7489"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w and|strong="H3068"\w* \w he|strong="H6213"\w* \w killed|strong="H4191"\w* \w him|strong="H6213"\w* \w also|strong="H1571"\w*. +\v 11 \w Then|strong="H1571"\w* \w Judah|strong="H3063"\w* said \w to|strong="H5704"\w* \w Tamar|strong="H8559"\w*, \w his|strong="H3588"\w* \w daughter-in-law|strong="H3618"\w*, “\w Remain|strong="H3427"\w* \w a|strong="H3068"\w* widow \w in|strong="H3427"\w* \w your|strong="H3588"\w* \w father|strong="H1121"\w*’s \w house|strong="H1004"\w*, \w until|strong="H5704"\w* \w Shelah|strong="H7956"\w*, \w my|strong="H3588"\w* \w son|strong="H1121"\w*, \w is|strong="H1931"\w* \w grown|strong="H1431"\w* \w up|strong="H1431"\w*;” \w for|strong="H3588"\w* \w he|strong="H1931"\w* said, “\w Lest|strong="H6435"\w* \w he|strong="H1931"\w* \w also|strong="H1571"\w* \w die|strong="H4191"\w*, \w like|strong="H1004"\w* \w his|strong="H3588"\w* \w brothers|strong="H1121"\w*.” \w Tamar|strong="H8559"\w* \w went|strong="H3212"\w* \w and|strong="H1121"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w her|strong="H3618"\w* \w father|strong="H1121"\w*’s \w house|strong="H1004"\w*. +\p +\v 12 \w After|strong="H5921"\w* \w many|strong="H7235"\w* \w days|strong="H3117"\w*, \w Shua|strong="H7770"\w*’s \w daughter|strong="H1323"\w*, \w the|strong="H5921"\w* wife \w of|strong="H3117"\w* \w Judah|strong="H3063"\w*, \w died|strong="H4191"\w*. \w Judah|strong="H3063"\w* \w was|strong="H1931"\w* \w comforted|strong="H5162"\w*, \w and|strong="H3063"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H4191"\w* \w his|strong="H5921"\w* \w sheep|strong="H6629"\w* \w shearers|strong="H1494"\w* \w to|strong="H4191"\w* \w Timnah|strong="H8553"\w*, \w he|strong="H1931"\w* \w and|strong="H3063"\w* \w his|strong="H5921"\w* \w friend|strong="H7453"\w* \w Hirah|strong="H2437"\w*, \w the|strong="H5921"\w* \w Adullamite|strong="H5726"\w*. +\v 13 \w Tamar|strong="H8559"\w* \w was|strong="H6629"\w* \w told|strong="H5046"\w*, “\w Behold|strong="H2009"\w*, \w your|strong="H5046"\w* \w father-in-law|strong="H2524"\w* \w is|strong="H2009"\w* \w going|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w Timnah|strong="H8553"\w* \w to|strong="H5927"\w* \w shear|strong="H1494"\w* \w his|strong="H5046"\w* \w sheep|strong="H6629"\w*.” +\v 14 \w She|strong="H1931"\w* \w took|strong="H5493"\w* \w off|strong="H5493"\w* \w the|strong="H5921"\w* garments \w of|strong="H3427"\w* \w her|strong="H5414"\w* widowhood, \w and|strong="H1870"\w* \w covered|strong="H3680"\w* \w herself|strong="H1931"\w* \w with|strong="H5921"\w* \w her|strong="H5414"\w* \w veil|strong="H6809"\w*, \w and|strong="H1870"\w* \w wrapped|strong="H5968"\w* \w herself|strong="H1931"\w*, \w and|strong="H1870"\w* \w sat|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w gate|strong="H6607"\w* \w of|strong="H3427"\w* \w Enaim|strong="H5879"\w*, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w* \w to|strong="H5921"\w* \w Timnah|strong="H8553"\w*; \w for|strong="H3588"\w* \w she|strong="H1931"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w Shelah|strong="H7956"\w* \w was|strong="H1931"\w* \w grown|strong="H1431"\w* \w up|strong="H5414"\w*, \w and|strong="H1870"\w* \w she|strong="H1931"\w* wasn’t \w given|strong="H5414"\w* \w to|strong="H5921"\w* \w him|strong="H5414"\w* \w as|strong="H3588"\w* \w a|strong="H3068"\w* wife. +\v 15 \w When|strong="H3588"\w* \w Judah|strong="H3063"\w* \w saw|strong="H7200"\w* \w her|strong="H7200"\w*, \w he|strong="H3588"\w* \w thought|strong="H2803"\w* \w that|strong="H3588"\w* \w she|strong="H3588"\w* \w was|strong="H3063"\w* \w a|strong="H3068"\w* \w prostitute|strong="H2181"\w*, \w for|strong="H3588"\w* \w she|strong="H3588"\w* \w had|strong="H3063"\w* \w covered|strong="H3680"\w* \w her|strong="H7200"\w* \w face|strong="H6440"\w*. +\v 16 \w He|strong="H1931"\w* \w turned|strong="H5186"\w* \w to|strong="H5414"\w* \w her|strong="H5414"\w* \w by|strong="H1870"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w*, \w and|strong="H1870"\w* said, “\w Please|strong="H4994"\w* \w come|strong="H3051"\w*, \w let|strong="H4994"\w* \w me|strong="H5414"\w* \w come|strong="H3051"\w* \w in|strong="H1870"\w* \w to|strong="H5414"\w* \w you|strong="H3588"\w*,” \w for|strong="H3588"\w* \w he|strong="H1931"\w* didn’t \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w she|strong="H1931"\w* \w was|strong="H1931"\w* \w his|strong="H5414"\w* \w daughter-in-law|strong="H3618"\w*. +\p \w She|strong="H1931"\w* said, “\w What|strong="H4100"\w* \w will|strong="H5414"\w* \w you|strong="H3588"\w* \w give|strong="H5414"\w* \w me|strong="H5414"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H4994"\w* \w come|strong="H3051"\w* \w in|strong="H1870"\w* \w to|strong="H5414"\w* \w me|strong="H5414"\w*?” +\p +\v 17 \w He|strong="H5704"\w* said, “\w I|strong="H5414"\w* \w will|strong="H5414"\w* \w send|strong="H7971"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w young|strong="H1423"\w* \w goat|strong="H5795"\w* \w from|strong="H4480"\w* \w the|strong="H5414"\w* \w flock|strong="H6629"\w*.” +\p \w She|strong="H5704"\w* said, “\w Will|strong="H5414"\w* \w you|strong="H5414"\w* \w give|strong="H5414"\w* \w me|strong="H5414"\w* \w a|strong="H3068"\w* \w pledge|strong="H6162"\w*, \w until|strong="H5704"\w* \w you|strong="H5414"\w* \w send|strong="H7971"\w* \w it|strong="H5414"\w*?” +\p +\v 18 \w He|strong="H5414"\w* said, “\w What|strong="H4100"\w* \w pledge|strong="H6162"\w* \w will|strong="H3027"\w* \w I|strong="H5414"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w*?” +\p \w She|strong="H4100"\w* said, “\w Your|strong="H5414"\w* \w signet|strong="H2368"\w* \w and|strong="H3027"\w* \w your|strong="H5414"\w* \w cord|strong="H6616"\w*, \w and|strong="H3027"\w* \w your|strong="H5414"\w* \w staff|strong="H4294"\w* \w that|strong="H5414"\w* \w is|strong="H4100"\w* \w in|strong="H3027"\w* \w your|strong="H5414"\w* \w hand|strong="H3027"\w*.” +\p \w He|strong="H5414"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H5414"\w* \w her|strong="H5414"\w*, \w and|strong="H3027"\w* came \w in|strong="H3027"\w* \w to|strong="H5414"\w* \w her|strong="H5414"\w*, \w and|strong="H3027"\w* \w she|strong="H4100"\w* \w conceived|strong="H2029"\w* \w by|strong="H3027"\w* \w him|strong="H5414"\w*. +\v 19 \w She|strong="H5921"\w* \w arose|strong="H6965"\w*, \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w away|strong="H5493"\w*, \w and|strong="H6965"\w* \w put|strong="H3847"\w* \w off|strong="H5493"\w* \w her|strong="H5493"\w* \w veil|strong="H6809"\w* \w from|strong="H5493"\w* \w her|strong="H5493"\w*, \w and|strong="H6965"\w* \w put|strong="H3847"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* garments \w of|strong="H5921"\w* \w her|strong="H5493"\w* widowhood. +\v 20 \w Judah|strong="H3063"\w* \w sent|strong="H7971"\w* \w the|strong="H3947"\w* \w young|strong="H1423"\w* \w goat|strong="H5795"\w* \w by|strong="H3027"\w* \w the|strong="H3947"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w his|strong="H7971"\w* \w friend|strong="H7453"\w*, \w the|strong="H3947"\w* \w Adullamite|strong="H5726"\w*, \w to|strong="H7971"\w* \w receive|strong="H3947"\w* \w the|strong="H3947"\w* \w pledge|strong="H6162"\w* \w from|strong="H3027"\w* \w the|strong="H3947"\w* woman’s \w hand|strong="H3027"\w*, \w but|strong="H3808"\w* \w he|strong="H3027"\w* didn’t \w find|strong="H4672"\w* \w her|strong="H7971"\w*. +\v 21 \w Then|strong="H1961"\w* \w he|strong="H1931"\w* \w asked|strong="H7592"\w* \w the|strong="H5921"\w* men \w of|strong="H1870"\w* \w her|strong="H5921"\w* \w place|strong="H4725"\w*, saying, “\w Where|strong="H4725"\w* \w is|strong="H2088"\w* \w the|strong="H5921"\w* prostitute, \w that|strong="H1931"\w* \w was|strong="H1961"\w* \w at|strong="H5921"\w* \w Enaim|strong="H5879"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w road|strong="H1870"\w*?” +\p \w They|strong="H3808"\w* said, “\w There|strong="H1961"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w no|strong="H3808"\w* prostitute \w here|strong="H2088"\w*.” +\p +\v 22 \w He|strong="H3808"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* said, “\w I|strong="H2088"\w* haven’t \w found|strong="H4672"\w* \w her|strong="H4672"\w*; \w and|strong="H3063"\w* \w also|strong="H1571"\w* \w the|strong="H7725"\w* men \w of|strong="H4725"\w* \w the|strong="H7725"\w* \w place|strong="H4725"\w* said, ‘\w There|strong="H1961"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w no|strong="H3808"\w* prostitute \w here|strong="H2088"\w*.’” +\v 23 \w Judah|strong="H3063"\w* said, “\w Let|strong="H7971"\w* \w her|strong="H7971"\w* \w keep|strong="H1961"\w* \w it|strong="H1961"\w*, \w lest|strong="H6435"\w* \w we|strong="H3068"\w* \w be|strong="H1961"\w* shamed. \w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w sent|strong="H7971"\w* \w this|strong="H2088"\w* \w young|strong="H1423"\w* \w goat|strong="H1423"\w*, \w and|strong="H3063"\w* \w you|strong="H7971"\w* haven’t \w found|strong="H4672"\w* \w her|strong="H7971"\w*.” +\p +\v 24 \w About|strong="H1961"\w* \w three|strong="H7969"\w* \w months|strong="H2320"\w* \w later|strong="H1961"\w*, \w Judah|strong="H3063"\w* \w was|strong="H1961"\w* \w told|strong="H5046"\w*, “\w Tamar|strong="H8559"\w*, \w your|strong="H1961"\w* \w daughter-in-law|strong="H3618"\w*, \w has|strong="H1961"\w* \w played|strong="H2181"\w* \w the|strong="H3318"\w* \w prostitute|strong="H2181"\w*. \w Moreover|strong="H1571"\w*, \w behold|strong="H2009"\w*, \w she|strong="H2320"\w* \w is|strong="H1571"\w* \w with|strong="H8313"\w* \w child|strong="H2030"\w* \w by|strong="H3318"\w* prostitution.” +\p \w Judah|strong="H3063"\w* \w said|strong="H3318"\w*, “\w Bring|strong="H3318"\w* \w her|strong="H5046"\w* \w out|strong="H3318"\w*, \w and|strong="H3063"\w* \w let|strong="H5046"\w* \w her|strong="H5046"\w* \w be|strong="H1961"\w* \w burned|strong="H8313"\w*.” +\v 25 \w When|strong="H3318"\w* \w she|strong="H1931"\w* \w was|strong="H1931"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w*, \w she|strong="H1931"\w* \w sent|strong="H7971"\w* \w to|strong="H3318"\w* \w her|strong="H7971"\w* \w father-in-law|strong="H2524"\w*, saying, “\w I|strong="H3318"\w* am \w with|strong="H3318"\w* \w child|strong="H2030"\w* \w by|strong="H3318"\w* \w the|strong="H7971"\w* man \w who|strong="H4310"\w* owns \w these|strong="H1931"\w*.” \w She|strong="H1931"\w* \w also|strong="H3318"\w* \w said|strong="H3318"\w*, “\w Please|strong="H4994"\w* \w discern|strong="H5234"\w* \w whose|strong="H4310"\w* \w these|strong="H1931"\w* \w are|strong="H4310"\w*—\w the|strong="H7971"\w* \w signet|strong="H2858"\w*, \w and|strong="H7971"\w* \w the|strong="H7971"\w* \w cords|strong="H6616"\w*, \w and|strong="H7971"\w* \w the|strong="H7971"\w* \w staff|strong="H4294"\w*.” +\p +\v 26 \w Judah|strong="H3063"\w* \w acknowledged|strong="H3045"\w* \w them|strong="H5414"\w*, \w and|strong="H1121"\w* \w said|strong="H3651"\w*, “\w She|strong="H3588"\w* \w is|strong="H3651"\w* \w more|strong="H3254"\w* \w righteous|strong="H6663"\w* \w than|strong="H4480"\w* \w I|strong="H3588"\w*, \w because|strong="H3588"\w* \w I|strong="H3588"\w* didn’t \w give|strong="H5414"\w* \w her|strong="H5414"\w* \w to|strong="H5921"\w* \w Shelah|strong="H7956"\w*, \w my|strong="H5414"\w* \w son|strong="H1121"\w*.” +\p \w He|strong="H3588"\w* \w knew|strong="H3045"\w* \w her|strong="H5414"\w* \w again|strong="H5750"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w*. +\v 27 \w In|strong="H1961"\w* \w the|strong="H3205"\w* \w time|strong="H6256"\w* \w of|strong="H3205"\w* \w her|strong="H3205"\w* \w travail|strong="H3205"\w*, \w behold|strong="H2009"\w*, \w twins|strong="H8380"\w* \w were|strong="H1961"\w* \w in|strong="H1961"\w* \w her|strong="H3205"\w* womb. +\v 28 \w When|strong="H1961"\w* \w she|strong="H5921"\w* \w travailed|strong="H3205"\w*, \w one|strong="H2088"\w* \w put|strong="H5414"\w* \w out|strong="H3318"\w* \w a|strong="H3068"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w the|strong="H5921"\w* \w midwife|strong="H3205"\w* \w took|strong="H3947"\w* \w and|strong="H3027"\w* \w tied|strong="H7194"\w* \w a|strong="H3068"\w* \w scarlet|strong="H8144"\w* \w thread|strong="H8144"\w* \w on|strong="H5921"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w*, saying, “\w This|strong="H2088"\w* \w came|strong="H1961"\w* \w out|strong="H3318"\w* \w first|strong="H7223"\w*.” +\v 29 \w As|strong="H1961"\w* \w he|strong="H3027"\w* \w drew|strong="H7725"\w* \w back|strong="H7725"\w* \w his|strong="H7121"\w* \w hand|strong="H3027"\w*, \w behold|strong="H2009"\w*, \w his|strong="H7121"\w* brother \w came|strong="H1961"\w* \w out|strong="H3318"\w*, \w and|strong="H7725"\w* \w she|strong="H7121"\w* \w said|strong="H7121"\w*, “\w Why|strong="H4100"\w* \w have|strong="H1961"\w* \w you|strong="H5921"\w* \w made|strong="H6555"\w* \w a|strong="H3068"\w* \w breach|strong="H6556"\w* \w for|strong="H5921"\w* \w yourself|strong="H5921"\w*?” \w Therefore|strong="H5921"\w* \w his|strong="H7121"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w called|strong="H7121"\w* \w Perez|strong="H6557"\w*.\f + \fr 38:29 \ft Perez means “breaking out”.\f* +\v 30 Afterward \w his|strong="H7121"\w* brother \w came|strong="H3318"\w* \w out|strong="H3318"\w*, \w who|strong="H7121"\w* \w had|strong="H3027"\w* \w the|strong="H5921"\w* \w scarlet|strong="H8144"\w* \w thread|strong="H8144"\w* \w on|strong="H5921"\w* \w his|strong="H7121"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w his|strong="H7121"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w called|strong="H7121"\w* \w Zerah|strong="H2226"\w*.\f + \fr 38:30 \ft Zerah means “scarlet” or “brightness”.\f* +\c 39 +\p +\v 1 \w Joseph|strong="H3130"\w* \w was|strong="H3027"\w* \w brought|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w Egypt|strong="H4714"\w*. \w Potiphar|strong="H6318"\w*, \w an|strong="H8033"\w* \w officer|strong="H5631"\w* \w of|strong="H3027"\w* \w Pharaoh|strong="H6547"\w*’s, \w the|strong="H3027"\w* \w captain|strong="H8269"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w guard|strong="H2876"\w*, \w an|strong="H8033"\w* \w Egyptian|strong="H4713"\w*, \w bought|strong="H7069"\w* \w him|strong="H3027"\w* \w from|strong="H3381"\w* \w the|strong="H3027"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w Ishmaelites|strong="H3459"\w* \w that|strong="H3027"\w* \w had|strong="H3130"\w* \w brought|strong="H3381"\w* \w him|strong="H3027"\w* \w down|strong="H3381"\w* \w there|strong="H8033"\w*. +\v 2 \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w with|strong="H1004"\w* \w Joseph|strong="H3130"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w was|strong="H3068"\w* \w a|strong="H3068"\w* \w prosperous|strong="H6743"\w* man. \w He|strong="H3068"\w* \w was|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w his|strong="H3068"\w* master \w the|strong="H3068"\w* \w Egyptian|strong="H4713"\w*. +\v 3 \w His|strong="H3605"\w* master \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w with|strong="H3068"\w* \w him|strong="H3027"\w*, \w and|strong="H3068"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w did|strong="H6213"\w* \w prosper|strong="H6743"\w* \w in|strong="H3068"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*. +\v 4 \w Joseph|strong="H3130"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w sight|strong="H5869"\w*. \w He|strong="H3605"\w* \w ministered|strong="H8334"\w* \w to|strong="H5921"\w* \w him|strong="H5414"\w*, \w and|strong="H3027"\w* \w Potiphar|strong="H6485"\w* \w made|strong="H5414"\w* \w him|strong="H5414"\w* \w overseer|strong="H6485"\w* \w over|strong="H5921"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*, \w and|strong="H3027"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w had|strong="H3130"\w* \w he|strong="H3605"\w* \w put|strong="H5414"\w* \w into|strong="H5921"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*. +\v 5 \w From|strong="H5921"\w* \w the|strong="H3605"\w* \w time|strong="H1961"\w* \w that|strong="H3605"\w* \w he|strong="H3068"\w* \w made|strong="H1961"\w* \w him|strong="H5921"\w* \w overseer|strong="H6485"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w*, \w Yahweh|strong="H3068"\w* \w blessed|strong="H1288"\w* \w the|strong="H3605"\w* \w Egyptian|strong="H4713"\w*’s \w house|strong="H1004"\w* \w for|strong="H5921"\w* \w Joseph|strong="H3130"\w*’s \w sake|strong="H5921"\w*. \w Yahweh|strong="H3068"\w*’s \w blessing|strong="H1293"\w* \w was|strong="H3068"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w*, \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w and|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*. +\v 6 \w He|strong="H1931"\w* \w left|strong="H5800"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w had|strong="H1961"\w* \w in|strong="H3899"\w* \w Joseph|strong="H3130"\w*’s \w hand|strong="H3027"\w*. \w He|strong="H1931"\w* didn’t \w concern|strong="H3045"\w* \w himself|strong="H1931"\w* \w with|strong="H3045"\w* \w anything|strong="H3605"\w*, \w except|strong="H3588"\w* \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w food|strong="H3899"\w* \w which|strong="H1931"\w* \w he|strong="H1931"\w* ate. +\p \w Joseph|strong="H3130"\w* \w was|strong="H1961"\w* well-built \w and|strong="H3027"\w* \w handsome|strong="H3303"\w*. +\v 7 \w After|strong="H1961"\w* these \w things|strong="H1697"\w*, \w his|strong="H5375"\w* master’s wife \w set|strong="H5375"\w* \w her|strong="H5375"\w* \w eyes|strong="H5869"\w* \w on|strong="H1961"\w* \w Joseph|strong="H3130"\w*; \w and|strong="H5869"\w* \w she|strong="H5973"\w* \w said|strong="H1697"\w*, “\w Lie|strong="H7901"\w* \w with|strong="H5973"\w* \w me|strong="H5973"\w*.” +\p +\v 8 \w But|strong="H3808"\w* \w he|strong="H3605"\w* \w refused|strong="H3985"\w*, \w and|strong="H3027"\w* said \w to|strong="H5414"\w* \w his|strong="H3605"\w* \w master|strong="H5414"\w*’s wife, “\w Behold|strong="H2005"\w*, \w my|strong="H5414"\w* \w master|strong="H5414"\w* doesn’t \w know|strong="H3045"\w* \w what|strong="H4100"\w* \w is|strong="H3426"\w* \w with|strong="H1004"\w* \w me|strong="H5414"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*, \w and|strong="H3027"\w* \w he|strong="H3605"\w* \w has|strong="H4100"\w* \w put|strong="H5414"\w* \w all|strong="H3605"\w* \w that|strong="H3045"\w* \w he|strong="H3605"\w* \w has|strong="H4100"\w* \w into|strong="H3027"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w*. +\v 9 \w No|strong="H3808"\w* \w one|strong="H2088"\w* \w is|strong="H2088"\w* \w greater|strong="H1419"\w* \w in|strong="H6213"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w* \w than|strong="H4480"\w* \w I|strong="H3588"\w* am, \w and|strong="H1419"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w not|strong="H3808"\w* \w kept|strong="H6213"\w* \w back|strong="H2820"\w* \w anything|strong="H3972"\w* \w from|strong="H4480"\w* \w me|strong="H4480"\w* \w but|strong="H3588"\w* \w you|strong="H3588"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H1004"\w* \w his|strong="H6213"\w* wife. \w How|strong="H3588"\w* \w then|strong="H2088"\w* \w can|strong="H6213"\w* \w I|strong="H3588"\w* \w do|strong="H6213"\w* \w this|strong="H2088"\w* \w great|strong="H1419"\w* \w wickedness|strong="H7451"\w*, \w and|strong="H1419"\w* \w sin|strong="H2398"\w* \w against|strong="H4480"\w* \w God|strong="H3808"\w*?” +\p +\v 10 \w As|strong="H3117"\w* \w she|strong="H5973"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Joseph|strong="H3130"\w* \w day|strong="H3117"\w* \w by|strong="H3117"\w* \w day|strong="H3117"\w*, \w he|strong="H3117"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H1696"\w* \w her|strong="H7901"\w*, \w to|strong="H1696"\w* \w lie|strong="H7901"\w* \w by|strong="H3117"\w* \w her|strong="H7901"\w*, \w or|strong="H3808"\w* \w to|strong="H1696"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w her|strong="H7901"\w*. +\v 11 \w About|strong="H1961"\w* \w this|strong="H2088"\w* \w time|strong="H3117"\w*, \w he|strong="H3117"\w* \w went|strong="H1004"\w* \w into|strong="H6213"\w* \w the|strong="H6213"\w* \w house|strong="H1004"\w* \w to|strong="H1961"\w* \w do|strong="H6213"\w* \w his|strong="H1961"\w* \w work|strong="H4399"\w*, \w and|strong="H3117"\w* \w there|strong="H8033"\w* \w were|strong="H1961"\w* none \w of|strong="H1004"\w* \w the|strong="H6213"\w* \w men|strong="H6213"\w* \w of|strong="H1004"\w* \w the|strong="H6213"\w* \w house|strong="H1004"\w* \w inside|strong="H1004"\w*. +\v 12 \w She|strong="H5973"\w* \w caught|strong="H8610"\w* \w him|strong="H3027"\w* \w by|strong="H3027"\w* \w his|strong="H3027"\w* garment, saying, “\w Lie|strong="H7901"\w* \w with|strong="H5973"\w* \w me|strong="H3318"\w*!” +\p \w He|strong="H3027"\w* \w left|strong="H5800"\w* \w his|strong="H3027"\w* garment \w in|strong="H7901"\w* \w her|strong="H3318"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w ran|strong="H5127"\w* \w outside|strong="H2351"\w*. +\v 13 \w When|strong="H3588"\w* \w she|strong="H3588"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H1961"\w* \w left|strong="H5800"\w* \w his|strong="H7200"\w* garment \w in|strong="H3027"\w* \w her|strong="H7200"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w had|strong="H1961"\w* \w run|strong="H5127"\w* \w outside|strong="H2351"\w*, +\v 14 \w she|strong="H7121"\w* \w called|strong="H7121"\w* \w to|strong="H1004"\w* \w the|strong="H7200"\w* \w men|strong="H1419"\w* \w of|strong="H1004"\w* \w her|strong="H7200"\w* \w house|strong="H1004"\w*, \w and|strong="H1419"\w* spoke \w to|strong="H1004"\w* \w them|strong="H7121"\w*, \w saying|strong="H6963"\w*, “\w Behold|strong="H7200"\w*, \w he|strong="H1004"\w* \w has|strong="H1004"\w* brought \w a|strong="H3068"\w* \w Hebrew|strong="H5680"\w* \w in|strong="H1004"\w* \w to|strong="H1004"\w* \w us|strong="H7200"\w* \w to|strong="H1004"\w* \w mock|strong="H6711"\w* \w us|strong="H7200"\w*. \w He|strong="H1004"\w* came \w in|strong="H1004"\w* \w to|strong="H1004"\w* \w me|strong="H7200"\w* \w to|strong="H1004"\w* \w lie|strong="H7901"\w* \w with|strong="H5973"\w* \w me|strong="H7200"\w*, \w and|strong="H1419"\w* \w I|strong="H7200"\w* \w cried|strong="H7121"\w* \w with|strong="H5973"\w* \w a|strong="H3068"\w* \w loud|strong="H1419"\w* \w voice|strong="H6963"\w*. +\v 15 \w When|strong="H3588"\w* \w he|strong="H3588"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w lifted|strong="H7311"\w* \w up|strong="H7311"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w* \w and|strong="H6963"\w* \w cried|strong="H7121"\w*, \w he|strong="H3588"\w* \w left|strong="H5800"\w* \w his|strong="H7121"\w* garment \w by|strong="H7121"\w* \w me|strong="H6963"\w*, \w and|strong="H6963"\w* \w ran|strong="H5127"\w* \w outside|strong="H2351"\w*.” +\v 16 \w She|strong="H5704"\w* \w laid|strong="H3240"\w* \w up|strong="H3240"\w* \w his|strong="H3240"\w* garment \w by|strong="H5704"\w* \w her|strong="H5704"\w*, \w until|strong="H5704"\w* \w his|strong="H3240"\w* master came \w home|strong="H1004"\w*. +\v 17 She \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H1697"\w* according \w to|strong="H1696"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w*, \w saying|strong="H1697"\w*, “\w The|strong="H1697"\w* \w Hebrew|strong="H5680"\w* \w servant|strong="H5650"\w*, whom \w you|strong="H1696"\w* \w have|strong="H5650"\w* \w brought|strong="H5650"\w* \w to|strong="H1696"\w* us, \w came|strong="H1697"\w* \w in|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w* \w to|strong="H1696"\w* \w mock|strong="H6711"\w* \w me|strong="H1696"\w*, +\v 18 \w and|strong="H6963"\w* \w as|strong="H1961"\w* \w I|strong="H6963"\w* \w lifted|strong="H7311"\w* \w up|strong="H7311"\w* \w my|strong="H1961"\w* \w voice|strong="H6963"\w* \w and|strong="H6963"\w* \w cried|strong="H7121"\w*, \w he|strong="H7121"\w* \w left|strong="H5800"\w* \w his|strong="H7121"\w* garment \w by|strong="H7121"\w* \w me|strong="H6963"\w*, \w and|strong="H6963"\w* \w ran|strong="H5127"\w* \w outside|strong="H2351"\w*.” +\p +\v 19 \w When|strong="H1961"\w* \w his|strong="H8085"\w* master \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w his|strong="H8085"\w* \w wife|strong="H1696"\w*, \w which|strong="H1697"\w* she \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H6213"\w*, \w saying|strong="H1697"\w*, “\w This|strong="H6213"\w* \w is|strong="H1697"\w* \w what|strong="H1697"\w* \w your|strong="H8085"\w* \w servant|strong="H5650"\w* \w did|strong="H6213"\w* \w to|strong="H1696"\w* \w me|strong="H6213"\w*,” \w his|strong="H8085"\w* wrath \w was|strong="H1961"\w* \w kindled|strong="H2734"\w*. +\v 20 \w Joseph|strong="H3130"\w*’s \w master|strong="H5414"\w* \w took|strong="H3947"\w* \w him|strong="H5414"\w*, \w and|strong="H4428"\w* \w put|strong="H5414"\w* \w him|strong="H5414"\w* \w into|strong="H1961"\w* \w the|strong="H5414"\w* \w prison|strong="H1004"\w*, \w the|strong="H5414"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w*’s prisoners \w were|strong="H1961"\w* bound, \w and|strong="H4428"\w* \w he|strong="H8033"\w* \w was|strong="H1961"\w* \w there|strong="H8033"\w* \w in|strong="H1004"\w* custody. +\v 21 \w But|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w with|strong="H1004"\w* \w Joseph|strong="H3130"\w*, \w and|strong="H3068"\w* \w showed|strong="H5414"\w* \w kindness|strong="H2617"\w* \w to|strong="H3068"\w* \w him|strong="H5414"\w*, \w and|strong="H3068"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w favor|strong="H2580"\w* \w in|strong="H3068"\w* \w the|strong="H5414"\w* \w sight|strong="H5869"\w* \w of|strong="H1004"\w* \w the|strong="H5414"\w* \w keeper|strong="H8269"\w* \w of|strong="H1004"\w* \w the|strong="H5414"\w* \w prison|strong="H1004"\w*. +\v 22 \w The|strong="H3605"\w* \w keeper|strong="H8269"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w prison|strong="H1004"\w* \w committed|strong="H6213"\w* \w to|strong="H1961"\w* \w Joseph|strong="H3130"\w*’s \w hand|strong="H3027"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* prisoners \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w prison|strong="H1004"\w*. \w Whatever|strong="H3605"\w* \w they|strong="H8033"\w* \w did|strong="H6213"\w* \w there|strong="H8033"\w*, \w he|strong="H1931"\w* \w was|strong="H1961"\w* \w responsible|strong="H6213"\w* \w for|strong="H6213"\w* \w it|strong="H5414"\w*. +\v 23 \w The|strong="H3605"\w* \w keeper|strong="H8269"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w prison|strong="H1004"\w* didn’t \w look|strong="H7200"\w* \w after|strong="H7200"\w* \w anything|strong="H3605"\w* \w that|strong="H7200"\w* \w was|strong="H3068"\w* \w under|strong="H3027"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*, \w because|strong="H3027"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w with|strong="H1004"\w* \w him|strong="H3027"\w*; \w and|strong="H3068"\w* \w that|strong="H7200"\w* \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w did|strong="H6213"\w*, \w Yahweh|strong="H3068"\w* \w made|strong="H6213"\w* \w it|strong="H1931"\w* \w prosper|strong="H6743"\w*. +\c 40 +\p +\v 1 \w After|strong="H1961"\w* \w these|strong="H4428"\w* \w things|strong="H1697"\w*, \w the|strong="H1697"\w* butler \w of|strong="H4428"\w* \w the|strong="H1697"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w and|strong="H4428"\w* \w his|strong="H1961"\w* baker \w offended|strong="H2398"\w* \w their|strong="H1961"\w* lord, \w the|strong="H1697"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*. +\v 2 \w Pharaoh|strong="H6547"\w* \w was|strong="H6547"\w* \w angry|strong="H7107"\w* \w with|strong="H5921"\w* \w his|strong="H5921"\w* \w two|strong="H8147"\w* \w officers|strong="H8269"\w*, \w the|strong="H5921"\w* \w chief|strong="H8269"\w* cup bearer \w and|strong="H6547"\w* \w the|strong="H5921"\w* \w chief|strong="H8269"\w* baker. +\v 3 \w He|strong="H8033"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w in|strong="H1004"\w* \w custody|strong="H4929"\w* \w in|strong="H1004"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H5414"\w* \w captain|strong="H8269"\w* \w of|strong="H1004"\w* \w the|strong="H5414"\w* \w guard|strong="H2876"\w*, \w into|strong="H3130"\w* \w the|strong="H5414"\w* \w prison|strong="H1004"\w*, \w the|strong="H5414"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w Joseph|strong="H3130"\w* \w was|strong="H1004"\w* bound. +\v 4 \w The|strong="H3117"\w* \w captain|strong="H8269"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w guard|strong="H2876"\w* \w assigned|strong="H6485"\w* \w them|strong="H1961"\w* \w to|strong="H1961"\w* \w Joseph|strong="H3130"\w*, \w and|strong="H3117"\w* \w he|strong="H3117"\w* \w took|strong="H1961"\w* \w care|strong="H6485"\w* \w of|strong="H3117"\w* \w them|strong="H1961"\w*. \w They|strong="H3117"\w* stayed \w in|strong="H3117"\w* \w prison|strong="H4929"\w* many \w days|strong="H3117"\w*. +\v 5 \w They|strong="H3915"\w* \w both|strong="H8147"\w* \w dreamed|strong="H2492"\w* \w a|strong="H3068"\w* \w dream|strong="H2472"\w*, \w each|strong="H2492"\w* man \w his|strong="H4428"\w* \w dream|strong="H2472"\w*, \w in|strong="H1004"\w* \w one|strong="H8147"\w* \w night|strong="H3915"\w*, \w each|strong="H2492"\w* man according \w to|strong="H4714"\w* \w the|strong="H1004"\w* \w interpretation|strong="H6623"\w* \w of|strong="H4428"\w* \w his|strong="H4428"\w* \w dream|strong="H2472"\w*, \w the|strong="H1004"\w* cup bearer \w and|strong="H4428"\w* \w the|strong="H1004"\w* baker \w of|strong="H4428"\w* \w the|strong="H1004"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*, \w who|strong="H4428"\w* \w were|strong="H4714"\w* bound \w in|strong="H1004"\w* \w the|strong="H1004"\w* \w prison|strong="H1004"\w*. +\v 6 \w Joseph|strong="H3130"\w* \w came|strong="H3130"\w* \w in|strong="H7200"\w* \w to|strong="H7200"\w* \w them|strong="H7200"\w* \w in|strong="H7200"\w* \w the|strong="H7200"\w* \w morning|strong="H1242"\w*, \w and|strong="H1242"\w* \w saw|strong="H7200"\w* \w them|strong="H7200"\w*, \w and|strong="H1242"\w* \w saw|strong="H7200"\w* \w that|strong="H7200"\w* \w they|strong="H7200"\w* \w were|strong="H3130"\w* \w sad|strong="H2196"\w*. +\v 7 \w He|strong="H3117"\w* \w asked|strong="H7592"\w* \w Pharaoh|strong="H6547"\w*’s \w officers|strong="H5631"\w* \w who|strong="H6547"\w* \w were|strong="H3117"\w* \w with|strong="H1004"\w* \w him|strong="H6440"\w* \w in|strong="H1004"\w* \w custody|strong="H4929"\w* \w in|strong="H1004"\w* \w his|strong="H6440"\w* master’s \w house|strong="H1004"\w*, saying, “\w Why|strong="H4069"\w* do \w you|strong="H6440"\w* \w look|strong="H6547"\w* \w so|strong="H7592"\w* \w sad|strong="H7451"\w* \w today|strong="H3117"\w*?” +\p +\v 8 \w They|strong="H3808"\w* said \w to|strong="H3808"\w* \w him|strong="H5608"\w*, “\w We|strong="H4994"\w* \w have|strong="H3808"\w* \w dreamed|strong="H2492"\w* \w a|strong="H3068"\w* \w dream|strong="H2472"\w*, \w and|strong="H4994"\w* there \w is|strong="H3130"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w who|strong="H3808"\w* \w can|strong="H3808"\w* \w interpret|strong="H6622"\w* \w it|strong="H3808"\w*.” +\p \w Joseph|strong="H3130"\w* said \w to|strong="H3808"\w* \w them|strong="H4994"\w*, “Don’t \w interpretations|strong="H6623"\w* belong \w to|strong="H3808"\w* \w God|strong="H3808"\w*? \w Please|strong="H4994"\w* \w tell|strong="H5608"\w* \w it|strong="H3808"\w* \w to|strong="H3808"\w* \w me|strong="H4994"\w*.” +\p +\v 9 \w The|strong="H6440"\w* \w chief|strong="H8269"\w* cup bearer \w told|strong="H5608"\w* \w his|strong="H6440"\w* \w dream|strong="H2472"\w* \w to|strong="H6440"\w* \w Joseph|strong="H3130"\w*, \w and|strong="H6440"\w* said \w to|strong="H6440"\w* \w him|strong="H6440"\w*, “\w In|strong="H6440"\w* \w my|strong="H5608"\w* \w dream|strong="H2472"\w*, \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w vine|strong="H1612"\w* \w was|strong="H3130"\w* \w in|strong="H6440"\w* \w front|strong="H6440"\w* \w of|strong="H8269"\w* \w me|strong="H6440"\w*, +\v 10 \w and|strong="H5927"\w* \w in|strong="H5927"\w* \w the|strong="H5927"\w* \w vine|strong="H1612"\w* \w were|strong="H7969"\w* \w three|strong="H7969"\w* \w branches|strong="H8299"\w*. \w It|strong="H1931"\w* \w was|strong="H1931"\w* \w as|strong="H5927"\w* \w though|strong="H1931"\w* \w it|strong="H1931"\w* \w budded|strong="H6524"\w*, \w it|strong="H1931"\w* \w blossomed|strong="H6524"\w*, \w and|strong="H5927"\w* \w its|strong="H5927"\w* clusters \w produced|strong="H1310"\w* \w ripe|strong="H1310"\w* \w grapes|strong="H6025"\w*. +\v 11 \w Pharaoh|strong="H6547"\w*’s \w cup|strong="H3563"\w* \w was|strong="H3027"\w* \w in|strong="H5921"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w*; \w and|strong="H3027"\w* \w I|strong="H5414"\w* \w took|strong="H3947"\w* \w the|strong="H5921"\w* \w grapes|strong="H6025"\w*, \w and|strong="H3027"\w* \w pressed|strong="H7818"\w* \w them|strong="H5414"\w* \w into|strong="H5921"\w* \w Pharaoh|strong="H6547"\w*’s \w cup|strong="H3563"\w*, \w and|strong="H3027"\w* \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w the|strong="H5921"\w* \w cup|strong="H3563"\w* \w into|strong="H5921"\w* \w Pharaoh|strong="H6547"\w*’s \w hand|strong="H3027"\w*.” +\p +\v 12 \w Joseph|strong="H3130"\w* said \w to|strong="H3117"\w* \w him|strong="H2088"\w*, “\w This|strong="H2088"\w* \w is|strong="H2088"\w* its \w interpretation|strong="H6623"\w*: \w the|strong="H3117"\w* \w three|strong="H7969"\w* \w branches|strong="H8299"\w* \w are|strong="H3117"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*. +\v 13 \w Within|strong="H5921"\w* \w three|strong="H7969"\w* \w more|strong="H5750"\w* \w days|strong="H3117"\w*, \w Pharaoh|strong="H6547"\w* \w will|strong="H1961"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H5414"\w* \w head|strong="H7218"\w*, \w and|strong="H7725"\w* \w restore|strong="H7725"\w* \w you|strong="H5414"\w* \w to|strong="H7725"\w* \w your|strong="H5414"\w* \w office|strong="H3653"\w*. \w You|strong="H5414"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w Pharaoh|strong="H6547"\w*’s \w cup|strong="H3563"\w* \w into|strong="H7725"\w* \w his|strong="H5375"\w* \w hand|strong="H3027"\w*, \w the|strong="H5921"\w* \w way|strong="H4941"\w* \w you|strong="H5414"\w* \w did|strong="H3117"\w* \w when|strong="H1961"\w* \w you|strong="H5414"\w* \w were|strong="H1961"\w* \w his|strong="H5375"\w* \w cup|strong="H3563"\w* \w bearer|strong="H5375"\w*. +\v 14 \w But|strong="H3588"\w* \w remember|strong="H2142"\w* \w me|strong="H4994"\w* \w when|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H2088"\w* \w well|strong="H3190"\w* \w with|strong="H1004"\w* \w you|strong="H3588"\w*. \w Please|strong="H4994"\w* \w show|strong="H6213"\w* \w kindness|strong="H2617"\w* \w to|strong="H3318"\w* \w me|strong="H4994"\w*, \w and|strong="H1004"\w* \w make|strong="H6213"\w* \w mention|strong="H2142"\w* \w of|strong="H1004"\w* \w me|strong="H4994"\w* \w to|strong="H3318"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H1004"\w* \w bring|strong="H3318"\w* \w me|strong="H4994"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w*. +\v 15 \w For|strong="H3588"\w* \w indeed|strong="H3588"\w*, \w I|strong="H3588"\w* \w was|strong="H3808"\w* \w stolen|strong="H1589"\w* \w away|strong="H1589"\w* \w out|strong="H6213"\w* \w of|strong="H6213"\w* \w the|strong="H3588"\w* land \w of|strong="H6213"\w* \w the|strong="H3588"\w* \w Hebrews|strong="H5680"\w*, \w and|strong="H6213"\w* \w here|strong="H6311"\w* \w also|strong="H1571"\w* \w I|strong="H3588"\w* \w have|strong="H1571"\w* \w done|strong="H6213"\w* \w nothing|strong="H3808"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w should|strong="H3588"\w* \w put|strong="H7760"\w* \w me|strong="H7760"\w* \w into|strong="H6213"\w* \w the|strong="H3588"\w* dungeon.” +\p +\v 16 \w When|strong="H3588"\w* \w the|strong="H5921"\w* \w chief|strong="H7218"\w* baker \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H5921"\w* \w interpretation|strong="H6622"\w* \w was|strong="H3130"\w* \w good|strong="H2896"\w*, \w he|strong="H3588"\w* said \w to|strong="H5921"\w* \w Joseph|strong="H3130"\w*, “\w I|strong="H3588"\w* \w also|strong="H8269"\w* \w was|strong="H3130"\w* \w in|strong="H5921"\w* \w my|strong="H7200"\w* \w dream|strong="H2472"\w*, \w and|strong="H7218"\w* \w behold|strong="H2009"\w*, \w three|strong="H7969"\w* \w baskets|strong="H5536"\w* \w of|strong="H8269"\w* \w white|strong="H2751"\w* \w bread|strong="H2751"\w* \w were|strong="H8269"\w* \w on|strong="H5921"\w* \w my|strong="H7200"\w* \w head|strong="H7218"\w*. +\v 17 \w In|strong="H5921"\w* \w the|strong="H3605"\w* \w uppermost|strong="H5945"\w* \w basket|strong="H5536"\w* \w there|strong="H4480"\w* \w were|strong="H7218"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H7218"\w* baked \w food|strong="H3978"\w* \w for|strong="H5921"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H7218"\w* \w the|strong="H3605"\w* \w birds|strong="H5775"\w* ate \w them|strong="H5921"\w* \w out|strong="H4480"\w* \w of|strong="H7218"\w* \w the|strong="H3605"\w* \w basket|strong="H5536"\w* \w on|strong="H5921"\w* \w my|strong="H3605"\w* \w head|strong="H7218"\w*.” +\p +\v 18 \w Joseph|strong="H3130"\w* \w answered|strong="H6030"\w*, “\w This|strong="H2088"\w* \w is|strong="H2088"\w* its \w interpretation|strong="H6623"\w*. \w The|strong="H3117"\w* \w three|strong="H7969"\w* \w baskets|strong="H5536"\w* \w are|strong="H3117"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*. +\v 19 \w Within|strong="H5921"\w* \w three|strong="H7969"\w* \w more|strong="H5750"\w* \w days|strong="H3117"\w*, \w Pharaoh|strong="H6547"\w* \w will|strong="H1320"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H5921"\w* \w head|strong="H7218"\w* \w from|strong="H5921"\w* \w off|strong="H5921"\w* \w you|strong="H5921"\w*, \w and|strong="H3117"\w* \w will|strong="H1320"\w* \w hang|strong="H8518"\w* \w you|strong="H5921"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w tree|strong="H6086"\w*; \w and|strong="H3117"\w* \w the|strong="H5921"\w* \w birds|strong="H5775"\w* \w will|strong="H1320"\w* eat \w your|strong="H5921"\w* \w flesh|strong="H1320"\w* \w from|strong="H5921"\w* \w off|strong="H5921"\w* \w you|strong="H5921"\w*.” +\v 20 \w On|strong="H3117"\w* \w the|strong="H3605"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*, \w which|strong="H8269"\w* \w was|strong="H1961"\w* \w Pharaoh|strong="H6547"\w*’s \w birthday|strong="H3205"\w*, \w he|strong="H3117"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w feast|strong="H4960"\w* \w for|strong="H6213"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w*, \w and|strong="H3117"\w* \w he|strong="H3117"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w the|strong="H3605"\w* \w head|strong="H7218"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w chief|strong="H7218"\w* cup \w bearer|strong="H5375"\w* \w and|strong="H3117"\w* \w the|strong="H3605"\w* \w head|strong="H7218"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w chief|strong="H7218"\w* baker \w among|strong="H8432"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w*. +\v 21 \w He|strong="H5414"\w* \w restored|strong="H7725"\w* \w the|strong="H5921"\w* \w chief|strong="H8269"\w* \w cup|strong="H3563"\w* bearer \w to|strong="H7725"\w* \w his|strong="H5414"\w* position \w again|strong="H7725"\w*, \w and|strong="H7725"\w* \w he|strong="H5414"\w* \w gave|strong="H5414"\w* \w the|strong="H5921"\w* \w cup|strong="H3563"\w* \w into|strong="H7725"\w* \w Pharaoh|strong="H6547"\w*’s \w hand|strong="H3709"\w*; +\v 22 but \w he|strong="H3130"\w* \w hanged|strong="H8518"\w* \w the|strong="H8518"\w* \w chief|strong="H8269"\w* baker, as \w Joseph|strong="H3130"\w* \w had|strong="H3130"\w* \w interpreted|strong="H6622"\w* \w to|strong="H3130"\w* \w them|strong="H8518"\w*. +\v 23 \w Yet|strong="H3808"\w* \w the|strong="H2142"\w* \w chief|strong="H8269"\w* cup bearer didn’t \w remember|strong="H2142"\w* \w Joseph|strong="H3130"\w*, \w but|strong="H3808"\w* \w forgot|strong="H7911"\w* \w him|strong="H2142"\w*. +\c 41 +\p +\v 1 \w At|strong="H5921"\w* \w the|strong="H5921"\w* \w end|strong="H7093"\w* \w of|strong="H3117"\w* two \w full|strong="H3117"\w* \w years|strong="H8141"\w*, \w Pharaoh|strong="H6547"\w* \w dreamed|strong="H2492"\w*, \w and|strong="H3117"\w* \w behold|strong="H2009"\w*, \w he|strong="H3117"\w* \w stood|strong="H5975"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w river|strong="H2975"\w*. +\v 2 \w Behold|strong="H2009"\w*, \w seven|strong="H7651"\w* cattle \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w river|strong="H2975"\w*. \w They|strong="H5927"\w* \w were|strong="H2009"\w* \w sleek|strong="H3303"\w* \w and|strong="H5927"\w* \w fat|strong="H1277"\w*, \w and|strong="H5927"\w* \w they|strong="H5927"\w* \w fed|strong="H7462"\w* \w in|strong="H1320"\w* \w the|strong="H4480"\w* marsh grass. +\v 3 \w Behold|strong="H2009"\w*, \w seven|strong="H7651"\w* \w other|strong="H8193"\w* cattle \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w after|strong="H4480"\w* \w them|strong="H5921"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H5921"\w* \w river|strong="H2975"\w*, \w ugly|strong="H7451"\w* \w and|strong="H5975"\w* \w thin|strong="H1851"\w*, \w and|strong="H5975"\w* \w stood|strong="H5975"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w other|strong="H8193"\w* cattle \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w brink|strong="H8193"\w* \w of|strong="H4480"\w* \w the|strong="H5921"\w* \w river|strong="H2975"\w*. +\v 4 \w The|strong="H7451"\w* \w ugly|strong="H7451"\w* \w and|strong="H6547"\w* \w thin|strong="H1851"\w* cattle ate up \w the|strong="H7451"\w* \w seven|strong="H7651"\w* \w sleek|strong="H3303"\w* \w and|strong="H6547"\w* \w fat|strong="H1277"\w* cattle. So \w Pharaoh|strong="H6547"\w* \w awoke|strong="H3364"\w*. +\v 5 \w He|strong="H2009"\w* \w slept|strong="H3462"\w* \w and|strong="H5927"\w* \w dreamed|strong="H2492"\w* \w a|strong="H3068"\w* \w second|strong="H8145"\w* \w time|strong="H8145"\w*; \w and|strong="H5927"\w* \w behold|strong="H2009"\w*, \w seven|strong="H7651"\w* \w heads|strong="H7641"\w* \w of|strong="H2896"\w* \w grain|strong="H7641"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w on|strong="H5927"\w* \w one|strong="H2896"\w* \w stalk|strong="H7070"\w*, \w healthy|strong="H1277"\w* \w and|strong="H5927"\w* \w good|strong="H2896"\w*. +\v 6 \w Behold|strong="H2009"\w*, \w seven|strong="H7651"\w* \w heads|strong="H7641"\w* \w of|strong="H7641"\w* \w grain|strong="H7641"\w*, \w thin|strong="H1851"\w* \w and|strong="H7651"\w* \w blasted|strong="H7710"\w* with \w the|strong="H2009"\w* \w east|strong="H6921"\w* \w wind|strong="H6921"\w*, \w sprung|strong="H6779"\w* \w up|strong="H6779"\w* \w after|strong="H6779"\w* them. +\v 7 \w The|strong="H2009"\w* \w thin|strong="H1851"\w* \w heads|strong="H7641"\w* \w of|strong="H4392"\w* \w grain|strong="H7641"\w* \w swallowed|strong="H1104"\w* \w up|strong="H1104"\w* \w the|strong="H2009"\w* \w seven|strong="H7651"\w* \w healthy|strong="H1277"\w* \w and|strong="H6547"\w* \w full|strong="H4392"\w* \w ears|strong="H7641"\w*. \w Pharaoh|strong="H6547"\w* \w awoke|strong="H3364"\w*, \w and|strong="H6547"\w* \w behold|strong="H2009"\w*, \w it|strong="H2009"\w* \w was|strong="H6547"\w* \w a|strong="H3068"\w* \w dream|strong="H2472"\w*. +\v 8 \w In|strong="H7121"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w*, \w his|strong="H3605"\w* \w spirit|strong="H7307"\w* \w was|strong="H1961"\w* \w troubled|strong="H6470"\w*, \w and|strong="H7971"\w* \w he|strong="H3605"\w* \w sent|strong="H7971"\w* \w and|strong="H7971"\w* \w called|strong="H7121"\w* \w for|strong="H7121"\w* \w all|strong="H3605"\w* \w of|strong="H7307"\w* \w Egypt|strong="H4714"\w*’s \w magicians|strong="H2748"\w* \w and|strong="H7971"\w* \w wise|strong="H2450"\w* \w men|strong="H2450"\w*. \w Pharaoh|strong="H6547"\w* \w told|strong="H5608"\w* \w them|strong="H7971"\w* \w his|strong="H3605"\w* \w dreams|strong="H2472"\w*, \w but|strong="H1961"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w who|strong="H3605"\w* could \w interpret|strong="H6622"\w* \w them|strong="H7971"\w* \w to|strong="H7971"\w* \w Pharaoh|strong="H6547"\w*. +\p +\v 9 \w Then|strong="H1696"\w* \w the|strong="H3117"\w* \w chief|strong="H8269"\w* cup bearer \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Pharaoh|strong="H6547"\w*, \w saying|strong="H1696"\w*, “\w I|strong="H3117"\w* \w remember|strong="H2142"\w* \w my|strong="H2142"\w* \w faults|strong="H2399"\w* \w today|strong="H3117"\w*. +\v 10 \w Pharaoh|strong="H6547"\w* \w was|strong="H1004"\w* \w angry|strong="H7107"\w* \w with|strong="H1004"\w* \w his|strong="H5414"\w* \w servants|strong="H5650"\w*, \w and|strong="H1004"\w* \w put|strong="H5414"\w* \w me|strong="H5414"\w* \w in|strong="H5921"\w* \w custody|strong="H4929"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w captain|strong="H8269"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w guard|strong="H2876"\w*, \w with|strong="H1004"\w* \w the|strong="H5921"\w* \w chief|strong="H8269"\w* baker. +\v 11 We \w dreamed|strong="H2492"\w* \w a|strong="H3068"\w* \w dream|strong="H2472"\w* \w in|strong="H2472"\w* \w one|strong="H1931"\w* \w night|strong="H3915"\w*, \w he|strong="H1931"\w* \w and|strong="H3915"\w* I. \w Each|strong="H2492"\w* man \w dreamed|strong="H2492"\w* according \w to|strong="H3915"\w* \w the|strong="H3915"\w* \w interpretation|strong="H6623"\w* \w of|strong="H2492"\w* \w his|strong="H1931"\w* \w dream|strong="H2472"\w*. +\v 12 \w There|strong="H8033"\w* \w was|strong="H5288"\w* \w with|strong="H8033"\w* \w us|strong="H5608"\w* \w there|strong="H8033"\w* \w a|strong="H3068"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w*, \w a|strong="H3068"\w* \w Hebrew|strong="H5680"\w*, \w servant|strong="H5650"\w* \w to|strong="H5650"\w* \w the|strong="H5650"\w* \w captain|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H5650"\w* \w guard|strong="H2876"\w*, \w and|strong="H5650"\w* \w we|strong="H3068"\w* \w told|strong="H5608"\w* \w him|strong="H5608"\w*, \w and|strong="H5650"\w* \w he|strong="H8033"\w* \w interpreted|strong="H6622"\w* \w to|strong="H5650"\w* \w us|strong="H5608"\w* \w our|strong="H5650"\w* \w dreams|strong="H2472"\w*. \w He|strong="H8033"\w* \w interpreted|strong="H6622"\w* \w to|strong="H5650"\w* each \w man|strong="H5288"\w* according \w to|strong="H5650"\w* \w his|strong="H5608"\w* \w dream|strong="H2472"\w*. +\v 13 \w As|strong="H1961"\w* \w he|strong="H3651"\w* \w interpreted|strong="H6622"\w* \w to|strong="H7725"\w* \w us|strong="H7725"\w*, \w so|strong="H3651"\w* \w it|strong="H5921"\w* \w was|strong="H1961"\w*. \w He|strong="H3651"\w* \w restored|strong="H7725"\w* \w me|strong="H7725"\w* \w to|strong="H7725"\w* \w my|strong="H5921"\w* \w office|strong="H3653"\w*, \w and|strong="H7725"\w* \w he|strong="H3651"\w* \w hanged|strong="H8518"\w* \w him|strong="H5921"\w*.” +\p +\v 14 \w Then|strong="H7971"\w* \w Pharaoh|strong="H6547"\w* \w sent|strong="H7971"\w* \w and|strong="H7971"\w* \w called|strong="H7121"\w* \w Joseph|strong="H3130"\w*, \w and|strong="H7971"\w* \w they|strong="H7323"\w* \w brought|strong="H7323"\w* \w him|strong="H7121"\w* \w hastily|strong="H7323"\w* \w out|strong="H7971"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* dungeon. \w He|strong="H4480"\w* \w shaved|strong="H1548"\w* \w himself|strong="H7121"\w*, \w changed|strong="H2498"\w* \w his|strong="H7121"\w* \w clothing|strong="H8071"\w*, \w and|strong="H7971"\w* \w came|strong="H3130"\w* \w in|strong="H7121"\w* \w to|strong="H7971"\w* \w Pharaoh|strong="H6547"\w*. +\v 15 \w Pharaoh|strong="H6547"\w* \w said|strong="H8085"\w* \w to|strong="H5921"\w* \w Joseph|strong="H3130"\w*, “\w I|strong="H5921"\w* \w have|strong="H5921"\w* \w dreamed|strong="H2492"\w* \w a|strong="H3068"\w* \w dream|strong="H2472"\w*, \w and|strong="H8085"\w* there \w is|strong="H3130"\w* no \w one|strong="H8085"\w* \w who|strong="H6547"\w* can \w interpret|strong="H6622"\w* \w it|strong="H5921"\w*. \w I|strong="H5921"\w* \w have|strong="H5921"\w* \w heard|strong="H8085"\w* \w it|strong="H5921"\w* \w said|strong="H8085"\w* \w of|strong="H5921"\w* \w you|strong="H5921"\w*, \w that|strong="H8085"\w* \w when|strong="H8085"\w* \w you|strong="H5921"\w* \w hear|strong="H8085"\w* \w a|strong="H3068"\w* \w dream|strong="H2472"\w* \w you|strong="H5921"\w* can \w interpret|strong="H6622"\w* \w it|strong="H5921"\w*.” +\p +\v 16 \w Joseph|strong="H3130"\w* \w answered|strong="H6030"\w* \w Pharaoh|strong="H6547"\w*, saying, “\w It|strong="H7965"\w* isn’t \w in|strong="H6547"\w* \w me|strong="H6030"\w*. God \w will|strong="H6547"\w* \w give|strong="H6030"\w* \w Pharaoh|strong="H6547"\w* \w an|strong="H6030"\w* \w answer|strong="H6030"\w* \w of|strong="H7965"\w* \w peace|strong="H7965"\w*.” +\p +\v 17 \w Pharaoh|strong="H6547"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Joseph|strong="H3130"\w*, “\w In|strong="H5921"\w* \w my|strong="H5921"\w* \w dream|strong="H2472"\w*, \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w stood|strong="H5975"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w brink|strong="H8193"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w river|strong="H2975"\w*; +\v 18 \w and|strong="H5927"\w* \w behold|strong="H2009"\w*, \w seven|strong="H7651"\w* \w fat|strong="H1277"\w* \w and|strong="H5927"\w* \w sleek|strong="H3303"\w* cattle \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w river|strong="H2975"\w*. \w They|strong="H5927"\w* \w fed|strong="H7462"\w* \w in|strong="H1320"\w* \w the|strong="H4480"\w* marsh grass; +\v 19 \w and|strong="H4714"\w* \w behold|strong="H2009"\w*, \w seven|strong="H7651"\w* \w other|strong="H3605"\w* cattle \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w after|strong="H5927"\w* \w them|strong="H7200"\w*, \w poor|strong="H1803"\w* \w and|strong="H4714"\w* \w very|strong="H3966"\w* \w ugly|strong="H7451"\w* \w and|strong="H4714"\w* \w thin|strong="H7534"\w*, \w such|strong="H2007"\w* \w as|strong="H5927"\w* \w I|strong="H2009"\w* \w never|strong="H3808"\w* \w saw|strong="H7200"\w* \w in|strong="H1320"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H3605"\w* \w Egypt|strong="H4714"\w* \w for|strong="H4714"\w* \w ugliness|strong="H7455"\w*. +\v 20 \w The|strong="H7534"\w* \w thin|strong="H7534"\w* \w and|strong="H7223"\w* \w ugly|strong="H7451"\w* cattle ate up \w the|strong="H7534"\w* \w first|strong="H7223"\w* \w seven|strong="H7651"\w* \w fat|strong="H1277"\w* cattle; +\v 21 \w and|strong="H3045"\w* \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3588"\w* eaten \w them|strong="H3588"\w* up, \w it|strong="H3588"\w* couldn’t \w be|strong="H3808"\w* \w known|strong="H3045"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3588"\w* eaten \w them|strong="H3588"\w*, \w but|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H7451"\w* \w still|strong="H4758"\w* \w ugly|strong="H7451"\w*, \w as|strong="H3588"\w* \w at|strong="H3808"\w* \w the|strong="H3588"\w* \w beginning|strong="H8462"\w*. \w So|strong="H3808"\w* \w I|strong="H3588"\w* \w awoke|strong="H3364"\w*. +\v 22 \w I|strong="H2009"\w* \w saw|strong="H7200"\w* \w in|strong="H5927"\w* \w my|strong="H7200"\w* \w dream|strong="H2472"\w*, \w and|strong="H7200"\w* \w behold|strong="H2009"\w*, \w seven|strong="H7651"\w* \w heads|strong="H7641"\w* \w of|strong="H4392"\w* \w grain|strong="H7641"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w on|strong="H7200"\w* \w one|strong="H2896"\w* \w stalk|strong="H7070"\w*, \w full|strong="H4392"\w* \w and|strong="H7200"\w* \w good|strong="H2896"\w*; +\v 23 \w and|strong="H7651"\w* \w behold|strong="H2009"\w*, \w seven|strong="H7651"\w* \w heads|strong="H7641"\w* \w of|strong="H7641"\w* \w grain|strong="H7641"\w*, \w withered|strong="H6798"\w*, \w thin|strong="H1851"\w*, \w and|strong="H7651"\w* \w blasted|strong="H7710"\w* with \w the|strong="H2009"\w* \w east|strong="H6921"\w* \w wind|strong="H6921"\w*, \w sprung|strong="H6779"\w* \w up|strong="H6779"\w* \w after|strong="H6779"\w* them. +\v 24 \w The|strong="H5046"\w* \w thin|strong="H1851"\w* \w heads|strong="H7641"\w* \w of|strong="H2748"\w* \w grain|strong="H7641"\w* \w swallowed|strong="H1104"\w* \w up|strong="H1104"\w* \w the|strong="H5046"\w* \w seven|strong="H7651"\w* \w good|strong="H2896"\w* \w heads|strong="H7641"\w* \w of|strong="H2748"\w* \w grain|strong="H7641"\w*. \w I|strong="H5046"\w* \w told|strong="H5046"\w* \w it|strong="H2896"\w* \w to|strong="H5046"\w* \w the|strong="H5046"\w* \w magicians|strong="H2748"\w*, \w but|strong="H1104"\w* there \w was|strong="H2896"\w* no \w one|strong="H2896"\w* \w who|strong="H2896"\w* could \w explain|strong="H5046"\w* \w it|strong="H2896"\w* \w to|strong="H5046"\w* \w me|strong="H5046"\w*.” +\p +\v 25 \w Joseph|strong="H3130"\w* said \w to|strong="H6213"\w* \w Pharaoh|strong="H6547"\w*, “\w The|strong="H6213"\w* \w dream|strong="H2472"\w* \w of|strong="H6213"\w* \w Pharaoh|strong="H6547"\w* \w is|strong="H1931"\w* \w one|strong="H1931"\w*. \w What|strong="H6213"\w* God \w is|strong="H1931"\w* \w about|strong="H6213"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w he|strong="H1931"\w* \w has|strong="H6213"\w* \w declared|strong="H5046"\w* \w to|strong="H6213"\w* \w Pharaoh|strong="H6547"\w*. +\v 26 \w The|strong="H8141"\w* \w seven|strong="H7651"\w* \w good|strong="H2896"\w* cattle \w are|strong="H8141"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w*; \w and|strong="H8141"\w* \w the|strong="H8141"\w* \w seven|strong="H7651"\w* \w good|strong="H2896"\w* \w heads|strong="H7641"\w* \w of|strong="H8141"\w* \w grain|strong="H7641"\w* \w are|strong="H8141"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w*. \w The|strong="H8141"\w* \w dream|strong="H2472"\w* \w is|strong="H1931"\w* \w one|strong="H1931"\w*. +\v 27 \w The|strong="H5927"\w* \w seven|strong="H7651"\w* \w thin|strong="H7534"\w* \w and|strong="H8141"\w* \w ugly|strong="H7451"\w* cattle \w that|strong="H8141"\w* \w came|strong="H1961"\w* \w up|strong="H5927"\w* \w after|strong="H1961"\w* \w them|strong="H2007"\w* \w are|strong="H8141"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w*, \w and|strong="H8141"\w* also \w the|strong="H5927"\w* \w seven|strong="H7651"\w* \w empty|strong="H7386"\w* \w heads|strong="H7641"\w* \w of|strong="H8141"\w* \w grain|strong="H7641"\w* \w blasted|strong="H7710"\w* \w with|strong="H5927"\w* \w the|strong="H5927"\w* \w east|strong="H6921"\w* \w wind|strong="H6921"\w*; \w they|strong="H2007"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w* \w of|strong="H8141"\w* \w famine|strong="H7458"\w*. +\v 28 \w That|strong="H7200"\w* \w is|strong="H1931"\w* \w the|strong="H7200"\w* \w thing|strong="H1697"\w* \w which|strong="H1931"\w* \w I|strong="H1697"\w* \w have|strong="H7200"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w Pharaoh|strong="H6547"\w*. God \w has|strong="H1697"\w* \w shown|strong="H7200"\w* \w Pharaoh|strong="H6547"\w* \w what|strong="H1697"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w about|strong="H1697"\w* \w to|strong="H1696"\w* \w do|strong="H6213"\w*. +\v 29 \w Behold|strong="H2009"\w*, \w seven|strong="H7651"\w* \w years|strong="H8141"\w* \w of|strong="H8141"\w* \w great|strong="H1419"\w* \w plenty|strong="H7647"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H8141"\w* \w Egypt|strong="H4714"\w* \w are|strong="H8141"\w* \w coming|strong="H2009"\w*. +\v 30 \w Seven|strong="H7651"\w* \w years|strong="H8141"\w* \w of|strong="H8141"\w* \w famine|strong="H7458"\w* \w will|strong="H4714"\w* \w arise|strong="H6965"\w* \w after|strong="H6965"\w* \w them|strong="H3615"\w*, \w and|strong="H6965"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w plenty|strong="H7647"\w* \w will|strong="H4714"\w* \w be|strong="H8141"\w* \w forgotten|strong="H7911"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* land \w of|strong="H8141"\w* \w Egypt|strong="H4714"\w*. \w The|strong="H3605"\w* \w famine|strong="H7458"\w* \w will|strong="H4714"\w* \w consume|strong="H3615"\w* \w the|strong="H3605"\w* land, +\v 31 \w and|strong="H6440"\w* \w the|strong="H6440"\w* \w plenty|strong="H7647"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w known|strong="H3045"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w by|strong="H3808"\w* \w reason|strong="H6440"\w* \w of|strong="H6440"\w* \w that|strong="H3588"\w* \w famine|strong="H7458"\w* \w which|strong="H1931"\w* \w follows|strong="H3651"\w*; \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w very|strong="H3966"\w* \w grievous|strong="H3515"\w*. +\v 32 \w The|strong="H5921"\w* \w dream|strong="H2472"\w* \w was|strong="H1697"\w* \w doubled|strong="H8138"\w* \w to|strong="H5921"\w* \w Pharaoh|strong="H6547"\w*, \w because|strong="H3588"\w* \w the|strong="H5921"\w* \w thing|strong="H1697"\w* \w is|strong="H1697"\w* \w established|strong="H3559"\w* \w by|strong="H5921"\w* God, \w and|strong="H6213"\w* God \w will|strong="H1697"\w* \w shortly|strong="H4116"\w* \w bring|strong="H6213"\w* \w it|strong="H5921"\w* \w to|strong="H5921"\w* \w pass|strong="H6213"\w*. +\p +\v 33 “\w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* \w let|strong="H6258"\w* \w Pharaoh|strong="H6547"\w* \w look|strong="H7200"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* discreet \w and|strong="H4714"\w* \w wise|strong="H2450"\w* \w man|strong="H2450"\w*, \w and|strong="H4714"\w* \w set|strong="H7896"\w* \w him|strong="H5921"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H5921"\w* \w Egypt|strong="H4714"\w*. +\v 34 \w Let|strong="H6485"\w* \w Pharaoh|strong="H6547"\w* \w do|strong="H6213"\w* \w this|strong="H6213"\w*, \w and|strong="H4714"\w* \w let|strong="H6485"\w* \w him|strong="H5921"\w* \w appoint|strong="H6485"\w* \w overseers|strong="H6496"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* land, \w and|strong="H4714"\w* \w take|strong="H6213"\w* \w up|strong="H5921"\w* \w the|strong="H5921"\w* \w fifth|strong="H2567"\w* \w part|strong="H2567"\w* \w of|strong="H8141"\w* \w the|strong="H5921"\w* land \w of|strong="H8141"\w* \w Egypt|strong="H4714"\w*’s \w produce|strong="H6213"\w* \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w seven|strong="H7651"\w* \w plenteous|strong="H7647"\w* \w years|strong="H8141"\w*. +\v 35 Let \w them|strong="H3027"\w* \w gather|strong="H6908"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* food \w of|strong="H3027"\w* \w these|strong="H3605"\w* \w good|strong="H2896"\w* \w years|strong="H8141"\w* \w that|strong="H3605"\w* \w come|strong="H5892"\w*, \w and|strong="H3027"\w* \w store|strong="H6651"\w* \w grain|strong="H1250"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w Pharaoh|strong="H6547"\w* \w for|strong="H8478"\w* food \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w*, \w and|strong="H3027"\w* let \w them|strong="H3027"\w* \w keep|strong="H8104"\w* \w it|strong="H8104"\w*. +\v 36 \w The|strong="H3772"\w* food \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w to|strong="H1961"\w* supply \w the|strong="H3772"\w* land \w against|strong="H4714"\w* \w the|strong="H3772"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w* \w of|strong="H8141"\w* \w famine|strong="H7458"\w*, which \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w in|strong="H8141"\w* \w the|strong="H3772"\w* land \w of|strong="H8141"\w* \w Egypt|strong="H4714"\w*; \w so|strong="H1961"\w* \w that|strong="H8141"\w* \w the|strong="H3772"\w* land \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w perish|strong="H3772"\w* through \w the|strong="H3772"\w* \w famine|strong="H7458"\w*.” +\p +\v 37 \w The|strong="H3605"\w* \w thing|strong="H1697"\w* \w was|strong="H1697"\w* \w good|strong="H3190"\w* \w in|strong="H5650"\w* \w the|strong="H3605"\w* \w eyes|strong="H5869"\w* \w of|strong="H1697"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H5869"\w* \w in|strong="H5650"\w* \w the|strong="H3605"\w* \w eyes|strong="H5869"\w* \w of|strong="H1697"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w*. +\v 38 \w Pharaoh|strong="H6547"\w* said \w to|strong="H5650"\w* \w his|strong="H4672"\w* \w servants|strong="H5650"\w*, “\w Can|strong="H5650"\w* \w we|strong="H3068"\w* \w find|strong="H4672"\w* \w such|strong="H2088"\w* \w a|strong="H3068"\w* \w one|strong="H2088"\w* \w as|strong="H5650"\w* \w this|strong="H2088"\w*, \w a|strong="H3068"\w* \w man|strong="H2088"\w* \w in|strong="H4672"\w* whom \w is|strong="H2088"\w* \w the|strong="H4672"\w* \w Spirit|strong="H7307"\w* \w of|strong="H7307"\w* God?” +\v 39 \w Pharaoh|strong="H6547"\w* said \w to|strong="H3045"\w* \w Joseph|strong="H3130"\w*, “\w Because|strong="H3605"\w* God \w has|strong="H3045"\w* \w shown|strong="H3045"\w* \w you|strong="H3605"\w* \w all|strong="H3605"\w* \w of|strong="H3605"\w* \w this|strong="H2063"\w*, \w there|strong="H3605"\w* \w is|strong="H3605"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w so|strong="H2063"\w* discreet \w and|strong="H6547"\w* \w wise|strong="H2450"\w* \w as|strong="H3644"\w* \w you|strong="H3605"\w*. +\v 40 \w You|strong="H3605"\w* \w shall|strong="H5971"\w* \w be|strong="H1961"\w* \w over|strong="H5921"\w* \w my|strong="H3605"\w* \w house|strong="H1004"\w*. \w All|strong="H3605"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w ruled|strong="H5401"\w* \w according|strong="H5921"\w* \w to|strong="H1961"\w* \w your|strong="H3605"\w* \w word|strong="H6310"\w*. \w Only|strong="H7535"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w throne|strong="H3678"\w* \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w greater|strong="H1431"\w* \w than|strong="H4480"\w* \w you|strong="H3605"\w*.” +\v 41 \w Pharaoh|strong="H6547"\w* said \w to|strong="H5921"\w* \w Joseph|strong="H3130"\w*, “\w Behold|strong="H7200"\w*, \w I|strong="H5414"\w* \w have|strong="H7200"\w* \w set|strong="H5414"\w* \w you|strong="H5414"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H5921"\w* \w Egypt|strong="H4714"\w*.” +\v 42 \w Pharaoh|strong="H6547"\w* \w took|strong="H5493"\w* \w off|strong="H5493"\w* \w his|strong="H5414"\w* \w signet|strong="H2885"\w* \w ring|strong="H2885"\w* \w from|strong="H5493"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w Joseph|strong="H3130"\w*’s \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w arrayed|strong="H3847"\w* \w him|strong="H5414"\w* \w in|strong="H5921"\w* robes \w of|strong="H3027"\w* \w fine|strong="H8336"\w* \w linen|strong="H8336"\w*, \w and|strong="H3027"\w* \w put|strong="H5414"\w* \w a|strong="H3068"\w* \w gold|strong="H2091"\w* \w chain|strong="H7242"\w* \w about|strong="H5921"\w* \w his|strong="H5414"\w* \w neck|strong="H6677"\w*. +\v 43 \w He|strong="H3605"\w* \w made|strong="H5414"\w* \w him|strong="H5414"\w* \w ride|strong="H7392"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w second|strong="H4932"\w* \w chariot|strong="H4818"\w* \w which|strong="H3605"\w* \w he|strong="H3605"\w* \w had|strong="H5414"\w*. \w They|strong="H5921"\w* \w cried|strong="H7121"\w* \w before|strong="H6440"\w* \w him|strong="H5414"\w*, “Bow \w the|strong="H3605"\w* knee!” \w He|strong="H3605"\w* \w set|strong="H5414"\w* \w him|strong="H5414"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w of|strong="H6440"\w* \w Egypt|strong="H4714"\w*. +\v 44 \w Pharaoh|strong="H6547"\w* said \w to|strong="H3027"\w* \w Joseph|strong="H3130"\w*, “\w I|strong="H4714"\w* am \w Pharaoh|strong="H6547"\w*. \w Without|strong="H3808"\w* \w you|strong="H3605"\w*, \w no|strong="H3808"\w* \w man|strong="H3605"\w* \w shall|strong="H4714"\w* \w lift|strong="H7311"\w* \w up|strong="H7311"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w* \w or|strong="H3808"\w* \w his|strong="H3605"\w* \w foot|strong="H7272"\w* \w in|strong="H3027"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H3027"\w* \w Egypt|strong="H4714"\w*.” +\v 45 \w Pharaoh|strong="H6547"\w* \w called|strong="H7121"\w* \w Joseph|strong="H3130"\w*’s \w name|strong="H8034"\w* \w Zaphenath-Paneah|strong="H6847"\w*. \w He|strong="H5414"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* Asenath, \w the|strong="H5921"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Potiphera|strong="H6319"\w* \w priest|strong="H3548"\w* \w of|strong="H1323"\w* \w On|strong="H5921"\w* \w as|strong="H3318"\w* \w a|strong="H3068"\w* wife. \w Joseph|strong="H3130"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H1323"\w* \w Egypt|strong="H4714"\w*. +\p +\v 46 \w Joseph|strong="H3130"\w* \w was|strong="H4428"\w* \w thirty|strong="H7970"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H3318"\w* \w he|strong="H3605"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w Pharaoh|strong="H6547"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*. \w Joseph|strong="H3130"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w the|strong="H3605"\w* \w presence|strong="H6440"\w* \w of|strong="H1121"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H1121"\w* \w went|strong="H3318"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*. +\v 47 \w In|strong="H8141"\w* \w the|strong="H6213"\w* \w seven|strong="H7651"\w* \w plenteous|strong="H7647"\w* \w years|strong="H8141"\w* \w the|strong="H6213"\w* earth \w produced|strong="H6213"\w* \w abundantly|strong="H7062"\w*. +\v 48 \w He|strong="H3605"\w* \w gathered|strong="H6908"\w* \w up|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* food \w of|strong="H8141"\w* \w the|strong="H3605"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w* \w which|strong="H5892"\w* \w were|strong="H1961"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w land|strong="H7704"\w* \w of|strong="H8141"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H5892"\w* \w laid|strong="H5414"\w* \w up|strong="H5414"\w* \w the|strong="H3605"\w* food \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w*. \w He|strong="H3605"\w* \w stored|strong="H5414"\w* food \w in|strong="H8141"\w* \w each|strong="H3605"\w* \w city|strong="H5892"\w* \w from|strong="H1961"\w* \w the|strong="H3605"\w* \w fields|strong="H7704"\w* \w around|strong="H5439"\w* \w that|strong="H3605"\w* \w city|strong="H5892"\w*. +\v 49 \w Joseph|strong="H3130"\w* laid \w up|strong="H6651"\w* \w grain|strong="H1250"\w* \w as|strong="H5704"\w* \w the|strong="H3588"\w* \w sand|strong="H2344"\w* \w of|strong="H4557"\w* \w the|strong="H3588"\w* \w sea|strong="H3220"\w*, \w very|strong="H3966"\w* \w much|strong="H7235"\w*, \w until|strong="H5704"\w* \w he|strong="H3588"\w* \w stopped|strong="H2308"\w* \w counting|strong="H4557"\w*, \w for|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H3130"\w* \w without|strong="H3588"\w* \w number|strong="H4557"\w*. +\v 50 \w To|strong="H3205"\w* \w Joseph|strong="H3130"\w* \w were|strong="H1121"\w* \w born|strong="H3205"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w* \w before|strong="H2962"\w* \w the|strong="H3205"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w famine|strong="H7458"\w* \w came|strong="H1323"\w*, whom Asenath, \w the|strong="H3205"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Potiphera|strong="H6319"\w* \w priest|strong="H3548"\w* \w of|strong="H1121"\w* \w On|strong="H3205"\w*, \w bore|strong="H3205"\w* \w to|strong="H3205"\w* \w him|strong="H3205"\w*. +\v 51 \w Joseph|strong="H3130"\w* \w called|strong="H7121"\w* \w the|strong="H3605"\w* \w name|strong="H8034"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w Manasseh|strong="H4519"\w*,\f + \fr 41:51 \ft “Manasseh” sounds like the Hebrew for “forget”.\f* “\w For|strong="H3588"\w*”, \w he|strong="H3588"\w* \w said|strong="H7121"\w*, “God \w has|strong="H3588"\w* \w made|strong="H3130"\w* \w me|strong="H7121"\w* \w forget|strong="H5382"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w toil|strong="H5999"\w*, \w and|strong="H1004"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* father’s \w house|strong="H1004"\w*.” +\v 52 \w The|strong="H3588"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w the|strong="H3588"\w* \w second|strong="H8145"\w*, \w he|strong="H3588"\w* \w called|strong="H7121"\w* \w Ephraim|strong="H8034"\w*:\f + \fr 41:52 \ft “Ephraim” sounds like the Hebrew for “twice fruitful”.\f* “\w For|strong="H3588"\w* God \w has|strong="H3588"\w* \w made|strong="H7121"\w* \w me|strong="H7121"\w* \w fruitful|strong="H6509"\w* \w in|strong="H8034"\w* \w the|strong="H3588"\w* land \w of|strong="H8034"\w* \w my|strong="H3588"\w* \w affliction|strong="H6040"\w*.” +\p +\v 53 \w The|strong="H1961"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w* \w of|strong="H8141"\w* \w plenty|strong="H7647"\w*, \w that|strong="H8141"\w* \w were|strong="H1961"\w* \w in|strong="H8141"\w* \w the|strong="H1961"\w* land \w of|strong="H8141"\w* \w Egypt|strong="H4714"\w*, \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w an|strong="H1961"\w* \w end|strong="H3615"\w*. +\v 54 \w The|strong="H3605"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w* \w of|strong="H8141"\w* \w famine|strong="H7458"\w* \w began|strong="H2490"\w* \w to|strong="H1961"\w* \w come|strong="H1961"\w*, \w just|strong="H3605"\w* \w as|strong="H1961"\w* \w Joseph|strong="H3130"\w* \w had|strong="H1961"\w* said. \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w famine|strong="H7458"\w* \w in|strong="H8141"\w* \w all|strong="H3605"\w* lands, \w but|strong="H1961"\w* \w in|strong="H8141"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H8141"\w* \w Egypt|strong="H4714"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w bread|strong="H3899"\w*. +\v 55 \w When|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H5971"\w* \w Egypt|strong="H4714"\w* \w was|strong="H6547"\w* \w famished|strong="H7456"\w*, \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w cried|strong="H6817"\w* \w to|strong="H3212"\w* \w Pharaoh|strong="H6547"\w* \w for|strong="H6213"\w* \w bread|strong="H3899"\w*, \w and|strong="H3212"\w* \w Pharaoh|strong="H6547"\w* said \w to|strong="H3212"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Egyptians|strong="H4714"\w*, “\w Go|strong="H3212"\w* \w to|strong="H3212"\w* \w Joseph|strong="H3130"\w*. \w What|strong="H6213"\w* \w he|strong="H6213"\w* says \w to|strong="H3212"\w* \w you|strong="H3605"\w*, \w do|strong="H6213"\w*.” +\v 56 \w The|strong="H3605"\w* \w famine|strong="H7458"\w* \w was|strong="H1961"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* earth. \w Joseph|strong="H3130"\w* \w opened|strong="H6605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* store houses, \w and|strong="H4714"\w* \w sold|strong="H7666"\w* \w to|strong="H1961"\w* \w the|strong="H3605"\w* \w Egyptians|strong="H4714"\w*. \w The|strong="H3605"\w* \w famine|strong="H7458"\w* \w was|strong="H1961"\w* \w severe|strong="H2388"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w of|strong="H6440"\w* \w Egypt|strong="H4714"\w*. +\v 57 \w All|strong="H3605"\w* countries \w came|strong="H4714"\w* \w into|strong="H4714"\w* \w Egypt|strong="H4714"\w*, \w to|strong="H4714"\w* \w Joseph|strong="H3130"\w*, \w to|strong="H4714"\w* \w buy|strong="H7666"\w* \w grain|strong="H3605"\w*, \w because|strong="H3588"\w* \w the|strong="H3605"\w* \w famine|strong="H7458"\w* \w was|strong="H7458"\w* \w severe|strong="H2388"\w* \w in|strong="H7458"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth. +\c 42 +\p +\v 1 \w Now|strong="H3588"\w* \w Jacob|strong="H3290"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w there|strong="H3426"\w* \w was|strong="H1121"\w* \w grain|strong="H7668"\w* \w in|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H1121"\w* \w Jacob|strong="H3290"\w* said \w to|strong="H4714"\w* \w his|strong="H7200"\w* \w sons|strong="H1121"\w*, “\w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H3588"\w* \w look|strong="H7200"\w* \w at|strong="H7200"\w* \w one|strong="H1121"\w* \w another|strong="H7200"\w*?” +\v 2 \w He|strong="H3588"\w* \w said|strong="H8085"\w*, “\w Behold|strong="H2009"\w*, \w I|strong="H3588"\w* \w have|strong="H3426"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w there|strong="H8033"\w* \w is|strong="H3426"\w* \w grain|strong="H7668"\w* \w in|strong="H4191"\w* \w Egypt|strong="H4714"\w*. \w Go|strong="H3381"\w* \w down|strong="H3381"\w* \w there|strong="H8033"\w*, \w and|strong="H4714"\w* \w buy|strong="H7666"\w* \w for|strong="H3588"\w* \w us|strong="H3588"\w* \w from|strong="H3381"\w* \w there|strong="H8033"\w*, \w so|strong="H3808"\w* \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w may|strong="H4714"\w* \w live|strong="H2421"\w*, \w and|strong="H4714"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*.” +\v 3 \w Joseph|strong="H3130"\w*’s \w ten|strong="H6235"\w* brothers \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w buy|strong="H7666"\w* \w grain|strong="H1250"\w* \w from|strong="H3381"\w* \w Egypt|strong="H4714"\w*. +\v 4 \w But|strong="H3588"\w* \w Jacob|strong="H3290"\w* didn’t \w send|strong="H7971"\w* \w Benjamin|strong="H1144"\w*, \w Joseph|strong="H3130"\w*’s brother, \w with|strong="H7971"\w* \w his|strong="H7971"\w* brothers; \w for|strong="H3588"\w* \w he|strong="H3588"\w* said, “\w Lest|strong="H6435"\w* \w perhaps|strong="H3588"\w* \w harm|strong="H7971"\w* \w happen|strong="H7122"\w* \w to|strong="H7971"\w* \w him|strong="H7971"\w*.” +\v 5 \w The|strong="H3588"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w came|strong="H1961"\w* \w to|strong="H3478"\w* \w buy|strong="H7666"\w* \w among|strong="H8432"\w* \w those|strong="H1121"\w* \w who|strong="H1121"\w* \w came|strong="H1961"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w famine|strong="H7458"\w* \w was|strong="H1961"\w* \w in|strong="H3478"\w* \w the|strong="H3588"\w* land \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*. +\v 6 \w Joseph|strong="H3130"\w* \w was|strong="H1931"\w* \w the|strong="H3605"\w* \w governor|strong="H7989"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* land. \w It|strong="H1931"\w* \w was|strong="H1931"\w* \w he|strong="H1931"\w* \w who|strong="H3605"\w* \w sold|strong="H7666"\w* \w to|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H5971"\w* \w the|strong="H3605"\w* land. \w Joseph|strong="H3130"\w*’s brothers \w came|strong="H5971"\w*, \w and|strong="H5971"\w* \w bowed|strong="H7812"\w* \w themselves|strong="H7812"\w* \w down|strong="H7812"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w* \w with|strong="H5921"\w* \w their|strong="H3605"\w* \w faces|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H3605"\w* earth. +\v 7 \w Joseph|strong="H3130"\w* \w saw|strong="H7200"\w* \w his|strong="H7200"\w* brothers, \w and|strong="H7200"\w* \w he|strong="H1696"\w* \w recognized|strong="H5234"\w* \w them|strong="H7200"\w*, \w but|strong="H7200"\w* acted like \w a|strong="H3068"\w* stranger \w to|strong="H1696"\w* \w them|strong="H7200"\w*, \w and|strong="H7200"\w* \w spoke|strong="H1696"\w* \w roughly|strong="H7186"\w* \w with|strong="H1696"\w* \w them|strong="H7200"\w*. \w He|strong="H1696"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H7200"\w*, “Where \w did|strong="H7200"\w* \w you|strong="H7200"\w* come \w from|strong="H7200"\w*?” +\p \w They|strong="H3667"\w* \w said|strong="H1696"\w*, “\w From|strong="H7200"\w* \w the|strong="H7200"\w* land \w of|strong="H1696"\w* \w Canaan|strong="H3667"\w*, \w to|strong="H1696"\w* \w buy|strong="H7666"\w* food.” +\p +\v 8 \w Joseph|strong="H3130"\w* \w recognized|strong="H5234"\w* \w his|strong="H3808"\w* brothers, \w but|strong="H3808"\w* \w they|strong="H1992"\w* didn’t \w recognize|strong="H5234"\w* \w him|strong="H3130"\w*. +\v 9 \w Joseph|strong="H3130"\w* \w remembered|strong="H2142"\w* \w the|strong="H7200"\w* \w dreams|strong="H2472"\w* which \w he|strong="H3130"\w* \w dreamed|strong="H2492"\w* \w about|strong="H3130"\w* \w them|strong="H7200"\w*, \w and|strong="H7200"\w* said \w to|strong="H7200"\w* \w them|strong="H7200"\w*, “\w You|strong="H7200"\w* \w are|strong="H2472"\w* \w spies|strong="H7270"\w*! \w You|strong="H7200"\w* \w have|strong="H7200"\w* \w come|strong="H2142"\w* \w to|strong="H7200"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w nakedness|strong="H6172"\w* \w of|strong="H7200"\w* \w the|strong="H7200"\w* land.” +\p +\v 10 \w They|strong="H3808"\w* said \w to|strong="H5650"\w* him, “\w No|strong="H3808"\w*, \w my|strong="H5650"\w* lord, \w but|strong="H3808"\w* \w your|strong="H3808"\w* \w servants|strong="H5650"\w* \w have|strong="H5650"\w* come \w to|strong="H5650"\w* \w buy|strong="H7666"\w* food. +\v 11 \w We|strong="H5168"\w* \w are|strong="H1121"\w* \w all|strong="H3605"\w* \w one|strong="H3605"\w* \w man|strong="H1121"\w*’s \w sons|strong="H1121"\w*; \w we|strong="H3068"\w* \w are|strong="H1121"\w* honest \w men|strong="H1121"\w*. \w Your|strong="H3605"\w* \w servants|strong="H5650"\w* \w are|strong="H1121"\w* \w not|strong="H3808"\w* \w spies|strong="H7270"\w*.” +\p +\v 12 \w He|strong="H3588"\w* said \w to|strong="H7200"\w* \w them|strong="H7200"\w*, “\w No|strong="H3808"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H7200"\w* come \w to|strong="H7200"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w nakedness|strong="H6172"\w* \w of|strong="H3808"\w* \w the|strong="H7200"\w* land!” +\p +\v 13 \w They|strong="H3117"\w* said, “\w We|strong="H3117"\w*, \w your|strong="H3117"\w* \w servants|strong="H5650"\w*, \w are|strong="H3117"\w* \w twelve|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w the|strong="H3117"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w one|strong="H1121"\w* \w man|strong="H1121"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* land \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*; \w and|strong="H1121"\w* \w behold|strong="H2009"\w*, \w the|strong="H3117"\w* \w youngest|strong="H6996"\w* \w is|strong="H3117"\w* \w today|strong="H3117"\w* \w with|strong="H3117"\w* \w our|strong="H5650"\w* \w father|strong="H1121"\w*, \w and|strong="H1121"\w* \w one|strong="H1121"\w* \w is|strong="H3117"\w* no more.” +\p +\v 14 \w Joseph|strong="H3130"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H1931"\w*, “\w It|strong="H1931"\w* \w is|strong="H1931"\w* like I \w told|strong="H1696"\w* \w you|strong="H1696"\w*, \w saying|strong="H1696"\w*, ‘\w You|strong="H1696"\w* \w are|strong="H3130"\w* \w spies|strong="H7270"\w*!’ +\v 15 \w By|strong="H3318"\w* \w this|strong="H2088"\w* \w you|strong="H3588"\w* \w shall|strong="H6547"\w* \w be|strong="H2416"\w* tested. \w By|strong="H3318"\w* \w the|strong="H3588"\w* \w life|strong="H2416"\w* \w of|strong="H3318"\w* \w Pharaoh|strong="H6547"\w*, \w you|strong="H3588"\w* \w shall|strong="H6547"\w* \w not|strong="H2088"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w here|strong="H2088"\w*, \w unless|strong="H3588"\w* \w your|strong="H3588"\w* \w youngest|strong="H6996"\w* brother \w comes|strong="H3318"\w* \w here|strong="H2088"\w*. +\v 16 \w Send|strong="H7971"\w* \w one|strong="H3808"\w* \w of|strong="H1697"\w* \w you|strong="H3588"\w*, \w and|strong="H7971"\w* \w let|strong="H7971"\w* \w him|strong="H7971"\w* \w get|strong="H3947"\w* \w your|strong="H3947"\w* brother, \w and|strong="H7971"\w* \w you|strong="H3588"\w* \w shall|strong="H3808"\w* \w be|strong="H3808"\w* bound, \w that|strong="H3588"\w* \w your|strong="H3947"\w* \w words|strong="H1697"\w* \w may|strong="H2416"\w* \w be|strong="H3808"\w* tested, \w whether|strong="H4480"\w* \w there|strong="H4480"\w* \w is|strong="H1697"\w* \w truth|strong="H3808"\w* \w in|strong="H1697"\w* \w you|strong="H3588"\w*, \w or|strong="H3808"\w* \w else|strong="H3808"\w* \w by|strong="H7971"\w* \w the|strong="H3588"\w* \w life|strong="H2416"\w* \w of|strong="H1697"\w* \w Pharaoh|strong="H6547"\w* \w surely|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H1697"\w* \w spies|strong="H7270"\w*.” +\v 17 \w He|strong="H3117"\w* put \w them|strong="H3117"\w* \w all|strong="H3117"\w* together into \w custody|strong="H4929"\w* \w for|strong="H3117"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*. +\p +\v 18 \w Joseph|strong="H3130"\w* said \w to|strong="H6213"\w* \w them|strong="H6213"\w* \w the|strong="H6213"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*, “\w Do|strong="H6213"\w* \w this|strong="H2063"\w*, \w and|strong="H3117"\w* \w live|strong="H2421"\w*, \w for|strong="H6213"\w* \w I|strong="H3117"\w* \w fear|strong="H3372"\w* God. +\v 19 \w If|strong="H3651"\w* \w you|strong="H3651"\w* \w are|strong="H1004"\w* honest men, \w then|strong="H3651"\w* \w let|strong="H3651"\w* \w one|strong="H3651"\w* \w of|strong="H1004"\w* \w your|strong="H3651"\w* brothers \w be|strong="H1004"\w* bound \w in|strong="H1004"\w* \w your|strong="H3651"\w* \w prison|strong="H1004"\w*; \w but|strong="H3651"\w* \w you|strong="H3651"\w* \w go|strong="H3212"\w*, \w carry|strong="H3212"\w* \w grain|strong="H7668"\w* \w for|strong="H1004"\w* \w the|strong="H3651"\w* \w famine|strong="H7459"\w* \w of|strong="H1004"\w* \w your|strong="H3651"\w* \w houses|strong="H1004"\w*. +\v 20 \w Bring|strong="H6213"\w* \w your|strong="H6213"\w* \w youngest|strong="H6996"\w* brother \w to|strong="H4191"\w* \w me|strong="H6213"\w*; \w so|strong="H3651"\w* \w will|strong="H1697"\w* \w your|strong="H6213"\w* \w words|strong="H1697"\w* \w be|strong="H4191"\w* verified, \w and|strong="H6213"\w* \w you|strong="H6213"\w* won’t \w die|strong="H4191"\w*.” +\p \w They|strong="H3651"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*. +\v 21 \w They|strong="H3651"\w* \w said|strong="H8085"\w* \w to|strong="H5921"\w* \w one|strong="H3808"\w* \w another|strong="H7200"\w*, “\w We|strong="H8085"\w* \w are|strong="H6869"\w* \w certainly|strong="H3808"\w* guilty \w concerning|strong="H5921"\w* \w our|strong="H7200"\w* brother, \w in|strong="H5921"\w* \w that|strong="H7200"\w* \w we|strong="H3068"\w* \w saw|strong="H7200"\w* \w the|strong="H5921"\w* \w distress|strong="H6869"\w* \w of|strong="H5921"\w* \w his|strong="H8085"\w* \w soul|strong="H5315"\w*, \w when|strong="H7200"\w* \w he|strong="H3651"\w* \w begged|strong="H2603"\w* \w us|strong="H5921"\w*, \w and|strong="H8085"\w* \w we|strong="H3068"\w* wouldn’t \w listen|strong="H8085"\w*. \w Therefore|strong="H3651"\w* \w this|strong="H2063"\w* \w distress|strong="H6869"\w* \w has|strong="H5315"\w* come \w upon|strong="H5921"\w* \w us|strong="H5921"\w*.” +\v 22 \w Reuben|strong="H7205"\w* \w answered|strong="H6030"\w* \w them|strong="H6030"\w*, saying, “Didn’t \w I|strong="H2009"\w* \w tell|strong="H8085"\w* \w you|strong="H3808"\w*, saying, ‘Don’t \w sin|strong="H2398"\w* \w against|strong="H2398"\w* \w the|strong="H8085"\w* \w child|strong="H3206"\w*,’ \w and|strong="H6030"\w* \w you|strong="H3808"\w* wouldn’t \w listen|strong="H8085"\w*? \w Therefore|strong="H1571"\w* \w also|strong="H1571"\w*, \w behold|strong="H2009"\w*, \w his|strong="H8085"\w* \w blood|strong="H1818"\w* \w is|strong="H1571"\w* \w required|strong="H1875"\w*.” +\v 23 \w They|strong="H1992"\w* didn’t \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Joseph|strong="H3130"\w* \w understood|strong="H3045"\w* \w them|strong="H1992"\w*; \w for|strong="H3588"\w* \w there|strong="H1992"\w* \w was|strong="H3130"\w* \w an|strong="H3588"\w* \w interpreter|strong="H3887"\w* \w between|strong="H3045"\w* \w them|strong="H1992"\w*. +\v 24 \w He|strong="H5921"\w* \w turned|strong="H7725"\w* himself \w away|strong="H7725"\w* \w from|strong="H7725"\w* \w them|strong="H5921"\w*, \w and|strong="H7725"\w* \w wept|strong="H1058"\w*. \w Then|strong="H1696"\w* \w he|strong="H5921"\w* \w returned|strong="H7725"\w* \w to|strong="H1696"\w* \w them|strong="H5921"\w*, \w and|strong="H7725"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H5921"\w*, \w and|strong="H7725"\w* \w took|strong="H3947"\w* \w Simeon|strong="H8095"\w* \w from|strong="H7725"\w* \w among|strong="H5921"\w* \w them|strong="H5921"\w*, \w and|strong="H7725"\w* bound \w him|strong="H5921"\w* \w before|strong="H5869"\w* \w their|strong="H3947"\w* \w eyes|strong="H5869"\w*. +\v 25 \w Then|strong="H3651"\w* \w Joseph|strong="H3130"\w* \w gave|strong="H5414"\w* \w a|strong="H3068"\w* \w command|strong="H6680"\w* \w to|strong="H7725"\w* \w fill|strong="H4390"\w* \w their|strong="H5414"\w* \w bags|strong="H3627"\w* \w with|strong="H4390"\w* \w grain|strong="H1250"\w*, \w and|strong="H3701"\w* \w to|strong="H7725"\w* \w restore|strong="H7725"\w* \w each|strong="H5414"\w* man’s \w money|strong="H3701"\w* \w into|strong="H7725"\w* \w his|strong="H5414"\w* \w sack|strong="H8242"\w*, \w and|strong="H3701"\w* \w to|strong="H7725"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w food|strong="H6720"\w* \w for|strong="H6213"\w* \w the|strong="H5414"\w* \w way|strong="H1870"\w*. \w So|strong="H3651"\w* \w it|strong="H5414"\w* \w was|strong="H3130"\w* \w done|strong="H6213"\w* \w to|strong="H7725"\w* \w them|strong="H5414"\w*. +\p +\v 26 \w They|strong="H8033"\w* \w loaded|strong="H5375"\w* \w their|strong="H5375"\w* \w donkeys|strong="H2543"\w* \w with|strong="H5921"\w* \w their|strong="H5375"\w* \w grain|strong="H7668"\w*, \w and|strong="H3212"\w* \w departed|strong="H3212"\w* \w from|strong="H5921"\w* \w there|strong="H8033"\w*. +\v 27 \w As|strong="H5414"\w* \w one|strong="H1931"\w* \w of|strong="H6310"\w* \w them|strong="H5414"\w* \w opened|strong="H6605"\w* \w his|strong="H5414"\w* \w sack|strong="H8242"\w* \w to|strong="H5414"\w* \w give|strong="H5414"\w* \w his|strong="H5414"\w* \w donkey|strong="H2543"\w* \w food|strong="H4554"\w* \w in|strong="H5414"\w* \w the|strong="H7200"\w* \w lodging|strong="H4411"\w* \w place|strong="H5414"\w*, \w he|strong="H1931"\w* \w saw|strong="H7200"\w* \w his|strong="H5414"\w* \w money|strong="H3701"\w*. \w Behold|strong="H2009"\w*, \w it|strong="H5414"\w* \w was|strong="H1931"\w* \w in|strong="H5414"\w* \w the|strong="H7200"\w* \w mouth|strong="H6310"\w* \w of|strong="H6310"\w* \w his|strong="H5414"\w* \w sack|strong="H8242"\w*. +\v 28 \w He|strong="H6213"\w* \w said|strong="H3318"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* brothers, “\w My|strong="H7725"\w* \w money|strong="H3701"\w* \w is|strong="H3820"\w* \w restored|strong="H7725"\w*! \w Behold|strong="H2009"\w*, \w it|strong="H6213"\w* \w is|strong="H3820"\w* \w in|strong="H6213"\w* \w my|strong="H7725"\w* sack!” \w Their|strong="H7725"\w* \w hearts|strong="H3820"\w* \w failed|strong="H3318"\w* \w them|strong="H7725"\w*, \w and|strong="H3701"\w* \w they|strong="H4100"\w* \w turned|strong="H7725"\w* \w trembling|strong="H2729"\w* \w to|strong="H7725"\w* \w one|strong="H6213"\w* \w another|strong="H1571"\w*, saying, “\w What|strong="H4100"\w* \w is|strong="H3820"\w* \w this|strong="H2063"\w* \w that|strong="H6213"\w* God \w has|strong="H3820"\w* \w done|strong="H6213"\w* \w to|strong="H7725"\w* \w us|strong="H7725"\w*?” +\v 29 \w They|strong="H3605"\w* came \w to|strong="H5046"\w* \w Jacob|strong="H3290"\w* \w their|strong="H3605"\w* father, \w to|strong="H5046"\w* \w the|strong="H3605"\w* land \w of|strong="H3605"\w* \w Canaan|strong="H3667"\w*, \w and|strong="H3290"\w* \w told|strong="H5046"\w* \w him|strong="H5046"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w had|strong="H3290"\w* \w happened|strong="H7136"\w* \w to|strong="H5046"\w* \w them|strong="H5046"\w*, saying, +\v 30 “\w The|strong="H5414"\w* man, \w the|strong="H5414"\w* lord \w of|strong="H1696"\w* \w the|strong="H5414"\w* land, \w spoke|strong="H1696"\w* \w roughly|strong="H7186"\w* \w with|strong="H1696"\w* \w us|strong="H5414"\w*, \w and|strong="H1696"\w* \w took|strong="H5414"\w* \w us|strong="H5414"\w* \w for|strong="H5414"\w* \w spies|strong="H7270"\w* \w of|strong="H1696"\w* \w the|strong="H5414"\w* country. +\v 31 We \w said|strong="H3651"\w* \w to|strong="H1961"\w* \w him|strong="H1961"\w*, ‘We \w are|strong="H1961"\w* honest men. We \w are|strong="H1961"\w* \w no|strong="H3808"\w* \w spies|strong="H7270"\w*. +\v 32 \w We|strong="H3117"\w* \w are|strong="H3117"\w* \w twelve|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w sons|strong="H1121"\w* \w of|strong="H1121"\w* our \w father|strong="H1121"\w*; \w one|strong="H1121"\w* \w is|strong="H3117"\w* no more, \w and|strong="H1121"\w* \w the|strong="H3117"\w* \w youngest|strong="H6996"\w* \w is|strong="H3117"\w* \w today|strong="H3117"\w* \w with|strong="H3117"\w* our \w father|strong="H1121"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* land \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*.’ +\v 33 \w The|strong="H3588"\w* \w man|strong="H3045"\w*, \w the|strong="H3588"\w* lord \w of|strong="H1004"\w* \w the|strong="H3588"\w* land, \w said|strong="H3651"\w* \w to|strong="H3212"\w* \w us|strong="H3045"\w*, ‘\w By|strong="H3212"\w* \w this|strong="H2063"\w* \w I|strong="H3588"\w* \w will|strong="H1004"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H1004"\w* honest \w men|strong="H3947"\w*: \w leave|strong="H3240"\w* \w one|strong="H3588"\w* \w of|strong="H1004"\w* \w your|strong="H3947"\w* brothers \w with|strong="H1004"\w* \w me|strong="H3947"\w*, \w and|strong="H3212"\w* \w take|strong="H3947"\w* \w grain|strong="H7459"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w famine|strong="H7459"\w* \w of|strong="H1004"\w* \w your|strong="H3947"\w* \w houses|strong="H1004"\w*, \w and|strong="H3212"\w* \w go|strong="H3212"\w* \w your|strong="H3947"\w* \w way|strong="H3212"\w*. +\v 34 \w Bring|strong="H5414"\w* \w your|strong="H5414"\w* \w youngest|strong="H6996"\w* brother \w to|strong="H5414"\w* \w me|strong="H5414"\w*. \w Then|strong="H3651"\w* \w I|strong="H3588"\w* \w will|strong="H5414"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H3045"\w* \w not|strong="H3808"\w* \w spies|strong="H7270"\w*, \w but|strong="H3588"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H3045"\w* honest men. \w So|strong="H3651"\w* \w I|strong="H3588"\w* \w will|strong="H5414"\w* \w deliver|strong="H5414"\w* \w your|strong="H5414"\w* brother \w to|strong="H5414"\w* \w you|strong="H3588"\w*, \w and|strong="H3045"\w* \w you|strong="H3588"\w* \w shall|strong="H3808"\w* \w trade|strong="H5503"\w* \w in|strong="H5414"\w* \w the|strong="H3588"\w* land.’” +\p +\v 35 \w As|strong="H1961"\w* \w they|strong="H1992"\w* \w emptied|strong="H7324"\w* \w their|strong="H1992"\w* \w sacks|strong="H8242"\w*, \w behold|strong="H2009"\w*, each \w man|strong="H7200"\w*’s \w bundle|strong="H6872"\w* \w of|strong="H3372"\w* \w money|strong="H3701"\w* \w was|strong="H1961"\w* \w in|strong="H3701"\w* \w his|strong="H7200"\w* \w sack|strong="H8242"\w*. \w When|strong="H1961"\w* \w they|strong="H1992"\w* \w and|strong="H3701"\w* \w their|strong="H1992"\w* father \w saw|strong="H7200"\w* \w their|strong="H1992"\w* \w bundles|strong="H6872"\w* \w of|strong="H3372"\w* \w money|strong="H3701"\w*, \w they|strong="H1992"\w* \w were|strong="H1961"\w* \w afraid|strong="H3372"\w*. +\v 36 \w Jacob|strong="H3290"\w*, \w their|strong="H3605"\w* father, said \w to|strong="H1961"\w* \w them|strong="H5921"\w*, “\w You|strong="H3605"\w* \w have|strong="H1961"\w* \w bereaved|strong="H7921"\w* \w me|strong="H5921"\w* \w of|strong="H5921"\w* \w my|strong="H3605"\w* \w children|strong="H7921"\w*! \w Joseph|strong="H3130"\w* \w is|strong="H3605"\w* \w no|strong="H3605"\w* \w more|strong="H5921"\w*, \w Simeon|strong="H8095"\w* \w is|strong="H3605"\w* \w no|strong="H3605"\w* \w more|strong="H5921"\w*, \w and|strong="H3290"\w* \w you|strong="H3605"\w* want \w to|strong="H1961"\w* \w take|strong="H3947"\w* \w Benjamin|strong="H1144"\w* \w away|strong="H3947"\w*. \w All|strong="H3605"\w* \w these|strong="H3947"\w* \w things|strong="H3605"\w* \w are|strong="H1961"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*.” +\p +\v 37 \w Reuben|strong="H7205"\w* spoke \w to|strong="H7725"\w* \w his|strong="H5414"\w* \w father|strong="H1121"\w*, saying, “\w Kill|strong="H4191"\w* \w my|strong="H5414"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w*, \w if|strong="H1121"\w* \w I|strong="H5414"\w* don’t \w bring|strong="H7725"\w* \w him|strong="H5414"\w* \w to|strong="H7725"\w* \w you|strong="H5414"\w*. \w Entrust|strong="H5414"\w* \w him|strong="H5414"\w* \w to|strong="H7725"\w* \w my|strong="H5414"\w* \w care|strong="H3027"\w*, \w and|strong="H1121"\w* \w I|strong="H5414"\w* \w will|strong="H1121"\w* \w bring|strong="H7725"\w* \w him|strong="H5414"\w* \w to|strong="H7725"\w* \w you|strong="H5414"\w* \w again|strong="H7725"\w*.” +\p +\v 38 \w He|strong="H1931"\w* said, “\w My|strong="H3588"\w* \w son|strong="H1121"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w go|strong="H3212"\w* \w down|strong="H3381"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*; \w for|strong="H3588"\w* \w his|strong="H3588"\w* brother \w is|strong="H1931"\w* \w dead|strong="H4191"\w*, \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w only|strong="H3588"\w* \w is|strong="H1931"\w* \w left|strong="H7604"\w*. \w If|strong="H3588"\w* harm happens \w to|strong="H3381"\w* \w him|strong="H5973"\w* \w along|strong="H5973"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w in|strong="H4191"\w* \w which|strong="H1931"\w* \w you|strong="H3588"\w* \w go|strong="H3212"\w*, \w then|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H1121"\w* \w bring|strong="H3381"\w* \w down|strong="H3381"\w* \w my|strong="H3588"\w* \w gray|strong="H7872"\w* \w hairs|strong="H7872"\w* \w with|strong="H5973"\w* \w sorrow|strong="H3015"\w* \w to|strong="H3381"\w* \w Sheol|strong="H7585"\w*.”\f + \fr 42:38 \ft Sheol is the place of the dead.\f* +\c 43 +\p +\v 1 The \w famine|strong="H7458"\w* \w was|strong="H7458"\w* \w severe|strong="H3515"\w* \w in|strong="H7458"\w* the land. +\v 2 \w When|strong="H1961"\w* they \w had|strong="H1961"\w* eaten \w up|strong="H3615"\w* \w the|strong="H7725"\w* \w grain|strong="H7668"\w* which they \w had|strong="H1961"\w* \w brought|strong="H7725"\w* \w out|strong="H7725"\w* \w of|strong="H3615"\w* \w Egypt|strong="H4714"\w*, \w their|strong="H7725"\w* father said \w to|strong="H7725"\w* \w them|strong="H7725"\w*, “\w Go|strong="H7725"\w* \w again|strong="H7725"\w*, \w buy|strong="H7666"\w* \w us|strong="H7725"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w more|strong="H7725"\w* food.” +\p +\v 3 \w Judah|strong="H3063"\w* spoke \w to|strong="H6440"\w* \w him|strong="H6440"\w*, saying, “\w The|strong="H6440"\w* \w man|strong="H6440"\w* \w solemnly|strong="H5749"\w* \w warned|strong="H5749"\w* \w us|strong="H6440"\w*, saying, ‘\w You|strong="H6440"\w* \w shall|strong="H3063"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w* \w my|strong="H7200"\w* \w face|strong="H6440"\w*, \w unless|strong="H1115"\w* \w your|strong="H6440"\w* brother \w is|strong="H6440"\w* \w with|strong="H6440"\w* \w you|strong="H6440"\w*.’ +\v 4 \w If|strong="H3426"\w* \w you|strong="H7971"\w*’ll \w send|strong="H7971"\w* \w our|strong="H7971"\w* brother \w with|strong="H3381"\w* \w us|strong="H7971"\w*, \w we|strong="H3068"\w*’ll \w go|strong="H7971"\w* \w down|strong="H3381"\w* \w and|strong="H7971"\w* \w buy|strong="H7666"\w* \w you|strong="H7971"\w* food; +\v 5 \w but|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* don’t \w send|strong="H7971"\w* \w him|strong="H6440"\w*, \w we|strong="H3068"\w* won’t \w go|strong="H7971"\w* \w down|strong="H3381"\w*, \w for|strong="H3588"\w* \w the|strong="H6440"\w* \w man|strong="H6440"\w* said \w to|strong="H3381"\w* \w us|strong="H6440"\w*, ‘\w You|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w* \w my|strong="H7200"\w* \w face|strong="H6440"\w*, \w unless|strong="H3588"\w* \w your|strong="H6440"\w* brother \w is|strong="H6440"\w* \w with|strong="H3381"\w* \w you|strong="H3588"\w*.’” +\p +\v 6 \w Israel|strong="H3478"\w* said, “\w Why|strong="H4100"\w* \w did|strong="H4100"\w* \w you|strong="H5046"\w* \w treat|strong="H7489"\w* \w me|strong="H5046"\w* \w so|strong="H7489"\w* \w badly|strong="H7489"\w*, \w telling|strong="H5046"\w* \w the|strong="H5046"\w* man \w that|strong="H3478"\w* \w you|strong="H5046"\w* \w had|strong="H3478"\w* \w another|strong="H5750"\w* brother?” +\p +\v 7 \w They|strong="H3588"\w* \w said|strong="H1697"\w*, “\w The|strong="H5921"\w* \w man|strong="H3045"\w* \w asked|strong="H7592"\w* directly \w concerning|strong="H5921"\w* \w ourselves|strong="H4138"\w*, \w and|strong="H1697"\w* \w concerning|strong="H5921"\w* \w our|strong="H5921"\w* \w relatives|strong="H4138"\w*, \w saying|strong="H1697"\w*, ‘\w Is|strong="H3426"\w* \w your|strong="H5921"\w* father \w still|strong="H5750"\w* \w alive|strong="H2416"\w*? \w Have|strong="H3426"\w* \w you|strong="H3588"\w* \w another|strong="H5750"\w* brother?’ \w We|strong="H3588"\w* \w just|strong="H1697"\w* \w answered|strong="H5046"\w* \w his|strong="H5921"\w* \w questions|strong="H1697"\w*. \w Is|strong="H3426"\w* \w there|strong="H3426"\w* \w any|strong="H5750"\w* \w way|strong="H1697"\w* \w we|strong="H3068"\w* \w could|strong="H3045"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w would|strong="H1697"\w* \w say|strong="H6310"\w*, ‘\w Bring|strong="H3381"\w* \w your|strong="H5921"\w* brother \w down|strong="H3381"\w*’?” +\p +\v 8 \w Judah|strong="H3063"\w* said \w to|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w his|strong="H7971"\w* father, “\w Send|strong="H7971"\w* \w the|strong="H7971"\w* \w boy|strong="H5288"\w* \w with|strong="H3212"\w* \w me|strong="H7971"\w*, \w and|strong="H3063"\w* \w we|strong="H3068"\w*’ll \w get|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H3063"\w* \w go|strong="H3212"\w*, \w so|strong="H7971"\w* \w that|strong="H3478"\w* \w we|strong="H3068"\w* \w may|strong="H3478"\w* \w live|strong="H2421"\w*, \w and|strong="H3063"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*, \w both|strong="H1571"\w* \w we|strong="H3068"\w*, \w and|strong="H3063"\w* \w you|strong="H7971"\w*, \w and|strong="H3063"\w* \w also|strong="H1571"\w* \w our|strong="H7971"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*. +\v 9 \w I|strong="H3117"\w*’ll \w be|strong="H3808"\w* \w collateral|strong="H6148"\w* \w for|strong="H6440"\w* \w him|strong="H6440"\w*. \w From|strong="H6440"\w* \w my|strong="H3605"\w* \w hand|strong="H3027"\w* \w will|strong="H3027"\w* \w you|strong="H6440"\w* \w require|strong="H1245"\w* \w him|strong="H6440"\w*. \w If|strong="H2398"\w* \w I|strong="H3117"\w* don’t \w bring|strong="H2398"\w* \w him|strong="H6440"\w* \w to|strong="H6440"\w* \w you|strong="H6440"\w*, \w and|strong="H3117"\w* \w set|strong="H3322"\w* \w him|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w then|strong="H3808"\w* \w let|strong="H3808"\w* \w me|strong="H6440"\w* \w bear|strong="H2398"\w* \w the|strong="H3605"\w* \w blame|strong="H2398"\w* \w forever|strong="H3605"\w*; +\v 10 \w for|strong="H3588"\w* \w if|strong="H3588"\w* \w we|strong="H3068"\w* hadn’t \w delayed|strong="H4102"\w*, \w surely|strong="H3588"\w* \w we|strong="H3068"\w* would \w have|strong="H6258"\w* \w returned|strong="H7725"\w* \w a|strong="H3068"\w* second \w time|strong="H6471"\w* \w by|strong="H7725"\w* \w now|strong="H6258"\w*.” +\p +\v 11 \w Their|strong="H3947"\w* father, \w Israel|strong="H3478"\w*, \w said|strong="H3651"\w* \w to|strong="H3381"\w* \w them|strong="H6213"\w*, “\w If|strong="H3651"\w* \w it|strong="H6213"\w* \w must|strong="H3947"\w* \w be|strong="H3478"\w* \w so|strong="H3651"\w*, \w then|strong="H3947"\w* \w do|strong="H6213"\w* \w this|strong="H2063"\w*: \w Take|strong="H3947"\w* \w from|strong="H3381"\w* \w the|strong="H3947"\w* choice \w fruits|strong="H2173"\w* \w of|strong="H3627"\w* \w the|strong="H3947"\w* land \w in|strong="H3478"\w* \w your|strong="H3947"\w* \w bags|strong="H3627"\w*, \w and|strong="H3478"\w* \w carry|strong="H6213"\w* \w down|strong="H3381"\w* \w a|strong="H3068"\w* \w present|strong="H4503"\w* \w for|strong="H6213"\w* \w the|strong="H3947"\w* man, \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w balm|strong="H6875"\w*, \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w honey|strong="H1706"\w*, \w spices|strong="H5219"\w* \w and|strong="H3478"\w* \w myrrh|strong="H3910"\w*, nuts, \w and|strong="H3478"\w* \w almonds|strong="H8247"\w*; +\v 12 \w and|strong="H3701"\w* \w take|strong="H3947"\w* \w double|strong="H4932"\w* \w money|strong="H3701"\w* \w in|strong="H7725"\w* \w your|strong="H3947"\w* \w hand|strong="H3027"\w*, \w and|strong="H3701"\w* \w take|strong="H3947"\w* \w back|strong="H7725"\w* \w the|strong="H3947"\w* \w money|strong="H3701"\w* \w that|strong="H1931"\w* \w was|strong="H1931"\w* \w returned|strong="H7725"\w* \w in|strong="H7725"\w* \w the|strong="H3947"\w* \w mouth|strong="H6310"\w* \w of|strong="H3027"\w* \w your|strong="H3947"\w* sacks. Perhaps \w it|strong="H1931"\w* \w was|strong="H1931"\w* \w an|strong="H3947"\w* \w oversight|strong="H4870"\w*. +\v 13 \w Take|strong="H3947"\w* \w your|strong="H3947"\w* brother also, \w get|strong="H3947"\w* \w up|strong="H6965"\w*, \w and|strong="H6965"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H3947"\w* man. +\v 14 \w May|strong="H5414"\w* \w God|strong="H5414"\w* \w Almighty|strong="H7706"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w mercy|strong="H7356"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w man|strong="H6440"\w*, \w that|strong="H5414"\w* \w he|strong="H5414"\w* \w may|strong="H5414"\w* \w release|strong="H7971"\w* \w to|strong="H7971"\w* \w you|strong="H5414"\w* \w your|strong="H5414"\w* other brother \w and|strong="H7971"\w* \w Benjamin|strong="H1144"\w*. If \w I|strong="H5414"\w* am \w bereaved|strong="H7921"\w* \w of|strong="H6440"\w* \w my|strong="H5414"\w* \w children|strong="H7921"\w*, \w I|strong="H5414"\w* am \w bereaved|strong="H7921"\w*.” +\p +\v 15 \w The|strong="H6440"\w* \w men|strong="H3947"\w* \w took|strong="H3947"\w* \w that|strong="H3027"\w* \w present|strong="H4503"\w*, \w and|strong="H6965"\w* \w they|strong="H6440"\w* \w took|strong="H3947"\w* \w double|strong="H4932"\w* \w money|strong="H3701"\w* \w in|strong="H6440"\w* \w their|strong="H3947"\w* \w hand|strong="H3027"\w*, \w and|strong="H6965"\w* \w Benjamin|strong="H1144"\w*; \w and|strong="H6965"\w* \w got|strong="H6965"\w* \w up|strong="H6965"\w*, \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H6965"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w Joseph|strong="H3130"\w*. +\v 16 \w When|strong="H3588"\w* \w Joseph|strong="H3130"\w* \w saw|strong="H7200"\w* \w Benjamin|strong="H1144"\w* \w with|strong="H1004"\w* \w them|strong="H5921"\w*, \w he|strong="H3588"\w* said \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w steward|strong="H1004"\w* \w of|strong="H1004"\w* \w his|strong="H5921"\w* \w house|strong="H1004"\w*, “Bring \w the|strong="H5921"\w* men \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*, \w and|strong="H1004"\w* butcher \w an|strong="H7200"\w* \w animal|strong="H2874"\w*, \w and|strong="H1004"\w* \w prepare|strong="H3559"\w*; \w for|strong="H3588"\w* \w the|strong="H5921"\w* men \w will|strong="H1004"\w* dine \w with|strong="H1004"\w* \w me|strong="H7200"\w* \w at|strong="H5921"\w* \w noon|strong="H6672"\w*.” +\p +\v 17 \w The|strong="H6213"\w* man \w did|strong="H6213"\w* \w as|strong="H6213"\w* \w Joseph|strong="H3130"\w* commanded, \w and|strong="H1004"\w* \w the|strong="H6213"\w* man \w brought|strong="H6213"\w* \w the|strong="H6213"\w* \w men|strong="H6213"\w* \w to|strong="H6213"\w* \w Joseph|strong="H3130"\w*’s \w house|strong="H1004"\w*. +\v 18 \w The|strong="H5921"\w* \w men|strong="H5650"\w* \w were|strong="H1697"\w* \w afraid|strong="H3372"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H1697"\w* \w brought|strong="H7725"\w* \w to|strong="H7725"\w* \w Joseph|strong="H3130"\w*’s \w house|strong="H1004"\w*; \w and|strong="H3701"\w* \w they|strong="H3588"\w* \w said|strong="H1697"\w*, “\w Because|strong="H3588"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w money|strong="H3701"\w* \w that|strong="H3588"\w* \w was|strong="H1697"\w* \w returned|strong="H7725"\w* \w in|strong="H5921"\w* \w our|strong="H5921"\w* sacks \w the|strong="H5921"\w* \w first|strong="H8462"\w* \w time|strong="H8462"\w*, \w we|strong="H3068"\w*’re \w brought|strong="H7725"\w* \w in|strong="H5921"\w*; \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w may|strong="H7725"\w* \w seek|strong="H1556"\w* \w occasion|strong="H1556"\w* \w against|strong="H5921"\w* \w us|strong="H7725"\w*, attack \w us|strong="H7725"\w*, \w and|strong="H3701"\w* \w seize|strong="H3947"\w* \w us|strong="H7725"\w* \w as|strong="H1697"\w* \w slaves|strong="H5650"\w*, \w along|strong="H5921"\w* \w with|strong="H1004"\w* \w our|strong="H5921"\w* \w donkeys|strong="H2543"\w*.” +\v 19 \w They|strong="H5921"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H1696"\w* \w the|strong="H5921"\w* \w steward|strong="H1004"\w* \w of|strong="H1004"\w* \w Joseph|strong="H3130"\w*’s \w house|strong="H1004"\w*, \w and|strong="H1004"\w* \w they|strong="H5921"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5921"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w door|strong="H6607"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*, +\v 20 \w and|strong="H3381"\w* said, “Oh, \w my|strong="H3381"\w* lord, \w we|strong="H3068"\w* \w indeed|strong="H3381"\w* \w came|strong="H3381"\w* \w down|strong="H3381"\w* \w the|strong="H3381"\w* \w first|strong="H8462"\w* \w time|strong="H8462"\w* \w to|strong="H3381"\w* \w buy|strong="H7666"\w* food. +\v 21 \w When|strong="H3588"\w* \w we|strong="H3068"\w* \w came|strong="H1961"\w* \w to|strong="H7725"\w* \w the|strong="H3588"\w* \w lodging|strong="H4411"\w* \w place|strong="H3027"\w*, \w we|strong="H3068"\w* \w opened|strong="H6605"\w* \w our|strong="H1961"\w* sacks, \w and|strong="H3701"\w* \w behold|strong="H2009"\w*, each man’s \w money|strong="H3701"\w* \w was|strong="H1961"\w* \w in|strong="H7725"\w* \w the|strong="H3588"\w* \w mouth|strong="H6310"\w* \w of|strong="H3027"\w* \w his|strong="H7725"\w* sack, \w our|strong="H1961"\w* \w money|strong="H3701"\w* \w in|strong="H7725"\w* \w full|strong="H7725"\w* \w weight|strong="H4948"\w*. \w We|strong="H3588"\w* \w have|strong="H1961"\w* \w brought|strong="H7725"\w* \w it|strong="H3588"\w* \w back|strong="H7725"\w* \w in|strong="H7725"\w* \w our|strong="H1961"\w* \w hand|strong="H3027"\w*. +\v 22 We \w have|strong="H3045"\w* \w brought|strong="H3381"\w* \w down|strong="H3381"\w* other \w money|strong="H3701"\w* \w in|strong="H3027"\w* \w our|strong="H7760"\w* \w hand|strong="H3027"\w* \w to|strong="H3381"\w* \w buy|strong="H7666"\w* food. We don’t \w know|strong="H3045"\w* \w who|strong="H4310"\w* \w put|strong="H7760"\w* \w our|strong="H7760"\w* \w money|strong="H3701"\w* \w in|strong="H3027"\w* \w our|strong="H7760"\w* sacks.” +\p +\v 23 \w He|strong="H5414"\w* \w said|strong="H3318"\w*, “\w Peace|strong="H7965"\w* \w be|strong="H5414"\w* \w to|strong="H3318"\w* \w you|strong="H5414"\w*. Don’t \w be|strong="H5414"\w* \w afraid|strong="H3372"\w*. \w Your|strong="H5414"\w* \w God|strong="H5414"\w*, \w and|strong="H3701"\w* \w the|strong="H5414"\w* \w God|strong="H5414"\w* \w of|strong="H3318"\w* \w your|strong="H5414"\w* father, \w has|strong="H3318"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w* \w treasure|strong="H4301"\w* \w in|strong="H5414"\w* \w your|strong="H5414"\w* sacks. \w I|strong="H5414"\w* received \w your|strong="H5414"\w* \w money|strong="H3701"\w*.” \w He|strong="H5414"\w* \w brought|strong="H3318"\w* \w Simeon|strong="H8095"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w them|strong="H5414"\w*. +\v 24 \w The|strong="H5414"\w* man \w brought|strong="H5414"\w* \w the|strong="H5414"\w* men \w into|strong="H3130"\w* \w Joseph|strong="H3130"\w*’s \w house|strong="H1004"\w*, \w and|strong="H1004"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w water|strong="H4325"\w*, \w and|strong="H1004"\w* \w they|strong="H7272"\w* \w washed|strong="H7364"\w* \w their|strong="H5414"\w* \w feet|strong="H7272"\w*. \w He|strong="H1004"\w* \w gave|strong="H5414"\w* \w their|strong="H5414"\w* \w donkeys|strong="H2543"\w* \w fodder|strong="H4554"\w*. +\v 25 \w They|strong="H3588"\w* \w prepared|strong="H3559"\w* \w the|strong="H8085"\w* \w present|strong="H4503"\w* \w for|strong="H3588"\w* \w Joseph|strong="H3130"\w*’s coming \w at|strong="H8033"\w* \w noon|strong="H6672"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w should|strong="H3588"\w* \w eat|strong="H3899"\w* \w bread|strong="H3899"\w* \w there|strong="H8033"\w*. +\p +\v 26 \w When|strong="H3027"\w* \w Joseph|strong="H3130"\w* \w came|strong="H3130"\w* \w home|strong="H1004"\w*, \w they|strong="H3027"\w* \w brought|strong="H3130"\w* \w him|strong="H3027"\w* \w the|strong="H7812"\w* \w present|strong="H4503"\w* \w which|strong="H1004"\w* \w was|strong="H1004"\w* \w in|strong="H1004"\w* \w their|strong="H3027"\w* \w hand|strong="H3027"\w* \w into|strong="H3027"\w* \w the|strong="H7812"\w* \w house|strong="H1004"\w*, \w and|strong="H3027"\w* \w bowed|strong="H7812"\w* \w themselves|strong="H7812"\w* \w down|strong="H7812"\w* \w to|strong="H3027"\w* \w the|strong="H7812"\w* earth before \w him|strong="H3027"\w*. +\v 27 \w He|strong="H2416"\w* \w asked|strong="H7592"\w* \w them|strong="H7592"\w* \w of|strong="H2205"\w* \w their|strong="H7592"\w* \w welfare|strong="H7965"\w*, \w and|strong="H2205"\w* said, “\w Is|strong="H2416"\w* \w your|strong="H7592"\w* father \w well|strong="H7965"\w*, \w the|strong="H7592"\w* \w old|strong="H2205"\w* \w man|strong="H2205"\w* \w of|strong="H2205"\w* whom \w you|strong="H7592"\w* spoke? \w Is|strong="H2416"\w* \w he|strong="H2416"\w* \w yet|strong="H5750"\w* \w alive|strong="H2416"\w*?” +\p +\v 28 \w They|strong="H7965"\w* said, “\w Your|strong="H7965"\w* \w servant|strong="H5650"\w*, \w our|strong="H5650"\w* father, \w is|strong="H5650"\w* \w well|strong="H7965"\w*. \w He|strong="H2416"\w* \w is|strong="H5650"\w* \w still|strong="H5750"\w* \w alive|strong="H2416"\w*.” \w They|strong="H7965"\w* \w bowed|strong="H7812"\w* \w down|strong="H7812"\w* \w humbly|strong="H7812"\w*. +\v 29 \w He|strong="H1144"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w eyes|strong="H5869"\w*, \w and|strong="H1121"\w* \w saw|strong="H7200"\w* \w Benjamin|strong="H1144"\w*, \w his|strong="H5375"\w* brother, \w his|strong="H5375"\w* mother’s \w son|strong="H1121"\w*, \w and|strong="H1121"\w* said, “\w Is|strong="H2088"\w* \w this|strong="H2088"\w* \w your|strong="H5375"\w* \w youngest|strong="H6996"\w* brother, \w of|strong="H1121"\w* \w whom|strong="H5869"\w* \w you|strong="H7200"\w* spoke \w to|strong="H1121"\w* \w me|strong="H7200"\w*?” \w He|strong="H1144"\w* said, “God \w be|strong="H1121"\w* \w gracious|strong="H2603"\w* \w to|strong="H1121"\w* \w you|strong="H7200"\w*, \w my|strong="H7200"\w* \w son|strong="H1121"\w*.” +\v 30 \w Joseph|strong="H3130"\w* \w hurried|strong="H4116"\w*, \w for|strong="H3588"\w* \w his|strong="H3588"\w* heart \w yearned|strong="H3648"\w* \w over|strong="H1058"\w* \w his|strong="H3588"\w* brother; \w and|strong="H8033"\w* \w he|strong="H3588"\w* \w sought|strong="H1245"\w* \w a|strong="H3068"\w* \w place|strong="H8033"\w* \w to|strong="H1245"\w* \w weep|strong="H1058"\w*. \w He|strong="H3588"\w* entered \w into|strong="H3130"\w* \w his|strong="H3588"\w* \w room|strong="H2315"\w*, \w and|strong="H8033"\w* \w wept|strong="H1058"\w* \w there|strong="H8033"\w*. +\v 31 \w He|strong="H3318"\w* \w washed|strong="H7364"\w* \w his|strong="H7760"\w* \w face|strong="H6440"\w*, \w and|strong="H3899"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w*. \w He|strong="H3318"\w* controlled \w himself|strong="H6440"\w*, \w and|strong="H3899"\w* \w said|strong="H3318"\w*, “\w Serve|strong="H6440"\w* \w the|strong="H6440"\w* \w meal|strong="H3899"\w*.” +\p +\v 32 \w They|strong="H3588"\w* \w served|strong="H7760"\w* \w him|strong="H7760"\w* \w by|strong="H3808"\w* \w himself|strong="H1931"\w*, \w and|strong="H3899"\w* \w them|strong="H7760"\w* \w by|strong="H3808"\w* \w themselves|strong="H7760"\w*, \w and|strong="H3899"\w* \w the|strong="H3588"\w* \w Egyptians|strong="H4713"\w* \w who|strong="H1931"\w* ate \w with|strong="H3899"\w* \w him|strong="H7760"\w* \w by|strong="H3808"\w* \w themselves|strong="H7760"\w*, \w because|strong="H3588"\w* \w the|strong="H3588"\w* \w Egyptians|strong="H4713"\w* don’t \w eat|strong="H3899"\w* \w with|strong="H3899"\w* \w the|strong="H3588"\w* \w Hebrews|strong="H5680"\w*, \w for|strong="H3588"\w* \w that|strong="H3588"\w* \w is|strong="H1931"\w* \w an|strong="H7760"\w* \w abomination|strong="H8441"\w* \w to|strong="H3201"\w* \w the|strong="H3588"\w* \w Egyptians|strong="H4713"\w*. +\v 33 \w They|strong="H6440"\w* \w sat|strong="H3427"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, \w the|strong="H6440"\w* \w firstborn|strong="H1060"\w* according \w to|strong="H6440"\w* \w his|strong="H6440"\w* \w birthright|strong="H1062"\w*, \w and|strong="H6440"\w* \w the|strong="H6440"\w* \w youngest|strong="H6810"\w* according \w to|strong="H6440"\w* \w his|strong="H6440"\w* \w youth|strong="H6812"\w*, \w and|strong="H6440"\w* \w the|strong="H6440"\w* men marveled \w with|strong="H3427"\w* \w one|strong="H6810"\w* \w another|strong="H7453"\w*. +\v 34 \w He|strong="H2568"\w* \w sent|strong="H3027"\w* \w portions|strong="H4864"\w* \w to|strong="H6440"\w* \w them|strong="H6440"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, \w but|strong="H3605"\w* \w Benjamin|strong="H1144"\w*’s \w portion|strong="H4864"\w* \w was|strong="H3027"\w* \w five|strong="H2568"\w* \w times|strong="H3027"\w* \w as|strong="H6440"\w* \w much|strong="H7235"\w* \w as|strong="H6440"\w* \w any|strong="H3605"\w* \w of|strong="H3027"\w* theirs. \w They|strong="H3605"\w* \w drank|strong="H8354"\w*, \w and|strong="H3027"\w* \w were|strong="H3027"\w* \w merry|strong="H7937"\w* \w with|strong="H5973"\w* \w him|strong="H6440"\w*. +\c 44 +\p +\v 1 \w He|strong="H1004"\w* \w commanded|strong="H6680"\w* \w the|strong="H5921"\w* \w steward|strong="H1004"\w* \w of|strong="H1004"\w* \w his|strong="H5375"\w* \w house|strong="H1004"\w*, \w saying|strong="H6310"\w*, “\w Fill|strong="H4390"\w* \w the|strong="H5921"\w* men’s sacks \w with|strong="H4390"\w* \w food|strong="H1004"\w*, \w as|strong="H1004"\w* \w much|strong="H6310"\w* \w as|strong="H1004"\w* \w they|strong="H5921"\w* \w can|strong="H3201"\w* \w carry|strong="H5375"\w*, \w and|strong="H3701"\w* \w put|strong="H7760"\w* each \w man|strong="H5375"\w*’s \w money|strong="H3701"\w* \w in|strong="H5921"\w* \w his|strong="H5375"\w* sack’s \w mouth|strong="H6310"\w*. +\v 2 \w Put|strong="H7760"\w* \w my|strong="H7760"\w* \w cup|strong="H1375"\w*, \w the|strong="H6213"\w* \w silver|strong="H3701"\w* \w cup|strong="H1375"\w*, \w in|strong="H6213"\w* \w the|strong="H6213"\w* sack’s \w mouth|strong="H6310"\w* \w of|strong="H1697"\w* \w the|strong="H6213"\w* \w youngest|strong="H6996"\w*, \w with|strong="H6213"\w* \w his|strong="H7760"\w* \w grain|strong="H7668"\w* \w money|strong="H3701"\w*.” \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w according|strong="H6310"\w* \w to|strong="H1696"\w* \w the|strong="H6213"\w* \w word|strong="H1697"\w* \w that|strong="H1697"\w* \w Joseph|strong="H3130"\w* \w had|strong="H3130"\w* \w spoken|strong="H1696"\w*. +\v 3 \w As|strong="H1992"\w* \w soon|strong="H1242"\w* \w as|strong="H1992"\w* \w the|strong="H7971"\w* \w morning|strong="H1242"\w* \w was|strong="H1992"\w* light, \w the|strong="H7971"\w* \w men|strong="H1992"\w* \w were|strong="H1992"\w* \w sent|strong="H7971"\w* \w away|strong="H7971"\w*, \w they|strong="H1992"\w* \w and|strong="H7971"\w* \w their|strong="H1992"\w* \w donkeys|strong="H2543"\w*. +\v 4 \w When|strong="H3318"\w* \w they|strong="H1992"\w* \w had|strong="H3130"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*, \w and|strong="H6965"\w* \w were|strong="H1992"\w* \w not|strong="H3808"\w* \w yet|strong="H3808"\w* \w far|strong="H7368"\w* \w off|strong="H5921"\w*, \w Joseph|strong="H3130"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w his|strong="H5921"\w* \w steward|strong="H1004"\w*, “\w Up|strong="H6965"\w*, \w follow|strong="H7291"\w* \w after|strong="H5921"\w* \w the|strong="H5921"\w* \w men|strong="H7451"\w*. \w When|strong="H3318"\w* \w you|strong="H5921"\w* \w overtake|strong="H5381"\w* \w them|strong="H1992"\w*, ask \w them|strong="H1992"\w*, ‘\w Why|strong="H4100"\w* \w have|strong="H5892"\w* \w you|strong="H5921"\w* \w rewarded|strong="H7999"\w* \w evil|strong="H7451"\w* \w for|strong="H5921"\w* \w good|strong="H2896"\w*? +\v 5 Isn’t \w this|strong="H2088"\w* \w that|strong="H1931"\w* \w from|strong="H6213"\w* \w which|strong="H1931"\w* \w my|strong="H6213"\w* lord \w drinks|strong="H8354"\w*, \w and|strong="H6213"\w* \w by|strong="H3808"\w* \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w indeed|strong="H5172"\w* divines? \w You|strong="H6213"\w* \w have|strong="H3808"\w* \w done|strong="H6213"\w* \w evil|strong="H7489"\w* \w in|strong="H6213"\w* \w so|strong="H6213"\w* \w doing|strong="H6213"\w*.’” +\v 6 \w He|strong="H1696"\w* \w overtook|strong="H5381"\w* \w them|strong="H5381"\w*, \w and|strong="H1697"\w* \w he|strong="H1696"\w* \w spoke|strong="H1696"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w* \w to|strong="H1696"\w* \w them|strong="H5381"\w*. +\p +\v 7 \w They|strong="H4100"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H6213"\w*, “\w Why|strong="H4100"\w* \w does|strong="H6213"\w* \w my|strong="H6213"\w* lord \w speak|strong="H1696"\w* \w such|strong="H2088"\w* \w words|strong="H1697"\w* \w as|strong="H1697"\w* \w these|strong="H2088"\w*? \w Far|strong="H2486"\w* \w be|strong="H1697"\w* \w it|strong="H6213"\w* \w from|strong="H5650"\w* \w your|strong="H6213"\w* \w servants|strong="H5650"\w* \w that|strong="H1697"\w* \w they|strong="H4100"\w* \w should|strong="H4100"\w* \w do|strong="H6213"\w* \w such|strong="H2088"\w* \w a|strong="H3068"\w* \w thing|strong="H1697"\w*! +\v 8 \w Behold|strong="H2005"\w*, \w the|strong="H7725"\w* \w money|strong="H3701"\w*, \w which|strong="H1004"\w* \w we|strong="H3068"\w* \w found|strong="H4672"\w* \w in|strong="H1004"\w* \w our|strong="H7725"\w* sacks’ \w mouths|strong="H6310"\w*, \w we|strong="H3068"\w* \w brought|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w you|strong="H7725"\w* \w out|strong="H4672"\w* \w of|strong="H1004"\w* \w the|strong="H7725"\w* land \w of|strong="H1004"\w* \w Canaan|strong="H3667"\w*. How \w then|strong="H7725"\w* should \w we|strong="H3068"\w* \w steal|strong="H1589"\w* \w silver|strong="H3701"\w* \w or|strong="H3701"\w* \w gold|strong="H2091"\w* \w out|strong="H4672"\w* \w of|strong="H1004"\w* \w your|strong="H7725"\w* lord’s \w house|strong="H1004"\w*? +\v 9 \w With|strong="H4191"\w* whomever \w of|strong="H5650"\w* \w your|strong="H1961"\w* \w servants|strong="H5650"\w* \w it|strong="H1961"\w* \w is|strong="H1571"\w* \w found|strong="H4672"\w*, \w let|strong="H1961"\w* \w him|strong="H4672"\w* \w die|strong="H4191"\w*, \w and|strong="H5650"\w* \w we|strong="H3068"\w* \w also|strong="H1571"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w my|strong="H1961"\w* lord’s \w slaves|strong="H5650"\w*.” +\p +\v 10 \w He|strong="H1931"\w* \w said|strong="H1697"\w*, “\w Now|strong="H6258"\w* \w also|strong="H1571"\w* \w let|strong="H6258"\w* \w it|strong="H1931"\w* \w be|strong="H1961"\w* according \w to|strong="H1961"\w* \w your|strong="H1961"\w* \w words|strong="H1697"\w*. \w He|strong="H1931"\w* \w with|strong="H1697"\w* whom \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w found|strong="H4672"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w my|strong="H1961"\w* \w slave|strong="H5650"\w*; \w and|strong="H5650"\w* \w you|strong="H3651"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w blameless|strong="H5355"\w*.” +\p +\v 11 \w Then|strong="H3381"\w* they \w hurried|strong="H4116"\w*, \w and|strong="H3381"\w* each man \w took|strong="H3381"\w* \w his|strong="H6605"\w* sack \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H6605"\w* ground, \w and|strong="H3381"\w* each man \w opened|strong="H6605"\w* \w his|strong="H6605"\w* sack. +\v 12 \w He|strong="H1144"\w* \w searched|strong="H2664"\w*, \w beginning|strong="H2490"\w* \w with|strong="H3615"\w* \w the|strong="H4672"\w* \w oldest|strong="H1419"\w*, \w and|strong="H1419"\w* \w ending|strong="H3615"\w* \w at|strong="H4672"\w* \w the|strong="H4672"\w* \w youngest|strong="H6996"\w*. \w The|strong="H4672"\w* \w cup|strong="H1375"\w* \w was|strong="H1144"\w* \w found|strong="H4672"\w* \w in|strong="H4672"\w* \w Benjamin|strong="H1144"\w*’s sack. +\v 13 \w Then|strong="H7725"\w* \w they|strong="H5921"\w* \w tore|strong="H7167"\w* \w their|strong="H7725"\w* \w clothes|strong="H8071"\w*, \w and|strong="H7725"\w* \w each|strong="H5892"\w* man \w loaded|strong="H6006"\w* \w his|strong="H7725"\w* \w donkey|strong="H2543"\w*, \w and|strong="H7725"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*. +\p +\v 14 \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w his|strong="H6440"\w* brothers \w came|strong="H3063"\w* \w to|strong="H6440"\w* \w Joseph|strong="H3130"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3063"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w still|strong="H5750"\w* \w there|strong="H8033"\w*. \w They|strong="H8033"\w* \w fell|strong="H5307"\w* \w on|strong="H5307"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 15 \w Joseph|strong="H3130"\w* said \w to|strong="H6213"\w* \w them|strong="H6213"\w*, “\w What|strong="H4100"\w* \w deed|strong="H4639"\w* \w is|strong="H2088"\w* \w this|strong="H2088"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3045"\w* \w done|strong="H6213"\w*? Don’t \w you|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w such|strong="H2088"\w* \w a|strong="H3068"\w* \w man|strong="H2088"\w* \w as|strong="H3644"\w* \w I|strong="H3588"\w* \w can|strong="H4100"\w* \w indeed|strong="H3588"\w* \w do|strong="H6213"\w* \w divination|strong="H5172"\w*?” +\p +\v 16 \w Judah|strong="H3063"\w* \w said|strong="H1696"\w*, “\w What|strong="H4100"\w* \w will|strong="H5650"\w* \w we|strong="H3068"\w* \w tell|strong="H1696"\w* \w my|strong="H1696"\w* lord? \w What|strong="H4100"\w* \w will|strong="H5650"\w* \w we|strong="H3068"\w* \w speak|strong="H1696"\w*? \w How|strong="H4100"\w* \w will|strong="H5650"\w* \w we|strong="H3068"\w* clear \w ourselves|strong="H6663"\w*? \w God|strong="H3027"\w* \w has|strong="H3063"\w* \w found|strong="H4672"\w* \w out|strong="H4672"\w* \w the|strong="H3027"\w* \w iniquity|strong="H5771"\w* \w of|strong="H3027"\w* \w your|strong="H3027"\w* \w servants|strong="H5650"\w*. \w Behold|strong="H2005"\w*, \w we|strong="H3068"\w* \w are|strong="H3027"\w* \w my|strong="H1696"\w* lord’s \w slaves|strong="H5650"\w*, \w both|strong="H1571"\w* \w we|strong="H3068"\w* \w and|strong="H3063"\w* \w he|strong="H3027"\w* \w also|strong="H1571"\w* \w in|strong="H1696"\w* \w whose|strong="H5650"\w* \w hand|strong="H3027"\w* \w the|strong="H3027"\w* \w cup|strong="H1375"\w* \w is|strong="H4100"\w* \w found|strong="H4672"\w*.” +\p +\v 17 \w He|strong="H1931"\w* said, “\w Far|strong="H2486"\w* \w be|strong="H1961"\w* \w it|strong="H1931"\w* \w from|strong="H5927"\w* \w me|strong="H6213"\w* \w that|strong="H1931"\w* \w I|strong="H5650"\w* \w should|strong="H6213"\w* \w do|strong="H6213"\w* \w so|strong="H6213"\w*. \w The|strong="H6213"\w* man \w in|strong="H6213"\w* \w whose|strong="H5650"\w* \w hand|strong="H3027"\w* \w the|strong="H6213"\w* \w cup|strong="H1375"\w* \w is|strong="H1931"\w* \w found|strong="H4672"\w*, \w he|strong="H1931"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w my|strong="H1961"\w* \w slave|strong="H5650"\w*; \w but|strong="H1961"\w* \w as|strong="H1961"\w* \w for|strong="H6213"\w* \w you|strong="H6213"\w*, \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w in|strong="H6213"\w* \w peace|strong="H7965"\w* \w to|strong="H5927"\w* \w your|strong="H6213"\w* father.” +\p +\v 18 \w Then|strong="H1696"\w* \w Judah|strong="H3063"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H1696"\w* \w him|strong="H3644"\w*, \w and|strong="H3063"\w* \w said|strong="H1696"\w*, “\w Oh|strong="H4994"\w*, \w my|strong="H1696"\w* lord, \w please|strong="H4994"\w* \w let|strong="H4994"\w* \w your|strong="H3588"\w* \w servant|strong="H5650"\w* \w speak|strong="H1696"\w* \w a|strong="H3068"\w* \w word|strong="H1697"\w* \w in|strong="H1696"\w* \w my|strong="H1696"\w* lord’s ears, \w and|strong="H3063"\w* don’t \w let|strong="H4994"\w* \w your|strong="H3588"\w* anger \w burn|strong="H2734"\w* \w against|strong="H2734"\w* \w your|strong="H3588"\w* \w servant|strong="H5650"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H1697"\w* \w even|strong="H3588"\w* \w as|strong="H1697"\w* \w Pharaoh|strong="H6547"\w*. +\v 19 \w My|strong="H5650"\w* lord \w asked|strong="H7592"\w* \w his|strong="H7592"\w* \w servants|strong="H5650"\w*, saying, ‘\w Have|strong="H3426"\w* \w you|strong="H7592"\w* \w a|strong="H3068"\w* father, \w or|strong="H5650"\w* \w a|strong="H3068"\w* brother?’ +\v 20 \w We|strong="H4191"\w* said \w to|strong="H4191"\w* \w my|strong="H4191"\w* lord, ‘\w We|strong="H4191"\w* \w have|strong="H3426"\w* \w a|strong="H3068"\w* father, \w an|strong="H3426"\w* \w old|strong="H2205"\w* \w man|strong="H2205"\w*, \w and|strong="H2205"\w* \w a|strong="H3068"\w* \w child|strong="H3206"\w* \w of|strong="H2205"\w* \w his|strong="H4191"\w* \w old|strong="H2205"\w* \w age|strong="H2208"\w*, \w a|strong="H3068"\w* \w little|strong="H6996"\w* \w one|strong="H1931"\w*; \w and|strong="H2205"\w* \w his|strong="H4191"\w* brother \w is|strong="H3426"\w* \w dead|strong="H4191"\w*, \w and|strong="H2205"\w* \w he|strong="H1931"\w* \w alone|strong="H1931"\w* \w is|strong="H3426"\w* \w left|strong="H3498"\w* \w of|strong="H2205"\w* \w his|strong="H4191"\w* mother; \w and|strong="H2205"\w* \w his|strong="H4191"\w* father loves \w him|strong="H4191"\w*.’ +\v 21 \w You|strong="H5921"\w* said \w to|strong="H3381"\w* \w your|strong="H5921"\w* \w servants|strong="H5650"\w*, ‘\w Bring|strong="H3381"\w* \w him|strong="H5921"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w me|strong="H5921"\w*, \w that|strong="H5650"\w* \w I|strong="H5921"\w* \w may|strong="H5869"\w* \w set|strong="H7760"\w* \w my|strong="H7760"\w* \w eyes|strong="H5869"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*.’ +\v 22 \w We|strong="H3201"\w* said \w to|strong="H4191"\w* \w my|strong="H5800"\w* lord, ‘\w The|strong="H5800"\w* \w boy|strong="H5288"\w* \w can|strong="H3201"\w*’t \w leave|strong="H5800"\w* \w his|strong="H5800"\w* father, \w for|strong="H4191"\w* if \w he|strong="H3808"\w* should \w leave|strong="H5800"\w* \w his|strong="H5800"\w* father, \w his|strong="H5800"\w* father \w would|strong="H5288"\w* \w die|strong="H4191"\w*.’ +\v 23 \w You|strong="H6440"\w* said \w to|strong="H3381"\w* \w your|strong="H6440"\w* \w servants|strong="H5650"\w*, ‘\w Unless|strong="H3808"\w* \w your|strong="H6440"\w* \w youngest|strong="H6996"\w* brother \w comes|strong="H3381"\w* \w down|strong="H3381"\w* \w with|strong="H3381"\w* \w you|strong="H6440"\w*, \w you|strong="H6440"\w* \w will|strong="H5650"\w* \w see|strong="H7200"\w* \w my|strong="H7200"\w* \w face|strong="H6440"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w*.’ +\v 24 \w When|strong="H3588"\w* \w we|strong="H3068"\w* \w came|strong="H1961"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w your|strong="H3588"\w* \w servant|strong="H5650"\w* \w my|strong="H1961"\w* father, \w we|strong="H3068"\w* \w told|strong="H5046"\w* \w him|strong="H5046"\w* \w the|strong="H3588"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w my|strong="H1961"\w* lord. +\v 25 \w Our|strong="H7725"\w* father said, ‘\w Go|strong="H7725"\w* \w again|strong="H7725"\w* \w and|strong="H7725"\w* \w buy|strong="H7666"\w* \w us|strong="H7725"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* food.’ +\v 26 \w We|strong="H3588"\w* said, ‘\w We|strong="H3588"\w* \w can|strong="H3201"\w*’t \w go|strong="H3381"\w* \w down|strong="H3381"\w*. \w If|strong="H3588"\w* \w our|strong="H7200"\w* \w youngest|strong="H6996"\w* brother \w is|strong="H3426"\w* \w with|strong="H3381"\w* \w us|strong="H6440"\w*, \w then|strong="H3588"\w* \w we|strong="H3068"\w* \w will|strong="H3808"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w*: \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w may|strong="H3201"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w* \w the|strong="H6440"\w* \w man|strong="H6440"\w*’s \w face|strong="H6440"\w*, \w unless|strong="H3588"\w* \w our|strong="H7200"\w* \w youngest|strong="H6996"\w* brother \w is|strong="H3426"\w* \w with|strong="H3381"\w* \w us|strong="H6440"\w*.’ +\v 27 \w Your|strong="H3045"\w* \w servant|strong="H5650"\w*, \w my|strong="H3045"\w* \w father|strong="H3205"\w*, said \w to|strong="H3205"\w* \w us|strong="H3045"\w*, ‘\w You|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w my|strong="H3045"\w* wife \w bore|strong="H3205"\w* \w me|strong="H3205"\w* \w two|strong="H8147"\w* \w sons|strong="H3205"\w*. +\v 28 \w One|strong="H3808"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w me|strong="H7200"\w*, \w and|strong="H7200"\w* \w I|strong="H5704"\w* \w said|strong="H3318"\w*, “\w Surely|strong="H3318"\w* \w he|strong="H5704"\w* \w is|strong="H3808"\w* \w torn|strong="H2963"\w* \w in|strong="H7200"\w* \w pieces|strong="H2963"\w*;” \w and|strong="H7200"\w* \w I|strong="H5704"\w* haven’t \w seen|strong="H7200"\w* \w him|strong="H7200"\w* \w since|strong="H2008"\w*. +\v 29 If \w you|strong="H6440"\w* \w take|strong="H3947"\w* \w this|strong="H2088"\w* \w one|strong="H2088"\w* \w also|strong="H1571"\w* \w from|strong="H6440"\w* \w me|strong="H6440"\w*, \w and|strong="H6440"\w* \w harm|strong="H7451"\w* \w happens|strong="H7136"\w* \w to|strong="H3381"\w* \w him|strong="H6440"\w*, \w you|strong="H6440"\w* \w will|strong="H1571"\w* \w bring|strong="H3947"\w* \w down|strong="H3381"\w* \w my|strong="H3947"\w* \w gray|strong="H7872"\w* \w hairs|strong="H7872"\w* \w with|strong="H5973"\w* \w sorrow|strong="H7451"\w* \w to|strong="H3381"\w* \w Sheol|strong="H7585"\w*.’\f + \fr 44:29 \ft Sheol is the place of the dead.\f* +\v 30 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* when \w I|strong="H6258"\w* \w come|strong="H5288"\w* \w to|strong="H5650"\w* \w your|strong="H6258"\w* \w servant|strong="H5650"\w* \w my|strong="H5650"\w* father, \w and|strong="H5650"\w* \w the|strong="H5650"\w* \w boy|strong="H5288"\w* \w is|strong="H5315"\w* \w not|strong="H5315"\w* \w with|strong="H5315"\w* \w us|strong="H5315"\w*; \w since|strong="H6258"\w* \w his|strong="H5650"\w* \w life|strong="H5315"\w* \w is|strong="H5315"\w* \w bound|strong="H7194"\w* \w up|strong="H7194"\w* \w in|strong="H5315"\w* \w the|strong="H5650"\w* \w boy|strong="H5288"\w*’s \w life|strong="H5315"\w*; +\v 31 \w it|strong="H3588"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w*, \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w sees|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H7200"\w* \w boy|strong="H5288"\w* \w is|strong="H5650"\w* \w no|strong="H7200"\w* \w more|strong="H3588"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H1961"\w* \w die|strong="H4191"\w*. \w Your|strong="H7200"\w* \w servants|strong="H5650"\w* \w will|strong="H1961"\w* \w bring|strong="H3381"\w* \w down|strong="H3381"\w* \w the|strong="H7200"\w* \w gray|strong="H7872"\w* \w hairs|strong="H7872"\w* \w of|strong="H5650"\w* \w your|strong="H7200"\w* \w servant|strong="H5650"\w*, \w our|strong="H7200"\w* father, \w with|strong="H3381"\w* \w sorrow|strong="H3015"\w* \w to|strong="H3381"\w* \w Sheol|strong="H7585"\w*.\f + \fr 44:31 \ft Sheol is the place of the dead.\f* +\v 32 \w For|strong="H3588"\w* \w your|strong="H3605"\w* \w servant|strong="H5650"\w* \w became|strong="H5650"\w* \w collateral|strong="H6148"\w* \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w boy|strong="H5288"\w* \w to|strong="H3117"\w* \w my|strong="H3605"\w* father, saying, ‘\w If|strong="H3588"\w* \w I|strong="H3588"\w* don’t \w bring|strong="H2398"\w* \w him|strong="H5973"\w* \w to|strong="H3117"\w* \w you|strong="H3588"\w*, \w then|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H5650"\w* \w bear|strong="H2398"\w* \w the|strong="H3605"\w* \w blame|strong="H2398"\w* \w to|strong="H3117"\w* \w my|strong="H3605"\w* father \w forever|strong="H3605"\w*.’ +\v 33 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w please|strong="H4994"\w* \w let|strong="H4994"\w* \w your|strong="H4994"\w* \w servant|strong="H5650"\w* \w stay|strong="H3427"\w* \w instead|strong="H8478"\w* \w of|strong="H3427"\w* \w the|strong="H8478"\w* \w boy|strong="H5288"\w*, \w my|strong="H5927"\w* lord’s \w slave|strong="H5650"\w*; \w and|strong="H5650"\w* \w let|strong="H4994"\w* \w the|strong="H8478"\w* \w boy|strong="H5288"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w with|strong="H5973"\w* \w his|strong="H8478"\w* brothers. +\v 34 \w For|strong="H3588"\w* \w how|strong="H3588"\w* \w will|strong="H5288"\w* \w I|strong="H3588"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w my|strong="H7200"\w* father, \w if|strong="H3588"\w* \w the|strong="H7200"\w* \w boy|strong="H5288"\w* isn’t \w with|strong="H5927"\w* \w me|strong="H7200"\w*?—\w lest|strong="H6435"\w* \w I|strong="H3588"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w evil|strong="H7451"\w* \w that|strong="H3588"\w* \w will|strong="H5288"\w* \w come|strong="H5927"\w* \w on|strong="H7200"\w* \w my|strong="H7200"\w* father.” +\c 45 +\p +\v 1 \w Then|strong="H3318"\w* \w Joseph|strong="H3130"\w* couldn’t control \w himself|strong="H3045"\w* \w before|strong="H5921"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w stood|strong="H5975"\w* \w before|strong="H5921"\w* \w him|strong="H7121"\w*, \w and|strong="H5975"\w* \w he|strong="H3605"\w* \w called|strong="H7121"\w* \w out|strong="H3318"\w*, “\w Cause|strong="H3318"\w* \w everyone|strong="H3605"\w* \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w me|strong="H5921"\w*!” \w No|strong="H3808"\w* \w one|strong="H3605"\w* \w else|strong="H3808"\w* \w stood|strong="H5975"\w* \w with|strong="H5921"\w* \w him|strong="H7121"\w*, \w while|strong="H5921"\w* \w Joseph|strong="H3130"\w* \w made|strong="H3045"\w* \w himself|strong="H3045"\w* \w known|strong="H3045"\w* \w to|strong="H3318"\w* \w his|strong="H3605"\w* brothers. +\v 2 \w He|strong="H1004"\w* \w wept|strong="H5414"\w* \w aloud|strong="H6963"\w*. \w The|strong="H8085"\w* \w Egyptians|strong="H4713"\w* \w heard|strong="H8085"\w*, \w and|strong="H1004"\w* \w the|strong="H8085"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Pharaoh|strong="H6547"\w* \w heard|strong="H8085"\w*. +\v 3 \w Joseph|strong="H3130"\w* \w said|strong="H6030"\w* \w to|strong="H3201"\w* \w his|strong="H6440"\w* brothers, “\w I|strong="H3588"\w* am \w Joseph|strong="H3130"\w*! \w Does|strong="H3808"\w* \w my|strong="H3588"\w* father \w still|strong="H5750"\w* \w live|strong="H2416"\w*?” +\p \w His|strong="H6440"\w* brothers couldn’t \w answer|strong="H6030"\w* \w him|strong="H6440"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H3130"\w* terrified \w at|strong="H6440"\w* \w his|strong="H6440"\w* \w presence|strong="H6440"\w*. +\v 4 \w Joseph|strong="H3130"\w* said \w to|strong="H4714"\w* \w his|strong="H4376"\w* brothers, “\w Come|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H4714"\w* \w me|strong="H4994"\w*, \w please|strong="H4994"\w*.” +\p They \w came|strong="H5066"\w* \w near|strong="H5066"\w*. \w He|strong="H3130"\w* said, “\w I|strong="H4714"\w* am \w Joseph|strong="H3130"\w*, \w your|strong="H4994"\w* brother, whom \w you|strong="H4994"\w* \w sold|strong="H4376"\w* \w into|strong="H4714"\w* \w Egypt|strong="H4714"\w*. +\v 5 \w Now|strong="H6258"\w* don’t \w be|strong="H5869"\w* \w grieved|strong="H6087"\w*, \w nor|strong="H3588"\w* \w angry|strong="H2734"\w* \w with|strong="H6440"\w* \w yourselves|strong="H5869"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w sold|strong="H4376"\w* \w me|strong="H6440"\w* \w here|strong="H2008"\w*, \w for|strong="H3588"\w* \w God|strong="H7971"\w* \w sent|strong="H7971"\w* \w me|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w* \w to|strong="H7971"\w* \w preserve|strong="H4241"\w* \w life|strong="H4241"\w*. +\v 6 \w For|strong="H3588"\w* \w these|strong="H2088"\w* \w two|strong="H2088"\w* \w years|strong="H8141"\w* \w the|strong="H3588"\w* \w famine|strong="H7458"\w* \w has|strong="H3588"\w* been \w in|strong="H8141"\w* \w the|strong="H3588"\w* \w land|strong="H7130"\w*, \w and|strong="H2568"\w* \w there|strong="H2088"\w* \w are|strong="H8141"\w* \w yet|strong="H5750"\w* \w five|strong="H2568"\w* \w years|strong="H8141"\w*, \w in|strong="H8141"\w* \w which|strong="H2088"\w* \w there|strong="H2088"\w* \w will|strong="H5750"\w* \w be|strong="H5750"\w* no \w plowing|strong="H2758"\w* \w and|strong="H2568"\w* no \w harvest|strong="H7105"\w*. +\v 7 \w God|strong="H7971"\w* \w sent|strong="H7971"\w* \w me|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w to|strong="H7971"\w* \w preserve|strong="H2421"\w* \w for|strong="H6440"\w* \w you|strong="H6440"\w* \w a|strong="H3068"\w* \w remnant|strong="H7611"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* earth, \w and|strong="H7971"\w* \w to|strong="H7971"\w* \w save|strong="H2421"\w* \w you|strong="H6440"\w* \w alive|strong="H2421"\w* \w by|strong="H7971"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w deliverance|strong="H6413"\w*. +\v 8 \w So|strong="H7971"\w* \w now|strong="H6258"\w* \w it|strong="H7760"\w* wasn’t \w you|strong="H3588"\w* \w who|strong="H3605"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w* \w here|strong="H2008"\w*, \w but|strong="H3588"\w* \w God|strong="H3808"\w*, \w and|strong="H7971"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w made|strong="H7760"\w* \w me|strong="H7971"\w* \w a|strong="H3068"\w* father \w to|strong="H7971"\w* \w Pharaoh|strong="H6547"\w*, lord \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*, \w and|strong="H7971"\w* \w ruler|strong="H4910"\w* \w over|strong="H4910"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*. +\v 9 \w Hurry|strong="H4116"\w*, \w and|strong="H1121"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3381"\w* \w my|strong="H3605"\w* \w father|strong="H1121"\w*, \w and|strong="H1121"\w* \w tell|strong="H3605"\w* \w him|strong="H7760"\w*, ‘\w This|strong="H3541"\w* \w is|strong="H3605"\w* \w what|strong="H3541"\w* \w your|strong="H3605"\w* \w son|strong="H1121"\w* \w Joseph|strong="H3130"\w* \w says|strong="H3541"\w*, “God \w has|strong="H3605"\w* \w made|strong="H7760"\w* \w me|strong="H7760"\w* lord \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w Egypt|strong="H4714"\w*. \w Come|strong="H5927"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w me|strong="H7760"\w*. Don’t \w wait|strong="H5975"\w*. +\v 10 \w You|strong="H3605"\w* \w shall|strong="H1121"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* land \w of|strong="H1121"\w* \w Goshen|strong="H1657"\w*, \w and|strong="H1121"\w* \w you|strong="H3605"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w near|strong="H7138"\w* \w to|strong="H1961"\w* \w me|strong="H1961"\w*, \w you|strong="H3605"\w*, \w your|strong="H3605"\w* \w children|strong="H1121"\w*, \w your|strong="H3605"\w* \w children|strong="H1121"\w*’s \w children|strong="H1121"\w*, \w your|strong="H3605"\w* \w flocks|strong="H6629"\w*, \w your|strong="H3605"\w* \w herds|strong="H1241"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w have|strong="H1961"\w*. +\v 11 \w There|strong="H8033"\w* \w I|strong="H3588"\w* \w will|strong="H1004"\w* \w provide|strong="H3557"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*; \w for|strong="H3588"\w* \w there|strong="H8033"\w* \w are|strong="H8141"\w* \w yet|strong="H5750"\w* \w five|strong="H2568"\w* \w years|strong="H8141"\w* \w of|strong="H1004"\w* \w famine|strong="H7458"\w*; \w lest|strong="H6435"\w* \w you|strong="H3588"\w* \w come|strong="H3423"\w* \w to|strong="H1004"\w* \w poverty|strong="H3423"\w*, \w you|strong="H3588"\w*, \w and|strong="H1004"\w* \w your|strong="H3605"\w* \w household|strong="H1004"\w*, \w and|strong="H1004"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3605"\w*.”’ +\v 12 \w Behold|strong="H2009"\w*, \w your|strong="H7200"\w* \w eyes|strong="H5869"\w* \w see|strong="H7200"\w*, \w and|strong="H5869"\w* \w the|strong="H7200"\w* \w eyes|strong="H5869"\w* \w of|strong="H5869"\w* \w my|strong="H7200"\w* brother \w Benjamin|strong="H1144"\w*, \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H2009"\w* \w my|strong="H7200"\w* \w mouth|strong="H6310"\w* \w that|strong="H3588"\w* \w speaks|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*. +\v 13 \w You|strong="H3605"\w* \w shall|strong="H4714"\w* \w tell|strong="H5046"\w* \w my|strong="H3605"\w* father \w of|strong="H3605"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w glory|strong="H3519"\w* \w in|strong="H7200"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H4714"\w* \w of|strong="H3605"\w* \w all|strong="H3605"\w* \w that|strong="H7200"\w* \w you|strong="H3605"\w* \w have|strong="H7200"\w* \w seen|strong="H7200"\w*. \w You|strong="H3605"\w* \w shall|strong="H4714"\w* \w hurry|strong="H4116"\w* \w and|strong="H4714"\w* \w bring|strong="H3381"\w* \w my|strong="H3605"\w* father \w down|strong="H3381"\w* \w here|strong="H2008"\w*.” +\v 14 \w He|strong="H5921"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* brother \w Benjamin|strong="H1144"\w*’s \w neck|strong="H6677"\w* \w and|strong="H1144"\w* \w wept|strong="H1058"\w*, \w and|strong="H1144"\w* \w Benjamin|strong="H1144"\w* \w wept|strong="H1058"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w neck|strong="H6677"\w*. +\v 15 \w He|strong="H3651"\w* \w kissed|strong="H5401"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* brothers, \w and|strong="H1696"\w* \w wept|strong="H1058"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*. \w After|strong="H5921"\w* \w that|strong="H3605"\w* \w his|strong="H3605"\w* brothers \w talked|strong="H1696"\w* \w with|strong="H1696"\w* \w him|strong="H5921"\w*. +\p +\v 16 \w The|strong="H8085"\w* \w report|strong="H6963"\w* \w of|strong="H1004"\w* \w it|strong="H3190"\w* \w was|strong="H1004"\w* \w heard|strong="H8085"\w* \w in|strong="H1004"\w* \w Pharaoh|strong="H6547"\w*’s \w house|strong="H1004"\w*, \w saying|strong="H6963"\w*, “\w Joseph|strong="H3130"\w*’s brothers \w have|strong="H5869"\w* come.” \w It|strong="H3190"\w* \w pleased|strong="H3190"\w* \w Pharaoh|strong="H6547"\w* \w well|strong="H3190"\w*, \w and|strong="H1004"\w* \w his|strong="H8085"\w* \w servants|strong="H5650"\w*. +\v 17 \w Pharaoh|strong="H6547"\w* said \w to|strong="H3212"\w* \w Joseph|strong="H3130"\w*, “Tell \w your|strong="H6213"\w* brothers, ‘\w Do|strong="H6213"\w* \w this|strong="H2063"\w*: \w Load|strong="H2943"\w* \w your|strong="H6213"\w* animals, \w and|strong="H3212"\w* \w go|strong="H3212"\w*, travel \w to|strong="H3212"\w* \w the|strong="H6213"\w* land \w of|strong="H6213"\w* \w Canaan|strong="H3667"\w*. +\v 18 \w Take|strong="H3947"\w* \w your|strong="H5414"\w* father \w and|strong="H1004"\w* \w your|strong="H5414"\w* \w households|strong="H1004"\w*, \w and|strong="H1004"\w* come \w to|strong="H5414"\w* \w me|strong="H5414"\w*, \w and|strong="H1004"\w* \w I|strong="H5414"\w* \w will|strong="H4714"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w the|strong="H5414"\w* \w good|strong="H2898"\w* \w of|strong="H1004"\w* \w the|strong="H5414"\w* land \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H1004"\w* \w you|strong="H5414"\w* \w will|strong="H4714"\w* eat \w the|strong="H5414"\w* \w fat|strong="H2459"\w* \w of|strong="H1004"\w* \w the|strong="H5414"\w* land.’ +\v 19 \w Now|strong="H3947"\w* \w you|strong="H6680"\w* \w are|strong="H4714"\w* \w commanded|strong="H6680"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w this|strong="H2063"\w*: \w Take|strong="H3947"\w* \w wagons|strong="H5699"\w* \w out|strong="H3947"\w* \w of|strong="H6213"\w* \w the|strong="H3947"\w* land \w of|strong="H6213"\w* \w Egypt|strong="H4714"\w* \w for|strong="H6213"\w* \w your|strong="H3947"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*, \w and|strong="H4714"\w* \w for|strong="H6213"\w* \w your|strong="H3947"\w* wives, \w and|strong="H4714"\w* \w bring|strong="H3947"\w* \w your|strong="H3947"\w* father, \w and|strong="H4714"\w* come. +\v 20 \w Also|strong="H5869"\w*, don’t \w concern|strong="H2347"\w* \w yourselves|strong="H5869"\w* \w about|strong="H5921"\w* \w your|strong="H3605"\w* belongings, \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w good|strong="H2898"\w* \w of|strong="H3627"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H3627"\w* \w Egypt|strong="H4714"\w* \w is|strong="H1931"\w* yours.” +\p +\v 21 \w The|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*. \w Joseph|strong="H3130"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w wagons|strong="H5699"\w*, \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w commandment|strong="H6310"\w* \w of|strong="H1121"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H1121"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w provision|strong="H6720"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w*. +\v 22 \w He|strong="H2568"\w* \w gave|strong="H5414"\w* \w each|strong="H3605"\w* \w one|strong="H3605"\w* \w of|strong="H3605"\w* \w them|strong="H5414"\w* \w changes|strong="H2487"\w* \w of|strong="H3605"\w* \w clothing|strong="H8071"\w*, \w but|strong="H3605"\w* \w to|strong="H5414"\w* \w Benjamin|strong="H1144"\w* \w he|strong="H2568"\w* \w gave|strong="H5414"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* pieces \w of|strong="H3605"\w* \w silver|strong="H3701"\w* \w and|strong="H3967"\w* \w five|strong="H2568"\w* \w changes|strong="H2487"\w* \w of|strong="H3605"\w* \w clothing|strong="H8071"\w*. +\v 23 \w He|strong="H7971"\w* \w sent|strong="H7971"\w* \w the|strong="H5375"\w* \w following|strong="H1870"\w* \w to|strong="H7971"\w* \w his|strong="H5375"\w* father: \w ten|strong="H6235"\w* \w donkeys|strong="H2543"\w* \w loaded|strong="H5375"\w* \w with|strong="H4714"\w* \w the|strong="H5375"\w* \w good|strong="H2898"\w* \w things|strong="H2898"\w* \w of|strong="H1870"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H7971"\w* \w ten|strong="H6235"\w* female \w donkeys|strong="H2543"\w* \w loaded|strong="H5375"\w* \w with|strong="H4714"\w* \w grain|strong="H1250"\w* \w and|strong="H7971"\w* \w bread|strong="H3899"\w* \w and|strong="H7971"\w* \w provision|strong="H3899"\w* \w for|strong="H7971"\w* \w his|strong="H5375"\w* father \w by|strong="H1870"\w* \w the|strong="H5375"\w* \w way|strong="H1870"\w*. +\v 24 \w So|strong="H7971"\w* \w he|strong="H7971"\w* \w sent|strong="H7971"\w* \w his|strong="H7971"\w* brothers \w away|strong="H7971"\w*, \w and|strong="H7971"\w* \w they|strong="H1870"\w* \w departed|strong="H3212"\w*. \w He|strong="H7971"\w* said \w to|strong="H3212"\w* \w them|strong="H7971"\w*, “See \w that|strong="H3212"\w* \w you|strong="H7971"\w* don’t \w quarrel|strong="H7264"\w* \w on|strong="H1870"\w* \w the|strong="H7971"\w* \w way|strong="H1870"\w*.” +\p +\v 25 \w They|strong="H3667"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H5927"\w* \w of|strong="H5927"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H4714"\w* \w came|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H5927"\w* land \w of|strong="H5927"\w* \w Canaan|strong="H3667"\w*, \w to|strong="H5927"\w* \w Jacob|strong="H3290"\w* \w their|strong="H3290"\w* father. +\v 26 \w They|strong="H3588"\w* \w told|strong="H5046"\w* \w him|strong="H5046"\w*, saying, “\w Joseph|strong="H3130"\w* \w is|strong="H1931"\w* \w still|strong="H5750"\w* \w alive|strong="H2416"\w*, \w and|strong="H4714"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w ruler|strong="H4910"\w* \w over|strong="H4910"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H3820"\w* \w Egypt|strong="H4714"\w*.” \w His|strong="H3605"\w* \w heart|strong="H3820"\w* \w fainted|strong="H6313"\w*, \w for|strong="H3588"\w* \w he|strong="H1931"\w* didn’t believe \w them|strong="H5046"\w*. +\v 27 \w They|strong="H1697"\w* \w told|strong="H1696"\w* \w him|strong="H7971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w Joseph|strong="H3130"\w*, \w which|strong="H1697"\w* \w he|strong="H3605"\w* \w had|strong="H3130"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H7971"\w*. \w When|strong="H7200"\w* \w he|strong="H3605"\w* \w saw|strong="H7200"\w* \w the|strong="H3605"\w* \w wagons|strong="H5699"\w* \w which|strong="H1697"\w* \w Joseph|strong="H3130"\w* \w had|strong="H3130"\w* \w sent|strong="H7971"\w* \w to|strong="H1696"\w* \w carry|strong="H5375"\w* \w him|strong="H7971"\w*, \w the|strong="H3605"\w* \w spirit|strong="H7307"\w* \w of|strong="H1697"\w* \w Jacob|strong="H3290"\w*, \w their|strong="H3605"\w* father, \w revived|strong="H2421"\w*. +\v 28 \w Israel|strong="H3478"\w* said, “\w It|strong="H7200"\w* \w is|strong="H3478"\w* \w enough|strong="H7227"\w*. \w Joseph|strong="H3130"\w* \w my|strong="H7200"\w* \w son|strong="H1121"\w* \w is|strong="H3478"\w* \w still|strong="H5750"\w* \w alive|strong="H2416"\w*. \w I|strong="H2962"\w* \w will|strong="H3478"\w* \w go|strong="H3212"\w* \w and|strong="H1121"\w* \w see|strong="H7200"\w* \w him|strong="H7200"\w* \w before|strong="H2962"\w* \w I|strong="H2962"\w* \w die|strong="H4191"\w*.” +\c 46 +\p +\v 1 \w Israel|strong="H3478"\w* \w traveled|strong="H5265"\w* \w with|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w had|strong="H3478"\w*, \w and|strong="H3478"\w* \w came|strong="H3478"\w* \w to|strong="H3478"\w* Beersheba, \w and|strong="H3478"\w* \w offered|strong="H2076"\w* \w sacrifices|strong="H2077"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* God \w of|strong="H2077"\w* \w his|strong="H3605"\w* father, \w Isaac|strong="H3327"\w*. +\v 2 God spoke \w to|strong="H3478"\w* \w Israel|strong="H3478"\w* \w in|strong="H3478"\w* \w the|strong="H2009"\w* \w visions|strong="H4759"\w* \w of|strong="H4759"\w* \w the|strong="H2009"\w* \w night|strong="H3915"\w*, \w and|strong="H3478"\w* said, “\w Jacob|strong="H3290"\w*, \w Jacob|strong="H3290"\w*!” +\p \w He|strong="H3478"\w* said, “\w Here|strong="H2009"\w* \w I|strong="H2009"\w* am.” +\p +\v 3 \w He|strong="H3588"\w* said, “\w I|strong="H3588"\w* am God, \w the|strong="H3588"\w* God \w of|strong="H3372"\w* \w your|strong="H7760"\w* father. Don’t \w be|strong="H1471"\w* \w afraid|strong="H3372"\w* \w to|strong="H3381"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w Egypt|strong="H4714"\w*, \w for|strong="H3588"\w* \w there|strong="H8033"\w* \w I|strong="H3588"\w* \w will|strong="H1471"\w* \w make|strong="H7760"\w* \w of|strong="H3372"\w* \w you|strong="H3588"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w nation|strong="H1471"\w*. +\v 4 \w I|strong="H5921"\w* \w will|strong="H1571"\w* \w go|strong="H5927"\w* \w down|strong="H3381"\w* \w with|strong="H5973"\w* \w you|strong="H5921"\w* \w into|strong="H3381"\w* \w Egypt|strong="H4714"\w*. \w I|strong="H5921"\w* \w will|strong="H1571"\w* \w also|strong="H1571"\w* \w surely|strong="H5927"\w* \w bring|strong="H5927"\w* \w you|strong="H5921"\w* \w up|strong="H5927"\w* \w again|strong="H1571"\w*. \w Joseph|strong="H3130"\w*’s \w hand|strong="H3027"\w* \w will|strong="H1571"\w* \w close|strong="H7896"\w* \w your|strong="H5921"\w* \w eyes|strong="H5869"\w*.” +\p +\v 5 \w Jacob|strong="H3290"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w from|strong="H3478"\w* Beersheba, \w and|strong="H1121"\w* \w the|strong="H5375"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w carried|strong="H5375"\w* \w Jacob|strong="H3290"\w*, \w their|strong="H5375"\w* \w father|strong="H1121"\w*, \w their|strong="H5375"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*, \w and|strong="H1121"\w* \w their|strong="H5375"\w* wives, \w in|strong="H3478"\w* \w the|strong="H5375"\w* \w wagons|strong="H5699"\w* \w which|strong="H3478"\w* \w Pharaoh|strong="H6547"\w* \w had|strong="H3478"\w* \w sent|strong="H7971"\w* \w to|strong="H3478"\w* \w carry|strong="H5375"\w* \w him|strong="H7971"\w*. +\v 6 \w They|strong="H3605"\w* \w took|strong="H3947"\w* \w their|strong="H3605"\w* \w livestock|strong="H4735"\w*, \w and|strong="H4714"\w* \w their|strong="H3605"\w* \w goods|strong="H7399"\w*, \w which|strong="H7399"\w* \w they|strong="H3605"\w* \w had|strong="H3290"\w* \w gotten|strong="H7408"\w* \w in|strong="H2233"\w* \w the|strong="H3605"\w* land \w of|strong="H2233"\w* \w Canaan|strong="H3667"\w*, \w and|strong="H4714"\w* \w came|strong="H4714"\w* \w into|strong="H4714"\w* \w Egypt|strong="H4714"\w*—\w Jacob|strong="H3290"\w*, \w and|strong="H4714"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w offspring|strong="H2233"\w* \w with|strong="H4714"\w* \w him|strong="H3947"\w*, +\v 7 \w his|strong="H3605"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w*’ \w sons|strong="H1121"\w* \w with|strong="H4714"\w* \w him|strong="H3605"\w*, \w his|strong="H3605"\w* \w daughters|strong="H1323"\w*, \w and|strong="H1121"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w*’ \w daughters|strong="H1323"\w*, \w and|strong="H1121"\w* \w he|strong="H3605"\w* \w brought|strong="H2233"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w offspring|strong="H2233"\w* \w with|strong="H4714"\w* \w him|strong="H3605"\w* \w into|strong="H4714"\w* \w Egypt|strong="H4714"\w*. +\p +\v 8 These \w are|strong="H1121"\w* \w the|strong="H8034"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H8034"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w who|strong="H1121"\w* \w came|strong="H3478"\w* \w into|strong="H4714"\w* \w Egypt|strong="H4714"\w*, \w Jacob|strong="H3290"\w* \w and|strong="H1121"\w* \w his|strong="H3478"\w* \w sons|strong="H1121"\w*: \w Reuben|strong="H7205"\w*, \w Jacob|strong="H3290"\w*’s \w firstborn|strong="H1060"\w*. +\v 9 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w*: \w Hanoch|strong="H2585"\w*, \w Pallu|strong="H6396"\w*, \w Hezron|strong="H2696"\w*, \w and|strong="H1121"\w* \w Carmi|strong="H3756"\w*. +\v 10 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Simeon|strong="H8095"\w*: \w Jemuel|strong="H3223"\w*, \w Jamin|strong="H3226"\w*, Ohad, \w Jachin|strong="H3199"\w*, \w Zohar|strong="H6714"\w*, \w and|strong="H1121"\w* \w Shaul|strong="H7586"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w Canaanite|strong="H3669"\w* \w woman|strong="H3669"\w*. +\v 11 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w*: \w Gershon|strong="H1648"\w*, \w Kohath|strong="H6955"\w*, \w and|strong="H1121"\w* \w Merari|strong="H4847"\w*. +\v 12 \w The|strong="H1961"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*: \w Er|strong="H6147"\w*, Onan, \w Shelah|strong="H7956"\w*, \w Perez|strong="H6557"\w*, \w and|strong="H1121"\w* \w Zerah|strong="H2226"\w*; \w but|strong="H1961"\w* \w Er|strong="H6147"\w* \w and|strong="H1121"\w* Onan \w died|strong="H4191"\w* \w in|strong="H4191"\w* \w the|strong="H1961"\w* land \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*. \w The|strong="H1961"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Perez|strong="H6557"\w* \w were|strong="H1961"\w* \w Hezron|strong="H2696"\w* \w and|strong="H1121"\w* \w Hamul|strong="H2538"\w*. +\v 13 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Issachar|strong="H3485"\w*: \w Tola|strong="H8439"\w*, \w Puvah|strong="H6312"\w*, \w Iob|strong="H3102"\w*, \w and|strong="H1121"\w* \w Shimron|strong="H8110"\w*. +\v 14 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Zebulun|strong="H2074"\w*: \w Sered|strong="H5624"\w*, Elon, \w and|strong="H1121"\w* \w Jahleel|strong="H3177"\w*. +\v 15 \w These|strong="H3605"\w* \w are|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Leah|strong="H3812"\w*, whom she \w bore|strong="H3205"\w* \w to|strong="H3205"\w* \w Jacob|strong="H3290"\w* \w in|strong="H5315"\w* \w Paddan|strong="H6307"\w* \w Aram|strong="H6307"\w*, \w with|strong="H5315"\w* \w his|strong="H3605"\w* \w daughter|strong="H1323"\w* \w Dinah|strong="H1783"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w souls|strong="H5315"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H3605"\w* \w daughters|strong="H1323"\w* \w were|strong="H1121"\w* \w thirty-three|strong="H7970"\w*. +\v 16 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w*: \w Ziphion|strong="H6837"\w*, \w Haggi|strong="H2291"\w*, \w Shuni|strong="H7764"\w*, Ezbon, \w Eri|strong="H6179"\w*, Arodi, \w and|strong="H1121"\w* Areli. +\v 17 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Asher: \w Imnah|strong="H3232"\w*, \w Ishvah|strong="H3438"\w*, \w Ishvi|strong="H3440"\w*, \w Beriah|strong="H1283"\w*, \w and|strong="H1121"\w* \w Serah|strong="H8294"\w* \w their|strong="H8294"\w* sister. \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Beriah|strong="H1283"\w*: \w Heber|strong="H2268"\w* \w and|strong="H1121"\w* \w Malchiel|strong="H4439"\w*. +\v 18 These \w are|strong="H1121"\w* \w the|strong="H5414"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Zilpah|strong="H2153"\w*, whom \w Laban|strong="H3837"\w* \w gave|strong="H5414"\w* \w to|strong="H5414"\w* \w Leah|strong="H3812"\w*, \w his|strong="H5414"\w* \w daughter|strong="H1323"\w*, \w and|strong="H1121"\w* these she \w bore|strong="H3205"\w* \w to|strong="H5414"\w* \w Jacob|strong="H3290"\w*, even \w sixteen|strong="H8337"\w* \w souls|strong="H5315"\w*. +\v 19 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Rachel|strong="H7354"\w*, \w Jacob|strong="H3290"\w*’s wife: \w Joseph|strong="H3130"\w* \w and|strong="H1121"\w* \w Benjamin|strong="H1144"\w*. +\v 20 \w To|strong="H3205"\w* \w Joseph|strong="H3130"\w* \w in|strong="H4519"\w* \w the|strong="H3205"\w* land \w of|strong="H1323"\w* \w Egypt|strong="H4714"\w* \w were|strong="H4714"\w* \w born|strong="H3205"\w* \w Manasseh|strong="H4519"\w* \w and|strong="H3548"\w* Ephraim, whom Asenath, \w the|strong="H3205"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Potiphera|strong="H6319"\w*, \w priest|strong="H3548"\w* \w of|strong="H1323"\w* \w On|strong="H3205"\w*, \w bore|strong="H3205"\w* \w to|strong="H3205"\w* \w him|strong="H3205"\w*. +\v 21 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*: \w Bela|strong="H1106"\w*, \w Becher|strong="H1071"\w*, Ashbel, \w Gera|strong="H1617"\w*, \w Naaman|strong="H5283"\w*, Ehi, \w Rosh|strong="H7220"\w*, \w Muppim|strong="H4649"\w*, \w Huppim|strong="H2650"\w*, \w and|strong="H1121"\w* Ard. +\v 22 \w These|strong="H3605"\w* \w are|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Rachel|strong="H7354"\w*, \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w born|strong="H3205"\w* \w to|strong="H3205"\w* \w Jacob|strong="H3290"\w*: \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w souls|strong="H5315"\w* \w were|strong="H1121"\w* \w fourteen|strong="H6240"\w*. +\v 23 \w The|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w*: \w Hushim|strong="H2366"\w*. +\v 24 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Naphtali|strong="H5321"\w*: \w Jahzeel|strong="H3183"\w*, \w Guni|strong="H1476"\w*, \w Jezer|strong="H3337"\w*, \w and|strong="H1121"\w* \w Shillem|strong="H8006"\w*. +\v 25 \w These|strong="H3605"\w* \w are|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Bilhah|strong="H1090"\w*, whom \w Laban|strong="H3837"\w* \w gave|strong="H5414"\w* \w to|strong="H5414"\w* \w Rachel|strong="H7354"\w*, \w his|strong="H3605"\w* \w daughter|strong="H1323"\w*, \w and|strong="H1121"\w* \w these|strong="H3605"\w* she \w bore|strong="H3205"\w* \w to|strong="H5414"\w* \w Jacob|strong="H3290"\w*: \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w souls|strong="H5315"\w* \w were|strong="H1121"\w* \w seven|strong="H7651"\w*. +\v 26 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w souls|strong="H5315"\w* \w who|strong="H3605"\w* \w came|strong="H3318"\w* \w with|strong="H3318"\w* \w Jacob|strong="H3290"\w* \w into|strong="H3318"\w* \w Egypt|strong="H4714"\w*, \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w his|strong="H3605"\w* \w direct|strong="H3409"\w* \w offspring|strong="H1121"\w*, \w in|strong="H5315"\w* addition \w to|strong="H3318"\w* \w Jacob|strong="H3290"\w*’s \w sons|strong="H1121"\w*’ wives, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w souls|strong="H5315"\w* \w were|strong="H1121"\w* \w sixty-six|strong="H8346"\w*. +\v 27 \w The|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w*, \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w born|strong="H3205"\w* \w to|strong="H4714"\w* \w him|strong="H3205"\w* \w in|strong="H1004"\w* \w Egypt|strong="H4714"\w*, \w were|strong="H1121"\w* \w two|strong="H8147"\w* \w souls|strong="H5315"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w souls|strong="H5315"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Jacob|strong="H3290"\w*, \w who|strong="H3605"\w* \w came|strong="H4714"\w* \w into|strong="H4714"\w* \w Egypt|strong="H4714"\w*, \w were|strong="H1121"\w* \w seventy|strong="H7657"\w*. +\p +\v 28 \w Jacob|strong="H7971"\w* \w sent|strong="H7971"\w* \w Judah|strong="H3063"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w* \w to|strong="H7971"\w* \w Joseph|strong="H3130"\w*, \w to|strong="H7971"\w* show \w the|strong="H6440"\w* \w way|strong="H7971"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w* \w to|strong="H7971"\w* \w Goshen|strong="H1657"\w*, \w and|strong="H3063"\w* \w they|strong="H6440"\w* \w came|strong="H3063"\w* \w into|strong="H3063"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H6440"\w* \w Goshen|strong="H1657"\w*. +\v 29 \w Joseph|strong="H3130"\w* prepared \w his|strong="H5921"\w* \w chariot|strong="H4818"\w*, \w and|strong="H3478"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w meet|strong="H7125"\w* \w Israel|strong="H3478"\w*, \w his|strong="H5921"\w* father, \w in|strong="H5921"\w* \w Goshen|strong="H1657"\w*. \w He|strong="H5921"\w* \w presented|strong="H7200"\w* \w himself|strong="H5307"\w* \w to|strong="H3478"\w* \w him|strong="H5921"\w*, \w and|strong="H3478"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w neck|strong="H6677"\w*, \w and|strong="H3478"\w* \w wept|strong="H1058"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w neck|strong="H6677"\w* \w a|strong="H3068"\w* good \w while|strong="H5750"\w*. +\v 30 \w Israel|strong="H3478"\w* said \w to|strong="H3478"\w* \w Joseph|strong="H3130"\w*, “\w Now|strong="H6471"\w* \w let|strong="H6471"\w* \w me|strong="H6440"\w* \w die|strong="H4191"\w*, \w since|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3478"\w* \w seen|strong="H7200"\w* \w your|strong="H6440"\w* \w face|strong="H6440"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H3478"\w* \w still|strong="H5750"\w* \w alive|strong="H2416"\w*.” +\p +\v 31 \w Joseph|strong="H3130"\w* said \w to|strong="H5927"\w* \w his|strong="H5046"\w* brothers, \w and|strong="H1004"\w* \w to|strong="H5927"\w* \w his|strong="H5046"\w* father’s \w house|strong="H1004"\w*, “\w I|strong="H1004"\w* \w will|strong="H1004"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w*, \w and|strong="H1004"\w* speak \w with|strong="H1004"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H1004"\w* \w will|strong="H1004"\w* \w tell|strong="H5046"\w* \w him|strong="H5046"\w*, ‘\w My|strong="H5046"\w* brothers, \w and|strong="H1004"\w* \w my|strong="H5046"\w* father’s \w house|strong="H1004"\w*, \w who|strong="H6547"\w* \w were|strong="H3130"\w* \w in|strong="H1004"\w* \w the|strong="H5927"\w* land \w of|strong="H1004"\w* \w Canaan|strong="H3667"\w*, \w have|strong="H1004"\w* \w come|strong="H5927"\w* \w to|strong="H5927"\w* \w me|strong="H5046"\w*. +\v 32 \w These|strong="H3605"\w* \w men|strong="H3605"\w* \w are|strong="H1961"\w* \w shepherds|strong="H7462"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* keepers \w of|strong="H3605"\w* \w livestock|strong="H4735"\w*, \w and|strong="H6629"\w* \w they|strong="H3588"\w* \w have|strong="H1961"\w* \w brought|strong="H1961"\w* \w their|strong="H3605"\w* \w flocks|strong="H6629"\w*, \w and|strong="H6629"\w* \w their|strong="H3605"\w* \w herds|strong="H1241"\w*, \w and|strong="H6629"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H1961"\w*.’ +\v 33 \w It|strong="H7121"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w*, \w when|strong="H3588"\w* \w Pharaoh|strong="H6547"\w* \w summons|strong="H7121"\w* \w you|strong="H3588"\w*, \w and|strong="H6547"\w* \w will|strong="H1961"\w* say, ‘\w What|strong="H4100"\w* \w is|strong="H4100"\w* \w your|strong="H3588"\w* \w occupation|strong="H4639"\w*?’ +\v 34 \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H5650"\w* say, ‘\w Your|strong="H3605"\w* \w servants|strong="H5650"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* keepers \w of|strong="H3427"\w* \w livestock|strong="H4735"\w* \w from|strong="H5704"\w* \w our|strong="H3605"\w* \w youth|strong="H5271"\w* \w even|strong="H1571"\w* \w until|strong="H5704"\w* \w now|strong="H6258"\w*, \w both|strong="H1571"\w* \w we|strong="H3068"\w*, \w and|strong="H5650"\w* \w our|strong="H3605"\w* fathers:’ \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H1961"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* land \w of|strong="H3427"\w* \w Goshen|strong="H1657"\w*; \w for|strong="H3588"\w* \w every|strong="H3605"\w* \w shepherd|strong="H7462"\w* \w is|strong="H1571"\w* \w an|strong="H1961"\w* \w abomination|strong="H8441"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w Egyptians|strong="H4713"\w*.” +\c 47 +\p +\v 1 \w Then|strong="H3130"\w* \w Joseph|strong="H3130"\w* \w went|strong="H3130"\w* \w in|strong="H6629"\w* \w and|strong="H6629"\w* \w told|strong="H5046"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H6629"\w* said, “\w My|strong="H3605"\w* father \w and|strong="H6629"\w* \w my|strong="H3605"\w* brothers, \w with|strong="H3605"\w* \w their|strong="H3605"\w* \w flocks|strong="H6629"\w*, \w their|strong="H3605"\w* \w herds|strong="H1241"\w*, \w and|strong="H6629"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w they|strong="H3605"\w* own, \w have|strong="H3605"\w* come \w out|strong="H3605"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H3605"\w* \w Canaan|strong="H3667"\w*; \w and|strong="H6629"\w* \w behold|strong="H2005"\w*, \w they|strong="H3605"\w* \w are|strong="H1241"\w* \w in|strong="H6629"\w* \w the|strong="H3605"\w* land \w of|strong="H3605"\w* \w Goshen|strong="H1657"\w*.” +\v 2 \w From|strong="H6440"\w* \w among|strong="H7097"\w* \w his|strong="H3947"\w* brothers \w he|strong="H2568"\w* \w took|strong="H3947"\w* \w five|strong="H2568"\w* \w men|strong="H3947"\w*, \w and|strong="H2568"\w* \w presented|strong="H3322"\w* \w them|strong="H6440"\w* \w to|strong="H6440"\w* \w Pharaoh|strong="H6547"\w*. +\v 3 \w Pharaoh|strong="H6547"\w* said \w to|strong="H5650"\w* \w his|strong="H7462"\w* brothers, “\w What|strong="H4100"\w* \w is|strong="H4100"\w* \w your|strong="H1571"\w* \w occupation|strong="H4639"\w*?” +\p \w They|strong="H4100"\w* said \w to|strong="H5650"\w* \w Pharaoh|strong="H6547"\w*, “\w Your|strong="H1571"\w* \w servants|strong="H5650"\w* \w are|strong="H4100"\w* \w shepherds|strong="H7462"\w*, \w both|strong="H1571"\w* \w we|strong="H3068"\w*, \w and|strong="H5650"\w* \w our|strong="H5650"\w* fathers.” +\v 4 \w They|strong="H3588"\w* \w also|strong="H3588"\w* said \w to|strong="H5650"\w* \w Pharaoh|strong="H6547"\w*, “\w We|strong="H3588"\w* \w have|strong="H5650"\w* \w come|strong="H4994"\w* \w to|strong="H5650"\w* \w live|strong="H3427"\w* \w as|strong="H3588"\w* \w foreigners|strong="H1481"\w* \w in|strong="H3427"\w* \w the|strong="H3588"\w* land, \w for|strong="H3588"\w* \w there|strong="H3427"\w* \w is|strong="H5650"\w* no \w pasture|strong="H4829"\w* \w for|strong="H3588"\w* \w your|strong="H3588"\w* \w servants|strong="H5650"\w*’ \w flocks|strong="H6629"\w*. \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w famine|strong="H7458"\w* \w is|strong="H5650"\w* \w severe|strong="H3515"\w* \w in|strong="H3427"\w* \w the|strong="H3588"\w* land \w of|strong="H3427"\w* \w Canaan|strong="H3667"\w*. \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w please|strong="H4994"\w* \w let|strong="H4994"\w* \w your|strong="H3588"\w* \w servants|strong="H5650"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3588"\w* land \w of|strong="H3427"\w* \w Goshen|strong="H1657"\w*.” +\p +\v 5 \w Pharaoh|strong="H6547"\w* spoke \w to|strong="H6547"\w* \w Joseph|strong="H3130"\w*, saying, “\w Your|strong="H3130"\w* father \w and|strong="H6547"\w* \w your|strong="H3130"\w* brothers have come \w to|strong="H6547"\w* you. +\v 6 \w The|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H3427"\w* \w Egypt|strong="H4714"\w* \w is|strong="H3426"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*. \w Make|strong="H7760"\w* \w your|strong="H5921"\w* father \w and|strong="H4714"\w* \w your|strong="H5921"\w* brothers \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w best|strong="H4315"\w* \w of|strong="H3427"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*. \w Let|strong="H7760"\w* \w them|strong="H5921"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H3427"\w* \w Goshen|strong="H1657"\w*. \w If|strong="H3426"\w* \w you|strong="H6440"\w* \w know|strong="H3045"\w* \w any|strong="H3426"\w* \w able|strong="H2428"\w* \w men|strong="H2428"\w* \w among|strong="H5921"\w* \w them|strong="H5921"\w*, \w then|strong="H3045"\w* \w put|strong="H7760"\w* \w them|strong="H5921"\w* \w in|strong="H3427"\w* \w charge|strong="H5921"\w* \w of|strong="H3427"\w* \w my|strong="H7760"\w* \w livestock|strong="H4735"\w*.” +\p +\v 7 \w Joseph|strong="H3130"\w* \w brought|strong="H3130"\w* \w in|strong="H6440"\w* \w Jacob|strong="H3290"\w*, \w his|strong="H6440"\w* father, \w and|strong="H6440"\w* \w set|strong="H5975"\w* \w him|strong="H6440"\w* \w before|strong="H6440"\w* \w Pharaoh|strong="H6547"\w*; \w and|strong="H6440"\w* \w Jacob|strong="H3290"\w* \w blessed|strong="H1288"\w* \w Pharaoh|strong="H6547"\w*. +\v 8 \w Pharaoh|strong="H6547"\w* said \w to|strong="H3117"\w* \w Jacob|strong="H3290"\w*, “\w How|strong="H4100"\w* \w old|strong="H8141"\w* \w are|strong="H3117"\w* \w you|strong="H3117"\w*?” +\p +\v 9 \w Jacob|strong="H3290"\w* said \w to|strong="H1961"\w* \w Pharaoh|strong="H6547"\w*, “\w The|strong="H3117"\w* \w years|strong="H8141"\w* \w of|strong="H3117"\w* \w my|strong="H1961"\w* \w pilgrimage|strong="H4033"\w* \w are|strong="H3117"\w* \w one|strong="H3808"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w* \w years|strong="H8141"\w*. \w The|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w years|strong="H8141"\w* \w of|strong="H3117"\w* \w my|strong="H1961"\w* \w life|strong="H2416"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w few|strong="H4592"\w* \w and|strong="H3967"\w* \w evil|strong="H7451"\w*. \w They|strong="H3117"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* \w attained|strong="H5381"\w* \w to|strong="H1961"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w years|strong="H8141"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w life|strong="H2416"\w* \w of|strong="H3117"\w* \w my|strong="H1961"\w* fathers \w in|strong="H8141"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w their|strong="H1961"\w* \w pilgrimage|strong="H4033"\w*.” +\v 10 \w Jacob|strong="H3290"\w* \w blessed|strong="H1288"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H6440"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H6440"\w* \w Pharaoh|strong="H6547"\w*. +\p +\v 11 \w Joseph|strong="H3130"\w* \w placed|strong="H5414"\w* \w his|strong="H5414"\w* father \w and|strong="H4714"\w* \w his|strong="H5414"\w* brothers, \w and|strong="H4714"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w a|strong="H3068"\w* possession \w in|strong="H3427"\w* \w the|strong="H5414"\w* land \w of|strong="H3427"\w* \w Egypt|strong="H4714"\w*, \w in|strong="H3427"\w* \w the|strong="H5414"\w* \w best|strong="H4315"\w* \w of|strong="H3427"\w* \w the|strong="H5414"\w* land, \w in|strong="H3427"\w* \w the|strong="H5414"\w* land \w of|strong="H3427"\w* \w Rameses|strong="H7486"\w*, \w as|strong="H3427"\w* \w Pharaoh|strong="H6547"\w* \w had|strong="H3130"\w* \w commanded|strong="H6680"\w*. +\v 12 \w Joseph|strong="H3130"\w* \w provided|strong="H3557"\w* \w his|strong="H3605"\w* father, \w his|strong="H3605"\w* brothers, \w and|strong="H1004"\w* \w all|strong="H3605"\w* \w of|strong="H1004"\w* \w his|strong="H3605"\w* father’s \w household|strong="H1004"\w* \w with|strong="H1004"\w* \w bread|strong="H3899"\w*, \w according|strong="H6310"\w* \w to|strong="H1004"\w* \w the|strong="H3605"\w* sizes \w of|strong="H1004"\w* \w their|strong="H3605"\w* \w families|strong="H1004"\w*. +\p +\v 13 \w There|strong="H3605"\w* \w was|strong="H7458"\w* \w no|strong="H3605"\w* \w bread|strong="H3899"\w* \w in|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w*; \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w famine|strong="H7458"\w* \w was|strong="H7458"\w* \w very|strong="H3966"\w* \w severe|strong="H3515"\w*, \w so|strong="H3966"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w of|strong="H6440"\w* \w Egypt|strong="H4714"\w* \w and|strong="H3899"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w of|strong="H6440"\w* \w Canaan|strong="H3667"\w* \w fainted|strong="H3856"\w* \w by|strong="H6440"\w* \w reason|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w famine|strong="H7458"\w*. +\v 14 \w Joseph|strong="H3130"\w* \w gathered|strong="H3950"\w* \w up|strong="H3950"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w money|strong="H3701"\w* \w that|strong="H3605"\w* \w was|strong="H1004"\w* \w found|strong="H4672"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* land \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H3701"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* land \w of|strong="H1004"\w* \w Canaan|strong="H3667"\w*, \w for|strong="H4714"\w* \w the|strong="H3605"\w* \w grain|strong="H7668"\w* \w which|strong="H1992"\w* \w they|strong="H1992"\w* \w bought|strong="H7666"\w*: \w and|strong="H3701"\w* \w Joseph|strong="H3130"\w* \w brought|strong="H3130"\w* \w the|strong="H3605"\w* \w money|strong="H3701"\w* \w into|strong="H4714"\w* \w Pharaoh|strong="H6547"\w*’s \w house|strong="H1004"\w*. +\v 15 \w When|strong="H3588"\w* \w the|strong="H3605"\w* \w money|strong="H3701"\w* \w was|strong="H3130"\w* \w all|strong="H3605"\w* \w spent|strong="H8552"\w* \w in|strong="H4191"\w* \w the|strong="H3605"\w* land \w of|strong="H3605"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H3701"\w* \w in|strong="H4191"\w* \w the|strong="H3605"\w* land \w of|strong="H3605"\w* \w Canaan|strong="H3667"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Egyptians|strong="H4714"\w* \w came|strong="H4714"\w* \w to|strong="H4191"\w* \w Joseph|strong="H3130"\w*, \w and|strong="H3701"\w* said, “\w Give|strong="H3051"\w* \w us|strong="H3051"\w* \w bread|strong="H3899"\w*, \w for|strong="H3588"\w* \w why|strong="H4100"\w* \w should|strong="H4100"\w* \w we|strong="H3068"\w* \w die|strong="H4191"\w* \w in|strong="H4191"\w* \w your|strong="H3605"\w* \w presence|strong="H5048"\w*? \w For|strong="H3588"\w* \w our|strong="H3605"\w* \w money|strong="H3701"\w* fails.” +\p +\v 16 \w Joseph|strong="H3130"\w* said, “\w Give|strong="H5414"\w* \w me|strong="H5414"\w* \w your|strong="H5414"\w* \w livestock|strong="H4735"\w*; \w and|strong="H3701"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* food \w for|strong="H3701"\w* \w your|strong="H5414"\w* \w livestock|strong="H4735"\w*, if \w your|strong="H5414"\w* \w money|strong="H3701"\w* \w is|strong="H3701"\w* gone.” +\p +\v 17 \w They|strong="H8141"\w* \w brought|strong="H5414"\w* \w their|strong="H3605"\w* \w livestock|strong="H4735"\w* \w to|strong="H5414"\w* \w Joseph|strong="H3130"\w*, \w and|strong="H3899"\w* \w Joseph|strong="H3130"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w bread|strong="H3899"\w* \w in|strong="H8141"\w* \w exchange|strong="H5414"\w* \w for|strong="H3605"\w* \w the|strong="H3605"\w* \w horses|strong="H5483"\w*, \w and|strong="H3899"\w* \w for|strong="H3605"\w* \w the|strong="H3605"\w* \w flocks|strong="H6629"\w*, \w and|strong="H3899"\w* \w for|strong="H3605"\w* \w the|strong="H3605"\w* \w herds|strong="H1241"\w*, \w and|strong="H3899"\w* \w for|strong="H3605"\w* \w the|strong="H3605"\w* \w donkeys|strong="H2543"\w*: \w and|strong="H3899"\w* \w he|strong="H1931"\w* \w fed|strong="H5095"\w* \w them|strong="H5414"\w* \w with|strong="H3899"\w* \w bread|strong="H3899"\w* \w in|strong="H8141"\w* \w exchange|strong="H5414"\w* \w for|strong="H3605"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w livestock|strong="H4735"\w* \w for|strong="H3605"\w* \w that|strong="H3605"\w* \w year|strong="H8141"\w*. +\v 18 \w When|strong="H3588"\w* \w that|strong="H3588"\w* \w year|strong="H8141"\w* \w was|strong="H1931"\w* \w ended|strong="H8552"\w*, \w they|strong="H3588"\w* \w came|strong="H8141"\w* \w to|strong="H6440"\w* \w him|strong="H6440"\w* \w the|strong="H6440"\w* \w second|strong="H8145"\w* \w year|strong="H8141"\w*, \w and|strong="H3701"\w* said \w to|strong="H6440"\w* \w him|strong="H6440"\w*, “\w We|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w hide|strong="H3582"\w* \w from|strong="H6440"\w* \w my|strong="H3588"\w* lord \w how|strong="H3588"\w* \w our|strong="H3588"\w* \w money|strong="H3701"\w* \w is|strong="H1931"\w* \w all|strong="H8552"\w* \w spent|strong="H8552"\w*, \w and|strong="H3701"\w* \w the|strong="H6440"\w* \w herds|strong="H4735"\w* \w of|strong="H8141"\w* \w livestock|strong="H4735"\w* \w are|strong="H8141"\w* \w my|strong="H3588"\w* lord’s. \w There|strong="H7604"\w* \w is|strong="H1931"\w* \w nothing|strong="H3808"\w* \w left|strong="H7604"\w* \w in|strong="H8141"\w* \w the|strong="H6440"\w* \w sight|strong="H6440"\w* \w of|strong="H8141"\w* \w my|strong="H3588"\w* lord, \w but|strong="H3588"\w* \w our|strong="H3588"\w* \w bodies|strong="H1472"\w*, \w and|strong="H3701"\w* \w our|strong="H3588"\w* lands. +\v 19 \w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w we|strong="H3068"\w* \w die|strong="H4191"\w* \w before|strong="H5869"\w* \w your|strong="H5414"\w* \w eyes|strong="H5869"\w*, \w both|strong="H1571"\w* \w we|strong="H3068"\w* \w and|strong="H3899"\w* \w our|strong="H5414"\w* land? \w Buy|strong="H7069"\w* \w us|strong="H5414"\w* \w and|strong="H3899"\w* \w our|strong="H5414"\w* land \w for|strong="H5650"\w* \w bread|strong="H3899"\w*, \w and|strong="H3899"\w* \w we|strong="H3068"\w* \w and|strong="H3899"\w* \w our|strong="H5414"\w* land \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w servants|strong="H5650"\w* \w to|strong="H4191"\w* \w Pharaoh|strong="H6547"\w*. \w Give|strong="H5414"\w* \w us|strong="H5414"\w* \w seed|strong="H2233"\w*, \w that|strong="H5414"\w* \w we|strong="H3068"\w* \w may|strong="H1961"\w* \w live|strong="H2421"\w*, \w and|strong="H3899"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*, \w and|strong="H3899"\w* \w that|strong="H5414"\w* \w the|strong="H5414"\w* land won’t \w be|strong="H1961"\w* \w desolate|strong="H3456"\w*.” +\p +\v 20 \w So|strong="H1961"\w* \w Joseph|strong="H3130"\w* \w bought|strong="H7069"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H7704"\w* \w of|strong="H7704"\w* \w Egypt|strong="H4714"\w* \w for|strong="H3588"\w* \w Pharaoh|strong="H6547"\w*, \w for|strong="H3588"\w* \w every|strong="H3605"\w* \w man|strong="H3605"\w* \w of|strong="H7704"\w* \w the|strong="H3605"\w* \w Egyptians|strong="H4714"\w* \w sold|strong="H4376"\w* \w his|strong="H3605"\w* \w field|strong="H7704"\w*, \w because|strong="H3588"\w* \w the|strong="H3605"\w* \w famine|strong="H7458"\w* \w was|strong="H1961"\w* \w severe|strong="H2388"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, \w and|strong="H4714"\w* \w the|strong="H3605"\w* \w land|strong="H7704"\w* \w became|strong="H1961"\w* \w Pharaoh|strong="H6547"\w*’s. +\v 21 \w As|strong="H5704"\w* \w for|strong="H5704"\w* \w the|strong="H5704"\w* \w people|strong="H5971"\w*, \w he|strong="H5704"\w* moved \w them|strong="H5674"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w cities|strong="H5892"\w* \w from|strong="H5704"\w* \w one|strong="H5892"\w* \w end|strong="H7097"\w* \w of|strong="H5892"\w* \w the|strong="H5704"\w* \w border|strong="H1366"\w* \w of|strong="H5892"\w* \w Egypt|strong="H4714"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w other|strong="H7097"\w* \w end|strong="H7097"\w* \w of|strong="H5892"\w* \w it|strong="H5704"\w*. +\v 22 \w Only|strong="H7535"\w* \w he|strong="H3588"\w* didn’t \w buy|strong="H7069"\w* \w the|strong="H5921"\w* land \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w*, \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w* \w had|strong="H3588"\w* \w a|strong="H3068"\w* \w portion|strong="H2706"\w* \w from|strong="H5921"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H3548"\w* ate \w their|strong="H5414"\w* \w portion|strong="H2706"\w* \w which|strong="H3548"\w* \w Pharaoh|strong="H6547"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w*. \w That|strong="H3588"\w* \w is|strong="H3651"\w* \w why|strong="H5921"\w* \w they|strong="H3588"\w* didn’t \w sell|strong="H4376"\w* \w their|strong="H5414"\w* land. +\v 23 \w Then|strong="H3117"\w* \w Joseph|strong="H3130"\w* said \w to|strong="H3117"\w* \w the|strong="H3117"\w* \w people|strong="H5971"\w*, “\w Behold|strong="H2005"\w*, \w I|strong="H3117"\w* \w have|strong="H5971"\w* \w bought|strong="H7069"\w* \w you|strong="H3117"\w* \w and|strong="H3117"\w* \w your|strong="H2232"\w* land \w today|strong="H3117"\w* \w for|strong="H3117"\w* \w Pharaoh|strong="H6547"\w*. \w Behold|strong="H2005"\w*, \w here|strong="H2005"\w* \w is|strong="H3117"\w* \w seed|strong="H2233"\w* \w for|strong="H3117"\w* \w you|strong="H3117"\w*, \w and|strong="H3117"\w* \w you|strong="H3117"\w* \w shall|strong="H5971"\w* \w sow|strong="H2232"\w* \w the|strong="H3117"\w* land. +\v 24 \w It|strong="H5414"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w at|strong="H1004"\w* \w the|strong="H5414"\w* \w harvests|strong="H8393"\w*, \w that|strong="H5414"\w* \w you|strong="H5414"\w* \w shall|strong="H1004"\w* \w give|strong="H5414"\w* \w a|strong="H3068"\w* \w fifth|strong="H2549"\w* \w to|strong="H1961"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H3027"\w* four \w parts|strong="H3027"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w your|strong="H5414"\w* \w own|strong="H1961"\w*, \w for|strong="H3027"\w* \w seed|strong="H2233"\w* \w of|strong="H1004"\w* \w the|strong="H5414"\w* \w field|strong="H7704"\w*, \w for|strong="H3027"\w* \w your|strong="H5414"\w* \w food|strong="H1004"\w*, \w for|strong="H3027"\w* \w them|strong="H5414"\w* \w of|strong="H1004"\w* \w your|strong="H5414"\w* \w households|strong="H1004"\w*, \w and|strong="H3027"\w* \w for|strong="H3027"\w* \w food|strong="H1004"\w* \w for|strong="H3027"\w* \w your|strong="H5414"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*.” +\p +\v 25 They said, “\w You|strong="H4672"\w* \w have|strong="H1961"\w* \w saved|strong="H2421"\w* \w our|strong="H5650"\w* \w lives|strong="H2421"\w*! \w Let|strong="H1961"\w* \w us|strong="H1961"\w* \w find|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H4672"\w* \w the|strong="H1961"\w* \w sight|strong="H5869"\w* \w of|strong="H5869"\w* \w my|strong="H1961"\w* lord, \w and|strong="H5869"\w* \w we|strong="H3068"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w Pharaoh|strong="H6547"\w*’s \w servants|strong="H5650"\w*.” +\p +\v 26 \w Joseph|strong="H3130"\w* \w made|strong="H7760"\w* \w it|strong="H7760"\w* \w a|strong="H3068"\w* \w statute|strong="H2706"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, \w that|strong="H3117"\w* \w Pharaoh|strong="H6547"\w* \w should|strong="H3117"\w* \w have|strong="H1961"\w* \w the|strong="H5921"\w* \w fifth|strong="H2569"\w*. \w Only|strong="H7535"\w* \w the|strong="H5921"\w* land \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w* alone didn’t \w become|strong="H1961"\w* \w Pharaoh|strong="H6547"\w*’s. +\p +\v 27 \w Israel|strong="H3478"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3427"\w* land \w of|strong="H3427"\w* \w Egypt|strong="H4714"\w*, \w in|strong="H3427"\w* \w the|strong="H3427"\w* land \w of|strong="H3427"\w* \w Goshen|strong="H1657"\w*; \w and|strong="H3478"\w* \w they|strong="H3478"\w* got themselves possessions \w therein|strong="H3427"\w*, \w and|strong="H3478"\w* \w were|strong="H3478"\w* \w fruitful|strong="H6509"\w*, \w and|strong="H3478"\w* \w multiplied|strong="H7235"\w* \w exceedingly|strong="H3966"\w*. +\v 28 \w Jacob|strong="H3290"\w* \w lived|strong="H2421"\w* \w in|strong="H8141"\w* \w the|strong="H3117"\w* land \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w* \w seventeen|strong="H7651"\w* \w years|strong="H8141"\w*. \w So|strong="H1961"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w Jacob|strong="H3290"\w*, \w the|strong="H3117"\w* \w years|strong="H8141"\w* \w of|strong="H3117"\w* \w his|strong="H1961"\w* \w life|strong="H2416"\w*, \w were|strong="H1961"\w* \w one|strong="H2421"\w* \w hundred|strong="H3967"\w* forty-seven \w years|strong="H8141"\w*. +\v 29 \w The|strong="H6213"\w* \w time|strong="H3117"\w* \w came|strong="H7126"\w* \w near|strong="H7126"\w* \w that|strong="H3117"\w* \w Israel|strong="H3478"\w* \w must|strong="H4191"\w* \w die|strong="H4191"\w*, \w and|strong="H1121"\w* \w he|strong="H3117"\w* \w called|strong="H7121"\w* \w his|strong="H7760"\w* \w son|strong="H1121"\w* \w Joseph|strong="H3130"\w*, \w and|strong="H1121"\w* \w said|strong="H7121"\w* \w to|strong="H3478"\w* \w him|strong="H7121"\w*, “\w If|strong="H1121"\w* \w now|strong="H4994"\w* \w I|strong="H3117"\w* \w have|strong="H5869"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H3478"\w* \w your|strong="H7760"\w* \w sight|strong="H5869"\w*, \w please|strong="H4994"\w* \w put|strong="H7760"\w* \w your|strong="H7760"\w* \w hand|strong="H3027"\w* \w under|strong="H8478"\w* \w my|strong="H7760"\w* \w thigh|strong="H3409"\w*, \w and|strong="H1121"\w* \w deal|strong="H6213"\w* \w kindly|strong="H2617"\w* \w and|strong="H1121"\w* \w truly|strong="H6213"\w* \w with|strong="H6213"\w* \w me|strong="H4994"\w*. \w Please|strong="H4994"\w* don’t \w bury|strong="H6912"\w* \w me|strong="H4994"\w* \w in|strong="H3478"\w* \w Egypt|strong="H4714"\w*, +\v 30 \w but|strong="H5973"\w* \w when|strong="H6213"\w* \w I|strong="H1697"\w* \w sleep|strong="H7901"\w* \w with|strong="H5973"\w* \w my|strong="H5375"\w* fathers, \w you|strong="H6213"\w* \w shall|strong="H4714"\w* \w carry|strong="H5375"\w* \w me|strong="H6213"\w* \w out|strong="H6213"\w* \w of|strong="H1697"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H4714"\w* \w bury|strong="H6912"\w* \w me|strong="H6213"\w* \w in|strong="H6213"\w* \w their|strong="H5375"\w* \w burying|strong="H6912"\w* \w place|strong="H6900"\w*.” +\p Joseph \w said|strong="H1697"\w*, “\w I|strong="H1697"\w* \w will|strong="H4714"\w* \w do|strong="H6213"\w* \w as|strong="H1697"\w* \w you|strong="H6213"\w* \w have|strong="H1697"\w* \w said|strong="H1697"\w*.” +\p +\v 31 \w Israel|strong="H3478"\w* said, “\w Swear|strong="H7650"\w* \w to|strong="H3478"\w* \w me|strong="H5921"\w*,” \w and|strong="H3478"\w* \w he|strong="H5921"\w* \w swore|strong="H7650"\w* \w to|strong="H3478"\w* \w him|strong="H5921"\w*. \w Then|strong="H7218"\w* \w Israel|strong="H3478"\w* \w bowed|strong="H7812"\w* \w himself|strong="H7812"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w bed|strong="H4296"\w*’s \w head|strong="H7218"\w*. +\c 48 +\p +\v 1 \w After|strong="H1961"\w* \w these|strong="H3947"\w* \w things|strong="H1697"\w*, someone \w said|strong="H1697"\w* \w to|strong="H1961"\w* \w Joseph|strong="H3130"\w*, “\w Behold|strong="H2009"\w*, \w your|strong="H3947"\w* \w father|strong="H1121"\w* \w is|strong="H1697"\w* \w sick|strong="H2470"\w*.” \w He|strong="H8147"\w* \w took|strong="H3947"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w* \w his|strong="H3947"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w*, \w Manasseh|strong="H4519"\w* \w and|strong="H1121"\w* Ephraim. +\v 2 Someone \w told|strong="H5046"\w* \w Jacob|strong="H3290"\w*, \w and|strong="H1121"\w* said, “\w Behold|strong="H2009"\w*, \w your|strong="H5921"\w* \w son|strong="H1121"\w* \w Joseph|strong="H3130"\w* comes \w to|strong="H3478"\w* \w you|strong="H5921"\w*,” \w and|strong="H1121"\w* \w Israel|strong="H3478"\w* \w strengthened|strong="H2388"\w* \w himself|strong="H2388"\w*, \w and|strong="H1121"\w* \w sat|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w bed|strong="H4296"\w*. +\v 3 \w Jacob|strong="H3290"\w* said \w to|strong="H7200"\w* \w Joseph|strong="H3130"\w*, “God \w Almighty|strong="H7706"\w* \w appeared|strong="H7200"\w* \w to|strong="H7200"\w* \w me|strong="H7200"\w* \w at|strong="H7200"\w* \w Luz|strong="H3870"\w* \w in|strong="H7200"\w* \w the|strong="H7200"\w* land \w of|strong="H7200"\w* \w Canaan|strong="H3667"\w*, \w and|strong="H7200"\w* \w blessed|strong="H1288"\w* \w me|strong="H7200"\w*, +\v 4 \w and|strong="H5971"\w* said \w to|strong="H5414"\w* \w me|strong="H5414"\w*, ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H5971"\w* \w make|strong="H5414"\w* \w you|strong="H5414"\w* \w fruitful|strong="H6509"\w*, \w and|strong="H5971"\w* \w multiply|strong="H7235"\w* \w you|strong="H5414"\w*, \w and|strong="H5971"\w* \w I|strong="H2005"\w* \w will|strong="H5971"\w* \w make|strong="H5414"\w* \w of|strong="H2233"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w company|strong="H6951"\w* \w of|strong="H2233"\w* \w peoples|strong="H5971"\w*, \w and|strong="H5971"\w* \w will|strong="H5971"\w* \w give|strong="H5414"\w* \w this|strong="H2063"\w* land \w to|strong="H5414"\w* \w your|strong="H5414"\w* \w offspring|strong="H2233"\w* \w after|strong="H2233"\w* \w you|strong="H5414"\w* \w for|strong="H5414"\w* \w an|strong="H5414"\w* \w everlasting|strong="H5769"\w* \w possession|strong="H2233"\w*.’ +\v 5 \w Now|strong="H6258"\w* \w your|strong="H1961"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w*, \w who|strong="H1121"\w* \w were|strong="H1961"\w* \w born|strong="H3205"\w* \w to|strong="H5704"\w* \w you|strong="H5704"\w* \w in|strong="H1121"\w* \w the|strong="H3205"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w* \w before|strong="H5704"\w* \w I|strong="H5704"\w* \w came|strong="H1961"\w* \w to|strong="H5704"\w* \w you|strong="H5704"\w* \w into|strong="H4714"\w* \w Egypt|strong="H4714"\w*, \w are|strong="H1992"\w* mine; Ephraim \w and|strong="H1121"\w* \w Manasseh|strong="H4519"\w*, \w even|strong="H5704"\w* \w as|strong="H5704"\w* \w Reuben|strong="H7205"\w* \w and|strong="H1121"\w* \w Simeon|strong="H8095"\w*, \w will|strong="H1961"\w* \w be|strong="H1961"\w* mine. +\v 6 \w Your|strong="H5921"\w* \w offspring|strong="H4138"\w*, \w whom|strong="H7121"\w* \w you|strong="H5921"\w* \w become|strong="H1961"\w* \w the|strong="H5921"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w after|strong="H5921"\w* \w them|strong="H5921"\w*, \w will|strong="H1961"\w* \w be|strong="H1961"\w* yours. \w They|strong="H5921"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w called|strong="H7121"\w* \w after|strong="H5921"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H3205"\w* \w their|strong="H5921"\w* brothers \w in|strong="H5921"\w* \w their|strong="H5921"\w* \w inheritance|strong="H5159"\w*. +\v 7 \w As|strong="H8033"\w* \w for|strong="H5921"\w* \w me|strong="H5921"\w*, \w when|strong="H5921"\w* \w I|strong="H5921"\w* came \w from|strong="H5921"\w* \w Paddan|strong="H6307"\w*, \w Rachel|strong="H7354"\w* \w died|strong="H4191"\w* \w beside|strong="H5921"\w* \w me|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H1870"\w* \w Canaan|strong="H3667"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w*, \w when|strong="H5921"\w* \w there|strong="H8033"\w* \w was|strong="H1931"\w* \w still|strong="H5750"\w* \w some|strong="H3530"\w* \w distance|strong="H3530"\w* \w to|strong="H4191"\w* \w come|strong="H5750"\w* \w to|strong="H4191"\w* Ephrath, \w and|strong="H1870"\w* \w I|strong="H5921"\w* \w buried|strong="H6912"\w* \w her|strong="H5921"\w* \w there|strong="H8033"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w* \w to|strong="H4191"\w* Ephrath (\w also|strong="H5750"\w* \w called|strong="H8033"\w* \w Bethlehem|strong="H1035"\w*).” +\p +\v 8 \w Israel|strong="H3478"\w* \w saw|strong="H7200"\w* \w Joseph|strong="H3130"\w*’s \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* said, “\w Who|strong="H4310"\w* \w are|strong="H1121"\w* these?” +\p +\v 9 \w Joseph|strong="H3130"\w* said \w to|strong="H5414"\w* \w his|strong="H5414"\w* \w father|strong="H1121"\w*, “\w They|strong="H1992"\w* \w are|strong="H1992"\w* \w my|strong="H5414"\w* \w sons|strong="H1121"\w*, \w whom|strong="H1992"\w* \w God|strong="H5414"\w* \w has|strong="H2088"\w* \w given|strong="H5414"\w* \w me|strong="H5414"\w* \w here|strong="H2088"\w*.” +\p \w He|strong="H5414"\w* said, “\w Please|strong="H4994"\w* \w bring|strong="H3947"\w* \w them|strong="H5414"\w* \w to|strong="H5414"\w* \w me|strong="H5414"\w*, \w and|strong="H1121"\w* \w I|strong="H5414"\w* \w will|strong="H1121"\w* \w bless|strong="H1288"\w* \w them|strong="H5414"\w*.” +\v 10 \w Now|strong="H3478"\w* \w the|strong="H7200"\w* \w eyes|strong="H5869"\w* \w of|strong="H5869"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w dim|strong="H3513"\w* \w for|strong="H3478"\w* \w age|strong="H2207"\w*, \w so|strong="H3808"\w* \w that|strong="H7200"\w* \w he|strong="H3808"\w* couldn’t \w see|strong="H7200"\w* \w well|strong="H5869"\w*. \w Joseph|strong="H3808"\w* \w brought|strong="H5066"\w* \w them|strong="H7200"\w* \w near|strong="H5066"\w* \w to|strong="H3478"\w* \w him|strong="H7200"\w*; \w and|strong="H3478"\w* \w he|strong="H3808"\w* \w kissed|strong="H5401"\w* \w them|strong="H7200"\w*, \w and|strong="H3478"\w* \w embraced|strong="H2263"\w* \w them|strong="H7200"\w*. +\v 11 \w Israel|strong="H3478"\w* said \w to|strong="H3478"\w* \w Joseph|strong="H3130"\w*, “\w I|strong="H2009"\w* didn’t \w think|strong="H7200"\w* \w I|strong="H2009"\w* \w would|strong="H3478"\w* \w see|strong="H7200"\w* \w your|strong="H6440"\w* \w face|strong="H6440"\w*, \w and|strong="H3478"\w* \w behold|strong="H2009"\w*, \w God|strong="H3808"\w* \w has|strong="H3478"\w* \w let|strong="H3808"\w* \w me|strong="H6440"\w* \w see|strong="H7200"\w* \w your|strong="H6440"\w* \w offspring|strong="H2233"\w* \w also|strong="H1571"\w*.” +\v 12 \w Joseph|strong="H3130"\w* \w brought|strong="H3318"\w* \w them|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w between|strong="H5973"\w* \w his|strong="H3318"\w* \w knees|strong="H1290"\w*, \w and|strong="H3318"\w* \w he|strong="H3318"\w* \w bowed|strong="H7812"\w* \w himself|strong="H7812"\w* \w with|strong="H5973"\w* \w his|strong="H3318"\w* face \w to|strong="H3318"\w* \w the|strong="H3318"\w* earth. +\v 13 \w Joseph|strong="H3130"\w* \w took|strong="H3947"\w* \w them|strong="H3947"\w* \w both|strong="H8147"\w*, Ephraim \w in|strong="H3478"\w* \w his|strong="H3947"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w toward|strong="H3225"\w* \w Israel|strong="H3478"\w*’s \w left|strong="H8040"\w* \w hand|strong="H3225"\w*, \w and|strong="H3478"\w* \w Manasseh|strong="H4519"\w* \w in|strong="H3478"\w* \w his|strong="H3947"\w* \w left|strong="H8040"\w* \w hand|strong="H3225"\w* \w toward|strong="H3225"\w* \w Israel|strong="H3478"\w*’s \w right|strong="H3225"\w* \w hand|strong="H3225"\w*, \w and|strong="H3478"\w* \w brought|strong="H3947"\w* \w them|strong="H3947"\w* \w near|strong="H5066"\w* \w to|strong="H3478"\w* \w him|strong="H3947"\w*. +\v 14 \w Israel|strong="H3478"\w* \w stretched|strong="H7971"\w* \w out|strong="H7971"\w* \w his|strong="H7971"\w* \w right|strong="H3225"\w* \w hand|strong="H3027"\w*, \w and|strong="H3478"\w* \w laid|strong="H7896"\w* \w it|strong="H1931"\w* \w on|strong="H5921"\w* Ephraim’s \w head|strong="H7218"\w*, \w who|strong="H1931"\w* \w was|strong="H3478"\w* \w the|strong="H5921"\w* \w younger|strong="H6810"\w*, \w and|strong="H3478"\w* \w his|strong="H7971"\w* \w left|strong="H8040"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w Manasseh|strong="H4519"\w*’s \w head|strong="H7218"\w*, \w guiding|strong="H7919"\w* \w his|strong="H7971"\w* \w hands|strong="H3027"\w* knowingly, \w for|strong="H3588"\w* \w Manasseh|strong="H4519"\w* \w was|strong="H3478"\w* \w the|strong="H5921"\w* \w firstborn|strong="H1060"\w*. +\v 15 \w He|strong="H3117"\w* \w blessed|strong="H1288"\w* \w Joseph|strong="H3130"\w*, \w and|strong="H1980"\w* said, +\q1 “\w The|strong="H6440"\w* God \w before|strong="H6440"\w* \w whom|strong="H6440"\w* \w my|strong="H7462"\w* fathers Abraham \w and|strong="H1980"\w* \w Isaac|strong="H3327"\w* \w walked|strong="H1980"\w*, +\q1 \w the|strong="H6440"\w* God \w who|strong="H2088"\w* \w has|strong="H3117"\w* \w fed|strong="H7462"\w* \w me|strong="H6440"\w* \w all|strong="H5704"\w* \w my|strong="H7462"\w* \w life|strong="H3117"\w* \w long|strong="H5704"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, +\q1 +\v 16 \w the|strong="H3605"\w* \w angel|strong="H4397"\w* \w who|strong="H3605"\w* \w has|strong="H3605"\w* \w redeemed|strong="H1350"\w* \w me|strong="H7121"\w* \w from|strong="H7451"\w* \w all|strong="H3605"\w* \w evil|strong="H7451"\w*, \w bless|strong="H1288"\w* \w the|strong="H3605"\w* \w lads|strong="H5288"\w*, +\q1 \w and|strong="H5288"\w* \w let|strong="H1350"\w* \w my|strong="H3605"\w* \w name|strong="H8034"\w* \w be|strong="H8034"\w* \w named|strong="H7121"\w* \w on|strong="H7451"\w* \w them|strong="H7121"\w*, +\q1 \w and|strong="H5288"\w* \w the|strong="H3605"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w my|strong="H3605"\w* fathers Abraham \w and|strong="H5288"\w* \w Isaac|strong="H3327"\w*. +\q1 \w Let|strong="H1350"\w* \w them|strong="H7121"\w* \w grow|strong="H1711"\w* \w into|strong="H4397"\w* \w a|strong="H3068"\w* \w multitude|strong="H7230"\w* \w upon|strong="H7121"\w* \w the|strong="H3605"\w* earth.” +\p +\v 17 \w When|strong="H3588"\w* \w Joseph|strong="H3130"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w his|strong="H5921"\w* father \w laid|strong="H7896"\w* \w his|strong="H5921"\w* \w right|strong="H3225"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H3027"\w* Ephraim, \w it|strong="H5921"\w* \w displeased|strong="H7489"\w* \w him|strong="H5921"\w*. \w He|strong="H3588"\w* \w held|strong="H8551"\w* \w up|strong="H7200"\w* \w his|strong="H5921"\w* father’s \w hand|strong="H3027"\w*, \w to|strong="H5921"\w* \w remove|strong="H5493"\w* \w it|strong="H5921"\w* \w from|strong="H5493"\w* Ephraim’s \w head|strong="H7218"\w* \w to|strong="H5921"\w* \w Manasseh|strong="H4519"\w*’s \w head|strong="H7218"\w*. +\v 18 \w Joseph|strong="H3130"\w* \w said|strong="H3651"\w* \w to|strong="H5921"\w* \w his|strong="H7760"\w* father, “\w Not|strong="H3808"\w* \w so|strong="H3651"\w*, \w my|strong="H7760"\w* father, \w for|strong="H3588"\w* \w this|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H5921"\w* \w firstborn|strong="H1060"\w*. \w Put|strong="H7760"\w* \w your|strong="H5921"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w on|strong="H5921"\w* \w his|strong="H7760"\w* \w head|strong="H7218"\w*.” +\p +\v 19 \w His|strong="H3045"\w* \w father|strong="H1121"\w* \w refused|strong="H3985"\w*, \w and|strong="H1121"\w* said, “\w I|strong="H3045"\w* \w know|strong="H3045"\w*, \w my|strong="H3045"\w* \w son|strong="H1121"\w*, \w I|strong="H3045"\w* \w know|strong="H3045"\w*. \w He|strong="H1931"\w* \w also|strong="H1571"\w* \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w*, \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w also|strong="H1571"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w great|strong="H1431"\w*. \w However|strong="H1571"\w*, \w his|strong="H3045"\w* \w younger|strong="H6996"\w* brother \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w greater|strong="H1431"\w* \w than|strong="H4480"\w* \w he|strong="H1931"\w*, \w and|strong="H1121"\w* \w his|strong="H3045"\w* \w offspring|strong="H2233"\w* \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w multitude|strong="H4393"\w* \w of|strong="H1121"\w* \w nations|strong="H1471"\w*.” +\v 20 \w He|strong="H1931"\w* \w blessed|strong="H1288"\w* \w them|strong="H6440"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, saying, “\w Israel|strong="H3478"\w* \w will|strong="H3478"\w* \w bless|strong="H1288"\w* \w in|strong="H3478"\w* \w your|strong="H7760"\w* name, saying, ‘God \w make|strong="H7760"\w* \w you|strong="H6440"\w* \w as|strong="H3117"\w* Ephraim \w and|strong="H3478"\w* \w as|strong="H3117"\w* \w Manasseh|strong="H4519"\w*’” \w He|strong="H1931"\w* \w set|strong="H7760"\w* Ephraim \w before|strong="H6440"\w* \w Manasseh|strong="H4519"\w*. +\v 21 \w Israel|strong="H3478"\w* said \w to|strong="H7725"\w* \w Joseph|strong="H3130"\w*, “\w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w am|strong="H1961"\w* \w dying|strong="H4191"\w*, \w but|strong="H1961"\w* God \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H7725"\w*, \w and|strong="H3478"\w* \w bring|strong="H7725"\w* \w you|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H7725"\w* land \w of|strong="H4191"\w* \w your|strong="H7725"\w* fathers. +\v 22 Moreover \w I|strong="H5414"\w* \w have|strong="H3027"\w* \w given|strong="H5414"\w* \w to|strong="H5921"\w* \w you|strong="H5414"\w* \w one|strong="H3027"\w* \w portion|strong="H7926"\w* \w above|strong="H5921"\w* \w your|strong="H5414"\w* brothers, \w which|strong="H2719"\w* \w I|strong="H5414"\w* \w took|strong="H3947"\w* \w out|strong="H5414"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* Amorite \w with|strong="H5921"\w* \w my|strong="H5414"\w* \w sword|strong="H2719"\w* \w and|strong="H3027"\w* \w with|strong="H5921"\w* \w my|strong="H5414"\w* \w bow|strong="H7198"\w*.” +\c 49 +\p +\v 1 \w Jacob|strong="H3290"\w* \w called|strong="H7121"\w* \w to|strong="H3117"\w* \w his|strong="H7121"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w said|strong="H7121"\w*: “Gather yourselves \w together|strong="H7121"\w*, \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w may|strong="H1121"\w* \w tell|strong="H5046"\w* \w you|strong="H3117"\w* \w that|strong="H3117"\w* \w which|strong="H3117"\w* \w will|strong="H1121"\w* \w happen|strong="H7122"\w* \w to|strong="H3117"\w* \w you|strong="H3117"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w to|strong="H3117"\w* \w come|strong="H7122"\w*. +\q1 +\v 2 \w Assemble|strong="H6908"\w* \w yourselves|strong="H6908"\w*, \w and|strong="H1121"\w* \w hear|strong="H8085"\w*, \w you|strong="H8085"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jacob|strong="H3290"\w*. +\q2 \w Listen|strong="H8085"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w your|strong="H8085"\w* \w father|strong="H1121"\w*. +\b +\q1 +\v 3 “\w Reuben|strong="H7205"\w*, \w you|strong="H3581"\w* \w are|strong="H5794"\w* \w my|strong="H3581"\w* \w firstborn|strong="H1060"\w*, \w my|strong="H3581"\w* \w might|strong="H3581"\w*, \w and|strong="H7205"\w* \w the|strong="H7205"\w* \w beginning|strong="H7225"\w* \w of|strong="H1060"\w* \w my|strong="H3581"\w* \w strength|strong="H3581"\w*, +\q2 excelling \w in|strong="H1060"\w* \w dignity|strong="H7613"\w*, \w and|strong="H7205"\w* excelling \w in|strong="H1060"\w* \w power|strong="H3581"\w*. +\q1 +\v 4 Boiling \w over|strong="H3498"\w* \w like|strong="H5927"\w* \w water|strong="H4325"\w*, \w you|strong="H3588"\w* \w shall|strong="H4325"\w* \w not|strong="H3588"\w* \w excel|strong="H3498"\w*, +\q2 \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w your|strong="H3588"\w* father’s \w bed|strong="H4904"\w*, +\q2 \w then|strong="H3588"\w* \w defiled|strong="H2490"\w* \w it|strong="H3588"\w*. \w He|strong="H3588"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w my|strong="H2490"\w* \w couch|strong="H3326"\w*. +\b +\q1 +\v 5 “\w Simeon|strong="H8095"\w* \w and|strong="H2555"\w* \w Levi|strong="H3878"\w* \w are|strong="H3627"\w* brothers. +\q2 Their \w swords|strong="H4380"\w* \w are|strong="H3627"\w* \w weapons|strong="H3627"\w* \w of|strong="H3627"\w* \w violence|strong="H2555"\w*. +\q1 +\v 6 \w My|strong="H3588"\w* \w soul|strong="H5315"\w*, don’t come \w into|strong="H3519"\w* \w their|strong="H3588"\w* \w council|strong="H5475"\w*. +\q2 \w My|strong="H3588"\w* \w glory|strong="H3519"\w*, don’t \w be|strong="H5315"\w* \w united|strong="H3161"\w* \w to|strong="H5315"\w* \w their|strong="H3588"\w* \w assembly|strong="H6951"\w*; +\q1 \w for|strong="H3588"\w* \w in|strong="H5315"\w* \w their|strong="H3588"\w* anger \w they|strong="H3588"\w* \w killed|strong="H2026"\w* \w men|strong="H5315"\w*. +\q2 \w In|strong="H5315"\w* \w their|strong="H3588"\w* \w self-will|strong="H7522"\w* \w they|strong="H3588"\w* hamstrung \w cattle|strong="H7794"\w*. +\q1 +\v 7 Cursed \w be|strong="H3478"\w* \w their|strong="H3588"\w* \w anger|strong="H5678"\w*, \w for|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H3478"\w* \w fierce|strong="H5794"\w*; +\q2 \w and|strong="H3478"\w* \w their|strong="H3588"\w* \w wrath|strong="H5678"\w*, \w for|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H3478"\w* \w cruel|strong="H7185"\w*. +\q1 \w I|strong="H3588"\w* \w will|strong="H3478"\w* \w divide|strong="H2505"\w* \w them|strong="H6327"\w* \w in|strong="H3478"\w* \w Jacob|strong="H3290"\w*, +\q2 \w and|strong="H3478"\w* \w scatter|strong="H6327"\w* \w them|strong="H6327"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\b +\q1 +\v 8 “\w Judah|strong="H3063"\w*, \w your|strong="H3027"\w* \w brothers|strong="H1121"\w* \w will|strong="H1121"\w* \w praise|strong="H3034"\w* \w you|strong="H3034"\w*. +\q2 \w Your|strong="H3027"\w* \w hand|strong="H3027"\w* \w will|strong="H1121"\w* \w be|strong="H3027"\w* \w on|strong="H3027"\w* \w the|strong="H7812"\w* \w neck|strong="H6203"\w* \w of|strong="H1121"\w* \w your|strong="H3027"\w* \w enemies|strong="H3027"\w*. +\q2 \w Your|strong="H3027"\w* \w father|strong="H1121"\w*’s \w sons|strong="H1121"\w* \w will|strong="H1121"\w* \w bow|strong="H7812"\w* \w down|strong="H7812"\w* \w before|strong="H3063"\w* \w you|strong="H3034"\w*. +\q1 +\v 9 \w Judah|strong="H3063"\w* \w is|strong="H4310"\w* \w a|strong="H3068"\w* \w lion|strong="H3833"\w*’s \w cub|strong="H1482"\w*. +\q2 \w From|strong="H5927"\w* \w the|strong="H5927"\w* \w prey|strong="H2964"\w*, \w my|strong="H6965"\w* \w son|strong="H1121"\w*, \w you|strong="H6965"\w* \w have|strong="H1121"\w* \w gone|strong="H5927"\w* \w up|strong="H5927"\w*. +\q1 \w He|strong="H3063"\w* stooped \w down|strong="H7257"\w*, \w he|strong="H3063"\w* crouched \w as|strong="H5927"\w* \w a|strong="H3068"\w* \w lion|strong="H3833"\w*, +\q2 \w as|strong="H5927"\w* \w a|strong="H3068"\w* \w lioness|strong="H3833"\w*. +\q2 \w Who|strong="H4310"\w* \w will|strong="H4310"\w* \w rouse|strong="H6965"\w* \w him|strong="H5927"\w* \w up|strong="H5927"\w*? +\q1 +\v 10 \w The|strong="H3588"\w* \w scepter|strong="H7626"\w* \w will|strong="H5971"\w* \w not|strong="H3808"\w* \w depart|strong="H5493"\w* \w from|strong="H5493"\w* \w Judah|strong="H3063"\w*, +\q2 \w nor|strong="H3808"\w* \w the|strong="H3588"\w* ruler’s \w staff|strong="H7626"\w* \w from|strong="H5493"\w* \w between|strong="H5704"\w* \w his|strong="H5493"\w* \w feet|strong="H7272"\w*, +\q1 \w until|strong="H5704"\w* \w he|strong="H3588"\w* comes \w to|strong="H5704"\w* \w whom|strong="H5971"\w* \w it|strong="H3588"\w* belongs. +\q2 \w The|strong="H3588"\w* \w obedience|strong="H3349"\w* \w of|strong="H7626"\w* \w the|strong="H3588"\w* \w peoples|strong="H5971"\w* \w will|strong="H5971"\w* \w be|strong="H3808"\w* \w to|strong="H5704"\w* \w him|strong="H3588"\w*. +\q1 +\v 11 Binding \w his|strong="H3526"\w* \w foal|strong="H5895"\w* \w to|strong="H1121"\w* \w the|strong="H1121"\w* \w vine|strong="H1612"\w*, +\q2 \w his|strong="H3526"\w* donkey’s \w colt|strong="H5895"\w* \w to|strong="H1121"\w* \w the|strong="H1121"\w* \w choice|strong="H8321"\w* \w vine|strong="H1612"\w*, +\q1 \w he|strong="H1818"\w* \w has|strong="H1121"\w* \w washed|strong="H3526"\w* \w his|strong="H3526"\w* \w garments|strong="H3830"\w* \w in|strong="H1121"\w* \w wine|strong="H3196"\w*, +\q2 \w his|strong="H3526"\w* \w robes|strong="H3830"\w* \w in|strong="H1121"\w* \w the|strong="H1121"\w* \w blood|strong="H1818"\w* \w of|strong="H1121"\w* \w grapes|strong="H6025"\w*. +\q1 +\v 12 \w His|strong="H5869"\w* \w eyes|strong="H5869"\w* \w will|strong="H5869"\w* \w be|strong="H5869"\w* \w red|strong="H2447"\w* \w with|strong="H5869"\w* \w wine|strong="H3196"\w*, +\q2 \w his|strong="H5869"\w* \w teeth|strong="H8127"\w* \w white|strong="H3836"\w* \w with|strong="H5869"\w* \w milk|strong="H2461"\w*. +\b +\q1 +\v 13 “\w Zebulun|strong="H2074"\w* \w will|strong="H1931"\w* \w dwell|strong="H7931"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w haven|strong="H2348"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*. +\q2 \w He|strong="H1931"\w* \w will|strong="H1931"\w* \w be|strong="H3220"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w haven|strong="H2348"\w* \w of|strong="H5921"\w* ships. +\q2 \w His|strong="H5921"\w* \w border|strong="H3411"\w* \w will|strong="H1931"\w* \w be|strong="H3220"\w* \w on|strong="H5921"\w* \w Sidon|strong="H6721"\w*. +\b +\q1 +\v 14 “\w Issachar|strong="H3485"\w* \w is|strong="H3485"\w* \w a|strong="H3068"\w* \w strong|strong="H1634"\w* \w donkey|strong="H2543"\w*, +\q2 \w lying|strong="H7257"\w* \w down|strong="H7257"\w* between \w the|strong="H3485"\w* saddlebags. +\q1 +\v 15 \w He|strong="H3588"\w* \w saw|strong="H7200"\w* \w a|strong="H3068"\w* \w resting|strong="H4496"\w* \w place|strong="H4496"\w*, \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H1961"\w* \w good|strong="H2896"\w*, +\q2 \w the|strong="H7200"\w* land, \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H1961"\w* \w pleasant|strong="H5276"\w*. +\q1 \w He|strong="H3588"\w* bows \w his|strong="H5186"\w* \w shoulder|strong="H7926"\w* \w to|strong="H1961"\w* \w the|strong="H7200"\w* \w burden|strong="H5445"\w*, +\q2 \w and|strong="H7200"\w* \w becomes|strong="H1961"\w* \w a|strong="H3068"\w* \w servant|strong="H5647"\w* doing \w forced|strong="H4522"\w* \w labor|strong="H4522"\w*. +\b +\q1 +\v 16 “\w Dan|strong="H1835"\w* \w will|strong="H5971"\w* \w judge|strong="H1777"\w* \w his|strong="H3478"\w* \w people|strong="H5971"\w*, +\q2 \w as|strong="H5971"\w* one \w of|strong="H7626"\w* \w the|strong="H1777"\w* \w tribes|strong="H7626"\w* \w of|strong="H7626"\w* \w Israel|strong="H3478"\w*. +\q1 +\v 17 \w Dan|strong="H1835"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w serpent|strong="H5175"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w trail|strong="H6119"\w*, +\q2 \w an|strong="H1961"\w* \w adder|strong="H8207"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w path|strong="H1870"\w*, +\q1 \w that|strong="H5307"\w* \w bites|strong="H5391"\w* \w the|strong="H5921"\w* \w horse|strong="H5483"\w*’s \w heels|strong="H6119"\w*, +\q2 \w so|strong="H1961"\w* \w that|strong="H5307"\w* \w his|strong="H5921"\w* \w rider|strong="H7392"\w* \w falls|strong="H5307"\w* backward. +\q1 +\v 18 \w I|strong="H3068"\w* \w have|strong="H3068"\w* \w waited|strong="H6960"\w* \w for|strong="H3068"\w* \w your|strong="H3068"\w* \w salvation|strong="H3444"\w*, \w Yahweh|strong="H3068"\w*. +\b +\q1 +\v 19 “\w A|strong="H3068"\w* \w troop|strong="H1416"\w* \w will|strong="H1931"\w* press on \w Gad|strong="H1410"\w*, +\q2 \w but|strong="H1931"\w* \w he|strong="H1931"\w* \w will|strong="H1931"\w* press on their \w heel|strong="H6119"\w*. +\b +\q1 +\v 20 “Asher’s \w food|strong="H3899"\w* \w will|strong="H4428"\w* \w be|strong="H5414"\w* \w rich|strong="H8082"\w*. +\q2 \w He|strong="H1931"\w* \w will|strong="H4428"\w* \w produce|strong="H5414"\w* \w royal|strong="H4428"\w* \w dainties|strong="H4574"\w*. +\b +\q1 +\v 21 “\w Naphtali|strong="H5321"\w* \w is|strong="H7971"\w* \w a|strong="H3068"\w* doe \w set|strong="H5414"\w* \w free|strong="H7971"\w*, +\q2 who bears \w beautiful|strong="H8233"\w* fawns. +\b +\q1 +\v 22 “\w Joseph|strong="H3130"\w* \w is|strong="H1121"\w* \w a|strong="H3068"\w* \w fruitful|strong="H6509"\w* vine, +\q2 \w a|strong="H3068"\w* \w fruitful|strong="H6509"\w* vine \w by|strong="H5921"\w* \w a|strong="H3068"\w* \w spring|strong="H5869"\w*. +\q2 \w His|strong="H5921"\w* \w branches|strong="H1323"\w* \w run|strong="H6805"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w wall|strong="H7791"\w*. +\q1 +\v 23 The \w archers|strong="H1167"\w* \w have|strong="H2671"\w* severely \w grieved|strong="H4843"\w* \w him|strong="H7852"\w*, +\q2 \w shot|strong="H7232"\w* at \w him|strong="H7852"\w*, \w and|strong="H2671"\w* persecuted \w him|strong="H7852"\w*: +\q1 +\v 24 \w But|strong="H3290"\w* \w his|strong="H3027"\w* \w bow|strong="H7198"\w* \w remained|strong="H3427"\w* \w strong|strong="H6339"\w*. +\q2 \w The|strong="H3027"\w* \w arms|strong="H2220"\w* \w of|strong="H3027"\w* \w his|strong="H3027"\w* \w hands|strong="H3027"\w* \w were|strong="H3478"\w* \w made|strong="H3478"\w* \w strong|strong="H6339"\w*, +\q2 \w by|strong="H3027"\w* \w the|strong="H3027"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w Mighty|strong="H2220"\w* \w One|strong="H3027"\w* \w of|strong="H3027"\w* \w Jacob|strong="H3290"\w*, +\q2 (\w from|strong="H3478"\w* \w there|strong="H8033"\w* \w is|strong="H3027"\w* \w the|strong="H3027"\w* \w shepherd|strong="H7462"\w*, \w the|strong="H3027"\w* stone \w of|strong="H3027"\w* \w Israel|strong="H3478"\w*), +\q1 +\v 25 \w even|strong="H5921"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w God|strong="H8064"\w* \w of|strong="H5921"\w* \w your|strong="H5921"\w* father, \w who|strong="H7706"\w* \w will|strong="H8064"\w* \w help|strong="H5826"\w* \w you|strong="H5921"\w*, +\q2 \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w Almighty|strong="H7706"\w*, \w who|strong="H7706"\w* \w will|strong="H8064"\w* \w bless|strong="H1288"\w* \w you|strong="H5921"\w*, +\q1 \w with|strong="H5921"\w* \w blessings|strong="H1293"\w* \w of|strong="H5921"\w* \w heaven|strong="H8064"\w* \w above|strong="H5921"\w*, +\q2 \w blessings|strong="H1293"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w deep|strong="H8415"\w* \w that|strong="H8415"\w* \w lies|strong="H7257"\w* \w below|strong="H8478"\w*, +\q2 \w blessings|strong="H1293"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w breasts|strong="H7699"\w*, \w and|strong="H8064"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w womb|strong="H7356"\w*. +\q1 +\v 26 \w The|strong="H5921"\w* \w blessings|strong="H1293"\w* \w of|strong="H7218"\w* \w your|strong="H5921"\w* father \w have|strong="H1961"\w* \w prevailed|strong="H1396"\w* \w above|strong="H5921"\w* \w the|strong="H5921"\w* \w blessings|strong="H1293"\w* \w of|strong="H7218"\w* \w my|strong="H5921"\w* \w ancestors|strong="H2029"\w*, +\q2 \w above|strong="H5921"\w* \w the|strong="H5921"\w* boundaries \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w ancient|strong="H5769"\w* \w hills|strong="H1389"\w*. +\q1 \w They|strong="H5921"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H7218"\w* \w Joseph|strong="H3130"\w*, +\q2 \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w crown|strong="H6936"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H7218"\w* \w him|strong="H5921"\w* who \w is|strong="H1961"\w* \w separated|strong="H5139"\w* \w from|strong="H5921"\w* \w his|strong="H5921"\w* brothers. +\b +\q1 +\v 27 “\w Benjamin|strong="H1144"\w* \w is|strong="H7998"\w* \w a|strong="H3068"\w* \w ravenous|strong="H2963"\w* \w wolf|strong="H2061"\w*. +\q2 \w In|strong="H1144"\w* \w the|strong="H2505"\w* \w morning|strong="H1242"\w* \w he|strong="H1242"\w* \w will|strong="H2061"\w* devour \w the|strong="H2505"\w* \w prey|strong="H7998"\w*. +\q2 \w At|strong="H1144"\w* \w evening|strong="H6153"\w* \w he|strong="H1242"\w* \w will|strong="H2061"\w* \w divide|strong="H2505"\w* \w the|strong="H2505"\w* \w plunder|strong="H7998"\w*.” +\p +\v 28 \w All|strong="H3605"\w* \w these|strong="H1696"\w* \w are|strong="H3478"\w* \w the|strong="H3605"\w* \w twelve|strong="H8147"\w* \w tribes|strong="H7626"\w* \w of|strong="H7626"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w this|strong="H2063"\w* \w is|strong="H3478"\w* \w what|strong="H2063"\w* \w their|strong="H3605"\w* father \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H8147"\w*, \w and|strong="H3478"\w* \w blessed|strong="H1288"\w* \w them|strong="H8147"\w*. \w He|strong="H3605"\w* \w blessed|strong="H1288"\w* \w everyone|strong="H3605"\w* according \w to|strong="H1696"\w* \w his|strong="H3605"\w* own \w blessing|strong="H1293"\w*. +\v 29 \w He|strong="H5971"\w* \w instructed|strong="H6680"\w* \w them|strong="H6680"\w*, \w and|strong="H5971"\w* said \w to|strong="H6680"\w* \w them|strong="H6680"\w*, “\w I|strong="H6680"\w* am \w to|strong="H6680"\w* \w be|strong="H5971"\w* gathered \w to|strong="H6680"\w* \w my|strong="H6912"\w* \w people|strong="H5971"\w*. \w Bury|strong="H6912"\w* \w me|strong="H6680"\w* \w with|strong="H5971"\w* \w my|strong="H6912"\w* fathers \w in|strong="H6912"\w* \w the|strong="H6680"\w* \w cave|strong="H4631"\w* \w that|strong="H5971"\w* \w is|strong="H2850"\w* \w in|strong="H6912"\w* \w the|strong="H6680"\w* \w field|strong="H7704"\w* \w of|strong="H7704"\w* \w Ephron|strong="H6085"\w* \w the|strong="H6680"\w* \w Hittite|strong="H2850"\w*, +\v 30 \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w cave|strong="H4631"\w* \w that|strong="H4631"\w* \w is|strong="H6440"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w field|strong="H7704"\w* \w of|strong="H6440"\w* \w Machpelah|strong="H4375"\w*, \w which|strong="H7704"\w* \w is|strong="H6440"\w* \w before|strong="H6440"\w* \w Mamre|strong="H4471"\w*, \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w land|strong="H7704"\w* \w of|strong="H6440"\w* \w Canaan|strong="H3667"\w*, \w which|strong="H7704"\w* Abraham \w bought|strong="H7069"\w* \w with|strong="H5921"\w* \w the|strong="H6440"\w* \w field|strong="H7704"\w* \w from|strong="H6440"\w* \w Ephron|strong="H6085"\w* \w the|strong="H6440"\w* \w Hittite|strong="H2850"\w* \w as|strong="H6440"\w* \w a|strong="H3068"\w* \w burial|strong="H6913"\w* \w place|strong="H6913"\w*. +\v 31 \w There|strong="H8033"\w* \w they|strong="H8033"\w* \w buried|strong="H6912"\w* Abraham \w and|strong="H8033"\w* \w Sarah|strong="H8283"\w*, \w his|strong="H3327"\w* wife. \w There|strong="H8033"\w* \w they|strong="H8033"\w* \w buried|strong="H6912"\w* \w Isaac|strong="H3327"\w* \w and|strong="H8033"\w* \w Rebekah|strong="H7259"\w*, \w his|strong="H3327"\w* wife, \w and|strong="H8033"\w* \w there|strong="H8033"\w* \w I|strong="H3327"\w* \w buried|strong="H6912"\w* \w Leah|strong="H3812"\w*: +\v 32 \w the|strong="H1121"\w* \w field|strong="H7704"\w* \w and|strong="H1121"\w* \w the|strong="H1121"\w* \w cave|strong="H4631"\w* \w that|strong="H1121"\w* \w is|strong="H1121"\w* therein, \w which|strong="H7704"\w* \w was|strong="H1121"\w* \w purchased|strong="H4735"\w* \w from|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Heth|strong="H2845"\w*.” +\v 33 \w When|strong="H3615"\w* \w Jacob|strong="H3290"\w* \w finished|strong="H3615"\w* \w charging|strong="H6680"\w* \w his|strong="H6680"\w* \w sons|strong="H1121"\w*, \w he|strong="H7272"\w* gathered \w up|strong="H1121"\w* \w his|strong="H6680"\w* \w feet|strong="H7272"\w* \w into|strong="H3290"\w* \w the|strong="H6680"\w* \w bed|strong="H4296"\w*, \w breathed|strong="H1478"\w* \w his|strong="H6680"\w* \w last|strong="H1478"\w* breath, \w and|strong="H1121"\w* \w was|strong="H1121"\w* gathered \w to|strong="H1121"\w* \w his|strong="H6680"\w* \w people|strong="H5971"\w*. +\c 50 +\nb +\v 1 \w Joseph|strong="H3130"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w his|strong="H6440"\w* father’s \w face|strong="H6440"\w*, \w wept|strong="H1058"\w* \w on|strong="H5921"\w* \w him|strong="H6440"\w*, \w and|strong="H6440"\w* \w kissed|strong="H5401"\w* \w him|strong="H6440"\w*. +\v 2 \w Joseph|strong="H3130"\w* \w commanded|strong="H6680"\w* \w his|strong="H6680"\w* \w servants|strong="H5650"\w*, \w the|strong="H6680"\w* \w physicians|strong="H7495"\w*, \w to|strong="H3478"\w* \w embalm|strong="H2590"\w* \w his|strong="H6680"\w* father; \w and|strong="H3478"\w* \w the|strong="H6680"\w* \w physicians|strong="H7495"\w* \w embalmed|strong="H2590"\w* \w Israel|strong="H3478"\w*. +\v 3 Forty \w days|strong="H3117"\w* \w were|strong="H3117"\w* used \w for|strong="H3588"\w* \w him|strong="H4390"\w*, \w for|strong="H3588"\w* \w that|strong="H3588"\w* \w is|strong="H3117"\w* \w how|strong="H3588"\w* many \w days|strong="H3117"\w* \w it|strong="H3588"\w* takes \w to|strong="H3117"\w* \w embalm|strong="H2590"\w*. \w The|strong="H3588"\w* \w Egyptians|strong="H4713"\w* \w wept|strong="H1058"\w* \w for|strong="H3588"\w* Israel \w for|strong="H3588"\w* \w seventy|strong="H7657"\w* \w days|strong="H3117"\w*. +\p +\v 4 \w When|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H1004"\w* weeping \w for|strong="H1004"\w* \w him|strong="H4672"\w* \w were|strong="H3117"\w* \w past|strong="H5674"\w*, \w Joseph|strong="H3130"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Pharaoh|strong="H6547"\w*’s staff, \w saying|strong="H1696"\w*, “If \w now|strong="H4994"\w* \w I|strong="H3117"\w* \w have|strong="H5869"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H1004"\w* \w your|strong="H4994"\w* \w eyes|strong="H5869"\w*, \w please|strong="H4994"\w* \w speak|strong="H1696"\w* \w in|strong="H1004"\w* \w the|strong="H3117"\w* ears \w of|strong="H1004"\w* \w Pharaoh|strong="H6547"\w*, \w saying|strong="H1696"\w*, +\v 5 ‘\w My|strong="H7725"\w* father \w made|strong="H7650"\w* \w me|strong="H4994"\w* \w swear|strong="H7650"\w*, saying, “\w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* am \w dying|strong="H4191"\w*. \w Bury|strong="H6912"\w* \w me|strong="H4994"\w* \w in|strong="H4191"\w* \w my|strong="H7725"\w* \w grave|strong="H6913"\w* \w which|strong="H8033"\w* \w I|strong="H2009"\w* \w have|strong="H6258"\w* \w dug|strong="H3738"\w* \w for|strong="H4191"\w* myself \w in|strong="H4191"\w* \w the|strong="H7725"\w* land \w of|strong="H6913"\w* \w Canaan|strong="H3667"\w*.” \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w please|strong="H4994"\w* \w let|strong="H4994"\w* \w me|strong="H4994"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H7725"\w* \w bury|strong="H6912"\w* \w my|strong="H7725"\w* father, \w and|strong="H7725"\w* \w I|strong="H2009"\w* \w will|strong="H8033"\w* \w come|strong="H5927"\w* \w again|strong="H7725"\w*.’” +\p +\v 6 \w Pharaoh|strong="H6547"\w* said, “\w Go|strong="H5927"\w* \w up|strong="H5927"\w*, \w and|strong="H5927"\w* \w bury|strong="H6912"\w* \w your|strong="H6912"\w* father, just \w like|strong="H5927"\w* \w he|strong="H7650"\w* \w made|strong="H7650"\w* \w you|strong="H5927"\w* \w swear|strong="H7650"\w*.” +\p +\v 7 \w Joseph|strong="H3130"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w bury|strong="H6912"\w* \w his|strong="H3605"\w* father; \w and|strong="H1004"\w* \w with|strong="H1004"\w* \w him|strong="H6912"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w servants|strong="H5650"\w* \w of|strong="H1004"\w* \w Pharaoh|strong="H6547"\w*, \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H1004"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* land \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*, +\v 8 \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Joseph|strong="H3130"\w*, \w his|strong="H3605"\w* brothers, \w and|strong="H1004"\w* \w his|strong="H3605"\w* father’s \w house|strong="H1004"\w*. \w Only|strong="H7535"\w* \w their|strong="H3605"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*, \w their|strong="H3605"\w* \w flocks|strong="H6629"\w*, \w and|strong="H1004"\w* \w their|strong="H3605"\w* \w herds|strong="H1241"\w*, \w they|strong="H3605"\w* \w left|strong="H5800"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* land \w of|strong="H1004"\w* \w Goshen|strong="H1657"\w*. +\v 9 \w Both|strong="H1571"\w* \w chariots|strong="H7393"\w* \w and|strong="H7393"\w* \w horsemen|strong="H6571"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*. \w It|strong="H5927"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H3966"\w* \w company|strong="H4264"\w*. +\v 10 \w They|strong="H3117"\w* came \w to|strong="H5704"\w* \w the|strong="H6213"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w* \w of|strong="H3117"\w* Atad, \w which|strong="H8033"\w* \w is|strong="H3117"\w* \w beyond|strong="H5676"\w* \w the|strong="H6213"\w* \w Jordan|strong="H3383"\w*, \w and|strong="H3117"\w* \w there|strong="H8033"\w* \w they|strong="H3117"\w* \w lamented|strong="H5594"\w* \w with|strong="H6213"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H1419"\w* \w and|strong="H3117"\w* \w severe|strong="H3515"\w* \w lamentation|strong="H4553"\w*. \w He|strong="H3117"\w* \w mourned|strong="H5594"\w* \w for|strong="H5704"\w* \w his|strong="H6213"\w* father \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. +\v 11 \w When|strong="H7200"\w* \w the|strong="H5921"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H5921"\w* \w land|strong="H5676"\w*, \w the|strong="H5921"\w* \w Canaanites|strong="H3669"\w*, \w saw|strong="H7200"\w* \w the|strong="H5921"\w* mourning \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w floor|strong="H1637"\w* \w of|strong="H3427"\w* Atad, \w they|strong="H3651"\w* \w said|strong="H7121"\w*, “\w This|strong="H2088"\w* \w is|strong="H2088"\w* \w a|strong="H3068"\w* \w grievous|strong="H3515"\w* mourning \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w Egyptians|strong="H4713"\w*.” \w Therefore|strong="H3651"\w* \w its|strong="H5921"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w called|strong="H7121"\w* Abel Mizraim, \w which|strong="H2088"\w* \w is|strong="H2088"\w* \w beyond|strong="H5676"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w*. +\v 12 \w His|strong="H6680"\w* \w sons|strong="H1121"\w* \w did|strong="H6213"\w* \w to|strong="H6213"\w* \w him|strong="H6213"\w* \w just|strong="H6213"\w* \w as|strong="H6213"\w* \w he|strong="H6213"\w* \w commanded|strong="H6680"\w* \w them|strong="H6213"\w*, +\v 13 \w for|strong="H5921"\w* \w his|strong="H5375"\w* \w sons|strong="H1121"\w* \w carried|strong="H5375"\w* \w him|strong="H6440"\w* \w into|strong="H5921"\w* \w the|strong="H6440"\w* \w land|strong="H7704"\w* \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*, \w and|strong="H1121"\w* \w buried|strong="H6912"\w* \w him|strong="H6440"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w cave|strong="H4631"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w field|strong="H7704"\w* \w of|strong="H1121"\w* \w Machpelah|strong="H4375"\w*, \w which|strong="H7704"\w* \w Abraham|strong="H5375"\w* \w bought|strong="H7069"\w* \w with|strong="H5921"\w* \w the|strong="H6440"\w* \w field|strong="H7704"\w*, \w as|strong="H6440"\w* \w a|strong="H3068"\w* possession \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w burial|strong="H6913"\w* site, \w from|strong="H6440"\w* \w Ephron|strong="H6085"\w* \w the|strong="H6440"\w* \w Hittite|strong="H2850"\w*, \w near|strong="H6440"\w* \w Mamre|strong="H4471"\w*. +\v 14 \w Joseph|strong="H3130"\w* \w returned|strong="H7725"\w* \w into|strong="H7725"\w* \w Egypt|strong="H4714"\w*—\w he|strong="H1931"\w*, \w and|strong="H7725"\w* \w his|strong="H3605"\w* brothers, \w and|strong="H7725"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w with|strong="H4714"\w* \w him|strong="H7725"\w* \w to|strong="H7725"\w* \w bury|strong="H6912"\w* \w his|strong="H3605"\w* father, \w after|strong="H5927"\w* \w he|strong="H1931"\w* \w had|strong="H3130"\w* \w buried|strong="H6912"\w* \w his|strong="H3605"\w* father. +\p +\v 15 \w When|strong="H3588"\w* \w Joseph|strong="H3130"\w*’s brothers \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w their|strong="H3605"\w* father \w was|strong="H3130"\w* \w dead|strong="H4191"\w*, \w they|strong="H3588"\w* said, “\w It|strong="H3588"\w* \w may|strong="H7725"\w* \w be|strong="H4191"\w* \w that|strong="H3588"\w* \w Joseph|strong="H3130"\w* \w will|strong="H3130"\w* \w hate|strong="H3863"\w* \w us|strong="H7725"\w*, \w and|strong="H7725"\w* \w will|strong="H3130"\w* fully \w pay|strong="H7725"\w* \w us|strong="H7725"\w* \w back|strong="H7725"\w* \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w which|strong="H7451"\w* \w we|strong="H3068"\w* \w did|strong="H1580"\w* \w to|strong="H7725"\w* \w him|strong="H7725"\w*.” +\v 16 \w They|strong="H6440"\w* \w sent|strong="H6680"\w* \w a|strong="H3068"\w* message \w to|strong="H6440"\w* \w Joseph|strong="H3130"\w*, saying, “\w Your|strong="H6440"\w* father \w commanded|strong="H6680"\w* \w before|strong="H6440"\w* \w he|strong="H6440"\w* \w died|strong="H4194"\w*, saying, +\v 17 ‘\w You|strong="H3588"\w* \w shall|strong="H5650"\w* \w tell|strong="H1696"\w* \w Joseph|strong="H3130"\w*, “\w Now|strong="H6258"\w* \w please|strong="H4994"\w* \w forgive|strong="H5375"\w* \w the|strong="H3588"\w* disobedience \w of|strong="H5650"\w* \w your|strong="H5375"\w* brothers, \w and|strong="H5650"\w* \w their|strong="H5375"\w* \w sin|strong="H2403"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w did|strong="H1580"\w* \w evil|strong="H7451"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*.”’ \w Now|strong="H6258"\w*, \w please|strong="H4994"\w* \w forgive|strong="H5375"\w* \w the|strong="H3588"\w* disobedience \w of|strong="H5650"\w* \w the|strong="H3588"\w* \w servants|strong="H5650"\w* \w of|strong="H5650"\w* \w the|strong="H3588"\w* God \w of|strong="H5650"\w* \w your|strong="H5375"\w* father.” \w Joseph|strong="H3130"\w* \w wept|strong="H1058"\w* \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5375"\w*. +\v 18 \w His|strong="H6440"\w* brothers \w also|strong="H1571"\w* \w went|strong="H3212"\w* \w and|strong="H3212"\w* \w fell|strong="H5307"\w* \w down|strong="H5307"\w* \w before|strong="H6440"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w*; \w and|strong="H3212"\w* \w they|strong="H6440"\w* said, “\w Behold|strong="H2009"\w*, \w we|strong="H3068"\w* \w are|strong="H5650"\w* \w your|strong="H6440"\w* \w servants|strong="H5650"\w*.” +\v 19 \w Joseph|strong="H3130"\w* said \w to|strong="H3372"\w* \w them|strong="H8478"\w*, “Don’t \w be|strong="H3372"\w* \w afraid|strong="H3372"\w*, \w for|strong="H3588"\w* am \w I|strong="H3588"\w* \w in|strong="H3372"\w* \w the|strong="H3588"\w* \w place|strong="H8478"\w* \w of|strong="H8478"\w* God? +\v 20 \w As|strong="H3117"\w* \w for|strong="H5921"\w* \w you|strong="H5921"\w*, \w you|strong="H5921"\w* \w meant|strong="H2803"\w* \w evil|strong="H7451"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*, \w but|strong="H5971"\w* God \w meant|strong="H2803"\w* \w it|strong="H5921"\w* \w for|strong="H5921"\w* \w good|strong="H2896"\w*, \w to|strong="H5921"\w* \w save|strong="H2421"\w* \w many|strong="H7227"\w* \w people|strong="H5971"\w* \w alive|strong="H2421"\w*, \w as|strong="H3117"\w* \w is|strong="H2088"\w* happening \w today|strong="H3117"\w*. +\v 21 \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* don’t \w be|strong="H3820"\w* \w afraid|strong="H3372"\w*. \w I|strong="H5921"\w* \w will|strong="H3820"\w* \w provide|strong="H3557"\w* \w for|strong="H5921"\w* \w you|strong="H5921"\w* \w and|strong="H3372"\w* \w your|strong="H5921"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*.” \w He|strong="H5921"\w* \w comforted|strong="H5162"\w* \w them|strong="H5921"\w*, \w and|strong="H3372"\w* \w spoke|strong="H1696"\w* \w kindly|strong="H3820"\w* \w to|strong="H1696"\w* \w them|strong="H5921"\w*. +\p +\v 22 \w Joseph|strong="H3130"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Egypt|strong="H4714"\w*, \w he|strong="H1931"\w*, \w and|strong="H3967"\w* \w his|strong="H1931"\w* father’s \w house|strong="H1004"\w*. \w Joseph|strong="H3130"\w* \w lived|strong="H3427"\w* \w one|strong="H2421"\w* \w hundred|strong="H3967"\w* \w ten|strong="H6235"\w* \w years|strong="H8141"\w*. +\v 23 \w Joseph|strong="H3130"\w* \w saw|strong="H7200"\w* Ephraim’s \w children|strong="H1121"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w third|strong="H8029"\w* \w generation|strong="H8029"\w*. \w The|strong="H5921"\w* \w children|strong="H1121"\w* \w also|strong="H1571"\w* \w of|strong="H1121"\w* \w Machir|strong="H4353"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*, \w were|strong="H1121"\w* \w born|strong="H3205"\w* \w on|strong="H5921"\w* \w Joseph|strong="H3130"\w*’s \w knees|strong="H1290"\w*. +\v 24 \w Joseph|strong="H3130"\w* said \w to|strong="H4191"\w* \w his|strong="H3327"\w* brothers, “\w I|strong="H4480"\w* \w am|strong="H6485"\w* \w dying|strong="H4191"\w*, \w but|strong="H4191"\w* God \w will|strong="H3290"\w* \w surely|strong="H4191"\w* \w visit|strong="H6485"\w* \w you|strong="H4480"\w*, \w and|strong="H5927"\w* \w bring|strong="H5927"\w* \w you|strong="H4480"\w* \w up|strong="H5927"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w this|strong="H2063"\w* land \w to|strong="H4191"\w* \w the|strong="H4480"\w* land \w which|strong="H6485"\w* \w he|strong="H4480"\w* \w swore|strong="H7650"\w* \w to|strong="H4191"\w* Abraham, \w to|strong="H4191"\w* \w Isaac|strong="H3327"\w*, \w and|strong="H5927"\w* \w to|strong="H4191"\w* \w Jacob|strong="H3290"\w*.” +\v 25 \w Joseph|strong="H3130"\w* \w took|strong="H5927"\w* \w an|strong="H7650"\w* \w oath|strong="H7650"\w* \w from|strong="H5927"\w* \w the|strong="H6485"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, saying, “God \w will|strong="H3478"\w* \w surely|strong="H6485"\w* \w visit|strong="H6485"\w* \w you|strong="H6485"\w*, \w and|strong="H1121"\w* \w you|strong="H6485"\w* \w shall|strong="H1121"\w* \w carry|strong="H5927"\w* \w up|strong="H5927"\w* \w my|strong="H5927"\w* \w bones|strong="H6106"\w* \w from|strong="H5927"\w* \w here|strong="H2088"\w*.” +\v 26 \w So|strong="H4191"\w* \w Joseph|strong="H3130"\w* \w died|strong="H4191"\w*, \w being|strong="H1121"\w* \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* \w ten|strong="H6235"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*, \w and|strong="H3967"\w* \w they|strong="H8141"\w* \w embalmed|strong="H2590"\w* \w him|strong="H4191"\w*, \w and|strong="H3967"\w* \w he|strong="H8141"\w* \w was|strong="H1121"\w* \w put|strong="H4191"\w* \w in|strong="H8141"\w* \w a|strong="H3068"\w* coffin \w in|strong="H8141"\w* \w Egypt|strong="H4714"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/03-EXOeng-web.usfm b/bibles/eng-web_usfm/03-EXOeng-web.usfm new file mode 100644 index 0000000..cb47a90 --- /dev/null +++ b/bibles/eng-web_usfm/03-EXOeng-web.usfm @@ -0,0 +1,1659 @@ +\id EXO World English Bible (WEB) +\ide UTF-8 +\h Exodus +\toc1 The Second Book of Mosis, Commonly Called Exodus +\toc2 Exodus +\toc3 Exo +\mt2 The Second Book of Moses, +\mt3 Commonly Called +\mt1 Exodus +\c 1 +\p +\v 1 \w Now|strong="H3478"\w* \w these|strong="H1004"\w* \w are|strong="H1121"\w* \w the|strong="H8034"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H8034"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w who|strong="H1121"\w* \w came|strong="H3478"\w* \w into|strong="H4714"\w* \w Egypt|strong="H4714"\w* (\w every|strong="H3478"\w* \w man|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H3478"\w* \w household|strong="H1004"\w* \w came|strong="H3478"\w* \w with|strong="H1004"\w* \w Jacob|strong="H3290"\w*): +\v 2 \w Reuben|strong="H7205"\w*, \w Simeon|strong="H8095"\w*, \w Levi|strong="H3878"\w*, \w and|strong="H3063"\w* \w Judah|strong="H3063"\w*, +\v 3 \w Issachar|strong="H3485"\w*, \w Zebulun|strong="H2074"\w*, \w and|strong="H1144"\w* \w Benjamin|strong="H1144"\w*, +\v 4 \w Dan|strong="H1835"\w* \w and|strong="H1410"\w* \w Naphtali|strong="H5321"\w*, \w Gad|strong="H1410"\w* \w and|strong="H1410"\w* Asher. +\v 5 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w souls|strong="H5315"\w* \w who|strong="H3605"\w* \w came|strong="H1961"\w* \w out|strong="H3318"\w* \w of|strong="H3605"\w* \w Jacob|strong="H3290"\w*’s \w body|strong="H5315"\w* \w were|strong="H1961"\w* \w seventy|strong="H7657"\w* \w souls|strong="H5315"\w*, \w and|strong="H4714"\w* \w Joseph|strong="H3130"\w* \w was|strong="H1961"\w* \w in|strong="H5315"\w* \w Egypt|strong="H4714"\w* already. +\v 6 \w Joseph|strong="H3130"\w* \w died|strong="H4191"\w*, \w as|strong="H3605"\w* did \w all|strong="H3605"\w* \w his|strong="H3605"\w* brothers, \w and|strong="H4191"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w generation|strong="H1755"\w*. +\v 7 \w The|strong="H4390"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w fruitful|strong="H6509"\w*, \w and|strong="H1121"\w* \w increased|strong="H7235"\w* \w abundantly|strong="H8317"\w*, \w and|strong="H1121"\w* \w multiplied|strong="H7235"\w*, \w and|strong="H1121"\w* \w grew|strong="H6509"\w* \w exceedingly|strong="H3966"\w* \w mighty|strong="H6105"\w*; \w and|strong="H1121"\w* \w the|strong="H4390"\w* land \w was|strong="H3478"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w them|strong="H1121"\w*. +\p +\v 8 \w Now|strong="H4428"\w* \w there|strong="H3045"\w* \w arose|strong="H6965"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w Egypt|strong="H4714"\w*, \w who|strong="H4428"\w* didn’t \w know|strong="H3045"\w* \w Joseph|strong="H3130"\w*. +\v 9 \w He|strong="H4480"\w* said \w to|strong="H3478"\w* \w his|strong="H3478"\w* \w people|strong="H5971"\w*, “\w Behold|strong="H2009"\w*,\f + \fr 1:9 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w the|strong="H4480"\w* \w people|strong="H5971"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w are|strong="H5971"\w* \w more|strong="H4480"\w* \w and|strong="H1121"\w* \w mightier|strong="H6099"\w* \w than|strong="H4480"\w* \w we|strong="H3068"\w*. +\v 10 \w Come|strong="H5927"\w*, \w let|strong="H1961"\w*’s \w deal|strong="H7235"\w* \w wisely|strong="H2449"\w* \w with|strong="H5921"\w* \w them|strong="H5921"\w*, \w lest|strong="H6435"\w* \w they|strong="H3588"\w* \w multiply|strong="H7235"\w*, \w and|strong="H5927"\w* \w it|strong="H1931"\w* \w happen|strong="H1961"\w* \w that|strong="H3588"\w* \w when|strong="H3588"\w* \w any|strong="H4480"\w* \w war|strong="H4421"\w* \w breaks|strong="H7122"\w* \w out|strong="H4480"\w*, \w they|strong="H3588"\w* \w also|strong="H1571"\w* \w join|strong="H3254"\w* \w themselves|strong="H5921"\w* \w to|strong="H5927"\w* \w our|strong="H5921"\w* \w enemies|strong="H8130"\w* \w and|strong="H5927"\w* \w fight|strong="H3898"\w* \w against|strong="H5921"\w* \w us|strong="H3051"\w*, \w and|strong="H5927"\w* escape \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H5921"\w* land.” +\v 11 \w Therefore|strong="H5921"\w* \w they|strong="H5921"\w* \w set|strong="H7760"\w* \w taskmasters|strong="H8269"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w* \w to|strong="H5921"\w* \w afflict|strong="H6031"\w* \w them|strong="H5921"\w* \w with|strong="H5921"\w* \w their|strong="H7760"\w* \w burdens|strong="H5450"\w*. \w They|strong="H5921"\w* \w built|strong="H1129"\w* \w storage|strong="H4543"\w* \w cities|strong="H5892"\w* \w for|strong="H5921"\w* \w Pharaoh|strong="H6547"\w*: \w Pithom|strong="H6619"\w* \w and|strong="H5892"\w* \w Raamses|strong="H7486"\w*. +\v 12 \w But|strong="H3651"\w* \w the|strong="H6440"\w* \w more|strong="H7235"\w* \w they|strong="H3651"\w* \w afflicted|strong="H6031"\w* \w them|strong="H6440"\w*, \w the|strong="H6440"\w* \w more|strong="H7235"\w* \w they|strong="H3651"\w* \w multiplied|strong="H7235"\w* \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w more|strong="H7235"\w* \w they|strong="H3651"\w* \w spread|strong="H6555"\w* \w out|strong="H6555"\w*. \w They|strong="H3651"\w* started \w to|strong="H3478"\w* \w dread|strong="H6973"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 13 \w The|strong="H5647"\w* \w Egyptians|strong="H4713"\w* ruthlessly \w made|strong="H5647"\w* \w the|strong="H5647"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w serve|strong="H5647"\w*, +\v 14 \w and|strong="H7704"\w* \w they|strong="H3605"\w* \w made|strong="H5647"\w* \w their|strong="H3605"\w* \w lives|strong="H2416"\w* \w bitter|strong="H4843"\w* \w with|strong="H5647"\w* \w hard|strong="H7186"\w* \w service|strong="H5656"\w* \w in|strong="H5656"\w* \w mortar|strong="H2563"\w* \w and|strong="H7704"\w* \w in|strong="H5656"\w* \w brick|strong="H3843"\w*, \w and|strong="H7704"\w* \w in|strong="H5656"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H7704"\w* \w service|strong="H5656"\w* \w in|strong="H5656"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*, \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w service|strong="H5656"\w*, \w in|strong="H5656"\w* \w which|strong="H7704"\w* \w they|strong="H3605"\w* ruthlessly \w made|strong="H5647"\w* \w them|strong="H5647"\w* \w serve|strong="H5647"\w*. +\p +\v 15 \w The|strong="H3205"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* spoke \w to|strong="H4714"\w* \w the|strong="H3205"\w* \w Hebrew|strong="H5680"\w* \w midwives|strong="H3205"\w*, \w of|strong="H4428"\w* whom \w the|strong="H3205"\w* \w name|strong="H8034"\w* \w of|strong="H4428"\w* \w the|strong="H3205"\w* \w one|strong="H8034"\w* \w was|strong="H8034"\w* \w Shiphrah|strong="H8236"\w*, \w and|strong="H4428"\w* \w the|strong="H3205"\w* \w name|strong="H8034"\w* \w of|strong="H4428"\w* \w the|strong="H3205"\w* \w other|strong="H8145"\w* \w Puah|strong="H6326"\w*, +\v 16 \w and|strong="H1121"\w* \w he|strong="H1931"\w* said, “\w When|strong="H7200"\w* \w you|strong="H5921"\w* perform \w the|strong="H5921"\w* \w duty|strong="H5921"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w midwife|strong="H3205"\w* \w to|strong="H4191"\w* \w the|strong="H5921"\w* \w Hebrew|strong="H5680"\w* \w women|strong="H1323"\w*, \w and|strong="H1121"\w* \w see|strong="H7200"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w birth|strong="H3205"\w* stool, \w if|strong="H7200"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*, \w then|strong="H7200"\w* \w you|strong="H5921"\w* \w shall|strong="H1121"\w* \w kill|strong="H4191"\w* \w him|strong="H3205"\w*; \w but|strong="H7200"\w* \w if|strong="H7200"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w daughter|strong="H1323"\w*, \w then|strong="H7200"\w* \w she|strong="H1931"\w* \w shall|strong="H1121"\w* \w live|strong="H2425"\w*.” +\v 17 \w But|strong="H3808"\w* \w the|strong="H6213"\w* \w midwives|strong="H3205"\w* \w feared|strong="H3372"\w* \w God|strong="H3808"\w*,\f + \fr 1:17 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w and|strong="H4428"\w* didn’t \w do|strong="H6213"\w* \w what|strong="H6213"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w commanded|strong="H1696"\w* \w them|strong="H6213"\w*, \w but|strong="H3808"\w* \w saved|strong="H2421"\w* \w the|strong="H6213"\w* baby \w boys|strong="H3206"\w* \w alive|strong="H2421"\w*. +\v 18 \w The|strong="H6213"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w called|strong="H7121"\w* \w for|strong="H7121"\w* \w the|strong="H6213"\w* \w midwives|strong="H3205"\w*, \w and|strong="H4428"\w* \w said|strong="H1697"\w* \w to|strong="H6213"\w* \w them|strong="H6213"\w*, “\w Why|strong="H4069"\w* \w have|strong="H1697"\w* \w you|strong="H6213"\w* \w done|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w and|strong="H4428"\w* \w saved|strong="H2421"\w* \w the|strong="H6213"\w* \w boys|strong="H3206"\w* \w alive|strong="H2421"\w*?” +\p +\v 19 \w The|strong="H3588"\w* \w midwives|strong="H3205"\w* said \w to|strong="H3205"\w* \w Pharaoh|strong="H6547"\w*, “\w Because|strong="H3588"\w* \w the|strong="H3588"\w* \w Hebrew|strong="H5680"\w* \w women|strong="H5680"\w* aren’t \w like|strong="H3808"\w* \w the|strong="H3588"\w* \w Egyptian|strong="H4713"\w* \w women|strong="H5680"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H2007"\w* \w vigorous|strong="H2422"\w* \w and|strong="H6547"\w* \w give|strong="H3205"\w* \w birth|strong="H3205"\w* \w before|strong="H2962"\w* \w the|strong="H3588"\w* \w midwife|strong="H3205"\w* comes \w to|strong="H3205"\w* \w them|strong="H2007"\w*.” +\p +\v 20 \w God|strong="H3190"\w* dealt \w well|strong="H3190"\w* \w with|strong="H5971"\w* \w the|strong="H3205"\w* \w midwives|strong="H3205"\w*, \w and|strong="H5971"\w* \w the|strong="H3205"\w* \w people|strong="H5971"\w* \w multiplied|strong="H7235"\w*, \w and|strong="H5971"\w* \w grew|strong="H7235"\w* \w very|strong="H3966"\w* \w mighty|strong="H6105"\w*. +\v 21 \w Because|strong="H3588"\w* \w the|strong="H3588"\w* \w midwives|strong="H3205"\w* \w feared|strong="H3372"\w* God, \w he|strong="H3588"\w* \w gave|strong="H3205"\w* \w them|strong="H6213"\w* \w families|strong="H1004"\w*. +\v 22 \w Pharaoh|strong="H6547"\w* \w commanded|strong="H6680"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*, saying, “\w You|strong="H6680"\w* \w shall|strong="H1121"\w* \w cast|strong="H7993"\w* \w every|strong="H3605"\w* \w son|strong="H1121"\w* \w who|strong="H3605"\w* \w is|strong="H3605"\w* \w born|strong="H3209"\w* \w into|strong="H1323"\w* \w the|strong="H3605"\w* \w river|strong="H2975"\w*, \w and|strong="H1121"\w* \w every|strong="H3605"\w* \w daughter|strong="H1323"\w* \w you|strong="H6680"\w* \w shall|strong="H1121"\w* \w save|strong="H2421"\w* \w alive|strong="H2421"\w*.” +\c 2 +\p +\v 1 \w A|strong="H3068"\w* man \w of|strong="H1004"\w* \w the|strong="H3947"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Levi|strong="H3878"\w* \w went|strong="H3212"\w* \w and|strong="H1004"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* \w daughter|strong="H1323"\w* \w of|strong="H1004"\w* \w Levi|strong="H3878"\w* \w as|strong="H1004"\w* \w his|strong="H3947"\w* wife. +\v 2 \w The|strong="H7200"\w* \w woman|strong="H3205"\w* \w conceived|strong="H2029"\w* \w and|strong="H1121"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*. \w When|strong="H3588"\w* \w she|strong="H1931"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w a|strong="H3068"\w* \w fine|strong="H2896"\w* \w child|strong="H1121"\w*, \w she|strong="H1931"\w* \w hid|strong="H6845"\w* \w him|strong="H3205"\w* \w three|strong="H7969"\w* \w months|strong="H3391"\w*. +\v 3 \w When|strong="H5921"\w* \w she|strong="H8193"\w* \w could|strong="H3201"\w* \w no|strong="H3808"\w* \w longer|strong="H5750"\w* \w hide|strong="H6845"\w* \w him|strong="H5921"\w*, \w she|strong="H8193"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* \w papyrus|strong="H1573"\w* \w basket|strong="H8392"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H3947"\w* coated \w it|strong="H7760"\w* \w with|strong="H5921"\w* \w tar|strong="H2564"\w* \w and|strong="H3947"\w* \w with|strong="H5921"\w* \w pitch|strong="H2203"\w*. \w She|strong="H8193"\w* \w put|strong="H7760"\w* \w the|strong="H5921"\w* \w child|strong="H3206"\w* \w in|strong="H5921"\w* \w it|strong="H7760"\w*, \w and|strong="H3947"\w* \w laid|strong="H7760"\w* \w it|strong="H7760"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w reeds|strong="H5488"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w river|strong="H2975"\w*’s \w bank|strong="H8193"\w*. +\v 4 \w His|strong="H3045"\w* sister \w stood|strong="H3320"\w* \w far|strong="H7350"\w* \w off|strong="H7350"\w*, \w to|strong="H6213"\w* \w see|strong="H3045"\w* \w what|strong="H4100"\w* \w would|strong="H6213"\w* be \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w him|strong="H6213"\w*. +\v 5 \w Pharaoh|strong="H6547"\w*’s \w daughter|strong="H1323"\w* \w came|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H1980"\w* \w bathe|strong="H7364"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w river|strong="H2975"\w*. \w Her|strong="H7971"\w* \w maidens|strong="H5291"\w* \w walked|strong="H1980"\w* \w along|strong="H5921"\w* \w by|strong="H3027"\w* \w the|strong="H5921"\w* riverside. \w She|strong="H5921"\w* \w saw|strong="H7200"\w* \w the|strong="H5921"\w* \w basket|strong="H8392"\w* \w among|strong="H8432"\w* \w the|strong="H5921"\w* \w reeds|strong="H5488"\w*, \w and|strong="H1980"\w* \w sent|strong="H7971"\w* \w her|strong="H7971"\w* servant \w to|strong="H1980"\w* \w get|strong="H3947"\w* \w it|strong="H5921"\w*. +\v 6 \w She|strong="H5921"\w* \w opened|strong="H6605"\w* \w it|strong="H5921"\w*, \w and|strong="H7200"\w* \w saw|strong="H7200"\w* \w the|strong="H5921"\w* \w child|strong="H3206"\w*, \w and|strong="H7200"\w* \w behold|strong="H2009"\w*, \w the|strong="H5921"\w* baby \w cried|strong="H1058"\w*. \w She|strong="H5921"\w* \w had|strong="H2550"\w* \w compassion|strong="H2550"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H7200"\w* said, “\w This|strong="H2088"\w* \w is|strong="H2088"\w* \w one|strong="H2088"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w Hebrews|strong="H5680"\w*’ \w children|strong="H3206"\w*.” +\p +\v 7 \w Then|strong="H7121"\w* \w his|strong="H7121"\w* sister \w said|strong="H7121"\w* \w to|strong="H3212"\w* \w Pharaoh|strong="H6547"\w*’s \w daughter|strong="H1323"\w*, “\w Should|strong="H1323"\w* \w I|strong="H4480"\w* \w go|strong="H3212"\w* \w and|strong="H3212"\w* \w call|strong="H7121"\w* \w a|strong="H3068"\w* \w nurse|strong="H3243"\w* \w for|strong="H7121"\w* \w you|strong="H4480"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w Hebrew|strong="H5680"\w* \w women|strong="H1323"\w*, \w that|strong="H7121"\w* \w she|strong="H7121"\w* \w may|strong="H3206"\w* \w nurse|strong="H3243"\w* \w the|strong="H4480"\w* \w child|strong="H3206"\w* \w for|strong="H7121"\w* \w you|strong="H4480"\w*?” +\p +\v 8 \w Pharaoh|strong="H6547"\w*’s \w daughter|strong="H1323"\w* \w said|strong="H7121"\w* \w to|strong="H3212"\w* \w her|strong="H7121"\w*, “\w Go|strong="H3212"\w*.” +\p \w The|strong="H7121"\w* \w young|strong="H3206"\w* \w woman|strong="H1323"\w* \w went|strong="H3212"\w* \w and|strong="H3212"\w* \w called|strong="H7121"\w* \w the|strong="H7121"\w* \w child|strong="H3206"\w*’s mother. +\v 9 \w Pharaoh|strong="H6547"\w*’s \w daughter|strong="H1323"\w* said \w to|strong="H3212"\w* \w her|strong="H5414"\w*, “\w Take|strong="H3947"\w* \w this|strong="H2088"\w* \w child|strong="H3206"\w* \w away|strong="H3947"\w*, \w and|strong="H3212"\w* \w nurse|strong="H3243"\w* \w him|strong="H5414"\w* \w for|strong="H5414"\w* \w me|strong="H5414"\w*, \w and|strong="H3212"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w your|strong="H5414"\w* \w wages|strong="H7939"\w*.” +\p \w The|strong="H5414"\w* \w woman|strong="H1323"\w* \w took|strong="H3947"\w* \w the|strong="H5414"\w* \w child|strong="H3206"\w*, \w and|strong="H3212"\w* \w nursed|strong="H3243"\w* \w it|strong="H5414"\w*. +\v 10 \w The|strong="H3588"\w* \w child|strong="H3206"\w* \w grew|strong="H1431"\w*, \w and|strong="H1121"\w* \w she|strong="H3588"\w* \w brought|strong="H4872"\w* \w him|strong="H7121"\w* \w to|strong="H1961"\w* \w Pharaoh|strong="H6547"\w*’s \w daughter|strong="H1323"\w*, \w and|strong="H1121"\w* \w he|strong="H3588"\w* \w became|strong="H1961"\w* \w her|strong="H7121"\w* \w son|strong="H1121"\w*. \w She|strong="H3588"\w* \w named|strong="H7121"\w* \w him|strong="H7121"\w* \w Moses|strong="H4872"\w*,\f + \fr 2:10 \ft “Moses” sounds like the Hebrew for “draw out”.\f* \w and|strong="H1121"\w* \w said|strong="H7121"\w*, “\w Because|strong="H3588"\w* \w I|strong="H3588"\w* \w drew|strong="H4871"\w* \w him|strong="H7121"\w* \w out|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w water|strong="H4325"\w*.” +\p +\v 11 \w In|strong="H3117"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*, \w when|strong="H1961"\w* \w Moses|strong="H4872"\w* \w had|strong="H1961"\w* \w grown|strong="H1431"\w* \w up|strong="H1431"\w*, \w he|strong="H3117"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w his|strong="H7200"\w* brothers \w and|strong="H4872"\w* \w saw|strong="H7200"\w* \w their|strong="H1992"\w* \w burdens|strong="H5450"\w*. \w He|strong="H3117"\w* \w saw|strong="H7200"\w* \w an|strong="H1961"\w* \w Egyptian|strong="H4713"\w* \w striking|strong="H5221"\w* \w a|strong="H3068"\w* \w Hebrew|strong="H5680"\w*, \w one|strong="H1961"\w* \w of|strong="H3117"\w* \w his|strong="H7200"\w* brothers. +\v 12 \w He|strong="H3588"\w* \w looked|strong="H7200"\w* \w this|strong="H3541"\w* \w way|strong="H3541"\w* \w and|strong="H7200"\w* \w that|strong="H3588"\w* \w way|strong="H3541"\w*, \w and|strong="H7200"\w* \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w there|strong="H3541"\w* \w was|strong="H5221"\w* \w no|strong="H7200"\w* \w one|strong="H3588"\w*, \w he|strong="H3588"\w* \w killed|strong="H5221"\w* \w the|strong="H7200"\w* \w Egyptian|strong="H4713"\w*, \w and|strong="H7200"\w* \w hid|strong="H2934"\w* \w him|strong="H5221"\w* \w in|strong="H7200"\w* \w the|strong="H7200"\w* \w sand|strong="H2344"\w*. +\p +\v 13 \w He|strong="H3117"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w the|strong="H5221"\w* \w second|strong="H8145"\w* \w day|strong="H3117"\w*, \w and|strong="H3117"\w* \w behold|strong="H2009"\w*, \w two|strong="H8147"\w* \w men|strong="H7563"\w* \w of|strong="H3117"\w* \w the|strong="H5221"\w* \w Hebrews|strong="H5680"\w* \w were|strong="H3117"\w* \w fighting|strong="H5327"\w* \w with|strong="H3117"\w* \w each|strong="H3117"\w* \w other|strong="H8145"\w*. \w He|strong="H3117"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H5221"\w* \w who|strong="H7563"\w* \w did|strong="H4100"\w* \w the|strong="H5221"\w* \w wrong|strong="H7563"\w*, “\w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H3117"\w* \w strike|strong="H5221"\w* \w your|strong="H3318"\w* \w fellow|strong="H7453"\w*?” +\p +\v 14 \w He|strong="H5921"\w* \w said|strong="H1697"\w*, “\w Who|strong="H4310"\w* \w made|strong="H7760"\w* \w you|strong="H5921"\w* \w a|strong="H3068"\w* \w prince|strong="H8269"\w* \w and|strong="H4872"\w* \w a|strong="H3068"\w* \w judge|strong="H8199"\w* \w over|strong="H5921"\w* \w us|strong="H5921"\w*? \w Do|strong="H1697"\w* \w you|strong="H5921"\w* \w plan|strong="H1697"\w* \w to|strong="H5921"\w* \w kill|strong="H2026"\w* \w me|strong="H5921"\w*, \w as|strong="H1697"\w* \w you|strong="H5921"\w* \w killed|strong="H2026"\w* \w the|strong="H5921"\w* \w Egyptian|strong="H4713"\w*?” +\p \w Moses|strong="H4872"\w* \w was|strong="H1697"\w* \w afraid|strong="H3372"\w*, \w and|strong="H4872"\w* \w said|strong="H1697"\w*, “\w Surely|strong="H2026"\w* \w this|strong="H1697"\w* \w thing|strong="H1697"\w* \w is|strong="H4310"\w* \w known|strong="H3045"\w*.” +\v 15 \w Now|strong="H2088"\w* \w when|strong="H8085"\w* \w Pharaoh|strong="H6547"\w* \w heard|strong="H8085"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*, \w he|strong="H5921"\w* \w sought|strong="H1245"\w* \w to|strong="H5921"\w* \w kill|strong="H2026"\w* \w Moses|strong="H4872"\w*. \w But|strong="H8085"\w* \w Moses|strong="H4872"\w* \w fled|strong="H1272"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H1697"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H4872"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H1697"\w* \w Midian|strong="H4080"\w*, \w and|strong="H4872"\w* \w he|strong="H5921"\w* \w sat|strong="H3427"\w* \w down|strong="H3427"\w* \w by|strong="H5921"\w* \w a|strong="H3068"\w* well. +\p +\v 16 Now \w the|strong="H4390"\w* \w priest|strong="H3548"\w* \w of|strong="H1323"\w* \w Midian|strong="H4080"\w* \w had|strong="H3548"\w* \w seven|strong="H7651"\w* \w daughters|strong="H1323"\w*. \w They|strong="H3548"\w* \w came|strong="H1323"\w* \w and|strong="H3548"\w* \w drew|strong="H1802"\w* \w water|strong="H8248"\w*, \w and|strong="H3548"\w* \w filled|strong="H4390"\w* \w the|strong="H4390"\w* \w troughs|strong="H7298"\w* \w to|strong="H1323"\w* \w water|strong="H8248"\w* \w their|strong="H4390"\w* father’s \w flock|strong="H6629"\w*. +\v 17 \w The|strong="H6965"\w* \w shepherds|strong="H7462"\w* \w came|strong="H4872"\w* \w and|strong="H6965"\w* \w drove|strong="H1644"\w* \w them|strong="H1644"\w* \w away|strong="H1644"\w*; but \w Moses|strong="H4872"\w* \w stood|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H6965"\w* \w helped|strong="H3467"\w* \w them|strong="H1644"\w*, \w and|strong="H6965"\w* \w watered|strong="H8248"\w* \w their|strong="H8248"\w* \w flock|strong="H6629"\w*. +\v 18 \w When|strong="H3117"\w* \w they|strong="H3117"\w* came \w to|strong="H3117"\w* \w Reuel|strong="H7467"\w*, \w their|strong="H3117"\w* father, \w he|strong="H3117"\w* said, “\w How|strong="H4069"\w* \w is|strong="H3117"\w* \w it|strong="H3117"\w* \w that|strong="H3117"\w* \w you|strong="H3117"\w* \w have|strong="H3117"\w* returned \w so|strong="H4116"\w* early \w today|strong="H3117"\w*?” +\p +\v 19 \w They|strong="H1571"\w* said, “\w An|strong="H1571"\w* \w Egyptian|strong="H4713"\w* \w delivered|strong="H5337"\w* \w us|strong="H5337"\w* \w out|strong="H5337"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w shepherds|strong="H7462"\w*, \w and|strong="H3027"\w* \w moreover|strong="H1571"\w* \w he|strong="H3027"\w* \w drew|strong="H1802"\w* \w water|strong="H8248"\w* \w for|strong="H3027"\w* \w us|strong="H5337"\w*, \w and|strong="H3027"\w* \w watered|strong="H8248"\w* \w the|strong="H3027"\w* \w flock|strong="H6629"\w*.” +\p +\v 20 \w He|strong="H7121"\w* \w said|strong="H7121"\w* \w to|strong="H7121"\w* \w his|strong="H7121"\w* \w daughters|strong="H1323"\w*, “\w Where|strong="H4100"\w* \w is|strong="H2088"\w* \w he|strong="H7121"\w*? \w Why|strong="H4100"\w* \w is|strong="H2088"\w* \w it|strong="H7121"\w* \w that|strong="H7121"\w* \w you|strong="H4100"\w* \w have|strong="H1323"\w* \w left|strong="H5800"\w* \w the|strong="H7121"\w* \w man|strong="H2088"\w*? \w Call|strong="H7121"\w* \w him|strong="H7121"\w*, \w that|strong="H7121"\w* \w he|strong="H7121"\w* may \w eat|strong="H3899"\w* \w bread|strong="H3899"\w*.” +\p +\v 21 \w Moses|strong="H4872"\w* \w was|strong="H4872"\w* \w content|strong="H2974"\w* \w to|strong="H5414"\w* \w dwell|strong="H3427"\w* \w with|strong="H3427"\w* \w the|strong="H5414"\w* man. \w He|strong="H5414"\w* \w gave|strong="H5414"\w* \w Moses|strong="H4872"\w* \w Zipporah|strong="H6855"\w*, \w his|strong="H5414"\w* \w daughter|strong="H1323"\w*. +\v 22 \w She|strong="H3588"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w he|strong="H3588"\w* \w named|strong="H7121"\w* \w him|strong="H3205"\w* \w Gershom|strong="H1647"\w*,\f + \fr 2:22 \ft “Gershom” sounds like the Hebrew for “an alien there”.\f* \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w said|strong="H7121"\w*, “\w I|strong="H3588"\w* \w have|strong="H1961"\w* \w lived|strong="H1961"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w foreigner|strong="H5237"\w* \w in|strong="H1121"\w* \w a|strong="H3068"\w* \w foreign|strong="H5237"\w* land.” +\p +\v 23 \w In|strong="H3478"\w* \w the|strong="H4480"\w* \w course|strong="H4480"\w* \w of|strong="H1121"\w* \w those|strong="H1992"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w*, \w the|strong="H4480"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w* \w died|strong="H4191"\w*, \w and|strong="H1121"\w* \w the|strong="H4480"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* sighed \w because|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w bondage|strong="H5656"\w*, \w and|strong="H1121"\w* \w they|strong="H1992"\w* \w cried|strong="H2199"\w*, \w and|strong="H1121"\w* \w their|strong="H1992"\w* \w cry|strong="H2199"\w* \w came|strong="H1961"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* God \w because|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w bondage|strong="H5656"\w*. +\v 24 God \w heard|strong="H8085"\w* \w their|strong="H8085"\w* \w groaning|strong="H5009"\w*, \w and|strong="H8085"\w* God \w remembered|strong="H2142"\w* \w his|strong="H8085"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* Abraham, \w with|strong="H1285"\w* \w Isaac|strong="H3327"\w*, \w and|strong="H8085"\w* \w with|strong="H1285"\w* \w Jacob|strong="H3290"\w*. +\v 25 God \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* God \w understood|strong="H3045"\w*. +\c 3 +\p +\v 1 \w Now|strong="H1961"\w* \w Moses|strong="H4872"\w* \w was|strong="H1961"\w* \w keeping|strong="H7462"\w* \w the|strong="H4872"\w* \w flock|strong="H6629"\w* \w of|strong="H2022"\w* \w Jethro|strong="H3503"\w*, \w his|strong="H1961"\w* \w father-in-law|strong="H2859"\w*, \w the|strong="H4872"\w* \w priest|strong="H3548"\w* \w of|strong="H2022"\w* \w Midian|strong="H4080"\w*, \w and|strong="H4872"\w* \w he|strong="H4872"\w* \w led|strong="H5090"\w* \w the|strong="H4872"\w* \w flock|strong="H6629"\w* \w to|strong="H1961"\w* \w the|strong="H4872"\w* back \w of|strong="H2022"\w* \w the|strong="H4872"\w* \w wilderness|strong="H4057"\w*, \w and|strong="H4872"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* God’s \w mountain|strong="H2022"\w*, \w to|strong="H1961"\w* \w Horeb|strong="H2722"\w*. +\v 2 \w Yahweh|strong="H3068"\w*’s\f + \fr 3:2 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w angel|strong="H4397"\w* \w appeared|strong="H7200"\w* \w to|strong="H3068"\w* \w him|strong="H7200"\w* \w in|strong="H3068"\w* \w a|strong="H3068"\w* \w flame|strong="H3827"\w* \w of|strong="H3068"\w* fire \w out|strong="H7200"\w* \w of|strong="H3068"\w* \w the|strong="H7200"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w bush|strong="H5572"\w*. \w He|strong="H3068"\w* \w looked|strong="H7200"\w*, \w and|strong="H3068"\w* \w behold|strong="H2009"\w*, \w the|strong="H7200"\w* \w bush|strong="H5572"\w* \w burned|strong="H1197"\w* \w with|strong="H3068"\w* fire, \w and|strong="H3068"\w* \w the|strong="H7200"\w* \w bush|strong="H5572"\w* \w was|strong="H3068"\w* \w not|strong="H7200"\w* \w consumed|strong="H1197"\w*. +\v 3 \w Moses|strong="H4872"\w* said, “\w I|strong="H7200"\w* \w will|strong="H3808"\w* \w go|strong="H5493"\w* \w now|strong="H4994"\w*, \w and|strong="H4872"\w* \w see|strong="H7200"\w* \w this|strong="H2088"\w* \w great|strong="H1419"\w* \w sight|strong="H4758"\w*, \w why|strong="H4069"\w* \w the|strong="H7200"\w* \w bush|strong="H5572"\w* \w is|strong="H2088"\w* \w not|strong="H3808"\w* \w burned|strong="H1197"\w*.” +\p +\v 4 \w When|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w came|strong="H3068"\w* \w over|strong="H3068"\w* \w to|strong="H3068"\w* \w see|strong="H7200"\w*, \w God|strong="H3068"\w* \w called|strong="H7121"\w* \w to|strong="H3068"\w* \w him|strong="H7121"\w* \w out|strong="H7200"\w* \w of|strong="H3068"\w* \w the|strong="H7200"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H7200"\w* \w bush|strong="H5572"\w*, \w and|strong="H4872"\w* \w said|strong="H7121"\w*, “\w Moses|strong="H4872"\w*! \w Moses|strong="H4872"\w*!” +\p \w He|strong="H3588"\w* \w said|strong="H7121"\w*, “\w Here|strong="H2009"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w*.” +\p +\v 5 \w He|strong="H1931"\w* said, “Don’t \w come|strong="H7126"\w* \w close|strong="H7126"\w*. \w Take|strong="H5975"\w* \w off|strong="H5921"\w* \w your|strong="H5921"\w* \w sandals|strong="H5275"\w*, \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w you|strong="H3588"\w* \w are|strong="H7272"\w* \w standing|strong="H5975"\w* \w on|strong="H5921"\w* \w is|strong="H1931"\w* \w holy|strong="H6944"\w* \w ground|strong="H4725"\w*.” +\v 6 \w Moreover|strong="H3588"\w* \w he|strong="H3588"\w* said, “\w I|strong="H3588"\w* am \w the|strong="H6440"\w* God \w of|strong="H6440"\w* \w your|strong="H6440"\w* father, \w the|strong="H6440"\w* God \w of|strong="H6440"\w* Abraham, \w the|strong="H6440"\w* God \w of|strong="H6440"\w* \w Isaac|strong="H3327"\w*, \w and|strong="H4872"\w* \w the|strong="H6440"\w* God \w of|strong="H6440"\w* \w Jacob|strong="H3290"\w*.” +\p \w Moses|strong="H4872"\w* \w hid|strong="H5641"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w* \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w was|strong="H4872"\w* \w afraid|strong="H3372"\w* \w to|strong="H6440"\w* \w look|strong="H5027"\w* \w at|strong="H6440"\w* God. +\p +\v 7 \w Yahweh|strong="H3068"\w* \w said|strong="H8085"\w*, “\w I|strong="H3588"\w* \w have|strong="H3068"\w* \w surely|strong="H3588"\w* \w seen|strong="H7200"\w* \w the|strong="H6440"\w* \w affliction|strong="H6040"\w* \w of|strong="H3068"\w* \w my|strong="H8085"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w are|strong="H5971"\w* \w in|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w their|strong="H3068"\w* \w cry|strong="H6818"\w* \w because|strong="H3588"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w taskmasters|strong="H5065"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w their|strong="H3068"\w* \w sorrows|strong="H4341"\w*. +\v 8 \w I|strong="H3027"\w* \w have|strong="H3027"\w* \w come|strong="H5927"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w deliver|strong="H5337"\w* \w them|strong="H3027"\w* \w out|strong="H4480"\w* \w of|strong="H3027"\w* \w the|strong="H4480"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H4480"\w* \w Egyptians|strong="H4713"\w*, \w and|strong="H3027"\w* \w to|strong="H3381"\w* \w bring|strong="H5927"\w* \w them|strong="H3027"\w* \w up|strong="H5927"\w* \w out|strong="H4480"\w* \w of|strong="H3027"\w* \w that|strong="H1931"\w* \w land|strong="H4725"\w* \w to|strong="H3381"\w* \w a|strong="H3068"\w* \w good|strong="H2896"\w* \w and|strong="H3027"\w* \w large|strong="H7342"\w* \w land|strong="H4725"\w*, \w to|strong="H3381"\w* \w a|strong="H3068"\w* \w land|strong="H4725"\w* \w flowing|strong="H2100"\w* \w with|strong="H2100"\w* \w milk|strong="H2461"\w* \w and|strong="H3027"\w* \w honey|strong="H1706"\w*; \w to|strong="H3381"\w* \w the|strong="H4480"\w* \w place|strong="H4725"\w* \w of|strong="H3027"\w* \w the|strong="H4480"\w* \w Canaanite|strong="H3669"\w*, \w the|strong="H4480"\w* \w Hittite|strong="H2850"\w*, \w the|strong="H4480"\w* Amorite, \w the|strong="H4480"\w* \w Perizzite|strong="H6522"\w*, \w the|strong="H4480"\w* \w Hivite|strong="H2340"\w*, \w and|strong="H3027"\w* \w the|strong="H4480"\w* \w Jebusite|strong="H2983"\w*. +\v 9 \w Now|strong="H6258"\w*, \w behold|strong="H2009"\w*, \w the|strong="H7200"\w* \w cry|strong="H6818"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w has|strong="H3478"\w* \w come|strong="H3478"\w* \w to|strong="H3478"\w* \w me|strong="H7200"\w*. \w Moreover|strong="H1571"\w* \w I|strong="H2009"\w* \w have|strong="H1121"\w* \w seen|strong="H7200"\w* \w the|strong="H7200"\w* \w oppression|strong="H3906"\w* \w with|strong="H3478"\w* \w which|strong="H3478"\w* \w the|strong="H7200"\w* \w Egyptians|strong="H4713"\w* \w oppress|strong="H3905"\w* \w them|strong="H7200"\w*. +\v 10 \w Come|strong="H3318"\w* \w now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w and|strong="H1121"\w* \w I|strong="H6258"\w* \w will|strong="H5971"\w* \w send|strong="H7971"\w* \w you|strong="H7971"\w* \w to|strong="H3318"\w* \w Pharaoh|strong="H6547"\w*, \w that|strong="H5971"\w* \w you|strong="H7971"\w* \w may|strong="H5971"\w* \w bring|strong="H3318"\w* \w my|strong="H7971"\w* \w people|strong="H5971"\w*, \w the|strong="H7971"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*.” +\p +\v 11 \w Moses|strong="H4872"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w God|strong="H4310"\w*, “\w Who|strong="H4310"\w* am \w I|strong="H3588"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w should|strong="H3588"\w* \w go|strong="H3212"\w* \w to|strong="H3318"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H1121"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w should|strong="H3588"\w* \w bring|strong="H3318"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*?” +\p +\v 12 \w He|strong="H3588"\w* \w said|strong="H3318"\w*, “\w Certainly|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*. \w This|strong="H2088"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w the|strong="H5921"\w* token \w to|strong="H3318"\w* \w you|strong="H3588"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w sent|strong="H7971"\w* \w you|strong="H3588"\w*: \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w brought|strong="H3318"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w out|strong="H3318"\w* \w of|strong="H2022"\w* \w Egypt|strong="H4714"\w*, \w you|strong="H3588"\w* \w shall|strong="H5971"\w* \w serve|strong="H5647"\w* \w God|strong="H7971"\w* \w on|strong="H5921"\w* \w this|strong="H2088"\w* \w mountain|strong="H2022"\w*.” +\p +\v 13 \w Moses|strong="H4872"\w* said \w to|strong="H3478"\w* \w God|strong="H7971"\w*, “\w Behold|strong="H2009"\w*, \w when|strong="H7971"\w* \w I|strong="H2009"\w* \w come|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H7971"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* tell \w them|strong="H7971"\w*, ‘\w The|strong="H7971"\w* \w God|strong="H7971"\w* \w of|strong="H1121"\w* \w your|strong="H7971"\w* fathers \w has|strong="H3478"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w* \w to|strong="H3478"\w* \w you|strong="H7971"\w*,’ \w and|strong="H1121"\w* \w they|strong="H4100"\w* ask \w me|strong="H7971"\w*, ‘\w What|strong="H4100"\w* \w is|strong="H4100"\w* \w his|strong="H7971"\w* \w name|strong="H8034"\w*?’ \w what|strong="H4100"\w* \w should|strong="H4100"\w* \w I|strong="H2009"\w* tell \w them|strong="H7971"\w*?” +\p +\v 14 \w God|strong="H7971"\w* said \w to|strong="H3478"\w* \w Moses|strong="H4872"\w*, “\w I|strong="H3541"\w* \w AM|strong="H1961"\w* \w WHO|strong="H1121"\w* \w I|strong="H3541"\w* \w AM|strong="H1961"\w*,” \w and|strong="H1121"\w* \w he|strong="H7971"\w* said, “\w You|strong="H7971"\w* \w shall|strong="H1121"\w* tell \w the|strong="H3541"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w this|strong="H3541"\w*: ‘\w I|strong="H3541"\w* \w AM|strong="H1961"\w* \w has|strong="H1961"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w* \w to|strong="H3478"\w* \w you|strong="H7971"\w*.’” +\v 15 \w God|strong="H3068"\w* said \w moreover|strong="H3541"\w* \w to|strong="H3478"\w* \w Moses|strong="H4872"\w*, “\w You|strong="H7971"\w* \w shall|strong="H3068"\w* tell \w the|strong="H3541"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w this|strong="H2088"\w*, ‘\w Yahweh|strong="H3068"\w*, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* fathers, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* Abraham, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Isaac|strong="H3327"\w*, \w and|strong="H1121"\w* \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Jacob|strong="H3290"\w*, \w has|strong="H3068"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w* \w to|strong="H3478"\w* \w you|strong="H7971"\w*.’ \w This|strong="H2088"\w* \w is|strong="H3068"\w* \w my|strong="H3068"\w* \w name|strong="H8034"\w* \w forever|strong="H5769"\w*, \w and|strong="H1121"\w* \w this|strong="H2088"\w* \w is|strong="H3068"\w* \w my|strong="H3068"\w* \w memorial|strong="H2143"\w* \w to|strong="H3478"\w* \w all|strong="H1755"\w* \w generations|strong="H1755"\w*. +\v 16 \w Go|strong="H3212"\w* \w and|strong="H3478"\w* \w gather|strong="H6213"\w* \w the|strong="H7200"\w* \w elders|strong="H2205"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* together, \w and|strong="H3478"\w* \w tell|strong="H7200"\w* \w them|strong="H6213"\w*, ‘\w Yahweh|strong="H3068"\w*, \w the|strong="H7200"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* fathers, \w the|strong="H7200"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* Abraham, \w of|strong="H3068"\w* \w Isaac|strong="H3327"\w*, \w and|strong="H3478"\w* \w of|strong="H3068"\w* \w Jacob|strong="H3290"\w*, \w has|strong="H3068"\w* \w appeared|strong="H7200"\w* \w to|strong="H3478"\w* \w me|strong="H7200"\w*, saying, “\w I|strong="H4714"\w* \w have|strong="H3068"\w* \w surely|strong="H6485"\w* \w visited|strong="H6485"\w* \w you|strong="H6213"\w*, \w and|strong="H3478"\w* \w seen|strong="H7200"\w* \w that|strong="H7200"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w done|strong="H6213"\w* \w to|strong="H3478"\w* \w you|strong="H6213"\w* \w in|strong="H3478"\w* \w Egypt|strong="H4714"\w*. +\v 17 \w I|strong="H4714"\w* \w have|strong="H4714"\w* said, \w I|strong="H4714"\w* \w will|strong="H4714"\w* \w bring|strong="H5927"\w* \w you|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H2100"\w* \w of|strong="H5927"\w* \w the|strong="H5927"\w* \w affliction|strong="H6040"\w* \w of|strong="H5927"\w* \w Egypt|strong="H4714"\w* \w to|strong="H5927"\w* \w the|strong="H5927"\w* land \w of|strong="H5927"\w* \w the|strong="H5927"\w* \w Canaanite|strong="H3669"\w*, \w the|strong="H5927"\w* \w Hittite|strong="H2850"\w*, \w the|strong="H5927"\w* Amorite, \w the|strong="H5927"\w* \w Perizzite|strong="H6522"\w*, \w the|strong="H5927"\w* \w Hivite|strong="H2340"\w*, \w and|strong="H2461"\w* \w the|strong="H5927"\w* \w Jebusite|strong="H2983"\w*, \w to|strong="H5927"\w* \w a|strong="H3068"\w* land \w flowing|strong="H2100"\w* \w with|strong="H2100"\w* \w milk|strong="H2461"\w* \w and|strong="H2461"\w* \w honey|strong="H1706"\w*.”’ +\v 18 \w They|strong="H3117"\w* \w will|strong="H3068"\w* \w listen|strong="H8085"\w* \w to|strong="H3478"\w* \w your|strong="H3068"\w* \w voice|strong="H6963"\w*. \w You|strong="H5921"\w* \w shall|strong="H3068"\w* \w come|strong="H3212"\w*, \w you|strong="H5921"\w* \w and|strong="H3478"\w* \w the|strong="H5921"\w* \w elders|strong="H2205"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H3478"\w* \w you|strong="H5921"\w* \w shall|strong="H3068"\w* \w tell|strong="H8085"\w* \w him|strong="H5921"\w*, ‘\w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w Hebrews|strong="H5680"\w*, \w has|strong="H3068"\w* \w met|strong="H7136"\w* \w with|strong="H3068"\w* \w us|strong="H4994"\w*. \w Now|strong="H6258"\w* \w please|strong="H4994"\w* \w let|strong="H4994"\w* \w us|strong="H4994"\w* \w go|strong="H3212"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*’ \w journey|strong="H1870"\w* \w into|strong="H3212"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*, \w that|strong="H3117"\w* \w we|strong="H3068"\w* \w may|strong="H4994"\w* \w sacrifice|strong="H2076"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w our|strong="H3068"\w* \w God|strong="H3068"\w*.’ +\v 19 \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* won’t \w give|strong="H5414"\w* \w you|strong="H3588"\w* permission \w to|strong="H1980"\w* \w go|strong="H1980"\w*, \w no|strong="H3808"\w*, \w not|strong="H3808"\w* \w by|strong="H3027"\w* \w a|strong="H3068"\w* \w mighty|strong="H2389"\w* \w hand|strong="H3027"\w*. +\v 20 \w I|strong="H3651"\w* \w will|strong="H3027"\w* \w reach|strong="H7971"\w* \w out|strong="H7971"\w* \w my|strong="H3605"\w* \w hand|strong="H3027"\w* \w and|strong="H7971"\w* \w strike|strong="H5221"\w* \w Egypt|strong="H4713"\w* \w with|strong="H6213"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w wonders|strong="H6381"\w* \w which|strong="H3605"\w* \w I|strong="H3651"\w* \w will|strong="H3027"\w* \w do|strong="H6213"\w* \w among|strong="H7130"\w* \w them|strong="H7971"\w*, \w and|strong="H7971"\w* \w after|strong="H7971"\w* \w that|strong="H3605"\w* \w he|strong="H3651"\w* \w will|strong="H3027"\w* \w let|strong="H7971"\w* \w you|strong="H3605"\w* \w go|strong="H7971"\w*. +\v 21 \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w favor|strong="H2580"\w* \w in|strong="H3212"\w* \w the|strong="H3588"\w* \w sight|strong="H5869"\w* \w of|strong="H5869"\w* \w the|strong="H3588"\w* \w Egyptians|strong="H4713"\w*, \w and|strong="H3212"\w* \w it|strong="H5414"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w that|strong="H3588"\w* \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w go|strong="H3212"\w*, \w you|strong="H3588"\w* \w shall|strong="H5971"\w* \w not|strong="H3808"\w* \w go|strong="H3212"\w* \w empty-handed|strong="H7387"\w*. +\v 22 \w But|strong="H5921"\w* \w every|strong="H7760"\w* \w woman|strong="H1323"\w* \w shall|strong="H1121"\w* \w ask|strong="H7592"\w* \w of|strong="H1121"\w* \w her|strong="H5921"\w* \w neighbor|strong="H7934"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w her|strong="H5921"\w* \w who|strong="H1121"\w* visits \w her|strong="H5921"\w* \w house|strong="H1004"\w*, \w jewels|strong="H3627"\w* \w of|strong="H1121"\w* \w silver|strong="H3701"\w*, \w jewels|strong="H3627"\w* \w of|strong="H1121"\w* \w gold|strong="H2091"\w*, \w and|strong="H1121"\w* \w clothing|strong="H8071"\w*. \w You|strong="H5921"\w* \w shall|strong="H1121"\w* \w put|strong="H7760"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w daughters|strong="H1323"\w*. \w You|strong="H5921"\w* \w shall|strong="H1121"\w* \w plunder|strong="H5337"\w* \w the|strong="H5921"\w* \w Egyptians|strong="H4713"\w*.” +\c 4 +\p +\v 1 \w Moses|strong="H4872"\w* \w answered|strong="H6030"\w*, “\w But|strong="H3588"\w*, \w behold|strong="H2005"\w*, \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* believe \w me|strong="H7200"\w*, \w nor|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w say|strong="H6963"\w*, ‘\w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w appeared|strong="H7200"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w*.’” +\p +\v 2 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w him|strong="H3027"\w*, “\w What|strong="H2088"\w* \w is|strong="H3068"\w* \w that|strong="H3068"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*?” +\p \w He|strong="H3068"\w* said, “\w A|strong="H3068"\w* \w rod|strong="H4294"\w*.” +\p +\v 3 \w He|strong="H6440"\w* said, “\w Throw|strong="H7993"\w* \w it|strong="H6440"\w* \w on|strong="H1961"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w*.” +\p \w He|strong="H6440"\w* \w threw|strong="H7993"\w* \w it|strong="H6440"\w* \w on|strong="H1961"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w*, \w and|strong="H4872"\w* \w it|strong="H6440"\w* \w became|strong="H1961"\w* \w a|strong="H3068"\w* \w snake|strong="H5175"\w*; \w and|strong="H4872"\w* \w Moses|strong="H4872"\w* \w ran|strong="H5127"\w* \w away|strong="H7993"\w* \w from|strong="H6440"\w* \w it|strong="H6440"\w*. +\p +\v 4 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w Stretch|strong="H7971"\w* \w out|strong="H7971"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*, \w and|strong="H4872"\w* \w take|strong="H2388"\w* \w it|strong="H1961"\w* \w by|strong="H3027"\w* \w the|strong="H3068"\w* \w tail|strong="H2180"\w*.” +\p \w He|strong="H3068"\w* \w stretched|strong="H7971"\w* \w out|strong="H7971"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w*, \w and|strong="H4872"\w* \w took|strong="H2388"\w* \w hold|strong="H2388"\w* \w of|strong="H3068"\w* \w it|strong="H1961"\w*, \w and|strong="H4872"\w* \w it|strong="H1961"\w* \w became|strong="H1961"\w* \w a|strong="H3068"\w* \w rod|strong="H4294"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w*. +\p +\v 5 “\w This|strong="H7200"\w* \w is|strong="H3068"\w* \w so|strong="H4616"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w may|strong="H3068"\w* believe \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H7200"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* fathers, \w the|strong="H7200"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* Abraham, \w the|strong="H7200"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Isaac|strong="H3327"\w*, \w and|strong="H3068"\w* \w the|strong="H7200"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Jacob|strong="H3290"\w*, \w has|strong="H3068"\w* \w appeared|strong="H7200"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w*.” +\v 6 \w Yahweh|strong="H3068"\w* \w said|strong="H3318"\w* \w furthermore|strong="H5750"\w* \w to|strong="H3318"\w* \w him|strong="H3027"\w*, “\w Now|strong="H4994"\w* \w put|strong="H3318"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w inside|strong="H3027"\w* \w your|strong="H3068"\w* cloak.” +\p \w He|strong="H3068"\w* \w put|strong="H3318"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w* \w inside|strong="H3027"\w* \w his|strong="H3068"\w* cloak, \w and|strong="H3068"\w* \w when|strong="H3318"\w* \w he|strong="H3068"\w* \w took|strong="H3318"\w* \w it|strong="H3068"\w* \w out|strong="H3318"\w*, \w behold|strong="H2009"\w*, \w his|strong="H3068"\w* \w hand|strong="H3027"\w* \w was|strong="H3068"\w* \w leprous|strong="H6879"\w*, \w as|strong="H3068"\w* white \w as|strong="H3068"\w* \w snow|strong="H7950"\w*. +\p +\v 7 \w He|strong="H3027"\w* \w said|strong="H3318"\w*, “\w Put|strong="H7725"\w* \w your|strong="H7725"\w* \w hand|strong="H3027"\w* \w inside|strong="H3027"\w* \w your|strong="H7725"\w* cloak \w again|strong="H7725"\w*.” +\p \w He|strong="H3027"\w* \w put|strong="H7725"\w* \w his|strong="H7725"\w* \w hand|strong="H3027"\w* \w inside|strong="H3027"\w* \w his|strong="H7725"\w* cloak \w again|strong="H7725"\w*, \w and|strong="H7725"\w* \w when|strong="H3318"\w* \w he|strong="H3027"\w* \w took|strong="H3318"\w* \w it|strong="H7725"\w* \w out|strong="H3318"\w* \w of|strong="H3027"\w* \w his|strong="H7725"\w* cloak, \w behold|strong="H2009"\w*, \w it|strong="H7725"\w* \w had|strong="H3027"\w* \w turned|strong="H7725"\w* \w again|strong="H7725"\w* \w as|strong="H3318"\w* \w his|strong="H7725"\w* other \w flesh|strong="H1320"\w*. +\p +\v 8 “\w It|strong="H1961"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w*, \w if|strong="H1961"\w* \w they|strong="H3808"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* believe \w you|strong="H3808"\w* \w or|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H1961"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w first|strong="H7223"\w* sign, \w that|strong="H8085"\w* \w they|strong="H3808"\w* \w will|strong="H1961"\w* believe \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* latter sign. +\v 9 \w It|strong="H1961"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w*, \w if|strong="H1961"\w* \w they|strong="H3808"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* believe \w even|strong="H1571"\w* \w these|strong="H8085"\w* \w two|strong="H8147"\w* signs \w or|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H1961"\w* \w your|strong="H3947"\w* \w voice|strong="H6963"\w*, \w that|strong="H8085"\w* \w you|strong="H3947"\w* \w shall|strong="H3808"\w* \w take|strong="H3947"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w water|strong="H4325"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w river|strong="H2975"\w*, \w and|strong="H6963"\w* \w pour|strong="H8210"\w* \w it|strong="H1961"\w* \w on|strong="H1961"\w* \w the|strong="H8085"\w* \w dry|strong="H3004"\w* \w land|strong="H3004"\w*. \w The|strong="H8085"\w* \w water|strong="H4325"\w* \w which|strong="H4325"\w* \w you|strong="H3947"\w* \w take|strong="H3947"\w* \w out|strong="H8210"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w river|strong="H2975"\w* \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w blood|strong="H1818"\w* \w on|strong="H1961"\w* \w the|strong="H8085"\w* \w dry|strong="H3004"\w* \w land|strong="H3004"\w*.” +\p +\v 10 \w Moses|strong="H4872"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*, “\w O|strong="H3068"\w* \w Lord|strong="H3068"\w*,\f + \fr 4:10 \ft The word translated “Lord” is “Adonai”.\f* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w not|strong="H3808"\w* \w eloquent|strong="H1697"\w*, \w neither|strong="H3808"\w* \w before|strong="H3808"\w* \w now|strong="H3588"\w*, \w nor|strong="H3808"\w* \w since|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w slow|strong="H3515"\w* \w of|strong="H3068"\w* \w speech|strong="H1697"\w*, \w and|strong="H4872"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w slow|strong="H3515"\w* \w tongue|strong="H3956"\w*.” +\p +\v 11 \w Yahweh|strong="H3068"\w* \w said|strong="H6310"\w* \w to|strong="H3068"\w* \w him|strong="H7760"\w*, “\w Who|strong="H4310"\w* \w made|strong="H7760"\w* \w man|strong="H2795"\w*’s \w mouth|strong="H6310"\w*? \w Or|strong="H3808"\w* \w who|strong="H4310"\w* \w makes|strong="H7760"\w* \w one|strong="H3808"\w* mute, \w or|strong="H3808"\w* \w deaf|strong="H2795"\w*, \w or|strong="H3808"\w* \w seeing|strong="H6493"\w*, \w or|strong="H3808"\w* \w blind|strong="H5787"\w*? Isn’t \w it|strong="H7760"\w* \w I|strong="H7760"\w*, \w Yahweh|strong="H3068"\w*? +\v 12 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w go|strong="H3212"\w*, \w and|strong="H3212"\w* \w I|strong="H6258"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w your|strong="H1961"\w* \w mouth|strong="H6310"\w*, \w and|strong="H3212"\w* \w teach|strong="H3384"\w* \w you|strong="H5973"\w* \w what|strong="H6310"\w* \w you|strong="H5973"\w* \w shall|strong="H6310"\w* \w speak|strong="H1696"\w*.” +\p +\v 13 Moses said, “\w Oh|strong="H4994"\w*, Lord, \w please|strong="H4994"\w* \w send|strong="H7971"\w* someone \w else|strong="H3027"\w*.” +\p +\v 14 \w Yahweh|strong="H3068"\w*’s anger \w burned|strong="H2734"\w* \w against|strong="H7125"\w* \w Moses|strong="H4872"\w*, \w and|strong="H4872"\w* \w he|strong="H1931"\w* \w said|strong="H1696"\w*, “\w What|strong="H3045"\w* \w about|strong="H3045"\w* Aaron, \w your|strong="H3068"\w* brother, \w the|strong="H7200"\w* \w Levite|strong="H3881"\w*? \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w can|strong="H7200"\w* \w speak|strong="H1696"\w* \w well|strong="H1571"\w*. \w Also|strong="H1571"\w*, \w behold|strong="H2009"\w*, \w he|strong="H1931"\w* \w is|strong="H3068"\w* \w coming|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H1696"\w* \w meet|strong="H7125"\w* \w you|strong="H3588"\w*. \w When|strong="H3588"\w* \w he|strong="H1931"\w* \w sees|strong="H7200"\w* \w you|strong="H3588"\w*, \w he|strong="H1931"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w glad|strong="H8055"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w heart|strong="H3820"\w*. +\v 15 \w You|strong="H6213"\w* \w shall|strong="H6310"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H6213"\w*, \w and|strong="H6213"\w* \w put|strong="H7760"\w* \w the|strong="H6213"\w* \w words|strong="H1697"\w* \w in|strong="H6213"\w* \w his|strong="H7760"\w* \w mouth|strong="H6310"\w*. \w I|strong="H7760"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w your|strong="H7760"\w* \w mouth|strong="H6310"\w*, \w and|strong="H6213"\w* \w with|strong="H5973"\w* \w his|strong="H7760"\w* \w mouth|strong="H6310"\w*, \w and|strong="H6213"\w* \w will|strong="H1961"\w* \w teach|strong="H3384"\w* \w you|strong="H6213"\w* \w what|strong="H1697"\w* \w you|strong="H6213"\w* \w shall|strong="H6310"\w* \w do|strong="H6213"\w*. +\v 16 \w He|strong="H1931"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w your|strong="H1961"\w* \w spokesman|strong="H6310"\w* \w to|strong="H1696"\w* \w the|strong="H1961"\w* \w people|strong="H5971"\w*. \w It|strong="H1931"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w that|strong="H5971"\w* \w he|strong="H1931"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w to|strong="H1696"\w* \w you|strong="H1696"\w* \w a|strong="H3068"\w* \w mouth|strong="H6310"\w*, \w and|strong="H5971"\w* \w you|strong="H1696"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w to|strong="H1696"\w* \w him|strong="H1931"\w* \w as|strong="H1961"\w* God. +\v 17 \w You|strong="H3947"\w* \w shall|strong="H3027"\w* \w take|strong="H3947"\w* \w this|strong="H2088"\w* \w rod|strong="H4294"\w* \w in|strong="H6213"\w* \w your|strong="H3947"\w* \w hand|strong="H3027"\w*, \w with|strong="H6213"\w* \w which|strong="H2088"\w* \w you|strong="H3947"\w* \w shall|strong="H3027"\w* \w do|strong="H6213"\w* \w the|strong="H3947"\w* signs.” +\p +\v 18 \w Moses|strong="H4872"\w* \w went|strong="H3212"\w* \w and|strong="H4872"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Jethro|strong="H3503"\w* \w his|strong="H7725"\w* \w father-in-law|strong="H2859"\w*, \w and|strong="H4872"\w* said \w to|strong="H7725"\w* \w him|strong="H7725"\w*, “\w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w me|strong="H4994"\w* \w go|strong="H3212"\w* \w and|strong="H4872"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w my|strong="H7200"\w* brothers \w who|strong="H2416"\w* \w are|strong="H4714"\w* \w in|strong="H3212"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H4872"\w* \w see|strong="H7200"\w* \w whether|strong="H7200"\w* \w they|strong="H7965"\w* \w are|strong="H4714"\w* \w still|strong="H5750"\w* \w alive|strong="H2416"\w*.” +\p \w Jethro|strong="H3503"\w* said \w to|strong="H7725"\w* \w Moses|strong="H4872"\w*, “\w Go|strong="H3212"\w* \w in|strong="H3212"\w* \w peace|strong="H7965"\w*.” +\p +\v 19 \w Yahweh|strong="H3068"\w* said \w to|strong="H7725"\w* \w Moses|strong="H4872"\w* \w in|strong="H3068"\w* \w Midian|strong="H4080"\w*, “\w Go|strong="H3212"\w*, \w return|strong="H7725"\w* \w into|strong="H7725"\w* \w Egypt|strong="H4714"\w*; \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w who|strong="H3605"\w* \w sought|strong="H1245"\w* \w your|strong="H3068"\w* \w life|strong="H5315"\w* \w are|strong="H3068"\w* \w dead|strong="H4191"\w*.” +\p +\v 20 \w Moses|strong="H4872"\w* \w took|strong="H3947"\w* \w his|strong="H3947"\w* wife \w and|strong="H1121"\w* \w his|strong="H3947"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w set|strong="H7392"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w donkey|strong="H2543"\w*, \w and|strong="H1121"\w* \w he|strong="H3027"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H5921"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*. \w Moses|strong="H4872"\w* \w took|strong="H3947"\w* \w God|strong="H3027"\w*’s \w rod|strong="H4294"\w* \w in|strong="H5921"\w* \w his|strong="H3947"\w* \w hand|strong="H3027"\w*. +\v 21 \w Yahweh|strong="H3068"\w* said \w to|strong="H7725"\w* \w Moses|strong="H4872"\w*, “\w When|strong="H7200"\w* \w you|strong="H6440"\w* \w go|strong="H3212"\w* \w back|strong="H7725"\w* \w into|strong="H7725"\w* \w Egypt|strong="H4714"\w*, \w see|strong="H7200"\w* \w that|strong="H5971"\w* \w you|strong="H6440"\w* \w do|strong="H6213"\w* \w before|strong="H6440"\w* \w Pharaoh|strong="H6547"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w wonders|strong="H4159"\w* \w which|strong="H3068"\w* \w I|strong="H7760"\w* \w have|strong="H3068"\w* \w put|strong="H7760"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*, \w but|strong="H3808"\w* \w I|strong="H7760"\w* \w will|strong="H3068"\w* \w harden|strong="H2388"\w* \w his|strong="H3605"\w* \w heart|strong="H3820"\w* \w and|strong="H4872"\w* \w he|strong="H6213"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w let|strong="H7971"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w go|strong="H3212"\w*. +\v 22 \w You|strong="H3478"\w* \w shall|strong="H3068"\w* tell \w Pharaoh|strong="H6547"\w*, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, \w Israel|strong="H3478"\w* \w is|strong="H3068"\w* \w my|strong="H3068"\w* \w son|strong="H1121"\w*, \w my|strong="H3068"\w* \w firstborn|strong="H1060"\w*, +\v 23 \w and|strong="H1121"\w* \w I|strong="H2009"\w* \w have|strong="H1121"\w* said \w to|strong="H7971"\w* \w you|strong="H7971"\w*, “\w Let|strong="H7971"\w* \w my|strong="H7971"\w* \w son|strong="H1121"\w* \w go|strong="H7971"\w*, \w that|strong="H1121"\w* \w he|strong="H7971"\w* \w may|strong="H1121"\w* \w serve|strong="H5647"\w* \w me|strong="H7971"\w*;” \w and|strong="H1121"\w* \w you|strong="H7971"\w* \w have|strong="H1121"\w* \w refused|strong="H3985"\w* \w to|strong="H7971"\w* \w let|strong="H7971"\w* \w him|strong="H7971"\w* \w go|strong="H7971"\w*. \w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w will|strong="H1121"\w* \w kill|strong="H2026"\w* \w your|strong="H7971"\w* \w firstborn|strong="H1060"\w* \w son|strong="H1121"\w*.’” +\p +\v 24 \w On|strong="H1870"\w* \w the|strong="H3068"\w* \w way|strong="H1870"\w* \w at|strong="H3068"\w* \w a|strong="H3068"\w* \w lodging|strong="H4411"\w* \w place|strong="H4411"\w*, \w Yahweh|strong="H3068"\w* \w met|strong="H6298"\w* Moses \w and|strong="H3068"\w* \w wanted|strong="H1245"\w* \w to|strong="H4191"\w* \w kill|strong="H4191"\w* \w him|strong="H4191"\w*. +\v 25 \w Then|strong="H3947"\w* \w Zipporah|strong="H6855"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* \w flint|strong="H6864"\w*, \w and|strong="H1121"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w the|strong="H3588"\w* \w foreskin|strong="H6190"\w* \w of|strong="H1121"\w* \w her|strong="H3947"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w cast|strong="H5060"\w* \w it|strong="H3588"\w* \w at|strong="H1121"\w* \w his|strong="H3947"\w* \w feet|strong="H7272"\w*; \w and|strong="H1121"\w* \w she|strong="H3588"\w* said, “\w Surely|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H1121"\w* \w a|strong="H3068"\w* \w bridegroom|strong="H2860"\w* \w of|strong="H1121"\w* \w blood|strong="H1818"\w* \w to|strong="H1121"\w* \w me|strong="H3947"\w*.” +\p +\v 26 \w So|strong="H4480"\w* \w he|strong="H4480"\w* \w let|strong="H7503"\w* \w him|strong="H7503"\w* \w alone|strong="H7503"\w*. Then she said, “\w You|strong="H4480"\w* \w are|strong="H1818"\w* \w a|strong="H3068"\w* \w bridegroom|strong="H2860"\w* \w of|strong="H4480"\w* \w blood|strong="H1818"\w*,” \w because|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w circumcision|strong="H4139"\w*. +\p +\v 27 \w Yahweh|strong="H3068"\w* said \w to|strong="H3212"\w* Aaron, “\w Go|strong="H3212"\w* \w into|strong="H3212"\w* \w the|strong="H3068"\w* \w wilderness|strong="H4057"\w* \w to|strong="H3212"\w* \w meet|strong="H7125"\w* \w Moses|strong="H4872"\w*.” +\p \w He|strong="H3068"\w* \w went|strong="H3212"\w*, \w and|strong="H4872"\w* \w met|strong="H6298"\w* \w him|strong="H7125"\w* \w on|strong="H3068"\w* \w God|strong="H3068"\w*’s \w mountain|strong="H2022"\w*, \w and|strong="H4872"\w* \w kissed|strong="H5401"\w* \w him|strong="H7125"\w*. +\v 28 \w Moses|strong="H4872"\w* \w told|strong="H5046"\w* Aaron \w all|strong="H3605"\w* \w Yahweh|strong="H3068"\w*’s \w words|strong="H1697"\w* \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w* \w sent|strong="H7971"\w* \w him|strong="H7971"\w*, \w and|strong="H4872"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* signs \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w* \w instructed|strong="H6680"\w* \w him|strong="H7971"\w*. +\v 29 \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* Aaron \w went|strong="H3212"\w* \w and|strong="H1121"\w* \w gathered|strong="H3478"\w* together \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 30 Aaron \w spoke|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w and|strong="H4872"\w* \w did|strong="H6213"\w* \w the|strong="H3605"\w* signs \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*. +\v 31 \w The|strong="H8085"\w* \w people|strong="H5971"\w* believed, \w and|strong="H1121"\w* \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w visited|strong="H6485"\w* \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H3068"\w* \w seen|strong="H7200"\w* \w their|strong="H3068"\w* \w affliction|strong="H6040"\w*, \w then|strong="H8085"\w* \w they|strong="H3588"\w* \w bowed|strong="H7812"\w* \w their|strong="H3068"\w* \w heads|strong="H6915"\w* \w and|strong="H1121"\w* \w worshiped|strong="H7812"\w*. +\c 5 +\p +\v 1 Afterward \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron \w came|strong="H3478"\w*, \w and|strong="H4872"\w* said \w to|strong="H3478"\w* \w Pharaoh|strong="H6547"\w*, “\w This|strong="H3541"\w* \w is|strong="H3068"\w* \w what|strong="H3541"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*, ‘\w Let|strong="H7971"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w go|strong="H7971"\w*, \w that|strong="H5971"\w* \w they|strong="H3068"\w* \w may|strong="H3068"\w* hold \w a|strong="H3068"\w* \w feast|strong="H2287"\w* \w to|strong="H3478"\w* \w me|strong="H7971"\w* \w in|strong="H3478"\w* \w the|strong="H3541"\w* \w wilderness|strong="H4057"\w*.’” +\p +\v 2 \w Pharaoh|strong="H6547"\w* \w said|strong="H8085"\w*, “\w Who|strong="H4310"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w that|strong="H3045"\w* \w I|strong="H3045"\w* \w should|strong="H3068"\w* \w listen|strong="H8085"\w* \w to|strong="H3478"\w* \w his|strong="H3068"\w* \w voice|strong="H6963"\w* \w to|strong="H3478"\w* \w let|strong="H7971"\w* \w Israel|strong="H3478"\w* \w go|strong="H7971"\w*? \w I|strong="H3045"\w* don’t \w know|strong="H3045"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3478"\w* \w moreover|strong="H1571"\w* \w I|strong="H3045"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w let|strong="H7971"\w* \w Israel|strong="H3478"\w* \w go|strong="H7971"\w*.” +\p +\v 3 \w They|strong="H3117"\w* said, “\w The|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w Hebrews|strong="H5680"\w* \w has|strong="H3068"\w* \w met|strong="H7122"\w* \w with|strong="H3068"\w* \w us|strong="H4994"\w*. \w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w us|strong="H4994"\w* \w go|strong="H3212"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*’ \w journey|strong="H1870"\w* \w into|strong="H3212"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*, \w and|strong="H3068"\w* \w sacrifice|strong="H2076"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w lest|strong="H6435"\w* \w he|strong="H3117"\w* \w fall|strong="H6293"\w* \w on|strong="H5921"\w* \w us|strong="H4994"\w* \w with|strong="H3068"\w* \w pestilence|strong="H1698"\w*, \w or|strong="H6435"\w* \w with|strong="H3068"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w*.” +\p +\v 4 \w The|strong="H4872"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* said \w to|strong="H3212"\w* them, “\w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H4100"\w*, \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron, \w take|strong="H3212"\w* \w the|strong="H4872"\w* \w people|strong="H5971"\w* \w from|strong="H3212"\w* \w their|strong="H4714"\w* \w work|strong="H4639"\w*? \w Get|strong="H3212"\w* \w back|strong="H6544"\w* \w to|strong="H3212"\w* \w your|strong="H4100"\w* \w burdens|strong="H5450"\w*!” +\v 5 \w Pharaoh|strong="H6547"\w* said, “\w Behold|strong="H2005"\w*, \w the|strong="H6258"\w* \w people|strong="H5971"\w* \w of|strong="H5971"\w* \w the|strong="H6258"\w* land \w are|strong="H5971"\w* \w now|strong="H6258"\w* \w many|strong="H7227"\w*, \w and|strong="H5971"\w* \w you|strong="H5971"\w* \w make|strong="H7673"\w* them \w rest|strong="H7673"\w* \w from|strong="H7673"\w* \w their|strong="H6258"\w* \w burdens|strong="H5450"\w*.” +\v 6 \w The|strong="H3117"\w* \w same|strong="H1931"\w* \w day|strong="H3117"\w* \w Pharaoh|strong="H6547"\w* \w commanded|strong="H6680"\w* \w the|strong="H3117"\w* \w taskmasters|strong="H5065"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w people|strong="H5971"\w* \w and|strong="H3117"\w* \w their|strong="H3117"\w* \w officers|strong="H7860"\w*, saying, +\v 7 “\w You|strong="H5414"\w* \w shall|strong="H5971"\w* \w no|strong="H3808"\w* \w longer|strong="H3254"\w* \w give|strong="H5414"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w* \w straw|strong="H8401"\w* \w to|strong="H3212"\w* \w make|strong="H5414"\w* \w brick|strong="H3843"\w*, \w as|strong="H5971"\w* \w before|strong="H3808"\w*. \w Let|strong="H5414"\w* \w them|strong="H5414"\w* \w go|strong="H3212"\w* \w and|strong="H3212"\w* \w gather|strong="H7197"\w* \w straw|strong="H8401"\w* \w for|strong="H5414"\w* \w themselves|strong="H1992"\w*. +\v 8 \w You|strong="H3588"\w* \w shall|strong="H3808"\w* require \w from|strong="H4480"\w* \w them|strong="H1992"\w* \w the|strong="H5921"\w* number \w of|strong="H4480"\w* \w the|strong="H5921"\w* \w bricks|strong="H3843"\w* \w which|strong="H1992"\w* \w they|strong="H1992"\w* \w made|strong="H6213"\w* \w before|strong="H4480"\w*. \w You|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w diminish|strong="H1639"\w* \w anything|strong="H1992"\w* \w of|strong="H4480"\w* \w it|strong="H7760"\w*, \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w idle|strong="H7503"\w*. \w Therefore|strong="H3651"\w* \w they|strong="H1992"\w* \w cry|strong="H6817"\w*, saying, ‘\w Let|strong="H7503"\w*’s \w go|strong="H3212"\w* \w and|strong="H3212"\w* \w sacrifice|strong="H2076"\w* \w to|strong="H3212"\w* \w our|strong="H5921"\w* \w God|strong="H3808"\w*.’ +\v 9 Let \w heavier|strong="H3513"\w* \w work|strong="H5656"\w* \w be|strong="H1697"\w* \w laid|strong="H3513"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w men|strong="H6213"\w*, \w that|strong="H1697"\w* \w they|strong="H5921"\w* \w may|strong="H6213"\w* \w labor|strong="H5656"\w* \w in|strong="H5921"\w* \w it|strong="H5921"\w*. Don’t let \w them|strong="H5921"\w* \w pay|strong="H8159"\w* \w any|strong="H6213"\w* \w attention|strong="H8159"\w* \w to|strong="H5921"\w* \w lying|strong="H8267"\w* \w words|strong="H1697"\w*.” +\p +\v 10 \w The|strong="H5414"\w* \w taskmasters|strong="H5065"\w* \w of|strong="H5971"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w with|strong="H3318"\w* \w their|strong="H5414"\w* \w officers|strong="H7860"\w*, \w and|strong="H5971"\w* \w they|strong="H5971"\w* spoke \w to|strong="H3318"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w*, saying, “\w This|strong="H3541"\w* \w is|strong="H5971"\w* \w what|strong="H3541"\w* \w Pharaoh|strong="H6547"\w* \w says|strong="H3541"\w*: ‘\w I|strong="H5414"\w* \w will|strong="H5971"\w* \w not|strong="H5414"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w straw|strong="H8401"\w*. +\v 11 \w Go|strong="H3212"\w* yourselves, \w get|strong="H3947"\w* \w straw|strong="H8401"\w* where \w you|strong="H3588"\w* \w can|strong="H3947"\w* \w find|strong="H4672"\w* \w it|strong="H3588"\w*, \w for|strong="H3588"\w* \w nothing|strong="H1697"\w* \w of|strong="H1697"\w* \w your|strong="H3947"\w* \w work|strong="H5656"\w* \w shall|strong="H1697"\w* \w be|strong="H1697"\w* \w diminished|strong="H1639"\w*.’” +\v 12 \w So|strong="H6327"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w were|strong="H5971"\w* \w scattered|strong="H6327"\w* \w abroad|strong="H6327"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H5971"\w* \w Egypt|strong="H4714"\w* \w to|strong="H4714"\w* \w gather|strong="H7197"\w* \w stubble|strong="H7179"\w* \w for|strong="H4714"\w* \w straw|strong="H8401"\w*. +\v 13 \w The|strong="H3117"\w* \w taskmasters|strong="H5065"\w* \w were|strong="H1961"\w* urgent \w saying|strong="H1697"\w*, “\w Fulfill|strong="H3615"\w* \w your|strong="H1961"\w* \w work|strong="H4639"\w* \w quota|strong="H4639"\w* \w daily|strong="H3117"\w*, \w as|strong="H1697"\w* \w when|strong="H1961"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w straw|strong="H8401"\w*!” +\v 14 \w The|strong="H5921"\w* \w officers|strong="H7860"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, whom \w Pharaoh|strong="H6547"\w*’s \w taskmasters|strong="H5065"\w* \w had|strong="H3478"\w* \w set|strong="H7760"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w*, \w were|strong="H3478"\w* \w beaten|strong="H5221"\w*, \w and|strong="H1121"\w* \w were|strong="H3478"\w* asked, “\w Why|strong="H4069"\w* haven’t \w you|strong="H5921"\w* \w fulfilled|strong="H3615"\w* \w your|strong="H5921"\w* quota \w both|strong="H1571"\w* \w yesterday|strong="H8543"\w* \w and|strong="H1121"\w* \w today|strong="H3117"\w*, \w in|strong="H5921"\w* \w making|strong="H3835"\w* \w brick|strong="H3835"\w* \w as|strong="H3117"\w* \w before|strong="H5921"\w*?” +\p +\v 15 \w Then|strong="H6213"\w* \w the|strong="H3541"\w* \w officers|strong="H7860"\w* \w of|strong="H1121"\w* \w the|strong="H3541"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w came|strong="H3478"\w* \w and|strong="H1121"\w* \w cried|strong="H6817"\w* \w to|strong="H3478"\w* \w Pharaoh|strong="H6547"\w*, saying, “\w Why|strong="H4100"\w* \w do|strong="H6213"\w* \w you|strong="H6213"\w* \w deal|strong="H6213"\w* \w this|strong="H6213"\w* \w way|strong="H3541"\w* \w with|strong="H6213"\w* \w your|strong="H6213"\w* \w servants|strong="H5650"\w*? +\v 16 \w No|strong="H6213"\w* \w straw|strong="H8401"\w* \w is|strong="H2009"\w* \w given|strong="H5414"\w* \w to|strong="H6213"\w* \w your|strong="H5414"\w* \w servants|strong="H5650"\w*, \w and|strong="H5971"\w* \w they|strong="H6213"\w* tell \w us|strong="H5414"\w*, ‘\w Make|strong="H6213"\w* \w brick|strong="H3843"\w*!’ \w and|strong="H5971"\w* \w behold|strong="H2009"\w*, \w your|strong="H5414"\w* \w servants|strong="H5650"\w* \w are|strong="H5971"\w* \w beaten|strong="H5221"\w*; \w but|strong="H2009"\w* \w the|strong="H5414"\w* \w fault|strong="H2398"\w* \w is|strong="H2009"\w* \w in|strong="H6213"\w* \w your|strong="H5414"\w* \w own|strong="H5971"\w* \w people|strong="H5971"\w*.” +\p +\v 17 \w But|strong="H3651"\w* Pharaoh \w said|strong="H3651"\w*, “\w You|strong="H5921"\w* \w are|strong="H3068"\w* \w idle|strong="H7503"\w*! \w You|strong="H5921"\w* \w are|strong="H3068"\w* \w idle|strong="H7503"\w*! \w Therefore|strong="H3651"\w* \w you|strong="H5921"\w* say, ‘\w Let|strong="H7503"\w*’s \w go|strong="H3212"\w* \w and|strong="H3068"\w* \w sacrifice|strong="H2076"\w* \w to|strong="H3212"\w* \w Yahweh|strong="H3068"\w*.’ +\v 18 \w Go|strong="H3212"\w* \w therefore|strong="H6258"\w* \w now|strong="H6258"\w*, \w and|strong="H3212"\w* \w work|strong="H5647"\w*; \w for|strong="H5414"\w* \w no|strong="H3808"\w* \w straw|strong="H8401"\w* \w shall|strong="H3808"\w* \w be|strong="H3808"\w* \w given|strong="H5414"\w* \w to|strong="H3212"\w* \w you|strong="H5414"\w*; \w yet|strong="H6258"\w* \w you|strong="H5414"\w* \w shall|strong="H3808"\w* \w deliver|strong="H5414"\w* \w the|strong="H5414"\w* same number \w of|strong="H5647"\w* \w bricks|strong="H3843"\w*!” +\p +\v 19 \w The|strong="H7200"\w* \w officers|strong="H7860"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w saw|strong="H7200"\w* \w that|strong="H7200"\w* \w they|strong="H3117"\w* \w were|strong="H3478"\w* \w in|strong="H3478"\w* \w trouble|strong="H7451"\w* \w when|strong="H3117"\w* \w it|strong="H7200"\w* \w was|strong="H3478"\w* \w said|strong="H1697"\w*, “\w You|strong="H3117"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w diminish|strong="H1639"\w* \w anything|strong="H1697"\w* \w from|strong="H3478"\w* \w your|strong="H7200"\w* \w daily|strong="H3117"\w* quota \w of|strong="H1121"\w* \w bricks|strong="H3843"\w*!” +\p +\v 20 \w They|strong="H3318"\w* \w met|strong="H6293"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron, \w who|strong="H6547"\w* \w stood|strong="H5324"\w* along \w the|strong="H3318"\w* \w way|strong="H7125"\w*, \w as|strong="H3318"\w* \w they|strong="H3318"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w Pharaoh|strong="H6547"\w*. +\v 21 \w They|strong="H3068"\w* said \w to|strong="H3068"\w* \w them|strong="H5414"\w*, “\w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w look|strong="H7200"\w* \w at|strong="H5921"\w* \w you|strong="H5414"\w* \w and|strong="H3068"\w* \w judge|strong="H8199"\w*, \w because|strong="H5921"\w* \w you|strong="H5414"\w* \w have|strong="H3068"\w* \w made|strong="H5414"\w* \w us|strong="H5414"\w* \w a|strong="H3068"\w* stench \w to|strong="H3068"\w* \w be|strong="H3027"\w* abhorred \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w eyes|strong="H5869"\w* \w of|strong="H3068"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w eyes|strong="H5869"\w* \w of|strong="H3068"\w* \w his|strong="H5414"\w* \w servants|strong="H5650"\w*, \w to|strong="H3068"\w* \w put|strong="H5414"\w* \w a|strong="H3068"\w* \w sword|strong="H2719"\w* \w in|strong="H5921"\w* \w their|strong="H3068"\w* \w hand|strong="H3027"\w* \w to|strong="H3068"\w* \w kill|strong="H2026"\w* \w us|strong="H5414"\w*!” +\p +\v 22 \w Moses|strong="H4872"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H4872"\w* said, “\w Lord|strong="H3068"\w*, \w why|strong="H4100"\w* \w have|strong="H3068"\w* \w you|strong="H7971"\w* \w brought|strong="H7725"\w* \w trouble|strong="H2088"\w* \w on|strong="H3068"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*? \w Why|strong="H4100"\w* \w is|strong="H3068"\w* \w it|strong="H7725"\w* \w that|strong="H5971"\w* \w you|strong="H7971"\w* \w have|strong="H3068"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w*? +\v 23 \w For|strong="H8034"\w* since \w I|strong="H2088"\w* \w came|strong="H5971"\w* \w to|strong="H1696"\w* \w Pharaoh|strong="H6547"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w in|strong="H1696"\w* \w your|strong="H3808"\w* \w name|strong="H8034"\w*, \w he|strong="H3808"\w* \w has|strong="H2088"\w* \w brought|strong="H7489"\w* \w trouble|strong="H2088"\w* \w on|strong="H1696"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*. \w You|strong="H3808"\w* \w have|strong="H5971"\w* \w not|strong="H3808"\w* \w rescued|strong="H5337"\w* \w your|strong="H3808"\w* \w people|strong="H5971"\w* \w at|strong="H3808"\w* \w all|strong="H5337"\w*!” +\c 6 +\p +\v 1 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w Now|strong="H6258"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w see|strong="H7200"\w* \w what|strong="H6213"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w to|strong="H3068"\w* \w Pharaoh|strong="H6547"\w*, \w for|strong="H3588"\w* \w by|strong="H3027"\w* \w a|strong="H3068"\w* \w strong|strong="H2389"\w* \w hand|strong="H3027"\w* \w he|strong="H3588"\w* \w shall|strong="H3068"\w* \w let|strong="H7971"\w* \w them|strong="H7971"\w* \w go|strong="H7971"\w*, \w and|strong="H4872"\w* \w by|strong="H3027"\w* \w a|strong="H3068"\w* \w strong|strong="H2389"\w* \w hand|strong="H3027"\w* \w he|strong="H3588"\w* \w shall|strong="H3068"\w* \w drive|strong="H1644"\w* \w them|strong="H7971"\w* \w out|strong="H7971"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* land.” +\p +\v 2 \w God|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w and|strong="H4872"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H4872"\w*, “\w I|strong="H3068"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 3 \w I|strong="H3045"\w* \w appeared|strong="H7200"\w* \w to|strong="H3068"\w* Abraham, \w to|strong="H3068"\w* \w Isaac|strong="H3327"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w Jacob|strong="H3290"\w*, \w as|strong="H3068"\w* \w God|strong="H3068"\w* \w Almighty|strong="H7706"\w*; \w but|strong="H3808"\w* \w by|strong="H3068"\w* \w my|strong="H3068"\w* \w name|strong="H8034"\w* \w Yahweh|strong="H3068"\w* \w I|strong="H3045"\w* \w was|strong="H3068"\w* \w not|strong="H3808"\w* \w known|strong="H3045"\w* \w to|strong="H3068"\w* \w them|strong="H7200"\w*. +\v 4 \w I|strong="H5414"\w* \w have|strong="H1571"\w* \w also|strong="H1571"\w* \w established|strong="H6965"\w* \w my|strong="H5414"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w them|strong="H5414"\w*, \w to|strong="H5414"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w the|strong="H5414"\w* land \w of|strong="H1285"\w* \w Canaan|strong="H3667"\w*, \w the|strong="H5414"\w* land \w of|strong="H1285"\w* \w their|strong="H5414"\w* travels, \w in|strong="H5414"\w* \w which|strong="H1285"\w* \w they|strong="H1571"\w* \w lived|strong="H1481"\w* \w as|strong="H1571"\w* \w aliens|strong="H1481"\w*. +\v 5 \w Moreover|strong="H1571"\w* \w I|strong="H4714"\w* \w have|strong="H1121"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w groaning|strong="H5009"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, whom \w the|strong="H8085"\w* \w Egyptians|strong="H4714"\w* \w keep|strong="H5647"\w* \w in|strong="H3478"\w* \w bondage|strong="H5647"\w*, \w and|strong="H1121"\w* \w I|strong="H4714"\w* \w have|strong="H1121"\w* \w remembered|strong="H2142"\w* \w my|strong="H8085"\w* \w covenant|strong="H1285"\w*. +\v 6 \w Therefore|strong="H3651"\w* tell \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, ‘\w I|strong="H3651"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H1121"\w* \w I|strong="H3651"\w* \w will|strong="H3068"\w* \w bring|strong="H3318"\w* \w you|strong="H3651"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w under|strong="H8478"\w* \w the|strong="H3068"\w* \w burdens|strong="H5450"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w Egyptians|strong="H4714"\w*, \w and|strong="H1121"\w* \w I|strong="H3651"\w* \w will|strong="H3068"\w* \w rid|strong="H5337"\w* \w you|strong="H3651"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w their|strong="H3068"\w* \w bondage|strong="H5656"\w*, \w and|strong="H1121"\w* \w I|strong="H3651"\w* \w will|strong="H3068"\w* \w redeem|strong="H1350"\w* \w you|strong="H3651"\w* \w with|strong="H3068"\w* \w an|strong="H3318"\w* \w outstretched|strong="H5186"\w* \w arm|strong="H2220"\w*, \w and|strong="H1121"\w* \w with|strong="H3068"\w* \w great|strong="H1419"\w* \w judgments|strong="H8201"\w*. +\v 7 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w take|strong="H3947"\w* \w you|strong="H3588"\w* \w to|strong="H3318"\w* \w myself|strong="H3045"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w*. \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*; \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w who|strong="H5971"\w* \w brings|strong="H3318"\w* \w you|strong="H3588"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w under|strong="H8478"\w* \w the|strong="H3588"\w* \w burdens|strong="H5450"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w Egyptians|strong="H4714"\w*. +\v 8 \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w bring|strong="H5375"\w* \w you|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* land \w which|strong="H3068"\w* \w I|strong="H5414"\w* \w swore|strong="H5375"\w* \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w to|strong="H3068"\w* \w Abraham|strong="H5375"\w*, \w to|strong="H3068"\w* \w Isaac|strong="H3327"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w Jacob|strong="H3290"\w*; \w and|strong="H3068"\w* \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3068"\w* \w you|strong="H5414"\w* \w for|strong="H3027"\w* \w a|strong="H3068"\w* \w heritage|strong="H4181"\w*: \w I|strong="H5414"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.’” +\p +\v 9 \w Moses|strong="H4872"\w* \w spoke|strong="H1696"\w* \w so|strong="H3651"\w* \w to|strong="H1696"\w* \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w but|strong="H3808"\w* \w they|strong="H3651"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w for|strong="H1121"\w* \w anguish|strong="H7115"\w* \w of|strong="H1121"\w* \w spirit|strong="H7307"\w*, \w and|strong="H1121"\w* \w for|strong="H1121"\w* \w cruel|strong="H7186"\w* \w bondage|strong="H5656"\w*. +\p +\v 10 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 11 “\w Go|strong="H7971"\w* \w in|strong="H3478"\w*, \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w Pharaoh|strong="H6547"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w that|strong="H3478"\w* \w he|strong="H7971"\w* \w let|strong="H7971"\w* \w the|strong="H7971"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w go|strong="H7971"\w* \w out|strong="H7971"\w* \w of|strong="H1121"\w* \w his|strong="H7971"\w* land.” +\p +\v 12 \w Moses|strong="H4872"\w* \w spoke|strong="H1696"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w saying|strong="H1696"\w*, “\w Behold|strong="H2005"\w*, \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* haven’t \w listened|strong="H8085"\w* \w to|strong="H1696"\w* \w me|strong="H6440"\w*. \w How|strong="H8085"\w* \w then|strong="H1696"\w* \w shall|strong="H3068"\w* \w Pharaoh|strong="H6547"\w* \w listen|strong="H8085"\w* \w to|strong="H1696"\w* \w me|strong="H6440"\w*, \w when|strong="H8085"\w* \w I|strong="H2005"\w* \w have|strong="H3068"\w* \w uncircumcised|strong="H6189"\w* \w lips|strong="H8193"\w*?” +\v 13 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* \w to|strong="H1696"\w* Aaron, \w and|strong="H1121"\w* \w gave|strong="H6680"\w* \w them|strong="H6680"\w* \w a|strong="H3068"\w* \w command|strong="H6680"\w* \w to|strong="H1696"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w to|strong="H1696"\w* \w Pharaoh|strong="H6547"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w to|strong="H1696"\w* \w bring|strong="H3318"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*. +\p +\v 14 \w These|strong="H1004"\w* \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* their fathers’ \w houses|strong="H1004"\w*. \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* \w the|strong="H1121"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*: \w Hanoch|strong="H2585"\w*, \w and|strong="H1121"\w* \w Pallu|strong="H6396"\w*, \w Hezron|strong="H2696"\w*, \w and|strong="H1121"\w* \w Carmi|strong="H3756"\w*; \w these|strong="H1004"\w* \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w*. +\v 15 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Simeon|strong="H8095"\w*: \w Jemuel|strong="H3223"\w*, \w and|strong="H1121"\w* \w Jamin|strong="H3226"\w*, \w and|strong="H1121"\w* Ohad, \w and|strong="H1121"\w* \w Jachin|strong="H3199"\w*, \w and|strong="H1121"\w* \w Zohar|strong="H6714"\w*, \w and|strong="H1121"\w* \w Shaul|strong="H7586"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w Canaanite|strong="H3669"\w* \w woman|strong="H3669"\w*; these \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w Simeon|strong="H8095"\w*. +\v 16 These \w are|strong="H1121"\w* \w the|strong="H8034"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H8034"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w* according \w to|strong="H1121"\w* \w their|strong="H4847"\w* \w generations|strong="H8435"\w*: \w Gershon|strong="H1648"\w*, \w and|strong="H3967"\w* \w Kohath|strong="H6955"\w*, \w and|strong="H3967"\w* \w Merari|strong="H4847"\w*; \w and|strong="H3967"\w* \w the|strong="H8034"\w* \w years|strong="H8141"\w* \w of|strong="H1121"\w* \w the|strong="H8034"\w* \w life|strong="H2416"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w* \w were|strong="H1121"\w* \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* \w thirty-seven|strong="H7970"\w* \w years|strong="H8141"\w*. +\v 17 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Gershon|strong="H1648"\w*: \w Libni|strong="H3845"\w* \w and|strong="H1121"\w* \w Shimei|strong="H8096"\w*, according \w to|strong="H1121"\w* their \w families|strong="H4940"\w*. +\v 18 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Kohath|strong="H6955"\w*: \w Amram|strong="H6019"\w*, \w and|strong="H3967"\w* \w Izhar|strong="H3324"\w*, \w and|strong="H3967"\w* \w Hebron|strong="H2275"\w*, \w and|strong="H3967"\w* \w Uzziel|strong="H5816"\w*; \w and|strong="H3967"\w* \w the|strong="H1121"\w* \w years|strong="H8141"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w life|strong="H2416"\w* \w of|strong="H1121"\w* \w Kohath|strong="H6955"\w* \w were|strong="H1121"\w* \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* \w thirty-three|strong="H7970"\w* \w years|strong="H8141"\w*. +\v 19 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w*: \w Mahli|strong="H4249"\w* \w and|strong="H1121"\w* \w Mushi|strong="H4187"\w*. These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Levites|strong="H3878"\w* according \w to|strong="H1121"\w* \w their|strong="H4847"\w* \w generations|strong="H8435"\w*. +\v 20 \w Amram|strong="H6019"\w* \w took|strong="H3947"\w* \w Jochebed|strong="H3115"\w* \w his|strong="H3947"\w* \w father|strong="H3205"\w*’s \w sister|strong="H1733"\w* \w to|strong="H3205"\w* himself \w as|strong="H8141"\w* \w wife|strong="H2416"\w*; \w and|strong="H3967"\w* \w she|strong="H3967"\w* \w bore|strong="H3205"\w* \w him|strong="H3205"\w* Aaron \w and|strong="H3967"\w* \w Moses|strong="H4872"\w*. \w The|strong="H3947"\w* \w years|strong="H8141"\w* \w of|strong="H8141"\w* \w the|strong="H3947"\w* \w life|strong="H2416"\w* \w of|strong="H8141"\w* \w Amram|strong="H6019"\w* \w were|strong="H3205"\w* \w one|strong="H2416"\w* \w hundred|strong="H3967"\w* \w thirty-seven|strong="H7970"\w* \w years|strong="H8141"\w*. +\v 21 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Izhar|strong="H3324"\w*: \w Korah|strong="H7141"\w*, \w and|strong="H1121"\w* \w Nepheg|strong="H5298"\w*, \w and|strong="H1121"\w* \w Zichri|strong="H2147"\w*. +\v 22 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Uzziel|strong="H5816"\w*: \w Mishael|strong="H4332"\w*, Elzaphan, \w and|strong="H1121"\w* \w Sithri|strong="H5644"\w*. +\v 23 Aaron \w took|strong="H3947"\w* Elisheba, \w the|strong="H3947"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Amminadab|strong="H5992"\w*, \w the|strong="H3947"\w* sister \w of|strong="H1323"\w* \w Nahshon|strong="H5177"\w*, \w as|strong="H1323"\w* \w his|strong="H3947"\w* wife; \w and|strong="H5070"\w* she \w bore|strong="H3205"\w* \w him|strong="H3205"\w* \w Nadab|strong="H5070"\w* \w and|strong="H5070"\w* Abihu, Eleazar \w and|strong="H5070"\w* Ithamar. +\v 24 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Korah|strong="H7141"\w*: Assir, Elkanah, \w and|strong="H1121"\w* Abiasaph; these \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Korahites|strong="H7145"\w*. +\v 25 Eleazar Aaron’s \w son|strong="H1121"\w* \w took|strong="H3947"\w* \w one|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w daughters|strong="H1323"\w* \w of|strong="H1121"\w* \w Putiel|strong="H6317"\w* \w as|strong="H1121"\w* \w his|strong="H3947"\w* wife; \w and|strong="H1121"\w* she \w bore|strong="H3205"\w* \w him|strong="H3205"\w* \w Phinehas|strong="H6372"\w*. \w These|strong="H3947"\w* \w are|strong="H1121"\w* \w the|strong="H3947"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w fathers|strong="H3205"\w*’ houses \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w Levites|strong="H3881"\w* according \w to|strong="H3205"\w* \w their|strong="H3947"\w* \w families|strong="H4940"\w*. +\v 26 \w These|strong="H1931"\w* \w are|strong="H1121"\w* \w that|strong="H1931"\w* Aaron \w and|strong="H1121"\w* \w Moses|strong="H4872"\w* \w to|strong="H3318"\w* whom \w Yahweh|strong="H3068"\w* \w said|strong="H3318"\w*, “\w Bring|strong="H3318"\w* \w out|strong="H3318"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w from|strong="H3318"\w* \w the|strong="H5921"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w* \w according|strong="H5921"\w* \w to|strong="H3318"\w* \w their|strong="H3068"\w* \w armies|strong="H6635"\w*.” +\v 27 \w These|strong="H1992"\w* \w are|strong="H1992"\w* \w those|strong="H1992"\w* \w who|strong="H1931"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Pharaoh|strong="H6547"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w to|strong="H1696"\w* \w bring|strong="H3318"\w* \w out|strong="H3318"\w* \w the|strong="H3318"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w from|strong="H3318"\w* \w Egypt|strong="H4714"\w*. \w These|strong="H1992"\w* \w are|strong="H1992"\w* \w that|strong="H1931"\w* \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* Aaron. +\p +\v 28 \w On|strong="H3117"\w* \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w when|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, +\v 29 \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, “\w I|strong="H4714"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w Tell|strong="H1696"\w* \w Pharaoh|strong="H6547"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H4714"\w* \w tell|strong="H1696"\w* \w you|strong="H3605"\w*.” +\p +\v 30 \w Moses|strong="H4872"\w* \w said|strong="H8085"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H3068"\w* \w of|strong="H3068"\w* \w uncircumcised|strong="H6189"\w* \w lips|strong="H8193"\w*, \w and|strong="H4872"\w* \w how|strong="H8085"\w* \w shall|strong="H3068"\w* \w Pharaoh|strong="H6547"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w me|strong="H6440"\w*?” +\c 7 +\p +\v 1 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w Behold|strong="H7200"\w*, \w I|strong="H5414"\w* \w have|strong="H1961"\w* \w made|strong="H5414"\w* \w you|strong="H5414"\w* \w as|strong="H1961"\w* \w God|strong="H3068"\w* \w to|strong="H3068"\w* \w Pharaoh|strong="H6547"\w*; \w and|strong="H4872"\w* Aaron \w your|strong="H3068"\w* brother \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w your|strong="H3068"\w* \w prophet|strong="H5030"\w*. +\v 2 \w You|strong="H6680"\w* \w shall|strong="H1121"\w* \w speak|strong="H1696"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H6680"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w*; \w and|strong="H1121"\w* Aaron \w your|strong="H3605"\w* brother \w shall|strong="H1121"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w Pharaoh|strong="H6547"\w*, \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w let|strong="H7971"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w go|strong="H7971"\w* \w out|strong="H7971"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* land. +\v 3 \w I|strong="H4714"\w* \w will|strong="H4714"\w* \w harden|strong="H7185"\w* \w Pharaoh|strong="H6547"\w*’s \w heart|strong="H3820"\w*, \w and|strong="H4714"\w* \w multiply|strong="H7235"\w* \w my|strong="H7235"\w* signs \w and|strong="H4714"\w* \w my|strong="H7235"\w* \w wonders|strong="H4159"\w* \w in|strong="H4714"\w* \w the|strong="H7235"\w* land \w of|strong="H3820"\w* \w Egypt|strong="H4714"\w*. +\v 4 \w But|strong="H3808"\w* \w Pharaoh|strong="H6547"\w* \w will|strong="H5971"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H3318"\w* \w you|strong="H5414"\w*, \w so|strong="H5414"\w* \w I|strong="H5414"\w* \w will|strong="H5971"\w* \w lay|strong="H5414"\w* \w my|strong="H8085"\w* \w hand|strong="H3027"\w* \w on|strong="H3027"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H1121"\w* \w bring|strong="H3318"\w* \w out|strong="H3318"\w* \w my|strong="H8085"\w* \w armies|strong="H6635"\w*, \w my|strong="H8085"\w* \w people|strong="H5971"\w* \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w* \w by|strong="H3027"\w* \w great|strong="H1419"\w* \w judgments|strong="H8201"\w*. +\v 5 \w The|strong="H5921"\w* \w Egyptians|strong="H4714"\w* \w shall|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w stretch|strong="H5186"\w* \w out|strong="H3318"\w* \w my|strong="H3068"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H1121"\w* \w bring|strong="H3318"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w among|strong="H8432"\w* \w them|strong="H5921"\w*.” +\p +\v 6 \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron \w did|strong="H6213"\w* \w so|strong="H3651"\w*. \w As|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w them|strong="H6213"\w*, \w so|strong="H3651"\w* \w they|strong="H3651"\w* \w did|strong="H6213"\w*. +\v 7 \w Moses|strong="H4872"\w* \w was|strong="H4872"\w* \w eighty|strong="H8084"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*, \w and|strong="H1121"\w* Aaron \w eighty-three|strong="H8084"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*, \w when|strong="H1696"\w* \w they|strong="H8141"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Pharaoh|strong="H6547"\w*. +\p +\v 8 \w Yahweh|strong="H3068"\w* spoke \w to|strong="H3068"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* \w to|strong="H3068"\w* Aaron, saying, +\v 9 “\w When|strong="H3588"\w* \w Pharaoh|strong="H6547"\w* \w speaks|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*, \w saying|strong="H1696"\w*, ‘\w Perform|strong="H5414"\w* \w a|strong="H3068"\w* \w miracle|strong="H4159"\w*!’ \w then|strong="H1961"\w* \w you|strong="H3588"\w* \w shall|strong="H6547"\w* \w tell|strong="H1696"\w* Aaron, ‘\w Take|strong="H3947"\w* \w your|strong="H5414"\w* \w rod|strong="H4294"\w*, \w and|strong="H6440"\w* \w cast|strong="H7993"\w* \w it|strong="H5414"\w* \w down|strong="H7993"\w* \w before|strong="H6440"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H6440"\w* \w it|strong="H5414"\w* \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w serpent|strong="H8577"\w*.’” +\p +\v 10 \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron \w went|strong="H4872"\w* \w in|strong="H3068"\w* \w to|strong="H3068"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H4872"\w* \w they|strong="H3651"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*, \w as|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w commanded|strong="H6680"\w*. Aaron \w cast|strong="H7993"\w* \w down|strong="H7993"\w* \w his|strong="H3068"\w* \w rod|strong="H4294"\w* \w before|strong="H6440"\w* \w Pharaoh|strong="H6547"\w* \w and|strong="H4872"\w* \w before|strong="H6440"\w* \w his|strong="H3068"\w* \w servants|strong="H5650"\w*, \w and|strong="H4872"\w* \w it|strong="H6213"\w* \w became|strong="H1961"\w* \w a|strong="H3068"\w* \w serpent|strong="H8577"\w*. +\v 11 \w Then|strong="H3651"\w* \w Pharaoh|strong="H6547"\w* \w also|strong="H1571"\w* \w called|strong="H7121"\w* \w for|strong="H7121"\w* \w the|strong="H6213"\w* \w wise|strong="H2450"\w* \w men|strong="H2450"\w* \w and|strong="H4714"\w* \w the|strong="H6213"\w* \w sorcerers|strong="H3784"\w*. \w They|strong="H1992"\w* \w also|strong="H1571"\w*, \w the|strong="H6213"\w* \w magicians|strong="H2748"\w* \w of|strong="H6213"\w* \w Egypt|strong="H4714"\w*, \w did|strong="H6213"\w* \w the|strong="H6213"\w* \w same|strong="H3651"\w* \w thing|strong="H3651"\w* \w with|strong="H6213"\w* \w their|strong="H1992"\w* \w enchantments|strong="H3858"\w*. +\v 12 \w For|strong="H1961"\w* they each \w cast|strong="H7993"\w* \w down|strong="H7993"\w* \w their|strong="H1961"\w* \w rods|strong="H4294"\w*, \w and|strong="H4294"\w* they \w became|strong="H1961"\w* \w serpents|strong="H8577"\w*; \w but|strong="H1961"\w* Aaron’s \w rod|strong="H4294"\w* \w swallowed|strong="H1104"\w* \w up|strong="H1104"\w* \w their|strong="H1961"\w* \w rods|strong="H4294"\w*. +\v 13 \w Pharaoh|strong="H6547"\w*’s \w heart|strong="H3820"\w* \w was|strong="H3068"\w* \w hardened|strong="H2388"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H1696"\w* \w them|strong="H2388"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w spoken|strong="H1696"\w*. +\p +\v 14 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w Pharaoh|strong="H6547"\w*’s \w heart|strong="H3820"\w* \w is|strong="H3068"\w* \w stubborn|strong="H3515"\w*. \w He|strong="H3068"\w* \w refuses|strong="H3985"\w* \w to|strong="H3068"\w* \w let|strong="H7971"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w* \w go|strong="H7971"\w*. +\v 15 \w Go|strong="H3212"\w* \w to|strong="H3318"\w* \w Pharaoh|strong="H6547"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w morning|strong="H1242"\w*. \w Behold|strong="H2009"\w*, \w he|strong="H3027"\w* \w is|strong="H3027"\w* \w going|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H5921"\w* \w water|strong="H4325"\w*. \w You|strong="H5921"\w* \w shall|strong="H3027"\w* \w stand|strong="H5324"\w* \w by|strong="H3027"\w* \w the|strong="H5921"\w* \w river|strong="H2975"\w*’s \w bank|strong="H8193"\w* \w to|strong="H3318"\w* \w meet|strong="H7125"\w* \w him|strong="H5921"\w*. \w You|strong="H5921"\w* \w shall|strong="H3027"\w* \w take|strong="H3947"\w* \w the|strong="H5921"\w* \w rod|strong="H4294"\w* \w which|strong="H4325"\w* \w was|strong="H3027"\w* \w turned|strong="H2015"\w* \w to|strong="H3318"\w* \w a|strong="H3068"\w* \w serpent|strong="H5175"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w hand|strong="H3027"\w*. +\v 16 \w You|strong="H7971"\w* \w shall|strong="H3068"\w* \w tell|strong="H8085"\w* \w him|strong="H7971"\w*, ‘\w Yahweh|strong="H3068"\w*, \w the|strong="H8085"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* \w Hebrews|strong="H5680"\w*, \w has|strong="H3068"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w* \w to|strong="H5704"\w* \w you|strong="H7971"\w*, saying, “\w Let|strong="H7971"\w* \w my|strong="H8085"\w* \w people|strong="H5971"\w* \w go|strong="H7971"\w*, \w that|strong="H5971"\w* \w they|strong="H3068"\w* \w may|strong="H3068"\w* \w serve|strong="H5647"\w* \w me|strong="H7971"\w* \w in|strong="H3068"\w* \w the|strong="H8085"\w* \w wilderness|strong="H4057"\w*. \w Behold|strong="H2009"\w*, \w until|strong="H5704"\w* \w now|strong="H2009"\w* \w you|strong="H7971"\w* haven’t \w listened|strong="H8085"\w*.” +\v 17 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w In|strong="H5921"\w* \w this|strong="H2063"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w Behold|strong="H2009"\w*: \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w strike|strong="H5221"\w* \w with|strong="H3068"\w* \w the|strong="H5921"\w* \w rod|strong="H4294"\w* \w that|strong="H3588"\w* \w is|strong="H3068"\w* \w in|strong="H5921"\w* \w my|strong="H3068"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w which|strong="H3068"\w* \w are|strong="H3027"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w river|strong="H2975"\w*, \w and|strong="H3068"\w* \w they|strong="H3588"\w* \w shall|strong="H3068"\w* \w be|strong="H3027"\w* \w turned|strong="H2015"\w* \w to|strong="H3068"\w* \w blood|strong="H1818"\w*. +\v 18 \w The|strong="H4480"\w* \w fish|strong="H1710"\w* \w that|strong="H4325"\w* \w are|strong="H4325"\w* \w in|strong="H4191"\w* \w the|strong="H4480"\w* \w river|strong="H2975"\w* \w will|strong="H4325"\w* \w die|strong="H4191"\w* \w and|strong="H4325"\w* \w the|strong="H4480"\w* \w river|strong="H2975"\w* \w will|strong="H4325"\w* \w become|strong="H3811"\w* foul. \w The|strong="H4480"\w* \w Egyptians|strong="H4713"\w* \w will|strong="H4325"\w* loathe \w to|strong="H4191"\w* \w drink|strong="H8354"\w* \w water|strong="H4325"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w river|strong="H2975"\w*.”’” +\v 19 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w Tell|strong="H3605"\w* Aaron, ‘\w Take|strong="H3947"\w* \w your|strong="H3068"\w* \w rod|strong="H4294"\w*, \w and|strong="H4872"\w* \w stretch|strong="H5186"\w* \w out|strong="H5186"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w over|strong="H5921"\w* \w their|strong="H3605"\w* \w rivers|strong="H5104"\w*, \w over|strong="H5921"\w* \w their|strong="H3605"\w* \w streams|strong="H5104"\w*, \w and|strong="H4872"\w* \w over|strong="H5921"\w* \w their|strong="H3605"\w* \w pools|strong="H4723"\w*, \w and|strong="H4872"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* ponds \w of|strong="H3068"\w* \w water|strong="H4325"\w*, \w that|strong="H3605"\w* \w they|strong="H3068"\w* \w may|strong="H1961"\w* \w become|strong="H1961"\w* \w blood|strong="H1818"\w*. \w There|strong="H1961"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w blood|strong="H1818"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w both|strong="H3605"\w* \w in|strong="H5921"\w* vessels \w of|strong="H3068"\w* \w wood|strong="H6086"\w* \w and|strong="H4872"\w* \w in|strong="H5921"\w* vessels \w of|strong="H3068"\w* stone.’” +\p +\v 20 \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron \w did|strong="H6213"\w* \w so|strong="H3651"\w*, \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w*; \w and|strong="H4872"\w* \w he|strong="H3651"\w* \w lifted|strong="H7311"\w* \w up|strong="H7311"\w* \w the|strong="H3605"\w* \w rod|strong="H4294"\w*, \w and|strong="H4872"\w* \w struck|strong="H5221"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w that|strong="H3605"\w* \w were|strong="H4325"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w river|strong="H2975"\w*, \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H3068"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H4872"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w*; \w and|strong="H4872"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w that|strong="H3605"\w* \w were|strong="H4325"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w river|strong="H2975"\w* \w were|strong="H4325"\w* \w turned|strong="H2015"\w* \w to|strong="H3068"\w* \w blood|strong="H1818"\w*. +\v 21 \w The|strong="H3605"\w* \w fish|strong="H1710"\w* \w that|strong="H3605"\w* \w were|strong="H1961"\w* \w in|strong="H4191"\w* \w the|strong="H3605"\w* \w river|strong="H2975"\w* \w died|strong="H4191"\w*. \w The|strong="H3605"\w* \w river|strong="H2975"\w* \w became|strong="H1961"\w* foul. \w The|strong="H3605"\w* \w Egyptians|strong="H4714"\w* couldn’t \w drink|strong="H8354"\w* \w water|strong="H4325"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w river|strong="H2975"\w*. \w The|strong="H3605"\w* \w blood|strong="H1818"\w* \w was|strong="H1961"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H4325"\w* \w Egypt|strong="H4714"\w*. +\v 22 \w The|strong="H8085"\w* \w magicians|strong="H2748"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w* \w did|strong="H6213"\w* \w the|strong="H8085"\w* \w same|strong="H3651"\w* \w thing|strong="H3651"\w* \w with|strong="H3068"\w* \w their|strong="H3068"\w* \w enchantments|strong="H3909"\w*. \w So|strong="H3651"\w* \w Pharaoh|strong="H6547"\w*’s \w heart|strong="H3820"\w* \w was|strong="H3068"\w* \w hardened|strong="H2388"\w*, \w and|strong="H3068"\w* \w he|strong="H3651"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H1696"\w* \w them|strong="H6213"\w*, \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w spoken|strong="H1696"\w*. +\v 23 \w Pharaoh|strong="H6547"\w* \w turned|strong="H6437"\w* \w and|strong="H1004"\w* \w went|strong="H1004"\w* \w into|strong="H6547"\w* \w his|strong="H7896"\w* \w house|strong="H1004"\w*, \w and|strong="H1004"\w* \w he|strong="H1004"\w* didn’t \w even|strong="H1571"\w* \w take|strong="H7896"\w* \w this|strong="H2063"\w* \w to|strong="H3820"\w* \w heart|strong="H3820"\w*. +\v 24 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w Egyptians|strong="H4713"\w* \w dug|strong="H2658"\w* \w around|strong="H5439"\w* \w the|strong="H3605"\w* \w river|strong="H2975"\w* \w for|strong="H3588"\w* \w water|strong="H4325"\w* \w to|strong="H3201"\w* \w drink|strong="H8354"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* couldn’t \w drink|strong="H8354"\w* \w the|strong="H3605"\w* \w river|strong="H2975"\w* \w water|strong="H4325"\w*. +\v 25 \w Seven|strong="H7651"\w* \w days|strong="H3117"\w* \w were|strong="H3117"\w* \w fulfilled|strong="H4390"\w*, \w after|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w struck|strong="H5221"\w* \w the|strong="H5221"\w* \w river|strong="H2975"\w*. +\c 8 +\p +\v 1 \w Yahweh|strong="H3068"\w* spoke \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w Go|strong="H5927"\w* \w in|strong="H5921"\w* \w to|strong="H3068"\w* Pharaoh, \w and|strong="H4872"\w* tell \w him|strong="H5921"\w*, ‘\w This|strong="H3068"\w* \w is|strong="H3068"\w* \w what|strong="H5927"\w* \w Yahweh|strong="H3068"\w* says, “\w Let|strong="H5186"\w* \w my|strong="H3068"\w* people \w go|strong="H5927"\w*, \w that|strong="H3068"\w* \w they|strong="H3068"\w* \w may|strong="H3068"\w* \w serve|strong="H3027"\w* \w me|strong="H5921"\w*. +\v 2 If \w you|strong="H5921"\w* refuse \w to|strong="H5927"\w* \w let|strong="H5186"\w* \w them|strong="H5921"\w* \w go|strong="H5927"\w*, behold, \w I|strong="H5921"\w* \w will|strong="H4714"\w* plague \w all|strong="H5921"\w* \w your|strong="H5921"\w* \w borders|strong="H3027"\w* \w with|strong="H5921"\w* \w frogs|strong="H6854"\w*. +\v 3 \w The|strong="H5921"\w* river \w will|strong="H4714"\w* swarm \w with|strong="H6213"\w* \w frogs|strong="H6854"\w*, \w which|strong="H6854"\w* \w will|strong="H4714"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H4714"\w* \w come|strong="H5927"\w* \w into|strong="H5927"\w* \w your|strong="H5921"\w* house, \w and|strong="H4714"\w* \w into|strong="H5927"\w* \w your|strong="H5921"\w* bedroom, \w and|strong="H4714"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* bed, \w and|strong="H4714"\w* \w into|strong="H5927"\w* \w the|strong="H5921"\w* house \w of|strong="H5921"\w* \w your|strong="H5921"\w* servants, \w and|strong="H4714"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* people, \w and|strong="H4714"\w* \w into|strong="H5927"\w* \w your|strong="H5921"\w* ovens, \w and|strong="H4714"\w* \w into|strong="H5927"\w* \w your|strong="H5921"\w* kneading troughs. +\v 4 \w The|strong="H3068"\w* \w frogs|strong="H6854"\w* \w shall|strong="H3068"\w* \w come|strong="H5971"\w* \w up|strong="H4480"\w* \w both|strong="H4480"\w* \w on|strong="H3068"\w* \w you|strong="H7971"\w*, \w and|strong="H4872"\w* \w on|strong="H3068"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w*, \w and|strong="H4872"\w* \w on|strong="H3068"\w* \w all|strong="H4480"\w* \w your|strong="H3068"\w* servants.”’” +\v 5 \w Yahweh|strong="H3068"\w* said \w to|strong="H5921"\w* \w Moses|strong="H4872"\w*, “Tell Aaron, ‘Stretch \w out|strong="H4480"\w* \w your|strong="H5921"\w* hand \w with|strong="H1004"\w* \w your|strong="H5921"\w* rod \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w rivers|strong="H2975"\w*, \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w streams|strong="H2975"\w*, \w and|strong="H4872"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* pools, \w and|strong="H4872"\w* \w cause|strong="H5971"\w* \w frogs|strong="H6854"\w* \w to|strong="H5921"\w* \w come|strong="H5971"\w* \w up|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H1004"\w* Egypt.’” +\v 6 Aaron stretched \w out|strong="H3045"\w* \w his|strong="H3068"\w* hand \w over|strong="H3068"\w* \w the|strong="H3588"\w* waters \w of|strong="H3068"\w* Egypt; \w and|strong="H3068"\w* \w the|strong="H3588"\w* frogs \w came|strong="H3068"\w* up, \w and|strong="H3068"\w* covered \w the|strong="H3588"\w* land \w of|strong="H3068"\w* Egypt. +\v 7 \w The|strong="H4480"\w* magicians \w did|strong="H5971"\w* \w the|strong="H4480"\w* \w same|strong="H4480"\w* thing \w with|strong="H1004"\w* \w their|strong="H5493"\w* enchantments, \w and|strong="H1004"\w* \w brought|strong="H5493"\w* \w up|strong="H4480"\w* \w frogs|strong="H6854"\w* \w on|strong="H1004"\w* \w the|strong="H4480"\w* land \w of|strong="H1004"\w* Egypt. +\p +\v 8 \w Then|strong="H3318"\w* \w Pharaoh|strong="H6547"\w* \w called|strong="H6817"\w* \w for|strong="H5921"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron, \w and|strong="H4872"\w* \w said|strong="H1697"\w*, “Entreat \w Yahweh|strong="H3068"\w*, \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w take|strong="H7760"\w* \w away|strong="H3318"\w* \w the|strong="H5921"\w* \w frogs|strong="H6854"\w* \w from|strong="H3318"\w* \w me|strong="H5921"\w* \w and|strong="H4872"\w* \w from|strong="H3318"\w* \w my|strong="H3068"\w* people; \w and|strong="H4872"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w let|strong="H7760"\w* \w the|strong="H5921"\w* people \w go|strong="H3318"\w*, \w that|strong="H3068"\w* \w they|strong="H3068"\w* \w may|strong="H3068"\w* sacrifice \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 9 \w Moses|strong="H4872"\w* \w said|strong="H1697"\w* \w to|strong="H4191"\w* Pharaoh, “\w I|strong="H1697"\w* \w give|strong="H7704"\w* \w you|strong="H6213"\w* \w the|strong="H6213"\w* honor \w of|strong="H1004"\w* setting \w the|strong="H6213"\w* time \w that|strong="H3068"\w* \w I|strong="H1697"\w* \w should|strong="H3068"\w* pray \w for|strong="H6213"\w* \w you|strong="H6213"\w*, \w and|strong="H4872"\w* \w for|strong="H6213"\w* \w your|strong="H3068"\w* servants, \w and|strong="H4872"\w* \w for|strong="H6213"\w* \w your|strong="H3068"\w* people, \w that|strong="H3068"\w* \w the|strong="H6213"\w* \w frogs|strong="H6854"\w* \w be|strong="H4191"\w* destroyed \w from|strong="H4480"\w* \w you|strong="H6213"\w* \w and|strong="H4872"\w* \w your|strong="H3068"\w* \w houses|strong="H1004"\w*, \w and|strong="H4872"\w* remain \w in|strong="H3068"\w* \w the|strong="H6213"\w* river only.” +\p +\v 10 Pharaoh said, “Tomorrow.” +\p Moses said, “Let it be according to your word, that you may know that there is no one like \w Yahweh|strong="H3068"\w* our God. +\v 11 \w The|strong="H8085"\w* frogs \w shall|strong="H3068"\w* depart \w from|strong="H8085"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w from|strong="H8085"\w* \w your|strong="H3068"\w* houses, \w and|strong="H3068"\w* \w from|strong="H8085"\w* \w your|strong="H3068"\w* servants, \w and|strong="H3068"\w* \w from|strong="H8085"\w* \w your|strong="H3068"\w* \w people|strong="H3808"\w*. \w They|strong="H3588"\w* \w shall|strong="H3068"\w* \w remain|strong="H1961"\w* \w in|strong="H3068"\w* \w the|strong="H8085"\w* \w river|strong="H3588"\w* \w only|strong="H3588"\w*.” +\p +\v 12 \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron \w went|strong="H4872"\w* \w out|strong="H5186"\w* \w from|strong="H3068"\w* Pharaoh, \w and|strong="H4872"\w* \w Moses|strong="H4872"\w* cried \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w concerning|strong="H3068"\w* \w the|strong="H3605"\w* frogs \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w* \w brought|strong="H4872"\w* \w on|strong="H3068"\w* Pharaoh. +\v 13 \w Yahweh|strong="H3068"\w* \w did|strong="H6213"\w* \w according|strong="H3027"\w* \w to|strong="H1961"\w* \w the|strong="H3605"\w* word \w of|strong="H3027"\w* Moses, \w and|strong="H3027"\w* \w the|strong="H3605"\w* frogs died \w out|strong="H5186"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* houses, \w out|strong="H5186"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* courts, \w and|strong="H3027"\w* \w out|strong="H5186"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* fields. +\v 14 \w They|strong="H3651"\w* \w gathered|strong="H6213"\w* \w them|strong="H6213"\w* together \w in|strong="H6213"\w* heaps, \w and|strong="H6213"\w* \w the|strong="H6213"\w* land stank. +\v 15 \w But|strong="H3808"\w* \w when|strong="H8085"\w* \w Pharaoh|strong="H6547"\w* saw \w that|strong="H8085"\w* \w there|strong="H3068"\w* \w was|strong="H3068"\w* \w a|strong="H3068"\w* respite, \w he|strong="H1931"\w* \w hardened|strong="H2388"\w* \w his|strong="H3068"\w* \w heart|strong="H3820"\w*, \w and|strong="H3068"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H1696"\w* \w them|strong="H2388"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w spoken|strong="H1696"\w*. +\p +\v 16 \w Yahweh|strong="H3068"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w Moses|strong="H4872"\w*, “Tell Aaron, ‘\w Stretch|strong="H7971"\w* \w out|strong="H3318"\w* \w your|strong="H3068"\w* rod, \w and|strong="H4872"\w* strike \w the|strong="H6440"\w* dust \w of|strong="H3068"\w* \w the|strong="H6440"\w* earth, \w that|strong="H5971"\w* \w it|strong="H1242"\w* \w may|strong="H3068"\w* \w become|strong="H3318"\w* lice \w throughout|strong="H6440"\w* \w all|strong="H7971"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H3068"\w* Egypt.’” +\v 17 \w They|strong="H1992"\w* \w did|strong="H5971"\w* \w so|strong="H7971"\w*; \w and|strong="H7971"\w* Aaron \w stretched|strong="H7971"\w* \w out|strong="H7971"\w* \w his|strong="H7971"\w* hand \w with|strong="H4390"\w* \w his|strong="H7971"\w* rod, \w and|strong="H7971"\w* struck \w the|strong="H5921"\w* dust \w of|strong="H1004"\w* \w the|strong="H5921"\w* earth, \w and|strong="H7971"\w* \w there|strong="H1992"\w* \w were|strong="H5971"\w* lice \w on|strong="H5921"\w* man, \w and|strong="H7971"\w* \w on|strong="H5921"\w* animal; \w all|strong="H5921"\w* \w the|strong="H5921"\w* dust \w of|strong="H1004"\w* \w the|strong="H5921"\w* earth \w became|strong="H5650"\w* lice \w throughout|strong="H5921"\w* \w all|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H1004"\w* \w Egypt|strong="H4713"\w*. +\v 18 \w The|strong="H5921"\w* magicians tried \w with|strong="H3068"\w* \w their|strong="H3068"\w* enchantments \w to|strong="H3068"\w* \w produce|strong="H1961"\w* lice, \w but|strong="H3588"\w* \w they|strong="H3588"\w* couldn’t. \w There|strong="H8033"\w* \w were|strong="H1961"\w* lice \w on|strong="H5921"\w* \w man|strong="H3045"\w*, \w and|strong="H3068"\w* \w on|strong="H5921"\w* \w animal|strong="H1961"\w*. +\v 19 \w Then|strong="H1961"\w* \w the|strong="H7760"\w* magicians said \w to|strong="H1961"\w* Pharaoh, “\w This|strong="H2088"\w* \w is|strong="H2088"\w* God’s finger;” \w but|strong="H1961"\w* Pharaoh’s heart \w was|strong="H1961"\w* hardened, \w and|strong="H5971"\w* \w he|strong="H5971"\w* didn’t listen \w to|strong="H1961"\w* \w them|strong="H7760"\w*, \w as|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H1961"\w* spoken. +\p +\v 20 \w Yahweh|strong="H3068"\w* \w said|strong="H3651"\w* \w to|strong="H3068"\w* Moses, “Rise \w up|strong="H6213"\w* early \w in|strong="H3068"\w* \w the|strong="H3605"\w* morning, \w and|strong="H3068"\w* stand \w before|strong="H6440"\w* \w Pharaoh|strong="H6547"\w*; behold, \w he|strong="H3651"\w* \w comes|strong="H6440"\w* \w out|strong="H6213"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* water; \w and|strong="H3068"\w* \w tell|strong="H3605"\w* \w him|strong="H6440"\w*, ‘\w This|strong="H3651"\w* \w is|strong="H3068"\w* \w what|strong="H6213"\w* \w Yahweh|strong="H3068"\w* says, “\w Let|strong="H3651"\w* \w my|strong="H3605"\w* people \w go|strong="H3068"\w*, \w that|strong="H3605"\w* \w they|strong="H3651"\w* \w may|strong="H3068"\w* \w serve|strong="H6440"\w* \w me|strong="H6440"\w*. +\v 21 Else, if \w you|strong="H7121"\w* \w will|strong="H6547"\w* \w not|strong="H3212"\w* \w let|strong="H3212"\w* \w my|strong="H7121"\w* people \w go|strong="H3212"\w*, behold, \w I|strong="H3212"\w* \w will|strong="H6547"\w* send swarms \w of|strong="H7121"\w* flies \w on|strong="H3212"\w* \w you|strong="H7121"\w*, \w and|strong="H4872"\w* \w on|strong="H3212"\w* \w your|strong="H7121"\w* servants, \w and|strong="H4872"\w* \w on|strong="H3212"\w* \w your|strong="H7121"\w* people, \w and|strong="H4872"\w* \w into|strong="H3212"\w* \w your|strong="H7121"\w* houses. \w The|strong="H7121"\w* houses \w of|strong="H7121"\w* \w the|strong="H7121"\w* Egyptians \w shall|strong="H6547"\w* be full \w of|strong="H7121"\w* swarms \w of|strong="H7121"\w* flies, \w and|strong="H4872"\w* \w also|strong="H4872"\w* \w the|strong="H7121"\w* ground \w they|strong="H7121"\w* are \w on|strong="H3212"\w*. +\v 22 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w set|strong="H3559"\w* apart \w in|strong="H3068"\w* \w that|strong="H3588"\w* \w day|strong="H4872"\w* \w the|strong="H3588"\w* land \w of|strong="H3068"\w* Goshen, \w in|strong="H3068"\w* \w which|strong="H3068"\w* \w my|strong="H3068"\w* \w people|strong="H3808"\w* dwell, \w that|strong="H3588"\w* \w no|strong="H3808"\w* swarms \w of|strong="H3068"\w* flies \w shall|strong="H3068"\w* \w be|strong="H3808"\w* \w there|strong="H3068"\w*, \w to|strong="H3068"\w* \w the|strong="H3588"\w* end \w you|strong="H3588"\w* \w may|strong="H3068"\w* know \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w on|strong="H3068"\w* \w the|strong="H3588"\w* earth. +\v 23 \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w put|strong="H3068"\w* \w a|strong="H3068"\w* division between \w my|strong="H3068"\w* people \w and|strong="H3068"\w* \w your|strong="H3068"\w* people. \w This|strong="H3068"\w* sign \w shall|strong="H3068"\w* happen \w by|strong="H3117"\w* tomorrow.”’” +\v 24 \w Yahweh|strong="H3068"\w* \w did|strong="H3068"\w* \w so|strong="H7971"\w*; \w and|strong="H3068"\w* \w there|strong="H3068"\w* \w came|strong="H3068"\w* grievous swarms \w of|strong="H3068"\w* flies \w into|strong="H3212"\w* \w the|strong="H3068"\w* house \w of|strong="H3068"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H3068"\w* \w into|strong="H3212"\w* \w his|strong="H3068"\w* servants’ houses. \w In|strong="H3068"\w* \w all|strong="H3212"\w* \w the|strong="H3068"\w* land \w of|strong="H3068"\w* Egypt \w the|strong="H3068"\w* land \w was|strong="H3068"\w* corrupted \w by|strong="H3068"\w* reason \w of|strong="H3068"\w* \w the|strong="H3068"\w* swarms \w of|strong="H3068"\w* flies. +\p +\v 25 \w Pharaoh|strong="H6547"\w* called \w for|strong="H7971"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* \w for|strong="H7971"\w* Aaron, \w and|strong="H4872"\w* \w said|strong="H3318"\w*, “\w Go|strong="H3318"\w*, \w sacrifice|strong="H2076"\w* \w to|strong="H3318"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* land!” +\p +\v 26 \w Moses|strong="H4872"\w* \w said|strong="H3318"\w*, “\w It|strong="H3068"\w* isn’t appropriate \w to|strong="H3318"\w* \w do|strong="H3068"\w* \w so|strong="H3318"\w*; \w for|strong="H3068"\w* \w we|strong="H3068"\w* \w shall|strong="H3068"\w* sacrifice \w the|strong="H3068"\w* abomination \w of|strong="H3068"\w* \w the|strong="H3068"\w* Egyptians \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*. Behold, if \w we|strong="H3068"\w* sacrifice \w the|strong="H3068"\w* abomination \w of|strong="H3068"\w* \w the|strong="H3068"\w* Egyptians \w before|strong="H5973"\w* \w their|strong="H3068"\w* eyes, won’t \w they|strong="H3068"\w* stone us? +\v 27 \w We|strong="H6213"\w* \w will|strong="H3068"\w* \w go|strong="H5971"\w* three days’ journey \w into|strong="H6213"\w* \w the|strong="H6213"\w* wilderness, \w and|strong="H4872"\w* \w sacrifice|strong="H6213"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w as|strong="H1697"\w* \w he|strong="H6213"\w* \w shall|strong="H3068"\w* \w command|strong="H1697"\w* \w us|strong="H6213"\w*.” +\p +\v 28 \w Pharaoh|strong="H6547"\w* said, “\w I|strong="H3808"\w* \w will|strong="H5971"\w* \w let|strong="H7971"\w* \w you|strong="H7971"\w* \w go|strong="H7971"\w*, \w that|strong="H5971"\w* \w you|strong="H7971"\w* \w may|strong="H5971"\w* sacrifice \w to|strong="H7971"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3513"\w* \w God|strong="H3808"\w* \w in|strong="H5971"\w* \w the|strong="H7971"\w* wilderness, \w only|strong="H1571"\w* \w you|strong="H7971"\w* \w shall|strong="H5971"\w* \w not|strong="H3808"\w* \w go|strong="H7971"\w* \w very|strong="H1571"\w* far \w away|strong="H7971"\w*. Pray \w for|strong="H7971"\w* \w me|strong="H7971"\w*.” +\p +\v 29 Moses said, “Behold, I am going out from you. I will pray to \w Yahweh|strong="H3068"\w* that the swarms of flies may depart from Pharaoh, from his servants, and from his people, tomorrow; only don’t let Pharaoh deal deceitfully any more in not letting the people go to sacrifice to \w Yahweh|strong="H3068"\w*.” +\v 30 Moses went out from Pharaoh, and prayed to \w Yahweh|strong="H3068"\w*. +\v 31 \w Yahweh|strong="H3068"\w* did according to the word of Moses, and he removed the swarms of flies from Pharaoh, from his servants, and from his people. There remained not one. +\v 32 Pharaoh hardened his heart this time also, and he didn’t let the people go. +\c 9 +\p +\v 1 \w Then|strong="H1696"\w* \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, “\w Go|strong="H7971"\w* \w in|strong="H3068"\w* \w to|strong="H1696"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H4872"\w* \w tell|strong="H1696"\w* \w him|strong="H7971"\w*, ‘\w This|strong="H3541"\w* \w is|strong="H3068"\w* \w what|strong="H3541"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H3541"\w* \w Hebrews|strong="H5680"\w*, \w says|strong="H3541"\w*: “\w Let|strong="H7971"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w go|strong="H7971"\w*, \w that|strong="H5971"\w* \w they|strong="H3068"\w* \w may|strong="H3068"\w* \w serve|strong="H5647"\w* \w me|strong="H7971"\w*. +\v 2 \w For|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w refuse|strong="H3986"\w* \w to|strong="H7971"\w* \w let|strong="H7971"\w* \w them|strong="H7971"\w* \w go|strong="H7971"\w*, \w and|strong="H7971"\w* \w hold|strong="H2388"\w* \w them|strong="H7971"\w* \w still|strong="H5750"\w*, +\v 3 \w behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w is|strong="H3068"\w* \w on|strong="H3027"\w* \w your|strong="H3068"\w* \w livestock|strong="H4735"\w* \w which|strong="H3068"\w* \w are|strong="H3027"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w field|strong="H7704"\w*, \w on|strong="H3027"\w* \w the|strong="H3068"\w* \w horses|strong="H5483"\w*, \w on|strong="H3027"\w* \w the|strong="H3068"\w* \w donkeys|strong="H2543"\w*, \w on|strong="H3027"\w* \w the|strong="H3068"\w* \w camels|strong="H1581"\w*, \w on|strong="H3027"\w* \w the|strong="H3068"\w* \w herds|strong="H1241"\w*, \w and|strong="H3068"\w* \w on|strong="H3027"\w* \w the|strong="H3068"\w* \w flocks|strong="H6629"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w grievous|strong="H3515"\w* \w pestilence|strong="H1698"\w*. +\v 4 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w make|strong="H6395"\w* \w a|strong="H3068"\w* \w distinction|strong="H6395"\w* between \w the|strong="H3605"\w* \w livestock|strong="H4735"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w livestock|strong="H4735"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*; \w and|strong="H1121"\w* \w nothing|strong="H3808"\w* \w shall|strong="H3068"\w* \w die|strong="H4191"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* belongs \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*.”’” +\v 5 \w Yahweh|strong="H3068"\w* \w appointed|strong="H4150"\w* \w a|strong="H3068"\w* \w set|strong="H7760"\w* \w time|strong="H4150"\w*, \w saying|strong="H1697"\w*, “\w Tomorrow|strong="H4279"\w* \w Yahweh|strong="H3068"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w in|strong="H3068"\w* \w the|strong="H6213"\w* land.” +\v 6 \w Yahweh|strong="H3068"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w thing|strong="H1697"\w* \w on|strong="H3068"\w* \w the|strong="H3605"\w* \w next|strong="H4283"\w* \w day|strong="H4283"\w*; \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w livestock|strong="H4735"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4713"\w* \w died|strong="H4191"\w*, \w but|strong="H3808"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w livestock|strong="H4735"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w not|strong="H3808"\w* \w one|strong="H2088"\w* \w died|strong="H4191"\w*. +\v 7 \w Pharaoh|strong="H6547"\w* \w sent|strong="H7971"\w*, \w and|strong="H3478"\w*, \w behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w was|strong="H3478"\w* \w not|strong="H3808"\w* \w so|strong="H7971"\w* much \w as|strong="H5704"\w* \w one|strong="H3808"\w* \w of|strong="H5971"\w* \w the|strong="H5704"\w* \w livestock|strong="H4735"\w* \w of|strong="H5971"\w* \w the|strong="H5704"\w* \w Israelites|strong="H3478"\w* \w dead|strong="H4191"\w*. \w But|strong="H3808"\w* \w the|strong="H5704"\w* \w heart|strong="H3820"\w* \w of|strong="H5971"\w* \w Pharaoh|strong="H6547"\w* \w was|strong="H3478"\w* stubborn, \w and|strong="H3478"\w* \w he|strong="H5704"\w* didn’t \w let|strong="H7971"\w* \w the|strong="H5704"\w* \w people|strong="H5971"\w* \w go|strong="H7971"\w*. +\p +\v 8 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* \w to|strong="H3068"\w* Aaron, “\w Take|strong="H3947"\w* \w handfuls|strong="H4393"\w* \w of|strong="H3068"\w* \w ashes|strong="H6368"\w* \w of|strong="H3068"\w* \w the|strong="H3947"\w* \w furnace|strong="H3536"\w*, \w and|strong="H4872"\w* let \w Moses|strong="H4872"\w* \w sprinkle|strong="H2236"\w* \w it|strong="H4393"\w* \w toward|strong="H3068"\w* \w the|strong="H3947"\w* \w sky|strong="H8064"\w* \w in|strong="H3068"\w* \w the|strong="H3947"\w* \w sight|strong="H5869"\w* \w of|strong="H3068"\w* \w Pharaoh|strong="H6547"\w*. +\v 9 \w It|strong="H5921"\w* \w shall|strong="H4714"\w* \w become|strong="H1961"\w* small dust \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H5921"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H4714"\w* \w shall|strong="H4714"\w* \w be|strong="H1961"\w* \w boils|strong="H7822"\w* \w and|strong="H4714"\w* blisters \w breaking|strong="H6524"\w* \w out|strong="H5921"\w* \w on|strong="H5921"\w* \w man|strong="H3605"\w* \w and|strong="H4714"\w* \w on|strong="H5921"\w* \w animal|strong="H1961"\w*, \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H5921"\w* \w Egypt|strong="H4714"\w*.” +\p +\v 10 \w They|strong="H6440"\w* \w took|strong="H3947"\w* \w ashes|strong="H6368"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w furnace|strong="H3536"\w*, \w and|strong="H4872"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w Pharaoh|strong="H6547"\w*; \w and|strong="H4872"\w* \w Moses|strong="H4872"\w* \w sprinkled|strong="H2236"\w* \w it|strong="H6440"\w* \w up|strong="H5975"\w* \w toward|strong="H6440"\w* \w the|strong="H6440"\w* \w sky|strong="H8064"\w*; \w and|strong="H4872"\w* \w it|strong="H6440"\w* \w became|strong="H1961"\w* \w boils|strong="H7822"\w* \w and|strong="H4872"\w* blisters \w breaking|strong="H6524"\w* \w out|strong="H3947"\w* \w on|strong="H5975"\w* \w man|strong="H6440"\w* \w and|strong="H4872"\w* \w on|strong="H5975"\w* \w animal|strong="H1961"\w*. +\v 11 \w The|strong="H3605"\w* \w magicians|strong="H2748"\w* couldn’t \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w Moses|strong="H4872"\w* \w because|strong="H3588"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w boils|strong="H7822"\w*; \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w boils|strong="H7822"\w* \w were|strong="H1961"\w* \w on|strong="H5975"\w* \w the|strong="H3605"\w* \w magicians|strong="H2748"\w* \w and|strong="H4872"\w* \w on|strong="H5975"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Egyptians|strong="H4713"\w*. +\v 12 \w Yahweh|strong="H3068"\w* \w hardened|strong="H2388"\w* \w the|strong="H8085"\w* \w heart|strong="H3820"\w* \w of|strong="H3068"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H4872"\w* \w he|strong="H3068"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H1696"\w* \w them|strong="H2388"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*. +\p +\v 13 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w Rise|strong="H7925"\w* \w up|strong="H7925"\w* \w early|strong="H7925"\w* \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w morning|strong="H1242"\w*, \w and|strong="H4872"\w* \w stand|strong="H3320"\w* \w before|strong="H6440"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H4872"\w* tell \w him|strong="H6440"\w*, ‘\w This|strong="H3541"\w* \w is|strong="H3068"\w* \w what|strong="H3541"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w Hebrews|strong="H5680"\w*, \w says|strong="H3541"\w*: “\w Let|strong="H7971"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w go|strong="H7971"\w*, \w that|strong="H5971"\w* \w they|strong="H3068"\w* \w may|strong="H3068"\w* \w serve|strong="H5647"\w* \w me|strong="H6440"\w*. +\v 14 \w For|strong="H3588"\w* \w this|strong="H2063"\w* \w time|strong="H6471"\w* \w I|strong="H3588"\w* \w will|strong="H5971"\w* \w send|strong="H7971"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w plagues|strong="H4046"\w* \w against|strong="H2063"\w* \w your|strong="H3605"\w* \w heart|strong="H3820"\w*, \w against|strong="H2063"\w* \w your|strong="H3605"\w* \w officials|strong="H5650"\w*, \w and|strong="H7971"\w* \w against|strong="H2063"\w* \w your|strong="H3605"\w* \w people|strong="H5971"\w*; \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H5971"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w there|strong="H3605"\w* \w is|strong="H3820"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w like|strong="H3644"\w* \w me|strong="H7971"\w* \w in|strong="H5650"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth. +\v 15 \w For|strong="H3588"\w* \w now|strong="H6258"\w* \w I|strong="H3588"\w* \w would|strong="H5971"\w* \w have|strong="H5971"\w* \w stretched|strong="H7971"\w* \w out|strong="H7971"\w* \w my|strong="H7971"\w* \w hand|strong="H3027"\w*, \w and|strong="H7971"\w* \w struck|strong="H5221"\w* \w you|strong="H3588"\w* \w and|strong="H7971"\w* \w your|strong="H3588"\w* \w people|strong="H5971"\w* \w with|strong="H5971"\w* \w pestilence|strong="H1698"\w*, \w and|strong="H7971"\w* \w you|strong="H3588"\w* \w would|strong="H5971"\w* \w have|strong="H5971"\w* \w been|strong="H5971"\w* \w cut|strong="H3582"\w* \w off|strong="H3582"\w* \w from|strong="H4480"\w* \w the|strong="H3588"\w* earth; +\v 16 \w but|strong="H7200"\w* \w indeed|strong="H7200"\w* \w for|strong="H8034"\w* \w this|strong="H2063"\w* cause \w I|strong="H7200"\w* \w have|strong="H7200"\w* \w made|strong="H5975"\w* \w you|strong="H3605"\w* \w stand|strong="H5975"\w*: \w to|strong="H4616"\w* \w show|strong="H7200"\w* \w you|strong="H3605"\w* \w my|strong="H3605"\w* \w power|strong="H3581"\w*, \w and|strong="H7200"\w* \w that|strong="H7200"\w* \w my|strong="H3605"\w* \w name|strong="H8034"\w* \w may|strong="H8034"\w* \w be|strong="H8034"\w* \w declared|strong="H5608"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth, +\v 17 \w because|strong="H1115"\w* \w you|strong="H7971"\w* \w still|strong="H5750"\w* \w exalt|strong="H5549"\w* yourself \w against|strong="H7971"\w* \w my|strong="H7971"\w* \w people|strong="H5971"\w*, \w that|strong="H5971"\w* \w you|strong="H7971"\w* won’t \w let|strong="H7971"\w* \w them|strong="H7971"\w* \w go|strong="H7971"\w*. +\v 18 \w Behold|strong="H2005"\w*, \w tomorrow|strong="H4279"\w* \w about|strong="H1961"\w* \w this|strong="H6258"\w* \w time|strong="H6256"\w* \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w cause|strong="H1961"\w* \w it|strong="H1961"\w* \w to|strong="H5704"\w* \w rain|strong="H4305"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w grievous|strong="H3515"\w* \w hail|strong="H1259"\w*, \w such|strong="H3644"\w* \w as|strong="H5704"\w* \w has|strong="H1961"\w* \w not|strong="H3808"\w* \w been|strong="H1961"\w* \w in|strong="H3117"\w* \w Egypt|strong="H4714"\w* \w since|strong="H4480"\w* \w the|strong="H4480"\w* \w day|strong="H3117"\w* \w it|strong="H1961"\w* \w was|strong="H1961"\w* \w founded|strong="H3245"\w* \w even|strong="H5704"\w* \w until|strong="H5704"\w* \w now|strong="H6258"\w*. +\v 19 \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* \w command|strong="H5921"\w* \w that|strong="H3605"\w* \w all|strong="H3605"\w* \w of|strong="H1004"\w* \w your|strong="H3605"\w* \w livestock|strong="H4735"\w* \w and|strong="H7971"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w have|strong="H4672"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w be|strong="H4191"\w* \w brought|strong="H3381"\w* \w into|strong="H3381"\w* \w shelter|strong="H1004"\w*. \w The|strong="H3605"\w* \w hail|strong="H1259"\w* \w will|strong="H1004"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w* \w on|strong="H5921"\w* \w every|strong="H3605"\w* \w man|strong="H4191"\w* \w and|strong="H7971"\w* animal \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w found|strong="H4672"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*, \w and|strong="H7971"\w* isn’t \w brought|strong="H3381"\w* \w home|strong="H1004"\w*, \w and|strong="H7971"\w* \w they|strong="H3808"\w* \w will|strong="H1004"\w* \w die|strong="H4191"\w*.”’” +\p +\v 20 \w Those|strong="H6547"\w* \w who|strong="H3068"\w* \w feared|strong="H3372"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* among \w the|strong="H3068"\w* \w servants|strong="H5650"\w* \w of|strong="H1004"\w* \w Pharaoh|strong="H6547"\w* \w made|strong="H3068"\w* \w their|strong="H3068"\w* \w servants|strong="H5650"\w* \w and|strong="H3068"\w* \w their|strong="H3068"\w* \w livestock|strong="H4735"\w* \w flee|strong="H5127"\w* \w into|strong="H5127"\w* \w the|strong="H3068"\w* \w houses|strong="H1004"\w*. +\v 21 Whoever didn’t \w respect|strong="H7760"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w left|strong="H5800"\w* \w his|strong="H7760"\w* \w servants|strong="H5650"\w* \w and|strong="H3068"\w* \w his|strong="H7760"\w* \w livestock|strong="H4735"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w field|strong="H7704"\w*. +\p +\v 22 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w Stretch|strong="H5186"\w* \w out|strong="H5186"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w toward|strong="H5921"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w that|strong="H3605"\w* \w there|strong="H1961"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w hail|strong="H1259"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H7704"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w on|strong="H5921"\w* \w man|strong="H3605"\w*, \w and|strong="H4872"\w* \w on|strong="H5921"\w* \w animal|strong="H1961"\w*, \w and|strong="H4872"\w* \w on|strong="H5921"\w* \w every|strong="H3605"\w* \w herb|strong="H6212"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*, \w throughout|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H7704"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*.” +\p +\v 23 \w Moses|strong="H4872"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w his|strong="H5414"\w* \w rod|strong="H4294"\w* \w toward|strong="H5921"\w* \w the|strong="H5921"\w* \w heavens|strong="H8064"\w*, \w and|strong="H1980"\w* \w Yahweh|strong="H3068"\w* \w sent|strong="H5414"\w* \w thunder|strong="H6963"\w* \w and|strong="H1980"\w* \w hail|strong="H1259"\w*; \w and|strong="H1980"\w* lightning \w flashed|strong="H1980"\w* \w down|strong="H5186"\w* \w to|strong="H1980"\w* \w the|strong="H5921"\w* \w earth|strong="H8064"\w*. \w Yahweh|strong="H3068"\w* \w rained|strong="H4305"\w* \w hail|strong="H1259"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w land|strong="H8064"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*. +\v 24 \w So|strong="H3947"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w very|strong="H3966"\w* \w severe|strong="H3515"\w* \w hail|strong="H1259"\w*, \w and|strong="H4714"\w* lightning mixed \w with|strong="H4714"\w* \w the|strong="H3605"\w* \w hail|strong="H1259"\w*, \w such|strong="H3644"\w* \w as|strong="H1961"\w* \w had|strong="H1961"\w* \w not|strong="H3808"\w* \w been|strong="H1961"\w* \w in|strong="H8432"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H8432"\w* \w Egypt|strong="H4714"\w* since \w it|strong="H8432"\w* \w became|strong="H1961"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w*. +\v 25 \w The|strong="H3605"\w* \w hail|strong="H1259"\w* \w struck|strong="H5221"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H7704"\w* \w of|strong="H7704"\w* \w Egypt|strong="H4714"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w was|strong="H4714"\w* \w in|strong="H7665"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*, \w both|strong="H3605"\w* \w man|strong="H3605"\w* \w and|strong="H6086"\w* animal; \w and|strong="H6086"\w* \w the|strong="H3605"\w* \w hail|strong="H1259"\w* \w struck|strong="H5221"\w* \w every|strong="H3605"\w* \w herb|strong="H6212"\w* \w of|strong="H7704"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*, \w and|strong="H6086"\w* \w broke|strong="H7665"\w* \w every|strong="H3605"\w* \w tree|strong="H6086"\w* \w of|strong="H7704"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*. +\v 26 \w Only|strong="H7535"\w* \w in|strong="H3478"\w* \w the|strong="H1961"\w* land \w of|strong="H1121"\w* \w Goshen|strong="H1657"\w*, \w where|strong="H8033"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w*, \w there|strong="H8033"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w hail|strong="H1259"\w*. +\p +\v 27 \w Pharaoh|strong="H6547"\w* \w sent|strong="H7971"\w* \w and|strong="H4872"\w* \w called|strong="H7121"\w* \w for|strong="H7121"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron, \w and|strong="H4872"\w* \w said|strong="H7121"\w* \w to|strong="H3068"\w* \w them|strong="H7971"\w*, “\w I|strong="H6471"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w* \w this|strong="H6471"\w* \w time|strong="H6471"\w*. \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w righteous|strong="H6662"\w*, \w and|strong="H4872"\w* \w I|strong="H6471"\w* \w and|strong="H4872"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w are|strong="H5971"\w* \w wicked|strong="H7563"\w*. +\v 28 \w Pray|strong="H6279"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*; \w for|strong="H7971"\w* \w there|strong="H1961"\w* \w has|strong="H3068"\w* \w been|strong="H1961"\w* \w enough|strong="H7227"\w* \w of|strong="H3068"\w* \w mighty|strong="H7227"\w* \w thunderings|strong="H6963"\w* \w and|strong="H3068"\w* \w hail|strong="H1259"\w*. \w I|strong="H3808"\w* \w will|strong="H3068"\w* \w let|strong="H7971"\w* \w you|strong="H7971"\w* \w go|strong="H7971"\w*, \w and|strong="H3068"\w* \w you|strong="H7971"\w* \w shall|strong="H3068"\w* \w stay|strong="H5975"\w* \w no|strong="H3808"\w* \w longer|strong="H3254"\w*.” +\p +\v 29 \w Moses|strong="H4872"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H6963"\w*, “\w As|strong="H1961"\w* \w soon|strong="H5750"\w* \w as|strong="H1961"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w city|strong="H5892"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w spread|strong="H6566"\w* \w out|strong="H3318"\w* \w my|strong="H3068"\w* \w hands|strong="H3709"\w* \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w*. \w The|strong="H3588"\w* \w thunders|strong="H6963"\w* \w shall|strong="H3068"\w* \w cease|strong="H2308"\w*, \w and|strong="H4872"\w* \w there|strong="H1961"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w* \w hail|strong="H1259"\w*; \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H1961"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w the|strong="H3588"\w* earth \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s. +\v 30 \w But|strong="H3588"\w* \w as|strong="H3068"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w servants|strong="H5650"\w*, \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* don’t \w yet|strong="H3588"\w* \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w*.” +\p +\v 31 \w The|strong="H3588"\w* \w flax|strong="H6594"\w* \w and|strong="H5221"\w* \w the|strong="H3588"\w* \w barley|strong="H8184"\w* \w were|strong="H8184"\w* \w struck|strong="H5221"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w barley|strong="H8184"\w* \w had|strong="H3588"\w* ripened \w and|strong="H5221"\w* \w the|strong="H3588"\w* \w flax|strong="H6594"\w* \w was|strong="H5221"\w* blooming. +\v 32 \w But|strong="H3588"\w* \w the|strong="H3588"\w* \w wheat|strong="H2406"\w* \w and|strong="H5221"\w* \w the|strong="H3588"\w* \w spelt|strong="H3698"\w* \w were|strong="H2007"\w* \w not|strong="H3808"\w* \w struck|strong="H5221"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3588"\w* \w not|strong="H3808"\w* grown up. +\v 33 \w Moses|strong="H4872"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w city|strong="H5892"\w* \w from|strong="H3318"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H4872"\w* \w spread|strong="H6566"\w* \w out|strong="H3318"\w* \w his|strong="H3068"\w* \w hands|strong="H3709"\w* \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H4872"\w* \w the|strong="H3068"\w* \w thunders|strong="H6963"\w* \w and|strong="H4872"\w* \w hail|strong="H1259"\w* \w ceased|strong="H2308"\w*, \w and|strong="H4872"\w* \w the|strong="H3068"\w* \w rain|strong="H4306"\w* \w was|strong="H3068"\w* \w not|strong="H3808"\w* \w poured|strong="H5413"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* earth. +\v 34 \w When|strong="H3588"\w* \w Pharaoh|strong="H6547"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H7200"\w* \w rain|strong="H4306"\w* \w and|strong="H6963"\w* \w the|strong="H7200"\w* \w hail|strong="H1259"\w* \w and|strong="H6963"\w* \w the|strong="H7200"\w* \w thunders|strong="H6963"\w* \w had|strong="H3588"\w* \w ceased|strong="H2308"\w*, \w he|strong="H1931"\w* \w sinned|strong="H2398"\w* \w yet|strong="H3588"\w* \w more|strong="H3254"\w*, \w and|strong="H6963"\w* \w hardened|strong="H3513"\w* \w his|strong="H7200"\w* \w heart|strong="H3820"\w*, \w he|strong="H1931"\w* \w and|strong="H6963"\w* \w his|strong="H7200"\w* \w servants|strong="H5650"\w*. +\v 35 \w The|strong="H3068"\w* \w heart|strong="H3820"\w* \w of|strong="H1121"\w* \w Pharaoh|strong="H6547"\w* \w was|strong="H3068"\w* \w hardened|strong="H2388"\w*, \w and|strong="H1121"\w* \w he|strong="H3068"\w* didn’t \w let|strong="H7971"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w go|strong="H7971"\w*, \w just|strong="H1696"\w* \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w spoken|strong="H1696"\w* \w through|strong="H3027"\w* \w Moses|strong="H4872"\w*. +\c 10 +\p +\v 1 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w Go|strong="H3068"\w* \w in|strong="H3068"\w* \w to|strong="H3068"\w* \w Pharaoh|strong="H6547"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w hardened|strong="H3513"\w* \w his|strong="H3068"\w* \w heart|strong="H3820"\w* \w and|strong="H4872"\w* \w the|strong="H3588"\w* \w heart|strong="H3820"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w servants|strong="H5650"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H3068"\w* show these \w my|strong="H3068"\w* signs \w among|strong="H7130"\w* \w them|strong="H7896"\w*; +\v 2 \w and|strong="H1121"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H3068"\w* \w tell|strong="H5608"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* hearing \w of|strong="H1121"\w* \w your|strong="H3068"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* \w son|strong="H1121"\w*’s \w son|strong="H1121"\w*, \w what|strong="H3045"\w* things \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w done|strong="H5953"\w* \w to|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H1121"\w* \w my|strong="H3068"\w* signs \w which|strong="H3068"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w done|strong="H5953"\w* among \w them|strong="H7760"\w*; \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 3 \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron \w went|strong="H4872"\w* \w in|strong="H3068"\w* \w to|strong="H5704"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H4872"\w* said \w to|strong="H5704"\w* \w him|strong="H6440"\w*, “\w This|strong="H3541"\w* \w is|strong="H3068"\w* \w what|strong="H3541"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w Hebrews|strong="H5680"\w*, \w says|strong="H3541"\w*: ‘\w How|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H3068"\w* \w you|strong="H6440"\w* \w refuse|strong="H3985"\w* \w to|strong="H5704"\w* \w humble|strong="H6031"\w* \w yourself|strong="H6031"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*? \w Let|strong="H7971"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w go|strong="H7971"\w*, \w that|strong="H5971"\w* \w they|strong="H3068"\w* \w may|strong="H3068"\w* \w serve|strong="H5647"\w* \w me|strong="H6440"\w*. +\v 4 \w Or|strong="H3588"\w* \w else|strong="H3588"\w*, \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w refuse|strong="H3986"\w* \w to|strong="H7971"\w* \w let|strong="H7971"\w* \w my|strong="H7971"\w* \w people|strong="H5971"\w* \w go|strong="H7971"\w*, \w behold|strong="H2005"\w*, \w tomorrow|strong="H4279"\w* \w I|strong="H3588"\w* \w will|strong="H5971"\w* bring locusts into \w your|strong="H3588"\w* country, +\v 5 \w and|strong="H6086"\w* \w they|strong="H3808"\w* \w shall|strong="H5869"\w* \w cover|strong="H3680"\w* \w the|strong="H3605"\w* \w surface|strong="H5869"\w* \w of|strong="H5869"\w* \w the|strong="H3605"\w* earth, \w so|strong="H4480"\w* \w that|strong="H7200"\w* \w one|strong="H3605"\w* won’t \w be|strong="H3808"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w see|strong="H7200"\w* \w the|strong="H3605"\w* earth. \w They|strong="H3808"\w* \w shall|strong="H5869"\w* eat \w the|strong="H3605"\w* \w residue|strong="H3499"\w* \w of|strong="H5869"\w* \w that|strong="H7200"\w* \w which|strong="H5869"\w* \w has|strong="H5869"\w* \w escaped|strong="H6413"\w*, \w which|strong="H5869"\w* \w remains|strong="H7604"\w* \w to|strong="H3201"\w* \w you|strong="H3605"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w hail|strong="H1259"\w*, \w and|strong="H6086"\w* \w shall|strong="H5869"\w* eat \w every|strong="H3605"\w* \w tree|strong="H6086"\w* \w which|strong="H5869"\w* \w grows|strong="H6779"\w* \w for|strong="H6086"\w* \w you|strong="H3605"\w* \w out|strong="H4480"\w* \w of|strong="H5869"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*. +\v 6 \w Your|strong="H3605"\w* \w houses|strong="H1004"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w* \w filled|strong="H4390"\w*, \w and|strong="H3117"\w* \w the|strong="H3605"\w* \w houses|strong="H1004"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w servants|strong="H5650"\w*, \w and|strong="H3117"\w* \w the|strong="H3605"\w* \w houses|strong="H1004"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Egyptians|strong="H4713"\w*, \w as|strong="H5704"\w* \w neither|strong="H3808"\w* \w your|strong="H3605"\w* fathers \w nor|strong="H3808"\w* \w your|strong="H3605"\w* fathers’ fathers \w have|strong="H1961"\w* \w seen|strong="H7200"\w*, \w since|strong="H3117"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H7200"\w* \w they|strong="H3117"\w* \w were|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*.’” \w He|strong="H3117"\w* \w turned|strong="H6437"\w*, \w and|strong="H3117"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w Pharaoh|strong="H6547"\w*. +\p +\v 7 \w Pharaoh|strong="H6547"\w*’s \w servants|strong="H5650"\w* said \w to|strong="H5704"\w* \w him|strong="H7971"\w*, “\w How|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H3068"\w* \w this|strong="H2088"\w* \w man|strong="H2088"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w snare|strong="H4170"\w* \w to|strong="H5704"\w* \w us|strong="H3045"\w*? \w Let|strong="H7971"\w* \w the|strong="H3588"\w* \w men|strong="H5650"\w* \w go|strong="H7971"\w*, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w may|strong="H1961"\w* \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w*, \w their|strong="H3068"\w* \w God|strong="H3068"\w*. Don’t \w you|strong="H3588"\w* \w yet|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Egypt|strong="H4714"\w* \w is|strong="H3068"\w* destroyed?” +\p +\v 8 \w Moses|strong="H4872"\w* \w and|strong="H1980"\w* Aaron \w were|strong="H3068"\w* \w brought|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H1980"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H1980"\w* \w he|strong="H3068"\w* said \w to|strong="H1980"\w* \w them|strong="H7725"\w*, “\w Go|strong="H1980"\w*, \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*; \w but|strong="H7725"\w* \w who|strong="H4310"\w* \w are|strong="H3068"\w* \w those|strong="H6547"\w* \w who|strong="H4310"\w* \w will|strong="H3068"\w* \w go|strong="H1980"\w*?” +\p +\v 9 \w Moses|strong="H4872"\w* said, “\w We|strong="H3588"\w* \w will|strong="H3068"\w* \w go|strong="H3212"\w* \w with|strong="H3068"\w* \w our|strong="H3068"\w* \w young|strong="H5288"\w* \w and|strong="H1121"\w* \w with|strong="H3068"\w* \w our|strong="H3068"\w* \w old|strong="H1121"\w*. \w We|strong="H3588"\w* \w will|strong="H3068"\w* \w go|strong="H3212"\w* \w with|strong="H3068"\w* \w our|strong="H3068"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w with|strong="H3068"\w* \w our|strong="H3068"\w* \w daughters|strong="H1323"\w*, \w with|strong="H3068"\w* \w our|strong="H3068"\w* \w flocks|strong="H6629"\w* \w and|strong="H1121"\w* \w with|strong="H3068"\w* \w our|strong="H3068"\w* \w herds|strong="H1241"\w*; \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w must|strong="H1121"\w* hold \w a|strong="H3068"\w* \w feast|strong="H2282"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 10 \w He|strong="H3588"\w* \w said|strong="H3651"\w* \w to|strong="H3068"\w* \w them|strong="H7971"\w*, “\w Yahweh|strong="H3068"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w* \w if|strong="H3588"\w* \w I|strong="H3588"\w* \w let|strong="H7971"\w* \w you|strong="H3588"\w* \w go|strong="H7971"\w* \w with|strong="H5973"\w* \w your|strong="H3068"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*! \w See|strong="H7200"\w*, \w evil|strong="H7451"\w* \w is|strong="H3068"\w* clearly \w before|strong="H6440"\w* \w your|strong="H3068"\w* \w faces|strong="H6440"\w*. +\v 11 \w Not|strong="H3808"\w* \w so|strong="H3651"\w*! \w Go|strong="H3212"\w* \w now|strong="H4994"\w* \w you|strong="H3588"\w* \w who|strong="H3068"\w* \w are|strong="H3068"\w* \w men|strong="H1397"\w*, \w and|strong="H3068"\w* \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w*; \w for|strong="H3588"\w* \w that|strong="H3588"\w* \w is|strong="H3068"\w* \w what|strong="H3651"\w* \w you|strong="H3588"\w* \w desire|strong="H1245"\w*!” \w Then|strong="H3651"\w* \w they|strong="H3588"\w* \w were|strong="H3068"\w* \w driven|strong="H1644"\w* \w out|strong="H1644"\w* \w from|strong="H6440"\w* \w Pharaoh|strong="H6547"\w*’s \w presence|strong="H6440"\w*. +\p +\v 12 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w Stretch|strong="H5186"\w* \w out|strong="H5186"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* locusts, \w that|strong="H3605"\w* \w they|strong="H3068"\w* \w may|strong="H3068"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H4872"\w* eat \w every|strong="H3605"\w* \w herb|strong="H6212"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* land, \w even|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* \w hail|strong="H1259"\w* \w has|strong="H3068"\w* \w left|strong="H7604"\w*.” +\v 13 \w Moses|strong="H4872"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w his|strong="H3605"\w* \w rod|strong="H4294"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H4872"\w* \w Yahweh|strong="H3068"\w* \w brought|strong="H5375"\w* \w an|strong="H1961"\w* \w east|strong="H6921"\w* \w wind|strong="H7307"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* land \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w*, \w and|strong="H4872"\w* \w all|strong="H3605"\w* \w night|strong="H3915"\w*; \w and|strong="H4872"\w* \w when|strong="H1961"\w* \w it|strong="H1931"\w* \w was|strong="H3068"\w* \w morning|strong="H1242"\w*, \w the|strong="H3605"\w* \w east|strong="H6921"\w* \w wind|strong="H7307"\w* \w brought|strong="H5375"\w* \w the|strong="H3605"\w* locusts. +\v 14 \w The|strong="H3605"\w* locusts \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w of|strong="H1366"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H4714"\w* \w rested|strong="H5117"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w borders|strong="H1366"\w* \w of|strong="H1366"\w* \w Egypt|strong="H4714"\w*. \w They|strong="H3651"\w* \w were|strong="H1961"\w* \w very|strong="H3966"\w* \w grievous|strong="H3515"\w*. \w Before|strong="H6440"\w* \w them|strong="H5921"\w* \w there|strong="H1961"\w* \w were|strong="H1961"\w* \w no|strong="H3808"\w* \w such|strong="H3651"\w* locusts \w as|strong="H1961"\w* \w they|strong="H3651"\w*, \w nor|strong="H3808"\w* \w will|strong="H1961"\w* \w there|strong="H1961"\w* \w ever|strong="H3808"\w* \w be|strong="H1961"\w* \w again|strong="H6440"\w*. +\v 15 \w For|strong="H4714"\w* \w they|strong="H3808"\w* \w covered|strong="H3680"\w* \w the|strong="H3605"\w* \w surface|strong="H5869"\w* \w of|strong="H5869"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* earth, \w so|strong="H3808"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H7704"\w* \w was|strong="H4714"\w* \w darkened|strong="H2821"\w*, \w and|strong="H6086"\w* \w they|strong="H3808"\w* ate \w every|strong="H3605"\w* \w herb|strong="H6212"\w* \w of|strong="H5869"\w* \w the|strong="H3605"\w* \w land|strong="H7704"\w*, \w and|strong="H6086"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fruit|strong="H6529"\w* \w of|strong="H5869"\w* \w the|strong="H3605"\w* \w trees|strong="H6086"\w* \w which|strong="H5869"\w* \w the|strong="H3605"\w* \w hail|strong="H1259"\w* \w had|strong="H5869"\w* \w left|strong="H3498"\w*. \w There|strong="H3605"\w* \w remained|strong="H3498"\w* \w nothing|strong="H3808"\w* \w green|strong="H3418"\w*, \w either|strong="H3808"\w* \w tree|strong="H6086"\w* \w or|strong="H3808"\w* \w herb|strong="H6212"\w* \w of|strong="H5869"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*, \w through|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H7704"\w* \w of|strong="H5869"\w* \w Egypt|strong="H4714"\w*. +\v 16 \w Then|strong="H4872"\w* \w Pharaoh|strong="H6547"\w* \w called|strong="H7121"\w* \w for|strong="H7121"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron \w in|strong="H3068"\w* \w haste|strong="H4116"\w*, \w and|strong="H4872"\w* \w he|strong="H3068"\w* \w said|strong="H7121"\w*, “\w I|strong="H3068"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H4872"\w* \w against|strong="H2398"\w* \w you|strong="H7121"\w*. +\v 17 \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* \w please|strong="H4994"\w* \w forgive|strong="H5375"\w* \w my|strong="H3068"\w* \w sin|strong="H2403"\w* again, \w and|strong="H3068"\w* \w pray|strong="H4994"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w may|strong="H4994"\w* \w also|strong="H3068"\w* \w take|strong="H5375"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* \w me|strong="H4994"\w* \w this|strong="H2088"\w* \w death|strong="H4194"\w*.” +\p +\v 18 \w Moses|strong="H3318"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H3068"\w* \w prayed|strong="H6279"\w* \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w*. +\v 19 \w Yahweh|strong="H3068"\w* \w sent|strong="H3068"\w* \w an|strong="H5375"\w* \w exceedingly|strong="H3966"\w* \w strong|strong="H2389"\w* \w west|strong="H3220"\w* \w wind|strong="H7307"\w*, \w which|strong="H3068"\w* \w took|strong="H5375"\w* \w up|strong="H5375"\w* \w the|strong="H3605"\w* locusts, \w and|strong="H3068"\w* \w drove|strong="H8628"\w* \w them|strong="H5375"\w* \w into|strong="H2015"\w* \w the|strong="H3605"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w*.\f + \fr 10:19 \ft “Red Sea” is the translation for the Hebrew “Yam Suf”, which could be more literally translated “Sea of Reeds” or “Sea of Cattails”. It refers to the body of water currently known as the Red Sea, or possibly to one of the bodies of water connected to it or near it.\f* \w There|strong="H3605"\w* \w remained|strong="H7604"\w* \w not|strong="H3808"\w* \w one|strong="H3605"\w* locust \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w borders|strong="H1366"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*. +\v 20 \w But|strong="H3808"\w* \w Yahweh|strong="H3068"\w* \w hardened|strong="H2388"\w* \w Pharaoh|strong="H6547"\w*’s \w heart|strong="H3820"\w*, \w and|strong="H1121"\w* \w he|strong="H3068"\w* didn’t \w let|strong="H7971"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w go|strong="H7971"\w*. +\p +\v 21 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w Stretch|strong="H5186"\w* \w out|strong="H5186"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w toward|strong="H5921"\w* \w the|strong="H5921"\w* \w sky|strong="H8064"\w*, \w that|strong="H3068"\w* \w there|strong="H1961"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w darkness|strong="H2822"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w land|strong="H8064"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w even|strong="H3068"\w* \w darkness|strong="H2822"\w* \w which|strong="H3068"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w felt|strong="H4959"\w*.” +\v 22 \w Moses|strong="H4872"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w* \w toward|strong="H5921"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w and|strong="H4872"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* thick \w darkness|strong="H2822"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H8064"\w* \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w* \w for|strong="H5921"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*. +\v 23 \w They|strong="H3117"\w* didn’t \w see|strong="H7200"\w* \w one|strong="H3605"\w* \w another|strong="H7200"\w*, \w and|strong="H1121"\w* \w nobody|strong="H3808"\w* \w rose|strong="H6965"\w* \w from|strong="H3478"\w* \w his|strong="H3605"\w* \w place|strong="H8478"\w* \w for|strong="H8478"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*; \w but|strong="H3808"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w had|strong="H1961"\w* light \w in|strong="H3478"\w* \w their|strong="H3605"\w* \w dwellings|strong="H4186"\w*. +\p +\v 24 \w Pharaoh|strong="H6547"\w* \w called|strong="H7121"\w* \w to|strong="H3212"\w* \w Moses|strong="H4872"\w*, \w and|strong="H4872"\w* \w said|strong="H7121"\w*, “\w Go|strong="H3212"\w*, \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w*. \w Only|strong="H7535"\w* \w let|strong="H3212"\w* \w your|strong="H3068"\w* \w flocks|strong="H6629"\w* \w and|strong="H4872"\w* \w your|strong="H3068"\w* \w herds|strong="H1241"\w* stay behind. \w Let|strong="H3212"\w* \w your|strong="H3068"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w* \w also|strong="H1571"\w* \w go|strong="H3212"\w* \w with|strong="H5973"\w* \w you|strong="H5973"\w*.” +\p +\v 25 \w Moses|strong="H4872"\w* said, “\w You|strong="H5414"\w* \w must|strong="H1571"\w* \w also|strong="H1571"\w* \w give|strong="H5414"\w* \w into|strong="H6213"\w* \w our|strong="H3068"\w* \w hand|strong="H3027"\w* \w sacrifices|strong="H2077"\w* \w and|strong="H4872"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w*, \w that|strong="H3068"\w* \w we|strong="H3068"\w* \w may|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 26 \w Our|strong="H3068"\w* \w livestock|strong="H4735"\w* \w also|strong="H1571"\w* \w shall|strong="H3068"\w* \w go|strong="H3212"\w* \w with|strong="H5973"\w* \w us|strong="H3045"\w*. \w Not|strong="H3808"\w* \w a|strong="H3068"\w* \w hoof|strong="H6541"\w* \w shall|strong="H3068"\w* \w be|strong="H3808"\w* \w left|strong="H7604"\w* \w behind|strong="H4480"\w*, \w for|strong="H3588"\w* \w of|strong="H3068"\w* \w it|strong="H3588"\w* \w we|strong="H3068"\w* \w must|strong="H1571"\w* \w take|strong="H3947"\w* \w to|strong="H5704"\w* \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*; \w and|strong="H3068"\w* \w we|strong="H3068"\w* don’t \w know|strong="H3045"\w* \w with|strong="H5973"\w* \w what|strong="H4100"\w* \w we|strong="H3068"\w* \w must|strong="H1571"\w* \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w*, \w until|strong="H5704"\w* \w we|strong="H3068"\w* \w come|strong="H3212"\w* \w there|strong="H8033"\w*.” +\p +\v 27 \w But|strong="H3808"\w* \w Yahweh|strong="H3068"\w* \w hardened|strong="H2388"\w* \w Pharaoh|strong="H6547"\w*’s \w heart|strong="H3820"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* wouldn’t \w let|strong="H7971"\w* \w them|strong="H7971"\w* \w go|strong="H7971"\w*. +\v 28 \w Pharaoh|strong="H6547"\w* said \w to|strong="H4191"\w* \w him|strong="H6440"\w*, “\w Get|strong="H3212"\w* \w away|strong="H3212"\w* \w from|strong="H6440"\w* \w me|strong="H6440"\w*! \w Be|strong="H4191"\w* \w careful|strong="H8104"\w* \w to|strong="H4191"\w* \w see|strong="H7200"\w* \w my|strong="H8104"\w* \w face|strong="H6440"\w* \w no|strong="H7200"\w* \w more|strong="H3254"\w*; \w for|strong="H3588"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w day|strong="H3117"\w* \w you|strong="H3588"\w* \w see|strong="H7200"\w* \w my|strong="H8104"\w* \w face|strong="H6440"\w* \w you|strong="H3588"\w* \w shall|strong="H3117"\w* \w die|strong="H4191"\w*!” +\p +\v 29 \w Moses|strong="H4872"\w* \w said|strong="H1696"\w*, “\w You|strong="H6440"\w* \w have|strong="H7200"\w* \w spoken|strong="H1696"\w* \w well|strong="H3651"\w*. \w I|strong="H3651"\w* \w will|strong="H3808"\w* \w see|strong="H7200"\w* \w your|strong="H6440"\w* \w face|strong="H6440"\w* \w again|strong="H5750"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w*.” +\c 11 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w said|strong="H3651"\w* \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w I|strong="H5921"\w* \w will|strong="H3068"\w* bring \w yet|strong="H5750"\w* \w one|strong="H2088"\w* \w more|strong="H5750"\w* \w plague|strong="H5061"\w* \w on|strong="H5921"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H4872"\w* \w on|strong="H5921"\w* \w Egypt|strong="H4714"\w*; afterwards \w he|strong="H3651"\w* \w will|strong="H3068"\w* \w let|strong="H7971"\w* \w you|strong="H7971"\w* \w go|strong="H7971"\w*. \w When|strong="H7971"\w* \w he|strong="H3651"\w* \w lets|strong="H7971"\w* \w you|strong="H7971"\w* \w go|strong="H7971"\w*, \w he|strong="H3651"\w* \w will|strong="H3068"\w* \w surely|strong="H3651"\w* \w thrust|strong="H7971"\w* \w you|strong="H7971"\w* \w out|strong="H7971"\w* \w altogether|strong="H3617"\w*. +\v 2 \w Speak|strong="H1696"\w* \w now|strong="H4994"\w* \w in|strong="H1696"\w* \w the|strong="H1696"\w* ears \w of|strong="H3627"\w* \w the|strong="H1696"\w* \w people|strong="H5971"\w*, \w and|strong="H3701"\w* \w let|strong="H4994"\w* \w every|strong="H5971"\w* man \w ask|strong="H7592"\w* \w of|strong="H3627"\w* \w his|strong="H7592"\w* \w neighbor|strong="H7453"\w*, \w and|strong="H3701"\w* \w every|strong="H5971"\w* woman \w of|strong="H3627"\w* \w her|strong="H7592"\w* \w neighbor|strong="H7453"\w*, \w jewels|strong="H3627"\w* \w of|strong="H3627"\w* \w silver|strong="H3701"\w*, \w and|strong="H3701"\w* \w jewels|strong="H3627"\w* \w of|strong="H3627"\w* \w gold|strong="H2091"\w*.” +\v 3 \w Yahweh|strong="H3068"\w* \w gave|strong="H5414"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w* \w favor|strong="H2580"\w* \w in|strong="H3068"\w* \w the|strong="H5414"\w* \w sight|strong="H5869"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* \w Egyptians|strong="H4714"\w*. \w Moreover|strong="H1571"\w*, \w the|strong="H5414"\w* \w man|strong="H1419"\w* \w Moses|strong="H4872"\w* \w was|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H1419"\w* \w in|strong="H3068"\w* \w the|strong="H5414"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w in|strong="H3068"\w* \w the|strong="H5414"\w* \w sight|strong="H5869"\w* \w of|strong="H3068"\w* \w Pharaoh|strong="H6547"\w*’s \w servants|strong="H5650"\w*, \w and|strong="H4872"\w* \w in|strong="H3068"\w* \w the|strong="H5414"\w* \w sight|strong="H5869"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w*. +\p +\v 4 \w Moses|strong="H4872"\w* \w said|strong="H3318"\w*, “\w This|strong="H3541"\w* \w is|strong="H3068"\w* \w what|strong="H3541"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w About|strong="H3541"\w* \w midnight|strong="H2676"\w* \w I|strong="H3541"\w* \w will|strong="H3068"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H8432"\w* \w the|strong="H3541"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, +\v 5 \w and|strong="H4714"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* land \w of|strong="H3427"\w* \w Egypt|strong="H4714"\w* \w shall|strong="H4714"\w* \w die|strong="H4191"\w*, \w from|strong="H5921"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w of|strong="H3427"\w* \w Pharaoh|strong="H6547"\w* \w who|strong="H3605"\w* \w sits|strong="H3427"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w throne|strong="H3678"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* \w female|strong="H8198"\w* \w servant|strong="H8198"\w* \w who|strong="H3605"\w* \w is|strong="H3605"\w* \w behind|strong="H5921"\w* \w the|strong="H3605"\w* \w mill|strong="H7347"\w*, \w and|strong="H4714"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w of|strong="H3427"\w* livestock. +\v 6 \w There|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w cry|strong="H6818"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H3605"\w* \w Egypt|strong="H4714"\w*, \w such|strong="H3644"\w* \w as|strong="H1961"\w* \w there|strong="H1961"\w* \w has|strong="H1961"\w* \w not|strong="H3808"\w* \w been|strong="H1961"\w*, \w nor|strong="H3808"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w any|strong="H3605"\w* \w more|strong="H3254"\w*. +\v 7 \w But|strong="H3808"\w* \w against|strong="H4714"\w* \w any|strong="H3605"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w a|strong="H3068"\w* \w dog|strong="H3611"\w* won’t \w even|strong="H5704"\w* \w bark|strong="H2782"\w* \w or|strong="H3808"\w* \w move|strong="H2782"\w* \w its|strong="H3605"\w* \w tongue|strong="H3956"\w*, \w against|strong="H4714"\w* \w man|strong="H1121"\w* \w or|strong="H3808"\w* animal, \w that|strong="H3045"\w* \w you|strong="H3605"\w* \w may|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3045"\w* \w Yahweh|strong="H3068"\w* \w makes|strong="H6395"\w* \w a|strong="H3068"\w* \w distinction|strong="H6395"\w* \w between|strong="H3045"\w* \w the|strong="H3605"\w* \w Egyptians|strong="H4714"\w* \w and|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 8 \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w servants|strong="H5650"\w* \w of|strong="H5650"\w* \w yours|strong="H5650"\w* \w will|strong="H5971"\w* \w come|strong="H3318"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w me|strong="H3318"\w*, \w and|strong="H5971"\w* \w bow|strong="H7812"\w* \w down|strong="H3381"\w* \w themselves|strong="H7812"\w* \w to|strong="H3381"\w* \w me|strong="H3318"\w*, saying, “\w Get|strong="H3318"\w* \w out|strong="H3318"\w*, \w with|strong="H5973"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w follow|strong="H7272"\w* \w you|strong="H3605"\w*;” \w and|strong="H5971"\w* \w after|strong="H7272"\w* \w that|strong="H5971"\w* \w I|strong="H3651"\w* \w will|strong="H5971"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*.’” \w He|strong="H3651"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w Pharaoh|strong="H6547"\w* \w in|strong="H5650"\w* \w hot|strong="H2750"\w* anger. +\p +\v 9 \w Yahweh|strong="H3068"\w* \w said|strong="H8085"\w* \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w Pharaoh|strong="H6547"\w* won’t \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w you|strong="H3808"\w*, \w that|strong="H8085"\w* \w my|strong="H8085"\w* \w wonders|strong="H4159"\w* \w may|strong="H3068"\w* \w be|strong="H3808"\w* \w multiplied|strong="H7235"\w* \w in|strong="H3068"\w* \w the|strong="H8085"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*.” +\v 10 \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* Aaron \w did|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* \w wonders|strong="H4159"\w* \w before|strong="H6440"\w* \w Pharaoh|strong="H6547"\w*, \w but|strong="H3808"\w* \w Yahweh|strong="H3068"\w* \w hardened|strong="H2388"\w* \w Pharaoh|strong="H6547"\w*’s \w heart|strong="H3820"\w*, \w and|strong="H1121"\w* \w he|strong="H6213"\w* didn’t \w let|strong="H7971"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w go|strong="H7971"\w* \w out|strong="H7971"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w land|strong="H6440"\w*. +\c 12 +\p +\v 1 \w Yahweh|strong="H3068"\w* spoke \w to|strong="H3068"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron \w in|strong="H3068"\w* \w the|strong="H3068"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, saying, +\v 2 “\w This|strong="H2088"\w* \w month|strong="H2320"\w* \w shall|strong="H1931"\w* \w be|strong="H8141"\w* \w to|strong="H7223"\w* \w you|strong="H8141"\w* \w the|strong="H8141"\w* \w beginning|strong="H7218"\w* \w of|strong="H8141"\w* \w months|strong="H2320"\w*. \w It|strong="H1931"\w* \w shall|strong="H1931"\w* \w be|strong="H8141"\w* \w the|strong="H8141"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w* \w of|strong="H8141"\w* \w the|strong="H8141"\w* \w year|strong="H8141"\w* \w to|strong="H7223"\w* \w you|strong="H8141"\w*. +\v 3 \w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w saying|strong="H1696"\w*, ‘\w On|strong="H1696"\w* \w the|strong="H3605"\w* \w tenth|strong="H6218"\w* \w day|strong="H2320"\w* \w of|strong="H1004"\w* \w this|strong="H2088"\w* \w month|strong="H2320"\w*, \w they|strong="H2320"\w* \w shall|strong="H3478"\w* \w take|strong="H3947"\w* \w to|strong="H1696"\w* \w them|strong="H3947"\w* \w every|strong="H3605"\w* \w man|strong="H3605"\w* \w a|strong="H3068"\w* \w lamb|strong="H7716"\w*, according \w to|strong="H1696"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, \w a|strong="H3068"\w* \w lamb|strong="H7716"\w* \w for|strong="H1004"\w* \w a|strong="H3068"\w* \w household|strong="H1004"\w*; +\v 4 \w and|strong="H1004"\w* \w if|strong="H1961"\w* \w the|strong="H5921"\w* \w household|strong="H1004"\w* \w is|strong="H1931"\w* \w too|strong="H5921"\w* \w little|strong="H4591"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w lamb|strong="H7716"\w*, \w then|strong="H1961"\w* \w he|strong="H1931"\w* \w and|strong="H1004"\w* \w his|strong="H3947"\w* \w neighbor|strong="H7934"\w* \w next|strong="H5921"\w* \w to|strong="H1961"\w* \w his|strong="H3947"\w* \w house|strong="H1004"\w* \w shall|strong="H1004"\w* \w take|strong="H3947"\w* \w one|strong="H1931"\w* \w according|strong="H5921"\w* \w to|strong="H1961"\w* \w the|strong="H5921"\w* \w number|strong="H4373"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w souls|strong="H5315"\w*. \w You|strong="H5921"\w* \w shall|strong="H1004"\w* \w make|strong="H3947"\w* \w your|strong="H3947"\w* \w count|strong="H3699"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w lamb|strong="H7716"\w* \w according|strong="H5921"\w* \w to|strong="H1961"\w* \w what|strong="H6310"\w* everyone \w can|strong="H3947"\w* \w eat|strong="H6310"\w*. +\v 5 \w Your|strong="H3947"\w* \w lamb|strong="H3532"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*, \w a|strong="H3068"\w* \w male|strong="H2145"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*. \w You|strong="H3947"\w* \w shall|strong="H1121"\w* \w take|strong="H3947"\w* \w it|strong="H1961"\w* \w from|strong="H4480"\w* \w the|strong="H3947"\w* \w sheep|strong="H7716"\w* \w or|strong="H1121"\w* \w from|strong="H4480"\w* \w the|strong="H3947"\w* \w goats|strong="H5795"\w*. +\v 6 \w You|strong="H3605"\w* \w shall|strong="H3478"\w* \w keep|strong="H4931"\w* \w it|strong="H7819"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w fourteenth|strong="H6240"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w same|strong="H2088"\w* \w month|strong="H2320"\w*; \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w assembly|strong="H6951"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w* \w shall|strong="H3478"\w* \w kill|strong="H7819"\w* \w it|strong="H7819"\w* \w at|strong="H3478"\w* \w evening|strong="H6153"\w*. +\v 7 \w They|strong="H5921"\w* \w shall|strong="H1004"\w* \w take|strong="H3947"\w* \w some|strong="H4480"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w*, \w and|strong="H1004"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w door|strong="H4201"\w* \w posts|strong="H4201"\w* \w and|strong="H1004"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w lintel|strong="H4947"\w*, \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w houses|strong="H1004"\w* \w in|strong="H5921"\w* \w which|strong="H1004"\w* \w they|strong="H5921"\w* \w shall|strong="H1004"\w* eat \w it|strong="H5414"\w*. +\v 8 \w They|strong="H5921"\w* \w shall|strong="H1320"\w* eat \w the|strong="H5921"\w* \w meat|strong="H1320"\w* \w in|strong="H5921"\w* \w that|strong="H2088"\w* \w night|strong="H3915"\w*, \w roasted|strong="H6748"\w* \w with|strong="H5921"\w* fire, \w with|strong="H5921"\w* \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w*. \w They|strong="H5921"\w* \w shall|strong="H1320"\w* eat \w it|strong="H5921"\w* \w with|strong="H5921"\w* \w bitter|strong="H4844"\w* \w herbs|strong="H4844"\w*. +\v 9 Don’t eat \w it|strong="H5921"\w* \w raw|strong="H4995"\w*, \w nor|strong="H4480"\w* \w boiled|strong="H1310"\w* \w at|strong="H5921"\w* \w all|strong="H5921"\w* \w with|strong="H5921"\w* \w water|strong="H4325"\w*, \w but|strong="H3588"\w* \w roasted|strong="H6748"\w* \w with|strong="H5921"\w* fire; \w with|strong="H5921"\w* \w its|strong="H5921"\w* \w head|strong="H7218"\w*, \w its|strong="H5921"\w* \w legs|strong="H3767"\w* \w and|strong="H7218"\w* \w its|strong="H5921"\w* \w inner|strong="H7130"\w* \w parts|strong="H7130"\w*. +\v 10 \w You|strong="H5704"\w* \w shall|strong="H3808"\w* \w let|strong="H3808"\w* \w nothing|strong="H3808"\w* \w of|strong="H4480"\w* \w it|strong="H1242"\w* \w remain|strong="H3498"\w* \w until|strong="H5704"\w* \w the|strong="H4480"\w* \w morning|strong="H1242"\w*; \w but|strong="H3808"\w* \w that|strong="H4480"\w* which \w remains|strong="H3498"\w* \w of|strong="H4480"\w* \w it|strong="H1242"\w* \w until|strong="H5704"\w* \w the|strong="H4480"\w* \w morning|strong="H1242"\w* \w you|strong="H5704"\w* \w shall|strong="H3808"\w* \w burn|strong="H8313"\w* \w with|strong="H8313"\w* fire. +\v 11 \w This|strong="H1931"\w* \w is|strong="H3068"\w* how \w you|strong="H3027"\w* \w shall|strong="H3068"\w* eat \w it|strong="H1931"\w*: \w with|strong="H3068"\w* \w your|strong="H3068"\w* belt \w on|strong="H2296"\w* \w your|strong="H3068"\w* \w waist|strong="H4975"\w*, \w your|strong="H3068"\w* \w sandals|strong="H5275"\w* \w on|strong="H2296"\w* \w your|strong="H3068"\w* \w feet|strong="H7272"\w*, \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w staff|strong="H4731"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*; \w and|strong="H3068"\w* \w you|strong="H3027"\w* \w shall|strong="H3068"\w* eat \w it|strong="H1931"\w* \w in|strong="H3068"\w* \w haste|strong="H2649"\w*: \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w Passover|strong="H6453"\w*. +\v 12 \w For|strong="H5704"\w* \w I|strong="H5704"\w* \w will|strong="H3068"\w* \w go|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H3605"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w* \w in|strong="H3068"\w* \w that|strong="H3605"\w* \w night|strong="H3915"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w strike|strong="H5221"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w both|strong="H3605"\w* \w man|strong="H3605"\w* \w and|strong="H3068"\w* animal. \w I|strong="H5704"\w* \w will|strong="H3068"\w* \w execute|strong="H6213"\w* \w judgments|strong="H8201"\w* \w against|strong="H4714"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* gods \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*. \w I|strong="H5704"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 13 \w The|strong="H5921"\w* \w blood|strong="H1818"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w* \w to|strong="H1961"\w* \w you|strong="H5921"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* token \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w houses|strong="H1004"\w* \w where|strong="H8033"\w* \w you|strong="H5921"\w* \w are|strong="H1004"\w*. \w When|strong="H1961"\w* \w I|strong="H5921"\w* \w see|strong="H7200"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w*, \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w pass|strong="H1961"\w* \w over|strong="H5921"\w* \w you|strong="H5921"\w*, \w and|strong="H1004"\w* \w no|strong="H3808"\w* \w plague|strong="H5063"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w* \w to|strong="H1961"\w* \w destroy|strong="H4889"\w* \w you|strong="H5921"\w* \w when|strong="H1961"\w* \w I|strong="H5921"\w* \w strike|strong="H5221"\w* \w the|strong="H5921"\w* land \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*. +\v 14 \w This|strong="H2088"\w* \w day|strong="H3117"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w memorial|strong="H2146"\w* \w for|strong="H2708"\w* \w you|strong="H3117"\w*. \w You|strong="H3117"\w* \w shall|strong="H3068"\w* \w keep|strong="H2287"\w* \w it|strong="H1961"\w* \w as|strong="H3117"\w* \w a|strong="H3068"\w* \w feast|strong="H2282"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w You|strong="H3117"\w* \w shall|strong="H3068"\w* \w keep|strong="H2287"\w* \w it|strong="H1961"\w* \w as|strong="H3117"\w* \w a|strong="H3068"\w* \w feast|strong="H2282"\w* \w throughout|strong="H1755"\w* \w your|strong="H3068"\w* \w generations|strong="H1755"\w* \w by|strong="H3117"\w* \w an|strong="H1961"\w* \w ordinance|strong="H2708"\w* \w forever|strong="H5769"\w*. +\p +\v 15 “‘\w Seven|strong="H7651"\w* \w days|strong="H3117"\w* \w you|strong="H3588"\w* \w shall|strong="H3478"\w* eat \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w*; \w even|strong="H5704"\w* \w the|strong="H3605"\w* \w first|strong="H7223"\w* \w day|strong="H3117"\w* \w you|strong="H3588"\w* \w shall|strong="H3478"\w* \w put|strong="H7673"\w* \w away|strong="H7673"\w* \w yeast|strong="H7603"\w* \w out|strong="H3605"\w* \w of|strong="H1004"\w* \w your|strong="H3605"\w* \w houses|strong="H1004"\w*, \w for|strong="H3588"\w* \w whoever|strong="H3605"\w* eats \w leavened|strong="H2557"\w* \w bread|strong="H4682"\w* \w from|strong="H3772"\w* \w the|strong="H3605"\w* \w first|strong="H7223"\w* \w day|strong="H3117"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*, \w that|strong="H3588"\w* \w soul|strong="H5315"\w* \w shall|strong="H3478"\w* \w be|strong="H3478"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w Israel|strong="H3478"\w*. +\v 16 \w In|strong="H6213"\w* \w the|strong="H3605"\w* \w first|strong="H7223"\w* \w day|strong="H3117"\w* \w there|strong="H1961"\w* \w shall|strong="H5315"\w* \w be|strong="H1961"\w* \w to|strong="H1961"\w* \w you|strong="H3605"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w convocation|strong="H4744"\w*, \w and|strong="H3117"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w convocation|strong="H4744"\w*; \w no|strong="H3808"\w* kind \w of|strong="H3117"\w* \w work|strong="H4399"\w* \w shall|strong="H5315"\w* \w be|strong="H1961"\w* \w done|strong="H6213"\w* \w in|strong="H6213"\w* \w them|strong="H6213"\w*, \w except|strong="H3808"\w* \w that|strong="H3605"\w* \w which|strong="H1931"\w* \w every|strong="H3605"\w* \w man|strong="H5315"\w* \w must|strong="H5315"\w* eat, \w only|strong="H3605"\w* \w that|strong="H3605"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w done|strong="H6213"\w* \w by|strong="H3117"\w* \w you|strong="H3605"\w*. +\v 17 \w You|strong="H3588"\w* \w shall|strong="H3117"\w* \w observe|strong="H8104"\w* \w the|strong="H3588"\w* feast \w of|strong="H3117"\w* \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w*; \w for|strong="H3588"\w* \w in|strong="H3117"\w* \w this|strong="H2088"\w* \w same|strong="H6106"\w* \w day|strong="H3117"\w* \w I|strong="H3588"\w* \w have|strong="H3117"\w* \w brought|strong="H3318"\w* \w your|strong="H8104"\w* \w armies|strong="H6635"\w* \w out|strong="H3318"\w* \w of|strong="H3117"\w* \w the|strong="H3588"\w* land \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w*. \w Therefore|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3117"\w* \w observe|strong="H8104"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w* \w throughout|strong="H1755"\w* \w your|strong="H8104"\w* \w generations|strong="H1755"\w* \w by|strong="H3117"\w* \w an|strong="H3588"\w* \w ordinance|strong="H2708"\w* \w forever|strong="H5769"\w*. +\v 18 \w In|strong="H3117"\w* \w the|strong="H3117"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*, \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w fourteenth|strong="H6240"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w month|strong="H2320"\w* \w at|strong="H2320"\w* \w evening|strong="H6153"\w*, \w you|strong="H3117"\w* \w shall|strong="H3117"\w* eat \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w*, \w until|strong="H5704"\w* \w the|strong="H3117"\w* \w twenty|strong="H6242"\w* \w first|strong="H7223"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w month|strong="H2320"\w* \w at|strong="H2320"\w* \w evening|strong="H6153"\w*. +\v 19 \w There|strong="H4672"\w* \w shall|strong="H3478"\w* \w be|strong="H3808"\w* \w no|strong="H3808"\w* \w yeast|strong="H7603"\w* \w found|strong="H4672"\w* \w in|strong="H3478"\w* \w your|strong="H3605"\w* \w houses|strong="H1004"\w* \w for|strong="H3588"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w for|strong="H3588"\w* \w whoever|strong="H3605"\w* eats \w that|strong="H3588"\w* \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w leavened|strong="H2557"\w*, \w that|strong="H3588"\w* \w soul|strong="H5315"\w* \w shall|strong="H3478"\w* \w be|strong="H3808"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, whether \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1616"\w*, \w or|strong="H3808"\w* \w one|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H1931"\w* \w born|strong="H3808"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* land. +\v 20 \w You|strong="H3605"\w* \w shall|strong="H3808"\w* eat \w nothing|strong="H3808"\w* \w leavened|strong="H2557"\w*. \w In|strong="H3808"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w habitations|strong="H4186"\w* \w you|strong="H3605"\w* \w shall|strong="H3808"\w* eat \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w*.’” +\p +\v 21 \w Then|strong="H3947"\w* \w Moses|strong="H4872"\w* \w called|strong="H7121"\w* \w for|strong="H7121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H2205"\w* \w Israel|strong="H3478"\w*, \w and|strong="H4872"\w* \w said|strong="H7121"\w* \w to|strong="H3478"\w* \w them|strong="H7121"\w*, “\w Draw|strong="H4900"\w* \w out|strong="H3947"\w*, \w and|strong="H4872"\w* \w take|strong="H3947"\w* \w lambs|strong="H6629"\w* according \w to|strong="H3478"\w* \w your|strong="H3605"\w* \w families|strong="H4940"\w*, \w and|strong="H4872"\w* \w kill|strong="H7819"\w* \w the|strong="H3605"\w* \w Passover|strong="H6453"\w*. +\v 22 \w You|strong="H5704"\w* \w shall|strong="H1004"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* bunch \w of|strong="H1004"\w* hyssop, \w and|strong="H1004"\w* \w dip|strong="H2881"\w* \w it|strong="H1242"\w* \w in|strong="H1004"\w* \w the|strong="H3947"\w* \w blood|strong="H1818"\w* \w that|strong="H4480"\w* \w is|strong="H1004"\w* \w in|strong="H1004"\w* \w the|strong="H3947"\w* \w basin|strong="H5592"\w*, \w and|strong="H1004"\w* \w strike|strong="H5060"\w* \w the|strong="H3947"\w* \w lintel|strong="H4947"\w* \w and|strong="H1004"\w* \w the|strong="H3947"\w* \w two|strong="H8147"\w* \w door|strong="H6607"\w* \w posts|strong="H4201"\w* \w with|strong="H1004"\w* \w the|strong="H3947"\w* \w blood|strong="H1818"\w* \w that|strong="H4480"\w* \w is|strong="H1004"\w* \w in|strong="H1004"\w* \w the|strong="H3947"\w* \w basin|strong="H5592"\w*. \w None|strong="H3808"\w* \w of|strong="H1004"\w* \w you|strong="H5704"\w* \w shall|strong="H1004"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H3947"\w* \w door|strong="H6607"\w* \w of|strong="H1004"\w* \w his|strong="H3947"\w* \w house|strong="H1004"\w* \w until|strong="H5704"\w* \w the|strong="H3947"\w* \w morning|strong="H1242"\w*. +\v 23 \w For|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w to|strong="H3068"\w* \w strike|strong="H5062"\w* \w the|strong="H5921"\w* \w Egyptians|strong="H4714"\w*; \w and|strong="H3068"\w* \w when|strong="H7200"\w* \w he|strong="H3068"\w* \w sees|strong="H7200"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w lintel|strong="H4947"\w*, \w and|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w door|strong="H6607"\w* \w posts|strong="H4201"\w*, \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w pass|strong="H5674"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w door|strong="H6607"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w allow|strong="H5414"\w* \w the|strong="H5921"\w* \w destroyer|strong="H7843"\w* \w to|strong="H3068"\w* \w come|strong="H5674"\w* \w in|strong="H5921"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w houses|strong="H1004"\w* \w to|strong="H3068"\w* \w strike|strong="H5062"\w* \w you|strong="H5414"\w*. +\v 24 \w You|strong="H5704"\w* \w shall|strong="H1121"\w* \w observe|strong="H8104"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w for|strong="H5704"\w* \w an|strong="H2088"\w* \w ordinance|strong="H2706"\w* \w to|strong="H5704"\w* \w you|strong="H5704"\w* \w and|strong="H1121"\w* \w to|strong="H5704"\w* \w your|strong="H8104"\w* \w sons|strong="H1121"\w* \w forever|strong="H5769"\w*. +\v 25 \w It|strong="H5414"\w* \w shall|strong="H3068"\w* \w happen|strong="H1961"\w* \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w come|strong="H1961"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w you|strong="H3588"\w*, \w as|strong="H1961"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w promised|strong="H1696"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w keep|strong="H8104"\w* \w this|strong="H2063"\w* \w service|strong="H5656"\w*. +\v 26 \w It|strong="H3588"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w*, \w when|strong="H3588"\w* \w your|strong="H3588"\w* \w children|strong="H1121"\w* ask \w you|strong="H3588"\w*, ‘\w What|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H3588"\w* mean \w by|strong="H1961"\w* \w this|strong="H2063"\w* \w service|strong="H5656"\w*?’ +\v 27 \w that|strong="H5971"\w* \w you|strong="H5921"\w* \w shall|strong="H3068"\w* \w say|strong="H3478"\w*, ‘\w It|strong="H1931"\w* \w is|strong="H3068"\w* \w the|strong="H5921"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w Passover|strong="H6453"\w*, \w who|strong="H1931"\w* \w passed|strong="H5971"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w houses|strong="H1004"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w in|strong="H5921"\w* \w Egypt|strong="H4714"\w*, \w when|strong="H3068"\w* \w he|strong="H1931"\w* \w struck|strong="H5062"\w* \w the|strong="H5921"\w* \w Egyptians|strong="H4714"\w*, \w and|strong="H1121"\w* \w spared|strong="H5337"\w* \w our|strong="H3068"\w* \w houses|strong="H1004"\w*.’” +\p \w The|strong="H5921"\w* \w people|strong="H5971"\w* \w bowed|strong="H7812"\w* \w their|strong="H3068"\w* \w heads|strong="H6915"\w* \w and|strong="H1121"\w* \w worshiped|strong="H7812"\w*. +\v 28 \w The|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w went|strong="H3212"\w* \w and|strong="H1121"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*; \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* Aaron, \w so|strong="H3651"\w* \w they|strong="H3651"\w* \w did|strong="H6213"\w*. +\p +\v 29 \w At|strong="H3427"\w* \w midnight|strong="H2677"\w*, \w Yahweh|strong="H3068"\w* \w struck|strong="H5221"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* land \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*, \w from|strong="H5921"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1004"\w* \w Pharaoh|strong="H6547"\w* \w who|strong="H3605"\w* \w sat|strong="H3427"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w throne|strong="H3678"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w captive|strong="H7628"\w* \w who|strong="H3605"\w* \w was|strong="H3068"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w dungeon|strong="H1004"\w*, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1004"\w* livestock. +\v 30 \w Pharaoh|strong="H6547"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* \w night|strong="H3915"\w*, \w he|strong="H1931"\w*, \w and|strong="H6965"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w*, \w and|strong="H6965"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Egyptians|strong="H4714"\w*; \w and|strong="H6965"\w* \w there|strong="H8033"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w cry|strong="H6818"\w* \w in|strong="H1004"\w* \w Egypt|strong="H4714"\w*, \w for|strong="H3588"\w* \w there|strong="H8033"\w* \w was|strong="H1961"\w* \w not|strong="H1961"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w where|strong="H8033"\w* \w there|strong="H8033"\w* \w was|strong="H1961"\w* \w not|strong="H1961"\w* \w one|strong="H3605"\w* \w dead|strong="H4191"\w*. +\v 31 \w He|strong="H3068"\w* \w called|strong="H7121"\w* \w for|strong="H7121"\w* \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* Aaron \w by|strong="H3068"\w* \w night|strong="H3915"\w*, \w and|strong="H1121"\w* \w said|strong="H1696"\w*, “\w Rise|strong="H6965"\w* \w up|strong="H6965"\w*, \w get|strong="H6965"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w among|strong="H8432"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w*, \w both|strong="H1571"\w* \w you|strong="H8432"\w* \w and|strong="H1121"\w* \w the|strong="H8432"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w and|strong="H1121"\w* \w go|strong="H3212"\w*, \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w*, \w as|strong="H1571"\w* \w you|strong="H8432"\w* \w have|strong="H3068"\w* \w said|strong="H1696"\w*! +\v 32 \w Take|strong="H3947"\w* \w both|strong="H1571"\w* \w your|strong="H3947"\w* \w flocks|strong="H6629"\w* \w and|strong="H3212"\w* \w your|strong="H3947"\w* \w herds|strong="H1241"\w*, \w as|strong="H1571"\w* \w you|strong="H3947"\w* \w have|strong="H1571"\w* \w said|strong="H1696"\w*, \w and|strong="H3212"\w* \w be|strong="H1571"\w* \w gone|strong="H3212"\w*; \w and|strong="H3212"\w* \w bless|strong="H1288"\w* \w me|strong="H3947"\w* \w also|strong="H1571"\w*!” +\p +\v 33 \w The|strong="H3605"\w* \w Egyptians|strong="H4713"\w* \w were|strong="H5971"\w* \w urgent|strong="H2388"\w* \w with|strong="H5921"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w to|strong="H4191"\w* \w send|strong="H7971"\w* \w them|strong="H5921"\w* \w out|strong="H7971"\w* \w of|strong="H4480"\w* \w the|strong="H3605"\w* land \w in|strong="H5921"\w* \w haste|strong="H4116"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* said, “\w We|strong="H3588"\w* \w are|strong="H5971"\w* \w all|strong="H3605"\w* \w dead|strong="H4191"\w* \w men|strong="H5971"\w*.” +\v 34 \w The|strong="H5921"\w* \w people|strong="H5971"\w* \w took|strong="H5375"\w* \w their|strong="H5375"\w* \w dough|strong="H1217"\w* \w before|strong="H2962"\w* \w it|strong="H5921"\w* \w was|strong="H5971"\w* \w leavened|strong="H2556"\w*, \w their|strong="H5375"\w* \w kneading|strong="H4863"\w* troughs \w being|strong="H5971"\w* \w bound|strong="H6887"\w* \w up|strong="H5375"\w* \w in|strong="H5921"\w* \w their|strong="H5375"\w* \w clothes|strong="H8071"\w* \w on|strong="H5921"\w* \w their|strong="H5375"\w* \w shoulders|strong="H7926"\w*. +\v 35 \w The|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w did|strong="H6213"\w* \w according|strong="H3701"\w* \w to|strong="H3478"\w* \w the|strong="H6213"\w* \w word|strong="H1697"\w* \w of|strong="H1121"\w* \w Moses|strong="H4872"\w*; \w and|strong="H1121"\w* \w they|strong="H6213"\w* \w asked|strong="H7592"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w Egyptians|strong="H4714"\w* \w jewels|strong="H3627"\w* \w of|strong="H1121"\w* \w silver|strong="H3701"\w*, \w and|strong="H1121"\w* \w jewels|strong="H3627"\w* \w of|strong="H1121"\w* \w gold|strong="H2091"\w*, \w and|strong="H1121"\w* \w clothing|strong="H8071"\w*. +\v 36 \w Yahweh|strong="H3068"\w* \w gave|strong="H5414"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w* \w favor|strong="H2580"\w* \w in|strong="H3068"\w* \w the|strong="H5414"\w* \w sight|strong="H5869"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* \w Egyptians|strong="H4714"\w*, \w so|strong="H5414"\w* \w that|strong="H5971"\w* \w they|strong="H3068"\w* \w let|strong="H5414"\w* \w them|strong="H5414"\w* \w have|strong="H3068"\w* what \w they|strong="H3068"\w* \w asked|strong="H7592"\w*. \w They|strong="H3068"\w* \w plundered|strong="H5337"\w* \w the|strong="H5414"\w* \w Egyptians|strong="H4714"\w*. +\p +\v 37 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Rameses|strong="H7486"\w* \w to|strong="H3478"\w* \w Succoth|strong="H5523"\w*, \w about|strong="H3478"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* thousand \w on|strong="H3478"\w* \w foot|strong="H7273"\w* \w who|strong="H1121"\w* \w were|strong="H3478"\w* \w men|strong="H1121"\w*, \w in|strong="H3478"\w* addition \w to|strong="H3478"\w* \w children|strong="H1121"\w*. +\v 38 \w A|strong="H3068"\w* \w mixed|strong="H6154"\w* \w multitude|strong="H7227"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w also|strong="H1571"\w* \w with|strong="H5927"\w* \w them|strong="H5927"\w*, \w with|strong="H5927"\w* \w flocks|strong="H6629"\w*, \w herds|strong="H1241"\w*, \w and|strong="H6629"\w* \w even|strong="H1571"\w* \w very|strong="H3966"\w* \w much|strong="H7227"\w* \w livestock|strong="H4735"\w*. +\v 39 \w They|strong="H3588"\w* baked \w unleavened|strong="H4682"\w* \w cakes|strong="H5692"\w* \w of|strong="H3318"\w* \w the|strong="H3588"\w* \w dough|strong="H1217"\w* \w which|strong="H3588"\w* \w they|strong="H3588"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w Egypt|strong="H4714"\w*; \w for|strong="H3588"\w* \w it|strong="H3588"\w* wasn’t \w leavened|strong="H2556"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H4714"\w* thrust \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H4714"\w* couldn’t \w wait|strong="H4102"\w*, \w and|strong="H4714"\w* \w they|strong="H3588"\w* \w had|strong="H3588"\w* \w not|strong="H3808"\w* \w prepared|strong="H6213"\w* \w any|strong="H6213"\w* \w food|strong="H6720"\w* \w for|strong="H3588"\w* \w themselves|strong="H6213"\w*. +\v 40 \w Now|strong="H3478"\w* \w the|strong="H3427"\w* \w time|strong="H4186"\w* \w that|strong="H3478"\w* \w the|strong="H3427"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Egypt|strong="H4714"\w* \w was|strong="H3478"\w* four \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w* \w years|strong="H8141"\w*. +\v 41 \w At|strong="H3068"\w* \w the|strong="H3605"\w* \w end|strong="H7093"\w* \w of|strong="H3068"\w* four \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w* \w years|strong="H8141"\w*, \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w*, \w all|strong="H3605"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w armies|strong="H6635"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w the|strong="H3605"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*. +\v 42 \w It|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w night|strong="H3915"\w* \w to|strong="H3318"\w* \w be|strong="H3068"\w* \w much|strong="H3605"\w* \w observed|strong="H8107"\w* \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H4714"\w* \w bringing|strong="H3318"\w* \w them|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w the|strong="H3605"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*. \w This|strong="H2088"\w* \w is|strong="H3068"\w* \w that|strong="H3605"\w* \w night|strong="H3915"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*, \w to|strong="H3318"\w* \w be|strong="H3068"\w* \w much|strong="H3605"\w* \w observed|strong="H8107"\w* \w by|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w throughout|strong="H3605"\w* \w their|strong="H3605"\w* \w generations|strong="H1755"\w*. +\p +\v 43 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* Aaron, “\w This|strong="H2063"\w* \w is|strong="H3068"\w* \w the|strong="H3605"\w* \w ordinance|strong="H2708"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w Passover|strong="H6453"\w*. \w No|strong="H3808"\w* \w foreigner|strong="H1121"\w* \w shall|strong="H3068"\w* eat \w of|strong="H1121"\w* \w it|strong="H2063"\w*, +\v 44 \w but|strong="H3605"\w* \w every|strong="H3605"\w* \w man|strong="H3605"\w*’s \w servant|strong="H5650"\w* \w who|strong="H3605"\w* \w is|strong="H3701"\w* \w bought|strong="H4736"\w* \w for|strong="H5650"\w* \w money|strong="H3701"\w*, \w when|strong="H4135"\w* \w you|strong="H3605"\w* \w have|strong="H5650"\w* \w circumcised|strong="H4135"\w* \w him|strong="H3605"\w*, \w then|strong="H3605"\w* \w shall|strong="H5650"\w* \w he|strong="H3605"\w* eat \w of|strong="H5650"\w* \w it|strong="H5650"\w*. +\v 45 \w A|strong="H3068"\w* \w foreigner|strong="H8453"\w* \w and|strong="H3808"\w* \w a|strong="H3068"\w* \w hired|strong="H7916"\w* \w servant|strong="H7916"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* eat \w of|strong="H3808"\w* \w it|strong="H3808"\w*. +\v 46 \w It|strong="H3808"\w* \w must|strong="H2351"\w* \w be|strong="H3808"\w* eaten \w in|strong="H1004"\w* \w one|strong="H3808"\w* \w house|strong="H1004"\w*. \w You|strong="H3808"\w* \w shall|strong="H1004"\w* \w not|strong="H3808"\w* \w carry|strong="H3318"\w* \w any|strong="H4480"\w* \w of|strong="H1004"\w* \w the|strong="H4480"\w* \w meat|strong="H1320"\w* \w outside|strong="H2351"\w* \w of|strong="H1004"\w* \w the|strong="H4480"\w* \w house|strong="H1004"\w*. \w Do|strong="H3318"\w* \w not|strong="H3808"\w* \w break|strong="H7665"\w* \w any|strong="H4480"\w* \w of|strong="H1004"\w* \w its|strong="H3318"\w* \w bones|strong="H6106"\w*. +\v 47 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H5712"\w* \w Israel|strong="H3478"\w* \w shall|strong="H3478"\w* \w keep|strong="H6213"\w* \w it|strong="H6213"\w*. +\v 48 \w When|strong="H3588"\w* \w a|strong="H3068"\w* \w stranger|strong="H1616"\w* \w lives|strong="H1481"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1616"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w would|strong="H3068"\w* \w like|strong="H1961"\w* \w to|strong="H3068"\w* \w keep|strong="H6213"\w* \w the|strong="H3605"\w* \w Passover|strong="H6453"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w let|strong="H3808"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w males|strong="H2145"\w* \w be|strong="H1961"\w* \w circumcised|strong="H4135"\w*, \w and|strong="H3068"\w* \w then|strong="H1961"\w* \w let|strong="H3808"\w* \w him|strong="H6213"\w* \w come|strong="H1961"\w* \w near|strong="H7126"\w* \w and|strong="H3068"\w* \w keep|strong="H6213"\w* \w it|strong="H7126"\w*. \w He|strong="H3588"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w one|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3068"\w* \w born|strong="H3808"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* land; \w but|strong="H3588"\w* \w no|strong="H3808"\w* \w uncircumcised|strong="H6189"\w* \w person|strong="H7126"\w* \w shall|strong="H3068"\w* eat \w of|strong="H3068"\w* \w it|strong="H7126"\w*. +\v 49 \w One|strong="H1961"\w* \w law|strong="H8451"\w* \w shall|strong="H8451"\w* \w be|strong="H1961"\w* \w to|strong="H1961"\w* \w him|strong="H8432"\w* \w who|strong="H1616"\w* \w is|strong="H1961"\w* born \w at|strong="H1961"\w* \w home|strong="H8432"\w*, \w and|strong="H8451"\w* \w to|strong="H1961"\w* \w the|strong="H8432"\w* \w stranger|strong="H1616"\w* \w who|strong="H1616"\w* \w lives|strong="H1481"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1616"\w* \w among|strong="H8432"\w* \w you|strong="H8432"\w*.” +\v 50 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*. \w As|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* Aaron, \w so|strong="H3651"\w* \w they|strong="H3651"\w* \w did|strong="H6213"\w*. +\v 51 \w That|strong="H3117"\w* \w same|strong="H6106"\w* \w day|strong="H3117"\w*, \w Yahweh|strong="H3068"\w* \w brought|strong="H3318"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w* \w by|strong="H5921"\w* \w their|strong="H3068"\w* \w armies|strong="H6635"\w*. +\c 13 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Sanctify|strong="H6942"\w* \w to|strong="H3478"\w* \w me|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w*, \w whatever|strong="H3605"\w* opens \w the|strong="H3605"\w* \w womb|strong="H7358"\w* \w among|strong="H1060"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w both|strong="H3605"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* animal. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w mine|strong="H3478"\w*.” +\p +\v 3 \w Moses|strong="H4872"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w*, “\w Remember|strong="H2142"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, \w in|strong="H3068"\w* \w which|strong="H3068"\w* \w you|strong="H3588"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*, \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w bondage|strong="H5650"\w*; \w for|strong="H3588"\w* \w by|strong="H3027"\w* \w strength|strong="H3027"\w* \w of|strong="H1004"\w* \w hand|strong="H3027"\w* \w Yahweh|strong="H3068"\w* \w brought|strong="H3318"\w* \w you|strong="H3588"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w this|strong="H2088"\w* \w place|strong="H3027"\w*. \w No|strong="H3808"\w* \w leavened|strong="H2557"\w* \w bread|strong="H2557"\w* \w shall|strong="H3068"\w* \w be|strong="H3808"\w* eaten. +\v 4 \w Today|strong="H3117"\w* \w you|strong="H3117"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w month|strong="H2320"\w* Abib. +\v 5 \w It|strong="H5414"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w*, \w when|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w brings|strong="H5414"\w* \w you|strong="H3588"\w* \w into|strong="H1961"\w* \w the|strong="H3588"\w* land \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w Canaanite|strong="H3669"\w*, \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w Hittite|strong="H2850"\w*, \w and|strong="H3068"\w* \w the|strong="H3588"\w* Amorite, \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w Hivite|strong="H2340"\w*, \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w Jebusite|strong="H2983"\w*, \w which|strong="H3068"\w* \w he|strong="H3588"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* fathers \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w you|strong="H3588"\w*, \w a|strong="H3068"\w* land \w flowing|strong="H2100"\w* \w with|strong="H2100"\w* \w milk|strong="H2461"\w* \w and|strong="H3068"\w* \w honey|strong="H1706"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w keep|strong="H5647"\w* \w this|strong="H2088"\w* \w service|strong="H5656"\w* \w in|strong="H3068"\w* \w this|strong="H2088"\w* \w month|strong="H2320"\w*. +\v 6 \w Seven|strong="H7651"\w* \w days|strong="H3117"\w* \w you|strong="H3117"\w* \w shall|strong="H3068"\w* eat \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w*, \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w a|strong="H3068"\w* \w feast|strong="H2282"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 7 \w Unleavened|strong="H4682"\w* \w bread|strong="H4682"\w* \w shall|strong="H3117"\w* \w be|strong="H3808"\w* eaten \w throughout|strong="H3605"\w* \w the|strong="H3605"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*; \w and|strong="H3117"\w* \w no|strong="H3808"\w* \w leavened|strong="H2557"\w* \w bread|strong="H4682"\w* \w shall|strong="H3117"\w* \w be|strong="H3808"\w* \w seen|strong="H7200"\w* \w with|strong="H3117"\w* \w you|strong="H3605"\w*. \w No|strong="H3808"\w* \w yeast|strong="H7603"\w* \w shall|strong="H3117"\w* \w be|strong="H3808"\w* \w seen|strong="H7200"\w* \w with|strong="H3117"\w* \w you|strong="H3605"\w*, within \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w borders|strong="H1366"\w*. +\v 8 \w You|strong="H3117"\w* \w shall|strong="H3068"\w* \w tell|strong="H5046"\w* \w your|strong="H3068"\w* \w son|strong="H1121"\w* \w in|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, saying, ‘\w It|strong="H1931"\w* \w is|strong="H3068"\w* \w because|strong="H5668"\w* \w of|strong="H1121"\w* \w that|strong="H3117"\w* \w which|strong="H1931"\w* \w Yahweh|strong="H3068"\w* \w did|strong="H6213"\w* \w for|strong="H6213"\w* \w me|strong="H5046"\w* \w when|strong="H3117"\w* \w I|strong="H3117"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*.’ +\v 9 \w It|strong="H5921"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w sign|strong="H2146"\w* \w to|strong="H3318"\w* \w you|strong="H3588"\w* \w on|strong="H5921"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*, \w and|strong="H3068"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w memorial|strong="H2146"\w* \w between|strong="H5921"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w*, \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w law|strong="H8451"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w in|strong="H5921"\w* \w your|strong="H3068"\w* \w mouth|strong="H6310"\w*; \w for|strong="H3588"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w strong|strong="H2389"\w* \w hand|strong="H3027"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w brought|strong="H3318"\w* \w you|strong="H3588"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*. +\v 10 \w You|strong="H3117"\w* \w shall|strong="H3117"\w* \w therefore|strong="H2063"\w* \w keep|strong="H8104"\w* \w this|strong="H2063"\w* \w ordinance|strong="H2708"\w* \w in|strong="H3117"\w* \w its|strong="H8104"\w* \w season|strong="H4150"\w* \w from|strong="H3117"\w* \w year|strong="H3117"\w* \w to|strong="H8104"\w* \w year|strong="H3117"\w*. +\p +\v 11 “\w It|strong="H5414"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w*, \w when|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w brings|strong="H5414"\w* \w you|strong="H3588"\w* \w into|strong="H1961"\w* \w the|strong="H3588"\w* land \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w Canaanite|strong="H3669"\w*, \w as|strong="H1961"\w* \w he|strong="H3588"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* fathers, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w*, +\v 12 \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w shall|strong="H3068"\w* set \w apart|strong="H5674"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* opens \w the|strong="H3605"\w* \w womb|strong="H7358"\w*, \w and|strong="H3068"\w* \w every|strong="H3605"\w* \w firstborn|strong="H6363"\w* \w that|strong="H3605"\w* \w comes|strong="H1961"\w* \w from|strong="H3068"\w* \w an|strong="H1961"\w* \w animal|strong="H1961"\w* \w which|strong="H3068"\w* \w you|strong="H3605"\w* \w have|strong="H1961"\w*. \w The|strong="H3605"\w* \w males|strong="H2145"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s. +\v 13 \w Every|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w donkey|strong="H2543"\w* \w you|strong="H3605"\w* \w shall|strong="H1121"\w* \w redeem|strong="H6299"\w* \w with|strong="H3605"\w* \w a|strong="H3068"\w* \w lamb|strong="H7716"\w*; \w and|strong="H1121"\w* \w if|strong="H1121"\w* \w you|strong="H3605"\w* \w will|strong="H1121"\w* \w not|strong="H3808"\w* \w redeem|strong="H6299"\w* \w it|strong="H3808"\w*, \w then|strong="H3808"\w* \w you|strong="H3605"\w* \w shall|strong="H1121"\w* \w break|strong="H6202"\w* \w its|strong="H3605"\w* \w neck|strong="H6202"\w*; \w and|strong="H1121"\w* \w you|strong="H3605"\w* \w shall|strong="H1121"\w* \w redeem|strong="H6299"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w* \w among|strong="H3808"\w* \w your|strong="H3605"\w* \w sons|strong="H1121"\w*. +\v 14 \w It|strong="H3588"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w*, \w when|strong="H3588"\w* \w your|strong="H3068"\w* \w son|strong="H1121"\w* \w asks|strong="H7592"\w* \w you|strong="H3588"\w* \w in|strong="H3068"\w* \w time|strong="H4279"\w* \w to|strong="H3318"\w* \w come|strong="H1961"\w*, saying, ‘\w What|strong="H4100"\w* \w is|strong="H3068"\w* \w this|strong="H2063"\w*?’ \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* tell \w him|strong="H3027"\w*, ‘\w By|strong="H3027"\w* \w strength|strong="H3027"\w* \w of|strong="H1121"\w* \w hand|strong="H3027"\w* \w Yahweh|strong="H3068"\w* \w brought|strong="H3318"\w* \w us|strong="H3588"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w Egypt|strong="H4714"\w*, \w from|strong="H3318"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w bondage|strong="H5650"\w*. +\v 15 \w When|strong="H3588"\w* \w Pharaoh|strong="H6547"\w* \w stubbornly|strong="H7185"\w* \w refused|strong="H7971"\w* \w to|strong="H5704"\w* \w let|strong="H7971"\w* \w us|strong="H5921"\w* \w go|strong="H7971"\w*, \w Yahweh|strong="H3068"\w* \w killed|strong="H2026"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w both|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1121"\w* livestock. \w Therefore|strong="H3651"\w* \w I|strong="H3588"\w* \w sacrifice|strong="H2076"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* opens \w the|strong="H3605"\w* \w womb|strong="H7358"\w*, \w being|strong="H1961"\w* \w males|strong="H2145"\w*; \w but|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1121"\w* \w my|strong="H3605"\w* \w sons|strong="H1121"\w* \w I|strong="H3588"\w* \w redeem|strong="H6299"\w*.’ +\v 16 \w It|strong="H5921"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* sign \w on|strong="H5921"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*, \w and|strong="H3068"\w* \w for|strong="H3588"\w* \w symbols|strong="H2903"\w* \w between|strong="H5921"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w*; \w for|strong="H3588"\w* \w by|strong="H3027"\w* \w strength|strong="H3027"\w* \w of|strong="H3068"\w* \w hand|strong="H3027"\w* \w Yahweh|strong="H3068"\w* \w brought|strong="H3318"\w* \w us|strong="H5921"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*.” +\p +\v 17 \w When|strong="H3588"\w* \w Pharaoh|strong="H6547"\w* \w had|strong="H1961"\w* \w let|strong="H7971"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w* \w go|strong="H7971"\w*, \w God|strong="H3808"\w* didn’t \w lead|strong="H5148"\w* \w them|strong="H7725"\w* \w by|strong="H1870"\w* \w the|strong="H7200"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w the|strong="H7200"\w* land \w of|strong="H1870"\w* \w the|strong="H7200"\w* \w Philistines|strong="H6430"\w*, \w although|strong="H3588"\w* \w that|strong="H3588"\w* \w was|strong="H1961"\w* \w near|strong="H7138"\w*; \w for|strong="H3588"\w* \w God|strong="H3808"\w* said, “\w Lest|strong="H6435"\w* \w perhaps|strong="H3588"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w* \w change|strong="H5162"\w* \w their|strong="H7725"\w* \w minds|strong="H5162"\w* \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w see|strong="H7200"\w* \w war|strong="H4421"\w*, \w and|strong="H7971"\w* \w they|strong="H3588"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w Egypt|strong="H4714"\w*”; +\v 18 \w but|strong="H1870"\w* God \w led|strong="H5437"\w* \w the|strong="H5927"\w* \w people|strong="H5971"\w* \w around|strong="H5437"\w* \w by|strong="H1870"\w* \w the|strong="H5927"\w* \w way|strong="H1870"\w* \w of|strong="H1121"\w* \w the|strong="H5927"\w* \w wilderness|strong="H4057"\w* \w by|strong="H1870"\w* \w the|strong="H5927"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w*; \w and|strong="H1121"\w* \w the|strong="H5927"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w armed|strong="H2571"\w* \w out|strong="H5437"\w* \w of|strong="H1121"\w* \w the|strong="H5927"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*. +\v 19 \w Moses|strong="H4872"\w* \w took|strong="H3947"\w* \w the|strong="H3588"\w* \w bones|strong="H6106"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H3478"\w* \w made|strong="H7650"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w swear|strong="H7650"\w*, saying, “God \w will|strong="H3478"\w* \w surely|strong="H3588"\w* \w visit|strong="H6485"\w* \w you|strong="H3588"\w*, \w and|strong="H1121"\w* \w you|strong="H3588"\w* \w shall|strong="H1121"\w* \w carry|strong="H5927"\w* \w up|strong="H5927"\w* \w my|strong="H3947"\w* \w bones|strong="H6106"\w* \w away|strong="H3947"\w* \w from|strong="H5927"\w* \w here|strong="H2088"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*.” +\v 20 They \w took|strong="H5265"\w* \w their|strong="H5265"\w* \w journey|strong="H5265"\w* \w from|strong="H5265"\w* \w Succoth|strong="H5523"\w*, \w and|strong="H4057"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* Etham, \w in|strong="H2583"\w* \w the|strong="H2583"\w* \w edge|strong="H7097"\w* \w of|strong="H4057"\w* \w the|strong="H2583"\w* \w wilderness|strong="H4057"\w*. +\v 21 \w Yahweh|strong="H3068"\w* \w went|strong="H1980"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w* \w by|strong="H3068"\w* \w day|strong="H3119"\w* \w in|strong="H1980"\w* \w a|strong="H3068"\w* \w pillar|strong="H5982"\w* \w of|strong="H3068"\w* \w cloud|strong="H6051"\w*, \w to|strong="H1980"\w* \w lead|strong="H5148"\w* \w them|strong="H6440"\w* \w on|strong="H1980"\w* \w their|strong="H3068"\w* \w way|strong="H1870"\w*, \w and|strong="H1980"\w* \w by|strong="H3068"\w* \w night|strong="H3915"\w* \w in|strong="H1980"\w* \w a|strong="H3068"\w* \w pillar|strong="H5982"\w* \w of|strong="H3068"\w* fire, \w to|strong="H1980"\w* give \w them|strong="H6440"\w* light, \w that|strong="H3068"\w* \w they|strong="H3068"\w* \w might|strong="H3068"\w* \w go|strong="H1980"\w* \w by|strong="H3068"\w* \w day|strong="H3119"\w* \w and|strong="H1980"\w* \w by|strong="H3068"\w* \w night|strong="H3915"\w*: +\v 22 \w the|strong="H6440"\w* \w pillar|strong="H5982"\w* \w of|strong="H6440"\w* \w cloud|strong="H6051"\w* \w by|strong="H6051"\w* \w day|strong="H3119"\w*, \w and|strong="H5971"\w* \w the|strong="H6440"\w* \w pillar|strong="H5982"\w* \w of|strong="H6440"\w* fire \w by|strong="H6051"\w* \w night|strong="H3915"\w*, didn’t \w depart|strong="H4185"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*. +\c 14 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w that|strong="H3478"\w* \w they|strong="H5921"\w* \w turn|strong="H7725"\w* \w back|strong="H7725"\w* \w and|strong="H1121"\w* \w encamp|strong="H2583"\w* \w before|strong="H6440"\w* Pihahiroth, \w between|strong="H2583"\w* \w Migdol|strong="H4024"\w* \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w sea|strong="H3220"\w*, \w before|strong="H6440"\w* Baal Zephon. \w You|strong="H6440"\w* \w shall|strong="H1121"\w* \w encamp|strong="H2583"\w* \w opposite|strong="H5921"\w* \w it|strong="H5921"\w* \w by|strong="H5921"\w* \w the|strong="H6440"\w* \w sea|strong="H3220"\w*. +\v 3 \w Pharaoh|strong="H6547"\w* \w will|strong="H3478"\w* \w say|strong="H3478"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, ‘\w They|strong="H1992"\w* \w are|strong="H1992"\w* entangled \w in|strong="H5921"\w* \w the|strong="H5921"\w* land. \w The|strong="H5921"\w* \w wilderness|strong="H4057"\w* \w has|strong="H3478"\w* \w shut|strong="H5462"\w* \w them|strong="H1992"\w* \w in|strong="H5921"\w*.’ +\v 4 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w harden|strong="H2388"\w* \w Pharaoh|strong="H6547"\w*’s \w heart|strong="H3820"\w*, \w and|strong="H3068"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w follow|strong="H7291"\w* \w after|strong="H7291"\w* \w them|strong="H6213"\w*; \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w get|strong="H6213"\w* \w honor|strong="H3513"\w* \w over|strong="H3068"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H3068"\w* \w over|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w armies|strong="H2428"\w*; \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w Egyptians|strong="H4713"\w* \w shall|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.” \w They|strong="H3588"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*. +\p +\v 5 \w The|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w was|strong="H3478"\w* \w told|strong="H5046"\w* \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w had|strong="H3478"\w* \w fled|strong="H1272"\w*; \w and|strong="H3478"\w* \w the|strong="H3588"\w* \w heart|strong="H3824"\w* \w of|strong="H4428"\w* \w Pharaoh|strong="H6547"\w* \w and|strong="H3478"\w* \w of|strong="H4428"\w* \w his|strong="H7971"\w* \w servants|strong="H5650"\w* \w was|strong="H3478"\w* \w changed|strong="H2015"\w* \w toward|strong="H6213"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w*, \w and|strong="H3478"\w* \w they|strong="H3588"\w* said, “\w What|strong="H4100"\w* \w is|strong="H4100"\w* \w this|strong="H2063"\w* \w we|strong="H3068"\w* \w have|strong="H5971"\w* \w done|strong="H6213"\w*, \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H5971"\w* \w let|strong="H7971"\w* \w Israel|strong="H3478"\w* \w go|strong="H7971"\w* \w from|strong="H3478"\w* \w serving|strong="H5647"\w* \w us|strong="H5046"\w*?” +\v 6 \w He|strong="H5971"\w* prepared \w his|strong="H3947"\w* \w chariot|strong="H7393"\w*, \w and|strong="H5971"\w* \w took|strong="H3947"\w* \w his|strong="H3947"\w* \w army|strong="H5971"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*; +\v 7 \w and|strong="H3967"\w* \w he|strong="H3605"\w* \w took|strong="H3947"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w chosen|strong="H3947"\w* \w chariots|strong="H7393"\w*, \w and|strong="H3967"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w chariots|strong="H7393"\w* \w of|strong="H5921"\w* \w Egypt|strong="H4714"\w*, \w with|strong="H5921"\w* \w captains|strong="H7991"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w of|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 8 \w Yahweh|strong="H3068"\w* \w hardened|strong="H2388"\w* \w the|strong="H3068"\w* \w heart|strong="H3820"\w* \w of|strong="H1121"\w* \w Pharaoh|strong="H6547"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H1121"\w* \w he|strong="H3068"\w* \w pursued|strong="H7291"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w for|strong="H3027"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w high|strong="H7311"\w* \w hand|strong="H3027"\w*.\f + \fr 14:8 \ft or, defiantly.\f* +\v 9 \w The|strong="H3605"\w* \w Egyptians|strong="H4713"\w* \w pursued|strong="H7291"\w* \w them|strong="H5921"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w horses|strong="H5483"\w* \w and|strong="H7393"\w* \w chariots|strong="H7393"\w* \w of|strong="H6440"\w* \w Pharaoh|strong="H6547"\w*, \w his|strong="H3605"\w* \w horsemen|strong="H6571"\w*, \w and|strong="H7393"\w* \w his|strong="H3605"\w* \w army|strong="H2428"\w* \w overtook|strong="H5381"\w* \w them|strong="H5921"\w* \w encamping|strong="H2583"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w*, \w beside|strong="H5921"\w* Pihahiroth, \w before|strong="H6440"\w* Baal Zephon. +\p +\v 10 \w When|strong="H3068"\w* \w Pharaoh|strong="H6547"\w* \w came|strong="H7126"\w* \w near|strong="H7126"\w*, \w the|strong="H5375"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w their|strong="H3068"\w* \w eyes|strong="H5869"\w*, \w and|strong="H1121"\w* \w behold|strong="H2009"\w*, \w the|strong="H5375"\w* \w Egyptians|strong="H4713"\w* \w were|strong="H3478"\w* \w marching|strong="H5265"\w* \w after|strong="H2009"\w* \w them|strong="H7126"\w*; \w and|strong="H1121"\w* \w they|strong="H3068"\w* \w were|strong="H3478"\w* \w very|strong="H3966"\w* \w afraid|strong="H3372"\w*. \w The|strong="H5375"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w cried|strong="H6817"\w* \w out|strong="H5265"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*. +\v 11 \w They|strong="H4100"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w Moses|strong="H4872"\w*, “\w Because|strong="H1097"\w* \w there|strong="H1097"\w* \w were|strong="H4714"\w* \w no|strong="H6213"\w* \w graves|strong="H6913"\w* \w in|strong="H6213"\w* \w Egypt|strong="H4714"\w*, \w have|strong="H4057"\w* \w you|strong="H3947"\w* \w taken|strong="H3947"\w* \w us|strong="H6213"\w* \w away|strong="H3947"\w* \w to|strong="H3318"\w* \w die|strong="H4191"\w* \w in|strong="H6213"\w* \w the|strong="H3947"\w* \w wilderness|strong="H4057"\w*? \w Why|strong="H4100"\w* \w have|strong="H4057"\w* \w you|strong="H3947"\w* \w treated|strong="H6213"\w* \w us|strong="H6213"\w* \w this|strong="H2063"\w* \w way|strong="H2063"\w*, \w to|strong="H3318"\w* \w bring|strong="H3318"\w* \w us|strong="H6213"\w* \w out|strong="H3318"\w* \w of|strong="H4057"\w* \w Egypt|strong="H4714"\w*? +\v 12 Isn’t \w this|strong="H2088"\w* \w the|strong="H3588"\w* \w word|strong="H1697"\w* \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w* \w in|strong="H4191"\w* \w Egypt|strong="H4714"\w*, \w saying|strong="H1697"\w*, ‘\w Leave|strong="H2308"\w* \w us|strong="H3588"\w* \w alone|strong="H2308"\w*, \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w may|strong="H4057"\w* \w serve|strong="H5647"\w* \w the|strong="H3588"\w* \w Egyptians|strong="H4714"\w*’? \w For|strong="H3588"\w* \w it|strong="H3588"\w* \w would|strong="H1697"\w* \w have|strong="H1697"\w* \w been|strong="H5647"\w* \w better|strong="H2896"\w* \w for|strong="H3588"\w* \w us|strong="H3588"\w* \w to|strong="H1696"\w* \w serve|strong="H5647"\w* \w the|strong="H3588"\w* \w Egyptians|strong="H4714"\w* \w than|strong="H4480"\w* \w to|strong="H1696"\w* \w die|strong="H4191"\w* \w in|strong="H4191"\w* \w the|strong="H3588"\w* \w wilderness|strong="H4057"\w*.” +\p +\v 13 \w Moses|strong="H4872"\w* said \w to|strong="H5704"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w*, “Don’t \w be|strong="H3808"\w* \w afraid|strong="H3372"\w*. \w Stand|strong="H3320"\w* \w still|strong="H5750"\w*, \w and|strong="H4872"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w salvation|strong="H3444"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w which|strong="H3068"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w work|strong="H6213"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w today|strong="H3117"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w never|strong="H3808"\w* \w again|strong="H5750"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w Egyptians|strong="H4713"\w* \w whom|strong="H5971"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w seen|strong="H7200"\w* \w today|strong="H3117"\w*. +\v 14 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w fight|strong="H3898"\w* \w for|strong="H3068"\w* \w you|strong="H3898"\w*, \w and|strong="H3068"\w* \w you|strong="H3898"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w still|strong="H2790"\w*.” +\p +\v 15 \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, “\w Why|strong="H4100"\w* \w do|strong="H3068"\w* \w you|strong="H4100"\w* \w cry|strong="H6817"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w*? \w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w that|strong="H3068"\w* \w they|strong="H3068"\w* \w go|strong="H3068"\w* \w forward|strong="H5265"\w*. +\v 16 \w Lift|strong="H7311"\w* \w up|strong="H7311"\w* \w your|strong="H5921"\w* \w rod|strong="H4294"\w*, \w and|strong="H1121"\w* \w stretch|strong="H5186"\w* \w out|strong="H5186"\w* \w your|strong="H5921"\w* \w hand|strong="H3027"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w and|strong="H1121"\w* \w divide|strong="H1234"\w* \w it|strong="H5921"\w*. \w Then|strong="H7311"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w shall|strong="H1121"\w* \w go|strong="H3478"\w* \w into|strong="H8432"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w on|strong="H5921"\w* \w dry|strong="H3004"\w* \w ground|strong="H3004"\w*. +\v 17 \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w myself|strong="H3820"\w* \w will|strong="H3820"\w* \w harden|strong="H2388"\w* \w the|strong="H3605"\w* \w hearts|strong="H3820"\w* \w of|strong="H3820"\w* \w the|strong="H3605"\w* \w Egyptians|strong="H4713"\w*, \w and|strong="H7393"\w* \w they|strong="H3605"\w* \w will|strong="H3820"\w* go \w in|strong="H2388"\w* after \w them|strong="H2388"\w*. \w I|strong="H2005"\w* \w will|strong="H3820"\w* get \w myself|strong="H3820"\w* \w honor|strong="H3513"\w* \w over|strong="H2388"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H7393"\w* \w over|strong="H2388"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w armies|strong="H2428"\w*, \w over|strong="H2388"\w* \w his|strong="H3605"\w* \w chariots|strong="H7393"\w*, \w and|strong="H7393"\w* \w over|strong="H2388"\w* \w his|strong="H3605"\w* \w horsemen|strong="H6571"\w*. +\v 18 \w The|strong="H3588"\w* \w Egyptians|strong="H4713"\w* \w shall|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* gotten \w myself|strong="H3045"\w* \w honor|strong="H3513"\w* \w over|strong="H3068"\w* \w Pharaoh|strong="H6547"\w*, \w over|strong="H3068"\w* \w his|strong="H3068"\w* \w chariots|strong="H7393"\w*, \w and|strong="H3068"\w* \w over|strong="H3068"\w* \w his|strong="H3068"\w* \w horsemen|strong="H6571"\w*.” +\v 19 \w The|strong="H6440"\w* \w angel|strong="H4397"\w* \w of|strong="H6440"\w* God, \w who|strong="H3478"\w* \w went|strong="H1980"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w camp|strong="H4264"\w* \w of|strong="H6440"\w* \w Israel|strong="H3478"\w*, \w moved|strong="H1980"\w* \w and|strong="H1980"\w* \w went|strong="H1980"\w* \w behind|strong="H5975"\w* \w them|strong="H6440"\w*; \w and|strong="H1980"\w* \w the|strong="H6440"\w* \w pillar|strong="H5982"\w* \w of|strong="H6440"\w* \w cloud|strong="H6051"\w* \w moved|strong="H1980"\w* \w from|strong="H5265"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*, \w and|strong="H1980"\w* \w stood|strong="H5975"\w* \w behind|strong="H5975"\w* \w them|strong="H6440"\w*. +\v 20 \w It|strong="H7126"\w* \w came|strong="H1961"\w* between \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w of|strong="H4264"\w* \w Egypt|strong="H4714"\w* \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w of|strong="H4264"\w* \w Israel|strong="H3478"\w*. \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w the|strong="H3605"\w* \w cloud|strong="H6051"\w* \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w darkness|strong="H2822"\w*, \w yet|strong="H3808"\w* \w it|strong="H7126"\w* \w gave|strong="H1961"\w* light \w by|strong="H6051"\w* \w night|strong="H3915"\w*. \w One|strong="H2088"\w* didn’t \w come|strong="H1961"\w* \w near|strong="H7126"\w* \w the|strong="H3605"\w* \w other|strong="H2088"\w* \w all|strong="H3605"\w* \w night|strong="H3915"\w*. +\p +\v 21 \w Moses|strong="H4872"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w*, \w and|strong="H4872"\w* \w Yahweh|strong="H3068"\w* caused \w the|strong="H3605"\w* \w sea|strong="H3220"\w* \w to|strong="H3068"\w* \w go|strong="H3212"\w* \w back|strong="H5186"\w* \w by|strong="H3027"\w* \w a|strong="H3068"\w* \w strong|strong="H5794"\w* \w east|strong="H6921"\w* \w wind|strong="H7307"\w* \w all|strong="H3605"\w* \w night|strong="H3915"\w*, \w and|strong="H4872"\w* \w made|strong="H7760"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w* \w dry|strong="H2724"\w* \w land|strong="H2724"\w*, \w and|strong="H4872"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w were|strong="H4325"\w* \w divided|strong="H1234"\w*. +\v 22 \w The|strong="H8432"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w went|strong="H3478"\w* \w into|strong="H8432"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w the|strong="H8432"\w* \w sea|strong="H3220"\w* \w on|strong="H3220"\w* \w the|strong="H8432"\w* \w dry|strong="H3004"\w* \w ground|strong="H3004"\w*; \w and|strong="H1121"\w* \w the|strong="H8432"\w* \w waters|strong="H4325"\w* \w were|strong="H3478"\w* \w a|strong="H3068"\w* \w wall|strong="H2346"\w* \w to|strong="H3478"\w* \w them|strong="H8432"\w* \w on|strong="H3220"\w* \w their|strong="H8432"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w and|strong="H1121"\w* \w on|strong="H3220"\w* \w their|strong="H8432"\w* \w left|strong="H8040"\w*. +\v 23 \w The|strong="H3605"\w* \w Egyptians|strong="H4713"\w* \w pursued|strong="H7291"\w*, \w and|strong="H7393"\w* \w went|strong="H7291"\w* \w in|strong="H8432"\w* \w after|strong="H7291"\w* \w them|strong="H7291"\w* \w into|strong="H8432"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w*: \w all|strong="H3605"\w* \w of|strong="H8432"\w* \w Pharaoh|strong="H6547"\w*’s \w horses|strong="H5483"\w*, \w his|strong="H3605"\w* \w chariots|strong="H7393"\w*, \w and|strong="H7393"\w* \w his|strong="H3605"\w* \w horsemen|strong="H6571"\w*. +\v 24 \w In|strong="H3068"\w* \w the|strong="H3068"\w* \w morning|strong="H1242"\w* watch, \w Yahweh|strong="H3068"\w* \w looked|strong="H8259"\w* \w out|strong="H8259"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w Egyptian|strong="H4713"\w* \w army|strong="H4264"\w* through \w the|strong="H3068"\w* \w pillar|strong="H5982"\w* \w of|strong="H3068"\w* fire \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w cloud|strong="H6051"\w*, \w and|strong="H3068"\w* \w confused|strong="H2000"\w* \w the|strong="H3068"\w* \w Egyptian|strong="H4713"\w* \w army|strong="H4264"\w*. +\v 25 \w He|strong="H3588"\w* \w took|strong="H5493"\w* \w off|strong="H5493"\w* \w their|strong="H3068"\w* \w chariot|strong="H4818"\w* wheels, \w and|strong="H3478"\w* \w they|strong="H3588"\w* \w drove|strong="H5090"\w* \w them|strong="H6440"\w* \w heavily|strong="H3517"\w*; \w so|strong="H5493"\w* \w that|strong="H3588"\w* \w the|strong="H6440"\w* \w Egyptians|strong="H4714"\w* said, “Let’s \w flee|strong="H5127"\w* \w from|strong="H5493"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w fights|strong="H3898"\w* \w for|strong="H3588"\w* \w them|strong="H6440"\w* \w against|strong="H3898"\w* \w the|strong="H6440"\w* \w Egyptians|strong="H4714"\w*!” +\p +\v 26 \w Yahweh|strong="H3068"\w* said \w to|strong="H7725"\w* \w Moses|strong="H4872"\w*, “\w Stretch|strong="H5186"\w* \w out|strong="H5186"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*, \w that|strong="H3068"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w may|strong="H3068"\w* \w come|strong="H7725"\w* \w again|strong="H7725"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w Egyptians|strong="H4714"\w*, \w on|strong="H5921"\w* \w their|strong="H3068"\w* \w chariots|strong="H7393"\w*, \w and|strong="H4872"\w* \w on|strong="H5921"\w* \w their|strong="H3068"\w* \w horsemen|strong="H6571"\w*.” +\v 27 \w Moses|strong="H4872"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*, \w and|strong="H4872"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w its|strong="H5921"\w* \w strength|strong="H3027"\w* \w when|strong="H7725"\w* \w the|strong="H5921"\w* \w morning|strong="H1242"\w* \w appeared|strong="H6437"\w*; \w and|strong="H4872"\w* \w the|strong="H5921"\w* \w Egyptians|strong="H4714"\w* \w fled|strong="H5127"\w* \w against|strong="H5921"\w* \w it|strong="H5921"\w*. \w Yahweh|strong="H3068"\w* \w overthrew|strong="H5287"\w* \w the|strong="H5921"\w* \w Egyptians|strong="H4714"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*. +\v 28 \w The|strong="H3605"\w* \w waters|strong="H4325"\w* \w returned|strong="H7725"\w*, \w and|strong="H7725"\w* \w covered|strong="H3680"\w* \w the|strong="H3605"\w* \w chariots|strong="H7393"\w* \w and|strong="H7725"\w* \w the|strong="H3605"\w* \w horsemen|strong="H6571"\w*, \w even|strong="H5704"\w* \w all|strong="H3605"\w* \w Pharaoh|strong="H6547"\w*’s \w army|strong="H2428"\w* \w that|strong="H3605"\w* \w went|strong="H7725"\w* \w in|strong="H7604"\w* \w after|strong="H5704"\w* \w them|strong="H7725"\w* \w into|strong="H7725"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w*. \w There|strong="H3605"\w* \w remained|strong="H7604"\w* \w not|strong="H3808"\w* \w so|strong="H3808"\w* \w much|strong="H3605"\w* \w as|strong="H5704"\w* \w one|strong="H3605"\w* \w of|strong="H4325"\w* \w them|strong="H7725"\w*. +\v 29 \w But|strong="H3225"\w* \w the|strong="H8432"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w walked|strong="H1980"\w* \w on|strong="H1980"\w* \w dry|strong="H3004"\w* \w land|strong="H3004"\w* \w in|strong="H1980"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w the|strong="H8432"\w* \w sea|strong="H3220"\w*, \w and|strong="H1121"\w* \w the|strong="H8432"\w* \w waters|strong="H4325"\w* \w were|strong="H3478"\w* \w a|strong="H3068"\w* \w wall|strong="H2346"\w* \w to|strong="H1980"\w* \w them|strong="H8432"\w* \w on|strong="H1980"\w* \w their|strong="H8432"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w and|strong="H1121"\w* \w on|strong="H1980"\w* \w their|strong="H8432"\w* \w left|strong="H8040"\w*. +\v 30 \w Thus|strong="H4191"\w* \w Yahweh|strong="H3068"\w* \w saved|strong="H3467"\w* \w Israel|strong="H3478"\w* \w that|strong="H7200"\w* \w day|strong="H3117"\w* \w out|strong="H7200"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w Egyptians|strong="H4714"\w*; \w and|strong="H3478"\w* \w Israel|strong="H3478"\w* \w saw|strong="H7200"\w* \w the|strong="H5921"\w* \w Egyptians|strong="H4714"\w* \w dead|strong="H4191"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w seashore|strong="H3220"\w*. +\v 31 \w Israel|strong="H3478"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w great|strong="H1419"\w* \w work|strong="H6213"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w did|strong="H6213"\w* \w to|strong="H3478"\w* \w the|strong="H7200"\w* \w Egyptians|strong="H4714"\w*, \w and|strong="H4872"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w* \w feared|strong="H3372"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H4872"\w* \w they|strong="H3068"\w* believed \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H4872"\w* \w in|strong="H3478"\w* \w his|strong="H3068"\w* \w servant|strong="H5650"\w* \w Moses|strong="H4872"\w*. +\c 15 +\p +\v 1 \w Then|strong="H4872"\w* \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w sang|strong="H7891"\w* \w this|strong="H2063"\w* \w song|strong="H7892"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H1121"\w* said, +\q1 “\w I|strong="H3588"\w* \w will|strong="H3068"\w* \w sing|strong="H7891"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w triumphed|strong="H1342"\w* \w gloriously|strong="H1342"\w*. +\q2 \w He|strong="H3588"\w* \w has|strong="H3068"\w* \w thrown|strong="H7411"\w* \w the|strong="H3588"\w* \w horse|strong="H5483"\w* \w and|strong="H1121"\w* \w his|strong="H3068"\w* \w rider|strong="H7392"\w* \w into|strong="H3220"\w* \w the|strong="H3588"\w* \w sea|strong="H3220"\w*. +\q1 +\v 2 \w Yah|strong="H3068"\w* \w is|strong="H2088"\w* \w my|strong="H1961"\w* \w strength|strong="H5797"\w* \w and|strong="H5797"\w* \w song|strong="H2176"\w*. +\q2 \w He|strong="H2088"\w* \w has|strong="H1961"\w* \w become|strong="H1961"\w* \w my|strong="H1961"\w* \w salvation|strong="H3444"\w*. +\q1 \w This|strong="H2088"\w* \w is|strong="H2088"\w* \w my|strong="H1961"\w* \w God|strong="H3050"\w*, \w and|strong="H5797"\w* \w I|strong="H2088"\w* \w will|strong="H1961"\w* \w praise|strong="H7311"\w* \w him|strong="H2088"\w*; +\q2 \w my|strong="H1961"\w* father’s \w God|strong="H3050"\w*, \w and|strong="H5797"\w* \w I|strong="H2088"\w* \w will|strong="H1961"\w* \w exalt|strong="H7311"\w* \w him|strong="H2088"\w*. +\q1 +\v 3 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* man \w of|strong="H3068"\w* \w war|strong="H4421"\w*. +\q2 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w*. +\q1 +\v 4 \w He|strong="H3220"\w* \w has|strong="H3220"\w* \w cast|strong="H3384"\w* \w Pharaoh|strong="H6547"\w*’s \w chariots|strong="H4818"\w* \w and|strong="H6547"\w* \w his|strong="H3384"\w* \w army|strong="H2428"\w* \w into|strong="H3220"\w* \w the|strong="H3384"\w* \w sea|strong="H3220"\w*. +\q2 \w His|strong="H3384"\w* \w chosen|strong="H4005"\w* \w captains|strong="H7991"\w* \w are|strong="H7991"\w* \w sunk|strong="H2883"\w* \w in|strong="H3220"\w* \w the|strong="H3384"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w*. +\q1 +\v 5 \w The|strong="H3680"\w* \w deeps|strong="H8415"\w* \w cover|strong="H3680"\w* \w them|strong="H3381"\w*. +\q2 \w They|strong="H3644"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w the|strong="H3680"\w* \w depths|strong="H8415"\w* \w like|strong="H3644"\w* \w a|strong="H3068"\w* stone. +\q1 +\v 6 \w Your|strong="H3068"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w*, \w Yahweh|strong="H3068"\w*, \w is|strong="H3068"\w* glorious \w in|strong="H3068"\w* \w power|strong="H3581"\w*. +\q2 \w Your|strong="H3068"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w*, \w Yahweh|strong="H3068"\w*, dashes \w the|strong="H3068"\w* enemy \w in|strong="H3068"\w* \w pieces|strong="H7492"\w*. +\q1 +\v 7 \w In|strong="H6965"\w* \w the|strong="H7971"\w* \w greatness|strong="H7230"\w* \w of|strong="H7230"\w* \w your|strong="H7971"\w* \w excellency|strong="H1347"\w*, \w you|strong="H7971"\w* \w overthrow|strong="H2040"\w* those who \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H6965"\w* \w you|strong="H7971"\w*. +\q2 \w You|strong="H7971"\w* \w send|strong="H7971"\w* \w out|strong="H7971"\w* \w your|strong="H7971"\w* \w wrath|strong="H2740"\w*. \w It|strong="H7971"\w* consumes \w them|strong="H7971"\w* \w as|strong="H7230"\w* \w stubble|strong="H7179"\w*. +\q1 +\v 8 \w With|strong="H4325"\w* \w the|strong="H5324"\w* \w blast|strong="H7307"\w* \w of|strong="H7307"\w* your nostrils, \w the|strong="H5324"\w* \w waters|strong="H4325"\w* \w were|strong="H4325"\w* \w piled|strong="H6192"\w* \w up|strong="H5324"\w*. +\q2 \w The|strong="H5324"\w* \w floods|strong="H5140"\w* \w stood|strong="H5324"\w* \w upright|strong="H5324"\w* \w as|strong="H3644"\w* \w a|strong="H3068"\w* \w heap|strong="H5067"\w*. +\q2 \w The|strong="H5324"\w* \w deeps|strong="H8415"\w* \w were|strong="H4325"\w* \w congealed|strong="H7087"\w* \w in|strong="H3220"\w* \w the|strong="H5324"\w* \w heart|strong="H3820"\w* \w of|strong="H7307"\w* \w the|strong="H5324"\w* \w sea|strong="H3220"\w*. +\q1 +\v 9 \w The|strong="H3423"\w* enemy said, ‘\w I|strong="H5315"\w* \w will|strong="H2719"\w* \w pursue|strong="H7291"\w*. \w I|strong="H5315"\w* \w will|strong="H2719"\w* \w overtake|strong="H5381"\w*. \w I|strong="H5315"\w* \w will|strong="H2719"\w* \w divide|strong="H2505"\w* \w the|strong="H3423"\w* \w plunder|strong="H7998"\w*. +\q2 \w My|strong="H3027"\w* \w desire|strong="H5315"\w* \w will|strong="H2719"\w* \w be|strong="H3027"\w* \w satisfied|strong="H4390"\w* \w on|strong="H3027"\w* \w them|strong="H3027"\w*. +\q2 \w I|strong="H5315"\w* \w will|strong="H2719"\w* \w draw|strong="H7324"\w* \w my|strong="H3027"\w* \w sword|strong="H2719"\w*. \w My|strong="H3027"\w* \w hand|strong="H3027"\w* \w will|strong="H2719"\w* \w destroy|strong="H3423"\w* \w them|strong="H3027"\w*.’ +\q1 +\v 10 \w You|strong="H4325"\w* \w blew|strong="H5398"\w* \w with|strong="H3680"\w* \w your|strong="H3680"\w* \w wind|strong="H7307"\w*. +\q2 \w The|strong="H3680"\w* \w sea|strong="H3220"\w* \w covered|strong="H3680"\w* \w them|strong="H7307"\w*. +\q2 \w They|strong="H5777"\w* \w sank|strong="H6749"\w* \w like|strong="H7307"\w* \w lead|strong="H5777"\w* \w in|strong="H3220"\w* \w the|strong="H3680"\w* mighty \w waters|strong="H4325"\w*. +\q1 +\v 11 \w Who|strong="H4310"\w* \w is|strong="H3068"\w* \w like|strong="H3644"\w* \w you|strong="H6213"\w*, \w Yahweh|strong="H3068"\w*, \w among|strong="H4310"\w* \w the|strong="H6213"\w* gods? +\q2 \w Who|strong="H4310"\w* \w is|strong="H3068"\w* \w like|strong="H3644"\w* \w you|strong="H6213"\w*, glorious \w in|strong="H3068"\w* \w holiness|strong="H6944"\w*, +\q2 \w fearful|strong="H3372"\w* \w in|strong="H3068"\w* \w praises|strong="H8416"\w*, \w doing|strong="H6213"\w* \w wonders|strong="H6382"\w*? +\q1 +\v 12 \w You|strong="H5186"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w your|strong="H5186"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w*. +\q2 \w The|strong="H5186"\w* earth \w swallowed|strong="H1104"\w* \w them|strong="H1104"\w*. +\q1 +\v 13 “\w You|strong="H5971"\w*, \w in|strong="H5971"\w* \w your|strong="H1350"\w* loving \w kindness|strong="H2617"\w*, \w have|strong="H5971"\w* \w led|strong="H5148"\w* \w the|strong="H5971"\w* \w people|strong="H5971"\w* \w that|strong="H5971"\w* \w you|strong="H5971"\w* \w have|strong="H5971"\w* \w redeemed|strong="H1350"\w*. +\q2 \w You|strong="H5971"\w* \w have|strong="H5971"\w* \w guided|strong="H5148"\w* \w them|strong="H5148"\w* \w in|strong="H5971"\w* \w your|strong="H1350"\w* \w strength|strong="H5797"\w* \w to|strong="H5971"\w* \w your|strong="H1350"\w* \w holy|strong="H6944"\w* \w habitation|strong="H5116"\w*. +\q1 +\v 14 \w The|strong="H8085"\w* \w peoples|strong="H5971"\w* \w have|strong="H5971"\w* \w heard|strong="H8085"\w*. +\q2 \w They|strong="H5971"\w* \w tremble|strong="H7264"\w*. +\q2 \w Pangs|strong="H2427"\w* \w have|strong="H5971"\w* \w taken|strong="H3427"\w* hold \w of|strong="H3427"\w* \w the|strong="H8085"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Philistia|strong="H6429"\w*. +\q1 +\v 15 \w Then|strong="H3605"\w* \w the|strong="H3605"\w* chiefs \w of|strong="H3427"\w* Edom \w were|strong="H3427"\w* dismayed. +\q2 \w Trembling|strong="H7461"\w* takes hold \w of|strong="H3427"\w* \w the|strong="H3605"\w* mighty \w men|strong="H3605"\w* \w of|strong="H3427"\w* \w Moab|strong="H4124"\w*. +\q2 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Canaan|strong="H3667"\w* \w have|strong="H3605"\w* \w melted|strong="H4127"\w* \w away|strong="H4127"\w*. +\q1 +\v 16 \w Terror|strong="H6343"\w* \w and|strong="H3068"\w* \w dread|strong="H6343"\w* \w falls|strong="H5307"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*. +\q2 \w By|strong="H5921"\w* \w the|strong="H5921"\w* \w greatness|strong="H1419"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w arm|strong="H2220"\w* \w they|strong="H3068"\w* \w are|strong="H5971"\w* \w as|strong="H5704"\w* \w still|strong="H1826"\w* \w as|strong="H5704"\w* \w a|strong="H3068"\w* stone, +\q2 \w until|strong="H5704"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w* \w pass|strong="H5674"\w* \w over|strong="H5921"\w*, \w Yahweh|strong="H3068"\w*, +\q2 \w until|strong="H5704"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w you|strong="H5921"\w* \w have|strong="H3068"\w* \w purchased|strong="H7069"\w* \w pass|strong="H5674"\w* \w over|strong="H5921"\w*. +\q2 +\v 17 \w You|strong="H3027"\w* \w will|strong="H3068"\w* bring \w them|strong="H3027"\w* \w in|strong="H3427"\w*, \w and|strong="H3068"\w* \w plant|strong="H5193"\w* \w them|strong="H3027"\w* \w in|strong="H3427"\w* \w the|strong="H3068"\w* \w mountain|strong="H2022"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w inheritance|strong="H5159"\w*, +\q2 \w the|strong="H3068"\w* \w place|strong="H4349"\w*, \w Yahweh|strong="H3068"\w*, \w which|strong="H3068"\w* \w you|strong="H3027"\w* \w have|strong="H3068"\w* \w made|strong="H3559"\w* \w for|strong="H3027"\w* \w yourself|strong="H3559"\w* \w to|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w*: +\q2 \w the|strong="H3068"\w* \w sanctuary|strong="H4720"\w*, \w Lord|strong="H3068"\w*, \w which|strong="H3068"\w* \w your|strong="H3068"\w* \w hands|strong="H3027"\w* \w have|strong="H3068"\w* \w established|strong="H3559"\w*. +\q1 +\v 18 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w reign|strong="H4427"\w* \w forever|strong="H5769"\w* \w and|strong="H3068"\w* \w ever|strong="H5769"\w*.” +\p +\v 19 \w For|strong="H3588"\w* \w the|strong="H5921"\w* \w horses|strong="H5483"\w* \w of|strong="H1121"\w* \w Pharaoh|strong="H6547"\w* \w went|strong="H1980"\w* \w in|strong="H5921"\w* \w with|strong="H1980"\w* \w his|strong="H3068"\w* \w chariots|strong="H7393"\w* \w and|strong="H1121"\w* \w with|strong="H1980"\w* \w his|strong="H3068"\w* \w horsemen|strong="H6571"\w* \w into|strong="H1980"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*, \w and|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w brought|strong="H7725"\w* \w back|strong="H7725"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*; \w but|strong="H3588"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w walked|strong="H1980"\w* \w on|strong="H5921"\w* \w dry|strong="H3004"\w* \w land|strong="H3004"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*. +\v 20 \w Miriam|strong="H4813"\w* \w the|strong="H3605"\w* \w prophetess|strong="H5031"\w*, \w the|strong="H3605"\w* sister \w of|strong="H3027"\w* Aaron, \w took|strong="H3947"\w* \w a|strong="H3068"\w* \w tambourine|strong="H8596"\w* \w in|strong="H3027"\w* \w her|strong="H3605"\w* \w hand|strong="H3027"\w*; \w and|strong="H3027"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* women \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w after|strong="H3318"\w* \w her|strong="H3605"\w* \w with|strong="H3318"\w* \w tambourines|strong="H8596"\w* \w and|strong="H3027"\w* \w with|strong="H3318"\w* \w dances|strong="H4246"\w*. +\v 21 \w Miriam|strong="H4813"\w* \w answered|strong="H6030"\w* \w them|strong="H6030"\w*, +\q1 “\w Sing|strong="H7891"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w triumphed|strong="H1342"\w* \w gloriously|strong="H1342"\w*. +\q1 \w He|strong="H3588"\w* \w has|strong="H3068"\w* \w thrown|strong="H7411"\w* \w the|strong="H3588"\w* \w horse|strong="H5483"\w* \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w rider|strong="H7392"\w* \w into|strong="H3220"\w* \w the|strong="H3588"\w* \w sea|strong="H3220"\w*.” +\p +\v 22 \w Moses|strong="H4872"\w* \w led|strong="H3212"\w* \w Israel|strong="H3478"\w* \w onward|strong="H5265"\w* \w from|strong="H5265"\w* \w the|strong="H3117"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w*, \w and|strong="H4872"\w* \w they|strong="H3117"\w* \w went|strong="H3212"\w* \w out|strong="H3318"\w* \w into|strong="H3212"\w* \w the|strong="H3117"\w* \w wilderness|strong="H4057"\w* \w of|strong="H3117"\w* \w Shur|strong="H7793"\w*; \w and|strong="H4872"\w* \w they|strong="H3117"\w* \w went|strong="H3212"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w* \w in|strong="H3478"\w* \w the|strong="H3117"\w* \w wilderness|strong="H4057"\w*, \w and|strong="H4872"\w* \w found|strong="H4672"\w* \w no|strong="H3808"\w* \w water|strong="H4325"\w*. +\v 23 \w When|strong="H3588"\w* \w they|strong="H1992"\w* \w came|strong="H4325"\w* \w to|strong="H3201"\w* \w Marah|strong="H4785"\w*, \w they|strong="H1992"\w* couldn’t \w drink|strong="H8354"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w of|strong="H4325"\w* \w Marah|strong="H4785"\w*, \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w were|strong="H4325"\w* \w bitter|strong="H4751"\w*. \w Therefore|strong="H3651"\w* \w its|strong="H5921"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w called|strong="H7121"\w* \w Marah|strong="H4785"\w*.\f + \fr 15:23 \ft Marah means bitter.\f* +\v 24 \w The|strong="H5921"\w* \w people|strong="H5971"\w* \w murmured|strong="H3885"\w* \w against|strong="H5921"\w* \w Moses|strong="H4872"\w*, saying, “\w What|strong="H4100"\w* \w shall|strong="H5971"\w* \w we|strong="H3068"\w* \w drink|strong="H8354"\w*?” +\v 25 \w Then|strong="H7760"\w* \w he|strong="H8033"\w* \w cried|strong="H6817"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w Yahweh|strong="H3068"\w* \w showed|strong="H3384"\w* \w him|strong="H7760"\w* \w a|strong="H3068"\w* \w tree|strong="H6086"\w*, \w and|strong="H3068"\w* \w he|strong="H8033"\w* \w threw|strong="H7993"\w* \w it|strong="H7760"\w* \w into|strong="H4941"\w* \w the|strong="H3068"\w* \w waters|strong="H4325"\w*, \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w waters|strong="H4325"\w* \w were|strong="H4325"\w* \w made|strong="H7760"\w* \w sweet|strong="H4985"\w*. \w There|strong="H8033"\w* \w he|strong="H8033"\w* \w made|strong="H7760"\w* \w a|strong="H3068"\w* \w statute|strong="H2706"\w* \w and|strong="H3068"\w* \w an|strong="H7760"\w* \w ordinance|strong="H4941"\w* \w for|strong="H3068"\w* \w them|strong="H7760"\w*, \w and|strong="H3068"\w* \w there|strong="H8033"\w* \w he|strong="H8033"\w* \w tested|strong="H5254"\w* \w them|strong="H7760"\w*. +\v 26 \w He|strong="H3588"\w* \w said|strong="H8085"\w*, “\w If|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w diligently|strong="H8085"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w right|strong="H3477"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w eyes|strong="H5869"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w pay|strong="H7760"\w* \w attention|strong="H8085"\w* \w to|strong="H3068"\w* \w his|strong="H3605"\w* \w commandments|strong="H4687"\w*, \w and|strong="H3068"\w* \w keep|strong="H8104"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w statutes|strong="H2706"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w put|strong="H7760"\w* \w none|strong="H3808"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w diseases|strong="H4245"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w* \w which|strong="H3068"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w put|strong="H7760"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w Egyptians|strong="H4714"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H3605"\w* \w heals|strong="H7495"\w* \w you|strong="H3588"\w*.” +\p +\v 27 \w They|strong="H8033"\w* \w came|strong="H4325"\w* \w to|strong="H5921"\w* Elim, \w where|strong="H8033"\w* \w there|strong="H8033"\w* \w were|strong="H4325"\w* \w twelve|strong="H8147"\w* springs \w of|strong="H5869"\w* \w water|strong="H4325"\w* \w and|strong="H5869"\w* \w seventy|strong="H7657"\w* \w palm|strong="H8558"\w* \w trees|strong="H8558"\w*. \w They|strong="H8033"\w* \w encamped|strong="H2583"\w* \w there|strong="H8033"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w*. +\c 16 +\p +\v 1 \w They|strong="H3117"\w* \w took|strong="H3318"\w* \w their|strong="H3605"\w* \w journey|strong="H5265"\w* \w from|strong="H5265"\w* Elim, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w came|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* \w of|strong="H1121"\w* \w Sin|strong="H5512"\w*, \w which|strong="H3478"\w* \w is|strong="H3117"\w* between Elim \w and|strong="H1121"\w* \w Sinai|strong="H5514"\w*, \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w fifteenth|strong="H2568"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w second|strong="H8145"\w* \w month|strong="H2320"\w* \w after|strong="H3117"\w* \w their|strong="H3605"\w* \w departing|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*. +\v 2 \w The|strong="H3605"\w* \w whole|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w murmured|strong="H3885"\w* \w against|strong="H5921"\w* \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* \w against|strong="H5921"\w* Aaron \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w*; +\v 3 \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w them|strong="H5414"\w*, “\w We|strong="H3588"\w* \w wish|strong="H4310"\w* \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w had|strong="H3068"\w* \w died|strong="H4191"\w* \w by|strong="H3027"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w when|strong="H3588"\w* \w we|strong="H3068"\w* \w sat|strong="H3427"\w* \w by|strong="H3027"\w* \w the|strong="H3605"\w* \w meat|strong="H1320"\w* \w pots|strong="H5518"\w*, \w when|strong="H3588"\w* \w we|strong="H3068"\w* ate \w our|strong="H3068"\w* \w fill|strong="H7648"\w* \w of|strong="H1121"\w* \w bread|strong="H3899"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w brought|strong="H3318"\w* \w us|strong="H5414"\w* \w out|strong="H3318"\w* \w into|strong="H5921"\w* \w this|strong="H2088"\w* \w wilderness|strong="H4057"\w* \w to|strong="H3318"\w* \w kill|strong="H4191"\w* \w this|strong="H2088"\w* \w whole|strong="H3605"\w* \w assembly|strong="H6951"\w* \w with|strong="H3068"\w* \w hunger|strong="H7458"\w*.” +\p +\v 4 \w Then|strong="H3318"\w* \w Yahweh|strong="H3068"\w* \w said|strong="H1697"\w* \w to|strong="H3318"\w* \w Moses|strong="H4872"\w*, “\w Behold|strong="H2005"\w*, \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w rain|strong="H4305"\w* \w bread|strong="H3899"\w* \w from|strong="H4480"\w* \w the|strong="H3068"\w* \w sky|strong="H8064"\w* \w for|strong="H3068"\w* \w you|strong="H3117"\w*, \w and|strong="H4872"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w* \w shall|strong="H3068"\w* \w go|strong="H3212"\w* \w out|strong="H3318"\w* \w and|strong="H4872"\w* \w gather|strong="H3950"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w*’s \w portion|strong="H1697"\w* \w every|strong="H3212"\w* \w day|strong="H3117"\w*, \w that|strong="H5971"\w* \w I|strong="H3117"\w* \w may|strong="H3068"\w* \w test|strong="H5254"\w* \w them|strong="H3318"\w*, \w whether|strong="H4480"\w* \w they|strong="H3117"\w* \w will|strong="H3068"\w* \w walk|strong="H3212"\w* \w in|strong="H3068"\w* \w my|strong="H3068"\w* \w law|strong="H8451"\w* \w or|strong="H3808"\w* \w not|strong="H3808"\w*. +\v 5 \w It|strong="H5921"\w* \w shall|strong="H3117"\w* \w come|strong="H1961"\w* \w to|strong="H1961"\w* \w pass|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w sixth|strong="H8345"\w* \w day|strong="H3117"\w*, \w that|strong="H3117"\w* \w they|strong="H3117"\w* \w shall|strong="H3117"\w* \w prepare|strong="H3559"\w* \w that|strong="H3117"\w* \w which|strong="H3117"\w* \w they|strong="H3117"\w* \w bring|strong="H1961"\w* \w in|strong="H5921"\w*, \w and|strong="H3117"\w* \w it|strong="H5921"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w twice|strong="H4932"\w* \w as|strong="H3117"\w* \w much|strong="H4932"\w* \w as|strong="H3117"\w* \w they|strong="H3117"\w* \w gather|strong="H3950"\w* \w daily|strong="H3117"\w*.” +\p +\v 6 \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* Aaron \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, “\w At|strong="H3478"\w* \w evening|strong="H6153"\w*, \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w brought|strong="H3318"\w* \w you|strong="H3588"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w the|strong="H3605"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*. +\v 7 \w In|strong="H5921"\w* \w the|strong="H5921"\w* \w morning|strong="H1242"\w*, \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w see|strong="H7200"\w* \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w*; \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w hears|strong="H8085"\w* \w your|strong="H3068"\w* \w murmurings|strong="H8519"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*. \w Who|strong="H3068"\w* \w are|strong="H4100"\w* \w we|strong="H3068"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w murmur|strong="H3885"\w* \w against|strong="H5921"\w* \w us|strong="H5921"\w*?” +\v 8 \w Moses|strong="H4872"\w* \w said|strong="H8085"\w*, “\w Now|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w you|strong="H3588"\w* \w meat|strong="H1320"\w* \w to|strong="H3068"\w* \w eat|strong="H3899"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w evening|strong="H6153"\w*, \w and|strong="H4872"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w morning|strong="H1242"\w* \w bread|strong="H3899"\w* \w to|strong="H3068"\w* \w satisfy|strong="H7646"\w* \w you|strong="H3588"\w*, \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w hears|strong="H8085"\w* \w your|strong="H3068"\w* \w murmurings|strong="H8519"\w* \w which|strong="H3068"\w* \w you|strong="H3588"\w* murmur \w against|strong="H5921"\w* \w him|strong="H5414"\w*. \w And|strong="H4872"\w* \w who|strong="H3068"\w* \w are|strong="H4100"\w* \w we|strong="H3068"\w*? \w Your|strong="H3068"\w* \w murmurings|strong="H8519"\w* \w are|strong="H4100"\w* \w not|strong="H3808"\w* \w against|strong="H5921"\w* \w us|strong="H5414"\w*, \w but|strong="H3588"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*.” +\v 9 \w Moses|strong="H4872"\w* \w said|strong="H8085"\w* \w to|strong="H3478"\w* Aaron, “\w Tell|strong="H8085"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, ‘\w Come|strong="H7126"\w* \w close|strong="H7126"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w heard|strong="H8085"\w* \w your|strong="H3068"\w* \w murmurings|strong="H8519"\w*.’” +\v 10 \w As|strong="H1961"\w* Aaron \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w they|strong="H3068"\w* \w looked|strong="H7200"\w* \w toward|strong="H6437"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w*, \w and|strong="H1121"\w* \w behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w appeared|strong="H7200"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w cloud|strong="H6051"\w*. +\v 11 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 12 “\w I|strong="H3588"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w murmurings|strong="H8519"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H8085"\w*, \w saying|strong="H1696"\w*, ‘\w At|strong="H3478"\w* \w evening|strong="H6153"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w eat|strong="H3899"\w* \w meat|strong="H1320"\w*, \w and|strong="H1121"\w* \w in|strong="H3478"\w* \w the|strong="H8085"\w* \w morning|strong="H1242"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w filled|strong="H7646"\w* \w with|strong="H7646"\w* \w bread|strong="H3899"\w*. \w Then|strong="H1696"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*.’” +\p +\v 13 \w In|strong="H5927"\w* \w the|strong="H3680"\w* \w evening|strong="H6153"\w*, \w quail|strong="H7958"\w* \w came|strong="H1961"\w* \w up|strong="H5927"\w* \w and|strong="H1242"\w* \w covered|strong="H3680"\w* \w the|strong="H3680"\w* \w camp|strong="H4264"\w*; \w and|strong="H1242"\w* \w in|strong="H5927"\w* \w the|strong="H3680"\w* \w morning|strong="H1242"\w* \w the|strong="H3680"\w* \w dew|strong="H2919"\w* \w lay|strong="H7902"\w* \w around|strong="H5439"\w* \w the|strong="H3680"\w* \w camp|strong="H4264"\w*. +\v 14 \w When|strong="H5927"\w* \w the|strong="H6440"\w* \w dew|strong="H2919"\w* \w that|strong="H5927"\w* \w lay|strong="H7902"\w* had \w gone|strong="H5927"\w*, \w behold|strong="H2009"\w*, \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w wilderness|strong="H4057"\w* \w was|strong="H6440"\w* \w a|strong="H3068"\w* \w small|strong="H1851"\w* \w round|strong="H7902"\w* \w thing|strong="H2636"\w*, \w small|strong="H1851"\w* \w as|strong="H5927"\w* \w the|strong="H6440"\w* \w frost|strong="H3713"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w*. +\v 15 \w When|strong="H3588"\w* \w the|strong="H7200"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w saw|strong="H7200"\w* \w it|strong="H5414"\w*, \w they|strong="H3588"\w* said \w to|strong="H3478"\w* \w one|strong="H3808"\w* \w another|strong="H7200"\w*, “\w What|strong="H4100"\w* \w is|strong="H3068"\w* \w it|strong="H5414"\w*?” \w For|strong="H3588"\w* \w they|strong="H3588"\w* didn’t \w know|strong="H3045"\w* \w what|strong="H4100"\w* \w it|strong="H5414"\w* \w was|strong="H3068"\w*. \w Moses|strong="H4872"\w* said \w to|strong="H3478"\w* \w them|strong="H5414"\w*, “\w It|strong="H5414"\w* \w is|strong="H3068"\w* \w the|strong="H7200"\w* \w bread|strong="H3899"\w* \w which|strong="H1931"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H3588"\w* \w to|strong="H3478"\w* \w eat|strong="H3899"\w*. +\v 16 \w This|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H3947"\w* \w thing|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w*: ‘\w Gather|strong="H3950"\w* \w of|strong="H3068"\w* \w it|strong="H3947"\w* everyone \w according|strong="H6310"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* eating; \w an|strong="H3947"\w* \w omer|strong="H6016"\w*\f + \fr 16:16 \ft An omer is about 2.2 liters or about 2.3 quarts\f* \w a|strong="H3068"\w* \w head|strong="H1538"\w*, \w according|strong="H6310"\w* \w to|strong="H3068"\w* \w the|strong="H3947"\w* \w number|strong="H4557"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w persons|strong="H5315"\w*, \w you|strong="H6680"\w* \w shall|strong="H3068"\w* \w take|strong="H3947"\w* \w it|strong="H3947"\w*, \w every|strong="H3947"\w* \w man|strong="H5315"\w* \w for|strong="H3068"\w* \w those|strong="H4480"\w* \w who|strong="H3068"\w* \w are|strong="H1697"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* tent.’” +\v 17 \w The|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*, \w and|strong="H1121"\w* some \w gathered|strong="H3950"\w* \w more|strong="H7235"\w*, some \w less|strong="H4591"\w*. +\v 18 \w When|strong="H7235"\w* \w they|strong="H3808"\w* \w measured|strong="H4058"\w* \w it|strong="H4058"\w* \w with|strong="H6310"\w* an \w omer|strong="H6016"\w*, \w he|strong="H3808"\w* \w who|strong="H3808"\w* \w gathered|strong="H3950"\w* \w much|strong="H7235"\w* \w had|strong="H7235"\w* \w nothing|strong="H3808"\w* \w over|strong="H5736"\w*, \w and|strong="H6310"\w* \w he|strong="H3808"\w* \w who|strong="H3808"\w* \w gathered|strong="H3950"\w* \w little|strong="H4591"\w* \w had|strong="H7235"\w* \w no|strong="H3808"\w* \w lack|strong="H2637"\w*. \w They|strong="H3808"\w* \w each|strong="H4058"\w* \w gathered|strong="H3950"\w* \w according|strong="H6310"\w* \w to|strong="H6310"\w* \w his|strong="H3808"\w* eating. +\v 19 \w Moses|strong="H4872"\w* said \w to|strong="H5704"\w* \w them|strong="H5704"\w*, “\w Let|strong="H3498"\w* \w no|strong="H4480"\w* \w one|strong="H4480"\w* \w leave|strong="H3498"\w* \w of|strong="H4480"\w* \w it|strong="H1242"\w* \w until|strong="H5704"\w* \w the|strong="H4480"\w* \w morning|strong="H1242"\w*.” +\v 20 Notwithstanding \w they|strong="H3808"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H5704"\w* \w Moses|strong="H4872"\w*, \w but|strong="H3808"\w* \w some|strong="H4480"\w* \w of|strong="H4480"\w* \w them|strong="H5921"\w* \w left|strong="H3498"\w* \w of|strong="H4480"\w* \w it|strong="H5921"\w* \w until|strong="H5704"\w* \w the|strong="H5921"\w* \w morning|strong="H1242"\w*, \w so|strong="H4480"\w* \w it|strong="H5921"\w* \w bred|strong="H7311"\w* \w worms|strong="H8438"\w* \w and|strong="H4872"\w* \w became|strong="H7107"\w* foul; \w and|strong="H4872"\w* \w Moses|strong="H4872"\w* \w was|strong="H4872"\w* \w angry|strong="H7107"\w* \w with|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 21 \w They|strong="H6310"\w* \w gathered|strong="H3950"\w* \w it|strong="H1242"\w* \w morning|strong="H1242"\w* \w by|strong="H1242"\w* \w morning|strong="H1242"\w*, everyone \w according|strong="H6310"\w* \w to|strong="H6310"\w* \w his|strong="H6310"\w* eating. \w When|strong="H6310"\w* \w the|strong="H1242"\w* \w sun|strong="H8121"\w* \w grew|strong="H2552"\w* \w hot|strong="H2552"\w*, \w it|strong="H1242"\w* \w melted|strong="H4549"\w*. +\v 22 \w On|strong="H3117"\w* \w the|strong="H3605"\w* \w sixth|strong="H8345"\w* \w day|strong="H3117"\w*, \w they|strong="H3117"\w* \w gathered|strong="H3950"\w* \w twice|strong="H8147"\w* \w as|strong="H3117"\w* \w much|strong="H4932"\w* \w bread|strong="H3899"\w*, \w two|strong="H8147"\w* \w omers|strong="H6016"\w* \w for|strong="H3117"\w* \w each|strong="H3605"\w* \w one|strong="H3605"\w*; \w and|strong="H4872"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w rulers|strong="H5387"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w came|strong="H1961"\w* \w and|strong="H4872"\w* \w told|strong="H5046"\w* \w Moses|strong="H4872"\w*. +\v 23 \w He|strong="H1931"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H5704"\w*, “\w This|strong="H1931"\w* \w is|strong="H3068"\w* \w that|strong="H3605"\w* \w which|strong="H1931"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w*, ‘\w Tomorrow|strong="H4279"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w solemn|strong="H7677"\w* \w rest|strong="H7677"\w*, \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w Sabbath|strong="H7676"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*. \w Bake|strong="H1310"\w* \w that|strong="H3605"\w* \w which|strong="H1931"\w* \w you|strong="H3605"\w* want \w to|strong="H1696"\w* \w bake|strong="H1310"\w*, \w and|strong="H3068"\w* \w boil|strong="H1310"\w* \w that|strong="H3605"\w* \w which|strong="H1931"\w* \w you|strong="H3605"\w* want \w to|strong="H1696"\w* \w boil|strong="H1310"\w*; \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* remains \w over|strong="H5736"\w* \w lay|strong="H3240"\w* \w up|strong="H3240"\w* \w for|strong="H5704"\w* \w yourselves|strong="H3605"\w* \w to|strong="H1696"\w* \w be|strong="H3068"\w* \w kept|strong="H4931"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w*.’” +\v 24 \w They|strong="H3808"\w* \w laid|strong="H3240"\w* \w it|strong="H1242"\w* \w up|strong="H3240"\w* \w until|strong="H5704"\w* \w the|strong="H5704"\w* \w morning|strong="H1242"\w*, \w as|strong="H5704"\w* \w Moses|strong="H4872"\w* \w ordered|strong="H6680"\w*, \w and|strong="H4872"\w* \w it|strong="H1242"\w* didn’t \w become|strong="H1961"\w* foul, \w and|strong="H4872"\w* \w there|strong="H1961"\w* \w were|strong="H1961"\w* \w no|strong="H3808"\w* \w worms|strong="H7415"\w* \w in|strong="H4872"\w* \w it|strong="H1242"\w*. +\v 25 \w Moses|strong="H4872"\w* said, “Eat \w that|strong="H3588"\w* \w today|strong="H3117"\w*, \w for|strong="H3588"\w* \w today|strong="H3117"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w Sabbath|strong="H7676"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w Today|strong="H3117"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w find|strong="H4672"\w* \w it|strong="H3588"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w*. +\v 26 \w Six|strong="H8337"\w* \w days|strong="H3117"\w* \w you|strong="H3117"\w* \w shall|strong="H3117"\w* \w gather|strong="H3950"\w* \w it|strong="H1961"\w*, \w but|strong="H3808"\w* \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w is|strong="H3117"\w* \w the|strong="H3117"\w* \w Sabbath|strong="H7676"\w*. \w In|strong="H3117"\w* \w it|strong="H1961"\w* \w there|strong="H1961"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w none|strong="H3808"\w*.” +\v 27 \w On|strong="H3117"\w* \w the|strong="H4480"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*, \w some|strong="H4480"\w* \w of|strong="H3117"\w* \w the|strong="H4480"\w* \w people|strong="H5971"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w gather|strong="H3950"\w*, \w and|strong="H3117"\w* \w they|strong="H3117"\w* \w found|strong="H4672"\w* \w none|strong="H3808"\w*. +\v 28 \w Yahweh|strong="H3068"\w* said \w to|strong="H5704"\w* \w Moses|strong="H4872"\w*, “\w How|strong="H5704"\w* \w long|strong="H5704"\w* \w do|strong="H3068"\w* \w you|strong="H5704"\w* \w refuse|strong="H3985"\w* \w to|strong="H5704"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w commandments|strong="H4687"\w* \w and|strong="H4872"\w* \w my|strong="H8104"\w* \w laws|strong="H8451"\w*? +\v 29 \w Behold|strong="H7200"\w*, \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H3588"\w* \w the|strong="H5921"\w* \w Sabbath|strong="H7676"\w*, \w therefore|strong="H3651"\w* \w he|strong="H1931"\w* \w gives|strong="H5414"\w* \w you|strong="H3588"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w sixth|strong="H8345"\w* \w day|strong="H3117"\w* \w the|strong="H5921"\w* \w bread|strong="H3899"\w* \w of|strong="H3068"\w* \w two|strong="H3427"\w* \w days|strong="H3117"\w*. Everyone \w stay|strong="H3427"\w* \w in|strong="H3427"\w* \w his|strong="H5414"\w* \w place|strong="H4725"\w*. \w Let|strong="H5414"\w* \w no|strong="H5414"\w* \w one|strong="H1931"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w his|strong="H5414"\w* \w place|strong="H4725"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*.” +\v 30 \w So|strong="H7673"\w* \w the|strong="H3117"\w* \w people|strong="H5971"\w* \w rested|strong="H7673"\w* \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*. +\p +\v 31 \w The|strong="H7121"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w called|strong="H7121"\w* its \w name|strong="H8034"\w* “\w Manna|strong="H4478"\w*”,\f + \fr 16:31 \ft “Manna” means “What is it?”\f* \w and|strong="H3478"\w* \w it|strong="H1931"\w* \w was|strong="H8034"\w* \w like|strong="H1004"\w* \w coriander|strong="H1407"\w* \w seed|strong="H2233"\w*, \w white|strong="H3836"\w*; \w and|strong="H3478"\w* its \w taste|strong="H2940"\w* \w was|strong="H8034"\w* \w like|strong="H1004"\w* \w wafers|strong="H6838"\w* \w with|strong="H1004"\w* \w honey|strong="H1706"\w*. +\v 32 \w Moses|strong="H4872"\w* \w said|strong="H1697"\w*, “\w This|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H7200"\w* \w thing|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w*, ‘Let \w an|strong="H7200"\w* omer-full \w of|strong="H3068"\w* \w it|strong="H4393"\w* \w be|strong="H1697"\w* \w kept|strong="H4931"\w* \w throughout|strong="H1755"\w* \w your|strong="H3068"\w* \w generations|strong="H1755"\w*, \w that|strong="H7200"\w* \w they|strong="H3068"\w* \w may|strong="H3068"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w bread|strong="H3899"\w* \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w I|strong="H1697"\w* fed \w you|strong="H6680"\w* \w in|strong="H3068"\w* \w the|strong="H7200"\w* \w wilderness|strong="H4057"\w*, \w when|strong="H7200"\w* \w I|strong="H1697"\w* \w brought|strong="H3318"\w* \w you|strong="H6680"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H7200"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*.’” +\v 33 \w Moses|strong="H4872"\w* said \w to|strong="H3068"\w* Aaron, “\w Take|strong="H3947"\w* \w a|strong="H3068"\w* \w pot|strong="H6803"\w*, \w and|strong="H4872"\w* \w put|strong="H5414"\w* \w an|strong="H5414"\w* omer-full \w of|strong="H3068"\w* \w manna|strong="H4478"\w* \w in|strong="H3068"\w* \w it|strong="H5414"\w*, \w and|strong="H4872"\w* \w lay|strong="H5414"\w* \w it|strong="H5414"\w* \w up|strong="H5414"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w kept|strong="H4931"\w* \w throughout|strong="H1755"\w* \w your|strong="H3068"\w* \w generations|strong="H1755"\w*.” +\v 34 \w As|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*, \w so|strong="H6680"\w* Aaron \w laid|strong="H3240"\w* \w it|strong="H6440"\w* \w up|strong="H3240"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w Testimony|strong="H5715"\w*, \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w kept|strong="H4931"\w*. +\v 35 \w The|strong="H5704"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* ate \w the|strong="H5704"\w* \w manna|strong="H4478"\w* forty \w years|strong="H8141"\w*, \w until|strong="H5704"\w* \w they|strong="H8141"\w* \w came|strong="H3478"\w* \w to|strong="H5704"\w* \w an|strong="H3427"\w* \w inhabited|strong="H3427"\w* land. \w They|strong="H8141"\w* ate \w the|strong="H5704"\w* \w manna|strong="H4478"\w* \w until|strong="H5704"\w* \w they|strong="H8141"\w* \w came|strong="H3478"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w borders|strong="H7097"\w* \w of|strong="H1121"\w* \w the|strong="H5704"\w* land \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*. +\v 36 Now an \w omer|strong="H6016"\w* \w is|strong="H1931"\w* \w one|strong="H1931"\w* \w tenth|strong="H6224"\w* \w of|strong="H1931"\w* an ephah.\f + \fr 16:36 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* +\c 17 +\p +\v 1 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* \w of|strong="H1121"\w* \w Sin|strong="H5512"\w*, starting \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w commandment|strong="H6310"\w*, \w and|strong="H1121"\w* \w encamped|strong="H2583"\w* \w in|strong="H5921"\w* \w Rephidim|strong="H7508"\w*; \w but|strong="H5971"\w* \w there|strong="H3605"\w* \w was|strong="H3068"\w* \w no|strong="H3605"\w* \w water|strong="H4325"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w to|strong="H3478"\w* \w drink|strong="H8354"\w*. +\v 2 \w Therefore|strong="H4872"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w* \w quarreled|strong="H7378"\w* \w with|strong="H5973"\w* \w Moses|strong="H4872"\w*, \w and|strong="H4872"\w* said, “\w Give|strong="H5414"\w* \w us|strong="H5414"\w* \w water|strong="H4325"\w* \w to|strong="H3068"\w* \w drink|strong="H8354"\w*.” +\p \w Moses|strong="H4872"\w* said \w to|strong="H3068"\w* \w them|strong="H5414"\w*, “\w Why|strong="H4100"\w* \w do|strong="H3068"\w* \w you|strong="H5414"\w* \w quarrel|strong="H7378"\w* \w with|strong="H5973"\w* \w me|strong="H5414"\w*? \w Why|strong="H4100"\w* \w do|strong="H3068"\w* \w you|strong="H5414"\w* \w test|strong="H5254"\w* \w Yahweh|strong="H3068"\w*?” +\p +\v 3 \w The|strong="H5921"\w* \w people|strong="H5971"\w* \w were|strong="H5971"\w* \w thirsty|strong="H6770"\w* \w for|strong="H5921"\w* \w water|strong="H4325"\w* \w there|strong="H8033"\w*; \w so|strong="H5927"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w murmured|strong="H3885"\w* \w against|strong="H5921"\w* \w Moses|strong="H4872"\w*, \w and|strong="H1121"\w* said, “\w Why|strong="H4100"\w* \w have|strong="H5971"\w* \w you|strong="H5921"\w* \w brought|strong="H5927"\w* \w us|strong="H5921"\w* \w up|strong="H5927"\w* \w out|strong="H5921"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w to|strong="H4191"\w* \w kill|strong="H4191"\w* \w us|strong="H5921"\w*, \w our|strong="H5921"\w* \w children|strong="H1121"\w*, \w and|strong="H1121"\w* \w our|strong="H5921"\w* \w livestock|strong="H4735"\w* \w with|strong="H5921"\w* \w thirst|strong="H6772"\w*?” +\p +\v 4 \w Moses|strong="H4872"\w* \w cried|strong="H6817"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, saying, “\w What|strong="H4100"\w* \w shall|strong="H3068"\w* \w I|strong="H2088"\w* \w do|strong="H6213"\w* \w with|strong="H3068"\w* \w these|strong="H2088"\w* \w people|strong="H5971"\w*? \w They|strong="H3068"\w* \w are|strong="H5971"\w* \w almost|strong="H4592"\w* \w ready|strong="H6213"\w* \w to|strong="H3068"\w* \w stone|strong="H5619"\w* \w me|strong="H6213"\w*.” +\p +\v 5 \w Yahweh|strong="H3068"\w* said \w to|strong="H1980"\w* \w Moses|strong="H4872"\w*, “\w Walk|strong="H1980"\w* \w on|strong="H1980"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*, \w and|strong="H1980"\w* \w take|strong="H3947"\w* \w the|strong="H6440"\w* \w elders|strong="H2205"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w with|strong="H1980"\w* \w you|strong="H6440"\w*, \w and|strong="H1980"\w* \w take|strong="H3947"\w* \w the|strong="H6440"\w* \w rod|strong="H4294"\w* \w in|strong="H1980"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w with|strong="H1980"\w* \w which|strong="H3068"\w* \w you|strong="H6440"\w* \w struck|strong="H5221"\w* \w the|strong="H6440"\w* \w Nile|strong="H2975"\w*, \w and|strong="H1980"\w* \w go|strong="H1980"\w*. +\v 6 \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H5971"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w there|strong="H8033"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w rock|strong="H6697"\w* \w in|strong="H5921"\w* \w Horeb|strong="H2722"\w*. \w You|strong="H6440"\w* \w shall|strong="H5971"\w* \w strike|strong="H5221"\w* \w the|strong="H6440"\w* \w rock|strong="H6697"\w*, \w and|strong="H4872"\w* \w water|strong="H4325"\w* \w will|strong="H5971"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H6440"\w* \w it|strong="H5921"\w*, \w that|strong="H5971"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w may|strong="H5971"\w* \w drink|strong="H8354"\w*.” \w Moses|strong="H4872"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w sight|strong="H5869"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w elders|strong="H2205"\w* \w of|strong="H6440"\w* \w Israel|strong="H3478"\w*. +\v 7 \w He|strong="H3068"\w* \w called|strong="H7121"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w Massah|strong="H4532"\w*,\f + \fr 17:7 \ft Massah means testing. \f* \w and|strong="H1121"\w* \w Meribah|strong="H4809"\w*,\f + \fr 17:7 \ft Meribah means quarreling.\f* \w because|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* quarreled, \w and|strong="H1121"\w* \w because|strong="H5921"\w* \w they|strong="H3068"\w* \w tested|strong="H5254"\w* \w Yahweh|strong="H3068"\w*, saying, “\w Is|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w among|strong="H7130"\w* \w us|strong="H5921"\w*, \w or|strong="H1121"\w* \w not|strong="H1121"\w*?” +\p +\v 8 \w Then|strong="H3478"\w* \w Amalek|strong="H6002"\w* \w came|strong="H3478"\w* \w and|strong="H3478"\w* \w fought|strong="H3898"\w* \w with|strong="H5973"\w* \w Israel|strong="H3478"\w* \w in|strong="H3478"\w* \w Rephidim|strong="H7508"\w*. +\v 9 \w Moses|strong="H4872"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w Joshua|strong="H3091"\w*, “Choose \w men|strong="H7218"\w* \w for|strong="H5921"\w* \w us|strong="H5921"\w*, \w and|strong="H4872"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w fight|strong="H3898"\w* \w with|strong="H5921"\w* \w Amalek|strong="H6002"\w*. \w Tomorrow|strong="H4279"\w* \w I|strong="H5921"\w* \w will|strong="H3027"\w* \w stand|strong="H5324"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w top|strong="H7218"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w hill|strong="H1389"\w* \w with|strong="H5921"\w* \w God|strong="H3027"\w*’s \w rod|strong="H4294"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* \w hand|strong="H3027"\w*.” +\v 10 \w So|strong="H6213"\w* \w Joshua|strong="H3091"\w* \w did|strong="H6213"\w* \w as|strong="H6213"\w* \w Moses|strong="H4872"\w* \w had|strong="H4872"\w* \w told|strong="H6213"\w* \w him|strong="H6213"\w*, \w and|strong="H4872"\w* \w fought|strong="H3898"\w* \w with|strong="H6213"\w* \w Amalek|strong="H6002"\w*; \w and|strong="H4872"\w* \w Moses|strong="H4872"\w*, Aaron, \w and|strong="H4872"\w* \w Hur|strong="H2354"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H6213"\w* \w top|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H6213"\w* \w hill|strong="H1389"\w*. +\v 11 \w When|strong="H1961"\w* \w Moses|strong="H4872"\w* \w held|strong="H4872"\w* \w up|strong="H7311"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w*, \w Israel|strong="H3478"\w* \w prevailed|strong="H1396"\w*. \w When|strong="H1961"\w* \w he|strong="H3027"\w* \w let|strong="H5117"\w* \w down|strong="H5117"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w*, \w Amalek|strong="H6002"\w* \w prevailed|strong="H1396"\w*. +\v 12 \w But|strong="H1961"\w* \w Moses|strong="H4872"\w*’ \w hands|strong="H3027"\w* \w were|strong="H1961"\w* \w heavy|strong="H3515"\w*; \w so|strong="H3947"\w* \w they|strong="H5921"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* stone, \w and|strong="H4872"\w* \w put|strong="H7760"\w* \w it|strong="H7760"\w* \w under|strong="H8478"\w* \w him|strong="H5921"\w*, \w and|strong="H4872"\w* \w he|strong="H5704"\w* \w sat|strong="H3427"\w* \w on|strong="H5921"\w* \w it|strong="H7760"\w*. Aaron \w and|strong="H4872"\w* \w Hur|strong="H2354"\w* \w held|strong="H8551"\w* \w up|strong="H7760"\w* \w his|strong="H7760"\w* \w hands|strong="H3027"\w*, \w the|strong="H5921"\w* \w one|strong="H2088"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w one|strong="H2088"\w* \w side|strong="H2088"\w*, \w and|strong="H4872"\w* \w the|strong="H5921"\w* \w other|strong="H2088"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w other|strong="H2088"\w* \w side|strong="H2088"\w*. \w His|strong="H7760"\w* \w hands|strong="H3027"\w* \w were|strong="H1961"\w* steady \w until|strong="H5704"\w* \w sunset|strong="H8121"\w*. +\v 13 \w Joshua|strong="H3091"\w* defeated \w Amalek|strong="H6002"\w* \w and|strong="H5971"\w* \w his|strong="H6310"\w* \w people|strong="H5971"\w* \w with|strong="H5971"\w* \w the|strong="H3091"\w* \w edge|strong="H6310"\w* \w of|strong="H6310"\w* \w the|strong="H3091"\w* \w sword|strong="H2719"\w*. +\v 14 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w Write|strong="H3789"\w* \w this|strong="H2063"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w memorial|strong="H2146"\w* \w in|strong="H3068"\w* \w a|strong="H3068"\w* \w book|strong="H5612"\w*, \w and|strong="H4872"\w* \w rehearse|strong="H7760"\w* \w it|strong="H7760"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* ears \w of|strong="H3068"\w* \w Joshua|strong="H3091"\w*: \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w utterly|strong="H4229"\w* \w blot|strong="H4229"\w* \w out|strong="H4229"\w* \w the|strong="H3588"\w* \w memory|strong="H2143"\w* \w of|strong="H3068"\w* \w Amalek|strong="H6002"\w* \w from|strong="H8478"\w* \w under|strong="H8478"\w* \w the|strong="H3588"\w* \w sky|strong="H8064"\w*.” +\v 15 \w Moses|strong="H4872"\w* \w built|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w*, \w and|strong="H4872"\w* \w called|strong="H7121"\w* its \w name|strong="H8034"\w* “\w Yahweh|strong="H3068"\w* our Banner”.\f + \fr 17:15 \ft Hebrew, Yahweh Nissi\f* +\v 16 \w He|strong="H3588"\w* said, “\w Yah|strong="H3068"\w* \w has|strong="H3068"\w* \w sworn|strong="H3027"\w*: ‘\w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w have|strong="H3068"\w* \w war|strong="H4421"\w* \w with|strong="H3068"\w* \w Amalek|strong="H6002"\w* \w from|strong="H5921"\w* \w generation|strong="H1755"\w* \w to|strong="H3068"\w* \w generation|strong="H1755"\w*.’” +\c 18 +\p +\v 1 \w Now|strong="H3588"\w* \w Jethro|strong="H3503"\w*, \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w of|strong="H3068"\w* \w Midian|strong="H4080"\w*, \w Moses|strong="H4872"\w*’ \w father-in-law|strong="H2859"\w*, \w heard|strong="H8085"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w God|strong="H3068"\w* \w had|strong="H3068"\w* \w done|strong="H6213"\w* \w for|strong="H3588"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* \w for|strong="H3588"\w* \w Israel|strong="H3478"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*, \w how|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w brought|strong="H3318"\w* \w Israel|strong="H3478"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*. +\v 2 \w Jethro|strong="H3503"\w*, \w Moses|strong="H4872"\w*’ \w father-in-law|strong="H2859"\w*, \w received|strong="H3947"\w* \w Zipporah|strong="H6855"\w*, \w Moses|strong="H4872"\w*’ wife, after \w he|strong="H4872"\w* \w had|strong="H4872"\w* \w sent|strong="H3947"\w* \w her|strong="H3947"\w* \w away|strong="H3947"\w*, +\v 3 \w and|strong="H1121"\w* \w her|strong="H1961"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w*. \w The|strong="H3588"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w one|strong="H1121"\w* \w son|strong="H1121"\w* \w was|strong="H8034"\w* \w Gershom|strong="H1647"\w*,\f + \fr 18:3 \ft “Gershom” sounds like the Hebrew for “an alien there”.\f* \w for|strong="H3588"\w* \w Moses|strong="H8034"\w* said, “\w I|strong="H3588"\w* \w have|strong="H1961"\w* \w lived|strong="H1961"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w foreigner|strong="H5237"\w* \w in|strong="H1121"\w* \w a|strong="H3068"\w* \w foreign|strong="H5237"\w* land”. +\v 4 \w The|strong="H3588"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w the|strong="H3588"\w* other \w was|strong="H8034"\w* Eliezer,\f + \fr 18:4 \ft Eliezer means “God is my helper”. \f* \w for|strong="H3588"\w* \w he|strong="H3588"\w* said, “\w My|strong="H5337"\w* father’s God \w was|strong="H8034"\w* \w my|strong="H5337"\w* \w help|strong="H5828"\w* \w and|strong="H2719"\w* \w delivered|strong="H5337"\w* \w me|strong="H5337"\w* \w from|strong="H5337"\w* \w Pharaoh|strong="H6547"\w*’s \w sword|strong="H2719"\w*.” +\v 5 \w Jethro|strong="H3503"\w*, \w Moses|strong="H4872"\w*’ \w father-in-law|strong="H2859"\w*, \w came|strong="H4872"\w* \w with|strong="H2859"\w* \w Moses|strong="H4872"\w*’ \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H4872"\w* wife \w to|strong="H1121"\w* \w Moses|strong="H4872"\w* into \w the|strong="H4872"\w* \w wilderness|strong="H4057"\w* \w where|strong="H8033"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w encamped|strong="H2583"\w*, \w at|strong="H2583"\w* \w the|strong="H4872"\w* \w Mountain|strong="H2022"\w* \w of|strong="H1121"\w* God. +\v 6 \w He|strong="H8147"\w* said \w to|strong="H1121"\w* \w Moses|strong="H4872"\w*, “\w I|strong="H1121"\w*, \w your|strong="H5973"\w* \w father-in-law|strong="H2859"\w* \w Jethro|strong="H3503"\w*, \w have|strong="H1121"\w* come \w to|strong="H1121"\w* \w you|strong="H5973"\w* \w with|strong="H5973"\w* \w your|strong="H5973"\w* wife, \w and|strong="H1121"\w* \w her|strong="H8147"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w* \w with|strong="H5973"\w* \w her|strong="H8147"\w*.” +\p +\v 7 \w Moses|strong="H4872"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w meet|strong="H7125"\w* \w his|strong="H4872"\w* \w father-in-law|strong="H2859"\w*, \w and|strong="H4872"\w* \w bowed|strong="H7812"\w* \w and|strong="H4872"\w* \w kissed|strong="H5401"\w* \w him|strong="H3318"\w*. \w They|strong="H7965"\w* \w asked|strong="H7592"\w* each \w other|strong="H7453"\w* \w of|strong="H3318"\w* \w their|strong="H3318"\w* \w welfare|strong="H7965"\w*, \w and|strong="H4872"\w* \w they|strong="H7965"\w* \w came|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H3318"\w* tent. +\v 8 \w Moses|strong="H4872"\w* \w told|strong="H5608"\w* \w his|strong="H3605"\w* \w father-in-law|strong="H2859"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w done|strong="H6213"\w* \w to|strong="H3478"\w* \w Pharaoh|strong="H6547"\w* \w and|strong="H4872"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w Egyptians|strong="H4714"\w* \w for|strong="H5921"\w* \w Israel|strong="H3478"\w*’s \w sake|strong="H5921"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* hardships \w that|strong="H3605"\w* \w had|strong="H3068"\w* \w come|strong="H4672"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w*, \w and|strong="H4872"\w* \w how|strong="H1870"\w* \w Yahweh|strong="H3068"\w* \w delivered|strong="H5337"\w* \w them|strong="H5921"\w*. +\v 9 \w Jethro|strong="H3503"\w* \w rejoiced|strong="H2302"\w* \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w goodness|strong="H2896"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w done|strong="H6213"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w in|strong="H5921"\w* \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w had|strong="H3068"\w* \w delivered|strong="H5337"\w* \w them|strong="H5921"\w* \w out|strong="H5921"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w Egyptians|strong="H4714"\w*. +\v 10 \w Jethro|strong="H3503"\w* said, “\w Blessed|strong="H1288"\w* \w be|strong="H3027"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H5971"\w* \w has|strong="H3068"\w* \w delivered|strong="H5337"\w* \w you|strong="H1288"\w* \w out|strong="H5337"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w Egyptians|strong="H4714"\w*, \w and|strong="H3068"\w* \w out|strong="H5337"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w Pharaoh|strong="H6547"\w*; \w who|strong="H5971"\w* \w has|strong="H3068"\w* \w delivered|strong="H5337"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w* \w from|strong="H3027"\w* \w under|strong="H8478"\w* \w the|strong="H3068"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w Egyptians|strong="H4714"\w*. +\v 11 \w Now|strong="H6258"\w* \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w greater|strong="H1419"\w* \w than|strong="H5921"\w* \w all|strong="H3605"\w* gods \w because|strong="H3588"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w way|strong="H1697"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* treated \w people|strong="H3045"\w* \w arrogantly|strong="H2102"\w*.” +\v 12 \w Jethro|strong="H3503"\w*, \w Moses|strong="H4872"\w*’ \w father-in-law|strong="H2859"\w*, \w took|strong="H3947"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w and|strong="H4872"\w* \w sacrifices|strong="H2077"\w* \w for|strong="H6440"\w* God. Aaron \w came|strong="H3478"\w* \w with|strong="H5973"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H6440"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w eat|strong="H3899"\w* \w bread|strong="H3899"\w* \w with|strong="H5973"\w* \w Moses|strong="H4872"\w*’ \w father-in-law|strong="H2859"\w* \w before|strong="H6440"\w* God. +\p +\v 13 \w On|strong="H5921"\w* \w the|strong="H5921"\w* \w next|strong="H4283"\w* \w day|strong="H4283"\w*, \w Moses|strong="H4872"\w* \w sat|strong="H3427"\w* \w to|strong="H5704"\w* \w judge|strong="H8199"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w*, \w and|strong="H4872"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w stood|strong="H5975"\w* \w around|strong="H5921"\w* \w Moses|strong="H4872"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* \w morning|strong="H1242"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w evening|strong="H6153"\w*. +\v 14 \w When|strong="H7200"\w* \w Moses|strong="H4872"\w*’ \w father-in-law|strong="H2859"\w* \w saw|strong="H7200"\w* \w all|strong="H3605"\w* \w that|strong="H5971"\w* \w he|strong="H1931"\w* \w did|strong="H6213"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w he|strong="H1931"\w* \w said|strong="H1697"\w*, “\w What|strong="H4100"\w* \w is|strong="H2088"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w that|strong="H5971"\w* \w you|strong="H3605"\w* \w do|strong="H6213"\w* \w for|strong="H5704"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*? \w Why|strong="H4100"\w* \w do|strong="H6213"\w* \w you|strong="H3605"\w* \w sit|strong="H3427"\w* \w alone|strong="H4480"\w*, \w and|strong="H4872"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w stand|strong="H5324"\w* \w around|strong="H5921"\w* \w you|strong="H3605"\w* \w from|strong="H4480"\w* \w morning|strong="H1242"\w* \w to|strong="H5704"\w* \w evening|strong="H6153"\w*?” +\p +\v 15 \w Moses|strong="H4872"\w* said \w to|strong="H5971"\w* \w his|strong="H3588"\w* \w father-in-law|strong="H2859"\w*, “\w Because|strong="H3588"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w come|strong="H5971"\w* \w to|strong="H5971"\w* \w me|strong="H1875"\w* \w to|strong="H5971"\w* \w inquire|strong="H1875"\w* \w of|strong="H5971"\w* God. +\v 16 \w When|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* \w matter|strong="H1697"\w*, \w they|strong="H3588"\w* \w come|strong="H1961"\w* \w to|strong="H1961"\w* \w me|strong="H1961"\w*, \w and|strong="H2706"\w* \w I|strong="H3588"\w* \w judge|strong="H8199"\w* \w between|strong="H8199"\w* \w a|strong="H3068"\w* \w man|strong="H3045"\w* \w and|strong="H2706"\w* \w his|strong="H3045"\w* \w neighbor|strong="H7453"\w*, \w and|strong="H2706"\w* \w I|strong="H3588"\w* \w make|strong="H3045"\w* \w them|strong="H1961"\w* \w know|strong="H3045"\w* \w the|strong="H3588"\w* \w statutes|strong="H2706"\w* \w of|strong="H1697"\w* God, \w and|strong="H2706"\w* \w his|strong="H3045"\w* \w laws|strong="H8451"\w*.” +\v 17 \w Moses|strong="H4872"\w*’ \w father-in-law|strong="H2859"\w* \w said|strong="H1697"\w* \w to|strong="H6213"\w* \w him|strong="H6213"\w*, “\w The|strong="H6213"\w* \w thing|strong="H1697"\w* \w that|strong="H1697"\w* \w you|strong="H6213"\w* \w do|strong="H6213"\w* \w is|strong="H1697"\w* \w not|strong="H3808"\w* \w good|strong="H2896"\w*. +\v 18 \w You|strong="H3588"\w* \w will|strong="H5971"\w* \w surely|strong="H3588"\w* \w wear|strong="H5034"\w* \w away|strong="H5034"\w*, \w both|strong="H1571"\w* \w you|strong="H3588"\w*, \w and|strong="H5971"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w that|strong="H3588"\w* \w is|strong="H2088"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w thing|strong="H1697"\w* \w is|strong="H2088"\w* \w too|strong="H4480"\w* \w heavy|strong="H3515"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*. \w You|strong="H3588"\w* \w are|strong="H5971"\w* \w not|strong="H3808"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w perform|strong="H6213"\w* \w it|strong="H3588"\w* \w yourself|strong="H6213"\w* \w alone|strong="H4480"\w*. +\v 19 \w Listen|strong="H8085"\w* \w now|strong="H6258"\w* \w to|strong="H1961"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*. \w I|strong="H1697"\w* \w will|strong="H1961"\w* \w give|strong="H3289"\w* \w you|strong="H5973"\w* \w counsel|strong="H3289"\w*, \w and|strong="H5971"\w* God \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H5973"\w*. \w You|strong="H5973"\w* represent \w the|strong="H8085"\w* \w people|strong="H5971"\w* \w before|strong="H5973"\w* God, \w and|strong="H5971"\w* \w bring|strong="H1961"\w* \w the|strong="H8085"\w* \w causes|strong="H1697"\w* \w to|strong="H1961"\w* God. +\v 20 \w You|strong="H6213"\w* \w shall|strong="H8451"\w* \w teach|strong="H3045"\w* \w them|strong="H6213"\w* \w the|strong="H6213"\w* \w statutes|strong="H2706"\w* \w and|strong="H3212"\w* \w the|strong="H6213"\w* \w laws|strong="H8451"\w*, \w and|strong="H3212"\w* \w shall|strong="H8451"\w* \w show|strong="H6213"\w* \w them|strong="H6213"\w* \w the|strong="H6213"\w* \w way|strong="H1870"\w* \w in|strong="H6213"\w* \w which|strong="H8451"\w* \w they|strong="H6213"\w* must \w walk|strong="H3212"\w*, \w and|strong="H3212"\w* \w the|strong="H6213"\w* \w work|strong="H4639"\w* \w that|strong="H3045"\w* \w they|strong="H6213"\w* must \w do|strong="H6213"\w*. +\v 21 Moreover \w you|strong="H3605"\w* \w shall|strong="H5971"\w* \w provide|strong="H2372"\w* \w out|strong="H5921"\w* \w of|strong="H8269"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w able|strong="H2428"\w* \w men|strong="H5971"\w* \w which|strong="H5971"\w* \w fear|strong="H3373"\w* God: \w men|strong="H5971"\w* \w of|strong="H8269"\w* truth, \w hating|strong="H8130"\w* \w unjust|strong="H1215"\w* \w gain|strong="H1215"\w*; \w and|strong="H3967"\w* \w place|strong="H7760"\w* \w such|strong="H3605"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w*, \w to|strong="H5921"\w* \w be|strong="H5971"\w* \w rulers|strong="H8269"\w* \w of|strong="H8269"\w* thousands, \w rulers|strong="H8269"\w* \w of|strong="H8269"\w* \w hundreds|strong="H3967"\w*, \w rulers|strong="H8269"\w* \w of|strong="H8269"\w* \w fifties|strong="H2572"\w*, \w and|strong="H3967"\w* \w rulers|strong="H8269"\w* \w of|strong="H8269"\w* \w tens|strong="H6235"\w*. +\v 22 \w Let|strong="H6256"\w* \w them|strong="H1992"\w* \w judge|strong="H8199"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w at|strong="H5921"\w* \w all|strong="H3605"\w* \w times|strong="H6256"\w*. \w It|strong="H5921"\w* \w shall|strong="H5971"\w* \w be|strong="H1961"\w* \w that|strong="H5971"\w* \w every|strong="H3605"\w* \w great|strong="H1419"\w* \w matter|strong="H1697"\w* \w they|strong="H1992"\w* \w shall|strong="H5971"\w* \w bring|strong="H5375"\w* \w to|strong="H1961"\w* \w you|strong="H3605"\w*, \w but|strong="H1961"\w* \w every|strong="H3605"\w* \w small|strong="H6996"\w* \w matter|strong="H1697"\w* \w they|strong="H1992"\w* \w shall|strong="H5971"\w* \w judge|strong="H8199"\w* \w themselves|strong="H1992"\w*. \w So|strong="H1961"\w* \w shall|strong="H5971"\w* \w it|strong="H5921"\w* \w be|strong="H1961"\w* \w easier|strong="H7043"\w* \w for|strong="H5921"\w* \w you|strong="H3605"\w*, \w and|strong="H1419"\w* \w they|strong="H1992"\w* \w shall|strong="H5971"\w* share \w the|strong="H3605"\w* \w load|strong="H5375"\w* \w with|strong="H5921"\w* \w you|strong="H3605"\w*. +\v 23 If \w you|strong="H6680"\w* \w will|strong="H5971"\w* \w do|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*, \w and|strong="H5971"\w* God \w commands|strong="H6680"\w* \w you|strong="H6680"\w* \w so|strong="H6213"\w*, \w then|strong="H2088"\w* \w you|strong="H6680"\w* \w will|strong="H5971"\w* \w be|strong="H1697"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w endure|strong="H5975"\w*, \w and|strong="H5971"\w* \w all|strong="H3605"\w* \w these|strong="H2088"\w* \w people|strong="H5971"\w* \w also|strong="H1571"\w* \w will|strong="H5971"\w* \w go|strong="H5971"\w* \w to|strong="H3201"\w* \w their|strong="H3605"\w* \w place|strong="H4725"\w* \w in|strong="H5921"\w* \w peace|strong="H7965"\w*.” +\p +\v 24 \w So|strong="H6213"\w* \w Moses|strong="H4872"\w* \w listened|strong="H8085"\w* \w to|strong="H6213"\w* \w the|strong="H3605"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w his|strong="H3605"\w* \w father-in-law|strong="H2859"\w*, \w and|strong="H4872"\w* \w did|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w had|strong="H4872"\w* \w said|strong="H8085"\w*. +\v 25 \w Moses|strong="H4872"\w* chose \w able|strong="H2428"\w* \w men|strong="H7218"\w* \w out|strong="H5414"\w* \w of|strong="H8269"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3967"\w* \w made|strong="H5414"\w* \w them|strong="H5414"\w* \w heads|strong="H7218"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w rulers|strong="H8269"\w* \w of|strong="H8269"\w* thousands, \w rulers|strong="H8269"\w* \w of|strong="H8269"\w* \w hundreds|strong="H3967"\w*, \w rulers|strong="H8269"\w* \w of|strong="H8269"\w* \w fifties|strong="H2572"\w*, \w and|strong="H3967"\w* \w rulers|strong="H8269"\w* \w of|strong="H8269"\w* \w tens|strong="H6235"\w*. +\v 26 \w They|strong="H1992"\w* \w judged|strong="H8199"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w at|strong="H5971"\w* \w all|strong="H3605"\w* \w times|strong="H6256"\w*. \w They|strong="H1992"\w* \w brought|strong="H4872"\w* \w the|strong="H3605"\w* \w hard|strong="H7186"\w* \w cases|strong="H1697"\w* \w to|strong="H6256"\w* \w Moses|strong="H4872"\w*, \w but|strong="H1992"\w* \w every|strong="H3605"\w* \w small|strong="H6996"\w* \w matter|strong="H1697"\w* \w they|strong="H1992"\w* \w judged|strong="H8199"\w* \w themselves|strong="H1992"\w*. +\v 27 \w Moses|strong="H4872"\w* \w let|strong="H7971"\w* \w his|strong="H7971"\w* \w father-in-law|strong="H2859"\w* \w depart|strong="H3212"\w*, \w and|strong="H4872"\w* \w he|strong="H7971"\w* \w went|strong="H3212"\w* \w his|strong="H7971"\w* \w way|strong="H3212"\w* \w into|strong="H3212"\w* \w his|strong="H7971"\w* own land. +\c 19 +\p +\v 1 \w In|strong="H3478"\w* \w the|strong="H3117"\w* \w third|strong="H7992"\w* \w month|strong="H2320"\w* \w after|strong="H3117"\w* \w the|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w had|strong="H3478"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w on|strong="H3117"\w* \w that|strong="H3117"\w* \w same|strong="H2088"\w* \w day|strong="H3117"\w* \w they|strong="H3117"\w* \w came|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H3117"\w* \w wilderness|strong="H4057"\w* \w of|strong="H1121"\w* \w Sinai|strong="H5514"\w*. +\v 2 \w When|strong="H5265"\w* \w they|strong="H8033"\w* \w had|strong="H3478"\w* \w departed|strong="H5265"\w* \w from|strong="H5265"\w* \w Rephidim|strong="H7508"\w*, \w and|strong="H3478"\w* \w had|strong="H3478"\w* \w come|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H8033"\w* \w wilderness|strong="H4057"\w* \w of|strong="H2022"\w* \w Sinai|strong="H5514"\w*, \w they|strong="H8033"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w the|strong="H8033"\w* \w wilderness|strong="H4057"\w*; \w and|strong="H3478"\w* \w there|strong="H8033"\w* \w Israel|strong="H3478"\w* \w encamped|strong="H2583"\w* \w before|strong="H5048"\w* \w the|strong="H8033"\w* \w mountain|strong="H2022"\w*. +\v 3 \w Moses|strong="H4872"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w God|strong="H3068"\w*, \w and|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w called|strong="H7121"\w* \w to|strong="H3478"\w* \w him|strong="H7121"\w* \w out|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H3541"\w* \w mountain|strong="H2022"\w*, saying, “\w This|strong="H3541"\w* \w is|strong="H3068"\w* \w what|strong="H3541"\w* \w you|strong="H5046"\w* \w shall|strong="H3068"\w* \w tell|strong="H5046"\w* \w the|strong="H3541"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Jacob|strong="H3290"\w*, \w and|strong="H1121"\w* \w tell|strong="H5046"\w* \w the|strong="H3541"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*: +\v 4 ‘\w You|strong="H5921"\w* \w have|strong="H7200"\w* \w seen|strong="H7200"\w* \w what|strong="H6213"\w* \w I|strong="H5921"\w* \w did|strong="H6213"\w* \w to|strong="H6213"\w* \w the|strong="H5921"\w* \w Egyptians|strong="H4714"\w*, \w and|strong="H4714"\w* \w how|strong="H6213"\w* \w I|strong="H5921"\w* \w bore|strong="H5375"\w* \w you|strong="H5921"\w* \w on|strong="H5921"\w* \w eagles|strong="H5404"\w*’ \w wings|strong="H3671"\w*, \w and|strong="H4714"\w* \w brought|strong="H5375"\w* \w you|strong="H5921"\w* \w to|strong="H6213"\w* myself. +\v 5 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H1961"\w* \w indeed|strong="H3588"\w* \w obey|strong="H8085"\w* \w my|strong="H8104"\w* \w voice|strong="H6963"\w* \w and|strong="H5971"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w covenant|strong="H1285"\w*, \w then|strong="H1961"\w* \w you|strong="H3588"\w* \w shall|strong="H5971"\w* \w be|strong="H1961"\w* \w my|strong="H8104"\w* \w own|strong="H1961"\w* \w possession|strong="H5459"\w* \w from|strong="H8085"\w* \w among|strong="H5971"\w* \w all|strong="H3605"\w* \w peoples|strong="H5971"\w*; \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth \w is|strong="H3605"\w* \w mine|strong="H8104"\w*; +\v 6 \w and|strong="H1121"\w* \w you|strong="H1696"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w* \w a|strong="H3068"\w* \w kingdom|strong="H4467"\w* \w of|strong="H1121"\w* \w priests|strong="H3548"\w* \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w holy|strong="H6918"\w* \w nation|strong="H1471"\w*.’ \w These|strong="H1696"\w* \w are|strong="H1121"\w* \w the|strong="H1697"\w* \w words|strong="H1697"\w* \w which|strong="H1471"\w* \w you|strong="H1696"\w* \w shall|strong="H3548"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H1697"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*.” +\p +\v 7 \w Moses|strong="H4872"\w* \w came|strong="H3068"\w* \w and|strong="H4872"\w* \w called|strong="H7121"\w* \w for|strong="H7121"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w and|strong="H4872"\w* \w set|strong="H7760"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w* \w all|strong="H3605"\w* \w these|strong="H7121"\w* \w words|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w him|strong="H6440"\w*. +\v 8 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w answered|strong="H6030"\w* \w together|strong="H3162"\w*, \w and|strong="H4872"\w* \w said|strong="H1696"\w*, “\w All|strong="H3605"\w* \w that|strong="H5971"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w*.” +\p \w Moses|strong="H4872"\w* \w reported|strong="H7725"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*. +\v 9 \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, “\w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w come|strong="H5971"\w* \w to|strong="H1696"\w* \w you|strong="H5046"\w* \w in|strong="H3068"\w* \w a|strong="H3068"\w* \w thick|strong="H5645"\w* \w cloud|strong="H6051"\w*, \w that|strong="H5971"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w* \w may|strong="H3068"\w* \w hear|strong="H8085"\w* \w when|strong="H8085"\w* \w I|strong="H2009"\w* \w speak|strong="H1696"\w* \w with|strong="H5973"\w* \w you|strong="H5046"\w*, \w and|strong="H4872"\w* \w may|strong="H3068"\w* \w also|strong="H1571"\w* believe \w you|strong="H5046"\w* \w forever|strong="H5769"\w*.” \w Moses|strong="H4872"\w* \w told|strong="H5046"\w* \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*. +\v 10 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w Go|strong="H3212"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w*, \w and|strong="H4872"\w* \w sanctify|strong="H6942"\w* \w them|strong="H6942"\w* \w today|strong="H3117"\w* \w and|strong="H4872"\w* \w tomorrow|strong="H4279"\w*, \w and|strong="H4872"\w* \w let|strong="H3212"\w* \w them|strong="H6942"\w* \w wash|strong="H3526"\w* \w their|strong="H3068"\w* \w garments|strong="H8071"\w*, +\v 11 \w and|strong="H3068"\w* \w be|strong="H1961"\w* \w ready|strong="H3559"\w* \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*; \w for|strong="H3588"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w come|strong="H1961"\w* \w down|strong="H3381"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w on|strong="H5921"\w* \w Mount|strong="H2022"\w* \w Sinai|strong="H5514"\w*. +\v 12 \w You|strong="H3605"\w* \w shall|strong="H5971"\w* \w set|strong="H1379"\w* \w bounds|strong="H1379"\w* \w to|strong="H4191"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w all|strong="H3605"\w* \w around|strong="H5439"\w*, saying, ‘\w Be|strong="H4191"\w* \w careful|strong="H8104"\w* \w that|strong="H5971"\w* \w you|strong="H3605"\w* don’t \w go|strong="H5927"\w* \w up|strong="H5927"\w* onto \w the|strong="H3605"\w* \w mountain|strong="H2022"\w*, \w or|strong="H4191"\w* \w touch|strong="H5060"\w* \w its|strong="H3605"\w* \w border|strong="H7097"\w*. \w Whoever|strong="H3605"\w* \w touches|strong="H5060"\w* \w the|strong="H3605"\w* \w mountain|strong="H2022"\w* \w shall|strong="H5971"\w* \w be|strong="H4191"\w* \w surely|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. +\v 13 \w No|strong="H3808"\w* \w hand|strong="H3027"\w* \w shall|strong="H3027"\w* \w touch|strong="H5060"\w* \w him|strong="H3027"\w*, \w but|strong="H3588"\w* \w he|strong="H3588"\w* \w shall|strong="H3027"\w* \w surely|strong="H3588"\w* \w be|strong="H3808"\w* \w stoned|strong="H5619"\w* \w or|strong="H3808"\w* \w shot|strong="H3384"\w* \w through|strong="H3027"\w*; whether \w it|strong="H3588"\w* \w is|strong="H3027"\w* animal \w or|strong="H3808"\w* man, \w he|strong="H3588"\w* \w shall|strong="H3027"\w* \w not|strong="H3808"\w* \w live|strong="H2421"\w*.’ \w When|strong="H3588"\w* \w the|strong="H3588"\w* \w trumpet|strong="H3104"\w* \w sounds|strong="H4900"\w* \w long|strong="H4900"\w*, \w they|strong="H1992"\w* \w shall|strong="H3027"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H3588"\w* \w mountain|strong="H2022"\w*.” +\p +\v 14 \w Moses|strong="H4872"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w mountain|strong="H2022"\w* \w to|strong="H3381"\w* \w the|strong="H4480"\w* \w people|strong="H5971"\w*, \w and|strong="H4872"\w* \w sanctified|strong="H6942"\w* \w the|strong="H4480"\w* \w people|strong="H5971"\w*; \w and|strong="H4872"\w* \w they|strong="H5971"\w* \w washed|strong="H3526"\w* \w their|strong="H3526"\w* \w clothes|strong="H8071"\w*. +\v 15 \w He|strong="H3117"\w* said \w to|strong="H1961"\w* \w the|strong="H3117"\w* \w people|strong="H5971"\w*, “\w Be|strong="H1961"\w* \w ready|strong="H3559"\w* \w by|strong="H3117"\w* \w the|strong="H3117"\w* \w third|strong="H7969"\w* \w day|strong="H3117"\w*. Don’t \w have|strong="H1961"\w* sexual relations \w with|strong="H3117"\w* \w a|strong="H3068"\w* woman.” +\p +\v 16 \w On|strong="H5921"\w* \w the|strong="H3605"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*, \w when|strong="H1961"\w* \w it|strong="H5921"\w* \w was|strong="H1961"\w* \w morning|strong="H1242"\w*, \w there|strong="H1961"\w* \w were|strong="H1961"\w* \w thunders|strong="H6963"\w* \w and|strong="H3117"\w* \w lightnings|strong="H1300"\w*, \w and|strong="H3117"\w* \w a|strong="H3068"\w* \w thick|strong="H3515"\w* \w cloud|strong="H6051"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w mountain|strong="H2022"\w*, \w and|strong="H3117"\w* \w the|strong="H3605"\w* \w sound|strong="H6963"\w* \w of|strong="H3117"\w* \w an|strong="H1961"\w* \w exceedingly|strong="H3966"\w* \w loud|strong="H2389"\w* \w trumpet|strong="H7782"\w*; \w and|strong="H3117"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w trembled|strong="H2729"\w*. +\v 17 \w Moses|strong="H4872"\w* \w led|strong="H3318"\w* \w the|strong="H4480"\w* \w people|strong="H5971"\w* \w out|strong="H3318"\w* \w of|strong="H2022"\w* \w the|strong="H4480"\w* \w camp|strong="H4264"\w* \w to|strong="H3318"\w* \w meet|strong="H7125"\w* God; \w and|strong="H4872"\w* \w they|strong="H5971"\w* \w stood|strong="H3320"\w* \w at|strong="H4264"\w* \w the|strong="H4480"\w* \w lower|strong="H8482"\w* \w part|strong="H4480"\w* \w of|strong="H2022"\w* \w the|strong="H4480"\w* \w mountain|strong="H2022"\w*. +\v 18 \w All|strong="H3605"\w* \w of|strong="H3068"\w* \w Mount|strong="H2022"\w* \w Sinai|strong="H5514"\w* smoked, \w because|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w descended|strong="H3381"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w* \w in|strong="H5921"\w* fire; \w and|strong="H3068"\w* \w its|strong="H3605"\w* \w smoke|strong="H6227"\w* \w ascended|strong="H5927"\w* \w like|strong="H3381"\w* \w the|strong="H3605"\w* \w smoke|strong="H6227"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w furnace|strong="H3536"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w mountain|strong="H2022"\w* \w quaked|strong="H2729"\w* \w greatly|strong="H3966"\w*. +\v 19 \w When|strong="H1961"\w* \w the|strong="H4872"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H4872"\w* \w trumpet|strong="H7782"\w* \w grew|strong="H1980"\w* \w louder|strong="H3966"\w* \w and|strong="H1980"\w* \w louder|strong="H3966"\w*, \w Moses|strong="H4872"\w* \w spoke|strong="H1696"\w*, \w and|strong="H1980"\w* God \w answered|strong="H6030"\w* \w him|strong="H6963"\w* \w by|strong="H1980"\w* \w a|strong="H3068"\w* \w voice|strong="H6963"\w*. +\v 20 \w Yahweh|strong="H3068"\w* \w came|strong="H5927"\w* \w down|strong="H3381"\w* \w on|strong="H5921"\w* \w Mount|strong="H2022"\w* \w Sinai|strong="H5514"\w*, \w to|strong="H3381"\w* \w the|strong="H5921"\w* \w top|strong="H7218"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w mountain|strong="H2022"\w*. \w Yahweh|strong="H3068"\w* \w called|strong="H7121"\w* \w Moses|strong="H4872"\w* \w to|strong="H3381"\w* \w the|strong="H5921"\w* \w top|strong="H7218"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w mountain|strong="H2022"\w*, \w and|strong="H4872"\w* \w Moses|strong="H4872"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w*. +\p +\v 21 \w Yahweh|strong="H3068"\w* said \w to|strong="H3381"\w* \w Moses|strong="H4872"\w*, “\w Go|strong="H3381"\w* \w down|strong="H3381"\w*, \w warn|strong="H5749"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w*, \w lest|strong="H6435"\w* \w they|strong="H3068"\w* \w break|strong="H2040"\w* \w through|strong="H4480"\w* \w to|strong="H3381"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3381"\w* \w gaze|strong="H7200"\w*, \w and|strong="H4872"\w* \w many|strong="H7227"\w* \w of|strong="H3068"\w* \w them|strong="H3381"\w* \w perish|strong="H5307"\w*. +\v 22 Let \w the|strong="H3068"\w* \w priests|strong="H3548"\w* \w also|strong="H1571"\w*, \w who|strong="H3068"\w* \w come|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w sanctify|strong="H6942"\w* \w themselves|strong="H6942"\w*, \w lest|strong="H6435"\w* \w Yahweh|strong="H3068"\w* \w break|strong="H6555"\w* \w out|strong="H6555"\w* \w on|strong="H3068"\w* \w them|strong="H6942"\w*.” +\p +\v 23 \w Moses|strong="H4872"\w* said \w to|strong="H3201"\w* \w Yahweh|strong="H3068"\w*, “\w The|strong="H3588"\w* \w people|strong="H5971"\w* \w can|strong="H3201"\w*’t \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3201"\w* \w Mount|strong="H2022"\w* \w Sinai|strong="H5514"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w warned|strong="H5749"\w* \w us|strong="H3588"\w*, saying, ‘\w Set|strong="H6942"\w* \w bounds|strong="H1379"\w* \w around|strong="H5749"\w* \w the|strong="H3588"\w* \w mountain|strong="H2022"\w*, \w and|strong="H4872"\w* \w sanctify|strong="H6942"\w* \w it|strong="H3588"\w*.’” +\p +\v 24 \w Yahweh|strong="H3068"\w* said \w to|strong="H3381"\w* \w him|strong="H5973"\w*, “\w Go|strong="H3212"\w* \w down|strong="H3381"\w*! \w You|strong="H5973"\w* \w shall|strong="H3548"\w* \w bring|strong="H5927"\w* Aaron \w up|strong="H5927"\w* \w with|strong="H5973"\w* \w you|strong="H5973"\w*, \w but|strong="H5971"\w* don’t \w let|strong="H3381"\w* \w the|strong="H3068"\w* \w priests|strong="H3548"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w* \w break|strong="H2040"\w* \w through|strong="H6555"\w* \w to|strong="H3381"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3381"\w* \w Yahweh|strong="H3068"\w*, \w lest|strong="H6435"\w* \w he|strong="H3068"\w* \w break|strong="H2040"\w* \w out|strong="H6555"\w* \w against|strong="H5973"\w* \w them|strong="H3381"\w*.” +\p +\v 25 \w So|strong="H3381"\w* \w Moses|strong="H4872"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H4872"\w* \w people|strong="H5971"\w*, \w and|strong="H4872"\w* told \w them|strong="H3381"\w*. +\c 20 +\p +\v 1 God\f + \fr 20:1 \ft After “God”, the Hebrew has the two letters “Aleph Tav” (the first and last letters of the Hebrew alphabet), not as a word, but as a grammatical marker.\f* \w spoke|strong="H1696"\w* \w all|strong="H3605"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w I|strong="H4714"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w who|strong="H3068"\w* \w brought|strong="H3318"\w* \w you|strong="H4714"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* land \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*, \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w bondage|strong="H5650"\w*. +\p +\v 3 “\w You|strong="H6440"\w* \w shall|strong="H3808"\w* \w have|strong="H1961"\w* \w no|strong="H3808"\w* other gods \w before|strong="H6440"\w* \w me|strong="H6440"\w*. +\p +\v 4 “\w You|strong="H3605"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w make|strong="H6213"\w* \w for|strong="H6213"\w* \w yourselves|strong="H3605"\w* \w an|strong="H6213"\w* \w idol|strong="H6459"\w*, \w nor|strong="H3808"\w* \w any|strong="H3605"\w* \w image|strong="H6459"\w* \w of|strong="H4325"\w* \w anything|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w heavens|strong="H8064"\w* \w above|strong="H4605"\w*, \w or|strong="H3808"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w* \w beneath|strong="H8478"\w*, \w or|strong="H3808"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w water|strong="H4325"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*: +\v 5 \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w bow|strong="H7812"\w* \w yourself|strong="H5921"\w* \w down|strong="H7812"\w* \w to|strong="H3068"\w* \w them|strong="H5921"\w*, \w nor|strong="H3808"\w* \w serve|strong="H5647"\w* \w them|strong="H5921"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w am|strong="H3068"\w* \w a|strong="H3068"\w* \w jealous|strong="H7067"\w* \w God|strong="H3068"\w*, \w visiting|strong="H6485"\w* \w the|strong="H5921"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* fathers \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w*, \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w third|strong="H8029"\w* \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w fourth|strong="H7256"\w* \w generation|strong="H8029"\w* \w of|strong="H1121"\w* \w those|strong="H5921"\w* \w who|strong="H3068"\w* \w hate|strong="H8130"\w* \w me|strong="H8130"\w*, +\v 6 \w and|strong="H2617"\w* \w showing|strong="H6213"\w* loving \w kindness|strong="H2617"\w* \w to|strong="H6213"\w* thousands \w of|strong="H4687"\w* \w those|strong="H6213"\w* \w who|strong="H8104"\w* \w love|strong="H2617"\w* \w me|strong="H6213"\w* \w and|strong="H2617"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w commandments|strong="H4687"\w*. +\p +\v 7 “\w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* misuse \w the|strong="H3588"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*,\f + \fr 20:7 \ft or, You shall not take the name of Yahweh your God in vain\f* \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* hold \w him|strong="H5375"\w* \w guiltless|strong="H5352"\w* \w who|strong="H3068"\w* misuses \w his|strong="H5375"\w* \w name|strong="H8034"\w*. +\p +\v 8 “\w Remember|strong="H2142"\w* \w the|strong="H3117"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w*, \w to|strong="H3117"\w* \w keep|strong="H6942"\w* \w it|strong="H6942"\w* \w holy|strong="H6942"\w*. +\v 9 \w You|strong="H3605"\w* \w shall|strong="H3117"\w* \w labor|strong="H5647"\w* \w six|strong="H8337"\w* \w days|strong="H3117"\w*, \w and|strong="H3117"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w work|strong="H4399"\w*, +\v 10 \w but|strong="H3808"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w Sabbath|strong="H7676"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \w You|strong="H3605"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w do|strong="H6213"\w* \w any|strong="H3605"\w* \w work|strong="H4399"\w* \w in|strong="H3068"\w* \w it|strong="H6213"\w*, \w you|strong="H3605"\w*, \w nor|strong="H3808"\w* \w your|strong="H3068"\w* \w son|strong="H1121"\w*, \w nor|strong="H3808"\w* \w your|strong="H3068"\w* \w daughter|strong="H1323"\w*, \w your|strong="H3068"\w* \w male|strong="H5650"\w* \w servant|strong="H5650"\w*, \w nor|strong="H3808"\w* \w your|strong="H3068"\w* \w female|strong="H1323"\w* \w servant|strong="H5650"\w*, \w nor|strong="H3808"\w* \w your|strong="H3068"\w* livestock, \w nor|strong="H3808"\w* \w your|strong="H3068"\w* \w stranger|strong="H1616"\w* \w who|strong="H3605"\w* \w is|strong="H3068"\w* within \w your|strong="H3068"\w* \w gates|strong="H8179"\w*; +\v 11 \w for|strong="H3588"\w* \w in|strong="H5921"\w* \w six|strong="H8337"\w* \w days|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H6213"\w* \w heaven|strong="H8064"\w* \w and|strong="H3068"\w* \w earth|strong="H8064"\w*, \w the|strong="H3605"\w* \w sea|strong="H3220"\w*, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w is|strong="H3068"\w* \w in|strong="H5921"\w* \w them|strong="H5921"\w*, \w and|strong="H3068"\w* \w rested|strong="H5117"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*; \w therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w blessed|strong="H1288"\w* \w the|strong="H3605"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w*, \w and|strong="H3068"\w* \w made|strong="H6213"\w* \w it|strong="H5921"\w* \w holy|strong="H6942"\w*. +\p +\v 12 “\w Honor|strong="H3513"\w* \w your|strong="H3068"\w* father \w and|strong="H3068"\w* \w your|strong="H3068"\w* mother, \w that|strong="H3117"\w* \w your|strong="H3068"\w* \w days|strong="H3117"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w long|strong="H3117"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H5414"\w*. +\p +\v 13 “\w You|strong="H3808"\w* \w shall|strong="H7523"\w* \w not|strong="H3808"\w* \w murder|strong="H7523"\w*. +\p +\v 14 “\w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w commit|strong="H5003"\w* \w adultery|strong="H5003"\w*. +\p +\v 15 “\w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w steal|strong="H1589"\w*. +\p +\v 16 “\w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w give|strong="H6030"\w* \w false|strong="H8267"\w* \w testimony|strong="H5707"\w* \w against|strong="H7453"\w* \w your|strong="H3808"\w* \w neighbor|strong="H7453"\w*. +\p +\v 17 “\w You|strong="H3605"\w* \w shall|strong="H1004"\w* \w not|strong="H3808"\w* \w covet|strong="H2530"\w* \w your|strong="H3605"\w* \w neighbor|strong="H7453"\w*’s \w house|strong="H1004"\w*. \w You|strong="H3605"\w* \w shall|strong="H1004"\w* \w not|strong="H3808"\w* \w covet|strong="H2530"\w* \w your|strong="H3605"\w* \w neighbor|strong="H7453"\w*’s wife, \w nor|strong="H3808"\w* \w his|strong="H3605"\w* \w male|strong="H5650"\w* \w servant|strong="H5650"\w*, \w nor|strong="H3808"\w* \w his|strong="H3605"\w* female \w servant|strong="H5650"\w*, \w nor|strong="H3808"\w* \w his|strong="H3605"\w* \w ox|strong="H7794"\w*, \w nor|strong="H3808"\w* \w his|strong="H3605"\w* \w donkey|strong="H2543"\w*, \w nor|strong="H3808"\w* \w anything|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w your|strong="H3605"\w* \w neighbor|strong="H7453"\w*’s.” +\p +\v 18 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w perceived|strong="H7200"\w* \w the|strong="H3605"\w* \w thunderings|strong="H6963"\w*, \w the|strong="H3605"\w* \w lightnings|strong="H3940"\w*, \w the|strong="H3605"\w* \w sound|strong="H6963"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w trumpet|strong="H7782"\w*, \w and|strong="H5971"\w* \w the|strong="H3605"\w* \w mountain|strong="H2022"\w* \w smoking|strong="H6226"\w*. \w When|strong="H7200"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w saw|strong="H7200"\w* \w it|strong="H7200"\w*, \w they|strong="H5971"\w* \w trembled|strong="H5128"\w*, \w and|strong="H5971"\w* \w stayed|strong="H5975"\w* \w at|strong="H5975"\w* \w a|strong="H3068"\w* \w distance|strong="H7350"\w*. +\v 19 \w They|strong="H8085"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, “\w Speak|strong="H1696"\w* \w with|strong="H5973"\w* \w us|strong="H6435"\w* \w yourself|strong="H5973"\w*, \w and|strong="H4872"\w* \w we|strong="H3068"\w* \w will|strong="H8085"\w* \w listen|strong="H8085"\w*; \w but|strong="H1696"\w* don’t let God \w speak|strong="H1696"\w* \w with|strong="H5973"\w* \w us|strong="H6435"\w*, \w lest|strong="H6435"\w* \w we|strong="H3068"\w* \w die|strong="H4191"\w*.” +\p +\v 20 \w Moses|strong="H4872"\w* said \w to|strong="H1961"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*, “Don’t \w be|strong="H1961"\w* \w afraid|strong="H3372"\w*, \w for|strong="H3588"\w* God \w has|strong="H1961"\w* \w come|strong="H1961"\w* \w to|strong="H1961"\w* \w test|strong="H5254"\w* \w you|strong="H3588"\w*, \w and|strong="H4872"\w* \w that|strong="H3588"\w* \w his|strong="H6440"\w* \w fear|strong="H3372"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* won’t \w sin|strong="H2398"\w*.” +\v 21 \w The|strong="H4872"\w* \w people|strong="H5971"\w* \w stayed|strong="H5975"\w* \w at|strong="H5975"\w* \w a|strong="H3068"\w* \w distance|strong="H7350"\w*, \w and|strong="H4872"\w* \w Moses|strong="H4872"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H8033"\w* \w the|strong="H4872"\w* \w thick|strong="H6205"\w* \w darkness|strong="H6205"\w* \w where|strong="H8033"\w* God \w was|strong="H4872"\w*. +\p +\v 22 \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, “\w This|strong="H3541"\w* \w is|strong="H3068"\w* \w what|strong="H3541"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w tell|strong="H1696"\w* \w the|strong="H7200"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*: ‘\w You|strong="H3588"\w* \w yourselves|strong="H3068"\w* \w have|strong="H3068"\w* \w seen|strong="H7200"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w talked|strong="H1696"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w* \w from|strong="H4480"\w* \w heaven|strong="H8064"\w*. +\v 23 \w You|strong="H6213"\w* \w shall|strong="H3808"\w* most \w certainly|strong="H6213"\w* \w not|strong="H3808"\w* \w make|strong="H6213"\w* gods \w of|strong="H6213"\w* \w silver|strong="H3701"\w* \w or|strong="H3808"\w* gods \w of|strong="H6213"\w* \w gold|strong="H2091"\w* \w for|strong="H6213"\w* yourselves \w to|strong="H6213"\w* \w be|strong="H3808"\w* alongside \w me|strong="H6213"\w*. +\v 24 \w You|strong="H3605"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w an|strong="H6213"\w* \w altar|strong="H4196"\w* \w of|strong="H8034"\w* earth \w for|strong="H5921"\w* \w me|strong="H5921"\w*, \w and|strong="H6629"\w* \w shall|strong="H6213"\w* \w sacrifice|strong="H2076"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w* \w your|strong="H3605"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w* \w and|strong="H6629"\w* \w your|strong="H3605"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w your|strong="H3605"\w* \w sheep|strong="H6629"\w* \w and|strong="H6629"\w* \w your|strong="H3605"\w* \w cattle|strong="H1241"\w*. \w In|strong="H5921"\w* \w every|strong="H3605"\w* \w place|strong="H4725"\w* \w where|strong="H4725"\w* \w I|strong="H5921"\w* \w record|strong="H2142"\w* \w my|strong="H3605"\w* \w name|strong="H8034"\w* \w I|strong="H5921"\w* \w will|strong="H6629"\w* \w come|strong="H2142"\w* \w to|strong="H6213"\w* \w you|strong="H3605"\w* \w and|strong="H6629"\w* \w I|strong="H5921"\w* \w will|strong="H6629"\w* \w bless|strong="H1288"\w* \w you|strong="H3605"\w*. +\v 25 \w If|strong="H3588"\w* \w you|strong="H3588"\w* \w make|strong="H6213"\w* \w me|strong="H5921"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w of|strong="H4196"\w* \w stone|strong="H1496"\w*, \w you|strong="H3588"\w* \w shall|strong="H2719"\w* \w not|strong="H3808"\w* \w build|strong="H1129"\w* \w it|strong="H5921"\w* \w of|strong="H4196"\w* \w cut|strong="H1496"\w* \w stones|strong="H1496"\w*; \w for|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* lift \w up|strong="H1129"\w* \w your|strong="H5921"\w* \w tool|strong="H2719"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*, \w you|strong="H3588"\w* \w have|strong="H1129"\w* \w polluted|strong="H2490"\w* \w it|strong="H5921"\w*. +\v 26 \w You|strong="H5921"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w by|strong="H5921"\w* \w steps|strong="H4609"\w* \w to|strong="H5927"\w* \w my|strong="H5921"\w* \w altar|strong="H4196"\w*, \w that|strong="H4196"\w* \w your|strong="H5921"\w* \w nakedness|strong="H6172"\w* \w may|strong="H4196"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w exposed|strong="H1540"\w* \w to|strong="H5927"\w* \w it|strong="H5921"\w*.’ +\c 21 +\p +\v 1 “\w Now|strong="H7760"\w* \w these|strong="H7760"\w* \w are|strong="H4941"\w* \w the|strong="H6440"\w* \w ordinances|strong="H4941"\w* which \w you|strong="H6440"\w* \w shall|strong="H6440"\w* \w set|strong="H7760"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*: +\p +\v 2 “\w If|strong="H3588"\w* \w you|strong="H3588"\w* \w buy|strong="H7069"\w* \w a|strong="H3068"\w* \w Hebrew|strong="H5680"\w* \w servant|strong="H5650"\w*, \w he|strong="H3588"\w* \w shall|strong="H5650"\w* \w serve|strong="H5647"\w* \w six|strong="H8337"\w* \w years|strong="H8141"\w*, \w and|strong="H5650"\w* \w in|strong="H8141"\w* \w the|strong="H3588"\w* \w seventh|strong="H7637"\w* \w he|strong="H3588"\w* \w shall|strong="H5650"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w free|strong="H2670"\w* \w without|strong="H2600"\w* \w paying|strong="H2600"\w* anything. +\v 3 \w If|strong="H1931"\w* \w he|strong="H1931"\w* \w comes|strong="H3318"\w* \w in|strong="H3318"\w* \w by|strong="H3318"\w* \w himself|strong="H1931"\w*, \w he|strong="H1931"\w* \w shall|strong="H1931"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w by|strong="H3318"\w* \w himself|strong="H1931"\w*. \w If|strong="H1931"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w married|strong="H1167"\w*, \w then|strong="H3318"\w* \w his|strong="H3318"\w* wife \w shall|strong="H1931"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*. +\v 4 \w If|strong="H1961"\w* \w his|strong="H5414"\w* \w master|strong="H5414"\w* \w gives|strong="H5414"\w* \w him|strong="H5414"\w* \w a|strong="H3068"\w* wife \w and|strong="H1121"\w* \w she|strong="H1931"\w* \w bears|strong="H3205"\w* \w him|strong="H5414"\w* \w sons|strong="H1121"\w* \w or|strong="H1121"\w* \w daughters|strong="H1323"\w*, \w the|strong="H5414"\w* wife \w and|strong="H1121"\w* \w her|strong="H5414"\w* \w children|strong="H1121"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w her|strong="H5414"\w* \w master|strong="H5414"\w*’s, \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w shall|strong="H1121"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w by|strong="H3318"\w* \w himself|strong="H1931"\w*. +\v 5 \w But|strong="H3808"\w* \w if|strong="H1121"\w* \w the|strong="H3318"\w* \w servant|strong="H5650"\w* \w shall|strong="H1121"\w* plainly say, ‘\w I|strong="H5650"\w* love \w my|strong="H3318"\w* master, \w my|strong="H3318"\w* wife, \w and|strong="H1121"\w* \w my|strong="H3318"\w* \w children|strong="H1121"\w*. \w I|strong="H5650"\w* \w will|strong="H5650"\w* \w not|strong="H3808"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w free|strong="H2670"\w*;’ +\v 6 \w then|strong="H5066"\w* \w his|strong="H5647"\w* master shall \w bring|strong="H5066"\w* \w him|strong="H5647"\w* \w to|strong="H5066"\w* God, \w and|strong="H5769"\w* shall \w bring|strong="H5066"\w* \w him|strong="H5647"\w* \w to|strong="H5066"\w* \w the|strong="H5647"\w* \w door|strong="H1817"\w* \w or|strong="H1817"\w* \w to|strong="H5066"\w* \w the|strong="H5647"\w* \w doorpost|strong="H4201"\w*, \w and|strong="H5769"\w* \w his|strong="H5647"\w* master shall \w bore|strong="H7527"\w* \w his|strong="H5647"\w* \w ear|strong="H5647"\w* through \w with|strong="H5647"\w* \w an|strong="H5066"\w* \w awl|strong="H4836"\w*, \w and|strong="H5769"\w* he shall \w serve|strong="H5647"\w* \w him|strong="H5647"\w* \w forever|strong="H5769"\w*. +\p +\v 7 “\w If|strong="H3588"\w* \w a|strong="H3068"\w* man \w sells|strong="H4376"\w* \w his|strong="H3588"\w* \w daughter|strong="H1323"\w* \w to|strong="H3318"\w* \w be|strong="H3808"\w* \w a|strong="H3068"\w* \w female|strong="H1323"\w* \w servant|strong="H5650"\w*, \w she|strong="H3588"\w* \w shall|strong="H5650"\w* \w not|strong="H3808"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w as|strong="H3588"\w* \w the|strong="H3588"\w* \w male|strong="H5650"\w* \w servants|strong="H5650"\w* \w do|strong="H3318"\w*. +\v 8 If \w she|strong="H3808"\w* doesn’t \w please|strong="H7451"\w* \w her|strong="H6299"\w* \w master|strong="H4910"\w*, \w who|strong="H5971"\w* \w has|strong="H5869"\w* married \w her|strong="H6299"\w* \w to|strong="H5971"\w* \w himself|strong="H3808"\w*, \w then|strong="H3808"\w* \w he|strong="H3808"\w* \w shall|strong="H5971"\w* \w let|strong="H3808"\w* \w her|strong="H6299"\w* \w be|strong="H3808"\w* \w redeemed|strong="H6299"\w*. \w He|strong="H3808"\w* \w shall|strong="H5971"\w* \w have|strong="H5869"\w* \w no|strong="H3808"\w* \w right|strong="H5869"\w* \w to|strong="H5971"\w* \w sell|strong="H4376"\w* \w her|strong="H6299"\w* \w to|strong="H5971"\w* \w a|strong="H3068"\w* \w foreign|strong="H5237"\w* \w people|strong="H5971"\w*, since \w he|strong="H3808"\w* \w has|strong="H5869"\w* dealt deceitfully \w with|strong="H5971"\w* \w her|strong="H6299"\w*. +\v 9 \w If|strong="H1121"\w* \w he|strong="H6213"\w* marries \w her|strong="H6213"\w* \w to|strong="H6213"\w* \w his|strong="H6213"\w* \w son|strong="H1121"\w*, \w he|strong="H6213"\w* \w shall|strong="H1121"\w* \w deal|strong="H6213"\w* \w with|strong="H6213"\w* \w her|strong="H6213"\w* \w as|strong="H6213"\w* \w a|strong="H3068"\w* \w daughter|strong="H1323"\w*. +\v 10 If \w he|strong="H3808"\w* \w takes|strong="H3947"\w* \w another|strong="H3808"\w* wife \w to|strong="H3808"\w* \w himself|strong="H7607"\w*, \w he|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w diminish|strong="H1639"\w* \w her|strong="H3947"\w* \w food|strong="H7607"\w*, \w her|strong="H3947"\w* \w clothing|strong="H3682"\w*, \w and|strong="H3947"\w* \w her|strong="H3947"\w* marital \w rights|strong="H5772"\w*. +\v 11 If \w he|strong="H6213"\w* doesn’t \w do|strong="H6213"\w* \w these|strong="H6213"\w* \w three|strong="H7969"\w* \w things|strong="H7969"\w* \w for|strong="H6213"\w* \w her|strong="H3318"\w*, \w she|strong="H3808"\w* \w may|strong="H6213"\w* \w go|strong="H3318"\w* \w free|strong="H3318"\w* \w without|strong="H3808"\w* \w paying|strong="H2600"\w* \w any|strong="H6213"\w* \w money|strong="H3701"\w*. +\p +\v 12 “One \w who|strong="H5221"\w* \w strikes|strong="H5221"\w* \w a|strong="H3068"\w* \w man|strong="H4191"\w* \w so|strong="H4191"\w* \w that|strong="H4191"\w* \w he|strong="H5221"\w* \w dies|strong="H4191"\w* \w shall|strong="H4191"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*, +\v 13 \w but|strong="H3808"\w* \w not|strong="H3808"\w* \w if|strong="H7760"\w* \w it|strong="H7760"\w* \w is|strong="H3027"\w* unintentional, \w but|strong="H3808"\w* \w God|strong="H3808"\w* allows \w it|strong="H7760"\w* \w to|strong="H3027"\w* happen; \w then|strong="H7760"\w* \w I|strong="H7760"\w* \w will|strong="H3027"\w* \w appoint|strong="H7760"\w* \w you|strong="H7760"\w* \w a|strong="H3068"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w he|strong="H8033"\w* \w shall|strong="H3027"\w* \w flee|strong="H5127"\w*. +\v 14 \w If|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H4191"\w* schemes \w and|strong="H4196"\w* \w comes|strong="H5973"\w* \w presumptuously|strong="H2102"\w* \w on|strong="H5921"\w* \w his|strong="H3947"\w* \w neighbor|strong="H7453"\w* \w to|strong="H4191"\w* \w kill|strong="H2026"\w* \w him|strong="H5921"\w*, \w you|strong="H3588"\w* \w shall|strong="H7453"\w* \w take|strong="H3947"\w* \w him|strong="H5921"\w* \w from|strong="H5921"\w* \w my|strong="H3947"\w* \w altar|strong="H4196"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w may|strong="H4196"\w* \w die|strong="H4191"\w*. +\p +\v 15 “Anyone \w who|strong="H5221"\w* \w attacks|strong="H5221"\w* \w his|strong="H5221"\w* father \w or|strong="H4191"\w* \w his|strong="H5221"\w* mother \w shall|strong="H4191"\w* \w be|strong="H4191"\w* \w surely|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. +\p +\v 16 “Anyone \w who|strong="H4672"\w* \w kidnaps|strong="H1589"\w* \w someone|strong="H4191"\w* \w and|strong="H3027"\w* \w sells|strong="H4376"\w* \w him|strong="H3027"\w*, \w or|strong="H4376"\w* if \w he|strong="H3027"\w* \w is|strong="H3027"\w* \w found|strong="H4672"\w* \w in|strong="H4191"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w*, \w he|strong="H3027"\w* \w shall|strong="H3027"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. +\p +\v 17 “Anyone who \w curses|strong="H7043"\w* \w his|strong="H7043"\w* father \w or|strong="H4191"\w* \w his|strong="H7043"\w* mother \w shall|strong="H4191"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. +\p +\v 18 “\w If|strong="H3588"\w* men \w quarrel|strong="H7378"\w* \w and|strong="H4191"\w* \w one|strong="H3808"\w* \w strikes|strong="H5221"\w* \w the|strong="H3588"\w* \w other|strong="H7453"\w* \w with|strong="H7378"\w* \w a|strong="H3068"\w* stone, \w or|strong="H3808"\w* \w with|strong="H7378"\w* \w his|strong="H5221"\w* fist, \w and|strong="H4191"\w* \w he|strong="H3588"\w* doesn’t \w die|strong="H4191"\w*, \w but|strong="H3588"\w* \w is|strong="H4191"\w* confined \w to|strong="H4191"\w* \w bed|strong="H4904"\w*; +\v 19 if \w he|strong="H5414"\w* \w rises|strong="H6965"\w* \w again|strong="H6965"\w* \w and|strong="H1980"\w* \w walks|strong="H1980"\w* \w around|strong="H5921"\w* \w with|strong="H1980"\w* \w his|strong="H5414"\w* \w staff|strong="H4938"\w*, \w then|strong="H1980"\w* \w he|strong="H5414"\w* \w who|strong="H5221"\w* \w struck|strong="H5221"\w* \w him|strong="H5414"\w* \w shall|strong="H5352"\w* \w be|strong="H5414"\w* cleared; \w only|strong="H7535"\w* \w he|strong="H5414"\w* \w shall|strong="H5352"\w* \w pay|strong="H5414"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w loss|strong="H7674"\w* \w of|strong="H5921"\w* \w his|strong="H5414"\w* \w time|strong="H7674"\w*, \w and|strong="H1980"\w* \w shall|strong="H5352"\w* \w provide|strong="H5414"\w* \w for|strong="H5921"\w* \w his|strong="H5414"\w* \w healing|strong="H7495"\w* \w until|strong="H5921"\w* \w he|strong="H5414"\w* is \w thoroughly|strong="H7495"\w* \w healed|strong="H7495"\w*. +\p +\v 20 “\w If|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H4191"\w* \w strikes|strong="H5221"\w* \w his|strong="H5221"\w* \w servant|strong="H5650"\w* \w or|strong="H4191"\w* \w his|strong="H5221"\w* maid \w with|strong="H3027"\w* \w a|strong="H3068"\w* \w rod|strong="H7626"\w*, \w and|strong="H3027"\w* \w he|strong="H3588"\w* \w dies|strong="H4191"\w* \w under|strong="H8478"\w* \w his|strong="H5221"\w* \w hand|strong="H3027"\w*, \w the|strong="H3588"\w* \w man|strong="H4191"\w* \w shall|strong="H5650"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w punished|strong="H5358"\w*. +\v 21 Notwithstanding, \w if|strong="H3588"\w* \w his|strong="H3588"\w* servant gets \w up|strong="H5975"\w* \w after|strong="H3117"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w or|strong="H3808"\w* \w two|strong="H3808"\w*, \w he|strong="H1931"\w* \w shall|strong="H3117"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w punished|strong="H5358"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* servant \w is|strong="H1931"\w* \w his|strong="H3588"\w* \w property|strong="H3701"\w*. +\p +\v 22 “\w If|strong="H3588"\w* \w men|strong="H1167"\w* \w fight|strong="H5327"\w* \w and|strong="H3318"\w* \w hurt|strong="H5062"\w* \w a|strong="H3068"\w* \w pregnant|strong="H2030"\w* \w woman|strong="H2030"\w* \w so|strong="H1961"\w* \w that|strong="H3588"\w* \w she|strong="H3588"\w* \w gives|strong="H5414"\w* \w birth|strong="H3808"\w* \w prematurely|strong="H3318"\w*, \w and|strong="H3318"\w* \w yet|strong="H3588"\w* \w no|strong="H3808"\w* harm follows, \w he|strong="H3588"\w* \w shall|strong="H3808"\w* \w be|strong="H1961"\w* \w surely|strong="H3588"\w* \w fined|strong="H6064"\w* \w as|strong="H1961"\w* \w much|strong="H5921"\w* \w as|strong="H1961"\w* \w the|strong="H5921"\w* \w woman|strong="H2030"\w*’s \w husband|strong="H1167"\w* \w demands|strong="H5414"\w* \w and|strong="H3318"\w* \w the|strong="H5921"\w* \w judges|strong="H6414"\w* \w allow|strong="H5414"\w*. +\v 23 \w But|strong="H1961"\w* \w if|strong="H1961"\w* \w any|strong="H5315"\w* \w harm|strong="H5315"\w* follows, \w then|strong="H1961"\w* \w you|strong="H5414"\w* \w must|strong="H5315"\w* \w take|strong="H1961"\w* \w life|strong="H5315"\w* \w for|strong="H8478"\w* \w life|strong="H5315"\w*, +\v 24 \w eye|strong="H5869"\w* \w for|strong="H8478"\w* \w eye|strong="H5869"\w*, \w tooth|strong="H8127"\w* \w for|strong="H8478"\w* \w tooth|strong="H8127"\w*, \w hand|strong="H3027"\w* \w for|strong="H8478"\w* \w hand|strong="H3027"\w*, \w foot|strong="H7272"\w* \w for|strong="H8478"\w* \w foot|strong="H7272"\w*, +\v 25 \w burning|strong="H3555"\w* \w for|strong="H8478"\w* \w burning|strong="H3555"\w*, \w wound|strong="H6482"\w* \w for|strong="H8478"\w* \w wound|strong="H6482"\w*, \w and|strong="H8478"\w* \w bruise|strong="H2250"\w* \w for|strong="H8478"\w* \w bruise|strong="H2250"\w*. +\p +\v 26 “\w If|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H2670"\w* \w strikes|strong="H5221"\w* \w his|strong="H7971"\w* \w servant|strong="H5650"\w*’s \w eye|strong="H5869"\w*, \w or|strong="H5650"\w* \w his|strong="H7971"\w* maid’s \w eye|strong="H5869"\w*, \w and|strong="H7971"\w* \w destroys|strong="H7843"\w* \w it|strong="H3588"\w*, \w he|strong="H3588"\w* \w shall|strong="H5869"\w* \w let|strong="H7971"\w* \w him|strong="H5221"\w* \w go|strong="H7971"\w* \w free|strong="H2670"\w* \w for|strong="H3588"\w* \w his|strong="H7971"\w* \w eye|strong="H5869"\w*’s sake. +\v 27 If \w he|strong="H7971"\w* strikes \w out|strong="H7971"\w* \w his|strong="H7971"\w* \w male|strong="H5650"\w* \w servant|strong="H5650"\w*’s \w tooth|strong="H8127"\w*, \w or|strong="H5650"\w* \w his|strong="H7971"\w* female \w servant|strong="H5650"\w*’s \w tooth|strong="H8127"\w*, \w he|strong="H7971"\w* \w shall|strong="H5650"\w* \w let|strong="H7971"\w* \w the|strong="H8478"\w* \w servant|strong="H5650"\w* \w go|strong="H7971"\w* \w free|strong="H2670"\w* \w for|strong="H8478"\w* \w his|strong="H7971"\w* \w tooth|strong="H8127"\w*’s sake. +\p +\v 28 “\w If|strong="H3588"\w* \w a|strong="H3068"\w* \w bull|strong="H7794"\w* \w gores|strong="H5055"\w* \w a|strong="H3068"\w* \w man|strong="H1167"\w* \w or|strong="H3808"\w* \w a|strong="H3068"\w* woman \w to|strong="H4191"\w* \w death|strong="H4191"\w*, \w the|strong="H3588"\w* \w bull|strong="H7794"\w* \w shall|strong="H3808"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w stoned|strong="H5619"\w*, \w and|strong="H4191"\w* \w its|strong="H3588"\w* \w meat|strong="H1320"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H4191"\w* eaten; \w but|strong="H3588"\w* \w the|strong="H3588"\w* \w owner|strong="H1167"\w* \w of|strong="H1167"\w* \w the|strong="H3588"\w* \w bull|strong="H7794"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H4191"\w* held responsible. +\v 29 \w But|strong="H3808"\w* \w if|strong="H1931"\w* \w the|strong="H8104"\w* \w bull|strong="H7794"\w* \w had|strong="H1167"\w* \w a|strong="H3068"\w* \w habit|strong="H5056"\w* \w of|strong="H1167"\w* \w goring|strong="H5056"\w* \w in|strong="H4191"\w* \w the|strong="H8104"\w* \w past|strong="H8032"\w*, \w and|strong="H8104"\w* \w this|strong="H1931"\w* \w has|strong="H1571"\w* \w been|strong="H3808"\w* \w testified|strong="H5749"\w* \w to|strong="H4191"\w* \w its|strong="H8104"\w* \w owner|strong="H1167"\w*, \w and|strong="H8104"\w* \w he|strong="H1931"\w* \w has|strong="H1571"\w* \w not|strong="H3808"\w* \w kept|strong="H8104"\w* \w it|strong="H1931"\w* \w in|strong="H4191"\w*, \w but|strong="H3808"\w* \w it|strong="H1931"\w* \w has|strong="H1571"\w* \w killed|strong="H4191"\w* \w a|strong="H3068"\w* \w man|strong="H1167"\w* \w or|strong="H3808"\w* \w a|strong="H3068"\w* woman, \w the|strong="H8104"\w* \w bull|strong="H7794"\w* \w shall|strong="H3808"\w* \w be|strong="H4191"\w* \w stoned|strong="H5619"\w*, \w and|strong="H8104"\w* \w its|strong="H8104"\w* \w owner|strong="H1167"\w* \w shall|strong="H3808"\w* \w also|strong="H1571"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. +\v 30 If \w a|strong="H3068"\w* \w ransom|strong="H3724"\w* \w is|strong="H5315"\w* \w imposed|strong="H5414"\w* \w on|strong="H5921"\w* \w him|strong="H5414"\w*, \w then|strong="H5414"\w* \w he|strong="H3605"\w* \w shall|strong="H5315"\w* \w give|strong="H5414"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w redemption|strong="H6306"\w* \w of|strong="H5921"\w* \w his|strong="H3605"\w* \w life|strong="H5315"\w* \w whatever|strong="H3605"\w* \w is|strong="H5315"\w* \w imposed|strong="H5414"\w*. +\v 31 Whether \w it|strong="H6213"\w* \w has|strong="H2088"\w* \w gored|strong="H5055"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w or|strong="H1121"\w* \w has|strong="H2088"\w* \w gored|strong="H5055"\w* \w a|strong="H3068"\w* \w daughter|strong="H1323"\w*, \w according|strong="H4941"\w* \w to|strong="H6213"\w* \w this|strong="H2088"\w* \w judgment|strong="H4941"\w* \w it|strong="H6213"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w him|strong="H6213"\w*. +\v 32 If \w the|strong="H5414"\w* \w bull|strong="H7794"\w* \w gores|strong="H5055"\w* \w a|strong="H3068"\w* \w male|strong="H5650"\w* \w servant|strong="H5650"\w* \w or|strong="H3701"\w* \w a|strong="H3068"\w* female \w servant|strong="H5650"\w*, \w thirty|strong="H7970"\w* \w shekels|strong="H8255"\w*\f + \fr 21:32 \ft A shekel is about 10 grams or about 0.35 ounces, so 30 shekels is about 300 grams or about 10.6 ounces.\f* \w of|strong="H5650"\w* \w silver|strong="H3701"\w* \w shall|strong="H5650"\w* \w be|strong="H5414"\w* \w given|strong="H5414"\w* \w to|strong="H5414"\w* \w their|strong="H5414"\w* \w master|strong="H5414"\w*, \w and|strong="H3701"\w* \w the|strong="H5414"\w* \w ox|strong="H7794"\w* \w shall|strong="H5650"\w* \w be|strong="H5414"\w* \w stoned|strong="H5619"\w*. +\p +\v 33 “\w If|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H5307"\w* \w opens|strong="H6605"\w* \w a|strong="H3068"\w* pit, \w or|strong="H3808"\w* \w if|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H5307"\w* \w digs|strong="H3738"\w* \w a|strong="H3068"\w* pit \w and|strong="H8033"\w* doesn’t \w cover|strong="H3680"\w* \w it|strong="H3588"\w*, \w and|strong="H8033"\w* \w a|strong="H3068"\w* \w bull|strong="H7794"\w* \w or|strong="H3808"\w* \w a|strong="H3068"\w* \w donkey|strong="H2543"\w* \w falls|strong="H5307"\w* \w into|strong="H5307"\w* \w it|strong="H3588"\w*, +\v 34 \w the|strong="H7725"\w* \w owner|strong="H1167"\w* \w of|strong="H1167"\w* \w the|strong="H7725"\w* pit \w shall|strong="H3701"\w* \w make|strong="H7999"\w* \w it|strong="H7725"\w* \w good|strong="H7999"\w*. \w He|strong="H7725"\w* \w shall|strong="H3701"\w* \w give|strong="H7725"\w* \w money|strong="H3701"\w* \w to|strong="H7725"\w* \w its|strong="H7725"\w* \w owner|strong="H1167"\w*, \w and|strong="H3701"\w* \w the|strong="H7725"\w* \w dead|strong="H4191"\w* \w animal|strong="H1961"\w* \w shall|strong="H3701"\w* \w be|strong="H1961"\w* \w his|strong="H7725"\w*. +\p +\v 35 “\w If|strong="H3588"\w* \w one|strong="H2416"\w* \w man|strong="H4191"\w*’s \w bull|strong="H7794"\w* \w injures|strong="H5062"\w* \w another|strong="H7453"\w*’s, \w so|strong="H1571"\w* \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w dies|strong="H4191"\w*, \w then|strong="H1571"\w* \w they|strong="H3588"\w* \w shall|strong="H2416"\w* \w sell|strong="H4376"\w* \w the|strong="H3588"\w* \w live|strong="H2416"\w* \w bull|strong="H7794"\w*, \w and|strong="H3701"\w* \w divide|strong="H2673"\w* \w its|strong="H3588"\w* \w price|strong="H3701"\w*; \w and|strong="H3701"\w* \w they|strong="H3588"\w* \w shall|strong="H2416"\w* \w also|strong="H1571"\w* \w divide|strong="H2673"\w* \w the|strong="H3588"\w* \w dead|strong="H4191"\w* \w animal|strong="H2416"\w*. +\v 36 \w Or|strong="H3808"\w* \w if|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w known|strong="H3045"\w* \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w bull|strong="H7794"\w* \w was|strong="H1961"\w* \w in|strong="H4191"\w* \w the|strong="H3588"\w* \w habit|strong="H5056"\w* \w of|strong="H1167"\w* \w goring|strong="H5056"\w* \w in|strong="H4191"\w* \w the|strong="H3588"\w* \w past|strong="H8032"\w*, \w and|strong="H3045"\w* \w its|strong="H8478"\w* \w owner|strong="H1167"\w* \w has|strong="H1961"\w* \w not|strong="H3808"\w* \w kept|strong="H8104"\w* \w it|strong="H1931"\w* \w in|strong="H4191"\w*, \w he|strong="H1931"\w* \w shall|strong="H3808"\w* \w surely|strong="H4191"\w* \w pay|strong="H7999"\w* \w bull|strong="H7794"\w* \w for|strong="H3588"\w* \w bull|strong="H7794"\w*, \w and|strong="H3045"\w* \w the|strong="H3588"\w* \w dead|strong="H4191"\w* \w animal|strong="H1961"\w* \w shall|strong="H3808"\w* \w be|strong="H1961"\w* \w his|strong="H8104"\w* \w own|strong="H1961"\w*. +\c 22 +\p +\v 1 “If \w a|strong="H3068"\w* \w man|strong="H4191"\w* steals \w an|strong="H5221"\w* ox \w or|strong="H4191"\w* \w a|strong="H3068"\w* sheep, \w and|strong="H1818"\w* \w kills|strong="H5221"\w* \w it|strong="H5221"\w* \w or|strong="H4191"\w* sells \w it|strong="H5221"\w*, \w he|strong="H5221"\w* \w shall|strong="H1818"\w* pay five oxen \w for|strong="H4191"\w* \w an|strong="H5221"\w* ox, \w and|strong="H1818"\w* four sheep \w for|strong="H4191"\w* \w a|strong="H3068"\w* sheep. +\v 2 If \w the|strong="H5921"\w* thief \w is|strong="H8121"\w* found breaking \w in|strong="H5921"\w*, \w and|strong="H1818"\w* \w is|strong="H8121"\w* struck \w so|strong="H5921"\w* \w that|strong="H1818"\w* \w he|strong="H5921"\w* dies, there \w shall|strong="H1818"\w* \w be|strong="H8121"\w* no \w guilt|strong="H1818"\w* \w of|strong="H5921"\w* \w bloodshed|strong="H1818"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 3 If \w the|strong="H5704"\w* sun \w has|strong="H3027"\w* risen \w on|strong="H3027"\w* \w him|strong="H3027"\w*, \w he|strong="H5704"\w* \w is|strong="H3027"\w* guilty \w of|strong="H3027"\w* bloodshed. \w He|strong="H5704"\w* \w shall|strong="H3027"\w* \w make|strong="H7999"\w* \w restitution|strong="H7999"\w*. If \w he|strong="H5704"\w* \w has|strong="H3027"\w* nothing, then \w he|strong="H5704"\w* \w shall|strong="H3027"\w* \w be|strong="H3027"\w* sold \w for|strong="H5704"\w* \w his|strong="H3027"\w* \w theft|strong="H1591"\w*. +\v 4 \w If|strong="H3588"\w* \w the|strong="H3588"\w* stolen property \w is|strong="H7704"\w* found \w in|strong="H7971"\w* \w his|strong="H7971"\w* hand alive, whether \w it|strong="H3588"\w* \w is|strong="H7704"\w* ox, donkey, \w or|strong="H7704"\w* sheep, \w he|strong="H3588"\w* \w shall|strong="H7704"\w* \w pay|strong="H7999"\w* double. +\p +\v 5 “\w If|strong="H3588"\w* \w a|strong="H3068"\w* man \w causes|strong="H3318"\w* \w a|strong="H3068"\w* \w field|strong="H7704"\w* \w or|strong="H7704"\w* vineyard \w to|strong="H3318"\w* \w be|strong="H3318"\w* \w eaten|strong="H1197"\w* \w by|strong="H3318"\w* letting \w his|strong="H3588"\w* animal loose, \w and|strong="H7704"\w* \w it|strong="H3588"\w* \w grazes|strong="H1197"\w* \w in|strong="H4672"\w* another man’s \w field|strong="H7704"\w*, \w he|strong="H3588"\w* \w shall|strong="H7704"\w* \w make|strong="H7999"\w* \w restitution|strong="H7999"\w* \w from|strong="H3318"\w* \w the|strong="H3588"\w* best \w of|strong="H7704"\w* \w his|strong="H3588"\w* own \w field|strong="H7704"\w*, \w and|strong="H7704"\w* \w from|strong="H3318"\w* \w the|strong="H3588"\w* best \w of|strong="H7704"\w* \w his|strong="H3588"\w* own vineyard. +\p +\v 6 “\w If|strong="H3588"\w* fire breaks \w out|strong="H4672"\w*, \w and|strong="H3701"\w* catches \w in|strong="H1004"\w* thorns \w so|strong="H5414"\w* \w that|strong="H3588"\w* \w the|strong="H3588"\w* shocks \w of|strong="H1004"\w* grain, \w or|strong="H3701"\w* \w the|strong="H3588"\w* \w standing|strong="H7453"\w* grain, \w or|strong="H3701"\w* \w the|strong="H3588"\w* field \w are|strong="H1004"\w* consumed; \w he|strong="H3588"\w* \w who|strong="H8104"\w* kindled \w the|strong="H3588"\w* fire \w shall|strong="H1004"\w* \w surely|strong="H3588"\w* \w make|strong="H5414"\w* \w restitution|strong="H7999"\w*. +\p +\v 7 “If \w a|strong="H3068"\w* \w man|strong="H1167"\w* delivers \w to|strong="H7971"\w* \w his|strong="H7971"\w* \w neighbor|strong="H7453"\w* money \w or|strong="H3808"\w* \w stuff|strong="H4399"\w* \w to|strong="H7971"\w* \w keep|strong="H7126"\w*, \w and|strong="H7971"\w* \w it|strong="H7126"\w* \w is|strong="H3027"\w* stolen \w out|strong="H7971"\w* \w of|strong="H1004"\w* \w the|strong="H7971"\w* \w man|strong="H1167"\w*’s \w house|strong="H1004"\w*, if \w the|strong="H7971"\w* \w thief|strong="H1590"\w* \w is|strong="H3027"\w* \w found|strong="H4672"\w*, \w he|strong="H1004"\w* \w shall|strong="H1004"\w* pay double. +\v 8 \w If|strong="H3588"\w* \w the|strong="H3605"\w* thief isn’t found, \w then|strong="H2088"\w* \w the|strong="H3605"\w* master \w of|strong="H1697"\w* \w the|strong="H3605"\w* house \w shall|strong="H1931"\w* come \w near|strong="H5921"\w* \w to|strong="H5704"\w* \w God|strong="H7999"\w*, \w to|strong="H5704"\w* find \w out|strong="H5921"\w* whether \w or|strong="H5704"\w* \w not|strong="H2088"\w* \w he|strong="H1931"\w* \w has|strong="H3588"\w* \w put|strong="H8147"\w* \w his|strong="H3605"\w* hand \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w neighbor|strong="H7453"\w*’s goods. +\v 9 \w For|strong="H3588"\w* \w every|strong="H3605"\w* matter \w of|strong="H3605"\w* trespass, \w whether|strong="H7200"\w* \w it|strong="H5414"\w* \w is|strong="H3605"\w* \w for|strong="H3588"\w* \w ox|strong="H7794"\w*, \w for|strong="H3588"\w* \w donkey|strong="H2543"\w*, \w for|strong="H3588"\w* \w sheep|strong="H7716"\w*, \w for|strong="H3588"\w* clothing, \w or|strong="H7794"\w* \w for|strong="H3588"\w* \w any|strong="H3605"\w* \w kind|strong="H7453"\w* \w of|strong="H3605"\w* lost \w thing|strong="H3588"\w*, \w about|strong="H3605"\w* \w which|strong="H3588"\w* \w one|strong="H3605"\w* says, ‘\w This|strong="H5414"\w* \w is|strong="H3605"\w* \w mine|strong="H8104"\w*,’ \w the|strong="H3605"\w* \w cause|strong="H5414"\w* \w of|strong="H3605"\w* \w both|strong="H3605"\w* parties \w shall|strong="H7794"\w* come \w before|strong="H7200"\w* \w God|strong="H5414"\w*. \w He|strong="H3588"\w* \w whom|strong="H3588"\w* \w God|strong="H5414"\w* condemns \w shall|strong="H7794"\w* \w pay|strong="H5414"\w* double \w to|strong="H4191"\w* \w his|strong="H3605"\w* \w neighbor|strong="H7453"\w*. +\p +\v 10 “\w If|strong="H1961"\w* \w a|strong="H3068"\w* \w man|strong="H1167"\w* delivers \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w neighbor|strong="H7453"\w* \w a|strong="H3068"\w* donkey, \w an|strong="H1961"\w* ox, \w a|strong="H3068"\w* sheep, \w or|strong="H3808"\w* \w any|strong="H1961"\w* \w animal|strong="H1961"\w* \w to|strong="H3068"\w* \w keep|strong="H1961"\w*, \w and|strong="H3068"\w* \w it|strong="H1961"\w* dies \w or|strong="H3808"\w* \w is|strong="H3068"\w* injured, \w or|strong="H3808"\w* driven \w away|strong="H7971"\w*, \w no|strong="H3808"\w* \w man|strong="H1167"\w* seeing \w it|strong="H1961"\w*; +\v 11 \w the|strong="H5973"\w* oath \w of|strong="H1167"\w* \w Yahweh|strong="H3068"\w* \w shall|strong="H1167"\w* be \w between|strong="H5973"\w* them both, he \w has|strong="H1167"\w* not put \w his|strong="H5973"\w* hand \w on|strong="H5973"\w* \w his|strong="H5973"\w* neighbor’s goods; \w and|strong="H5973"\w* \w its|strong="H1167"\w* \w owner|strong="H1167"\w* \w shall|strong="H1167"\w* accept \w it|strong="H7999"\w*, \w and|strong="H5973"\w* he \w shall|strong="H1167"\w* not \w make|strong="H7999"\w* \w restitution|strong="H7999"\w*. +\v 12 \w But|strong="H3808"\w* if \w it|strong="H3808"\w* \w is|strong="H3808"\w* stolen \w from|strong="H3808"\w* \w him|strong="H7999"\w*, \w the|strong="H3808"\w* \w one|strong="H3808"\w* \w who|strong="H3808"\w* stole \w shall|strong="H3808"\w* \w make|strong="H7999"\w* \w restitution|strong="H7999"\w* \w to|strong="H3808"\w* \w its|strong="H3808"\w* owner. +\v 13 \w If|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H1167"\w* \w torn|strong="H7665"\w* \w in|strong="H4191"\w* \w pieces|strong="H7665"\w*, let \w him|strong="H5973"\w* \w bring|strong="H4191"\w* \w it|strong="H3588"\w* \w for|strong="H3588"\w* evidence. \w He|strong="H3588"\w* \w shall|strong="H7453"\w* \w not|strong="H3588"\w* \w make|strong="H7999"\w* \w good|strong="H7999"\w* \w that|strong="H3588"\w* \w which|strong="H3588"\w* \w was|strong="H7592"\w* \w torn|strong="H7665"\w*. +\p +\v 14 “\w If|strong="H1931"\w* \w a|strong="H3068"\w* \w man|strong="H7916"\w* borrows \w anything|strong="H3808"\w* \w of|strong="H1167"\w* \w his|strong="H3808"\w* neighbor’s, \w and|strong="H5973"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* injured, \w or|strong="H3808"\w* dies, \w its|strong="H1167"\w* \w owner|strong="H1167"\w* \w not|strong="H3808"\w* being \w with|strong="H5973"\w* \w it|strong="H1931"\w*, \w he|strong="H1931"\w* \w shall|strong="H3808"\w* \w surely|strong="H7999"\w* \w make|strong="H7999"\w* \w restitution|strong="H7999"\w*. +\v 15 \w If|strong="H3588"\w* \w its|strong="H3588"\w* owner \w is|strong="H3808"\w* \w with|strong="H5973"\w* \w it|strong="H3588"\w*, \w he|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w make|strong="H7901"\w* \w it|strong="H3588"\w* good. \w If|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H3808"\w* \w a|strong="H3068"\w* leased \w thing|strong="H3588"\w*, \w it|strong="H3588"\w* came \w for|strong="H3588"\w* \w its|strong="H3588"\w* lease. +\p +\v 16 “If \w a|strong="H3068"\w* man entices \w a|strong="H3068"\w* \w virgin|strong="H1330"\w* who isn’t \w pledged|strong="H5414"\w* \w to|strong="H5414"\w* \w be|strong="H5414"\w* married, \w and|strong="H3701"\w* \w lies|strong="H5414"\w* \w with|strong="H3701"\w* \w her|strong="H5414"\w*, \w he|strong="H5414"\w* \w shall|strong="H3701"\w* \w surely|strong="H5414"\w* \w pay|strong="H5414"\w* \w a|strong="H3068"\w* \w dowry|strong="H4119"\w* \w for|strong="H3701"\w* \w her|strong="H5414"\w* \w to|strong="H5414"\w* \w be|strong="H5414"\w* \w his|strong="H5414"\w* wife. +\v 17 If her father utterly refuses \w to|strong="H2421"\w* \w give|strong="H2421"\w* her \w to|strong="H2421"\w* \w him|strong="H2421"\w*, \w he|strong="H3808"\w* \w shall|strong="H3808"\w* pay money according \w to|strong="H2421"\w* \w the|strong="H3808"\w* dowry \w of|strong="H3808"\w* virgins. +\p +\v 18 “\w You|strong="H3605"\w* \w shall|strong="H4191"\w* \w not|strong="H4191"\w* allow \w a|strong="H3068"\w* sorceress \w to|strong="H4191"\w* live. +\p +\v 19 “Whoever \w has|strong="H3068"\w* sex \w with|strong="H3068"\w* \w an|strong="H3068"\w* animal \w shall|strong="H3068"\w* surely \w be|strong="H3068"\w* \w put|strong="H3068"\w* \w to|strong="H3068"\w* death. +\p +\v 20 “\w He|strong="H3588"\w* \w who|strong="H1616"\w* sacrifices \w to|strong="H1961"\w* \w any|strong="H1961"\w* \w god|strong="H3808"\w*, \w except|strong="H3588"\w* \w to|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w only|strong="H3588"\w*, \w shall|strong="H4714"\w* \w be|strong="H1961"\w* utterly destroyed. +\p +\v 21 “\w You|strong="H3605"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* wrong an alien \w or|strong="H3808"\w* \w oppress|strong="H6031"\w* \w him|strong="H3605"\w*, \w for|strong="H3605"\w* \w you|strong="H3605"\w* \w were|strong="H3605"\w* aliens \w in|strong="H3808"\w* \w the|strong="H3605"\w* land \w of|strong="H3605"\w* Egypt. +\p +\v 22 “\w You|strong="H3588"\w* \w shall|strong="H8085"\w* \w not|strong="H3588"\w* take advantage \w of|strong="H8085"\w* \w any|strong="H3588"\w* widow \w or|strong="H8085"\w* fatherless child. +\v 23 \w If|strong="H1961"\w* \w you|strong="H1961"\w* \w take|strong="H1961"\w* advantage \w of|strong="H1121"\w* \w them|strong="H2026"\w* \w at|strong="H1961"\w* \w all|strong="H2026"\w*, \w and|strong="H1121"\w* \w they|strong="H2719"\w* cry \w at|strong="H1961"\w* \w all|strong="H2026"\w* \w to|strong="H1961"\w* \w me|strong="H2026"\w*, \w I|strong="H1121"\w* \w will|strong="H1961"\w* \w surely|strong="H1961"\w* hear \w their|strong="H1961"\w* cry; +\v 24 \w and|strong="H3701"\w* \w my|strong="H7760"\w* wrath \w will|strong="H1961"\w* grow hot, \w and|strong="H3701"\w* \w I|strong="H5921"\w* \w will|strong="H1961"\w* kill \w you|strong="H5921"\w* \w with|strong="H5973"\w* \w the|strong="H5921"\w* sword; \w and|strong="H3701"\w* \w your|strong="H5921"\w* wives \w shall|strong="H5971"\w* \w be|strong="H1961"\w* \w widows|strong="H5971"\w*, \w and|strong="H3701"\w* \w your|strong="H5921"\w* children fatherless. +\p +\v 25 “If \w you|strong="H5704"\w* lend money \w to|strong="H5704"\w* any \w of|strong="H7725"\w* \w my|strong="H7725"\w* people \w with|strong="H7725"\w* \w you|strong="H5704"\w* who \w is|strong="H8121"\w* poor, \w you|strong="H5704"\w* \w shall|strong="H7453"\w* \w not|strong="H7725"\w* \w be|strong="H8121"\w* \w to|strong="H5704"\w* \w him|strong="H7725"\w* \w as|strong="H5704"\w* \w a|strong="H3068"\w* creditor. \w You|strong="H5704"\w* \w shall|strong="H7453"\w* \w not|strong="H7725"\w* charge \w him|strong="H7725"\w* interest. +\v 26 \w If|strong="H3588"\w* \w you|strong="H3588"\w* \w take|strong="H1961"\w* \w your|strong="H8085"\w* neighbor’s \w garment|strong="H8071"\w* \w as|strong="H1961"\w* collateral, \w you|strong="H3588"\w* \w shall|strong="H1931"\w* restore \w it|strong="H1931"\w* \w to|strong="H1961"\w* \w him|strong="H1931"\w* \w before|strong="H3682"\w* \w the|strong="H8085"\w* sun goes \w down|strong="H7901"\w*, +\v 27 \w for|strong="H5971"\w* \w that|strong="H5971"\w* \w is|strong="H5971"\w* \w his|strong="H7043"\w* only covering, \w it|strong="H7043"\w* \w is|strong="H5971"\w* \w his|strong="H7043"\w* garment \w for|strong="H5971"\w* \w his|strong="H7043"\w* skin. What \w would|strong="H5971"\w* \w he|strong="H3808"\w* sleep \w in|strong="H5971"\w*? \w It|strong="H7043"\w* \w will|strong="H5971"\w* happen, when \w he|strong="H3808"\w* cries \w to|strong="H5971"\w* \w me|strong="H3808"\w*, \w that|strong="H5971"\w* \w I|strong="H3808"\w* \w will|strong="H5971"\w* hear, \w for|strong="H5971"\w* \w I|strong="H3808"\w* am gracious. +\p +\v 28 “\w You|strong="H5414"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* blaspheme \w God|strong="H5414"\w*, \w nor|strong="H3808"\w* curse \w a|strong="H3068"\w* ruler \w of|strong="H1121"\w* \w your|strong="H5414"\w* \w people|strong="H1121"\w*. +\p +\v 29 “\w You|strong="H5414"\w* \w shall|strong="H3117"\w* \w not|strong="H6213"\w* delay \w to|strong="H1961"\w* \w offer|strong="H6213"\w* \w from|strong="H3117"\w* \w your|strong="H5414"\w* harvest \w and|strong="H3117"\w* \w from|strong="H3117"\w* \w the|strong="H5414"\w* outflow \w of|strong="H3117"\w* \w your|strong="H5414"\w* presses. +\p “\w You|strong="H5414"\w* \w shall|strong="H3117"\w* \w give|strong="H5414"\w* \w the|strong="H5414"\w* firstborn \w of|strong="H3117"\w* \w your|strong="H5414"\w* sons \w to|strong="H1961"\w* \w me|strong="H5414"\w*. +\v 30 \w You|strong="H3808"\w* \w shall|strong="H7704"\w* do likewise \w with|strong="H1320"\w* \w your|strong="H3808"\w* cattle \w and|strong="H7704"\w* \w with|strong="H1320"\w* \w your|strong="H3808"\w* sheep. \w It|strong="H1961"\w* \w shall|strong="H7704"\w* \w be|strong="H1961"\w* \w with|strong="H1320"\w* \w its|strong="H1961"\w* mother seven days, \w then|strong="H1961"\w* \w on|strong="H1961"\w* \w the|strong="H1961"\w* eighth \w day|strong="H6944"\w* \w you|strong="H3808"\w* \w shall|strong="H7704"\w* \w give|strong="H7704"\w* \w it|strong="H1961"\w* \w to|strong="H1961"\w* \w me|strong="H7993"\w*. +\p +\v 31 “You shall be holy men to me, therefore you shall not eat any meat that is torn by animals in the field. You shall cast it to the dogs. +\c 23 +\p +\v 1 “\w You|strong="H5973"\w* \w shall|strong="H7563"\w* \w not|strong="H3808"\w* \w spread|strong="H5375"\w* \w a|strong="H3068"\w* \w false|strong="H7723"\w* \w report|strong="H8088"\w*. Don’t \w join|strong="H5973"\w* \w your|strong="H5375"\w* \w hand|strong="H3027"\w* \w with|strong="H5973"\w* \w the|strong="H5375"\w* \w wicked|strong="H7563"\w* \w to|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w malicious|strong="H2555"\w* \w witness|strong="H5707"\w*. +\p +\v 2 “\w You|strong="H5921"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w follow|strong="H1961"\w* \w a|strong="H3068"\w* crowd \w to|strong="H1961"\w* do \w evil|strong="H7451"\w*. \w You|strong="H5921"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w testify|strong="H6030"\w* \w in|strong="H5921"\w* court \w to|strong="H1961"\w* side \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w multitude|strong="H7227"\w* \w to|strong="H1961"\w* \w pervert|strong="H5186"\w* justice. +\v 3 \w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* favor \w a|strong="H3068"\w* \w poor|strong="H1800"\w* \w man|strong="H1800"\w* \w in|strong="H3808"\w* \w his|strong="H3808"\w* \w cause|strong="H7379"\w*. +\p +\v 4 “\w If|strong="H3588"\w* \w you|strong="H3588"\w* \w meet|strong="H6293"\w* \w your|strong="H7725"\w* enemy’s \w ox|strong="H7794"\w* \w or|strong="H7794"\w* \w his|strong="H7725"\w* \w donkey|strong="H2543"\w* \w going|strong="H2543"\w* \w astray|strong="H8582"\w*, \w you|strong="H3588"\w* \w shall|strong="H7794"\w* \w surely|strong="H3588"\w* \w bring|strong="H7725"\w* \w it|strong="H3588"\w* \w back|strong="H7725"\w* \w to|strong="H7725"\w* \w him|strong="H7725"\w* \w again|strong="H7725"\w*. +\v 5 \w If|strong="H3588"\w* \w you|strong="H3588"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w donkey|strong="H2543"\w* \w of|strong="H8478"\w* \w him|strong="H7200"\w* \w who|strong="H3588"\w* \w hates|strong="H8130"\w* \w you|strong="H3588"\w* fallen \w down|strong="H7257"\w* \w under|strong="H8478"\w* \w his|strong="H7200"\w* \w burden|strong="H4853"\w*, don’t \w leave|strong="H5800"\w* \w him|strong="H7200"\w*. \w You|strong="H3588"\w* \w shall|strong="H8478"\w* \w surely|strong="H3588"\w* \w help|strong="H5800"\w* \w him|strong="H7200"\w* \w with|strong="H5973"\w* \w it|strong="H3588"\w*. +\p +\v 6 “\w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* deny \w justice|strong="H4941"\w* \w to|strong="H4941"\w* \w your|strong="H5186"\w* poor \w people|strong="H3808"\w* \w in|strong="H3808"\w* \w their|strong="H5186"\w* lawsuits. +\p +\v 7 “\w Keep|strong="H7368"\w* \w far|strong="H7368"\w* \w from|strong="H7368"\w* \w a|strong="H3068"\w* \w false|strong="H8267"\w* \w charge|strong="H1697"\w*, \w and|strong="H1697"\w* don’t \w kill|strong="H2026"\w* \w the|strong="H3588"\w* \w innocent|strong="H5355"\w* \w and|strong="H1697"\w* \w righteous|strong="H6662"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H6662"\w* \w not|strong="H3808"\w* \w justify|strong="H6663"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w*. +\p +\v 8 “\w You|strong="H3588"\w* \w shall|strong="H6662"\w* \w take|strong="H3947"\w* \w no|strong="H3808"\w* \w bribe|strong="H7810"\w*, \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w bribe|strong="H7810"\w* \w blinds|strong="H5786"\w* \w those|strong="H3588"\w* \w who|strong="H6662"\w* \w have|strong="H1697"\w* sight \w and|strong="H1697"\w* \w perverts|strong="H5557"\w* \w the|strong="H3588"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H3588"\w* \w righteous|strong="H6662"\w*. +\p +\v 9 “\w You|strong="H3588"\w* \w shall|strong="H5315"\w* \w not|strong="H3808"\w* \w oppress|strong="H3905"\w* \w an|strong="H1961"\w* \w alien|strong="H1616"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w know|strong="H3045"\w* \w the|strong="H3588"\w* \w heart|strong="H5315"\w* \w of|strong="H5315"\w* \w an|strong="H1961"\w* \w alien|strong="H1616"\w*, \w since|strong="H3588"\w* \w you|strong="H3588"\w* \w were|strong="H1961"\w* \w aliens|strong="H1616"\w* \w in|strong="H5315"\w* \w the|strong="H3588"\w* land \w of|strong="H5315"\w* \w Egypt|strong="H4714"\w*. +\p +\v 10 “\w For|strong="H8141"\w* \w six|strong="H8337"\w* \w years|strong="H8141"\w* \w you|strong="H8141"\w* \w shall|strong="H8141"\w* \w sow|strong="H2232"\w* \w your|strong="H2232"\w* land, \w and|strong="H8141"\w* \w shall|strong="H8141"\w* gather \w in|strong="H8141"\w* its \w increase|strong="H8393"\w*, +\v 11 \w but|strong="H3651"\w* \w the|strong="H6213"\w* \w seventh|strong="H7637"\w* \w year|strong="H2416"\w* \w you|strong="H6213"\w* \w shall|strong="H5971"\w* \w let|strong="H8058"\w* \w it|strong="H6213"\w* \w rest|strong="H3499"\w* \w and|strong="H5971"\w* \w lie|strong="H5203"\w* \w fallow|strong="H5203"\w*, \w that|strong="H5971"\w* \w the|strong="H6213"\w* poor \w of|strong="H7704"\w* \w your|strong="H6213"\w* \w people|strong="H5971"\w* \w may|strong="H5971"\w* eat; \w and|strong="H5971"\w* \w what|strong="H6213"\w* \w they|strong="H3651"\w* \w leave|strong="H5203"\w* \w the|strong="H6213"\w* \w animal|strong="H2416"\w* \w of|strong="H7704"\w* \w the|strong="H6213"\w* \w field|strong="H7704"\w* \w shall|strong="H5971"\w* eat. \w In|strong="H6213"\w* \w the|strong="H6213"\w* \w same|strong="H3651"\w* \w way|strong="H3651"\w*, \w you|strong="H6213"\w* \w shall|strong="H5971"\w* \w deal|strong="H6213"\w* \w with|strong="H6213"\w* \w your|strong="H6213"\w* \w vineyard|strong="H3754"\w* \w and|strong="H5971"\w* \w with|strong="H6213"\w* \w your|strong="H6213"\w* \w olive|strong="H2132"\w* \w grove|strong="H2132"\w*. +\p +\v 12 “\w Six|strong="H8337"\w* \w days|strong="H3117"\w* \w you|strong="H3117"\w* \w shall|strong="H1121"\w* \w do|strong="H6213"\w* \w your|strong="H6213"\w* \w work|strong="H4639"\w*, \w and|strong="H1121"\w* \w on|strong="H3117"\w* \w the|strong="H6213"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w you|strong="H3117"\w* \w shall|strong="H1121"\w* \w rest|strong="H5117"\w*, \w that|strong="H3117"\w* \w your|strong="H6213"\w* \w ox|strong="H7794"\w* \w and|strong="H1121"\w* \w your|strong="H6213"\w* \w donkey|strong="H2543"\w* \w may|strong="H6213"\w* \w have|strong="H1121"\w* \w rest|strong="H5117"\w*, \w and|strong="H1121"\w* \w the|strong="H6213"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w your|strong="H6213"\w* servant, \w and|strong="H1121"\w* \w the|strong="H6213"\w* \w alien|strong="H1616"\w* \w may|strong="H6213"\w* \w be|strong="H1121"\w* \w refreshed|strong="H5314"\w*. +\p +\v 13 “\w Be|strong="H3808"\w* \w careful|strong="H8104"\w* \w to|strong="H5921"\w* \w do|strong="H8104"\w* \w all|strong="H3605"\w* \w things|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H5921"\w* \w have|strong="H3605"\w* \w said|strong="H8085"\w* \w to|strong="H5921"\w* \w you|strong="H3605"\w*; \w and|strong="H8085"\w* don’t \w invoke|strong="H2142"\w* \w the|strong="H3605"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w other|strong="H3605"\w* gods \w or|strong="H3808"\w* \w even|strong="H3808"\w* \w let|strong="H3808"\w* \w them|strong="H5921"\w* \w be|strong="H3808"\w* \w heard|strong="H8085"\w* \w out|strong="H5921"\w* \w of|strong="H8034"\w* \w your|strong="H3605"\w* \w mouth|strong="H6310"\w*. +\p +\v 14 “\w You|strong="H8141"\w* \w shall|strong="H7272"\w* \w observe|strong="H2287"\w* \w a|strong="H3068"\w* \w feast|strong="H2287"\w* \w to|strong="H8141"\w* me \w three|strong="H7969"\w* \w times|strong="H7272"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w*. +\v 15 \w You|strong="H3588"\w* \w shall|strong="H3117"\w* \w observe|strong="H8104"\w* \w the|strong="H6440"\w* \w feast|strong="H2282"\w* \w of|strong="H3117"\w* \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w*. \w Seven|strong="H7651"\w* \w days|strong="H3117"\w* \w you|strong="H3588"\w* \w shall|strong="H3117"\w* eat \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w*, \w as|strong="H3117"\w* \w I|strong="H3588"\w* \w commanded|strong="H6680"\w* \w you|strong="H3588"\w*, \w at|strong="H2320"\w* \w the|strong="H6440"\w* \w time|strong="H3117"\w* \w appointed|strong="H4150"\w* \w in|strong="H3117"\w* \w the|strong="H6440"\w* \w month|strong="H2320"\w* Abib (\w for|strong="H3588"\w* \w in|strong="H3117"\w* \w it|strong="H3588"\w* \w you|strong="H3588"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w*), \w and|strong="H3117"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w shall|strong="H3117"\w* \w appear|strong="H7200"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w empty|strong="H7387"\w*. +\v 16 \w And|strong="H7704"\w* \w the|strong="H4480"\w* \w feast|strong="H2282"\w* \w of|strong="H8141"\w* \w harvest|strong="H7105"\w*, \w the|strong="H4480"\w* \w first|strong="H1061"\w* \w fruits|strong="H1061"\w* \w of|strong="H8141"\w* \w your|strong="H4480"\w* \w labors|strong="H4639"\w*, \w which|strong="H7704"\w* \w you|strong="H4480"\w* \w sow|strong="H2232"\w* \w in|strong="H8141"\w* \w the|strong="H4480"\w* \w field|strong="H7704"\w*; \w and|strong="H7704"\w* \w the|strong="H4480"\w* \w feast|strong="H2282"\w* \w of|strong="H8141"\w* ingathering, \w at|strong="H3318"\w* \w the|strong="H4480"\w* \w end|strong="H3318"\w* \w of|strong="H8141"\w* \w the|strong="H4480"\w* \w year|strong="H8141"\w*, \w when|strong="H3318"\w* \w you|strong="H4480"\w* gather \w in|strong="H8141"\w* \w your|strong="H4480"\w* \w labors|strong="H4639"\w* \w out|strong="H3318"\w* \w of|strong="H8141"\w* \w the|strong="H4480"\w* \w field|strong="H7704"\w*. +\v 17 \w Three|strong="H7969"\w* \w times|strong="H6471"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w year|strong="H8141"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w males|strong="H2138"\w* \w shall|strong="H3068"\w* \w appear|strong="H7200"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 18 “\w You|strong="H5921"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w offer|strong="H2076"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w of|strong="H2077"\w* \w my|strong="H5921"\w* \w sacrifice|strong="H2077"\w* \w with|strong="H5921"\w* \w leavened|strong="H2557"\w* \w bread|strong="H2557"\w*. \w The|strong="H5921"\w* \w fat|strong="H2459"\w* \w of|strong="H2077"\w* \w my|strong="H5921"\w* \w feast|strong="H2282"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w remain|strong="H3885"\w* \w all|strong="H5704"\w* \w night|strong="H3885"\w* \w until|strong="H5704"\w* \w the|strong="H5921"\w* \w morning|strong="H1242"\w*. +\p +\v 19 \w You|strong="H3808"\w* \w shall|strong="H3068"\w* bring \w the|strong="H3068"\w* \w first|strong="H7225"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w first|strong="H7225"\w* \w fruits|strong="H1061"\w* \w of|strong="H1004"\w* \w your|strong="H3068"\w* ground into \w the|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\p “\w You|strong="H3808"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w boil|strong="H1310"\w* \w a|strong="H3068"\w* \w young|strong="H1423"\w* \w goat|strong="H1423"\w* \w in|strong="H3068"\w* \w its|strong="H1310"\w* mother’s \w milk|strong="H2461"\w*. +\p +\v 20 “\w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w send|strong="H7971"\w* \w an|strong="H7971"\w* \w angel|strong="H4397"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w to|strong="H7971"\w* \w keep|strong="H8104"\w* \w you|strong="H6440"\w* \w by|strong="H1870"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w*, \w and|strong="H7971"\w* \w to|strong="H7971"\w* bring \w you|strong="H6440"\w* \w into|strong="H4397"\w* \w the|strong="H6440"\w* \w place|strong="H4725"\w* \w which|strong="H4725"\w* \w I|strong="H2009"\w* \w have|strong="H8104"\w* \w prepared|strong="H3559"\w*. +\v 21 \w Pay|strong="H8104"\w* \w attention|strong="H8085"\w* \w to|strong="H8104"\w* \w him|strong="H6440"\w*, \w and|strong="H6963"\w* \w listen|strong="H8085"\w* \w to|strong="H8104"\w* \w his|strong="H5375"\w* \w voice|strong="H6963"\w*. Don’t \w provoke|strong="H4843"\w* \w him|strong="H6440"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w pardon|strong="H5375"\w* \w your|strong="H5375"\w* disobedience, \w for|strong="H3588"\w* \w my|strong="H8104"\w* \w name|strong="H8034"\w* \w is|strong="H8034"\w* \w in|strong="H8085"\w* \w him|strong="H6440"\w*. +\v 22 \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w indeed|strong="H3588"\w* \w listen|strong="H8085"\w* \w to|strong="H1696"\w* \w his|strong="H3605"\w* \w voice|strong="H6963"\w*, \w and|strong="H6963"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w speak|strong="H1696"\w*, \w then|strong="H1696"\w* \w I|strong="H3588"\w* \w will|strong="H8085"\w* \w be|strong="H6963"\w* \w an|strong="H6213"\w* \w enemy|strong="H6887"\w* \w to|strong="H1696"\w* \w your|strong="H3605"\w* \w enemies|strong="H6887"\w*, \w and|strong="H6963"\w* \w an|strong="H6213"\w* \w adversary|strong="H6887"\w* \w to|strong="H1696"\w* \w your|strong="H3605"\w* \w adversaries|strong="H6887"\w*. +\v 23 \w For|strong="H3588"\w* \w my|strong="H3588"\w* \w angel|strong="H4397"\w* \w shall|strong="H6440"\w* \w go|strong="H3212"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*, \w and|strong="H3212"\w* \w bring|strong="H3212"\w* \w you|strong="H3588"\w* \w in|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H6440"\w* Amorite, \w the|strong="H6440"\w* \w Hittite|strong="H2850"\w*, \w the|strong="H6440"\w* \w Perizzite|strong="H6522"\w*, \w the|strong="H6440"\w* \w Canaanite|strong="H3669"\w*, \w the|strong="H6440"\w* \w Hivite|strong="H2340"\w*, \w and|strong="H3212"\w* \w the|strong="H6440"\w* \w Jebusite|strong="H2983"\w*; \w and|strong="H3212"\w* \w I|strong="H3588"\w* \w will|strong="H4397"\w* \w cut|strong="H3582"\w* \w them|strong="H6440"\w* \w off|strong="H3582"\w*. +\v 24 \w You|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w bow|strong="H7812"\w* \w down|strong="H7812"\w* \w to|strong="H6213"\w* \w their|strong="H5647"\w* gods, \w nor|strong="H3808"\w* \w serve|strong="H5647"\w* \w them|strong="H6213"\w*, \w nor|strong="H3808"\w* \w follow|strong="H6213"\w* \w their|strong="H5647"\w* \w practices|strong="H6213"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3808"\w* \w utterly|strong="H2040"\w* \w overthrow|strong="H2040"\w* \w them|strong="H6213"\w* \w and|strong="H6213"\w* demolish \w their|strong="H5647"\w* \w pillars|strong="H4676"\w*. +\v 25 \w You|strong="H1288"\w* \w shall|strong="H3068"\w* \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w bless|strong="H1288"\w* \w your|strong="H3068"\w* \w bread|strong="H3899"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w water|strong="H4325"\w*, \w and|strong="H3068"\w* \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w take|strong="H5493"\w* \w sickness|strong="H4245"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* \w among|strong="H7130"\w* \w you|strong="H1288"\w*. +\v 26 \w No|strong="H3808"\w* \w one|strong="H3808"\w* \w will|strong="H1961"\w* \w miscarry|strong="H7921"\w* \w or|strong="H3808"\w* \w be|strong="H1961"\w* \w barren|strong="H6135"\w* \w in|strong="H3117"\w* \w your|strong="H1961"\w* land. \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w fulfill|strong="H4390"\w* \w the|strong="H3117"\w* \w number|strong="H4557"\w* \w of|strong="H3117"\w* \w your|strong="H1961"\w* \w days|strong="H3117"\w*. +\v 27 \w I|strong="H5414"\w* \w will|strong="H5971"\w* \w send|strong="H7971"\w* \w my|strong="H5414"\w* terror \w before|strong="H6440"\w* \w you|strong="H5414"\w*, \w and|strong="H7971"\w* \w will|strong="H5971"\w* \w confuse|strong="H2000"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w to|strong="H7971"\w* \w whom|strong="H6440"\w* \w you|strong="H5414"\w* \w come|strong="H5971"\w*, \w and|strong="H7971"\w* \w I|strong="H5414"\w* \w will|strong="H5971"\w* \w make|strong="H5414"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* enemies \w turn|strong="H5414"\w* \w their|strong="H3605"\w* \w backs|strong="H6203"\w* \w to|strong="H7971"\w* \w you|strong="H5414"\w*. +\v 28 \w I|strong="H6440"\w* \w will|strong="H7971"\w* \w send|strong="H7971"\w* \w the|strong="H6440"\w* \w hornet|strong="H6880"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w which|strong="H3669"\w* \w will|strong="H7971"\w* \w drive|strong="H1644"\w* \w out|strong="H7971"\w* \w the|strong="H6440"\w* \w Hivite|strong="H2340"\w*, \w the|strong="H6440"\w* \w Canaanite|strong="H3669"\w*, \w and|strong="H7971"\w* \w the|strong="H6440"\w* \w Hittite|strong="H2850"\w*, \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*. +\v 29 \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w drive|strong="H1644"\w* \w them|strong="H5921"\w* \w out|strong="H1644"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w in|strong="H8141"\w* \w one|strong="H3808"\w* \w year|strong="H8141"\w*, \w lest|strong="H6435"\w* \w the|strong="H6440"\w* \w land|strong="H7704"\w* \w become|strong="H1961"\w* \w desolate|strong="H8077"\w*, \w and|strong="H6440"\w* \w the|strong="H6440"\w* \w animals|strong="H2416"\w* \w of|strong="H8141"\w* \w the|strong="H6440"\w* \w field|strong="H7704"\w* \w multiply|strong="H7227"\w* \w against|strong="H5921"\w* \w you|strong="H6440"\w*. +\v 30 \w Little|strong="H4592"\w* \w by|strong="H5704"\w* \w little|strong="H4592"\w* \w I|strong="H5704"\w* \w will|strong="H5704"\w* \w drive|strong="H1644"\w* \w them|strong="H6440"\w* \w out|strong="H1644"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w until|strong="H5704"\w* \w you|strong="H6440"\w* \w have|strong="H5157"\w* \w increased|strong="H6509"\w* \w and|strong="H6440"\w* \w inherit|strong="H5157"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*. +\v 31 \w I|strong="H3588"\w* \w will|strong="H3027"\w* \w set|strong="H5414"\w* \w your|strong="H5414"\w* \w border|strong="H1366"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H6440"\w* \w sea|strong="H3220"\w* \w of|strong="H3027"\w* \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H3027"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w wilderness|strong="H4057"\w* \w to|strong="H5704"\w* \w the|strong="H6440"\w* \w River|strong="H5104"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3027"\w* \w deliver|strong="H5414"\w* \w the|strong="H6440"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3027"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w into|strong="H3220"\w* \w your|strong="H5414"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w you|strong="H3588"\w* \w shall|strong="H3027"\w* \w drive|strong="H1644"\w* \w them|strong="H5414"\w* \w out|strong="H1644"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*. +\v 32 \w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w make|strong="H3772"\w* \w no|strong="H3808"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w them|strong="H3772"\w*, \w nor|strong="H3808"\w* \w with|strong="H1285"\w* \w their|strong="H3772"\w* gods. +\v 33 \w They|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w your|strong="H3588"\w* land, \w lest|strong="H6435"\w* \w they|strong="H3588"\w* \w make|strong="H5647"\w* \w you|strong="H3588"\w* \w sin|strong="H2398"\w* \w against|strong="H2398"\w* \w me|strong="H1961"\w*, \w for|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w serve|strong="H5647"\w* \w their|strong="H5647"\w* gods, \w it|strong="H3588"\w* \w will|strong="H1961"\w* \w surely|strong="H3588"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w snare|strong="H4170"\w* \w to|strong="H1961"\w* \w you|strong="H3588"\w*.” +\c 24 +\p +\v 1 \w He|strong="H3068"\w* said \w to|strong="H3478"\w* \w Moses|strong="H4872"\w*, “\w Come|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w you|strong="H5927"\w*, \w and|strong="H4872"\w* Aaron, \w Nadab|strong="H5070"\w*, \w and|strong="H4872"\w* Abihu, \w and|strong="H4872"\w* \w seventy|strong="H7657"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w elders|strong="H2205"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*; \w and|strong="H4872"\w* \w worship|strong="H7812"\w* \w from|strong="H5927"\w* \w a|strong="H3068"\w* \w distance|strong="H7350"\w*. +\v 2 \w Moses|strong="H4872"\w* alone \w shall|strong="H3068"\w* \w come|strong="H5927"\w* \w near|strong="H5066"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w but|strong="H3808"\w* \w they|strong="H1992"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w come|strong="H5927"\w* \w near|strong="H5066"\w*. \w The|strong="H3068"\w* \w people|strong="H5971"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*.” +\p +\v 3 \w Moses|strong="H4872"\w* \w came|strong="H3068"\w* \w and|strong="H4872"\w* \w told|strong="H1696"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w all|strong="H3605"\w* \w Yahweh|strong="H3068"\w*’s \w words|strong="H1697"\w*, \w and|strong="H4872"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w ordinances|strong="H4941"\w*; \w and|strong="H4872"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w answered|strong="H6030"\w* \w with|strong="H3068"\w* \w one|strong="H3605"\w* \w voice|strong="H6963"\w*, \w and|strong="H4872"\w* \w said|strong="H1696"\w*, “\w All|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w will|strong="H3068"\w* \w we|strong="H3068"\w* \w do|strong="H6213"\w*.” +\p +\v 4 \w Moses|strong="H4872"\w* \w wrote|strong="H3789"\w* \w all|strong="H3605"\w* \w Yahweh|strong="H3068"\w*’s \w words|strong="H1697"\w*, \w then|strong="H4872"\w* \w rose|strong="H7925"\w* \w up|strong="H1129"\w* \w early|strong="H7925"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w* \w and|strong="H4872"\w* \w built|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w at|strong="H3478"\w* \w the|strong="H3605"\w* base \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w mountain|strong="H2022"\w*, \w with|strong="H3068"\w* \w twelve|strong="H8147"\w* \w pillars|strong="H4676"\w* \w for|strong="H8478"\w* \w the|strong="H3605"\w* \w twelve|strong="H8147"\w* \w tribes|strong="H7626"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\v 5 \w He|strong="H3068"\w* \w sent|strong="H7971"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w who|strong="H3068"\w* \w offered|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w* \w and|strong="H1121"\w* \w sacrificed|strong="H2076"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w of|strong="H1121"\w* cattle \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*. +\v 6 \w Moses|strong="H4872"\w* \w took|strong="H3947"\w* \w half|strong="H2677"\w* \w of|strong="H4196"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w and|strong="H4872"\w* \w put|strong="H7760"\w* \w it|strong="H7760"\w* \w in|strong="H5921"\w* basins, \w and|strong="H4872"\w* \w half|strong="H2677"\w* \w of|strong="H4196"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w he|strong="H5921"\w* \w sprinkled|strong="H2236"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*. +\v 7 \w He|strong="H6213"\w* \w took|strong="H3947"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w covenant|strong="H1285"\w* \w and|strong="H3068"\w* \w read|strong="H7121"\w* \w it|strong="H7121"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w hearing|strong="H8085"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w said|strong="H1696"\w*, “\w We|strong="H8085"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H5971"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w said|strong="H1696"\w*, \w and|strong="H3068"\w* \w be|strong="H3068"\w* \w obedient|strong="H8085"\w*.” +\p +\v 8 \w Moses|strong="H4872"\w* \w took|strong="H3947"\w* \w the|strong="H3605"\w* \w blood|strong="H1818"\w*, \w and|strong="H4872"\w* \w sprinkled|strong="H2236"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w and|strong="H4872"\w* \w said|strong="H1697"\w*, “\w Look|strong="H2009"\w*, \w this|strong="H1697"\w* \w is|strong="H3068"\w* \w the|strong="H3605"\w* \w blood|strong="H1818"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w covenant|strong="H1285"\w*, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w made|strong="H3772"\w* \w with|strong="H5973"\w* \w you|strong="H3605"\w* \w concerning|strong="H5921"\w* \w all|strong="H3605"\w* \w these|strong="H3947"\w* \w words|strong="H1697"\w*.” +\p +\v 9 \w Then|strong="H4872"\w* \w Moses|strong="H4872"\w*, Aaron, \w Nadab|strong="H5070"\w*, Abihu, \w and|strong="H4872"\w* \w seventy|strong="H7657"\w* \w of|strong="H2205"\w* \w the|strong="H5927"\w* \w elders|strong="H2205"\w* \w of|strong="H2205"\w* \w Israel|strong="H3478"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w*. +\v 10 \w They|strong="H3478"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w God|strong="H8064"\w* \w of|strong="H8478"\w* \w Israel|strong="H3478"\w*. \w Under|strong="H8478"\w* \w his|strong="H7200"\w* \w feet|strong="H7272"\w* \w was|strong="H3478"\w* \w like|strong="H7272"\w* \w a|strong="H3068"\w* \w paved|strong="H3840"\w* \w work|strong="H4639"\w* \w of|strong="H8478"\w* \w sapphire|strong="H5601"\w*\f + \fr 24:10 \ft or, lapis lazuli\f* \w stone|strong="H5601"\w*, \w like|strong="H7272"\w* \w the|strong="H7200"\w* skies \w for|strong="H8478"\w* \w clearness|strong="H2892"\w*. +\v 11 \w He|strong="H3027"\w* didn’t \w lay|strong="H7971"\w* \w his|strong="H7971"\w* \w hand|strong="H3027"\w* \w on|strong="H3027"\w* \w the|strong="H7971"\w* nobles \w of|strong="H1121"\w* \w the|strong="H7971"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w They|strong="H3808"\w* \w saw|strong="H2372"\w* \w God|strong="H3808"\w*, \w and|strong="H1121"\w* ate \w and|strong="H1121"\w* \w drank|strong="H8354"\w*. +\p +\v 12 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w Come|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w me|strong="H5414"\w* \w on|strong="H3068"\w* \w the|strong="H5414"\w* \w mountain|strong="H2022"\w*, \w and|strong="H4872"\w* stay \w here|strong="H8033"\w*, \w and|strong="H4872"\w* \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w the|strong="H5414"\w* stone \w tablets|strong="H3871"\w* \w with|strong="H3068"\w* \w the|strong="H5414"\w* \w law|strong="H8451"\w* \w and|strong="H4872"\w* \w the|strong="H5414"\w* \w commands|strong="H4687"\w* \w that|strong="H3068"\w* \w I|strong="H5414"\w* \w have|strong="H1961"\w* \w written|strong="H3789"\w*, \w that|strong="H3068"\w* \w you|strong="H5414"\w* \w may|strong="H1961"\w* \w teach|strong="H3384"\w* \w them|strong="H5414"\w*.” +\p +\v 13 \w Moses|strong="H4872"\w* \w rose|strong="H6965"\w* \w up|strong="H5927"\w* \w with|strong="H5927"\w* \w Joshua|strong="H3091"\w*, \w his|strong="H6965"\w* \w servant|strong="H8334"\w*, \w and|strong="H6965"\w* \w Moses|strong="H4872"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* onto God’s \w Mountain|strong="H2022"\w*. +\v 14 \w He|strong="H5704"\w* \w said|strong="H1697"\w* \w to|strong="H5704"\w* \w the|strong="H7725"\w* \w elders|strong="H2205"\w*, “\w Wait|strong="H3427"\w* \w here|strong="H2009"\w* \w for|strong="H5704"\w* \w us|strong="H7725"\w*, \w until|strong="H5704"\w* \w we|strong="H3068"\w* \w come|strong="H5066"\w* \w again|strong="H7725"\w* \w to|strong="H5704"\w* \w you|strong="H5704"\w*. \w Behold|strong="H2009"\w*, Aaron \w and|strong="H7725"\w* \w Hur|strong="H2354"\w* \w are|strong="H1697"\w* \w with|strong="H5973"\w* \w you|strong="H5704"\w*. \w Whoever|strong="H4310"\w* \w is|strong="H2088"\w* involved \w in|strong="H3427"\w* \w a|strong="H3068"\w* \w dispute|strong="H1697"\w* \w can|strong="H4310"\w* \w go|strong="H7725"\w* \w to|strong="H5704"\w* \w them|strong="H7725"\w*.” +\p +\v 15 \w Moses|strong="H4872"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w on|strong="H5927"\w* \w the|strong="H3680"\w* \w mountain|strong="H2022"\w*, \w and|strong="H4872"\w* \w the|strong="H3680"\w* \w cloud|strong="H6051"\w* \w covered|strong="H3680"\w* \w the|strong="H3680"\w* \w mountain|strong="H2022"\w*. +\v 16 \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w settled|strong="H7931"\w* \w on|strong="H5921"\w* \w Mount|strong="H2022"\w* \w Sinai|strong="H5514"\w*, \w and|strong="H4872"\w* \w the|strong="H5921"\w* \w cloud|strong="H6051"\w* \w covered|strong="H3680"\w* \w it|strong="H7121"\w* \w six|strong="H8337"\w* \w days|strong="H3117"\w*. \w The|strong="H5921"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w he|strong="H3117"\w* \w called|strong="H7121"\w* \w to|strong="H3068"\w* \w Moses|strong="H4872"\w* \w out|strong="H5921"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w cloud|strong="H6051"\w*. +\v 17 \w The|strong="H3068"\w* \w appearance|strong="H4758"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w was|strong="H3068"\w* \w like|strong="H4758"\w* devouring fire \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w top|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w mountain|strong="H2022"\w* \w in|strong="H3478"\w* \w the|strong="H3068"\w* \w eyes|strong="H5869"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 18 \w Moses|strong="H4872"\w* \w entered|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H3117"\w* \w the|strong="H8432"\w* \w cloud|strong="H6051"\w*, \w and|strong="H4872"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w on|strong="H3117"\w* \w the|strong="H8432"\w* \w mountain|strong="H2022"\w*; \w and|strong="H4872"\w* \w Moses|strong="H4872"\w* \w was|strong="H1961"\w* \w on|strong="H3117"\w* \w the|strong="H8432"\w* \w mountain|strong="H2022"\w* forty \w days|strong="H3117"\w* \w and|strong="H4872"\w* forty \w nights|strong="H3915"\w*. +\c 25 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w that|strong="H3605"\w* \w they|strong="H3478"\w* \w take|strong="H3947"\w* \w an|strong="H3947"\w* \w offering|strong="H8641"\w* \w for|strong="H1121"\w* \w me|strong="H3947"\w*. \w From|strong="H3478"\w* \w everyone|strong="H3605"\w* \w whose|strong="H1121"\w* \w heart|strong="H3820"\w* \w makes|strong="H1696"\w* \w him|strong="H3947"\w* \w willing|strong="H5068"\w* \w you|strong="H3605"\w* \w shall|strong="H1121"\w* \w take|strong="H3947"\w* \w my|strong="H3605"\w* \w offering|strong="H8641"\w*. +\v 3 \w This|strong="H2063"\w* \w is|strong="H3701"\w* \w the|strong="H3947"\w* \w offering|strong="H8641"\w* \w which|strong="H2091"\w* \w you|strong="H3947"\w* \w shall|strong="H3701"\w* \w take|strong="H3947"\w* \w from|strong="H3947"\w* \w them|strong="H3947"\w*: \w gold|strong="H2091"\w*, \w silver|strong="H3701"\w*, \w bronze|strong="H5178"\w*, +\v 4 \w blue|strong="H8504"\w*, \w purple|strong="H8504"\w*, \w scarlet|strong="H8144"\w*, \w fine|strong="H8336"\w* \w linen|strong="H8336"\w*, \w goats|strong="H5795"\w*’ hair, +\v 5 rams’ \w skins|strong="H5785"\w* \w dyed|strong="H5785"\w* red, sea cow \w hides|strong="H5785"\w*,\f + \fr 25:5 \ft or, fine leather\f* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*, +\v 6 \w oil|strong="H8081"\w* \w for|strong="H8081"\w* the \w light|strong="H3974"\w*, \w spices|strong="H1314"\w* \w for|strong="H8081"\w* the \w anointing|strong="H4888"\w* \w oil|strong="H8081"\w* \w and|strong="H8081"\w* \w for|strong="H8081"\w* the \w sweet|strong="H5561"\w* \w incense|strong="H7004"\w*, +\v 7 \w onyx|strong="H7718"\w* stones, \w and|strong="H4394"\w* stones to be \w set|strong="H4394"\w* \w for|strong="H4394"\w* \w the|strong="H2833"\w* ephod \w and|strong="H4394"\w* \w for|strong="H4394"\w* \w the|strong="H2833"\w* \w breastplate|strong="H2833"\w*. +\v 8 Let \w them|strong="H6213"\w* \w make|strong="H6213"\w* \w me|strong="H6213"\w* \w a|strong="H3068"\w* \w sanctuary|strong="H4720"\w*, \w that|strong="H6213"\w* \w I|strong="H8432"\w* \w may|strong="H6213"\w* \w dwell|strong="H7931"\w* \w among|strong="H8432"\w* \w them|strong="H6213"\w*. +\v 9 According \w to|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H7200"\w* \w I|strong="H3651"\w* \w show|strong="H7200"\w* \w you|strong="H3605"\w*, \w the|strong="H3605"\w* \w pattern|strong="H8403"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w*, \w and|strong="H7200"\w* \w the|strong="H3605"\w* \w pattern|strong="H8403"\w* \w of|strong="H3627"\w* \w all|strong="H3605"\w* \w of|strong="H3627"\w* \w its|strong="H3605"\w* \w furniture|strong="H3627"\w*, \w even|strong="H3651"\w* \w so|strong="H3651"\w* \w you|strong="H3605"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w it|strong="H6213"\w*. +\p +\v 10 “\w They|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w an|strong="H6213"\w* ark \w of|strong="H6086"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*. \w Its|strong="H6213"\w* \w length|strong="H6967"\w* \w shall|strong="H6213"\w* \w be|strong="H6086"\w* \w two|strong="H6213"\w* \w and|strong="H6086"\w* \w a|strong="H3068"\w* \w half|strong="H2677"\w* cubits,\f + \fr 25:10 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w its|strong="H6213"\w* \w width|strong="H7341"\w* \w a|strong="H3068"\w* cubit \w and|strong="H6086"\w* \w a|strong="H3068"\w* \w half|strong="H2677"\w*, \w and|strong="H6086"\w* \w a|strong="H3068"\w* cubit \w and|strong="H6086"\w* \w a|strong="H3068"\w* \w half|strong="H2677"\w* \w its|strong="H6213"\w* \w height|strong="H6967"\w*. +\v 11 \w You|strong="H5921"\w* \w shall|strong="H1004"\w* \w overlay|strong="H6823"\w* \w it|strong="H5921"\w* \w with|strong="H1004"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*. \w You|strong="H5921"\w* \w shall|strong="H1004"\w* \w overlay|strong="H6823"\w* \w it|strong="H5921"\w* \w inside|strong="H1004"\w* \w and|strong="H1004"\w* \w outside|strong="H2351"\w*, \w and|strong="H1004"\w* \w you|strong="H5921"\w* \w shall|strong="H1004"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w gold|strong="H2091"\w* \w molding|strong="H2213"\w* \w around|strong="H5439"\w* \w it|strong="H5921"\w*. +\v 12 \w You|strong="H5414"\w* \w shall|strong="H8147"\w* \w cast|strong="H3332"\w* four \w rings|strong="H2885"\w* \w of|strong="H5921"\w* \w gold|strong="H2091"\w* \w for|strong="H5921"\w* \w it|strong="H5414"\w*, \w and|strong="H2091"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w in|strong="H5921"\w* \w its|strong="H5414"\w* four \w feet|strong="H6471"\w*. \w Two|strong="H8147"\w* \w rings|strong="H2885"\w* \w shall|strong="H8147"\w* \w be|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w one|strong="H8147"\w* \w side|strong="H6763"\w* \w of|strong="H5921"\w* \w it|strong="H5414"\w*, \w and|strong="H2091"\w* \w two|strong="H8147"\w* \w rings|strong="H2885"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w other|strong="H8145"\w* \w side|strong="H6763"\w* \w of|strong="H5921"\w* \w it|strong="H5414"\w*. +\v 13 \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* poles \w of|strong="H6086"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*, \w and|strong="H6086"\w* \w overlay|strong="H6823"\w* \w them|strong="H6213"\w* \w with|strong="H6213"\w* \w gold|strong="H2091"\w*. +\v 14 \w You|strong="H5921"\w* shall \w put|strong="H5375"\w* \w the|strong="H5921"\w* poles \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w rings|strong="H2885"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w sides|strong="H6763"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* ark \w to|strong="H5921"\w* \w carry|strong="H5375"\w* \w the|strong="H5921"\w* ark. +\v 15 \w The|strong="H4480"\w* poles \w shall|strong="H3808"\w* \w be|strong="H1961"\w* \w in|strong="H5493"\w* \w the|strong="H4480"\w* \w rings|strong="H2885"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* ark. \w They|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w taken|strong="H5493"\w* \w from|strong="H4480"\w* \w it|strong="H1961"\w*. +\v 16 \w You|strong="H5414"\w* shall \w put|strong="H5414"\w* \w the|strong="H5414"\w* covenant which \w I|strong="H5414"\w* shall \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w into|strong="H5414"\w* \w the|strong="H5414"\w* ark. +\v 17 \w You|strong="H6213"\w* \w shall|strong="H2889"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w* \w of|strong="H2677"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*. \w Two|strong="H6213"\w* \w and|strong="H2091"\w* \w a|strong="H3068"\w* \w half|strong="H2677"\w* cubits \w shall|strong="H2889"\w* be \w its|strong="H6213"\w* length, \w and|strong="H2091"\w* \w a|strong="H3068"\w* cubit \w and|strong="H2091"\w* \w a|strong="H3068"\w* \w half|strong="H2677"\w* \w its|strong="H6213"\w* \w width|strong="H7341"\w*. +\v 18 \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w two|strong="H8147"\w* \w cherubim|strong="H3742"\w* \w of|strong="H8147"\w* \w hammered|strong="H4749"\w* \w gold|strong="H2091"\w*. \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w them|strong="H6213"\w* \w at|strong="H6213"\w* \w the|strong="H6213"\w* \w two|strong="H8147"\w* \w ends|strong="H7098"\w* \w of|strong="H8147"\w* \w the|strong="H6213"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w*. +\v 19 \w Make|strong="H6213"\w* \w one|strong="H2088"\w* \w cherub|strong="H3742"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w one|strong="H2088"\w* \w end|strong="H7098"\w*, \w and|strong="H6213"\w* \w one|strong="H2088"\w* \w cherub|strong="H3742"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w other|strong="H2088"\w* \w end|strong="H7098"\w*. \w You|strong="H5921"\w* \w shall|strong="H2088"\w* \w make|strong="H6213"\w* \w the|strong="H5921"\w* \w cherubim|strong="H3742"\w* \w on|strong="H5921"\w* \w its|strong="H5921"\w* \w two|strong="H8147"\w* \w ends|strong="H7098"\w* \w of|strong="H4480"\w* \w one|strong="H2088"\w* piece \w with|strong="H6213"\w* \w the|strong="H5921"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w*. +\v 20 \w The|strong="H6440"\w* \w cherubim|strong="H3742"\w* \w shall|strong="H6440"\w* \w spread|strong="H6566"\w* \w out|strong="H6566"\w* \w their|strong="H6440"\w* \w wings|strong="H3671"\w* \w upward|strong="H4605"\w*, \w covering|strong="H5526"\w* \w the|strong="H6440"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w* \w with|strong="H5921"\w* \w their|strong="H6440"\w* \w wings|strong="H3671"\w*, \w with|strong="H5921"\w* \w their|strong="H6440"\w* \w faces|strong="H6440"\w* \w toward|strong="H5921"\w* \w one|strong="H1961"\w* \w another|strong="H3671"\w*. \w The|strong="H6440"\w* \w faces|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w cherubim|strong="H3742"\w* \w shall|strong="H6440"\w* \w be|strong="H1961"\w* \w toward|strong="H5921"\w* \w the|strong="H6440"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w*. +\v 21 \w You|strong="H5414"\w* shall \w put|strong="H5414"\w* \w the|strong="H5921"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w* \w on|strong="H5921"\w* \w top|strong="H4605"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* ark, \w and|strong="H4605"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* ark \w you|strong="H5414"\w* shall \w put|strong="H5414"\w* \w the|strong="H5921"\w* covenant \w that|strong="H5414"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w*. +\v 22 \w There|strong="H8033"\w* \w I|strong="H5921"\w* \w will|strong="H3478"\w* \w meet|strong="H3259"\w* \w with|strong="H1696"\w* \w you|strong="H6680"\w*, \w and|strong="H1121"\w* \w I|strong="H5921"\w* \w will|strong="H3478"\w* \w tell|strong="H1696"\w* \w you|strong="H6680"\w* \w from|strong="H5921"\w* \w above|strong="H5921"\w* \w the|strong="H3605"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w*, \w from|strong="H5921"\w* \w between|strong="H5921"\w* \w the|strong="H3605"\w* \w two|strong="H8147"\w* \w cherubim|strong="H3742"\w* \w which|strong="H8033"\w* \w are|strong="H1121"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* ark \w of|strong="H1121"\w* \w the|strong="H3605"\w* covenant, \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H5921"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\p +\v 23 “\w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w table|strong="H7979"\w* \w of|strong="H6086"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*. \w Its|strong="H6213"\w* \w length|strong="H6967"\w* \w shall|strong="H6213"\w* \w be|strong="H6086"\w* \w two|strong="H6213"\w* cubits, \w and|strong="H6086"\w* \w its|strong="H6213"\w* \w width|strong="H7341"\w* \w a|strong="H3068"\w* cubit, \w and|strong="H6086"\w* \w its|strong="H6213"\w* \w height|strong="H6967"\w* \w one|strong="H6213"\w* \w and|strong="H6086"\w* \w a|strong="H3068"\w* \w half|strong="H2677"\w* cubits. +\v 24 \w You|strong="H6213"\w* \w shall|strong="H2889"\w* \w overlay|strong="H6823"\w* \w it|strong="H6213"\w* \w with|strong="H6213"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*, \w and|strong="H2091"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w gold|strong="H2091"\w* \w molding|strong="H2213"\w* \w around|strong="H5439"\w* \w it|strong="H6213"\w*. +\v 25 \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w rim|strong="H4526"\w* \w of|strong="H6213"\w* \w a|strong="H3068"\w* \w hand|strong="H2948"\w* width \w around|strong="H5439"\w* \w it|strong="H6213"\w*. \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w golden|strong="H2091"\w* \w molding|strong="H2213"\w* \w on|strong="H2091"\w* \w its|strong="H6213"\w* \w rim|strong="H4526"\w* \w around|strong="H5439"\w* \w it|strong="H6213"\w*. +\v 26 \w You|strong="H5414"\w* \w shall|strong="H7272"\w* \w make|strong="H6213"\w* four \w rings|strong="H2885"\w* \w of|strong="H5921"\w* \w gold|strong="H2091"\w* \w for|strong="H5921"\w* \w it|strong="H5414"\w*, \w and|strong="H2091"\w* \w put|strong="H5414"\w* \w the|strong="H5921"\w* \w rings|strong="H2885"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* four \w corners|strong="H6285"\w* \w that|strong="H5414"\w* \w are|strong="H7272"\w* \w on|strong="H5921"\w* \w its|strong="H5414"\w* four \w feet|strong="H7272"\w*. +\v 27 \w The|strong="H5375"\w* \w rings|strong="H2885"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w* \w close|strong="H5980"\w* \w to|strong="H1961"\w* \w the|strong="H5375"\w* \w rim|strong="H4526"\w*, \w for|strong="H1004"\w* \w places|strong="H1004"\w* \w for|strong="H1004"\w* \w the|strong="H5375"\w* poles \w to|strong="H1961"\w* \w carry|strong="H5375"\w* \w the|strong="H5375"\w* \w table|strong="H7979"\w*. +\v 28 \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w the|strong="H5375"\w* poles \w of|strong="H6086"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*, \w and|strong="H6086"\w* \w overlay|strong="H6823"\w* \w them|strong="H6213"\w* \w with|strong="H6213"\w* \w gold|strong="H2091"\w*, \w that|strong="H6213"\w* \w the|strong="H5375"\w* \w table|strong="H7979"\w* \w may|strong="H6213"\w* \w be|strong="H6086"\w* \w carried|strong="H5375"\w* \w with|strong="H6213"\w* \w them|strong="H6213"\w*. +\v 29 \w You|strong="H6213"\w* \w shall|strong="H2889"\w* \w make|strong="H6213"\w* \w its|strong="H6213"\w* \w dishes|strong="H7086"\w*, \w its|strong="H6213"\w* \w spoons|strong="H3709"\w*, \w its|strong="H6213"\w* \w ladles|strong="H3709"\w*, \w and|strong="H2091"\w* \w its|strong="H6213"\w* \w bowls|strong="H4518"\w* \w with|strong="H6213"\w* \w which|strong="H2004"\w* \w to|strong="H6213"\w* \w pour|strong="H5258"\w* \w out|strong="H5258"\w* \w offerings|strong="H5258"\w*. \w You|strong="H6213"\w* \w shall|strong="H2889"\w* \w make|strong="H6213"\w* \w them|strong="H6213"\w* \w of|strong="H3709"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*. +\v 30 \w You|strong="H5414"\w* \w shall|strong="H6440"\w* \w set|strong="H5414"\w* \w bread|strong="H3899"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w table|strong="H7979"\w* \w before|strong="H6440"\w* \w me|strong="H5414"\w* \w always|strong="H8548"\w*. +\p +\v 31 “\w You|strong="H6213"\w* \w shall|strong="H2889"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* lamp stand \w of|strong="H4480"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*. \w The|strong="H6213"\w* lamp stand \w shall|strong="H2889"\w* \w be|strong="H1961"\w* \w made|strong="H6213"\w* \w of|strong="H4480"\w* \w hammered|strong="H4749"\w* \w work|strong="H6213"\w*. \w Its|strong="H6213"\w* \w base|strong="H3409"\w*, \w its|strong="H6213"\w* \w shaft|strong="H3409"\w*, \w its|strong="H6213"\w* \w cups|strong="H1375"\w*, \w its|strong="H6213"\w* \w buds|strong="H6525"\w*, \w and|strong="H2091"\w* \w its|strong="H6213"\w* \w flowers|strong="H6525"\w* \w shall|strong="H2889"\w* \w be|strong="H1961"\w* \w of|strong="H4480"\w* \w one|strong="H4480"\w* \w piece|strong="H4749"\w* \w with|strong="H6213"\w* \w it|strong="H6213"\w*. +\v 32 There \w shall|strong="H7070"\w* \w be|strong="H3318"\w* \w six|strong="H8337"\w* \w branches|strong="H7070"\w* \w going|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w its|strong="H3318"\w* \w sides|strong="H6654"\w*: \w three|strong="H7969"\w* \w branches|strong="H7070"\w* \w of|strong="H3318"\w* \w the|strong="H3318"\w* lamp stand \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w its|strong="H3318"\w* \w one|strong="H8145"\w* \w side|strong="H6654"\w*, \w and|strong="H3318"\w* \w three|strong="H7969"\w* \w branches|strong="H7070"\w* \w of|strong="H3318"\w* \w the|strong="H3318"\w* lamp stand \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w its|strong="H3318"\w* \w other|strong="H8145"\w* \w side|strong="H6654"\w*; +\v 33 \w three|strong="H7969"\w* \w cups|strong="H1375"\w* made \w like|strong="H3651"\w* \w almond|strong="H8246"\w* \w blossoms|strong="H6525"\w* \w in|strong="H3318"\w* \w one|strong="H4480"\w* \w branch|strong="H7070"\w*, \w a|strong="H3068"\w* \w bud|strong="H6525"\w* \w and|strong="H3318"\w* \w a|strong="H3068"\w* \w flower|strong="H6525"\w*; \w and|strong="H3318"\w* \w three|strong="H7969"\w* \w cups|strong="H1375"\w* made \w like|strong="H3651"\w* \w almond|strong="H8246"\w* \w blossoms|strong="H6525"\w* \w in|strong="H3318"\w* \w the|strong="H4480"\w* other \w branch|strong="H7070"\w*, \w a|strong="H3068"\w* \w bud|strong="H6525"\w* \w and|strong="H3318"\w* \w a|strong="H3068"\w* \w flower|strong="H6525"\w*, \w so|strong="H3651"\w* \w for|strong="H3318"\w* \w the|strong="H4480"\w* \w six|strong="H8337"\w* \w branches|strong="H7070"\w* \w going|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* lamp stand; +\v 34 \w and|strong="H6525"\w* \w in|strong="H6525"\w* the lamp stand four \w cups|strong="H1375"\w* made \w like|strong="H8246"\w* \w almond|strong="H8246"\w* \w blossoms|strong="H6525"\w*, its \w buds|strong="H6525"\w* \w and|strong="H6525"\w* its \w flowers|strong="H6525"\w*; +\v 35 \w and|strong="H3318"\w* \w a|strong="H3068"\w* bud \w under|strong="H8478"\w* \w two|strong="H8147"\w* \w branches|strong="H7070"\w* \w of|strong="H4480"\w* \w one|strong="H4480"\w* piece \w with|strong="H3318"\w* \w it|strong="H3318"\w*, \w and|strong="H3318"\w* \w a|strong="H3068"\w* bud \w under|strong="H8478"\w* \w two|strong="H8147"\w* \w branches|strong="H7070"\w* \w of|strong="H4480"\w* \w one|strong="H4480"\w* piece \w with|strong="H3318"\w* \w it|strong="H3318"\w*, \w and|strong="H3318"\w* \w a|strong="H3068"\w* bud \w under|strong="H8478"\w* \w two|strong="H8147"\w* \w branches|strong="H7070"\w* \w of|strong="H4480"\w* \w one|strong="H4480"\w* piece \w with|strong="H3318"\w* \w it|strong="H3318"\w*, \w for|strong="H8478"\w* \w the|strong="H4480"\w* \w six|strong="H8337"\w* \w branches|strong="H7070"\w* \w going|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* lamp \w stand|strong="H8478"\w*. +\v 36 \w Their|strong="H3605"\w* buds \w and|strong="H2091"\w* \w their|strong="H3605"\w* \w branches|strong="H7070"\w* \w shall|strong="H2889"\w* \w be|strong="H1961"\w* \w of|strong="H4480"\w* \w one|strong="H3605"\w* \w piece|strong="H4749"\w* \w with|strong="H3605"\w* \w it|strong="H1961"\w*, \w all|strong="H3605"\w* \w of|strong="H4480"\w* \w it|strong="H1961"\w* \w one|strong="H3605"\w* \w beaten|strong="H4749"\w* \w work|strong="H4749"\w* \w of|strong="H4480"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*. +\v 37 \w You|strong="H6440"\w* \w shall|strong="H6440"\w* \w make|strong="H6213"\w* \w its|strong="H5921"\w* \w lamps|strong="H5216"\w* \w seven|strong="H7651"\w*, \w and|strong="H6440"\w* \w they|strong="H5921"\w* \w shall|strong="H6440"\w* \w light|strong="H5216"\w* \w its|strong="H5921"\w* \w lamps|strong="H5216"\w* \w to|strong="H5927"\w* \w give|strong="H6213"\w* \w light|strong="H5216"\w* \w to|strong="H5927"\w* \w the|strong="H6440"\w* \w space|strong="H5676"\w* \w in|strong="H5921"\w* \w front|strong="H6440"\w* \w of|strong="H6440"\w* \w it|strong="H5921"\w*. +\v 38 Its \w snuffers|strong="H4457"\w* \w and|strong="H2091"\w* its snuff dishes \w shall|strong="H2889"\w* be \w of|strong="H2091"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*. +\v 39 \w It|strong="H6213"\w* \w shall|strong="H2889"\w* \w be|strong="H3605"\w* \w made|strong="H6213"\w* \w of|strong="H3627"\w* \w a|strong="H3068"\w* \w talent|strong="H3603"\w*\f + \fr 25:39 \ft A talent is about 30 kilograms or 66 pounds or 965 Troy ounces\f* \w of|strong="H3627"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*, \w with|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* accessories. +\v 40 \w See|strong="H7200"\w* \w that|strong="H7200"\w* \w you|strong="H6213"\w* \w make|strong="H6213"\w* \w them|strong="H6213"\w* \w after|strong="H7200"\w* \w their|strong="H7200"\w* \w pattern|strong="H8403"\w*, \w which|strong="H2022"\w* \w has|strong="H6213"\w* been \w shown|strong="H7200"\w* \w to|strong="H6213"\w* \w you|strong="H6213"\w* \w on|strong="H7200"\w* \w the|strong="H7200"\w* \w mountain|strong="H2022"\w*. +\c 26 +\p +\v 1 “Moreover \w you|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w the|strong="H6213"\w* \w tabernacle|strong="H4908"\w* \w with|strong="H6213"\w* \w ten|strong="H6235"\w* \w curtains|strong="H3407"\w* \w of|strong="H4639"\w* \w fine|strong="H8336"\w* \w twined|strong="H7806"\w* \w linen|strong="H8336"\w*, \w and|strong="H8504"\w* \w blue|strong="H8504"\w*, \w and|strong="H8504"\w* \w purple|strong="H8504"\w*, \w and|strong="H8504"\w* \w scarlet|strong="H8144"\w*, \w with|strong="H6213"\w* \w cherubim|strong="H3742"\w*. \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w them|strong="H6213"\w* \w with|strong="H6213"\w* \w the|strong="H6213"\w* \w work|strong="H4639"\w* \w of|strong="H4639"\w* \w a|strong="H3068"\w* \w skillful|strong="H2803"\w* \w workman|strong="H2803"\w*. +\v 2 \w The|strong="H3605"\w* length \w of|strong="H3605"\w* \w each|strong="H3605"\w* \w curtain|strong="H3407"\w* shall \w be|strong="H3605"\w* \w twenty-eight|strong="H6242"\w* cubits,\f + \fr 26:2 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w and|strong="H6242"\w* \w the|strong="H3605"\w* \w width|strong="H7341"\w* \w of|strong="H3605"\w* \w each|strong="H3605"\w* \w curtain|strong="H3407"\w* four cubits: \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w curtains|strong="H3407"\w* shall \w have|strong="H3605"\w* \w one|strong="H3605"\w* \w measure|strong="H4060"\w*. +\v 3 \w Five|strong="H2568"\w* \w curtains|strong="H3407"\w* shall \w be|strong="H1961"\w* \w coupled|strong="H2266"\w* \w together|strong="H2266"\w* \w to|strong="H1961"\w* \w one|strong="H1961"\w* another, \w and|strong="H2568"\w* \w the|strong="H1961"\w* other \w five|strong="H2568"\w* \w curtains|strong="H3407"\w* shall \w be|strong="H1961"\w* \w coupled|strong="H2266"\w* \w to|strong="H1961"\w* \w one|strong="H1961"\w* another. +\v 4 \w You|strong="H5921"\w* \w shall|strong="H8193"\w* \w make|strong="H6213"\w* \w loops|strong="H3924"\w* \w of|strong="H5921"\w* \w blue|strong="H8504"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w edge|strong="H8193"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w one|strong="H6213"\w* \w curtain|strong="H3407"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w edge|strong="H8193"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w coupling|strong="H4225"\w*, \w and|strong="H8504"\w* \w you|strong="H5921"\w* \w shall|strong="H8193"\w* \w do|strong="H6213"\w* \w likewise|strong="H3651"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w edge|strong="H8193"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w curtain|strong="H3407"\w* \w that|strong="H3651"\w* \w is|strong="H3651"\w* \w outermost|strong="H7020"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w second|strong="H8145"\w* \w coupling|strong="H4225"\w*. +\v 5 \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w fifty|strong="H2572"\w* \w loops|strong="H3924"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w one|strong="H6213"\w* \w curtain|strong="H3407"\w*, \w and|strong="H2572"\w* \w you|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w fifty|strong="H2572"\w* \w loops|strong="H3924"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w edge|strong="H7097"\w* \w of|strong="H7097"\w* \w the|strong="H6213"\w* \w curtain|strong="H3407"\w* \w that|strong="H6213"\w* \w is|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w second|strong="H8145"\w* \w coupling|strong="H4225"\w*. \w The|strong="H6213"\w* \w loops|strong="H3924"\w* \w shall|strong="H6213"\w* be \w opposite|strong="H6901"\w* \w one|strong="H6213"\w* \w another|strong="H8145"\w*. +\v 6 \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w fifty|strong="H2572"\w* \w clasps|strong="H7165"\w* \w of|strong="H4908"\w* \w gold|strong="H2091"\w*, \w and|strong="H2091"\w* \w couple|strong="H2266"\w* \w the|strong="H6213"\w* \w curtains|strong="H3407"\w* \w to|strong="H1961"\w* \w one|strong="H1961"\w* another \w with|strong="H6213"\w* \w the|strong="H6213"\w* \w clasps|strong="H7165"\w*. \w The|strong="H6213"\w* \w tabernacle|strong="H4908"\w* \w shall|strong="H6213"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* unit. +\p +\v 7 “\w You|strong="H5921"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w curtains|strong="H3407"\w* \w of|strong="H5921"\w* \w goats|strong="H5795"\w*’ hair \w for|strong="H5921"\w* \w a|strong="H3068"\w* covering \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w*. \w You|strong="H5921"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w eleven|strong="H6249"\w* \w curtains|strong="H3407"\w*. +\v 8 \w The|strong="H4060"\w* length \w of|strong="H7341"\w* each \w curtain|strong="H3407"\w* shall \w be|strong="H7970"\w* \w thirty|strong="H7970"\w* cubits, \w and|strong="H7970"\w* \w the|strong="H4060"\w* \w width|strong="H7341"\w* \w of|strong="H7341"\w* each \w curtain|strong="H3407"\w* four cubits: \w the|strong="H4060"\w* \w eleven|strong="H6249"\w* \w curtains|strong="H3407"\w* shall have \w one|strong="H7341"\w* \w measure|strong="H4060"\w*. +\v 9 \w You|strong="H6440"\w* \w shall|strong="H6440"\w* \w couple|strong="H2266"\w* \w five|strong="H2568"\w* \w curtains|strong="H3407"\w* \w by|strong="H6440"\w* \w themselves|strong="H6440"\w*, \w and|strong="H2568"\w* \w six|strong="H8337"\w* \w curtains|strong="H3407"\w* \w by|strong="H6440"\w* \w themselves|strong="H6440"\w*, \w and|strong="H2568"\w* \w shall|strong="H6440"\w* \w double|strong="H3717"\w* \w over|strong="H6440"\w* \w the|strong="H6440"\w* \w sixth|strong="H8345"\w* \w curtain|strong="H3407"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w forefront|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w tent|strong="H3407"\w*. +\v 10 \w You|strong="H5921"\w* \w shall|strong="H8193"\w* \w make|strong="H6213"\w* \w fifty|strong="H2572"\w* \w loops|strong="H3924"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w edge|strong="H8193"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w one|strong="H6213"\w* \w curtain|strong="H3407"\w* \w that|strong="H6213"\w* \w is|strong="H6213"\w* \w outermost|strong="H7020"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w coupling|strong="H2279"\w*, \w and|strong="H2572"\w* \w fifty|strong="H2572"\w* \w loops|strong="H3924"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w edge|strong="H8193"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w curtain|strong="H3407"\w* \w which|strong="H3407"\w* \w is|strong="H6213"\w* \w outermost|strong="H7020"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w second|strong="H8145"\w* \w coupling|strong="H2279"\w*. +\v 11 \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w fifty|strong="H2572"\w* \w clasps|strong="H7165"\w* \w of|strong="H6213"\w* \w bronze|strong="H5178"\w*, \w and|strong="H2572"\w* \w put|strong="H6213"\w* \w the|strong="H6213"\w* \w clasps|strong="H7165"\w* \w into|strong="H6213"\w* \w the|strong="H6213"\w* \w loops|strong="H3924"\w*, \w and|strong="H2572"\w* \w couple|strong="H2266"\w* \w the|strong="H6213"\w* tent \w together|strong="H2266"\w*, \w that|strong="H6213"\w* \w it|strong="H6213"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w one|strong="H1961"\w*. +\v 12 \w The|strong="H5921"\w* overhanging \w part|strong="H2677"\w* \w that|strong="H3407"\w* remains \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w curtains|strong="H3407"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w tent|strong="H3407"\w*—\w the|strong="H5921"\w* \w half|strong="H2677"\w* \w curtain|strong="H3407"\w* \w that|strong="H3407"\w* remains—shall \w hang|strong="H5628"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* back \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w*. +\v 13 \w The|strong="H5921"\w* cubit \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w one|strong="H2088"\w* \w side|strong="H6654"\w* \w and|strong="H2088"\w* \w the|strong="H5921"\w* cubit \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w other|strong="H2088"\w* \w side|strong="H6654"\w*, \w of|strong="H5921"\w* \w that|strong="H2088"\w* \w which|strong="H3407"\w* \w remains|strong="H1961"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w length|strong="H5921"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w curtains|strong="H3407"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w tent|strong="H3407"\w*, \w shall|strong="H2088"\w* \w hang|strong="H5628"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w sides|strong="H6654"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w* \w on|strong="H5921"\w* \w this|strong="H2088"\w* \w side|strong="H6654"\w* \w and|strong="H2088"\w* \w on|strong="H5921"\w* \w that|strong="H2088"\w* \w side|strong="H6654"\w*, \w to|strong="H1961"\w* \w cover|strong="H3680"\w* \w it|strong="H5921"\w*. +\v 14 \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w covering|strong="H4372"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* tent \w of|strong="H4372"\w* rams’ \w skins|strong="H5785"\w* \w dyed|strong="H5785"\w* red, \w and|strong="H6213"\w* \w a|strong="H3068"\w* \w covering|strong="H4372"\w* \w of|strong="H4372"\w* sea cow \w hides|strong="H5785"\w* \w above|strong="H4605"\w*. +\p +\v 15 “\w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w the|strong="H6213"\w* \w boards|strong="H7175"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w tabernacle|strong="H4908"\w* \w of|strong="H6086"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*, \w standing|strong="H5975"\w* \w upright|strong="H5975"\w*. +\v 16 \w Ten|strong="H6235"\w* cubits \w shall|strong="H7175"\w* be \w the|strong="H2677"\w* length \w of|strong="H2677"\w* \w a|strong="H3068"\w* \w board|strong="H7175"\w*, \w and|strong="H7341"\w* \w one|strong="H7341"\w* \w and|strong="H7341"\w* \w a|strong="H3068"\w* \w half|strong="H2677"\w* cubits \w the|strong="H2677"\w* \w width|strong="H7341"\w* \w of|strong="H2677"\w* \w each|strong="H7175"\w* \w board|strong="H7175"\w*. +\v 17 \w There|strong="H3605"\w* \w shall|strong="H3027"\w* \w be|strong="H3027"\w* \w two|strong="H8147"\w* \w tenons|strong="H3027"\w* \w in|strong="H6213"\w* \w each|strong="H3605"\w* \w board|strong="H7175"\w*, joined \w to|strong="H6213"\w* \w one|strong="H3605"\w* another: \w thus|strong="H3651"\w* \w you|strong="H3605"\w* \w shall|strong="H3027"\w* \w make|strong="H6213"\w* \w for|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w boards|strong="H7175"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w*. +\v 18 \w You|strong="H6213"\w* \w shall|strong="H5045"\w* \w make|strong="H6213"\w* \w twenty|strong="H6242"\w* \w boards|strong="H7175"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w tabernacle|strong="H4908"\w*, \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w south|strong="H5045"\w* \w side|strong="H6285"\w* \w southward|strong="H5045"\w*. +\v 19 \w You|strong="H6213"\w* \w shall|strong="H3027"\w* \w make|strong="H6213"\w* forty sockets \w of|strong="H3027"\w* \w silver|strong="H3701"\w* \w under|strong="H8478"\w* \w the|strong="H6213"\w* \w twenty|strong="H6242"\w* \w boards|strong="H7175"\w*; \w two|strong="H8147"\w* sockets \w under|strong="H8478"\w* \w one|strong="H6213"\w* \w board|strong="H7175"\w* \w for|strong="H6213"\w* \w its|strong="H6213"\w* \w two|strong="H8147"\w* \w tenons|strong="H3027"\w*, \w and|strong="H6242"\w* \w two|strong="H8147"\w* sockets \w under|strong="H8478"\w* another \w board|strong="H7175"\w* \w for|strong="H6213"\w* \w its|strong="H6213"\w* \w two|strong="H8147"\w* \w tenons|strong="H3027"\w*. +\v 20 \w For|strong="H4908"\w* \w the|strong="H8145"\w* \w second|strong="H8145"\w* \w side|strong="H6285"\w* \w of|strong="H4908"\w* \w the|strong="H8145"\w* \w tabernacle|strong="H4908"\w*, \w on|strong="H6285"\w* \w the|strong="H8145"\w* \w north|strong="H6828"\w* \w side|strong="H6285"\w*, \w twenty|strong="H6242"\w* \w boards|strong="H7175"\w*, +\v 21 \w and|strong="H3701"\w* \w their|strong="H8478"\w* forty sockets \w of|strong="H8478"\w* \w silver|strong="H3701"\w*; \w two|strong="H8147"\w* sockets \w under|strong="H8478"\w* \w one|strong="H8147"\w* \w board|strong="H7175"\w*, \w and|strong="H3701"\w* \w two|strong="H8147"\w* sockets \w under|strong="H8478"\w* another \w board|strong="H7175"\w*. +\v 22 \w For|strong="H6213"\w* \w the|strong="H6213"\w* \w far|strong="H3411"\w* \w side|strong="H3220"\w* \w of|strong="H3220"\w* \w the|strong="H6213"\w* \w tabernacle|strong="H4908"\w* \w westward|strong="H3220"\w* \w you|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w six|strong="H8337"\w* \w boards|strong="H7175"\w*. +\v 23 \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w two|strong="H8147"\w* \w boards|strong="H7175"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w corners|strong="H4742"\w* \w of|strong="H8147"\w* \w the|strong="H6213"\w* \w tabernacle|strong="H4908"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w far|strong="H3411"\w* \w side|strong="H8147"\w*. +\v 24 \w They|strong="H3651"\w* \w shall|strong="H8147"\w* \w be|strong="H1961"\w* \w double|strong="H8147"\w* \w beneath|strong="H4295"\w*, \w and|strong="H7218"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w same|strong="H3651"\w* \w way|strong="H3651"\w* \w they|strong="H3651"\w* \w shall|strong="H8147"\w* \w be|strong="H1961"\w* whole \w to|strong="H1961"\w* \w its|strong="H5921"\w* \w top|strong="H7218"\w* \w to|strong="H1961"\w* \w one|strong="H1961"\w* \w ring|strong="H2885"\w*: \w thus|strong="H3651"\w* \w shall|strong="H8147"\w* \w it|strong="H5921"\w* \w be|strong="H1961"\w* \w for|strong="H5921"\w* \w them|strong="H5921"\w* \w both|strong="H8147"\w*; \w they|strong="H3651"\w* \w shall|strong="H8147"\w* \w be|strong="H1961"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w corners|strong="H4740"\w*. +\v 25 \w There|strong="H1961"\w* \w shall|strong="H8478"\w* \w be|strong="H1961"\w* \w eight|strong="H8083"\w* \w boards|strong="H7175"\w*, \w and|strong="H3701"\w* \w their|strong="H1961"\w* sockets \w of|strong="H8478"\w* \w silver|strong="H3701"\w*, \w sixteen|strong="H8337"\w* sockets; \w two|strong="H8147"\w* sockets \w under|strong="H8478"\w* \w one|strong="H1961"\w* \w board|strong="H7175"\w*, \w and|strong="H3701"\w* \w two|strong="H8147"\w* sockets \w under|strong="H8478"\w* another \w board|strong="H7175"\w*. +\p +\v 26 “\w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w bars|strong="H1280"\w* \w of|strong="H6086"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*: \w five|strong="H2568"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w boards|strong="H7175"\w* \w of|strong="H6086"\w* \w the|strong="H6213"\w* \w one|strong="H6213"\w* \w side|strong="H6763"\w* \w of|strong="H6086"\w* \w the|strong="H6213"\w* \w tabernacle|strong="H4908"\w*, +\v 27 \w and|strong="H2568"\w* \w five|strong="H2568"\w* \w bars|strong="H1280"\w* \w for|strong="H4908"\w* \w the|strong="H8145"\w* \w boards|strong="H7175"\w* \w of|strong="H3220"\w* \w the|strong="H8145"\w* \w other|strong="H8145"\w* \w side|strong="H6763"\w* \w of|strong="H3220"\w* \w the|strong="H8145"\w* \w tabernacle|strong="H4908"\w*, \w and|strong="H2568"\w* \w five|strong="H2568"\w* \w bars|strong="H1280"\w* \w for|strong="H4908"\w* \w the|strong="H8145"\w* \w boards|strong="H7175"\w* \w of|strong="H3220"\w* \w the|strong="H8145"\w* \w side|strong="H6763"\w* \w of|strong="H3220"\w* \w the|strong="H8145"\w* \w tabernacle|strong="H4908"\w*, \w for|strong="H4908"\w* \w the|strong="H8145"\w* \w far|strong="H3411"\w* \w side|strong="H6763"\w* \w westward|strong="H3220"\w*. +\v 28 \w The|strong="H8432"\w* \w middle|strong="H8432"\w* \w bar|strong="H1280"\w* \w in|strong="H8432"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H4480"\w* \w the|strong="H8432"\w* \w boards|strong="H7175"\w* \w shall|strong="H7175"\w* \w pass|strong="H1272"\w* \w through|strong="H4480"\w* \w from|strong="H4480"\w* \w end|strong="H7097"\w* \w to|strong="H1272"\w* \w end|strong="H7097"\w*. +\v 29 \w You|strong="H6213"\w* \w shall|strong="H1004"\w* \w overlay|strong="H6823"\w* \w the|strong="H6213"\w* \w boards|strong="H7175"\w* \w with|strong="H1004"\w* \w gold|strong="H2091"\w*, \w and|strong="H1004"\w* \w make|strong="H6213"\w* \w their|strong="H6213"\w* \w rings|strong="H2885"\w* \w of|strong="H1004"\w* \w gold|strong="H2091"\w* \w for|strong="H6213"\w* \w places|strong="H1004"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w bars|strong="H1280"\w*. \w You|strong="H6213"\w* \w shall|strong="H1004"\w* \w overlay|strong="H6823"\w* \w the|strong="H6213"\w* \w bars|strong="H1280"\w* \w with|strong="H1004"\w* \w gold|strong="H2091"\w*. +\v 30 \w You|strong="H7200"\w* \w shall|strong="H2022"\w* \w set|strong="H6965"\w* \w up|strong="H6965"\w* \w the|strong="H7200"\w* \w tabernacle|strong="H4908"\w* \w according|strong="H4941"\w* \w to|strong="H6965"\w* \w the|strong="H7200"\w* \w way|strong="H4941"\w* \w that|strong="H7200"\w* \w it|strong="H7200"\w* \w was|strong="H4908"\w* \w shown|strong="H7200"\w* \w to|strong="H6965"\w* \w you|strong="H7200"\w* \w on|strong="H7200"\w* \w the|strong="H7200"\w* \w mountain|strong="H2022"\w*. +\p +\v 31 “\w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w veil|strong="H6532"\w* \w of|strong="H4639"\w* \w blue|strong="H8504"\w*, \w and|strong="H8504"\w* \w purple|strong="H8504"\w*, \w and|strong="H8504"\w* \w scarlet|strong="H8144"\w*, \w and|strong="H8504"\w* \w fine|strong="H8336"\w* \w twined|strong="H7806"\w* \w linen|strong="H8336"\w*, \w with|strong="H6213"\w* \w cherubim|strong="H3742"\w*. \w It|strong="H6213"\w* \w shall|strong="H6213"\w* be \w the|strong="H6213"\w* \w work|strong="H4639"\w* \w of|strong="H4639"\w* \w a|strong="H3068"\w* \w skillful|strong="H2803"\w* \w workman|strong="H2803"\w*. +\v 32 \w You|strong="H5414"\w* \w shall|strong="H3701"\w* \w hang|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* four \w pillars|strong="H5982"\w* \w of|strong="H5982"\w* \w acacia|strong="H7848"\w* \w overlaid|strong="H6823"\w* \w with|strong="H5921"\w* \w gold|strong="H2091"\w*; \w their|strong="H5414"\w* \w hooks|strong="H2053"\w* \w shall|strong="H3701"\w* \w be|strong="H5414"\w* \w of|strong="H5982"\w* \w gold|strong="H2091"\w*, \w on|strong="H5921"\w* four sockets \w of|strong="H5982"\w* \w silver|strong="H3701"\w*. +\v 33 \w You|strong="H5414"\w* \w shall|strong="H1004"\w* \w hang|strong="H5414"\w* \w up|strong="H5414"\w* \w the|strong="H5414"\w* \w veil|strong="H6532"\w* \w under|strong="H8478"\w* \w the|strong="H5414"\w* \w clasps|strong="H7165"\w*, \w and|strong="H1004"\w* \w shall|strong="H1004"\w* \w bring|strong="H5414"\w* \w the|strong="H5414"\w* ark \w of|strong="H1004"\w* \w the|strong="H5414"\w* covenant \w in|strong="H1004"\w* \w there|strong="H8033"\w* \w within|strong="H1004"\w* \w the|strong="H5414"\w* \w veil|strong="H6532"\w*. \w The|strong="H5414"\w* \w veil|strong="H6532"\w* \w shall|strong="H1004"\w* separate \w the|strong="H5414"\w* \w holy|strong="H6944"\w* \w place|strong="H8478"\w* \w from|strong="H8478"\w* \w the|strong="H5414"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w for|strong="H8478"\w* \w you|strong="H5414"\w*. +\v 34 \w You|strong="H5414"\w* shall \w put|strong="H5414"\w* \w the|strong="H5921"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* ark \w of|strong="H5921"\w* \w the|strong="H5921"\w* covenant \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w place|strong="H5414"\w*. +\v 35 \w You|strong="H5414"\w* \w shall|strong="H6828"\w* \w set|strong="H7760"\w* \w the|strong="H5921"\w* \w table|strong="H7979"\w* \w outside|strong="H2351"\w* \w the|strong="H5921"\w* \w veil|strong="H6532"\w*, \w and|strong="H4908"\w* \w the|strong="H5921"\w* lamp stand \w opposite|strong="H5227"\w* \w the|strong="H5921"\w* \w table|strong="H7979"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w side|strong="H6763"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w* \w toward|strong="H5921"\w* \w the|strong="H5921"\w* \w south|strong="H8486"\w*. \w You|strong="H5414"\w* \w shall|strong="H6828"\w* \w put|strong="H5414"\w* \w the|strong="H5921"\w* \w table|strong="H7979"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w north|strong="H6828"\w* \w side|strong="H6763"\w*. +\p +\v 36 “\w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w screen|strong="H4539"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w door|strong="H6607"\w* \w of|strong="H4639"\w* \w the|strong="H6213"\w* Tent, \w of|strong="H4639"\w* \w blue|strong="H8504"\w*, \w and|strong="H8504"\w* \w purple|strong="H8504"\w*, \w and|strong="H8504"\w* \w scarlet|strong="H8144"\w*, \w and|strong="H8504"\w* \w fine|strong="H8336"\w* \w twined|strong="H7806"\w* \w linen|strong="H8336"\w*, \w the|strong="H6213"\w* \w work|strong="H4639"\w* \w of|strong="H4639"\w* \w the|strong="H6213"\w* \w embroiderer|strong="H7551"\w*. +\v 37 \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w screen|strong="H4539"\w* \w five|strong="H2568"\w* \w pillars|strong="H5982"\w* \w of|strong="H5982"\w* \w acacia|strong="H7848"\w*, \w and|strong="H2091"\w* \w overlay|strong="H6823"\w* \w them|strong="H6213"\w* \w with|strong="H6213"\w* \w gold|strong="H2091"\w*. \w Their|strong="H6213"\w* \w hooks|strong="H2053"\w* \w shall|strong="H6213"\w* be \w of|strong="H5982"\w* \w gold|strong="H2091"\w*. \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w cast|strong="H3332"\w* \w five|strong="H2568"\w* sockets \w of|strong="H5982"\w* \w bronze|strong="H5178"\w* \w for|strong="H6213"\w* \w them|strong="H6213"\w*. +\c 27 +\p +\v 1 “\w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w the|strong="H6213"\w* \w altar|strong="H4196"\w* \w of|strong="H4196"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*, \w five|strong="H2568"\w* \w cubits|strong="H2568"\w*\f + \fr 27:1 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* long, \w and|strong="H6086"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w* \w wide|strong="H7341"\w*. \w The|strong="H6213"\w* \w altar|strong="H4196"\w* \w shall|strong="H6213"\w* \w be|strong="H1961"\w* \w square|strong="H7251"\w*. \w Its|strong="H6213"\w* \w height|strong="H6967"\w* \w shall|strong="H6213"\w* \w be|strong="H1961"\w* \w three|strong="H7969"\w* \w cubits|strong="H2568"\w*.\f + \fr 27:1 \ft The altar was to be about 2.3×2.3×1.4 meters or about 7½×7½×4½ feet.\f* +\v 2 \w You|strong="H5921"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w its|strong="H5921"\w* \w horns|strong="H7161"\w* \w on|strong="H5921"\w* \w its|strong="H5921"\w* four \w corners|strong="H6438"\w*. \w Its|strong="H5921"\w* \w horns|strong="H7161"\w* \w shall|strong="H6213"\w* \w be|strong="H1961"\w* \w of|strong="H4480"\w* \w one|strong="H4480"\w* piece \w with|strong="H6213"\w* \w it|strong="H5921"\w*. \w You|strong="H5921"\w* \w shall|strong="H6213"\w* \w overlay|strong="H6823"\w* \w it|strong="H5921"\w* \w with|strong="H6213"\w* \w bronze|strong="H5178"\w*. +\v 3 \w You|strong="H3605"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w its|strong="H3605"\w* \w pots|strong="H5518"\w* \w to|strong="H6213"\w* \w take|strong="H6213"\w* \w away|strong="H3605"\w* \w its|strong="H3605"\w* \w ashes|strong="H1878"\w*; \w and|strong="H6213"\w* \w its|strong="H3605"\w* \w shovels|strong="H3257"\w*, \w its|strong="H3605"\w* \w basins|strong="H4219"\w*, \w its|strong="H3605"\w* meat \w hooks|strong="H4207"\w*, \w and|strong="H6213"\w* \w its|strong="H3605"\w* fire \w pans|strong="H5518"\w*. \w You|strong="H3605"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H3627"\w* \w bronze|strong="H5178"\w*. +\v 4 \w You|strong="H5921"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w grating|strong="H4345"\w* \w for|strong="H5921"\w* \w it|strong="H5921"\w* \w of|strong="H5921"\w* \w network|strong="H7568"\w* \w of|strong="H5921"\w* \w bronze|strong="H5178"\w*. \w On|strong="H5921"\w* \w the|strong="H5921"\w* \w net|strong="H7568"\w* \w you|strong="H5921"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* four \w bronze|strong="H5178"\w* \w rings|strong="H2885"\w* \w in|strong="H5921"\w* \w its|strong="H5921"\w* four \w corners|strong="H7098"\w*. +\v 5 \w You|strong="H5414"\w* \w shall|strong="H8478"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w under|strong="H8478"\w* \w the|strong="H5414"\w* \w ledge|strong="H3749"\w* around \w the|strong="H5414"\w* \w altar|strong="H4196"\w* \w beneath|strong="H8478"\w*, \w that|strong="H5414"\w* \w the|strong="H5414"\w* \w net|strong="H7568"\w* \w may|strong="H1961"\w* \w reach|strong="H1961"\w* \w halfway|strong="H2677"\w* \w up|strong="H5414"\w* \w the|strong="H5414"\w* \w altar|strong="H4196"\w*. +\v 6 \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* poles \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w altar|strong="H4196"\w*, poles \w of|strong="H4196"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*, \w and|strong="H6086"\w* \w overlay|strong="H6823"\w* \w them|strong="H6213"\w* \w with|strong="H6213"\w* \w bronze|strong="H5178"\w*. +\v 7 \w Its|strong="H5921"\w* poles \w shall|strong="H8147"\w* \w be|strong="H1961"\w* \w put|strong="H8147"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w rings|strong="H2885"\w*, \w and|strong="H4196"\w* \w the|strong="H5921"\w* poles \w shall|strong="H8147"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w sides|strong="H6763"\w* \w of|strong="H4196"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w when|strong="H1961"\w* \w carrying|strong="H5375"\w* \w it|strong="H5921"\w*. +\v 8 \w You|strong="H6213"\w* \w shall|strong="H2022"\w* \w make|strong="H6213"\w* \w it|strong="H6213"\w* \w hollow|strong="H5014"\w* \w with|strong="H6213"\w* \w planks|strong="H3871"\w*. \w They|strong="H3651"\w* \w shall|strong="H2022"\w* \w make|strong="H6213"\w* \w it|strong="H6213"\w* \w as|strong="H6213"\w* \w it|strong="H6213"\w* \w has|strong="H6213"\w* been \w shown|strong="H7200"\w* \w you|strong="H6213"\w* \w on|strong="H7200"\w* \w the|strong="H7200"\w* \w mountain|strong="H2022"\w*. +\p +\v 9 “\w You|strong="H6213"\w* \w shall|strong="H5045"\w* \w make|strong="H6213"\w* \w the|strong="H6213"\w* \w court|strong="H2691"\w* \w of|strong="H5045"\w* \w the|strong="H6213"\w* \w tabernacle|strong="H4908"\w*: \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w south|strong="H5045"\w* \w side|strong="H6285"\w* \w southward|strong="H5045"\w* there \w shall|strong="H5045"\w* be \w hangings|strong="H7050"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w court|strong="H2691"\w* \w of|strong="H5045"\w* \w fine|strong="H8336"\w* \w twined|strong="H7806"\w* \w linen|strong="H8336"\w* \w one|strong="H6213"\w* \w hundred|strong="H3967"\w* cubits long \w for|strong="H6213"\w* \w one|strong="H6213"\w* \w side|strong="H6285"\w*. +\v 10 Its \w pillars|strong="H5982"\w* \w shall|strong="H3701"\w* \w be|strong="H3701"\w* \w twenty|strong="H6242"\w*, \w and|strong="H6242"\w* their sockets \w twenty|strong="H6242"\w*, \w of|strong="H5982"\w* \w bronze|strong="H5178"\w*. The \w hooks|strong="H2053"\w* \w of|strong="H5982"\w* the \w pillars|strong="H5982"\w* \w and|strong="H6242"\w* their \w fillets|strong="H2838"\w* \w shall|strong="H3701"\w* \w be|strong="H3701"\w* \w of|strong="H5982"\w* \w silver|strong="H3701"\w*. +\v 11 \w Likewise|strong="H3651"\w* \w for|strong="H3701"\w* \w the|strong="H3651"\w* length \w of|strong="H5982"\w* \w the|strong="H3651"\w* \w north|strong="H6828"\w* \w side|strong="H6285"\w*, there \w shall|strong="H6828"\w* \w be|strong="H3701"\w* \w hangings|strong="H7050"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* cubits long, \w and|strong="H3967"\w* its \w pillars|strong="H5982"\w* \w twenty|strong="H6242"\w*, \w and|strong="H3967"\w* \w their|strong="H3651"\w* sockets \w twenty|strong="H6242"\w*, \w of|strong="H5982"\w* \w bronze|strong="H5178"\w*; \w the|strong="H3651"\w* \w hooks|strong="H2053"\w* \w of|strong="H5982"\w* \w the|strong="H3651"\w* \w pillars|strong="H5982"\w*, \w and|strong="H3967"\w* \w their|strong="H3651"\w* \w fillets|strong="H2838"\w*, \w of|strong="H5982"\w* \w silver|strong="H3701"\w*. +\v 12 \w For|strong="H3220"\w* \w the|strong="H3220"\w* \w width|strong="H7341"\w* \w of|strong="H5982"\w* \w the|strong="H3220"\w* \w court|strong="H2691"\w* \w on|strong="H6285"\w* \w the|strong="H3220"\w* \w west|strong="H3220"\w* \w side|strong="H6285"\w* \w shall|strong="H6285"\w* \w be|strong="H3220"\w* \w hangings|strong="H7050"\w* \w of|strong="H5982"\w* \w fifty|strong="H2572"\w* cubits; their \w pillars|strong="H5982"\w* \w ten|strong="H6235"\w*, \w and|strong="H2572"\w* their sockets \w ten|strong="H6235"\w*. +\v 13 \w The|strong="H6924"\w* \w width|strong="H7341"\w* \w of|strong="H7341"\w* \w the|strong="H6924"\w* \w court|strong="H2691"\w* \w on|strong="H6285"\w* \w the|strong="H6924"\w* \w east|strong="H4217"\w* \w side|strong="H6285"\w* \w eastward|strong="H6924"\w* \w shall|strong="H6285"\w* be \w fifty|strong="H2572"\w* cubits. +\v 14 \w The|strong="H7969"\w* \w hangings|strong="H7050"\w* \w for|strong="H7969"\w* \w the|strong="H7969"\w* \w one|strong="H7050"\w* \w side|strong="H3802"\w* \w of|strong="H5982"\w* \w the|strong="H7969"\w* gate shall be \w fifteen|strong="H2568"\w* \w cubits|strong="H2568"\w*; their \w pillars|strong="H5982"\w* \w three|strong="H7969"\w*, \w and|strong="H2568"\w* their sockets \w three|strong="H7969"\w*. +\v 15 \w For|strong="H8145"\w* \w the|strong="H8145"\w* \w other|strong="H8145"\w* \w side|strong="H3802"\w* shall be \w hangings|strong="H7050"\w* \w of|strong="H5982"\w* \w fifteen|strong="H2568"\w* \w cubits|strong="H2568"\w*; their \w pillars|strong="H5982"\w* \w three|strong="H7969"\w*, \w and|strong="H2568"\w* their sockets \w three|strong="H7969"\w*. +\v 16 \w For|strong="H4639"\w* \w the|strong="H8179"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* \w the|strong="H8179"\w* \w court|strong="H2691"\w* \w shall|strong="H4639"\w* be \w a|strong="H3068"\w* \w screen|strong="H4539"\w* \w of|strong="H8179"\w* \w twenty|strong="H6242"\w* cubits, \w of|strong="H8179"\w* \w blue|strong="H8504"\w*, \w and|strong="H6242"\w* \w purple|strong="H8504"\w*, \w and|strong="H6242"\w* \w scarlet|strong="H8144"\w*, \w and|strong="H6242"\w* \w fine|strong="H8336"\w* \w twined|strong="H7806"\w* \w linen|strong="H8336"\w*, \w the|strong="H8179"\w* \w work|strong="H4639"\w* \w of|strong="H8179"\w* \w the|strong="H8179"\w* \w embroiderer|strong="H7551"\w*; their \w pillars|strong="H5982"\w* four, \w and|strong="H6242"\w* their sockets four. +\v 17 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w pillars|strong="H5982"\w* \w of|strong="H5982"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w* \w around|strong="H5439"\w* \w shall|strong="H3701"\w* \w be|strong="H3701"\w* \w filleted|strong="H2836"\w* \w with|strong="H3605"\w* \w silver|strong="H3701"\w*; \w their|strong="H3605"\w* \w hooks|strong="H2053"\w* \w of|strong="H5982"\w* \w silver|strong="H3701"\w*, \w and|strong="H3701"\w* \w their|strong="H3605"\w* sockets \w of|strong="H5982"\w* \w bronze|strong="H5178"\w*. +\v 18 \w The|strong="H3967"\w* \w length|strong="H6967"\w* \w of|strong="H7341"\w* \w the|strong="H3967"\w* \w court|strong="H2691"\w* \w shall|strong="H3967"\w* be \w one|strong="H8336"\w* \w hundred|strong="H3967"\w* \w cubits|strong="H2568"\w*, \w and|strong="H3967"\w* \w the|strong="H3967"\w* \w width|strong="H7341"\w* \w fifty|strong="H2572"\w* \w throughout|strong="H7341"\w*, \w and|strong="H3967"\w* \w the|strong="H3967"\w* \w height|strong="H6967"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w*, \w of|strong="H7341"\w* \w fine|strong="H8336"\w* \w twined|strong="H7806"\w* \w linen|strong="H8336"\w*, \w and|strong="H3967"\w* their sockets \w of|strong="H7341"\w* \w bronze|strong="H5178"\w*. +\v 19 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w instruments|strong="H3627"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w* \w in|strong="H3627"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w service|strong="H5656"\w*, \w and|strong="H5178"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w pins|strong="H3489"\w*, \w and|strong="H5178"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w pins|strong="H3489"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w*, \w shall|strong="H3627"\w* \w be|strong="H5656"\w* \w of|strong="H3627"\w* \w bronze|strong="H5178"\w*. +\p +\v 20 “\w You|strong="H6680"\w* \w shall|strong="H1121"\w* \w command|strong="H6680"\w* \w the|strong="H3947"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w that|strong="H3478"\w* \w they|strong="H3478"\w* \w bring|strong="H5927"\w* \w to|strong="H3478"\w* \w you|strong="H6680"\w* \w pure|strong="H2134"\w* \w olive|strong="H2132"\w* \w oil|strong="H8081"\w* \w beaten|strong="H3795"\w* \w for|strong="H1121"\w* \w the|strong="H3947"\w* \w light|strong="H3974"\w*, \w to|strong="H3478"\w* cause \w a|strong="H3068"\w* \w lamp|strong="H5216"\w* \w to|strong="H3478"\w* \w burn|strong="H5927"\w* \w continually|strong="H8548"\w*. +\v 21 \w In|strong="H5921"\w* \w the|strong="H6440"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*, \w outside|strong="H2351"\w* \w the|strong="H6440"\w* \w veil|strong="H6532"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* covenant, \w Aaron|strong="H6186"\w* \w and|strong="H1121"\w* \w his|strong="H3068"\w* \w sons|strong="H1121"\w* \w shall|strong="H3068"\w* \w keep|strong="H6186"\w* \w it|strong="H5921"\w* \w in|strong="H5921"\w* \w order|strong="H6186"\w* \w from|strong="H6440"\w* \w evening|strong="H6153"\w* \w to|strong="H5704"\w* \w morning|strong="H1242"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*: \w it|strong="H5921"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w a|strong="H3068"\w* \w statute|strong="H2708"\w* \w forever|strong="H5769"\w* \w throughout|strong="H1755"\w* \w their|strong="H3068"\w* \w generations|strong="H1755"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w behalf|strong="H5921"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\c 28 +\p +\v 1 “\w Bring|strong="H7126"\w* Aaron \w your|strong="H7126"\w* brother, \w and|strong="H1121"\w* \w his|strong="H7126"\w* \w sons|strong="H1121"\w* \w with|strong="H3478"\w* \w him|strong="H7126"\w*, \w near|strong="H7126"\w* \w to|strong="H3478"\w* \w you|strong="H8432"\w* \w from|strong="H3478"\w* \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w that|strong="H3478"\w* \w he|strong="H3478"\w* \w may|strong="H3478"\w* \w minister|strong="H3547"\w* \w to|strong="H3478"\w* \w me|strong="H1121"\w* \w in|strong="H3478"\w* \w the|strong="H8432"\w* \w priest|strong="H3547"\w*’s office: Aaron, \w with|strong="H3478"\w* \w Nadab|strong="H5070"\w*, Abihu, Eleazar, \w and|strong="H1121"\w* Ithamar, Aaron’s \w sons|strong="H1121"\w*. +\v 2 \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w holy|strong="H6944"\w* garments \w for|strong="H6213"\w* Aaron \w your|strong="H6213"\w* brother, \w for|strong="H6213"\w* \w glory|strong="H3519"\w* \w and|strong="H6213"\w* \w for|strong="H6213"\w* \w beauty|strong="H8597"\w*. +\v 3 \w You|strong="H3605"\w* \w shall|strong="H3820"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H2450"\w* wise-hearted, whom \w I|strong="H3605"\w* \w have|strong="H3605"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w the|strong="H3605"\w* \w spirit|strong="H7307"\w* \w of|strong="H7307"\w* \w wisdom|strong="H2451"\w*, \w that|strong="H3605"\w* \w they|strong="H6213"\w* \w make|strong="H6213"\w* Aaron’s garments \w to|strong="H1696"\w* \w sanctify|strong="H6942"\w* \w him|strong="H6213"\w*, \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w may|strong="H6213"\w* \w minister|strong="H3547"\w* \w to|strong="H1696"\w* \w me|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w priest|strong="H3547"\w*’s office. +\v 4 \w These|strong="H6213"\w* \w are|strong="H1121"\w* \w the|strong="H6213"\w* \w garments|strong="H3801"\w* which \w they|strong="H6213"\w* \w shall|strong="H1121"\w* \w make|strong="H6213"\w*: \w a|strong="H3068"\w* \w breastplate|strong="H2833"\w*, \w an|strong="H6213"\w* ephod, \w a|strong="H3068"\w* \w robe|strong="H4598"\w*, \w a|strong="H3068"\w* fitted \w tunic|strong="H3801"\w*, \w a|strong="H3068"\w* \w turban|strong="H4701"\w*, \w and|strong="H1121"\w* \w a|strong="H3068"\w* sash. \w They|strong="H6213"\w* \w shall|strong="H1121"\w* \w make|strong="H6213"\w* \w holy|strong="H6944"\w* \w garments|strong="H3801"\w* \w for|strong="H6213"\w* Aaron \w your|strong="H6213"\w* brother \w and|strong="H1121"\w* \w his|strong="H6213"\w* \w sons|strong="H1121"\w*, \w that|strong="H1121"\w* \w he|strong="H6213"\w* \w may|strong="H6213"\w* \w minister|strong="H3547"\w* \w to|strong="H6213"\w* \w me|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w priest|strong="H3547"\w*’s office. +\v 5 \w They|strong="H1992"\w* \w shall|strong="H8438"\w* \w use|strong="H3947"\w* \w the|strong="H3947"\w* \w gold|strong="H2091"\w*, \w and|strong="H2091"\w* \w the|strong="H3947"\w* \w blue|strong="H8504"\w*, \w and|strong="H2091"\w* \w the|strong="H3947"\w* \w purple|strong="H8504"\w*, \w and|strong="H2091"\w* \w the|strong="H3947"\w* \w scarlet|strong="H8144"\w*, \w and|strong="H2091"\w* \w the|strong="H3947"\w* \w fine|strong="H8336"\w* \w linen|strong="H8336"\w*. +\p +\v 6 “\w They|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w the|strong="H6213"\w* ephod \w of|strong="H4639"\w* \w gold|strong="H2091"\w*, \w blue|strong="H8504"\w*, \w purple|strong="H8504"\w*, \w scarlet|strong="H8144"\w*, \w and|strong="H2091"\w* \w fine|strong="H8336"\w* \w twined|strong="H7806"\w* \w linen|strong="H8336"\w*, \w the|strong="H6213"\w* \w work|strong="H4639"\w* \w of|strong="H4639"\w* \w the|strong="H6213"\w* \w skillful|strong="H2803"\w* \w workman|strong="H2803"\w*. +\v 7 \w It|strong="H1961"\w* \w shall|strong="H8147"\w* \w have|strong="H1961"\w* \w two|strong="H8147"\w* \w shoulder|strong="H3802"\w* straps \w joined|strong="H2266"\w* \w to|strong="H1961"\w* \w the|strong="H1961"\w* \w two|strong="H8147"\w* \w ends|strong="H7098"\w* \w of|strong="H8147"\w* \w it|strong="H1961"\w*, \w that|strong="H1961"\w* \w it|strong="H1961"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w joined|strong="H2266"\w* \w together|strong="H2266"\w*. +\v 8 \w The|strong="H5921"\w* \w skillfully|strong="H2805"\w* \w woven|strong="H2805"\w* \w band|strong="H2805"\w*, \w which|strong="H2091"\w* \w is|strong="H1961"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*, \w shall|strong="H4639"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w its|strong="H5921"\w* \w work|strong="H4639"\w* \w and|strong="H2091"\w* \w of|strong="H4480"\w* \w the|strong="H5921"\w* \w same|strong="H4480"\w* piece; \w of|strong="H4480"\w* \w gold|strong="H2091"\w*, \w blue|strong="H8504"\w*, \w purple|strong="H8504"\w*, \w scarlet|strong="H8144"\w*, \w and|strong="H2091"\w* \w fine|strong="H8336"\w* \w twined|strong="H7806"\w* \w linen|strong="H8336"\w*. +\v 9 \w You|strong="H5921"\w* \w shall|strong="H1121"\w* \w take|strong="H3947"\w* \w two|strong="H8147"\w* \w onyx|strong="H7718"\w* stones, \w and|strong="H1121"\w* \w engrave|strong="H6605"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w the|strong="H5921"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 10 \w Six|strong="H8337"\w* \w of|strong="H8034"\w* \w their|strong="H5921"\w* \w names|strong="H8034"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w one|strong="H8034"\w* stone, \w and|strong="H8034"\w* \w the|strong="H5921"\w* \w names|strong="H8034"\w* \w of|strong="H8034"\w* \w the|strong="H5921"\w* \w six|strong="H8337"\w* \w that|strong="H5921"\w* \w remain|strong="H3498"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w other|strong="H8145"\w* stone, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w order|strong="H8435"\w* \w of|strong="H8034"\w* \w their|strong="H5921"\w* \w birth|strong="H8435"\w*. +\v 11 \w With|strong="H6213"\w* \w the|strong="H5921"\w* \w work|strong="H4639"\w* \w of|strong="H1121"\w* \w an|strong="H6213"\w* \w engraver|strong="H2796"\w* \w in|strong="H5921"\w* stone, \w like|strong="H3478"\w* \w the|strong="H5921"\w* \w engravings|strong="H6603"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w signet|strong="H2368"\w*, \w you|strong="H5921"\w* \w shall|strong="H1121"\w* \w engrave|strong="H6605"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* stones, \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w You|strong="H5921"\w* \w shall|strong="H1121"\w* \w make|strong="H6213"\w* \w them|strong="H5921"\w* \w to|strong="H3478"\w* \w be|strong="H1121"\w* enclosed \w in|strong="H5921"\w* \w settings|strong="H4142"\w* \w of|strong="H1121"\w* \w gold|strong="H2091"\w*. +\v 12 \w You|strong="H6440"\w* \w shall|strong="H3068"\w* \w put|strong="H7760"\w* \w the|strong="H6440"\w* \w two|strong="H8147"\w* stones \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w shoulder|strong="H3802"\w* straps \w of|strong="H1121"\w* \w the|strong="H6440"\w* ephod, \w to|strong="H3478"\w* \w be|strong="H3068"\w* stones \w of|strong="H1121"\w* \w memorial|strong="H2146"\w* \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. Aaron \w shall|strong="H3068"\w* \w bear|strong="H5375"\w* \w their|strong="H3068"\w* \w names|strong="H8034"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w on|strong="H5921"\w* \w his|strong="H5375"\w* \w two|strong="H8147"\w* \w shoulders|strong="H3802"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w memorial|strong="H2146"\w*. +\v 13 \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w settings|strong="H4865"\w* \w of|strong="H6213"\w* \w gold|strong="H2091"\w*, +\v 14 \w and|strong="H2091"\w* \w two|strong="H8147"\w* \w chains|strong="H8333"\w* \w of|strong="H5921"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*; \w you|strong="H5414"\w* \w shall|strong="H2889"\w* \w make|strong="H6213"\w* \w them|strong="H5414"\w* \w like|strong="H6213"\w* \w cords|strong="H5688"\w* \w of|strong="H5921"\w* \w braided|strong="H4639"\w* \w work|strong="H4639"\w*. \w You|strong="H5414"\w* \w shall|strong="H2889"\w* \w put|strong="H5414"\w* \w the|strong="H5921"\w* \w braided|strong="H4639"\w* \w chains|strong="H8333"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w settings|strong="H4865"\w*. +\p +\v 15 “\w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w breastplate|strong="H2833"\w* \w of|strong="H4639"\w* \w judgment|strong="H4941"\w*, \w the|strong="H6213"\w* \w work|strong="H4639"\w* \w of|strong="H4639"\w* \w the|strong="H6213"\w* \w skillful|strong="H2803"\w* \w workman|strong="H2803"\w*; \w like|strong="H2803"\w* \w the|strong="H6213"\w* \w work|strong="H4639"\w* \w of|strong="H4639"\w* \w the|strong="H6213"\w* ephod \w you|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w it|strong="H6213"\w*; \w of|strong="H4639"\w* \w gold|strong="H2091"\w*, \w of|strong="H4639"\w* \w blue|strong="H8504"\w*, \w and|strong="H4941"\w* \w purple|strong="H8504"\w*, \w and|strong="H4941"\w* \w scarlet|strong="H8144"\w*, \w and|strong="H4941"\w* \w fine|strong="H8336"\w* \w twined|strong="H7806"\w* \w linen|strong="H8336"\w*, \w you|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w it|strong="H6213"\w*. +\v 16 \w It|strong="H1961"\w* shall \w be|strong="H1961"\w* \w square|strong="H7251"\w* \w and|strong="H7341"\w* \w folded|strong="H3717"\w* \w double|strong="H3717"\w*; \w a|strong="H3068"\w* \w span|strong="H2239"\w*\f + \fr 28:16 \ft A span is the length from the tip of a man’s thumb to the tip of his little finger when his hand is stretched out (about half a cubit, or 9 inches, or 22.8 cm.)\f* shall \w be|strong="H1961"\w* \w its|strong="H1961"\w* length, \w and|strong="H7341"\w* \w a|strong="H3068"\w* \w span|strong="H2239"\w* \w its|strong="H1961"\w* \w width|strong="H7341"\w*. +\v 17 You shall \w set|strong="H4390"\w* in it \w settings|strong="H4390"\w* \w of|strong="H4390"\w* stones, four \w rows|strong="H2905"\w* \w of|strong="H4390"\w* stones: \w a|strong="H3068"\w* \w row|strong="H2905"\w* \w of|strong="H4390"\w* ruby, \w topaz|strong="H6357"\w*, \w and|strong="H6357"\w* beryl shall be \w the|strong="H4390"\w* first \w row|strong="H2905"\w*; +\v 18 \w and|strong="H8145"\w* \w the|strong="H8145"\w* \w second|strong="H8145"\w* \w row|strong="H2905"\w* \w a|strong="H3068"\w* \w turquoise|strong="H5306"\w*, \w a|strong="H3068"\w* \w sapphire|strong="H5601"\w*,\f + \fr 28:18 \ft or, lapis lazuli \f* \w and|strong="H8145"\w* an \w emerald|strong="H5306"\w*; +\v 19 \w and|strong="H7992"\w* \w the|strong="H7992"\w* \w third|strong="H7992"\w* \w row|strong="H2905"\w* \w a|strong="H3068"\w* \w jacinth|strong="H3958"\w*, an \w agate|strong="H7618"\w*, \w and|strong="H7992"\w* an amethyst; +\v 20 \w and|strong="H2091"\w* \w the|strong="H1961"\w* \w fourth|strong="H7243"\w* \w row|strong="H2905"\w* \w a|strong="H3068"\w* chrysolite, \w an|strong="H1961"\w* \w onyx|strong="H7718"\w*, \w and|strong="H2091"\w* \w a|strong="H3068"\w* \w jasper|strong="H3471"\w*. \w They|strong="H7243"\w* shall \w be|strong="H1961"\w* \w enclosed|strong="H7660"\w* \w in|strong="H1961"\w* \w gold|strong="H2091"\w* \w in|strong="H1961"\w* \w their|strong="H1961"\w* \w settings|strong="H4396"\w*. +\v 21 \w The|strong="H5921"\w* stones \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w twelve|strong="H8147"\w*, \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w their|strong="H5921"\w* \w names|strong="H8034"\w*; \w like|strong="H1961"\w* \w the|strong="H5921"\w* \w engravings|strong="H6603"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w signet|strong="H2368"\w*, everyone \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w his|strong="H5921"\w* \w name|strong="H8034"\w*, \w they|strong="H5921"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w twelve|strong="H8147"\w* \w tribes|strong="H7626"\w*. +\v 22 \w You|strong="H5921"\w* \w shall|strong="H2889"\w* \w make|strong="H6213"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w breastplate|strong="H2833"\w* \w chains|strong="H5688"\w* \w like|strong="H6213"\w* \w cords|strong="H5688"\w*, \w of|strong="H5921"\w* \w braided|strong="H4639"\w* \w work|strong="H4639"\w* \w of|strong="H5921"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*. +\v 23 \w You|strong="H5414"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w breastplate|strong="H2833"\w* \w two|strong="H8147"\w* \w rings|strong="H2885"\w* \w of|strong="H5921"\w* \w gold|strong="H2091"\w*, \w and|strong="H2091"\w* \w shall|strong="H6213"\w* \w put|strong="H5414"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w rings|strong="H2885"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w ends|strong="H7098"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w breastplate|strong="H2833"\w*. +\v 24 \w You|strong="H5414"\w* \w shall|strong="H8147"\w* \w put|strong="H5414"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* braided \w chains|strong="H5688"\w* \w of|strong="H5921"\w* \w gold|strong="H2091"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w rings|strong="H2885"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w ends|strong="H7098"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w breastplate|strong="H2833"\w*. +\v 25 \w The|strong="H6440"\w* \w other|strong="H8147"\w* \w two|strong="H8147"\w* \w ends|strong="H7098"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w two|strong="H8147"\w* braided \w chains|strong="H5688"\w* \w you|strong="H5414"\w* \w shall|strong="H6440"\w* \w put|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w two|strong="H8147"\w* \w settings|strong="H4865"\w*, \w and|strong="H6440"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w shoulder|strong="H3802"\w* straps \w of|strong="H6440"\w* \w the|strong="H6440"\w* ephod \w in|strong="H5921"\w* \w its|strong="H5414"\w* \w forepart|strong="H6440"\w*. +\v 26 \w You|strong="H5921"\w* \w shall|strong="H1004"\w* \w make|strong="H6213"\w* \w two|strong="H8147"\w* \w rings|strong="H2885"\w* \w of|strong="H1004"\w* \w gold|strong="H2091"\w*, \w and|strong="H1004"\w* \w you|strong="H5921"\w* \w shall|strong="H1004"\w* \w put|strong="H7760"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w ends|strong="H7098"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w breastplate|strong="H2833"\w*, \w on|strong="H5921"\w* \w its|strong="H5921"\w* \w edge|strong="H8193"\w*, \w which|strong="H1004"\w* \w is|strong="H1004"\w* \w toward|strong="H5921"\w* \w the|strong="H5921"\w* \w side|strong="H5676"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* ephod \w inward|strong="H1004"\w*. +\v 27 \w You|strong="H5414"\w* \w shall|strong="H6440"\w* \w make|strong="H6213"\w* \w two|strong="H8147"\w* \w rings|strong="H2885"\w* \w of|strong="H6440"\w* \w gold|strong="H2091"\w*, \w and|strong="H2091"\w* \w shall|strong="H6440"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w two|strong="H8147"\w* \w shoulder|strong="H3802"\w* straps \w of|strong="H6440"\w* \w the|strong="H6440"\w* ephod \w underneath|strong="H4295"\w*, \w in|strong="H5921"\w* \w its|strong="H5414"\w* \w forepart|strong="H6440"\w*, \w close|strong="H5980"\w* \w by|strong="H5921"\w* \w its|strong="H5414"\w* \w coupling|strong="H4225"\w*, \w above|strong="H4605"\w* \w the|strong="H6440"\w* \w skillfully|strong="H2805"\w* \w woven|strong="H2805"\w* \w band|strong="H2805"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* ephod. +\v 28 \w They|strong="H3808"\w* \w shall|strong="H3808"\w* \w bind|strong="H7405"\w* \w the|strong="H5921"\w* \w breastplate|strong="H2833"\w* \w by|strong="H5921"\w* \w its|strong="H5921"\w* \w rings|strong="H2885"\w* \w to|strong="H1961"\w* \w the|strong="H5921"\w* \w rings|strong="H2885"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* ephod \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w lace|strong="H6616"\w* \w of|strong="H5921"\w* \w blue|strong="H8504"\w*, \w that|strong="H3808"\w* \w it|strong="H5921"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w skillfully|strong="H2805"\w* \w woven|strong="H2805"\w* \w band|strong="H2805"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* ephod, \w and|strong="H8504"\w* \w that|strong="H3808"\w* \w the|strong="H5921"\w* \w breastplate|strong="H2833"\w* \w may|strong="H1961"\w* \w not|strong="H3808"\w* swing \w out|strong="H5921"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* ephod. +\v 29 Aaron \w shall|strong="H3068"\w* \w bear|strong="H5375"\w* \w the|strong="H6440"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w breastplate|strong="H2833"\w* \w of|strong="H1121"\w* \w judgment|strong="H4941"\w* \w on|strong="H5921"\w* \w his|strong="H5375"\w* \w heart|strong="H3820"\w*, \w when|strong="H3068"\w* \w he|strong="H3068"\w* \w goes|strong="H6440"\w* \w in|strong="H5921"\w* \w to|strong="H3478"\w* \w the|strong="H6440"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w*, \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w memorial|strong="H2146"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w continually|strong="H8548"\w*. +\v 30 \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w put|strong="H5414"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w breastplate|strong="H2833"\w* \w of|strong="H1121"\w* \w judgment|strong="H4941"\w* \w the|strong="H6440"\w* Urim \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w Thummim|strong="H8550"\w*; \w and|strong="H1121"\w* \w they|strong="H3068"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* Aaron’s \w heart|strong="H3820"\w*, \w when|strong="H1961"\w* \w he|strong="H3068"\w* \w goes|strong="H6440"\w* \w in|strong="H5921"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. Aaron \w shall|strong="H3068"\w* \w bear|strong="H5375"\w* \w the|strong="H6440"\w* \w judgment|strong="H4941"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w on|strong="H5921"\w* \w his|strong="H5375"\w* \w heart|strong="H3820"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w continually|strong="H8548"\w*. +\p +\v 31 “\w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w the|strong="H6213"\w* \w robe|strong="H4598"\w* \w of|strong="H6213"\w* \w the|strong="H6213"\w* ephod \w all|strong="H6213"\w* \w of|strong="H6213"\w* \w blue|strong="H8504"\w*. +\v 32 \w It|strong="H8432"\w* \w shall|strong="H3808"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* \w hole|strong="H6310"\w* \w for|strong="H1961"\w* \w the|strong="H8432"\w* \w head|strong="H7218"\w* \w in|strong="H8432"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H7218"\w* \w it|strong="H8432"\w*. \w It|strong="H8432"\w* \w shall|strong="H3808"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* \w binding|strong="H8193"\w* \w of|strong="H7218"\w* woven \w work|strong="H4639"\w* \w around|strong="H5439"\w* \w its|strong="H5439"\w* \w hole|strong="H6310"\w*, \w as|strong="H1961"\w* \w it|strong="H8432"\w* \w were|strong="H1961"\w* \w the|strong="H8432"\w* \w hole|strong="H6310"\w* \w of|strong="H7218"\w* \w a|strong="H3068"\w* \w coat|strong="H8473"\w* \w of|strong="H7218"\w* \w mail|strong="H8473"\w*, \w that|strong="H3808"\w* \w it|strong="H8432"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w torn|strong="H7167"\w*. +\v 33 \w On|strong="H5921"\w* \w its|strong="H5921"\w* \w hem|strong="H7757"\w* \w you|strong="H5921"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w pomegranates|strong="H7416"\w* \w of|strong="H8432"\w* \w blue|strong="H8504"\w*, \w and|strong="H2091"\w* \w of|strong="H8432"\w* \w purple|strong="H8504"\w*, \w and|strong="H2091"\w* \w of|strong="H8432"\w* \w scarlet|strong="H8144"\w*, \w all|strong="H5439"\w* \w around|strong="H5439"\w* \w its|strong="H5921"\w* \w hem|strong="H7757"\w*; \w with|strong="H6213"\w* \w bells|strong="H6472"\w* \w of|strong="H8432"\w* \w gold|strong="H2091"\w* \w between|strong="H8432"\w* \w and|strong="H2091"\w* \w around|strong="H5439"\w* \w them|strong="H5921"\w*: +\v 34 \w a|strong="H3068"\w* \w golden|strong="H2091"\w* \w bell|strong="H6472"\w* \w and|strong="H2091"\w* \w a|strong="H3068"\w* \w pomegranate|strong="H7416"\w*, \w a|strong="H3068"\w* \w golden|strong="H2091"\w* \w bell|strong="H6472"\w* \w and|strong="H2091"\w* \w a|strong="H3068"\w* \w pomegranate|strong="H7416"\w*, \w around|strong="H5439"\w* \w the|strong="H5921"\w* \w hem|strong="H7757"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w robe|strong="H4598"\w*. +\v 35 \w It|strong="H5921"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* Aaron \w to|strong="H3318"\w* \w minister|strong="H8334"\w*: \w and|strong="H3068"\w* \w its|strong="H5921"\w* \w sound|strong="H6963"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w heard|strong="H8085"\w* \w when|strong="H1961"\w* \w he|strong="H3068"\w* \w goes|strong="H3318"\w* \w in|strong="H5921"\w* \w to|strong="H3318"\w* \w the|strong="H6440"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w when|strong="H1961"\w* \w he|strong="H3068"\w* \w comes|strong="H3318"\w* \w out|strong="H3318"\w*, \w that|strong="H8085"\w* \w he|strong="H3068"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*. +\p +\v 36 “\w You|strong="H5921"\w* \w shall|strong="H3068"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w plate|strong="H6731"\w* \w of|strong="H3068"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*, \w and|strong="H3068"\w* \w engrave|strong="H6605"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*, \w like|strong="H6213"\w* \w the|strong="H5921"\w* \w engravings|strong="H6603"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w signet|strong="H2368"\w*, ‘\w HOLY|strong="H6944"\w* \w TO|strong="H3068"\w* \w YAHWEH|strong="H3068"\w*.’ +\v 37 \w You|strong="H6440"\w* \w shall|strong="H6440"\w* \w put|strong="H7760"\w* \w it|strong="H7760"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w lace|strong="H6616"\w* \w of|strong="H6440"\w* \w blue|strong="H8504"\w*, \w and|strong="H6440"\w* \w it|strong="H7760"\w* \w shall|strong="H6440"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* sash. \w It|strong="H7760"\w* \w shall|strong="H6440"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w front|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* sash. +\v 38 \w It|strong="H5921"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* Aaron’s \w forehead|strong="H4696"\w*, \w and|strong="H1121"\w* Aaron \w shall|strong="H3068"\w* \w bear|strong="H5375"\w* \w the|strong="H3605"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w*, \w which|strong="H3068"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w shall|strong="H3068"\w* \w make|strong="H5375"\w* \w holy|strong="H6944"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w holy|strong="H6944"\w* \w gifts|strong="H4979"\w*; \w and|strong="H1121"\w* \w it|strong="H5921"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w always|strong="H3605"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w forehead|strong="H4696"\w*, \w that|strong="H3605"\w* \w they|strong="H3068"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w accepted|strong="H7522"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 39 \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w weave|strong="H7660"\w* \w the|strong="H6213"\w* \w tunic|strong="H3801"\w* \w with|strong="H6213"\w* \w fine|strong="H8336"\w* \w linen|strong="H8336"\w*. \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w turban|strong="H4701"\w* \w of|strong="H4639"\w* \w fine|strong="H8336"\w* \w linen|strong="H8336"\w*. \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* sash, \w the|strong="H6213"\w* \w work|strong="H4639"\w* \w of|strong="H4639"\w* \w the|strong="H6213"\w* \w embroiderer|strong="H7551"\w*. +\p +\v 40 “\w You|strong="H6213"\w* \w shall|strong="H1121"\w* \w make|strong="H6213"\w* \w tunics|strong="H3801"\w* \w for|strong="H6213"\w* Aaron’s \w sons|strong="H1121"\w*. \w You|strong="H6213"\w* \w shall|strong="H1121"\w* \w make|strong="H6213"\w* sashes \w for|strong="H6213"\w* \w them|strong="H6213"\w*. \w You|strong="H6213"\w* \w shall|strong="H1121"\w* \w make|strong="H6213"\w* \w headbands|strong="H4021"\w* \w for|strong="H6213"\w* \w them|strong="H6213"\w*, \w for|strong="H6213"\w* \w glory|strong="H3519"\w* \w and|strong="H1121"\w* \w for|strong="H6213"\w* \w beauty|strong="H8597"\w*. +\v 41 \w You|strong="H4886"\w* \w shall|strong="H1121"\w* \w put|strong="H3847"\w* \w them|strong="H3027"\w* \w on|strong="H3847"\w* Aaron \w your|strong="H3027"\w* brother, \w and|strong="H1121"\w* \w on|strong="H3847"\w* \w his|strong="H3027"\w* \w sons|strong="H1121"\w* \w with|strong="H4390"\w* \w him|strong="H3027"\w*, \w and|strong="H1121"\w* \w shall|strong="H1121"\w* \w anoint|strong="H4886"\w* \w them|strong="H3027"\w*, \w and|strong="H1121"\w* \w consecrate|strong="H6942"\w* \w them|strong="H3027"\w*, \w and|strong="H1121"\w* \w sanctify|strong="H6942"\w* \w them|strong="H3027"\w*, \w that|strong="H1121"\w* \w they|strong="H6942"\w* \w may|strong="H1121"\w* \w minister|strong="H3547"\w* \w to|strong="H3027"\w* \w me|strong="H4886"\w* \w in|strong="H3847"\w* \w the|strong="H4390"\w* \w priest|strong="H3547"\w*’s office. +\v 42 \w You|strong="H5704"\w* \w shall|strong="H1320"\w* \w make|strong="H6213"\w* \w them|strong="H6213"\w* linen pants \w to|strong="H5704"\w* \w cover|strong="H3680"\w* \w their|strong="H1961"\w* naked \w flesh|strong="H1320"\w*. \w They|strong="H5704"\w* \w shall|strong="H1320"\w* \w reach|strong="H1961"\w* \w from|strong="H5704"\w* \w the|strong="H6213"\w* \w waist|strong="H4975"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H6213"\w* \w thighs|strong="H3409"\w*. +\v 43 \w They|strong="H3808"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* Aaron \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w his|strong="H5375"\w* \w sons|strong="H1121"\w*, \w when|strong="H1961"\w* \w they|strong="H3808"\w* \w go|strong="H5066"\w* \w in|strong="H5921"\w* \w to|strong="H4191"\w* \w the|strong="H5921"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*, \w or|strong="H3808"\w* \w when|strong="H1961"\w* \w they|strong="H3808"\w* \w come|strong="H1961"\w* \w near|strong="H5066"\w* \w to|strong="H4191"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w to|strong="H4191"\w* \w minister|strong="H8334"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w*, \w that|strong="H4196"\w* \w they|strong="H3808"\w* don’t \w bear|strong="H5375"\w* \w iniquity|strong="H5771"\w*, \w and|strong="H1121"\w* \w die|strong="H4191"\w*. \w This|strong="H4191"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w statute|strong="H2708"\w* \w forever|strong="H5769"\w* \w to|strong="H4191"\w* \w him|strong="H5921"\w* \w and|strong="H1121"\w* \w to|strong="H4191"\w* \w his|strong="H5375"\w* \w offspring|strong="H2233"\w* \w after|strong="H5921"\w* \w him|strong="H5921"\w*. +\c 29 +\p +\v 1 “\w This|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H3947"\w* \w thing|strong="H1697"\w* \w that|strong="H1697"\w* \w you|strong="H3947"\w* \w shall|strong="H1121"\w* \w do|strong="H6213"\w* \w to|strong="H6213"\w* \w them|strong="H6213"\w* \w to|strong="H6213"\w* \w make|strong="H6213"\w* \w them|strong="H6213"\w* \w holy|strong="H6942"\w*, \w to|strong="H6213"\w* \w minister|strong="H3547"\w* \w to|strong="H6213"\w* \w me|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H3947"\w* \w priest|strong="H3547"\w*’s office: \w take|strong="H3947"\w* \w one|strong="H2088"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w* \w and|strong="H1121"\w* \w two|strong="H8147"\w* rams \w without|strong="H8549"\w* \w defect|strong="H8549"\w*, +\v 2 \w unleavened|strong="H4682"\w* \w bread|strong="H3899"\w*, \w unleavened|strong="H4682"\w* \w cakes|strong="H2471"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w*, \w and|strong="H3899"\w* \w unleavened|strong="H4682"\w* \w wafers|strong="H7550"\w* \w anointed|strong="H4886"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w*. \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w them|strong="H6213"\w* \w of|strong="H3899"\w* \w fine|strong="H5560"\w* \w wheat|strong="H2406"\w* \w flour|strong="H5560"\w*. +\v 3 \w You|strong="H5414"\w* \w shall|strong="H8147"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H5921"\w* \w one|strong="H8147"\w* \w basket|strong="H5536"\w*, \w and|strong="H6499"\w* \w bring|strong="H7126"\w* \w them|strong="H5414"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w basket|strong="H5536"\w*, \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w bull|strong="H6499"\w* \w and|strong="H6499"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* rams. +\v 4 \w You|strong="H7126"\w* \w shall|strong="H1121"\w* \w bring|strong="H7126"\w* Aaron \w and|strong="H1121"\w* \w his|strong="H7364"\w* \w sons|strong="H1121"\w* \w to|strong="H1121"\w* \w the|strong="H7126"\w* \w door|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H7126"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*, \w and|strong="H1121"\w* \w shall|strong="H1121"\w* \w wash|strong="H7364"\w* \w them|strong="H7126"\w* \w with|strong="H7364"\w* \w water|strong="H4325"\w*. +\v 5 \w You|strong="H3947"\w* shall \w take|strong="H3947"\w* \w the|strong="H3947"\w* \w garments|strong="H3801"\w*, \w and|strong="H3947"\w* \w put|strong="H3847"\w* \w on|strong="H3847"\w* Aaron \w the|strong="H3947"\w* \w tunic|strong="H3801"\w*, \w the|strong="H3947"\w* \w robe|strong="H4598"\w* \w of|strong="H3801"\w* \w the|strong="H3947"\w* ephod, \w the|strong="H3947"\w* ephod, \w and|strong="H3947"\w* \w the|strong="H3947"\w* \w breastplate|strong="H2833"\w*, \w and|strong="H3947"\w* \w clothe|strong="H3847"\w* \w him|strong="H3947"\w* \w with|strong="H3847"\w* \w the|strong="H3947"\w* \w skillfully|strong="H2805"\w* \w woven|strong="H2805"\w* \w band|strong="H2805"\w* \w of|strong="H3801"\w* \w the|strong="H3947"\w* ephod. +\v 6 \w You|strong="H5414"\w* \w shall|strong="H5145"\w* \w set|strong="H7760"\w* \w the|strong="H5921"\w* \w turban|strong="H4701"\w* \w on|strong="H5921"\w* \w his|strong="H5414"\w* \w head|strong="H7218"\w*, \w and|strong="H7218"\w* \w put|strong="H5414"\w* \w the|strong="H5921"\w* \w holy|strong="H6944"\w* \w crown|strong="H5145"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w turban|strong="H4701"\w*. +\v 7 \w Then|strong="H3947"\w* \w you|strong="H5921"\w* \w shall|strong="H7218"\w* \w take|strong="H3947"\w* \w the|strong="H5921"\w* \w anointing|strong="H4888"\w* \w oil|strong="H8081"\w*, \w and|strong="H7218"\w* \w pour|strong="H3332"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w his|strong="H3947"\w* \w head|strong="H7218"\w*, \w and|strong="H7218"\w* \w anoint|strong="H4886"\w* \w him|strong="H5921"\w*. +\v 8 \w You|strong="H7126"\w* \w shall|strong="H1121"\w* \w bring|strong="H7126"\w* \w his|strong="H7126"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w put|strong="H3847"\w* \w tunics|strong="H3801"\w* \w on|strong="H3847"\w* \w them|strong="H7126"\w*. +\v 9 \w You|strong="H3027"\w* \w shall|strong="H1121"\w* clothe \w them|strong="H1992"\w* \w with|strong="H4390"\w* belts, Aaron \w and|strong="H1121"\w* \w his|strong="H3027"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w bind|strong="H2280"\w* \w headbands|strong="H4021"\w* \w on|strong="H2296"\w* \w them|strong="H1992"\w*. \w They|strong="H1992"\w* \w shall|strong="H1121"\w* \w have|strong="H1961"\w* \w the|strong="H4390"\w* \w priesthood|strong="H3550"\w* \w by|strong="H3027"\w* \w a|strong="H3068"\w* \w perpetual|strong="H5769"\w* \w statute|strong="H2708"\w*. \w You|strong="H3027"\w* \w shall|strong="H1121"\w* \w consecrate|strong="H4390"\w* Aaron \w and|strong="H1121"\w* \w his|strong="H3027"\w* \w sons|strong="H1121"\w*. +\p +\v 10 “\w You|strong="H6440"\w* \w shall|strong="H1121"\w* \w bring|strong="H7126"\w* \w the|strong="H6440"\w* \w bull|strong="H6499"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*; \w and|strong="H1121"\w* Aaron \w and|strong="H1121"\w* \w his|strong="H6440"\w* \w sons|strong="H1121"\w* \w shall|strong="H1121"\w* \w lay|strong="H5564"\w* \w their|strong="H5564"\w* \w hands|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w head|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w bull|strong="H6499"\w*. +\v 11 \w You|strong="H6440"\w* \w shall|strong="H3068"\w* \w kill|strong="H7819"\w* \w the|strong="H6440"\w* \w bull|strong="H6499"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w at|strong="H3068"\w* \w the|strong="H6440"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*. +\v 12 \w You|strong="H5414"\w* \w shall|strong="H1818"\w* \w take|strong="H3947"\w* \w of|strong="H4196"\w* \w the|strong="H3605"\w* \w blood|strong="H1818"\w* \w of|strong="H4196"\w* \w the|strong="H3605"\w* \w bull|strong="H6499"\w*, \w and|strong="H4196"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w horns|strong="H7161"\w* \w of|strong="H4196"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w with|strong="H5921"\w* \w your|strong="H3605"\w* finger; \w and|strong="H4196"\w* \w you|strong="H5414"\w* \w shall|strong="H1818"\w* \w pour|strong="H8210"\w* \w out|strong="H8210"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w blood|strong="H1818"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w base|strong="H3247"\w* \w of|strong="H4196"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*. +\v 13 \w You|strong="H3605"\w* \w shall|strong="H8147"\w* \w take|strong="H3947"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fat|strong="H2459"\w* \w that|strong="H3605"\w* \w covers|strong="H3680"\w* \w the|strong="H3605"\w* innards, \w the|strong="H3605"\w* \w cover|strong="H3680"\w* \w of|strong="H4196"\w* \w the|strong="H3605"\w* \w liver|strong="H3516"\w*, \w the|strong="H3605"\w* \w two|strong="H8147"\w* \w kidneys|strong="H3629"\w*, \w and|strong="H4196"\w* \w the|strong="H3605"\w* \w fat|strong="H2459"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, \w and|strong="H4196"\w* \w burn|strong="H6999"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*. +\v 14 \w But|strong="H1931"\w* \w the|strong="H2351"\w* \w meat|strong="H1320"\w* \w of|strong="H4264"\w* \w the|strong="H2351"\w* \w bull|strong="H6499"\w*, \w and|strong="H6499"\w* its \w skin|strong="H5785"\w*, \w and|strong="H6499"\w* its \w dung|strong="H6569"\w*, \w you|strong="H1320"\w* \w shall|strong="H1320"\w* \w burn|strong="H8313"\w* \w with|strong="H8313"\w* fire \w outside|strong="H2351"\w* \w of|strong="H4264"\w* \w the|strong="H2351"\w* \w camp|strong="H4264"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*. +\p +\v 15 “\w You|strong="H5921"\w* \w shall|strong="H1121"\w* \w also|strong="H3027"\w* \w take|strong="H3947"\w* \w the|strong="H5921"\w* \w one|strong="H1121"\w* ram, \w and|strong="H1121"\w* Aaron \w and|strong="H1121"\w* \w his|strong="H3947"\w* \w sons|strong="H1121"\w* \w shall|strong="H1121"\w* \w lay|strong="H5564"\w* \w their|strong="H3947"\w* \w hands|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* ram. +\v 16 \w You|strong="H5921"\w* \w shall|strong="H1818"\w* \w kill|strong="H7819"\w* \w the|strong="H5921"\w* ram, \w and|strong="H4196"\w* \w you|strong="H5921"\w* \w shall|strong="H1818"\w* \w take|strong="H3947"\w* \w its|strong="H5921"\w* \w blood|strong="H1818"\w*, \w and|strong="H4196"\w* \w sprinkle|strong="H2236"\w* \w it|strong="H5921"\w* \w around|strong="H5439"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*. +\v 17 \w You|strong="H5414"\w* \w shall|strong="H7218"\w* \w cut|strong="H5408"\w* \w the|strong="H5921"\w* ram \w into|strong="H5921"\w* \w its|strong="H5414"\w* \w pieces|strong="H5409"\w*, \w and|strong="H7218"\w* \w wash|strong="H7364"\w* \w its|strong="H5414"\w* innards, \w and|strong="H7218"\w* \w its|strong="H5414"\w* \w legs|strong="H3767"\w*, \w and|strong="H7218"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w with|strong="H5921"\w* \w its|strong="H5414"\w* \w pieces|strong="H5409"\w*, \w and|strong="H7218"\w* \w with|strong="H5921"\w* \w its|strong="H5414"\w* \w head|strong="H7218"\w*. +\v 18 \w You|strong="H3605"\w* \w shall|strong="H3068"\w* \w burn|strong="H6999"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* ram \w on|strong="H3068"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*: \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*; \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w*, \w an|strong="H3068"\w* \w offering|strong="H5930"\w* \w made|strong="H3068"\w* \w by|strong="H3068"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 19 “\w You|strong="H5921"\w* \w shall|strong="H1121"\w* \w take|strong="H3947"\w* \w the|strong="H5921"\w* \w other|strong="H8145"\w* ram, \w and|strong="H1121"\w* Aaron \w and|strong="H1121"\w* \w his|strong="H3947"\w* \w sons|strong="H1121"\w* \w shall|strong="H1121"\w* \w lay|strong="H5564"\w* \w their|strong="H3947"\w* \w hands|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* ram. +\v 20 \w Then|strong="H3947"\w* \w you|strong="H5414"\w* \w shall|strong="H1121"\w* \w kill|strong="H7819"\w* \w the|strong="H5921"\w* ram, \w and|strong="H1121"\w* \w take|strong="H3947"\w* \w some|strong="H3027"\w* \w of|strong="H1121"\w* \w its|strong="H5414"\w* \w blood|strong="H1818"\w*, \w and|strong="H1121"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tip|strong="H8571"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w right|strong="H3233"\w* ear \w of|strong="H1121"\w* Aaron, \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tip|strong="H8571"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w right|strong="H3233"\w* ear \w of|strong="H1121"\w* \w his|strong="H5414"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* thumb \w of|strong="H1121"\w* \w their|strong="H5414"\w* \w right|strong="H3233"\w* \w hand|strong="H3027"\w*, \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* big toe \w of|strong="H1121"\w* \w their|strong="H5414"\w* \w right|strong="H3233"\w* \w foot|strong="H7272"\w*; \w and|strong="H1121"\w* \w sprinkle|strong="H2236"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w around|strong="H5439"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*. +\v 21 \w You|strong="H5921"\w* \w shall|strong="H1121"\w* \w take|strong="H3947"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w that|strong="H1931"\w* \w is|strong="H1931"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w anointing|strong="H4888"\w* \w oil|strong="H8081"\w*, \w and|strong="H1121"\w* \w sprinkle|strong="H5137"\w* \w it|strong="H1931"\w* \w on|strong="H5921"\w* Aaron, \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w his|strong="H3947"\w* garments, \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w his|strong="H3947"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* garments \w of|strong="H1121"\w* \w his|strong="H3947"\w* \w sons|strong="H1121"\w* \w with|strong="H5921"\w* \w him|strong="H5921"\w*: \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w made|strong="H6942"\w* \w holy|strong="H6942"\w*, \w and|strong="H1121"\w* \w his|strong="H3947"\w* garments, \w and|strong="H1121"\w* \w his|strong="H3947"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w his|strong="H3947"\w* \w sons|strong="H1121"\w*’ garments \w with|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 22 \w Also|strong="H3629"\w* \w you|strong="H3588"\w* \w shall|strong="H3225"\w* \w take|strong="H3947"\w* \w some|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H5921"\w* ram’s \w fat|strong="H2459"\w*, \w the|strong="H5921"\w* \w fat|strong="H2459"\w* tail, \w the|strong="H5921"\w* \w fat|strong="H2459"\w* \w that|strong="H3588"\w* \w covers|strong="H3680"\w* \w the|strong="H5921"\w* innards, \w the|strong="H5921"\w* \w cover|strong="H3680"\w* \w of|strong="H4480"\w* \w the|strong="H5921"\w* \w liver|strong="H3516"\w*, \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w kidneys|strong="H3629"\w*, \w the|strong="H5921"\w* \w fat|strong="H2459"\w* \w that|strong="H3588"\w* \w is|strong="H1931"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, \w and|strong="H8147"\w* \w the|strong="H5921"\w* \w right|strong="H3225"\w* \w thigh|strong="H7785"\w* (\w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* ram \w of|strong="H4480"\w* \w consecration|strong="H4394"\w*), +\v 23 \w and|strong="H3068"\w* \w one|strong="H3068"\w* \w loaf|strong="H3603"\w* \w of|strong="H3068"\w* \w bread|strong="H3899"\w*, \w one|strong="H3068"\w* \w cake|strong="H2471"\w* \w of|strong="H3068"\w* \w oiled|strong="H8081"\w* \w bread|strong="H3899"\w*, \w and|strong="H3068"\w* \w one|strong="H3068"\w* \w wafer|strong="H7550"\w* \w out|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w basket|strong="H5536"\w* \w of|strong="H3068"\w* \w unleavened|strong="H4682"\w* \w bread|strong="H3899"\w* \w that|strong="H3068"\w* \w is|strong="H3068"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 24 \w You|strong="H6440"\w* \w shall|strong="H3068"\w* \w put|strong="H7760"\w* \w all|strong="H3605"\w* \w of|strong="H1121"\w* \w this|strong="H6440"\w* \w in|strong="H5921"\w* Aaron’s \w hands|strong="H3709"\w*, \w and|strong="H1121"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w*’ \w hands|strong="H3709"\w*, \w and|strong="H1121"\w* \w shall|strong="H3068"\w* \w wave|strong="H8573"\w* \w them|strong="H5921"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w wave|strong="H8573"\w* \w offering|strong="H8573"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 25 \w You|strong="H6440"\w* \w shall|strong="H3068"\w* \w take|strong="H3947"\w* \w them|strong="H5921"\w* \w from|strong="H6440"\w* \w their|strong="H3068"\w* \w hands|strong="H3027"\w*, \w and|strong="H3068"\w* \w burn|strong="H6999"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w for|strong="H5921"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*: \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w an|strong="H3947"\w* \w offering|strong="H5930"\w* \w made|strong="H3068"\w* \w by|strong="H3027"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 26 “\w You|strong="H6440"\w* \w shall|strong="H3068"\w* \w take|strong="H3947"\w* \w the|strong="H6440"\w* \w breast|strong="H2373"\w* \w of|strong="H3068"\w* Aaron’s ram \w of|strong="H3068"\w* \w consecration|strong="H4394"\w*, \w and|strong="H3068"\w* \w wave|strong="H8573"\w* \w it|strong="H6440"\w* \w for|strong="H6440"\w* \w a|strong="H3068"\w* \w wave|strong="H8573"\w* \w offering|strong="H8573"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. \w It|strong="H6440"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w your|strong="H3068"\w* \w portion|strong="H4490"\w*. +\v 27 You \w shall|strong="H1121"\w* \w sanctify|strong="H6942"\w* \w the|strong="H6942"\w* \w breast|strong="H2373"\w* \w of|strong="H1121"\w* \w the|strong="H6942"\w* \w wave|strong="H8573"\w* \w offering|strong="H8641"\w* \w and|strong="H1121"\w* \w the|strong="H6942"\w* \w thigh|strong="H7785"\w* \w of|strong="H1121"\w* \w the|strong="H6942"\w* \w wave|strong="H8573"\w* \w offering|strong="H8641"\w*, which \w is|strong="H1121"\w* \w waved|strong="H5130"\w*, \w and|strong="H1121"\w* which \w is|strong="H1121"\w* \w raised|strong="H7311"\w* \w up|strong="H7311"\w*, \w of|strong="H1121"\w* \w the|strong="H6942"\w* ram \w of|strong="H1121"\w* \w consecration|strong="H4394"\w*, even \w of|strong="H1121"\w* \w that|strong="H1121"\w* which \w is|strong="H1121"\w* \w for|strong="H1121"\w* Aaron, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w that|strong="H1121"\w* which \w is|strong="H1121"\w* \w for|strong="H1121"\w* \w his|strong="H6942"\w* \w sons|strong="H1121"\w*. +\v 28 \w It|strong="H1931"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w for|strong="H3588"\w* Aaron \w and|strong="H1121"\w* \w his|strong="H3068"\w* \w sons|strong="H1121"\w* \w as|strong="H1961"\w* \w their|strong="H3068"\w* \w portion|strong="H2706"\w* \w forever|strong="H5769"\w* \w from|strong="H3478"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* wave \w offering|strong="H8641"\w*. \w It|strong="H1931"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* wave \w offering|strong="H8641"\w* \w from|strong="H3478"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w sacrifices|strong="H2077"\w* \w of|strong="H1121"\w* \w their|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w even|strong="H3588"\w* \w their|strong="H3068"\w* wave \w offering|strong="H8641"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 29 “\w The|strong="H4390"\w* \w holy|strong="H6944"\w* garments \w of|strong="H1121"\w* Aaron \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w for|strong="H3027"\w* \w his|strong="H3027"\w* \w sons|strong="H1121"\w* \w after|strong="H1961"\w* \w him|strong="H3027"\w*, \w to|strong="H1961"\w* \w be|strong="H1961"\w* \w anointed|strong="H1121"\w* \w in|strong="H1121"\w* \w them|strong="H3027"\w*, \w and|strong="H1121"\w* \w to|strong="H1961"\w* \w be|strong="H1961"\w* \w consecrated|strong="H6944"\w* \w in|strong="H1121"\w* \w them|strong="H3027"\w*. +\v 30 \w Seven|strong="H7651"\w* \w days|strong="H3117"\w* \w shall|strong="H3548"\w* \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w who|strong="H3548"\w* \w is|strong="H3117"\w* \w priest|strong="H3548"\w* \w in|strong="H3117"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w* \w put|strong="H3847"\w* \w them|strong="H8478"\w* \w on|strong="H3117"\w*, \w when|strong="H3117"\w* \w he|strong="H3117"\w* \w comes|strong="H3117"\w* into \w the|strong="H3117"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w* \w to|strong="H3117"\w* \w minister|strong="H8334"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w holy|strong="H6944"\w* \w place|strong="H8478"\w*. +\p +\v 31 “\w You|strong="H3947"\w* \w shall|strong="H1320"\w* \w take|strong="H3947"\w* \w the|strong="H3947"\w* ram \w of|strong="H6918"\w* \w consecration|strong="H4394"\w* \w and|strong="H3947"\w* \w boil|strong="H1310"\w* \w its|strong="H1310"\w* \w meat|strong="H1320"\w* \w in|strong="H1320"\w* \w a|strong="H3068"\w* \w holy|strong="H6918"\w* \w place|strong="H4725"\w*. +\v 32 Aaron \w and|strong="H1121"\w* \w his|strong="H1320"\w* \w sons|strong="H1121"\w* \w shall|strong="H1121"\w* \w eat|strong="H3899"\w* \w the|strong="H1121"\w* \w meat|strong="H1320"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* ram, \w and|strong="H1121"\w* \w the|strong="H1121"\w* \w bread|strong="H3899"\w* \w that|strong="H1121"\w* \w is|strong="H1320"\w* \w in|strong="H1320"\w* \w the|strong="H1121"\w* \w basket|strong="H5536"\w*, \w at|strong="H1121"\w* \w the|strong="H1121"\w* \w door|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*. +\v 33 \w They|strong="H1992"\w* \w shall|strong="H3027"\w* eat \w those|strong="H1992"\w* \w things|strong="H6944"\w* \w with|strong="H4390"\w* \w which|strong="H1992"\w* \w atonement|strong="H3722"\w* \w was|strong="H3027"\w* \w made|strong="H3722"\w*, \w to|strong="H3027"\w* \w consecrate|strong="H6942"\w* \w and|strong="H3027"\w* \w sanctify|strong="H6942"\w* \w them|strong="H1992"\w*; \w but|strong="H3588"\w* \w a|strong="H3068"\w* \w stranger|strong="H2114"\w* \w shall|strong="H3027"\w* \w not|strong="H3808"\w* eat \w of|strong="H3027"\w* \w it|strong="H3588"\w*, \w because|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w holy|strong="H6944"\w*. +\v 34 \w If|strong="H3588"\w* \w anything|strong="H3899"\w* \w of|strong="H4480"\w* \w the|strong="H3588"\w* \w meat|strong="H1320"\w* \w of|strong="H4480"\w* \w the|strong="H3588"\w* \w consecration|strong="H4394"\w*, \w or|strong="H3808"\w* \w of|strong="H4480"\w* \w the|strong="H3588"\w* \w bread|strong="H3899"\w*, \w remains|strong="H3498"\w* \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w morning|strong="H1242"\w*, \w then|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3808"\w* \w burn|strong="H8313"\w* \w the|strong="H3588"\w* \w remainder|strong="H3498"\w* \w with|strong="H8313"\w* fire. \w It|strong="H1931"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* eaten, \w because|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w holy|strong="H6944"\w*. +\p +\v 35 “\w You|strong="H6680"\w* \w shall|strong="H1121"\w* \w do|strong="H6213"\w* \w so|strong="H6213"\w* \w to|strong="H6213"\w* Aaron \w and|strong="H1121"\w* \w to|strong="H6213"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w*, \w according|strong="H3602"\w* \w to|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H3117"\w* \w have|strong="H1121"\w* \w commanded|strong="H6680"\w* \w you|strong="H6680"\w*. \w You|strong="H6680"\w* \w shall|strong="H1121"\w* \w consecrate|strong="H4390"\w* \w them|strong="H3027"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. +\v 36 \w Every|strong="H3117"\w* \w day|strong="H3117"\w* \w you|strong="H5921"\w* \w shall|strong="H3117"\w* \w offer|strong="H6213"\w* \w the|strong="H5921"\w* \w bull|strong="H6499"\w* \w of|strong="H3117"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w* \w for|strong="H5921"\w* \w atonement|strong="H3722"\w*. \w You|strong="H5921"\w* \w shall|strong="H3117"\w* \w cleanse|strong="H2398"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w when|strong="H3117"\w* \w you|strong="H5921"\w* \w make|strong="H6213"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w it|strong="H5921"\w*. \w You|strong="H5921"\w* \w shall|strong="H3117"\w* \w anoint|strong="H4886"\w* \w it|strong="H5921"\w*, \w to|strong="H6213"\w* \w sanctify|strong="H6942"\w* \w it|strong="H5921"\w*. +\v 37 \w Seven|strong="H7651"\w* \w days|strong="H3117"\w* \w you|strong="H3605"\w* \w shall|strong="H3117"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*, \w and|strong="H3117"\w* \w sanctify|strong="H6942"\w* \w it|strong="H5921"\w*; \w and|strong="H3117"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w*. \w Whatever|strong="H3605"\w* \w touches|strong="H5060"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w holy|strong="H6944"\w*. +\p +\v 38 “\w Now|strong="H3117"\w* \w this|strong="H2088"\w* \w is|strong="H2088"\w* \w that|strong="H3117"\w* \w which|strong="H4196"\w* \w you|strong="H5921"\w* \w shall|strong="H1121"\w* \w offer|strong="H6213"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*: \w two|strong="H8147"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w* \w day|strong="H3117"\w* \w by|strong="H5921"\w* \w day|strong="H3117"\w* \w continually|strong="H8548"\w*. +\v 39 \w The|strong="H6213"\w* \w one|strong="H3532"\w* \w lamb|strong="H3532"\w* \w you|strong="H6213"\w* \w shall|strong="H6213"\w* \w offer|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w morning|strong="H1242"\w*; \w and|strong="H1242"\w* \w the|strong="H6213"\w* \w other|strong="H8145"\w* \w lamb|strong="H3532"\w* \w you|strong="H6213"\w* \w shall|strong="H6213"\w* \w offer|strong="H6213"\w* \w at|strong="H6213"\w* \w evening|strong="H6153"\w*; +\v 40 \w and|strong="H8081"\w* \w with|strong="H1101"\w* \w the|strong="H1101"\w* \w one|strong="H3532"\w* \w lamb|strong="H3532"\w* \w a|strong="H3068"\w* \w tenth|strong="H6241"\w* \w part|strong="H7253"\w* \w of|strong="H1969"\w* an ephah\f + \fr 29:40 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w of|strong="H1969"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w the|strong="H1101"\w* \w fourth|strong="H7253"\w* \w part|strong="H7253"\w* \w of|strong="H1969"\w* \w a|strong="H3068"\w* \w hin|strong="H1969"\w*\f + \fr 29:40 \ft A hin is about 6.5 liters or 1.7 gallons, so a fourth of a hin is about 1.6 liters.\f* \w of|strong="H1969"\w* \w beaten|strong="H3795"\w* \w oil|strong="H8081"\w*, \w and|strong="H8081"\w* \w the|strong="H1101"\w* \w fourth|strong="H7253"\w* \w part|strong="H7253"\w* \w of|strong="H1969"\w* \w a|strong="H3068"\w* \w hin|strong="H1969"\w* \w of|strong="H1969"\w* \w wine|strong="H3196"\w* \w for|strong="H6241"\w* \w a|strong="H3068"\w* \w drink|strong="H5262"\w* \w offering|strong="H5262"\w*. +\v 41 \w The|strong="H6213"\w* \w other|strong="H8145"\w* \w lamb|strong="H3532"\w* \w you|strong="H6213"\w* \w shall|strong="H3068"\w* \w offer|strong="H6213"\w* \w at|strong="H3068"\w* \w evening|strong="H6153"\w*, \w and|strong="H3068"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w to|strong="H3068"\w* \w it|strong="H6213"\w* according \w to|strong="H3068"\w* \w the|strong="H6213"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* \w morning|strong="H1242"\w* \w and|strong="H3068"\w* according \w to|strong="H3068"\w* \w its|strong="H6213"\w* \w drink|strong="H5262"\w* \w offering|strong="H4503"\w*, \w for|strong="H6213"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w*, \w an|strong="H6213"\w* \w offering|strong="H4503"\w* \w made|strong="H6213"\w* \w by|strong="H3068"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 42 \w It|strong="H8033"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w a|strong="H3068"\w* \w continual|strong="H8548"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w throughout|strong="H1755"\w* \w your|strong="H3068"\w* \w generations|strong="H1755"\w* \w at|strong="H3068"\w* \w the|strong="H6440"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w where|strong="H8033"\w* \w I|strong="H6440"\w* \w will|strong="H3068"\w* \w meet|strong="H3259"\w* \w with|strong="H3068"\w* \w you|strong="H6440"\w*, \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w there|strong="H8033"\w* \w to|strong="H1696"\w* \w you|strong="H6440"\w*. +\v 43 \w There|strong="H8033"\w* \w I|strong="H1121"\w* \w will|strong="H3478"\w* \w meet|strong="H3259"\w* \w with|strong="H3478"\w* \w the|strong="H6942"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w and|strong="H1121"\w* \w the|strong="H6942"\w* \w place|strong="H8033"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w sanctified|strong="H6942"\w* \w by|strong="H3478"\w* \w my|strong="H6942"\w* \w glory|strong="H3519"\w*. +\v 44 \w I|strong="H1121"\w* \w will|strong="H1121"\w* \w sanctify|strong="H6942"\w* \w the|strong="H6942"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w* \w and|strong="H1121"\w* \w the|strong="H6942"\w* \w altar|strong="H4196"\w*. \w I|strong="H1121"\w* \w will|strong="H1121"\w* \w also|strong="H1121"\w* \w sanctify|strong="H6942"\w* Aaron \w and|strong="H1121"\w* \w his|strong="H6942"\w* \w sons|strong="H1121"\w* \w to|strong="H1121"\w* \w minister|strong="H3547"\w* \w to|strong="H1121"\w* \w me|strong="H1121"\w* \w in|strong="H1121"\w* \w the|strong="H6942"\w* \w priest|strong="H3547"\w*’s office. +\v 45 \w I|strong="H1121"\w* \w will|strong="H1961"\w* \w dwell|strong="H7931"\w* \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w their|strong="H8432"\w* God. +\v 46 \w They|strong="H3588"\w* \w shall|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*, \w who|strong="H3068"\w* \w brought|strong="H3318"\w* \w them|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w might|strong="H3068"\w* \w dwell|strong="H7931"\w* \w among|strong="H8432"\w* \w them|strong="H3318"\w*: \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*. +\c 30 +\p +\v 1 “\w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w an|strong="H6213"\w* \w altar|strong="H4196"\w* \w to|strong="H6213"\w* \w burn|strong="H4729"\w* \w incense|strong="H7004"\w* \w on|strong="H6213"\w*. \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w it|strong="H6213"\w* \w of|strong="H4196"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*. +\v 2 \w Its|strong="H1961"\w* \w length|strong="H6967"\w* shall \w be|strong="H1961"\w* \w a|strong="H3068"\w* cubit,\f + \fr 30:2 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w and|strong="H7341"\w* \w its|strong="H1961"\w* \w width|strong="H7341"\w* \w a|strong="H3068"\w* cubit. \w It|strong="H1961"\w* shall \w be|strong="H1961"\w* \w square|strong="H7251"\w*, \w and|strong="H7341"\w* \w its|strong="H1961"\w* \w height|strong="H6967"\w* shall \w be|strong="H1961"\w* \w two|strong="H4480"\w* cubits. \w Its|strong="H1961"\w* \w horns|strong="H7161"\w* shall \w be|strong="H1961"\w* \w of|strong="H4480"\w* \w one|strong="H4480"\w* piece \w with|strong="H7161"\w* \w it|strong="H1961"\w*. +\v 3 \w You|strong="H6213"\w* \w shall|strong="H2889"\w* \w overlay|strong="H6823"\w* \w it|strong="H6213"\w* \w with|strong="H6213"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*, \w its|strong="H6213"\w* \w top|strong="H1406"\w*, \w its|strong="H6213"\w* \w sides|strong="H5439"\w* \w around|strong="H5439"\w* \w it|strong="H6213"\w*, \w and|strong="H2091"\w* \w its|strong="H6213"\w* \w horns|strong="H7161"\w*; \w and|strong="H2091"\w* \w you|strong="H6213"\w* \w shall|strong="H2889"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w gold|strong="H2091"\w* \w molding|strong="H2213"\w* \w around|strong="H5439"\w* \w it|strong="H6213"\w*. +\v 4 \w You|strong="H5921"\w* \w shall|strong="H1004"\w* \w make|strong="H6213"\w* \w two|strong="H8147"\w* \w golden|strong="H2091"\w* \w rings|strong="H2885"\w* \w for|strong="H5921"\w* \w it|strong="H5921"\w* \w under|strong="H8478"\w* \w its|strong="H5921"\w* \w molding|strong="H2213"\w*; \w on|strong="H5921"\w* \w its|strong="H5921"\w* \w two|strong="H8147"\w* \w ribs|strong="H6763"\w*, \w on|strong="H5921"\w* \w its|strong="H5921"\w* \w two|strong="H8147"\w* \w sides|strong="H6654"\w* \w you|strong="H5921"\w* \w shall|strong="H1004"\w* \w make|strong="H6213"\w* \w them|strong="H1992"\w*; \w and|strong="H1004"\w* \w they|strong="H1992"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w* \w for|strong="H5921"\w* \w places|strong="H1004"\w* \w for|strong="H5921"\w* poles \w with|strong="H1004"\w* \w which|strong="H1992"\w* \w to|strong="H1961"\w* \w bear|strong="H5375"\w* \w it|strong="H5921"\w*. +\v 5 \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w the|strong="H6213"\w* poles \w of|strong="H6086"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*, \w and|strong="H6086"\w* \w overlay|strong="H6823"\w* \w them|strong="H6213"\w* \w with|strong="H6213"\w* \w gold|strong="H2091"\w*. +\v 6 \w You|strong="H5414"\w* \w shall|strong="H6440"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w veil|strong="H6532"\w* \w that|strong="H5414"\w* \w is|strong="H8033"\w* \w by|strong="H5921"\w* \w the|strong="H6440"\w* ark \w of|strong="H6440"\w* \w the|strong="H6440"\w* covenant, \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w* \w that|strong="H5414"\w* \w is|strong="H8033"\w* \w over|strong="H5921"\w* \w the|strong="H6440"\w* covenant, \w where|strong="H8033"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w meet|strong="H3259"\w* \w with|strong="H5921"\w* \w you|strong="H5414"\w*. +\v 7 Aaron shall \w burn|strong="H6999"\w* \w incense|strong="H7004"\w* \w of|strong="H5921"\w* \w sweet|strong="H5561"\w* \w spices|strong="H5561"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w* \w every|strong="H1242"\w* \w morning|strong="H1242"\w*. \w When|strong="H5921"\w* \w he|strong="H5921"\w* tends \w the|strong="H5921"\w* \w lamps|strong="H5216"\w*, \w he|strong="H5921"\w* shall \w burn|strong="H6999"\w* \w it|strong="H5921"\w*. +\v 8 \w When|strong="H3068"\w* Aaron lights \w the|strong="H6440"\w* \w lamps|strong="H5216"\w* \w at|strong="H3068"\w* \w evening|strong="H6153"\w*, \w he|strong="H3068"\w* \w shall|strong="H3068"\w* \w burn|strong="H6999"\w* \w it|strong="H6440"\w*, \w a|strong="H3068"\w* \w perpetual|strong="H8548"\w* \w incense|strong="H7004"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w throughout|strong="H1755"\w* \w your|strong="H3068"\w* \w generations|strong="H1755"\w*. +\v 9 \w You|strong="H5921"\w* \w shall|strong="H3808"\w* \w offer|strong="H5927"\w* \w no|strong="H3808"\w* \w strange|strong="H2114"\w* \w incense|strong="H7004"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*, \w nor|strong="H3808"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, \w nor|strong="H3808"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*; \w and|strong="H5930"\w* \w you|strong="H5921"\w* \w shall|strong="H3808"\w* \w pour|strong="H5258"\w* \w no|strong="H3808"\w* \w drink|strong="H5262"\w* \w offering|strong="H4503"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 10 Aaron \w shall|strong="H3068"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w on|strong="H5921"\w* \w its|strong="H5921"\w* \w horns|strong="H7161"\w* once \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w year|strong="H8141"\w*; \w with|strong="H3068"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w* \w of|strong="H3068"\w* \w atonement|strong="H3722"\w* once \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w year|strong="H8141"\w* \w he|strong="H1931"\w* \w shall|strong="H3068"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w it|strong="H1931"\w* \w throughout|strong="H1755"\w* \w your|strong="H3068"\w* \w generations|strong="H1755"\w*. \w It|strong="H1931"\w* \w is|strong="H3068"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 11 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 12 “\w When|strong="H3588"\w* \w you|strong="H3588"\w* \w take|strong="H5375"\w* \w a|strong="H3068"\w* \w census|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, according \w to|strong="H3478"\w* \w those|strong="H1121"\w* \w who|strong="H3068"\w* \w are|strong="H1121"\w* \w counted|strong="H6485"\w* \w among|strong="H7218"\w* \w them|strong="H5414"\w*, \w then|strong="H1961"\w* \w each|strong="H5414"\w* \w man|strong="H1121"\w* \w shall|strong="H3068"\w* \w give|strong="H5414"\w* \w a|strong="H3068"\w* \w ransom|strong="H3724"\w* \w for|strong="H3588"\w* \w his|strong="H5375"\w* \w soul|strong="H5315"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w count|strong="H5375"\w* \w them|strong="H5414"\w*, \w that|strong="H3588"\w* \w there|strong="H1961"\w* \w be|strong="H1961"\w* \w no|strong="H3808"\w* \w plague|strong="H5063"\w* \w among|strong="H7218"\w* \w them|strong="H5414"\w* \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w count|strong="H5375"\w* \w them|strong="H5414"\w*. +\v 13 \w They|strong="H3068"\w* \w shall|strong="H3068"\w* \w give|strong="H5414"\w* \w this|strong="H2088"\w*, \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w passes|strong="H5674"\w* \w over|strong="H5921"\w* \w to|strong="H3068"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H3068"\w* \w counted|strong="H6485"\w*, \w half|strong="H4276"\w* \w a|strong="H3068"\w* \w shekel|strong="H8255"\w* \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w shekel|strong="H8255"\w*\f + \fr 30:13 \ft A shekel is about 10 grams or about 0.35 ounces.\f* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w* (\w the|strong="H3605"\w* \w shekel|strong="H8255"\w* \w is|strong="H3068"\w* \w twenty|strong="H6242"\w* \w gerahs|strong="H1626"\w*\f + \fr 30:13 \ft a gerah is about 0.5 grams or about 7.7 grains\f*); \w half|strong="H4276"\w* \w a|strong="H3068"\w* \w shekel|strong="H8255"\w* \w for|strong="H5921"\w* \w an|strong="H5414"\w* \w offering|strong="H8641"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 14 \w Everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w passes|strong="H5674"\w* \w over|strong="H5921"\w* \w to|strong="H3068"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H1121"\w* \w counted|strong="H6485"\w*, \w from|strong="H5921"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w shall|strong="H3068"\w* \w give|strong="H5414"\w* \w the|strong="H3605"\w* \w offering|strong="H8641"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 15 \w The|strong="H5921"\w* \w rich|strong="H6223"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w give|strong="H5414"\w* \w more|strong="H7235"\w*, \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w poor|strong="H1800"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w give|strong="H5414"\w* \w less|strong="H4591"\w*, \w than|strong="H7235"\w* \w the|strong="H5921"\w* \w half|strong="H4276"\w* \w shekel|strong="H8255"\w*,\f + \fr 30:15 \ft A shekel is about 10 grams or about 0.35 ounces.\f* \w when|strong="H3068"\w* \w they|strong="H3068"\w* \w give|strong="H5414"\w* \w the|strong="H5921"\w* \w offering|strong="H8641"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w to|strong="H3068"\w* \w make|strong="H5414"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w your|strong="H3068"\w* \w souls|strong="H5315"\w*. +\v 16 \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w take|strong="H3947"\w* \w the|strong="H6440"\w* \w atonement|strong="H3722"\w* \w money|strong="H3701"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w shall|strong="H3068"\w* \w appoint|strong="H5414"\w* \w it|strong="H5414"\w* \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*; \w that|strong="H5315"\w* \w it|strong="H5414"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w memorial|strong="H2146"\w* \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w to|strong="H3478"\w* \w make|strong="H5414"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w your|strong="H3068"\w* \w souls|strong="H5315"\w*.” +\p +\v 17 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 18 “\w You|strong="H5414"\w* \w shall|strong="H4325"\w* \w also|strong="H6213"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w basin|strong="H3595"\w* \w of|strong="H4325"\w* \w bronze|strong="H5178"\w*, \w and|strong="H4196"\w* \w its|strong="H5414"\w* \w base|strong="H3653"\w* \w of|strong="H4325"\w* \w bronze|strong="H5178"\w*, \w in|strong="H6213"\w* \w which|strong="H8033"\w* \w to|strong="H6213"\w* \w wash|strong="H7364"\w*. \w You|strong="H5414"\w* \w shall|strong="H4325"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* between \w the|strong="H5414"\w* Tent \w of|strong="H4325"\w* \w Meeting|strong="H4150"\w* \w and|strong="H4196"\w* \w the|strong="H5414"\w* \w altar|strong="H4196"\w*, \w and|strong="H4196"\w* \w you|strong="H5414"\w* \w shall|strong="H4325"\w* \w put|strong="H5414"\w* \w water|strong="H4325"\w* \w in|strong="H6213"\w* \w it|strong="H5414"\w*. +\v 19 Aaron \w and|strong="H1121"\w* \w his|strong="H7364"\w* \w sons|strong="H1121"\w* \w shall|strong="H1121"\w* \w wash|strong="H7364"\w* \w their|strong="H7364"\w* \w hands|strong="H3027"\w* \w and|strong="H1121"\w* \w their|strong="H7364"\w* \w feet|strong="H7272"\w* \w in|strong="H7364"\w* \w it|strong="H1121"\w*. +\v 20 \w When|strong="H3068"\w* \w they|strong="H3068"\w* \w go|strong="H5066"\w* \w into|strong="H4325"\w* \w the|strong="H3068"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, \w they|strong="H3068"\w* \w shall|strong="H3068"\w* \w wash|strong="H7364"\w* \w with|strong="H3068"\w* \w water|strong="H4325"\w*, \w that|strong="H3068"\w* \w they|strong="H3068"\w* don’t \w die|strong="H4191"\w*; \w or|strong="H3808"\w* \w when|strong="H3068"\w* \w they|strong="H3068"\w* \w come|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H4191"\w* \w the|strong="H3068"\w* \w altar|strong="H4196"\w* \w to|strong="H4191"\w* \w minister|strong="H8334"\w*, \w to|strong="H4191"\w* \w burn|strong="H6999"\w* \w an|strong="H3068"\w* \w offering|strong="H6999"\w* \w made|strong="H3068"\w* \w by|strong="H3068"\w* fire \w to|strong="H4191"\w* \w Yahweh|strong="H3068"\w*. +\v 21 \w So|strong="H1961"\w* \w they|strong="H3808"\w* \w shall|strong="H2233"\w* \w wash|strong="H7364"\w* \w their|strong="H7364"\w* \w hands|strong="H3027"\w* \w and|strong="H3027"\w* \w their|strong="H7364"\w* \w feet|strong="H7272"\w*, \w that|strong="H3027"\w* \w they|strong="H3808"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*. \w This|strong="H4191"\w* \w shall|strong="H2233"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w statute|strong="H2706"\w* \w forever|strong="H5769"\w* \w to|strong="H4191"\w* \w them|strong="H3027"\w*, \w even|strong="H3808"\w* \w to|strong="H4191"\w* \w him|strong="H3027"\w* \w and|strong="H3027"\w* \w to|strong="H4191"\w* \w his|strong="H7364"\w* \w descendants|strong="H2233"\w* \w throughout|strong="H1755"\w* \w their|strong="H7364"\w* \w generations|strong="H1755"\w*.” +\p +\v 22 \w Moreover|strong="H1696"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 23 “Also \w take|strong="H3947"\w* \w fine|strong="H3947"\w* \w spices|strong="H1314"\w*: \w of|strong="H7218"\w* liquid \w myrrh|strong="H4753"\w*, \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* shekels;\f + \fr 30:23 \ft A shekel is about 10 grams or about 0.35 ounces, so 500 shekels is about 5 kilograms or about 11 pounds.\f* \w and|strong="H3967"\w* \w of|strong="H7218"\w* \w fragrant|strong="H1314"\w* \w cinnamon|strong="H7076"\w* \w half|strong="H4276"\w* \w as|strong="H3947"\w* \w much|strong="H4276"\w*, even \w two|strong="H3947"\w* \w hundred|strong="H3967"\w* \w and|strong="H3967"\w* \w fifty|strong="H2572"\w*; \w and|strong="H3967"\w* \w of|strong="H7218"\w* \w fragrant|strong="H1314"\w* \w cane|strong="H7070"\w*, \w two|strong="H3947"\w* \w hundred|strong="H3967"\w* \w and|strong="H3967"\w* \w fifty|strong="H2572"\w*; +\v 24 \w and|strong="H3967"\w* \w of|strong="H8255"\w* \w cassia|strong="H6916"\w* \w five|strong="H2568"\w* \w hundred|strong="H3967"\w*, according \w to|strong="H2568"\w* \w the|strong="H3967"\w* \w shekel|strong="H8255"\w* \w of|strong="H8255"\w* \w the|strong="H3967"\w* \w sanctuary|strong="H6944"\w*; \w and|strong="H3967"\w* \w a|strong="H3068"\w* \w hin|strong="H1969"\w*\f + \fr 30:24 \ft A hin is about 6.5 liters or 1.7 gallons.\f* \w of|strong="H8255"\w* \w olive|strong="H2132"\w* \w oil|strong="H8081"\w*. +\v 25 \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w it|strong="H6213"\w* \w into|strong="H6213"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w anointing|strong="H4888"\w* \w oil|strong="H8081"\w*, \w a|strong="H3068"\w* \w perfume|strong="H7545"\w* compounded \w after|strong="H1961"\w* \w the|strong="H6213"\w* \w art|strong="H4639"\w* \w of|strong="H4639"\w* \w the|strong="H6213"\w* \w perfumer|strong="H7543"\w*: \w it|strong="H6213"\w* \w shall|strong="H6213"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w anointing|strong="H4888"\w* \w oil|strong="H8081"\w*. +\v 26 \w You|strong="H4886"\w* \w shall|strong="H4150"\w* use it \w to|strong="H4150"\w* \w anoint|strong="H4886"\w* \w the|strong="H4886"\w* Tent \w of|strong="H4150"\w* \w Meeting|strong="H4150"\w*, \w the|strong="H4886"\w* ark \w of|strong="H4150"\w* \w the|strong="H4886"\w* covenant, +\v 27 \w the|strong="H3605"\w* \w table|strong="H7979"\w* \w and|strong="H4196"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w articles|strong="H3627"\w*, \w the|strong="H3605"\w* lamp stand \w and|strong="H4196"\w* \w its|strong="H3605"\w* accessories, \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w of|strong="H3627"\w* \w incense|strong="H7004"\w*, +\v 28 \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w of|strong="H3627"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w with|strong="H3627"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w utensils|strong="H3627"\w*, \w and|strong="H4196"\w* \w the|strong="H3605"\w* \w basin|strong="H3595"\w* \w with|strong="H3627"\w* \w its|strong="H3605"\w* \w base|strong="H3653"\w*. +\v 29 \w You|strong="H3605"\w* shall \w sanctify|strong="H6942"\w* \w them|strong="H1961"\w*, \w that|strong="H3605"\w* \w they|strong="H6942"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w*. \w Whatever|strong="H3605"\w* \w touches|strong="H5060"\w* \w them|strong="H1961"\w* shall \w be|strong="H1961"\w* \w holy|strong="H6944"\w*. +\v 30 \w You|strong="H4886"\w* \w shall|strong="H1121"\w* \w anoint|strong="H4886"\w* Aaron \w and|strong="H1121"\w* \w his|strong="H6942"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w sanctify|strong="H6942"\w* \w them|strong="H6942"\w*, \w that|strong="H1121"\w* \w they|strong="H6942"\w* \w may|strong="H1121"\w* \w minister|strong="H3547"\w* \w to|strong="H1121"\w* \w me|strong="H4886"\w* \w in|strong="H1121"\w* \w the|strong="H6942"\w* \w priest|strong="H3547"\w*’s office. +\v 31 \w You|strong="H1696"\w* \w shall|strong="H1121"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w saying|strong="H1696"\w*, ‘\w This|strong="H2088"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w anointing|strong="H4888"\w* \w oil|strong="H8081"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w* \w throughout|strong="H1755"\w* \w your|strong="H1961"\w* \w generations|strong="H1755"\w*. +\v 32 \w It|strong="H1931"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w poured|strong="H3251"\w* \w on|strong="H5921"\w* \w man|strong="H1320"\w*’s \w flesh|strong="H1320"\w*, \w and|strong="H6213"\w* \w do|strong="H6213"\w* \w not|strong="H3808"\w* \w make|strong="H6213"\w* \w any|strong="H6213"\w* \w like|strong="H3644"\w* \w it|strong="H1931"\w*, \w according|strong="H5921"\w* \w to|strong="H1961"\w* \w its|strong="H5921"\w* \w composition|strong="H4971"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w holy|strong="H6944"\w*. \w It|strong="H1931"\w* \w shall|strong="H3808"\w* \w be|strong="H1961"\w* \w holy|strong="H6944"\w* \w to|strong="H1961"\w* \w you|strong="H5921"\w*. +\v 33 Whoever compounds \w any|strong="H4480"\w* \w like|strong="H3644"\w* \w it|strong="H5414"\w*, \w or|strong="H4480"\w* whoever \w puts|strong="H5414"\w* \w any|strong="H4480"\w* \w of|strong="H4480"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w stranger|strong="H2114"\w*, \w he|strong="H5414"\w* \w shall|strong="H5971"\w* \w be|strong="H5414"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H4480"\w* \w his|strong="H5414"\w* \w people|strong="H5971"\w*.’” +\p +\v 34 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w Take|strong="H3947"\w* \w to|strong="H3068"\w* yourself \w sweet|strong="H5561"\w* \w spices|strong="H5561"\w*, \w gum|strong="H5198"\w* resin, \w onycha|strong="H7827"\w*, \w and|strong="H4872"\w* \w galbanum|strong="H2464"\w*: \w sweet|strong="H5561"\w* \w spices|strong="H5561"\w* \w with|strong="H3068"\w* \w pure|strong="H2134"\w* \w frankincense|strong="H3828"\w*. \w There|strong="H1961"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w an|strong="H1961"\w* equal weight \w of|strong="H3068"\w* \w each|strong="H3947"\w*. +\v 35 \w You|strong="H6213"\w* \w shall|strong="H2889"\w* \w make|strong="H6213"\w* \w incense|strong="H7004"\w* \w of|strong="H4639"\w* \w it|strong="H6213"\w*, \w a|strong="H3068"\w* \w perfume|strong="H7004"\w* after \w the|strong="H6213"\w* \w art|strong="H4639"\w* \w of|strong="H4639"\w* \w the|strong="H6213"\w* \w perfumer|strong="H7543"\w*, seasoned \w with|strong="H6213"\w* \w salt|strong="H4414"\w*, \w pure|strong="H2889"\w* \w and|strong="H6213"\w* \w holy|strong="H6944"\w*. +\v 36 \w You|strong="H5414"\w* \w shall|strong="H6440"\w* \w beat|strong="H7833"\w* \w some|strong="H4480"\w* \w of|strong="H6440"\w* \w it|strong="H5414"\w* \w very|strong="H1854"\w* \w small|strong="H1854"\w*, \w and|strong="H6440"\w* \w put|strong="H5414"\w* \w some|strong="H4480"\w* \w of|strong="H6440"\w* \w it|strong="H5414"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* covenant \w in|strong="H6440"\w* \w the|strong="H6440"\w* Tent \w of|strong="H6440"\w* \w Meeting|strong="H4150"\w*, \w where|strong="H8033"\w* \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w meet|strong="H3259"\w* \w with|strong="H6440"\w* \w you|strong="H5414"\w*. \w It|strong="H5414"\w* \w shall|strong="H6440"\w* \w be|strong="H1961"\w* \w to|strong="H1961"\w* \w you|strong="H5414"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w*. +\v 37 \w You|strong="H6213"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w make|strong="H6213"\w* \w this|strong="H6213"\w* \w incense|strong="H7004"\w*, according \w to|strong="H3068"\w* \w its|strong="H6213"\w* \w composition|strong="H4971"\w*, \w for|strong="H6213"\w* \w yourselves|strong="H3068"\w*: \w it|strong="H6213"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w to|strong="H3068"\w* \w you|strong="H6213"\w* \w holy|strong="H6944"\w* \w for|strong="H6213"\w* \w Yahweh|strong="H3068"\w*. +\v 38 Whoever \w shall|strong="H5971"\w* \w make|strong="H6213"\w* \w any|strong="H6213"\w* \w like|strong="H3644"\w* \w that|strong="H5971"\w*, \w to|strong="H6213"\w* \w smell|strong="H7306"\w* \w of|strong="H5971"\w* \w it|strong="H6213"\w*, \w he|strong="H6213"\w* \w shall|strong="H5971"\w* \w be|strong="H5971"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w his|strong="H6213"\w* \w people|strong="H5971"\w*.” +\c 31 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Behold|strong="H7200"\w*, \w I|strong="H7200"\w* \w have|strong="H1121"\w* \w called|strong="H7121"\w* \w by|strong="H7121"\w* \w name|strong="H8034"\w* \w Bezalel|strong="H1212"\w* \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Uri, \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hur|strong="H2354"\w*, \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*. +\v 3 \w I|strong="H3605"\w* \w have|strong="H3605"\w* \w filled|strong="H4390"\w* \w him|strong="H3605"\w* \w with|strong="H4390"\w* \w the|strong="H3605"\w* \w Spirit|strong="H7307"\w* \w of|strong="H7307"\w* \w God|strong="H2451"\w*, \w in|strong="H4399"\w* \w wisdom|strong="H2451"\w*, \w and|strong="H2451"\w* \w in|strong="H4399"\w* \w understanding|strong="H8394"\w*, \w and|strong="H2451"\w* \w in|strong="H4399"\w* \w knowledge|strong="H1847"\w*, \w and|strong="H2451"\w* \w in|strong="H4399"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H7307"\w* \w workmanship|strong="H4399"\w*, +\v 4 \w to|strong="H6213"\w* \w devise|strong="H2803"\w* \w skillful|strong="H2803"\w* \w works|strong="H6213"\w*, \w to|strong="H6213"\w* \w work|strong="H6213"\w* \w in|strong="H6213"\w* \w gold|strong="H2091"\w*, \w and|strong="H3701"\w* \w in|strong="H6213"\w* \w silver|strong="H3701"\w*, \w and|strong="H3701"\w* \w in|strong="H6213"\w* \w bronze|strong="H5178"\w*, +\v 5 \w and|strong="H6086"\w* \w in|strong="H6213"\w* \w cutting|strong="H2799"\w* \w of|strong="H4390"\w* stones \w for|strong="H6213"\w* setting, \w and|strong="H6086"\w* \w in|strong="H6213"\w* \w carving|strong="H2799"\w* \w of|strong="H4390"\w* \w wood|strong="H6086"\w*, \w to|strong="H6213"\w* \w work|strong="H4399"\w* \w in|strong="H6213"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H4390"\w* \w workmanship|strong="H4399"\w*. +\v 6 \w Behold|strong="H2009"\w*, \w I|strong="H5414"\w* \w myself|strong="H3820"\w* \w have|strong="H1121"\w* \w appointed|strong="H5414"\w* \w with|strong="H6213"\w* \w him|strong="H5414"\w* Oholiab, \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahisamach, \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w*; \w and|strong="H1121"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w heart|strong="H3820"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H1121"\w* wise-hearted \w I|strong="H5414"\w* \w have|strong="H1121"\w* \w put|strong="H5414"\w* \w wisdom|strong="H2451"\w*, \w that|strong="H3605"\w* \w they|strong="H6213"\w* \w may|strong="H6213"\w* \w make|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H5414"\w* \w have|strong="H1121"\w* \w commanded|strong="H6680"\w* \w you|strong="H5414"\w*: +\v 7 \w the|strong="H3605"\w* Tent \w of|strong="H3627"\w* \w Meeting|strong="H4150"\w*, \w the|strong="H3605"\w* ark \w of|strong="H3627"\w* \w the|strong="H3605"\w* covenant, \w the|strong="H3605"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w furniture|strong="H3627"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* Tent, +\v 8 \w the|strong="H3605"\w* \w table|strong="H7979"\w* \w and|strong="H4196"\w* \w its|strong="H3605"\w* \w vessels|strong="H3627"\w*, \w the|strong="H3605"\w* \w pure|strong="H2889"\w* lamp stand \w with|strong="H3627"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w vessels|strong="H3627"\w*, \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w of|strong="H3627"\w* \w incense|strong="H7004"\w*, +\v 9 \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w of|strong="H3627"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w with|strong="H3627"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w vessels|strong="H3627"\w*, \w the|strong="H3605"\w* \w basin|strong="H3595"\w* \w and|strong="H4196"\w* \w its|strong="H3605"\w* \w base|strong="H3653"\w*, +\v 10 \w the|strong="H3548"\w* \w finely|strong="H8278"\w* worked garments—\w the|strong="H3548"\w* \w holy|strong="H6944"\w* garments \w for|strong="H1121"\w* Aaron \w the|strong="H3548"\w* \w priest|strong="H3548"\w*, \w the|strong="H3548"\w* garments \w of|strong="H1121"\w* \w his|strong="H3548"\w* \w sons|strong="H1121"\w* \w to|strong="H1121"\w* \w minister|strong="H3547"\w* \w in|strong="H1121"\w* \w the|strong="H3548"\w* \w priest|strong="H3548"\w*’s office— +\v 11 \w the|strong="H3605"\w* \w anointing|strong="H4888"\w* \w oil|strong="H8081"\w*, \w and|strong="H8081"\w* \w the|strong="H3605"\w* \w incense|strong="H7004"\w* \w of|strong="H3605"\w* \w sweet|strong="H5561"\w* \w spices|strong="H5561"\w* \w for|strong="H6213"\w* \w the|strong="H3605"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w*: according \w to|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H6680"\w* \w have|strong="H3605"\w* \w commanded|strong="H6680"\w* \w you|strong="H6680"\w* \w they|strong="H6213"\w* \w shall|strong="H6213"\w* \w do|strong="H6213"\w*.” +\p +\v 12 \w Yahweh|strong="H3068"\w* spoke \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, saying, +\v 13 “\w Speak|strong="H1696"\w* \w also|strong="H3068"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w saying|strong="H1696"\w*, ‘\w Most|strong="H3068"\w* \w certainly|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w Sabbaths|strong="H7676"\w*; \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* sign \w between|strong="H3045"\w* \w me|strong="H8104"\w* \w and|strong="H1121"\w* \w you|strong="H3588"\w* \w throughout|strong="H1755"\w* \w your|strong="H3068"\w* \w generations|strong="H1755"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H1931"\w* \w sanctifies|strong="H6942"\w* \w you|strong="H3588"\w*. +\v 14 \w You|strong="H3588"\w* \w shall|strong="H5971"\w* \w keep|strong="H8104"\w* \w the|strong="H3605"\w* \w Sabbath|strong="H7676"\w* \w therefore|strong="H3588"\w*, \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w holy|strong="H6944"\w* \w to|strong="H4191"\w* \w you|strong="H3588"\w*. \w Everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w profanes|strong="H2490"\w* \w it|strong="H1931"\w* \w shall|strong="H5971"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*; \w for|strong="H3588"\w* \w whoever|strong="H3605"\w* \w does|strong="H6213"\w* \w any|strong="H3605"\w* \w work|strong="H4399"\w* \w therein|strong="H7130"\w*, \w that|strong="H3588"\w* \w soul|strong="H5315"\w* \w shall|strong="H5971"\w* \w be|strong="H4191"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w among|strong="H7130"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*. +\v 15 \w Six|strong="H8337"\w* \w days|strong="H3117"\w* \w shall|strong="H3068"\w* \w work|strong="H4399"\w* \w be|strong="H4191"\w* \w done|strong="H6213"\w*, \w but|strong="H3605"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w Sabbath|strong="H7676"\w* \w of|strong="H3068"\w* \w solemn|strong="H7677"\w* \w rest|strong="H7677"\w*, \w holy|strong="H6944"\w* \w to|strong="H4191"\w* \w Yahweh|strong="H3068"\w*. \w Whoever|strong="H3605"\w* \w does|strong="H6213"\w* \w any|strong="H3605"\w* \w work|strong="H4399"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w* \w shall|strong="H3068"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. +\v 16 \w Therefore|strong="H6213"\w* \w the|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w shall|strong="H1121"\w* \w keep|strong="H8104"\w* \w the|strong="H6213"\w* \w Sabbath|strong="H7676"\w*, \w to|strong="H3478"\w* \w observe|strong="H8104"\w* \w the|strong="H6213"\w* \w Sabbath|strong="H7676"\w* \w throughout|strong="H1755"\w* \w their|strong="H6213"\w* \w generations|strong="H1755"\w*, \w for|strong="H6213"\w* \w a|strong="H3068"\w* \w perpetual|strong="H5769"\w* \w covenant|strong="H1285"\w*. +\v 17 \w It|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* sign between \w me|strong="H6213"\w* \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w forever|strong="H5769"\w*; \w for|strong="H3588"\w* \w in|strong="H3478"\w* \w six|strong="H8337"\w* \w days|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H6213"\w* \w heaven|strong="H8064"\w* \w and|strong="H1121"\w* \w earth|strong="H8064"\w*, \w and|strong="H1121"\w* \w on|strong="H3117"\w* \w the|strong="H3588"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w he|strong="H1931"\w* \w rested|strong="H7673"\w*, \w and|strong="H1121"\w* \w was|strong="H3068"\w* \w refreshed|strong="H5314"\w*.’” +\p +\v 18 \w When|strong="H3615"\w* \w he|strong="H5414"\w* \w finished|strong="H3615"\w* \w speaking|strong="H1696"\w* \w with|strong="H1696"\w* \w him|strong="H5414"\w* \w on|strong="H1696"\w* \w Mount|strong="H2022"\w* \w Sinai|strong="H5514"\w*, \w he|strong="H5414"\w* \w gave|strong="H5414"\w* \w Moses|strong="H4872"\w* \w the|strong="H5414"\w* \w two|strong="H8147"\w* \w tablets|strong="H3871"\w* \w of|strong="H2022"\w* \w the|strong="H5414"\w* covenant, stone \w tablets|strong="H3871"\w*, \w written|strong="H3789"\w* \w with|strong="H1696"\w* \w God|strong="H5414"\w*’s finger. +\c 32 +\p +\v 1 \w When|strong="H3588"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w Moses|strong="H4872"\w* delayed \w coming|strong="H5927"\w* \w down|strong="H3381"\w* \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w mountain|strong="H2022"\w*, \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w gathered|strong="H6950"\w* \w themselves|strong="H6213"\w* \w together|strong="H6950"\w* \w to|strong="H3381"\w* Aaron, \w and|strong="H6965"\w* said \w to|strong="H3381"\w* \w him|strong="H6440"\w*, “\w Come|strong="H5927"\w*, \w make|strong="H6213"\w* \w us|strong="H5921"\w* gods, \w which|strong="H5971"\w* \w shall|strong="H5971"\w* \w go|strong="H3212"\w* \w before|strong="H6440"\w* \w us|strong="H5921"\w*; \w for|strong="H3588"\w* \w as|strong="H1961"\w* \w for|strong="H3588"\w* \w this|strong="H2088"\w* \w Moses|strong="H4872"\w*, \w the|strong="H6440"\w* \w man|strong="H2088"\w* \w who|strong="H5971"\w* \w brought|strong="H5927"\w* \w us|strong="H5921"\w* \w up|strong="H5927"\w* \w out|strong="H4480"\w* \w of|strong="H2022"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H2022"\w* \w Egypt|strong="H4714"\w*, \w we|strong="H3068"\w* don’t \w know|strong="H3045"\w* \w what|strong="H4100"\w* \w has|strong="H1961"\w* \w become|strong="H1961"\w* \w of|strong="H2022"\w* \w him|strong="H6440"\w*.” +\p +\v 2 Aaron said \w to|strong="H1121"\w* \w them|strong="H1121"\w*, “\w Take|strong="H1121"\w* \w off|strong="H6561"\w* \w the|strong="H1121"\w* \w golden|strong="H2091"\w* \w rings|strong="H5141"\w*, \w which|strong="H2091"\w* \w are|strong="H1121"\w* \w in|strong="H1121"\w* \w the|strong="H1121"\w* ears \w of|strong="H1121"\w* \w your|strong="H1121"\w* wives, \w of|strong="H1121"\w* \w your|strong="H1121"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w your|strong="H1121"\w* \w daughters|strong="H1323"\w*, \w and|strong="H1121"\w* \w bring|strong="H1323"\w* \w them|strong="H1121"\w* \w to|strong="H1121"\w* \w me|strong="H6561"\w*.” +\p +\v 3 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w took|strong="H5971"\w* \w off|strong="H6561"\w* \w the|strong="H3605"\w* \w golden|strong="H2091"\w* \w rings|strong="H5141"\w* \w which|strong="H5971"\w* \w were|strong="H5971"\w* \w in|strong="H5971"\w* \w their|strong="H3605"\w* ears, \w and|strong="H2091"\w* brought them \w to|strong="H5971"\w* Aaron. +\v 4 \w He|strong="H6213"\w* \w received|strong="H3947"\w* \w what|strong="H6213"\w* \w they|strong="H6213"\w* \w handed|strong="H3027"\w* \w him|strong="H3027"\w*, \w fashioned|strong="H3335"\w* \w it|strong="H6213"\w* \w with|strong="H6213"\w* \w an|strong="H6213"\w* engraving \w tool|strong="H2747"\w*, \w and|strong="H3478"\w* \w made|strong="H6213"\w* \w it|strong="H6213"\w* \w a|strong="H3068"\w* molded \w calf|strong="H5695"\w*. \w Then|strong="H3947"\w* \w they|strong="H6213"\w* said, “\w These|strong="H6213"\w* \w are|strong="H3478"\w* \w your|strong="H3947"\w* gods, \w Israel|strong="H3478"\w*, \w which|strong="H3478"\w* \w brought|strong="H5927"\w* \w you|strong="H3947"\w* \w up|strong="H5927"\w* \w out|strong="H3947"\w* \w of|strong="H3027"\w* \w the|strong="H3947"\w* land \w of|strong="H3027"\w* \w Egypt|strong="H4714"\w*.” +\p +\v 5 \w When|strong="H7200"\w* Aaron \w saw|strong="H7200"\w* \w this|strong="H7200"\w*, \w he|strong="H3068"\w* \w built|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w before|strong="H6440"\w* \w it|strong="H7121"\w*; \w and|strong="H3068"\w* Aaron \w made|strong="H1129"\w* \w a|strong="H3068"\w* \w proclamation|strong="H7121"\w*, \w and|strong="H3068"\w* \w said|strong="H7121"\w*, “\w Tomorrow|strong="H4279"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w a|strong="H3068"\w* \w feast|strong="H2282"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 6 \w They|strong="H5971"\w* \w rose|strong="H6965"\w* \w up|strong="H5927"\w* \w early|strong="H7925"\w* \w on|strong="H3427"\w* \w the|strong="H5927"\w* \w next|strong="H4283"\w* \w day|strong="H4283"\w*, \w and|strong="H6965"\w* \w offered|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w*, \w and|strong="H6965"\w* \w brought|strong="H5927"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*; \w and|strong="H6965"\w* \w the|strong="H5927"\w* \w people|strong="H5971"\w* \w sat|strong="H3427"\w* \w down|strong="H3427"\w* \w to|strong="H5927"\w* eat \w and|strong="H6965"\w* \w to|strong="H5927"\w* \w drink|strong="H8354"\w*, \w and|strong="H6965"\w* \w rose|strong="H6965"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w play|strong="H6711"\w*. +\p +\v 7 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, “\w Go|strong="H3212"\w*, \w get|strong="H3212"\w* \w down|strong="H3381"\w*; \w for|strong="H3588"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w*, \w whom|strong="H5971"\w* \w you|strong="H3588"\w* \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H3212"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w have|strong="H3068"\w* \w corrupted|strong="H7843"\w* \w themselves|strong="H1696"\w*! +\v 8 \w They|strong="H6213"\w* \w have|strong="H3478"\w* \w turned|strong="H5493"\w* \w away|strong="H5493"\w* \w quickly|strong="H4118"\w* \w out|strong="H4480"\w* \w of|strong="H1870"\w* \w the|strong="H6213"\w* \w way|strong="H1870"\w* \w which|strong="H3478"\w* \w I|strong="H6680"\w* \w commanded|strong="H6680"\w* \w them|strong="H6213"\w*. \w They|strong="H6213"\w* \w have|strong="H3478"\w* \w made|strong="H6213"\w* \w themselves|strong="H7812"\w* \w a|strong="H3068"\w* molded \w calf|strong="H5695"\w*, \w and|strong="H3478"\w* \w have|strong="H3478"\w* \w worshiped|strong="H7812"\w* \w it|strong="H6213"\w*, \w and|strong="H3478"\w* \w have|strong="H3478"\w* \w sacrificed|strong="H2076"\w* \w to|strong="H3478"\w* \w it|strong="H6213"\w*, \w and|strong="H3478"\w* said, ‘\w These|strong="H6213"\w* \w are|strong="H3478"\w* \w your|strong="H6213"\w* gods, \w Israel|strong="H3478"\w*, \w which|strong="H3478"\w* \w brought|strong="H5927"\w* \w you|strong="H6680"\w* \w up|strong="H5927"\w* \w out|strong="H4480"\w* \w of|strong="H1870"\w* \w the|strong="H6213"\w* land \w of|strong="H1870"\w* \w Egypt|strong="H4714"\w*.’” +\p +\v 9 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w I|strong="H2009"\w* \w have|strong="H3068"\w* \w seen|strong="H7200"\w* \w these|strong="H2088"\w* \w people|strong="H5971"\w*, \w and|strong="H4872"\w* \w behold|strong="H2009"\w*, \w they|strong="H3068"\w* \w are|strong="H5971"\w* \w a|strong="H3068"\w* stiff-necked \w people|strong="H5971"\w*. +\v 10 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w leave|strong="H3240"\w* \w me|strong="H6213"\w* \w alone|strong="H3240"\w*, \w that|strong="H1471"\w* \w my|strong="H3615"\w* wrath \w may|strong="H1471"\w* \w burn|strong="H2734"\w* \w hot|strong="H2734"\w* \w against|strong="H2734"\w* \w them|strong="H6213"\w*, \w and|strong="H1419"\w* \w that|strong="H1471"\w* \w I|strong="H6258"\w* \w may|strong="H1471"\w* \w consume|strong="H3615"\w* \w them|strong="H6213"\w*; \w and|strong="H1419"\w* \w I|strong="H6258"\w* \w will|strong="H1471"\w* \w make|strong="H6213"\w* \w of|strong="H3615"\w* \w you|strong="H6213"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w nation|strong="H1471"\w*.” +\p +\v 11 \w Moses|strong="H4872"\w* begged \w Yahweh|strong="H3068"\w* \w his|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H4872"\w* \w said|strong="H3318"\w*, “\w Yahweh|strong="H3068"\w*, \w why|strong="H4100"\w* \w does|strong="H4100"\w* \w your|strong="H3068"\w* wrath \w burn|strong="H2734"\w* \w hot|strong="H2734"\w* \w against|strong="H2734"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w*, \w that|strong="H5971"\w* \w you|strong="H6440"\w* \w have|strong="H3068"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w* \w with|strong="H3068"\w* \w great|strong="H1419"\w* \w power|strong="H3027"\w* \w and|strong="H4872"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w mighty|strong="H2389"\w* \w hand|strong="H3027"\w*? +\v 12 \w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w the|strong="H6440"\w* \w Egyptians|strong="H4713"\w* talk, saying, ‘\w He|strong="H5921"\w* \w brought|strong="H3318"\w* \w them|strong="H5921"\w* \w out|strong="H3318"\w* \w for|strong="H5921"\w* \w evil|strong="H7451"\w*, \w to|strong="H7725"\w* \w kill|strong="H2026"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w mountains|strong="H2022"\w*, \w and|strong="H7725"\w* \w to|strong="H7725"\w* \w consume|strong="H3615"\w* \w them|strong="H5921"\w* \w from|strong="H7725"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H2022"\w* \w the|strong="H6440"\w* earth’? \w Turn|strong="H7725"\w* \w from|strong="H7725"\w* \w your|strong="H5921"\w* \w fierce|strong="H2740"\w* \w wrath|strong="H2740"\w*, \w and|strong="H7725"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w from|strong="H7725"\w* \w this|strong="H6440"\w* \w evil|strong="H7451"\w* \w against|strong="H5921"\w* \w your|strong="H5921"\w* \w people|strong="H5971"\w*. +\v 13 \w Remember|strong="H2142"\w* Abraham, \w Isaac|strong="H3327"\w*, \w and|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w your|strong="H3605"\w* \w servants|strong="H5650"\w*, \w to|strong="H1696"\w* whom \w you|strong="H5414"\w* \w swore|strong="H7650"\w* \w by|strong="H7650"\w* \w your|strong="H3605"\w* \w own|strong="H5769"\w* self, \w and|strong="H3478"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H5414"\w*, ‘\w I|strong="H5414"\w* \w will|strong="H3478"\w* \w multiply|strong="H7235"\w* \w your|strong="H3605"\w* \w offspring|strong="H2233"\w*\f + \fr 32:13 \ft or, seed\f* \w as|strong="H5414"\w* \w the|strong="H3605"\w* \w stars|strong="H3556"\w* \w of|strong="H5650"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w land|strong="H8064"\w* \w that|strong="H3605"\w* \w I|strong="H5414"\w* \w have|strong="H5650"\w* \w spoken|strong="H1696"\w* \w of|strong="H5650"\w* \w I|strong="H5414"\w* \w will|strong="H3478"\w* \w give|strong="H5414"\w* \w to|strong="H1696"\w* \w your|strong="H3605"\w* \w offspring|strong="H2233"\w*, \w and|strong="H3478"\w* \w they|strong="H3478"\w* \w shall|strong="H3478"\w* \w inherit|strong="H5157"\w* \w it|strong="H5414"\w* \w forever|strong="H5769"\w*.’” +\p +\v 14 \w So|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w turned|strong="H3068"\w* \w away|strong="H7451"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w evil|strong="H7451"\w* \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w said|strong="H1696"\w* \w he|strong="H6213"\w* \w would|strong="H3068"\w* \w do|strong="H6213"\w* \w to|strong="H1696"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*. +\p +\v 15 \w Moses|strong="H4872"\w* \w turned|strong="H6437"\w*, \w and|strong="H4872"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w mountain|strong="H2022"\w*, \w with|strong="H3381"\w* \w the|strong="H4480"\w* \w two|strong="H8147"\w* \w tablets|strong="H3871"\w* \w of|strong="H3027"\w* \w the|strong="H4480"\w* covenant \w in|strong="H3789"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w*; \w tablets|strong="H3871"\w* \w that|strong="H4480"\w* \w were|strong="H1992"\w* \w written|strong="H3789"\w* \w on|strong="H3027"\w* \w both|strong="H8147"\w* \w their|strong="H1992"\w* \w sides|strong="H5676"\w*. \w They|strong="H1992"\w* \w were|strong="H1992"\w* \w written|strong="H3789"\w* \w on|strong="H3027"\w* \w one|strong="H2088"\w* \w side|strong="H5676"\w* \w and|strong="H4872"\w* \w on|strong="H3027"\w* \w the|strong="H4480"\w* \w other|strong="H2088"\w*. +\v 16 \w The|strong="H5921"\w* \w tablets|strong="H3871"\w* \w were|strong="H1992"\w* \w the|strong="H5921"\w* \w work|strong="H4639"\w* \w of|strong="H5921"\w* God, \w and|strong="H4639"\w* \w the|strong="H5921"\w* \w writing|strong="H4385"\w* \w was|strong="H1931"\w* \w the|strong="H5921"\w* \w writing|strong="H4385"\w* \w of|strong="H5921"\w* God, \w engraved|strong="H2801"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tablets|strong="H3871"\w*. +\p +\v 17 \w When|strong="H8085"\w* \w Joshua|strong="H3091"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w* \w as|strong="H5971"\w* \w they|strong="H5971"\w* \w shouted|strong="H7452"\w*, \w he|strong="H4872"\w* \w said|strong="H8085"\w* \w to|strong="H8085"\w* \w Moses|strong="H4872"\w*, “There \w is|strong="H6963"\w* \w the|strong="H8085"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w war|strong="H4421"\w* \w in|strong="H8085"\w* \w the|strong="H8085"\w* \w camp|strong="H4264"\w*.” +\p +\v 18 He \w said|strong="H6030"\w*, “It isn’t \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w those|strong="H8085"\w* who \w shout|strong="H6963"\w* \w for|strong="H1369"\w* victory. It \w is|strong="H6963"\w* \w not|strong="H8085"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w those|strong="H8085"\w* who \w cry|strong="H6963"\w* \w for|strong="H1369"\w* being \w overcome|strong="H2476"\w*; \w but|strong="H6030"\w* \w the|strong="H8085"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w those|strong="H8085"\w* who \w sing|strong="H6030"\w* \w that|strong="H8085"\w* \w I|strong="H8085"\w* \w hear|strong="H8085"\w*.” +\v 19 \w As|strong="H1961"\w* \w soon|strong="H7126"\w* \w as|strong="H1961"\w* \w he|strong="H3027"\w* \w came|strong="H1961"\w* \w near|strong="H7126"\w* \w to|strong="H1961"\w* \w the|strong="H7200"\w* \w camp|strong="H4264"\w*, \w he|strong="H3027"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w calf|strong="H5695"\w* \w and|strong="H4872"\w* \w the|strong="H7200"\w* \w dancing|strong="H4246"\w*. \w Then|strong="H1961"\w* \w Moses|strong="H4872"\w*’ anger grew \w hot|strong="H2734"\w*, \w and|strong="H4872"\w* \w he|strong="H3027"\w* \w threw|strong="H7993"\w* \w the|strong="H7200"\w* \w tablets|strong="H3871"\w* \w out|strong="H7993"\w* \w of|strong="H3027"\w* \w his|strong="H7200"\w* \w hands|strong="H3027"\w*, \w and|strong="H4872"\w* \w broke|strong="H7665"\w* \w them|strong="H3027"\w* \w beneath|strong="H8478"\w* \w the|strong="H7200"\w* \w mountain|strong="H2022"\w*. +\v 20 \w He|strong="H5704"\w* \w took|strong="H3947"\w* \w the|strong="H6440"\w* \w calf|strong="H5695"\w* \w which|strong="H4325"\w* \w they|strong="H5921"\w* \w had|strong="H3478"\w* \w made|strong="H6213"\w*, \w and|strong="H1121"\w* \w burned|strong="H8313"\w* \w it|strong="H5921"\w* \w with|strong="H8313"\w* fire, \w ground|strong="H2912"\w* \w it|strong="H5921"\w* \w to|strong="H5704"\w* \w powder|strong="H1854"\w*, \w and|strong="H1121"\w* \w scattered|strong="H2219"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w water|strong="H4325"\w*, \w and|strong="H1121"\w* \w made|strong="H6213"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w drink|strong="H8248"\w* \w it|strong="H5921"\w*. +\p +\v 21 \w Moses|strong="H4872"\w* said \w to|strong="H5921"\w* Aaron, “\w What|strong="H4100"\w* \w did|strong="H6213"\w* \w these|strong="H2088"\w* \w people|strong="H5971"\w* \w do|strong="H6213"\w* \w to|strong="H5921"\w* \w you|strong="H3588"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H5971"\w* \w brought|strong="H6213"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w sin|strong="H2401"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*?” +\p +\v 22 Aaron said, “Don’t let \w the|strong="H3588"\w* anger \w of|strong="H5971"\w* \w my|strong="H3045"\w* lord grow \w hot|strong="H2734"\w*. \w You|strong="H3588"\w* \w know|strong="H3045"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w*, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H5971"\w* set \w on|strong="H7451"\w* \w evil|strong="H7451"\w*. +\v 23 \w For|strong="H3588"\w* \w they|strong="H3588"\w* said \w to|strong="H3212"\w* \w me|strong="H6440"\w*, ‘\w Make|strong="H6213"\w* \w us|strong="H6213"\w* gods, \w which|strong="H4100"\w* \w shall|strong="H4714"\w* \w go|strong="H3212"\w* \w before|strong="H6440"\w* \w us|strong="H6213"\w*. \w As|strong="H1961"\w* \w for|strong="H3588"\w* \w this|strong="H2088"\w* \w Moses|strong="H4872"\w*, \w the|strong="H6440"\w* \w man|strong="H2088"\w* \w who|strong="H2088"\w* \w brought|strong="H5927"\w* \w us|strong="H6213"\w* \w up|strong="H5927"\w* \w out|strong="H6213"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H6440"\w* \w Egypt|strong="H4714"\w*, \w we|strong="H3068"\w* don’t \w know|strong="H3045"\w* \w what|strong="H4100"\w* \w has|strong="H1961"\w* \w become|strong="H1961"\w* \w of|strong="H6440"\w* \w him|strong="H6440"\w*.’ +\v 24 \w I|strong="H5414"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w them|strong="H5414"\w*, ‘\w Whoever|strong="H4310"\w* \w has|strong="H4310"\w* \w any|strong="H5414"\w* \w gold|strong="H2091"\w*, \w let|strong="H5414"\w* \w them|strong="H5414"\w* \w take|strong="H3318"\w* \w it|strong="H5414"\w* \w off|strong="H6561"\w*.’ \w So|strong="H5414"\w* \w they|strong="H5414"\w* \w gave|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3318"\w* \w me|strong="H5414"\w*; \w and|strong="H2091"\w* \w I|strong="H5414"\w* \w threw|strong="H7993"\w* \w it|strong="H5414"\w* \w into|strong="H3318"\w* \w the|strong="H5414"\w* fire, \w and|strong="H2091"\w* \w out|strong="H3318"\w* \w came|strong="H3318"\w* \w this|strong="H2088"\w* \w calf|strong="H5695"\w*.” +\p +\v 25 \w When|strong="H3588"\w* \w Moses|strong="H4872"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w* \w were|strong="H5971"\w* \w out|strong="H7200"\w* \w of|strong="H5971"\w* \w control|strong="H6544"\w*, (\w for|strong="H3588"\w* Aaron \w had|strong="H4872"\w* \w let|strong="H6544"\w* \w them|strong="H7200"\w* lose \w control|strong="H6544"\w*, causing \w derision|strong="H8103"\w* \w among|strong="H5971"\w* \w their|strong="H7200"\w* \w enemies|strong="H6965"\w*), +\v 26 \w then|strong="H4872"\w* \w Moses|strong="H4872"\w* \w stood|strong="H5975"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w*, \w and|strong="H1121"\w* said, “\w Whoever|strong="H3605"\w* \w is|strong="H3068"\w* \w on|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s side, come \w to|strong="H3068"\w* \w me|strong="H5975"\w*!” +\p \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w* gathered themselves together \w to|strong="H3068"\w* \w him|strong="H5975"\w*. +\v 27 \w He|strong="H3068"\w* said \w to|strong="H7725"\w* \w them|strong="H5921"\w*, “\w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*, ‘\w Every|strong="H7725"\w* \w man|strong="H5674"\w* \w put|strong="H7760"\w* \w his|strong="H7760"\w* \w sword|strong="H2719"\w* \w on|strong="H5921"\w* \w his|strong="H7760"\w* \w thigh|strong="H3409"\w*, \w and|strong="H3478"\w* \w go|strong="H5674"\w* \w back|strong="H7725"\w* \w and|strong="H3478"\w* \w forth|strong="H5674"\w* \w from|strong="H7725"\w* \w gate|strong="H8179"\w* \w to|strong="H7725"\w* \w gate|strong="H8179"\w* \w throughout|strong="H5921"\w* \w the|strong="H5921"\w* \w camp|strong="H4264"\w*, \w and|strong="H3478"\w* \w every|strong="H7725"\w* \w man|strong="H5674"\w* \w kill|strong="H2026"\w* \w his|strong="H7760"\w* \w brother|strong="H7453"\w*, \w and|strong="H3478"\w* \w every|strong="H7725"\w* \w man|strong="H5674"\w* \w his|strong="H7760"\w* \w companion|strong="H7453"\w*, \w and|strong="H3478"\w* \w every|strong="H7725"\w* \w man|strong="H5674"\w* \w his|strong="H7760"\w* \w neighbor|strong="H7453"\w*.’” +\v 28 \w The|strong="H6213"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w* \w did|strong="H6213"\w* \w according|strong="H4480"\w* \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w word|strong="H1697"\w* \w of|strong="H1121"\w* \w Moses|strong="H4872"\w*. \w About|strong="H1697"\w* \w three|strong="H7969"\w* thousand \w men|strong="H1121"\w* \w fell|strong="H5307"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w people|strong="H5971"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w*. +\v 29 \w Moses|strong="H4872"\w* said, “\w Consecrate|strong="H4390"\w* \w yourselves|strong="H3027"\w* \w today|strong="H3117"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w for|strong="H3588"\w* \w every|strong="H3117"\w* \w man|strong="H1121"\w* \w was|strong="H3068"\w* \w against|strong="H5921"\w* \w his|strong="H5414"\w* \w son|strong="H1121"\w* \w and|strong="H1121"\w* \w against|strong="H5921"\w* \w his|strong="H5414"\w* brother, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w may|strong="H3068"\w* \w give|strong="H5414"\w* \w you|strong="H3588"\w* \w a|strong="H3068"\w* \w blessing|strong="H1293"\w* \w today|strong="H3117"\w*.” +\p +\v 30 \w On|strong="H3068"\w* \w the|strong="H3068"\w* \w next|strong="H4283"\w* \w day|strong="H4283"\w*, \w Moses|strong="H4872"\w* said \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w*, “\w You|strong="H5971"\w* \w have|strong="H1961"\w* \w sinned|strong="H2398"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w sin|strong="H2403"\w*. \w Now|strong="H6258"\w* \w I|strong="H6258"\w* \w will|strong="H3068"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. Perhaps \w I|strong="H6258"\w* \w shall|strong="H3068"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H1157"\w* \w your|strong="H3068"\w* \w sin|strong="H2403"\w*.” +\p +\v 31 \w Moses|strong="H4872"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H4872"\w* said, “Oh, \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w sin|strong="H2398"\w*, \w and|strong="H4872"\w* \w have|strong="H3068"\w* \w made|strong="H6213"\w* \w themselves|strong="H6213"\w* gods \w of|strong="H3068"\w* \w gold|strong="H2091"\w*. +\v 32 \w Yet|strong="H6258"\w* \w now|strong="H6258"\w*, if \w you|strong="H5375"\w* \w will|strong="H2403"\w*, \w forgive|strong="H5375"\w* \w their|strong="H5375"\w* \w sin|strong="H2403"\w*—\w and|strong="H2403"\w* if \w not|strong="H5375"\w*, \w please|strong="H4994"\w* \w blot|strong="H4229"\w* \w me|strong="H4994"\w* \w out|strong="H4229"\w* \w of|strong="H5612"\w* \w your|strong="H5375"\w* \w book|strong="H5612"\w* \w which|strong="H5612"\w* \w you|strong="H5375"\w* \w have|strong="H2403"\w* \w written|strong="H3789"\w*.” +\p +\v 33 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w Whoever|strong="H4310"\w* \w has|strong="H3068"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w me|strong="H2398"\w*, \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w blot|strong="H4229"\w* \w him|strong="H4872"\w* \w out|strong="H4229"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w book|strong="H5612"\w*. +\v 34 \w Now|strong="H6258"\w* \w go|strong="H3212"\w*, \w lead|strong="H5148"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w to|strong="H1696"\w* \w the|strong="H6440"\w* place \w of|strong="H3117"\w* \w which|strong="H5971"\w* \w I|strong="H3117"\w* \w have|strong="H5971"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H6440"\w*. \w Behold|strong="H2009"\w*, \w my|strong="H5921"\w* \w angel|strong="H4397"\w* \w shall|strong="H5971"\w* \w go|strong="H3212"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*. \w Nevertheless|strong="H2009"\w*, \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w day|strong="H3117"\w* \w when|strong="H3117"\w* \w I|strong="H3117"\w* \w punish|strong="H6485"\w*, \w I|strong="H3117"\w* \w will|strong="H5971"\w* \w punish|strong="H6485"\w* \w them|strong="H5921"\w* \w for|strong="H5921"\w* \w their|strong="H6440"\w* \w sin|strong="H2403"\w*.” +\v 35 \w Yahweh|strong="H3068"\w* \w struck|strong="H5062"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w*, \w because|strong="H5921"\w* \w of|strong="H3068"\w* \w what|strong="H6213"\w* \w they|strong="H3068"\w* \w did|strong="H6213"\w* \w with|strong="H3068"\w* \w the|strong="H5921"\w* \w calf|strong="H5695"\w*, \w which|strong="H3068"\w* Aaron \w made|strong="H6213"\w*. +\c 33 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, “\w Depart|strong="H3212"\w*, \w go|strong="H3212"\w* \w up|strong="H5927"\w* \w from|strong="H5927"\w* \w here|strong="H2088"\w*, \w you|strong="H5414"\w* \w and|strong="H4872"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w* \w that|strong="H5971"\w* \w you|strong="H5414"\w* \w have|strong="H3068"\w* \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H5414"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w to|strong="H1696"\w* \w the|strong="H5414"\w* land \w of|strong="H3068"\w* \w which|strong="H3068"\w* \w I|strong="H5414"\w* \w swore|strong="H7650"\w* \w to|strong="H1696"\w* Abraham, \w to|strong="H1696"\w* \w Isaac|strong="H3327"\w*, \w and|strong="H4872"\w* \w to|strong="H1696"\w* \w Jacob|strong="H3290"\w*, \w saying|strong="H1696"\w*, ‘\w I|strong="H5414"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H1696"\w* \w your|strong="H3068"\w* \w offspring|strong="H2233"\w*.’ +\v 2 \w I|strong="H6440"\w* \w will|strong="H4397"\w* \w send|strong="H7971"\w* \w an|strong="H7971"\w* \w angel|strong="H4397"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*; \w and|strong="H7971"\w* \w I|strong="H6440"\w* \w will|strong="H4397"\w* \w drive|strong="H1644"\w* \w out|strong="H7971"\w* \w the|strong="H6440"\w* \w Canaanite|strong="H3669"\w*, \w the|strong="H6440"\w* Amorite, \w and|strong="H7971"\w* \w the|strong="H6440"\w* \w Hittite|strong="H2850"\w*, \w and|strong="H7971"\w* \w the|strong="H6440"\w* \w Perizzite|strong="H6522"\w*, \w the|strong="H6440"\w* \w Hivite|strong="H2340"\w*, \w and|strong="H7971"\w* \w the|strong="H6440"\w* \w Jebusite|strong="H2983"\w*. +\v 3 \w Go|strong="H5927"\w* \w to|strong="H5927"\w* \w a|strong="H3068"\w* \w land|strong="H7130"\w* \w flowing|strong="H2100"\w* \w with|strong="H2100"\w* \w milk|strong="H2461"\w* \w and|strong="H5971"\w* \w honey|strong="H1706"\w*; \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H5971"\w* \w not|strong="H3808"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w among|strong="H7130"\w* \w you|strong="H3588"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H5971"\w* \w a|strong="H3068"\w* stiff-necked \w people|strong="H5971"\w*, \w lest|strong="H6435"\w* \w I|strong="H3588"\w* \w consume|strong="H3615"\w* \w you|strong="H3588"\w* \w on|strong="H1870"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w*.” +\p +\v 4 \w When|strong="H8085"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w heard|strong="H8085"\w* \w this|strong="H2088"\w* \w evil|strong="H7451"\w* news, \w they|strong="H3808"\w* mourned; \w and|strong="H5971"\w* \w no|strong="H3808"\w* \w one|strong="H2088"\w* \w put|strong="H7896"\w* \w on|strong="H5921"\w* \w his|strong="H8085"\w* \w jewelry|strong="H5716"\w*. +\p +\v 5 \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* said \w to|strong="H3381"\w* \w Moses|strong="H4872"\w*, “\w Tell|strong="H3045"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, ‘\w You|strong="H5921"\w* \w are|strong="H5971"\w* \w a|strong="H3068"\w* stiff-necked \w people|strong="H5971"\w*. \w If|strong="H1121"\w* \w I|strong="H5921"\w* \w were|strong="H3478"\w* \w to|strong="H3381"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w among|strong="H7130"\w* \w you|strong="H5921"\w* \w for|strong="H5921"\w* \w one|strong="H1121"\w* \w moment|strong="H7281"\w*, \w I|strong="H5921"\w* \w would|strong="H3068"\w* \w consume|strong="H3615"\w* \w you|strong="H5921"\w*. \w Therefore|strong="H5921"\w* \w now|strong="H6258"\w* \w take|strong="H6213"\w* \w off|strong="H5921"\w* \w your|strong="H3068"\w* \w jewelry|strong="H5716"\w* \w from|strong="H3381"\w* \w you|strong="H5921"\w*, \w that|strong="H3045"\w* \w I|strong="H5921"\w* \w may|strong="H3068"\w* \w know|strong="H3045"\w* \w what|strong="H4100"\w* \w to|strong="H3381"\w* \w do|strong="H6213"\w* \w to|strong="H3381"\w* \w you|strong="H5921"\w*.’” +\p +\v 6 \w The|strong="H5337"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w stripped|strong="H5337"\w* themselves \w of|strong="H1121"\w* \w their|strong="H5337"\w* \w jewelry|strong="H5716"\w* \w from|strong="H3478"\w* \w Mount|strong="H2022"\w* \w Horeb|strong="H2722"\w* onward. +\p +\v 7 \w Now|strong="H1961"\w* \w Moses|strong="H4872"\w* \w used|strong="H1961"\w* \w to|strong="H3318"\w* \w take|strong="H3947"\w* \w the|strong="H3605"\w* tent \w and|strong="H4872"\w* \w pitch|strong="H5186"\w* \w it|strong="H7121"\w* \w outside|strong="H2351"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w*, \w far|strong="H7368"\w* \w away|strong="H3947"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w*, \w and|strong="H4872"\w* \w he|strong="H3068"\w* \w called|strong="H7121"\w* \w it|strong="H7121"\w* “\w The|strong="H3605"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*.” \w Everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w sought|strong="H1245"\w* \w Yahweh|strong="H3068"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3605"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w outside|strong="H2351"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w*. +\v 8 \w When|strong="H1961"\w* \w Moses|strong="H4872"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* Tent, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w*, \w and|strong="H6965"\w* \w stood|strong="H5324"\w*, \w everyone|strong="H3605"\w* \w at|strong="H1961"\w* \w their|strong="H3605"\w* tent \w door|strong="H6607"\w*, \w and|strong="H6965"\w* watched \w Moses|strong="H4872"\w*, \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w had|strong="H1961"\w* \w gone|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H3605"\w* Tent. +\v 9 \w When|strong="H1961"\w* \w Moses|strong="H4872"\w* \w entered|strong="H5975"\w* \w into|strong="H3381"\w* \w the|strong="H4872"\w* Tent, \w the|strong="H4872"\w* \w pillar|strong="H5982"\w* \w of|strong="H5982"\w* \w cloud|strong="H6051"\w* \w descended|strong="H3381"\w*, \w stood|strong="H5975"\w* \w at|strong="H5975"\w* \w the|strong="H4872"\w* \w door|strong="H6607"\w* \w of|strong="H5982"\w* \w the|strong="H4872"\w* Tent, \w and|strong="H4872"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w with|strong="H5973"\w* \w Moses|strong="H4872"\w*. +\v 10 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w saw|strong="H7200"\w* \w the|strong="H3605"\w* \w pillar|strong="H5982"\w* \w of|strong="H5971"\w* \w cloud|strong="H6051"\w* \w stand|strong="H5975"\w* \w at|strong="H5975"\w* \w the|strong="H3605"\w* \w door|strong="H6607"\w* \w of|strong="H5971"\w* \w the|strong="H3605"\w* Tent, \w and|strong="H6965"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H6965"\w* \w worshiped|strong="H7812"\w*, \w everyone|strong="H3605"\w* \w at|strong="H5975"\w* \w their|strong="H3605"\w* tent \w door|strong="H6607"\w*. +\v 11 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w face|strong="H6440"\w* \w to|strong="H1696"\w* \w face|strong="H6440"\w*, \w as|strong="H3068"\w* \w a|strong="H3068"\w* \w man|strong="H5288"\w* \w speaks|strong="H1696"\w* \w to|strong="H1696"\w* \w his|strong="H3068"\w* \w friend|strong="H7453"\w*. \w He|strong="H3068"\w* \w turned|strong="H7725"\w* \w again|strong="H7725"\w* \w into|strong="H7725"\w* \w the|strong="H6440"\w* \w camp|strong="H4264"\w*, \w but|strong="H3808"\w* \w his|strong="H3068"\w* \w servant|strong="H5288"\w* \w Joshua|strong="H3091"\w*, \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w*, \w a|strong="H3068"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w*, didn’t \w depart|strong="H4185"\w* \w from|strong="H7725"\w* \w the|strong="H6440"\w* Tent. +\p +\v 12 \w Moses|strong="H4872"\w* said \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, “\w Behold|strong="H7200"\w*, \w you|strong="H7971"\w* \w tell|strong="H3045"\w* \w me|strong="H7971"\w*, ‘\w Bring|strong="H5927"\w* \w up|strong="H5927"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*;’ \w and|strong="H4872"\w* \w you|strong="H7971"\w* haven’t \w let|strong="H7971"\w* \w me|strong="H7971"\w* \w know|strong="H3045"\w* \w whom|strong="H5971"\w* \w you|strong="H7971"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w with|strong="H5973"\w* \w me|strong="H7971"\w*. \w Yet|strong="H1571"\w* \w you|strong="H7971"\w* \w have|strong="H3068"\w* said, ‘\w I|strong="H3045"\w* \w know|strong="H3045"\w* \w you|strong="H7971"\w* \w by|strong="H3068"\w* \w name|strong="H8034"\w*, \w and|strong="H4872"\w* \w you|strong="H7971"\w* \w have|strong="H3068"\w* \w also|strong="H1571"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H3068"\w* \w my|strong="H3068"\w* \w sight|strong="H5869"\w*.’ +\v 13 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w if|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H5869"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H4672"\w* \w your|strong="H7200"\w* \w sight|strong="H5869"\w*, \w please|strong="H4994"\w* \w show|strong="H7200"\w* \w me|strong="H4994"\w* \w your|strong="H7200"\w* \w way|strong="H1870"\w*, \w now|strong="H6258"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H4994"\w* \w know|strong="H3045"\w* \w you|strong="H3588"\w*, \w so|strong="H4616"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H4994"\w* \w find|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H4672"\w* \w your|strong="H7200"\w* \w sight|strong="H5869"\w*; \w and|strong="H5971"\w* \w consider|strong="H7200"\w* \w that|strong="H3588"\w* \w this|strong="H2088"\w* \w nation|strong="H1471"\w* \w is|strong="H2088"\w* \w your|strong="H7200"\w* \w people|strong="H5971"\w*.” +\p +\v 14 \w He|strong="H6440"\w* said, “\w My|strong="H5117"\w* \w presence|strong="H6440"\w* \w will|strong="H6440"\w* \w go|strong="H3212"\w* \w with|strong="H6440"\w* \w you|strong="H6440"\w*, \w and|strong="H3212"\w* \w I|strong="H6440"\w* \w will|strong="H6440"\w* \w give|strong="H5117"\w* \w you|strong="H6440"\w* \w rest|strong="H5117"\w*.” +\p +\v 15 Moses said \w to|strong="H1980"\w* \w him|strong="H6440"\w*, “If \w your|strong="H6440"\w* \w presence|strong="H6440"\w* doesn’t \w go|strong="H1980"\w* \w with|strong="H1980"\w* \w me|strong="H6440"\w*, don’t \w carry|strong="H5927"\w* \w us|strong="H6440"\w* \w up|strong="H5927"\w* \w from|strong="H6440"\w* \w here|strong="H2088"\w*. +\v 16 \w For|strong="H3588"\w* \w how|strong="H4100"\w* \w would|strong="H5971"\w* \w people|strong="H5971"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H5869"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H5921"\w* \w your|strong="H3605"\w* \w sight|strong="H5869"\w*, \w I|strong="H3588"\w* \w and|strong="H3212"\w* \w your|strong="H3605"\w* \w people|strong="H5971"\w*? Isn’t \w it|strong="H5921"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w go|strong="H3212"\w* \w with|strong="H5973"\w* \w us|strong="H5921"\w*, \w so|strong="H3808"\w* \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w are|strong="H5971"\w* \w separated|strong="H6395"\w*, \w I|strong="H3588"\w* \w and|strong="H3212"\w* \w your|strong="H3605"\w* \w people|strong="H5971"\w*, \w from|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w are|strong="H5971"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* earth?” +\p +\v 17 \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, “\w I|strong="H3588"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w also|strong="H1571"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w spoken|strong="H1696"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H3068"\w* \w my|strong="H3068"\w* \w sight|strong="H5869"\w*, \w and|strong="H4872"\w* \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w you|strong="H3588"\w* \w by|strong="H3068"\w* \w name|strong="H8034"\w*.” +\p +\v 18 Moses said, “\w Please|strong="H4994"\w* \w show|strong="H7200"\w* \w me|strong="H4994"\w* \w your|strong="H7200"\w* \w glory|strong="H3519"\w*.” +\p +\v 19 \w He|strong="H3068"\w* \w said|strong="H7121"\w*, “\w I|strong="H5921"\w* \w will|strong="H3068"\w* \w make|strong="H2603"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w goodness|strong="H2898"\w* \w pass|strong="H5674"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w proclaim|strong="H7121"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*. \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w gracious|strong="H2603"\w* \w to|strong="H3068"\w* \w whom|strong="H6440"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w gracious|strong="H2603"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w show|strong="H7355"\w* \w mercy|strong="H7355"\w* \w on|strong="H5921"\w* \w whom|strong="H6440"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w show|strong="H7355"\w* \w mercy|strong="H7355"\w*.” +\v 20 \w He|strong="H3588"\w* said, “\w You|strong="H3588"\w* \w cannot|strong="H3808"\w* \w see|strong="H7200"\w* \w my|strong="H7200"\w* \w face|strong="H6440"\w*, \w for|strong="H3588"\w* \w man|strong="H6440"\w* \w may|strong="H3201"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w* \w me|strong="H6440"\w* \w and|strong="H6440"\w* \w live|strong="H2425"\w*.” +\v 21 \w Yahweh|strong="H3068"\w* \w also|strong="H3068"\w* said, “\w Behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w place|strong="H4725"\w* \w by|strong="H5921"\w* \w me|strong="H5921"\w*, \w and|strong="H3068"\w* \w you|strong="H5921"\w* \w shall|strong="H3068"\w* \w stand|strong="H5324"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w rock|strong="H6697"\w*. +\v 22 \w It|strong="H7760"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w*, \w while|strong="H5704"\w* \w my|strong="H7760"\w* \w glory|strong="H3519"\w* \w passes|strong="H5674"\w* \w by|strong="H5921"\w*, \w that|strong="H5704"\w* \w I|strong="H5704"\w* \w will|strong="H1961"\w* \w put|strong="H7760"\w* \w you|strong="H5921"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w cleft|strong="H5366"\w* \w of|strong="H3709"\w* \w the|strong="H5921"\w* \w rock|strong="H6697"\w*, \w and|strong="H3709"\w* \w will|strong="H1961"\w* \w cover|strong="H5526"\w* \w you|strong="H5921"\w* \w with|strong="H5921"\w* \w my|strong="H7760"\w* \w hand|strong="H3709"\w* \w until|strong="H5704"\w* \w I|strong="H5704"\w* \w have|strong="H1961"\w* \w passed|strong="H5674"\w* \w by|strong="H5921"\w*; +\v 23 \w then|strong="H7200"\w* \w I|strong="H7200"\w* \w will|strong="H3808"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w* \w my|strong="H7200"\w* \w hand|strong="H3709"\w*, \w and|strong="H6440"\w* \w you|strong="H6440"\w* \w will|strong="H3808"\w* \w see|strong="H7200"\w* \w my|strong="H7200"\w* \w back|strong="H5493"\w*; \w but|strong="H3808"\w* \w my|strong="H7200"\w* \w face|strong="H6440"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w seen|strong="H7200"\w*.” +\c 34 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “Chisel \w two|strong="H8147"\w* stone \w tablets|strong="H3871"\w* \w like|strong="H1961"\w* \w the|strong="H5921"\w* \w first|strong="H7223"\w*. \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w write|strong="H3789"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tablets|strong="H3871"\w* \w the|strong="H5921"\w* \w words|strong="H1697"\w* \w that|strong="H3068"\w* \w were|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w first|strong="H7223"\w* \w tablets|strong="H3871"\w*, \w which|strong="H3068"\w* \w you|strong="H5921"\w* \w broke|strong="H7665"\w*. +\v 2 \w Be|strong="H1961"\w* \w ready|strong="H3559"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w morning|strong="H1242"\w*, \w and|strong="H7218"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w morning|strong="H1242"\w* \w to|strong="H5927"\w* \w Mount|strong="H2022"\w* \w Sinai|strong="H5514"\w*, \w and|strong="H7218"\w* \w present|strong="H5324"\w* \w yourself|strong="H5324"\w* \w there|strong="H8033"\w* \w to|strong="H5927"\w* \w me|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w top|strong="H7218"\w* \w of|strong="H2022"\w* \w the|strong="H5921"\w* \w mountain|strong="H2022"\w*. +\v 3 \w No|strong="H3808"\w* \w one|strong="H3605"\w* \w shall|strong="H3808"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w with|strong="H5973"\w* \w you|strong="H3605"\w* \w or|strong="H3808"\w* \w be|strong="H3808"\w* \w seen|strong="H7200"\w* \w anywhere|strong="H3605"\w* \w on|strong="H7200"\w* \w the|strong="H3605"\w* \w mountain|strong="H2022"\w*. \w Do|strong="H3605"\w* \w not|strong="H3808"\w* \w let|strong="H3808"\w* \w the|strong="H3605"\w* \w flocks|strong="H6629"\w* \w or|strong="H3808"\w* \w herds|strong="H1241"\w* \w graze|strong="H7462"\w* \w in|strong="H6629"\w* \w front|strong="H4136"\w* \w of|strong="H2022"\w* \w that|strong="H7200"\w* \w mountain|strong="H2022"\w*.” +\p +\v 4 \w He|strong="H3068"\w* chiseled \w two|strong="H8147"\w* \w tablets|strong="H3871"\w* \w of|strong="H3068"\w* stone \w like|strong="H2022"\w* \w the|strong="H3947"\w* \w first|strong="H7223"\w*; \w then|strong="H3947"\w* \w Moses|strong="H4872"\w* \w rose|strong="H7925"\w* \w up|strong="H5927"\w* \w early|strong="H7925"\w* \w in|strong="H3068"\w* \w the|strong="H3947"\w* \w morning|strong="H1242"\w*, \w and|strong="H4872"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w Mount|strong="H2022"\w* \w Sinai|strong="H5514"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w commanded|strong="H6680"\w* \w him|strong="H3027"\w*, \w and|strong="H4872"\w* \w took|strong="H3947"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w* \w two|strong="H8147"\w* stone \w tablets|strong="H3871"\w*. +\v 5 \w Yahweh|strong="H3068"\w* \w descended|strong="H3381"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w cloud|strong="H6051"\w*, \w and|strong="H3068"\w* \w stood|strong="H3320"\w* \w with|strong="H5973"\w* \w him|strong="H7121"\w* \w there|strong="H8033"\w*, \w and|strong="H3068"\w* \w proclaimed|strong="H7121"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*. +\v 6 \w Yahweh|strong="H3068"\w* \w passed|strong="H5674"\w* \w by|strong="H5921"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, \w and|strong="H3068"\w* \w proclaimed|strong="H7121"\w*, “\w Yahweh|strong="H3068"\w*! \w Yahweh|strong="H3068"\w*, \w a|strong="H3068"\w* \w merciful|strong="H7349"\w* \w and|strong="H3068"\w* \w gracious|strong="H2587"\w* \w God|strong="H3068"\w*, slow \w to|strong="H3068"\w* \w anger|strong="H6440"\w*, \w and|strong="H3068"\w* \w abundant|strong="H7227"\w* \w in|strong="H5921"\w* loving \w kindness|strong="H2617"\w* \w and|strong="H3068"\w* truth, +\v 7 \w keeping|strong="H5341"\w* loving \w kindness|strong="H2617"\w* \w for|strong="H5921"\w* thousands, \w forgiving|strong="H5375"\w* \w iniquity|strong="H5771"\w* \w and|strong="H1121"\w* disobedience \w and|strong="H1121"\w* \w sin|strong="H2403"\w*; \w and|strong="H1121"\w* \w who|strong="H1121"\w* \w will|strong="H1121"\w* \w by|strong="H5921"\w* \w no|strong="H3808"\w* \w means|strong="H5352"\w* \w clear|strong="H5352"\w* \w the|strong="H5921"\w* \w guilty|strong="H5771"\w*, \w visiting|strong="H6485"\w* \w the|strong="H5921"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* fathers \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w*, \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w*’s \w children|strong="H1121"\w*, \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w third|strong="H8029"\w* \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w fourth|strong="H7256"\w* \w generation|strong="H8029"\w*.” +\p +\v 8 \w Moses|strong="H4872"\w* \w hurried|strong="H4116"\w* \w and|strong="H4872"\w* \w bowed|strong="H7812"\w* \w his|strong="H4872"\w* \w head|strong="H6915"\w* toward \w the|strong="H4872"\w* earth, \w and|strong="H4872"\w* \w worshiped|strong="H7812"\w*. +\v 9 \w He|strong="H1931"\w* said, “\w If|strong="H3588"\w* \w now|strong="H4994"\w* \w I|strong="H3588"\w* \w have|strong="H5869"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H3212"\w* \w your|strong="H3588"\w* \w sight|strong="H5869"\w*, Lord, \w please|strong="H4994"\w* \w let|strong="H4994"\w* \w the|strong="H3588"\w* Lord \w go|strong="H3212"\w* \w among|strong="H7130"\w* \w us|strong="H4994"\w*, \w even|strong="H3588"\w* \w though|strong="H3588"\w* \w this|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* stiff-necked \w people|strong="H5971"\w*; \w pardon|strong="H5545"\w* \w our|strong="H3588"\w* \w iniquity|strong="H5771"\w* \w and|strong="H3212"\w* \w our|strong="H3588"\w* \w sin|strong="H2403"\w*, \w and|strong="H3212"\w* \w take|strong="H5157"\w* \w us|strong="H4994"\w* \w for|strong="H3588"\w* \w your|strong="H3588"\w* \w inheritance|strong="H5157"\w*.” +\p +\v 10 \w He|strong="H1931"\w* said, “\w Behold|strong="H2009"\w*, \w I|strong="H3588"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w*: \w before|strong="H5048"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w marvels|strong="H6381"\w*, \w such|strong="H1931"\w* \w as|strong="H6213"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w been|strong="H1254"\w* \w worked|strong="H6213"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth, \w nor|strong="H3808"\w* \w in|strong="H3068"\w* \w any|strong="H3605"\w* \w nation|strong="H1471"\w*; \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w among|strong="H7130"\w* \w whom|strong="H5971"\w* \w you|strong="H3588"\w* \w are|strong="H5971"\w* \w shall|strong="H3068"\w* \w see|strong="H7200"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*; \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w an|strong="H6213"\w* \w awesome|strong="H3372"\w* \w thing|strong="H3588"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w do|strong="H6213"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*. +\v 11 \w Observe|strong="H8104"\w* \w that|strong="H3117"\w* \w which|strong="H3117"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H6440"\w* \w today|strong="H3117"\w*. \w Behold|strong="H2005"\w*, \w I|strong="H3117"\w* \w will|strong="H3117"\w* \w drive|strong="H1644"\w* \w out|strong="H1644"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w the|strong="H6440"\w* Amorite, \w the|strong="H6440"\w* \w Canaanite|strong="H3669"\w*, \w the|strong="H6440"\w* \w Hittite|strong="H2850"\w*, \w the|strong="H6440"\w* \w Perizzite|strong="H6522"\w*, \w the|strong="H6440"\w* \w Hivite|strong="H2340"\w*, \w and|strong="H3117"\w* \w the|strong="H6440"\w* \w Jebusite|strong="H2983"\w*. +\v 12 \w Be|strong="H1961"\w* \w careful|strong="H8104"\w*, \w lest|strong="H6435"\w* \w you|strong="H5921"\w* \w make|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w the|strong="H5921"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H5921"\w* \w land|strong="H7130"\w* \w where|strong="H5921"\w* \w you|strong="H5921"\w* \w are|strong="H1961"\w* going, \w lest|strong="H6435"\w* \w it|strong="H5921"\w* \w be|strong="H1961"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w snare|strong="H4170"\w* \w among|strong="H7130"\w* \w you|strong="H5921"\w*; +\v 13 \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3772"\w* \w break|strong="H7665"\w* \w down|strong="H5422"\w* \w their|strong="H3588"\w* \w altars|strong="H4196"\w*, \w and|strong="H4196"\w* dash \w in|strong="H4196"\w* \w pieces|strong="H7665"\w* \w their|strong="H3588"\w* \w pillars|strong="H4676"\w*, \w and|strong="H4196"\w* \w you|strong="H3588"\w* \w shall|strong="H3772"\w* \w cut|strong="H3772"\w* \w down|strong="H5422"\w* \w their|strong="H3588"\w* Asherah poles; +\v 14 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w worship|strong="H7812"\w* \w no|strong="H3808"\w* other \w god|strong="H3068"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, \w whose|strong="H8034"\w* \w name|strong="H8034"\w* \w is|strong="H3068"\w* \w Jealous|strong="H7067"\w*, \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w jealous|strong="H7067"\w* \w God|strong="H3068"\w*. +\p +\v 15 “Don’t \w make|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w the|strong="H7121"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H7121"\w* land, \w lest|strong="H6435"\w* \w they|strong="H1285"\w* \w play|strong="H2181"\w* \w the|strong="H7121"\w* \w prostitute|strong="H2181"\w* \w after|strong="H7121"\w* \w their|strong="H3772"\w* gods, \w and|strong="H1285"\w* \w sacrifice|strong="H2077"\w* \w to|strong="H7121"\w* \w their|strong="H3772"\w* gods, \w and|strong="H1285"\w* one \w call|strong="H7121"\w* \w you|strong="H6435"\w* \w and|strong="H1285"\w* \w you|strong="H6435"\w* eat \w of|strong="H3427"\w* \w his|strong="H7121"\w* \w sacrifice|strong="H2077"\w*; +\v 16 \w and|strong="H1121"\w* \w you|strong="H3947"\w* \w take|strong="H3947"\w* \w of|strong="H1121"\w* \w their|strong="H3947"\w* \w daughters|strong="H1323"\w* \w to|strong="H1121"\w* \w your|strong="H3947"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w their|strong="H3947"\w* \w daughters|strong="H1323"\w* \w play|strong="H2181"\w* \w the|strong="H3947"\w* \w prostitute|strong="H2181"\w* after \w their|strong="H3947"\w* gods, \w and|strong="H1121"\w* \w make|strong="H3947"\w* \w your|strong="H3947"\w* \w sons|strong="H1121"\w* \w play|strong="H2181"\w* \w the|strong="H3947"\w* \w prostitute|strong="H2181"\w* after \w their|strong="H3947"\w* gods. +\p +\v 17 “\w You|strong="H6213"\w* \w shall|strong="H3808"\w* \w make|strong="H6213"\w* \w no|strong="H3808"\w* cast idols \w for|strong="H6213"\w* yourselves. +\p +\v 18 “\w You|strong="H3588"\w* \w shall|strong="H3117"\w* \w keep|strong="H8104"\w* \w the|strong="H3588"\w* \w feast|strong="H2282"\w* \w of|strong="H3117"\w* \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w*. \w Seven|strong="H7651"\w* \w days|strong="H3117"\w* \w you|strong="H3588"\w* \w shall|strong="H3117"\w* eat \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w*, \w as|strong="H3117"\w* \w I|strong="H3588"\w* \w commanded|strong="H6680"\w* \w you|strong="H3588"\w*, \w at|strong="H2320"\w* \w the|strong="H3588"\w* \w time|strong="H3117"\w* \w appointed|strong="H4150"\w* \w in|strong="H3117"\w* \w the|strong="H3588"\w* \w month|strong="H2320"\w* Abib; \w for|strong="H3588"\w* \w in|strong="H3117"\w* \w the|strong="H3588"\w* \w month|strong="H2320"\w* Abib \w you|strong="H3588"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w*. +\p +\v 19 “\w All|strong="H3605"\w* \w that|strong="H3605"\w* opens \w the|strong="H3605"\w* \w womb|strong="H7358"\w* \w is|strong="H3605"\w* \w mine|strong="H2142"\w*; \w and|strong="H4735"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w livestock|strong="H4735"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* male, \w the|strong="H3605"\w* \w firstborn|strong="H6363"\w* \w of|strong="H3605"\w* \w cow|strong="H7794"\w* \w and|strong="H4735"\w* \w sheep|strong="H7716"\w*. +\v 20 \w You|strong="H6440"\w* \w shall|strong="H1121"\w* \w redeem|strong="H6299"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w donkey|strong="H2543"\w* \w with|strong="H6440"\w* \w a|strong="H3068"\w* \w lamb|strong="H7716"\w*. \w If|strong="H7200"\w* \w you|strong="H6440"\w* \w will|strong="H1121"\w* \w not|strong="H3808"\w* \w redeem|strong="H6299"\w* \w it|strong="H7200"\w*, \w then|strong="H7200"\w* \w you|strong="H6440"\w* \w shall|strong="H1121"\w* \w break|strong="H6202"\w* \w its|strong="H3605"\w* \w neck|strong="H6202"\w*. \w You|strong="H6440"\w* \w shall|strong="H1121"\w* \w redeem|strong="H6299"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1121"\w* \w your|strong="H3605"\w* \w sons|strong="H1121"\w*. \w No|strong="H3808"\w* \w one|strong="H3605"\w* \w shall|strong="H1121"\w* \w appear|strong="H7200"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w empty|strong="H7387"\w*. +\p +\v 21 “\w Six|strong="H8337"\w* \w days|strong="H3117"\w* \w you|strong="H3117"\w* \w shall|strong="H3117"\w* \w work|strong="H5647"\w*, \w but|strong="H3117"\w* \w on|strong="H3117"\w* \w the|strong="H5647"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w you|strong="H3117"\w* \w shall|strong="H3117"\w* \w rest|strong="H7673"\w*: \w in|strong="H3117"\w* \w plowing|strong="H2758"\w* \w time|strong="H3117"\w* \w and|strong="H3117"\w* \w in|strong="H3117"\w* \w harvest|strong="H7105"\w* \w you|strong="H3117"\w* \w shall|strong="H3117"\w* \w rest|strong="H7673"\w*. +\p +\v 22 “\w You|strong="H6213"\w* \w shall|strong="H8141"\w* \w observe|strong="H6213"\w* \w the|strong="H6213"\w* \w feast|strong="H2282"\w* \w of|strong="H8141"\w* \w weeks|strong="H7620"\w* \w with|strong="H6213"\w* \w the|strong="H6213"\w* \w first|strong="H1061"\w* \w fruits|strong="H1061"\w* \w of|strong="H8141"\w* \w wheat|strong="H2406"\w* \w harvest|strong="H7105"\w*, \w and|strong="H6213"\w* \w the|strong="H6213"\w* \w feast|strong="H2282"\w* \w of|strong="H8141"\w* \w harvest|strong="H7105"\w* \w at|strong="H6213"\w* \w the|strong="H6213"\w* \w year|strong="H8141"\w*’s \w end|strong="H8622"\w*. +\v 23 \w Three|strong="H7969"\w* \w times|strong="H6471"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w year|strong="H8141"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w males|strong="H2138"\w* \w shall|strong="H3068"\w* \w appear|strong="H7200"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\v 24 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w drive|strong="H3423"\w* \w out|strong="H3423"\w* \w nations|strong="H1471"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w* \w and|strong="H3068"\w* \w enlarge|strong="H7337"\w* \w your|strong="H3068"\w* \w borders|strong="H1366"\w*; \w neither|strong="H3808"\w* \w shall|strong="H3068"\w* \w any|strong="H6440"\w* \w man|strong="H6440"\w* \w desire|strong="H2530"\w* \w your|strong="H3068"\w* \w land|strong="H6440"\w* \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w appear|strong="H7200"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w three|strong="H7969"\w* \w times|strong="H6471"\w* \w in|strong="H8141"\w* \w the|strong="H6440"\w* \w year|strong="H8141"\w*. +\p +\v 25 “\w You|strong="H5921"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w offer|strong="H7819"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w of|strong="H2077"\w* \w my|strong="H5921"\w* \w sacrifice|strong="H2077"\w* \w with|strong="H5921"\w* \w leavened|strong="H2557"\w* \w bread|strong="H2557"\w*. \w The|strong="H5921"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H2077"\w* \w the|strong="H5921"\w* \w feast|strong="H2282"\w* \w of|strong="H2077"\w* \w the|strong="H5921"\w* \w Passover|strong="H6453"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w left|strong="H3885"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w morning|strong="H1242"\w*. +\p +\v 26 “\w You|strong="H3808"\w* \w shall|strong="H3068"\w* bring \w the|strong="H3068"\w* \w first|strong="H7225"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w first|strong="H7225"\w* \w fruits|strong="H1061"\w* \w of|strong="H1004"\w* \w your|strong="H3068"\w* ground \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\p “\w You|strong="H3808"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w boil|strong="H1310"\w* \w a|strong="H3068"\w* \w young|strong="H1423"\w* \w goat|strong="H1423"\w* \w in|strong="H3068"\w* \w its|strong="H1310"\w* mother’s \w milk|strong="H2461"\w*.” +\p +\v 27 \w Yahweh|strong="H3068"\w* \w said|strong="H1697"\w* \w to|strong="H3478"\w* \w Moses|strong="H4872"\w*, “\w Write|strong="H3789"\w* \w these|strong="H3789"\w* \w words|strong="H1697"\w*; \w for|strong="H3588"\w* \w in|strong="H5921"\w* \w accordance|strong="H5921"\w* \w with|strong="H3068"\w* \w these|strong="H3789"\w* \w words|strong="H1697"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w* \w and|strong="H4872"\w* \w with|strong="H3068"\w* \w Israel|strong="H3478"\w*.” +\p +\v 28 \w He|strong="H3117"\w* \w was|strong="H3068"\w* \w there|strong="H8033"\w* \w with|strong="H5973"\w* \w Yahweh|strong="H3068"\w* forty \w days|strong="H3117"\w* \w and|strong="H3068"\w* forty \w nights|strong="H3915"\w*; \w he|strong="H3117"\w* \w neither|strong="H3808"\w* ate \w bread|strong="H3899"\w*, \w nor|strong="H3808"\w* \w drank|strong="H8354"\w* \w water|strong="H4325"\w*. \w He|strong="H3117"\w* \w wrote|strong="H3789"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tablets|strong="H3871"\w* \w the|strong="H5921"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w covenant|strong="H1285"\w*, \w the|strong="H5921"\w* \w ten|strong="H6235"\w* \w commandments|strong="H1697"\w*. +\p +\v 29 \w When|strong="H3588"\w* \w Moses|strong="H4872"\w* \w came|strong="H1961"\w* \w down|strong="H3381"\w* \w from|strong="H4480"\w* \w Mount|strong="H2022"\w* \w Sinai|strong="H5514"\w* \w with|strong="H1696"\w* \w the|strong="H6440"\w* \w two|strong="H8147"\w* \w tablets|strong="H3871"\w* \w of|strong="H3027"\w* \w the|strong="H6440"\w* covenant \w in|strong="H1696"\w* \w Moses|strong="H4872"\w*’ \w hand|strong="H3027"\w*, \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w came|strong="H1961"\w* \w down|strong="H3381"\w* \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w mountain|strong="H2022"\w*, \w Moses|strong="H4872"\w* didn’t \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w the|strong="H6440"\w* \w skin|strong="H5785"\w* \w of|strong="H3027"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w* \w shone|strong="H7160"\w* \w by|strong="H3027"\w* \w reason|strong="H6440"\w* \w of|strong="H3027"\w* \w his|strong="H6440"\w* \w speaking|strong="H1696"\w* \w with|strong="H1696"\w* \w him|strong="H6440"\w*. +\v 30 \w When|strong="H7200"\w* Aaron \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w saw|strong="H7200"\w* \w Moses|strong="H4872"\w*, \w behold|strong="H2009"\w*, \w the|strong="H3605"\w* \w skin|strong="H5785"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w face|strong="H6440"\w* \w shone|strong="H7160"\w*; \w and|strong="H1121"\w* \w they|strong="H3478"\w* \w were|strong="H3478"\w* \w afraid|strong="H3372"\w* \w to|strong="H3478"\w* \w come|strong="H5066"\w* \w near|strong="H5066"\w* \w him|strong="H6440"\w*. +\v 31 \w Moses|strong="H4872"\w* \w called|strong="H7121"\w* \w to|strong="H1696"\w* \w them|strong="H7725"\w*, \w and|strong="H4872"\w* Aaron \w and|strong="H4872"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w rulers|strong="H5387"\w* \w of|strong="H5712"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w returned|strong="H7725"\w* \w to|strong="H1696"\w* \w him|strong="H7121"\w*; \w and|strong="H4872"\w* \w Moses|strong="H4872"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H7725"\w*. +\v 32 Afterward \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w*, \w and|strong="H1121"\w* \w he|strong="H3651"\w* \w gave|strong="H6680"\w* \w them|strong="H6680"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* commandments \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w spoken|strong="H1696"\w* \w with|strong="H3068"\w* \w him|strong="H6680"\w* \w on|strong="H3068"\w* \w Mount|strong="H2022"\w* \w Sinai|strong="H5514"\w*. +\v 33 \w When|strong="H3615"\w* \w Moses|strong="H4872"\w* \w was|strong="H4872"\w* \w done|strong="H3615"\w* \w speaking|strong="H1696"\w* \w with|strong="H1696"\w* \w them|strong="H5414"\w*, \w he|strong="H5414"\w* \w put|strong="H5414"\w* \w a|strong="H3068"\w* \w veil|strong="H4533"\w* \w on|strong="H5921"\w* \w his|strong="H5414"\w* \w face|strong="H6440"\w*. +\v 34 \w But|strong="H1696"\w* \w when|strong="H3318"\w* \w Moses|strong="H4872"\w* \w went|strong="H3318"\w* \w in|strong="H3478"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w with|strong="H3068"\w* \w him|strong="H6440"\w*, \w he|strong="H5704"\w* \w took|strong="H5493"\w* \w the|strong="H6440"\w* \w veil|strong="H4533"\w* \w off|strong="H5493"\w*, \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w*; \w and|strong="H1121"\w* \w he|strong="H5704"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H1121"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H5704"\w* \w was|strong="H3068"\w* \w commanded|strong="H6680"\w*. +\v 35 \w The|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w saw|strong="H7200"\w* \w Moses|strong="H4872"\w*’ \w face|strong="H6440"\w*, \w that|strong="H3588"\w* \w the|strong="H6440"\w* \w skin|strong="H5785"\w* \w of|strong="H1121"\w* \w Moses|strong="H4872"\w*’ \w face|strong="H6440"\w* \w shone|strong="H7160"\w*; \w so|strong="H7725"\w* \w Moses|strong="H4872"\w* \w put|strong="H7725"\w* \w the|strong="H6440"\w* \w veil|strong="H4533"\w* \w on|strong="H5921"\w* \w his|strong="H7725"\w* \w face|strong="H6440"\w* \w again|strong="H7725"\w*, \w until|strong="H5704"\w* \w he|strong="H3588"\w* \w went|strong="H3478"\w* \w in|strong="H5921"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w with|strong="H1696"\w* \w him|strong="H6440"\w*. +\c 35 +\p +\v 1 \w Moses|strong="H4872"\w* \w assembled|strong="H6950"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w said|strong="H1697"\w* \w to|strong="H3478"\w* \w them|strong="H6213"\w*, “\w These|strong="H6213"\w* \w are|strong="H1121"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w*, \w that|strong="H3605"\w* \w you|strong="H6680"\w* \w should|strong="H3068"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w*. +\v 2 ‘\w Six|strong="H8337"\w* \w days|strong="H3117"\w* \w shall|strong="H3068"\w* \w work|strong="H4399"\w* \w be|strong="H1961"\w* \w done|strong="H6213"\w*, \w but|strong="H1961"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w there|strong="H1961"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w day|strong="H3117"\w* \w for|strong="H6213"\w* \w you|strong="H3605"\w*, \w a|strong="H3068"\w* \w Sabbath|strong="H7676"\w* \w of|strong="H3068"\w* \w solemn|strong="H7677"\w* \w rest|strong="H7677"\w* \w to|strong="H4191"\w* \w Yahweh|strong="H3068"\w*: \w whoever|strong="H3605"\w* \w does|strong="H6213"\w* \w any|strong="H3605"\w* \w work|strong="H4399"\w* \w in|strong="H3068"\w* \w it|strong="H6213"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. +\v 3 \w You|strong="H3605"\w* \w shall|strong="H3117"\w* \w kindle|strong="H1197"\w* \w no|strong="H3808"\w* fire \w throughout|strong="H3605"\w* \w your|strong="H3605"\w* \w habitations|strong="H4186"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w*.’” +\p +\v 4 \w Moses|strong="H4872"\w* \w spoke|strong="H1697"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w saying|strong="H1697"\w*, “\w This|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H3605"\w* \w thing|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w*, \w saying|strong="H1697"\w*, +\v 5 ‘\w Take|strong="H3947"\w* \w from|strong="H3947"\w* among \w you|strong="H3605"\w* \w an|strong="H3947"\w* \w offering|strong="H8641"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w Whoever|strong="H3605"\w* \w is|strong="H3068"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w willing|strong="H5081"\w* \w heart|strong="H3820"\w*, let \w him|strong="H3947"\w* \w bring|strong="H3947"\w* \w it|strong="H3947"\w* \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w offering|strong="H8641"\w*: \w gold|strong="H2091"\w*, \w silver|strong="H3701"\w*, \w bronze|strong="H5178"\w*, +\v 6 \w blue|strong="H8504"\w*, \w purple|strong="H8504"\w*, \w scarlet|strong="H8144"\w*, \w fine|strong="H8336"\w* \w linen|strong="H8336"\w*, \w goats|strong="H5795"\w*’ hair, +\v 7 rams’ \w skins|strong="H5785"\w* \w dyed|strong="H5785"\w* red, sea cow \w hides|strong="H5785"\w*, \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*, +\v 8 \w oil|strong="H8081"\w* \w for|strong="H8081"\w* the \w light|strong="H3974"\w*, \w spices|strong="H1314"\w* \w for|strong="H8081"\w* the \w anointing|strong="H4888"\w* \w oil|strong="H8081"\w* \w and|strong="H8081"\w* \w for|strong="H8081"\w* the \w sweet|strong="H5561"\w* \w incense|strong="H7004"\w*, +\v 9 \w onyx|strong="H7718"\w* stones, \w and|strong="H4394"\w* stones to be \w set|strong="H4394"\w* \w for|strong="H4394"\w* \w the|strong="H2833"\w* ephod \w and|strong="H4394"\w* \w for|strong="H4394"\w* \w the|strong="H2833"\w* \w breastplate|strong="H2833"\w*. +\p +\v 10 “‘Let \w every|strong="H3605"\w* wise-hearted \w man|strong="H2450"\w* among \w you|strong="H6680"\w* come, \w and|strong="H3068"\w* \w make|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w*: +\v 11 \w the|strong="H4908"\w* \w tabernacle|strong="H4908"\w*, its outer \w covering|strong="H4372"\w*, its roof, its \w clasps|strong="H7165"\w*, its \w boards|strong="H7175"\w*, its \w bars|strong="H1280"\w*, its \w pillars|strong="H5982"\w*, \w and|strong="H4908"\w* its sockets; +\v 12 \w the|strong="H6532"\w* ark, \w and|strong="H4539"\w* its poles, \w the|strong="H6532"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w*, \w the|strong="H6532"\w* \w veil|strong="H6532"\w* \w of|strong="H6532"\w* \w the|strong="H6532"\w* \w screen|strong="H4539"\w*; +\v 13 \w the|strong="H3605"\w* \w table|strong="H7979"\w* \w with|strong="H6440"\w* \w its|strong="H3605"\w* poles \w and|strong="H3899"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w vessels|strong="H3627"\w*, \w and|strong="H3899"\w* \w the|strong="H3605"\w* show \w bread|strong="H3899"\w*; +\v 14 the \w lamp|strong="H5216"\w* stand also \w for|strong="H3627"\w* the \w light|strong="H3974"\w*, \w with|strong="H3627"\w* \w its|strong="H3627"\w* \w vessels|strong="H3627"\w*, \w its|strong="H3627"\w* \w lamps|strong="H5216"\w*, \w and|strong="H8081"\w* the \w oil|strong="H8081"\w* \w for|strong="H3627"\w* the \w light|strong="H3974"\w*; +\v 15 \w and|strong="H4196"\w* \w the|strong="H4908"\w* \w altar|strong="H4196"\w* \w of|strong="H4196"\w* \w incense|strong="H7004"\w* \w with|strong="H4908"\w* its poles, \w the|strong="H4908"\w* \w anointing|strong="H4888"\w* \w oil|strong="H8081"\w*, \w the|strong="H4908"\w* \w sweet|strong="H5561"\w* \w incense|strong="H7004"\w*, \w the|strong="H4908"\w* \w screen|strong="H4539"\w* \w for|strong="H4196"\w* \w the|strong="H4908"\w* \w door|strong="H6607"\w*, \w at|strong="H6607"\w* \w the|strong="H4908"\w* \w door|strong="H6607"\w* \w of|strong="H4196"\w* \w the|strong="H4908"\w* \w tabernacle|strong="H4908"\w*; +\v 16 \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w of|strong="H3627"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w with|strong="H3627"\w* \w its|strong="H3605"\w* \w grating|strong="H4345"\w* \w of|strong="H3627"\w* \w bronze|strong="H5178"\w*, \w its|strong="H3605"\w* poles, \w and|strong="H4196"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w vessels|strong="H3627"\w*, \w the|strong="H3605"\w* \w basin|strong="H3595"\w* \w and|strong="H4196"\w* \w its|strong="H3605"\w* \w base|strong="H3653"\w*; +\v 17 \w the|strong="H8179"\w* \w hangings|strong="H7050"\w* \w of|strong="H8179"\w* \w the|strong="H8179"\w* \w court|strong="H2691"\w*, its \w pillars|strong="H5982"\w*, their sockets, \w and|strong="H8179"\w* \w the|strong="H8179"\w* \w screen|strong="H4539"\w* for \w the|strong="H8179"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* \w the|strong="H8179"\w* \w court|strong="H2691"\w*; +\v 18 \w the|strong="H4908"\w* \w pins|strong="H3489"\w* \w of|strong="H4908"\w* \w the|strong="H4908"\w* \w tabernacle|strong="H4908"\w*, \w the|strong="H4908"\w* \w pins|strong="H3489"\w* \w of|strong="H4908"\w* \w the|strong="H4908"\w* \w court|strong="H2691"\w*, \w and|strong="H4908"\w* their \w cords|strong="H4340"\w*; +\v 19 \w the|strong="H3548"\w* \w finely|strong="H8278"\w* worked garments \w for|strong="H1121"\w* \w ministering|strong="H8334"\w* \w in|strong="H1121"\w* \w the|strong="H3548"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w*—\w the|strong="H3548"\w* \w holy|strong="H6944"\w* garments \w for|strong="H1121"\w* Aaron \w the|strong="H3548"\w* \w priest|strong="H3548"\w*, \w and|strong="H1121"\w* \w the|strong="H3548"\w* garments \w of|strong="H1121"\w* \w his|strong="H8334"\w* \w sons|strong="H1121"\w*—\w to|strong="H1121"\w* \w minister|strong="H8334"\w* \w in|strong="H1121"\w* \w the|strong="H3548"\w* \w priest|strong="H3548"\w*’s office.’” +\p +\v 20 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w departed|strong="H3318"\w* \w from|strong="H3318"\w* \w the|strong="H3605"\w* \w presence|strong="H6440"\w* \w of|strong="H1121"\w* \w Moses|strong="H4872"\w*. +\v 21 \w They|strong="H3068"\w* \w came|strong="H3068"\w*, \w everyone|strong="H3605"\w* \w whose|strong="H3605"\w* \w heart|strong="H3820"\w* \w stirred|strong="H5375"\w* \w him|strong="H3605"\w* \w up|strong="H5375"\w*, \w and|strong="H3068"\w* \w everyone|strong="H3605"\w* whom \w his|strong="H3605"\w* \w spirit|strong="H7307"\w* \w made|strong="H4399"\w* \w willing|strong="H5068"\w*, \w and|strong="H3068"\w* \w brought|strong="H5375"\w* \w Yahweh|strong="H3068"\w*’s \w offering|strong="H8641"\w* \w for|strong="H3068"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, \w and|strong="H3068"\w* \w for|strong="H3068"\w* \w all|strong="H3605"\w* \w of|strong="H3068"\w* \w its|strong="H3605"\w* \w service|strong="H5656"\w*, \w and|strong="H3068"\w* \w for|strong="H3068"\w* \w the|strong="H3605"\w* \w holy|strong="H6944"\w* garments. +\v 22 \w They|strong="H3068"\w* \w came|strong="H3068"\w*, \w both|strong="H3605"\w* \w men|strong="H3605"\w* \w and|strong="H3068"\w* women, \w as|strong="H3068"\w* many \w as|strong="H3068"\w* \w were|strong="H3627"\w* willing-hearted, \w and|strong="H3068"\w* \w brought|strong="H3068"\w* \w brooches|strong="H2397"\w*, \w earrings|strong="H5141"\w*, \w signet|strong="H2885"\w* \w rings|strong="H2885"\w*, \w and|strong="H3068"\w* armlets, \w all|strong="H3605"\w* \w jewels|strong="H3627"\w* \w of|strong="H3068"\w* \w gold|strong="H2091"\w*; \w even|strong="H3068"\w* \w every|strong="H3605"\w* \w man|strong="H5081"\w* \w who|strong="H3605"\w* \w offered|strong="H5130"\w* \w an|strong="H5130"\w* \w offering|strong="H8573"\w* \w of|strong="H3068"\w* \w gold|strong="H2091"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 23 \w Everyone|strong="H3605"\w* \w with|strong="H3605"\w* whom \w was|strong="H3605"\w* \w found|strong="H4672"\w* \w blue|strong="H8504"\w*, \w purple|strong="H8504"\w*, \w scarlet|strong="H8144"\w*, \w fine|strong="H8336"\w* \w linen|strong="H8336"\w*, \w goats|strong="H5795"\w*’ hair, rams’ \w skins|strong="H5785"\w* \w dyed|strong="H5785"\w* \w red|strong="H8144"\w*, \w and|strong="H8504"\w* sea cow \w hides|strong="H5785"\w*, brought \w them|strong="H4672"\w*. +\v 24 \w Everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w offered|strong="H7311"\w* \w an|strong="H4672"\w* \w offering|strong="H8641"\w* \w of|strong="H3068"\w* \w silver|strong="H3701"\w* \w and|strong="H3068"\w* \w bronze|strong="H5178"\w* \w brought|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w offering|strong="H8641"\w*; \w and|strong="H3068"\w* \w everyone|strong="H3605"\w* \w with|strong="H3068"\w* whom \w was|strong="H3068"\w* \w found|strong="H4672"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w* \w for|strong="H3068"\w* \w any|strong="H3605"\w* \w work|strong="H4399"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w*, \w brought|strong="H3068"\w* \w it|strong="H4672"\w*. +\v 25 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w women|strong="H2450"\w* \w who|strong="H3605"\w* \w were|strong="H3027"\w* wise-hearted \w spun|strong="H2901"\w* \w with|strong="H3027"\w* \w their|strong="H3605"\w* \w hands|strong="H3027"\w*, \w and|strong="H3027"\w* \w brought|strong="H3027"\w* \w that|strong="H3605"\w* \w which|strong="H3605"\w* \w they|strong="H3605"\w* \w had|strong="H3027"\w* \w spun|strong="H2901"\w*: \w the|strong="H3605"\w* \w blue|strong="H8504"\w*, \w the|strong="H3605"\w* \w purple|strong="H8504"\w*, \w the|strong="H3605"\w* \w scarlet|strong="H8144"\w*, \w and|strong="H3027"\w* \w the|strong="H3605"\w* \w fine|strong="H8336"\w* \w linen|strong="H8336"\w*. +\v 26 \w All|strong="H3605"\w* \w the|strong="H3605"\w* women \w whose|strong="H3605"\w* \w heart|strong="H3820"\w* \w stirred|strong="H5375"\w* \w them|strong="H5375"\w* \w up|strong="H5375"\w* \w in|strong="H3820"\w* \w wisdom|strong="H2451"\w* \w spun|strong="H2901"\w* \w the|strong="H3605"\w* \w goats|strong="H5795"\w*’ hair. +\v 27 \w The|strong="H2833"\w* \w rulers|strong="H5387"\w* brought \w the|strong="H2833"\w* \w onyx|strong="H7718"\w* stones \w and|strong="H5387"\w* \w the|strong="H2833"\w* stones \w to|strong="H5387"\w* be \w set|strong="H4394"\w* \w for|strong="H4394"\w* \w the|strong="H2833"\w* ephod \w and|strong="H5387"\w* \w for|strong="H4394"\w* \w the|strong="H2833"\w* \w breastplate|strong="H2833"\w*; +\v 28 \w with|strong="H5561"\w* the \w spice|strong="H1314"\w* \w and|strong="H8081"\w* the \w oil|strong="H8081"\w* \w for|strong="H8081"\w* the \w light|strong="H3974"\w*, \w for|strong="H8081"\w* the \w anointing|strong="H4888"\w* \w oil|strong="H8081"\w*, \w and|strong="H8081"\w* \w for|strong="H8081"\w* the \w sweet|strong="H5561"\w* \w incense|strong="H7004"\w*. +\v 29 \w The|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w brought|strong="H6213"\w* \w a|strong="H3068"\w* free \w will|strong="H3068"\w* \w offering|strong="H5071"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*; \w every|strong="H3605"\w* \w man|strong="H1121"\w* \w and|strong="H1121"\w* woman \w whose|strong="H1121"\w* \w heart|strong="H3820"\w* \w made|strong="H6213"\w* \w them|strong="H3027"\w* \w willing|strong="H5068"\w* \w to|strong="H3478"\w* \w bring|strong="H6213"\w* \w for|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w*, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w commanded|strong="H6680"\w* \w to|strong="H3478"\w* \w be|strong="H3027"\w* \w made|strong="H6213"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w*. +\p +\v 30 \w Moses|strong="H4872"\w* \w said|strong="H7121"\w* \w to|strong="H3478"\w* \w the|strong="H7200"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, “\w Behold|strong="H7200"\w*, \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w called|strong="H7121"\w* \w by|strong="H3068"\w* \w name|strong="H8034"\w* \w Bezalel|strong="H1212"\w* \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Uri, \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hur|strong="H2354"\w*, \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*. +\v 31 \w He|strong="H3605"\w* \w has|strong="H7307"\w* \w filled|strong="H4390"\w* \w him|strong="H3605"\w* \w with|strong="H4390"\w* \w the|strong="H3605"\w* \w Spirit|strong="H7307"\w* \w of|strong="H7307"\w* \w God|strong="H2451"\w*, \w in|strong="H4399"\w* \w wisdom|strong="H2451"\w*, \w in|strong="H4399"\w* \w understanding|strong="H8394"\w*, \w in|strong="H4399"\w* \w knowledge|strong="H1847"\w*, \w and|strong="H2451"\w* \w in|strong="H4399"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H7307"\w* \w workmanship|strong="H4399"\w*; +\v 32 \w and|strong="H3701"\w* \w to|strong="H6213"\w* \w make|strong="H6213"\w* \w skillful|strong="H2803"\w* \w works|strong="H6213"\w*, \w to|strong="H6213"\w* \w work|strong="H6213"\w* \w in|strong="H6213"\w* \w gold|strong="H2091"\w*, \w in|strong="H6213"\w* \w silver|strong="H3701"\w*, \w in|strong="H6213"\w* \w bronze|strong="H5178"\w*, +\v 33 \w in|strong="H6213"\w* \w cutting|strong="H2799"\w* \w of|strong="H4390"\w* stones \w for|strong="H6213"\w* setting, \w and|strong="H6086"\w* \w in|strong="H6213"\w* \w carving|strong="H2799"\w* \w of|strong="H4390"\w* \w wood|strong="H6086"\w*, \w to|strong="H6213"\w* \w work|strong="H4399"\w* \w in|strong="H6213"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H4390"\w* skillful \w workmanship|strong="H4399"\w*. +\v 34 \w He|strong="H1931"\w* \w has|strong="H3820"\w* \w put|strong="H5414"\w* \w in|strong="H1121"\w* \w his|strong="H5414"\w* \w heart|strong="H3820"\w* \w that|strong="H1931"\w* \w he|strong="H1931"\w* \w may|strong="H1121"\w* \w teach|strong="H3384"\w*, \w both|strong="H3384"\w* \w he|strong="H1931"\w* \w and|strong="H1121"\w* Oholiab, \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahisamach, \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w*. +\v 35 \w He|strong="H6213"\w* \w has|strong="H3820"\w* \w filled|strong="H4390"\w* \w them|strong="H6213"\w* \w with|strong="H4390"\w* \w wisdom|strong="H2451"\w* \w of|strong="H4390"\w* \w heart|strong="H3820"\w* \w to|strong="H6213"\w* \w work|strong="H4399"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H4390"\w* \w workmanship|strong="H4399"\w*, \w of|strong="H4390"\w* \w the|strong="H3605"\w* \w engraver|strong="H2796"\w*, \w of|strong="H4390"\w* \w the|strong="H3605"\w* \w skillful|strong="H2803"\w* \w workman|strong="H2803"\w*, \w and|strong="H2451"\w* \w of|strong="H4390"\w* \w the|strong="H3605"\w* \w embroiderer|strong="H7551"\w*, \w in|strong="H6213"\w* \w blue|strong="H8504"\w*, \w in|strong="H6213"\w* \w purple|strong="H8504"\w*, \w in|strong="H6213"\w* \w scarlet|strong="H8144"\w*, \w and|strong="H2451"\w* \w in|strong="H6213"\w* \w fine|strong="H8336"\w* \w linen|strong="H8336"\w*, \w and|strong="H2451"\w* \w of|strong="H4390"\w* \w the|strong="H3605"\w* \w weaver|strong="H7551"\w*, \w even|strong="H6213"\w* \w of|strong="H4390"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w do|strong="H6213"\w* \w any|strong="H3605"\w* \w workmanship|strong="H4399"\w*, \w and|strong="H2451"\w* \w of|strong="H4390"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w make|strong="H6213"\w* \w skillful|strong="H2803"\w* \w works|strong="H6213"\w*. +\c 36 +\p +\v 1 “\w Bezalel|strong="H1212"\w* \w and|strong="H3068"\w* Oholiab \w shall|strong="H3068"\w* \w work|strong="H4399"\w* \w with|strong="H3068"\w* \w every|strong="H3605"\w* wise-hearted \w man|strong="H2450"\w*, \w in|strong="H3068"\w* \w whom|strong="H1992"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w put|strong="H5414"\w* \w wisdom|strong="H2451"\w* \w and|strong="H3068"\w* \w understanding|strong="H8394"\w* \w to|strong="H3068"\w* \w know|strong="H3045"\w* \w how|strong="H3045"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w for|strong="H6213"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w*, according \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3045"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w*.” +\p +\v 2 \w Moses|strong="H4872"\w* \w called|strong="H7121"\w* \w Bezalel|strong="H1212"\w* \w and|strong="H4872"\w* Oholiab, \w and|strong="H4872"\w* \w every|strong="H3605"\w* wise-hearted \w man|strong="H2450"\w*, \w in|strong="H3068"\w* \w whose|strong="H3605"\w* \w heart|strong="H3820"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w put|strong="H5414"\w* \w wisdom|strong="H2451"\w*, \w even|strong="H6213"\w* \w everyone|strong="H3605"\w* \w whose|strong="H3605"\w* \w heart|strong="H3820"\w* \w stirred|strong="H5375"\w* \w him|strong="H5414"\w* \w up|strong="H5375"\w* \w to|strong="H3068"\w* \w come|strong="H7126"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w it|strong="H5414"\w*. +\v 3 \w They|strong="H1992"\w* \w received|strong="H3947"\w* \w from|strong="H6440"\w* \w Moses|strong="H4872"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w offering|strong="H8641"\w* \w which|strong="H1992"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w had|strong="H3478"\w* \w brought|strong="H3947"\w* \w for|strong="H6213"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w*, \w with|strong="H6213"\w* \w which|strong="H1992"\w* \w to|strong="H3478"\w* \w make|strong="H6213"\w* \w it|strong="H6213"\w*. \w They|strong="H1992"\w* \w kept|strong="H6213"\w* bringing free \w will|strong="H3478"\w* \w offerings|strong="H5071"\w* \w to|strong="H3478"\w* \w him|strong="H6440"\w* \w every|strong="H3605"\w* \w morning|strong="H1242"\w*. +\v 4 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w wise|strong="H2450"\w* \w men|strong="H2450"\w*, \w who|strong="H3605"\w* \w performed|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w*, \w each|strong="H3605"\w* came \w from|strong="H3605"\w* \w his|strong="H3605"\w* \w work|strong="H4399"\w* \w which|strong="H1992"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w*. +\v 5 \w They|strong="H3068"\w* spoke \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, saying, “\w The|strong="H6213"\w* \w people|strong="H5971"\w* \w have|strong="H3068"\w* \w brought|strong="H6213"\w* \w much|strong="H7235"\w* \w more|strong="H7235"\w* \w than|strong="H7235"\w* \w enough|strong="H1767"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w service|strong="H5656"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* \w work|strong="H4399"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w to|strong="H3068"\w* \w make|strong="H6213"\w*.” +\p +\v 6 \w Moses|strong="H4872"\w* \w gave|strong="H6680"\w* \w a|strong="H3068"\w* \w commandment|strong="H6680"\w*, \w and|strong="H4872"\w* \w they|strong="H6213"\w* \w caused|strong="H5674"\w* \w it|strong="H6213"\w* \w to|strong="H6213"\w* \w be|strong="H5750"\w* \w proclaimed|strong="H6963"\w* \w throughout|strong="H5674"\w* \w the|strong="H6213"\w* \w camp|strong="H4264"\w*, \w saying|strong="H6963"\w*, “Let neither \w man|strong="H5674"\w* \w nor|strong="H5674"\w* woman \w make|strong="H6213"\w* \w anything|strong="H4399"\w* \w else|strong="H5750"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w offering|strong="H8641"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w sanctuary|strong="H6944"\w*.” \w So|strong="H6213"\w* \w the|strong="H6213"\w* \w people|strong="H5971"\w* \w were|strong="H5971"\w* \w restrained|strong="H3607"\w* \w from|strong="H5674"\w* bringing. +\v 7 \w For|strong="H6213"\w* \w the|strong="H3605"\w* \w stuff|strong="H4399"\w* \w they|strong="H6213"\w* \w had|strong="H1961"\w* \w was|strong="H1961"\w* \w sufficient|strong="H1767"\w* \w to|strong="H1961"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w*, \w and|strong="H6213"\w* \w too|strong="H1961"\w* \w much|strong="H3498"\w*. +\p +\v 8 \w All|strong="H3605"\w* \w the|strong="H3605"\w* wise-hearted \w men|strong="H2450"\w* among \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w did|strong="H6213"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w made|strong="H6213"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w* \w with|strong="H6213"\w* \w ten|strong="H6235"\w* \w curtains|strong="H3407"\w* \w of|strong="H3820"\w* \w fine|strong="H8336"\w* \w twined|strong="H7806"\w* \w linen|strong="H8336"\w*, \w blue|strong="H8504"\w*, \w purple|strong="H8504"\w*, \w and|strong="H8504"\w* \w scarlet|strong="H8144"\w*. \w They|strong="H6213"\w* \w made|strong="H6213"\w* \w them|strong="H6213"\w* \w with|strong="H6213"\w* \w cherubim|strong="H3742"\w*, \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w of|strong="H3820"\w* \w a|strong="H3068"\w* \w skillful|strong="H2803"\w* \w workman|strong="H2803"\w*. +\v 9 \w The|strong="H3605"\w* length \w of|strong="H3605"\w* \w each|strong="H3605"\w* \w curtain|strong="H3407"\w* \w was|strong="H3605"\w* \w twenty-eight|strong="H6242"\w* cubits,\f + \fr 36:9 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w and|strong="H6242"\w* \w the|strong="H3605"\w* \w width|strong="H7341"\w* \w of|strong="H3605"\w* \w each|strong="H3605"\w* \w curtain|strong="H3407"\w* four cubits. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w curtains|strong="H3407"\w* \w had|strong="H3407"\w* \w one|strong="H3605"\w* \w measure|strong="H4060"\w*. +\v 10 \w He|strong="H2568"\w* \w coupled|strong="H2266"\w* \w five|strong="H2568"\w* \w curtains|strong="H3407"\w* \w to|strong="H2266"\w* \w one|strong="H2266"\w* another, \w and|strong="H2568"\w* \w the|strong="H2266"\w* other \w five|strong="H2568"\w* \w curtains|strong="H3407"\w* \w he|strong="H2568"\w* \w coupled|strong="H2266"\w* \w to|strong="H2266"\w* \w one|strong="H2266"\w* another. +\v 11 \w He|strong="H3651"\w* \w made|strong="H6213"\w* \w loops|strong="H3924"\w* \w of|strong="H5921"\w* \w blue|strong="H8504"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w edge|strong="H8193"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w one|strong="H6213"\w* \w curtain|strong="H3407"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w edge|strong="H8193"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w coupling|strong="H4225"\w*. \w Likewise|strong="H3651"\w* \w he|strong="H3651"\w* \w made|strong="H6213"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w edge|strong="H8193"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w curtain|strong="H3407"\w* \w that|strong="H3651"\w* \w was|strong="H8193"\w* \w outermost|strong="H7020"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w second|strong="H8145"\w* \w coupling|strong="H4225"\w*. +\v 12 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w fifty|strong="H2572"\w* \w loops|strong="H3924"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w one|strong="H6213"\w* \w curtain|strong="H3407"\w*, \w and|strong="H2572"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w fifty|strong="H2572"\w* \w loops|strong="H3924"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w edge|strong="H7097"\w* \w of|strong="H7097"\w* \w the|strong="H6213"\w* \w curtain|strong="H3407"\w* \w that|strong="H6213"\w* \w was|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w second|strong="H8145"\w* \w coupling|strong="H4225"\w*. \w The|strong="H6213"\w* \w loops|strong="H3924"\w* were \w opposite|strong="H6901"\w* \w to|strong="H6213"\w* \w one|strong="H6213"\w* \w another|strong="H8145"\w*. +\v 13 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w fifty|strong="H2572"\w* \w clasps|strong="H7165"\w* \w of|strong="H4908"\w* \w gold|strong="H2091"\w*, \w and|strong="H2091"\w* \w coupled|strong="H2266"\w* \w the|strong="H6213"\w* \w curtains|strong="H3407"\w* \w to|strong="H1961"\w* \w one|strong="H1961"\w* another \w with|strong="H6213"\w* \w the|strong="H6213"\w* \w clasps|strong="H7165"\w*: \w so|strong="H6213"\w* \w the|strong="H6213"\w* \w tabernacle|strong="H4908"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* unit. +\p +\v 14 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w curtains|strong="H3407"\w* \w of|strong="H5921"\w* \w goats|strong="H5795"\w*’ hair \w for|strong="H5921"\w* \w a|strong="H3068"\w* covering \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w*. \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w them|strong="H5921"\w* \w eleven|strong="H6249"\w* \w curtains|strong="H3407"\w*. +\v 15 \w The|strong="H4060"\w* length \w of|strong="H7341"\w* each \w curtain|strong="H3407"\w* \w was|strong="H3407"\w* \w thirty|strong="H7970"\w* cubits, \w and|strong="H7970"\w* four cubits \w the|strong="H4060"\w* \w width|strong="H7341"\w* \w of|strong="H7341"\w* each \w curtain|strong="H3407"\w*. \w The|strong="H4060"\w* \w eleven|strong="H6249"\w* \w curtains|strong="H3407"\w* \w had|strong="H3407"\w* \w one|strong="H7341"\w* \w measure|strong="H4060"\w*. +\v 16 \w He|strong="H2568"\w* \w coupled|strong="H2266"\w* \w five|strong="H2568"\w* \w curtains|strong="H3407"\w* \w by|strong="H3407"\w* themselves, \w and|strong="H2568"\w* \w six|strong="H8337"\w* \w curtains|strong="H3407"\w* \w by|strong="H3407"\w* themselves. +\v 17 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w fifty|strong="H2572"\w* \w loops|strong="H3924"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w edge|strong="H8193"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w curtain|strong="H3407"\w* \w that|strong="H6213"\w* \w was|strong="H8193"\w* \w outermost|strong="H7020"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w coupling|strong="H4225"\w*, \w and|strong="H2572"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w fifty|strong="H2572"\w* \w loops|strong="H3924"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w edge|strong="H8193"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w curtain|strong="H3407"\w* \w which|strong="H3407"\w* \w was|strong="H8193"\w* \w outermost|strong="H7020"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w second|strong="H8145"\w* \w coupling|strong="H4225"\w*. +\v 18 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w fifty|strong="H2572"\w* \w clasps|strong="H7165"\w* \w of|strong="H6213"\w* \w bronze|strong="H5178"\w* \w to|strong="H1961"\w* \w couple|strong="H2266"\w* \w the|strong="H6213"\w* tent \w together|strong="H2266"\w*, \w that|strong="H6213"\w* \w it|strong="H6213"\w* might \w be|strong="H1961"\w* \w a|strong="H3068"\w* unit. +\v 19 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w covering|strong="H4372"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* tent \w of|strong="H4372"\w* rams’ \w skins|strong="H5785"\w* \w dyed|strong="H5785"\w* red, \w and|strong="H6213"\w* \w a|strong="H3068"\w* \w covering|strong="H4372"\w* \w of|strong="H4372"\w* sea cow \w hides|strong="H5785"\w* \w above|strong="H4605"\w*. +\p +\v 20 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w boards|strong="H7175"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w tabernacle|strong="H4908"\w* \w of|strong="H6086"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*, \w standing|strong="H5975"\w* \w up|strong="H5975"\w*. +\v 21 \w Ten|strong="H6235"\w* cubits was \w the|strong="H2677"\w* length \w of|strong="H2677"\w* \w a|strong="H3068"\w* \w board|strong="H7175"\w*, \w and|strong="H7341"\w* \w a|strong="H3068"\w* cubit \w and|strong="H7341"\w* \w a|strong="H3068"\w* \w half|strong="H2677"\w* \w the|strong="H2677"\w* \w width|strong="H7341"\w* \w of|strong="H2677"\w* \w each|strong="H7175"\w* \w board|strong="H7175"\w*. +\v 22 \w Each|strong="H3605"\w* \w board|strong="H7175"\w* \w had|strong="H3027"\w* \w two|strong="H8147"\w* \w tenons|strong="H3027"\w*, joined \w to|strong="H6213"\w* \w one|strong="H3605"\w* another. \w He|strong="H3651"\w* \w made|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w boards|strong="H7175"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w* \w this|strong="H3651"\w* \w way|strong="H3651"\w*. +\v 23 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w boards|strong="H7175"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w tabernacle|strong="H4908"\w*, \w twenty|strong="H6242"\w* \w boards|strong="H7175"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w south|strong="H5045"\w* \w side|strong="H6285"\w* \w southward|strong="H5045"\w*. +\v 24 \w He|strong="H6213"\w* \w made|strong="H6213"\w* forty sockets \w of|strong="H3027"\w* \w silver|strong="H3701"\w* \w under|strong="H8478"\w* \w the|strong="H6213"\w* \w twenty|strong="H6242"\w* \w boards|strong="H7175"\w*: \w two|strong="H8147"\w* sockets \w under|strong="H8478"\w* \w one|strong="H6213"\w* \w board|strong="H7175"\w* \w for|strong="H6213"\w* \w its|strong="H6213"\w* \w two|strong="H8147"\w* \w tenons|strong="H3027"\w*, \w and|strong="H6242"\w* \w two|strong="H8147"\w* sockets \w under|strong="H8478"\w* another \w board|strong="H7175"\w* \w for|strong="H6213"\w* \w its|strong="H6213"\w* \w two|strong="H8147"\w* \w tenons|strong="H3027"\w*. +\v 25 \w For|strong="H6213"\w* \w the|strong="H6213"\w* \w second|strong="H8145"\w* \w side|strong="H6285"\w* \w of|strong="H4908"\w* \w the|strong="H6213"\w* \w tabernacle|strong="H4908"\w*, \w on|strong="H6213"\w* \w the|strong="H6213"\w* \w north|strong="H6828"\w* \w side|strong="H6285"\w*, \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w twenty|strong="H6242"\w* \w boards|strong="H7175"\w* +\v 26 \w and|strong="H3701"\w* \w their|strong="H8478"\w* forty sockets \w of|strong="H8478"\w* \w silver|strong="H3701"\w*: \w two|strong="H8147"\w* sockets \w under|strong="H8478"\w* \w one|strong="H8147"\w* \w board|strong="H7175"\w*, \w and|strong="H3701"\w* \w two|strong="H8147"\w* sockets \w under|strong="H8478"\w* another \w board|strong="H7175"\w*. +\v 27 \w For|strong="H6213"\w* \w the|strong="H6213"\w* \w far|strong="H3411"\w* \w part|strong="H3411"\w* \w of|strong="H3220"\w* \w the|strong="H6213"\w* \w tabernacle|strong="H4908"\w* \w westward|strong="H3220"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w six|strong="H8337"\w* \w boards|strong="H7175"\w*. +\v 28 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w two|strong="H8147"\w* \w boards|strong="H7175"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w corners|strong="H4742"\w* \w of|strong="H8147"\w* \w the|strong="H6213"\w* \w tabernacle|strong="H4908"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w far|strong="H3411"\w* \w part|strong="H3411"\w*. +\v 29 \w They|strong="H3651"\w* \w were|strong="H1961"\w* \w double|strong="H8147"\w* \w beneath|strong="H4295"\w*, \w and|strong="H7218"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w same|strong="H3651"\w* \w way|strong="H3651"\w* \w they|strong="H3651"\w* \w were|strong="H1961"\w* \w all|strong="H3162"\w* \w the|strong="H6213"\w* \w way|strong="H3651"\w* \w to|strong="H1961"\w* \w its|strong="H6213"\w* \w top|strong="H7218"\w* \w to|strong="H1961"\w* \w one|strong="H1961"\w* \w ring|strong="H2885"\w*. \w He|strong="H3651"\w* \w did|strong="H6213"\w* \w this|strong="H3651"\w* \w to|strong="H1961"\w* \w both|strong="H8147"\w* \w of|strong="H7218"\w* \w them|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w two|strong="H8147"\w* \w corners|strong="H4740"\w*. +\v 30 \w There|strong="H1961"\w* \w were|strong="H1961"\w* \w eight|strong="H8083"\w* \w boards|strong="H7175"\w* \w and|strong="H3701"\w* \w their|strong="H1961"\w* sockets \w of|strong="H8478"\w* \w silver|strong="H3701"\w*, \w sixteen|strong="H8337"\w* sockets—\w under|strong="H8478"\w* \w every|strong="H8478"\w* \w board|strong="H7175"\w* \w two|strong="H8147"\w* sockets. +\p +\v 31 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w bars|strong="H1280"\w* \w of|strong="H6086"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*: \w five|strong="H2568"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w boards|strong="H7175"\w* \w of|strong="H6086"\w* \w the|strong="H6213"\w* \w one|strong="H6213"\w* \w side|strong="H6763"\w* \w of|strong="H6086"\w* \w the|strong="H6213"\w* \w tabernacle|strong="H4908"\w*, +\v 32 \w and|strong="H2568"\w* \w five|strong="H2568"\w* \w bars|strong="H1280"\w* \w for|strong="H4908"\w* \w the|strong="H8145"\w* \w boards|strong="H7175"\w* \w of|strong="H3220"\w* \w the|strong="H8145"\w* \w other|strong="H8145"\w* \w side|strong="H6763"\w* \w of|strong="H3220"\w* \w the|strong="H8145"\w* \w tabernacle|strong="H4908"\w*, \w and|strong="H2568"\w* \w five|strong="H2568"\w* \w bars|strong="H1280"\w* \w for|strong="H4908"\w* \w the|strong="H8145"\w* \w boards|strong="H7175"\w* \w of|strong="H3220"\w* \w the|strong="H8145"\w* \w tabernacle|strong="H4908"\w* \w for|strong="H4908"\w* \w the|strong="H8145"\w* hinder \w part|strong="H3411"\w* \w westward|strong="H3220"\w*. +\v 33 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w middle|strong="H8432"\w* \w bar|strong="H1280"\w* \w to|strong="H6213"\w* \w pass|strong="H6213"\w* \w through|strong="H4480"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w middle|strong="H8432"\w* \w of|strong="H4480"\w* \w the|strong="H6213"\w* \w boards|strong="H7175"\w* \w from|strong="H4480"\w* \w the|strong="H6213"\w* \w one|strong="H4480"\w* \w end|strong="H7097"\w* \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w other|strong="H7097"\w*. +\v 34 \w He|strong="H6213"\w* \w overlaid|strong="H6823"\w* \w the|strong="H6213"\w* \w boards|strong="H7175"\w* \w with|strong="H1004"\w* \w gold|strong="H2091"\w*, \w and|strong="H1004"\w* \w made|strong="H6213"\w* \w their|strong="H6213"\w* \w rings|strong="H2885"\w* \w of|strong="H1004"\w* \w gold|strong="H2091"\w* \w as|strong="H6213"\w* \w places|strong="H1004"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w bars|strong="H1280"\w*, \w and|strong="H1004"\w* \w overlaid|strong="H6823"\w* \w the|strong="H6213"\w* \w bars|strong="H1280"\w* \w with|strong="H1004"\w* \w gold|strong="H2091"\w*. +\p +\v 35 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w veil|strong="H6532"\w* \w of|strong="H4639"\w* \w blue|strong="H8504"\w*, \w purple|strong="H8504"\w*, \w scarlet|strong="H8144"\w*, \w and|strong="H8504"\w* \w fine|strong="H8336"\w* \w twined|strong="H7806"\w* \w linen|strong="H8336"\w*, \w with|strong="H6213"\w* \w cherubim|strong="H3742"\w*. \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w it|strong="H6213"\w* \w the|strong="H6213"\w* \w work|strong="H4639"\w* \w of|strong="H4639"\w* \w a|strong="H3068"\w* \w skillful|strong="H2803"\w* \w workman|strong="H2803"\w*. +\v 36 \w He|strong="H6213"\w* \w made|strong="H6213"\w* four \w pillars|strong="H5982"\w* \w of|strong="H5982"\w* \w acacia|strong="H7848"\w* \w for|strong="H6213"\w* \w it|strong="H6213"\w*, \w and|strong="H3701"\w* \w overlaid|strong="H6823"\w* \w them|strong="H6213"\w* \w with|strong="H6213"\w* \w gold|strong="H2091"\w*. \w Their|strong="H6213"\w* \w hooks|strong="H2053"\w* \w were|strong="H3701"\w* \w of|strong="H5982"\w* \w gold|strong="H2091"\w*. \w He|strong="H6213"\w* \w cast|strong="H3332"\w* four sockets \w of|strong="H5982"\w* \w silver|strong="H3701"\w* \w for|strong="H6213"\w* \w them|strong="H6213"\w*. +\v 37 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w screen|strong="H4539"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w door|strong="H6607"\w* \w of|strong="H4639"\w* \w the|strong="H6213"\w* tent, \w of|strong="H4639"\w* \w blue|strong="H8504"\w*, \w purple|strong="H8504"\w*, \w scarlet|strong="H8144"\w*, \w and|strong="H8504"\w* \w fine|strong="H8336"\w* \w twined|strong="H7806"\w* \w linen|strong="H8336"\w*, \w the|strong="H6213"\w* \w work|strong="H4639"\w* \w of|strong="H4639"\w* \w an|strong="H6213"\w* \w embroiderer|strong="H7551"\w*; +\v 38 \w and|strong="H2091"\w* \w the|strong="H6823"\w* \w five|strong="H2568"\w* \w pillars|strong="H5982"\w* \w of|strong="H7218"\w* \w it|strong="H7218"\w* \w with|strong="H6823"\w* \w their|strong="H6823"\w* \w hooks|strong="H2053"\w*. \w He|strong="H2568"\w* \w overlaid|strong="H6823"\w* \w their|strong="H6823"\w* capitals \w and|strong="H2091"\w* \w their|strong="H6823"\w* \w fillets|strong="H2838"\w* \w with|strong="H6823"\w* \w gold|strong="H2091"\w*, \w and|strong="H2091"\w* \w their|strong="H6823"\w* \w five|strong="H2568"\w* sockets \w were|strong="H7218"\w* \w of|strong="H7218"\w* \w bronze|strong="H5178"\w*. +\c 37 +\p +\v 1 \w Bezalel|strong="H1212"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* ark \w of|strong="H6086"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*. \w Its|strong="H6213"\w* \w length|strong="H6967"\w* \w was|strong="H6967"\w* \w two|strong="H6213"\w* \w and|strong="H6086"\w* \w a|strong="H3068"\w* \w half|strong="H2677"\w* cubits,\f + \fr 37:1 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w and|strong="H6086"\w* \w its|strong="H6213"\w* \w width|strong="H7341"\w* \w a|strong="H3068"\w* cubit \w and|strong="H6086"\w* \w a|strong="H3068"\w* \w half|strong="H2677"\w*, \w and|strong="H6086"\w* \w a|strong="H3068"\w* cubit \w and|strong="H6086"\w* \w a|strong="H3068"\w* \w half|strong="H2677"\w* \w its|strong="H6213"\w* \w height|strong="H6967"\w*. +\v 2 \w He|strong="H6213"\w* \w overlaid|strong="H6823"\w* \w it|strong="H6213"\w* \w with|strong="H1004"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w* \w inside|strong="H1004"\w* \w and|strong="H1004"\w* \w outside|strong="H2351"\w*, \w and|strong="H1004"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w molding|strong="H2213"\w* \w of|strong="H1004"\w* \w gold|strong="H2091"\w* \w for|strong="H6213"\w* \w it|strong="H6213"\w* \w around|strong="H5439"\w* \w it|strong="H6213"\w*. +\v 3 \w He|strong="H8147"\w* \w cast|strong="H3332"\w* four \w rings|strong="H2885"\w* \w of|strong="H5921"\w* \w gold|strong="H2091"\w* \w for|strong="H5921"\w* \w it|strong="H5921"\w* \w in|strong="H5921"\w* \w its|strong="H5921"\w* four \w feet|strong="H6471"\w*—\w two|strong="H8147"\w* \w rings|strong="H2885"\w* \w on|strong="H5921"\w* \w its|strong="H5921"\w* \w one|strong="H8147"\w* \w side|strong="H6763"\w*, \w and|strong="H2091"\w* \w two|strong="H8147"\w* \w rings|strong="H2885"\w* \w on|strong="H5921"\w* \w its|strong="H5921"\w* \w other|strong="H8145"\w* \w side|strong="H6763"\w*. +\v 4 \w He|strong="H6213"\w* \w made|strong="H6213"\w* poles \w of|strong="H6086"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w* \w and|strong="H6086"\w* \w overlaid|strong="H6823"\w* \w them|strong="H6213"\w* \w with|strong="H6213"\w* \w gold|strong="H2091"\w*. +\v 5 \w He|strong="H5921"\w* \w put|strong="H5375"\w* \w the|strong="H5921"\w* poles \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w rings|strong="H2885"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w sides|strong="H6763"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* ark, \w to|strong="H5921"\w* \w bear|strong="H5375"\w* \w the|strong="H5921"\w* ark. +\v 6 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w* \w of|strong="H2677"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*. \w Its|strong="H6213"\w* length \w was|strong="H6213"\w* \w two|strong="H6213"\w* \w and|strong="H2091"\w* \w a|strong="H3068"\w* \w half|strong="H2677"\w* cubits, \w and|strong="H2091"\w* \w a|strong="H3068"\w* cubit \w and|strong="H2091"\w* \w a|strong="H3068"\w* \w half|strong="H2677"\w* \w its|strong="H6213"\w* \w width|strong="H7341"\w*. +\v 7 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w two|strong="H8147"\w* \w cherubim|strong="H3742"\w* \w of|strong="H8147"\w* \w gold|strong="H2091"\w*. \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w them|strong="H6213"\w* \w of|strong="H8147"\w* \w beaten|strong="H4749"\w* \w work|strong="H6213"\w*, \w at|strong="H6213"\w* \w the|strong="H6213"\w* \w two|strong="H8147"\w* \w ends|strong="H7098"\w* \w of|strong="H8147"\w* \w the|strong="H6213"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w*: +\v 8 \w one|strong="H2088"\w* \w cherub|strong="H3742"\w* \w at|strong="H6213"\w* \w the|strong="H6213"\w* \w one|strong="H2088"\w* \w end|strong="H7098"\w*, \w and|strong="H6213"\w* \w one|strong="H2088"\w* \w cherub|strong="H3742"\w* \w at|strong="H6213"\w* \w the|strong="H6213"\w* \w other|strong="H2088"\w* \w end|strong="H7098"\w*. \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w cherubim|strong="H3742"\w* \w of|strong="H4480"\w* \w one|strong="H2088"\w* piece \w with|strong="H6213"\w* \w the|strong="H6213"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w* \w at|strong="H6213"\w* \w its|strong="H6213"\w* \w two|strong="H8147"\w* \w ends|strong="H7098"\w*. +\v 9 \w The|strong="H6440"\w* \w cherubim|strong="H3742"\w* \w spread|strong="H6566"\w* \w out|strong="H6566"\w* \w their|strong="H6440"\w* \w wings|strong="H3671"\w* \w above|strong="H4605"\w*, \w covering|strong="H5526"\w* \w the|strong="H6440"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w* \w with|strong="H5921"\w* \w their|strong="H6440"\w* \w wings|strong="H3671"\w*, \w with|strong="H5921"\w* \w their|strong="H6440"\w* \w faces|strong="H6440"\w* \w toward|strong="H5921"\w* \w one|strong="H1961"\w* \w another|strong="H3671"\w*. \w The|strong="H6440"\w* \w faces|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w cherubim|strong="H3742"\w* \w were|strong="H1961"\w* \w toward|strong="H5921"\w* \w the|strong="H6440"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w*. +\p +\v 10 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w table|strong="H7979"\w* \w of|strong="H6086"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*. \w Its|strong="H6213"\w* \w length|strong="H6967"\w* \w was|strong="H6967"\w* \w two|strong="H6213"\w* cubits, \w and|strong="H6086"\w* \w its|strong="H6213"\w* \w width|strong="H7341"\w* \w was|strong="H6967"\w* \w a|strong="H3068"\w* cubit, \w and|strong="H6086"\w* \w its|strong="H6213"\w* \w height|strong="H6967"\w* \w was|strong="H6967"\w* \w a|strong="H3068"\w* cubit \w and|strong="H6086"\w* \w a|strong="H3068"\w* \w half|strong="H2677"\w*. +\v 11 \w He|strong="H6213"\w* \w overlaid|strong="H6823"\w* \w it|strong="H6213"\w* \w with|strong="H6213"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*, \w and|strong="H2091"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w gold|strong="H2091"\w* \w molding|strong="H2213"\w* \w around|strong="H5439"\w* \w it|strong="H6213"\w*. +\v 12 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w border|strong="H2213"\w* \w of|strong="H6213"\w* \w a|strong="H3068"\w* \w hand|strong="H2948"\w*’s width \w around|strong="H5439"\w* \w it|strong="H6213"\w*, \w and|strong="H2091"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w golden|strong="H2091"\w* \w molding|strong="H2213"\w* \w on|strong="H2091"\w* \w its|strong="H6213"\w* \w border|strong="H2213"\w* \w around|strong="H5439"\w* \w it|strong="H6213"\w*. +\v 13 \w He|strong="H5414"\w* \w cast|strong="H3332"\w* four \w rings|strong="H2885"\w* \w of|strong="H5921"\w* \w gold|strong="H2091"\w* \w for|strong="H5921"\w* \w it|strong="H5414"\w*, \w and|strong="H2091"\w* \w put|strong="H5414"\w* \w the|strong="H5921"\w* \w rings|strong="H2885"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* four \w corners|strong="H6285"\w* \w that|strong="H5414"\w* \w were|strong="H7272"\w* \w on|strong="H5921"\w* \w its|strong="H5414"\w* four \w feet|strong="H7272"\w*. +\v 14 \w The|strong="H5375"\w* \w rings|strong="H2885"\w* \w were|strong="H1961"\w* \w close|strong="H5980"\w* \w by|strong="H1961"\w* \w the|strong="H5375"\w* \w border|strong="H4526"\w*, \w the|strong="H5375"\w* \w places|strong="H1004"\w* \w for|strong="H1004"\w* \w the|strong="H5375"\w* poles \w to|strong="H1961"\w* \w carry|strong="H5375"\w* \w the|strong="H5375"\w* \w table|strong="H7979"\w*. +\v 15 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H5375"\w* poles \w of|strong="H6086"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*, \w and|strong="H6086"\w* \w overlaid|strong="H6823"\w* \w them|strong="H6213"\w* \w with|strong="H6213"\w* \w gold|strong="H2091"\w*, \w to|strong="H6213"\w* \w carry|strong="H5375"\w* \w the|strong="H5375"\w* \w table|strong="H7979"\w*. +\v 16 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H5921"\w* \w vessels|strong="H3627"\w* \w which|strong="H2004"\w* \w were|strong="H3709"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w table|strong="H7979"\w*, \w its|strong="H5921"\w* \w dishes|strong="H7086"\w*, \w its|strong="H5921"\w* \w spoons|strong="H3709"\w*, \w its|strong="H5921"\w* \w bowls|strong="H4518"\w*, \w and|strong="H2091"\w* \w its|strong="H5921"\w* \w pitchers|strong="H7184"\w* \w with|strong="H6213"\w* \w which|strong="H2004"\w* \w to|strong="H6213"\w* \w pour|strong="H5258"\w* \w out|strong="H5258"\w*, \w of|strong="H3627"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*. +\p +\v 17 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* lamp stand \w of|strong="H4480"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*. \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* lamp stand \w of|strong="H4480"\w* \w beaten|strong="H4749"\w* \w work|strong="H6213"\w*. \w Its|strong="H6213"\w* \w base|strong="H3409"\w*, \w its|strong="H6213"\w* \w shaft|strong="H3409"\w*, \w its|strong="H6213"\w* \w cups|strong="H1375"\w*, \w its|strong="H6213"\w* \w buds|strong="H6525"\w*, \w and|strong="H2091"\w* \w its|strong="H6213"\w* \w flowers|strong="H6525"\w* \w were|strong="H1961"\w* \w of|strong="H4480"\w* \w one|strong="H4480"\w* \w piece|strong="H4749"\w* \w with|strong="H6213"\w* \w it|strong="H6213"\w*. +\v 18 There \w were|strong="H7969"\w* \w six|strong="H8337"\w* \w branches|strong="H7070"\w* \w going|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w its|strong="H3318"\w* \w sides|strong="H6654"\w*: \w three|strong="H7969"\w* \w branches|strong="H7070"\w* \w of|strong="H3318"\w* \w the|strong="H3318"\w* lamp stand \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w its|strong="H3318"\w* \w one|strong="H8145"\w* \w side|strong="H6654"\w*, \w and|strong="H3318"\w* \w three|strong="H7969"\w* \w branches|strong="H7070"\w* \w of|strong="H3318"\w* \w the|strong="H3318"\w* lamp stand \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w its|strong="H3318"\w* \w other|strong="H8145"\w* \w side|strong="H6654"\w*: +\v 19 \w three|strong="H7969"\w* \w cups|strong="H1375"\w* made \w like|strong="H3651"\w* \w almond|strong="H8246"\w* \w blossoms|strong="H6525"\w* \w in|strong="H3318"\w* \w one|strong="H4480"\w* \w branch|strong="H7070"\w*, \w a|strong="H3068"\w* \w bud|strong="H6525"\w* \w and|strong="H3318"\w* \w a|strong="H3068"\w* \w flower|strong="H6525"\w*, \w and|strong="H3318"\w* \w three|strong="H7969"\w* \w cups|strong="H1375"\w* made \w like|strong="H3651"\w* \w almond|strong="H8246"\w* \w blossoms|strong="H6525"\w* \w in|strong="H3318"\w* \w the|strong="H4480"\w* other \w branch|strong="H7070"\w*, \w a|strong="H3068"\w* \w bud|strong="H6525"\w* \w and|strong="H3318"\w* \w a|strong="H3068"\w* \w flower|strong="H6525"\w*; \w so|strong="H3651"\w* \w for|strong="H3318"\w* \w the|strong="H4480"\w* \w six|strong="H8337"\w* \w branches|strong="H7070"\w* \w going|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* lamp stand. +\v 20 \w In|strong="H6525"\w* the lamp stand \w were|strong="H6525"\w* four \w cups|strong="H1375"\w* made \w like|strong="H8246"\w* \w almond|strong="H8246"\w* \w blossoms|strong="H6525"\w*, its \w buds|strong="H6525"\w* \w and|strong="H6525"\w* its \w flowers|strong="H6525"\w*; +\v 21 \w and|strong="H3318"\w* \w a|strong="H3068"\w* bud \w under|strong="H8478"\w* \w two|strong="H8147"\w* \w branches|strong="H7070"\w* \w of|strong="H4480"\w* \w one|strong="H4480"\w* piece \w with|strong="H3318"\w* \w it|strong="H3318"\w*, \w and|strong="H3318"\w* \w a|strong="H3068"\w* bud \w under|strong="H8478"\w* \w two|strong="H8147"\w* \w branches|strong="H7070"\w* \w of|strong="H4480"\w* \w one|strong="H4480"\w* piece \w with|strong="H3318"\w* \w it|strong="H3318"\w*, \w and|strong="H3318"\w* \w a|strong="H3068"\w* bud \w under|strong="H8478"\w* \w two|strong="H8147"\w* \w branches|strong="H7070"\w* \w of|strong="H4480"\w* \w one|strong="H4480"\w* piece \w with|strong="H3318"\w* \w it|strong="H3318"\w*, \w for|strong="H8478"\w* \w the|strong="H4480"\w* \w six|strong="H8337"\w* \w branches|strong="H7070"\w* \w going|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4480"\w* \w it|strong="H3318"\w*. +\v 22 \w Their|strong="H3605"\w* buds \w and|strong="H2091"\w* \w their|strong="H3605"\w* \w branches|strong="H7070"\w* \w were|strong="H1961"\w* \w of|strong="H4480"\w* \w one|strong="H3605"\w* \w piece|strong="H4749"\w* \w with|strong="H3605"\w* \w it|strong="H1961"\w*. \w The|strong="H3605"\w* \w whole|strong="H3605"\w* \w thing|strong="H3605"\w* \w was|strong="H1961"\w* \w one|strong="H3605"\w* \w beaten|strong="H4749"\w* \w work|strong="H4749"\w* \w of|strong="H4480"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*. +\v 23 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w its|strong="H6213"\w* \w seven|strong="H7651"\w* \w lamps|strong="H5216"\w*, \w and|strong="H2091"\w* \w its|strong="H6213"\w* \w snuffers|strong="H4457"\w*, \w and|strong="H2091"\w* \w its|strong="H6213"\w* snuff dishes, \w of|strong="H6213"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*. +\v 24 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w it|strong="H6213"\w* \w of|strong="H3627"\w* \w a|strong="H3068"\w* \w talent|strong="H3603"\w*\f + \fr 37:24 \ft A talent is about 30 kilograms or 66 pounds or 965 Troy ounces\f* \w of|strong="H3627"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*, \w with|strong="H6213"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w vessels|strong="H3627"\w*. +\p +\v 25 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w altar|strong="H4196"\w* \w of|strong="H4196"\w* \w incense|strong="H7004"\w* \w of|strong="H4196"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*. \w It|strong="H6213"\w* \w was|strong="H1961"\w* \w square|strong="H7251"\w*: \w its|strong="H6213"\w* \w length|strong="H6967"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* cubit, \w and|strong="H6086"\w* \w its|strong="H6213"\w* \w width|strong="H7341"\w* \w a|strong="H3068"\w* cubit. \w Its|strong="H6213"\w* \w height|strong="H6967"\w* \w was|strong="H1961"\w* \w two|strong="H4480"\w* cubits. \w Its|strong="H6213"\w* \w horns|strong="H7161"\w* \w were|strong="H1961"\w* \w of|strong="H4196"\w* \w one|strong="H4480"\w* piece \w with|strong="H6213"\w* \w it|strong="H6213"\w*. +\v 26 \w He|strong="H6213"\w* \w overlaid|strong="H6823"\w* \w it|strong="H6213"\w* \w with|strong="H6213"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*: \w its|strong="H6213"\w* \w top|strong="H1406"\w*, \w its|strong="H6213"\w* \w sides|strong="H5439"\w* \w around|strong="H5439"\w* \w it|strong="H6213"\w*, \w and|strong="H2091"\w* \w its|strong="H6213"\w* \w horns|strong="H7161"\w*. \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w gold|strong="H2091"\w* \w molding|strong="H2213"\w* \w around|strong="H5439"\w* \w it|strong="H6213"\w*. +\v 27 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w two|strong="H8147"\w* \w golden|strong="H2091"\w* \w rings|strong="H2885"\w* \w for|strong="H5921"\w* \w it|strong="H5921"\w* \w under|strong="H8478"\w* \w its|strong="H5921"\w* \w molding|strong="H2213"\w* \w crown|strong="H2213"\w*, \w on|strong="H5921"\w* \w its|strong="H5921"\w* \w two|strong="H8147"\w* \w ribs|strong="H6763"\w*, \w on|strong="H5921"\w* \w its|strong="H5921"\w* \w two|strong="H8147"\w* \w sides|strong="H6654"\w*, \w for|strong="H5921"\w* \w places|strong="H1004"\w* \w for|strong="H5921"\w* poles \w with|strong="H1004"\w* \w which|strong="H1004"\w* \w to|strong="H6213"\w* \w carry|strong="H5375"\w* \w it|strong="H5921"\w*. +\v 28 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* poles \w of|strong="H6086"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*, \w and|strong="H6086"\w* \w overlaid|strong="H6823"\w* \w them|strong="H6213"\w* \w with|strong="H6213"\w* \w gold|strong="H2091"\w*. +\v 29 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w holy|strong="H6944"\w* \w anointing|strong="H4888"\w* \w oil|strong="H8081"\w* \w and|strong="H8081"\w* \w the|strong="H6213"\w* \w pure|strong="H2889"\w* \w incense|strong="H7004"\w* \w of|strong="H4639"\w* \w sweet|strong="H5561"\w* \w spices|strong="H5561"\w*, after \w the|strong="H6213"\w* \w art|strong="H4639"\w* \w of|strong="H4639"\w* \w the|strong="H6213"\w* \w perfumer|strong="H7543"\w*. +\c 38 +\p +\v 1 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w altar|strong="H4196"\w* \w of|strong="H4196"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w of|strong="H4196"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*. \w It|strong="H6213"\w* \w was|strong="H6967"\w* \w square|strong="H7251"\w*. \w Its|strong="H6213"\w* \w length|strong="H6967"\w* \w was|strong="H6967"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w*,\f + \fr 38:1 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w its|strong="H6213"\w* \w width|strong="H7341"\w* \w was|strong="H6967"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w*, \w and|strong="H6086"\w* \w its|strong="H6213"\w* \w height|strong="H6967"\w* \w was|strong="H6967"\w* \w three|strong="H7969"\w* \w cubits|strong="H2568"\w*. +\v 2 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w its|strong="H5921"\w* \w horns|strong="H7161"\w* \w on|strong="H5921"\w* \w its|strong="H5921"\w* four \w corners|strong="H6438"\w*. \w Its|strong="H5921"\w* \w horns|strong="H7161"\w* \w were|strong="H1961"\w* \w of|strong="H4480"\w* \w one|strong="H4480"\w* piece \w with|strong="H6213"\w* \w it|strong="H5921"\w*, \w and|strong="H6213"\w* \w he|strong="H6213"\w* \w overlaid|strong="H6823"\w* \w it|strong="H5921"\w* \w with|strong="H6213"\w* \w bronze|strong="H5178"\w*. +\v 3 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*: \w the|strong="H3605"\w* \w pots|strong="H5518"\w*, \w the|strong="H3605"\w* \w shovels|strong="H3257"\w*, \w the|strong="H3605"\w* \w basins|strong="H4219"\w*, \w the|strong="H3605"\w* \w forks|strong="H4207"\w*, \w and|strong="H4196"\w* \w the|strong="H3605"\w* fire \w pans|strong="H5518"\w*. \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H3627"\w* \w bronze|strong="H5178"\w*. +\v 4 \w He|strong="H5704"\w* \w made|strong="H6213"\w* \w for|strong="H5704"\w* \w the|strong="H6213"\w* \w altar|strong="H4196"\w* \w a|strong="H3068"\w* \w grating|strong="H4345"\w* \w of|strong="H4196"\w* \w a|strong="H3068"\w* \w network|strong="H7568"\w* \w of|strong="H4196"\w* \w bronze|strong="H5178"\w*, \w under|strong="H8478"\w* \w the|strong="H6213"\w* \w ledge|strong="H3749"\w* around \w it|strong="H6213"\w* \w beneath|strong="H8478"\w*, \w reaching|strong="H5704"\w* \w halfway|strong="H2677"\w* \w up|strong="H5704"\w*. +\v 5 \w He|strong="H1004"\w* \w cast|strong="H3332"\w* four \w rings|strong="H2885"\w* \w for|strong="H1004"\w* \w the|strong="H1004"\w* four corners \w of|strong="H1004"\w* \w bronze|strong="H5178"\w* \w grating|strong="H4345"\w*, \w to|strong="H1004"\w* \w be|strong="H1004"\w* \w places|strong="H1004"\w* \w for|strong="H1004"\w* \w the|strong="H1004"\w* poles. +\v 6 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* poles \w of|strong="H6086"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*, \w and|strong="H6086"\w* \w overlaid|strong="H6823"\w* \w them|strong="H6213"\w* \w with|strong="H6213"\w* \w bronze|strong="H5178"\w*. +\v 7 \w He|strong="H6213"\w* \w put|strong="H6213"\w* \w the|strong="H5921"\w* poles \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w rings|strong="H2885"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w sides|strong="H6763"\w* \w of|strong="H4196"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*, \w with|strong="H6213"\w* \w which|strong="H4196"\w* \w to|strong="H6213"\w* \w carry|strong="H5375"\w* \w it|strong="H5921"\w*. \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w it|strong="H5921"\w* \w hollow|strong="H5014"\w* \w with|strong="H6213"\w* \w planks|strong="H3871"\w*. +\p +\v 8 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w basin|strong="H3595"\w* \w of|strong="H6213"\w* \w bronze|strong="H5178"\w*, \w and|strong="H6213"\w* \w its|strong="H6213"\w* \w base|strong="H3653"\w* \w of|strong="H6213"\w* \w bronze|strong="H5178"\w*, \w out|strong="H6213"\w* \w of|strong="H6213"\w* \w the|strong="H6213"\w* \w mirrors|strong="H4759"\w* \w of|strong="H6213"\w* \w the|strong="H6213"\w* ministering \w women|strong="H6633"\w* \w who|strong="H6213"\w* ministered \w at|strong="H6213"\w* \w the|strong="H6213"\w* \w door|strong="H6607"\w* \w of|strong="H6213"\w* \w the|strong="H6213"\w* Tent \w of|strong="H6213"\w* \w Meeting|strong="H4150"\w*. +\p +\v 9 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w court|strong="H2691"\w*: \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w south|strong="H5045"\w* \w side|strong="H6285"\w* \w southward|strong="H5045"\w* \w the|strong="H6213"\w* \w hangings|strong="H7050"\w* \w of|strong="H5045"\w* \w the|strong="H6213"\w* \w court|strong="H2691"\w* \w were|strong="H5045"\w* \w of|strong="H5045"\w* \w fine|strong="H8336"\w* \w twined|strong="H7806"\w* \w linen|strong="H8336"\w*, \w one|strong="H6213"\w* \w hundred|strong="H3967"\w* cubits; +\v 10 their \w pillars|strong="H5982"\w* \w were|strong="H3701"\w* \w twenty|strong="H6242"\w*, \w and|strong="H6242"\w* their sockets \w twenty|strong="H6242"\w*, \w of|strong="H5982"\w* \w bronze|strong="H5178"\w*; the \w hooks|strong="H2053"\w* \w of|strong="H5982"\w* the \w pillars|strong="H5982"\w* \w and|strong="H6242"\w* their \w fillets|strong="H2838"\w* \w were|strong="H3701"\w* \w of|strong="H5982"\w* \w silver|strong="H3701"\w*. +\v 11 \w For|strong="H3701"\w* \w the|strong="H3967"\w* \w north|strong="H6828"\w* \w side|strong="H6285"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* cubits, their \w pillars|strong="H5982"\w* \w twenty|strong="H6242"\w*, \w and|strong="H3967"\w* their sockets \w twenty|strong="H6242"\w*, \w of|strong="H5982"\w* \w bronze|strong="H5178"\w*; \w the|strong="H3967"\w* \w hooks|strong="H2053"\w* \w of|strong="H5982"\w* \w the|strong="H3967"\w* \w pillars|strong="H5982"\w*, \w and|strong="H3967"\w* their \w fillets|strong="H2838"\w*, \w of|strong="H5982"\w* \w silver|strong="H3701"\w*. +\v 12 \w For|strong="H3701"\w* \w the|strong="H3220"\w* \w west|strong="H3220"\w* \w side|strong="H6285"\w* \w were|strong="H3701"\w* \w hangings|strong="H7050"\w* \w of|strong="H5982"\w* \w fifty|strong="H2572"\w* cubits, their \w pillars|strong="H5982"\w* \w ten|strong="H6235"\w*, \w and|strong="H3701"\w* their sockets \w ten|strong="H6235"\w*; \w the|strong="H3220"\w* \w hooks|strong="H2053"\w* \w of|strong="H5982"\w* \w the|strong="H3220"\w* \w pillars|strong="H5982"\w*, \w and|strong="H3701"\w* their \w fillets|strong="H2838"\w*, \w of|strong="H5982"\w* \w silver|strong="H3701"\w*. +\v 13 For \w the|strong="H6924"\w* \w east|strong="H4217"\w* \w side|strong="H6285"\w* \w eastward|strong="H6924"\w* \w fifty|strong="H2572"\w* cubits, +\v 14 \w the|strong="H7969"\w* \w hangings|strong="H7050"\w* \w for|strong="H2568"\w* \w the|strong="H7969"\w* \w one|strong="H7050"\w* \w side|strong="H3802"\w* \w were|strong="H7969"\w* \w fifteen|strong="H2568"\w* \w cubits|strong="H2568"\w*; their \w pillars|strong="H5982"\w* \w three|strong="H7969"\w*, \w and|strong="H2568"\w* their sockets \w three|strong="H7969"\w*; +\v 15 \w and|strong="H2568"\w* \w so|strong="H2088"\w* \w for|strong="H2088"\w* \w the|strong="H2088"\w* \w other|strong="H8145"\w* \w side|strong="H3802"\w*: \w on|strong="H7969"\w* \w this|strong="H2088"\w* hand \w and|strong="H2568"\w* \w that|strong="H2088"\w* hand \w by|strong="H8179"\w* \w the|strong="H2088"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* \w the|strong="H2088"\w* \w court|strong="H2691"\w* \w were|strong="H7969"\w* \w hangings|strong="H7050"\w* \w of|strong="H8179"\w* \w fifteen|strong="H2568"\w* \w cubits|strong="H2568"\w*; \w their|strong="H2088"\w* \w pillars|strong="H5982"\w* \w three|strong="H7969"\w*, \w and|strong="H2568"\w* \w their|strong="H2088"\w* sockets \w three|strong="H7969"\w*. +\v 16 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w hangings|strong="H7050"\w* \w around|strong="H5439"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w* \w were|strong="H5439"\w* \w of|strong="H3605"\w* \w fine|strong="H8336"\w* \w twined|strong="H7806"\w* \w linen|strong="H8336"\w*. +\v 17 \w The|strong="H3605"\w* sockets \w for|strong="H3605"\w* \w the|strong="H3605"\w* \w pillars|strong="H5982"\w* \w were|strong="H1992"\w* \w of|strong="H7218"\w* \w bronze|strong="H5178"\w*. \w The|strong="H3605"\w* \w hooks|strong="H2053"\w* \w of|strong="H7218"\w* \w the|strong="H3605"\w* \w pillars|strong="H5982"\w* \w and|strong="H3701"\w* \w their|strong="H3605"\w* \w fillets|strong="H2838"\w* \w were|strong="H1992"\w* \w of|strong="H7218"\w* \w silver|strong="H3701"\w*. \w Their|strong="H3605"\w* capitals \w were|strong="H1992"\w* \w overlaid|strong="H6826"\w* \w with|strong="H3605"\w* \w silver|strong="H3701"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w pillars|strong="H5982"\w* \w of|strong="H7218"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w* had \w silver|strong="H3701"\w* \w bands|strong="H2838"\w*. +\v 18 \w The|strong="H5980"\w* \w screen|strong="H4539"\w* \w for|strong="H4639"\w* \w the|strong="H5980"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* \w the|strong="H5980"\w* \w court|strong="H2691"\w* \w was|strong="H6967"\w* \w the|strong="H5980"\w* \w work|strong="H4639"\w* \w of|strong="H8179"\w* \w the|strong="H5980"\w* \w embroiderer|strong="H7551"\w*, \w of|strong="H8179"\w* \w blue|strong="H8504"\w*, \w purple|strong="H8504"\w*, \w scarlet|strong="H8144"\w*, \w and|strong="H6242"\w* \w fine|strong="H8336"\w* \w twined|strong="H7806"\w* \w linen|strong="H8336"\w*. \w Twenty|strong="H6242"\w* \w cubits|strong="H2568"\w* \w was|strong="H6967"\w* \w the|strong="H5980"\w* \w length|strong="H6967"\w*, \w and|strong="H6242"\w* \w the|strong="H5980"\w* \w height|strong="H6967"\w* \w along|strong="H5980"\w* \w the|strong="H5980"\w* \w width|strong="H7341"\w* \w was|strong="H6967"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w*, \w like|strong="H5980"\w* \w the|strong="H5980"\w* \w hangings|strong="H7050"\w* \w of|strong="H8179"\w* \w the|strong="H5980"\w* \w court|strong="H2691"\w*. +\v 19 Their \w pillars|strong="H5982"\w* \w were|strong="H7218"\w* four, \w and|strong="H3701"\w* their sockets four, \w of|strong="H7218"\w* \w bronze|strong="H5178"\w*; their \w hooks|strong="H2053"\w* \w of|strong="H7218"\w* \w silver|strong="H3701"\w*, \w and|strong="H3701"\w* \w the|strong="H7218"\w* \w overlaying|strong="H6826"\w* \w of|strong="H7218"\w* their capitals, \w and|strong="H3701"\w* their \w fillets|strong="H2838"\w*, \w of|strong="H7218"\w* \w silver|strong="H3701"\w*. +\v 20 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w pins|strong="H3489"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w*, \w and|strong="H5178"\w* \w around|strong="H5439"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w*, \w were|strong="H5439"\w* \w of|strong="H3605"\w* \w bronze|strong="H5178"\w*. +\p +\v 21 \w These|strong="H3881"\w* \w are|strong="H1121"\w* \w the|strong="H5921"\w* amounts \w of|strong="H1121"\w* materials used \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w*, \w even|strong="H5921"\w* \w the|strong="H5921"\w* \w Tabernacle|strong="H4908"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w Testimony|strong="H5715"\w*, \w as|strong="H1121"\w* \w they|strong="H5921"\w* \w were|strong="H1121"\w* \w counted|strong="H6485"\w*, \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w commandment|strong="H6310"\w* \w of|strong="H1121"\w* \w Moses|strong="H4872"\w*, \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w*, \w by|strong="H3027"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* Ithamar, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w the|strong="H5921"\w* \w priest|strong="H3548"\w*. +\v 22 \w Bezalel|strong="H1212"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Uri, \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hur|strong="H2354"\w*, \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w made|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\v 23 \w With|strong="H1121"\w* \w him|strong="H2803"\w* \w was|strong="H1121"\w* Oholiab, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahisamach, \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w*, \w an|strong="H2803"\w* \w engraver|strong="H2796"\w*, \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w skillful|strong="H2803"\w* \w workman|strong="H2803"\w*, \w and|strong="H1121"\w* \w an|strong="H2803"\w* \w embroiderer|strong="H7551"\w* \w in|strong="H1121"\w* \w blue|strong="H8504"\w*, \w in|strong="H1121"\w* \w purple|strong="H8504"\w*, \w in|strong="H1121"\w* \w scarlet|strong="H8144"\w*, \w and|strong="H1121"\w* \w in|strong="H1121"\w* \w fine|strong="H8336"\w* \w linen|strong="H8336"\w*. +\p +\v 24 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w gold|strong="H2091"\w* \w that|strong="H3605"\w* \w was|strong="H1961"\w* \w used|strong="H6213"\w* \w for|strong="H6213"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w in|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w of|strong="H3603"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w*, \w even|strong="H6213"\w* \w the|strong="H3605"\w* \w gold|strong="H2091"\w* \w of|strong="H3603"\w* \w the|strong="H3605"\w* \w offering|strong="H8573"\w*, \w was|strong="H1961"\w* \w twenty-nine|strong="H6242"\w* \w talents|strong="H3603"\w*\f + \fr 38:24 \ft A talent is about 30 kilograms or 66 pounds or 965 Troy ounces.\f* \w and|strong="H3967"\w* \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w* \w shekels|strong="H8255"\w*, according \w to|strong="H1961"\w* \w the|strong="H3605"\w* \w shekel|strong="H8255"\w*\f + \fr 38:24 \ft A shekel is about 10 grams or about 0.32 Troy ounces.\f* \w of|strong="H3603"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w*. +\v 25 \w The|strong="H6485"\w* \w silver|strong="H3701"\w* \w of|strong="H3603"\w* those \w who|strong="H6485"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H3603"\w* \w the|strong="H6485"\w* \w congregation|strong="H5712"\w* \w was|strong="H5712"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w talents|strong="H3603"\w*\f + \fr 38:25 \ft A talent is about 30 kilograms or 66 pounds\f* \w and|strong="H3967"\w* \w one|strong="H3967"\w* thousand \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w seventy-five|strong="H7657"\w* \w shekels|strong="H8255"\w*,\f + \fr 38:25 \ft A shekel is about 10 grams or about 0.35 ounces.\f* \w according|strong="H3701"\w* \w to|strong="H3701"\w* \w the|strong="H6485"\w* \w shekel|strong="H8255"\w* \w of|strong="H3603"\w* \w the|strong="H6485"\w* \w sanctuary|strong="H6944"\w*: +\v 26 \w a|strong="H3068"\w* \w beka|strong="H1235"\w*\f + \fr 38:26 \ft a beka is about 5 grams or about 0.175 ounces\f* \w a|strong="H3068"\w* \w head|strong="H1538"\w*, \w that|strong="H3605"\w* \w is|strong="H3605"\w*, \w half|strong="H4276"\w* \w a|strong="H3068"\w* \w shekel|strong="H8255"\w*, \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w shekel|strong="H8255"\w*\f + \fr 38:26 \ft A shekel is about 10 grams or about 0.35 ounces.\f* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w*, \w for|strong="H5921"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w passed|strong="H5674"\w* \w over|strong="H5921"\w* \w to|strong="H5921"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w counted|strong="H6485"\w*, \w from|strong="H5921"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H3967"\w* \w upward|strong="H4605"\w*, \w for|strong="H5921"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w three|strong="H7969"\w* thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w* \w men|strong="H1121"\w*. +\v 27 \w The|strong="H1961"\w* \w one|strong="H1961"\w* \w hundred|strong="H3967"\w* \w talents|strong="H3603"\w*\f + \fr 38:27 \ft A talent is about 30 kilograms or 66 pounds.\f* \w of|strong="H3603"\w* \w silver|strong="H3701"\w* \w were|strong="H1961"\w* \w for|strong="H3701"\w* \w casting|strong="H3332"\w* \w the|strong="H1961"\w* sockets \w of|strong="H3603"\w* \w the|strong="H1961"\w* \w sanctuary|strong="H6944"\w* \w and|strong="H3967"\w* \w the|strong="H1961"\w* sockets \w of|strong="H3603"\w* \w the|strong="H1961"\w* \w veil|strong="H6532"\w*: \w one|strong="H1961"\w* \w hundred|strong="H3967"\w* sockets \w for|strong="H3701"\w* \w the|strong="H1961"\w* \w one|strong="H1961"\w* \w hundred|strong="H3967"\w* \w talents|strong="H3603"\w*, \w one|strong="H1961"\w* \w talent|strong="H3603"\w* per socket. +\v 28 \w From|strong="H3967"\w* \w the|strong="H6213"\w* \w one|strong="H6213"\w* thousand \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w seventy-five|strong="H7657"\w* shekels\f + \fr 38:28 \ft A shekel is about 10 grams or about 0.35 ounces, so 1775 shekels is about 17.75 kilograms or about 39 pounds.\f* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w hooks|strong="H2053"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w pillars|strong="H5982"\w*, \w overlaid|strong="H6823"\w* \w their|strong="H6213"\w* capitals, \w and|strong="H3967"\w* \w made|strong="H6213"\w* fillets \w for|strong="H6213"\w* \w them|strong="H6213"\w*. +\v 29 \w The|strong="H3967"\w* \w bronze|strong="H5178"\w* \w of|strong="H3603"\w* \w the|strong="H3967"\w* \w offering|strong="H8573"\w* \w was|strong="H3603"\w* \w seventy|strong="H7657"\w* \w talents|strong="H3603"\w*\f + \fr 38:29 \ft A talent is about 30 kilograms or 66 pounds\f* \w and|strong="H3967"\w* \w two|strong="H3967"\w* thousand four \w hundred|strong="H3967"\w* \w shekels|strong="H8255"\w*.\f + \fr 38:29 \ft 70 talents + 2400 shekels is about 2124 kilograms, or 2.124 metric tons.\f* +\v 30 \w With|strong="H6213"\w* \w this|strong="H6213"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H3605"\w* sockets \w to|strong="H6213"\w* \w the|strong="H3605"\w* \w door|strong="H6607"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* Tent \w of|strong="H3627"\w* \w Meeting|strong="H4150"\w*, \w the|strong="H3605"\w* \w bronze|strong="H5178"\w* \w altar|strong="H4196"\w*, \w the|strong="H3605"\w* \w bronze|strong="H5178"\w* \w grating|strong="H4345"\w* \w for|strong="H6213"\w* \w it|strong="H6213"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*, +\v 31 \w the|strong="H3605"\w* sockets \w around|strong="H5439"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w*, \w the|strong="H3605"\w* sockets \w of|strong="H8179"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w pins|strong="H3489"\w* \w of|strong="H8179"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w*, \w and|strong="H4908"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w pins|strong="H3489"\w* \w around|strong="H5439"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w*. +\c 39 +\p +\v 1 \w Of|strong="H3068"\w* \w the|strong="H6213"\w* \w blue|strong="H8504"\w*, \w purple|strong="H8504"\w*, \w and|strong="H4872"\w* \w scarlet|strong="H8144"\w*, \w they|strong="H3068"\w* \w made|strong="H6213"\w* \w finely|strong="H8278"\w* \w worked|strong="H6213"\w* garments \w for|strong="H6213"\w* \w ministering|strong="H8334"\w* \w in|strong="H3068"\w* \w the|strong="H6213"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w*, \w and|strong="H4872"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w holy|strong="H6944"\w* garments \w for|strong="H6213"\w* Aaron, \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\p +\v 2 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* ephod \w of|strong="H6213"\w* \w gold|strong="H2091"\w*, \w blue|strong="H8504"\w*, \w purple|strong="H8504"\w*, \w scarlet|strong="H8144"\w*, \w and|strong="H2091"\w* \w fine|strong="H8336"\w* \w twined|strong="H7806"\w* \w linen|strong="H8336"\w*. +\v 3 \w They|strong="H6213"\w* \w beat|strong="H7554"\w* \w the|strong="H6213"\w* \w gold|strong="H2091"\w* \w into|strong="H8432"\w* thin \w plates|strong="H7554"\w*, \w and|strong="H2091"\w* \w cut|strong="H7112"\w* \w it|strong="H6213"\w* \w into|strong="H8432"\w* \w wires|strong="H6616"\w*, \w to|strong="H6213"\w* \w work|strong="H4639"\w* \w it|strong="H6213"\w* \w in|strong="H6213"\w* \w with|strong="H6213"\w* \w the|strong="H6213"\w* \w blue|strong="H8504"\w*, \w the|strong="H6213"\w* \w purple|strong="H8504"\w*, \w the|strong="H6213"\w* \w scarlet|strong="H8144"\w*, \w and|strong="H2091"\w* \w the|strong="H6213"\w* \w fine|strong="H8336"\w* \w linen|strong="H8336"\w*, \w the|strong="H6213"\w* \w work|strong="H4639"\w* \w of|strong="H8432"\w* \w the|strong="H6213"\w* \w skillful|strong="H2803"\w* \w workman|strong="H2803"\w*. +\v 4 \w They|strong="H5921"\w* \w made|strong="H6213"\w* \w shoulder|strong="H3802"\w* straps \w for|strong="H5921"\w* \w it|strong="H5921"\w*, \w joined|strong="H2266"\w* \w together|strong="H2266"\w*. \w It|strong="H5921"\w* \w was|strong="H6213"\w* \w joined|strong="H2266"\w* \w together|strong="H2266"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w ends|strong="H7117"\w*. +\v 5 \w The|strong="H5921"\w* \w skillfully|strong="H2805"\w* \w woven|strong="H2805"\w* \w band|strong="H2805"\w* \w that|strong="H1931"\w* \w was|strong="H3068"\w* \w on|strong="H5921"\w* \w it|strong="H1931"\w*, \w with|strong="H3068"\w* \w which|strong="H1931"\w* \w to|strong="H3068"\w* fasten \w it|strong="H1931"\w* \w on|strong="H5921"\w*, \w was|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w same|strong="H1931"\w* piece, \w like|strong="H5921"\w* \w its|strong="H5921"\w* \w work|strong="H4639"\w*: \w of|strong="H3068"\w* \w gold|strong="H2091"\w*, \w of|strong="H3068"\w* \w blue|strong="H8504"\w*, \w purple|strong="H8504"\w*, \w scarlet|strong="H8144"\w*, \w and|strong="H4872"\w* \w fine|strong="H8336"\w* \w twined|strong="H7806"\w* \w linen|strong="H8336"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\p +\v 6 \w They|strong="H5921"\w* \w worked|strong="H6213"\w* \w the|strong="H5921"\w* \w onyx|strong="H7718"\w* stones, enclosed \w in|strong="H5921"\w* \w settings|strong="H4142"\w* \w of|strong="H1121"\w* \w gold|strong="H2091"\w*, \w engraved|strong="H6605"\w* \w with|strong="H6213"\w* \w the|strong="H5921"\w* \w engravings|strong="H6603"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w signet|strong="H2368"\w*, \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 7 \w He|strong="H3068"\w* \w put|strong="H7760"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w shoulder|strong="H3802"\w* straps \w of|strong="H1121"\w* \w the|strong="H5921"\w* ephod, \w to|strong="H3478"\w* \w be|strong="H3068"\w* stones \w of|strong="H1121"\w* \w memorial|strong="H2146"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\p +\v 8 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w breastplate|strong="H2833"\w*, \w the|strong="H6213"\w* \w work|strong="H4639"\w* \w of|strong="H4639"\w* \w a|strong="H3068"\w* \w skillful|strong="H2803"\w* \w workman|strong="H2803"\w*, \w like|strong="H2803"\w* \w the|strong="H6213"\w* \w work|strong="H4639"\w* \w of|strong="H4639"\w* \w the|strong="H6213"\w* ephod: \w of|strong="H4639"\w* \w gold|strong="H2091"\w*, \w of|strong="H4639"\w* \w blue|strong="H8504"\w*, \w purple|strong="H8504"\w*, \w scarlet|strong="H8144"\w*, \w and|strong="H2091"\w* \w fine|strong="H8336"\w* \w twined|strong="H7806"\w* \w linen|strong="H8336"\w*. +\v 9 \w It|strong="H6213"\w* \w was|strong="H1961"\w* \w square|strong="H7251"\w*. \w They|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w breastplate|strong="H2833"\w* \w double|strong="H3717"\w*. \w Its|strong="H6213"\w* length \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w span|strong="H2239"\w*,\f + \fr 39:9 \ft A span is the length from the tip of a man’s thumb to the tip of his little finger when his hand is stretched out (about half a cubit, or 9 inches, or 22.8 cm.)\f* \w and|strong="H6213"\w* \w its|strong="H6213"\w* \w width|strong="H7341"\w* \w a|strong="H3068"\w* \w span|strong="H2239"\w*, \w being|strong="H1961"\w* \w double|strong="H3717"\w*. +\v 10 They \w set|strong="H4390"\w* in it four \w rows|strong="H2905"\w* \w of|strong="H4390"\w* stones. \w A|strong="H3068"\w* \w row|strong="H2905"\w* \w of|strong="H4390"\w* ruby, \w topaz|strong="H6357"\w*, \w and|strong="H6357"\w* beryl was \w the|strong="H4390"\w* first \w row|strong="H2905"\w*; +\v 11 \w and|strong="H8145"\w* \w the|strong="H8145"\w* \w second|strong="H8145"\w* \w row|strong="H2905"\w*, \w a|strong="H3068"\w* \w turquoise|strong="H5306"\w*, \w a|strong="H3068"\w* \w sapphire|strong="H5601"\w*,\f + \fr 39:11 \ft or, lapis lazuli \f* \w and|strong="H8145"\w* an \w emerald|strong="H5306"\w*; +\v 12 \w and|strong="H7992"\w* \w the|strong="H7992"\w* \w third|strong="H7992"\w* \w row|strong="H2905"\w*, \w a|strong="H3068"\w* \w jacinth|strong="H3958"\w*, an \w agate|strong="H7618"\w*, \w and|strong="H7992"\w* an amethyst; +\v 13 \w and|strong="H2091"\w* \w the|strong="H7243"\w* \w fourth|strong="H7243"\w* \w row|strong="H2905"\w*, \w a|strong="H3068"\w* chrysolite, \w an|strong="H2091"\w* \w onyx|strong="H7718"\w*, \w and|strong="H2091"\w* \w a|strong="H3068"\w* \w jasper|strong="H3471"\w*. \w They|strong="H7243"\w* were enclosed \w in|strong="H2091"\w* \w gold|strong="H2091"\w* \w settings|strong="H4142"\w*. +\v 14 \w The|strong="H5921"\w* stones \w were|strong="H3478"\w* \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w twelve|strong="H8147"\w*, \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w their|strong="H5921"\w* \w names|strong="H8034"\w*; \w like|strong="H3478"\w* \w the|strong="H5921"\w* \w engravings|strong="H6603"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w signet|strong="H2368"\w*, everyone \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w his|strong="H5921"\w* \w name|strong="H8034"\w*, \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w twelve|strong="H8147"\w* \w tribes|strong="H7626"\w*. +\v 15 \w They|strong="H5921"\w* \w made|strong="H6213"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w breastplate|strong="H2833"\w* \w chains|strong="H8333"\w* \w like|strong="H6213"\w* \w cords|strong="H5688"\w*, \w of|strong="H5921"\w* \w braided|strong="H4639"\w* \w work|strong="H4639"\w* \w of|strong="H5921"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*. +\v 16 \w They|strong="H5921"\w* \w made|strong="H6213"\w* \w two|strong="H8147"\w* \w settings|strong="H4865"\w* \w of|strong="H5921"\w* \w gold|strong="H2091"\w*, \w and|strong="H2091"\w* \w two|strong="H8147"\w* \w gold|strong="H2091"\w* \w rings|strong="H2885"\w*, \w and|strong="H2091"\w* \w put|strong="H5414"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w rings|strong="H2885"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w ends|strong="H7098"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w breastplate|strong="H2833"\w*. +\v 17 \w They|strong="H5921"\w* \w put|strong="H5414"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* braided \w chains|strong="H5688"\w* \w of|strong="H5921"\w* \w gold|strong="H2091"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w rings|strong="H2885"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w ends|strong="H7098"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w breastplate|strong="H2833"\w*. +\v 18 \w The|strong="H6440"\w* \w other|strong="H8147"\w* \w two|strong="H8147"\w* \w ends|strong="H7098"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w two|strong="H8147"\w* braided \w chains|strong="H5688"\w* \w they|strong="H5921"\w* \w put|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w two|strong="H8147"\w* \w settings|strong="H4865"\w*, \w and|strong="H6440"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w shoulder|strong="H3802"\w* straps \w of|strong="H6440"\w* \w the|strong="H6440"\w* ephod, \w in|strong="H5921"\w* \w its|strong="H5414"\w* \w front|strong="H6440"\w*. +\v 19 \w They|strong="H5921"\w* \w made|strong="H6213"\w* \w two|strong="H8147"\w* \w rings|strong="H2885"\w* \w of|strong="H1004"\w* \w gold|strong="H2091"\w*, \w and|strong="H1004"\w* \w put|strong="H7760"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w ends|strong="H7098"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w breastplate|strong="H2833"\w*, \w on|strong="H5921"\w* \w its|strong="H5921"\w* \w edge|strong="H8193"\w*, \w which|strong="H1004"\w* \w was|strong="H1004"\w* \w toward|strong="H5921"\w* \w the|strong="H5921"\w* \w side|strong="H5676"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* ephod \w inward|strong="H1004"\w*. +\v 20 \w They|strong="H5921"\w* \w made|strong="H6213"\w* \w two|strong="H8147"\w* \w more|strong="H2091"\w* \w rings|strong="H2885"\w* \w of|strong="H6440"\w* \w gold|strong="H2091"\w*, \w and|strong="H2091"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w two|strong="H8147"\w* \w shoulder|strong="H3802"\w* straps \w of|strong="H6440"\w* \w the|strong="H6440"\w* ephod \w underneath|strong="H4295"\w*, \w in|strong="H5921"\w* \w its|strong="H5414"\w* \w front|strong="H6440"\w*, \w close|strong="H5980"\w* \w by|strong="H5921"\w* \w its|strong="H5414"\w* \w coupling|strong="H4225"\w*, \w above|strong="H4605"\w* \w the|strong="H6440"\w* \w skillfully|strong="H2805"\w* \w woven|strong="H2805"\w* \w band|strong="H2805"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* ephod. +\v 21 \w They|strong="H3068"\w* \w bound|strong="H7405"\w* \w the|strong="H5921"\w* \w breastplate|strong="H2833"\w* \w by|strong="H5921"\w* \w its|strong="H5921"\w* \w rings|strong="H2885"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w rings|strong="H2885"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* ephod \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w lace|strong="H6616"\w* \w of|strong="H3068"\w* \w blue|strong="H8504"\w*, \w that|strong="H3068"\w* \w it|strong="H5921"\w* \w might|strong="H3068"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w skillfully|strong="H2805"\w* \w woven|strong="H2805"\w* \w band|strong="H2805"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* ephod, \w and|strong="H4872"\w* \w that|strong="H3068"\w* \w the|strong="H5921"\w* \w breastplate|strong="H2833"\w* \w might|strong="H3068"\w* \w not|strong="H3808"\w* \w come|strong="H1961"\w* \w loose|strong="H2118"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* ephod, \w as|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\p +\v 22 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w robe|strong="H4598"\w* \w of|strong="H4639"\w* \w the|strong="H6213"\w* ephod \w of|strong="H4639"\w* \w woven|strong="H6213"\w* \w work|strong="H4639"\w*, \w all|strong="H6213"\w* \w of|strong="H4639"\w* \w blue|strong="H8504"\w*. +\v 23 \w The|strong="H8432"\w* \w opening|strong="H6310"\w* \w of|strong="H6310"\w* \w the|strong="H8432"\w* \w robe|strong="H4598"\w* \w in|strong="H8432"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H6310"\w* \w it|strong="H8432"\w* \w was|strong="H6310"\w* \w like|strong="H3808"\w* \w the|strong="H8432"\w* \w opening|strong="H6310"\w* \w of|strong="H6310"\w* \w a|strong="H3068"\w* \w coat|strong="H8473"\w* \w of|strong="H6310"\w* \w mail|strong="H8473"\w*, \w with|strong="H6310"\w* \w a|strong="H3068"\w* \w binding|strong="H8193"\w* \w around|strong="H5439"\w* \w its|strong="H5439"\w* \w opening|strong="H6310"\w*, \w that|strong="H3808"\w* \w it|strong="H8432"\w* \w should|strong="H8193"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w torn|strong="H7167"\w*. +\v 24 \w They|strong="H5921"\w* \w made|strong="H6213"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w skirts|strong="H7757"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w robe|strong="H4598"\w* \w pomegranates|strong="H7416"\w* \w of|strong="H5921"\w* \w blue|strong="H8504"\w*, \w purple|strong="H8504"\w*, \w scarlet|strong="H8144"\w*, \w and|strong="H8504"\w* \w twined|strong="H7806"\w* linen. +\v 25 \w They|strong="H5921"\w* \w made|strong="H6213"\w* \w bells|strong="H6472"\w* \w of|strong="H8432"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*, \w and|strong="H2091"\w* \w put|strong="H5414"\w* \w the|strong="H5921"\w* \w bells|strong="H6472"\w* \w between|strong="H8432"\w* \w the|strong="H5921"\w* \w pomegranates|strong="H7416"\w* \w around|strong="H5439"\w* \w the|strong="H5921"\w* \w skirts|strong="H7757"\w* \w of|strong="H8432"\w* \w the|strong="H5921"\w* \w robe|strong="H4598"\w*, \w between|strong="H8432"\w* \w the|strong="H5921"\w* \w pomegranates|strong="H7416"\w*; +\v 26 \w a|strong="H3068"\w* \w bell|strong="H6472"\w* \w and|strong="H4872"\w* \w a|strong="H3068"\w* \w pomegranate|strong="H7416"\w*, \w a|strong="H3068"\w* \w bell|strong="H6472"\w* \w and|strong="H4872"\w* \w a|strong="H3068"\w* \w pomegranate|strong="H7416"\w*, \w around|strong="H5439"\w* \w the|strong="H5921"\w* \w skirts|strong="H7757"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w robe|strong="H4598"\w*, \w to|strong="H3068"\w* \w minister|strong="H8334"\w* \w in|strong="H5921"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\p +\v 27 \w They|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w tunics|strong="H3801"\w* \w of|strong="H1121"\w* \w fine|strong="H8336"\w* \w linen|strong="H8336"\w* \w of|strong="H1121"\w* \w woven|strong="H6213"\w* \w work|strong="H4639"\w* \w for|strong="H6213"\w* Aaron \w and|strong="H1121"\w* \w for|strong="H6213"\w* \w his|strong="H6213"\w* \w sons|strong="H1121"\w*, +\v 28 \w the|strong="H6287"\w* \w turban|strong="H4701"\w* \w of|strong="H4701"\w* \w fine|strong="H8336"\w* \w linen|strong="H8336"\w*, \w the|strong="H6287"\w* \w linen|strong="H8336"\w* \w headbands|strong="H4021"\w* \w of|strong="H4701"\w* \w fine|strong="H8336"\w* \w linen|strong="H8336"\w*, \w the|strong="H6287"\w* \w linen|strong="H8336"\w* trousers \w of|strong="H4701"\w* \w fine|strong="H8336"\w* \w twined|strong="H7806"\w* \w linen|strong="H8336"\w*, +\v 29 \w the|strong="H3068"\w* sash \w of|strong="H3068"\w* \w fine|strong="H8336"\w* \w twined|strong="H7806"\w* \w linen|strong="H8336"\w*, \w blue|strong="H8504"\w*, \w purple|strong="H8504"\w*, \w and|strong="H4872"\w* \w scarlet|strong="H8144"\w*, \w the|strong="H3068"\w* \w work|strong="H4639"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w embroiderer|strong="H7551"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\p +\v 30 \w They|strong="H3068"\w* \w made|strong="H6213"\w* \w the|strong="H5921"\w* \w plate|strong="H6731"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w holy|strong="H6944"\w* \w crown|strong="H5145"\w* \w of|strong="H3068"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*, \w and|strong="H3068"\w* \w wrote|strong="H3789"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w* \w an|strong="H6213"\w* \w inscription|strong="H6603"\w*, \w like|strong="H6213"\w* \w the|strong="H5921"\w* \w engravings|strong="H6603"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w signet|strong="H2368"\w*: “\w HOLY|strong="H6944"\w* \w TO|strong="H3068"\w* \w YAHWEH|strong="H3068"\w*”. +\v 31 \w They|strong="H3068"\w* \w tied|strong="H6616"\w* \w to|strong="H3068"\w* \w it|strong="H5414"\w* \w a|strong="H3068"\w* \w lace|strong="H6616"\w* \w of|strong="H3068"\w* \w blue|strong="H8504"\w*, \w to|strong="H3068"\w* \w fasten|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w turban|strong="H4701"\w* \w above|strong="H4605"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\p +\v 32 \w Thus|strong="H3651"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H5656"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w* \w was|strong="H3068"\w* \w finished|strong="H3615"\w*. \w The|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w did|strong="H6213"\w* according \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*; \w so|strong="H3651"\w* \w they|strong="H3651"\w* \w did|strong="H6213"\w*. +\v 33 \w They|strong="H3605"\w* \w brought|strong="H4872"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w* \w to|strong="H4872"\w* \w Moses|strong="H4872"\w*: \w the|strong="H3605"\w* tent, \w with|strong="H3627"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w furniture|strong="H3627"\w*, \w its|strong="H3605"\w* \w clasps|strong="H7165"\w*, \w its|strong="H3605"\w* \w boards|strong="H7175"\w*, \w its|strong="H3605"\w* \w bars|strong="H1280"\w*, \w its|strong="H3605"\w* \w pillars|strong="H5982"\w*, \w its|strong="H3605"\w* sockets, +\v 34 \w the|strong="H6532"\w* \w covering|strong="H4372"\w* \w of|strong="H4372"\w* rams’ \w skins|strong="H5785"\w* \w dyed|strong="H5785"\w* red, \w the|strong="H6532"\w* \w covering|strong="H4372"\w* \w of|strong="H4372"\w* sea cow \w hides|strong="H5785"\w*, \w the|strong="H6532"\w* \w veil|strong="H6532"\w* \w of|strong="H4372"\w* \w the|strong="H6532"\w* \w screen|strong="H4539"\w*, +\v 35 the ark \w of|strong="H3727"\w* the covenant \w with|strong="H5715"\w* its poles, the \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w*, +\v 36 \w the|strong="H3605"\w* \w table|strong="H7979"\w*, \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w vessels|strong="H3627"\w*, \w the|strong="H3605"\w* show \w bread|strong="H3899"\w*, +\v 37 \w the|strong="H3605"\w* \w pure|strong="H2889"\w* \w lamp|strong="H5216"\w* stand, \w its|strong="H3605"\w* \w lamps|strong="H5216"\w*, even \w the|strong="H3605"\w* \w lamps|strong="H5216"\w* \w to|strong="H3627"\w* \w be|strong="H8081"\w* set \w in|strong="H3627"\w* \w order|strong="H4634"\w*, \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w vessels|strong="H3627"\w*, \w the|strong="H3605"\w* \w oil|strong="H8081"\w* \w for|strong="H3627"\w* \w the|strong="H3605"\w* \w light|strong="H3974"\w*, +\v 38 \w the|strong="H4196"\w* \w golden|strong="H2091"\w* \w altar|strong="H4196"\w*, \w the|strong="H4196"\w* \w anointing|strong="H4888"\w* \w oil|strong="H8081"\w*, \w the|strong="H4196"\w* \w sweet|strong="H5561"\w* \w incense|strong="H7004"\w*, \w the|strong="H4196"\w* \w screen|strong="H4539"\w* \w for|strong="H4196"\w* \w the|strong="H4196"\w* \w door|strong="H6607"\w* \w of|strong="H4196"\w* \w the|strong="H4196"\w* Tent, +\v 39 \w the|strong="H3605"\w* \w bronze|strong="H5178"\w* \w altar|strong="H4196"\w*, \w its|strong="H3605"\w* \w grating|strong="H4345"\w* \w of|strong="H3627"\w* \w bronze|strong="H5178"\w*, \w its|strong="H3605"\w* poles, \w all|strong="H3605"\w* \w of|strong="H3627"\w* \w its|strong="H3605"\w* \w vessels|strong="H3627"\w*, \w the|strong="H3605"\w* \w basin|strong="H3595"\w* \w and|strong="H4196"\w* \w its|strong="H3605"\w* \w base|strong="H3653"\w*, +\v 40 \w the|strong="H3605"\w* \w hangings|strong="H7050"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w*, \w its|strong="H3605"\w* \w pillars|strong="H5982"\w*, \w its|strong="H3605"\w* sockets, \w the|strong="H3605"\w* \w screen|strong="H4539"\w* \w for|strong="H3627"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w*, \w its|strong="H3605"\w* \w cords|strong="H4340"\w*, \w its|strong="H3605"\w* \w pins|strong="H3489"\w*, \w and|strong="H3627"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w instruments|strong="H3627"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w*, \w for|strong="H3627"\w* \w the|strong="H3605"\w* \w Tent|strong="H3489"\w* \w of|strong="H3627"\w* \w Meeting|strong="H4150"\w*, +\v 41 \w the|strong="H3548"\w* \w finely|strong="H8278"\w* worked garments \w for|strong="H1121"\w* \w ministering|strong="H8334"\w* \w in|strong="H1121"\w* \w the|strong="H3548"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w*, \w the|strong="H3548"\w* \w holy|strong="H6944"\w* garments \w for|strong="H1121"\w* Aaron \w the|strong="H3548"\w* \w priest|strong="H3548"\w*, \w and|strong="H1121"\w* \w the|strong="H3548"\w* garments \w of|strong="H1121"\w* \w his|strong="H8334"\w* \w sons|strong="H1121"\w*, \w to|strong="H1121"\w* \w minister|strong="H8334"\w* \w in|strong="H1121"\w* \w the|strong="H3548"\w* \w priest|strong="H3548"\w*’s office. +\v 42 According \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*, \w so|strong="H3651"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w did|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H5656"\w*. +\v 43 \w Moses|strong="H4872"\w* \w saw|strong="H7200"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w*, \w and|strong="H4872"\w* \w behold|strong="H2009"\w*, \w they|strong="H3651"\w* \w had|strong="H3068"\w* \w done|strong="H6213"\w* \w it|strong="H6213"\w* \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w commanded|strong="H6680"\w*. \w They|strong="H3651"\w* \w had|strong="H3068"\w* \w done|strong="H6213"\w* \w so|strong="H3651"\w*; \w and|strong="H4872"\w* \w Moses|strong="H4872"\w* \w blessed|strong="H1288"\w* \w them|strong="H6213"\w*. +\c 40 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w On|strong="H3117"\w* \w the|strong="H3117"\w* \w first|strong="H7223"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w* \w you|strong="H3117"\w* \w shall|strong="H3117"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w the|strong="H3117"\w* \w tabernacle|strong="H4908"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* Tent \w of|strong="H3117"\w* \w Meeting|strong="H4150"\w*. +\v 3 \w You|strong="H5921"\w* \w shall|strong="H6532"\w* \w put|strong="H7760"\w* \w the|strong="H5921"\w* ark \w of|strong="H5921"\w* \w the|strong="H5921"\w* covenant \w in|strong="H5921"\w* \w it|strong="H7760"\w*, \w and|strong="H8033"\w* \w you|strong="H5921"\w* \w shall|strong="H6532"\w* \w screen|strong="H5526"\w* \w the|strong="H5921"\w* ark \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w veil|strong="H6532"\w*. +\v 4 \w You|strong="H5927"\w* shall \w bring|strong="H5927"\w* \w in|strong="H5927"\w* \w the|strong="H5927"\w* \w table|strong="H7979"\w*, \w and|strong="H5927"\w* \w set|strong="H6186"\w* \w in|strong="H5927"\w* \w order|strong="H6186"\w* \w the|strong="H5927"\w* things \w that|strong="H5927"\w* \w are|strong="H7979"\w* \w on|strong="H5927"\w* \w it|strong="H5927"\w*. \w You|strong="H5927"\w* shall \w bring|strong="H5927"\w* \w in|strong="H5927"\w* \w the|strong="H5927"\w* \w lamp|strong="H5216"\w* stand, \w and|strong="H5927"\w* \w light|strong="H5216"\w* \w its|strong="H5927"\w* \w lamps|strong="H5216"\w*. +\v 5 \w You|strong="H5414"\w* \w shall|strong="H6440"\w* \w set|strong="H7760"\w* \w the|strong="H6440"\w* \w golden|strong="H2091"\w* \w altar|strong="H4196"\w* \w for|strong="H6440"\w* \w incense|strong="H7004"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* ark \w of|strong="H6440"\w* \w the|strong="H6440"\w* covenant, \w and|strong="H2091"\w* \w put|strong="H5414"\w* \w the|strong="H6440"\w* \w screen|strong="H4539"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w door|strong="H6607"\w* \w to|strong="H5414"\w* \w the|strong="H6440"\w* \w tabernacle|strong="H4908"\w*. +\p +\v 6 “\w You|strong="H5414"\w* \w shall|strong="H6440"\w* \w set|strong="H5414"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w* \w of|strong="H6440"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w door|strong="H6607"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w tabernacle|strong="H4908"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* Tent \w of|strong="H6440"\w* \w Meeting|strong="H4150"\w*. +\v 7 \w You|strong="H5414"\w* \w shall|strong="H4325"\w* \w set|strong="H5414"\w* \w the|strong="H5414"\w* \w basin|strong="H3595"\w* between \w the|strong="H5414"\w* Tent \w of|strong="H4325"\w* \w Meeting|strong="H4150"\w* \w and|strong="H4196"\w* \w the|strong="H5414"\w* \w altar|strong="H4196"\w*, \w and|strong="H4196"\w* \w shall|strong="H4325"\w* \w put|strong="H5414"\w* \w water|strong="H4325"\w* \w therein|strong="H8033"\w*. +\v 8 \w You|strong="H5414"\w* \w shall|strong="H8179"\w* \w set|strong="H7760"\w* \w up|strong="H5414"\w* \w the|strong="H5414"\w* \w court|strong="H2691"\w* \w around|strong="H5439"\w* \w it|strong="H5414"\w*, \w and|strong="H8179"\w* \w hang|strong="H5414"\w* \w up|strong="H5414"\w* \w the|strong="H5414"\w* \w screen|strong="H4539"\w* \w of|strong="H8179"\w* \w the|strong="H5414"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* \w the|strong="H5414"\w* \w court|strong="H2691"\w*. +\p +\v 9 “\w You|strong="H3605"\w* \w shall|strong="H3627"\w* \w take|strong="H3947"\w* \w the|strong="H3605"\w* \w anointing|strong="H4888"\w* \w oil|strong="H8081"\w*, \w and|strong="H8081"\w* \w anoint|strong="H4886"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w* \w and|strong="H8081"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w in|strong="H1961"\w* \w it|strong="H1961"\w*, \w and|strong="H8081"\w* \w shall|strong="H3627"\w* \w make|strong="H3947"\w* \w it|strong="H1961"\w* \w holy|strong="H6944"\w*, \w and|strong="H8081"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w furniture|strong="H3627"\w*, \w and|strong="H8081"\w* \w it|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w holy|strong="H6944"\w*. +\v 10 \w You|strong="H3605"\w* \w shall|strong="H3627"\w* \w anoint|strong="H4886"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w of|strong="H3627"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w with|strong="H4886"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w vessels|strong="H3627"\w*, \w and|strong="H4196"\w* \w sanctify|strong="H6942"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*, \w and|strong="H4196"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w*. +\v 11 \w You|strong="H4886"\w* shall \w anoint|strong="H4886"\w* \w the|strong="H6942"\w* \w basin|strong="H3595"\w* \w and|strong="H6942"\w* its \w base|strong="H3653"\w*, \w and|strong="H6942"\w* \w sanctify|strong="H6942"\w* \w it|strong="H6942"\w*. +\p +\v 12 “\w You|strong="H7126"\w* \w shall|strong="H1121"\w* \w bring|strong="H7126"\w* Aaron \w and|strong="H1121"\w* \w his|strong="H7364"\w* \w sons|strong="H1121"\w* \w to|strong="H1121"\w* \w the|strong="H7126"\w* \w door|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H7126"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*, \w and|strong="H1121"\w* \w shall|strong="H1121"\w* \w wash|strong="H7364"\w* \w them|strong="H7126"\w* \w with|strong="H7364"\w* \w water|strong="H4325"\w*. +\v 13 \w You|strong="H4886"\w* shall \w put|strong="H3847"\w* \w on|strong="H3847"\w* Aaron \w the|strong="H6942"\w* \w holy|strong="H6944"\w* garments; \w and|strong="H6944"\w* \w you|strong="H4886"\w* shall \w anoint|strong="H4886"\w* \w him|strong="H4886"\w*, \w and|strong="H6944"\w* \w sanctify|strong="H6942"\w* \w him|strong="H4886"\w*, \w that|strong="H6944"\w* he may \w minister|strong="H3547"\w* \w to|strong="H6944"\w* \w me|strong="H4886"\w* \w in|strong="H3847"\w* \w the|strong="H6942"\w* \w priest|strong="H3547"\w*’s office. +\v 14 \w You|strong="H7126"\w* \w shall|strong="H1121"\w* \w bring|strong="H7126"\w* \w his|strong="H7126"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w put|strong="H3847"\w* \w tunics|strong="H3801"\w* \w on|strong="H3847"\w* \w them|strong="H7126"\w*. +\v 15 \w You|strong="H4886"\w* \w shall|strong="H1755"\w* \w anoint|strong="H4886"\w* \w them|strong="H1961"\w*, \w as|strong="H3547"\w* \w you|strong="H4886"\w* \w anointed|strong="H4886"\w* \w their|strong="H1961"\w* father, \w that|strong="H1961"\w* they \w may|strong="H1961"\w* \w minister|strong="H3547"\w* \w to|strong="H1961"\w* \w me|strong="H4886"\w* \w in|strong="H1755"\w* \w the|strong="H1961"\w* \w priest|strong="H3547"\w*’s office. \w Their|strong="H1961"\w* \w anointing|strong="H4888"\w* \w shall|strong="H1755"\w* \w be|strong="H1961"\w* \w to|strong="H1961"\w* \w them|strong="H1961"\w* \w for|strong="H1961"\w* \w an|strong="H1961"\w* \w everlasting|strong="H5769"\w* \w priesthood|strong="H3550"\w* \w throughout|strong="H1755"\w* \w their|strong="H1961"\w* \w generations|strong="H1755"\w*.” +\v 16 \w Moses|strong="H4872"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*. According \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w him|strong="H6213"\w*, \w so|strong="H3651"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w*. +\p +\v 17 \w In|strong="H8141"\w* \w the|strong="H6965"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w* \w in|strong="H8141"\w* \w the|strong="H6965"\w* \w second|strong="H8145"\w* \w year|strong="H8141"\w*, \w on|strong="H1961"\w* \w the|strong="H6965"\w* \w first|strong="H7223"\w* \w day|strong="H2320"\w* \w of|strong="H8141"\w* \w the|strong="H6965"\w* \w month|strong="H2320"\w*, \w the|strong="H6965"\w* \w tabernacle|strong="H4908"\w* \w was|strong="H1961"\w* \w raised|strong="H6965"\w* \w up|strong="H6965"\w*. +\v 18 \w Moses|strong="H4872"\w* \w raised|strong="H6965"\w* \w up|strong="H6965"\w* \w the|strong="H5414"\w* \w tabernacle|strong="H4908"\w*, \w and|strong="H6965"\w* \w laid|strong="H7760"\w* \w its|strong="H5414"\w* sockets, \w and|strong="H6965"\w* \w set|strong="H7760"\w* \w up|strong="H6965"\w* \w its|strong="H5414"\w* \w boards|strong="H7175"\w*, \w and|strong="H6965"\w* \w put|strong="H5414"\w* \w in|strong="H5414"\w* \w its|strong="H5414"\w* \w bars|strong="H1280"\w*, \w and|strong="H6965"\w* \w raised|strong="H6965"\w* \w up|strong="H6965"\w* \w its|strong="H5414"\w* \w pillars|strong="H5982"\w*. +\v 19 \w He|strong="H3068"\w* \w spread|strong="H6566"\w* \w the|strong="H5921"\w* \w covering|strong="H4372"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* tent, \w and|strong="H4872"\w* \w put|strong="H7760"\w* \w the|strong="H5921"\w* roof \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w* \w above|strong="H4605"\w* \w on|strong="H5921"\w* \w it|strong="H7760"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\v 20 \w He|strong="H5414"\w* \w took|strong="H3947"\w* \w and|strong="H3947"\w* \w put|strong="H5414"\w* \w the|strong="H5921"\w* covenant \w into|strong="H5921"\w* \w the|strong="H5921"\w* ark, \w and|strong="H3947"\w* \w set|strong="H7760"\w* \w the|strong="H5921"\w* poles \w on|strong="H5921"\w* \w the|strong="H5921"\w* ark, \w and|strong="H3947"\w* \w put|strong="H5414"\w* \w the|strong="H5921"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w* \w above|strong="H4605"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* ark. +\v 21 \w He|strong="H3068"\w* \w brought|strong="H7760"\w* \w the|strong="H5921"\w* ark \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w*, \w and|strong="H4872"\w* \w set|strong="H7760"\w* \w up|strong="H7760"\w* \w the|strong="H5921"\w* \w veil|strong="H6532"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w screen|strong="H4539"\w*, \w and|strong="H4872"\w* \w screened|strong="H5526"\w* \w the|strong="H5921"\w* ark \w of|strong="H3068"\w* \w the|strong="H5921"\w* covenant, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\v 22 \w He|strong="H5414"\w* \w put|strong="H5414"\w* \w the|strong="H5921"\w* \w table|strong="H7979"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* Tent \w of|strong="H5921"\w* \w Meeting|strong="H4150"\w*, \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w north|strong="H6828"\w* \w side|strong="H3409"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w*, \w outside|strong="H2351"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w veil|strong="H6532"\w*. +\v 23 \w He|strong="H3068"\w* \w set|strong="H6186"\w* \w the|strong="H6440"\w* \w bread|strong="H3899"\w* \w in|strong="H5921"\w* \w order|strong="H6186"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\v 24 \w He|strong="H5921"\w* \w put|strong="H7760"\w* \w the|strong="H5921"\w* lamp stand \w in|strong="H5921"\w* \w the|strong="H5921"\w* Tent \w of|strong="H5921"\w* \w Meeting|strong="H4150"\w*, \w opposite|strong="H5227"\w* \w the|strong="H5921"\w* \w table|strong="H7979"\w*, \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w south|strong="H5045"\w* \w side|strong="H3409"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w*. +\v 25 \w He|strong="H3068"\w* lit \w the|strong="H6440"\w* \w lamps|strong="H5216"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\v 26 \w He|strong="H6440"\w* \w put|strong="H7760"\w* \w the|strong="H6440"\w* \w golden|strong="H2091"\w* \w altar|strong="H4196"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* Tent \w of|strong="H6440"\w* \w Meeting|strong="H4150"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w veil|strong="H6532"\w*; +\v 27 \w and|strong="H4872"\w* \w he|strong="H3068"\w* \w burned|strong="H6999"\w* \w incense|strong="H7004"\w* \w of|strong="H3068"\w* \w sweet|strong="H5561"\w* \w spices|strong="H5561"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\v 28 \w He|strong="H7760"\w* \w put|strong="H7760"\w* \w up|strong="H7760"\w* \w the|strong="H7760"\w* \w screen|strong="H4539"\w* \w of|strong="H4908"\w* \w the|strong="H7760"\w* \w door|strong="H6607"\w* \w to|strong="H6607"\w* \w the|strong="H7760"\w* \w tabernacle|strong="H4908"\w*. +\v 29 \w He|strong="H3068"\w* \w set|strong="H7760"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w of|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, \w and|strong="H4872"\w* \w offered|strong="H5927"\w* \w on|strong="H5921"\w* \w it|strong="H7760"\w* \w the|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w* \w and|strong="H4872"\w* \w the|strong="H5921"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\v 30 \w He|strong="H8033"\w* \w set|strong="H7760"\w* \w the|strong="H5414"\w* \w basin|strong="H3595"\w* between \w the|strong="H5414"\w* Tent \w of|strong="H4325"\w* \w Meeting|strong="H4150"\w* \w and|strong="H4196"\w* \w the|strong="H5414"\w* \w altar|strong="H4196"\w*, \w and|strong="H4196"\w* \w put|strong="H5414"\w* \w water|strong="H4325"\w* \w therein|strong="H8033"\w*, \w with|strong="H7364"\w* \w which|strong="H8033"\w* \w to|strong="H5414"\w* \w wash|strong="H7364"\w*. +\v 31 \w Moses|strong="H4872"\w*, Aaron, \w and|strong="H1121"\w* \w his|strong="H7364"\w* \w sons|strong="H1121"\w* \w washed|strong="H7364"\w* \w their|strong="H7364"\w* \w hands|strong="H3027"\w* \w and|strong="H1121"\w* \w their|strong="H7364"\w* \w feet|strong="H7272"\w* \w there|strong="H4480"\w*. +\v 32 \w When|strong="H3068"\w* \w they|strong="H3068"\w* \w went|strong="H4872"\w* into \w the|strong="H3068"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, \w and|strong="H4872"\w* \w when|strong="H3068"\w* \w they|strong="H3068"\w* \w came|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w altar|strong="H4196"\w*, \w they|strong="H3068"\w* \w washed|strong="H7364"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\v 33 \w He|strong="H5414"\w* \w raised|strong="H6965"\w* \w up|strong="H6965"\w* \w the|strong="H5414"\w* \w court|strong="H2691"\w* \w around|strong="H5439"\w* \w the|strong="H5414"\w* \w tabernacle|strong="H4908"\w* \w and|strong="H6965"\w* \w the|strong="H5414"\w* \w altar|strong="H4196"\w*, \w and|strong="H6965"\w* \w set|strong="H5414"\w* \w up|strong="H6965"\w* \w the|strong="H5414"\w* \w screen|strong="H4539"\w* \w of|strong="H8179"\w* \w the|strong="H5414"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* \w the|strong="H5414"\w* \w court|strong="H2691"\w*. \w So|strong="H5414"\w* \w Moses|strong="H4872"\w* \w finished|strong="H3615"\w* \w the|strong="H5414"\w* \w work|strong="H4399"\w*. +\p +\v 34 \w Then|strong="H3068"\w* \w the|strong="H3068"\w* \w cloud|strong="H6051"\w* \w covered|strong="H3680"\w* \w the|strong="H3068"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w filled|strong="H4390"\w* \w the|strong="H3068"\w* \w tabernacle|strong="H4908"\w*. +\v 35 \w Moses|strong="H4872"\w* wasn’t \w able|strong="H3201"\w* \w to|strong="H3201"\w* enter \w into|strong="H5921"\w* \w the|strong="H5921"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, \w because|strong="H3588"\w* \w the|strong="H5921"\w* \w cloud|strong="H6051"\w* stayed \w on|strong="H5921"\w* \w it|strong="H5921"\w*, \w and|strong="H4872"\w* \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w filled|strong="H4390"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w*. +\v 36 \w When|strong="H1121"\w* \w the|strong="H3605"\w* \w cloud|strong="H6051"\w* \w was|strong="H3478"\w* \w taken|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5265"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w*, \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w went|strong="H5927"\w* \w onward|strong="H5265"\w*, \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w journeys|strong="H4550"\w*; +\v 37 \w but|strong="H3808"\w* if \w the|strong="H3117"\w* \w cloud|strong="H6051"\w* wasn’t \w taken|strong="H5927"\w* \w up|strong="H5927"\w*, \w then|strong="H5927"\w* \w they|strong="H3117"\w* didn’t travel \w until|strong="H5704"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w it|strong="H5927"\w* \w was|strong="H3117"\w* \w taken|strong="H5927"\w* \w up|strong="H5927"\w*. +\v 38 \w For|strong="H3588"\w* \w the|strong="H3605"\w* \w cloud|strong="H6051"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w* \w by|strong="H5921"\w* \w day|strong="H3119"\w*, \w and|strong="H3478"\w* \w there|strong="H1961"\w* \w was|strong="H3068"\w* fire \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w cloud|strong="H6051"\w* \w by|strong="H5921"\w* \w night|strong="H3915"\w*, \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w journeys|strong="H4550"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/04-LEVeng-web.usfm b/bibles/eng-web_usfm/04-LEVeng-web.usfm new file mode 100644 index 0000000..8aae116 --- /dev/null +++ b/bibles/eng-web_usfm/04-LEVeng-web.usfm @@ -0,0 +1,1169 @@ +\id LEV World English Bible (WEB) +\ide UTF-8 +\h Leviticus +\toc1 The Third Book of Mosis, Commonly Called Leviticus +\toc2 Leviticus +\toc3 Lev +\mt2 The Third Book of Moses, +\mt3 Commonly Called +\mt1 Leviticus +\c 1 +\p +\v 1 \w Yahweh|strong="H3068"\w*\f + \fr 1:1 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w called|strong="H7121"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w and|strong="H4872"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H7121"\w* \w from|strong="H3068"\w* \w the|strong="H3068"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w tell|strong="H1696"\w* \w them|strong="H7126"\w*, ‘\w When|strong="H3588"\w* \w anyone|strong="H3588"\w* \w of|strong="H1121"\w* \w you|strong="H3588"\w* \w offers|strong="H7126"\w* \w an|strong="H7126"\w* \w offering|strong="H7133"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*, \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w your|strong="H3068"\w* \w offering|strong="H7133"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* livestock, \w from|strong="H4480"\w* \w the|strong="H3588"\w* \w herd|strong="H1241"\w* \w and|strong="H1121"\w* \w from|strong="H4480"\w* \w the|strong="H3588"\w* \w flock|strong="H6629"\w*. +\p +\v 3 “‘If \w his|strong="H3068"\w* \w offering|strong="H5930"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w herd|strong="H1241"\w*, \w he|strong="H3068"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w a|strong="H3068"\w* \w male|strong="H2145"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*. \w He|strong="H3068"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w it|strong="H7126"\w* \w at|strong="H3068"\w* \w the|strong="H6440"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w accepted|strong="H7522"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 4 \w He|strong="H3027"\w* \w shall|strong="H3027"\w* \w lay|strong="H5564"\w* \w his|strong="H5921"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w and|strong="H3027"\w* \w it|strong="H5921"\w* \w shall|strong="H3027"\w* \w be|strong="H3027"\w* \w accepted|strong="H7521"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w* \w to|strong="H5921"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 5 \w He|strong="H3068"\w* \w shall|strong="H3548"\w* \w kill|strong="H7819"\w* \w the|strong="H6440"\w* \w bull|strong="H1241"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. Aaron’s \w sons|strong="H1121"\w*, \w the|strong="H6440"\w* \w priests|strong="H3548"\w*, \w shall|strong="H3548"\w* \w present|strong="H7126"\w* \w the|strong="H6440"\w* \w blood|strong="H1818"\w* \w and|strong="H1121"\w* \w sprinkle|strong="H2236"\w* \w the|strong="H6440"\w* \w blood|strong="H1818"\w* \w around|strong="H5439"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w* \w that|strong="H3068"\w* \w is|strong="H3068"\w* \w at|strong="H5921"\w* \w the|strong="H6440"\w* \w door|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*. +\v 6 \w He|strong="H5408"\w* shall \w skin|strong="H6584"\w* \w the|strong="H6584"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w and|strong="H5930"\w* \w cut|strong="H5408"\w* it into \w pieces|strong="H5409"\w*. +\v 7 \w The|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Aaron|strong="H6186"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w put|strong="H5414"\w* fire \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*, \w and|strong="H1121"\w* \w lay|strong="H5414"\w* \w wood|strong="H6086"\w* \w in|strong="H5921"\w* \w order|strong="H6186"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* fire; +\v 8 \w and|strong="H1121"\w* \w Aaron|strong="H6186"\w*’s \w sons|strong="H1121"\w*, \w the|strong="H5921"\w* \w priests|strong="H3548"\w*, \w shall|strong="H3548"\w* \w lay|strong="H1121"\w* \w the|strong="H5921"\w* \w pieces|strong="H5409"\w*, \w the|strong="H5921"\w* \w head|strong="H7218"\w*, \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w fat|strong="H6309"\w* \w in|strong="H5921"\w* \w order|strong="H6186"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wood|strong="H6086"\w* \w that|strong="H3548"\w* \w is|strong="H1121"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* fire \w which|strong="H4196"\w* \w is|strong="H1121"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*; +\v 9 \w but|strong="H3605"\w* \w he|strong="H3068"\w* \w shall|strong="H3548"\w* \w wash|strong="H7364"\w* \w its|strong="H3605"\w* innards \w and|strong="H3068"\w* \w its|strong="H3605"\w* \w legs|strong="H3767"\w* \w with|strong="H3068"\w* \w water|strong="H4325"\w*. \w The|strong="H3605"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w burn|strong="H6999"\w* \w all|strong="H3605"\w* \w of|strong="H3068"\w* \w it|strong="H7130"\w* \w on|strong="H3068"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*, \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w an|strong="H3068"\w* \w offering|strong="H5930"\w* \w made|strong="H3068"\w* \w by|strong="H3068"\w* fire, \w of|strong="H3068"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 10 “‘If \w his|strong="H7126"\w* \w offering|strong="H5930"\w* \w is|strong="H7133"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w flock|strong="H6629"\w*, \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w sheep|strong="H6629"\w* \w or|strong="H4480"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w goats|strong="H5795"\w*, \w for|strong="H4480"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w he|strong="H4480"\w* \w shall|strong="H8549"\w* \w offer|strong="H7126"\w* \w a|strong="H3068"\w* \w male|strong="H2145"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*. +\v 11 \w He|strong="H3068"\w* \w shall|strong="H3548"\w* \w kill|strong="H7819"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w north|strong="H6828"\w* \w side|strong="H5439"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. Aaron’s \w sons|strong="H1121"\w*, \w the|strong="H6440"\w* \w priests|strong="H3548"\w*, \w shall|strong="H3548"\w* \w sprinkle|strong="H2236"\w* \w its|strong="H5921"\w* \w blood|strong="H1818"\w* \w around|strong="H5439"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w*. +\v 12 \w He|strong="H5921"\w* \w shall|strong="H3548"\w* \w cut|strong="H5408"\w* \w it|strong="H5921"\w* \w into|strong="H5921"\w* \w its|strong="H5921"\w* \w pieces|strong="H5409"\w*, \w with|strong="H5921"\w* \w its|strong="H5921"\w* \w head|strong="H7218"\w* \w and|strong="H6086"\w* \w its|strong="H5921"\w* \w fat|strong="H6309"\w*. \w The|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w lay|strong="H6186"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w order|strong="H6186"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wood|strong="H6086"\w* \w that|strong="H3548"\w* \w is|strong="H7218"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* fire \w which|strong="H4196"\w* \w is|strong="H7218"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*, +\v 13 \w but|strong="H1931"\w* \w the|strong="H3605"\w* innards \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w legs|strong="H3767"\w* \w he|strong="H1931"\w* \w shall|strong="H3548"\w* \w wash|strong="H7364"\w* \w with|strong="H3068"\w* \w water|strong="H4325"\w*. \w The|strong="H3605"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w offer|strong="H7126"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w*, \w and|strong="H3068"\w* \w burn|strong="H6999"\w* \w it|strong="H1931"\w* \w on|strong="H3068"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*. \w It|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w an|strong="H7126"\w* \w offering|strong="H5930"\w* \w made|strong="H3068"\w* \w by|strong="H3068"\w* fire, \w of|strong="H3068"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 14 “‘\w If|strong="H1121"\w* \w his|strong="H3068"\w* \w offering|strong="H5930"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w of|strong="H1121"\w* \w birds|strong="H5775"\w*, \w then|strong="H7126"\w* \w he|strong="H3068"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w his|strong="H3068"\w* \w offering|strong="H5930"\w* \w from|strong="H4480"\w* \w turtledoves|strong="H8449"\w* \w or|strong="H1121"\w* \w of|strong="H1121"\w* \w young|strong="H1121"\w* \w pigeons|strong="H3123"\w*. +\v 15 \w The|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w bring|strong="H7126"\w* \w it|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*, \w and|strong="H3548"\w* \w wring|strong="H4454"\w* \w off|strong="H5921"\w* \w its|strong="H5921"\w* \w head|strong="H7218"\w*, \w and|strong="H3548"\w* \w burn|strong="H6999"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*; \w and|strong="H3548"\w* \w its|strong="H5921"\w* \w blood|strong="H1818"\w* \w shall|strong="H3548"\w* \w be|strong="H1818"\w* \w drained|strong="H4680"\w* \w out|strong="H4680"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w side|strong="H7023"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*; +\v 16 \w and|strong="H4196"\w* \w he|strong="H4196"\w* \w shall|strong="H6924"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w* \w its|strong="H5493"\w* \w crop|strong="H4760"\w* \w and|strong="H4196"\w* \w its|strong="H5493"\w* \w feathers|strong="H5133"\w*, \w and|strong="H4196"\w* \w cast|strong="H7993"\w* \w it|strong="H7993"\w* beside \w the|strong="H5493"\w* \w altar|strong="H4196"\w* \w on|strong="H4725"\w* \w the|strong="H5493"\w* \w east|strong="H6924"\w* \w part|strong="H6924"\w*, \w in|strong="H5493"\w* \w the|strong="H5493"\w* \w place|strong="H4725"\w* \w of|strong="H4196"\w* \w the|strong="H5493"\w* \w ashes|strong="H1880"\w*. +\v 17 \w He|strong="H1931"\w* \w shall|strong="H3548"\w* \w tear|strong="H8156"\w* \w it|strong="H1931"\w* \w by|strong="H5921"\w* \w its|strong="H5921"\w* \w wings|strong="H3671"\w*, \w but|strong="H3808"\w* \w shall|strong="H3548"\w* \w not|strong="H3808"\w* divide \w it|strong="H1931"\w* apart. \w The|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w burn|strong="H6999"\w* \w it|strong="H1931"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*, \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wood|strong="H6086"\w* \w that|strong="H1931"\w* \w is|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* fire. \w It|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w an|strong="H3068"\w* \w offering|strong="H5930"\w* \w made|strong="H3068"\w* \w by|strong="H5921"\w* fire, \w of|strong="H3068"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\c 2 +\p +\v 1 “‘\w When|strong="H3588"\w* \w anyone|strong="H5315"\w* \w offers|strong="H7126"\w* \w an|strong="H7126"\w* \w offering|strong="H4503"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w his|strong="H5414"\w* \w offering|strong="H4503"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w of|strong="H3068"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w*. \w He|strong="H3588"\w* \w shall|strong="H3068"\w* \w pour|strong="H3332"\w* \w oil|strong="H8081"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w*, \w and|strong="H3068"\w* \w put|strong="H5414"\w* \w frankincense|strong="H3828"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w*. +\v 2 \w He|strong="H8033"\w* \w shall|strong="H3548"\w* bring \w it|strong="H5921"\w* \w to|strong="H3068"\w* Aaron’s \w sons|strong="H1121"\w*, \w the|strong="H3605"\w* \w priests|strong="H3548"\w*. \w He|strong="H8033"\w* \w shall|strong="H3548"\w* \w take|strong="H7061"\w* \w his|strong="H3605"\w* \w handful|strong="H7062"\w* \w of|strong="H1121"\w* \w its|strong="H3605"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w its|strong="H3605"\w* \w oil|strong="H8081"\w*, \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w frankincense|strong="H3828"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w burn|strong="H6999"\w* \w its|strong="H3605"\w* memorial \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*, \w an|strong="H8033"\w* \w offering|strong="H6999"\w* \w made|strong="H3068"\w* \w by|strong="H5921"\w* fire, \w of|strong="H1121"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 3 \w That|strong="H3068"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w left|strong="H3498"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* Aaron’s \w and|strong="H1121"\w* \w his|strong="H3068"\w* \w sons|strong="H1121"\w*’. \w It|strong="H3068"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w part|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w offerings|strong="H4503"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H3068"\w* \w by|strong="H3068"\w* fire. +\p +\v 4 “‘\w When|strong="H3588"\w* \w you|strong="H3588"\w* \w offer|strong="H7126"\w* \w an|strong="H7126"\w* \w offering|strong="H4503"\w* \w of|strong="H4503"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w baked|strong="H3989"\w* \w in|strong="H4503"\w* \w the|strong="H3588"\w* \w oven|strong="H8574"\w*, \w it|strong="H7126"\w* \w shall|strong="H7133"\w* \w be|strong="H8081"\w* \w unleavened|strong="H4682"\w* \w cakes|strong="H2471"\w* \w of|strong="H4503"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w*, \w or|strong="H4682"\w* \w unleavened|strong="H4682"\w* \w wafers|strong="H7550"\w* \w anointed|strong="H4886"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w*. +\v 5 \w If|strong="H1961"\w* \w your|strong="H5921"\w* \w offering|strong="H4503"\w* \w is|strong="H1961"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w made|strong="H1961"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w griddle|strong="H4227"\w*, \w it|strong="H5921"\w* \w shall|strong="H7133"\w* \w be|strong="H1961"\w* \w of|strong="H5921"\w* \w unleavened|strong="H4682"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w*, \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w*. +\v 6 \w You|strong="H5921"\w* \w shall|strong="H1931"\w* cut \w it|strong="H1931"\w* \w in|strong="H5921"\w* \w pieces|strong="H6595"\w*, \w and|strong="H8081"\w* \w pour|strong="H3332"\w* \w oil|strong="H8081"\w* \w on|strong="H5921"\w* \w it|strong="H1931"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*. +\v 7 If \w your|strong="H6213"\w* \w offering|strong="H4503"\w* \w is|strong="H8081"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w of|strong="H4503"\w* \w the|strong="H6213"\w* \w pan|strong="H4802"\w*, \w it|strong="H6213"\w* \w shall|strong="H6213"\w* \w be|strong="H8081"\w* \w made|strong="H6213"\w* \w of|strong="H4503"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w with|strong="H6213"\w* \w oil|strong="H8081"\w*. +\v 8 \w You|strong="H6213"\w* \w shall|strong="H3548"\w* \w bring|strong="H7126"\w* \w the|strong="H6213"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w that|strong="H3068"\w* \w is|strong="H3068"\w* \w made|strong="H6213"\w* \w of|strong="H3068"\w* \w these|strong="H6213"\w* things \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w It|strong="H7126"\w* \w shall|strong="H3548"\w* \w be|strong="H3068"\w* \w presented|strong="H7126"\w* \w to|strong="H3068"\w* \w the|strong="H6213"\w* \w priest|strong="H3548"\w*, \w and|strong="H3068"\w* \w he|strong="H6213"\w* \w shall|strong="H3548"\w* \w bring|strong="H7126"\w* \w it|strong="H7126"\w* \w to|strong="H3068"\w* \w the|strong="H6213"\w* \w altar|strong="H4196"\w*. +\v 9 \w The|strong="H3068"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w take|strong="H7311"\w* \w from|strong="H4480"\w* \w the|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w its|strong="H4480"\w* memorial, \w and|strong="H3068"\w* \w shall|strong="H3548"\w* \w burn|strong="H6999"\w* \w it|strong="H3068"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w altar|strong="H4196"\w*, \w an|strong="H4480"\w* \w offering|strong="H4503"\w* \w made|strong="H3068"\w* \w by|strong="H3068"\w* fire, \w of|strong="H3068"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 10 \w That|strong="H3068"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w left|strong="H3498"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* Aaron’s \w and|strong="H1121"\w* \w his|strong="H3068"\w* \w sons|strong="H1121"\w*’. \w It|strong="H3068"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w part|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w offerings|strong="H4503"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H3068"\w* \w by|strong="H3068"\w* fire. +\p +\v 11 “‘\w No|strong="H3808"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w which|strong="H3068"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w shall|strong="H3068"\w* \w be|strong="H3808"\w* \w made|strong="H6213"\w* \w with|strong="H3068"\w* \w yeast|strong="H7603"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w burn|strong="H6999"\w* \w no|strong="H3808"\w* \w yeast|strong="H7603"\w*, \w nor|strong="H3808"\w* \w any|strong="H3605"\w* \w honey|strong="H1706"\w*, \w as|strong="H6213"\w* \w an|strong="H6213"\w* \w offering|strong="H4503"\w* \w made|strong="H6213"\w* \w by|strong="H3068"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 12 \w As|strong="H3068"\w* \w an|strong="H7126"\w* \w offering|strong="H7133"\w* \w of|strong="H3068"\w* \w first|strong="H7225"\w* \w fruits|strong="H7225"\w* \w you|strong="H3808"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w them|strong="H7126"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w but|strong="H3808"\w* \w they|strong="H3068"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w rise|strong="H5927"\w* \w up|strong="H5927"\w* \w as|strong="H3068"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w altar|strong="H4196"\w*. +\v 13 \w Every|strong="H3605"\w* \w offering|strong="H4503"\w* \w of|strong="H5921"\w* \w your|strong="H3605"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w you|strong="H3605"\w* \w shall|strong="H3808"\w* \w season|strong="H4414"\w* \w with|strong="H1285"\w* \w salt|strong="H4417"\w*. \w You|strong="H3605"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w allow|strong="H4414"\w* \w the|strong="H3605"\w* \w salt|strong="H4417"\w* \w of|strong="H5921"\w* \w the|strong="H3605"\w* \w covenant|strong="H1285"\w* \w of|strong="H5921"\w* \w your|strong="H3605"\w* \w God|strong="H3808"\w*\f + \fr 2:13 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w to|strong="H5921"\w* \w be|strong="H3808"\w* \w lacking|strong="H7673"\w* \w from|strong="H5921"\w* \w your|strong="H3605"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*. \w With|strong="H1285"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w offerings|strong="H4503"\w* \w you|strong="H3605"\w* \w shall|strong="H3808"\w* \w offer|strong="H7126"\w* \w salt|strong="H4417"\w*. +\p +\v 14 “‘If \w you|strong="H7126"\w* \w offer|strong="H7126"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w of|strong="H3068"\w* \w first|strong="H1061"\w* \w fruits|strong="H1061"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w you|strong="H7126"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w first|strong="H1061"\w* \w fruits|strong="H1061"\w* \w fresh|strong="H3759"\w* heads \w of|strong="H3068"\w* \w grain|strong="H3759"\w* \w parched|strong="H7033"\w* \w with|strong="H3068"\w* fire \w and|strong="H3068"\w* crushed. +\v 15 \w You|strong="H5414"\w* \w shall|strong="H1931"\w* \w put|strong="H5414"\w* \w oil|strong="H8081"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w* \w and|strong="H8081"\w* \w lay|strong="H5414"\w* \w frankincense|strong="H3828"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w*. \w It|strong="H5414"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*. +\v 16 \w The|strong="H3605"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w burn|strong="H6999"\w* \w as|strong="H3068"\w* \w its|strong="H3605"\w* memorial \w part|strong="H5921"\w* \w of|strong="H3068"\w* \w its|strong="H3605"\w* crushed \w grain|strong="H3605"\w* \w and|strong="H3068"\w* \w part|strong="H5921"\w* \w of|strong="H3068"\w* \w its|strong="H3605"\w* \w oil|strong="H8081"\w*, \w along|strong="H5921"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w frankincense|strong="H3828"\w*. \w It|strong="H5921"\w* \w is|strong="H3068"\w* \w an|strong="H3068"\w* \w offering|strong="H6999"\w* \w made|strong="H3068"\w* \w by|strong="H5921"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\c 3 +\p +\v 1 “‘\w If|strong="H1931"\w* \w his|strong="H3068"\w* \w offering|strong="H7133"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w if|strong="H1931"\w* \w he|strong="H1931"\w* \w offers|strong="H7126"\w* \w it|strong="H1931"\w* \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w herd|strong="H1241"\w*, \w whether|strong="H4480"\w* \w male|strong="H2145"\w* \w or|strong="H4480"\w* \w female|strong="H5347"\w*, \w he|strong="H1931"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w it|strong="H1931"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 2 \w He|strong="H3027"\w* \w shall|strong="H3548"\w* \w lay|strong="H5564"\w* \w his|strong="H5921"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H1121"\w* \w his|strong="H5921"\w* \w offering|strong="H7133"\w*, \w and|strong="H1121"\w* \w kill|strong="H7819"\w* \w it|strong="H5921"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w door|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*. Aaron’s \w sons|strong="H1121"\w*, \w the|strong="H5921"\w* \w priests|strong="H3548"\w*, \w shall|strong="H3548"\w* \w sprinkle|strong="H2236"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w around|strong="H5439"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*. +\v 3 \w He|strong="H3068"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w an|strong="H7126"\w* \w offering|strong="H8002"\w* \w made|strong="H3068"\w* \w by|strong="H5921"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w The|strong="H3605"\w* \w fat|strong="H2459"\w* \w that|strong="H3605"\w* \w covers|strong="H3680"\w* \w the|strong="H3605"\w* innards, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fat|strong="H2459"\w* \w that|strong="H3605"\w* \w is|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* innards, +\v 4 \w and|strong="H8147"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w kidneys|strong="H3629"\w*, \w and|strong="H8147"\w* \w the|strong="H5921"\w* \w fat|strong="H2459"\w* \w that|strong="H2459"\w* \w is|strong="H3516"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, which \w is|strong="H3516"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w loins|strong="H3689"\w*, \w and|strong="H8147"\w* \w the|strong="H5921"\w* cover \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w liver|strong="H3516"\w*, \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w kidneys|strong="H3629"\w*, \w he|strong="H8147"\w* \w shall|strong="H8147"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w*. +\v 5 Aaron’s \w sons|strong="H1121"\w* \w shall|strong="H3068"\w* \w burn|strong="H6999"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wood|strong="H6086"\w* \w that|strong="H3068"\w* \w is|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* fire: \w it|strong="H5921"\w* \w is|strong="H3068"\w* \w an|strong="H3068"\w* \w offering|strong="H5930"\w* \w made|strong="H3068"\w* \w by|strong="H5921"\w* fire, \w of|strong="H1121"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 6 “‘If \w his|strong="H3068"\w* \w offering|strong="H7133"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w from|strong="H4480"\w* \w the|strong="H3068"\w* \w flock|strong="H6629"\w*, \w either|strong="H4480"\w* \w male|strong="H2145"\w* \w or|strong="H4480"\w* \w female|strong="H5347"\w*, \w he|strong="H3068"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w it|strong="H7126"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*. +\v 7 \w If|strong="H1931"\w* \w he|strong="H1931"\w* \w offers|strong="H7126"\w* \w a|strong="H3068"\w* \w lamb|strong="H3775"\w* \w for|strong="H6440"\w* \w his|strong="H3068"\w* \w offering|strong="H7133"\w*, \w then|strong="H7126"\w* \w he|strong="H1931"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w it|strong="H1931"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*; +\v 8 \w and|strong="H1121"\w* \w he|strong="H3027"\w* \w shall|strong="H1121"\w* \w lay|strong="H5564"\w* \w his|strong="H6440"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w head|strong="H7218"\w* \w of|strong="H1121"\w* \w his|strong="H6440"\w* \w offering|strong="H7133"\w*, \w and|strong="H1121"\w* \w kill|strong="H7819"\w* \w it|strong="H5921"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*. Aaron’s \w sons|strong="H1121"\w* \w shall|strong="H1121"\w* \w sprinkle|strong="H2236"\w* \w its|strong="H5921"\w* \w blood|strong="H1818"\w* \w around|strong="H5439"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w*. +\v 9 \w He|strong="H3068"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w from|strong="H5493"\w* \w the|strong="H3605"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w an|strong="H7126"\w* \w offering|strong="H8002"\w* \w made|strong="H3068"\w* \w by|strong="H5921"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*; \w its|strong="H3605"\w* \w fat|strong="H2459"\w*, \w the|strong="H3605"\w* \w entire|strong="H3605"\w* tail \w fat|strong="H2459"\w*, \w he|strong="H3068"\w* \w shall|strong="H3068"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w* \w close|strong="H5980"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w backbone|strong="H6096"\w*; \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w fat|strong="H2459"\w* \w that|strong="H3605"\w* \w covers|strong="H3680"\w* \w the|strong="H3605"\w* \w entrails|strong="H7130"\w*, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fat|strong="H2459"\w* \w that|strong="H3605"\w* \w is|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w entrails|strong="H7130"\w*, +\v 10 \w and|strong="H8147"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w kidneys|strong="H3629"\w*, \w and|strong="H8147"\w* \w the|strong="H5921"\w* \w fat|strong="H2459"\w* \w that|strong="H2459"\w* \w is|strong="H3516"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, which \w is|strong="H3516"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w loins|strong="H3689"\w*, \w and|strong="H8147"\w* \w the|strong="H5921"\w* cover \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w liver|strong="H3516"\w*, \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w kidneys|strong="H3629"\w*, \w he|strong="H8147"\w* \w shall|strong="H8147"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w*. +\v 11 \w The|strong="H3068"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w burn|strong="H6999"\w* \w it|strong="H3068"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w altar|strong="H4196"\w*: \w it|strong="H3068"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w food|strong="H3899"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w offering|strong="H6999"\w* \w made|strong="H3068"\w* \w by|strong="H3068"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 12 “‘If \w his|strong="H3068"\w* \w offering|strong="H7133"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w goat|strong="H5795"\w*, \w then|strong="H7126"\w* \w he|strong="H3068"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w it|strong="H7126"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 13 \w He|strong="H3027"\w* \w shall|strong="H1121"\w* \w lay|strong="H5564"\w* \w his|strong="H6440"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w its|strong="H5921"\w* \w head|strong="H7218"\w*, \w and|strong="H1121"\w* \w kill|strong="H7819"\w* \w it|strong="H5921"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*; \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w shall|strong="H1121"\w* \w sprinkle|strong="H2236"\w* \w its|strong="H5921"\w* \w blood|strong="H1818"\w* \w around|strong="H5439"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w*. +\v 14 \w He|strong="H3068"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w from|strong="H4480"\w* \w it|strong="H5921"\w* \w as|strong="H3068"\w* \w his|strong="H3605"\w* \w offering|strong="H7133"\w*, \w an|strong="H7126"\w* \w offering|strong="H7133"\w* \w made|strong="H3068"\w* \w by|strong="H5921"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*; \w the|strong="H3605"\w* \w fat|strong="H2459"\w* \w that|strong="H3605"\w* \w covers|strong="H3680"\w* \w the|strong="H3605"\w* innards, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fat|strong="H2459"\w* \w that|strong="H3605"\w* \w is|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* innards, +\v 15 \w and|strong="H8147"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w kidneys|strong="H3629"\w*, \w and|strong="H8147"\w* \w the|strong="H5921"\w* \w fat|strong="H2459"\w* \w that|strong="H2459"\w* \w is|strong="H3516"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, which \w is|strong="H3516"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w loins|strong="H3689"\w*, \w and|strong="H8147"\w* \w the|strong="H5921"\w* cover \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w liver|strong="H3516"\w*, \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w kidneys|strong="H3629"\w*, \w he|strong="H8147"\w* \w shall|strong="H8147"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w*. +\v 16 \w The|strong="H3605"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w burn|strong="H6999"\w* \w them|strong="H4196"\w* \w on|strong="H3068"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*: \w it|strong="H3068"\w* \w is|strong="H3068"\w* \w the|strong="H3605"\w* \w food|strong="H3899"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w offering|strong="H6999"\w* \w made|strong="H3068"\w* \w by|strong="H3068"\w* fire, \w for|strong="H3068"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w*; \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fat|strong="H2459"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s. +\p +\v 17 “‘\w It|strong="H3808"\w* \w shall|strong="H3808"\w* \w be|strong="H3808"\w* \w a|strong="H3068"\w* \w perpetual|strong="H5769"\w* \w statute|strong="H2708"\w* \w throughout|strong="H3605"\w* \w your|strong="H3605"\w* \w generations|strong="H1755"\w* \w in|strong="H3808"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w dwellings|strong="H4186"\w*, \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w shall|strong="H3808"\w* eat \w neither|strong="H3808"\w* \w fat|strong="H2459"\w* \w nor|strong="H3808"\w* \w blood|strong="H1818"\w*.’” +\c 4 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w saying|strong="H1696"\w*, ‘\w If|strong="H3588"\w* \w anyone|strong="H3605"\w* \w sins|strong="H2398"\w* \w unintentionally|strong="H7684"\w*, \w in|strong="H3478"\w* \w any|strong="H3605"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w things|strong="H3605"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H4687"\w* \w not|strong="H3808"\w* \w to|strong="H1696"\w* \w be|strong="H3808"\w* \w done|strong="H6213"\w*, \w and|strong="H1121"\w* \w does|strong="H6213"\w* \w any|strong="H3605"\w* \w one|strong="H3605"\w* \w of|strong="H1121"\w* \w them|strong="H6213"\w*, +\v 3 \w if|strong="H2398"\w* \w the|strong="H5921"\w* \w anointed|strong="H4899"\w* \w priest|strong="H3548"\w* \w sins|strong="H2403"\w* \w so|strong="H7126"\w* \w as|strong="H3068"\w* \w to|strong="H3068"\w* \w bring|strong="H7126"\w* guilt \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w*, \w then|strong="H7126"\w* let \w him|strong="H5921"\w* \w offer|strong="H7126"\w* \w for|strong="H5921"\w* \w his|strong="H3068"\w* \w sin|strong="H2403"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w sinned|strong="H2398"\w* \w a|strong="H3068"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*. +\v 4 \w He|strong="H3068"\w* \w shall|strong="H3068"\w* bring \w the|strong="H6440"\w* \w bull|strong="H6499"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w shall|strong="H3068"\w* \w lay|strong="H5564"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w head|strong="H7218"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w bull|strong="H6499"\w*, \w and|strong="H3068"\w* \w kill|strong="H7819"\w* \w the|strong="H6440"\w* \w bull|strong="H6499"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 5 \w The|strong="H3947"\w* \w anointed|strong="H4899"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* some \w of|strong="H1818"\w* \w the|strong="H3947"\w* \w blood|strong="H1818"\w* \w of|strong="H1818"\w* \w the|strong="H3947"\w* \w bull|strong="H6499"\w*, \w and|strong="H3548"\w* \w bring|strong="H3947"\w* \w it|strong="H3947"\w* \w to|strong="H4150"\w* \w the|strong="H3947"\w* Tent \w of|strong="H1818"\w* \w Meeting|strong="H4150"\w*. +\v 6 \w The|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w dip|strong="H2881"\w* \w his|strong="H3068"\w* finger \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w blood|strong="H1818"\w*, \w and|strong="H3068"\w* \w sprinkle|strong="H5137"\w* \w some|strong="H4480"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w blood|strong="H1818"\w* \w seven|strong="H7651"\w* \w times|strong="H6471"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w veil|strong="H6532"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w sanctuary|strong="H6944"\w*. +\v 7 \w The|strong="H3605"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w put|strong="H5414"\w* \w some|strong="H4480"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w blood|strong="H1818"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w horns|strong="H7161"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w of|strong="H3068"\w* \w sweet|strong="H5561"\w* \w incense|strong="H7004"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*; \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w shall|strong="H3548"\w* \w pour|strong="H8210"\w* \w out|strong="H8210"\w* \w the|strong="H3605"\w* rest \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w blood|strong="H1818"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w bull|strong="H6499"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w base|strong="H3247"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w of|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*. +\v 8 \w He|strong="H3605"\w* shall \w take|strong="H7311"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fat|strong="H2459"\w* \w of|strong="H4480"\w* \w the|strong="H3605"\w* \w bull|strong="H6499"\w* \w of|strong="H4480"\w* \w the|strong="H3605"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w* \w from|strong="H4480"\w* \w it|strong="H5921"\w*: \w the|strong="H3605"\w* \w fat|strong="H2459"\w* \w that|strong="H3605"\w* \w covers|strong="H3680"\w* \w the|strong="H3605"\w* innards, \w and|strong="H6499"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fat|strong="H2459"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* innards, +\v 9 \w and|strong="H8147"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w kidneys|strong="H3629"\w*, \w and|strong="H8147"\w* \w the|strong="H5921"\w* \w fat|strong="H2459"\w* \w that|strong="H2459"\w* \w is|strong="H3516"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, which \w is|strong="H3516"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w loins|strong="H3689"\w*, \w and|strong="H8147"\w* \w the|strong="H5921"\w* cover \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w liver|strong="H3516"\w*, \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w kidneys|strong="H3629"\w*, \w he|strong="H8147"\w* \w shall|strong="H8147"\w* \w remove|strong="H5493"\w*, +\v 10 \w as|strong="H4196"\w* \w it|strong="H5921"\w* \w is|strong="H3548"\w* \w removed|strong="H7311"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w bull|strong="H7794"\w* \w of|strong="H4196"\w* \w the|strong="H5921"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H4196"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*. \w The|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w burn|strong="H6999"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w of|strong="H4196"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*. +\v 11 \w He|strong="H3605"\w* \w shall|strong="H1320"\w* carry \w the|strong="H3605"\w* \w bull|strong="H6499"\w*’s \w skin|strong="H5785"\w*, \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w meat|strong="H1320"\w*, \w with|strong="H5921"\w* \w its|strong="H3605"\w* \w head|strong="H7218"\w*, \w and|strong="H7218"\w* \w with|strong="H5921"\w* \w its|strong="H3605"\w* \w legs|strong="H3767"\w*, \w its|strong="H3605"\w* innards, \w and|strong="H7218"\w* \w its|strong="H3605"\w* \w dung|strong="H6569"\w* +\v 12 —\w all|strong="H3605"\w* \w the|strong="H3605"\w* rest \w of|strong="H4264"\w* \w the|strong="H3605"\w* \w bull|strong="H6499"\w*—\w outside|strong="H2351"\w* \w of|strong="H4264"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w to|strong="H3318"\w* \w a|strong="H3068"\w* \w clean|strong="H2889"\w* \w place|strong="H4725"\w* \w where|strong="H4725"\w* \w the|strong="H3605"\w* \w ashes|strong="H1880"\w* \w are|strong="H1880"\w* \w poured|strong="H8211"\w* \w out|strong="H3318"\w*, \w and|strong="H6086"\w* \w burn|strong="H8313"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w wood|strong="H6086"\w* \w with|strong="H8313"\w* fire. \w It|strong="H5921"\w* \w shall|strong="H2889"\w* \w be|strong="H6086"\w* \w burned|strong="H8313"\w* \w where|strong="H4725"\w* \w the|strong="H3605"\w* \w ashes|strong="H1880"\w* \w are|strong="H1880"\w* \w poured|strong="H8211"\w* \w out|strong="H3318"\w*. +\p +\v 13 “‘If \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* sins, \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w thing|strong="H1697"\w* \w is|strong="H3068"\w* \w hidden|strong="H5956"\w* \w from|strong="H3478"\w* \w the|strong="H3605"\w* \w eyes|strong="H5869"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w*, \w and|strong="H3478"\w* \w they|strong="H3068"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w any|strong="H3605"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w things|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H4687"\w* \w not|strong="H3808"\w* \w to|strong="H3478"\w* \w be|strong="H3808"\w* \w done|strong="H6213"\w*, \w and|strong="H3478"\w* \w are|strong="H3478"\w* guilty; +\v 14 \w when|strong="H1121"\w* \w the|strong="H6440"\w* \w sin|strong="H2403"\w* \w in|strong="H5921"\w* \w which|strong="H6951"\w* \w they|strong="H5921"\w* \w have|strong="H3045"\w* \w sinned|strong="H2398"\w* \w is|strong="H1121"\w* \w known|strong="H3045"\w*, \w then|strong="H7126"\w* \w the|strong="H6440"\w* \w assembly|strong="H6951"\w* \w shall|strong="H1121"\w* \w offer|strong="H7126"\w* \w a|strong="H3068"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*, \w and|strong="H1121"\w* \w bring|strong="H7126"\w* \w it|strong="H5921"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*. +\v 15 \w The|strong="H6440"\w* \w elders|strong="H2205"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w congregation|strong="H5712"\w* \w shall|strong="H3068"\w* \w lay|strong="H5564"\w* \w their|strong="H3068"\w* \w hands|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w head|strong="H7218"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w bull|strong="H6499"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w bull|strong="H6499"\w* \w shall|strong="H3068"\w* \w be|strong="H3027"\w* \w killed|strong="H7819"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 16 \w The|strong="H3548"\w* \w anointed|strong="H4899"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* bring some \w of|strong="H1818"\w* \w the|strong="H3548"\w* \w blood|strong="H1818"\w* \w of|strong="H1818"\w* \w the|strong="H3548"\w* \w bull|strong="H6499"\w* \w to|strong="H4150"\w* \w the|strong="H3548"\w* Tent \w of|strong="H1818"\w* \w Meeting|strong="H4150"\w*. +\v 17 \w The|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w dip|strong="H2881"\w* \w his|strong="H3068"\w* finger \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w blood|strong="H1818"\w* \w and|strong="H3068"\w* \w sprinkle|strong="H5137"\w* \w it|strong="H6440"\w* \w seven|strong="H7651"\w* \w times|strong="H6471"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w veil|strong="H6532"\w*. +\v 18 \w He|strong="H3068"\w* \w shall|strong="H3068"\w* \w put|strong="H5414"\w* \w some|strong="H4480"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w blood|strong="H1818"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w horns|strong="H7161"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w that|strong="H3605"\w* \w is|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*; \w and|strong="H3068"\w* \w the|strong="H3605"\w* rest \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w blood|strong="H1818"\w* \w he|strong="H3068"\w* \w shall|strong="H3068"\w* \w pour|strong="H8210"\w* \w out|strong="H8210"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w base|strong="H3247"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w of|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*. +\v 19 \w All|strong="H3605"\w* \w its|strong="H3605"\w* \w fat|strong="H2459"\w* \w he|strong="H3605"\w* shall \w take|strong="H7311"\w* \w from|strong="H4480"\w* \w it|strong="H7311"\w*, \w and|strong="H4196"\w* \w burn|strong="H6999"\w* \w it|strong="H7311"\w* \w on|strong="H3605"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*. +\v 20 \w He|strong="H3651"\w* \w shall|strong="H3548"\w* \w do|strong="H6213"\w* \w this|strong="H3651"\w* \w with|strong="H6213"\w* \w the|strong="H5921"\w* \w bull|strong="H6499"\w*; \w as|strong="H6213"\w* \w he|strong="H3651"\w* \w did|strong="H6213"\w* \w with|strong="H6213"\w* \w the|strong="H5921"\w* \w bull|strong="H6499"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*, \w so|strong="H3651"\w* \w he|strong="H3651"\w* \w shall|strong="H3548"\w* \w do|strong="H6213"\w* \w with|strong="H6213"\w* \w this|strong="H3651"\w*; \w and|strong="H3548"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w make|strong="H6213"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w them|strong="H1992"\w*, \w and|strong="H3548"\w* \w they|strong="H1992"\w* \w shall|strong="H3548"\w* \w be|strong="H3548"\w* \w forgiven|strong="H5545"\w*. +\v 21 \w He|strong="H1931"\w* \w shall|strong="H6951"\w* \w carry|strong="H3318"\w* \w the|strong="H3318"\w* \w bull|strong="H6499"\w* \w outside|strong="H2351"\w* \w the|strong="H3318"\w* \w camp|strong="H4264"\w*, \w and|strong="H6499"\w* \w burn|strong="H8313"\w* \w it|strong="H1931"\w* \w as|strong="H3318"\w* \w he|strong="H1931"\w* \w burned|strong="H8313"\w* \w the|strong="H3318"\w* \w first|strong="H7223"\w* \w bull|strong="H6499"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H3318"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w* \w for|strong="H3318"\w* \w the|strong="H3318"\w* \w assembly|strong="H6951"\w*. +\p +\v 22 “‘\w When|strong="H6213"\w* \w a|strong="H3068"\w* \w ruler|strong="H5387"\w* \w sins|strong="H2398"\w*, \w and|strong="H3068"\w* \w unwittingly|strong="H7684"\w* \w does|strong="H6213"\w* \w any|strong="H3605"\w* \w one|strong="H3605"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w things|strong="H3605"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H3605"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H4687"\w* \w not|strong="H3808"\w* \w to|strong="H3068"\w* \w be|strong="H3808"\w* \w done|strong="H6213"\w*, \w and|strong="H3068"\w* \w is|strong="H3068"\w* guilty, +\v 23 \w if|strong="H2398"\w* \w his|strong="H3045"\w* \w sin|strong="H2403"\w* \w in|strong="H8549"\w* \w which|strong="H2403"\w* \w he|strong="H5795"\w* \w has|strong="H3045"\w* \w sinned|strong="H2398"\w* \w is|strong="H2403"\w* \w made|strong="H3045"\w* \w known|strong="H3045"\w* \w to|strong="H3045"\w* \w him|strong="H3045"\w*, \w he|strong="H5795"\w* \w shall|strong="H8163"\w* \w bring|strong="H2398"\w* \w as|strong="H2403"\w* \w his|strong="H3045"\w* \w offering|strong="H2403"\w* \w a|strong="H3068"\w* \w goat|strong="H5795"\w*, \w a|strong="H3068"\w* \w male|strong="H2145"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*. +\v 24 \w He|strong="H1931"\w* \w shall|strong="H3068"\w* \w lay|strong="H5564"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w head|strong="H7218"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w goat|strong="H8163"\w*, \w and|strong="H3068"\w* \w kill|strong="H7819"\w* \w it|strong="H1931"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w place|strong="H4725"\w* \w where|strong="H4725"\w* \w they|strong="H3068"\w* \w kill|strong="H7819"\w* \w the|strong="H6440"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. \w It|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w*. +\v 25 \w The|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* some \w of|strong="H4196"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w of|strong="H4196"\w* \w the|strong="H5921"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w* \w with|strong="H5921"\w* \w his|strong="H5414"\w* finger, \w and|strong="H3548"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w horns|strong="H7161"\w* \w of|strong="H4196"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w of|strong="H4196"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*. \w He|strong="H5414"\w* \w shall|strong="H3548"\w* \w pour|strong="H8210"\w* \w out|strong="H8210"\w* \w the|strong="H5921"\w* rest \w of|strong="H4196"\w* \w its|strong="H5414"\w* \w blood|strong="H1818"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w base|strong="H3247"\w* \w of|strong="H4196"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w of|strong="H4196"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*. +\v 26 \w All|strong="H3605"\w* \w its|strong="H3605"\w* \w fat|strong="H2459"\w* \w he|strong="H3605"\w* \w shall|strong="H3548"\w* \w burn|strong="H6999"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*, \w like|strong="H5921"\w* \w the|strong="H3605"\w* \w fat|strong="H2459"\w* \w of|strong="H4196"\w* \w the|strong="H3605"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H4196"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*; \w and|strong="H3548"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w* \w concerning|strong="H5921"\w* \w his|strong="H3605"\w* \w sin|strong="H2403"\w*, \w and|strong="H3548"\w* \w he|strong="H3605"\w* \w will|strong="H2403"\w* \w be|strong="H3548"\w* \w forgiven|strong="H5545"\w*. +\p +\v 27 “‘\w If|strong="H2398"\w* \w anyone|strong="H5315"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* common \w people|strong="H5971"\w* \w sins|strong="H2398"\w* \w unwittingly|strong="H7684"\w*, \w in|strong="H3068"\w* \w doing|strong="H6213"\w* \w any|strong="H6213"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* \w things|strong="H4687"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H4687"\w* \w not|strong="H3808"\w* \w to|strong="H3068"\w* \w be|strong="H3808"\w* \w done|strong="H6213"\w*, \w and|strong="H3068"\w* \w is|strong="H3068"\w* guilty, +\v 28 \w if|strong="H2398"\w* \w his|strong="H5921"\w* \w sin|strong="H2403"\w* \w which|strong="H2403"\w* \w he|strong="H5921"\w* \w has|strong="H3045"\w* \w sinned|strong="H2398"\w* \w is|strong="H2403"\w* \w made|strong="H3045"\w* \w known|strong="H3045"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w*, \w then|strong="H3045"\w* \w he|strong="H5921"\w* \w shall|strong="H2398"\w* \w bring|strong="H2398"\w* \w for|strong="H5921"\w* \w his|strong="H5921"\w* \w offering|strong="H2403"\w* \w a|strong="H3068"\w* \w goat|strong="H5795"\w*, \w a|strong="H3068"\w* \w female|strong="H5347"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*, \w for|strong="H5921"\w* \w his|strong="H5921"\w* \w sin|strong="H2403"\w* \w which|strong="H2403"\w* \w he|strong="H5921"\w* \w has|strong="H3045"\w* \w sinned|strong="H2398"\w*. +\v 29 \w He|strong="H3027"\w* \w shall|strong="H3027"\w* \w lay|strong="H5564"\w* \w his|strong="H5921"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w*, \w and|strong="H3027"\w* \w kill|strong="H7819"\w* \w the|strong="H5921"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w of|strong="H3027"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*. +\v 30 \w The|strong="H3605"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* \w some|strong="H3605"\w* \w of|strong="H4196"\w* \w its|strong="H3605"\w* \w blood|strong="H1818"\w* \w with|strong="H5921"\w* \w his|strong="H3605"\w* finger, \w and|strong="H3548"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w horns|strong="H7161"\w* \w of|strong="H4196"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w of|strong="H4196"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*; \w and|strong="H3548"\w* \w the|strong="H3605"\w* rest \w of|strong="H4196"\w* \w its|strong="H3605"\w* \w blood|strong="H1818"\w* \w he|strong="H3605"\w* \w shall|strong="H3548"\w* \w pour|strong="H8210"\w* \w out|strong="H8210"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w base|strong="H3247"\w* \w of|strong="H4196"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*. +\v 31 \w All|strong="H3605"\w* \w its|strong="H3605"\w* \w fat|strong="H2459"\w* \w he|strong="H3068"\w* \w shall|strong="H3548"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w*, \w like|strong="H5921"\w* \w the|strong="H3605"\w* \w fat|strong="H2459"\w* \w is|strong="H3068"\w* \w taken|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* \w the|strong="H3605"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*; \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w burn|strong="H6999"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w forgiven|strong="H5545"\w*. +\p +\v 32 “‘If \w he|strong="H5347"\w* brings \w a|strong="H3068"\w* \w lamb|strong="H3532"\w* \w as|strong="H3532"\w* his \w offering|strong="H2403"\w* \w for|strong="H2403"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*, \w he|strong="H5347"\w* \w shall|strong="H8549"\w* bring \w a|strong="H3068"\w* \w female|strong="H5347"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*. +\v 33 \w He|strong="H3027"\w* \w shall|strong="H3027"\w* \w lay|strong="H5564"\w* \w his|strong="H5921"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w*, \w and|strong="H3027"\w* \w kill|strong="H7819"\w* \w it|strong="H5921"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w where|strong="H4725"\w* \w they|strong="H5921"\w* \w kill|strong="H7819"\w* \w the|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*. +\v 34 \w The|strong="H3605"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* \w some|strong="H3605"\w* \w of|strong="H4196"\w* \w the|strong="H3605"\w* \w blood|strong="H1818"\w* \w of|strong="H4196"\w* \w the|strong="H3605"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w* \w with|strong="H5921"\w* \w his|strong="H3605"\w* finger, \w and|strong="H3548"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w horns|strong="H7161"\w* \w of|strong="H4196"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w of|strong="H4196"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*; \w and|strong="H3548"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* rest \w of|strong="H4196"\w* \w its|strong="H3605"\w* \w blood|strong="H1818"\w* \w he|strong="H3605"\w* \w shall|strong="H3548"\w* \w pour|strong="H8210"\w* \w out|strong="H8210"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w base|strong="H3247"\w* \w of|strong="H4196"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*. +\v 35 \w He|strong="H3068"\w* \w shall|strong="H3548"\w* \w remove|strong="H5493"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w fat|strong="H2459"\w*, \w like|strong="H5921"\w* \w the|strong="H3605"\w* \w fat|strong="H2459"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w lamb|strong="H3775"\w* \w is|strong="H3068"\w* \w removed|strong="H5493"\w* \w from|strong="H5493"\w* \w the|strong="H3605"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*. \w The|strong="H3605"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w burn|strong="H6999"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*, \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w offerings|strong="H8002"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H3722"\w* \w by|strong="H5921"\w* fire. \w The|strong="H3605"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w* \w concerning|strong="H5921"\w* \w his|strong="H3605"\w* \w sin|strong="H2403"\w* \w that|strong="H3605"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w sinned|strong="H2398"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w forgiven|strong="H5545"\w*. +\c 5 +\p +\v 1 “‘\w If|strong="H3588"\w* \w anyone|strong="H5315"\w* \w sins|strong="H2398"\w*, \w in|strong="H8085"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w hears|strong="H8085"\w* \w a|strong="H3068"\w* \w public|strong="H6963"\w* adjuration \w to|strong="H8085"\w* testify, \w he|strong="H1931"\w* \w being|strong="H5315"\w* \w a|strong="H3068"\w* \w witness|strong="H5707"\w*, \w whether|strong="H7200"\w* \w he|strong="H1931"\w* \w has|strong="H3588"\w* \w seen|strong="H7200"\w* \w or|strong="H3808"\w* \w known|strong="H3045"\w*, \w if|strong="H3588"\w* \w he|strong="H1931"\w* doesn’t \w report|strong="H5046"\w* \w it|strong="H1931"\w*, \w then|strong="H5375"\w* \w he|strong="H1931"\w* \w shall|strong="H5315"\w* \w bear|strong="H5375"\w* \w his|strong="H5375"\w* \w iniquity|strong="H5771"\w*. +\p +\v 2 “‘\w Or|strong="H4480"\w* \w if|strong="H1931"\w* \w anyone|strong="H3605"\w* \w touches|strong="H5060"\w* \w any|strong="H3605"\w* \w unclean|strong="H2931"\w* \w thing|strong="H1697"\w*, \w whether|strong="H4480"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H3605"\w* \w carcass|strong="H5038"\w* \w of|strong="H1697"\w* \w an|strong="H4480"\w* \w unclean|strong="H2931"\w* \w animal|strong="H2416"\w*, \w or|strong="H4480"\w* \w the|strong="H3605"\w* \w carcass|strong="H5038"\w* \w of|strong="H1697"\w* \w unclean|strong="H2931"\w* livestock, \w or|strong="H4480"\w* \w the|strong="H3605"\w* \w carcass|strong="H5038"\w* \w of|strong="H1697"\w* \w unclean|strong="H2931"\w* \w creeping|strong="H2931"\w* \w things|strong="H1697"\w*, \w and|strong="H1697"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w hidden|strong="H5956"\w* \w from|strong="H4480"\w* \w him|strong="H1931"\w*, \w and|strong="H1697"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w unclean|strong="H2931"\w*, \w then|strong="H3605"\w* \w he|strong="H1931"\w* \w shall|strong="H5315"\w* \w be|strong="H1697"\w* guilty. +\p +\v 3 “‘\w Or|strong="H4480"\w* \w if|strong="H3588"\w* \w he|strong="H1931"\w* \w touches|strong="H5060"\w* \w the|strong="H3605"\w* \w uncleanness|strong="H2932"\w* \w of|strong="H4480"\w* \w man|strong="H3605"\w*, \w whatever|strong="H3605"\w* \w his|strong="H3605"\w* \w uncleanness|strong="H2932"\w* \w is|strong="H1931"\w* \w with|strong="H3045"\w* \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w unclean|strong="H2930"\w*, \w and|strong="H3045"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w hidden|strong="H5956"\w* \w from|strong="H4480"\w* \w him|strong="H2930"\w*; \w when|strong="H3588"\w* \w he|strong="H1931"\w* \w knows|strong="H3045"\w* \w of|strong="H4480"\w* \w it|strong="H1931"\w*, \w then|strong="H3588"\w* \w he|strong="H1931"\w* \w shall|strong="H1931"\w* \w be|strong="H4480"\w* guilty. +\p +\v 4 “‘\w Or|strong="H4480"\w* \w if|strong="H3588"\w* \w anyone|strong="H3605"\w* \w swears|strong="H7650"\w* \w rashly|strong="H8193"\w* \w with|strong="H3045"\w* \w his|strong="H3605"\w* \w lips|strong="H8193"\w* \w to|strong="H7650"\w* \w do|strong="H3190"\w* \w evil|strong="H7489"\w* \w or|strong="H4480"\w* \w to|strong="H7650"\w* \w do|strong="H3190"\w* \w good|strong="H3190"\w*—\w whatever|strong="H3605"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w that|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H5315"\w* might \w utter|strong="H3605"\w* \w rashly|strong="H8193"\w* \w with|strong="H3045"\w* \w an|strong="H7650"\w* \w oath|strong="H7621"\w*, \w and|strong="H3045"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w hidden|strong="H5956"\w* \w from|strong="H4480"\w* \w him|strong="H1931"\w*—\w when|strong="H3588"\w* \w he|strong="H1931"\w* \w knows|strong="H3045"\w* \w of|strong="H4480"\w* \w it|strong="H1931"\w*, \w then|strong="H3588"\w* \w he|strong="H1931"\w* \w will|strong="H5315"\w* \w be|strong="H5315"\w* guilty \w of|strong="H4480"\w* \w one|strong="H3605"\w* \w of|strong="H4480"\w* \w these|strong="H1931"\w*. +\v 5 \w It|strong="H5921"\w* \w shall|strong="H2398"\w* \w be|strong="H1961"\w*, \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H1961"\w* guilty \w of|strong="H5921"\w* \w one|strong="H1961"\w* \w of|strong="H5921"\w* these, \w he|strong="H3588"\w* \w shall|strong="H2398"\w* \w confess|strong="H3034"\w* \w that|strong="H3588"\w* \w in|strong="H5921"\w* \w which|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H1961"\w* \w sinned|strong="H2398"\w*; +\v 6 \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w shall|strong="H3548"\w* \w bring|strong="H2398"\w* \w his|strong="H3068"\w* \w trespass|strong="H2398"\w* \w offering|strong="H2403"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H5921"\w* \w his|strong="H3068"\w* \w sin|strong="H2403"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w sinned|strong="H2398"\w*: \w a|strong="H3068"\w* \w female|strong="H5347"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* \w flock|strong="H6629"\w*, \w a|strong="H3068"\w* \w lamb|strong="H3776"\w* \w or|strong="H4480"\w* \w a|strong="H3068"\w* \w goat|strong="H5795"\w*, \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*; \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w* \w concerning|strong="H5921"\w* \w his|strong="H3068"\w* \w sin|strong="H2403"\w*. +\p +\v 7 “‘\w If|strong="H2398"\w* \w he|strong="H3068"\w* \w can|strong="H3808"\w*’t \w afford|strong="H3027"\w* \w a|strong="H3068"\w* \w lamb|strong="H7716"\w*, \w then|strong="H3068"\w* \w he|strong="H3068"\w* \w shall|strong="H3068"\w* \w bring|strong="H5060"\w* \w his|strong="H3068"\w* \w trespass|strong="H2398"\w* \w offering|strong="H5930"\w* \w for|strong="H3027"\w* \w that|strong="H3068"\w* \w in|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w sinned|strong="H2398"\w*, \w two|strong="H8147"\w* \w turtledoves|strong="H8449"\w*, \w or|strong="H3808"\w* \w two|strong="H8147"\w* \w young|strong="H1121"\w* \w pigeons|strong="H3123"\w*, \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*; \w one|strong="H3808"\w* \w for|strong="H3027"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w*, \w and|strong="H1121"\w* \w the|strong="H3068"\w* \w other|strong="H8147"\w* \w for|strong="H3027"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*. +\v 8 \w He|strong="H3808"\w* \w shall|strong="H3548"\w* \w bring|strong="H7126"\w* \w them|strong="H7126"\w* \w to|strong="H7126"\w* \w the|strong="H7126"\w* \w priest|strong="H3548"\w*, \w who|strong="H3548"\w* \w shall|strong="H3548"\w* \w first|strong="H7223"\w* \w offer|strong="H7126"\w* \w the|strong="H7126"\w* \w one|strong="H3808"\w* \w which|strong="H3548"\w* \w is|strong="H7218"\w* \w for|strong="H3808"\w* \w the|strong="H7126"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*. \w He|strong="H3808"\w* \w shall|strong="H3548"\w* \w wring|strong="H4454"\w* \w off|strong="H4454"\w* \w its|strong="H4454"\w* \w head|strong="H7218"\w* \w from|strong="H2403"\w* \w its|strong="H4454"\w* \w neck|strong="H6203"\w*, \w but|strong="H3808"\w* \w shall|strong="H3548"\w* \w not|strong="H3808"\w* sever \w it|strong="H7126"\w* completely. +\v 9 \w He|strong="H1931"\w* \w shall|strong="H1931"\w* \w sprinkle|strong="H5137"\w* some \w of|strong="H4196"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w of|strong="H4196"\w* \w the|strong="H5921"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w side|strong="H7023"\w* \w of|strong="H4196"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*; \w and|strong="H4196"\w* \w the|strong="H5921"\w* \w rest|strong="H7604"\w* \w of|strong="H4196"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w shall|strong="H1931"\w* \w be|strong="H1818"\w* \w drained|strong="H4680"\w* \w out|strong="H4680"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w base|strong="H3247"\w* \w of|strong="H4196"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*. +\v 10 \w He|strong="H6213"\w* \w shall|strong="H3548"\w* \w offer|strong="H6213"\w* \w the|strong="H5921"\w* \w second|strong="H8145"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w according|strong="H5921"\w* \w to|strong="H6213"\w* \w the|strong="H5921"\w* \w ordinance|strong="H4941"\w*; \w and|strong="H4941"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w make|strong="H6213"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w* \w concerning|strong="H5921"\w* \w his|strong="H5921"\w* \w sin|strong="H2403"\w* \w which|strong="H3548"\w* \w he|strong="H6213"\w* \w has|strong="H6213"\w* \w sinned|strong="H2398"\w*, \w and|strong="H4941"\w* \w he|strong="H6213"\w* \w shall|strong="H3548"\w* \w be|strong="H3548"\w* \w forgiven|strong="H5545"\w*. +\p +\v 11 “‘\w But|strong="H3588"\w* \w if|strong="H3588"\w* \w he|strong="H1931"\w* \w can|strong="H3808"\w*’t \w afford|strong="H3027"\w* \w two|strong="H8147"\w* \w turtledoves|strong="H8449"\w* \w or|strong="H3808"\w* \w two|strong="H8147"\w* \w young|strong="H1121"\w* \w pigeons|strong="H3123"\w*, \w then|strong="H5414"\w* \w he|strong="H1931"\w* \w shall|strong="H1121"\w* \w bring|strong="H5414"\w* \w as|strong="H3588"\w* \w his|strong="H5414"\w* \w offering|strong="H2403"\w* \w for|strong="H3588"\w* \w that|strong="H3588"\w* \w in|strong="H5921"\w* \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w has|strong="H3588"\w* \w sinned|strong="H2398"\w*, \w one|strong="H3808"\w* \w tenth|strong="H6224"\w* \w of|strong="H1121"\w* \w an|strong="H5414"\w* ephah\f + \fr 5:11 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w of|strong="H1121"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*. \w He|strong="H1931"\w* \w shall|strong="H1121"\w* \w put|strong="H5414"\w* \w no|strong="H3808"\w* \w oil|strong="H8081"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w*, \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w put|strong="H5414"\w* \w any|strong="H5414"\w* \w frankincense|strong="H3828"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w*, \w for|strong="H3588"\w* \w it|strong="H5414"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*. +\v 12 \w He|strong="H1931"\w* \w shall|strong="H3548"\w* bring \w it|strong="H1931"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w*, \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w take|strong="H7061"\w* \w his|strong="H3068"\w* \w handful|strong="H7062"\w* \w of|strong="H3068"\w* \w it|strong="H1931"\w* \w as|strong="H3068"\w* \w the|strong="H5921"\w* memorial \w portion|strong="H6999"\w*, \w and|strong="H3068"\w* \w burn|strong="H6999"\w* \w it|strong="H1931"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*, \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w offerings|strong="H2403"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H3068"\w* \w by|strong="H5921"\w* fire. \w It|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*. +\v 13 \w The|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w* \w concerning|strong="H5921"\w* \w his|strong="H5921"\w* \w sin|strong="H2403"\w* \w that|strong="H3548"\w* \w he|strong="H5921"\w* \w has|strong="H1961"\w* \w sinned|strong="H2398"\w* \w in|strong="H5921"\w* \w any|strong="H1961"\w* \w of|strong="H5921"\w* these \w things|strong="H1961"\w*, \w and|strong="H3548"\w* \w he|strong="H5921"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w forgiven|strong="H5545"\w*; \w and|strong="H3548"\w* \w the|strong="H5921"\w* \w rest|strong="H1961"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w*’s, \w as|strong="H1961"\w* \w the|strong="H5921"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*.’” +\p +\v 14 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 15 “\w If|strong="H3588"\w* \w anyone|strong="H5315"\w* \w commits|strong="H4603"\w* \w a|strong="H3068"\w* \w trespass|strong="H4604"\w*, \w and|strong="H3068"\w* \w sins|strong="H2398"\w* \w unwittingly|strong="H7684"\w* regarding \w Yahweh|strong="H3068"\w*’s \w holy|strong="H6944"\w* \w things|strong="H6944"\w*, \w then|strong="H3588"\w* \w he|strong="H3588"\w* \w shall|strong="H3068"\w* \w bring|strong="H2398"\w* \w his|strong="H3068"\w* \w trespass|strong="H4604"\w* \w offering|strong="H3068"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*: \w a|strong="H3068"\w* ram \w without|strong="H8549"\w* \w defect|strong="H8549"\w* \w from|strong="H4480"\w* \w the|strong="H3588"\w* \w flock|strong="H6629"\w*, \w according|strong="H3701"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w estimation|strong="H6187"\w* \w in|strong="H3068"\w* \w silver|strong="H3701"\w* \w by|strong="H3068"\w* \w shekels|strong="H8255"\w*, \w according|strong="H3701"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w shekel|strong="H8255"\w*\f + \fr 5:15 \ft A shekel is about 10 grams or about 0.35 ounces.\f* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w sanctuary|strong="H6944"\w*, \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w trespass|strong="H4604"\w* \w offering|strong="H3068"\w*. +\v 16 \w He|strong="H5414"\w* \w shall|strong="H3548"\w* \w make|strong="H5414"\w* \w restitution|strong="H7999"\w* \w for|strong="H5921"\w* \w that|strong="H5414"\w* \w which|strong="H3548"\w* \w he|strong="H5414"\w* \w has|strong="H3548"\w* \w done|strong="H2398"\w* \w wrong|strong="H2398"\w* \w regarding|strong="H5921"\w* \w the|strong="H5921"\w* \w holy|strong="H6944"\w* \w thing|strong="H6944"\w*, \w and|strong="H3548"\w* \w shall|strong="H3548"\w* \w add|strong="H3254"\w* \w a|strong="H3068"\w* \w fifth|strong="H2549"\w* \w part|strong="H2549"\w* \w to|strong="H5921"\w* \w it|strong="H5414"\w*, \w and|strong="H3548"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w*; \w and|strong="H3548"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w make|strong="H5414"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w him|strong="H5414"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* ram \w of|strong="H4480"\w* \w the|strong="H5921"\w* \w trespass|strong="H2398"\w* \w offering|strong="H4480"\w*, \w and|strong="H3548"\w* \w he|strong="H5414"\w* \w will|strong="H5414"\w* \w be|strong="H3254"\w* \w forgiven|strong="H5545"\w*. +\p +\v 17 “\w If|strong="H3588"\w* \w anyone|strong="H3605"\w* \w sins|strong="H2398"\w*, \w doing|strong="H6213"\w* \w any|strong="H3605"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w things|strong="H3605"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H4687"\w* \w not|strong="H3808"\w* \w to|strong="H3068"\w* \w be|strong="H3808"\w* \w done|strong="H6213"\w*, \w though|strong="H3588"\w* \w he|strong="H3588"\w* didn’t \w know|strong="H3045"\w* \w it|strong="H3588"\w*, \w he|strong="H3588"\w* \w is|strong="H3068"\w* \w still|strong="H3588"\w* \w guilty|strong="H5771"\w*, \w and|strong="H3068"\w* \w shall|strong="H3068"\w* \w bear|strong="H5375"\w* \w his|strong="H3605"\w* \w iniquity|strong="H5771"\w*. +\v 18 \w He|strong="H1931"\w* \w shall|strong="H3548"\w* \w bring|strong="H3045"\w* \w a|strong="H3068"\w* ram \w without|strong="H3808"\w* \w defect|strong="H8549"\w* \w from|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H5921"\w* \w flock|strong="H6629"\w*, \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w your|strong="H5921"\w* \w estimation|strong="H6187"\w*, \w for|strong="H5921"\w* \w a|strong="H3068"\w* trespass \w offering|strong="H4480"\w*, \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w*; \w and|strong="H3548"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* \w thing|strong="H1931"\w* \w in|strong="H5921"\w* \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w sinned|strong="H7683"\w* \w and|strong="H3548"\w* didn’t \w know|strong="H3045"\w* \w it|strong="H1931"\w*, \w and|strong="H3548"\w* \w he|strong="H1931"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w forgiven|strong="H5545"\w*. +\v 19 \w It|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* trespass \w offering|strong="H3068"\w*. \w He|strong="H1931"\w* \w is|strong="H3068"\w* certainly guilty before \w Yahweh|strong="H3068"\w*.” +\c 6 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w If|strong="H1931"\w* \w anyone|strong="H3605"\w* sins, \w and|strong="H1121"\w* commits \w a|strong="H3068"\w* trespass \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H1121"\w* deals falsely \w with|strong="H5921"\w* \w his|strong="H3605"\w* neighbor \w in|strong="H5921"\w* \w a|strong="H3068"\w* matter \w of|strong="H1121"\w* deposit, \w or|strong="H5704"\w* \w of|strong="H1121"\w* bargain, \w or|strong="H5704"\w* \w of|strong="H1121"\w* robbery, \w or|strong="H5704"\w* \w has|strong="H3605"\w* oppressed \w his|strong="H3605"\w* neighbor, +\v 3 \w or|strong="H5930"\w* \w has|strong="H3548"\w* found \w that|strong="H3548"\w* \w which|strong="H4196"\w* \w was|strong="H1320"\w* lost, \w and|strong="H3548"\w* lied \w about|strong="H5921"\w* \w it|strong="H7760"\w*, \w and|strong="H3548"\w* swearing \w to|strong="H5921"\w* \w a|strong="H3068"\w* lie—\w in|strong="H5921"\w* \w any|strong="H7760"\w* \w of|strong="H4196"\w* \w these|strong="H7760"\w* things \w that|strong="H3548"\w* \w a|strong="H3068"\w* \w man|strong="H1320"\w* sins \w in|strong="H5921"\w* \w his|strong="H7760"\w* actions— +\v 4 \w then|strong="H3318"\w* \w it|strong="H3318"\w* \w shall|strong="H2889"\w* \w be|strong="H4725"\w*, if \w he|strong="H3318"\w* \w has|strong="H3318"\w* sinned, \w and|strong="H3318"\w* \w is|strong="H4725"\w* guilty, \w he|strong="H3318"\w* \w shall|strong="H2889"\w* restore \w that|strong="H4725"\w* \w which|strong="H4725"\w* \w he|strong="H3318"\w* \w took|strong="H3318"\w* \w by|strong="H3318"\w* robbery, or \w the|strong="H3318"\w* thing \w which|strong="H4725"\w* \w he|strong="H3318"\w* \w has|strong="H3318"\w* gotten \w by|strong="H3318"\w* oppression, or \w the|strong="H3318"\w* deposit \w which|strong="H4725"\w* \w was|strong="H4725"\w* committed \w to|strong="H3318"\w* \w him|strong="H3318"\w*, or \w the|strong="H3318"\w* lost thing \w which|strong="H4725"\w* \w he|strong="H3318"\w* found, +\v 5 \w or|strong="H3808"\w* \w any|strong="H3808"\w* thing \w about|strong="H5921"\w* \w which|strong="H4196"\w* \w he|strong="H3808"\w* \w has|strong="H3548"\w* sworn falsely: \w he|strong="H3808"\w* \w shall|strong="H3548"\w* restore \w it|strong="H5921"\w* \w in|strong="H5921"\w* full, \w and|strong="H6086"\w* \w shall|strong="H3548"\w* add \w a|strong="H3068"\w* fifth \w part|strong="H5921"\w* \w more|strong="H3808"\w* \w to|strong="H5921"\w* \w it|strong="H5921"\w*. \w He|strong="H3808"\w* \w shall|strong="H3548"\w* return \w it|strong="H5921"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w* \w to|strong="H5921"\w* whom \w it|strong="H5921"\w* belongs \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H1242"\w* \w of|strong="H4196"\w* \w his|strong="H5921"\w* being found guilty. +\v 6 \w He|strong="H3808"\w* \w shall|strong="H3808"\w* bring \w his|strong="H5921"\w* trespass offering \w to|strong="H5921"\w* \w Yahweh|strong="H3068"\w*: \w a|strong="H3068"\w* ram \w without|strong="H3808"\w* defect \w from|strong="H5921"\w* \w the|strong="H5921"\w* flock, \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w your|strong="H5921"\w* estimation, \w for|strong="H5921"\w* \w a|strong="H3068"\w* trespass offering, \w to|strong="H5921"\w* \w the|strong="H5921"\w* priest. +\v 7 \w The|strong="H6440"\w* priest \w shall|strong="H3068"\w* make atonement \w for|strong="H6440"\w* \w him|strong="H6440"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H1121"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* forgiven \w concerning|strong="H3068"\w* whatever \w he|strong="H3068"\w* \w does|strong="H3068"\w* \w to|strong="H3068"\w* become guilty.” +\p +\v 8 \w Yahweh|strong="H3068"\w* spoke \w to|strong="H3068"\w* Moses, saying, +\v 9 “Command Aaron \w and|strong="H1121"\w* \w his|strong="H4480"\w* \w sons|strong="H1121"\w*, saying, ‘\w This|strong="H1121"\w* \w is|strong="H1121"\w* \w the|strong="H4480"\w* law \w of|strong="H1121"\w* \w the|strong="H4480"\w* burnt \w offering|strong="H4480"\w*: \w the|strong="H4480"\w* burnt \w offering|strong="H4480"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w on|strong="H4725"\w* \w the|strong="H4480"\w* hearth \w on|strong="H4725"\w* \w the|strong="H4480"\w* altar \w all|strong="H4480"\w* \w night|strong="H1121"\w* until \w the|strong="H4480"\w* morning; \w and|strong="H1121"\w* \w the|strong="H4480"\w* fire \w of|strong="H1121"\w* \w the|strong="H4480"\w* altar \w shall|strong="H1121"\w* \w be|strong="H1121"\w* kept burning \w on|strong="H4725"\w* \w it|strong="H4725"\w*. +\v 10 \w The|strong="H5414"\w* priest \w shall|strong="H3808"\w* \w put|strong="H5414"\w* \w on|strong="H5414"\w* \w his|strong="H5414"\w* linen garment, \w and|strong="H2403"\w* \w he|strong="H1931"\w* \w shall|strong="H3808"\w* \w put|strong="H5414"\w* \w on|strong="H5414"\w* \w his|strong="H5414"\w* linen trousers \w upon|strong="H5414"\w* \w his|strong="H5414"\w* body; \w and|strong="H2403"\w* \w he|strong="H1931"\w* \w shall|strong="H3808"\w* remove \w the|strong="H5414"\w* ashes \w from|strong="H5414"\w* \w where|strong="H3808"\w* \w the|strong="H5414"\w* fire \w has|strong="H5414"\w* consumed \w the|strong="H5414"\w* burnt \w offering|strong="H2403"\w* \w on|strong="H5414"\w* \w the|strong="H5414"\w* altar, \w and|strong="H2403"\w* \w he|strong="H1931"\w* \w shall|strong="H3808"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* beside \w the|strong="H5414"\w* altar. +\v 11 \w He|strong="H3068"\w* \w shall|strong="H3068"\w* \w take|strong="H1121"\w* off \w his|strong="H3605"\w* garments, \w and|strong="H1121"\w* \w put|strong="H3068"\w* \w on|strong="H3068"\w* \w other|strong="H3605"\w* garments, \w and|strong="H1121"\w* carry \w the|strong="H3605"\w* ashes outside \w the|strong="H3605"\w* camp \w to|strong="H3068"\w* \w a|strong="H3068"\w* clean \w place|strong="H3605"\w*. +\v 12 \w The|strong="H3068"\w* fire \w on|strong="H3068"\w* \w the|strong="H3068"\w* altar \w shall|strong="H3068"\w* \w be|strong="H3068"\w* kept burning \w on|strong="H3068"\w* \w it|strong="H1696"\w*, \w it|strong="H1696"\w* \w shall|strong="H3068"\w* \w not|strong="H1696"\w* \w go|strong="H3068"\w* \w out|strong="H1696"\w*; \w and|strong="H4872"\w* \w the|strong="H3068"\w* priest \w shall|strong="H3068"\w* burn wood \w on|strong="H3068"\w* \w it|strong="H1696"\w* \w every|strong="H3068"\w* morning. \w He|strong="H3068"\w* \w shall|strong="H3068"\w* lay \w the|strong="H3068"\w* burnt \w offering|strong="H3068"\w* \w in|strong="H3068"\w* order upon \w it|strong="H1696"\w*, \w and|strong="H4872"\w* \w shall|strong="H3068"\w* burn \w on|strong="H3068"\w* \w it|strong="H1696"\w* \w the|strong="H3068"\w* fat \w of|strong="H3068"\w* \w the|strong="H3068"\w* peace \w offerings|strong="H3068"\w*. +\v 13 Fire \w shall|strong="H3068"\w* \w be|strong="H3068"\w* kept burning \w on|strong="H3117"\w* \w the|strong="H3068"\w* altar \w continually|strong="H8548"\w*; \w it|strong="H7126"\w* \w shall|strong="H3068"\w* \w not|strong="H2088"\w* \w go|strong="H7126"\w* out. +\p +\v 14 “‘\w This|strong="H6213"\w* \w is|strong="H3068"\w* \w the|strong="H5921"\w* law \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*: \w the|strong="H5921"\w* sons \w of|strong="H3068"\w* Aaron \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w it|strong="H5921"\w* \w before|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w before|strong="H5921"\w* \w the|strong="H5921"\w* altar. +\v 15 \w He|strong="H6213"\w* \w shall|strong="H3548"\w* \w take|strong="H6213"\w* \w from|strong="H1121"\w* \w there|strong="H8478"\w* \w his|strong="H3068"\w* handful \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w fine|strong="H6213"\w* flour \w of|strong="H1121"\w* \w the|strong="H6213"\w* meal \w offering|strong="H6999"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w its|strong="H6213"\w* oil, \w and|strong="H1121"\w* \w all|strong="H6213"\w* \w the|strong="H6213"\w* frankincense \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w on|strong="H3068"\w* \w the|strong="H6213"\w* meal \w offering|strong="H6999"\w*, \w and|strong="H1121"\w* \w shall|strong="H3548"\w* \w burn|strong="H6999"\w* \w it|strong="H6213"\w* \w on|strong="H3068"\w* \w the|strong="H6213"\w* altar \w for|strong="H6213"\w* \w a|strong="H3068"\w* pleasant aroma, \w as|strong="H6213"\w* \w its|strong="H6213"\w* memorial \w portion|strong="H2706"\w*, \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 16 \w That|strong="H3605"\w* \w which|strong="H3548"\w* \w is|strong="H3605"\w* \w left|strong="H3548"\w* \w of|strong="H3605"\w* \w it|strong="H1961"\w* Aaron \w and|strong="H3548"\w* \w his|strong="H3605"\w* sons \w shall|strong="H3548"\w* eat. \w It|strong="H1961"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* eaten \w without|strong="H3808"\w* yeast \w in|strong="H3808"\w* \w a|strong="H3068"\w* holy \w place|strong="H1961"\w*. \w They|strong="H3808"\w* \w shall|strong="H3548"\w* eat \w it|strong="H1961"\w* \w in|strong="H3808"\w* \w the|strong="H3605"\w* court \w of|strong="H3605"\w* \w the|strong="H3605"\w* Tent \w of|strong="H3605"\w* Meeting. +\v 17 \w It|strong="H1696"\w* \w shall|strong="H3068"\w* \w not|strong="H1696"\w* \w be|strong="H3068"\w* baked \w with|strong="H3068"\w* yeast. \w I|strong="H3068"\w* \w have|strong="H3068"\w* given \w it|strong="H1696"\w* \w as|strong="H3068"\w* \w their|strong="H3068"\w* portion \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w offerings|strong="H3068"\w* \w made|strong="H1696"\w* \w by|strong="H3068"\w* fire. \w It|strong="H1696"\w* \w is|strong="H3068"\w* \w most|strong="H3068"\w* holy, \w as|strong="H3068"\w* \w are|strong="H3068"\w* \w the|strong="H3068"\w* sin \w offering|strong="H3068"\w* \w and|strong="H4872"\w* \w the|strong="H3068"\w* trespass \w offering|strong="H3068"\w*. +\v 18 \w Every|strong="H3068"\w* \w male|strong="H1121"\w* \w among|strong="H8451"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w shall|strong="H3068"\w* eat \w of|strong="H1121"\w* \w it|strong="H1931"\w*, \w as|strong="H3068"\w* \w their|strong="H3068"\w* \w portion|strong="H6944"\w* forever \w throughout|strong="H6440"\w* \w your|strong="H3068"\w* generations, \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w offerings|strong="H5930"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H1696"\w* \w by|strong="H3068"\w* fire. Whoever touches \w them|strong="H6440"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w holy|strong="H6944"\w*.’” +\p +\v 19 \w Yahweh|strong="H3068"\w* spoke \w to|strong="H4725"\w* Moses, saying, +\v 20 “\w This|strong="H6942"\w* \w is|strong="H3605"\w* \w the|strong="H3605"\w* offering \w of|strong="H6918"\w* Aaron \w and|strong="H1818"\w* \w of|strong="H6918"\w* \w his|strong="H3605"\w* sons, \w which|strong="H4725"\w* \w they|strong="H5921"\w* \w shall|strong="H1320"\w* offer \w to|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* day \w when|strong="H5060"\w* \w he|strong="H3605"\w* \w is|strong="H3605"\w* anointed: \w one|strong="H6918"\w* tenth \w of|strong="H6918"\w* \w an|strong="H5921"\w* ephah\f + \fr 6:20 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w of|strong="H6918"\w* fine flour \w for|strong="H5921"\w* \w a|strong="H3068"\w* meal offering \w perpetually|strong="H3605"\w*, half \w of|strong="H6918"\w* \w it|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* morning, \w and|strong="H1818"\w* half \w of|strong="H6918"\w* \w it|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* evening. +\v 21 \w It|strong="H7665"\w* \w shall|strong="H4325"\w* \w be|strong="H4325"\w* \w made|strong="H3627"\w* \w with|strong="H3627"\w* oil \w in|strong="H7665"\w* \w a|strong="H3068"\w* griddle. \w When|strong="H7665"\w* \w it|strong="H7665"\w* \w is|strong="H4325"\w* soaked, \w you|strong="H4325"\w* \w shall|strong="H4325"\w* \w bring|strong="H7665"\w* \w it|strong="H7665"\w* \w in|strong="H7665"\w*. \w You|strong="H4325"\w* \w shall|strong="H4325"\w* offer \w the|strong="H7665"\w* meal offering \w in|strong="H7665"\w* \w baked|strong="H1310"\w* \w pieces|strong="H7665"\w* \w for|strong="H4325"\w* \w a|strong="H3068"\w* pleasant aroma \w to|strong="H4325"\w* \w Yahweh|strong="H3068"\w*. +\v 22 \w The|strong="H3605"\w* anointed \w priest|strong="H3548"\w* \w that|strong="H3605"\w* \w will|strong="H1931"\w* \w be|strong="H2145"\w* \w in|strong="H2145"\w* \w his|strong="H3605"\w* \w place|strong="H6944"\w* \w from|strong="H2145"\w* among \w his|strong="H3605"\w* sons \w shall|strong="H3548"\w* offer \w it|strong="H1931"\w*. \w By|strong="H3605"\w* \w a|strong="H3068"\w* statute \w forever|strong="H3605"\w*, \w it|strong="H1931"\w* \w shall|strong="H3548"\w* \w be|strong="H2145"\w* \w wholly|strong="H3605"\w* burned \w to|strong="H3605"\w* \w Yahweh|strong="H3068"\w*. +\v 23 \w Every|strong="H3605"\w* meal \w offering|strong="H2403"\w* \w of|strong="H1818"\w* \w a|strong="H3068"\w* priest \w shall|strong="H3808"\w* \w be|strong="H3808"\w* \w wholly|strong="H3605"\w* \w burned|strong="H8313"\w*. \w It|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* eaten.” +\p +\v 24 \w Yahweh|strong="H3068"\w* spoke to Moses, saying, +\v 25 “Speak to Aaron and to his sons, saying, ‘This is the law of the sin offering: in the place where the burnt offering is killed, the sin offering shall be killed before \w Yahweh|strong="H3068"\w*. It is most holy. +\v 26 The priest who offers it for sin shall eat it. It shall be eaten in \w a|strong="H3068"\w* holy place, in the court of the Tent of Meeting. +\v 27 Whatever shall touch its flesh shall be holy. When there is any of its blood sprinkled on \w a|strong="H3068"\w* garment, you shall wash that on which it was sprinkled in \w a|strong="H3068"\w* holy place. +\v 28 But the earthen vessel in which it is boiled shall be broken; and if it is boiled in \w a|strong="H3068"\w* bronze vessel, it shall be scoured, and rinsed in water. +\v 29 Every male among the priests shall eat of it. It is most holy. +\v 30 No sin offering, of which any of the blood is brought into the Tent of Meeting to make atonement in the Holy Place, shall be eaten. It shall be burned with fire. +\c 7 +\p +\v 1 “‘\w This|strong="H2063"\w* \w is|strong="H1931"\w* \w the|strong="H1931"\w* \w law|strong="H8451"\w* \w of|strong="H8451"\w* \w the|strong="H1931"\w* trespass offering: \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w*. +\v 2 \w In|strong="H5921"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w where|strong="H4725"\w* \w they|strong="H5921"\w* \w kill|strong="H7819"\w* \w the|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w he|strong="H5921"\w* \w shall|strong="H1818"\w* \w kill|strong="H7819"\w* \w the|strong="H5921"\w* trespass \w offering|strong="H5930"\w*; \w and|strong="H4196"\w* \w its|strong="H5921"\w* \w blood|strong="H1818"\w* \w he|strong="H5921"\w* \w shall|strong="H1818"\w* \w sprinkle|strong="H2236"\w* \w around|strong="H5439"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*. +\v 3 \w He|strong="H3605"\w* shall \w offer|strong="H7126"\w* \w all|strong="H3605"\w* \w of|strong="H4480"\w* \w its|strong="H3605"\w* \w fat|strong="H2459"\w*: \w the|strong="H3605"\w* \w fat|strong="H2459"\w* tail, \w and|strong="H7126"\w* \w the|strong="H3605"\w* \w fat|strong="H2459"\w* \w that|strong="H3605"\w* \w covers|strong="H3680"\w* \w the|strong="H3605"\w* innards, +\v 4 \w and|strong="H8147"\w* \w he|strong="H8147"\w* \w shall|strong="H8147"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w kidneys|strong="H3629"\w*, \w and|strong="H8147"\w* \w the|strong="H5921"\w* \w fat|strong="H2459"\w* \w that|strong="H2459"\w* \w is|strong="H3516"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, which \w is|strong="H3516"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w loins|strong="H3689"\w*, \w and|strong="H8147"\w* \w the|strong="H5921"\w* cover \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w liver|strong="H3516"\w*, \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w kidneys|strong="H3629"\w*; +\v 5 \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w burn|strong="H6999"\w* \w them|strong="H4196"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w altar|strong="H4196"\w* \w for|strong="H3068"\w* \w an|strong="H3068"\w* \w offering|strong="H6999"\w* \w made|strong="H3068"\w* \w by|strong="H3068"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*: \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* trespass \w offering|strong="H6999"\w*. +\v 6 \w Every|strong="H3605"\w* \w male|strong="H2145"\w* among \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w may|strong="H3548"\w* eat \w of|strong="H6918"\w* \w it|strong="H1931"\w*. \w It|strong="H1931"\w* \w shall|strong="H3548"\w* \w be|strong="H2145"\w* eaten \w in|strong="H4725"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w place|strong="H4725"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w*. +\p +\v 7 “‘\w As|strong="H1961"\w* \w is|strong="H1961"\w* \w the|strong="H1961"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*, \w so|strong="H1961"\w* \w is|strong="H1961"\w* \w the|strong="H1961"\w* trespass \w offering|strong="H2403"\w*; \w there|strong="H1961"\w* \w is|strong="H1961"\w* \w one|strong="H1961"\w* \w law|strong="H8451"\w* \w for|strong="H3722"\w* \w them|strong="H1961"\w*. \w The|strong="H1961"\w* \w priest|strong="H3548"\w* \w who|strong="H3548"\w* \w makes|strong="H3722"\w* \w atonement|strong="H3722"\w* \w with|strong="H3548"\w* \w them|strong="H1961"\w* \w shall|strong="H3548"\w* \w have|strong="H1961"\w* \w it|strong="H1961"\w*. +\v 8 \w The|strong="H7126"\w* \w priest|strong="H3548"\w* \w who|strong="H3548"\w* \w offers|strong="H7126"\w* \w any|strong="H1961"\w* man’s \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w shall|strong="H3548"\w* \w have|strong="H1961"\w* \w for|strong="H1961"\w* himself \w the|strong="H7126"\w* \w skin|strong="H5785"\w* \w of|strong="H3548"\w* \w the|strong="H7126"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w which|strong="H3548"\w* \w he|strong="H7126"\w* \w has|strong="H1961"\w* \w offered|strong="H7126"\w*. +\v 9 \w Every|strong="H3605"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* baked \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w oven|strong="H8574"\w*, \w and|strong="H3548"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w prepared|strong="H6213"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w pan|strong="H4227"\w* \w and|strong="H3548"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w griddle|strong="H4227"\w*, \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w*’s \w who|strong="H3605"\w* \w offers|strong="H7126"\w* \w it|strong="H5921"\w*. +\v 10 \w Every|strong="H3605"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w* \w or|strong="H1121"\w* \w dry|strong="H2720"\w*, \w belongs|strong="H1961"\w* \w to|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron, \w one|strong="H3605"\w* \w as|strong="H1961"\w* well \w as|strong="H1961"\w* another. +\p +\v 11 “‘\w This|strong="H2063"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w law|strong="H8451"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w which|strong="H3068"\w* \w one|strong="H3068"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*: +\v 12 If \w he|strong="H5921"\w* \w offers|strong="H7126"\w* \w it|strong="H5921"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w thanksgiving|strong="H8426"\w*, \w then|strong="H7126"\w* \w he|strong="H5921"\w* shall \w offer|strong="H7126"\w* \w with|strong="H1101"\w* \w the|strong="H5921"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H2077"\w* \w thanksgiving|strong="H8426"\w* \w unleavened|strong="H4682"\w* \w cakes|strong="H2471"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w*, \w and|strong="H8081"\w* \w unleavened|strong="H4682"\w* \w wafers|strong="H7550"\w* \w anointed|strong="H4886"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w*, \w and|strong="H8081"\w* \w cakes|strong="H2471"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w*. +\v 13 \w He|strong="H5921"\w* \w shall|strong="H7133"\w* \w offer|strong="H7126"\w* \w his|strong="H5921"\w* \w offering|strong="H7133"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H2077"\w* \w his|strong="H5921"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w for|strong="H5921"\w* \w thanksgiving|strong="H8426"\w* \w with|strong="H5921"\w* \w cakes|strong="H2471"\w* \w of|strong="H2077"\w* \w leavened|strong="H2557"\w* \w bread|strong="H3899"\w*. +\v 14 \w Of|strong="H3068"\w* \w it|strong="H7126"\w* \w he|strong="H3068"\w* \w shall|strong="H3548"\w* \w offer|strong="H7126"\w* \w one|strong="H3605"\w* \w out|strong="H4480"\w* \w of|strong="H3068"\w* \w each|strong="H3605"\w* \w offering|strong="H7133"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w heave|strong="H8641"\w* \w offering|strong="H7133"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w It|strong="H7126"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w*’s \w who|strong="H3605"\w* \w sprinkles|strong="H2236"\w* \w the|strong="H3605"\w* \w blood|strong="H1818"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*. +\v 15 \w The|strong="H4480"\w* \w flesh|strong="H1320"\w* \w of|strong="H3117"\w* \w the|strong="H4480"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H3117"\w* \w his|strong="H4480"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w for|strong="H5704"\w* \w thanksgiving|strong="H8426"\w* \w shall|strong="H3117"\w* \w be|strong="H3808"\w* eaten \w on|strong="H3117"\w* \w the|strong="H4480"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w his|strong="H4480"\w* \w offering|strong="H7133"\w*. \w He|strong="H3117"\w* \w shall|strong="H3117"\w* \w not|strong="H3808"\w* \w leave|strong="H3240"\w* \w any|strong="H4480"\w* \w of|strong="H3117"\w* \w it|strong="H1242"\w* \w until|strong="H5704"\w* \w the|strong="H4480"\w* \w morning|strong="H1242"\w*. +\p +\v 16 “‘\w But|strong="H3498"\w* if \w the|strong="H4480"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H3117"\w* \w his|strong="H7126"\w* \w offering|strong="H7133"\w* \w is|strong="H3117"\w* \w a|strong="H3068"\w* \w vow|strong="H5088"\w*, \w or|strong="H3117"\w* \w a|strong="H3068"\w* free \w will|strong="H3117"\w* \w offering|strong="H7133"\w*, \w it|strong="H7126"\w* \w shall|strong="H3117"\w* \w be|strong="H3117"\w* eaten \w on|strong="H3117"\w* \w the|strong="H4480"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w he|strong="H3117"\w* \w offers|strong="H7126"\w* \w his|strong="H7126"\w* \w sacrifice|strong="H2077"\w*. \w On|strong="H3117"\w* \w the|strong="H4480"\w* \w next|strong="H4283"\w* \w day|strong="H3117"\w* what \w remains|strong="H3498"\w* \w of|strong="H3117"\w* \w it|strong="H7126"\w* \w shall|strong="H3117"\w* \w be|strong="H3117"\w* eaten, +\v 17 \w but|strong="H3498"\w* what \w remains|strong="H3498"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w meat|strong="H1320"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w sacrifice|strong="H2077"\w* \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w* \w shall|strong="H3117"\w* \w be|strong="H3117"\w* \w burned|strong="H8313"\w* \w with|strong="H8313"\w* fire. +\v 18 \w If|strong="H1961"\w* \w any|strong="H4480"\w* \w of|strong="H3117"\w* \w the|strong="H5375"\w* \w meat|strong="H1320"\w* \w of|strong="H3117"\w* \w the|strong="H5375"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H3117"\w* \w his|strong="H5375"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w is|strong="H5315"\w* eaten \w on|strong="H3117"\w* \w the|strong="H5375"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*, \w it|strong="H7126"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w accepted|strong="H7521"\w*, \w and|strong="H3117"\w* \w it|strong="H7126"\w* \w shall|strong="H5315"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w credited|strong="H2803"\w* \w to|strong="H1961"\w* \w him|strong="H5315"\w* \w who|strong="H5315"\w* \w offers|strong="H7126"\w* \w it|strong="H7126"\w*. \w It|strong="H7126"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w an|strong="H7126"\w* \w abomination|strong="H6292"\w*, \w and|strong="H3117"\w* \w the|strong="H5375"\w* \w soul|strong="H5315"\w* \w who|strong="H5315"\w* eats \w any|strong="H4480"\w* \w of|strong="H3117"\w* \w it|strong="H7126"\w* \w will|strong="H1961"\w* \w bear|strong="H5375"\w* \w his|strong="H5375"\w* \w iniquity|strong="H5771"\w*. +\p +\v 19 “‘\w The|strong="H3605"\w* \w meat|strong="H1320"\w* \w that|strong="H3605"\w* \w touches|strong="H5060"\w* \w any|strong="H3605"\w* \w unclean|strong="H2931"\w* \w thing|strong="H3605"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* eaten. \w It|strong="H3808"\w* \w shall|strong="H3808"\w* \w be|strong="H3808"\w* \w burned|strong="H8313"\w* \w with|strong="H8313"\w* fire. \w As|strong="H3605"\w* \w for|strong="H3605"\w* \w the|strong="H3605"\w* \w meat|strong="H1320"\w*, \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3605"\w* \w clean|strong="H2889"\w* \w may|strong="H2889"\w* eat \w it|strong="H3808"\w*; +\v 20 \w but|strong="H1931"\w* \w the|strong="H5921"\w* \w soul|strong="H5315"\w* \w who|strong="H1931"\w* eats \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w meat|strong="H1320"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w that|strong="H5971"\w* belongs \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w having|strong="H5315"\w* \w his|strong="H3068"\w* \w uncleanness|strong="H2932"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w that|strong="H5971"\w* \w soul|strong="H5315"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*. +\v 21 \w When|strong="H3588"\w* \w anyone|strong="H3605"\w* \w touches|strong="H5060"\w* \w any|strong="H3605"\w* \w unclean|strong="H2931"\w* \w thing|strong="H2932"\w*, \w the|strong="H3605"\w* \w uncleanness|strong="H2932"\w* \w of|strong="H3068"\w* \w man|strong="H5315"\w*, \w or|strong="H3068"\w* \w an|strong="H3772"\w* \w unclean|strong="H2931"\w* animal, \w or|strong="H3068"\w* \w any|strong="H3605"\w* \w unclean|strong="H2931"\w* \w abomination|strong="H8263"\w*, \w and|strong="H3068"\w* eats \w some|strong="H5971"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w meat|strong="H1320"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w which|strong="H1931"\w* belong \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w that|strong="H3588"\w* \w soul|strong="H5315"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*.’” +\p +\v 22 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 23 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w saying|strong="H1696"\w*, ‘\w You|strong="H3605"\w* \w shall|strong="H1121"\w* eat \w no|strong="H3808"\w* \w fat|strong="H2459"\w*, \w of|strong="H1121"\w* \w bull|strong="H7794"\w*, \w or|strong="H3808"\w* \w sheep|strong="H3775"\w*, \w or|strong="H3808"\w* \w goat|strong="H5795"\w*. +\v 24 \w The|strong="H3605"\w* \w fat|strong="H2459"\w* \w of|strong="H3605"\w* \w that|strong="H3605"\w* \w which|strong="H5038"\w* \w dies|strong="H5038"\w* \w of|strong="H3605"\w* \w itself|strong="H5038"\w*, \w and|strong="H6213"\w* \w the|strong="H3605"\w* \w fat|strong="H2459"\w* \w of|strong="H3605"\w* \w that|strong="H3605"\w* \w which|strong="H5038"\w* \w is|strong="H3605"\w* \w torn|strong="H2966"\w* \w of|strong="H3605"\w* animals, \w may|strong="H6213"\w* \w be|strong="H3808"\w* \w used|strong="H6213"\w* \w for|strong="H6213"\w* \w any|strong="H3605"\w* \w other|strong="H3605"\w* \w service|strong="H4399"\w*, \w but|strong="H3808"\w* \w you|strong="H3605"\w* \w shall|strong="H3808"\w* \w in|strong="H6213"\w* \w no|strong="H3808"\w* \w way|strong="H3605"\w* eat \w of|strong="H3605"\w* \w it|strong="H6213"\w*. +\v 25 \w For|strong="H3588"\w* \w whoever|strong="H3605"\w* eats \w the|strong="H3605"\w* \w fat|strong="H2459"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* animal \w which|strong="H3068"\w* \w men|strong="H5971"\w* \w offer|strong="H7126"\w* \w as|strong="H5315"\w* \w an|strong="H7126"\w* \w offering|strong="H7126"\w* \w made|strong="H3772"\w* \w by|strong="H3068"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w even|strong="H3588"\w* \w the|strong="H3605"\w* \w soul|strong="H5315"\w* \w who|strong="H3605"\w* eats \w it|strong="H7126"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H4480"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*. +\v 26 \w You|strong="H3605"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* eat \w any|strong="H3605"\w* \w blood|strong="H1818"\w*, whether \w it|strong="H3808"\w* \w is|strong="H3605"\w* \w of|strong="H1818"\w* \w bird|strong="H5775"\w* \w or|strong="H3808"\w* \w of|strong="H1818"\w* animal, \w in|strong="H4186"\w* \w any|strong="H3605"\w* \w of|strong="H1818"\w* \w your|strong="H3605"\w* \w dwellings|strong="H4186"\w*. +\v 27 \w Whoever|strong="H3605"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w who|strong="H3605"\w* eats \w any|strong="H3605"\w* \w blood|strong="H1818"\w*, \w that|strong="H5971"\w* \w soul|strong="H5315"\w* \w shall|strong="H5971"\w* \w be|strong="H5315"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*.’” +\p +\v 28 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 29 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w saying|strong="H1696"\w*, ‘\w He|strong="H3068"\w* \w who|strong="H3068"\w* \w offers|strong="H7126"\w* \w the|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H1121"\w* \w his|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w* \w shall|strong="H3068"\w* \w bring|strong="H7126"\w* \w his|strong="H3068"\w* \w offering|strong="H7133"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w* \w out|strong="H1696"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H1121"\w* \w his|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*. +\v 30 \w With|strong="H3068"\w* \w his|strong="H3068"\w* \w own|strong="H3027"\w* \w hands|strong="H3027"\w* \w he|strong="H3068"\w* \w shall|strong="H3068"\w* bring \w the|strong="H6440"\w* \w offerings|strong="H8573"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H3068"\w* \w by|strong="H3027"\w* fire. \w He|strong="H3068"\w* \w shall|strong="H3068"\w* bring \w the|strong="H6440"\w* \w fat|strong="H2459"\w* \w with|strong="H3068"\w* \w the|strong="H6440"\w* \w breast|strong="H2373"\w*, \w that|strong="H2459"\w* \w the|strong="H6440"\w* \w breast|strong="H2373"\w* \w may|strong="H3068"\w* \w be|strong="H3027"\w* \w waved|strong="H5130"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w wave|strong="H8573"\w* \w offering|strong="H8573"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 31 \w The|strong="H1961"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w burn|strong="H6999"\w* \w the|strong="H1961"\w* \w fat|strong="H2459"\w* \w on|strong="H1961"\w* \w the|strong="H1961"\w* \w altar|strong="H4196"\w*, \w but|strong="H1961"\w* \w the|strong="H1961"\w* \w breast|strong="H2373"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* Aaron’s \w and|strong="H1121"\w* \w his|strong="H1961"\w* \w sons|strong="H1121"\w*’. +\v 32 \w The|strong="H5414"\w* \w right|strong="H3225"\w* \w thigh|strong="H7785"\w* \w you|strong="H5414"\w* \w shall|strong="H3548"\w* \w give|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w priest|strong="H3548"\w* \w for|strong="H5414"\w* \w a|strong="H3068"\w* \w heave|strong="H8641"\w* \w offering|strong="H8641"\w* \w out|strong="H5414"\w* \w of|strong="H2077"\w* \w the|strong="H5414"\w* \w sacrifices|strong="H2077"\w* \w of|strong="H2077"\w* \w your|strong="H5414"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*. +\v 33 \w He|strong="H7126"\w* among \w the|strong="H7126"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w who|strong="H1121"\w* \w offers|strong="H7126"\w* \w the|strong="H7126"\w* \w blood|strong="H1818"\w* \w of|strong="H1121"\w* \w the|strong="H7126"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w and|strong="H1121"\w* \w the|strong="H7126"\w* \w fat|strong="H2459"\w*, \w shall|strong="H1121"\w* \w have|strong="H1961"\w* \w the|strong="H7126"\w* \w right|strong="H3225"\w* \w thigh|strong="H7785"\w* \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w portion|strong="H4490"\w*. +\v 34 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w waved|strong="H8573"\w* \w breast|strong="H2373"\w* \w and|strong="H1121"\w* \w the|strong="H3588"\w* heaved \w thigh|strong="H7785"\w* \w I|strong="H3588"\w* \w have|strong="H1121"\w* \w taken|strong="H3947"\w* \w from|strong="H3478"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w out|strong="H5414"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w sacrifices|strong="H2077"\w* \w of|strong="H1121"\w* \w their|strong="H5414"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w and|strong="H1121"\w* \w have|strong="H1121"\w* \w given|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H3478"\w* Aaron \w the|strong="H3588"\w* \w priest|strong="H3548"\w* \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w his|strong="H5414"\w* \w sons|strong="H1121"\w* \w as|strong="H3588"\w* \w their|strong="H5414"\w* \w portion|strong="H2706"\w* \w forever|strong="H5769"\w* \w from|strong="H3478"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*.’” +\p +\v 35 \w This|strong="H2063"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w consecrated|strong="H4888"\w* \w portion|strong="H4888"\w* \w of|strong="H1121"\w* Aaron, \w and|strong="H1121"\w* \w the|strong="H3068"\w* \w consecrated|strong="H4888"\w* \w portion|strong="H4888"\w* \w of|strong="H1121"\w* \w his|strong="H3068"\w* \w sons|strong="H1121"\w*, out \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w offerings|strong="H3068"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H3068"\w* \w by|strong="H3117"\w* fire, \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w when|strong="H3117"\w* \w he|strong="H3117"\w* \w presented|strong="H7126"\w* \w them|strong="H7126"\w* \w to|strong="H3068"\w* \w minister|strong="H3547"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w priest|strong="H3547"\w*’s office; +\v 36 \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w to|strong="H3478"\w* \w be|strong="H3068"\w* \w given|strong="H5414"\w* \w them|strong="H5414"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w in|strong="H3478"\w* \w the|strong="H5414"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w he|strong="H3117"\w* \w anointed|strong="H4886"\w* \w them|strong="H5414"\w*. \w It|strong="H5414"\w* \w is|strong="H3068"\w* \w their|strong="H3068"\w* portion \w forever|strong="H5769"\w* \w throughout|strong="H1755"\w* \w their|strong="H3068"\w* \w generations|strong="H1755"\w*. +\v 37 \w This|strong="H2063"\w* \w is|strong="H8451"\w* \w the|strong="H8451"\w* \w law|strong="H8451"\w* \w of|strong="H2077"\w* \w the|strong="H8451"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, \w the|strong="H8451"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w the|strong="H8451"\w* \w sin|strong="H2403"\w* \w offering|strong="H4503"\w*, \w the|strong="H8451"\w* trespass \w offering|strong="H4503"\w*, \w the|strong="H8451"\w* \w consecration|strong="H4394"\w*, \w and|strong="H5930"\w* \w the|strong="H8451"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H2077"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* +\v 38 \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w* \w in|strong="H3478"\w* \w Mount|strong="H2022"\w* \w Sinai|strong="H5514"\w* \w in|strong="H3478"\w* \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w he|strong="H3117"\w* \w commanded|strong="H6680"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w offer|strong="H7126"\w* \w their|strong="H3068"\w* \w offerings|strong="H7133"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w in|strong="H3478"\w* \w the|strong="H3068"\w* \w wilderness|strong="H4057"\w* \w of|strong="H1121"\w* \w Sinai|strong="H5514"\w*. +\c 8 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Take|strong="H3947"\w* Aaron \w and|strong="H1121"\w* \w his|strong="H3947"\w* \w sons|strong="H1121"\w* \w with|strong="H3947"\w* \w him|strong="H3947"\w*, \w and|strong="H1121"\w* \w the|strong="H3947"\w* garments, \w and|strong="H1121"\w* \w the|strong="H3947"\w* \w anointing|strong="H4888"\w* \w oil|strong="H8081"\w*, \w and|strong="H1121"\w* \w the|strong="H3947"\w* \w bull|strong="H6499"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*, \w and|strong="H1121"\w* \w the|strong="H3947"\w* \w two|strong="H8147"\w* rams, \w and|strong="H1121"\w* \w the|strong="H3947"\w* \w basket|strong="H5536"\w* \w of|strong="H1121"\w* \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w*; +\v 3 \w and|strong="H4150"\w* \w assemble|strong="H6950"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w at|strong="H6950"\w* \w the|strong="H3605"\w* \w door|strong="H6607"\w* \w of|strong="H5712"\w* \w the|strong="H3605"\w* Tent \w of|strong="H5712"\w* \w Meeting|strong="H4150"\w*.” +\p +\v 4 \w Moses|strong="H4872"\w* \w did|strong="H6213"\w* \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w him|strong="H6213"\w*; \w and|strong="H4872"\w* \w the|strong="H6213"\w* \w congregation|strong="H5712"\w* \w was|strong="H3068"\w* \w assembled|strong="H6950"\w* \w at|strong="H3068"\w* \w the|strong="H6213"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*. +\v 5 \w Moses|strong="H4872"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w the|strong="H6213"\w* \w congregation|strong="H5712"\w*, “\w This|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H6213"\w* \w thing|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w* \w to|strong="H3068"\w* \w be|strong="H1697"\w* \w done|strong="H6213"\w*.” +\v 6 \w Moses|strong="H4872"\w* \w brought|strong="H7126"\w* Aaron \w and|strong="H1121"\w* \w his|strong="H7364"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w washed|strong="H7364"\w* \w them|strong="H7126"\w* \w with|strong="H7364"\w* \w water|strong="H4325"\w*. +\v 7 \w He|strong="H5414"\w* \w put|strong="H5414"\w* \w the|strong="H5921"\w* \w tunic|strong="H3801"\w* \w on|strong="H5921"\w* \w him|strong="H5414"\w*, \w tied|strong="H5414"\w* \w the|strong="H5921"\w* sash \w on|strong="H5921"\w* \w him|strong="H5414"\w*, \w clothed|strong="H3847"\w* \w him|strong="H5414"\w* \w with|strong="H3847"\w* \w the|strong="H5921"\w* \w robe|strong="H4598"\w*, \w put|strong="H5414"\w* \w the|strong="H5921"\w* ephod \w on|strong="H5921"\w* \w him|strong="H5414"\w*, \w and|strong="H4598"\w* \w he|strong="H5414"\w* \w tied|strong="H5414"\w* \w the|strong="H5921"\w* \w skillfully|strong="H2805"\w* \w woven|strong="H2805"\w* \w band|strong="H2805"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* ephod \w on|strong="H5921"\w* \w him|strong="H5414"\w* \w and|strong="H4598"\w* \w fastened|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H5921"\w* \w him|strong="H5414"\w* \w with|strong="H3847"\w* \w it|strong="H5414"\w*. +\v 8 \w He|strong="H5414"\w* \w placed|strong="H5414"\w* \w the|strong="H5921"\w* \w breastplate|strong="H2833"\w* \w on|strong="H5921"\w* \w him|strong="H5414"\w*. \w He|strong="H5414"\w* \w put|strong="H5414"\w* \w the|strong="H5921"\w* Urim \w and|strong="H5921"\w* \w Thummim|strong="H8550"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w breastplate|strong="H2833"\w*. +\v 9 \w He|strong="H3068"\w* \w set|strong="H7760"\w* \w the|strong="H6440"\w* \w turban|strong="H4701"\w* \w on|strong="H5921"\w* \w his|strong="H7760"\w* \w head|strong="H7218"\w*. \w He|strong="H3068"\w* \w set|strong="H7760"\w* \w the|strong="H6440"\w* \w golden|strong="H2091"\w* \w plate|strong="H6731"\w*, \w the|strong="H6440"\w* \w holy|strong="H6944"\w* \w crown|strong="H5145"\w*, \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w front|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w turban|strong="H4701"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\v 10 \w Moses|strong="H4872"\w* \w took|strong="H3947"\w* \w the|strong="H3605"\w* \w anointing|strong="H4888"\w* \w oil|strong="H8081"\w*, \w and|strong="H4872"\w* \w anointed|strong="H4886"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w* \w and|strong="H4872"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w was|strong="H4872"\w* \w in|strong="H4872"\w* \w it|strong="H6942"\w*, \w and|strong="H4872"\w* \w sanctified|strong="H6942"\w* \w them|strong="H3947"\w*. +\v 11 \w He|strong="H3605"\w* \w sprinkled|strong="H5137"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w seven|strong="H7651"\w* \w times|strong="H6471"\w*, \w and|strong="H4196"\w* \w anointed|strong="H4886"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w and|strong="H4196"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w vessels|strong="H3627"\w*, \w and|strong="H4196"\w* \w the|strong="H3605"\w* \w basin|strong="H3595"\w* \w and|strong="H4196"\w* \w its|strong="H3605"\w* \w base|strong="H3653"\w*, \w to|strong="H5921"\w* \w sanctify|strong="H6942"\w* \w them|strong="H5921"\w*. +\v 12 \w He|strong="H5921"\w* \w poured|strong="H3332"\w* some \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w anointing|strong="H4888"\w* \w oil|strong="H8081"\w* \w on|strong="H5921"\w* Aaron’s \w head|strong="H7218"\w*, \w and|strong="H7218"\w* \w anointed|strong="H4886"\w* \w him|strong="H5921"\w*, \w to|strong="H5921"\w* \w sanctify|strong="H6942"\w* \w him|strong="H5921"\w*. +\v 13 \w Moses|strong="H4872"\w* \w brought|strong="H7126"\w* Aaron’s \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w clothed|strong="H3847"\w* \w them|strong="H6680"\w* \w with|strong="H3847"\w* \w tunics|strong="H3801"\w*, \w and|strong="H1121"\w* tied sashes \w on|strong="H3847"\w* \w them|strong="H6680"\w*, \w and|strong="H1121"\w* \w put|strong="H3847"\w* \w headbands|strong="H4021"\w* \w on|strong="H3847"\w* \w them|strong="H6680"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\p +\v 14 \w He|strong="H3027"\w* \w brought|strong="H5066"\w* \w the|strong="H5921"\w* \w bull|strong="H6499"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*, \w and|strong="H1121"\w* Aaron \w and|strong="H1121"\w* \w his|strong="H5921"\w* \w sons|strong="H1121"\w* \w laid|strong="H5564"\w* \w their|strong="H5564"\w* \w hands|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w bull|strong="H6499"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*. +\v 15 \w He|strong="H5414"\w* \w killed|strong="H7819"\w* \w it|strong="H5414"\w*; \w and|strong="H4872"\w* \w Moses|strong="H4872"\w* \w took|strong="H3947"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w*, \w and|strong="H4872"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w around|strong="H5439"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w horns|strong="H7161"\w* \w of|strong="H4196"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w with|strong="H5921"\w* \w his|strong="H5414"\w* finger, \w and|strong="H4872"\w* \w purified|strong="H2398"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*, \w and|strong="H4872"\w* \w poured|strong="H3332"\w* \w out|strong="H3332"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w base|strong="H3247"\w* \w of|strong="H4196"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*, \w and|strong="H4872"\w* \w sanctified|strong="H6942"\w* \w it|strong="H5414"\w*, \w to|strong="H5921"\w* \w make|strong="H5414"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w it|strong="H5414"\w*. +\v 16 \w He|strong="H3605"\w* \w took|strong="H3947"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fat|strong="H2459"\w* \w that|strong="H3605"\w* \w was|strong="H4872"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* innards, \w and|strong="H4872"\w* \w the|strong="H3605"\w* cover \w of|strong="H4196"\w* \w the|strong="H3605"\w* \w liver|strong="H3516"\w*, \w and|strong="H4872"\w* \w the|strong="H3605"\w* \w two|strong="H8147"\w* \w kidneys|strong="H3629"\w*, \w and|strong="H4872"\w* \w their|strong="H3605"\w* \w fat|strong="H2459"\w*; \w and|strong="H4872"\w* \w Moses|strong="H4872"\w* \w burned|strong="H6999"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*. +\v 17 \w But|strong="H3068"\w* \w the|strong="H3068"\w* \w bull|strong="H6499"\w*, \w and|strong="H4872"\w* its \w skin|strong="H5785"\w*, \w and|strong="H4872"\w* its \w meat|strong="H1320"\w*, \w and|strong="H4872"\w* its \w dung|strong="H6569"\w*, \w he|strong="H3068"\w* \w burned|strong="H8313"\w* \w with|strong="H8313"\w* fire \w outside|strong="H2351"\w* \w the|strong="H3068"\w* \w camp|strong="H4264"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\v 18 \w He|strong="H3027"\w* \w presented|strong="H7126"\w* \w the|strong="H5921"\w* ram \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*. Aaron \w and|strong="H1121"\w* \w his|strong="H5921"\w* \w sons|strong="H1121"\w* \w laid|strong="H5564"\w* \w their|strong="H5564"\w* \w hands|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* ram. +\v 19 \w He|strong="H5921"\w* \w killed|strong="H7819"\w* \w it|strong="H5921"\w*; \w and|strong="H4872"\w* \w Moses|strong="H4872"\w* \w sprinkled|strong="H2236"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w around|strong="H5439"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*. +\v 20 \w He|strong="H4872"\w* \w cut|strong="H5408"\w* \w the|strong="H4872"\w* ram into its \w pieces|strong="H5409"\w*; \w and|strong="H4872"\w* \w Moses|strong="H4872"\w* \w burned|strong="H6999"\w* \w the|strong="H4872"\w* \w head|strong="H7218"\w*, \w and|strong="H4872"\w* \w the|strong="H4872"\w* \w pieces|strong="H5409"\w*, \w and|strong="H4872"\w* \w the|strong="H4872"\w* \w fat|strong="H6309"\w*. +\v 21 \w He|strong="H1931"\w* \w washed|strong="H7364"\w* \w the|strong="H3605"\w* innards \w and|strong="H4872"\w* \w the|strong="H3605"\w* \w legs|strong="H3767"\w* \w with|strong="H3068"\w* \w water|strong="H4325"\w*; \w and|strong="H4872"\w* \w Moses|strong="H4872"\w* \w burned|strong="H6999"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* ram \w on|strong="H3068"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*. \w It|strong="H1931"\w* \w was|strong="H3068"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w*. \w It|strong="H1931"\w* \w was|strong="H3068"\w* \w an|strong="H3068"\w* \w offering|strong="H5930"\w* \w made|strong="H3068"\w* \w by|strong="H3068"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\v 22 \w He|strong="H3027"\w* \w presented|strong="H7126"\w* \w the|strong="H5921"\w* \w other|strong="H8145"\w* ram, \w the|strong="H5921"\w* ram \w of|strong="H1121"\w* \w consecration|strong="H4394"\w*. Aaron \w and|strong="H1121"\w* \w his|strong="H5921"\w* \w sons|strong="H1121"\w* \w laid|strong="H5564"\w* \w their|strong="H5564"\w* \w hands|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* ram. +\v 23 \w He|strong="H5414"\w* \w killed|strong="H7819"\w* \w it|strong="H5414"\w*; \w and|strong="H4872"\w* \w Moses|strong="H4872"\w* \w took|strong="H3947"\w* \w some|strong="H3027"\w* \w of|strong="H3027"\w* \w its|strong="H5414"\w* \w blood|strong="H1818"\w*, \w and|strong="H4872"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tip|strong="H8571"\w* \w of|strong="H3027"\w* Aaron’s \w right|strong="H3233"\w* ear, \w and|strong="H4872"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* thumb \w of|strong="H3027"\w* \w his|strong="H5414"\w* \w right|strong="H3233"\w* \w hand|strong="H3027"\w*, \w and|strong="H4872"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* great toe \w of|strong="H3027"\w* \w his|strong="H5414"\w* \w right|strong="H3233"\w* \w foot|strong="H7272"\w*. +\v 24 \w He|strong="H5414"\w* \w brought|strong="H7126"\w* Aaron’s \w sons|strong="H1121"\w*; \w and|strong="H1121"\w* \w Moses|strong="H4872"\w* \w put|strong="H5414"\w* \w some|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tip|strong="H8571"\w* \w of|strong="H1121"\w* \w their|strong="H5414"\w* \w right|strong="H3233"\w* ear, \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* thumb \w of|strong="H1121"\w* \w their|strong="H5414"\w* \w right|strong="H3233"\w* \w hand|strong="H3027"\w*, \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* great toe \w of|strong="H1121"\w* \w their|strong="H5414"\w* \w right|strong="H3233"\w* \w foot|strong="H7272"\w*; \w and|strong="H1121"\w* \w Moses|strong="H4872"\w* \w sprinkled|strong="H2236"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w around|strong="H5439"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*. +\v 25 \w He|strong="H3605"\w* \w took|strong="H3947"\w* \w the|strong="H3605"\w* \w fat|strong="H2459"\w*, \w the|strong="H3605"\w* \w fat|strong="H2459"\w* tail, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fat|strong="H2459"\w* \w that|strong="H3605"\w* \w was|strong="H3605"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* innards, \w the|strong="H3605"\w* cover \w of|strong="H5921"\w* \w the|strong="H3605"\w* \w liver|strong="H3516"\w*, \w the|strong="H3605"\w* \w two|strong="H8147"\w* \w kidneys|strong="H3629"\w* \w and|strong="H8147"\w* \w their|strong="H3605"\w* \w fat|strong="H2459"\w*, \w and|strong="H8147"\w* \w the|strong="H3605"\w* \w right|strong="H3225"\w* \w thigh|strong="H7785"\w*; +\v 26 \w and|strong="H3068"\w* \w out|strong="H3947"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w basket|strong="H5536"\w* \w of|strong="H3068"\w* \w unleavened|strong="H4682"\w* \w bread|strong="H3899"\w* \w that|strong="H2459"\w* \w was|strong="H3068"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w he|strong="H3068"\w* \w took|strong="H3947"\w* \w one|strong="H3068"\w* \w unleavened|strong="H4682"\w* \w cake|strong="H2471"\w*, \w one|strong="H3068"\w* \w cake|strong="H2471"\w* \w of|strong="H3068"\w* \w oiled|strong="H8081"\w* \w bread|strong="H3899"\w*, \w and|strong="H3068"\w* \w one|strong="H3068"\w* \w wafer|strong="H7550"\w*, \w and|strong="H3068"\w* \w placed|strong="H7760"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w fat|strong="H2459"\w* \w and|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w right|strong="H3225"\w* \w thigh|strong="H7785"\w*. +\v 27 \w He|strong="H3068"\w* \w put|strong="H5414"\w* \w all|strong="H3605"\w* \w these|strong="H3605"\w* \w in|strong="H5921"\w* Aaron’s \w hands|strong="H3709"\w* \w and|strong="H1121"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w*’ \w hands|strong="H3709"\w*, \w and|strong="H1121"\w* \w waved|strong="H5130"\w* \w them|strong="H5414"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w wave|strong="H8573"\w* \w offering|strong="H8573"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 28 \w Moses|strong="H4872"\w* \w took|strong="H3947"\w* \w them|strong="H1992"\w* \w from|strong="H5921"\w* \w their|strong="H3068"\w* \w hands|strong="H3709"\w*, \w and|strong="H4872"\w* \w burned|strong="H6999"\w* \w them|strong="H1992"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*. \w They|strong="H1992"\w* \w were|strong="H1992"\w* \w a|strong="H3068"\w* \w consecration|strong="H4394"\w* \w offering|strong="H5930"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w*. \w It|strong="H1931"\w* \w was|strong="H3068"\w* \w an|strong="H3947"\w* \w offering|strong="H5930"\w* \w made|strong="H3068"\w* \w by|strong="H5921"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 29 \w Moses|strong="H4872"\w* \w took|strong="H3947"\w* \w the|strong="H6440"\w* \w breast|strong="H2373"\w*, \w and|strong="H4872"\w* \w waved|strong="H5130"\w* \w it|strong="H6440"\w* \w for|strong="H6440"\w* \w a|strong="H3068"\w* \w wave|strong="H8573"\w* \w offering|strong="H8573"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. \w It|strong="H6440"\w* \w was|strong="H3068"\w* \w Moses|strong="H4872"\w*’ \w portion|strong="H4490"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* ram \w of|strong="H3068"\w* \w consecration|strong="H4394"\w*, \w as|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\v 30 \w Moses|strong="H4872"\w* \w took|strong="H3947"\w* \w some|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w anointing|strong="H4888"\w* \w oil|strong="H8081"\w*, \w and|strong="H1121"\w* \w some|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w which|strong="H4196"\w* \w was|strong="H4872"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*, \w and|strong="H1121"\w* \w sprinkled|strong="H5137"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* Aaron, \w on|strong="H5921"\w* \w his|strong="H3947"\w* garments, \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w his|strong="H3947"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w his|strong="H3947"\w* \w sons|strong="H1121"\w*’ garments \w with|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H1121"\w* \w sanctified|strong="H6942"\w* Aaron, \w his|strong="H3947"\w* garments, \w and|strong="H1121"\w* \w his|strong="H3947"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w his|strong="H3947"\w* \w sons|strong="H1121"\w*’ garments \w with|strong="H5921"\w* \w him|strong="H5921"\w*. +\p +\v 31 \w Moses|strong="H4872"\w* said \w to|strong="H1121"\w* Aaron \w and|strong="H1121"\w* \w to|strong="H1121"\w* \w his|strong="H6680"\w* \w sons|strong="H1121"\w*, “\w Boil|strong="H1310"\w* \w the|strong="H6680"\w* \w meat|strong="H1320"\w* \w at|strong="H1121"\w* \w the|strong="H6680"\w* \w door|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H6680"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*, \w and|strong="H1121"\w* \w there|strong="H8033"\w* \w eat|strong="H3899"\w* \w it|strong="H8033"\w* \w and|strong="H1121"\w* \w the|strong="H6680"\w* \w bread|strong="H3899"\w* \w that|strong="H1121"\w* \w is|strong="H1320"\w* \w in|strong="H1320"\w* \w the|strong="H6680"\w* \w basket|strong="H5536"\w* \w of|strong="H1121"\w* \w consecration|strong="H4394"\w*, \w as|strong="H1121"\w* \w I|strong="H6680"\w* \w commanded|strong="H6680"\w*, saying, ‘Aaron \w and|strong="H1121"\w* \w his|strong="H6680"\w* \w sons|strong="H1121"\w* \w shall|strong="H1121"\w* \w eat|strong="H3899"\w* \w it|strong="H8033"\w*.’ +\v 32 What \w remains|strong="H3498"\w* \w of|strong="H3899"\w* \w the|strong="H8313"\w* \w meat|strong="H1320"\w* \w and|strong="H3899"\w* \w of|strong="H3899"\w* \w the|strong="H8313"\w* \w bread|strong="H3899"\w* \w you|strong="H1320"\w* \w shall|strong="H1320"\w* \w burn|strong="H8313"\w* \w with|strong="H8313"\w* fire. +\v 33 \w You|strong="H3588"\w* \w shall|strong="H3117"\w* \w not|strong="H3808"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w the|strong="H3588"\w* \w door|strong="H6607"\w* \w of|strong="H3117"\w* \w the|strong="H3588"\w* Tent \w of|strong="H3117"\w* \w Meeting|strong="H4150"\w* \w for|strong="H3588"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w until|strong="H5704"\w* \w the|strong="H3588"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H3588"\w* \w consecration|strong="H4394"\w* \w are|strong="H3117"\w* \w fulfilled|strong="H4390"\w*: \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w shall|strong="H3117"\w* \w consecrate|strong="H4390"\w* \w you|strong="H3588"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. +\v 34 \w What|strong="H2088"\w* \w has|strong="H3068"\w* \w been|strong="H3068"\w* \w done|strong="H6213"\w* \w today|strong="H3117"\w*, \w so|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w*, \w to|strong="H3068"\w* \w make|strong="H6213"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w you|strong="H6680"\w*. +\v 35 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w stay|strong="H3427"\w* \w at|strong="H3427"\w* \w the|strong="H3588"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w* \w day|strong="H3117"\w* \w and|strong="H3068"\w* \w night|strong="H3915"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w and|strong="H3068"\w* \w keep|strong="H8104"\w* \w Yahweh|strong="H3068"\w*’s \w command|strong="H6680"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* don’t \w die|strong="H4191"\w*: \w for|strong="H3588"\w* \w so|strong="H3651"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w commanded|strong="H6680"\w*.” +\v 36 Aaron \w and|strong="H1121"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w* \w did|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w things|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w*. +\c 9 +\p +\v 1 \w On|strong="H3117"\w* \w the|strong="H3117"\w* \w eighth|strong="H8066"\w* \w day|strong="H3117"\w*, \w Moses|strong="H4872"\w* \w called|strong="H7121"\w* Aaron \w and|strong="H1121"\w* \w his|strong="H7121"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w the|strong="H3117"\w* \w elders|strong="H2205"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; +\v 2 \w and|strong="H1121"\w* \w he|strong="H3068"\w* said \w to|strong="H3068"\w* Aaron, “\w Take|strong="H3947"\w* \w a|strong="H3068"\w* \w calf|strong="H5695"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w herd|strong="H1241"\w* \w for|strong="H6440"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w*, \w and|strong="H1121"\w* \w a|strong="H3068"\w* ram \w for|strong="H6440"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w without|strong="H8549"\w* \w defect|strong="H8549"\w*, \w and|strong="H1121"\w* \w offer|strong="H7126"\w* \w them|strong="H6440"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 3 \w You|strong="H3947"\w* \w shall|strong="H1121"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3947"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w saying|strong="H1696"\w*, ‘\w Take|strong="H3947"\w* \w a|strong="H3068"\w* \w male|strong="H3532"\w* \w goat|strong="H5795"\w* \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w*; \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w calf|strong="H5695"\w* \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w lamb|strong="H3532"\w*, both \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*, \w without|strong="H8549"\w* \w defect|strong="H8549"\w*, \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*; +\v 4 \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w bull|strong="H7794"\w* \w and|strong="H3068"\w* \w a|strong="H3068"\w* ram \w for|strong="H3588"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w to|strong="H3068"\w* \w sacrifice|strong="H2076"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w*: \w for|strong="H3588"\w* \w today|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w appears|strong="H7200"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w*.’” +\p +\v 5 \w They|strong="H3068"\w* \w brought|strong="H7126"\w* what \w Moses|strong="H4872"\w* \w commanded|strong="H6680"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w came|strong="H7126"\w* \w near|strong="H7126"\w* \w and|strong="H4872"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 6 \w Moses|strong="H4872"\w* \w said|strong="H1697"\w*, “\w This|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H7200"\w* \w thing|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w that|strong="H7200"\w* \w you|strong="H6680"\w* \w should|strong="H3068"\w* \w do|strong="H6213"\w*; \w and|strong="H4872"\w* \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w shall|strong="H3068"\w* \w appear|strong="H7200"\w* \w to|strong="H3068"\w* \w you|strong="H6680"\w*.” +\v 7 \w Moses|strong="H4872"\w* said \w to|strong="H3068"\w* Aaron, “\w Draw|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H3068"\w* \w the|strong="H6213"\w* \w altar|strong="H4196"\w*, \w and|strong="H4872"\w* \w offer|strong="H7126"\w* \w your|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w*, \w and|strong="H4872"\w* \w your|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w and|strong="H4872"\w* \w make|strong="H6213"\w* \w atonement|strong="H3722"\w* \w for|strong="H6213"\w* \w yourself|strong="H6213"\w*, \w and|strong="H4872"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w people|strong="H5971"\w*; \w and|strong="H4872"\w* \w offer|strong="H7126"\w* \w the|strong="H6213"\w* \w offering|strong="H5930"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* \w people|strong="H5971"\w*, \w and|strong="H4872"\w* \w make|strong="H6213"\w* \w atonement|strong="H3722"\w* \w for|strong="H6213"\w* \w them|strong="H6213"\w*, \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w*.” +\p +\v 8 \w So|strong="H7126"\w* Aaron \w came|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H7126"\w* \w the|strong="H7126"\w* \w altar|strong="H4196"\w*, \w and|strong="H4196"\w* \w killed|strong="H7819"\w* \w the|strong="H7126"\w* \w calf|strong="H5695"\w* \w of|strong="H4196"\w* \w the|strong="H7126"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*, \w which|strong="H4196"\w* was \w for|strong="H4196"\w* himself. +\v 9 \w The|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w presented|strong="H7126"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w to|strong="H5921"\w* \w him|strong="H5414"\w*; \w and|strong="H1121"\w* \w he|strong="H5414"\w* \w dipped|strong="H2881"\w* \w his|strong="H5414"\w* finger \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w*, \w and|strong="H1121"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w horns|strong="H7161"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*, \w and|strong="H1121"\w* \w poured|strong="H3332"\w* \w out|strong="H3332"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w base|strong="H3247"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*; +\v 10 \w but|strong="H3068"\w* \w the|strong="H3068"\w* \w fat|strong="H2459"\w*, \w and|strong="H4872"\w* \w the|strong="H3068"\w* \w kidneys|strong="H3629"\w*, \w and|strong="H4872"\w* \w the|strong="H3068"\w* cover \w from|strong="H4480"\w* \w the|strong="H3068"\w* \w liver|strong="H3516"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*, \w he|strong="H3068"\w* \w burned|strong="H6999"\w* upon \w the|strong="H3068"\w* \w altar|strong="H4196"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\v 11 \w The|strong="H2351"\w* \w meat|strong="H1320"\w* \w and|strong="H4264"\w* \w the|strong="H2351"\w* \w skin|strong="H5785"\w* \w he|strong="H5785"\w* \w burned|strong="H8313"\w* \w with|strong="H8313"\w* fire \w outside|strong="H2351"\w* \w the|strong="H2351"\w* \w camp|strong="H4264"\w*. +\v 12 \w He|strong="H5921"\w* \w killed|strong="H7819"\w* \w the|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*; \w and|strong="H1121"\w* Aaron’s \w sons|strong="H1121"\w* \w delivered|strong="H4672"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H1121"\w* \w he|strong="H5921"\w* \w sprinkled|strong="H2236"\w* \w it|strong="H5921"\w* \w around|strong="H5439"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*. +\v 13 \w They|strong="H5921"\w* \w delivered|strong="H4672"\w* \w the|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w*, \w piece|strong="H5409"\w* \w by|strong="H5921"\w* \w piece|strong="H5409"\w*, \w and|strong="H7218"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w*. \w He|strong="H5921"\w* \w burned|strong="H6999"\w* \w them|strong="H5921"\w* \w upon|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*. +\v 14 \w He|strong="H5921"\w* \w washed|strong="H7364"\w* \w the|strong="H5921"\w* innards \w and|strong="H4196"\w* \w the|strong="H5921"\w* \w legs|strong="H3767"\w*, \w and|strong="H4196"\w* \w burned|strong="H6999"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*. +\v 15 \w He|strong="H5971"\w* \w presented|strong="H7126"\w* \w the|strong="H3947"\w* \w people|strong="H5971"\w*’s \w offering|strong="H2403"\w*, \w and|strong="H5971"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w goat|strong="H8163"\w* \w of|strong="H5971"\w* \w the|strong="H3947"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w* \w which|strong="H5971"\w* \w was|strong="H5971"\w* \w for|strong="H5971"\w* \w the|strong="H3947"\w* \w people|strong="H5971"\w*, \w and|strong="H5971"\w* \w killed|strong="H7819"\w* \w it|strong="H7126"\w*, \w and|strong="H5971"\w* \w offered|strong="H7126"\w* \w it|strong="H7126"\w* \w for|strong="H5971"\w* \w sin|strong="H2403"\w*, \w like|strong="H2403"\w* \w the|strong="H3947"\w* \w first|strong="H7223"\w*. +\v 16 \w He|strong="H6213"\w* \w presented|strong="H7126"\w* \w the|strong="H6213"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w and|strong="H4941"\w* \w offered|strong="H7126"\w* \w it|strong="H7126"\w* \w according|strong="H4941"\w* \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w ordinance|strong="H4941"\w*. +\v 17 \w He|strong="H4480"\w* \w presented|strong="H7126"\w* \w the|strong="H5921"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w and|strong="H1242"\w* \w filled|strong="H4390"\w* \w his|strong="H5921"\w* \w hand|strong="H3709"\w* \w from|strong="H4480"\w* \w there|strong="H4480"\w*, \w and|strong="H1242"\w* \w burned|strong="H6999"\w* \w it|strong="H5921"\w* \w upon|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*, \w in|strong="H5921"\w* \w addition|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w* \w of|strong="H4196"\w* \w the|strong="H5921"\w* \w morning|strong="H1242"\w*. +\v 18 \w He|strong="H5921"\w* \w also|strong="H1121"\w* \w killed|strong="H7819"\w* \w the|strong="H5921"\w* \w bull|strong="H7794"\w* \w and|strong="H1121"\w* \w the|strong="H5921"\w* ram, \w the|strong="H5921"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H1121"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w which|strong="H5971"\w* \w was|strong="H1121"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w*. Aaron’s \w sons|strong="H1121"\w* \w delivered|strong="H4672"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w*, \w which|strong="H5971"\w* \w he|strong="H5921"\w* \w sprinkled|strong="H2236"\w* \w around|strong="H5439"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*; +\v 19 \w and|strong="H7794"\w* \w the|strong="H4480"\w* \w fat|strong="H2459"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w bull|strong="H7794"\w* \w and|strong="H7794"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* ram, \w the|strong="H4480"\w* \w fat|strong="H2459"\w* tail, \w and|strong="H7794"\w* \w that|strong="H2459"\w* which covers \w the|strong="H4480"\w* innards, \w and|strong="H7794"\w* \w the|strong="H4480"\w* \w kidneys|strong="H3629"\w*, \w and|strong="H7794"\w* \w the|strong="H4480"\w* \w cover|strong="H4374"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w liver|strong="H3516"\w*; +\v 20 \w and|strong="H4196"\w* \w they|strong="H5921"\w* \w put|strong="H7760"\w* \w the|strong="H5921"\w* \w fat|strong="H2459"\w* \w upon|strong="H5921"\w* \w the|strong="H5921"\w* \w breasts|strong="H2373"\w*, \w and|strong="H4196"\w* \w he|strong="H5921"\w* \w burned|strong="H6999"\w* \w the|strong="H5921"\w* \w fat|strong="H2459"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*. +\v 21 Aaron \w waved|strong="H5130"\w* \w the|strong="H6440"\w* \w breasts|strong="H2373"\w* \w and|strong="H4872"\w* \w the|strong="H6440"\w* \w right|strong="H3225"\w* \w thigh|strong="H7785"\w* \w for|strong="H6440"\w* \w a|strong="H3068"\w* \w wave|strong="H8573"\w* \w offering|strong="H8573"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w as|strong="H3068"\w* \w Moses|strong="H4872"\w* \w commanded|strong="H6680"\w*. +\v 22 Aaron \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w hands|strong="H3027"\w* \w toward|strong="H3027"\w* \w the|strong="H5375"\w* \w people|strong="H5971"\w*, \w and|strong="H3027"\w* \w blessed|strong="H1288"\w* \w them|strong="H3027"\w*; \w and|strong="H3027"\w* \w he|strong="H6213"\w* \w came|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H3381"\w* \w offering|strong="H5930"\w* \w the|strong="H5375"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w*, \w and|strong="H3027"\w* \w the|strong="H5375"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w and|strong="H3027"\w* \w the|strong="H5375"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*. +\p +\v 23 \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron \w went|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H3605"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, \w and|strong="H4872"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H4872"\w* \w blessed|strong="H1288"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*; \w and|strong="H4872"\w* \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w appeared|strong="H7200"\w* \w to|strong="H3318"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*. +\v 24 Fire \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* consumed \w the|strong="H3605"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w fat|strong="H2459"\w* \w upon|strong="H5921"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*. \w When|strong="H7200"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w saw|strong="H7200"\w* \w it|strong="H5921"\w*, \w they|strong="H3068"\w* \w shouted|strong="H7442"\w*, \w and|strong="H3068"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w their|strong="H3605"\w* \w faces|strong="H6440"\w*. +\c 10 +\p +\v 1 \w Nadab|strong="H5070"\w* \w and|strong="H1121"\w* Abihu, \w the|strong="H6440"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron, \w each|strong="H5414"\w* \w took|strong="H3947"\w* \w his|strong="H5414"\w* \w censer|strong="H4289"\w*, \w and|strong="H1121"\w* \w put|strong="H5414"\w* fire \w in|strong="H5921"\w* \w it|strong="H5414"\w*, \w and|strong="H1121"\w* \w laid|strong="H7760"\w* \w incense|strong="H7004"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w*, \w and|strong="H1121"\w* \w offered|strong="H7126"\w* \w strange|strong="H2114"\w* fire \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w* \w not|strong="H3808"\w* \w commanded|strong="H6680"\w* \w them|strong="H5414"\w*. +\v 2 Fire \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* devoured \w them|strong="H6440"\w*, \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w died|strong="H4191"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 3 \w Then|strong="H1696"\w* \w Moses|strong="H4872"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* Aaron, “\w This|strong="H1931"\w* \w is|strong="H3068"\w* \w what|strong="H1696"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w of|strong="H3068"\w*, \w saying|strong="H1696"\w*, +\q1 ‘\w I|strong="H5921"\w* \w will|strong="H3068"\w* \w show|strong="H6942"\w* \w myself|strong="H6942"\w* \w holy|strong="H6942"\w* \w to|strong="H1696"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w come|strong="H5971"\w* \w near|strong="H7138"\w* \w me|strong="H6440"\w*, +\q2 \w and|strong="H4872"\w* \w before|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w glorified|strong="H3513"\w*.’” +\p Aaron \w held|strong="H4872"\w* \w his|strong="H3605"\w* \w peace|strong="H1826"\w*. +\v 4 \w Moses|strong="H4872"\w* \w called|strong="H7121"\w* \w Mishael|strong="H4332"\w* \w and|strong="H1121"\w* Elzaphan, \w the|strong="H6440"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Uzziel|strong="H5816"\w* \w the|strong="H6440"\w* \w uncle|strong="H1730"\w* \w of|strong="H1121"\w* Aaron, \w and|strong="H1121"\w* \w said|strong="H7121"\w* \w to|strong="H6440"\w* \w them|strong="H6440"\w*, “\w Draw|strong="H7126"\w* \w near|strong="H7126"\w*, \w carry|strong="H5375"\w* \w your|strong="H5375"\w* \w brothers|strong="H1121"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w sanctuary|strong="H6944"\w* \w out|strong="H2351"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w camp|strong="H4264"\w*.” +\v 5 \w So|strong="H5375"\w* \w they|strong="H5375"\w* \w came|strong="H7126"\w* \w near|strong="H7126"\w*, \w and|strong="H4872"\w* \w carried|strong="H5375"\w* \w them|strong="H7126"\w* \w in|strong="H1696"\w* \w their|strong="H5375"\w* \w tunics|strong="H3801"\w* \w out|strong="H2351"\w* \w of|strong="H4264"\w* \w the|strong="H5375"\w* \w camp|strong="H4264"\w*, \w as|strong="H1696"\w* \w Moses|strong="H4872"\w* \w had|strong="H4872"\w* \w said|strong="H1696"\w*. +\p +\v 6 \w Moses|strong="H4872"\w* said \w to|strong="H3478"\w* Aaron, \w and|strong="H1121"\w* \w to|strong="H3478"\w* Eleazar \w and|strong="H1121"\w* \w to|strong="H3478"\w* Ithamar, \w his|strong="H3605"\w* \w sons|strong="H1121"\w*, “Don’t \w let|strong="H3808"\w* \w the|strong="H3605"\w* \w hair|strong="H7218"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* \w heads|strong="H7218"\w* \w go|strong="H3068"\w* \w loose|strong="H5921"\w*, \w and|strong="H1121"\w* don’t \w tear|strong="H6533"\w* \w your|strong="H3068"\w* clothes, \w so|strong="H3808"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* don’t \w die|strong="H4191"\w*, \w and|strong="H1121"\w* \w so|strong="H3808"\w* \w that|strong="H3605"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H4191"\w* \w angry|strong="H7107"\w* \w with|strong="H8313"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w*; \w but|strong="H3808"\w* \w let|strong="H3808"\w* \w your|strong="H3068"\w* \w brothers|strong="H1121"\w*, \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w bewail|strong="H1058"\w* \w the|strong="H3605"\w* \w burning|strong="H8316"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w kindled|strong="H8313"\w*. +\v 7 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w the|strong="H5921"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, \w lest|strong="H6435"\w* \w you|strong="H3588"\w* \w die|strong="H4191"\w*; \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w anointing|strong="H4888"\w* \w oil|strong="H8081"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*.” \w They|strong="H3588"\w* \w did|strong="H6213"\w* \w according|strong="H5921"\w* \w to|strong="H3318"\w* \w the|strong="H5921"\w* \w word|strong="H1697"\w* \w of|strong="H3068"\w* \w Moses|strong="H4872"\w*. +\v 8 \w Then|strong="H1696"\w* \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* Aaron, +\v 9 “\w You|strong="H3808"\w* \w and|strong="H1121"\w* \w your|strong="H3808"\w* \w sons|strong="H1121"\w* \w are|strong="H1121"\w* \w not|strong="H3808"\w* \w to|strong="H4191"\w* \w drink|strong="H8354"\w* \w wine|strong="H3196"\w* \w or|strong="H3808"\w* \w strong|strong="H7941"\w* \w drink|strong="H8354"\w* whenever \w you|strong="H3808"\w* go into \w the|strong="H4191"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*, \w or|strong="H3808"\w* \w you|strong="H3808"\w* \w will|strong="H1121"\w* \w die|strong="H4191"\w*. \w This|strong="H4191"\w* \w shall|strong="H1121"\w* \w be|strong="H4191"\w* \w a|strong="H3068"\w* \w statute|strong="H2708"\w* \w forever|strong="H5769"\w* \w throughout|strong="H1755"\w* \w your|strong="H3808"\w* \w generations|strong="H1755"\w*. +\v 10 You \w are|strong="H6944"\w* \w to|strong="H6944"\w* make \w a|strong="H3068"\w* distinction between \w the|strong="H2455"\w* \w holy|strong="H6944"\w* \w and|strong="H6944"\w* \w the|strong="H2455"\w* \w common|strong="H2455"\w*, \w and|strong="H6944"\w* between \w the|strong="H2455"\w* \w unclean|strong="H2931"\w* \w and|strong="H6944"\w* \w the|strong="H2455"\w* \w clean|strong="H2889"\w*. +\v 11 \w You|strong="H3605"\w* \w are|strong="H1121"\w* \w to|strong="H1696"\w* \w teach|strong="H3384"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w statutes|strong="H2706"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H3027"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w*.” +\p +\v 12 \w Moses|strong="H4872"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* Aaron, \w and|strong="H1121"\w* \w to|strong="H1696"\w* Eleazar \w and|strong="H1121"\w* \w to|strong="H1696"\w* Ithamar, \w his|strong="H3068"\w* \w sons|strong="H1121"\w* \w who|strong="H1931"\w* \w were|strong="H1121"\w* \w left|strong="H3498"\w*, “\w Take|strong="H3947"\w* \w the|strong="H3588"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w that|strong="H3588"\w* \w remains|strong="H3498"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w offerings|strong="H4503"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H1696"\w* \w by|strong="H3068"\w* fire, \w and|strong="H1121"\w* eat \w it|strong="H1931"\w* \w without|strong="H3588"\w* yeast beside \w the|strong="H3588"\w* \w altar|strong="H4196"\w*; \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w*; +\v 13 \w and|strong="H1121"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* eat \w it|strong="H1931"\w* \w in|strong="H3068"\w* \w a|strong="H3068"\w* \w holy|strong="H6918"\w* \w place|strong="H4725"\w*, \w because|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w your|strong="H3068"\w* \w portion|strong="H2706"\w*, \w and|strong="H1121"\w* \w your|strong="H3068"\w* \w sons|strong="H1121"\w*’ \w portion|strong="H2706"\w*, \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w offerings|strong="H3588"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H3068"\w* \w by|strong="H3068"\w* fire; \w for|strong="H3588"\w* \w so|strong="H3651"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w commanded|strong="H6680"\w*. +\v 14 \w The|strong="H3588"\w* \w waved|strong="H8573"\w* \w breast|strong="H2373"\w* \w and|strong="H1121"\w* \w the|strong="H3588"\w* heaved \w thigh|strong="H7785"\w* \w you|strong="H3588"\w* \w shall|strong="H1121"\w* eat \w in|strong="H3478"\w* \w a|strong="H3068"\w* \w clean|strong="H2889"\w* \w place|strong="H4725"\w*, \w you|strong="H3588"\w*, \w and|strong="H1121"\w* \w your|strong="H5414"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w your|strong="H5414"\w* \w daughters|strong="H1323"\w* \w with|strong="H3478"\w* \w you|strong="H3588"\w*: \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H1121"\w* \w given|strong="H5414"\w* \w as|strong="H3588"\w* \w your|strong="H5414"\w* \w portion|strong="H2706"\w*, \w and|strong="H1121"\w* \w your|strong="H5414"\w* \w sons|strong="H1121"\w*’ \w portion|strong="H2706"\w*, \w out|strong="H5414"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w sacrifices|strong="H2077"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 15 \w They|strong="H3068"\w* \w shall|strong="H3068"\w* \w bring|strong="H2706"\w* \w the|strong="H6440"\w* heaved \w thigh|strong="H7785"\w* \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w waved|strong="H5130"\w* \w breast|strong="H2373"\w* \w with|strong="H3068"\w* \w the|strong="H6440"\w* \w offerings|strong="H8641"\w* \w made|strong="H1961"\w* \w by|strong="H5921"\w* fire \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w fat|strong="H2459"\w*, \w to|strong="H3068"\w* \w wave|strong="H8573"\w* \w it|strong="H5921"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w wave|strong="H8573"\w* \w offering|strong="H8641"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. \w It|strong="H5921"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* yours, \w and|strong="H1121"\w* \w your|strong="H3068"\w* \w sons|strong="H1121"\w*’ \w with|strong="H3068"\w* \w you|strong="H6440"\w*, \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w portion|strong="H2706"\w* \w forever|strong="H5769"\w*, \w as|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w*.” +\p +\v 16 \w Moses|strong="H4872"\w* \w diligently|strong="H1875"\w* \w inquired|strong="H1875"\w* \w about|strong="H5921"\w* \w the|strong="H5921"\w* \w goat|strong="H8163"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*, \w and|strong="H1121"\w*, \w behold|strong="H2009"\w*,\f + \fr 10:16 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w it|strong="H5921"\w* \w was|strong="H4872"\w* \w burned|strong="H8313"\w*. \w He|strong="H5921"\w* \w was|strong="H4872"\w* \w angry|strong="H7107"\w* \w with|strong="H8313"\w* Eleazar \w and|strong="H1121"\w* \w with|strong="H8313"\w* Ithamar, \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w left|strong="H3498"\w*, saying, +\v 17 “\w Why|strong="H4069"\w* haven’t \w you|strong="H3588"\w* eaten \w the|strong="H6440"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w place|strong="H4725"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w sanctuary|strong="H6944"\w*, \w since|strong="H3588"\w* \w it|strong="H5414"\w* \w is|strong="H3068"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w*, \w and|strong="H3068"\w* \w he|strong="H1931"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w* \w to|strong="H3068"\w* \w bear|strong="H5375"\w* \w the|strong="H6440"\w* \w iniquity|strong="H5771"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w congregation|strong="H5712"\w*, \w to|strong="H3068"\w* \w make|strong="H5414"\w* \w atonement|strong="H3722"\w* \w for|strong="H3588"\w* \w them|strong="H5414"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*? +\v 18 \w Behold|strong="H2005"\w*, \w its|strong="H3808"\w* \w blood|strong="H1818"\w* \w was|strong="H3808"\w* \w not|strong="H3808"\w* brought into \w the|strong="H6680"\w* \w inner|strong="H6441"\w* \w part|strong="H6441"\w* \w of|strong="H1818"\w* \w the|strong="H6680"\w* \w sanctuary|strong="H6944"\w*. \w You|strong="H6680"\w* \w certainly|strong="H3808"\w* should \w have|strong="H3808"\w* eaten \w it|strong="H3808"\w* \w in|strong="H3808"\w* \w the|strong="H6680"\w* \w sanctuary|strong="H6944"\w*, \w as|strong="H6680"\w* \w I|strong="H2005"\w* \w commanded|strong="H6680"\w*.” +\p +\v 19 Aaron \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, “\w Behold|strong="H2005"\w*, \w today|strong="H3117"\w* \w they|strong="H3117"\w* \w have|strong="H3068"\w* \w offered|strong="H7126"\w* \w their|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w* \w and|strong="H4872"\w* \w their|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H4872"\w* \w such|strong="H1696"\w* things \w as|strong="H3117"\w* \w these|strong="H1696"\w* \w have|strong="H3068"\w* \w happened|strong="H7122"\w* \w to|strong="H1696"\w* \w me|strong="H6440"\w*. \w If|strong="H2005"\w* \w I|strong="H3117"\w* \w had|strong="H3068"\w* eaten \w the|strong="H6440"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w* \w today|strong="H3117"\w*, \w would|strong="H3068"\w* \w it|strong="H7126"\w* \w have|strong="H3068"\w* \w been|strong="H3068"\w* \w pleasing|strong="H3190"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*?” +\p +\v 20 \w When|strong="H8085"\w* \w Moses|strong="H4872"\w* \w heard|strong="H8085"\w* \w that|strong="H8085"\w*, \w it|strong="H3190"\w* \w was|strong="H4872"\w* \w pleasing|strong="H3190"\w* \w in|strong="H8085"\w* \w his|strong="H8085"\w* \w sight|strong="H5869"\w*. +\c 11 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* \w to|strong="H1696"\w* Aaron, \w saying|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H3068"\w*, +\v 2 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w saying|strong="H1696"\w*, ‘\w These|strong="H1696"\w* \w are|strong="H1121"\w* \w the|strong="H3605"\w* \w living|strong="H2416"\w* \w things|strong="H3605"\w* \w which|strong="H3478"\w* \w you|strong="H3605"\w* \w may|strong="H3478"\w* eat \w among|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w animals|strong="H2416"\w* \w that|strong="H3605"\w* \w are|strong="H1121"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth. +\v 3 \w Whatever|strong="H3605"\w* \w parts|strong="H6541"\w* \w the|strong="H3605"\w* \w hoof|strong="H6541"\w*, \w and|strong="H5927"\w* \w is|strong="H3605"\w* cloven-footed, \w and|strong="H5927"\w* \w chews|strong="H5927"\w* \w the|strong="H3605"\w* \w cud|strong="H1625"\w* among \w the|strong="H3605"\w* animals, \w that|strong="H3605"\w* \w you|strong="H3605"\w* may eat. +\p +\v 4 “‘\w Nevertheless|strong="H3588"\w* \w these|strong="H2088"\w* \w you|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* eat \w of|strong="H3808"\w* \w those|strong="H1931"\w* \w that|strong="H3588"\w* \w chew|strong="H5927"\w* \w the|strong="H3588"\w* \w cud|strong="H1625"\w*, \w or|strong="H3808"\w* \w of|strong="H3808"\w* \w those|strong="H1931"\w* \w who|strong="H1931"\w* \w part|strong="H1931"\w* \w the|strong="H3588"\w* \w hoof|strong="H6541"\w*: \w the|strong="H3588"\w* \w camel|strong="H1581"\w*, \w because|strong="H3588"\w* \w it|strong="H1931"\w* \w chews|strong="H5927"\w* \w the|strong="H3588"\w* \w cud|strong="H1625"\w* \w but|strong="H3588"\w* doesn’t \w have|strong="H3588"\w* \w a|strong="H3068"\w* parted \w hoof|strong="H6541"\w*, \w is|strong="H2088"\w* \w unclean|strong="H2931"\w* \w to|strong="H5927"\w* \w you|strong="H3588"\w*. +\v 5 \w The|strong="H3588"\w* hyrax,\f + \fr 11:5 \ft or rock badger, or cony\f* \w because|strong="H3588"\w* \w it|strong="H1931"\w* \w chews|strong="H5927"\w* \w the|strong="H3588"\w* \w cud|strong="H1625"\w* \w but|strong="H3588"\w* doesn’t \w have|strong="H3588"\w* \w a|strong="H3068"\w* parted \w hoof|strong="H6541"\w*, \w is|strong="H1931"\w* \w unclean|strong="H2931"\w* \w to|strong="H5927"\w* \w you|strong="H3588"\w*. +\v 6 \w The|strong="H3588"\w* hare, \w because|strong="H3588"\w* \w it|strong="H1931"\w* \w chews|strong="H5927"\w* \w the|strong="H3588"\w* \w cud|strong="H1625"\w* \w but|strong="H3588"\w* doesn’t \w have|strong="H3588"\w* \w a|strong="H3068"\w* parted \w hoof|strong="H6541"\w*, \w is|strong="H1931"\w* \w unclean|strong="H2931"\w* \w to|strong="H5927"\w* \w you|strong="H3588"\w*. +\v 7 \w The|strong="H3588"\w* \w pig|strong="H2386"\w*, \w because|strong="H3588"\w* \w it|strong="H1931"\w* \w has|strong="H3588"\w* \w a|strong="H3068"\w* \w split|strong="H8156"\w* \w hoof|strong="H6541"\w*, \w and|strong="H3808"\w* \w is|strong="H1931"\w* cloven-footed, \w but|strong="H3588"\w* doesn’t \w chew|strong="H1641"\w* \w the|strong="H3588"\w* \w cud|strong="H1625"\w*, \w is|strong="H1931"\w* \w unclean|strong="H2931"\w* \w to|strong="H3808"\w* \w you|strong="H3588"\w*. +\v 8 \w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* eat \w their|strong="H1992"\w* \w meat|strong="H1320"\w*. \w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w touch|strong="H5060"\w* \w their|strong="H1992"\w* \w carcasses|strong="H5038"\w*. \w They|strong="H1992"\w* \w are|strong="H1992"\w* \w unclean|strong="H2931"\w* \w to|strong="H1320"\w* \w you|strong="H3808"\w*. +\p +\v 9 “‘\w You|strong="H3605"\w* \w may|strong="H4325"\w* eat \w of|strong="H4325"\w* \w all|strong="H3605"\w* \w these|strong="H2088"\w* \w that|strong="H3605"\w* \w are|strong="H4325"\w* \w in|strong="H3220"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w*: \w whatever|strong="H3605"\w* \w has|strong="H2088"\w* \w fins|strong="H5579"\w* \w and|strong="H4325"\w* \w scales|strong="H7193"\w* \w in|strong="H3220"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w*, \w in|strong="H3220"\w* \w the|strong="H3605"\w* \w seas|strong="H3220"\w*, \w and|strong="H4325"\w* \w in|strong="H3220"\w* \w the|strong="H3605"\w* \w rivers|strong="H5158"\w*, \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w may|strong="H4325"\w* eat. +\v 10 \w All|strong="H3605"\w* \w that|strong="H3605"\w* don’t \w have|strong="H3605"\w* \w fins|strong="H5579"\w* \w and|strong="H4325"\w* \w scales|strong="H7193"\w* \w in|strong="H5315"\w* \w the|strong="H3605"\w* \w seas|strong="H3220"\w* \w and|strong="H4325"\w* \w rivers|strong="H5158"\w*, \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w move|strong="H8318"\w* \w in|strong="H5315"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w*, \w and|strong="H4325"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w living|strong="H2416"\w* \w creatures|strong="H2416"\w* \w that|strong="H3605"\w* \w are|strong="H1992"\w* \w in|strong="H5315"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w*, \w they|strong="H1992"\w* \w are|strong="H1992"\w* an \w abomination|strong="H8263"\w* \w to|strong="H4325"\w* \w you|strong="H3605"\w*, +\v 11 \w and|strong="H1320"\w* \w you|strong="H3808"\w* \w shall|strong="H3808"\w* \w detest|strong="H8262"\w* \w them|strong="H1961"\w*. \w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* eat \w of|strong="H1320"\w* \w their|strong="H1961"\w* \w meat|strong="H1320"\w*, \w and|strong="H1320"\w* \w you|strong="H3808"\w* \w shall|strong="H3808"\w* \w detest|strong="H8262"\w* \w their|strong="H1961"\w* \w carcasses|strong="H5038"\w*. +\v 12 \w Whatever|strong="H3605"\w* \w has|strong="H3605"\w* \w no|strong="H3605"\w* \w fins|strong="H5579"\w* \w nor|strong="H5579"\w* \w scales|strong="H7193"\w* \w in|strong="H4325"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w is|strong="H1931"\w* an \w abomination|strong="H8263"\w* \w to|strong="H4325"\w* \w you|strong="H3605"\w*. +\p +\v 13 “‘\w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w detest|strong="H8262"\w* \w these|strong="H1992"\w* \w among|strong="H4480"\w* \w the|strong="H4480"\w* \w birds|strong="H5775"\w*; \w they|strong="H1992"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* eaten \w because|strong="H4480"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w an|strong="H4480"\w* \w abomination|strong="H8263"\w*: \w the|strong="H4480"\w* \w eagle|strong="H5404"\w*, \w the|strong="H4480"\w* \w vulture|strong="H6538"\w*, \w the|strong="H4480"\w* black \w vulture|strong="H6538"\w*, +\v 14 the red \w kite|strong="H1676"\w*, any \w kind|strong="H4327"\w* of black \w kite|strong="H1676"\w*, +\v 15 \w any|strong="H3605"\w* \w kind|strong="H4327"\w* \w of|strong="H3605"\w* \w raven|strong="H6158"\w*, +\v 16 \w the|strong="H1323"\w* horned \w owl|strong="H8464"\w*, \w the|strong="H1323"\w* screech \w owl|strong="H8464"\w*, \w the|strong="H1323"\w* \w gull|strong="H7828"\w*, any \w kind|strong="H4327"\w* \w of|strong="H1323"\w* \w hawk|strong="H5322"\w*, +\v 17 \w the|strong="H3563"\w* \w little|strong="H3563"\w* \w owl|strong="H3244"\w*, \w the|strong="H3563"\w* \w cormorant|strong="H7994"\w*, \w the|strong="H3563"\w* \w great|strong="H3244"\w* \w owl|strong="H3244"\w*, +\v 18 the \w white|strong="H8580"\w* \w owl|strong="H8580"\w*, the desert \w owl|strong="H8580"\w*, the osprey, +\v 19 the \w stork|strong="H2624"\w*, any \w kind|strong="H4327"\w* of heron, the \w hoopoe|strong="H1744"\w*, and the \w bat|strong="H5847"\w*. +\p +\v 20 “‘\w All|strong="H3605"\w* \w flying|strong="H5775"\w* \w insects|strong="H8318"\w* \w that|strong="H3605"\w* \w walk|strong="H1980"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* fours \w are|strong="H5775"\w* \w an|strong="H5921"\w* \w abomination|strong="H8263"\w* \w to|strong="H1980"\w* \w you|strong="H3605"\w*. +\v 21 \w Yet|strong="H3808"\w* \w you|strong="H3605"\w* \w may|strong="H7272"\w* eat \w these|strong="H2088"\w*: \w of|strong="H5921"\w* \w all|strong="H3605"\w* \w winged|strong="H5775"\w* \w creeping|strong="H8318"\w* \w things|strong="H3605"\w* \w that|strong="H3605"\w* \w go|strong="H1980"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* fours, \w which|strong="H2004"\w* \w have|strong="H3605"\w* \w long|strong="H3605"\w*, \w jointed|strong="H7272"\w* \w legs|strong="H3767"\w* \w for|strong="H5921"\w* hopping \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth. +\v 22 Even \w of|strong="H1992"\w* \w these|strong="H1992"\w* you \w may|strong="H1992"\w* eat: any \w kind|strong="H4327"\w* \w of|strong="H1992"\w* \w locust|strong="H5556"\w*, any \w kind|strong="H4327"\w* \w of|strong="H1992"\w* katydid, any \w kind|strong="H4327"\w* \w of|strong="H1992"\w* \w cricket|strong="H2728"\w*, \w and|strong="H1992"\w* any \w kind|strong="H4327"\w* \w of|strong="H1992"\w* \w grasshopper|strong="H2284"\w*. +\v 23 \w But|strong="H1931"\w* \w all|strong="H3605"\w* \w winged|strong="H5775"\w* \w creeping|strong="H8318"\w* \w things|strong="H3605"\w* \w which|strong="H1931"\w* \w have|strong="H3605"\w* four \w feet|strong="H7272"\w* \w are|strong="H7272"\w* an \w abomination|strong="H8263"\w* \w to|strong="H7272"\w* \w you|strong="H3605"\w*. +\p +\v 24 “‘\w By|strong="H5704"\w* \w these|strong="H3605"\w* \w you|strong="H3605"\w* \w will|strong="H5704"\w* \w become|strong="H2930"\w* \w unclean|strong="H2930"\w*: \w whoever|strong="H3605"\w* \w touches|strong="H5060"\w* \w their|strong="H3605"\w* \w carcass|strong="H5038"\w* \w shall|strong="H5038"\w* \w be|strong="H3605"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w evening|strong="H6153"\w*. +\v 25 \w Whoever|strong="H3605"\w* \w carries|strong="H5375"\w* \w any|strong="H3605"\w* part \w of|strong="H3605"\w* \w their|strong="H3605"\w* \w carcass|strong="H5038"\w* \w shall|strong="H5038"\w* \w wash|strong="H3526"\w* \w his|strong="H3605"\w* clothes, \w and|strong="H3605"\w* \w be|strong="H5375"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w evening|strong="H6153"\w*. +\p +\v 26 “‘\w Every|strong="H3605"\w* animal \w which|strong="H1931"\w* \w has|strong="H3605"\w* \w a|strong="H3068"\w* \w split|strong="H8156"\w* \w hoof|strong="H6541"\w* \w that|strong="H3605"\w* isn’t \w completely|strong="H3605"\w* \w divided|strong="H6536"\w*, or doesn’t \w chew|strong="H5927"\w* \w the|strong="H3605"\w* \w cud|strong="H1625"\w*, \w is|strong="H1931"\w* \w unclean|strong="H2931"\w* \w to|strong="H5927"\w* \w you|strong="H3605"\w*. \w Everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w touches|strong="H5060"\w* \w them|strong="H1992"\w* \w shall|strong="H1931"\w* \w be|strong="H1931"\w* \w unclean|strong="H2931"\w*. +\v 27 \w Whatever|strong="H3605"\w* \w goes|strong="H1980"\w* \w on|strong="H5921"\w* \w its|strong="H3605"\w* \w paws|strong="H3709"\w*, \w among|strong="H5921"\w* \w all|strong="H3605"\w* \w animals|strong="H2416"\w* \w that|strong="H3605"\w* \w go|strong="H1980"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* fours, \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w unclean|strong="H2931"\w* \w to|strong="H5704"\w* \w you|strong="H3605"\w*. \w Whoever|strong="H3605"\w* \w touches|strong="H5060"\w* \w their|strong="H3605"\w* \w carcass|strong="H5038"\w* \w shall|strong="H5038"\w* \w be|strong="H2416"\w* \w unclean|strong="H2931"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w evening|strong="H6153"\w*. +\v 28 \w He|strong="H5704"\w* \w who|strong="H1992"\w* \w carries|strong="H5375"\w* \w their|strong="H5375"\w* \w carcass|strong="H5038"\w* \w shall|strong="H5038"\w* \w wash|strong="H3526"\w* \w his|strong="H5375"\w* clothes, \w and|strong="H5704"\w* \w be|strong="H5375"\w* \w unclean|strong="H2931"\w* \w until|strong="H5704"\w* \w the|strong="H5375"\w* \w evening|strong="H6153"\w*. \w They|strong="H1992"\w* \w are|strong="H1992"\w* \w unclean|strong="H2931"\w* \w to|strong="H5704"\w* \w you|strong="H5704"\w*. +\p +\v 29 “‘\w These|strong="H2088"\w* are \w they|strong="H5921"\w* \w which|strong="H2088"\w* are \w unclean|strong="H2931"\w* \w to|strong="H5921"\w* \w you|strong="H5921"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w creeping|strong="H2931"\w* \w things|strong="H8318"\w* \w that|strong="H8318"\w* \w creep|strong="H8318"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* earth: \w the|strong="H5921"\w* \w weasel|strong="H2467"\w*, \w the|strong="H5921"\w* rat, any \w kind|strong="H4327"\w* \w of|strong="H5921"\w* \w great|strong="H6632"\w* \w lizard|strong="H6632"\w*, +\v 30 \w the|strong="H3581"\w* gecko, \w and|strong="H3581"\w* \w the|strong="H3581"\w* monitor \w lizard|strong="H3911"\w*, \w the|strong="H3581"\w* wall \w lizard|strong="H3911"\w*, \w the|strong="H3581"\w* skink, \w and|strong="H3581"\w* \w the|strong="H3581"\w* \w chameleon|strong="H8580"\w*. +\v 31 \w These|strong="H3605"\w* \w are|strong="H4194"\w* \w they|strong="H5704"\w* \w which|strong="H8318"\w* \w are|strong="H4194"\w* \w unclean|strong="H2931"\w* \w to|strong="H5704"\w* \w you|strong="H3605"\w* \w among|strong="H2931"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w creep|strong="H8318"\w*. \w Whoever|strong="H3605"\w* \w touches|strong="H5060"\w* \w them|strong="H5704"\w* \w when|strong="H5704"\w* \w they|strong="H5704"\w* \w are|strong="H4194"\w* \w dead|strong="H4194"\w* \w shall|strong="H4194"\w* \w be|strong="H3605"\w* \w unclean|strong="H2931"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w evening|strong="H6153"\w*. +\v 32 \w Anything|strong="H3605"\w* \w they|strong="H1992"\w* \w fall|strong="H5307"\w* \w on|strong="H5921"\w* \w when|strong="H5704"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w dead|strong="H4194"\w* \w shall|strong="H4325"\w* \w be|strong="H6086"\w* \w unclean|strong="H2930"\w*; whether \w it|strong="H5921"\w* \w is|strong="H3605"\w* \w any|strong="H3605"\w* \w vessel|strong="H3627"\w* \w of|strong="H3627"\w* \w wood|strong="H6086"\w*, \w or|strong="H5704"\w* \w clothing|strong="H3627"\w*, \w or|strong="H5704"\w* \w skin|strong="H5785"\w*, \w or|strong="H5704"\w* \w sack|strong="H8242"\w*, \w whatever|strong="H3605"\w* \w vessel|strong="H3627"\w* \w it|strong="H5921"\w* \w is|strong="H3605"\w*, \w with|strong="H6213"\w* \w which|strong="H1992"\w* \w any|strong="H3605"\w* \w work|strong="H4399"\w* \w is|strong="H3605"\w* \w done|strong="H6213"\w*, \w it|strong="H5921"\w* must \w be|strong="H6086"\w* \w put|strong="H6213"\w* \w into|strong="H5307"\w* \w water|strong="H4325"\w*, \w and|strong="H6086"\w* \w it|strong="H5921"\w* \w shall|strong="H4325"\w* \w be|strong="H6086"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w evening|strong="H6153"\w*. \w Then|strong="H5307"\w* \w it|strong="H5921"\w* \w will|strong="H4325"\w* \w be|strong="H6086"\w* \w clean|strong="H2891"\w*. +\v 33 \w Every|strong="H3605"\w* \w earthen|strong="H2789"\w* \w vessel|strong="H3627"\w* \w into|strong="H8432"\w* \w which|strong="H1992"\w* \w any|strong="H3605"\w* \w of|strong="H3627"\w* \w them|strong="H1992"\w* \w falls|strong="H5307"\w* \w and|strong="H5307"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w in|strong="H8432"\w* \w it|strong="H8432"\w* \w shall|strong="H3627"\w* \w be|strong="H3605"\w* \w unclean|strong="H2930"\w*. \w You|strong="H3605"\w* \w shall|strong="H3627"\w* \w break|strong="H7665"\w* \w it|strong="H8432"\w*. +\v 34 \w All|strong="H3605"\w* food \w which|strong="H4325"\w* \w may|strong="H4325"\w* \w be|strong="H4325"\w* eaten \w which|strong="H4325"\w* \w is|strong="H3605"\w* soaked \w in|strong="H5921"\w* \w water|strong="H4325"\w* \w shall|strong="H4325"\w* \w be|strong="H4325"\w* \w unclean|strong="H2930"\w*. \w All|strong="H3605"\w* \w drink|strong="H8354"\w* \w that|strong="H3605"\w* \w may|strong="H4325"\w* \w be|strong="H4325"\w* \w drunk|strong="H8354"\w* \w in|strong="H5921"\w* \w every|strong="H3605"\w* \w such|strong="H3605"\w* \w vessel|strong="H3627"\w* \w shall|strong="H4325"\w* \w be|strong="H4325"\w* \w unclean|strong="H2930"\w*. +\v 35 \w Everything|strong="H3605"\w* whereupon \w part|strong="H1992"\w* \w of|strong="H5921"\w* \w their|strong="H3605"\w* \w carcass|strong="H5038"\w* \w falls|strong="H5307"\w* \w shall|strong="H5038"\w* \w be|strong="H1961"\w* \w unclean|strong="H2931"\w*; whether \w oven|strong="H8574"\w*, or range \w for|strong="H5921"\w* pots, \w it|strong="H5921"\w* \w shall|strong="H5038"\w* \w be|strong="H1961"\w* \w broken|strong="H5422"\w* \w in|strong="H5921"\w* pieces. \w They|strong="H1992"\w* \w are|strong="H1992"\w* \w unclean|strong="H2931"\w*, \w and|strong="H5307"\w* \w shall|strong="H5038"\w* \w be|strong="H1961"\w* \w unclean|strong="H2931"\w* \w to|strong="H1961"\w* \w you|strong="H3605"\w*. +\v 36 Nevertheless \w a|strong="H3068"\w* \w spring|strong="H4599"\w* \w or|strong="H4599"\w* \w a|strong="H3068"\w* cistern \w in|strong="H1961"\w* \w which|strong="H4325"\w* \w water|strong="H4325"\w* \w is|strong="H1961"\w* gathered \w shall|strong="H4325"\w* \w be|strong="H1961"\w* \w clean|strong="H2889"\w*, \w but|strong="H1961"\w* \w that|strong="H4325"\w* \w which|strong="H4325"\w* \w touches|strong="H5060"\w* \w their|strong="H1961"\w* \w carcass|strong="H5038"\w* \w shall|strong="H4325"\w* \w be|strong="H1961"\w* \w unclean|strong="H2930"\w*. +\v 37 \w If|strong="H3588"\w* \w part|strong="H1931"\w* \w of|strong="H2233"\w* \w their|strong="H3605"\w* \w carcass|strong="H5038"\w* \w falls|strong="H5307"\w* \w on|strong="H5921"\w* \w any|strong="H3605"\w* \w sowing|strong="H2221"\w* \w seed|strong="H2233"\w* \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w to|strong="H5921"\w* \w be|strong="H3588"\w* \w sown|strong="H2232"\w*, \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w clean|strong="H2889"\w*. +\v 38 \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w water|strong="H4325"\w* \w is|strong="H1931"\w* \w put|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w seed|strong="H2233"\w*, \w and|strong="H4325"\w* \w part|strong="H1931"\w* \w of|strong="H4325"\w* \w their|strong="H5414"\w* \w carcass|strong="H5038"\w* \w falls|strong="H5307"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w*, \w it|strong="H5414"\w* \w is|strong="H1931"\w* \w unclean|strong="H2931"\w* \w to|strong="H5921"\w* \w you|strong="H3588"\w*. +\p +\v 39 “‘\w If|strong="H3588"\w* \w any|strong="H4480"\w* animal \w of|strong="H4480"\w* \w which|strong="H1931"\w* \w you|strong="H3588"\w* \w may|strong="H5038"\w* eat \w dies|strong="H4191"\w*, \w he|strong="H1931"\w* \w who|strong="H1931"\w* \w touches|strong="H5060"\w* \w its|strong="H3588"\w* \w carcass|strong="H5038"\w* \w shall|strong="H5038"\w* \w be|strong="H4191"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H3588"\w* \w evening|strong="H6153"\w*. +\v 40 \w He|strong="H5704"\w* who eats \w of|strong="H5038"\w* \w its|strong="H5375"\w* \w carcass|strong="H5038"\w* \w shall|strong="H5038"\w* \w wash|strong="H3526"\w* \w his|strong="H5375"\w* clothes, \w and|strong="H5704"\w* \w be|strong="H5375"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H5375"\w* \w evening|strong="H6153"\w*. \w He|strong="H5704"\w* also who \w carries|strong="H5375"\w* \w its|strong="H5375"\w* \w carcass|strong="H5038"\w* \w shall|strong="H5038"\w* \w wash|strong="H3526"\w* \w his|strong="H5375"\w* clothes, \w and|strong="H5704"\w* \w be|strong="H5375"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H5375"\w* \w evening|strong="H6153"\w*. +\p +\v 41 “‘\w Every|strong="H3605"\w* \w creeping|strong="H8318"\w* \w thing|strong="H8318"\w* \w that|strong="H3605"\w* creeps \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth \w is|strong="H1931"\w* \w an|strong="H5921"\w* \w abomination|strong="H8263"\w*. \w It|strong="H1931"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* eaten. +\v 42 \w Whatever|strong="H3605"\w* \w goes|strong="H1980"\w* \w on|strong="H5921"\w* \w its|strong="H3605"\w* belly, \w and|strong="H1980"\w* \w whatever|strong="H3605"\w* \w goes|strong="H1980"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* fours, \w or|strong="H3808"\w* \w whatever|strong="H3605"\w* \w has|strong="H3588"\w* \w many|strong="H7235"\w* \w feet|strong="H7272"\w*, \w even|strong="H5704"\w* \w all|strong="H3605"\w* \w creeping|strong="H8318"\w* \w things|strong="H3605"\w* \w that|strong="H3588"\w* \w creep|strong="H8318"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth, \w them|strong="H1992"\w* \w you|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* eat; \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w an|strong="H3588"\w* \w abomination|strong="H8263"\w*. +\v 43 \w You|strong="H3605"\w* \w shall|strong="H5315"\w* \w not|strong="H3808"\w* \w make|strong="H2930"\w* \w yourselves|strong="H5315"\w* \w abominable|strong="H8262"\w* \w with|strong="H5315"\w* \w any|strong="H3605"\w* \w creeping|strong="H8318"\w* \w thing|strong="H8318"\w* \w that|strong="H3605"\w* creeps. \w You|strong="H3605"\w* \w shall|strong="H5315"\w* \w not|strong="H3808"\w* \w make|strong="H2930"\w* \w yourselves|strong="H5315"\w* \w unclean|strong="H2930"\w* \w with|strong="H5315"\w* \w them|strong="H2930"\w*, \w that|strong="H3605"\w* \w you|strong="H3605"\w* should \w be|strong="H3808"\w* \w defiled|strong="H2930"\w* \w by|strong="H3808"\w* \w them|strong="H2930"\w*. +\v 44 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \w Sanctify|strong="H6942"\w* \w yourselves|strong="H5315"\w* \w therefore|strong="H5921"\w*, \w and|strong="H3068"\w* \w be|strong="H1961"\w* \w holy|strong="H6918"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w holy|strong="H6918"\w*. \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w defile|strong="H2930"\w* \w yourselves|strong="H5315"\w* \w with|strong="H3068"\w* \w any|strong="H3605"\w* kind \w of|strong="H3068"\w* \w creeping|strong="H8318"\w* \w thing|strong="H8318"\w* \w that|strong="H3588"\w* \w moves|strong="H7430"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth. +\v 45 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w brought|strong="H5927"\w* \w you|strong="H3588"\w* \w up|strong="H5927"\w* \w out|strong="H5927"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w to|strong="H3068"\w* \w be|strong="H1961"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w therefore|strong="H3588"\w* \w be|strong="H1961"\w* \w holy|strong="H6918"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w holy|strong="H6918"\w*. +\p +\v 46 “‘\w This|strong="H2063"\w* \w is|strong="H5315"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w of|strong="H4325"\w* \w the|strong="H3605"\w* \w animal|strong="H2416"\w*, \w and|strong="H4325"\w* \w of|strong="H4325"\w* \w the|strong="H3605"\w* \w bird|strong="H5775"\w*, \w and|strong="H4325"\w* \w of|strong="H4325"\w* \w every|strong="H3605"\w* \w living|strong="H2416"\w* \w creature|strong="H5315"\w* \w that|strong="H3605"\w* \w moves|strong="H7430"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w*, \w and|strong="H4325"\w* \w of|strong="H4325"\w* \w every|strong="H3605"\w* \w creature|strong="H5315"\w* \w that|strong="H3605"\w* \w creeps|strong="H7430"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth, +\v 47 \w to|strong="H3808"\w* make \w a|strong="H3068"\w* distinction between \w the|strong="H3808"\w* \w unclean|strong="H2931"\w* \w and|strong="H2416"\w* \w the|strong="H3808"\w* \w clean|strong="H2889"\w*, \w and|strong="H2416"\w* between \w the|strong="H3808"\w* \w living|strong="H2416"\w* \w thing|strong="H2416"\w* \w that|strong="H2416"\w* \w may|strong="H2889"\w* \w be|strong="H3808"\w* eaten \w and|strong="H2416"\w* \w the|strong="H3808"\w* \w living|strong="H2416"\w* \w thing|strong="H2416"\w* \w that|strong="H2416"\w* \w may|strong="H2889"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* eaten.’” +\c 12 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w saying|strong="H1696"\w*, ‘\w If|strong="H3588"\w* \w a|strong="H3068"\w* \w woman|strong="H3205"\w* conceives, \w and|strong="H1121"\w* \w bears|strong="H3205"\w* \w a|strong="H3068"\w* \w male|strong="H2145"\w* \w child|strong="H1121"\w*, \w then|strong="H1696"\w* \w she|strong="H3588"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w unclean|strong="H2930"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*; \w as|strong="H3117"\w* \w in|strong="H3478"\w* \w the|strong="H3588"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w her|strong="H3205"\w* monthly \w period|strong="H3117"\w* \w she|strong="H3588"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w unclean|strong="H2930"\w*. +\v 3 \w In|strong="H3117"\w* \w the|strong="H3117"\w* \w eighth|strong="H8066"\w* \w day|strong="H3117"\w* \w the|strong="H3117"\w* \w flesh|strong="H1320"\w* \w of|strong="H3117"\w* \w his|strong="H3117"\w* \w foreskin|strong="H6190"\w* \w shall|strong="H3117"\w* \w be|strong="H3117"\w* \w circumcised|strong="H4135"\w*. +\v 4 \w She|strong="H5704"\w* \w shall|strong="H3117"\w* \w continue|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w blood|strong="H1818"\w* \w of|strong="H3117"\w* \w purification|strong="H2893"\w* \w thirty-three|strong="H7970"\w* \w days|strong="H3117"\w*. \w She|strong="H5704"\w* \w shall|strong="H3117"\w* \w not|strong="H3808"\w* \w touch|strong="H5060"\w* \w any|strong="H3605"\w* \w holy|strong="H6944"\w* \w thing|strong="H6944"\w*, \w nor|strong="H3808"\w* \w come|strong="H5060"\w* \w into|strong="H5704"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w*, \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w her|strong="H3605"\w* \w purifying|strong="H2893"\w* \w are|strong="H3117"\w* \w completed|strong="H4390"\w*. +\v 5 \w But|strong="H3117"\w* if \w she|strong="H5921"\w* \w bears|strong="H3205"\w* \w a|strong="H3068"\w* \w female|strong="H5347"\w* \w child|strong="H3205"\w*, \w then|strong="H3117"\w* \w she|strong="H5921"\w* \w shall|strong="H3117"\w* \w be|strong="H3117"\w* \w unclean|strong="H2930"\w* \w two|strong="H3427"\w* \w weeks|strong="H7620"\w*, \w as|strong="H3117"\w* \w in|strong="H3427"\w* \w her|strong="H5921"\w* \w period|strong="H3117"\w*; \w and|strong="H3117"\w* \w she|strong="H5921"\w* \w shall|strong="H3117"\w* \w continue|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w of|strong="H3117"\w* \w purification|strong="H2893"\w* \w sixty-six|strong="H8346"\w* \w days|strong="H3117"\w*. +\p +\v 6 “‘\w When|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w her|strong="H4390"\w* \w purification|strong="H2893"\w* \w are|strong="H3117"\w* \w completed|strong="H4390"\w* \w for|strong="H3117"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w or|strong="H3117"\w* \w for|strong="H3117"\w* \w a|strong="H3068"\w* \w daughter|strong="H1323"\w*, she \w shall|strong="H3548"\w* \w bring|strong="H1323"\w* \w to|strong="H3117"\w* \w the|strong="H3117"\w* \w priest|strong="H3548"\w* \w at|strong="H3117"\w* \w the|strong="H3117"\w* \w door|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*, \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w* \w lamb|strong="H3532"\w* \w for|strong="H3117"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w young|strong="H1121"\w* \w pigeon|strong="H3123"\w* \w or|strong="H3117"\w* \w a|strong="H3068"\w* \w turtledove|strong="H8449"\w*, \w for|strong="H3117"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w*. +\v 7 \w He|strong="H3068"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w it|strong="H5921"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w her|strong="H5921"\w*; \w then|strong="H7126"\w* \w she|strong="H2063"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w cleansed|strong="H2891"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w fountain|strong="H4726"\w* \w of|strong="H3068"\w* \w her|strong="H5921"\w* \w blood|strong="H1818"\w*. +\p “‘\w This|strong="H2063"\w* \w is|strong="H3068"\w* \w the|strong="H6440"\w* \w law|strong="H8451"\w* \w for|strong="H5921"\w* \w her|strong="H5921"\w* \w who|strong="H3068"\w* \w bears|strong="H3205"\w*, whether \w a|strong="H3068"\w* \w male|strong="H2145"\w* \w or|strong="H2145"\w* \w a|strong="H3068"\w* \w female|strong="H5347"\w*. +\v 8 \w If|strong="H1121"\w* \w she|strong="H5921"\w* \w cannot|strong="H3808"\w* \w afford|strong="H3027"\w* \w a|strong="H3068"\w* \w lamb|strong="H7716"\w*, \w then|strong="H3947"\w* \w she|strong="H5921"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* \w two|strong="H8147"\w* \w turtledoves|strong="H8449"\w* \w or|strong="H3808"\w* \w two|strong="H8147"\w* \w young|strong="H1121"\w* \w pigeons|strong="H3123"\w*: \w the|strong="H5921"\w* \w one|strong="H3808"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w other|strong="H8147"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w*. \w The|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w her|strong="H3947"\w*, \w and|strong="H1121"\w* \w she|strong="H5921"\w* \w shall|strong="H3548"\w* \w be|strong="H3808"\w* \w clean|strong="H2891"\w*.’” +\c 13 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* \w to|strong="H1696"\w* Aaron, \w saying|strong="H1696"\w*, +\v 2 “\w When|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w shall|strong="H3548"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* \w swelling|strong="H7613"\w* \w in|strong="H1320"\w* \w his|strong="H1961"\w* \w body|strong="H1320"\w*’s \w skin|strong="H5785"\w*, \w or|strong="H1121"\w* \w a|strong="H3068"\w* \w scab|strong="H5597"\w*, \w or|strong="H1121"\w* \w a|strong="H3068"\w* \w bright|strong="H1320"\w* spot, \w and|strong="H1121"\w* \w it|strong="H3588"\w* \w becomes|strong="H1961"\w* \w in|strong="H1320"\w* \w the|strong="H3588"\w* \w skin|strong="H5785"\w* \w of|strong="H1121"\w* \w his|strong="H1961"\w* \w body|strong="H1320"\w* \w the|strong="H3588"\w* \w plague|strong="H5061"\w* \w of|strong="H1121"\w* \w leprosy|strong="H6883"\w*, \w then|strong="H1961"\w* \w he|strong="H3588"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w brought|strong="H3548"\w* \w to|strong="H1961"\w* Aaron \w the|strong="H3588"\w* \w priest|strong="H3548"\w* \w or|strong="H1121"\w* \w to|strong="H1961"\w* \w one|strong="H1121"\w* \w of|strong="H1121"\w* \w his|strong="H1961"\w* \w sons|strong="H1121"\w*, \w the|strong="H3588"\w* \w priests|strong="H3548"\w*. +\v 3 \w The|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* examine \w the|strong="H7200"\w* \w plague|strong="H5061"\w* \w in|strong="H1320"\w* \w the|strong="H7200"\w* \w skin|strong="H5785"\w* \w of|strong="H5061"\w* \w the|strong="H7200"\w* \w body|strong="H1320"\w*. \w If|strong="H7200"\w* \w the|strong="H7200"\w* \w hair|strong="H8181"\w* \w in|strong="H1320"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* \w has|strong="H5061"\w* \w turned|strong="H2015"\w* \w white|strong="H3836"\w*, \w and|strong="H3548"\w* \w the|strong="H7200"\w* \w appearance|strong="H4758"\w* \w of|strong="H5061"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* \w is|strong="H1931"\w* \w deeper|strong="H6013"\w* \w than|strong="H6013"\w* \w the|strong="H7200"\w* \w body|strong="H1320"\w*’s \w skin|strong="H5785"\w*, \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* \w of|strong="H5061"\w* \w leprosy|strong="H6883"\w*; \w so|strong="H7200"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* examine \w him|strong="H7200"\w* \w and|strong="H3548"\w* \w pronounce|strong="H2930"\w* \w him|strong="H7200"\w* \w unclean|strong="H2930"\w*. +\v 4 \w If|strong="H1931"\w* \w the|strong="H4480"\w* \w bright|strong="H3836"\w* spot \w is|strong="H1931"\w* \w white|strong="H3836"\w* \w in|strong="H3117"\w* \w the|strong="H4480"\w* \w skin|strong="H5785"\w* \w of|strong="H3117"\w* \w his|strong="H4480"\w* \w body|strong="H1320"\w*, \w and|strong="H3117"\w* \w its|strong="H2015"\w* \w appearance|strong="H4758"\w* isn’t \w deeper|strong="H6013"\w* \w than|strong="H4480"\w* \w the|strong="H4480"\w* \w skin|strong="H5785"\w*, \w and|strong="H3117"\w* \w its|strong="H2015"\w* \w hair|strong="H8181"\w* hasn’t \w turned|strong="H2015"\w* \w white|strong="H3836"\w*, \w then|strong="H3808"\w* \w the|strong="H4480"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w isolate|strong="H5462"\w* \w the|strong="H4480"\w* infected \w person|strong="H1320"\w* \w for|strong="H3117"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. +\v 5 \w The|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* examine \w him|strong="H7200"\w* \w on|strong="H3117"\w* \w the|strong="H7200"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*. \w Behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w in|strong="H3117"\w* \w his|strong="H7200"\w* \w eyes|strong="H5869"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* \w is|strong="H3117"\w* arrested \w and|strong="H3117"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* hasn’t \w spread|strong="H6581"\w* \w in|strong="H3117"\w* \w the|strong="H7200"\w* \w skin|strong="H5785"\w*, \w then|strong="H2009"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w isolate|strong="H5462"\w* \w him|strong="H7200"\w* \w for|strong="H3117"\w* \w seven|strong="H7651"\w* \w more|strong="H8145"\w* \w days|strong="H3117"\w*. +\v 6 \w The|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* examine \w him|strong="H7200"\w* \w again|strong="H8145"\w* \w on|strong="H3117"\w* \w the|strong="H7200"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*. \w Behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* \w has|strong="H5061"\w* \w faded|strong="H3544"\w* \w and|strong="H3117"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* hasn’t \w spread|strong="H6581"\w* \w in|strong="H3117"\w* \w the|strong="H7200"\w* \w skin|strong="H5785"\w*, \w then|strong="H2009"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w pronounce|strong="H2891"\w* \w him|strong="H7200"\w* \w clean|strong="H2891"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w scab|strong="H4556"\w*. \w He|strong="H1931"\w* \w shall|strong="H3548"\w* \w wash|strong="H3526"\w* \w his|strong="H3526"\w* clothes, \w and|strong="H3117"\w* \w be|strong="H3808"\w* \w clean|strong="H2891"\w*. +\v 7 \w But|strong="H7200"\w* \w if|strong="H7200"\w* \w the|strong="H7200"\w* \w scab|strong="H4556"\w* \w spreads|strong="H6581"\w* \w on|strong="H7200"\w* \w the|strong="H7200"\w* \w skin|strong="H5785"\w* \w after|strong="H8145"\w* \w he|strong="H5785"\w* \w has|strong="H3548"\w* \w shown|strong="H7200"\w* himself \w to|strong="H7200"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w for|strong="H5785"\w* \w his|strong="H7200"\w* \w cleansing|strong="H2893"\w*, \w he|strong="H5785"\w* \w shall|strong="H3548"\w* \w show|strong="H7200"\w* himself \w to|strong="H7200"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w again|strong="H8145"\w*. +\v 8 \w The|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* examine \w him|strong="H7200"\w*; \w and|strong="H3548"\w* \w behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w the|strong="H7200"\w* \w scab|strong="H4556"\w* \w has|strong="H2009"\w* \w spread|strong="H6581"\w* \w on|strong="H7200"\w* \w the|strong="H7200"\w* \w skin|strong="H5785"\w*, \w then|strong="H2009"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w pronounce|strong="H2930"\w* \w him|strong="H7200"\w* \w unclean|strong="H2930"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w leprosy|strong="H6883"\w*. +\p +\v 9 “\w When|strong="H3588"\w* \w the|strong="H3588"\w* \w plague|strong="H5061"\w* \w of|strong="H5061"\w* \w leprosy|strong="H6883"\w* \w is|strong="H1961"\w* \w in|strong="H1961"\w* \w a|strong="H3068"\w* man, \w then|strong="H1961"\w* \w he|strong="H3588"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w brought|strong="H3548"\w* \w to|strong="H1961"\w* \w the|strong="H3588"\w* \w priest|strong="H3548"\w*; +\v 10 \w and|strong="H3548"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* examine \w him|strong="H7200"\w*. \w Behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w there|strong="H2009"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w white|strong="H3836"\w* \w swelling|strong="H7613"\w* \w in|strong="H1320"\w* \w the|strong="H7200"\w* \w skin|strong="H5785"\w*, \w and|strong="H3548"\w* \w it|strong="H1931"\w* \w has|strong="H2009"\w* \w turned|strong="H2015"\w* \w the|strong="H7200"\w* \w hair|strong="H8181"\w* \w white|strong="H3836"\w*, \w and|strong="H3548"\w* \w there|strong="H2009"\w* \w is|strong="H1931"\w* \w raw|strong="H2416"\w* \w flesh|strong="H1320"\w* \w in|strong="H1320"\w* \w the|strong="H7200"\w* \w swelling|strong="H7613"\w*, +\v 11 \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w chronic|strong="H3462"\w* \w leprosy|strong="H6883"\w* \w in|strong="H1320"\w* \w the|strong="H3588"\w* \w skin|strong="H5785"\w* \w of|strong="H3548"\w* \w his|strong="H3588"\w* \w body|strong="H1320"\w*, \w and|strong="H3548"\w* \w the|strong="H3588"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w pronounce|strong="H2930"\w* \w him|strong="H2930"\w* \w unclean|strong="H2931"\w*. \w He|strong="H1931"\w* \w shall|strong="H3548"\w* \w not|strong="H3808"\w* \w isolate|strong="H5462"\w* \w him|strong="H2930"\w*, \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* already \w unclean|strong="H2931"\w*. +\p +\v 12 “If \w the|strong="H3605"\w* \w leprosy|strong="H6883"\w* \w breaks|strong="H6524"\w* \w out|strong="H3605"\w* \w all|strong="H3605"\w* \w over|strong="H7218"\w* \w the|strong="H3605"\w* \w skin|strong="H5785"\w*, \w and|strong="H3548"\w* \w the|strong="H3605"\w* \w leprosy|strong="H6883"\w* \w covers|strong="H3680"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w skin|strong="H5785"\w* \w of|strong="H7218"\w* \w the|strong="H3605"\w* infected \w person|strong="H5869"\w* \w from|strong="H5704"\w* \w his|strong="H3605"\w* \w head|strong="H7218"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w his|strong="H3605"\w* \w feet|strong="H7272"\w*, \w as|strong="H5704"\w* \w far|strong="H5704"\w* \w as|strong="H5704"\w* \w it|strong="H3680"\w* \w appears|strong="H4758"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w*, +\v 13 \w then|strong="H2009"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* examine \w him|strong="H7200"\w*. \w Behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w the|strong="H3605"\w* \w leprosy|strong="H6883"\w* \w has|strong="H5061"\w* \w covered|strong="H3680"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w flesh|strong="H1320"\w*, \w he|strong="H1931"\w* \w shall|strong="H3548"\w* \w pronounce|strong="H2891"\w* \w him|strong="H7200"\w* \w clean|strong="H2889"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w plague|strong="H5061"\w*. \w It|strong="H1931"\w* \w has|strong="H5061"\w* \w all|strong="H3605"\w* \w turned|strong="H2015"\w* \w white|strong="H3836"\w*: \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w clean|strong="H2889"\w*. +\v 14 \w But|strong="H7200"\w* \w whenever|strong="H3117"\w* \w raw|strong="H2416"\w* \w flesh|strong="H1320"\w* \w appears|strong="H7200"\w* \w in|strong="H3117"\w* \w him|strong="H7200"\w*, \w he|strong="H3117"\w* \w shall|strong="H3117"\w* \w be|strong="H3117"\w* \w unclean|strong="H2930"\w*. +\v 15 \w The|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* examine \w the|strong="H7200"\w* \w raw|strong="H2416"\w* \w flesh|strong="H1320"\w*, \w and|strong="H3548"\w* \w pronounce|strong="H2930"\w* \w him|strong="H7200"\w* \w unclean|strong="H2931"\w*: \w the|strong="H7200"\w* \w raw|strong="H2416"\w* \w flesh|strong="H1320"\w* \w is|strong="H1931"\w* \w unclean|strong="H2931"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w leprosy|strong="H6883"\w*. +\v 16 \w Or|strong="H1320"\w* \w if|strong="H3588"\w* \w the|strong="H3588"\w* \w raw|strong="H2416"\w* \w flesh|strong="H1320"\w* \w turns|strong="H7725"\w* \w again|strong="H7725"\w*, \w and|strong="H7725"\w* \w is|strong="H1320"\w* \w changed|strong="H2015"\w* \w to|strong="H7725"\w* \w white|strong="H3836"\w*, \w then|strong="H7725"\w* \w he|strong="H3588"\w* \w shall|strong="H3548"\w* \w come|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H3588"\w* \w priest|strong="H3548"\w*. +\v 17 \w The|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* examine \w him|strong="H7200"\w*. \w Behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* \w has|strong="H5061"\w* \w turned|strong="H2015"\w* \w white|strong="H3836"\w*, \w then|strong="H2009"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w pronounce|strong="H2891"\w* \w him|strong="H7200"\w* \w clean|strong="H2889"\w* \w of|strong="H5061"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w*. \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w clean|strong="H2889"\w*. +\p +\v 18 “\w When|strong="H3588"\w* \w the|strong="H3588"\w* \w body|strong="H1320"\w* \w has|strong="H1961"\w* \w a|strong="H3068"\w* \w boil|strong="H7822"\w* \w on|strong="H1961"\w* \w its|strong="H3588"\w* \w skin|strong="H5785"\w*, \w and|strong="H1320"\w* \w it|strong="H3588"\w* \w has|strong="H1961"\w* \w healed|strong="H7495"\w*, +\v 19 \w and|strong="H3548"\w* \w in|strong="H4725"\w* \w the|strong="H7200"\w* \w place|strong="H4725"\w* \w of|strong="H4725"\w* \w the|strong="H7200"\w* \w boil|strong="H7822"\w* \w there|strong="H1961"\w* \w is|strong="H1961"\w* \w a|strong="H3068"\w* \w white|strong="H3836"\w* \w swelling|strong="H7613"\w*, \w or|strong="H7200"\w* \w a|strong="H3068"\w* \w bright|strong="H3836"\w* spot, reddish-white, \w then|strong="H1961"\w* \w it|strong="H7200"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w shown|strong="H7200"\w* \w to|strong="H1961"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w*. +\v 20 \w The|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* examine \w it|strong="H1931"\w*. \w Behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w its|strong="H2015"\w* \w appearance|strong="H4758"\w* \w is|strong="H1931"\w* \w deeper|strong="H8217"\w* \w than|strong="H4480"\w* \w the|strong="H7200"\w* \w skin|strong="H5785"\w*, \w and|strong="H3548"\w* \w its|strong="H2015"\w* \w hair|strong="H8181"\w* \w has|strong="H5061"\w* \w turned|strong="H2015"\w* \w white|strong="H3836"\w*, \w then|strong="H2009"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w pronounce|strong="H2930"\w* \w him|strong="H7200"\w* \w unclean|strong="H2930"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* \w of|strong="H4480"\w* \w leprosy|strong="H6883"\w*. \w It|strong="H1931"\w* \w has|strong="H5061"\w* \w broken|strong="H6524"\w* \w out|strong="H4480"\w* \w in|strong="H7200"\w* \w the|strong="H7200"\w* \w boil|strong="H7822"\w*. +\v 21 \w But|strong="H7200"\w* \w if|strong="H2009"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w examines|strong="H7200"\w* \w it|strong="H1931"\w*, \w and|strong="H3117"\w* \w behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w are|strong="H3117"\w* \w no|strong="H4480"\w* \w white|strong="H3836"\w* \w hairs|strong="H8181"\w* \w in|strong="H3117"\w* \w it|strong="H1931"\w*, \w and|strong="H3117"\w* \w it|strong="H1931"\w* isn’t \w deeper|strong="H8217"\w* \w than|strong="H4480"\w* \w the|strong="H7200"\w* \w skin|strong="H5785"\w*, \w but|strong="H7200"\w* \w is|strong="H1931"\w* \w dim|strong="H3544"\w*, \w then|strong="H2009"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w isolate|strong="H5462"\w* \w him|strong="H7200"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. +\v 22 \w If|strong="H1931"\w* \w it|strong="H1931"\w* \w spreads|strong="H6581"\w* \w in|strong="H3548"\w* \w the|strong="H3548"\w* \w skin|strong="H5785"\w*, \w then|strong="H3548"\w* \w the|strong="H3548"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w pronounce|strong="H2930"\w* \w him|strong="H2930"\w* \w unclean|strong="H2930"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w plague|strong="H5061"\w*. +\v 23 \w But|strong="H3808"\w* \w if|strong="H1931"\w* \w the|strong="H8478"\w* bright \w spot|strong="H8478"\w* \w stays|strong="H5975"\w* \w in|strong="H5975"\w* \w its|strong="H5975"\w* \w place|strong="H8478"\w*, \w and|strong="H3548"\w* hasn’t \w spread|strong="H6581"\w*, \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H8478"\w* \w scar|strong="H6867"\w* \w from|strong="H8478"\w* \w the|strong="H8478"\w* \w boil|strong="H7822"\w*; \w and|strong="H3548"\w* \w the|strong="H8478"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w pronounce|strong="H2891"\w* \w him|strong="H2891"\w* \w clean|strong="H2891"\w*. +\p +\v 24 “\w Or|strong="H1320"\w* \w when|strong="H3588"\w* \w the|strong="H3588"\w* \w body|strong="H1320"\w* \w has|strong="H1961"\w* \w a|strong="H3068"\w* \w burn|strong="H4348"\w* \w from|strong="H1961"\w* fire \w on|strong="H1961"\w* \w its|strong="H3588"\w* \w skin|strong="H5785"\w*, \w and|strong="H1320"\w* \w the|strong="H3588"\w* \w raw|strong="H4241"\w* \w flesh|strong="H1320"\w* \w of|strong="H1320"\w* \w the|strong="H3588"\w* \w burn|strong="H4348"\w* \w becomes|strong="H1961"\w* \w a|strong="H3068"\w* \w bright|strong="H3836"\w* spot, reddish-white, \w or|strong="H1320"\w* \w white|strong="H3836"\w*, +\v 25 \w then|strong="H2009"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* examine \w it|strong="H1931"\w*; \w and|strong="H3548"\w* \w behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w the|strong="H7200"\w* \w hair|strong="H8181"\w* \w in|strong="H7200"\w* \w the|strong="H7200"\w* \w bright|strong="H3836"\w* spot \w has|strong="H5061"\w* \w turned|strong="H2015"\w* \w white|strong="H3836"\w*, \w and|strong="H3548"\w* \w its|strong="H2015"\w* \w appearance|strong="H4758"\w* \w is|strong="H1931"\w* \w deeper|strong="H6013"\w* \w than|strong="H4480"\w* \w the|strong="H7200"\w* \w skin|strong="H5785"\w*, \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w leprosy|strong="H6883"\w*. \w It|strong="H1931"\w* \w has|strong="H5061"\w* \w broken|strong="H6524"\w* \w out|strong="H4480"\w* \w in|strong="H7200"\w* \w the|strong="H7200"\w* \w burning|strong="H4348"\w*, \w and|strong="H3548"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w pronounce|strong="H2930"\w* \w him|strong="H7200"\w* \w unclean|strong="H2930"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* \w of|strong="H4480"\w* \w leprosy|strong="H6883"\w*. +\v 26 \w But|strong="H7200"\w* \w if|strong="H2009"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w examines|strong="H7200"\w* \w it|strong="H1931"\w*, \w and|strong="H3117"\w* \w behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w is|strong="H1931"\w* \w no|strong="H4480"\w* \w white|strong="H3836"\w* \w hair|strong="H8181"\w* \w in|strong="H3117"\w* \w the|strong="H7200"\w* \w bright|strong="H3836"\w* spot, \w and|strong="H3117"\w* \w it|strong="H1931"\w* isn’t \w deeper|strong="H8217"\w* \w than|strong="H4480"\w* \w the|strong="H7200"\w* \w skin|strong="H5785"\w*, \w but|strong="H7200"\w* \w has|strong="H3117"\w* \w faded|strong="H3544"\w*, \w then|strong="H2009"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w isolate|strong="H5462"\w* \w him|strong="H7200"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. +\v 27 \w The|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* examine \w him|strong="H7200"\w* \w on|strong="H3117"\w* \w the|strong="H7200"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*. \w If|strong="H7200"\w* \w it|strong="H1931"\w* \w has|strong="H5061"\w* \w spread|strong="H6581"\w* \w in|strong="H3117"\w* \w the|strong="H7200"\w* \w skin|strong="H5785"\w*, \w then|strong="H7200"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w pronounce|strong="H2930"\w* \w him|strong="H7200"\w* \w unclean|strong="H2930"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* \w of|strong="H3117"\w* \w leprosy|strong="H6883"\w*. +\v 28 \w If|strong="H3588"\w* \w the|strong="H3588"\w* bright \w spot|strong="H8478"\w* \w stays|strong="H5975"\w* \w in|strong="H5975"\w* \w its|strong="H5975"\w* \w place|strong="H8478"\w*, \w and|strong="H3548"\w* hasn’t \w spread|strong="H6581"\w* \w in|strong="H5975"\w* \w the|strong="H3588"\w* \w skin|strong="H5785"\w*, \w but|strong="H3588"\w* \w is|strong="H1931"\w* \w faded|strong="H3544"\w*, \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H3588"\w* \w swelling|strong="H7613"\w* \w from|strong="H8478"\w* \w the|strong="H3588"\w* \w burn|strong="H4348"\w*, \w and|strong="H3548"\w* \w the|strong="H3588"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w pronounce|strong="H2891"\w* \w him|strong="H2891"\w* \w clean|strong="H2891"\w*, \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H3588"\w* \w scar|strong="H6867"\w* \w from|strong="H8478"\w* \w the|strong="H3588"\w* \w burn|strong="H4348"\w*. +\p +\v 29 “\w When|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H7218"\w* \w or|strong="H7218"\w* woman \w has|strong="H1961"\w* \w a|strong="H3068"\w* \w plague|strong="H5061"\w* \w on|strong="H1961"\w* \w the|strong="H3588"\w* \w head|strong="H7218"\w* \w or|strong="H7218"\w* \w on|strong="H1961"\w* \w the|strong="H3588"\w* \w beard|strong="H2206"\w*, +\v 30 \w then|strong="H2009"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* examine \w the|strong="H7200"\w* \w plague|strong="H5061"\w*; \w and|strong="H3548"\w* \w behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w its|strong="H4480"\w* \w appearance|strong="H4758"\w* \w is|strong="H1931"\w* \w deeper|strong="H6013"\w* \w than|strong="H4480"\w* \w the|strong="H7200"\w* \w skin|strong="H5785"\w*, \w and|strong="H3548"\w* \w the|strong="H7200"\w* \w hair|strong="H8181"\w* \w in|strong="H7200"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w yellow|strong="H6669"\w* \w and|strong="H3548"\w* \w thin|strong="H1851"\w*, \w then|strong="H2009"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w pronounce|strong="H2930"\w* \w him|strong="H7200"\w* \w unclean|strong="H2930"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w an|strong="H7200"\w* itch. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w leprosy|strong="H6883"\w* \w of|strong="H7218"\w* \w the|strong="H7200"\w* \w head|strong="H7218"\w* \w or|strong="H4480"\w* \w of|strong="H7218"\w* \w the|strong="H7200"\w* \w beard|strong="H2206"\w*. +\v 31 \w If|strong="H3588"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w examines|strong="H7200"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* \w of|strong="H3117"\w* itching, \w and|strong="H3117"\w* \w behold|strong="H2009"\w*, \w its|strong="H3588"\w* \w appearance|strong="H4758"\w* isn’t \w deeper|strong="H6013"\w* \w than|strong="H4480"\w* \w the|strong="H7200"\w* \w skin|strong="H5785"\w*, \w and|strong="H3117"\w* \w there|strong="H2009"\w* \w is|strong="H3117"\w* \w no|strong="H4480"\w* \w black|strong="H7838"\w* \w hair|strong="H8181"\w* \w in|strong="H3117"\w* \w it|strong="H3588"\w*, \w then|strong="H2009"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w isolate|strong="H5462"\w* \w the|strong="H7200"\w* \w person|strong="H7200"\w* infected \w with|strong="H3117"\w* itching \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. +\v 32 \w On|strong="H3117"\w* \w the|strong="H7200"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* examine \w the|strong="H7200"\w* \w plague|strong="H5061"\w*; \w and|strong="H3117"\w* \w behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w the|strong="H7200"\w* itch hasn’t \w spread|strong="H6581"\w*, \w and|strong="H3117"\w* \w there|strong="H2009"\w* \w is|strong="H3117"\w* \w no|strong="H3808"\w* \w yellow|strong="H6669"\w* \w hair|strong="H8181"\w* \w in|strong="H3117"\w* \w it|strong="H7200"\w*, \w and|strong="H3117"\w* \w the|strong="H7200"\w* \w appearance|strong="H4758"\w* \w of|strong="H3117"\w* \w the|strong="H7200"\w* itch isn’t \w deeper|strong="H6013"\w* \w than|strong="H4480"\w* \w the|strong="H7200"\w* \w skin|strong="H5785"\w*, +\v 33 \w then|strong="H3808"\w* \w he|strong="H3117"\w* \w shall|strong="H3548"\w* \w be|strong="H3808"\w* \w shaved|strong="H1548"\w*, \w but|strong="H3808"\w* \w he|strong="H3117"\w* \w shall|strong="H3548"\w* \w not|strong="H3808"\w* \w shave|strong="H1548"\w* \w the|strong="H3117"\w* itch. \w Then|strong="H3808"\w* \w the|strong="H3117"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w isolate|strong="H5462"\w* \w the|strong="H3117"\w* \w one|strong="H3808"\w* \w who|strong="H3548"\w* \w has|strong="H3117"\w* \w the|strong="H3117"\w* itch \w seven|strong="H7651"\w* \w more|strong="H8145"\w* \w days|strong="H3117"\w*. +\v 34 \w On|strong="H3117"\w* \w the|strong="H7200"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*, \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* examine \w the|strong="H7200"\w* itch; \w and|strong="H3117"\w* \w behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w the|strong="H7200"\w* itch hasn’t \w spread|strong="H6581"\w* \w in|strong="H3117"\w* \w the|strong="H7200"\w* \w skin|strong="H5785"\w*, \w and|strong="H3117"\w* \w its|strong="H4480"\w* \w appearance|strong="H4758"\w* isn’t \w deeper|strong="H6013"\w* \w than|strong="H4480"\w* \w the|strong="H7200"\w* \w skin|strong="H5785"\w*, \w then|strong="H2009"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w pronounce|strong="H2891"\w* \w him|strong="H7200"\w* \w clean|strong="H2891"\w*. \w He|strong="H3117"\w* \w shall|strong="H3548"\w* \w wash|strong="H3526"\w* \w his|strong="H3526"\w* clothes \w and|strong="H3117"\w* \w be|strong="H3808"\w* \w clean|strong="H2891"\w*. +\v 35 But if the itch \w spreads|strong="H6581"\w* \w in|strong="H5785"\w* the \w skin|strong="H5785"\w* after his \w cleansing|strong="H2893"\w*, +\v 36 \w then|strong="H2009"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w examine|strong="H1239"\w* \w him|strong="H7200"\w*; \w and|strong="H3548"\w* \w behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w the|strong="H7200"\w* itch \w has|strong="H2009"\w* \w spread|strong="H6581"\w* \w in|strong="H3808"\w* \w the|strong="H7200"\w* \w skin|strong="H5785"\w*, \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w not|strong="H3808"\w* \w look|strong="H7200"\w* \w for|strong="H3808"\w* \w the|strong="H7200"\w* \w yellow|strong="H6669"\w* \w hair|strong="H8181"\w*; \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w unclean|strong="H2931"\w*. +\v 37 \w But|strong="H1931"\w* \w if|strong="H1931"\w* \w in|strong="H5975"\w* \w his|strong="H5975"\w* \w eyes|strong="H5869"\w* \w the|strong="H5975"\w* itch \w is|strong="H1931"\w* arrested \w and|strong="H3548"\w* \w black|strong="H7838"\w* \w hair|strong="H8181"\w* \w has|strong="H5869"\w* \w grown|strong="H6779"\w* \w in|strong="H5975"\w* \w it|strong="H1931"\w*, \w then|strong="H5975"\w* \w the|strong="H5975"\w* itch \w is|strong="H1931"\w* \w healed|strong="H7495"\w*. \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w clean|strong="H2889"\w*. \w The|strong="H5975"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w pronounce|strong="H2891"\w* \w him|strong="H2891"\w* \w clean|strong="H2889"\w*. +\p +\v 38 “\w When|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H1320"\w* \w or|strong="H1320"\w* \w a|strong="H3068"\w* woman \w has|strong="H1961"\w* \w bright|strong="H3836"\w* spots \w in|strong="H1320"\w* \w the|strong="H3588"\w* \w skin|strong="H5785"\w* \w of|strong="H1320"\w* \w the|strong="H3588"\w* \w body|strong="H1320"\w*, \w even|strong="H3588"\w* \w white|strong="H3836"\w* \w bright|strong="H3836"\w* spots, +\v 39 \w then|strong="H2009"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* examine \w them|strong="H7200"\w*. \w Behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w the|strong="H7200"\w* \w bright|strong="H3836"\w* spots \w on|strong="H7200"\w* \w the|strong="H7200"\w* \w skin|strong="H5785"\w* \w of|strong="H3548"\w* \w their|strong="H7200"\w* \w body|strong="H1320"\w* \w are|strong="H3548"\w* \w a|strong="H3068"\w* dull \w white|strong="H3836"\w*, \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* harmless rash. \w It|strong="H1931"\w* \w has|strong="H2009"\w* \w broken|strong="H6524"\w* \w out|strong="H7200"\w* \w in|strong="H1320"\w* \w the|strong="H7200"\w* \w skin|strong="H5785"\w*. \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w clean|strong="H2889"\w*. +\p +\v 40 “\w If|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H7218"\w*’s \w hair|strong="H7218"\w* \w has|strong="H3588"\w* \w fallen|strong="H4803"\w* \w from|strong="H7218"\w* \w his|strong="H3588"\w* \w head|strong="H7218"\w*, \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w bald|strong="H7142"\w*. \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w clean|strong="H2889"\w*. +\v 41 \w If|strong="H1931"\w* \w his|strong="H6440"\w* \w hair|strong="H7218"\w* \w has|strong="H1931"\w* \w fallen|strong="H4803"\w* \w off|strong="H4803"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w front|strong="H6440"\w* \w part|strong="H7218"\w* \w of|strong="H7218"\w* \w his|strong="H6440"\w* \w head|strong="H7218"\w*, \w his|strong="H6440"\w* \w forehead|strong="H6285"\w* \w is|strong="H1931"\w* \w bald|strong="H1371"\w*. \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w clean|strong="H2889"\w*. +\v 42 \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w a|strong="H3068"\w* reddish-white \w plague|strong="H5061"\w* \w is|strong="H1931"\w* \w in|strong="H1961"\w* \w the|strong="H3588"\w* \w bald|strong="H1372"\w* \w head|strong="H7146"\w* \w or|strong="H5061"\w* \w the|strong="H3588"\w* \w bald|strong="H1372"\w* \w forehead|strong="H1372"\w*, \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w leprosy|strong="H6883"\w* \w breaking|strong="H6524"\w* \w out|strong="H6524"\w* \w in|strong="H1961"\w* \w his|strong="H1961"\w* \w bald|strong="H1372"\w* \w head|strong="H7146"\w* \w or|strong="H5061"\w* \w his|strong="H1961"\w* \w bald|strong="H1372"\w* \w forehead|strong="H1372"\w*. +\v 43 \w Then|strong="H2009"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* examine \w him|strong="H7200"\w*. \w Behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w the|strong="H7200"\w* \w swelling|strong="H7613"\w* \w of|strong="H5061"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* \w is|strong="H2009"\w* reddish-white \w in|strong="H1320"\w* \w his|strong="H7200"\w* \w bald|strong="H1372"\w* \w head|strong="H7146"\w*, \w or|strong="H7200"\w* \w in|strong="H1320"\w* \w his|strong="H7200"\w* \w bald|strong="H1372"\w* \w forehead|strong="H1372"\w*, \w like|strong="H4758"\w* \w the|strong="H7200"\w* \w appearance|strong="H4758"\w* \w of|strong="H5061"\w* \w leprosy|strong="H6883"\w* \w in|strong="H1320"\w* \w the|strong="H7200"\w* \w skin|strong="H5785"\w* \w of|strong="H5061"\w* \w the|strong="H7200"\w* \w body|strong="H1320"\w*, +\v 44 \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w leprous|strong="H6879"\w* \w man|strong="H7218"\w*. \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w unclean|strong="H2931"\w*. \w The|strong="H3548"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w surely|strong="H2930"\w* \w pronounce|strong="H2930"\w* \w him|strong="H2930"\w* \w unclean|strong="H2931"\w*. \w His|strong="H2930"\w* \w plague|strong="H5061"\w* \w is|strong="H1931"\w* \w on|strong="H7218"\w* \w his|strong="H2930"\w* \w head|strong="H7218"\w*. +\p +\v 45 “\w The|strong="H5921"\w* \w leper|strong="H6879"\w* \w in|strong="H5921"\w* \w whom|strong="H7121"\w* \w the|strong="H5921"\w* \w plague|strong="H5061"\w* \w is|strong="H1961"\w* \w shall|strong="H7218"\w* \w wear|strong="H1961"\w* \w torn|strong="H6533"\w* clothes, \w and|strong="H7218"\w* \w the|strong="H5921"\w* \w hair|strong="H7218"\w* \w of|strong="H7218"\w* \w his|strong="H7121"\w* \w head|strong="H7218"\w* \w shall|strong="H7218"\w* hang \w loose|strong="H5921"\w*. \w He|strong="H5921"\w* \w shall|strong="H7218"\w* \w cover|strong="H5844"\w* \w his|strong="H7121"\w* upper \w lip|strong="H8222"\w*, \w and|strong="H7218"\w* \w shall|strong="H7218"\w* \w cry|strong="H7121"\w*, ‘\w Unclean|strong="H2931"\w*! \w Unclean|strong="H2931"\w*!’ +\v 46 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w in|strong="H3427"\w* \w which|strong="H1931"\w* \w the|strong="H3605"\w* \w plague|strong="H5061"\w* \w is|strong="H1931"\w* \w in|strong="H3427"\w* \w him|strong="H2930"\w* \w he|strong="H1931"\w* \w shall|strong="H3117"\w* \w be|strong="H3117"\w* \w unclean|strong="H2931"\w*. \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w unclean|strong="H2931"\w*. \w He|strong="H1931"\w* \w shall|strong="H3117"\w* \w dwell|strong="H3427"\w* \w alone|strong="H1931"\w*. \w His|strong="H3605"\w* \w dwelling|strong="H3427"\w* \w shall|strong="H3117"\w* \w be|strong="H3117"\w* \w outside|strong="H2351"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w*. +\p +\v 47 “\w The|strong="H3588"\w* garment \w also|strong="H3588"\w* \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w plague|strong="H5061"\w* \w of|strong="H5061"\w* \w leprosy|strong="H6883"\w* \w is|strong="H1961"\w* \w in|strong="H1961"\w*, whether \w it|strong="H3588"\w* \w is|strong="H1961"\w* \w a|strong="H3068"\w* woolen garment, \w or|strong="H5061"\w* \w a|strong="H3068"\w* \w linen|strong="H6593"\w* garment; +\v 48 whether \w it|strong="H3605"\w* \w is|strong="H3605"\w* \w in|strong="H4399"\w* \w warp|strong="H8359"\w* \w or|strong="H6785"\w* \w woof|strong="H6154"\w*;\f + \fr 13:48 \ft warp and woof are the vertical and horizontal threads in woven cloth\f* \w of|strong="H3605"\w* \w linen|strong="H6593"\w* \w or|strong="H6785"\w* \w of|strong="H3605"\w* \w wool|strong="H6785"\w*; whether \w in|strong="H4399"\w* \w leather|strong="H5785"\w*, \w or|strong="H6785"\w* \w in|strong="H4399"\w* \w anything|strong="H3605"\w* \w made|strong="H4399"\w* \w of|strong="H3605"\w* \w leather|strong="H5785"\w*; +\v 49 \w if|strong="H7200"\w* \w the|strong="H3605"\w* \w plague|strong="H5061"\w* \w is|strong="H1931"\w* \w greenish|strong="H3422"\w* \w or|strong="H7200"\w* reddish \w in|strong="H7200"\w* \w the|strong="H3605"\w* garment, \w or|strong="H7200"\w* \w in|strong="H7200"\w* \w the|strong="H3605"\w* \w leather|strong="H5785"\w*, \w or|strong="H7200"\w* \w in|strong="H7200"\w* \w the|strong="H3605"\w* \w warp|strong="H8359"\w*, \w or|strong="H7200"\w* \w in|strong="H7200"\w* \w the|strong="H3605"\w* \w woof|strong="H6154"\w*, \w or|strong="H7200"\w* \w in|strong="H7200"\w* \w anything|strong="H3605"\w* \w made|strong="H1961"\w* \w of|strong="H3627"\w* \w leather|strong="H5785"\w*; \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H3605"\w* \w plague|strong="H5061"\w* \w of|strong="H3627"\w* \w leprosy|strong="H6883"\w*, \w and|strong="H3548"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w shown|strong="H7200"\w* \w to|strong="H1961"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w*. +\v 50 \w The|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* examine \w the|strong="H7200"\w* \w plague|strong="H5061"\w*, \w and|strong="H3117"\w* \w isolate|strong="H5462"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. +\v 51 \w He|strong="H1931"\w* \w shall|strong="H3117"\w* examine \w the|strong="H3605"\w* \w plague|strong="H5061"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*. \w If|strong="H3588"\w* \w the|strong="H3605"\w* \w plague|strong="H5061"\w* \w has|strong="H5061"\w* \w spread|strong="H6581"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* garment, \w either|strong="H3588"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w warp|strong="H8359"\w*, \w or|strong="H3117"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w woof|strong="H6154"\w*, \w or|strong="H3117"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w skin|strong="H5785"\w*, \w whatever|strong="H3605"\w* \w use|strong="H4399"\w* \w the|strong="H3605"\w* \w skin|strong="H5785"\w* \w is|strong="H1931"\w* \w used|strong="H6213"\w* \w for|strong="H3588"\w*, \w the|strong="H3605"\w* \w plague|strong="H5061"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* destructive mildew. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w unclean|strong="H2931"\w*. +\v 52 \w He|strong="H1931"\w* \w shall|strong="H1931"\w* \w burn|strong="H8313"\w* \w the|strong="H3605"\w* garment, whether \w the|strong="H3605"\w* \w warp|strong="H8359"\w* \w or|strong="H5061"\w* \w the|strong="H3605"\w* \w woof|strong="H6154"\w*, \w in|strong="H1961"\w* \w wool|strong="H6785"\w* \w or|strong="H5061"\w* \w in|strong="H1961"\w* \w linen|strong="H6593"\w*, \w or|strong="H5061"\w* \w anything|strong="H3605"\w* \w of|strong="H3627"\w* \w leather|strong="H5785"\w*, \w in|strong="H1961"\w* \w which|strong="H1931"\w* \w the|strong="H3605"\w* \w plague|strong="H5061"\w* \w is|strong="H1931"\w*, \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* destructive mildew. \w It|strong="H1931"\w* \w shall|strong="H1931"\w* \w be|strong="H1961"\w* \w burned|strong="H8313"\w* \w in|strong="H1961"\w* \w the|strong="H3605"\w* fire. +\p +\v 53 “\w If|strong="H2009"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w examines|strong="H7200"\w* \w it|strong="H7200"\w*, \w and|strong="H3548"\w* \w behold|strong="H2009"\w*, \w the|strong="H3605"\w* \w plague|strong="H5061"\w* hasn’t \w spread|strong="H6581"\w* \w in|strong="H3808"\w* \w the|strong="H3605"\w* garment, \w either|strong="H3808"\w* \w in|strong="H3808"\w* \w the|strong="H3605"\w* \w warp|strong="H8359"\w*, \w or|strong="H3808"\w* \w in|strong="H3808"\w* \w the|strong="H3605"\w* \w woof|strong="H6154"\w*, \w or|strong="H3808"\w* \w in|strong="H3808"\w* \w anything|strong="H3605"\w* \w of|strong="H3627"\w* \w skin|strong="H5785"\w*; +\v 54 \w then|strong="H6680"\w* \w the|strong="H3117"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w command|strong="H6680"\w* \w that|strong="H3117"\w* \w they|strong="H3117"\w* \w wash|strong="H3526"\w* \w the|strong="H3117"\w* \w thing|strong="H8145"\w* \w that|strong="H3117"\w* \w the|strong="H3117"\w* \w plague|strong="H5061"\w* \w is|strong="H3117"\w* \w in|strong="H3117"\w*, \w and|strong="H3117"\w* \w he|strong="H3117"\w* \w shall|strong="H3548"\w* \w isolate|strong="H5462"\w* \w it|strong="H3117"\w* \w seven|strong="H7651"\w* \w more|strong="H8145"\w* \w days|strong="H3117"\w*. +\v 55 \w Then|strong="H2009"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* examine \w it|strong="H1931"\w*, \w after|strong="H7200"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* \w is|strong="H1931"\w* \w washed|strong="H3526"\w*; \w and|strong="H3548"\w* \w behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* hasn’t \w changed|strong="H2015"\w* \w its|strong="H2015"\w* color, \w and|strong="H3548"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* hasn’t \w spread|strong="H6581"\w*, \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w unclean|strong="H2931"\w*; \w you|strong="H3808"\w* \w shall|strong="H3548"\w* \w burn|strong="H8313"\w* \w it|strong="H1931"\w* \w in|strong="H3808"\w* \w the|strong="H7200"\w* fire. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* mildewed spot, \w whether|strong="H7200"\w* \w the|strong="H7200"\w* \w bareness|strong="H7146"\w* \w is|strong="H1931"\w* inside \w or|strong="H3808"\w* outside. +\v 56 \w If|strong="H2009"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w looks|strong="H7200"\w*, \w and|strong="H3548"\w* \w behold|strong="H2009"\w*, \w the|strong="H7200"\w* \w plague|strong="H5061"\w* \w has|strong="H5061"\w* \w faded|strong="H3544"\w* \w after|strong="H4480"\w* \w it|strong="H7200"\w* \w is|strong="H2009"\w* \w washed|strong="H3526"\w*, \w then|strong="H2009"\w* \w he|strong="H4480"\w* \w shall|strong="H3548"\w* \w tear|strong="H7167"\w* \w it|strong="H7200"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H7200"\w* garment, \w or|strong="H4480"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H7200"\w* \w skin|strong="H5785"\w*, \w or|strong="H4480"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H7200"\w* \w warp|strong="H8359"\w*, \w or|strong="H4480"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H7200"\w* \w woof|strong="H6154"\w*; +\v 57 \w and|strong="H7200"\w* \w if|strong="H7200"\w* \w it|strong="H1931"\w* \w appears|strong="H7200"\w* \w again|strong="H5750"\w* \w in|strong="H5750"\w* \w the|strong="H3605"\w* garment, either \w in|strong="H5750"\w* \w the|strong="H3605"\w* \w warp|strong="H8359"\w*, \w or|strong="H7200"\w* \w in|strong="H5750"\w* \w the|strong="H3605"\w* \w woof|strong="H6154"\w*, \w or|strong="H7200"\w* \w in|strong="H5750"\w* \w anything|strong="H3605"\w* \w of|strong="H3627"\w* \w skin|strong="H5785"\w*, \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w spreading|strong="H6524"\w*. \w You|strong="H3605"\w* \w shall|strong="H1931"\w* \w burn|strong="H8313"\w* \w what|strong="H7200"\w* \w the|strong="H3605"\w* \w plague|strong="H5061"\w* \w is|strong="H1931"\w* \w in|strong="H5750"\w* \w with|strong="H8313"\w* fire. +\v 58 \w The|strong="H3605"\w* garment, \w either|strong="H8145"\w* \w the|strong="H3605"\w* \w warp|strong="H8359"\w*, \w or|strong="H5061"\w* \w the|strong="H3605"\w* \w woof|strong="H6154"\w*, \w or|strong="H5061"\w* \w whatever|strong="H3605"\w* \w thing|strong="H3627"\w* \w of|strong="H3627"\w* \w skin|strong="H5785"\w* \w it|strong="H3627"\w* \w is|strong="H3605"\w*, \w which|strong="H1992"\w* \w you|strong="H3605"\w* \w shall|strong="H2891"\w* \w wash|strong="H3526"\w*, if \w the|strong="H3605"\w* \w plague|strong="H5061"\w* \w has|strong="H5061"\w* \w departed|strong="H5493"\w* \w from|strong="H5493"\w* \w them|strong="H1992"\w*, \w then|strong="H3605"\w* \w it|strong="H3627"\w* \w shall|strong="H2891"\w* \w be|strong="H5061"\w* \w washed|strong="H3526"\w* \w the|strong="H3605"\w* \w second|strong="H8145"\w* \w time|strong="H8145"\w*, \w and|strong="H3627"\w* \w it|strong="H3627"\w* \w will|strong="H1992"\w* \w be|strong="H5061"\w* \w clean|strong="H2891"\w*.” +\p +\v 59 \w This|strong="H2063"\w* \w is|strong="H3605"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w plague|strong="H5061"\w* \w of|strong="H3627"\w* mildew \w in|strong="H3627"\w* \w a|strong="H3068"\w* garment \w of|strong="H3627"\w* \w wool|strong="H6785"\w* \w or|strong="H5061"\w* \w linen|strong="H6593"\w*, either \w in|strong="H3627"\w* \w the|strong="H3605"\w* \w warp|strong="H8359"\w*, \w or|strong="H5061"\w* \w the|strong="H3605"\w* \w woof|strong="H6154"\w*, \w or|strong="H5061"\w* \w in|strong="H3627"\w* \w anything|strong="H3605"\w* \w of|strong="H3627"\w* \w skin|strong="H5785"\w*, \w to|strong="H3627"\w* \w pronounce|strong="H2930"\w* \w it|strong="H2930"\w* \w clean|strong="H2891"\w*, \w or|strong="H5061"\w* \w to|strong="H3627"\w* \w pronounce|strong="H2930"\w* \w it|strong="H2930"\w* \w unclean|strong="H2930"\w*. +\c 14 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\p +\v 2 “\w This|strong="H2063"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w the|strong="H3117"\w* \w law|strong="H8451"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w leper|strong="H6879"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w his|strong="H1961"\w* \w cleansing|strong="H2893"\w*: \w He|strong="H3117"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w brought|strong="H3548"\w* \w to|strong="H1961"\w* \w the|strong="H3117"\w* \w priest|strong="H3548"\w*, +\v 3 \w and|strong="H3548"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4480"\w* \w the|strong="H7200"\w* \w camp|strong="H4264"\w*. \w The|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* examine \w him|strong="H7200"\w*. \w Behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* \w of|strong="H4480"\w* \w leprosy|strong="H6883"\w* \w is|strong="H2009"\w* \w healed|strong="H7495"\w* \w in|strong="H7200"\w* \w the|strong="H7200"\w* \w leper|strong="H6879"\w*, +\v 4 \w then|strong="H3947"\w* \w the|strong="H3947"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w command|strong="H6680"\w* \w them|strong="H6680"\w* \w to|strong="H6680"\w* \w take|strong="H3947"\w* \w for|strong="H6086"\w* \w him|strong="H3947"\w* \w who|strong="H3548"\w* \w is|strong="H2416"\w* \w to|strong="H6680"\w* \w be|strong="H6086"\w* \w cleansed|strong="H2891"\w* \w two|strong="H8147"\w* \w living|strong="H2416"\w* \w clean|strong="H2889"\w* \w birds|strong="H6833"\w*, cedar \w wood|strong="H6086"\w*, \w scarlet|strong="H8144"\w*, \w and|strong="H6086"\w* hyssop. +\v 5 \w The|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w command|strong="H6680"\w* \w them|strong="H5921"\w* \w to|strong="H5921"\w* \w kill|strong="H7819"\w* \w one|strong="H2416"\w* \w of|strong="H3627"\w* \w the|strong="H5921"\w* \w birds|strong="H6833"\w* \w in|strong="H5921"\w* \w an|strong="H7819"\w* \w earthen|strong="H2789"\w* \w vessel|strong="H3627"\w* \w over|strong="H5921"\w* \w running|strong="H2416"\w* \w water|strong="H4325"\w*. +\v 6 \w As|strong="H4325"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w living|strong="H2416"\w* \w bird|strong="H6833"\w*, \w he|strong="H5921"\w* \w shall|strong="H4325"\w* \w take|strong="H3947"\w* \w it|strong="H5921"\w*, \w the|strong="H5921"\w* cedar \w wood|strong="H6086"\w*, \w the|strong="H5921"\w* \w scarlet|strong="H8144"\w*, \w and|strong="H6086"\w* \w the|strong="H5921"\w* hyssop, \w and|strong="H6086"\w* \w shall|strong="H4325"\w* \w dip|strong="H2881"\w* \w them|strong="H5921"\w* \w and|strong="H6086"\w* \w the|strong="H5921"\w* \w living|strong="H2416"\w* \w bird|strong="H6833"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w of|strong="H4325"\w* \w the|strong="H5921"\w* \w bird|strong="H6833"\w* \w that|strong="H4325"\w* \w was|strong="H4325"\w* \w killed|strong="H7819"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w running|strong="H2416"\w* \w water|strong="H4325"\w*. +\v 7 \w He|strong="H4480"\w* \w shall|strong="H7704"\w* \w sprinkle|strong="H5137"\w* \w on|strong="H5921"\w* \w him|strong="H6440"\w* \w who|strong="H2416"\w* \w is|strong="H6440"\w* \w to|strong="H7971"\w* \w be|strong="H6440"\w* \w cleansed|strong="H2891"\w* \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w leprosy|strong="H6883"\w* \w seven|strong="H7651"\w* \w times|strong="H6471"\w*, \w and|strong="H7971"\w* \w shall|strong="H7704"\w* \w pronounce|strong="H2891"\w* \w him|strong="H6440"\w* \w clean|strong="H2891"\w*, \w and|strong="H7971"\w* \w shall|strong="H7704"\w* \w let|strong="H7971"\w* \w the|strong="H6440"\w* \w living|strong="H2416"\w* \w bird|strong="H6833"\w* \w go|strong="H7971"\w* \w into|strong="H5921"\w* \w the|strong="H6440"\w* \w open|strong="H6440"\w* \w field|strong="H7704"\w*. +\p +\v 8 “\w He|strong="H3117"\w* \w who|strong="H3605"\w* \w is|strong="H3117"\w* \w to|strong="H3117"\w* \w be|strong="H3117"\w* \w cleansed|strong="H2891"\w* \w shall|strong="H3117"\w* \w wash|strong="H3526"\w* \w his|strong="H3605"\w* clothes, \w and|strong="H3117"\w* \w shave|strong="H1548"\w* \w off|strong="H1548"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w hair|strong="H8181"\w*, \w and|strong="H3117"\w* \w bathe|strong="H7364"\w* \w himself|strong="H3427"\w* \w in|strong="H3427"\w* \w water|strong="H4325"\w*; \w and|strong="H3117"\w* \w he|strong="H3117"\w* \w shall|strong="H3117"\w* \w be|strong="H3117"\w* \w clean|strong="H2891"\w*. \w After|strong="H3117"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w shall|strong="H3117"\w* come \w into|strong="H4325"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w*, \w but|strong="H3605"\w* \w shall|strong="H3117"\w* \w dwell|strong="H3427"\w* \w outside|strong="H2351"\w* \w his|strong="H3605"\w* tent \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. +\v 9 \w It|strong="H1961"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*, \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w shall|strong="H3117"\w* \w shave|strong="H1548"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w hair|strong="H8181"\w* \w off|strong="H1548"\w* \w his|strong="H3605"\w* \w head|strong="H7218"\w* \w and|strong="H3117"\w* \w his|strong="H3605"\w* \w beard|strong="H2206"\w* \w and|strong="H3117"\w* \w his|strong="H3605"\w* \w eyebrows|strong="H5869"\w*. \w He|strong="H3117"\w* \w shall|strong="H3117"\w* \w shave|strong="H1548"\w* \w off|strong="H1548"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w hair|strong="H8181"\w*. \w He|strong="H3117"\w* \w shall|strong="H3117"\w* \w wash|strong="H3526"\w* \w his|strong="H3605"\w* clothes, \w and|strong="H3117"\w* \w he|strong="H3117"\w* \w shall|strong="H3117"\w* \w bathe|strong="H7364"\w* \w his|strong="H3605"\w* \w body|strong="H1320"\w* \w in|strong="H3117"\w* \w water|strong="H4325"\w*. \w Then|strong="H1961"\w* \w he|strong="H3117"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w clean|strong="H2891"\w*. +\p +\v 10 “\w On|strong="H3117"\w* \w the|strong="H3947"\w* \w eighth|strong="H8066"\w* \w day|strong="H3117"\w* \w he|strong="H3117"\w* \w shall|strong="H3117"\w* \w take|strong="H3947"\w* \w two|strong="H8147"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*, \w one|strong="H3532"\w* \w ewe|strong="H3535"\w* \w lamb|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1323"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*, \w three|strong="H7969"\w* tenths \w of|strong="H3117"\w* \w an|strong="H3947"\w* ephah\f + \fr 14:10 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w of|strong="H3117"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w for|strong="H3117"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w*, \w and|strong="H3117"\w* \w one|strong="H3532"\w* \w log|strong="H3849"\w*\f + \fr 14:10 \ft a log is a liquid measure of about 300 ml or 10 ounces\f* \w of|strong="H3117"\w* \w oil|strong="H8081"\w*. +\v 11 \w The|strong="H6440"\w* \w priest|strong="H3548"\w* \w who|strong="H3068"\w* cleanses \w him|strong="H6440"\w* \w shall|strong="H3548"\w* \w set|strong="H5975"\w* \w the|strong="H6440"\w* \w man|strong="H6440"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w cleansed|strong="H2891"\w*, \w and|strong="H3068"\w* those things, \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w at|strong="H3068"\w* \w the|strong="H6440"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*. +\p +\v 12 “\w The|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* \w one|strong="H3532"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w*, \w and|strong="H3068"\w* \w offer|strong="H7126"\w* \w him|strong="H6440"\w* \w for|strong="H6440"\w* \w a|strong="H3068"\w* trespass \w offering|strong="H8573"\w*, \w with|strong="H3068"\w* \w the|strong="H6440"\w* \w log|strong="H3849"\w* \w of|strong="H3068"\w* \w oil|strong="H8081"\w*, \w and|strong="H3068"\w* \w wave|strong="H8573"\w* \w them|strong="H6440"\w* \w for|strong="H6440"\w* \w a|strong="H3068"\w* \w wave|strong="H8573"\w* \w offering|strong="H8573"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 13 \w He|strong="H1931"\w* \w shall|strong="H3548"\w* \w kill|strong="H7819"\w* \w the|strong="H3588"\w* \w male|strong="H3532"\w* \w lamb|strong="H3532"\w* \w in|strong="H4725"\w* \w the|strong="H3588"\w* \w place|strong="H4725"\w* \w where|strong="H4725"\w* \w they|strong="H3588"\w* \w kill|strong="H7819"\w* \w the|strong="H3588"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w* \w and|strong="H3548"\w* \w the|strong="H3588"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w in|strong="H4725"\w* \w the|strong="H3588"\w* \w place|strong="H4725"\w* \w of|strong="H4725"\w* \w the|strong="H3588"\w* \w sanctuary|strong="H6944"\w*; \w for|strong="H3588"\w* \w as|strong="H3588"\w* \w the|strong="H3588"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w* \w is|strong="H1931"\w* \w the|strong="H3588"\w* \w priest|strong="H3548"\w*’s, \w so|strong="H3588"\w* \w is|strong="H1931"\w* \w the|strong="H3588"\w* trespass \w offering|strong="H5930"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w*. +\v 14 \w The|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* \w some|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* trespass \w offering|strong="H3548"\w*, \w and|strong="H3027"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tip|strong="H8571"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w right|strong="H3233"\w* ear \w of|strong="H3027"\w* \w him|strong="H5414"\w* \w who|strong="H3548"\w* \w is|strong="H3027"\w* \w to|strong="H5921"\w* \w be|strong="H3027"\w* \w cleansed|strong="H2891"\w*, \w and|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* thumb \w of|strong="H3027"\w* \w his|strong="H5414"\w* \w right|strong="H3233"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* big toe \w of|strong="H3027"\w* \w his|strong="H5414"\w* \w right|strong="H3233"\w* \w foot|strong="H7272"\w*. +\v 15 \w The|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* some \w of|strong="H3709"\w* \w the|strong="H5921"\w* \w log|strong="H3849"\w* \w of|strong="H3709"\w* \w oil|strong="H8081"\w*, \w and|strong="H3548"\w* \w pour|strong="H3332"\w* \w it|strong="H5921"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w palm|strong="H3709"\w* \w of|strong="H3709"\w* \w his|strong="H3947"\w* \w own|strong="H3548"\w* \w left|strong="H8042"\w* \w hand|strong="H3709"\w*. +\v 16 \w The|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w dip|strong="H2881"\w* \w his|strong="H3068"\w* \w right|strong="H3233"\w* finger \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w oil|strong="H8081"\w* \w that|strong="H3068"\w* \w is|strong="H3068"\w* \w in|strong="H5921"\w* \w his|strong="H3068"\w* \w left|strong="H8042"\w* \w hand|strong="H3709"\w*, \w and|strong="H3068"\w* \w shall|strong="H3548"\w* \w sprinkle|strong="H5137"\w* \w some|strong="H4480"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w oil|strong="H8081"\w* \w with|strong="H3068"\w* \w his|strong="H3068"\w* finger \w seven|strong="H7651"\w* \w times|strong="H6471"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 17 \w The|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w put|strong="H5414"\w* \w some|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w oil|strong="H8081"\w* \w that|strong="H5414"\w* \w is|strong="H3027"\w* \w in|strong="H5921"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tip|strong="H8571"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w right|strong="H3233"\w* ear \w of|strong="H3027"\w* \w him|strong="H5414"\w* \w who|strong="H3548"\w* \w is|strong="H3027"\w* \w to|strong="H5921"\w* \w be|strong="H3027"\w* \w cleansed|strong="H2891"\w*, \w and|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* thumb \w of|strong="H3027"\w* \w his|strong="H5414"\w* \w right|strong="H3233"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* big toe \w of|strong="H3027"\w* \w his|strong="H5414"\w* \w right|strong="H3233"\w* \w foot|strong="H7272"\w*, \w upon|strong="H5921"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* trespass \w offering|strong="H3548"\w*. +\v 18 \w The|strong="H6440"\w* \w rest|strong="H3498"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w oil|strong="H8081"\w* \w that|strong="H3068"\w* \w is|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w*’s \w hand|strong="H3709"\w* \w he|strong="H3068"\w* \w shall|strong="H3548"\w* \w put|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w head|strong="H7218"\w* \w of|strong="H3068"\w* \w him|strong="H5414"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w cleansed|strong="H2891"\w*, \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w make|strong="H5414"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w him|strong="H5414"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 19 “\w The|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w offer|strong="H6213"\w* \w the|strong="H5921"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w*, \w and|strong="H3548"\w* \w make|strong="H6213"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w* \w who|strong="H3548"\w* \w is|strong="H2403"\w* \w to|strong="H5921"\w* \w be|strong="H3548"\w* \w cleansed|strong="H2891"\w* \w because|strong="H5921"\w* \w of|strong="H5921"\w* \w his|strong="H5921"\w* \w uncleanness|strong="H2932"\w*. Afterward \w he|strong="H6213"\w* \w shall|strong="H3548"\w* \w kill|strong="H7819"\w* \w the|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*; +\v 20 \w then|strong="H5927"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w offer|strong="H5927"\w* \w the|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w* \w and|strong="H3548"\w* \w the|strong="H5921"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*. \w The|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H3548"\w* \w he|strong="H5921"\w* \w shall|strong="H3548"\w* \w be|strong="H3548"\w* \w clean|strong="H2891"\w*. +\p +\v 21 “\w If|strong="H5381"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w poor|strong="H1800"\w*, \w and|strong="H3027"\w* \w can|strong="H3947"\w*’t \w afford|strong="H3027"\w* \w so|strong="H3947"\w* \w much|strong="H3027"\w*, \w then|strong="H3947"\w* \w he|strong="H1931"\w* \w shall|strong="H3027"\w* \w take|strong="H3947"\w* \w one|strong="H3532"\w* \w male|strong="H3532"\w* \w lamb|strong="H3532"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* trespass \w offering|strong="H4503"\w* \w to|strong="H5921"\w* \w be|strong="H3027"\w* \w waved|strong="H8573"\w*, \w to|strong="H5921"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H3027"\w* \w one|strong="H3532"\w* \w tenth|strong="H6241"\w* \w of|strong="H3027"\w* \w an|strong="H3947"\w* ephah\f + \fr 14:21 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w of|strong="H3027"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w and|strong="H3027"\w* \w a|strong="H3068"\w* \w log|strong="H3849"\w*\f + \fr 14:21 \ft a log is a liquid measure of about 300 ml or 10 ounces\f* \w of|strong="H3027"\w* \w oil|strong="H8081"\w*; +\v 22 \w and|strong="H1121"\w* \w two|strong="H8147"\w* \w turtledoves|strong="H8449"\w*, \w or|strong="H1121"\w* \w two|strong="H8147"\w* \w young|strong="H1121"\w* \w pigeons|strong="H3123"\w*, \w such|strong="H1961"\w* \w as|strong="H1961"\w* \w he|strong="H8147"\w* \w is|strong="H3027"\w* \w able|strong="H3027"\w* \w to|strong="H1961"\w* \w afford|strong="H3027"\w*; \w and|strong="H1121"\w* \w the|strong="H3027"\w* \w one|strong="H1121"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w*, \w and|strong="H1121"\w* \w the|strong="H3027"\w* \w other|strong="H8147"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*. +\p +\v 23 “\w On|strong="H3117"\w* \w the|strong="H6440"\w* \w eighth|strong="H8066"\w* \w day|strong="H3117"\w* \w he|strong="H3117"\w* \w shall|strong="H3548"\w* bring \w them|strong="H6440"\w* \w for|strong="H6440"\w* \w his|strong="H3068"\w* \w cleansing|strong="H2893"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w*, \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 24 \w The|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* \w the|strong="H6440"\w* \w lamb|strong="H3532"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* trespass \w offering|strong="H8573"\w*, \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w log|strong="H3849"\w* \w of|strong="H3068"\w* \w oil|strong="H8081"\w*, \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w wave|strong="H8573"\w* \w them|strong="H6440"\w* \w for|strong="H6440"\w* \w a|strong="H3068"\w* \w wave|strong="H8573"\w* \w offering|strong="H8573"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 25 \w He|strong="H5414"\w* \w shall|strong="H3548"\w* \w kill|strong="H7819"\w* \w the|strong="H5921"\w* \w lamb|strong="H3532"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* trespass \w offering|strong="H3548"\w*. \w The|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* \w some|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* trespass \w offering|strong="H3548"\w* \w and|strong="H3027"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tip|strong="H8571"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w right|strong="H3233"\w* ear \w of|strong="H3027"\w* \w him|strong="H5414"\w* \w who|strong="H3548"\w* \w is|strong="H3027"\w* \w to|strong="H5921"\w* \w be|strong="H3027"\w* \w cleansed|strong="H2891"\w*, \w and|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* thumb \w of|strong="H3027"\w* \w his|strong="H5414"\w* \w right|strong="H3233"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* big toe \w of|strong="H3027"\w* \w his|strong="H5414"\w* \w right|strong="H3233"\w* \w foot|strong="H7272"\w*. +\v 26 \w The|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w pour|strong="H3332"\w* \w some|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H5921"\w* \w oil|strong="H8081"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w palm|strong="H3709"\w* \w of|strong="H4480"\w* \w his|strong="H5921"\w* \w own|strong="H3548"\w* \w left|strong="H8042"\w* \w hand|strong="H3709"\w*; +\v 27 \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w sprinkle|strong="H5137"\w* \w with|strong="H3068"\w* \w his|strong="H3068"\w* \w right|strong="H3233"\w* finger \w some|strong="H4480"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w oil|strong="H8081"\w* \w that|strong="H3068"\w* \w is|strong="H3068"\w* \w in|strong="H5921"\w* \w his|strong="H3068"\w* \w left|strong="H8042"\w* \w hand|strong="H3709"\w* \w seven|strong="H7651"\w* \w times|strong="H6471"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 28 \w Then|strong="H5414"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w put|strong="H5414"\w* \w some|strong="H4480"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w oil|strong="H8081"\w* \w that|strong="H5414"\w* \w is|strong="H3027"\w* \w in|strong="H5921"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tip|strong="H8571"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w right|strong="H3233"\w* ear \w of|strong="H3027"\w* \w him|strong="H5414"\w* \w who|strong="H3548"\w* \w is|strong="H3027"\w* \w to|strong="H5921"\w* \w be|strong="H3027"\w* \w cleansed|strong="H2891"\w*, \w and|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* thumb \w of|strong="H3027"\w* \w his|strong="H5414"\w* \w right|strong="H3233"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* big toe \w of|strong="H3027"\w* \w his|strong="H5414"\w* \w right|strong="H3233"\w* \w foot|strong="H7272"\w*, \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* trespass \w offering|strong="H4480"\w*. +\v 29 \w The|strong="H6440"\w* \w rest|strong="H3498"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w oil|strong="H8081"\w* \w that|strong="H3068"\w* \w is|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w*’s \w hand|strong="H3709"\w* \w he|strong="H3068"\w* \w shall|strong="H3548"\w* \w put|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w head|strong="H7218"\w* \w of|strong="H3068"\w* \w him|strong="H5414"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w cleansed|strong="H2891"\w*, \w to|strong="H3068"\w* \w make|strong="H5414"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w him|strong="H5414"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 30 \w He|strong="H6213"\w* \w shall|strong="H1121"\w* \w offer|strong="H6213"\w* \w one|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w turtledoves|strong="H8449"\w*, \w or|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w young|strong="H1121"\w* \w pigeons|strong="H3123"\w*, which \w ever|strong="H4480"\w* \w he|strong="H6213"\w* \w is|strong="H3027"\w* \w able|strong="H3027"\w* \w to|strong="H6213"\w* \w afford|strong="H3027"\w*, +\v 31 \w of|strong="H3068"\w* \w the|strong="H6440"\w* kind \w he|strong="H3068"\w* \w is|strong="H3068"\w* \w able|strong="H3027"\w* \w to|strong="H3068"\w* \w afford|strong="H3027"\w*, \w the|strong="H6440"\w* \w one|strong="H3068"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H4503"\w*, \w and|strong="H3068"\w* \w the|strong="H6440"\w* other \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, \w with|strong="H3068"\w* \w the|strong="H6440"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*. \w The|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w him|strong="H6440"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w to|strong="H3068"\w* \w be|strong="H3027"\w* \w cleansed|strong="H2891"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 32 \w This|strong="H2063"\w* \w is|strong="H3027"\w* \w the|strong="H3027"\w* \w law|strong="H8451"\w* \w for|strong="H3027"\w* \w him|strong="H3027"\w* \w in|strong="H3027"\w* whom \w is|strong="H3027"\w* \w the|strong="H3027"\w* \w plague|strong="H5061"\w* \w of|strong="H3027"\w* \w leprosy|strong="H6883"\w*, \w who|strong="H3808"\w* \w is|strong="H3027"\w* \w not|strong="H3808"\w* \w able|strong="H3027"\w* \w to|strong="H3027"\w* \w afford|strong="H3027"\w* \w the|strong="H3027"\w* sacrifice \w for|strong="H3027"\w* \w his|strong="H3027"\w* \w cleansing|strong="H2893"\w*. +\p +\v 33 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* \w to|strong="H1696"\w* Aaron, \w saying|strong="H1696"\w*, +\v 34 “\w When|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H5414"\w* \w come|strong="H5061"\w* \w into|strong="H5414"\w* \w the|strong="H3588"\w* land \w of|strong="H1004"\w* \w Canaan|strong="H3667"\w*, \w which|strong="H1004"\w* \w I|strong="H3588"\w* \w give|strong="H5414"\w* \w to|strong="H5414"\w* \w you|strong="H3588"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* possession, \w and|strong="H1004"\w* \w I|strong="H3588"\w* \w put|strong="H5414"\w* \w a|strong="H3068"\w* spreading mildew \w in|strong="H1004"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w in|strong="H1004"\w* \w the|strong="H3588"\w* land \w of|strong="H1004"\w* \w your|strong="H5414"\w* possession, +\v 35 \w then|strong="H7200"\w* \w he|strong="H1004"\w* \w who|strong="H3548"\w* owns \w the|strong="H7200"\w* \w house|strong="H1004"\w* \w shall|strong="H3548"\w* \w come|strong="H5061"\w* \w and|strong="H1004"\w* \w tell|strong="H5046"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w*, saying, ‘\w There|strong="H7200"\w* seems \w to|strong="H1004"\w* \w me|strong="H7200"\w* \w to|strong="H1004"\w* \w be|strong="H5061"\w* some sort \w of|strong="H1004"\w* \w plague|strong="H5061"\w* \w in|strong="H1004"\w* \w the|strong="H7200"\w* \w house|strong="H1004"\w*.’ +\v 36 \w The|strong="H3605"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w command|strong="H6680"\w* \w that|strong="H7200"\w* \w they|strong="H3651"\w* \w empty|strong="H6437"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*, \w before|strong="H2962"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w* goes \w in|strong="H1004"\w* \w to|strong="H1004"\w* examine \w the|strong="H3605"\w* \w plague|strong="H5061"\w*, \w that|strong="H7200"\w* \w all|strong="H3605"\w* \w that|strong="H7200"\w* \w is|strong="H3651"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w made|strong="H2930"\w* \w unclean|strong="H2930"\w*. Afterward \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w go|strong="H3548"\w* \w in|strong="H1004"\w* \w to|strong="H1004"\w* inspect \w the|strong="H3605"\w* \w house|strong="H1004"\w*. +\v 37 \w He|strong="H1004"\w* \w shall|strong="H1004"\w* examine \w the|strong="H7200"\w* \w plague|strong="H5061"\w*; \w and|strong="H1004"\w* \w behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* \w is|strong="H2009"\w* \w in|strong="H1004"\w* \w the|strong="H7200"\w* \w walls|strong="H7023"\w* \w of|strong="H1004"\w* \w the|strong="H7200"\w* \w house|strong="H1004"\w* \w with|strong="H1004"\w* hollow streaks, \w greenish|strong="H3422"\w* \w or|strong="H4480"\w* reddish, \w and|strong="H1004"\w* \w it|strong="H7200"\w* \w appears|strong="H4758"\w* \w to|strong="H1004"\w* \w be|strong="H5061"\w* \w deeper|strong="H8217"\w* \w than|strong="H4480"\w* \w the|strong="H7200"\w* \w wall|strong="H7023"\w*, +\v 38 \w then|strong="H3318"\w* \w the|strong="H4480"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H4480"\w* \w house|strong="H1004"\w* \w to|strong="H3318"\w* \w the|strong="H4480"\w* \w door|strong="H6607"\w* \w of|strong="H1004"\w* \w the|strong="H4480"\w* \w house|strong="H1004"\w*, \w and|strong="H3117"\w* \w shut|strong="H5462"\w* \w up|strong="H5462"\w* \w the|strong="H4480"\w* \w house|strong="H1004"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. +\v 39 \w The|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w come|strong="H7725"\w* \w again|strong="H7725"\w* \w on|strong="H3117"\w* \w the|strong="H7200"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*, \w and|strong="H7725"\w* \w look|strong="H7200"\w*. \w If|strong="H2009"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* \w has|strong="H5061"\w* \w spread|strong="H6581"\w* \w in|strong="H1004"\w* \w the|strong="H7200"\w* \w walls|strong="H7023"\w* \w of|strong="H1004"\w* \w the|strong="H7200"\w* \w house|strong="H1004"\w*, +\v 40 \w then|strong="H6680"\w* \w the|strong="H6680"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w command|strong="H6680"\w* \w that|strong="H3548"\w* \w they|strong="H5892"\w* \w take|strong="H2502"\w* \w out|strong="H2351"\w* \w the|strong="H6680"\w* stones \w in|strong="H5892"\w* \w which|strong="H5892"\w* \w is|strong="H5892"\w* \w the|strong="H6680"\w* \w plague|strong="H5061"\w*, \w and|strong="H3548"\w* \w cast|strong="H7993"\w* \w them|strong="H6680"\w* \w into|strong="H7993"\w* \w an|strong="H7993"\w* \w unclean|strong="H2931"\w* \w place|strong="H4725"\w* \w outside|strong="H2351"\w* \w of|strong="H5892"\w* \w the|strong="H6680"\w* \w city|strong="H5892"\w*. +\v 41 \w He|strong="H1004"\w* \w shall|strong="H1004"\w* cause \w the|strong="H5439"\w* \w inside|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H5439"\w* \w house|strong="H1004"\w* \w to|strong="H1004"\w* \w be|strong="H5892"\w* \w scraped|strong="H7096"\w* \w all|strong="H5439"\w* \w over|strong="H2351"\w*. \w They|strong="H5892"\w* \w shall|strong="H1004"\w* \w pour|strong="H8210"\w* \w out|strong="H8210"\w* \w the|strong="H5439"\w* mortar \w that|strong="H5892"\w* \w they|strong="H5892"\w* \w scraped|strong="H7096"\w* \w off|strong="H7096"\w* \w outside|strong="H2351"\w* \w of|strong="H1004"\w* \w the|strong="H5439"\w* \w city|strong="H5892"\w* \w into|strong="H5892"\w* \w an|strong="H5892"\w* \w unclean|strong="H2931"\w* \w place|strong="H4725"\w*. +\v 42 \w They|strong="H3947"\w* \w shall|strong="H1004"\w* \w take|strong="H3947"\w* other stones, \w and|strong="H1004"\w* \w put|strong="H3947"\w* \w them|strong="H3947"\w* \w in|strong="H1004"\w* \w the|strong="H3947"\w* \w place|strong="H8478"\w* \w of|strong="H1004"\w* those stones; \w and|strong="H1004"\w* \w he|strong="H1004"\w* \w shall|strong="H1004"\w* \w take|strong="H3947"\w* other mortar, \w and|strong="H1004"\w* \w shall|strong="H1004"\w* \w plaster|strong="H6083"\w* \w the|strong="H3947"\w* \w house|strong="H1004"\w*. +\p +\v 43 “If \w the|strong="H7725"\w* \w plague|strong="H5061"\w* comes \w again|strong="H7725"\w*, \w and|strong="H7725"\w* \w breaks|strong="H6524"\w* \w out|strong="H7725"\w* \w in|strong="H1004"\w* \w the|strong="H7725"\w* \w house|strong="H1004"\w* \w after|strong="H1004"\w* \w he|strong="H1004"\w* \w has|strong="H5061"\w* \w taken|strong="H2502"\w* \w out|strong="H7725"\w* \w the|strong="H7725"\w* stones, \w and|strong="H7725"\w* \w after|strong="H1004"\w* \w he|strong="H1004"\w* \w has|strong="H5061"\w* \w scraped|strong="H7096"\w* \w the|strong="H7725"\w* \w house|strong="H1004"\w*, \w and|strong="H7725"\w* \w after|strong="H1004"\w* \w it|strong="H7725"\w* \w was|strong="H1004"\w* \w plastered|strong="H2902"\w*, +\v 44 \w then|strong="H2009"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w come|strong="H5061"\w* \w in|strong="H1004"\w* \w and|strong="H1004"\w* \w look|strong="H7200"\w*; \w and|strong="H1004"\w* \w behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* \w has|strong="H5061"\w* \w spread|strong="H6581"\w* \w in|strong="H1004"\w* \w the|strong="H7200"\w* \w house|strong="H1004"\w*, \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* destructive mildew \w in|strong="H1004"\w* \w the|strong="H7200"\w* \w house|strong="H1004"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w unclean|strong="H2931"\w*. +\v 45 \w He|strong="H3605"\w* \w shall|strong="H1004"\w* \w break|strong="H5422"\w* \w down|strong="H5422"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*, \w its|strong="H3605"\w* stones, \w and|strong="H1004"\w* \w its|strong="H3605"\w* \w timber|strong="H6086"\w*, \w and|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*’s mortar. \w He|strong="H3605"\w* \w shall|strong="H1004"\w* \w carry|strong="H3318"\w* \w them|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w into|strong="H3318"\w* \w an|strong="H3318"\w* \w unclean|strong="H2931"\w* \w place|strong="H4725"\w*. +\p +\v 46 “Moreover \w he|strong="H3117"\w* \w who|strong="H3605"\w* goes \w into|strong="H5704"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w while|strong="H5704"\w* \w it|strong="H2930"\w* \w is|strong="H3117"\w* \w shut|strong="H5462"\w* \w up|strong="H5462"\w* \w shall|strong="H1004"\w* \w be|strong="H3117"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w evening|strong="H6153"\w*. +\v 47 \w He|strong="H1004"\w* who \w lies|strong="H7901"\w* \w down|strong="H7901"\w* \w in|strong="H1004"\w* \w the|strong="H1004"\w* \w house|strong="H1004"\w* \w shall|strong="H1004"\w* \w wash|strong="H3526"\w* \w his|strong="H3526"\w* clothes; \w and|strong="H1004"\w* \w he|strong="H1004"\w* who eats \w in|strong="H1004"\w* \w the|strong="H1004"\w* \w house|strong="H1004"\w* \w shall|strong="H1004"\w* \w wash|strong="H3526"\w* \w his|strong="H3526"\w* clothes. +\p +\v 48 “\w If|strong="H3588"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w come|strong="H5061"\w* \w in|strong="H1004"\w*, \w and|strong="H1004"\w* examine \w it|strong="H3588"\w*, \w and|strong="H1004"\w* \w behold|strong="H2009"\w*, \w the|strong="H7200"\w* \w plague|strong="H5061"\w* hasn’t \w spread|strong="H6581"\w* \w in|strong="H1004"\w* \w the|strong="H7200"\w* \w house|strong="H1004"\w*, \w after|strong="H3588"\w* \w the|strong="H7200"\w* \w house|strong="H1004"\w* \w was|strong="H1004"\w* \w plastered|strong="H2902"\w*, \w then|strong="H2009"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w pronounce|strong="H2891"\w* \w the|strong="H7200"\w* \w house|strong="H1004"\w* \w clean|strong="H2891"\w*, \w because|strong="H3588"\w* \w the|strong="H7200"\w* \w plague|strong="H5061"\w* \w is|strong="H2009"\w* \w healed|strong="H7495"\w*. +\v 49 \w To|strong="H1004"\w* \w cleanse|strong="H2398"\w* \w the|strong="H3947"\w* \w house|strong="H1004"\w* \w he|strong="H1004"\w* \w shall|strong="H1004"\w* \w take|strong="H3947"\w* \w two|strong="H8147"\w* \w birds|strong="H6833"\w*, cedar \w wood|strong="H6086"\w*, \w scarlet|strong="H8144"\w*, \w and|strong="H1004"\w* hyssop. +\v 50 \w He|strong="H5921"\w* \w shall|strong="H4325"\w* \w kill|strong="H7819"\w* \w one|strong="H2416"\w* \w of|strong="H3627"\w* \w the|strong="H5921"\w* \w birds|strong="H6833"\w* \w in|strong="H5921"\w* \w an|strong="H7819"\w* \w earthen|strong="H2789"\w* \w vessel|strong="H3627"\w* \w over|strong="H5921"\w* \w running|strong="H2416"\w* \w water|strong="H4325"\w*. +\v 51 \w He|strong="H1004"\w* \w shall|strong="H1004"\w* \w take|strong="H3947"\w* \w the|strong="H3947"\w* cedar \w wood|strong="H6086"\w*, \w the|strong="H3947"\w* hyssop, \w the|strong="H3947"\w* \w scarlet|strong="H8144"\w*, \w and|strong="H1004"\w* \w the|strong="H3947"\w* \w living|strong="H2416"\w* \w bird|strong="H6833"\w*, \w and|strong="H1004"\w* \w dip|strong="H2881"\w* \w them|strong="H3947"\w* \w in|strong="H1004"\w* \w the|strong="H3947"\w* \w blood|strong="H1818"\w* \w of|strong="H1004"\w* \w the|strong="H3947"\w* \w slain|strong="H7819"\w* \w bird|strong="H6833"\w*, \w and|strong="H1004"\w* \w in|strong="H1004"\w* \w the|strong="H3947"\w* \w running|strong="H2416"\w* \w water|strong="H4325"\w*, \w and|strong="H1004"\w* \w sprinkle|strong="H5137"\w* \w the|strong="H3947"\w* \w house|strong="H1004"\w* \w seven|strong="H7651"\w* \w times|strong="H6471"\w*. +\v 52 \w He|strong="H1004"\w* \w shall|strong="H1004"\w* \w cleanse|strong="H2398"\w* \w the|strong="H2398"\w* \w house|strong="H1004"\w* \w with|strong="H1004"\w* \w the|strong="H2398"\w* \w blood|strong="H1818"\w* \w of|strong="H1004"\w* \w the|strong="H2398"\w* \w bird|strong="H6833"\w*, \w and|strong="H1004"\w* \w with|strong="H1004"\w* \w the|strong="H2398"\w* \w running|strong="H2416"\w* \w water|strong="H4325"\w*, \w with|strong="H1004"\w* \w the|strong="H2398"\w* \w living|strong="H2416"\w* \w bird|strong="H6833"\w*, \w with|strong="H1004"\w* \w the|strong="H2398"\w* cedar \w wood|strong="H6086"\w*, \w with|strong="H1004"\w* \w the|strong="H2398"\w* hyssop, \w and|strong="H1004"\w* \w with|strong="H1004"\w* \w the|strong="H2398"\w* \w scarlet|strong="H8144"\w*; +\v 53 \w but|strong="H5921"\w* \w he|strong="H1004"\w* \w shall|strong="H1004"\w* \w let|strong="H7971"\w* \w the|strong="H6440"\w* \w living|strong="H2416"\w* \w bird|strong="H6833"\w* \w go|strong="H7971"\w* \w out|strong="H7971"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w* \w into|strong="H5921"\w* \w the|strong="H6440"\w* \w open|strong="H6440"\w* \w field|strong="H7704"\w*. \w So|strong="H7971"\w* \w shall|strong="H1004"\w* \w he|strong="H1004"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w*; \w and|strong="H7971"\w* \w it|strong="H5921"\w* \w shall|strong="H1004"\w* \w be|strong="H5892"\w* \w clean|strong="H2891"\w*.” +\p +\v 54 \w This|strong="H2063"\w* \w is|strong="H3605"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w for|strong="H3605"\w* \w any|strong="H3605"\w* \w plague|strong="H5061"\w* \w of|strong="H8451"\w* \w leprosy|strong="H6883"\w*, \w and|strong="H8451"\w* \w for|strong="H3605"\w* an itch, +\v 55 \w and|strong="H1004"\w* \w for|strong="H1004"\w* \w the|strong="H1004"\w* destructive mildew \w of|strong="H1004"\w* \w a|strong="H3068"\w* garment, \w and|strong="H1004"\w* \w for|strong="H1004"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w*, +\v 56 \w and|strong="H7613"\w* for \w a|strong="H3068"\w* \w swelling|strong="H7613"\w*, \w and|strong="H7613"\w* for \w a|strong="H3068"\w* \w scab|strong="H5597"\w*, \w and|strong="H7613"\w* for \w a|strong="H3068"\w* bright spot; +\v 57 \w to|strong="H3117"\w* \w teach|strong="H3384"\w* \w when|strong="H3117"\w* \w it|strong="H2063"\w* \w is|strong="H3117"\w* \w unclean|strong="H2931"\w*, \w and|strong="H3117"\w* \w when|strong="H3117"\w* \w it|strong="H2063"\w* \w is|strong="H3117"\w* \w clean|strong="H2889"\w*. +\p \w This|strong="H2063"\w* \w is|strong="H3117"\w* \w the|strong="H3117"\w* \w law|strong="H8451"\w* \w of|strong="H3117"\w* \w leprosy|strong="H6883"\w*. +\c 15 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* \w to|strong="H1696"\w* Aaron, \w saying|strong="H1696"\w*, +\v 2 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w tell|strong="H1696"\w* \w them|strong="H1961"\w*, ‘\w When|strong="H3588"\w* \w any|strong="H1961"\w* \w man|strong="H1121"\w* \w has|strong="H1961"\w* \w a|strong="H3068"\w* \w discharge|strong="H2100"\w* \w from|strong="H3478"\w* \w his|strong="H3478"\w* \w body|strong="H1320"\w*, \w because|strong="H3588"\w* \w of|strong="H1121"\w* \w his|strong="H3478"\w* \w discharge|strong="H2100"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w unclean|strong="H2931"\w*. +\v 3 \w This|strong="H2063"\w* \w shall|strong="H1320"\w* \w be|strong="H1961"\w* \w his|strong="H1961"\w* \w uncleanness|strong="H2932"\w* \w in|strong="H1320"\w* \w his|strong="H1961"\w* \w discharge|strong="H2101"\w*: whether \w his|strong="H1961"\w* \w body|strong="H1320"\w* runs \w with|strong="H1320"\w* \w his|strong="H1961"\w* \w discharge|strong="H2101"\w*, \w or|strong="H1320"\w* \w his|strong="H1961"\w* \w body|strong="H1320"\w* \w has|strong="H1961"\w* \w stopped|strong="H2856"\w* \w from|strong="H1961"\w* \w his|strong="H1961"\w* \w discharge|strong="H2101"\w*, \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w his|strong="H1961"\w* \w uncleanness|strong="H2932"\w*. +\p +\v 4 “‘\w Every|strong="H3605"\w* \w bed|strong="H4904"\w* \w on|strong="H5921"\w* \w which|strong="H3627"\w* \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w has|strong="H3605"\w* \w the|strong="H3605"\w* \w discharge|strong="H2100"\w* \w lies|strong="H7901"\w* \w shall|strong="H4904"\w* \w be|strong="H3605"\w* \w unclean|strong="H2930"\w*; \w and|strong="H3427"\w* \w everything|strong="H3605"\w* \w he|strong="H3605"\w* \w sits|strong="H3427"\w* \w on|strong="H5921"\w* \w shall|strong="H4904"\w* \w be|strong="H3605"\w* \w unclean|strong="H2930"\w*. +\v 5 Whoever \w touches|strong="H5060"\w* \w his|strong="H3526"\w* \w bed|strong="H4904"\w* \w shall|strong="H4325"\w* \w wash|strong="H3526"\w* \w his|strong="H3526"\w* clothes, \w and|strong="H4325"\w* \w bathe|strong="H7364"\w* \w himself|strong="H2930"\w* \w in|strong="H7364"\w* \w water|strong="H4325"\w*, \w and|strong="H4325"\w* \w be|strong="H4325"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H5704"\w* \w evening|strong="H6153"\w*. +\v 6 \w He|strong="H5704"\w* \w who|strong="H3427"\w* \w sits|strong="H3427"\w* \w on|strong="H5921"\w* \w anything|strong="H3627"\w* \w on|strong="H5921"\w* \w which|strong="H4325"\w* \w the|strong="H5921"\w* man \w who|strong="H3427"\w* \w has|strong="H2100"\w* \w the|strong="H5921"\w* \w discharge|strong="H2100"\w* \w sat|strong="H3427"\w* \w shall|strong="H4325"\w* \w wash|strong="H3526"\w* \w his|strong="H3526"\w* clothes, \w and|strong="H3427"\w* \w bathe|strong="H7364"\w* \w himself|strong="H2930"\w* \w in|strong="H3427"\w* \w water|strong="H4325"\w*, \w and|strong="H3427"\w* \w be|strong="H4325"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H5921"\w* \w evening|strong="H6153"\w*. +\p +\v 7 “‘\w He|strong="H5704"\w* who \w touches|strong="H5060"\w* \w the|strong="H5704"\w* \w body|strong="H1320"\w* \w of|strong="H4325"\w* \w him|strong="H2930"\w* who \w has|strong="H2100"\w* \w the|strong="H5704"\w* \w discharge|strong="H2100"\w* \w shall|strong="H4325"\w* \w wash|strong="H3526"\w* \w his|strong="H3526"\w* clothes, \w and|strong="H4325"\w* \w bathe|strong="H7364"\w* \w himself|strong="H2930"\w* \w in|strong="H7364"\w* \w water|strong="H4325"\w*, \w and|strong="H4325"\w* \w be|strong="H1320"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H5704"\w* \w evening|strong="H6153"\w*. +\p +\v 8 “‘\w If|strong="H3588"\w* \w he|strong="H3588"\w* \w who|strong="H3588"\w* \w has|strong="H3588"\w* \w the|strong="H3588"\w* \w discharge|strong="H2100"\w* \w spits|strong="H7556"\w* \w on|strong="H4325"\w* \w him|strong="H2930"\w* \w who|strong="H3588"\w* \w is|strong="H4325"\w* \w clean|strong="H2889"\w*, \w then|strong="H3588"\w* \w he|strong="H3588"\w* \w shall|strong="H4325"\w* \w wash|strong="H3526"\w* \w his|strong="H3526"\w* clothes, \w and|strong="H4325"\w* \w bathe|strong="H7364"\w* \w himself|strong="H2930"\w* \w in|strong="H7364"\w* \w water|strong="H4325"\w*, \w and|strong="H4325"\w* \w be|strong="H4325"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H3588"\w* \w evening|strong="H6153"\w*. +\p +\v 9 “‘\w Whatever|strong="H3605"\w* \w saddle|strong="H4817"\w* \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w has|strong="H3605"\w* \w the|strong="H3605"\w* \w discharge|strong="H2100"\w* \w rides|strong="H7392"\w* \w on|strong="H5921"\w* \w shall|strong="H2100"\w* \w be|strong="H3605"\w* \w unclean|strong="H2930"\w*. +\v 10 \w Whoever|strong="H3605"\w* \w touches|strong="H5060"\w* \w anything|strong="H3605"\w* \w that|strong="H3605"\w* \w was|strong="H1961"\w* \w under|strong="H8478"\w* \w him|strong="H2930"\w* \w shall|strong="H4325"\w* \w be|strong="H1961"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w evening|strong="H6153"\w*. \w He|strong="H5704"\w* \w who|strong="H3605"\w* \w carries|strong="H5375"\w* \w those|strong="H3605"\w* \w things|strong="H3605"\w* \w shall|strong="H4325"\w* \w wash|strong="H3526"\w* \w his|strong="H3605"\w* clothes, \w and|strong="H4325"\w* \w bathe|strong="H7364"\w* \w himself|strong="H2930"\w* \w in|strong="H7364"\w* \w water|strong="H4325"\w*, \w and|strong="H4325"\w* \w be|strong="H1961"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w evening|strong="H6153"\w*. +\p +\v 11 “‘\w Whomever|strong="H3605"\w* \w he|strong="H5704"\w* \w who|strong="H3605"\w* \w has|strong="H3027"\w* \w the|strong="H3605"\w* \w discharge|strong="H2100"\w* \w touches|strong="H5060"\w*, \w without|strong="H3808"\w* \w having|strong="H3808"\w* \w rinsed|strong="H7857"\w* \w his|strong="H3605"\w* \w hands|strong="H3027"\w* \w in|strong="H7364"\w* \w water|strong="H4325"\w*, \w he|strong="H5704"\w* \w shall|strong="H3027"\w* \w wash|strong="H3526"\w* \w his|strong="H3605"\w* clothes, \w and|strong="H3027"\w* \w bathe|strong="H7364"\w* \w himself|strong="H3027"\w* \w in|strong="H7364"\w* \w water|strong="H4325"\w*, \w and|strong="H3027"\w* \w be|strong="H3808"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w evening|strong="H6153"\w*. +\p +\v 12 “‘\w The|strong="H3605"\w* \w earthen|strong="H2789"\w* \w vessel|strong="H3627"\w*, \w which|strong="H6086"\w* \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w has|strong="H3605"\w* \w the|strong="H3605"\w* \w discharge|strong="H2100"\w* \w touches|strong="H5060"\w*, \w shall|strong="H4325"\w* \w be|strong="H6086"\w* \w broken|strong="H7665"\w*; \w and|strong="H6086"\w* \w every|strong="H3605"\w* \w vessel|strong="H3627"\w* \w of|strong="H3627"\w* \w wood|strong="H6086"\w* \w shall|strong="H4325"\w* \w be|strong="H6086"\w* \w rinsed|strong="H7857"\w* \w in|strong="H7665"\w* \w water|strong="H4325"\w*. +\p +\v 13 “‘\w When|strong="H3588"\w* \w he|strong="H3588"\w* \w who|strong="H3588"\w* \w has|strong="H3117"\w* \w a|strong="H3068"\w* \w discharge|strong="H2100"\w* \w is|strong="H3117"\w* \w cleansed|strong="H2891"\w* \w of|strong="H3117"\w* \w his|strong="H3526"\w* \w discharge|strong="H2100"\w*, \w then|strong="H3588"\w* \w he|strong="H3588"\w* \w shall|strong="H3117"\w* \w count|strong="H5608"\w* \w to|strong="H3117"\w* \w himself|strong="H4325"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w* \w for|strong="H3588"\w* \w his|strong="H3526"\w* \w cleansing|strong="H2893"\w*, \w and|strong="H3117"\w* \w wash|strong="H3526"\w* \w his|strong="H3526"\w* clothes; \w and|strong="H3117"\w* \w he|strong="H3588"\w* \w shall|strong="H3117"\w* \w bathe|strong="H7364"\w* \w his|strong="H3526"\w* \w flesh|strong="H1320"\w* \w in|strong="H3117"\w* \w running|strong="H2416"\w* \w water|strong="H4325"\w*, \w and|strong="H3117"\w* \w shall|strong="H3117"\w* \w be|strong="H3117"\w* \w clean|strong="H2891"\w*. +\p +\v 14 “‘\w On|strong="H3117"\w* \w the|strong="H6440"\w* \w eighth|strong="H8066"\w* \w day|strong="H3117"\w* \w he|strong="H3117"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* \w two|strong="H8147"\w* \w turtledoves|strong="H8449"\w*, \w or|strong="H3117"\w* \w two|strong="H8147"\w* \w young|strong="H1121"\w* \w pigeons|strong="H3123"\w*, \w and|strong="H1121"\w* come \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w door|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*, \w and|strong="H1121"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w*. +\v 15 \w The|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w offer|strong="H6213"\w* \w them|strong="H5921"\w*, \w the|strong="H6440"\w* \w one|strong="H6213"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w*, \w and|strong="H3068"\w* \w the|strong="H6440"\w* other \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*. \w The|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w make|strong="H6213"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w him|strong="H6440"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H5921"\w* \w his|strong="H3068"\w* \w discharge|strong="H2101"\w*. +\p +\v 16 “‘\w If|strong="H3588"\w* \w any|strong="H3605"\w* \w man|strong="H3605"\w* \w has|strong="H3588"\w* \w an|strong="H4480"\w* \w emission|strong="H7902"\w* \w of|strong="H4325"\w* semen, \w then|strong="H3318"\w* \w he|strong="H3588"\w* \w shall|strong="H2233"\w* \w bathe|strong="H7364"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w flesh|strong="H1320"\w* \w in|strong="H7364"\w* \w water|strong="H4325"\w*, \w and|strong="H3318"\w* \w be|strong="H1320"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w evening|strong="H6153"\w*. +\v 17 \w Every|strong="H3605"\w* garment \w and|strong="H4325"\w* \w every|strong="H3605"\w* \w skin|strong="H5785"\w* \w which|strong="H4325"\w* \w the|strong="H3605"\w* semen \w is|strong="H3605"\w* \w on|strong="H5921"\w* \w shall|strong="H2233"\w* \w be|strong="H1961"\w* \w washed|strong="H3526"\w* \w with|strong="H5921"\w* \w water|strong="H4325"\w*, \w and|strong="H4325"\w* \w be|strong="H1961"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w evening|strong="H6153"\w*. +\v 18 If \w a|strong="H3068"\w* man \w lies|strong="H7901"\w* \w with|strong="H7901"\w* \w a|strong="H3068"\w* woman \w and|strong="H4325"\w* \w there|strong="H5704"\w* \w is|strong="H4325"\w* \w an|strong="H5704"\w* \w emission|strong="H7902"\w* \w of|strong="H4325"\w* semen, \w they|strong="H5704"\w* \w shall|strong="H2233"\w* both \w bathe|strong="H7364"\w* \w themselves|strong="H7364"\w* \w in|strong="H7364"\w* \w water|strong="H4325"\w*, \w and|strong="H4325"\w* \w be|strong="H4325"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H5704"\w* \w evening|strong="H6153"\w*. +\p +\v 19 “‘\w If|strong="H3588"\w* \w a|strong="H3068"\w* \w woman|strong="H5079"\w* \w has|strong="H1961"\w* \w a|strong="H3068"\w* \w discharge|strong="H2100"\w*, \w and|strong="H3117"\w* \w her|strong="H3605"\w* \w discharge|strong="H2100"\w* \w in|strong="H3117"\w* \w her|strong="H3605"\w* \w flesh|strong="H1320"\w* \w is|strong="H3117"\w* \w blood|strong="H1818"\w*, \w she|strong="H3588"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w in|strong="H3117"\w* \w her|strong="H3605"\w* \w impurity|strong="H5079"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. \w Whoever|strong="H3605"\w* \w touches|strong="H5060"\w* \w her|strong="H3605"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w evening|strong="H6153"\w*. +\p +\v 20 “‘\w Everything|strong="H3605"\w* \w that|strong="H3605"\w* \w she|strong="H5921"\w* \w lies|strong="H7901"\w* \w on|strong="H5921"\w* \w in|strong="H3427"\w* \w her|strong="H3605"\w* \w impurity|strong="H5079"\w* \w shall|strong="H5079"\w* \w be|strong="H3605"\w* \w unclean|strong="H2930"\w*. \w Everything|strong="H3605"\w* also \w that|strong="H3605"\w* \w she|strong="H5921"\w* \w sits|strong="H3427"\w* \w on|strong="H5921"\w* \w shall|strong="H5079"\w* \w be|strong="H3605"\w* \w unclean|strong="H2930"\w*. +\v 21 \w Whoever|strong="H3605"\w* \w touches|strong="H5060"\w* \w her|strong="H3605"\w* \w bed|strong="H4904"\w* \w shall|strong="H4325"\w* \w wash|strong="H3526"\w* \w his|strong="H3605"\w* clothes, \w and|strong="H4325"\w* \w bathe|strong="H7364"\w* \w himself|strong="H2930"\w* \w in|strong="H7364"\w* \w water|strong="H4325"\w*, \w and|strong="H4325"\w* \w be|strong="H4325"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w evening|strong="H6153"\w*. +\v 22 \w Whoever|strong="H3605"\w* \w touches|strong="H5060"\w* \w anything|strong="H3605"\w* \w that|strong="H3605"\w* \w she|strong="H5921"\w* \w sits|strong="H3427"\w* \w on|strong="H5921"\w* \w shall|strong="H4325"\w* \w wash|strong="H3526"\w* \w his|strong="H3605"\w* clothes, \w and|strong="H3427"\w* \w bathe|strong="H7364"\w* \w himself|strong="H2930"\w* \w in|strong="H3427"\w* \w water|strong="H4325"\w*, \w and|strong="H3427"\w* \w be|strong="H4325"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w evening|strong="H6153"\w*. +\v 23 \w If|strong="H1931"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w bed|strong="H4904"\w*, \w or|strong="H5704"\w* \w on|strong="H5921"\w* \w anything|strong="H3627"\w* \w she|strong="H1931"\w* \w sits|strong="H3427"\w* \w on|strong="H5921"\w*, \w when|strong="H5704"\w* \w he|strong="H1931"\w* \w touches|strong="H5060"\w* \w it|strong="H1931"\w*, \w he|strong="H1931"\w* \w shall|strong="H4904"\w* \w be|strong="H1931"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H5921"\w* \w evening|strong="H6153"\w*. +\p +\v 24 “‘\w If|strong="H1961"\w* \w any|strong="H3605"\w* \w man|strong="H3605"\w* \w lies|strong="H7901"\w* \w with|strong="H5921"\w* \w her|strong="H3605"\w*, \w and|strong="H3117"\w* \w her|strong="H3605"\w* monthly flow \w is|strong="H3117"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w he|strong="H3117"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w unclean|strong="H2930"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*; \w and|strong="H3117"\w* \w every|strong="H3605"\w* \w bed|strong="H4904"\w* \w he|strong="H3117"\w* \w lies|strong="H7901"\w* \w on|strong="H5921"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w unclean|strong="H2930"\w*. +\p +\v 25 “‘\w If|strong="H3588"\w* \w a|strong="H3068"\w* \w woman|strong="H5079"\w* \w has|strong="H1961"\w* \w a|strong="H3068"\w* \w discharge|strong="H2100"\w* \w of|strong="H3117"\w* \w her|strong="H3605"\w* \w blood|strong="H1818"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w* \w not|strong="H3808"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w time|strong="H6256"\w* \w of|strong="H3117"\w* \w her|strong="H3605"\w* \w period|strong="H3117"\w*, \w or|strong="H3808"\w* \w if|strong="H3588"\w* \w she|strong="H1931"\w* \w has|strong="H1961"\w* \w a|strong="H3068"\w* \w discharge|strong="H2100"\w* \w beyond|strong="H5921"\w* \w the|strong="H3605"\w* \w time|strong="H6256"\w* \w of|strong="H3117"\w* \w her|strong="H3605"\w* \w period|strong="H3117"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w discharge|strong="H2100"\w* \w of|strong="H3117"\w* \w her|strong="H3605"\w* \w uncleanness|strong="H2932"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w as|strong="H3117"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w her|strong="H3605"\w* \w period|strong="H3117"\w*. \w She|strong="H1931"\w* \w is|strong="H1931"\w* \w unclean|strong="H2931"\w*. +\v 26 \w Every|strong="H3605"\w* \w bed|strong="H4904"\w* \w she|strong="H5921"\w* \w lies|strong="H7901"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w her|strong="H3605"\w* \w discharge|strong="H2101"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w to|strong="H1961"\w* \w her|strong="H3605"\w* \w as|strong="H3117"\w* \w the|strong="H3605"\w* \w bed|strong="H4904"\w* \w of|strong="H3117"\w* \w her|strong="H3605"\w* \w period|strong="H3117"\w*. \w Everything|strong="H3605"\w* \w she|strong="H5921"\w* \w sits|strong="H3427"\w* \w on|strong="H5921"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w unclean|strong="H2931"\w*, \w as|strong="H3117"\w* \w the|strong="H3605"\w* \w uncleanness|strong="H2932"\w* \w of|strong="H3117"\w* \w her|strong="H3605"\w* \w period|strong="H3117"\w*. +\v 27 \w Whoever|strong="H3605"\w* \w touches|strong="H5060"\w* \w these|strong="H3605"\w* \w things|strong="H3605"\w* \w shall|strong="H4325"\w* \w be|strong="H4325"\w* \w unclean|strong="H2930"\w*, \w and|strong="H4325"\w* \w shall|strong="H4325"\w* \w wash|strong="H3526"\w* \w his|strong="H3605"\w* clothes \w and|strong="H4325"\w* \w bathe|strong="H7364"\w* \w himself|strong="H2930"\w* \w in|strong="H7364"\w* \w water|strong="H4325"\w*, \w and|strong="H4325"\w* \w be|strong="H4325"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w evening|strong="H6153"\w*. +\p +\v 28 “‘\w But|strong="H3117"\w* if she \w is|strong="H3117"\w* \w cleansed|strong="H2891"\w* \w of|strong="H3117"\w* \w her|strong="H5608"\w* \w discharge|strong="H2101"\w*, \w then|strong="H3117"\w* she \w shall|strong="H3117"\w* \w count|strong="H5608"\w* \w to|strong="H3117"\w* herself \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w and|strong="H3117"\w* \w after|strong="H3117"\w* \w that|strong="H3117"\w* she \w shall|strong="H3117"\w* \w be|strong="H3117"\w* \w clean|strong="H2891"\w*. +\v 29 \w On|strong="H3117"\w* \w the|strong="H3947"\w* \w eighth|strong="H8066"\w* \w day|strong="H3117"\w* \w she|strong="H8147"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* \w two|strong="H8147"\w* \w turtledoves|strong="H8449"\w*, \w or|strong="H3117"\w* \w two|strong="H8147"\w* \w young|strong="H1121"\w* \w pigeons|strong="H3123"\w*, \w and|strong="H1121"\w* \w bring|strong="H3947"\w* \w them|strong="H3947"\w* \w to|strong="H3117"\w* \w the|strong="H3947"\w* \w priest|strong="H3548"\w*, \w to|strong="H3117"\w* \w the|strong="H3947"\w* \w door|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*. +\v 30 \w The|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w offer|strong="H6213"\w* \w the|strong="H6440"\w* \w one|strong="H6213"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w*, \w and|strong="H3068"\w* \w the|strong="H6440"\w* other \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*; \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w make|strong="H6213"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w her|strong="H5921"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w uncleanness|strong="H2932"\w* \w of|strong="H3068"\w* \w her|strong="H5921"\w* \w discharge|strong="H2101"\w*. +\p +\v 31 “‘\w Thus|strong="H3808"\w* \w you|strong="H3808"\w* \w shall|strong="H1121"\w* \w separate|strong="H5144"\w* \w the|strong="H8432"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w from|strong="H3478"\w* \w their|strong="H8432"\w* \w uncleanness|strong="H2932"\w*, \w so|strong="H3808"\w* \w they|strong="H3808"\w* \w will|strong="H3478"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w* \w in|strong="H3478"\w* \w their|strong="H8432"\w* \w uncleanness|strong="H2932"\w* \w when|strong="H1121"\w* \w they|strong="H3808"\w* \w defile|strong="H2930"\w* \w my|strong="H2930"\w* \w tabernacle|strong="H4908"\w* \w that|strong="H3478"\w* \w is|strong="H3478"\w* \w among|strong="H8432"\w* \w them|strong="H8432"\w*.’” +\p +\v 32 \w This|strong="H2063"\w* \w is|strong="H8451"\w* \w the|strong="H4480"\w* \w law|strong="H8451"\w* \w of|strong="H2233"\w* \w him|strong="H2930"\w* who \w has|strong="H3318"\w* \w a|strong="H3068"\w* \w discharge|strong="H2100"\w*, \w and|strong="H3318"\w* \w of|strong="H2233"\w* \w him|strong="H2930"\w* who \w has|strong="H3318"\w* \w an|strong="H4480"\w* \w emission|strong="H7902"\w* \w of|strong="H2233"\w* semen, \w so|strong="H4480"\w* \w that|strong="H4480"\w* \w he|strong="H4480"\w* \w is|strong="H8451"\w* \w unclean|strong="H2930"\w* \w by|strong="H3318"\w* \w it|strong="H2930"\w*; +\v 33 \w and|strong="H2145"\w* \w of|strong="H5973"\w* \w her|strong="H7901"\w* \w who|strong="H1739"\w* \w has|strong="H2100"\w* \w her|strong="H7901"\w* \w period|strong="H5079"\w*, \w and|strong="H2145"\w* \w of|strong="H5973"\w* \w a|strong="H3068"\w* \w man|strong="H2145"\w* \w or|strong="H2145"\w* \w woman|strong="H5347"\w* \w who|strong="H1739"\w* \w has|strong="H2100"\w* \w a|strong="H3068"\w* \w discharge|strong="H2100"\w*, \w and|strong="H2145"\w* \w of|strong="H5973"\w* \w him|strong="H5973"\w* \w who|strong="H1739"\w* \w lies|strong="H7901"\w* \w with|strong="H5973"\w* \w her|strong="H7901"\w* \w who|strong="H1739"\w* \w is|strong="H2100"\w* \w unclean|strong="H2931"\w*. +\c 16 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* after \w the|strong="H6440"\w* \w death|strong="H4194"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron, \w when|strong="H1696"\w* \w they|strong="H3068"\w* \w came|strong="H7126"\w* \w near|strong="H7126"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H1121"\w* \w died|strong="H4191"\w*; +\v 2 \w and|strong="H4872"\w* \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, “\w Tell|strong="H1696"\w* Aaron \w your|strong="H3068"\w* brother \w not|strong="H3808"\w* \w to|strong="H1696"\w* come \w at|strong="H5921"\w* \w just|strong="H3605"\w* \w any|strong="H3605"\w* \w time|strong="H6256"\w* \w into|strong="H5921"\w* \w the|strong="H3605"\w* \w Most|strong="H6944"\w* \w Holy|strong="H6944"\w* \w Place|strong="H6944"\w* \w within|strong="H1004"\w* \w the|strong="H3605"\w* \w veil|strong="H6532"\w*, \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* ark; lest \w he|strong="H3588"\w* \w die|strong="H4191"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w appear|strong="H7200"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w cloud|strong="H6051"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w*. +\p +\v 3 “Aaron \w shall|strong="H1121"\w* come into \w the|strong="H1121"\w* \w sanctuary|strong="H6944"\w* \w with|strong="H1241"\w* \w a|strong="H3068"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w* \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w*, \w and|strong="H1121"\w* \w a|strong="H3068"\w* ram \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*. +\v 4 \w He|strong="H5921"\w* \w shall|strong="H4325"\w* \w put|strong="H3847"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w holy|strong="H6944"\w* linen \w tunic|strong="H3801"\w*. \w He|strong="H5921"\w* \w shall|strong="H4325"\w* \w have|strong="H1961"\w* \w the|strong="H5921"\w* linen trousers \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w body|strong="H1320"\w*, \w and|strong="H4325"\w* \w shall|strong="H4325"\w* \w put|strong="H3847"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* linen sash, \w and|strong="H4325"\w* \w he|strong="H5921"\w* \w shall|strong="H4325"\w* \w be|strong="H1961"\w* \w clothed|strong="H3847"\w* \w with|strong="H3847"\w* \w the|strong="H5921"\w* linen \w turban|strong="H4701"\w*. \w They|strong="H1992"\w* \w are|strong="H1992"\w* \w the|strong="H5921"\w* \w holy|strong="H6944"\w* \w garments|strong="H3801"\w*. \w He|strong="H5921"\w* \w shall|strong="H4325"\w* \w bathe|strong="H7364"\w* \w his|strong="H5921"\w* \w body|strong="H1320"\w* \w in|strong="H5921"\w* \w water|strong="H4325"\w*, \w and|strong="H4325"\w* \w put|strong="H3847"\w* \w them|strong="H1992"\w* \w on|strong="H5921"\w*. +\v 5 \w He|strong="H8147"\w* \w shall|strong="H1121"\w* \w take|strong="H3947"\w* \w from|strong="H3478"\w* \w the|strong="H3947"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w two|strong="H8147"\w* \w male|strong="H8163"\w* \w goats|strong="H5795"\w* \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w*, \w and|strong="H1121"\w* \w one|strong="H1121"\w* ram \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*. +\p +\v 6 “Aaron \w shall|strong="H1004"\w* \w offer|strong="H7126"\w* \w the|strong="H7126"\w* \w bull|strong="H6499"\w* \w of|strong="H1004"\w* \w the|strong="H7126"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*, \w which|strong="H1004"\w* \w is|strong="H1004"\w* \w for|strong="H1157"\w* \w himself|strong="H1157"\w*, \w and|strong="H1004"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H1157"\w* \w himself|strong="H1157"\w* \w and|strong="H1004"\w* \w for|strong="H1157"\w* \w his|strong="H7126"\w* \w house|strong="H1004"\w*. +\v 7 \w He|strong="H3068"\w* \w shall|strong="H3068"\w* \w take|strong="H3947"\w* \w the|strong="H6440"\w* \w two|strong="H8147"\w* \w goats|strong="H8163"\w*, \w and|strong="H3068"\w* \w set|strong="H5975"\w* \w them|strong="H6440"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w at|strong="H3068"\w* \w the|strong="H6440"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*. +\v 8 Aaron \w shall|strong="H3068"\w* \w cast|strong="H5414"\w* \w lots|strong="H1486"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w goats|strong="H8163"\w*: \w one|strong="H8147"\w* \w lot|strong="H1486"\w* \w for|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w other|strong="H8147"\w* \w lot|strong="H1486"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w scapegoat|strong="H5799"\w*. +\v 9 Aaron \w shall|strong="H3068"\w* \w present|strong="H7126"\w* \w the|strong="H5921"\w* \w goat|strong="H8163"\w* \w on|strong="H5921"\w* \w which|strong="H3068"\w* \w the|strong="H5921"\w* \w lot|strong="H1486"\w* \w fell|strong="H5927"\w* \w for|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w offer|strong="H7126"\w* \w him|strong="H5921"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*. +\v 10 \w But|strong="H3068"\w* \w the|strong="H6440"\w* \w goat|strong="H8163"\w* \w on|strong="H5921"\w* \w which|strong="H3068"\w* \w the|strong="H6440"\w* \w lot|strong="H1486"\w* \w fell|strong="H5927"\w* \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w scapegoat|strong="H5799"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w presented|strong="H5975"\w* \w alive|strong="H2416"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w to|strong="H3068"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w him|strong="H6440"\w*, \w to|strong="H3068"\w* \w send|strong="H7971"\w* \w him|strong="H6440"\w* \w away|strong="H7971"\w* \w as|strong="H3068"\w* \w the|strong="H6440"\w* \w scapegoat|strong="H5799"\w* \w into|strong="H5927"\w* \w the|strong="H6440"\w* \w wilderness|strong="H4057"\w*. +\p +\v 11 “Aaron \w shall|strong="H1004"\w* \w present|strong="H7126"\w* \w the|strong="H7126"\w* \w bull|strong="H6499"\w* \w of|strong="H1004"\w* \w the|strong="H7126"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*, \w which|strong="H1004"\w* \w is|strong="H1004"\w* \w for|strong="H1157"\w* \w himself|strong="H1157"\w*, \w and|strong="H1004"\w* \w shall|strong="H1004"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H1157"\w* \w himself|strong="H1157"\w* \w and|strong="H1004"\w* \w for|strong="H1157"\w* \w his|strong="H7126"\w* \w house|strong="H1004"\w*, \w and|strong="H1004"\w* \w shall|strong="H1004"\w* \w kill|strong="H7819"\w* \w the|strong="H7126"\w* \w bull|strong="H6499"\w* \w of|strong="H1004"\w* \w the|strong="H7126"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w* \w which|strong="H1004"\w* \w is|strong="H1004"\w* \w for|strong="H1157"\w* \w himself|strong="H1157"\w*. +\v 12 \w He|strong="H3068"\w* \w shall|strong="H3068"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w censer|strong="H4289"\w* \w full|strong="H4393"\w* \w of|strong="H1004"\w* \w coals|strong="H1513"\w* \w of|strong="H1004"\w* \w fire|strong="H1513"\w* \w from|strong="H6440"\w* \w off|strong="H5921"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w two|strong="H3947"\w* \w handfuls|strong="H4393"\w* \w of|strong="H1004"\w* \w sweet|strong="H5561"\w* \w incense|strong="H7004"\w* \w beaten|strong="H7004"\w* \w small|strong="H1851"\w*, \w and|strong="H3068"\w* \w bring|strong="H3947"\w* \w it|strong="H5921"\w* \w within|strong="H1004"\w* \w the|strong="H6440"\w* \w veil|strong="H6532"\w*. +\v 13 \w He|strong="H3068"\w* \w shall|strong="H3068"\w* \w put|strong="H5414"\w* \w the|strong="H6440"\w* \w incense|strong="H7004"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* fire \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w that|strong="H3068"\w* \w the|strong="H6440"\w* \w cloud|strong="H6051"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w incense|strong="H7004"\w* \w may|strong="H3068"\w* \w cover|strong="H3680"\w* \w the|strong="H6440"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w* \w that|strong="H3068"\w* \w is|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* covenant, \w so|strong="H5414"\w* \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*. +\v 14 \w He|strong="H4480"\w* \w shall|strong="H6440"\w* \w take|strong="H3947"\w* \w some|strong="H4480"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w blood|strong="H1818"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w bull|strong="H6499"\w*, \w and|strong="H6440"\w* \w sprinkle|strong="H5137"\w* \w it|strong="H5921"\w* \w with|strong="H5921"\w* \w his|strong="H3947"\w* finger \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w east|strong="H6924"\w*; \w and|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w* \w he|strong="H4480"\w* \w shall|strong="H6440"\w* \w sprinkle|strong="H5137"\w* \w some|strong="H4480"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w blood|strong="H1818"\w* \w with|strong="H5921"\w* \w his|strong="H3947"\w* finger \w seven|strong="H7651"\w* \w times|strong="H6471"\w*. +\p +\v 15 “\w Then|strong="H6213"\w* \w he|strong="H6213"\w* \w shall|strong="H5971"\w* \w kill|strong="H7819"\w* \w the|strong="H6440"\w* \w goat|strong="H8163"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w* \w that|strong="H5971"\w* \w is|strong="H1004"\w* \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*, \w and|strong="H1004"\w* \w bring|strong="H6213"\w* \w his|strong="H6440"\w* \w blood|strong="H1818"\w* \w within|strong="H1004"\w* \w the|strong="H6440"\w* \w veil|strong="H6532"\w*, \w and|strong="H1004"\w* \w do|strong="H6213"\w* \w with|strong="H1004"\w* \w his|strong="H6440"\w* \w blood|strong="H1818"\w* \w as|strong="H6213"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w* \w with|strong="H1004"\w* \w the|strong="H6440"\w* \w blood|strong="H1818"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w bull|strong="H6499"\w*, \w and|strong="H1004"\w* \w sprinkle|strong="H5137"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w* \w and|strong="H1004"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w*. +\v 16 \w He|strong="H3651"\w* \w shall|strong="H1121"\w* \w make|strong="H6213"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w Holy|strong="H6944"\w* \w Place|strong="H6944"\w*, \w because|strong="H5921"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w uncleanness|strong="H2932"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w because|strong="H5921"\w* \w of|strong="H1121"\w* \w their|strong="H3605"\w* \w transgressions|strong="H6588"\w*, \w even|strong="H3651"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w sins|strong="H2403"\w*; \w and|strong="H1121"\w* \w so|strong="H3651"\w* \w he|strong="H3651"\w* \w shall|strong="H1121"\w* \w do|strong="H6213"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w* \w that|strong="H3605"\w* \w dwells|strong="H7931"\w* \w with|strong="H6213"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w their|strong="H3605"\w* \w uncleanness|strong="H2932"\w*. +\v 17 \w No|strong="H3808"\w* \w one|strong="H3605"\w* \w shall|strong="H3478"\w* \w be|strong="H1961"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* Tent \w of|strong="H1004"\w* \w Meeting|strong="H4150"\w* \w when|strong="H1961"\w* \w he|strong="H5704"\w* enters \w to|strong="H5704"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w Holy|strong="H6944"\w* \w Place|strong="H6944"\w*, \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w comes|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H3478"\w* \w has|strong="H1961"\w* \w made|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5704"\w* \w himself|strong="H1157"\w* \w and|strong="H3478"\w* \w for|strong="H5704"\w* \w his|strong="H3605"\w* \w household|strong="H1004"\w*, \w and|strong="H3478"\w* \w for|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. +\p +\v 18 “\w He|strong="H3068"\w* \w shall|strong="H3068"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w* \w that|strong="H3068"\w* \w is|strong="H3068"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w make|strong="H5414"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w it|strong="H5414"\w*, \w and|strong="H3068"\w* \w shall|strong="H3068"\w* \w take|strong="H3947"\w* some \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w bull|strong="H6499"\w*’s \w blood|strong="H1818"\w*, \w and|strong="H3068"\w* some \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w goat|strong="H8163"\w*’s \w blood|strong="H1818"\w*, \w and|strong="H3068"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w around|strong="H5439"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w horns|strong="H7161"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w*. +\v 19 \w He|strong="H4480"\w* \w shall|strong="H1121"\w* \w sprinkle|strong="H5137"\w* \w some|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w* \w with|strong="H5921"\w* \w his|strong="H5921"\w* finger \w seven|strong="H7651"\w* \w times|strong="H6471"\w*, \w and|strong="H1121"\w* \w cleanse|strong="H2891"\w* \w it|strong="H5921"\w*, \w and|strong="H1121"\w* make \w it|strong="H5921"\w* \w holy|strong="H6942"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* \w uncleanness|strong="H2932"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\p +\v 20 “\w When|strong="H3615"\w* \w he|strong="H7126"\w* \w has|strong="H4150"\w* \w finished|strong="H3615"\w* \w atoning|strong="H3722"\w* \w for|strong="H4196"\w* \w the|strong="H7126"\w* \w Holy|strong="H6944"\w* \w Place|strong="H6944"\w*, \w the|strong="H7126"\w* Tent \w of|strong="H4196"\w* \w Meeting|strong="H4150"\w*, \w and|strong="H4196"\w* \w the|strong="H7126"\w* \w altar|strong="H4196"\w*, \w he|strong="H7126"\w* \w shall|strong="H8163"\w* \w present|strong="H7126"\w* \w the|strong="H7126"\w* \w live|strong="H2416"\w* \w goat|strong="H8163"\w*. +\v 21 Aaron \w shall|strong="H1121"\w* \w lay|strong="H5414"\w* \w both|strong="H8147"\w* \w his|strong="H3605"\w* \w hands|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w head|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w live|strong="H2416"\w* \w goat|strong="H8163"\w*, \w and|strong="H1121"\w* \w confess|strong="H3034"\w* \w over|strong="H5921"\w* \w him|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w iniquities|strong="H5771"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w transgressions|strong="H6588"\w*, \w even|strong="H5921"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w sins|strong="H2403"\w*; \w and|strong="H1121"\w* \w he|strong="H3605"\w* \w shall|strong="H1121"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w head|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w goat|strong="H8163"\w*, \w and|strong="H1121"\w* \w shall|strong="H1121"\w* \w send|strong="H7971"\w* \w him|strong="H5414"\w* \w away|strong="H7971"\w* \w into|strong="H5921"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* \w by|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w who|strong="H3605"\w* \w is|strong="H3027"\w* ready. +\v 22 \w The|strong="H3605"\w* \w goat|strong="H8163"\w* \w shall|strong="H8163"\w* \w carry|strong="H5375"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w iniquities|strong="H5771"\w* \w on|strong="H5921"\w* himself \w to|strong="H7971"\w* \w a|strong="H3068"\w* \w solitary|strong="H1509"\w* land, \w and|strong="H7971"\w* \w he|strong="H3605"\w* \w shall|strong="H8163"\w* \w release|strong="H7971"\w* \w the|strong="H3605"\w* \w goat|strong="H8163"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w*. +\p +\v 23 “Aaron \w shall|strong="H4150"\w* come into \w the|strong="H8033"\w* Tent \w of|strong="H6944"\w* \w Meeting|strong="H4150"\w*, \w and|strong="H8033"\w* \w shall|strong="H4150"\w* \w take|strong="H6584"\w* \w off|strong="H6584"\w* \w the|strong="H8033"\w* linen garments \w which|strong="H8033"\w* \w he|strong="H8033"\w* \w put|strong="H3847"\w* \w on|strong="H3847"\w* when \w he|strong="H8033"\w* went into \w the|strong="H8033"\w* \w Holy|strong="H6944"\w* \w Place|strong="H6944"\w*, \w and|strong="H8033"\w* \w shall|strong="H4150"\w* \w leave|strong="H3240"\w* \w them|strong="H3847"\w* \w there|strong="H8033"\w*. +\v 24 \w Then|strong="H3318"\w* \w he|strong="H6213"\w* \w shall|strong="H5971"\w* \w bathe|strong="H7364"\w* \w himself|strong="H6213"\w* \w in|strong="H6213"\w* \w water|strong="H4325"\w* \w in|strong="H6213"\w* \w a|strong="H3068"\w* \w holy|strong="H6918"\w* \w place|strong="H4725"\w*, \w put|strong="H3847"\w* \w on|strong="H3847"\w* \w his|strong="H7364"\w* garments, \w and|strong="H5971"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H5971"\w* \w offer|strong="H6213"\w* \w his|strong="H7364"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w and|strong="H5971"\w* \w the|strong="H6213"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w of|strong="H4325"\w* \w the|strong="H6213"\w* \w people|strong="H5971"\w*, \w and|strong="H5971"\w* \w make|strong="H6213"\w* \w atonement|strong="H3722"\w* \w for|strong="H6213"\w* \w himself|strong="H6213"\w* \w and|strong="H5971"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w people|strong="H5971"\w*. +\v 25 \w The|strong="H6999"\w* \w fat|strong="H2459"\w* \w of|strong="H4196"\w* \w the|strong="H6999"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w* \w he|strong="H4196"\w* shall \w burn|strong="H6999"\w* \w on|strong="H6999"\w* \w the|strong="H6999"\w* \w altar|strong="H4196"\w*. +\p +\v 26 “\w He|strong="H3651"\w* who \w lets|strong="H7971"\w* \w the|strong="H7971"\w* \w goat|strong="H8163"\w* \w go|strong="H7971"\w* \w as|strong="H3651"\w* \w the|strong="H7971"\w* \w scapegoat|strong="H5799"\w* \w shall|strong="H4325"\w* \w wash|strong="H3526"\w* \w his|strong="H3526"\w* clothes, \w and|strong="H7971"\w* \w bathe|strong="H7364"\w* \w his|strong="H3526"\w* \w flesh|strong="H1320"\w* \w in|strong="H7364"\w* \w water|strong="H4325"\w*, \w and|strong="H7971"\w* afterward \w he|strong="H3651"\w* \w shall|strong="H4325"\w* \w come|strong="H7971"\w* \w into|strong="H4325"\w* \w the|strong="H7971"\w* \w camp|strong="H4264"\w*. +\v 27 \w The|strong="H3318"\w* \w bull|strong="H6499"\w* \w for|strong="H3722"\w* \w the|strong="H3318"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*, \w and|strong="H6499"\w* \w the|strong="H3318"\w* \w goat|strong="H8163"\w* \w for|strong="H3722"\w* \w the|strong="H3318"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*, whose \w blood|strong="H1818"\w* \w was|strong="H1320"\w* \w brought|strong="H3318"\w* \w in|strong="H1320"\w* \w to|strong="H3318"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w in|strong="H1320"\w* \w the|strong="H3318"\w* \w Holy|strong="H6944"\w* \w Place|strong="H6944"\w*, \w shall|strong="H1320"\w* \w be|strong="H1818"\w* \w carried|strong="H3318"\w* \w outside|strong="H2351"\w* \w the|strong="H3318"\w* \w camp|strong="H4264"\w*; \w and|strong="H6499"\w* \w they|strong="H2351"\w* \w shall|strong="H1320"\w* \w burn|strong="H8313"\w* \w their|strong="H8313"\w* \w skins|strong="H5785"\w*, \w their|strong="H8313"\w* \w flesh|strong="H1320"\w*, \w and|strong="H6499"\w* \w their|strong="H8313"\w* \w dung|strong="H6569"\w* \w with|strong="H8313"\w* fire. +\v 28 \w He|strong="H3651"\w* who \w burns|strong="H8313"\w* \w them|strong="H8313"\w* \w shall|strong="H4325"\w* \w wash|strong="H3526"\w* \w his|strong="H3526"\w* clothes, \w and|strong="H4325"\w* \w bathe|strong="H7364"\w* \w his|strong="H3526"\w* \w flesh|strong="H1320"\w* \w in|strong="H7364"\w* \w water|strong="H4325"\w*, \w and|strong="H4325"\w* afterward \w he|strong="H3651"\w* \w shall|strong="H4325"\w* come \w into|strong="H4325"\w* \w the|strong="H3651"\w* \w camp|strong="H4264"\w*. +\p +\v 29 “\w It|strong="H6213"\w* \w shall|strong="H5315"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w statute|strong="H2708"\w* \w to|strong="H1961"\w* \w you|strong="H3605"\w* \w forever|strong="H5769"\w*: \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w*, \w on|strong="H1961"\w* \w the|strong="H3605"\w* \w tenth|strong="H6218"\w* \w day|strong="H2320"\w* \w of|strong="H8432"\w* \w the|strong="H3605"\w* \w month|strong="H2320"\w*, \w you|strong="H3605"\w* \w shall|strong="H5315"\w* \w afflict|strong="H6031"\w* \w your|strong="H3605"\w* \w souls|strong="H5315"\w*, \w and|strong="H5769"\w* \w shall|strong="H5315"\w* \w do|strong="H6213"\w* \w no|strong="H3808"\w* kind \w of|strong="H8432"\w* \w work|strong="H4399"\w*, whether native-born \w or|strong="H3808"\w* \w a|strong="H3068"\w* \w stranger|strong="H1616"\w* \w who|strong="H3605"\w* \w lives|strong="H5315"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1616"\w* \w among|strong="H8432"\w* \w you|strong="H3605"\w*; +\v 30 \w for|strong="H3588"\w* \w on|strong="H5921"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w* \w shall|strong="H3068"\w* \w atonement|strong="H3722"\w* \w be|strong="H3068"\w* \w made|strong="H3722"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*, \w to|strong="H3068"\w* \w cleanse|strong="H2891"\w* \w you|strong="H3588"\w*. \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w clean|strong="H2891"\w* \w from|strong="H6440"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w sins|strong="H2403"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 31 \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w Sabbath|strong="H7676"\w* \w of|strong="H5315"\w* \w solemn|strong="H7677"\w* \w rest|strong="H7677"\w* \w to|strong="H5315"\w* \w you|strong="H5315"\w*, \w and|strong="H5769"\w* \w you|strong="H5315"\w* \w shall|strong="H5315"\w* \w afflict|strong="H6031"\w* \w your|strong="H6031"\w* \w souls|strong="H5315"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w statute|strong="H2708"\w* \w forever|strong="H5769"\w*. +\v 32 \w The|strong="H8478"\w* \w priest|strong="H3548"\w*, \w who|strong="H3548"\w* \w is|strong="H3027"\w* \w anointed|strong="H4886"\w* \w and|strong="H3027"\w* \w who|strong="H3548"\w* \w is|strong="H3027"\w* \w consecrated|strong="H6944"\w* \w to|strong="H3027"\w* \w be|strong="H3027"\w* \w priest|strong="H3548"\w* \w in|strong="H3847"\w* \w his|strong="H3027"\w* father’s \w place|strong="H8478"\w*, \w shall|strong="H3548"\w* \w make|strong="H3722"\w* \w the|strong="H8478"\w* \w atonement|strong="H3722"\w*, \w and|strong="H3027"\w* \w shall|strong="H3548"\w* \w put|strong="H3847"\w* \w on|strong="H3847"\w* \w the|strong="H8478"\w* linen garments, even \w the|strong="H8478"\w* \w holy|strong="H6944"\w* garments. +\v 33 \w Then|strong="H3548"\w* \w he|strong="H3605"\w* \w shall|strong="H3548"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w Holy|strong="H6944"\w* \w Sanctuary|strong="H6944"\w*; \w and|strong="H3548"\w* \w he|strong="H3605"\w* \w shall|strong="H3548"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* Tent \w of|strong="H4196"\w* \w Meeting|strong="H4150"\w* \w and|strong="H3548"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*; \w and|strong="H3548"\w* \w he|strong="H3605"\w* \w shall|strong="H3548"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H3548"\w* \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H4196"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w*. +\p +\v 34 “\w This|strong="H2063"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w an|strong="H6213"\w* \w everlasting|strong="H5769"\w* \w statute|strong="H2708"\w* \w for|strong="H5921"\w* \w you|strong="H6680"\w*, \w to|strong="H3478"\w* \w make|strong="H6213"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w once|strong="H1961"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w year|strong="H8141"\w* \w because|strong="H5921"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w sins|strong="H2403"\w*.” +\p \w It|strong="H5921"\w* \w was|strong="H3068"\w* \w done|strong="H6213"\w* \w as|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\c 17 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* Aaron, \w and|strong="H1121"\w* \w to|strong="H1696"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w say|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H6680"\w*, ‘\w This|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H3605"\w* \w thing|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w*: +\v 3 Whatever man there \w is|strong="H3478"\w* \w of|strong="H1004"\w* \w the|strong="H7819"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w who|strong="H3478"\w* \w kills|strong="H7819"\w* \w a|strong="H3068"\w* \w bull|strong="H7794"\w*, \w or|strong="H1004"\w* \w lamb|strong="H3775"\w*, \w or|strong="H1004"\w* \w goat|strong="H5795"\w* \w in|strong="H3478"\w* \w the|strong="H7819"\w* \w camp|strong="H4264"\w*, \w or|strong="H1004"\w* \w who|strong="H3478"\w* \w kills|strong="H7819"\w* \w it|strong="H7819"\w* \w outside|strong="H2351"\w* \w the|strong="H7819"\w* \w camp|strong="H4264"\w*, +\v 4 \w and|strong="H3068"\w* hasn’t \w brought|strong="H7126"\w* \w it|strong="H1931"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w* \w to|strong="H3068"\w* \w offer|strong="H7126"\w* \w it|strong="H1931"\w* \w as|strong="H2803"\w* \w an|strong="H7126"\w* \w offering|strong="H7133"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*’s \w tabernacle|strong="H4908"\w*: \w blood|strong="H1818"\w* \w shall|strong="H3068"\w* \w be|strong="H3808"\w* \w imputed|strong="H2803"\w* \w to|strong="H3068"\w* \w that|strong="H5971"\w* \w man|strong="H6440"\w*. \w He|strong="H1931"\w* \w has|strong="H3068"\w* \w shed|strong="H8210"\w* \w blood|strong="H1818"\w*. \w That|strong="H5971"\w* \w man|strong="H6440"\w* \w shall|strong="H3068"\w* \w be|strong="H3808"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H6440"\w* \w among|strong="H7130"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*. +\v 5 \w This|strong="H6440"\w* \w is|strong="H3068"\w* \w to|strong="H3478"\w* \w the|strong="H6440"\w* \w end|strong="H4616"\w* \w that|strong="H3068"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w may|strong="H3068"\w* bring \w their|strong="H3068"\w* \w sacrifices|strong="H2077"\w*, \w which|strong="H3068"\w* \w they|strong="H1992"\w* \w sacrifice|strong="H2077"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w open|strong="H6440"\w* \w field|strong="H7704"\w*, \w that|strong="H3068"\w* \w they|strong="H1992"\w* \w may|strong="H3068"\w* bring \w them|strong="H1992"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w to|strong="H3478"\w* \w the|strong="H6440"\w* \w door|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*, \w to|strong="H3478"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w*, \w and|strong="H1121"\w* \w sacrifice|strong="H2077"\w* \w them|strong="H1992"\w* \w for|strong="H5921"\w* \w sacrifices|strong="H2077"\w* \w of|strong="H1121"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*. +\v 6 \w The|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w sprinkle|strong="H2236"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w on|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w altar|strong="H4196"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, \w and|strong="H3068"\w* \w burn|strong="H6999"\w* \w the|strong="H5921"\w* \w fat|strong="H2459"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 7 \w They|strong="H1992"\w* \w shall|strong="H3808"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w sacrifice|strong="H2077"\w* \w their|strong="H1992"\w* \w sacrifices|strong="H2077"\w* \w to|strong="H1961"\w* \w the|strong="H1961"\w* \w goat|strong="H8163"\w* idols, \w after|strong="H1961"\w* \w which|strong="H1992"\w* \w they|strong="H1992"\w* \w play|strong="H2181"\w* \w the|strong="H1961"\w* \w prostitute|strong="H2181"\w*. \w This|strong="H2063"\w* \w shall|strong="H3808"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w statute|strong="H2708"\w* \w forever|strong="H5769"\w* \w to|strong="H1961"\w* \w them|strong="H1992"\w* \w throughout|strong="H1755"\w* \w their|strong="H1992"\w* \w generations|strong="H1755"\w*.’ +\p +\v 8 “\w You|strong="H4480"\w* \w shall|strong="H3478"\w* \w say|strong="H3478"\w* \w to|strong="H3478"\w* \w them|strong="H8432"\w*, ‘\w Any|strong="H4480"\w* man \w there|strong="H5927"\w* \w is|strong="H3478"\w* \w of|strong="H1004"\w* \w the|strong="H8432"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w or|strong="H4480"\w* \w of|strong="H1004"\w* \w the|strong="H8432"\w* \w strangers|strong="H1616"\w* \w who|strong="H1616"\w* \w live|strong="H1481"\w* \w as|strong="H5927"\w* \w foreigners|strong="H1616"\w* \w among|strong="H8432"\w* \w them|strong="H8432"\w*, \w who|strong="H1616"\w* \w offers|strong="H5927"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w or|strong="H4480"\w* \w sacrifice|strong="H2077"\w*, +\v 9 \w and|strong="H3068"\w* doesn’t \w bring|strong="H6213"\w* \w it|strong="H1931"\w* \w to|strong="H3068"\w* \w the|strong="H6213"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w* \w to|strong="H3068"\w* \w sacrifice|strong="H6213"\w* \w it|strong="H1931"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w that|strong="H5971"\w* man \w shall|strong="H3068"\w* \w be|strong="H3808"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*. +\p +\v 10 “‘\w Any|strong="H3605"\w* \w man|strong="H5315"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w or|strong="H4480"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w strangers|strong="H1616"\w* \w who|strong="H3605"\w* \w live|strong="H1481"\w* \w as|strong="H5315"\w* \w foreigners|strong="H1616"\w* \w among|strong="H8432"\w* \w them|strong="H5414"\w*, \w who|strong="H3605"\w* eats \w any|strong="H3605"\w* kind \w of|strong="H1004"\w* \w blood|strong="H1818"\w*, \w I|strong="H5414"\w* \w will|strong="H5971"\w* \w set|strong="H5414"\w* \w my|strong="H5414"\w* \w face|strong="H6440"\w* \w against|strong="H6440"\w* \w that|strong="H5971"\w* \w soul|strong="H5315"\w* \w who|strong="H3605"\w* eats \w blood|strong="H1818"\w*, \w and|strong="H3478"\w* \w will|strong="H5971"\w* \w cut|strong="H3772"\w* \w him|strong="H5414"\w* \w off|strong="H3772"\w* \w from|strong="H4480"\w* \w among|strong="H8432"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*. +\v 11 \w For|strong="H3588"\w* \w the|strong="H5921"\w* \w life|strong="H5315"\w* \w of|strong="H4196"\w* \w the|strong="H5921"\w* \w flesh|strong="H1320"\w* \w is|strong="H1931"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w*. \w I|strong="H3588"\w* \w have|strong="H5414"\w* \w given|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H5921"\w* \w you|strong="H3588"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w to|strong="H5921"\w* \w make|strong="H5414"\w* \w atonement|strong="H3722"\w* \w for|strong="H3588"\w* \w your|strong="H5414"\w* \w souls|strong="H5315"\w*; \w for|strong="H3588"\w* \w it|strong="H5414"\w* \w is|strong="H1931"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w that|strong="H3588"\w* \w makes|strong="H5414"\w* \w atonement|strong="H3722"\w* \w by|strong="H5921"\w* \w reason|strong="H5921"\w* \w of|strong="H4196"\w* \w the|strong="H5921"\w* \w life|strong="H5315"\w*. +\v 12 \w Therefore|strong="H3651"\w* \w I|strong="H5921"\w* \w have|strong="H1121"\w* \w said|strong="H3651"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, “\w No|strong="H3808"\w* \w person|strong="H5315"\w* \w among|strong="H8432"\w* \w you|strong="H3605"\w* \w may|strong="H3478"\w* eat \w blood|strong="H1818"\w*, \w nor|strong="H3808"\w* \w may|strong="H3478"\w* \w any|strong="H3605"\w* \w stranger|strong="H1616"\w* \w who|strong="H3605"\w* \w lives|strong="H5315"\w* \w as|strong="H5315"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1121"\w* \w among|strong="H8432"\w* \w you|strong="H3605"\w* eat \w blood|strong="H1818"\w*.” +\p +\v 13 “‘Whatever \w man|strong="H1121"\w* \w there|strong="H4480"\w* \w is|strong="H3478"\w* \w of|strong="H1121"\w* \w the|strong="H8432"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w or|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H8432"\w* \w strangers|strong="H1616"\w* \w who|strong="H1616"\w* \w live|strong="H2416"\w* \w as|strong="H1121"\w* \w foreigners|strong="H1121"\w* \w among|strong="H8432"\w* \w them|strong="H8432"\w*, \w who|strong="H1616"\w* takes \w in|strong="H3478"\w* \w hunting|strong="H6718"\w* \w any|strong="H4480"\w* \w animal|strong="H2416"\w* \w or|strong="H1121"\w* \w bird|strong="H5775"\w* \w that|strong="H1616"\w* \w may|strong="H3478"\w* \w be|strong="H1121"\w* eaten, \w he|strong="H4480"\w* \w shall|strong="H1121"\w* \w pour|strong="H8210"\w* \w out|strong="H8210"\w* \w its|strong="H3680"\w* \w blood|strong="H1818"\w*, \w and|strong="H1121"\w* \w cover|strong="H3680"\w* \w it|strong="H8432"\w* \w with|strong="H3680"\w* \w dust|strong="H6083"\w*. +\v 14 \w For|strong="H3588"\w* \w as|strong="H5315"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w life|strong="H5315"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w*, \w its|strong="H3605"\w* \w blood|strong="H1818"\w* \w is|strong="H1931"\w* \w with|strong="H3772"\w* \w its|strong="H3605"\w* \w life|strong="H5315"\w*. \w Therefore|strong="H3588"\w* \w I|strong="H3588"\w* said \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, “\w You|strong="H3588"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* eat \w the|strong="H3605"\w* \w blood|strong="H1818"\w* \w of|strong="H1121"\w* \w any|strong="H3605"\w* kind \w of|strong="H1121"\w* \w flesh|strong="H1320"\w*; \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w life|strong="H5315"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w* \w is|strong="H1931"\w* \w its|strong="H3605"\w* \w blood|strong="H1818"\w*. \w Whoever|strong="H3605"\w* eats \w it|strong="H1931"\w* \w shall|strong="H1121"\w* \w be|strong="H3808"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*.” +\p +\v 15 “‘\w Every|strong="H3605"\w* \w person|strong="H5315"\w* \w that|strong="H3605"\w* eats \w what|strong="H2966"\w* \w dies|strong="H5038"\w* \w of|strong="H4325"\w* \w itself|strong="H5038"\w*, \w or|strong="H5704"\w* \w that|strong="H3605"\w* \w which|strong="H4325"\w* \w is|strong="H5315"\w* \w torn|strong="H2966"\w* \w by|strong="H5704"\w* animals, whether \w he|strong="H5704"\w* \w is|strong="H5315"\w* native-born \w or|strong="H5704"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1616"\w*, \w shall|strong="H5315"\w* \w wash|strong="H3526"\w* \w his|strong="H3605"\w* clothes, \w and|strong="H4325"\w* \w bathe|strong="H7364"\w* \w himself|strong="H5315"\w* \w in|strong="H7364"\w* \w water|strong="H4325"\w*, \w and|strong="H4325"\w* \w be|strong="H5315"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w evening|strong="H6153"\w*. \w Then|strong="H3605"\w* \w he|strong="H5704"\w* \w shall|strong="H5315"\w* \w be|strong="H5315"\w* \w clean|strong="H2891"\w*. +\v 16 \w But|strong="H3808"\w* if \w he|strong="H3808"\w* doesn’t \w wash|strong="H3526"\w* \w them|strong="H5375"\w*, \w or|strong="H3808"\w* \w bathe|strong="H7364"\w* \w his|strong="H5375"\w* \w flesh|strong="H1320"\w*, \w then|strong="H5375"\w* \w he|strong="H3808"\w* \w shall|strong="H3808"\w* \w bear|strong="H5375"\w* \w his|strong="H5375"\w* \w iniquity|strong="H5771"\w*.’” +\c 18 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, +\v 2 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w say|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H1121"\w*, ‘\w I|strong="H1121"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 3 \w You|strong="H6213"\w* \w shall|strong="H4714"\w* \w not|strong="H3808"\w* \w do|strong="H6213"\w* \w as|strong="H6213"\w* \w they|strong="H8033"\w* \w do|strong="H6213"\w* \w in|strong="H3427"\w* \w the|strong="H6213"\w* land \w of|strong="H3427"\w* \w Egypt|strong="H4714"\w*, \w where|strong="H8033"\w* \w you|strong="H6213"\w* \w lived|strong="H3427"\w*. \w You|strong="H6213"\w* \w shall|strong="H4714"\w* \w not|strong="H3808"\w* \w do|strong="H6213"\w* \w as|strong="H6213"\w* \w they|strong="H8033"\w* \w do|strong="H6213"\w* \w in|strong="H3427"\w* \w the|strong="H6213"\w* land \w of|strong="H3427"\w* \w Canaan|strong="H3667"\w*, \w where|strong="H8033"\w* \w I|strong="H4714"\w* am bringing \w you|strong="H6213"\w*. \w You|strong="H6213"\w* \w shall|strong="H4714"\w* \w not|strong="H3808"\w* \w follow|strong="H3212"\w* \w their|strong="H6213"\w* \w statutes|strong="H2708"\w*. +\v 4 \w You|strong="H6213"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w my|strong="H8104"\w* \w ordinances|strong="H4941"\w*. \w You|strong="H6213"\w* \w shall|strong="H3068"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w* \w and|strong="H3068"\w* \w walk|strong="H3212"\w* \w in|strong="H3068"\w* \w them|strong="H6213"\w*. \w I|strong="H3068"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 5 \w You|strong="H6213"\w* \w shall|strong="H3068"\w* \w therefore|strong="H3068"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w* \w and|strong="H3068"\w* \w my|strong="H8104"\w* \w ordinances|strong="H4941"\w*, \w which|strong="H3068"\w* if \w a|strong="H3068"\w* man \w does|strong="H6213"\w*, \w he|strong="H6213"\w* \w shall|strong="H3068"\w* \w live|strong="H2425"\w* \w in|strong="H3068"\w* \w them|strong="H6213"\w*. \w I|strong="H3068"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 6 “‘\w None|strong="H3808"\w* \w of|strong="H3068"\w* \w you|strong="H3605"\w* \w shall|strong="H3068"\w* \w approach|strong="H7126"\w* \w any|strong="H3605"\w* \w close|strong="H7126"\w* \w relatives|strong="H7607"\w*, \w to|strong="H3068"\w* \w uncover|strong="H1540"\w* \w their|strong="H3605"\w* \w nakedness|strong="H6172"\w*: \w I|strong="H3808"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 7 “‘\w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w uncover|strong="H1540"\w* \w the|strong="H1540"\w* \w nakedness|strong="H6172"\w* \w of|strong="H3808"\w* \w your|strong="H3808"\w* father, \w nor|strong="H3808"\w* \w the|strong="H1540"\w* \w nakedness|strong="H6172"\w* \w of|strong="H3808"\w* \w your|strong="H3808"\w* mother: \w she|strong="H1931"\w* \w is|strong="H1931"\w* \w your|strong="H3808"\w* mother. \w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w uncover|strong="H1540"\w* \w her|strong="H1540"\w* \w nakedness|strong="H6172"\w*. +\p +\v 8 “‘\w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w uncover|strong="H1540"\w* \w the|strong="H1540"\w* \w nakedness|strong="H6172"\w* \w of|strong="H3808"\w* \w your|strong="H3808"\w* father’s wife. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w your|strong="H3808"\w* father’s \w nakedness|strong="H6172"\w*. +\p +\v 9 “‘\w You|strong="H3808"\w* \w shall|strong="H1004"\w* \w not|strong="H3808"\w* \w uncover|strong="H1540"\w* \w the|strong="H2351"\w* \w nakedness|strong="H6172"\w* \w of|strong="H1004"\w* \w your|strong="H3808"\w* sister, \w the|strong="H2351"\w* \w daughter|strong="H1323"\w* \w of|strong="H1004"\w* \w your|strong="H3808"\w* father, \w or|strong="H3808"\w* \w the|strong="H2351"\w* \w daughter|strong="H1323"\w* \w of|strong="H1004"\w* \w your|strong="H3808"\w* mother, whether \w born|strong="H4138"\w* \w at|strong="H1004"\w* \w home|strong="H1004"\w* \w or|strong="H3808"\w* \w born|strong="H4138"\w* \w abroad|strong="H2351"\w*. +\p +\v 10 “‘\w You|strong="H3588"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w uncover|strong="H1540"\w* \w the|strong="H3588"\w* \w nakedness|strong="H6172"\w* \w of|strong="H1121"\w* \w your|strong="H3588"\w* \w son|strong="H1121"\w*’s \w daughter|strong="H1323"\w*, \w or|strong="H3808"\w* \w of|strong="H1121"\w* \w your|strong="H3588"\w* \w daughter|strong="H1323"\w*’s \w daughter|strong="H1323"\w*, \w even|strong="H3588"\w* \w their|strong="H3588"\w* \w nakedness|strong="H6172"\w*; \w for|strong="H3588"\w* \w theirs|strong="H2007"\w* \w is|strong="H1121"\w* \w your|strong="H3588"\w* own \w nakedness|strong="H6172"\w*. +\p +\v 11 “‘\w You|strong="H3808"\w* \w shall|strong="H1323"\w* \w not|strong="H3808"\w* \w uncover|strong="H1540"\w* \w the|strong="H1540"\w* \w nakedness|strong="H6172"\w* \w of|strong="H1323"\w* \w your|strong="H3808"\w* father’s wife’s \w daughter|strong="H1323"\w*, conceived \w by|strong="H3808"\w* \w your|strong="H3808"\w* father, since \w she|strong="H1931"\w* \w is|strong="H1931"\w* \w your|strong="H3808"\w* sister. +\p +\v 12 “‘\w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w uncover|strong="H1540"\w* \w the|strong="H1540"\w* \w nakedness|strong="H6172"\w* \w of|strong="H3808"\w* \w your|strong="H3808"\w* father’s sister. \w She|strong="H1931"\w* \w is|strong="H1931"\w* \w your|strong="H3808"\w* father’s \w near|strong="H7607"\w* \w kinswoman|strong="H7607"\w*. +\p +\v 13 “‘\w You|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w uncover|strong="H1540"\w* \w the|strong="H3588"\w* \w nakedness|strong="H6172"\w* \w of|strong="H3808"\w* \w your|strong="H3588"\w* mother’s sister, \w for|strong="H3588"\w* \w she|strong="H1931"\w* \w is|strong="H1931"\w* \w your|strong="H3588"\w* mother’s \w near|strong="H7607"\w* \w kinswoman|strong="H7607"\w*. +\p +\v 14 “‘\w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w uncover|strong="H1540"\w* \w the|strong="H7126"\w* \w nakedness|strong="H6172"\w* \w of|strong="H3808"\w* \w your|strong="H3808"\w* father’s brother. \w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w approach|strong="H7126"\w* \w his|strong="H7126"\w* \w wife|strong="H1733"\w*. \w She|strong="H1931"\w* \w is|strong="H1931"\w* \w your|strong="H3808"\w* \w aunt|strong="H1733"\w*. +\p +\v 15 “‘\w You|strong="H3808"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w uncover|strong="H1540"\w* \w the|strong="H1540"\w* \w nakedness|strong="H6172"\w* \w of|strong="H1121"\w* \w your|strong="H3808"\w* \w daughter-in-law|strong="H3618"\w*. \w She|strong="H1931"\w* \w is|strong="H1931"\w* \w your|strong="H3808"\w* \w son|strong="H1121"\w*’s wife. \w You|strong="H3808"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w uncover|strong="H1540"\w* \w her|strong="H1540"\w* \w nakedness|strong="H6172"\w*. +\p +\v 16 “‘\w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w uncover|strong="H1540"\w* \w the|strong="H1540"\w* \w nakedness|strong="H6172"\w* \w of|strong="H3808"\w* \w your|strong="H3808"\w* brother’s wife. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w your|strong="H3808"\w* brother’s \w nakedness|strong="H6172"\w*. +\p +\v 17 “‘\w You|strong="H3947"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w uncover|strong="H1540"\w* \w the|strong="H3947"\w* \w nakedness|strong="H6172"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w woman|strong="H1323"\w* \w and|strong="H1121"\w* \w her|strong="H1540"\w* \w daughter|strong="H1323"\w*. \w You|strong="H3947"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w take|strong="H3947"\w* \w her|strong="H1540"\w* \w son|strong="H1121"\w*’s \w daughter|strong="H1323"\w*, \w or|strong="H3808"\w* \w her|strong="H1540"\w* \w daughter|strong="H1323"\w*’s \w daughter|strong="H1323"\w*, \w to|strong="H1121"\w* \w uncover|strong="H1540"\w* \w her|strong="H1540"\w* \w nakedness|strong="H6172"\w*. \w They|strong="H3808"\w* \w are|strong="H1121"\w* \w near|strong="H3808"\w* \w kinswomen|strong="H7608"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w wickedness|strong="H2154"\w*. +\p +\v 18 “‘\w You|strong="H5921"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w wife|strong="H2416"\w* \w in|strong="H5921"\w* \w addition|strong="H5921"\w* \w to|strong="H5921"\w* \w her|strong="H1540"\w* sister, \w to|strong="H5921"\w* \w be|strong="H3808"\w* \w a|strong="H3068"\w* \w rival|strong="H6887"\w*, \w to|strong="H5921"\w* \w uncover|strong="H1540"\w* \w her|strong="H1540"\w* \w nakedness|strong="H6172"\w*, \w while|strong="H5921"\w* \w her|strong="H1540"\w* sister \w is|strong="H3808"\w* still \w alive|strong="H2416"\w*. +\p +\v 19 “‘\w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w approach|strong="H7126"\w* \w a|strong="H3068"\w* \w woman|strong="H5079"\w* \w to|strong="H1540"\w* \w uncover|strong="H1540"\w* \w her|strong="H1540"\w* \w nakedness|strong="H6172"\w*, \w as|strong="H1540"\w* long \w as|strong="H1540"\w* \w she|strong="H3808"\w* \w is|strong="H2932"\w* \w impure|strong="H2932"\w* \w by|strong="H3808"\w* \w her|strong="H1540"\w* \w uncleanness|strong="H2932"\w*. +\p +\v 20 “‘\w You|strong="H5414"\w* \w shall|strong="H2233"\w* \w not|strong="H3808"\w* \w lie|strong="H7903"\w* \w carnally|strong="H2233"\w* \w with|strong="H7903"\w* \w your|strong="H5414"\w* \w neighbor|strong="H5997"\w*’s wife, \w and|strong="H2233"\w* \w defile|strong="H2930"\w* \w yourself|strong="H5414"\w* \w with|strong="H7903"\w* \w her|strong="H5414"\w*. +\p +\v 21 “‘\w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w give|strong="H5414"\w* \w any|strong="H5414"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w children|strong="H2233"\w* \w as|strong="H3068"\w* \w a|strong="H3068"\w* sacrifice \w to|strong="H3068"\w* \w Molech|strong="H4432"\w*. \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w profane|strong="H2490"\w* \w the|strong="H5414"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \w I|strong="H5414"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 22 “‘\w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w lie|strong="H7901"\w* \w with|strong="H7901"\w* \w a|strong="H3068"\w* \w man|strong="H2145"\w* \w as|strong="H2145"\w* \w with|strong="H7901"\w* \w a|strong="H3068"\w* woman. \w That|strong="H1931"\w* \w is|strong="H1931"\w* \w detestable|strong="H8441"\w*. +\p +\v 23 “‘\w You|strong="H5414"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w lie|strong="H7903"\w* \w with|strong="H6440"\w* \w any|strong="H3605"\w* animal \w to|strong="H5414"\w* \w defile|strong="H2930"\w* \w yourself|strong="H5414"\w* \w with|strong="H6440"\w* \w it|strong="H5414"\w*. \w No|strong="H3808"\w* woman \w may|strong="H5414"\w* \w give|strong="H5414"\w* \w herself|strong="H1931"\w* \w to|strong="H5414"\w* \w an|strong="H5414"\w* animal, \w to|strong="H5414"\w* \w lie|strong="H7903"\w* \w down|strong="H7250"\w* \w with|strong="H6440"\w* \w it|strong="H5414"\w*: \w it|strong="H5414"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w perversion|strong="H8397"\w*. +\p +\v 24 “‘Don’t \w defile|strong="H2930"\w* \w yourselves|strong="H2930"\w* \w in|strong="H6440"\w* \w any|strong="H3605"\w* \w of|strong="H6440"\w* \w these|strong="H3605"\w* \w things|strong="H3605"\w*; \w for|strong="H3588"\w* \w in|strong="H6440"\w* \w all|strong="H3605"\w* \w these|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w which|strong="H1471"\w* \w I|strong="H3588"\w* am \w casting|strong="H7971"\w* \w out|strong="H7971"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w* \w were|strong="H1471"\w* \w defiled|strong="H2930"\w*. +\v 25 \w The|strong="H5921"\w* land \w was|strong="H3427"\w* \w defiled|strong="H2930"\w*. \w Therefore|strong="H5921"\w* \w I|strong="H5921"\w* \w punished|strong="H6485"\w* \w its|strong="H5921"\w* \w iniquity|strong="H5771"\w*, \w and|strong="H3427"\w* \w the|strong="H5921"\w* land vomited \w out|strong="H6958"\w* \w her|strong="H5921"\w* \w inhabitants|strong="H3427"\w*. +\v 26 \w You|strong="H3605"\w* \w therefore|strong="H6213"\w* \w shall|strong="H3808"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w* \w and|strong="H4941"\w* \w my|strong="H8104"\w* \w ordinances|strong="H4941"\w*, \w and|strong="H4941"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w do|strong="H6213"\w* \w any|strong="H3605"\w* \w of|strong="H8432"\w* \w these|strong="H6213"\w* \w abominations|strong="H8441"\w*; \w neither|strong="H3808"\w* \w the|strong="H3605"\w* native-born, \w nor|strong="H3808"\w* \w the|strong="H3605"\w* \w stranger|strong="H1616"\w* \w who|strong="H3605"\w* \w lives|strong="H1481"\w* \w as|strong="H6213"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1616"\w* \w among|strong="H8432"\w* \w you|strong="H3605"\w* +\v 27 (\w for|strong="H3588"\w* \w the|strong="H3605"\w* \w men|strong="H6213"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w that|strong="H3588"\w* \w were|strong="H3605"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w* \w had|strong="H3588"\w* \w done|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* \w abominations|strong="H8441"\w*, \w and|strong="H6440"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w became|strong="H2930"\w* \w defiled|strong="H2930"\w*), +\v 28 \w that|strong="H1471"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w not|strong="H3808"\w* \w vomit|strong="H6958"\w* \w you|strong="H6440"\w* \w out|strong="H6958"\w* \w also|strong="H1471"\w*, when \w you|strong="H6440"\w* \w defile|strong="H2930"\w* \w it|strong="H6440"\w*, \w as|strong="H6440"\w* \w it|strong="H6440"\w* vomited \w out|strong="H6958"\w* \w the|strong="H6440"\w* \w nation|strong="H1471"\w* \w that|strong="H1471"\w* \w was|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*. +\p +\v 29 “‘\w For|strong="H3588"\w* \w whoever|strong="H3605"\w* \w shall|strong="H5971"\w* \w do|strong="H6213"\w* \w any|strong="H3605"\w* \w of|strong="H5971"\w* \w these|strong="H6213"\w* \w abominations|strong="H8441"\w*, \w even|strong="H3588"\w* \w the|strong="H3605"\w* \w souls|strong="H5315"\w* \w that|strong="H3588"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w* \w shall|strong="H5971"\w* \w be|strong="H5315"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w among|strong="H7130"\w* \w their|strong="H3605"\w* \w people|strong="H5971"\w*. +\v 30 \w Therefore|strong="H3068"\w* \w you|strong="H6440"\w* \w shall|strong="H3068"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* requirements, \w that|strong="H3068"\w* \w you|strong="H6440"\w* \w do|strong="H6213"\w* \w not|strong="H3808"\w* \w practice|strong="H6213"\w* \w any|strong="H6213"\w* \w of|strong="H3068"\w* \w these|strong="H6213"\w* \w abominable|strong="H8441"\w* \w customs|strong="H2708"\w* \w which|strong="H3068"\w* \w were|strong="H3068"\w* \w practiced|strong="H6213"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w and|strong="H3068"\w* \w that|strong="H3068"\w* \w you|strong="H6440"\w* \w do|strong="H6213"\w* \w not|strong="H3808"\w* \w defile|strong="H2930"\w* \w yourselves|strong="H2930"\w* \w with|strong="H3068"\w* \w them|strong="H6440"\w*. \w I|strong="H3808"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*.’” +\c 19 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w tell|strong="H1696"\w* \w them|strong="H1961"\w*, ‘\w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w holy|strong="H6918"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w am|strong="H1961"\w* \w holy|strong="H6918"\w*. +\p +\v 3 “‘Each \w one|strong="H3068"\w* \w of|strong="H3068"\w* \w you|strong="H3372"\w* \w shall|strong="H3068"\w* respect \w his|strong="H8104"\w* mother \w and|strong="H3068"\w* \w his|strong="H8104"\w* father. \w You|strong="H3372"\w* \w shall|strong="H3068"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w Sabbaths|strong="H7676"\w*. \w I|strong="H3068"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\p +\v 4 “‘Don’t \w turn|strong="H6437"\w* \w to|strong="H3068"\w* idols, \w nor|strong="H3808"\w* \w make|strong="H6213"\w* \w molten|strong="H4541"\w* gods \w for|strong="H6213"\w* \w yourselves|strong="H3068"\w*. \w I|strong="H3808"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\p +\v 5 “‘\w When|strong="H3588"\w* \w you|strong="H3588"\w* \w offer|strong="H2076"\w* \w a|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w offer|strong="H2076"\w* \w it|strong="H3588"\w* \w so|strong="H3588"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w accepted|strong="H7522"\w*. +\v 6 \w It|strong="H5704"\w* \w shall|strong="H3117"\w* \w be|strong="H3117"\w* eaten \w the|strong="H3117"\w* same \w day|strong="H3117"\w* \w you|strong="H3117"\w* \w offer|strong="H2077"\w* \w it|strong="H5704"\w*, \w and|strong="H3117"\w* \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w next|strong="H4283"\w* \w day|strong="H3117"\w*. If anything \w remains|strong="H3498"\w* \w until|strong="H5704"\w* \w the|strong="H3117"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*, \w it|strong="H5704"\w* \w shall|strong="H3117"\w* \w be|strong="H3117"\w* \w burned|strong="H8313"\w* \w with|strong="H8313"\w* fire. +\v 7 \w If|strong="H1931"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* eaten \w at|strong="H3117"\w* \w all|strong="H3117"\w* \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*, \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w an|strong="H7521"\w* \w abomination|strong="H6292"\w*. \w It|strong="H1931"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w accepted|strong="H7521"\w*; +\v 8 \w but|strong="H3588"\w* everyone \w who|strong="H1931"\w* eats \w it|strong="H1931"\w* \w shall|strong="H3068"\w* \w bear|strong="H5375"\w* \w his|strong="H5375"\w* \w iniquity|strong="H5771"\w*, \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w has|strong="H3068"\w* \w profaned|strong="H2490"\w* \w the|strong="H3588"\w* \w holy|strong="H6944"\w* \w thing|strong="H6944"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w that|strong="H3588"\w* \w soul|strong="H5315"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w his|strong="H5375"\w* \w people|strong="H5971"\w*. +\p +\v 9 “‘\w When|strong="H3615"\w* \w you|strong="H3808"\w* \w reap|strong="H7114"\w* \w the|strong="H3615"\w* \w harvest|strong="H7105"\w* \w of|strong="H7704"\w* \w your|strong="H3808"\w* \w land|strong="H7704"\w*, \w you|strong="H3808"\w* \w shall|strong="H7704"\w* \w not|strong="H3808"\w* wholly \w reap|strong="H7114"\w* \w the|strong="H3615"\w* \w corners|strong="H6285"\w* \w of|strong="H7704"\w* \w your|strong="H3808"\w* \w field|strong="H7704"\w*, \w neither|strong="H3808"\w* \w shall|strong="H7704"\w* \w you|strong="H3808"\w* \w gather|strong="H3950"\w* \w the|strong="H3615"\w* \w gleanings|strong="H3951"\w* \w of|strong="H7704"\w* \w your|strong="H3808"\w* \w harvest|strong="H7105"\w*. +\v 10 \w You|strong="H3808"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w glean|strong="H3950"\w* \w your|strong="H3068"\w* \w vineyard|strong="H3754"\w*, \w neither|strong="H3808"\w* \w shall|strong="H3068"\w* \w you|strong="H3808"\w* \w gather|strong="H3950"\w* \w the|strong="H3068"\w* \w fallen|strong="H6528"\w* grapes \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w vineyard|strong="H3754"\w*. \w You|strong="H3808"\w* \w shall|strong="H3068"\w* \w leave|strong="H5800"\w* \w them|strong="H5800"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w poor|strong="H6041"\w* \w and|strong="H3068"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w foreigner|strong="H1616"\w*. \w I|strong="H3808"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\p +\v 11 “‘\w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w steal|strong="H1589"\w*. +\p “‘\w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w lie|strong="H8266"\w*. +\p “‘\w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w deceive|strong="H3584"\w* \w one|strong="H3808"\w* \w another|strong="H5997"\w*. +\p +\v 12 “‘\w You|strong="H3808"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w swear|strong="H7650"\w* \w by|strong="H7650"\w* \w my|strong="H3068"\w* \w name|strong="H8034"\w* \w falsely|strong="H8267"\w*, \w and|strong="H3068"\w* \w profane|strong="H2490"\w* \w the|strong="H3068"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \w I|strong="H3808"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 13 “‘\w You|strong="H5704"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w oppress|strong="H6231"\w* \w your|strong="H3808"\w* \w neighbor|strong="H7453"\w*, \w nor|strong="H3808"\w* \w rob|strong="H1497"\w* \w him|strong="H5704"\w*. +\p “‘\w The|strong="H5704"\w* \w wages|strong="H6468"\w* \w of|strong="H3808"\w* \w a|strong="H3068"\w* \w hired|strong="H7916"\w* \w servant|strong="H7916"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w remain|strong="H3885"\w* with \w you|strong="H5704"\w* \w all|strong="H5704"\w* \w night|strong="H3885"\w* \w until|strong="H5704"\w* \w the|strong="H5704"\w* \w morning|strong="H1242"\w*. +\p +\v 14 “‘\w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w curse|strong="H7043"\w* \w the|strong="H6440"\w* \w deaf|strong="H2795"\w*, \w nor|strong="H3808"\w* \w put|strong="H5414"\w* \w a|strong="H3068"\w* \w stumbling|strong="H4383"\w* \w block|strong="H4383"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w blind|strong="H5787"\w*; \w but|strong="H3808"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w fear|strong="H3372"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \w I|strong="H5414"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 15 “‘\w You|strong="H6440"\w* \w shall|strong="H3808"\w* \w do|strong="H6213"\w* \w no|strong="H3808"\w* \w injustice|strong="H5766"\w* \w in|strong="H6213"\w* \w judgment|strong="H4941"\w*. \w You|strong="H6440"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w partial|strong="H5375"\w* \w to|strong="H6213"\w* \w the|strong="H6440"\w* \w poor|strong="H1800"\w*, \w nor|strong="H3808"\w* \w show|strong="H6213"\w* favoritism \w to|strong="H6213"\w* \w the|strong="H6440"\w* \w great|strong="H1419"\w*; \w but|strong="H3808"\w* \w you|strong="H6440"\w* \w shall|strong="H3808"\w* \w judge|strong="H8199"\w* \w your|strong="H5375"\w* \w neighbor|strong="H5997"\w* \w in|strong="H6213"\w* \w righteousness|strong="H6664"\w*. +\p +\v 16 “‘\w You|strong="H5921"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w go|strong="H3212"\w* \w around|strong="H5921"\w* \w as|strong="H3068"\w* \w a|strong="H3068"\w* \w slanderer|strong="H7400"\w* \w among|strong="H5921"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w*. +\p “‘\w You|strong="H5921"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* endanger \w the|strong="H5921"\w* \w life|strong="H1818"\w*\f + \fr 19:16 \ft literally, “blood”\f* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w neighbor|strong="H7453"\w*. \w I|strong="H5921"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 17 “‘\w You|strong="H5921"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w hate|strong="H8130"\w* \w your|strong="H5921"\w* brother \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w heart|strong="H3824"\w*. \w You|strong="H5921"\w* \w shall|strong="H3808"\w* \w surely|strong="H3198"\w* \w rebuke|strong="H3198"\w* \w your|strong="H5921"\w* \w neighbor|strong="H5997"\w*, \w and|strong="H3824"\w* \w not|strong="H3808"\w* \w bear|strong="H5375"\w* \w sin|strong="H2399"\w* \w because|strong="H5921"\w* \w of|strong="H5921"\w* \w him|strong="H5921"\w*. +\p +\v 18 “‘\w You|strong="H3808"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w take|strong="H5358"\w* \w vengeance|strong="H5358"\w*, \w nor|strong="H3808"\w* \w bear|strong="H5201"\w* \w any|strong="H5201"\w* \w grudge|strong="H5201"\w* \w against|strong="H3068"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w*; \w but|strong="H3808"\w* \w you|strong="H3808"\w* \w shall|strong="H3068"\w* love \w your|strong="H3068"\w* \w neighbor|strong="H7453"\w* \w as|strong="H3644"\w* yourself. \w I|strong="H3808"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 19 “‘\w You|strong="H5921"\w* \w shall|strong="H7704"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w*. +\p “‘\w You|strong="H5921"\w* \w shall|strong="H7704"\w* \w not|strong="H3808"\w* cross-breed different \w kinds|strong="H3610"\w* \w of|strong="H7704"\w* animals. +\p “‘\w You|strong="H5921"\w* \w shall|strong="H7704"\w* \w not|strong="H3808"\w* \w sow|strong="H2232"\w* \w your|strong="H5921"\w* \w field|strong="H7704"\w* \w with|strong="H5921"\w* \w two|strong="H3610"\w* \w kinds|strong="H3610"\w* \w of|strong="H7704"\w* \w seed|strong="H2232"\w*; +\p “‘Don’t \w wear|strong="H5927"\w* \w a|strong="H3068"\w* garment \w made|strong="H5927"\w* \w of|strong="H7704"\w* \w two|strong="H3610"\w* \w kinds|strong="H3610"\w* \w of|strong="H7704"\w* \w material|strong="H8162"\w*. +\p +\v 20 “‘\w If|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H4191"\w* \w lies|strong="H7901"\w* \w carnally|strong="H2233"\w* \w with|strong="H7901"\w* \w a|strong="H3068"\w* woman \w who|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w slave|strong="H8198"\w* \w girl|strong="H8198"\w*, \w pledged|strong="H5414"\w* \w to|strong="H4191"\w* \w be|strong="H1961"\w* married \w to|strong="H4191"\w* \w another|strong="H3808"\w* \w man|strong="H4191"\w*, \w and|strong="H4191"\w* \w not|strong="H3808"\w* \w ransomed|strong="H6299"\w* \w or|strong="H3808"\w* \w given|strong="H5414"\w* \w her|strong="H5414"\w* \w freedom|strong="H2668"\w*; \w they|strong="H3588"\w* \w shall|strong="H2233"\w* \w be|strong="H1961"\w* punished. \w They|strong="H3588"\w* \w shall|strong="H2233"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w put|strong="H5414"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*, \w because|strong="H3588"\w* \w she|strong="H1931"\w* \w was|strong="H1961"\w* \w not|strong="H3808"\w* \w free|strong="H2666"\w*. +\v 21 \w He|strong="H3068"\w* \w shall|strong="H3068"\w* bring \w his|strong="H3068"\w* trespass \w offering|strong="H3068"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, \w even|strong="H3068"\w* \w a|strong="H3068"\w* ram \w for|strong="H3068"\w* \w a|strong="H3068"\w* trespass \w offering|strong="H3068"\w*. +\v 22 \w The|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w him|strong="H6440"\w* \w with|strong="H3068"\w* \w the|strong="H6440"\w* ram \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w trespass|strong="H2398"\w* \w offering|strong="H2403"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H5921"\w* \w his|strong="H3068"\w* \w sin|strong="H2403"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w committed|strong="H2398"\w*; \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w sin|strong="H2403"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w committed|strong="H2398"\w* \w shall|strong="H3548"\w* \w be|strong="H3068"\w* \w forgiven|strong="H5545"\w* \w him|strong="H6440"\w*. +\p +\v 23 “‘\w When|strong="H3588"\w* \w you|strong="H3588"\w* \w come|strong="H1961"\w* \w into|strong="H1961"\w* \w the|strong="H3605"\w* land, \w and|strong="H6086"\w* \w have|strong="H1961"\w* \w planted|strong="H5193"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H8141"\w* \w trees|strong="H6086"\w* \w for|strong="H3588"\w* \w food|strong="H3978"\w*, \w then|strong="H1961"\w* \w you|strong="H3588"\w* \w shall|strong="H3808"\w* \w count|strong="H8141"\w* \w their|strong="H3605"\w* \w fruit|strong="H6529"\w* \w as|strong="H1961"\w* \w forbidden|strong="H6189"\w*.\f + \fr 19:23 \ft literally, “uncircumcised”\f* \w For|strong="H3588"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w* \w it|strong="H3588"\w* \w shall|strong="H3808"\w* \w be|strong="H1961"\w* \w forbidden|strong="H6189"\w* \w to|strong="H1961"\w* \w you|strong="H3588"\w*. \w It|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w eaten|strong="H3978"\w*. +\v 24 \w But|strong="H1961"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w fourth|strong="H7243"\w* \w year|strong="H8141"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w fruit|strong="H6529"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w holy|strong="H6944"\w*, \w for|strong="H3068"\w* giving \w praise|strong="H1974"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 25 \w In|strong="H8141"\w* \w the|strong="H3068"\w* \w fifth|strong="H2549"\w* \w year|strong="H8141"\w* \w you|strong="H8141"\w* \w shall|strong="H3068"\w* eat \w its|strong="H6529"\w* \w fruit|strong="H6529"\w*, \w that|strong="H3068"\w* \w it|strong="H3254"\w* \w may|strong="H3068"\w* \w yield|strong="H8393"\w* \w its|strong="H6529"\w* \w increase|strong="H8393"\w* \w to|strong="H3068"\w* \w you|strong="H8141"\w*. \w I|strong="H8141"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\p +\v 26 “‘\w You|strong="H5921"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* eat \w any|strong="H3808"\w* meat \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w still|strong="H6049"\w* \w in|strong="H5921"\w* \w it|strong="H5921"\w*. \w You|strong="H5921"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* use \w enchantments|strong="H5172"\w*, \w nor|strong="H3808"\w* \w practice|strong="H5172"\w* sorcery. +\p +\v 27 “‘\w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w cut|strong="H2206"\w* \w the|strong="H7843"\w* \w hair|strong="H7218"\w* \w on|strong="H6285"\w* \w the|strong="H7843"\w* \w sides|strong="H6285"\w* \w of|strong="H7218"\w* \w your|strong="H3808"\w* \w head|strong="H7218"\w* \w or|strong="H3808"\w* clip \w off|strong="H7843"\w* \w the|strong="H7843"\w* edge \w of|strong="H7218"\w* \w your|strong="H3808"\w* \w beard|strong="H2206"\w*. +\p +\v 28 “‘\w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w make|strong="H5414"\w* \w any|strong="H5315"\w* \w cuttings|strong="H8296"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w flesh|strong="H1320"\w* \w for|strong="H3068"\w* \w the|strong="H5414"\w* \w dead|strong="H5315"\w*, \w nor|strong="H3808"\w* \w tattoo|strong="H3793"\w* \w any|strong="H5315"\w* \w marks|strong="H3793"\w* \w on|strong="H3068"\w* \w you|strong="H5414"\w*. \w I|strong="H5414"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 29 “‘Don’t \w profane|strong="H2490"\w* \w your|strong="H3808"\w* \w daughter|strong="H1323"\w*, \w to|strong="H2490"\w* \w make|strong="H2181"\w* \w her|strong="H4390"\w* \w a|strong="H3068"\w* \w prostitute|strong="H2181"\w*; lest \w the|strong="H4390"\w* land \w fall|strong="H2181"\w* \w to|strong="H2490"\w* prostitution, \w and|strong="H1323"\w* \w the|strong="H4390"\w* land \w become|strong="H2181"\w* \w full|strong="H4390"\w* \w of|strong="H1323"\w* \w wickedness|strong="H2154"\w*. +\p +\v 30 “‘\w You|strong="H3372"\w* \w shall|strong="H3068"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w Sabbaths|strong="H7676"\w*, \w and|strong="H3068"\w* \w reverence|strong="H3372"\w* \w my|strong="H8104"\w* \w sanctuary|strong="H4720"\w*; \w I|strong="H3068"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 31 “‘Don’t \w turn|strong="H6437"\w* \w to|strong="H3068"\w* those \w who|strong="H3068"\w* \w are|strong="H3068"\w* mediums, nor \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w wizards|strong="H3049"\w*. Don’t \w seek|strong="H1245"\w* \w them|strong="H3068"\w* \w out|strong="H1245"\w*, \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w defiled|strong="H2930"\w* \w by|strong="H3068"\w* \w them|strong="H3068"\w*. \w I|strong="H3068"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\p +\v 32 “‘\w You|strong="H6440"\w* \w shall|strong="H3068"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w gray|strong="H7872"\w* \w head|strong="H7872"\w* \w and|strong="H6965"\w* \w honor|strong="H1921"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* elderly; \w and|strong="H6965"\w* \w you|strong="H6440"\w* \w shall|strong="H3068"\w* \w fear|strong="H3372"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \w I|strong="H6440"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 33 “‘\w If|strong="H3588"\w* \w a|strong="H3068"\w* \w stranger|strong="H1616"\w* \w lives|strong="H1481"\w* \w as|strong="H3588"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1616"\w* \w with|strong="H1481"\w* \w you|strong="H3588"\w* \w in|strong="H1481"\w* \w your|strong="H3588"\w* land, \w you|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w do|strong="H3238"\w* \w him|strong="H3588"\w* \w wrong|strong="H3238"\w*. +\v 34 \w The|strong="H3588"\w* \w stranger|strong="H1616"\w* \w who|strong="H3068"\w* \w lives|strong="H1481"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1616"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w* \w as|strong="H1961"\w* \w the|strong="H3588"\w* native-born \w among|strong="H4480"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* love \w him|strong="H4480"\w* \w as|strong="H1961"\w* yourself; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w lived|strong="H1481"\w* \w as|strong="H1961"\w* \w foreigners|strong="H1616"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*. \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\p +\v 35 “‘\w You|strong="H6213"\w* \w shall|strong="H3808"\w* \w do|strong="H6213"\w* \w no|strong="H3808"\w* \w unrighteousness|strong="H5766"\w* \w in|strong="H6213"\w* \w judgment|strong="H4941"\w*, \w in|strong="H6213"\w* \w measures|strong="H4060"\w* \w of|strong="H4941"\w* length, \w of|strong="H4941"\w* \w weight|strong="H4948"\w*, \w or|strong="H3808"\w* \w of|strong="H4941"\w* quantity. +\v 36 \w You|strong="H3318"\w* \w shall|strong="H3068"\w* \w have|strong="H1961"\w* \w just|strong="H6664"\w* \w balances|strong="H3976"\w*, \w just|strong="H6664"\w* weights, \w a|strong="H3068"\w* \w just|strong="H6664"\w* ephah,\f + \fr 19:36 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w just|strong="H6664"\w* \w hin|strong="H1969"\w*.\f + \fr 19:36 \ft A hin is about 6.5 liters or 1.7 gallons.\f* \w I|strong="H4714"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w who|strong="H3068"\w* \w brought|strong="H3318"\w* \w you|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*. +\p +\v 37 “‘\w You|strong="H3605"\w* \w shall|strong="H3068"\w* \w observe|strong="H8104"\w* \w all|strong="H3605"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w* \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w my|strong="H8104"\w* \w ordinances|strong="H4941"\w*, \w and|strong="H3068"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w*. \w I|strong="H3068"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.’” +\c 20 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “Moreover, \w you|strong="H5414"\w* \w shall|strong="H1121"\w* tell \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, ‘Anyone \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w or|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w strangers|strong="H1616"\w* \w who|strong="H5971"\w* \w live|strong="H1481"\w* \w as|strong="H5971"\w* \w foreigners|strong="H1121"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w who|strong="H5971"\w* \w gives|strong="H5414"\w* \w any|strong="H4480"\w* \w of|strong="H1121"\w* \w his|strong="H5414"\w* \w offspring|strong="H2233"\w*\f + \fr 20:2 \ft or, seed\f* \w to|strong="H3478"\w* \w Molech|strong="H4432"\w* \w shall|strong="H1121"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H5414"\w* \w to|strong="H3478"\w* \w death|strong="H4191"\w*. \w The|strong="H5414"\w* \w people|strong="H5971"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* land \w shall|strong="H1121"\w* \w stone|strong="H7275"\w* \w that|strong="H5971"\w* person \w with|strong="H5971"\w* stones. +\v 3 \w I|strong="H3588"\w* \w also|strong="H8034"\w* \w will|strong="H5971"\w* \w set|strong="H5414"\w* \w my|strong="H5414"\w* \w face|strong="H6440"\w* \w against|strong="H6440"\w* \w that|strong="H3588"\w* \w person|strong="H6440"\w*, \w and|strong="H5971"\w* \w will|strong="H5971"\w* \w cut|strong="H3772"\w* \w him|strong="H5414"\w* \w off|strong="H3772"\w* \w from|strong="H6440"\w* \w among|strong="H7130"\w* \w his|strong="H5414"\w* \w people|strong="H5971"\w*, \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w has|strong="H3588"\w* \w given|strong="H5414"\w* \w of|strong="H6440"\w* \w his|strong="H5414"\w* \w offspring|strong="H2233"\w* \w to|strong="H5414"\w* \w Molech|strong="H4432"\w*, \w to|strong="H5414"\w* \w defile|strong="H2930"\w* \w my|strong="H5414"\w* \w sanctuary|strong="H6944"\w*, \w and|strong="H5971"\w* \w to|strong="H5414"\w* \w profane|strong="H2490"\w* \w my|strong="H5414"\w* \w holy|strong="H6944"\w* \w name|strong="H8034"\w*. +\v 4 \w If|strong="H1931"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w* \w of|strong="H5869"\w* \w the|strong="H5414"\w* land \w all|strong="H5414"\w* \w hide|strong="H5956"\w* \w their|strong="H5414"\w* \w eyes|strong="H5869"\w* \w from|strong="H4480"\w* \w that|strong="H5971"\w* \w person|strong="H5869"\w* \w when|strong="H4480"\w* \w he|strong="H1931"\w* \w gives|strong="H5414"\w* \w of|strong="H5869"\w* \w his|strong="H5414"\w* \w offspring|strong="H2233"\w* \w to|strong="H4191"\w* \w Molech|strong="H4432"\w*, \w and|strong="H5971"\w* don’t \w put|strong="H5414"\w* \w him|strong="H5414"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*, +\v 5 \w then|strong="H7760"\w* \w I|strong="H7760"\w* \w will|strong="H5971"\w* \w set|strong="H7760"\w* \w my|strong="H3605"\w* \w face|strong="H6440"\w* \w against|strong="H6440"\w* \w that|strong="H5971"\w* \w man|strong="H3605"\w* \w and|strong="H5971"\w* \w against|strong="H6440"\w* \w his|strong="H3605"\w* \w family|strong="H4940"\w*, \w and|strong="H5971"\w* \w will|strong="H5971"\w* \w cut|strong="H3772"\w* \w him|strong="H6440"\w* \w off|strong="H3772"\w*, \w and|strong="H5971"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w play|strong="H2181"\w* \w the|strong="H3605"\w* \w prostitute|strong="H2181"\w* after \w him|strong="H6440"\w* \w to|strong="H6440"\w* \w play|strong="H2181"\w* \w the|strong="H3605"\w* \w prostitute|strong="H2181"\w* \w with|strong="H6440"\w* \w Molech|strong="H4432"\w*, \w from|strong="H6440"\w* \w among|strong="H7130"\w* \w their|strong="H3605"\w* \w people|strong="H5971"\w*. +\p +\v 6 “‘\w The|strong="H6440"\w* \w person|strong="H5315"\w* \w that|strong="H5971"\w* \w turns|strong="H6437"\w* \w to|strong="H5414"\w* \w those|strong="H1931"\w* \w who|strong="H1931"\w* \w are|strong="H5971"\w* mediums \w and|strong="H5971"\w* \w wizards|strong="H3049"\w*, \w to|strong="H5414"\w* \w play|strong="H2181"\w* \w the|strong="H6440"\w* \w prostitute|strong="H2181"\w* \w after|strong="H5315"\w* \w them|strong="H5414"\w*, \w I|strong="H5414"\w* \w will|strong="H5971"\w* even \w set|strong="H5414"\w* \w my|strong="H5414"\w* \w face|strong="H6440"\w* \w against|strong="H6440"\w* \w that|strong="H5971"\w* \w person|strong="H5315"\w*, \w and|strong="H5971"\w* \w will|strong="H5971"\w* \w cut|strong="H3772"\w* \w him|strong="H5414"\w* \w off|strong="H3772"\w* \w from|strong="H6440"\w* \w among|strong="H7130"\w* \w his|strong="H5414"\w* \w people|strong="H5971"\w*. +\p +\v 7 “‘\w Sanctify|strong="H6942"\w* \w yourselves|strong="H6942"\w* \w therefore|strong="H3588"\w*, \w and|strong="H3068"\w* \w be|strong="H1961"\w* \w holy|strong="H6918"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 8 \w You|strong="H6213"\w* \w shall|strong="H3068"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w*, \w and|strong="H3068"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w*. \w I|strong="H3068"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w sanctifies|strong="H6942"\w* \w you|strong="H6213"\w*. +\p +\v 9 “‘\w For|strong="H3588"\w* everyone \w who|strong="H3588"\w* \w curses|strong="H7043"\w* \w his|strong="H3588"\w* father \w or|strong="H4191"\w* \w his|strong="H3588"\w* mother \w shall|strong="H1818"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. \w He|strong="H3588"\w* \w has|strong="H3588"\w* \w cursed|strong="H7043"\w* \w his|strong="H3588"\w* father \w or|strong="H4191"\w* \w his|strong="H3588"\w* mother. \w His|strong="H3588"\w* \w blood|strong="H1818"\w* \w shall|strong="H1818"\w* \w be|strong="H4191"\w* upon himself. +\p +\v 10 “‘\w The|strong="H4191"\w* \w man|strong="H4191"\w* who \w commits|strong="H5003"\w* \w adultery|strong="H5003"\w* \w with|strong="H4191"\w* \w another|strong="H7453"\w* \w man|strong="H4191"\w*’s wife, \w even|strong="H7453"\w* he who \w commits|strong="H5003"\w* \w adultery|strong="H5003"\w* \w with|strong="H4191"\w* \w his|strong="H4191"\w* \w neighbor|strong="H7453"\w*’s wife, \w the|strong="H4191"\w* \w adulterer|strong="H5003"\w* \w and|strong="H4191"\w* \w the|strong="H4191"\w* \w adulteress|strong="H5003"\w* \w shall|strong="H7453"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. +\p +\v 11 “‘\w The|strong="H4191"\w* \w man|strong="H4191"\w* who \w lies|strong="H7901"\w* \w with|strong="H7901"\w* \w his|strong="H1540"\w* father’s wife \w has|strong="H7901"\w* \w uncovered|strong="H1540"\w* \w his|strong="H1540"\w* father’s \w nakedness|strong="H6172"\w*. \w Both|strong="H8147"\w* \w of|strong="H1818"\w* \w them|strong="H8147"\w* \w shall|strong="H1818"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. \w Their|strong="H1540"\w* \w blood|strong="H1818"\w* \w shall|strong="H1818"\w* \w be|strong="H4191"\w* \w upon|strong="H7901"\w* themselves. +\p +\v 12 “‘If \w a|strong="H3068"\w* \w man|strong="H4191"\w* \w lies|strong="H7901"\w* \w with|strong="H6213"\w* \w his|strong="H6213"\w* \w daughter-in-law|strong="H3618"\w*, \w both|strong="H8147"\w* \w of|strong="H1818"\w* \w them|strong="H6213"\w* \w shall|strong="H1818"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. \w They|strong="H6213"\w* \w have|strong="H8147"\w* \w committed|strong="H6213"\w* \w a|strong="H3068"\w* \w perversion|strong="H8397"\w*. \w Their|strong="H6213"\w* \w blood|strong="H1818"\w* \w shall|strong="H1818"\w* \w be|strong="H4191"\w* \w upon|strong="H6213"\w* \w themselves|strong="H6213"\w*. +\p +\v 13 “‘If \w a|strong="H3068"\w* \w man|strong="H2145"\w* \w lies|strong="H7901"\w* \w with|strong="H6213"\w* \w a|strong="H3068"\w* \w male|strong="H2145"\w*, \w as|strong="H6213"\w* \w with|strong="H6213"\w* \w a|strong="H3068"\w* woman, \w both|strong="H8147"\w* \w of|strong="H1818"\w* \w them|strong="H6213"\w* \w have|strong="H8147"\w* \w committed|strong="H6213"\w* \w an|strong="H6213"\w* \w abomination|strong="H8441"\w*. \w They|strong="H6213"\w* \w shall|strong="H4904"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. \w Their|strong="H6213"\w* \w blood|strong="H1818"\w* \w shall|strong="H4904"\w* \w be|strong="H4191"\w* \w upon|strong="H6213"\w* \w themselves|strong="H6213"\w*. +\p +\v 14 “‘\w If|strong="H1961"\w* \w a|strong="H3068"\w* man \w takes|strong="H3947"\w* \w a|strong="H3068"\w* wife \w and|strong="H3947"\w* \w her|strong="H3947"\w* mother, \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w wickedness|strong="H2154"\w*. \w They|strong="H3808"\w* \w shall|strong="H3808"\w* \w be|strong="H1961"\w* \w burned|strong="H8313"\w* \w with|strong="H8313"\w* fire, both \w he|strong="H1931"\w* \w and|strong="H3947"\w* \w they|strong="H3808"\w*, \w that|strong="H1931"\w* \w there|strong="H1961"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w no|strong="H3808"\w* \w wickedness|strong="H2154"\w* \w among|strong="H8432"\w* \w you|strong="H3947"\w*. +\p +\v 15 “‘If \w a|strong="H3068"\w* \w man|strong="H4191"\w* \w lies|strong="H5414"\w* \w with|strong="H4191"\w* \w an|strong="H5414"\w* animal, \w he|strong="H5414"\w* \w shall|strong="H4191"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H5414"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*; \w and|strong="H4191"\w* \w you|strong="H5414"\w* \w shall|strong="H4191"\w* \w kill|strong="H2026"\w* \w the|strong="H5414"\w* animal. +\p +\v 16 “‘If \w a|strong="H3068"\w* woman \w approaches|strong="H7126"\w* \w any|strong="H3605"\w* animal \w and|strong="H1818"\w* lies \w with|strong="H3605"\w* \w it|strong="H7126"\w*, \w you|strong="H3605"\w* \w shall|strong="H1818"\w* \w kill|strong="H2026"\w* \w the|strong="H3605"\w* woman \w and|strong="H1818"\w* \w the|strong="H3605"\w* animal. \w They|strong="H3605"\w* \w shall|strong="H1818"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. \w Their|strong="H3605"\w* \w blood|strong="H1818"\w* \w shall|strong="H1818"\w* \w be|strong="H4191"\w* upon \w them|strong="H7126"\w*. +\p +\v 17 “‘\w If|strong="H7200"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w takes|strong="H3947"\w* \w his|strong="H5375"\w* sister—\w his|strong="H5375"\w* \w father|strong="H1121"\w*’s \w daughter|strong="H1323"\w*, \w or|strong="H1121"\w* \w his|strong="H5375"\w* mother’s \w daughter|strong="H1323"\w*—\w and|strong="H1121"\w* \w sees|strong="H7200"\w* \w her|strong="H1540"\w* \w nakedness|strong="H6172"\w*, \w and|strong="H1121"\w* \w she|strong="H1931"\w* \w sees|strong="H7200"\w* \w his|strong="H5375"\w* \w nakedness|strong="H6172"\w*, \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* shameful \w thing|strong="H2617"\w*. \w They|strong="H1931"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w in|strong="H1121"\w* \w the|strong="H7200"\w* \w sight|strong="H5869"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w their|strong="H5375"\w* \w people|strong="H5971"\w*. \w He|strong="H1931"\w* \w has|strong="H5869"\w* \w uncovered|strong="H1540"\w* \w his|strong="H5375"\w* sister’s \w nakedness|strong="H6172"\w*. \w He|strong="H1931"\w* \w shall|strong="H1121"\w* \w bear|strong="H5375"\w* \w his|strong="H5375"\w* \w iniquity|strong="H5771"\w*. +\p +\v 18 “‘\w If|strong="H1931"\w* \w a|strong="H3068"\w* man \w lies|strong="H7901"\w* \w with|strong="H7901"\w* \w a|strong="H3068"\w* \w woman|strong="H1739"\w* having \w her|strong="H1540"\w* monthly period, \w and|strong="H5971"\w* \w uncovers|strong="H1540"\w* \w her|strong="H1540"\w* \w nakedness|strong="H6172"\w*, \w he|strong="H1931"\w* \w has|strong="H7901"\w* \w made|strong="H3772"\w* \w her|strong="H1540"\w* \w fountain|strong="H4726"\w* \w naked|strong="H6168"\w*, \w and|strong="H5971"\w* \w she|strong="H1931"\w* \w has|strong="H7901"\w* \w uncovered|strong="H1540"\w* \w the|strong="H3772"\w* \w fountain|strong="H4726"\w* \w of|strong="H5971"\w* \w her|strong="H1540"\w* \w blood|strong="H1818"\w*. \w Both|strong="H8147"\w* \w of|strong="H5971"\w* \w them|strong="H8147"\w* \w shall|strong="H5971"\w* \w be|strong="H5971"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w among|strong="H7130"\w* \w their|strong="H7130"\w* \w people|strong="H5971"\w*. +\p +\v 19 “‘\w You|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w uncover|strong="H1540"\w* \w the|strong="H3588"\w* \w nakedness|strong="H6172"\w* \w of|strong="H5771"\w* \w your|strong="H5375"\w* mother’s sister, \w nor|strong="H3808"\w* \w of|strong="H5771"\w* \w your|strong="H5375"\w* father’s sister, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w made|strong="H6168"\w* \w his|strong="H5375"\w* close \w relative|strong="H7607"\w* \w naked|strong="H6168"\w*. \w They|strong="H3588"\w* \w shall|strong="H3808"\w* \w bear|strong="H5375"\w* \w their|strong="H5375"\w* \w iniquity|strong="H5771"\w*. +\v 20 If \w a|strong="H3068"\w* \w man|strong="H4191"\w* \w lies|strong="H7901"\w* \w with|strong="H7901"\w* \w his|strong="H5375"\w* \w uncle|strong="H1730"\w*’s \w wife|strong="H1733"\w*, he \w has|strong="H7901"\w* \w uncovered|strong="H1540"\w* \w his|strong="H5375"\w* \w uncle|strong="H1730"\w*’s \w nakedness|strong="H6172"\w*. \w They|strong="H1540"\w* \w shall|strong="H4191"\w* \w bear|strong="H5375"\w* \w their|strong="H5375"\w* \w sin|strong="H2399"\w*. \w They|strong="H1540"\w* \w shall|strong="H4191"\w* \w die|strong="H4191"\w* \w childless|strong="H6185"\w*. +\p +\v 21 “‘\w If|strong="H1961"\w* \w a|strong="H3068"\w* man \w takes|strong="H3947"\w* \w his|strong="H3947"\w* brother’s wife, \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w an|strong="H1961"\w* \w impurity|strong="H5079"\w*. \w He|strong="H1931"\w* \w has|strong="H1961"\w* \w uncovered|strong="H1540"\w* \w his|strong="H3947"\w* brother’s \w nakedness|strong="H6172"\w*. \w They|strong="H1931"\w* \w shall|strong="H1931"\w* \w be|strong="H1961"\w* \w childless|strong="H6185"\w*. +\p +\v 22 “‘\w You|strong="H3605"\w* \w shall|strong="H3808"\w* \w therefore|strong="H6213"\w* \w keep|strong="H8104"\w* \w all|strong="H3605"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w* \w and|strong="H4941"\w* \w all|strong="H3605"\w* \w my|strong="H8104"\w* \w ordinances|strong="H4941"\w*, \w and|strong="H4941"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w*, \w that|strong="H3605"\w* \w the|strong="H3605"\w* land \w where|strong="H8033"\w* \w I|strong="H3808"\w* am bringing \w you|strong="H3605"\w* \w to|strong="H6213"\w* \w dwell|strong="H3427"\w* \w may|strong="H6213"\w* \w not|strong="H3808"\w* \w vomit|strong="H6958"\w* \w you|strong="H3605"\w* \w out|strong="H6958"\w*. +\v 23 \w You|strong="H3588"\w* \w shall|strong="H1471"\w* \w not|strong="H3808"\w* \w walk|strong="H3212"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w customs|strong="H2708"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w nation|strong="H1471"\w* \w which|strong="H1471"\w* \w I|strong="H3588"\w* am \w casting|strong="H7971"\w* \w out|strong="H7971"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w did|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* \w things|strong="H3605"\w*, \w and|strong="H7971"\w* \w therefore|strong="H3588"\w* \w I|strong="H3588"\w* \w abhorred|strong="H6973"\w* \w them|strong="H7971"\w*. +\v 24 \w But|strong="H5971"\w* \w I|strong="H5414"\w* \w have|strong="H3068"\w* said \w to|strong="H3068"\w* \w you|strong="H5414"\w*, “\w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w inherit|strong="H3423"\w* \w their|strong="H3068"\w* land, \w and|strong="H3068"\w* \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3068"\w* \w you|strong="H5414"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w* \w it|strong="H5414"\w*, \w a|strong="H3068"\w* land \w flowing|strong="H2100"\w* \w with|strong="H2100"\w* \w milk|strong="H2461"\w* \w and|strong="H3068"\w* \w honey|strong="H1706"\w*.” \w I|strong="H5414"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w who|strong="H5971"\w* \w has|strong="H3068"\w* separated \w you|strong="H5414"\w* \w from|strong="H4480"\w* \w the|strong="H5414"\w* \w peoples|strong="H5971"\w*. +\p +\v 25 “‘\w You|strong="H3605"\w* \w shall|strong="H5315"\w* therefore \w make|strong="H2930"\w* \w a|strong="H3068"\w* distinction between \w the|strong="H3605"\w* \w clean|strong="H2889"\w* animal \w and|strong="H5315"\w* \w the|strong="H3605"\w* \w unclean|strong="H2931"\w*, \w and|strong="H5315"\w* between \w the|strong="H3605"\w* \w unclean|strong="H2931"\w* \w fowl|strong="H5775"\w* \w and|strong="H5315"\w* \w the|strong="H3605"\w* \w clean|strong="H2889"\w*. \w You|strong="H3605"\w* \w shall|strong="H5315"\w* \w not|strong="H3808"\w* \w make|strong="H2930"\w* \w yourselves|strong="H5315"\w* \w abominable|strong="H8262"\w* \w by|strong="H3808"\w* animal, \w or|strong="H3808"\w* \w by|strong="H3808"\w* \w bird|strong="H5775"\w*, \w or|strong="H3808"\w* \w by|strong="H3808"\w* \w anything|strong="H3605"\w* \w with|strong="H5315"\w* \w which|strong="H5315"\w* \w the|strong="H3605"\w* ground teems, \w which|strong="H5315"\w* \w I|strong="H5315"\w* \w have|strong="H3605"\w* separated \w from|strong="H5315"\w* \w you|strong="H3605"\w* \w as|strong="H5315"\w* \w unclean|strong="H2931"\w* \w for|strong="H5315"\w* \w you|strong="H3605"\w*. +\v 26 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w holy|strong="H6918"\w* \w to|strong="H3068"\w* \w me|strong="H4480"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w am|strong="H1961"\w* \w holy|strong="H6918"\w*, \w and|strong="H3068"\w* \w have|strong="H1961"\w* set \w you|strong="H3588"\w* apart \w from|strong="H4480"\w* \w the|strong="H3588"\w* \w peoples|strong="H5971"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w should|strong="H3068"\w* \w be|strong="H1961"\w* \w mine|strong="H4480"\w*. +\p +\v 27 “‘\w A|strong="H3068"\w* \w man|strong="H4191"\w* \w or|strong="H4191"\w* \w a|strong="H3068"\w* woman \w that|strong="H3588"\w* \w is|strong="H1961"\w* \w a|strong="H3068"\w* medium \w or|strong="H4191"\w* \w is|strong="H1961"\w* \w a|strong="H3068"\w* \w wizard|strong="H3049"\w* \w shall|strong="H1818"\w* \w surely|strong="H4191"\w* \w be|strong="H1961"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. \w They|strong="H3588"\w* \w shall|strong="H1818"\w* \w be|strong="H1961"\w* \w stoned|strong="H7275"\w* \w with|strong="H4191"\w* stones. \w Their|strong="H3588"\w* \w blood|strong="H1818"\w* \w shall|strong="H1818"\w* \w be|strong="H1961"\w* \w upon|strong="H1961"\w* themselves.’” +\c 21 +\p +\v 1 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “Speak \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w priests|strong="H3548"\w*, \w the|strong="H3068"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron, \w and|strong="H1121"\w* say \w to|strong="H3068"\w* \w them|strong="H1121"\w*, ‘\w A|strong="H3068"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w not|strong="H3808"\w* \w defile|strong="H2930"\w* \w himself|strong="H5315"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w dead|strong="H5315"\w* \w among|strong="H5971"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*, +\v 2 \w except|strong="H3588"\w* \w for|strong="H3588"\w* \w his|strong="H3588"\w* \w relatives|strong="H7607"\w* \w that|strong="H3588"\w* \w are|strong="H1121"\w* \w near|strong="H7138"\w* \w to|strong="H1121"\w* \w him|strong="H3588"\w*: \w for|strong="H3588"\w* \w his|strong="H3588"\w* mother, \w for|strong="H3588"\w* \w his|strong="H3588"\w* \w father|strong="H1121"\w*, \w for|strong="H3588"\w* \w his|strong="H3588"\w* \w son|strong="H1121"\w*, \w for|strong="H3588"\w* \w his|strong="H3588"\w* \w daughter|strong="H1323"\w*, \w for|strong="H3588"\w* \w his|strong="H3588"\w* brother, +\v 3 \w and|strong="H1961"\w* \w for|strong="H1961"\w* \w his|strong="H1961"\w* \w virgin|strong="H1330"\w* sister \w who|strong="H7138"\w* \w is|strong="H1961"\w* \w near|strong="H7138"\w* \w to|strong="H1961"\w* \w him|strong="H2930"\w*, \w who|strong="H7138"\w* \w has|strong="H1961"\w* \w had|strong="H1961"\w* \w no|strong="H3808"\w* husband; \w for|strong="H1961"\w* \w her|strong="H1961"\w* \w he|strong="H3808"\w* \w may|strong="H1961"\w* \w defile|strong="H2930"\w* \w himself|strong="H2930"\w*. +\v 4 \w He|strong="H3808"\w* \w shall|strong="H5971"\w* \w not|strong="H3808"\w* \w defile|strong="H2930"\w* \w himself|strong="H2930"\w*, \w being|strong="H5971"\w* \w a|strong="H3068"\w* chief \w man|strong="H1167"\w* \w among|strong="H5971"\w* \w his|strong="H2930"\w* \w people|strong="H5971"\w*, \w to|strong="H2490"\w* \w profane|strong="H2490"\w* \w himself|strong="H2930"\w*. +\p +\v 5 “‘\w They|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w shave|strong="H1548"\w* \w their|strong="H3808"\w* \w heads|strong="H7218"\w* \w or|strong="H3808"\w* \w shave|strong="H1548"\w* \w off|strong="H1548"\w* \w the|strong="H3808"\w* \w corners|strong="H6285"\w* \w of|strong="H7218"\w* \w their|strong="H3808"\w* \w beards|strong="H2206"\w* \w or|strong="H3808"\w* \w make|strong="H7139"\w* \w any|strong="H8295"\w* \w cuttings|strong="H8296"\w* \w in|strong="H1320"\w* \w their|strong="H3808"\w* \w flesh|strong="H1320"\w*. +\v 6 \w They|strong="H1992"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w holy|strong="H6944"\w* \w to|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w not|strong="H3808"\w* \w profane|strong="H2490"\w* \w the|strong="H3588"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*, \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w offer|strong="H7126"\w* \w the|strong="H3588"\w* \w offerings|strong="H3588"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H1961"\w* \w by|strong="H3068"\w* fire, \w the|strong="H3588"\w* \w bread|strong="H3899"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*. \w Therefore|strong="H3588"\w* \w they|strong="H1992"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w holy|strong="H6944"\w*. +\p +\v 7 “‘\w They|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w marry|strong="H3947"\w* \w a|strong="H3068"\w* \w woman|strong="H1644"\w* \w who|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w prostitute|strong="H2181"\w*, \w or|strong="H3808"\w* \w profane|strong="H2491"\w*. \w A|strong="H3068"\w* priest \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w marry|strong="H3947"\w* \w a|strong="H3068"\w* \w woman|strong="H1644"\w* \w divorced|strong="H1644"\w* \w from|strong="H3947"\w* \w her|strong="H3947"\w* husband; \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w holy|strong="H6918"\w* \w to|strong="H3808"\w* \w his|strong="H3947"\w* \w God|strong="H3808"\w*. +\v 8 \w Therefore|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w sanctify|strong="H6942"\w* \w him|strong="H1931"\w*, \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w offers|strong="H7126"\w* \w the|strong="H3588"\w* \w bread|strong="H3899"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \w He|strong="H1931"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w holy|strong="H6918"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H1931"\w* \w sanctify|strong="H6942"\w* \w you|strong="H3588"\w*, \w am|strong="H1961"\w* \w holy|strong="H6918"\w*. +\p +\v 9 “‘\w The|strong="H3588"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w any|strong="H3588"\w* \w priest|strong="H3548"\w*, \w if|strong="H3588"\w* \w she|strong="H1931"\w* \w profanes|strong="H2490"\w* \w herself|strong="H1931"\w* \w by|strong="H3588"\w* \w playing|strong="H2181"\w* \w the|strong="H3588"\w* \w prostitute|strong="H2181"\w*, \w she|strong="H1931"\w* \w profanes|strong="H2490"\w* \w her|strong="H1931"\w* father. \w She|strong="H1931"\w* \w shall|strong="H3548"\w* \w be|strong="H3548"\w* \w burned|strong="H8313"\w* \w with|strong="H8313"\w* fire. +\p +\v 10 “‘\w He|strong="H3027"\w* \w who|strong="H3548"\w* \w is|strong="H3027"\w* \w the|strong="H5921"\w* \w high|strong="H1419"\w* \w priest|strong="H3548"\w* \w among|strong="H5921"\w* \w his|strong="H5921"\w* brothers, \w upon|strong="H5921"\w* whose \w head|strong="H7218"\w* \w the|strong="H5921"\w* \w anointing|strong="H4888"\w* \w oil|strong="H8081"\w* \w is|strong="H3027"\w* \w poured|strong="H3332"\w*, \w and|strong="H1419"\w* \w who|strong="H3548"\w* \w is|strong="H3027"\w* \w consecrated|strong="H4390"\w* \w to|strong="H5921"\w* \w put|strong="H3847"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* garments, \w shall|strong="H3548"\w* \w not|strong="H3808"\w* \w let|strong="H3808"\w* \w the|strong="H5921"\w* \w hair|strong="H7218"\w* \w of|strong="H3027"\w* \w his|strong="H5921"\w* \w head|strong="H7218"\w* hang \w loose|strong="H5921"\w*, \w or|strong="H3808"\w* \w tear|strong="H6533"\w* \w his|strong="H5921"\w* \w clothes|strong="H3847"\w*. +\v 11 \w He|strong="H3605"\w* \w must|strong="H4191"\w* \w not|strong="H3808"\w* go \w in|strong="H5921"\w* \w to|strong="H4191"\w* \w any|strong="H3605"\w* \w dead|strong="H4191"\w* \w body|strong="H5315"\w*, \w or|strong="H3808"\w* \w defile|strong="H2930"\w* \w himself|strong="H5315"\w* \w for|strong="H5921"\w* \w his|strong="H3605"\w* father \w or|strong="H3808"\w* \w for|strong="H5921"\w* \w his|strong="H3605"\w* mother. +\v 12 \w He|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w sanctuary|strong="H4720"\w*, \w nor|strong="H3808"\w* \w profane|strong="H2490"\w* \w the|strong="H5921"\w* \w sanctuary|strong="H4720"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w God|strong="H3068"\w*; \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w crown|strong="H5145"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w anointing|strong="H4888"\w* \w oil|strong="H8081"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w God|strong="H3068"\w* \w is|strong="H3068"\w* \w upon|strong="H5921"\w* \w him|strong="H5921"\w*. \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 13 “‘\w He|strong="H1931"\w* \w shall|strong="H1931"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* wife \w in|strong="H3947"\w* \w her|strong="H3947"\w* \w virginity|strong="H1331"\w*. +\v 14 \w He|strong="H3588"\w* \w shall|strong="H5971"\w* \w not|strong="H3808"\w* \w marry|strong="H3947"\w* \w a|strong="H3068"\w* widow, \w or|strong="H3808"\w* \w one|strong="H3808"\w* \w divorced|strong="H1644"\w*, \w or|strong="H3808"\w* \w a|strong="H3068"\w* \w woman|strong="H1644"\w* \w who|strong="H5971"\w* \w has|strong="H3588"\w* \w been|strong="H5971"\w* defiled, \w or|strong="H3808"\w* \w a|strong="H3068"\w* \w prostitute|strong="H2181"\w*. \w He|strong="H3588"\w* \w shall|strong="H5971"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w virgin|strong="H1330"\w* \w of|strong="H5971"\w* \w his|strong="H3947"\w* \w own|strong="H5971"\w* \w people|strong="H5971"\w* \w as|strong="H3588"\w* \w a|strong="H3068"\w* wife. +\v 15 \w He|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w profane|strong="H2490"\w* \w his|strong="H3068"\w* \w offspring|strong="H2233"\w* \w among|strong="H5971"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H5971"\w* \w sanctifies|strong="H6942"\w* \w him|strong="H3588"\w*.’” +\p +\v 16 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 17 “\w Say|strong="H1696"\w* \w to|strong="H1696"\w* Aaron, ‘\w None|strong="H3808"\w* \w of|strong="H2233"\w* \w your|strong="H1961"\w* \w offspring|strong="H2233"\w* \w throughout|strong="H1755"\w* \w their|strong="H7126"\w* \w generations|strong="H1755"\w* \w who|strong="H3808"\w* \w has|strong="H1961"\w* \w a|strong="H3068"\w* \w defect|strong="H3971"\w* \w may|strong="H1961"\w* \w approach|strong="H7126"\w* \w to|strong="H1696"\w* \w offer|strong="H7126"\w* \w the|strong="H7126"\w* \w bread|strong="H3899"\w* \w of|strong="H2233"\w* \w his|strong="H7126"\w* \w God|strong="H3808"\w*. +\v 18 \w For|strong="H3588"\w* \w whatever|strong="H3605"\w* \w man|strong="H3605"\w* \w he|strong="H3588"\w* \w is|strong="H3605"\w* \w that|strong="H3588"\w* \w has|strong="H3588"\w* \w a|strong="H3068"\w* \w defect|strong="H3971"\w*, \w he|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w draw|strong="H7126"\w* \w near|strong="H7126"\w*: \w a|strong="H3068"\w* \w blind|strong="H5787"\w* \w man|strong="H3605"\w*, \w or|strong="H3808"\w* \w a|strong="H3068"\w* \w lame|strong="H6455"\w*, \w or|strong="H3808"\w* \w he|strong="H3588"\w* \w who|strong="H3605"\w* \w has|strong="H3588"\w* \w a|strong="H3068"\w* flat \w nose|strong="H2763"\w*, \w or|strong="H3808"\w* \w any|strong="H3605"\w* deformity, +\v 19 \w or|strong="H3027"\w* \w a|strong="H3068"\w* man who \w has|strong="H1961"\w* \w an|strong="H1961"\w* injured \w foot|strong="H7272"\w*, \w or|strong="H3027"\w* \w an|strong="H1961"\w* injured \w hand|strong="H3027"\w*, +\v 20 or hunchbacked, or \w a|strong="H3068"\w* \w dwarf|strong="H1851"\w*, or one who \w has|strong="H5869"\w* \w a|strong="H3068"\w* \w defect|strong="H8400"\w* \w in|strong="H5869"\w* \w his|strong="H5869"\w* \w eye|strong="H5869"\w*, or an itching disease, or \w scabs|strong="H3217"\w*, or who \w has|strong="H5869"\w* damaged testicles. +\v 21 \w No|strong="H3808"\w* \w man|strong="H3605"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w offspring|strong="H2233"\w* \w of|strong="H3068"\w* Aaron \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w who|strong="H3605"\w* \w has|strong="H3068"\w* \w a|strong="H3068"\w* \w defect|strong="H3971"\w* \w shall|strong="H3548"\w* \w come|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H3068"\w* \w offer|strong="H7126"\w* \w the|strong="H3605"\w* \w offerings|strong="H3068"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H3068"\w* \w by|strong="H3068"\w* fire. Since \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w a|strong="H3068"\w* \w defect|strong="H3971"\w*, \w he|strong="H3068"\w* \w shall|strong="H3548"\w* \w not|strong="H3808"\w* \w come|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H3068"\w* \w offer|strong="H7126"\w* \w the|strong="H3605"\w* \w bread|strong="H3899"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w God|strong="H3068"\w*. +\v 22 \w He|strong="H4480"\w* shall \w eat|strong="H3899"\w* \w the|strong="H4480"\w* \w bread|strong="H3899"\w* \w of|strong="H4480"\w* \w his|strong="H4480"\w* God, \w both|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w*, \w and|strong="H3899"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w holy|strong="H6944"\w*. +\v 23 \w He|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w come|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w veil|strong="H6532"\w*, \w nor|strong="H3808"\w* \w come|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w altar|strong="H4196"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w a|strong="H3068"\w* \w defect|strong="H3971"\w*; \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w may|strong="H3068"\w* \w not|strong="H3808"\w* \w profane|strong="H2490"\w* \w my|strong="H3068"\w* \w sanctuaries|strong="H4720"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w sanctifies|strong="H6942"\w* \w them|strong="H6942"\w*.’” +\p +\v 24 \w So|strong="H1696"\w* \w Moses|strong="H4872"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* Aaron, \w and|strong="H1121"\w* \w to|strong="H1696"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\c 22 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Tell|strong="H1696"\w* Aaron \w and|strong="H1121"\w* \w his|strong="H3068"\w* \w sons|strong="H1121"\w* \w to|strong="H1696"\w* \w separate|strong="H5144"\w* \w themselves|strong="H1992"\w* \w from|strong="H3478"\w* \w the|strong="H3068"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w which|strong="H3068"\w* \w they|strong="H1992"\w* \w make|strong="H8034"\w* \w holy|strong="H6944"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w*, \w and|strong="H1121"\w* \w that|strong="H3068"\w* \w they|strong="H1992"\w* \w not|strong="H3808"\w* \w profane|strong="H2490"\w* \w my|strong="H3068"\w* \w holy|strong="H6944"\w* \w name|strong="H8034"\w*. \w I|strong="H3808"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 3 “\w Tell|strong="H3605"\w* \w them|strong="H5921"\w*, ‘\w If|strong="H1931"\w* \w anyone|strong="H3605"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w offspring|strong="H2233"\w* \w throughout|strong="H3605"\w* \w your|strong="H3068"\w* \w generations|strong="H1755"\w* \w approaches|strong="H7126"\w* \w the|strong="H3605"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w* \w which|strong="H1931"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w make|strong="H3772"\w* \w holy|strong="H6944"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w having|strong="H5315"\w* \w his|strong="H3605"\w* \w uncleanness|strong="H2932"\w* \w on|strong="H5921"\w* \w him|strong="H6440"\w*, \w that|strong="H3605"\w* \w soul|strong="H5315"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*. \w I|strong="H5921"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 4 “‘\w Whoever|strong="H3605"\w* \w of|strong="H2233"\w* \w the|strong="H3605"\w* \w offspring|strong="H2233"\w* \w of|strong="H2233"\w* Aaron \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w leper|strong="H6879"\w* \w or|strong="H3808"\w* \w has|strong="H3318"\w* \w a|strong="H3068"\w* \w discharge|strong="H2100"\w* \w shall|strong="H5315"\w* \w not|strong="H3808"\w* eat \w of|strong="H2233"\w* \w the|strong="H3605"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w* \w until|strong="H5704"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w clean|strong="H2891"\w*. \w Whoever|strong="H3605"\w* \w touches|strong="H5060"\w* \w anything|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H1931"\w* \w unclean|strong="H2931"\w* \w by|strong="H3318"\w* \w the|strong="H3605"\w* \w dead|strong="H5315"\w*, \w or|strong="H3808"\w* \w a|strong="H3068"\w* \w man|strong="H5315"\w* \w who|strong="H3605"\w* \w has|strong="H3318"\w* \w a|strong="H3068"\w* \w seminal|strong="H2233"\w* \w emission|strong="H7902"\w*, +\v 5 or \w whoever|strong="H3605"\w* \w touches|strong="H5060"\w* \w any|strong="H3605"\w* \w creeping|strong="H8318"\w* \w thing|strong="H8318"\w* \w by|strong="H3605"\w* \w which|strong="H8318"\w* \w he|strong="H3605"\w* may \w be|strong="H3605"\w* \w made|strong="H2930"\w* \w unclean|strong="H2930"\w*, or \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w from|strong="H3605"\w* whom \w he|strong="H3605"\w* may \w become|strong="H2930"\w* \w unclean|strong="H2930"\w*, \w whatever|strong="H3605"\w* \w uncleanness|strong="H2932"\w* \w he|strong="H3605"\w* \w has|strong="H3605"\w*— +\v 6 \w the|strong="H3588"\w* \w person|strong="H5315"\w* \w that|strong="H3588"\w* \w touches|strong="H5060"\w* \w any|strong="H4480"\w* \w such|strong="H3808"\w* \w shall|strong="H5315"\w* \w be|strong="H3808"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H3588"\w* \w evening|strong="H6153"\w*, \w and|strong="H4325"\w* \w shall|strong="H5315"\w* \w not|strong="H3808"\w* eat \w of|strong="H4325"\w* \w the|strong="H3588"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w* \w unless|strong="H3588"\w* \w he|strong="H3588"\w* bathes \w his|strong="H7364"\w* \w body|strong="H1320"\w* \w in|strong="H7364"\w* \w water|strong="H4325"\w*. +\v 7 \w When|strong="H3588"\w* \w the|strong="H3588"\w* \w sun|strong="H8121"\w* \w is|strong="H1931"\w* \w down|strong="H3588"\w*, \w he|strong="H1931"\w* \w shall|strong="H1931"\w* \w be|strong="H8121"\w* \w clean|strong="H2891"\w*; \w and|strong="H3899"\w* afterward \w he|strong="H1931"\w* \w shall|strong="H1931"\w* \w eat|strong="H3899"\w* \w of|strong="H4480"\w* \w the|strong="H3588"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w*, \w because|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w his|strong="H3588"\w* \w bread|strong="H3899"\w*. +\v 8 \w He|strong="H3068"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* eat \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w dies|strong="H5038"\w* \w of|strong="H3068"\w* \w itself|strong="H5038"\w* \w or|strong="H3808"\w* \w is|strong="H3068"\w* \w torn|strong="H2966"\w* \w by|strong="H3068"\w* animals, \w defiling|strong="H2930"\w* \w himself|strong="H2930"\w* \w by|strong="H3068"\w* \w it|strong="H5038"\w*. \w I|strong="H3808"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 9 “‘\w They|strong="H3588"\w* \w shall|strong="H3068"\w* \w therefore|strong="H5921"\w* \w follow|strong="H3068"\w* \w my|strong="H8104"\w* commandment, lest \w they|strong="H3588"\w* \w bear|strong="H5375"\w* \w sin|strong="H2399"\w* \w for|strong="H3588"\w* \w it|strong="H5921"\w* \w and|strong="H3068"\w* \w die|strong="H4191"\w* \w in|strong="H5921"\w* \w it|strong="H5921"\w*, \w if|strong="H3588"\w* \w they|strong="H3588"\w* \w profane|strong="H2490"\w* \w it|strong="H5921"\w*. \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w sanctifies|strong="H6942"\w* \w them|strong="H5921"\w*. +\p +\v 10 “‘\w No|strong="H3808"\w* \w stranger|strong="H2114"\w* \w shall|strong="H3548"\w* eat \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w holy|strong="H6944"\w* \w thing|strong="H6944"\w*: \w a|strong="H3068"\w* \w foreigner|strong="H2114"\w* \w living|strong="H3605"\w* \w with|strong="H3548"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w*, \w or|strong="H3808"\w* \w a|strong="H3068"\w* \w hired|strong="H7916"\w* \w servant|strong="H7916"\w*, \w shall|strong="H3548"\w* \w not|strong="H3808"\w* eat \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w holy|strong="H6944"\w* \w thing|strong="H6944"\w*. +\v 11 \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w a|strong="H3068"\w* \w priest|strong="H3548"\w* \w buys|strong="H7069"\w* \w a|strong="H3068"\w* \w slave|strong="H5315"\w*, \w purchased|strong="H7069"\w* \w by|strong="H3701"\w* \w his|strong="H3588"\w* \w money|strong="H3701"\w*, \w he|strong="H1931"\w* \w shall|strong="H3548"\w* \w eat|strong="H3899"\w* \w of|strong="H1004"\w* \w it|strong="H1931"\w*; \w and|strong="H3701"\w* \w those|strong="H1992"\w* \w who|strong="H1931"\w* \w are|strong="H1992"\w* \w born|strong="H3211"\w* \w in|strong="H1004"\w* \w his|strong="H3588"\w* \w house|strong="H1004"\w* \w shall|strong="H3548"\w* \w eat|strong="H3899"\w* \w of|strong="H1004"\w* \w his|strong="H3588"\w* \w bread|strong="H3899"\w*. +\v 12 \w If|strong="H3588"\w* \w a|strong="H3068"\w* \w priest|strong="H3548"\w*’s \w daughter|strong="H1323"\w* \w is|strong="H1931"\w* married \w to|strong="H1961"\w* \w an|strong="H1961"\w* \w outsider|strong="H2114"\w*, \w she|strong="H1931"\w* \w shall|strong="H3548"\w* \w not|strong="H3808"\w* eat \w of|strong="H1323"\w* \w the|strong="H3588"\w* \w heave|strong="H8641"\w* \w offering|strong="H8641"\w* \w of|strong="H1323"\w* \w the|strong="H3588"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w*. +\v 13 \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w a|strong="H3068"\w* \w priest|strong="H3548"\w*’s \w daughter|strong="H1323"\w* \w is|strong="H3605"\w* \w a|strong="H3068"\w* widow, \w or|strong="H3808"\w* \w divorced|strong="H1644"\w*, \w and|strong="H7725"\w* \w has|strong="H1961"\w* \w no|strong="H3808"\w* \w child|strong="H2233"\w*, \w and|strong="H7725"\w* \w has|strong="H1961"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w her|strong="H3605"\w* father’s \w house|strong="H1004"\w* \w as|strong="H1961"\w* \w in|strong="H1004"\w* \w her|strong="H3605"\w* \w youth|strong="H5271"\w*, \w she|strong="H3588"\w* \w may|strong="H1961"\w* \w eat|strong="H3899"\w* \w of|strong="H1004"\w* \w her|strong="H3605"\w* father’s \w bread|strong="H3899"\w*; \w but|strong="H3588"\w* \w no|strong="H3808"\w* \w stranger|strong="H2114"\w* \w shall|strong="H3548"\w* \w eat|strong="H3899"\w* \w any|strong="H3605"\w* \w of|strong="H1004"\w* \w it|strong="H3588"\w*. +\p +\v 14 “‘\w If|strong="H3588"\w* \w a|strong="H3068"\w* man eats something \w holy|strong="H6944"\w* \w unwittingly|strong="H7684"\w*, \w then|strong="H3254"\w* \w he|strong="H3588"\w* \w shall|strong="H3548"\w* \w add|strong="H3254"\w* \w the|strong="H5921"\w* \w fifth|strong="H2549"\w* \w part|strong="H2549"\w* \w of|strong="H5921"\w* \w its|strong="H5414"\w* value \w to|strong="H5921"\w* \w it|strong="H5414"\w*, \w and|strong="H3548"\w* \w shall|strong="H3548"\w* \w give|strong="H5414"\w* \w the|strong="H5921"\w* \w holy|strong="H6944"\w* \w thing|strong="H6944"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w*. +\v 15 \w The|strong="H3068"\w* \w priests|strong="H3808"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w profane|strong="H2490"\w* \w the|strong="H3068"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w which|strong="H3068"\w* \w they|strong="H3068"\w* \w offer|strong="H7311"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, +\v 16 \w and|strong="H3068"\w* \w so|strong="H5375"\w* cause \w them|strong="H5375"\w* \w to|strong="H3068"\w* \w bear|strong="H5375"\w* \w the|strong="H3588"\w* \w iniquity|strong="H5771"\w* \w that|strong="H3588"\w* brings \w guilt|strong="H5771"\w* \w when|strong="H3588"\w* \w they|strong="H3588"\w* eat \w their|strong="H3068"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w sanctifies|strong="H6942"\w* \w them|strong="H5375"\w*.’” +\p +\v 17 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 18 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* Aaron, \w and|strong="H1121"\w* \w to|strong="H1696"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w say|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H7126"\w*, ‘\w Whoever|strong="H3605"\w* \w is|strong="H3068"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w or|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w foreigners|strong="H1121"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w who|strong="H3605"\w* \w offers|strong="H7126"\w* \w his|strong="H3605"\w* \w offering|strong="H5930"\w*, \w whether|strong="H4480"\w* \w it|strong="H7126"\w* \w is|strong="H3068"\w* \w any|strong="H3605"\w* \w of|strong="H1121"\w* \w their|strong="H3605"\w* \w vows|strong="H5088"\w* \w or|strong="H1121"\w* \w any|strong="H3605"\w* \w of|strong="H1121"\w* \w their|strong="H3605"\w* free \w will|strong="H3068"\w* \w offerings|strong="H5930"\w*, \w which|strong="H3068"\w* \w they|strong="H3068"\w* \w offer|strong="H7126"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*: +\v 19 \w that|strong="H1241"\w* \w you|strong="H8549"\w* may \w be|strong="H1241"\w* \w accepted|strong="H7522"\w*, \w you|strong="H8549"\w* \w shall|strong="H2145"\w* offer \w a|strong="H3068"\w* \w male|strong="H2145"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*, \w of|strong="H7522"\w* \w the|strong="H1241"\w* \w bulls|strong="H1241"\w*, \w of|strong="H7522"\w* \w the|strong="H1241"\w* \w sheep|strong="H3775"\w*, \w or|strong="H1241"\w* \w of|strong="H7522"\w* \w the|strong="H1241"\w* \w goats|strong="H5795"\w*. +\v 20 \w But|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w offer|strong="H7126"\w* \w whatever|strong="H3605"\w* \w has|strong="H1961"\w* \w a|strong="H3068"\w* \w defect|strong="H3971"\w*, \w for|strong="H3588"\w* \w it|strong="H7126"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w acceptable|strong="H7522"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*. +\v 21 \w Whoever|strong="H3605"\w* \w offers|strong="H7126"\w* \w a|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3068"\w* \w accomplish|strong="H6381"\w* \w a|strong="H3068"\w* \w vow|strong="H5088"\w*, \w or|strong="H3808"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* free \w will|strong="H3068"\w* \w offering|strong="H5071"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w herd|strong="H1241"\w* \w or|strong="H3808"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w flock|strong="H6629"\w*, \w it|strong="H7126"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w perfect|strong="H8549"\w* \w to|strong="H3068"\w* \w be|strong="H1961"\w* \w accepted|strong="H7522"\w*. \w It|strong="H7126"\w* \w shall|strong="H3068"\w* \w have|strong="H1961"\w* \w no|strong="H3808"\w* \w defect|strong="H8549"\w*. +\v 22 \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w offer|strong="H7126"\w* \w what|strong="H5921"\w* \w is|strong="H3068"\w* \w blind|strong="H5788"\w*, \w is|strong="H3068"\w* \w injured|strong="H7665"\w*, \w is|strong="H3068"\w* \w maimed|strong="H2782"\w*, \w has|strong="H3068"\w* \w a|strong="H3068"\w* wart, \w is|strong="H3068"\w* festering, \w or|strong="H3808"\w* \w has|strong="H3068"\w* \w a|strong="H3068"\w* \w running|strong="H2990"\w* \w sore|strong="H2990"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w nor|strong="H3808"\w* \w make|strong="H5414"\w* \w an|strong="H7126"\w* \w offering|strong="H7126"\w* \w by|strong="H5921"\w* fire \w of|strong="H3068"\w* \w them|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 23 \w Either|strong="H3808"\w* \w a|strong="H3068"\w* \w bull|strong="H7794"\w* \w or|strong="H3808"\w* \w a|strong="H3068"\w* \w lamb|strong="H7716"\w* \w that|strong="H6213"\w* \w has|strong="H6213"\w* \w any|strong="H6213"\w* deformity \w or|strong="H3808"\w* lacking \w in|strong="H6213"\w* \w his|strong="H6213"\w* \w parts|strong="H7038"\w*, \w that|strong="H6213"\w* \w you|strong="H6213"\w* \w may|strong="H6213"\w* \w offer|strong="H6213"\w* \w for|strong="H6213"\w* \w a|strong="H3068"\w* free \w will|strong="H3808"\w* \w offering|strong="H5071"\w*; \w but|strong="H3808"\w* \w for|strong="H6213"\w* \w a|strong="H3068"\w* \w vow|strong="H5088"\w* \w it|strong="H6213"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w accepted|strong="H7521"\w*. +\v 24 \w You|strong="H6213"\w* \w must|strong="H3808"\w* \w not|strong="H3808"\w* \w offer|strong="H7126"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w has|strong="H3068"\w* \w its|strong="H6213"\w* testicles \w bruised|strong="H4600"\w*, \w crushed|strong="H3807"\w*, \w broken|strong="H5423"\w*, \w or|strong="H3808"\w* \w cut|strong="H3772"\w*. \w You|strong="H6213"\w* \w must|strong="H3808"\w* \w not|strong="H3808"\w* \w do|strong="H6213"\w* \w this|strong="H6213"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* land. +\v 25 \w You|strong="H3588"\w* \w must|strong="H1121"\w* \w not|strong="H3808"\w* \w offer|strong="H7126"\w* \w any|strong="H3605"\w* \w of|strong="H1121"\w* \w these|strong="H3605"\w* \w as|strong="H3588"\w* \w the|strong="H3605"\w* \w bread|strong="H3899"\w* \w of|strong="H1121"\w* \w your|strong="H3605"\w* \w God|strong="H3808"\w* \w from|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1121"\w*, \w because|strong="H3588"\w* \w their|strong="H3605"\w* \w corruption|strong="H4893"\w* \w is|strong="H3027"\w* \w in|strong="H1121"\w* \w them|strong="H3027"\w*. \w There|strong="H3605"\w* \w is|strong="H3027"\w* \w a|strong="H3068"\w* \w defect|strong="H3971"\w* \w in|strong="H1121"\w* \w them|strong="H3027"\w*. \w They|strong="H3588"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w accepted|strong="H7521"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*.’” +\p +\v 26 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 27 “\w When|strong="H3588"\w* \w a|strong="H3068"\w* \w bull|strong="H7794"\w*, \w a|strong="H3068"\w* \w sheep|strong="H3775"\w*, \w or|strong="H3117"\w* \w a|strong="H3068"\w* \w goat|strong="H5795"\w* \w is|strong="H3068"\w* \w born|strong="H3205"\w*, \w it|strong="H3588"\w* \w shall|strong="H3068"\w* \w remain|strong="H1961"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w* \w with|strong="H3068"\w* \w its|strong="H8478"\w* mother. \w From|strong="H3117"\w* \w the|strong="H3588"\w* \w eighth|strong="H8066"\w* \w day|strong="H3117"\w* \w on|strong="H3117"\w* \w it|strong="H3588"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w accepted|strong="H7521"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w offering|strong="H7133"\w* \w of|strong="H3068"\w* \w an|strong="H1961"\w* \w offering|strong="H7133"\w* \w made|strong="H1961"\w* \w by|strong="H3117"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 28 Whether \w it|strong="H7819"\w* \w is|strong="H3117"\w* \w a|strong="H3068"\w* \w cow|strong="H7794"\w* \w or|strong="H3808"\w* \w ewe|strong="H7716"\w*, \w you|strong="H3117"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w kill|strong="H7819"\w* \w it|strong="H7819"\w* \w and|strong="H1121"\w* \w its|strong="H3808"\w* \w young|strong="H1121"\w* both \w in|strong="H3117"\w* \w one|strong="H3808"\w* \w day|strong="H3117"\w*. +\p +\v 29 “\w When|strong="H3588"\w* \w you|strong="H3588"\w* \w sacrifice|strong="H2077"\w* \w a|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H3068"\w* \w thanksgiving|strong="H8426"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w it|strong="H3588"\w* \w so|strong="H3588"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w accepted|strong="H7522"\w*. +\v 30 \w It|strong="H1931"\w* \w shall|strong="H3068"\w* \w be|strong="H3808"\w* eaten \w on|strong="H3117"\w* \w the|strong="H3068"\w* \w same|strong="H1931"\w* \w day|strong="H3117"\w*; \w you|strong="H3117"\w* \w shall|strong="H3068"\w* \w leave|strong="H3498"\w* \w none|strong="H3808"\w* \w of|strong="H3068"\w* \w it|strong="H1931"\w* \w until|strong="H5704"\w* \w the|strong="H3068"\w* \w morning|strong="H1242"\w*. \w I|strong="H3117"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 31 “\w Therefore|strong="H3068"\w* \w you|strong="H6213"\w* \w shall|strong="H3068"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w commandments|strong="H4687"\w*, \w and|strong="H3068"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w*. \w I|strong="H3068"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 32 \w You|strong="H3808"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w profane|strong="H2490"\w* \w my|strong="H3068"\w* \w holy|strong="H6944"\w* \w name|strong="H8034"\w*, \w but|strong="H3808"\w* \w I|strong="H3808"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w made|strong="H6942"\w* \w holy|strong="H6944"\w* \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w I|strong="H3808"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w makes|strong="H3068"\w* \w you|strong="H3808"\w* \w holy|strong="H6944"\w*, +\v 33 \w who|strong="H3068"\w* \w brought|strong="H3318"\w* \w you|strong="H4714"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w to|strong="H3318"\w* \w be|strong="H1961"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \w I|strong="H4714"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w*.” +\c 23 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w tell|strong="H1696"\w* \w them|strong="H1992"\w*, ‘\w The|strong="H3068"\w* \w set|strong="H3478"\w* \w feasts|strong="H4150"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*, \w which|strong="H3068"\w* \w you|strong="H1696"\w* \w shall|strong="H3068"\w* \w proclaim|strong="H7121"\w* \w to|strong="H1696"\w* \w be|strong="H3068"\w* \w holy|strong="H6944"\w* \w convocations|strong="H4744"\w*, \w even|strong="H3068"\w* \w these|strong="H1992"\w* \w are|strong="H1992"\w* \w my|strong="H3068"\w* \w set|strong="H3478"\w* \w feasts|strong="H4150"\w*. +\p +\v 3 “‘\w Six|strong="H8337"\w* \w days|strong="H3117"\w* \w shall|strong="H3068"\w* \w work|strong="H4399"\w* \w be|strong="H3808"\w* \w done|strong="H6213"\w*, \w but|strong="H3808"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w Sabbath|strong="H7676"\w* \w of|strong="H3068"\w* \w solemn|strong="H7677"\w* \w rest|strong="H7677"\w*, \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w convocation|strong="H4744"\w*; \w you|strong="H3605"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w no|strong="H3808"\w* kind \w of|strong="H3068"\w* \w work|strong="H4399"\w*. \w It|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w Sabbath|strong="H7676"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w dwellings|strong="H4186"\w*. +\p +\v 4 “‘\w These|strong="H7121"\w* \w are|strong="H3068"\w* \w the|strong="H3068"\w* \w set|strong="H6944"\w* \w feasts|strong="H4150"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w even|strong="H3068"\w* \w holy|strong="H6944"\w* \w convocations|strong="H4744"\w*, \w which|strong="H3068"\w* \w you|strong="H7121"\w* \w shall|strong="H3068"\w* \w proclaim|strong="H7121"\w* \w in|strong="H3068"\w* \w their|strong="H3068"\w* \w appointed|strong="H4150"\w* \w season|strong="H4150"\w*. +\v 5 \w In|strong="H3068"\w* \w the|strong="H3068"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*, \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w fourteenth|strong="H6240"\w* \w day|strong="H2320"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w month|strong="H2320"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w evening|strong="H6153"\w*, \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w Passover|strong="H6453"\w*. +\v 6 \w On|strong="H3117"\w* \w the|strong="H3068"\w* \w fifteenth|strong="H2568"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w same|strong="H2088"\w* \w month|strong="H2320"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w feast|strong="H2282"\w* \w of|strong="H3068"\w* \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w Seven|strong="H7651"\w* \w days|strong="H3117"\w* \w you|strong="H3117"\w* \w shall|strong="H3068"\w* eat \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w*. +\v 7 \w In|strong="H6213"\w* \w the|strong="H3605"\w* \w first|strong="H7223"\w* \w day|strong="H3117"\w* \w you|strong="H3605"\w* \w shall|strong="H3117"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w convocation|strong="H4744"\w*. \w You|strong="H3605"\w* \w shall|strong="H3117"\w* \w do|strong="H6213"\w* \w no|strong="H3808"\w* \w regular|strong="H5656"\w* \w work|strong="H4399"\w*. +\v 8 \w But|strong="H3808"\w* \w you|strong="H3605"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w an|strong="H6213"\w* \w offering|strong="H7126"\w* \w made|strong="H6213"\w* \w by|strong="H3117"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. \w In|strong="H3068"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w convocation|strong="H4744"\w*. \w You|strong="H3605"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w no|strong="H3808"\w* \w regular|strong="H5656"\w* \w work|strong="H4399"\w*.’” +\p +\v 9 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 10 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w tell|strong="H1696"\w* \w them|strong="H5414"\w*, ‘\w When|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1121"\w* \w come|strong="H3478"\w* \w into|strong="H5414"\w* \w the|strong="H3588"\w* land \w which|strong="H3478"\w* \w I|strong="H3588"\w* \w give|strong="H5414"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*, \w and|strong="H1121"\w* \w shall|strong="H3548"\w* \w reap|strong="H7114"\w* \w its|strong="H5414"\w* \w harvest|strong="H7105"\w*, \w then|strong="H1696"\w* \w you|strong="H3588"\w* \w shall|strong="H3548"\w* \w bring|strong="H5414"\w* \w the|strong="H3588"\w* \w sheaf|strong="H6016"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w first|strong="H1121"\w* \w fruits|strong="H7225"\w* \w of|strong="H1121"\w* \w your|strong="H5414"\w* \w harvest|strong="H7105"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w priest|strong="H3548"\w*. +\v 11 \w He|strong="H3068"\w* \w shall|strong="H3548"\w* \w wave|strong="H5130"\w* \w the|strong="H6440"\w* \w sheaf|strong="H6016"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w accepted|strong="H7522"\w* \w for|strong="H6440"\w* \w you|strong="H6440"\w*. \w On|strong="H3068"\w* \w the|strong="H6440"\w* \w next|strong="H4283"\w* \w day|strong="H4283"\w* \w after|strong="H4283"\w* \w the|strong="H6440"\w* \w Sabbath|strong="H7676"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w wave|strong="H5130"\w* \w it|strong="H6440"\w*. +\v 12 \w On|strong="H3117"\w* \w the|strong="H6213"\w* \w day|strong="H3117"\w* \w when|strong="H3117"\w* \w you|strong="H3117"\w* \w wave|strong="H5130"\w* \w the|strong="H6213"\w* \w sheaf|strong="H6016"\w*, \w you|strong="H3117"\w* \w shall|strong="H3068"\w* \w offer|strong="H6213"\w* \w a|strong="H3068"\w* \w male|strong="H3532"\w* \w lamb|strong="H3532"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w* \w for|strong="H6213"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 13 \w The|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w with|strong="H1101"\w* \w it|strong="H3068"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w two|strong="H8147"\w* tenths \w of|strong="H3068"\w* \w an|strong="H3068"\w* ephah\f + \fr 23:13 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w of|strong="H3068"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w*, \w an|strong="H3068"\w* \w offering|strong="H4503"\w* \w made|strong="H3068"\w* \w by|strong="H3068"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w*; \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w drink|strong="H5262"\w* \w offering|strong="H4503"\w* \w with|strong="H1101"\w* \w it|strong="H3068"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w of|strong="H3068"\w* \w wine|strong="H3196"\w*, \w the|strong="H3068"\w* \w fourth|strong="H7243"\w* \w part|strong="H7243"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w hin|strong="H1969"\w*.\f + \fr 23:13 \ft A hin is about 6.5 liters or 1.7 gallons.\f* +\v 14 \w You|strong="H3605"\w* \w must|strong="H3808"\w* \w not|strong="H3808"\w* \w eat|strong="H3899"\w* \w bread|strong="H3899"\w*, \w or|strong="H3808"\w* \w roasted|strong="H7039"\w* \w grain|strong="H3605"\w*, \w or|strong="H3808"\w* \w fresh|strong="H3759"\w* \w grain|strong="H3605"\w*, \w until|strong="H5704"\w* \w this|strong="H2088"\w* \w same|strong="H6106"\w* \w day|strong="H3117"\w*, \w until|strong="H5704"\w* \w you|strong="H3605"\w* \w have|strong="H3117"\w* brought \w the|strong="H3605"\w* \w offering|strong="H7133"\w* \w of|strong="H3117"\w* \w your|strong="H3605"\w* \w God|strong="H3808"\w*. \w This|strong="H2088"\w* \w is|strong="H2088"\w* \w a|strong="H3068"\w* \w statute|strong="H2708"\w* \w forever|strong="H5769"\w* \w throughout|strong="H3605"\w* \w your|strong="H3605"\w* \w generations|strong="H1755"\w* \w in|strong="H3117"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w dwellings|strong="H4186"\w*. +\p +\v 15 “‘\w You|strong="H3117"\w* \w shall|strong="H3117"\w* \w count|strong="H5608"\w* \w from|strong="H3117"\w* \w the|strong="H3117"\w* \w next|strong="H4283"\w* \w day|strong="H3117"\w* \w after|strong="H4283"\w* \w the|strong="H3117"\w* \w Sabbath|strong="H7676"\w*, \w from|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w you|strong="H3117"\w* \w brought|strong="H1961"\w* \w the|strong="H3117"\w* \w sheaf|strong="H6016"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w wave|strong="H8573"\w* \w offering|strong="H8573"\w*: \w seven|strong="H7651"\w* \w Sabbaths|strong="H7676"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* completed. +\v 16 \w The|strong="H3068"\w* \w next|strong="H4283"\w* \w day|strong="H3117"\w* \w after|strong="H4283"\w* \w the|strong="H3068"\w* \w seventh|strong="H7637"\w* \w Sabbath|strong="H7676"\w* \w you|strong="H3117"\w* \w shall|strong="H3068"\w* \w count|strong="H5608"\w* \w fifty|strong="H2572"\w* \w days|strong="H3117"\w*; \w and|strong="H3068"\w* \w you|strong="H3117"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w*. +\v 17 \w You|strong="H1961"\w* \w shall|strong="H3068"\w* \w bring|strong="H1961"\w* \w out|strong="H8147"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w habitations|strong="H4186"\w* \w two|strong="H8147"\w* \w loaves|strong="H3899"\w* \w of|strong="H3068"\w* \w bread|strong="H3899"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w wave|strong="H8573"\w* \w offering|strong="H8573"\w* \w made|strong="H1961"\w* \w of|strong="H3068"\w* \w two|strong="H8147"\w* tenths \w of|strong="H3068"\w* \w an|strong="H1961"\w* ephah\f + \fr 23:17 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w of|strong="H3068"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w*. \w They|strong="H3068"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* baked \w with|strong="H3068"\w* yeast, \w for|strong="H3068"\w* \w first|strong="H1061"\w* \w fruits|strong="H1061"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 18 \w You|strong="H5921"\w* \w shall|strong="H3068"\w* \w present|strong="H7126"\w* \w with|strong="H3068"\w* \w the|strong="H5921"\w* \w bread|strong="H3899"\w* \w seven|strong="H7651"\w* \w lambs|strong="H3532"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*, \w one|strong="H3532"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w*, \w and|strong="H1121"\w* \w two|strong="H8147"\w* rams. \w They|strong="H3068"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w with|strong="H3068"\w* \w their|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w and|strong="H1121"\w* \w their|strong="H3068"\w* \w drink|strong="H5262"\w* \w offerings|strong="H5930"\w*, \w even|strong="H3068"\w* \w an|strong="H7126"\w* \w offering|strong="H4503"\w* \w made|strong="H1961"\w* \w by|strong="H5921"\w* fire, \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w sweet|strong="H5207"\w* \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 19 \w You|strong="H6213"\w* \w shall|strong="H1121"\w* \w offer|strong="H6213"\w* \w one|strong="H3532"\w* \w male|strong="H3532"\w* \w goat|strong="H5795"\w* \w for|strong="H6213"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*, \w and|strong="H1121"\w* \w two|strong="H8147"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w* \w for|strong="H6213"\w* \w a|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H1121"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*. +\v 20 \w The|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w wave|strong="H8573"\w* \w them|strong="H5921"\w* \w with|strong="H3068"\w* \w the|strong="H6440"\w* \w bread|strong="H3899"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w first|strong="H1061"\w* \w fruits|strong="H1061"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w wave|strong="H8573"\w* \w offering|strong="H8573"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w with|strong="H3068"\w* \w the|strong="H6440"\w* \w two|strong="H8147"\w* \w lambs|strong="H3532"\w*. \w They|strong="H3068"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w holy|strong="H6944"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w*. +\v 21 \w You|strong="H3605"\w* \w shall|strong="H3117"\w* \w make|strong="H6213"\w* \w proclamation|strong="H7121"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w same|strong="H6106"\w* \w day|strong="H3117"\w* \w that|strong="H3605"\w* \w there|strong="H1961"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w convocation|strong="H4744"\w* \w to|strong="H1961"\w* \w you|strong="H3605"\w*. \w You|strong="H3605"\w* \w shall|strong="H3117"\w* \w do|strong="H6213"\w* \w no|strong="H3808"\w* \w regular|strong="H5656"\w* \w work|strong="H4399"\w*. \w This|strong="H2088"\w* \w is|strong="H2088"\w* \w a|strong="H3068"\w* \w statute|strong="H2708"\w* \w forever|strong="H5769"\w* \w in|strong="H6213"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w dwellings|strong="H4186"\w* \w throughout|strong="H3605"\w* \w your|strong="H3605"\w* \w generations|strong="H1755"\w*. +\p +\v 22 “‘\w When|strong="H3615"\w* \w you|strong="H3808"\w* \w reap|strong="H7114"\w* \w the|strong="H3068"\w* \w harvest|strong="H7105"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w land|strong="H7704"\w*, \w you|strong="H3808"\w* \w must|strong="H3808"\w* \w not|strong="H3808"\w* wholly \w reap|strong="H7114"\w* into \w the|strong="H3068"\w* \w corners|strong="H6285"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w field|strong="H7704"\w*. \w You|strong="H3808"\w* \w must|strong="H3808"\w* \w not|strong="H3808"\w* \w gather|strong="H3950"\w* \w the|strong="H3068"\w* \w gleanings|strong="H3951"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w harvest|strong="H7105"\w*. \w You|strong="H3808"\w* \w must|strong="H3808"\w* \w leave|strong="H5800"\w* \w them|strong="H3615"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w poor|strong="H6041"\w* \w and|strong="H3068"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w foreigner|strong="H1616"\w*. \w I|strong="H3808"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*.’” +\p +\v 23 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 24 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w saying|strong="H1696"\w*, ‘\w In|strong="H3478"\w* \w the|strong="H1961"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w*, \w on|strong="H1961"\w* \w the|strong="H1961"\w* \w first|strong="H1121"\w* \w day|strong="H2320"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w month|strong="H2320"\w*, \w there|strong="H1961"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w solemn|strong="H7677"\w* \w rest|strong="H7677"\w* \w for|strong="H1121"\w* \w you|strong="H1696"\w*, \w a|strong="H3068"\w* \w memorial|strong="H2146"\w* \w of|strong="H1121"\w* \w blowing|strong="H8643"\w* \w of|strong="H1121"\w* \w trumpets|strong="H8643"\w*, \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w convocation|strong="H4744"\w*. +\v 25 \w You|strong="H3605"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w no|strong="H3808"\w* \w regular|strong="H5656"\w* \w work|strong="H4399"\w*. \w You|strong="H3605"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w an|strong="H6213"\w* \w offering|strong="H7126"\w* \w made|strong="H6213"\w* \w by|strong="H3068"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.’” +\p +\v 26 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 27 “However \w on|strong="H3117"\w* \w the|strong="H3068"\w* \w tenth|strong="H6218"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w this|strong="H2088"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w atonement|strong="H3725"\w*. \w It|strong="H1931"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w convocation|strong="H4744"\w* \w to|strong="H3068"\w* \w you|strong="H3117"\w*. \w You|strong="H3117"\w* \w shall|strong="H3068"\w* \w afflict|strong="H6031"\w* \w yourselves|strong="H5315"\w* \w and|strong="H3068"\w* \w you|strong="H3117"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w an|strong="H7126"\w* \w offering|strong="H7126"\w* \w made|strong="H1961"\w* \w by|strong="H3117"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 28 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w no|strong="H3808"\w* kind \w of|strong="H3068"\w* \w work|strong="H4399"\w* \w in|strong="H5921"\w* \w that|strong="H3588"\w* \w same|strong="H1931"\w* \w day|strong="H3117"\w*, \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w atonement|strong="H3722"\w*, \w to|strong="H3068"\w* \w make|strong="H6213"\w* \w atonement|strong="H3722"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 29 \w For|strong="H3588"\w* \w whoever|strong="H3605"\w* \w it|strong="H3588"\w* \w is|strong="H2088"\w* \w who|strong="H3605"\w* \w shall|strong="H5971"\w* \w not|strong="H3808"\w* deny \w himself|strong="H5315"\w* \w in|strong="H3117"\w* \w that|strong="H3588"\w* \w same|strong="H6106"\w* \w day|strong="H3117"\w* \w shall|strong="H5971"\w* \w be|strong="H3808"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*. +\v 30 \w Whoever|strong="H3605"\w* \w does|strong="H6213"\w* \w any|strong="H3605"\w* kind \w of|strong="H3117"\w* \w work|strong="H4399"\w* \w in|strong="H6213"\w* \w that|strong="H5971"\w* \w same|strong="H1931"\w* \w day|strong="H3117"\w*, \w I|strong="H3117"\w* \w will|strong="H5971"\w* \w destroy|strong="H6213"\w* \w that|strong="H5971"\w* \w person|strong="H5315"\w* \w from|strong="H5315"\w* \w among|strong="H7130"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*. +\v 31 \w You|strong="H3605"\w* \w shall|strong="H3808"\w* \w do|strong="H6213"\w* \w no|strong="H3808"\w* \w kind|strong="H1755"\w* \w of|strong="H3605"\w* \w work|strong="H4399"\w*: \w it|strong="H6213"\w* \w is|strong="H3605"\w* \w a|strong="H3068"\w* \w statute|strong="H2708"\w* \w forever|strong="H5769"\w* \w throughout|strong="H3605"\w* \w your|strong="H3605"\w* \w generations|strong="H1755"\w* \w in|strong="H6213"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w dwellings|strong="H4186"\w*. +\v 32 \w It|strong="H1931"\w* \w shall|strong="H5315"\w* \w be|strong="H5315"\w* \w a|strong="H3068"\w* \w Sabbath|strong="H7676"\w* \w of|strong="H5315"\w* \w solemn|strong="H7677"\w* \w rest|strong="H7677"\w* \w for|strong="H5704"\w* \w you|strong="H5704"\w*, \w and|strong="H5315"\w* \w you|strong="H5704"\w* \w shall|strong="H5315"\w* deny \w yourselves|strong="H5315"\w*. \w In|strong="H5315"\w* \w the|strong="H5704"\w* \w ninth|strong="H8672"\w* \w day|strong="H2320"\w* \w of|strong="H5315"\w* \w the|strong="H5704"\w* \w month|strong="H2320"\w* \w at|strong="H2320"\w* \w evening|strong="H6153"\w*, \w from|strong="H5315"\w* \w evening|strong="H6153"\w* \w to|strong="H5704"\w* \w evening|strong="H6153"\w*, \w you|strong="H5704"\w* \w shall|strong="H5315"\w* \w keep|strong="H7673"\w* \w your|strong="H5704"\w* \w Sabbath|strong="H7676"\w*.” +\p +\v 33 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 34 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w say|strong="H1696"\w*, ‘\w On|strong="H3117"\w* \w the|strong="H3068"\w* \w fifteenth|strong="H2568"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w this|strong="H2088"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w feast|strong="H2282"\w* \w of|strong="H1121"\w* \w booths|strong="H5521"\w*\f + \fr 23:34 \ft or, feast of tents, or Succoth\f* \w for|strong="H3068"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*. +\v 35 \w On|strong="H3117"\w* \w the|strong="H3605"\w* \w first|strong="H7223"\w* \w day|strong="H3117"\w* \w shall|strong="H3117"\w* \w be|strong="H3808"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w convocation|strong="H4744"\w*. \w You|strong="H3605"\w* \w shall|strong="H3117"\w* \w do|strong="H6213"\w* \w no|strong="H3808"\w* \w regular|strong="H5656"\w* \w work|strong="H4399"\w*. +\v 36 \w Seven|strong="H7651"\w* \w days|strong="H3117"\w* \w you|strong="H3605"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w an|strong="H6213"\w* \w offering|strong="H7126"\w* \w made|strong="H6213"\w* \w by|strong="H3117"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w On|strong="H3117"\w* \w the|strong="H3605"\w* \w eighth|strong="H8066"\w* \w day|strong="H3117"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w convocation|strong="H4744"\w* \w to|strong="H3068"\w* \w you|strong="H3605"\w*. \w You|strong="H3605"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w an|strong="H6213"\w* \w offering|strong="H7126"\w* \w made|strong="H6213"\w* \w by|strong="H3117"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w It|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w solemn|strong="H6116"\w* \w assembly|strong="H6116"\w*; \w you|strong="H3605"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w no|strong="H3808"\w* \w regular|strong="H5656"\w* \w work|strong="H4399"\w*. +\p +\v 37 “‘\w These|strong="H7121"\w* \w are|strong="H3117"\w* \w the|strong="H3068"\w* \w appointed|strong="H4150"\w* \w feasts|strong="H4150"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w which|strong="H3068"\w* \w you|strong="H3117"\w* \w shall|strong="H3068"\w* \w proclaim|strong="H7121"\w* \w to|strong="H3068"\w* \w be|strong="H1697"\w* \w holy|strong="H6944"\w* \w convocations|strong="H4744"\w*, \w to|strong="H3068"\w* \w offer|strong="H7126"\w* \w an|strong="H7126"\w* \w offering|strong="H4503"\w* \w made|strong="H7121"\w* \w by|strong="H3117"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w a|strong="H3068"\w* \w sacrifice|strong="H2077"\w*, \w and|strong="H3068"\w* \w drink|strong="H5262"\w* \w offerings|strong="H5930"\w*, \w each|strong="H3117"\w* \w on|strong="H3117"\w* its own \w day|strong="H3117"\w*— +\v 38 \w in|strong="H3068"\w* addition \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w Sabbaths|strong="H7676"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w in|strong="H3068"\w* addition \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w gifts|strong="H4979"\w*, \w and|strong="H3068"\w* \w in|strong="H3068"\w* addition \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w vows|strong="H5088"\w*, \w and|strong="H3068"\w* \w in|strong="H3068"\w* addition \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* free \w will|strong="H3068"\w* \w offerings|strong="H5071"\w*, \w which|strong="H3068"\w* \w you|strong="H5414"\w* \w give|strong="H5414"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 39 “‘So \w on|strong="H3117"\w* \w the|strong="H3068"\w* \w fifteenth|strong="H2568"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w*, \w when|strong="H3117"\w* \w you|strong="H3117"\w* \w have|strong="H3068"\w* gathered \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w fruits|strong="H8393"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* land, \w you|strong="H3117"\w* \w shall|strong="H3068"\w* \w keep|strong="H2287"\w* \w the|strong="H3068"\w* \w feast|strong="H2282"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. \w On|strong="H3117"\w* \w the|strong="H3068"\w* \w first|strong="H7223"\w* \w day|strong="H3117"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w a|strong="H3068"\w* \w solemn|strong="H7677"\w* \w rest|strong="H7677"\w*, \w and|strong="H3068"\w* \w on|strong="H3117"\w* \w the|strong="H3068"\w* \w eighth|strong="H8066"\w* \w day|strong="H3117"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w a|strong="H3068"\w* \w solemn|strong="H7677"\w* \w rest|strong="H7677"\w*. +\v 40 \w You|strong="H6440"\w* \w shall|strong="H3068"\w* \w take|strong="H3947"\w* \w on|strong="H3117"\w* \w the|strong="H6440"\w* \w first|strong="H7223"\w* \w day|strong="H3117"\w* \w the|strong="H6440"\w* \w fruit|strong="H6529"\w* \w of|strong="H3068"\w* \w majestic|strong="H1926"\w* \w trees|strong="H6086"\w*, \w branches|strong="H6057"\w* \w of|strong="H3068"\w* \w palm|strong="H8558"\w* \w trees|strong="H6086"\w*, \w and|strong="H3068"\w* \w boughs|strong="H6057"\w* \w of|strong="H3068"\w* \w thick|strong="H5687"\w* \w trees|strong="H6086"\w*, \w and|strong="H3068"\w* \w willows|strong="H6155"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w brook|strong="H5158"\w*; \w and|strong="H3068"\w* \w you|strong="H6440"\w* \w shall|strong="H3068"\w* \w rejoice|strong="H8055"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. +\v 41 \w You|strong="H3117"\w* \w shall|strong="H3068"\w* \w keep|strong="H2287"\w* \w it|strong="H2287"\w* \w as|strong="H3117"\w* \w a|strong="H3068"\w* \w feast|strong="H2282"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w* \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w year|strong="H8141"\w*. \w It|strong="H2287"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w statute|strong="H2708"\w* \w forever|strong="H5769"\w* \w throughout|strong="H1755"\w* \w your|strong="H3068"\w* \w generations|strong="H1755"\w*. \w You|strong="H3117"\w* \w shall|strong="H3068"\w* \w keep|strong="H2287"\w* \w it|strong="H2287"\w* \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w*. +\v 42 \w You|strong="H3605"\w* \w shall|strong="H3478"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w temporary|strong="H5521"\w* \w shelters|strong="H5521"\w*\f + \fr 23:42 \ft or, booths\f* \w for|strong="H3427"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. \w All|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H3117"\w* native-born \w in|strong="H3427"\w* \w Israel|strong="H3478"\w* \w shall|strong="H3478"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w temporary|strong="H5521"\w* \w shelters|strong="H5521"\w*,\f + \fr 23:42 \ft or, booths\f* +\v 43 \w that|strong="H3588"\w* \w your|strong="H3068"\w* \w generations|strong="H1755"\w* \w may|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w made|strong="H3045"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w to|strong="H3318"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w temporary|strong="H5521"\w* \w shelters|strong="H5521"\w*\f + \fr 23:43 \ft or, booths\f* \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w brought|strong="H3318"\w* \w them|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*. \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*.’” +\p +\v 44 \w So|strong="H1696"\w* \w Moses|strong="H4872"\w* \w declared|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w the|strong="H3068"\w* \w appointed|strong="H4150"\w* \w feasts|strong="H4150"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*. +\c 24 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Command|strong="H6680"\w* \w the|strong="H3947"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w that|strong="H3478"\w* \w they|strong="H3478"\w* \w bring|strong="H5927"\w* \w to|strong="H3478"\w* \w you|strong="H6680"\w* \w pure|strong="H2134"\w* \w olive|strong="H2132"\w* \w oil|strong="H8081"\w* \w beaten|strong="H3795"\w* \w for|strong="H1121"\w* \w the|strong="H3947"\w* \w light|strong="H3974"\w*, \w to|strong="H3478"\w* cause \w a|strong="H3068"\w* \w lamp|strong="H5216"\w* \w to|strong="H3478"\w* \w burn|strong="H5927"\w* \w continually|strong="H8548"\w*. +\v 3 \w Outside|strong="H2351"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w veil|strong="H6532"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w Testimony|strong="H5715"\w*, \w in|strong="H3068"\w* \w the|strong="H6440"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, \w Aaron|strong="H6186"\w* \w shall|strong="H3068"\w* \w keep|strong="H6186"\w* \w it|strong="H1242"\w* \w in|strong="H3068"\w* \w order|strong="H6186"\w* \w from|strong="H6440"\w* \w evening|strong="H6153"\w* \w to|strong="H5704"\w* \w morning|strong="H1242"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w continually|strong="H8548"\w*. \w It|strong="H1242"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w a|strong="H3068"\w* \w statute|strong="H2708"\w* \w forever|strong="H5769"\w* \w throughout|strong="H1755"\w* \w your|strong="H3068"\w* \w generations|strong="H1755"\w*. +\v 4 \w He|strong="H3068"\w* \w shall|strong="H3068"\w* \w keep|strong="H6186"\w* \w in|strong="H5921"\w* \w order|strong="H6186"\w* \w the|strong="H6440"\w* \w lamps|strong="H5216"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w pure|strong="H2889"\w* gold \w lamp|strong="H5216"\w* stand \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w continually|strong="H8548"\w*. +\p +\v 5 “\w You|strong="H3947"\w* \w shall|strong="H8147"\w* \w take|strong="H3947"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w*, \w and|strong="H8147"\w* bake \w twelve|strong="H8147"\w* \w cakes|strong="H2471"\w* \w of|strong="H8147"\w* \w it|strong="H1961"\w*: \w two|strong="H8147"\w* tenths \w of|strong="H8147"\w* \w an|strong="H1961"\w* ephah\f + \fr 24:5 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w shall|strong="H8147"\w* \w be|strong="H1961"\w* \w in|strong="H1961"\w* \w one|strong="H1961"\w* \w cake|strong="H2471"\w*. +\v 6 \w You|strong="H6440"\w* \w shall|strong="H3068"\w* \w set|strong="H7760"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w two|strong="H8147"\w* \w rows|strong="H4634"\w*, \w six|strong="H8337"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w row|strong="H4635"\w*, \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w pure|strong="H2889"\w* gold \w table|strong="H7979"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 7 \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w put|strong="H5414"\w* \w pure|strong="H2134"\w* \w frankincense|strong="H3828"\w* \w on|strong="H5921"\w* \w each|strong="H5414"\w* \w row|strong="H4635"\w*, \w that|strong="H3068"\w* \w it|strong="H5414"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w bread|strong="H3899"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* memorial, \w even|strong="H3068"\w* \w an|strong="H1961"\w* \w offering|strong="H3068"\w* \w made|strong="H5414"\w* \w by|strong="H5921"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 8 \w Every|strong="H3117"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w* \w he|strong="H3117"\w* \w shall|strong="H3068"\w* \w set|strong="H6186"\w* \w it|strong="H6440"\w* \w in|strong="H3478"\w* \w order|strong="H6186"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w continually|strong="H8548"\w*. \w It|strong="H6440"\w* \w is|strong="H3068"\w* \w an|strong="H6440"\w* \w everlasting|strong="H5769"\w* \w covenant|strong="H1285"\w* \w on|strong="H3117"\w* \w the|strong="H6440"\w* behalf \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 9 \w It|strong="H1931"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w for|strong="H3588"\w* Aaron \w and|strong="H1121"\w* \w his|strong="H3068"\w* \w sons|strong="H1121"\w*. \w They|strong="H3588"\w* \w shall|strong="H3068"\w* eat \w it|strong="H1931"\w* \w in|strong="H3068"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w place|strong="H4725"\w*; \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w to|strong="H3068"\w* \w him|strong="H1931"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w offerings|strong="H3588"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H1961"\w* \w by|strong="H3068"\w* fire \w by|strong="H3068"\w* \w a|strong="H3068"\w* \w perpetual|strong="H5769"\w* \w statute|strong="H2706"\w*.” +\p +\v 10 \w The|strong="H8432"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w an|strong="H3318"\w* \w Israelite|strong="H3478"\w* woman, \w whose|strong="H1121"\w* \w father|strong="H1121"\w* \w was|strong="H3478"\w* \w an|strong="H3318"\w* \w Egyptian|strong="H4713"\w*, \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w and|strong="H1121"\w* \w the|strong="H8432"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H8432"\w* \w Israelite|strong="H3478"\w* woman \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w strove|strong="H5327"\w* \w together|strong="H5327"\w* \w in|strong="H3478"\w* \w the|strong="H8432"\w* \w camp|strong="H4264"\w*. +\v 11 \w The|strong="H4872"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H4872"\w* \w Israelite|strong="H3482"\w* \w woman|strong="H1323"\w* \w blasphemed|strong="H5344"\w* \w the|strong="H4872"\w* \w Name|strong="H8034"\w*, \w and|strong="H1121"\w* \w cursed|strong="H7043"\w*; \w and|strong="H1121"\w* \w they|strong="H8034"\w* \w brought|strong="H4872"\w* \w him|strong="H4872"\w* \w to|strong="H1121"\w* \w Moses|strong="H4872"\w*. \w His|strong="H7043"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Shelomith|strong="H8019"\w*, \w the|strong="H4872"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Dibri|strong="H1704"\w*, \w of|strong="H1121"\w* \w the|strong="H4872"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w*. +\v 12 \w They|strong="H1992"\w* \w put|strong="H3240"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w custody|strong="H4929"\w* \w until|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w will|strong="H3068"\w* \w should|strong="H3068"\w* \w be|strong="H3068"\w* \w declared|strong="H6567"\w* \w to|strong="H3068"\w* \w them|strong="H1992"\w*. +\v 13 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 14 “\w Bring|strong="H3318"\w* \w him|strong="H5921"\w* \w who|strong="H3605"\w* \w cursed|strong="H7043"\w* \w out|strong="H3318"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w*; \w and|strong="H3027"\w* let \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w heard|strong="H8085"\w* \w him|strong="H5921"\w* \w lay|strong="H5564"\w* \w their|strong="H3605"\w* \w hands|strong="H3027"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w head|strong="H7218"\w*, \w and|strong="H3027"\w* let \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w stone|strong="H7275"\w* \w him|strong="H5921"\w*. +\v 15 \w You|strong="H3588"\w* \w shall|strong="H1121"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w saying|strong="H1696"\w*, ‘Whoever \w curses|strong="H7043"\w* \w his|strong="H5375"\w* God \w shall|strong="H1121"\w* \w bear|strong="H5375"\w* \w his|strong="H5375"\w* \w sin|strong="H2399"\w*. +\v 16 \w He|strong="H3068"\w* \w who|strong="H3605"\w* \w blasphemes|strong="H5344"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*, \w he|strong="H3068"\w* \w shall|strong="H3068"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w shall|strong="H3068"\w* \w certainly|strong="H7275"\w* \w stone|strong="H7275"\w* \w him|strong="H4191"\w*. \w The|strong="H3605"\w* \w foreigner|strong="H1616"\w* \w as|strong="H3068"\w* well \w as|strong="H3068"\w* \w the|strong="H3605"\w* native-born \w shall|strong="H3068"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w* \w when|strong="H3068"\w* \w he|strong="H3068"\w* \w blasphemes|strong="H5344"\w* \w the|strong="H3605"\w* \w Name|strong="H8034"\w*. +\p +\v 17 “‘\w He|strong="H3588"\w* \w who|strong="H3605"\w* \w strikes|strong="H5221"\w* \w any|strong="H3605"\w* \w man|strong="H5315"\w* \w mortally|strong="H4191"\w* \w shall|strong="H5315"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. +\v 18 \w He|strong="H5221"\w* \w who|strong="H5315"\w* \w strikes|strong="H5221"\w* \w an|strong="H5221"\w* animal \w mortally|strong="H5315"\w* \w shall|strong="H5315"\w* \w make|strong="H7999"\w* \w it|strong="H5221"\w* \w good|strong="H7999"\w*, \w life|strong="H5315"\w* \w for|strong="H8478"\w* \w life|strong="H5315"\w*. +\v 19 \w If|strong="H3588"\w* \w anyone|strong="H3588"\w* \w injures|strong="H5414"\w* \w his|strong="H5414"\w* \w neighbor|strong="H5997"\w*, \w it|strong="H5414"\w* \w shall|strong="H6213"\w* \w be|strong="H5414"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w him|strong="H5414"\w* \w as|strong="H6213"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w done|strong="H6213"\w*: +\v 20 \w fracture|strong="H7667"\w* \w for|strong="H8478"\w* \w fracture|strong="H7667"\w*, \w eye|strong="H5869"\w* \w for|strong="H8478"\w* \w eye|strong="H5869"\w*, \w tooth|strong="H8127"\w* \w for|strong="H8478"\w* \w tooth|strong="H8127"\w*. \w It|strong="H5414"\w* \w shall|strong="H5869"\w* \w be|strong="H5414"\w* \w done|strong="H5414"\w* \w to|strong="H5414"\w* \w him|strong="H5414"\w* \w as|strong="H3651"\w* \w he|strong="H3651"\w* \w has|strong="H5869"\w* \w injured|strong="H5414"\w* \w someone|strong="H5414"\w*. +\v 21 \w He|strong="H5221"\w* \w who|strong="H5221"\w* \w kills|strong="H5221"\w* \w an|strong="H5221"\w* animal \w shall|strong="H4191"\w* \w make|strong="H7999"\w* \w it|strong="H5221"\w* \w good|strong="H7999"\w*; \w and|strong="H4191"\w* \w he|strong="H5221"\w* \w who|strong="H5221"\w* \w kills|strong="H5221"\w* \w a|strong="H3068"\w* \w man|strong="H4191"\w* \w shall|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. +\v 22 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w have|strong="H1961"\w* \w one|strong="H1961"\w* \w kind|strong="H4941"\w* \w of|strong="H3068"\w* \w law|strong="H4941"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w foreigner|strong="H1616"\w* \w as|strong="H1961"\w* well \w as|strong="H1961"\w* \w the|strong="H3588"\w* native-born; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*.’” +\p +\v 23 \w Moses|strong="H4872"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w and|strong="H1121"\w* \w they|strong="H3068"\w* \w brought|strong="H3318"\w* \w him|strong="H6213"\w* \w who|strong="H3068"\w* \w had|strong="H3068"\w* \w cursed|strong="H7043"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w camp|strong="H4264"\w*, \w and|strong="H1121"\w* \w stoned|strong="H7275"\w* \w him|strong="H6213"\w* \w with|strong="H3068"\w* stones. \w The|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w did|strong="H6213"\w* \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\c 25 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w on|strong="H3068"\w* \w Mount|strong="H2022"\w* \w Sinai|strong="H5514"\w*, +\v 2 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w tell|strong="H1696"\w* \w them|strong="H5414"\w*, ‘\w When|strong="H3588"\w* \w you|strong="H3588"\w* \w come|strong="H3478"\w* \w into|strong="H5414"\w* \w the|strong="H3588"\w* land \w which|strong="H3068"\w* \w I|strong="H3588"\w* \w give|strong="H5414"\w* \w you|strong="H3588"\w*, \w then|strong="H1696"\w* \w the|strong="H3588"\w* land \w shall|strong="H3068"\w* \w keep|strong="H7673"\w* \w a|strong="H3068"\w* \w Sabbath|strong="H7676"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*. +\v 3 \w You|strong="H8141"\w* \w shall|strong="H7704"\w* \w sow|strong="H2232"\w* \w your|strong="H2232"\w* \w field|strong="H7704"\w* \w six|strong="H8337"\w* \w years|strong="H8141"\w*, \w and|strong="H8141"\w* \w you|strong="H8141"\w* \w shall|strong="H7704"\w* \w prune|strong="H2168"\w* \w your|strong="H2232"\w* \w vineyard|strong="H3754"\w* \w six|strong="H8337"\w* \w years|strong="H8141"\w*, \w and|strong="H8141"\w* gather \w in|strong="H8141"\w* its \w fruits|strong="H8393"\w*; +\v 4 \w but|strong="H3808"\w* \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w seventh|strong="H7637"\w* \w year|strong="H8141"\w* \w there|strong="H1961"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w Sabbath|strong="H7676"\w* \w of|strong="H3068"\w* \w solemn|strong="H7677"\w* \w rest|strong="H7677"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w land|strong="H7704"\w*, \w a|strong="H3068"\w* \w Sabbath|strong="H7676"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w You|strong="H3808"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w sow|strong="H2232"\w* \w your|strong="H3068"\w* \w field|strong="H7704"\w* \w or|strong="H3808"\w* \w prune|strong="H2168"\w* \w your|strong="H3068"\w* \w vineyard|strong="H3754"\w*. +\v 5 \w What|strong="H5599"\w* \w grows|strong="H5599"\w* \w of|strong="H8141"\w* itself \w in|strong="H8141"\w* \w your|strong="H3808"\w* \w harvest|strong="H7105"\w* \w you|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w reap|strong="H7114"\w*, \w and|strong="H8141"\w* \w you|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w gather|strong="H1219"\w* \w the|strong="H1961"\w* \w grapes|strong="H6025"\w* \w of|strong="H8141"\w* \w your|strong="H3808"\w* \w undressed|strong="H5139"\w* vine. \w It|strong="H1961"\w* \w shall|strong="H3808"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w of|strong="H8141"\w* \w solemn|strong="H7677"\w* \w rest|strong="H7677"\w* \w for|strong="H1961"\w* \w the|strong="H1961"\w* land. +\v 6 \w The|strong="H1961"\w* \w Sabbath|strong="H7676"\w* \w of|strong="H5650"\w* \w the|strong="H1961"\w* land \w shall|strong="H5650"\w* \w be|strong="H1961"\w* \w for|strong="H5650"\w* food \w for|strong="H5650"\w* \w you|strong="H5973"\w*; \w for|strong="H5650"\w* \w yourself|strong="H5973"\w*, \w for|strong="H5650"\w* \w your|strong="H1961"\w* \w servant|strong="H5650"\w*, \w for|strong="H5650"\w* \w your|strong="H1961"\w* maid, \w for|strong="H5650"\w* \w your|strong="H1961"\w* \w hired|strong="H7916"\w* \w servant|strong="H5650"\w*, \w and|strong="H5650"\w* \w for|strong="H5650"\w* \w your|strong="H1961"\w* \w stranger|strong="H8453"\w*, \w who|strong="H5650"\w* \w lives|strong="H1481"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w foreigner|strong="H8453"\w* \w with|strong="H5973"\w* \w you|strong="H5973"\w*. +\v 7 \w For|strong="H3605"\w* \w your|strong="H3605"\w* livestock also, \w and|strong="H2416"\w* \w for|strong="H3605"\w* \w the|strong="H3605"\w* \w animals|strong="H2416"\w* \w that|strong="H3605"\w* \w are|strong="H1961"\w* \w in|strong="H1961"\w* \w your|strong="H3605"\w* land, \w shall|strong="H2416"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w increase|strong="H8393"\w* \w be|strong="H1961"\w* \w for|strong="H3605"\w* food. +\p +\v 8 “‘\w You|strong="H3117"\w* \w shall|strong="H3117"\w* \w count|strong="H5608"\w* \w off|strong="H7651"\w* \w seven|strong="H7651"\w* \w Sabbaths|strong="H7676"\w* \w of|strong="H3117"\w* \w years|strong="H8141"\w*, \w seven|strong="H7651"\w* \w times|strong="H6471"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w*; \w and|strong="H3117"\w* \w there|strong="H1961"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w to|strong="H1961"\w* \w you|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w seven|strong="H7651"\w* \w Sabbaths|strong="H7676"\w* \w of|strong="H3117"\w* \w years|strong="H8141"\w*, \w even|strong="H7651"\w* forty-nine \w years|strong="H8141"\w*. +\v 9 \w Then|strong="H5674"\w* \w you|strong="H3605"\w* \w shall|strong="H3117"\w* \w sound|strong="H5674"\w* \w the|strong="H3605"\w* loud \w trumpet|strong="H7782"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w tenth|strong="H6218"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w*. \w On|strong="H3117"\w* \w the|strong="H3605"\w* \w Day|strong="H3117"\w* \w of|strong="H3117"\w* \w Atonement|strong="H3725"\w* \w you|strong="H3605"\w* \w shall|strong="H3117"\w* \w sound|strong="H5674"\w* \w the|strong="H3605"\w* \w trumpet|strong="H7782"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* land. +\v 10 \w You|strong="H3605"\w* \w shall|strong="H1931"\w* \w make|strong="H7725"\w* \w the|strong="H3605"\w* \w fiftieth|strong="H2572"\w* \w year|strong="H8141"\w* \w holy|strong="H6942"\w*, \w and|strong="H7725"\w* \w proclaim|strong="H7121"\w* \w liberty|strong="H1865"\w* \w throughout|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H4940"\w* \w to|strong="H7725"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w inhabitants|strong="H3427"\w*. \w It|strong="H1931"\w* \w shall|strong="H1931"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w jubilee|strong="H3104"\w* \w to|strong="H7725"\w* \w you|strong="H3605"\w*; \w and|strong="H7725"\w* \w each|strong="H3605"\w* \w of|strong="H8141"\w* \w you|strong="H3605"\w* \w shall|strong="H1931"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H3605"\w* \w own|strong="H1961"\w* property, \w and|strong="H7725"\w* \w each|strong="H3605"\w* \w of|strong="H8141"\w* \w you|strong="H3605"\w* \w shall|strong="H1931"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H3605"\w* \w family|strong="H4940"\w*. +\v 11 \w That|strong="H1931"\w* \w fiftieth|strong="H2572"\w* \w year|strong="H8141"\w* \w shall|strong="H3808"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w jubilee|strong="H3104"\w* \w to|strong="H1961"\w* \w you|strong="H3808"\w*. \w In|strong="H8141"\w* \w it|strong="H1931"\w* \w you|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w sow|strong="H2232"\w*, \w neither|strong="H3808"\w* \w reap|strong="H7114"\w* \w that|strong="H1931"\w* \w which|strong="H1931"\w* \w grows|strong="H5599"\w* \w of|strong="H8141"\w* \w itself|strong="H1931"\w*, \w nor|strong="H3808"\w* \w gather|strong="H1219"\w* \w from|strong="H1961"\w* \w the|strong="H1961"\w* \w undressed|strong="H5139"\w* \w vines|strong="H5139"\w*. +\v 12 \w For|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w jubilee|strong="H3104"\w*; \w it|strong="H1931"\w* \w shall|strong="H7704"\w* \w be|strong="H1961"\w* \w holy|strong="H6944"\w* \w to|strong="H1961"\w* \w you|strong="H3588"\w*. \w You|strong="H3588"\w* \w shall|strong="H7704"\w* eat \w of|strong="H7704"\w* \w its|strong="H3588"\w* \w increase|strong="H8393"\w* \w out|strong="H4480"\w* \w of|strong="H7704"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w*. +\p +\v 13 “‘\w In|strong="H8141"\w* \w this|strong="H2063"\w* \w Year|strong="H8141"\w* \w of|strong="H8141"\w* \w Jubilee|strong="H3104"\w* each \w of|strong="H8141"\w* \w you|strong="H7725"\w* \w shall|strong="H8141"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* property. +\p +\v 14 “‘\w If|strong="H3588"\w* \w you|strong="H3588"\w* \w sell|strong="H4376"\w* anything \w to|strong="H3027"\w* \w your|strong="H3588"\w* \w neighbor|strong="H5997"\w*, \w or|strong="H4376"\w* \w buy|strong="H7069"\w* \w from|strong="H3027"\w* \w your|strong="H3588"\w* \w neighbor|strong="H5997"\w*, \w you|strong="H3588"\w* \w shall|strong="H3027"\w* \w not|strong="H3588"\w* \w wrong|strong="H3238"\w* \w one|strong="H3588"\w* \w another|strong="H5997"\w*. +\v 15 According \w to|strong="H8141"\w* \w the|strong="H7069"\w* \w number|strong="H4557"\w* \w of|strong="H8141"\w* \w years|strong="H8141"\w* \w after|strong="H8141"\w* \w the|strong="H7069"\w* \w Jubilee|strong="H3104"\w* \w you|strong="H8141"\w* \w shall|strong="H8141"\w* \w buy|strong="H7069"\w* \w from|strong="H4557"\w* \w your|strong="H4376"\w* \w neighbor|strong="H5997"\w*. According \w to|strong="H8141"\w* \w the|strong="H7069"\w* \w number|strong="H4557"\w* \w of|strong="H8141"\w* \w years|strong="H8141"\w* \w of|strong="H8141"\w* \w the|strong="H7069"\w* \w crops|strong="H8393"\w* \w he|strong="H8141"\w* \w shall|strong="H8141"\w* \w sell|strong="H4376"\w* \w to|strong="H8141"\w* \w you|strong="H8141"\w*. +\v 16 \w According|strong="H6310"\w* \w to|strong="H6310"\w* \w the|strong="H3588"\w* \w length|strong="H8141"\w* \w of|strong="H8141"\w* \w the|strong="H3588"\w* \w years|strong="H8141"\w* \w you|strong="H3588"\w* \w shall|strong="H6310"\w* \w increase|strong="H8393"\w* \w its|strong="H3588"\w* \w price|strong="H4736"\w*, \w and|strong="H8141"\w* \w according|strong="H6310"\w* \w to|strong="H6310"\w* \w the|strong="H3588"\w* shortness \w of|strong="H8141"\w* \w the|strong="H3588"\w* \w years|strong="H8141"\w* \w you|strong="H3588"\w* \w shall|strong="H6310"\w* \w diminish|strong="H4591"\w* \w its|strong="H3588"\w* \w price|strong="H4736"\w*; \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w selling|strong="H4376"\w* \w the|strong="H3588"\w* \w number|strong="H4557"\w* \w of|strong="H8141"\w* \w the|strong="H3588"\w* \w crops|strong="H8393"\w* \w to|strong="H6310"\w* \w you|strong="H3588"\w*. +\v 17 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w wrong|strong="H3238"\w* \w one|strong="H3808"\w* \w another|strong="H5997"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w fear|strong="H3372"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\p +\v 18 “‘\w Therefore|strong="H5921"\w* \w you|strong="H5921"\w* \w shall|strong="H6213"\w* \w do|strong="H6213"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w*, \w and|strong="H4941"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w ordinances|strong="H4941"\w* \w and|strong="H4941"\w* \w do|strong="H6213"\w* \w them|strong="H5921"\w*; \w and|strong="H4941"\w* \w you|strong="H5921"\w* \w shall|strong="H6213"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* land \w in|strong="H3427"\w* safety. +\v 19 \w The|strong="H5921"\w* land \w shall|strong="H3427"\w* \w yield|strong="H5414"\w* \w its|strong="H5414"\w* \w fruit|strong="H6529"\w*, \w and|strong="H3427"\w* \w you|strong="H5414"\w* \w shall|strong="H3427"\w* eat \w your|strong="H5414"\w* \w fill|strong="H7648"\w*, \w and|strong="H3427"\w* \w dwell|strong="H3427"\w* \w therein|strong="H3427"\w* \w in|strong="H3427"\w* safety. +\v 20 \w If|strong="H3588"\w* \w you|strong="H3588"\w* said, “\w What|strong="H4100"\w* \w shall|strong="H3808"\w* \w we|strong="H3068"\w* eat \w the|strong="H3588"\w* \w seventh|strong="H7637"\w* \w year|strong="H8141"\w*? \w Behold|strong="H2005"\w*, \w we|strong="H3068"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w sow|strong="H2232"\w*, \w nor|strong="H3808"\w* gather \w in|strong="H8141"\w* \w our|strong="H3588"\w* \w increase|strong="H8393"\w*;” +\v 21 \w then|strong="H6213"\w* \w I|strong="H6680"\w* \w will|strong="H1293"\w* \w command|strong="H6680"\w* \w my|strong="H6213"\w* \w blessing|strong="H1293"\w* \w on|strong="H6213"\w* \w you|strong="H6680"\w* \w in|strong="H8141"\w* \w the|strong="H6213"\w* \w sixth|strong="H8345"\w* \w year|strong="H8141"\w*, \w and|strong="H6213"\w* \w it|strong="H6213"\w* \w shall|strong="H1293"\w* \w bear|strong="H6213"\w* \w fruit|strong="H8393"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w*. +\v 22 \w You|strong="H5704"\w* \w shall|strong="H8141"\w* \w sow|strong="H2232"\w* \w the|strong="H4480"\w* \w eighth|strong="H8066"\w* \w year|strong="H8141"\w*, \w and|strong="H8141"\w* eat \w of|strong="H8141"\w* \w the|strong="H4480"\w* \w fruits|strong="H8393"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w old|strong="H3465"\w* store \w until|strong="H5704"\w* \w the|strong="H4480"\w* \w ninth|strong="H8671"\w* \w year|strong="H8141"\w*. \w Until|strong="H5704"\w* \w its|strong="H5704"\w* \w fruits|strong="H8393"\w* \w come|strong="H8393"\w* \w in|strong="H8141"\w*, \w you|strong="H5704"\w* \w shall|strong="H8141"\w* eat \w the|strong="H4480"\w* \w old|strong="H3465"\w* store. +\p +\v 23 “‘\w The|strong="H3588"\w* land \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w sold|strong="H4376"\w* \w in|strong="H3808"\w* perpetuity, \w for|strong="H3588"\w* \w the|strong="H3588"\w* land \w is|strong="H3808"\w* \w mine|strong="H5978"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H3808"\w* \w strangers|strong="H1616"\w* \w and|strong="H3808"\w* live \w as|strong="H3588"\w* \w foreigners|strong="H1616"\w* \w with|strong="H5978"\w* \w me|strong="H5978"\w*. +\v 24 \w In|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H3605"\w* \w your|strong="H3605"\w* possession \w you|strong="H5414"\w* shall \w grant|strong="H5414"\w* \w a|strong="H3068"\w* \w redemption|strong="H1353"\w* \w for|strong="H3605"\w* \w the|strong="H3605"\w* land. +\p +\v 25 “‘\w If|strong="H3588"\w* \w your|strong="H3588"\w* brother \w becomes|strong="H4134"\w* \w poor|strong="H4134"\w*, \w and|strong="H7138"\w* \w sells|strong="H4376"\w* some \w of|strong="H1350"\w* \w his|strong="H3588"\w* possessions, \w then|strong="H3588"\w* \w his|strong="H3588"\w* \w kinsman|strong="H1350"\w* \w who|strong="H7138"\w* \w is|strong="H1350"\w* \w next|strong="H7138"\w* \w to|strong="H7138"\w* \w him|strong="H3588"\w* \w shall|strong="H1350"\w* come, \w and|strong="H7138"\w* \w redeem|strong="H1350"\w* \w that|strong="H3588"\w* \w which|strong="H3588"\w* \w his|strong="H3588"\w* brother \w has|strong="H3588"\w* \w sold|strong="H4376"\w*. +\v 26 \w If|strong="H3588"\w* \w a|strong="H3068"\w* man \w has|strong="H1961"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w to|strong="H1961"\w* \w redeem|strong="H1350"\w* \w it|strong="H3588"\w*, \w and|strong="H3027"\w* \w he|strong="H3588"\w* \w becomes|strong="H1961"\w* prosperous \w and|strong="H3027"\w* \w finds|strong="H4672"\w* \w sufficient|strong="H1767"\w* \w means|strong="H3027"\w* \w to|strong="H1961"\w* \w redeem|strong="H1350"\w* \w it|strong="H3588"\w*, +\v 27 \w then|strong="H7725"\w* \w let|strong="H7725"\w* \w him|strong="H7725"\w* \w reckon|strong="H2803"\w* \w the|strong="H7725"\w* \w years|strong="H8141"\w* since \w its|strong="H7725"\w* \w sale|strong="H4465"\w*, \w and|strong="H7725"\w* \w restore|strong="H7725"\w* \w the|strong="H7725"\w* surplus \w to|strong="H7725"\w* \w the|strong="H7725"\w* man \w to|strong="H7725"\w* whom \w he|strong="H8141"\w* \w sold|strong="H4376"\w* \w it|strong="H7725"\w*; \w and|strong="H7725"\w* \w he|strong="H8141"\w* \w shall|strong="H8141"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* property. +\v 28 \w But|strong="H3808"\w* \w if|strong="H1961"\w* \w he|strong="H5704"\w* isn’t \w able|strong="H3027"\w* \w to|strong="H5704"\w* \w get|strong="H7069"\w* \w it|strong="H7725"\w* \w back|strong="H7725"\w* \w for|strong="H5704"\w* \w himself|strong="H3027"\w*, \w then|strong="H1961"\w* \w what|strong="H4465"\w* \w he|strong="H5704"\w* \w has|strong="H1961"\w* \w sold|strong="H4465"\w* \w shall|strong="H3027"\w* \w remain|strong="H1961"\w* \w in|strong="H8141"\w* \w the|strong="H7725"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w him|strong="H3027"\w* \w who|strong="H4672"\w* \w has|strong="H1961"\w* \w bought|strong="H7069"\w* \w it|strong="H7725"\w* \w until|strong="H5704"\w* \w the|strong="H7725"\w* \w Year|strong="H8141"\w* \w of|strong="H3027"\w* \w Jubilee|strong="H3104"\w*. \w In|strong="H8141"\w* \w the|strong="H7725"\w* \w Jubilee|strong="H3104"\w* \w it|strong="H7725"\w* \w shall|strong="H3027"\w* \w be|strong="H1961"\w* \w released|strong="H3318"\w*, \w and|strong="H7725"\w* \w he|strong="H5704"\w* \w shall|strong="H3027"\w* \w return|strong="H7725"\w* \w to|strong="H5704"\w* \w his|strong="H7725"\w* \w property|strong="H5704"\w*. +\p +\v 29 “‘\w If|strong="H3588"\w* \w a|strong="H3068"\w* man \w sells|strong="H4376"\w* \w a|strong="H3068"\w* \w dwelling|strong="H4186"\w* \w house|strong="H1004"\w* \w in|strong="H8141"\w* \w a|strong="H3068"\w* \w walled|strong="H2346"\w* \w city|strong="H5892"\w*, \w then|strong="H1961"\w* \w he|strong="H3588"\w* \w may|strong="H1961"\w* \w redeem|strong="H1353"\w* \w it|strong="H3588"\w* \w within|strong="H1004"\w* \w a|strong="H3068"\w* \w whole|strong="H3117"\w* \w year|strong="H8141"\w* \w after|strong="H1961"\w* \w it|strong="H3588"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w sold|strong="H4376"\w*. \w For|strong="H3588"\w* \w a|strong="H3068"\w* \w full|strong="H3117"\w* \w year|strong="H8141"\w* \w he|strong="H3588"\w* \w shall|strong="H1004"\w* \w have|strong="H1961"\w* \w the|strong="H3588"\w* \w right|strong="H1353"\w* \w of|strong="H1004"\w* \w redemption|strong="H1353"\w*. +\v 30 If \w it|strong="H5704"\w* isn’t \w redeemed|strong="H1350"\w* \w within|strong="H1004"\w* \w the|strong="H5704"\w* \w space|strong="H4390"\w* \w of|strong="H1004"\w* \w a|strong="H3068"\w* \w full|strong="H4390"\w* \w year|strong="H8141"\w*, \w then|strong="H6965"\w* \w the|strong="H5704"\w* \w house|strong="H1004"\w* \w that|strong="H5892"\w* \w is|strong="H5892"\w* \w in|strong="H8141"\w* \w the|strong="H5704"\w* \w walled|strong="H2346"\w* \w city|strong="H5892"\w* \w shall|strong="H1004"\w* \w be|strong="H3808"\w* \w made|strong="H8141"\w* \w sure|strong="H6965"\w* \w in|strong="H8141"\w* perpetuity \w to|strong="H5704"\w* \w him|strong="H3318"\w* \w who|strong="H3808"\w* \w bought|strong="H7069"\w* \w it|strong="H5704"\w*, \w throughout|strong="H1755"\w* \w his|strong="H6965"\w* \w generations|strong="H1755"\w*. \w It|strong="H5704"\w* \w shall|strong="H1004"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w released|strong="H3318"\w* \w in|strong="H8141"\w* \w the|strong="H5704"\w* \w Jubilee|strong="H3104"\w*. +\v 31 \w But|strong="H1961"\w* \w the|strong="H5921"\w* \w houses|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w villages|strong="H2691"\w* \w which|strong="H1992"\w* \w have|strong="H1961"\w* \w no|strong="H1961"\w* \w wall|strong="H2346"\w* \w around|strong="H5439"\w* \w them|strong="H1992"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w* \w accounted|strong="H2803"\w* \w for|strong="H5921"\w* \w with|strong="H1004"\w* \w the|strong="H5921"\w* \w fields|strong="H7704"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w country|strong="H7704"\w*: \w they|strong="H1992"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w redeemed|strong="H1353"\w*, \w and|strong="H1004"\w* \w they|strong="H1992"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w* \w released|strong="H3318"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w Jubilee|strong="H3104"\w*. +\p +\v 32 “‘Nevertheless, \w in|strong="H1004"\w* \w the|strong="H1961"\w* \w cities|strong="H5892"\w* \w of|strong="H1004"\w* \w the|strong="H1961"\w* \w Levites|strong="H3881"\w*, \w the|strong="H1961"\w* \w Levites|strong="H3881"\w* \w may|strong="H1961"\w* \w redeem|strong="H1353"\w* \w the|strong="H1961"\w* \w houses|strong="H1004"\w* \w in|strong="H1004"\w* \w the|strong="H1961"\w* \w cities|strong="H5892"\w* \w of|strong="H1004"\w* \w their|strong="H1961"\w* possession \w at|strong="H1004"\w* \w any|strong="H1961"\w* \w time|strong="H5769"\w*. +\v 33 \w The|strong="H3588"\w* \w Levites|strong="H3881"\w* \w may|strong="H3478"\w* \w redeem|strong="H1350"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w that|strong="H3588"\w* \w was|strong="H3478"\w* \w sold|strong="H4465"\w*, \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w city|strong="H5892"\w* \w of|strong="H1121"\w* \w his|strong="H3478"\w* possession, \w and|strong="H1121"\w* \w it|strong="H1931"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w released|strong="H3318"\w* \w in|strong="H3478"\w* \w the|strong="H3588"\w* \w Jubilee|strong="H3104"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w houses|strong="H1004"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w Levites|strong="H3881"\w* \w are|strong="H1121"\w* \w their|strong="H3588"\w* possession \w among|strong="H8432"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 34 \w But|strong="H3588"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w* \w of|strong="H5892"\w* \w the|strong="H3588"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w* \w of|strong="H5892"\w* \w their|strong="H3588"\w* \w cities|strong="H5892"\w* \w may|strong="H1931"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w sold|strong="H4376"\w*, \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w their|strong="H3588"\w* \w perpetual|strong="H5769"\w* possession. +\p +\v 35 “‘\w If|strong="H3588"\w* \w your|strong="H3588"\w* brother \w has|strong="H3588"\w* \w become|strong="H3027"\w* \w poor|strong="H4134"\w*, \w and|strong="H3027"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w* can’t \w support|strong="H2388"\w* \w himself|strong="H3027"\w* \w among|strong="H5973"\w* \w you|strong="H3588"\w*, \w then|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3027"\w* uphold \w him|strong="H3027"\w*. \w He|strong="H3588"\w* \w shall|strong="H3027"\w* \w live|strong="H2421"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w* \w like|strong="H5973"\w* \w an|strong="H2421"\w* \w alien|strong="H1616"\w* \w and|strong="H3027"\w* \w a|strong="H3068"\w* temporary \w resident|strong="H8453"\w*. +\v 36 \w Take|strong="H3947"\w* \w no|strong="H3947"\w* \w interest|strong="H5392"\w* \w from|strong="H3947"\w* \w him|strong="H5973"\w* \w or|strong="H5392"\w* profit; \w but|strong="H3947"\w* \w fear|strong="H3372"\w* \w your|strong="H3947"\w* God, \w that|strong="H2421"\w* \w your|strong="H3947"\w* brother \w may|strong="H2421"\w* \w live|strong="H2421"\w* \w among|strong="H5973"\w* \w you|strong="H3947"\w*. +\v 37 \w You|strong="H5414"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w lend|strong="H5414"\w* \w him|strong="H5414"\w* \w your|strong="H5414"\w* \w money|strong="H3701"\w* \w at|strong="H3808"\w* \w interest|strong="H5392"\w*, \w nor|strong="H3808"\w* \w give|strong="H5414"\w* \w him|strong="H5414"\w* \w your|strong="H5414"\w* food \w for|strong="H3701"\w* profit. +\v 38 \w I|strong="H5414"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w who|strong="H3068"\w* \w brought|strong="H3318"\w* \w you|strong="H5414"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w to|strong="H3318"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w the|strong="H5414"\w* land \w of|strong="H3068"\w* \w Canaan|strong="H3667"\w*, \w and|strong="H3068"\w* \w to|strong="H3318"\w* \w be|strong="H1961"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\p +\v 39 “‘\w If|strong="H3588"\w* \w your|strong="H3588"\w* brother \w has|strong="H5650"\w* grown \w poor|strong="H4134"\w* \w among|strong="H5973"\w* \w you|strong="H3588"\w*, \w and|strong="H5650"\w* \w sells|strong="H4376"\w* \w himself|strong="H3808"\w* \w to|strong="H5650"\w* \w you|strong="H3588"\w*, \w you|strong="H3588"\w* \w shall|strong="H5650"\w* \w not|strong="H3808"\w* \w make|strong="H5647"\w* \w him|strong="H5973"\w* \w to|strong="H5650"\w* \w serve|strong="H5647"\w* \w as|strong="H3588"\w* \w a|strong="H3068"\w* \w slave|strong="H5650"\w*. +\v 40 \w As|strong="H5704"\w* \w a|strong="H3068"\w* \w hired|strong="H7916"\w* \w servant|strong="H7916"\w*, \w and|strong="H8141"\w* \w as|strong="H5704"\w* \w a|strong="H3068"\w* temporary \w resident|strong="H8453"\w*, \w he|strong="H5704"\w* \w shall|strong="H8141"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H5704"\w*; \w he|strong="H5704"\w* \w shall|strong="H8141"\w* \w serve|strong="H5647"\w* \w with|strong="H5973"\w* \w you|strong="H5704"\w* \w until|strong="H5704"\w* \w the|strong="H5647"\w* \w Year|strong="H8141"\w* \w of|strong="H8141"\w* \w Jubilee|strong="H3104"\w*. +\v 41 \w Then|strong="H3318"\w* \w he|strong="H1931"\w* \w shall|strong="H1121"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H7725"\w* \w you|strong="H7725"\w*, \w he|strong="H1931"\w* \w and|strong="H1121"\w* \w his|strong="H7725"\w* \w children|strong="H1121"\w* \w with|strong="H5973"\w* \w him|strong="H7725"\w*, \w and|strong="H1121"\w* \w shall|strong="H1121"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w own|strong="H5973"\w* \w family|strong="H4940"\w*, \w and|strong="H1121"\w* \w to|strong="H7725"\w* \w the|strong="H7725"\w* possession \w of|strong="H1121"\w* \w his|strong="H7725"\w* fathers. +\v 42 \w For|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w my|strong="H3318"\w* \w servants|strong="H5650"\w*, \w whom|strong="H1992"\w* \w I|strong="H3588"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H5650"\w* \w the|strong="H3588"\w* land \w of|strong="H5650"\w* \w Egypt|strong="H4714"\w*. \w They|strong="H1992"\w* \w shall|strong="H4714"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w sold|strong="H4376"\w* \w as|strong="H3588"\w* \w slaves|strong="H5650"\w*. +\v 43 \w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w rule|strong="H7287"\w* \w over|strong="H7287"\w* \w him|strong="H3372"\w* \w with|strong="H7287"\w* harshness, \w but|strong="H3808"\w* \w shall|strong="H3808"\w* \w fear|strong="H3372"\w* \w your|strong="H3808"\w* \w God|strong="H3808"\w*. +\p +\v 44 “‘\w As|strong="H1961"\w* \w for|strong="H5650"\w* \w your|strong="H1961"\w* \w male|strong="H5650"\w* \w and|strong="H5650"\w* \w your|strong="H1961"\w* female \w slaves|strong="H5650"\w*, \w whom|strong="H1992"\w* \w you|strong="H1471"\w* \w may|strong="H1961"\w* \w have|strong="H1961"\w* \w from|strong="H1471"\w* \w the|strong="H5439"\w* \w nations|strong="H1471"\w* \w that|strong="H1471"\w* \w are|strong="H1992"\w* \w around|strong="H5439"\w* \w you|strong="H1471"\w*, \w from|strong="H1471"\w* \w them|strong="H1992"\w* \w you|strong="H1471"\w* \w may|strong="H1961"\w* \w buy|strong="H7069"\w* \w male|strong="H5650"\w* \w and|strong="H5650"\w* female \w slaves|strong="H5650"\w*. +\v 45 \w Moreover|strong="H1571"\w*, \w of|strong="H1121"\w* \w the|strong="H3205"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3205"\w* \w aliens|strong="H1481"\w* \w who|strong="H1121"\w* \w live|strong="H1481"\w* \w among|strong="H5973"\w* \w you|strong="H5973"\w*, \w of|strong="H1121"\w* \w them|strong="H1992"\w* \w you|strong="H5973"\w* \w may|strong="H1961"\w* \w buy|strong="H7069"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w their|strong="H1992"\w* \w families|strong="H4940"\w* \w who|strong="H1121"\w* \w are|strong="H1992"\w* \w with|strong="H5973"\w* \w you|strong="H5973"\w*, \w which|strong="H1992"\w* \w they|strong="H1992"\w* \w have|strong="H1961"\w* conceived \w in|strong="H1121"\w* \w your|strong="H1961"\w* \w land|strong="H4940"\w*; \w and|strong="H1121"\w* \w they|strong="H1992"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w your|strong="H1961"\w* property. +\v 46 \w You|strong="H3808"\w* \w may|strong="H3478"\w* \w make|strong="H5647"\w* \w them|strong="H3423"\w* \w an|strong="H5157"\w* \w inheritance|strong="H5157"\w* \w for|strong="H1121"\w* \w your|strong="H3808"\w* \w children|strong="H1121"\w* after \w you|strong="H3808"\w*, \w to|strong="H3478"\w* hold \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w possession|strong="H3423"\w*. \w Of|strong="H1121"\w* \w them|strong="H3423"\w* \w you|strong="H3808"\w* \w may|strong="H3478"\w* \w take|strong="H3423"\w* \w your|strong="H3808"\w* \w slaves|strong="H5647"\w* \w forever|strong="H5769"\w*, \w but|strong="H3808"\w* \w over|strong="H7287"\w* \w your|strong="H3808"\w* \w brothers|strong="H1121"\w* \w the|strong="H5647"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w you|strong="H3808"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w rule|strong="H7287"\w*, \w one|strong="H3808"\w* \w over|strong="H7287"\w* \w another|strong="H3808"\w*, \w with|strong="H3478"\w* harshness. +\p +\v 47 “‘\w If|strong="H3588"\w* \w an|strong="H3588"\w* \w alien|strong="H1616"\w* \w or|strong="H4376"\w* temporary \w resident|strong="H8453"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w* \w becomes|strong="H4134"\w* \w rich|strong="H5381"\w*, \w and|strong="H3027"\w* \w your|strong="H3588"\w* brother \w beside|strong="H3027"\w* \w him|strong="H3027"\w* \w has|strong="H3588"\w* grown \w poor|strong="H4134"\w*, \w and|strong="H3027"\w* \w sells|strong="H4376"\w* \w himself|strong="H3027"\w* \w to|strong="H3027"\w* \w the|strong="H3588"\w* \w stranger|strong="H1616"\w* \w or|strong="H4376"\w* \w foreigner|strong="H1616"\w* living \w among|strong="H5973"\w* \w you|strong="H3588"\w*, \w or|strong="H4376"\w* \w to|strong="H3027"\w* \w a|strong="H3068"\w* member \w of|strong="H3027"\w* \w the|strong="H3588"\w* \w stranger|strong="H1616"\w*’s \w family|strong="H4940"\w*, +\v 48 \w after|strong="H1961"\w* he \w is|strong="H1961"\w* \w sold|strong="H4376"\w* he \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w redeemed|strong="H1350"\w*. \w One|strong="H1961"\w* \w of|strong="H1350"\w* \w his|strong="H1961"\w* brothers \w may|strong="H1961"\w* \w redeem|strong="H1350"\w* \w him|strong="H1961"\w*; +\v 49 \w or|strong="H1121"\w* \w his|strong="H3027"\w* \w uncle|strong="H1730"\w*, \w or|strong="H1121"\w* \w his|strong="H3027"\w* \w uncle|strong="H1730"\w*’s \w son|strong="H1121"\w*, \w may|strong="H1121"\w* \w redeem|strong="H1350"\w* \w him|strong="H3027"\w*, \w or|strong="H1121"\w* any \w who|strong="H1121"\w* \w is|strong="H3027"\w* \w a|strong="H3068"\w* \w close|strong="H1350"\w* \w relative|strong="H1350"\w* \w to|strong="H3027"\w* \w him|strong="H3027"\w* \w of|strong="H1121"\w* \w his|strong="H3027"\w* \w family|strong="H4940"\w* \w may|strong="H1121"\w* \w redeem|strong="H1350"\w* \w him|strong="H3027"\w*; \w or|strong="H1121"\w* \w if|strong="H5381"\w* \w he|strong="H3027"\w* \w has|strong="H3027"\w* grown \w rich|strong="H5381"\w*, \w he|strong="H3027"\w* \w may|strong="H1121"\w* \w redeem|strong="H1350"\w* \w himself|strong="H3027"\w*. +\v 50 \w He|strong="H3117"\w* \w shall|strong="H3117"\w* \w reckon|strong="H2803"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w* \w who|strong="H4376"\w* \w bought|strong="H7069"\w* \w him|strong="H5973"\w* \w from|strong="H3117"\w* \w the|strong="H3117"\w* \w year|strong="H8141"\w* \w that|strong="H3117"\w* \w he|strong="H3117"\w* \w sold|strong="H4376"\w* \w himself|strong="H3117"\w* \w to|strong="H5704"\w* \w him|strong="H5973"\w* \w to|strong="H5704"\w* \w the|strong="H3117"\w* \w Year|strong="H8141"\w* \w of|strong="H3117"\w* \w Jubilee|strong="H3104"\w*. \w The|strong="H3117"\w* \w price|strong="H3701"\w* \w of|strong="H3117"\w* \w his|strong="H1961"\w* \w sale|strong="H4465"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w according|strong="H3701"\w* \w to|strong="H5704"\w* \w the|strong="H3117"\w* \w number|strong="H4557"\w* \w of|strong="H3117"\w* \w years|strong="H8141"\w*; \w he|strong="H3117"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w* \w according|strong="H3701"\w* \w to|strong="H5704"\w* \w the|strong="H3117"\w* \w time|strong="H3117"\w* \w of|strong="H3117"\w* \w a|strong="H3068"\w* \w hired|strong="H7916"\w* \w servant|strong="H7916"\w*. +\v 51 If \w there|strong="H7725"\w* \w are|strong="H8141"\w* \w yet|strong="H5750"\w* \w many|strong="H7227"\w* \w years|strong="H8141"\w*, \w according|strong="H6310"\w* \w to|strong="H7725"\w* \w them|strong="H7725"\w* \w he|strong="H8141"\w* \w shall|strong="H6310"\w* \w give|strong="H7725"\w* \w back|strong="H7725"\w* \w the|strong="H7725"\w* \w price|strong="H3701"\w* \w of|strong="H8141"\w* \w his|strong="H7725"\w* \w redemption|strong="H1353"\w* \w out|strong="H7725"\w* \w of|strong="H8141"\w* \w the|strong="H7725"\w* \w money|strong="H3701"\w* \w that|strong="H8141"\w* \w he|strong="H8141"\w* \w was|strong="H8141"\w* \w bought|strong="H4736"\w* \w for|strong="H3701"\w*. +\v 52 If \w there|strong="H7725"\w* \w remain|strong="H7604"\w* \w but|strong="H7725"\w* \w a|strong="H3068"\w* \w few|strong="H4592"\w* \w years|strong="H8141"\w* \w to|strong="H5704"\w* \w the|strong="H7725"\w* \w year|strong="H8141"\w* \w of|strong="H8141"\w* \w jubilee|strong="H3104"\w*, \w then|strong="H7725"\w* \w he|strong="H5704"\w* \w shall|strong="H6310"\w* \w reckon|strong="H2803"\w* \w with|strong="H7725"\w* \w him|strong="H7725"\w*; \w according|strong="H6310"\w* \w to|strong="H5704"\w* \w his|strong="H7725"\w* \w years|strong="H8141"\w* \w of|strong="H8141"\w* service \w he|strong="H5704"\w* \w shall|strong="H6310"\w* \w give|strong="H7725"\w* \w back|strong="H7725"\w* \w the|strong="H7725"\w* price \w of|strong="H8141"\w* \w his|strong="H7725"\w* \w redemption|strong="H1353"\w*. +\v 53 \w As|strong="H1961"\w* \w a|strong="H3068"\w* \w servant|strong="H7916"\w* \w hired|strong="H7916"\w* \w year|strong="H8141"\w* \w by|strong="H8141"\w* \w year|strong="H8141"\w* \w shall|strong="H5869"\w* \w he|strong="H3808"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*. \w He|strong="H3808"\w* \w shall|strong="H5869"\w* \w not|strong="H3808"\w* \w rule|strong="H7287"\w* \w with|strong="H5973"\w* harshness \w over|strong="H8141"\w* \w him|strong="H5973"\w* \w in|strong="H8141"\w* \w your|strong="H1961"\w* \w sight|strong="H5869"\w*. +\v 54 \w If|strong="H1931"\w* \w he|strong="H1931"\w* isn’t \w redeemed|strong="H1350"\w* \w by|strong="H8141"\w* \w these|strong="H1931"\w* means, \w then|strong="H3318"\w* \w he|strong="H1931"\w* \w shall|strong="H1121"\w* \w be|strong="H3808"\w* \w released|strong="H3318"\w* \w in|strong="H8141"\w* \w the|strong="H3318"\w* \w Year|strong="H8141"\w* \w of|strong="H1121"\w* \w Jubilee|strong="H3104"\w*: \w he|strong="H1931"\w* \w and|strong="H1121"\w* \w his|strong="H3808"\w* \w children|strong="H1121"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*. +\v 55 \w For|strong="H3588"\w* \w to|strong="H3318"\w* \w me|strong="H3318"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w are|strong="H1992"\w* \w servants|strong="H5650"\w*; \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w my|strong="H3068"\w* \w servants|strong="H5650"\w* \w whom|strong="H1992"\w* \w I|strong="H3588"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*. \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\c 26 +\p +\v 1 “‘\w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w make|strong="H6213"\w* \w for|strong="H3588"\w* \w yourselves|strong="H3068"\w* \w no|strong="H3808"\w* \w idols|strong="H6459"\w*, \w and|strong="H6965"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w a|strong="H3068"\w* \w carved|strong="H6213"\w* \w image|strong="H6459"\w* \w or|strong="H3808"\w* \w a|strong="H3068"\w* \w pillar|strong="H4676"\w*, \w and|strong="H6965"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w place|strong="H5414"\w* \w any|strong="H6213"\w* \w figured|strong="H4906"\w* stone \w in|strong="H5921"\w* \w your|strong="H3068"\w* land, \w to|strong="H3068"\w* \w bow|strong="H7812"\w* \w down|strong="H7812"\w* \w to|strong="H3068"\w* \w it|strong="H5414"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\p +\v 2 “‘\w You|strong="H3372"\w* \w shall|strong="H3068"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w Sabbaths|strong="H7676"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w reverence|strong="H3372"\w* \w for|strong="H3068"\w* \w my|strong="H8104"\w* \w sanctuary|strong="H4720"\w*. \w I|strong="H3068"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 3 “‘If \w you|strong="H6213"\w* \w walk|strong="H3212"\w* \w in|strong="H6213"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w* \w and|strong="H3212"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w commandments|strong="H4687"\w*, \w and|strong="H3212"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w*, +\v 4 \w then|strong="H5414"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w your|strong="H5414"\w* \w rains|strong="H1653"\w* \w in|strong="H6086"\w* \w their|strong="H5414"\w* \w season|strong="H6256"\w*, \w and|strong="H6086"\w* \w the|strong="H5414"\w* \w land|strong="H7704"\w* \w shall|strong="H7704"\w* \w yield|strong="H5414"\w* \w its|strong="H5414"\w* \w increase|strong="H2981"\w*, \w and|strong="H6086"\w* \w the|strong="H5414"\w* \w trees|strong="H6086"\w* \w of|strong="H7704"\w* \w the|strong="H5414"\w* \w field|strong="H7704"\w* \w shall|strong="H7704"\w* \w yield|strong="H5414"\w* \w their|strong="H5414"\w* \w fruit|strong="H6529"\w*. +\v 5 \w Your|strong="H2233"\w* \w threshing|strong="H1786"\w* \w shall|strong="H2233"\w* \w continue|strong="H3427"\w* \w until|strong="H5381"\w* \w the|strong="H3427"\w* \w vintage|strong="H1210"\w*, \w and|strong="H3899"\w* \w the|strong="H3427"\w* \w vintage|strong="H1210"\w* \w shall|strong="H2233"\w* \w continue|strong="H3427"\w* \w until|strong="H5381"\w* \w the|strong="H3427"\w* \w sowing|strong="H2233"\w* \w time|strong="H2233"\w*. \w You|strong="H5381"\w* \w shall|strong="H2233"\w* \w eat|strong="H3899"\w* \w your|strong="H2233"\w* \w bread|strong="H3899"\w* \w to|strong="H3427"\w* \w the|strong="H3427"\w* \w full|strong="H7648"\w*, \w and|strong="H3899"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w your|strong="H2233"\w* land safely. +\p +\v 6 “‘\w I|strong="H5414"\w* \w will|strong="H2719"\w* \w give|strong="H5414"\w* \w peace|strong="H7965"\w* \w in|strong="H7901"\w* \w the|strong="H5414"\w* land, \w and|strong="H2719"\w* \w you|strong="H5414"\w* \w shall|strong="H2719"\w* \w lie|strong="H7901"\w* \w down|strong="H7901"\w*, \w and|strong="H2719"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w will|strong="H2719"\w* \w make|strong="H5414"\w* \w you|strong="H5414"\w* \w afraid|strong="H2729"\w*. \w I|strong="H5414"\w* \w will|strong="H2719"\w* \w remove|strong="H5674"\w* \w evil|strong="H7451"\w* \w animals|strong="H2416"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H5414"\w* land, \w neither|strong="H3808"\w* \w shall|strong="H2719"\w* \w the|strong="H5414"\w* \w sword|strong="H2719"\w* \w go|strong="H5674"\w* \w through|strong="H5674"\w* \w your|strong="H5414"\w* land. +\v 7 \w You|strong="H6440"\w* \w shall|strong="H2719"\w* \w chase|strong="H7291"\w* \w your|strong="H6440"\w* enemies, \w and|strong="H2719"\w* \w they|strong="H6440"\w* \w shall|strong="H2719"\w* \w fall|strong="H5307"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w by|strong="H6440"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w*. +\v 8 \w Five|strong="H2568"\w* \w of|strong="H6440"\w* \w you|strong="H6440"\w* \w shall|strong="H2719"\w* \w chase|strong="H7291"\w* \w a|strong="H3068"\w* \w hundred|strong="H3967"\w*, \w and|strong="H3967"\w* \w a|strong="H3068"\w* \w hundred|strong="H3967"\w* \w of|strong="H6440"\w* \w you|strong="H6440"\w* \w shall|strong="H2719"\w* \w chase|strong="H7291"\w* \w ten|strong="H7233"\w* \w thousand|strong="H7233"\w*; \w and|strong="H3967"\w* \w your|strong="H6440"\w* enemies \w shall|strong="H2719"\w* \w fall|strong="H5307"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w by|strong="H6440"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w*. +\p +\v 9 “‘\w I|strong="H6965"\w* \w will|strong="H1285"\w* \w have|strong="H6437"\w* \w respect|strong="H6437"\w* \w for|strong="H6965"\w* \w you|strong="H6509"\w*, \w make|strong="H6509"\w* \w you|strong="H6509"\w* \w fruitful|strong="H6509"\w*, \w multiply|strong="H7235"\w* \w you|strong="H6509"\w*, \w and|strong="H6965"\w* \w will|strong="H1285"\w* \w establish|strong="H6965"\w* \w my|strong="H6965"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w you|strong="H6509"\w*. +\v 10 \w You|strong="H6440"\w* \w shall|strong="H6440"\w* eat \w old|strong="H3465"\w* supplies \w long|strong="H6440"\w* kept, \w and|strong="H6440"\w* \w you|strong="H6440"\w* \w shall|strong="H6440"\w* move \w out|strong="H3318"\w* \w the|strong="H6440"\w* \w old|strong="H3465"\w* \w because|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w new|strong="H2319"\w*. +\v 11 \w I|strong="H5414"\w* \w will|strong="H5315"\w* \w set|strong="H5414"\w* \w my|strong="H5414"\w* tent \w among|strong="H8432"\w* \w you|strong="H5414"\w*, \w and|strong="H5315"\w* \w my|strong="H5414"\w* \w soul|strong="H5315"\w* won’t \w abhor|strong="H1602"\w* \w you|strong="H5414"\w*. +\v 12 \w I|strong="H1980"\w* \w will|strong="H1961"\w* \w walk|strong="H1980"\w* \w among|strong="H8432"\w* \w you|strong="H8432"\w*, \w and|strong="H1980"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w your|strong="H1961"\w* God, \w and|strong="H1980"\w* \w you|strong="H8432"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w my|strong="H1961"\w* \w people|strong="H5971"\w*. +\v 13 \w I|strong="H4714"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w who|strong="H3068"\w* \w brought|strong="H3318"\w* \w you|strong="H3212"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w that|strong="H3068"\w* \w you|strong="H3212"\w* \w should|strong="H3068"\w* \w not|strong="H1961"\w* \w be|strong="H1961"\w* \w their|strong="H3068"\w* \w slaves|strong="H5650"\w*. \w I|strong="H4714"\w* \w have|strong="H1961"\w* \w broken|strong="H7665"\w* \w the|strong="H3068"\w* \w bars|strong="H4133"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w yoke|strong="H5923"\w*, \w and|strong="H3068"\w* \w made|strong="H1961"\w* \w you|strong="H3212"\w* \w walk|strong="H3212"\w* \w upright|strong="H6968"\w*. +\p +\v 14 “‘\w But|strong="H3808"\w* if \w you|strong="H3605"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H6213"\w* \w me|strong="H6213"\w*, \w and|strong="H8085"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* \w commandments|strong="H4687"\w*, +\v 15 \w and|strong="H4941"\w* if \w you|strong="H3605"\w* \w shall|strong="H5315"\w* \w reject|strong="H3988"\w* \w my|strong="H3605"\w* \w statutes|strong="H2708"\w*, \w and|strong="H4941"\w* if \w your|strong="H3605"\w* \w soul|strong="H5315"\w* \w abhors|strong="H1602"\w* \w my|strong="H3605"\w* \w ordinances|strong="H4941"\w*, \w so|strong="H6213"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w will|strong="H5315"\w* \w not|strong="H1115"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w commandments|strong="H4687"\w*, \w but|strong="H3605"\w* \w break|strong="H6565"\w* \w my|strong="H3605"\w* \w covenant|strong="H1285"\w*, +\v 16 \w I|strong="H5921"\w* \w also|strong="H6213"\w* \w will|strong="H5869"\w* \w do|strong="H6213"\w* \w this|strong="H2063"\w* \w to|strong="H5921"\w* \w you|strong="H5921"\w*: \w I|strong="H5921"\w* \w will|strong="H5869"\w* \w appoint|strong="H6485"\w* terror \w over|strong="H5921"\w* \w you|strong="H5921"\w*, \w even|strong="H6213"\w* \w consumption|strong="H7829"\w* \w and|strong="H5869"\w* \w fever|strong="H6920"\w*, \w that|strong="H5315"\w* \w shall|strong="H5315"\w* \w consume|strong="H3615"\w* \w the|strong="H5921"\w* \w eyes|strong="H5869"\w*, \w and|strong="H5869"\w* \w make|strong="H6213"\w* \w the|strong="H5921"\w* \w soul|strong="H5315"\w* \w to|strong="H5921"\w* \w pine|strong="H1727"\w* \w away|strong="H3615"\w*. \w You|strong="H5921"\w* \w will|strong="H5869"\w* \w sow|strong="H2232"\w* \w your|strong="H5921"\w* \w seed|strong="H2233"\w* \w in|strong="H5921"\w* \w vain|strong="H7385"\w*, \w for|strong="H5921"\w* \w your|strong="H5921"\w* enemies \w will|strong="H5869"\w* eat \w it|strong="H5921"\w*. +\v 17 \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w set|strong="H5414"\w* \w my|strong="H5414"\w* \w face|strong="H6440"\w* \w against|strong="H6440"\w* \w you|strong="H5414"\w*, \w and|strong="H6440"\w* \w you|strong="H5414"\w* \w will|strong="H5414"\w* \w be|strong="H5414"\w* \w struck|strong="H5062"\w* \w before|strong="H6440"\w* \w your|strong="H5414"\w* \w enemies|strong="H8130"\w*. \w Those|strong="H8130"\w* \w who|strong="H8130"\w* \w hate|strong="H8130"\w* \w you|strong="H5414"\w* \w will|strong="H5414"\w* \w rule|strong="H7287"\w* \w over|strong="H5414"\w* \w you|strong="H5414"\w*; \w and|strong="H6440"\w* \w you|strong="H5414"\w* \w will|strong="H5414"\w* \w flee|strong="H5127"\w* \w when|strong="H5127"\w* \w no|strong="H5414"\w* one \w pursues|strong="H7291"\w* \w you|strong="H5414"\w*. +\p +\v 18 “‘If \w you|strong="H5921"\w* \w in|strong="H5921"\w* \w spite|strong="H5921"\w* \w of|strong="H5921"\w* \w these|strong="H8085"\w* \w things|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H5704"\w* \w me|strong="H5921"\w*, \w then|strong="H3254"\w* \w I|strong="H5704"\w* \w will|strong="H3808"\w* \w chastise|strong="H3256"\w* \w you|strong="H5921"\w* \w seven|strong="H7651"\w* \w times|strong="H7651"\w* \w more|strong="H3254"\w* \w for|strong="H5704"\w* \w your|strong="H5921"\w* \w sins|strong="H2403"\w*. +\v 19 \w I|strong="H5414"\w* \w will|strong="H8064"\w* \w break|strong="H7665"\w* \w the|strong="H5414"\w* \w pride|strong="H1347"\w* \w of|strong="H1347"\w* \w your|strong="H5414"\w* \w power|strong="H5797"\w*, \w and|strong="H8064"\w* \w I|strong="H5414"\w* \w will|strong="H8064"\w* \w make|strong="H5414"\w* \w your|strong="H5414"\w* \w sky|strong="H8064"\w* \w like|strong="H8064"\w* \w iron|strong="H1270"\w*, \w and|strong="H8064"\w* \w your|strong="H5414"\w* soil \w like|strong="H8064"\w* \w bronze|strong="H5154"\w*. +\v 20 \w Your|strong="H5414"\w* \w strength|strong="H3581"\w* \w will|strong="H5414"\w* \w be|strong="H3808"\w* \w spent|strong="H8552"\w* \w in|strong="H6086"\w* \w vain|strong="H7385"\w*; \w for|strong="H6086"\w* \w your|strong="H5414"\w* land won’t \w yield|strong="H5414"\w* \w its|strong="H5414"\w* \w increase|strong="H2981"\w*, \w neither|strong="H3808"\w* \w will|strong="H5414"\w* \w the|strong="H5414"\w* \w trees|strong="H6086"\w* \w of|strong="H6086"\w* \w the|strong="H5414"\w* land \w yield|strong="H5414"\w* \w their|strong="H5414"\w* \w fruit|strong="H6529"\w*. +\p +\v 21 “‘If \w you|strong="H5921"\w* \w walk|strong="H3212"\w* \w contrary|strong="H7147"\w* \w to|strong="H3212"\w* \w me|strong="H5921"\w*, \w and|strong="H3212"\w* won’t \w listen|strong="H8085"\w* \w to|strong="H3212"\w* \w me|strong="H5921"\w*, \w then|strong="H3254"\w* \w I|strong="H5921"\w* \w will|strong="H3808"\w* \w bring|strong="H3212"\w* \w seven|strong="H7651"\w* \w times|strong="H7651"\w* \w more|strong="H3254"\w* \w plagues|strong="H4347"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w* \w according|strong="H5921"\w* \w to|strong="H3212"\w* \w your|strong="H5921"\w* \w sins|strong="H2403"\w*. +\v 22 \w I|strong="H3772"\w* \w will|strong="H7704"\w* \w send|strong="H7971"\w* \w the|strong="H7971"\w* \w wild|strong="H7704"\w* \w animals|strong="H2416"\w* \w among|strong="H7921"\w* \w you|strong="H7971"\w*, \w which|strong="H7704"\w* \w will|strong="H7704"\w* rob \w you|strong="H7971"\w* \w of|strong="H1870"\w* \w your|strong="H7971"\w* \w children|strong="H7921"\w*, \w destroy|strong="H3772"\w* \w your|strong="H7971"\w* livestock, \w and|strong="H7971"\w* \w make|strong="H3772"\w* \w you|strong="H7971"\w* \w few|strong="H4591"\w* \w in|strong="H1870"\w* \w number|strong="H4591"\w*. \w Your|strong="H7971"\w* \w roads|strong="H1870"\w* \w will|strong="H7704"\w* \w become|strong="H8074"\w* \w desolate|strong="H8074"\w*. +\p +\v 23 “‘If \w by|strong="H1980"\w* these \w things|strong="H5973"\w* \w you|strong="H5973"\w* won’t \w be|strong="H3808"\w* \w turned|strong="H3256"\w* \w back|strong="H1980"\w* \w to|strong="H1980"\w* \w me|strong="H5973"\w*, \w but|strong="H3808"\w* \w will|strong="H3808"\w* \w walk|strong="H1980"\w* \w contrary|strong="H7147"\w* \w to|strong="H1980"\w* \w me|strong="H5973"\w*, +\v 24 \w then|strong="H1980"\w* \w I|strong="H5921"\w* \w will|strong="H1571"\w* \w also|strong="H1571"\w* \w walk|strong="H1980"\w* \w contrary|strong="H7147"\w* \w to|strong="H1980"\w* \w you|strong="H5921"\w*; \w and|strong="H1980"\w* \w I|strong="H5921"\w* \w will|strong="H1571"\w* \w strike|strong="H5221"\w* \w you|strong="H5921"\w*, \w even|strong="H1571"\w* \w I|strong="H5921"\w*, \w seven|strong="H7651"\w* \w times|strong="H7651"\w* \w for|strong="H5921"\w* \w your|strong="H5921"\w* \w sins|strong="H2403"\w*. +\v 25 \w I|strong="H5414"\w* \w will|strong="H2719"\w* \w bring|strong="H5414"\w* \w a|strong="H3068"\w* \w sword|strong="H2719"\w* \w upon|strong="H5921"\w* \w you|strong="H5414"\w* \w that|strong="H5414"\w* \w will|strong="H2719"\w* \w execute|strong="H5414"\w* \w the|strong="H5921"\w* \w vengeance|strong="H5359"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w covenant|strong="H1285"\w*. \w You|strong="H5414"\w* \w will|strong="H2719"\w* \w be|strong="H3027"\w* \w gathered|strong="H5414"\w* \w together|strong="H5921"\w* \w within|strong="H8432"\w* \w your|strong="H5414"\w* \w cities|strong="H5892"\w*, \w and|strong="H7971"\w* \w I|strong="H5414"\w* \w will|strong="H2719"\w* \w send|strong="H7971"\w* \w the|strong="H5921"\w* \w pestilence|strong="H1698"\w* \w among|strong="H8432"\w* \w you|strong="H5414"\w*. \w You|strong="H5414"\w* \w will|strong="H2719"\w* \w be|strong="H3027"\w* \w delivered|strong="H5414"\w* \w into|strong="H8432"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* enemy. +\v 26 \w When|strong="H7725"\w* \w I|strong="H3808"\w* \w break|strong="H7665"\w* \w your|strong="H7725"\w* \w staff|strong="H4294"\w* \w of|strong="H4294"\w* \w bread|strong="H3899"\w*, \w ten|strong="H6235"\w* women \w shall|strong="H3808"\w* bake \w your|strong="H7725"\w* \w bread|strong="H3899"\w* \w in|strong="H3899"\w* \w one|strong="H3808"\w* \w oven|strong="H8574"\w*, \w and|strong="H7725"\w* \w they|strong="H3808"\w* \w shall|strong="H3808"\w* \w deliver|strong="H7725"\w* \w your|strong="H7725"\w* \w bread|strong="H3899"\w* \w again|strong="H7725"\w* \w by|strong="H3808"\w* \w weight|strong="H4948"\w*. \w You|strong="H7725"\w* \w shall|strong="H3808"\w* \w eat|strong="H3899"\w*, \w and|strong="H7725"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w satisfied|strong="H7646"\w*. +\p +\v 27 “‘If \w you|strong="H5973"\w* \w in|strong="H1980"\w* spite \w of|strong="H8085"\w* \w this|strong="H2063"\w* won’t \w listen|strong="H8085"\w* \w to|strong="H1980"\w* \w me|strong="H5973"\w*, \w but|strong="H3808"\w* \w walk|strong="H1980"\w* \w contrary|strong="H7147"\w* \w to|strong="H1980"\w* \w me|strong="H5973"\w*, +\v 28 \w then|strong="H1980"\w* \w I|strong="H5921"\w* \w will|strong="H2534"\w* \w walk|strong="H1980"\w* \w contrary|strong="H7147"\w* \w to|strong="H1980"\w* \w you|strong="H5921"\w* \w in|strong="H5921"\w* \w wrath|strong="H2534"\w*. \w I|strong="H5921"\w* \w will|strong="H2534"\w* also \w chastise|strong="H3256"\w* \w you|strong="H5921"\w* \w seven|strong="H7651"\w* \w times|strong="H7651"\w* \w for|strong="H5921"\w* \w your|strong="H5921"\w* \w sins|strong="H2403"\w*. +\v 29 \w You|strong="H1320"\w* \w will|strong="H1121"\w* eat \w the|strong="H1121"\w* \w flesh|strong="H1320"\w* \w of|strong="H1121"\w* \w your|strong="H1121"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w you|strong="H1320"\w* \w will|strong="H1121"\w* eat \w the|strong="H1121"\w* \w flesh|strong="H1320"\w* \w of|strong="H1121"\w* \w your|strong="H1121"\w* \w daughters|strong="H1323"\w*. +\v 30 \w I|strong="H5414"\w* \w will|strong="H5315"\w* \w destroy|strong="H8045"\w* \w your|strong="H5414"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*, \w and|strong="H5315"\w* \w cut|strong="H3772"\w* \w down|strong="H3772"\w* \w your|strong="H5414"\w* \w incense|strong="H2553"\w* \w altars|strong="H2553"\w*, \w and|strong="H5315"\w* \w cast|strong="H5414"\w* \w your|strong="H5414"\w* \w dead|strong="H5315"\w* \w bodies|strong="H6297"\w* \w upon|strong="H5921"\w* \w the|strong="H5921"\w* \w bodies|strong="H6297"\w* \w of|strong="H5921"\w* \w your|strong="H5414"\w* \w idols|strong="H1544"\w*; \w and|strong="H5315"\w* \w my|strong="H5414"\w* \w soul|strong="H5315"\w* \w will|strong="H5315"\w* \w abhor|strong="H1602"\w* \w you|strong="H5414"\w*. +\v 31 \w I|strong="H5414"\w* \w will|strong="H5892"\w* \w lay|strong="H5414"\w* \w your|strong="H5414"\w* \w cities|strong="H5892"\w* \w waste|strong="H2723"\w*, \w and|strong="H5892"\w* \w will|strong="H5892"\w* \w bring|strong="H5414"\w* \w your|strong="H5414"\w* \w sanctuaries|strong="H4720"\w* \w to|strong="H5414"\w* \w desolation|strong="H2723"\w*. \w I|strong="H5414"\w* \w will|strong="H5892"\w* \w not|strong="H3808"\w* \w take|strong="H5414"\w* \w delight|strong="H7381"\w* \w in|strong="H5892"\w* \w the|strong="H5414"\w* \w sweet|strong="H5207"\w* \w fragrance|strong="H7381"\w* \w of|strong="H5892"\w* \w your|strong="H5414"\w* offerings. +\v 32 \w I|strong="H5921"\w* \w will|strong="H3427"\w* \w bring|strong="H8074"\w* \w the|strong="H5921"\w* land \w into|strong="H5921"\w* \w desolation|strong="H8074"\w*, \w and|strong="H3427"\w* \w your|strong="H5921"\w* enemies \w who|strong="H3427"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w it|strong="H5921"\w* \w will|strong="H3427"\w* be \w astonished|strong="H8074"\w* \w at|strong="H3427"\w* \w it|strong="H5921"\w*. +\v 33 \w I|strong="H5892"\w* \w will|strong="H1961"\w* \w scatter|strong="H2219"\w* \w you|strong="H1471"\w* \w among|strong="H2719"\w* \w the|strong="H1961"\w* \w nations|strong="H1471"\w*, \w and|strong="H5892"\w* \w I|strong="H5892"\w* \w will|strong="H1961"\w* \w draw|strong="H7324"\w* \w out|strong="H7324"\w* \w the|strong="H1961"\w* \w sword|strong="H2719"\w* \w after|strong="H1961"\w* \w you|strong="H1471"\w*. \w Your|strong="H1961"\w* land \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w desolation|strong="H8077"\w*, \w and|strong="H5892"\w* \w your|strong="H1961"\w* \w cities|strong="H5892"\w* \w shall|strong="H1471"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w waste|strong="H2723"\w*. +\v 34 \w Then|strong="H3117"\w* \w the|strong="H3605"\w* land \w will|strong="H3117"\w* \w enjoy|strong="H7521"\w* \w its|strong="H3605"\w* \w Sabbaths|strong="H7676"\w* \w as|strong="H3117"\w* \w long|strong="H3117"\w* \w as|strong="H3117"\w* \w it|strong="H3117"\w* \w lies|strong="H8074"\w* \w desolate|strong="H8074"\w* \w and|strong="H3117"\w* \w you|strong="H3605"\w* \w are|strong="H3117"\w* \w in|strong="H3117"\w* \w your|strong="H3605"\w* enemies’ land. Even \w then|strong="H3117"\w* \w the|strong="H3605"\w* land \w will|strong="H3117"\w* \w rest|strong="H7673"\w* \w and|strong="H3117"\w* \w enjoy|strong="H7521"\w* \w its|strong="H3605"\w* \w Sabbaths|strong="H7676"\w*. +\v 35 \w As|strong="H3117"\w* \w long|strong="H3117"\w* \w as|strong="H3117"\w* \w it|strong="H5921"\w* \w lies|strong="H8074"\w* \w desolate|strong="H8074"\w* \w it|strong="H5921"\w* \w shall|strong="H3117"\w* \w have|strong="H3117"\w* \w rest|strong="H7673"\w*, \w even|strong="H3808"\w* \w the|strong="H3605"\w* \w rest|strong="H7673"\w* \w which|strong="H3117"\w* \w it|strong="H5921"\w* didn’t \w have|strong="H3117"\w* \w in|strong="H3427"\w* \w your|strong="H3605"\w* \w Sabbaths|strong="H7676"\w* \w when|strong="H3117"\w* \w you|strong="H3605"\w* \w lived|strong="H3427"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*. +\p +\v 36 “‘\w As|strong="H3824"\w* \w for|strong="H5127"\w* \w those|strong="H7291"\w* \w of|strong="H6963"\w* \w you|strong="H7291"\w* \w who|strong="H7604"\w* \w are|strong="H3824"\w* \w left|strong="H7604"\w*, \w I|strong="H6963"\w* \w will|strong="H2719"\w* send \w a|strong="H3068"\w* \w faintness|strong="H4816"\w* \w into|strong="H5307"\w* \w their|strong="H5307"\w* \w hearts|strong="H3824"\w* \w in|strong="H7604"\w* \w the|strong="H7291"\w* lands \w of|strong="H6963"\w* \w their|strong="H5307"\w* enemies. \w The|strong="H7291"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w a|strong="H3068"\w* \w driven|strong="H5086"\w* \w leaf|strong="H5929"\w* \w will|strong="H2719"\w* \w put|strong="H5127"\w* \w them|strong="H7291"\w* \w to|strong="H3824"\w* \w flight|strong="H5127"\w*; \w and|strong="H6963"\w* \w they|strong="H2719"\w* \w shall|strong="H2719"\w* \w flee|strong="H5127"\w*, \w as|strong="H3824"\w* \w one|strong="H6963"\w* \w flees|strong="H5127"\w* \w from|strong="H5127"\w* \w the|strong="H7291"\w* \w sword|strong="H2719"\w*. \w They|strong="H2719"\w* \w will|strong="H2719"\w* \w fall|strong="H5307"\w* \w when|strong="H5307"\w* \w no|strong="H7604"\w* \w one|strong="H6963"\w* \w pursues|strong="H7291"\w*. +\v 37 \w They|strong="H3808"\w* \w will|strong="H1961"\w* \w stumble|strong="H3782"\w* \w over|strong="H3782"\w* \w one|strong="H3808"\w* \w another|strong="H3808"\w*, \w as|strong="H1961"\w* \w it|strong="H6440"\w* \w were|strong="H1961"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w*, \w when|strong="H1961"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w pursues|strong="H7291"\w*. \w You|strong="H6440"\w* \w will|strong="H1961"\w* \w have|strong="H1961"\w* \w no|strong="H3808"\w* power \w to|strong="H1961"\w* \w stand|strong="H8617"\w* \w before|strong="H6440"\w* \w your|strong="H6440"\w* enemies. +\v 38 \w You|strong="H1471"\w* \w will|strong="H1471"\w* perish among \w the|strong="H1471"\w* \w nations|strong="H1471"\w*. \w The|strong="H1471"\w* land \w of|strong="H1471"\w* \w your|strong="H1471"\w* enemies \w will|strong="H1471"\w* eat \w you|strong="H1471"\w* up. +\v 39 Those \w of|strong="H5771"\w* \w you|strong="H5771"\w* \w who|strong="H7604"\w* \w are|strong="H5771"\w* \w left|strong="H7604"\w* \w will|strong="H5771"\w* pine \w away|strong="H4743"\w* \w in|strong="H7604"\w* \w their|strong="H5771"\w* \w iniquity|strong="H5771"\w* \w in|strong="H7604"\w* your enemies’ lands; \w and|strong="H5771"\w* also \w in|strong="H7604"\w* \w the|strong="H7604"\w* \w iniquities|strong="H5771"\w* \w of|strong="H5771"\w* \w their|strong="H5771"\w* fathers they \w shall|strong="H5771"\w* pine \w away|strong="H4743"\w* \w with|strong="H5771"\w* them. +\p +\v 40 “‘If they \w confess|strong="H3034"\w* \w their|strong="H3034"\w* \w iniquity|strong="H5771"\w* \w and|strong="H1980"\w* \w the|strong="H5973"\w* \w iniquity|strong="H5771"\w* \w of|strong="H5771"\w* \w their|strong="H3034"\w* fathers, \w in|strong="H1980"\w* \w their|strong="H3034"\w* \w trespass|strong="H4604"\w* which they \w trespassed|strong="H4603"\w* \w against|strong="H5973"\w* \w me|strong="H5973"\w*; \w and|strong="H1980"\w* also \w that|strong="H1980"\w* \w because|strong="H5973"\w* they \w walked|strong="H1980"\w* \w contrary|strong="H7147"\w* \w to|strong="H1980"\w* \w me|strong="H5973"\w*, +\v 41 \w I|strong="H3212"\w* also \w walked|strong="H3212"\w* \w contrary|strong="H7147"\w* \w to|strong="H3212"\w* \w them|strong="H3665"\w*, \w and|strong="H3212"\w* \w brought|strong="H3212"\w* \w them|strong="H3665"\w* \w into|strong="H3212"\w* \w the|strong="H5973"\w* land \w of|strong="H5771"\w* \w their|strong="H3665"\w* enemies; if then \w their|strong="H3665"\w* \w uncircumcised|strong="H6189"\w* \w heart|strong="H3824"\w* \w is|strong="H5771"\w* \w humbled|strong="H3665"\w*, \w and|strong="H3212"\w* \w they|strong="H3824"\w* then \w accept|strong="H7521"\w* \w the|strong="H5973"\w* \w punishment|strong="H5771"\w* \w of|strong="H5771"\w* \w their|strong="H3665"\w* \w iniquity|strong="H5771"\w*, +\v 42 then \w I|strong="H2142"\w* \w will|strong="H3290"\w* \w remember|strong="H2142"\w* \w my|strong="H2142"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w Jacob|strong="H3290"\w*, \w my|strong="H2142"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w Isaac|strong="H3327"\w*, \w and|strong="H1285"\w* also \w my|strong="H2142"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* Abraham; \w and|strong="H1285"\w* \w I|strong="H2142"\w* \w will|strong="H3290"\w* \w remember|strong="H2142"\w* \w the|strong="H2142"\w* land. +\v 43 \w The|strong="H5800"\w* land \w also|strong="H5315"\w* \w will|strong="H5315"\w* \w be|strong="H5315"\w* \w left|strong="H5800"\w* \w by|strong="H5771"\w* \w them|strong="H1992"\w*, \w and|strong="H4941"\w* \w will|strong="H5315"\w* \w enjoy|strong="H7521"\w* \w its|strong="H7521"\w* \w Sabbaths|strong="H7676"\w* \w while|strong="H4941"\w* \w it|strong="H4941"\w* \w lies|strong="H8074"\w* \w desolate|strong="H8074"\w* without \w them|strong="H1992"\w*; \w and|strong="H4941"\w* \w they|strong="H1992"\w* \w will|strong="H5315"\w* \w accept|strong="H7521"\w* \w the|strong="H5800"\w* \w punishment|strong="H5771"\w* \w of|strong="H4941"\w* \w their|strong="H1992"\w* \w iniquity|strong="H5771"\w* \w because|strong="H3282"\w* \w they|strong="H1992"\w* \w rejected|strong="H3988"\w* \w my|strong="H5800"\w* \w ordinances|strong="H4941"\w*, \w and|strong="H4941"\w* \w their|strong="H1992"\w* \w soul|strong="H5315"\w* \w abhorred|strong="H3988"\w* \w my|strong="H5800"\w* \w statutes|strong="H2708"\w*. +\v 44 \w Yet|strong="H3588"\w* \w for|strong="H3588"\w* \w all|strong="H1571"\w* \w that|strong="H3588"\w*, \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* land \w of|strong="H3068"\w* \w their|strong="H3068"\w* enemies, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w reject|strong="H3988"\w* \w them|strong="H3615"\w*, \w neither|strong="H3808"\w* \w will|strong="H3068"\w* \w I|strong="H3588"\w* \w abhor|strong="H1602"\w* \w them|strong="H3615"\w*, \w to|strong="H3068"\w* \w destroy|strong="H3615"\w* \w them|strong="H3615"\w* \w utterly|strong="H3988"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w break|strong="H6565"\w* \w my|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H3068"\w* \w them|strong="H3615"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 45 \w But|strong="H1961"\w* \w I|strong="H4714"\w* \w will|strong="H3068"\w* \w for|strong="H4714"\w* \w their|strong="H3068"\w* sake \w remember|strong="H2142"\w* \w the|strong="H3068"\w* \w covenant|strong="H1285"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w ancestors|strong="H7223"\w*, \w whom|strong="H5869"\w* \w I|strong="H4714"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w sight|strong="H5869"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w nations|strong="H1471"\w*, \w that|strong="H3068"\w* \w I|strong="H4714"\w* \w might|strong="H3068"\w* \w be|strong="H1961"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*. \w I|strong="H4714"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w*.’” +\p +\v 46 These \w are|strong="H1121"\w* \w the|strong="H5414"\w* \w statutes|strong="H2706"\w*, \w ordinances|strong="H4941"\w*, \w and|strong="H1121"\w* \w laws|strong="H8451"\w*, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H5414"\w* \w between|strong="H4941"\w* \w him|strong="H5414"\w* \w and|strong="H1121"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w in|strong="H3478"\w* \w Mount|strong="H2022"\w* \w Sinai|strong="H5514"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w*. +\c 27 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w say|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H1121"\w*, ‘\w When|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* consecrates \w a|strong="H3068"\w* \w person|strong="H5315"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3478"\w* \w a|strong="H3068"\w* \w vow|strong="H5088"\w*, according \w to|strong="H1696"\w* \w your|strong="H3068"\w* \w valuation|strong="H6187"\w*, +\v 3 \w your|strong="H1961"\w* \w valuation|strong="H6187"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w male|strong="H2145"\w* \w from|strong="H1121"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w to|strong="H5704"\w* \w sixty|strong="H8346"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w fifty|strong="H2572"\w* \w shekels|strong="H8255"\w* \w of|strong="H1121"\w* \w silver|strong="H3701"\w*, \w according|strong="H3701"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w shekel|strong="H8255"\w*\f + \fr 27:3 \ft A shekel is about 10 grams or about 0.35 ounces.\f* \w of|strong="H1121"\w* \w the|strong="H5704"\w* \w sanctuary|strong="H6944"\w*. +\v 4 \w If|strong="H1961"\w* \w she|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w female|strong="H5347"\w*, \w then|strong="H1961"\w* \w your|strong="H1961"\w* \w valuation|strong="H6187"\w* \w shall|strong="H1931"\w* \w be|strong="H1961"\w* \w thirty|strong="H7970"\w* \w shekels|strong="H8255"\w*. +\v 5 \w If|strong="H1961"\w* \w the|strong="H5704"\w* person \w is|strong="H1121"\w* \w from|strong="H1121"\w* \w five|strong="H2568"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w to|strong="H5704"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*, \w then|strong="H1961"\w* \w your|strong="H1961"\w* \w valuation|strong="H6187"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w for|strong="H5704"\w* \w a|strong="H3068"\w* \w male|strong="H2145"\w* \w twenty|strong="H6242"\w* \w shekels|strong="H8255"\w*, \w and|strong="H1121"\w* \w for|strong="H5704"\w* \w a|strong="H3068"\w* \w female|strong="H5347"\w* \w ten|strong="H6235"\w* \w shekels|strong="H8255"\w*. +\v 6 \w If|strong="H1961"\w* \w the|strong="H5704"\w* person \w is|strong="H3701"\w* \w from|strong="H1121"\w* \w a|strong="H3068"\w* \w month|strong="H2320"\w* \w old|strong="H1121"\w* \w to|strong="H5704"\w* \w five|strong="H2568"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*, \w then|strong="H1961"\w* \w your|strong="H1961"\w* \w valuation|strong="H6187"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w for|strong="H5704"\w* \w a|strong="H3068"\w* \w male|strong="H2145"\w* \w five|strong="H2568"\w* \w shekels|strong="H8255"\w* \w of|strong="H1121"\w* \w silver|strong="H3701"\w*, \w and|strong="H1121"\w* \w for|strong="H5704"\w* \w a|strong="H3068"\w* \w female|strong="H5347"\w* \w your|strong="H1961"\w* \w valuation|strong="H6187"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w three|strong="H7969"\w* \w shekels|strong="H8255"\w* \w of|strong="H1121"\w* \w silver|strong="H3701"\w*. +\v 7 \w If|strong="H1961"\w* \w the|strong="H1961"\w* person \w is|strong="H1121"\w* \w from|strong="H1121"\w* \w sixty|strong="H8346"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*; \w if|strong="H1961"\w* \w he|strong="H2568"\w* \w is|strong="H1121"\w* \w a|strong="H3068"\w* \w male|strong="H2145"\w*, \w then|strong="H1961"\w* \w your|strong="H1961"\w* \w valuation|strong="H6187"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w fifteen|strong="H2568"\w* \w shekels|strong="H8255"\w*, \w and|strong="H1121"\w* \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w female|strong="H5347"\w* \w ten|strong="H6235"\w* \w shekels|strong="H8255"\w*. +\v 8 \w But|strong="H1931"\w* \w if|strong="H5381"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w poorer|strong="H4134"\w* \w than|strong="H5921"\w* \w your|strong="H5921"\w* \w valuation|strong="H6187"\w*, \w then|strong="H5975"\w* \w he|strong="H1931"\w* \w shall|strong="H3548"\w* \w be|strong="H3027"\w* \w set|strong="H5975"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w*, \w and|strong="H3027"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* assign \w a|strong="H3068"\w* \w value|strong="H6186"\w* \w to|strong="H5921"\w* \w him|strong="H6440"\w*. \w The|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* assign \w a|strong="H3068"\w* \w value|strong="H6186"\w* \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w his|strong="H6440"\w* \w ability|strong="H3027"\w* \w to|strong="H5921"\w* pay. +\p +\v 9 “‘\w If|strong="H1961"\w* \w it|strong="H5414"\w* \w is|strong="H3068"\w* \w an|strong="H7126"\w* \w animal|strong="H1961"\w* \w of|strong="H3068"\w* \w which|strong="H3068"\w* \w men|strong="H3605"\w* \w offer|strong="H7126"\w* \w an|strong="H7126"\w* \w offering|strong="H7133"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w any|strong="H3605"\w* \w man|strong="H3605"\w* \w gives|strong="H5414"\w* \w of|strong="H3068"\w* \w such|strong="H1961"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w becomes|strong="H1961"\w* \w holy|strong="H6944"\w*. +\v 10 \w He|strong="H1931"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w alter|strong="H2498"\w* \w it|strong="H1931"\w*, \w nor|strong="H3808"\w* \w exchange|strong="H4171"\w* \w it|strong="H1931"\w*, \w a|strong="H3068"\w* \w good|strong="H2896"\w* \w for|strong="H7451"\w* \w a|strong="H3068"\w* \w bad|strong="H7451"\w*, \w or|strong="H3808"\w* \w a|strong="H3068"\w* \w bad|strong="H7451"\w* \w for|strong="H7451"\w* \w a|strong="H3068"\w* \w good|strong="H2896"\w*. \w If|strong="H1961"\w* \w he|strong="H1931"\w* \w shall|strong="H3808"\w* \w at|strong="H1961"\w* \w all|strong="H4171"\w* \w exchange|strong="H4171"\w* \w animal|strong="H1961"\w* \w for|strong="H7451"\w* \w animal|strong="H1961"\w*, \w then|strong="H1961"\w* both \w it|strong="H1931"\w* \w and|strong="H2896"\w* \w that|strong="H1931"\w* \w for|strong="H7451"\w* \w which|strong="H1931"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w exchanged|strong="H8545"\w* \w shall|strong="H3808"\w* \w be|strong="H1961"\w* \w holy|strong="H6944"\w*. +\v 11 If \w it|strong="H7126"\w* \w is|strong="H3068"\w* \w any|strong="H3605"\w* \w unclean|strong="H2931"\w* animal, \w of|strong="H3068"\w* \w which|strong="H3068"\w* \w they|strong="H3068"\w* \w do|strong="H3068"\w* \w not|strong="H3808"\w* \w offer|strong="H7126"\w* \w as|strong="H3068"\w* \w an|strong="H7126"\w* \w offering|strong="H7133"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w then|strong="H7126"\w* \w he|strong="H3068"\w* \w shall|strong="H3548"\w* \w set|strong="H5975"\w* \w the|strong="H3605"\w* animal \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w*; +\v 12 \w and|strong="H3548"\w* \w the|strong="H1961"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* evaluate \w it|strong="H3651"\w*, whether \w it|strong="H3651"\w* \w is|strong="H2896"\w* \w good|strong="H2896"\w* \w or|strong="H2896"\w* \w bad|strong="H7451"\w*. \w As|strong="H1961"\w* \w the|strong="H1961"\w* \w priest|strong="H3548"\w* evaluates \w it|strong="H3651"\w*, \w so|strong="H3651"\w* \w it|strong="H3651"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w*. +\v 13 \w But|strong="H1350"\w* if \w he|strong="H5921"\w* \w will|strong="H1350"\w* indeed \w redeem|strong="H1350"\w* \w it|strong="H5921"\w*, \w then|strong="H3254"\w* \w he|strong="H5921"\w* \w shall|strong="H1350"\w* \w add|strong="H3254"\w* \w the|strong="H5921"\w* \w fifth|strong="H2549"\w* \w part|strong="H2549"\w* \w of|strong="H5921"\w* \w it|strong="H5921"\w* \w to|strong="H5921"\w* \w its|strong="H5921"\w* \w valuation|strong="H6187"\w*. +\p +\v 14 “‘\w When|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H7451"\w* dedicates \w his|strong="H3068"\w* \w house|strong="H1004"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w holy|strong="H6944"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w then|strong="H6965"\w* \w the|strong="H3588"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* evaluate \w it|strong="H3588"\w*, whether \w it|strong="H3588"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w* \w or|strong="H2896"\w* \w bad|strong="H7451"\w*. \w As|strong="H3651"\w* \w the|strong="H3588"\w* \w priest|strong="H3548"\w* evaluates \w it|strong="H3588"\w*, \w so|strong="H3651"\w* \w it|strong="H3588"\w* \w shall|strong="H3548"\w* \w stand|strong="H6965"\w*. +\v 15 \w If|strong="H1961"\w* \w he|strong="H1004"\w* who dedicates \w it|strong="H5921"\w* \w will|strong="H1961"\w* \w redeem|strong="H1350"\w* \w his|strong="H5921"\w* \w house|strong="H1004"\w*, \w then|strong="H1961"\w* \w he|strong="H1004"\w* \w shall|strong="H1004"\w* \w add|strong="H3254"\w* \w the|strong="H5921"\w* \w fifth|strong="H2549"\w* \w part|strong="H2549"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w money|strong="H3701"\w* \w of|strong="H1004"\w* \w your|strong="H5921"\w* \w valuation|strong="H6187"\w* \w to|strong="H1961"\w* \w it|strong="H5921"\w*, \w and|strong="H3701"\w* \w it|strong="H5921"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w* \w his|strong="H5921"\w*. +\p +\v 16 “‘\w If|strong="H1961"\w* \w a|strong="H3068"\w* man dedicates \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* part \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w field|strong="H7704"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w possession|strong="H2233"\w*, \w then|strong="H1961"\w* \w your|strong="H3068"\w* \w valuation|strong="H6187"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w according|strong="H6310"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w seed|strong="H2233"\w* \w for|strong="H3068"\w* \w it|strong="H1961"\w*. \w The|strong="H3068"\w* \w sowing|strong="H2233"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w homer|strong="H2563"\w*\f + \fr 27:16 \ft 1 homer is about 220 liters or 6 bushels\f* \w of|strong="H3068"\w* \w barley|strong="H8184"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* valued \w at|strong="H3068"\w* \w fifty|strong="H2572"\w* \w shekels|strong="H8255"\w*\f + \fr 27:16 \ft A shekel is about 10 grams or about 0.35 ounces.\f* \w of|strong="H3068"\w* \w silver|strong="H3701"\w*. +\v 17 If \w he|strong="H8141"\w* dedicates \w his|strong="H6965"\w* \w field|strong="H7704"\w* \w from|strong="H6965"\w* \w the|strong="H6965"\w* \w Year|strong="H8141"\w* \w of|strong="H8141"\w* \w Jubilee|strong="H3104"\w*, according \w to|strong="H6965"\w* \w your|strong="H6965"\w* \w valuation|strong="H6187"\w* \w it|strong="H6942"\w* \w shall|strong="H7704"\w* \w stand|strong="H6965"\w*. +\v 18 \w But|strong="H3498"\w* if \w he|strong="H5704"\w* dedicates \w his|strong="H5921"\w* \w field|strong="H7704"\w* \w after|strong="H5921"\w* \w the|strong="H5921"\w* \w Jubilee|strong="H3104"\w*, \w then|strong="H3548"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w reckon|strong="H2803"\w* \w to|strong="H5704"\w* \w him|strong="H5921"\w* \w the|strong="H5921"\w* \w money|strong="H3701"\w* \w according|strong="H5921"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w years|strong="H8141"\w* \w that|strong="H3548"\w* \w remain|strong="H3498"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w Year|strong="H8141"\w* \w of|strong="H8141"\w* \w Jubilee|strong="H3104"\w*; \w and|strong="H3701"\w* \w an|strong="H2803"\w* abatement \w shall|strong="H3548"\w* \w be|strong="H6310"\w* \w made|strong="H8141"\w* \w from|strong="H5921"\w* \w your|strong="H5921"\w* \w valuation|strong="H6187"\w*. +\v 19 If \w he|strong="H5921"\w* who \w dedicated|strong="H6942"\w* \w the|strong="H5921"\w* \w field|strong="H7704"\w* \w will|strong="H7704"\w* indeed \w redeem|strong="H1350"\w* \w it|strong="H5921"\w*, \w then|strong="H6965"\w* \w he|strong="H5921"\w* \w shall|strong="H7704"\w* \w add|strong="H3254"\w* \w the|strong="H5921"\w* \w fifth|strong="H2549"\w* \w part|strong="H2549"\w* \w of|strong="H7704"\w* \w the|strong="H5921"\w* \w money|strong="H3701"\w* \w of|strong="H7704"\w* \w your|strong="H5921"\w* \w valuation|strong="H6187"\w* \w to|strong="H5921"\w* \w it|strong="H5921"\w*, \w and|strong="H6965"\w* \w it|strong="H5921"\w* \w shall|strong="H7704"\w* \w remain|strong="H6965"\w* \w his|strong="H5921"\w*. +\v 20 If \w he|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w redeem|strong="H1350"\w* \w the|strong="H3808"\w* \w field|strong="H7704"\w*, \w or|strong="H3808"\w* if \w he|strong="H3808"\w* \w has|strong="H7704"\w* \w sold|strong="H4376"\w* \w the|strong="H3808"\w* \w field|strong="H7704"\w* \w to|strong="H7704"\w* \w another|strong="H5750"\w* man, \w it|strong="H3808"\w* \w shall|strong="H7704"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w redeemed|strong="H1350"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*; +\v 21 \w but|strong="H1961"\w* \w the|strong="H3068"\w* \w field|strong="H7704"\w*, \w when|strong="H1961"\w* \w it|strong="H1961"\w* \w goes|strong="H3318"\w* \w out|strong="H3318"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w Jubilee|strong="H3104"\w*, \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w holy|strong="H6944"\w* \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w*, \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w devoted|strong="H2764"\w* \w field|strong="H7704"\w*. \w It|strong="H1961"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* owned \w by|strong="H3068"\w* \w the|strong="H3068"\w* \w priests|strong="H3548"\w*. +\p +\v 22 “‘If \w he|strong="H3068"\w* dedicates \w a|strong="H3068"\w* \w field|strong="H7704"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w bought|strong="H4736"\w*, \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w not|strong="H3808"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w field|strong="H7704"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w possession|strong="H4736"\w*, +\v 23 \w then|strong="H5414"\w* \w the|strong="H5414"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w reckon|strong="H2803"\w* \w to|strong="H5704"\w* \w him|strong="H5414"\w* \w the|strong="H5414"\w* \w worth|strong="H4373"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w valuation|strong="H6187"\w* \w up|strong="H5414"\w* \w to|strong="H5704"\w* \w the|strong="H5414"\w* \w Year|strong="H8141"\w* \w of|strong="H3068"\w* \w Jubilee|strong="H3104"\w*; \w and|strong="H3068"\w* \w he|strong="H1931"\w* \w shall|strong="H3548"\w* \w give|strong="H5414"\w* \w your|strong="H3068"\w* \w valuation|strong="H6187"\w* \w on|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w as|strong="H5704"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w thing|strong="H6944"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w*. +\v 24 \w In|strong="H8141"\w* \w the|strong="H7725"\w* \w Year|strong="H8141"\w* \w of|strong="H8141"\w* \w Jubilee|strong="H3104"\w* \w the|strong="H7725"\w* \w field|strong="H7704"\w* \w shall|strong="H7704"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w him|strong="H7725"\w* \w from|strong="H7725"\w* whom \w it|strong="H7725"\w* \w was|strong="H8141"\w* \w bought|strong="H7069"\w*, even \w to|strong="H7725"\w* \w him|strong="H7725"\w* \w to|strong="H7725"\w* whom \w the|strong="H7725"\w* possession \w of|strong="H8141"\w* \w the|strong="H7725"\w* \w land|strong="H7704"\w* belongs. +\v 25 \w All|strong="H3605"\w* \w your|strong="H3605"\w* valuations shall \w be|strong="H1961"\w* according \w to|strong="H1961"\w* \w the|strong="H3605"\w* \w shekel|strong="H8255"\w* \w of|strong="H8255"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w*: \w twenty|strong="H6242"\w* \w gerahs|strong="H1626"\w*\f + \fr 27:25 \ft A gerah is about 0.5 grams or about 7.7 grains.\f* \w to|strong="H1961"\w* \w the|strong="H3605"\w* \w shekel|strong="H8255"\w*.\f + \fr 27:25 \ft A shekel is about 10 grams or about 0.35 ounces.\f* +\p +\v 26 “‘However \w the|strong="H3068"\w* \w firstborn|strong="H1060"\w* \w among|strong="H3808"\w* animals, \w which|strong="H1931"\w* belongs \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w as|strong="H3068"\w* \w a|strong="H3068"\w* \w firstborn|strong="H1060"\w*, \w no|strong="H3808"\w* man \w may|strong="H3068"\w* \w dedicate|strong="H6942"\w*, whether \w an|strong="H3068"\w* \w ox|strong="H7794"\w* \w or|strong="H3808"\w* \w a|strong="H3068"\w* \w sheep|strong="H7716"\w*. \w It|strong="H1931"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s. +\v 27 If \w it|strong="H5921"\w* \w is|strong="H1350"\w* \w an|strong="H5921"\w* \w unclean|strong="H2931"\w* animal, \w then|strong="H3254"\w* \w he|strong="H3808"\w* \w shall|strong="H3808"\w* \w buy|strong="H1350"\w* \w it|strong="H5921"\w* \w back|strong="H1350"\w* \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w your|strong="H5921"\w* \w valuation|strong="H6187"\w*, \w and|strong="H3254"\w* \w shall|strong="H3808"\w* \w add|strong="H3254"\w* \w to|strong="H5921"\w* \w it|strong="H5921"\w* \w the|strong="H5921"\w* \w fifth|strong="H2549"\w* \w part|strong="H2549"\w* \w of|strong="H5921"\w* \w it|strong="H5921"\w*; \w or|strong="H3808"\w* if \w it|strong="H5921"\w* isn’t \w redeemed|strong="H1350"\w*, \w then|strong="H3254"\w* \w it|strong="H5921"\w* \w shall|strong="H3808"\w* \w be|strong="H3808"\w* \w sold|strong="H4376"\w* \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w your|strong="H5921"\w* \w valuation|strong="H6187"\w*. +\p +\v 28 “‘Notwithstanding, \w no|strong="H3808"\w* \w devoted|strong="H2764"\w* \w thing|strong="H2764"\w* \w that|strong="H3605"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* devotes \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H1931"\w* \w has|strong="H3068"\w*, whether \w of|strong="H3068"\w* \w man|strong="H3605"\w* \w or|strong="H3808"\w* animal, \w or|strong="H3808"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* possession, \w shall|strong="H3068"\w* \w be|strong="H3808"\w* \w sold|strong="H4376"\w* \w or|strong="H3808"\w* \w redeemed|strong="H1350"\w*. \w Everything|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3068"\w* permanently \w devoted|strong="H2764"\w* \w is|strong="H3068"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 29 “‘\w No|strong="H3808"\w* \w one|strong="H3605"\w* \w devoted|strong="H2764"\w* \w to|strong="H4191"\w* \w destruction|strong="H2764"\w*, \w who|strong="H3605"\w* \w shall|strong="H3808"\w* \w be|strong="H4191"\w* \w devoted|strong="H2764"\w* \w from|strong="H4480"\w* \w among|strong="H4480"\w* \w men|strong="H3605"\w*, \w shall|strong="H3808"\w* \w be|strong="H4191"\w* \w ransomed|strong="H6299"\w*. \w He|strong="H3605"\w* \w shall|strong="H3808"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. +\p +\v 30 “‘\w All|strong="H3605"\w* \w the|strong="H3605"\w* \w tithe|strong="H4643"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* land, whether \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w seed|strong="H2233"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* land \w or|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w fruit|strong="H6529"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w trees|strong="H6086"\w*, \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s. \w It|strong="H1931"\w* \w is|strong="H3068"\w* \w holy|strong="H6944"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 31 If \w a|strong="H3068"\w* man \w redeems|strong="H1350"\w* anything \w of|strong="H5921"\w* \w his|strong="H5921"\w* \w tithe|strong="H4643"\w*, \w he|strong="H5921"\w* \w shall|strong="H1350"\w* \w add|strong="H3254"\w* \w a|strong="H3068"\w* \w fifth|strong="H2549"\w* \w part|strong="H2549"\w* \w to|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 32 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w tithe|strong="H4643"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w herds|strong="H1241"\w* \w or|strong="H1241"\w* \w the|strong="H3605"\w* \w flocks|strong="H6629"\w*, \w whatever|strong="H3605"\w* \w passes|strong="H5674"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w rod|strong="H7626"\w*, \w the|strong="H3605"\w* \w tenth|strong="H6224"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w holy|strong="H6944"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 33 \w He|strong="H1931"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w examine|strong="H1239"\w* whether \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w good|strong="H2896"\w* \w or|strong="H3808"\w* \w bad|strong="H7451"\w*, \w neither|strong="H3808"\w* \w shall|strong="H3808"\w* \w he|strong="H1931"\w* \w exchange|strong="H4171"\w* \w it|strong="H1931"\w*. \w If|strong="H1961"\w* \w he|strong="H1931"\w* \w exchanges|strong="H4171"\w* \w it|strong="H1931"\w* \w at|strong="H1961"\w* \w all|strong="H1350"\w*, \w then|strong="H1961"\w* both \w it|strong="H1931"\w* \w and|strong="H2896"\w* \w that|strong="H1931"\w* \w for|strong="H7451"\w* \w which|strong="H1931"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w exchanged|strong="H8545"\w* \w shall|strong="H3808"\w* \w be|strong="H1961"\w* \w holy|strong="H6944"\w*. \w It|strong="H1931"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w redeemed|strong="H1350"\w*.’” +\p +\v 34 These \w are|strong="H1121"\w* \w the|strong="H3068"\w* \w commandments|strong="H4687"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w on|strong="H3068"\w* \w Mount|strong="H2022"\w* \w Sinai|strong="H5514"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/05-NUMeng-web.usfm b/bibles/eng-web_usfm/05-NUMeng-web.usfm new file mode 100644 index 0000000..de30a25 --- /dev/null +++ b/bibles/eng-web_usfm/05-NUMeng-web.usfm @@ -0,0 +1,1943 @@ +\id NUM World English Bible (WEB) +\ide UTF-8 +\h Numbers +\toc1 The Fourth Book of Moses, Commonly Called Numbers +\toc2 Numbers +\toc3 Num +\mt2 The Fourth Book of Moses, +\mt3 Commonly Called +\mt1 Numbers +\c 1 +\p +\v 1 \w Yahweh|strong="H3068"\w*\f + \fr 1:1 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w wilderness|strong="H4057"\w* \w of|strong="H3068"\w* \w Sinai|strong="H5514"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, \w on|strong="H3068"\w* \w the|strong="H3068"\w* first \w day|strong="H2320"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w second|strong="H8145"\w* \w month|strong="H2320"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w second|strong="H8145"\w* \w year|strong="H8141"\w* \w after|strong="H3318"\w* \w they|strong="H3068"\w* \w had|strong="H3068"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Take|strong="H5375"\w* \w a|strong="H3068"\w* \w census|strong="H7218"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w by|strong="H3478"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w*, \w by|strong="H3478"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, according \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w names|strong="H8034"\w*, \w every|strong="H3605"\w* \w male|strong="H2145"\w*, \w one|strong="H3605"\w* \w by|strong="H3478"\w* \w one|strong="H3605"\w*, +\v 3 \w from|strong="H3318"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H1121"\w* able \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w war|strong="H6635"\w* \w in|strong="H8141"\w* \w Israel|strong="H3478"\w*. \w You|strong="H3605"\w* \w and|strong="H1121"\w* Aaron \w shall|strong="H1121"\w* \w count|strong="H8141"\w* \w them|strong="H3318"\w* \w by|strong="H8141"\w* \w their|strong="H3605"\w* divisions. +\v 4 \w With|strong="H1004"\w* \w you|strong="H1004"\w* \w there|strong="H1961"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w man|strong="H7218"\w* \w of|strong="H1004"\w* \w every|strong="H7218"\w* \w tribe|strong="H4294"\w*, each \w one|strong="H1931"\w* \w head|strong="H7218"\w* \w of|strong="H1004"\w* \w his|strong="H1961"\w* fathers’ \w house|strong="H1004"\w*. +\v 5 These \w are|strong="H1121"\w* \w the|strong="H5975"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H5975"\w* \w men|strong="H1121"\w* \w who|strong="H1121"\w* \w shall|strong="H1121"\w* \w stand|strong="H5975"\w* \w with|strong="H5975"\w* you: +\p \w Of|strong="H1121"\w* \w Reuben|strong="H7205"\w*: Elizur \w the|strong="H5975"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shedeur|strong="H7707"\w*. +\p +\v 6 \w Of|strong="H1121"\w* \w Simeon|strong="H8095"\w*: \w Shelumiel|strong="H8017"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zurishaddai|strong="H6701"\w*. +\p +\v 7 \w Of|strong="H1121"\w* \w Judah|strong="H3063"\w*: \w Nahshon|strong="H5177"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Amminadab|strong="H5992"\w*. +\p +\v 8 \w Of|strong="H1121"\w* \w Issachar|strong="H3485"\w*: \w Nethanel|strong="H5417"\w* \w the|strong="H5417"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zuar|strong="H6686"\w*. +\p +\v 9 \w Of|strong="H1121"\w* \w Zebulun|strong="H2074"\w*: Eliab \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Helon|strong="H2497"\w*. +\p +\v 10 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w*: \w of|strong="H1121"\w* Ephraim: Elishama \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammihud|strong="H5989"\w*; \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*: \w Gamaliel|strong="H1583"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Pedahzur|strong="H6301"\w*. +\p +\v 11 \w Of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*: Abidan \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Gideoni|strong="H1441"\w*. +\p +\v 12 \w Of|strong="H1121"\w* \w Dan|strong="H1835"\w*: Ahiezer \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammishaddai|strong="H5996"\w*. +\p +\v 13 \w Of|strong="H1121"\w* Asher: \w Pagiel|strong="H6295"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ochran|strong="H5918"\w*. +\p +\v 14 \w Of|strong="H1121"\w* \w Gad|strong="H1410"\w*: Eliasaph \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Deuel|strong="H1845"\w*. +\p +\v 15 \w Of|strong="H1121"\w* \w Naphtali|strong="H5321"\w*: Ahira \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Enan|strong="H5881"\w*.” +\p +\v 16 \w These|strong="H1992"\w* \w are|strong="H1992"\w* \w those|strong="H1992"\w* \w who|strong="H3478"\w* \w were|strong="H3478"\w* \w called|strong="H7148"\w* \w of|strong="H4294"\w* \w the|strong="H3478"\w* \w congregation|strong="H5712"\w*, \w the|strong="H3478"\w* \w princes|strong="H5387"\w*\f + \fr 1:16 \ft or, chiefs, or, leaders\f* \w of|strong="H4294"\w* \w the|strong="H3478"\w* \w tribes|strong="H4294"\w* \w of|strong="H4294"\w* \w their|strong="H1992"\w* fathers; \w they|strong="H1992"\w* \w were|strong="H3478"\w* \w the|strong="H3478"\w* \w heads|strong="H7218"\w* \w of|strong="H4294"\w* \w the|strong="H3478"\w* thousands \w of|strong="H4294"\w* \w Israel|strong="H3478"\w*. +\v 17 \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron \w took|strong="H3947"\w* \w these|strong="H3947"\w* \w men|strong="H8034"\w* who \w are|strong="H8034"\w* mentioned \w by|strong="H5344"\w* \w name|strong="H8034"\w*. +\v 18 \w They|strong="H5921"\w* \w assembled|strong="H6950"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w together|strong="H6950"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w first|strong="H1121"\w* \w day|strong="H2320"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w second|strong="H8145"\w* \w month|strong="H2320"\w*; \w and|strong="H1121"\w* \w they|strong="H5921"\w* declared \w their|strong="H3605"\w* \w ancestry|strong="H3205"\w* \w by|strong="H5921"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w*, \w by|strong="H5921"\w* \w their|strong="H3605"\w* \w fathers|strong="H3205"\w*’ \w houses|strong="H1004"\w*, \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w names|strong="H8034"\w*, \w from|strong="H5921"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w one|strong="H3605"\w* \w by|strong="H5921"\w* \w one|strong="H3605"\w*. +\v 19 \w As|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*, \w so|strong="H6485"\w* \w he|strong="H3068"\w* \w counted|strong="H6485"\w* \w them|strong="H6680"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w wilderness|strong="H4057"\w* \w of|strong="H3068"\w* \w Sinai|strong="H5514"\w*. +\p +\v 20 \w The|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w*, \w Israel|strong="H3478"\w*’s \w firstborn|strong="H1060"\w*, \w their|strong="H3605"\w* \w generations|strong="H8435"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, according \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w names|strong="H8034"\w*, \w one|strong="H3605"\w* \w by|strong="H8141"\w* \w one|strong="H3605"\w*, \w every|strong="H3605"\w* \w male|strong="H2145"\w* \w from|strong="H3318"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* able \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w war|strong="H6635"\w*: +\v 21 those \w who|strong="H6485"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H4294"\w* \w them|strong="H6485"\w*, \w of|strong="H4294"\w* \w the|strong="H6485"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Reuben|strong="H7205"\w*, \w were|strong="H6485"\w* forty-six thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w*. +\p +\v 22 \w Of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Simeon|strong="H8095"\w*, \w their|strong="H3605"\w* \w generations|strong="H8435"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w counted|strong="H6485"\w* \w of|strong="H1121"\w* \w it|strong="H8034"\w*, according \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w names|strong="H8034"\w*, \w one|strong="H3605"\w* \w by|strong="H8141"\w* \w one|strong="H3605"\w*, \w every|strong="H3605"\w* \w male|strong="H2145"\w* \w from|strong="H3318"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* able \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w war|strong="H6635"\w*: +\v 23 those \w who|strong="H6485"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H4294"\w* \w them|strong="H6485"\w*, \w of|strong="H4294"\w* \w the|strong="H6485"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Simeon|strong="H8095"\w*, \w were|strong="H6485"\w* fifty-nine thousand \w three|strong="H7969"\w* \w hundred|strong="H3967"\w*. +\p +\v 24 \w Of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w*, \w their|strong="H3605"\w* \w generations|strong="H8435"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, according \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w names|strong="H8034"\w*, \w from|strong="H3318"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* able \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w war|strong="H6635"\w*: +\v 25 those \w who|strong="H6485"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H4294"\w* \w them|strong="H6485"\w*, \w of|strong="H4294"\w* \w the|strong="H6485"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Gad|strong="H1410"\w*, \w were|strong="H6485"\w* forty-five thousand \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w*. +\p +\v 26 \w Of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w their|strong="H3605"\w* \w generations|strong="H8435"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, according \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w names|strong="H8034"\w*, \w from|strong="H3318"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* able \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w war|strong="H6635"\w*: +\v 27 those \w who|strong="H3063"\w* \w were|strong="H3063"\w* \w counted|strong="H6485"\w* \w of|strong="H4294"\w* \w them|strong="H6485"\w*, \w of|strong="H4294"\w* \w the|strong="H6485"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Judah|strong="H3063"\w*, \w were|strong="H3063"\w* seventy-four thousand \w six|strong="H8337"\w* \w hundred|strong="H3967"\w*. +\p +\v 28 \w Of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Issachar|strong="H3485"\w*, \w their|strong="H3605"\w* \w generations|strong="H8435"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, according \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w names|strong="H8034"\w*, \w from|strong="H3318"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* able \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w war|strong="H6635"\w*: +\v 29 those \w who|strong="H6485"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H4294"\w* \w them|strong="H6485"\w*, \w of|strong="H4294"\w* \w the|strong="H6485"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Issachar|strong="H3485"\w*, \w were|strong="H6485"\w* fifty-four thousand four \w hundred|strong="H3967"\w*. +\p +\v 30 \w Of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Zebulun|strong="H2074"\w*, \w their|strong="H3605"\w* \w generations|strong="H8435"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, according \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w names|strong="H8034"\w*, \w from|strong="H3318"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* able \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w war|strong="H6635"\w*: +\v 31 those \w who|strong="H6485"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H4294"\w* \w them|strong="H6485"\w*, \w of|strong="H4294"\w* \w the|strong="H6485"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Zebulun|strong="H2074"\w*, \w were|strong="H6485"\w* fifty-seven thousand four \w hundred|strong="H3967"\w*. +\p +\v 32 \w Of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w*: \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ephraim|strong="H8034"\w*, \w their|strong="H3605"\w* \w generations|strong="H8435"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, according \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w names|strong="H8034"\w*, \w from|strong="H3318"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* able \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w war|strong="H6635"\w*: +\v 33 those \w who|strong="H6485"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H4294"\w* \w them|strong="H6485"\w*, \w of|strong="H4294"\w* \w the|strong="H6485"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* Ephraim, \w were|strong="H6485"\w* forty thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w*. +\p +\v 34 \w Of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*, \w their|strong="H3605"\w* \w generations|strong="H8435"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, according \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w names|strong="H8034"\w*, \w from|strong="H3318"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* able \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w war|strong="H6635"\w*: +\v 35 those \w who|strong="H6485"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H4294"\w* \w them|strong="H8147"\w*, \w of|strong="H4294"\w* \w the|strong="H6485"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Manasseh|strong="H4519"\w*, \w were|strong="H6485"\w* \w thirty-two|strong="H7970"\w* thousand \w two|strong="H8147"\w* \w hundred|strong="H3967"\w*. +\p +\v 36 \w Of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*, \w their|strong="H3605"\w* \w generations|strong="H8435"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, according \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w names|strong="H8034"\w*, \w from|strong="H3318"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* able \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w war|strong="H6635"\w*: +\v 37 those \w who|strong="H1144"\w* \w were|strong="H1144"\w* \w counted|strong="H6485"\w* \w of|strong="H4294"\w* \w them|strong="H6485"\w*, \w of|strong="H4294"\w* \w the|strong="H6485"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Benjamin|strong="H1144"\w*, \w were|strong="H1144"\w* \w thirty-five|strong="H7970"\w* thousand four \w hundred|strong="H3967"\w*. +\p +\v 38 \w Of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w*, \w their|strong="H3605"\w* \w generations|strong="H8435"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, according \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w names|strong="H8034"\w*, \w from|strong="H3318"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* able \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w war|strong="H6635"\w*: +\v 39 those \w who|strong="H6485"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H4294"\w* \w them|strong="H8147"\w*, \w of|strong="H4294"\w* \w the|strong="H6485"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Dan|strong="H1835"\w*, \w were|strong="H6485"\w* \w sixty-two|strong="H8346"\w* thousand \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w*. +\p +\v 40 \w Of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Asher, \w their|strong="H3605"\w* \w generations|strong="H8435"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, according \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w names|strong="H8034"\w*, \w from|strong="H3318"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* able \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w war|strong="H6635"\w*: +\v 41 those \w who|strong="H6485"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H4294"\w* \w them|strong="H6485"\w*, \w of|strong="H4294"\w* \w the|strong="H6485"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* Asher, \w were|strong="H6485"\w* forty-one thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w*. +\p +\v 42 \w Of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Naphtali|strong="H5321"\w*, \w their|strong="H3605"\w* \w generations|strong="H8435"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, according \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w names|strong="H8034"\w*, \w from|strong="H3318"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* able \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w war|strong="H6635"\w*: +\v 43 those \w who|strong="H6485"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H4294"\w* \w them|strong="H6485"\w*, \w of|strong="H4294"\w* \w the|strong="H6485"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Naphtali|strong="H5321"\w*, \w were|strong="H6485"\w* fifty-three thousand \w four|strong="H7969"\w* \w hundred|strong="H3967"\w*. +\p +\v 44 \w These|strong="H8147"\w* \w are|strong="H3478"\w* \w those|strong="H1961"\w* \w who|strong="H3478"\w* \w were|strong="H3478"\w* \w counted|strong="H6485"\w*, whom \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron \w counted|strong="H6485"\w*, \w and|strong="H4872"\w* \w the|strong="H6485"\w* \w twelve|strong="H8147"\w* \w men|strong="H6485"\w* \w who|strong="H3478"\w* \w were|strong="H3478"\w* \w princes|strong="H5387"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w each|strong="H8147"\w* \w one|strong="H1961"\w* \w for|strong="H1004"\w* \w his|strong="H3478"\w* fathers’ \w house|strong="H1004"\w*. +\v 45 \w So|strong="H1961"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w counted|strong="H6485"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w by|strong="H8141"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, \w from|strong="H3318"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* able \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w war|strong="H6635"\w* \w in|strong="H8141"\w* \w Israel|strong="H3478"\w*— +\v 46 \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w counted|strong="H6485"\w* \w were|strong="H1961"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w three|strong="H7969"\w* thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w*. +\v 47 \w But|strong="H3808"\w* \w the|strong="H8432"\w* \w Levites|strong="H3881"\w* after \w the|strong="H8432"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w their|strong="H8432"\w* fathers \w were|strong="H3881"\w* \w not|strong="H3808"\w* \w counted|strong="H6485"\w* \w among|strong="H8432"\w* \w them|strong="H8432"\w*. +\v 48 \w For|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 49 “Only \w the|strong="H5375"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Levi|strong="H3881"\w* \w you|strong="H3808"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w count|strong="H5375"\w*, \w neither|strong="H3808"\w* \w shall|strong="H1121"\w* \w you|strong="H3808"\w* \w take|strong="H5375"\w* \w a|strong="H3068"\w* \w census|strong="H7218"\w* \w of|strong="H1121"\w* \w them|strong="H5375"\w* \w among|strong="H8432"\w* \w the|strong="H5375"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; +\v 50 \w but|strong="H1992"\w* \w appoint|strong="H6485"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w Tabernacle|strong="H4908"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w Testimony|strong="H5715"\w*, \w and|strong="H3881"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w furnishings|strong="H3627"\w*, \w and|strong="H3881"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* belongs \w to|strong="H5921"\w* \w it|strong="H5921"\w*. \w They|strong="H1992"\w* \w shall|strong="H3881"\w* \w carry|strong="H5375"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w* \w and|strong="H3881"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w furnishings|strong="H3627"\w*; \w and|strong="H3881"\w* \w they|strong="H1992"\w* \w shall|strong="H3881"\w* \w take|strong="H5375"\w* \w care|strong="H6485"\w* \w of|strong="H3627"\w* \w it|strong="H5921"\w*, \w and|strong="H3881"\w* \w shall|strong="H3881"\w* \w encamp|strong="H2583"\w* \w around|strong="H5439"\w* \w it|strong="H5921"\w*. +\v 51 \w When|strong="H5265"\w* \w the|strong="H7126"\w* \w tabernacle|strong="H4908"\w* \w is|strong="H4191"\w* \w to|strong="H3381"\w* \w move|strong="H5265"\w*, \w the|strong="H7126"\w* \w Levites|strong="H3881"\w* \w shall|strong="H3881"\w* \w take|strong="H3381"\w* \w it|strong="H7126"\w* \w down|strong="H3381"\w*; \w and|strong="H6965"\w* \w when|strong="H5265"\w* \w the|strong="H7126"\w* \w tabernacle|strong="H4908"\w* \w is|strong="H4191"\w* \w to|strong="H3381"\w* \w be|strong="H4191"\w* \w set|strong="H5265"\w* \w up|strong="H6965"\w*, \w the|strong="H7126"\w* \w Levites|strong="H3881"\w* \w shall|strong="H3881"\w* \w set|strong="H5265"\w* \w it|strong="H7126"\w* \w up|strong="H6965"\w*. \w The|strong="H7126"\w* \w stranger|strong="H2114"\w* \w who|strong="H3881"\w* \w comes|strong="H3381"\w* \w near|strong="H7126"\w* \w shall|strong="H3881"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H3381"\w* \w death|strong="H4191"\w*. +\v 52 \w The|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w shall|strong="H1121"\w* \w pitch|strong="H2583"\w* \w their|strong="H5921"\w* \w tents|strong="H4264"\w*, \w every|strong="H4264"\w* \w man|strong="H1121"\w* \w by|strong="H5921"\w* \w his|strong="H5921"\w* own \w camp|strong="H4264"\w*, \w and|strong="H1121"\w* \w every|strong="H4264"\w* \w man|strong="H1121"\w* \w by|strong="H5921"\w* \w his|strong="H5921"\w* own \w standard|strong="H1714"\w*, \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w their|strong="H5921"\w* divisions. +\v 53 \w But|strong="H3808"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w* \w shall|strong="H1121"\w* \w encamp|strong="H2583"\w* \w around|strong="H5439"\w* \w the|strong="H5921"\w* \w Tabernacle|strong="H4908"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w Testimony|strong="H5715"\w*, \w that|strong="H3478"\w* \w there|strong="H1961"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w no|strong="H3808"\w* \w wrath|strong="H7110"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w The|strong="H5921"\w* \w Levites|strong="H3881"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* responsible \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w Tabernacle|strong="H4908"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w Testimony|strong="H5715"\w*.” +\p +\v 54 \w Thus|strong="H3651"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w did|strong="H6213"\w*. According \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*, \w so|strong="H3651"\w* \w they|strong="H3651"\w* \w did|strong="H6213"\w*. +\c 2 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* \w to|strong="H1696"\w* Aaron, \w saying|strong="H1696"\w*, +\v 2 “\w The|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w shall|strong="H1121"\w* \w encamp|strong="H2583"\w* \w every|strong="H5439"\w* \w man|strong="H1121"\w* \w by|strong="H5921"\w* \w his|strong="H5921"\w* own \w standard|strong="H1714"\w*, \w with|strong="H1004"\w* \w the|strong="H5921"\w* banners \w of|strong="H1121"\w* \w their|strong="H5921"\w* fathers’ \w houses|strong="H1004"\w*. \w They|strong="H5921"\w* \w shall|strong="H1121"\w* \w encamp|strong="H2583"\w* \w around|strong="H5439"\w* \w the|strong="H5921"\w* \w Tent|strong="H2583"\w* \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w* \w at|strong="H2583"\w* \w a|strong="H3068"\w* distance \w from|strong="H5921"\w* \w it|strong="H5921"\w*. +\p +\v 3 “\w Those|strong="H2583"\w* \w who|strong="H1121"\w* \w encamp|strong="H2583"\w* \w on|strong="H2583"\w* \w the|strong="H1121"\w* \w east|strong="H4217"\w* \w side|strong="H4217"\w* toward \w the|strong="H1121"\w* \w sunrise|strong="H4217"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w standard|strong="H1714"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w camp|strong="H4264"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, according \w to|strong="H1121"\w* \w their|strong="H6635"\w* divisions. \w The|strong="H1121"\w* \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w Nahshon|strong="H5177"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Amminadab|strong="H5992"\w*. +\v 4 \w His|strong="H6485"\w* division, \w and|strong="H3967"\w* those \w who|strong="H6635"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H6635"\w* \w them|strong="H6485"\w*, \w were|strong="H6485"\w* seventy-four thousand \w six|strong="H8337"\w* \w hundred|strong="H3967"\w*. +\p +\v 5 “\w Those|strong="H5921"\w* \w who|strong="H1121"\w* \w encamp|strong="H2583"\w* \w next|strong="H5921"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w the|strong="H5921"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Issachar|strong="H3485"\w*. \w The|strong="H5921"\w* \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Issachar|strong="H3485"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w Nethanel|strong="H5417"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zuar|strong="H6686"\w*. +\v 6 \w His|strong="H6485"\w* division, \w and|strong="H3967"\w* those \w who|strong="H6635"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H6635"\w* it, \w were|strong="H6485"\w* fifty-four thousand four \w hundred|strong="H3967"\w*. +\p +\v 7 “\w The|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Zebulun|strong="H2074"\w*: \w the|strong="H1121"\w* \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Zebulun|strong="H2074"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* Eliab \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Helon|strong="H2497"\w*. +\v 8 \w His|strong="H6485"\w* division, \w and|strong="H3967"\w* those \w who|strong="H6635"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H6635"\w* it, \w were|strong="H6485"\w* fifty-seven thousand four \w hundred|strong="H3967"\w*. +\p +\v 9 “\w All|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H3063"\w* \w counted|strong="H6485"\w* \w of|strong="H6635"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w of|strong="H6635"\w* \w Judah|strong="H3063"\w* \w were|strong="H3063"\w* \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* \w eighty-six|strong="H8084"\w* thousand four \w hundred|strong="H3967"\w*, according \w to|strong="H3063"\w* \w their|strong="H3605"\w* divisions. \w They|strong="H3605"\w* \w shall|strong="H3063"\w* \w set|strong="H5265"\w* \w out|strong="H5265"\w* \w first|strong="H7223"\w*. +\p +\v 10 “\w On|strong="H6635"\w* \w the|strong="H1121"\w* \w south|strong="H8486"\w* \w side|strong="H8486"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w the|strong="H1121"\w* \w standard|strong="H1714"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w camp|strong="H4264"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* according \w to|strong="H1121"\w* \w their|strong="H6635"\w* divisions. \w The|strong="H1121"\w* \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* Elizur \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shedeur|strong="H7707"\w*. +\v 11 \w His|strong="H6485"\w* division, \w and|strong="H3967"\w* those \w who|strong="H6635"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H6635"\w* it, \w were|strong="H6485"\w* forty-six thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w*. +\p +\v 12 “\w Those|strong="H5921"\w* \w who|strong="H1121"\w* \w encamp|strong="H2583"\w* \w next|strong="H5921"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w the|strong="H5921"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Simeon|strong="H8095"\w*. \w The|strong="H5921"\w* \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Simeon|strong="H8095"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w Shelumiel|strong="H8017"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zurishaddai|strong="H6701"\w*. +\v 13 \w His|strong="H6485"\w* division, \w and|strong="H3967"\w* those \w who|strong="H6635"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H6635"\w* \w them|strong="H6485"\w*, \w were|strong="H6485"\w* fifty-nine thousand \w three|strong="H7969"\w* \w hundred|strong="H3967"\w*. +\p +\v 14 “\w The|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w*: \w the|strong="H1121"\w* \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* Eliasaph \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuel|strong="H7467"\w*. +\v 15 \w His|strong="H6485"\w* division, \w and|strong="H3967"\w* those \w who|strong="H6635"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H6635"\w* \w them|strong="H6485"\w*, \w were|strong="H6485"\w* forty-five thousand \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w*. +\p +\v 16 “\w All|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H6635"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w of|strong="H6635"\w* \w Reuben|strong="H7205"\w* \w were|strong="H6485"\w* \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* fifty-one thousand four \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w*, according \w to|strong="H4264"\w* \w their|strong="H3605"\w* \w armies|strong="H6635"\w*. \w They|strong="H3605"\w* \w shall|strong="H6635"\w* \w set|strong="H5265"\w* \w out|strong="H5265"\w* \w second|strong="H8145"\w*. +\p +\v 17 “\w Then|strong="H3651"\w* \w the|strong="H5921"\w* \w Tent|strong="H2583"\w* \w of|strong="H3027"\w* \w Meeting|strong="H4150"\w* \w shall|strong="H3881"\w* \w set|strong="H5265"\w* \w out|strong="H5265"\w*, \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w camp|strong="H4264"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w camps|strong="H4264"\w*. \w As|strong="H3651"\w* \w they|strong="H3651"\w* \w encamp|strong="H2583"\w*, \w so|strong="H3651"\w* \w shall|strong="H3881"\w* \w they|strong="H3651"\w* \w set|strong="H5265"\w* \w out|strong="H5265"\w*, \w every|strong="H4264"\w* man \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w place|strong="H3027"\w*, \w by|strong="H3027"\w* \w their|strong="H5921"\w* \w standards|strong="H1714"\w*. +\p +\v 18 “\w On|strong="H3220"\w* \w the|strong="H1121"\w* \w west|strong="H3220"\w* \w side|strong="H3220"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w the|strong="H1121"\w* \w standard|strong="H1714"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w camp|strong="H4264"\w* \w of|strong="H1121"\w* Ephraim according \w to|strong="H1121"\w* \w their|strong="H6635"\w* divisions. \w The|strong="H1121"\w* \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Ephraim \w shall|strong="H1121"\w* \w be|strong="H1121"\w* Elishama \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammihud|strong="H5989"\w*. +\v 19 \w His|strong="H6485"\w* division, \w and|strong="H3967"\w* those \w who|strong="H6635"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H6635"\w* \w them|strong="H6485"\w*, \w were|strong="H6485"\w* forty thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w*. +\p +\v 20 “\w Next|strong="H5921"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w the|strong="H5921"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*. \w The|strong="H5921"\w* \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w Gamaliel|strong="H1583"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Pedahzur|strong="H6301"\w*. +\v 21 \w His|strong="H6485"\w* division, \w and|strong="H3967"\w* those \w who|strong="H6635"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H6635"\w* \w them|strong="H8147"\w*, \w were|strong="H6485"\w* \w thirty-two|strong="H7970"\w* thousand \w two|strong="H8147"\w* \w hundred|strong="H3967"\w*. +\p +\v 22 “\w The|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*: \w the|strong="H1121"\w* \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* Abidan \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Gideoni|strong="H1441"\w*. +\v 23 \w His|strong="H6485"\w* \w army|strong="H6635"\w*, \w and|strong="H3967"\w* those \w who|strong="H6635"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H6635"\w* \w them|strong="H6485"\w*, \w were|strong="H6485"\w* \w thirty-five|strong="H7970"\w* thousand four \w hundred|strong="H3967"\w*. +\p +\v 24 “\w All|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H6635"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w of|strong="H6635"\w* Ephraim \w were|strong="H6485"\w* \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* \w eight|strong="H8083"\w* thousand \w one|strong="H3605"\w* \w hundred|strong="H3967"\w*, according \w to|strong="H4264"\w* \w their|strong="H3605"\w* divisions. \w They|strong="H3605"\w* \w shall|strong="H6635"\w* \w set|strong="H5265"\w* \w out|strong="H5265"\w* \w third|strong="H7992"\w*. +\p +\v 25 “\w On|strong="H6635"\w* \w the|strong="H1121"\w* \w north|strong="H6828"\w* \w side|strong="H6828"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w the|strong="H1121"\w* \w standard|strong="H1714"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w camp|strong="H4264"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w* according \w to|strong="H1121"\w* \w their|strong="H1835"\w* divisions. \w The|strong="H1121"\w* \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* Ahiezer \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammishaddai|strong="H5996"\w*. +\v 26 \w His|strong="H6485"\w* division, \w and|strong="H3967"\w* those \w who|strong="H6635"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H6635"\w* \w them|strong="H8147"\w*, \w were|strong="H6485"\w* \w sixty-two|strong="H8346"\w* thousand \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w*. +\p +\v 27 “\w Those|strong="H5921"\w* \w who|strong="H1121"\w* \w encamp|strong="H2583"\w* \w next|strong="H5921"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w the|strong="H5921"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* Asher. \w The|strong="H5921"\w* \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Asher \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w Pagiel|strong="H6295"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ochran|strong="H5918"\w*. +\v 28 \w His|strong="H6485"\w* division, \w and|strong="H3967"\w* those \w who|strong="H6635"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H6635"\w* \w them|strong="H6485"\w*, \w were|strong="H6485"\w* forty-one thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w*. +\p +\v 29 “\w The|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Naphtali|strong="H5321"\w*: \w the|strong="H1121"\w* \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Naphtali|strong="H5321"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* Ahira \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Enan|strong="H5881"\w*. +\v 30 \w His|strong="H6485"\w* division, \w and|strong="H3967"\w* those \w who|strong="H6635"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H6635"\w* \w them|strong="H6485"\w*, \w were|strong="H6485"\w* fifty-three thousand \w four|strong="H7969"\w* \w hundred|strong="H3967"\w*. +\p +\v 31 “\w All|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H4264"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w of|strong="H4264"\w* \w Dan|strong="H1835"\w* \w were|strong="H6485"\w* \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* fifty-seven thousand \w six|strong="H8337"\w* \w hundred|strong="H3967"\w*. \w They|strong="H3605"\w* \w shall|strong="H1835"\w* \w set|strong="H5265"\w* \w out|strong="H5265"\w* last \w by|strong="H6485"\w* \w their|strong="H3605"\w* \w standards|strong="H1714"\w*.” +\p +\v 32 \w These|strong="H3605"\w* \w are|strong="H1121"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w counted|strong="H6485"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w by|strong="H3478"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*. \w All|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w counted|strong="H6485"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w camps|strong="H4264"\w* according \w to|strong="H3478"\w* \w their|strong="H3605"\w* \w armies|strong="H6635"\w* \w were|strong="H3478"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w three|strong="H7969"\w* thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w*. +\v 33 \w But|strong="H3808"\w* \w the|strong="H8432"\w* \w Levites|strong="H3881"\w* \w were|strong="H3478"\w* \w not|strong="H3808"\w* \w counted|strong="H6485"\w* \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\p +\v 34 \w Thus|strong="H3651"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w did|strong="H6213"\w*. \w According|strong="H5921"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*, \w so|strong="H3651"\w* \w they|strong="H3651"\w* \w encamped|strong="H2583"\w* \w by|strong="H5921"\w* \w their|strong="H3605"\w* \w standards|strong="H1714"\w*, \w and|strong="H1121"\w* \w so|strong="H3651"\w* \w they|strong="H3651"\w* \w set|strong="H5265"\w* \w out|strong="H5265"\w*, \w everyone|strong="H3605"\w* \w by|strong="H5921"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w*, \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*. +\c 3 +\p +\v 1 \w Now|strong="H3117"\w* \w this|strong="H1696"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w history|strong="H8435"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w generations|strong="H8435"\w* \w of|strong="H3068"\w* Aaron \w and|strong="H4872"\w* \w Moses|strong="H4872"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w with|strong="H3068"\w* \w Moses|strong="H4872"\w* \w in|strong="H3068"\w* \w Mount|strong="H2022"\w* \w Sinai|strong="H5514"\w*. +\v 2 These \w are|strong="H1121"\w* \w the|strong="H8034"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H8034"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron: \w Nadab|strong="H5070"\w* \w the|strong="H8034"\w* \w firstborn|strong="H1060"\w*, \w and|strong="H1121"\w* Abihu, Eleazar, \w and|strong="H1121"\w* Ithamar. +\p +\v 3 These \w are|strong="H1121"\w* \w the|strong="H4390"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H4390"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron, \w the|strong="H4390"\w* \w priests|strong="H3548"\w* \w who|strong="H3548"\w* \w were|strong="H1121"\w* \w anointed|strong="H4886"\w*, whom \w he|strong="H3027"\w* \w consecrated|strong="H4390"\w* \w to|strong="H3027"\w* \w minister|strong="H3547"\w* \w in|strong="H1121"\w* \w the|strong="H4390"\w* \w priest|strong="H3548"\w*’s office. +\v 4 \w Nadab|strong="H5070"\w* \w and|strong="H1121"\w* Abihu \w died|strong="H4191"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w when|strong="H1961"\w* \w they|strong="H3068"\w* \w offered|strong="H7126"\w* \w strange|strong="H2114"\w* fire \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w wilderness|strong="H4057"\w* \w of|strong="H1121"\w* \w Sinai|strong="H5514"\w*, \w and|strong="H1121"\w* \w they|strong="H3068"\w* \w had|strong="H3068"\w* \w no|strong="H3808"\w* \w children|strong="H1121"\w*. Eleazar \w and|strong="H1121"\w* Ithamar \w ministered|strong="H3547"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w priest|strong="H3547"\w*’s office \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H1121"\w* Aaron \w their|strong="H3068"\w* \w father|strong="H1121"\w*. +\p +\v 5 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 6 “\w Bring|strong="H7126"\w* \w the|strong="H6440"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Levi|strong="H3881"\w* \w near|strong="H7126"\w*, \w and|strong="H3548"\w* \w set|strong="H5975"\w* \w them|strong="H6440"\w* \w before|strong="H6440"\w* Aaron \w the|strong="H6440"\w* \w priest|strong="H3548"\w*, \w that|strong="H3548"\w* \w they|strong="H6440"\w* \w may|strong="H3548"\w* \w minister|strong="H8334"\w* \w to|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 7 \w They|strong="H3605"\w* \w shall|strong="H5712"\w* \w keep|strong="H8104"\w* \w his|strong="H3605"\w* requirements, \w and|strong="H6440"\w* \w the|strong="H3605"\w* requirements \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w congregation|strong="H5712"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* Tent \w of|strong="H6440"\w* \w Meeting|strong="H4150"\w*, \w to|strong="H8104"\w* \w do|strong="H5647"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w*. +\v 8 \w They|strong="H3478"\w* \w shall|strong="H1121"\w* \w keep|strong="H8104"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w furnishings|strong="H3627"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w obligations|strong="H4931"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w do|strong="H5647"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w*. +\v 9 \w You|strong="H5414"\w* \w shall|strong="H1121"\w* \w give|strong="H5414"\w* \w the|strong="H5414"\w* \w Levites|strong="H3881"\w* \w to|strong="H3478"\w* Aaron \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w his|strong="H5414"\w* \w sons|strong="H1121"\w*. \w They|strong="H1992"\w* \w are|strong="H1992"\w* \w wholly|strong="H5414"\w* \w given|strong="H5414"\w* \w to|strong="H3478"\w* \w him|strong="H5414"\w* \w on|strong="H5414"\w* \w the|strong="H5414"\w* behalf \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 10 \w You|strong="H6485"\w* \w shall|strong="H1121"\w* \w appoint|strong="H6485"\w* Aaron \w and|strong="H1121"\w* \w his|strong="H8104"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* they \w shall|strong="H1121"\w* \w keep|strong="H8104"\w* \w their|strong="H7126"\w* \w priesthood|strong="H3550"\w*, \w but|strong="H4191"\w* \w the|strong="H8104"\w* \w stranger|strong="H2114"\w* \w who|strong="H1121"\w* \w comes|strong="H7126"\w* \w near|strong="H7126"\w* \w shall|strong="H1121"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*.” +\p +\v 11 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 12 “\w Behold|strong="H2009"\w*,\f + \fr 3:12 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w I|strong="H2009"\w* \w have|strong="H1961"\w* \w taken|strong="H3947"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w from|strong="H3478"\w* \w among|strong="H8432"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w instead|strong="H8478"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w who|strong="H3605"\w* \w open|strong="H6363"\w* \w the|strong="H3605"\w* \w womb|strong="H7358"\w* \w among|strong="H8432"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w mine|strong="H3478"\w*, +\v 13 \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w are|strong="H3117"\w* \w mine|strong="H3478"\w*. \w On|strong="H3117"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w struck|strong="H5221"\w* \w down|strong="H5221"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w* \w I|strong="H3588"\w* \w made|strong="H1961"\w* \w holy|strong="H6942"\w* \w to|strong="H5704"\w* \w me|strong="H5221"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w both|strong="H3605"\w* \w man|strong="H3605"\w* \w and|strong="H3478"\w* \w animal|strong="H1961"\w*. \w They|strong="H3588"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w mine|strong="H3478"\w*. \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 14 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w wilderness|strong="H4057"\w* \w of|strong="H3068"\w* \w Sinai|strong="H5514"\w*, \w saying|strong="H1696"\w*, +\v 15 “Count \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3881"\w* \w by|strong="H6485"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, \w by|strong="H6485"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w*. \w You|strong="H3605"\w* \w shall|strong="H1121"\w* count \w every|strong="H3605"\w* \w male|strong="H2145"\w* \w from|strong="H1121"\w* \w a|strong="H3068"\w* \w month|strong="H2320"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*.” +\p +\v 16 \w Moses|strong="H4872"\w* \w counted|strong="H6485"\w* \w them|strong="H5921"\w* \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H6310"\w*, \w as|strong="H3068"\w* \w he|strong="H3068"\w* \w was|strong="H3068"\w* \w commanded|strong="H6680"\w*. +\p +\v 17 \w These|strong="H3881"\w* \w were|strong="H1961"\w* \w the|strong="H1961"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3881"\w* \w by|strong="H8034"\w* \w their|strong="H1961"\w* \w names|strong="H8034"\w*: \w Gershon|strong="H1648"\w*, \w Kohath|strong="H6955"\w*, \w and|strong="H1121"\w* \w Merari|strong="H4847"\w*. +\p +\v 18 These \w are|strong="H1121"\w* \w the|strong="H8034"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H8034"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Gershon|strong="H1648"\w* \w by|strong="H8034"\w* their \w families|strong="H4940"\w*: \w Libni|strong="H3845"\w* \w and|strong="H1121"\w* \w Shimei|strong="H8096"\w*. +\p +\v 19 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Kohath|strong="H6955"\w* \w by|strong="H4940"\w* their \w families|strong="H4940"\w*: \w Amram|strong="H6019"\w*, \w Izhar|strong="H3324"\w*, \w Hebron|strong="H2275"\w*, \w and|strong="H1121"\w* \w Uzziel|strong="H5816"\w*. +\p +\v 20 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w* \w by|strong="H4940"\w* \w their|strong="H1992"\w* \w families|strong="H4940"\w*: \w Mahli|strong="H4249"\w* \w and|strong="H1121"\w* \w Mushi|strong="H4187"\w*. +\p \w These|strong="H1992"\w* \w are|strong="H1992"\w* \w the|strong="H1121"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Levites|strong="H3881"\w* according \w to|strong="H1121"\w* \w their|strong="H1992"\w* fathers’ \w houses|strong="H1004"\w*. +\p +\v 21 \w Of|strong="H4940"\w* \w Gershon|strong="H1648"\w* \w was|strong="H4940"\w* \w the|strong="H1992"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H1992"\w* \w Libnites|strong="H3846"\w*, \w and|strong="H1648"\w* \w the|strong="H1992"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H1992"\w* \w Shimeites|strong="H8097"\w*. \w These|strong="H1992"\w* \w are|strong="H1992"\w* \w the|strong="H1992"\w* \w families|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H1992"\w* \w Gershonites|strong="H1649"\w*. +\p +\v 22 \w Those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w counted|strong="H6485"\w* \w of|strong="H1121"\w* \w them|strong="H6485"\w*, according \w to|strong="H1121"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w males|strong="H2145"\w* \w from|strong="H1121"\w* \w a|strong="H3068"\w* \w month|strong="H2320"\w* \w old|strong="H1121"\w* \w and|strong="H3967"\w* \w upward|strong="H4605"\w*, \w even|strong="H7651"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w counted|strong="H6485"\w* \w of|strong="H1121"\w* \w them|strong="H6485"\w* \w were|strong="H1121"\w* \w seven|strong="H7651"\w* thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w*. +\p +\v 23 \w The|strong="H4940"\w* \w families|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H4940"\w* \w Gershonites|strong="H1649"\w* \w shall|strong="H3220"\w* \w encamp|strong="H2583"\w* behind \w the|strong="H4940"\w* \w tabernacle|strong="H4908"\w* \w westward|strong="H3220"\w*. +\p +\v 24 Eliasaph \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Lael|strong="H3815"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w the|strong="H1121"\w* \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* fathers’ \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Gershonites|strong="H1649"\w*. +\v 25 \w The|strong="H1121"\w* \w duty|strong="H4931"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Gershon|strong="H1648"\w* \w in|strong="H1121"\w* \w the|strong="H1121"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w the|strong="H1121"\w* \w tabernacle|strong="H4908"\w*, \w the|strong="H1121"\w* tent, its \w covering|strong="H4372"\w*, \w the|strong="H1121"\w* \w screen|strong="H4539"\w* \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w door|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*, +\v 26 \w the|strong="H3605"\w* \w hangings|strong="H7050"\w* \w of|strong="H4196"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w*, \w the|strong="H3605"\w* \w screen|strong="H4539"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w door|strong="H6607"\w* \w of|strong="H4196"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w* \w which|strong="H4196"\w* \w is|strong="H3605"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w* \w and|strong="H4196"\w* \w around|strong="H5439"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*, \w and|strong="H4196"\w* \w its|strong="H3605"\w* \w cords|strong="H4340"\w* \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w of|strong="H4196"\w* \w its|strong="H3605"\w* \w service|strong="H5656"\w*. +\p +\v 27 \w Of|strong="H4940"\w* \w Kohath|strong="H6955"\w* \w was|strong="H4940"\w* \w the|strong="H1992"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H1992"\w* \w Amramites|strong="H6020"\w*, \w the|strong="H1992"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H1992"\w* \w Izharites|strong="H3325"\w*, \w the|strong="H1992"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H1992"\w* \w Hebronites|strong="H2276"\w*, \w and|strong="H6955"\w* \w the|strong="H1992"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H1992"\w* \w Uzzielites|strong="H5817"\w*. \w These|strong="H1992"\w* \w are|strong="H1992"\w* \w the|strong="H1992"\w* \w families|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H1992"\w* \w Kohathites|strong="H6956"\w*. +\v 28 According \w to|strong="H8104"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w males|strong="H2145"\w* \w from|strong="H1121"\w* \w a|strong="H3068"\w* \w month|strong="H2320"\w* \w old|strong="H1121"\w* \w and|strong="H3967"\w* \w upward|strong="H4605"\w*, \w there|strong="H3605"\w* \w were|strong="H1121"\w* \w eight|strong="H8083"\w* thousand \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w keeping|strong="H8104"\w* \w the|strong="H3605"\w* requirements \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w*. +\p +\v 29 \w The|strong="H5921"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Kohath|strong="H6955"\w* \w shall|strong="H1121"\w* \w encamp|strong="H2583"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w south|strong="H8486"\w* \w side|strong="H3409"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w*. +\v 30 \w The|strong="H1121"\w* \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* fathers’ \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Kohathites|strong="H6956"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* Elizaphan \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Uzziel|strong="H5816"\w*. +\v 31 \w Their|strong="H3605"\w* \w duty|strong="H4931"\w* \w shall|strong="H3627"\w* \w be|strong="H5656"\w* \w the|strong="H3605"\w* ark, \w the|strong="H3605"\w* \w table|strong="H7979"\w*, \w the|strong="H3605"\w* lamp stand, \w the|strong="H3605"\w* \w altars|strong="H4196"\w*, \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w* \w with|strong="H3627"\w* \w which|strong="H4196"\w* \w they|strong="H3605"\w* \w minister|strong="H8334"\w*, \w the|strong="H3605"\w* \w screen|strong="H4539"\w*, \w and|strong="H4196"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w service|strong="H5656"\w*. +\v 32 Eleazar \w the|strong="H8104"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w the|strong="H8104"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w be|strong="H1121"\w* \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H8104"\w* \w princes|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H8104"\w* \w Levites|strong="H3881"\w*, \w with|strong="H3548"\w* \w the|strong="H8104"\w* \w oversight|strong="H6486"\w* \w of|strong="H1121"\w* \w those|strong="H1121"\w* \w who|strong="H3548"\w* \w keep|strong="H8104"\w* \w the|strong="H8104"\w* requirements \w of|strong="H1121"\w* \w the|strong="H8104"\w* \w sanctuary|strong="H6944"\w*. +\p +\v 33 \w Of|strong="H4940"\w* \w Merari|strong="H4847"\w* \w was|strong="H4940"\w* \w the|strong="H1992"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H1992"\w* \w Mahlites|strong="H4250"\w* \w and|strong="H1992"\w* \w the|strong="H1992"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H1992"\w* \w Mushites|strong="H4188"\w*. \w These|strong="H1992"\w* \w are|strong="H1992"\w* \w the|strong="H1992"\w* \w families|strong="H4940"\w* \w of|strong="H4940"\w* \w Merari|strong="H4847"\w*. +\v 34 \w Those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w counted|strong="H6485"\w* \w of|strong="H1121"\w* \w them|strong="H6485"\w*, according \w to|strong="H1121"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w males|strong="H2145"\w* \w from|strong="H1121"\w* \w a|strong="H3068"\w* \w month|strong="H2320"\w* \w old|strong="H1121"\w* \w and|strong="H3967"\w* \w upward|strong="H4605"\w*, \w were|strong="H1121"\w* \w six|strong="H8337"\w* thousand \w two|strong="H3967"\w* \w hundred|strong="H3967"\w*.\f + \fr 3:34 \ft + 22,000 is the sum rounded to 2 significant digits. The sum of the Gershonites, Kohathites, and Merarites given above is 22,300, but the traditional Hebrew text has the number rounded to 2 significant digits, not 3 significant digits.\f* +\p +\v 35 \w The|strong="H5921"\w* \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* fathers’ \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w* \w was|strong="H1004"\w* \w Zuriel|strong="H6700"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Abihail. \w They|strong="H5921"\w* \w shall|strong="H1121"\w* \w encamp|strong="H2583"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w north|strong="H6828"\w* \w side|strong="H3409"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w*. +\v 36 \w The|strong="H3605"\w* \w appointed|strong="H1121"\w* \w duty|strong="H4931"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w*’s \w boards|strong="H7175"\w*, \w its|strong="H3605"\w* \w bars|strong="H1280"\w*, \w its|strong="H3605"\w* \w pillars|strong="H5982"\w*, \w its|strong="H3605"\w* sockets, \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w instruments|strong="H3627"\w*, \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w service|strong="H5656"\w*, +\v 37 \w the|strong="H5439"\w* \w pillars|strong="H5982"\w* \w of|strong="H5982"\w* \w the|strong="H5439"\w* \w court|strong="H2691"\w* \w around|strong="H5439"\w* \w it|strong="H5439"\w*, \w their|strong="H5439"\w* sockets, \w their|strong="H5439"\w* \w pins|strong="H3489"\w*, \w and|strong="H5439"\w* \w their|strong="H5439"\w* \w cords|strong="H4340"\w*. +\p +\v 38 \w Those|strong="H2583"\w* \w who|strong="H1121"\w* \w encamp|strong="H2583"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w tabernacle|strong="H4908"\w* \w eastward|strong="H6924"\w*, \w in|strong="H2583"\w* \w front|strong="H6440"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w Tent|strong="H2583"\w* \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w* \w toward|strong="H6440"\w* \w the|strong="H6440"\w* \w sunrise|strong="H4217"\w*, \w shall|strong="H1121"\w* \w be|strong="H4191"\w* \w Moses|strong="H4872"\w*, \w with|strong="H6440"\w* Aaron \w and|strong="H1121"\w* \w his|strong="H8104"\w* \w sons|strong="H1121"\w*, \w keeping|strong="H8104"\w* \w the|strong="H6440"\w* requirements \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w sanctuary|strong="H4720"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* \w duty|strong="H4931"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w The|strong="H6440"\w* \w outsider|strong="H2114"\w* \w who|strong="H1121"\w* \w comes|strong="H6440"\w* \w near|strong="H7126"\w* \w shall|strong="H1121"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H3478"\w* \w death|strong="H4191"\w*. +\v 39 \w All|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w counted|strong="H6485"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*, whom \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* Aaron \w counted|strong="H6485"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w commandment|strong="H6310"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*, \w by|strong="H5921"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w males|strong="H2145"\w* \w from|strong="H5921"\w* \w a|strong="H3068"\w* \w month|strong="H2320"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w were|strong="H1121"\w* \w twenty-two|strong="H6242"\w* thousand. +\p +\v 40 \w Yahweh|strong="H3068"\w* said \w to|strong="H3478"\w* \w Moses|strong="H4872"\w*, “\w Count|strong="H4557"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w males|strong="H2145"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w from|strong="H3478"\w* \w a|strong="H3068"\w* \w month|strong="H2320"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w and|strong="H1121"\w* \w take|strong="H5375"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w their|strong="H3605"\w* \w names|strong="H8034"\w*. +\v 41 \w You|strong="H3605"\w* \w shall|strong="H3068"\w* \w take|strong="H3947"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w for|strong="H8478"\w* \w me|strong="H3947"\w*—\w I|strong="H1121"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*—\w instead|strong="H8478"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w among|strong="H8478"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w and|strong="H1121"\w* \w the|strong="H3605"\w* livestock \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w instead|strong="H8478"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w among|strong="H8478"\w* \w the|strong="H3605"\w* livestock \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*.” +\p +\v 42 \w Moses|strong="H4872"\w* \w counted|strong="H6485"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w him|strong="H6680"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w among|strong="H1060"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 43 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w males|strong="H2145"\w* according \w to|strong="H1961"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w names|strong="H8034"\w* \w from|strong="H1121"\w* \w a|strong="H3068"\w* \w month|strong="H2320"\w* \w old|strong="H1121"\w* \w and|strong="H3967"\w* \w upward|strong="H4605"\w*, \w of|strong="H1121"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w counted|strong="H6485"\w* \w of|strong="H1121"\w* \w them|strong="H8147"\w*, \w were|strong="H1961"\w* \w twenty-two|strong="H6242"\w* thousand \w two|strong="H8147"\w* \w hundred|strong="H3967"\w* seventy-three. +\p +\v 44 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 45 “\w Take|strong="H3947"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w instead|strong="H8478"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w among|strong="H8478"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* livestock \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w instead|strong="H8478"\w* \w of|strong="H1121"\w* \w their|strong="H3605"\w* livestock; \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w mine|strong="H3478"\w*. \w I|strong="H1121"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w*. +\v 46 \w For|strong="H5921"\w* \w the|strong="H5921"\w* redemption \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* seventy-three \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w who|strong="H1121"\w* \w exceed|strong="H5921"\w* \w the|strong="H5921"\w* \w number|strong="H5736"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w*, +\v 47 \w you|strong="H3947"\w* shall \w take|strong="H3947"\w* \w five|strong="H2568"\w* \w shekels|strong="H8255"\w* \w apiece|strong="H1538"\w* \w for|strong="H3947"\w* \w each|strong="H3947"\w* one; according \w to|strong="H6242"\w* \w the|strong="H3947"\w* \w shekel|strong="H8255"\w*\f + \fr 3:47 \ft A shekel is about 10 grams or about 0.35 ounces.\f* \w of|strong="H8255"\w* \w the|strong="H3947"\w* \w sanctuary|strong="H6944"\w* \w you|strong="H3947"\w* shall \w take|strong="H3947"\w* \w them|strong="H3947"\w* (\w the|strong="H3947"\w* \w shekel|strong="H8255"\w* \w is|strong="H8255"\w* \w twenty|strong="H6242"\w* \w gerahs|strong="H1626"\w*\f + \fr 3:47 \ft A gerah is about 0.5 grams or about 7.7 grains.\f*); +\v 48 \w and|strong="H1121"\w* \w you|strong="H5414"\w* \w shall|strong="H1121"\w* \w give|strong="H5414"\w* \w the|strong="H5414"\w* \w money|strong="H3701"\w*, \w with|strong="H1121"\w* which \w their|strong="H5414"\w* remainder \w is|strong="H3701"\w* \w redeemed|strong="H6302"\w*, \w to|strong="H5414"\w* Aaron \w and|strong="H1121"\w* \w to|strong="H5414"\w* \w his|strong="H5414"\w* \w sons|strong="H1121"\w*.” +\p +\v 49 \w Moses|strong="H4872"\w* \w took|strong="H3947"\w* \w the|strong="H5921"\w* \w redemption|strong="H6306"\w* \w money|strong="H3701"\w* \w from|strong="H5921"\w* \w those|strong="H5921"\w* \w who|strong="H3881"\w* exceeded \w the|strong="H5921"\w* \w number|strong="H5736"\w* \w of|strong="H5921"\w* \w those|strong="H5921"\w* \w who|strong="H3881"\w* \w were|strong="H3881"\w* \w redeemed|strong="H6302"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w*; +\v 50 \w from|strong="H3478"\w* \w the|strong="H3947"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w he|strong="H2568"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w money|strong="H3701"\w*, \w one|strong="H1121"\w* thousand \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w sixty-five|strong="H8346"\w* \w shekels|strong="H8255"\w*,\f + \fr 3:50 \ft A shekel is about 10 grams or about 0.35 ounces, so 1365 shekels is about 13.65 kilograms or about 30 pounds.\f* \w according|strong="H3701"\w* \w to|strong="H3478"\w* \w the|strong="H3947"\w* \w shekel|strong="H8255"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w sanctuary|strong="H6944"\w*; +\v 51 \w and|strong="H1121"\w* \w Moses|strong="H4872"\w* \w gave|strong="H5414"\w* \w the|strong="H5921"\w* redemption \w money|strong="H3701"\w* \w to|strong="H3068"\w* Aaron \w and|strong="H1121"\w* \w to|strong="H3068"\w* \w his|strong="H5414"\w* \w sons|strong="H1121"\w*, \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H6310"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\c 4 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* \w to|strong="H1696"\w* Aaron, \w saying|strong="H1696"\w*, +\v 2 “\w Take|strong="H5375"\w* \w a|strong="H3068"\w* \w census|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H5375"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Kohath|strong="H6955"\w* \w from|strong="H1121"\w* \w among|strong="H8432"\w* \w the|strong="H5375"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3881"\w*, \w by|strong="H4940"\w* \w their|strong="H5375"\w* \w families|strong="H4940"\w*, \w by|strong="H4940"\w* \w their|strong="H5375"\w* fathers’ \w houses|strong="H1004"\w*, +\v 3 \w from|strong="H1121"\w* \w thirty|strong="H7970"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w* \w even|strong="H5704"\w* \w until|strong="H5704"\w* \w fifty|strong="H2572"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* enter \w into|strong="H6213"\w* \w the|strong="H3605"\w* \w service|strong="H6635"\w* \w to|strong="H5704"\w* \w do|strong="H6213"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*. +\p +\v 4 “\w This|strong="H2063"\w* \w is|strong="H1121"\w* \w the|strong="H1121"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Kohath|strong="H6955"\w* \w in|strong="H1121"\w* \w the|strong="H1121"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*, regarding \w the|strong="H1121"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w*. +\v 5 \w When|strong="H1121"\w* \w the|strong="H3680"\w* \w camp|strong="H4264"\w* moves \w forward|strong="H5265"\w*, Aaron \w shall|strong="H1121"\w* \w go|strong="H3381"\w* \w in|strong="H1121"\w* \w with|strong="H3381"\w* \w his|strong="H3680"\w* \w sons|strong="H1121"\w*; \w and|strong="H1121"\w* they \w shall|strong="H1121"\w* \w take|strong="H1121"\w* \w down|strong="H3381"\w* \w the|strong="H3680"\w* \w veil|strong="H6532"\w* \w of|strong="H1121"\w* \w the|strong="H3680"\w* \w screen|strong="H4539"\w*, \w cover|strong="H3680"\w* \w the|strong="H3680"\w* ark \w of|strong="H1121"\w* \w the|strong="H3680"\w* \w Testimony|strong="H5715"\w* \w with|strong="H3381"\w* \w it|strong="H3381"\w*, +\v 6 \w put|strong="H5414"\w* \w a|strong="H3068"\w* \w covering|strong="H3681"\w* \w of|strong="H5921"\w* sealskin \w on|strong="H5921"\w* \w it|strong="H5414"\w*, \w spread|strong="H6566"\w* \w a|strong="H3068"\w* \w blue|strong="H8504"\w* cloth \w over|strong="H5921"\w* \w it|strong="H5414"\w*, \w and|strong="H8504"\w* \w put|strong="H5414"\w* \w in|strong="H5921"\w* \w its|strong="H5414"\w* poles. +\p +\v 7 “\w On|strong="H5921"\w* \w the|strong="H6440"\w* \w table|strong="H7979"\w* \w of|strong="H6440"\w* \w show|strong="H5414"\w* \w bread|strong="H3899"\w* \w they|strong="H5921"\w* \w shall|strong="H6440"\w* \w spread|strong="H6566"\w* \w a|strong="H3068"\w* \w blue|strong="H8504"\w* cloth, \w and|strong="H3899"\w* \w put|strong="H5414"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w* \w the|strong="H6440"\w* \w dishes|strong="H7086"\w*, \w the|strong="H6440"\w* \w spoons|strong="H3709"\w*, \w the|strong="H6440"\w* \w bowls|strong="H4518"\w*, \w and|strong="H3899"\w* \w the|strong="H6440"\w* \w cups|strong="H7184"\w* \w with|strong="H5921"\w* \w which|strong="H3899"\w* \w to|strong="H1961"\w* \w pour|strong="H5414"\w* \w out|strong="H6566"\w*; \w and|strong="H3899"\w* \w the|strong="H6440"\w* \w continual|strong="H8548"\w* \w bread|strong="H3899"\w* \w shall|strong="H6440"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w*. +\v 8 \w They|strong="H5921"\w* \w shall|strong="H8438"\w* \w spread|strong="H6566"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w a|strong="H3068"\w* \w scarlet|strong="H8144"\w* cloth, \w and|strong="H5785"\w* \w cover|strong="H3680"\w* \w it|strong="H7760"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w covering|strong="H4372"\w* \w of|strong="H5921"\w* sealskin, \w and|strong="H5785"\w* \w shall|strong="H8438"\w* \w put|strong="H7760"\w* \w in|strong="H5921"\w* \w its|strong="H5921"\w* poles. +\p +\v 9 “\w They|strong="H3605"\w* \w shall|strong="H3627"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w blue|strong="H8504"\w* cloth \w and|strong="H8504"\w* \w cover|strong="H3680"\w* \w the|strong="H3605"\w* \w lamp|strong="H5216"\w* stand \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w light|strong="H3974"\w*, \w its|strong="H3605"\w* \w lamps|strong="H5216"\w*, \w its|strong="H3605"\w* \w snuffers|strong="H4457"\w*, \w its|strong="H3605"\w* snuff dishes, \w and|strong="H8504"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w oil|strong="H8081"\w* \w vessels|strong="H3627"\w*, \w with|strong="H3680"\w* \w which|strong="H3627"\w* \w they|strong="H3605"\w* \w minister|strong="H8334"\w* \w to|strong="H3947"\w* \w it|strong="H3680"\w*. +\v 10 \w They|strong="H5921"\w* \w shall|strong="H3627"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w and|strong="H3627"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w vessels|strong="H3627"\w* \w within|strong="H5921"\w* \w a|strong="H3068"\w* \w covering|strong="H4372"\w* \w of|strong="H3627"\w* sealskin, \w and|strong="H3627"\w* \w shall|strong="H3627"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w frame|strong="H5414"\w*. +\p +\v 11 “\w On|strong="H5921"\w* \w the|strong="H5921"\w* \w golden|strong="H2091"\w* \w altar|strong="H4196"\w* \w they|strong="H5921"\w* shall \w spread|strong="H6566"\w* \w a|strong="H3068"\w* \w blue|strong="H8504"\w* cloth, \w and|strong="H2091"\w* \w cover|strong="H3680"\w* \w it|strong="H7760"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w covering|strong="H4372"\w* \w of|strong="H4196"\w* sealskin, \w and|strong="H2091"\w* shall \w put|strong="H7760"\w* \w in|strong="H5921"\w* \w its|strong="H5921"\w* poles. +\p +\v 12 “\w They|strong="H5921"\w* \w shall|strong="H3627"\w* \w take|strong="H3947"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H3627"\w* \w ministry|strong="H8335"\w* \w with|strong="H5921"\w* \w which|strong="H3627"\w* \w they|strong="H5921"\w* \w minister|strong="H8334"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w*, \w and|strong="H8504"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w blue|strong="H8504"\w* cloth, \w cover|strong="H3680"\w* \w them|strong="H5414"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w covering|strong="H4372"\w* \w of|strong="H3627"\w* sealskin, \w and|strong="H8504"\w* \w shall|strong="H3627"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w frame|strong="H5414"\w*. +\p +\v 13 “\w They|strong="H5921"\w* shall \w take|strong="H1878"\w* \w away|strong="H1878"\w* \w the|strong="H5921"\w* \w ashes|strong="H1878"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*, \w and|strong="H4196"\w* \w spread|strong="H6566"\w* \w a|strong="H3068"\w* purple cloth \w on|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 14 \w They|strong="H5921"\w* \w shall|strong="H3627"\w* \w put|strong="H5414"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w vessels|strong="H3627"\w* \w with|strong="H5921"\w* \w which|strong="H4196"\w* \w they|strong="H5921"\w* \w minister|strong="H8334"\w* \w about|strong="H5921"\w* \w it|strong="H5414"\w*, \w the|strong="H3605"\w* fire pans, \w the|strong="H3605"\w* meat \w hooks|strong="H4207"\w*, \w the|strong="H3605"\w* \w shovels|strong="H3257"\w*, \w and|strong="H4196"\w* \w the|strong="H3605"\w* \w basins|strong="H4219"\w*—\w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*; \w and|strong="H4196"\w* \w they|strong="H5921"\w* \w shall|strong="H3627"\w* \w spread|strong="H6566"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w* \w a|strong="H3068"\w* \w covering|strong="H3681"\w* \w of|strong="H3627"\w* sealskin, \w and|strong="H4196"\w* \w put|strong="H5414"\w* \w in|strong="H5921"\w* \w its|strong="H3605"\w* poles. +\p +\v 15 “\w When|strong="H3615"\w* Aaron \w and|strong="H1121"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w* \w have|strong="H1121"\w* \w finished|strong="H3615"\w* \w covering|strong="H3680"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w furniture|strong="H3627"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w*, \w as|strong="H3651"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* moves \w forward|strong="H5265"\w*; after \w that|strong="H3605"\w*, \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Kohath|strong="H6955"\w* \w shall|strong="H1121"\w* \w come|strong="H5060"\w* \w to|strong="H4191"\w* \w carry|strong="H5375"\w* \w it|strong="H3651"\w*; \w but|strong="H3808"\w* \w they|strong="H3651"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w touch|strong="H5060"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w*, lest \w they|strong="H3651"\w* \w die|strong="H4191"\w*. \w The|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Kohath|strong="H6955"\w* \w shall|strong="H1121"\w* \w carry|strong="H5375"\w* \w these|strong="H3605"\w* \w things|strong="H6944"\w* belonging \w to|strong="H4191"\w* \w the|strong="H3605"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*. +\p +\v 16 “\w The|strong="H3605"\w* duty \w of|strong="H1121"\w* Eleazar \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w be|strong="H1121"\w* \w the|strong="H3605"\w* \w oil|strong="H8081"\w* \w for|strong="H1121"\w* \w the|strong="H3605"\w* \w light|strong="H3974"\w*, \w the|strong="H3605"\w* \w sweet|strong="H5561"\w* \w incense|strong="H7004"\w*, \w the|strong="H3605"\w* \w continual|strong="H8548"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w anointing|strong="H4888"\w* \w oil|strong="H8081"\w*, \w the|strong="H3605"\w* requirements \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w in|strong="H1121"\w* \w it|strong="H3627"\w*, \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w*, \w and|strong="H1121"\w* \w its|strong="H3605"\w* \w furnishings|strong="H3627"\w*.” +\p +\v 17 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* \w to|strong="H1696"\w* Aaron, \w saying|strong="H1696"\w*, +\v 18 “Don’t \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w the|strong="H8432"\w* \w tribe|strong="H7626"\w* \w of|strong="H7626"\w* \w the|strong="H8432"\w* \w families|strong="H4940"\w* \w of|strong="H7626"\w* \w the|strong="H8432"\w* \w Kohathites|strong="H6956"\w* \w from|strong="H3772"\w* \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w Levites|strong="H3881"\w*; +\v 19 \w but|strong="H3808"\w* \w do|strong="H6213"\w* \w this|strong="H2063"\w* \w to|strong="H4191"\w* \w them|strong="H5921"\w*, \w that|strong="H1121"\w* \w they|strong="H3808"\w* \w may|strong="H6213"\w* \w live|strong="H2421"\w*, \w and|strong="H1121"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*, \w when|strong="H2421"\w* \w they|strong="H3808"\w* \w approach|strong="H5066"\w* \w the|strong="H5921"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w*: Aaron \w and|strong="H1121"\w* \w his|strong="H7760"\w* \w sons|strong="H1121"\w* \w shall|strong="H1121"\w* \w go|strong="H5066"\w* \w in|strong="H5921"\w* \w and|strong="H1121"\w* \w appoint|strong="H7760"\w* everyone \w to|strong="H4191"\w* \w his|strong="H7760"\w* \w service|strong="H5656"\w* \w and|strong="H1121"\w* \w to|strong="H4191"\w* \w his|strong="H7760"\w* \w burden|strong="H4853"\w*; +\v 20 \w but|strong="H3808"\w* \w they|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* go \w in|strong="H4191"\w* \w to|strong="H4191"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w sanctuary|strong="H6944"\w* \w even|strong="H3808"\w* \w for|strong="H4191"\w* \w a|strong="H3068"\w* \w moment|strong="H1104"\w*, lest \w they|strong="H3808"\w* \w die|strong="H4191"\w*.” +\p +\v 21 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 22 “\w Take|strong="H5375"\w* \w a|strong="H3068"\w* \w census|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H5375"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Gershon|strong="H1648"\w* \w also|strong="H1571"\w*, \w by|strong="H1571"\w* \w their|strong="H5375"\w* fathers’ \w houses|strong="H1004"\w*, \w by|strong="H1571"\w* \w their|strong="H5375"\w* \w families|strong="H4940"\w*; +\v 23 \w you|strong="H3605"\w* \w shall|strong="H1121"\w* \w count|strong="H8141"\w* \w them|strong="H6485"\w* \w from|strong="H1121"\w* \w thirty|strong="H7970"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w* \w until|strong="H5704"\w* \w fifty|strong="H2572"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*: \w all|strong="H3605"\w* \w who|strong="H3605"\w* enter \w in|strong="H8141"\w* \w to|strong="H5704"\w* \w wait|strong="H6633"\w* \w on|strong="H3605"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w*, \w to|strong="H5704"\w* \w do|strong="H5647"\w* \w the|strong="H3605"\w* \w work|strong="H5656"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*. +\p +\v 24 “\w This|strong="H2063"\w* \w is|strong="H4940"\w* \w the|strong="H5647"\w* \w service|strong="H5656"\w* \w of|strong="H4940"\w* \w the|strong="H5647"\w* \w families|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H5647"\w* \w Gershonites|strong="H1649"\w*, \w in|strong="H4940"\w* \w serving|strong="H5647"\w* \w and|strong="H5647"\w* \w in|strong="H4940"\w* bearing \w burdens|strong="H4853"\w*: +\v 25 \w they|strong="H5921"\w* \w shall|strong="H4150"\w* \w carry|strong="H5375"\w* \w the|strong="H5921"\w* \w curtains|strong="H3407"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w* \w and|strong="H4150"\w* \w the|strong="H5921"\w* \w Tent|strong="H3407"\w* \w of|strong="H5921"\w* \w Meeting|strong="H4150"\w*, \w its|strong="H5921"\w* \w covering|strong="H4372"\w*, \w the|strong="H5921"\w* \w covering|strong="H4372"\w* \w of|strong="H5921"\w* sealskin \w that|strong="H3407"\w* is \w on|strong="H5921"\w* \w it|strong="H5921"\w*, \w the|strong="H5921"\w* \w screen|strong="H4539"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w door|strong="H6607"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w Tent|strong="H3407"\w* \w of|strong="H5921"\w* \w Meeting|strong="H4150"\w*, +\v 26 \w the|strong="H3605"\w* \w hangings|strong="H7050"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w*, \w the|strong="H3605"\w* \w screen|strong="H4539"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w door|strong="H6607"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w* \w which|strong="H4196"\w* \w is|strong="H3605"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w* \w and|strong="H4196"\w* \w around|strong="H5439"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*, \w their|strong="H3605"\w* \w cords|strong="H4340"\w*, \w and|strong="H4196"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w instruments|strong="H3627"\w* \w of|strong="H3627"\w* \w their|strong="H3605"\w* \w service|strong="H5656"\w*, \w and|strong="H4196"\w* \w whatever|strong="H3605"\w* \w shall|strong="H6213"\w* \w be|strong="H5656"\w* \w done|strong="H6213"\w* \w with|strong="H6213"\w* \w them|strong="H5921"\w*. \w They|strong="H5921"\w* \w shall|strong="H6213"\w* \w serve|strong="H5647"\w* \w in|strong="H5921"\w* \w there|strong="H3605"\w*. +\v 27 \w At|strong="H5921"\w* \w the|strong="H3605"\w* \w commandment|strong="H6310"\w* \w of|strong="H1121"\w* Aaron \w and|strong="H1121"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w Gershonites|strong="H1649"\w*, \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w burden|strong="H4853"\w* \w and|strong="H1121"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w service|strong="H5656"\w*; \w and|strong="H1121"\w* \w you|strong="H3605"\w* \w shall|strong="H1121"\w* \w appoint|strong="H6485"\w* \w their|strong="H3605"\w* \w duty|strong="H4931"\w* \w to|strong="H1961"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w responsibilities|strong="H4931"\w*. +\v 28 \w This|strong="H2063"\w* \w is|strong="H3027"\w* \w the|strong="H3027"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w the|strong="H3027"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H3027"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3027"\w* \w Gershonites|strong="H1649"\w* \w in|strong="H1121"\w* \w the|strong="H3027"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*. \w Their|strong="H3548"\w* \w duty|strong="H4931"\w* \w shall|strong="H3548"\w* \w be|strong="H3027"\w* \w under|strong="H3027"\w* \w the|strong="H3027"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* Ithamar \w the|strong="H3027"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w the|strong="H3027"\w* \w priest|strong="H3548"\w*. +\p +\v 29 “\w As|strong="H1121"\w* \w for|strong="H1004"\w* \w the|strong="H6485"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w*, \w you|strong="H6485"\w* \w shall|strong="H1121"\w* count \w them|strong="H6485"\w* \w by|strong="H6485"\w* \w their|strong="H6485"\w* \w families|strong="H4940"\w*, \w by|strong="H6485"\w* \w their|strong="H6485"\w* fathers’ \w houses|strong="H1004"\w*; +\v 30 \w you|strong="H3605"\w* \w shall|strong="H1121"\w* \w count|strong="H8141"\w* \w them|strong="H6485"\w* \w from|strong="H1121"\w* \w thirty|strong="H7970"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w fifty|strong="H2572"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*—\w everyone|strong="H3605"\w* \w who|strong="H3605"\w* enters \w on|strong="H3605"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w*, \w to|strong="H5704"\w* \w do|strong="H5647"\w* \w the|strong="H3605"\w* \w work|strong="H5656"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*. +\v 31 \w This|strong="H2063"\w* \w is|strong="H3605"\w* \w the|strong="H3605"\w* \w duty|strong="H4931"\w* \w of|strong="H5982"\w* \w their|strong="H3605"\w* \w burden|strong="H4853"\w*, according \w to|strong="H4150"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w service|strong="H5656"\w* \w in|strong="H5656"\w* \w the|strong="H3605"\w* Tent \w of|strong="H5982"\w* \w Meeting|strong="H4150"\w*: \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w*’s \w boards|strong="H7175"\w*, \w its|strong="H3605"\w* \w bars|strong="H1280"\w*, \w its|strong="H3605"\w* \w pillars|strong="H5982"\w*, \w its|strong="H3605"\w* sockets, +\v 32 \w the|strong="H3605"\w* \w pillars|strong="H5982"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w* \w around|strong="H5439"\w* \w it|strong="H5439"\w*, \w their|strong="H3605"\w* sockets, \w their|strong="H3605"\w* \w pins|strong="H3489"\w*, \w their|strong="H3605"\w* \w cords|strong="H4340"\w*, \w with|strong="H3627"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w instruments|strong="H3627"\w*, \w and|strong="H3627"\w* \w with|strong="H3627"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w service|strong="H5656"\w*. \w You|strong="H3605"\w* \w shall|strong="H8034"\w* \w appoint|strong="H6485"\w* \w the|strong="H3605"\w* \w instruments|strong="H3627"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w duty|strong="H4931"\w* \w of|strong="H3627"\w* \w their|strong="H3605"\w* \w burden|strong="H4853"\w* \w to|strong="H8034"\w* \w them|strong="H5439"\w* \w by|strong="H8034"\w* \w name|strong="H8034"\w*. +\v 33 \w This|strong="H2063"\w* \w is|strong="H3027"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w*, \w according|strong="H3027"\w* \w to|strong="H3027"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w service|strong="H5656"\w* \w in|strong="H1121"\w* \w the|strong="H3605"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*, \w under|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* Ithamar \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w the|strong="H3605"\w* \w priest|strong="H3548"\w*.” +\p +\v 34 \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* Aaron \w and|strong="H1121"\w* \w the|strong="H6485"\w* \w princes|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H6485"\w* \w congregation|strong="H5712"\w* \w counted|strong="H6485"\w* \w the|strong="H6485"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H6485"\w* \w Kohathites|strong="H6956"\w* \w by|strong="H6485"\w* \w their|strong="H6485"\w* \w families|strong="H4940"\w*, \w and|strong="H1121"\w* \w by|strong="H6485"\w* \w their|strong="H6485"\w* fathers’ \w houses|strong="H1004"\w*, +\v 35 \w from|strong="H1121"\w* \w thirty|strong="H7970"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w fifty|strong="H2572"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*, \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w entered|strong="H5704"\w* \w into|strong="H6635"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w for|strong="H5704"\w* \w work|strong="H5656"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*. +\v 36 \w Those|strong="H1961"\w* \w who|strong="H6485"\w* \w were|strong="H1961"\w* \w counted|strong="H6485"\w* \w of|strong="H4940"\w* \w them|strong="H6485"\w* \w by|strong="H6485"\w* \w their|strong="H1961"\w* \w families|strong="H4940"\w* \w were|strong="H1961"\w* \w two|strong="H3967"\w* thousand \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w*. +\v 37 \w These|strong="H3605"\w* \w are|strong="H3027"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H3027"\w* \w counted|strong="H6485"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w families|strong="H4940"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w Kohathites|strong="H6956"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w served|strong="H5647"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, whom \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron \w counted|strong="H6485"\w* \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w commandment|strong="H6310"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w*. +\p +\v 38 \w Those|strong="H1121"\w* \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w counted|strong="H6485"\w* \w of|strong="H1121"\w* \w the|strong="H6485"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Gershon|strong="H1648"\w*, \w by|strong="H6485"\w* \w their|strong="H6485"\w* \w families|strong="H4940"\w*, \w and|strong="H1121"\w* \w by|strong="H6485"\w* \w their|strong="H6485"\w* fathers’ \w houses|strong="H1004"\w*, +\v 39 \w from|strong="H1121"\w* \w thirty|strong="H7970"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w fifty|strong="H2572"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*—\w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w entered|strong="H5704"\w* \w into|strong="H6635"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w for|strong="H5704"\w* \w work|strong="H5656"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*, +\v 40 even \w those|strong="H1961"\w* \w who|strong="H6485"\w* \w were|strong="H1961"\w* \w counted|strong="H6485"\w* \w of|strong="H1004"\w* \w them|strong="H6485"\w*, \w by|strong="H6485"\w* \w their|strong="H1961"\w* \w families|strong="H4940"\w*, \w by|strong="H6485"\w* \w their|strong="H1961"\w* fathers’ \w houses|strong="H1004"\w*, \w were|strong="H1961"\w* \w two|strong="H1004"\w* thousand \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w*. +\v 41 \w These|strong="H3605"\w* \w are|strong="H1121"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w counted|strong="H6485"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Gershon|strong="H1648"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w served|strong="H5647"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*, whom \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* Aaron \w counted|strong="H6485"\w* \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w commandment|strong="H6310"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 42 \w Those|strong="H1121"\w* \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w counted|strong="H6485"\w* \w of|strong="H1121"\w* \w the|strong="H6485"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H6485"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w*, \w by|strong="H6485"\w* \w their|strong="H6485"\w* \w families|strong="H4940"\w*, \w by|strong="H6485"\w* \w their|strong="H6485"\w* fathers’ \w houses|strong="H1004"\w*, +\v 43 \w from|strong="H1121"\w* \w thirty|strong="H7970"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w fifty|strong="H2572"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*—\w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w entered|strong="H5704"\w* \w into|strong="H6635"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w for|strong="H5704"\w* \w work|strong="H5656"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*, +\v 44 even \w those|strong="H1961"\w* \w who|strong="H6485"\w* \w were|strong="H1961"\w* \w counted|strong="H6485"\w* \w of|strong="H4940"\w* \w them|strong="H6485"\w* \w by|strong="H6485"\w* \w their|strong="H1961"\w* \w families|strong="H4940"\w*, \w were|strong="H1961"\w* \w three|strong="H7969"\w* thousand \w two|strong="H3967"\w* \w hundred|strong="H3967"\w*. +\v 45 These \w are|strong="H1121"\w* \w those|strong="H5921"\w* \w who|strong="H3068"\w* \w were|strong="H1121"\w* \w counted|strong="H6485"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w*, whom \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* Aaron \w counted|strong="H6485"\w* \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w commandment|strong="H6310"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w*. +\p +\v 46 \w All|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w counted|strong="H6485"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* whom \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron \w and|strong="H4872"\w* \w the|strong="H3605"\w* \w princes|strong="H5387"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w counted|strong="H6485"\w*, \w by|strong="H3478"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w* \w and|strong="H4872"\w* \w by|strong="H3478"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, +\v 47 \w from|strong="H1121"\w* \w thirty|strong="H7970"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w fifty|strong="H2572"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*, \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w entered|strong="H5704"\w* \w in|strong="H8141"\w* \w to|strong="H5704"\w* \w do|strong="H5647"\w* \w the|strong="H3605"\w* \w work|strong="H5656"\w* \w of|strong="H1121"\w* \w service|strong="H5656"\w* \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w work|strong="H5656"\w* \w of|strong="H1121"\w* bearing \w burdens|strong="H4853"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*, +\v 48 even \w those|strong="H1961"\w* \w who|strong="H6485"\w* \w were|strong="H1961"\w* \w counted|strong="H6485"\w* \w of|strong="H6485"\w* \w them|strong="H6485"\w*, \w were|strong="H1961"\w* \w eight|strong="H8083"\w* thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w eighty|strong="H8084"\w*. +\v 49 \w According|strong="H5921"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w commandment|strong="H6310"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w they|strong="H3068"\w* \w were|strong="H3027"\w* \w counted|strong="H6485"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w*, everyone \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w service|strong="H5656"\w* \w and|strong="H4872"\w* \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w burden|strong="H4853"\w*. Thus \w they|strong="H3068"\w* \w were|strong="H3027"\w* \w counted|strong="H6485"\w* \w by|strong="H3027"\w* \w him|strong="H5921"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\c 5 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Command|strong="H6680"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w that|strong="H3605"\w* \w they|strong="H5315"\w* \w put|strong="H7971"\w* \w out|strong="H7971"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w every|strong="H3605"\w* \w leper|strong="H6879"\w*, \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w has|strong="H3478"\w* \w a|strong="H3068"\w* \w discharge|strong="H2100"\w*, \w and|strong="H1121"\w* \w whoever|strong="H3605"\w* \w is|strong="H5315"\w* \w unclean|strong="H2931"\w* \w by|strong="H3478"\w* \w a|strong="H3068"\w* \w corpse|strong="H5315"\w*. +\v 3 \w You|strong="H7971"\w* \w shall|strong="H3808"\w* \w put|strong="H7971"\w* both \w male|strong="H2145"\w* \w and|strong="H7971"\w* \w female|strong="H5347"\w* \w outside|strong="H2351"\w* \w of|strong="H8432"\w* \w the|strong="H8432"\w* \w camp|strong="H4264"\w* \w so|strong="H7971"\w* \w that|strong="H5704"\w* \w they|strong="H3808"\w* don’t \w defile|strong="H2930"\w* \w their|strong="H7971"\w* \w camp|strong="H4264"\w*, \w in|strong="H7931"\w* \w the|strong="H8432"\w* \w midst|strong="H8432"\w* \w of|strong="H8432"\w* which \w I|strong="H5704"\w* \w dwell|strong="H7931"\w*.” +\p +\v 4 \w The|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*, \w and|strong="H1121"\w* \w put|strong="H7971"\w* \w them|strong="H7971"\w* \w outside|strong="H2351"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w camp|strong="H4264"\w*; \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w so|strong="H3651"\w* \w the|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w did|strong="H6213"\w*. +\p +\v 5 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 6 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*: ‘\w When|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w or|strong="H1121"\w* woman \w commits|strong="H6213"\w* \w any|strong="H3605"\w* \w sin|strong="H2403"\w* \w that|strong="H3588"\w* \w men|strong="H1121"\w* \w commit|strong="H6213"\w*, \w so|strong="H6213"\w* \w as|strong="H6213"\w* \w to|strong="H1696"\w* \w trespass|strong="H4604"\w* \w against|strong="H1696"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H1121"\w* \w that|strong="H3588"\w* \w soul|strong="H5315"\w* \w is|strong="H3068"\w* guilty, +\v 7 \w then|strong="H3254"\w* \w he|strong="H6213"\w* \w shall|strong="H6213"\w* \w confess|strong="H3034"\w* \w his|strong="H5414"\w* \w sin|strong="H2403"\w* \w which|strong="H2403"\w* \w he|strong="H6213"\w* \w has|strong="H6213"\w* \w done|strong="H6213"\w*; \w and|strong="H7725"\w* \w he|strong="H6213"\w* \w shall|strong="H6213"\w* \w make|strong="H6213"\w* \w restitution|strong="H7725"\w* \w for|strong="H5921"\w* \w his|strong="H5414"\w* guilt \w in|strong="H5921"\w* \w full|strong="H7218"\w*, \w add|strong="H3254"\w* \w to|strong="H7725"\w* \w it|strong="H5414"\w* \w the|strong="H5921"\w* \w fifth|strong="H2549"\w* \w part|strong="H2549"\w* \w of|strong="H7218"\w* \w it|strong="H5414"\w*, \w and|strong="H7725"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H7725"\w* \w him|strong="H5414"\w* \w in|strong="H5921"\w* \w respect|strong="H5921"\w* \w of|strong="H7218"\w* whom \w he|strong="H6213"\w* \w has|strong="H6213"\w* been guilty. +\v 8 \w But|strong="H7725"\w* if \w the|strong="H5921"\w* man \w has|strong="H3068"\w* no \w kinsman|strong="H1350"\w* \w to|strong="H7725"\w* whom \w restitution|strong="H7725"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w made|strong="H3722"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* guilt, \w the|strong="H5921"\w* \w restitution|strong="H7725"\w* \w for|strong="H5921"\w* guilt \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w made|strong="H3722"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w* \w shall|strong="H3548"\w* \w be|strong="H3068"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w*’s, \w in|strong="H5921"\w* \w addition|strong="H5921"\w* \w to|strong="H7725"\w* \w the|strong="H5921"\w* ram \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w atonement|strong="H3722"\w*, \w by|strong="H5921"\w* \w which|strong="H3068"\w* \w atonement|strong="H3722"\w* \w shall|strong="H3548"\w* \w be|strong="H3068"\w* \w made|strong="H3722"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 9 \w Every|strong="H3605"\w* \w heave|strong="H8641"\w* \w offering|strong="H8641"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w which|strong="H3478"\w* \w they|strong="H3478"\w* \w present|strong="H7126"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w*, \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w his|strong="H3605"\w*. +\v 10 \w Every|strong="H5414"\w* man’s \w holy|strong="H6944"\w* \w things|strong="H6944"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w his|strong="H5414"\w*; whatever \w any|strong="H5414"\w* man \w gives|strong="H5414"\w* \w the|strong="H5414"\w* \w priest|strong="H3548"\w*, \w it|strong="H5414"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w his|strong="H5414"\w*.’” +\p +\v 11 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 12 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w tell|strong="H1696"\w* \w them|strong="H1121"\w*: ‘\w If|strong="H3588"\w* \w any|strong="H3588"\w* \w man|strong="H1121"\w*’s \w wife|strong="H1696"\w* \w goes|strong="H7847"\w* \w astray|strong="H7847"\w* \w and|strong="H1121"\w* \w is|strong="H3478"\w* \w unfaithful|strong="H4603"\w* \w to|strong="H1696"\w* \w him|strong="H3588"\w*, +\v 13 \w and|strong="H5869"\w* \w a|strong="H3068"\w* man \w lies|strong="H7901"\w* \w with|strong="H7901"\w* \w her|strong="H1931"\w* \w carnally|strong="H2233"\w*, \w and|strong="H5869"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w hidden|strong="H5641"\w* \w from|strong="H5869"\w* \w the|strong="H8610"\w* \w eyes|strong="H5869"\w* \w of|strong="H5869"\w* \w her|strong="H1931"\w* husband \w and|strong="H5869"\w* \w this|strong="H1931"\w* \w is|strong="H1931"\w* kept \w concealed|strong="H5641"\w*, \w and|strong="H5869"\w* \w she|strong="H1931"\w* \w is|strong="H1931"\w* \w defiled|strong="H2930"\w*, there \w is|strong="H1931"\w* \w no|strong="H3808"\w* \w witness|strong="H5707"\w* \w against|strong="H5869"\w* \w her|strong="H1931"\w*, \w and|strong="H5869"\w* \w she|strong="H1931"\w* isn’t \w taken|strong="H8610"\w* \w in|strong="H7901"\w* \w the|strong="H8610"\w* act; +\v 14 \w and|strong="H5674"\w* \w the|strong="H5921"\w* \w spirit|strong="H7307"\w* \w of|strong="H7307"\w* \w jealousy|strong="H7068"\w* \w comes|strong="H5674"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H5674"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w jealous|strong="H7065"\w* \w of|strong="H7307"\w* \w his|strong="H5921"\w* wife \w and|strong="H5674"\w* \w she|strong="H1931"\w* \w is|strong="H1931"\w* \w defiled|strong="H2930"\w*; \w or|strong="H3808"\w* \w if|strong="H7068"\w* \w the|strong="H5921"\w* \w spirit|strong="H7307"\w* \w of|strong="H7307"\w* \w jealousy|strong="H7068"\w* \w comes|strong="H5674"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H5674"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w jealous|strong="H7065"\w* \w of|strong="H7307"\w* \w his|strong="H5921"\w* wife \w and|strong="H5674"\w* \w she|strong="H1931"\w* isn’t \w defiled|strong="H2930"\w*; +\v 15 \w then|strong="H5414"\w* \w the|strong="H5921"\w* man \w shall|strong="H3548"\w* \w bring|strong="H5414"\w* \w his|strong="H5414"\w* wife \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w*, \w and|strong="H3548"\w* \w shall|strong="H3548"\w* \w bring|strong="H5414"\w* \w her|strong="H5414"\w* \w offering|strong="H4503"\w* \w for|strong="H3588"\w* \w her|strong="H5414"\w*: \w one|strong="H3808"\w* \w tenth|strong="H6224"\w* \w of|strong="H5921"\w* \w an|strong="H5414"\w* ephah\f + \fr 5:15 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w of|strong="H5921"\w* \w barley|strong="H8184"\w* \w meal|strong="H7058"\w*. \w He|strong="H1931"\w* \w shall|strong="H3548"\w* \w pour|strong="H3332"\w* \w no|strong="H3808"\w* \w oil|strong="H8081"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w*, \w nor|strong="H3808"\w* \w put|strong="H5414"\w* \w frankincense|strong="H3828"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w*, \w for|strong="H3588"\w* \w it|strong="H5414"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w meal|strong="H7058"\w* \w offering|strong="H4503"\w* \w of|strong="H5921"\w* \w jealousy|strong="H7068"\w*, \w a|strong="H3068"\w* \w meal|strong="H7058"\w* \w offering|strong="H4503"\w* \w of|strong="H5921"\w* \w memorial|strong="H2146"\w*, \w bringing|strong="H2142"\w* \w iniquity|strong="H5771"\w* \w to|strong="H5921"\w* memory. +\v 16 \w The|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w bring|strong="H7126"\w* \w her|strong="H6440"\w* \w near|strong="H7126"\w*, \w and|strong="H3068"\w* \w set|strong="H5975"\w* \w her|strong="H6440"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 17 \w The|strong="H5414"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* \w holy|strong="H6918"\w* \w water|strong="H4325"\w* \w in|strong="H5414"\w* \w an|strong="H1961"\w* \w earthen|strong="H2789"\w* \w vessel|strong="H3627"\w*; \w and|strong="H3548"\w* \w the|strong="H5414"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* \w some|strong="H4480"\w* \w of|strong="H3627"\w* \w the|strong="H5414"\w* \w dust|strong="H6083"\w* \w that|strong="H5414"\w* \w is|strong="H1961"\w* \w on|strong="H1961"\w* \w the|strong="H5414"\w* \w floor|strong="H7172"\w* \w of|strong="H3627"\w* \w the|strong="H5414"\w* \w tabernacle|strong="H4908"\w* \w and|strong="H3548"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w into|strong="H1961"\w* \w the|strong="H5414"\w* \w water|strong="H4325"\w*. +\v 18 \w The|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w set|strong="H5414"\w* \w the|strong="H6440"\w* woman \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w let|strong="H5414"\w* \w the|strong="H6440"\w* \w hair|strong="H7218"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* woman’s \w head|strong="H7218"\w* \w go|strong="H1961"\w* \w loose|strong="H5921"\w*, \w and|strong="H3068"\w* \w put|strong="H5414"\w* \w the|strong="H6440"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w of|strong="H3068"\w* \w memorial|strong="H2146"\w* \w in|strong="H5921"\w* \w her|strong="H5414"\w* \w hands|strong="H3027"\w*, \w which|strong="H1931"\w* \w is|strong="H3068"\w* \w the|strong="H6440"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w of|strong="H3068"\w* \w jealousy|strong="H7068"\w*. \w The|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w have|strong="H1961"\w* \w in|strong="H5921"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w* \w the|strong="H6440"\w* \w water|strong="H4325"\w* \w of|strong="H3068"\w* \w bitterness|strong="H4751"\w* \w that|strong="H1931"\w* \w brings|strong="H5414"\w* \w a|strong="H3068"\w* curse. +\v 19 \w The|strong="H8478"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* cause \w her|strong="H7901"\w* \w to|strong="H4325"\w* \w take|strong="H7650"\w* \w an|strong="H7650"\w* \w oath|strong="H7650"\w* \w and|strong="H3548"\w* \w shall|strong="H3548"\w* tell \w the|strong="H8478"\w* woman, “If \w no|strong="H3808"\w* man \w has|strong="H7901"\w* \w lain|strong="H7901"\w* \w with|strong="H7901"\w* \w you|strong="H3808"\w*, \w and|strong="H3548"\w* if \w you|strong="H3808"\w* haven’t \w gone|strong="H7847"\w* \w aside|strong="H7847"\w* \w to|strong="H4325"\w* \w uncleanness|strong="H2932"\w*, being \w under|strong="H8478"\w* \w your|strong="H3808"\w* husband’s authority, \w be|strong="H3808"\w* \w free|strong="H5352"\w* \w from|strong="H8478"\w* this \w water|strong="H4325"\w* \w of|strong="H4325"\w* \w bitterness|strong="H4751"\w* \w that|strong="H3548"\w* brings \w a|strong="H3068"\w* \w curse|strong="H7650"\w*. +\v 20 \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H5414"\w* \w gone|strong="H7847"\w* \w astray|strong="H7847"\w*, being \w under|strong="H8478"\w* \w your|strong="H5414"\w* husband’s authority, \w and|strong="H8478"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H8478"\w* \w defiled|strong="H2930"\w*, \w and|strong="H8478"\w* some man \w has|strong="H3588"\w* \w lain|strong="H7903"\w* \w with|strong="H8478"\w* \w you|strong="H3588"\w* \w besides|strong="H1107"\w* \w your|strong="H5414"\w* husband—” +\v 21 \w then|strong="H5307"\w* \w the|strong="H5414"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w cause|strong="H5414"\w* \w the|strong="H5414"\w* woman \w to|strong="H3068"\w* \w swear|strong="H7650"\w* \w with|strong="H3068"\w* \w the|strong="H5414"\w* \w oath|strong="H7621"\w* \w of|strong="H3068"\w* cursing, \w and|strong="H3068"\w* \w the|strong="H5414"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* tell \w the|strong="H5414"\w* woman, “\w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w make|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w curse|strong="H7621"\w* \w and|strong="H3068"\w* \w an|strong="H5414"\w* \w oath|strong="H7621"\w* \w among|strong="H8432"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w*, \w when|strong="H3068"\w* \w Yahweh|strong="H3068"\w* allows \w your|strong="H3068"\w* \w thigh|strong="H3409"\w* \w to|strong="H3068"\w* \w fall|strong="H5307"\w* \w away|strong="H5307"\w*, \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w body|strong="H3409"\w* \w to|strong="H3068"\w* \w swell|strong="H6639"\w*; +\v 22 \w and|strong="H4325"\w* \w this|strong="H5307"\w* \w water|strong="H4325"\w* \w that|strong="H4325"\w* brings \w a|strong="H3068"\w* curse \w will|strong="H4325"\w* \w go|strong="H5307"\w* \w into|strong="H5307"\w* \w your|strong="H5307"\w* \w bowels|strong="H4578"\w*, \w and|strong="H4325"\w* make \w your|strong="H5307"\w* \w body|strong="H4578"\w* \w swell|strong="H6638"\w*, \w and|strong="H4325"\w* \w your|strong="H5307"\w* \w thigh|strong="H3409"\w* \w fall|strong="H5307"\w* \w away|strong="H5307"\w*.” \w The|strong="H5307"\w* woman \w shall|strong="H4325"\w* say, “Amen, Amen.” +\p +\v 23 “‘\w The|strong="H3548"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w write|strong="H3789"\w* \w these|strong="H3789"\w* curses \w in|strong="H3789"\w* \w a|strong="H3068"\w* \w book|strong="H5612"\w*, \w and|strong="H3548"\w* \w he|strong="H4325"\w* \w shall|strong="H3548"\w* \w wipe|strong="H4229"\w* \w them|strong="H3789"\w* \w into|strong="H4325"\w* \w the|strong="H3548"\w* \w water|strong="H4325"\w* \w of|strong="H4325"\w* \w bitterness|strong="H4751"\w*. +\v 24 \w He|strong="H4325"\w* \w shall|strong="H4325"\w* \w make|strong="H8248"\w* \w the|strong="H8248"\w* woman \w drink|strong="H8248"\w* \w the|strong="H8248"\w* \w water|strong="H4325"\w* \w of|strong="H4325"\w* \w bitterness|strong="H4751"\w* \w that|strong="H4325"\w* causes \w the|strong="H8248"\w* curse; \w and|strong="H4325"\w* \w the|strong="H8248"\w* \w water|strong="H4325"\w* \w that|strong="H4325"\w* causes \w the|strong="H8248"\w* curse \w shall|strong="H4325"\w* enter \w into|strong="H4325"\w* her \w and|strong="H4325"\w* become \w bitter|strong="H4751"\w*. +\v 25 \w The|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* \w the|strong="H6440"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w of|strong="H3068"\w* \w jealousy|strong="H7068"\w* \w out|strong="H3947"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* woman’s \w hand|strong="H3027"\w*, \w and|strong="H3068"\w* \w shall|strong="H3548"\w* \w wave|strong="H5130"\w* \w the|strong="H6440"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w bring|strong="H7126"\w* \w it|strong="H7126"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w*. +\v 26 \w The|strong="H4480"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w take|strong="H7061"\w* \w a|strong="H3068"\w* \w handful|strong="H7061"\w* \w of|strong="H4325"\w* \w the|strong="H4480"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w as|strong="H4325"\w* \w its|strong="H4480"\w* memorial \w portion|strong="H6999"\w*, \w and|strong="H3548"\w* \w burn|strong="H6999"\w* \w it|strong="H4325"\w* \w on|strong="H4480"\w* \w the|strong="H4480"\w* \w altar|strong="H4196"\w*, \w and|strong="H3548"\w* afterward \w shall|strong="H3548"\w* \w make|strong="H8248"\w* \w the|strong="H4480"\w* woman \w drink|strong="H8248"\w* \w the|strong="H4480"\w* \w water|strong="H4325"\w*. +\v 27 \w When|strong="H1961"\w* \w he|strong="H5971"\w* \w has|strong="H1961"\w* \w made|strong="H8248"\w* \w her|strong="H7130"\w* \w drink|strong="H8248"\w* \w the|strong="H1961"\w* \w water|strong="H4325"\w*, \w then|strong="H1961"\w* \w it|strong="H1961"\w* \w shall|strong="H5971"\w* \w happen|strong="H1961"\w*, \w if|strong="H1961"\w* \w she|strong="H8248"\w* \w is|strong="H1961"\w* \w defiled|strong="H2930"\w* \w and|strong="H5971"\w* \w has|strong="H1961"\w* \w committed|strong="H4603"\w* \w a|strong="H3068"\w* \w trespass|strong="H4604"\w* \w against|strong="H4604"\w* \w her|strong="H7130"\w* husband, \w that|strong="H5971"\w* \w the|strong="H1961"\w* \w water|strong="H4325"\w* \w that|strong="H5971"\w* causes \w the|strong="H1961"\w* curse \w will|strong="H1961"\w* enter \w into|strong="H5307"\w* \w her|strong="H7130"\w* \w and|strong="H5971"\w* \w become|strong="H1961"\w* \w bitter|strong="H4751"\w*, \w and|strong="H5971"\w* \w her|strong="H7130"\w* \w body|strong="H3409"\w* \w will|strong="H1961"\w* \w swell|strong="H6638"\w*, \w and|strong="H5971"\w* \w her|strong="H7130"\w* \w thigh|strong="H3409"\w* \w will|strong="H1961"\w* \w fall|strong="H5307"\w* \w away|strong="H5307"\w*; \w and|strong="H5971"\w* \w the|strong="H1961"\w* woman \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* curse \w among|strong="H7130"\w* \w her|strong="H7130"\w* \w people|strong="H5971"\w*. +\v 28 \w If|strong="H1931"\w* \w the|strong="H3808"\w* woman isn’t \w defiled|strong="H2930"\w*, \w but|strong="H3808"\w* \w is|strong="H1931"\w* \w clean|strong="H2889"\w*; \w then|strong="H3808"\w* \w she|strong="H1931"\w* \w shall|strong="H2233"\w* \w be|strong="H3808"\w* \w free|strong="H5352"\w*, \w and|strong="H2233"\w* \w shall|strong="H2233"\w* \w conceive|strong="H2232"\w* \w offspring|strong="H2233"\w*.\f + \fr 5:28 \ft or, seed\f* +\p +\v 29 “‘\w This|strong="H2063"\w* \w is|strong="H8451"\w* \w the|strong="H8478"\w* \w law|strong="H8451"\w* \w of|strong="H8451"\w* \w jealousy|strong="H7068"\w*, \w when|strong="H7068"\w* \w a|strong="H3068"\w* wife, being \w under|strong="H8478"\w* \w her|strong="H2063"\w* husband, \w goes|strong="H7847"\w* \w astray|strong="H7847"\w*, \w and|strong="H8451"\w* \w is|strong="H8451"\w* \w defiled|strong="H2930"\w*, +\v 30 \w or|strong="H3068"\w* \w when|strong="H6213"\w* \w the|strong="H3605"\w* \w spirit|strong="H7307"\w* \w of|strong="H3068"\w* \w jealousy|strong="H7068"\w* \w comes|strong="H5674"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w*, \w and|strong="H3068"\w* \w he|strong="H6213"\w* \w is|strong="H3068"\w* \w jealous|strong="H7065"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* wife; \w then|strong="H6213"\w* \w he|strong="H6213"\w* \w shall|strong="H3548"\w* \w set|strong="H5975"\w* \w the|strong="H3605"\w* woman \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w execute|strong="H6213"\w* \w on|strong="H5921"\w* \w her|strong="H3605"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w law|strong="H8451"\w*. +\v 31 \w The|strong="H5375"\w* \w man|strong="H5375"\w* \w shall|strong="H1931"\w* \w be|strong="H5375"\w* \w free|strong="H5352"\w* \w from|strong="H5352"\w* \w iniquity|strong="H5771"\w*, \w and|strong="H5771"\w* \w that|strong="H1931"\w* woman \w shall|strong="H1931"\w* \w bear|strong="H5375"\w* \w her|strong="H5375"\w* \w iniquity|strong="H5771"\w*.’” +\c 6 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w tell|strong="H1696"\w* \w them|strong="H1121"\w*: ‘\w When|strong="H3588"\w* \w either|strong="H3588"\w* \w man|strong="H1121"\w* \w or|strong="H1121"\w* woman \w shall|strong="H3068"\w* \w make|strong="H5087"\w* \w a|strong="H3068"\w* \w special|strong="H6381"\w* \w vow|strong="H5088"\w*, \w the|strong="H3588"\w* \w vow|strong="H5088"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w Nazirite|strong="H5139"\w*, \w to|strong="H1696"\w* \w separate|strong="H5144"\w* \w himself|strong="H3068"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*, +\v 3 \w he|strong="H3605"\w* \w shall|strong="H3808"\w* \w separate|strong="H5144"\w* \w himself|strong="H8354"\w* \w from|strong="H5144"\w* \w wine|strong="H3196"\w* \w and|strong="H8354"\w* \w strong|strong="H7941"\w* \w drink|strong="H8354"\w*. \w He|strong="H3605"\w* \w shall|strong="H3808"\w* \w drink|strong="H8354"\w* \w no|strong="H3808"\w* \w vinegar|strong="H2558"\w* \w of|strong="H3605"\w* \w wine|strong="H3196"\w*, \w or|strong="H3808"\w* \w vinegar|strong="H2558"\w* \w of|strong="H3605"\w* fermented \w drink|strong="H8354"\w*, \w neither|strong="H3808"\w* \w shall|strong="H3808"\w* \w he|strong="H3605"\w* \w drink|strong="H8354"\w* \w any|strong="H3605"\w* \w juice|strong="H4952"\w* \w of|strong="H3605"\w* \w grapes|strong="H6025"\w*, \w nor|strong="H3808"\w* eat \w fresh|strong="H3892"\w* \w grapes|strong="H6025"\w* \w or|strong="H3808"\w* \w dried|strong="H3002"\w*. +\v 4 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w his|strong="H3605"\w* \w separation|strong="H5145"\w* \w he|strong="H3117"\w* \w shall|strong="H3117"\w* eat \w nothing|strong="H3808"\w* \w that|strong="H3605"\w* \w is|strong="H3117"\w* \w made|strong="H6213"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* grapevine, \w from|strong="H3117"\w* \w the|strong="H3605"\w* \w seeds|strong="H2785"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* skins. +\p +\v 5 “‘\w All|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w vow|strong="H5088"\w* \w of|strong="H3068"\w* \w separation|strong="H5145"\w* \w no|strong="H3808"\w* \w razor|strong="H8593"\w* \w shall|strong="H3068"\w* \w come|strong="H1961"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w head|strong="H7218"\w*, \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w are|strong="H3117"\w* \w fulfilled|strong="H4390"\w* \w in|strong="H5921"\w* \w which|strong="H3068"\w* \w he|strong="H3117"\w* \w separates|strong="H5144"\w* \w himself|strong="H1431"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w*. \w He|strong="H3117"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w holy|strong="H6918"\w*. \w He|strong="H3117"\w* \w shall|strong="H3068"\w* \w let|strong="H3808"\w* \w the|strong="H3605"\w* \w locks|strong="H6545"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w hair|strong="H8181"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w head|strong="H7218"\w* \w grow|strong="H1431"\w* \w long|strong="H5704"\w*. +\p +\v 6 “‘\w All|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w separates|strong="H5144"\w* \w himself|strong="H5315"\w* \w to|strong="H4191"\w* \w Yahweh|strong="H3068"\w* \w he|strong="H3117"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w go|strong="H3068"\w* \w near|strong="H5921"\w* \w a|strong="H3068"\w* \w dead|strong="H4191"\w* \w body|strong="H5315"\w*. +\v 7 \w He|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w make|strong="H2930"\w* \w himself|strong="H2930"\w* \w unclean|strong="H2930"\w* \w for|strong="H3588"\w* \w his|strong="H5921"\w* father, \w or|strong="H3808"\w* \w for|strong="H3588"\w* \w his|strong="H5921"\w* mother, \w for|strong="H3588"\w* \w his|strong="H5921"\w* brother, \w or|strong="H3808"\w* \w for|strong="H3588"\w* \w his|strong="H5921"\w* sister, \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w die|strong="H4194"\w*, \w because|strong="H3588"\w* \w his|strong="H5921"\w* \w separation|strong="H5145"\w* \w to|strong="H5921"\w* \w God|strong="H3808"\w*\f + \fr 6:7 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w is|strong="H7218"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w head|strong="H7218"\w*. +\v 8 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w separation|strong="H5145"\w* \w he|strong="H1931"\w* \w is|strong="H3068"\w* \w holy|strong="H6918"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 9 “‘\w If|strong="H3588"\w* \w any|strong="H3588"\w* \w man|strong="H4191"\w* \w dies|strong="H4191"\w* \w very|strong="H6621"\w* \w suddenly|strong="H6597"\w* \w beside|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H3117"\w* \w he|strong="H3588"\w* \w defiles|strong="H2930"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H3117"\w* \w his|strong="H5921"\w* \w separation|strong="H5145"\w*, \w then|strong="H3588"\w* \w he|strong="H3588"\w* \w shall|strong="H3117"\w* \w shave|strong="H1548"\w* \w his|strong="H5921"\w* \w head|strong="H7218"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w his|strong="H5921"\w* \w cleansing|strong="H2893"\w*. \w On|strong="H5921"\w* \w the|strong="H5921"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w he|strong="H3588"\w* \w shall|strong="H3117"\w* \w shave|strong="H1548"\w* \w it|strong="H5921"\w*. +\v 10 \w On|strong="H3117"\w* \w the|strong="H3117"\w* \w eighth|strong="H8066"\w* \w day|strong="H3117"\w* \w he|strong="H3117"\w* \w shall|strong="H3548"\w* bring \w two|strong="H8147"\w* \w turtledoves|strong="H8449"\w* \w or|strong="H3117"\w* \w two|strong="H8147"\w* \w young|strong="H1121"\w* \w pigeons|strong="H3123"\w* \w to|strong="H3117"\w* \w the|strong="H3117"\w* \w priest|strong="H3548"\w*, \w to|strong="H3117"\w* \w the|strong="H3117"\w* \w door|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*. +\v 11 \w The|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w offer|strong="H6213"\w* \w one|strong="H1931"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w*, \w and|strong="H3117"\w* \w the|strong="H5921"\w* other \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w and|strong="H3117"\w* \w make|strong="H6213"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w*, \w because|strong="H5921"\w* \w he|strong="H1931"\w* \w sinned|strong="H2398"\w* \w by|strong="H5921"\w* \w reason|strong="H5921"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w dead|strong="H5315"\w*, \w and|strong="H3117"\w* \w shall|strong="H3548"\w* \w make|strong="H6213"\w* \w his|strong="H5921"\w* \w head|strong="H7218"\w* \w holy|strong="H6942"\w* \w that|strong="H3117"\w* \w same|strong="H1931"\w* \w day|strong="H3117"\w*. +\v 12 \w He|strong="H3588"\w* \w shall|strong="H3068"\w* \w separate|strong="H5144"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w the|strong="H3588"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w his|strong="H3068"\w* \w separation|strong="H5145"\w*, \w and|strong="H1121"\w* \w shall|strong="H3068"\w* \w bring|strong="H5307"\w* \w a|strong="H3068"\w* \w male|strong="H3532"\w* \w lamb|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* trespass \w offering|strong="H3068"\w*; \w but|strong="H3588"\w* \w the|strong="H3588"\w* \w former|strong="H7223"\w* \w days|strong="H3117"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w void|strong="H5307"\w*, \w because|strong="H3588"\w* \w his|strong="H3068"\w* \w separation|strong="H5145"\w* \w was|strong="H3068"\w* \w defiled|strong="H2930"\w*. +\p +\v 13 “‘\w This|strong="H2063"\w* \w is|strong="H3117"\w* \w the|strong="H3117"\w* \w law|strong="H8451"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w Nazirite|strong="H5139"\w*: \w when|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w his|strong="H4390"\w* \w separation|strong="H5145"\w* \w are|strong="H3117"\w* \w fulfilled|strong="H4390"\w*, \w he|strong="H3117"\w* \w shall|strong="H3117"\w* \w be|strong="H3117"\w* brought \w to|strong="H3117"\w* \w the|strong="H3117"\w* \w door|strong="H6607"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* Tent \w of|strong="H3117"\w* \w Meeting|strong="H4150"\w*, +\v 14 \w and|strong="H1121"\w* \w he|strong="H3068"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w his|strong="H3068"\w* \w offering|strong="H5930"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*: \w one|strong="H3532"\w* \w male|strong="H3532"\w* \w lamb|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w one|strong="H3532"\w* \w ewe|strong="H3535"\w* \w lamb|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w*, \w one|strong="H3532"\w* ram \w without|strong="H8549"\w* \w defect|strong="H8549"\w* \w for|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, +\v 15 \w a|strong="H3068"\w* \w basket|strong="H5536"\w* \w of|strong="H4503"\w* \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w*, \w cakes|strong="H2471"\w* \w of|strong="H4503"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w*, \w and|strong="H8081"\w* \w unleavened|strong="H4682"\w* \w wafers|strong="H7550"\w* \w anointed|strong="H4886"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w* \w with|strong="H1101"\w* \w their|strong="H4886"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w and|strong="H8081"\w* \w their|strong="H4886"\w* \w drink|strong="H5262"\w* \w offerings|strong="H4503"\w*. +\v 16 \w The|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w present|strong="H7126"\w* \w them|strong="H6440"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w shall|strong="H3548"\w* \w offer|strong="H7126"\w* \w his|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w* \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*. +\v 17 \w He|strong="H6213"\w* \w shall|strong="H3548"\w* \w offer|strong="H6213"\w* \w the|strong="H5921"\w* ram \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w with|strong="H3068"\w* \w the|strong="H5921"\w* \w basket|strong="H5536"\w* \w of|strong="H3068"\w* \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w*. \w The|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w offer|strong="H6213"\w* \w also|strong="H3068"\w* \w its|strong="H5921"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w and|strong="H3068"\w* \w its|strong="H5921"\w* \w drink|strong="H5262"\w* \w offering|strong="H4503"\w*. +\v 18 \w The|strong="H5921"\w* \w Nazirite|strong="H5139"\w* \w shall|strong="H8478"\w* \w shave|strong="H1548"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H7218"\w* \w his|strong="H5414"\w* \w separation|strong="H5145"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w door|strong="H6607"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* Tent \w of|strong="H7218"\w* \w Meeting|strong="H4150"\w*, \w take|strong="H3947"\w* \w the|strong="H5921"\w* \w hair|strong="H8181"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H7218"\w* \w his|strong="H5414"\w* \w separation|strong="H5145"\w*, \w and|strong="H7218"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* fire \w which|strong="H4150"\w* \w is|strong="H7218"\w* \w under|strong="H8478"\w* \w the|strong="H5921"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H7218"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*. +\v 19 \w The|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* \w the|strong="H5921"\w* \w boiled|strong="H1311"\w* \w shoulder|strong="H2220"\w* \w of|strong="H4480"\w* \w the|strong="H5921"\w* ram, \w one|strong="H4480"\w* \w unleavened|strong="H4682"\w* \w cake|strong="H2471"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H5921"\w* \w basket|strong="H5536"\w*, \w and|strong="H3548"\w* \w one|strong="H4480"\w* \w unleavened|strong="H4682"\w* \w wafer|strong="H7550"\w*, \w and|strong="H3548"\w* \w shall|strong="H3548"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w hands|strong="H3709"\w* \w of|strong="H4480"\w* \w the|strong="H5921"\w* \w Nazirite|strong="H5139"\w* \w after|strong="H4480"\w* \w he|strong="H5414"\w* \w has|strong="H3548"\w* \w shaved|strong="H1548"\w* \w the|strong="H5921"\w* head \w of|strong="H4480"\w* \w his|strong="H5414"\w* \w separation|strong="H5145"\w*; +\v 20 \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w wave|strong="H8573"\w* \w them|strong="H5921"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w wave|strong="H8573"\w* \w offering|strong="H8641"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. \w They|strong="H3068"\w* \w are|strong="H3068"\w* \w holy|strong="H6944"\w* \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w*, \w together|strong="H5921"\w* \w with|strong="H3068"\w* \w the|strong="H6440"\w* \w breast|strong="H2373"\w* \w that|strong="H1931"\w* \w is|strong="H3068"\w* \w waved|strong="H5130"\w* \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w thigh|strong="H7785"\w* \w that|strong="H1931"\w* \w is|strong="H3068"\w* \w offered|strong="H8641"\w*. \w After|strong="H5921"\w* \w that|strong="H1931"\w* \w the|strong="H6440"\w* \w Nazirite|strong="H5139"\w* \w may|strong="H3068"\w* \w drink|strong="H8354"\w* \w wine|strong="H3196"\w*. +\p +\v 21 “‘\w This|strong="H2063"\w* \w is|strong="H3068"\w* \w the|strong="H5921"\w* \w law|strong="H8451"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w Nazirite|strong="H5139"\w* \w who|strong="H3068"\w* \w vows|strong="H5088"\w* \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w offering|strong="H7133"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H5921"\w* \w his|strong="H3068"\w* \w separation|strong="H5145"\w*, \w in|strong="H5921"\w* \w addition|strong="H5921"\w* \w to|strong="H3068"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H3651"\w* \w is|strong="H3068"\w* \w able|strong="H3027"\w* \w to|strong="H3068"\w* \w afford|strong="H3027"\w*. \w According|strong="H5921"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w vow|strong="H5088"\w* \w which|strong="H3068"\w* \w he|strong="H3651"\w* \w vows|strong="H5088"\w*, \w so|strong="H3651"\w* \w he|strong="H3651"\w* must \w do|strong="H6213"\w* \w after|strong="H5921"\w* \w the|strong="H5921"\w* \w law|strong="H8451"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w separation|strong="H5145"\w*.’” +\p +\v 22 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 23 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* Aaron \w and|strong="H1121"\w* \w to|strong="H1696"\w* \w his|strong="H1288"\w* \w sons|strong="H1121"\w*, \w saying|strong="H1696"\w*, ‘\w This|strong="H3541"\w* \w is|strong="H3478"\w* how \w you|strong="H1288"\w* \w shall|strong="H1121"\w* \w bless|strong="H1288"\w* \w the|strong="H3541"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*.’ \w You|strong="H1288"\w* \w shall|strong="H1121"\w* \w tell|strong="H1696"\w* \w them|strong="H1121"\w*, +\q1 +\v 24 ‘\w Yahweh|strong="H3068"\w* \w bless|strong="H1288"\w* \w you|strong="H1288"\w*, \w and|strong="H3068"\w* \w keep|strong="H8104"\w* \w you|strong="H1288"\w*. +\q2 +\v 25 \w Yahweh|strong="H3068"\w* \w make|strong="H2603"\w* \w his|strong="H3068"\w* \w face|strong="H6440"\w* \w to|strong="H3068"\w* shine \w on|strong="H3068"\w* \w you|strong="H6440"\w*, +\q2 \w and|strong="H3068"\w* \w be|strong="H3068"\w* \w gracious|strong="H2603"\w* \w to|strong="H3068"\w* \w you|strong="H6440"\w*. +\q1 +\v 26 \w Yahweh|strong="H3068"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w face|strong="H6440"\w* \w toward|strong="H6440"\w* \w you|strong="H6440"\w*, +\q2 \w and|strong="H3068"\w* \w give|strong="H7760"\w* \w you|strong="H6440"\w* \w peace|strong="H7965"\w*.’ +\p +\v 27 “\w So|strong="H7760"\w* \w they|strong="H5921"\w* \w shall|strong="H1121"\w* \w put|strong="H7760"\w* \w my|strong="H7760"\w* \w name|strong="H8034"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w and|strong="H1121"\w* \w I|strong="H5921"\w* \w will|strong="H3478"\w* \w bless|strong="H1288"\w* \w them|strong="H5921"\w*.” +\c 7 +\p +\v 1 \w On|strong="H3117"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H3605"\w* \w Moses|strong="H4872"\w* \w had|strong="H1961"\w* \w finished|strong="H3615"\w* \w setting|strong="H6965"\w* \w up|strong="H6965"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w*, \w and|strong="H6965"\w* \w had|strong="H1961"\w* \w anointed|strong="H4886"\w* \w it|strong="H1961"\w* \w and|strong="H6965"\w* \w sanctified|strong="H6942"\w* \w it|strong="H1961"\w* \w with|strong="H3117"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w furniture|strong="H3627"\w*, \w and|strong="H6965"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w with|strong="H3117"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w vessels|strong="H3627"\w*, \w and|strong="H6965"\w* \w had|strong="H1961"\w* \w anointed|strong="H4886"\w* \w and|strong="H6965"\w* \w sanctified|strong="H6942"\w* \w them|strong="H3615"\w*; +\v 2 \w the|strong="H5921"\w* \w princes|strong="H5387"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w the|strong="H5921"\w* \w heads|strong="H7218"\w* \w of|strong="H1004"\w* \w their|strong="H1992"\w* fathers’ \w houses|strong="H1004"\w*, \w gave|strong="H6485"\w* \w offerings|strong="H3478"\w*. \w These|strong="H1992"\w* \w were|strong="H3478"\w* \w the|strong="H5921"\w* \w princes|strong="H5387"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w tribes|strong="H4294"\w*. \w These|strong="H1992"\w* \w are|strong="H1992"\w* \w they|strong="H1992"\w* \w who|strong="H3478"\w* \w were|strong="H3478"\w* \w over|strong="H5921"\w* \w those|strong="H1992"\w* \w who|strong="H3478"\w* \w were|strong="H3478"\w* \w counted|strong="H6485"\w*; +\v 3 \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w brought|strong="H7126"\w* \w their|strong="H3068"\w* \w offering|strong="H7133"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w six|strong="H8337"\w* \w covered|strong="H6632"\w* \w wagons|strong="H5699"\w* \w and|strong="H3068"\w* \w twelve|strong="H8147"\w* \w oxen|strong="H1241"\w*; \w a|strong="H3068"\w* \w wagon|strong="H5699"\w* \w for|strong="H5921"\w* \w every|strong="H3068"\w* \w two|strong="H8147"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w princes|strong="H5387"\w*, \w and|strong="H3068"\w* \w for|strong="H5921"\w* \w each|strong="H8147"\w* \w one|strong="H8147"\w* \w an|strong="H7126"\w* \w ox|strong="H7794"\w*. \w They|strong="H3068"\w* \w presented|strong="H7126"\w* \w them|strong="H5921"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w tabernacle|strong="H4908"\w*. +\v 4 \w Yahweh|strong="H3068"\w* spoke \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, saying, +\v 5 “\w Accept|strong="H3947"\w* \w these|strong="H3947"\w* \w from|strong="H3947"\w* \w them|strong="H5414"\w*, \w that|strong="H5414"\w* \w they|strong="H6310"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w used|strong="H1961"\w* \w in|strong="H5414"\w* doing \w the|strong="H5414"\w* \w service|strong="H5656"\w* \w of|strong="H6310"\w* \w the|strong="H5414"\w* Tent \w of|strong="H6310"\w* \w Meeting|strong="H4150"\w*; \w and|strong="H6310"\w* \w you|strong="H5414"\w* \w shall|strong="H3881"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H1961"\w* \w the|strong="H5414"\w* \w Levites|strong="H3881"\w*, \w to|strong="H1961"\w* \w every|strong="H3947"\w* \w man|strong="H5647"\w* \w according|strong="H6310"\w* \w to|strong="H1961"\w* \w his|strong="H5414"\w* \w service|strong="H5656"\w*.” +\p +\v 6 \w Moses|strong="H4872"\w* \w took|strong="H3947"\w* \w the|strong="H5414"\w* \w wagons|strong="H5699"\w* \w and|strong="H4872"\w* \w the|strong="H5414"\w* \w oxen|strong="H1241"\w*, \w and|strong="H4872"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w Levites|strong="H3881"\w*. +\v 7 \w He|strong="H5414"\w* \w gave|strong="H5414"\w* \w two|strong="H8147"\w* \w wagons|strong="H5699"\w* \w and|strong="H1121"\w* four \w oxen|strong="H1241"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Gershon|strong="H1648"\w*, \w according|strong="H6310"\w* \w to|strong="H5414"\w* \w their|strong="H5414"\w* \w service|strong="H5656"\w*. +\v 8 \w He|strong="H5414"\w* \w gave|strong="H5414"\w* four \w wagons|strong="H5699"\w* \w and|strong="H1121"\w* \w eight|strong="H8083"\w* \w oxen|strong="H1241"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w*, \w according|strong="H6310"\w* \w to|strong="H5414"\w* \w their|strong="H5414"\w* \w service|strong="H5656"\w*, \w under|strong="H3027"\w* \w the|strong="H5414"\w* \w direction|strong="H3027"\w* \w of|strong="H1121"\w* Ithamar \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w the|strong="H5414"\w* \w priest|strong="H3548"\w*. +\v 9 \w But|strong="H3588"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Kohath|strong="H6955"\w* \w he|strong="H3588"\w* \w gave|strong="H5414"\w* \w none|strong="H3808"\w*, \w because|strong="H3588"\w* \w the|strong="H5921"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sanctuary|strong="H6944"\w* belonged \w to|strong="H5921"\w* \w them|strong="H5414"\w*; \w they|strong="H3588"\w* \w carried|strong="H5375"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w their|strong="H5375"\w* \w shoulders|strong="H3802"\w*. +\p +\v 10 \w The|strong="H6440"\w* \w princes|strong="H5387"\w* gave \w offerings|strong="H7133"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* \w dedication|strong="H2598"\w* \w of|strong="H3117"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w* \w in|strong="H3117"\w* \w the|strong="H6440"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w it|strong="H7126"\w* \w was|strong="H3117"\w* \w anointed|strong="H4886"\w*. \w The|strong="H6440"\w* \w princes|strong="H5387"\w* gave \w their|strong="H6440"\w* \w offerings|strong="H7133"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w*. +\p +\v 11 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w They|strong="H3117"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w their|strong="H3068"\w* \w offering|strong="H7133"\w*, \w each|strong="H3117"\w* \w prince|strong="H5387"\w* \w on|strong="H3117"\w* \w his|strong="H3068"\w* \w day|strong="H3117"\w*, \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w dedication|strong="H2598"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w altar|strong="H4196"\w*.” +\p +\v 12 \w He|strong="H3117"\w* \w who|strong="H1121"\w* \w offered|strong="H7126"\w* \w his|strong="H7126"\w* \w offering|strong="H7133"\w* \w the|strong="H3117"\w* \w first|strong="H7223"\w* \w day|strong="H3117"\w* \w was|strong="H1961"\w* \w Nahshon|strong="H5177"\w* \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Amminadab|strong="H5992"\w*, \w of|strong="H1121"\w* \w the|strong="H3117"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, +\v 13 \w and|strong="H3967"\w* \w his|strong="H8147"\w* \w offering|strong="H4503"\w* \w was|strong="H4948"\w*: +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w platter|strong="H7086"\w*, \w the|strong="H8147"\w* \w weight|strong="H4948"\w* \w of|strong="H4392"\w* \w which|strong="H4503"\w* \w was|strong="H4948"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w* \w shekels|strong="H8255"\w*,\f + \fr 7:13 \ft A shekel is about 10 grams or about 0.35 ounces.\f* +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w bowl|strong="H4219"\w* \w of|strong="H4392"\w* \w seventy|strong="H7657"\w* \w shekels|strong="H8255"\w*, \w according|strong="H3701"\w* \w to|strong="H3701"\w* \w the|strong="H8147"\w* \w shekel|strong="H8255"\w* \w of|strong="H4392"\w* \w the|strong="H8147"\w* \w sanctuary|strong="H6944"\w*, \w both|strong="H8147"\w* \w of|strong="H4392"\w* \w them|strong="H8147"\w* \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w* \w for|strong="H3701"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*; +\p +\v 14 one \w golden|strong="H2091"\w* ladle \w of|strong="H4392"\w* \w ten|strong="H6235"\w* \w shekels|strong="H7004"\w*, \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w incense|strong="H7004"\w*; +\p +\v 15 \w one|strong="H3532"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w*, +\p \w one|strong="H3532"\w* ram, +\p \w one|strong="H3532"\w* \w male|strong="H3532"\w* \w lamb|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*, \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*; +\p +\v 16 one \w male|strong="H8163"\w* \w goat|strong="H5795"\w* \w for|strong="H2403"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*; +\p +\v 17 \w and|strong="H1121"\w* \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H1121"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w two|strong="H8147"\w* head \w of|strong="H1121"\w* \w cattle|strong="H1241"\w*, \w five|strong="H2568"\w* \w rams|strong="H6260"\w*, \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w goats|strong="H6260"\w*, \w and|strong="H1121"\w* \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*. \w This|strong="H2088"\w* \w was|strong="H1121"\w* \w the|strong="H1121"\w* \w offering|strong="H7133"\w* \w of|strong="H1121"\w* \w Nahshon|strong="H5177"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Amminadab|strong="H5992"\w*. +\p +\v 18 \w On|strong="H3117"\w* \w the|strong="H3117"\w* \w second|strong="H8145"\w* \w day|strong="H3117"\w* \w Nethanel|strong="H5417"\w* \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zuar|strong="H6686"\w*, \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w Issachar|strong="H3485"\w*, gave \w his|strong="H7126"\w* \w offering|strong="H7126"\w*. +\v 19 \w He|strong="H8147"\w* \w offered|strong="H7126"\w* \w for|strong="H3701"\w* \w his|strong="H7126"\w* \w offering|strong="H4503"\w*: +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w platter|strong="H7086"\w*, \w the|strong="H7126"\w* \w weight|strong="H4948"\w* \w of|strong="H4392"\w* \w which|strong="H4503"\w* \w was|strong="H4948"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w* \w shekels|strong="H8255"\w*, +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w bowl|strong="H4219"\w* \w of|strong="H4392"\w* \w seventy|strong="H7657"\w* \w shekels|strong="H8255"\w*, \w according|strong="H3701"\w* \w to|strong="H7126"\w* \w the|strong="H7126"\w* \w shekel|strong="H8255"\w* \w of|strong="H4392"\w* \w the|strong="H7126"\w* \w sanctuary|strong="H6944"\w*, \w both|strong="H8147"\w* \w of|strong="H4392"\w* \w them|strong="H7126"\w* \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w* \w for|strong="H3701"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*; +\p +\v 20 one \w golden|strong="H2091"\w* ladle \w of|strong="H4392"\w* \w ten|strong="H6235"\w* \w shekels|strong="H7004"\w*, \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w incense|strong="H7004"\w*; +\p +\v 21 \w one|strong="H3532"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w*, +\p \w one|strong="H3532"\w* ram, +\p \w one|strong="H3532"\w* \w male|strong="H3532"\w* \w lamb|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*, \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*; +\p +\v 22 one \w male|strong="H8163"\w* \w goat|strong="H5795"\w* \w for|strong="H2403"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*; +\p +\v 23 \w and|strong="H1121"\w* \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H1121"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w two|strong="H8147"\w* head \w of|strong="H1121"\w* \w cattle|strong="H1241"\w*, \w five|strong="H2568"\w* \w rams|strong="H6260"\w*, \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w goats|strong="H6260"\w*, \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*. \w This|strong="H2088"\w* \w was|strong="H1121"\w* \w the|strong="H1121"\w* \w offering|strong="H7133"\w* \w of|strong="H1121"\w* \w Nethanel|strong="H5417"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zuar|strong="H6686"\w*. +\p +\v 24 \w On|strong="H3117"\w* \w the|strong="H3117"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w* Eliab \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Helon|strong="H2497"\w*, \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Zebulun|strong="H2074"\w*, +\v 25 \w gave|strong="H1101"\w* \w his|strong="H8147"\w* \w offering|strong="H4503"\w*: +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w platter|strong="H7086"\w*, \w the|strong="H8147"\w* \w weight|strong="H4948"\w* \w of|strong="H4392"\w* \w which|strong="H4503"\w* \w was|strong="H4948"\w* \w a|strong="H3068"\w* \w hundred|strong="H3967"\w* \w and|strong="H3967"\w* \w thirty|strong="H7970"\w* \w shekels|strong="H8255"\w*, +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w bowl|strong="H4219"\w* \w of|strong="H4392"\w* \w seventy|strong="H7657"\w* \w shekels|strong="H8255"\w*, \w according|strong="H3701"\w* \w to|strong="H3701"\w* \w the|strong="H8147"\w* \w shekel|strong="H8255"\w* \w of|strong="H4392"\w* \w the|strong="H8147"\w* \w sanctuary|strong="H6944"\w*, \w both|strong="H8147"\w* \w of|strong="H4392"\w* \w them|strong="H8147"\w* \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w* \w for|strong="H3701"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*; +\p +\v 26 one \w golden|strong="H2091"\w* ladle \w of|strong="H4392"\w* \w ten|strong="H6235"\w* \w shekels|strong="H7004"\w*, \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w incense|strong="H7004"\w*; +\p +\v 27 \w one|strong="H3532"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w*, +\p \w one|strong="H3532"\w* ram, +\p \w one|strong="H3532"\w* \w male|strong="H3532"\w* \w lamb|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*, \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*; +\p +\v 28 one \w male|strong="H8163"\w* \w goat|strong="H5795"\w* \w for|strong="H2403"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*; +\p +\v 29 \w and|strong="H1121"\w* \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H1121"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w two|strong="H8147"\w* head \w of|strong="H1121"\w* \w cattle|strong="H1241"\w*, \w five|strong="H2568"\w* \w rams|strong="H6260"\w*, \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w goats|strong="H6260"\w*, \w and|strong="H1121"\w* \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*. \w This|strong="H2088"\w* \w was|strong="H1121"\w* \w the|strong="H1121"\w* \w offering|strong="H7133"\w* \w of|strong="H1121"\w* Eliab \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Helon|strong="H2497"\w*. +\p +\v 30 \w On|strong="H3117"\w* \w the|strong="H3117"\w* \w fourth|strong="H7243"\w* \w day|strong="H3117"\w* Elizur \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shedeur|strong="H7707"\w*, \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w*, +\v 31 \w gave|strong="H1101"\w* \w his|strong="H8147"\w* \w offering|strong="H4503"\w*: +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w platter|strong="H7086"\w*, \w the|strong="H8147"\w* \w weight|strong="H4948"\w* \w of|strong="H4392"\w* \w which|strong="H4503"\w* \w was|strong="H4948"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w* \w shekels|strong="H8255"\w*, +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w bowl|strong="H4219"\w* \w of|strong="H4392"\w* \w seventy|strong="H7657"\w* \w shekels|strong="H8255"\w*, \w according|strong="H3701"\w* \w to|strong="H3701"\w* \w the|strong="H8147"\w* \w shekel|strong="H8255"\w* \w of|strong="H4392"\w* \w the|strong="H8147"\w* \w sanctuary|strong="H6944"\w*, \w both|strong="H8147"\w* \w of|strong="H4392"\w* \w them|strong="H8147"\w* \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w* \w for|strong="H3701"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*; +\p +\v 32 one \w golden|strong="H2091"\w* ladle \w of|strong="H4392"\w* \w ten|strong="H6235"\w* \w shekels|strong="H7004"\w*, \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w incense|strong="H7004"\w*; +\p +\v 33 \w one|strong="H3532"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w*, +\p \w one|strong="H3532"\w* ram, +\p \w one|strong="H3532"\w* \w male|strong="H3532"\w* \w lamb|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*, \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*; +\p +\v 34 one \w male|strong="H8163"\w* \w goat|strong="H5795"\w* \w for|strong="H2403"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*; +\p +\v 35 \w and|strong="H1121"\w* \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H1121"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w two|strong="H8147"\w* head \w of|strong="H1121"\w* \w cattle|strong="H1241"\w*, \w five|strong="H2568"\w* \w rams|strong="H6260"\w*, \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w goats|strong="H6260"\w*, \w and|strong="H1121"\w* \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*. \w This|strong="H2088"\w* \w was|strong="H1121"\w* \w the|strong="H1121"\w* \w offering|strong="H7133"\w* \w of|strong="H1121"\w* Elizur \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shedeur|strong="H7707"\w*. +\p +\v 36 \w On|strong="H3117"\w* \w the|strong="H3117"\w* \w fifth|strong="H2549"\w* \w day|strong="H3117"\w* \w Shelumiel|strong="H8017"\w* \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zurishaddai|strong="H6701"\w*, \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Simeon|strong="H8095"\w*, +\v 37 \w gave|strong="H1101"\w* \w his|strong="H8147"\w* \w offering|strong="H4503"\w*: +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w platter|strong="H7086"\w*, \w the|strong="H8147"\w* \w weight|strong="H4948"\w* \w of|strong="H4392"\w* \w which|strong="H4503"\w* \w was|strong="H4948"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w* \w shekels|strong="H8255"\w*, +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w bowl|strong="H4219"\w* \w of|strong="H4392"\w* \w seventy|strong="H7657"\w* \w shekels|strong="H8255"\w*, \w according|strong="H3701"\w* \w to|strong="H3701"\w* \w the|strong="H8147"\w* \w shekel|strong="H8255"\w* \w of|strong="H4392"\w* \w the|strong="H8147"\w* \w sanctuary|strong="H6944"\w*, \w both|strong="H8147"\w* \w of|strong="H4392"\w* \w them|strong="H8147"\w* \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w* \w for|strong="H3701"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*; +\p +\v 38 one \w golden|strong="H2091"\w* ladle \w of|strong="H4392"\w* \w ten|strong="H6235"\w* \w shekels|strong="H7004"\w*, \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w incense|strong="H7004"\w*; +\p +\v 39 \w one|strong="H3532"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w*, +\p \w one|strong="H3532"\w* ram, +\p \w one|strong="H3532"\w* \w male|strong="H3532"\w* \w lamb|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*, \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*; +\p +\v 40 one \w male|strong="H8163"\w* \w goat|strong="H5795"\w* \w for|strong="H2403"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*; +\p +\v 41 \w and|strong="H1121"\w* \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H1121"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w two|strong="H8147"\w* head \w of|strong="H1121"\w* \w cattle|strong="H1241"\w*, \w five|strong="H2568"\w* \w rams|strong="H6260"\w*, \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w goats|strong="H6260"\w*, \w and|strong="H1121"\w* \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*: \w this|strong="H2088"\w* \w was|strong="H1121"\w* \w the|strong="H1121"\w* \w offering|strong="H7133"\w* \w of|strong="H1121"\w* \w Shelumiel|strong="H8017"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zurishaddai|strong="H6701"\w*. +\p +\v 42 \w On|strong="H3117"\w* \w the|strong="H3117"\w* \w sixth|strong="H8345"\w* \w day|strong="H3117"\w*, Eliasaph \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Deuel|strong="H1845"\w*, \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w*, +\v 43 \w gave|strong="H1101"\w* \w his|strong="H8147"\w* \w offering|strong="H4503"\w*: +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w platter|strong="H7086"\w*, \w the|strong="H8147"\w* \w weight|strong="H4948"\w* \w of|strong="H4392"\w* \w which|strong="H4503"\w* \w was|strong="H4948"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w* \w shekels|strong="H8255"\w*, +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w bowl|strong="H4219"\w* \w of|strong="H4392"\w* \w seventy|strong="H7657"\w* \w shekels|strong="H8255"\w*, \w according|strong="H3701"\w* \w to|strong="H3701"\w* \w the|strong="H8147"\w* \w shekel|strong="H8255"\w* \w of|strong="H4392"\w* \w the|strong="H8147"\w* \w sanctuary|strong="H6944"\w*, \w both|strong="H8147"\w* \w of|strong="H4392"\w* \w them|strong="H8147"\w* \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w* \w for|strong="H3701"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*; +\p +\v 44 one \w golden|strong="H2091"\w* ladle \w of|strong="H4392"\w* \w ten|strong="H6235"\w* \w shekels|strong="H7004"\w*, \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w incense|strong="H7004"\w*; +\p +\v 45 \w one|strong="H3532"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w*, +\p \w one|strong="H3532"\w* ram, +\p \w one|strong="H3532"\w* \w male|strong="H3532"\w* \w lamb|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*, \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*; +\p +\v 46 one \w male|strong="H8163"\w* \w goat|strong="H5795"\w* \w for|strong="H2403"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*; +\p +\v 47 \w and|strong="H1121"\w* \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H1121"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w two|strong="H8147"\w* head \w of|strong="H1121"\w* \w cattle|strong="H1241"\w*, \w five|strong="H2568"\w* \w rams|strong="H6260"\w*, \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w goats|strong="H6260"\w*, \w and|strong="H1121"\w* \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*. \w This|strong="H2088"\w* \w was|strong="H1121"\w* \w the|strong="H1121"\w* \w offering|strong="H7133"\w* \w of|strong="H1121"\w* Eliasaph \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Deuel|strong="H1845"\w*. +\p +\v 48 \w On|strong="H3117"\w* \w the|strong="H3117"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* Elishama \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammihud|strong="H5989"\w*, \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Ephraim, +\v 49 \w gave|strong="H1101"\w* \w his|strong="H8147"\w* \w offering|strong="H4503"\w*: +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w platter|strong="H7086"\w*, \w the|strong="H8147"\w* \w weight|strong="H4948"\w* \w of|strong="H4392"\w* \w which|strong="H4503"\w* \w was|strong="H4948"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w* \w shekels|strong="H8255"\w*, +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w bowl|strong="H4219"\w* \w of|strong="H4392"\w* \w seventy|strong="H7657"\w* \w shekels|strong="H8255"\w*, \w according|strong="H3701"\w* \w to|strong="H3701"\w* \w the|strong="H8147"\w* \w shekel|strong="H8255"\w* \w of|strong="H4392"\w* \w the|strong="H8147"\w* \w sanctuary|strong="H6944"\w*, \w both|strong="H8147"\w* \w of|strong="H4392"\w* \w them|strong="H8147"\w* \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w* \w for|strong="H3701"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*; +\p +\v 50 one \w golden|strong="H2091"\w* ladle \w of|strong="H4392"\w* \w ten|strong="H6235"\w* \w shekels|strong="H7004"\w*, \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w incense|strong="H7004"\w*; +\p +\v 51 \w one|strong="H3532"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w*, +\p \w one|strong="H3532"\w* ram, +\p \w one|strong="H3532"\w* \w male|strong="H3532"\w* \w lamb|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*, \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*; +\p +\v 52 one \w male|strong="H8163"\w* \w goat|strong="H5795"\w* \w for|strong="H2403"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*; +\p +\v 53 \w and|strong="H1121"\w* \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H1121"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w two|strong="H8147"\w* head \w of|strong="H1121"\w* \w cattle|strong="H1241"\w*, \w five|strong="H2568"\w* \w rams|strong="H6260"\w*, \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w goats|strong="H6260"\w*, \w and|strong="H1121"\w* \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*. \w This|strong="H2088"\w* \w was|strong="H1121"\w* \w the|strong="H1121"\w* \w offering|strong="H7133"\w* \w of|strong="H1121"\w* Elishama \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammihud|strong="H5989"\w*. +\p +\v 54 \w On|strong="H3117"\w* \w the|strong="H3117"\w* \w eighth|strong="H8066"\w* \w day|strong="H3117"\w* \w Gamaliel|strong="H1583"\w* \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Pedahzur|strong="H6301"\w*, \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*, +\v 55 \w gave|strong="H1101"\w* \w his|strong="H8147"\w* \w offering|strong="H4503"\w*: +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w platter|strong="H7086"\w*, \w the|strong="H8147"\w* \w weight|strong="H4948"\w* \w of|strong="H4392"\w* \w which|strong="H4503"\w* \w was|strong="H4948"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w* \w shekels|strong="H8255"\w*, +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w bowl|strong="H4219"\w* \w of|strong="H4392"\w* \w seventy|strong="H7657"\w* \w shekels|strong="H8255"\w*, \w according|strong="H3701"\w* \w to|strong="H3701"\w* \w the|strong="H8147"\w* \w shekel|strong="H8255"\w* \w of|strong="H4392"\w* \w the|strong="H8147"\w* \w sanctuary|strong="H6944"\w*, \w both|strong="H8147"\w* \w of|strong="H4392"\w* \w them|strong="H8147"\w* \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w* \w for|strong="H3701"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*; +\p +\v 56 one \w golden|strong="H2091"\w* ladle \w of|strong="H4392"\w* \w ten|strong="H6235"\w* \w shekels|strong="H7004"\w*, \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w incense|strong="H7004"\w*; +\p +\v 57 \w one|strong="H3532"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w*, +\p \w one|strong="H3532"\w* ram, +\p \w one|strong="H3532"\w* \w male|strong="H3532"\w* \w lamb|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*, \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*; +\p +\v 58 one \w male|strong="H8163"\w* \w goat|strong="H5795"\w* \w for|strong="H2403"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*; +\p +\v 59 \w and|strong="H1121"\w* \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H1121"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w two|strong="H8147"\w* head \w of|strong="H1121"\w* \w cattle|strong="H1241"\w*, \w five|strong="H2568"\w* \w rams|strong="H6260"\w*, \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w goats|strong="H6260"\w*, \w and|strong="H1121"\w* \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*. \w This|strong="H2088"\w* \w was|strong="H1121"\w* \w the|strong="H1121"\w* \w offering|strong="H7133"\w* \w of|strong="H1121"\w* \w Gamaliel|strong="H1583"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Pedahzur|strong="H6301"\w*. +\p +\v 60 \w On|strong="H3117"\w* \w the|strong="H3117"\w* \w ninth|strong="H8671"\w* \w day|strong="H3117"\w* Abidan \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Gideoni|strong="H1441"\w*, \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*, +\v 61 \w gave|strong="H1101"\w* \w his|strong="H8147"\w* \w offering|strong="H4503"\w*: +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w platter|strong="H7086"\w*, \w the|strong="H8147"\w* \w weight|strong="H4948"\w* \w of|strong="H4392"\w* \w which|strong="H4503"\w* \w was|strong="H4948"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w* \w shekels|strong="H8255"\w*, +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w bowl|strong="H4219"\w* \w of|strong="H4392"\w* \w seventy|strong="H7657"\w* \w shekels|strong="H8255"\w*, \w according|strong="H3701"\w* \w to|strong="H3701"\w* \w the|strong="H8147"\w* \w shekel|strong="H8255"\w* \w of|strong="H4392"\w* \w the|strong="H8147"\w* \w sanctuary|strong="H6944"\w*, \w both|strong="H8147"\w* \w of|strong="H4392"\w* \w them|strong="H8147"\w* \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w* \w for|strong="H3701"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*; +\p +\v 62 one \w golden|strong="H2091"\w* ladle \w of|strong="H4392"\w* \w ten|strong="H6235"\w* \w shekels|strong="H7004"\w*, \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w incense|strong="H7004"\w*; +\p +\v 63 \w one|strong="H3532"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w*, +\p \w one|strong="H3532"\w* ram, +\p \w one|strong="H3532"\w* \w male|strong="H3532"\w* \w lamb|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*, \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*; +\p +\v 64 one \w male|strong="H8163"\w* \w goat|strong="H5795"\w* \w for|strong="H2403"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*; +\p +\v 65 \w and|strong="H1121"\w* \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H1121"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w two|strong="H8147"\w* head \w of|strong="H1121"\w* \w cattle|strong="H1241"\w*, \w five|strong="H2568"\w* \w rams|strong="H6260"\w*, \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w goats|strong="H6260"\w*, \w and|strong="H1121"\w* \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*. \w This|strong="H2088"\w* \w was|strong="H1121"\w* \w the|strong="H1121"\w* \w offering|strong="H7133"\w* \w of|strong="H1121"\w* Abidan \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Gideoni|strong="H1441"\w*. +\p +\v 66 \w On|strong="H3117"\w* \w the|strong="H3117"\w* \w tenth|strong="H6224"\w* \w day|strong="H3117"\w* Ahiezer \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammishaddai|strong="H5996"\w*, \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w*, +\v 67 \w gave|strong="H1101"\w* \w his|strong="H8147"\w* \w offering|strong="H4503"\w*: +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w platter|strong="H7086"\w*, \w the|strong="H8147"\w* \w weight|strong="H4948"\w* \w of|strong="H4392"\w* \w which|strong="H4503"\w* \w was|strong="H4948"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w* \w shekels|strong="H8255"\w*, +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w bowl|strong="H4219"\w* \w of|strong="H4392"\w* \w seventy|strong="H7657"\w* \w shekels|strong="H8255"\w*, \w according|strong="H3701"\w* \w to|strong="H3701"\w* \w the|strong="H8147"\w* \w shekel|strong="H8255"\w* \w of|strong="H4392"\w* \w the|strong="H8147"\w* \w sanctuary|strong="H6944"\w*, \w both|strong="H8147"\w* \w of|strong="H4392"\w* \w them|strong="H8147"\w* \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w* \w for|strong="H3701"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*; +\p +\v 68 one \w golden|strong="H2091"\w* ladle \w of|strong="H4392"\w* \w ten|strong="H6235"\w* \w shekels|strong="H7004"\w*, \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w incense|strong="H7004"\w*; +\p +\v 69 \w one|strong="H3532"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w*, +\p \w one|strong="H3532"\w* ram, +\p \w one|strong="H3532"\w* \w male|strong="H3532"\w* \w lamb|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*, \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*; +\p +\v 70 one \w male|strong="H8163"\w* \w goat|strong="H5795"\w* \w for|strong="H2403"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*; +\p +\v 71 \w and|strong="H1121"\w* \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H1121"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w two|strong="H8147"\w* head \w of|strong="H1121"\w* \w cattle|strong="H1241"\w*, \w five|strong="H2568"\w* \w rams|strong="H6260"\w*, \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w goats|strong="H6260"\w*, \w and|strong="H1121"\w* \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*. \w This|strong="H2088"\w* \w was|strong="H1121"\w* \w the|strong="H1121"\w* \w offering|strong="H7133"\w* \w of|strong="H1121"\w* Ahiezer \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammishaddai|strong="H5996"\w*. +\p +\v 72 \w On|strong="H3117"\w* \w the|strong="H3117"\w* \w eleventh|strong="H6249"\w* \w day|strong="H3117"\w* \w Pagiel|strong="H6295"\w* \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ochran|strong="H5918"\w*, \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Asher, +\v 73 \w gave|strong="H1101"\w* \w his|strong="H8147"\w* \w offering|strong="H4503"\w*: +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w platter|strong="H7086"\w*, \w the|strong="H8147"\w* \w weight|strong="H4948"\w* \w of|strong="H4392"\w* \w which|strong="H4503"\w* \w was|strong="H4948"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w* \w shekels|strong="H8255"\w*, +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w bowl|strong="H4219"\w* \w of|strong="H4392"\w* \w seventy|strong="H7657"\w* \w shekels|strong="H8255"\w*, \w according|strong="H3701"\w* \w to|strong="H3701"\w* \w the|strong="H8147"\w* \w shekel|strong="H8255"\w* \w of|strong="H4392"\w* \w the|strong="H8147"\w* \w sanctuary|strong="H6944"\w*, \w both|strong="H8147"\w* \w of|strong="H4392"\w* \w them|strong="H8147"\w* \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w* \w for|strong="H3701"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*; +\p +\v 74 one \w golden|strong="H2091"\w* ladle \w of|strong="H4392"\w* \w ten|strong="H6235"\w* \w shekels|strong="H7004"\w*, \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w incense|strong="H7004"\w*; +\p +\v 75 \w one|strong="H3532"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w*, +\p \w one|strong="H3532"\w* ram, +\p \w one|strong="H3532"\w* \w male|strong="H3532"\w* \w lamb|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*, \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*; +\p +\v 76 one \w male|strong="H8163"\w* \w goat|strong="H5795"\w* \w for|strong="H2403"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*; +\p +\v 77 \w and|strong="H1121"\w* \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H1121"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w two|strong="H8147"\w* head \w of|strong="H1121"\w* \w cattle|strong="H1241"\w*, \w five|strong="H2568"\w* \w rams|strong="H6260"\w*, \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w goats|strong="H6260"\w*, \w and|strong="H1121"\w* \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*. \w This|strong="H2088"\w* \w was|strong="H1121"\w* \w the|strong="H1121"\w* \w offering|strong="H7133"\w* \w of|strong="H1121"\w* \w Pagiel|strong="H6295"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ochran|strong="H5918"\w*. +\p +\v 78 \w On|strong="H3117"\w* \w the|strong="H3117"\w* \w twelfth|strong="H8147"\w* \w day|strong="H3117"\w* Ahira \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Enan|strong="H5881"\w*, \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Naphtali|strong="H5321"\w*, +\v 79 \w gave|strong="H1101"\w* \w his|strong="H8147"\w* \w offering|strong="H4503"\w*: +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w platter|strong="H7086"\w*, \w the|strong="H8147"\w* \w weight|strong="H4948"\w* \w of|strong="H4392"\w* \w which|strong="H4503"\w* \w was|strong="H4948"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w* \w shekels|strong="H8255"\w*, +\p \w one|strong="H3967"\w* \w silver|strong="H3701"\w* \w bowl|strong="H4219"\w* \w of|strong="H4392"\w* \w seventy|strong="H7657"\w* \w shekels|strong="H8255"\w*, \w according|strong="H3701"\w* \w to|strong="H3701"\w* \w the|strong="H8147"\w* \w shekel|strong="H8255"\w* \w of|strong="H4392"\w* \w the|strong="H8147"\w* \w sanctuary|strong="H6944"\w*, \w both|strong="H8147"\w* \w of|strong="H4392"\w* \w them|strong="H8147"\w* \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w* \w for|strong="H3701"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*; +\p +\v 80 one \w golden|strong="H2091"\w* ladle \w of|strong="H4392"\w* \w ten|strong="H6235"\w* \w shekels|strong="H7004"\w*, \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w incense|strong="H7004"\w*; +\p +\v 81 \w one|strong="H3532"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w*, +\p \w one|strong="H3532"\w* ram, +\p \w one|strong="H3532"\w* \w male|strong="H3532"\w* \w lamb|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*, \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*; +\p +\v 82 one \w male|strong="H8163"\w* \w goat|strong="H5795"\w* \w for|strong="H2403"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*; +\p +\v 83 \w and|strong="H1121"\w* \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H1121"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w two|strong="H8147"\w* head \w of|strong="H1121"\w* \w cattle|strong="H1241"\w*, \w five|strong="H2568"\w* \w rams|strong="H6260"\w*, \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w goats|strong="H6260"\w*, \w and|strong="H1121"\w* \w five|strong="H2568"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*. \w This|strong="H2088"\w* \w was|strong="H1121"\w* \w the|strong="H1121"\w* \w offering|strong="H7133"\w* \w of|strong="H1121"\w* Ahira \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Enan|strong="H5881"\w*. +\p +\v 84 \w This|strong="H2063"\w* \w was|strong="H3478"\w* \w the|strong="H3117"\w* \w dedication|strong="H2598"\w* offering \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w altar|strong="H4196"\w*, \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w when|strong="H3117"\w* \w it|strong="H2063"\w* \w was|strong="H3478"\w* \w anointed|strong="H4886"\w*, \w by|strong="H3117"\w* \w the|strong="H3117"\w* \w princes|strong="H5387"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w*: \w twelve|strong="H8147"\w* \w silver|strong="H3701"\w* \w platters|strong="H7086"\w*, \w twelve|strong="H8147"\w* \w silver|strong="H3701"\w* \w bowls|strong="H4219"\w*, \w twelve|strong="H8147"\w* \w golden|strong="H2091"\w* \w ladles|strong="H3709"\w*; +\v 85 \w each|strong="H3605"\w* \w silver|strong="H3701"\w* \w platter|strong="H7086"\w* weighing \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w* \w shekels|strong="H8255"\w*, \w and|strong="H3967"\w* \w each|strong="H3605"\w* \w bowl|strong="H4219"\w* \w seventy|strong="H7657"\w*; \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w silver|strong="H3701"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w two|strong="H3967"\w* thousand four \w hundred|strong="H3967"\w* \w shekels|strong="H8255"\w*, \w according|strong="H3701"\w* \w to|strong="H3701"\w* \w the|strong="H3605"\w* \w shekel|strong="H8255"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w*; +\v 86 \w the|strong="H3605"\w* \w twelve|strong="H8147"\w* \w golden|strong="H2091"\w* \w ladles|strong="H3709"\w*, \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w incense|strong="H7004"\w*, \w weighing|strong="H4392"\w* \w ten|strong="H6235"\w* \w shekels|strong="H8255"\w* \w apiece|strong="H6235"\w*, according \w to|strong="H6242"\w* \w the|strong="H3605"\w* \w shekel|strong="H8255"\w* \w of|strong="H4392"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w*; \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w gold|strong="H2091"\w* \w of|strong="H4392"\w* \w the|strong="H3605"\w* \w ladles|strong="H3709"\w* weighed \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* \w twenty|strong="H6242"\w* \w shekels|strong="H8255"\w*; +\v 87 \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cattle|strong="H1241"\w* \w for|strong="H1121"\w* \w the|strong="H3605"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w* \w twelve|strong="H8147"\w* \w bulls|strong="H6499"\w*, \w the|strong="H3605"\w* rams \w twelve|strong="H8147"\w*, \w the|strong="H3605"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w* \w twelve|strong="H8147"\w*, \w and|strong="H1121"\w* \w their|strong="H3605"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*; \w and|strong="H1121"\w* \w twelve|strong="H8147"\w* \w male|strong="H3532"\w* \w goats|strong="H5795"\w* \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H4503"\w*; +\v 88 \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cattle|strong="H1241"\w* \w for|strong="H4196"\w* \w the|strong="H3605"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H1121"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*: \w twenty-four|strong="H6242"\w* \w bulls|strong="H6499"\w*, \w sixty|strong="H8346"\w* \w rams|strong="H6260"\w*, \w sixty|strong="H8346"\w* \w male|strong="H3532"\w* \w goats|strong="H6260"\w*, \w and|strong="H1121"\w* \w sixty|strong="H8346"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*. \w This|strong="H2063"\w* \w was|strong="H1121"\w* \w the|strong="H3605"\w* \w dedication|strong="H2598"\w* \w offering|strong="H8002"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*, \w after|strong="H8141"\w* \w it|strong="H2063"\w* \w was|strong="H1121"\w* \w anointed|strong="H4886"\w*. +\p +\v 89 \w When|strong="H8085"\w* \w Moses|strong="H4872"\w* \w went|strong="H4872"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* Tent \w of|strong="H6963"\w* \w Meeting|strong="H4150"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w with|strong="H1696"\w* \w Yahweh|strong="H3068"\w*, \w he|strong="H8147"\w* \w heard|strong="H8085"\w* \w his|strong="H8085"\w* \w voice|strong="H6963"\w* \w speaking|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5921"\w* \w from|strong="H5921"\w* \w above|strong="H5921"\w* \w the|strong="H5921"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w* \w that|strong="H8085"\w* \w was|strong="H4872"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* ark \w of|strong="H6963"\w* \w the|strong="H5921"\w* \w Testimony|strong="H5715"\w*, \w from|strong="H5921"\w* \w between|strong="H6963"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w cherubim|strong="H3742"\w*; \w and|strong="H4872"\w* \w he|strong="H8147"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5921"\w*. +\c 8 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* Aaron, \w and|strong="H6440"\w* \w tell|strong="H1696"\w* \w him|strong="H6440"\w*, ‘\w When|strong="H1696"\w* \w you|strong="H6440"\w* \w light|strong="H5216"\w* \w the|strong="H6440"\w* \w lamps|strong="H5216"\w*, \w the|strong="H6440"\w* \w seven|strong="H7651"\w* \w lamps|strong="H5216"\w* \w shall|strong="H6440"\w* \w give|strong="H1696"\w* \w light|strong="H5216"\w* \w in|strong="H1696"\w* \w front|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w lamp|strong="H5216"\w* stand.’” +\p +\v 3 Aaron \w did|strong="H6213"\w* \w so|strong="H3651"\w*. \w He|strong="H3651"\w* lit \w its|strong="H6213"\w* \w lamps|strong="H5216"\w* \w to|strong="H3068"\w* \w light|strong="H5216"\w* \w the|strong="H6440"\w* area \w in|strong="H3068"\w* \w front|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w lamp|strong="H5216"\w* stand, \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\v 4 \w This|strong="H2088"\w* \w was|strong="H3068"\w* \w the|strong="H7200"\w* \w workmanship|strong="H4639"\w* \w of|strong="H3068"\w* \w the|strong="H7200"\w* lamp stand, \w beaten|strong="H4749"\w* \w work|strong="H4639"\w* \w of|strong="H3068"\w* \w gold|strong="H2091"\w*. \w From|strong="H5704"\w* \w its|strong="H6213"\w* \w base|strong="H3409"\w* \w to|strong="H5704"\w* \w its|strong="H6213"\w* \w flowers|strong="H6525"\w*, \w it|strong="H1931"\w* \w was|strong="H3068"\w* \w beaten|strong="H4749"\w* \w work|strong="H4639"\w*. \w He|strong="H1931"\w* \w made|strong="H6213"\w* \w the|strong="H7200"\w* lamp stand according \w to|strong="H5704"\w* \w the|strong="H7200"\w* \w pattern|strong="H4758"\w* \w which|strong="H1931"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w shown|strong="H7200"\w* \w Moses|strong="H4872"\w*. +\p +\v 5 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 6 “\w Take|strong="H3947"\w* \w the|strong="H3947"\w* \w Levites|strong="H3881"\w* \w from|strong="H3478"\w* \w among|strong="H8432"\w* \w the|strong="H3947"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w cleanse|strong="H2891"\w* \w them|strong="H3947"\w*. +\v 7 \w You|strong="H3605"\w* \w shall|strong="H4325"\w* \w do|strong="H6213"\w* \w this|strong="H6213"\w* \w to|strong="H6213"\w* \w them|strong="H5921"\w* \w to|strong="H6213"\w* \w cleanse|strong="H2891"\w* \w them|strong="H5921"\w*: \w sprinkle|strong="H5137"\w* \w the|strong="H3605"\w* \w water|strong="H4325"\w* \w of|strong="H4325"\w* \w cleansing|strong="H2891"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, let \w them|strong="H5921"\w* \w shave|strong="H8593"\w* \w their|strong="H3605"\w* \w whole|strong="H3605"\w* \w bodies|strong="H1320"\w* \w with|strong="H6213"\w* \w a|strong="H3068"\w* \w razor|strong="H8593"\w*, let \w them|strong="H5921"\w* \w wash|strong="H3526"\w* \w their|strong="H3605"\w* clothes, \w and|strong="H6213"\w* \w cleanse|strong="H2891"\w* \w themselves|strong="H6213"\w*. +\v 8 \w Then|strong="H3947"\w* let \w them|strong="H3947"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w* \w and|strong="H1121"\w* \w its|strong="H3947"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w*; \w and|strong="H1121"\w* \w another|strong="H8145"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w* \w you|strong="H3947"\w* \w shall|strong="H1121"\w* \w take|strong="H3947"\w* \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H4503"\w*. +\v 9 \w You|strong="H6440"\w* \w shall|strong="H1121"\w* \w present|strong="H7126"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*. \w You|strong="H6440"\w* \w shall|strong="H1121"\w* \w assemble|strong="H6950"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 10 \w You|strong="H6440"\w* \w shall|strong="H3068"\w* \w present|strong="H7126"\w* \w the|strong="H6440"\w* \w Levites|strong="H3881"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. \w The|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w shall|strong="H3068"\w* \w lay|strong="H5564"\w* \w their|strong="H3068"\w* \w hands|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w Levites|strong="H3881"\w*, +\v 11 \w and|strong="H1121"\w* Aaron \w shall|strong="H3068"\w* \w offer|strong="H5130"\w* \w the|strong="H6440"\w* \w Levites|strong="H3881"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H6440"\w* \w a|strong="H3068"\w* \w wave|strong="H8573"\w* \w offering|strong="H8573"\w* \w on|strong="H3068"\w* \w the|strong="H6440"\w* behalf \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w that|strong="H3068"\w* \w it|strong="H6440"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* theirs \w to|strong="H3478"\w* \w do|strong="H5647"\w* \w the|strong="H6440"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 12 “\w The|strong="H5921"\w* \w Levites|strong="H3881"\w* \w shall|strong="H3068"\w* \w lay|strong="H5564"\w* \w their|strong="H3068"\w* \w hands|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w heads|strong="H7218"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w bulls|strong="H6499"\w*, \w and|strong="H3068"\w* \w you|strong="H5921"\w* \w shall|strong="H3068"\w* \w offer|strong="H6213"\w* \w the|strong="H5921"\w* \w one|strong="H6213"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w* \w and|strong="H3068"\w* \w the|strong="H5921"\w* other \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w to|strong="H3068"\w* \w make|strong="H6213"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w*. +\v 13 \w You|strong="H6440"\w* \w shall|strong="H3068"\w* \w set|strong="H5975"\w* \w the|strong="H6440"\w* \w Levites|strong="H3881"\w* \w before|strong="H6440"\w* Aaron \w and|strong="H1121"\w* \w before|strong="H6440"\w* \w his|strong="H3068"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w offer|strong="H5130"\w* \w them|strong="H6440"\w* \w as|strong="H3068"\w* \w a|strong="H3068"\w* \w wave|strong="H8573"\w* \w offering|strong="H8573"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 14 \w Thus|strong="H1961"\w* \w you|strong="H8432"\w* \w shall|strong="H1121"\w* separate \w the|strong="H8432"\w* \w Levites|strong="H3881"\w* \w from|strong="H3478"\w* \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w the|strong="H8432"\w* \w Levites|strong="H3881"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w mine|strong="H3478"\w*. +\p +\v 15 “After \w that|strong="H3651"\w*, \w the|strong="H5647"\w* \w Levites|strong="H3881"\w* \w shall|strong="H3881"\w* \w go|strong="H3881"\w* \w in|strong="H3881"\w* \w to|strong="H4150"\w* \w do|strong="H5647"\w* \w the|strong="H5647"\w* \w service|strong="H5647"\w* \w of|strong="H5647"\w* \w the|strong="H5647"\w* Tent \w of|strong="H5647"\w* \w Meeting|strong="H4150"\w*. \w You|strong="H3651"\w* \w shall|strong="H3881"\w* \w cleanse|strong="H2891"\w* \w them|strong="H5130"\w*, \w and|strong="H3881"\w* \w offer|strong="H5130"\w* \w them|strong="H5130"\w* \w as|strong="H3651"\w* \w a|strong="H3068"\w* \w wave|strong="H8573"\w* \w offering|strong="H8573"\w*. +\v 16 \w For|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w wholly|strong="H5414"\w* \w given|strong="H5414"\w* \w to|strong="H3478"\w* \w me|strong="H5414"\w* \w from|strong="H3478"\w* \w among|strong="H8432"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w instead|strong="H8478"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w open|strong="H6363"\w* \w the|strong="H3605"\w* \w womb|strong="H7358"\w*, \w even|strong="H3588"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w I|strong="H3588"\w* \w have|strong="H1121"\w* \w taken|strong="H3947"\w* \w them|strong="H5414"\w* \w to|strong="H3478"\w* \w me|strong="H5414"\w*. +\v 17 \w For|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w among|strong="H1060"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w are|strong="H3117"\w* \w mine|strong="H3478"\w*, \w both|strong="H3605"\w* \w man|strong="H1121"\w* \w and|strong="H1121"\w* animal. \w On|strong="H3117"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w struck|strong="H5221"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w I|strong="H3588"\w* \w sanctified|strong="H6942"\w* \w them|strong="H5221"\w* \w for|strong="H3588"\w* \w myself|strong="H6942"\w*. +\v 18 \w I|strong="H1121"\w* \w have|strong="H1121"\w* \w taken|strong="H3947"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w instead|strong="H8478"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w among|strong="H8478"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 19 \w I|strong="H5414"\w* \w have|strong="H1961"\w* \w given|strong="H5414"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w gift|strong="H5414"\w* \w to|strong="H3478"\w* Aaron \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w his|strong="H5414"\w* \w sons|strong="H1121"\w* \w from|strong="H5921"\w* \w among|strong="H8432"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w do|strong="H5647"\w* \w the|strong="H5921"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*, \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w make|strong="H5414"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w so|strong="H1961"\w* \w that|strong="H3478"\w* \w there|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w no|strong="H3808"\w* \w plague|strong="H5063"\w* \w among|strong="H8432"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w when|strong="H1961"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w come|strong="H1961"\w* \w near|strong="H5066"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w sanctuary|strong="H6944"\w*.” +\p +\v 20 \w Moses|strong="H4872"\w*, \w and|strong="H1121"\w* Aaron, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*. According \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w* \w concerning|strong="H3068"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*, \w so|strong="H3651"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w did|strong="H6213"\w* \w to|strong="H3478"\w* \w them|strong="H6213"\w*. +\v 21 \w The|strong="H6440"\w* \w Levites|strong="H3881"\w* \w purified|strong="H2891"\w* \w themselves|strong="H2891"\w* \w from|strong="H6440"\w* \w sin|strong="H2398"\w*, \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w washed|strong="H3526"\w* \w their|strong="H3068"\w* clothes; \w and|strong="H3068"\w* Aaron \w offered|strong="H5130"\w* \w them|strong="H5921"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w wave|strong="H8573"\w* \w offering|strong="H8573"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* Aaron \w made|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w them|strong="H5921"\w* \w to|strong="H3068"\w* \w cleanse|strong="H2891"\w* \w them|strong="H5921"\w*. +\v 22 \w After|strong="H5921"\w* \w that|strong="H3068"\w*, \w the|strong="H6440"\w* \w Levites|strong="H3881"\w* \w went|strong="H4872"\w* \w in|strong="H5921"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w their|strong="H3068"\w* \w service|strong="H5656"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w* \w before|strong="H6440"\w* Aaron \w and|strong="H1121"\w* \w before|strong="H6440"\w* \w his|strong="H3068"\w* \w sons|strong="H1121"\w*: \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w* \w concerning|strong="H5921"\w* \w the|strong="H6440"\w* \w Levites|strong="H3881"\w*, \w so|strong="H3651"\w* \w they|strong="H3651"\w* \w did|strong="H6213"\w* \w to|strong="H3068"\w* \w them|strong="H5921"\w*. +\p +\v 23 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 24 “\w This|strong="H2063"\w* \w is|strong="H1121"\w* \w what|strong="H2063"\w* \w is|strong="H1121"\w* \w assigned|strong="H5656"\w* \w to|strong="H1121"\w* \w the|strong="H1121"\w* \w Levites|strong="H3881"\w*: \w from|strong="H1121"\w* \w twenty-five|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w* \w they|strong="H8141"\w* \w shall|strong="H1121"\w* \w go|strong="H3881"\w* \w in|strong="H8141"\w* \w to|strong="H1121"\w* \w wait|strong="H6633"\w* \w on|strong="H6635"\w* \w the|strong="H1121"\w* \w service|strong="H5656"\w* \w in|strong="H8141"\w* \w the|strong="H1121"\w* \w work|strong="H5656"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*; +\v 25 \w and|strong="H1121"\w* \w from|strong="H7725"\w* \w the|strong="H5647"\w* \w age|strong="H1121"\w* \w of|strong="H1121"\w* \w fifty|strong="H2572"\w* \w years|strong="H8141"\w* \w they|strong="H3808"\w* \w shall|strong="H1121"\w* \w retire|strong="H7725"\w* \w from|strong="H7725"\w* doing \w the|strong="H5647"\w* \w work|strong="H5656"\w*, \w and|strong="H1121"\w* \w shall|strong="H1121"\w* \w serve|strong="H5647"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w*, +\v 26 \w but|strong="H3808"\w* \w shall|strong="H3881"\w* \w assist|strong="H8334"\w* \w their|strong="H5647"\w* brothers \w in|strong="H6213"\w* \w the|strong="H6213"\w* Tent \w of|strong="H6213"\w* \w Meeting|strong="H4150"\w*, \w to|strong="H6213"\w* \w perform|strong="H6213"\w* \w the|strong="H6213"\w* \w duty|strong="H4931"\w*, \w and|strong="H6213"\w* \w shall|strong="H3881"\w* \w perform|strong="H6213"\w* \w no|strong="H3808"\w* \w service|strong="H5656"\w*. \w This|strong="H6213"\w* \w is|strong="H6213"\w* \w how|strong="H6213"\w* \w you|strong="H6213"\w* \w shall|strong="H3881"\w* \w have|strong="H3808"\w* \w the|strong="H6213"\w* \w Levites|strong="H3881"\w* \w do|strong="H6213"\w* \w their|strong="H5647"\w* \w duties|strong="H4931"\w*.” +\c 9 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w wilderness|strong="H4057"\w* \w of|strong="H3068"\w* \w Sinai|strong="H5514"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w second|strong="H8145"\w* \w year|strong="H8141"\w* \w after|strong="H3318"\w* \w they|strong="H3068"\w* \w had|strong="H3068"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w saying|strong="H1696"\w*, +\v 2 “Let \w the|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w keep|strong="H6213"\w* \w the|strong="H6213"\w* \w Passover|strong="H6453"\w* \w in|strong="H3478"\w* \w its|strong="H6213"\w* \w appointed|strong="H4150"\w* \w season|strong="H4150"\w*. +\v 3 \w On|strong="H3117"\w* \w the|strong="H3605"\w* \w fourteenth|strong="H6240"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w this|strong="H2088"\w* \w month|strong="H2320"\w*, \w at|strong="H2320"\w* \w evening|strong="H6153"\w*, \w you|strong="H3605"\w* \w shall|strong="H3117"\w* \w keep|strong="H6213"\w* \w it|strong="H6213"\w* \w in|strong="H6213"\w* \w its|strong="H3605"\w* \w appointed|strong="H4150"\w* \w season|strong="H4150"\w*. \w You|strong="H3605"\w* \w shall|strong="H3117"\w* \w keep|strong="H6213"\w* \w it|strong="H6213"\w* \w according|strong="H4941"\w* \w to|strong="H6213"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w statutes|strong="H2708"\w* \w and|strong="H3117"\w* \w according|strong="H4941"\w* \w to|strong="H6213"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w ordinances|strong="H4941"\w*.” +\p +\v 4 \w Moses|strong="H4872"\w* \w told|strong="H1696"\w* \w the|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w that|strong="H3478"\w* \w they|strong="H6213"\w* \w should|strong="H3478"\w* \w keep|strong="H6213"\w* \w the|strong="H6213"\w* \w Passover|strong="H6453"\w*. +\v 5 \w They|strong="H3117"\w* \w kept|strong="H6213"\w* \w the|strong="H3605"\w* \w Passover|strong="H6453"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*, \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w fourteenth|strong="H6240"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w month|strong="H2320"\w* \w at|strong="H3478"\w* \w evening|strong="H6153"\w*, \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* \w of|strong="H1121"\w* \w Sinai|strong="H5514"\w*. According \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*, \w so|strong="H3651"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w did|strong="H6213"\w*. +\v 6 \w There|strong="H1961"\w* \w were|strong="H1961"\w* certain \w men|strong="H6213"\w* \w who|strong="H1931"\w* \w were|strong="H1961"\w* \w unclean|strong="H2931"\w* \w because|strong="H6440"\w* \w of|strong="H3117"\w* \w the|strong="H6440"\w* \w dead|strong="H5315"\w* \w body|strong="H5315"\w* \w of|strong="H3117"\w* \w a|strong="H3068"\w* \w man|strong="H5315"\w*, \w so|strong="H6213"\w* \w that|strong="H3117"\w* \w they|strong="H3117"\w* \w could|strong="H3201"\w* \w not|strong="H3808"\w* \w keep|strong="H6213"\w* \w the|strong="H6440"\w* \w Passover|strong="H6453"\w* \w on|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w and|strong="H4872"\w* \w they|strong="H3117"\w* \w came|strong="H1961"\w* \w before|strong="H6440"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron \w on|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*. +\v 7 \w Those|strong="H1992"\w* \w men|strong="H1121"\w* said \w to|strong="H3478"\w* \w him|strong="H5315"\w*, “\w We|strong="H5315"\w* \w are|strong="H1992"\w* \w unclean|strong="H2931"\w* \w because|strong="H1115"\w* \w of|strong="H1121"\w* \w the|strong="H8432"\w* \w dead|strong="H5315"\w* \w body|strong="H5315"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w*. \w Why|strong="H4100"\w* \w are|strong="H1992"\w* \w we|strong="H3068"\w* kept \w back|strong="H1639"\w*, \w that|strong="H5315"\w* \w we|strong="H3068"\w* \w may|strong="H3068"\w* \w not|strong="H1115"\w* \w offer|strong="H7126"\w* \w the|strong="H8432"\w* \w offering|strong="H7133"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3478"\w* its \w appointed|strong="H4150"\w* \w season|strong="H4150"\w* \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*?” +\p +\v 8 \w Moses|strong="H4872"\w* \w answered|strong="H8085"\w* \w them|strong="H5975"\w*, “\w Wait|strong="H5975"\w*, \w that|strong="H8085"\w* \w I|strong="H6680"\w* \w may|strong="H3068"\w* \w hear|strong="H8085"\w* \w what|strong="H4100"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w command|strong="H6680"\w* \w concerning|strong="H3068"\w* \w you|strong="H6680"\w*.” +\p +\v 9 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 10 “\w Say|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, ‘\w If|strong="H3588"\w* \w any|strong="H6213"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w you|strong="H3588"\w* \w or|strong="H1121"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* \w generations|strong="H1755"\w* \w is|strong="H3068"\w* \w unclean|strong="H2931"\w* \w by|strong="H3068"\w* reason \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w dead|strong="H5315"\w* \w body|strong="H5315"\w*, \w or|strong="H1121"\w* \w is|strong="H3068"\w* \w on|strong="H1870"\w* \w a|strong="H3068"\w* \w journey|strong="H1870"\w* \w far|strong="H7350"\w* \w away|strong="H1870"\w*, \w he|strong="H3588"\w* \w shall|strong="H3068"\w* \w still|strong="H3588"\w* \w keep|strong="H6213"\w* \w the|strong="H3588"\w* \w Passover|strong="H6453"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*. +\v 11 \w In|strong="H5921"\w* \w the|strong="H5921"\w* \w second|strong="H8145"\w* \w month|strong="H2320"\w*, \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w fourteenth|strong="H6240"\w* \w day|strong="H3117"\w* \w at|strong="H5921"\w* \w evening|strong="H6153"\w* \w they|strong="H3117"\w* \w shall|strong="H3117"\w* \w keep|strong="H6213"\w* \w it|strong="H5921"\w*; \w they|strong="H3117"\w* \w shall|strong="H3117"\w* eat \w it|strong="H5921"\w* \w with|strong="H6213"\w* \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w* \w and|strong="H3117"\w* \w bitter|strong="H4844"\w* \w herbs|strong="H4844"\w*. +\v 12 \w They|strong="H3808"\w* \w shall|strong="H3808"\w* \w leave|strong="H7604"\w* \w none|strong="H3808"\w* \w of|strong="H4480"\w* \w it|strong="H6213"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w*, \w nor|strong="H3808"\w* \w break|strong="H7665"\w* \w a|strong="H3068"\w* \w bone|strong="H6106"\w* \w of|strong="H4480"\w* \w it|strong="H6213"\w*. \w According|strong="H4480"\w* \w to|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w statute|strong="H2708"\w* \w of|strong="H4480"\w* \w the|strong="H3605"\w* \w Passover|strong="H6453"\w* \w they|strong="H3808"\w* \w shall|strong="H3808"\w* \w keep|strong="H6213"\w* \w it|strong="H6213"\w*. +\v 13 \w But|strong="H3588"\w* \w the|strong="H3588"\w* \w man|strong="H5315"\w* \w who|strong="H1931"\w* \w is|strong="H3068"\w* \w clean|strong="H2889"\w*, \w and|strong="H3068"\w* \w is|strong="H3068"\w* \w not|strong="H3808"\w* \w on|strong="H1870"\w* \w a|strong="H3068"\w* \w journey|strong="H1870"\w*, \w and|strong="H3068"\w* fails \w to|strong="H3068"\w* \w keep|strong="H6213"\w* \w the|strong="H3588"\w* \w Passover|strong="H6453"\w*, \w that|strong="H3588"\w* \w soul|strong="H5315"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w his|strong="H5375"\w* \w people|strong="H5971"\w*. \w Because|strong="H3588"\w* \w he|strong="H1931"\w* didn’t \w offer|strong="H7126"\w* \w the|strong="H3588"\w* \w offering|strong="H7133"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w its|strong="H6213"\w* \w appointed|strong="H4150"\w* \w season|strong="H4150"\w*, \w that|strong="H3588"\w* \w man|strong="H5315"\w* \w shall|strong="H3068"\w* \w bear|strong="H5375"\w* \w his|strong="H5375"\w* \w sin|strong="H2399"\w*. +\p +\v 14 “‘\w If|strong="H3588"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1616"\w* \w lives|strong="H1481"\w* among \w you|strong="H3588"\w* \w and|strong="H3068"\w* desires \w to|strong="H3068"\w* \w keep|strong="H6213"\w* \w the|strong="H3588"\w* \w Passover|strong="H6453"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w then|strong="H1961"\w* \w he|strong="H3588"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w so|strong="H3651"\w* \w according|strong="H4941"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w statute|strong="H2708"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w Passover|strong="H6453"\w*, \w and|strong="H3068"\w* \w according|strong="H4941"\w* \w to|strong="H3068"\w* \w its|strong="H6213"\w* \w ordinance|strong="H4941"\w*. \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w have|strong="H1961"\w* \w one|strong="H1961"\w* \w statute|strong="H2708"\w*, both \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w foreigner|strong="H1616"\w* \w and|strong="H3068"\w* \w for|strong="H3588"\w* \w him|strong="H6213"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* born \w in|strong="H3068"\w* \w the|strong="H3588"\w* land.’” +\p +\v 15 \w On|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w* \w was|strong="H1961"\w* \w raised|strong="H6965"\w* \w up|strong="H6965"\w*, \w the|strong="H5921"\w* \w cloud|strong="H6051"\w* \w covered|strong="H3680"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w*, \w even|strong="H6153"\w* \w the|strong="H5921"\w* Tent \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w Testimony|strong="H5715"\w*. \w At|strong="H5921"\w* \w evening|strong="H6153"\w* \w it|strong="H5921"\w* \w was|strong="H1961"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w*, \w as|strong="H5704"\w* \w it|strong="H5921"\w* \w were|strong="H1961"\w* \w the|strong="H5921"\w* \w appearance|strong="H4758"\w* \w of|strong="H3117"\w* fire, \w until|strong="H5704"\w* \w morning|strong="H1242"\w*. +\v 16 \w So|strong="H3651"\w* \w it|strong="H3651"\w* \w was|strong="H1961"\w* \w continually|strong="H8548"\w*. \w The|strong="H3680"\w* \w cloud|strong="H6051"\w* \w covered|strong="H3680"\w* \w it|strong="H3651"\w*, \w and|strong="H3915"\w* \w the|strong="H3680"\w* \w appearance|strong="H4758"\w* \w of|strong="H4758"\w* fire \w by|strong="H6051"\w* \w night|strong="H3915"\w*. +\v 17 \w Whenever|strong="H6310"\w* \w the|strong="H5921"\w* \w cloud|strong="H6051"\w* \w was|strong="H3478"\w* \w taken|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5265"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w Tent|strong="H2583"\w*, \w then|strong="H3651"\w* \w after|strong="H5921"\w* \w that|strong="H3651"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w traveled|strong="H5265"\w*; \w and|strong="H1121"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w the|strong="H5921"\w* \w cloud|strong="H6051"\w* \w remained|strong="H2583"\w*, \w there|strong="H8033"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w encamped|strong="H2583"\w*. +\v 18 \w At|strong="H2583"\w* \w the|strong="H3605"\w* \w commandment|strong="H6310"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w traveled|strong="H5265"\w*, \w and|strong="H1121"\w* \w at|strong="H2583"\w* \w the|strong="H3605"\w* \w commandment|strong="H6310"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w they|strong="H3117"\w* \w encamped|strong="H2583"\w*. \w As|strong="H3117"\w* \w long|strong="H3117"\w* \w as|strong="H3117"\w* \w the|strong="H3605"\w* \w cloud|strong="H6051"\w* \w remained|strong="H2583"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w* \w they|strong="H3117"\w* \w remained|strong="H2583"\w* \w encamped|strong="H2583"\w*. +\v 19 \w When|strong="H3117"\w* \w the|strong="H5921"\w* \w cloud|strong="H6051"\w* \w stayed|strong="H3478"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w*, \w then|strong="H3068"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w kept|strong="H8104"\w* \w Yahweh|strong="H3068"\w*’s \w command|strong="H5921"\w*, \w and|strong="H1121"\w* didn’t travel. +\v 20 \w Sometimes|strong="H3426"\w* \w the|strong="H5921"\w* \w cloud|strong="H6051"\w* \w was|strong="H3068"\w* \w a|strong="H3068"\w* \w few|strong="H4557"\w* \w days|strong="H3117"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w*; \w then|strong="H1961"\w* \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w commandment|strong="H6310"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w they|strong="H3117"\w* \w remained|strong="H1961"\w* \w encamped|strong="H2583"\w*, \w and|strong="H3068"\w* \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w commandment|strong="H6310"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w they|strong="H3117"\w* \w traveled|strong="H5265"\w*. +\v 21 \w Sometimes|strong="H3426"\w* \w the|strong="H5704"\w* \w cloud|strong="H6051"\w* \w was|strong="H1961"\w* \w from|strong="H5265"\w* \w evening|strong="H6153"\w* \w until|strong="H5704"\w* \w morning|strong="H1242"\w*; \w and|strong="H3119"\w* \w when|strong="H1961"\w* \w the|strong="H5704"\w* \w cloud|strong="H6051"\w* \w was|strong="H1961"\w* \w taken|strong="H5927"\w* \w up|strong="H5927"\w* \w in|strong="H5927"\w* \w the|strong="H5704"\w* \w morning|strong="H1242"\w*, \w they|strong="H5704"\w* \w traveled|strong="H5265"\w*; \w or|strong="H5704"\w* \w by|strong="H6051"\w* \w day|strong="H3119"\w* \w and|strong="H3119"\w* \w by|strong="H6051"\w* \w night|strong="H3915"\w*, \w when|strong="H1961"\w* \w the|strong="H5704"\w* \w cloud|strong="H6051"\w* \w was|strong="H1961"\w* \w taken|strong="H5927"\w* \w up|strong="H5927"\w*, \w they|strong="H5704"\w* \w traveled|strong="H5265"\w*. +\v 22 Whether \w it|strong="H5921"\w* \w was|strong="H3478"\w* \w two|strong="H3808"\w* \w days|strong="H3117"\w*, \w or|strong="H3808"\w* \w a|strong="H3068"\w* \w month|strong="H2320"\w*, \w or|strong="H3808"\w* \w a|strong="H3068"\w* \w year|strong="H3117"\w* \w that|strong="H3117"\w* \w the|strong="H5921"\w* \w cloud|strong="H6051"\w* \w stayed|strong="H3478"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w*, \w remaining|strong="H7931"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*, \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w remained|strong="H2583"\w* \w encamped|strong="H2583"\w*, \w and|strong="H1121"\w* didn’t travel; \w but|strong="H3808"\w* \w when|strong="H3117"\w* \w it|strong="H5921"\w* \w was|strong="H3478"\w* \w taken|strong="H5927"\w* \w up|strong="H5927"\w*, \w they|strong="H3117"\w* \w traveled|strong="H5265"\w*. +\v 23 \w At|strong="H2583"\w* \w the|strong="H5921"\w* \w commandment|strong="H6310"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w they|strong="H3068"\w* \w encamped|strong="H2583"\w*, \w and|strong="H4872"\w* \w at|strong="H2583"\w* \w the|strong="H5921"\w* \w commandment|strong="H6310"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w they|strong="H3068"\w* \w traveled|strong="H5265"\w*. \w They|strong="H3068"\w* \w kept|strong="H8104"\w* \w Yahweh|strong="H3068"\w*’s \w command|strong="H6310"\w*, \w at|strong="H2583"\w* \w the|strong="H5921"\w* \w commandment|strong="H6310"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w*. +\c 10 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Make|strong="H6213"\w* \w two|strong="H8147"\w* \w trumpets|strong="H2689"\w* \w of|strong="H4264"\w* \w silver|strong="H3701"\w*. \w You|strong="H6213"\w* \w shall|strong="H5712"\w* \w make|strong="H6213"\w* \w them|strong="H6213"\w* \w of|strong="H4264"\w* \w beaten|strong="H4749"\w* \w work|strong="H6213"\w*. \w You|strong="H6213"\w* \w shall|strong="H5712"\w* \w use|strong="H1961"\w* \w them|strong="H6213"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w calling|strong="H4744"\w* \w of|strong="H4264"\w* \w the|strong="H6213"\w* \w congregation|strong="H5712"\w* \w and|strong="H3701"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w journeying|strong="H4550"\w* \w of|strong="H4264"\w* \w the|strong="H6213"\w* \w camps|strong="H4264"\w*. +\v 3 \w When|strong="H8628"\w* \w they|strong="H3605"\w* \w blow|strong="H8628"\w* them, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w shall|strong="H5712"\w* \w gather|strong="H3259"\w* \w themselves|strong="H6607"\w* \w to|strong="H4150"\w* \w you|strong="H3605"\w* \w at|strong="H6607"\w* \w the|strong="H3605"\w* \w door|strong="H6607"\w* \w of|strong="H5712"\w* \w the|strong="H3605"\w* Tent \w of|strong="H5712"\w* \w Meeting|strong="H4150"\w*. +\v 4 If \w they|strong="H3478"\w* \w blow|strong="H8628"\w* just one, \w then|strong="H7218"\w* \w the|strong="H8628"\w* \w princes|strong="H5387"\w*, \w the|strong="H8628"\w* \w heads|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H8628"\w* thousands \w of|strong="H7218"\w* \w Israel|strong="H3478"\w*, \w shall|strong="H3478"\w* \w gather|strong="H3259"\w* \w themselves|strong="H7218"\w* \w to|strong="H3478"\w* \w you|strong="H3478"\w*. +\v 5 \w When|strong="H5265"\w* you \w blow|strong="H8628"\w* \w an|strong="H8628"\w* \w alarm|strong="H8643"\w*, \w the|strong="H8628"\w* \w camps|strong="H4264"\w* \w that|strong="H4264"\w* \w lie|strong="H2583"\w* \w on|strong="H2583"\w* \w the|strong="H8628"\w* \w east|strong="H6924"\w* \w side|strong="H6924"\w* \w shall|strong="H6924"\w* \w go|strong="H5265"\w* \w forward|strong="H5265"\w*. +\v 6 \w When|strong="H5265"\w* \w you|strong="H8145"\w* \w blow|strong="H8628"\w* \w an|strong="H8628"\w* \w alarm|strong="H8643"\w* \w the|strong="H8628"\w* \w second|strong="H8145"\w* \w time|strong="H8145"\w*, \w the|strong="H8628"\w* \w camps|strong="H4264"\w* \w that|strong="H4264"\w* \w lie|strong="H2583"\w* \w on|strong="H2583"\w* \w the|strong="H8628"\w* \w south|strong="H8486"\w* \w side|strong="H8486"\w* \w shall|strong="H8486"\w* \w go|strong="H5265"\w* \w forward|strong="H5265"\w*. They \w shall|strong="H8486"\w* \w blow|strong="H8628"\w* \w an|strong="H8628"\w* \w alarm|strong="H8643"\w* \w for|strong="H4264"\w* \w their|strong="H5265"\w* \w journeys|strong="H4550"\w*. +\v 7 \w But|strong="H3808"\w* \w when|strong="H8628"\w* \w the|strong="H8628"\w* \w assembly|strong="H6951"\w* \w is|strong="H8628"\w* \w to|strong="H3808"\w* \w be|strong="H3808"\w* \w gathered|strong="H6950"\w* \w together|strong="H6950"\w*, \w you|strong="H3808"\w* \w shall|strong="H3808"\w* \w blow|strong="H8628"\w*, \w but|strong="H3808"\w* \w you|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w sound|strong="H7321"\w* \w an|strong="H8628"\w* \w alarm|strong="H7321"\w*. +\p +\v 8 “\w The|strong="H1961"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron, \w the|strong="H1961"\w* \w priests|strong="H3548"\w*, \w shall|strong="H3548"\w* \w blow|strong="H8628"\w* \w the|strong="H1961"\w* \w trumpets|strong="H2689"\w*. \w This|strong="H2708"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w to|strong="H1961"\w* \w you|strong="H5769"\w* \w for|strong="H2708"\w* \w a|strong="H3068"\w* \w statute|strong="H2708"\w* \w forever|strong="H5769"\w* \w throughout|strong="H1755"\w* \w your|strong="H1961"\w* \w generations|strong="H1755"\w*. +\v 9 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w go|strong="H3068"\w* \w to|strong="H3068"\w* \w war|strong="H4421"\w* \w in|strong="H5921"\w* \w your|strong="H3068"\w* \w land|strong="H6440"\w* \w against|strong="H5921"\w* \w the|strong="H6440"\w* \w adversary|strong="H6862"\w* \w who|strong="H3068"\w* oppresses \w you|strong="H3588"\w*, \w then|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w sound|strong="H7321"\w* \w an|strong="H3588"\w* \w alarm|strong="H7321"\w* \w with|strong="H3068"\w* \w the|strong="H6440"\w* \w trumpets|strong="H2689"\w*. \w Then|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w remembered|strong="H2142"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w saved|strong="H3467"\w* \w from|strong="H6440"\w* \w your|strong="H3068"\w* \w enemies|strong="H6862"\w*. +\p +\v 10 “\w Also|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w gladness|strong="H8057"\w*, \w and|strong="H3068"\w* \w in|strong="H5921"\w* \w your|strong="H3068"\w* \w set|strong="H4150"\w* \w feasts|strong="H4150"\w*, \w and|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w beginnings|strong="H7218"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w months|strong="H2320"\w*, \w you|strong="H6440"\w* \w shall|strong="H3068"\w* \w blow|strong="H8628"\w* \w the|strong="H6440"\w* \w trumpets|strong="H2689"\w* \w over|strong="H5921"\w* \w your|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w*, \w and|strong="H3068"\w* \w over|strong="H5921"\w* \w the|strong="H6440"\w* \w sacrifices|strong="H2077"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*; \w and|strong="H3068"\w* \w they|strong="H3117"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w to|strong="H3068"\w* \w you|strong="H6440"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w memorial|strong="H2146"\w* \w before|strong="H6440"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \w I|strong="H3117"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*.” +\p +\v 11 \w In|strong="H8141"\w* \w the|strong="H5921"\w* \w second|strong="H8145"\w* \w year|strong="H8141"\w*, \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w second|strong="H8145"\w* \w month|strong="H2320"\w*, \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w twentieth|strong="H6242"\w* \w day|strong="H2320"\w* \w of|strong="H8141"\w* \w the|strong="H5921"\w* \w month|strong="H2320"\w*, \w the|strong="H5921"\w* \w cloud|strong="H6051"\w* \w was|strong="H1961"\w* \w taken|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5921"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w tabernacle|strong="H4908"\w* \w of|strong="H8141"\w* \w the|strong="H5921"\w* covenant. +\v 12 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w went|strong="H3478"\w* \w forward|strong="H5265"\w* \w on|strong="H7931"\w* \w their|strong="H5265"\w* \w journeys|strong="H4550"\w* \w out|strong="H5265"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w wilderness|strong="H4057"\w* \w of|strong="H1121"\w* \w Sinai|strong="H5514"\w*; \w and|strong="H1121"\w* \w the|strong="H1121"\w* \w cloud|strong="H6051"\w* \w stayed|strong="H3478"\w* \w in|strong="H3478"\w* \w the|strong="H1121"\w* \w wilderness|strong="H4057"\w* \w of|strong="H1121"\w* \w Paran|strong="H6290"\w*. +\v 13 \w They|strong="H3068"\w* \w first|strong="H7223"\w* \w went|strong="H4872"\w* \w forward|strong="H5265"\w* \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w commandment|strong="H6310"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w*. +\p +\v 14 \w First|strong="H7223"\w*, \w the|strong="H5921"\w* \w standard|strong="H1714"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w camp|strong="H4264"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w went|strong="H5265"\w* \w forward|strong="H5265"\w* \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w their|strong="H5921"\w* \w armies|strong="H6635"\w*. \w Nahshon|strong="H5177"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Amminadab|strong="H5992"\w* \w was|strong="H3063"\w* \w over|strong="H5921"\w* \w his|strong="H5921"\w* \w army|strong="H6635"\w*. +\v 15 \w Nethanel|strong="H5417"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zuar|strong="H6686"\w* \w was|strong="H1121"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w army|strong="H6635"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Issachar|strong="H3485"\w*. +\v 16 Eliab \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Helon|strong="H2497"\w* \w was|strong="H1121"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w army|strong="H6635"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Zebulun|strong="H2074"\w*. +\v 17 \w The|strong="H5375"\w* \w tabernacle|strong="H4908"\w* \w was|strong="H1121"\w* \w taken|strong="H5375"\w* \w down|strong="H3381"\w*; \w and|strong="H1121"\w* \w the|strong="H5375"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Gershon|strong="H1648"\w* \w and|strong="H1121"\w* \w the|strong="H5375"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w*, \w who|strong="H1121"\w* \w bore|strong="H5375"\w* \w the|strong="H5375"\w* \w tabernacle|strong="H4908"\w*, \w went|strong="H3381"\w* \w forward|strong="H5265"\w*. +\v 18 \w The|strong="H5921"\w* \w standard|strong="H1714"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w camp|strong="H4264"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* \w went|strong="H5265"\w* \w forward|strong="H5265"\w* \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w their|strong="H5921"\w* \w armies|strong="H6635"\w*. Elizur \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shedeur|strong="H7707"\w* \w was|strong="H1121"\w* \w over|strong="H5921"\w* \w his|strong="H5921"\w* \w army|strong="H6635"\w*. +\v 19 \w Shelumiel|strong="H8017"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zurishaddai|strong="H6701"\w* \w was|strong="H1121"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w army|strong="H6635"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Simeon|strong="H8095"\w*. +\v 20 Eliasaph \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Deuel|strong="H1845"\w* \w was|strong="H1121"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w army|strong="H6635"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w*. +\p +\v 21 \w The|strong="H5375"\w* \w Kohathites|strong="H6956"\w* \w set|strong="H5265"\w* \w forward|strong="H5265"\w*, \w bearing|strong="H5375"\w* \w the|strong="H5375"\w* \w sanctuary|strong="H4720"\w*. \w The|strong="H5375"\w* others \w set|strong="H5265"\w* \w up|strong="H6965"\w* \w the|strong="H5375"\w* \w tabernacle|strong="H4908"\w* \w before|strong="H5704"\w* \w they|strong="H5704"\w* arrived. +\p +\v 22 \w The|strong="H5921"\w* \w standard|strong="H1714"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w camp|strong="H4264"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Ephraim \w set|strong="H5265"\w* \w forward|strong="H5265"\w* \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w their|strong="H5921"\w* \w armies|strong="H6635"\w*. Elishama \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammihud|strong="H5989"\w* \w was|strong="H1121"\w* \w over|strong="H5921"\w* \w his|strong="H5921"\w* \w army|strong="H6635"\w*. +\v 23 \w Gamaliel|strong="H1583"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Pedahzur|strong="H6301"\w* \w was|strong="H1121"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w army|strong="H6635"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*. +\v 24 Abidan \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Gideoni|strong="H1441"\w* \w was|strong="H1121"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w army|strong="H6635"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*. +\p +\v 25 \w The|strong="H3605"\w* \w standard|strong="H1714"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w*, \w which|strong="H6635"\w* \w was|strong="H1121"\w* \w the|strong="H3605"\w* rear guard \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w camps|strong="H4264"\w*, \w set|strong="H5265"\w* \w forward|strong="H5265"\w* \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w their|strong="H3605"\w* \w armies|strong="H6635"\w*. Ahiezer \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammishaddai|strong="H5996"\w* \w was|strong="H1121"\w* \w over|strong="H5921"\w* \w his|strong="H3605"\w* \w army|strong="H6635"\w*. +\v 26 \w Pagiel|strong="H6295"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ochran|strong="H5918"\w* \w was|strong="H1121"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w army|strong="H6635"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Asher. +\v 27 Ahira \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Enan|strong="H5881"\w* \w was|strong="H1121"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w army|strong="H6635"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Naphtali|strong="H5321"\w*. +\v 28 Thus \w were|strong="H3478"\w* \w the|strong="H1121"\w* travels \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* according \w to|strong="H3478"\w* \w their|strong="H5265"\w* \w armies|strong="H6635"\w*; \w and|strong="H1121"\w* \w they|strong="H3478"\w* \w went|strong="H3478"\w* \w forward|strong="H5265"\w*. +\p +\v 29 \w Moses|strong="H4872"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Hobab|strong="H2246"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuel|strong="H7467"\w* \w the|strong="H5921"\w* \w Midianite|strong="H4084"\w*, \w Moses|strong="H4872"\w*’ \w father-in-law|strong="H2859"\w*, “\w We|strong="H3588"\w* \w are|strong="H1121"\w* \w journeying|strong="H5265"\w* \w to|strong="H1696"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w of|strong="H1121"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w*, ‘\w I|strong="H3588"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*.’ \w Come|strong="H3212"\w* \w with|strong="H3068"\w* \w us|strong="H5414"\w*, \w and|strong="H1121"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w treat|strong="H3190"\w* \w you|strong="H3588"\w* \w well|strong="H3190"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w good|strong="H2896"\w* \w concerning|strong="H5921"\w* \w Israel|strong="H3478"\w*.” +\p +\v 30 \w He|strong="H3588"\w* said \w to|strong="H3212"\w* \w him|strong="H3588"\w*, “\w I|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w go|strong="H3212"\w*; \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3808"\w* \w depart|strong="H3212"\w* \w to|strong="H3212"\w* \w my|strong="H3588"\w* own land, \w and|strong="H3212"\w* \w to|strong="H3212"\w* \w my|strong="H3588"\w* \w relatives|strong="H4138"\w*.” +\p +\v 31 \w Moses|strong="H3588"\w* \w said|strong="H3651"\w*, “Don’t \w leave|strong="H5800"\w* \w us|strong="H4994"\w*, \w please|strong="H4994"\w*; \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w know|strong="H3045"\w* \w how|strong="H3588"\w* \w we|strong="H3068"\w* \w are|strong="H5869"\w* \w to|strong="H1961"\w* \w encamp|strong="H2583"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*, \w and|strong="H5869"\w* \w you|strong="H3588"\w* \w can|strong="H3045"\w* \w be|strong="H1961"\w* \w our|strong="H5921"\w* \w eyes|strong="H5869"\w*. +\v 32 \w It|strong="H1931"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w*, \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w go|strong="H3212"\w* \w with|strong="H5973"\w* \w us|strong="H3588"\w*—\w yes|strong="H3588"\w*, \w it|strong="H1931"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w*—\w that|strong="H3588"\w* \w whatever|strong="H2896"\w* \w good|strong="H2896"\w* \w Yahweh|strong="H3068"\w* \w does|strong="H3190"\w* \w to|strong="H3212"\w* \w us|strong="H3588"\w*, \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w do|strong="H3190"\w* \w the|strong="H3588"\w* \w same|strong="H1931"\w* \w to|strong="H3212"\w* \w you|strong="H3588"\w*.” +\p +\v 33 \w They|strong="H3117"\w* \w set|strong="H5265"\w* \w forward|strong="H5265"\w* \w from|strong="H5265"\w* \w the|strong="H6440"\w* \w Mount|strong="H2022"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*’ \w journey|strong="H1870"\w*. \w The|strong="H6440"\w* ark \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w* \w went|strong="H5265"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*’ \w journey|strong="H1870"\w*, \w to|strong="H3068"\w* \w seek|strong="H8446"\w* \w out|strong="H5265"\w* \w a|strong="H3068"\w* \w resting|strong="H4496"\w* \w place|strong="H4496"\w* \w for|strong="H6440"\w* \w them|strong="H6440"\w*. +\v 34 \w The|strong="H5921"\w* \w cloud|strong="H6051"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w* \w by|strong="H5921"\w* \w day|strong="H3119"\w*, \w when|strong="H3068"\w* \w they|strong="H3068"\w* \w set|strong="H5265"\w* \w forward|strong="H5265"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* \w camp|strong="H4264"\w*. +\v 35 \w When|strong="H1961"\w* \w the|strong="H6440"\w* ark \w went|strong="H4872"\w* \w forward|strong="H5265"\w*, \w Moses|strong="H4872"\w* said, “\w Rise|strong="H6965"\w* \w up|strong="H6965"\w*, \w Yahweh|strong="H3068"\w*, \w and|strong="H6965"\w* \w let|strong="H1961"\w* \w your|strong="H3068"\w* \w enemies|strong="H8130"\w* \w be|strong="H1961"\w* \w scattered|strong="H6327"\w*! \w Let|strong="H1961"\w* \w those|strong="H1961"\w* \w who|strong="H3068"\w* \w hate|strong="H8130"\w* \w you|strong="H6440"\w* \w flee|strong="H5127"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*!” +\v 36 \w When|strong="H7725"\w* \w it|strong="H7725"\w* \w rested|strong="H5117"\w*, \w he|strong="H3068"\w* said, “\w Return|strong="H7725"\w*, \w Yahweh|strong="H3068"\w*, \w to|strong="H7725"\w* \w the|strong="H3068"\w* \w ten|strong="H7233"\w* \w thousands|strong="H7233"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w thousands|strong="H7233"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*.” +\c 11 +\p +\v 1 \w The|strong="H8085"\w* \w people|strong="H5971"\w* \w were|strong="H1961"\w* complaining \w in|strong="H3068"\w* \w the|strong="H8085"\w* ears \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w When|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w heard|strong="H8085"\w* \w it|strong="H1961"\w*, \w his|strong="H3068"\w* anger \w burned|strong="H2734"\w*; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s fire \w burned|strong="H2734"\w* \w among|strong="H5971"\w* \w them|strong="H1961"\w*, \w and|strong="H3068"\w* \w consumed|strong="H1197"\w* \w some|strong="H7097"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* \w outskirts|strong="H7097"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* \w camp|strong="H4264"\w*. +\v 2 \w The|strong="H3068"\w* \w people|strong="H5971"\w* \w cried|strong="H6817"\w* \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*; \w and|strong="H4872"\w* \w Moses|strong="H4872"\w* \w prayed|strong="H6419"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H4872"\w* \w the|strong="H3068"\w* fire abated. +\v 3 \w The|strong="H3588"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w that|strong="H3588"\w* \w place|strong="H4725"\w* \w was|strong="H3068"\w* \w called|strong="H7121"\w* \w Taberah|strong="H8404"\w*,\f + \fr 11:3 \ft Taberah means “burning” \f* \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s fire \w burned|strong="H1197"\w* \w among|strong="H8034"\w* \w them|strong="H7121"\w*. +\p +\v 4 \w The|strong="H7725"\w* mixed multitude \w that|strong="H3478"\w* \w was|strong="H3478"\w* \w among|strong="H7130"\w* \w them|strong="H7725"\w* lusted \w exceedingly|strong="H8378"\w*; \w and|strong="H1121"\w* \w the|strong="H7725"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w also|strong="H1571"\w* \w wept|strong="H1058"\w* \w again|strong="H7725"\w*, \w and|strong="H1121"\w* said, “\w Who|strong="H4310"\w* \w will|strong="H4310"\w* \w give|strong="H7725"\w* \w us|strong="H7725"\w* \w meat|strong="H1320"\w* \w to|strong="H7725"\w* eat? +\v 5 We \w remember|strong="H2142"\w* \w the|strong="H2142"\w* \w fish|strong="H1710"\w*, \w which|strong="H2600"\w* \w we|strong="H3068"\w* ate \w in|strong="H4714"\w* \w Egypt|strong="H4714"\w* \w for|strong="H4714"\w* \w nothing|strong="H2600"\w*; \w the|strong="H2142"\w* \w cucumbers|strong="H7180"\w*, \w and|strong="H4714"\w* \w the|strong="H2142"\w* melons, \w and|strong="H4714"\w* \w the|strong="H2142"\w* \w leeks|strong="H2682"\w*, \w and|strong="H4714"\w* \w the|strong="H2142"\w* \w onions|strong="H1211"\w*, \w and|strong="H4714"\w* \w the|strong="H2142"\w* \w garlic|strong="H7762"\w*; +\v 6 \w but|strong="H6258"\w* \w now|strong="H6258"\w* \w we|strong="H3068"\w* \w have|strong="H5869"\w* lost \w our|strong="H3605"\w* \w appetite|strong="H5315"\w*. \w There|strong="H3605"\w* \w is|strong="H5315"\w* \w nothing|strong="H1115"\w* \w at|strong="H5869"\w* \w all|strong="H3605"\w* \w except|strong="H1115"\w* \w this|strong="H6258"\w* \w manna|strong="H4478"\w* \w to|strong="H5315"\w* \w look|strong="H5869"\w* \w at|strong="H5869"\w*.” +\v 7 \w The|strong="H5869"\w* \w manna|strong="H4478"\w* \w was|strong="H1931"\w* \w like|strong="H5869"\w* \w coriander|strong="H1407"\w* \w seed|strong="H2233"\w*, \w and|strong="H5869"\w* \w it|strong="H1931"\w* \w looked|strong="H5869"\w* \w like|strong="H5869"\w* bdellium.\f + \fr 11:7 \ft Bdellium is a resin extracted from certain African trees.\f* +\v 8 \w The|strong="H6213"\w* \w people|strong="H5971"\w* \w went|strong="H5971"\w* around, \w gathered|strong="H3950"\w* \w it|strong="H6213"\w*, \w and|strong="H5971"\w* \w ground|strong="H2912"\w* \w it|strong="H6213"\w* \w in|strong="H6213"\w* \w mills|strong="H7347"\w*, \w or|strong="H6213"\w* \w beat|strong="H1743"\w* \w it|strong="H6213"\w* \w in|strong="H6213"\w* mortars, \w and|strong="H5971"\w* \w boiled|strong="H1310"\w* \w it|strong="H6213"\w* \w in|strong="H6213"\w* pots, \w and|strong="H5971"\w* \w made|strong="H6213"\w* \w cakes|strong="H5692"\w* \w of|strong="H5971"\w* \w it|strong="H6213"\w*. \w Its|strong="H6213"\w* \w taste|strong="H2940"\w* \w was|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H6213"\w* \w taste|strong="H2940"\w* \w of|strong="H5971"\w* \w fresh|strong="H3955"\w* \w oil|strong="H8081"\w*. +\v 9 \w When|strong="H5921"\w* \w the|strong="H5921"\w* \w dew|strong="H2919"\w* \w fell|strong="H3381"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w camp|strong="H4264"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w night|strong="H3915"\w*, \w the|strong="H5921"\w* \w manna|strong="H4478"\w* \w fell|strong="H3381"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*. +\p +\v 10 \w Moses|strong="H4872"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w* \w weeping|strong="H1058"\w* \w throughout|strong="H8085"\w* \w their|strong="H3068"\w* \w families|strong="H4940"\w*, \w every|strong="H4940"\w* man \w at|strong="H3068"\w* \w the|strong="H8085"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* tent; \w and|strong="H4872"\w* \w Yahweh|strong="H3068"\w*’s anger \w burned|strong="H2734"\w* \w greatly|strong="H3966"\w*; \w and|strong="H4872"\w* \w Moses|strong="H4872"\w* \w was|strong="H3068"\w* \w displeased|strong="H7489"\w*. +\v 11 \w Moses|strong="H4872"\w* said \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, “\w Why|strong="H4100"\w* \w have|strong="H3068"\w* \w you|strong="H3605"\w* \w treated|strong="H7489"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w so|strong="H3808"\w* \w badly|strong="H7489"\w*? \w Why|strong="H4100"\w* haven’t \w I|strong="H5921"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H5921"\w* \w your|strong="H3068"\w* \w sight|strong="H5869"\w*, \w that|strong="H5971"\w* \w you|strong="H3605"\w* \w lay|strong="H7760"\w* \w the|strong="H3605"\w* \w burden|strong="H4853"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w on|strong="H5921"\w* \w me|strong="H5921"\w*? +\v 12 \w Have|strong="H5971"\w* \w I|strong="H3588"\w* \w conceived|strong="H2029"\w* \w all|strong="H3605"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*? \w Have|strong="H5971"\w* \w I|strong="H3588"\w* \w brought|strong="H5375"\w* \w them|strong="H5921"\w* \w out|strong="H5921"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w should|strong="H3588"\w* \w tell|strong="H3605"\w* \w me|strong="H5921"\w*, ‘\w Carry|strong="H5375"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w your|strong="H3605"\w* \w bosom|strong="H2436"\w*, \w as|strong="H3588"\w* \w a|strong="H3068"\w* \w nurse|strong="H3243"\w* \w carries|strong="H5375"\w* \w a|strong="H3068"\w* \w nursing|strong="H3243"\w* \w infant|strong="H3243"\w*, \w to|strong="H5921"\w* \w the|strong="H3605"\w* land \w which|strong="H5971"\w* \w you|strong="H3588"\w* \w swore|strong="H7650"\w* \w to|strong="H5921"\w* \w their|strong="H3605"\w* \w fathers|strong="H3205"\w*’? +\v 13 \w Where|strong="H5921"\w* \w could|strong="H2088"\w* \w I|strong="H3588"\w* get \w meat|strong="H1320"\w* \w to|strong="H5921"\w* \w give|strong="H5414"\w* \w all|strong="H3605"\w* \w these|strong="H2088"\w* \w people|strong="H5971"\w*? \w For|strong="H3588"\w* \w they|strong="H3588"\w* \w weep|strong="H1058"\w* \w before|strong="H5921"\w* \w me|strong="H5414"\w*, saying, ‘\w Give|strong="H5414"\w* \w us|strong="H5414"\w* \w meat|strong="H1320"\w*, \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w may|strong="H5971"\w* eat.’ +\v 14 \w I|strong="H3588"\w* am \w not|strong="H3808"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w bear|strong="H5375"\w* \w all|strong="H3605"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w alone|strong="H4480"\w*, \w because|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H2088"\w* \w too|strong="H4480"\w* \w heavy|strong="H3515"\w* \w for|strong="H3588"\w* \w me|strong="H4480"\w*. +\v 15 \w If|strong="H7200"\w* \w you|strong="H6213"\w* \w treat|strong="H6213"\w* \w me|strong="H4994"\w* \w this|strong="H6213"\w* way, \w please|strong="H4994"\w* \w kill|strong="H2026"\w* \w me|strong="H4994"\w* \w right|strong="H5869"\w* \w now|strong="H4994"\w*, \w if|strong="H7200"\w* \w I|strong="H7200"\w* \w have|strong="H5869"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H6213"\w* \w your|strong="H7200"\w* \w sight|strong="H5869"\w*; \w and|strong="H5869"\w* don’t \w let|strong="H4994"\w* \w me|strong="H4994"\w* \w see|strong="H7200"\w* \w my|strong="H7200"\w* \w wretchedness|strong="H7451"\w*.” +\p +\v 16 \w Yahweh|strong="H3068"\w* said \w to|strong="H3478"\w* \w Moses|strong="H4872"\w*, “Gather \w to|strong="H3478"\w* \w me|strong="H3947"\w* \w seventy|strong="H7657"\w* \w men|strong="H2205"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w elders|strong="H2205"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w whom|strong="H1992"\w* \w you|strong="H3588"\w* \w know|strong="H3045"\w* \w to|strong="H3478"\w* \w be|strong="H3068"\w* \w the|strong="H3588"\w* \w elders|strong="H2205"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w and|strong="H4872"\w* \w officers|strong="H7860"\w* \w over|strong="H3068"\w* \w them|strong="H1992"\w*; \w and|strong="H4872"\w* \w bring|strong="H3947"\w* \w them|strong="H1992"\w* \w to|strong="H3478"\w* \w the|strong="H3588"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, \w that|strong="H3588"\w* \w they|strong="H1992"\w* \w may|strong="H3068"\w* \w stand|strong="H3320"\w* \w there|strong="H8033"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*. +\v 17 \w I|strong="H5921"\w* \w will|strong="H5971"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w* \w and|strong="H5971"\w* \w talk|strong="H1696"\w* \w with|strong="H5973"\w* \w you|strong="H5921"\w* \w there|strong="H8033"\w*. \w I|strong="H5921"\w* \w will|strong="H5971"\w* \w take|strong="H5375"\w* \w of|strong="H7307"\w* \w the|strong="H5921"\w* \w Spirit|strong="H7307"\w* \w which|strong="H5971"\w* \w is|strong="H7307"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*, \w and|strong="H5971"\w* \w will|strong="H5971"\w* \w put|strong="H7760"\w* \w it|strong="H7760"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*; \w and|strong="H5971"\w* \w they|strong="H8033"\w* \w shall|strong="H5971"\w* \w bear|strong="H5375"\w* \w the|strong="H5921"\w* \w burden|strong="H4853"\w* \w of|strong="H7307"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w with|strong="H5973"\w* \w you|strong="H5921"\w*, \w that|strong="H5971"\w* \w you|strong="H5921"\w* don’t \w bear|strong="H5375"\w* \w it|strong="H7760"\w* \w yourself|strong="H5921"\w* \w alone|strong="H4480"\w*. +\p +\v 18 “Say \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w*, ‘\w Sanctify|strong="H6942"\w* \w yourselves|strong="H6942"\w* \w in|strong="H3068"\w* preparation \w for|strong="H3588"\w* \w tomorrow|strong="H4279"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* eat \w meat|strong="H1320"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w wept|strong="H1058"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* ears \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, saying, “\w Who|strong="H4310"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w us|strong="H5414"\w* \w meat|strong="H1320"\w* \w to|strong="H3068"\w* eat? \w For|strong="H3588"\w* \w it|strong="H5414"\w* \w was|strong="H3068"\w* \w well|strong="H2895"\w* \w with|strong="H3068"\w* \w us|strong="H5414"\w* \w in|strong="H3068"\w* \w Egypt|strong="H4714"\w*.” \w Therefore|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w you|strong="H3588"\w* \w meat|strong="H1320"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* eat. +\v 19 \w You|strong="H3117"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* eat just \w one|strong="H3808"\w* \w day|strong="H3117"\w*, \w or|strong="H3808"\w* \w two|strong="H3808"\w* \w days|strong="H3117"\w*, \w or|strong="H3808"\w* \w five|strong="H2568"\w* \w days|strong="H3117"\w*, \w or|strong="H3808"\w* \w ten|strong="H6235"\w* \w days|strong="H3117"\w*, \w or|strong="H3808"\w* \w twenty|strong="H6242"\w* \w days|strong="H3117"\w*, +\v 20 \w but|strong="H3588"\w* \w a|strong="H3068"\w* \w whole|strong="H3117"\w* \w month|strong="H2320"\w*, \w until|strong="H5704"\w* \w it|strong="H3588"\w* \w comes|strong="H3318"\w* \w out|strong="H3318"\w* \w at|strong="H3068"\w* \w your|strong="H3068"\w* nostrils, \w and|strong="H3068"\w* \w it|strong="H3588"\w* \w is|strong="H3068"\w* \w loathsome|strong="H2214"\w* \w to|strong="H5704"\w* \w you|strong="H3588"\w*; \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w rejected|strong="H3988"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w among|strong="H7130"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w have|strong="H1961"\w* \w wept|strong="H1058"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, saying, “\w Why|strong="H4100"\w* \w did|strong="H4100"\w* \w we|strong="H3068"\w* \w come|strong="H1961"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*?”’” +\p +\v 21 \w Moses|strong="H4872"\w* said, “\w The|strong="H5414"\w* \w people|strong="H5971"\w*, \w among|strong="H7130"\w* \w whom|strong="H5971"\w* \w I|strong="H3117"\w* am, \w are|strong="H3117"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* thousand \w men|strong="H5971"\w* \w on|strong="H3117"\w* \w foot|strong="H7273"\w*; \w and|strong="H3967"\w* \w you|strong="H5414"\w* \w have|strong="H5971"\w* said, ‘\w I|strong="H3117"\w* \w will|strong="H5971"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w meat|strong="H1320"\w*, \w that|strong="H5971"\w* \w they|strong="H3117"\w* \w may|strong="H5971"\w* eat \w a|strong="H3068"\w* \w whole|strong="H3117"\w* \w month|strong="H2320"\w*.’ +\v 22 \w Shall|strong="H3220"\w* \w flocks|strong="H6629"\w* \w and|strong="H6629"\w* \w herds|strong="H1241"\w* \w be|strong="H1241"\w* \w slaughtered|strong="H7819"\w* \w for|strong="H3605"\w* \w them|strong="H4672"\w*, \w to|strong="H3220"\w* \w be|strong="H1241"\w* \w sufficient|strong="H4672"\w* \w for|strong="H3605"\w* \w them|strong="H4672"\w*? \w Shall|strong="H3220"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fish|strong="H1709"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w* \w be|strong="H1241"\w* gathered \w together|strong="H3220"\w* \w for|strong="H3605"\w* \w them|strong="H4672"\w*, \w to|strong="H3220"\w* \w be|strong="H1241"\w* \w sufficient|strong="H4672"\w* \w for|strong="H3605"\w* \w them|strong="H4672"\w*?” +\p +\v 23 \w Yahweh|strong="H3068"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w Has|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* grown \w short|strong="H7114"\w*? \w Now|strong="H6258"\w* \w you|strong="H3808"\w* \w will|strong="H3068"\w* \w see|strong="H7200"\w* \w whether|strong="H7200"\w* \w my|strong="H3068"\w* \w word|strong="H1697"\w* \w will|strong="H3068"\w* \w happen|strong="H7136"\w* \w to|strong="H3068"\w* \w you|strong="H3808"\w* \w or|strong="H3808"\w* \w not|strong="H3808"\w*.” +\p +\v 24 \w Moses|strong="H4872"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H4872"\w* \w told|strong="H1696"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w* \w Yahweh|strong="H3068"\w*’s \w words|strong="H1697"\w*; \w and|strong="H4872"\w* \w he|strong="H3068"\w* gathered \w seventy|strong="H7657"\w* \w men|strong="H2205"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w elders|strong="H2205"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w*, \w and|strong="H4872"\w* \w set|strong="H5975"\w* \w them|strong="H5975"\w* \w around|strong="H5439"\w* \w the|strong="H3068"\w* Tent. +\v 25 \w Yahweh|strong="H3068"\w* \w came|strong="H1961"\w* \w down|strong="H3381"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w cloud|strong="H6051"\w*, \w and|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5414"\w*, \w and|strong="H3068"\w* \w took|strong="H3381"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w Spirit|strong="H7307"\w* \w that|strong="H3068"\w* \w was|strong="H3068"\w* \w on|strong="H5921"\w* \w him|strong="H5414"\w*, \w and|strong="H3068"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w seventy|strong="H7657"\w* \w elders|strong="H2205"\w*. \w When|strong="H1961"\w* \w the|strong="H5921"\w* \w Spirit|strong="H7307"\w* \w rested|strong="H5117"\w* \w on|strong="H5921"\w* \w them|strong="H5414"\w*, \w they|strong="H3068"\w* \w prophesied|strong="H5012"\w*, \w but|strong="H3808"\w* \w they|strong="H3068"\w* \w did|strong="H3068"\w* \w so|strong="H4480"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w*. +\v 26 \w But|strong="H3808"\w* \w two|strong="H8147"\w* \w men|strong="H8034"\w* \w remained|strong="H7604"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w camp|strong="H4264"\w*. \w The|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H7307"\w* \w one|strong="H3808"\w* \w was|strong="H8034"\w* Eldad, \w and|strong="H3318"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H7307"\w* \w the|strong="H5921"\w* \w other|strong="H8145"\w* \w Medad|strong="H4312"\w*; \w and|strong="H3318"\w* \w the|strong="H5921"\w* \w Spirit|strong="H7307"\w* \w rested|strong="H5117"\w* \w on|strong="H5921"\w* \w them|strong="H1992"\w*. \w They|strong="H1992"\w* \w were|strong="H1992"\w* \w of|strong="H7307"\w* \w those|strong="H1992"\w* \w who|strong="H1992"\w* \w were|strong="H1992"\w* \w written|strong="H3789"\w*, \w but|strong="H3808"\w* \w had|strong="H4264"\w* \w not|strong="H3808"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H5921"\w* Tent; \w and|strong="H3318"\w* \w they|strong="H1992"\w* \w prophesied|strong="H5012"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w camp|strong="H4264"\w*. +\v 27 \w A|strong="H3068"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* \w ran|strong="H7323"\w*, \w and|strong="H4872"\w* \w told|strong="H5046"\w* \w Moses|strong="H4872"\w*, \w and|strong="H4872"\w* said, “Eldad \w and|strong="H4872"\w* \w Medad|strong="H4312"\w* \w are|strong="H5288"\w* \w prophesying|strong="H5012"\w* \w in|strong="H4872"\w* \w the|strong="H4872"\w* \w camp|strong="H4264"\w*!” +\p +\v 28 \w Joshua|strong="H3091"\w* \w the|strong="H3091"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w*, \w the|strong="H3091"\w* \w servant|strong="H8334"\w* \w of|strong="H1121"\w* \w Moses|strong="H4872"\w*, \w one|strong="H1121"\w* \w of|strong="H1121"\w* \w his|strong="H4872"\w* chosen \w men|strong="H1121"\w*, \w answered|strong="H6030"\w*, “\w My|strong="H3607"\w* lord \w Moses|strong="H4872"\w*, \w forbid|strong="H3607"\w* \w them|strong="H6030"\w*!” +\p +\v 29 \w Moses|strong="H4872"\w* said \w to|strong="H3068"\w* \w him|strong="H5414"\w*, “\w Are|strong="H5971"\w* \w you|strong="H3588"\w* \w jealous|strong="H7065"\w* \w for|strong="H3588"\w* \w my|strong="H5414"\w* \w sake|strong="H5921"\w*? \w I|strong="H3588"\w* \w wish|strong="H4310"\w* \w that|strong="H3588"\w* \w all|strong="H3605"\w* \w Yahweh|strong="H3068"\w*’s \w people|strong="H5971"\w* \w were|strong="H5971"\w* \w prophets|strong="H5030"\w*, \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w would|strong="H4310"\w* \w put|strong="H5414"\w* \w his|strong="H3605"\w* \w Spirit|strong="H7307"\w* \w on|strong="H5921"\w* \w them|strong="H5414"\w*!” +\p +\v 30 \w Moses|strong="H4872"\w* \w went|strong="H3478"\w* \w into|strong="H4264"\w* \w the|strong="H4872"\w* \w camp|strong="H4264"\w*, \w he|strong="H1931"\w* \w and|strong="H4872"\w* \w the|strong="H4872"\w* \w elders|strong="H2205"\w* \w of|strong="H2205"\w* \w Israel|strong="H3478"\w*. +\v 31 \w A|strong="H3068"\w* \w wind|strong="H7307"\w* \w from|strong="H4480"\w* \w Yahweh|strong="H3068"\w* \w went|strong="H5265"\w* \w out|strong="H4480"\w* \w and|strong="H3068"\w* \w brought|strong="H5265"\w* \w quails|strong="H7958"\w* \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w sea|strong="H3220"\w*, \w and|strong="H3068"\w* let \w them|strong="H5921"\w* \w fall|strong="H5203"\w* \w by|strong="H5921"\w* \w the|strong="H6440"\w* \w camp|strong="H4264"\w*, \w about|strong="H5439"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w*’s \w journey|strong="H1870"\w* \w on|strong="H5921"\w* \w this|strong="H3541"\w* \w side|strong="H5439"\w*, \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w*’s \w journey|strong="H1870"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w other|strong="H3541"\w* \w side|strong="H5439"\w*, \w around|strong="H5439"\w* \w the|strong="H6440"\w* \w camp|strong="H4264"\w*, \w and|strong="H3068"\w* \w about|strong="H5439"\w* \w two|strong="H4480"\w* cubits\f + \fr 11:31 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w above|strong="H5921"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* earth. +\v 32 \w The|strong="H3605"\w* \w people|strong="H5971"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w all|strong="H3605"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w*, \w and|strong="H6965"\w* \w all|strong="H3605"\w* \w of|strong="H3117"\w* \w that|strong="H5971"\w* \w night|strong="H3915"\w*, \w and|strong="H6965"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w next|strong="H4283"\w* \w day|strong="H3117"\w*, \w and|strong="H6965"\w* \w gathered|strong="H4591"\w* \w the|strong="H3605"\w* \w quails|strong="H7958"\w*. \w He|strong="H1931"\w* \w who|strong="H3605"\w* \w gathered|strong="H4591"\w* \w least|strong="H4591"\w* \w gathered|strong="H4591"\w* \w ten|strong="H6235"\w* \w homers|strong="H2563"\w*;\f + \fr 11:32 \ft 1 homer is about 220 liters or 6 bushels\f* \w and|strong="H6965"\w* \w they|strong="H3117"\w* \w spread|strong="H7849"\w* \w them|strong="H5439"\w* \w all|strong="H3605"\w* \w out|strong="H3605"\w* \w for|strong="H3117"\w* themselves \w around|strong="H5439"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w*. +\v 33 \w While|strong="H5750"\w* \w the|strong="H5221"\w* \w meat|strong="H1320"\w* \w was|strong="H3068"\w* \w still|strong="H5750"\w* between \w their|strong="H3068"\w* \w teeth|strong="H8127"\w*, \w before|strong="H2962"\w* \w it|strong="H5221"\w* \w was|strong="H3068"\w* \w chewed|strong="H3772"\w*, \w Yahweh|strong="H3068"\w*’s anger \w burned|strong="H2734"\w* \w against|strong="H2734"\w* \w the|strong="H5221"\w* \w people|strong="H5971"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w struck|strong="H5221"\w* \w the|strong="H5221"\w* \w people|strong="H5971"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H7227"\w* \w plague|strong="H4347"\w*. +\v 34 \w The|strong="H3588"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w that|strong="H3588"\w* \w place|strong="H4725"\w* \w was|strong="H8034"\w* \w called|strong="H7121"\w* Kibroth Hattaavah,\f + \fr 11:34 \ft Kibroth Hattaavah means “graves of lust”\f* \w because|strong="H3588"\w* \w there|strong="H8033"\w* \w they|strong="H3588"\w* \w buried|strong="H6912"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w who|strong="H1931"\w* lusted. +\p +\v 35 \w From|strong="H5265"\w* Kibroth Hattaavah \w the|strong="H1961"\w* \w people|strong="H5971"\w* \w traveled|strong="H5265"\w* \w to|strong="H1961"\w* \w Hazeroth|strong="H2698"\w*; \w and|strong="H5971"\w* \w they|strong="H5971"\w* stayed \w at|strong="H1961"\w* \w Hazeroth|strong="H2698"\w*. +\c 12 +\p +\v 1 \w Miriam|strong="H4813"\w* \w and|strong="H4872"\w* Aaron \w spoke|strong="H1696"\w* \w against|strong="H5921"\w* \w Moses|strong="H4872"\w* \w because|strong="H3588"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w Cushite|strong="H3571"\w* woman \w whom|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H4872"\w* \w married|strong="H3947"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H4872"\w* \w married|strong="H3947"\w* \w a|strong="H3068"\w* \w Cushite|strong="H3571"\w* woman. +\v 2 \w They|strong="H3068"\w* \w said|strong="H1696"\w*, “\w Has|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w indeed|strong="H1571"\w* \w spoken|strong="H1696"\w* \w only|strong="H7535"\w* \w with|strong="H3068"\w* \w Moses|strong="H4872"\w*? Hasn’t \w he|strong="H3068"\w* \w spoken|strong="H1696"\w* \w also|strong="H1571"\w* \w with|strong="H3068"\w* \w us|strong="H8085"\w*?” \w And|strong="H4872"\w* \w Yahweh|strong="H3068"\w* \w heard|strong="H8085"\w* \w it|strong="H1696"\w*. +\p +\v 3 \w Now|strong="H5921"\w* \w the|strong="H3605"\w* \w man|strong="H3605"\w* \w Moses|strong="H4872"\w* \w was|strong="H4872"\w* \w very|strong="H3966"\w* \w humble|strong="H6035"\w*, \w more|strong="H3966"\w* \w than|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* earth. +\v 4 \w Yahweh|strong="H3068"\w* spoke \w suddenly|strong="H6597"\w* \w to|strong="H3318"\w* \w Moses|strong="H4872"\w*, \w to|strong="H3318"\w* Aaron, \w and|strong="H4872"\w* \w to|strong="H3318"\w* \w Miriam|strong="H4813"\w*, “\w You|strong="H3318"\w* \w three|strong="H7969"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3068"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*!” +\p \w The|strong="H3068"\w* \w three|strong="H7969"\w* \w of|strong="H3068"\w* \w them|strong="H3318"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w*. +\v 5 \w Yahweh|strong="H3068"\w* \w came|strong="H3318"\w* \w down|strong="H3381"\w* \w in|strong="H3068"\w* \w a|strong="H3068"\w* \w pillar|strong="H5982"\w* \w of|strong="H3068"\w* \w cloud|strong="H6051"\w*, \w and|strong="H3068"\w* \w stood|strong="H5975"\w* \w at|strong="H3068"\w* \w the|strong="H3068"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* Tent, \w and|strong="H3068"\w* \w called|strong="H7121"\w* Aaron \w and|strong="H3068"\w* \w Miriam|strong="H4813"\w*; \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w both|strong="H8147"\w* \w came|strong="H3318"\w* \w forward|strong="H3318"\w*. +\v 6 \w He|strong="H3068"\w* \w said|strong="H1696"\w*, “\w Now|strong="H4994"\w* \w hear|strong="H8085"\w* \w my|strong="H8085"\w* \w words|strong="H1697"\w*. \w If|strong="H1961"\w* \w there|strong="H1961"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w prophet|strong="H5030"\w* among \w you|strong="H3045"\w*, \w I|strong="H1697"\w*, \w Yahweh|strong="H3068"\w*, \w will|strong="H3068"\w* \w make|strong="H3045"\w* \w myself|strong="H3045"\w* \w known|strong="H3045"\w* \w to|strong="H1696"\w* \w him|strong="H8085"\w* \w in|strong="H3068"\w* \w a|strong="H3068"\w* \w vision|strong="H4759"\w*. \w I|strong="H1697"\w* \w will|strong="H3068"\w* \w speak|strong="H1696"\w* \w with|strong="H3068"\w* \w him|strong="H8085"\w* \w in|strong="H3068"\w* \w a|strong="H3068"\w* \w dream|strong="H2472"\w*. +\v 7 \w My|strong="H3605"\w* \w servant|strong="H5650"\w* \w Moses|strong="H4872"\w* \w is|strong="H1931"\w* \w not|strong="H3808"\w* \w so|strong="H3651"\w*. \w He|strong="H1931"\w* \w is|strong="H1931"\w* faithful \w in|strong="H1004"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w house|strong="H1004"\w*. +\v 8 \w With|strong="H3068"\w* \w him|strong="H4872"\w*, \w I|strong="H5650"\w* \w will|strong="H3068"\w* \w speak|strong="H1696"\w* \w mouth|strong="H6310"\w* \w to|strong="H1696"\w* \w mouth|strong="H6310"\w*, \w even|strong="H3808"\w* plainly, \w and|strong="H4872"\w* \w not|strong="H3808"\w* \w in|strong="H3068"\w* \w riddles|strong="H2420"\w*; \w and|strong="H4872"\w* \w he|strong="H3068"\w* \w shall|strong="H3068"\w* \w see|strong="H5027"\w* \w Yahweh|strong="H3068"\w*’s \w form|strong="H8544"\w*. \w Why|strong="H4069"\w* \w then|strong="H1696"\w* \w were|strong="H5650"\w* \w you|strong="H3808"\w* \w not|strong="H3808"\w* \w afraid|strong="H3372"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w against|strong="H1696"\w* \w my|strong="H3068"\w* \w servant|strong="H5650"\w*, \w against|strong="H1696"\w* \w Moses|strong="H4872"\w*?” +\v 9 \w Yahweh|strong="H3068"\w*’s anger \w burned|strong="H2734"\w* \w against|strong="H2734"\w* \w them|strong="H3068"\w*; \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w departed|strong="H3212"\w*. +\p +\v 10 \w The|strong="H5921"\w* \w cloud|strong="H6051"\w* \w departed|strong="H5493"\w* \w from|strong="H5493"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* Tent; \w and|strong="H6437"\w* \w behold|strong="H2009"\w*, \w Miriam|strong="H4813"\w* \w was|strong="H6051"\w* \w leprous|strong="H6879"\w*, \w as|strong="H6051"\w* white \w as|strong="H6051"\w* \w snow|strong="H7950"\w*. Aaron \w looked|strong="H6437"\w* \w at|strong="H5921"\w* \w Miriam|strong="H4813"\w*, \w and|strong="H6437"\w* \w behold|strong="H2009"\w*, \w she|strong="H5921"\w* \w was|strong="H6051"\w* \w leprous|strong="H6879"\w*. +\p +\v 11 Aaron said \w to|strong="H5921"\w* \w Moses|strong="H4872"\w*, “\w Oh|strong="H4994"\w*, \w my|strong="H5921"\w* lord, \w please|strong="H4994"\w* don’t count \w this|strong="H4994"\w* \w sin|strong="H2403"\w* \w against|strong="H5921"\w* \w us|strong="H4994"\w*, \w in|strong="H5921"\w* \w which|strong="H2403"\w* \w we|strong="H3068"\w* \w have|strong="H2403"\w* \w done|strong="H2398"\w* \w foolishly|strong="H2973"\w*, \w and|strong="H4872"\w* \w in|strong="H5921"\w* \w which|strong="H2403"\w* \w we|strong="H3068"\w* \w have|strong="H2403"\w* \w sinned|strong="H2398"\w*. +\v 12 \w Let|strong="H4994"\w* \w her|strong="H3318"\w* \w not|strong="H1961"\w*, \w I|strong="H7358"\w* \w pray|strong="H4994"\w*, \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w one|strong="H1961"\w* \w dead|strong="H4191"\w*, \w of|strong="H3318"\w* whom \w the|strong="H3318"\w* \w flesh|strong="H1320"\w* \w is|strong="H1320"\w* \w half|strong="H2677"\w* consumed \w when|strong="H1961"\w* \w he|strong="H3318"\w* \w comes|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w his|strong="H1961"\w* \w mother|strong="H7358"\w*’s \w womb|strong="H7358"\w*.” +\p +\v 13 \w Moses|strong="H4872"\w* \w cried|strong="H6817"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, saying, “\w Heal|strong="H7495"\w* her, \w God|strong="H3068"\w*, \w I|strong="H3068"\w* \w beg|strong="H4994"\w* \w you|strong="H4994"\w*!” +\p +\v 14 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “If \w her|strong="H5462"\w* father \w had|strong="H3068"\w* \w but|strong="H3808"\w* \w spit|strong="H3417"\w* \w in|strong="H3068"\w* \w her|strong="H5462"\w* \w face|strong="H6440"\w*, shouldn’t \w she|strong="H6440"\w* \w be|strong="H3808"\w* \w ashamed|strong="H3637"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*? \w Let|strong="H3808"\w* \w her|strong="H5462"\w* \w be|strong="H3808"\w* \w shut|strong="H5462"\w* \w up|strong="H5462"\w* \w outside|strong="H2351"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w camp|strong="H4264"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w and|strong="H4872"\w* \w after|strong="H3117"\w* \w that|strong="H3117"\w* \w she|strong="H6440"\w* \w shall|strong="H3068"\w* \w be|strong="H3808"\w* \w brought|strong="H4872"\w* \w in|strong="H3068"\w* \w again|strong="H6440"\w*.” +\p +\v 15 \w Miriam|strong="H4813"\w* \w was|strong="H3117"\w* \w shut|strong="H5462"\w* \w up|strong="H5462"\w* \w outside|strong="H2351"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w camp|strong="H4264"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w and|strong="H3117"\w* \w the|strong="H3117"\w* \w people|strong="H5971"\w* didn’t travel \w until|strong="H5704"\w* \w Miriam|strong="H4813"\w* \w was|strong="H3117"\w* \w brought|strong="H5265"\w* \w in|strong="H3117"\w* again. +\v 16 Afterward \w the|strong="H5971"\w* \w people|strong="H5971"\w* \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Hazeroth|strong="H2698"\w*, \w and|strong="H5971"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w the|strong="H5971"\w* \w wilderness|strong="H4057"\w* \w of|strong="H4057"\w* \w Paran|strong="H6290"\w*. +\c 13 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Send|strong="H7971"\w* \w men|strong="H1121"\w*, \w that|strong="H3605"\w* \w they|strong="H3478"\w* \w may|strong="H3478"\w* \w spy|strong="H8446"\w* \w out|strong="H7971"\w* \w the|strong="H3605"\w* land \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*, \w which|strong="H3478"\w* \w I|strong="H5414"\w* \w give|strong="H5414"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w Of|strong="H1121"\w* \w every|strong="H3605"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w their|strong="H3605"\w* fathers, \w you|strong="H5414"\w* \w shall|strong="H1121"\w* \w send|strong="H7971"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w*, \w every|strong="H3605"\w* \w one|strong="H3605"\w* \w a|strong="H3068"\w* \w prince|strong="H5387"\w* \w among|strong="H5387"\w* \w them|strong="H5414"\w*.” +\p +\v 3 \w Moses|strong="H4872"\w* \w sent|strong="H7971"\w* \w them|strong="H1992"\w* \w from|strong="H5921"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* \w of|strong="H1121"\w* \w Paran|strong="H6290"\w* \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w commandment|strong="H6310"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*. \w All|strong="H3605"\w* \w of|strong="H1121"\w* \w them|strong="H1992"\w* \w were|strong="H3478"\w* \w men|strong="H1121"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 4 These \w were|strong="H1121"\w* their \w names|strong="H8034"\w*: +\m \w Of|strong="H1121"\w* \w the|strong="H8034"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w*, \w Shammua|strong="H8051"\w* \w the|strong="H8034"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zaccur|strong="H2139"\w*. +\m +\v 5 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Simeon|strong="H8095"\w*, \w Shaphat|strong="H8202"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hori|strong="H2753"\w*. +\m +\v 6 \w Of|strong="H1121"\w* \w the|strong="H3612"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w Caleb|strong="H3612"\w* \w the|strong="H3612"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jephunneh|strong="H3312"\w*. +\m +\v 7 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Issachar|strong="H3485"\w*, \w Igal|strong="H3008"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w*. +\m +\v 8 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* Ephraim, \w Hoshea|strong="H1954"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w*. +\m +\v 9 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*, \w Palti|strong="H6406"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Raphu|strong="H7505"\w*. +\m +\v 10 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Zebulun|strong="H2074"\w*, \w Gaddiel|strong="H1427"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Sodi|strong="H5476"\w*. +\m +\v 11 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w*, \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*, \w Gaddi|strong="H1426"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Susi|strong="H5485"\w*. +\m +\v 12 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w*, \w Ammiel|strong="H5988"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Gemalli|strong="H1582"\w*. +\m +\v 13 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* Asher, \w Sethur|strong="H5639"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Michael|strong="H4317"\w*. +\m +\v 14 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Naphtali|strong="H5321"\w*, \w Nahbi|strong="H5147"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Vophsi|strong="H2058"\w*. +\m +\v 15 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w*, \w Geuel|strong="H1345"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Machi|strong="H4352"\w*. +\m +\v 16 \w These|strong="H7121"\w* \w are|strong="H1121"\w* \w the|strong="H7121"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H7121"\w* \w men|strong="H1121"\w* \w who|strong="H1121"\w* \w Moses|strong="H4872"\w* \w sent|strong="H7971"\w* \w to|strong="H7971"\w* \w spy|strong="H8446"\w* \w out|strong="H7971"\w* \w the|strong="H7121"\w* land. \w Moses|strong="H4872"\w* \w called|strong="H7121"\w* \w Hoshea|strong="H1954"\w* \w the|strong="H7121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w* \w Joshua|strong="H3091"\w*. +\v 17 \w Moses|strong="H4872"\w* \w sent|strong="H7971"\w* \w them|strong="H7971"\w* \w to|strong="H7971"\w* \w spy|strong="H8446"\w* \w out|strong="H7971"\w* \w the|strong="H7971"\w* land \w of|strong="H2022"\w* \w Canaan|strong="H3667"\w*, \w and|strong="H4872"\w* said \w to|strong="H7971"\w* \w them|strong="H7971"\w*, “\w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w this|strong="H2088"\w* \w way|strong="H7971"\w* \w by|strong="H7971"\w* \w the|strong="H7971"\w* \w South|strong="H5045"\w*, \w and|strong="H4872"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H7971"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*. +\v 18 \w See|strong="H7200"\w* \w the|strong="H5921"\w* land, \w what|strong="H4100"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w*; \w and|strong="H5971"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w who|strong="H1931"\w* \w dwell|strong="H3427"\w* \w therein|strong="H3427"\w*, \w whether|strong="H7200"\w* \w they|strong="H5921"\w* \w are|strong="H5971"\w* \w strong|strong="H2389"\w* \w or|strong="H7200"\w* \w weak|strong="H7504"\w*, \w whether|strong="H7200"\w* \w they|strong="H5921"\w* \w are|strong="H5971"\w* \w few|strong="H4592"\w* \w or|strong="H7200"\w* \w many|strong="H7227"\w*; +\v 19 \w and|strong="H5892"\w* \w what|strong="H4100"\w* \w the|strong="H3427"\w* land \w is|strong="H1931"\w* \w that|strong="H1931"\w* \w they|strong="H2007"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w*, whether \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w good|strong="H2896"\w* \w or|strong="H2896"\w* \w bad|strong="H7451"\w*; \w and|strong="H5892"\w* \w what|strong="H4100"\w* \w cities|strong="H5892"\w* \w they|strong="H2007"\w* \w are|strong="H4100"\w* \w that|strong="H1931"\w* \w they|strong="H2007"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w*, whether \w in|strong="H3427"\w* \w camps|strong="H4264"\w*, \w or|strong="H2896"\w* \w in|strong="H3427"\w* \w strongholds|strong="H4013"\w*; +\v 20 \w and|strong="H3117"\w* \w what|strong="H4100"\w* \w the|strong="H3947"\w* land \w is|strong="H3426"\w*, whether \w it|strong="H1931"\w* \w is|strong="H3426"\w* \w fertile|strong="H8082"\w* \w or|strong="H3117"\w* \w poor|strong="H7330"\w*, whether \w there|strong="H3426"\w* \w is|strong="H3426"\w* \w wood|strong="H6086"\w* therein, \w or|strong="H3117"\w* \w not|strong="H3947"\w*. \w Be|strong="H3426"\w* \w courageous|strong="H2388"\w*, \w and|strong="H3117"\w* \w bring|strong="H3947"\w* \w some|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3947"\w* \w fruit|strong="H6529"\w* \w of|strong="H3117"\w* \w the|strong="H3947"\w* land.” \w Now|strong="H3117"\w* \w the|strong="H3947"\w* \w time|strong="H3117"\w* \w was|strong="H1931"\w* \w the|strong="H3947"\w* \w time|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3947"\w* first-ripe \w grapes|strong="H6025"\w*. +\p +\v 21 \w So|strong="H5927"\w* \w they|strong="H5704"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w*, \w and|strong="H5927"\w* \w spied|strong="H8446"\w* \w out|strong="H8446"\w* \w the|strong="H5704"\w* land \w from|strong="H5927"\w* \w the|strong="H5704"\w* \w wilderness|strong="H4057"\w* \w of|strong="H4057"\w* \w Zin|strong="H6790"\w* \w to|strong="H5704"\w* \w Rehob|strong="H7340"\w*, \w to|strong="H5704"\w* \w the|strong="H5704"\w* entrance \w of|strong="H4057"\w* \w Hamath|strong="H2574"\w*. +\v 22 \w They|strong="H8033"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w by|strong="H8141"\w* \w the|strong="H6440"\w* \w South|strong="H5045"\w*, \w and|strong="H4714"\w* \w came|strong="H5927"\w* \w to|strong="H5704"\w* \w Hebron|strong="H2275"\w*; \w and|strong="H4714"\w* Ahiman, \w Sheshai|strong="H8344"\w*, \w and|strong="H4714"\w* \w Talmai|strong="H8526"\w*, \w the|strong="H6440"\w* \w children|strong="H3211"\w* \w of|strong="H8141"\w* \w Anak|strong="H6061"\w*, \w were|strong="H4714"\w* \w there|strong="H8033"\w*. (\w Now|strong="H4714"\w* \w Hebron|strong="H2275"\w* \w was|strong="H8141"\w* \w built|strong="H1129"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w* \w before|strong="H6440"\w* \w Zoan|strong="H6814"\w* \w in|strong="H8141"\w* \w Egypt|strong="H4714"\w*.) +\v 23 \w They|strong="H8033"\w* \w came|strong="H8147"\w* \w to|strong="H5704"\w* \w the|strong="H5375"\w* \w valley|strong="H5158"\w* \w of|strong="H4480"\w* Eshcol, \w and|strong="H8033"\w* \w cut|strong="H3772"\w* \w down|strong="H3772"\w* \w from|strong="H4480"\w* \w there|strong="H8033"\w* \w a|strong="H3068"\w* \w branch|strong="H2156"\w* \w with|strong="H3772"\w* \w one|strong="H4480"\w* cluster \w of|strong="H4480"\w* \w grapes|strong="H6025"\w*, \w and|strong="H8033"\w* \w they|strong="H8033"\w* \w bore|strong="H5375"\w* \w it|strong="H5375"\w* \w on|strong="H5375"\w* \w a|strong="H3068"\w* \w staff|strong="H4132"\w* \w between|strong="H5704"\w* \w two|strong="H8147"\w*. \w They|strong="H8033"\w* also \w brought|strong="H5375"\w* \w some|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H5375"\w* \w pomegranates|strong="H7416"\w* \w and|strong="H8033"\w* \w figs|strong="H8384"\w*. +\v 24 \w That|strong="H1931"\w* \w place|strong="H4725"\w* \w was|strong="H3478"\w* \w called|strong="H7121"\w* \w the|strong="H5921"\w* \w valley|strong="H5158"\w* \w of|strong="H1121"\w* Eshcol, \w because|strong="H5921"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* cluster \w which|strong="H1931"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w cut|strong="H3772"\w* \w down|strong="H3772"\w* \w from|strong="H3772"\w* \w there|strong="H8033"\w*. +\v 25 \w They|strong="H3117"\w* \w returned|strong="H7725"\w* \w from|strong="H7725"\w* \w spying|strong="H8446"\w* \w out|strong="H8446"\w* \w the|strong="H7725"\w* land \w at|strong="H3117"\w* \w the|strong="H7725"\w* \w end|strong="H7093"\w* \w of|strong="H3117"\w* forty \w days|strong="H3117"\w*. +\v 26 \w They|strong="H1697"\w* \w went|strong="H3212"\w* \w and|strong="H1121"\w* \w came|strong="H3478"\w* \w to|strong="H7725"\w* \w Moses|strong="H4872"\w*, \w to|strong="H7725"\w* Aaron, \w and|strong="H1121"\w* \w to|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* \w of|strong="H1121"\w* \w Paran|strong="H6290"\w*, \w to|strong="H7725"\w* \w Kadesh|strong="H6946"\w*; \w and|strong="H1121"\w* \w brought|strong="H7725"\w* \w back|strong="H7725"\w* \w word|strong="H1697"\w* \w to|strong="H7725"\w* \w them|strong="H7725"\w* \w and|strong="H1121"\w* \w to|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w*. \w They|strong="H1697"\w* \w showed|strong="H7200"\w* \w them|strong="H7725"\w* \w the|strong="H3605"\w* \w fruit|strong="H6529"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* land. +\v 27 \w They|strong="H1931"\w* \w told|strong="H5608"\w* \w him|strong="H7971"\w*, \w and|strong="H7971"\w* said, “We came \w to|strong="H7971"\w* \w the|strong="H7971"\w* land \w where|strong="H2088"\w* \w you|strong="H7971"\w* \w sent|strong="H7971"\w* \w us|strong="H5608"\w*. \w Surely|strong="H1571"\w* \w it|strong="H1931"\w* \w flows|strong="H2100"\w* \w with|strong="H2100"\w* \w milk|strong="H2461"\w* \w and|strong="H7971"\w* \w honey|strong="H1706"\w*, \w and|strong="H7971"\w* \w this|strong="H2088"\w* \w is|strong="H2088"\w* \w its|strong="H6529"\w* \w fruit|strong="H6529"\w*. +\v 28 \w However|strong="H1571"\w*, \w the|strong="H7200"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H7200"\w* land \w are|strong="H5971"\w* \w strong|strong="H5794"\w*, \w and|strong="H1419"\w* \w the|strong="H7200"\w* \w cities|strong="H5892"\w* \w are|strong="H5971"\w* \w fortified|strong="H1219"\w* \w and|strong="H1419"\w* \w very|strong="H3966"\w* \w large|strong="H1419"\w*. \w Moreover|strong="H1571"\w*, \w we|strong="H3068"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w children|strong="H3211"\w* \w of|strong="H3427"\w* \w Anak|strong="H6061"\w* \w there|strong="H8033"\w*. +\v 29 \w Amalek|strong="H6002"\w* \w dwells|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* land \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w South|strong="H5045"\w*. \w The|strong="H5921"\w* \w Hittite|strong="H2850"\w*, \w the|strong="H5921"\w* \w Jebusite|strong="H2983"\w*, \w and|strong="H3027"\w* \w the|strong="H5921"\w* Amorite \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*. \w The|strong="H5921"\w* \w Canaanite|strong="H3669"\w* \w dwells|strong="H3427"\w* \w by|strong="H3027"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*, \w and|strong="H3027"\w* \w along|strong="H5921"\w* \w the|strong="H5921"\w* \w side|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w*.” +\p +\v 30 \w Caleb|strong="H3612"\w* \w stilled|strong="H2013"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w before|strong="H5971"\w* \w Moses|strong="H4872"\w*, \w and|strong="H4872"\w* said, “Let’s \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w at|strong="H5927"\w* \w once|strong="H5927"\w*, \w and|strong="H4872"\w* \w possess|strong="H3423"\w* \w it|strong="H3588"\w*; \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w are|strong="H5971"\w* well \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w overcome|strong="H3201"\w* \w it|strong="H3588"\w*!” +\p +\v 31 \w But|strong="H3588"\w* \w the|strong="H3588"\w* \w men|strong="H5971"\w* \w who|strong="H1931"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w* said, “\w We|strong="H3588"\w* aren’t \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5973"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H5971"\w* \w stronger|strong="H2389"\w* \w than|strong="H4480"\w* \w we|strong="H3068"\w*.” +\v 32 \w They|strong="H1931"\w* \w brought|strong="H3318"\w* \w up|strong="H7200"\w* \w an|strong="H7200"\w* \w evil|strong="H1681"\w* \w report|strong="H1681"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* land \w which|strong="H1931"\w* \w they|strong="H1931"\w* \w had|strong="H3478"\w* \w spied|strong="H8446"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, saying, “\w The|strong="H3605"\w* land, \w through|strong="H5674"\w* \w which|strong="H1931"\w* \w we|strong="H3068"\w* \w have|strong="H5971"\w* \w gone|strong="H3318"\w* \w to|strong="H3318"\w* \w spy|strong="H8446"\w* \w it|strong="H1931"\w* \w out|strong="H3318"\w*, \w is|strong="H1931"\w* \w a|strong="H3068"\w* land \w that|strong="H5971"\w* eats \w up|strong="H7200"\w* \w its|strong="H3605"\w* \w inhabitants|strong="H3427"\w*; \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w we|strong="H3068"\w* \w saw|strong="H7200"\w* \w in|strong="H3427"\w* \w it|strong="H1931"\w* \w are|strong="H5971"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* great \w stature|strong="H4060"\w*. +\v 33 \w There|strong="H8033"\w* \w we|strong="H3068"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w Nephilim|strong="H5303"\w*,\f + \fr 13:33 \ft or, giants\f* \w the|strong="H7200"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Anak|strong="H6061"\w*, \w who|strong="H1121"\w* \w come|strong="H1961"\w* \w from|strong="H4480"\w* \w the|strong="H7200"\w* \w Nephilim|strong="H5303"\w*.\f + \fr 13:33 \ft or, giants\f* \w We|strong="H8033"\w* \w were|strong="H1961"\w* \w in|strong="H1121"\w* \w our|strong="H7200"\w* \w own|strong="H1961"\w* \w sight|strong="H5869"\w* \w as|strong="H1961"\w* \w grasshoppers|strong="H2284"\w*, \w and|strong="H1121"\w* \w so|strong="H3651"\w* \w we|strong="H3068"\w* \w were|strong="H1961"\w* \w in|strong="H1121"\w* \w their|strong="H7200"\w* \w sight|strong="H5869"\w*.” +\c 14 +\p +\v 1 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w their|strong="H3605"\w* \w voice|strong="H6963"\w*, \w and|strong="H5971"\w* \w cried|strong="H5414"\w*; \w and|strong="H5971"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w wept|strong="H1058"\w* \w that|strong="H5971"\w* \w night|strong="H3915"\w*. +\v 2 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w murmured|strong="H3885"\w* \w against|strong="H5921"\w* \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* \w against|strong="H5921"\w* Aaron. \w The|strong="H3605"\w* \w whole|strong="H3605"\w* \w congregation|strong="H5712"\w* said \w to|strong="H3478"\w* \w them|strong="H5921"\w*, “\w We|strong="H3605"\w* wish \w that|strong="H3605"\w* \w we|strong="H3068"\w* \w had|strong="H3478"\w* \w died|strong="H4191"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w or|strong="H1121"\w* \w that|strong="H3605"\w* \w we|strong="H3068"\w* \w had|strong="H3478"\w* \w died|strong="H4191"\w* \w in|strong="H5921"\w* \w this|strong="H2088"\w* \w wilderness|strong="H4057"\w*! +\v 3 \w Why|strong="H4100"\w* \w does|strong="H4100"\w* \w Yahweh|strong="H3068"\w* \w bring|strong="H7725"\w* \w us|strong="H7725"\w* \w to|strong="H7725"\w* \w this|strong="H2063"\w* land, \w to|strong="H7725"\w* \w fall|strong="H5307"\w* \w by|strong="H3068"\w* \w the|strong="H3068"\w* \w sword|strong="H2719"\w*? \w Our|strong="H3068"\w* wives \w and|strong="H3068"\w* \w our|strong="H3068"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* captured \w or|strong="H3808"\w* \w killed|strong="H2719"\w*! Wouldn’t \w it|strong="H7725"\w* \w be|strong="H1961"\w* \w better|strong="H2896"\w* \w for|strong="H4714"\w* \w us|strong="H7725"\w* \w to|strong="H7725"\w* \w return|strong="H7725"\w* \w into|strong="H7725"\w* \w Egypt|strong="H4714"\w*?” +\v 4 \w They|strong="H5414"\w* said \w to|strong="H7725"\w* one another, “\w Let|strong="H5414"\w*’s choose \w a|strong="H3068"\w* \w leader|strong="H7218"\w*, \w and|strong="H7725"\w* \w let|strong="H5414"\w*’s \w return|strong="H7725"\w* \w into|strong="H7725"\w* \w Egypt|strong="H4714"\w*.” +\p +\v 5 \w Then|strong="H5307"\w* \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* Aaron \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w their|strong="H3605"\w* \w faces|strong="H6440"\w* \w before|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\p +\v 6 \w Joshua|strong="H3091"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w* \w and|strong="H1121"\w* \w Caleb|strong="H3612"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jephunneh|strong="H3312"\w*, \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w of|strong="H1121"\w* \w those|strong="H4480"\w* \w who|strong="H1121"\w* \w spied|strong="H8446"\w* \w out|strong="H4480"\w* \w the|strong="H4480"\w* land, \w tore|strong="H7167"\w* \w their|strong="H7167"\w* clothes. +\v 7 \w They|strong="H3478"\w* spoke \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, saying, “\w The|strong="H3605"\w* land, \w which|strong="H3478"\w* \w we|strong="H3068"\w* \w passed|strong="H5674"\w* \w through|strong="H5674"\w* \w to|strong="H3478"\w* \w spy|strong="H8446"\w* \w it|strong="H5674"\w* \w out|strong="H8446"\w*, \w is|strong="H2896"\w* \w an|strong="H3478"\w* \w exceedingly|strong="H3966"\w* \w good|strong="H2896"\w* land. +\v 8 \w If|strong="H1931"\w* \w Yahweh|strong="H3068"\w* \w delights|strong="H2654"\w* \w in|strong="H3068"\w* \w us|strong="H5414"\w*, \w then|strong="H5414"\w* \w he|strong="H1931"\w* \w will|strong="H3068"\w* \w bring|strong="H5414"\w* \w us|strong="H5414"\w* \w into|strong="H5414"\w* \w this|strong="H2063"\w* land, \w and|strong="H3068"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3068"\w* \w us|strong="H5414"\w*: \w a|strong="H3068"\w* land \w which|strong="H1931"\w* \w flows|strong="H2100"\w* \w with|strong="H2100"\w* \w milk|strong="H2461"\w* \w and|strong="H3068"\w* \w honey|strong="H1706"\w*. +\v 9 \w Only|strong="H3588"\w* don’t \w rebel|strong="H4775"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, neither \w fear|strong="H3372"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* land; \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w bread|strong="H3899"\w* \w for|strong="H3588"\w* \w us|strong="H5921"\w*. \w Their|strong="H3068"\w* defense \w is|strong="H3068"\w* \w removed|strong="H5493"\w* \w from|strong="H5493"\w* \w over|strong="H5921"\w* \w them|strong="H1992"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w with|strong="H3068"\w* \w us|strong="H5921"\w*. Don’t \w fear|strong="H3372"\w* \w them|strong="H1992"\w*.” +\p +\v 10 \w But|strong="H7200"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w threatened|strong="H7275"\w* \w to|strong="H3478"\w* \w stone|strong="H7275"\w* \w them|strong="H7200"\w* \w with|strong="H3068"\w* stones. +\p \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w appeared|strong="H7200"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 11 \w Yahweh|strong="H3068"\w* said \w to|strong="H5704"\w* \w Moses|strong="H4872"\w*, “\w How|strong="H5704"\w* \w long|strong="H5704"\w* \w will|strong="H3068"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w despise|strong="H5006"\w* \w me|strong="H6213"\w*? \w How|strong="H5704"\w* \w long|strong="H5704"\w* \w will|strong="H3068"\w* \w they|strong="H3068"\w* \w not|strong="H3808"\w* believe \w in|strong="H3068"\w* \w me|strong="H6213"\w*, \w for|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* signs \w which|strong="H3068"\w* \w I|strong="H5704"\w* \w have|strong="H3068"\w* \w worked|strong="H6213"\w* \w among|strong="H7130"\w* \w them|strong="H6213"\w*? +\v 12 \w I|strong="H4480"\w* \w will|strong="H1471"\w* \w strike|strong="H5221"\w* \w them|strong="H5221"\w* \w with|strong="H6213"\w* \w the|strong="H5221"\w* \w pestilence|strong="H1698"\w*, \w and|strong="H1419"\w* \w disinherit|strong="H3423"\w* \w them|strong="H5221"\w*, \w and|strong="H1419"\w* \w will|strong="H1471"\w* \w make|strong="H6213"\w* \w of|strong="H4480"\w* \w you|strong="H6213"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w greater|strong="H1419"\w* \w and|strong="H1419"\w* \w mightier|strong="H6099"\w* \w than|strong="H4480"\w* \w they|strong="H6213"\w*.” +\p +\v 13 \w Moses|strong="H4872"\w* \w said|strong="H8085"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, “\w Then|strong="H2088"\w* \w the|strong="H8085"\w* \w Egyptians|strong="H4713"\w* \w will|strong="H3068"\w* \w hear|strong="H8085"\w* \w it|strong="H3588"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w might|strong="H3581"\w* \w from|strong="H5927"\w* \w among|strong="H7130"\w* \w them|strong="H5927"\w*. +\v 14 \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w tell|strong="H8085"\w* \w it|strong="H5921"\w* \w to|strong="H1980"\w* \w the|strong="H6440"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w this|strong="H2088"\w* \w land|strong="H7130"\w*. \w They|strong="H3588"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w are|strong="H5971"\w* \w among|strong="H7130"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w are|strong="H5971"\w* \w seen|strong="H7200"\w* \w face|strong="H6440"\w* \w to|strong="H1980"\w* \w face|strong="H6440"\w*, \w and|strong="H1980"\w* \w your|strong="H3068"\w* \w cloud|strong="H6051"\w* \w stands|strong="H5975"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w*, \w and|strong="H1980"\w* \w you|strong="H3588"\w* \w go|strong="H1980"\w* \w before|strong="H6440"\w* \w them|strong="H5921"\w*, \w in|strong="H3427"\w* \w a|strong="H3068"\w* \w pillar|strong="H5982"\w* \w of|strong="H3068"\w* \w cloud|strong="H6051"\w* \w by|strong="H5921"\w* \w day|strong="H3119"\w*, \w and|strong="H1980"\w* \w in|strong="H3427"\w* \w a|strong="H3068"\w* \w pillar|strong="H5982"\w* \w of|strong="H3068"\w* fire \w by|strong="H5921"\w* \w night|strong="H3915"\w*. +\v 15 \w Now|strong="H2088"\w* if \w you|strong="H5971"\w* \w killed|strong="H4191"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w as|strong="H5971"\w* \w one|strong="H2088"\w* \w man|strong="H4191"\w*, \w then|strong="H2088"\w* \w the|strong="H8085"\w* \w nations|strong="H1471"\w* \w which|strong="H1471"\w* \w have|strong="H5971"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w fame|strong="H8088"\w* \w of|strong="H5971"\w* \w you|strong="H5971"\w* \w will|strong="H1471"\w* speak, saying, +\v 16 ‘\w Because|strong="H1115"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w not|strong="H3201"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* bring \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w into|strong="H2088"\w* \w the|strong="H3068"\w* land \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w swore|strong="H7650"\w* \w to|strong="H3201"\w* \w them|strong="H7819"\w*, \w therefore|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w slain|strong="H7819"\w* \w them|strong="H7819"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w wilderness|strong="H4057"\w*.’ +\v 17 \w Now|strong="H6258"\w* \w please|strong="H4994"\w* \w let|strong="H4994"\w* \w the|strong="H1696"\w* \w power|strong="H3581"\w* \w of|strong="H1696"\w* \w the|strong="H1696"\w* Lord\f + \fr 14:17 \ft The word translated “Lord” is “Adonai.”\f* \w be|strong="H4994"\w* \w great|strong="H1431"\w*, according \w as|strong="H1696"\w* \w you|strong="H1696"\w* \w have|strong="H1696"\w* \w spoken|strong="H1696"\w*, \w saying|strong="H1696"\w*, +\v 18 ‘\w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* slow \w to|strong="H3068"\w* \w anger|strong="H5375"\w*, \w and|strong="H1121"\w* \w abundant|strong="H7227"\w* \w in|strong="H5921"\w* loving \w kindness|strong="H2617"\w*, \w forgiving|strong="H5375"\w* \w iniquity|strong="H5771"\w* \w and|strong="H1121"\w* disobedience; \w and|strong="H1121"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w by|strong="H5921"\w* \w no|strong="H3808"\w* \w means|strong="H5352"\w* \w clear|strong="H5352"\w* \w the|strong="H5921"\w* \w guilty|strong="H5771"\w*, \w visiting|strong="H6485"\w* \w the|strong="H5921"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* fathers \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w*, \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w third|strong="H8029"\w* \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w fourth|strong="H7256"\w* \w generation|strong="H8029"\w*.’ +\v 19 \w Please|strong="H4994"\w* \w pardon|strong="H5545"\w* \w the|strong="H5375"\w* \w iniquity|strong="H5771"\w* \w of|strong="H5971"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* according \w to|strong="H5704"\w* \w the|strong="H5375"\w* \w greatness|strong="H1433"\w* \w of|strong="H5971"\w* \w your|strong="H5375"\w* loving \w kindness|strong="H2617"\w*, \w and|strong="H5971"\w* \w just|strong="H2088"\w* \w as|strong="H5704"\w* \w you|strong="H5704"\w* \w have|strong="H5971"\w* \w forgiven|strong="H5545"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*, \w from|strong="H5704"\w* \w Egypt|strong="H4714"\w* \w even|strong="H5704"\w* \w until|strong="H5704"\w* \w now|strong="H4994"\w*.” +\p +\v 20 \w Yahweh|strong="H3068"\w* \w said|strong="H1697"\w*, “\w I|strong="H1697"\w* \w have|strong="H3068"\w* \w pardoned|strong="H5545"\w* according \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w word|strong="H1697"\w*; +\v 21 \w but|strong="H3605"\w* \w in|strong="H3068"\w* very deed—\w as|strong="H3068"\w* \w I|strong="H3068"\w* \w live|strong="H2416"\w*, \w and|strong="H3068"\w* \w as|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w*— +\v 22 \w because|strong="H3588"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w men|strong="H6213"\w* \w who|strong="H3605"\w* \w have|strong="H7200"\w* \w seen|strong="H7200"\w* \w my|strong="H8085"\w* \w glory|strong="H3519"\w* \w and|strong="H6963"\w* \w my|strong="H8085"\w* signs, \w which|strong="H2088"\w* \w I|strong="H3588"\w* \w worked|strong="H6213"\w* \w in|strong="H6213"\w* \w Egypt|strong="H4714"\w* \w and|strong="H6963"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w*, \w yet|strong="H3588"\w* \w have|strong="H7200"\w* \w tempted|strong="H5254"\w* \w me|strong="H7200"\w* \w these|strong="H2088"\w* \w ten|strong="H6235"\w* \w times|strong="H6471"\w*, \w and|strong="H6963"\w* \w have|strong="H7200"\w* \w not|strong="H3808"\w* \w listened|strong="H8085"\w* \w to|strong="H6213"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*; +\v 23 \w surely|strong="H7200"\w* \w they|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w* \w the|strong="H3605"\w* land \w which|strong="H3605"\w* \w I|strong="H7200"\w* \w swore|strong="H7650"\w* \w to|strong="H7200"\w* \w their|strong="H3605"\w* fathers, \w neither|strong="H3808"\w* \w shall|strong="H3808"\w* \w any|strong="H3605"\w* \w of|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w despised|strong="H5006"\w* \w me|strong="H7200"\w* \w see|strong="H7200"\w* \w it|strong="H7200"\w*. +\v 24 \w But|strong="H1961"\w* \w my|strong="H1961"\w* \w servant|strong="H5650"\w* \w Caleb|strong="H3612"\w*, \w because|strong="H6118"\w* \w he|strong="H8033"\w* \w had|strong="H1961"\w* another \w spirit|strong="H7307"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*, \w and|strong="H5650"\w* \w has|strong="H1961"\w* \w followed|strong="H1961"\w* \w me|strong="H5973"\w* \w fully|strong="H4390"\w*, \w him|strong="H5973"\w* \w I|strong="H5650"\w* \w will|strong="H1961"\w* \w bring|strong="H1961"\w* \w into|strong="H1961"\w* \w the|strong="H3423"\w* land \w into|strong="H1961"\w* \w which|strong="H8033"\w* \w he|strong="H8033"\w* \w went|strong="H1961"\w*. \w His|strong="H1961"\w* \w offspring|strong="H2233"\w* \w shall|strong="H5650"\w* \w possess|strong="H3423"\w* \w it|strong="H8033"\w*. +\v 25 Since \w the|strong="H1870"\w* \w Amalekite|strong="H6003"\w* \w and|strong="H1870"\w* \w the|strong="H1870"\w* \w Canaanite|strong="H3669"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H1870"\w* \w valley|strong="H6010"\w*, \w tomorrow|strong="H4279"\w* \w turn|strong="H6437"\w* \w and|strong="H1870"\w* \w go|strong="H5265"\w* \w into|strong="H3220"\w* \w the|strong="H1870"\w* \w wilderness|strong="H4057"\w* \w by|strong="H1870"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w to|strong="H1870"\w* \w the|strong="H1870"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w*.” +\v 26 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* \w to|strong="H1696"\w* Aaron, \w saying|strong="H1696"\w*, +\v 27 “\w How|strong="H4970"\w* \w long|strong="H5704"\w* \w shall|strong="H1121"\w* \w I|strong="H5704"\w* bear \w with|strong="H5921"\w* \w this|strong="H2063"\w* \w evil|strong="H7451"\w* \w congregation|strong="H5712"\w* \w that|strong="H8085"\w* complain \w against|strong="H5921"\w* \w me|strong="H5921"\w*? \w I|strong="H5704"\w* \w have|strong="H1121"\w* \w heard|strong="H8085"\w* \w the|strong="H5921"\w* \w complaints|strong="H8519"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w which|strong="H1992"\w* \w they|strong="H1992"\w* complain \w against|strong="H5921"\w* \w me|strong="H5921"\w*. +\v 28 \w Tell|strong="H1696"\w* \w them|strong="H6213"\w*, ‘\w As|strong="H6213"\w* \w I|strong="H3651"\w* \w live|strong="H2416"\w*, \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, \w surely|strong="H6213"\w* \w as|strong="H6213"\w* \w you|strong="H6213"\w* \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w in|strong="H3068"\w* \w my|strong="H3068"\w* ears, \w so|strong="H3651"\w* \w I|strong="H3651"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w to|strong="H1696"\w* \w you|strong="H6213"\w*. +\v 29 \w Your|strong="H3605"\w* \w dead|strong="H6297"\w* \w bodies|strong="H6297"\w* \w shall|strong="H1121"\w* \w fall|strong="H5307"\w* \w in|strong="H8141"\w* \w this|strong="H2088"\w* \w wilderness|strong="H4057"\w*; \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w counted|strong="H6485"\w* \w of|strong="H1121"\w* \w you|strong="H3605"\w*, \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w your|strong="H3605"\w* \w whole|strong="H3605"\w* \w number|strong="H4557"\w*, \w from|strong="H5921"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w who|strong="H3605"\w* \w have|strong="H1121"\w* complained \w against|strong="H5921"\w* \w me|strong="H5921"\w*, +\v 30 \w surely|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H1121"\w* \w not|strong="H3588"\w* come \w into|strong="H3027"\w* \w the|strong="H3588"\w* land concerning \w which|strong="H3588"\w* \w I|strong="H3588"\w* \w swore|strong="H5375"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* would \w make|strong="H3027"\w* \w you|strong="H3588"\w* \w dwell|strong="H7931"\w* therein, \w except|strong="H3588"\w* \w Caleb|strong="H3612"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jephunneh|strong="H3312"\w*, \w and|strong="H1121"\w* \w Joshua|strong="H3091"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w*. +\v 31 \w But|strong="H1961"\w* \w I|strong="H3045"\w* \w will|strong="H1961"\w* \w bring|strong="H3045"\w* \w in|strong="H3045"\w* \w your|strong="H3045"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w* \w that|strong="H3045"\w* \w you|strong="H3045"\w* said should \w be|strong="H1961"\w* captured \w or|strong="H3045"\w* killed, \w and|strong="H3045"\w* \w they|strong="H3045"\w* \w shall|strong="H3045"\w* \w know|strong="H3045"\w* \w the|strong="H3045"\w* land \w which|strong="H3988"\w* \w you|strong="H3045"\w* \w have|strong="H1961"\w* \w rejected|strong="H3988"\w*. +\v 32 But \w as|strong="H4057"\w* \w for|strong="H2088"\w* \w you|strong="H2088"\w*, \w your|strong="H2088"\w* \w dead|strong="H6297"\w* \w bodies|strong="H6297"\w* \w shall|strong="H2088"\w* \w fall|strong="H5307"\w* \w in|strong="H5307"\w* \w this|strong="H2088"\w* \w wilderness|strong="H4057"\w*. +\v 33 \w Your|strong="H5375"\w* \w children|strong="H1121"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* wanderers \w in|strong="H8141"\w* \w the|strong="H5375"\w* \w wilderness|strong="H4057"\w* forty \w years|strong="H8141"\w*, \w and|strong="H1121"\w* \w shall|strong="H1121"\w* \w bear|strong="H5375"\w* \w your|strong="H5375"\w* \w prostitution|strong="H2184"\w*, \w until|strong="H5704"\w* \w your|strong="H5375"\w* \w dead|strong="H6297"\w* \w bodies|strong="H6297"\w* \w are|strong="H1121"\w* \w consumed|strong="H8552"\w* \w in|strong="H8141"\w* \w the|strong="H5375"\w* \w wilderness|strong="H4057"\w*. +\v 34 \w After|strong="H3117"\w* \w the|strong="H5375"\w* \w number|strong="H4557"\w* \w of|strong="H3117"\w* \w the|strong="H5375"\w* \w days|strong="H3117"\w* \w in|strong="H8141"\w* \w which|strong="H3117"\w* \w you|strong="H3117"\w* \w spied|strong="H8446"\w* \w out|strong="H8446"\w* \w the|strong="H5375"\w* land, even forty \w days|strong="H3117"\w*, \w for|strong="H3117"\w* \w every|strong="H3117"\w* \w day|strong="H3117"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w*, \w you|strong="H3117"\w* \w will|strong="H3117"\w* \w bear|strong="H5375"\w* \w your|strong="H5375"\w* \w iniquities|strong="H5771"\w*, even forty \w years|strong="H8141"\w*, \w and|strong="H3117"\w* \w you|strong="H3117"\w* \w will|strong="H3117"\w* \w know|strong="H3045"\w* \w my|strong="H3045"\w* alienation.’ +\v 35 \w I|strong="H5921"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w spoken|strong="H1696"\w*. \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w surely|strong="H4191"\w* \w do|strong="H6213"\w* \w this|strong="H2088"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w this|strong="H2088"\w* \w evil|strong="H7451"\w* \w congregation|strong="H5712"\w* \w who|strong="H3605"\w* \w are|strong="H3068"\w* \w gathered|strong="H3259"\w* \w together|strong="H3259"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*. \w In|strong="H5921"\w* \w this|strong="H2088"\w* \w wilderness|strong="H4057"\w* \w they|strong="H8033"\w* \w shall|strong="H3068"\w* \w be|strong="H4191"\w* \w consumed|strong="H8552"\w*, \w and|strong="H3068"\w* \w there|strong="H8033"\w* \w they|strong="H8033"\w* \w shall|strong="H3068"\w* \w die|strong="H4191"\w*.” +\p +\v 36 \w The|strong="H3605"\w* \w men|strong="H3605"\w* whom \w Moses|strong="H4872"\w* \w sent|strong="H7971"\w* \w to|strong="H7725"\w* \w spy|strong="H8446"\w* \w out|strong="H3318"\w* \w the|strong="H3605"\w* land, \w who|strong="H3605"\w* \w returned|strong="H7725"\w* \w and|strong="H4872"\w* \w made|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w to|strong="H7725"\w* \w murmur|strong="H3885"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w* \w by|strong="H5921"\w* \w bringing|strong="H3318"\w* \w up|strong="H5921"\w* \w an|strong="H7971"\w* \w evil|strong="H1681"\w* \w report|strong="H1681"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* land, +\v 37 \w even|strong="H3068"\w* \w those|strong="H3318"\w* \w men|strong="H7451"\w* \w who|strong="H3068"\w* \w brought|strong="H3318"\w* \w up|strong="H3318"\w* \w an|strong="H6440"\w* \w evil|strong="H7451"\w* \w report|strong="H1681"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*, \w died|strong="H4191"\w* \w by|strong="H3068"\w* \w the|strong="H6440"\w* \w plague|strong="H4046"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 38 \w But|strong="H1992"\w* \w Joshua|strong="H3091"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w* \w and|strong="H1121"\w* \w Caleb|strong="H3612"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jephunneh|strong="H3312"\w* \w remained|strong="H2421"\w* \w alive|strong="H2421"\w* \w of|strong="H1121"\w* \w those|strong="H1992"\w* \w men|strong="H1121"\w* \w who|strong="H1121"\w* \w went|strong="H1980"\w* \w to|strong="H1980"\w* \w spy|strong="H8446"\w* \w out|strong="H4480"\w* \w the|strong="H4480"\w* land. +\p +\v 39 \w Moses|strong="H4872"\w* \w told|strong="H1696"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* mourned \w greatly|strong="H3966"\w*. +\v 40 \w They|strong="H3588"\w* \w rose|strong="H7925"\w* \w up|strong="H5927"\w* \w early|strong="H7925"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w morning|strong="H1242"\w* \w and|strong="H3068"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w top|strong="H7218"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w mountain|strong="H2022"\w*, saying, “\w Behold|strong="H2005"\w*, \w we|strong="H3068"\w* \w are|strong="H3068"\w* \w here|strong="H2005"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w place|strong="H4725"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w promised|strong="H3068"\w*; \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w*.” +\p +\v 41 \w Moses|strong="H4872"\w* \w said|strong="H6310"\w*, “\w Why|strong="H4100"\w* \w now|strong="H2088"\w* \w do|strong="H3068"\w* \w you|strong="H3808"\w* disobey \w the|strong="H3068"\w* \w commandment|strong="H6310"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w since|strong="H6310"\w* \w it|strong="H1931"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w prosper|strong="H6743"\w*? +\v 42 Don’t \w go|strong="H5927"\w* \w up|strong="H5927"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* isn’t \w among|strong="H7130"\w* \w you|strong="H3588"\w*; \w that|strong="H3588"\w* \w way|strong="H6440"\w* \w you|strong="H3588"\w* won’t \w be|strong="H3808"\w* \w struck|strong="H5062"\w* \w down|strong="H5062"\w* \w before|strong="H6440"\w* \w your|strong="H3068"\w* enemies. +\v 43 \w For|strong="H3588"\w* \w there|strong="H8033"\w* \w the|strong="H6440"\w* \w Amalekite|strong="H6003"\w* \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w Canaanite|strong="H3669"\w* \w are|strong="H3068"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w fall|strong="H5307"\w* \w by|strong="H5921"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w* \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w turned|strong="H7725"\w* \w back|strong="H7725"\w* \w from|strong="H7725"\w* following \w Yahweh|strong="H3068"\w*; \w therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*.” +\p +\v 44 \w But|strong="H3808"\w* \w they|strong="H3068"\w* \w presumed|strong="H6075"\w* \w to|strong="H3068"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w top|strong="H7218"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w mountain|strong="H2022"\w*. Nevertheless, \w the|strong="H3068"\w* ark \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w* \w and|strong="H4872"\w* \w Moses|strong="H4872"\w* didn’t \w depart|strong="H4185"\w* \w out|strong="H7130"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w camp|strong="H4264"\w*. +\v 45 \w Then|strong="H3381"\w* \w the|strong="H5221"\w* \w Amalekites|strong="H6003"\w* \w came|strong="H3381"\w* \w down|strong="H3381"\w*, \w and|strong="H2022"\w* \w the|strong="H5221"\w* \w Canaanites|strong="H3669"\w* \w who|strong="H1931"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w that|strong="H1931"\w* \w mountain|strong="H2022"\w*, \w and|strong="H2022"\w* \w struck|strong="H5221"\w* \w them|strong="H5221"\w* \w and|strong="H2022"\w* \w beat|strong="H5221"\w* \w them|strong="H5221"\w* \w down|strong="H3381"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Hormah|strong="H2767"\w*. +\c 15 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w tell|strong="H1696"\w* \w them|strong="H5414"\w*, ‘\w When|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1121"\w* \w come|strong="H3478"\w* \w into|strong="H5414"\w* \w the|strong="H3588"\w* land \w of|strong="H1121"\w* \w your|strong="H5414"\w* \w habitations|strong="H4186"\w*, \w which|strong="H3478"\w* \w I|strong="H3588"\w* \w give|strong="H5414"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*, +\v 3 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w make|strong="H6213"\w* \w an|strong="H6213"\w* \w offering|strong="H5930"\w* \w by|strong="H3068"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*—\w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w or|strong="H4480"\w* \w a|strong="H3068"\w* \w sacrifice|strong="H2077"\w*, \w to|strong="H3068"\w* \w accomplish|strong="H6213"\w* \w a|strong="H3068"\w* \w vow|strong="H5088"\w*, \w or|strong="H4480"\w* \w as|strong="H6213"\w* \w a|strong="H3068"\w* free \w will|strong="H3068"\w* \w offering|strong="H5930"\w*, \w or|strong="H4480"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w set|strong="H6213"\w* \w feasts|strong="H4150"\w*, \w to|strong="H3068"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w of|strong="H3068"\w* \w the|strong="H6213"\w* \w herd|strong="H1241"\w*, \w or|strong="H4480"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* \w flock|strong="H6629"\w*— +\v 4 \w then|strong="H7126"\w* \w he|strong="H3068"\w* \w who|strong="H3068"\w* \w offers|strong="H7126"\w* \w his|strong="H3068"\w* \w offering|strong="H4503"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w of|strong="H3068"\w* \w one|strong="H3068"\w* \w tenth|strong="H6241"\w* \w of|strong="H3068"\w* \w an|strong="H7126"\w* ephah\f + \fr 15:4 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w of|strong="H3068"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w one|strong="H3068"\w* \w fourth|strong="H7243"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w hin|strong="H1969"\w*\f + \fr 15:4 \ft A hin is about 6.5 liters or 1.7 gallons.\f* \w of|strong="H3068"\w* \w oil|strong="H8081"\w*. +\v 5 \w You|strong="H5921"\w* \w shall|strong="H6213"\w* \w prepare|strong="H6213"\w* \w wine|strong="H3196"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w drink|strong="H5262"\w* \w offering|strong="H5930"\w*, \w one|strong="H3532"\w* \w fourth|strong="H7243"\w* \w of|strong="H2077"\w* \w a|strong="H3068"\w* \w hin|strong="H1969"\w*, \w with|strong="H6213"\w* \w the|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w or|strong="H3196"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w sacrifice|strong="H2077"\w*, \w for|strong="H5921"\w* \w each|strong="H3532"\w* \w lamb|strong="H3532"\w*. +\p +\v 6 “‘\w For|strong="H6213"\w* \w a|strong="H3068"\w* ram, \w you|strong="H6213"\w* \w shall|strong="H6213"\w* \w prepare|strong="H6213"\w* \w for|strong="H6213"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w two|strong="H8147"\w* tenths \w of|strong="H1969"\w* \w an|strong="H6213"\w* ephah\f + \fr 15:6 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w of|strong="H1969"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w the|strong="H6213"\w* \w third|strong="H7992"\w* \w part|strong="H7992"\w* \w of|strong="H1969"\w* \w a|strong="H3068"\w* \w hin|strong="H1969"\w* \w of|strong="H1969"\w* \w oil|strong="H8081"\w*; +\v 7 \w and|strong="H3068"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w drink|strong="H5262"\w* \w offering|strong="H5262"\w* \w you|strong="H7126"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w the|strong="H3068"\w* \w third|strong="H7992"\w* \w part|strong="H7992"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w hin|strong="H1969"\w* \w of|strong="H3068"\w* \w wine|strong="H3196"\w*, \w of|strong="H3068"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 8 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w prepare|strong="H6213"\w* \w a|strong="H3068"\w* \w bull|strong="H1241"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w or|strong="H1121"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w sacrifice|strong="H2077"\w*, \w to|strong="H3068"\w* \w accomplish|strong="H6213"\w* \w a|strong="H3068"\w* \w vow|strong="H5088"\w*, \w or|strong="H1121"\w* \w for|strong="H3588"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\v 9 \w then|strong="H7126"\w* \w he|strong="H5921"\w* \w shall|strong="H1121"\w* \w offer|strong="H7126"\w* \w with|strong="H1101"\w* \w the|strong="H5921"\w* \w bull|strong="H1241"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w of|strong="H1121"\w* \w three|strong="H7969"\w* tenths \w of|strong="H1121"\w* \w an|strong="H7126"\w* ephah\f + \fr 15:9 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w of|strong="H1121"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w half|strong="H2677"\w* \w a|strong="H3068"\w* \w hin|strong="H1969"\w* \w of|strong="H1121"\w* \w oil|strong="H8081"\w*; +\v 10 \w and|strong="H3068"\w* \w you|strong="H7126"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w drink|strong="H5262"\w* \w offering|strong="H5262"\w* \w half|strong="H2677"\w* \w a|strong="H3068"\w* \w hin|strong="H1969"\w* \w of|strong="H3068"\w* \w wine|strong="H3196"\w*, \w for|strong="H3068"\w* \w an|strong="H7126"\w* \w offering|strong="H5262"\w* \w made|strong="H3068"\w* \w by|strong="H3068"\w* fire, \w of|strong="H3068"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 11 \w Thus|strong="H3602"\w* \w it|strong="H6213"\w* \w shall|strong="H7794"\w* be \w done|strong="H6213"\w* \w for|strong="H6213"\w* \w each|strong="H3532"\w* \w bull|strong="H7794"\w*, \w for|strong="H6213"\w* \w each|strong="H3532"\w* ram, \w for|strong="H6213"\w* \w each|strong="H3532"\w* \w of|strong="H6213"\w* \w the|strong="H6213"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w*, \w or|strong="H7794"\w* \w of|strong="H6213"\w* \w the|strong="H6213"\w* young \w goats|strong="H5795"\w*. +\v 12 \w According|strong="H3602"\w* \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w number|strong="H4557"\w* \w that|strong="H6213"\w* \w you|strong="H6213"\w* \w shall|strong="H6213"\w* \w prepare|strong="H6213"\w*, \w so|strong="H6213"\w* \w you|strong="H6213"\w* \w shall|strong="H6213"\w* \w do|strong="H6213"\w* \w to|strong="H6213"\w* everyone \w according|strong="H3602"\w* \w to|strong="H6213"\w* \w their|strong="H6213"\w* \w number|strong="H4557"\w*. +\p +\v 13 “‘\w All|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H3068"\w* native-born \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w these|strong="H6213"\w* \w things|strong="H3605"\w* \w in|strong="H3068"\w* \w this|strong="H6213"\w* \w way|strong="H3605"\w*, \w in|strong="H3068"\w* \w offering|strong="H7126"\w* \w an|strong="H6213"\w* \w offering|strong="H7126"\w* \w made|strong="H6213"\w* \w by|strong="H3068"\w* fire, \w of|strong="H3068"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 14 \w If|strong="H3588"\w* \w a|strong="H3068"\w* \w stranger|strong="H1616"\w* \w lives|strong="H1481"\w* \w as|strong="H6213"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1616"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w*, \w or|strong="H3068"\w* whoever \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w among|strong="H8432"\w* \w you|strong="H3588"\w* \w throughout|strong="H1755"\w* \w your|strong="H3068"\w* \w generations|strong="H1755"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w offer|strong="H6213"\w* \w an|strong="H6213"\w* \w offering|strong="H3068"\w* \w made|strong="H6213"\w* \w by|strong="H3068"\w* fire, \w of|strong="H3068"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w as|strong="H6213"\w* \w you|strong="H3588"\w* \w do|strong="H6213"\w*, \w so|strong="H3651"\w* \w he|strong="H3588"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w*. +\v 15 \w For|strong="H2708"\w* \w the|strong="H6440"\w* \w assembly|strong="H6951"\w*, \w there|strong="H1961"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w one|strong="H1961"\w* \w statute|strong="H2708"\w* \w for|strong="H2708"\w* \w you|strong="H6440"\w* \w and|strong="H3068"\w* \w for|strong="H2708"\w* \w the|strong="H6440"\w* \w stranger|strong="H1616"\w* \w who|strong="H3068"\w* \w lives|strong="H1481"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1616"\w*, \w a|strong="H3068"\w* \w statute|strong="H2708"\w* \w forever|strong="H5769"\w* \w throughout|strong="H1755"\w* \w your|strong="H3068"\w* \w generations|strong="H1755"\w*. \w As|strong="H1961"\w* \w you|strong="H6440"\w* \w are|strong="H3068"\w*, \w so|strong="H1961"\w* \w the|strong="H6440"\w* \w foreigner|strong="H1616"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 16 \w One|strong="H1961"\w* \w law|strong="H8451"\w* \w and|strong="H4941"\w* \w one|strong="H1961"\w* \w ordinance|strong="H4941"\w* \w shall|strong="H8451"\w* \w be|strong="H1961"\w* \w for|strong="H4941"\w* \w you|strong="H1961"\w* \w and|strong="H4941"\w* \w for|strong="H4941"\w* \w the|strong="H1961"\w* \w stranger|strong="H1616"\w* \w who|strong="H1616"\w* \w lives|strong="H1481"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1616"\w* \w with|strong="H4941"\w* \w you|strong="H1961"\w*.’” +\p +\v 17 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 18 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H1696"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w tell|strong="H1696"\w* \w them|strong="H1121"\w*, ‘\w When|strong="H1696"\w* \w you|strong="H1696"\w* \w come|strong="H3478"\w* into \w the|strong="H1696"\w* land \w where|strong="H8033"\w* \w I|strong="H1121"\w* bring \w you|strong="H1696"\w*, +\v 19 \w then|strong="H1961"\w* \w it|strong="H1961"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w that|strong="H3068"\w* \w when|strong="H1961"\w* \w you|strong="H1961"\w* \w eat|strong="H3899"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w bread|strong="H3899"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* land, \w you|strong="H1961"\w* \w shall|strong="H3068"\w* \w offer|strong="H7311"\w* \w up|strong="H7311"\w* \w a|strong="H3068"\w* wave \w offering|strong="H8641"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 20 \w Of|strong="H1637"\w* \w the|strong="H3651"\w* \w first|strong="H7225"\w* \w of|strong="H1637"\w* \w your|strong="H7311"\w* \w dough|strong="H6182"\w* \w you|strong="H3651"\w* shall \w offer|strong="H7311"\w* \w up|strong="H7311"\w* \w a|strong="H3068"\w* \w cake|strong="H2471"\w* \w for|strong="H3651"\w* \w a|strong="H3068"\w* wave \w offering|strong="H8641"\w*. \w As|strong="H3651"\w* \w the|strong="H3651"\w* wave \w offering|strong="H8641"\w* \w of|strong="H1637"\w* \w the|strong="H3651"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w*, \w so|strong="H3651"\w* \w you|strong="H3651"\w* shall \w heave|strong="H8641"\w* \w it|strong="H3651"\w*. +\v 21 \w Of|strong="H3068"\w* \w the|strong="H5414"\w* \w first|strong="H7225"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w dough|strong="H6182"\w*, \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w give|strong="H5414"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w a|strong="H3068"\w* wave \w offering|strong="H8641"\w* \w throughout|strong="H1755"\w* \w your|strong="H3068"\w* \w generations|strong="H1755"\w*. +\p +\v 22 “‘\w When|strong="H3588"\w* \w you|strong="H3588"\w* \w err|strong="H7686"\w*, \w and|strong="H4872"\w* don’t \w observe|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H1696"\w* \w commandments|strong="H4687"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*— +\v 23 \w even|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w* \w you|strong="H6680"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w*, \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w gave|strong="H6680"\w* \w commandment|strong="H6680"\w* \w and|strong="H4872"\w* \w onward|strong="H1973"\w* \w throughout|strong="H3605"\w* \w your|strong="H3068"\w* \w generations|strong="H1755"\w*— +\v 24 \w then|strong="H1961"\w* \w it|strong="H6213"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w*, \w if|strong="H1961"\w* \w it|strong="H6213"\w* \w was|strong="H3068"\w* \w done|strong="H6213"\w* \w unwittingly|strong="H7684"\w*, \w without|strong="H6499"\w* \w the|strong="H3605"\w* \w knowledge|strong="H5869"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w*, \w that|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w shall|strong="H3068"\w* \w offer|strong="H6213"\w* \w one|strong="H3605"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w* \w for|strong="H6213"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, \w for|strong="H6213"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w with|strong="H3068"\w* \w its|strong="H3605"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w and|strong="H1121"\w* \w its|strong="H3605"\w* \w drink|strong="H5262"\w* \w offering|strong="H4503"\w*, \w according|strong="H4941"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w ordinance|strong="H4941"\w*, \w and|strong="H1121"\w* \w one|strong="H3605"\w* \w male|strong="H8163"\w* \w goat|strong="H5795"\w* \w for|strong="H6213"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H4503"\w*. +\v 25 \w The|strong="H3605"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w they|strong="H1992"\w* \w shall|strong="H3548"\w* \w be|strong="H3068"\w* \w forgiven|strong="H5545"\w*; \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w was|strong="H3068"\w* \w an|strong="H3588"\w* \w error|strong="H7684"\w*, \w and|strong="H1121"\w* \w they|strong="H1992"\w* \w have|strong="H3068"\w* \w brought|strong="H3548"\w* \w their|strong="H3605"\w* \w offering|strong="H2403"\w*, \w an|strong="H3588"\w* \w offering|strong="H2403"\w* \w made|strong="H3722"\w* \w by|strong="H5921"\w* fire \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H1121"\w* \w their|strong="H3605"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w for|strong="H3588"\w* \w their|strong="H3605"\w* \w error|strong="H7684"\w*. +\v 26 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w forgiven|strong="H5545"\w*, \w as|strong="H3588"\w* well \w as|strong="H3588"\w* \w the|strong="H3605"\w* \w stranger|strong="H1616"\w* \w who|strong="H3605"\w* \w lives|strong="H1481"\w* \w as|strong="H3588"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1121"\w* \w among|strong="H8432"\w* \w them|strong="H8432"\w*; \w for|strong="H3588"\w* \w with|strong="H5971"\w* regard \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w it|strong="H3588"\w* \w was|strong="H3478"\w* \w done|strong="H3478"\w* \w unwittingly|strong="H7684"\w*. +\p +\v 27 “‘\w If|strong="H2398"\w* \w a|strong="H3068"\w* \w person|strong="H5315"\w* \w sins|strong="H2403"\w* \w unwittingly|strong="H7684"\w*, \w then|strong="H7126"\w* \w he|strong="H8141"\w* \w shall|strong="H5315"\w* \w offer|strong="H7126"\w* \w a|strong="H3068"\w* \w female|strong="H5795"\w* \w goat|strong="H5795"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1323"\w* \w for|strong="H5315"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*. +\v 28 \w The|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w soul|strong="H5315"\w* \w who|strong="H3068"\w* \w errs|strong="H2398"\w* \w when|strong="H3068"\w* \w he|strong="H3068"\w* \w sins|strong="H2398"\w* \w unwittingly|strong="H7684"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. \w He|strong="H3068"\w* \w shall|strong="H3548"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w him|strong="H6440"\w*; \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w shall|strong="H3548"\w* \w be|strong="H3068"\w* \w forgiven|strong="H5545"\w*. +\v 29 \w You|strong="H6213"\w* \w shall|strong="H1121"\w* \w have|strong="H1961"\w* \w one|strong="H1121"\w* \w law|strong="H8451"\w* \w for|strong="H6213"\w* \w him|strong="H6213"\w* \w who|strong="H1616"\w* \w does|strong="H6213"\w* \w anything|strong="H6213"\w* \w unwittingly|strong="H7684"\w*, \w for|strong="H6213"\w* \w him|strong="H6213"\w* \w who|strong="H1616"\w* \w is|strong="H3478"\w* native-born \w among|strong="H8432"\w* \w the|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w stranger|strong="H1616"\w* \w who|strong="H1616"\w* \w lives|strong="H1481"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1121"\w* \w among|strong="H8432"\w* \w them|strong="H6213"\w*. +\p +\v 30 “‘\w But|strong="H1931"\w* \w the|strong="H6213"\w* \w soul|strong="H5315"\w* \w who|strong="H1931"\w* \w does|strong="H6213"\w* \w anything|strong="H4480"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w high|strong="H6213"\w* \w hand|strong="H3027"\w*, \w whether|strong="H4480"\w* \w he|strong="H1931"\w* \w is|strong="H3068"\w* native-born \w or|strong="H4480"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1616"\w*, blasphemes \w Yahweh|strong="H3068"\w*. \w That|strong="H5971"\w* \w soul|strong="H5315"\w* \w shall|strong="H3068"\w* \w be|strong="H3027"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H4480"\w* \w among|strong="H7130"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*. +\v 31 \w Because|strong="H3588"\w* \w he|strong="H1931"\w* \w has|strong="H3068"\w* despised \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w and|strong="H3068"\w* \w has|strong="H3068"\w* \w broken|strong="H6565"\w* \w his|strong="H3068"\w* \w commandment|strong="H4687"\w*, \w that|strong="H3588"\w* \w soul|strong="H5315"\w* \w shall|strong="H3068"\w* \w be|strong="H1697"\w* \w utterly|strong="H6565"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*. \w His|strong="H3068"\w* \w iniquity|strong="H5771"\w* \w shall|strong="H3068"\w* \w be|strong="H1697"\w* \w on|strong="H3068"\w* \w him|strong="H1931"\w*.’” +\p +\v 32 \w While|strong="H1961"\w* \w the|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w in|strong="H3478"\w* \w the|strong="H3117"\w* \w wilderness|strong="H4057"\w*, \w they|strong="H3117"\w* \w found|strong="H4672"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w gathering|strong="H7197"\w* \w sticks|strong="H6086"\w* \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w*. +\v 33 \w Those|strong="H3605"\w* \w who|strong="H3605"\w* \w found|strong="H4672"\w* \w him|strong="H4672"\w* \w gathering|strong="H7197"\w* \w sticks|strong="H6086"\w* \w brought|strong="H7126"\w* \w him|strong="H4672"\w* \w to|strong="H7126"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron, \w and|strong="H4872"\w* \w to|strong="H7126"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w*. +\v 34 \w They|strong="H3588"\w* \w put|strong="H3240"\w* \w him|strong="H6213"\w* \w in|strong="H6213"\w* \w custody|strong="H4929"\w*, \w because|strong="H3588"\w* \w it|strong="H3588"\w* \w had|strong="H3588"\w* \w not|strong="H3808"\w* \w been|strong="H3808"\w* \w declared|strong="H6567"\w* \w what|strong="H4100"\w* \w should|strong="H4100"\w* \w be|strong="H3808"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w him|strong="H6213"\w*. +\p +\v 35 \w Yahweh|strong="H3068"\w* said \w to|strong="H4191"\w* \w Moses|strong="H4872"\w*, “\w The|strong="H3605"\w* \w man|strong="H4191"\w* \w shall|strong="H3068"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w shall|strong="H3068"\w* \w stone|strong="H7275"\w* \w him|strong="H4191"\w* \w with|strong="H3068"\w* stones \w outside|strong="H2351"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w*.” +\v 36 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w brought|strong="H3318"\w* \w him|strong="H6680"\w* \w outside|strong="H2351"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w*, \w and|strong="H4872"\w* \w stoned|strong="H7275"\w* \w him|strong="H6680"\w* \w to|strong="H3318"\w* \w death|strong="H4191"\w* \w with|strong="H3068"\w* stones, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\p +\v 37 \w Yahweh|strong="H3068"\w* spoke \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, saying, +\v 38 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w tell|strong="H1696"\w* \w them|strong="H5414"\w* \w that|strong="H3478"\w* \w they|strong="H5921"\w* \w should|strong="H3478"\w* \w make|strong="H6213"\w* \w themselves|strong="H6213"\w* \w fringes|strong="H6734"\w*\f + \fr 15:38 \ft or, tassels (Hebrew צִיצִ֛ת)\f* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w borders|strong="H3671"\w* \w of|strong="H1121"\w* \w their|strong="H5414"\w* garments \w throughout|strong="H1755"\w* \w their|strong="H5414"\w* \w generations|strong="H1755"\w*, \w and|strong="H1121"\w* \w that|strong="H3478"\w* \w they|strong="H5921"\w* \w put|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w fringe|strong="H6734"\w*\f + \fr 15:38 \ft or, tassel\f* \w of|strong="H1121"\w* \w each|strong="H5414"\w* border \w a|strong="H3068"\w* \w cord|strong="H6616"\w* \w of|strong="H1121"\w* \w blue|strong="H8504"\w*. +\v 39 \w It|strong="H6213"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w to|strong="H3068"\w* \w you|strong="H3605"\w* \w for|strong="H6213"\w* \w a|strong="H3068"\w* \w fringe|strong="H6734"\w*,\f + \fr 15:39 \ft or, tassel\f* \w that|strong="H7200"\w* \w you|strong="H3605"\w* \w may|strong="H1961"\w* \w see|strong="H7200"\w* \w it|strong="H6213"\w*, \w and|strong="H3068"\w* \w remember|strong="H2142"\w* \w all|strong="H3605"\w* \w Yahweh|strong="H3068"\w*’s \w commandments|strong="H4687"\w*, \w and|strong="H3068"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w*; \w and|strong="H3068"\w* \w that|strong="H7200"\w* \w you|strong="H3605"\w* don’t \w follow|strong="H8446"\w* \w your|strong="H3068"\w* \w own|strong="H1961"\w* \w heart|strong="H3824"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w own|strong="H1961"\w* \w eyes|strong="H5869"\w*, \w after|strong="H1961"\w* \w which|strong="H3068"\w* \w you|strong="H3605"\w* \w used|strong="H6213"\w* \w to|strong="H3068"\w* \w play|strong="H2181"\w* \w the|strong="H3605"\w* \w prostitute|strong="H2181"\w*; +\v 40 \w so|strong="H4616"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w may|strong="H1961"\w* \w remember|strong="H2142"\w* \w and|strong="H6213"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w commandments|strong="H4687"\w*, \w and|strong="H6213"\w* \w be|strong="H1961"\w* \w holy|strong="H6918"\w* \w to|strong="H1961"\w* \w your|strong="H3605"\w* God. +\v 41 \w I|strong="H4714"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w who|strong="H3068"\w* \w brought|strong="H3318"\w* \w you|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w to|strong="H3318"\w* \w be|strong="H1961"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*: \w I|strong="H4714"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*.” +\c 16 +\p +\v 1 \w Now|strong="H3947"\w* \w Korah|strong="H7141"\w*, \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Izhar|strong="H3324"\w*, \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kohath|strong="H6955"\w*, \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w*, \w with|strong="H3947"\w* \w Dathan|strong="H1885"\w* \w and|strong="H1121"\w* Abiram, \w the|strong="H3947"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Eliab, \w and|strong="H1121"\w* On, \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Peleth|strong="H6431"\w*, \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w*, \w took|strong="H3947"\w* some \w men|strong="H1121"\w*. +\v 2 \w They|strong="H3478"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w before|strong="H6440"\w* \w Moses|strong="H4872"\w*, \w with|strong="H6440"\w* some \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w* \w princes|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w congregation|strong="H5712"\w*, \w called|strong="H8034"\w* \w to|strong="H3478"\w* \w the|strong="H6440"\w* \w assembly|strong="H5712"\w*, \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w renown|strong="H8034"\w*. +\v 3 \w They|strong="H3588"\w* \w assembled|strong="H6950"\w* \w themselves|strong="H5921"\w* \w together|strong="H6950"\w* \w against|strong="H5921"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* \w against|strong="H5921"\w* Aaron, \w and|strong="H4872"\w* said \w to|strong="H3068"\w* \w them|strong="H5921"\w*, “\w You|strong="H3588"\w* \w take|strong="H5375"\w* \w too|strong="H5921"\w* \w much|strong="H7227"\w* \w on|strong="H5921"\w* \w yourself|strong="H5921"\w*, \w since|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w are|strong="H3068"\w* \w holy|strong="H6918"\w*, \w everyone|strong="H3605"\w* \w of|strong="H3068"\w* \w them|strong="H5921"\w*, \w and|strong="H4872"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w among|strong="H8432"\w* \w them|strong="H5921"\w*! \w Why|strong="H4069"\w* \w do|strong="H3068"\w* \w you|strong="H3588"\w* \w lift|strong="H5375"\w* \w yourselves|strong="H8432"\w* \w up|strong="H5375"\w* \w above|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w assembly|strong="H6951"\w*?” +\p +\v 4 \w When|strong="H8085"\w* \w Moses|strong="H4872"\w* \w heard|strong="H8085"\w* \w it|strong="H5921"\w*, \w he|strong="H5921"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w his|strong="H8085"\w* \w face|strong="H6440"\w*. +\v 5 \w He|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Korah|strong="H7141"\w* \w and|strong="H3068"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w company|strong="H5712"\w*, “\w In|strong="H3068"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w*, \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w show|strong="H3045"\w* \w who|strong="H3605"\w* \w are|strong="H3068"\w* \w his|strong="H3605"\w*, \w and|strong="H3068"\w* \w who|strong="H3605"\w* \w is|strong="H3068"\w* \w holy|strong="H6918"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* cause \w him|strong="H3605"\w* \w to|strong="H1696"\w* \w come|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H1696"\w* \w him|strong="H3605"\w*. \w Even|strong="H3068"\w* \w him|strong="H3605"\w* whom \w he|strong="H3068"\w* \w shall|strong="H3068"\w* choose, \w he|strong="H3068"\w* \w will|strong="H3068"\w* cause \w to|strong="H1696"\w* \w come|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H1696"\w* \w him|strong="H3605"\w*. +\v 6 \w Do|strong="H6213"\w* \w this|strong="H2063"\w*: \w have|strong="H3605"\w* \w Korah|strong="H7141"\w* \w and|strong="H6213"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w company|strong="H5712"\w* \w take|strong="H3947"\w* \w censers|strong="H4289"\w*, +\v 7 \w put|strong="H5414"\w* fire \w in|strong="H5921"\w* \w them|strong="H5414"\w*, \w and|strong="H1121"\w* \w put|strong="H5414"\w* \w incense|strong="H7004"\w* \w on|strong="H5921"\w* \w them|strong="H5414"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w tomorrow|strong="H4279"\w*. \w It|strong="H5414"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w that|strong="H1931"\w* \w the|strong="H6440"\w* \w man|strong="H1121"\w* \w whom|strong="H6440"\w* \w Yahweh|strong="H3068"\w* chooses, \w he|strong="H1931"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w holy|strong="H6918"\w*. \w You|strong="H5414"\w* \w have|strong="H1961"\w* \w gone|strong="H3068"\w* \w too|strong="H5921"\w* \w far|strong="H5921"\w*, \w you|strong="H5414"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w*!” +\p +\v 8 \w Moses|strong="H4872"\w* \w said|strong="H8085"\w* \w to|strong="H8085"\w* \w Korah|strong="H7141"\w*, “\w Hear|strong="H8085"\w* \w now|strong="H4994"\w*, \w you|strong="H4994"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w*! +\v 9 \w Is|strong="H3068"\w* \w it|strong="H7126"\w* \w a|strong="H3068"\w* \w small|strong="H4592"\w* \w thing|strong="H4592"\w* \w to|strong="H3478"\w* \w you|strong="H3588"\w* \w that|strong="H3588"\w* \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w has|strong="H3068"\w* separated \w you|strong="H3588"\w* \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w congregation|strong="H5712"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w bring|strong="H7126"\w* \w you|strong="H3588"\w* \w near|strong="H7126"\w* \w to|strong="H3478"\w* \w himself|strong="H6440"\w*, \w to|strong="H3478"\w* \w do|strong="H5647"\w* \w the|strong="H6440"\w* \w service|strong="H5656"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w tabernacle|strong="H4908"\w*, \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w congregation|strong="H5712"\w* \w to|strong="H3478"\w* \w minister|strong="H8334"\w* \w to|strong="H3478"\w* \w them|strong="H6440"\w*; +\v 10 \w and|strong="H1121"\w* \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w has|strong="H1571"\w* \w brought|strong="H7126"\w* \w you|strong="H3605"\w* \w near|strong="H7126"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w brothers|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w* \w with|strong="H3605"\w* \w you|strong="H3605"\w*? \w Do|strong="H3605"\w* \w you|strong="H3605"\w* \w seek|strong="H1245"\w* \w the|strong="H3605"\w* \w priesthood|strong="H3550"\w* \w also|strong="H1571"\w*? +\v 11 \w Therefore|strong="H3651"\w* \w you|strong="H3588"\w* \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w company|strong="H5712"\w* \w have|strong="H3068"\w* \w gathered|strong="H3259"\w* \w together|strong="H3259"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*! \w What|strong="H4100"\w* \w is|strong="H3068"\w* Aaron \w that|strong="H3588"\w* \w you|strong="H3588"\w* complain \w against|strong="H5921"\w* \w him|strong="H5921"\w*?” +\p +\v 12 \w Moses|strong="H4872"\w* \w sent|strong="H7971"\w* \w to|strong="H7971"\w* \w call|strong="H7121"\w* \w Dathan|strong="H1885"\w* \w and|strong="H1121"\w* Abiram, \w the|strong="H7121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Eliab; \w and|strong="H1121"\w* \w they|strong="H3808"\w* \w said|strong="H7121"\w*, “We won’t \w come|strong="H5927"\w* \w up|strong="H5927"\w*! +\v 13 \w Is|strong="H1571"\w* \w it|strong="H5921"\w* \w a|strong="H3068"\w* \w small|strong="H4592"\w* \w thing|strong="H4592"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1571"\w* \w brought|strong="H5927"\w* \w us|strong="H5921"\w* \w up|strong="H5927"\w* \w out|strong="H5921"\w* \w of|strong="H4057"\w* \w a|strong="H3068"\w* land \w flowing|strong="H2100"\w* \w with|strong="H2100"\w* \w milk|strong="H2461"\w* \w and|strong="H2461"\w* \w honey|strong="H1706"\w*, \w to|strong="H4191"\w* \w kill|strong="H4191"\w* \w us|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w must|strong="H4191"\w* \w also|strong="H1571"\w* \w make|strong="H8323"\w* \w yourself|strong="H5921"\w* \w a|strong="H3068"\w* \w prince|strong="H8323"\w* \w over|strong="H5921"\w* \w us|strong="H5921"\w*? +\v 14 Moreover \w you|strong="H5414"\w* haven’t \w brought|strong="H5927"\w* \w us|strong="H5414"\w* \w into|strong="H5927"\w* \w a|strong="H3068"\w* \w land|strong="H7704"\w* \w flowing|strong="H2100"\w* \w with|strong="H2100"\w* \w milk|strong="H2461"\w* \w and|strong="H5869"\w* \w honey|strong="H1706"\w*, \w nor|strong="H3808"\w* \w given|strong="H5414"\w* \w us|strong="H5414"\w* \w inheritance|strong="H5159"\w* \w of|strong="H5869"\w* \w fields|strong="H7704"\w* \w and|strong="H5869"\w* \w vineyards|strong="H3754"\w*. \w Will|strong="H5869"\w* \w you|strong="H5414"\w* \w put|strong="H5414"\w* \w out|strong="H5414"\w* \w the|strong="H5414"\w* \w eyes|strong="H5869"\w* \w of|strong="H5869"\w* \w these|strong="H1992"\w* \w men|strong="H1992"\w*? We won’t \w come|strong="H5927"\w* \w up|strong="H5927"\w*.” +\p +\v 15 \w Moses|strong="H4872"\w* \w was|strong="H3068"\w* \w very|strong="H3966"\w* \w angry|strong="H2734"\w*, \w and|strong="H4872"\w* said \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, “Don’t \w respect|strong="H6437"\w* \w their|strong="H3068"\w* \w offering|strong="H4503"\w*. \w I|strong="H3808"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w taken|strong="H5375"\w* \w one|strong="H3808"\w* \w donkey|strong="H2543"\w* \w from|strong="H3068"\w* \w them|strong="H1992"\w*, \w neither|strong="H3808"\w* \w have|strong="H3068"\w* \w I|strong="H3808"\w* \w hurt|strong="H7489"\w* \w one|strong="H3808"\w* \w of|strong="H3068"\w* \w them|strong="H1992"\w*.” +\p +\v 16 \w Moses|strong="H4872"\w* said \w to|strong="H3068"\w* \w Korah|strong="H7141"\w*, “\w You|strong="H6440"\w* \w and|strong="H4872"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w company|strong="H5712"\w* \w go|strong="H1961"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w you|strong="H6440"\w*, \w and|strong="H4872"\w* \w they|strong="H1992"\w*, \w and|strong="H4872"\w* Aaron, \w tomorrow|strong="H4279"\w*. +\v 17 \w Each|strong="H5414"\w* \w man|strong="H6440"\w* \w take|strong="H3947"\w* \w his|strong="H5414"\w* \w censer|strong="H4289"\w* \w and|strong="H3967"\w* \w put|strong="H5414"\w* \w incense|strong="H7004"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w*, \w and|strong="H3967"\w* \w each|strong="H5414"\w* \w man|strong="H6440"\w* \w bring|strong="H7126"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H5414"\w* \w censer|strong="H4289"\w*, \w two|strong="H3947"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w* \w censers|strong="H4289"\w*; \w you|strong="H5414"\w* \w also|strong="H3068"\w*, \w and|strong="H3967"\w* Aaron, \w each|strong="H5414"\w* \w with|strong="H3068"\w* \w his|strong="H5414"\w* \w censer|strong="H4289"\w*.” +\p +\v 18 \w They|strong="H5921"\w* \w each|strong="H5414"\w* \w took|strong="H3947"\w* \w his|strong="H5414"\w* \w censer|strong="H4289"\w*, \w and|strong="H4872"\w* \w put|strong="H5414"\w* fire \w in|strong="H5921"\w* \w it|strong="H5414"\w*, \w and|strong="H4872"\w* \w laid|strong="H7760"\w* \w incense|strong="H7004"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w*, \w and|strong="H4872"\w* \w stood|strong="H5975"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w door|strong="H6607"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* Tent \w of|strong="H5921"\w* \w Meeting|strong="H4150"\w* \w with|strong="H5921"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron. +\v 19 \w Korah|strong="H7141"\w* \w assembled|strong="H6950"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w opposite|strong="H5921"\w* \w them|strong="H5921"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*. +\p \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w appeared|strong="H7200"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w*. +\v 20 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* \w to|strong="H1696"\w* Aaron, \w saying|strong="H1696"\w*, +\v 21 “Separate \w yourselves|strong="H8432"\w* \w from|strong="H8432"\w* \w among|strong="H8432"\w* \w this|strong="H2063"\w* \w congregation|strong="H5712"\w*, \w that|strong="H2063"\w* \w I|strong="H8432"\w* may \w consume|strong="H3615"\w* \w them|strong="H3615"\w* \w in|strong="H8432"\w* \w a|strong="H3068"\w* \w moment|strong="H7281"\w*!” +\p +\v 22 \w They|strong="H5921"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w their|strong="H3605"\w* \w faces|strong="H6440"\w*, \w and|strong="H6440"\w* said, “God, \w the|strong="H3605"\w* God \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w spirits|strong="H7307"\w* \w of|strong="H6440"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w*, \w shall|strong="H5712"\w* \w one|strong="H3605"\w* \w man|strong="H3605"\w* \w sin|strong="H2398"\w*, \w and|strong="H6440"\w* \w will|strong="H7307"\w* \w you|strong="H6440"\w* \w be|strong="H7307"\w* \w angry|strong="H7107"\w* \w with|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w*?” +\p +\v 23 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 24 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H5927"\w* \w congregation|strong="H5712"\w*, \w saying|strong="H1696"\w*, ‘\w Get|strong="H5927"\w* \w away|strong="H5927"\w* \w from|strong="H5927"\w* \w around|strong="H5439"\w* \w the|strong="H5927"\w* tent \w of|strong="H5712"\w* \w Korah|strong="H7141"\w*, \w Dathan|strong="H1885"\w*, \w and|strong="H5927"\w* Abiram!’” +\p +\v 25 \w Moses|strong="H4872"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w to|strong="H3478"\w* \w Dathan|strong="H1885"\w* \w and|strong="H6965"\w* Abiram; \w and|strong="H6965"\w* \w the|strong="H6965"\w* \w elders|strong="H2205"\w* \w of|strong="H2205"\w* \w Israel|strong="H3478"\w* \w followed|strong="H3212"\w* \w him|strong="H4872"\w*. +\v 26 \w He|strong="H3605"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w*, \w saying|strong="H1696"\w*, “\w Depart|strong="H5493"\w*, \w please|strong="H4994"\w*, \w from|strong="H5493"\w* \w the|strong="H3605"\w* tents \w of|strong="H5921"\w* \w these|strong="H1696"\w* \w wicked|strong="H7563"\w* \w men|strong="H7563"\w*, \w and|strong="H2403"\w* \w touch|strong="H5060"\w* \w nothing|strong="H3605"\w* \w of|strong="H5921"\w* \w theirs|strong="H5921"\w*, \w lest|strong="H6435"\w* \w you|strong="H3605"\w* \w be|strong="H7563"\w* \w consumed|strong="H5595"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w sins|strong="H2403"\w*!” +\p +\v 27 \w So|strong="H5927"\w* \w they|strong="H5921"\w* \w went|strong="H3318"\w* \w away|strong="H5927"\w* \w from|strong="H3318"\w* \w the|strong="H5921"\w* tent \w of|strong="H1121"\w* \w Korah|strong="H7141"\w*, \w Dathan|strong="H1885"\w*, \w and|strong="H1121"\w* Abiram, \w on|strong="H5921"\w* \w every|strong="H5439"\w* \w side|strong="H5439"\w*. \w Dathan|strong="H1885"\w* \w and|strong="H1121"\w* Abiram \w came|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H1121"\w* \w stood|strong="H5324"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w door|strong="H6607"\w* \w of|strong="H1121"\w* \w their|strong="H5921"\w* \w tents|strong="H4908"\w* \w with|strong="H5921"\w* \w their|strong="H5921"\w* wives, \w their|strong="H5921"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w their|strong="H5921"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*. +\p +\v 28 \w Moses|strong="H4872"\w* said, “\w Hereby|strong="H2063"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H2063"\w* \w works|strong="H4639"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H3068"\w* \w not|strong="H3808"\w* \w from|strong="H7971"\w* \w my|strong="H3605"\w* own \w mind|strong="H3820"\w*. +\v 29 If \w these|strong="H3605"\w* \w men|strong="H3605"\w* \w die|strong="H4191"\w* \w the|strong="H3605"\w* common \w death|strong="H4194"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w men|strong="H3605"\w*, \w or|strong="H3808"\w* if \w they|strong="H3068"\w* experience \w what|strong="H5921"\w* \w all|strong="H3605"\w* \w men|strong="H3605"\w* experience, \w then|strong="H7971"\w* \w Yahweh|strong="H3068"\w* hasn’t \w sent|strong="H7971"\w* \w me|strong="H7971"\w*. +\v 30 \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w makes|strong="H3068"\w* \w a|strong="H3068"\w* \w new|strong="H1278"\w* \w thing|strong="H2416"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* ground \w opens|strong="H6475"\w* \w its|strong="H3605"\w* \w mouth|strong="H6310"\w*, \w and|strong="H3068"\w* \w swallows|strong="H1104"\w* \w them|strong="H3381"\w* \w up|strong="H1104"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* belong \w to|strong="H3381"\w* \w them|strong="H3381"\w*, \w and|strong="H3068"\w* \w they|strong="H3588"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w alive|strong="H2416"\w* \w into|strong="H3381"\w* \w Sheol|strong="H7585"\w*,\f + \fr 16:30 \ft Sheol is the place of the dead.\f* \w then|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w understand|strong="H3045"\w* \w that|strong="H3588"\w* \w these|strong="H3605"\w* \w men|strong="H3605"\w* \w have|strong="H3068"\w* \w despised|strong="H5006"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 31 \w As|strong="H1697"\w* \w he|strong="H3605"\w* \w finished|strong="H3615"\w* \w speaking|strong="H1696"\w* \w all|strong="H3605"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w*, \w the|strong="H3605"\w* ground \w that|strong="H3605"\w* \w was|strong="H1961"\w* \w under|strong="H8478"\w* \w them|strong="H3615"\w* \w split|strong="H1234"\w* apart. +\v 32 \w The|strong="H3605"\w* earth \w opened|strong="H6605"\w* \w its|strong="H3605"\w* \w mouth|strong="H6310"\w* \w and|strong="H1004"\w* \w swallowed|strong="H1104"\w* \w them|strong="H1104"\w* \w up|strong="H1104"\w* \w with|strong="H1004"\w* \w their|strong="H3605"\w* \w households|strong="H1004"\w*, \w all|strong="H3605"\w* \w of|strong="H1004"\w* \w Korah|strong="H7141"\w*’s \w men|strong="H3605"\w*, \w and|strong="H1004"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w goods|strong="H7399"\w*. +\v 33 \w So|strong="H3381"\w* \w they|strong="H1992"\w*, \w and|strong="H3381"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* belonged \w to|strong="H3381"\w* \w them|strong="H1992"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w alive|strong="H2416"\w* \w into|strong="H3381"\w* \w Sheol|strong="H7585"\w*.\f + \fr 16:33 \ft Sheol is the place of the dead.\f* \w The|strong="H3605"\w* earth \w closed|strong="H3680"\w* \w on|strong="H5921"\w* \w them|strong="H1992"\w*, \w and|strong="H3381"\w* \w they|strong="H1992"\w* perished \w from|strong="H3381"\w* \w among|strong="H8432"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w*. +\v 34 \w All|strong="H3605"\w* \w Israel|strong="H3478"\w* \w that|strong="H3588"\w* \w were|strong="H3478"\w* \w around|strong="H5439"\w* \w them|strong="H5439"\w* \w fled|strong="H5127"\w* \w at|strong="H3478"\w* \w their|strong="H3605"\w* \w cry|strong="H6963"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* said, “\w Lest|strong="H6435"\w* \w the|strong="H3605"\w* earth \w swallow|strong="H1104"\w* \w us|strong="H5439"\w* \w up|strong="H1104"\w*!” +\v 35 Fire \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3967"\w* devoured \w the|strong="H3068"\w* \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w* men \w who|strong="H3068"\w* \w offered|strong="H7126"\w* \w the|strong="H3068"\w* \w incense|strong="H7004"\w*. +\p +\v 36 \w Yahweh|strong="H3068"\w* spoke to Moses, saying, +\v 37 “Speak to Eleazar the son of Aaron the priest, that he take up the censers out of the burning, and scatter the fire away from the camp; for they are holy, +\v 38 even the censers of those who sinned against their own lives. Let them be beaten into plates for \w a|strong="H3068"\w* covering of the altar, for they offered them before \w Yahweh|strong="H3068"\w*. Therefore they are holy. They shall be \w a|strong="H3068"\w* sign to the children of Israel.” +\p +\v 39 Eleazar the priest took the bronze censers which those who were burned had offered; and they beat them out for \w a|strong="H3068"\w* covering of the altar, +\v 40 to be \w a|strong="H3068"\w* memorial to the children of Israel, to the end that no stranger who isn’t of the offspring of Aaron, would come near to burn incense before \w Yahweh|strong="H3068"\w*, that he not be as Korah and as his company; as \w Yahweh|strong="H3068"\w* spoke to him by Moses. +\p +\v 41 But on the next day all the congregation of the children of Israel complained against Moses and against Aaron, saying, “You have killed \w Yahweh|strong="H3068"\w*’s people!” +\p +\v 42 When the congregation was assembled against Moses and against Aaron, they looked toward the Tent of Meeting. Behold, the cloud covered it, and \w Yahweh|strong="H3068"\w*’s glory appeared. +\v 43 Moses and Aaron came to the front of the Tent of Meeting. +\v 44 \w Yahweh|strong="H3068"\w* spoke to Moses, saying, +\v 45 “Get away from among this congregation, that I may consume them in \w a|strong="H3068"\w* moment!” They fell on their faces. +\p +\v 46 Moses said to Aaron, “Take your censer, put fire from the altar in it, lay incense on it, carry it quickly to the congregation, and make atonement for them; for wrath has gone out from \w Yahweh|strong="H3068"\w*! The plague has begun.” +\p +\v 47 Aaron did as Moses said, and ran into the middle of the assembly. The plague had already begun among the people. He put on the incense, and made atonement for the people. +\v 48 He stood between the dead and the living; and the plague was stayed. +\v 49 Now those who died by the plague were fourteen thousand seven hundred, in addition to those who died about the matter of Korah. +\v 50 Aaron returned to Moses to the door of the Tent of Meeting, and the plague was stopped. +\c 17 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “Speak \w to|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Israel, \w and|strong="H1121"\w* \w take|strong="H7311"\w* rods \w from|strong="H1121"\w* \w them|strong="H6942"\w*, \w one|strong="H1121"\w* \w for|strong="H3588"\w* each fathers’ house, \w of|strong="H1121"\w* \w all|strong="H2219"\w* \w their|strong="H3588"\w* \w princes|strong="H3548"\w* according \w to|strong="H1121"\w* \w their|strong="H3588"\w* fathers’ houses, twelve rods. Write each \w man|strong="H1121"\w*’s name \w on|strong="H1973"\w* \w his|strong="H3588"\w* rod. +\v 3 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* write Aaron’s name \w on|strong="H3068"\w* Levi’s rod. \w There|strong="H1961"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w one|strong="H1121"\w* rod \w for|strong="H3588"\w* each \w head|strong="H6440"\w* \w of|strong="H1121"\w* \w their|strong="H3068"\w* fathers’ houses. +\v 4 \w You|strong="H3947"\w* \w shall|strong="H3548"\w* \w lay|strong="H7126"\w* \w them|strong="H7126"\w* \w up|strong="H8313"\w* \w in|strong="H4196"\w* \w the|strong="H3947"\w* Tent \w of|strong="H4196"\w* Meeting before \w the|strong="H3947"\w* covenant, where \w I|strong="H7126"\w* meet \w with|strong="H8313"\w* \w you|strong="H3947"\w*. +\v 5 \w It|strong="H1931"\w* \w shall|strong="H3068"\w* \w happen|strong="H1961"\w* \w that|strong="H1931"\w* \w the|strong="H6440"\w* rod \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w man|strong="H1121"\w* \w whom|strong="H6440"\w* \w I|strong="H3808"\w* \w shall|strong="H3068"\w* choose \w shall|strong="H3068"\w* bud. \w I|strong="H3808"\w* \w will|strong="H3068"\w* \w make|strong="H3027"\w* \w the|strong="H6440"\w* murmurings \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w which|strong="H1931"\w* \w they|strong="H3068"\w* murmur \w against|strong="H6440"\w* \w you|strong="H6440"\w*, cease \w from|strong="H6440"\w* \w me|strong="H6440"\w*.” +\p +\v 6 \w Moses|strong="H4872"\w* spoke \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* princes \w gave|strong="H4872"\w* \w him|strong="H5921"\w* rods, \w for|strong="H5921"\w* \w each|strong="H3605"\w* prince \w one|strong="H3605"\w*, \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w their|strong="H3605"\w* fathers’ houses, \w a|strong="H3068"\w* \w total|strong="H3605"\w* \w of|strong="H1121"\w* twelve rods. Aaron’s rod \w was|strong="H3068"\w* \w among|strong="H5921"\w* \w their|strong="H3605"\w* rods. +\v 7 \w Moses|strong="H4872"\w* \w laid|strong="H4872"\w* \w up|strong="H7200"\w* \w the|strong="H5921"\w* rods \w before|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* Tent \w of|strong="H3068"\w* \w the|strong="H5921"\w* Testimony. +\p +\v 8 \w On|strong="H6440"\w* \w the|strong="H6440"\w* next \w day|strong="H4872"\w*, \w Moses|strong="H4872"\w* \w went|strong="H4872"\w* into \w the|strong="H6440"\w* Tent \w of|strong="H6440"\w* \w the|strong="H6440"\w* Testimony; \w and|strong="H4872"\w* behold, Aaron’s rod \w for|strong="H6440"\w* \w the|strong="H6440"\w* house \w of|strong="H6440"\w* Levi \w had|strong="H4872"\w* sprouted, budded, produced blossoms, \w and|strong="H4872"\w* bore ripe almonds. +\v 9 \w Moses|strong="H4872"\w* \w brought|strong="H4872"\w* \w out|strong="H1696"\w* \w all|strong="H3068"\w* \w the|strong="H3068"\w* rods \w from|strong="H3068"\w* before \w Yahweh|strong="H3068"\w* \w to|strong="H1696"\w* \w all|strong="H3068"\w* \w the|strong="H3068"\w* children \w of|strong="H3068"\w* Israel. \w They|strong="H3068"\w* \w looked|strong="H3068"\w*, \w and|strong="H4872"\w* each man took \w his|strong="H3068"\w* rod. +\p +\v 10 \w Yahweh|strong="H3068"\w* said \w to|strong="H5921"\w* Moses, “\w Put|strong="H3615"\w* back \w the|strong="H6440"\w* rod \w of|strong="H6440"\w* Aaron \w before|strong="H6440"\w* \w the|strong="H6440"\w* covenant, \w to|strong="H5921"\w* \w be|strong="H6440"\w* kept \w for|strong="H5921"\w* \w a|strong="H3068"\w* token \w against|strong="H5921"\w* \w the|strong="H6440"\w* children \w of|strong="H6440"\w* rebellion; \w that|strong="H5307"\w* \w you|strong="H6440"\w* \w may|strong="H5307"\w* \w make|strong="H3615"\w* \w an|strong="H6440"\w* \w end|strong="H3615"\w* \w of|strong="H6440"\w* \w their|strong="H6440"\w* complaining \w against|strong="H5921"\w* \w me|strong="H6440"\w*, \w that|strong="H5307"\w* \w they|strong="H5921"\w* \w not|strong="H6440"\w* \w die|strong="H5307"\w*.” +\v 11 \w Moses|strong="H4872"\w* \w did|strong="H3068"\w* \w so|strong="H3947"\w*. \w As|strong="H3068"\w* \w Yahweh|strong="H3068"\w* commanded \w him|strong="H5414"\w*, \w so|strong="H3947"\w* \w he|strong="H3588"\w* \w did|strong="H3068"\w*. +\p +\v 12 \w The|strong="H5921"\w* children \w of|strong="H8432"\w* \w Israel|strong="H5971"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, “\w Behold|strong="H2009"\w*, \w we|strong="H3068"\w* perish! \w We|strong="H2009"\w* \w are|strong="H5971"\w* undone! \w We|strong="H2009"\w* \w are|strong="H5971"\w* \w all|strong="H5414"\w* undone! +\v 13 Everyone \w who|strong="H5975"\w* keeps approaching \w Yahweh|strong="H3068"\w*’s tabernacle, \w dies|strong="H4191"\w*! \w Will|strong="H2416"\w* \w we|strong="H3068"\w* \w all|strong="H4191"\w* perish?” +\c 18 +\p +\v 1 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* Aaron, “\w You|strong="H5375"\w* \w and|strong="H1121"\w* \w your|strong="H3068"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w your|strong="H3068"\w* fathers’ \w house|strong="H1004"\w* \w with|strong="H1004"\w* \w you|strong="H5375"\w* \w shall|strong="H3068"\w* \w bear|strong="H5375"\w* \w the|strong="H5375"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1121"\w* \w the|strong="H5375"\w* \w sanctuary|strong="H4720"\w*; \w and|strong="H1121"\w* \w you|strong="H5375"\w* \w and|strong="H1121"\w* \w your|strong="H3068"\w* \w sons|strong="H1121"\w* \w with|strong="H1004"\w* \w you|strong="H5375"\w* \w shall|strong="H3068"\w* \w bear|strong="H5375"\w* \w the|strong="H5375"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* \w priesthood|strong="H3550"\w*. +\v 2 \w Bring|strong="H7126"\w* \w your|strong="H5921"\w* \w brothers|strong="H1121"\w* \w also|strong="H1571"\w*, \w the|strong="H6440"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w*, \w the|strong="H6440"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w your|strong="H5921"\w* \w father|strong="H1121"\w*, \w near|strong="H7126"\w* \w with|strong="H5921"\w* \w you|strong="H6440"\w*, \w that|strong="H1121"\w* \w they|strong="H5921"\w* \w may|strong="H1121"\w* \w be|strong="H1121"\w* \w joined|strong="H3867"\w* \w to|strong="H5921"\w* \w you|strong="H6440"\w*, \w and|strong="H1121"\w* \w minister|strong="H8334"\w* \w to|strong="H5921"\w* \w you|strong="H6440"\w*; \w but|strong="H1571"\w* \w you|strong="H6440"\w* \w and|strong="H1121"\w* \w your|strong="H5921"\w* \w sons|strong="H1121"\w* \w with|strong="H5921"\w* \w you|strong="H6440"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* Tent \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w Testimony|strong="H5715"\w*. +\v 3 \w They|strong="H1992"\w* \w shall|strong="H3808"\w* \w keep|strong="H8104"\w* \w your|strong="H3605"\w* commands \w and|strong="H4196"\w* \w the|strong="H3605"\w* \w duty|strong="H4931"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* Tent; \w only|strong="H3605"\w* \w they|strong="H1992"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w come|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H4191"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w* \w and|strong="H4196"\w* \w to|strong="H4191"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*, \w that|strong="H3605"\w* \w they|strong="H1992"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*, \w neither|strong="H3808"\w* \w they|strong="H1992"\w* \w nor|strong="H3808"\w* \w you|strong="H3605"\w*. +\v 4 \w They|strong="H3808"\w* \w shall|strong="H3808"\w* \w be|strong="H3808"\w* \w joined|strong="H3867"\w* \w to|strong="H5921"\w* \w you|strong="H3605"\w* \w and|strong="H7126"\w* \w keep|strong="H8104"\w* \w the|strong="H3605"\w* \w responsibility|strong="H5921"\w* \w of|strong="H5921"\w* \w the|strong="H3605"\w* Tent \w of|strong="H5921"\w* \w Meeting|strong="H4150"\w*, \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w of|strong="H5921"\w* \w the|strong="H3605"\w* Tent. \w A|strong="H3068"\w* \w stranger|strong="H2114"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w come|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H5921"\w* \w you|strong="H3605"\w*. +\p +\v 5 “\w You|strong="H5921"\w* \w shall|strong="H1121"\w* \w perform|strong="H8104"\w* \w the|strong="H5921"\w* \w duty|strong="H4931"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sanctuary|strong="H6944"\w* \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w duty|strong="H4931"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*, \w that|strong="H3478"\w* \w there|strong="H1961"\w* \w be|strong="H1961"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w wrath|strong="H7110"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 6 \w Behold|strong="H2009"\w*, \w I|strong="H5414"\w* myself \w have|strong="H3068"\w* \w taken|strong="H3947"\w* \w your|strong="H3068"\w* \w brothers|strong="H1121"\w* \w the|strong="H5414"\w* \w Levites|strong="H3881"\w* \w from|strong="H3478"\w* \w among|strong="H8432"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w They|strong="H3068"\w* \w are|strong="H1121"\w* \w a|strong="H3068"\w* \w gift|strong="H4979"\w* \w to|strong="H3478"\w* \w you|strong="H5414"\w*, \w dedicated|strong="H5414"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w to|strong="H3478"\w* \w do|strong="H5647"\w* \w the|strong="H5414"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*. +\v 7 \w You|strong="H5414"\w* \w and|strong="H1121"\w* \w your|strong="H3605"\w* \w sons|strong="H1121"\w* \w with|strong="H1004"\w* \w you|strong="H5414"\w* \w shall|strong="H1121"\w* \w keep|strong="H8104"\w* \w your|strong="H3605"\w* \w priesthood|strong="H3550"\w* \w for|strong="H1004"\w* \w everything|strong="H3605"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*, \w and|strong="H1121"\w* \w for|strong="H1004"\w* \w that|strong="H3605"\w* \w within|strong="H1004"\w* \w the|strong="H3605"\w* \w veil|strong="H6532"\w*. \w You|strong="H5414"\w* \w shall|strong="H1121"\w* \w serve|strong="H5647"\w*. \w I|strong="H5414"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w priesthood|strong="H3550"\w* \w as|strong="H1697"\w* \w a|strong="H3068"\w* \w gift|strong="H4979"\w*. \w The|strong="H3605"\w* \w stranger|strong="H2114"\w* \w who|strong="H3605"\w* \w comes|strong="H7126"\w* \w near|strong="H7126"\w* \w shall|strong="H1121"\w* \w be|strong="H4191"\w* \w put|strong="H5414"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*.” +\p +\v 8 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* Aaron, “\w Behold|strong="H2009"\w*, \w I|strong="H5414"\w* myself \w have|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w* \w the|strong="H3605"\w* command \w of|strong="H1121"\w* \w my|strong="H5414"\w* wave \w offerings|strong="H8641"\w*, \w even|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w holy|strong="H6918"\w* \w things|strong="H3605"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w given|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H1696"\w* \w you|strong="H5414"\w* \w by|strong="H3068"\w* reason \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w anointing|strong="H4888"\w*, \w and|strong="H1121"\w* \w to|strong="H1696"\w* \w your|strong="H3068"\w* \w sons|strong="H1121"\w*, \w as|strong="H3068"\w* \w a|strong="H3068"\w* \w portion|strong="H2706"\w* \w forever|strong="H5769"\w*. +\v 9 \w This|strong="H2088"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* yours \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* fire: \w every|strong="H3605"\w* \w offering|strong="H4503"\w* \w of|strong="H1121"\w* \w theirs|strong="H4480"\w*, even \w every|strong="H3605"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w of|strong="H1121"\w* \w theirs|strong="H4480"\w*, \w and|strong="H1121"\w* \w every|strong="H3605"\w* \w sin|strong="H2403"\w* \w offering|strong="H4503"\w* \w of|strong="H1121"\w* \w theirs|strong="H4480"\w*, \w and|strong="H1121"\w* \w every|strong="H3605"\w* trespass \w offering|strong="H4503"\w* \w of|strong="H1121"\w* \w theirs|strong="H4480"\w*, \w which|strong="H1931"\w* \w they|strong="H1931"\w* \w shall|strong="H1121"\w* \w give|strong="H7725"\w* \w to|strong="H7725"\w* \w me|strong="H7725"\w*, \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w for|strong="H1121"\w* \w you|strong="H3605"\w* \w and|strong="H1121"\w* \w for|strong="H1121"\w* \w your|strong="H3605"\w* \w sons|strong="H1121"\w*. +\v 10 \w You|strong="H3605"\w* \w shall|strong="H2145"\w* eat \w of|strong="H3605"\w* \w it|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H3605"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w*. \w Every|strong="H3605"\w* \w male|strong="H2145"\w* \w shall|strong="H2145"\w* eat \w of|strong="H3605"\w* \w it|strong="H1961"\w*. \w It|strong="H1961"\w* \w shall|strong="H2145"\w* \w be|strong="H1961"\w* \w holy|strong="H6944"\w* \w to|strong="H1961"\w* \w you|strong="H3605"\w*. +\p +\v 11 “\w This|strong="H2088"\w* \w is|strong="H2088"\w* \w yours|strong="H5414"\w*, too: \w the|strong="H3605"\w* \w wave|strong="H8573"\w* \w offering|strong="H8641"\w* \w of|strong="H1121"\w* \w their|strong="H3605"\w* \w gift|strong="H4976"\w*, even \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w wave|strong="H8573"\w* \w offerings|strong="H8641"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w I|strong="H5414"\w* \w have|strong="H1121"\w* \w given|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H3478"\w* \w you|strong="H5414"\w*, \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w your|strong="H3605"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w your|strong="H3605"\w* \w daughters|strong="H1323"\w* \w with|strong="H1004"\w* \w you|strong="H5414"\w*, \w as|strong="H1121"\w* \w a|strong="H3068"\w* \w portion|strong="H2706"\w* \w forever|strong="H5769"\w*. \w Everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H2088"\w* \w clean|strong="H2889"\w* \w in|strong="H3478"\w* \w your|strong="H3605"\w* \w house|strong="H1004"\w* \w shall|strong="H1121"\w* eat \w of|strong="H1121"\w* \w it|strong="H5414"\w*. +\p +\v 12 “\w I|strong="H5414"\w* \w have|strong="H3068"\w* \w given|strong="H5414"\w* \w to|strong="H3068"\w* \w you|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w best|strong="H2459"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w oil|strong="H3323"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w best|strong="H2459"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* vintage, \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w grain|strong="H1715"\w*, \w the|strong="H3605"\w* \w first|strong="H7225"\w* \w fruits|strong="H7225"\w* \w of|strong="H3068"\w* \w them|strong="H5414"\w* \w which|strong="H3068"\w* \w they|strong="H3068"\w* \w give|strong="H5414"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 13 \w The|strong="H3605"\w* first-ripe \w fruits|strong="H1061"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w their|strong="H3605"\w* land, \w which|strong="H3068"\w* \w they|strong="H3068"\w* \w bring|strong="H1961"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w shall|strong="H3068"\w* \w be|strong="H1961"\w* yours. \w Everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3068"\w* \w clean|strong="H2889"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w house|strong="H1004"\w* \w shall|strong="H3068"\w* eat \w of|strong="H1004"\w* \w it|strong="H1961"\w*. +\p +\v 14 “\w Everything|strong="H3605"\w* \w devoted|strong="H2764"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w* \w shall|strong="H3478"\w* \w be|strong="H1961"\w* yours. +\v 15 \w Everything|strong="H3605"\w* \w that|strong="H3605"\w* opens \w the|strong="H3605"\w* \w womb|strong="H7358"\w*, \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w* \w which|strong="H3068"\w* \w they|strong="H3068"\w* \w offer|strong="H7126"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w both|strong="H3605"\w* \w of|strong="H3068"\w* \w man|strong="H3605"\w* \w and|strong="H3068"\w* \w animal|strong="H1961"\w*, \w shall|strong="H3068"\w* \w be|strong="H1961"\w* yours. Nevertheless, \w you|strong="H3605"\w* \w shall|strong="H3068"\w* \w surely|strong="H1961"\w* \w redeem|strong="H6299"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w of|strong="H3068"\w* \w man|strong="H3605"\w*, \w and|strong="H3068"\w* \w you|strong="H3605"\w* \w shall|strong="H3068"\w* \w redeem|strong="H6299"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w of|strong="H3068"\w* \w unclean|strong="H2931"\w* \w animals|strong="H1961"\w*. +\v 16 You \w shall|strong="H1121"\w* \w redeem|strong="H6299"\w* \w those|strong="H1121"\w* \w who|strong="H1931"\w* \w are|strong="H1121"\w* \w to|strong="H1121"\w* \w be|strong="H1121"\w* \w redeemed|strong="H6299"\w* \w of|strong="H1121"\w* \w them|strong="H1121"\w* \w from|strong="H1121"\w* \w a|strong="H3068"\w* \w month|strong="H2320"\w* \w old|strong="H1121"\w*, \w according|strong="H3701"\w* \w to|strong="H1121"\w* \w your|strong="H3701"\w* \w estimation|strong="H6187"\w*, \w for|strong="H1121"\w* \w five|strong="H2568"\w* \w shekels|strong="H8255"\w* \w of|strong="H1121"\w* \w money|strong="H3701"\w*, \w according|strong="H3701"\w* \w to|strong="H1121"\w* \w the|strong="H1121"\w* \w shekel|strong="H8255"\w*\f + \fr 18:16 \ft A shekel is about 10 grams or about 0.35 ounces.\f* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w sanctuary|strong="H6944"\w*, \w which|strong="H1931"\w* weighs \w twenty|strong="H6242"\w* \w gerahs|strong="H1626"\w*.\f + \fr 18:16 \ft A gerah is about 0.5 grams or about 7.7 grains.\f* +\p +\v 17 “\w But|strong="H3808"\w* \w you|strong="H5921"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w redeem|strong="H6299"\w* \w the|strong="H5921"\w* \w firstborn|strong="H1060"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w cow|strong="H7794"\w*, \w or|strong="H3808"\w* \w the|strong="H5921"\w* \w firstborn|strong="H1060"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w sheep|strong="H3775"\w*, \w or|strong="H3808"\w* \w the|strong="H5921"\w* \w firstborn|strong="H1060"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w goat|strong="H5795"\w*. \w They|strong="H1992"\w* \w are|strong="H1992"\w* \w holy|strong="H6944"\w*. \w You|strong="H5921"\w* \w shall|strong="H3068"\w* \w sprinkle|strong="H2236"\w* \w their|strong="H3068"\w* \w blood|strong="H1818"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*, \w and|strong="H3068"\w* \w shall|strong="H3068"\w* \w burn|strong="H6999"\w* \w their|strong="H3068"\w* \w fat|strong="H2459"\w* \w for|strong="H5921"\w* \w an|strong="H3068"\w* \w offering|strong="H6999"\w* \w made|strong="H3068"\w* \w by|strong="H5921"\w* fire, \w for|strong="H5921"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 18 \w Their|strong="H1961"\w* \w meat|strong="H1320"\w* \w shall|strong="H1320"\w* \w be|strong="H1961"\w* yours, \w as|strong="H1961"\w* \w the|strong="H1961"\w* \w wave|strong="H8573"\w* \w offering|strong="H8573"\w* \w breast|strong="H2373"\w* \w and|strong="H3225"\w* \w as|strong="H1961"\w* \w the|strong="H1961"\w* \w right|strong="H3225"\w* \w thigh|strong="H7785"\w*, \w it|strong="H1961"\w* \w shall|strong="H1320"\w* \w be|strong="H1961"\w* yours. +\v 19 \w All|strong="H3605"\w* \w the|strong="H3605"\w* wave \w offerings|strong="H8641"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w* \w which|strong="H1931"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w offer|strong="H7311"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w* \w and|strong="H1121"\w* \w your|strong="H3068"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w your|strong="H3068"\w* \w daughters|strong="H1323"\w* \w with|strong="H3068"\w* \w you|strong="H5414"\w*, \w as|strong="H3068"\w* \w a|strong="H3068"\w* \w portion|strong="H2706"\w* \w forever|strong="H5769"\w*. \w It|strong="H5414"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w of|strong="H1121"\w* \w salt|strong="H4417"\w* \w forever|strong="H5769"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3478"\w* \w you|strong="H5414"\w* \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w your|strong="H3068"\w* \w offspring|strong="H2233"\w* \w with|strong="H3068"\w* \w you|strong="H5414"\w*.” +\p +\v 20 \w Yahweh|strong="H3068"\w* said \w to|strong="H3478"\w* Aaron, “\w You|strong="H3808"\w* \w shall|strong="H3068"\w* \w have|strong="H1961"\w* \w no|strong="H3808"\w* \w inheritance|strong="H5159"\w* \w in|strong="H3478"\w* \w their|strong="H3068"\w* \w land|strong="H5159"\w*, \w neither|strong="H3808"\w* \w shall|strong="H3068"\w* \w you|strong="H3808"\w* \w have|strong="H1961"\w* \w any|strong="H1961"\w* \w portion|strong="H2506"\w* \w among|strong="H8432"\w* \w them|strong="H8432"\w*. \w I|strong="H3808"\w* \w am|strong="H1961"\w* \w your|strong="H3068"\w* \w portion|strong="H2506"\w* \w and|strong="H1121"\w* \w your|strong="H3068"\w* \w inheritance|strong="H5159"\w* \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\p +\v 21 “\w To|strong="H3478"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w*, \w behold|strong="H2009"\w*, \w I|strong="H5414"\w* \w have|strong="H1121"\w* \w given|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tithe|strong="H4643"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w* \w for|strong="H1121"\w* \w an|strong="H5414"\w* \w inheritance|strong="H5159"\w*, \w in|strong="H3478"\w* \w return|strong="H2500"\w* \w for|strong="H1121"\w* \w their|strong="H3605"\w* \w service|strong="H5656"\w* \w which|strong="H1992"\w* \w they|strong="H1992"\w* \w serve|strong="H5647"\w*, even \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*. +\v 22 \w Henceforth|strong="H5750"\w* \w the|strong="H5375"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w come|strong="H7126"\w* \w near|strong="H7126"\w* \w the|strong="H5375"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*, lest \w they|strong="H3808"\w* \w bear|strong="H5375"\w* \w sin|strong="H2399"\w*, \w and|strong="H1121"\w* \w die|strong="H4191"\w*. +\v 23 \w But|strong="H3808"\w* \w the|strong="H5375"\w* \w Levites|strong="H3881"\w* \w shall|strong="H1121"\w* \w do|strong="H5647"\w* \w the|strong="H5375"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w the|strong="H5375"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*, \w and|strong="H1121"\w* \w they|strong="H1992"\w* \w shall|strong="H1121"\w* \w bear|strong="H5375"\w* \w their|strong="H5375"\w* \w iniquity|strong="H5771"\w*. \w It|strong="H1931"\w* \w shall|strong="H1121"\w* \w be|strong="H3808"\w* \w a|strong="H3068"\w* \w statute|strong="H2708"\w* \w forever|strong="H5769"\w* \w throughout|strong="H1755"\w* \w your|strong="H5375"\w* \w generations|strong="H1755"\w*. \w Among|strong="H8432"\w* \w the|strong="H5375"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w they|strong="H1992"\w* \w shall|strong="H1121"\w* \w have|strong="H1121"\w* \w no|strong="H3808"\w* \w inheritance|strong="H5159"\w*. +\v 24 \w For|strong="H3588"\w* \w the|strong="H5921"\w* \w tithe|strong="H4643"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w which|strong="H3068"\w* \w they|strong="H1992"\w* \w offer|strong="H7311"\w* \w as|strong="H3651"\w* \w a|strong="H3068"\w* wave \w offering|strong="H8641"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w given|strong="H5414"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w* \w for|strong="H3588"\w* \w an|strong="H5414"\w* \w inheritance|strong="H5159"\w*. \w Therefore|strong="H3651"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w said|strong="H3651"\w* \w to|strong="H3478"\w* \w them|strong="H5414"\w*, ‘\w Among|strong="H8432"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w they|strong="H1992"\w* \w shall|strong="H3068"\w* \w have|strong="H3068"\w* \w no|strong="H3808"\w* \w inheritance|strong="H5159"\w*.’” +\p +\v 25 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 26 “\w Moreover|strong="H1696"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w Levites|strong="H3881"\w*, \w and|strong="H1121"\w* \w tell|strong="H1696"\w* \w them|strong="H5414"\w*, ‘\w When|strong="H3588"\w* \w you|strong="H3588"\w* \w take|strong="H3947"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w the|strong="H3588"\w* \w tithe|strong="H4643"\w* \w which|strong="H3068"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H3588"\w* \w from|strong="H4480"\w* \w them|strong="H5414"\w* \w for|strong="H3588"\w* \w your|strong="H3068"\w* \w inheritance|strong="H5159"\w*, \w then|strong="H1696"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w offer|strong="H7311"\w* \w up|strong="H7311"\w* \w a|strong="H3068"\w* wave \w offering|strong="H8641"\w* \w of|strong="H1121"\w* \w it|strong="H5414"\w* \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, \w a|strong="H3068"\w* \w tithe|strong="H4643"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w tithe|strong="H4643"\w*. +\v 27 \w Your|strong="H4480"\w* wave \w offering|strong="H8641"\w* \w shall|strong="H3342"\w* \w be|strong="H4480"\w* \w credited|strong="H2803"\w* \w to|strong="H2803"\w* \w you|strong="H4480"\w*, \w as|strong="H2803"\w* though \w it|strong="H2803"\w* \w were|strong="H4480"\w* \w the|strong="H4480"\w* \w grain|strong="H1715"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w*, \w and|strong="H1715"\w* \w as|strong="H2803"\w* \w the|strong="H4480"\w* fullness \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w wine|strong="H3342"\w* \w press|strong="H3342"\w*. +\v 28 \w Thus|strong="H3651"\w* \w you|strong="H5414"\w* \w also|strong="H1571"\w* \w shall|strong="H3548"\w* \w offer|strong="H7311"\w* \w a|strong="H3068"\w* wave \w offering|strong="H8641"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w tithes|strong="H4643"\w*, \w which|strong="H3068"\w* \w you|strong="H5414"\w* \w receive|strong="H3947"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w it|strong="H5414"\w* \w you|strong="H5414"\w* \w shall|strong="H3548"\w* \w give|strong="H5414"\w* \w Yahweh|strong="H3068"\w*’s wave \w offering|strong="H8641"\w* \w to|strong="H3478"\w* Aaron \w the|strong="H3605"\w* \w priest|strong="H3548"\w*. +\v 29 \w Out|strong="H4480"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w gifts|strong="H4979"\w*, \w you|strong="H3605"\w* \w shall|strong="H3068"\w* \w offer|strong="H7311"\w* \w every|strong="H3605"\w* wave \w offering|strong="H8641"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w best|strong="H2459"\w* parts, \w even|strong="H3068"\w* \w the|strong="H3605"\w* \w holy|strong="H4720"\w* \w part|strong="H4480"\w* \w of|strong="H3068"\w* \w it|strong="H3068"\w*.’ +\p +\v 30 “Therefore \w you|strong="H4480"\w* \w shall|strong="H3881"\w* tell \w them|strong="H4480"\w*, ‘\w When|strong="H4480"\w* \w you|strong="H4480"\w* \w heave|strong="H7311"\w* \w its|strong="H4480"\w* \w best|strong="H2459"\w* \w from|strong="H4480"\w* \w it|strong="H2803"\w*, \w then|strong="H7311"\w* \w it|strong="H2803"\w* \w shall|strong="H3881"\w* \w be|strong="H7311"\w* \w credited|strong="H2803"\w* \w to|strong="H2803"\w* \w the|strong="H4480"\w* \w Levites|strong="H3881"\w* \w as|strong="H2803"\w* \w the|strong="H4480"\w* \w increase|strong="H8393"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w*, \w and|strong="H3881"\w* \w as|strong="H2803"\w* \w the|strong="H4480"\w* \w increase|strong="H8393"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w wine|strong="H3342"\w* \w press|strong="H3342"\w*. +\v 31 \w You|strong="H3588"\w* \w may|strong="H1004"\w* eat \w it|strong="H1931"\w* \w anywhere|strong="H3605"\w*, \w you|strong="H3588"\w* \w and|strong="H1004"\w* \w your|strong="H3605"\w* \w households|strong="H1004"\w*, \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w your|strong="H3605"\w* \w reward|strong="H7939"\w* \w in|strong="H1004"\w* \w return|strong="H2500"\w* \w for|strong="H3588"\w* \w your|strong="H3605"\w* \w service|strong="H5656"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* Tent \w of|strong="H1004"\w* \w Meeting|strong="H4150"\w*. +\v 32 \w You|strong="H5921"\w* \w shall|strong="H1121"\w* \w bear|strong="H5375"\w* \w no|strong="H3808"\w* \w sin|strong="H2399"\w* \w by|strong="H5921"\w* \w reason|strong="H5921"\w* \w of|strong="H1121"\w* \w it|strong="H5921"\w*, \w when|strong="H1121"\w* \w you|strong="H5921"\w* \w have|strong="H1121"\w* \w heaved|strong="H7311"\w* \w from|strong="H4480"\w* \w it|strong="H5921"\w* \w its|strong="H5921"\w* \w best|strong="H2459"\w*. \w You|strong="H5921"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w profane|strong="H2490"\w* \w the|strong="H5921"\w* \w holy|strong="H6918"\w* \w things|strong="H2490"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w that|strong="H2459"\w* \w you|strong="H5921"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*.’” +\c 19 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* \w to|strong="H1696"\w* Aaron, \w saying|strong="H1696"\w*, +\v 2 “\w This|strong="H2063"\w* \w is|strong="H3068"\w* \w the|strong="H5921"\w* \w statute|strong="H2708"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w law|strong="H8451"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w*. \w Tell|strong="H1696"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w to|strong="H1696"\w* \w bring|strong="H5927"\w* \w you|strong="H6680"\w* \w a|strong="H3068"\w* red \w heifer|strong="H6510"\w* \w without|strong="H3808"\w* \w spot|strong="H8549"\w*, \w in|strong="H5921"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w no|strong="H3808"\w* \w defect|strong="H8549"\w*, \w and|strong="H1121"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w never|strong="H3808"\w* yoked. +\v 3 \w You|strong="H5414"\w* \w shall|strong="H3548"\w* \w give|strong="H5414"\w* \w her|strong="H5414"\w* \w to|strong="H3318"\w* Eleazar \w the|strong="H6440"\w* \w priest|strong="H3548"\w*, \w and|strong="H3548"\w* \w he|strong="H5414"\w* \w shall|strong="H3548"\w* \w bring|strong="H3318"\w* \w her|strong="H5414"\w* \w outside|strong="H2351"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w camp|strong="H4264"\w*, \w and|strong="H3548"\w* one \w shall|strong="H3548"\w* \w kill|strong="H7819"\w* \w her|strong="H5414"\w* \w before|strong="H6440"\w* \w his|strong="H5414"\w* \w face|strong="H6440"\w*. +\v 4 Eleazar \w the|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* some \w of|strong="H6440"\w* \w her|strong="H3947"\w* \w blood|strong="H1818"\w* \w with|strong="H6440"\w* \w his|strong="H3947"\w* finger, \w and|strong="H3548"\w* \w sprinkle|strong="H5137"\w* \w her|strong="H3947"\w* \w blood|strong="H1818"\w* \w toward|strong="H6440"\w* \w the|strong="H6440"\w* \w front|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* Tent \w of|strong="H6440"\w* \w Meeting|strong="H4150"\w* \w seven|strong="H7651"\w* \w times|strong="H6471"\w*. +\v 5 \w One|strong="H1320"\w* \w shall|strong="H5869"\w* \w burn|strong="H8313"\w* \w the|strong="H5921"\w* \w heifer|strong="H6510"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w sight|strong="H5869"\w*; \w her|strong="H5921"\w* \w skin|strong="H5785"\w*, \w and|strong="H5869"\w* \w her|strong="H5921"\w* \w meat|strong="H1320"\w*, \w and|strong="H5869"\w* \w her|strong="H5921"\w* \w blood|strong="H1818"\w*, \w with|strong="H8313"\w* \w her|strong="H5921"\w* \w dung|strong="H6569"\w*, \w shall|strong="H5869"\w* \w he|strong="H5921"\w* \w burn|strong="H8313"\w*. +\v 6 \w The|strong="H3947"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* cedar \w wood|strong="H6086"\w*, hyssop, \w and|strong="H6086"\w* \w scarlet|strong="H8144"\w*, \w and|strong="H6086"\w* \w cast|strong="H7993"\w* \w it|strong="H8432"\w* \w into|strong="H8432"\w* \w the|strong="H3947"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w the|strong="H3947"\w* \w burning|strong="H8316"\w* \w of|strong="H8432"\w* \w the|strong="H3947"\w* \w heifer|strong="H6510"\w*. +\v 7 \w Then|strong="H3548"\w* \w the|strong="H5704"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w wash|strong="H3526"\w* \w his|strong="H3526"\w* clothes, \w and|strong="H3548"\w* \w he|strong="H5704"\w* \w shall|strong="H3548"\w* \w bathe|strong="H7364"\w* \w his|strong="H3526"\w* \w flesh|strong="H1320"\w* \w in|strong="H7364"\w* \w water|strong="H4325"\w*, \w and|strong="H3548"\w* afterward \w he|strong="H5704"\w* \w shall|strong="H3548"\w* come \w into|strong="H4325"\w* \w the|strong="H5704"\w* \w camp|strong="H4264"\w*, \w and|strong="H3548"\w* \w the|strong="H5704"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w be|strong="H1320"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H5704"\w* \w evening|strong="H6153"\w*. +\v 8 \w He|strong="H5704"\w* who \w burns|strong="H8313"\w* \w her|strong="H5704"\w* \w shall|strong="H4325"\w* \w wash|strong="H3526"\w* \w his|strong="H3526"\w* clothes \w in|strong="H7364"\w* \w water|strong="H4325"\w*, \w and|strong="H4325"\w* \w bathe|strong="H7364"\w* \w his|strong="H3526"\w* \w flesh|strong="H1320"\w* \w in|strong="H7364"\w* \w water|strong="H4325"\w*, \w and|strong="H4325"\w* \w shall|strong="H4325"\w* \w be|strong="H1320"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H5704"\w* \w evening|strong="H6153"\w*. +\p +\v 9 “\w A|strong="H3068"\w* \w man|strong="H1121"\w* \w who|strong="H1931"\w* \w is|strong="H1931"\w* \w clean|strong="H2889"\w* \w shall|strong="H1121"\w* gather \w up|strong="H3240"\w* \w the|strong="H1961"\w* ashes \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w heifer|strong="H6510"\w*, \w and|strong="H1121"\w* \w lay|strong="H3240"\w* \w them|strong="H1961"\w* \w up|strong="H3240"\w* \w outside|strong="H2351"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w camp|strong="H4264"\w* \w in|strong="H3478"\w* \w a|strong="H3068"\w* \w clean|strong="H2889"\w* \w place|strong="H4725"\w*; \w and|strong="H1121"\w* \w it|strong="H1931"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w kept|strong="H4931"\w* \w for|strong="H4325"\w* \w the|strong="H1961"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w for|strong="H4325"\w* \w use|strong="H1961"\w* \w in|strong="H3478"\w* \w water|strong="H4325"\w* \w for|strong="H4325"\w* cleansing \w impurity|strong="H5079"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*. +\v 10 \w He|strong="H5704"\w* \w who|strong="H1616"\w* gathers \w the|strong="H8432"\w* ashes \w of|strong="H1121"\w* \w the|strong="H8432"\w* \w heifer|strong="H6510"\w* \w shall|strong="H1121"\w* \w wash|strong="H3526"\w* \w his|strong="H3526"\w* clothes, \w and|strong="H1121"\w* \w be|strong="H1961"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w the|strong="H8432"\w* \w evening|strong="H6153"\w*. \w It|strong="H8432"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w to|strong="H5704"\w* \w the|strong="H8432"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w to|strong="H5704"\w* \w the|strong="H8432"\w* \w stranger|strong="H1616"\w* \w who|strong="H1616"\w* \w lives|strong="H1481"\w* \w as|strong="H5704"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1121"\w* \w among|strong="H8432"\w* \w them|strong="H8432"\w*, \w for|strong="H5704"\w* \w a|strong="H3068"\w* \w statute|strong="H2708"\w* \w forever|strong="H5769"\w*. +\p +\v 11 “\w He|strong="H3117"\w* \w who|strong="H3605"\w* \w touches|strong="H5060"\w* \w the|strong="H3605"\w* \w dead|strong="H4191"\w* \w body|strong="H5315"\w* \w of|strong="H3117"\w* \w any|strong="H3605"\w* \w man|strong="H5315"\w* \w shall|strong="H5315"\w* \w be|strong="H4191"\w* \w unclean|strong="H2930"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. +\v 12 \w He|strong="H1931"\w* \w shall|strong="H3117"\w* \w purify|strong="H2398"\w* \w himself|strong="H1931"\w* \w with|strong="H3117"\w* water \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*, \w and|strong="H3117"\w* \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w he|strong="H1931"\w* \w shall|strong="H3117"\w* \w be|strong="H3808"\w* \w clean|strong="H2891"\w*; \w but|strong="H3808"\w* \w if|strong="H1931"\w* \w he|strong="H1931"\w* doesn’t \w purify|strong="H2398"\w* \w himself|strong="H1931"\w* \w the|strong="H3117"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*, \w then|strong="H3808"\w* \w the|strong="H3117"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w he|strong="H1931"\w* \w shall|strong="H3117"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w clean|strong="H2891"\w*. +\v 13 \w Whoever|strong="H3605"\w* \w touches|strong="H5060"\w* \w a|strong="H3068"\w* \w dead|strong="H4191"\w* \w person|strong="H5315"\w*, \w the|strong="H3605"\w* \w body|strong="H5315"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w man|strong="H5315"\w* \w who|strong="H3605"\w* \w has|strong="H3068"\w* \w died|strong="H4191"\w*, \w and|strong="H3478"\w* doesn’t \w purify|strong="H2398"\w* \w himself|strong="H5315"\w*, \w defiles|strong="H2930"\w* \w Yahweh|strong="H3068"\w*’s \w tabernacle|strong="H4908"\w*; \w and|strong="H3478"\w* \w that|strong="H3588"\w* \w soul|strong="H5315"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w Israel|strong="H3478"\w*; \w because|strong="H3588"\w* \w the|strong="H3605"\w* \w water|strong="H4325"\w* \w for|strong="H3588"\w* \w impurity|strong="H5079"\w* \w was|strong="H3068"\w* \w not|strong="H3808"\w* \w sprinkled|strong="H2236"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w he|strong="H1931"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w unclean|strong="H2931"\w*. \w His|strong="H3605"\w* \w uncleanness|strong="H2932"\w* \w is|strong="H3068"\w* \w yet|strong="H5750"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*. +\p +\v 14 “\w This|strong="H2063"\w* \w is|strong="H3117"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w when|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H4191"\w* \w dies|strong="H4191"\w* \w in|strong="H4191"\w* \w a|strong="H3068"\w* tent: \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w comes|strong="H3117"\w* into \w the|strong="H3605"\w* tent, \w and|strong="H3117"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3117"\w* \w in|strong="H4191"\w* \w the|strong="H3605"\w* tent, \w shall|strong="H3117"\w* \w be|strong="H4191"\w* \w unclean|strong="H2930"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. +\v 15 \w Every|strong="H3605"\w* \w open|strong="H6605"\w* \w vessel|strong="H3627"\w*, \w which|strong="H1931"\w* \w has|strong="H3605"\w* \w no|strong="H3605"\w* \w covering|strong="H6781"\w* \w bound|strong="H6616"\w* \w on|strong="H5921"\w* \w it|strong="H1931"\w*, \w is|strong="H1931"\w* \w unclean|strong="H2931"\w*. +\p +\v 16 “\w Whoever|strong="H3605"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w open|strong="H6440"\w* \w field|strong="H7704"\w* \w touches|strong="H5060"\w* \w one|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3117"\w* \w slain|strong="H2491"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w sword|strong="H2719"\w*, \w or|strong="H3117"\w* \w a|strong="H3068"\w* \w dead|strong="H4191"\w* \w body|strong="H6106"\w*, \w or|strong="H3117"\w* \w a|strong="H3068"\w* \w bone|strong="H6106"\w* \w of|strong="H3117"\w* \w a|strong="H3068"\w* \w man|strong="H4191"\w*, \w or|strong="H3117"\w* \w a|strong="H3068"\w* \w grave|strong="H6913"\w*, \w shall|strong="H3117"\w* \w be|strong="H4191"\w* \w unclean|strong="H2930"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. +\p +\v 17 “\w For|strong="H5921"\w* \w the|strong="H5921"\w* \w unclean|strong="H2931"\w*, \w they|strong="H5921"\w* \w shall|strong="H4325"\w* \w take|strong="H3947"\w* \w of|strong="H3627"\w* \w the|strong="H5921"\w* \w ashes|strong="H6083"\w* \w of|strong="H3627"\w* \w the|strong="H5921"\w* \w burning|strong="H8316"\w* \w of|strong="H3627"\w* \w the|strong="H5921"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*; \w and|strong="H4325"\w* \w running|strong="H2416"\w* \w water|strong="H4325"\w* \w shall|strong="H4325"\w* \w be|strong="H5414"\w* poured \w on|strong="H5921"\w* \w them|strong="H5414"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w vessel|strong="H3627"\w*. +\v 18 \w A|strong="H3068"\w* \w clean|strong="H2889"\w* \w person|strong="H5315"\w* \w shall|strong="H5315"\w* \w take|strong="H3947"\w* hyssop, \w dip|strong="H2881"\w* \w it|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w water|strong="H4325"\w*, \w and|strong="H8033"\w* \w sprinkle|strong="H5137"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* tent, \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w*, \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w persons|strong="H5315"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w there|strong="H8033"\w*, \w and|strong="H8033"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w* \w who|strong="H3605"\w* \w touched|strong="H5060"\w* \w the|strong="H3605"\w* \w bone|strong="H6106"\w*, \w or|strong="H4191"\w* \w the|strong="H3605"\w* \w slain|strong="H2491"\w*, \w or|strong="H4191"\w* \w the|strong="H3605"\w* \w dead|strong="H4191"\w*, \w or|strong="H4191"\w* \w the|strong="H3605"\w* \w grave|strong="H6913"\w*. +\v 19 \w The|strong="H5921"\w* \w clean|strong="H2889"\w* person \w shall|strong="H3117"\w* \w sprinkle|strong="H5137"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w unclean|strong="H2931"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*, \w and|strong="H3117"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*. \w On|strong="H5921"\w* \w the|strong="H5921"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*, \w he|strong="H3117"\w* \w shall|strong="H3117"\w* \w purify|strong="H2398"\w* \w him|strong="H5921"\w*. \w He|strong="H3117"\w* \w shall|strong="H3117"\w* \w wash|strong="H3526"\w* \w his|strong="H3526"\w* clothes \w and|strong="H3117"\w* \w bathe|strong="H7364"\w* \w himself|strong="H4325"\w* \w in|strong="H5921"\w* \w water|strong="H4325"\w*, \w and|strong="H3117"\w* \w shall|strong="H3117"\w* \w be|strong="H3117"\w* \w clean|strong="H2889"\w* \w at|strong="H5921"\w* \w evening|strong="H6153"\w*. +\v 20 \w But|strong="H3588"\w* \w the|strong="H5921"\w* \w man|strong="H5315"\w* \w who|strong="H1931"\w* \w shall|strong="H3068"\w* \w be|strong="H3808"\w* \w unclean|strong="H2931"\w*, \w and|strong="H3068"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w purify|strong="H2398"\w* \w himself|strong="H5315"\w*, \w that|strong="H3588"\w* \w soul|strong="H5315"\w* \w shall|strong="H3068"\w* \w be|strong="H3808"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w among|strong="H8432"\w* \w the|strong="H5921"\w* \w assembly|strong="H6951"\w*, \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w has|strong="H3068"\w* \w defiled|strong="H2930"\w* \w the|strong="H5921"\w* \w sanctuary|strong="H4720"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w The|strong="H5921"\w* \w water|strong="H4325"\w* \w for|strong="H3588"\w* \w impurity|strong="H5079"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w been|strong="H2930"\w* \w sprinkled|strong="H2236"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*. \w He|strong="H1931"\w* \w is|strong="H3068"\w* \w unclean|strong="H2931"\w*. +\v 21 \w It|strong="H1961"\w* \w shall|strong="H4325"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w perpetual|strong="H5769"\w* \w statute|strong="H2708"\w* \w to|strong="H5704"\w* \w them|strong="H1961"\w*. \w He|strong="H5704"\w* who \w sprinkles|strong="H5137"\w* \w the|strong="H5704"\w* \w water|strong="H4325"\w* \w for|strong="H5704"\w* \w impurity|strong="H5079"\w* \w shall|strong="H4325"\w* \w wash|strong="H3526"\w* \w his|strong="H3526"\w* clothes, \w and|strong="H5769"\w* \w he|strong="H5704"\w* who \w touches|strong="H5060"\w* \w the|strong="H5704"\w* \w water|strong="H4325"\w* \w for|strong="H5704"\w* \w impurity|strong="H5079"\w* \w shall|strong="H4325"\w* \w be|strong="H1961"\w* \w unclean|strong="H2930"\w* \w until|strong="H5704"\w* \w evening|strong="H6153"\w*. +\p +\v 22 “\w Whatever|strong="H3605"\w* \w the|strong="H3605"\w* \w unclean|strong="H2931"\w* \w person|strong="H5315"\w* \w touches|strong="H5060"\w* \w shall|strong="H5315"\w* \w be|strong="H5315"\w* \w unclean|strong="H2931"\w*; \w and|strong="H5315"\w* \w the|strong="H3605"\w* \w soul|strong="H5315"\w* \w that|strong="H3605"\w* \w touches|strong="H5060"\w* \w it|strong="H2930"\w* \w shall|strong="H5315"\w* \w be|strong="H5315"\w* \w unclean|strong="H2931"\w* \w until|strong="H5704"\w* \w evening|strong="H6153"\w*.” +\c 20 +\p +\v 1 \w The|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, even \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w congregation|strong="H5712"\w*, \w came|strong="H3478"\w* \w into|strong="H7223"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* \w of|strong="H1121"\w* \w Zin|strong="H6790"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*. \w The|strong="H3605"\w* \w people|strong="H5971"\w* \w stayed|strong="H3427"\w* \w in|strong="H3427"\w* \w Kadesh|strong="H6946"\w*. \w Miriam|strong="H4813"\w* \w died|strong="H4191"\w* \w there|strong="H8033"\w*, \w and|strong="H1121"\w* \w was|strong="H3478"\w* \w buried|strong="H6912"\w* \w there|strong="H8033"\w*. +\v 2 \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w water|strong="H4325"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w congregation|strong="H5712"\w*; \w and|strong="H4872"\w* \w they|strong="H3808"\w* \w assembled|strong="H6950"\w* \w themselves|strong="H5921"\w* \w together|strong="H6950"\w* \w against|strong="H5921"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* \w against|strong="H5921"\w* Aaron. +\v 3 \w The|strong="H6440"\w* \w people|strong="H5971"\w* \w quarreled|strong="H7378"\w* \w with|strong="H5973"\w* \w Moses|strong="H4872"\w*, \w and|strong="H4872"\w* spoke, saying, “\w We|strong="H1478"\w* wish \w that|strong="H5971"\w* \w we|strong="H3068"\w* \w had|strong="H3068"\w* \w died|strong="H1478"\w* \w when|strong="H3068"\w* \w our|strong="H3068"\w* brothers \w died|strong="H1478"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*! +\v 4 \w Why|strong="H4100"\w* \w have|strong="H3068"\w* \w you|strong="H4100"\w* \w brought|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w assembly|strong="H6951"\w* \w into|strong="H6951"\w* \w this|strong="H2088"\w* \w wilderness|strong="H4057"\w*, \w that|strong="H3068"\w* \w we|strong="H3068"\w* \w should|strong="H3068"\w* \w die|strong="H4191"\w* \w there|strong="H8033"\w*, \w we|strong="H3068"\w* \w and|strong="H3068"\w* \w our|strong="H3068"\w* animals? +\v 5 \w Why|strong="H4100"\w* \w have|strong="H4714"\w* \w you|strong="H3808"\w* \w made|strong="H4714"\w* \w us|strong="H7451"\w* \w to|strong="H5927"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H4100"\w* \w of|strong="H4325"\w* \w Egypt|strong="H4714"\w*, \w to|strong="H5927"\w* \w bring|strong="H5927"\w* \w us|strong="H7451"\w* \w in|strong="H4725"\w* \w to|strong="H5927"\w* \w this|strong="H2088"\w* \w evil|strong="H7451"\w* \w place|strong="H4725"\w*? \w It|strong="H5927"\w* \w is|strong="H2088"\w* \w no|strong="H3808"\w* \w place|strong="H4725"\w* \w of|strong="H4325"\w* \w seed|strong="H2233"\w*, \w or|strong="H3808"\w* \w of|strong="H4325"\w* \w figs|strong="H8384"\w*, \w or|strong="H3808"\w* \w of|strong="H4325"\w* \w vines|strong="H1612"\w*, \w or|strong="H3808"\w* \w of|strong="H4325"\w* \w pomegranates|strong="H7416"\w*; \w neither|strong="H3808"\w* \w is|strong="H2088"\w* \w there|strong="H2088"\w* \w any|strong="H5927"\w* \w water|strong="H4325"\w* \w to|strong="H5927"\w* \w drink|strong="H8354"\w*.” +\p +\v 6 \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron \w went|strong="H4872"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w assembly|strong="H6951"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, \w and|strong="H4872"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w their|strong="H3068"\w* \w faces|strong="H6440"\w*. \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w appeared|strong="H7200"\w* \w to|strong="H3068"\w* \w them|strong="H5921"\w*. +\v 7 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 8 “\w Take|strong="H3947"\w* \w the|strong="H5414"\w* \w rod|strong="H4294"\w*, \w and|strong="H5869"\w* \w assemble|strong="H6950"\w* \w the|strong="H5414"\w* \w congregation|strong="H5712"\w*, \w you|strong="H5414"\w*, \w and|strong="H5869"\w* Aaron \w your|strong="H5414"\w* brother, \w and|strong="H5869"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H5414"\w* \w rock|strong="H5553"\w* \w before|strong="H4480"\w* \w their|strong="H5414"\w* \w eyes|strong="H5869"\w*, \w that|strong="H5414"\w* \w it|strong="H5414"\w* \w pour|strong="H5414"\w* \w out|strong="H3318"\w* \w its|strong="H5414"\w* \w water|strong="H4325"\w*. \w You|strong="H5414"\w* \w shall|strong="H5712"\w* \w bring|strong="H3318"\w* \w water|strong="H4325"\w* \w to|strong="H1696"\w* \w them|strong="H5414"\w* \w out|strong="H3318"\w* \w of|strong="H4294"\w* \w the|strong="H5414"\w* \w rock|strong="H5553"\w*; \w so|strong="H4480"\w* \w you|strong="H5414"\w* \w shall|strong="H5712"\w* \w give|strong="H5414"\w* \w the|strong="H5414"\w* \w congregation|strong="H5712"\w* \w and|strong="H5869"\w* \w their|strong="H5414"\w* livestock \w drink|strong="H8248"\w*.” +\p +\v 9 \w Moses|strong="H4872"\w* \w took|strong="H3947"\w* \w the|strong="H6440"\w* \w rod|strong="H4294"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w as|strong="H3068"\w* \w he|strong="H3068"\w* \w commanded|strong="H6680"\w* \w him|strong="H6440"\w*. +\v 10 \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron \w gathered|strong="H6950"\w* \w the|strong="H6440"\w* \w assembly|strong="H6951"\w* \w together|strong="H6950"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w rock|strong="H5553"\w*, \w and|strong="H4872"\w* \w he|strong="H4480"\w* \w said|strong="H8085"\w* \w to|strong="H3318"\w* \w them|strong="H6440"\w*, “\w Hear|strong="H8085"\w* \w now|strong="H4994"\w*, \w you|strong="H6440"\w* \w rebels|strong="H4784"\w*! \w Shall|strong="H4325"\w* \w we|strong="H3068"\w* \w bring|strong="H3318"\w* \w water|strong="H4325"\w* \w out|strong="H3318"\w* \w of|strong="H6440"\w* \w this|strong="H2088"\w* \w rock|strong="H5553"\w* \w for|strong="H6440"\w* \w you|strong="H6440"\w*?” +\v 11 \w Moses|strong="H4872"\w* \w lifted|strong="H7311"\w* \w up|strong="H7311"\w* \w his|strong="H5221"\w* \w hand|strong="H3027"\w*, \w and|strong="H4872"\w* \w struck|strong="H5221"\w* \w the|strong="H5221"\w* \w rock|strong="H5553"\w* \w with|strong="H3318"\w* \w his|strong="H5221"\w* \w rod|strong="H4294"\w* \w twice|strong="H6471"\w*, \w and|strong="H4872"\w* \w water|strong="H4325"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w abundantly|strong="H7227"\w*. \w The|strong="H5221"\w* \w congregation|strong="H5712"\w* \w and|strong="H4872"\w* \w their|strong="H3318"\w* livestock \w drank|strong="H8354"\w*. +\p +\v 12 \w Yahweh|strong="H3068"\w* \w said|strong="H3651"\w* \w to|strong="H3478"\w* \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* Aaron, “\w Because|strong="H3282"\w* \w you|strong="H5414"\w* didn’t believe \w in|strong="H3478"\w* \w me|strong="H5414"\w*, \w to|strong="H3478"\w* \w sanctify|strong="H6942"\w* \w me|strong="H5414"\w* \w in|strong="H3478"\w* \w the|strong="H5414"\w* \w eyes|strong="H5869"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w therefore|strong="H3651"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w bring|strong="H5414"\w* \w this|strong="H2088"\w* \w assembly|strong="H6951"\w* \w into|strong="H5414"\w* \w the|strong="H5414"\w* land \w which|strong="H3068"\w* \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w given|strong="H5414"\w* \w them|strong="H5414"\w*.” +\p +\v 13 \w These|strong="H1992"\w* \w are|strong="H1992"\w* \w the|strong="H3068"\w* \w waters|strong="H4325"\w* \w of|strong="H1121"\w* \w Meribah|strong="H4809"\w*;\f + \fr 20:13 \ft “Meribah” means “quarreling”.\f* \w because|strong="H3068"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w strove|strong="H7378"\w* \w with|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H1121"\w* \w he|strong="H3068"\w* \w was|strong="H3068"\w* \w sanctified|strong="H6942"\w* \w in|strong="H3478"\w* \w them|strong="H1992"\w*. +\p +\v 14 \w Moses|strong="H4872"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w from|strong="H3478"\w* \w Kadesh|strong="H6946"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Edom, saying: +\p “\w Your|strong="H3605"\w* brother \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*: \w You|strong="H3605"\w* \w know|strong="H3045"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w travail|strong="H8513"\w* \w that|strong="H3045"\w* \w has|strong="H3478"\w* \w happened|strong="H4672"\w* \w to|strong="H3478"\w* \w us|strong="H3045"\w*; +\v 15 how our fathers \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H3117"\w* \w we|strong="H3068"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Egypt|strong="H4714"\w* \w a|strong="H3068"\w* \w long|strong="H3117"\w* \w time|strong="H3117"\w*. \w The|strong="H3117"\w* \w Egyptians|strong="H4714"\w* mistreated \w us|strong="H3117"\w* \w and|strong="H3117"\w* our fathers. +\v 16 \w When|strong="H8085"\w* \w we|strong="H3068"\w* \w cried|strong="H6817"\w* \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w*, \w he|strong="H3068"\w* \w heard|strong="H8085"\w* \w our|strong="H3068"\w* \w voice|strong="H6963"\w*, \w sent|strong="H7971"\w* \w an|strong="H7971"\w* \w angel|strong="H4397"\w*, \w and|strong="H3068"\w* \w brought|strong="H3318"\w* \w us|strong="H8085"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*. \w Behold|strong="H2009"\w*, \w we|strong="H3068"\w* \w are|strong="H3068"\w* \w in|strong="H3068"\w* \w Kadesh|strong="H6946"\w*, \w a|strong="H3068"\w* \w city|strong="H5892"\w* \w in|strong="H3068"\w* \w the|strong="H8085"\w* \w edge|strong="H7097"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w border|strong="H1366"\w*. +\p +\v 17 “\w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w us|strong="H4994"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w your|strong="H5186"\w* \w land|strong="H7704"\w*. \w We|strong="H5704"\w* \w will|strong="H4428"\w* \w not|strong="H3808"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w field|strong="H7704"\w* \w or|strong="H3808"\w* \w through|strong="H5674"\w* \w vineyard|strong="H3754"\w*, \w neither|strong="H3808"\w* \w will|strong="H4428"\w* \w we|strong="H3068"\w* \w drink|strong="H8354"\w* \w from|strong="H5704"\w* \w the|strong="H5704"\w* \w water|strong="H4325"\w* \w of|strong="H4428"\w* \w the|strong="H5704"\w* wells. \w We|strong="H5704"\w* \w will|strong="H4428"\w* \w go|strong="H3212"\w* \w along|strong="H5674"\w* \w the|strong="H5704"\w* \w king|strong="H4428"\w*’s \w highway|strong="H1870"\w*. \w We|strong="H5704"\w* \w will|strong="H4428"\w* \w not|strong="H3808"\w* \w turn|strong="H5186"\w* \w away|strong="H5674"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w nor|strong="H3808"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w left|strong="H8040"\w*, \w until|strong="H5704"\w* \w we|strong="H3068"\w* \w have|strong="H4428"\w* \w passed|strong="H5674"\w* \w your|strong="H5186"\w* \w border|strong="H1366"\w*.” +\p +\v 18 Edom \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H3318"\w*, “\w You|strong="H3808"\w* \w shall|strong="H2719"\w* \w not|strong="H3808"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w me|strong="H5674"\w*, \w lest|strong="H6435"\w* \w I|strong="H3808"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w with|strong="H3318"\w* \w the|strong="H5674"\w* \w sword|strong="H2719"\w* \w against|strong="H7125"\w* \w you|strong="H3808"\w*.” +\p +\v 19 \w The|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w said|strong="H1697"\w* \w to|strong="H3478"\w* \w him|strong="H5414"\w*, “\w We|strong="H1697"\w* \w will|strong="H3478"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w by|strong="H5674"\w* \w the|strong="H5414"\w* \w highway|strong="H4546"\w*; \w and|strong="H1121"\w* \w if|strong="H1121"\w* \w we|strong="H3068"\w* \w drink|strong="H8354"\w* \w your|strong="H5414"\w* \w water|strong="H4325"\w*, \w I|strong="H5414"\w* \w and|strong="H1121"\w* \w my|strong="H5414"\w* \w livestock|strong="H4735"\w*, \w then|strong="H5414"\w* \w I|strong="H5414"\w* \w will|strong="H3478"\w* \w give|strong="H5414"\w* \w its|strong="H5414"\w* \w price|strong="H4377"\w*. \w Only|strong="H7535"\w* \w let|strong="H5414"\w* \w me|strong="H5414"\w*, without \w doing|strong="H8354"\w* \w anything|strong="H1697"\w* else, \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w on|strong="H5674"\w* \w my|strong="H5414"\w* \w feet|strong="H7272"\w*.” +\p +\v 20 \w He|strong="H3027"\w* \w said|strong="H3318"\w*, “\w You|strong="H3808"\w* \w shall|strong="H5971"\w* \w not|strong="H3808"\w* \w pass|strong="H5674"\w* \w through|strong="H3027"\w*.” Edom \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w against|strong="H7125"\w* \w him|strong="H3027"\w* \w with|strong="H3318"\w* \w many|strong="H3808"\w* \w people|strong="H5971"\w*, \w and|strong="H3027"\w* \w with|strong="H3318"\w* \w a|strong="H3068"\w* \w strong|strong="H2389"\w* \w hand|strong="H3027"\w*. +\v 21 Thus Edom \w refused|strong="H3985"\w* \w to|strong="H3478"\w* \w give|strong="H5414"\w* \w Israel|strong="H3478"\w* \w passage|strong="H5674"\w* \w through|strong="H5674"\w* \w his|strong="H5414"\w* \w border|strong="H1366"\w*, \w so|strong="H5414"\w* \w Israel|strong="H3478"\w* \w turned|strong="H5186"\w* \w away|strong="H5674"\w* \w from|strong="H5921"\w* \w him|strong="H5414"\w*. +\p +\v 22 \w They|strong="H3605"\w* \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Kadesh|strong="H6946"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, even \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w congregation|strong="H5712"\w*, \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w Mount|strong="H2022"\w* \w Hor|strong="H2023"\w*. +\v 23 \w Yahweh|strong="H3068"\w* spoke \w to|strong="H3068"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron \w in|strong="H5921"\w* \w Mount|strong="H2022"\w* \w Hor|strong="H2023"\w*, \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w land|strong="H1366"\w* \w of|strong="H3068"\w* Edom, saying, +\v 24 “Aaron \w shall|strong="H1121"\w* \w be|strong="H3808"\w* \w gathered|strong="H3478"\w* \w to|strong="H3478"\w* \w his|strong="H5414"\w* \w people|strong="H5971"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* enter \w into|strong="H5921"\w* \w the|strong="H5921"\w* land \w which|strong="H5971"\w* \w I|strong="H3588"\w* \w have|strong="H5971"\w* \w given|strong="H5414"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w rebelled|strong="H4784"\w* \w against|strong="H5921"\w* \w my|strong="H5414"\w* \w word|strong="H6310"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w of|strong="H1121"\w* \w Meribah|strong="H4809"\w*. +\v 25 \w Take|strong="H3947"\w* Aaron \w and|strong="H1121"\w* Eleazar \w his|strong="H3947"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w bring|strong="H5927"\w* \w them|strong="H3947"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w Mount|strong="H2022"\w* \w Hor|strong="H2023"\w*; +\v 26 \w and|strong="H1121"\w* \w strip|strong="H6584"\w* Aaron \w of|strong="H1121"\w* \w his|strong="H6584"\w* garments, \w and|strong="H1121"\w* \w put|strong="H4191"\w* \w them|strong="H1121"\w* \w on|strong="H3847"\w* Eleazar \w his|strong="H6584"\w* \w son|strong="H1121"\w*. Aaron \w shall|strong="H1121"\w* \w be|strong="H4191"\w* gathered, \w and|strong="H1121"\w* \w shall|strong="H1121"\w* \w die|strong="H4191"\w* \w there|strong="H8033"\w*.” +\p +\v 27 \w Moses|strong="H4872"\w* \w did|strong="H6213"\w* \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w*. \w They|strong="H3068"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* onto \w Mount|strong="H2022"\w* \w Hor|strong="H2023"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w*. +\v 28 \w Moses|strong="H4872"\w* \w stripped|strong="H6584"\w* Aaron \w of|strong="H1121"\w* \w his|strong="H4480"\w* garments, \w and|strong="H1121"\w* \w put|strong="H4191"\w* \w them|strong="H3381"\w* \w on|strong="H3847"\w* Eleazar \w his|strong="H4480"\w* \w son|strong="H1121"\w*. Aaron \w died|strong="H4191"\w* \w there|strong="H8033"\w* \w on|strong="H3847"\w* \w the|strong="H4480"\w* \w top|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w mountain|strong="H2022"\w*, \w and|strong="H1121"\w* \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* Eleazar \w came|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w mountain|strong="H2022"\w*. +\v 29 \w When|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* Aaron \w was|strong="H3478"\w* \w dead|strong="H1478"\w*, \w they|strong="H3588"\w* \w wept|strong="H1058"\w* \w for|strong="H3588"\w* Aaron \w thirty|strong="H7970"\w* \w days|strong="H3117"\w*, \w even|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. +\c 21 +\p +\v 1 \w The|strong="H8085"\w* \w Canaanite|strong="H3669"\w*, \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Arad|strong="H6166"\w*, \w who|strong="H3478"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H8085"\w* \w South|strong="H5045"\w*, \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w Israel|strong="H3478"\w* \w came|strong="H3478"\w* \w by|strong="H1870"\w* \w the|strong="H8085"\w* \w way|strong="H1870"\w* \w of|strong="H4428"\w* Atharim. \w He|strong="H3588"\w* \w fought|strong="H3898"\w* \w against|strong="H3898"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w took|strong="H7617"\w* \w some|strong="H4480"\w* \w of|strong="H4428"\w* \w them|strong="H7617"\w* \w captive|strong="H7617"\w*. +\v 2 \w Israel|strong="H3478"\w* \w vowed|strong="H5087"\w* \w a|strong="H3068"\w* \w vow|strong="H5088"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3478"\w* said, “If \w you|strong="H5414"\w* \w will|strong="H3068"\w* \w indeed|strong="H5414"\w* \w deliver|strong="H5414"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w into|strong="H3027"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w*, \w then|strong="H2088"\w* \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w utterly|strong="H2763"\w* \w destroy|strong="H2763"\w* \w their|strong="H3068"\w* \w cities|strong="H5892"\w*.” +\v 3 \w Yahweh|strong="H3068"\w* \w listened|strong="H8085"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w delivered|strong="H5414"\w* \w up|strong="H5414"\w* \w the|strong="H8085"\w* \w Canaanites|strong="H3669"\w*; \w and|strong="H3478"\w* \w they|strong="H3068"\w* \w utterly|strong="H2763"\w* \w destroyed|strong="H2763"\w* \w them|strong="H5414"\w* \w and|strong="H3478"\w* \w their|strong="H3068"\w* \w cities|strong="H5892"\w*. \w The|strong="H8085"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* \w place|strong="H4725"\w* \w was|strong="H3068"\w* \w called|strong="H7121"\w* \w Hormah|strong="H2767"\w*.\f + \fr 21:3 \ft “Hormah” means “destruction”.\f* +\p +\v 4 \w They|strong="H5971"\w* \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Mount|strong="H2022"\w* \w Hor|strong="H2023"\w* \w by|strong="H1870"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w to|strong="H1870"\w* \w the|strong="H1870"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w*, \w to|strong="H1870"\w* \w go|strong="H5437"\w* \w around|strong="H5437"\w* \w the|strong="H1870"\w* land \w of|strong="H2022"\w* Edom. \w The|strong="H1870"\w* \w soul|strong="H5315"\w* \w of|strong="H2022"\w* \w the|strong="H1870"\w* \w people|strong="H5971"\w* \w was|strong="H5315"\w* very \w discouraged|strong="H7114"\w* \w because|strong="H1870"\w* \w of|strong="H2022"\w* \w the|strong="H1870"\w* \w journey|strong="H1870"\w*. +\v 5 \w The|strong="H3588"\w* \w people|strong="H5971"\w* \w spoke|strong="H1696"\w* \w against|strong="H5927"\w* God \w and|strong="H4872"\w* \w against|strong="H5927"\w* \w Moses|strong="H4872"\w*: “\w Why|strong="H4100"\w* \w have|strong="H5971"\w* \w you|strong="H3588"\w* \w brought|strong="H5927"\w* \w us|strong="H3588"\w* \w up|strong="H5927"\w* \w out|strong="H4100"\w* \w of|strong="H4325"\w* \w Egypt|strong="H4714"\w* \w to|strong="H1696"\w* \w die|strong="H4191"\w* \w in|strong="H4191"\w* \w the|strong="H3588"\w* \w wilderness|strong="H4057"\w*? \w For|strong="H3588"\w* \w there|strong="H5927"\w* \w is|strong="H4100"\w* \w no|strong="H5927"\w* \w bread|strong="H3899"\w*, \w there|strong="H5927"\w* \w is|strong="H4100"\w* \w no|strong="H5927"\w* \w water|strong="H4325"\w*, \w and|strong="H4872"\w* \w our|strong="H3588"\w* \w soul|strong="H5315"\w* loathes \w this|strong="H1696"\w* disgusting \w food|strong="H3899"\w*!” +\p +\v 6 \w Yahweh|strong="H3068"\w* \w sent|strong="H7971"\w* venomous \w snakes|strong="H5175"\w* \w among|strong="H5971"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w*, \w and|strong="H3478"\w* \w they|strong="H3068"\w* \w bit|strong="H5391"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w*. \w Many|strong="H7227"\w* \w people|strong="H5971"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w died|strong="H4191"\w*. +\v 7 \w The|strong="H5921"\w* \w people|strong="H5971"\w* \w came|strong="H3068"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w and|strong="H4872"\w* \w said|strong="H1696"\w*, “\w We|strong="H3588"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w*, \w because|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H4872"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w*. \w Pray|strong="H6419"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w* \w the|strong="H5921"\w* \w serpents|strong="H5175"\w* \w from|strong="H5493"\w* \w us|strong="H5921"\w*.” \w Moses|strong="H4872"\w* \w prayed|strong="H6419"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w*. +\p +\v 8 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w Make|strong="H6213"\w* \w a|strong="H3068"\w* venomous snake, \w and|strong="H4872"\w* \w set|strong="H7760"\w* \w it|strong="H7760"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w pole|strong="H5251"\w*. \w It|strong="H7760"\w* \w shall|strong="H3068"\w* \w happen|strong="H1961"\w* \w that|strong="H7200"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3068"\w* \w bitten|strong="H5391"\w*, \w when|strong="H1961"\w* \w he|strong="H6213"\w* \w sees|strong="H7200"\w* \w it|strong="H7760"\w*, \w shall|strong="H3068"\w* \w live|strong="H2425"\w*.” +\v 9 \w Moses|strong="H4872"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w serpent|strong="H5175"\w* \w of|strong="H5921"\w* \w bronze|strong="H5178"\w*, \w and|strong="H4872"\w* \w set|strong="H7760"\w* \w it|strong="H7760"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w pole|strong="H5251"\w*. \w If|strong="H1961"\w* \w a|strong="H3068"\w* \w serpent|strong="H5175"\w* \w had|strong="H1961"\w* \w bitten|strong="H5391"\w* \w any|strong="H6213"\w* man, \w when|strong="H1961"\w* \w he|strong="H6213"\w* \w looked|strong="H5027"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w serpent|strong="H5175"\w* \w of|strong="H5921"\w* \w bronze|strong="H5178"\w*, \w he|strong="H6213"\w* \w lived|strong="H2425"\w*. +\p +\v 10 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w traveled|strong="H5265"\w*, \w and|strong="H1121"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* Oboth. +\v 11 \w They|strong="H5921"\w* \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* Oboth, \w and|strong="H6440"\w* \w encamped|strong="H2583"\w* \w at|strong="H2583"\w* Iyeabarim, \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w wilderness|strong="H4057"\w* \w which|strong="H4057"\w* \w is|strong="H4124"\w* \w before|strong="H6440"\w* \w Moab|strong="H4124"\w*, \w toward|strong="H5921"\w* \w the|strong="H6440"\w* \w sunrise|strong="H4217"\w*. +\v 12 \w From|strong="H5265"\w* \w there|strong="H8033"\w* \w they|strong="H8033"\w* \w traveled|strong="H5265"\w*, \w and|strong="H8033"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w the|strong="H8033"\w* \w valley|strong="H5158"\w* \w of|strong="H5158"\w* \w Zered|strong="H2218"\w*. +\v 13 \w From|strong="H5265"\w* \w there|strong="H8033"\w* \w they|strong="H3588"\w* \w traveled|strong="H5265"\w*, \w and|strong="H8033"\w* \w encamped|strong="H2583"\w* \w on|strong="H3318"\w* \w the|strong="H3588"\w* \w other|strong="H5676"\w* \w side|strong="H5676"\w* \w of|strong="H1366"\w* \w the|strong="H3588"\w* Arnon, \w which|strong="H8033"\w* \w is|strong="H4124"\w* \w in|strong="H2583"\w* \w the|strong="H3588"\w* \w wilderness|strong="H4057"\w* \w that|strong="H3588"\w* \w comes|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1366"\w* \w the|strong="H3588"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w the|strong="H3588"\w* Amorites; \w for|strong="H3588"\w* \w the|strong="H3588"\w* Arnon \w is|strong="H4124"\w* \w the|strong="H3588"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Moab|strong="H4124"\w*, \w between|strong="H2583"\w* \w Moab|strong="H4124"\w* \w and|strong="H8033"\w* \w the|strong="H3588"\w* Amorites. +\v 14 \w Therefore|strong="H3651"\w* \w it|strong="H5921"\w* \w is|strong="H3068"\w* \w said|strong="H3651"\w* \w in|strong="H5921"\w* \bk \+w The|strong="H5921"\+w* \+w Book|strong="H5612"\+w* \+w of|strong="H3068"\+w* \+w the|strong="H5921"\+w* \+w Wars|strong="H4421"\+w* \+w of|strong="H3068"\+w* \+w Yahweh|strong="H3068"\+w*\bk*, “Vaheb \w in|strong="H5921"\w* \w Suphah|strong="H5492"\w*, \w the|strong="H5921"\w* \w valleys|strong="H5158"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* Arnon, +\v 15 \w the|strong="H5186"\w* slope \w of|strong="H3427"\w* \w the|strong="H5186"\w* \w valleys|strong="H5158"\w* \w that|strong="H5158"\w* \w incline|strong="H5186"\w* toward \w the|strong="H5186"\w* \w dwelling|strong="H3427"\w* \w of|strong="H3427"\w* \w Ar|strong="H6144"\w*, \w leans|strong="H8172"\w* \w on|strong="H3427"\w* \w the|strong="H5186"\w* \w border|strong="H1366"\w* \w of|strong="H3427"\w* \w Moab|strong="H4124"\w*.” +\p +\v 16 \w From|strong="H3068"\w* \w there|strong="H8033"\w* \w they|strong="H8033"\w* traveled \w to|strong="H3068"\w* Beer; \w that|strong="H5971"\w* \w is|strong="H3068"\w* \w the|strong="H5414"\w* well \w of|strong="H3068"\w* \w which|strong="H1931"\w* \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “Gather \w the|strong="H5414"\w* \w people|strong="H5971"\w* \w together|strong="H5971"\w*, \w and|strong="H4872"\w* \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w water|strong="H4325"\w*.” +\p +\v 17 \w Then|strong="H6030"\w* \w Israel|strong="H3478"\w* \w sang|strong="H7891"\w* \w this|strong="H2063"\w* \w song|strong="H7892"\w*: +\q1 “\w Spring|strong="H5927"\w* \w up|strong="H5927"\w*, well! \w Sing|strong="H7891"\w* \w to|strong="H3478"\w* \w it|strong="H5927"\w*, +\q2 +\v 18 \w the|strong="H5971"\w* well, \w which|strong="H5971"\w* \w the|strong="H5971"\w* \w princes|strong="H8269"\w* \w dug|strong="H2658"\w*, +\q2 \w which|strong="H5971"\w* \w the|strong="H5971"\w* \w nobles|strong="H5081"\w* \w of|strong="H8269"\w* \w the|strong="H5971"\w* \w people|strong="H5971"\w* \w dug|strong="H2658"\w*, +\q2 \w with|strong="H5971"\w* \w the|strong="H5971"\w* \w scepter|strong="H2710"\w*, \w and|strong="H5971"\w* \w with|strong="H5971"\w* \w their|strong="H5971"\w* poles.” +\p \w From|strong="H5971"\w* \w the|strong="H5971"\w* \w wilderness|strong="H4057"\w* \w they|strong="H5971"\w* traveled \w to|strong="H5971"\w* \w Mattanah|strong="H4980"\w*; +\v 19 \w and|strong="H1120"\w* from \w Mattanah|strong="H4980"\w* \w to|strong="H5160"\w* \w Nahaliel|strong="H5160"\w*; \w and|strong="H1120"\w* from \w Nahaliel|strong="H5160"\w* \w to|strong="H5160"\w* \w Bamoth|strong="H1120"\w*; +\v 20 \w and|strong="H7218"\w* \w from|strong="H6440"\w* \w Bamoth|strong="H1120"\w* \w to|strong="H5921"\w* \w the|strong="H6440"\w* \w valley|strong="H1516"\w* \w that|strong="H7218"\w* \w is|strong="H4124"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w field|strong="H7704"\w* \w of|strong="H7218"\w* \w Moab|strong="H4124"\w*, \w to|strong="H5921"\w* \w the|strong="H6440"\w* \w top|strong="H7218"\w* \w of|strong="H7218"\w* \w Pisgah|strong="H6449"\w*, \w which|strong="H7704"\w* \w looks|strong="H8259"\w* \w down|strong="H8259"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w desert|strong="H3452"\w*. +\v 21 \w Israel|strong="H3478"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H3478"\w* \w Sihon|strong="H5511"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H7971"\w* Amorites, saying, +\v 22 “\w Let|strong="H5186"\w* \w me|strong="H5674"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w your|strong="H5186"\w* \w land|strong="H7704"\w*. \w We|strong="H5704"\w* \w will|strong="H4428"\w* \w not|strong="H3808"\w* \w turn|strong="H5186"\w* \w away|strong="H5674"\w* \w into|strong="H3212"\w* \w field|strong="H7704"\w* \w or|strong="H3808"\w* \w vineyard|strong="H3754"\w*. \w We|strong="H5704"\w* \w will|strong="H4428"\w* \w not|strong="H3808"\w* \w drink|strong="H8354"\w* \w of|strong="H4428"\w* \w the|strong="H5704"\w* \w water|strong="H4325"\w* \w of|strong="H4428"\w* \w the|strong="H5704"\w* wells. \w We|strong="H5704"\w* \w will|strong="H4428"\w* \w go|strong="H3212"\w* \w by|strong="H5674"\w* \w the|strong="H5704"\w* \w king|strong="H4428"\w*’s \w highway|strong="H1870"\w*, \w until|strong="H5704"\w* \w we|strong="H3068"\w* \w have|strong="H4428"\w* \w passed|strong="H5674"\w* \w your|strong="H5186"\w* \w border|strong="H1366"\w*.” +\p +\v 23 \w Sihon|strong="H5511"\w* \w would|strong="H3478"\w* \w not|strong="H3808"\w* \w allow|strong="H5414"\w* \w Israel|strong="H3478"\w* \w to|strong="H3318"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w his|strong="H3605"\w* \w border|strong="H1366"\w*, \w but|strong="H3808"\w* \w Sihon|strong="H5511"\w* \w gathered|strong="H3478"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w* \w together|strong="H5971"\w*, \w and|strong="H3478"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w against|strong="H7125"\w* \w Israel|strong="H3478"\w* \w into|strong="H3318"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w*, \w and|strong="H3478"\w* \w came|strong="H3318"\w* \w to|strong="H3318"\w* \w Jahaz|strong="H3096"\w*. \w He|strong="H3605"\w* \w fought|strong="H3898"\w* \w against|strong="H7125"\w* \w Israel|strong="H3478"\w*. +\v 24 \w Israel|strong="H3478"\w* \w struck|strong="H5221"\w* \w him|strong="H5221"\w* \w with|strong="H3478"\w* \w the|strong="H3588"\w* \w edge|strong="H6310"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w sword|strong="H2719"\w*, \w and|strong="H1121"\w* \w possessed|strong="H3423"\w* \w his|strong="H5221"\w* \w land|strong="H1366"\w* \w from|strong="H3478"\w* \w the|strong="H3588"\w* Arnon \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w Jabbok|strong="H2999"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w border|strong="H1366"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w was|strong="H3478"\w* fortified. +\v 25 \w Israel|strong="H3478"\w* \w took|strong="H3947"\w* \w all|strong="H3605"\w* \w these|strong="H3947"\w* \w cities|strong="H5892"\w*. \w Israel|strong="H3478"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H1323"\w* \w the|strong="H3605"\w* Amorites, \w in|strong="H3427"\w* \w Heshbon|strong="H2809"\w*, \w and|strong="H3478"\w* \w in|strong="H3427"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w villages|strong="H1323"\w*. +\v 26 \w For|strong="H3588"\w* \w Heshbon|strong="H2809"\w* \w was|strong="H1931"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w of|strong="H4428"\w* \w Sihon|strong="H5511"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* Amorites, \w who|strong="H3605"\w* \w had|strong="H4428"\w* \w fought|strong="H3898"\w* \w against|strong="H3898"\w* \w the|strong="H3605"\w* \w former|strong="H7223"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Moab|strong="H4124"\w*, \w and|strong="H4428"\w* \w taken|strong="H3947"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* land \w out|strong="H3947"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* Arnon. +\v 27 \w Therefore|strong="H3651"\w* \w those|strong="H5921"\w* \w who|strong="H1129"\w* \w speak|strong="H4911"\w* \w in|strong="H5921"\w* \w proverbs|strong="H4911"\w* say, +\q1 “\w Come|strong="H5892"\w* \w to|strong="H5921"\w* \w Heshbon|strong="H2809"\w*. +\q2 \w Let|strong="H3651"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w of|strong="H5892"\w* \w Sihon|strong="H5511"\w* \w be|strong="H5892"\w* \w built|strong="H1129"\w* \w and|strong="H5892"\w* \w established|strong="H3559"\w*; +\q1 +\v 28 \w for|strong="H3588"\w* \w a|strong="H3068"\w* fire \w has|strong="H3588"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1167"\w* \w Heshbon|strong="H2809"\w*, +\q2 \w a|strong="H3068"\w* \w flame|strong="H3852"\w* \w from|strong="H3318"\w* \w the|strong="H3588"\w* \w city|strong="H7151"\w* \w of|strong="H1167"\w* \w Sihon|strong="H5511"\w*. +\q1 \w It|strong="H3588"\w* \w has|strong="H3588"\w* devoured \w Ar|strong="H6144"\w* \w of|strong="H1167"\w* \w Moab|strong="H4124"\w*, +\q2 \w The|strong="H3588"\w* \w lords|strong="H1167"\w* \w of|strong="H1167"\w* \w the|strong="H3588"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w of|strong="H1167"\w* \w the|strong="H3588"\w* Arnon. +\q1 +\v 29 Woe \w to|strong="H5414"\w* \w you|strong="H5414"\w*, \w Moab|strong="H4124"\w*! +\q2 \w You|strong="H5414"\w* \w are|strong="H5971"\w* undone, \w people|strong="H5971"\w* \w of|strong="H1121"\w* \w Chemosh|strong="H3645"\w*! +\q1 \w He|strong="H5414"\w* \w has|strong="H4428"\w* \w given|strong="H5414"\w* \w his|strong="H5414"\w* \w sons|strong="H1121"\w* \w as|strong="H5971"\w* \w fugitives|strong="H6412"\w*, +\q2 \w and|strong="H1121"\w* \w his|strong="H5414"\w* \w daughters|strong="H1323"\w* \w into|strong="H1323"\w* \w captivity|strong="H7628"\w*, +\q2 \w to|strong="H5414"\w* \w Sihon|strong="H5511"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* Amorites. +\q1 +\v 30 \w We|strong="H5704"\w* \w have|strong="H2809"\w* \w shot|strong="H3384"\w* \w at|strong="H8074"\w* \w them|strong="H5704"\w*. +\q2 \w Heshbon|strong="H2809"\w* has perished \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Dibon|strong="H1769"\w*. +\q1 \w We|strong="H5704"\w* \w have|strong="H2809"\w* \w laid|strong="H8074"\w* \w waste|strong="H8074"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Nophah|strong="H5302"\w*, +\q2 Which \w reaches|strong="H5704"\w* \w to|strong="H5704"\w* \w Medeba|strong="H4311"\w*.” +\p +\v 31 Thus \w Israel|strong="H3478"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3427"\w* land \w of|strong="H3427"\w* \w the|strong="H3427"\w* Amorites. +\v 32 \w Moses|strong="H4872"\w* \w sent|strong="H7971"\w* \w to|strong="H7971"\w* \w spy|strong="H7270"\w* \w out|strong="H3423"\w* \w Jazer|strong="H3270"\w*. \w They|strong="H8033"\w* \w took|strong="H3920"\w* \w its|strong="H3920"\w* \w villages|strong="H1323"\w*, \w and|strong="H4872"\w* \w drove|strong="H3423"\w* \w out|strong="H3423"\w* \w the|strong="H3423"\w* Amorites \w who|strong="H1323"\w* \w were|strong="H1323"\w* \w there|strong="H8033"\w*. +\v 33 \w They|strong="H1931"\w* \w turned|strong="H6437"\w* \w and|strong="H4428"\w* \w went|strong="H3318"\w* \w up|strong="H5927"\w* \w by|strong="H1870"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w of|strong="H4428"\w* \w Bashan|strong="H1316"\w*. \w Og|strong="H5747"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Bashan|strong="H1316"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w against|strong="H7125"\w* \w them|strong="H3318"\w*, \w he|strong="H1931"\w* \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*, \w to|strong="H3318"\w* \w battle|strong="H4421"\w* \w at|strong="H4421"\w* Edrei. +\p +\v 34 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “Don’t \w fear|strong="H3372"\w* \w him|strong="H5414"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w delivered|strong="H5414"\w* \w him|strong="H5414"\w* \w into|strong="H6213"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*, \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*, \w and|strong="H4872"\w* \w his|strong="H3605"\w* land. \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w to|strong="H3068"\w* \w him|strong="H5414"\w* \w as|strong="H6213"\w* \w you|strong="H3588"\w* \w did|strong="H6213"\w* \w to|strong="H3068"\w* \w Sihon|strong="H5511"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* Amorites, \w who|strong="H3605"\w* \w lived|strong="H3427"\w* \w at|strong="H3427"\w* \w Heshbon|strong="H2809"\w*.” +\p +\v 35 \w So|strong="H1115"\w* \w they|strong="H5704"\w* \w struck|strong="H5221"\w* \w him|strong="H5221"\w*, \w with|strong="H5971"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*, \w until|strong="H5704"\w* \w there|strong="H3605"\w* \w were|strong="H5971"\w* \w no|strong="H1115"\w* \w survivors|strong="H8300"\w*; \w and|strong="H1121"\w* \w they|strong="H5704"\w* \w possessed|strong="H3423"\w* \w his|strong="H3605"\w* land. +\c 22 +\p +\v 1 \w The|strong="H5676"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w traveled|strong="H5265"\w*, \w and|strong="H1121"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w the|strong="H5676"\w* \w plains|strong="H6160"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w* \w beyond|strong="H5676"\w* \w the|strong="H5676"\w* \w Jordan|strong="H3383"\w* \w at|strong="H2583"\w* \w Jericho|strong="H3405"\w*. +\v 2 \w Balak|strong="H1111"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zippor|strong="H6834"\w* \w saw|strong="H7200"\w* \w all|strong="H3605"\w* \w that|strong="H7200"\w* \w Israel|strong="H3478"\w* \w had|strong="H3478"\w* \w done|strong="H6213"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* Amorites. +\v 3 \w Moab|strong="H4124"\w* \w was|strong="H3478"\w* \w very|strong="H3966"\w* \w afraid|strong="H1481"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H3478"\w* \w many|strong="H7227"\w*. \w Moab|strong="H4124"\w* \w was|strong="H3478"\w* \w distressed|strong="H6973"\w* \w because|strong="H3588"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 4 \w Moab|strong="H4124"\w* said \w to|strong="H6256"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H1121"\w* \w Midian|strong="H4080"\w*, “\w Now|strong="H6258"\w* \w this|strong="H1931"\w* \w multitude|strong="H6951"\w* \w will|strong="H4428"\w* \w lick|strong="H3897"\w* \w up|strong="H3897"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H1931"\w* \w around|strong="H5439"\w* \w us|strong="H5439"\w*, \w as|strong="H1121"\w* \w the|strong="H3605"\w* \w ox|strong="H7794"\w* \w licks|strong="H3897"\w* \w up|strong="H3897"\w* \w the|strong="H3605"\w* \w grass|strong="H3418"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*.” +\p \w Balak|strong="H1111"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zippor|strong="H6834"\w* \w was|strong="H1931"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w* \w at|strong="H4428"\w* \w that|strong="H3605"\w* \w time|strong="H6256"\w*. +\v 5 \w He|strong="H1931"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H3318"\w* \w Balaam|strong="H1109"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Beor|strong="H1160"\w*, \w to|strong="H3318"\w* \w Pethor|strong="H6604"\w*, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w River|strong="H5104"\w*, \w to|strong="H3318"\w* \w the|strong="H5921"\w* land \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w his|strong="H7121"\w* \w people|strong="H5971"\w*, \w to|strong="H3318"\w* \w call|strong="H7121"\w* \w him|strong="H7121"\w*, saying, “\w Behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w who|strong="H1931"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*. \w Behold|strong="H2009"\w*, \w they|strong="H5921"\w* \w cover|strong="H3680"\w* \w the|strong="H5921"\w* \w surface|strong="H5869"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* earth, \w and|strong="H1121"\w* \w they|strong="H5921"\w* \w are|strong="H5971"\w* \w staying|strong="H3427"\w* \w opposite|strong="H4136"\w* \w me|strong="H7971"\w*. +\v 6 \w Please|strong="H4994"\w* \w come|strong="H3212"\w* \w now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w and|strong="H3212"\w* \w curse|strong="H1288"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w for|strong="H3588"\w* \w me|strong="H4994"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H5971"\w* \w too|strong="H4480"\w* \w mighty|strong="H6099"\w* \w for|strong="H3588"\w* \w me|strong="H4994"\w*. \w Perhaps|strong="H3588"\w* \w I|strong="H3588"\w* \w shall|strong="H5971"\w* \w prevail|strong="H3201"\w*, \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w may|strong="H3201"\w* \w strike|strong="H5221"\w* \w them|strong="H5221"\w*, \w and|strong="H3212"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H3201"\w* \w drive|strong="H1644"\w* \w them|strong="H5221"\w* \w out|strong="H1644"\w* \w of|strong="H4480"\w* \w the|strong="H3588"\w* land; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w whom|strong="H5971"\w* \w you|strong="H3588"\w* \w bless|strong="H1288"\w* \w is|strong="H2088"\w* \w blessed|strong="H1288"\w*, \w and|strong="H3212"\w* \w he|strong="H1931"\w* \w whom|strong="H5971"\w* \w you|strong="H3588"\w* \w curse|strong="H1288"\w* \w is|strong="H2088"\w* \w cursed|strong="H1288"\w*.” +\p +\v 7 \w The|strong="H1697"\w* \w elders|strong="H2205"\w* \w of|strong="H3027"\w* \w Moab|strong="H4124"\w* \w and|strong="H3027"\w* \w the|strong="H1697"\w* \w elders|strong="H2205"\w* \w of|strong="H3027"\w* \w Midian|strong="H4080"\w* \w departed|strong="H3212"\w* \w with|strong="H1696"\w* \w the|strong="H1697"\w* rewards \w of|strong="H3027"\w* \w divination|strong="H7081"\w* \w in|strong="H3212"\w* \w their|strong="H3027"\w* \w hand|strong="H3027"\w*. \w They|strong="H1697"\w* \w came|strong="H3212"\w* \w to|strong="H1696"\w* \w Balaam|strong="H1109"\w*, \w and|strong="H3027"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H3027"\w* \w the|strong="H1697"\w* \w words|strong="H1697"\w* \w of|strong="H3027"\w* \w Balak|strong="H1111"\w*. +\p +\v 8 \w He|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H7725"\w*, “\w Lodge|strong="H3885"\w* \w here|strong="H6311"\w* \w this|strong="H1696"\w* \w night|strong="H3915"\w*, \w and|strong="H3068"\w* \w I|strong="H1697"\w* \w will|strong="H3068"\w* \w bring|strong="H7725"\w* \w you|strong="H7725"\w* \w word|strong="H1697"\w* \w again|strong="H7725"\w*, \w as|strong="H1697"\w* \w Yahweh|strong="H3068"\w* \w shall|strong="H3068"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H7725"\w*.” \w The|strong="H3068"\w* \w princes|strong="H8269"\w* \w of|strong="H3068"\w* \w Moab|strong="H4124"\w* \w stayed|strong="H3427"\w* \w with|strong="H5973"\w* \w Balaam|strong="H1109"\w*. +\p +\v 9 \w God|strong="H4310"\w* came \w to|strong="H5973"\w* \w Balaam|strong="H1109"\w*, \w and|strong="H1109"\w* said, “\w Who|strong="H4310"\w* \w are|strong="H4310"\w* these men \w with|strong="H5973"\w* \w you|strong="H5973"\w*?” +\p +\v 10 \w Balaam|strong="H1109"\w* said \w to|strong="H7971"\w* \w God|strong="H7971"\w*, “\w Balak|strong="H1111"\w* \w the|strong="H7971"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zippor|strong="H6834"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w*, \w has|strong="H4428"\w* said \w to|strong="H7971"\w* \w me|strong="H7971"\w*, +\v 11 ‘\w Behold|strong="H2009"\w*, \w the|strong="H3680"\w* \w people|strong="H5971"\w* \w that|strong="H5971"\w* \w has|strong="H5869"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H5869"\w* \w Egypt|strong="H4714"\w* \w covers|strong="H3680"\w* \w the|strong="H3680"\w* \w surface|strong="H5869"\w* \w of|strong="H5869"\w* \w the|strong="H3680"\w* earth. \w Now|strong="H6258"\w*, \w come|strong="H3318"\w* \w curse|strong="H6895"\w* \w them|strong="H3318"\w* \w for|strong="H4714"\w* \w me|strong="H3318"\w*. Perhaps \w I|strong="H2009"\w* \w shall|strong="H5971"\w* \w be|strong="H3201"\w* \w able|strong="H3201"\w* \w to|strong="H3318"\w* \w fight|strong="H3898"\w* \w against|strong="H3898"\w* \w them|strong="H3318"\w*, \w and|strong="H3212"\w* \w shall|strong="H5971"\w* \w drive|strong="H1644"\w* \w them|strong="H3318"\w* \w out|strong="H3318"\w*.’” +\p +\v 12 \w God|strong="H3808"\w* said \w to|strong="H3212"\w* \w Balaam|strong="H1109"\w*, “\w You|strong="H3588"\w* \w shall|strong="H5971"\w* \w not|strong="H3808"\w* \w go|strong="H3212"\w* \w with|strong="H5973"\w* \w them|strong="H3588"\w*. \w You|strong="H3588"\w* \w shall|strong="H5971"\w* \w not|strong="H3808"\w* \w curse|strong="H1288"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H5971"\w* \w blessed|strong="H1288"\w*.” +\p +\v 13 \w Balaam|strong="H1109"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w in|strong="H1980"\w* \w the|strong="H3588"\w* \w morning|strong="H1242"\w*, \w and|strong="H1980"\w* said \w to|strong="H1980"\w* \w the|strong="H3588"\w* \w princes|strong="H8269"\w* \w of|strong="H3068"\w* \w Balak|strong="H1111"\w*, “\w Go|strong="H1980"\w* \w to|strong="H1980"\w* \w your|strong="H3068"\w* land; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w refuses|strong="H3985"\w* \w to|strong="H1980"\w* \w permit|strong="H5414"\w* \w me|strong="H5414"\w* \w to|strong="H1980"\w* \w go|strong="H1980"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*.” +\p +\v 14 \w The|strong="H6965"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w Moab|strong="H4124"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w*, \w and|strong="H1980"\w* they \w went|strong="H1980"\w* \w to|strong="H1980"\w* \w Balak|strong="H1111"\w*, \w and|strong="H1980"\w* said, “\w Balaam|strong="H1109"\w* \w refuses|strong="H3985"\w* \w to|strong="H1980"\w* \w come|strong="H1980"\w* \w with|strong="H5973"\w* \w us|strong="H1980"\w*.” +\p +\v 15 \w Balak|strong="H1111"\w* \w again|strong="H5750"\w* \w sent|strong="H7971"\w* \w princes|strong="H8269"\w*, \w more|strong="H3254"\w*, \w and|strong="H7971"\w* \w more|strong="H3254"\w* \w honorable|strong="H3513"\w* \w than|strong="H7227"\w* they. +\v 16 \w They|strong="H3541"\w* \w came|strong="H1980"\w* \w to|strong="H1980"\w* \w Balaam|strong="H1109"\w*, \w and|strong="H1121"\w* said \w to|strong="H1980"\w* \w him|strong="H1980"\w*, “\w Balak|strong="H1111"\w* \w the|strong="H3541"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zippor|strong="H6834"\w* \w says|strong="H3541"\w*, ‘\w Please|strong="H4994"\w* \w let|strong="H4994"\w* nothing \w hinder|strong="H4513"\w* \w you|strong="H4994"\w* \w from|strong="H1980"\w* \w coming|strong="H1980"\w* \w to|strong="H1980"\w* \w me|strong="H4994"\w*, +\v 17 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H5971"\w* \w promote|strong="H6213"\w* \w you|strong="H3588"\w* \w to|strong="H3212"\w* \w very|strong="H3966"\w* \w great|strong="H3966"\w* \w honor|strong="H3513"\w*, \w and|strong="H3212"\w* \w whatever|strong="H3605"\w* \w you|strong="H3588"\w* say \w to|strong="H3212"\w* \w me|strong="H4994"\w* \w I|strong="H3588"\w* \w will|strong="H5971"\w* \w do|strong="H6213"\w*. \w Please|strong="H4994"\w* \w come|strong="H3212"\w* \w therefore|strong="H3588"\w*, \w and|strong="H3212"\w* \w curse|strong="H6895"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w for|strong="H3588"\w* \w me|strong="H4994"\w*.’” +\p +\v 18 \w Balaam|strong="H1109"\w* \w answered|strong="H6030"\w* \w the|strong="H5414"\w* \w servants|strong="H5650"\w* \w of|strong="H1004"\w* \w Balak|strong="H1111"\w*, “If \w Balak|strong="H1111"\w* \w would|strong="H3068"\w* \w give|strong="H5414"\w* \w me|strong="H5414"\w* \w his|strong="H5414"\w* \w house|strong="H1004"\w* \w full|strong="H4393"\w* \w of|strong="H1004"\w* \w silver|strong="H3701"\w* \w and|strong="H3068"\w* \w gold|strong="H2091"\w*, \w I|strong="H5414"\w* \w can|strong="H3201"\w*’t \w go|strong="H5674"\w* \w beyond|strong="H5674"\w* \w the|strong="H5414"\w* \w word|strong="H6310"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w* \w my|strong="H5414"\w* \w God|strong="H3068"\w*, \w to|strong="H3201"\w* \w do|strong="H6213"\w* \w less|strong="H6996"\w* \w or|strong="H3808"\w* \w more|strong="H1419"\w*. +\v 19 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w please|strong="H4994"\w* \w stay|strong="H3427"\w* \w here|strong="H2088"\w* \w tonight|strong="H3915"\w* \w as|strong="H1571"\w* \w well|strong="H1571"\w*, \w that|strong="H3045"\w* \w I|strong="H6258"\w* \w may|strong="H4994"\w* \w know|strong="H3045"\w* \w what|strong="H4100"\w* \w else|strong="H3254"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H4994"\w*.” +\p +\v 20 God \w came|strong="H3212"\w* \w to|strong="H1696"\w* \w Balaam|strong="H1109"\w* \w at|strong="H6213"\w* \w night|strong="H3915"\w*, \w and|strong="H6965"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H7121"\w*, “If \w the|strong="H6213"\w* \w men|strong="H6213"\w* \w have|strong="H1697"\w* \w come|strong="H3212"\w* \w to|strong="H1696"\w* \w call|strong="H7121"\w* \w you|strong="H6213"\w*, \w rise|strong="H6965"\w* \w up|strong="H6965"\w*, \w go|strong="H3212"\w* \w with|strong="H6213"\w* \w them|strong="H6213"\w*; \w but|strong="H1696"\w* only \w the|strong="H6213"\w* \w word|strong="H1697"\w* \w which|strong="H1697"\w* \w I|strong="H1697"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H6213"\w*, \w that|strong="H1697"\w* \w you|strong="H6213"\w* \w shall|strong="H1697"\w* \w do|strong="H6213"\w*.” +\p +\v 21 \w Balaam|strong="H1109"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w in|strong="H3212"\w* \w the|strong="H6965"\w* \w morning|strong="H1242"\w*, \w and|strong="H6965"\w* \w saddled|strong="H2280"\w* \w his|strong="H6965"\w* donkey, \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w with|strong="H5973"\w* \w the|strong="H6965"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w Moab|strong="H4124"\w*. +\v 22 \w God|strong="H3068"\w*’s anger \w burned|strong="H2734"\w* \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w went|strong="H1980"\w*; \w and|strong="H1980"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w placed|strong="H7392"\w* \w himself|strong="H1931"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w* \w as|strong="H3068"\w* \w an|strong="H3588"\w* \w adversary|strong="H7854"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*. \w Now|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H3068"\w* \w riding|strong="H7392"\w* \w on|strong="H5921"\w* \w his|strong="H3068"\w* donkey, \w and|strong="H1980"\w* \w his|strong="H3068"\w* \w two|strong="H8147"\w* \w servants|strong="H5288"\w* \w were|strong="H5288"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w*. +\v 23 \w The|strong="H7200"\w* donkey \w saw|strong="H7200"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w standing|strong="H5324"\w* \w in|strong="H3068"\w* \w the|strong="H7200"\w* \w way|strong="H1870"\w*, \w with|strong="H3068"\w* \w his|strong="H3068"\w* \w sword|strong="H2719"\w* \w drawn|strong="H8025"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w*; \w and|strong="H3068"\w* \w the|strong="H7200"\w* donkey \w turned|strong="H5186"\w* \w out|strong="H5186"\w* \w of|strong="H3068"\w* \w the|strong="H7200"\w* \w path|strong="H1870"\w*, \w and|strong="H3068"\w* \w went|strong="H3212"\w* \w into|strong="H3212"\w* \w the|strong="H7200"\w* \w field|strong="H7704"\w*. \w Balaam|strong="H1109"\w* \w struck|strong="H5221"\w* \w the|strong="H7200"\w* donkey, \w to|strong="H3068"\w* \w turn|strong="H5186"\w* \w her|strong="H7200"\w* \w into|strong="H3212"\w* \w the|strong="H7200"\w* \w path|strong="H1870"\w*. +\v 24 \w Then|strong="H2088"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w stood|strong="H5975"\w* \w in|strong="H3068"\w* \w a|strong="H3068"\w* \w narrow|strong="H4934"\w* \w path|strong="H4934"\w* between \w the|strong="H3068"\w* \w vineyards|strong="H3754"\w*, \w a|strong="H3068"\w* \w wall|strong="H1447"\w* \w being|strong="H3068"\w* \w on|strong="H3068"\w* \w this|strong="H2088"\w* \w side|strong="H2088"\w*, \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w wall|strong="H1447"\w* \w on|strong="H3068"\w* \w that|strong="H3068"\w* \w side|strong="H2088"\w*. +\v 25 \w The|strong="H7200"\w* donkey \w saw|strong="H7200"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w*, \w and|strong="H3068"\w* she \w thrust|strong="H5221"\w* herself \w to|strong="H3068"\w* \w the|strong="H7200"\w* \w wall|strong="H7023"\w*, \w and|strong="H3068"\w* \w crushed|strong="H3905"\w* \w Balaam|strong="H1109"\w*’s \w foot|strong="H7272"\w* \w against|strong="H3068"\w* \w the|strong="H7200"\w* \w wall|strong="H7023"\w*. \w He|strong="H3068"\w* \w struck|strong="H5221"\w* \w her|strong="H7200"\w* \w again|strong="H3254"\w*. +\p +\v 26 \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w went|strong="H5674"\w* \w further|strong="H3254"\w*, \w and|strong="H3068"\w* \w stood|strong="H5975"\w* \w in|strong="H3068"\w* \w a|strong="H3068"\w* \w narrow|strong="H6862"\w* \w place|strong="H4725"\w*, \w where|strong="H4725"\w* \w there|strong="H5975"\w* \w was|strong="H3068"\w* \w no|strong="H5975"\w* \w way|strong="H1870"\w* \w to|strong="H3068"\w* \w turn|strong="H5186"\w* either \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w or|strong="H3225"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w left|strong="H8040"\w*. +\v 27 \w The|strong="H7200"\w* donkey \w saw|strong="H7200"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w*, \w and|strong="H3068"\w* she \w lay|strong="H7257"\w* \w down|strong="H5221"\w* \w under|strong="H8478"\w* \w Balaam|strong="H1109"\w*. \w Balaam|strong="H1109"\w*’s anger \w burned|strong="H2734"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w struck|strong="H5221"\w* \w the|strong="H7200"\w* donkey \w with|strong="H3068"\w* \w his|strong="H3068"\w* \w staff|strong="H4731"\w*. +\p +\v 28 \w Yahweh|strong="H3068"\w* \w opened|strong="H6605"\w* \w the|strong="H3588"\w* \w mouth|strong="H6310"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* donkey, \w and|strong="H3068"\w* \w she|strong="H3588"\w* \w said|strong="H6310"\w* \w to|strong="H3068"\w* \w Balaam|strong="H1109"\w*, “\w What|strong="H4100"\w* \w have|strong="H3068"\w* \w I|strong="H3588"\w* \w done|strong="H6213"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w struck|strong="H5221"\w* \w me|strong="H6213"\w* \w these|strong="H2088"\w* \w three|strong="H7969"\w* \w times|strong="H7272"\w*?” +\p +\v 29 \w Balaam|strong="H1109"\w* said \w to|strong="H3027"\w* \w the|strong="H3588"\w* donkey, “\w Because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3426"\w* \w mocked|strong="H5953"\w* \w me|strong="H2026"\w*, \w I|strong="H3588"\w* wish \w there|strong="H3426"\w* \w were|strong="H3027"\w* \w a|strong="H3068"\w* \w sword|strong="H2719"\w* \w in|strong="H3027"\w* \w my|strong="H3588"\w* \w hand|strong="H3027"\w*, \w for|strong="H3588"\w* \w now|strong="H6258"\w* \w I|strong="H3588"\w* \w would|strong="H3863"\w* \w have|strong="H3426"\w* \w killed|strong="H2026"\w* \w you|strong="H3588"\w*.” +\p +\v 30 \w The|strong="H5921"\w* donkey said \w to|strong="H5704"\w* \w Balaam|strong="H1109"\w*, “Am \w I|strong="H3117"\w* \w not|strong="H3808"\w* \w your|strong="H5921"\w* donkey, \w on|strong="H5921"\w* \w which|strong="H2088"\w* \w you|strong="H5921"\w* \w have|strong="H3117"\w* \w ridden|strong="H7392"\w* \w all|strong="H5704"\w* \w your|strong="H5921"\w* \w life|strong="H3117"\w* \w long|strong="H5704"\w* \w until|strong="H5704"\w* \w today|strong="H3117"\w*? \w Was|strong="H3117"\w* \w I|strong="H3117"\w* \w ever|strong="H3117"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* habit \w of|strong="H3117"\w* \w doing|strong="H6213"\w* \w so|strong="H6213"\w* \w to|strong="H5704"\w* \w you|strong="H5921"\w*?” +\p \w He|strong="H3117"\w* said, “\w No|strong="H3808"\w*.” +\p +\v 31 \w Then|strong="H7200"\w* \w Yahweh|strong="H3068"\w* \w opened|strong="H1540"\w* \w the|strong="H7200"\w* \w eyes|strong="H5869"\w* \w of|strong="H3068"\w* \w Balaam|strong="H1109"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w saw|strong="H7200"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w standing|strong="H5324"\w* \w in|strong="H3068"\w* \w the|strong="H7200"\w* \w way|strong="H1870"\w*, \w with|strong="H3068"\w* \w his|strong="H3068"\w* \w sword|strong="H2719"\w* \w drawn|strong="H8025"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w*; \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w bowed|strong="H7812"\w* \w his|strong="H3068"\w* \w head|strong="H6915"\w*, \w and|strong="H3068"\w* fell \w on|strong="H1870"\w* \w his|strong="H3068"\w* \w face|strong="H5869"\w*. +\v 32 \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H5921"\w*, “\w Why|strong="H4100"\w* \w have|strong="H3068"\w* \w you|strong="H3588"\w* \w struck|strong="H5221"\w* \w your|strong="H3068"\w* donkey \w these|strong="H2088"\w* \w three|strong="H7969"\w* \w times|strong="H7272"\w*? \w Behold|strong="H2009"\w*, \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w as|strong="H3068"\w* \w an|strong="H5221"\w* \w adversary|strong="H7854"\w*, \w because|strong="H3588"\w* \w your|strong="H3068"\w* \w way|strong="H1870"\w* \w is|strong="H3068"\w* \w perverse|strong="H3399"\w* \w before|strong="H5048"\w* \w me|strong="H5921"\w*. +\v 33 \w The|strong="H6440"\w* donkey \w saw|strong="H7200"\w* \w me|strong="H6440"\w*, \w and|strong="H6440"\w* \w turned|strong="H5186"\w* \w away|strong="H5186"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w these|strong="H2088"\w* \w three|strong="H7969"\w* \w times|strong="H7272"\w*. \w Unless|strong="H3588"\w* \w she|strong="H3588"\w* \w had|strong="H3588"\w* \w turned|strong="H5186"\w* \w away|strong="H5186"\w* \w from|strong="H6440"\w* \w me|strong="H6440"\w*, \w surely|strong="H3588"\w* \w now|strong="H6258"\w* \w I|strong="H3588"\w* \w would|strong="H2421"\w* \w have|strong="H1571"\w* \w killed|strong="H2026"\w* \w you|strong="H3588"\w*, \w and|strong="H6440"\w* \w saved|strong="H2421"\w* \w her|strong="H7200"\w* \w alive|strong="H2421"\w*.” +\p +\v 34 \w Balaam|strong="H1109"\w* said \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w*, “\w I|strong="H3588"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* didn’t \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w stood|strong="H5324"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w against|strong="H7125"\w* \w me|strong="H7725"\w*. \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w if|strong="H3588"\w* \w it|strong="H3588"\w* \w displeases|strong="H5869"\w* \w you|strong="H3588"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w go|strong="H7725"\w* \w back|strong="H7725"\w* \w again|strong="H7725"\w*.” +\p +\v 35 \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Balaam|strong="H1109"\w*, “\w Go|strong="H3212"\w* \w with|strong="H5973"\w* \w the|strong="H3068"\w* \w men|strong="H8269"\w*; \w but|strong="H1696"\w* \w you|strong="H5973"\w* \w shall|strong="H3068"\w* only \w speak|strong="H1696"\w* \w the|strong="H3068"\w* \w word|strong="H1697"\w* \w that|strong="H3068"\w* \w I|strong="H1697"\w* \w shall|strong="H3068"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H5973"\w*.” +\p \w So|strong="H1697"\w* \w Balaam|strong="H1109"\w* \w went|strong="H3212"\w* \w with|strong="H5973"\w* \w the|strong="H3068"\w* \w princes|strong="H8269"\w* \w of|strong="H3068"\w* \w Balak|strong="H1111"\w*. +\v 36 \w When|strong="H3588"\w* \w Balak|strong="H1111"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w Balaam|strong="H1109"\w* \w had|strong="H3588"\w* \w come|strong="H3318"\w*, \w he|strong="H3588"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w meet|strong="H7125"\w* \w him|strong="H5921"\w* \w to|strong="H3318"\w* \w the|strong="H5921"\w* \w City|strong="H5892"\w* \w of|strong="H5892"\w* \w Moab|strong="H4124"\w*, \w which|strong="H5892"\w* \w is|strong="H5892"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w of|strong="H5892"\w* \w the|strong="H5921"\w* Arnon, \w which|strong="H5892"\w* \w is|strong="H5892"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w utmost|strong="H7097"\w* \w part|strong="H7097"\w* \w of|strong="H5892"\w* \w the|strong="H5921"\w* \w border|strong="H1366"\w*. +\v 37 \w Balak|strong="H1111"\w* \w said|strong="H7121"\w* \w to|strong="H1980"\w* \w Balaam|strong="H1109"\w*, “Didn’t \w I|strong="H3201"\w* \w earnestly|strong="H7971"\w* \w send|strong="H7971"\w* \w for|strong="H7121"\w* \w you|strong="H7971"\w* \w to|strong="H1980"\w* \w summon|strong="H7121"\w* \w you|strong="H7971"\w*? \w Why|strong="H4100"\w* didn’t \w you|strong="H7971"\w* \w come|strong="H1980"\w* \w to|strong="H1980"\w* \w me|strong="H7971"\w*? \w Am|strong="H1980"\w* \w I|strong="H3201"\w* \w not|strong="H3808"\w* \w able|strong="H3201"\w* \w indeed|strong="H3808"\w* \w to|strong="H1980"\w* \w promote|strong="H3513"\w* \w you|strong="H7971"\w* \w to|strong="H1980"\w* \w honor|strong="H3513"\w*?” +\p +\v 38 \w Balaam|strong="H1109"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Balak|strong="H1111"\w*, “\w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w have|strong="H1697"\w* \w come|strong="H3201"\w* \w to|strong="H1696"\w* \w you|strong="H7760"\w*. \w Have|strong="H1697"\w* \w I|strong="H2009"\w* \w now|strong="H6258"\w* \w any|strong="H3972"\w* \w power|strong="H3201"\w* \w at|strong="H3201"\w* \w all|strong="H1697"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w anything|strong="H1697"\w*? \w I|strong="H2009"\w* \w will|strong="H1697"\w* \w speak|strong="H1696"\w* \w the|strong="H7760"\w* \w word|strong="H1697"\w* \w that|strong="H1697"\w* God \w puts|strong="H7760"\w* \w in|strong="H1696"\w* \w my|strong="H7760"\w* \w mouth|strong="H6310"\w*.” +\p +\v 39 \w Balaam|strong="H1109"\w* \w went|strong="H3212"\w* \w with|strong="H5973"\w* \w Balak|strong="H1111"\w*, \w and|strong="H3212"\w* they \w came|strong="H3212"\w* \w to|strong="H3212"\w* Kiriath Huzoth. +\v 40 \w Balak|strong="H1111"\w* \w sacrificed|strong="H2076"\w* \w cattle|strong="H1241"\w* \w and|strong="H7971"\w* \w sheep|strong="H6629"\w*, \w and|strong="H7971"\w* \w sent|strong="H7971"\w* \w to|strong="H7971"\w* \w Balaam|strong="H1109"\w*, \w and|strong="H7971"\w* \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w princes|strong="H8269"\w* \w who|strong="H8269"\w* \w were|strong="H8269"\w* \w with|strong="H1241"\w* \w him|strong="H7971"\w*. +\v 41 \w In|strong="H5971"\w* \w the|strong="H7200"\w* \w morning|strong="H1242"\w*, \w Balak|strong="H1111"\w* \w took|strong="H3947"\w* \w Balaam|strong="H1109"\w*, \w and|strong="H5971"\w* \w brought|strong="H5927"\w* \w him|strong="H7200"\w* \w up|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H7200"\w* high places \w of|strong="H5971"\w* \w Baal|strong="H1120"\w*; \w and|strong="H5971"\w* \w he|strong="H8033"\w* \w saw|strong="H7200"\w* \w from|strong="H5927"\w* \w there|strong="H8033"\w* \w part|strong="H7097"\w* \w of|strong="H5971"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w*. +\c 23 +\p +\v 1 \w Balaam|strong="H1109"\w* said \w to|strong="H3559"\w* \w Balak|strong="H1111"\w*, “\w Build|strong="H1129"\w* \w here|strong="H2088"\w* \w seven|strong="H7651"\w* \w altars|strong="H4196"\w* \w for|strong="H4196"\w* \w me|strong="H3559"\w*, \w and|strong="H4196"\w* \w prepare|strong="H3559"\w* \w here|strong="H2088"\w* \w seven|strong="H7651"\w* \w bulls|strong="H6499"\w* \w and|strong="H4196"\w* \w seven|strong="H7651"\w* rams \w for|strong="H4196"\w* \w me|strong="H3559"\w*.” +\p +\v 2 \w Balak|strong="H1111"\w* \w did|strong="H6213"\w* \w as|strong="H6213"\w* \w Balaam|strong="H1109"\w* \w had|strong="H1109"\w* \w spoken|strong="H1696"\w*; \w and|strong="H4196"\w* \w Balak|strong="H1111"\w* \w and|strong="H4196"\w* \w Balaam|strong="H1109"\w* \w offered|strong="H5927"\w* \w on|strong="H5927"\w* \w every|strong="H6213"\w* \w altar|strong="H4196"\w* \w a|strong="H3068"\w* \w bull|strong="H6499"\w* \w and|strong="H4196"\w* \w a|strong="H3068"\w* ram. +\v 3 \w Balaam|strong="H1109"\w* \w said|strong="H1697"\w* \w to|strong="H3212"\w* \w Balak|strong="H1111"\w*, “\w Stand|strong="H3320"\w* \w by|strong="H5921"\w* \w your|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w and|strong="H3068"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w go|strong="H3212"\w*. Perhaps \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w come|strong="H3212"\w* \w to|strong="H3212"\w* \w meet|strong="H7125"\w* \w me|strong="H7200"\w*. \w Whatever|strong="H4100"\w* \w he|strong="H3068"\w* \w shows|strong="H7200"\w* \w me|strong="H7200"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w tell|strong="H5046"\w* \w you|strong="H5921"\w*.” +\p \w He|strong="H3068"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w a|strong="H3068"\w* \w bare|strong="H8205"\w* height. +\v 4 God \w met|strong="H7136"\w* \w Balaam|strong="H1109"\w*, \w and|strong="H4196"\w* \w he|strong="H4196"\w* said \w to|strong="H5927"\w* \w him|strong="H5927"\w*, “I \w have|strong="H6499"\w* \w prepared|strong="H6186"\w* \w the|strong="H5927"\w* \w seven|strong="H7651"\w* \w altars|strong="H4196"\w*, \w and|strong="H4196"\w* I \w have|strong="H6499"\w* \w offered|strong="H5927"\w* \w up|strong="H5927"\w* \w a|strong="H3068"\w* \w bull|strong="H6499"\w* \w and|strong="H4196"\w* \w a|strong="H3068"\w* ram \w on|strong="H5927"\w* \w every|strong="H5927"\w* \w altar|strong="H4196"\w*.” +\p +\v 5 \w Yahweh|strong="H3068"\w* \w put|strong="H7760"\w* \w a|strong="H3068"\w* \w word|strong="H1697"\w* \w in|strong="H3068"\w* \w Balaam|strong="H1109"\w*’s \w mouth|strong="H6310"\w*, \w and|strong="H3068"\w* \w said|strong="H1696"\w*, “\w Return|strong="H7725"\w* \w to|strong="H1696"\w* \w Balak|strong="H1111"\w*, \w and|strong="H3068"\w* \w thus|strong="H3541"\w* \w you|strong="H7725"\w* \w shall|strong="H3068"\w* \w speak|strong="H1696"\w*.” +\p +\v 6 \w He|strong="H1931"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w him|strong="H5921"\w*, \w and|strong="H7725"\w* \w behold|strong="H2009"\w*, \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w standing|strong="H5324"\w* \w by|strong="H5921"\w* \w his|strong="H3605"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w he|strong="H1931"\w*, \w and|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w Moab|strong="H4124"\w*. +\v 7 \w He|strong="H4480"\w* \w took|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w parable|strong="H4912"\w*, \w and|strong="H3478"\w* said, +\q1 “\w From|strong="H4480"\w* Aram \w has|strong="H3478"\w* \w Balak|strong="H1111"\w* \w brought|strong="H5375"\w* \w me|strong="H4480"\w*, +\q2 \w the|strong="H5375"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Moab|strong="H4124"\w* \w from|strong="H4480"\w* \w the|strong="H5375"\w* \w mountains|strong="H2042"\w* \w of|strong="H4428"\w* \w the|strong="H5375"\w* \w East|strong="H6924"\w*. +\q1 \w Come|strong="H3212"\w*, curse \w Jacob|strong="H3290"\w* \w for|strong="H4428"\w* \w me|strong="H4480"\w*. +\q2 \w Come|strong="H3212"\w*, \w defy|strong="H2194"\w* \w Israel|strong="H3478"\w*. +\q1 +\v 8 \w How|strong="H4100"\w* \w shall|strong="H3068"\w* \w I|strong="H3808"\w* \w curse|strong="H6895"\w* \w whom|strong="H6895"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w cursed|strong="H6895"\w*? +\q2 \w How|strong="H4100"\w* \w shall|strong="H3068"\w* \w I|strong="H3808"\w* \w defy|strong="H2194"\w* \w whom|strong="H6895"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w defied|strong="H2194"\w*? +\q1 +\v 9 \w For|strong="H3588"\w* \w from|strong="H1471"\w* \w the|strong="H7200"\w* \w top|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H7200"\w* \w rocks|strong="H6697"\w* \w I|strong="H3588"\w* \w see|strong="H7200"\w* \w him|strong="H7200"\w*. +\q2 \w From|strong="H1471"\w* \w the|strong="H7200"\w* \w hills|strong="H1389"\w* \w I|strong="H3588"\w* \w see|strong="H7200"\w* \w him|strong="H7200"\w*. +\q1 \w Behold|strong="H2005"\w*, \w it|strong="H3588"\w* \w is|strong="H7218"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w that|strong="H3588"\w* \w dwells|strong="H7931"\w* alone, +\q2 \w and|strong="H5971"\w* \w shall|strong="H5971"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* listed \w among|strong="H5971"\w* \w the|strong="H7200"\w* \w nations|strong="H1471"\w*. +\q1 +\v 10 \w Who|strong="H4310"\w* \w can|strong="H4310"\w* \w count|strong="H4487"\w* \w the|strong="H1961"\w* \w dust|strong="H6083"\w* \w of|strong="H4557"\w* \w Jacob|strong="H3290"\w*, +\q2 \w or|strong="H4194"\w* \w count|strong="H4487"\w* \w the|strong="H1961"\w* \w fourth|strong="H7255"\w* \w part|strong="H7255"\w* \w of|strong="H4557"\w* \w Israel|strong="H3478"\w*? +\q1 \w Let|strong="H5315"\w* \w me|strong="H5315"\w* \w die|strong="H4191"\w* \w the|strong="H1961"\w* \w death|strong="H4194"\w* \w of|strong="H4557"\w* \w the|strong="H1961"\w* \w righteous|strong="H3477"\w*! +\q2 \w Let|strong="H5315"\w* \w my|strong="H1961"\w* last end \w be|strong="H1961"\w* \w like|strong="H3644"\w* \w his|strong="H3478"\w*!” +\p +\v 11 \w Balak|strong="H1111"\w* said \w to|strong="H6213"\w* \w Balaam|strong="H1109"\w*, “\w What|strong="H4100"\w* \w have|strong="H3947"\w* \w you|strong="H3947"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w me|strong="H6213"\w*? \w I|strong="H2009"\w* \w took|strong="H3947"\w* \w you|strong="H3947"\w* \w to|strong="H6213"\w* \w curse|strong="H6895"\w* \w my|strong="H3947"\w* enemies, \w and|strong="H6213"\w* \w behold|strong="H2009"\w*, \w you|strong="H3947"\w* \w have|strong="H3947"\w* \w blessed|strong="H1288"\w* \w them|strong="H6213"\w* \w altogether|strong="H1288"\w*.” +\p +\v 12 \w He|strong="H3068"\w* \w answered|strong="H6030"\w* \w and|strong="H3068"\w* \w said|strong="H1696"\w*, “\w Must|strong="H3808"\w* \w I|strong="H7760"\w* \w not|strong="H3808"\w* \w take|strong="H8104"\w* \w heed|strong="H8104"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w puts|strong="H7760"\w* \w in|strong="H3068"\w* \w my|strong="H8104"\w* \w mouth|strong="H6310"\w*?” +\p +\v 13 \w Balak|strong="H1111"\w* said \w to|strong="H3212"\w* \w him|strong="H7200"\w*, “Please \w come|strong="H3212"\w* \w with|strong="H3212"\w* \w me|strong="H7200"\w* \w to|strong="H3212"\w* \w another|strong="H7200"\w* \w place|strong="H4725"\w*, \w where|strong="H8033"\w* \w you|strong="H3605"\w* \w may|strong="H3808"\w* \w see|strong="H7200"\w* \w them|strong="H7200"\w*. \w You|strong="H3605"\w* \w shall|strong="H3808"\w* \w see|strong="H7200"\w* \w just|strong="H3605"\w* \w part|strong="H7097"\w* \w of|strong="H4725"\w* \w them|strong="H7200"\w*, \w and|strong="H3212"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w* \w them|strong="H7200"\w* \w all|strong="H3605"\w*. \w Curse|strong="H6895"\w* \w them|strong="H7200"\w* \w from|strong="H3212"\w* \w there|strong="H8033"\w* \w for|strong="H3605"\w* \w me|strong="H7200"\w*.” +\p +\v 14 \w He|strong="H3947"\w* \w took|strong="H3947"\w* \w him|strong="H3947"\w* \w into|strong="H5927"\w* \w the|strong="H3947"\w* \w field|strong="H7704"\w* \w of|strong="H7218"\w* \w Zophim|strong="H6839"\w*, \w to|strong="H5927"\w* \w the|strong="H3947"\w* \w top|strong="H7218"\w* \w of|strong="H7218"\w* \w Pisgah|strong="H6449"\w*, \w and|strong="H7218"\w* \w built|strong="H1129"\w* \w seven|strong="H7651"\w* \w altars|strong="H4196"\w*, \w and|strong="H7218"\w* \w offered|strong="H5927"\w* \w up|strong="H5927"\w* \w a|strong="H3068"\w* \w bull|strong="H6499"\w* \w and|strong="H7218"\w* \w a|strong="H3068"\w* ram \w on|strong="H5927"\w* \w every|strong="H3947"\w* \w altar|strong="H4196"\w*. +\v 15 \w He|strong="H5921"\w* said \w to|strong="H5921"\w* \w Balak|strong="H1111"\w*, “\w Stand|strong="H3320"\w* \w here|strong="H3541"\w* \w by|strong="H5921"\w* \w your|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w while|strong="H3541"\w* \w I|strong="H3541"\w* \w meet|strong="H7136"\w* God \w over|strong="H5921"\w* \w there|strong="H3541"\w*.” +\p +\v 16 \w Yahweh|strong="H3068"\w* \w met|strong="H7136"\w* \w Balaam|strong="H1109"\w*, \w and|strong="H3068"\w* \w put|strong="H7760"\w* \w a|strong="H3068"\w* \w word|strong="H1697"\w* \w in|strong="H3068"\w* \w his|strong="H7760"\w* \w mouth|strong="H6310"\w*, \w and|strong="H3068"\w* \w said|strong="H1696"\w*, “\w Return|strong="H7725"\w* \w to|strong="H1696"\w* \w Balak|strong="H1111"\w*, \w and|strong="H3068"\w* \w say|strong="H1696"\w* \w this|strong="H3541"\w*.” +\p +\v 17 \w He|strong="H3068"\w* \w came|strong="H3068"\w* \w to|strong="H1696"\w* \w him|strong="H5921"\w*, \w and|strong="H3068"\w* \w behold|strong="H2009"\w*, \w he|strong="H3068"\w* \w was|strong="H3068"\w* \w standing|strong="H5324"\w* \w by|strong="H5921"\w* \w his|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w princes|strong="H8269"\w* \w of|strong="H3068"\w* \w Moab|strong="H4124"\w* \w with|strong="H3068"\w* \w him|strong="H5921"\w*. \w Balak|strong="H1111"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5921"\w*, “\w What|strong="H4100"\w* \w has|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w spoken|strong="H1696"\w*?” +\p +\v 18 \w He|strong="H5704"\w* \w took|strong="H5375"\w* \w up|strong="H6965"\w* \w his|strong="H5375"\w* \w parable|strong="H4912"\w*, \w and|strong="H1121"\w* \w said|strong="H8085"\w*, +\q1 “\w Rise|strong="H6965"\w* \w up|strong="H6965"\w*, \w Balak|strong="H1111"\w*, \w and|strong="H1121"\w* \w hear|strong="H8085"\w*! +\q2 \w Listen|strong="H8085"\w* \w to|strong="H5704"\w* \w me|strong="H6965"\w*, \w you|strong="H5704"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zippor|strong="H6834"\w*. +\q1 +\v 19 \w God|strong="H3808"\w* \w is|strong="H1931"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w*, \w that|strong="H1931"\w* \w he|strong="H1931"\w* \w should|strong="H6213"\w* \w lie|strong="H3576"\w*, +\q2 \w nor|strong="H3808"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w that|strong="H1931"\w* \w he|strong="H1931"\w* \w should|strong="H6213"\w* \w repent|strong="H5162"\w*. +\q1 \w Has|strong="H1696"\w* \w he|strong="H1931"\w* \w said|strong="H1696"\w*, \w and|strong="H1121"\w* \w he|strong="H1931"\w* won’t \w do|strong="H6213"\w* \w it|strong="H1931"\w*? +\q2 \w Or|strong="H3808"\w* \w has|strong="H1696"\w* \w he|strong="H1931"\w* \w spoken|strong="H1696"\w*, \w and|strong="H1121"\w* \w he|strong="H1931"\w* won’t \w make|strong="H6213"\w* \w it|strong="H1931"\w* \w good|strong="H6965"\w*? +\q1 +\v 20 \w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w have|strong="H3808"\w* \w received|strong="H3947"\w* \w a|strong="H3068"\w* command \w to|strong="H7725"\w* \w bless|strong="H1288"\w*. +\q2 \w He|strong="H3808"\w* \w has|strong="H2009"\w* \w blessed|strong="H1288"\w*, \w and|strong="H7725"\w* \w I|strong="H2009"\w* \w can|strong="H3947"\w*’t \w reverse|strong="H7725"\w* \w it|strong="H7725"\w*. +\q1 +\v 21 \w He|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w seen|strong="H7200"\w* \w iniquity|strong="H5999"\w* \w in|strong="H3478"\w* \w Jacob|strong="H3290"\w*. +\q2 \w Neither|strong="H3808"\w* \w has|strong="H3068"\w* \w he|strong="H3068"\w* \w seen|strong="H7200"\w* \w perverseness|strong="H5999"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\q1 \w Yahweh|strong="H3068"\w* \w his|strong="H3068"\w* \w God|strong="H3068"\w* \w is|strong="H3068"\w* \w with|strong="H5973"\w* \w him|strong="H7200"\w*. +\q2 \w The|strong="H7200"\w* \w shout|strong="H8643"\w* \w of|strong="H4428"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w is|strong="H3068"\w* \w among|strong="H5973"\w* \w them|strong="H7200"\w*. +\q1 +\v 22 God \w brings|strong="H3318"\w* \w them|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w Egypt|strong="H4714"\w*. +\q2 \w He|strong="H3318"\w* \w has|strong="H3318"\w* \w as|strong="H3318"\w* \w it|strong="H3318"\w* \w were|strong="H4714"\w* \w the|strong="H3318"\w* \w strength|strong="H8443"\w* \w of|strong="H3318"\w* \w the|strong="H3318"\w* \w wild|strong="H7214"\w* \w ox|strong="H7214"\w*. +\q1 +\v 23 \w Surely|strong="H3588"\w* there \w is|strong="H4100"\w* \w no|strong="H3808"\w* \w enchantment|strong="H5173"\w* \w with|strong="H3478"\w* \w Jacob|strong="H3290"\w*; +\q2 \w neither|strong="H3808"\w* \w is|strong="H4100"\w* there \w any|strong="H3588"\w* \w divination|strong="H7081"\w* \w with|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\q1 \w Now|strong="H3588"\w* \w it|strong="H3588"\w* \w shall|strong="H3478"\w* \w be|strong="H3808"\w* said \w of|strong="H6256"\w* \w Jacob|strong="H3290"\w* \w and|strong="H3478"\w* \w of|strong="H6256"\w* \w Israel|strong="H3478"\w*, +\q2 ‘\w What|strong="H4100"\w* \w has|strong="H3478"\w* \w God|strong="H3808"\w* \w done|strong="H6466"\w*!’ +\q1 +\v 24 \w Behold|strong="H2005"\w*, \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w rises|strong="H6965"\w* \w up|strong="H6965"\w* \w as|strong="H5704"\w* \w a|strong="H3068"\w* \w lioness|strong="H3833"\w*. +\q2 \w As|strong="H5704"\w* \w a|strong="H3068"\w* \w lion|strong="H3833"\w* \w he|strong="H5704"\w* \w lifts|strong="H5375"\w* \w himself|strong="H8354"\w* \w up|strong="H6965"\w*. +\q1 \w He|strong="H5704"\w* \w shall|strong="H5971"\w* \w not|strong="H3808"\w* \w lie|strong="H7901"\w* \w down|strong="H7901"\w* \w until|strong="H5704"\w* \w he|strong="H5704"\w* eats \w of|strong="H5971"\w* \w the|strong="H5375"\w* \w prey|strong="H2964"\w*, +\q2 \w and|strong="H6965"\w* \w drinks|strong="H8354"\w* \w the|strong="H5375"\w* \w blood|strong="H1818"\w* \w of|strong="H5971"\w* \w the|strong="H5375"\w* \w slain|strong="H2491"\w*.” +\p +\v 25 \w Balak|strong="H1111"\w* said \w to|strong="H3808"\w* \w Balaam|strong="H1109"\w*, “\w Neither|strong="H3808"\w* \w curse|strong="H6895"\w* \w them|strong="H1288"\w* \w at|strong="H3808"\w* \w all|strong="H1288"\w*, \w nor|strong="H3808"\w* \w bless|strong="H1288"\w* \w them|strong="H1288"\w* \w at|strong="H3808"\w* \w all|strong="H1288"\w*.” +\p +\v 26 \w But|strong="H3808"\w* \w Balaam|strong="H1109"\w* \w answered|strong="H6030"\w* \w Balak|strong="H1111"\w*, “Didn’t \w I|strong="H3808"\w* \w tell|strong="H1696"\w* \w you|strong="H3605"\w*, \w saying|strong="H1696"\w*, ‘\w All|strong="H3605"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w speaks|strong="H1696"\w*, \w that|strong="H3605"\w* \w I|strong="H3808"\w* \w must|strong="H3808"\w* \w do|strong="H6213"\w*’?” +\p +\v 27 \w Balak|strong="H1111"\w* said \w to|strong="H3212"\w* \w Balaam|strong="H1109"\w*, “\w Come|strong="H3212"\w* \w now|strong="H4994"\w*, \w I|strong="H3212"\w* \w will|strong="H5869"\w* \w take|strong="H3947"\w* \w you|strong="H3947"\w* \w to|strong="H3212"\w* another \w place|strong="H4725"\w*; perhaps \w it|strong="H8033"\w* \w will|strong="H5869"\w* \w please|strong="H4994"\w* God \w that|strong="H5869"\w* \w you|strong="H3947"\w* \w may|strong="H4994"\w* \w curse|strong="H6895"\w* \w them|strong="H3947"\w* \w for|strong="H5869"\w* \w me|strong="H4994"\w* \w from|strong="H3947"\w* \w there|strong="H8033"\w*.” +\p +\v 28 \w Balak|strong="H1111"\w* \w took|strong="H3947"\w* \w Balaam|strong="H1109"\w* \w to|strong="H5921"\w* \w the|strong="H6440"\w* \w top|strong="H7218"\w* \w of|strong="H7218"\w* \w Peor|strong="H6465"\w*, \w that|strong="H7218"\w* \w looks|strong="H8259"\w* \w down|strong="H8259"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w desert|strong="H3452"\w*. +\v 29 \w Balaam|strong="H1109"\w* said \w to|strong="H3559"\w* \w Balak|strong="H1111"\w*, “\w Build|strong="H1129"\w* \w seven|strong="H7651"\w* \w altars|strong="H4196"\w* \w for|strong="H4196"\w* \w me|strong="H3559"\w* \w here|strong="H2088"\w*, \w and|strong="H4196"\w* \w prepare|strong="H3559"\w* \w seven|strong="H7651"\w* \w bulls|strong="H6499"\w* \w and|strong="H4196"\w* \w seven|strong="H7651"\w* rams \w for|strong="H4196"\w* \w me|strong="H3559"\w* \w here|strong="H2088"\w*.” +\p +\v 30 \w Balak|strong="H1111"\w* \w did|strong="H6213"\w* \w as|strong="H6213"\w* \w Balaam|strong="H1109"\w* \w had|strong="H1109"\w* said, \w and|strong="H4196"\w* \w offered|strong="H5927"\w* \w up|strong="H5927"\w* \w a|strong="H3068"\w* \w bull|strong="H6499"\w* \w and|strong="H4196"\w* \w a|strong="H3068"\w* ram \w on|strong="H5927"\w* \w every|strong="H6213"\w* \w altar|strong="H4196"\w*. +\c 24 +\p +\v 1 \w When|strong="H3588"\w* \w Balaam|strong="H1109"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w pleased|strong="H5869"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H1980"\w* \w bless|strong="H1288"\w* \w Israel|strong="H3478"\w*, \w he|strong="H3588"\w* didn’t \w go|strong="H1980"\w*, \w as|strong="H3068"\w* \w at|strong="H3478"\w* \w the|strong="H6440"\w* \w other|strong="H6471"\w* \w times|strong="H6471"\w*, \w to|strong="H1980"\w* use divination, \w but|strong="H3588"\w* \w he|strong="H3588"\w* \w set|strong="H7896"\w* \w his|strong="H3068"\w* \w face|strong="H6440"\w* \w toward|strong="H6440"\w* \w the|strong="H6440"\w* \w wilderness|strong="H4057"\w*. +\v 2 \w Balaam|strong="H1109"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w eyes|strong="H5869"\w*, \w and|strong="H3478"\w* \w he|strong="H5921"\w* \w saw|strong="H7200"\w* \w Israel|strong="H3478"\w* \w dwelling|strong="H7931"\w* \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w their|strong="H5375"\w* \w tribes|strong="H7626"\w*; \w and|strong="H3478"\w* \w the|strong="H5921"\w* \w Spirit|strong="H7307"\w* \w of|strong="H7626"\w* God \w came|strong="H1961"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 3 \w He|strong="H1121"\w* \w took|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w parable|strong="H4912"\w*, \w and|strong="H1121"\w* \w said|strong="H5002"\w*, +\q1 “\w Balaam|strong="H1109"\w* \w the|strong="H5002"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Beor|strong="H1160"\w* \w says|strong="H5002"\w*, +\q2 \w the|strong="H5002"\w* \w man|strong="H1397"\w* \w whose|strong="H1397"\w* \w eyes|strong="H5869"\w* \w are|strong="H1121"\w* \w open|strong="H8365"\w* \w says|strong="H5002"\w*; +\q1 +\v 4 he \w says|strong="H5002"\w*, \w who|strong="H7706"\w* \w hears|strong="H8085"\w* \w the|strong="H5002"\w* words \w of|strong="H5869"\w* God, +\q2 \w who|strong="H7706"\w* \w sees|strong="H2372"\w* \w the|strong="H5002"\w* \w vision|strong="H4236"\w* \w of|strong="H5869"\w* \w the|strong="H5002"\w* \w Almighty|strong="H7706"\w*, +\q2 \w falling|strong="H5307"\w* \w down|strong="H5307"\w*, \w and|strong="H5869"\w* having \w his|strong="H8085"\w* \w eyes|strong="H5869"\w* \w open|strong="H1540"\w*: +\q1 +\v 5 \w How|strong="H4100"\w* \w goodly|strong="H2895"\w* \w are|strong="H3478"\w* \w your|strong="H3478"\w* \w tents|strong="H4908"\w*, \w Jacob|strong="H3290"\w*, +\q2 \w and|strong="H3478"\w* \w your|strong="H3478"\w* \w dwellings|strong="H4908"\w*, \w Israel|strong="H3478"\w*! +\q1 +\v 6 \w As|strong="H3068"\w* \w valleys|strong="H5158"\w* \w they|strong="H3068"\w* \w are|strong="H3068"\w* \w spread|strong="H5186"\w* \w out|strong="H5186"\w*, +\q2 \w as|strong="H3068"\w* \w gardens|strong="H1593"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* riverside, +\q2 \w as|strong="H3068"\w* aloes \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w planted|strong="H5193"\w*, +\q2 \w as|strong="H3068"\w* cedar trees \w beside|strong="H5921"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w*. +\q1 +\v 7 \w Water|strong="H4325"\w* \w shall|strong="H4428"\w* \w flow|strong="H5140"\w* \w from|strong="H4325"\w* \w his|strong="H5375"\w* \w buckets|strong="H1805"\w*. +\q2 \w His|strong="H5375"\w* \w seed|strong="H2233"\w* \w shall|strong="H4428"\w* \w be|strong="H4428"\w* \w in|strong="H4428"\w* \w many|strong="H7227"\w* \w waters|strong="H4325"\w*. +\q1 \w His|strong="H5375"\w* \w king|strong="H4428"\w* \w shall|strong="H4428"\w* \w be|strong="H4428"\w* \w higher|strong="H7311"\w* \w than|strong="H4428"\w* Agag. +\q2 \w His|strong="H5375"\w* \w kingdom|strong="H4438"\w* \w shall|strong="H4428"\w* \w be|strong="H4428"\w* \w exalted|strong="H7311"\w*. +\q1 +\v 8 God \w brings|strong="H3318"\w* \w him|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w Egypt|strong="H4714"\w*. +\q2 \w He|strong="H3318"\w* \w has|strong="H3318"\w* \w as|strong="H3318"\w* \w it|strong="H3318"\w* \w were|strong="H4714"\w* \w the|strong="H3318"\w* \w strength|strong="H8443"\w* \w of|strong="H3318"\w* \w the|strong="H3318"\w* \w wild|strong="H7214"\w* \w ox|strong="H7214"\w*. +\q1 \w He|strong="H3318"\w* \w shall|strong="H1471"\w* consume \w the|strong="H3318"\w* \w nations|strong="H1471"\w* \w his|strong="H3318"\w* \w adversaries|strong="H6862"\w*, +\q2 \w shall|strong="H1471"\w* \w break|strong="H1633"\w* \w their|strong="H3318"\w* \w bones|strong="H6106"\w* \w in|strong="H1471"\w* pieces, +\q2 \w and|strong="H4714"\w* \w pierce|strong="H4272"\w* \w them|strong="H3318"\w* \w with|strong="H3318"\w* \w his|strong="H3318"\w* \w arrows|strong="H2671"\w*. +\q1 +\v 9 \w He|strong="H1288"\w* \w couched|strong="H3766"\w*, \w he|strong="H1288"\w* \w lay|strong="H7901"\w* \w down|strong="H7901"\w* \w as|strong="H6965"\w* \w a|strong="H3068"\w* \w lion|strong="H3833"\w*, +\q2 \w as|strong="H6965"\w* \w a|strong="H3068"\w* \w lioness|strong="H3833"\w*; +\q2 \w who|strong="H4310"\w* \w shall|strong="H4310"\w* \w rouse|strong="H6965"\w* \w him|strong="H1288"\w* \w up|strong="H6965"\w*? +\q1 Everyone \w who|strong="H4310"\w* \w blesses|strong="H1288"\w* \w you|strong="H1288"\w* \w is|strong="H4310"\w* \w blessed|strong="H1288"\w*. +\q2 Everyone \w who|strong="H4310"\w* \w curses|strong="H1288"\w* \w you|strong="H1288"\w* \w is|strong="H4310"\w* \w cursed|strong="H1288"\w*.” +\p +\v 10 \w Balak|strong="H1111"\w*’s anger \w burned|strong="H2734"\w* \w against|strong="H2734"\w* \w Balaam|strong="H1109"\w*, \w and|strong="H2088"\w* \w he|strong="H7121"\w* \w struck|strong="H5606"\w* \w his|strong="H7121"\w* \w hands|strong="H3709"\w* \w together|strong="H5606"\w*. \w Balak|strong="H1111"\w* \w said|strong="H7121"\w* \w to|strong="H7121"\w* \w Balaam|strong="H1109"\w*, “\w I|strong="H2009"\w* \w called|strong="H7121"\w* \w you|strong="H1288"\w* \w to|strong="H7121"\w* \w curse|strong="H6895"\w* \w my|strong="H7121"\w* enemies, \w and|strong="H2088"\w*, \w behold|strong="H2009"\w*, \w you|strong="H1288"\w* \w have|strong="H2009"\w* \w altogether|strong="H1288"\w* \w blessed|strong="H1288"\w* \w them|strong="H7121"\w* \w these|strong="H2088"\w* \w three|strong="H7969"\w* \w times|strong="H6471"\w*. +\v 11 \w Therefore|strong="H6258"\w*, \w flee|strong="H1272"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w place|strong="H4725"\w*, \w now|strong="H6258"\w*! \w I|strong="H2009"\w* thought \w to|strong="H3068"\w* \w promote|strong="H3513"\w* \w you|strong="H3513"\w* \w to|strong="H3068"\w* \w great|strong="H3513"\w* \w honor|strong="H3519"\w*; \w but|strong="H2009"\w*, \w behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w kept|strong="H4513"\w* \w you|strong="H3513"\w* \w back|strong="H4513"\w* \w from|strong="H3068"\w* \w honor|strong="H3519"\w*.” +\p +\v 12 \w Balaam|strong="H1109"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Balak|strong="H1111"\w*, “Didn’t \w I|strong="H3808"\w* \w also|strong="H1571"\w* \w tell|strong="H1696"\w* \w your|strong="H7971"\w* \w messengers|strong="H4397"\w* whom \w you|strong="H7971"\w* \w sent|strong="H7971"\w* \w to|strong="H1696"\w* \w me|strong="H7971"\w*, \w saying|strong="H1696"\w*, +\v 13 ‘If \w Balak|strong="H1111"\w* \w would|strong="H3068"\w* \w give|strong="H5414"\w* \w me|strong="H5414"\w* \w his|strong="H5414"\w* \w house|strong="H1004"\w* \w full|strong="H4393"\w* \w of|strong="H1004"\w* \w silver|strong="H3701"\w* \w and|strong="H3068"\w* \w gold|strong="H2091"\w*, \w I|strong="H5414"\w* \w can|strong="H3201"\w*’t \w go|strong="H5674"\w* \w beyond|strong="H5674"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H6310"\w*, \w to|strong="H1696"\w* \w do|strong="H6213"\w* \w either|strong="H3808"\w* \w good|strong="H2896"\w* \w or|strong="H3808"\w* \w bad|strong="H7451"\w* \w from|strong="H3068"\w* \w my|strong="H5414"\w* own \w mind|strong="H3820"\w*. \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w say|strong="H1696"\w* \w what|strong="H2896"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H1696"\w*’? +\v 14 \w Now|strong="H6258"\w*, \w behold|strong="H2005"\w*, \w I|strong="H3117"\w* \w go|strong="H1980"\w* \w to|strong="H1980"\w* \w my|strong="H6213"\w* \w people|strong="H5971"\w*. \w Come|strong="H1980"\w*, \w I|strong="H3117"\w* \w will|strong="H5971"\w* inform \w you|strong="H3117"\w* \w what|strong="H2088"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w shall|strong="H5971"\w* \w do|strong="H6213"\w* \w to|strong="H1980"\w* \w your|strong="H6213"\w* \w people|strong="H5971"\w* \w in|strong="H1980"\w* \w the|strong="H6213"\w* latter \w days|strong="H3117"\w*.” +\p +\v 15 \w He|strong="H1121"\w* \w took|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w parable|strong="H4912"\w*, \w and|strong="H1121"\w* \w said|strong="H5002"\w*, +\q1 “\w Balaam|strong="H1109"\w* \w the|strong="H5002"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Beor|strong="H1160"\w* \w says|strong="H5002"\w*, +\q2 \w the|strong="H5002"\w* \w man|strong="H1397"\w* \w whose|strong="H1397"\w* \w eyes|strong="H5869"\w* \w are|strong="H1121"\w* \w open|strong="H8365"\w* \w says|strong="H5002"\w*; +\q2 +\v 16 \w he|strong="H3045"\w* \w says|strong="H5002"\w*, \w who|strong="H3045"\w* \w hears|strong="H8085"\w* \w the|strong="H5002"\w* words \w of|strong="H5869"\w* God, +\q2 \w knows|strong="H3045"\w* \w the|strong="H5002"\w* \w knowledge|strong="H1847"\w* \w of|strong="H5869"\w* \w the|strong="H5002"\w* \w Most|strong="H5945"\w* \w High|strong="H5945"\w*, +\q2 \w and|strong="H5869"\w* \w who|strong="H3045"\w* \w sees|strong="H2372"\w* \w the|strong="H5002"\w* \w vision|strong="H4236"\w* \w of|strong="H5869"\w* \w the|strong="H5002"\w* \w Almighty|strong="H7706"\w*, +\q2 \w falling|strong="H5307"\w* \w down|strong="H5307"\w*, \w and|strong="H5869"\w* having \w his|strong="H8085"\w* \w eyes|strong="H5869"\w* \w open|strong="H1540"\w*: +\q1 +\v 17 \w I|strong="H6258"\w* \w see|strong="H7200"\w* \w him|strong="H7200"\w*, \w but|strong="H3808"\w* \w not|strong="H3808"\w* \w now|strong="H6258"\w*. +\q2 \w I|strong="H6258"\w* \w see|strong="H7200"\w* \w him|strong="H7200"\w*, \w but|strong="H3808"\w* \w not|strong="H3808"\w* \w near|strong="H7138"\w*. +\q1 \w A|strong="H3068"\w* \w star|strong="H3556"\w* \w will|strong="H3478"\w* \w come|strong="H3478"\w* \w out|strong="H7200"\w* \w of|strong="H1121"\w* \w Jacob|strong="H3290"\w*. +\q2 \w A|strong="H3068"\w* \w scepter|strong="H7626"\w* \w will|strong="H3478"\w* \w rise|strong="H6965"\w* \w out|strong="H7200"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, +\q1 \w and|strong="H1121"\w* \w shall|strong="H1121"\w* \w strike|strong="H4272"\w* \w through|strong="H3605"\w* \w the|strong="H3605"\w* \w corners|strong="H6285"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w*, +\q2 \w and|strong="H1121"\w* \w crush|strong="H4272"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Sheth. +\q1 +\v 18 Edom \w shall|strong="H3478"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w possession|strong="H3424"\w*. +\q2 \w Seir|strong="H8165"\w*, \w his|strong="H3478"\w* enemy, \w also|strong="H6213"\w* \w shall|strong="H3478"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w possession|strong="H3424"\w*, +\q2 \w while|strong="H1961"\w* \w Israel|strong="H3478"\w* \w does|strong="H6213"\w* \w valiantly|strong="H2428"\w*. +\q1 +\v 19 Out \w of|strong="H5892"\w* \w Jacob|strong="H3290"\w* \w shall|strong="H5892"\w* \w one|strong="H5892"\w* \w have|strong="H5892"\w* \w dominion|strong="H7287"\w*, +\q2 \w and|strong="H5892"\w* \w shall|strong="H5892"\w* \w destroy|strong="H5892"\w* \w the|strong="H5892"\w* \w remnant|strong="H8300"\w* \w from|strong="H5892"\w* \w the|strong="H5892"\w* \w city|strong="H5892"\w*.” +\p +\v 20 \w He|strong="H7200"\w* \w looked|strong="H7200"\w* \w at|strong="H7200"\w* \w Amalek|strong="H6002"\w*, \w and|strong="H7200"\w* \w took|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w parable|strong="H4912"\w*, \w and|strong="H7200"\w* said, +\q1 “\w Amalek|strong="H6002"\w* \w was|strong="H7225"\w* \w the|strong="H7200"\w* \w first|strong="H7225"\w* \w of|strong="H7225"\w* \w the|strong="H7200"\w* \w nations|strong="H1471"\w*, +\q2 \w but|strong="H7200"\w* \w his|strong="H5375"\w* latter \w end|strong="H5703"\w* \w shall|strong="H1471"\w* come \w to|strong="H7200"\w* destruction.” +\p +\v 21 \w He|strong="H7760"\w* \w looked|strong="H7200"\w* \w at|strong="H7200"\w* \w the|strong="H7200"\w* \w Kenite|strong="H7017"\w*, \w and|strong="H7200"\w* \w took|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w parable|strong="H4912"\w*, \w and|strong="H7200"\w* said, +\q1 “\w Your|strong="H7760"\w* \w dwelling|strong="H4186"\w* \w place|strong="H7760"\w* \w is|strong="H7064"\w* strong. +\q2 \w Your|strong="H7760"\w* \w nest|strong="H7064"\w* \w is|strong="H7064"\w* \w set|strong="H7760"\w* \w in|strong="H4186"\w* \w the|strong="H7200"\w* \w rock|strong="H5553"\w*. +\q1 +\v 22 \w Nevertheless|strong="H3588"\w* \w Kain|strong="H7014"\w* \w shall|strong="H4100"\w* \w be|strong="H1961"\w* \w wasted|strong="H1197"\w*, +\q2 \w until|strong="H5704"\w* Asshur carries \w you|strong="H3588"\w* \w away|strong="H1197"\w* \w captive|strong="H7617"\w*.” +\p +\v 23 \w He|strong="H7760"\w* \w took|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w parable|strong="H4912"\w*, \w and|strong="H2421"\w* said, +\q1 “Alas, \w who|strong="H4310"\w* \w shall|strong="H4310"\w* \w live|strong="H2421"\w* \w when|strong="H2421"\w* \w God|strong="H4310"\w* does \w this|strong="H7760"\w*? +\q2 +\v 24 \w But|strong="H1571"\w* \w ships|strong="H6716"\w* \w shall|strong="H3027"\w* come \w from|strong="H3027"\w* \w the|strong="H3027"\w* \w coast|strong="H3027"\w* \w of|strong="H3027"\w* \w Kittim|strong="H3794"\w*. +\q1 \w They|strong="H1931"\w* \w shall|strong="H3027"\w* \w afflict|strong="H6031"\w* Asshur, \w and|strong="H3027"\w* \w shall|strong="H3027"\w* \w afflict|strong="H6031"\w* \w Eber|strong="H5677"\w*. +\q2 \w He|strong="H1931"\w* \w also|strong="H1571"\w* \w shall|strong="H3027"\w* come \w to|strong="H3027"\w* destruction.” +\p +\v 25 \w Balaam|strong="H1109"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w*, \w and|strong="H1980"\w* \w went|strong="H1980"\w* \w and|strong="H1980"\w* \w returned|strong="H7725"\w* \w to|strong="H1980"\w* \w his|strong="H7725"\w* \w place|strong="H4725"\w*; \w and|strong="H1980"\w* \w Balak|strong="H1111"\w* \w also|strong="H1571"\w* \w went|strong="H1980"\w* \w his|strong="H7725"\w* \w way|strong="H1870"\w*. +\c 25 +\p +\v 1 \w Israel|strong="H3478"\w* \w stayed|strong="H3427"\w* \w in|strong="H3427"\w* \w Shittim|strong="H7851"\w*; \w and|strong="H3478"\w* \w the|strong="H2181"\w* \w people|strong="H5971"\w* \w began|strong="H2490"\w* \w to|strong="H3478"\w* \w play|strong="H2181"\w* \w the|strong="H2181"\w* \w prostitute|strong="H2181"\w* \w with|strong="H3427"\w* \w the|strong="H2181"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w Moab|strong="H4124"\w*; +\v 2 \w for|strong="H7121"\w* \w they|strong="H5971"\w* \w called|strong="H7121"\w* \w the|strong="H7121"\w* \w people|strong="H5971"\w* \w to|strong="H7121"\w* \w the|strong="H7121"\w* \w sacrifices|strong="H2077"\w* \w of|strong="H2077"\w* \w their|strong="H7121"\w* gods. \w The|strong="H7121"\w* \w people|strong="H5971"\w* ate \w and|strong="H5971"\w* \w bowed|strong="H7812"\w* \w down|strong="H7812"\w* \w to|strong="H7121"\w* \w their|strong="H7121"\w* gods. +\v 3 \w Israel|strong="H3478"\w* \w joined|strong="H6775"\w* \w himself|strong="H3068"\w* \w to|strong="H3478"\w* \w Baal|strong="H1187"\w* \w Peor|strong="H1187"\w*, \w and|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s anger \w burned|strong="H2734"\w* \w against|strong="H2734"\w* \w Israel|strong="H3478"\w*. +\v 4 \w Yahweh|strong="H3068"\w* said \w to|strong="H7725"\w* \w Moses|strong="H4872"\w*, “\w Take|strong="H3947"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w chiefs|strong="H7218"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w and|strong="H4872"\w* \w hang|strong="H3363"\w* \w them|strong="H7725"\w* \w up|strong="H3363"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w* \w before|strong="H5048"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*, \w that|strong="H5971"\w* \w the|strong="H3605"\w* \w fierce|strong="H2740"\w* \w anger|strong="H2740"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w may|strong="H3068"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w from|strong="H7725"\w* \w Israel|strong="H3478"\w*.” +\p +\v 5 \w Moses|strong="H4872"\w* said \w to|strong="H3478"\w* \w the|strong="H4872"\w* \w judges|strong="H8199"\w* \w of|strong="H8199"\w* \w Israel|strong="H3478"\w*, “Everyone \w kill|strong="H2026"\w* \w his|strong="H3478"\w* \w men|strong="H3478"\w* \w who|strong="H3478"\w* \w have|strong="H3478"\w* \w joined|strong="H6775"\w* themselves \w to|strong="H3478"\w* \w Baal|strong="H1187"\w* \w Peor|strong="H1187"\w*.” +\p +\v 6 \w Behold|strong="H2009"\w*, \w one|strong="H3605"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w came|strong="H7126"\w* \w and|strong="H1121"\w* \w brought|strong="H7126"\w* \w to|strong="H3478"\w* \w his|strong="H3605"\w* \w brothers|strong="H1121"\w* \w a|strong="H3068"\w* \w Midianite|strong="H4084"\w* \w woman|strong="H4084"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H1121"\w* \w Moses|strong="H4872"\w*, \w and|strong="H1121"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w while|strong="H2009"\w* \w they|strong="H1992"\w* \w were|strong="H3478"\w* \w weeping|strong="H1058"\w* \w at|strong="H3478"\w* \w the|strong="H3605"\w* \w door|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*. +\v 7 \w When|strong="H7200"\w* \w Phinehas|strong="H6372"\w*, \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Eleazar, \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w the|strong="H7200"\w* \w priest|strong="H3548"\w*, \w saw|strong="H7200"\w* \w it|strong="H8432"\w*, \w he|strong="H3027"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w from|strong="H3027"\w* \w the|strong="H7200"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w congregation|strong="H5712"\w*, \w and|strong="H1121"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* \w spear|strong="H7420"\w* \w in|strong="H8432"\w* \w his|strong="H3947"\w* \w hand|strong="H3027"\w*. +\v 8 \w He|strong="H8147"\w* \w went|strong="H3478"\w* \w after|strong="H5921"\w* \w the|strong="H5921"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* pavilion, \w and|strong="H1121"\w* \w thrust|strong="H1856"\w* \w both|strong="H8147"\w* \w of|strong="H1121"\w* \w them|strong="H5921"\w* \w through|strong="H1856"\w*, \w the|strong="H5921"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w the|strong="H5921"\w* woman \w through|strong="H1856"\w* \w her|strong="H5921"\w* body. \w So|strong="H1856"\w* \w the|strong="H5921"\w* \w plague|strong="H4046"\w* \w was|strong="H3478"\w* \w stopped|strong="H6113"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 9 \w Those|strong="H1961"\w* who \w died|strong="H4191"\w* \w by|strong="H4191"\w* \w the|strong="H1961"\w* \w plague|strong="H4046"\w* \w were|strong="H1961"\w* \w twenty-four|strong="H6242"\w* thousand. +\p +\v 10 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 11 “\w Phinehas|strong="H6372"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Eleazar, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w the|strong="H5921"\w* \w priest|strong="H3548"\w*, \w has|strong="H3478"\w* \w turned|strong="H7725"\w* \w my|strong="H5921"\w* \w wrath|strong="H2534"\w* \w away|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w in|strong="H5921"\w* \w that|strong="H3478"\w* \w he|strong="H3808"\w* \w was|strong="H3478"\w* \w jealous|strong="H7065"\w* \w with|strong="H5921"\w* \w my|strong="H5921"\w* \w jealousy|strong="H7068"\w* \w among|strong="H8432"\w* \w them|strong="H5921"\w*, \w so|strong="H3808"\w* \w that|strong="H3478"\w* \w I|strong="H5921"\w* didn’t \w consume|strong="H3615"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* \w jealousy|strong="H7068"\w*. +\v 12 \w Therefore|strong="H3651"\w* say, ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w give|strong="H5414"\w* \w to|strong="H5414"\w* \w him|strong="H5414"\w* \w my|strong="H5414"\w* \w covenant|strong="H1285"\w* \w of|strong="H1285"\w* \w peace|strong="H7965"\w*. +\v 13 \w It|strong="H5921"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w to|strong="H3478"\w* \w him|strong="H5921"\w*, \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w his|strong="H5921"\w* \w offspring|strong="H2233"\w* \w after|strong="H5921"\w* \w him|strong="H5921"\w*, \w the|strong="H5921"\w* \w covenant|strong="H1285"\w* \w of|strong="H1121"\w* \w an|strong="H1961"\w* \w everlasting|strong="H5769"\w* \w priesthood|strong="H3550"\w*, \w because|strong="H5921"\w* \w he|strong="H5921"\w* \w was|strong="H1961"\w* \w jealous|strong="H7065"\w* \w for|strong="H5921"\w* \w his|strong="H5921"\w* God, \w and|strong="H1121"\w* \w made|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*.’” +\p +\v 14 \w Now|strong="H3478"\w* \w the|strong="H5221"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H5221"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w that|strong="H3478"\w* \w was|strong="H8034"\w* \w slain|strong="H5221"\w*, \w who|strong="H1121"\w* \w was|strong="H8034"\w* \w slain|strong="H5221"\w* \w with|strong="H1004"\w* \w the|strong="H5221"\w* \w Midianite|strong="H4084"\w* \w woman|strong="H4084"\w*, \w was|strong="H8034"\w* \w Zimri|strong="H2174"\w*, \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Salu|strong="H5543"\w*, \w a|strong="H3068"\w* \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* fathers’ \w house|strong="H1004"\w* \w among|strong="H8034"\w* \w the|strong="H5221"\w* \w Simeonites|strong="H8099"\w*. +\v 15 \w The|strong="H5221"\w* \w name|strong="H8034"\w* \w of|strong="H1004"\w* \w the|strong="H5221"\w* \w Midianite|strong="H4084"\w* \w woman|strong="H1323"\w* \w who|strong="H1931"\w* \w was|strong="H8034"\w* \w slain|strong="H5221"\w* \w was|strong="H8034"\w* \w Cozbi|strong="H3579"\w*, \w the|strong="H5221"\w* \w daughter|strong="H1323"\w* \w of|strong="H1004"\w* \w Zur|strong="H6698"\w*. \w He|strong="H1931"\w* \w was|strong="H8034"\w* \w head|strong="H7218"\w* \w of|strong="H1004"\w* \w the|strong="H5221"\w* \w people|strong="H1931"\w* \w of|strong="H1004"\w* \w a|strong="H3068"\w* fathers’ \w house|strong="H1004"\w* \w in|strong="H1004"\w* \w Midian|strong="H4080"\w*. +\p +\v 16 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 17 “\w Harass|strong="H6887"\w* \w the|strong="H5221"\w* \w Midianites|strong="H4084"\w*, \w and|strong="H5221"\w* \w strike|strong="H5221"\w* \w them|strong="H5221"\w*; +\v 18 \w for|strong="H3588"\w* \w they|strong="H1992"\w* harassed \w you|strong="H3588"\w* \w with|strong="H5921"\w* \w their|strong="H1992"\w* \w wiles|strong="H5231"\w*, \w wherein|strong="H3117"\w* \w they|strong="H1992"\w* \w have|strong="H1323"\w* \w deceived|strong="H5230"\w* \w you|strong="H3588"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w matter|strong="H1697"\w* \w of|strong="H3117"\w* \w Peor|strong="H6465"\w*, \w and|strong="H3117"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* incident \w regarding|strong="H5921"\w* \w Cozbi|strong="H3579"\w*, \w the|strong="H5921"\w* \w daughter|strong="H1323"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w prince|strong="H5387"\w* \w of|strong="H3117"\w* \w Midian|strong="H4080"\w*, \w their|strong="H1992"\w* sister, \w who|strong="H1992"\w* \w was|strong="H1697"\w* \w slain|strong="H5221"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w plague|strong="H4046"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w matter|strong="H1697"\w* \w of|strong="H3117"\w* \w Peor|strong="H6465"\w*.” +\c 26 +\p +\v 1 After \w the|strong="H3068"\w* plague, \w Yahweh|strong="H3068"\w* spoke \w to|strong="H3068"\w* \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* \w to|strong="H3068"\w* Eleazar \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w the|strong="H3068"\w* \w priest|strong="H3548"\w*, saying, +\v 2 “\w Take|strong="H5375"\w* \w a|strong="H3068"\w* \w census|strong="H7218"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w from|strong="H3318"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w by|strong="H8141"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H1121"\w* able \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w war|strong="H6635"\w* \w in|strong="H8141"\w* \w Israel|strong="H3478"\w*.” +\v 3 \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Eleazar \w the|strong="H5921"\w* \w priest|strong="H3548"\w* \w spoke|strong="H1696"\w* \w with|strong="H1696"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w plains|strong="H6160"\w* \w of|strong="H5921"\w* \w Moab|strong="H4124"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w* \w at|strong="H5921"\w* \w Jericho|strong="H3405"\w*, \w saying|strong="H1696"\w*, +\v 4 “\w Take|strong="H3318"\w* \w a|strong="H3068"\w* census, \w from|strong="H3318"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*.” +\p \w These|strong="H4605"\w* \w are|strong="H1121"\w* \w those|strong="H1121"\w* \w who|strong="H3068"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*. +\v 5 \w Reuben|strong="H7205"\w*, \w the|strong="H1121"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w*: \w of|strong="H1121"\w* \w Hanoch|strong="H2585"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Hanochites|strong="H2599"\w*; \w of|strong="H1121"\w* \w Pallu|strong="H6396"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Palluites|strong="H6384"\w*; +\v 6 \w of|strong="H4940"\w* \w Hezron|strong="H2696"\w*, \w the|strong="H4940"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H4940"\w* \w Hezronites|strong="H2697"\w*; \w of|strong="H4940"\w* \w Carmi|strong="H3756"\w*, \w the|strong="H4940"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H4940"\w* \w Carmites|strong="H3757"\w*. +\v 7 These \w are|strong="H1961"\w* \w the|strong="H6485"\w* \w families|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H6485"\w* \w Reubenites|strong="H7206"\w*; \w and|strong="H3967"\w* \w those|strong="H1961"\w* \w who|strong="H6485"\w* \w were|strong="H1961"\w* \w counted|strong="H6485"\w* \w of|strong="H4940"\w* \w them|strong="H1961"\w* \w were|strong="H1961"\w* forty-three thousand \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w*. +\v 8 \w The|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Pallu|strong="H6396"\w*: Eliab. +\v 9 \w The|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Eliab: \w Nemuel|strong="H5241"\w*, \w Dathan|strong="H1885"\w*, \w and|strong="H1121"\w* Abiram. \w These|strong="H7121"\w* \w are|strong="H1121"\w* \w that|strong="H1931"\w* \w Dathan|strong="H1885"\w* \w and|strong="H1121"\w* Abiram \w who|strong="H1931"\w* \w were|strong="H1121"\w* \w called|strong="H7121"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w congregation|strong="H5712"\w*, \w who|strong="H1931"\w* \w rebelled|strong="H5327"\w* \w against|strong="H5921"\w* \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* \w against|strong="H5921"\w* Aaron \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w company|strong="H5712"\w* \w of|strong="H1121"\w* \w Korah|strong="H7141"\w* \w when|strong="H3068"\w* \w they|strong="H3068"\w* \w rebelled|strong="H5327"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*; +\v 10 \w and|strong="H3967"\w* \w the|strong="H1961"\w* earth \w opened|strong="H6605"\w* \w its|strong="H1961"\w* \w mouth|strong="H6310"\w*, \w and|strong="H3967"\w* \w swallowed|strong="H1104"\w* \w them|strong="H1961"\w* \w up|strong="H1104"\w* together \w with|strong="H6310"\w* \w Korah|strong="H7141"\w* \w when|strong="H1961"\w* \w that|strong="H1961"\w* \w company|strong="H5712"\w* \w died|strong="H4194"\w*; \w at|strong="H1961"\w* \w the|strong="H1961"\w* \w time|strong="H1961"\w* \w the|strong="H1961"\w* fire \w devoured|strong="H1104"\w* \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w* men, \w and|strong="H3967"\w* \w they|strong="H6310"\w* \w became|strong="H1961"\w* \w a|strong="H3068"\w* \w sign|strong="H5251"\w*. +\v 11 Notwithstanding, \w the|strong="H4191"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Korah|strong="H7141"\w* didn’t \w die|strong="H4191"\w*. +\v 12 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Simeon|strong="H8095"\w* after their \w families|strong="H4940"\w*: \w of|strong="H1121"\w* \w Nemuel|strong="H5241"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Nemuelites|strong="H5242"\w*; \w of|strong="H1121"\w* \w Jamin|strong="H3226"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Jaminites|strong="H3228"\w*; \w of|strong="H1121"\w* \w Jachin|strong="H3199"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Jachinites|strong="H3200"\w*; +\v 13 \w of|strong="H4940"\w* \w Zerah|strong="H2226"\w*, \w the|strong="H7586"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H7586"\w* \w Zerahites|strong="H2227"\w*; \w of|strong="H4940"\w* \w Shaul|strong="H7586"\w*, \w the|strong="H7586"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H7586"\w* \w Shaulites|strong="H7587"\w*. +\v 14 \w These|strong="H8147"\w* \w are|strong="H8147"\w* \w the|strong="H8147"\w* \w families|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H8147"\w* \w Simeonites|strong="H8099"\w*, \w twenty-two|strong="H6242"\w* thousand \w two|strong="H8147"\w* \w hundred|strong="H3967"\w*. +\v 15 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w* after their \w families|strong="H4940"\w*: \w of|strong="H1121"\w* \w Zephon|strong="H6827"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Zephonites|strong="H6831"\w*; \w of|strong="H1121"\w* \w Haggi|strong="H2291"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Haggites|strong="H2291"\w*; \w of|strong="H1121"\w* \w Shuni|strong="H7764"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Shunites|strong="H7765"\w*; +\v 16 \w of|strong="H4940"\w* Ozni, \w the|strong="H4940"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H4940"\w* Oznites; \w of|strong="H4940"\w* \w Eri|strong="H6179"\w*, \w the|strong="H4940"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H4940"\w* \w Erites|strong="H6180"\w*; +\v 17 \w of|strong="H4940"\w* Arod, \w the|strong="H4940"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H4940"\w* Arodites; \w of|strong="H4940"\w* Areli, \w the|strong="H4940"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H4940"\w* Arelites. +\v 18 These \w are|strong="H1121"\w* \w the|strong="H6485"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H6485"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w* according \w to|strong="H1121"\w* \w those|strong="H1121"\w* \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w counted|strong="H6485"\w* \w of|strong="H1121"\w* \w them|strong="H6485"\w*, forty thousand \w and|strong="H3967"\w* \w five|strong="H2568"\w* \w hundred|strong="H3967"\w*. +\v 19 \w The|strong="H4191"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*: \w Er|strong="H6147"\w* \w and|strong="H1121"\w* Onan. \w Er|strong="H6147"\w* \w and|strong="H1121"\w* Onan \w died|strong="H4191"\w* \w in|strong="H4191"\w* \w the|strong="H4191"\w* land \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*. +\v 20 \w The|strong="H1961"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w after|strong="H1961"\w* \w their|strong="H1961"\w* \w families|strong="H4940"\w* \w were|strong="H1961"\w*: \w of|strong="H1121"\w* \w Shelah|strong="H7956"\w*, \w the|strong="H1961"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w Shelanites|strong="H8024"\w*; \w of|strong="H1121"\w* \w Perez|strong="H6557"\w*, \w the|strong="H1961"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w Perezites|strong="H6558"\w*; \w of|strong="H1121"\w* \w Zerah|strong="H2226"\w*, \w the|strong="H1961"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w Zerahites|strong="H2227"\w*. +\v 21 \w The|strong="H1961"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Perez|strong="H6557"\w* \w were|strong="H1961"\w*: \w of|strong="H1121"\w* \w Hezron|strong="H2696"\w*, \w the|strong="H1961"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w Hezronites|strong="H2697"\w*; \w of|strong="H1121"\w* \w Hamul|strong="H2538"\w*, \w the|strong="H1961"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w Hamulites|strong="H2539"\w*. +\v 22 These \w are|strong="H3063"\w* \w the|strong="H6485"\w* \w families|strong="H4940"\w* \w of|strong="H4940"\w* \w Judah|strong="H3063"\w* according \w to|strong="H3063"\w* those \w who|strong="H3063"\w* \w were|strong="H3063"\w* \w counted|strong="H6485"\w* \w of|strong="H4940"\w* \w them|strong="H6485"\w*, seventy-six thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w*. +\v 23 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Issachar|strong="H3485"\w* after their \w families|strong="H4940"\w*: \w of|strong="H1121"\w* \w Tola|strong="H8439"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Tolaites|strong="H8440"\w*; \w of|strong="H1121"\w* \w Puvah|strong="H6312"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Punites|strong="H6324"\w*; +\v 24 \w of|strong="H4940"\w* \w Jashub|strong="H3437"\w*, \w the|strong="H4940"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H4940"\w* \w Jashubites|strong="H3432"\w*; \w of|strong="H4940"\w* \w Shimron|strong="H8110"\w*, \w the|strong="H4940"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H4940"\w* \w Shimronites|strong="H8117"\w*. +\v 25 These are \w the|strong="H6485"\w* \w families|strong="H4940"\w* \w of|strong="H4940"\w* \w Issachar|strong="H3485"\w* according \w to|strong="H7969"\w* those \w who|strong="H6485"\w* \w were|strong="H4940"\w* \w counted|strong="H6485"\w* \w of|strong="H4940"\w* \w them|strong="H6485"\w*, sixty-four thousand \w three|strong="H7969"\w* \w hundred|strong="H3967"\w*. +\v 26 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Zebulun|strong="H2074"\w* after their \w families|strong="H4940"\w*: \w of|strong="H1121"\w* \w Sered|strong="H5624"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Seredites|strong="H5625"\w*; \w of|strong="H1121"\w* Elon, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* Elonites; \w of|strong="H1121"\w* \w Jahleel|strong="H3177"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Jahleelites|strong="H3178"\w*. +\v 27 These are \w the|strong="H6485"\w* \w families|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H6485"\w* \w Zebulunites|strong="H2075"\w* according \w to|strong="H2568"\w* those \w who|strong="H6485"\w* \w were|strong="H4940"\w* \w counted|strong="H6485"\w* \w of|strong="H4940"\w* \w them|strong="H6485"\w*, \w sixty|strong="H8346"\w* thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w*. +\v 28 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w* after their \w families|strong="H4940"\w*: \w Manasseh|strong="H4519"\w* \w and|strong="H1121"\w* Ephraim. +\v 29 \w The|strong="H3205"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*: \w of|strong="H1121"\w* \w Machir|strong="H4353"\w*, \w the|strong="H3205"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H3205"\w* \w Machirites|strong="H4354"\w*; \w and|strong="H1121"\w* \w Machir|strong="H4353"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*; \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*, \w the|strong="H3205"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H3205"\w* \w Gileadites|strong="H1568"\w*. +\v 30 These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*: \w of|strong="H1121"\w* Iezer, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* Iezerites; \w of|strong="H1121"\w* \w Helek|strong="H2507"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Helekites|strong="H2516"\w*; +\v 31 \w and|strong="H7928"\w* Asriel, \w the|strong="H4940"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H4940"\w* Asrielites; \w and|strong="H7928"\w* \w Shechem|strong="H7928"\w*, \w the|strong="H4940"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H4940"\w* \w Shechemites|strong="H7930"\w*; +\v 32 \w and|strong="H4940"\w* \w Shemida|strong="H8061"\w*, \w the|strong="H4940"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H4940"\w* \w Shemidaites|strong="H8062"\w*; \w and|strong="H4940"\w* \w Hepher|strong="H2660"\w*, \w the|strong="H4940"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H4940"\w* \w Hepherites|strong="H2662"\w*. +\v 33 \w Zelophehad|strong="H6765"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hepher|strong="H2660"\w* \w had|strong="H1961"\w* \w no|strong="H3808"\w* \w sons|strong="H1121"\w*, \w but|strong="H3588"\w* \w daughters|strong="H1323"\w*: \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w daughters|strong="H1323"\w* \w of|strong="H1121"\w* \w Zelophehad|strong="H6765"\w* \w were|strong="H1961"\w* \w Mahlah|strong="H4244"\w*, \w Noah|strong="H5270"\w*, \w Hoglah|strong="H2295"\w*, \w Milcah|strong="H4435"\w*, \w and|strong="H1121"\w* \w Tirzah|strong="H8656"\w*. +\v 34 \w These|strong="H8147"\w* \w are|strong="H8147"\w* \w the|strong="H6485"\w* \w families|strong="H4940"\w* \w of|strong="H4940"\w* \w Manasseh|strong="H4519"\w*. Those \w who|strong="H6485"\w* \w were|strong="H4940"\w* \w counted|strong="H6485"\w* \w of|strong="H4940"\w* \w them|strong="H8147"\w* \w were|strong="H4940"\w* \w fifty-two|strong="H2572"\w* thousand \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w*. +\v 35 These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Ephraim after their \w families|strong="H4940"\w*: \w of|strong="H1121"\w* \w Shuthelah|strong="H7803"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Shuthelahites|strong="H8364"\w*; \w of|strong="H1121"\w* \w Becher|strong="H1071"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Becherites|strong="H1076"\w*; \w of|strong="H1121"\w* \w Tahan|strong="H8465"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Tahanites|strong="H8470"\w*. +\v 36 These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shuthelah|strong="H7803"\w*: \w of|strong="H1121"\w* \w Eran|strong="H6197"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Eranites|strong="H6198"\w*. +\v 37 \w These|strong="H8147"\w* \w are|strong="H1121"\w* \w the|strong="H6485"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H6485"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Ephraim according \w to|strong="H1121"\w* \w those|strong="H1121"\w* \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w counted|strong="H6485"\w* \w of|strong="H1121"\w* \w them|strong="H8147"\w*, \w thirty-two|strong="H7970"\w* thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w*. \w These|strong="H8147"\w* \w are|strong="H1121"\w* \w the|strong="H6485"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w* after \w their|strong="H6485"\w* \w families|strong="H4940"\w*. +\v 38 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* after \w their|strong="H1144"\w* \w families|strong="H4940"\w*: \w of|strong="H1121"\w* \w Bela|strong="H1106"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Belaites|strong="H1108"\w*; \w of|strong="H1121"\w* Ashbel, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* Ashbelites; \w of|strong="H1121"\w* Ahiram, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* Ahiramites; +\v 39 \w of|strong="H4940"\w* \w Shephupham|strong="H8197"\w*, \w the|strong="H4940"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H4940"\w* \w Shuphamites|strong="H7781"\w*; \w of|strong="H4940"\w* \w Hupham|strong="H2349"\w*, \w the|strong="H4940"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H4940"\w* \w Huphamites|strong="H2350"\w*. +\v 40 \w The|strong="H1961"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Bela|strong="H1106"\w* \w were|strong="H1961"\w* Ard \w and|strong="H1121"\w* \w Naaman|strong="H5283"\w*: \w the|strong="H1961"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* Ardites; \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w Naaman|strong="H5283"\w*, \w the|strong="H1961"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w Naamites|strong="H5280"\w*. +\v 41 These \w are|strong="H1121"\w* \w the|strong="H6485"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* after \w their|strong="H6485"\w* \w families|strong="H4940"\w*; \w and|strong="H3967"\w* \w those|strong="H1121"\w* \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w counted|strong="H6485"\w* \w of|strong="H1121"\w* \w them|strong="H6485"\w* \w were|strong="H1121"\w* forty-five thousand \w six|strong="H8337"\w* \w hundred|strong="H3967"\w*. +\v 42 These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w* after \w their|strong="H1835"\w* \w families|strong="H4940"\w*: \w of|strong="H1121"\w* \w Shuham|strong="H7748"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Shuhamites|strong="H7749"\w*. These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w* after \w their|strong="H1835"\w* \w families|strong="H4940"\w*. +\v 43 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w families|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H3605"\w* \w Shuhamites|strong="H7749"\w*, according \w to|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H4940"\w* \w counted|strong="H6485"\w* \w of|strong="H4940"\w* \w them|strong="H6485"\w*, \w were|strong="H4940"\w* sixty-four thousand four \w hundred|strong="H3967"\w*. +\v 44 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Asher after their \w families|strong="H4940"\w*: \w of|strong="H1121"\w* \w Imnah|strong="H3232"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Imnites|strong="H3232"\w*; \w of|strong="H1121"\w* \w Ishvi|strong="H3440"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Ishvites|strong="H3441"\w*; \w of|strong="H1121"\w* \w Beriah|strong="H1283"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* Berites. +\v 45 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Beriah|strong="H1283"\w*: \w of|strong="H1121"\w* \w Heber|strong="H2268"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Heberites|strong="H2277"\w*; \w of|strong="H1121"\w* \w Malchiel|strong="H4439"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Malchielites|strong="H4440"\w*. +\v 46 \w The|strong="H8034"\w* \w name|strong="H8034"\w* \w of|strong="H1323"\w* \w the|strong="H8034"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* Asher \w was|strong="H8034"\w* \w Serah|strong="H8294"\w*. +\v 47 These \w are|strong="H1121"\w* \w the|strong="H6485"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H6485"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Asher according \w to|strong="H1121"\w* \w those|strong="H1121"\w* \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w counted|strong="H6485"\w* \w of|strong="H1121"\w* \w them|strong="H6485"\w*, fifty-three thousand \w four|strong="H7969"\w* \w hundred|strong="H3967"\w*. +\v 48 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Naphtali|strong="H5321"\w* after their \w families|strong="H4940"\w*: \w of|strong="H1121"\w* \w Jahzeel|strong="H3183"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Jahzeelites|strong="H3184"\w*; \w of|strong="H1121"\w* \w Guni|strong="H1476"\w*, \w the|strong="H1121"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Gunites|strong="H1477"\w*; +\v 49 \w of|strong="H4940"\w* \w Jezer|strong="H3337"\w*, \w the|strong="H4940"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H4940"\w* \w Jezerites|strong="H3340"\w*; \w of|strong="H4940"\w* \w Shillem|strong="H8006"\w*, \w the|strong="H4940"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H4940"\w* \w Shillemites|strong="H8016"\w*. +\v 50 These are \w the|strong="H6485"\w* \w families|strong="H4940"\w* \w of|strong="H4940"\w* \w Naphtali|strong="H5321"\w* according \w to|strong="H2568"\w* \w their|strong="H6485"\w* \w families|strong="H4940"\w*; \w and|strong="H3967"\w* those \w who|strong="H6485"\w* \w were|strong="H4940"\w* \w counted|strong="H6485"\w* \w of|strong="H4940"\w* \w them|strong="H6485"\w* \w were|strong="H4940"\w* forty-five thousand four \w hundred|strong="H3967"\w*. +\v 51 These \w are|strong="H1121"\w* \w those|strong="H1121"\w* \w who|strong="H1121"\w* \w were|strong="H3478"\w* \w counted|strong="H6485"\w* \w of|strong="H1121"\w* \w the|strong="H6485"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w one|strong="H1121"\w* thousand \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w*. +\p +\v 52 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 53 “\w To|strong="H5159"\w* these \w the|strong="H8034"\w* \w land|strong="H5159"\w* \w shall|strong="H8034"\w* \w be|strong="H8034"\w* \w divided|strong="H2505"\w* \w for|strong="H8034"\w* \w an|strong="H5159"\w* \w inheritance|strong="H5159"\w* according \w to|strong="H5159"\w* \w the|strong="H8034"\w* \w number|strong="H4557"\w* \w of|strong="H8034"\w* \w names|strong="H8034"\w*. +\v 54 \w To|strong="H5414"\w* \w the|strong="H5414"\w* \w more|strong="H7235"\w* \w you|strong="H5414"\w* \w shall|strong="H6310"\w* \w give|strong="H5414"\w* \w the|strong="H5414"\w* \w more|strong="H7235"\w* \w inheritance|strong="H5159"\w*, \w and|strong="H6310"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w fewer|strong="H4592"\w* \w you|strong="H5414"\w* \w shall|strong="H6310"\w* \w give|strong="H5414"\w* \w the|strong="H5414"\w* \w less|strong="H4591"\w* \w inheritance|strong="H5159"\w*. \w To|strong="H5414"\w* everyone \w according|strong="H6310"\w* \w to|strong="H5414"\w* those \w who|strong="H7227"\w* \w were|strong="H6485"\w* \w counted|strong="H6485"\w* \w of|strong="H6310"\w* \w him|strong="H5414"\w* \w shall|strong="H6310"\w* \w his|strong="H5414"\w* \w inheritance|strong="H5159"\w* \w be|strong="H5414"\w* \w given|strong="H5414"\w*. +\v 55 Notwithstanding, \w the|strong="H5157"\w* \w land|strong="H1486"\w* \w shall|strong="H8034"\w* \w be|strong="H8034"\w* \w divided|strong="H2505"\w* \w by|strong="H8034"\w* \w lot|strong="H1486"\w*. According \w to|strong="H8034"\w* \w the|strong="H5157"\w* \w names|strong="H8034"\w* \w of|strong="H4294"\w* \w the|strong="H5157"\w* \w tribes|strong="H4294"\w* \w of|strong="H4294"\w* \w their|strong="H5157"\w* fathers \w they|strong="H8034"\w* \w shall|strong="H8034"\w* \w inherit|strong="H5157"\w*. +\v 56 \w According|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w lot|strong="H1486"\w* \w shall|strong="H6310"\w* \w their|strong="H5921"\w* \w inheritance|strong="H5159"\w* \w be|strong="H5159"\w* \w divided|strong="H2505"\w* \w between|strong="H5921"\w* \w the|strong="H5921"\w* \w more|strong="H7227"\w* \w and|strong="H6310"\w* \w the|strong="H5921"\w* \w fewer|strong="H4592"\w*.” +\p +\v 57 \w These|strong="H3881"\w* are those \w who|strong="H3881"\w* \w were|strong="H3881"\w* \w counted|strong="H6485"\w* \w of|strong="H4940"\w* \w the|strong="H6485"\w* \w Levites|strong="H3881"\w* after \w their|strong="H6485"\w* \w families|strong="H4940"\w*: \w of|strong="H4940"\w* \w Gershon|strong="H1648"\w*, \w the|strong="H6485"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H6485"\w* \w Gershonites|strong="H1649"\w*; \w of|strong="H4940"\w* \w Kohath|strong="H6955"\w*, \w the|strong="H6485"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H6485"\w* \w Kohathites|strong="H6956"\w*; \w of|strong="H4940"\w* \w Merari|strong="H4847"\w*, \w the|strong="H6485"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H6485"\w* \w Merarites|strong="H4848"\w*. +\v 58 \w These|strong="H3881"\w* are \w the|strong="H3205"\w* \w families|strong="H4940"\w* \w of|strong="H3205"\w* \w Levi|strong="H3881"\w*: \w the|strong="H3205"\w* \w family|strong="H4940"\w* \w of|strong="H3205"\w* \w the|strong="H3205"\w* \w Libnites|strong="H3846"\w*, \w the|strong="H3205"\w* \w family|strong="H4940"\w* \w of|strong="H3205"\w* \w the|strong="H3205"\w* \w Hebronites|strong="H2276"\w*, \w the|strong="H3205"\w* \w family|strong="H4940"\w* \w of|strong="H3205"\w* \w the|strong="H3205"\w* \w Mahlites|strong="H4250"\w*, \w the|strong="H3205"\w* \w family|strong="H4940"\w* \w of|strong="H3205"\w* \w the|strong="H3205"\w* \w Mushites|strong="H4188"\w*, \w and|strong="H3881"\w* \w the|strong="H3205"\w* \w family|strong="H4940"\w* \w of|strong="H3205"\w* \w the|strong="H3205"\w* \w Korahites|strong="H7145"\w*. \w Kohath|strong="H6955"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Amram|strong="H6019"\w*. +\v 59 \w The|strong="H3205"\w* \w name|strong="H8034"\w* \w of|strong="H1323"\w* \w Amram|strong="H6019"\w*’s wife \w was|strong="H8034"\w* \w Jochebed|strong="H3115"\w*, \w the|strong="H3205"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Levi|strong="H3878"\w*, \w who|strong="H3205"\w* \w was|strong="H8034"\w* \w born|strong="H3205"\w* \w to|strong="H3205"\w* \w Levi|strong="H3878"\w* \w in|strong="H8034"\w* \w Egypt|strong="H4714"\w*. She \w bore|strong="H3205"\w* \w to|strong="H3205"\w* \w Amram|strong="H6019"\w* Aaron \w and|strong="H4872"\w* \w Moses|strong="H4872"\w*, \w and|strong="H4872"\w* \w Miriam|strong="H4813"\w* \w their|strong="H4714"\w* sister. +\v 60 \w To|strong="H3205"\w* Aaron \w were|strong="H3205"\w* \w born|strong="H3205"\w* \w Nadab|strong="H5070"\w* \w and|strong="H5070"\w* Abihu, Eleazar \w and|strong="H5070"\w* Ithamar. +\v 61 \w Nadab|strong="H5070"\w* \w and|strong="H3068"\w* Abihu \w died|strong="H4191"\w* \w when|strong="H3068"\w* \w they|strong="H3068"\w* \w offered|strong="H7126"\w* \w strange|strong="H2114"\w* fire \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 62 \w Those|strong="H1992"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w counted|strong="H6485"\w* \w of|strong="H1121"\w* \w them|strong="H5414"\w* \w were|strong="H3478"\w* \w twenty-three|strong="H6242"\w* thousand, \w every|strong="H3605"\w* \w male|strong="H2145"\w* \w from|strong="H3478"\w* \w a|strong="H3068"\w* \w month|strong="H2320"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*; \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w were|strong="H3478"\w* \w not|strong="H3808"\w* \w counted|strong="H6485"\w* \w among|strong="H8432"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w because|strong="H3588"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w inheritance|strong="H5159"\w* \w given|strong="H5414"\w* \w them|strong="H5414"\w* \w among|strong="H8432"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 63 These \w are|strong="H1121"\w* \w those|strong="H5921"\w* \w who|strong="H3548"\w* \w were|strong="H3478"\w* \w counted|strong="H6485"\w* \w by|strong="H5921"\w* \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* Eleazar \w the|strong="H5921"\w* \w priest|strong="H3548"\w*, \w who|strong="H3548"\w* \w counted|strong="H6485"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w plains|strong="H6160"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w* \w at|strong="H5921"\w* \w Jericho|strong="H3405"\w*. +\v 64 \w But|strong="H3808"\w* \w among|strong="H3808"\w* these \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w them|strong="H1961"\w* \w who|strong="H3548"\w* \w were|strong="H3478"\w* \w counted|strong="H6485"\w* \w by|strong="H3478"\w* \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* Aaron \w the|strong="H6485"\w* \w priest|strong="H3548"\w*, \w who|strong="H3548"\w* \w counted|strong="H6485"\w* \w the|strong="H6485"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w in|strong="H3478"\w* \w the|strong="H6485"\w* \w wilderness|strong="H4057"\w* \w of|strong="H1121"\w* \w Sinai|strong="H5514"\w*. +\v 65 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* said \w of|strong="H1121"\w* \w them|strong="H1992"\w*, “\w They|strong="H1992"\w* \w shall|strong="H3068"\w* \w surely|strong="H4191"\w* \w die|strong="H4191"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w wilderness|strong="H4057"\w*.” \w There|strong="H1992"\w* \w was|strong="H3068"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w left|strong="H3498"\w* \w of|strong="H1121"\w* \w them|strong="H1992"\w*, \w except|strong="H3588"\w* \w Caleb|strong="H3612"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jephunneh|strong="H3312"\w*, \w and|strong="H1121"\w* \w Joshua|strong="H3091"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w*. +\c 27 +\p +\v 1 \w Then|strong="H7126"\w* \w the|strong="H7126"\w* \w daughters|strong="H1323"\w* \w of|strong="H1121"\w* \w Zelophehad|strong="H6765"\w*, \w the|strong="H7126"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hepher|strong="H2660"\w*, \w the|strong="H7126"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*, \w the|strong="H7126"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Machir|strong="H4353"\w*, \w the|strong="H7126"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*, \w of|strong="H1121"\w* \w the|strong="H7126"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w the|strong="H7126"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w* \w came|strong="H7126"\w* \w near|strong="H7126"\w*. These \w are|strong="H1121"\w* \w the|strong="H7126"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w his|strong="H7126"\w* \w daughters|strong="H1323"\w*: \w Mahlah|strong="H4244"\w*, \w Noah|strong="H5270"\w*, \w Hoglah|strong="H2295"\w*, \w Milcah|strong="H4435"\w*, \w and|strong="H1121"\w* \w Tirzah|strong="H8656"\w*. +\v 2 \w They|strong="H3605"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w Moses|strong="H4872"\w*, \w before|strong="H6440"\w* Eleazar \w the|strong="H3605"\w* \w priest|strong="H3548"\w*, \w and|strong="H4872"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w princes|strong="H5387"\w* \w and|strong="H4872"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w*, \w at|strong="H5975"\w* \w the|strong="H3605"\w* \w door|strong="H6607"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* Tent \w of|strong="H6440"\w* \w Meeting|strong="H4150"\w*, saying, +\v 3 “\w Our|strong="H3068"\w* \w father|strong="H1121"\w* \w died|strong="H4191"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*. \w He|strong="H1931"\w* \w was|strong="H3068"\w* \w not|strong="H3808"\w* \w among|strong="H8432"\w* \w the|strong="H5921"\w* \w company|strong="H5712"\w* \w of|strong="H1121"\w* \w those|strong="H5921"\w* \w who|strong="H1931"\w* \w gathered|strong="H3259"\w* \w themselves|strong="H5921"\w* \w together|strong="H3259"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w company|strong="H5712"\w* \w of|strong="H1121"\w* \w Korah|strong="H7141"\w*, \w but|strong="H3588"\w* \w he|strong="H1931"\w* \w died|strong="H4191"\w* \w in|strong="H5921"\w* \w his|strong="H3068"\w* \w own|strong="H1961"\w* \w sin|strong="H2399"\w*. \w He|strong="H1931"\w* \w had|strong="H3068"\w* \w no|strong="H3808"\w* \w sons|strong="H1121"\w*. +\v 4 \w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w the|strong="H3588"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w our|strong="H5414"\w* \w father|strong="H1121"\w* \w be|strong="H1121"\w* \w taken|strong="H1639"\w* \w away|strong="H1639"\w* \w from|strong="H1121"\w* \w among|strong="H8432"\w* \w his|strong="H5414"\w* \w family|strong="H4940"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H3588"\w* \w no|strong="H5414"\w* \w son|strong="H1121"\w*? \w Give|strong="H5414"\w* \w to|strong="H5414"\w* \w us|strong="H5414"\w* \w a|strong="H3068"\w* possession \w among|strong="H8432"\w* \w the|strong="H3588"\w* \w brothers|strong="H1121"\w* \w of|strong="H1121"\w* \w our|strong="H5414"\w* \w father|strong="H1121"\w*.” +\p +\v 5 \w Moses|strong="H4872"\w* \w brought|strong="H7126"\w* \w their|strong="H3068"\w* cause \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 6 \w Yahweh|strong="H3068"\w* spoke \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, saying, +\v 7 “\w The|strong="H5414"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w Zelophehad|strong="H6765"\w* \w speak|strong="H1696"\w* \w right|strong="H3651"\w*. \w You|strong="H5414"\w* \w shall|strong="H1323"\w* \w surely|strong="H5414"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w a|strong="H3068"\w* \w possession|strong="H5159"\w* \w of|strong="H1323"\w* \w an|strong="H5414"\w* \w inheritance|strong="H5159"\w* \w among|strong="H8432"\w* \w their|strong="H5414"\w* father’s brothers. \w You|strong="H5414"\w* \w shall|strong="H1323"\w* \w cause|strong="H5414"\w* \w the|strong="H5414"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1323"\w* \w their|strong="H5414"\w* father \w to|strong="H1696"\w* \w pass|strong="H5674"\w* \w to|strong="H1696"\w* \w them|strong="H5414"\w*. +\v 8 \w You|strong="H3588"\w* \w shall|strong="H1121"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w saying|strong="H1696"\w*, ‘\w If|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w dies|strong="H4191"\w*, \w and|strong="H1121"\w* \w has|strong="H3478"\w* \w no|strong="H1696"\w* \w son|strong="H1121"\w*, \w then|strong="H1696"\w* \w you|strong="H3588"\w* \w shall|strong="H1121"\w* cause \w his|strong="H3478"\w* \w inheritance|strong="H5159"\w* \w to|strong="H1696"\w* \w pass|strong="H5674"\w* \w to|strong="H1696"\w* \w his|strong="H3478"\w* \w daughter|strong="H1323"\w*. +\v 9 If \w he|strong="H5414"\w* \w has|strong="H5159"\w* \w no|strong="H5414"\w* \w daughter|strong="H1323"\w*, \w then|strong="H5414"\w* \w you|strong="H5414"\w* \w shall|strong="H1323"\w* \w give|strong="H5414"\w* \w his|strong="H5414"\w* \w inheritance|strong="H5159"\w* \w to|strong="H5414"\w* \w his|strong="H5414"\w* brothers. +\v 10 If \w he|strong="H5414"\w* \w has|strong="H5159"\w* \w no|strong="H5414"\w* brothers, \w then|strong="H5414"\w* \w you|strong="H5414"\w* \w shall|strong="H5159"\w* \w give|strong="H5414"\w* \w his|strong="H5414"\w* \w inheritance|strong="H5159"\w* \w to|strong="H5414"\w* \w his|strong="H5414"\w* father’s brothers. +\v 11 \w If|strong="H1961"\w* \w his|strong="H5414"\w* \w father|strong="H1121"\w* \w has|strong="H3068"\w* \w no|strong="H5414"\w* \w brothers|strong="H1121"\w*, \w then|strong="H1961"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w give|strong="H5414"\w* \w his|strong="H5414"\w* \w inheritance|strong="H5159"\w* \w to|strong="H3478"\w* \w his|strong="H5414"\w* \w kinsman|strong="H7607"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w next|strong="H7138"\w* \w to|strong="H3478"\w* \w him|strong="H5414"\w* \w of|strong="H1121"\w* \w his|strong="H5414"\w* \w family|strong="H4940"\w*, \w and|strong="H1121"\w* \w he|strong="H3068"\w* \w shall|strong="H3068"\w* \w possess|strong="H3423"\w* \w it|strong="H5414"\w*. \w This|strong="H5414"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w statute|strong="H2708"\w* \w and|strong="H1121"\w* \w ordinance|strong="H4941"\w* \w for|strong="H2708"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w as|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*.’” +\p +\v 12 \w Yahweh|strong="H3068"\w* said \w to|strong="H3478"\w* \w Moses|strong="H4872"\w*, “\w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w into|strong="H5927"\w* \w this|strong="H2088"\w* \w mountain|strong="H2022"\w* \w of|strong="H1121"\w* \w Abarim|strong="H5682"\w*, \w and|strong="H1121"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* land \w which|strong="H3068"\w* \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w given|strong="H5414"\w* \w to|strong="H3478"\w* \w the|strong="H7200"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 13 \w When|strong="H7200"\w* \w you|strong="H7200"\w* \w have|strong="H5971"\w* \w seen|strong="H7200"\w* \w it|strong="H7200"\w*, \w you|strong="H7200"\w* \w also|strong="H1571"\w* \w shall|strong="H5971"\w* \w be|strong="H1571"\w* gathered \w to|strong="H7200"\w* \w your|strong="H7200"\w* \w people|strong="H5971"\w*, \w as|strong="H1571"\w* Aaron \w your|strong="H7200"\w* brother \w was|strong="H1571"\w* gathered; +\v 14 because \w in|strong="H6310"\w* \w the|strong="H6942"\w* \w strife|strong="H4808"\w* \w of|strong="H5869"\w* \w the|strong="H6942"\w* \w congregation|strong="H5712"\w*, \w you|strong="H5869"\w* \w rebelled|strong="H4784"\w* \w against|strong="H4784"\w* \w my|strong="H6942"\w* \w word|strong="H6310"\w* \w in|strong="H6310"\w* \w the|strong="H6942"\w* \w wilderness|strong="H4057"\w* \w of|strong="H5869"\w* \w Zin|strong="H6790"\w*, \w to|strong="H4325"\w* honor \w me|strong="H5869"\w* \w as|strong="H5869"\w* \w holy|strong="H6942"\w* \w at|strong="H5869"\w* \w the|strong="H6942"\w* \w waters|strong="H4325"\w* \w before|strong="H5869"\w* \w their|strong="H1992"\w* \w eyes|strong="H5869"\w*.” (\w These|strong="H1992"\w* \w are|strong="H1992"\w* \w the|strong="H6942"\w* \w waters|strong="H4325"\w* \w of|strong="H5869"\w* \w Meribah|strong="H4809"\w* \w of|strong="H5869"\w* \w Kadesh|strong="H6946"\w* \w in|strong="H6310"\w* \w the|strong="H6942"\w* \w wilderness|strong="H4057"\w* \w of|strong="H5869"\w* \w Zin|strong="H6790"\w*.) +\p +\v 15 \w Moses|strong="H4872"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*, \w saying|strong="H1696"\w*, +\v 16 “\w Let|strong="H6485"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w spirits|strong="H7307"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w*, \w appoint|strong="H6485"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w*, +\v 17 \w who|strong="H3068"\w* \w may|strong="H1961"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*, \w and|strong="H3068"\w* \w who|strong="H3068"\w* \w may|strong="H1961"\w* \w come|strong="H1961"\w* \w in|strong="H3068"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*, \w and|strong="H3068"\w* \w who|strong="H3068"\w* \w may|strong="H1961"\w* \w lead|strong="H3318"\w* \w them|strong="H6440"\w* \w out|strong="H3318"\w*, \w and|strong="H3068"\w* \w who|strong="H3068"\w* \w may|strong="H1961"\w* \w bring|strong="H3318"\w* \w them|strong="H6440"\w* \w in|strong="H3068"\w*, \w that|strong="H3068"\w* \w the|strong="H6440"\w* \w congregation|strong="H5712"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w may|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w sheep|strong="H6629"\w* \w which|strong="H3068"\w* \w have|strong="H1961"\w* \w no|strong="H3808"\w* \w shepherd|strong="H7462"\w*.” +\p +\v 18 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w Take|strong="H3947"\w* \w Joshua|strong="H3091"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w*, \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w in|strong="H5921"\w* whom \w is|strong="H3068"\w* \w the|strong="H5921"\w* \w Spirit|strong="H7307"\w*, \w and|strong="H1121"\w* \w lay|strong="H5564"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 19 \w Set|strong="H5975"\w* \w him|strong="H6440"\w* \w before|strong="H6440"\w* Eleazar \w the|strong="H3605"\w* \w priest|strong="H3548"\w*, \w and|strong="H3548"\w* \w before|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w*; \w and|strong="H3548"\w* \w commission|strong="H6680"\w* \w him|strong="H6440"\w* \w in|strong="H6440"\w* \w their|strong="H3605"\w* \w sight|strong="H5869"\w*. +\v 20 \w You|strong="H5414"\w* \w shall|strong="H1121"\w* \w give|strong="H5414"\w* \w authority|strong="H1935"\w* \w to|strong="H3478"\w* \w him|strong="H5414"\w*, \w that|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w may|strong="H3478"\w* \w obey|strong="H8085"\w*. +\v 21 \w He|strong="H1931"\w* \w shall|strong="H3548"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* Eleazar \w the|strong="H3605"\w* \w priest|strong="H3548"\w*, \w who|strong="H3605"\w* \w shall|strong="H3548"\w* \w inquire|strong="H7592"\w* \w for|strong="H5921"\w* \w him|strong="H6440"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w judgment|strong="H4941"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* Urim \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. \w At|strong="H5921"\w* \w his|strong="H3605"\w* \w word|strong="H6310"\w* \w they|strong="H3068"\w* \w shall|strong="H3548"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H1121"\w* \w at|strong="H5921"\w* \w his|strong="H3605"\w* \w word|strong="H6310"\w* \w they|strong="H3068"\w* \w shall|strong="H3548"\w* \w come|strong="H3318"\w* \w in|strong="H5921"\w*, \w both|strong="H3605"\w* \w he|strong="H1931"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w with|strong="H3068"\w* \w him|strong="H6440"\w*, \w even|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w*.” +\p +\v 22 \w Moses|strong="H4872"\w* \w did|strong="H6213"\w* \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w him|strong="H6440"\w*. \w He|strong="H6213"\w* \w took|strong="H3947"\w* \w Joshua|strong="H3091"\w*, \w and|strong="H4872"\w* \w set|strong="H5975"\w* \w him|strong="H6440"\w* \w before|strong="H6440"\w* Eleazar \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w and|strong="H4872"\w* \w before|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w*. +\v 23 \w He|strong="H3068"\w* \w laid|strong="H5564"\w* \w his|strong="H3068"\w* \w hands|strong="H3027"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w* \w and|strong="H4872"\w* \w commissioned|strong="H6680"\w* \w him|strong="H5921"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w*. +\c 28 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Command|strong="H6680"\w* \w the|strong="H8104"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* tell \w them|strong="H6680"\w*, ‘See \w that|strong="H3478"\w* \w you|strong="H6680"\w* \w present|strong="H7126"\w* \w my|strong="H8104"\w* \w offering|strong="H7133"\w*, \w my|strong="H8104"\w* \w food|strong="H3899"\w* \w for|strong="H1121"\w* \w my|strong="H8104"\w* \w offerings|strong="H7133"\w* \w made|strong="H3478"\w* \w by|strong="H3478"\w* fire, \w as|strong="H1121"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3478"\w* \w me|strong="H8104"\w*, \w in|strong="H3478"\w* \w their|strong="H7126"\w* due \w season|strong="H4150"\w*.’ +\v 3 \w You|strong="H3117"\w* \w shall|strong="H3068"\w* tell \w them|strong="H7126"\w*, ‘\w This|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w offering|strong="H5930"\w* \w made|strong="H8141"\w* \w by|strong="H8141"\w* fire \w which|strong="H3068"\w* \w you|strong="H3117"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*: \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*, \w two|strong="H8147"\w* \w day|strong="H3117"\w* \w by|strong="H8141"\w* \w day|strong="H3117"\w*, \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w continual|strong="H8548"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*. +\v 4 \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w offer|strong="H6213"\w* \w the|strong="H6213"\w* \w one|strong="H3532"\w* \w lamb|strong="H3532"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w morning|strong="H1242"\w*, \w and|strong="H1242"\w* \w you|strong="H6213"\w* \w shall|strong="H6213"\w* \w offer|strong="H6213"\w* \w the|strong="H6213"\w* \w other|strong="H8145"\w* \w lamb|strong="H3532"\w* \w at|strong="H6213"\w* \w evening|strong="H6153"\w*, +\v 5 \w with|strong="H1101"\w* one \w tenth|strong="H6224"\w* \w of|strong="H1969"\w* \w an|strong="H4503"\w* ephah\f + \fr 28:5 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w of|strong="H1969"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w for|strong="H8081"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w the|strong="H7243"\w* \w fourth|strong="H7243"\w* \w part|strong="H7243"\w* \w of|strong="H1969"\w* \w a|strong="H3068"\w* \w hin|strong="H1969"\w*\f + \fr 28:5 \ft A hin is about 6.5 liters or 1.7 gallons.\f* \w of|strong="H1969"\w* \w beaten|strong="H3795"\w* \w oil|strong="H8081"\w*. +\v 6 \w It|strong="H6213"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w continual|strong="H8548"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w ordained|strong="H6213"\w* \w in|strong="H3068"\w* \w Mount|strong="H2022"\w* \w Sinai|strong="H5514"\w* \w for|strong="H6213"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w*, \w an|strong="H6213"\w* \w offering|strong="H5930"\w* \w made|strong="H6213"\w* \w by|strong="H3068"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 7 Its \w drink|strong="H5262"\w* \w offering|strong="H5262"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w the|strong="H3068"\w* \w fourth|strong="H7243"\w* \w part|strong="H7243"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w hin|strong="H1969"\w*\f + \fr 28:7 \ft One hin is about 6.5 liters, so 1/4 hin is about 1.6 liters or 1.7 quarts.\f* \w for|strong="H3068"\w* \w each|strong="H3532"\w* \w lamb|strong="H3532"\w*. You \w shall|strong="H3068"\w* \w pour|strong="H5258"\w* \w out|strong="H5258"\w* \w a|strong="H3068"\w* \w drink|strong="H5262"\w* \w offering|strong="H5262"\w* \w of|strong="H3068"\w* \w strong|strong="H7941"\w* \w drink|strong="H5262"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w*. +\v 8 \w The|strong="H6213"\w* \w other|strong="H8145"\w* \w lamb|strong="H3532"\w* \w you|strong="H6213"\w* \w shall|strong="H3068"\w* \w offer|strong="H6213"\w* \w at|strong="H3068"\w* \w evening|strong="H6153"\w*. \w As|strong="H6213"\w* \w the|strong="H6213"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* \w morning|strong="H1242"\w*, \w and|strong="H3068"\w* \w as|strong="H6213"\w* \w its|strong="H6213"\w* \w drink|strong="H5262"\w* \w offering|strong="H4503"\w*, \w you|strong="H6213"\w* \w shall|strong="H3068"\w* \w offer|strong="H6213"\w* \w it|strong="H6213"\w*, \w an|strong="H6213"\w* \w offering|strong="H4503"\w* \w made|strong="H6213"\w* \w by|strong="H3068"\w* fire, \w for|strong="H6213"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 9 “‘\w On|strong="H3117"\w* \w the|strong="H3117"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w*, \w you|strong="H3117"\w* \w shall|strong="H1121"\w* offer \w two|strong="H8147"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*, \w and|strong="H1121"\w* \w two|strong="H8147"\w* tenths \w of|strong="H1121"\w* \w an|strong="H8141"\w* ephah\f + \fr 28:9 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w of|strong="H1121"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w for|strong="H3117"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w*, \w and|strong="H1121"\w* its \w drink|strong="H5262"\w* \w offering|strong="H4503"\w*: +\v 10 this \w is|strong="H5930"\w* \w the|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w of|strong="H5921"\w* \w every|strong="H8548"\w* \w Sabbath|strong="H7676"\w*, \w in|strong="H5921"\w* \w addition|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w continual|strong="H8548"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w and|strong="H5930"\w* \w its|strong="H5921"\w* \w drink|strong="H5262"\w* \w offering|strong="H5930"\w*. +\p +\v 11 “‘\w In|strong="H8141"\w* \w the|strong="H3068"\w* \w beginnings|strong="H7218"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* \w months|strong="H2320"\w*, \w you|strong="H7126"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*: \w two|strong="H8147"\w* \w young|strong="H1121"\w* \w bulls|strong="H6499"\w*, \w one|strong="H3532"\w* ram, \w seven|strong="H7651"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*, +\v 12 \w and|strong="H6499"\w* \w three|strong="H7969"\w* tenths \w of|strong="H8147"\w* \w an|strong="H4503"\w* ephah\f + \fr 28:12 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w of|strong="H8147"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w for|strong="H6241"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w*, \w for|strong="H6241"\w* \w each|strong="H8147"\w* \w bull|strong="H6499"\w*; \w and|strong="H6499"\w* \w two|strong="H8147"\w* \w tenth|strong="H8147"\w* parts \w of|strong="H8147"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w for|strong="H6241"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w*, \w for|strong="H6241"\w* \w the|strong="H8147"\w* \w one|strong="H8147"\w* ram; +\v 13 \w and|strong="H3068"\w* \w one|strong="H3532"\w* \w tenth|strong="H6241"\w* part \w of|strong="H3068"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w to|strong="H3068"\w* \w every|strong="H3068"\w* \w lamb|strong="H3532"\w*, \w as|strong="H3068"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w*, \w an|strong="H3068"\w* \w offering|strong="H4503"\w* \w made|strong="H3068"\w* \w by|strong="H3068"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 14 \w Their|strong="H1961"\w* \w drink|strong="H5262"\w* \w offerings|strong="H5930"\w* \w shall|strong="H8141"\w* \w be|strong="H1961"\w* \w half|strong="H2677"\w* \w a|strong="H3068"\w* \w hin|strong="H1969"\w* \w of|strong="H8141"\w* \w wine|strong="H3196"\w* \w for|strong="H1961"\w* \w a|strong="H3068"\w* \w bull|strong="H6499"\w*, \w the|strong="H1961"\w* \w third|strong="H7992"\w* \w part|strong="H7992"\w* \w of|strong="H8141"\w* \w a|strong="H3068"\w* \w hin|strong="H1969"\w* \w for|strong="H1961"\w* \w the|strong="H1961"\w* ram, \w and|strong="H6499"\w* \w the|strong="H1961"\w* \w fourth|strong="H7243"\w* \w part|strong="H7992"\w* \w of|strong="H8141"\w* \w a|strong="H3068"\w* \w hin|strong="H1969"\w* \w for|strong="H1961"\w* \w a|strong="H3068"\w* \w lamb|strong="H3532"\w*. \w This|strong="H2063"\w* \w is|strong="H1961"\w* \w the|strong="H1961"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w of|strong="H8141"\w* \w every|strong="H8141"\w* \w month|strong="H2320"\w* \w throughout|strong="H2320"\w* \w the|strong="H1961"\w* \w months|strong="H2320"\w* \w of|strong="H8141"\w* \w the|strong="H1961"\w* \w year|strong="H8141"\w*. +\v 15 \w Also|strong="H3068"\w*, \w one|strong="H6213"\w* \w male|strong="H8163"\w* \w goat|strong="H5795"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w offered|strong="H6213"\w* \w in|strong="H5921"\w* \w addition|strong="H5921"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w continual|strong="H8548"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w and|strong="H3068"\w* \w its|strong="H5921"\w* \w drink|strong="H5262"\w* \w offering|strong="H5930"\w*. +\p +\v 16 “‘\w In|strong="H3068"\w* \w the|strong="H3068"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*, \w on|strong="H3117"\w* \w the|strong="H3068"\w* \w fourteenth|strong="H6240"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w month|strong="H2320"\w*, \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w Passover|strong="H6453"\w*. +\v 17 \w On|strong="H3117"\w* \w the|strong="H3117"\w* \w fifteenth|strong="H2568"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w this|strong="H2088"\w* \w month|strong="H2320"\w* \w shall|strong="H3117"\w* \w be|strong="H3117"\w* \w a|strong="H3068"\w* \w feast|strong="H2282"\w*. \w Unleavened|strong="H4682"\w* \w bread|strong="H4682"\w* \w shall|strong="H3117"\w* \w be|strong="H3117"\w* eaten \w for|strong="H3117"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. +\v 18 \w In|strong="H6213"\w* \w the|strong="H3605"\w* \w first|strong="H7223"\w* \w day|strong="H3117"\w* \w shall|strong="H3117"\w* \w be|strong="H3808"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w convocation|strong="H4744"\w*. \w You|strong="H3605"\w* \w shall|strong="H3117"\w* \w do|strong="H6213"\w* \w no|strong="H3808"\w* \w regular|strong="H5656"\w* \w work|strong="H4399"\w*, +\v 19 \w but|strong="H1961"\w* \w you|strong="H7126"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w an|strong="H7126"\w* \w offering|strong="H5930"\w* \w made|strong="H1961"\w* \w by|strong="H8141"\w* fire, \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*: \w two|strong="H8147"\w* \w young|strong="H1121"\w* \w bulls|strong="H6499"\w*, \w one|strong="H3532"\w* ram, \w and|strong="H1121"\w* \w seven|strong="H7651"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*. \w They|strong="H3068"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*, +\v 20 \w with|strong="H1101"\w* \w their|strong="H6213"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w*. \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w offer|strong="H6213"\w* \w three|strong="H7969"\w* tenths \w for|strong="H6213"\w* \w a|strong="H3068"\w* \w bull|strong="H6499"\w*, \w and|strong="H6499"\w* \w two|strong="H8147"\w* tenths \w for|strong="H6213"\w* \w the|strong="H6213"\w* ram. +\v 21 \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w offer|strong="H6213"\w* \w one|strong="H3532"\w* \w tenth|strong="H6241"\w* \w for|strong="H6213"\w* \w every|strong="H6213"\w* \w lamb|strong="H3532"\w* \w of|strong="H6213"\w* \w the|strong="H6213"\w* \w seven|strong="H7651"\w* \w lambs|strong="H3532"\w*; +\v 22 \w and|strong="H2403"\w* one \w male|strong="H8163"\w* \w goat|strong="H8163"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*, \w to|strong="H5921"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w you|strong="H5921"\w*. +\v 23 \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w offer|strong="H6213"\w* \w these|strong="H6213"\w* \w in|strong="H6213"\w* addition \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w of|strong="H6213"\w* \w the|strong="H6213"\w* \w morning|strong="H1242"\w*, which \w is|strong="H6213"\w* \w for|strong="H6213"\w* \w a|strong="H3068"\w* \w continual|strong="H8548"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*. +\v 24 \w In|strong="H5921"\w* \w this|strong="H6213"\w* \w way|strong="H5921"\w* \w you|strong="H5921"\w* \w shall|strong="H3068"\w* \w offer|strong="H6213"\w* \w daily|strong="H3117"\w*, \w for|strong="H5921"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w the|strong="H5921"\w* \w food|strong="H3899"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w offering|strong="H5930"\w* \w made|strong="H6213"\w* \w by|strong="H5921"\w* fire, \w of|strong="H3068"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w It|strong="H5921"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w offered|strong="H6213"\w* \w in|strong="H5921"\w* \w addition|strong="H5921"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w continual|strong="H8548"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w and|strong="H3068"\w* \w its|strong="H5921"\w* \w drink|strong="H5262"\w* \w offering|strong="H5930"\w*. +\v 25 \w On|strong="H3117"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w you|strong="H3605"\w* \w shall|strong="H3117"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w convocation|strong="H4744"\w*. \w You|strong="H3605"\w* \w shall|strong="H3117"\w* \w do|strong="H6213"\w* \w no|strong="H3808"\w* \w regular|strong="H5656"\w* \w work|strong="H4399"\w*. +\p +\v 26 “‘\w Also|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w first|strong="H1061"\w* \w fruits|strong="H1061"\w*, \w when|strong="H1961"\w* \w you|strong="H3605"\w* \w offer|strong="H7126"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* feast \w of|strong="H3068"\w* \w weeks|strong="H7620"\w*, \w you|strong="H3605"\w* \w shall|strong="H3068"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w convocation|strong="H4744"\w*. \w You|strong="H3605"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w no|strong="H3808"\w* \w regular|strong="H5656"\w* \w work|strong="H4399"\w*; +\v 27 \w but|strong="H3068"\w* \w you|strong="H7126"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*: \w two|strong="H8147"\w* \w young|strong="H1121"\w* \w bulls|strong="H6499"\w*, \w one|strong="H3532"\w* ram, \w seven|strong="H7651"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*; +\v 28 \w and|strong="H6499"\w* \w their|strong="H8147"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w*, \w three|strong="H7969"\w* tenths \w for|strong="H6241"\w* \w each|strong="H8147"\w* \w bull|strong="H6499"\w*, \w two|strong="H8147"\w* tenths \w for|strong="H6241"\w* \w the|strong="H8147"\w* \w one|strong="H8147"\w* ram, +\v 29 \w one|strong="H3532"\w* \w tenth|strong="H6241"\w* \w for|strong="H6241"\w* every \w lamb|strong="H3532"\w* \w of|strong="H6241"\w* the \w seven|strong="H7651"\w* \w lambs|strong="H3532"\w*; +\v 30 \w and|strong="H5795"\w* one \w male|strong="H8163"\w* \w goat|strong="H5795"\w*, \w to|strong="H5921"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w you|strong="H5921"\w*. +\v 31 Besides \w the|strong="H6213"\w* \w continual|strong="H8548"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w* \w and|strong="H5930"\w* \w its|strong="H6213"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w you|strong="H6213"\w* \w shall|strong="H8549"\w* \w offer|strong="H6213"\w* \w them|strong="H6213"\w* \w and|strong="H5930"\w* \w their|strong="H1961"\w* \w drink|strong="H5262"\w* \w offerings|strong="H5930"\w*. See \w that|strong="H6213"\w* \w they|strong="H6213"\w* \w are|strong="H5262"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*. +\c 29 +\p +\v 1 “‘\w In|strong="H6213"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w*, \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w first|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w month|strong="H2320"\w*, \w you|strong="H3605"\w* \w shall|strong="H3117"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w convocation|strong="H4744"\w*; \w you|strong="H3605"\w* \w shall|strong="H3117"\w* \w do|strong="H6213"\w* \w no|strong="H3808"\w* \w regular|strong="H5656"\w* \w work|strong="H4399"\w*. \w It|strong="H6213"\w* \w is|strong="H3117"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w blowing|strong="H8643"\w* \w of|strong="H3117"\w* \w trumpets|strong="H8643"\w* \w to|strong="H1961"\w* \w you|strong="H3605"\w*. +\v 2 \w You|strong="H6213"\w* \w shall|strong="H3068"\w* \w offer|strong="H6213"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w for|strong="H6213"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*: \w one|strong="H3532"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w*, \w one|strong="H3532"\w* ram, \w seven|strong="H7651"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*; +\v 3 \w and|strong="H6499"\w* \w their|strong="H8147"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w*: \w three|strong="H7969"\w* tenths \w for|strong="H6241"\w* \w the|strong="H8147"\w* \w bull|strong="H6499"\w*, \w two|strong="H8147"\w* tenths \w for|strong="H6241"\w* \w the|strong="H8147"\w* ram, +\v 4 \w and|strong="H7651"\w* \w one|strong="H3532"\w* \w tenth|strong="H6241"\w* \w for|strong="H6241"\w* every \w lamb|strong="H3532"\w* \w of|strong="H6241"\w* the \w seven|strong="H7651"\w* \w lambs|strong="H3532"\w*; +\v 5 \w and|strong="H2403"\w* one \w male|strong="H8163"\w* \w goat|strong="H5795"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*, \w to|strong="H5921"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w you|strong="H5921"\w*; +\v 6 \w in|strong="H3068"\w* addition \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w new|strong="H2320"\w* \w moon|strong="H2320"\w* \w with|strong="H3068"\w* its \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w continual|strong="H8548"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w* \w with|strong="H3068"\w* its \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w and|strong="H3068"\w* \w their|strong="H3068"\w* \w drink|strong="H5262"\w* \w offerings|strong="H5930"\w*, \w according|strong="H4941"\w* \w to|strong="H3068"\w* \w their|strong="H3068"\w* \w ordinance|strong="H4941"\w*, \w for|strong="H3068"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w*, \w an|strong="H3068"\w* \w offering|strong="H4503"\w* \w made|strong="H3068"\w* \w by|strong="H3068"\w* fire \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 7 “‘\w On|strong="H1961"\w* \w the|strong="H3605"\w* \w tenth|strong="H6218"\w* \w day|strong="H2320"\w* \w of|strong="H3605"\w* \w this|strong="H2088"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w* \w you|strong="H3605"\w* \w shall|strong="H5315"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w convocation|strong="H4744"\w*. \w You|strong="H3605"\w* \w shall|strong="H5315"\w* \w afflict|strong="H6031"\w* \w your|strong="H3605"\w* \w souls|strong="H5315"\w*. \w You|strong="H3605"\w* \w shall|strong="H5315"\w* \w do|strong="H6213"\w* \w no|strong="H3808"\w* kind \w of|strong="H3605"\w* \w work|strong="H4399"\w*; +\v 8 \w but|strong="H1961"\w* \w you|strong="H7126"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w*: \w one|strong="H3532"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w*, \w one|strong="H3532"\w* ram, \w seven|strong="H7651"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*, \w all|strong="H3068"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*; +\v 9 \w and|strong="H6499"\w* \w their|strong="H8147"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w*: \w three|strong="H7969"\w* tenths \w for|strong="H6241"\w* \w the|strong="H8147"\w* \w bull|strong="H6499"\w*, \w two|strong="H8147"\w* tenths \w for|strong="H6241"\w* \w the|strong="H8147"\w* \w one|strong="H8147"\w* ram, +\v 10 \w one|strong="H3532"\w* \w tenth|strong="H6241"\w* \w for|strong="H6241"\w* every \w lamb|strong="H3532"\w* \w of|strong="H6241"\w* the \w seven|strong="H7651"\w* \w lambs|strong="H3532"\w*; +\v 11 one \w male|strong="H8163"\w* \w goat|strong="H5795"\w* \w for|strong="H2403"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H4503"\w*, \w in|strong="H4503"\w* addition \w to|strong="H4503"\w* the \w sin|strong="H2403"\w* \w offering|strong="H4503"\w* \w of|strong="H2403"\w* \w atonement|strong="H3725"\w*, \w and|strong="H5930"\w* the \w continual|strong="H8548"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, \w and|strong="H5930"\w* its \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w and|strong="H5930"\w* their \w drink|strong="H5262"\w* \w offerings|strong="H5930"\w*. +\p +\v 12 “‘\w On|strong="H3117"\w* \w the|strong="H3605"\w* \w fifteenth|strong="H2568"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w* \w you|strong="H3605"\w* \w shall|strong="H3068"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w convocation|strong="H4744"\w*. \w You|strong="H3605"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w no|strong="H3808"\w* \w regular|strong="H5656"\w* \w work|strong="H4399"\w*. \w You|strong="H3605"\w* \w shall|strong="H3068"\w* \w keep|strong="H6213"\w* \w a|strong="H3068"\w* \w feast|strong="H2282"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. +\v 13 \w You|strong="H7126"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w an|strong="H7126"\w* \w offering|strong="H5930"\w* \w made|strong="H1961"\w* \w by|strong="H8141"\w* fire, \w of|strong="H1121"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*: \w thirteen|strong="H7969"\w* \w young|strong="H1121"\w* \w bulls|strong="H6499"\w*, \w two|strong="H8147"\w* rams, \w fourteen|strong="H6240"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*, \w all|strong="H3068"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*; +\v 14 \w and|strong="H6499"\w* \w their|strong="H8147"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w mixed|strong="H1101"\w* \w with|strong="H1101"\w* \w oil|strong="H8081"\w*: \w three|strong="H7969"\w* tenths \w for|strong="H6241"\w* every \w bull|strong="H6499"\w* \w of|strong="H8147"\w* \w the|strong="H8147"\w* \w thirteen|strong="H7969"\w* \w bulls|strong="H6499"\w*, \w two|strong="H8147"\w* tenths \w for|strong="H6241"\w* \w each|strong="H8147"\w* ram \w of|strong="H8147"\w* \w the|strong="H8147"\w* \w two|strong="H8147"\w* rams, +\v 15 \w and|strong="H3532"\w* \w one|strong="H3532"\w* \w tenth|strong="H6241"\w* \w for|strong="H6241"\w* every \w lamb|strong="H3532"\w* \w of|strong="H6241"\w* \w the|strong="H6240"\w* \w fourteen|strong="H6240"\w* \w lambs|strong="H3532"\w*; +\v 16 \w and|strong="H5930"\w* one \w male|strong="H8163"\w* \w goat|strong="H5795"\w* \w for|strong="H2403"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H4503"\w*, \w in|strong="H4503"\w* addition \w to|strong="H4503"\w* the \w continual|strong="H8548"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, its \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w and|strong="H5930"\w* its \w drink|strong="H5262"\w* \w offering|strong="H4503"\w*. +\p +\v 17 “‘\w On|strong="H3117"\w* \w the|strong="H3117"\w* \w second|strong="H8145"\w* \w day|strong="H3117"\w* \w you|strong="H3117"\w* \w shall|strong="H1121"\w* offer \w twelve|strong="H8147"\w* \w young|strong="H1121"\w* \w bulls|strong="H6499"\w*, \w two|strong="H8147"\w* rams, \w and|strong="H1121"\w* \w fourteen|strong="H6240"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*; +\v 18 \w and|strong="H4941"\w* their \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w and|strong="H4941"\w* their \w drink|strong="H5262"\w* \w offerings|strong="H4503"\w* \w for|strong="H4941"\w* \w the|strong="H4941"\w* \w bulls|strong="H6499"\w*, \w for|strong="H4941"\w* \w the|strong="H4941"\w* rams, \w and|strong="H4941"\w* \w for|strong="H4941"\w* \w the|strong="H4941"\w* \w lambs|strong="H3532"\w*, \w according|strong="H4941"\w* \w to|strong="H4941"\w* their \w number|strong="H4557"\w*, after \w the|strong="H4941"\w* \w ordinance|strong="H4941"\w*; +\v 19 \w and|strong="H5930"\w* one \w male|strong="H8163"\w* \w goat|strong="H5795"\w* \w for|strong="H2403"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H4503"\w*, \w in|strong="H4503"\w* addition \w to|strong="H4503"\w* the \w continual|strong="H8548"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, \w with|strong="H5930"\w* its \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w and|strong="H5930"\w* their \w drink|strong="H5262"\w* \w offerings|strong="H5930"\w*. +\p +\v 20 “‘\w On|strong="H3117"\w* \w the|strong="H3117"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*: \w eleven|strong="H6249"\w* \w bulls|strong="H6499"\w*, \w two|strong="H8147"\w* rams, \w fourteen|strong="H6240"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*; +\v 21 \w and|strong="H4941"\w* their \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w and|strong="H4941"\w* their \w drink|strong="H5262"\w* \w offerings|strong="H4503"\w* \w for|strong="H4941"\w* \w the|strong="H4941"\w* \w bulls|strong="H6499"\w*, \w for|strong="H4941"\w* \w the|strong="H4941"\w* rams, \w and|strong="H4941"\w* \w for|strong="H4941"\w* \w the|strong="H4941"\w* \w lambs|strong="H3532"\w*, \w according|strong="H4941"\w* \w to|strong="H4941"\w* their \w number|strong="H4557"\w*, after \w the|strong="H4941"\w* \w ordinance|strong="H4941"\w*; +\v 22 \w and|strong="H5930"\w* one \w male|strong="H8163"\w* \w goat|strong="H8163"\w* \w for|strong="H4503"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H4503"\w*, \w in|strong="H4503"\w* addition \w to|strong="H4503"\w* the \w continual|strong="H8548"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, \w and|strong="H5930"\w* its \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w and|strong="H5930"\w* its \w drink|strong="H5262"\w* \w offering|strong="H4503"\w*. +\p +\v 23 “‘\w On|strong="H3117"\w* \w the|strong="H3117"\w* \w fourth|strong="H7243"\w* \w day|strong="H3117"\w* \w ten|strong="H6235"\w* \w bulls|strong="H6499"\w*, \w two|strong="H8147"\w* rams, \w fourteen|strong="H6240"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*; +\v 24 their \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w and|strong="H4941"\w* their \w drink|strong="H5262"\w* \w offerings|strong="H4503"\w* \w for|strong="H4941"\w* \w the|strong="H4941"\w* \w bulls|strong="H6499"\w*, \w for|strong="H4941"\w* \w the|strong="H4941"\w* rams, \w and|strong="H4941"\w* \w for|strong="H4941"\w* \w the|strong="H4941"\w* \w lambs|strong="H3532"\w*, \w according|strong="H4941"\w* \w to|strong="H4941"\w* their \w number|strong="H4557"\w*, after \w the|strong="H4941"\w* \w ordinance|strong="H4941"\w*; +\v 25 \w and|strong="H5930"\w* one \w male|strong="H8163"\w* \w goat|strong="H5795"\w* \w for|strong="H2403"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H4503"\w*; \w in|strong="H4503"\w* addition \w to|strong="H4503"\w* the \w continual|strong="H8548"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, its \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w and|strong="H5930"\w* its \w drink|strong="H5262"\w* \w offering|strong="H4503"\w*. +\p +\v 26 “‘\w On|strong="H3117"\w* \w the|strong="H3117"\w* \w fifth|strong="H2549"\w* \w day|strong="H3117"\w*: \w nine|strong="H8672"\w* \w bulls|strong="H6499"\w*, \w two|strong="H8147"\w* rams, \w fourteen|strong="H6240"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*; +\v 27 \w and|strong="H4941"\w* their \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w and|strong="H4941"\w* their \w drink|strong="H5262"\w* \w offerings|strong="H4503"\w* \w for|strong="H4941"\w* \w the|strong="H4941"\w* \w bulls|strong="H6499"\w*, \w for|strong="H4941"\w* \w the|strong="H4941"\w* rams, \w and|strong="H4941"\w* \w for|strong="H4941"\w* \w the|strong="H4941"\w* \w lambs|strong="H3532"\w*, \w according|strong="H4941"\w* \w to|strong="H4941"\w* their \w number|strong="H4557"\w*, after \w the|strong="H4941"\w* \w ordinance|strong="H4941"\w*, +\v 28 \w and|strong="H5930"\w* one \w male|strong="H8163"\w* \w goat|strong="H8163"\w* \w for|strong="H4503"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H4503"\w*, \w in|strong="H4503"\w* addition \w to|strong="H4503"\w* the \w continual|strong="H8548"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, \w and|strong="H5930"\w* its \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w and|strong="H5930"\w* its \w drink|strong="H5262"\w* \w offering|strong="H4503"\w*. +\p +\v 29 “‘\w On|strong="H3117"\w* \w the|strong="H3117"\w* \w sixth|strong="H8345"\w* \w day|strong="H3117"\w*: \w eight|strong="H8083"\w* \w bulls|strong="H6499"\w*, \w two|strong="H8147"\w* rams, \w fourteen|strong="H6240"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*; +\v 30 \w and|strong="H4941"\w* their \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w and|strong="H4941"\w* their \w drink|strong="H5262"\w* \w offerings|strong="H4503"\w* \w for|strong="H4941"\w* \w the|strong="H4941"\w* \w bulls|strong="H6499"\w*, \w for|strong="H4941"\w* \w the|strong="H4941"\w* rams, \w and|strong="H4941"\w* \w for|strong="H4941"\w* \w the|strong="H4941"\w* \w lambs|strong="H3532"\w*, \w according|strong="H4941"\w* \w to|strong="H4941"\w* their \w number|strong="H4557"\w*, after \w the|strong="H4941"\w* \w ordinance|strong="H4941"\w*, +\v 31 \w and|strong="H5930"\w* one \w male|strong="H8163"\w* \w goat|strong="H8163"\w* \w for|strong="H4503"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H4503"\w*; \w in|strong="H4503"\w* addition \w to|strong="H4503"\w* the \w continual|strong="H8548"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, its \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w and|strong="H5930"\w* the \w drink|strong="H5262"\w* \w offerings|strong="H5930"\w* \w of|strong="H2403"\w* it. +\p +\v 32 “‘\w On|strong="H3117"\w* \w the|strong="H3117"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*: \w seven|strong="H7651"\w* \w bulls|strong="H6499"\w*, \w two|strong="H8147"\w* rams, \w fourteen|strong="H6240"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*; +\v 33 \w and|strong="H4941"\w* their \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w and|strong="H4941"\w* their \w drink|strong="H5262"\w* \w offerings|strong="H4503"\w* \w for|strong="H4941"\w* \w the|strong="H4941"\w* \w bulls|strong="H6499"\w*, \w for|strong="H4941"\w* \w the|strong="H4941"\w* rams, \w and|strong="H4941"\w* \w for|strong="H4941"\w* \w the|strong="H4941"\w* \w lambs|strong="H3532"\w*, \w according|strong="H4941"\w* \w to|strong="H4941"\w* their \w number|strong="H4557"\w*, after \w the|strong="H4941"\w* \w ordinance|strong="H4941"\w*, +\v 34 \w and|strong="H5930"\w* one \w male|strong="H8163"\w* \w goat|strong="H8163"\w* \w for|strong="H4503"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H4503"\w*; \w in|strong="H4503"\w* addition \w to|strong="H4503"\w* the \w continual|strong="H8548"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, its \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w and|strong="H5930"\w* its \w drink|strong="H5262"\w* \w offering|strong="H4503"\w*. +\p +\v 35 “‘\w On|strong="H3117"\w* \w the|strong="H3605"\w* \w eighth|strong="H8066"\w* \w day|strong="H3117"\w* \w you|strong="H3605"\w* \w shall|strong="H3117"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* \w solemn|strong="H6116"\w* \w assembly|strong="H6116"\w*. \w You|strong="H3605"\w* \w shall|strong="H3117"\w* \w do|strong="H6213"\w* \w no|strong="H3808"\w* \w regular|strong="H5656"\w* \w work|strong="H4399"\w*; +\v 36 \w but|strong="H3068"\w* \w you|strong="H7126"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w an|strong="H7126"\w* \w offering|strong="H5930"\w* \w made|strong="H8141"\w* \w by|strong="H8141"\w* fire, \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*: \w one|strong="H3532"\w* \w bull|strong="H6499"\w*, \w one|strong="H3532"\w* ram, \w seven|strong="H7651"\w* \w male|strong="H3532"\w* \w lambs|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*; +\v 37 their \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w and|strong="H4941"\w* their \w drink|strong="H5262"\w* \w offerings|strong="H4503"\w* \w for|strong="H4941"\w* \w the|strong="H4941"\w* \w bull|strong="H6499"\w*, \w for|strong="H4941"\w* \w the|strong="H4941"\w* ram, \w and|strong="H4941"\w* \w for|strong="H4941"\w* \w the|strong="H4941"\w* \w lambs|strong="H3532"\w*, \w shall|strong="H4941"\w* be \w according|strong="H4941"\w* \w to|strong="H4941"\w* their \w number|strong="H4557"\w*, after \w the|strong="H4941"\w* \w ordinance|strong="H4941"\w*, +\v 38 \w and|strong="H5930"\w* one \w male|strong="H8163"\w* \w goat|strong="H8163"\w* \w for|strong="H4503"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H4503"\w*, \w in|strong="H4503"\w* addition \w to|strong="H4503"\w* the \w continual|strong="H8548"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, \w with|strong="H5930"\w* its \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w and|strong="H5930"\w* its \w drink|strong="H5262"\w* \w offering|strong="H4503"\w*. +\p +\v 39 “‘\w You|strong="H6213"\w* \w shall|strong="H3068"\w* \w offer|strong="H6213"\w* \w these|strong="H6213"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w set|strong="H6213"\w* \w feasts|strong="H4150"\w*—\w in|strong="H3068"\w* addition \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w vows|strong="H5088"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* free \w will|strong="H3068"\w* \w offerings|strong="H8002"\w*—\w for|strong="H6213"\w* \w your|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w*, \w your|strong="H3068"\w* \w meal|strong="H4503"\w* \w offerings|strong="H8002"\w*, \w your|strong="H3068"\w* \w drink|strong="H5262"\w* \w offerings|strong="H8002"\w*, \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*.’” +\p +\v 40 Moses told the children of Israel according to all that \w Yahweh|strong="H3068"\w* commanded Moses. +\c 30 +\p +\v 1 \w Moses|strong="H4872"\w* spoke \w to|strong="H3478"\w* \w the|strong="H3605"\w* heads \w of|strong="H1121"\w* \w the|strong="H3605"\w* tribes \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, saying, “\w This|strong="H3068"\w* \w is|strong="H3068"\w* \w the|strong="H3605"\w* \w thing|strong="H3605"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w*. +\v 2 \w When|strong="H1696"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* vows \w a|strong="H3068"\w* vow \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*, \w or|strong="H1121"\w* swears \w an|strong="H2088"\w* \w oath|strong="H1697"\w* \w to|strong="H1696"\w* bind \w his|strong="H3068"\w* soul \w with|strong="H3068"\w* \w a|strong="H3068"\w* bond, \w he|strong="H3068"\w* \w shall|strong="H3068"\w* \w not|strong="H2088"\w* \w break|strong="H3068"\w* \w his|strong="H3068"\w* \w word|strong="H1697"\w*. \w He|strong="H3068"\w* \w shall|strong="H3068"\w* \w do|strong="H3068"\w* according \w to|strong="H1696"\w* \w all|strong="H1697"\w* \w that|strong="H3068"\w* proceeds \w out|strong="H1696"\w* \w of|strong="H1121"\w* \w his|strong="H3068"\w* mouth. +\p +\v 3 “\w Also|strong="H3068"\w*, \w when|strong="H3588"\w* \w a|strong="H3068"\w* woman \w vows|strong="H5088"\w* \w a|strong="H3068"\w* \w vow|strong="H5088"\w* \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* binds \w herself|strong="H5315"\w* \w by|strong="H5921"\w* \w a|strong="H3068"\w* pledge, \w being|strong="H5315"\w* \w in|strong="H5921"\w* \w her|strong="H3605"\w* father’s house, \w in|strong="H5921"\w* \w her|strong="H3605"\w* youth, +\v 4 \w and|strong="H3068"\w* \w her|strong="H3588"\w* father hears \w her|strong="H3588"\w* \w vow|strong="H5088"\w* \w and|strong="H3068"\w* \w her|strong="H3588"\w* pledge \w with|strong="H1004"\w* \w which|strong="H3068"\w* \w she|strong="H3588"\w* \w has|strong="H3068"\w* bound \w her|strong="H3588"\w* soul, \w and|strong="H3068"\w* \w her|strong="H3588"\w* father says nothing \w to|strong="H3068"\w* \w her|strong="H3588"\w*, \w then|strong="H3588"\w* \w all|strong="H3068"\w* \w her|strong="H3588"\w* \w vows|strong="H5088"\w* \w shall|strong="H3068"\w* stand, \w and|strong="H3068"\w* \w every|strong="H3068"\w* pledge \w with|strong="H1004"\w* \w which|strong="H3068"\w* \w she|strong="H3588"\w* \w has|strong="H3068"\w* bound \w her|strong="H3588"\w* soul \w shall|strong="H3068"\w* stand. +\v 5 \w But|strong="H8085"\w* if \w her|strong="H3605"\w* father forbids \w her|strong="H3605"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* day \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w hears|strong="H8085"\w*, \w none|strong="H3605"\w* \w of|strong="H5921"\w* \w her|strong="H3605"\w* \w vows|strong="H5088"\w* \w or|strong="H8085"\w* \w of|strong="H5921"\w* \w her|strong="H3605"\w* pledges \w with|strong="H5921"\w* \w which|strong="H8085"\w* \w she|strong="H5921"\w* \w has|strong="H5315"\w* bound \w her|strong="H3605"\w* \w soul|strong="H5315"\w*, \w shall|strong="H5315"\w* \w stand|strong="H6965"\w*. \w Yahweh|strong="H3068"\w* \w will|strong="H5315"\w* forgive \w her|strong="H3605"\w*, \w because|strong="H5921"\w* \w her|strong="H3605"\w* father \w has|strong="H5315"\w* forbidden \w her|strong="H3605"\w*. +\p +\v 6 “\w If|strong="H3588"\w* \w she|strong="H3588"\w* \w has|strong="H3068"\w* \w a|strong="H3068"\w* husband, \w while|strong="H3117"\w* \w her|strong="H3605"\w* \w vows|strong="H5088"\w* \w are|strong="H3117"\w* \w on|strong="H5921"\w* \w her|strong="H3605"\w*, \w or|strong="H3808"\w* \w the|strong="H3605"\w* rash utterance \w of|strong="H3068"\w* \w her|strong="H3605"\w* lips \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w she|strong="H3588"\w* \w has|strong="H3068"\w* bound \w her|strong="H3605"\w* \w soul|strong="H5315"\w*, +\v 7 \w and|strong="H5315"\w* \w her|strong="H5921"\w* husband hears \w it|strong="H5921"\w*, \w and|strong="H5315"\w* says nothing \w to|strong="H1961"\w* \w her|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* day \w that|strong="H5315"\w* \w he|strong="H5921"\w* hears \w it|strong="H5921"\w*; \w then|strong="H1961"\w* \w her|strong="H5921"\w* \w vows|strong="H5088"\w* \w shall|strong="H5315"\w* stand, \w and|strong="H5315"\w* \w her|strong="H5921"\w* pledges \w with|strong="H5921"\w* \w which|strong="H5315"\w* \w she|strong="H8193"\w* \w has|strong="H1961"\w* bound \w her|strong="H5921"\w* \w soul|strong="H5315"\w* \w shall|strong="H5315"\w* stand. +\v 8 \w But|strong="H8085"\w* if \w her|strong="H5921"\w* husband forbids \w her|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w he|strong="H3117"\w* \w hears|strong="H8085"\w* \w it|strong="H5921"\w*, \w then|strong="H6965"\w* \w he|strong="H3117"\w* makes void \w her|strong="H5921"\w* \w vow|strong="H5088"\w* \w which|strong="H3117"\w* \w is|strong="H5315"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w* \w and|strong="H6965"\w* \w the|strong="H5921"\w* rash utterance \w of|strong="H3117"\w* \w her|strong="H5921"\w* lips, \w with|strong="H5921"\w* \w which|strong="H3117"\w* \w she|strong="H5921"\w* \w has|strong="H3117"\w* bound \w her|strong="H5921"\w* \w soul|strong="H5315"\w*. \w Yahweh|strong="H3068"\w* \w will|strong="H5315"\w* forgive \w her|strong="H5921"\w*. +\p +\v 9 “\w But|strong="H8085"\w* \w the|strong="H5921"\w* \w vow|strong="H5088"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* widow, \w or|strong="H8085"\w* \w of|strong="H3068"\w* \w her|strong="H5921"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* divorced, everything \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w she|strong="H8193"\w* \w has|strong="H3068"\w* bound \w her|strong="H5921"\w* \w soul|strong="H5315"\w* \w shall|strong="H3068"\w* stand \w against|strong="H5921"\w* \w her|strong="H5921"\w*. +\p +\v 10 “If \w she|strong="H5921"\w* \w vowed|strong="H5088"\w* \w in|strong="H5921"\w* \w her|strong="H3605"\w* husband’s house \w or|strong="H5088"\w* bound \w her|strong="H3605"\w* \w soul|strong="H5315"\w* \w by|strong="H5921"\w* \w a|strong="H3068"\w* bond \w with|strong="H5921"\w* \w an|strong="H6965"\w* oath, +\v 11 \w and|strong="H1004"\w* \w her|strong="H5921"\w* husband heard \w it|strong="H5921"\w*, \w and|strong="H1004"\w* held \w his|strong="H5921"\w* peace \w at|strong="H5921"\w* \w her|strong="H5921"\w* \w and|strong="H1004"\w* didn’t disallow \w her|strong="H5921"\w*, then \w all|strong="H5921"\w* \w her|strong="H5921"\w* \w vows|strong="H5087"\w* \w shall|strong="H1004"\w* stand, \w and|strong="H1004"\w* every pledge \w with|strong="H1004"\w* \w which|strong="H1004"\w* \w she|strong="H5921"\w* bound \w her|strong="H5921"\w* \w soul|strong="H5315"\w* \w shall|strong="H1004"\w* stand. +\v 12 \w But|strong="H3808"\w* if \w her|strong="H3605"\w* husband \w made|strong="H3605"\w* \w them|strong="H5921"\w* null \w and|strong="H6965"\w* void \w in|strong="H5921"\w* \w the|strong="H3605"\w* day \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w heard|strong="H8085"\w* \w them|strong="H5921"\w*, \w then|strong="H6965"\w* \w whatever|strong="H3605"\w* proceeded \w out|strong="H5921"\w* \w of|strong="H5921"\w* \w her|strong="H3605"\w* lips \w concerning|strong="H5921"\w* \w her|strong="H3605"\w* \w vows|strong="H5088"\w*, \w or|strong="H3808"\w* \w concerning|strong="H5921"\w* \w the|strong="H3605"\w* bond \w of|strong="H5921"\w* \w her|strong="H3605"\w* \w soul|strong="H5315"\w*, \w shall|strong="H5315"\w* \w not|strong="H3808"\w* \w stand|strong="H6965"\w*. \w Her|strong="H3605"\w* husband \w has|strong="H5315"\w* \w made|strong="H3605"\w* \w them|strong="H5921"\w* void. \w Yahweh|strong="H3068"\w* \w will|strong="H5315"\w* forgive \w her|strong="H3605"\w*. +\v 13 \w Every|strong="H3605"\w* \w vow|strong="H5088"\w*, \w and|strong="H6965"\w* \w every|strong="H3605"\w* \w binding|strong="H8193"\w* oath \w to|strong="H3068"\w* afflict \w the|strong="H3605"\w* \w soul|strong="H5315"\w*, \w her|strong="H3605"\w* husband \w may|strong="H3068"\w* \w establish|strong="H6965"\w* \w it|strong="H3117"\w*, \w or|strong="H3808"\w* \w her|strong="H3605"\w* husband \w may|strong="H3068"\w* \w make|strong="H8085"\w* \w it|strong="H3117"\w* \w void|strong="H6565"\w*. +\v 14 \w But|strong="H3605"\w* if \w her|strong="H3605"\w* husband says \w nothing|strong="H3605"\w* \w to|strong="H6965"\w* \w her|strong="H3605"\w* \w from|strong="H5315"\w* day \w to|strong="H6965"\w* day, \w then|strong="H6965"\w* \w he|strong="H3605"\w* establishes \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w vows|strong="H5088"\w* \w or|strong="H5088"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* pledges \w which|strong="H5315"\w* \w are|strong="H5315"\w* \w on|strong="H6965"\w* \w her|strong="H3605"\w*. \w He|strong="H3605"\w* \w has|strong="H5315"\w* \w established|strong="H6965"\w* \w them|strong="H6031"\w*, \w because|strong="H3605"\w* \w he|strong="H3605"\w* said \w nothing|strong="H3605"\w* \w to|strong="H6965"\w* \w her|strong="H3605"\w* \w in|strong="H5315"\w* \w the|strong="H3605"\w* day \w that|strong="H3605"\w* \w he|strong="H3605"\w* heard \w them|strong="H6031"\w*. +\v 15 \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w he|strong="H3588"\w* makes \w them|strong="H5921"\w* null \w and|strong="H6965"\w* void \w after|strong="H5921"\w* \w he|strong="H3588"\w* \w has|strong="H3117"\w* \w heard|strong="H8085"\w* \w them|strong="H5921"\w*, \w then|strong="H6965"\w* \w he|strong="H3588"\w* \w shall|strong="H3117"\w* bear \w her|strong="H3605"\w* iniquity.” +\p +\v 16 \w These|strong="H8085"\w* \w are|strong="H5771"\w* \w the|strong="H8085"\w* statutes \w which|strong="H8085"\w* \w Yahweh|strong="H3068"\w* commanded Moses, between \w a|strong="H3068"\w* \w man|strong="H5375"\w* \w and|strong="H8085"\w* \w his|strong="H5375"\w* wife, between \w a|strong="H3068"\w* father \w and|strong="H8085"\w* \w his|strong="H5375"\w* daughter, being \w in|strong="H8085"\w* \w her|strong="H5375"\w* youth, \w in|strong="H8085"\w* \w her|strong="H5375"\w* father’s house. +\c 31 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Avenge|strong="H5358"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w on|strong="H5360"\w* \w the|strong="H1121"\w* \w Midianites|strong="H4084"\w*. Afterward \w you|strong="H5971"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w gathered|strong="H3478"\w* \w to|strong="H3478"\w* \w your|strong="H3478"\w* \w people|strong="H5971"\w*.” +\p +\v 3 \w Moses|strong="H4872"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w*, \w saying|strong="H1696"\w*, “\w Arm|strong="H2502"\w* \w men|strong="H5971"\w* \w from|strong="H5921"\w* \w among|strong="H5921"\w* \w you|strong="H5414"\w* \w for|strong="H5921"\w* \w war|strong="H6635"\w*, \w that|strong="H5971"\w* \w they|strong="H3068"\w* \w may|strong="H1961"\w* \w go|strong="H5971"\w* \w against|strong="H5921"\w* \w Midian|strong="H4080"\w*, \w to|strong="H1696"\w* \w execute|strong="H5414"\w* \w Yahweh|strong="H3068"\w*’s \w vengeance|strong="H5360"\w* \w on|strong="H5921"\w* \w Midian|strong="H4080"\w*. +\v 4 \w You|strong="H3605"\w* \w shall|strong="H3478"\w* \w send|strong="H7971"\w* \w one|strong="H3605"\w* thousand \w out|strong="H7971"\w* \w of|strong="H4294"\w* \w every|strong="H3605"\w* \w tribe|strong="H4294"\w*, \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribes|strong="H4294"\w* \w of|strong="H4294"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w war|strong="H6635"\w*.” +\v 5 So there \w were|strong="H3478"\w* \w delivered|strong="H2502"\w*, \w out|strong="H2502"\w* \w of|strong="H4294"\w* \w the|strong="H8147"\w* thousands \w of|strong="H4294"\w* \w Israel|strong="H3478"\w*, \w a|strong="H3068"\w* thousand \w from|strong="H3478"\w* \w every|strong="H3478"\w* \w tribe|strong="H4294"\w*, \w twelve|strong="H8147"\w* thousand \w armed|strong="H2502"\w* \w for|strong="H3478"\w* \w war|strong="H6635"\w*. +\v 6 \w Moses|strong="H4872"\w* \w sent|strong="H7971"\w* \w them|strong="H7971"\w*, \w one|strong="H1121"\w* thousand \w of|strong="H1121"\w* \w every|strong="H7971"\w* \w tribe|strong="H4294"\w*, \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w war|strong="H6635"\w* \w with|strong="H3027"\w* \w Phinehas|strong="H6372"\w* \w the|strong="H7971"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Eleazar \w the|strong="H7971"\w* \w priest|strong="H3548"\w*, \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w war|strong="H6635"\w*, \w with|strong="H3027"\w* \w the|strong="H7971"\w* \w vessels|strong="H3627"\w* \w of|strong="H1121"\w* \w the|strong="H7971"\w* \w sanctuary|strong="H6944"\w* \w and|strong="H1121"\w* \w the|strong="H7971"\w* \w trumpets|strong="H2689"\w* \w for|strong="H3027"\w* \w the|strong="H7971"\w* \w alarm|strong="H8643"\w* \w in|strong="H1121"\w* \w his|strong="H7971"\w* \w hand|strong="H3027"\w*. +\v 7 \w They|strong="H3068"\w* \w fought|strong="H6633"\w* \w against|strong="H5921"\w* \w Midian|strong="H4080"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. \w They|strong="H3068"\w* \w killed|strong="H2026"\w* \w every|strong="H3605"\w* \w male|strong="H2145"\w*. +\v 8 \w They|strong="H5921"\w* \w killed|strong="H2026"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H1121"\w* \w Midian|strong="H4080"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* rest \w of|strong="H1121"\w* \w their|strong="H5921"\w* \w slain|strong="H2491"\w*: Evi, \w Rekem|strong="H7552"\w*, \w Zur|strong="H6698"\w*, \w Hur|strong="H2354"\w*, \w and|strong="H1121"\w* \w Reba|strong="H7254"\w*, \w the|strong="H5921"\w* \w five|strong="H2568"\w* \w kings|strong="H4428"\w* \w of|strong="H1121"\w* \w Midian|strong="H4080"\w*. \w They|strong="H5921"\w* \w also|strong="H4428"\w* \w killed|strong="H2026"\w* \w Balaam|strong="H1109"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Beor|strong="H1160"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w*. +\v 9 \w The|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w took|strong="H7617"\w* \w the|strong="H3605"\w* women \w of|strong="H1121"\w* \w Midian|strong="H4080"\w* \w captive|strong="H7617"\w* \w with|strong="H3478"\w* \w their|strong="H3605"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*; \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w livestock|strong="H4735"\w*, \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w flocks|strong="H4735"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w goods|strong="H2428"\w*, \w they|strong="H3478"\w* \w took|strong="H7617"\w* \w as|strong="H1121"\w* plunder. +\v 10 \w All|strong="H3605"\w* \w their|strong="H3605"\w* \w cities|strong="H5892"\w* \w in|strong="H5892"\w* \w the|strong="H3605"\w* \w places|strong="H4186"\w* \w in|strong="H5892"\w* \w which|strong="H5892"\w* \w they|strong="H3605"\w* \w lived|strong="H4186"\w*, \w and|strong="H5892"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w encampments|strong="H2918"\w*, \w they|strong="H3605"\w* \w burned|strong="H8313"\w* \w with|strong="H8313"\w* fire. +\v 11 \w They|strong="H3605"\w* \w took|strong="H3947"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* captives, \w and|strong="H3947"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w plunder|strong="H7998"\w*, \w both|strong="H3605"\w* \w of|strong="H3605"\w* \w man|strong="H3605"\w* \w and|strong="H3947"\w* \w of|strong="H3605"\w* animal. +\v 12 \w They|strong="H5921"\w* \w brought|strong="H3548"\w* \w the|strong="H5921"\w* \w captives|strong="H7628"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w prey|strong="H7998"\w* \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w plunder|strong="H7998"\w*, \w to|strong="H3478"\w* \w Moses|strong="H4872"\w*, \w and|strong="H1121"\w* \w to|strong="H3478"\w* Eleazar \w the|strong="H5921"\w* \w priest|strong="H3548"\w*, \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w camp|strong="H4264"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w plains|strong="H6160"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w*, \w which|strong="H3478"\w* \w are|strong="H1121"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w* \w at|strong="H5921"\w* \w Jericho|strong="H3405"\w*. +\v 13 \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Eleazar \w the|strong="H3605"\w* \w priest|strong="H3548"\w*, \w with|strong="H3318"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H5387"\w* \w of|strong="H4264"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w*, \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w meet|strong="H7125"\w* \w them|strong="H3318"\w* \w outside|strong="H2351"\w* \w of|strong="H4264"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w*. +\v 14 \w Moses|strong="H4872"\w* \w was|strong="H4872"\w* \w angry|strong="H7107"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w officers|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H5921"\w* \w army|strong="H2428"\w*, \w the|strong="H5921"\w* \w captains|strong="H8269"\w* \w of|strong="H8269"\w* thousands \w and|strong="H3967"\w* \w the|strong="H5921"\w* \w captains|strong="H8269"\w* \w of|strong="H8269"\w* \w hundreds|strong="H3967"\w*, \w who|strong="H6635"\w* \w came|strong="H6635"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w service|strong="H6635"\w* \w of|strong="H8269"\w* \w the|strong="H5921"\w* \w war|strong="H4421"\w*. +\v 15 \w Moses|strong="H4872"\w* said \w to|strong="H4872"\w* \w them|strong="H2421"\w*, “\w Have|strong="H3605"\w* \w you|strong="H3605"\w* \w saved|strong="H2421"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w women|strong="H5347"\w* \w alive|strong="H2421"\w*? +\v 16 \w Behold|strong="H2005"\w*, \w these|strong="H2007"\w* \w caused|strong="H1961"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w through|strong="H5921"\w* \w the|strong="H5921"\w* \w counsel|strong="H1697"\w* \w of|strong="H1121"\w* \w Balaam|strong="H1109"\w*, \w to|strong="H3478"\w* \w commit|strong="H4560"\w* \w trespass|strong="H4604"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w matter|strong="H1697"\w* \w of|strong="H1121"\w* \w Peor|strong="H6465"\w*, \w and|strong="H1121"\w* \w so|strong="H1961"\w* \w the|strong="H5921"\w* \w plague|strong="H4046"\w* \w was|strong="H3068"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*. +\v 17 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w kill|strong="H2026"\w* \w every|strong="H3605"\w* \w male|strong="H2145"\w* among \w the|strong="H3605"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*, \w and|strong="H3045"\w* \w kill|strong="H2026"\w* \w every|strong="H3605"\w* woman \w who|strong="H3605"\w* \w has|strong="H3045"\w* \w known|strong="H3045"\w* \w man|strong="H2145"\w* \w by|strong="H3605"\w* \w lying|strong="H4904"\w* \w with|strong="H3045"\w* \w him|strong="H3605"\w*. +\v 18 \w But|strong="H3808"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w girls|strong="H2945"\w*, \w who|strong="H3605"\w* \w have|strong="H3045"\w* \w not|strong="H3808"\w* \w known|strong="H3045"\w* \w man|strong="H2145"\w* \w by|strong="H3808"\w* \w lying|strong="H4904"\w* \w with|strong="H3045"\w* \w him|strong="H3605"\w*, \w keep|strong="H2421"\w* \w alive|strong="H2421"\w* \w for|strong="H3605"\w* \w yourselves|strong="H3605"\w*. +\p +\v 19 “\w Encamp|strong="H2583"\w* \w outside|strong="H2351"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w for|strong="H3117"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. \w Whoever|strong="H3605"\w* \w has|strong="H3117"\w* \w killed|strong="H2026"\w* \w any|strong="H3605"\w* \w person|strong="H5315"\w*, \w and|strong="H3117"\w* \w whoever|strong="H3605"\w* \w has|strong="H3117"\w* \w touched|strong="H5060"\w* \w any|strong="H3605"\w* \w slain|strong="H2491"\w*, \w purify|strong="H2398"\w* \w yourselves|strong="H5315"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w* \w and|strong="H3117"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*, \w you|strong="H3605"\w* \w and|strong="H3117"\w* \w your|strong="H3605"\w* \w captives|strong="H7628"\w*. +\v 20 \w You|strong="H3605"\w* \w shall|strong="H2398"\w* \w purify|strong="H2398"\w* \w every|strong="H3605"\w* garment, \w and|strong="H6086"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w made|strong="H4639"\w* \w of|strong="H3627"\w* \w skin|strong="H5785"\w*, \w and|strong="H6086"\w* \w all|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H3627"\w* \w goats|strong="H5795"\w*’ hair, \w and|strong="H6086"\w* \w all|strong="H3605"\w* \w things|strong="H3605"\w* \w made|strong="H4639"\w* \w of|strong="H3627"\w* \w wood|strong="H6086"\w*.” +\p +\v 21 Eleazar \w the|strong="H3068"\w* \w priest|strong="H3548"\w* said \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w men|strong="H6635"\w* \w of|strong="H3068"\w* \w war|strong="H4421"\w* \w who|strong="H3068"\w* \w went|strong="H4872"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w battle|strong="H4421"\w*, “\w This|strong="H2063"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w statute|strong="H2708"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w law|strong="H8451"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\v 22 However the \w gold|strong="H2091"\w*, \w and|strong="H3701"\w* the \w silver|strong="H3701"\w*, the \w bronze|strong="H5178"\w*, the \w iron|strong="H1270"\w*, the tin, \w and|strong="H3701"\w* the \w lead|strong="H5777"\w*, +\v 23 \w everything|strong="H3605"\w* \w that|strong="H3605"\w* \w may|strong="H4325"\w* withstand \w the|strong="H3605"\w* fire, \w you|strong="H3605"\w* \w shall|strong="H3808"\w* make \w to|strong="H4325"\w* \w go|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H3605"\w* fire, \w and|strong="H1697"\w* \w it|strong="H3808"\w* \w shall|strong="H3808"\w* \w be|strong="H3808"\w* \w clean|strong="H2891"\w*; nevertheless \w it|strong="H3808"\w* \w shall|strong="H3808"\w* \w be|strong="H3808"\w* \w purified|strong="H2891"\w* \w with|strong="H1697"\w* \w the|strong="H3605"\w* \w water|strong="H4325"\w* \w for|strong="H4325"\w* \w impurity|strong="H5079"\w*. \w All|strong="H3605"\w* \w that|strong="H3605"\w* doesn’t withstand \w the|strong="H3605"\w* fire \w you|strong="H3605"\w* \w shall|strong="H3808"\w* make \w to|strong="H4325"\w* \w go|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H3605"\w* \w water|strong="H4325"\w*. +\v 24 \w You|strong="H3117"\w* \w shall|strong="H3117"\w* \w wash|strong="H3526"\w* \w your|strong="H3117"\w* clothes \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*, \w and|strong="H3117"\w* \w you|strong="H3117"\w* \w shall|strong="H3117"\w* \w be|strong="H3117"\w* \w clean|strong="H2891"\w*. Afterward \w you|strong="H3117"\w* \w shall|strong="H3117"\w* come \w into|strong="H4264"\w* \w the|strong="H3117"\w* \w camp|strong="H4264"\w*.” +\p +\v 25 \w Yahweh|strong="H3068"\w* spoke \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, saying, +\v 26 “\w Count|strong="H5375"\w* \w the|strong="H5375"\w* \w plunder|strong="H4455"\w* \w that|strong="H3548"\w* \w was|strong="H7218"\w* \w taken|strong="H5375"\w*, both \w of|strong="H7218"\w* \w man|strong="H5375"\w* \w and|strong="H3548"\w* \w of|strong="H7218"\w* animal, \w you|strong="H5375"\w*, \w and|strong="H3548"\w* Eleazar \w the|strong="H5375"\w* \w priest|strong="H3548"\w*, \w and|strong="H3548"\w* \w the|strong="H5375"\w* \w heads|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H5375"\w* fathers’ households \w of|strong="H7218"\w* \w the|strong="H5375"\w* \w congregation|strong="H5712"\w*; +\v 27 \w and|strong="H3318"\w* \w divide|strong="H2673"\w* \w the|strong="H3605"\w* \w plunder|strong="H4455"\w* \w into|strong="H3318"\w* two \w parts|strong="H2673"\w*: \w between|strong="H4421"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* skilled \w in|strong="H4421"\w* \w war|strong="H4421"\w*, \w who|strong="H3605"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w battle|strong="H4421"\w*, \w and|strong="H3318"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w*. +\v 28 \w Levy|strong="H4371"\w* \w a|strong="H3068"\w* \w tribute|strong="H4371"\w* \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w men|strong="H5315"\w* \w of|strong="H3068"\w* \w war|strong="H4421"\w* \w who|strong="H3068"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w battle|strong="H4421"\w*: \w one|strong="H4480"\w* \w soul|strong="H5315"\w* \w of|strong="H3068"\w* \w five|strong="H2568"\w* \w hundred|strong="H3967"\w*; \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w persons|strong="H5315"\w*, \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w cattle|strong="H1241"\w*, \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w donkeys|strong="H2543"\w*, \w and|strong="H3967"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w flocks|strong="H6629"\w*. +\v 29 \w Take|strong="H3947"\w* \w it|strong="H5414"\w* \w from|strong="H3947"\w* \w their|strong="H3068"\w* \w half|strong="H4276"\w*, \w and|strong="H3068"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3068"\w* Eleazar \w the|strong="H5414"\w* \w priest|strong="H3548"\w*, \w for|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s wave \w offering|strong="H8641"\w*. +\v 30 \w Of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*’s \w half|strong="H4276"\w*, \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w take|strong="H3947"\w* \w one|strong="H3605"\w* \w drawn|strong="H3947"\w* \w out|strong="H4480"\w* \w of|strong="H1121"\w* \w every|strong="H3605"\w* \w fifty|strong="H2572"\w*, \w of|strong="H1121"\w* \w the|strong="H3605"\w* persons, \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w cattle|strong="H1241"\w*, \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w donkeys|strong="H2543"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w flocks|strong="H6629"\w*, \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* livestock, \w and|strong="H1121"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*, \w who|strong="H3605"\w* \w perform|strong="H8104"\w* \w the|strong="H3605"\w* \w duty|strong="H4931"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w tabernacle|strong="H4908"\w*.” +\p +\v 31 \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Eleazar \w the|strong="H6213"\w* \w priest|strong="H3548"\w* \w did|strong="H6213"\w* \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\p +\v 32 \w Now|strong="H1961"\w* \w the|strong="H1961"\w* \w plunder|strong="H4455"\w*, over \w and|strong="H3967"\w* above \w the|strong="H1961"\w* \w booty|strong="H4455"\w* \w which|strong="H5971"\w* \w the|strong="H1961"\w* \w men|strong="H5971"\w* \w of|strong="H6635"\w* \w war|strong="H6635"\w* \w took|strong="H1961"\w*, \w was|strong="H1961"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w seventy-five|strong="H7657"\w* thousand \w sheep|strong="H6629"\w*, +\v 33 seventy-two thousand head \w of|strong="H8147"\w* \w cattle|strong="H1241"\w*, +\v 34 sixty-one thousand \w donkeys|strong="H2543"\w*, +\v 35 \w and|strong="H7970"\w* \w thirty-two|strong="H7970"\w* thousand \w persons|strong="H5315"\w* \w in|strong="H5315"\w* \w all|strong="H3605"\w*, \w of|strong="H4480"\w* \w the|strong="H3605"\w* women \w who|strong="H3605"\w* \w had|strong="H3045"\w* \w not|strong="H3808"\w* \w known|strong="H3045"\w* \w man|strong="H2145"\w* \w by|strong="H3808"\w* \w lying|strong="H4904"\w* \w with|strong="H3045"\w* \w him|strong="H3605"\w*. +\v 36 \w The|strong="H3318"\w* \w half|strong="H4275"\w*, \w which|strong="H6635"\w* \w was|strong="H1961"\w* \w the|strong="H3318"\w* \w portion|strong="H2506"\w* \w of|strong="H6635"\w* \w those|strong="H3318"\w* \w who|strong="H6635"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w war|strong="H6635"\w*, \w was|strong="H1961"\w* \w in|strong="H6635"\w* \w number|strong="H4557"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w thirty-seven|strong="H7970"\w* thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w sheep|strong="H6629"\w*; +\v 37 \w and|strong="H3967"\w* \w Yahweh|strong="H3068"\w*’s \w tribute|strong="H4371"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w sheep|strong="H6629"\w* \w was|strong="H3068"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w seventy-five|strong="H7657"\w*. +\v 38 \w The|strong="H3068"\w* \w cattle|strong="H1241"\w* \w were|strong="H1241"\w* \w thirty-six|strong="H7970"\w* thousand, \w of|strong="H3068"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w tribute|strong="H4371"\w* \w was|strong="H3068"\w* seventy-two. +\v 39 \w The|strong="H3068"\w* \w donkeys|strong="H2543"\w* \w were|strong="H3068"\w* \w thirty|strong="H7970"\w* thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w*, \w of|strong="H3068"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w tribute|strong="H4371"\w* \w was|strong="H3068"\w* sixty-one. +\v 40 \w The|strong="H3068"\w* \w persons|strong="H5315"\w* \w were|strong="H5315"\w* \w sixteen|strong="H8337"\w* thousand, \w of|strong="H3068"\w* whom \w Yahweh|strong="H3068"\w*’s \w tribute|strong="H4371"\w* \w was|strong="H3068"\w* \w thirty-two|strong="H7970"\w* \w persons|strong="H5315"\w*. +\v 41 \w Moses|strong="H4872"\w* \w gave|strong="H5414"\w* \w the|strong="H5414"\w* \w tribute|strong="H4371"\w*, \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s wave \w offering|strong="H8641"\w*, \w to|strong="H3068"\w* Eleazar \w the|strong="H5414"\w* \w priest|strong="H3548"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\v 42 \w Of|strong="H1121"\w* \w the|strong="H4480"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*’s \w half|strong="H4276"\w*, \w which|strong="H3478"\w* \w Moses|strong="H4872"\w* \w divided|strong="H2673"\w* \w off|strong="H4480"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w men|strong="H1121"\w* \w who|strong="H1121"\w* \w fought|strong="H6633"\w* +\v 43 (\w now|strong="H1961"\w* \w the|strong="H4480"\w* \w congregation|strong="H5712"\w*’s \w half|strong="H4275"\w* \w was|strong="H1961"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w thirty-seven|strong="H7970"\w* thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w sheep|strong="H6629"\w*, +\v 44 \w thirty-six|strong="H7970"\w* thousand head \w of|strong="H7970"\w* \w cattle|strong="H1241"\w*, +\v 45 \w thirty|strong="H7970"\w* thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w donkeys|strong="H2543"\w*, +\v 46 \w and|strong="H5315"\w* \w sixteen|strong="H8337"\w* thousand \w persons|strong="H5315"\w*), +\v 47 \w even|strong="H3068"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*’s \w half|strong="H4276"\w*, \w Moses|strong="H4872"\w* \w took|strong="H3947"\w* \w one|strong="H4480"\w* \w drawn|strong="H3947"\w* \w out|strong="H4480"\w* \w of|strong="H1121"\w* \w every|strong="H3947"\w* \w fifty|strong="H2572"\w*, \w both|strong="H4480"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* animal, \w and|strong="H1121"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H3478"\w* \w the|strong="H5414"\w* \w Levites|strong="H3881"\w*, \w who|strong="H3068"\w* \w performed|strong="H8104"\w* \w the|strong="H5414"\w* \w duty|strong="H4931"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w tabernacle|strong="H4908"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\p +\v 48 \w The|strong="H6485"\w* \w officers|strong="H8269"\w* \w who|strong="H6635"\w* \w were|strong="H8269"\w* \w over|strong="H8269"\w* \w the|strong="H6485"\w* thousands \w of|strong="H8269"\w* \w the|strong="H6485"\w* \w army|strong="H6635"\w*, \w the|strong="H6485"\w* \w captains|strong="H8269"\w* \w of|strong="H8269"\w* thousands, \w and|strong="H3967"\w* \w the|strong="H6485"\w* \w captains|strong="H8269"\w* \w of|strong="H8269"\w* \w hundreds|strong="H3967"\w*, \w came|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H7126"\w* \w Moses|strong="H4872"\w*. +\v 49 \w They|strong="H3808"\w* said \w to|strong="H3027"\w* \w Moses|strong="H4872"\w*, “\w Your|strong="H5375"\w* \w servants|strong="H5650"\w* \w have|strong="H5650"\w* \w taken|strong="H5375"\w* \w the|strong="H5375"\w* \w sum|strong="H7218"\w* \w of|strong="H3027"\w* \w the|strong="H5375"\w* \w men|strong="H7218"\w* \w of|strong="H3027"\w* \w war|strong="H4421"\w* \w who|strong="H5650"\w* \w are|strong="H3027"\w* \w under|strong="H4480"\w* \w our|strong="H5650"\w* \w command|strong="H3027"\w*, \w and|strong="H4872"\w* \w there|strong="H4480"\w* lacks \w not|strong="H3808"\w* \w one|strong="H3808"\w* \w man|strong="H5375"\w* \w of|strong="H3027"\w* \w us|strong="H3027"\w*. +\v 50 \w We|strong="H5315"\w* \w have|strong="H3068"\w* \w brought|strong="H7126"\w* \w Yahweh|strong="H3068"\w*’s \w offering|strong="H7133"\w*, \w what|strong="H5921"\w* \w every|strong="H3068"\w* \w man|strong="H5315"\w* \w found|strong="H4672"\w*: \w gold|strong="H2091"\w* \w ornaments|strong="H3627"\w*, armlets, \w bracelets|strong="H6781"\w*, \w signet|strong="H2885"\w* \w rings|strong="H2885"\w*, \w earrings|strong="H5694"\w*, \w and|strong="H3068"\w* \w necklaces|strong="H3558"\w*, \w to|strong="H3068"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w our|strong="H3068"\w* \w souls|strong="H5315"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 51 \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Eleazar \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w took|strong="H3947"\w* \w their|strong="H3605"\w* \w gold|strong="H2091"\w*, even \w all|strong="H3605"\w* worked \w jewels|strong="H3627"\w*. +\v 52 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w gold|strong="H2091"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* wave \w offering|strong="H8641"\w* \w that|strong="H3605"\w* \w they|strong="H3068"\w* \w offered|strong="H7311"\w* \w up|strong="H7311"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H3068"\w* thousands, \w and|strong="H3967"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H3068"\w* \w hundreds|strong="H3967"\w*, \w was|strong="H3068"\w* \w sixteen|strong="H8337"\w* thousand \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w* \w shekels|strong="H8255"\w*.\f + \fr 31:52 \ft A shekel is about 10 grams or about 0.35 ounces, so 16,750 shekels is about 167.5 kilograms or about 368.5 pounds.\f* +\v 53 \w The|strong="H6635"\w* \w men|strong="H6635"\w* \w of|strong="H6635"\w* \w war|strong="H6635"\w* \w had|strong="H6635"\w* taken booty, every man \w for|strong="H6635"\w* himself. +\v 54 \w Moses|strong="H4872"\w* \w and|strong="H3967"\w* Eleazar \w the|strong="H6440"\w* \w priest|strong="H3548"\w* \w took|strong="H3947"\w* \w the|strong="H6440"\w* \w gold|strong="H2091"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* thousands \w and|strong="H3967"\w* \w of|strong="H1121"\w* \w hundreds|strong="H3967"\w*, \w and|strong="H3967"\w* \w brought|strong="H3947"\w* \w it|strong="H6440"\w* \w into|strong="H3947"\w* \w the|strong="H6440"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w* \w for|strong="H6440"\w* \w a|strong="H3068"\w* \w memorial|strong="H2146"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\c 32 +\p +\v 1 \w Now|strong="H1961"\w* \w the|strong="H7200"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* \w and|strong="H1121"\w* \w the|strong="H7200"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w* \w had|strong="H1961"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H7227"\w* \w multitude|strong="H7227"\w* \w of|strong="H1121"\w* \w livestock|strong="H4735"\w*. \w They|strong="H7200"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w land|strong="H4725"\w* \w of|strong="H1121"\w* \w Jazer|strong="H3270"\w*, \w and|strong="H1121"\w* \w the|strong="H7200"\w* \w land|strong="H4725"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*. \w Behold|strong="H2009"\w*, \w the|strong="H7200"\w* \w place|strong="H4725"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w place|strong="H4725"\w* \w for|strong="H1121"\w* \w livestock|strong="H4735"\w*. +\v 2 \w Then|strong="H4872"\w* \w the|strong="H4872"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w* \w and|strong="H1121"\w* \w the|strong="H4872"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* \w came|strong="H3548"\w* \w and|strong="H1121"\w* spoke \w to|strong="H1121"\w* \w Moses|strong="H4872"\w*, \w and|strong="H1121"\w* \w to|strong="H1121"\w* Eleazar \w the|strong="H4872"\w* \w priest|strong="H3548"\w*, \w and|strong="H1121"\w* \w to|strong="H1121"\w* \w the|strong="H4872"\w* \w princes|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H4872"\w* \w congregation|strong="H5712"\w*, saying, +\v 3 “\w Ataroth|strong="H5852"\w*, \w Dibon|strong="H1769"\w*, \w Jazer|strong="H3270"\w*, \w Nimrah|strong="H5247"\w*, \w Heshbon|strong="H2809"\w*, Elealeh, \w Sebam|strong="H7643"\w*, \w Nebo|strong="H5015"\w*, \w and|strong="H5015"\w* \w Beon|strong="H1194"\w*, +\v 4 \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w which|strong="H1931"\w* \w Yahweh|strong="H3068"\w* \w struck|strong="H5221"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w congregation|strong="H5712"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w land|strong="H6440"\w* \w for|strong="H6440"\w* \w livestock|strong="H4735"\w*; \w and|strong="H3478"\w* \w your|strong="H3068"\w* \w servants|strong="H5650"\w* \w have|strong="H3068"\w* \w livestock|strong="H4735"\w*.” +\v 5 \w They|strong="H5414"\w* said, “If \w we|strong="H3068"\w* \w have|strong="H5869"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H4672"\w* \w your|strong="H5414"\w* \w sight|strong="H5869"\w*, \w let|strong="H5414"\w* \w this|strong="H2063"\w* land \w be|strong="H5414"\w* \w given|strong="H5414"\w* \w to|strong="H5414"\w* \w your|strong="H5414"\w* \w servants|strong="H5650"\w* \w for|strong="H5650"\w* \w a|strong="H3068"\w* possession. Don’t \w bring|strong="H5414"\w* \w us|strong="H5414"\w* \w over|strong="H5674"\w* \w the|strong="H5414"\w* \w Jordan|strong="H3383"\w*.” +\p +\v 6 \w Moses|strong="H4872"\w* said \w to|strong="H1121"\w* \w the|strong="H4872"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w*, \w and|strong="H1121"\w* \w to|strong="H1121"\w* \w the|strong="H4872"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w*, “\w Shall|strong="H1121"\w* \w your|strong="H1121"\w* \w brothers|strong="H1121"\w* go \w to|strong="H1121"\w* \w war|strong="H4421"\w* \w while|strong="H3427"\w* \w you|strong="H3427"\w* \w sit|strong="H3427"\w* \w here|strong="H6311"\w*? +\v 7 \w Why|strong="H4100"\w* \w do|strong="H3068"\w* \w you|strong="H5414"\w* discourage \w the|strong="H5414"\w* \w heart|strong="H3820"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w from|strong="H3478"\w* \w going|strong="H5674"\w* \w over|strong="H5674"\w* \w into|strong="H5414"\w* \w the|strong="H5414"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w them|strong="H5414"\w*? +\v 8 \w Your|strong="H7200"\w* fathers \w did|strong="H6213"\w* \w so|strong="H6213"\w* \w when|strong="H7200"\w* \w I|strong="H3541"\w* \w sent|strong="H7971"\w* \w them|strong="H7971"\w* \w from|strong="H7971"\w* Kadesh Barnea \w to|strong="H7971"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* land. +\v 9 \w For|strong="H5704"\w* \w when|strong="H7200"\w* \w they|strong="H3068"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5704"\w* \w the|strong="H7200"\w* \w valley|strong="H5158"\w* \w of|strong="H1121"\w* Eshcol, \w and|strong="H1121"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* land, \w they|strong="H3068"\w* \w discouraged|strong="H5106"\w* \w the|strong="H7200"\w* \w heart|strong="H3820"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w that|strong="H7200"\w* \w they|strong="H3068"\w* \w should|strong="H3068"\w* \w not|strong="H1115"\w* \w go|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H7200"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w given|strong="H5414"\w* \w them|strong="H5414"\w*. +\v 10 \w Yahweh|strong="H3068"\w*’s anger \w burned|strong="H2734"\w* \w in|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w and|strong="H3068"\w* \w he|strong="H1931"\w* \w swore|strong="H7650"\w*, saying, +\v 11 ‘\w Surely|strong="H3588"\w* \w none|strong="H3808"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w men|strong="H1121"\w* \w who|strong="H1121"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H7200"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w from|strong="H5927"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w shall|strong="H1121"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* land \w which|strong="H3588"\w* \w I|strong="H3588"\w* \w swore|strong="H7650"\w* \w to|strong="H5927"\w* Abraham, \w to|strong="H5927"\w* \w Isaac|strong="H3327"\w*, \w and|strong="H1121"\w* \w to|strong="H5927"\w* \w Jacob|strong="H3290"\w*; \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H1121"\w* \w not|strong="H3808"\w* \w wholly|strong="H4390"\w* \w followed|strong="H5927"\w* \w me|strong="H7200"\w*, +\v 12 \w except|strong="H3588"\w* \w Caleb|strong="H3612"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jephunneh|strong="H3312"\w* \w the|strong="H3588"\w* \w Kenizzite|strong="H7074"\w*, \w and|strong="H1121"\w* \w Joshua|strong="H3091"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3068"\w* followed \w Yahweh|strong="H3068"\w* completely.’ +\v 13 \w Yahweh|strong="H3068"\w*’s anger \w burned|strong="H2734"\w* \w against|strong="H2734"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w he|strong="H5704"\w* \w made|strong="H6213"\w* \w them|strong="H6213"\w* \w wander|strong="H5128"\w* back \w and|strong="H3478"\w* \w forth|strong="H6213"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* forty \w years|strong="H8141"\w*, \w until|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w generation|strong="H1755"\w* \w who|strong="H3605"\w* \w had|strong="H3068"\w* \w done|strong="H6213"\w* \w evil|strong="H7451"\w* \w in|strong="H8141"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w* \w was|strong="H3068"\w* \w consumed|strong="H8552"\w*. +\p +\v 14 “\w Behold|strong="H2009"\w*, \w you|strong="H5921"\w* \w have|strong="H3068"\w* \w risen|strong="H6965"\w* \w up|strong="H6965"\w* \w in|strong="H5921"\w* \w your|strong="H3068"\w* fathers’ \w place|strong="H8478"\w*, \w an|strong="H6965"\w* \w increase|strong="H8635"\w* \w of|strong="H3068"\w* \w sinful|strong="H2400"\w* \w men|strong="H2400"\w*, \w to|strong="H3478"\w* \w increase|strong="H8635"\w* \w the|strong="H5921"\w* \w fierce|strong="H2740"\w* \w anger|strong="H2740"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w toward|strong="H5921"\w* \w Israel|strong="H3478"\w*. +\v 15 \w For|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w from|strong="H7725"\w* \w after|strong="H3588"\w* \w him|strong="H7725"\w*, \w he|strong="H3588"\w* \w will|strong="H5971"\w* \w yet|strong="H5750"\w* \w again|strong="H7725"\w* \w leave|strong="H3240"\w* \w them|strong="H7725"\w* \w in|strong="H7725"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w*; \w and|strong="H7725"\w* \w you|strong="H3588"\w* \w will|strong="H5971"\w* \w destroy|strong="H7843"\w* \w all|strong="H3605"\w* \w these|strong="H2088"\w* \w people|strong="H5971"\w*.” +\p +\v 16 \w They|strong="H5892"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H5066"\w* him, \w and|strong="H5892"\w* said, “\w We|strong="H5892"\w* \w will|strong="H5892"\w* \w build|strong="H1129"\w* \w sheepfolds|strong="H1448"\w* \w here|strong="H6311"\w* \w for|strong="H5892"\w* our \w livestock|strong="H4735"\w*, \w and|strong="H5892"\w* \w cities|strong="H5892"\w* \w for|strong="H5892"\w* our \w little|strong="H2945"\w* \w ones|strong="H2945"\w*; +\v 17 but \w we|strong="H3068"\w* ourselves \w will|strong="H3478"\w* \w be|strong="H1121"\w* \w ready|strong="H2363"\w* \w armed|strong="H2502"\w* \w to|strong="H5704"\w* \w go|strong="H3478"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w until|strong="H5704"\w* \w we|strong="H3068"\w* \w have|strong="H1121"\w* \w brought|strong="H3478"\w* \w them|strong="H6440"\w* \w to|strong="H5704"\w* \w their|strong="H6440"\w* \w place|strong="H4725"\w*. \w Our|strong="H6440"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w* \w shall|strong="H1121"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w fortified|strong="H4013"\w* \w cities|strong="H5892"\w* \w because|strong="H6440"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w land|strong="H4725"\w*. +\v 18 \w We|strong="H5704"\w* \w will|strong="H3478"\w* \w not|strong="H3808"\w* \w return|strong="H7725"\w* \w to|strong="H5704"\w* \w our|strong="H7725"\w* \w houses|strong="H1004"\w* \w until|strong="H5704"\w* \w the|strong="H7725"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w have|strong="H1121"\w* \w all|strong="H5704"\w* \w received|strong="H5157"\w* \w their|strong="H7725"\w* \w inheritance|strong="H5159"\w*. +\v 19 \w For|strong="H3588"\w* \w we|strong="H3068"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w inherit|strong="H5157"\w* \w with|strong="H5159"\w* \w them|strong="H3588"\w* \w on|strong="H5676"\w* \w the|strong="H3588"\w* \w other|strong="H5676"\w* \w side|strong="H5676"\w* \w of|strong="H5159"\w* \w the|strong="H3588"\w* \w Jordan|strong="H3383"\w* \w and|strong="H3383"\w* \w beyond|strong="H5676"\w*, \w because|strong="H3588"\w* \w our|strong="H3588"\w* \w inheritance|strong="H5159"\w* \w has|strong="H3588"\w* come \w to|strong="H5159"\w* \w us|strong="H3588"\w* \w on|strong="H5676"\w* \w this|strong="H3588"\w* \w side|strong="H5676"\w* \w of|strong="H5159"\w* \w the|strong="H3588"\w* \w Jordan|strong="H3383"\w* \w eastward|strong="H4217"\w*.” +\p +\v 20 \w Moses|strong="H4872"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w them|strong="H6440"\w*: “If \w you|strong="H6440"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*, if \w you|strong="H6440"\w* \w will|strong="H3068"\w* \w arm|strong="H2502"\w* \w yourselves|strong="H3068"\w* \w to|strong="H3068"\w* \w go|strong="H3068"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w war|strong="H4421"\w*, +\v 21 \w and|strong="H3068"\w* \w every|strong="H3605"\w* \w one|strong="H3605"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w armed|strong="H2502"\w* \w men|strong="H2502"\w* \w will|strong="H3068"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w has|strong="H3068"\w* \w driven|strong="H3423"\w* \w out|strong="H3423"\w* \w his|strong="H3605"\w* enemies \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, +\v 22 \w and|strong="H3478"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w is|strong="H3068"\w* \w subdued|strong="H3533"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*; \w then|strong="H1961"\w* afterward \w you|strong="H6440"\w* \w shall|strong="H3068"\w* \w return|strong="H7725"\w*, \w and|strong="H3478"\w* \w be|strong="H1961"\w* \w clear|strong="H5355"\w* \w of|strong="H3068"\w* \w obligation|strong="H5355"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3478"\w* \w to|strong="H7725"\w* \w Israel|strong="H3478"\w*. \w Then|strong="H1961"\w* \w this|strong="H2063"\w* \w land|strong="H6440"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w your|strong="H3068"\w* possession \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 23 “\w But|strong="H3808"\w* \w if|strong="H2009"\w* \w you|strong="H6213"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w do|strong="H6213"\w* \w so|strong="H3651"\w*, \w behold|strong="H2009"\w*, \w you|strong="H6213"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H3068"\w* \w be|strong="H3808"\w* \w sure|strong="H3045"\w* \w your|strong="H3068"\w* \w sin|strong="H2403"\w* \w will|strong="H3068"\w* \w find|strong="H4672"\w* \w you|strong="H6213"\w* \w out|strong="H4672"\w*. +\v 24 \w Build|strong="H1129"\w* \w cities|strong="H5892"\w* \w for|strong="H6213"\w* \w your|strong="H6213"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*, \w and|strong="H5892"\w* \w folds|strong="H1448"\w* \w for|strong="H6213"\w* \w your|strong="H6213"\w* \w sheep|strong="H6792"\w*; \w and|strong="H5892"\w* \w do|strong="H6213"\w* \w that|strong="H5892"\w* \w which|strong="H5892"\w* \w has|strong="H3318"\w* \w proceeded|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H5892"\w* \w your|strong="H6213"\w* \w mouth|strong="H6310"\w*.” +\p +\v 25 \w The|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w* \w and|strong="H1121"\w* \w the|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* spoke \w to|strong="H6213"\w* \w Moses|strong="H4872"\w*, saying, “\w Your|strong="H6213"\w* \w servants|strong="H5650"\w* \w will|strong="H5650"\w* \w do|strong="H6213"\w* \w as|strong="H6213"\w* \w my|strong="H6213"\w* lord \w commands|strong="H6680"\w*. +\v 26 \w Our|strong="H3605"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*, \w our|strong="H3605"\w* wives, \w our|strong="H3605"\w* \w flocks|strong="H4735"\w*, \w and|strong="H5892"\w* \w all|strong="H3605"\w* \w our|strong="H3605"\w* \w livestock|strong="H4735"\w* \w shall|strong="H5892"\w* \w be|strong="H1961"\w* \w there|strong="H8033"\w* \w in|strong="H5892"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w Gilead|strong="H1568"\w*; +\v 27 \w but|strong="H1696"\w* \w your|strong="H3068"\w* \w servants|strong="H5650"\w* \w will|strong="H3068"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w*, \w every|strong="H3605"\w* \w man|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3068"\w* \w armed|strong="H2502"\w* \w for|strong="H6440"\w* \w war|strong="H4421"\w*, \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H1696"\w* \w battle|strong="H4421"\w*, \w as|strong="H3068"\w* \w my|strong="H3605"\w* \w lord|strong="H3068"\w* \w says|strong="H1696"\w*.” +\p +\v 28 \w So|strong="H6680"\w* \w Moses|strong="H4872"\w* \w commanded|strong="H6680"\w* \w concerning|strong="H6680"\w* \w them|strong="H6680"\w* \w to|strong="H3478"\w* Eleazar \w the|strong="H6680"\w* \w priest|strong="H3548"\w*, \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w Joshua|strong="H3091"\w* \w the|strong="H6680"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w*, \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w the|strong="H6680"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H6680"\w* fathers’ households \w of|strong="H1121"\w* \w the|strong="H6680"\w* \w tribes|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H6680"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 29 \w Moses|strong="H4872"\w* said \w to|strong="H3068"\w* \w them|strong="H5414"\w*, “\w If|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w* \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* \w will|strong="H3068"\w* \w pass|strong="H5674"\w* \w with|strong="H3068"\w* \w you|strong="H5414"\w* \w over|strong="H5674"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*, \w every|strong="H3605"\w* \w man|strong="H1121"\w* \w who|strong="H3605"\w* \w is|strong="H3068"\w* \w armed|strong="H2502"\w* \w to|strong="H3068"\w* \w battle|strong="H4421"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w is|strong="H3068"\w* \w subdued|strong="H3533"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w*, \w then|strong="H5414"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w* \w for|strong="H6440"\w* \w a|strong="H3068"\w* possession; +\v 30 \w but|strong="H3808"\w* if \w they|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w with|strong="H5674"\w* \w you|strong="H3808"\w* \w armed|strong="H2502"\w*, \w they|strong="H3808"\w* \w shall|strong="H3808"\w* \w have|strong="H3808"\w* possessions \w among|strong="H8432"\w* \w you|strong="H3808"\w* \w in|strong="H8432"\w* \w the|strong="H8432"\w* land \w of|strong="H8432"\w* \w Canaan|strong="H3667"\w*.” +\p +\v 31 \w The|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w* \w and|strong="H1121"\w* \w the|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* \w answered|strong="H6030"\w*, \w saying|strong="H1696"\w*, “\w As|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w your|strong="H3068"\w* \w servants|strong="H5650"\w*, \w so|strong="H3651"\w* \w will|strong="H3068"\w* \w we|strong="H3068"\w* \w do|strong="H6213"\w*. +\v 32 \w We|strong="H5168"\w* \w will|strong="H3068"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w armed|strong="H2502"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w into|strong="H5674"\w* \w the|strong="H6440"\w* \w land|strong="H5159"\w* \w of|strong="H3068"\w* \w Canaan|strong="H3667"\w*, \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w possession|strong="H5159"\w* \w of|strong="H3068"\w* \w our|strong="H3068"\w* \w inheritance|strong="H5159"\w* \w shall|strong="H3068"\w* remain \w with|strong="H3068"\w* \w us|strong="H6440"\w* \w beyond|strong="H5676"\w* \w the|strong="H6440"\w* \w Jordan|strong="H3383"\w*.” +\p +\v 33 \w Moses|strong="H4872"\w* \w gave|strong="H5414"\w* \w to|strong="H5414"\w* \w them|strong="H5414"\w*, \w even|strong="H4519"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w*, \w and|strong="H1121"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w*, \w and|strong="H1121"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w*, \w the|strong="H5414"\w* \w kingdom|strong="H4467"\w* \w of|strong="H1121"\w* \w Sihon|strong="H5511"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* Amorites, \w and|strong="H1121"\w* \w the|strong="H5414"\w* \w kingdom|strong="H4467"\w* \w of|strong="H1121"\w* \w Og|strong="H5747"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Bashan|strong="H1316"\w*; \w the|strong="H5414"\w* land, according \w to|strong="H5414"\w* \w its|strong="H5414"\w* \w cities|strong="H5892"\w* \w and|strong="H1121"\w* \w borders|strong="H1367"\w*, \w even|strong="H4519"\w* \w the|strong="H5414"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w surrounding|strong="H5439"\w* land. +\v 34 \w The|strong="H1129"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w* \w built|strong="H1129"\w* \w Dibon|strong="H1769"\w*, \w Ataroth|strong="H5852"\w*, \w Aroer|strong="H6177"\w*, +\v 35 \w Atroth-shophan|strong="H5855"\w*, \w Jazer|strong="H3270"\w*, \w Jogbehah|strong="H3011"\w*, +\v 36 Beth Nimrah, \w and|strong="H5892"\w* Beth Haran: \w fortified|strong="H4013"\w* \w cities|strong="H5892"\w* \w and|strong="H5892"\w* \w folds|strong="H1448"\w* \w for|strong="H5892"\w* \w sheep|strong="H6629"\w*. +\v 37 \w The|strong="H1129"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* \w built|strong="H1129"\w* \w Heshbon|strong="H2809"\w*, Elealeh, \w Kiriathaim|strong="H7156"\w*, +\v 38 \w Nebo|strong="H5015"\w*, \w and|strong="H5892"\w* Baal Meon, (\w their|strong="H5437"\w* \w names|strong="H8034"\w* \w being|strong="H8034"\w* \w changed|strong="H5437"\w*), \w and|strong="H5892"\w* \w Sibmah|strong="H7643"\w*. \w They|strong="H5892"\w* \w gave|strong="H7121"\w* \w other|strong="H7121"\w* \w names|strong="H8034"\w* \w to|strong="H7121"\w* \w the|strong="H1129"\w* \w cities|strong="H5892"\w* \w which|strong="H5892"\w* \w they|strong="H5892"\w* \w built|strong="H1129"\w*. +\v 39 \w The|strong="H3423"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Machir|strong="H4353"\w* \w the|strong="H3423"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Gilead|strong="H1568"\w*, \w took|strong="H3920"\w* \w it|strong="H3423"\w*, \w and|strong="H1121"\w* \w dispossessed|strong="H3423"\w* \w the|strong="H3423"\w* Amorites \w who|strong="H1121"\w* \w were|strong="H1121"\w* therein. +\v 40 \w Moses|strong="H4872"\w* \w gave|strong="H5414"\w* \w Gilead|strong="H1568"\w* \w to|strong="H5414"\w* \w Machir|strong="H4353"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*; \w and|strong="H1121"\w* \w he|strong="H5414"\w* \w lived|strong="H3427"\w* \w therein|strong="H3427"\w*. +\v 41 \w Jair|strong="H2971"\w* \w the|strong="H7121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w went|strong="H1980"\w* \w and|strong="H1121"\w* \w took|strong="H3920"\w* \w its|strong="H3920"\w* villages, \w and|strong="H1121"\w* \w called|strong="H7121"\w* \w them|strong="H7121"\w* Havvoth \w Jair|strong="H2971"\w*. +\v 42 \w Nobah|strong="H5025"\w* \w went|strong="H1980"\w* \w and|strong="H1980"\w* \w took|strong="H3920"\w* \w Kenath|strong="H7079"\w* \w and|strong="H1980"\w* \w its|strong="H3920"\w* \w villages|strong="H1323"\w*, \w and|strong="H1980"\w* \w called|strong="H7121"\w* \w it|strong="H7121"\w* \w Nobah|strong="H5025"\w*, \w after|strong="H7121"\w* \w his|strong="H7121"\w* own \w name|strong="H8034"\w*. +\c 33 +\p +\v 1 These \w are|strong="H1121"\w* \w the|strong="H3318"\w* \w journeys|strong="H4550"\w* \w of|strong="H1121"\w* \w the|strong="H3318"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w when|strong="H3318"\w* \w they|strong="H3478"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H3318"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w* \w by|strong="H3027"\w* \w their|strong="H3318"\w* \w armies|strong="H6635"\w* \w under|strong="H3027"\w* \w the|strong="H3318"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* Aaron. +\v 2 \w Moses|strong="H4872"\w* \w wrote|strong="H3789"\w* \w the|strong="H5921"\w* \w starting|strong="H4161"\w* points \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w journeys|strong="H4550"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w commandment|strong="H6310"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w These|strong="H3789"\w* \w are|strong="H3068"\w* \w their|strong="H3068"\w* \w journeys|strong="H4550"\w* \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w their|strong="H3068"\w* \w starting|strong="H4161"\w* points. +\v 3 \w They|strong="H3117"\w* \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Rameses|strong="H7486"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*, \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w fifteenth|strong="H2568"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*; \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w next|strong="H4283"\w* \w day|strong="H3117"\w* \w after|strong="H4283"\w* \w the|strong="H3605"\w* \w Passover|strong="H6453"\w*, \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w with|strong="H3318"\w* \w a|strong="H3068"\w* \w high|strong="H7311"\w* \w hand|strong="H3027"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Egyptians|strong="H4713"\w*, +\v 4 while \w the|strong="H3605"\w* \w Egyptians|strong="H4713"\w* \w were|strong="H3068"\w* \w burying|strong="H6912"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w firstborn|strong="H1060"\w*, whom \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w struck|strong="H5221"\w* \w among|strong="H1060"\w* \w them|strong="H5221"\w*. \w Yahweh|strong="H3068"\w* \w also|strong="H3068"\w* \w executed|strong="H6213"\w* \w judgments|strong="H8201"\w* \w on|strong="H3068"\w* \w their|strong="H3605"\w* gods. +\v 5 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Rameses|strong="H7486"\w*, \w and|strong="H1121"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Succoth|strong="H5523"\w*. +\v 6 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Succoth|strong="H5523"\w*, \w and|strong="H4057"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* Etham, \w which|strong="H4057"\w* \w is|strong="H4057"\w* \w in|strong="H2583"\w* \w the|strong="H2583"\w* \w edge|strong="H7097"\w* \w of|strong="H4057"\w* \w the|strong="H2583"\w* \w wilderness|strong="H4057"\w*. +\v 7 \w They|strong="H5921"\w* \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* Etham, \w and|strong="H7725"\w* \w turned|strong="H7725"\w* \w back|strong="H7725"\w* \w to|strong="H7725"\w* Pihahiroth, which \w is|strong="H6440"\w* \w before|strong="H6440"\w* Baal Zephon, \w and|strong="H7725"\w* \w they|strong="H5921"\w* \w encamped|strong="H2583"\w* \w before|strong="H6440"\w* \w Migdol|strong="H4024"\w*. +\v 8 \w They|strong="H3117"\w* \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w before|strong="H6440"\w* \w Hahiroth|strong="H6367"\w*, \w and|strong="H3117"\w* \w crossed|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H6440"\w* \w middle|strong="H8432"\w* \w of|strong="H3117"\w* \w the|strong="H6440"\w* \w sea|strong="H3220"\w* \w into|strong="H8432"\w* \w the|strong="H6440"\w* \w wilderness|strong="H4057"\w*. \w They|strong="H3117"\w* \w went|strong="H3212"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*’ \w journey|strong="H1870"\w* \w in|strong="H2583"\w* \w the|strong="H6440"\w* \w wilderness|strong="H4057"\w* \w of|strong="H3117"\w* Etham, \w and|strong="H3117"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Marah|strong="H4785"\w*. +\v 9 \w They|strong="H8033"\w* \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Marah|strong="H4785"\w*, \w and|strong="H5869"\w* \w came|strong="H4325"\w* \w to|strong="H4325"\w* Elim. \w In|strong="H2583"\w* Elim, \w there|strong="H8033"\w* \w were|strong="H4325"\w* \w twelve|strong="H8147"\w* springs \w of|strong="H5869"\w* \w water|strong="H4325"\w* \w and|strong="H5869"\w* \w seventy|strong="H7657"\w* \w palm|strong="H8558"\w* \w trees|strong="H8558"\w*, \w and|strong="H5869"\w* \w they|strong="H8033"\w* \w encamped|strong="H2583"\w* \w there|strong="H8033"\w*. +\v 10 \w They|strong="H5921"\w* \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* Elim, \w and|strong="H3220"\w* \w encamped|strong="H2583"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w*. +\v 11 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w the|strong="H3220"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w*, \w and|strong="H3220"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w the|strong="H3220"\w* \w wilderness|strong="H4057"\w* \w of|strong="H4057"\w* \w Sin|strong="H5512"\w*. +\v 12 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w the|strong="H4057"\w* \w wilderness|strong="H4057"\w* \w of|strong="H4057"\w* \w Sin|strong="H5512"\w*, \w and|strong="H4057"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Dophkah|strong="H1850"\w*. +\v 13 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Dophkah|strong="H1850"\w*, \w and|strong="H5265"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* Alush. +\v 14 \w They|strong="H8033"\w* \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* Alush, \w and|strong="H5971"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Rephidim|strong="H7508"\w*, \w where|strong="H8033"\w* \w there|strong="H8033"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w water|strong="H4325"\w* \w for|strong="H4325"\w* \w the|strong="H1961"\w* \w people|strong="H5971"\w* \w to|strong="H1961"\w* \w drink|strong="H8354"\w*. +\v 15 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Rephidim|strong="H7508"\w*, \w and|strong="H4057"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w the|strong="H2583"\w* \w wilderness|strong="H4057"\w* \w of|strong="H4057"\w* \w Sinai|strong="H5514"\w*. +\v 16 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w the|strong="H4057"\w* \w wilderness|strong="H4057"\w* \w of|strong="H4057"\w* \w Sinai|strong="H5514"\w*, \w and|strong="H4057"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* Kibroth Hattaavah. +\v 17 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* Kibroth Hattaavah, \w and|strong="H5265"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Hazeroth|strong="H2698"\w*. +\v 18 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Hazeroth|strong="H2698"\w*, \w and|strong="H5265"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Rithmah|strong="H7575"\w*. +\v 19 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Rithmah|strong="H7575"\w*, \w and|strong="H5265"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* Rimmon Perez. +\v 20 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* Rimmon Perez, \w and|strong="H5265"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Libnah|strong="H3841"\w*. +\v 21 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Libnah|strong="H3841"\w*, \w and|strong="H5265"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Rissah|strong="H7446"\w*. +\v 22 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Rissah|strong="H7446"\w*, \w and|strong="H5265"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Kehelathah|strong="H6954"\w*. +\v 23 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Kehelathah|strong="H6954"\w*, \w and|strong="H2022"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Mount|strong="H2022"\w* \w Shepher|strong="H8234"\w*. +\v 24 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Mount|strong="H2022"\w* \w Shepher|strong="H8234"\w*, \w and|strong="H2022"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Haradah|strong="H2732"\w*. +\v 25 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Haradah|strong="H2732"\w*, \w and|strong="H5265"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Makheloth|strong="H4722"\w*. +\v 26 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Makheloth|strong="H4722"\w*, \w and|strong="H5265"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Tahath|strong="H8480"\w*. +\v 27 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Tahath|strong="H8480"\w*, \w and|strong="H5265"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Terah|strong="H8646"\w*. +\v 28 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Terah|strong="H8646"\w*, \w and|strong="H5265"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Mithkah|strong="H4989"\w*. +\v 29 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Mithkah|strong="H4989"\w*, \w and|strong="H5265"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Hashmonah|strong="H2832"\w*. +\v 30 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Hashmonah|strong="H2832"\w*, \w and|strong="H5265"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Moseroth|strong="H4149"\w*. +\v 31 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Moseroth|strong="H4149"\w*, \w and|strong="H5265"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* Bene Jaakan. +\v 32 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* Bene Jaakan, \w and|strong="H5265"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* Hor Haggidgad. +\v 33 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* Hor Haggidgad, \w and|strong="H5265"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Jotbathah|strong="H3193"\w*. +\v 34 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Jotbathah|strong="H3193"\w*, \w and|strong="H5265"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Abronah|strong="H5684"\w*. +\v 35 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Abronah|strong="H5684"\w*, \w and|strong="H5265"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* Ezion Geber. +\v 36 \w They|strong="H1931"\w* \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* Ezion Geber, \w and|strong="H4057"\w* \w encamped|strong="H2583"\w* \w at|strong="H2583"\w* \w Kadesh|strong="H6946"\w* \w in|strong="H2583"\w* \w the|strong="H1931"\w* \w wilderness|strong="H4057"\w* \w of|strong="H4057"\w* \w Zin|strong="H6790"\w*. +\v 37 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Kadesh|strong="H6946"\w*, \w and|strong="H2022"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Mount|strong="H2022"\w* \w Hor|strong="H2023"\w*, \w in|strong="H2583"\w* \w the|strong="H2022"\w* \w edge|strong="H7097"\w* \w of|strong="H2022"\w* \w the|strong="H2022"\w* land \w of|strong="H2022"\w* Edom. +\v 38 Aaron \w the|strong="H5921"\w* \w priest|strong="H3548"\w* \w went|strong="H3318"\w* \w up|strong="H5927"\w* \w into|strong="H5927"\w* \w Mount|strong="H2022"\w* \w Hor|strong="H2023"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w commandment|strong="H6310"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H1121"\w* \w died|strong="H4191"\w* \w there|strong="H8033"\w*, \w in|strong="H8141"\w* \w the|strong="H5921"\w* fortieth \w year|strong="H8141"\w* \w after|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w had|strong="H3068"\w* \w come|strong="H5927"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w fifth|strong="H2549"\w* \w month|strong="H2320"\w*, \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w first|strong="H1121"\w* \w day|strong="H2320"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w month|strong="H2320"\w*. +\v 39 Aaron \w was|strong="H1121"\w* \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* \w twenty-three|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H8141"\w* \w died|strong="H4194"\w* \w in|strong="H8141"\w* \w Mount|strong="H2022"\w* \w Hor|strong="H2023"\w*. +\v 40 \w The|strong="H8085"\w* \w Canaanite|strong="H3669"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Arad|strong="H6166"\w*, \w who|strong="H1931"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H8085"\w* \w South|strong="H5045"\w* \w in|strong="H3427"\w* \w the|strong="H8085"\w* land \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*, \w heard|strong="H8085"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* coming \w of|strong="H1121"\w* \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 41 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Mount|strong="H2022"\w* \w Hor|strong="H2023"\w*, \w and|strong="H2022"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Zalmonah|strong="H6758"\w*. +\v 42 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Zalmonah|strong="H6758"\w*, \w and|strong="H5265"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Punon|strong="H6325"\w*. +\v 43 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Punon|strong="H6325"\w*, \w and|strong="H5265"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* Oboth. +\v 44 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* Oboth, \w and|strong="H4124"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* Iye Abarim, \w in|strong="H2583"\w* \w the|strong="H2583"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Moab|strong="H4124"\w*. +\v 45 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Iyim|strong="H5864"\w*, \w and|strong="H5265"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Dibon|strong="H1769"\w* \w Gad|strong="H1410"\w*. +\v 46 They \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Dibon|strong="H1769"\w* \w Gad|strong="H1410"\w*, \w and|strong="H1410"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* Almon Diblathaim. +\v 47 \w They|strong="H6440"\w* \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* Almon Diblathaim, \w and|strong="H6440"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w the|strong="H6440"\w* \w mountains|strong="H2022"\w* \w of|strong="H2022"\w* \w Abarim|strong="H5682"\w*, \w before|strong="H6440"\w* \w Nebo|strong="H5015"\w*. +\v 48 \w They|strong="H5921"\w* \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w* \w of|strong="H2022"\w* \w Abarim|strong="H5682"\w*, \w and|strong="H2022"\w* \w encamped|strong="H2583"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w plains|strong="H6160"\w* \w of|strong="H2022"\w* \w Moab|strong="H4124"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w* \w at|strong="H2583"\w* \w Jericho|strong="H3405"\w*. +\v 49 \w They|strong="H5921"\w* \w encamped|strong="H2583"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w*, \w from|strong="H5921"\w* Beth Jeshimoth \w even|strong="H5704"\w* \w to|strong="H5704"\w* Abel Shittim \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w plains|strong="H6160"\w* \w of|strong="H5921"\w* \w Moab|strong="H4124"\w*. +\v 50 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w plains|strong="H6160"\w* \w of|strong="H3068"\w* \w Moab|strong="H4124"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w* \w at|strong="H5921"\w* \w Jericho|strong="H3405"\w*, \w saying|strong="H1696"\w*, +\v 51 \w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w tell|strong="H1696"\w* \w them|strong="H5674"\w*, “\w When|strong="H3588"\w* \w you|strong="H3588"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H3588"\w* \w Jordan|strong="H3383"\w* \w into|strong="H5674"\w* \w the|strong="H3588"\w* land \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*, +\v 52 \w then|strong="H3605"\w* \w you|strong="H6440"\w* \w shall|strong="H6440"\w* \w drive|strong="H3423"\w* \w out|strong="H3423"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w destroy|strong="H8045"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* stone idols, \w destroy|strong="H8045"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w molten|strong="H4541"\w* \w images|strong="H6754"\w*, \w and|strong="H6440"\w* \w demolish|strong="H8045"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*. +\v 53 \w You|strong="H3588"\w* \w shall|strong="H3427"\w* \w take|strong="H3423"\w* \w possession|strong="H3423"\w* \w of|strong="H3427"\w* \w the|strong="H3588"\w* land, \w and|strong="H3427"\w* \w dwell|strong="H3427"\w* \w therein|strong="H3427"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H5414"\w* \w given|strong="H5414"\w* \w the|strong="H3588"\w* land \w to|strong="H5414"\w* \w you|strong="H3588"\w* \w to|strong="H5414"\w* \w possess|strong="H3423"\w* \w it|strong="H5414"\w*. +\v 54 \w You|strong="H5159"\w* \w shall|strong="H7227"\w* \w inherit|strong="H5157"\w* \w the|strong="H3318"\w* \w land|strong="H5159"\w* \w by|strong="H3318"\w* \w lot|strong="H1486"\w* according \w to|strong="H3318"\w* \w your|strong="H7235"\w* \w families|strong="H4940"\w*; \w to|strong="H3318"\w* \w the|strong="H3318"\w* \w larger|strong="H7227"\w* groups \w you|strong="H5159"\w* \w shall|strong="H7227"\w* \w give|strong="H5157"\w* \w a|strong="H3068"\w* \w larger|strong="H7227"\w* \w inheritance|strong="H5159"\w*, \w and|strong="H8033"\w* \w to|strong="H3318"\w* \w the|strong="H3318"\w* \w smaller|strong="H4592"\w* \w you|strong="H5159"\w* \w shall|strong="H7227"\w* \w give|strong="H5157"\w* \w a|strong="H3068"\w* \w smaller|strong="H4592"\w* \w inheritance|strong="H5159"\w*. \w Wherever|strong="H8033"\w* \w the|strong="H3318"\w* \w lot|strong="H1486"\w* \w falls|strong="H3318"\w* \w to|strong="H3318"\w* \w any|strong="H1961"\w* man, \w that|strong="H4940"\w* \w shall|strong="H7227"\w* \w be|strong="H1961"\w* \w his|strong="H1961"\w*. \w You|strong="H5159"\w* \w shall|strong="H7227"\w* \w inherit|strong="H5157"\w* according \w to|strong="H3318"\w* \w the|strong="H3318"\w* \w tribes|strong="H4294"\w* \w of|strong="H4294"\w* \w your|strong="H7235"\w* fathers. +\p +\v 55 “\w But|strong="H3808"\w* \w if|strong="H1961"\w* \w you|strong="H6440"\w* \w do|strong="H5869"\w* \w not|strong="H3808"\w* \w drive|strong="H3423"\w* \w out|strong="H3423"\w* \w the|strong="H6440"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w then|strong="H1961"\w* \w those|strong="H1992"\w* \w you|strong="H6440"\w* \w let|strong="H3808"\w* \w remain|strong="H3427"\w* \w of|strong="H3427"\w* \w them|strong="H1992"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w pricks|strong="H7899"\w* \w in|strong="H3427"\w* \w your|strong="H5921"\w* \w eyes|strong="H5869"\w* \w and|strong="H5869"\w* \w thorns|strong="H6796"\w* \w in|strong="H3427"\w* \w your|strong="H5921"\w* \w sides|strong="H6654"\w*. \w They|strong="H1992"\w* \w will|strong="H1961"\w* \w harass|strong="H6887"\w* \w you|strong="H6440"\w* \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w in|strong="H3427"\w* \w which|strong="H1992"\w* \w you|strong="H6440"\w* \w dwell|strong="H3427"\w*. +\v 56 \w It|strong="H6213"\w* \w shall|strong="H6213"\w* \w happen|strong="H1961"\w* \w that|strong="H6213"\w* \w as|strong="H1961"\w* \w I|strong="H6213"\w* \w thought|strong="H1819"\w* \w to|strong="H1961"\w* \w do|strong="H6213"\w* \w to|strong="H1961"\w* \w them|strong="H6213"\w*, \w so|strong="H6213"\w* \w I|strong="H6213"\w* \w will|strong="H1961"\w* \w do|strong="H6213"\w* \w to|strong="H1961"\w* \w you|strong="H6213"\w*.” +\c 34 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Command|strong="H6680"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* tell \w them|strong="H6680"\w*, ‘\w When|strong="H3588"\w* \w you|strong="H3588"\w* \w come|strong="H5307"\w* \w into|strong="H5307"\w* \w the|strong="H3588"\w* \w land|strong="H5159"\w* \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w* (\w this|strong="H2063"\w* \w is|strong="H3478"\w* \w the|strong="H3588"\w* \w land|strong="H5159"\w* \w that|strong="H3588"\w* \w shall|strong="H1121"\w* \w fall|strong="H5307"\w* \w to|strong="H3478"\w* \w you|strong="H3588"\w* \w for|strong="H3588"\w* \w an|strong="H3588"\w* \w inheritance|strong="H5159"\w*, \w even|strong="H3588"\w* \w the|strong="H3588"\w* \w land|strong="H5159"\w* \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w* according \w to|strong="H3478"\w* \w its|strong="H3588"\w* \w borders|strong="H1367"\w*), +\v 3 \w then|strong="H1961"\w* \w your|strong="H5921"\w* \w south|strong="H5045"\w* \w quarter|strong="H6285"\w* \w shall|strong="H3027"\w* \w be|strong="H1961"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w* \w of|strong="H3027"\w* \w Zin|strong="H6790"\w* \w along|strong="H5921"\w* \w by|strong="H3027"\w* \w the|strong="H5921"\w* \w side|strong="H6285"\w* \w of|strong="H3027"\w* Edom, \w and|strong="H3027"\w* \w your|strong="H5921"\w* \w south|strong="H5045"\w* \w border|strong="H1366"\w* \w shall|strong="H3027"\w* \w be|strong="H1961"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w end|strong="H7097"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w Salt|strong="H4417"\w* \w Sea|strong="H3220"\w* \w eastward|strong="H6924"\w*. +\v 4 \w Your|strong="H1961"\w* \w border|strong="H1366"\w* \w shall|strong="H1366"\w* \w turn|strong="H5437"\w* \w about|strong="H5437"\w* \w southward|strong="H5045"\w* \w of|strong="H1366"\w* \w the|strong="H5674"\w* \w ascent|strong="H4610"\w* \w of|strong="H1366"\w* \w Akrabbim|strong="H4610"\w*, \w and|strong="H3318"\w* \w pass|strong="H5674"\w* \w along|strong="H5674"\w* \w to|strong="H3318"\w* \w Zin|strong="H6790"\w*; \w and|strong="H3318"\w* \w it|strong="H1961"\w* \w shall|strong="H1366"\w* \w pass|strong="H5674"\w* \w southward|strong="H5045"\w* \w of|strong="H1366"\w* Kadesh Barnea; \w and|strong="H3318"\w* \w it|strong="H1961"\w* \w shall|strong="H1366"\w* \w go|strong="H3318"\w* \w from|strong="H3318"\w* \w there|strong="H1961"\w* \w to|strong="H3318"\w* Hazar Addar, \w and|strong="H3318"\w* \w pass|strong="H5674"\w* \w along|strong="H5674"\w* \w to|strong="H3318"\w* \w Azmon|strong="H6111"\w*. +\v 5 \w The|strong="H5437"\w* \w border|strong="H1366"\w* \w shall|strong="H4714"\w* \w turn|strong="H5437"\w* \w about|strong="H5437"\w* \w from|strong="H5437"\w* \w Azmon|strong="H6111"\w* \w to|strong="H1961"\w* \w the|strong="H5437"\w* \w brook|strong="H5158"\w* \w of|strong="H1366"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H4714"\w* \w it|strong="H1961"\w* \w shall|strong="H4714"\w* end \w at|strong="H1961"\w* \w the|strong="H5437"\w* \w sea|strong="H3220"\w*. +\p +\v 6 “‘\w For|strong="H1961"\w* \w the|strong="H1961"\w* \w western|strong="H3220"\w* \w border|strong="H1366"\w*, \w you|strong="H2088"\w* \w shall|strong="H1366"\w* \w have|strong="H1961"\w* \w the|strong="H1961"\w* \w great|strong="H1419"\w* \w sea|strong="H3220"\w* \w and|strong="H1419"\w* \w its|strong="H3220"\w* \w border|strong="H1366"\w*. \w This|strong="H2088"\w* \w shall|strong="H1366"\w* \w be|strong="H1961"\w* \w your|strong="H1961"\w* \w west|strong="H3220"\w* \w border|strong="H1366"\w*. +\p +\v 7 “‘\w This|strong="H2088"\w* \w shall|strong="H1366"\w* \w be|strong="H1961"\w* \w your|strong="H4480"\w* \w north|strong="H6828"\w* \w border|strong="H1366"\w*: \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w great|strong="H1419"\w* \w sea|strong="H3220"\w* \w you|strong="H4480"\w* \w shall|strong="H1366"\w* mark \w out|strong="H4480"\w* \w for|strong="H1961"\w* yourselves \w Mount|strong="H2022"\w* \w Hor|strong="H2023"\w*. +\v 8 \w From|strong="H1961"\w* \w Mount|strong="H2022"\w* \w Hor|strong="H2023"\w* \w you|strong="H2022"\w* \w shall|strong="H1366"\w* mark \w out|strong="H8444"\w* \w to|strong="H1961"\w* \w the|strong="H1961"\w* entrance \w of|strong="H2022"\w* \w Hamath|strong="H2574"\w*; \w and|strong="H2022"\w* \w the|strong="H1961"\w* \w border|strong="H1366"\w* \w shall|strong="H1366"\w* \w pass|strong="H1961"\w* \w by|strong="H1961"\w* \w Zedad|strong="H6657"\w*. +\v 9 \w Then|strong="H1961"\w* \w the|strong="H3318"\w* \w border|strong="H1366"\w* \w shall|strong="H1366"\w* \w go|strong="H3318"\w* \w to|strong="H3318"\w* \w Ziphron|strong="H2202"\w*, \w and|strong="H3318"\w* \w it|strong="H1961"\w* \w shall|strong="H1366"\w* \w end|strong="H3318"\w* \w at|strong="H1961"\w* Hazar Enan. \w This|strong="H2088"\w* \w shall|strong="H1366"\w* \w be|strong="H1961"\w* \w your|strong="H1961"\w* \w north|strong="H6828"\w* \w border|strong="H1366"\w*. +\p +\v 10 “‘You \w shall|strong="H1366"\w* mark \w out|strong="H1366"\w* your \w east|strong="H6924"\w* \w border|strong="H1366"\w* \w from|strong="H1366"\w* Hazar Enan \w to|strong="H2704"\w* \w Shepham|strong="H8221"\w*. +\v 11 \w The|strong="H5921"\w* \w border|strong="H1366"\w* \w shall|strong="H1366"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H3381"\w* \w Shepham|strong="H8221"\w* \w to|strong="H3381"\w* \w Riblah|strong="H7247"\w*, \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w east|strong="H6924"\w* \w side|strong="H3802"\w* \w of|strong="H1366"\w* \w Ain|strong="H5871"\w*. \w The|strong="H5921"\w* \w border|strong="H1366"\w* \w shall|strong="H1366"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w*, \w and|strong="H3381"\w* \w shall|strong="H1366"\w* \w reach|strong="H4229"\w* \w to|strong="H3381"\w* \w the|strong="H5921"\w* \w side|strong="H3802"\w* \w of|strong="H1366"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w of|strong="H1366"\w* \w Chinnereth|strong="H3672"\w* \w eastward|strong="H6924"\w*. +\v 12 \w The|strong="H5439"\w* \w border|strong="H1366"\w* \w shall|strong="H1366"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H5439"\w* \w Jordan|strong="H3383"\w*, \w and|strong="H3381"\w* end \w at|strong="H1961"\w* \w the|strong="H5439"\w* \w Salt|strong="H4417"\w* \w Sea|strong="H3220"\w*. \w This|strong="H2063"\w* \w shall|strong="H1366"\w* \w be|strong="H1961"\w* \w your|strong="H1961"\w* \w land|strong="H1366"\w* according \w to|strong="H3381"\w* \w its|strong="H5439"\w* \w borders|strong="H1366"\w* \w around|strong="H5439"\w* \w it|strong="H3381"\w*.’” +\p +\v 13 \w Moses|strong="H4872"\w* \w commanded|strong="H6680"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, saying, “\w This|strong="H2063"\w* \w is|strong="H3068"\w* \w the|strong="H5414"\w* \w land|strong="H1486"\w* \w which|strong="H3068"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w inherit|strong="H5157"\w* \w by|strong="H3068"\w* \w lot|strong="H1486"\w*, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w* \w to|strong="H3478"\w* \w give|strong="H5414"\w* \w to|strong="H3478"\w* \w the|strong="H5414"\w* \w nine|strong="H8672"\w* \w tribes|strong="H4294"\w*, \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w the|strong="H5414"\w* \w half-tribe|strong="H2677"\w*; +\v 14 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7206"\w* according \w to|strong="H1121"\w* \w their|strong="H3947"\w* fathers’ \w houses|strong="H1004"\w*, \w the|strong="H3588"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1425"\w* according \w to|strong="H1121"\w* \w their|strong="H3947"\w* fathers’ \w houses|strong="H1004"\w*, \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w have|strong="H1121"\w* \w received|strong="H3947"\w* \w their|strong="H3947"\w* \w inheritance|strong="H5159"\w*. +\v 15 \w The|strong="H3947"\w* \w two|strong="H8147"\w* \w tribes|strong="H4294"\w* \w and|strong="H8147"\w* \w the|strong="H3947"\w* \w half-tribe|strong="H2677"\w* \w have|strong="H4294"\w* \w received|strong="H3947"\w* \w their|strong="H3947"\w* \w inheritance|strong="H5159"\w* \w beyond|strong="H5676"\w* \w the|strong="H3947"\w* \w Jordan|strong="H3383"\w* \w at|strong="H3383"\w* \w Jericho|strong="H3405"\w* \w eastward|strong="H6924"\w*, \w toward|strong="H4294"\w* \w the|strong="H3947"\w* \w sunrise|strong="H4217"\w*.” +\p +\v 16 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 17 “These \w are|strong="H1121"\w* \w the|strong="H3091"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H3091"\w* \w men|strong="H1121"\w* \w who|strong="H3548"\w* \w shall|strong="H3548"\w* \w divide|strong="H5157"\w* \w the|strong="H3091"\w* land \w to|strong="H1121"\w* you \w for|strong="H8034"\w* \w inheritance|strong="H5157"\w*: Eleazar \w the|strong="H3091"\w* \w priest|strong="H3548"\w*, \w and|strong="H1121"\w* \w Joshua|strong="H3091"\w* \w the|strong="H3091"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w*. +\v 18 \w You|strong="H3947"\w* \w shall|strong="H5387"\w* \w take|strong="H3947"\w* one \w prince|strong="H5387"\w* \w of|strong="H4294"\w* \w every|strong="H3947"\w* \w tribe|strong="H4294"\w*, \w to|strong="H4294"\w* \w divide|strong="H5157"\w* \w the|strong="H3947"\w* land \w for|strong="H3947"\w* \w inheritance|strong="H5157"\w*. +\v 19 These \w are|strong="H1121"\w* \w the|strong="H3612"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H3612"\w* \w men|strong="H1121"\w*: \w Of|strong="H1121"\w* \w the|strong="H3612"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w Caleb|strong="H3612"\w* \w the|strong="H3612"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jephunneh|strong="H3312"\w*. +\v 20 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Simeon|strong="H8095"\w*, \w Shemuel|strong="H8050"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammihud|strong="H5989"\w*. +\v 21 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*, Elidad \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Chislon|strong="H3692"\w*. +\v 22 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w* \w a|strong="H3068"\w* \w prince|strong="H5387"\w*, \w Bukki|strong="H1231"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jogli|strong="H3020"\w*. +\v 23 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w*: \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w a|strong="H3068"\w* \w prince|strong="H5387"\w*, \w Hanniel|strong="H2592"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ephod. +\v 24 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Ephraim \w a|strong="H3068"\w* \w prince|strong="H5387"\w*, \w Kemuel|strong="H7055"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shiphtan|strong="H8204"\w*. +\v 25 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Zebulun|strong="H2074"\w* \w a|strong="H3068"\w* \w prince|strong="H5387"\w*, Elizaphan \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Parnach|strong="H6535"\w*. +\v 26 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Issachar|strong="H3485"\w* \w a|strong="H3068"\w* \w prince|strong="H5387"\w*, \w Paltiel|strong="H6409"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Azzan|strong="H5821"\w*. +\v 27 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Asher \w a|strong="H3068"\w* \w prince|strong="H5387"\w*, Ahihud \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shelomi|strong="H8015"\w*. +\v 28 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Naphtali|strong="H5321"\w* \w a|strong="H3068"\w* \w prince|strong="H5387"\w*, \w Pedahel|strong="H6300"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammihud|strong="H5989"\w*.” +\v 29 These \w are|strong="H1121"\w* \w they|strong="H3068"\w* whom \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w to|strong="H3478"\w* \w divide|strong="H5157"\w* \w the|strong="H3068"\w* \w inheritance|strong="H5157"\w* \w to|strong="H3478"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w in|strong="H3478"\w* \w the|strong="H3068"\w* land \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*. +\c 35 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w plains|strong="H6160"\w* \w of|strong="H3068"\w* \w Moab|strong="H4124"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w* \w at|strong="H5921"\w* \w Jericho|strong="H3405"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Command|strong="H6680"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w give|strong="H5414"\w* \w to|strong="H3478"\w* \w the|strong="H5414"\w* \w Levites|strong="H3881"\w* \w cities|strong="H5892"\w* \w to|strong="H3478"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w out|strong="H5414"\w* \w of|strong="H1121"\w* \w their|strong="H5414"\w* \w inheritance|strong="H5159"\w*. \w You|strong="H5414"\w* \w shall|strong="H1121"\w* \w give|strong="H5414"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w* \w for|strong="H3427"\w* \w the|strong="H5414"\w* \w cities|strong="H5892"\w* \w around|strong="H5439"\w* \w them|strong="H5414"\w* \w to|strong="H3478"\w* \w the|strong="H5414"\w* \w Levites|strong="H3881"\w*. +\v 3 \w They|strong="H3605"\w* \w shall|strong="H5892"\w* \w have|strong="H1961"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w to|strong="H1961"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w*. \w Their|strong="H3605"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w* \w shall|strong="H5892"\w* \w be|strong="H1961"\w* \w for|strong="H3427"\w* \w their|strong="H3605"\w* livestock, \w and|strong="H5892"\w* \w for|strong="H3427"\w* \w their|strong="H3605"\w* \w possessions|strong="H7399"\w*, \w and|strong="H5892"\w* \w for|strong="H3427"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w animals|strong="H2416"\w*. +\p +\v 4 “\w The|strong="H5414"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w* \w of|strong="H5892"\w* \w the|strong="H5414"\w* \w cities|strong="H5892"\w*, \w which|strong="H5892"\w* \w you|strong="H5414"\w* \w shall|strong="H5892"\w* \w give|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w Levites|strong="H3881"\w*, \w shall|strong="H5892"\w* \w be|strong="H5414"\w* \w from|strong="H3881"\w* \w the|strong="H5414"\w* \w wall|strong="H7023"\w* \w of|strong="H5892"\w* \w the|strong="H5414"\w* \w city|strong="H5892"\w* \w and|strong="H5892"\w* \w outward|strong="H2351"\w* \w one|strong="H5892"\w* thousand cubits\f + \fr 35:4 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w around|strong="H5439"\w* \w it|strong="H5414"\w*. +\v 5 \w You|strong="H8432"\w* \w shall|strong="H5892"\w* \w measure|strong="H4058"\w* \w outside|strong="H2351"\w* \w of|strong="H5892"\w* \w the|strong="H8432"\w* \w city|strong="H5892"\w* \w for|strong="H5892"\w* \w the|strong="H8432"\w* \w east|strong="H6924"\w* \w side|strong="H6285"\w* \w two|strong="H6285"\w* thousand cubits, \w and|strong="H5892"\w* \w for|strong="H5892"\w* \w the|strong="H8432"\w* \w south|strong="H5045"\w* \w side|strong="H6285"\w* \w two|strong="H6285"\w* thousand cubits, \w and|strong="H5892"\w* \w for|strong="H5892"\w* \w the|strong="H8432"\w* \w west|strong="H3220"\w* \w side|strong="H6285"\w* \w two|strong="H6285"\w* thousand cubits, \w and|strong="H5892"\w* \w for|strong="H5892"\w* \w the|strong="H8432"\w* \w north|strong="H6828"\w* \w side|strong="H6285"\w* \w two|strong="H6285"\w* thousand cubits, \w the|strong="H8432"\w* \w city|strong="H5892"\w* \w being|strong="H1961"\w* \w in|strong="H8432"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w*. \w This|strong="H2088"\w* \w shall|strong="H5892"\w* \w be|strong="H1961"\w* \w the|strong="H8432"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w* \w of|strong="H5892"\w* \w their|strong="H8432"\w* \w cities|strong="H5892"\w*. +\p +\v 6 “\w The|strong="H5921"\w* \w cities|strong="H5892"\w* \w which|strong="H5892"\w* \w you|strong="H5414"\w* \w shall|strong="H5892"\w* \w give|strong="H5414"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w*, \w they|strong="H8033"\w* \w shall|strong="H5892"\w* \w be|strong="H5414"\w* \w the|strong="H5921"\w* \w six|strong="H8337"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w refuge|strong="H4733"\w*, \w which|strong="H5892"\w* \w you|strong="H5414"\w* \w shall|strong="H5892"\w* \w give|strong="H5414"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* man \w slayer|strong="H7523"\w* \w to|strong="H5921"\w* \w flee|strong="H5127"\w* \w to|strong="H5921"\w*. \w Besides|strong="H5921"\w* \w them|strong="H5414"\w* \w you|strong="H5414"\w* \w shall|strong="H5892"\w* \w give|strong="H5414"\w* \w forty-two|strong="H8147"\w* \w cities|strong="H5892"\w*. +\v 7 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w which|strong="H5892"\w* \w you|strong="H5414"\w* \w shall|strong="H5892"\w* \w give|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w shall|strong="H5892"\w* \w be|strong="H5414"\w* \w forty-eight|strong="H8083"\w* \w cities|strong="H5892"\w* together \w with|strong="H5892"\w* \w their|strong="H3605"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*. +\v 8 \w Concerning|strong="H3478"\w* \w the|strong="H5414"\w* \w cities|strong="H5892"\w* \w which|strong="H5892"\w* \w you|strong="H5414"\w* \w shall|strong="H1121"\w* \w give|strong="H5414"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w possession|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w from|strong="H3478"\w* \w the|strong="H5414"\w* \w many|strong="H7227"\w* \w you|strong="H5414"\w* \w shall|strong="H1121"\w* \w take|strong="H1121"\w* \w many|strong="H7227"\w*, \w and|strong="H1121"\w* \w from|strong="H3478"\w* \w the|strong="H5414"\w* \w few|strong="H4592"\w* \w you|strong="H5414"\w* \w shall|strong="H1121"\w* \w take|strong="H1121"\w* \w few|strong="H4592"\w*. Everyone \w according|strong="H6310"\w* \w to|strong="H3478"\w* \w his|strong="H5414"\w* \w inheritance|strong="H5159"\w* \w which|strong="H5892"\w* \w he|strong="H5414"\w* \w inherits|strong="H5157"\w* \w shall|strong="H1121"\w* \w give|strong="H5414"\w* \w some|strong="H4592"\w* \w of|strong="H1121"\w* \w his|strong="H5414"\w* \w cities|strong="H5892"\w* \w to|strong="H3478"\w* \w the|strong="H5414"\w* \w Levites|strong="H3881"\w*.” +\v 9 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1696"\w*, +\v 10 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w tell|strong="H1696"\w* \w them|strong="H5674"\w*, ‘\w When|strong="H3588"\w* \w you|strong="H3588"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H3588"\w* \w Jordan|strong="H3383"\w* \w into|strong="H5674"\w* \w the|strong="H3588"\w* land \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*, +\v 11 \w then|strong="H1961"\w* \w you|strong="H5221"\w* \w shall|strong="H5315"\w* \w appoint|strong="H7136"\w* \w for|strong="H5892"\w* \w yourselves|strong="H5315"\w* \w cities|strong="H5892"\w* \w to|strong="H1961"\w* \w be|strong="H1961"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w refuge|strong="H4733"\w* \w for|strong="H5892"\w* \w you|strong="H5221"\w*, \w that|strong="H5315"\w* \w the|strong="H5221"\w* \w man|strong="H5315"\w* \w slayer|strong="H7523"\w* \w who|strong="H5315"\w* \w kills|strong="H5221"\w* \w any|strong="H5221"\w* \w person|strong="H5315"\w* \w unwittingly|strong="H7684"\w* \w may|strong="H1961"\w* \w flee|strong="H5127"\w* \w there|strong="H8033"\w*. +\v 12 \w The|strong="H6440"\w* \w cities|strong="H5892"\w* \w shall|strong="H5712"\w* \w be|strong="H1961"\w* \w for|strong="H5704"\w* \w your|strong="H6440"\w* \w refuge|strong="H4733"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w avenger|strong="H1350"\w*, \w that|strong="H5892"\w* \w the|strong="H6440"\w* \w man|strong="H4191"\w* \w slayer|strong="H7523"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w* \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w stands|strong="H5975"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w congregation|strong="H5712"\w* \w for|strong="H5704"\w* \w judgment|strong="H4941"\w*. +\v 13 \w The|strong="H5414"\w* \w cities|strong="H5892"\w* \w which|strong="H5892"\w* \w you|strong="H5414"\w* \w shall|strong="H5892"\w* \w give|strong="H5414"\w* \w shall|strong="H5892"\w* \w be|strong="H1961"\w* \w for|strong="H5892"\w* \w you|strong="H5414"\w* \w six|strong="H8337"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w refuge|strong="H4733"\w*. +\v 14 \w You|strong="H5414"\w* \w shall|strong="H5892"\w* \w give|strong="H5414"\w* \w three|strong="H7969"\w* \w cities|strong="H5892"\w* \w beyond|strong="H5676"\w* \w the|strong="H5414"\w* \w Jordan|strong="H3383"\w*, \w and|strong="H5892"\w* \w you|strong="H5414"\w* \w shall|strong="H5892"\w* \w give|strong="H5414"\w* \w three|strong="H7969"\w* \w cities|strong="H5892"\w* \w in|strong="H5892"\w* \w the|strong="H5414"\w* \w land|strong="H5676"\w* \w of|strong="H5892"\w* \w Canaan|strong="H3667"\w*. \w They|strong="H5414"\w* \w shall|strong="H5892"\w* \w be|strong="H1961"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w refuge|strong="H4733"\w*. +\v 15 \w These|strong="H3605"\w* \w six|strong="H8337"\w* \w cities|strong="H5892"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w refuge|strong="H4733"\w* \w for|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w for|strong="H1121"\w* \w the|strong="H3605"\w* \w stranger|strong="H1616"\w*, \w and|strong="H1121"\w* \w for|strong="H1121"\w* \w the|strong="H3605"\w* \w foreigner|strong="H1121"\w* \w living|strong="H5315"\w* \w among|strong="H8432"\w* \w them|strong="H5221"\w*, \w that|strong="H3605"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w kills|strong="H5221"\w* \w any|strong="H3605"\w* \w person|strong="H5315"\w* \w unwittingly|strong="H7684"\w* \w may|strong="H1961"\w* \w flee|strong="H5127"\w* \w there|strong="H8033"\w*. +\p +\v 16 “‘\w But|strong="H5221"\w* \w if|strong="H1931"\w* \w he|strong="H1931"\w* \w struck|strong="H5221"\w* \w him|strong="H5221"\w* \w with|strong="H3627"\w* \w an|strong="H5221"\w* \w instrument|strong="H3627"\w* \w of|strong="H3627"\w* \w iron|strong="H1270"\w*, \w so|strong="H4191"\w* \w that|strong="H1931"\w* \w he|strong="H1931"\w* \w died|strong="H4191"\w*, \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w murderer|strong="H7523"\w*. \w The|strong="H5221"\w* \w murderer|strong="H7523"\w* \w shall|strong="H7523"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. +\v 17 \w If|strong="H1931"\w* \w he|strong="H1931"\w* \w struck|strong="H5221"\w* \w him|strong="H5221"\w* \w with|strong="H3027"\w* \w a|strong="H3068"\w* stone \w in|strong="H4191"\w* \w the|strong="H5221"\w* \w hand|strong="H3027"\w*, \w by|strong="H3027"\w* \w which|strong="H1931"\w* \w a|strong="H3068"\w* \w man|strong="H4191"\w* \w may|strong="H7523"\w* \w die|strong="H4191"\w*, \w and|strong="H3027"\w* \w he|strong="H1931"\w* \w died|strong="H4191"\w*, \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w murderer|strong="H7523"\w*. \w The|strong="H5221"\w* \w murderer|strong="H7523"\w* \w shall|strong="H3027"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. +\v 18 \w Or|strong="H4191"\w* \w if|strong="H1931"\w* \w he|strong="H1931"\w* \w struck|strong="H5221"\w* \w him|strong="H5221"\w* \w with|strong="H3027"\w* \w a|strong="H3068"\w* \w weapon|strong="H3627"\w* \w of|strong="H3027"\w* \w wood|strong="H6086"\w* \w in|strong="H4191"\w* \w the|strong="H5221"\w* \w hand|strong="H3027"\w*, \w by|strong="H3027"\w* \w which|strong="H1931"\w* \w a|strong="H3068"\w* \w man|strong="H4191"\w* \w may|strong="H7523"\w* \w die|strong="H4191"\w*, \w and|strong="H3027"\w* \w he|strong="H1931"\w* \w died|strong="H4191"\w*, \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w murderer|strong="H7523"\w*. \w The|strong="H5221"\w* \w murderer|strong="H7523"\w* \w shall|strong="H3027"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. +\v 19 \w The|strong="H4191"\w* \w avenger|strong="H1350"\w* \w of|strong="H1818"\w* \w blood|strong="H1818"\w* \w shall|strong="H7523"\w* \w himself|strong="H1931"\w* \w put|strong="H4191"\w* \w the|strong="H4191"\w* \w murderer|strong="H7523"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. When \w he|strong="H1931"\w* \w meets|strong="H6293"\w* \w him|strong="H4191"\w*, \w he|strong="H1931"\w* \w shall|strong="H7523"\w* \w put|strong="H4191"\w* \w him|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. +\v 20 If \w he|strong="H5921"\w* shoved \w him|strong="H5921"\w* \w out|strong="H7993"\w* \w of|strong="H5921"\w* \w hatred|strong="H8135"\w*, \w or|strong="H4191"\w* \w hurled|strong="H7993"\w* something \w at|strong="H5921"\w* \w him|strong="H5921"\w* \w while|strong="H5921"\w* \w lying|strong="H7993"\w* \w in|strong="H5921"\w* \w wait|strong="H6660"\w*, \w so|strong="H4191"\w* \w that|strong="H5921"\w* \w he|strong="H5921"\w* \w died|strong="H4191"\w*, +\v 21 \w or|strong="H4191"\w* \w in|strong="H4191"\w* hostility \w struck|strong="H5221"\w* \w him|strong="H5221"\w* \w with|strong="H3027"\w* \w his|strong="H5221"\w* \w hand|strong="H3027"\w*, \w so|strong="H4191"\w* \w that|strong="H1931"\w* \w he|strong="H1931"\w* \w died|strong="H4191"\w*, \w he|strong="H1931"\w* \w who|strong="H1931"\w* \w struck|strong="H5221"\w* \w him|strong="H5221"\w* \w shall|strong="H3027"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w murderer|strong="H7523"\w*. \w The|strong="H5221"\w* \w avenger|strong="H1350"\w* \w of|strong="H3027"\w* \w blood|strong="H1818"\w* \w shall|strong="H3027"\w* \w put|strong="H4191"\w* \w the|strong="H5221"\w* \w murderer|strong="H7523"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w* \w when|strong="H3027"\w* \w he|strong="H1931"\w* \w meets|strong="H6293"\w* \w him|strong="H5221"\w*. +\p +\v 22 “‘\w But|strong="H3808"\w* if \w he|strong="H3605"\w* shoved \w him|strong="H5921"\w* \w suddenly|strong="H6621"\w* \w without|strong="H3808"\w* hostility, \w or|strong="H3808"\w* \w hurled|strong="H7993"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w* \w anything|strong="H3605"\w* \w without|strong="H3808"\w* \w lying|strong="H7993"\w* \w in|strong="H5921"\w* \w wait|strong="H6660"\w*, +\v 23 \w or|strong="H3808"\w* \w with|strong="H5921"\w* \w any|strong="H3605"\w* stone, \w by|strong="H5921"\w* \w which|strong="H1931"\w* \w a|strong="H3068"\w* \w man|strong="H4191"\w* \w may|strong="H1931"\w* \w die|strong="H4191"\w*, \w not|strong="H3808"\w* \w seeing|strong="H7200"\w* \w him|strong="H5921"\w*, \w and|strong="H7200"\w* \w cast|strong="H5307"\w* \w it|strong="H1931"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w* \w so|strong="H3808"\w* \w that|strong="H7200"\w* \w he|strong="H1931"\w* \w died|strong="H4191"\w*, \w and|strong="H7200"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w not|strong="H3808"\w* \w his|strong="H3605"\w* enemy \w and|strong="H7200"\w* \w not|strong="H3808"\w* \w seeking|strong="H1245"\w* \w his|strong="H3605"\w* \w harm|strong="H7451"\w*, +\v 24 \w then|strong="H5221"\w* \w the|strong="H5921"\w* \w congregation|strong="H5712"\w* \w shall|strong="H5712"\w* \w judge|strong="H8199"\w* \w between|strong="H8199"\w* \w the|strong="H5921"\w* striker \w and|strong="H4941"\w* \w the|strong="H5921"\w* \w avenger|strong="H1350"\w* \w of|strong="H5921"\w* \w blood|strong="H1818"\w* \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w these|strong="H5221"\w* \w ordinances|strong="H4941"\w*. +\v 25 \w The|strong="H7725"\w* \w congregation|strong="H5712"\w* \w shall|strong="H3548"\w* \w deliver|strong="H5337"\w* \w the|strong="H7725"\w* \w man|strong="H1419"\w* \w slayer|strong="H7523"\w* \w out|strong="H5337"\w* \w of|strong="H3027"\w* \w the|strong="H7725"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H7725"\w* \w avenger|strong="H1350"\w* \w of|strong="H3027"\w* \w blood|strong="H1818"\w*, \w and|strong="H7725"\w* \w the|strong="H7725"\w* \w congregation|strong="H5712"\w* \w shall|strong="H3548"\w* \w restore|strong="H7725"\w* \w him|strong="H3027"\w* \w to|strong="H5704"\w* \w his|strong="H7725"\w* \w city|strong="H5892"\w* \w of|strong="H3027"\w* \w refuge|strong="H4733"\w*, \w where|strong="H8033"\w* \w he|strong="H5704"\w* \w had|strong="H3548"\w* \w fled|strong="H5127"\w*. \w He|strong="H5704"\w* \w shall|strong="H3548"\w* \w dwell|strong="H3427"\w* \w therein|strong="H8033"\w* \w until|strong="H5704"\w* \w the|strong="H7725"\w* \w death|strong="H4194"\w* \w of|strong="H3027"\w* \w the|strong="H7725"\w* \w high|strong="H1419"\w* \w priest|strong="H3548"\w*, \w who|strong="H3548"\w* \w was|strong="H5892"\w* \w anointed|strong="H4886"\w* \w with|strong="H3427"\w* \w the|strong="H7725"\w* \w holy|strong="H6944"\w* \w oil|strong="H8081"\w*. +\p +\v 26 “‘\w But|strong="H5127"\w* if \w the|strong="H3318"\w* man \w slayer|strong="H7523"\w* \w shall|strong="H5892"\w* \w at|strong="H3318"\w* \w any|strong="H3318"\w* \w time|strong="H3318"\w* \w go|strong="H3318"\w* \w beyond|strong="H3318"\w* \w the|strong="H3318"\w* \w border|strong="H1366"\w* \w of|strong="H5892"\w* \w his|strong="H3318"\w* \w city|strong="H5892"\w* \w of|strong="H5892"\w* \w refuge|strong="H4733"\w* \w where|strong="H8033"\w* \w he|strong="H8033"\w* \w flees|strong="H5127"\w*, +\v 27 \w and|strong="H5892"\w* \w the|strong="H2351"\w* \w avenger|strong="H1350"\w* \w of|strong="H5892"\w* \w blood|strong="H1818"\w* \w finds|strong="H4672"\w* \w him|strong="H4672"\w* \w outside|strong="H2351"\w* \w of|strong="H5892"\w* \w the|strong="H2351"\w* \w border|strong="H1366"\w* \w of|strong="H5892"\w* \w his|strong="H4672"\w* \w city|strong="H5892"\w* \w of|strong="H5892"\w* \w refuge|strong="H4733"\w*, \w and|strong="H5892"\w* \w the|strong="H2351"\w* \w avenger|strong="H1350"\w* \w of|strong="H5892"\w* \w blood|strong="H1818"\w* \w kills|strong="H7523"\w* \w the|strong="H2351"\w* man \w slayer|strong="H7523"\w*, \w he|strong="H1818"\w* \w shall|strong="H5892"\w* \w not|strong="H5892"\w* \w be|strong="H5892"\w* guilty \w of|strong="H5892"\w* \w blood|strong="H1818"\w*, +\v 28 \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w should|strong="H3588"\w* \w have|strong="H3548"\w* \w remained|strong="H3427"\w* \w in|strong="H3427"\w* \w his|strong="H7725"\w* \w city|strong="H5892"\w* \w of|strong="H3427"\w* \w refuge|strong="H4733"\w* \w until|strong="H5704"\w* \w the|strong="H3588"\w* \w death|strong="H4194"\w* \w of|strong="H3427"\w* \w the|strong="H3588"\w* \w high|strong="H1419"\w* \w priest|strong="H3548"\w*. \w But|strong="H3588"\w* \w after|strong="H3588"\w* \w the|strong="H3588"\w* \w death|strong="H4194"\w* \w of|strong="H3427"\w* \w the|strong="H3588"\w* \w high|strong="H1419"\w* \w priest|strong="H3548"\w*, \w the|strong="H3588"\w* \w man|strong="H1419"\w* \w slayer|strong="H7523"\w* \w shall|strong="H3548"\w* \w return|strong="H7725"\w* \w into|strong="H7725"\w* \w the|strong="H3588"\w* land \w of|strong="H3427"\w* \w his|strong="H7725"\w* possession. +\p +\v 29 “‘\w These|strong="H3605"\w* \w things|strong="H3605"\w* \w shall|strong="H4941"\w* \w be|strong="H1961"\w* \w for|strong="H2708"\w* \w a|strong="H3068"\w* \w statute|strong="H2708"\w* \w and|strong="H4941"\w* \w ordinance|strong="H4941"\w* \w to|strong="H1961"\w* \w you|strong="H3605"\w* \w throughout|strong="H3605"\w* \w your|strong="H3605"\w* \w generations|strong="H1755"\w* \w in|strong="H1755"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w dwellings|strong="H4186"\w*. +\p +\v 30 “‘\w Whoever|strong="H3605"\w* \w kills|strong="H5221"\w* \w any|strong="H3605"\w* \w person|strong="H5315"\w*, \w the|strong="H3605"\w* \w murderer|strong="H7523"\w* \w shall|strong="H5315"\w* \w be|strong="H4191"\w* \w slain|strong="H5221"\w* based \w on|strong="H4191"\w* \w the|strong="H3605"\w* \w testimony|strong="H5707"\w* \w of|strong="H6310"\w* \w witnesses|strong="H5707"\w*; \w but|strong="H3808"\w* \w one|strong="H3605"\w* \w witness|strong="H5707"\w* \w shall|strong="H5315"\w* \w not|strong="H3808"\w* \w testify|strong="H6030"\w* alone \w against|strong="H3605"\w* \w any|strong="H3605"\w* \w person|strong="H5315"\w* \w so|strong="H3808"\w* \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w dies|strong="H4191"\w*. +\p +\v 31 “‘\w Moreover|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H5315"\w* \w take|strong="H3947"\w* \w no|strong="H3808"\w* \w ransom|strong="H3724"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w life|strong="H5315"\w* \w of|strong="H5315"\w* \w a|strong="H3068"\w* \w murderer|strong="H7523"\w* \w who|strong="H1931"\w* \w is|strong="H1931"\w* \w guilty|strong="H7563"\w* \w of|strong="H5315"\w* \w death|strong="H4191"\w*. \w He|strong="H1931"\w* \w shall|strong="H5315"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. +\p +\v 32 “‘\w You|strong="H5704"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* \w no|strong="H3808"\w* \w ransom|strong="H3724"\w* \w for|strong="H5704"\w* \w him|strong="H7725"\w* \w who|strong="H3548"\w* \w has|strong="H3548"\w* \w fled|strong="H5127"\w* \w to|strong="H5704"\w* \w his|strong="H3947"\w* \w city|strong="H5892"\w* \w of|strong="H3427"\w* \w refuge|strong="H4733"\w*, \w that|strong="H3548"\w* \w he|strong="H5704"\w* \w may|strong="H7725"\w* \w come|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H5704"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3947"\w* land \w before|strong="H5704"\w* \w the|strong="H3947"\w* \w death|strong="H4194"\w* \w of|strong="H3427"\w* \w the|strong="H3947"\w* \w priest|strong="H3548"\w*. +\p +\v 33 “‘\w So|strong="H3808"\w* \w you|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w pollute|strong="H2610"\w* \w the|strong="H3588"\w* land \w where|strong="H3808"\w* \w you|strong="H3588"\w* live; \w for|strong="H3588"\w* \w blood|strong="H1818"\w* \w pollutes|strong="H2610"\w* \w the|strong="H3588"\w* land. \w No|strong="H3808"\w* \w atonement|strong="H3722"\w* \w can|strong="H3808"\w* \w be|strong="H3808"\w* \w made|strong="H3722"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* land \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w blood|strong="H1818"\w* \w that|strong="H3588"\w* \w is|strong="H1931"\w* \w shed|strong="H8210"\w* \w in|strong="H3808"\w* \w it|strong="H1931"\w*, \w but|strong="H3588"\w* \w by|strong="H3808"\w* \w the|strong="H3588"\w* \w blood|strong="H1818"\w* \w of|strong="H1818"\w* \w him|strong="H1931"\w* \w who|strong="H1931"\w* \w shed|strong="H8210"\w* \w it|strong="H1931"\w*. +\v 34 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w defile|strong="H2930"\w* \w the|strong="H3588"\w* land \w which|strong="H3068"\w* \w you|strong="H3588"\w* \w inhabit|strong="H3427"\w*, \w where|strong="H7931"\w* \w I|strong="H3588"\w* \w dwell|strong="H3427"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w dwell|strong="H3427"\w* \w among|strong="H8432"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*.’” +\c 36 +\p +\v 1 \w The|strong="H6440"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* fathers’ households \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*, \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Machir|strong="H4353"\w*, \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*, \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w*, \w came|strong="H7126"\w* \w near|strong="H7126"\w* \w and|strong="H1121"\w* \w spoke|strong="H1696"\w* \w before|strong="H6440"\w* \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w princes|strong="H5387"\w*, \w the|strong="H6440"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* fathers’ households \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 2 \w They|strong="H3068"\w* said, “\w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w my|strong="H5414"\w* \w lord|strong="H3068"\w* \w to|strong="H3478"\w* \w give|strong="H5414"\w* \w the|strong="H5414"\w* \w land|strong="H5159"\w* \w for|strong="H3068"\w* \w inheritance|strong="H5159"\w* \w by|strong="H3068"\w* \w lot|strong="H1486"\w* \w to|strong="H3478"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w My|strong="H5414"\w* \w lord|strong="H3068"\w* \w was|strong="H3068"\w* \w commanded|strong="H6680"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3478"\w* \w give|strong="H5414"\w* \w the|strong="H5414"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w Zelophehad|strong="H6765"\w* \w our|strong="H3068"\w* brother \w to|strong="H3478"\w* \w his|strong="H5414"\w* \w daughters|strong="H1323"\w*. +\v 3 \w If|strong="H1961"\w* \w they|strong="H5921"\w* \w are|strong="H1121"\w* married \w to|strong="H3478"\w* \w any|strong="H1961"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* other \w tribes|strong="H7626"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w then|strong="H1961"\w* \w their|strong="H5921"\w* \w inheritance|strong="H5159"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w taken|strong="H1639"\w* \w away|strong="H1639"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w our|strong="H5921"\w* fathers, \w and|strong="H1121"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w added|strong="H3254"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w tribe|strong="H4294"\w* \w to|strong="H3478"\w* \w which|strong="H3478"\w* \w they|strong="H5921"\w* \w shall|strong="H1121"\w* \w belong|strong="H1961"\w*. \w So|strong="H1961"\w* \w it|strong="H5921"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w taken|strong="H1639"\w* \w away|strong="H1639"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w lot|strong="H1486"\w* \w of|strong="H1121"\w* \w our|strong="H5921"\w* \w inheritance|strong="H5159"\w*. +\v 4 \w When|strong="H1961"\w* \w the|strong="H5921"\w* \w jubilee|strong="H3104"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w comes|strong="H1961"\w*, \w then|strong="H1961"\w* \w their|strong="H5921"\w* \w inheritance|strong="H5159"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w added|strong="H3254"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w tribe|strong="H4294"\w* \w to|strong="H3478"\w* \w which|strong="H3478"\w* \w they|strong="H5921"\w* \w shall|strong="H1121"\w* \w belong|strong="H1961"\w*. \w So|strong="H1961"\w* \w their|strong="H5921"\w* \w inheritance|strong="H5159"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w taken|strong="H1639"\w* \w away|strong="H1639"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w our|strong="H5921"\w* fathers.” +\p +\v 5 \w Moses|strong="H4872"\w* \w commanded|strong="H6680"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w according|strong="H5921"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H6310"\w*, \w saying|strong="H1696"\w*, “\w The|strong="H5921"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w* \w speak|strong="H1696"\w* \w what|strong="H6310"\w* \w is|strong="H3068"\w* \w right|strong="H3651"\w*. +\v 6 \w This|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w thing|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commands|strong="H6680"\w* \w concerning|strong="H1697"\w* \w the|strong="H3068"\w* \w daughters|strong="H1323"\w* \w of|strong="H3068"\w* \w Zelophehad|strong="H6765"\w*, \w saying|strong="H1697"\w*, ‘\w Let|strong="H1961"\w* \w them|strong="H6680"\w* \w be|strong="H1961"\w* married \w to|strong="H3068"\w* \w whom|strong="H5869"\w* \w they|strong="H3068"\w* \w think|strong="H5869"\w* \w best|strong="H2896"\w*, only \w they|strong="H3068"\w* \w shall|strong="H3068"\w* \w marry|strong="H1961"\w* \w into|strong="H1323"\w* \w the|strong="H3068"\w* \w family|strong="H4940"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w tribe|strong="H4294"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* father. +\v 7 \w So|strong="H3808"\w* \w shall|strong="H1121"\w* \w no|strong="H3808"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w move|strong="H5437"\w* \w from|strong="H3478"\w* \w tribe|strong="H4294"\w* \w to|strong="H3478"\w* \w tribe|strong="H4294"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w shall|strong="H1121"\w* \w all|strong="H5437"\w* \w keep|strong="H1692"\w* \w the|strong="H3588"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w his|strong="H3478"\w* fathers. +\v 8 \w Every|strong="H3605"\w* \w daughter|strong="H1323"\w* \w who|strong="H3605"\w* possesses \w an|strong="H1961"\w* \w inheritance|strong="H5159"\w* \w in|strong="H3478"\w* \w any|strong="H3605"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* wife \w to|strong="H3478"\w* \w one|strong="H3605"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w her|strong="H3605"\w* \w father|strong="H1121"\w*, \w that|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w may|strong="H1961"\w* \w each|strong="H3605"\w* \w possess|strong="H3423"\w* \w the|strong="H3605"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* fathers. +\v 9 \w So|strong="H3808"\w* \w shall|strong="H1121"\w* \w no|strong="H3808"\w* \w inheritance|strong="H5159"\w* \w move|strong="H5437"\w* \w from|strong="H3478"\w* \w one|strong="H3808"\w* \w tribe|strong="H4294"\w* \w to|strong="H3478"\w* \w another|strong="H3808"\w* \w tribe|strong="H4294"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w tribes|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w shall|strong="H1121"\w* each \w keep|strong="H1692"\w* \w his|strong="H3478"\w* own \w inheritance|strong="H5159"\w*.’” +\p +\v 10 \w The|strong="H6213"\w* \w daughters|strong="H1323"\w* \w of|strong="H3068"\w* \w Zelophehad|strong="H6765"\w* \w did|strong="H6213"\w* \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*: +\v 11 \w for|strong="H1121"\w* \w Mahlah|strong="H4244"\w*, \w Tirzah|strong="H8656"\w*, \w Hoglah|strong="H2295"\w*, \w Milcah|strong="H4435"\w*, \w and|strong="H1121"\w* \w Noah|strong="H5270"\w*, \w the|strong="H1961"\w* \w daughters|strong="H1323"\w* \w of|strong="H1121"\w* \w Zelophehad|strong="H6765"\w*, \w were|strong="H1961"\w* married \w to|strong="H1961"\w* \w their|strong="H1961"\w* \w father|strong="H1121"\w*’s \w brothers|strong="H1121"\w*’ \w sons|strong="H1121"\w*. +\v 12 \w They|strong="H5921"\w* \w were|strong="H1961"\w* married \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w*. \w Their|strong="H5921"\w* \w inheritance|strong="H5159"\w* \w remained|strong="H1961"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w their|strong="H5921"\w* \w father|strong="H1121"\w*. +\p +\v 13 These \w are|strong="H1121"\w* \w the|strong="H5921"\w* \w commandments|strong="H4687"\w* \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w ordinances|strong="H4941"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w plains|strong="H6160"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w* \w by|strong="H3027"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w* \w at|strong="H5921"\w* \w Jericho|strong="H3405"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/06-DEUeng-web.usfm b/bibles/eng-web_usfm/06-DEUeng-web.usfm new file mode 100644 index 0000000..895045b --- /dev/null +++ b/bibles/eng-web_usfm/06-DEUeng-web.usfm @@ -0,0 +1,1453 @@ +\id DEU 1World English Bible (WEB) +\ide UTF-8 +\h Deuteronomy +\toc1 The Fifth Book of Moses, Commonly Called Deuteronomy +\toc2 Deuteronomy +\toc3 Deu +\mt2 The Fifth Book of Moses, +\mt3 Commonly Called +\mt1 Deuteronomy +\c 1 +\p +\v 1 \w These|strong="H1696"\w* \w are|strong="H3478"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w which|strong="H1697"\w* \w Moses|strong="H4872"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w beyond|strong="H5676"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w*, \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w Arabah|strong="H6160"\w* \w opposite|strong="H4136"\w* Suf, between \w Paran|strong="H6290"\w*, \w Tophel|strong="H8603"\w*, \w Laban|strong="H3837"\w*, \w Hazeroth|strong="H2698"\w*, \w and|strong="H4872"\w* \w Dizahab|strong="H1774"\w*. +\v 2 \w It|strong="H5704"\w* \w is|strong="H3117"\w* \w eleven|strong="H6240"\w* \w days|strong="H3117"\w*’ \w journey|strong="H1870"\w* \w from|strong="H3117"\w* \w Horeb|strong="H2722"\w* \w by|strong="H3117"\w* \w the|strong="H3117"\w* \w way|strong="H1870"\w* \w of|strong="H3117"\w* \w Mount|strong="H2022"\w* \w Seir|strong="H8165"\w* \w to|strong="H5704"\w* Kadesh Barnea. +\v 3 \w In|strong="H8141"\w* \w the|strong="H3605"\w* fortieth \w year|strong="H8141"\w*, \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w eleventh|strong="H6249"\w* \w month|strong="H2320"\w*, \w on|strong="H3068"\w* \w the|strong="H3605"\w* \w first|strong="H1121"\w* \w day|strong="H2320"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w month|strong="H2320"\w*, \w Moses|strong="H4872"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* according \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w*\f + \fr 1:3 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w had|strong="H3068"\w* \w given|strong="H6680"\w* \w him|strong="H6680"\w* \w in|strong="H8141"\w* \w commandment|strong="H6680"\w* \w to|strong="H1696"\w* \w them|strong="H6680"\w*, +\v 4 after \w he|strong="H5221"\w* \w had|strong="H4428"\w* \w struck|strong="H5221"\w* \w Sihon|strong="H5511"\w* \w the|strong="H5221"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H5221"\w* Amorites \w who|strong="H3427"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Heshbon|strong="H2809"\w*, \w and|strong="H4428"\w* \w Og|strong="H5747"\w* \w the|strong="H5221"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Bashan|strong="H1316"\w* \w who|strong="H3427"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Ashtaroth|strong="H6252"\w*, \w at|strong="H3427"\w* Edrei. +\v 5 \w Beyond|strong="H5676"\w* \w the|strong="H4872"\w* \w Jordan|strong="H3383"\w*, \w in|strong="H4872"\w* \w the|strong="H4872"\w* \w land|strong="H5676"\w* \w of|strong="H8451"\w* \w Moab|strong="H4124"\w*, \w Moses|strong="H4872"\w* \w began|strong="H2974"\w* \w to|strong="H2974"\w* declare \w this|strong="H2063"\w* \w law|strong="H8451"\w*, saying, +\v 6 “\w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*\f + \fr 1:6 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* us \w in|strong="H3427"\w* \w Horeb|strong="H2722"\w*, \w saying|strong="H1696"\w*, ‘\w You|strong="H1696"\w* \w have|strong="H3068"\w* \w lived|strong="H3427"\w* \w long|strong="H7227"\w* \w enough|strong="H7227"\w* \w at|strong="H3427"\w* \w this|strong="H2088"\w* \w mountain|strong="H2022"\w*. +\v 7 \w Turn|strong="H6437"\w*, \w and|strong="H1419"\w* \w take|strong="H5265"\w* \w your|strong="H3605"\w* \w journey|strong="H5265"\w*, \w and|strong="H1419"\w* \w go|strong="H5265"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* Amorites \w and|strong="H1419"\w* \w to|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w places|strong="H3605"\w* \w near|strong="H5704"\w* \w there|strong="H2022"\w*: \w in|strong="H1419"\w* \w the|strong="H3605"\w* \w Arabah|strong="H6160"\w*, \w in|strong="H1419"\w* \w the|strong="H3605"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*, \w in|strong="H1419"\w* \w the|strong="H3605"\w* \w lowland|strong="H8219"\w*, \w in|strong="H1419"\w* \w the|strong="H3605"\w* \w South|strong="H5045"\w*, \w by|strong="H5704"\w* \w the|strong="H3605"\w* \w seashore|strong="H3220"\w*, \w in|strong="H1419"\w* \w the|strong="H3605"\w* land \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w Canaanites|strong="H3669"\w*, \w and|strong="H1419"\w* \w in|strong="H1419"\w* \w Lebanon|strong="H3844"\w* \w as|strong="H5704"\w* \w far|strong="H5704"\w* \w as|strong="H5704"\w* \w the|strong="H3605"\w* \w great|strong="H1419"\w* \w river|strong="H5104"\w*, \w the|strong="H3605"\w* \w river|strong="H5104"\w* \w Euphrates|strong="H6578"\w*. +\v 8 \w Behold|strong="H7200"\w*,\f + \fr 1:8 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w set|strong="H5414"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w*. \w Go|strong="H3068"\w* \w in|strong="H3068"\w* \w and|strong="H3068"\w* \w possess|strong="H3423"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* fathers—\w to|strong="H3068"\w* Abraham, \w to|strong="H3068"\w* \w Isaac|strong="H3327"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w Jacob|strong="H3290"\w*—\w to|strong="H3068"\w* \w give|strong="H5414"\w* \w to|strong="H3068"\w* \w them|strong="H5414"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w their|strong="H3068"\w* \w offspring|strong="H2233"\w*\f + \fr 1:8 \ft or, seed\f* \w after|strong="H2233"\w* \w them|strong="H5414"\w*.’” +\p +\v 9 \w I|strong="H3201"\w* spoke \w to|strong="H3201"\w* \w you|strong="H3808"\w* \w at|strong="H3808"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w*, saying, “\w I|strong="H3201"\w* am \w not|strong="H3808"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w bear|strong="H5375"\w* \w you|strong="H3808"\w* myself \w alone|strong="H1931"\w*. +\v 10 \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w multiplied|strong="H7235"\w* \w you|strong="H3117"\w*, \w and|strong="H3068"\w* \w behold|strong="H2009"\w*, \w you|strong="H3117"\w* \w are|strong="H3117"\w* \w today|strong="H3117"\w* \w as|strong="H3117"\w* \w the|strong="H3068"\w* \w stars|strong="H3556"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w sky|strong="H8064"\w* \w for|strong="H3068"\w* \w multitude|strong="H7230"\w*. +\v 11 \w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* fathers, \w make|strong="H3254"\w* \w you|strong="H5921"\w* \w a|strong="H3068"\w* thousand \w times|strong="H6471"\w* \w as|strong="H3068"\w* many \w as|strong="H3068"\w* \w you|strong="H5921"\w* \w are|strong="H3068"\w* \w and|strong="H3068"\w* \w bless|strong="H1288"\w* \w you|strong="H5921"\w*, \w as|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w promised|strong="H1696"\w* \w you|strong="H5921"\w*! +\v 12 How can I myself alone \w bear|strong="H5375"\w* \w your|strong="H5375"\w* problems, \w your|strong="H5375"\w* \w burdens|strong="H4853"\w*, \w and|strong="H7379"\w* \w your|strong="H5375"\w* \w strife|strong="H7379"\w*? +\v 13 \w Take|strong="H7760"\w* \w wise|strong="H2450"\w* \w men|strong="H2450"\w* \w of|strong="H7626"\w* understanding \w who|strong="H3045"\w* \w are|strong="H2450"\w* respected \w among|strong="H7218"\w* \w your|strong="H7760"\w* \w tribes|strong="H7626"\w*, \w and|strong="H7218"\w* \w I|strong="H7760"\w* \w will|strong="H2450"\w* \w make|strong="H7760"\w* \w them|strong="H7760"\w* \w heads|strong="H7218"\w* \w over|strong="H7218"\w* \w you|strong="H3045"\w*.” +\p +\v 14 \w You|strong="H6213"\w* \w answered|strong="H6030"\w* \w me|strong="H6213"\w*, \w and|strong="H6030"\w* \w said|strong="H1696"\w*, “\w The|strong="H6213"\w* \w thing|strong="H1697"\w* \w which|strong="H1697"\w* \w you|strong="H6213"\w* \w have|strong="H1697"\w* \w spoken|strong="H1696"\w* \w is|strong="H1697"\w* \w good|strong="H2896"\w* \w to|strong="H1696"\w* \w do|strong="H6213"\w*.” +\v 15 \w So|strong="H3947"\w* \w I|strong="H5414"\w* \w took|strong="H3947"\w* \w the|strong="H5921"\w* \w heads|strong="H7218"\w* \w of|strong="H8269"\w* \w your|strong="H5414"\w* \w tribes|strong="H7626"\w*, \w wise|strong="H2450"\w* \w and|strong="H3967"\w* respected \w men|strong="H2450"\w*, \w and|strong="H3967"\w* \w made|strong="H5414"\w* \w them|strong="H5414"\w* \w heads|strong="H7218"\w* \w over|strong="H5921"\w* \w you|strong="H5414"\w*, \w captains|strong="H8269"\w* \w of|strong="H8269"\w* thousands, \w captains|strong="H8269"\w* \w of|strong="H8269"\w* \w hundreds|strong="H3967"\w*, \w captains|strong="H8269"\w* \w of|strong="H8269"\w* \w fifties|strong="H2572"\w*, \w captains|strong="H8269"\w* \w of|strong="H8269"\w* \w tens|strong="H6235"\w*, \w and|strong="H3967"\w* \w officers|strong="H7860"\w*, \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w your|strong="H5414"\w* \w tribes|strong="H7626"\w*. +\v 16 \w I|strong="H6680"\w* \w commanded|strong="H6680"\w* \w your|strong="H8085"\w* \w judges|strong="H8199"\w* \w at|strong="H6680"\w* \w that|strong="H8085"\w* \w time|strong="H6256"\w*, saying, “\w Hear|strong="H8085"\w* cases \w between|strong="H8199"\w* \w your|strong="H8085"\w* brothers \w and|strong="H8085"\w* \w judge|strong="H8199"\w* \w righteously|strong="H6664"\w* \w between|strong="H8199"\w* \w a|strong="H3068"\w* man \w and|strong="H8085"\w* \w his|strong="H8085"\w* brother, \w and|strong="H8085"\w* \w the|strong="H8085"\w* \w foreigner|strong="H1616"\w* \w who|strong="H1931"\w* \w is|strong="H1931"\w* living \w with|strong="H8085"\w* \w him|strong="H6680"\w*. +\v 17 \w You|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w show|strong="H5234"\w* \w partiality|strong="H5234"\w* \w in|strong="H8085"\w* \w judgment|strong="H4941"\w*; \w you|strong="H3588"\w* \w shall|strong="H3808"\w* \w hear|strong="H8085"\w* \w the|strong="H6440"\w* \w small|strong="H6996"\w* \w and|strong="H1419"\w* \w the|strong="H6440"\w* \w great|strong="H1419"\w* \w alike|strong="H6440"\w*. \w You|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w afraid|strong="H1481"\w* \w of|strong="H1697"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H1697"\w* \w man|strong="H1419"\w*, \w for|strong="H3588"\w* \w the|strong="H6440"\w* \w judgment|strong="H4941"\w* \w is|strong="H1931"\w* \w God|strong="H3808"\w*’s. \w The|strong="H6440"\w* \w case|strong="H1697"\w* \w that|strong="H3588"\w* \w is|strong="H1931"\w* \w too|strong="H4480"\w* \w hard|strong="H7185"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*, \w you|strong="H3588"\w* \w shall|strong="H3808"\w* \w bring|strong="H7126"\w* \w to|strong="H6440"\w* \w me|strong="H6440"\w*, \w and|strong="H1419"\w* \w I|strong="H3588"\w* \w will|strong="H1697"\w* \w hear|strong="H8085"\w* \w it|strong="H1931"\w*.” +\v 18 \w I|strong="H1697"\w* \w commanded|strong="H6680"\w* \w you|strong="H6680"\w* \w at|strong="H6213"\w* \w that|strong="H3605"\w* \w time|strong="H6256"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w things|strong="H1697"\w* \w which|strong="H1931"\w* \w you|strong="H6680"\w* \w should|strong="H6213"\w* \w do|strong="H6213"\w*. +\v 19 \w We|strong="H5704"\w* \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* \w Horeb|strong="H2722"\w* \w and|strong="H3068"\w* \w went|strong="H3212"\w* \w through|strong="H3212"\w* \w all|strong="H3605"\w* \w that|strong="H7200"\w* \w great|strong="H1419"\w* \w and|strong="H3068"\w* \w terrible|strong="H3372"\w* \w wilderness|strong="H4057"\w* \w which|strong="H1931"\w* \w you|strong="H6680"\w* \w saw|strong="H7200"\w*, \w by|strong="H3068"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* Amorites, \w as|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w commanded|strong="H6680"\w* \w us|strong="H7200"\w*; \w and|strong="H3068"\w* \w we|strong="H3068"\w* \w came|strong="H3068"\w* \w to|strong="H5704"\w* Kadesh Barnea. +\v 20 \w I|strong="H5414"\w* said \w to|strong="H5704"\w* \w you|strong="H5414"\w*, “\w You|strong="H5414"\w* \w have|strong="H3068"\w* come \w to|strong="H5704"\w* \w the|strong="H5414"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* Amorites, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w to|strong="H5704"\w* \w us|strong="H5414"\w*. +\v 21 \w Behold|strong="H7200"\w*, \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w set|strong="H5414"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w*. \w Go|strong="H5927"\w* \w up|strong="H5927"\w*, \w take|strong="H3423"\w* \w possession|strong="H3423"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* fathers \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H5414"\w*. Don’t \w be|strong="H3068"\w* \w afraid|strong="H3372"\w*, neither \w be|strong="H3068"\w* \w dismayed|strong="H2865"\w*.” +\p +\v 22 \w You|strong="H6440"\w* \w came|strong="H5927"\w* \w near|strong="H7126"\w* \w to|strong="H7725"\w* \w me|strong="H6440"\w*, \w everyone|strong="H3605"\w* \w of|strong="H1697"\w* \w you|strong="H6440"\w*, \w and|strong="H7971"\w* \w said|strong="H1697"\w*, “\w Let|strong="H7971"\w*’s \w send|strong="H7971"\w* \w men|strong="H3605"\w* \w before|strong="H6440"\w* \w us|strong="H7725"\w*, \w that|strong="H3605"\w* \w they|strong="H1697"\w* \w may|strong="H7725"\w* \w search|strong="H2658"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w for|strong="H6440"\w* \w us|strong="H7725"\w*, \w and|strong="H7971"\w* \w bring|strong="H7725"\w* \w back|strong="H7725"\w* \w to|strong="H7725"\w* \w us|strong="H7725"\w* \w word|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w by|strong="H1870"\w* \w which|strong="H1697"\w* \w we|strong="H3068"\w* must \w go|strong="H5927"\w* \w up|strong="H5927"\w*, \w and|strong="H7971"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w to|strong="H7725"\w* \w which|strong="H1697"\w* \w we|strong="H3068"\w* \w shall|strong="H5892"\w* \w come|strong="H5927"\w*.” +\p +\v 23 \w The|strong="H3947"\w* \w thing|strong="H1697"\w* \w pleased|strong="H3190"\w* \w me|strong="H4480"\w* \w well|strong="H3190"\w*. \w I|strong="H1697"\w* \w took|strong="H3947"\w* \w twelve|strong="H8147"\w* \w of|strong="H1697"\w* \w your|strong="H3947"\w* \w men|strong="H8147"\w*, \w one|strong="H4480"\w* man \w for|strong="H5869"\w* \w every|strong="H3947"\w* \w tribe|strong="H7626"\w*. +\v 24 \w They|strong="H5704"\w* \w turned|strong="H6437"\w* \w and|strong="H6437"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H5704"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*, \w and|strong="H6437"\w* \w came|strong="H5927"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w valley|strong="H5158"\w* \w of|strong="H2022"\w* Eshcol, \w and|strong="H6437"\w* \w spied|strong="H7270"\w* \w it|strong="H5927"\w* \w out|strong="H7270"\w*. +\v 25 \w They|strong="H3068"\w* \w took|strong="H3947"\w* \w some|strong="H1697"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* \w fruit|strong="H6529"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* land \w in|strong="H3068"\w* \w their|strong="H3068"\w* \w hands|strong="H3027"\w* \w and|strong="H3068"\w* \w brought|strong="H7725"\w* \w it|strong="H5414"\w* \w down|strong="H3381"\w* \w to|strong="H7725"\w* \w us|strong="H5414"\w*, \w and|strong="H3068"\w* \w brought|strong="H7725"\w* \w us|strong="H5414"\w* \w word|strong="H1697"\w* \w again|strong="H7725"\w*, \w and|strong="H3068"\w* \w said|strong="H1697"\w*, “\w It|strong="H5414"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w good|strong="H2896"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w to|strong="H7725"\w* \w us|strong="H5414"\w*.” +\p +\v 26 \w Yet|strong="H3068"\w* \w you|strong="H3808"\w* wouldn’t \w go|strong="H5927"\w* \w up|strong="H5927"\w*, \w but|strong="H3808"\w* \w rebelled|strong="H4784"\w* \w against|strong="H5927"\w* \w the|strong="H3068"\w* \w commandment|strong="H6310"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 27 \w You|strong="H5414"\w* \w murmured|strong="H7279"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* tents, \w and|strong="H3068"\w* \w said|strong="H3318"\w*, “\w Because|strong="H3027"\w* \w Yahweh|strong="H3068"\w* \w hated|strong="H8135"\w* \w us|strong="H5414"\w*, \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w brought|strong="H3318"\w* \w us|strong="H5414"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w to|strong="H3318"\w* \w deliver|strong="H5414"\w* \w us|strong="H5414"\w* \w into|strong="H3318"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* Amorites \w to|strong="H3318"\w* \w destroy|strong="H8045"\w* \w us|strong="H5414"\w*. +\v 28 \w Where|strong="H8033"\w* \w are|strong="H5971"\w* \w we|strong="H3068"\w* \w going|strong="H5927"\w* \w up|strong="H5927"\w*? \w Our|strong="H7200"\w* \w brothers|strong="H1121"\w* \w have|strong="H5971"\w* \w made|strong="H7311"\w* \w our|strong="H7200"\w* \w heart|strong="H3824"\w* \w melt|strong="H4549"\w*, saying, ‘\w The|strong="H7200"\w* \w people|strong="H5971"\w* \w are|strong="H5971"\w* \w greater|strong="H1419"\w* \w and|strong="H1121"\w* \w taller|strong="H7311"\w* \w than|strong="H4480"\w* \w we|strong="H3068"\w*. \w The|strong="H7200"\w* \w cities|strong="H5892"\w* \w are|strong="H5971"\w* \w great|strong="H1419"\w* \w and|strong="H1121"\w* \w fortified|strong="H1219"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H7200"\w* \w sky|strong="H8064"\w*. \w Moreover|strong="H1571"\w* \w we|strong="H3068"\w* \w have|strong="H5971"\w* \w seen|strong="H7200"\w* \w the|strong="H7200"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w Anakim|strong="H6062"\w* \w there|strong="H8033"\w*!’” +\p +\v 29 \w Then|strong="H3372"\w* \w I|strong="H3808"\w* said \w to|strong="H3372"\w* \w you|strong="H3808"\w*, “Don’t \w be|strong="H3808"\w* \w terrified|strong="H6206"\w*. Don’t \w be|strong="H3808"\w* \w afraid|strong="H3372"\w* \w of|strong="H3372"\w* \w them|strong="H1992"\w*. +\v 30 \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w who|strong="H3605"\w* \w goes|strong="H1980"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w he|strong="H1931"\w* \w will|strong="H3068"\w* \w fight|strong="H3898"\w* \w for|strong="H6213"\w* \w you|strong="H6440"\w*, according \w to|strong="H1980"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H1931"\w* \w did|strong="H6213"\w* \w for|strong="H6213"\w* \w you|strong="H6440"\w* \w in|strong="H1980"\w* \w Egypt|strong="H4714"\w* \w before|strong="H6440"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w*, +\v 31 \w and|strong="H1121"\w* \w in|strong="H1980"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* \w where|strong="H4725"\w* \w you|strong="H3605"\w* \w have|strong="H3068"\w* \w seen|strong="H7200"\w* \w how|strong="H5704"\w* \w that|strong="H7200"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w carried|strong="H5375"\w* \w you|strong="H3605"\w*, \w as|strong="H5704"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w carries|strong="H5375"\w* \w his|strong="H3605"\w* \w son|strong="H1121"\w*, \w in|strong="H1980"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w that|strong="H7200"\w* \w you|strong="H3605"\w* \w went|strong="H1980"\w*, \w until|strong="H5704"\w* \w you|strong="H3605"\w* \w came|strong="H1980"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*.” +\p +\v 32 \w Yet|strong="H3068"\w* \w in|strong="H3068"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w you|strong="H2088"\w* didn’t believe \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, +\v 33 \w who|strong="H1980"\w* \w went|strong="H1980"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w on|strong="H1980"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w*, \w to|strong="H1980"\w* \w seek|strong="H8446"\w* \w out|strong="H8446"\w* \w a|strong="H3068"\w* \w place|strong="H4725"\w* \w for|strong="H6440"\w* \w you|strong="H6440"\w* \w to|strong="H1980"\w* \w pitch|strong="H2583"\w* \w your|strong="H6440"\w* \w tents|strong="H2583"\w* \w in|strong="H2583"\w*: \w in|strong="H2583"\w* fire \w by|strong="H1870"\w* \w night|strong="H3915"\w*, \w to|strong="H1980"\w* \w show|strong="H7200"\w* \w you|strong="H6440"\w* \w by|strong="H1870"\w* \w what|strong="H7200"\w* \w way|strong="H1870"\w* \w you|strong="H6440"\w* \w should|strong="H1980"\w* \w go|strong="H1980"\w*, \w and|strong="H1980"\w* \w in|strong="H2583"\w* \w the|strong="H6440"\w* \w cloud|strong="H6051"\w* \w by|strong="H1870"\w* \w day|strong="H3119"\w*. +\v 34 \w Yahweh|strong="H3068"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w words|strong="H1697"\w* \w and|strong="H3068"\w* \w was|strong="H3068"\w* \w angry|strong="H7107"\w*, \w and|strong="H3068"\w* \w swore|strong="H7650"\w*, \w saying|strong="H1697"\w*, +\v 35 “\w Surely|strong="H5414"\w* \w not|strong="H5414"\w* \w one|strong="H2088"\w* \w of|strong="H7451"\w* \w these|strong="H2088"\w* \w men|strong="H7451"\w* \w of|strong="H7451"\w* \w this|strong="H2088"\w* \w evil|strong="H7451"\w* \w generation|strong="H1755"\w* \w shall|strong="H7451"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w good|strong="H2896"\w* land \w which|strong="H7451"\w* \w I|strong="H5414"\w* \w swore|strong="H7650"\w* \w to|strong="H5414"\w* \w give|strong="H5414"\w* \w to|strong="H5414"\w* \w your|strong="H5414"\w* fathers, +\v 36 \w except|strong="H2108"\w* \w Caleb|strong="H3612"\w* \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jephunneh|strong="H3312"\w*. \w He|strong="H1931"\w* \w shall|strong="H3068"\w* \w see|strong="H7200"\w* \w it|strong="H5414"\w*. \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w the|strong="H7200"\w* land \w that|strong="H7200"\w* \w he|strong="H1931"\w* \w has|strong="H3068"\w* \w trodden|strong="H1869"\w* \w on|strong="H7200"\w* \w to|strong="H3068"\w* \w him|strong="H5414"\w* \w and|strong="H1121"\w* \w to|strong="H3068"\w* \w his|strong="H5414"\w* \w children|strong="H1121"\w*, \w because|strong="H3282"\w* \w he|strong="H1931"\w* \w has|strong="H3068"\w* \w wholly|strong="H4390"\w* followed \w Yahweh|strong="H3068"\w*.” +\p +\v 37 \w Also|strong="H1571"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* angry \w with|strong="H3068"\w* \w me|strong="H3808"\w* \w for|strong="H3068"\w* \w your|strong="H3068"\w* \w sakes|strong="H1558"\w*, saying, “\w You|strong="H3808"\w* \w also|strong="H1571"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w go|strong="H3068"\w* \w in|strong="H3068"\w* \w there|strong="H8033"\w*. +\v 38 \w Joshua|strong="H3091"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w*, \w who|strong="H1931"\w* \w stands|strong="H5975"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*, \w shall|strong="H1121"\w* \w go|strong="H3478"\w* \w in|strong="H3478"\w* \w there|strong="H8033"\w*. \w Encourage|strong="H2388"\w* \w him|strong="H6440"\w*, \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w shall|strong="H1121"\w* cause \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w inherit|strong="H5157"\w* \w it|strong="H1931"\w*. +\v 39 \w Moreover|strong="H1961"\w* \w your|strong="H5414"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*, \w whom|strong="H1992"\w* \w you|strong="H5414"\w* said \w would|strong="H7451"\w* \w be|strong="H1961"\w* captured \w or|strong="H3808"\w* killed, \w your|strong="H5414"\w* \w children|strong="H1121"\w*, \w who|strong="H1121"\w* \w today|strong="H3117"\w* \w have|strong="H1961"\w* \w no|strong="H3808"\w* \w knowledge|strong="H3045"\w* \w of|strong="H1121"\w* \w good|strong="H2896"\w* \w or|strong="H3808"\w* \w evil|strong="H7451"\w*, \w shall|strong="H1121"\w* \w go|strong="H1961"\w* \w in|strong="H3117"\w* \w there|strong="H8033"\w*. \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H1961"\w* \w them|strong="H5414"\w*, \w and|strong="H1121"\w* \w they|strong="H1992"\w* \w shall|strong="H1121"\w* \w possess|strong="H3423"\w* \w it|strong="H5414"\w*. +\v 40 \w But|strong="H6437"\w* \w as|strong="H4057"\w* \w for|strong="H6437"\w* \w you|strong="H1870"\w*, \w turn|strong="H6437"\w*, \w and|strong="H1870"\w* \w take|strong="H5265"\w* \w your|strong="H5265"\w* \w journey|strong="H1870"\w* \w into|strong="H3220"\w* \w the|strong="H1870"\w* \w wilderness|strong="H4057"\w* \w by|strong="H1870"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w to|strong="H1870"\w* \w the|strong="H1870"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w*.” +\p +\v 41 \w Then|strong="H6030"\w* \w you|strong="H6680"\w* \w answered|strong="H6030"\w* \w and|strong="H3068"\w* \w said|strong="H6030"\w* \w to|strong="H3068"\w* \w me|strong="H6030"\w*, “\w We|strong="H3605"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w* \w against|strong="H3898"\w* \w Yahweh|strong="H3068"\w*. \w We|strong="H3605"\w* \w will|strong="H3068"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H3068"\w* \w fight|strong="H3898"\w*, according \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w commanded|strong="H6680"\w* \w us|strong="H3898"\w*.” \w Every|strong="H3605"\w* \w man|strong="H3605"\w* \w of|strong="H3068"\w* \w you|strong="H6680"\w* \w put|strong="H5927"\w* \w on|strong="H2296"\w* \w his|strong="H3605"\w* \w weapons|strong="H3627"\w* \w of|strong="H3068"\w* \w war|strong="H4421"\w*, \w and|strong="H3068"\w* presumed \w to|strong="H3068"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H3605"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*. +\p +\v 42 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w me|strong="H6440"\w*, “Tell \w them|strong="H6440"\w*, ‘Don’t \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H3068"\w* don’t \w fight|strong="H3898"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w not|strong="H3808"\w* \w among|strong="H7130"\w* \w you|strong="H3588"\w*, lest \w you|strong="H3588"\w* \w be|strong="H3808"\w* \w struck|strong="H5062"\w* \w before|strong="H6440"\w* \w your|strong="H3068"\w* enemies.’” +\p +\v 43 \w So|strong="H5927"\w* \w I|strong="H3808"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3808"\w*, \w and|strong="H3068"\w* \w you|strong="H3808"\w* didn’t \w listen|strong="H8085"\w*; \w but|strong="H3808"\w* \w you|strong="H3808"\w* \w rebelled|strong="H4784"\w* \w against|strong="H5927"\w* \w the|strong="H8085"\w* \w commandment|strong="H6310"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w were|strong="H2022"\w* presumptuous, \w and|strong="H3068"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H8085"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*. +\v 44 \w The|strong="H6213"\w* Amorites, \w who|strong="H1931"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w that|strong="H1931"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*, \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w against|strong="H7125"\w* \w you|strong="H5704"\w* \w and|strong="H2022"\w* \w chased|strong="H7291"\w* \w you|strong="H5704"\w* \w as|strong="H5704"\w* \w bees|strong="H1682"\w* \w do|strong="H6213"\w*, \w and|strong="H2022"\w* \w beat|strong="H3807"\w* \w you|strong="H5704"\w* \w down|strong="H3427"\w* \w in|strong="H3427"\w* \w Seir|strong="H8165"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Hormah|strong="H2767"\w*. +\v 45 \w You|strong="H6440"\w* \w returned|strong="H7725"\w* \w and|strong="H3068"\w* \w wept|strong="H1058"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w but|strong="H3808"\w* \w Yahweh|strong="H3068"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H7725"\w* \w your|strong="H3068"\w* \w voice|strong="H6963"\w*, \w nor|strong="H3808"\w* \w turn|strong="H7725"\w* \w his|strong="H3068"\w* \w ear|strong="H8085"\w* \w to|strong="H7725"\w* \w you|strong="H6440"\w*. +\v 46 \w So|strong="H3427"\w* \w you|strong="H3117"\w* \w stayed|strong="H3427"\w* \w in|strong="H3427"\w* \w Kadesh|strong="H6946"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w*, according \w to|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w that|strong="H3117"\w* \w you|strong="H3117"\w* \w remained|strong="H3427"\w*. +\c 2 +\p +\v 1 \w Then|strong="H1696"\w* \w we|strong="H3068"\w* \w turned|strong="H6437"\w*, \w and|strong="H3068"\w* \w took|strong="H5265"\w* \w our|strong="H3068"\w* \w journey|strong="H1870"\w* \w into|strong="H3220"\w* \w the|strong="H3068"\w* \w wilderness|strong="H4057"\w* \w by|strong="H3117"\w* \w the|strong="H3068"\w* \w way|strong="H1870"\w* \w to|strong="H1696"\w* \w the|strong="H3068"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w*, \w as|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H5437"\w*; \w and|strong="H3068"\w* \w we|strong="H3068"\w* \w encircled|strong="H5437"\w* \w Mount|strong="H2022"\w* \w Seir|strong="H8165"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w*. +\p +\v 2 \w Yahweh|strong="H3068"\w* spoke \w to|strong="H3068"\w* me, saying, +\v 3 “\w You|strong="H2022"\w* \w have|strong="H6437"\w* \w encircled|strong="H5437"\w* \w this|strong="H2088"\w* \w mountain|strong="H2022"\w* \w long|strong="H7227"\w* \w enough|strong="H7227"\w*. \w Turn|strong="H6437"\w* \w northward|strong="H6828"\w*. +\v 4 \w Command|strong="H6680"\w* \w the|strong="H8104"\w* \w people|strong="H5971"\w*, saying, ‘\w You|strong="H6680"\w* \w are|strong="H5971"\w* \w to|strong="H8104"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H8104"\w* \w border|strong="H1366"\w* \w of|strong="H1121"\w* \w your|strong="H8104"\w* \w brothers|strong="H1121"\w*, \w the|strong="H8104"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Esau|strong="H6215"\w*, \w who|strong="H5971"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w Seir|strong="H8165"\w*; \w and|strong="H1121"\w* \w they|strong="H5971"\w* \w will|strong="H5971"\w* \w be|strong="H1121"\w* \w afraid|strong="H3372"\w* \w of|strong="H1121"\w* \w you|strong="H6680"\w*. \w Therefore|strong="H5971"\w* \w be|strong="H1121"\w* \w careful|strong="H8104"\w*. +\v 5 Don’t \w contend|strong="H1624"\w* \w with|strong="H2022"\w* \w them|strong="H5414"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H5414"\w* \w not|strong="H3808"\w* \w give|strong="H5414"\w* \w you|strong="H3588"\w* \w any|strong="H5414"\w* \w of|strong="H2022"\w* \w their|strong="H5414"\w* land, \w no|strong="H3808"\w*, \w not|strong="H3808"\w* \w so|strong="H5414"\w* much \w as|strong="H5704"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w sole|strong="H3709"\w* \w of|strong="H2022"\w* \w the|strong="H3588"\w* \w foot|strong="H7272"\w* \w to|strong="H5704"\w* tread \w on|strong="H2022"\w*, \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H5414"\w* \w given|strong="H5414"\w* \w Mount|strong="H2022"\w* \w Seir|strong="H8165"\w* \w to|strong="H5704"\w* \w Esau|strong="H6215"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w possession|strong="H3425"\w*. +\v 6 \w You|strong="H1571"\w* \w shall|strong="H4325"\w* \w purchase|strong="H3701"\w* food \w from|strong="H1571"\w* them \w for|strong="H4325"\w* \w money|strong="H3701"\w*, \w that|strong="H4325"\w* \w you|strong="H1571"\w* \w may|strong="H1571"\w* eat. \w You|strong="H1571"\w* \w shall|strong="H4325"\w* \w also|strong="H1571"\w* \w buy|strong="H7666"\w* \w water|strong="H4325"\w* \w from|strong="H1571"\w* them \w for|strong="H4325"\w* \w money|strong="H3701"\w*, \w that|strong="H4325"\w* \w you|strong="H1571"\w* \w may|strong="H1571"\w* \w drink|strong="H8354"\w*.’” +\p +\v 7 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w blessed|strong="H1288"\w* \w you|strong="H3588"\w* \w in|strong="H8141"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w hands|strong="H3027"\w*. \w He|strong="H3588"\w* \w has|strong="H3068"\w* \w known|strong="H3045"\w* \w your|strong="H3068"\w* \w walking|strong="H3212"\w* \w through|strong="H3027"\w* \w this|strong="H2088"\w* \w great|strong="H1419"\w* \w wilderness|strong="H4057"\w*. \w These|strong="H2088"\w* forty \w years|strong="H8141"\w*, \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w been|strong="H3808"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*. \w You|strong="H3588"\w* \w have|strong="H3068"\w* \w lacked|strong="H2637"\w* \w nothing|strong="H3808"\w*. +\p +\v 8 \w So|strong="H5674"\w* \w we|strong="H3068"\w* \w passed|strong="H5674"\w* \w by|strong="H5674"\w* \w from|strong="H1121"\w* \w our|strong="H5674"\w* \w brothers|strong="H1121"\w*, \w the|strong="H5674"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Esau|strong="H6215"\w*, \w who|strong="H1121"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w Seir|strong="H8165"\w*, \w from|strong="H1121"\w* \w the|strong="H5674"\w* \w way|strong="H1870"\w* \w of|strong="H1121"\w* \w the|strong="H5674"\w* \w Arabah|strong="H6160"\w* \w from|strong="H1121"\w* Elath \w and|strong="H1121"\w* \w from|strong="H1121"\w* Ezion Geber. We \w turned|strong="H6437"\w* \w and|strong="H1121"\w* \w passed|strong="H5674"\w* \w by|strong="H5674"\w* \w the|strong="H5674"\w* \w way|strong="H1870"\w* \w of|strong="H1121"\w* \w the|strong="H5674"\w* \w wilderness|strong="H4057"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w*. +\p +\v 9 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w me|strong="H5414"\w*, “Don’t bother \w Moab|strong="H4124"\w*, \w neither|strong="H3808"\w* \w contend|strong="H1624"\w* \w with|strong="H3068"\w* \w them|strong="H5414"\w* \w in|strong="H3068"\w* \w battle|strong="H4421"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w give|strong="H5414"\w* \w you|strong="H3588"\w* \w any|strong="H5414"\w* \w of|strong="H1121"\w* \w his|strong="H5414"\w* land \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w possession|strong="H3425"\w*, \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w given|strong="H5414"\w* \w Ar|strong="H6144"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Lot|strong="H3876"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w possession|strong="H3425"\w*.” +\p +\v 10 (\w The|strong="H6440"\w* Emim \w lived|strong="H3427"\w* \w there|strong="H3427"\w* \w before|strong="H6440"\w*, \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w and|strong="H1419"\w* \w numerous|strong="H7227"\w* \w people|strong="H5971"\w*, \w and|strong="H1419"\w* \w tall|strong="H7311"\w* \w as|strong="H5971"\w* \w the|strong="H6440"\w* \w Anakim|strong="H6062"\w*. +\v 11 \w These|strong="H1992"\w* \w also|strong="H1992"\w* \w are|strong="H1992"\w* \w considered|strong="H2803"\w* \w to|strong="H7121"\w* be \w Rephaim|strong="H7497"\w*, \w as|strong="H2803"\w* \w the|strong="H7121"\w* \w Anakim|strong="H6062"\w*; \w but|strong="H1992"\w* \w the|strong="H7121"\w* \w Moabites|strong="H4125"\w* \w call|strong="H7121"\w* \w them|strong="H1992"\w* Emim. +\v 12 \w The|strong="H6440"\w* \w Horites|strong="H2752"\w* \w also|strong="H3068"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Seir|strong="H8165"\w* \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w past|strong="H6440"\w*, \w but|strong="H3068"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Esau|strong="H6215"\w* \w succeeded|strong="H8478"\w* \w them|strong="H5414"\w*. \w They|strong="H3068"\w* \w destroyed|strong="H8045"\w* \w them|strong="H5414"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w them|strong="H5414"\w*, \w and|strong="H1121"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w their|strong="H3068"\w* \w place|strong="H8478"\w*, \w as|strong="H6213"\w* \w Israel|strong="H3478"\w* \w did|strong="H6213"\w* \w to|strong="H3478"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H1121"\w* \w his|strong="H5414"\w* \w possession|strong="H3423"\w*, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w gave|strong="H5414"\w* \w to|strong="H3478"\w* \w them|strong="H5414"\w*.) +\p +\v 13 “\w Now|strong="H6258"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H6965"\w* \w cross|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H5674"\w* \w brook|strong="H5158"\w* \w Zered|strong="H2218"\w*.” \w We|strong="H6258"\w* \w went|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H5674"\w* \w brook|strong="H5158"\w* \w Zered|strong="H2218"\w*. +\p +\v 14 \w The|strong="H3605"\w* \w days|strong="H3117"\w* \w in|strong="H8141"\w* \w which|strong="H3068"\w* \w we|strong="H3068"\w* \w came|strong="H1980"\w* \w from|strong="H1980"\w* Kadesh Barnea \w until|strong="H5704"\w* \w we|strong="H3068"\w* \w had|strong="H3068"\w* \w come|strong="H1980"\w* \w over|strong="H5674"\w* \w the|strong="H3605"\w* \w brook|strong="H5158"\w* \w Zered|strong="H2218"\w* \w were|strong="H3117"\w* \w thirty-eight|strong="H7970"\w* \w years|strong="H8141"\w*, \w until|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w generation|strong="H1755"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w men|strong="H1980"\w* \w of|strong="H3068"\w* \w war|strong="H4421"\w* \w were|strong="H3117"\w* \w consumed|strong="H8552"\w* \w from|strong="H1980"\w* \w the|strong="H3605"\w* \w middle|strong="H7130"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w*, \w as|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w swore|strong="H7650"\w* \w to|strong="H5704"\w* \w them|strong="H5674"\w*. +\v 15 \w Moreover|strong="H1571"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w was|strong="H3068"\w* \w against|strong="H3027"\w* \w them|strong="H3027"\w*, \w to|strong="H5704"\w* \w destroy|strong="H2000"\w* \w them|strong="H3027"\w* \w from|strong="H3027"\w* \w the|strong="H3068"\w* \w middle|strong="H7130"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w camp|strong="H4264"\w*, \w until|strong="H5704"\w* \w they|strong="H3068"\w* \w were|strong="H1961"\w* \w consumed|strong="H8552"\w*. +\v 16 \w So|strong="H1961"\w*, \w when|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H5971"\w* \w of|strong="H5971"\w* \w war|strong="H4421"\w* \w were|strong="H1961"\w* \w consumed|strong="H8552"\w* \w and|strong="H5971"\w* \w dead|strong="H4191"\w* \w from|strong="H1961"\w* \w among|strong="H7130"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, +\v 17 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w*, \w saying|strong="H1696"\w*, +\v 18 “\w You|strong="H3117"\w* \w are|strong="H3117"\w* \w to|strong="H3117"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w Ar|strong="H6144"\w*, \w the|strong="H3117"\w* \w border|strong="H1366"\w* \w of|strong="H3117"\w* \w Moab|strong="H4124"\w*, \w today|strong="H3117"\w*. +\v 19 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w come|strong="H7126"\w* \w near|strong="H7126"\w* \w the|strong="H3588"\w* border \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, don’t bother \w them|strong="H5414"\w*, \w nor|strong="H3808"\w* \w contend|strong="H1624"\w* \w with|strong="H1121"\w* \w them|strong="H5414"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H1121"\w* \w not|strong="H3808"\w* \w give|strong="H5414"\w* \w you|strong="H3588"\w* \w any|strong="H5414"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* land \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w possession|strong="H3425"\w*, \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1121"\w* \w given|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Lot|strong="H3876"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w possession|strong="H3425"\w*.” +\p +\v 20 (\w That|strong="H1931"\w* \w also|strong="H5984"\w* \w is|strong="H1931"\w* \w considered|strong="H2803"\w* \w a|strong="H3068"\w* \w land|strong="H6440"\w* \w of|strong="H3427"\w* \w Rephaim|strong="H7497"\w*. \w Rephaim|strong="H7497"\w* \w lived|strong="H3427"\w* \w there|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w past|strong="H6440"\w*, \w but|strong="H1931"\w* \w the|strong="H6440"\w* \w Ammonites|strong="H5984"\w* \w call|strong="H7121"\w* \w them|strong="H6440"\w* Zamzummim, +\v 21 \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w people|strong="H5971"\w*, \w many|strong="H7227"\w*, \w and|strong="H3068"\w* \w tall|strong="H7311"\w*, \w as|strong="H3068"\w* \w the|strong="H6440"\w* \w Anakim|strong="H6062"\w*; \w but|strong="H5971"\w* \w Yahweh|strong="H3068"\w* \w destroyed|strong="H8045"\w* \w them|strong="H6440"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w Israel|strong="H5971"\w*, \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w succeeded|strong="H8478"\w* \w them|strong="H6440"\w*, \w and|strong="H3068"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w their|strong="H3068"\w* \w place|strong="H8478"\w*, +\v 22 \w as|strong="H5704"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w* \w for|strong="H5704"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Esau|strong="H6215"\w* \w who|strong="H1121"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w Seir|strong="H8165"\w*, \w when|strong="H3117"\w* \w he|strong="H3117"\w* \w destroyed|strong="H8045"\w* \w the|strong="H6440"\w* \w Horites|strong="H2752"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*; \w and|strong="H1121"\w* \w they|strong="H3117"\w* \w succeeded|strong="H8478"\w* \w them|strong="H6440"\w*, \w and|strong="H1121"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w their|strong="H6440"\w* \w place|strong="H8478"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 23 \w Then|strong="H3318"\w* \w the|strong="H5704"\w* \w Avvim|strong="H5761"\w*, \w who|strong="H3427"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* villages \w as|strong="H5704"\w* \w far|strong="H5704"\w* \w as|strong="H5704"\w* \w Gaza|strong="H5804"\w*: \w the|strong="H5704"\w* \w Caphtorim|strong="H3732"\w*, \w who|strong="H3427"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3427"\w* \w Caphtor|strong="H3731"\w*, \w destroyed|strong="H8045"\w* \w them|strong="H3318"\w* \w and|strong="H3318"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w their|strong="H8478"\w* \w place|strong="H8478"\w*.) +\p +\v 24 “\w Rise|strong="H6965"\w* \w up|strong="H6965"\w*, \w take|strong="H3423"\w* \w your|strong="H5414"\w* \w journey|strong="H5265"\w*, \w and|strong="H6965"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H7200"\w* \w valley|strong="H5158"\w* \w of|strong="H4428"\w* \w the|strong="H7200"\w* Arnon. \w Behold|strong="H7200"\w*, \w I|strong="H5414"\w* \w have|strong="H3027"\w* \w given|strong="H5414"\w* \w into|strong="H3027"\w* \w your|strong="H5414"\w* \w hand|strong="H3027"\w* \w Sihon|strong="H5511"\w* \w the|strong="H7200"\w* Amorite, \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Heshbon|strong="H2809"\w*, \w and|strong="H6965"\w* \w his|strong="H5414"\w* land; \w begin|strong="H2490"\w* \w to|strong="H5414"\w* \w possess|strong="H3423"\w* \w it|strong="H5414"\w*, \w and|strong="H6965"\w* \w contend|strong="H1624"\w* \w with|strong="H3027"\w* \w him|strong="H5414"\w* \w in|strong="H4428"\w* \w battle|strong="H4421"\w*. +\v 25 \w Today|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H5971"\w* \w begin|strong="H2490"\w* \w to|strong="H5921"\w* \w put|strong="H5414"\w* \w the|strong="H3605"\w* \w dread|strong="H6343"\w* \w of|strong="H3117"\w* \w you|strong="H5414"\w* \w and|strong="H3117"\w* \w the|strong="H3605"\w* \w fear|strong="H3374"\w* \w of|strong="H3117"\w* \w you|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w who|strong="H3605"\w* \w are|strong="H3117"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w sky|strong="H8064"\w*, \w who|strong="H3605"\w* \w shall|strong="H5971"\w* \w hear|strong="H8085"\w* \w the|strong="H3605"\w* \w report|strong="H8088"\w* \w of|strong="H3117"\w* \w you|strong="H5414"\w*, \w and|strong="H3117"\w* \w shall|strong="H5971"\w* \w tremble|strong="H7264"\w* \w and|strong="H3117"\w* \w be|strong="H3117"\w* \w in|strong="H5921"\w* \w anguish|strong="H2342"\w* \w because|strong="H5921"\w* \w of|strong="H3117"\w* \w you|strong="H5414"\w*.” +\p +\v 26 \w I|strong="H1697"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w out|strong="H7971"\w* \w of|strong="H4428"\w* \w the|strong="H7971"\w* \w wilderness|strong="H4057"\w* \w of|strong="H4428"\w* \w Kedemoth|strong="H6932"\w* \w to|strong="H7971"\w* \w Sihon|strong="H5511"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Heshbon|strong="H2809"\w* \w with|strong="H1697"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w peace|strong="H7965"\w*, \w saying|strong="H1697"\w*, +\v 27 “\w Let|strong="H3808"\w* \w me|strong="H5674"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w your|strong="H3808"\w* land. \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w go|strong="H3212"\w* \w along|strong="H5674"\w* \w by|strong="H5674"\w* \w the|strong="H5674"\w* \w highway|strong="H1870"\w*. \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w turn|strong="H5493"\w* \w neither|strong="H3808"\w* \w to|strong="H3212"\w* \w the|strong="H5674"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w nor|strong="H3808"\w* \w to|strong="H3212"\w* \w the|strong="H5674"\w* \w left|strong="H8040"\w*. +\v 28 \w You|strong="H5414"\w* \w shall|strong="H4325"\w* \w sell|strong="H7666"\w* \w me|strong="H5414"\w* food \w for|strong="H4325"\w* \w money|strong="H3701"\w*, \w that|strong="H5414"\w* \w I|strong="H5414"\w* \w may|strong="H7272"\w* eat; \w and|strong="H3701"\w* \w give|strong="H5414"\w* \w me|strong="H5414"\w* \w water|strong="H4325"\w* \w for|strong="H4325"\w* \w money|strong="H3701"\w*, \w that|strong="H5414"\w* \w I|strong="H5414"\w* \w may|strong="H7272"\w* \w drink|strong="H8354"\w*. Just \w let|strong="H5414"\w* \w me|strong="H5414"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w on|strong="H5674"\w* \w my|strong="H5414"\w* \w feet|strong="H7272"\w*, +\v 29 \w as|strong="H5704"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Esau|strong="H6215"\w* \w who|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w Seir|strong="H8165"\w*, \w and|strong="H1121"\w* \w the|strong="H5414"\w* \w Moabites|strong="H4125"\w* \w who|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w Ar|strong="H6144"\w*, \w did|strong="H6213"\w* \w to|strong="H5704"\w* \w me|strong="H5414"\w*, \w until|strong="H5704"\w* \w I|strong="H5414"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H5414"\w* \w Jordan|strong="H3383"\w* \w into|strong="H6213"\w* \w the|strong="H5414"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w us|strong="H5414"\w*.” +\v 30 \w But|strong="H3588"\w* \w Sihon|strong="H5511"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Heshbon|strong="H2809"\w* \w would|strong="H3068"\w* \w not|strong="H3808"\w* \w let|strong="H5414"\w* \w us|strong="H5414"\w* \w pass|strong="H5674"\w* \w by|strong="H3027"\w* \w him|strong="H5414"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w hardened|strong="H7185"\w* \w his|strong="H5414"\w* \w spirit|strong="H7307"\w* \w and|strong="H3068"\w* \w made|strong="H5414"\w* \w his|strong="H5414"\w* \w heart|strong="H3824"\w* obstinate, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w might|strong="H3068"\w* \w deliver|strong="H5414"\w* \w him|strong="H5414"\w* \w into|strong="H3027"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*, \w as|strong="H3117"\w* \w it|strong="H5414"\w* \w is|strong="H3068"\w* \w today|strong="H3117"\w*. +\p +\v 31 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w me|strong="H5414"\w*, “\w Behold|strong="H7200"\w*, \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w begun|strong="H2490"\w* \w to|strong="H3068"\w* \w deliver|strong="H5414"\w* \w up|strong="H5414"\w* \w Sihon|strong="H5511"\w* \w and|strong="H3068"\w* \w his|strong="H5414"\w* \w land|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w*. \w Begin|strong="H2490"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w*, \w that|strong="H7200"\w* \w you|strong="H5414"\w* \w may|strong="H3068"\w* \w inherit|strong="H3423"\w* \w his|strong="H5414"\w* \w land|strong="H6440"\w*.” +\v 32 \w Then|strong="H3318"\w* \w Sihon|strong="H5511"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w against|strong="H7125"\w* \w us|strong="H7125"\w*, \w he|strong="H1931"\w* \w and|strong="H5971"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*, \w to|strong="H3318"\w* \w battle|strong="H4421"\w* \w at|strong="H4421"\w* \w Jahaz|strong="H3096"\w*. +\v 33 \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w delivered|strong="H5414"\w* \w him|strong="H5414"\w* \w up|strong="H5414"\w* \w before|strong="H6440"\w* \w us|strong="H5414"\w*; \w and|strong="H1121"\w* \w we|strong="H3068"\w* \w struck|strong="H5221"\w* \w him|strong="H5414"\w*, \w his|strong="H3605"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*. +\v 34 \w We|strong="H5892"\w* \w took|strong="H3920"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w cities|strong="H5892"\w* \w at|strong="H3808"\w* \w that|strong="H3605"\w* \w time|strong="H6256"\w*, \w and|strong="H5892"\w* \w utterly|strong="H2763"\w* \w destroyed|strong="H2763"\w* \w every|strong="H3605"\w* inhabited \w city|strong="H5892"\w*, \w with|strong="H5892"\w* \w the|strong="H3605"\w* women \w and|strong="H5892"\w* \w the|strong="H3605"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*. \w We|strong="H5892"\w* \w left|strong="H7604"\w* \w no|strong="H3808"\w* \w one|strong="H3605"\w* \w remaining|strong="H8300"\w*. +\v 35 \w Only|strong="H7535"\w* \w the|strong="H3920"\w* livestock \w we|strong="H3068"\w* \w took|strong="H3920"\w* \w for|strong="H5892"\w* \w plunder|strong="H7998"\w* \w for|strong="H5892"\w* ourselves, \w with|strong="H5892"\w* \w the|strong="H3920"\w* \w plunder|strong="H7998"\w* \w of|strong="H5892"\w* \w the|strong="H3920"\w* \w cities|strong="H5892"\w* \w which|strong="H5892"\w* \w we|strong="H3068"\w* had \w taken|strong="H3920"\w*. +\v 36 \w From|strong="H4480"\w* \w Aroer|strong="H6177"\w*, \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w edge|strong="H8193"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w valley|strong="H5158"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* Arnon, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w that|strong="H3605"\w* \w is|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w valley|strong="H5158"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Gilead|strong="H1568"\w*, \w there|strong="H1961"\w* \w was|strong="H3068"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w* \w too|strong="H4480"\w* \w high|strong="H7682"\w* \w for|strong="H5704"\w* \w us|strong="H5414"\w*. \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w delivered|strong="H5414"\w* \w up|strong="H5414"\w* \w all|strong="H3605"\w* \w before|strong="H6440"\w* \w us|strong="H5414"\w*. +\v 37 \w Only|strong="H7535"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* land \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w you|strong="H6680"\w* didn’t \w come|strong="H7126"\w* \w near|strong="H7126"\w*: \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w banks|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w river|strong="H5158"\w* \w Jabbok|strong="H2999"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*, \w and|strong="H1121"\w* \w wherever|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* forbade \w us|strong="H3027"\w*. +\c 3 +\p +\v 1 \w Then|strong="H3318"\w* \w we|strong="H3068"\w* \w turned|strong="H6437"\w*, \w and|strong="H4428"\w* \w went|strong="H3318"\w* \w up|strong="H5927"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w to|strong="H3318"\w* \w Bashan|strong="H1316"\w*. \w Og|strong="H5747"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Bashan|strong="H1316"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w against|strong="H7125"\w* \w us|strong="H7125"\w*, \w he|strong="H1931"\w* \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*, \w to|strong="H3318"\w* \w battle|strong="H4421"\w* \w at|strong="H4421"\w* Edrei. +\v 2 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w me|strong="H5414"\w*, “Don’t \w fear|strong="H3372"\w* \w him|strong="H5414"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w delivered|strong="H5414"\w* \w him|strong="H5414"\w*, \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w* \w and|strong="H3068"\w* \w his|strong="H3605"\w* land, \w into|strong="H6213"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*. \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w to|strong="H3068"\w* \w him|strong="H5414"\w* \w as|strong="H6213"\w* \w you|strong="H3588"\w* \w did|strong="H6213"\w* \w to|strong="H3068"\w* \w Sihon|strong="H5511"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* Amorites, \w who|strong="H3605"\w* \w lived|strong="H3427"\w* \w at|strong="H3427"\w* \w Heshbon|strong="H2809"\w*.” +\p +\v 3 \w So|strong="H5414"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w also|strong="H1571"\w* \w delivered|strong="H5414"\w* \w into|strong="H3027"\w* \w our|strong="H3068"\w* \w hand|strong="H3027"\w* \w Og|strong="H5747"\w*, \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Bashan|strong="H1316"\w*, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*. \w We|strong="H5704"\w* \w struck|strong="H5221"\w* \w him|strong="H5414"\w* \w until|strong="H5704"\w* \w no|strong="H1115"\w* \w one|strong="H3605"\w* \w was|strong="H3068"\w* \w left|strong="H7604"\w* \w to|strong="H5704"\w* \w him|strong="H5414"\w* \w remaining|strong="H8300"\w*. +\v 4 \w We|strong="H5892"\w* \w took|strong="H3947"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w cities|strong="H5892"\w* \w at|strong="H1961"\w* \w that|strong="H3605"\w* \w time|strong="H6256"\w*. \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w* \w which|strong="H1931"\w* \w we|strong="H3068"\w* didn’t \w take|strong="H3947"\w* \w from|strong="H3947"\w* \w them|strong="H3947"\w*: \w sixty|strong="H8346"\w* \w cities|strong="H5892"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w region|strong="H2256"\w* \w of|strong="H5892"\w* Argob, \w the|strong="H3605"\w* \w kingdom|strong="H4467"\w* \w of|strong="H5892"\w* \w Og|strong="H5747"\w* \w in|strong="H5892"\w* \w Bashan|strong="H1316"\w*. +\v 5 \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w were|strong="H5892"\w* \w cities|strong="H5892"\w* \w fortified|strong="H1219"\w* \w with|strong="H5892"\w* \w high|strong="H1364"\w* \w walls|strong="H2346"\w*, \w gates|strong="H1817"\w*, \w and|strong="H5892"\w* \w bars|strong="H1280"\w*, \w in|strong="H5892"\w* addition \w to|strong="H5892"\w* \w a|strong="H3068"\w* \w great|strong="H3966"\w* \w many|strong="H7235"\w* \w villages|strong="H6521"\w* without \w walls|strong="H2346"\w*. +\v 6 \w We|strong="H6213"\w* \w utterly|strong="H2763"\w* \w destroyed|strong="H2763"\w* \w them|strong="H6213"\w*, \w as|strong="H6213"\w* \w we|strong="H3068"\w* \w did|strong="H6213"\w* \w to|strong="H6213"\w* \w Sihon|strong="H5511"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Heshbon|strong="H2809"\w*, \w utterly|strong="H2763"\w* \w destroying|strong="H2763"\w* \w every|strong="H3605"\w* inhabited \w city|strong="H5892"\w*, \w with|strong="H6213"\w* \w the|strong="H3605"\w* women \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*. +\v 7 \w But|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* livestock, \w and|strong="H5892"\w* \w the|strong="H3605"\w* \w plunder|strong="H7998"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w*, \w we|strong="H3068"\w* took \w for|strong="H5892"\w* \w plunder|strong="H7998"\w* \w for|strong="H5892"\w* ourselves. +\v 8 \w We|strong="H5704"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w land|strong="H5676"\w* \w at|strong="H4428"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w* \w out|strong="H3947"\w* \w of|strong="H4428"\w* \w the|strong="H3947"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H3947"\w* \w two|strong="H8147"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3947"\w* Amorites \w who|strong="H1931"\w* \w were|strong="H2022"\w* \w beyond|strong="H5676"\w* \w the|strong="H3947"\w* \w Jordan|strong="H3383"\w*, \w from|strong="H3027"\w* \w the|strong="H3947"\w* \w valley|strong="H5158"\w* \w of|strong="H4428"\w* \w the|strong="H3947"\w* Arnon \w to|strong="H5704"\w* \w Mount|strong="H2022"\w* \w Hermon|strong="H2768"\w*. +\v 9 (\w The|strong="H7121"\w* \w Sidonians|strong="H6722"\w* \w call|strong="H7121"\w* \w Hermon|strong="H2768"\w* \w Sirion|strong="H8303"\w*, \w and|strong="H7121"\w* \w the|strong="H7121"\w* Amorites \w call|strong="H7121"\w* \w it|strong="H7121"\w* \w Senir|strong="H8149"\w*.) +\v 10 \w We|strong="H5704"\w* took \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w plain|strong="H4334"\w*, \w and|strong="H5892"\w* \w all|strong="H3605"\w* \w Gilead|strong="H1568"\w*, \w and|strong="H5892"\w* \w all|strong="H3605"\w* \w Bashan|strong="H1316"\w*, \w to|strong="H5704"\w* \w Salecah|strong="H5548"\w* \w and|strong="H5892"\w* Edrei, \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w kingdom|strong="H4467"\w* \w of|strong="H5892"\w* \w Og|strong="H5747"\w* \w in|strong="H5892"\w* \w Bashan|strong="H1316"\w*. +\v 11 (\w For|strong="H3588"\w* \w only|strong="H7535"\w* \w Og|strong="H5747"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Bashan|strong="H1316"\w* \w remained|strong="H7604"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w remnant|strong="H3499"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w Rephaim|strong="H7497"\w*. \w Behold|strong="H2009"\w*, \w his|strong="H3588"\w* \w bedstead|strong="H6210"\w* \w was|strong="H1931"\w* \w a|strong="H3068"\w* \w bedstead|strong="H6210"\w* \w of|strong="H1121"\w* \w iron|strong="H1270"\w*. Isn’t \w it|strong="H1931"\w* \w in|strong="H4428"\w* \w Rabbah|strong="H7237"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*? \w Nine|strong="H8672"\w* cubits\f + \fr 3:11 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w was|strong="H1931"\w* \w its|strong="H3588"\w* length, \w and|strong="H1121"\w* four cubits \w its|strong="H3588"\w* \w width|strong="H7341"\w*, \w after|strong="H3588"\w* \w the|strong="H3588"\w* cubit \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w*.) +\v 12 \w This|strong="H2063"\w* land \w we|strong="H3068"\w* \w took|strong="H3423"\w* \w in|strong="H5921"\w* \w possession|strong="H3423"\w* \w at|strong="H5921"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w*: \w from|strong="H5921"\w* \w Aroer|strong="H6177"\w*, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w valley|strong="H5158"\w* \w of|strong="H5892"\w* \w the|strong="H5921"\w* Arnon, \w and|strong="H5892"\w* \w half|strong="H2677"\w* \w the|strong="H5921"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H5892"\w* \w Gilead|strong="H1568"\w* \w with|strong="H5921"\w* \w its|strong="H5414"\w* \w cities|strong="H5892"\w*, \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w Reubenites|strong="H7206"\w* \w and|strong="H5892"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w Gadites|strong="H1425"\w*; +\v 13 \w and|strong="H4519"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H7626"\w* \w Gilead|strong="H1568"\w*, \w and|strong="H4519"\w* \w all|strong="H3605"\w* \w Bashan|strong="H1316"\w*, \w the|strong="H3605"\w* \w kingdom|strong="H4467"\w* \w of|strong="H7626"\w* \w Og|strong="H5747"\w*, \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H3605"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H7626"\w* \w Manasseh|strong="H4519"\w*—\w all|strong="H3605"\w* \w the|strong="H3605"\w* \w region|strong="H2256"\w* \w of|strong="H7626"\w* Argob, \w even|strong="H4519"\w* \w all|strong="H3605"\w* \w Bashan|strong="H1316"\w*. (\w The|strong="H3605"\w* \w same|strong="H1931"\w* \w is|strong="H1931"\w* \w called|strong="H7121"\w* \w the|strong="H3605"\w* land \w of|strong="H7626"\w* \w Rephaim|strong="H7497"\w*. +\v 14 \w Jair|strong="H2971"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w took|strong="H3947"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w region|strong="H2256"\w* \w of|strong="H1121"\w* Argob, \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w border|strong="H1366"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w Geshurites|strong="H1651"\w* \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w Maacathites|strong="H4602"\w*, \w and|strong="H1121"\w* \w called|strong="H7121"\w* \w them|strong="H5921"\w*, \w even|strong="H5704"\w* \w Bashan|strong="H1316"\w*, \w after|strong="H5921"\w* \w his|strong="H3605"\w* own \w name|strong="H8034"\w*, Havvoth \w Jair|strong="H2971"\w*, \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*.) +\v 15 \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w Gilead|strong="H1568"\w* \w to|strong="H5414"\w* \w Machir|strong="H4353"\w*. +\v 16 \w To|strong="H5704"\w* \w the|strong="H5414"\w* \w Reubenites|strong="H7206"\w* \w and|strong="H1121"\w* \w to|strong="H5704"\w* \w the|strong="H5414"\w* \w Gadites|strong="H1425"\w* \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w from|strong="H4480"\w* \w Gilead|strong="H1568"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5414"\w* \w valley|strong="H5158"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* Arnon, \w the|strong="H5414"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w valley|strong="H5158"\w*, \w and|strong="H1121"\w* \w its|strong="H5414"\w* \w border|strong="H1366"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5414"\w* \w river|strong="H5158"\w* \w Jabbok|strong="H2999"\w*, \w which|strong="H5158"\w* \w is|strong="H1121"\w* \w the|strong="H5414"\w* \w border|strong="H1366"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*; +\v 17 \w the|strong="H5704"\w* \w Arabah|strong="H6160"\w* \w also|strong="H1366"\w*, \w and|strong="H3220"\w* \w the|strong="H5704"\w* \w Jordan|strong="H3383"\w* \w and|strong="H3220"\w* \w its|strong="H8478"\w* \w border|strong="H1366"\w*, \w from|strong="H5704"\w* \w Chinnereth|strong="H3672"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w sea|strong="H3220"\w* \w of|strong="H1366"\w* \w the|strong="H5704"\w* \w Arabah|strong="H6160"\w*, \w the|strong="H5704"\w* \w Salt|strong="H4417"\w* \w Sea|strong="H3220"\w*, \w under|strong="H8478"\w* \w the|strong="H5704"\w* slopes \w of|strong="H1366"\w* \w Pisgah|strong="H6449"\w* \w eastward|strong="H4217"\w*. +\p +\v 18 \w I|strong="H5414"\w* \w commanded|strong="H6680"\w* \w you|strong="H5414"\w* \w at|strong="H3478"\w* \w that|strong="H3605"\w* \w time|strong="H6256"\w*, saying, “\w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w* \w this|strong="H2063"\w* \w land|strong="H6440"\w* \w to|strong="H3478"\w* \w possess|strong="H3423"\w* \w it|strong="H5414"\w*. \w All|strong="H3605"\w* \w of|strong="H1121"\w* \w you|strong="H5414"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w valor|strong="H2428"\w* \w shall|strong="H3068"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w armed|strong="H2502"\w* \w before|strong="H6440"\w* \w your|strong="H3068"\w* \w brothers|strong="H1121"\w*, \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 19 \w But|strong="H3588"\w* \w your|strong="H5414"\w* wives, \w and|strong="H5892"\w* \w your|strong="H5414"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*, \w and|strong="H5892"\w* \w your|strong="H5414"\w* \w livestock|strong="H4735"\w*, (\w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3045"\w* \w much|strong="H7227"\w* \w livestock|strong="H4735"\w*), \w shall|strong="H5892"\w* \w live|strong="H3427"\w* \w in|strong="H3427"\w* \w your|strong="H5414"\w* \w cities|strong="H5892"\w* \w which|strong="H5892"\w* \w I|strong="H3588"\w* \w have|strong="H3045"\w* \w given|strong="H5414"\w* \w you|strong="H3588"\w*, +\v 20 \w until|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w gives|strong="H5414"\w* \w rest|strong="H5117"\w* \w to|strong="H5704"\w* \w your|strong="H3068"\w* brothers, \w as|strong="H5704"\w* \w to|strong="H5704"\w* \w you|strong="H5414"\w*, \w and|strong="H3068"\w* \w they|strong="H1992"\w* \w also|strong="H1571"\w* \w possess|strong="H3423"\w* \w the|strong="H5414"\w* \w land|strong="H5676"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w them|strong="H5414"\w* \w beyond|strong="H5676"\w* \w the|strong="H5414"\w* \w Jordan|strong="H3383"\w*. \w Then|strong="H1571"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w each|strong="H5414"\w* \w return|strong="H7725"\w* \w to|strong="H5704"\w* \w his|strong="H5414"\w* \w own|strong="H3425"\w* \w possession|strong="H3423"\w*, \w which|strong="H3068"\w* \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w*.” +\p +\v 21 \w I|strong="H3651"\w* \w commanded|strong="H6680"\w* \w Joshua|strong="H3091"\w* \w at|strong="H3068"\w* \w that|strong="H7200"\w* \w time|strong="H6256"\w*, saying, “\w Your|strong="H3068"\w* \w eyes|strong="H5869"\w* \w have|strong="H3068"\w* \w seen|strong="H7200"\w* \w all|strong="H3605"\w* \w that|strong="H7200"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w* \w to|strong="H3068"\w* \w these|strong="H6213"\w* \w two|strong="H8147"\w* \w kings|strong="H4428"\w*. \w So|strong="H3651"\w* \w shall|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w do|strong="H6213"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w where|strong="H8033"\w* \w you|strong="H6680"\w* \w go|strong="H5674"\w* \w over|strong="H5674"\w*. +\v 22 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w fear|strong="H3372"\w* \w them|strong="H3588"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w himself|strong="H1931"\w* \w fights|strong="H3898"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*.” +\p +\v 23 \w I|strong="H6256"\w* \w begged|strong="H2603"\w* \w Yahweh|strong="H3068"\w* \w at|strong="H3068"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w*, saying, +\v 24 “\w Lord|strong="H3069"\w*\f + \fr 3:24 \ft The word translated “Lord” is “Adonai.”\f* \w Yahweh|strong="H3068"\w*, \w you|strong="H6213"\w* \w have|strong="H5650"\w* \w begun|strong="H2490"\w* \w to|strong="H6213"\w* \w show|strong="H7200"\w* \w your|strong="H7200"\w* \w servant|strong="H5650"\w* \w your|strong="H7200"\w* \w greatness|strong="H1433"\w*, \w and|strong="H8064"\w* \w your|strong="H7200"\w* \w strong|strong="H2389"\w* \w hand|strong="H3027"\w*. \w For|strong="H6213"\w* \w what|strong="H4310"\w* \w god|strong="H3069"\w* \w is|strong="H4310"\w* \w there|strong="H7200"\w* \w in|strong="H6213"\w* \w heaven|strong="H8064"\w* \w or|strong="H7200"\w* \w in|strong="H6213"\w* \w earth|strong="H8064"\w* \w that|strong="H7200"\w* \w can|strong="H4310"\w* \w do|strong="H6213"\w* \w works|strong="H4639"\w* \w like|strong="H6213"\w* \w yours|strong="H5650"\w*, \w and|strong="H8064"\w* \w mighty|strong="H2389"\w* \w acts|strong="H1369"\w* \w like|strong="H6213"\w* \w yours|strong="H5650"\w*? +\v 25 \w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w me|strong="H4994"\w* \w go|strong="H5674"\w* \w over|strong="H5674"\w* \w and|strong="H7200"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w good|strong="H2896"\w* \w land|strong="H5676"\w* \w that|strong="H7200"\w* \w is|strong="H2088"\w* \w beyond|strong="H5676"\w* \w the|strong="H7200"\w* \w Jordan|strong="H3383"\w*, \w that|strong="H7200"\w* \w fine|strong="H2896"\w* \w mountain|strong="H2022"\w*, \w and|strong="H7200"\w* \w Lebanon|strong="H3844"\w*.” +\p +\v 26 \w But|strong="H3808"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w angry|strong="H5674"\w* \w with|strong="H3068"\w* \w me|strong="H5674"\w* \w because|strong="H4616"\w* \w of|strong="H3068"\w* \w you|strong="H3808"\w*, \w and|strong="H3068"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H1696"\w* \w me|strong="H5674"\w*. \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H5674"\w*, “\w That|strong="H8085"\w* \w is|strong="H3068"\w* \w enough|strong="H7227"\w*! \w Speak|strong="H1696"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w* \w to|strong="H1696"\w* \w me|strong="H5674"\w* \w of|strong="H3068"\w* \w this|strong="H2088"\w* \w matter|strong="H1697"\w*. +\v 27 \w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H7200"\w* \w top|strong="H7218"\w* \w of|strong="H7218"\w* \w Pisgah|strong="H6449"\w*, \w and|strong="H5869"\w* \w lift|strong="H5375"\w* \w up|strong="H5927"\w* \w your|strong="H5375"\w* \w eyes|strong="H5869"\w* \w westward|strong="H3220"\w*, \w and|strong="H5869"\w* \w northward|strong="H6828"\w*, \w and|strong="H5869"\w* \w southward|strong="H8486"\w*, \w and|strong="H5869"\w* \w eastward|strong="H4217"\w*, \w and|strong="H5869"\w* \w see|strong="H7200"\w* \w with|strong="H5927"\w* \w your|strong="H5375"\w* \w eyes|strong="H5869"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H5869"\w* \w not|strong="H3808"\w* \w go|strong="H5927"\w* \w over|strong="H5674"\w* \w this|strong="H2088"\w* \w Jordan|strong="H3383"\w*. +\v 28 \w But|strong="H3588"\w* \w commission|strong="H6680"\w* \w Joshua|strong="H3091"\w*, \w and|strong="H5971"\w* \w encourage|strong="H2388"\w* \w him|strong="H6440"\w*, \w and|strong="H5971"\w* \w strengthen|strong="H2388"\w* \w him|strong="H6440"\w*; \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w shall|strong="H5971"\w* \w go|strong="H5674"\w* \w over|strong="H5674"\w* \w before|strong="H6440"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*, \w and|strong="H5971"\w* \w he|strong="H1931"\w* \w shall|strong="H5971"\w* \w cause|strong="H5971"\w* \w them|strong="H6440"\w* \w to|strong="H6440"\w* \w inherit|strong="H5157"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w which|strong="H1931"\w* \w you|strong="H3588"\w* \w shall|strong="H5971"\w* \w see|strong="H7200"\w*.” +\v 29 \w So|strong="H3427"\w* \w we|strong="H3068"\w* \w stayed|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3427"\w* \w valley|strong="H1516"\w* near Beth Peor. +\c 4 +\p +\v 1 \w Now|strong="H6258"\w*, \w Israel|strong="H3478"\w*, \w listen|strong="H8085"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w statutes|strong="H2706"\w* \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w ordinances|strong="H4941"\w* \w which|strong="H3068"\w* \w I|strong="H5414"\w* \w teach|strong="H3925"\w* \w you|strong="H5414"\w*, \w to|strong="H3478"\w* \w do|strong="H6213"\w* \w them|strong="H5414"\w*, \w that|strong="H8085"\w* \w you|strong="H5414"\w* \w may|strong="H3068"\w* \w live|strong="H2421"\w* \w and|strong="H3478"\w* \w go|strong="H3068"\w* \w in|strong="H3478"\w* \w and|strong="H3478"\w* \w possess|strong="H3423"\w* \w the|strong="H8085"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H8085"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* fathers, \w gives|strong="H5414"\w* \w you|strong="H5414"\w*. +\v 2 \w You|strong="H6680"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w add|strong="H3254"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w I|strong="H5921"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w*, \w neither|strong="H3808"\w* \w shall|strong="H3068"\w* \w you|strong="H6680"\w* \w take|strong="H8104"\w* \w away|strong="H4480"\w* \w from|strong="H4480"\w* \w it|strong="H5921"\w*, \w that|strong="H3068"\w* \w you|strong="H6680"\w* \w may|strong="H3068"\w* \w keep|strong="H8104"\w* \w the|strong="H5921"\w* \w commandments|strong="H4687"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w which|strong="H3068"\w* \w I|strong="H5921"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w*. +\v 3 \w Your|strong="H3068"\w* \w eyes|strong="H5869"\w* \w have|strong="H3068"\w* \w seen|strong="H7200"\w* \w what|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w did|strong="H6213"\w* \w because|strong="H3588"\w* \w of|strong="H3068"\w* \w Baal|strong="H1187"\w* \w Peor|strong="H1187"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w destroyed|strong="H8045"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H1980"\w* \w who|strong="H3605"\w* \w followed|strong="H1980"\w* \w Baal|strong="H1187"\w* \w Peor|strong="H1187"\w* \w from|strong="H1980"\w* \w among|strong="H7130"\w* \w you|strong="H3588"\w*. +\v 4 \w But|strong="H3605"\w* \w you|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H3117"\w* faithful \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w are|strong="H3117"\w* \w all|strong="H3605"\w* \w alive|strong="H2416"\w* \w today|strong="H3117"\w*. +\v 5 \w Behold|strong="H7200"\w*, \w I|strong="H3651"\w* \w have|strong="H3068"\w* \w taught|strong="H3925"\w* \w you|strong="H6680"\w* \w statutes|strong="H2706"\w* \w and|strong="H3068"\w* \w ordinances|strong="H4941"\w*, \w even|strong="H3651"\w* \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w* \w commanded|strong="H6680"\w* \w me|strong="H7200"\w*, \w that|strong="H7200"\w* \w you|strong="H6680"\w* \w should|strong="H3068"\w* \w do|strong="H6213"\w* \w so|strong="H3651"\w* \w in|strong="H3068"\w* \w the|strong="H7200"\w* \w middle|strong="H7130"\w* \w of|strong="H3068"\w* \w the|strong="H7200"\w* \w land|strong="H7130"\w* \w where|strong="H8033"\w* \w you|strong="H6680"\w* \w go|strong="H3068"\w* \w in|strong="H3068"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w* \w it|strong="H6213"\w*. +\v 6 \w Keep|strong="H8104"\w* \w therefore|strong="H3588"\w* \w and|strong="H1419"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w*; \w for|strong="H3588"\w* \w this|strong="H2088"\w* \w is|strong="H2088"\w* \w your|strong="H3605"\w* \w wisdom|strong="H2451"\w* \w and|strong="H1419"\w* \w your|strong="H3605"\w* \w understanding|strong="H8085"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H5869"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w who|strong="H3605"\w* \w shall|strong="H5971"\w* \w hear|strong="H8085"\w* \w all|strong="H3605"\w* \w these|strong="H2088"\w* \w statutes|strong="H2706"\w* \w and|strong="H1419"\w* say, “\w Surely|strong="H3588"\w* \w this|strong="H2088"\w* \w great|strong="H1419"\w* \w nation|strong="H1471"\w* \w is|strong="H2088"\w* \w a|strong="H3068"\w* \w wise|strong="H2450"\w* \w and|strong="H1419"\w* \w understanding|strong="H8085"\w* \w people|strong="H5971"\w*.” +\v 7 \w For|strong="H3588"\w* \w what|strong="H4310"\w* \w great|strong="H1419"\w* \w nation|strong="H1471"\w* \w is|strong="H3068"\w* \w there|strong="H3605"\w* \w that|strong="H3588"\w* \w has|strong="H3068"\w* \w a|strong="H3068"\w* \w god|strong="H3068"\w* \w so|strong="H7121"\w* \w near|strong="H7138"\w* \w to|strong="H3068"\w* \w them|strong="H7121"\w* \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w is|strong="H3068"\w* \w whenever|strong="H3605"\w* \w we|strong="H3068"\w* \w call|strong="H7121"\w* \w on|strong="H3068"\w* \w him|strong="H7121"\w*? +\v 8 \w What|strong="H4310"\w* \w great|strong="H1419"\w* \w nation|strong="H1471"\w* \w is|strong="H4310"\w* \w there|strong="H3117"\w* \w that|strong="H3605"\w* \w has|strong="H4310"\w* \w statutes|strong="H2706"\w* \w and|strong="H3117"\w* \w ordinances|strong="H4941"\w* \w so|strong="H5414"\w* \w righteous|strong="H6662"\w* \w as|strong="H3117"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w law|strong="H8451"\w* \w which|strong="H4310"\w* \w I|strong="H3117"\w* \w set|strong="H5414"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w* \w today|strong="H3117"\w*? +\p +\v 9 \w Only|strong="H7535"\w* \w be|strong="H1697"\w* \w careful|strong="H8104"\w*, \w and|strong="H1121"\w* \w keep|strong="H8104"\w* \w your|strong="H3605"\w* \w soul|strong="H5315"\w* \w diligently|strong="H3966"\w*, \w lest|strong="H6435"\w* \w you|strong="H3605"\w* \w forget|strong="H7911"\w* \w the|strong="H3605"\w* \w things|strong="H1697"\w* \w which|strong="H1697"\w* \w your|strong="H3605"\w* \w eyes|strong="H5869"\w* \w saw|strong="H7200"\w*, \w and|strong="H1121"\w* \w lest|strong="H6435"\w* \w they|strong="H3117"\w* \w depart|strong="H5493"\w* \w from|strong="H5493"\w* \w your|strong="H3605"\w* \w heart|strong="H3824"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w your|strong="H3605"\w* \w life|strong="H5315"\w*; \w but|strong="H7535"\w* \w make|strong="H3045"\w* \w them|strong="H7200"\w* \w known|strong="H3045"\w* \w to|strong="H8104"\w* \w your|strong="H3605"\w* \w children|strong="H1121"\w* \w and|strong="H1121"\w* \w your|strong="H3605"\w* \w children|strong="H1121"\w*’s \w children|strong="H1121"\w*— +\v 10 \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H5971"\w* \w you|strong="H6440"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w in|strong="H5921"\w* \w Horeb|strong="H2722"\w*, \w when|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w me|strong="H6440"\w*, “\w Assemble|strong="H6950"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w to|strong="H3068"\w* \w me|strong="H6440"\w*, \w and|strong="H1121"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w make|strong="H8085"\w* \w them|strong="H1992"\w* \w hear|strong="H8085"\w* \w my|strong="H8085"\w* \w words|strong="H1697"\w*, \w that|strong="H5971"\w* \w they|strong="H1992"\w* \w may|strong="H3068"\w* \w learn|strong="H3925"\w* \w to|strong="H3068"\w* \w fear|strong="H3372"\w* \w me|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w that|strong="H5971"\w* \w they|strong="H1992"\w* \w live|strong="H2416"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth, \w and|strong="H1121"\w* \w that|strong="H5971"\w* \w they|strong="H1992"\w* \w may|strong="H3068"\w* \w teach|strong="H3925"\w* \w their|strong="H3605"\w* \w children|strong="H1121"\w*.” +\v 11 \w You|strong="H5704"\w* \w came|strong="H7126"\w* \w near|strong="H7126"\w* \w and|strong="H8064"\w* \w stood|strong="H5975"\w* \w under|strong="H8478"\w* \w the|strong="H5704"\w* \w mountain|strong="H2022"\w*. \w The|strong="H5704"\w* \w mountain|strong="H2022"\w* \w burned|strong="H1197"\w* \w with|strong="H1197"\w* fire \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w heart|strong="H3820"\w* \w of|strong="H2022"\w* \w the|strong="H5704"\w* \w sky|strong="H8064"\w*, \w with|strong="H1197"\w* \w darkness|strong="H2822"\w*, \w cloud|strong="H6051"\w*, \w and|strong="H8064"\w* \w thick|strong="H6205"\w* \w darkness|strong="H2822"\w*. +\v 12 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H8432"\w* \w out|strong="H7200"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* fire: \w you|strong="H8432"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w words|strong="H1697"\w*, \w but|strong="H7200"\w* \w you|strong="H8432"\w* \w saw|strong="H7200"\w* \w no|strong="H7200"\w* \w form|strong="H8544"\w*; \w you|strong="H8432"\w* \w only|strong="H2108"\w* \w heard|strong="H8085"\w* \w a|strong="H3068"\w* \w voice|strong="H6963"\w*. +\v 13 \w He|strong="H6213"\w* \w declared|strong="H5046"\w* \w to|strong="H6213"\w* \w you|strong="H6680"\w* \w his|strong="H5921"\w* \w covenant|strong="H1285"\w*, \w which|strong="H1697"\w* \w he|strong="H6213"\w* \w commanded|strong="H6680"\w* \w you|strong="H6680"\w* \w to|strong="H6213"\w* \w perform|strong="H6213"\w*, \w even|strong="H6213"\w* \w the|strong="H5921"\w* \w ten|strong="H6235"\w* \w commandments|strong="H1697"\w*. \w He|strong="H6213"\w* \w wrote|strong="H3789"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w two|strong="H8147"\w* stone \w tablets|strong="H3871"\w*. +\v 14 \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w me|strong="H6213"\w* \w at|strong="H3068"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w* \w to|strong="H3068"\w* \w teach|strong="H3925"\w* \w you|strong="H6680"\w* \w statutes|strong="H2706"\w* \w and|strong="H3068"\w* \w ordinances|strong="H4941"\w*, \w that|strong="H1931"\w* \w you|strong="H6680"\w* \w might|strong="H3068"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w* \w in|strong="H3068"\w* \w the|strong="H6213"\w* land \w where|strong="H8033"\w* \w you|strong="H6680"\w* \w go|strong="H5674"\w* \w over|strong="H5674"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w* \w it|strong="H1931"\w*. +\v 15 \w Be|strong="H3808"\w* \w very|strong="H3966"\w* \w careful|strong="H8104"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w saw|strong="H7200"\w* \w no|strong="H3808"\w* kind \w of|strong="H3068"\w* \w form|strong="H8544"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w* \w in|strong="H3068"\w* \w Horeb|strong="H2722"\w* \w out|strong="H7200"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* fire, +\v 16 \w lest|strong="H6435"\w* \w you|strong="H3605"\w* \w corrupt|strong="H7843"\w* \w yourselves|strong="H7843"\w*, \w and|strong="H6213"\w* \w make|strong="H6213"\w* \w yourself|strong="H6213"\w* \w a|strong="H3068"\w* \w carved|strong="H6213"\w* \w image|strong="H6459"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w form|strong="H8544"\w* \w of|strong="H3605"\w* \w any|strong="H3605"\w* \w figure|strong="H5566"\w*, \w the|strong="H3605"\w* \w likeness|strong="H8403"\w* \w of|strong="H3605"\w* \w male|strong="H2145"\w* \w or|strong="H6435"\w* \w female|strong="H5347"\w*, +\v 17 \w the|strong="H3605"\w* \w likeness|strong="H8403"\w* \w of|strong="H3605"\w* \w any|strong="H3605"\w* animal \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w on|strong="H3605"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*, \w the|strong="H3605"\w* \w likeness|strong="H8403"\w* \w of|strong="H3605"\w* \w any|strong="H3605"\w* \w winged|strong="H3671"\w* \w bird|strong="H6833"\w* \w that|strong="H3605"\w* \w flies|strong="H5774"\w* \w in|strong="H8064"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, +\v 18 \w the|strong="H3605"\w* \w likeness|strong="H8403"\w* \w of|strong="H4325"\w* \w anything|strong="H3605"\w* \w that|strong="H3605"\w* \w creeps|strong="H7430"\w* \w on|strong="H8478"\w* \w the|strong="H3605"\w* ground, \w the|strong="H3605"\w* \w likeness|strong="H8403"\w* \w of|strong="H4325"\w* \w any|strong="H3605"\w* \w fish|strong="H1710"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w in|strong="H8478"\w* \w the|strong="H3605"\w* \w water|strong="H4325"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* earth; +\v 19 \w and|strong="H3068"\w* \w lest|strong="H6435"\w* \w you|strong="H3605"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w and|strong="H3068"\w* \w when|strong="H7200"\w* \w you|strong="H3605"\w* \w see|strong="H7200"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w moon|strong="H3394"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w stars|strong="H3556"\w*, \w even|strong="H5869"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w you|strong="H3605"\w* \w are|strong="H5971"\w* \w drawn|strong="H5080"\w* \w away|strong="H5375"\w* \w and|strong="H3068"\w* \w worship|strong="H7812"\w* \w them|strong="H7200"\w*, \w and|strong="H3068"\w* \w serve|strong="H5647"\w* \w them|strong="H7200"\w*, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w allotted|strong="H2505"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w sky|strong="H8064"\w*. +\v 20 \w But|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w taken|strong="H3947"\w* \w you|strong="H3117"\w*, \w and|strong="H3068"\w* \w brought|strong="H3318"\w* \w you|strong="H3117"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H3947"\w* \w iron|strong="H1270"\w* \w furnace|strong="H3564"\w*, \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w to|strong="H3318"\w* \w be|strong="H1961"\w* \w to|strong="H3318"\w* \w him|strong="H3947"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w of|strong="H3068"\w* \w inheritance|strong="H5159"\w*, \w as|strong="H3117"\w* \w it|strong="H1961"\w* \w is|strong="H3068"\w* \w today|strong="H3117"\w*. +\v 21 Furthermore \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w angry|strong="H5674"\w* \w with|strong="H3068"\w* \w me|strong="H5414"\w* \w for|strong="H5921"\w* \w your|strong="H3068"\w* \w sakes|strong="H5921"\w*, \w and|strong="H3068"\w* \w swore|strong="H7650"\w* \w that|strong="H3068"\w* \w I|strong="H5414"\w* \w should|strong="H3068"\w* \w not|strong="H1115"\w* \w go|strong="H5674"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w*, \w and|strong="H3068"\w* \w that|strong="H3068"\w* \w I|strong="H5414"\w* \w should|strong="H3068"\w* \w not|strong="H1115"\w* \w go|strong="H5674"\w* \w in|strong="H5921"\w* \w to|strong="H3068"\w* \w that|strong="H3068"\w* \w good|strong="H2896"\w* \w land|strong="H5159"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H5414"\w* \w for|strong="H5921"\w* \w an|strong="H5414"\w* \w inheritance|strong="H5159"\w*; +\v 22 \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w must|strong="H4191"\w* \w die|strong="H4191"\w* \w in|strong="H4191"\w* \w this|strong="H2063"\w* land. \w I|strong="H3588"\w* \w must|strong="H4191"\w* \w not|strong="H3588"\w* \w go|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H3588"\w* \w Jordan|strong="H3383"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H2063"\w* \w go|strong="H5674"\w* \w over|strong="H5674"\w* \w and|strong="H2896"\w* \w possess|strong="H3423"\w* \w that|strong="H3588"\w* \w good|strong="H2896"\w* land. +\v 23 \w Be|strong="H3068"\w* \w careful|strong="H8104"\w*, \w lest|strong="H6435"\w* \w you|strong="H6680"\w* \w forget|strong="H7911"\w* \w the|strong="H3605"\w* \w covenant|strong="H1285"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w with|strong="H5973"\w* \w you|strong="H6680"\w*, \w and|strong="H3068"\w* \w make|strong="H6213"\w* \w yourselves|strong="H3605"\w* \w a|strong="H3068"\w* \w carved|strong="H6213"\w* \w image|strong="H6459"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w form|strong="H8544"\w* \w of|strong="H3068"\w* \w anything|strong="H3605"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w forbidden|strong="H6680"\w* \w you|strong="H6680"\w*. +\v 24 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* devouring fire, \w a|strong="H3068"\w* \w jealous|strong="H7067"\w* \w God|strong="H3068"\w*. +\v 25 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w father|strong="H3205"\w* \w children|strong="H1121"\w* \w and|strong="H1121"\w* \w children|strong="H1121"\w*’s \w children|strong="H1121"\w*, \w and|strong="H1121"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w been|strong="H3605"\w* \w long|strong="H3605"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* land, \w and|strong="H1121"\w* \w then|strong="H6213"\w* \w corrupt|strong="H7843"\w* \w yourselves|strong="H5869"\w*, \w and|strong="H1121"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w carved|strong="H6213"\w* \w image|strong="H6459"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w form|strong="H8544"\w* \w of|strong="H1121"\w* \w anything|strong="H3605"\w*, \w and|strong="H1121"\w* \w do|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w sight|strong="H5869"\w* \w to|strong="H3068"\w* \w provoke|strong="H3707"\w* \w him|strong="H3205"\w* \w to|strong="H3068"\w* \w anger|strong="H3707"\w*, +\v 26 \w I|strong="H3588"\w* \w call|strong="H5749"\w* \w heaven|strong="H8064"\w* \w and|strong="H3117"\w* \w earth|strong="H8064"\w* \w to|strong="H5921"\w* \w witness|strong="H5749"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w* \w today|strong="H3117"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H8064"\w* \w soon|strong="H4118"\w* \w utterly|strong="H8045"\w* \w perish|strong="H5674"\w* \w from|strong="H5921"\w* \w off|strong="H5921"\w* \w the|strong="H5921"\w* \w land|strong="H8064"\w* \w which|strong="H8033"\w* \w you|strong="H3588"\w* \w go|strong="H5674"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w* \w to|strong="H5921"\w* \w possess|strong="H3423"\w* \w it|strong="H5921"\w*. \w You|strong="H3588"\w* \w will|strong="H8064"\w* \w not|strong="H3808"\w* prolong \w your|strong="H5921"\w* \w days|strong="H3117"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*, \w but|strong="H3588"\w* \w will|strong="H8064"\w* \w utterly|strong="H8045"\w* \w be|strong="H3808"\w* \w destroyed|strong="H8045"\w*. +\v 27 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w scatter|strong="H6327"\w* \w you|strong="H5971"\w* \w among|strong="H5971"\w* \w the|strong="H3068"\w* \w peoples|strong="H5971"\w*, \w and|strong="H3068"\w* \w you|strong="H5971"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w left|strong="H7604"\w* \w few|strong="H4557"\w* \w in|strong="H3068"\w* \w number|strong="H4557"\w* \w among|strong="H5971"\w* \w the|strong="H3068"\w* \w nations|strong="H1471"\w* \w where|strong="H8033"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w lead|strong="H5090"\w* \w you|strong="H5971"\w* \w away|strong="H5090"\w*. +\v 28 \w There|strong="H8033"\w* \w you|strong="H3808"\w* \w will|strong="H3027"\w* \w serve|strong="H5647"\w* gods, \w the|strong="H8085"\w* \w work|strong="H4639"\w* \w of|strong="H3027"\w* men’s \w hands|strong="H3027"\w*, \w wood|strong="H6086"\w* \w and|strong="H3027"\w* stone, \w which|strong="H8033"\w* \w neither|strong="H3808"\w* \w see|strong="H7200"\w*, \w nor|strong="H3808"\w* \w hear|strong="H8085"\w*, \w nor|strong="H3808"\w* eat, \w nor|strong="H3808"\w* \w smell|strong="H7306"\w*. +\v 29 \w But|strong="H3588"\w* \w from|strong="H5315"\w* \w there|strong="H8033"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w seek|strong="H1245"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w find|strong="H4672"\w* \w him|strong="H4672"\w* \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w search|strong="H1875"\w* \w after|strong="H3588"\w* \w him|strong="H4672"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w*. +\v 30 \w When|strong="H3117"\w* \w you|strong="H3605"\w* \w are|strong="H3117"\w* \w in|strong="H3068"\w* oppression, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w these|strong="H8085"\w* \w things|strong="H1697"\w* \w have|strong="H3068"\w* \w come|strong="H4672"\w* \w on|strong="H3117"\w* \w you|strong="H3605"\w*, \w in|strong="H3068"\w* \w the|strong="H3605"\w* latter \w days|strong="H3117"\w* \w you|strong="H3605"\w* \w shall|strong="H3068"\w* \w return|strong="H7725"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w and|strong="H3068"\w* \w listen|strong="H8085"\w* \w to|strong="H5704"\w* \w his|strong="H3605"\w* \w voice|strong="H6963"\w*. +\v 31 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w merciful|strong="H7349"\w* \w God|strong="H3068"\w*. \w He|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w fail|strong="H7503"\w* \w you|strong="H3588"\w* \w nor|strong="H3808"\w* \w destroy|strong="H7843"\w* \w you|strong="H3588"\w*, \w nor|strong="H3808"\w* \w forget|strong="H7911"\w* \w the|strong="H3588"\w* \w covenant|strong="H1285"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* fathers \w which|strong="H3068"\w* \w he|strong="H3588"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* \w them|strong="H7843"\w*. +\v 32 \w For|strong="H3588"\w* \w ask|strong="H7592"\w* \w now|strong="H4994"\w* \w of|strong="H3117"\w* \w the|strong="H6440"\w* \w days|strong="H3117"\w* \w that|strong="H3588"\w* \w are|strong="H3117"\w* \w past|strong="H7223"\w*, \w which|strong="H1697"\w* \w were|strong="H1961"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*, \w since|strong="H3588"\w* \w the|strong="H6440"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w God|strong="H8064"\w* \w created|strong="H1254"\w* \w man|strong="H1419"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w earth|strong="H8064"\w*, \w and|strong="H3117"\w* \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w one|strong="H2088"\w* \w end|strong="H7097"\w* \w of|strong="H3117"\w* \w the|strong="H6440"\w* \w sky|strong="H8064"\w* \w to|strong="H5704"\w* \w the|strong="H6440"\w* \w other|strong="H2088"\w*, \w whether|strong="H4480"\w* \w there|strong="H1961"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w anything|strong="H1697"\w* \w as|strong="H5704"\w* \w great|strong="H1419"\w* \w as|strong="H5704"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w is|strong="H2088"\w*, \w or|strong="H5704"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w heard|strong="H8085"\w* \w like|strong="H3644"\w* \w it|strong="H5921"\w*? +\v 33 \w Did|strong="H5971"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* ever \w hear|strong="H8085"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* God \w speaking|strong="H1696"\w* \w out|strong="H8432"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w middle|strong="H8432"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* fire, \w as|strong="H5971"\w* \w you|strong="H8432"\w* \w have|strong="H5971"\w* \w heard|strong="H8085"\w*, \w and|strong="H5971"\w* \w live|strong="H2421"\w*? +\v 34 \w Or|strong="H1471"\w* \w has|strong="H3068"\w* \w God|strong="H3068"\w* \w tried|strong="H5254"\w* \w to|strong="H3068"\w* \w go|strong="H3068"\w* \w and|strong="H3068"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w for|strong="H6213"\w* \w himself|strong="H3027"\w* \w from|strong="H3027"\w* \w among|strong="H7130"\w* another \w nation|strong="H1471"\w*, \w by|strong="H3027"\w* \w trials|strong="H4531"\w*, \w by|strong="H3027"\w* signs, \w by|strong="H3027"\w* \w wonders|strong="H4159"\w*, \w by|strong="H3027"\w* \w war|strong="H4421"\w*, \w by|strong="H3027"\w* \w a|strong="H3068"\w* \w mighty|strong="H2389"\w* \w hand|strong="H3027"\w*, \w by|strong="H3027"\w* \w an|strong="H6213"\w* \w outstretched|strong="H5186"\w* \w arm|strong="H2220"\w*, \w and|strong="H3068"\w* \w by|strong="H3027"\w* \w great|strong="H1419"\w* \w terrors|strong="H4172"\w*, \w according|strong="H3027"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w did|strong="H6213"\w* \w for|strong="H6213"\w* \w you|strong="H3605"\w* \w in|strong="H3068"\w* \w Egypt|strong="H4714"\w* \w before|strong="H5869"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w*? +\v 35 \w It|strong="H1931"\w* \w was|strong="H3068"\w* \w shown|strong="H7200"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w* \w so|strong="H3588"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w might|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w God|strong="H3068"\w*. \w There|strong="H3045"\w* \w is|strong="H3068"\w* \w no|strong="H7200"\w* \w one|strong="H1931"\w* \w else|strong="H5750"\w* \w besides|strong="H5750"\w* \w him|strong="H7200"\w*. +\v 36 \w Out|strong="H4480"\w* \w of|strong="H1697"\w* \w heaven|strong="H8064"\w* \w he|strong="H4480"\w* \w made|strong="H8085"\w* \w you|strong="H5921"\w* \w to|strong="H5921"\w* \w hear|strong="H8085"\w* \w his|strong="H8085"\w* \w voice|strong="H6963"\w*, \w that|strong="H7200"\w* \w he|strong="H4480"\w* might \w instruct|strong="H3256"\w* \w you|strong="H5921"\w*. \w On|strong="H5921"\w* \w earth|strong="H8064"\w* \w he|strong="H4480"\w* \w made|strong="H8085"\w* \w you|strong="H5921"\w* \w to|strong="H5921"\w* \w see|strong="H7200"\w* \w his|strong="H8085"\w* \w great|strong="H1419"\w* fire; \w and|strong="H8064"\w* \w you|strong="H5921"\w* \w heard|strong="H8085"\w* \w his|strong="H8085"\w* \w words|strong="H1697"\w* \w out|strong="H4480"\w* \w of|strong="H1697"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H1697"\w* \w the|strong="H5921"\w* fire. +\v 37 \w Because|strong="H3588"\w* \w he|strong="H3588"\w* loved \w your|strong="H6440"\w* fathers, \w therefore|strong="H3588"\w* \w he|strong="H3588"\w* chose \w their|strong="H6440"\w* \w offspring|strong="H2233"\w* \w after|strong="H2233"\w* \w them|strong="H6440"\w*, \w and|strong="H1419"\w* \w brought|strong="H3318"\w* \w you|strong="H3588"\w* \w out|strong="H3318"\w* \w with|strong="H6440"\w* \w his|strong="H6440"\w* \w presence|strong="H6440"\w*, \w with|strong="H6440"\w* \w his|strong="H6440"\w* \w great|strong="H1419"\w* \w power|strong="H3581"\w*, \w out|strong="H3318"\w* \w of|strong="H6440"\w* \w Egypt|strong="H4714"\w*; +\v 38 \w to|strong="H5414"\w* \w drive|strong="H3423"\w* \w out|strong="H3423"\w* \w nations|strong="H1471"\w* \w from|strong="H4480"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w* \w greater|strong="H1419"\w* \w and|strong="H3117"\w* \w mightier|strong="H6099"\w* \w than|strong="H4480"\w* \w you|strong="H5414"\w*, \w to|strong="H5414"\w* \w bring|strong="H5414"\w* \w you|strong="H5414"\w* \w in|strong="H3117"\w*, \w to|strong="H5414"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w their|strong="H5414"\w* \w land|strong="H5159"\w* \w for|strong="H6440"\w* \w an|strong="H5414"\w* \w inheritance|strong="H5159"\w*, \w as|strong="H3117"\w* \w it|strong="H5414"\w* \w is|strong="H2088"\w* \w today|strong="H3117"\w*. +\v 39 \w Know|strong="H3045"\w* \w therefore|strong="H5921"\w* \w today|strong="H3117"\w*, \w and|strong="H3068"\w* \w take|strong="H7725"\w* \w it|strong="H1931"\w* \w to|strong="H7725"\w* \w heart|strong="H3824"\w*, \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w himself|strong="H1931"\w* \w is|strong="H3068"\w* \w God|strong="H3068"\w* \w in|strong="H5921"\w* \w heaven|strong="H8064"\w* \w above|strong="H4605"\w* \w and|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w earth|strong="H8064"\w* \w beneath|strong="H8478"\w*. \w There|strong="H3117"\w* \w is|strong="H3068"\w* \w no|strong="H3045"\w* \w one|strong="H1931"\w* \w else|strong="H5750"\w*. +\v 40 \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w keep|strong="H8104"\w* \w his|strong="H3605"\w* \w statutes|strong="H2706"\w* \w and|strong="H1121"\w* \w his|strong="H3605"\w* \w commandments|strong="H4687"\w* \w which|strong="H3068"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H5414"\w* \w today|strong="H3117"\w*, \w that|strong="H3605"\w* \w it|strong="H5414"\w* \w may|strong="H3068"\w* \w go|strong="H3190"\w* \w well|strong="H3190"\w* \w with|strong="H3068"\w* \w you|strong="H5414"\w* \w and|strong="H1121"\w* \w with|strong="H3068"\w* \w your|strong="H3068"\w* \w children|strong="H1121"\w* \w after|strong="H5921"\w* \w you|strong="H5414"\w*, \w and|strong="H1121"\w* \w that|strong="H3605"\w* \w you|strong="H5414"\w* \w may|strong="H3068"\w* prolong \w your|strong="H3068"\w* \w days|strong="H3117"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H5414"\w* \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w time|strong="H3117"\w*. +\p +\v 41 \w Then|strong="H4872"\w* \w Moses|strong="H4872"\w* set apart \w three|strong="H7969"\w* \w cities|strong="H5892"\w* \w beyond|strong="H5676"\w* \w the|strong="H4872"\w* \w Jordan|strong="H3383"\w* \w toward|strong="H3383"\w* \w the|strong="H4872"\w* \w sunrise|strong="H4217"\w*, +\v 42 \w that|strong="H1931"\w* \w the|strong="H4480"\w* man \w slayer|strong="H7523"\w* \w might|strong="H7523"\w* \w flee|strong="H5127"\w* \w there|strong="H8033"\w*, \w who|strong="H1931"\w* \w kills|strong="H7523"\w* \w his|strong="H4480"\w* \w neighbor|strong="H7453"\w* \w unintentionally|strong="H1847"\w* \w and|strong="H5892"\w* didn’t \w hate|strong="H8130"\w* \w him|strong="H8130"\w* \w in|strong="H5892"\w* \w time|strong="H8543"\w* \w past|strong="H8032"\w*, \w and|strong="H5892"\w* \w that|strong="H1931"\w* \w fleeing|strong="H5127"\w* \w to|strong="H8033"\w* \w one|strong="H3808"\w* \w of|strong="H5892"\w* \w these|strong="H1931"\w* \w cities|strong="H5892"\w* \w he|strong="H1931"\w* \w might|strong="H7523"\w* \w live|strong="H2425"\w*: +\v 43 \w Bezer|strong="H1221"\w* \w in|strong="H1474"\w* \w the|strong="H1568"\w* \w wilderness|strong="H4057"\w*, \w in|strong="H1474"\w* \w the|strong="H1568"\w* \w plain|strong="H4334"\w* country, \w for|strong="H4057"\w* \w the|strong="H1568"\w* \w Reubenites|strong="H7206"\w*; \w and|strong="H1568"\w* \w Ramoth|strong="H7216"\w* \w in|strong="H1474"\w* \w Gilead|strong="H1568"\w* \w for|strong="H4057"\w* \w the|strong="H1568"\w* \w Gadites|strong="H1425"\w*; \w and|strong="H1568"\w* \w Golan|strong="H1474"\w* \w in|strong="H1474"\w* \w Bashan|strong="H1316"\w* \w for|strong="H4057"\w* \w the|strong="H1568"\w* \w Manassites|strong="H4520"\w*. +\p +\v 44 \w This|strong="H2063"\w* \w is|strong="H3478"\w* \w the|strong="H6440"\w* \w law|strong="H8451"\w* \w which|strong="H3478"\w* \w Moses|strong="H4872"\w* \w set|strong="H7760"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 45 \w These|strong="H1696"\w* \w are|strong="H1121"\w* \w the|strong="H3318"\w* \w testimonies|strong="H5713"\w*, \w and|strong="H1121"\w* \w the|strong="H3318"\w* \w statutes|strong="H2706"\w*, \w and|strong="H1121"\w* \w the|strong="H3318"\w* \w ordinances|strong="H4941"\w* \w which|strong="H3478"\w* \w Moses|strong="H4872"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3318"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w when|strong="H3318"\w* \w they|strong="H3478"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, +\v 46 \w beyond|strong="H5676"\w* \w the|strong="H5221"\w* \w Jordan|strong="H3383"\w*, \w in|strong="H3427"\w* \w the|strong="H5221"\w* \w valley|strong="H1516"\w* \w opposite|strong="H4136"\w* Beth Peor, \w in|strong="H3427"\w* \w the|strong="H5221"\w* \w land|strong="H5676"\w* \w of|strong="H1121"\w* \w Sihon|strong="H5511"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H5221"\w* Amorites, \w who|strong="H1121"\w* \w lived|strong="H3427"\w* \w at|strong="H3427"\w* \w Heshbon|strong="H2809"\w*, whom \w Moses|strong="H4872"\w* \w and|strong="H1121"\w* \w the|strong="H5221"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w struck|strong="H5221"\w* \w when|strong="H3318"\w* \w they|strong="H3478"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*. +\v 47 \w They|strong="H4428"\w* \w took|strong="H3423"\w* \w possession|strong="H3423"\w* \w of|strong="H4428"\w* \w his|strong="H3423"\w* \w land|strong="H5676"\w* \w and|strong="H4428"\w* \w the|strong="H3423"\w* \w land|strong="H5676"\w* \w of|strong="H4428"\w* \w Og|strong="H5747"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Bashan|strong="H1316"\w*, \w the|strong="H3423"\w* \w two|strong="H8147"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3423"\w* Amorites, \w who|strong="H4428"\w* \w were|strong="H4428"\w* \w beyond|strong="H5676"\w* \w the|strong="H3423"\w* \w Jordan|strong="H3383"\w* \w toward|strong="H3383"\w* \w the|strong="H3423"\w* \w sunrise|strong="H4217"\w*; +\v 48 \w from|strong="H5921"\w* \w Aroer|strong="H6177"\w*, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w edge|strong="H8193"\w* \w of|strong="H2022"\w* \w the|strong="H5921"\w* \w valley|strong="H5158"\w* \w of|strong="H2022"\w* \w the|strong="H5921"\w* Arnon, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Mount|strong="H2022"\w* \w Siyon|strong="H7865"\w* (\w also|strong="H1931"\w* called \w Hermon|strong="H2768"\w*), +\v 49 \w and|strong="H3220"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Arabah|strong="H6160"\w* \w beyond|strong="H5676"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w* \w eastward|strong="H4217"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w* \w of|strong="H8478"\w* \w the|strong="H3605"\w* \w Arabah|strong="H6160"\w*, \w under|strong="H8478"\w* \w the|strong="H3605"\w* slopes \w of|strong="H8478"\w* \w Pisgah|strong="H6449"\w*. +\c 5 +\p +\v 1 \w Moses|strong="H4872"\w* \w called|strong="H7121"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w and|strong="H4872"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H6213"\w*, “\w Hear|strong="H8085"\w*, \w Israel|strong="H3478"\w*, \w the|strong="H3605"\w* \w statutes|strong="H2706"\w* \w and|strong="H4872"\w* \w the|strong="H3605"\w* \w ordinances|strong="H4941"\w* \w which|strong="H3478"\w* \w I|strong="H3117"\w* \w speak|strong="H1696"\w* \w in|strong="H3478"\w* \w your|strong="H3605"\w* ears \w today|strong="H3117"\w*, \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w may|strong="H3478"\w* \w learn|strong="H3925"\w* \w them|strong="H6213"\w*, \w and|strong="H4872"\w* \w observe|strong="H8104"\w* \w to|strong="H1696"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w*.” +\v 2 \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H5973"\w* us \w in|strong="H3068"\w* \w Horeb|strong="H2722"\w*. +\v 3 \w Yahweh|strong="H3068"\w* didn’t \w make|strong="H3772"\w* \w this|strong="H2063"\w* \w covenant|strong="H1285"\w* \w with|strong="H3068"\w* \w our|strong="H3068"\w* fathers, \w but|strong="H3588"\w* \w with|strong="H3068"\w* \w us|strong="H3588"\w*, \w even|strong="H3588"\w* \w us|strong="H3588"\w*, \w who|strong="H3605"\w* \w are|strong="H3117"\w* \w all|strong="H3605"\w* \w of|strong="H3068"\w* \w us|strong="H3588"\w* \w here|strong="H6311"\w* \w alive|strong="H2416"\w* \w today|strong="H3117"\w*. +\v 4 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w with|strong="H5973"\w* \w you|strong="H6440"\w* \w face|strong="H6440"\w* \w to|strong="H1696"\w* \w face|strong="H6440"\w* \w on|strong="H3068"\w* \w the|strong="H6440"\w* \w mountain|strong="H2022"\w* \w out|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* fire, +\v 5 (\w I|strong="H3588"\w* \w stood|strong="H5975"\w* between \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w at|strong="H3068"\w* \w that|strong="H3588"\w* \w time|strong="H6256"\w*, \w to|strong="H3068"\w* \w show|strong="H5046"\w* \w you|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w were|strong="H1697"\w* \w afraid|strong="H3372"\w* \w because|strong="H3588"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* fire, \w and|strong="H3068"\w* didn’t \w go|strong="H5927"\w* \w up|strong="H5927"\w* onto \w the|strong="H6440"\w* \w mountain|strong="H2022"\w*) \w saying|strong="H1697"\w*, +\m +\v 6 “\w I|strong="H4714"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w who|strong="H3068"\w* \w brought|strong="H3318"\w* \w you|strong="H4714"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* land \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*, \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w bondage|strong="H5650"\w*. +\p +\v 7 “\w You|strong="H6440"\w* \w shall|strong="H3808"\w* \w have|strong="H1961"\w* \w no|strong="H3808"\w* other gods \w before|strong="H6440"\w* \w me|strong="H6440"\w*. +\p +\v 8 “\w You|strong="H3605"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w carved|strong="H6213"\w* \w image|strong="H6459"\w* \w for|strong="H6213"\w* \w yourself|strong="H6213"\w*—\w any|strong="H3605"\w* \w likeness|strong="H8544"\w* \w of|strong="H4325"\w* \w what|strong="H6213"\w* \w is|strong="H3605"\w* \w in|strong="H6213"\w* \w heaven|strong="H8064"\w* \w above|strong="H4605"\w*, \w or|strong="H3808"\w* \w what|strong="H6213"\w* \w is|strong="H3605"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w* \w beneath|strong="H8478"\w*, \w or|strong="H3808"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w water|strong="H4325"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*. +\v 9 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w bow|strong="H7812"\w* \w yourself|strong="H5921"\w* \w down|strong="H7812"\w* \w to|strong="H3068"\w* \w them|strong="H5921"\w*, \w nor|strong="H3808"\w* \w serve|strong="H5647"\w* \w them|strong="H5921"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w am|strong="H3068"\w* \w a|strong="H3068"\w* \w jealous|strong="H7067"\w* \w God|strong="H3068"\w*, \w visiting|strong="H6485"\w* \w the|strong="H5921"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* fathers \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w third|strong="H8029"\w* \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w fourth|strong="H7256"\w* \w generation|strong="H8029"\w* \w of|strong="H1121"\w* \w those|strong="H5921"\w* \w who|strong="H3068"\w* \w hate|strong="H8130"\w* \w me|strong="H8130"\w* +\v 10 \w and|strong="H2617"\w* \w showing|strong="H6213"\w* loving \w kindness|strong="H2617"\w* \w to|strong="H6213"\w* thousands \w of|strong="H4687"\w* \w those|strong="H6213"\w* \w who|strong="H8104"\w* \w love|strong="H2617"\w* \w me|strong="H6213"\w* \w and|strong="H2617"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w commandments|strong="H4687"\w*. +\p +\v 11 “\w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* misuse \w the|strong="H3588"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*;\f + \fr 5:11 \ft or, You shall not take the name of Yahweh your God in vain;\f* \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* hold \w him|strong="H5375"\w* \w guiltless|strong="H5352"\w* \w who|strong="H3068"\w* misuses \w his|strong="H5375"\w* \w name|strong="H8034"\w*. +\p +\v 12 “\w Observe|strong="H8104"\w* \w the|strong="H8104"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w*, \w to|strong="H3068"\w* \w keep|strong="H8104"\w* \w it|strong="H6942"\w* \w holy|strong="H6942"\w*, \w as|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w commanded|strong="H6680"\w* \w you|strong="H6680"\w*. +\v 13 \w You|strong="H3605"\w* \w shall|strong="H3117"\w* \w labor|strong="H5647"\w* \w six|strong="H8337"\w* \w days|strong="H3117"\w*, \w and|strong="H3117"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w work|strong="H4399"\w*; +\v 14 \w but|strong="H3808"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w Sabbath|strong="H7676"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w in|strong="H3068"\w* \w which|strong="H3068"\w* \w you|strong="H3605"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w do|strong="H6213"\w* \w any|strong="H3605"\w* \w work|strong="H4399"\w*—\w neither|strong="H3808"\w* \w you|strong="H3605"\w*, \w nor|strong="H3808"\w* \w your|strong="H3068"\w* \w son|strong="H1121"\w*, \w nor|strong="H3808"\w* \w your|strong="H3068"\w* \w daughter|strong="H1323"\w*, \w nor|strong="H3808"\w* \w your|strong="H3068"\w* \w male|strong="H5650"\w* \w servant|strong="H5650"\w*, \w nor|strong="H3808"\w* \w your|strong="H3068"\w* \w female|strong="H1323"\w* \w servant|strong="H5650"\w*, \w nor|strong="H3808"\w* \w your|strong="H3068"\w* \w ox|strong="H7794"\w*, \w nor|strong="H3808"\w* \w your|strong="H3068"\w* \w donkey|strong="H2543"\w*, \w nor|strong="H3808"\w* \w any|strong="H3605"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* livestock, \w nor|strong="H3808"\w* \w your|strong="H3068"\w* \w stranger|strong="H1616"\w* \w who|strong="H3605"\w* \w is|strong="H3068"\w* within \w your|strong="H3068"\w* \w gates|strong="H8179"\w*; \w that|strong="H3605"\w* \w your|strong="H3068"\w* \w male|strong="H5650"\w* \w servant|strong="H5650"\w* \w and|strong="H1121"\w* \w your|strong="H3068"\w* \w female|strong="H1323"\w* \w servant|strong="H5650"\w* \w may|strong="H3068"\w* \w rest|strong="H5117"\w* \w as|strong="H3117"\w* well \w as|strong="H3117"\w* \w you|strong="H3605"\w*. +\v 15 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w remember|strong="H2142"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w were|strong="H1961"\w* \w a|strong="H3068"\w* \w servant|strong="H5650"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w brought|strong="H3318"\w* \w you|strong="H3588"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w there|strong="H8033"\w* \w by|strong="H3027"\w* \w a|strong="H3068"\w* \w mighty|strong="H2389"\w* \w hand|strong="H3027"\w* \w and|strong="H3068"\w* \w by|strong="H3027"\w* \w an|strong="H6213"\w* \w outstretched|strong="H5186"\w* \w arm|strong="H2220"\w*. \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w commanded|strong="H6680"\w* \w you|strong="H3588"\w* \w to|strong="H3318"\w* \w keep|strong="H6213"\w* \w the|strong="H5921"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w*. +\p +\v 16 “\w Honor|strong="H3513"\w* \w your|strong="H3068"\w* father \w and|strong="H3068"\w* \w your|strong="H3068"\w* mother, \w as|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w commanded|strong="H6680"\w* \w you|strong="H5414"\w*, \w that|strong="H3117"\w* \w your|strong="H3068"\w* \w days|strong="H3117"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w long|strong="H3117"\w* \w and|strong="H3068"\w* \w that|strong="H3117"\w* \w it|strong="H5414"\w* \w may|strong="H3068"\w* \w go|strong="H3190"\w* \w well|strong="H3190"\w* \w with|strong="H3068"\w* \w you|strong="H5414"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H5414"\w*. +\p +\v 17 “\w You|strong="H3808"\w* \w shall|strong="H7523"\w* \w not|strong="H3808"\w* \w murder|strong="H7523"\w*. +\p +\v 18 “\w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w commit|strong="H5003"\w* \w adultery|strong="H5003"\w*. +\p +\v 19 “\w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w steal|strong="H1589"\w*. +\p +\v 20 “\w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w give|strong="H6030"\w* \w false|strong="H7723"\w* \w testimony|strong="H5707"\w* \w against|strong="H7453"\w* \w your|strong="H3808"\w* \w neighbor|strong="H7453"\w*. +\p +\v 21 “\w You|strong="H3605"\w* \w shall|strong="H1004"\w* \w not|strong="H3808"\w* \w covet|strong="H2530"\w* \w your|strong="H3605"\w* \w neighbor|strong="H7453"\w*’s wife. \w Neither|strong="H3808"\w* \w shall|strong="H1004"\w* \w you|strong="H3605"\w* \w desire|strong="H2530"\w* \w your|strong="H3605"\w* \w neighbor|strong="H7453"\w*’s \w house|strong="H1004"\w*, \w his|strong="H3605"\w* \w field|strong="H7704"\w*, \w or|strong="H3808"\w* \w his|strong="H3605"\w* \w male|strong="H5650"\w* \w servant|strong="H5650"\w*, \w or|strong="H3808"\w* \w his|strong="H3605"\w* female \w servant|strong="H5650"\w*, \w his|strong="H3605"\w* \w ox|strong="H7794"\w*, \w or|strong="H3808"\w* \w his|strong="H3605"\w* \w donkey|strong="H2543"\w*, \w or|strong="H3808"\w* \w anything|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w your|strong="H3605"\w* \w neighbor|strong="H7453"\w*’s.” +\p +\v 22 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w assembly|strong="H6951"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w mountain|strong="H2022"\w* \w out|strong="H5414"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* fire, \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w cloud|strong="H6051"\w*, \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w thick|strong="H6205"\w* \w darkness|strong="H6205"\w*, \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w voice|strong="H6963"\w*. \w He|strong="H3068"\w* \w added|strong="H3254"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w*. \w He|strong="H3068"\w* \w wrote|strong="H3789"\w* \w them|strong="H5414"\w* \w on|strong="H5921"\w* \w two|strong="H8147"\w* stone \w tablets|strong="H3871"\w*, \w and|strong="H3068"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H1696"\w* \w me|strong="H5414"\w*. +\v 23 \w When|strong="H1961"\w* \w you|strong="H3605"\w* \w heard|strong="H8085"\w* \w the|strong="H3605"\w* \w voice|strong="H6963"\w* \w out|strong="H8432"\w* \w of|strong="H7626"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H7626"\w* \w the|strong="H3605"\w* \w darkness|strong="H2822"\w*, \w while|strong="H1961"\w* \w the|strong="H3605"\w* \w mountain|strong="H2022"\w* \w was|strong="H1961"\w* \w burning|strong="H1197"\w* \w with|strong="H1197"\w* fire, \w you|strong="H3605"\w* \w came|strong="H1961"\w* \w near|strong="H7126"\w* \w to|strong="H1961"\w* \w me|strong="H6963"\w*, even \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w heads|strong="H7218"\w* \w of|strong="H7626"\w* \w your|strong="H3605"\w* \w tribes|strong="H7626"\w*, \w and|strong="H6963"\w* \w your|strong="H3605"\w* \w elders|strong="H2205"\w*; +\v 24 \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w said|strong="H1696"\w*, “\w Behold|strong="H2005"\w*, \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w shown|strong="H7200"\w* \w us|strong="H7200"\w* \w his|strong="H3068"\w* \w glory|strong="H3519"\w* \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w greatness|strong="H1433"\w*, \w and|strong="H3068"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w his|strong="H3068"\w* \w voice|strong="H6963"\w* \w out|strong="H7200"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* fire. \w We|strong="H3588"\w* \w have|strong="H3068"\w* \w seen|strong="H7200"\w* \w today|strong="H3117"\w* \w that|strong="H3588"\w* \w God|strong="H3068"\w* \w does|strong="H3068"\w* \w speak|strong="H1696"\w* \w with|strong="H3068"\w* \w man|strong="H2088"\w*, \w and|strong="H3068"\w* \w he|strong="H3588"\w* \w lives|strong="H2425"\w*. +\v 25 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w why|strong="H4100"\w* \w should|strong="H3068"\w* \w we|strong="H3068"\w* \w die|strong="H4191"\w*? \w For|strong="H3588"\w* \w this|strong="H2063"\w* \w great|strong="H1419"\w* fire \w will|strong="H3068"\w* consume \w us|strong="H3588"\w*. \w If|strong="H3588"\w* \w we|strong="H3068"\w* \w hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w* \w any|strong="H5750"\w* \w more|strong="H3254"\w*, \w then|strong="H6258"\w* \w we|strong="H3068"\w* \w shall|strong="H3068"\w* \w die|strong="H4191"\w*. +\v 26 \w For|strong="H3588"\w* \w who|strong="H4310"\w* \w is|strong="H4310"\w* \w there|strong="H3605"\w* \w of|strong="H6963"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w* \w who|strong="H4310"\w* \w has|strong="H4310"\w* \w heard|strong="H8085"\w* \w the|strong="H3605"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H3605"\w* \w living|strong="H2416"\w* \w God|strong="H4310"\w* \w speaking|strong="H1696"\w* \w out|strong="H8432"\w* \w of|strong="H6963"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H6963"\w* \w the|strong="H3605"\w* fire, \w as|strong="H3644"\w* \w we|strong="H3068"\w* \w have|strong="H3605"\w*, \w and|strong="H6963"\w* \w lived|strong="H2421"\w*? +\v 27 \w Go|strong="H7126"\w* \w near|strong="H7126"\w*, \w and|strong="H3068"\w* \w hear|strong="H8085"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w shall|strong="H3068"\w* \w say|strong="H1696"\w*, \w and|strong="H3068"\w* \w tell|strong="H1696"\w* \w us|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w tells|strong="H1696"\w* \w you|strong="H3605"\w*; \w and|strong="H3068"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w hear|strong="H8085"\w* \w it|strong="H7126"\w*, \w and|strong="H3068"\w* \w do|strong="H6213"\w* \w it|strong="H7126"\w*.” +\p +\v 28 \w Yahweh|strong="H3068"\w* \w heard|strong="H8085"\w* \w the|strong="H3605"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w words|strong="H1697"\w* \w when|strong="H8085"\w* \w you|strong="H3605"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H6963"\w*; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H6963"\w*, “\w I|strong="H1697"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w the|strong="H3605"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w which|strong="H3068"\w* \w they|strong="H3068"\w* \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3605"\w*. \w They|strong="H3068"\w* \w have|strong="H3068"\w* \w well|strong="H3190"\w* \w said|strong="H1696"\w* \w all|strong="H3605"\w* \w that|strong="H5971"\w* \w they|strong="H3068"\w* \w have|strong="H3068"\w* \w spoken|strong="H1696"\w*. +\v 29 \w Oh|strong="H4310"\w* \w that|strong="H3605"\w* \w there|strong="H1961"\w* \w were|strong="H1961"\w* \w such|strong="H2088"\w* \w a|strong="H3068"\w* \w heart|strong="H3824"\w* \w in|strong="H3117"\w* \w them|strong="H5414"\w* \w that|strong="H3605"\w* \w they|strong="H3117"\w* \w would|strong="H4310"\w* \w fear|strong="H3372"\w* \w me|strong="H5414"\w* \w and|strong="H1121"\w* \w keep|strong="H8104"\w* \w all|strong="H3605"\w* \w my|strong="H8104"\w* \w commandments|strong="H4687"\w* \w always|strong="H3605"\w*, \w that|strong="H3605"\w* \w it|strong="H5414"\w* \w might|strong="H4616"\w* \w be|strong="H1961"\w* \w well|strong="H3190"\w* \w with|strong="H3117"\w* \w them|strong="H5414"\w* \w and|strong="H1121"\w* \w with|strong="H3117"\w* \w their|strong="H3605"\w* \w children|strong="H1121"\w* \w forever|strong="H5769"\w*! +\p +\v 30 “\w Go|strong="H3212"\w* tell \w them|strong="H7725"\w*, ‘\w Return|strong="H7725"\w* \w to|strong="H7725"\w* \w your|strong="H7725"\w* tents.’ +\v 31 \w But|strong="H1696"\w* \w as|strong="H6213"\w* \w for|strong="H6213"\w* \w you|strong="H5414"\w*, \w stand|strong="H5975"\w* \w here|strong="H6311"\w* \w by|strong="H5975"\w* \w me|strong="H5414"\w*, \w and|strong="H4941"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w tell|strong="H1696"\w* \w you|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w commandments|strong="H4687"\w*, \w and|strong="H4941"\w* \w the|strong="H3605"\w* \w statutes|strong="H2706"\w*, \w and|strong="H4941"\w* \w the|strong="H3605"\w* \w ordinances|strong="H4941"\w*, \w which|strong="H3605"\w* \w you|strong="H5414"\w* \w shall|strong="H6213"\w* \w teach|strong="H3925"\w* \w them|strong="H5414"\w*, \w that|strong="H3605"\w* \w they|strong="H6213"\w* \w may|strong="H6213"\w* \w do|strong="H6213"\w* \w them|strong="H5414"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* land \w which|strong="H3605"\w* \w I|strong="H5414"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H1696"\w* \w possess|strong="H3423"\w*.” +\p +\v 32 \w You|strong="H6680"\w* \w shall|strong="H3068"\w* \w observe|strong="H8104"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w therefore|strong="H3068"\w* \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w* \w you|strong="H6680"\w*. \w You|strong="H6680"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w turn|strong="H5493"\w* \w away|strong="H5493"\w* \w to|strong="H3068"\w* \w the|strong="H6213"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w or|strong="H3808"\w* \w to|strong="H3068"\w* \w the|strong="H6213"\w* \w left|strong="H8040"\w*. +\v 33 \w You|strong="H6680"\w* \w shall|strong="H3068"\w* \w walk|strong="H3212"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w* \w you|strong="H6680"\w*, \w that|strong="H3605"\w* \w you|strong="H6680"\w* \w may|strong="H3068"\w* \w live|strong="H2421"\w* \w and|strong="H3068"\w* \w that|strong="H3605"\w* \w it|strong="H3423"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w well|strong="H2895"\w* \w with|strong="H3068"\w* \w you|strong="H6680"\w*, \w and|strong="H3068"\w* \w that|strong="H3605"\w* \w you|strong="H6680"\w* \w may|strong="H3068"\w* prolong \w your|strong="H3068"\w* \w days|strong="H3117"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* land \w which|strong="H3068"\w* \w you|strong="H6680"\w* \w shall|strong="H3068"\w* \w possess|strong="H3423"\w*. +\c 6 +\p +\v 1 Now \w these|strong="H2063"\w* \w are|strong="H3068"\w* \w the|strong="H6213"\w* \w commandments|strong="H4687"\w*, \w the|strong="H6213"\w* \w statutes|strong="H2706"\w*, \w and|strong="H3068"\w* \w the|strong="H6213"\w* \w ordinances|strong="H4941"\w*, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w commanded|strong="H6680"\w* \w to|strong="H3068"\w* \w teach|strong="H3925"\w* \w you|strong="H6680"\w*, \w that|strong="H3068"\w* \w you|strong="H6680"\w* \w might|strong="H3068"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w* \w in|strong="H3068"\w* \w the|strong="H6213"\w* land \w that|strong="H3068"\w* \w you|strong="H6680"\w* \w go|strong="H5674"\w* \w over|strong="H5674"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w*; +\v 2 \w that|strong="H3605"\w* \w you|strong="H6680"\w* \w might|strong="H3068"\w* \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w to|strong="H3068"\w* \w keep|strong="H8104"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w statutes|strong="H2708"\w* \w and|strong="H1121"\w* \w his|strong="H3605"\w* \w commandments|strong="H4687"\w*, \w which|strong="H3068"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w*—\w you|strong="H6680"\w*, \w your|strong="H3068"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w your|strong="H3068"\w* \w son|strong="H1121"\w*’s \w son|strong="H1121"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* \w life|strong="H2416"\w*; \w and|strong="H1121"\w* \w that|strong="H3605"\w* \w your|strong="H3068"\w* \w days|strong="H3117"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* prolonged. +\v 3 \w Hear|strong="H8085"\w* \w therefore|strong="H3068"\w*, \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w observe|strong="H8104"\w* \w to|strong="H1696"\w* \w do|strong="H6213"\w* \w it|strong="H6213"\w*, \w that|strong="H8085"\w* \w it|strong="H6213"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w well|strong="H3190"\w* \w with|strong="H2100"\w* \w you|strong="H6213"\w*, \w and|strong="H3478"\w* \w that|strong="H8085"\w* \w you|strong="H6213"\w* \w may|strong="H3068"\w* \w increase|strong="H7235"\w* \w mightily|strong="H3966"\w*, \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H8085"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* fathers, \w has|strong="H3068"\w* \w promised|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H6213"\w*, \w in|strong="H3478"\w* \w a|strong="H3068"\w* land \w flowing|strong="H2100"\w* \w with|strong="H2100"\w* \w milk|strong="H2461"\w* \w and|strong="H3478"\w* \w honey|strong="H1706"\w*. +\p +\v 4 Hear, \w Israel|strong="H3478"\w*: \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*. \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w one|strong="H3068"\w*. +\v 5 \w You|strong="H3605"\w* \w shall|strong="H3068"\w* love \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w*, \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w*, \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w might|strong="H3966"\w*. +\v 6 \w These|strong="H3117"\w* \w words|strong="H1697"\w*, \w which|strong="H1697"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w* \w today|strong="H3117"\w*, \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w heart|strong="H3824"\w*; +\v 7 \w and|strong="H1121"\w* \w you|strong="H1696"\w* \w shall|strong="H1121"\w* \w teach|strong="H8150"\w* \w them|strong="H1121"\w* \w diligently|strong="H8150"\w* \w to|strong="H1696"\w* \w your|strong="H6965"\w* \w children|strong="H1121"\w*, \w and|strong="H1121"\w* \w shall|strong="H1121"\w* \w talk|strong="H1696"\w* \w of|strong="H1121"\w* \w them|strong="H1121"\w* \w when|strong="H1696"\w* \w you|strong="H1696"\w* \w sit|strong="H3427"\w* \w in|strong="H3427"\w* \w your|strong="H6965"\w* \w house|strong="H1004"\w*, \w and|strong="H1121"\w* \w when|strong="H1696"\w* \w you|strong="H1696"\w* \w walk|strong="H3212"\w* \w by|strong="H1870"\w* \w the|strong="H6965"\w* \w way|strong="H1870"\w*, \w and|strong="H1121"\w* \w when|strong="H1696"\w* \w you|strong="H1696"\w* \w lie|strong="H7901"\w* \w down|strong="H7901"\w*, \w and|strong="H1121"\w* \w when|strong="H1696"\w* \w you|strong="H1696"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w*. +\v 8 \w You|strong="H5921"\w* \w shall|strong="H5869"\w* \w bind|strong="H7194"\w* \w them|strong="H5921"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* sign \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w they|strong="H5921"\w* \w shall|strong="H5869"\w* \w be|strong="H1961"\w* \w for|strong="H5921"\w* \w frontlets|strong="H2903"\w* \w between|strong="H5921"\w* \w your|strong="H5921"\w* \w eyes|strong="H5869"\w*. +\v 9 \w You|strong="H5921"\w* \w shall|strong="H1004"\w* \w write|strong="H3789"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w door|strong="H4201"\w* \w posts|strong="H4201"\w* \w of|strong="H1004"\w* \w your|strong="H5921"\w* \w house|strong="H1004"\w* \w and|strong="H1004"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w gates|strong="H8179"\w*. +\p +\v 10 \w It|strong="H5414"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w*, \w when|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w brings|strong="H5414"\w* \w you|strong="H3588"\w* \w into|strong="H1961"\w* \w the|strong="H3588"\w* land \w which|strong="H3068"\w* \w he|strong="H3588"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* fathers, \w to|strong="H3068"\w* Abraham, \w to|strong="H3068"\w* \w Isaac|strong="H3327"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w Jacob|strong="H3290"\w*, \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w you|strong="H3588"\w*, \w great|strong="H1419"\w* \w and|strong="H3068"\w* \w goodly|strong="H2896"\w* \w cities|strong="H5892"\w* \w which|strong="H3068"\w* \w you|strong="H3588"\w* didn’t \w build|strong="H1129"\w*, +\v 11 \w and|strong="H1004"\w* \w houses|strong="H1004"\w* \w full|strong="H4392"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w good|strong="H2898"\w* \w things|strong="H3605"\w* \w which|strong="H1004"\w* \w you|strong="H3605"\w* didn’t \w fill|strong="H4390"\w*, \w and|strong="H1004"\w* cisterns dug \w out|strong="H2672"\w* \w which|strong="H1004"\w* \w you|strong="H3605"\w* didn’t \w dig|strong="H2672"\w*, \w vineyards|strong="H3754"\w* \w and|strong="H1004"\w* \w olive|strong="H2132"\w* \w trees|strong="H2132"\w* \w which|strong="H1004"\w* \w you|strong="H3605"\w* didn’t \w plant|strong="H5193"\w*, \w and|strong="H1004"\w* \w you|strong="H3605"\w* \w shall|strong="H1004"\w* eat \w and|strong="H1004"\w* \w be|strong="H3808"\w* \w full|strong="H4392"\w*; +\v 12 \w then|strong="H3318"\w* \w beware|strong="H8104"\w* \w lest|strong="H6435"\w* \w you|strong="H6435"\w* \w forget|strong="H7911"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H3068"\w* \w brought|strong="H3318"\w* \w you|strong="H6435"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H8104"\w* land \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*, \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H8104"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w bondage|strong="H5650"\w*. +\v 13 \w You|strong="H5647"\w* \w shall|strong="H3068"\w* \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*; \w and|strong="H3068"\w* \w you|strong="H5647"\w* \w shall|strong="H3068"\w* \w serve|strong="H5647"\w* \w him|strong="H5647"\w*, \w and|strong="H3068"\w* \w shall|strong="H3068"\w* \w swear|strong="H7650"\w* \w by|strong="H7650"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w*. +\v 14 \w You|strong="H3808"\w* \w shall|strong="H5971"\w* \w not|strong="H3808"\w* \w go|strong="H3212"\w* after other gods, \w of|strong="H5971"\w* \w the|strong="H5439"\w* gods \w of|strong="H5971"\w* \w the|strong="H5439"\w* \w peoples|strong="H5971"\w* \w who|strong="H5971"\w* \w are|strong="H5971"\w* \w around|strong="H5439"\w* \w you|strong="H3808"\w*, +\v 15 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w among|strong="H7130"\w* \w you|strong="H3588"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w jealous|strong="H7067"\w* \w God|strong="H3068"\w*, \w lest|strong="H6435"\w* \w the|strong="H6440"\w* \w anger|strong="H6440"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w be|strong="H3068"\w* \w kindled|strong="H2734"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w he|strong="H3588"\w* \w destroy|strong="H8045"\w* \w you|strong="H3588"\w* \w from|strong="H6440"\w* \w off|strong="H5921"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* earth. +\v 16 \w You|strong="H3808"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w tempt|strong="H5254"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w as|strong="H3068"\w* \w you|strong="H3808"\w* \w tempted|strong="H5254"\w* \w him|strong="H3068"\w* \w in|strong="H3068"\w* \w Massah|strong="H4532"\w*. +\v 17 \w You|strong="H6680"\w* \w shall|strong="H3068"\w* \w diligently|strong="H8104"\w* \w keep|strong="H8104"\w* \w the|strong="H8104"\w* \w commandments|strong="H4687"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w his|strong="H8104"\w* \w testimonies|strong="H5713"\w*, \w and|strong="H3068"\w* \w his|strong="H8104"\w* \w statutes|strong="H2706"\w*, \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w* \w you|strong="H6680"\w*. +\v 18 \w You|strong="H6213"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w right|strong="H3477"\w* \w and|strong="H3068"\w* \w good|strong="H2896"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w that|strong="H3068"\w* \w it|strong="H6213"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w well|strong="H3190"\w* \w with|strong="H3068"\w* \w you|strong="H6213"\w* \w and|strong="H3068"\w* \w that|strong="H3068"\w* \w you|strong="H6213"\w* \w may|strong="H3068"\w* \w go|strong="H3190"\w* \w in|strong="H3068"\w* \w and|strong="H3068"\w* \w possess|strong="H3423"\w* \w the|strong="H6213"\w* \w good|strong="H2896"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* fathers, +\v 19 \w to|strong="H1696"\w* \w thrust|strong="H1920"\w* \w out|strong="H6440"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* enemies \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w*. +\p +\v 20 \w When|strong="H3588"\w* \w your|strong="H3068"\w* \w son|strong="H1121"\w* \w asks|strong="H7592"\w* \w you|strong="H3588"\w* \w in|strong="H3068"\w* \w time|strong="H4279"\w* \w to|strong="H3068"\w* \w come|strong="H4279"\w*, saying, “\w What|strong="H4100"\w* \w do|strong="H3068"\w* \w the|strong="H3588"\w* \w testimonies|strong="H5713"\w*, \w the|strong="H3588"\w* \w statutes|strong="H2706"\w*, \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w ordinances|strong="H4941"\w*, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w* \w you|strong="H3588"\w* mean?” +\v 21 \w then|strong="H1961"\w* \w you|strong="H3027"\w* \w shall|strong="H3068"\w* tell \w your|strong="H3068"\w* \w son|strong="H1121"\w*, “We \w were|strong="H1961"\w* \w Pharaoh|strong="H6547"\w*’s \w slaves|strong="H5650"\w* \w in|strong="H3068"\w* \w Egypt|strong="H4714"\w*. \w Yahweh|strong="H3068"\w* \w brought|strong="H3318"\w* \w us|strong="H1961"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w mighty|strong="H2389"\w* \w hand|strong="H3027"\w*; +\v 22 \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w showed|strong="H5414"\w* \w great|strong="H1419"\w* \w and|strong="H3068"\w* \w awesome|strong="H1419"\w* signs \w and|strong="H3068"\w* \w wonders|strong="H4159"\w* \w on|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w on|strong="H3068"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H3068"\w* \w on|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*, \w before|strong="H5869"\w* \w our|strong="H3068"\w* \w eyes|strong="H5869"\w*; +\v 23 \w and|strong="H8033"\w* \w he|strong="H8033"\w* \w brought|strong="H3318"\w* \w us|strong="H5414"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w there|strong="H8033"\w*, \w that|strong="H4616"\w* \w he|strong="H8033"\w* \w might|strong="H4616"\w* \w bring|strong="H3318"\w* \w us|strong="H5414"\w* \w in|strong="H5414"\w*, \w to|strong="H3318"\w* \w give|strong="H5414"\w* \w us|strong="H5414"\w* \w the|strong="H5414"\w* land \w which|strong="H8033"\w* \w he|strong="H8033"\w* \w swore|strong="H7650"\w* \w to|strong="H3318"\w* \w our|strong="H5414"\w* fathers. +\v 24 \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w us|strong="H6213"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H2088"\w* \w statutes|strong="H2706"\w*, \w to|strong="H3068"\w* \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w for|strong="H6213"\w* \w our|strong="H3068"\w* \w good|strong="H2896"\w* \w always|strong="H3605"\w*, \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w might|strong="H3068"\w* \w preserve|strong="H2421"\w* \w us|strong="H6213"\w* \w alive|strong="H2421"\w*, \w as|strong="H3117"\w* \w we|strong="H3068"\w* \w are|strong="H3117"\w* \w today|strong="H3117"\w*. +\v 25 \w It|strong="H3588"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w righteousness|strong="H6666"\w* \w to|strong="H3068"\w* \w us|strong="H6213"\w*, \w if|strong="H3588"\w* \w we|strong="H3068"\w* \w observe|strong="H8104"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H2063"\w* \w commandments|strong="H4687"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w as|strong="H1961"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w* \w us|strong="H6213"\w*.” +\c 7 +\p +\v 1 \w When|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* brings \w you|strong="H3588"\w* \w into|strong="H4480"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w where|strong="H8033"\w* \w you|strong="H3588"\w* \w go|strong="H3068"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w* \w it|strong="H3588"\w*, \w and|strong="H3068"\w* casts \w out|strong="H3423"\w* \w many|strong="H7227"\w* \w nations|strong="H1471"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*—\w the|strong="H6440"\w* \w Hittite|strong="H2850"\w*, \w the|strong="H6440"\w* \w Girgashite|strong="H1622"\w*, \w the|strong="H6440"\w* Amorite, \w the|strong="H6440"\w* \w Canaanite|strong="H3669"\w*, \w the|strong="H6440"\w* \w Perizzite|strong="H6522"\w*, \w the|strong="H6440"\w* \w Hivite|strong="H2340"\w*, \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w Jebusite|strong="H2983"\w*—\w seven|strong="H7651"\w* \w nations|strong="H1471"\w* \w greater|strong="H7227"\w* \w and|strong="H3068"\w* \w mightier|strong="H6099"\w* \w than|strong="H4480"\w* \w you|strong="H3588"\w*; +\v 2 \w and|strong="H3068"\w* \w when|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w delivers|strong="H5414"\w* \w them|strong="H5414"\w* \w up|strong="H5414"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w*, \w and|strong="H3068"\w* \w you|strong="H5414"\w* \w strike|strong="H5221"\w* \w them|strong="H5414"\w*, \w then|strong="H5414"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w utterly|strong="H2763"\w* \w destroy|strong="H2763"\w* \w them|strong="H5414"\w*. \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w make|strong="H5414"\w* \w no|strong="H3808"\w* \w covenant|strong="H1285"\w* \w with|strong="H3068"\w* \w them|strong="H5414"\w*, \w nor|strong="H3808"\w* \w show|strong="H5414"\w* \w mercy|strong="H2603"\w* \w to|strong="H3068"\w* \w them|strong="H5414"\w*. +\v 3 \w You|strong="H5414"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w make|strong="H5414"\w* \w marriages|strong="H2859"\w* \w with|strong="H3947"\w* \w them|strong="H5414"\w*. \w You|strong="H5414"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w give|strong="H5414"\w* \w your|strong="H5414"\w* \w daughter|strong="H1323"\w* \w to|strong="H5414"\w* \w his|strong="H5414"\w* \w son|strong="H1121"\w*, \w nor|strong="H3808"\w* \w shall|strong="H1121"\w* \w you|strong="H5414"\w* \w take|strong="H3947"\w* \w his|strong="H5414"\w* \w daughter|strong="H1323"\w* \w for|strong="H1121"\w* \w your|strong="H5414"\w* \w son|strong="H1121"\w*. +\v 4 \w For|strong="H3588"\w* \w that|strong="H3588"\w* \w would|strong="H3068"\w* \w turn|strong="H5493"\w* \w away|strong="H5493"\w* \w your|strong="H3068"\w* \w sons|strong="H1121"\w* \w from|strong="H5493"\w* following \w me|strong="H5493"\w*, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w may|strong="H3068"\w* \w serve|strong="H5647"\w* other gods. \w So|strong="H5493"\w* \w Yahweh|strong="H3068"\w*’s anger \w would|strong="H3068"\w* \w be|strong="H3068"\w* \w kindled|strong="H2734"\w* \w against|strong="H2734"\w* \w you|strong="H3588"\w*, \w and|strong="H1121"\w* \w he|strong="H3588"\w* \w would|strong="H3068"\w* \w destroy|strong="H8045"\w* \w you|strong="H3588"\w* \w quickly|strong="H4118"\w*. +\v 5 \w But|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H6213"\w* \w deal|strong="H6213"\w* \w with|strong="H8313"\w* \w them|strong="H1992"\w* \w like|strong="H3541"\w* \w this|strong="H6213"\w*: \w you|strong="H3588"\w* \w shall|strong="H6213"\w* \w break|strong="H7665"\w* \w down|strong="H5422"\w* \w their|strong="H1992"\w* \w altars|strong="H4196"\w*, dash \w their|strong="H1992"\w* \w pillars|strong="H4676"\w* \w in|strong="H6213"\w* \w pieces|strong="H7665"\w*, \w cut|strong="H1438"\w* \w down|strong="H5422"\w* \w their|strong="H1992"\w* Asherah poles, \w and|strong="H4196"\w* \w burn|strong="H8313"\w* \w their|strong="H1992"\w* \w engraved|strong="H6456"\w* \w images|strong="H6456"\w* \w with|strong="H8313"\w* fire. +\v 6 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H5971"\w* \w a|strong="H3068"\w* \w holy|strong="H6918"\w* \w people|strong="H5971"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* chosen \w you|strong="H3588"\w* \w to|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w for|strong="H3588"\w* \w his|strong="H3605"\w* \w own|strong="H1961"\w* \w possession|strong="H5459"\w*, \w above|strong="H5921"\w* \w all|strong="H3605"\w* \w peoples|strong="H5971"\w* \w who|strong="H3605"\w* \w are|strong="H5971"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w face|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* earth. +\v 7 \w Yahweh|strong="H3068"\w* didn’t \w set|strong="H2836"\w* \w his|strong="H3605"\w* \w love|strong="H2836"\w* \w on|strong="H3068"\w* \w you|strong="H3588"\w* \w nor|strong="H3808"\w* choose \w you|strong="H3588"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w were|strong="H5971"\w* \w more|strong="H7230"\w* \w in|strong="H3068"\w* \w number|strong="H7230"\w* \w than|strong="H3808"\w* \w any|strong="H3605"\w* \w people|strong="H5971"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w were|strong="H5971"\w* \w the|strong="H3605"\w* \w fewest|strong="H4592"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w peoples|strong="H5971"\w*; +\v 8 \w but|strong="H3588"\w* \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* loves \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w because|strong="H3588"\w* \w he|strong="H3588"\w* desires \w to|strong="H3318"\w* \w keep|strong="H8104"\w* \w the|strong="H3588"\w* \w oath|strong="H7621"\w* \w which|strong="H3068"\w* \w he|strong="H3588"\w* \w swore|strong="H7650"\w* \w to|strong="H3318"\w* \w your|strong="H3068"\w* fathers, \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w brought|strong="H3318"\w* \w you|strong="H3588"\w* \w out|strong="H3318"\w* \w with|strong="H1004"\w* \w a|strong="H3068"\w* \w mighty|strong="H2389"\w* \w hand|strong="H3027"\w* \w and|strong="H3068"\w* \w redeemed|strong="H6299"\w* \w you|strong="H3588"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w bondage|strong="H5650"\w*, \w from|strong="H3318"\w* \w the|strong="H3588"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w Pharaoh|strong="H6547"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*. +\v 9 \w Know|strong="H3045"\w* \w therefore|strong="H3588"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w himself|strong="H1931"\w* \w is|strong="H3068"\w* \w God|strong="H3068"\w*, \w the|strong="H3588"\w* \w faithful|strong="H2617"\w* \w God|strong="H3068"\w*, \w who|strong="H1931"\w* \w keeps|strong="H8104"\w* \w covenant|strong="H1285"\w* \w and|strong="H3068"\w* loving \w kindness|strong="H2617"\w* \w to|strong="H3068"\w* \w a|strong="H3068"\w* thousand \w generations|strong="H1755"\w* \w with|strong="H3068"\w* \w those|strong="H1931"\w* \w who|strong="H1931"\w* \w love|strong="H2617"\w* \w him|strong="H1931"\w* \w and|strong="H3068"\w* \w keep|strong="H8104"\w* \w his|strong="H8104"\w* \w commandments|strong="H4687"\w*, +\v 10 \w and|strong="H6440"\w* \w repays|strong="H7999"\w* \w those|strong="H8130"\w* \w who|strong="H8130"\w* \w hate|strong="H8130"\w* \w him|strong="H6440"\w* \w to|strong="H6440"\w* \w their|strong="H6440"\w* \w face|strong="H6440"\w*, \w to|strong="H6440"\w* destroy \w them|strong="H6440"\w*. \w He|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* slack \w to|strong="H6440"\w* \w him|strong="H6440"\w* \w who|strong="H8130"\w* \w hates|strong="H8130"\w* \w him|strong="H6440"\w*. \w He|strong="H3808"\w* \w will|strong="H3808"\w* \w repay|strong="H7999"\w* \w him|strong="H6440"\w* \w to|strong="H6440"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w*. +\v 11 \w You|strong="H6680"\w* \w shall|strong="H3117"\w* \w therefore|strong="H6213"\w* \w keep|strong="H8104"\w* \w the|strong="H6213"\w* \w commandments|strong="H4687"\w*, \w the|strong="H6213"\w* \w statutes|strong="H2706"\w*, \w and|strong="H3117"\w* \w the|strong="H6213"\w* \w ordinances|strong="H4941"\w* \w which|strong="H3117"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w* \w today|strong="H3117"\w*, \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w*. +\v 12 \w It|strong="H6213"\w* \w shall|strong="H3068"\w* \w happen|strong="H1961"\w*, \w because|strong="H6118"\w* \w you|strong="H6213"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w these|strong="H6213"\w* \w ordinances|strong="H4941"\w* \w and|strong="H3068"\w* \w keep|strong="H8104"\w* \w and|strong="H3068"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w*, \w that|strong="H8085"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w keep|strong="H8104"\w* \w with|strong="H3068"\w* \w you|strong="H6213"\w* \w the|strong="H8085"\w* \w covenant|strong="H1285"\w* \w and|strong="H3068"\w* \w the|strong="H8085"\w* loving \w kindness|strong="H2617"\w* \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* fathers. +\v 13 \w He|strong="H5414"\w* \w will|strong="H5414"\w* love \w you|strong="H5414"\w*, \w bless|strong="H1288"\w* \w you|strong="H5414"\w*, \w and|strong="H6629"\w* \w multiply|strong="H7235"\w* \w you|strong="H5414"\w*. \w He|strong="H5414"\w* \w will|strong="H5414"\w* also \w bless|strong="H1288"\w* \w the|strong="H5921"\w* \w fruit|strong="H6529"\w* \w of|strong="H5921"\w* \w your|strong="H5414"\w* body \w and|strong="H6629"\w* \w the|strong="H5921"\w* \w fruit|strong="H6529"\w* \w of|strong="H5921"\w* \w your|strong="H5414"\w* ground, \w your|strong="H5414"\w* \w grain|strong="H1715"\w* \w and|strong="H6629"\w* \w your|strong="H5414"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w* \w and|strong="H6629"\w* \w your|strong="H5414"\w* \w oil|strong="H3323"\w*, \w the|strong="H5921"\w* \w increase|strong="H7235"\w* \w of|strong="H5921"\w* \w your|strong="H5414"\w* livestock \w and|strong="H6629"\w* \w the|strong="H5921"\w* \w young|strong="H6251"\w* \w of|strong="H5921"\w* \w your|strong="H5414"\w* \w flock|strong="H6629"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* land which \w he|strong="H5414"\w* \w swore|strong="H7650"\w* \w to|strong="H5921"\w* \w your|strong="H5414"\w* fathers \w to|strong="H5921"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w*. +\v 14 \w You|strong="H3605"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w blessed|strong="H1288"\w* \w above|strong="H1288"\w* \w all|strong="H3605"\w* \w peoples|strong="H5971"\w*. \w There|strong="H1961"\w* won’t \w be|strong="H1961"\w* \w male|strong="H6135"\w* \w or|strong="H3808"\w* female \w barren|strong="H6135"\w* \w among|strong="H5971"\w* \w you|strong="H3605"\w*, \w or|strong="H3808"\w* \w among|strong="H5971"\w* \w your|strong="H3605"\w* livestock. +\v 15 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H4480"\w* \w you|strong="H5414"\w* \w all|strong="H3605"\w* \w sickness|strong="H2483"\w*; \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w put|strong="H5414"\w* \w none|strong="H3808"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w diseases|strong="H4064"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w which|strong="H3068"\w* \w you|strong="H5414"\w* \w know|strong="H3045"\w*, \w on|strong="H7760"\w* \w you|strong="H5414"\w*, \w but|strong="H3808"\w* \w will|strong="H3068"\w* \w lay|strong="H5414"\w* \w them|strong="H5414"\w* \w on|strong="H7760"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w hate|strong="H8130"\w* \w you|strong="H5414"\w*. +\v 16 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* consume \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w whom|strong="H5971"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w shall|strong="H3068"\w* \w deliver|strong="H5414"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w*. \w Your|strong="H3068"\w* \w eye|strong="H5869"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w pity|strong="H2347"\w* \w them|strong="H5414"\w*. \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w serve|strong="H5647"\w* \w their|strong="H3605"\w* gods; \w for|strong="H3588"\w* \w that|strong="H3588"\w* \w would|strong="H3068"\w* \w be|strong="H3808"\w* \w a|strong="H3068"\w* \w snare|strong="H4170"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w*. +\v 17 \w If|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H1471"\w* say \w in|strong="H7227"\w* \w your|strong="H3588"\w* \w heart|strong="H3824"\w*, “These \w nations|strong="H1471"\w* \w are|strong="H1471"\w* \w more|strong="H4480"\w* \w than|strong="H4480"\w* \w I|strong="H3588"\w*; \w how|strong="H3588"\w* \w can|strong="H3201"\w* \w I|strong="H3588"\w* \w dispossess|strong="H3423"\w* \w them|strong="H3423"\w*?” +\v 18 \w you|strong="H3605"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w afraid|strong="H3372"\w* \w of|strong="H3068"\w* \w them|strong="H1992"\w*. \w You|strong="H3605"\w* \w shall|strong="H3068"\w* \w remember|strong="H2142"\w* \w well|strong="H2142"\w* \w what|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w did|strong="H6213"\w* \w to|strong="H3068"\w* \w Pharaoh|strong="H6547"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w Egypt|strong="H4714"\w*: +\v 19 \w the|strong="H3605"\w* \w great|strong="H1419"\w* \w trials|strong="H4531"\w* \w which|strong="H3068"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w* \w saw|strong="H7200"\w*, \w the|strong="H3605"\w* signs, \w the|strong="H3605"\w* \w wonders|strong="H4159"\w*, \w the|strong="H3605"\w* \w mighty|strong="H2389"\w* \w hand|strong="H3027"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w outstretched|strong="H5186"\w* \w arm|strong="H2220"\w*, \w by|strong="H3027"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w brought|strong="H3318"\w* \w you|strong="H6440"\w* \w out|strong="H3318"\w*. \w So|strong="H3651"\w* \w shall|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w do|strong="H6213"\w* \w to|strong="H3318"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w of|strong="H3068"\w* \w whom|strong="H6440"\w* \w you|strong="H6440"\w* \w are|strong="H5971"\w* \w afraid|strong="H3373"\w*. +\v 20 \w Moreover|strong="H1571"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w the|strong="H6440"\w* \w hornet|strong="H6880"\w* among \w them|strong="H7971"\w*, \w until|strong="H5704"\w* those \w who|strong="H3068"\w* \w are|strong="H3068"\w* \w left|strong="H7604"\w*, \w and|strong="H3068"\w* \w hide|strong="H5641"\w* \w themselves|strong="H5641"\w*, perish \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*. +\v 21 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* scared \w of|strong="H3068"\w* \w them|strong="H6440"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w is|strong="H3068"\w* \w among|strong="H7130"\w* \w you|strong="H3588"\w*, \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w and|strong="H3068"\w* \w awesome|strong="H3372"\w* \w God|strong="H3068"\w*. +\v 22 \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w cast|strong="H3068"\w* \w out|strong="H5921"\w* \w those|strong="H5921"\w* \w nations|strong="H1471"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w little|strong="H4592"\w* \w by|strong="H5921"\w* \w little|strong="H4592"\w*. \w You|strong="H6440"\w* \w may|strong="H3201"\w* \w not|strong="H3808"\w* \w consume|strong="H3615"\w* \w them|strong="H5921"\w* \w at|strong="H5921"\w* \w once|strong="H4118"\w*, \w lest|strong="H6435"\w* \w the|strong="H6440"\w* \w animals|strong="H2416"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w field|strong="H7704"\w* \w increase|strong="H7235"\w* \w on|strong="H5921"\w* \w you|strong="H6440"\w*. +\v 23 \w But|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w deliver|strong="H5414"\w* \w them|strong="H5414"\w* \w up|strong="H5414"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w confuse|strong="H2000"\w* \w them|strong="H5414"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w confusion|strong="H4103"\w*, \w until|strong="H5704"\w* \w they|strong="H3068"\w* \w are|strong="H3068"\w* \w destroyed|strong="H8045"\w*. +\v 24 \w He|strong="H5704"\w* \w will|strong="H4428"\w* \w deliver|strong="H5414"\w* \w their|strong="H5414"\w* \w kings|strong="H4428"\w* \w into|strong="H3027"\w* \w your|strong="H5414"\w* \w hand|strong="H3027"\w*, \w and|strong="H4428"\w* \w you|strong="H5414"\w* \w shall|strong="H4428"\w* \w make|strong="H5414"\w* \w their|strong="H5414"\w* \w name|strong="H8034"\w* perish \w from|strong="H6440"\w* \w under|strong="H8478"\w* \w the|strong="H6440"\w* \w sky|strong="H8064"\w*. \w No|strong="H3808"\w* \w one|strong="H3808"\w* \w will|strong="H4428"\w* \w be|strong="H3808"\w* \w able|strong="H3027"\w* \w to|strong="H5704"\w* \w stand|strong="H3320"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w* \w until|strong="H5704"\w* \w you|strong="H5414"\w* \w have|strong="H3027"\w* \w destroyed|strong="H8045"\w* \w them|strong="H5414"\w*. +\v 25 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w burn|strong="H8313"\w* \w the|strong="H5921"\w* \w engraved|strong="H6456"\w* \w images|strong="H6456"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* gods \w with|strong="H8313"\w* fire. \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w covet|strong="H2530"\w* \w the|strong="H5921"\w* \w silver|strong="H3701"\w* \w or|strong="H3808"\w* \w the|strong="H5921"\w* \w gold|strong="H2091"\w* \w that|strong="H3588"\w* \w is|strong="H3068"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, \w nor|strong="H3808"\w* \w take|strong="H3947"\w* \w it|strong="H1931"\w* \w for|strong="H3588"\w* \w yourself|strong="H5921"\w*, \w lest|strong="H6435"\w* \w you|strong="H3588"\w* \w be|strong="H3808"\w* \w snared|strong="H3369"\w* \w in|strong="H5921"\w* \w it|strong="H1931"\w*; \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w an|strong="H3947"\w* \w abomination|strong="H8441"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 26 \w You|strong="H3588"\w* \w shall|strong="H1004"\w* \w not|strong="H3808"\w* \w bring|strong="H1961"\w* \w an|strong="H1961"\w* \w abomination|strong="H8441"\w* \w into|strong="H1961"\w* \w your|strong="H3588"\w* \w house|strong="H1004"\w* \w and|strong="H1004"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w devoted|strong="H2764"\w* \w thing|strong="H2764"\w* \w like|strong="H3644"\w* \w it|strong="H1931"\w*. \w You|strong="H3588"\w* \w shall|strong="H1004"\w* \w utterly|strong="H8581"\w* \w detest|strong="H8262"\w* \w it|strong="H1931"\w*. \w You|strong="H3588"\w* \w shall|strong="H1004"\w* \w utterly|strong="H8581"\w* \w abhor|strong="H8581"\w* \w it|strong="H1931"\w*; \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w devoted|strong="H2764"\w* \w thing|strong="H2764"\w*. +\c 8 +\p +\v 1 \w You|strong="H6680"\w* \w shall|strong="H3068"\w* \w observe|strong="H8104"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w commandments|strong="H4687"\w* \w which|strong="H3068"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w* \w today|strong="H3117"\w*, \w that|strong="H3605"\w* \w you|strong="H6680"\w* \w may|strong="H3068"\w* \w live|strong="H2421"\w*, \w and|strong="H3068"\w* \w multiply|strong="H7235"\w*, \w and|strong="H3068"\w* \w go|strong="H3068"\w* \w in|strong="H3068"\w* \w and|strong="H3068"\w* \w possess|strong="H3423"\w* \w the|strong="H3605"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* fathers. +\v 2 \w You|strong="H3605"\w* \w shall|strong="H3068"\w* \w remember|strong="H2142"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w led|strong="H3212"\w* \w you|strong="H3605"\w* \w these|strong="H2088"\w* forty \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w*, \w that|strong="H3045"\w* \w he|strong="H3068"\w* \w might|strong="H3068"\w* \w humble|strong="H6031"\w* \w you|strong="H3605"\w*, \w to|strong="H3068"\w* \w test|strong="H5254"\w* \w you|strong="H3605"\w*, \w to|strong="H3068"\w* \w know|strong="H3045"\w* \w what|strong="H2088"\w* \w was|strong="H3068"\w* \w in|strong="H8141"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w*, \w whether|strong="H3045"\w* \w you|strong="H3605"\w* \w would|strong="H3068"\w* \w keep|strong="H8104"\w* \w his|strong="H3605"\w* \w commandments|strong="H4687"\w* \w or|strong="H3808"\w* \w not|strong="H3808"\w*. +\v 3 \w He|strong="H3588"\w* \w humbled|strong="H6031"\w* \w you|strong="H3588"\w*, \w allowed|strong="H3068"\w* \w you|strong="H3588"\w* \w to|strong="H3068"\w* \w be|strong="H3808"\w* \w hungry|strong="H7456"\w*, \w and|strong="H3068"\w* fed \w you|strong="H3588"\w* \w with|strong="H3068"\w* \w manna|strong="H4478"\w*, \w which|strong="H3068"\w* \w you|strong="H3588"\w* didn’t \w know|strong="H3045"\w*, \w neither|strong="H3808"\w* \w did|strong="H3068"\w* \w your|strong="H3068"\w* fathers \w know|strong="H3045"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w might|strong="H3068"\w* \w teach|strong="H3045"\w* \w you|strong="H3588"\w* \w that|strong="H3588"\w* \w man|strong="H3605"\w* \w does|strong="H3808"\w* \w not|strong="H3808"\w* \w live|strong="H2421"\w* \w by|strong="H5921"\w* \w bread|strong="H3899"\w* \w only|strong="H3588"\w*, \w but|strong="H3588"\w* \w man|strong="H3605"\w* \w lives|strong="H2421"\w* \w by|strong="H5921"\w* \w every|strong="H3605"\w* \w word|strong="H6310"\w* \w that|strong="H3588"\w* \w proceeds|strong="H4161"\w* \w out|strong="H4161"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w mouth|strong="H6310"\w*. +\v 4 \w Your|strong="H5921"\w* \w clothing|strong="H8071"\w* didn’t grow \w old|strong="H1086"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*, \w neither|strong="H3808"\w* \w did|strong="H3808"\w* \w your|strong="H5921"\w* \w foot|strong="H7272"\w* \w swell|strong="H1216"\w*, \w these|strong="H2088"\w* forty \w years|strong="H8141"\w*. +\v 5 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w consider|strong="H3045"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w that|strong="H3588"\w* \w as|strong="H3824"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w disciplines|strong="H3256"\w* \w his|strong="H3068"\w* \w son|strong="H1121"\w*, \w so|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w disciplines|strong="H3256"\w* \w you|strong="H3588"\w*. +\v 6 \w You|strong="H3372"\w* \w shall|strong="H3068"\w* \w keep|strong="H8104"\w* \w the|strong="H8104"\w* \w commandments|strong="H4687"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w to|strong="H3068"\w* \w walk|strong="H3212"\w* \w in|strong="H3068"\w* \w his|strong="H8104"\w* \w ways|strong="H1870"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w fear|strong="H3372"\w* \w him|strong="H8104"\w*. +\v 7 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w brings|strong="H3318"\w* \w you|strong="H3588"\w* \w into|strong="H3318"\w* \w a|strong="H3068"\w* \w good|strong="H2896"\w* land, \w a|strong="H3068"\w* land \w of|strong="H3068"\w* \w brooks|strong="H5158"\w* \w of|strong="H3068"\w* \w water|strong="H4325"\w*, \w of|strong="H3068"\w* \w springs|strong="H8415"\w*, \w and|strong="H3068"\w* \w underground|strong="H8415"\w* \w water|strong="H4325"\w* \w flowing|strong="H3318"\w* \w into|strong="H3318"\w* \w valleys|strong="H1237"\w* \w and|strong="H3068"\w* \w hills|strong="H2022"\w*; +\v 8 \w a|strong="H3068"\w* land \w of|strong="H1612"\w* \w wheat|strong="H2406"\w*, \w barley|strong="H8184"\w*, \w vines|strong="H1612"\w*, \w fig|strong="H8384"\w* \w trees|strong="H2132"\w*, \w and|strong="H8081"\w* \w pomegranates|strong="H7416"\w*; \w a|strong="H3068"\w* land \w of|strong="H1612"\w* \w olive|strong="H2132"\w* \w trees|strong="H2132"\w* \w and|strong="H8081"\w* \w honey|strong="H1706"\w*; +\v 9 \w a|strong="H3068"\w* land \w in|strong="H3899"\w* \w which|strong="H3899"\w* \w you|strong="H3605"\w* \w shall|strong="H3808"\w* \w eat|strong="H3899"\w* \w bread|strong="H3899"\w* \w without|strong="H3808"\w* \w scarcity|strong="H4544"\w*, \w you|strong="H3605"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w lack|strong="H2637"\w* \w anything|strong="H3605"\w* \w in|strong="H3899"\w* \w it|strong="H3808"\w*; \w a|strong="H3068"\w* land \w whose|strong="H3605"\w* stones \w are|strong="H1270"\w* \w iron|strong="H1270"\w*, \w and|strong="H3899"\w* \w out|strong="H2672"\w* \w of|strong="H3605"\w* \w whose|strong="H3605"\w* \w hills|strong="H2042"\w* \w you|strong="H3605"\w* \w may|strong="H5178"\w* \w dig|strong="H2672"\w* \w copper|strong="H5178"\w*. +\v 10 \w You|strong="H5414"\w* \w shall|strong="H3068"\w* eat \w and|strong="H3068"\w* \w be|strong="H3068"\w* \w full|strong="H7646"\w*, \w and|strong="H3068"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w bless|strong="H1288"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w good|strong="H2896"\w* land \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w*. +\p +\v 11 \w Beware|strong="H8104"\w* \w lest|strong="H6435"\w* \w you|strong="H6680"\w* \w forget|strong="H7911"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w in|strong="H3068"\w* \w not|strong="H1115"\w* \w keeping|strong="H8104"\w* \w his|strong="H8104"\w* \w commandments|strong="H4687"\w*, \w his|strong="H8104"\w* \w ordinances|strong="H4941"\w*, \w and|strong="H3068"\w* \w his|strong="H8104"\w* \w statutes|strong="H2708"\w*, \w which|strong="H3068"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w* \w today|strong="H3117"\w*; +\v 12 \w lest|strong="H6435"\w*, \w when|strong="H3427"\w* \w you|strong="H6435"\w* \w have|strong="H7646"\w* eaten \w and|strong="H1004"\w* \w are|strong="H1004"\w* \w full|strong="H7646"\w*, \w and|strong="H1004"\w* \w have|strong="H7646"\w* \w built|strong="H1129"\w* \w fine|strong="H2896"\w* \w houses|strong="H1004"\w* \w and|strong="H1004"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w them|strong="H3427"\w*; +\v 13 \w and|strong="H3701"\w* \w when|strong="H7235"\w* \w your|strong="H3605"\w* \w herds|strong="H1241"\w* \w and|strong="H3701"\w* \w your|strong="H3605"\w* \w flocks|strong="H6629"\w* \w multiply|strong="H7235"\w*, \w and|strong="H3701"\w* \w your|strong="H3605"\w* \w silver|strong="H3701"\w* \w and|strong="H3701"\w* \w your|strong="H3605"\w* \w gold|strong="H2091"\w* \w is|strong="H3701"\w* \w multiplied|strong="H7235"\w*, \w and|strong="H3701"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w have|strong="H3605"\w* \w is|strong="H3701"\w* \w multiplied|strong="H7235"\w*; +\v 14 \w then|strong="H3318"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w might|strong="H3068"\w* \w be|strong="H3068"\w* \w lifted|strong="H7311"\w* \w up|strong="H7311"\w*, \w and|strong="H3068"\w* \w you|strong="H3824"\w* \w forget|strong="H7911"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w who|strong="H3068"\w* \w brought|strong="H3318"\w* \w you|strong="H3824"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* land \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*, \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w bondage|strong="H5650"\w*; +\v 15 \w who|strong="H6697"\w* \w led|strong="H3212"\w* \w you|strong="H3372"\w* \w through|strong="H3212"\w* \w the|strong="H3318"\w* \w great|strong="H1419"\w* \w and|strong="H1419"\w* \w terrible|strong="H3372"\w* \w wilderness|strong="H4057"\w*, \w with|strong="H3318"\w* venomous \w snakes|strong="H5175"\w* \w and|strong="H1419"\w* \w scorpions|strong="H6137"\w*, \w and|strong="H1419"\w* \w thirsty|strong="H6774"\w* \w ground|strong="H6774"\w* where there \w was|strong="H4325"\w* \w no|strong="H3372"\w* \w water|strong="H4325"\w*; \w who|strong="H6697"\w* poured \w water|strong="H4325"\w* \w for|strong="H4325"\w* \w you|strong="H3372"\w* \w out|strong="H3318"\w* \w of|strong="H4325"\w* \w the|strong="H3318"\w* \w rock|strong="H6697"\w* \w of|strong="H4325"\w* \w flint|strong="H2496"\w*; +\v 16 \w who|strong="H3045"\w* fed \w you|strong="H3045"\w* \w in|strong="H3808"\w* \w the|strong="H3045"\w* \w wilderness|strong="H4057"\w* \w with|strong="H3045"\w* \w manna|strong="H4478"\w*, \w which|strong="H4057"\w* \w your|strong="H3045"\w* fathers didn’t \w know|strong="H3045"\w*, \w that|strong="H3045"\w* \w he|strong="H3808"\w* \w might|strong="H4616"\w* \w humble|strong="H6031"\w* \w you|strong="H3045"\w*, \w and|strong="H3045"\w* \w that|strong="H3045"\w* \w he|strong="H3808"\w* \w might|strong="H4616"\w* \w prove|strong="H5254"\w* \w you|strong="H3045"\w*, \w to|strong="H4616"\w* \w do|strong="H3190"\w* \w you|strong="H3045"\w* \w good|strong="H3190"\w* \w at|strong="H3808"\w* \w your|strong="H3045"\w* latter \w end|strong="H4616"\w*; +\v 17 \w and|strong="H3027"\w* lest \w you|strong="H6213"\w* say \w in|strong="H6213"\w* \w your|strong="H6213"\w* \w heart|strong="H3824"\w*, “\w My|strong="H6213"\w* \w power|strong="H3027"\w* \w and|strong="H3027"\w* \w the|strong="H6213"\w* \w might|strong="H3581"\w* \w of|strong="H3027"\w* \w my|strong="H6213"\w* \w hand|strong="H3027"\w* \w has|strong="H3027"\w* \w gotten|strong="H6213"\w* \w me|strong="H6213"\w* \w this|strong="H2088"\w* \w wealth|strong="H2428"\w*.” +\v 18 \w But|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w remember|strong="H2142"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w for|strong="H3588"\w* \w it|strong="H5414"\w* \w is|strong="H3068"\w* \w he|strong="H1931"\w* \w who|strong="H1931"\w* \w gives|strong="H5414"\w* \w you|strong="H3588"\w* \w power|strong="H3581"\w* \w to|strong="H3068"\w* \w get|strong="H6965"\w* \w wealth|strong="H2428"\w*, \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w may|strong="H3068"\w* \w establish|strong="H6965"\w* \w his|strong="H5414"\w* \w covenant|strong="H1285"\w* \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* fathers, \w as|strong="H3117"\w* \w it|strong="H5414"\w* \w is|strong="H3068"\w* \w today|strong="H3117"\w*. +\p +\v 19 \w It|strong="H3588"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w*, \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w forget|strong="H7911"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H1980"\w* \w walk|strong="H1980"\w* \w after|strong="H1961"\w* other \w gods|strong="H1980"\w*, \w and|strong="H1980"\w* \w serve|strong="H5647"\w* \w them|strong="H1961"\w* \w and|strong="H1980"\w* \w worship|strong="H7812"\w* \w them|strong="H1961"\w*, \w I|strong="H3588"\w* \w testify|strong="H5749"\w* \w against|strong="H5749"\w* \w you|strong="H3588"\w* \w today|strong="H3117"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w surely|strong="H3588"\w* perish. +\v 20 \w As|strong="H3651"\w* \w the|strong="H6440"\w* \w nations|strong="H1471"\w* \w that|strong="H8085"\w* \w Yahweh|strong="H3068"\w* \w makes|strong="H6440"\w* \w to|strong="H3068"\w* perish \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w so|strong="H3651"\w* \w you|strong="H6440"\w* \w shall|strong="H3068"\w* perish, \w because|strong="H6440"\w* \w you|strong="H6440"\w* wouldn’t \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w*. +\c 9 +\p +\v 1 \w Hear|strong="H8085"\w*, \w Israel|strong="H3478"\w*! \w You|strong="H3117"\w* \w are|strong="H3117"\w* \w to|strong="H3478"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H8085"\w* \w Jordan|strong="H3383"\w* \w today|strong="H3117"\w*, \w to|strong="H3478"\w* \w go|strong="H5674"\w* \w in|strong="H3478"\w* \w to|strong="H3478"\w* \w dispossess|strong="H3423"\w* \w nations|strong="H1471"\w* \w greater|strong="H1419"\w* \w and|strong="H3478"\w* \w mightier|strong="H6099"\w* \w than|strong="H4480"\w* yourself, \w cities|strong="H5892"\w* \w great|strong="H1419"\w* \w and|strong="H3478"\w* \w fortified|strong="H1219"\w* \w up|strong="H1219"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w sky|strong="H8064"\w*, +\v 2 \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w great|strong="H1419"\w* \w and|strong="H1121"\w* \w tall|strong="H7311"\w*, \w the|strong="H6440"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w Anakim|strong="H6062"\w*, \w whom|strong="H4310"\w* \w you|strong="H6440"\w* \w know|strong="H3045"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w whom|strong="H4310"\w* \w you|strong="H6440"\w* \w have|strong="H5971"\w* \w heard|strong="H8085"\w* say, “\w Who|strong="H4310"\w* \w can|strong="H4310"\w* \w stand|strong="H3320"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Anak|strong="H6061"\w*?” +\v 3 \w Know|strong="H3045"\w* \w therefore|strong="H3588"\w* \w today|strong="H3117"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w is|strong="H3068"\w* \w he|strong="H1931"\w* \w who|strong="H1931"\w* \w goes|strong="H6440"\w* \w over|strong="H5674"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w* \w as|strong="H3117"\w* \w a|strong="H3068"\w* devouring fire. \w He|strong="H1931"\w* \w will|strong="H3068"\w* \w destroy|strong="H8045"\w* \w them|strong="H6440"\w* \w and|strong="H3068"\w* \w he|strong="H1931"\w* \w will|strong="H3068"\w* \w bring|strong="H5674"\w* \w them|strong="H6440"\w* \w down|strong="H3665"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*. \w So|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w drive|strong="H3423"\w* \w them|strong="H6440"\w* \w out|strong="H3423"\w* \w and|strong="H3068"\w* \w make|strong="H3045"\w* \w them|strong="H6440"\w* \w perish|strong="H5674"\w* \w quickly|strong="H4118"\w*, \w as|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*. +\p +\v 4 Don’t say \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w*, after \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w thrust|strong="H1920"\w* \w them|strong="H6440"\w* \w out|strong="H3423"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, “\w For|strong="H6440"\w* \w my|strong="H3068"\w* \w righteousness|strong="H6666"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w brought|strong="H3068"\w* \w me|strong="H6440"\w* \w in|strong="H3068"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w* \w this|strong="H2063"\w* \w land|strong="H6440"\w*;” \w because|strong="H6440"\w* \w Yahweh|strong="H3068"\w* drives \w them|strong="H6440"\w* \w out|strong="H3423"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w because|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w wickedness|strong="H7564"\w* \w of|strong="H3068"\w* \w these|strong="H2063"\w* \w nations|strong="H1471"\w*. +\v 5 \w Not|strong="H3808"\w* \w for|strong="H3588"\w* \w your|strong="H3068"\w* \w righteousness|strong="H6666"\w* \w or|strong="H3808"\w* \w for|strong="H3588"\w* \w the|strong="H6440"\w* \w uprightness|strong="H3476"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w do|strong="H3068"\w* \w you|strong="H3588"\w* \w go|strong="H6965"\w* \w in|strong="H3068"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w* \w their|strong="H3068"\w* \w land|strong="H6440"\w*; \w but|strong="H3588"\w* \w for|strong="H3588"\w* \w the|strong="H6440"\w* \w wickedness|strong="H7564"\w* \w of|strong="H3068"\w* \w these|strong="H6965"\w* \w nations|strong="H1471"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w does|strong="H3808"\w* \w drive|strong="H3423"\w* \w them|strong="H6440"\w* \w out|strong="H3423"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*, \w and|strong="H6965"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w may|strong="H3068"\w* \w establish|strong="H6965"\w* \w the|strong="H6440"\w* \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* fathers, \w to|strong="H3068"\w* Abraham, \w to|strong="H3068"\w* \w Isaac|strong="H3327"\w*, \w and|strong="H6965"\w* \w to|strong="H3068"\w* \w Jacob|strong="H3290"\w*. +\v 6 \w Know|strong="H3045"\w* \w therefore|strong="H3588"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* doesn’t \w give|strong="H5414"\w* \w you|strong="H3588"\w* \w this|strong="H2063"\w* \w good|strong="H2896"\w* land \w to|strong="H3068"\w* \w possess|strong="H3423"\w* \w for|strong="H3588"\w* \w your|strong="H3068"\w* \w righteousness|strong="H6666"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H5971"\w* \w a|strong="H3068"\w* stiff-necked \w people|strong="H5971"\w*. +\v 7 \w Remember|strong="H2142"\w*, \w and|strong="H3068"\w* don’t \w forget|strong="H7911"\w*, \w how|strong="H5704"\w* \w you|strong="H3117"\w* \w provoked|strong="H7107"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w to|strong="H5704"\w* \w wrath|strong="H7107"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w wilderness|strong="H4057"\w*. \w From|strong="H4480"\w* \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w you|strong="H3117"\w* \w left|strong="H3318"\w* \w the|strong="H3068"\w* \w land|strong="H4725"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w* \w until|strong="H5704"\w* \w you|strong="H3117"\w* \w came|strong="H1961"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*, \w you|strong="H3117"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w rebellious|strong="H4784"\w* \w against|strong="H5973"\w* \w Yahweh|strong="H3068"\w*. +\v 8 \w Also|strong="H3068"\w* \w in|strong="H3068"\w* \w Horeb|strong="H2722"\w* \w you|strong="H8045"\w* \w provoked|strong="H7107"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3068"\w* \w wrath|strong="H7107"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w angry|strong="H7107"\w* \w with|strong="H3068"\w* \w you|strong="H8045"\w* \w to|strong="H3068"\w* \w destroy|strong="H8045"\w* \w you|strong="H8045"\w*. +\v 9 \w When|strong="H3117"\w* \w I|strong="H3117"\w* \w had|strong="H3068"\w* \w gone|strong="H5927"\w* \w up|strong="H5927"\w* onto \w the|strong="H3947"\w* \w mountain|strong="H2022"\w* \w to|strong="H3068"\w* \w receive|strong="H3947"\w* \w the|strong="H3947"\w* stone \w tablets|strong="H3871"\w*, \w even|strong="H3808"\w* \w the|strong="H3947"\w* \w tablets|strong="H3871"\w* \w of|strong="H3068"\w* \w the|strong="H3947"\w* \w covenant|strong="H1285"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H3772"\w* \w with|strong="H5973"\w* \w you|strong="H3117"\w*, \w then|strong="H3947"\w* \w I|strong="H3117"\w* \w stayed|strong="H3427"\w* \w on|strong="H3117"\w* \w the|strong="H3947"\w* \w mountain|strong="H2022"\w* forty \w days|strong="H3117"\w* \w and|strong="H3068"\w* forty \w nights|strong="H3915"\w*. \w I|strong="H3117"\w* \w neither|strong="H3808"\w* ate \w bread|strong="H3899"\w* \w nor|strong="H3808"\w* \w drank|strong="H8354"\w* \w water|strong="H4325"\w*. +\v 10 \w Yahweh|strong="H3068"\w* \w delivered|strong="H5414"\w* \w to|strong="H1696"\w* \w me|strong="H5414"\w* \w the|strong="H3605"\w* \w two|strong="H8147"\w* stone \w tablets|strong="H3871"\w* \w written|strong="H3789"\w* \w with|strong="H5973"\w* \w God|strong="H3068"\w*’s finger. \w On|strong="H5921"\w* \w them|strong="H5414"\w* \w were|strong="H3117"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w with|strong="H5973"\w* \w you|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w mountain|strong="H2022"\w* \w out|strong="H5414"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* fire \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w*. +\p +\v 11 \w It|strong="H5414"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w pass|strong="H1961"\w* \w at|strong="H3068"\w* \w the|strong="H5414"\w* \w end|strong="H7093"\w* \w of|strong="H3068"\w* forty \w days|strong="H3117"\w* \w and|strong="H3068"\w* forty \w nights|strong="H3915"\w* \w that|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w gave|strong="H5414"\w* \w me|strong="H5414"\w* \w the|strong="H5414"\w* \w two|strong="H8147"\w* stone \w tablets|strong="H3871"\w*, \w even|strong="H3068"\w* \w the|strong="H5414"\w* \w tablets|strong="H3871"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* \w covenant|strong="H1285"\w*. +\v 12 \w Yahweh|strong="H3068"\w* \w said|strong="H3318"\w* \w to|strong="H3381"\w* \w me|strong="H4480"\w*, “\w Arise|strong="H6965"\w*, \w get|strong="H6965"\w* \w down|strong="H3381"\w* \w quickly|strong="H4118"\w* \w from|strong="H4480"\w* \w here|strong="H2088"\w*; \w for|strong="H3588"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w* \w whom|strong="H5971"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w* \w have|strong="H3068"\w* \w corrupted|strong="H7843"\w* \w themselves|strong="H6213"\w*. \w They|strong="H3588"\w* \w have|strong="H3068"\w* \w quickly|strong="H4118"\w* \w turned|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H4480"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w which|strong="H3068"\w* \w I|strong="H3588"\w* \w commanded|strong="H6680"\w* \w them|strong="H6213"\w*. \w They|strong="H3588"\w* \w have|strong="H3068"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w molten|strong="H4541"\w* \w image|strong="H4541"\w* \w for|strong="H3588"\w* \w themselves|strong="H6213"\w*!” +\p +\v 13 \w Furthermore|strong="H2009"\w* \w Yahweh|strong="H3068"\w* spoke \w to|strong="H3068"\w* \w me|strong="H7200"\w*, saying, “\w I|strong="H2009"\w* \w have|strong="H3068"\w* \w seen|strong="H7200"\w* \w these|strong="H2088"\w* \w people|strong="H5971"\w*, \w and|strong="H3068"\w* \w behold|strong="H2009"\w*, \w they|strong="H3068"\w* \w are|strong="H5971"\w* \w a|strong="H3068"\w* stiff-necked \w people|strong="H5971"\w*. +\v 14 \w Leave|strong="H4480"\w* \w me|strong="H4480"\w* \w alone|strong="H7503"\w*, \w that|strong="H1471"\w* \w I|strong="H8478"\w* \w may|strong="H1471"\w* \w destroy|strong="H8045"\w* \w them|strong="H6213"\w*, \w and|strong="H8064"\w* \w blot|strong="H4229"\w* \w out|strong="H4229"\w* \w their|strong="H6213"\w* \w name|strong="H8034"\w* \w from|strong="H4480"\w* \w under|strong="H8478"\w* \w the|strong="H6213"\w* \w sky|strong="H8064"\w*; \w and|strong="H8064"\w* \w I|strong="H8478"\w* \w will|strong="H1471"\w* \w make|strong="H6213"\w* \w of|strong="H8034"\w* \w you|strong="H6213"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w mightier|strong="H6099"\w* \w and|strong="H8064"\w* \w greater|strong="H7227"\w* \w than|strong="H4480"\w* \w they|strong="H6213"\w*.” +\p +\v 15 \w So|strong="H4480"\w* \w I|strong="H5921"\w* \w turned|strong="H6437"\w* \w and|strong="H3027"\w* \w came|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* \w mountain|strong="H2022"\w*, \w and|strong="H3027"\w* \w the|strong="H5921"\w* \w mountain|strong="H2022"\w* \w was|strong="H3027"\w* \w burning|strong="H1197"\w* \w with|strong="H1285"\w* fire. \w The|strong="H5921"\w* \w two|strong="H8147"\w* \w tablets|strong="H3871"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w covenant|strong="H1285"\w* \w were|strong="H2022"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* \w two|strong="H8147"\w* \w hands|strong="H3027"\w*. +\v 16 \w I|strong="H2009"\w* \w looked|strong="H7200"\w*, \w and|strong="H3068"\w* \w behold|strong="H2009"\w*, \w you|strong="H6680"\w* \w had|strong="H3068"\w* \w sinned|strong="H2398"\w* \w against|strong="H4480"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \w You|strong="H6680"\w* \w had|strong="H3068"\w* \w made|strong="H6213"\w* \w yourselves|strong="H3068"\w* \w a|strong="H3068"\w* molded \w calf|strong="H5695"\w*. \w You|strong="H6680"\w* \w had|strong="H3068"\w* \w quickly|strong="H4118"\w* \w turned|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H4480"\w* \w the|strong="H7200"\w* \w way|strong="H1870"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w commanded|strong="H6680"\w* \w you|strong="H6680"\w*. +\v 17 \w I|strong="H5921"\w* \w took|strong="H8610"\w* \w hold|strong="H8610"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w tablets|strong="H3871"\w*, \w and|strong="H3027"\w* \w threw|strong="H7993"\w* \w them|strong="H5921"\w* \w out|strong="H7993"\w* \w of|strong="H3027"\w* \w my|strong="H5921"\w* \w two|strong="H8147"\w* \w hands|strong="H3027"\w*, \w and|strong="H3027"\w* \w broke|strong="H7665"\w* \w them|strong="H5921"\w* \w before|strong="H5869"\w* \w your|strong="H5921"\w* \w eyes|strong="H5869"\w*. +\v 18 \w I|strong="H3117"\w* \w fell|strong="H5307"\w* \w down|strong="H5307"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w as|strong="H3117"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w first|strong="H7223"\w*, forty \w days|strong="H3117"\w* \w and|strong="H3068"\w* forty \w nights|strong="H3915"\w*. \w I|strong="H3117"\w* \w neither|strong="H3808"\w* ate \w bread|strong="H3899"\w* \w nor|strong="H3808"\w* \w drank|strong="H8354"\w* \w water|strong="H4325"\w*, \w because|strong="H5921"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w sin|strong="H2403"\w* \w which|strong="H3068"\w* \w you|strong="H6440"\w* \w sinned|strong="H2398"\w*, \w in|strong="H5921"\w* \w doing|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w to|strong="H3068"\w* \w provoke|strong="H3707"\w* \w him|strong="H6440"\w* \w to|strong="H3068"\w* \w anger|strong="H3707"\w*. +\v 19 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w was|strong="H3068"\w* \w afraid|strong="H3025"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w anger|strong="H2534"\w* \w and|strong="H3068"\w* \w hot|strong="H2534"\w* \w displeasure|strong="H2534"\w* \w with|strong="H3068"\w* \w which|strong="H1931"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w angry|strong="H7107"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w* \w to|strong="H3068"\w* \w destroy|strong="H8045"\w* \w you|strong="H3588"\w*. \w But|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w listened|strong="H8085"\w* \w to|strong="H3068"\w* \w me|strong="H6440"\w* \w that|strong="H3588"\w* \w time|strong="H6471"\w* \w also|strong="H1571"\w*. +\v 20 \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* angry \w enough|strong="H3966"\w* \w with|strong="H3068"\w* Aaron \w to|strong="H3068"\w* \w destroy|strong="H8045"\w* \w him|strong="H1931"\w*. \w I|strong="H6256"\w* \w prayed|strong="H6419"\w* \w for|strong="H1157"\w* Aaron \w also|strong="H1571"\w* \w at|strong="H3068"\w* \w the|strong="H3068"\w* \w same|strong="H1931"\w* \w time|strong="H6256"\w*. +\v 21 \w I|strong="H5704"\w* \w took|strong="H3947"\w* \w your|strong="H3947"\w* \w sin|strong="H2403"\w*, \w the|strong="H3947"\w* \w calf|strong="H5695"\w* \w which|strong="H2022"\w* \w you|strong="H5704"\w* \w had|strong="H8313"\w* \w made|strong="H6213"\w*, \w and|strong="H2022"\w* \w burned|strong="H8313"\w* \w it|strong="H6213"\w* \w with|strong="H8313"\w* fire, \w and|strong="H2022"\w* \w crushed|strong="H3807"\w* \w it|strong="H6213"\w*, \w grinding|strong="H2912"\w* \w it|strong="H6213"\w* \w very|strong="H5704"\w* \w small|strong="H1854"\w*, \w until|strong="H5704"\w* \w it|strong="H6213"\w* \w was|strong="H2022"\w* \w as|strong="H5704"\w* \w fine|strong="H1854"\w* \w as|strong="H5704"\w* \w dust|strong="H6083"\w*. \w I|strong="H5704"\w* \w threw|strong="H7993"\w* \w its|strong="H6213"\w* \w dust|strong="H6083"\w* \w into|strong="H3381"\w* \w the|strong="H3947"\w* \w brook|strong="H5158"\w* \w that|strong="H4480"\w* \w descended|strong="H3381"\w* \w out|strong="H7993"\w* \w of|strong="H2022"\w* \w the|strong="H3947"\w* \w mountain|strong="H2022"\w*. +\v 22 \w At|strong="H3068"\w* \w Taberah|strong="H8404"\w*, \w at|strong="H3068"\w* \w Massah|strong="H4532"\w*, \w and|strong="H3068"\w* \w at|strong="H3068"\w* Kibroth Hattaavah \w you|strong="H1961"\w* \w provoked|strong="H7107"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3068"\w* \w wrath|strong="H7107"\w*. +\v 23 \w When|strong="H8085"\w* \w Yahweh|strong="H3068"\w* \w sent|strong="H7971"\w* \w you|strong="H5414"\w* \w from|strong="H5927"\w* Kadesh Barnea, \w saying|strong="H6310"\w*, “\w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H3068"\w* \w possess|strong="H3423"\w* \w the|strong="H8085"\w* land \w which|strong="H3068"\w* \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w*,” \w you|strong="H5414"\w* \w rebelled|strong="H4784"\w* \w against|strong="H5927"\w* \w the|strong="H8085"\w* \w commandment|strong="H6310"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w you|strong="H5414"\w* didn’t believe \w him|strong="H5414"\w* \w or|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w his|strong="H5414"\w* \w voice|strong="H6963"\w*. +\v 24 \w You|strong="H3117"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w rebellious|strong="H4784"\w* \w against|strong="H5973"\w* \w Yahweh|strong="H3068"\w* \w from|strong="H3117"\w* \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w that|strong="H3045"\w* \w I|strong="H3117"\w* \w knew|strong="H3045"\w* \w you|strong="H3117"\w*. +\v 25 \w So|strong="H3588"\w* \w I|strong="H3588"\w* \w fell|strong="H5307"\w* \w down|strong="H5307"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w the|strong="H6440"\w* forty \w days|strong="H3117"\w* \w and|strong="H3068"\w* forty \w nights|strong="H3915"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w fell|strong="H5307"\w* \w down|strong="H5307"\w*, \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* said \w he|strong="H3588"\w* \w would|strong="H3068"\w* \w destroy|strong="H8045"\w* \w you|strong="H3588"\w*. +\v 26 \w I|strong="H4714"\w* \w prayed|strong="H6419"\w* \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w said|strong="H3318"\w*, “\w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, don’t \w destroy|strong="H7843"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w inheritance|strong="H5159"\w* \w that|strong="H5971"\w* \w you|strong="H3027"\w* \w have|strong="H3068"\w* \w redeemed|strong="H6299"\w* \w through|strong="H3027"\w* \w your|strong="H3068"\w* \w greatness|strong="H1433"\w*, \w that|strong="H5971"\w* \w you|strong="H3027"\w* \w have|strong="H3068"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w mighty|strong="H2389"\w* \w hand|strong="H3027"\w*. +\v 27 \w Remember|strong="H2142"\w* \w your|strong="H2142"\w* \w servants|strong="H5650"\w*, Abraham, \w Isaac|strong="H3327"\w*, \w and|strong="H5971"\w* \w Jacob|strong="H3290"\w*. Don’t \w look|strong="H6437"\w* \w at|strong="H5971"\w* \w the|strong="H2142"\w* \w stubbornness|strong="H7190"\w* \w of|strong="H5650"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*, nor \w at|strong="H5971"\w* \w their|strong="H2142"\w* \w wickedness|strong="H7562"\w*, nor \w at|strong="H5971"\w* \w their|strong="H2142"\w* \w sin|strong="H2403"\w*, +\v 28 \w lest|strong="H6435"\w* \w the|strong="H3068"\w* land \w you|strong="H6435"\w* \w brought|strong="H3318"\w* \w us|strong="H6435"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w say|strong="H1696"\w*, ‘\w Because|strong="H1097"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w not|strong="H3201"\w* \w able|strong="H3201"\w* \w to|strong="H1696"\w* \w bring|strong="H3318"\w* \w them|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H3068"\w* land \w which|strong="H3068"\w* \w he|strong="H8033"\w* \w promised|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H3318"\w*, \w and|strong="H3068"\w* \w because|strong="H1097"\w* \w he|strong="H8033"\w* \w hated|strong="H8135"\w* \w them|strong="H3318"\w*, \w he|strong="H8033"\w* \w has|strong="H3068"\w* \w brought|strong="H3318"\w* \w them|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H1696"\w* \w kill|strong="H4191"\w* \w them|strong="H3318"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w wilderness|strong="H4057"\w*.’ +\v 29 Yet \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w your|strong="H5186"\w* \w people|strong="H5971"\w* \w and|strong="H1419"\w* \w your|strong="H5186"\w* \w inheritance|strong="H5159"\w*, \w which|strong="H1992"\w* \w you|strong="H5971"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w by|strong="H3318"\w* \w your|strong="H5186"\w* \w great|strong="H1419"\w* \w power|strong="H3581"\w* \w and|strong="H1419"\w* \w by|strong="H3318"\w* \w your|strong="H5186"\w* \w outstretched|strong="H5186"\w* \w arm|strong="H2220"\w*.” +\c 10 +\p +\v 1 \w At|strong="H3068"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w* \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w me|strong="H6213"\w*, “\w Cut|strong="H6458"\w* \w two|strong="H8147"\w* stone \w tablets|strong="H3871"\w* \w like|strong="H2022"\w* \w the|strong="H6213"\w* \w first|strong="H7223"\w*, \w and|strong="H3068"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w me|strong="H6213"\w* onto \w the|strong="H6213"\w* \w mountain|strong="H2022"\w*, \w and|strong="H3068"\w* \w make|strong="H6213"\w* \w an|strong="H6213"\w* ark \w of|strong="H3068"\w* \w wood|strong="H6086"\w*. +\v 2 \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w write|strong="H3789"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tablets|strong="H3871"\w* \w the|strong="H5921"\w* \w words|strong="H1697"\w* \w that|strong="H1697"\w* \w were|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w first|strong="H7223"\w* \w tablets|strong="H3871"\w* \w which|strong="H1697"\w* \w you|strong="H5921"\w* \w broke|strong="H7665"\w*, \w and|strong="H1697"\w* \w you|strong="H5921"\w* \w shall|strong="H1697"\w* \w put|strong="H7760"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* ark.” +\v 3 \w So|strong="H6213"\w* \w I|strong="H3027"\w* \w made|strong="H6213"\w* \w an|strong="H6213"\w* ark \w of|strong="H3027"\w* \w acacia|strong="H7848"\w* \w wood|strong="H6086"\w*, \w and|strong="H3027"\w* \w cut|strong="H6458"\w* \w two|strong="H8147"\w* stone \w tablets|strong="H3871"\w* \w like|strong="H2022"\w* \w the|strong="H6213"\w* \w first|strong="H7223"\w*, \w and|strong="H3027"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* onto \w the|strong="H6213"\w* \w mountain|strong="H2022"\w*, having \w the|strong="H6213"\w* \w two|strong="H8147"\w* \w tablets|strong="H3871"\w* \w in|strong="H6213"\w* \w my|strong="H6213"\w* \w hand|strong="H3027"\w*. +\v 4 \w He|strong="H3117"\w* \w wrote|strong="H3789"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tablets|strong="H3871"\w*, \w according|strong="H5921"\w* \w to|strong="H1696"\w* \w the|strong="H5921"\w* \w first|strong="H7223"\w* \w writing|strong="H4385"\w*, \w the|strong="H5921"\w* \w ten|strong="H6235"\w* \w commandments|strong="H1697"\w*, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w mountain|strong="H2022"\w* \w out|strong="H5414"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* fire \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w assembly|strong="H6951"\w*; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H1696"\w* \w me|strong="H5414"\w*. +\v 5 \w I|strong="H7760"\w* \w turned|strong="H6437"\w* \w and|strong="H3068"\w* \w came|strong="H1961"\w* \w down|strong="H3381"\w* \w from|strong="H4480"\w* \w the|strong="H6213"\w* \w mountain|strong="H2022"\w*, \w and|strong="H3068"\w* \w put|strong="H7760"\w* \w the|strong="H6213"\w* \w tablets|strong="H3871"\w* \w in|strong="H3068"\w* \w the|strong="H6213"\w* ark \w which|strong="H3068"\w* \w I|strong="H7760"\w* \w had|strong="H3068"\w* \w made|strong="H6213"\w*; \w and|strong="H3068"\w* \w there|strong="H8033"\w* \w they|strong="H8033"\w* \w are|strong="H3068"\w* \w as|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w me|strong="H7760"\w*. +\p +\v 6 (\w The|strong="H8478"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w traveled|strong="H5265"\w* \w from|strong="H5265"\w* Beeroth Bene Jaakan \w to|strong="H3478"\w* \w Moserah|strong="H4149"\w*. \w There|strong="H8033"\w* Aaron \w died|strong="H4191"\w*, \w and|strong="H1121"\w* \w there|strong="H8033"\w* \w he|strong="H8033"\w* \w was|strong="H3478"\w* \w buried|strong="H6912"\w*; \w and|strong="H1121"\w* Eleazar \w his|strong="H3478"\w* \w son|strong="H1121"\w* \w ministered|strong="H3547"\w* \w in|strong="H3478"\w* \w the|strong="H8478"\w* \w priest|strong="H3547"\w*’s office \w in|strong="H3478"\w* \w his|strong="H3478"\w* \w place|strong="H8478"\w*. +\v 7 \w From|strong="H4480"\w* \w there|strong="H8033"\w* \w they|strong="H8033"\w* \w traveled|strong="H5265"\w* \w to|strong="H4325"\w* \w Gudgodah|strong="H1412"\w*; \w and|strong="H8033"\w* \w from|strong="H4480"\w* \w Gudgodah|strong="H1412"\w* \w to|strong="H4325"\w* \w Jotbathah|strong="H3193"\w*, \w a|strong="H3068"\w* land \w of|strong="H4325"\w* \w brooks|strong="H5158"\w* \w of|strong="H4325"\w* \w water|strong="H4325"\w*. +\v 8 \w At|strong="H3068"\w* \w that|strong="H3117"\w* \w time|strong="H6256"\w* \w Yahweh|strong="H3068"\w* \w set|strong="H5975"\w* apart \w the|strong="H6440"\w* \w tribe|strong="H7626"\w* \w of|strong="H3068"\w* \w Levi|strong="H3878"\w* \w to|strong="H5704"\w* \w bear|strong="H5375"\w* \w the|strong="H6440"\w* ark \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w*, \w to|strong="H5704"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H5704"\w* \w minister|strong="H8334"\w* \w to|strong="H5704"\w* \w him|strong="H6440"\w*, \w and|strong="H3068"\w* \w to|strong="H5704"\w* \w bless|strong="H1288"\w* \w in|strong="H3068"\w* \w his|strong="H5375"\w* \w name|strong="H8034"\w*, \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 9 \w Therefore|strong="H3651"\w* \w Levi|strong="H3881"\w* \w has|strong="H3068"\w* \w no|strong="H3808"\w* \w portion|strong="H2506"\w* \w nor|strong="H3808"\w* \w inheritance|strong="H5159"\w* \w with|strong="H5973"\w* \w his|strong="H3068"\w* brothers; \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w his|strong="H3068"\w* \w inheritance|strong="H5159"\w*, \w according|strong="H5921"\w* \w as|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5921"\w*.) +\p +\v 10 \w I|strong="H3117"\w* \w stayed|strong="H5975"\w* \w on|strong="H3117"\w* \w the|strong="H8085"\w* \w mountain|strong="H2022"\w*, \w as|strong="H3117"\w* \w at|strong="H3068"\w* \w the|strong="H8085"\w* \w first|strong="H7223"\w* \w time|strong="H3117"\w*, forty \w days|strong="H3117"\w* \w and|strong="H3068"\w* forty \w nights|strong="H3915"\w*; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w listened|strong="H8085"\w* \w to|strong="H3068"\w* \w me|strong="H5975"\w* \w that|strong="H3117"\w* \w time|strong="H3117"\w* \w also|strong="H1571"\w*. \w Yahweh|strong="H3068"\w* \w would|strong="H3068"\w* \w not|strong="H3808"\w* \w destroy|strong="H7843"\w* \w you|strong="H3117"\w*. +\v 11 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w me|strong="H5414"\w*, “\w Arise|strong="H6965"\w*, \w take|strong="H3423"\w* \w your|strong="H3068"\w* \w journey|strong="H4550"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*; \w and|strong="H6965"\w* \w they|strong="H3068"\w* \w shall|strong="H3068"\w* \w go|strong="H3212"\w* \w in|strong="H3068"\w* \w and|strong="H6965"\w* \w possess|strong="H3423"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w which|strong="H3068"\w* \w I|strong="H5414"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* \w their|strong="H3068"\w* fathers \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w to|strong="H3068"\w* \w them|strong="H5414"\w*.” +\p +\v 12 \w Now|strong="H6258"\w*, \w Israel|strong="H3478"\w*, \w what|strong="H4100"\w* \w does|strong="H4100"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w require|strong="H7592"\w* \w of|strong="H3068"\w* \w you|strong="H3588"\w*, \w but|strong="H3588"\w* \w to|strong="H3478"\w* \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w to|strong="H3478"\w* \w walk|strong="H3212"\w* \w in|strong="H3478"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w ways|strong="H1870"\w*, \w to|strong="H3478"\w* love \w him|strong="H5973"\w*, \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w with|strong="H5973"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w and|strong="H3478"\w* \w with|strong="H5973"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w*, +\v 13 \w to|strong="H3068"\w* \w keep|strong="H8104"\w* \w Yahweh|strong="H3068"\w*’s \w commandments|strong="H4687"\w* \w and|strong="H3068"\w* \w statutes|strong="H2708"\w*, \w which|strong="H3068"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w* \w today|strong="H3117"\w* \w for|strong="H2708"\w* \w your|strong="H3068"\w* \w good|strong="H2896"\w*? +\v 14 \w Behold|strong="H2005"\w*, \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* belongs \w heaven|strong="H8064"\w*, \w the|strong="H3605"\w* \w heaven|strong="H8064"\w* \w of|strong="H3068"\w* \w heavens|strong="H8064"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*, \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3068"\w* therein. +\v 15 \w Only|strong="H7535"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w a|strong="H3068"\w* \w delight|strong="H2836"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* fathers \w to|strong="H3068"\w* \w love|strong="H2836"\w* \w them|strong="H3117"\w*, \w and|strong="H3068"\w* \w he|strong="H3117"\w* chose \w their|strong="H3605"\w* \w offspring|strong="H2233"\w* \w after|strong="H2233"\w* \w them|strong="H3117"\w*, \w even|strong="H3068"\w* \w you|strong="H3605"\w* above \w all|strong="H3605"\w* \w peoples|strong="H5971"\w*, \w as|strong="H3117"\w* \w it|strong="H3117"\w* \w is|strong="H3068"\w* \w today|strong="H3117"\w*. +\v 16 \w Circumcise|strong="H4135"\w* \w therefore|strong="H4135"\w* \w the|strong="H3808"\w* \w foreskin|strong="H6190"\w* \w of|strong="H3824"\w* \w your|strong="H3808"\w* \w heart|strong="H3824"\w*, \w and|strong="H3824"\w* \w be|strong="H5750"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* stiff-necked. +\v 17 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w he|strong="H1931"\w* \w is|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* gods \w and|strong="H3068"\w* \w Lord|strong="H3068"\w* \w of|strong="H3068"\w* lords, \w the|strong="H6440"\w* \w great|strong="H1419"\w* \w God|strong="H3068"\w*, \w the|strong="H6440"\w* \w mighty|strong="H1368"\w*, \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w awesome|strong="H3372"\w*, \w who|strong="H1931"\w* doesn’t \w respect|strong="H5375"\w* \w persons|strong="H6440"\w* \w or|strong="H3808"\w* \w take|strong="H3947"\w* \w bribes|strong="H7810"\w*. +\v 18 \w He|strong="H6213"\w* \w executes|strong="H6213"\w* \w justice|strong="H4941"\w* \w for|strong="H6213"\w* \w the|strong="H5414"\w* \w fatherless|strong="H3490"\w* \w and|strong="H4941"\w* widow \w and|strong="H4941"\w* loves \w the|strong="H5414"\w* \w foreigner|strong="H1616"\w* \w in|strong="H6213"\w* \w giving|strong="H5414"\w* \w him|strong="H5414"\w* \w food|strong="H3899"\w* \w and|strong="H4941"\w* \w clothing|strong="H8071"\w*. +\v 19 \w Therefore|strong="H3588"\w* love \w the|strong="H3588"\w* \w foreigner|strong="H1616"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w were|strong="H1961"\w* \w foreigners|strong="H1616"\w* \w in|strong="H1961"\w* \w the|strong="H3588"\w* land \w of|strong="H4714"\w* \w Egypt|strong="H4714"\w*. +\v 20 \w You|strong="H5647"\w* \w shall|strong="H3068"\w* \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \w You|strong="H5647"\w* \w shall|strong="H3068"\w* \w serve|strong="H5647"\w* \w him|strong="H5647"\w*. \w You|strong="H5647"\w* \w shall|strong="H3068"\w* \w cling|strong="H1692"\w* \w to|strong="H3068"\w* \w him|strong="H5647"\w*, \w and|strong="H3068"\w* \w you|strong="H5647"\w* \w shall|strong="H3068"\w* \w swear|strong="H7650"\w* \w by|strong="H7650"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w*. +\v 21 \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w your|strong="H7200"\w* \w praise|strong="H8416"\w*, \w and|strong="H1419"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w your|strong="H7200"\w* God, \w who|strong="H1931"\w* \w has|strong="H5869"\w* \w done|strong="H6213"\w* \w for|strong="H6213"\w* \w you|strong="H6213"\w* \w these|strong="H6213"\w* \w great|strong="H1419"\w* \w and|strong="H1419"\w* \w awesome|strong="H3372"\w* \w things|strong="H1419"\w* \w which|strong="H1931"\w* \w your|strong="H7200"\w* \w eyes|strong="H5869"\w* \w have|strong="H5869"\w* \w seen|strong="H7200"\w*. +\v 22 \w Your|strong="H3068"\w* fathers \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w Egypt|strong="H4714"\w* \w with|strong="H3068"\w* \w seventy|strong="H7657"\w* \w persons|strong="H5315"\w*; \w and|strong="H3068"\w* \w now|strong="H6258"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w made|strong="H7760"\w* \w you|strong="H7760"\w* \w as|strong="H5315"\w* \w the|strong="H3068"\w* \w stars|strong="H3556"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w sky|strong="H8064"\w* \w for|strong="H4714"\w* \w multitude|strong="H7230"\w*. +\c 11 +\p +\v 1 \w Therefore|strong="H3068"\w* \w you|strong="H3605"\w* \w shall|strong="H3068"\w* love \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w keep|strong="H8104"\w* \w his|strong="H3605"\w* \w instructions|strong="H4687"\w*, \w his|strong="H3605"\w* \w statutes|strong="H2708"\w*, \w his|strong="H3605"\w* \w ordinances|strong="H4941"\w*, \w and|strong="H3068"\w* \w his|strong="H3605"\w* \w commandments|strong="H4687"\w*, \w always|strong="H3605"\w*. +\v 2 \w Know|strong="H3045"\w* \w this|strong="H7200"\w* \w day|strong="H3117"\w*—\w for|strong="H3588"\w* \w I|strong="H3588"\w* don’t speak \w with|strong="H3068"\w* \w your|strong="H3068"\w* \w children|strong="H1121"\w* \w who|strong="H3068"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w known|strong="H3045"\w*, \w and|strong="H1121"\w* \w who|strong="H3068"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w seen|strong="H7200"\w* \w the|strong="H7200"\w* \w chastisement|strong="H4148"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w his|strong="H3068"\w* \w greatness|strong="H1433"\w*, \w his|strong="H3068"\w* \w mighty|strong="H2389"\w* \w hand|strong="H3027"\w*, \w his|strong="H3068"\w* \w outstretched|strong="H5186"\w* \w arm|strong="H2220"\w*, +\v 3 \w his|strong="H3605"\w* signs, \w and|strong="H4428"\w* \w his|strong="H3605"\w* \w works|strong="H4639"\w*, \w which|strong="H4428"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w to|strong="H6213"\w* \w Pharaoh|strong="H6547"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H4428"\w* \w to|strong="H6213"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* land; +\v 4 \w and|strong="H3068"\w* \w what|strong="H2088"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w* \w to|strong="H5704"\w* \w the|strong="H6440"\w* \w army|strong="H2428"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w to|strong="H5704"\w* \w their|strong="H3068"\w* \w horses|strong="H5483"\w*, \w and|strong="H3068"\w* \w to|strong="H5704"\w* \w their|strong="H3068"\w* \w chariots|strong="H7393"\w*; \w how|strong="H5704"\w* \w he|strong="H3117"\w* \w made|strong="H6213"\w* \w the|strong="H6440"\w* \w water|strong="H4325"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w* \w to|strong="H5704"\w* \w overflow|strong="H6687"\w* \w them|strong="H5921"\w* \w as|strong="H5704"\w* \w they|strong="H3117"\w* \w pursued|strong="H7291"\w* \w you|strong="H6440"\w*, \w and|strong="H3068"\w* \w how|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* destroyed \w them|strong="H5921"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*; +\v 5 \w and|strong="H6213"\w* \w what|strong="H2088"\w* \w he|strong="H5704"\w* \w did|strong="H6213"\w* \w to|strong="H5704"\w* \w you|strong="H5704"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w wilderness|strong="H4057"\w* \w until|strong="H5704"\w* \w you|strong="H5704"\w* came \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*; +\v 6 \w and|strong="H1121"\w* \w what|strong="H6213"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w* \w to|strong="H3478"\w* \w Dathan|strong="H1885"\w* \w and|strong="H1121"\w* Abiram, \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Eliab, \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w*—\w how|strong="H6213"\w* \w the|strong="H3605"\w* earth \w opened|strong="H6475"\w* \w its|strong="H3605"\w* \w mouth|strong="H6310"\w* \w and|strong="H1121"\w* \w swallowed|strong="H1104"\w* \w them|strong="H6213"\w* \w up|strong="H1104"\w*, \w with|strong="H1004"\w* \w their|strong="H3605"\w* \w households|strong="H1004"\w*, \w their|strong="H3605"\w* tents, \w and|strong="H1121"\w* \w every|strong="H3605"\w* \w living|strong="H3351"\w* \w thing|strong="H3351"\w* \w that|strong="H3605"\w* \w followed|strong="H7272"\w* \w them|strong="H6213"\w*, \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w middle|strong="H7130"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*; +\v 7 \w but|strong="H3588"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w* \w have|strong="H3068"\w* \w seen|strong="H7200"\w* \w all|strong="H3605"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w great|strong="H1419"\w* \w work|strong="H4639"\w* \w which|strong="H3068"\w* \w he|strong="H3588"\w* \w did|strong="H6213"\w*. +\p +\v 8 \w Therefore|strong="H4616"\w* \w you|strong="H6680"\w* \w shall|strong="H3117"\w* \w keep|strong="H8104"\w* \w the|strong="H3605"\w* \w entire|strong="H3605"\w* \w commandment|strong="H4687"\w* \w which|strong="H8033"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w* \w today|strong="H3117"\w*, \w that|strong="H3605"\w* \w you|strong="H6680"\w* \w may|strong="H3117"\w* \w be|strong="H3117"\w* \w strong|strong="H2388"\w*, \w and|strong="H3117"\w* \w go|strong="H5674"\w* \w in|strong="H3117"\w* \w and|strong="H3117"\w* \w possess|strong="H3423"\w* \w the|strong="H3605"\w* land \w that|strong="H3605"\w* \w you|strong="H6680"\w* \w go|strong="H5674"\w* \w over|strong="H5674"\w* \w to|strong="H8104"\w* \w possess|strong="H3423"\w*; +\v 9 \w and|strong="H3068"\w* \w that|strong="H3117"\w* \w you|strong="H5414"\w* \w may|strong="H3068"\w* prolong \w your|strong="H3068"\w* \w days|strong="H3117"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* fathers \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w to|strong="H3068"\w* \w them|strong="H5414"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w their|strong="H3068"\w* \w offspring|strong="H2233"\w*, \w a|strong="H3068"\w* land \w flowing|strong="H2100"\w* \w with|strong="H2100"\w* \w milk|strong="H2461"\w* \w and|strong="H3068"\w* \w honey|strong="H1706"\w*. +\v 10 \w For|strong="H3588"\w* \w the|strong="H3588"\w* land, \w where|strong="H8033"\w* \w you|strong="H3588"\w* \w go|strong="H3318"\w* \w in|strong="H8033"\w* \w to|strong="H3318"\w* \w possess|strong="H3423"\w* isn’t \w like|strong="H3318"\w* \w the|strong="H3588"\w* land \w of|strong="H2233"\w* \w Egypt|strong="H4714"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H2233"\w*, \w where|strong="H8033"\w* \w you|strong="H3588"\w* \w sowed|strong="H2232"\w* \w your|strong="H3588"\w* \w seed|strong="H2233"\w* \w and|strong="H4714"\w* \w watered|strong="H8248"\w* \w it|strong="H1931"\w* \w with|strong="H3318"\w* \w your|strong="H3588"\w* \w foot|strong="H7272"\w*, \w as|strong="H3588"\w* \w a|strong="H3068"\w* \w garden|strong="H1588"\w* \w of|strong="H2233"\w* \w herbs|strong="H3419"\w*; +\v 11 \w but|strong="H4325"\w* \w the|strong="H3423"\w* \w land|strong="H8064"\w* \w that|strong="H4325"\w* \w you|strong="H2022"\w* go \w over|strong="H3423"\w* \w to|strong="H4325"\w* \w possess|strong="H3423"\w* \w is|strong="H8033"\w* \w a|strong="H3068"\w* \w land|strong="H8064"\w* \w of|strong="H2022"\w* \w hills|strong="H2022"\w* \w and|strong="H8064"\w* \w valleys|strong="H1237"\w* \w which|strong="H8033"\w* \w drinks|strong="H8354"\w* \w water|strong="H4325"\w* \w from|strong="H3423"\w* \w the|strong="H3423"\w* \w rain|strong="H4306"\w* \w of|strong="H2022"\w* \w the|strong="H3423"\w* \w sky|strong="H8064"\w*, +\v 12 \w a|strong="H3068"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w cares|strong="H1875"\w* \w for|strong="H5704"\w*. \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w eyes|strong="H5869"\w* \w are|strong="H5869"\w* \w always|strong="H8548"\w* \w on|strong="H3068"\w* \w it|strong="H5704"\w*, \w from|strong="H5704"\w* \w the|strong="H3068"\w* \w beginning|strong="H7225"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w year|strong="H8141"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3068"\w* end \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w year|strong="H8141"\w*. +\v 13 \w It|strong="H1961"\w* \w shall|strong="H3068"\w* \w happen|strong="H1961"\w*, \w if|strong="H1961"\w* \w you|strong="H6680"\w* \w shall|strong="H3068"\w* \w listen|strong="H8085"\w* \w diligently|strong="H8085"\w* \w to|strong="H3068"\w* \w my|strong="H8085"\w* \w commandments|strong="H4687"\w* \w which|strong="H3068"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w* \w today|strong="H3117"\w*, \w to|strong="H3068"\w* love \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w serve|strong="H5647"\w* \w him|strong="H6680"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w*, +\v 14 \w that|strong="H5414"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w the|strong="H5414"\w* \w rain|strong="H4306"\w* \w for|strong="H6256"\w* \w your|strong="H5414"\w* land \w in|strong="H5414"\w* \w its|strong="H5414"\w* \w season|strong="H6256"\w*, \w the|strong="H5414"\w* \w early|strong="H3138"\w* \w rain|strong="H4306"\w* \w and|strong="H1715"\w* \w the|strong="H5414"\w* \w latter|strong="H4456"\w* \w rain|strong="H4306"\w*, \w that|strong="H5414"\w* \w you|strong="H5414"\w* \w may|strong="H5414"\w* gather \w in|strong="H5414"\w* \w your|strong="H5414"\w* \w grain|strong="H1715"\w*, \w your|strong="H5414"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w*, \w and|strong="H1715"\w* \w your|strong="H5414"\w* \w oil|strong="H3323"\w*. +\v 15 \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w grass|strong="H6212"\w* \w in|strong="H5414"\w* \w your|strong="H5414"\w* \w fields|strong="H7704"\w* \w for|strong="H7704"\w* \w your|strong="H5414"\w* livestock, \w and|strong="H7704"\w* \w you|strong="H5414"\w* \w shall|strong="H7704"\w* eat \w and|strong="H7704"\w* \w be|strong="H5414"\w* \w full|strong="H7646"\w*. +\v 16 \w Be|strong="H3824"\w* \w careful|strong="H8104"\w*, \w lest|strong="H6435"\w* \w your|strong="H8104"\w* \w heart|strong="H3824"\w* \w be|strong="H3824"\w* \w deceived|strong="H6601"\w*, \w and|strong="H8104"\w* \w you|strong="H5647"\w* \w turn|strong="H5493"\w* \w away|strong="H5493"\w* \w to|strong="H8104"\w* \w serve|strong="H5647"\w* other gods \w and|strong="H8104"\w* \w worship|strong="H7812"\w* \w them|strong="H5493"\w*; +\v 17 \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s anger \w be|strong="H1961"\w* \w kindled|strong="H2734"\w* \w against|strong="H5921"\w* \w you|strong="H5414"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w shut|strong="H6113"\w* \w up|strong="H5414"\w* \w the|strong="H5921"\w* \w sky|strong="H8064"\w* \w so|strong="H1961"\w* \w that|strong="H3068"\w* \w there|strong="H1961"\w* \w is|strong="H3068"\w* \w no|strong="H3808"\w* \w rain|strong="H4306"\w*, \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w land|strong="H8064"\w* doesn’t \w yield|strong="H5414"\w* \w its|strong="H5414"\w* \w fruit|strong="H2981"\w*; \w and|strong="H3068"\w* \w you|strong="H5414"\w* perish \w quickly|strong="H4120"\w* \w from|strong="H5921"\w* \w off|strong="H5921"\w* \w the|strong="H5921"\w* \w good|strong="H2896"\w* \w land|strong="H8064"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H5414"\w*. +\v 18 \w Therefore|strong="H5921"\w* \w you|strong="H5921"\w* \w shall|strong="H5315"\w* \w lay|strong="H7760"\w* \w up|strong="H7760"\w* \w these|strong="H7760"\w* \w words|strong="H1697"\w* \w of|strong="H3027"\w* \w mine|strong="H7760"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w heart|strong="H3824"\w* \w and|strong="H3027"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w soul|strong="H5315"\w*. \w You|strong="H5921"\w* \w shall|strong="H5315"\w* \w bind|strong="H7194"\w* \w them|strong="H5921"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* sign \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w they|strong="H5921"\w* \w shall|strong="H5315"\w* \w be|strong="H1961"\w* \w for|strong="H5921"\w* \w frontlets|strong="H2903"\w* \w between|strong="H5921"\w* \w your|strong="H5921"\w* \w eyes|strong="H5869"\w*. +\v 19 \w You|strong="H3925"\w* \w shall|strong="H1121"\w* \w teach|strong="H3925"\w* \w them|strong="H3925"\w* \w to|strong="H1696"\w* \w your|strong="H6965"\w* \w children|strong="H1121"\w*, \w talking|strong="H1696"\w* \w of|strong="H1121"\w* \w them|strong="H3925"\w* \w when|strong="H1696"\w* \w you|strong="H3925"\w* \w sit|strong="H3427"\w* \w in|strong="H3427"\w* \w your|strong="H6965"\w* \w house|strong="H1004"\w*, \w when|strong="H1696"\w* \w you|strong="H3925"\w* \w walk|strong="H3212"\w* \w by|strong="H1870"\w* \w the|strong="H6965"\w* \w way|strong="H1870"\w*, \w when|strong="H1696"\w* \w you|strong="H3925"\w* \w lie|strong="H7901"\w* \w down|strong="H7901"\w*, \w and|strong="H1121"\w* \w when|strong="H1696"\w* \w you|strong="H3925"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w*. +\v 20 \w You|strong="H5921"\w* \w shall|strong="H1004"\w* \w write|strong="H3789"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w door|strong="H4201"\w* \w posts|strong="H4201"\w* \w of|strong="H1004"\w* \w your|strong="H5921"\w* \w house|strong="H1004"\w* \w and|strong="H1004"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w gates|strong="H8179"\w*; +\v 21 \w that|strong="H3117"\w* \w your|strong="H3068"\w* \w days|strong="H3117"\w* \w and|strong="H1121"\w* \w your|strong="H3068"\w* \w children|strong="H1121"\w*’s \w days|strong="H3117"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w multiplied|strong="H7235"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w land|strong="H8064"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* fathers \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w*, \w as|strong="H3117"\w* \w the|strong="H5921"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w heavens|strong="H8064"\w* \w above|strong="H5921"\w* \w the|strong="H5921"\w* \w earth|strong="H8064"\w*. +\v 22 \w For|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w diligently|strong="H8104"\w* \w keep|strong="H8104"\w* \w all|strong="H3605"\w* \w these|strong="H2063"\w* \w commandments|strong="H4687"\w* \w which|strong="H3068"\w* \w I|strong="H3588"\w* \w command|strong="H6680"\w* \w you|strong="H3588"\w*—\w to|strong="H3212"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w*, \w to|strong="H3212"\w* love \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w to|strong="H3212"\w* \w walk|strong="H3212"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w ways|strong="H1870"\w*, \w and|strong="H3068"\w* \w to|strong="H3212"\w* \w cling|strong="H1692"\w* \w to|strong="H3212"\w* \w him|strong="H6213"\w*— +\v 23 \w then|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w drive|strong="H3423"\w* \w out|strong="H3423"\w* \w all|strong="H3605"\w* \w these|strong="H3605"\w* \w nations|strong="H1471"\w* \w from|strong="H4480"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w and|strong="H3068"\w* \w you|strong="H6440"\w* \w shall|strong="H3068"\w* \w dispossess|strong="H3423"\w* \w nations|strong="H1471"\w* \w greater|strong="H1419"\w* \w and|strong="H3068"\w* \w mightier|strong="H6099"\w* \w than|strong="H4480"\w* \w yourselves|strong="H3605"\w*. +\v 24 \w Every|strong="H3605"\w* \w place|strong="H4725"\w* \w on|strong="H1961"\w* \w which|strong="H4725"\w* \w the|strong="H3605"\w* \w sole|strong="H3709"\w* \w of|strong="H1366"\w* \w your|strong="H3605"\w* \w foot|strong="H7272"\w* \w treads|strong="H1869"\w* \w shall|strong="H1366"\w* \w be|strong="H1961"\w* yours: \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* \w and|strong="H3220"\w* \w Lebanon|strong="H3844"\w*, \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w river|strong="H5104"\w*, \w the|strong="H3605"\w* \w river|strong="H5104"\w* \w Euphrates|strong="H6578"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w western|strong="H3220"\w* \w sea|strong="H3220"\w* \w shall|strong="H1366"\w* \w be|strong="H1961"\w* \w your|strong="H3605"\w* \w border|strong="H1366"\w*. +\v 25 \w No|strong="H3808"\w* \w man|strong="H3605"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* able \w to|strong="H1696"\w* \w stand|strong="H3320"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w*. \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w lay|strong="H5414"\w* \w the|strong="H3605"\w* \w fear|strong="H6343"\w* \w of|strong="H3068"\w* \w you|strong="H5414"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w dread|strong="H6343"\w* \w of|strong="H3068"\w* \w you|strong="H5414"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w that|strong="H3605"\w* \w you|strong="H5414"\w* \w tread|strong="H1869"\w* \w on|strong="H5921"\w*, \w as|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H5414"\w*. +\v 26 \w Behold|strong="H7200"\w*, \w I|strong="H3117"\w* \w set|strong="H5414"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w* \w today|strong="H3117"\w* \w a|strong="H3068"\w* \w blessing|strong="H1293"\w* \w and|strong="H3117"\w* \w a|strong="H3068"\w* \w curse|strong="H7045"\w*: +\v 27 \w the|strong="H8085"\w* \w blessing|strong="H1293"\w*, if \w you|strong="H6680"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w the|strong="H8085"\w* \w commandments|strong="H4687"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w which|strong="H3068"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w* \w today|strong="H3117"\w*; +\v 28 \w and|strong="H3068"\w* \w the|strong="H8085"\w* \w curse|strong="H7045"\w*, if \w you|strong="H6680"\w* \w do|strong="H3068"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w the|strong="H8085"\w* \w commandments|strong="H4687"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w but|strong="H3808"\w* \w turn|strong="H5493"\w* \w away|strong="H5493"\w* \w out|strong="H4480"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* \w way|strong="H1870"\w* \w which|strong="H3068"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w* \w today|strong="H3117"\w*, \w to|strong="H3068"\w* \w go|strong="H3212"\w* \w after|strong="H4480"\w* other gods \w which|strong="H3068"\w* \w you|strong="H6680"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w known|strong="H3045"\w*. +\v 29 \w It|strong="H5414"\w* \w shall|strong="H3068"\w* \w happen|strong="H1961"\w*, \w when|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w brings|strong="H5414"\w* \w you|strong="H3588"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* land \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w go|strong="H1961"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w set|strong="H5414"\w* \w the|strong="H5921"\w* \w blessing|strong="H1293"\w* \w on|strong="H5921"\w* \w Mount|strong="H2022"\w* \w Gerizim|strong="H1630"\w*, \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w curse|strong="H7045"\w* \w on|strong="H5921"\w* \w Mount|strong="H2022"\w* \w Ebal|strong="H5858"\w*. +\v 30 Aren’t \w they|strong="H1992"\w* \w beyond|strong="H5676"\w* \w the|strong="H1870"\w* \w Jordan|strong="H3383"\w*, behind \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H3427"\w* \w the|strong="H1870"\w* \w going|strong="H8121"\w* \w down|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H1870"\w* \w sun|strong="H8121"\w*, \w in|strong="H3427"\w* \w the|strong="H1870"\w* \w land|strong="H5676"\w* \w of|strong="H3427"\w* \w the|strong="H1870"\w* \w Canaanites|strong="H3669"\w* \w who|strong="H3427"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H1870"\w* \w Arabah|strong="H6160"\w* \w near|strong="H3808"\w* \w Gilgal|strong="H1537"\w*, \w beside|strong="H5676"\w* \w the|strong="H1870"\w* oaks \w of|strong="H3427"\w* \w Moreh|strong="H4176"\w*? +\v 31 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H3068"\w* \w to|strong="H3068"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H3588"\w* \w Jordan|strong="H3383"\w* \w to|strong="H3068"\w* \w go|strong="H5674"\w* \w in|strong="H3427"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w* \w the|strong="H3588"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w possess|strong="H3423"\w* \w it|strong="H5414"\w* \w and|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w it|strong="H5414"\w*. +\v 32 \w You|strong="H5414"\w* \w shall|strong="H3117"\w* \w observe|strong="H8104"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w statutes|strong="H2706"\w* \w and|strong="H3117"\w* \w the|strong="H3605"\w* \w ordinances|strong="H4941"\w* \w which|strong="H3117"\w* \w I|strong="H3117"\w* \w set|strong="H5414"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w* \w today|strong="H3117"\w*. +\c 12 +\p +\v 1 \w These|strong="H6213"\w* \w are|strong="H3117"\w* \w the|strong="H3605"\w* \w statutes|strong="H2706"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w ordinances|strong="H4941"\w* \w which|strong="H3068"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w observe|strong="H8104"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* fathers, \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w that|strong="H3605"\w* \w you|strong="H5414"\w* \w live|strong="H2416"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth. +\v 2 \w You|strong="H3605"\w* \w shall|strong="H1471"\w* surely \w destroy|strong="H3423"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w places|strong="H4725"\w* \w in|strong="H5921"\w* \w which|strong="H1471"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w shall|strong="H1471"\w* \w dispossess|strong="H3423"\w* \w served|strong="H5647"\w* \w their|strong="H3605"\w* gods: \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w high|strong="H7311"\w* \w mountains|strong="H2022"\w*, \w and|strong="H6086"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w hills|strong="H1389"\w*, \w and|strong="H6086"\w* \w under|strong="H8478"\w* \w every|strong="H3605"\w* \w green|strong="H7488"\w* \w tree|strong="H6086"\w*. +\v 3 \w You|strong="H4480"\w* \w shall|strong="H1931"\w* \w break|strong="H7665"\w* \w down|strong="H5422"\w* \w their|strong="H8313"\w* \w altars|strong="H4196"\w*, dash \w their|strong="H8313"\w* \w pillars|strong="H4676"\w* \w in|strong="H4196"\w* \w pieces|strong="H7665"\w*, \w and|strong="H4196"\w* \w burn|strong="H8313"\w* \w their|strong="H8313"\w* Asherah poles \w with|strong="H8313"\w* fire. \w You|strong="H4480"\w* \w shall|strong="H1931"\w* \w cut|strong="H1438"\w* \w down|strong="H5422"\w* \w the|strong="H4480"\w* \w engraved|strong="H6456"\w* \w images|strong="H6456"\w* \w of|strong="H8034"\w* \w their|strong="H8313"\w* gods. \w You|strong="H4480"\w* \w shall|strong="H1931"\w* \w destroy|strong="H5422"\w* \w their|strong="H8313"\w* \w name|strong="H8034"\w* \w out|strong="H4480"\w* \w of|strong="H8034"\w* \w that|strong="H1931"\w* \w place|strong="H4725"\w*. +\v 4 \w You|strong="H6213"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w do|strong="H6213"\w* \w so|strong="H3651"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 5 \w But|strong="H3588"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w place|strong="H4725"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w shall|strong="H3068"\w* choose \w out|strong="H1875"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w tribes|strong="H7626"\w*, \w to|strong="H3068"\w* \w put|strong="H7760"\w* \w his|strong="H3605"\w* \w name|strong="H8034"\w* \w there|strong="H8033"\w*, \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w seek|strong="H1875"\w* \w his|strong="H3605"\w* \w habitation|strong="H7933"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* come \w there|strong="H8033"\w*. +\v 6 \w You|strong="H3027"\w* \w shall|strong="H3027"\w* bring \w your|strong="H3027"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w*, \w your|strong="H3027"\w* \w sacrifices|strong="H2077"\w*, \w your|strong="H3027"\w* \w tithes|strong="H4643"\w*, \w the|strong="H3027"\w* wave \w offering|strong="H5930"\w* \w of|strong="H3027"\w* \w your|strong="H3027"\w* \w hand|strong="H3027"\w*, \w your|strong="H3027"\w* \w vows|strong="H5088"\w*, \w your|strong="H3027"\w* free \w will|strong="H3027"\w* \w offerings|strong="H5930"\w*, \w and|strong="H3027"\w* \w the|strong="H3027"\w* \w firstborn|strong="H1062"\w* \w of|strong="H3027"\w* \w your|strong="H3027"\w* \w herd|strong="H1241"\w* \w and|strong="H3027"\w* \w of|strong="H3027"\w* \w your|strong="H3027"\w* \w flock|strong="H6629"\w* \w there|strong="H8033"\w*. +\v 7 \w There|strong="H8033"\w* \w you|strong="H6440"\w* \w shall|strong="H3068"\w* eat \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w you|strong="H6440"\w* \w shall|strong="H3068"\w* \w rejoice|strong="H8055"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H6440"\w* \w put|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w to|strong="H3068"\w*, \w you|strong="H6440"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w households|strong="H1004"\w*, \w in|strong="H3068"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w blessed|strong="H1288"\w* \w you|strong="H6440"\w*. +\v 8 \w You|strong="H3605"\w* \w shall|strong="H3117"\w* \w not|strong="H3808"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w things|strong="H3605"\w* \w that|strong="H3605"\w* \w we|strong="H3068"\w* \w do|strong="H6213"\w* \w here|strong="H6311"\w* \w today|strong="H3117"\w*, \w every|strong="H3605"\w* \w man|strong="H3605"\w* \w whatever|strong="H3605"\w* \w is|strong="H3117"\w* \w right|strong="H3477"\w* \w in|strong="H6213"\w* \w his|strong="H3605"\w* \w own|strong="H5869"\w* \w eyes|strong="H5869"\w*; +\v 9 \w for|strong="H3588"\w* \w you|strong="H3588"\w* haven’t \w yet|strong="H3588"\w* come \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w rest|strong="H4496"\w* \w and|strong="H3068"\w* \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w inheritance|strong="H5159"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H3588"\w*. +\v 10 \w But|strong="H3605"\w* \w when|strong="H3068"\w* \w you|strong="H3605"\w* \w go|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w* \w and|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* causes \w you|strong="H3605"\w* \w to|strong="H3068"\w* \w inherit|strong="H5157"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w gives|strong="H5117"\w* \w you|strong="H3605"\w* \w rest|strong="H5117"\w* \w from|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* enemies \w around|strong="H5439"\w* \w you|strong="H3605"\w*, \w so|strong="H5674"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* safety, +\v 11 \w then|strong="H1961"\w* \w it|strong="H8033"\w* \w shall|strong="H3068"\w* \w happen|strong="H1961"\w* \w that|strong="H3605"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w place|strong="H4725"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w shall|strong="H3068"\w* choose, \w to|strong="H3068"\w* \w cause|strong="H1961"\w* \w his|strong="H3605"\w* \w name|strong="H8034"\w* \w to|strong="H3068"\w* \w dwell|strong="H7931"\w* \w there|strong="H8033"\w*, \w there|strong="H8033"\w* \w you|strong="H6680"\w* \w shall|strong="H3068"\w* \w bring|strong="H1961"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H6680"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w*: \w your|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w*, \w your|strong="H3068"\w* \w sacrifices|strong="H2077"\w*, \w your|strong="H3068"\w* \w tithes|strong="H4643"\w*, \w the|strong="H3605"\w* wave \w offering|strong="H5930"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w choice|strong="H4005"\w* \w vows|strong="H5088"\w* \w which|strong="H3068"\w* \w you|strong="H6680"\w* \w vow|strong="H5088"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 12 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w rejoice|strong="H8055"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*—\w you|strong="H3588"\w*, \w and|strong="H1121"\w* \w your|strong="H3068"\w* \w sons|strong="H1121"\w*, \w your|strong="H3068"\w* \w daughters|strong="H1323"\w*, \w your|strong="H3068"\w* \w male|strong="H5650"\w* \w servants|strong="H5650"\w*, \w your|strong="H3068"\w* \w female|strong="H1323"\w* \w servants|strong="H5650"\w*, \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w Levite|strong="H3881"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w within|strong="H6440"\w* \w your|strong="H3068"\w* \w gates|strong="H8179"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w no|strong="H6440"\w* \w portion|strong="H2506"\w* \w nor|strong="H2506"\w* \w inheritance|strong="H5159"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w*. +\v 13 \w Be|strong="H4725"\w* \w careful|strong="H8104"\w* \w that|strong="H7200"\w* \w you|strong="H3605"\w* don’t \w offer|strong="H5927"\w* \w your|strong="H3605"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w in|strong="H4725"\w* \w every|strong="H3605"\w* \w place|strong="H4725"\w* \w that|strong="H7200"\w* \w you|strong="H3605"\w* \w see|strong="H7200"\w*; +\v 14 \w but|strong="H3588"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w place|strong="H4725"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* chooses \w in|strong="H3068"\w* \w one|strong="H3605"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w tribes|strong="H7626"\w*, \w there|strong="H8033"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w offer|strong="H5927"\w* \w your|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w*, \w and|strong="H3068"\w* \w there|strong="H8033"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w command|strong="H6680"\w* \w you|strong="H3588"\w*. +\p +\v 15 \w Yet|strong="H7535"\w* \w you|strong="H5414"\w* \w may|strong="H3068"\w* \w kill|strong="H2076"\w* \w and|strong="H3068"\w* eat \w meat|strong="H1320"\w* \w within|strong="H1320"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w gates|strong="H8179"\w*, \w after|strong="H5315"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w desire|strong="H5315"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w*, according \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w blessing|strong="H1293"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w*. \w The|strong="H3605"\w* \w unclean|strong="H2931"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w clean|strong="H2889"\w* \w may|strong="H3068"\w* eat \w of|strong="H3068"\w* \w it|strong="H5414"\w*, \w as|strong="H5315"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w gazelle|strong="H6643"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* deer. +\v 16 \w Only|strong="H7535"\w* \w you|strong="H5921"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* eat \w the|strong="H5921"\w* \w blood|strong="H1818"\w*. \w You|strong="H5921"\w* \w shall|strong="H3808"\w* \w pour|strong="H8210"\w* \w it|strong="H5921"\w* \w out|strong="H8210"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* earth \w like|strong="H3808"\w* \w water|strong="H4325"\w*. +\v 17 \w You|strong="H3605"\w* \w may|strong="H3201"\w* \w not|strong="H3808"\w* eat within \w your|strong="H3605"\w* \w gates|strong="H8179"\w* \w the|strong="H3605"\w* \w tithe|strong="H4643"\w* \w of|strong="H3027"\w* \w your|strong="H3605"\w* \w grain|strong="H1715"\w*, \w or|strong="H3808"\w* \w of|strong="H3027"\w* \w your|strong="H3605"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w*, \w or|strong="H3808"\w* \w of|strong="H3027"\w* \w your|strong="H3605"\w* \w oil|strong="H3323"\w*, \w or|strong="H3808"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1062"\w* \w of|strong="H3027"\w* \w your|strong="H3605"\w* \w herd|strong="H1241"\w* \w or|strong="H3808"\w* \w of|strong="H3027"\w* \w your|strong="H3605"\w* \w flock|strong="H6629"\w*, \w nor|strong="H3808"\w* \w any|strong="H3605"\w* \w of|strong="H3027"\w* \w your|strong="H3605"\w* \w vows|strong="H5088"\w* \w which|strong="H8179"\w* \w you|strong="H3605"\w* \w vow|strong="H5088"\w*, \w nor|strong="H3808"\w* \w your|strong="H3605"\w* free \w will|strong="H3027"\w* \w offerings|strong="H5071"\w*, \w nor|strong="H3808"\w* \w the|strong="H3605"\w* wave \w offering|strong="H8641"\w* \w of|strong="H3027"\w* \w your|strong="H3605"\w* \w hand|strong="H3027"\w*; +\v 18 \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* eat \w them|strong="H6440"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w place|strong="H4725"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w shall|strong="H3068"\w* choose: \w you|strong="H3588"\w*, \w your|strong="H3068"\w* \w son|strong="H1121"\w*, \w your|strong="H3068"\w* \w daughter|strong="H1323"\w*, \w your|strong="H3068"\w* \w male|strong="H5650"\w* \w servant|strong="H5650"\w*, \w your|strong="H3068"\w* \w female|strong="H1323"\w* \w servant|strong="H5650"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w Levite|strong="H3881"\w* \w who|strong="H3605"\w* \w is|strong="H3068"\w* \w within|strong="H6440"\w* \w your|strong="H3068"\w* \w gates|strong="H8179"\w*. \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w rejoice|strong="H8055"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w put|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w to|strong="H3068"\w*. +\v 19 \w Be|strong="H3117"\w* \w careful|strong="H8104"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* don’t \w forsake|strong="H5800"\w* \w the|strong="H3605"\w* \w Levite|strong="H3881"\w* \w as|strong="H3117"\w* \w long|strong="H3117"\w* \w as|strong="H3117"\w* \w you|strong="H3605"\w* \w live|strong="H3117"\w* \w in|strong="H5921"\w* \w your|strong="H3605"\w* land. +\p +\v 20 \w When|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w enlarges|strong="H7337"\w* \w your|strong="H3068"\w* \w border|strong="H1366"\w*, \w as|strong="H5315"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w promised|strong="H1696"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w say|strong="H1696"\w*, “\w I|strong="H3588"\w* \w want|strong="H5315"\w* \w to|strong="H1696"\w* eat \w meat|strong="H1320"\w*,” \w because|strong="H3588"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w* desires \w to|strong="H1696"\w* eat \w meat|strong="H1320"\w*, \w you|strong="H3588"\w* \w may|strong="H3068"\w* eat \w meat|strong="H1320"\w*, \w after|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w desire|strong="H5315"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w*. +\v 21 \w If|strong="H3588"\w* \w the|strong="H3605"\w* \w place|strong="H4725"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w shall|strong="H3068"\w* choose \w to|strong="H3068"\w* \w put|strong="H5414"\w* \w his|strong="H3605"\w* \w name|strong="H8034"\w* \w is|strong="H3068"\w* \w too|strong="H4480"\w* \w far|strong="H7368"\w* \w from|strong="H4480"\w* \w you|strong="H3588"\w*, \w then|strong="H5414"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w kill|strong="H2076"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w herd|strong="H1241"\w* \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w flock|strong="H6629"\w*, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H3588"\w*, \w as|strong="H5315"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w commanded|strong="H6680"\w* \w you|strong="H3588"\w*; \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w may|strong="H3068"\w* eat \w within|strong="H4480"\w* \w your|strong="H3068"\w* \w gates|strong="H8179"\w*, \w after|strong="H4480"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w desire|strong="H5315"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w*. +\v 22 \w Even|strong="H3651"\w* \w as|strong="H3651"\w* \w the|strong="H3651"\w* \w gazelle|strong="H6643"\w* \w and|strong="H3651"\w* \w as|strong="H3651"\w* \w the|strong="H3651"\w* deer \w is|strong="H3651"\w* eaten, \w so|strong="H3651"\w* \w you|strong="H3651"\w* \w shall|strong="H2889"\w* eat \w of|strong="H6643"\w* \w it|strong="H3651"\w*. \w The|strong="H3651"\w* \w unclean|strong="H2931"\w* \w and|strong="H3651"\w* \w the|strong="H3651"\w* \w clean|strong="H2889"\w* \w may|strong="H2889"\w* eat \w of|strong="H6643"\w* \w it|strong="H3651"\w* \w alike|strong="H3162"\w*. +\v 23 \w Only|strong="H7535"\w* \w be|strong="H3808"\w* \w sure|strong="H2388"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* don’t eat \w the|strong="H3588"\w* \w blood|strong="H1818"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w blood|strong="H1818"\w* \w is|strong="H1931"\w* \w the|strong="H3588"\w* \w life|strong="H5315"\w*. \w You|strong="H3588"\w* \w shall|strong="H5315"\w* \w not|strong="H3808"\w* eat \w the|strong="H3588"\w* \w life|strong="H5315"\w* \w with|strong="H5973"\w* \w the|strong="H3588"\w* \w meat|strong="H1320"\w*. +\v 24 \w You|strong="H5921"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* eat \w it|strong="H5921"\w*. \w You|strong="H5921"\w* \w shall|strong="H3808"\w* \w pour|strong="H8210"\w* \w it|strong="H5921"\w* \w out|strong="H8210"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* earth \w like|strong="H3808"\w* \w water|strong="H4325"\w*. +\v 25 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* eat \w it|strong="H3588"\w*, \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w may|strong="H3068"\w* \w go|strong="H3190"\w* \w well|strong="H3190"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w* \w and|strong="H1121"\w* \w with|strong="H3068"\w* \w your|strong="H3068"\w* \w children|strong="H1121"\w* \w after|strong="H3588"\w* \w you|strong="H3588"\w*, \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w do|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w right|strong="H3477"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*. +\v 26 \w Only|strong="H7535"\w* \w your|strong="H3068"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w* \w which|strong="H3068"\w* \w you|strong="H5375"\w* \w have|strong="H1961"\w*, \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w vows|strong="H5088"\w*, \w you|strong="H5375"\w* \w shall|strong="H3068"\w* \w take|strong="H5375"\w* \w and|strong="H3068"\w* \w go|strong="H1961"\w* \w to|strong="H3068"\w* \w the|strong="H5375"\w* \w place|strong="H4725"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w shall|strong="H3068"\w* choose. +\v 27 \w You|strong="H5921"\w* \w shall|strong="H3068"\w* \w offer|strong="H6213"\w* \w your|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w*, \w the|strong="H5921"\w* \w meat|strong="H1320"\w* \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w*, \w on|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w altar|strong="H4196"\w*. \w The|strong="H5921"\w* \w blood|strong="H1818"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w sacrifices|strong="H2077"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w poured|strong="H8210"\w* \w out|strong="H8210"\w* \w on|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w altar|strong="H4196"\w*, \w and|strong="H3068"\w* \w you|strong="H5921"\w* \w shall|strong="H3068"\w* eat \w the|strong="H5921"\w* \w meat|strong="H1320"\w*. +\v 28 \w Observe|strong="H8104"\w* \w and|strong="H1121"\w* \w hear|strong="H8085"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* \w words|strong="H1697"\w* \w which|strong="H3068"\w* \w I|strong="H3588"\w* \w command|strong="H6680"\w* \w you|strong="H3588"\w*, \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w may|strong="H3068"\w* \w go|strong="H3190"\w* \w well|strong="H3190"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w* \w and|strong="H1121"\w* \w with|strong="H3068"\w* \w your|strong="H3068"\w* \w children|strong="H1121"\w* \w after|strong="H3588"\w* \w you|strong="H3588"\w* \w forever|strong="H5769"\w*, \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w do|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w* \w and|strong="H1121"\w* \w right|strong="H3477"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w eyes|strong="H5869"\w*. +\p +\v 29 \w When|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w cuts|strong="H3772"\w* \w off|strong="H3772"\w* \w the|strong="H6440"\w* \w nations|strong="H1471"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w* \w where|strong="H8033"\w* \w you|strong="H3588"\w* \w go|strong="H3068"\w* \w in|strong="H3427"\w* \w to|strong="H3068"\w* \w dispossess|strong="H3423"\w* \w them|strong="H6440"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w dispossess|strong="H3423"\w* \w them|strong="H6440"\w* \w and|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w their|strong="H3068"\w* \w land|strong="H6440"\w*, +\v 30 \w be|strong="H1571"\w* \w careful|strong="H8104"\w* \w that|strong="H1471"\w* \w you|strong="H6440"\w* \w are|strong="H1471"\w* \w not|strong="H6213"\w* \w ensnared|strong="H5367"\w* \w to|strong="H6213"\w* \w follow|strong="H6213"\w* \w them|strong="H6440"\w* \w after|strong="H1875"\w* \w they|strong="H3651"\w* \w are|strong="H1471"\w* \w destroyed|strong="H8045"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w and|strong="H6440"\w* \w that|strong="H1471"\w* \w you|strong="H6440"\w* \w not|strong="H6213"\w* \w inquire|strong="H1875"\w* \w after|strong="H1875"\w* \w their|strong="H6440"\w* gods, saying, “\w How|strong="H3651"\w* \w do|strong="H6213"\w* \w these|strong="H6213"\w* \w nations|strong="H1471"\w* \w serve|strong="H5647"\w* \w their|strong="H6440"\w* gods? \w I|strong="H3651"\w* \w will|strong="H1471"\w* \w do|strong="H6213"\w* \w likewise|strong="H3651"\w*.” +\v 31 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w do|strong="H6213"\w* \w so|strong="H3651"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*; \w for|strong="H3588"\w* \w every|strong="H3605"\w* \w abomination|strong="H8441"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w which|strong="H3068"\w* \w he|strong="H3588"\w* \w hates|strong="H8130"\w*, \w they|strong="H3588"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w to|strong="H3068"\w* \w their|strong="H3605"\w* gods; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w even|strong="H1571"\w* \w burn|strong="H8313"\w* \w their|strong="H3605"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w their|strong="H3605"\w* \w daughters|strong="H1323"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* fire \w to|strong="H3068"\w* \w their|strong="H3605"\w* gods. +\v 32 Whatever thing I command you, that you shall observe to do. You shall not add to it, nor take away from it. +\c 13 +\p +\v 1 If \w a|strong="H3068"\w* prophet \w or|strong="H3808"\w* \w a|strong="H3068"\w* dreamer \w of|strong="H1697"\w* dreams arises \w among|strong="H4480"\w* \w you|strong="H6680"\w*, \w and|strong="H6213"\w* \w he|strong="H6213"\w* gives \w you|strong="H6680"\w* \w a|strong="H3068"\w* sign \w or|strong="H3808"\w* \w a|strong="H3068"\w* wonder, +\v 2 \w and|strong="H6965"\w* \w the|strong="H3588"\w* \w sign|strong="H4159"\w* \w or|strong="H3588"\w* \w the|strong="H3588"\w* \w wonder|strong="H4159"\w* \w comes|strong="H5414"\w* \w to|strong="H5414"\w* \w pass|strong="H6965"\w*, \w of|strong="H5030"\w* \w which|strong="H5030"\w* \w he|strong="H3588"\w* spoke \w to|strong="H5414"\w* \w you|strong="H3588"\w*, saying, “\w Let|strong="H5414"\w*’s \w go|strong="H6965"\w* \w after|strong="H3588"\w* other gods” (\w which|strong="H5030"\w* \w you|strong="H3588"\w* \w have|strong="H5030"\w* \w not|strong="H5414"\w* known) “\w and|strong="H6965"\w* \w let|strong="H5414"\w*’s serve \w them|strong="H5414"\w*,” +\v 3 \w you|strong="H3045"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* listen \w to|strong="H1696"\w* \w the|strong="H5647"\w* words \w of|strong="H5647"\w* \w that|strong="H3045"\w* \w prophet|strong="H1696"\w*, \w or|strong="H3808"\w* \w to|strong="H1696"\w* \w that|strong="H3045"\w* dreamer \w of|strong="H5647"\w* dreams; \w for|strong="H3045"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3045"\w* \w God|strong="H3808"\w* \w is|strong="H1696"\w* testing \w you|strong="H3045"\w*, \w to|strong="H1696"\w* \w know|strong="H3045"\w* \w whether|strong="H3045"\w* \w you|strong="H3045"\w* love \w Yahweh|strong="H3068"\w* \w your|strong="H3045"\w* \w God|strong="H3808"\w* \w with|strong="H1696"\w* \w all|strong="H3045"\w* \w your|strong="H3045"\w* heart \w and|strong="H3212"\w* \w with|strong="H1696"\w* \w all|strong="H3045"\w* \w your|strong="H3045"\w* soul. +\v 4 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* walk \w after|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, fear \w him|strong="H1931"\w*, \w keep|strong="H8085"\w* \w his|strong="H3605"\w* \w commandments|strong="H1697"\w*, \w and|strong="H3068"\w* \w obey|strong="H8085"\w* \w his|strong="H3605"\w* voice. \w You|strong="H3588"\w* \w shall|strong="H3068"\w* serve \w him|strong="H1931"\w*, \w and|strong="H3068"\w* cling \w to|strong="H3068"\w* \w him|strong="H1931"\w*. +\v 5 \w That|strong="H8085"\w* prophet, \w or|strong="H8085"\w* \w that|strong="H8085"\w* dreamer \w of|strong="H3068"\w* dreams, \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w put|strong="H3068"\w* \w to|strong="H3212"\w* death, \w because|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H8085"\w* rebellion \w against|strong="H3212"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w who|strong="H3068"\w* \w brought|strong="H3212"\w* \w you|strong="H5647"\w* \w out|strong="H3212"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* land \w of|strong="H3068"\w* Egypt \w and|strong="H3068"\w* redeemed \w you|strong="H5647"\w* \w out|strong="H3212"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* house \w of|strong="H3068"\w* \w bondage|strong="H5647"\w*, \w to|strong="H3212"\w* draw \w you|strong="H5647"\w* aside \w out|strong="H3212"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* \w way|strong="H3212"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w commanded|strong="H4687"\w* \w you|strong="H5647"\w* \w to|strong="H3212"\w* \w walk|strong="H3212"\w* \w in|strong="H3068"\w*. \w So|strong="H8085"\w* \w you|strong="H5647"\w* \w shall|strong="H3068"\w* remove \w the|strong="H8085"\w* evil \w from|strong="H8085"\w* among \w you|strong="H5647"\w*. +\p +\v 6 \w If|strong="H3588"\w* \w your|strong="H3068"\w* brother, \w the|strong="H5921"\w* son \w of|strong="H1004"\w* \w your|strong="H3068"\w* mother, \w or|strong="H4480"\w* \w your|strong="H3068"\w* son, \w or|strong="H4480"\w* \w your|strong="H3068"\w* \w daughter|strong="H1004"\w*, \w or|strong="H4480"\w* \w the|strong="H5921"\w* \w wife|strong="H1696"\w* \w of|strong="H1004"\w* \w your|strong="H3068"\w* bosom, \w or|strong="H4480"\w* \w your|strong="H3068"\w* friend \w who|strong="H1931"\w* \w is|strong="H3068"\w* \w as|strong="H3068"\w* \w your|strong="H3068"\w* own soul, entices \w you|strong="H3588"\w* secretly, \w saying|strong="H1696"\w*, “\w Let|strong="H3212"\w*’s \w go|strong="H3212"\w* \w and|strong="H3068"\w* serve other gods”—\w which|strong="H1931"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w not|strong="H3588"\w* \w known|strong="H3318"\w*, \w you|strong="H3588"\w*, \w nor|strong="H4480"\w* \w your|strong="H3068"\w* fathers; +\v 7 \w of|strong="H1121"\w* \w the|strong="H3588"\w* gods \w of|strong="H1121"\w* \w the|strong="H3588"\w* peoples \w who|strong="H1121"\w* \w are|strong="H1121"\w* around \w you|strong="H3588"\w*, \w near|strong="H3808"\w* \w to|strong="H3212"\w* \w you|strong="H3588"\w*, \w or|strong="H3808"\w* \w far|strong="H5315"\w* \w off|strong="H7453"\w* \w from|strong="H5315"\w* \w you|strong="H3588"\w*, \w from|strong="H5315"\w* \w the|strong="H3588"\w* \w one|strong="H3808"\w* end \w of|strong="H1121"\w* \w the|strong="H3588"\w* earth \w even|strong="H3588"\w* \w to|strong="H3212"\w* \w the|strong="H3588"\w* \w other|strong="H7453"\w* end \w of|strong="H1121"\w* \w the|strong="H3588"\w* earth— +\v 8 \w you|strong="H5704"\w* \w shall|strong="H5971"\w* \w not|strong="H5971"\w* consent \w to|strong="H5704"\w* \w him|strong="H5439"\w* \w nor|strong="H4480"\w* listen \w to|strong="H5704"\w* \w him|strong="H5439"\w*; \w neither|strong="H4480"\w* \w shall|strong="H5971"\w* \w your|strong="H4480"\w* eye pity \w him|strong="H5439"\w*, \w neither|strong="H4480"\w* \w shall|strong="H5971"\w* \w you|strong="H5704"\w* spare, \w neither|strong="H4480"\w* \w shall|strong="H5971"\w* \w you|strong="H5704"\w* conceal \w him|strong="H5439"\w*; +\v 9 \w but|strong="H3808"\w* \w you|strong="H5921"\w* \w shall|strong="H5869"\w* \w surely|strong="H8085"\w* kill \w him|strong="H5921"\w*. \w Your|strong="H5921"\w* hand \w shall|strong="H5869"\w* \w be|strong="H3808"\w* first \w on|strong="H5921"\w* \w him|strong="H5921"\w* \w to|strong="H5921"\w* put \w him|strong="H5921"\w* \w to|strong="H5921"\w* death, \w and|strong="H5869"\w* afterwards \w the|strong="H5921"\w* hands \w of|strong="H5869"\w* \w all|strong="H5921"\w* \w the|strong="H5921"\w* \w people|strong="H3808"\w*. +\v 10 \w You|strong="H3588"\w* \w shall|strong="H5971"\w* stone \w him|strong="H3027"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w* \w with|strong="H3027"\w* stones, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H1961"\w* sought \w to|strong="H4191"\w* \w draw|strong="H5971"\w* \w you|strong="H3588"\w* \w away|strong="H3605"\w* \w from|strong="H3027"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3605"\w* \w God|strong="H3027"\w*, \w who|strong="H3605"\w* \w brought|strong="H1961"\w* \w you|strong="H3588"\w* \w out|strong="H3605"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* land \w of|strong="H3027"\w* Egypt, \w out|strong="H3605"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* house \w of|strong="H3027"\w* bondage. +\v 11 \w All|strong="H5921"\w* Israel \w shall|strong="H3068"\w* hear, \w and|strong="H3068"\w* fear, \w and|strong="H3068"\w* \w shall|strong="H3068"\w* \w not|strong="H3588"\w* \w do|strong="H3068"\w* \w any|strong="H3588"\w* \w more|strong="H3588"\w* wickedness \w like|strong="H3318"\w* \w this|strong="H3588"\w* \w among|strong="H5921"\w* \w you|strong="H3588"\w*. +\p +\v 12 If \w you|strong="H3605"\w* \w hear|strong="H8085"\w* \w about|strong="H1697"\w* \w one|strong="H2088"\w* \w of|strong="H1697"\w* \w your|strong="H3605"\w* cities, \w which|strong="H1697"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3605"\w* \w God|strong="H3808"\w* gives \w you|strong="H3605"\w* \w to|strong="H3478"\w* dwell \w there|strong="H2088"\w*, \w that|strong="H3605"\w* +\v 13 \w certain|strong="H8085"\w* wicked fellows \w have|strong="H3068"\w* \w gone|strong="H3068"\w* \w out|strong="H5414"\w* \w from|strong="H8085"\w* \w among|strong="H3427"\w* \w you|strong="H3588"\w* \w and|strong="H3068"\w* \w have|strong="H3068"\w* drawn \w away|strong="H5414"\w* \w the|strong="H8085"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w city|strong="H5892"\w*, saying, “\w Let|strong="H5414"\w*’s \w go|strong="H3068"\w* \w and|strong="H3068"\w* serve other gods,” \w which|strong="H3068"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w not|strong="H5414"\w* \w known|strong="H8085"\w*, +\v 14 \w then|strong="H3318"\w* \w you|strong="H3045"\w* \w shall|strong="H1121"\w* inquire, \w investigate|strong="H3045"\w*, \w and|strong="H1121"\w* ask diligently. \w Behold|strong="H3808"\w*, \w if|strong="H1121"\w* \w it|strong="H3045"\w* \w is|strong="H5892"\w* true, \w and|strong="H1121"\w* \w the|strong="H5647"\w* thing \w certain|strong="H3045"\w*, \w that|strong="H3045"\w* \w such|strong="H3808"\w* abomination \w was|strong="H5892"\w* \w done|strong="H5647"\w* \w among|strong="H7130"\w* \w you|strong="H3045"\w*, +\v 15 \w you|strong="H6213"\w* \w shall|strong="H1697"\w* \w surely|strong="H6213"\w* strike \w the|strong="H6213"\w* inhabitants \w of|strong="H1697"\w* \w that|strong="H1697"\w* city \w with|strong="H6213"\w* \w the|strong="H6213"\w* edge \w of|strong="H1697"\w* \w the|strong="H6213"\w* sword, destroying \w it|strong="H6213"\w* utterly, \w with|strong="H6213"\w* \w all|strong="H6213"\w* \w that|strong="H1697"\w* \w is|strong="H1697"\w* \w therein|strong="H7130"\w* \w and|strong="H6213"\w* \w its|strong="H6213"\w* livestock, \w with|strong="H6213"\w* \w the|strong="H6213"\w* edge \w of|strong="H1697"\w* \w the|strong="H6213"\w* sword. +\v 16 \w You|strong="H3605"\w* \w shall|strong="H5892"\w* gather \w all|strong="H3605"\w* \w its|strong="H3605"\w* plunder \w into|strong="H2719"\w* \w the|strong="H3605"\w* middle \w of|strong="H3427"\w* \w its|strong="H3605"\w* street, \w and|strong="H5892"\w* \w shall|strong="H5892"\w* burn \w with|strong="H3427"\w* fire \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w with|strong="H3427"\w* \w all|strong="H3605"\w* \w of|strong="H3427"\w* \w its|strong="H3605"\w* plunder, \w to|strong="H6310"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3605"\w* God. \w It|strong="H1931"\w* \w shall|strong="H5892"\w* \w be|strong="H5892"\w* \w a|strong="H3068"\w* heap \w forever|strong="H3605"\w*. \w It|strong="H1931"\w* \w shall|strong="H5892"\w* \w not|strong="H5892"\w* \w be|strong="H5892"\w* built again. +\v 17 \w Nothing|strong="H3808"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* devoted \w thing|strong="H3605"\w* \w shall|strong="H3068"\w* cling \w to|strong="H3068"\w* \w your|strong="H3068"\w* hand, \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w may|strong="H1961"\w* \w turn|strong="H6908"\w* \w from|strong="H3068"\w* \w the|strong="H3605"\w* fierceness \w of|strong="H3068"\w* \w his|strong="H3605"\w* anger \w and|strong="H3068"\w* \w show|strong="H1961"\w* \w you|strong="H3605"\w* \w mercy|strong="H3068"\w*, \w and|strong="H3068"\w* \w have|strong="H1961"\w* compassion \w on|strong="H3068"\w* \w you|strong="H3605"\w* \w and|strong="H3068"\w* multiply \w you|strong="H3605"\w*, \w as|strong="H1961"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* sworn \w to|strong="H3068"\w* \w your|strong="H3068"\w* fathers, +\v 18 \w when|strong="H7725"\w* \w you|strong="H5414"\w* listen \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s voice, \w to|strong="H7725"\w* \w keep|strong="H1692"\w* \w all|strong="H5414"\w* \w his|strong="H5414"\w* commandments \w which|strong="H3068"\w* \w I|strong="H5414"\w* \w command|strong="H3027"\w* \w you|strong="H5414"\w* today, \w to|strong="H7725"\w* \w do|strong="H3068"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w right|strong="H3068"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s eyes. +\c 14 +\p +\v 1 \w You|strong="H7760"\w* \w are|strong="H1121"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \w You|strong="H7760"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w cut|strong="H1413"\w* \w yourselves|strong="H5869"\w*, \w nor|strong="H3808"\w* \w make|strong="H7760"\w* \w any|strong="H3808"\w* \w baldness|strong="H7144"\w* between \w your|strong="H3068"\w* \w eyes|strong="H5869"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w dead|strong="H4191"\w*. +\v 2 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H5971"\w* \w a|strong="H3068"\w* \w holy|strong="H6918"\w* \w people|strong="H5971"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* chosen \w you|strong="H3588"\w* \w to|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w for|strong="H3588"\w* \w his|strong="H3605"\w* \w own|strong="H1961"\w* \w possession|strong="H5459"\w*, \w above|strong="H5921"\w* \w all|strong="H3605"\w* \w peoples|strong="H5971"\w* \w who|strong="H3605"\w* \w are|strong="H5971"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w face|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* earth. +\p +\v 3 \w You|strong="H3605"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* eat \w any|strong="H3605"\w* \w abominable|strong="H8441"\w* \w thing|strong="H8441"\w*. +\v 4 \w These|strong="H2063"\w* are \w the|strong="H7716"\w* animals which you may eat: \w the|strong="H7716"\w* \w ox|strong="H7794"\w*, \w the|strong="H7716"\w* \w sheep|strong="H7716"\w*, \w the|strong="H7716"\w* \w goat|strong="H5795"\w*, +\v 5 the \w deer|strong="H3180"\w*, the \w gazelle|strong="H6643"\w*, the \w roebuck|strong="H6643"\w*, the wild goat, the \w ibex|strong="H1788"\w*, the \w antelope|strong="H8377"\w*, \w and|strong="H6643"\w* the \w chamois|strong="H2169"\w*. +\v 6 \w Every|strong="H3605"\w* animal \w that|strong="H3605"\w* \w parts|strong="H6541"\w* \w the|strong="H3605"\w* \w hoof|strong="H6541"\w*, \w and|strong="H5927"\w* \w has|strong="H3605"\w* \w the|strong="H3605"\w* \w hoof|strong="H6541"\w* \w split|strong="H8156"\w* \w in|strong="H5927"\w* \w two|strong="H8147"\w* \w and|strong="H5927"\w* \w chews|strong="H5927"\w* \w the|strong="H3605"\w* \w cud|strong="H1625"\w*, among \w the|strong="H3605"\w* animals, \w you|strong="H3605"\w* may eat. +\v 7 \w Nevertheless|strong="H3588"\w* \w these|strong="H2088"\w* \w you|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* eat \w of|strong="H3808"\w* \w them|strong="H1992"\w* \w that|strong="H3588"\w* \w chew|strong="H5927"\w* \w the|strong="H3588"\w* \w cud|strong="H1625"\w*, \w or|strong="H3808"\w* \w of|strong="H3808"\w* \w those|strong="H1992"\w* \w who|strong="H1992"\w* \w have|strong="H3588"\w* \w the|strong="H3588"\w* \w hoof|strong="H6541"\w* \w split|strong="H8156"\w*: \w the|strong="H3588"\w* \w camel|strong="H1581"\w*, \w the|strong="H3588"\w* hare, \w and|strong="H5927"\w* \w the|strong="H3588"\w* rabbit. \w Because|strong="H3588"\w* \w they|strong="H1992"\w* \w chew|strong="H5927"\w* \w the|strong="H3588"\w* \w cud|strong="H1625"\w* \w but|strong="H3588"\w* don’t \w part|strong="H1992"\w* \w the|strong="H3588"\w* \w hoof|strong="H6541"\w*, \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w unclean|strong="H2931"\w* \w to|strong="H5927"\w* \w you|strong="H3588"\w*. +\v 8 \w The|strong="H3588"\w* \w pig|strong="H2386"\w*, \w because|strong="H3588"\w* \w it|strong="H1931"\w* \w has|strong="H3588"\w* \w a|strong="H3068"\w* split \w hoof|strong="H6541"\w* \w but|strong="H3588"\w* doesn’t chew \w the|strong="H3588"\w* \w cud|strong="H1625"\w*, \w is|strong="H1931"\w* \w unclean|strong="H2931"\w* \w to|strong="H1320"\w* \w you|strong="H3588"\w*. \w You|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* eat \w their|strong="H3588"\w* \w meat|strong="H1320"\w*. \w You|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w touch|strong="H5060"\w* \w their|strong="H3588"\w* \w carcasses|strong="H5038"\w*. +\v 9 \w These|strong="H2088"\w* \w you|strong="H3605"\w* \w may|strong="H4325"\w* eat \w of|strong="H4325"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w are|strong="H4325"\w* \w in|strong="H2088"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w*: \w you|strong="H3605"\w* \w may|strong="H4325"\w* eat \w whatever|strong="H3605"\w* \w has|strong="H2088"\w* \w fins|strong="H5579"\w* \w and|strong="H4325"\w* \w scales|strong="H7193"\w*. +\v 10 \w You|strong="H3605"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* eat \w whatever|strong="H3605"\w* doesn’t \w have|strong="H3605"\w* \w fins|strong="H5579"\w* \w and|strong="H5579"\w* \w scales|strong="H7193"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w unclean|strong="H2931"\w* \w to|strong="H3808"\w* \w you|strong="H3605"\w*. +\v 11 \w Of|strong="H3605"\w* \w all|strong="H3605"\w* \w clean|strong="H2889"\w* \w birds|strong="H6833"\w* \w you|strong="H3605"\w* \w may|strong="H2889"\w* eat. +\v 12 \w But|strong="H3808"\w* \w these|strong="H2088"\w* \w are|strong="H1992"\w* \w they|strong="H1992"\w* \w of|strong="H3808"\w* \w which|strong="H1992"\w* \w you|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* eat: \w the|strong="H3808"\w* \w eagle|strong="H5404"\w*, \w the|strong="H3808"\w* \w vulture|strong="H6538"\w*, \w the|strong="H3808"\w* osprey, +\v 13 the red kite, the falcon, the kite of any \w kind|strong="H4327"\w*, +\v 14 \w every|strong="H3605"\w* \w raven|strong="H6158"\w* \w of|strong="H3605"\w* \w any|strong="H3605"\w* \w kind|strong="H4327"\w*, +\v 15 \w the|strong="H1323"\w* \w ostrich|strong="H3284"\w*, \w the|strong="H1323"\w* \w owl|strong="H8464"\w*, \w the|strong="H1323"\w* seagull, \w the|strong="H1323"\w* \w hawk|strong="H5322"\w* \w of|strong="H1323"\w* any \w kind|strong="H4327"\w*, +\v 16 \w the|strong="H3563"\w* \w little|strong="H3563"\w* \w owl|strong="H3244"\w*, \w the|strong="H3563"\w* \w great|strong="H3244"\w* \w owl|strong="H3244"\w*, \w the|strong="H3563"\w* horned \w owl|strong="H3244"\w*, +\v 17 the \w pelican|strong="H6893"\w*, the \w vulture|strong="H7360"\w*, the \w cormorant|strong="H7994"\w*, +\v 18 the \w stork|strong="H2624"\w*, the heron \w after|strong="H4327"\w* its \w kind|strong="H4327"\w*, the \w hoopoe|strong="H1744"\w*, and the \w bat|strong="H5847"\w*. +\v 19 \w All|strong="H3605"\w* \w winged|strong="H5775"\w* \w creeping|strong="H2931"\w* \w things|strong="H3605"\w* \w are|strong="H5775"\w* \w unclean|strong="H2931"\w* \w to|strong="H3808"\w* \w you|strong="H3605"\w*. \w They|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* eaten. +\v 20 \w Of|strong="H3605"\w* \w all|strong="H3605"\w* \w clean|strong="H2889"\w* \w birds|strong="H5775"\w* \w you|strong="H3605"\w* \w may|strong="H2889"\w* eat. +\p +\v 21 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* eat \w of|strong="H3068"\w* \w anything|strong="H3605"\w* \w that|strong="H3588"\w* \w dies|strong="H5038"\w* \w of|strong="H3068"\w* \w itself|strong="H5038"\w*. \w You|strong="H3588"\w* \w may|strong="H3068"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w foreigner|strong="H5237"\w* \w living|strong="H3605"\w* \w among|strong="H5971"\w* \w you|strong="H3588"\w* \w who|strong="H3605"\w* \w is|strong="H3068"\w* within \w your|strong="H3068"\w* \w gates|strong="H8179"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w may|strong="H3068"\w* eat \w it|strong="H5414"\w*; \w or|strong="H3808"\w* \w you|strong="H3588"\w* \w may|strong="H3068"\w* \w sell|strong="H4376"\w* \w it|strong="H5414"\w* \w to|strong="H3068"\w* \w a|strong="H3068"\w* \w foreigner|strong="H5237"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H5971"\w* \w a|strong="H3068"\w* \w holy|strong="H6918"\w* \w people|strong="H5971"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\p \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w boil|strong="H1310"\w* \w a|strong="H3068"\w* \w young|strong="H1423"\w* \w goat|strong="H1423"\w* \w in|strong="H3068"\w* \w its|strong="H3605"\w* mother’s \w milk|strong="H2461"\w*. +\p +\v 22 \w You|strong="H3605"\w* \w shall|strong="H2233"\w* \w surely|strong="H3318"\w* \w tithe|strong="H6237"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w increase|strong="H8393"\w* \w of|strong="H8141"\w* \w your|strong="H3605"\w* \w seed|strong="H2233"\w*, \w that|strong="H3605"\w* \w which|strong="H7704"\w* \w comes|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H8141"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w year|strong="H8141"\w* \w by|strong="H8141"\w* \w year|strong="H8141"\w*. +\v 23 \w You|strong="H6440"\w* \w shall|strong="H3068"\w* eat \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w place|strong="H4725"\w* \w which|strong="H3068"\w* \w he|strong="H3117"\w* chooses \w to|strong="H3068"\w* cause \w his|strong="H3605"\w* \w name|strong="H8034"\w* \w to|strong="H3068"\w* \w dwell|strong="H7931"\w*, \w the|strong="H3605"\w* \w tithe|strong="H4643"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w grain|strong="H1715"\w*, \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w*, \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w oil|strong="H3323"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1062"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w herd|strong="H1241"\w* \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w flock|strong="H6629"\w*; \w that|strong="H3605"\w* \w you|strong="H6440"\w* \w may|strong="H3068"\w* \w learn|strong="H3925"\w* \w to|strong="H3068"\w* \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w always|strong="H3605"\w*. +\v 24 \w If|strong="H3588"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w is|strong="H3068"\w* \w too|strong="H4480"\w* \w long|strong="H7235"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*, \w so|strong="H4480"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H3068"\w* \w not|strong="H3808"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w carry|strong="H5375"\w* \w it|strong="H7760"\w* \w because|strong="H3588"\w* \w the|strong="H3588"\w* \w place|strong="H4725"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w shall|strong="H3068"\w* choose \w to|strong="H3201"\w* \w set|strong="H7760"\w* \w his|strong="H5375"\w* \w name|strong="H8034"\w* \w there|strong="H8033"\w* \w is|strong="H3068"\w* \w too|strong="H4480"\w* \w far|strong="H7368"\w* \w from|strong="H4480"\w* \w you|strong="H3588"\w*, \w when|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w blesses|strong="H1288"\w* \w you|strong="H3588"\w*, +\v 25 \w then|strong="H1980"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w turn|strong="H5414"\w* \w it|strong="H5414"\w* \w into|strong="H1980"\w* \w money|strong="H3701"\w*, \w bind|strong="H6887"\w* \w up|strong="H5414"\w* \w the|strong="H5414"\w* \w money|strong="H3701"\w* \w in|strong="H1980"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*, \w and|strong="H1980"\w* \w shall|strong="H3068"\w* \w go|strong="H1980"\w* \w to|strong="H1980"\w* \w the|strong="H5414"\w* \w place|strong="H4725"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w shall|strong="H3068"\w* choose. +\v 26 \w You|strong="H5414"\w* \w shall|strong="H3068"\w* trade \w the|strong="H3605"\w* \w money|strong="H3701"\w* \w for|strong="H6440"\w* \w whatever|strong="H3605"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w* \w desires|strong="H7592"\w*: \w for|strong="H6440"\w* \w cattle|strong="H1241"\w*, \w or|strong="H3196"\w* \w for|strong="H6440"\w* \w sheep|strong="H6629"\w*, \w or|strong="H3196"\w* \w for|strong="H6440"\w* \w wine|strong="H3196"\w*, \w or|strong="H3196"\w* \w for|strong="H6440"\w* \w strong|strong="H7941"\w* \w drink|strong="H7941"\w*, \w or|strong="H3196"\w* \w for|strong="H6440"\w* \w whatever|strong="H3605"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w* \w asks|strong="H7592"\w* \w of|strong="H1004"\w* \w you|strong="H5414"\w*. \w You|strong="H5414"\w* \w shall|strong="H3068"\w* eat \w there|strong="H8033"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w rejoice|strong="H8055"\w*, \w you|strong="H5414"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w household|strong="H1004"\w*. +\v 27 \w You|strong="H3588"\w* \w shall|strong="H3881"\w* \w not|strong="H3808"\w* \w forsake|strong="H5800"\w* \w the|strong="H3588"\w* \w Levite|strong="H3881"\w* \w who|strong="H3881"\w* \w is|strong="H5159"\w* \w within|strong="H5973"\w* \w your|strong="H3588"\w* \w gates|strong="H8179"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w no|strong="H3808"\w* \w portion|strong="H2506"\w* \w nor|strong="H3808"\w* \w inheritance|strong="H5159"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*. +\v 28 \w At|strong="H3318"\w* \w the|strong="H3605"\w* \w end|strong="H7097"\w* \w of|strong="H8141"\w* \w every|strong="H3605"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w* \w you|strong="H3605"\w* \w shall|strong="H1931"\w* \w bring|strong="H3318"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tithe|strong="H4643"\w* \w of|strong="H8141"\w* \w your|strong="H3605"\w* \w increase|strong="H8393"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w same|strong="H1931"\w* \w year|strong="H8141"\w*, \w and|strong="H8141"\w* \w shall|strong="H1931"\w* store \w it|strong="H1931"\w* within \w your|strong="H3605"\w* \w gates|strong="H8179"\w*. +\v 29 \w The|strong="H3605"\w* \w Levite|strong="H3881"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w no|strong="H6213"\w* \w portion|strong="H2506"\w* \w nor|strong="H2506"\w* \w inheritance|strong="H5159"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*, \w as|strong="H6213"\w* \w well|strong="H5973"\w* \w as|strong="H6213"\w* \w the|strong="H3605"\w* \w foreigner|strong="H1616"\w* \w living|strong="H3605"\w* \w among|strong="H5973"\w* \w you|strong="H3588"\w*, \w the|strong="H3605"\w* \w fatherless|strong="H3490"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* widow \w who|strong="H3605"\w* \w are|strong="H3027"\w* \w within|strong="H5973"\w* \w your|strong="H3068"\w* \w gates|strong="H8179"\w* \w shall|strong="H3068"\w* come, \w and|strong="H3068"\w* \w shall|strong="H3068"\w* eat \w and|strong="H3068"\w* \w be|strong="H3027"\w* \w satisfied|strong="H7646"\w*; \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w may|strong="H3068"\w* \w bless|strong="H1288"\w* \w you|strong="H3588"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w which|strong="H3068"\w* \w you|strong="H3588"\w* \w do|strong="H6213"\w*. +\c 15 +\p +\v 1 \w At|strong="H6213"\w* \w the|strong="H6213"\w* \w end|strong="H7093"\w* \w of|strong="H8141"\w* \w every|strong="H6213"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w*, \w you|strong="H6213"\w* \w shall|strong="H8141"\w* cancel debts. +\v 2 \w This|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H3605"\w* \w way|strong="H1697"\w* \w it|strong="H7121"\w* \w shall|strong="H3068"\w* \w be|strong="H3808"\w* \w done|strong="H3027"\w*: \w every|strong="H3605"\w* \w creditor|strong="H5383"\w* \w shall|strong="H3068"\w* \w release|strong="H8059"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w lent|strong="H5383"\w* \w to|strong="H3068"\w* \w his|strong="H3605"\w* \w neighbor|strong="H7453"\w*. \w He|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* require payment \w from|strong="H3027"\w* \w his|strong="H3605"\w* \w neighbor|strong="H7453"\w* \w and|strong="H3068"\w* \w his|strong="H3605"\w* \w brother|strong="H7453"\w*, \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w release|strong="H8059"\w* \w has|strong="H3068"\w* \w been|strong="H3808"\w* \w proclaimed|strong="H7121"\w*. +\v 3 \w Of|strong="H3027"\w* \w a|strong="H3068"\w* \w foreigner|strong="H5237"\w* \w you|strong="H3027"\w* \w may|strong="H1961"\w* require \w it|strong="H1961"\w*; \w but|strong="H1961"\w* whatever \w of|strong="H3027"\w* yours \w is|strong="H3027"\w* \w with|strong="H3027"\w* \w your|strong="H1961"\w* brother, \w your|strong="H1961"\w* \w hand|strong="H3027"\w* \w shall|strong="H3027"\w* \w release|strong="H8058"\w*. +\v 4 \w However|strong="H3588"\w* \w there|strong="H1961"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w no|strong="H3808"\w* \w poor|strong="H3423"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w* (\w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w surely|strong="H3588"\w* \w bless|strong="H1288"\w* \w you|strong="H3588"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w land|strong="H5159"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H3588"\w* \w for|strong="H3588"\w* \w an|strong="H1961"\w* \w inheritance|strong="H5159"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w*) +\v 5 if \w only|strong="H7535"\w* \w you|strong="H6680"\w* \w diligently|strong="H8085"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w*, \w to|strong="H3068"\w* \w observe|strong="H8104"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w commandment|strong="H4687"\w* \w which|strong="H3068"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w* \w today|strong="H3117"\w*. +\v 6 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w bless|strong="H1288"\w* \w you|strong="H3588"\w*, \w as|strong="H3068"\w* \w he|strong="H3588"\w* \w promised|strong="H1696"\w* \w you|strong="H3588"\w*. \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w lend|strong="H5670"\w* \w to|strong="H1696"\w* \w many|strong="H7227"\w* \w nations|strong="H1471"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w borrow|strong="H5670"\w*. \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w rule|strong="H4910"\w* \w over|strong="H4910"\w* \w many|strong="H7227"\w* \w nations|strong="H1471"\w*, \w but|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w rule|strong="H4910"\w* \w over|strong="H4910"\w* \w you|strong="H3588"\w*. +\v 7 \w If|strong="H3588"\w* \w a|strong="H3068"\w* poor \w man|strong="H8179"\w*, \w one|strong="H3808"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* brothers, \w is|strong="H3068"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w* within \w any|strong="H5414"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w gates|strong="H8179"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H3588"\w*, \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* harden \w your|strong="H3068"\w* \w heart|strong="H3824"\w*, \w nor|strong="H3808"\w* \w shut|strong="H7092"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w from|strong="H3027"\w* \w your|strong="H3068"\w* poor brother; +\v 8 \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3027"\w* \w surely|strong="H3588"\w* \w open|strong="H6605"\w* \w your|strong="H3588"\w* \w hand|strong="H3027"\w* \w to|strong="H3027"\w* \w him|strong="H3027"\w*, \w and|strong="H3027"\w* \w shall|strong="H3027"\w* \w surely|strong="H3588"\w* \w lend|strong="H5670"\w* \w him|strong="H3027"\w* \w sufficient|strong="H1767"\w* \w for|strong="H3588"\w* \w his|strong="H3027"\w* \w need|strong="H4270"\w*, \w which|strong="H3588"\w* \w he|strong="H3588"\w* \w lacks|strong="H2637"\w*. +\v 9 \w Beware|strong="H8104"\w* \w that|strong="H3068"\w* \w there|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w wicked|strong="H1100"\w* \w thought|strong="H5869"\w* \w in|strong="H8141"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w*, \w saying|strong="H1697"\w*, “\w The|strong="H5921"\w* \w seventh|strong="H7651"\w* \w year|strong="H8141"\w*, \w the|strong="H5921"\w* \w year|strong="H8141"\w* \w of|strong="H3068"\w* \w release|strong="H8059"\w*, \w is|strong="H3068"\w* \w at|strong="H5921"\w* \w hand|strong="H5414"\w*,” \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w eye|strong="H5869"\w* \w be|strong="H1961"\w* \w evil|strong="H7489"\w* \w against|strong="H5921"\w* \w your|strong="H3068"\w* poor brother \w and|strong="H3068"\w* \w you|strong="H5414"\w* \w give|strong="H5414"\w* \w him|strong="H5414"\w* \w nothing|strong="H3808"\w*; \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w cry|strong="H7121"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w against|strong="H5921"\w* \w you|strong="H5414"\w*, \w and|strong="H3068"\w* \w it|strong="H5414"\w* \w be|strong="H1961"\w* \w sin|strong="H2399"\w* \w to|strong="H3068"\w* \w you|strong="H5414"\w*. +\v 10 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w surely|strong="H3588"\w* \w give|strong="H5414"\w*, \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w grieved|strong="H7489"\w* \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w give|strong="H5414"\w* \w to|strong="H3068"\w* \w him|strong="H5414"\w*, \w because|strong="H3588"\w* \w it|strong="H5414"\w* \w is|strong="H3068"\w* \w for|strong="H3588"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w bless|strong="H1288"\w* \w you|strong="H3588"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w work|strong="H4639"\w* \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w put|strong="H5414"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w to|strong="H3068"\w*. +\v 11 \w For|strong="H3588"\w* \w the|strong="H5921"\w* \w poor|strong="H6041"\w* \w will|strong="H3027"\w* \w never|strong="H3808"\w* \w cease|strong="H2308"\w* \w out|strong="H5921"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w land|strong="H7130"\w*. \w Therefore|strong="H3651"\w* \w I|strong="H3588"\w* \w command|strong="H6680"\w* \w you|strong="H3588"\w* \w to|strong="H5921"\w* \w surely|strong="H3588"\w* \w open|strong="H6605"\w* \w your|strong="H5921"\w* \w hand|strong="H3027"\w* \w to|strong="H5921"\w* \w your|strong="H5921"\w* brother, \w to|strong="H5921"\w* \w your|strong="H5921"\w* \w needy|strong="H6041"\w*, \w and|strong="H3027"\w* \w to|strong="H5921"\w* \w your|strong="H5921"\w* \w poor|strong="H6041"\w*, \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w land|strong="H7130"\w*. +\v 12 \w If|strong="H3588"\w* \w your|strong="H3588"\w* brother, \w a|strong="H3068"\w* \w Hebrew|strong="H5680"\w* \w man|strong="H5680"\w*, \w or|strong="H4376"\w* \w a|strong="H3068"\w* \w Hebrew|strong="H5680"\w* \w woman|strong="H5680"\w*, \w is|strong="H8141"\w* \w sold|strong="H4376"\w* \w to|strong="H7971"\w* \w you|strong="H3588"\w* \w and|strong="H7971"\w* \w serves|strong="H5647"\w* \w you|strong="H3588"\w* \w six|strong="H8337"\w* \w years|strong="H8141"\w*, \w then|strong="H7971"\w* \w in|strong="H8141"\w* \w the|strong="H3588"\w* \w seventh|strong="H7637"\w* \w year|strong="H8141"\w* \w you|strong="H3588"\w* \w shall|strong="H8141"\w* \w let|strong="H7971"\w* \w him|strong="H7971"\w* \w go|strong="H7971"\w* \w free|strong="H2670"\w* \w from|strong="H7971"\w* \w you|strong="H3588"\w*. +\v 13 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w let|strong="H7971"\w* \w him|strong="H7971"\w* \w go|strong="H7971"\w* \w free|strong="H2670"\w* \w from|strong="H7971"\w* \w you|strong="H3588"\w*, \w you|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w let|strong="H7971"\w* \w him|strong="H7971"\w* \w go|strong="H7971"\w* \w empty|strong="H7387"\w*. +\v 14 \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w furnish|strong="H6059"\w* \w him|strong="H5414"\w* \w liberally|strong="H6059"\w* \w out|strong="H5414"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w flock|strong="H6629"\w*, \w out|strong="H5414"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w*, \w and|strong="H3068"\w* \w out|strong="H5414"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w wine|strong="H3342"\w* \w press|strong="H3342"\w*. \w As|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w blessed|strong="H1288"\w* \w you|strong="H5414"\w*, \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w give|strong="H5414"\w* \w to|strong="H3068"\w* \w him|strong="H5414"\w*. +\v 15 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w remember|strong="H2142"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w were|strong="H1961"\w* \w a|strong="H3068"\w* \w slave|strong="H5650"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w redeemed|strong="H6299"\w* \w you|strong="H3588"\w*. \w Therefore|strong="H3651"\w* \w I|strong="H3588"\w* \w command|strong="H6680"\w* \w you|strong="H3588"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w today|strong="H3117"\w*. +\v 16 \w It|strong="H3588"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w*, \w if|strong="H3588"\w* \w he|strong="H3588"\w* tells \w you|strong="H3588"\w*, “\w I|strong="H3588"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w you|strong="H3588"\w*,” \w because|strong="H3588"\w* \w he|strong="H3588"\w* loves \w you|strong="H3588"\w* \w and|strong="H1004"\w* \w your|strong="H3588"\w* \w house|strong="H1004"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H1961"\w* \w well|strong="H2895"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*, +\v 17 \w then|strong="H1961"\w* \w you|strong="H5414"\w* \w shall|strong="H5650"\w* \w take|strong="H3947"\w* \w an|strong="H6213"\w* \w awl|strong="H4836"\w*, \w and|strong="H5650"\w* \w thrust|strong="H5414"\w* \w it|strong="H5414"\w* \w through|strong="H6213"\w* \w his|strong="H5414"\w* ear \w to|strong="H1961"\w* \w the|strong="H5414"\w* \w door|strong="H1817"\w*, \w and|strong="H5650"\w* \w he|strong="H3651"\w* \w shall|strong="H5650"\w* \w be|strong="H1961"\w* \w your|strong="H5414"\w* \w servant|strong="H5650"\w* \w forever|strong="H5769"\w*. \w Also|strong="H6213"\w* \w to|strong="H1961"\w* \w your|strong="H5414"\w* female \w servant|strong="H5650"\w* \w you|strong="H5414"\w* \w shall|strong="H5650"\w* \w do|strong="H6213"\w* \w likewise|strong="H3651"\w*. +\v 18 \w It|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w seem|strong="H5869"\w* \w hard|strong="H7185"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w* \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w let|strong="H7971"\w* \w him|strong="H7971"\w* \w go|strong="H7971"\w* \w free|strong="H2670"\w* \w from|strong="H7971"\w* \w you|strong="H3588"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w been|strong="H5647"\w* \w double|strong="H4932"\w* \w the|strong="H3605"\w* \w value|strong="H5869"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w hired|strong="H7916"\w* hand \w as|strong="H6213"\w* \w he|strong="H3588"\w* \w served|strong="H5647"\w* \w you|strong="H3588"\w* \w six|strong="H8337"\w* \w years|strong="H8141"\w*. \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w bless|strong="H1288"\w* \w you|strong="H3588"\w* \w in|strong="H8141"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w do|strong="H6213"\w*. +\v 19 \w You|strong="H3605"\w* \w shall|strong="H3068"\w* \w dedicate|strong="H6942"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w males|strong="H2145"\w* \w that|strong="H3605"\w* \w are|strong="H3068"\w* \w born|strong="H3205"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w herd|strong="H1241"\w* \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w flock|strong="H6629"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \w You|strong="H3605"\w* \w shall|strong="H3068"\w* \w do|strong="H5647"\w* \w no|strong="H3808"\w* \w work|strong="H5647"\w* \w with|strong="H3068"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w herd|strong="H1241"\w*, \w nor|strong="H3808"\w* \w shear|strong="H1494"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w flock|strong="H6629"\w*. +\v 20 \w You|strong="H6440"\w* \w shall|strong="H3068"\w* eat \w it|strong="H6440"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w year|strong="H8141"\w* \w by|strong="H8141"\w* \w year|strong="H8141"\w* \w in|strong="H8141"\w* \w the|strong="H6440"\w* \w place|strong="H4725"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w shall|strong="H3068"\w* choose, \w you|strong="H6440"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w household|strong="H1004"\w*. +\v 21 \w If|strong="H3588"\w* \w it|strong="H3588"\w* \w has|strong="H3068"\w* \w any|strong="H3605"\w* \w defect|strong="H3971"\w*—\w is|strong="H3068"\w* \w lame|strong="H6455"\w* \w or|strong="H3808"\w* \w blind|strong="H5787"\w*, \w or|strong="H3808"\w* \w has|strong="H3068"\w* \w any|strong="H3605"\w* \w defect|strong="H3971"\w* \w whatever|strong="H3605"\w*, \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w sacrifice|strong="H2076"\w* \w it|strong="H3588"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 22 You \w shall|strong="H2889"\w* eat it within your \w gates|strong="H8179"\w*. \w The|strong="H8179"\w* \w unclean|strong="H2931"\w* \w and|strong="H8179"\w* \w the|strong="H8179"\w* \w clean|strong="H2889"\w* \w shall|strong="H2889"\w* eat it \w alike|strong="H3162"\w*, \w as|strong="H8179"\w* \w the|strong="H8179"\w* \w gazelle|strong="H6643"\w* \w and|strong="H8179"\w* \w as|strong="H8179"\w* \w the|strong="H8179"\w* deer. +\v 23 \w Only|strong="H7535"\w* \w you|strong="H5921"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* eat \w its|strong="H5921"\w* \w blood|strong="H1818"\w*. \w You|strong="H5921"\w* \w shall|strong="H3808"\w* \w pour|strong="H8210"\w* \w it|strong="H5921"\w* \w out|strong="H8210"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* ground \w like|strong="H3808"\w* \w water|strong="H4325"\w*. +\c 16 +\p +\v 1 \w Observe|strong="H8104"\w* \w the|strong="H3588"\w* \w month|strong="H2320"\w* \w of|strong="H3068"\w* Abib, \w and|strong="H3068"\w* \w keep|strong="H8104"\w* \w the|strong="H3588"\w* \w Passover|strong="H6453"\w* \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*; \w for|strong="H3588"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w month|strong="H2320"\w* \w of|strong="H3068"\w* Abib \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w brought|strong="H3318"\w* \w you|strong="H3588"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w* \w by|strong="H3068"\w* \w night|strong="H3915"\w*. +\v 2 \w You|strong="H4725"\w* \w shall|strong="H3068"\w* \w sacrifice|strong="H2076"\w* \w the|strong="H3068"\w* \w Passover|strong="H6453"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w flock|strong="H6629"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w herd|strong="H1241"\w*, \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w place|strong="H4725"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w shall|strong="H3068"\w* choose \w to|strong="H3068"\w* cause \w his|strong="H3068"\w* \w name|strong="H8034"\w* \w to|strong="H3068"\w* \w dwell|strong="H7931"\w* \w there|strong="H8033"\w*. +\v 3 \w You|strong="H3588"\w* \w shall|strong="H3117"\w* \w eat|strong="H3899"\w* \w no|strong="H3808"\w* \w leavened|strong="H2557"\w* \w bread|strong="H3899"\w* \w with|strong="H5921"\w* \w it|strong="H5921"\w*. \w You|strong="H3588"\w* \w shall|strong="H3117"\w* \w eat|strong="H3899"\w* \w unleavened|strong="H4682"\w* \w bread|strong="H3899"\w* \w with|strong="H5921"\w* \w it|strong="H5921"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w even|strong="H3588"\w* \w the|strong="H3605"\w* \w bread|strong="H3899"\w* \w of|strong="H3117"\w* \w affliction|strong="H6040"\w* (\w for|strong="H3588"\w* \w you|strong="H3588"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* land \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w* \w in|strong="H5921"\w* \w haste|strong="H2649"\w*) \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H3117"\w* \w remember|strong="H2142"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* land \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H3605"\w* \w life|strong="H2416"\w*. +\v 4 \w No|strong="H3808"\w* \w yeast|strong="H7603"\w* \w shall|strong="H3117"\w* \w be|strong="H3808"\w* \w seen|strong="H7200"\w* \w with|strong="H3117"\w* \w you|strong="H3605"\w* \w in|strong="H3117"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w borders|strong="H1366"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*; \w neither|strong="H3808"\w* \w shall|strong="H3117"\w* \w any|strong="H3605"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w meat|strong="H1320"\w*, \w which|strong="H3117"\w* \w you|strong="H3605"\w* \w sacrifice|strong="H2076"\w* \w the|strong="H3605"\w* \w first|strong="H7223"\w* \w day|strong="H3117"\w* \w at|strong="H3117"\w* \w evening|strong="H6153"\w*, \w remain|strong="H3885"\w* \w all|strong="H3605"\w* \w night|strong="H3885"\w* \w until|strong="H3885"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w*. +\v 5 \w You|strong="H5414"\w* \w may|strong="H3201"\w* \w not|strong="H3808"\w* \w sacrifice|strong="H2076"\w* \w the|strong="H5414"\w* \w Passover|strong="H6453"\w* \w within|strong="H6453"\w* \w any|strong="H5414"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w gates|strong="H8179"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H5414"\w*; +\v 6 \w but|strong="H3588"\w* \w at|strong="H3068"\w* \w the|strong="H3588"\w* \w place|strong="H4725"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w shall|strong="H3068"\w* choose \w to|strong="H3318"\w* \w cause|strong="H3318"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w* \w to|strong="H3318"\w* \w dwell|strong="H7931"\w* \w in|strong="H3068"\w*, \w there|strong="H8033"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w sacrifice|strong="H2076"\w* \w the|strong="H3588"\w* \w Passover|strong="H6453"\w* \w at|strong="H3068"\w* \w evening|strong="H6153"\w*, \w at|strong="H3068"\w* \w the|strong="H3588"\w* \w going|strong="H3318"\w* \w down|strong="H7931"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w sun|strong="H8121"\w*, \w at|strong="H3068"\w* \w the|strong="H3588"\w* \w season|strong="H4150"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*. +\v 7 \w You|strong="H6437"\w* \w shall|strong="H3068"\w* \w roast|strong="H1310"\w* \w and|strong="H1980"\w* eat \w it|strong="H1242"\w* \w in|strong="H1980"\w* \w the|strong="H3068"\w* \w place|strong="H4725"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* chooses. \w In|strong="H1980"\w* \w the|strong="H3068"\w* \w morning|strong="H1242"\w* \w you|strong="H6437"\w* \w shall|strong="H3068"\w* \w return|strong="H1980"\w* \w to|strong="H1980"\w* \w your|strong="H3068"\w* tents. +\v 8 \w Six|strong="H8337"\w* \w days|strong="H3117"\w* \w you|strong="H3117"\w* \w shall|strong="H3068"\w* eat \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w*. \w On|strong="H3117"\w* \w the|strong="H6213"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w shall|strong="H3068"\w* \w be|strong="H3808"\w* \w a|strong="H3068"\w* \w solemn|strong="H6116"\w* \w assembly|strong="H6116"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \w You|strong="H3117"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w no|strong="H3808"\w* \w work|strong="H4399"\w*. +\p +\v 9 \w You|strong="H7651"\w* \w shall|strong="H7620"\w* \w count|strong="H5608"\w* \w for|strong="H5608"\w* yourselves \w seven|strong="H7651"\w* \w weeks|strong="H7620"\w*. \w From|strong="H7620"\w* \w the|strong="H5608"\w* time \w you|strong="H7651"\w* \w begin|strong="H2490"\w* \w to|strong="H2490"\w* put \w the|strong="H5608"\w* \w sickle|strong="H2770"\w* \w to|strong="H2490"\w* \w the|strong="H5608"\w* \w standing|strong="H7054"\w* \w grain|strong="H7054"\w* \w you|strong="H7651"\w* \w shall|strong="H7620"\w* \w begin|strong="H2490"\w* \w to|strong="H2490"\w* \w count|strong="H5608"\w* \w seven|strong="H7651"\w* \w weeks|strong="H7620"\w*. +\v 10 \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w keep|strong="H6213"\w* \w the|strong="H5414"\w* \w feast|strong="H2282"\w* \w of|strong="H3068"\w* \w weeks|strong="H7620"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w tribute|strong="H4530"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* free \w will|strong="H3068"\w* \w offering|strong="H5071"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*, \w which|strong="H3068"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w give|strong="H5414"\w* \w according|strong="H3027"\w* \w to|strong="H3068"\w* \w how|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w blesses|strong="H1288"\w* \w you|strong="H5414"\w*. +\v 11 \w You|strong="H6440"\w* \w shall|strong="H3068"\w* \w rejoice|strong="H8055"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*: \w you|strong="H6440"\w*, \w your|strong="H3068"\w* \w son|strong="H1121"\w*, \w your|strong="H3068"\w* \w daughter|strong="H1323"\w*, \w your|strong="H3068"\w* \w male|strong="H5650"\w* \w servant|strong="H5650"\w*, \w your|strong="H3068"\w* \w female|strong="H1323"\w* \w servant|strong="H5650"\w*, \w the|strong="H6440"\w* \w Levite|strong="H3881"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w within|strong="H7130"\w* \w your|strong="H3068"\w* \w gates|strong="H8179"\w*, \w the|strong="H6440"\w* \w foreigner|strong="H1121"\w*, \w the|strong="H6440"\w* \w fatherless|strong="H3490"\w*, \w and|strong="H1121"\w* \w the|strong="H6440"\w* widow \w who|strong="H3068"\w* \w are|strong="H1121"\w* \w among|strong="H7130"\w* \w you|strong="H6440"\w*, \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w place|strong="H4725"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w shall|strong="H3068"\w* choose \w to|strong="H3068"\w* cause \w his|strong="H3068"\w* \w name|strong="H8034"\w* \w to|strong="H3068"\w* \w dwell|strong="H7931"\w* \w there|strong="H8033"\w*. +\v 12 \w You|strong="H3588"\w* \w shall|strong="H4714"\w* \w remember|strong="H2142"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w were|strong="H1961"\w* \w a|strong="H3068"\w* \w slave|strong="H5650"\w* \w in|strong="H6213"\w* \w Egypt|strong="H4714"\w*. \w You|strong="H3588"\w* \w shall|strong="H4714"\w* \w observe|strong="H8104"\w* \w and|strong="H5650"\w* \w do|strong="H6213"\w* \w these|strong="H6213"\w* \w statutes|strong="H2706"\w*. +\p +\v 13 \w You|strong="H3117"\w* \w shall|strong="H3117"\w* \w keep|strong="H6213"\w* \w the|strong="H6213"\w* \w feast|strong="H2282"\w* \w of|strong="H3117"\w* \w booths|strong="H5521"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w after|strong="H3117"\w* \w you|strong="H3117"\w* \w have|strong="H3117"\w* \w gathered|strong="H6213"\w* \w in|strong="H6213"\w* \w from|strong="H3117"\w* \w your|strong="H6213"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w* \w and|strong="H3117"\w* \w from|strong="H3117"\w* \w your|strong="H6213"\w* \w wine|strong="H3342"\w* \w press|strong="H3342"\w*. +\v 14 \w You|strong="H8055"\w* \w shall|strong="H1121"\w* \w rejoice|strong="H8055"\w* \w in|strong="H1121"\w* \w your|strong="H1121"\w* \w feast|strong="H2282"\w*, \w you|strong="H8055"\w*, \w your|strong="H1121"\w* \w son|strong="H1121"\w*, \w your|strong="H1121"\w* \w daughter|strong="H1323"\w*, \w your|strong="H1121"\w* \w male|strong="H5650"\w* \w servant|strong="H5650"\w*, \w your|strong="H1121"\w* \w female|strong="H1323"\w* \w servant|strong="H5650"\w*, \w the|strong="H5650"\w* \w Levite|strong="H3881"\w*, \w the|strong="H5650"\w* \w foreigner|strong="H1121"\w*, \w the|strong="H5650"\w* \w fatherless|strong="H3490"\w*, \w and|strong="H1121"\w* \w the|strong="H5650"\w* widow \w who|strong="H1616"\w* \w are|strong="H1121"\w* within \w your|strong="H1121"\w* \w gates|strong="H8179"\w*. +\v 15 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w keep|strong="H2287"\w* \w a|strong="H3068"\w* \w feast|strong="H2287"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w place|strong="H4725"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* chooses, \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w bless|strong="H1288"\w* \w you|strong="H3588"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w increase|strong="H8393"\w* \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w hands|strong="H3027"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w altogether|strong="H3605"\w* \w joyful|strong="H8056"\w*. +\v 16 \w Three|strong="H7969"\w* \w times|strong="H6471"\w* \w in|strong="H8141"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w all|strong="H3605"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w males|strong="H2138"\w* \w shall|strong="H3068"\w* \w appear|strong="H7200"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w place|strong="H4725"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* chooses: \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w feast|strong="H2282"\w* \w of|strong="H3068"\w* \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w*, \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w feast|strong="H2282"\w* \w of|strong="H3068"\w* \w weeks|strong="H7620"\w*, \w and|strong="H3068"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w feast|strong="H2282"\w* \w of|strong="H3068"\w* \w booths|strong="H5521"\w*. \w They|strong="H3068"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w appear|strong="H7200"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w empty|strong="H7387"\w*. +\v 17 \w Every|strong="H5414"\w* man \w shall|strong="H3068"\w* \w give|strong="H5414"\w* \w as|strong="H3068"\w* \w he|strong="H3068"\w* \w is|strong="H3068"\w* \w able|strong="H3027"\w*, \w according|strong="H3027"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w blessing|strong="H1293"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w*. +\v 18 \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w make|strong="H5414"\w* \w judges|strong="H8199"\w* \w and|strong="H3068"\w* \w officers|strong="H7860"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w gates|strong="H8179"\w*, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H5414"\w*, \w according|strong="H4941"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w tribes|strong="H7626"\w*; \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w shall|strong="H3068"\w* \w judge|strong="H8199"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w with|strong="H3068"\w* \w righteous|strong="H6664"\w* \w judgment|strong="H4941"\w*. +\v 19 \w You|strong="H3588"\w* \w shall|strong="H5869"\w* \w not|strong="H3808"\w* \w pervert|strong="H5186"\w* \w justice|strong="H4941"\w*. \w You|strong="H3588"\w* \w shall|strong="H5869"\w* \w not|strong="H3808"\w* \w show|strong="H5234"\w* \w partiality|strong="H5234"\w*. \w You|strong="H3588"\w* \w shall|strong="H5869"\w* \w not|strong="H3808"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w bribe|strong="H7810"\w*, \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w bribe|strong="H7810"\w* \w blinds|strong="H5786"\w* \w the|strong="H6440"\w* \w eyes|strong="H5869"\w* \w of|strong="H1697"\w* \w the|strong="H6440"\w* \w wise|strong="H2450"\w* \w and|strong="H4941"\w* \w perverts|strong="H5557"\w* \w the|strong="H6440"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H6440"\w* \w righteous|strong="H6662"\w*. +\v 20 \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w follow|strong="H7291"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w altogether|strong="H6664"\w* \w just|strong="H6664"\w*, \w that|strong="H3068"\w* \w you|strong="H5414"\w* \w may|strong="H3068"\w* \w live|strong="H2421"\w* \w and|strong="H3068"\w* \w inherit|strong="H3423"\w* \w the|strong="H5414"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H5414"\w*. +\v 21 \w You|strong="H3605"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w plant|strong="H5193"\w* \w for|strong="H6213"\w* \w yourselves|strong="H3605"\w* \w an|strong="H6213"\w* Asherah \w of|strong="H3068"\w* \w any|strong="H3605"\w* kind \w of|strong="H3068"\w* \w tree|strong="H6086"\w* beside \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w altar|strong="H4196"\w*, \w which|strong="H3068"\w* \w you|strong="H3605"\w* \w shall|strong="H3068"\w* \w make|strong="H6213"\w* \w for|strong="H6213"\w* \w yourselves|strong="H3605"\w*. +\v 22 \w Neither|strong="H3808"\w* \w shall|strong="H3068"\w* \w you|strong="H3808"\w* \w set|strong="H6965"\w* yourself \w up|strong="H6965"\w* \w a|strong="H3068"\w* sacred stone \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w hates|strong="H8130"\w*. +\c 17 +\p +\v 1 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w sacrifice|strong="H2076"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w an|strong="H1961"\w* \w ox|strong="H7794"\w* \w or|strong="H3808"\w* \w a|strong="H3068"\w* \w sheep|strong="H7716"\w* \w in|strong="H3068"\w* \w which|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w defect|strong="H3971"\w* \w or|strong="H3808"\w* \w anything|strong="H3605"\w* \w evil|strong="H7451"\w*; \w for|strong="H3588"\w* \w that|strong="H3588"\w* \w is|strong="H3068"\w* \w an|strong="H1961"\w* \w abomination|strong="H8441"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\p +\v 2 \w If|strong="H3588"\w* \w there|strong="H4672"\w* \w is|strong="H3068"\w* \w found|strong="H4672"\w* \w among|strong="H7130"\w* \w you|strong="H3588"\w*, \w within|strong="H7130"\w* \w any|strong="H6213"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w gates|strong="H8179"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H3588"\w*, \w a|strong="H3068"\w* \w man|strong="H7451"\w* \w or|strong="H3068"\w* woman \w who|strong="H3068"\w* \w does|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w sight|strong="H5869"\w* \w in|strong="H3068"\w* \w transgressing|strong="H5674"\w* \w his|strong="H5414"\w* \w covenant|strong="H1285"\w*, +\v 3 \w and|strong="H8064"\w* \w has|strong="H6635"\w* \w gone|strong="H3212"\w* \w and|strong="H8064"\w* \w served|strong="H5647"\w* \w other|strong="H3605"\w* gods \w and|strong="H8064"\w* \w worshiped|strong="H7812"\w* \w them|strong="H6680"\w*, \w or|strong="H3808"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*, \w or|strong="H3808"\w* \w the|strong="H3605"\w* \w moon|strong="H3394"\w*, \w or|strong="H3808"\w* \w any|strong="H3605"\w* \w of|strong="H6635"\w* \w the|strong="H3605"\w* stars \w of|strong="H6635"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w which|strong="H6635"\w* \w I|strong="H6680"\w* \w have|strong="H3605"\w* \w not|strong="H3808"\w* \w commanded|strong="H6680"\w*, +\v 4 \w and|strong="H3478"\w* \w you|strong="H6213"\w* \w are|strong="H3478"\w* \w told|strong="H5046"\w*, \w and|strong="H3478"\w* \w you|strong="H6213"\w* \w have|strong="H3478"\w* \w heard|strong="H8085"\w* \w of|strong="H1697"\w* \w it|strong="H6213"\w*, \w then|strong="H2009"\w* \w you|strong="H6213"\w* \w shall|strong="H3478"\w* \w inquire|strong="H1875"\w* \w diligently|strong="H8085"\w*. \w Behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w it|strong="H6213"\w* \w is|strong="H1697"\w* true, \w and|strong="H3478"\w* \w the|strong="H8085"\w* \w thing|strong="H1697"\w* \w certain|strong="H3559"\w*, \w that|strong="H8085"\w* \w such|strong="H2063"\w* \w abomination|strong="H8441"\w* \w is|strong="H1697"\w* \w done|strong="H6213"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*, +\v 5 \w then|strong="H3318"\w* \w you|strong="H6213"\w* \w shall|strong="H7451"\w* \w bring|strong="H3318"\w* \w out|strong="H3318"\w* \w that|strong="H1931"\w* \w man|strong="H4191"\w* \w or|strong="H4191"\w* \w that|strong="H1931"\w* \w woman|strong="H2088"\w* \w who|strong="H1931"\w* \w has|strong="H3318"\w* \w done|strong="H6213"\w* \w this|strong="H2088"\w* \w evil|strong="H7451"\w* \w thing|strong="H1697"\w* \w to|strong="H3318"\w* \w your|strong="H6213"\w* \w gates|strong="H8179"\w*, \w even|strong="H6213"\w* \w that|strong="H1931"\w* \w same|strong="H1931"\w* \w man|strong="H4191"\w* \w or|strong="H4191"\w* \w woman|strong="H2088"\w*; \w and|strong="H6213"\w* \w you|strong="H6213"\w* \w shall|strong="H7451"\w* \w stone|strong="H5619"\w* \w them|strong="H6213"\w* \w to|strong="H3318"\w* \w death|strong="H4191"\w* \w with|strong="H6213"\w* \w stones|strong="H5619"\w*. +\v 6 \w At|strong="H5921"\w* \w the|strong="H5921"\w* \w mouth|strong="H6310"\w* \w of|strong="H6310"\w* \w two|strong="H8147"\w* \w witnesses|strong="H5707"\w*, \w or|strong="H3808"\w* \w three|strong="H7969"\w* \w witnesses|strong="H5707"\w*, \w he|strong="H8147"\w* \w who|strong="H3808"\w* \w is|strong="H6310"\w* \w to|strong="H4191"\w* \w die|strong="H4191"\w* \w shall|strong="H3808"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. \w At|strong="H5921"\w* \w the|strong="H5921"\w* \w mouth|strong="H6310"\w* \w of|strong="H6310"\w* \w one|strong="H3808"\w* \w witness|strong="H5707"\w* \w he|strong="H8147"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. +\v 7 \w The|strong="H3605"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w witnesses|strong="H5707"\w* \w shall|strong="H5971"\w* \w be|strong="H1961"\w* \w first|strong="H7223"\w* \w on|strong="H3027"\w* \w him|strong="H3027"\w* \w to|strong="H4191"\w* \w put|strong="H4191"\w* \w him|strong="H3027"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*, \w and|strong="H3027"\w* afterward \w the|strong="H3605"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*. \w So|strong="H1961"\w* \w you|strong="H3605"\w* \w shall|strong="H5971"\w* \w remove|strong="H1197"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w from|strong="H3027"\w* \w among|strong="H7130"\w* \w you|strong="H3605"\w*. +\p +\v 8 \w If|strong="H3588"\w* \w there|strong="H5927"\w* \w arises|strong="H6965"\w* \w a|strong="H3068"\w* \w matter|strong="H1697"\w* \w too|strong="H4480"\w* \w hard|strong="H6381"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w in|strong="H3068"\w* \w judgment|strong="H4941"\w*, \w between|strong="H4941"\w* \w blood|strong="H1818"\w* \w and|strong="H6965"\w* \w blood|strong="H1818"\w*, \w between|strong="H4941"\w* \w plea|strong="H1779"\w* \w and|strong="H6965"\w* \w plea|strong="H1779"\w*, \w and|strong="H6965"\w* \w between|strong="H4941"\w* \w stroke|strong="H5061"\w* \w and|strong="H6965"\w* \w stroke|strong="H5061"\w*, \w being|strong="H3068"\w* \w matters|strong="H1697"\w* \w of|strong="H3068"\w* \w controversy|strong="H7379"\w* \w within|strong="H4480"\w* \w your|strong="H3068"\w* \w gates|strong="H8179"\w*, \w then|strong="H6965"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w arise|strong="H6965"\w*, \w and|strong="H6965"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w place|strong="H4725"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* chooses. +\v 9 \w You|strong="H3117"\w* \w shall|strong="H3548"\w* \w come|strong="H1961"\w* \w to|strong="H1961"\w* \w the|strong="H3117"\w* \w priests|strong="H3548"\w* \w who|strong="H3548"\w* \w are|strong="H3117"\w* \w Levites|strong="H3881"\w* \w and|strong="H3117"\w* \w to|strong="H1961"\w* \w the|strong="H3117"\w* \w judge|strong="H8199"\w* \w who|strong="H3548"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w in|strong="H3117"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*. \w You|strong="H3117"\w* \w shall|strong="H3548"\w* \w inquire|strong="H1875"\w*, \w and|strong="H3117"\w* \w they|strong="H1992"\w* \w shall|strong="H3548"\w* \w give|strong="H5046"\w* \w you|strong="H3117"\w* \w the|strong="H3117"\w* \w verdict|strong="H1697"\w*. +\v 10 \w You|strong="H3605"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* decisions \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w verdict|strong="H1697"\w* \w which|strong="H1931"\w* \w they|strong="H3068"\w* \w shall|strong="H3068"\w* \w give|strong="H8104"\w* \w you|strong="H3605"\w* \w from|strong="H4480"\w* \w that|strong="H3605"\w* \w place|strong="H4725"\w* \w which|strong="H1931"\w* \w Yahweh|strong="H3068"\w* chooses. \w You|strong="H3605"\w* \w shall|strong="H3068"\w* \w observe|strong="H8104"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w they|strong="H3068"\w* \w shall|strong="H3068"\w* \w teach|strong="H3384"\w* \w you|strong="H3605"\w*. +\v 11 \w According|strong="H5921"\w* \w to|strong="H6213"\w* \w the|strong="H5921"\w* \w decisions|strong="H4941"\w* \w of|strong="H1697"\w* \w the|strong="H5921"\w* \w law|strong="H8451"\w* \w which|strong="H1697"\w* \w they|strong="H3808"\w* \w shall|strong="H3808"\w* \w teach|strong="H3384"\w* \w you|strong="H5921"\w*, \w and|strong="H4941"\w* \w according|strong="H5921"\w* \w to|strong="H6213"\w* \w the|strong="H5921"\w* \w judgment|strong="H4941"\w* \w which|strong="H1697"\w* \w they|strong="H3808"\w* \w shall|strong="H3808"\w* \w tell|strong="H5046"\w* \w you|strong="H5921"\w*, \w you|strong="H5921"\w* \w shall|strong="H3808"\w* \w do|strong="H6213"\w*. \w You|strong="H5921"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w turn|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* \w sentence|strong="H4941"\w* \w which|strong="H1697"\w* \w they|strong="H3808"\w* \w announce|strong="H5046"\w* \w to|strong="H6213"\w* \w you|strong="H5921"\w*, \w to|strong="H6213"\w* \w the|strong="H5921"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w*, \w nor|strong="H3808"\w* \w to|strong="H6213"\w* \w the|strong="H5921"\w* \w left|strong="H8040"\w*. +\v 12 \w The|strong="H8085"\w* \w man|strong="H4191"\w* \w who|strong="H1931"\w* \w does|strong="H6213"\w* \w presumptuously|strong="H2087"\w* \w in|strong="H3478"\w* \w not|strong="H1115"\w* \w listening|strong="H8085"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w priest|strong="H3548"\w* \w who|strong="H1931"\w* \w stands|strong="H5975"\w* \w to|strong="H3478"\w* \w minister|strong="H8334"\w* \w there|strong="H8033"\w* before \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w or|strong="H8085"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w judge|strong="H8199"\w*, \w even|strong="H6213"\w* \w that|strong="H8085"\w* \w man|strong="H4191"\w* \w shall|strong="H3548"\w* \w die|strong="H4191"\w*. \w You|strong="H6213"\w* \w shall|strong="H3548"\w* \w put|strong="H4191"\w* \w away|strong="H1197"\w* \w the|strong="H8085"\w* \w evil|strong="H7451"\w* \w from|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\v 13 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w shall|strong="H5971"\w* \w hear|strong="H8085"\w* \w and|strong="H5971"\w* \w fear|strong="H3372"\w*, \w and|strong="H5971"\w* \w do|strong="H3605"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w presumptuously|strong="H2102"\w*. +\p +\v 14 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w come|strong="H3423"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w possess|strong="H3423"\w* \w it|strong="H5414"\w* \w and|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w it|strong="H5414"\w*, \w and|strong="H3068"\w* say, “\w I|strong="H3588"\w* \w will|strong="H3068"\w* \w set|strong="H7760"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w me|strong="H5414"\w*, \w like|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w that|strong="H3588"\w* \w are|strong="H1471"\w* \w around|strong="H5439"\w* \w me|strong="H5414"\w*,” +\v 15 \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w surely|strong="H5414"\w* \w set|strong="H7760"\w* \w him|strong="H5414"\w* whom \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* chooses \w as|strong="H3068"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w yourselves|strong="H3068"\w*. \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w set|strong="H7760"\w* \w as|strong="H3068"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w you|strong="H5414"\w* \w one|strong="H3808"\w* \w from|strong="H5921"\w* \w among|strong="H7130"\w* \w your|strong="H3068"\w* brothers. \w You|strong="H5414"\w* \w may|strong="H3201"\w* \w not|strong="H3808"\w* \w put|strong="H5414"\w* \w a|strong="H3068"\w* \w foreigner|strong="H5237"\w* \w over|strong="H5921"\w* \w you|strong="H5414"\w*, \w who|strong="H1931"\w* \w is|strong="H3068"\w* \w not|strong="H3808"\w* \w your|strong="H3068"\w* brother. +\v 16 \w Only|strong="H7535"\w* \w he|strong="H3068"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w multiply|strong="H7235"\w* \w horses|strong="H5483"\w* \w to|strong="H7725"\w* \w himself|strong="H3068"\w*, \w nor|strong="H3808"\w* \w cause|strong="H5971"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w* \w to|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w Egypt|strong="H4714"\w*, \w to|strong="H7725"\w* \w the|strong="H3068"\w* \w end|strong="H4616"\w* \w that|strong="H5971"\w* \w he|strong="H3068"\w* \w may|strong="H3068"\w* \w multiply|strong="H7235"\w* \w horses|strong="H5483"\w*; \w because|strong="H4616"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* said \w to|strong="H7725"\w* \w you|strong="H7725"\w*, “\w You|strong="H7725"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w go|strong="H7725"\w* \w back|strong="H7725"\w* \w that|strong="H5971"\w* \w way|strong="H1870"\w* \w again|strong="H7725"\w*.” +\v 17 \w He|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w multiply|strong="H7235"\w* wives \w to|strong="H3824"\w* \w himself|strong="H3824"\w*, \w that|strong="H3808"\w* \w his|strong="H5493"\w* \w heart|strong="H3824"\w* \w not|strong="H3808"\w* \w turn|strong="H5493"\w* \w away|strong="H5493"\w*. \w He|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w greatly|strong="H3966"\w* \w multiply|strong="H7235"\w* \w to|strong="H3824"\w* \w himself|strong="H3824"\w* \w silver|strong="H3701"\w* \w and|strong="H3701"\w* \w gold|strong="H2091"\w*. +\p +\v 18 \w It|strong="H5921"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w*, \w when|strong="H1961"\w* \w he|strong="H5921"\w* \w sits|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w throne|strong="H3678"\w* \w of|strong="H3427"\w* \w his|strong="H6440"\w* \w kingdom|strong="H4467"\w*, \w that|strong="H3548"\w* \w he|strong="H5921"\w* \w shall|strong="H3548"\w* \w write|strong="H3789"\w* \w himself|strong="H6440"\w* \w a|strong="H3068"\w* \w copy|strong="H4932"\w* \w of|strong="H3427"\w* \w this|strong="H2063"\w* \w law|strong="H8451"\w* \w in|strong="H3427"\w* \w a|strong="H3068"\w* \w book|strong="H5612"\w*, \w out|strong="H5921"\w* \w of|strong="H3427"\w* \w that|strong="H3548"\w* \w which|strong="H3548"\w* \w is|strong="H1961"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w Levitical|strong="H3881"\w* \w priests|strong="H3548"\w*. +\v 19 \w It|strong="H7121"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w him|strong="H7121"\w*, \w and|strong="H3068"\w* \w he|strong="H3117"\w* \w shall|strong="H3068"\w* \w read|strong="H7121"\w* \w from|strong="H3117"\w* \w it|strong="H7121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w life|strong="H2416"\w*, \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w may|strong="H1961"\w* \w learn|strong="H3925"\w* \w to|strong="H3068"\w* \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H3605"\w* \w God|strong="H3068"\w*, \w to|strong="H3068"\w* \w keep|strong="H8104"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w this|strong="H2063"\w* \w law|strong="H8451"\w* \w and|strong="H3068"\w* \w these|strong="H2063"\w* \w statutes|strong="H2706"\w*, \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w*; +\v 20 \w that|strong="H3117"\w* \w his|strong="H5921"\w* \w heart|strong="H3824"\w* \w not|strong="H1115"\w* \w be|strong="H1121"\w* \w lifted|strong="H7311"\w* \w up|strong="H7311"\w* \w above|strong="H5921"\w* \w his|strong="H5921"\w* \w brothers|strong="H1121"\w*, \w and|strong="H1121"\w* \w that|strong="H3117"\w* \w he|strong="H1931"\w* \w not|strong="H1115"\w* \w turn|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* \w commandment|strong="H4687"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w*, \w or|strong="H3117"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w left|strong="H8040"\w*, \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w end|strong="H4616"\w* \w that|strong="H3117"\w* \w he|strong="H1931"\w* \w may|strong="H3478"\w* prolong \w his|strong="H5921"\w* \w days|strong="H3117"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w kingdom|strong="H4467"\w*, \w he|strong="H1931"\w* \w and|strong="H1121"\w* \w his|strong="H5921"\w* \w children|strong="H1121"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H7130"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\c 18 +\p +\v 1 \w The|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*—\w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribe|strong="H7626"\w* \w of|strong="H3068"\w* \w Levi|strong="H3878"\w*—\w shall|strong="H3548"\w* \w have|strong="H1961"\w* \w no|strong="H3808"\w* \w portion|strong="H2506"\w* \w nor|strong="H3808"\w* \w inheritance|strong="H5159"\w* \w with|strong="H5973"\w* \w Israel|strong="H3478"\w*. \w They|strong="H3068"\w* \w shall|strong="H3548"\w* eat \w the|strong="H3605"\w* \w offerings|strong="H3478"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H1961"\w* \w by|strong="H3068"\w* fire \w and|strong="H3478"\w* \w his|strong="H3605"\w* \w portion|strong="H2506"\w*. +\v 2 \w They|strong="H3068"\w* \w shall|strong="H3068"\w* \w have|strong="H1961"\w* \w no|strong="H3808"\w* \w inheritance|strong="H5159"\w* \w among|strong="H7130"\w* \w their|strong="H3068"\w* brothers. \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w their|strong="H3068"\w* \w inheritance|strong="H5159"\w*, \w as|strong="H1961"\w* \w he|strong="H1931"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H1961"\w*. +\v 3 \w This|strong="H2088"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w the|strong="H5414"\w* \w priests|strong="H3548"\w*’ \w due|strong="H4941"\w* \w from|strong="H1961"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w*, \w from|strong="H1961"\w* \w those|strong="H2088"\w* \w who|strong="H5971"\w* \w offer|strong="H2076"\w* \w a|strong="H3068"\w* \w sacrifice|strong="H2077"\w*, whether \w it|strong="H5414"\w* \w be|strong="H1961"\w* \w ox|strong="H7794"\w* \w or|strong="H7794"\w* \w sheep|strong="H7716"\w*, \w that|strong="H5971"\w* \w they|strong="H5971"\w* \w shall|strong="H3548"\w* \w give|strong="H5414"\w* \w to|strong="H1961"\w* \w the|strong="H5414"\w* \w priest|strong="H3548"\w*: \w the|strong="H5414"\w* \w shoulder|strong="H2220"\w*, \w the|strong="H5414"\w* \w two|strong="H2088"\w* \w cheeks|strong="H3895"\w*, \w and|strong="H4941"\w* \w the|strong="H5414"\w* inner parts. +\v 4 \w You|strong="H5414"\w* \w shall|strong="H8492"\w* \w give|strong="H5414"\w* \w him|strong="H5414"\w* \w the|strong="H5414"\w* \w first|strong="H7225"\w* \w fruits|strong="H7225"\w* \w of|strong="H6629"\w* \w your|strong="H5414"\w* \w grain|strong="H1715"\w*, \w of|strong="H6629"\w* \w your|strong="H5414"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w*, \w and|strong="H6629"\w* \w of|strong="H6629"\w* \w your|strong="H5414"\w* \w oil|strong="H3323"\w*, \w and|strong="H6629"\w* \w the|strong="H5414"\w* \w first|strong="H7225"\w* \w of|strong="H6629"\w* \w the|strong="H5414"\w* \w fleece|strong="H1488"\w* \w of|strong="H6629"\w* \w your|strong="H5414"\w* \w sheep|strong="H6629"\w*. +\v 5 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* chosen \w him|strong="H5975"\w* \w out|strong="H3605"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w tribes|strong="H7626"\w* \w to|strong="H3068"\w* \w stand|strong="H5975"\w* \w to|strong="H3068"\w* \w minister|strong="H8334"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*, \w him|strong="H5975"\w* \w and|strong="H1121"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w* \w forever|strong="H3605"\w*. +\p +\v 6 \w If|strong="H3588"\w* \w a|strong="H3068"\w* \w Levite|strong="H3881"\w* comes \w from|strong="H3478"\w* \w any|strong="H3605"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w gates|strong="H8179"\w* \w out|strong="H3605"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w where|strong="H8033"\w* \w he|strong="H1931"\w* \w lives|strong="H5315"\w*, \w and|strong="H3478"\w* comes \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w desire|strong="H5315"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w soul|strong="H5315"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w place|strong="H4725"\w* \w which|strong="H1931"\w* \w Yahweh|strong="H3068"\w* \w shall|strong="H3068"\w* choose, +\v 7 \w then|strong="H5975"\w* \w he|strong="H8033"\w* \w shall|strong="H3068"\w* \w minister|strong="H8334"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H3605"\w* \w God|strong="H3068"\w*, \w as|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* brothers \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w do|strong="H3068"\w*, \w who|strong="H3605"\w* \w stand|strong="H5975"\w* \w there|strong="H8033"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 8 \w They|strong="H5921"\w* \w shall|strong="H4465"\w* \w have|strong="H5921"\w* \w like|strong="H5921"\w* \w portions|strong="H2506"\w* \w to|strong="H5921"\w* eat, \w in|strong="H5921"\w* \w addition|strong="H5921"\w* \w to|strong="H5921"\w* \w that|strong="H5921"\w* which comes \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w sale|strong="H4465"\w* \w of|strong="H5921"\w* \w his|strong="H5921"\w* family possessions. +\p +\v 9 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* come \w into|strong="H6213"\w* \w the|strong="H3588"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H3588"\w*, \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w learn|strong="H3925"\w* \w to|strong="H3068"\w* \w imitate|strong="H6213"\w* \w the|strong="H3588"\w* \w abominations|strong="H8441"\w* \w of|strong="H3068"\w* \w those|strong="H1992"\w* \w nations|strong="H1471"\w*. +\v 10 \w There|strong="H4672"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w found|strong="H4672"\w* \w with|strong="H5674"\w* \w you|strong="H3808"\w* anyone \w who|strong="H1121"\w* makes \w his|strong="H3808"\w* \w son|strong="H1121"\w* \w or|strong="H3808"\w* \w his|strong="H3808"\w* \w daughter|strong="H1323"\w* \w to|strong="H1121"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H5674"\w* fire, \w one|strong="H3808"\w* \w who|strong="H1121"\w* \w uses|strong="H5172"\w* \w divination|strong="H7081"\w*, \w one|strong="H3808"\w* \w who|strong="H1121"\w* tells fortunes, \w or|strong="H3808"\w* \w an|strong="H4672"\w* \w enchanter|strong="H5172"\w*, \w or|strong="H3808"\w* \w a|strong="H3068"\w* \w sorcerer|strong="H3784"\w*, +\v 11 \w or|strong="H1875"\w* \w a|strong="H3068"\w* \w charmer|strong="H2266"\w*, \w or|strong="H1875"\w* \w someone|strong="H4191"\w* \w who|strong="H7592"\w* \w consults|strong="H7592"\w* \w with|strong="H4191"\w* \w a|strong="H3068"\w* familiar spirit, \w or|strong="H1875"\w* \w a|strong="H3068"\w* \w wizard|strong="H3049"\w*, \w or|strong="H1875"\w* \w a|strong="H3068"\w* \w necromancer|strong="H1875"\w*. +\v 12 \w For|strong="H3588"\w* \w whoever|strong="H3605"\w* \w does|strong="H6213"\w* \w these|strong="H6213"\w* \w things|strong="H3605"\w* \w is|strong="H3068"\w* \w an|strong="H6213"\w* \w abomination|strong="H8441"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w Because|strong="H3588"\w* \w of|strong="H3068"\w* \w these|strong="H6213"\w* \w abominations|strong="H8441"\w*, \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* drives \w them|strong="H6440"\w* \w out|strong="H3423"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*. +\v 13 \w You|strong="H5973"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w blameless|strong="H8549"\w* \w with|strong="H5973"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 14 \w For|strong="H3588"\w* \w these|strong="H8085"\w* \w nations|strong="H1471"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w dispossess|strong="H3423"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w those|strong="H8085"\w* \w who|strong="H3068"\w* \w practice|strong="H6049"\w* sorcery \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w diviners|strong="H7080"\w*; \w but|strong="H3588"\w* \w as|strong="H3651"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*, \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w allowed|strong="H5414"\w* \w you|strong="H3588"\w* \w so|strong="H3651"\w* \w to|strong="H3068"\w* \w do|strong="H3068"\w*. +\v 15 \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w to|strong="H3068"\w* \w you|strong="H3644"\w* \w a|strong="H3068"\w* \w prophet|strong="H5030"\w* \w from|strong="H8085"\w* \w among|strong="H7130"\w* \w you|strong="H3644"\w*, \w of|strong="H3068"\w* \w your|strong="H3068"\w* brothers, \w like|strong="H3644"\w* \w me|strong="H6965"\w*. \w You|strong="H3644"\w* \w shall|strong="H3068"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w him|strong="H7130"\w*. +\v 16 \w This|strong="H2063"\w* \w is|strong="H3068"\w* according \w to|strong="H4191"\w* \w all|strong="H3605"\w* \w that|strong="H7200"\w* \w you|strong="H3605"\w* \w desired|strong="H7592"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w in|strong="H3068"\w* \w Horeb|strong="H2722"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w*, \w saying|strong="H6963"\w*, “\w Let|strong="H3808"\w* \w me|strong="H7200"\w* \w not|strong="H3808"\w* \w hear|strong="H8085"\w* \w again|strong="H5750"\w* \w Yahweh|strong="H3068"\w* \w my|strong="H8085"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w*, \w neither|strong="H3808"\w* \w let|strong="H3808"\w* \w me|strong="H7200"\w* \w see|strong="H7200"\w* \w this|strong="H2063"\w* \w great|strong="H1419"\w* fire \w any|strong="H3605"\w* \w more|strong="H3254"\w*, \w that|strong="H7200"\w* \w I|strong="H3117"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*.” +\p +\v 17 \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w*, “\w They|strong="H3068"\w* \w have|strong="H3068"\w* \w well|strong="H3190"\w* \w said|strong="H1696"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w they|strong="H3068"\w* \w have|strong="H3068"\w* \w spoken|strong="H1696"\w*. +\v 18 \w I|strong="H5414"\w* \w will|strong="H1697"\w* \w raise|strong="H6965"\w* \w them|strong="H5414"\w* \w up|strong="H6965"\w* \w a|strong="H3068"\w* \w prophet|strong="H5030"\w* \w from|strong="H6965"\w* \w among|strong="H7130"\w* \w their|strong="H3605"\w* brothers, \w like|strong="H3644"\w* \w you|strong="H5414"\w*. \w I|strong="H5414"\w* \w will|strong="H1697"\w* \w put|strong="H5414"\w* \w my|strong="H5414"\w* \w words|strong="H1697"\w* \w in|strong="H1696"\w* \w his|strong="H3605"\w* \w mouth|strong="H6310"\w*, \w and|strong="H6965"\w* \w he|strong="H3605"\w* \w shall|strong="H6310"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H5414"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H5414"\w* \w shall|strong="H6310"\w* \w command|strong="H6680"\w* \w him|strong="H5414"\w*. +\v 19 \w It|strong="H8034"\w* \w shall|strong="H3808"\w* \w happen|strong="H1961"\w*, \w that|strong="H8085"\w* whoever \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H1696"\w* \w my|strong="H8085"\w* \w words|strong="H1697"\w* \w which|strong="H1697"\w* \w he|strong="H3808"\w* \w shall|strong="H3808"\w* \w speak|strong="H1696"\w* \w in|strong="H8085"\w* \w my|strong="H8085"\w* \w name|strong="H8034"\w*, \w I|strong="H1697"\w* \w will|strong="H1961"\w* \w require|strong="H1875"\w* \w it|strong="H8034"\w* \w of|strong="H1697"\w* \w him|strong="H5973"\w*. +\v 20 \w But|strong="H3808"\w* \w the|strong="H6680"\w* \w prophet|strong="H5030"\w* \w who|strong="H1931"\w* \w speaks|strong="H1696"\w* \w a|strong="H3068"\w* \w word|strong="H1697"\w* \w presumptuously|strong="H2102"\w* \w in|strong="H4191"\w* \w my|strong="H1696"\w* \w name|strong="H8034"\w*, \w which|strong="H1931"\w* \w I|strong="H1697"\w* \w have|strong="H5030"\w* \w not|strong="H3808"\w* \w commanded|strong="H6680"\w* \w him|strong="H6680"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w*, \w or|strong="H3808"\w* \w who|strong="H1931"\w* \w speaks|strong="H1696"\w* \w in|strong="H4191"\w* \w the|strong="H6680"\w* \w name|strong="H8034"\w* \w of|strong="H1697"\w* other gods, \w that|strong="H1931"\w* \w same|strong="H1931"\w* \w prophet|strong="H5030"\w* \w shall|strong="H3808"\w* \w die|strong="H4191"\w*.” +\p +\v 21 \w You|strong="H3588"\w* \w may|strong="H3068"\w* \w say|strong="H1696"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w*, “\w How|strong="H3588"\w* \w shall|strong="H3068"\w* \w we|strong="H3068"\w* \w know|strong="H3045"\w* \w the|strong="H3588"\w* \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w spoken|strong="H1696"\w*?” +\v 22 \w When|strong="H1961"\w* \w a|strong="H3068"\w* \w prophet|strong="H5030"\w* \w speaks|strong="H1696"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*, \w if|strong="H1961"\w* \w the|strong="H3068"\w* \w thing|strong="H1697"\w* doesn’t \w follow|strong="H1961"\w*, \w nor|strong="H3808"\w* \w happen|strong="H1961"\w*, \w that|strong="H1931"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w thing|strong="H1697"\w* \w which|strong="H1931"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w spoken|strong="H1696"\w*. \w The|strong="H3068"\w* \w prophet|strong="H5030"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w it|strong="H1931"\w* \w presumptuously|strong="H2087"\w*. \w You|strong="H3808"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w afraid|strong="H1481"\w* \w of|strong="H3068"\w* \w him|strong="H1931"\w*. +\c 19 +\p +\v 1 \w When|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w cuts|strong="H3772"\w* \w off|strong="H3772"\w* \w the|strong="H3588"\w* \w nations|strong="H1471"\w* \w whose|strong="H1471"\w* land \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* succeed \w them|strong="H5414"\w* \w and|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w their|strong="H3068"\w* \w cities|strong="H5892"\w* \w and|strong="H3068"\w* \w in|strong="H3427"\w* \w their|strong="H3068"\w* \w houses|strong="H1004"\w*, +\v 2 \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w set|strong="H5414"\w* apart \w three|strong="H7969"\w* \w cities|strong="H5892"\w* \w for|strong="H3068"\w* \w yourselves|strong="H8432"\w* \w in|strong="H3068"\w* \w the|strong="H5414"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* land, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H5414"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w*. +\v 3 \w You|strong="H3605"\w* \w shall|strong="H3068"\w* \w prepare|strong="H3559"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w*, \w and|strong="H3068"\w* \w divide|strong="H5157"\w* \w the|strong="H3605"\w* \w borders|strong="H1366"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w land|strong="H1366"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* causes \w you|strong="H3605"\w* \w to|strong="H3068"\w* \w inherit|strong="H5157"\w* \w into|strong="H1961"\w* \w three|strong="H8027"\w* \w parts|strong="H8027"\w*, \w that|strong="H3605"\w* \w every|strong="H3605"\w* \w man|strong="H3605"\w* \w slayer|strong="H7523"\w* \w may|strong="H1961"\w* \w flee|strong="H5127"\w* \w there|strong="H8033"\w*. +\v 4 \w This|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H5221"\w* \w case|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H5221"\w* \w man|strong="H2088"\w* \w slayer|strong="H7523"\w* \w who|strong="H1931"\w* \w shall|strong="H7523"\w* \w flee|strong="H5127"\w* \w there|strong="H8033"\w* \w and|strong="H8033"\w* \w live|strong="H2425"\w*: Whoever \w kills|strong="H5221"\w* \w his|strong="H5221"\w* \w neighbor|strong="H7453"\w* \w unintentionally|strong="H1847"\w*, \w and|strong="H8033"\w* didn’t \w hate|strong="H8130"\w* \w him|strong="H5221"\w* \w in|strong="H1697"\w* \w time|strong="H8543"\w* \w past|strong="H8032"\w*— +\v 5 \w as|strong="H1270"\w* \w when|strong="H4480"\w* \w a|strong="H3068"\w* \w man|strong="H4191"\w* goes \w into|strong="H3027"\w* \w the|strong="H4480"\w* \w forest|strong="H3293"\w* \w with|strong="H3027"\w* \w his|strong="H3027"\w* \w neighbor|strong="H7453"\w* \w to|strong="H4191"\w* chop \w wood|strong="H6086"\w* \w and|strong="H3027"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w* \w swings|strong="H5080"\w* \w the|strong="H4480"\w* ax \w to|strong="H4191"\w* \w cut|strong="H3772"\w* \w down|strong="H3772"\w* \w the|strong="H4480"\w* \w tree|strong="H6086"\w*, \w and|strong="H3027"\w* \w the|strong="H4480"\w* \w head|strong="H1270"\w* \w slips|strong="H5394"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w handle|strong="H6086"\w* \w and|strong="H3027"\w* hits \w his|strong="H3027"\w* \w neighbor|strong="H7453"\w* \w so|strong="H4480"\w* \w that|strong="H1931"\w* \w he|strong="H1931"\w* \w dies|strong="H4191"\w*—\w he|strong="H1931"\w* \w shall|strong="H5892"\w* \w flee|strong="H5127"\w* \w to|strong="H4191"\w* \w one|strong="H4480"\w* \w of|strong="H3027"\w* \w these|strong="H1931"\w* \w cities|strong="H5892"\w* \w and|strong="H3027"\w* \w live|strong="H2425"\w*. +\v 6 \w Otherwise|strong="H6435"\w*, \w the|strong="H3588"\w* \w avenger|strong="H1350"\w* \w of|strong="H1870"\w* \w blood|strong="H1818"\w* \w might|strong="H6435"\w* \w pursue|strong="H7291"\w* \w the|strong="H3588"\w* \w man|strong="H5315"\w* \w slayer|strong="H7523"\w* \w while|strong="H1931"\w* \w hot|strong="H3179"\w* \w anger|strong="H3824"\w* \w is|strong="H1931"\w* \w in|strong="H5315"\w* \w his|strong="H5221"\w* \w heart|strong="H3824"\w* \w and|strong="H4941"\w* \w overtake|strong="H5381"\w* \w him|strong="H5221"\w*, \w because|strong="H3588"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w is|strong="H1931"\w* \w long|strong="H7235"\w*, \w and|strong="H4941"\w* \w strike|strong="H5221"\w* \w him|strong="H5221"\w* \w mortally|strong="H5315"\w*, \w even|strong="H3588"\w* \w though|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w not|strong="H3808"\w* \w worthy|strong="H4941"\w* \w of|strong="H1870"\w* \w death|strong="H4194"\w*, \w because|strong="H3588"\w* \w he|strong="H1931"\w* didn’t \w hate|strong="H8130"\w* \w him|strong="H5221"\w* \w in|strong="H5315"\w* \w time|strong="H8543"\w* \w past|strong="H8032"\w*. +\v 7 \w Therefore|strong="H3651"\w* \w I|strong="H5921"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w* \w to|strong="H5921"\w* \w set|strong="H6680"\w* apart \w three|strong="H7969"\w* \w cities|strong="H5892"\w* \w for|strong="H5921"\w* \w yourselves|strong="H5921"\w*. +\v 8 If \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w enlarges|strong="H7337"\w* \w your|strong="H3068"\w* \w border|strong="H1366"\w*, \w as|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w sworn|strong="H7650"\w* \w to|strong="H1696"\w* \w your|strong="H3068"\w* fathers, \w and|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H1366"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w promised|strong="H1696"\w* \w to|strong="H1696"\w* \w give|strong="H5414"\w* \w to|strong="H1696"\w* \w your|strong="H3068"\w* fathers; +\v 9 \w and|strong="H3068"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w keep|strong="H8104"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w commandment|strong="H4687"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w it|strong="H5921"\w*, \w which|strong="H3068"\w* \w I|strong="H3588"\w* \w command|strong="H6680"\w* \w you|strong="H3588"\w* \w today|strong="H3117"\w*, \w to|strong="H3068"\w* love \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w walk|strong="H3212"\w* \w ever|strong="H3117"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w ways|strong="H1870"\w*, \w then|strong="H3254"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w add|strong="H3254"\w* \w three|strong="H7969"\w* \w cities|strong="H5892"\w* \w more|strong="H3254"\w* \w for|strong="H3588"\w* \w yourselves|strong="H3605"\w*, \w in|strong="H5921"\w* \w addition|strong="H5921"\w* \w to|strong="H3068"\w* \w these|strong="H2063"\w* \w three|strong="H7969"\w*. +\v 10 \w This|strong="H5414"\w* \w is|strong="H3068"\w* \w so|strong="H1961"\w* \w that|strong="H3068"\w* \w innocent|strong="H5355"\w* \w blood|strong="H1818"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w shed|strong="H8210"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H7130"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w land|strong="H7130"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H5414"\w* \w for|strong="H5921"\w* \w an|strong="H1961"\w* \w inheritance|strong="H5159"\w*, leaving \w blood|strong="H1818"\w* \w guilt|strong="H1818"\w* \w on|strong="H5921"\w* \w you|strong="H5414"\w*. +\v 11 \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w any|strong="H5221"\w* \w man|strong="H5315"\w* \w hates|strong="H8130"\w* \w his|strong="H5921"\w* \w neighbor|strong="H7453"\w*, \w lies|strong="H1961"\w* \w in|strong="H5921"\w* wait \w for|strong="H3588"\w* \w him|strong="H5921"\w*, \w rises|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*, \w strikes|strong="H5221"\w* \w him|strong="H5921"\w* \w mortally|strong="H4191"\w* \w so|strong="H1961"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w dies|strong="H4191"\w*, \w and|strong="H6965"\w* \w he|strong="H3588"\w* \w flees|strong="H5127"\w* \w into|strong="H5921"\w* \w one|strong="H1961"\w* \w of|strong="H5892"\w* \w these|strong="H6965"\w* \w cities|strong="H5892"\w*; +\v 12 \w then|strong="H3947"\w* \w the|strong="H5414"\w* \w elders|strong="H2205"\w* \w of|strong="H3027"\w* \w his|strong="H5414"\w* \w city|strong="H5892"\w* \w shall|strong="H5892"\w* \w send|strong="H7971"\w* \w and|strong="H7971"\w* \w bring|strong="H3947"\w* \w him|strong="H5414"\w* \w there|strong="H8033"\w*, \w and|strong="H7971"\w* \w deliver|strong="H5414"\w* \w him|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5414"\w* \w avenger|strong="H1350"\w* \w of|strong="H3027"\w* \w blood|strong="H1818"\w*, \w that|strong="H5414"\w* \w he|strong="H8033"\w* \w may|strong="H5414"\w* \w die|strong="H4191"\w*. +\v 13 \w Your|strong="H5921"\w* \w eye|strong="H5869"\w* \w shall|strong="H3478"\w* \w not|strong="H3808"\w* \w pity|strong="H2347"\w* \w him|strong="H5921"\w*, \w but|strong="H3808"\w* \w you|strong="H5921"\w* \w shall|strong="H3478"\w* \w purge|strong="H1197"\w* \w the|strong="H5921"\w* \w innocent|strong="H5355"\w* \w blood|strong="H1818"\w* \w from|strong="H5921"\w* \w Israel|strong="H3478"\w* \w that|strong="H3478"\w* \w it|strong="H5921"\w* \w may|strong="H3478"\w* \w go|strong="H3478"\w* \w well|strong="H2896"\w* \w with|strong="H5921"\w* \w you|strong="H5921"\w*. +\p +\v 14 \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w remove|strong="H5253"\w* \w your|strong="H3068"\w* \w neighbor|strong="H7453"\w*’s \w landmark|strong="H1366"\w*, \w which|strong="H3068"\w* \w they|strong="H3068"\w* \w of|strong="H3068"\w* \w old|strong="H7223"\w* \w time|strong="H7223"\w* \w have|strong="H3068"\w* \w set|strong="H5414"\w*, \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w inheritance|strong="H5159"\w* \w which|strong="H3068"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w inherit|strong="H5157"\w*, \w in|strong="H3068"\w* \w the|strong="H5414"\w* \w land|strong="H5159"\w* \w that|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H5414"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w*. +\p +\v 15 \w One|strong="H3605"\w* \w witness|strong="H5707"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H5921"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w for|strong="H5921"\w* \w any|strong="H3605"\w* \w iniquity|strong="H5771"\w*, \w or|strong="H3808"\w* \w for|strong="H5921"\w* \w any|strong="H3605"\w* \w sin|strong="H2403"\w* \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w sins|strong="H2403"\w*. \w At|strong="H5921"\w* \w the|strong="H3605"\w* \w mouth|strong="H6310"\w* \w of|strong="H1697"\w* \w two|strong="H8147"\w* \w witnesses|strong="H5707"\w*, \w or|strong="H3808"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w mouth|strong="H6310"\w* \w of|strong="H1697"\w* \w three|strong="H7969"\w* \w witnesses|strong="H5707"\w*, \w shall|strong="H3808"\w* \w a|strong="H3068"\w* \w matter|strong="H1697"\w* \w be|strong="H3808"\w* \w established|strong="H6965"\w*. +\v 16 \w If|strong="H3588"\w* \w an|strong="H6965"\w* \w unrighteous|strong="H2555"\w* \w witness|strong="H5707"\w* \w rises|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H6965"\w* \w any|strong="H3588"\w* \w man|strong="H6030"\w* \w to|strong="H6965"\w* \w testify|strong="H6030"\w* \w against|strong="H6965"\w* \w him|strong="H6030"\w* \w of|strong="H2555"\w* \w wrongdoing|strong="H5627"\w*, +\v 17 \w then|strong="H1961"\w* \w both|strong="H8147"\w* \w the|strong="H6440"\w* \w men|strong="H1992"\w*, \w between|strong="H8199"\w* \w whom|strong="H1992"\w* \w the|strong="H6440"\w* \w controversy|strong="H7379"\w* \w is|strong="H3068"\w*, \w shall|strong="H3548"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w priests|strong="H3548"\w* \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w judges|strong="H8199"\w* \w who|strong="H3068"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w in|strong="H3068"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*; +\v 18 \w and|strong="H6030"\w* \w the|strong="H1875"\w* \w judges|strong="H8199"\w* \w shall|strong="H8199"\w* \w make|strong="H6030"\w* \w diligent|strong="H3190"\w* \w inquisition|strong="H1875"\w*; \w and|strong="H6030"\w* \w behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w the|strong="H1875"\w* \w witness|strong="H5707"\w* \w is|strong="H2009"\w* \w a|strong="H3068"\w* \w false|strong="H8267"\w* \w witness|strong="H5707"\w*, \w and|strong="H6030"\w* \w has|strong="H2009"\w* \w testified|strong="H6030"\w* \w falsely|strong="H8267"\w* against \w his|strong="H8199"\w* brother, +\v 19 \w then|strong="H6213"\w* \w you|strong="H6213"\w* \w shall|strong="H7451"\w* \w do|strong="H6213"\w* \w to|strong="H6213"\w* \w him|strong="H6213"\w* \w as|strong="H6213"\w* \w he|strong="H6213"\w* \w had|strong="H6213"\w* \w thought|strong="H2161"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w to|strong="H6213"\w* \w his|strong="H6213"\w* brother. \w So|strong="H6213"\w* \w you|strong="H6213"\w* \w shall|strong="H7451"\w* \w remove|strong="H1197"\w* \w the|strong="H6213"\w* \w evil|strong="H7451"\w* \w from|strong="H7451"\w* \w among|strong="H7130"\w* \w you|strong="H6213"\w*. +\v 20 \w Those|strong="H8085"\w* \w who|strong="H7604"\w* \w remain|strong="H7604"\w* \w shall|strong="H3808"\w* \w hear|strong="H8085"\w*, \w and|strong="H8085"\w* \w fear|strong="H3372"\w*, \w and|strong="H8085"\w* \w will|strong="H1697"\w* \w never|strong="H3808"\w* \w again|strong="H5750"\w* \w commit|strong="H6213"\w* \w any|strong="H5750"\w* \w such|strong="H2088"\w* \w evil|strong="H7451"\w* \w among|strong="H7130"\w* \w you|strong="H6213"\w*. +\v 21 \w Your|strong="H3808"\w* \w eyes|strong="H5869"\w* \w shall|strong="H5315"\w* \w not|strong="H3808"\w* \w pity|strong="H2347"\w*: \w life|strong="H5315"\w* \w for|strong="H3027"\w* \w life|strong="H5315"\w*, \w eye|strong="H5869"\w* \w for|strong="H3027"\w* \w eye|strong="H5869"\w*, \w tooth|strong="H8127"\w* \w for|strong="H3027"\w* \w tooth|strong="H8127"\w*, \w hand|strong="H3027"\w* \w for|strong="H3027"\w* \w hand|strong="H3027"\w*, \w foot|strong="H7272"\w* \w for|strong="H3027"\w* \w foot|strong="H7272"\w*. +\c 20 +\p +\v 1 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w battle|strong="H4421"\w* \w against|strong="H5921"\w* \w your|strong="H3068"\w* enemies, \w and|strong="H3068"\w* \w see|strong="H7200"\w* \w horses|strong="H5483"\w*, \w chariots|strong="H7393"\w*, \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w more|strong="H4480"\w* \w numerous|strong="H7227"\w* \w than|strong="H4480"\w* \w you|strong="H3588"\w*, \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w afraid|strong="H3372"\w* \w of|strong="H3068"\w* \w them|strong="H1992"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w who|strong="H5971"\w* \w brought|strong="H3318"\w* \w you|strong="H3588"\w* \w up|strong="H5927"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w is|strong="H3068"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*. +\v 2 \w It|strong="H7126"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w*, \w when|strong="H1961"\w* \w you|strong="H7126"\w* \w draw|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H1696"\w* \w the|strong="H7126"\w* \w battle|strong="H4421"\w*, \w that|strong="H5971"\w* \w the|strong="H7126"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w approach|strong="H7126"\w* \w and|strong="H3548"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H7126"\w* \w people|strong="H5971"\w*, +\v 3 \w and|strong="H3478"\w* \w shall|strong="H3478"\w* \w tell|strong="H8085"\w* \w them|strong="H5921"\w*, “\w Hear|strong="H8085"\w*, \w Israel|strong="H3478"\w*, \w you|strong="H6440"\w* \w draw|strong="H3478"\w* \w near|strong="H7131"\w* \w today|strong="H3117"\w* \w to|strong="H3478"\w* \w battle|strong="H4421"\w* \w against|strong="H5921"\w* \w your|strong="H5921"\w* enemies. Don’t let \w your|strong="H5921"\w* \w heart|strong="H3824"\w* \w faint|strong="H7401"\w*! Don’t \w be|strong="H3478"\w* \w afraid|strong="H3372"\w*, \w nor|strong="H3372"\w* \w tremble|strong="H6206"\w*, neither \w be|strong="H3478"\w* scared \w of|strong="H3117"\w* \w them|strong="H5921"\w*; +\v 4 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w is|strong="H3068"\w* \w he|strong="H3588"\w* \w who|strong="H3068"\w* \w goes|strong="H1980"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*, \w to|strong="H1980"\w* \w fight|strong="H3898"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w against|strong="H5973"\w* \w your|strong="H3068"\w* enemies, \w to|strong="H1980"\w* \w save|strong="H3467"\w* \w you|strong="H3588"\w*.” +\p +\v 5 \w The|strong="H7725"\w* \w officers|strong="H7860"\w* \w shall|strong="H5971"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H7725"\w* \w people|strong="H5971"\w*, \w saying|strong="H1696"\w*, “\w What|strong="H4310"\w* \w man|strong="H4191"\w* \w is|strong="H4310"\w* \w there|strong="H7725"\w* \w who|strong="H4310"\w* \w has|strong="H4310"\w* \w built|strong="H1129"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w house|strong="H1004"\w*, \w and|strong="H7725"\w* \w has|strong="H4310"\w* \w not|strong="H3808"\w* \w dedicated|strong="H2596"\w* \w it|strong="H7725"\w*? \w Let|strong="H3808"\w* \w him|strong="H7725"\w* \w go|strong="H3212"\w* \w and|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H1696"\w* \w his|strong="H7725"\w* \w house|strong="H1004"\w*, \w lest|strong="H6435"\w* \w he|strong="H1004"\w* \w die|strong="H4191"\w* \w in|strong="H1004"\w* \w the|strong="H7725"\w* \w battle|strong="H4421"\w*, \w and|strong="H7725"\w* \w another|strong="H3808"\w* \w man|strong="H4191"\w* \w dedicate|strong="H2596"\w* \w it|strong="H7725"\w*. +\v 6 \w What|strong="H4310"\w* \w man|strong="H4191"\w* \w is|strong="H4310"\w* \w there|strong="H7725"\w* \w who|strong="H4310"\w* \w has|strong="H4310"\w* \w planted|strong="H5193"\w* \w a|strong="H3068"\w* \w vineyard|strong="H3754"\w*, \w and|strong="H7725"\w* \w has|strong="H4310"\w* \w not|strong="H3808"\w* used \w its|strong="H7725"\w* \w fruit|strong="H2490"\w*? \w Let|strong="H3808"\w* \w him|strong="H7725"\w* \w go|strong="H3212"\w* \w and|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w house|strong="H1004"\w*, \w lest|strong="H6435"\w* \w he|strong="H1004"\w* \w die|strong="H4191"\w* \w in|strong="H1004"\w* \w the|strong="H7725"\w* \w battle|strong="H4421"\w*, \w and|strong="H7725"\w* \w another|strong="H3808"\w* \w man|strong="H4191"\w* \w use|strong="H2490"\w* \w its|strong="H7725"\w* \w fruit|strong="H2490"\w*. +\v 7 \w What|strong="H4310"\w* \w man|strong="H4191"\w* \w is|strong="H4310"\w* \w there|strong="H7725"\w* \w who|strong="H4310"\w* \w has|strong="H4310"\w* pledged \w to|strong="H7725"\w* \w be|strong="H4191"\w* \w married|strong="H3947"\w* \w to|strong="H7725"\w* \w a|strong="H3068"\w* wife, \w and|strong="H7725"\w* \w has|strong="H4310"\w* \w not|strong="H3808"\w* \w taken|strong="H3947"\w* \w her|strong="H3947"\w*? \w Let|strong="H3808"\w* \w him|strong="H7725"\w* \w go|strong="H3212"\w* \w and|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H3947"\w* \w house|strong="H1004"\w*, \w lest|strong="H6435"\w* \w he|strong="H1004"\w* \w die|strong="H4191"\w* \w in|strong="H1004"\w* \w the|strong="H3947"\w* \w battle|strong="H4421"\w*, \w and|strong="H7725"\w* \w another|strong="H3808"\w* \w man|strong="H4191"\w* \w take|strong="H3947"\w* \w her|strong="H3947"\w*.” +\v 8 \w The|strong="H7725"\w* \w officers|strong="H7860"\w* \w shall|strong="H5971"\w* \w speak|strong="H1696"\w* \w further|strong="H3254"\w* \w to|strong="H1696"\w* \w the|strong="H7725"\w* \w people|strong="H5971"\w*, \w and|strong="H7725"\w* \w they|strong="H3808"\w* \w shall|strong="H5971"\w* \w say|strong="H1696"\w*, “\w What|strong="H4310"\w* man \w is|strong="H4310"\w* \w there|strong="H7725"\w* \w who|strong="H4310"\w* \w is|strong="H4310"\w* \w fearful|strong="H3373"\w* \w and|strong="H7725"\w* faint-hearted? \w Let|strong="H3808"\w* \w him|strong="H7725"\w* \w go|strong="H3212"\w* \w and|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H1696"\w* \w his|strong="H7725"\w* \w house|strong="H1004"\w*, lest \w his|strong="H7725"\w* brother’s \w heart|strong="H3824"\w* \w melt|strong="H4549"\w* \w as|strong="H3824"\w* \w his|strong="H7725"\w* \w heart|strong="H3824"\w*.” +\v 9 \w It|strong="H1961"\w* \w shall|strong="H5971"\w* \w be|strong="H1961"\w*, \w when|strong="H1961"\w* \w the|strong="H6485"\w* \w officers|strong="H7860"\w* \w have|strong="H1961"\w* \w finished|strong="H3615"\w* \w speaking|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H6485"\w* \w people|strong="H5971"\w*, \w that|strong="H5971"\w* \w they|strong="H5971"\w* \w shall|strong="H5971"\w* \w appoint|strong="H6485"\w* \w captains|strong="H8269"\w* \w of|strong="H8269"\w* \w armies|strong="H6635"\w* \w at|strong="H1961"\w* \w the|strong="H6485"\w* \w head|strong="H7218"\w* \w of|strong="H8269"\w* \w the|strong="H6485"\w* \w people|strong="H5971"\w*. +\p +\v 10 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w draw|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H5921"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w* \w to|strong="H5921"\w* \w fight|strong="H3898"\w* \w against|strong="H5921"\w* \w it|strong="H7121"\w*, \w then|strong="H7126"\w* \w proclaim|strong="H7121"\w* \w peace|strong="H7965"\w* \w to|strong="H5921"\w* \w it|strong="H7121"\w*. +\v 11 \w It|strong="H1961"\w* \w shall|strong="H5971"\w* \w be|strong="H1961"\w*, \w if|strong="H1961"\w* \w it|strong="H1961"\w* gives \w you|strong="H3605"\w* \w answer|strong="H6030"\w* \w of|strong="H5971"\w* \w peace|strong="H7965"\w* \w and|strong="H6030"\w* \w opens|strong="H6605"\w* \w to|strong="H1961"\w* \w you|strong="H3605"\w*, \w then|strong="H6030"\w* \w it|strong="H1961"\w* \w shall|strong="H5971"\w* \w be|strong="H1961"\w* \w that|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w are|strong="H5971"\w* \w found|strong="H4672"\w* therein \w shall|strong="H5971"\w* \w become|strong="H1961"\w* \w forced|strong="H4522"\w* \w laborers|strong="H4522"\w* \w to|strong="H1961"\w* \w you|strong="H3605"\w*, \w and|strong="H6030"\w* \w shall|strong="H5971"\w* \w serve|strong="H5647"\w* \w you|strong="H3605"\w*. +\v 12 If \w it|strong="H5921"\w* \w will|strong="H3808"\w* \w make|strong="H6213"\w* \w no|strong="H3808"\w* \w peace|strong="H7999"\w* \w with|strong="H5973"\w* \w you|strong="H5921"\w*, \w but|strong="H3808"\w* \w will|strong="H3808"\w* \w make|strong="H6213"\w* \w war|strong="H4421"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w*, \w then|strong="H6213"\w* \w you|strong="H5921"\w* \w shall|strong="H3808"\w* \w besiege|strong="H6696"\w* \w it|strong="H5921"\w*. +\v 13 \w When|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w delivers|strong="H5414"\w* \w it|strong="H5414"\w* \w into|strong="H2719"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*, \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w strike|strong="H5221"\w* \w every|strong="H3605"\w* \w male|strong="H2138"\w* \w of|strong="H3068"\w* \w it|strong="H5414"\w* \w with|strong="H3068"\w* \w the|strong="H3605"\w* \w edge|strong="H6310"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*; +\v 14 \w but|strong="H7535"\w* \w the|strong="H3605"\w* women, \w the|strong="H3605"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*, \w the|strong="H3605"\w* livestock, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w even|strong="H3068"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w plunder|strong="H7998"\w*, \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w take|strong="H1961"\w* \w for|strong="H3068"\w* \w plunder|strong="H7998"\w* \w for|strong="H3068"\w* \w yourself|strong="H5414"\w*. \w You|strong="H5414"\w* \w may|strong="H1961"\w* \w use|strong="H1961"\w* \w the|strong="H3605"\w* \w plunder|strong="H7998"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* enemies, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w*. +\v 15 \w Thus|strong="H3651"\w* \w you|strong="H3605"\w* \w shall|strong="H1471"\w* \w do|strong="H6213"\w* \w to|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w which|strong="H1471"\w* \w are|strong="H1471"\w* \w very|strong="H3966"\w* \w far|strong="H7350"\w* \w off|strong="H7350"\w* \w from|strong="H4480"\w* \w you|strong="H3605"\w*, \w which|strong="H1471"\w* \w are|strong="H1471"\w* \w not|strong="H3808"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w these|strong="H6213"\w* \w nations|strong="H1471"\w*. +\v 16 \w But|strong="H7535"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w these|strong="H3605"\w* \w peoples|strong="H5971"\w* \w that|strong="H5971"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H5414"\w* \w for|strong="H3068"\w* \w an|strong="H5414"\w* \w inheritance|strong="H5159"\w*, \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w save|strong="H2421"\w* \w alive|strong="H2421"\w* \w nothing|strong="H3808"\w* \w that|strong="H5971"\w* \w breathes|strong="H5397"\w*; +\v 17 \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w utterly|strong="H2763"\w* \w destroy|strong="H2763"\w* \w them|strong="H6680"\w*: \w the|strong="H3588"\w* \w Hittite|strong="H2850"\w*, \w the|strong="H3588"\w* Amorite, \w the|strong="H3588"\w* \w Canaanite|strong="H3669"\w*, \w the|strong="H3588"\w* \w Perizzite|strong="H6522"\w*, \w the|strong="H3588"\w* \w Hivite|strong="H2340"\w*, \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w Jebusite|strong="H2983"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w* \w you|strong="H3588"\w*; +\v 18 \w that|strong="H3605"\w* \w they|strong="H3068"\w* \w not|strong="H3808"\w* \w teach|strong="H3925"\w* \w you|strong="H3605"\w* \w to|strong="H3068"\w* \w follow|strong="H6213"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w abominations|strong="H8441"\w*, \w which|strong="H3068"\w* \w they|strong="H3068"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w for|strong="H6213"\w* \w their|strong="H3605"\w* gods; \w so|strong="H4616"\w* \w would|strong="H3068"\w* \w you|strong="H3605"\w* \w sin|strong="H2398"\w* \w against|strong="H2398"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 19 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3117"\w* \w besiege|strong="H6696"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w* \w a|strong="H3068"\w* \w long|strong="H3117"\w* \w time|strong="H3117"\w*, \w in|strong="H5921"\w* \w making|strong="H3772"\w* \w war|strong="H3898"\w* \w against|strong="H5921"\w* \w it|strong="H5921"\w* \w to|strong="H5921"\w* \w take|strong="H8610"\w* \w it|strong="H5921"\w*, \w you|strong="H3588"\w* \w shall|strong="H3117"\w* \w not|strong="H3808"\w* \w destroy|strong="H7843"\w* \w its|strong="H5921"\w* \w trees|strong="H6086"\w* \w by|strong="H5921"\w* \w wielding|strong="H8610"\w* \w an|strong="H3772"\w* ax \w against|strong="H5921"\w* \w them|strong="H5921"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H3117"\w* \w eat|strong="H3898"\w* \w of|strong="H3117"\w* \w them|strong="H5921"\w*. \w You|strong="H3588"\w* \w shall|strong="H3117"\w* \w not|strong="H3808"\w* \w cut|strong="H3772"\w* \w them|strong="H5921"\w* \w down|strong="H3772"\w*, \w for|strong="H3588"\w* \w is|strong="H3117"\w* \w the|strong="H6440"\w* \w tree|strong="H6086"\w* \w of|strong="H3117"\w* \w the|strong="H6440"\w* \w field|strong="H7704"\w* \w man|strong="H6440"\w*, \w that|strong="H3588"\w* \w it|strong="H5921"\w* \w should|strong="H3588"\w* \w be|strong="H3808"\w* \w besieged|strong="H6696"\w* \w by|strong="H5921"\w* \w you|strong="H3588"\w*? +\v 20 \w Only|strong="H7535"\w* \w the|strong="H5921"\w* \w trees|strong="H6086"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w know|strong="H3045"\w* \w are|strong="H5892"\w* \w not|strong="H3808"\w* \w trees|strong="H6086"\w* \w for|strong="H3588"\w* \w food|strong="H3978"\w*, \w you|strong="H3588"\w* \w shall|strong="H5892"\w* \w destroy|strong="H7843"\w* \w and|strong="H6086"\w* \w cut|strong="H3772"\w* \w them|strong="H5921"\w* \w down|strong="H3381"\w*. \w You|strong="H3588"\w* \w shall|strong="H5892"\w* \w build|strong="H1129"\w* \w bulwarks|strong="H4692"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w that|strong="H3588"\w* \w makes|strong="H6213"\w* \w war|strong="H4421"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*, \w until|strong="H5704"\w* \w it|strong="H1931"\w* \w falls|strong="H3381"\w*. +\c 21 +\p +\v 1 \w If|strong="H3588"\w* \w someone|strong="H4310"\w* \w is|strong="H3068"\w* \w found|strong="H4672"\w* \w slain|strong="H2491"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w land|strong="H7704"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H3588"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w*, \w lying|strong="H5307"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w*, \w and|strong="H3068"\w* \w it|strong="H5414"\w* isn’t \w known|strong="H3045"\w* \w who|strong="H4310"\w* \w has|strong="H3068"\w* \w struck|strong="H5221"\w* \w him|strong="H5414"\w*, +\v 2 \w then|strong="H3318"\w* \w your|strong="H3318"\w* \w elders|strong="H2205"\w* \w and|strong="H5892"\w* \w your|strong="H3318"\w* \w judges|strong="H8199"\w* \w shall|strong="H5892"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H5892"\w* \w they|strong="H5892"\w* \w shall|strong="H5892"\w* \w measure|strong="H4058"\w* \w to|strong="H3318"\w* \w the|strong="H3318"\w* \w cities|strong="H5892"\w* \w which|strong="H5892"\w* \w are|strong="H5892"\w* \w around|strong="H5439"\w* \w him|strong="H3318"\w* \w who|strong="H2491"\w* \w is|strong="H5892"\w* \w slain|strong="H2491"\w*. +\v 3 \w It|strong="H1931"\w* \w shall|strong="H5892"\w* \w be|strong="H1961"\w* \w that|strong="H1931"\w* \w the|strong="H3947"\w* \w elders|strong="H2205"\w* \w of|strong="H5892"\w* \w the|strong="H3947"\w* \w city|strong="H5892"\w* \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w nearest|strong="H7138"\w* \w to|strong="H1961"\w* \w the|strong="H3947"\w* \w slain|strong="H2491"\w* \w man|strong="H2205"\w* \w shall|strong="H5892"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w heifer|strong="H5697"\w* \w of|strong="H5892"\w* \w the|strong="H3947"\w* \w herd|strong="H1241"\w*, \w which|strong="H1931"\w* hasn’t \w been|strong="H1961"\w* \w worked|strong="H5647"\w* \w with|strong="H5892"\w* \w and|strong="H5892"\w* \w which|strong="H1931"\w* \w has|strong="H1961"\w* \w not|strong="H3808"\w* \w drawn|strong="H4900"\w* \w in|strong="H5892"\w* \w the|strong="H3947"\w* \w yoke|strong="H5923"\w*. +\v 4 \w The|strong="H5647"\w* \w elders|strong="H2205"\w* \w of|strong="H5892"\w* \w that|strong="H1931"\w* \w city|strong="H5892"\w* \w shall|strong="H5892"\w* \w bring|strong="H3381"\w* \w the|strong="H5647"\w* \w heifer|strong="H5697"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w a|strong="H3068"\w* \w valley|strong="H5158"\w* \w with|strong="H3381"\w* running water, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w neither|strong="H3808"\w* \w plowed|strong="H5647"\w* \w nor|strong="H3808"\w* \w sown|strong="H2232"\w*, \w and|strong="H5892"\w* \w shall|strong="H5892"\w* \w break|strong="H6202"\w* \w the|strong="H5647"\w* \w heifer|strong="H5697"\w*’s \w neck|strong="H6202"\w* \w there|strong="H8033"\w* \w in|strong="H5892"\w* \w the|strong="H5647"\w* \w valley|strong="H5158"\w*. +\v 5 \w The|strong="H3605"\w* \w priests|strong="H3548"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w* \w shall|strong="H3548"\w* \w come|strong="H1961"\w* \w near|strong="H5066"\w*, \w for|strong="H3588"\w* \w them|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* chosen \w to|strong="H3068"\w* \w minister|strong="H8334"\w* \w to|strong="H3068"\w* \w him|strong="H5921"\w*, \w and|strong="H1121"\w* \w to|strong="H3068"\w* \w bless|strong="H1288"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*; \w and|strong="H1121"\w* \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w their|strong="H3605"\w* \w word|strong="H6310"\w* \w shall|strong="H3548"\w* \w every|strong="H3605"\w* \w controversy|strong="H7379"\w* \w and|strong="H1121"\w* \w every|strong="H3605"\w* \w assault|strong="H5061"\w* \w be|strong="H1961"\w* \w decided|strong="H1961"\w*. +\v 6 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H3027"\w* \w that|strong="H3605"\w* \w city|strong="H5892"\w* \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w nearest|strong="H7138"\w* \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w slain|strong="H2491"\w* \w man|strong="H2205"\w* \w shall|strong="H5892"\w* \w wash|strong="H7364"\w* \w their|strong="H3605"\w* \w hands|strong="H3027"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w heifer|strong="H5697"\w* \w whose|strong="H3605"\w* \w neck|strong="H6202"\w* \w was|strong="H1931"\w* \w broken|strong="H6202"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w valley|strong="H5158"\w*. +\v 7 \w They|strong="H3808"\w* \w shall|strong="H5869"\w* \w answer|strong="H6030"\w* \w and|strong="H6030"\w* say, “\w Our|strong="H7200"\w* \w hands|strong="H3027"\w* \w have|strong="H5869"\w* \w not|strong="H3808"\w* \w shed|strong="H8210"\w* \w this|strong="H2088"\w* \w blood|strong="H1818"\w*, \w neither|strong="H3808"\w* \w have|strong="H5869"\w* \w our|strong="H7200"\w* \w eyes|strong="H5869"\w* \w seen|strong="H7200"\w* \w it|strong="H7200"\w*. +\v 8 \w Forgive|strong="H3722"\w*, \w Yahweh|strong="H3068"\w*, \w your|strong="H3068"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w whom|strong="H1992"\w* \w you|strong="H5414"\w* \w have|strong="H3068"\w* \w redeemed|strong="H6299"\w*, \w and|strong="H3478"\w* don’t \w allow|strong="H5414"\w* \w innocent|strong="H5355"\w* \w blood|strong="H1818"\w* \w among|strong="H7130"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*.” \w The|strong="H5414"\w* \w blood|strong="H1818"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w forgiven|strong="H3722"\w* \w them|strong="H5414"\w*. +\v 9 \w So|strong="H6213"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w put|strong="H1197"\w* \w away|strong="H1197"\w* \w the|strong="H3588"\w* \w innocent|strong="H5355"\w* \w blood|strong="H1818"\w* \w from|strong="H3068"\w* \w among|strong="H7130"\w* \w you|strong="H3588"\w*, \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w right|strong="H3477"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*. +\p +\v 10 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w battle|strong="H4421"\w* \w against|strong="H5921"\w* \w your|strong="H3068"\w* \w enemies|strong="H3027"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w delivers|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H5921"\w* \w your|strong="H3068"\w* \w hands|strong="H3027"\w* \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w carry|strong="H3318"\w* \w them|strong="H5414"\w* \w away|strong="H7617"\w* \w captive|strong="H7617"\w*, +\v 11 \w and|strong="H7200"\w* \w see|strong="H7200"\w* \w among|strong="H3303"\w* \w the|strong="H7200"\w* \w captives|strong="H7633"\w* \w a|strong="H3068"\w* \w beautiful|strong="H3303"\w* woman, \w and|strong="H7200"\w* \w you|strong="H3947"\w* are attracted \w to|strong="H7200"\w* \w her|strong="H3947"\w*, \w and|strong="H7200"\w* \w desire|strong="H2836"\w* \w to|strong="H7200"\w* \w take|strong="H3947"\w* \w her|strong="H3947"\w* \w as|strong="H3303"\w* \w your|strong="H3947"\w* wife, +\v 12 \w then|strong="H6213"\w* \w you|strong="H6213"\w* \w shall|strong="H1004"\w* \w bring|strong="H6213"\w* \w her|strong="H6213"\w* \w home|strong="H1004"\w* \w to|strong="H6213"\w* \w your|strong="H6213"\w* \w house|strong="H1004"\w*. She \w shall|strong="H1004"\w* \w shave|strong="H1548"\w* \w her|strong="H6213"\w* \w head|strong="H7218"\w* \w and|strong="H1004"\w* \w trim|strong="H6213"\w* \w her|strong="H6213"\w* \w nails|strong="H6856"\w*. +\v 13 \w She|strong="H5921"\w* \w shall|strong="H1004"\w* \w take|strong="H5493"\w* \w off|strong="H5493"\w* \w the|strong="H5921"\w* \w clothing|strong="H8071"\w* \w of|strong="H1004"\w* \w her|strong="H5493"\w* \w captivity|strong="H7633"\w*, \w and|strong="H3117"\w* \w shall|strong="H1004"\w* \w remain|strong="H3427"\w* \w in|strong="H3427"\w* \w your|strong="H5921"\w* \w house|strong="H1004"\w*, \w and|strong="H3117"\w* \w bewail|strong="H1058"\w* \w her|strong="H5493"\w* father \w and|strong="H3117"\w* \w her|strong="H5493"\w* mother \w a|strong="H3068"\w* \w full|strong="H3117"\w* \w month|strong="H3391"\w*. \w After|strong="H5921"\w* \w that|strong="H3117"\w* \w you|strong="H5921"\w* \w shall|strong="H1004"\w* \w go|strong="H1961"\w* \w in|strong="H3427"\w* \w to|strong="H1961"\w* \w her|strong="H5493"\w* \w and|strong="H3117"\w* \w be|strong="H1961"\w* \w her|strong="H5493"\w* \w husband|strong="H1167"\w*, \w and|strong="H3117"\w* \w she|strong="H5921"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w* \w your|strong="H5921"\w* wife. +\v 14 \w It|strong="H1961"\w* \w shall|strong="H5315"\w* \w be|strong="H1961"\w*, \w if|strong="H1961"\w* \w you|strong="H7971"\w* \w have|strong="H1961"\w* \w no|strong="H3808"\w* \w delight|strong="H2654"\w* \w in|strong="H5315"\w* \w her|strong="H7971"\w*, \w then|strong="H1961"\w* \w you|strong="H7971"\w* \w shall|strong="H5315"\w* \w let|strong="H7971"\w* \w her|strong="H7971"\w* \w go|strong="H7971"\w* \w where|strong="H8478"\w* \w she|strong="H3808"\w* \w desires|strong="H2654"\w*; \w but|strong="H3808"\w* \w you|strong="H7971"\w* \w shall|strong="H5315"\w* \w not|strong="H3808"\w* \w sell|strong="H4376"\w* \w her|strong="H7971"\w* \w at|strong="H1961"\w* \w all|strong="H7971"\w* \w for|strong="H8478"\w* \w money|strong="H3701"\w*. \w You|strong="H7971"\w* \w shall|strong="H5315"\w* \w not|strong="H3808"\w* deal \w with|strong="H5315"\w* \w her|strong="H7971"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w slave|strong="H5315"\w*, \w because|strong="H8478"\w* \w you|strong="H7971"\w* \w have|strong="H1961"\w* \w humbled|strong="H6031"\w* \w her|strong="H7971"\w*. +\p +\v 15 \w If|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w has|strong="H1961"\w* \w two|strong="H8147"\w* wives, \w the|strong="H3588"\w* \w one|strong="H1121"\w* beloved \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w other|strong="H8147"\w* \w hated|strong="H8130"\w*, \w and|strong="H1121"\w* \w they|strong="H3588"\w* \w have|strong="H1961"\w* \w borne|strong="H3205"\w* \w him|strong="H3205"\w* \w children|strong="H1121"\w*, \w both|strong="H8147"\w* \w the|strong="H3588"\w* beloved \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w hated|strong="H8130"\w*, \w and|strong="H1121"\w* \w if|strong="H3588"\w* \w the|strong="H3588"\w* \w firstborn|strong="H1060"\w* \w son|strong="H1121"\w* \w is|strong="H1121"\w* hers \w who|strong="H1121"\w* \w was|strong="H1961"\w* \w hated|strong="H8130"\w*, +\v 16 \w then|strong="H1961"\w* \w it|strong="H5921"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w*, \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w he|strong="H3117"\w* causes \w his|strong="H6440"\w* \w sons|strong="H1121"\w* \w to|strong="H3201"\w* \w inherit|strong="H5157"\w* \w that|strong="H3117"\w* \w which|strong="H3117"\w* \w he|strong="H3117"\w* \w has|strong="H1961"\w*, \w that|strong="H3117"\w* \w he|strong="H3117"\w* \w may|strong="H1961"\w* \w not|strong="H3808"\w* \w give|strong="H5157"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* beloved \w the|strong="H6440"\w* rights \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w firstborn|strong="H1060"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w hated|strong="H8130"\w*, \w who|strong="H1121"\w* \w is|strong="H3117"\w* \w the|strong="H6440"\w* \w firstborn|strong="H1060"\w*; +\v 17 \w but|strong="H3588"\w* \w he|strong="H1931"\w* \w shall|strong="H1121"\w* \w acknowledge|strong="H5234"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w*, \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w hated|strong="H8130"\w*, \w by|strong="H5414"\w* \w giving|strong="H5414"\w* \w him|strong="H5414"\w* \w a|strong="H3068"\w* \w double|strong="H8147"\w* \w portion|strong="H6310"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w has|strong="H3588"\w*; \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H3605"\w* \w beginning|strong="H7225"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* strength. \w The|strong="H3605"\w* \w right|strong="H4941"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w is|strong="H1931"\w* \w his|strong="H3605"\w*. +\p +\v 18 \w If|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w has|strong="H1961"\w* \w a|strong="H3068"\w* \w stubborn|strong="H5637"\w* \w and|strong="H1121"\w* \w rebellious|strong="H4784"\w* \w son|strong="H1121"\w* \w who|strong="H1121"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w obey|strong="H8085"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H1121"\w* \w his|strong="H8085"\w* \w father|strong="H1121"\w* \w or|strong="H3808"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H1121"\w* \w his|strong="H8085"\w* mother, \w and|strong="H1121"\w* \w though|strong="H3588"\w* \w they|strong="H3588"\w* \w chasten|strong="H3256"\w* \w him|strong="H6963"\w*, \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H1961"\w* \w them|strong="H1961"\w*, +\v 19 \w then|strong="H3318"\w* \w his|strong="H3318"\w* father \w and|strong="H5892"\w* \w his|strong="H3318"\w* mother \w shall|strong="H5892"\w* \w take|strong="H8610"\w* \w hold|strong="H8610"\w* \w of|strong="H5892"\w* \w him|strong="H3318"\w* \w and|strong="H5892"\w* \w bring|strong="H3318"\w* \w him|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3318"\w* \w elders|strong="H2205"\w* \w of|strong="H5892"\w* \w his|strong="H3318"\w* \w city|strong="H5892"\w* \w and|strong="H5892"\w* \w to|strong="H3318"\w* \w the|strong="H3318"\w* \w gate|strong="H8179"\w* \w of|strong="H5892"\w* \w his|strong="H3318"\w* \w place|strong="H4725"\w*. +\v 20 \w They|strong="H5892"\w* \w shall|strong="H1121"\w* \w tell|strong="H8085"\w* \w the|strong="H8085"\w* \w elders|strong="H2205"\w* \w of|strong="H1121"\w* \w his|strong="H8085"\w* \w city|strong="H5892"\w*, “\w This|strong="H2088"\w* \w our|strong="H8085"\w* \w son|strong="H1121"\w* \w is|strong="H2088"\w* \w stubborn|strong="H5637"\w* \w and|strong="H1121"\w* \w rebellious|strong="H4784"\w*. \w He|strong="H2088"\w* \w will|strong="H1121"\w* \w not|strong="H2088"\w* \w obey|strong="H8085"\w* \w our|strong="H8085"\w* \w voice|strong="H6963"\w*. \w He|strong="H2088"\w* \w is|strong="H2088"\w* \w a|strong="H3068"\w* \w glutton|strong="H2151"\w* \w and|strong="H1121"\w* \w a|strong="H3068"\w* drunkard.” +\v 21 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H7451"\w* \w of|strong="H5892"\w* \w his|strong="H3605"\w* \w city|strong="H5892"\w* \w shall|strong="H3478"\w* \w stone|strong="H7275"\w* \w him|strong="H4191"\w* \w to|strong="H3478"\w* \w death|strong="H4191"\w* \w with|strong="H5892"\w* stones. \w So|strong="H4191"\w* \w you|strong="H3605"\w* \w shall|strong="H3478"\w* \w remove|strong="H1197"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w from|strong="H3478"\w* \w among|strong="H7130"\w* \w you|strong="H3605"\w*. \w All|strong="H3605"\w* \w Israel|strong="H3478"\w* \w shall|strong="H3478"\w* \w hear|strong="H8085"\w*, \w and|strong="H3478"\w* \w fear|strong="H3372"\w*. +\p +\v 22 \w If|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H4191"\w* \w has|strong="H1961"\w* \w committed|strong="H1961"\w* \w a|strong="H3068"\w* \w sin|strong="H2399"\w* \w worthy|strong="H4941"\w* \w of|strong="H6086"\w* \w death|strong="H4194"\w*, \w and|strong="H4941"\w* \w he|strong="H3588"\w* \w is|strong="H1961"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4194"\w*, \w and|strong="H4941"\w* \w you|strong="H3588"\w* \w hang|strong="H8518"\w* \w him|strong="H5921"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w tree|strong="H6086"\w*, +\v 23 \w his|strong="H5414"\w* \w body|strong="H5038"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w remain|strong="H3885"\w* \w all|strong="H5414"\w* \w night|strong="H3885"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tree|strong="H6086"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w surely|strong="H3588"\w* \w bury|strong="H6912"\w* \w him|strong="H5414"\w* \w the|strong="H5921"\w* \w same|strong="H1931"\w* \w day|strong="H3117"\w*; \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w who|strong="H1931"\w* \w is|strong="H3068"\w* \w hanged|strong="H8518"\w* \w is|strong="H3068"\w* \w accursed|strong="H7045"\w* \w of|strong="H3068"\w* \w God|strong="H3068"\w*. Don’t \w defile|strong="H2930"\w* \w your|strong="H3068"\w* \w land|strong="H5159"\w* \w which|strong="H1931"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H3588"\w* \w for|strong="H3588"\w* \w an|strong="H5414"\w* \w inheritance|strong="H5159"\w*. +\c 22 +\p +\v 1 \w You|strong="H7725"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w* \w your|strong="H7200"\w* brother’s \w ox|strong="H7794"\w* \w or|strong="H3808"\w* \w his|strong="H7725"\w* \w sheep|strong="H7716"\w* \w go|strong="H7725"\w* \w astray|strong="H5080"\w* \w and|strong="H7725"\w* \w hide|strong="H5956"\w* yourself \w from|strong="H7725"\w* \w them|strong="H1992"\w*. \w You|strong="H7725"\w* \w shall|strong="H3808"\w* \w surely|strong="H7725"\w* \w bring|strong="H7725"\w* \w them|strong="H1992"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w your|strong="H7200"\w* brother. +\v 2 \w If|strong="H1961"\w* \w your|strong="H3045"\w* brother isn’t \w near|strong="H7138"\w* \w to|strong="H5704"\w* \w you|strong="H5704"\w*, \w or|strong="H3808"\w* \w if|strong="H1961"\w* \w you|strong="H5704"\w* don’t \w know|strong="H3045"\w* \w him|strong="H7725"\w*, \w then|strong="H1961"\w* \w you|strong="H5704"\w* \w shall|strong="H1004"\w* \w bring|strong="H7725"\w* \w it|strong="H8432"\w* \w home|strong="H1004"\w* \w to|strong="H5704"\w* \w your|strong="H3045"\w* \w house|strong="H1004"\w*, \w and|strong="H7725"\w* \w it|strong="H8432"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H5704"\w* \w until|strong="H5704"\w* \w your|strong="H3045"\w* brother \w comes|strong="H1961"\w* \w looking|strong="H1961"\w* \w for|strong="H5704"\w* \w it|strong="H8432"\w*, \w and|strong="H7725"\w* \w you|strong="H5704"\w* \w shall|strong="H1004"\w* \w restore|strong="H7725"\w* \w it|strong="H8432"\w* \w to|strong="H5704"\w* \w him|strong="H7725"\w*. +\v 3 \w So|strong="H3651"\w* \w you|strong="H3605"\w* \w shall|strong="H3808"\w* \w do|strong="H6213"\w* \w with|strong="H6213"\w* \w his|strong="H3605"\w* \w donkey|strong="H2543"\w*. \w So|strong="H3651"\w* \w you|strong="H3605"\w* \w shall|strong="H3808"\w* \w do|strong="H6213"\w* \w with|strong="H6213"\w* \w his|strong="H3605"\w* \w garment|strong="H8071"\w*. \w So|strong="H3651"\w* \w you|strong="H3605"\w* \w shall|strong="H3808"\w* \w do|strong="H6213"\w* \w with|strong="H6213"\w* \w every|strong="H3605"\w* lost \w thing|strong="H3605"\w* \w of|strong="H4480"\w* \w your|strong="H3605"\w* brother’s, \w which|strong="H3605"\w* \w he|strong="H3651"\w* \w has|strong="H3605"\w* lost \w and|strong="H6213"\w* \w you|strong="H3605"\w* \w have|strong="H4672"\w* \w found|strong="H4672"\w*. \w You|strong="H3605"\w* \w may|strong="H3201"\w* \w not|strong="H3808"\w* \w hide|strong="H5956"\w* \w yourself|strong="H6213"\w*. +\v 4 \w You|strong="H5973"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w* \w your|strong="H7200"\w* brother’s \w donkey|strong="H2543"\w* \w or|strong="H3808"\w* \w his|strong="H7200"\w* \w ox|strong="H7794"\w* \w fallen|strong="H5307"\w* \w down|strong="H5307"\w* \w by|strong="H1870"\w* \w the|strong="H7200"\w* \w way|strong="H1870"\w*, \w and|strong="H6965"\w* \w hide|strong="H5956"\w* \w yourself|strong="H5307"\w* \w from|strong="H6965"\w* \w them|strong="H1992"\w*. \w You|strong="H5973"\w* \w shall|strong="H3808"\w* \w surely|strong="H6965"\w* \w help|strong="H6965"\w* \w him|strong="H7200"\w* \w to|strong="H1870"\w* \w lift|strong="H6965"\w* \w them|strong="H1992"\w* \w up|strong="H6965"\w* \w again|strong="H6965"\w*. +\p +\v 5 \w A|strong="H3068"\w* woman \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w wear|strong="H3847"\w* \w men|strong="H1397"\w*’s \w clothing|strong="H8071"\w*, \w neither|strong="H3808"\w* \w shall|strong="H3068"\w* \w a|strong="H3068"\w* \w man|strong="H1397"\w* \w put|strong="H3847"\w* \w on|strong="H5921"\w* women’s \w clothing|strong="H8071"\w*; \w for|strong="H3588"\w* \w whoever|strong="H3605"\w* \w does|strong="H6213"\w* \w these|strong="H6213"\w* \w things|strong="H3605"\w* \w is|strong="H3068"\w* \w an|strong="H6213"\w* \w abomination|strong="H8441"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\p +\v 6 \w If|strong="H3588"\w* \w you|strong="H3588"\w* \w come|strong="H7122"\w* \w across|strong="H5921"\w* \w a|strong="H3068"\w* \w bird|strong="H6833"\w*’s \w nest|strong="H7064"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w*, \w in|strong="H5921"\w* \w any|strong="H3605"\w* \w tree|strong="H6086"\w* \w or|strong="H3808"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w ground|strong="H6440"\w*, \w with|strong="H5921"\w* \w young|strong="H1121"\w* \w ones|strong="H1121"\w* \w or|strong="H3808"\w* \w eggs|strong="H1000"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* hen \w sitting|strong="H7257"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w young|strong="H1121"\w*, \w or|strong="H3808"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w eggs|strong="H1000"\w*, \w you|strong="H3588"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w take|strong="H3947"\w* \w the|strong="H3605"\w* hen \w with|strong="H5921"\w* \w the|strong="H3605"\w* \w young|strong="H1121"\w*. +\v 7 \w You|strong="H7971"\w* \w shall|strong="H1121"\w* \w surely|strong="H3190"\w* \w let|strong="H7971"\w* \w the|strong="H3947"\w* hen \w go|strong="H7971"\w*, \w but|strong="H3947"\w* \w the|strong="H3947"\w* \w young|strong="H1121"\w* \w you|strong="H7971"\w* \w may|strong="H1121"\w* \w take|strong="H3947"\w* \w for|strong="H7971"\w* yourself, \w that|strong="H3117"\w* \w it|strong="H7971"\w* \w may|strong="H1121"\w* \w be|strong="H1121"\w* \w well|strong="H3190"\w* \w with|strong="H3117"\w* \w you|strong="H7971"\w*, \w and|strong="H1121"\w* \w that|strong="H3117"\w* \w you|strong="H7971"\w* \w may|strong="H1121"\w* prolong \w your|strong="H3947"\w* \w days|strong="H3117"\w*. +\p +\v 8 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w build|strong="H1129"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w house|strong="H1004"\w*, \w then|strong="H5307"\w* \w you|strong="H3588"\w* \w shall|strong="H1004"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* railing around \w your|strong="H7760"\w* \w roof|strong="H1406"\w*, \w so|strong="H6213"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* don’t \w bring|strong="H6213"\w* \w blood|strong="H1818"\w* \w on|strong="H5307"\w* \w your|strong="H7760"\w* \w house|strong="H1004"\w* \w if|strong="H3588"\w* \w anyone|strong="H5307"\w* \w falls|strong="H5307"\w* \w from|strong="H4480"\w* \w there|strong="H4480"\w*. +\p +\v 9 \w You|strong="H3808"\w* \w shall|strong="H2233"\w* \w not|strong="H3808"\w* \w sow|strong="H2232"\w* \w your|strong="H3808"\w* \w vineyard|strong="H3754"\w* \w with|strong="H2233"\w* \w two|strong="H3610"\w* \w kinds|strong="H3610"\w* \w of|strong="H2233"\w* \w seed|strong="H2233"\w*, \w lest|strong="H6435"\w* \w all|strong="H4395"\w* \w the|strong="H6942"\w* \w fruit|strong="H8393"\w* \w be|strong="H3808"\w* \w defiled|strong="H6942"\w*, \w the|strong="H6942"\w* \w seed|strong="H2233"\w* which \w you|strong="H3808"\w* \w have|strong="H3808"\w* \w sown|strong="H2232"\w*, \w and|strong="H3754"\w* \w the|strong="H6942"\w* \w increase|strong="H8393"\w* \w of|strong="H2233"\w* \w the|strong="H6942"\w* \w vineyard|strong="H3754"\w*. +\v 10 \w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w plow|strong="H2790"\w* \w with|strong="H7794"\w* an \w ox|strong="H7794"\w* \w and|strong="H7794"\w* \w a|strong="H3068"\w* \w donkey|strong="H2543"\w* \w together|strong="H3162"\w*. +\v 11 \w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w wear|strong="H3847"\w* \w clothes|strong="H3847"\w* \w of|strong="H3808"\w* \w wool|strong="H6785"\w* \w and|strong="H6785"\w* \w linen|strong="H6593"\w* woven \w together|strong="H3162"\w*. +\p +\v 12 \w You|strong="H5921"\w* \w shall|strong="H3671"\w* \w make|strong="H6213"\w* \w yourselves|strong="H5921"\w* \w fringes|strong="H1434"\w*\f + \fr 22:12 \ft or, tassels\f* \w on|strong="H5921"\w* \w the|strong="H5921"\w* four \w corners|strong="H3671"\w* \w of|strong="H5921"\w* \w your|strong="H5921"\w* cloak \w with|strong="H6213"\w* which \w you|strong="H5921"\w* \w cover|strong="H3680"\w* \w yourself|strong="H6213"\w*. +\p +\v 13 \w If|strong="H3588"\w* \w any|strong="H3947"\w* man \w takes|strong="H3947"\w* \w a|strong="H3068"\w* wife, \w and|strong="H3947"\w* goes \w in|strong="H3947"\w* \w to|strong="H3947"\w* \w her|strong="H3947"\w*, \w hates|strong="H8130"\w* \w her|strong="H3947"\w*, +\v 14 accuses \w her|strong="H3947"\w* \w of|strong="H1697"\w* \w shameful|strong="H5949"\w* \w things|strong="H1697"\w*, gives \w her|strong="H3947"\w* \w a|strong="H3068"\w* \w bad|strong="H7451"\w* \w name|strong="H8034"\w*, \w and|strong="H1697"\w* \w says|strong="H1697"\w*, “\w I|strong="H5921"\w* \w took|strong="H3947"\w* \w this|strong="H2063"\w* \w woman|strong="H8034"\w*, \w and|strong="H1697"\w* \w when|strong="H3318"\w* \w I|strong="H5921"\w* \w came|strong="H3318"\w* \w near|strong="H7126"\w* \w to|strong="H3318"\w* \w her|strong="H3947"\w*, \w I|strong="H5921"\w* didn’t \w find|strong="H4672"\w* \w in|strong="H5921"\w* \w her|strong="H3947"\w* \w the|strong="H5921"\w* tokens \w of|strong="H1697"\w* \w virginity|strong="H1331"\w*;” +\v 15 \w then|strong="H3318"\w* \w the|strong="H3947"\w* \w young|strong="H5291"\w* \w lady|strong="H5291"\w*’s father \w and|strong="H5892"\w* mother \w shall|strong="H5892"\w* \w take|strong="H3947"\w* \w and|strong="H5892"\w* \w bring|strong="H3318"\w* \w the|strong="H3947"\w* tokens \w of|strong="H5892"\w* \w the|strong="H3947"\w* \w young|strong="H5291"\w* \w lady|strong="H5291"\w*’s \w virginity|strong="H1331"\w* \w to|strong="H3318"\w* \w the|strong="H3947"\w* \w elders|strong="H2205"\w* \w of|strong="H5892"\w* \w the|strong="H3947"\w* \w city|strong="H5892"\w* \w in|strong="H5892"\w* \w the|strong="H3947"\w* \w gate|strong="H8179"\w*. +\v 16 \w The|strong="H5414"\w* \w young|strong="H5291"\w* \w lady|strong="H5291"\w*’s father \w shall|strong="H1323"\w* tell \w the|strong="H5414"\w* \w elders|strong="H2205"\w*, “\w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w my|strong="H5414"\w* \w daughter|strong="H1323"\w* \w to|strong="H5414"\w* \w this|strong="H2088"\w* \w man|strong="H2205"\w* \w as|strong="H5414"\w* \w his|strong="H5414"\w* wife, \w and|strong="H2205"\w* \w he|strong="H5414"\w* \w hates|strong="H8130"\w* \w her|strong="H5414"\w*. +\v 17 \w Behold|strong="H2009"\w*, \w he|strong="H1931"\w* \w has|strong="H1697"\w* accused \w her|strong="H6566"\w* \w of|strong="H1323"\w* \w shameful|strong="H5949"\w* \w things|strong="H1697"\w*, \w saying|strong="H1697"\w*, ‘\w I|strong="H2009"\w* didn’t \w find|strong="H4672"\w* \w in|strong="H5892"\w* \w your|strong="H7760"\w* \w daughter|strong="H1323"\w* \w the|strong="H6440"\w* tokens \w of|strong="H1323"\w* \w virginity|strong="H1331"\w*;’ \w and|strong="H5892"\w* \w yet|strong="H3808"\w* \w these|strong="H1931"\w* \w are|strong="H1697"\w* \w the|strong="H6440"\w* tokens \w of|strong="H1323"\w* \w my|strong="H7760"\w* \w daughter|strong="H1323"\w*’s \w virginity|strong="H1331"\w*.” \w They|strong="H3808"\w* \w shall|strong="H5892"\w* \w spread|strong="H6566"\w* \w the|strong="H6440"\w* \w cloth|strong="H8071"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w elders|strong="H2205"\w* \w of|strong="H1323"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w*. +\v 18 \w The|strong="H3947"\w* \w elders|strong="H2205"\w* \w of|strong="H5892"\w* \w that|strong="H1931"\w* \w city|strong="H5892"\w* \w shall|strong="H5892"\w* \w take|strong="H3947"\w* \w the|strong="H3947"\w* \w man|strong="H2205"\w* \w and|strong="H5892"\w* \w chastise|strong="H3256"\w* \w him|strong="H3947"\w*. +\v 19 \w They|strong="H3588"\w* \w shall|strong="H3478"\w* \w fine|strong="H3701"\w* \w him|strong="H5414"\w* \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* \w shekels|strong="H3701"\w* \w of|strong="H3117"\w* \w silver|strong="H3701"\w*,\f + \fr 22:19 \ft A shekel is about 10 grams or about 0.35 ounces, so 100 shekels is about a kilogram or 2.2 pounds.\f* \w and|strong="H3967"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H3318"\w* \w the|strong="H3605"\w* father \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w young|strong="H5291"\w* \w lady|strong="H5291"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H1961"\w* \w given|strong="H5414"\w* \w a|strong="H3068"\w* \w bad|strong="H7451"\w* \w name|strong="H8034"\w* \w to|strong="H3318"\w* \w a|strong="H3068"\w* \w virgin|strong="H1330"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w*. \w She|strong="H3588"\w* \w shall|strong="H3478"\w* \w be|strong="H1961"\w* \w his|strong="H3605"\w* wife. \w He|strong="H3588"\w* \w may|strong="H1961"\w* \w not|strong="H3808"\w* \w put|strong="H5414"\w* \w her|strong="H3605"\w* \w away|strong="H7971"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w days|strong="H3117"\w*. +\p +\v 20 \w But|strong="H3808"\w* \w if|strong="H1961"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w is|strong="H2088"\w* true, \w that|strong="H1697"\w* \w the|strong="H1697"\w* tokens \w of|strong="H1697"\w* \w virginity|strong="H1331"\w* \w were|strong="H1961"\w* \w not|strong="H3808"\w* \w found|strong="H4672"\w* \w in|strong="H4672"\w* \w the|strong="H1697"\w* \w young|strong="H5291"\w* \w lady|strong="H5291"\w*, +\v 21 \w then|strong="H3318"\w* \w they|strong="H3588"\w* \w shall|strong="H3478"\w* \w bring|strong="H3318"\w* \w out|strong="H3318"\w* \w the|strong="H3588"\w* \w young|strong="H5291"\w* \w lady|strong="H5291"\w* \w to|strong="H3318"\w* \w the|strong="H3588"\w* \w door|strong="H6607"\w* \w of|strong="H1004"\w* \w her|strong="H7130"\w* father’s \w house|strong="H1004"\w*, \w and|strong="H3478"\w* \w the|strong="H3588"\w* \w men|strong="H7451"\w* \w of|strong="H1004"\w* \w her|strong="H7130"\w* \w city|strong="H5892"\w* \w shall|strong="H3478"\w* \w stone|strong="H5619"\w* \w her|strong="H7130"\w* \w to|strong="H3318"\w* \w death|strong="H4191"\w* \w with|strong="H1004"\w* \w stones|strong="H5619"\w*, \w because|strong="H3588"\w* \w she|strong="H3588"\w* \w has|strong="H3478"\w* \w done|strong="H6213"\w* \w folly|strong="H5039"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3318"\w* \w play|strong="H2181"\w* \w the|strong="H3588"\w* \w prostitute|strong="H2181"\w* \w in|strong="H3478"\w* \w her|strong="H7130"\w* father’s \w house|strong="H1004"\w*. \w So|strong="H6213"\w* \w you|strong="H3588"\w* \w shall|strong="H3478"\w* \w remove|strong="H1197"\w* \w the|strong="H3588"\w* \w evil|strong="H7451"\w* \w from|strong="H3318"\w* \w among|strong="H7130"\w* \w you|strong="H3588"\w*. +\p +\v 22 \w If|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H1167"\w* \w is|strong="H1571"\w* \w found|strong="H4672"\w* \w lying|strong="H7901"\w* \w with|strong="H5973"\w* \w a|strong="H3068"\w* woman \w married|strong="H1166"\w* \w to|strong="H3478"\w* \w a|strong="H3068"\w* \w husband|strong="H1167"\w*, \w then|strong="H1571"\w* \w they|strong="H3588"\w* \w shall|strong="H3478"\w* \w both|strong="H8147"\w* \w die|strong="H4191"\w*, \w the|strong="H3588"\w* \w man|strong="H1167"\w* \w who|strong="H3478"\w* \w lay|strong="H7901"\w* \w with|strong="H5973"\w* \w the|strong="H3588"\w* woman \w and|strong="H3478"\w* \w the|strong="H3588"\w* woman. \w So|strong="H1571"\w* \w you|strong="H3588"\w* \w shall|strong="H3478"\w* \w remove|strong="H1197"\w* \w the|strong="H3588"\w* \w evil|strong="H7451"\w* \w from|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\v 23 \w If|strong="H3588"\w* \w there|strong="H1961"\w* \w is|strong="H5892"\w* \w a|strong="H3068"\w* \w young|strong="H5291"\w* \w lady|strong="H5291"\w* \w who|strong="H4672"\w* \w is|strong="H5892"\w* \w a|strong="H3068"\w* \w virgin|strong="H1330"\w* pledged \w to|strong="H1961"\w* \w be|strong="H1961"\w* married \w to|strong="H1961"\w* \w a|strong="H3068"\w* husband, \w and|strong="H5892"\w* \w a|strong="H3068"\w* man \w finds|strong="H4672"\w* \w her|strong="H4672"\w* \w in|strong="H5892"\w* \w the|strong="H3588"\w* \w city|strong="H5892"\w*, \w and|strong="H5892"\w* \w lies|strong="H7901"\w* \w with|strong="H5973"\w* \w her|strong="H4672"\w*, +\v 24 \w then|strong="H3318"\w* \w you|strong="H5921"\w* \w shall|strong="H5892"\w* \w bring|strong="H3318"\w* \w them|strong="H5921"\w* \w both|strong="H8147"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H5921"\w* \w gate|strong="H8179"\w* \w of|strong="H1697"\w* \w that|strong="H1931"\w* \w city|strong="H5892"\w*, \w and|strong="H5892"\w* \w you|strong="H5921"\w* \w shall|strong="H5892"\w* \w stone|strong="H5619"\w* \w them|strong="H5921"\w* \w to|strong="H3318"\w* \w death|strong="H4191"\w* \w with|strong="H5921"\w* \w stones|strong="H5619"\w*; \w the|strong="H5921"\w* \w lady|strong="H5291"\w*, \w because|strong="H5921"\w* \w she|strong="H1931"\w* didn’t \w cry|strong="H6817"\w*, being \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*; \w and|strong="H5892"\w* \w the|strong="H5921"\w* \w man|strong="H4191"\w*, \w because|strong="H5921"\w* \w he|strong="H1931"\w* \w has|strong="H3318"\w* \w humbled|strong="H6031"\w* \w his|strong="H5921"\w* \w neighbor|strong="H7453"\w*’s wife. \w So|strong="H3808"\w* \w you|strong="H5921"\w* \w shall|strong="H5892"\w* \w remove|strong="H1197"\w* \w the|strong="H5921"\w* \w evil|strong="H7451"\w* \w from|strong="H3318"\w* \w among|strong="H7130"\w* \w you|strong="H5921"\w*. +\v 25 \w But|strong="H2388"\w* if \w the|strong="H2388"\w* \w man|strong="H4191"\w* \w finds|strong="H4672"\w* \w the|strong="H2388"\w* \w lady|strong="H5291"\w* \w who|strong="H4672"\w* \w is|strong="H7704"\w* pledged \w to|strong="H4191"\w* \w be|strong="H4191"\w* married \w in|strong="H4191"\w* \w the|strong="H2388"\w* \w field|strong="H7704"\w*, \w and|strong="H2388"\w* \w the|strong="H2388"\w* \w man|strong="H4191"\w* \w forces|strong="H2388"\w* \w her|strong="H4672"\w* \w and|strong="H2388"\w* \w lies|strong="H7901"\w* \w with|strong="H5973"\w* \w her|strong="H4672"\w*, \w then|strong="H4191"\w* only \w the|strong="H2388"\w* \w man|strong="H4191"\w* \w who|strong="H4672"\w* \w lay|strong="H7901"\w* \w with|strong="H5973"\w* \w her|strong="H4672"\w* \w shall|strong="H7704"\w* \w die|strong="H4191"\w*; +\v 26 \w but|strong="H3588"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w lady|strong="H5291"\w* \w you|strong="H3588"\w* \w shall|strong="H5315"\w* \w do|strong="H6213"\w* \w nothing|strong="H3808"\w*. \w There|strong="H2088"\w* \w is|strong="H2088"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w lady|strong="H5291"\w* \w no|strong="H3808"\w* \w sin|strong="H2399"\w* \w worthy|strong="H2399"\w* \w of|strong="H1697"\w* \w death|strong="H4194"\w*; \w for|strong="H3588"\w* \w as|strong="H1697"\w* \w when|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H5315"\w* \w rises|strong="H6965"\w* \w against|strong="H5921"\w* \w his|strong="H5921"\w* \w neighbor|strong="H7453"\w* \w and|strong="H6965"\w* \w kills|strong="H7523"\w* \w him|strong="H5921"\w*, \w even|strong="H3588"\w* \w so|strong="H3651"\w* \w is|strong="H2088"\w* \w this|strong="H2088"\w* \w matter|strong="H1697"\w*; +\v 27 \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w found|strong="H4672"\w* \w her|strong="H4672"\w* \w in|strong="H4672"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w*, \w the|strong="H3588"\w* pledged \w to|strong="H7704"\w* \w be|strong="H7704"\w* married \w lady|strong="H5291"\w* \w cried|strong="H6817"\w*, \w and|strong="H7704"\w* \w there|strong="H4672"\w* \w was|strong="H5291"\w* \w no|strong="H4672"\w* \w one|strong="H3588"\w* \w to|strong="H7704"\w* \w save|strong="H3467"\w* \w her|strong="H4672"\w*. +\v 28 \w If|strong="H3588"\w* \w a|strong="H3068"\w* man \w finds|strong="H4672"\w* \w a|strong="H3068"\w* \w lady|strong="H5291"\w* \w who|strong="H4672"\w* \w is|strong="H4672"\w* \w a|strong="H3068"\w* \w virgin|strong="H1330"\w*, \w who|strong="H4672"\w* \w is|strong="H4672"\w* \w not|strong="H3808"\w* pledged \w to|strong="H5973"\w* \w be|strong="H3808"\w* married, grabs \w her|strong="H4672"\w* \w and|strong="H7901"\w* \w lies|strong="H7901"\w* \w with|strong="H5973"\w* \w her|strong="H4672"\w*, \w and|strong="H7901"\w* \w they|strong="H3588"\w* \w are|strong="H1330"\w* \w found|strong="H4672"\w*, +\v 29 \w then|strong="H1961"\w* \w the|strong="H3605"\w* \w man|strong="H3605"\w* \w who|strong="H3605"\w* \w lay|strong="H7901"\w* \w with|strong="H5973"\w* \w her|strong="H3605"\w* \w shall|strong="H3117"\w* \w give|strong="H5414"\w* \w to|strong="H3201"\w* \w the|strong="H3605"\w* \w lady|strong="H5291"\w*’s father \w fifty|strong="H2572"\w* \w shekels|strong="H3701"\w*\f + \fr 22:29 \ft A shekel is about 10 grams or about 0.35 ounces.\f* \w of|strong="H3117"\w* \w silver|strong="H3701"\w*. \w She|strong="H5973"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w his|strong="H3605"\w* wife, \w because|strong="H8478"\w* \w he|strong="H3117"\w* \w has|strong="H1961"\w* \w humbled|strong="H6031"\w* \w her|strong="H3605"\w*. \w He|strong="H3117"\w* \w may|strong="H1961"\w* \w not|strong="H3808"\w* \w put|strong="H5414"\w* \w her|strong="H3605"\w* \w away|strong="H7971"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w days|strong="H3117"\w*. +\v 30 \w A|strong="H3068"\w* man shall not take his father’s wife, and shall not uncover his father’s skirt. +\c 23 +\p +\v 1 \w He|strong="H3808"\w* \w who|strong="H3808"\w* \w is|strong="H3671"\w* emasculated \w by|strong="H3808"\w* crushing \w or|strong="H3808"\w* cutting \w shall|strong="H3808"\w* \w not|strong="H3808"\w* enter \w into|strong="H1540"\w* \w Yahweh|strong="H3068"\w*’s assembly. +\v 2 \w A|strong="H3068"\w* person \w born|strong="H3808"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* forbidden union \w shall|strong="H3068"\w* \w not|strong="H3808"\w* enter \w into|strong="H6951"\w* \w Yahweh|strong="H3068"\w*’s \w assembly|strong="H6951"\w*; \w even|strong="H3808"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* tenth generation \w shall|strong="H3068"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* enter \w into|strong="H6951"\w* \w Yahweh|strong="H3068"\w*’s \w assembly|strong="H6951"\w*. +\v 3 \w An|strong="H3068"\w* Ammonite \w or|strong="H3808"\w* \w a|strong="H3068"\w* Moabite \w shall|strong="H3068"\w* \w not|strong="H3808"\w* enter \w into|strong="H6951"\w* \w Yahweh|strong="H3068"\w*’s \w assembly|strong="H6951"\w*; \w even|strong="H1571"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w tenth|strong="H6224"\w* \w generation|strong="H1755"\w* \w shall|strong="H3068"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* belonging \w to|strong="H3068"\w* \w them|strong="H3068"\w* enter \w into|strong="H6951"\w* \w Yahweh|strong="H3068"\w*’s \w assembly|strong="H6951"\w* \w forever|strong="H1755"\w*, +\v 4 \w because|strong="H3068"\w* \w they|strong="H1992"\w* didn’t meet \w you|strong="H5704"\w* \w with|strong="H3068"\w* bread \w and|strong="H3068"\w* \w with|strong="H3068"\w* water \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w way|strong="H5704"\w* \w when|strong="H5704"\w* \w you|strong="H5704"\w* \w came|strong="H3068"\w* \w out|strong="H5704"\w* \w of|strong="H3068"\w* Egypt, \w and|strong="H3068"\w* \w because|strong="H3068"\w* \w they|strong="H1992"\w* hired \w against|strong="H3068"\w* \w you|strong="H5704"\w* Balaam \w the|strong="H3068"\w* son \w of|strong="H3068"\w* Beor \w from|strong="H5704"\w* Pethor \w of|strong="H3068"\w* Mesopotamia, \w to|strong="H5704"\w* curse \w you|strong="H5704"\w*. +\v 5 Nevertheless \w Yahweh|strong="H3068"\w* \w your|strong="H5921"\w* \w God|strong="H3808"\w* wouldn’t listen \w to|strong="H3318"\w* \w Balaam|strong="H1109"\w*, \w but|strong="H3808"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H5921"\w* \w God|strong="H3808"\w* turned \w the|strong="H5921"\w* \w curse|strong="H7043"\w* \w into|strong="H5921"\w* \w a|strong="H3068"\w* blessing \w to|strong="H3318"\w* \w you|strong="H5921"\w*, \w because|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H5921"\w* \w God|strong="H3808"\w* loved \w you|strong="H5921"\w*. +\v 6 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w seek|strong="H3808"\w* \w their|strong="H3068"\w* \w peace|strong="H1293"\w* \w nor|strong="H3808"\w* \w their|strong="H3068"\w* prosperity \w all|strong="H3068"\w* \w your|strong="H3068"\w* days forever. +\v 7 \w You|strong="H3605"\w* \w shall|strong="H3117"\w* \w not|strong="H3808"\w* abhor an Edomite, \w for|strong="H3117"\w* \w he|strong="H3117"\w* \w is|strong="H3117"\w* \w your|strong="H3605"\w* brother. \w You|strong="H3605"\w* \w shall|strong="H3117"\w* \w not|strong="H3808"\w* abhor an Egyptian, \w because|strong="H3117"\w* \w you|strong="H3605"\w* lived \w as|strong="H3117"\w* \w a|strong="H3068"\w* foreigner \w in|strong="H3117"\w* \w his|strong="H3605"\w* land. +\v 8 \w The|strong="H3588"\w* children \w of|strong="H3808"\w* \w the|strong="H3588"\w* third generation \w who|strong="H1931"\w* \w are|strong="H1961"\w* \w born|strong="H3808"\w* \w to|strong="H1961"\w* \w them|strong="H1961"\w* \w may|strong="H1961"\w* enter \w into|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s assembly. +\p +\v 9 \w When|strong="H3068"\w* \w you|strong="H3205"\w* \w go|strong="H3068"\w* out \w and|strong="H1121"\w* camp \w against|strong="H3068"\w* \w your|strong="H3068"\w* enemies, \w then|strong="H3068"\w* \w you|strong="H3205"\w* \w shall|strong="H3068"\w* keep \w yourselves|strong="H3068"\w* \w from|strong="H1121"\w* \w every|strong="H1755"\w* evil thing. +\v 10 \w If|strong="H3588"\w* \w there|strong="H3605"\w* \w is|strong="H1697"\w* \w among|strong="H5921"\w* \w you|strong="H3588"\w* \w any|strong="H3605"\w* \w man|strong="H7451"\w* \w who|strong="H3605"\w* \w is|strong="H1697"\w* \w not|strong="H3588"\w* clean \w by|strong="H5921"\w* \w reason|strong="H1697"\w* \w of|strong="H1697"\w* \w that|strong="H3588"\w* \w which|strong="H1697"\w* happens \w to|strong="H3318"\w* \w him|strong="H5921"\w* \w by|strong="H5921"\w* night, \w then|strong="H3318"\w* \w shall|strong="H7451"\w* \w he|strong="H3588"\w* \w go|strong="H3318"\w* \w outside|strong="H3318"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w*. \w He|strong="H3588"\w* \w shall|strong="H7451"\w* \w not|strong="H3588"\w* \w come|strong="H3318"\w* \w within|strong="H5921"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w*; +\v 11 \w but|strong="H3588"\w* \w it|strong="H3588"\w* \w shall|strong="H3808"\w* \w be|strong="H1961"\w*, \w when|strong="H3588"\w* \w evening|strong="H3915"\w* \w comes|strong="H3318"\w*, \w he|strong="H3588"\w* \w shall|strong="H3808"\w* bathe \w himself|strong="H3808"\w* \w in|strong="H8432"\w* water. \w When|strong="H3588"\w* \w the|strong="H3588"\w* sun \w is|strong="H1961"\w* \w down|strong="H3588"\w*, \w he|strong="H3588"\w* \w shall|strong="H3808"\w* \w come|strong="H1961"\w* \w within|strong="H8432"\w* \w the|strong="H3588"\w* \w camp|strong="H4264"\w*. +\v 12 \w You|strong="H8432"\w* \w shall|strong="H4325"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* \w place|strong="H1961"\w* \w also|strong="H8121"\w* outside \w of|strong="H4325"\w* \w the|strong="H8432"\w* \w camp|strong="H4264"\w* where \w you|strong="H8432"\w* \w go|strong="H1961"\w* relieve yourself. +\v 13 \w You|strong="H3027"\w* \w shall|strong="H3027"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* trowel \w among|strong="H8033"\w* \w your|strong="H1961"\w* weapons. \w It|strong="H8033"\w* \w shall|strong="H3027"\w* \w be|strong="H1961"\w*, \w when|strong="H1961"\w* \w you|strong="H3027"\w* relieve \w yourself|strong="H8033"\w*, \w you|strong="H3027"\w* \w shall|strong="H3027"\w* dig \w with|strong="H3318"\w* \w it|strong="H8033"\w*, \w and|strong="H3027"\w* \w shall|strong="H3027"\w* \w turn|strong="H1961"\w* \w back|strong="H3318"\w* \w and|strong="H3027"\w* cover \w your|strong="H1961"\w* excrement; +\v 14 \w for|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H5921"\w* God walks \w in|strong="H3427"\w* \w the|strong="H5921"\w* middle \w of|strong="H3427"\w* \w your|strong="H5921"\w* camp, \w to|strong="H7725"\w* \w deliver|strong="H7725"\w* \w you|strong="H5921"\w*, \w and|strong="H7725"\w* \w to|strong="H7725"\w* \w give|strong="H7725"\w* \w up|strong="H5921"\w* \w your|strong="H5921"\w* enemies \w before|strong="H5921"\w* \w you|strong="H5921"\w*. \w Therefore|strong="H5921"\w* \w your|strong="H5921"\w* camp \w shall|strong="H3427"\w* \w be|strong="H1961"\w* holy, \w that|strong="H1961"\w* \w he|strong="H5921"\w* \w may|strong="H1961"\w* \w not|strong="H1961"\w* see \w an|strong="H1961"\w* unclean thing \w in|strong="H3427"\w* \w you|strong="H5921"\w*, \w and|strong="H7725"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w from|strong="H7725"\w* \w you|strong="H5921"\w*. +\p +\v 15 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w deliver|strong="H5337"\w* \w to|strong="H1980"\w* \w his|strong="H5414"\w* \w master|strong="H5414"\w* \w a|strong="H3068"\w* servant \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w escaped|strong="H5337"\w* \w from|strong="H7725"\w* \w his|strong="H5414"\w* \w master|strong="H5414"\w* \w to|strong="H1980"\w* \w you|strong="H3588"\w*. +\v 16 \w He|strong="H3808"\w* \w shall|strong="H5650"\w* dwell \w with|strong="H5973"\w* \w you|strong="H5973"\w*, \w among|strong="H5973"\w* \w you|strong="H5973"\w*, \w in|strong="H5650"\w* \w the|strong="H5973"\w* place which \w he|strong="H3808"\w* \w shall|strong="H5650"\w* choose \w within|strong="H5973"\w* \w one|strong="H3808"\w* \w of|strong="H5650"\w* \w your|strong="H3808"\w* gates, \w where|strong="H3808"\w* \w it|strong="H3808"\w* pleases \w him|strong="H5973"\w* best. \w You|strong="H5973"\w* \w shall|strong="H5650"\w* \w not|strong="H3808"\w* oppress \w him|strong="H5973"\w*. +\p +\v 17 \w There|strong="H3427"\w* \w shall|strong="H3808"\w* \w be|strong="H3808"\w* \w no|strong="H3808"\w* prostitute \w of|strong="H3427"\w* \w the|strong="H5973"\w* daughters \w of|strong="H3427"\w* Israel, \w neither|strong="H3808"\w* \w shall|strong="H3808"\w* \w there|strong="H3427"\w* \w be|strong="H3808"\w* \w a|strong="H3068"\w* sodomite \w of|strong="H3427"\w* \w the|strong="H5973"\w* sons \w of|strong="H3427"\w* Israel. +\v 18 \w You|strong="H3808"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w bring|strong="H1323"\w* \w the|strong="H1961"\w* hire \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w prostitute|strong="H6945"\w*, \w or|strong="H3808"\w* \w the|strong="H1961"\w* wages \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w male|strong="H6945"\w* \w prostitute|strong="H6945"\w*,\f + \fr 23:18 \ft literally, dog\f* \w into|strong="H1323"\w* \w the|strong="H1961"\w* house \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H1961"\w* \w God|strong="H3808"\w* \w for|strong="H1121"\w* \w any|strong="H1961"\w* vow; \w for|strong="H1121"\w* both \w of|strong="H1121"\w* these \w are|strong="H1121"\w* \w an|strong="H1961"\w* abomination \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H1961"\w* \w God|strong="H3808"\w*. +\p +\v 19 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* lend \w on|strong="H3068"\w* interest \w to|strong="H3068"\w* \w your|strong="H3068"\w* brother: interest \w of|strong="H1004"\w* money, interest \w of|strong="H1004"\w* \w food|strong="H1004"\w*, interest \w of|strong="H1004"\w* \w anything|strong="H3605"\w* \w that|strong="H3588"\w* \w is|strong="H3068"\w* lent \w on|strong="H3068"\w* interest. +\v 20 \w You|strong="H3605"\w* \w may|strong="H3808"\w* \w charge|strong="H5391"\w* \w a|strong="H3068"\w* foreigner \w interest|strong="H5392"\w*; \w but|strong="H3808"\w* \w you|strong="H3605"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w charge|strong="H5391"\w* \w your|strong="H3605"\w* brother \w interest|strong="H5392"\w*, \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3605"\w* \w God|strong="H3808"\w* \w may|strong="H3808"\w* bless \w you|strong="H3605"\w* \w in|strong="H1697"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* put \w your|strong="H3605"\w* hand \w to|strong="H1697"\w*, \w in|strong="H1697"\w* \w the|strong="H3605"\w* land \w where|strong="H3808"\w* \w you|strong="H3605"\w* go \w in|strong="H1697"\w* \w to|strong="H1697"\w* possess \w it|strong="H3808"\w*. +\p +\v 21 \w When|strong="H3068"\w* \w you|strong="H3605"\w* \w vow|strong="H3027"\w* \w a|strong="H3068"\w* \w vow|strong="H3027"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w you|strong="H3605"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* slack \w to|strong="H3068"\w* pay \w it|strong="H5921"\w*, \w for|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w surely|strong="H3808"\w* require \w it|strong="H5921"\w* \w of|strong="H3068"\w* \w you|strong="H3605"\w*; \w and|strong="H3068"\w* \w it|strong="H5921"\w* \w would|strong="H3068"\w* \w be|strong="H3808"\w* sin \w in|strong="H5921"\w* \w you|strong="H3605"\w*. +\v 22 \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w refrain|strong="H3808"\w* \w from|strong="H3068"\w* \w making|strong="H1875"\w* \w a|strong="H3068"\w* \w vow|strong="H5088"\w*, \w it|strong="H3588"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w no|strong="H3808"\w* \w sin|strong="H2399"\w* \w in|strong="H3068"\w* \w you|strong="H3588"\w*. +\v 23 \w You|strong="H3588"\w* \w shall|strong="H3808"\w* observe \w and|strong="H1961"\w* do \w that|strong="H3588"\w* \w which|strong="H3588"\w* \w has|strong="H1961"\w* \w gone|strong="H1961"\w* \w out|strong="H2308"\w* \w of|strong="H3808"\w* \w your|strong="H3588"\w* lips. Whatever \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w vowed|strong="H5087"\w* \w to|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3588"\w* \w God|strong="H3808"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* free \w will|strong="H1961"\w* offering, \w which|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w promised|strong="H5087"\w* \w with|strong="H1961"\w* \w your|strong="H3588"\w* mouth, \w you|strong="H3588"\w* \w must|strong="H3808"\w* do. +\v 24 \w When|strong="H1696"\w* \w you|strong="H6213"\w* come \w into|strong="H6213"\w* \w your|strong="H3068"\w* neighbor’s vineyard, \w then|strong="H1696"\w* \w you|strong="H6213"\w* \w may|strong="H3068"\w* \w eat|strong="H6310"\w* \w your|strong="H3068"\w* fill \w of|strong="H3068"\w* grapes \w at|strong="H3068"\w* \w your|strong="H3068"\w* own pleasure; \w but|strong="H1696"\w* \w you|strong="H6213"\w* \w shall|strong="H3068"\w* \w not|strong="H6213"\w* \w put|strong="H6213"\w* \w any|strong="H6213"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* container. +\v 25 \w When|strong="H3588"\w* \w you|strong="H3588"\w* come \w into|strong="H5414"\w* \w your|strong="H5414"\w* \w neighbor|strong="H7453"\w*’s \w standing|strong="H7453"\w* grain, \w then|strong="H5414"\w* \w you|strong="H3588"\w* \w may|strong="H5315"\w* pluck \w the|strong="H3588"\w* ears \w with|strong="H3627"\w* \w your|strong="H5414"\w* \w hand|strong="H5414"\w*; \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H5315"\w* \w not|strong="H3808"\w* use \w a|strong="H3068"\w* sickle \w on|strong="H3627"\w* \w your|strong="H5414"\w* \w neighbor|strong="H7453"\w*’s \w standing|strong="H7453"\w* grain. +\c 24 +\p +\v 1 \w When|strong="H3588"\w* \w a|strong="H3068"\w* man \w takes|strong="H3947"\w* \w a|strong="H3068"\w* \w wife|strong="H1166"\w* \w and|strong="H7971"\w* \w marries|strong="H1166"\w* \w her|strong="H5414"\w*, \w then|strong="H1961"\w* \w it|strong="H5414"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w*, \w if|strong="H3588"\w* \w she|strong="H3588"\w* \w finds|strong="H4672"\w* \w no|strong="H3808"\w* \w favor|strong="H2580"\w* \w in|strong="H1004"\w* \w his|strong="H5414"\w* \w eyes|strong="H5869"\w* \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H1961"\w* \w found|strong="H4672"\w* \w some|strong="H1697"\w* unseemly \w thing|strong="H1697"\w* \w in|strong="H1004"\w* \w her|strong="H5414"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w shall|strong="H1004"\w* \w write|strong="H3789"\w* \w her|strong="H5414"\w* \w a|strong="H3068"\w* \w certificate|strong="H5612"\w* \w of|strong="H1004"\w* \w divorce|strong="H7971"\w*, \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w in|strong="H1004"\w* \w her|strong="H5414"\w* \w hand|strong="H3027"\w*, \w and|strong="H7971"\w* \w send|strong="H7971"\w* \w her|strong="H5414"\w* \w out|strong="H7971"\w* \w of|strong="H1004"\w* \w his|strong="H5414"\w* \w house|strong="H1004"\w*. +\v 2 \w When|strong="H1961"\w* \w she|strong="H1980"\w* \w has|strong="H1961"\w* \w departed|strong="H1980"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w his|strong="H1961"\w* \w house|strong="H1004"\w*, \w she|strong="H1980"\w* \w may|strong="H1961"\w* \w go|strong="H1980"\w* \w and|strong="H1980"\w* \w be|strong="H1961"\w* another man’s wife. +\v 3 \w If|strong="H3588"\w* \w the|strong="H3588"\w* latter husband \w hates|strong="H8130"\w* \w her|strong="H5414"\w*, \w and|strong="H7971"\w* \w writes|strong="H3789"\w* \w her|strong="H5414"\w* \w a|strong="H3068"\w* \w certificate|strong="H5612"\w* \w of|strong="H1004"\w* \w divorce|strong="H7971"\w*, \w puts|strong="H5414"\w* \w it|strong="H5414"\w* \w in|strong="H1004"\w* \w her|strong="H5414"\w* \w hand|strong="H3027"\w*, \w and|strong="H7971"\w* \w sends|strong="H7971"\w* \w her|strong="H5414"\w* \w out|strong="H7971"\w* \w of|strong="H1004"\w* \w his|strong="H5414"\w* \w house|strong="H1004"\w*; \w or|strong="H1004"\w* \w if|strong="H3588"\w* \w the|strong="H3588"\w* latter husband \w dies|strong="H4191"\w*, \w who|strong="H3588"\w* \w took|strong="H3947"\w* \w her|strong="H5414"\w* \w to|strong="H4191"\w* \w be|strong="H4191"\w* \w his|strong="H5414"\w* wife; +\v 4 \w her|strong="H5414"\w* \w former|strong="H7223"\w* \w husband|strong="H1167"\w*, \w who|strong="H1931"\w* \w sent|strong="H7971"\w* \w her|strong="H5414"\w* \w away|strong="H7971"\w*, \w may|strong="H1961"\w* \w not|strong="H3808"\w* \w take|strong="H3947"\w* \w her|strong="H5414"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w be|strong="H1961"\w* \w his|strong="H5414"\w* wife \w after|strong="H1961"\w* \w she|strong="H1931"\w* \w is|strong="H3068"\w* \w defiled|strong="H2930"\w*; \w for|strong="H3588"\w* \w that|strong="H3588"\w* \w would|strong="H3068"\w* \w be|strong="H1961"\w* \w an|strong="H1961"\w* \w abomination|strong="H8441"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*. \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w cause|strong="H5414"\w* \w the|strong="H6440"\w* \w land|strong="H5159"\w* \w to|strong="H7725"\w* \w sin|strong="H2398"\w*, \w which|strong="H1931"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H3588"\w* \w for|strong="H3588"\w* \w an|strong="H1961"\w* \w inheritance|strong="H5159"\w*. +\v 5 \w When|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w takes|strong="H3947"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* wife, \w he|strong="H3588"\w* \w shall|strong="H1004"\w* \w not|strong="H3808"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w*, \w neither|strong="H3808"\w* \w shall|strong="H1004"\w* \w he|strong="H3588"\w* \w be|strong="H1961"\w* \w assigned|strong="H1961"\w* \w any|strong="H3605"\w* \w business|strong="H1697"\w*. \w He|strong="H3588"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w* \w free|strong="H5355"\w* \w at|strong="H5921"\w* \w home|strong="H1004"\w* \w one|strong="H3605"\w* \w year|strong="H8141"\w*, \w and|strong="H1004"\w* \w shall|strong="H1004"\w* cheer \w his|strong="H3605"\w* wife \w whom|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H1961"\w* \w taken|strong="H3947"\w*. +\p +\v 6 \w No|strong="H3808"\w* \w man|strong="H5315"\w* \w shall|strong="H5315"\w* \w take|strong="H2254"\w* \w the|strong="H3588"\w* \w mill|strong="H7347"\w* \w or|strong="H3808"\w* \w the|strong="H3588"\w* \w upper|strong="H7393"\w* \w millstone|strong="H7393"\w* \w as|strong="H5315"\w* \w a|strong="H3068"\w* \w pledge|strong="H2254"\w*, \w for|strong="H3588"\w* \w he|strong="H1931"\w* takes \w a|strong="H3068"\w* \w life|strong="H5315"\w* \w in|strong="H5315"\w* \w pledge|strong="H2254"\w*. +\p +\v 7 \w If|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w is|strong="H1931"\w* \w found|strong="H4672"\w* \w stealing|strong="H1589"\w* \w any|strong="H5315"\w* \w of|strong="H1121"\w* \w his|strong="H3478"\w* \w brothers|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w deals|strong="H6014"\w* \w with|strong="H1197"\w* \w him|strong="H4672"\w* \w as|strong="H5315"\w* \w a|strong="H3068"\w* \w slave|strong="H5315"\w*, \w or|strong="H1121"\w* \w sells|strong="H4376"\w* \w him|strong="H4672"\w*, \w then|strong="H3588"\w* \w that|strong="H3588"\w* \w thief|strong="H1590"\w* \w shall|strong="H1121"\w* \w die|strong="H4191"\w*. \w So|strong="H4191"\w* \w you|strong="H3588"\w* \w shall|strong="H1121"\w* \w remove|strong="H1197"\w* \w the|strong="H3588"\w* \w evil|strong="H7451"\w* \w from|strong="H3478"\w* \w among|strong="H7130"\w* \w you|strong="H3588"\w*. +\p +\v 8 \w Be|strong="H5061"\w* \w careful|strong="H8104"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w plague|strong="H5061"\w* \w of|strong="H3605"\w* \w leprosy|strong="H6883"\w*, \w that|strong="H3605"\w* \w you|strong="H6680"\w* \w observe|strong="H8104"\w* \w diligently|strong="H3966"\w* \w and|strong="H3548"\w* \w do|strong="H6213"\w* according \w to|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* \w Levitical|strong="H3881"\w* \w priests|strong="H3548"\w* \w teach|strong="H3384"\w* \w you|strong="H6680"\w*. \w As|strong="H6213"\w* \w I|strong="H6680"\w* \w commanded|strong="H6680"\w* \w them|strong="H6213"\w*, \w so|strong="H6213"\w* \w you|strong="H6680"\w* \w shall|strong="H3548"\w* \w observe|strong="H8104"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w*. +\v 9 \w Remember|strong="H2142"\w* \w what|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w did|strong="H6213"\w* \w to|strong="H3318"\w* \w Miriam|strong="H4813"\w*, \w by|strong="H3068"\w* \w the|strong="H6213"\w* \w way|strong="H1870"\w* \w as|strong="H6213"\w* \w you|strong="H6213"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*. +\p +\v 10 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w lend|strong="H5670"\w* \w your|strong="H3588"\w* \w neighbor|strong="H7453"\w* \w any|strong="H3972"\w* \w kind|strong="H7453"\w* \w of|strong="H1004"\w* \w loan|strong="H4859"\w*, \w you|strong="H3588"\w* \w shall|strong="H1004"\w* \w not|strong="H3808"\w* go into \w his|strong="H3588"\w* \w house|strong="H1004"\w* \w to|strong="H1004"\w* get \w his|strong="H3588"\w* \w pledge|strong="H5667"\w*. +\v 11 \w You|strong="H3318"\w* \w shall|strong="H5383"\w* \w stand|strong="H5975"\w* \w outside|strong="H2351"\w*, \w and|strong="H5975"\w* \w the|strong="H3318"\w* man \w to|strong="H3318"\w* whom \w you|strong="H3318"\w* \w lend|strong="H5383"\w* \w shall|strong="H5383"\w* \w bring|strong="H3318"\w* \w the|strong="H3318"\w* \w pledge|strong="H5667"\w* \w outside|strong="H2351"\w* \w to|strong="H3318"\w* \w you|strong="H3318"\w*. +\v 12 \w If|strong="H1931"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w poor|strong="H6041"\w* \w man|strong="H6041"\w*, \w you|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w sleep|strong="H7901"\w* \w with|strong="H7901"\w* \w his|strong="H3808"\w* \w pledge|strong="H5667"\w*. +\v 13 \w You|strong="H6440"\w* \w shall|strong="H3068"\w* \w surely|strong="H7725"\w* \w restore|strong="H7725"\w* \w to|strong="H7725"\w* \w him|strong="H6440"\w* \w the|strong="H6440"\w* \w pledge|strong="H5667"\w* \w when|strong="H1961"\w* \w the|strong="H6440"\w* \w sun|strong="H8121"\w* \w goes|strong="H6440"\w* \w down|strong="H7901"\w*, \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w may|strong="H1961"\w* \w sleep|strong="H7901"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w garment|strong="H8008"\w* \w and|strong="H3068"\w* \w bless|strong="H1288"\w* \w you|strong="H6440"\w*. \w It|strong="H7725"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w righteousness|strong="H6666"\w* \w to|strong="H7725"\w* \w you|strong="H6440"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\p +\v 14 \w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w oppress|strong="H6231"\w* \w a|strong="H3068"\w* \w hired|strong="H7916"\w* \w servant|strong="H7916"\w* \w who|strong="H1616"\w* \w is|strong="H8179"\w* \w poor|strong="H6041"\w* \w and|strong="H6041"\w* \w needy|strong="H6041"\w*, whether \w he|strong="H3808"\w* \w is|strong="H8179"\w* \w one|strong="H3808"\w* \w of|strong="H8179"\w* \w your|strong="H3808"\w* brothers \w or|strong="H3808"\w* \w one|strong="H3808"\w* \w of|strong="H8179"\w* \w the|strong="H3808"\w* \w foreigners|strong="H1616"\w* \w who|strong="H1616"\w* \w are|strong="H8179"\w* \w in|strong="H3808"\w* \w your|strong="H3808"\w* land within \w your|strong="H3808"\w* \w gates|strong="H8179"\w*. +\v 15 \w In|strong="H5921"\w* \w his|strong="H5375"\w* \w day|strong="H3117"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w give|strong="H5414"\w* \w him|strong="H5414"\w* \w his|strong="H5375"\w* \w wages|strong="H7939"\w*, \w neither|strong="H3808"\w* \w shall|strong="H3068"\w* \w the|strong="H5921"\w* \w sun|strong="H8121"\w* \w go|strong="H1961"\w* \w down|strong="H5414"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w*, \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H3068"\w* \w poor|strong="H6041"\w* \w and|strong="H3068"\w* \w sets|strong="H5375"\w* \w his|strong="H5375"\w* \w heart|strong="H5315"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w*, lest \w he|strong="H1931"\w* \w cry|strong="H7121"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w it|strong="H5414"\w* \w be|strong="H1961"\w* \w sin|strong="H2399"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w*. +\p +\v 16 \w The|strong="H5921"\w* fathers \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w*, \w neither|strong="H3808"\w* \w shall|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* fathers. \w Every|strong="H1121"\w* \w man|strong="H1121"\w* \w shall|strong="H1121"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w* \w for|strong="H5921"\w* \w his|strong="H5921"\w* own \w sin|strong="H2399"\w*. +\p +\v 17 \w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w deprive|strong="H5186"\w* \w the|strong="H5186"\w* \w foreigner|strong="H1616"\w* \w or|strong="H3808"\w* \w the|strong="H5186"\w* \w fatherless|strong="H3490"\w* \w of|strong="H4941"\w* \w justice|strong="H4941"\w*, \w nor|strong="H3808"\w* \w take|strong="H2254"\w* \w a|strong="H3068"\w* widow’s clothing \w in|strong="H3808"\w* \w pledge|strong="H2254"\w*; +\v 18 \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w remember|strong="H2142"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w were|strong="H1961"\w* \w a|strong="H3068"\w* \w slave|strong="H5650"\w* \w in|strong="H5921"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w redeemed|strong="H6299"\w* \w you|strong="H3588"\w* \w there|strong="H8033"\w*. \w Therefore|strong="H3651"\w* \w I|strong="H3588"\w* \w command|strong="H6680"\w* \w you|strong="H3588"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*. +\p +\v 19 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w reap|strong="H7114"\w* \w your|strong="H3068"\w* \w harvest|strong="H7105"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w field|strong="H7704"\w*, \w and|strong="H3068"\w* \w have|strong="H1961"\w* \w forgotten|strong="H7911"\w* \w a|strong="H3068"\w* \w sheaf|strong="H6016"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*, \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w go|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w get|strong="H3947"\w* \w it|strong="H3588"\w*. \w It|strong="H3588"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w foreigner|strong="H1616"\w*, \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w fatherless|strong="H3490"\w*, \w and|strong="H3068"\w* \w for|strong="H3588"\w* \w the|strong="H3605"\w* widow, \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w may|strong="H1961"\w* \w bless|strong="H1288"\w* \w you|strong="H3588"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w hands|strong="H3027"\w*. +\v 20 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w beat|strong="H2251"\w* \w your|strong="H3588"\w* \w olive|strong="H2132"\w* \w tree|strong="H2132"\w*, \w you|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w go|strong="H1961"\w* over \w the|strong="H3588"\w* \w boughs|strong="H6286"\w* \w again|strong="H1961"\w*. \w It|strong="H3588"\w* \w shall|strong="H3808"\w* \w be|strong="H1961"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w foreigner|strong="H1616"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w fatherless|strong="H3490"\w*, \w and|strong="H1961"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* widow. +\p +\v 21 \w When|strong="H3588"\w* \w you|strong="H3588"\w* harvest \w your|strong="H3588"\w* \w vineyard|strong="H3754"\w*, \w you|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w glean|strong="H5953"\w* \w it|strong="H3588"\w* \w after|strong="H1961"\w* yourselves. \w It|strong="H3588"\w* \w shall|strong="H3808"\w* \w be|strong="H1961"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w foreigner|strong="H1616"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w fatherless|strong="H3490"\w*, \w and|strong="H3754"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* widow. +\v 22 \w You|strong="H3588"\w* \w shall|strong="H4714"\w* \w remember|strong="H2142"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w were|strong="H1961"\w* \w a|strong="H3068"\w* \w slave|strong="H5650"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H1697"\w* \w Egypt|strong="H4714"\w*. \w Therefore|strong="H3651"\w* \w I|strong="H3588"\w* \w command|strong="H6680"\w* \w you|strong="H3588"\w* \w to|strong="H1961"\w* \w do|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*. +\c 25 +\p +\v 1 \w If|strong="H3588"\w* \w there|strong="H1961"\w* \w is|strong="H7563"\w* \w a|strong="H3068"\w* \w controversy|strong="H7379"\w* \w between|strong="H8199"\w* \w men|strong="H7563"\w*, \w and|strong="H4941"\w* \w they|strong="H3588"\w* \w come|strong="H1961"\w* \w to|strong="H1961"\w* \w judgment|strong="H4941"\w* \w and|strong="H4941"\w* \w the|strong="H3588"\w* \w judges|strong="H8199"\w* \w judge|strong="H8199"\w* \w them|strong="H1961"\w*, \w then|strong="H1961"\w* \w they|strong="H3588"\w* \w shall|strong="H7563"\w* \w justify|strong="H6663"\w* \w the|strong="H3588"\w* \w righteous|strong="H6662"\w* \w and|strong="H4941"\w* \w condemn|strong="H7561"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w*. +\v 2 \w It|strong="H6440"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w*, \w if|strong="H1961"\w* \w the|strong="H6440"\w* \w wicked|strong="H7563"\w* \w man|strong="H7563"\w* \w is|strong="H7563"\w* \w worthy|strong="H1121"\w* \w to|strong="H1961"\w* \w be|strong="H1961"\w* \w beaten|strong="H5221"\w*, \w that|strong="H1121"\w* \w the|strong="H6440"\w* \w judge|strong="H8199"\w* \w shall|strong="H1121"\w* \w cause|strong="H1961"\w* \w him|strong="H6440"\w* \w to|strong="H1961"\w* \w lie|strong="H1961"\w* \w down|strong="H5307"\w* \w and|strong="H1121"\w* \w to|strong="H1961"\w* \w be|strong="H1961"\w* \w beaten|strong="H5221"\w* \w before|strong="H6440"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w*, \w according|strong="H1767"\w* \w to|strong="H1961"\w* \w his|strong="H6440"\w* \w wickedness|strong="H7564"\w*, \w by|strong="H1961"\w* \w number|strong="H4557"\w*. +\v 3 \w He|strong="H3808"\w* \w may|strong="H3254"\w* sentence \w him|strong="H5921"\w* \w to|strong="H5921"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w* \w than|strong="H3808"\w* forty \w stripes|strong="H4347"\w*. \w He|strong="H3808"\w* \w shall|strong="H5869"\w* \w not|strong="H3808"\w* \w give|strong="H3254"\w* \w more|strong="H3254"\w*, \w lest|strong="H6435"\w* \w if|strong="H6435"\w* \w he|strong="H3808"\w* should \w give|strong="H3254"\w* \w more|strong="H3254"\w* \w and|strong="H5869"\w* \w beat|strong="H5221"\w* \w him|strong="H5921"\w* \w more|strong="H3254"\w* \w than|strong="H3808"\w* \w that|strong="H5869"\w* \w many|strong="H7227"\w* \w stripes|strong="H4347"\w*, \w then|strong="H3254"\w* \w your|strong="H5921"\w* brother \w will|strong="H5869"\w* \w be|strong="H3808"\w* \w degraded|strong="H7034"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w sight|strong="H5869"\w*. +\p +\v 4 \w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w muzzle|strong="H2629"\w* \w the|strong="H3808"\w* \w ox|strong="H7794"\w* when \w he|strong="H3808"\w* treads \w out|strong="H1758"\w* \w the|strong="H3808"\w* grain. +\p +\v 5 \w If|strong="H3588"\w* \w brothers|strong="H1121"\w* \w dwell|strong="H3427"\w* \w together|strong="H3162"\w*, \w and|strong="H1121"\w* \w one|strong="H3808"\w* \w of|strong="H1121"\w* \w them|strong="H1992"\w* \w dies|strong="H4191"\w* \w and|strong="H1121"\w* \w has|strong="H1961"\w* \w no|strong="H3808"\w* \w son|strong="H1121"\w*, \w the|strong="H5921"\w* wife \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w dead|strong="H4191"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w married|strong="H3947"\w* \w outside|strong="H2351"\w* \w to|strong="H4191"\w* \w a|strong="H3068"\w* \w stranger|strong="H2114"\w*. \w Her|strong="H3947"\w* husband’s \w brother|strong="H2993"\w* \w shall|strong="H1121"\w* \w go|strong="H1961"\w* \w in|strong="H3427"\w* \w to|strong="H4191"\w* \w her|strong="H3947"\w*, \w and|strong="H1121"\w* \w take|strong="H3947"\w* \w her|strong="H3947"\w* \w as|strong="H1961"\w* \w his|strong="H3947"\w* wife, \w and|strong="H1121"\w* \w perform|strong="H2992"\w* \w the|strong="H5921"\w* \w duty|strong="H2992"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* husband’s \w brother|strong="H2993"\w* \w to|strong="H4191"\w* \w her|strong="H3947"\w*. +\v 6 \w It|strong="H5921"\w* \w shall|strong="H3478"\w* \w be|strong="H1961"\w* \w that|strong="H3478"\w* \w the|strong="H5921"\w* \w firstborn|strong="H1060"\w* whom \w she|strong="H5921"\w* \w bears|strong="H3205"\w* \w shall|strong="H3478"\w* \w succeed|strong="H6965"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H3205"\w* \w his|strong="H5921"\w* brother \w who|strong="H3478"\w* \w is|strong="H8034"\w* \w dead|strong="H4191"\w*, \w that|strong="H3478"\w* \w his|strong="H5921"\w* \w name|strong="H8034"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w blotted|strong="H4229"\w* \w out|strong="H4229"\w* \w of|strong="H3205"\w* \w Israel|strong="H3478"\w*. +\p +\v 7 If \w the|strong="H3947"\w* \w man|strong="H2205"\w* doesn’t \w want|strong="H2654"\w* \w to|strong="H3478"\w* \w take|strong="H3947"\w* \w his|strong="H3947"\w* \w brother|strong="H2993"\w*’s \w wife|strong="H2994"\w*, \w then|strong="H6965"\w* \w his|strong="H3947"\w* \w brother|strong="H2993"\w*’s \w wife|strong="H2994"\w* \w shall|strong="H3478"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w the|strong="H3947"\w* \w gate|strong="H8179"\w* \w to|strong="H3478"\w* \w the|strong="H3947"\w* \w elders|strong="H2205"\w*, \w and|strong="H6965"\w* \w say|strong="H3478"\w*, “\w My|strong="H3947"\w* husband’s \w brother|strong="H2993"\w* \w refuses|strong="H3985"\w* \w to|strong="H3478"\w* \w raise|strong="H6965"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w his|strong="H3947"\w* \w brother|strong="H2993"\w* \w a|strong="H3068"\w* \w name|strong="H8034"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. \w He|strong="H3808"\w* \w will|strong="H3478"\w* \w not|strong="H3808"\w* \w perform|strong="H6965"\w* \w the|strong="H3947"\w* \w duty|strong="H2992"\w* \w of|strong="H2205"\w* \w a|strong="H3068"\w* husband’s \w brother|strong="H2993"\w* \w to|strong="H3478"\w* \w me|strong="H3947"\w*.” +\v 8 \w Then|strong="H1696"\w* \w the|strong="H3947"\w* \w elders|strong="H2205"\w* \w of|strong="H5892"\w* \w his|strong="H7121"\w* \w city|strong="H5892"\w* \w shall|strong="H5892"\w* \w call|strong="H7121"\w* \w him|strong="H7121"\w*, \w and|strong="H5892"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H7121"\w*. If \w he|strong="H3808"\w* \w stands|strong="H5975"\w* \w and|strong="H5892"\w* \w says|strong="H1696"\w*, “\w I|strong="H3808"\w* don’t \w want|strong="H2654"\w* \w to|strong="H1696"\w* \w take|strong="H3947"\w* \w her|strong="H3947"\w*,” +\v 9 \w then|strong="H6030"\w* \w his|strong="H6440"\w* brother’s \w wife|strong="H2994"\w* \w shall|strong="H1004"\w* \w come|strong="H5066"\w* \w to|strong="H5921"\w* \w him|strong="H6440"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w elders|strong="H2205"\w*, \w and|strong="H6030"\w* \w loose|strong="H2502"\w* \w his|strong="H6440"\w* \w sandal|strong="H5275"\w* \w from|strong="H6440"\w* \w off|strong="H5921"\w* \w his|strong="H6440"\w* \w foot|strong="H7272"\w*, \w and|strong="H6030"\w* \w spit|strong="H3417"\w* \w in|strong="H5921"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w*. \w She|strong="H5921"\w* \w shall|strong="H1004"\w* \w answer|strong="H6030"\w* \w and|strong="H6030"\w* say, “\w So|strong="H6213"\w* \w shall|strong="H1004"\w* \w it|strong="H5921"\w* \w be|strong="H3808"\w* \w done|strong="H6213"\w* \w to|strong="H5921"\w* \w the|strong="H6440"\w* \w man|strong="H2205"\w* \w who|strong="H6213"\w* \w does|strong="H6213"\w* \w not|strong="H3808"\w* \w build|strong="H1129"\w* \w up|strong="H1129"\w* \w his|strong="H6440"\w* brother’s \w house|strong="H1004"\w*.” +\v 10 \w His|strong="H7121"\w* \w name|strong="H8034"\w* \w shall|strong="H3478"\w* \w be|strong="H8034"\w* \w called|strong="H7121"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*, “\w The|strong="H7121"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w him|strong="H7121"\w* \w who|strong="H3478"\w* \w had|strong="H3478"\w* \w his|strong="H7121"\w* \w sandal|strong="H5275"\w* \w removed|strong="H2502"\w*.” +\p +\v 11 \w When|strong="H3588"\w* \w men|strong="H2388"\w* \w strive|strong="H5327"\w* \w against|strong="H3027"\w* \w each|strong="H3162"\w* \w other|strong="H3162"\w*, \w and|strong="H7971"\w* \w the|strong="H3588"\w* wife \w of|strong="H3027"\w* \w one|strong="H3588"\w* \w draws|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H7971"\w* \w deliver|strong="H5337"\w* \w her|strong="H7971"\w* husband \w out|strong="H7971"\w* \w of|strong="H3027"\w* \w the|strong="H3588"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w him|strong="H5221"\w* \w who|strong="H3588"\w* \w strikes|strong="H5221"\w* \w him|strong="H5221"\w*, \w and|strong="H7971"\w* \w puts|strong="H7971"\w* \w out|strong="H7971"\w* \w her|strong="H7971"\w* \w hand|strong="H3027"\w*, \w and|strong="H7971"\w* grabs \w him|strong="H5221"\w* \w by|strong="H3027"\w* \w his|strong="H7971"\w* private \w parts|strong="H3027"\w*, +\v 12 \w then|strong="H3808"\w* \w you|strong="H3808"\w* \w shall|strong="H5869"\w* \w cut|strong="H7112"\w* \w off|strong="H7112"\w* \w her|strong="H7112"\w* \w hand|strong="H3709"\w*. \w Your|strong="H3808"\w* \w eye|strong="H5869"\w* \w shall|strong="H5869"\w* \w have|strong="H5869"\w* \w no|strong="H3808"\w* \w pity|strong="H2347"\w*. +\p +\v 13 \w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w have|strong="H1961"\w* \w in|strong="H1419"\w* \w your|strong="H1961"\w* \w bag|strong="H3599"\w* diverse weights, \w one|strong="H3808"\w* \w heavy|strong="H1419"\w* \w and|strong="H1419"\w* \w one|strong="H3808"\w* light. +\v 14 \w You|strong="H3808"\w* \w shall|strong="H1004"\w* \w not|strong="H3808"\w* \w have|strong="H1961"\w* \w in|strong="H1004"\w* \w your|strong="H1961"\w* \w house|strong="H1004"\w* diverse measures, \w one|strong="H3808"\w* \w large|strong="H1419"\w* \w and|strong="H1419"\w* \w one|strong="H3808"\w* \w small|strong="H6996"\w*. +\v 15 \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* \w perfect|strong="H8003"\w* \w and|strong="H3068"\w* \w just|strong="H6664"\w* weight. \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* \w perfect|strong="H8003"\w* \w and|strong="H3068"\w* \w just|strong="H6664"\w* measure, \w that|strong="H3117"\w* \w your|strong="H3068"\w* \w days|strong="H3117"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w long|strong="H3117"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H5414"\w*. +\v 16 \w For|strong="H3588"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w do|strong="H6213"\w* \w such|strong="H6213"\w* \w things|strong="H3605"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w do|strong="H6213"\w* \w unrighteously|strong="H5766"\w*, \w are|strong="H3068"\w* \w an|strong="H6213"\w* \w abomination|strong="H8441"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\p +\v 17 \w Remember|strong="H2142"\w* \w what|strong="H6213"\w* \w Amalek|strong="H6002"\w* \w did|strong="H6213"\w* \w to|strong="H3318"\w* \w you|strong="H6213"\w* \w by|strong="H1870"\w* \w the|strong="H6213"\w* \w way|strong="H1870"\w* \w as|strong="H6213"\w* \w you|strong="H6213"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1870"\w* \w Egypt|strong="H4714"\w*, +\v 18 \w how|strong="H1870"\w* \w he|strong="H3605"\w* \w met|strong="H7136"\w* \w you|strong="H3605"\w* \w by|strong="H1870"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w*, \w and|strong="H1870"\w* struck \w the|strong="H3605"\w* rearmost \w of|strong="H1870"\w* \w you|strong="H3605"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1870"\w* \w feeble|strong="H3808"\w* behind \w you|strong="H3605"\w*, when \w you|strong="H3605"\w* \w were|strong="H1870"\w* \w faint|strong="H5889"\w* \w and|strong="H1870"\w* \w weary|strong="H5889"\w*; \w and|strong="H1870"\w* \w he|strong="H3605"\w* didn’t \w fear|strong="H3373"\w* \w God|strong="H3808"\w*. +\v 19 \w Therefore|strong="H3068"\w* \w it|strong="H5414"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w*, \w when|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w* \w rest|strong="H5117"\w* \w from|strong="H3423"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* enemies \w all|strong="H3605"\w* \w around|strong="H5439"\w*, \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w land|strong="H5159"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H5414"\w* \w for|strong="H8478"\w* \w an|strong="H1961"\w* \w inheritance|strong="H5159"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w* \w it|strong="H5414"\w*, \w that|strong="H3605"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w blot|strong="H4229"\w* \w out|strong="H3423"\w* \w the|strong="H3605"\w* \w memory|strong="H2143"\w* \w of|strong="H3068"\w* \w Amalek|strong="H6002"\w* \w from|strong="H3423"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*. \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w forget|strong="H7911"\w*. +\c 26 +\p +\v 1 \w It|strong="H5414"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w*, \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w come|strong="H1961"\w* \w in|strong="H3427"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w land|strong="H5159"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H3588"\w* \w for|strong="H3588"\w* \w an|strong="H1961"\w* \w inheritance|strong="H5159"\w*, \w possess|strong="H3423"\w* \w it|strong="H5414"\w*, \w and|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w it|strong="H5414"\w*, +\v 2 \w that|strong="H3605"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w take|strong="H3947"\w* \w some|strong="H8033"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w first|strong="H7225"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fruit|strong="H6529"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w ground|strong="H4725"\w*, \w which|strong="H3068"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w bring|strong="H3947"\w* \w in|strong="H1980"\w* \w from|strong="H1980"\w* \w your|strong="H3068"\w* \w land|strong="H4725"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H5414"\w*. \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w in|strong="H1980"\w* \w a|strong="H3068"\w* \w basket|strong="H2935"\w*, \w and|strong="H1980"\w* \w shall|strong="H3068"\w* \w go|strong="H1980"\w* \w to|strong="H1980"\w* \w the|strong="H3605"\w* \w place|strong="H4725"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w shall|strong="H3068"\w* \w choose|strong="H3947"\w* \w to|strong="H1980"\w* \w cause|strong="H5414"\w* \w his|strong="H3605"\w* \w name|strong="H8034"\w* \w to|strong="H1980"\w* \w dwell|strong="H7931"\w* \w there|strong="H8033"\w*. +\v 3 \w You|strong="H3588"\w* \w shall|strong="H3548"\w* \w come|strong="H1961"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w priest|strong="H3548"\w* \w who|strong="H3068"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w in|strong="H3068"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*, \w and|strong="H3068"\w* \w tell|strong="H5046"\w* \w him|strong="H5414"\w*, “\w I|strong="H3588"\w* \w profess|strong="H5046"\w* \w today|strong="H3117"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w come|strong="H1961"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* \w our|strong="H3068"\w* fathers \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w us|strong="H5414"\w*.” +\v 4 \w The|strong="H6440"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* \w the|strong="H6440"\w* \w basket|strong="H2935"\w* \w out|strong="H3947"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*, \w and|strong="H3068"\w* \w set|strong="H3240"\w* \w it|strong="H6440"\w* \w down|strong="H3240"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w altar|strong="H4196"\w*. +\v 5 \w You|strong="H6440"\w* \w shall|strong="H3068"\w* \w answer|strong="H6030"\w* \w and|strong="H3068"\w* say \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, “\w My|strong="H3068"\w* father\f + \fr 26:5 \ft or, forefather\f* \w was|strong="H3068"\w* \w a|strong="H3068"\w* Syrian ready \w to|strong="H3381"\w* perish. \w He|strong="H8033"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H3068"\w* \w lived|strong="H1481"\w* \w there|strong="H8033"\w*, \w few|strong="H4592"\w* \w in|strong="H3068"\w* \w number|strong="H4962"\w*. \w There|strong="H8033"\w* \w he|strong="H8033"\w* \w became|strong="H1961"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w*, \w mighty|strong="H6099"\w*, \w and|strong="H3068"\w* \w populous|strong="H7227"\w* \w nation|strong="H1471"\w*. +\v 6 \w The|strong="H5921"\w* \w Egyptians|strong="H4713"\w* mistreated \w us|strong="H5414"\w*, \w afflicted|strong="H6031"\w* \w us|strong="H5414"\w*, \w and|strong="H7186"\w* \w imposed|strong="H5414"\w* \w hard|strong="H7186"\w* \w labor|strong="H5656"\w* \w on|strong="H5921"\w* \w us|strong="H5414"\w*. +\v 7 \w Then|strong="H8085"\w* \w we|strong="H3068"\w* \w cried|strong="H6817"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H8085"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w our|strong="H3068"\w* fathers. \w Yahweh|strong="H3068"\w* \w heard|strong="H8085"\w* \w our|strong="H3068"\w* \w voice|strong="H6963"\w*, \w and|strong="H3068"\w* \w saw|strong="H7200"\w* \w our|strong="H3068"\w* \w affliction|strong="H6040"\w*, \w our|strong="H3068"\w* \w toil|strong="H5999"\w*, \w and|strong="H3068"\w* \w our|strong="H3068"\w* \w oppression|strong="H3906"\w*. +\v 8 \w Yahweh|strong="H3068"\w* \w brought|strong="H3318"\w* \w us|strong="H3027"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w mighty|strong="H2389"\w* \w hand|strong="H3027"\w*, \w with|strong="H3068"\w* \w an|strong="H3318"\w* \w outstretched|strong="H5186"\w* \w arm|strong="H2220"\w*, \w with|strong="H3068"\w* \w great|strong="H1419"\w* \w terror|strong="H4172"\w*, \w with|strong="H3068"\w* signs, \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w wonders|strong="H4159"\w*; +\v 9 \w and|strong="H2461"\w* \w he|strong="H5414"\w* \w has|strong="H2088"\w* \w brought|strong="H5414"\w* \w us|strong="H5414"\w* \w into|strong="H5414"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*, \w and|strong="H2461"\w* \w has|strong="H2088"\w* \w given|strong="H5414"\w* \w us|strong="H5414"\w* \w this|strong="H2088"\w* \w land|strong="H4725"\w*, \w a|strong="H3068"\w* \w land|strong="H4725"\w* \w flowing|strong="H2100"\w* \w with|strong="H2100"\w* \w milk|strong="H2461"\w* \w and|strong="H2461"\w* \w honey|strong="H1706"\w*. +\v 10 \w Now|strong="H6258"\w*, \w behold|strong="H2009"\w*, \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w brought|strong="H5414"\w* \w the|strong="H6440"\w* \w first|strong="H7225"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w fruit|strong="H6529"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w*, \w which|strong="H3068"\w* \w you|strong="H5414"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w given|strong="H5414"\w* \w me|strong="H5414"\w*.” \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w set|strong="H5414"\w* \w it|strong="H5414"\w* \w down|strong="H7812"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w worship|strong="H7812"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 11 \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w rejoice|strong="H8055"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w good|strong="H2896"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w to|strong="H3068"\w* \w you|strong="H5414"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w house|strong="H1004"\w*, \w you|strong="H5414"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w Levite|strong="H3881"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w foreigner|strong="H1616"\w* \w who|strong="H3605"\w* \w is|strong="H3068"\w* \w among|strong="H7130"\w* \w you|strong="H5414"\w*. +\p +\v 12 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H7646"\w* \w finished|strong="H3615"\w* \w tithing|strong="H4643"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tithe|strong="H4643"\w* \w of|strong="H8141"\w* \w your|strong="H3605"\w* \w increase|strong="H8393"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w third|strong="H7992"\w* \w year|strong="H8141"\w*, \w which|strong="H8179"\w* \w is|strong="H3605"\w* \w the|strong="H3605"\w* \w year|strong="H8141"\w* \w of|strong="H8141"\w* \w tithing|strong="H4643"\w*, \w then|strong="H5414"\w* \w you|strong="H3588"\w* \w shall|strong="H3881"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H3605"\w* \w Levite|strong="H3881"\w*, \w to|strong="H5414"\w* \w the|strong="H3605"\w* \w foreigner|strong="H1616"\w*, \w to|strong="H5414"\w* \w the|strong="H3605"\w* \w fatherless|strong="H3490"\w*, \w and|strong="H8141"\w* \w to|strong="H5414"\w* \w the|strong="H3605"\w* widow, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w may|strong="H5414"\w* eat within \w your|strong="H3605"\w* \w gates|strong="H8179"\w* \w and|strong="H8141"\w* \w be|strong="H5414"\w* \w filled|strong="H7646"\w*. +\v 13 \w You|strong="H5414"\w* \w shall|strong="H3068"\w* say \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, “\w I|strong="H5414"\w* \w have|strong="H3068"\w* \w put|strong="H5414"\w* \w away|strong="H5674"\w* \w the|strong="H3605"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w* \w out|strong="H4480"\w* \w of|strong="H1004"\w* \w my|strong="H5414"\w* \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w also|strong="H1571"\w* \w have|strong="H3068"\w* \w given|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w Levite|strong="H3881"\w*, \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w foreigner|strong="H1616"\w*, \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w fatherless|strong="H3490"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* widow, \w according|strong="H4480"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w commandment|strong="H4687"\w* \w which|strong="H3068"\w* \w you|strong="H5414"\w* \w have|strong="H3068"\w* \w commanded|strong="H6680"\w* \w me|strong="H5414"\w*. \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w transgressed|strong="H5674"\w* \w any|strong="H3605"\w* \w of|strong="H1004"\w* \w your|strong="H3068"\w* \w commandments|strong="H4687"\w*, \w neither|strong="H3808"\w* \w have|strong="H3068"\w* \w I|strong="H5414"\w* \w forgotten|strong="H7911"\w* \w them|strong="H5414"\w*. +\v 14 \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w eaten|strong="H1197"\w* \w of|strong="H3068"\w* \w it|strong="H5414"\w* \w in|strong="H3068"\w* \w my|strong="H8085"\w* mourning, \w neither|strong="H3808"\w* \w have|strong="H3068"\w* \w I|strong="H5414"\w* \w removed|strong="H1197"\w* \w any|strong="H3605"\w* \w of|strong="H3068"\w* \w it|strong="H5414"\w* \w while|strong="H8085"\w* \w I|strong="H5414"\w* \w was|strong="H3068"\w* \w unclean|strong="H2931"\w*, \w nor|strong="H3808"\w* \w given|strong="H5414"\w* \w of|strong="H3068"\w* \w it|strong="H5414"\w* \w for|strong="H6213"\w* \w the|strong="H3605"\w* \w dead|strong="H4191"\w*. \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w listened|strong="H8085"\w* \w to|strong="H4191"\w* \w Yahweh|strong="H3068"\w* \w my|strong="H8085"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w*. \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w according|strong="H4480"\w* \w to|strong="H4191"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H5414"\w* \w have|strong="H3068"\w* \w commanded|strong="H6680"\w* \w me|strong="H5414"\w*. +\v 15 \w Look|strong="H8259"\w* \w down|strong="H8259"\w* \w from|strong="H4480"\w* \w your|strong="H5414"\w* \w holy|strong="H6944"\w* \w habitation|strong="H4583"\w*, \w from|strong="H4480"\w* \w heaven|strong="H8064"\w*, \w and|strong="H3478"\w* \w bless|strong="H1288"\w* \w your|strong="H5414"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w the|strong="H5414"\w* ground \w which|strong="H5971"\w* \w you|strong="H5414"\w* \w have|strong="H5971"\w* \w given|strong="H5414"\w* \w us|strong="H5414"\w*, \w as|strong="H5971"\w* \w you|strong="H5414"\w* \w swore|strong="H7650"\w* \w to|strong="H3478"\w* \w our|strong="H5414"\w* fathers, \w a|strong="H3068"\w* \w land|strong="H8064"\w* \w flowing|strong="H2100"\w* \w with|strong="H2100"\w* \w milk|strong="H2461"\w* \w and|strong="H3478"\w* \w honey|strong="H1706"\w*.” +\p +\v 16 \w Today|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w commands|strong="H6680"\w* \w you|strong="H6680"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w these|strong="H2088"\w* \w statutes|strong="H2706"\w* \w and|strong="H3068"\w* \w ordinances|strong="H4941"\w*. \w You|strong="H6680"\w* \w shall|strong="H3068"\w* \w therefore|strong="H3068"\w* \w keep|strong="H8104"\w* \w and|strong="H3068"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w*. +\v 17 \w You|strong="H3117"\w* \w have|strong="H1961"\w* \w declared|strong="H8085"\w* \w today|strong="H3117"\w* \w that|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w that|strong="H3117"\w* \w you|strong="H3117"\w* \w would|strong="H3068"\w* \w walk|strong="H3212"\w* \w in|strong="H3068"\w* \w his|strong="H8104"\w* \w ways|strong="H1870"\w*, \w keep|strong="H8104"\w* \w his|strong="H8104"\w* \w statutes|strong="H2706"\w*, \w his|strong="H8104"\w* \w commandments|strong="H4687"\w*, \w and|strong="H3068"\w* \w his|strong="H8104"\w* \w ordinances|strong="H4941"\w*, \w and|strong="H3068"\w* \w listen|strong="H8085"\w* \w to|strong="H3212"\w* \w his|strong="H8104"\w* \w voice|strong="H6963"\w*. +\v 18 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w declared|strong="H1696"\w* \w today|strong="H3117"\w* \w that|strong="H5971"\w* \w you|strong="H3605"\w* \w are|strong="H3117"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w for|strong="H3068"\w* \w his|strong="H3605"\w* \w own|strong="H1961"\w* \w possession|strong="H5459"\w*, \w as|strong="H3117"\w* \w he|strong="H3117"\w* \w has|strong="H3068"\w* \w promised|strong="H1696"\w* \w you|strong="H3605"\w*, \w and|strong="H3068"\w* \w that|strong="H5971"\w* \w you|strong="H3605"\w* \w should|strong="H3068"\w* \w keep|strong="H8104"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w commandments|strong="H4687"\w*. +\v 19 \w He|strong="H6213"\w* \w will|strong="H3068"\w* \w make|strong="H6213"\w* \w you|strong="H5414"\w* \w high|strong="H5945"\w* \w above|strong="H5921"\w* \w all|strong="H3605"\w* \w nations|strong="H1471"\w* \w that|strong="H5971"\w* \w he|strong="H6213"\w* \w has|strong="H3068"\w* \w made|strong="H6213"\w*, \w in|strong="H5921"\w* \w praise|strong="H8416"\w*, \w in|strong="H5921"\w* \w name|strong="H8034"\w*, \w and|strong="H3068"\w* \w in|strong="H5921"\w* \w honor|strong="H8597"\w*, \w and|strong="H3068"\w* \w that|strong="H5971"\w* \w you|strong="H5414"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w holy|strong="H6918"\w* \w people|strong="H5971"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w as|strong="H1961"\w* \w he|strong="H6213"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w*. +\c 27 +\p +\v 1 \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w* \w commanded|strong="H6680"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, saying, “\w Keep|strong="H8104"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w commandment|strong="H4687"\w* \w which|strong="H5971"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w* \w today|strong="H3117"\w*. +\v 2 \w It|strong="H5414"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w on|strong="H3117"\w* \w the|strong="H5414"\w* \w day|strong="H3117"\w* \w when|strong="H1961"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H5414"\w* \w Jordan|strong="H3383"\w* \w to|strong="H3068"\w* \w the|strong="H5414"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H5414"\w*, \w that|strong="H3117"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w set|strong="H5414"\w* \w yourself|strong="H5414"\w* \w up|strong="H6965"\w* \w great|strong="H1419"\w* stones, \w and|strong="H6965"\w* \w coat|strong="H7874"\w* \w them|strong="H5414"\w* \w with|strong="H3068"\w* plaster. +\v 3 \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w write|strong="H3789"\w* \w on|strong="H5921"\w* \w them|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w this|strong="H2063"\w* \w law|strong="H8451"\w*, \w when|strong="H1696"\w* \w you|strong="H5414"\w* \w have|strong="H3068"\w* \w passed|strong="H5674"\w* \w over|strong="H5921"\w*, \w that|strong="H3605"\w* \w you|strong="H5414"\w* \w may|strong="H3068"\w* \w go|strong="H5674"\w* \w in|strong="H5921"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H5414"\w*, \w a|strong="H3068"\w* land \w flowing|strong="H2100"\w* \w with|strong="H2100"\w* \w milk|strong="H2461"\w* \w and|strong="H3068"\w* \w honey|strong="H1706"\w*, \w as|strong="H1697"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* fathers, \w has|strong="H3068"\w* \w promised|strong="H1696"\w* \w you|strong="H5414"\w*. +\v 4 \w It|strong="H1961"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w*, \w when|strong="H1961"\w* \w you|strong="H6680"\w* \w have|strong="H1961"\w* \w crossed|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H3117"\w* \w Jordan|strong="H3383"\w*, \w that|strong="H3117"\w* \w you|strong="H6680"\w* \w shall|strong="H3117"\w* \w set|strong="H6965"\w* \w up|strong="H6965"\w* \w these|strong="H6965"\w* stones, \w which|strong="H2022"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w* \w today|strong="H3117"\w*, \w on|strong="H3117"\w* \w Mount|strong="H2022"\w* \w Ebal|strong="H5858"\w*, \w and|strong="H6965"\w* \w you|strong="H6680"\w* \w shall|strong="H3117"\w* \w coat|strong="H7874"\w* \w them|strong="H6680"\w* \w with|strong="H3117"\w* plaster. +\v 5 \w There|strong="H8033"\w* \w you|strong="H5921"\w* \w shall|strong="H3068"\w* \w build|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w of|strong="H3068"\w* stones. \w You|strong="H5921"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w use|strong="H5130"\w* \w any|strong="H3808"\w* \w iron|strong="H1270"\w* \w tool|strong="H5130"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 6 \w You|strong="H5921"\w* \w shall|strong="H3068"\w* \w build|strong="H1129"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w altar|strong="H4196"\w* \w of|strong="H3068"\w* \w uncut|strong="H8003"\w* stones. \w You|strong="H5921"\w* \w shall|strong="H3068"\w* \w offer|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 7 \w You|strong="H6440"\w* \w shall|strong="H3068"\w* \w sacrifice|strong="H2076"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w and|strong="H3068"\w* \w shall|strong="H3068"\w* eat \w there|strong="H8033"\w*. \w You|strong="H6440"\w* \w shall|strong="H3068"\w* \w rejoice|strong="H8055"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 8 \w You|strong="H3605"\w* \w shall|strong="H8451"\w* \w write|strong="H3789"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* stones \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w this|strong="H2063"\w* \w law|strong="H8451"\w* \w very|strong="H3190"\w* plainly.” +\p +\v 9 \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* \w the|strong="H3605"\w* \w Levitical|strong="H3881"\w* \w priests|strong="H3548"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w saying|strong="H1696"\w*, “\w Be|strong="H1961"\w* \w silent|strong="H5535"\w* \w and|strong="H4872"\w* \w listen|strong="H8085"\w*, \w Israel|strong="H3478"\w*! \w Today|strong="H3117"\w* \w you|strong="H3605"\w* \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 10 \w You|strong="H6680"\w* \w shall|strong="H3068"\w* \w therefore|strong="H3068"\w* \w obey|strong="H8085"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w*, \w and|strong="H3068"\w* \w do|strong="H6213"\w* \w his|strong="H3068"\w* \w commandments|strong="H4687"\w* \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w statutes|strong="H2706"\w*, \w which|strong="H3068"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w* \w today|strong="H3117"\w*.” +\p +\v 11 \w Moses|strong="H4872"\w* \w commanded|strong="H6680"\w* \w the|strong="H3117"\w* \w people|strong="H5971"\w* \w the|strong="H3117"\w* \w same|strong="H1931"\w* \w day|strong="H3117"\w*, saying, +\v 12 “\w These|strong="H5971"\w* \w shall|strong="H5971"\w* \w stand|strong="H5975"\w* \w on|strong="H5921"\w* \w Mount|strong="H2022"\w* \w Gerizim|strong="H1630"\w* \w to|strong="H5921"\w* \w bless|strong="H1288"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w*, \w when|strong="H5674"\w* \w you|strong="H5921"\w* \w have|strong="H5971"\w* \w crossed|strong="H5674"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w*: \w Simeon|strong="H8095"\w*, \w Levi|strong="H3878"\w*, \w Judah|strong="H3063"\w*, \w Issachar|strong="H3485"\w*, \w Joseph|strong="H3130"\w*, \w and|strong="H3063"\w* \w Benjamin|strong="H1144"\w*. +\v 13 These \w shall|strong="H2022"\w* \w stand|strong="H5975"\w* \w on|strong="H5921"\w* \w Mount|strong="H2022"\w* \w Ebal|strong="H5858"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w curse|strong="H7045"\w*: \w Reuben|strong="H7205"\w*, \w Gad|strong="H1410"\w*, Asher, \w Zebulun|strong="H2074"\w*, \w Dan|strong="H1835"\w*, \w and|strong="H2022"\w* \w Naphtali|strong="H5321"\w*. +\v 14 \w With|strong="H3478"\w* \w a|strong="H3068"\w* \w loud|strong="H7311"\w* \w voice|strong="H6963"\w*, \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w shall|strong="H3478"\w* \w say|strong="H6963"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H6963"\w* \w Israel|strong="H3478"\w*, +\v 15 ‘Cursed \w is|strong="H3068"\w* \w the|strong="H3605"\w* \w man|strong="H3605"\w* \w who|strong="H3605"\w* \w makes|strong="H6213"\w* \w an|strong="H6213"\w* engraved \w or|strong="H3068"\w* \w molten|strong="H4541"\w* \w image|strong="H6459"\w*, \w an|strong="H6213"\w* \w abomination|strong="H8441"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w hands|strong="H3027"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w craftsman|strong="H2796"\w*, \w and|strong="H3068"\w* \w sets|strong="H7760"\w* \w it|strong="H7760"\w* \w up|strong="H7760"\w* \w in|strong="H3068"\w* \w secret|strong="H5643"\w*.’ +\p \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w shall|strong="H3068"\w* \w answer|strong="H6030"\w* \w and|strong="H3068"\w* say, ‘Amen.’ +\p +\v 16 ‘Cursed \w is|strong="H3605"\w* \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w dishonors|strong="H7034"\w* \w his|strong="H3605"\w* father \w or|strong="H5971"\w* \w his|strong="H3605"\w* mother.’ +\p \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w shall|strong="H5971"\w* say, ‘Amen.’ +\p +\v 17 ‘Cursed \w is|strong="H3605"\w* \w he|strong="H3605"\w* \w who|strong="H3605"\w* removes \w his|strong="H3605"\w* \w neighbor|strong="H7453"\w*’s \w landmark|strong="H1366"\w*.’ +\p \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w shall|strong="H5971"\w* say, ‘Amen.’ +\p +\v 18 ‘Cursed \w is|strong="H1870"\w* \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w leads|strong="H7686"\w* \w the|strong="H3605"\w* \w blind|strong="H5787"\w* \w astray|strong="H7686"\w* \w on|strong="H1870"\w* \w the|strong="H3605"\w* \w road|strong="H1870"\w*.’ +\p \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w shall|strong="H5971"\w* say, ‘Amen.’ +\p +\v 19 ‘Cursed \w is|strong="H3605"\w* \w he|strong="H3605"\w* \w who|strong="H3605"\w* withholds \w justice|strong="H4941"\w* \w from|strong="H5971"\w* \w the|strong="H3605"\w* \w foreigner|strong="H1616"\w*, \w fatherless|strong="H3490"\w*, \w and|strong="H4941"\w* widow.’ +\p \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w shall|strong="H5971"\w* say, ‘Amen.’ +\p +\v 20 ‘Cursed \w is|strong="H3605"\w* \w he|strong="H3588"\w* \w who|strong="H3605"\w* \w lies|strong="H7901"\w* \w with|strong="H5973"\w*\f + \fr 27:20 \ft i.e., has sexual relations with\f* \w his|strong="H3605"\w* father’s wife, \w because|strong="H3588"\w* \w he|strong="H3588"\w* dishonors \w his|strong="H3605"\w* father’s \w bed|strong="H7901"\w*.’ +\p \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w shall|strong="H5971"\w* say, ‘Amen.’ +\p +\v 21 ‘Cursed \w is|strong="H3605"\w* \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w lies|strong="H7901"\w* \w with|strong="H5973"\w* \w any|strong="H3605"\w* kind \w of|strong="H5971"\w* animal.’ +\p \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w shall|strong="H5971"\w* say, ‘Amen.’ +\p +\v 22 ‘Cursed \w is|strong="H3605"\w* \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w lies|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H3605"\w* sister, \w his|strong="H3605"\w* father’s \w daughter|strong="H1323"\w* \w or|strong="H5971"\w* \w his|strong="H3605"\w* mother’s \w daughter|strong="H1323"\w*.’ +\p \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w shall|strong="H5971"\w* say, ‘Amen.’ +\p +\v 23 ‘Cursed \w is|strong="H3605"\w* \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w lies|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H3605"\w* mother-in-law.’ +\p \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w shall|strong="H5971"\w* say, ‘Amen.’ +\p +\v 24 ‘Cursed \w is|strong="H3605"\w* \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w secretly|strong="H5643"\w* \w kills|strong="H5221"\w* \w his|strong="H3605"\w* \w neighbor|strong="H7453"\w*.’ +\p \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w shall|strong="H5971"\w* say, ‘Amen.’ +\p +\v 25 ‘Cursed \w is|strong="H5315"\w* \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w takes|strong="H3947"\w* \w a|strong="H3068"\w* \w bribe|strong="H7810"\w* \w to|strong="H5971"\w* \w kill|strong="H5221"\w* \w an|strong="H3947"\w* \w innocent|strong="H5355"\w* \w person|strong="H5315"\w*.’ +\p \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w shall|strong="H5971"\w* say, ‘Amen.’ +\p +\v 26 ‘Cursed \w is|strong="H1697"\w* \w he|strong="H6213"\w* \w who|strong="H3605"\w* doesn’t uphold \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w this|strong="H2063"\w* \w law|strong="H8451"\w* \w by|strong="H6965"\w* \w doing|strong="H6213"\w* \w them|strong="H6213"\w*.’ +\p \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w shall|strong="H5971"\w* \w say|strong="H1697"\w*, ‘Amen.’” +\c 28 +\p +\v 1 \w It|strong="H5414"\w* \w shall|strong="H3068"\w* \w happen|strong="H1961"\w*, \w if|strong="H1961"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w listen|strong="H8085"\w* \w diligently|strong="H8085"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w*, \w to|strong="H3068"\w* \w observe|strong="H8104"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w commandments|strong="H4687"\w* \w which|strong="H3068"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H5414"\w* \w today|strong="H3117"\w*, \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w set|strong="H5414"\w* \w you|strong="H5414"\w* \w high|strong="H5945"\w* \w above|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* earth. +\v 2 \w All|strong="H3605"\w* \w these|strong="H8085"\w* \w blessings|strong="H1293"\w* \w will|strong="H3068"\w* come \w upon|strong="H5921"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w overtake|strong="H5381"\w* \w you|strong="H3588"\w*, \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w*. +\v 3 \w You|strong="H1288"\w* \w shall|strong="H5892"\w* \w be|strong="H1288"\w* \w blessed|strong="H1288"\w* \w in|strong="H5892"\w* \w the|strong="H1288"\w* \w city|strong="H5892"\w*, \w and|strong="H5892"\w* \w you|strong="H1288"\w* \w shall|strong="H5892"\w* \w be|strong="H1288"\w* \w blessed|strong="H1288"\w* \w in|strong="H5892"\w* \w the|strong="H1288"\w* \w field|strong="H7704"\w*. +\v 4 \w You|strong="H1288"\w* shall \w be|strong="H1288"\w* \w blessed|strong="H1288"\w* \w in|strong="H6629"\w* \w the|strong="H1288"\w* \w fruit|strong="H6529"\w* \w of|strong="H6629"\w* \w your|strong="H1288"\w* body, \w the|strong="H1288"\w* \w fruit|strong="H6529"\w* \w of|strong="H6629"\w* \w your|strong="H1288"\w* ground, \w the|strong="H1288"\w* \w fruit|strong="H6529"\w* \w of|strong="H6629"\w* \w your|strong="H1288"\w* animals, \w the|strong="H1288"\w* \w increase|strong="H7698"\w* \w of|strong="H6629"\w* \w your|strong="H1288"\w* livestock, \w and|strong="H6629"\w* \w the|strong="H1288"\w* \w young|strong="H6251"\w* \w of|strong="H6629"\w* \w your|strong="H1288"\w* \w flock|strong="H6629"\w*. +\v 5 \w Your|strong="H1288"\w* \w basket|strong="H2935"\w* \w and|strong="H2935"\w* \w your|strong="H1288"\w* \w kneading|strong="H4863"\w* trough shall \w be|strong="H1288"\w* \w blessed|strong="H1288"\w*. +\v 6 \w You|strong="H1288"\w* shall \w be|strong="H1288"\w* \w blessed|strong="H1288"\w* \w when|strong="H3318"\w* \w you|strong="H1288"\w* \w come|strong="H3318"\w* \w in|strong="H3318"\w*, \w and|strong="H3318"\w* \w you|strong="H1288"\w* shall \w be|strong="H1288"\w* \w blessed|strong="H1288"\w* \w when|strong="H3318"\w* \w you|strong="H1288"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*. +\v 7 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w cause|strong="H5414"\w* \w your|strong="H3068"\w* \w enemies|strong="H6965"\w* \w who|strong="H3068"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H5921"\w* \w you|strong="H5414"\w* \w to|strong="H3318"\w* \w be|strong="H3068"\w* \w struck|strong="H5062"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w*. \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w against|strong="H5921"\w* \w you|strong="H5414"\w* \w one|strong="H7651"\w* \w way|strong="H1870"\w*, \w and|strong="H6965"\w* \w will|strong="H3068"\w* \w flee|strong="H5127"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w* \w seven|strong="H7651"\w* \w ways|strong="H1870"\w*. +\v 8 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w command|strong="H6680"\w* \w the|strong="H3605"\w* \w blessing|strong="H1293"\w* \w on|strong="H3027"\w* \w you|strong="H5414"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* barns, \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H5414"\w* \w put|strong="H5414"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w to|strong="H3068"\w*. \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w bless|strong="H1288"\w* \w you|strong="H5414"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H5414"\w*. +\v 9 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w establish|strong="H6965"\w* \w you|strong="H3588"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w holy|strong="H6918"\w* \w people|strong="H5971"\w* \w to|strong="H1980"\w* \w himself|strong="H3068"\w*, \w as|strong="H3068"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w sworn|strong="H7650"\w* \w to|strong="H1980"\w* \w you|strong="H3588"\w*, \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w keep|strong="H8104"\w* \w the|strong="H3588"\w* \w commandments|strong="H4687"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H1980"\w* \w walk|strong="H1980"\w* \w in|strong="H1980"\w* \w his|strong="H8104"\w* \w ways|strong="H1870"\w*. +\v 10 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* earth \w shall|strong="H3068"\w* \w see|strong="H7200"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H5971"\w* \w called|strong="H7121"\w* \w by|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*, \w and|strong="H3068"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w afraid|strong="H3372"\w* \w of|strong="H3068"\w* \w you|strong="H3588"\w*. +\v 11 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w grant|strong="H5414"\w* \w you|strong="H5414"\w* abundant \w prosperity|strong="H2896"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w fruit|strong="H6529"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* body, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w fruit|strong="H6529"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* livestock, \w and|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w fruit|strong="H6529"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* ground, \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* fathers \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w*. +\v 12 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w open|strong="H6605"\w* \w to|strong="H3068"\w* \w you|strong="H5414"\w* \w his|strong="H3605"\w* \w good|strong="H2896"\w* treasure \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w the|strong="H3605"\w* \w rain|strong="H4306"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w land|strong="H8064"\w* \w in|strong="H3068"\w* \w its|strong="H3605"\w* \w season|strong="H6256"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w bless|strong="H1288"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*. \w You|strong="H5414"\w* \w will|strong="H3068"\w* \w lend|strong="H3867"\w* \w to|strong="H3068"\w* \w many|strong="H7227"\w* \w nations|strong="H1471"\w*, \w and|strong="H3068"\w* \w you|strong="H5414"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w borrow|strong="H3867"\w*. +\v 13 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w make|strong="H6213"\w* \w you|strong="H3588"\w* \w the|strong="H8085"\w* \w head|strong="H7218"\w*, \w and|strong="H3068"\w* \w not|strong="H3808"\w* \w the|strong="H8085"\w* \w tail|strong="H2180"\w*. \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w above|strong="H4605"\w* \w only|strong="H7535"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w beneath|strong="H4295"\w*, \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w the|strong="H8085"\w* \w commandments|strong="H4687"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w which|strong="H3068"\w* \w I|strong="H3588"\w* \w command|strong="H6680"\w* \w you|strong="H3588"\w* \w today|strong="H3117"\w*, \w to|strong="H3068"\w* \w observe|strong="H8104"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w*, +\v 14 \w and|strong="H3117"\w* \w shall|strong="H3117"\w* \w not|strong="H3808"\w* \w turn|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* \w any|strong="H3605"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w which|strong="H1697"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w* \w today|strong="H3117"\w*, \w to|strong="H3212"\w* \w the|strong="H3605"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w or|strong="H3808"\w* \w to|strong="H3212"\w* \w the|strong="H3605"\w* \w left|strong="H8040"\w*, \w to|strong="H3212"\w* \w go|strong="H3212"\w* \w after|strong="H3117"\w* \w other|strong="H3605"\w* gods \w to|strong="H3212"\w* \w serve|strong="H5647"\w* \w them|strong="H6680"\w*. +\p +\v 15 \w But|strong="H3808"\w* \w it|strong="H5921"\w* \w shall|strong="H3068"\w* \w come|strong="H1961"\w* \w to|strong="H3068"\w* \w pass|strong="H1961"\w*, \w if|strong="H1961"\w* \w you|strong="H6680"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w*, \w to|strong="H3068"\w* \w observe|strong="H8104"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w commandments|strong="H4687"\w* \w and|strong="H3068"\w* \w his|strong="H3605"\w* \w statutes|strong="H2708"\w* \w which|strong="H3068"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w* \w today|strong="H3117"\w*, \w that|strong="H3605"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* \w curses|strong="H7045"\w* \w will|strong="H3068"\w* \w come|strong="H1961"\w* \w on|strong="H5921"\w* \w you|strong="H6680"\w* \w and|strong="H3068"\w* \w overtake|strong="H5381"\w* \w you|strong="H6680"\w*. +\v 16 You \w will|strong="H5892"\w* \w be|strong="H5892"\w* cursed \w in|strong="H5892"\w* \w the|strong="H5892"\w* \w city|strong="H5892"\w*, \w and|strong="H5892"\w* you \w will|strong="H5892"\w* \w be|strong="H5892"\w* cursed \w in|strong="H5892"\w* \w the|strong="H5892"\w* \w field|strong="H7704"\w*. +\v 17 Your \w basket|strong="H2935"\w* \w and|strong="H2935"\w* your \w kneading|strong="H4863"\w* trough will be cursed. +\v 18 The \w fruit|strong="H6529"\w* \w of|strong="H6629"\w* \w your|strong="H6629"\w* body, the \w fruit|strong="H6529"\w* \w of|strong="H6629"\w* \w your|strong="H6629"\w* ground, the \w increase|strong="H7698"\w* \w of|strong="H6629"\w* \w your|strong="H6629"\w* livestock, \w and|strong="H6629"\w* the \w young|strong="H6251"\w* \w of|strong="H6629"\w* \w your|strong="H6629"\w* \w flock|strong="H6629"\w* \w will|strong="H6629"\w* be cursed. +\v 19 \w You|strong="H3318"\w* will \w be|strong="H3318"\w* cursed \w when|strong="H3318"\w* \w you|strong="H3318"\w* \w come|strong="H3318"\w* \w in|strong="H3318"\w*, \w and|strong="H3318"\w* \w you|strong="H3318"\w* will \w be|strong="H3318"\w* cursed \w when|strong="H3318"\w* \w you|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*. +\v 20 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w on|strong="H3027"\w* \w you|strong="H6440"\w* \w cursing|strong="H3994"\w*, \w confusion|strong="H4103"\w*, \w and|strong="H3068"\w* \w rebuke|strong="H4045"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H6440"\w* \w put|strong="H7971"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w to|strong="H5704"\w* \w do|strong="H6213"\w*, \w until|strong="H5704"\w* \w you|strong="H6440"\w* \w are|strong="H3027"\w* \w destroyed|strong="H8045"\w* \w and|strong="H3068"\w* \w until|strong="H5704"\w* \w you|strong="H6440"\w* perish \w quickly|strong="H4118"\w*, \w because|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w evil|strong="H7455"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w doings|strong="H4611"\w*, \w by|strong="H3027"\w* \w which|strong="H3068"\w* \w you|strong="H6440"\w* \w have|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w me|strong="H6440"\w*. +\v 21 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w make|strong="H3615"\w* \w the|strong="H5921"\w* \w pestilence|strong="H1698"\w* \w cling|strong="H1692"\w* \w to|strong="H5704"\w* \w you|strong="H5921"\w*, \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w has|strong="H3068"\w* \w consumed|strong="H3615"\w* \w you|strong="H5921"\w* \w from|strong="H5921"\w* \w off|strong="H5921"\w* \w the|strong="H5921"\w* land \w where|strong="H8033"\w* \w you|strong="H5921"\w* \w go|strong="H3068"\w* \w in|strong="H5921"\w* \w to|strong="H5704"\w* \w possess|strong="H3423"\w* \w it|strong="H5921"\w*. +\v 22 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w strike|strong="H5221"\w* \w you|strong="H5704"\w* \w with|strong="H3068"\w* \w consumption|strong="H7829"\w*, \w with|strong="H3068"\w* \w fever|strong="H6920"\w*, \w with|strong="H3068"\w* \w inflammation|strong="H1816"\w*, \w with|strong="H3068"\w* \w fiery|strong="H2746"\w* \w heat|strong="H2746"\w*, \w with|strong="H3068"\w* \w the|strong="H5221"\w* \w sword|strong="H2719"\w*, \w with|strong="H3068"\w* \w blight|strong="H7711"\w*, \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w mildew|strong="H3420"\w*. \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w pursue|strong="H7291"\w* \w you|strong="H5704"\w* \w until|strong="H5704"\w* \w you|strong="H5704"\w* perish. +\v 23 \w Your|strong="H5921"\w* \w sky|strong="H8064"\w* \w that|strong="H1961"\w* \w is|strong="H7218"\w* \w over|strong="H5921"\w* \w your|strong="H5921"\w* \w head|strong="H7218"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w bronze|strong="H5178"\w*, \w and|strong="H8064"\w* \w the|strong="H5921"\w* \w earth|strong="H8064"\w* \w that|strong="H1961"\w* \w is|strong="H7218"\w* \w under|strong="H8478"\w* \w you|strong="H5921"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w iron|strong="H1270"\w*. +\v 24 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w make|strong="H5414"\w* \w the|strong="H5921"\w* \w rain|strong="H4306"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w land|strong="H8064"\w* \w powder|strong="H6083"\w* \w and|strong="H3068"\w* \w dust|strong="H6083"\w*. \w It|strong="H5414"\w* \w will|strong="H3068"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w* \w on|strong="H5921"\w* \w you|strong="H5414"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* \w sky|strong="H8064"\w*, \w until|strong="H5704"\w* \w you|strong="H5414"\w* \w are|strong="H8064"\w* \w destroyed|strong="H8045"\w*. +\v 25 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w cause|strong="H5414"\w* \w you|strong="H5414"\w* \w to|strong="H3318"\w* \w be|strong="H1961"\w* \w struck|strong="H5062"\w* \w before|strong="H6440"\w* \w your|strong="H3068"\w* enemies. \w You|strong="H5414"\w* \w will|strong="H3068"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w one|strong="H3605"\w* \w way|strong="H1870"\w* \w against|strong="H6440"\w* \w them|strong="H5414"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w flee|strong="H5127"\w* \w seven|strong="H7651"\w* \w ways|strong="H1870"\w* \w before|strong="H6440"\w* \w them|strong="H5414"\w*. \w You|strong="H5414"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* tossed \w back|strong="H3318"\w* \w and|strong="H3068"\w* \w forth|strong="H3318"\w* among \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* earth. +\v 26 \w Your|strong="H3605"\w* \w dead|strong="H5038"\w* \w bodies|strong="H5038"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w food|strong="H3978"\w* \w to|strong="H1961"\w* \w all|strong="H3605"\w* \w birds|strong="H5775"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w and|strong="H8064"\w* \w to|strong="H1961"\w* \w the|strong="H3605"\w* \w animals|strong="H1961"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*; \w and|strong="H8064"\w* \w there|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w to|strong="H1961"\w* \w frighten|strong="H2729"\w* \w them|strong="H1961"\w* \w away|strong="H2729"\w*. +\v 27 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w strike|strong="H5221"\w* \w you|strong="H3808"\w* \w with|strong="H3068"\w* \w the|strong="H5221"\w* \w boils|strong="H7822"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w with|strong="H3068"\w* \w the|strong="H5221"\w* \w tumors|strong="H6076"\w*, \w with|strong="H3068"\w* \w the|strong="H5221"\w* \w scurvy|strong="H1618"\w*, \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w the|strong="H5221"\w* \w itch|strong="H2775"\w*, \w of|strong="H3068"\w* \w which|strong="H3068"\w* \w you|strong="H3808"\w* \w can|strong="H3201"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w healed|strong="H7495"\w*. +\v 28 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w strike|strong="H5221"\w* \w you|strong="H5221"\w* \w with|strong="H3068"\w* \w madness|strong="H7697"\w*, \w with|strong="H3068"\w* \w blindness|strong="H5788"\w*, \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w astonishment|strong="H8541"\w* \w of|strong="H3068"\w* \w heart|strong="H3824"\w*. +\v 29 \w You|strong="H3605"\w* \w will|strong="H1961"\w* \w grope|strong="H4959"\w* \w at|strong="H3117"\w* \w noonday|strong="H6672"\w*, \w as|strong="H3117"\w* \w the|strong="H3605"\w* \w blind|strong="H5787"\w* \w gropes|strong="H4959"\w* \w in|strong="H3117"\w* darkness, \w and|strong="H3117"\w* \w you|strong="H3605"\w* \w shall|strong="H3117"\w* \w not|strong="H3808"\w* \w prosper|strong="H6743"\w* \w in|strong="H3117"\w* \w your|strong="H3605"\w* \w ways|strong="H1870"\w*. \w You|strong="H3605"\w* \w will|strong="H1961"\w* \w only|strong="H3605"\w* \w be|strong="H1961"\w* \w oppressed|strong="H6231"\w* \w and|strong="H3117"\w* \w robbed|strong="H1497"\w* \w always|strong="H3605"\w*, \w and|strong="H3117"\w* \w there|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w no|strong="H3808"\w* \w one|strong="H3605"\w* \w to|strong="H1961"\w* \w save|strong="H3467"\w* \w you|strong="H3605"\w*. +\v 30 \w You|strong="H3808"\w* \w will|strong="H1004"\w* betroth \w a|strong="H3068"\w* wife, \w and|strong="H1004"\w* \w another|strong="H3808"\w* man \w shall|strong="H1004"\w* lie \w with|strong="H1004"\w* \w her|strong="H1129"\w*. \w You|strong="H3808"\w* \w will|strong="H1004"\w* \w build|strong="H1129"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w*, \w and|strong="H1004"\w* \w you|strong="H3808"\w* won’t \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w it|strong="H3808"\w*. \w You|strong="H3808"\w* \w will|strong="H1004"\w* \w plant|strong="H5193"\w* \w a|strong="H3068"\w* \w vineyard|strong="H3754"\w*, \w and|strong="H1004"\w* \w not|strong="H3808"\w* \w use|strong="H2490"\w* \w its|strong="H2490"\w* \w fruit|strong="H2490"\w*. +\v 31 \w Your|strong="H5414"\w* \w ox|strong="H7794"\w* \w will|strong="H5869"\w* \w be|strong="H3808"\w* \w slain|strong="H2873"\w* \w before|strong="H6440"\w* \w your|strong="H5414"\w* \w eyes|strong="H5869"\w*, \w and|strong="H7725"\w* \w you|strong="H5414"\w* \w will|strong="H5869"\w* \w not|strong="H3808"\w* eat \w any|strong="H4480"\w* \w of|strong="H6440"\w* \w it|strong="H5414"\w*. \w Your|strong="H5414"\w* \w donkey|strong="H2543"\w* \w will|strong="H5869"\w* \w be|strong="H3808"\w* violently \w taken|strong="H5414"\w* \w away|strong="H7725"\w* \w from|strong="H4480"\w* \w before|strong="H6440"\w* \w your|strong="H5414"\w* \w face|strong="H6440"\w*, \w and|strong="H7725"\w* \w will|strong="H5869"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w restored|strong="H7725"\w* \w to|strong="H7725"\w* \w you|strong="H5414"\w*. \w Your|strong="H5414"\w* \w sheep|strong="H6629"\w* \w will|strong="H5869"\w* \w be|strong="H3808"\w* \w given|strong="H5414"\w* \w to|strong="H7725"\w* \w your|strong="H5414"\w* enemies, \w and|strong="H7725"\w* \w you|strong="H5414"\w* \w will|strong="H5869"\w* \w have|strong="H5869"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w to|strong="H7725"\w* \w save|strong="H3467"\w* \w you|strong="H5414"\w*. +\v 32 \w Your|strong="H3605"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w your|strong="H3605"\w* \w daughters|strong="H1323"\w* \w will|strong="H5971"\w* \w be|strong="H3027"\w* \w given|strong="H5414"\w* \w to|strong="H5414"\w* \w another|strong="H7200"\w* \w people|strong="H5971"\w*. \w Your|strong="H3605"\w* \w eyes|strong="H5869"\w* \w will|strong="H5971"\w* \w look|strong="H7200"\w* \w and|strong="H1121"\w* \w fail|strong="H5414"\w* \w with|strong="H3117"\w* longing \w for|strong="H3027"\w* \w them|strong="H5414"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w* \w long|strong="H3117"\w*. \w There|strong="H3117"\w* \w will|strong="H5971"\w* \w be|strong="H3027"\w* \w no|strong="H3605"\w* \w power|strong="H3027"\w* \w in|strong="H3117"\w* \w your|strong="H3605"\w* \w hand|strong="H3027"\w*. +\v 33 \w A|strong="H3068"\w* \w nation|strong="H5971"\w* \w which|strong="H5971"\w* \w you|strong="H3605"\w* don’t \w know|strong="H3045"\w* \w will|strong="H1961"\w* eat \w the|strong="H3605"\w* \w fruit|strong="H6529"\w* \w of|strong="H3117"\w* \w your|strong="H3605"\w* ground \w and|strong="H3117"\w* \w all|strong="H3605"\w* \w of|strong="H3117"\w* \w your|strong="H3605"\w* \w work|strong="H3018"\w*. \w You|strong="H3605"\w* \w will|strong="H1961"\w* \w only|strong="H7535"\w* \w be|strong="H1961"\w* \w oppressed|strong="H6231"\w* \w and|strong="H3117"\w* \w crushed|strong="H7533"\w* \w always|strong="H3605"\w*, +\v 34 \w so|strong="H1961"\w* \w that|strong="H7200"\w* \w the|strong="H7200"\w* sights \w that|strong="H7200"\w* \w you|strong="H7200"\w* \w see|strong="H7200"\w* \w with|strong="H5869"\w* \w your|strong="H7200"\w* \w eyes|strong="H5869"\w* \w will|strong="H1961"\w* drive \w you|strong="H7200"\w* \w mad|strong="H7696"\w*. +\v 35 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w strike|strong="H5221"\w* \w you|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w knees|strong="H1290"\w* \w and|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w legs|strong="H7785"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w sore|strong="H7451"\w* \w boil|strong="H7822"\w*, \w of|strong="H3068"\w* \w which|strong="H3068"\w* \w you|strong="H5921"\w* \w cannot|strong="H3808"\w* \w be|strong="H3808"\w* \w healed|strong="H7495"\w*, \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w sole|strong="H3709"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w foot|strong="H7272"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w crown|strong="H6936"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w head|strong="H6936"\w*. +\v 36 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w bring|strong="H3212"\w* \w you|strong="H5921"\w*, \w and|strong="H6965"\w* \w your|strong="H3068"\w* \w king|strong="H4428"\w* whom \w you|strong="H5921"\w* \w will|strong="H3068"\w* \w set|strong="H6965"\w* \w over|strong="H5921"\w* \w yourselves|strong="H8033"\w*, \w to|strong="H3068"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w that|strong="H3045"\w* \w you|strong="H5921"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w known|strong="H3045"\w*, \w you|strong="H5921"\w* \w nor|strong="H3808"\w* \w your|strong="H3068"\w* fathers. \w There|strong="H8033"\w* \w you|strong="H5921"\w* \w will|strong="H3068"\w* \w serve|strong="H5647"\w* other gods \w of|strong="H4428"\w* \w wood|strong="H6086"\w* \w and|strong="H6965"\w* stone. +\v 37 \w You|strong="H3605"\w* \w will|strong="H3068"\w* \w become|strong="H1961"\w* \w an|strong="H1961"\w* \w astonishment|strong="H8047"\w*, \w a|strong="H3068"\w* \w proverb|strong="H4912"\w*, \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w byword|strong="H8148"\w* \w among|strong="H8148"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w where|strong="H8033"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w lead|strong="H5090"\w* \w you|strong="H3605"\w* \w away|strong="H5090"\w*. +\v 38 \w You|strong="H3588"\w* \w will|strong="H7704"\w* \w carry|strong="H3318"\w* \w much|strong="H7227"\w* \w seed|strong="H2233"\w* \w out|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w*, \w and|strong="H7704"\w* \w will|strong="H7704"\w* gather \w little|strong="H4592"\w* \w in|strong="H7227"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* locust \w will|strong="H7704"\w* \w consume|strong="H2628"\w* \w it|strong="H3588"\w*. +\v 39 \w You|strong="H3588"\w* \w will|strong="H3808"\w* \w plant|strong="H5193"\w* \w vineyards|strong="H3754"\w* \w and|strong="H8354"\w* \w dress|strong="H5647"\w* \w them|strong="H5647"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3808"\w* \w neither|strong="H3808"\w* \w drink|strong="H8354"\w* \w of|strong="H5647"\w* \w the|strong="H3588"\w* \w wine|strong="H3196"\w*, \w nor|strong="H3808"\w* harvest, \w because|strong="H3588"\w* \w worms|strong="H8438"\w* \w will|strong="H3808"\w* eat \w them|strong="H5647"\w*. +\v 40 \w You|strong="H3588"\w* \w will|strong="H1961"\w* \w have|strong="H1961"\w* \w olive|strong="H2132"\w* \w trees|strong="H2132"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w borders|strong="H1366"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* won’t \w anoint|strong="H5480"\w* yourself \w with|strong="H3605"\w* \w the|strong="H3605"\w* \w oil|strong="H8081"\w*, \w for|strong="H3588"\w* \w your|strong="H3605"\w* \w olives|strong="H2132"\w* \w will|strong="H1961"\w* \w drop|strong="H5394"\w* \w off|strong="H5394"\w*. +\v 41 \w You|strong="H3588"\w* \w will|strong="H1961"\w* \w father|strong="H3205"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w daughters|strong="H1323"\w*, \w but|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* yours, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H1961"\w* \w go|strong="H3212"\w* \w into|strong="H3212"\w* \w captivity|strong="H7628"\w*. +\v 42 Locusts \w will|strong="H6529"\w* \w consume|strong="H3423"\w* \w all|strong="H3605"\w* \w of|strong="H6086"\w* \w your|strong="H3605"\w* \w trees|strong="H6086"\w* \w and|strong="H6086"\w* \w the|strong="H3605"\w* \w fruit|strong="H6529"\w* \w of|strong="H6086"\w* \w your|strong="H3605"\w* ground. +\v 43 \w The|strong="H5921"\w* \w foreigner|strong="H1616"\w* \w who|strong="H1616"\w* \w is|strong="H7130"\w* \w among|strong="H7130"\w* \w you|strong="H5921"\w* \w will|strong="H3381"\w* \w mount|strong="H5927"\w* \w up|strong="H5927"\w* \w above|strong="H4605"\w* \w you|strong="H5921"\w* \w higher|strong="H4605"\w* \w and|strong="H3381"\w* \w higher|strong="H4605"\w*, \w and|strong="H3381"\w* \w you|strong="H5921"\w* \w will|strong="H3381"\w* \w come|strong="H5927"\w* \w down|strong="H3381"\w* \w lower|strong="H4295"\w* \w and|strong="H3381"\w* \w lower|strong="H4295"\w*. +\v 44 \w He|strong="H1931"\w* \w will|strong="H1961"\w* \w lend|strong="H3867"\w* \w to|strong="H1961"\w* \w you|strong="H3808"\w*, \w and|strong="H7218"\w* \w you|strong="H3808"\w* won’t \w lend|strong="H3867"\w* \w to|strong="H1961"\w* \w him|strong="H1931"\w*. \w He|strong="H1931"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w the|strong="H1961"\w* \w head|strong="H7218"\w*, \w and|strong="H7218"\w* \w you|strong="H3808"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w the|strong="H1961"\w* \w tail|strong="H2180"\w*. +\p +\v 45 \w All|strong="H3605"\w* \w these|strong="H8085"\w* \w curses|strong="H7045"\w* \w will|strong="H3068"\w* come \w on|strong="H5921"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w pursue|strong="H7291"\w* \w you|strong="H3588"\w* \w and|strong="H3068"\w* \w overtake|strong="H5381"\w* \w you|strong="H3588"\w*, \w until|strong="H5704"\w* \w you|strong="H3588"\w* \w are|strong="H3068"\w* \w destroyed|strong="H8045"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w*, \w to|strong="H5704"\w* \w keep|strong="H8104"\w* \w his|strong="H3605"\w* \w commandments|strong="H4687"\w* \w and|strong="H3068"\w* \w his|strong="H3605"\w* \w statutes|strong="H2708"\w* \w which|strong="H3068"\w* \w he|strong="H3588"\w* \w commanded|strong="H6680"\w* \w you|strong="H3588"\w*. +\v 46 \w They|strong="H5704"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w for|strong="H5704"\w* \w a|strong="H3068"\w* \w sign|strong="H4159"\w* \w and|strong="H5769"\w* \w for|strong="H5704"\w* \w a|strong="H3068"\w* \w wonder|strong="H4159"\w* \w to|strong="H5704"\w* \w you|strong="H5704"\w* \w and|strong="H5769"\w* \w to|strong="H5704"\w* \w your|strong="H1961"\w* \w offspring|strong="H2233"\w* \w forever|strong="H5769"\w*. +\v 47 \w Because|strong="H8478"\w* \w you|strong="H3605"\w* didn’t \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w with|strong="H3068"\w* \w joyfulness|strong="H8057"\w* \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w gladness|strong="H8057"\w* \w of|strong="H3068"\w* \w heart|strong="H3824"\w*, \w by|strong="H3068"\w* reason \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w abundance|strong="H7230"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w things|strong="H3605"\w*; +\v 48 \w therefore|strong="H5921"\w* \w you|strong="H5414"\w* \w will|strong="H3068"\w* \w serve|strong="H5647"\w* \w your|strong="H3068"\w* enemies whom \w Yahweh|strong="H3068"\w* \w sends|strong="H7971"\w* \w against|strong="H5921"\w* \w you|strong="H5414"\w*, \w in|strong="H5921"\w* \w hunger|strong="H7458"\w*, \w in|strong="H5921"\w* \w thirst|strong="H6772"\w*, \w in|strong="H5921"\w* \w nakedness|strong="H5903"\w*, \w and|strong="H3068"\w* \w in|strong="H5921"\w* \w lack|strong="H2640"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w things|strong="H3605"\w*. \w He|strong="H5704"\w* \w will|strong="H3068"\w* \w put|strong="H5414"\w* \w an|strong="H5414"\w* \w iron|strong="H1270"\w* \w yoke|strong="H5923"\w* \w on|strong="H5921"\w* \w your|strong="H3068"\w* \w neck|strong="H6677"\w* \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w has|strong="H3068"\w* \w destroyed|strong="H8045"\w* \w you|strong="H5414"\w*. +\v 49 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w bring|strong="H5375"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w* \w from|strong="H5921"\w* \w far|strong="H7350"\w* \w away|strong="H5375"\w*, \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w end|strong="H7097"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* earth, \w as|strong="H3068"\w* \w the|strong="H5921"\w* \w eagle|strong="H5404"\w* \w flies|strong="H1675"\w*: \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w whose|strong="H1471"\w* \w language|strong="H3956"\w* \w you|strong="H5921"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w understand|strong="H8085"\w*, +\v 50 \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w of|strong="H6440"\w* \w fierce|strong="H5794"\w* facial expressions, \w that|strong="H1471"\w* doesn’t \w respect|strong="H5375"\w* \w the|strong="H6440"\w* elderly, \w nor|strong="H3808"\w* \w show|strong="H5375"\w* \w favor|strong="H6440"\w* \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w young|strong="H5288"\w*. +\v 51 \w They|strong="H3808"\w* \w will|strong="H3808"\w* eat \w the|strong="H5704"\w* \w fruit|strong="H6529"\w* \w of|strong="H6629"\w* \w your|strong="H3808"\w* livestock \w and|strong="H6629"\w* \w the|strong="H5704"\w* \w fruit|strong="H6529"\w* \w of|strong="H6629"\w* \w your|strong="H3808"\w* ground, \w until|strong="H5704"\w* \w you|strong="H5704"\w* \w are|strong="H3808"\w* \w destroyed|strong="H8045"\w*. \w They|strong="H3808"\w* also won’t \w leave|strong="H7604"\w* \w you|strong="H5704"\w* \w grain|strong="H1715"\w*, \w new|strong="H8492"\w* \w wine|strong="H8492"\w*, \w oil|strong="H3323"\w*, \w the|strong="H5704"\w* \w increase|strong="H7698"\w* \w of|strong="H6629"\w* \w your|strong="H3808"\w* livestock, \w or|strong="H3808"\w* \w the|strong="H5704"\w* \w young|strong="H6251"\w* \w of|strong="H6629"\w* \w your|strong="H3808"\w* \w flock|strong="H6629"\w*, \w until|strong="H5704"\w* \w they|strong="H3808"\w* \w have|strong="H7604"\w* caused \w you|strong="H5704"\w* \w to|strong="H5704"\w* perish. +\v 52 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w besiege|strong="H6887"\w* \w you|strong="H5414"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w gates|strong="H8179"\w* \w until|strong="H5704"\w* \w your|strong="H3068"\w* \w high|strong="H1364"\w* \w and|strong="H3068"\w* \w fortified|strong="H1219"\w* \w walls|strong="H2346"\w* \w in|strong="H3068"\w* \w which|strong="H3068"\w* \w you|strong="H5414"\w* trusted \w come|strong="H3381"\w* \w down|strong="H3381"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* land. \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w besiege|strong="H6887"\w* \w you|strong="H5414"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w gates|strong="H8179"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w*. +\v 53 \w You|strong="H5414"\w* \w will|strong="H3068"\w* eat \w the|strong="H5414"\w* \w fruit|strong="H6529"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* own \w body|strong="H1320"\w*, \w the|strong="H5414"\w* \w flesh|strong="H1320"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* \w daughters|strong="H1323"\w*, whom \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w*, \w in|strong="H3068"\w* \w the|strong="H5414"\w* \w siege|strong="H4692"\w* \w and|strong="H1121"\w* \w in|strong="H3068"\w* \w the|strong="H5414"\w* \w distress|strong="H6693"\w* \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w your|strong="H3068"\w* enemies \w will|strong="H3068"\w* \w distress|strong="H6693"\w* \w you|strong="H5414"\w*. +\v 54 \w The|strong="H5869"\w* \w man|strong="H1121"\w* \w who|strong="H1121"\w* \w is|strong="H1121"\w* \w tender|strong="H7390"\w* among \w you|strong="H7489"\w*, \w and|strong="H1121"\w* \w very|strong="H3966"\w* \w delicate|strong="H6028"\w*, \w his|strong="H5869"\w* \w eye|strong="H5869"\w* \w will|strong="H5869"\w* \w be|strong="H1121"\w* \w evil|strong="H7489"\w* toward \w his|strong="H5869"\w* brother, toward \w the|strong="H5869"\w* wife \w whom|strong="H5869"\w* \w he|strong="H1121"\w* loves, \w and|strong="H1121"\w* toward \w the|strong="H5869"\w* \w remnant|strong="H3499"\w* \w of|strong="H1121"\w* \w his|strong="H5869"\w* \w children|strong="H1121"\w* \w whom|strong="H5869"\w* \w he|strong="H1121"\w* \w has|strong="H5869"\w* \w remaining|strong="H3498"\w*, +\v 55 \w so|strong="H5414"\w* \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w will|strong="H1121"\w* \w not|strong="H5414"\w* \w give|strong="H5414"\w* \w to|strong="H5414"\w* \w any|strong="H3605"\w* \w of|strong="H1121"\w* \w them|strong="H5414"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w flesh|strong="H1320"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w children|strong="H1121"\w* \w whom|strong="H1992"\w* \w he|strong="H3605"\w* \w will|strong="H1121"\w* eat, \w because|strong="H1097"\w* \w he|strong="H3605"\w* \w has|strong="H3605"\w* \w nothing|strong="H3605"\w* \w left|strong="H7604"\w* \w to|strong="H5414"\w* \w him|strong="H5414"\w*, \w in|strong="H1320"\w* \w the|strong="H3605"\w* \w siege|strong="H4692"\w* \w and|strong="H1121"\w* \w in|strong="H1320"\w* \w the|strong="H3605"\w* \w distress|strong="H6693"\w* \w with|strong="H1320"\w* \w which|strong="H1992"\w* \w your|strong="H3605"\w* enemy \w will|strong="H1121"\w* \w distress|strong="H6693"\w* \w you|strong="H5414"\w* \w in|strong="H1320"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w gates|strong="H8179"\w*. +\v 56 \w The|strong="H5921"\w* \w tender|strong="H7390"\w* \w and|strong="H1121"\w* \w delicate|strong="H6028"\w* \w woman|strong="H1323"\w* \w among|strong="H5921"\w* \w you|strong="H5921"\w*, \w who|strong="H1121"\w* would \w not|strong="H3808"\w* \w venture|strong="H5254"\w* \w to|strong="H5921"\w* \w set|strong="H3322"\w* \w the|strong="H5921"\w* \w sole|strong="H3709"\w* \w of|strong="H1121"\w* \w her|strong="H5921"\w* \w foot|strong="H7272"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* ground \w for|strong="H5921"\w* \w delicateness|strong="H6026"\w* \w and|strong="H1121"\w* \w tenderness|strong="H7391"\w*, \w her|strong="H5921"\w* \w eye|strong="H5869"\w* \w will|strong="H5869"\w* \w be|strong="H3808"\w* \w evil|strong="H7489"\w* \w toward|strong="H5921"\w* \w the|strong="H5921"\w* husband \w that|strong="H1121"\w* \w she|strong="H5921"\w* loves, \w toward|strong="H5921"\w* \w her|strong="H5921"\w* \w son|strong="H1121"\w*, \w toward|strong="H5921"\w* \w her|strong="H5921"\w* \w daughter|strong="H1323"\w*, +\v 57 \w toward|strong="H3318"\w* \w her|strong="H3605"\w* \w young|strong="H1121"\w* \w one|strong="H3605"\w* \w who|strong="H3605"\w* \w comes|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* between \w her|strong="H3605"\w* \w feet|strong="H7272"\w*, \w and|strong="H1121"\w* \w toward|strong="H3318"\w* \w her|strong="H3605"\w* \w children|strong="H1121"\w* \w whom|strong="H3588"\w* \w she|strong="H3588"\w* \w bears|strong="H3205"\w*; \w for|strong="H3588"\w* \w she|strong="H3588"\w* \w will|strong="H1121"\w* eat \w them|strong="H3318"\w* \w secretly|strong="H5643"\w* \w for|strong="H3588"\w* \w lack|strong="H2640"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w things|strong="H3605"\w* \w in|strong="H1121"\w* \w the|strong="H3605"\w* \w siege|strong="H4692"\w* \w and|strong="H1121"\w* \w in|strong="H1121"\w* \w the|strong="H3605"\w* \w distress|strong="H6693"\w* \w with|strong="H3318"\w* \w which|strong="H8179"\w* \w your|strong="H3605"\w* enemy \w will|strong="H1121"\w* \w distress|strong="H6693"\w* \w you|strong="H3588"\w* \w in|strong="H1121"\w* \w your|strong="H3605"\w* \w gates|strong="H8179"\w*. +\v 58 If \w you|strong="H3605"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w observe|strong="H8104"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w this|strong="H2088"\w* \w law|strong="H8451"\w* \w that|strong="H3605"\w* \w are|strong="H1697"\w* \w written|strong="H3789"\w* \w in|strong="H3068"\w* \w this|strong="H2088"\w* \w book|strong="H5612"\w*, \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w may|strong="H3068"\w* \w fear|strong="H3372"\w* \w this|strong="H2088"\w* \w glorious|strong="H3513"\w* \w and|strong="H3068"\w* \w fearful|strong="H3372"\w* \w name|strong="H8034"\w*, \w YAHWEH|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, +\v 59 \w then|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w make|strong="H6381"\w* \w your|strong="H3068"\w* \w plagues|strong="H4347"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w plagues|strong="H4347"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w offspring|strong="H2233"\w* fearful, \w even|strong="H3068"\w* \w great|strong="H1419"\w* \w plagues|strong="H4347"\w*, \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w long|strong="H1419"\w* duration, \w and|strong="H3068"\w* \w severe|strong="H1419"\w* \w sicknesses|strong="H2483"\w*, \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w long|strong="H1419"\w* duration. +\v 60 \w He|strong="H3605"\w* \w will|strong="H4714"\w* \w bring|strong="H7725"\w* \w on|strong="H6440"\w* \w you|strong="H6440"\w* \w again|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w diseases|strong="H4064"\w* \w of|strong="H6440"\w* \w Egypt|strong="H4714"\w*, \w which|strong="H3605"\w* \w you|strong="H6440"\w* \w were|strong="H4714"\w* \w afraid|strong="H3025"\w* \w of|strong="H6440"\w*; \w and|strong="H7725"\w* \w they|strong="H3605"\w* \w will|strong="H4714"\w* \w cling|strong="H1692"\w* \w to|strong="H7725"\w* \w you|strong="H6440"\w*. +\v 61 \w Also|strong="H1571"\w* \w every|strong="H3605"\w* \w sickness|strong="H2483"\w* \w and|strong="H3068"\w* \w every|strong="H3605"\w* \w plague|strong="H4347"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w not|strong="H3808"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H3068"\w* \w this|strong="H2063"\w* \w law|strong="H8451"\w*, \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w bring|strong="H5927"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w you|strong="H3605"\w* \w until|strong="H5704"\w* \w you|strong="H3605"\w* \w are|strong="H3068"\w* \w destroyed|strong="H8045"\w*. +\v 62 \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w left|strong="H7604"\w* \w few|strong="H4592"\w* \w in|strong="H3068"\w* \w number|strong="H7230"\w*, \w even|strong="H3588"\w* \w though|strong="H3588"\w* \w you|strong="H3588"\w* \w were|strong="H1961"\w* \w as|strong="H1961"\w* \w the|strong="H8085"\w* \w stars|strong="H3556"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* \w sky|strong="H8064"\w* \w for|strong="H3588"\w* \w multitude|strong="H7230"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w*. +\v 63 \w It|strong="H5921"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w* \w that|strong="H3068"\w* \w as|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w rejoiced|strong="H7797"\w* \w over|strong="H5921"\w* \w you|strong="H5921"\w* \w to|strong="H3068"\w* \w do|strong="H3190"\w* \w you|strong="H5921"\w* \w good|strong="H3190"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w multiply|strong="H7235"\w* \w you|strong="H5921"\w*, \w so|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w rejoice|strong="H7797"\w* \w over|strong="H5921"\w* \w you|strong="H5921"\w* \w to|strong="H3068"\w* \w cause|strong="H3651"\w* \w you|strong="H5921"\w* \w to|strong="H3068"\w* perish \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w destroy|strong="H8045"\w* \w you|strong="H5921"\w*. \w You|strong="H5921"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w plucked|strong="H5255"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* land \w that|strong="H3068"\w* \w you|strong="H5921"\w* \w are|strong="H3068"\w* going \w in|strong="H5921"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w*. +\v 64 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w scatter|strong="H6327"\w* \w you|strong="H3605"\w* \w among|strong="H5971"\w* \w all|strong="H3605"\w* \w peoples|strong="H5971"\w*, \w from|strong="H5704"\w* \w one|strong="H3605"\w* \w end|strong="H7097"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* earth \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w other|strong="H3605"\w* \w end|strong="H7097"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* earth. \w There|strong="H8033"\w* \w you|strong="H3605"\w* \w will|strong="H3068"\w* \w serve|strong="H5647"\w* \w other|strong="H3605"\w* gods \w which|strong="H3068"\w* \w you|strong="H3605"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w known|strong="H3045"\w*, \w you|strong="H3605"\w* \w nor|strong="H3808"\w* \w your|strong="H3068"\w* fathers, \w even|strong="H5704"\w* \w wood|strong="H6086"\w* \w and|strong="H3068"\w* stone. +\v 65 \w Among|strong="H3808"\w* \w these|strong="H1992"\w* \w nations|strong="H1471"\w* \w you|strong="H5414"\w* \w will|strong="H3068"\w* \w find|strong="H7280"\w* \w no|strong="H3808"\w* \w ease|strong="H7280"\w*, \w and|strong="H3068"\w* \w there|strong="H8033"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w no|strong="H3808"\w* \w rest|strong="H4494"\w* \w for|strong="H3068"\w* \w the|strong="H5414"\w* \w sole|strong="H3709"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w foot|strong="H7272"\w*; \w but|strong="H3808"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w there|strong="H8033"\w* \w a|strong="H3068"\w* \w trembling|strong="H7268"\w* \w heart|strong="H3820"\w*, \w failing|strong="H3631"\w* \w of|strong="H3068"\w* \w eyes|strong="H5869"\w*, \w and|strong="H3068"\w* pining \w of|strong="H3068"\w* \w soul|strong="H5315"\w*. +\v 66 \w Your|strong="H1961"\w* \w life|strong="H2416"\w* \w will|strong="H1961"\w* \w hang|strong="H8511"\w* \w in|strong="H3808"\w* doubt \w before|strong="H5048"\w* \w you|strong="H3808"\w*. \w You|strong="H3808"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w afraid|strong="H6342"\w* \w night|strong="H3915"\w* \w and|strong="H3119"\w* \w day|strong="H3119"\w*, \w and|strong="H3119"\w* \w will|strong="H1961"\w* \w have|strong="H1961"\w* \w no|strong="H3808"\w* assurance \w of|strong="H5048"\w* \w your|strong="H1961"\w* \w life|strong="H2416"\w*. +\v 67 \w In|strong="H5414"\w* \w the|strong="H7200"\w* \w morning|strong="H1242"\w* \w you|strong="H5414"\w* \w will|strong="H4310"\w* say, “\w I|strong="H5414"\w* \w wish|strong="H4310"\w* \w it|strong="H5414"\w* \w were|strong="H5869"\w* \w evening|strong="H6153"\w*!” \w and|strong="H5869"\w* \w at|strong="H7200"\w* \w evening|strong="H6153"\w* \w you|strong="H5414"\w* \w will|strong="H4310"\w* say, “\w I|strong="H5414"\w* \w wish|strong="H4310"\w* \w it|strong="H5414"\w* \w were|strong="H5869"\w* \w morning|strong="H1242"\w*!” \w for|strong="H5869"\w* \w the|strong="H7200"\w* \w fear|strong="H6343"\w* \w of|strong="H5869"\w* \w your|strong="H5414"\w* \w heart|strong="H3824"\w* \w which|strong="H4310"\w* \w you|strong="H5414"\w* \w will|strong="H4310"\w* \w fear|strong="H6343"\w*, \w and|strong="H5869"\w* \w for|strong="H5869"\w* \w the|strong="H7200"\w* sights \w which|strong="H4310"\w* \w your|strong="H5414"\w* \w eyes|strong="H5869"\w* \w will|strong="H4310"\w* \w see|strong="H7200"\w*. +\v 68 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w bring|strong="H7725"\w* \w you|strong="H7725"\w* \w into|strong="H7725"\w* \w Egypt|strong="H4714"\w* \w again|strong="H7725"\w* \w with|strong="H3068"\w* ships, \w by|strong="H3068"\w* \w the|strong="H7200"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w which|strong="H3068"\w* \w I|strong="H4714"\w* told \w you|strong="H7725"\w* \w that|strong="H7200"\w* \w you|strong="H7725"\w* \w would|strong="H3068"\w* \w never|strong="H3808"\w* \w see|strong="H7200"\w* \w it|strong="H7725"\w* \w again|strong="H7725"\w*. \w There|strong="H8033"\w* \w you|strong="H7725"\w* \w will|strong="H3068"\w* \w offer|strong="H4376"\w* \w yourselves|strong="H8033"\w* \w to|strong="H7725"\w* \w your|strong="H3068"\w* enemies \w for|strong="H4714"\w* \w male|strong="H5650"\w* \w and|strong="H3068"\w* \w female|strong="H8198"\w* \w slaves|strong="H5650"\w*, \w and|strong="H3068"\w* \w nobody|strong="H3808"\w* \w will|strong="H3068"\w* \w buy|strong="H7069"\w* \w you|strong="H7725"\w*. +\c 29 +\p +\v 1 \w These|strong="H6213"\w* \w are|strong="H3478"\w* \w the|strong="H3605"\w* words \w of|strong="H3068"\w* \w the|strong="H3605"\w* covenant \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* commanded \w Moses|strong="H4872"\w* \w to|strong="H3478"\w* \w make|strong="H6213"\w* \w with|strong="H3068"\w* \w the|strong="H3605"\w* children \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* land \w of|strong="H3068"\w* Moab, \w in|strong="H3478"\w* addition \w to|strong="H3478"\w* \w the|strong="H3605"\w* covenant \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w with|strong="H3068"\w* \w them|strong="H6213"\w* \w in|strong="H3478"\w* Horeb. +\v 2 Moses called \w to|strong="H7200"\w* \w all|strong="H7200"\w* Israel, \w and|strong="H1419"\w* said \w to|strong="H7200"\w* \w them|strong="H1992"\w*: +\p \w Your|strong="H7200"\w* \w eyes|strong="H5869"\w* \w have|strong="H5869"\w* \w seen|strong="H7200"\w* \w all|strong="H7200"\w* \w that|strong="H7200"\w* \w Yahweh|strong="H3068"\w* \w did|strong="H5869"\w* \w in|strong="H1419"\w* \w the|strong="H7200"\w* land \w of|strong="H5869"\w* Egypt \w to|strong="H7200"\w* Pharaoh, \w and|strong="H1419"\w* \w to|strong="H7200"\w* \w all|strong="H7200"\w* \w his|strong="H7200"\w* servants, \w and|strong="H1419"\w* \w to|strong="H7200"\w* \w all|strong="H7200"\w* \w his|strong="H7200"\w* land; +\v 3 \w the|strong="H8085"\w* great trials \w which|strong="H3068"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w* \w saw|strong="H7200"\w*, \w the|strong="H8085"\w* signs, \w and|strong="H3068"\w* \w those|strong="H8085"\w* great wonders. +\v 4 \w But|strong="H3808"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H7272"\w* \w not|strong="H3808"\w* given \w you|strong="H5921"\w* \w a|strong="H3068"\w* heart \w to|strong="H3212"\w* know, eyes \w to|strong="H3212"\w* see, \w and|strong="H3212"\w* ears \w to|strong="H3212"\w* hear, \w to|strong="H3212"\w* \w this|strong="H3212"\w* day. +\v 5 \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w led|strong="H3068"\w* \w you|strong="H3588"\w* forty years \w in|strong="H3068"\w* \w the|strong="H3588"\w* wilderness. \w Your|strong="H3068"\w* clothes \w have|strong="H3068"\w* \w not|strong="H3808"\w* grown old \w on|strong="H3068"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w your|strong="H3068"\w* sandals \w have|strong="H3068"\w* \w not|strong="H3808"\w* grown old \w on|strong="H3068"\w* \w your|strong="H3068"\w* feet. +\v 6 \w You|strong="H5221"\w* \w have|strong="H4428"\w* \w not|strong="H2088"\w* eaten bread, neither \w have|strong="H4428"\w* \w you|strong="H5221"\w* drunk wine \w or|strong="H4428"\w* strong drink, \w that|strong="H4428"\w* \w you|strong="H5221"\w* \w may|strong="H4428"\w* know \w that|strong="H4428"\w* \w I|strong="H2088"\w* am \w Yahweh|strong="H3068"\w* \w your|strong="H3318"\w* God. +\v 7 When \w you|strong="H5414"\w* came \w to|strong="H5414"\w* \w this|strong="H5414"\w* \w place|strong="H5414"\w*, Sihon \w the|strong="H5414"\w* king \w of|strong="H7626"\w* Heshbon \w and|strong="H3947"\w* Og \w the|strong="H5414"\w* king \w of|strong="H7626"\w* Bashan came \w out|strong="H5414"\w* against \w us|strong="H5414"\w* \w to|strong="H5414"\w* battle, \w and|strong="H3947"\w* \w we|strong="H3068"\w* struck \w them|strong="H5414"\w*. +\v 8 \w We|strong="H6213"\w* took \w their|strong="H3605"\w* land, \w and|strong="H6213"\w* \w gave|strong="H6213"\w* \w it|strong="H6213"\w* \w for|strong="H6213"\w* \w an|strong="H6213"\w* inheritance \w to|strong="H6213"\w* \w the|strong="H3605"\w* Reubenites, \w and|strong="H6213"\w* \w to|strong="H6213"\w* \w the|strong="H3605"\w* Gadites, \w and|strong="H6213"\w* \w to|strong="H6213"\w* \w the|strong="H3605"\w* half-tribe \w of|strong="H1697"\w* \w the|strong="H3605"\w* Manassites. +\v 9 \w Therefore|strong="H3068"\w* keep \w the|strong="H3605"\w* words \w of|strong="H3068"\w* \w this|strong="H6440"\w* covenant \w and|strong="H3478"\w* \w do|strong="H3068"\w* \w them|strong="H6440"\w*, \w that|strong="H3605"\w* \w you|strong="H6440"\w* \w may|strong="H3068"\w* prosper \w in|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H6440"\w* \w do|strong="H3068"\w*. +\v 10 \w All|strong="H5704"\w* \w of|strong="H4325"\w* \w you|strong="H5704"\w* stand today \w in|strong="H7130"\w* \w the|strong="H5704"\w* \w presence|strong="H7130"\w* \w of|strong="H4325"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H5704"\w* God: \w your|strong="H5704"\w* heads, \w your|strong="H5704"\w* tribes, \w your|strong="H5704"\w* elders, \w and|strong="H6086"\w* \w your|strong="H5704"\w* officers, \w even|strong="H5704"\w* \w all|strong="H5704"\w* \w the|strong="H5704"\w* \w men|strong="H4264"\w* \w of|strong="H4325"\w* Israel, +\v 11 \w your|strong="H3068"\w* little ones, \w your|strong="H3068"\w* wives, \w and|strong="H3068"\w* \w the|strong="H3068"\w* foreigners \w who|strong="H3068"\w* \w are|strong="H3117"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* middle \w of|strong="H3068"\w* \w your|strong="H3068"\w* camps, \w from|strong="H3772"\w* \w the|strong="H3068"\w* \w one|strong="H3068"\w* \w who|strong="H3068"\w* \w cuts|strong="H3772"\w* \w your|strong="H3068"\w* wood \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w one|strong="H3068"\w* \w who|strong="H3068"\w* draws \w your|strong="H3068"\w* water, +\v 12 \w that|strong="H5971"\w* \w you|strong="H3117"\w* \w may|strong="H1961"\w* enter \w into|strong="H1961"\w* \w the|strong="H3117"\w* \w covenant|strong="H7650"\w* \w of|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H1961"\w* God, \w and|strong="H6965"\w* \w into|strong="H1961"\w* \w his|strong="H1961"\w* \w oath|strong="H7650"\w*, \w which|strong="H1931"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H1961"\w* God \w makes|strong="H1696"\w* \w with|strong="H1696"\w* \w you|strong="H3117"\w* \w today|strong="H3117"\w*, +\v 13 \w that|strong="H3808"\w* \w he|strong="H3808"\w* \w may|strong="H1285"\w* establish \w you|strong="H3808"\w* today as \w his|strong="H3808"\w* \w people|strong="H3808"\w*, \w and|strong="H1285"\w* \w that|strong="H3808"\w* \w he|strong="H3808"\w* \w may|strong="H1285"\w* \w be|strong="H3808"\w* \w your|strong="H3808"\w* \w God|strong="H3808"\w*, as \w he|strong="H3808"\w* spoke \w to|strong="H3808"\w* \w you|strong="H3808"\w* \w and|strong="H1285"\w* as \w he|strong="H3808"\w* swore \w to|strong="H3808"\w* \w your|strong="H3808"\w* fathers, \w to|strong="H3808"\w* Abraham, \w to|strong="H3808"\w* Isaac, \w and|strong="H1285"\w* \w to|strong="H3808"\w* Jacob. +\v 14 \w Neither|strong="H5973"\w* \w do|strong="H3068"\w* \w I|strong="H3588"\w* \w make|strong="H5975"\w* \w this|strong="H3588"\w* covenant \w and|strong="H3068"\w* \w this|strong="H3588"\w* oath \w with|strong="H5973"\w* \w you|strong="H3588"\w* \w only|strong="H3588"\w*, +\v 15 \w but|strong="H3588"\w* \w with|strong="H3427"\w* \w those|strong="H3427"\w* \w who|strong="H3427"\w* \w stand|strong="H3427"\w* here \w with|strong="H3427"\w* \w us|strong="H3045"\w* today \w before|strong="H5674"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3588"\w* God, \w and|strong="H4714"\w* \w also|strong="H1471"\w* \w with|strong="H3427"\w* \w those|strong="H3427"\w* \w who|strong="H3427"\w* \w are|strong="H1471"\w* \w not|strong="H3045"\w* here \w with|strong="H3427"\w* \w us|strong="H3045"\w* today +\v 16 (\w for|strong="H6086"\w* \w you|strong="H5973"\w* know how \w we|strong="H3068"\w* lived \w in|strong="H6086"\w* \w the|strong="H7200"\w* land \w of|strong="H6086"\w* Egypt, \w and|strong="H3701"\w* how \w we|strong="H3068"\w* came \w through|strong="H7200"\w* \w the|strong="H7200"\w* middle \w of|strong="H6086"\w* \w the|strong="H7200"\w* nations \w through|strong="H7200"\w* \w which|strong="H6086"\w* \w you|strong="H5973"\w* passed; +\v 17 \w and|strong="H3068"\w* \w you|strong="H3117"\w* \w have|strong="H3426"\w* seen \w their|strong="H3068"\w* abominations \w and|strong="H3068"\w* \w their|strong="H3068"\w* idols \w of|strong="H3068"\w* wood, stone, silver, \w and|strong="H3068"\w* gold, \w which|strong="H3068"\w* \w were|strong="H3117"\w* \w among|strong="H5973"\w* \w them|strong="H1992"\w*); +\v 18 \w lest|strong="H4616"\w* \w there|strong="H1961"\w* \w should|strong="H3588"\w* \w be|strong="H1961"\w* among \w you|strong="H3588"\w* \w man|strong="H6771"\w*, woman, family, \w or|strong="H8085"\w* tribe whose \w heart|strong="H3820"\w* turns \w away|strong="H3212"\w* today \w from|strong="H8085"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H1288"\w* God, \w to|strong="H3212"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w serve|strong="H1961"\w* \w the|strong="H8085"\w* gods \w of|strong="H1697"\w* \w those|strong="H8085"\w* nations; \w lest|strong="H4616"\w* \w there|strong="H1961"\w* \w should|strong="H3588"\w* \w be|strong="H1961"\w* among \w you|strong="H3588"\w* \w a|strong="H3068"\w* root \w that|strong="H3588"\w* produces bitter poison; +\v 19 \w and|strong="H3068"\w* \w it|strong="H1931"\w* happen, \w when|strong="H3588"\w* \w he|strong="H1931"\w* hears \w the|strong="H3605"\w* words \w of|strong="H3068"\w* \w this|strong="H2088"\w* curse, \w that|strong="H3588"\w* \w he|strong="H1931"\w* bless \w himself|strong="H1931"\w* \w in|strong="H3068"\w* \w his|strong="H3605"\w* heart, saying, “\w I|strong="H3588"\w* \w shall|strong="H3068"\w* \w have|strong="H3068"\w* peace, \w though|strong="H3588"\w* \w I|strong="H3588"\w* walk \w in|strong="H3068"\w* \w the|strong="H3605"\w* stubbornness \w of|strong="H3068"\w* \w my|strong="H3605"\w* heart,” \w to|strong="H3068"\w* \w destroy|strong="H4229"\w* \w the|strong="H3605"\w* moist \w with|strong="H3068"\w* \w the|strong="H3605"\w* dry. +\v 20 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H2088"\w* pardon \w him|strong="H3605"\w*, \w but|strong="H7451"\w* \w then|strong="H2088"\w* \w Yahweh|strong="H3068"\w*’s anger \w and|strong="H3478"\w* \w his|strong="H3605"\w* jealousy \w will|strong="H3068"\w* smoke \w against|strong="H3068"\w* \w that|strong="H3605"\w* \w man|strong="H7451"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* curse \w that|strong="H3605"\w* \w is|strong="H3068"\w* \w written|strong="H3789"\w* \w in|strong="H3478"\w* \w this|strong="H2088"\w* \w book|strong="H5612"\w* \w will|strong="H3068"\w* fall \w on|strong="H3068"\w* \w him|strong="H3605"\w*, \w and|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* blot \w out|strong="H3605"\w* \w his|strong="H3605"\w* name \w from|strong="H3478"\w* \w under|strong="H3605"\w* \w the|strong="H3605"\w* sky. +\v 21 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w set|strong="H6965"\w* \w him|strong="H7200"\w* apart \w for|strong="H3068"\w* evil \w out|strong="H7200"\w* \w of|strong="H1121"\w* \w all|strong="H1755"\w* \w the|strong="H7200"\w* tribes \w of|strong="H1121"\w* Israel, according \w to|strong="H3068"\w* \w all|strong="H1755"\w* \w the|strong="H7200"\w* curses \w of|strong="H1121"\w* \w the|strong="H7200"\w* covenant written \w in|strong="H3068"\w* \w this|strong="H1931"\w* book \w of|strong="H1121"\w* \w the|strong="H7200"\w* law. +\p +\v 22 \w The|strong="H3605"\w* generation \w to|strong="H3068"\w* \w come|strong="H5927"\w*—\w your|strong="H3068"\w* children \w who|strong="H3605"\w* \w will|strong="H3068"\w* \w rise|strong="H5927"\w* \w up|strong="H5927"\w* \w after|strong="H5927"\w* \w you|strong="H3605"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* foreigner \w who|strong="H3605"\w* \w will|strong="H3068"\w* \w come|strong="H5927"\w* \w from|strong="H5927"\w* \w a|strong="H3068"\w* \w far|strong="H5927"\w* land—\w will|strong="H3068"\w* say, \w when|strong="H3068"\w* \w they|strong="H3068"\w* see \w the|strong="H3605"\w* plagues \w of|strong="H3068"\w* \w that|strong="H3605"\w* land, \w and|strong="H3068"\w* \w the|strong="H3605"\w* sicknesses \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w made|strong="H6779"\w* \w it|strong="H5927"\w* sick, +\v 23 \w that|strong="H3605"\w* \w all|strong="H3605"\w* \w of|strong="H3068"\w* \w its|strong="H3605"\w* land \w is|strong="H3068"\w* sulfur, salt, \w and|strong="H3068"\w* burning, \w that|strong="H3605"\w* \w it|strong="H5921"\w* \w is|strong="H3068"\w* \w not|strong="H6213"\w* sown, doesn’t \w produce|strong="H6213"\w*, nor \w does|strong="H6213"\w* \w any|strong="H3605"\w* grass grow \w in|strong="H5921"\w* \w it|strong="H5921"\w*, \w like|strong="H6213"\w* \w the|strong="H3605"\w* overthrow \w of|strong="H3068"\w* Sodom, Gomorrah, Admah, \w and|strong="H3068"\w* Zeboiim, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* overthrew \w in|strong="H5921"\w* \w his|strong="H3605"\w* anger, \w and|strong="H3068"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* wrath. +\v 24 \w Even|strong="H3068"\w* \w all|strong="H3772"\w* \w the|strong="H5921"\w* nations \w will|strong="H3068"\w* say, “\w Why|strong="H5921"\w* \w has|strong="H3068"\w* \w Yahweh|strong="H3068"\w* done \w this|strong="H3068"\w* \w to|strong="H3318"\w* \w this|strong="H3068"\w* land? \w What|strong="H5921"\w* \w does|strong="H3068"\w* \w the|strong="H5921"\w* heat \w of|strong="H3068"\w* \w this|strong="H3068"\w* great anger mean?” +\p +\v 25 \w Then|strong="H3045"\w* men \w will|strong="H3808"\w* say, “Because \w they|strong="H3808"\w* abandoned \w the|strong="H5647"\w* covenant \w of|strong="H5647"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5647"\w* \w God|strong="H3808"\w* \w of|strong="H5647"\w* \w their|strong="H5647"\w* fathers, which \w he|strong="H3808"\w* \w made|strong="H3045"\w* \w with|strong="H3045"\w* \w them|strong="H5647"\w* \w when|strong="H3045"\w* \w he|strong="H3808"\w* \w brought|strong="H3212"\w* \w them|strong="H5647"\w* \w out|strong="H3045"\w* \w of|strong="H5647"\w* \w the|strong="H5647"\w* land \w of|strong="H5647"\w* Egypt, +\v 26 \w and|strong="H3068"\w* \w went|strong="H3068"\w* \w and|strong="H3068"\w* served \w other|strong="H2088"\w* gods \w and|strong="H3068"\w* worshiped \w them|strong="H5921"\w*, gods \w that|strong="H3605"\w* \w they|strong="H3068"\w* didn’t know \w and|strong="H3068"\w* \w that|strong="H3605"\w* \w he|strong="H1931"\w* \w had|strong="H3068"\w* \w not|strong="H2088"\w* given \w to|strong="H3068"\w* \w them|strong="H5921"\w*. +\v 27 \w Therefore|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w anger|strong="H2534"\w* burned \w against|strong="H5921"\w* \w this|strong="H2088"\w* land, \w to|strong="H3068"\w* bring \w on|strong="H5921"\w* \w it|strong="H5921"\w* \w all|strong="H1419"\w* \w the|strong="H5921"\w* curses \w that|strong="H3117"\w* \w are|strong="H3117"\w* written \w in|strong="H5921"\w* \w this|strong="H2088"\w* book. +\v 28 \w Yahweh|strong="H3068"\w* rooted \w them|strong="H6213"\w* \w out|strong="H6213"\w* \w of|strong="H1121"\w* \w their|strong="H3605"\w* land \w in|strong="H3068"\w* anger, \w in|strong="H3068"\w* wrath, \w and|strong="H1121"\w* \w in|strong="H3068"\w* \w great|strong="H6213"\w* indignation, \w and|strong="H1121"\w* thrust \w them|strong="H6213"\w* \w into|strong="H1540"\w* another land, \w as|strong="H5704"\w* \w it|strong="H6213"\w* \w is|strong="H3068"\w* today.” +\p +\v 29 The secret things belong to \w Yahweh|strong="H3068"\w* our God; but the things that are revealed belong to us and to our children forever, that \w we|strong="H3068"\w* may do all the words of this law. +\c 30 +\p +\v 1 \w It|strong="H5414"\w* \w shall|strong="H3068"\w* \w happen|strong="H1961"\w*, \w when|strong="H3588"\w* \w all|strong="H3605"\w* \w these|strong="H3605"\w* \w things|strong="H1697"\w* \w have|strong="H1961"\w* \w come|strong="H1961"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*, \w the|strong="H3605"\w* \w blessing|strong="H1293"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w curse|strong="H7045"\w*, \w which|strong="H3068"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w set|strong="H5414"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w call|strong="H7725"\w* \w them|strong="H5414"\w* \w to|strong="H7725"\w* \w mind|strong="H3824"\w* \w among|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w where|strong="H8033"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w driven|strong="H5080"\w* \w you|strong="H3588"\w*, +\v 2 \w and|strong="H1121"\w* \w return|strong="H7725"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w and|strong="H1121"\w* \w obey|strong="H8085"\w* \w his|strong="H3605"\w* \w voice|strong="H6963"\w* according \w to|strong="H5704"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w* \w today|strong="H3117"\w*, \w you|strong="H6680"\w* \w and|strong="H1121"\w* \w your|strong="H3068"\w* \w children|strong="H1121"\w*, \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w and|strong="H1121"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w*, +\v 3 \w that|strong="H5971"\w* \w then|strong="H7725"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* release \w you|strong="H3605"\w* \w from|strong="H7725"\w* \w captivity|strong="H7622"\w*, \w have|strong="H7355"\w* \w compassion|strong="H7355"\w* \w on|strong="H3068"\w* \w you|strong="H3605"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w return|strong="H7725"\w* \w and|strong="H3068"\w* \w gather|strong="H6908"\w* \w you|strong="H3605"\w* \w from|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w where|strong="H8033"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w scattered|strong="H6327"\w* \w you|strong="H3605"\w*. +\v 4 \w If|strong="H1961"\w* \w your|strong="H3068"\w* \w outcasts|strong="H5080"\w* \w are|strong="H8064"\w* \w in|strong="H3068"\w* \w the|strong="H3947"\w* \w uttermost|strong="H7097"\w* \w parts|strong="H7097"\w* \w of|strong="H3068"\w* \w the|strong="H3947"\w* \w heavens|strong="H8064"\w*, \w from|strong="H3947"\w* \w there|strong="H8033"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w gather|strong="H6908"\w* \w you|strong="H3947"\w*, \w and|strong="H3068"\w* \w from|strong="H3947"\w* \w there|strong="H8033"\w* \w he|strong="H8033"\w* \w will|strong="H3068"\w* \w bring|strong="H3947"\w* \w you|strong="H3947"\w* \w back|strong="H3947"\w*. +\v 5 \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* bring \w you|strong="H3190"\w* \w into|strong="H3423"\w* \w the|strong="H3068"\w* land \w which|strong="H3068"\w* \w your|strong="H3068"\w* fathers \w possessed|strong="H3423"\w*, \w and|strong="H3068"\w* \w you|strong="H3190"\w* \w will|strong="H3068"\w* \w possess|strong="H3423"\w* \w it|strong="H3423"\w*. \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w do|strong="H3190"\w* \w you|strong="H3190"\w* \w good|strong="H3190"\w*, \w and|strong="H3068"\w* \w increase|strong="H7235"\w* \w your|strong="H3068"\w* numbers \w more|strong="H7235"\w* \w than|strong="H7235"\w* \w your|strong="H3068"\w* fathers. +\v 6 \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w circumcise|strong="H4135"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w heart|strong="H3824"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w offspring|strong="H2233"\w*, \w to|strong="H3068"\w* love \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w*, \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w may|strong="H3068"\w* \w live|strong="H2416"\w*. +\v 7 \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w put|strong="H5414"\w* \w all|strong="H3605"\w* \w these|strong="H3605"\w* curses \w on|strong="H5921"\w* \w your|strong="H3068"\w* \w enemies|strong="H8130"\w* \w and|strong="H3068"\w* \w on|strong="H5921"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w hate|strong="H8130"\w* \w you|strong="H5414"\w*, \w who|strong="H3605"\w* \w persecuted|strong="H7291"\w* \w you|strong="H5414"\w*. +\v 8 \w You|strong="H6680"\w* \w shall|strong="H3068"\w* \w return|strong="H7725"\w* \w and|strong="H3068"\w* \w obey|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w*, \w and|strong="H3068"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w commandments|strong="H4687"\w* \w which|strong="H3068"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w* \w today|strong="H3117"\w*. +\v 9 \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w make|strong="H7725"\w* \w you|strong="H3588"\w* prosperous \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*, \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w fruit|strong="H6529"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* body, \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w fruit|strong="H6529"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* livestock, \w and|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w fruit|strong="H6529"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* ground, \w for|strong="H3588"\w* \w good|strong="H2896"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w again|strong="H7725"\w* \w rejoice|strong="H7797"\w* \w over|strong="H5921"\w* \w you|strong="H3588"\w* \w for|strong="H3588"\w* \w good|strong="H2896"\w*, \w as|strong="H3068"\w* \w he|strong="H3588"\w* \w rejoiced|strong="H7797"\w* \w over|strong="H5921"\w* \w your|strong="H3068"\w* fathers, +\v 10 \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w obey|strong="H8085"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w*, \w to|strong="H7725"\w* \w keep|strong="H8104"\w* \w his|strong="H3605"\w* \w commandments|strong="H4687"\w* \w and|strong="H3068"\w* \w his|strong="H3605"\w* \w statutes|strong="H2708"\w* \w which|strong="H3068"\w* \w are|strong="H3068"\w* \w written|strong="H3789"\w* \w in|strong="H3068"\w* \w this|strong="H2088"\w* \w book|strong="H5612"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w*, \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w turn|strong="H7725"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w*. +\p +\v 11 \w For|strong="H3588"\w* \w this|strong="H2063"\w* \w commandment|strong="H4687"\w* \w which|strong="H1931"\w* \w I|strong="H3588"\w* \w command|strong="H6680"\w* \w you|strong="H3588"\w* \w today|strong="H3117"\w* \w is|strong="H1931"\w* \w not|strong="H3808"\w* \w too|strong="H4480"\w* \w hard|strong="H6381"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w or|strong="H3808"\w* \w too|strong="H4480"\w* \w distant|strong="H7350"\w*. +\v 12 \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w not|strong="H3808"\w* \w in|strong="H6213"\w* \w heaven|strong="H8064"\w*, \w that|strong="H8085"\w* \w you|strong="H3947"\w* \w should|strong="H6213"\w* say, “\w Who|strong="H4310"\w* \w will|strong="H4310"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w for|strong="H6213"\w* \w us|strong="H6213"\w* \w to|strong="H5927"\w* \w heaven|strong="H8064"\w*, \w bring|strong="H5927"\w* \w it|strong="H1931"\w* \w to|strong="H5927"\w* \w us|strong="H6213"\w*, \w and|strong="H8064"\w* \w proclaim|strong="H8085"\w* \w it|strong="H1931"\w* \w to|strong="H5927"\w* \w us|strong="H6213"\w*, \w that|strong="H8085"\w* \w we|strong="H3068"\w* \w may|strong="H4310"\w* \w do|strong="H6213"\w* \w it|strong="H1931"\w*?” +\v 13 \w Neither|strong="H3808"\w* \w is|strong="H1931"\w* \w it|strong="H1931"\w* \w beyond|strong="H5676"\w* \w the|strong="H8085"\w* \w sea|strong="H3220"\w*, \w that|strong="H8085"\w* \w you|strong="H3947"\w* \w should|strong="H6213"\w* say, “\w Who|strong="H4310"\w* \w will|strong="H4310"\w* \w go|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H8085"\w* \w sea|strong="H3220"\w* \w for|strong="H6213"\w* \w us|strong="H6213"\w*, \w bring|strong="H3947"\w* \w it|strong="H1931"\w* \w to|strong="H6213"\w* \w us|strong="H6213"\w*, \w and|strong="H8085"\w* \w proclaim|strong="H8085"\w* \w it|strong="H1931"\w* \w to|strong="H6213"\w* \w us|strong="H6213"\w*, \w that|strong="H8085"\w* \w we|strong="H3068"\w* \w may|strong="H4310"\w* \w do|strong="H6213"\w* \w it|strong="H1931"\w*?” +\v 14 \w But|strong="H3588"\w* \w the|strong="H3588"\w* \w word|strong="H1697"\w* \w is|strong="H1697"\w* \w very|strong="H3966"\w* \w near|strong="H7138"\w* \w to|strong="H6213"\w* \w you|strong="H3588"\w*, \w in|strong="H6213"\w* \w your|strong="H6213"\w* \w mouth|strong="H6310"\w* \w and|strong="H6213"\w* \w in|strong="H6213"\w* \w your|strong="H6213"\w* \w heart|strong="H3824"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H6213"\w* \w do|strong="H6213"\w* \w it|strong="H3588"\w*. +\v 15 \w Behold|strong="H7200"\w*, \w I|strong="H3117"\w* \w have|strong="H7200"\w* \w set|strong="H5414"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w* \w today|strong="H3117"\w* \w life|strong="H2416"\w* \w and|strong="H3117"\w* \w prosperity|strong="H2896"\w*, \w and|strong="H3117"\w* \w death|strong="H4194"\w* \w and|strong="H3117"\w* \w evil|strong="H7451"\w*. +\v 16 \w For|strong="H2708"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w* \w today|strong="H3117"\w* \w to|strong="H3068"\w* love \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w to|strong="H3068"\w* \w walk|strong="H3212"\w* \w in|strong="H3068"\w* \w his|strong="H8104"\w* \w ways|strong="H1870"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w keep|strong="H8104"\w* \w his|strong="H8104"\w* \w commandments|strong="H4687"\w*, \w his|strong="H8104"\w* \w statutes|strong="H2708"\w*, \w and|strong="H3068"\w* \w his|strong="H8104"\w* \w ordinances|strong="H4941"\w*, \w that|strong="H3117"\w* \w you|strong="H6680"\w* \w may|strong="H3068"\w* \w live|strong="H2421"\w* \w and|strong="H3068"\w* \w multiply|strong="H7235"\w*, \w and|strong="H3068"\w* \w that|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w may|strong="H3068"\w* \w bless|strong="H1288"\w* \w you|strong="H6680"\w* \w in|strong="H3068"\w* \w the|strong="H8104"\w* land \w where|strong="H8033"\w* \w you|strong="H6680"\w* \w go|strong="H3212"\w* \w in|strong="H3068"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w* \w it|strong="H8033"\w*. +\v 17 \w But|strong="H3808"\w* if \w your|strong="H8085"\w* \w heart|strong="H3824"\w* \w turns|strong="H6437"\w* \w away|strong="H5080"\w*, \w and|strong="H8085"\w* \w you|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w hear|strong="H8085"\w*, \w but|strong="H3808"\w* \w are|strong="H3824"\w* \w drawn|strong="H5080"\w* \w away|strong="H5080"\w* \w and|strong="H8085"\w* \w worship|strong="H7812"\w* other gods, \w and|strong="H8085"\w* \w serve|strong="H5647"\w* \w them|strong="H8085"\w*, +\v 18 \w I|strong="H3588"\w* \w declare|strong="H5046"\w* \w to|strong="H5921"\w* \w you|strong="H3588"\w* \w today|strong="H3117"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3808"\w* \w surely|strong="H3588"\w* \w perish|strong="H5674"\w*. \w You|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* prolong \w your|strong="H5921"\w* \w days|strong="H3117"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w where|strong="H8033"\w* \w you|strong="H3588"\w* \w pass|strong="H5674"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w* \w to|strong="H5921"\w* \w go|strong="H5674"\w* \w in|strong="H5921"\w* \w to|strong="H5921"\w* \w possess|strong="H3423"\w* \w it|strong="H5921"\w*. +\v 19 \w I|strong="H3117"\w* \w call|strong="H5749"\w* \w heaven|strong="H8064"\w* \w and|strong="H3117"\w* \w earth|strong="H8064"\w* \w to|strong="H5414"\w* \w witness|strong="H5749"\w* \w against|strong="H6440"\w* \w you|strong="H5414"\w* \w today|strong="H3117"\w* \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w have|strong="H3117"\w* \w set|strong="H5414"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w* \w life|strong="H2416"\w* \w and|strong="H3117"\w* \w death|strong="H4194"\w*, \w the|strong="H6440"\w* \w blessing|strong="H1293"\w* \w and|strong="H3117"\w* \w the|strong="H6440"\w* \w curse|strong="H7045"\w*. \w Therefore|strong="H4616"\w* choose \w life|strong="H2416"\w*, \w that|strong="H3117"\w* \w you|strong="H5414"\w* \w may|strong="H5414"\w* \w live|strong="H2421"\w*, \w you|strong="H5414"\w* \w and|strong="H3117"\w* \w your|strong="H5414"\w* \w descendants|strong="H2233"\w*, +\v 20 \w to|strong="H3068"\w* love \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w to|strong="H3068"\w* \w obey|strong="H8085"\w* \w his|strong="H5414"\w* \w voice|strong="H6963"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w cling|strong="H1692"\w* \w to|strong="H3068"\w* \w him|strong="H5414"\w*; \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H3068"\w* \w your|strong="H3068"\w* \w life|strong="H2416"\w*, \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w length|strong="H5921"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w days|strong="H3117"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* land \w which|strong="H1931"\w* \w Yahweh|strong="H3068"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* fathers, \w to|strong="H3068"\w* Abraham, \w to|strong="H3068"\w* \w Isaac|strong="H3327"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w Jacob|strong="H3290"\w*, \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w*. +\c 31 +\p +\v 1 \w Moses|strong="H4872"\w* \w went|strong="H3212"\w* \w and|strong="H4872"\w* \w spoke|strong="H1696"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*. +\v 2 \w He|strong="H3117"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w them|strong="H3318"\w*, “\w I|strong="H3117"\w* \w am|strong="H3068"\w* \w one|strong="H2088"\w* \w hundred|strong="H3967"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w today|strong="H3117"\w*. \w I|strong="H3117"\w* \w can|strong="H3201"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H3967"\w* \w come|strong="H3318"\w* \w in|strong="H8141"\w*. \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w me|strong="H5674"\w*, ‘\w You|strong="H3117"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w go|strong="H3318"\w* \w over|strong="H5674"\w* \w this|strong="H2088"\w* \w Jordan|strong="H3383"\w*.’ +\v 3 \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w himself|strong="H1931"\w* \w will|strong="H3068"\w* \w go|strong="H5674"\w* \w over|strong="H5674"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*. \w He|strong="H1931"\w* \w will|strong="H3068"\w* \w destroy|strong="H8045"\w* \w these|strong="H1696"\w* \w nations|strong="H1471"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w and|strong="H3068"\w* \w you|strong="H6440"\w* \w shall|strong="H3068"\w* \w dispossess|strong="H3423"\w* \w them|strong="H6440"\w*. \w Joshua|strong="H3091"\w* \w will|strong="H3068"\w* \w go|strong="H5674"\w* \w over|strong="H5674"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w*. +\v 4 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w to|strong="H3068"\w* \w them|strong="H6213"\w* \w as|strong="H6213"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w* \w to|strong="H3068"\w* \w Sihon|strong="H5511"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w Og|strong="H5747"\w*, \w the|strong="H6213"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H6213"\w* Amorites, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w their|strong="H3068"\w* land, \w when|strong="H6213"\w* \w he|strong="H6213"\w* \w destroyed|strong="H8045"\w* \w them|strong="H6213"\w*. +\v 5 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w deliver|strong="H5414"\w* \w them|strong="H5414"\w* \w up|strong="H5414"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w*, \w and|strong="H3068"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w to|strong="H3068"\w* \w them|strong="H5414"\w* according \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w commandment|strong="H4687"\w* \w which|strong="H3068"\w* \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w commanded|strong="H6680"\w* \w you|strong="H5414"\w*. +\v 6 \w Be|strong="H3808"\w* \w strong|strong="H2388"\w* \w and|strong="H1980"\w* \w courageous|strong="H2388"\w*. Don’t \w be|strong="H3808"\w* \w afraid|strong="H3372"\w* \w or|strong="H3808"\w* scared \w of|strong="H3068"\w* \w them|strong="H6440"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w himself|strong="H1931"\w* \w is|strong="H3068"\w* \w who|strong="H1931"\w* \w goes|strong="H1980"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*. \w He|strong="H1931"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w fail|strong="H7503"\w* \w you|strong="H3588"\w* \w nor|strong="H3808"\w* \w forsake|strong="H5800"\w* \w you|strong="H3588"\w*.” +\p +\v 7 \w Moses|strong="H4872"\w* \w called|strong="H7121"\w* \w to|strong="H3478"\w* \w Joshua|strong="H3091"\w*, \w and|strong="H4872"\w* \w said|strong="H7121"\w* \w to|strong="H3478"\w* \w him|strong="H5414"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, “\w Be|strong="H3068"\w* \w strong|strong="H2388"\w* \w and|strong="H4872"\w* \w courageous|strong="H2388"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w go|strong="H5971"\w* \w with|strong="H3068"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w into|strong="H5414"\w* \w the|strong="H3605"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w sworn|strong="H7650"\w* \w to|strong="H3478"\w* \w their|strong="H3605"\w* fathers \w to|strong="H3478"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w*; \w and|strong="H4872"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w cause|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H3478"\w* \w inherit|strong="H5157"\w* \w it|strong="H5414"\w*. +\v 8 \w Yahweh|strong="H3068"\w* \w himself|strong="H1931"\w* \w is|strong="H3068"\w* \w who|strong="H1931"\w* \w goes|strong="H1980"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*. \w He|strong="H1931"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H6440"\w*. \w He|strong="H1931"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w fail|strong="H7503"\w* \w you|strong="H6440"\w* \w nor|strong="H3808"\w* \w forsake|strong="H5800"\w* \w you|strong="H6440"\w*. Don’t \w be|strong="H1961"\w* \w afraid|strong="H3372"\w*. Don’t \w be|strong="H1961"\w* \w discouraged|strong="H7503"\w*.” +\p +\v 9 \w Moses|strong="H4872"\w* \w wrote|strong="H3789"\w* \w this|strong="H2063"\w* \w law|strong="H8451"\w* \w and|strong="H1121"\w* \w delivered|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w*, \w who|strong="H3605"\w* \w bore|strong="H5375"\w* \w the|strong="H3605"\w* ark \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w*, \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 10 \w Moses|strong="H4872"\w* \w commanded|strong="H6680"\w* \w them|strong="H6680"\w*, saying, “\w At|strong="H4872"\w* \w the|strong="H6680"\w* \w end|strong="H7093"\w* \w of|strong="H8141"\w* \w every|strong="H8141"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w*, \w in|strong="H8141"\w* \w the|strong="H6680"\w* \w set|strong="H6680"\w* \w time|strong="H4150"\w* \w of|strong="H8141"\w* \w the|strong="H6680"\w* \w year|strong="H8141"\w* \w of|strong="H8141"\w* \w release|strong="H8059"\w*, \w in|strong="H8141"\w* \w the|strong="H6680"\w* \w feast|strong="H2282"\w* \w of|strong="H8141"\w* \w booths|strong="H5521"\w*, +\v 11 \w when|strong="H7200"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w has|strong="H3068"\w* \w come|strong="H3478"\w* \w to|strong="H3478"\w* \w appear|strong="H7200"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w place|strong="H4725"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* choose, \w you|strong="H6440"\w* \w shall|strong="H3068"\w* \w read|strong="H7121"\w* \w this|strong="H2063"\w* \w law|strong="H8451"\w* \w before|strong="H6440"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w in|strong="H3478"\w* \w their|strong="H3605"\w* hearing. +\v 12 \w Assemble|strong="H6950"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w the|strong="H3605"\w* \w men|strong="H5971"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* women \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w foreigners|strong="H1616"\w* \w who|strong="H3605"\w* \w are|strong="H5971"\w* within \w your|strong="H3068"\w* \w gates|strong="H8179"\w*, \w that|strong="H5971"\w* \w they|strong="H3068"\w* \w may|strong="H3068"\w* \w hear|strong="H8085"\w*, \w learn|strong="H3925"\w*, \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w observe|strong="H8104"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w this|strong="H2063"\w* \w law|strong="H8451"\w*, +\v 13 \w and|strong="H1121"\w* \w that|strong="H3045"\w* \w their|strong="H3605"\w* \w children|strong="H1121"\w*, \w who|strong="H3605"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w known|strong="H3045"\w*, \w may|strong="H3068"\w* \w hear|strong="H8085"\w* \w and|strong="H1121"\w* \w learn|strong="H3925"\w* \w to|strong="H3068"\w* \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w as|strong="H3117"\w* \w long|strong="H3117"\w* \w as|strong="H3117"\w* \w you|strong="H3605"\w* \w live|strong="H2416"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* land \w where|strong="H8033"\w* \w you|strong="H3605"\w* \w go|strong="H5674"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w* \w it|strong="H5921"\w*.” +\p +\v 14 \w Yahweh|strong="H3068"\w* \w said|strong="H7121"\w* \w to|strong="H4191"\w* \w Moses|strong="H4872"\w*, “\w Behold|strong="H2005"\w*, \w your|strong="H3068"\w* \w days|strong="H3117"\w* \w approach|strong="H7126"\w* \w that|strong="H3117"\w* \w you|strong="H6680"\w* \w must|strong="H4191"\w* \w die|strong="H4191"\w*. \w Call|strong="H7121"\w* \w Joshua|strong="H3091"\w*, \w and|strong="H4872"\w* \w present|strong="H7126"\w* \w yourselves|strong="H3320"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w may|strong="H3068"\w* \w commission|strong="H6680"\w* \w him|strong="H7121"\w*.” +\p \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* \w Joshua|strong="H3091"\w* \w went|strong="H3212"\w*, \w and|strong="H4872"\w* \w presented|strong="H7126"\w* \w themselves|strong="H3320"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*. +\p +\v 15 \w Yahweh|strong="H3068"\w* \w appeared|strong="H7200"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* Tent \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w pillar|strong="H5982"\w* \w of|strong="H3068"\w* \w cloud|strong="H6051"\w*, \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w pillar|strong="H5982"\w* \w of|strong="H3068"\w* \w cloud|strong="H6051"\w* \w stood|strong="H5975"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* Tent’s \w door|strong="H6607"\w*. +\v 16 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Moses|strong="H4872"\w*, “\w Behold|strong="H2009"\w*, \w you|strong="H5973"\w* \w shall|strong="H3068"\w* \w sleep|strong="H7901"\w* \w with|strong="H5973"\w* \w your|strong="H3068"\w* fathers. \w This|strong="H2088"\w* \w people|strong="H5971"\w* \w will|strong="H3068"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H6965"\w* \w play|strong="H2181"\w* \w the|strong="H3068"\w* \w prostitute|strong="H2181"\w* \w after|strong="H6965"\w* \w the|strong="H3068"\w* \w strange|strong="H5236"\w* gods \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w land|strong="H7130"\w* \w where|strong="H8033"\w* \w they|strong="H8033"\w* \w go|strong="H6965"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w among|strong="H7130"\w* \w them|strong="H5800"\w*, \w and|strong="H6965"\w* \w will|strong="H3068"\w* \w forsake|strong="H5800"\w* \w me|strong="H5973"\w* \w and|strong="H6965"\w* \w break|strong="H6565"\w* \w my|strong="H3068"\w* \w covenant|strong="H1285"\w* \w which|strong="H1931"\w* \w I|strong="H2009"\w* \w have|strong="H3068"\w* \w made|strong="H3772"\w* \w with|strong="H5973"\w* \w them|strong="H5800"\w*. +\v 17 \w Then|strong="H1961"\w* \w my|strong="H5921"\w* \w anger|strong="H6440"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w kindled|strong="H2734"\w* \w against|strong="H5921"\w* \w them|strong="H1992"\w* \w in|strong="H5921"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w*, \w and|strong="H3117"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w forsake|strong="H5800"\w* \w them|strong="H1992"\w*, \w and|strong="H3117"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w hide|strong="H5641"\w* \w my|strong="H5921"\w* \w face|strong="H6440"\w* \w from|strong="H6440"\w* \w them|strong="H1992"\w*, \w and|strong="H3117"\w* \w they|strong="H1992"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* devoured, \w and|strong="H3117"\w* \w many|strong="H7227"\w* \w evils|strong="H7451"\w* \w and|strong="H3117"\w* \w troubles|strong="H6869"\w* \w shall|strong="H3117"\w* \w come|strong="H1961"\w* \w on|strong="H5921"\w* \w them|strong="H1992"\w*; \w so|strong="H1961"\w* \w that|strong="H3588"\w* \w they|strong="H1992"\w* \w will|strong="H1961"\w* say \w in|strong="H5921"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w*, ‘Haven’t \w these|strong="H1992"\w* \w evils|strong="H7451"\w* \w come|strong="H1961"\w* \w on|strong="H5921"\w* \w us|strong="H5921"\w* \w because|strong="H3588"\w* \w our|strong="H5921"\w* \w God|strong="H3808"\w* \w is|strong="H1931"\w* \w not|strong="H3808"\w* \w among|strong="H7130"\w* \w us|strong="H5921"\w*?’ +\v 18 \w I|strong="H3588"\w* \w will|strong="H1931"\w* \w surely|strong="H3588"\w* \w hide|strong="H5641"\w* \w my|strong="H3605"\w* \w face|strong="H6440"\w* \w in|strong="H5921"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w* \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w which|strong="H1931"\w* \w they|strong="H3588"\w* \w have|strong="H3117"\w* \w done|strong="H6213"\w*, \w in|strong="H5921"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3117"\w* \w turned|strong="H6437"\w* \w to|strong="H6213"\w* \w other|strong="H3605"\w* gods. +\p +\v 19 “\w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w write|strong="H3789"\w* \w this|strong="H2063"\w* \w song|strong="H7892"\w* \w for|strong="H4616"\w* yourselves, \w and|strong="H1121"\w* \w teach|strong="H3925"\w* \w it|strong="H7760"\w* \w to|strong="H3478"\w* \w the|strong="H7760"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w Put|strong="H7760"\w* \w it|strong="H7760"\w* \w in|strong="H3478"\w* \w their|strong="H7760"\w* \w mouths|strong="H6310"\w*, \w that|strong="H4616"\w* \w this|strong="H2063"\w* \w song|strong="H7892"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w witness|strong="H5707"\w* \w for|strong="H4616"\w* \w me|strong="H7760"\w* \w against|strong="H2063"\w* \w the|strong="H7760"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 20 \w For|strong="H3588"\w* \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H7646"\w* \w brought|strong="H6565"\w* \w them|strong="H5647"\w* into \w the|strong="H3588"\w* land \w which|strong="H3588"\w* \w I|strong="H3588"\w* \w swore|strong="H7650"\w* \w to|strong="H7650"\w* \w their|strong="H5647"\w* fathers, \w flowing|strong="H2100"\w* \w with|strong="H2100"\w* \w milk|strong="H2461"\w* \w and|strong="H2461"\w* \w honey|strong="H1706"\w*, \w and|strong="H2461"\w* \w they|strong="H3588"\w* \w have|strong="H7646"\w* eaten \w and|strong="H2461"\w* \w filled|strong="H7646"\w* themselves, \w and|strong="H2461"\w* grown \w fat|strong="H1878"\w*, \w then|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H5647"\w* \w turn|strong="H6437"\w* \w to|strong="H7650"\w* other gods, \w and|strong="H2461"\w* \w serve|strong="H5647"\w* \w them|strong="H5647"\w*, \w and|strong="H2461"\w* \w despise|strong="H5006"\w* \w me|strong="H5006"\w*, \w and|strong="H2461"\w* \w break|strong="H6565"\w* \w my|strong="H6565"\w* \w covenant|strong="H1285"\w*. +\v 21 \w It|strong="H1931"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w*, \w when|strong="H3588"\w* \w many|strong="H7227"\w* \w evils|strong="H7451"\w* \w and|strong="H6030"\w* \w troubles|strong="H6869"\w* \w have|strong="H1961"\w* \w come|strong="H1961"\w* \w on|strong="H3117"\w* \w them|strong="H6440"\w*, \w that|strong="H3588"\w* \w this|strong="H2063"\w* \w song|strong="H7892"\w* \w will|strong="H1961"\w* \w testify|strong="H6030"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w* \w as|strong="H3117"\w* \w a|strong="H3068"\w* \w witness|strong="H5707"\w*; \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w forgotten|strong="H7911"\w* \w out|strong="H4672"\w* \w of|strong="H3117"\w* \w the|strong="H6440"\w* \w mouths|strong="H6310"\w* \w of|strong="H3117"\w* \w their|strong="H6440"\w* \w descendants|strong="H2233"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w their|strong="H6440"\w* ways \w and|strong="H6030"\w* \w what|strong="H7451"\w* \w they|strong="H3588"\w* \w are|strong="H3117"\w* \w doing|strong="H6213"\w* \w today|strong="H3117"\w*, \w before|strong="H6440"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w brought|strong="H6213"\w* \w them|strong="H6440"\w* \w into|strong="H6213"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w which|strong="H1931"\w* \w I|strong="H3588"\w* \w promised|strong="H7650"\w* \w them|strong="H6440"\w*.” +\p +\v 22 \w So|strong="H2063"\w* \w Moses|strong="H4872"\w* \w wrote|strong="H3789"\w* \w this|strong="H2063"\w* \w song|strong="H7892"\w* \w the|strong="H3117"\w* \w same|strong="H1931"\w* \w day|strong="H3117"\w*, \w and|strong="H1121"\w* \w taught|strong="H3925"\w* \w it|strong="H1931"\w* \w to|strong="H3478"\w* \w the|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\p +\v 23 \w He|strong="H3588"\w* \w commissioned|strong="H6680"\w* \w Joshua|strong="H3091"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w*, \w and|strong="H1121"\w* said, “\w Be|strong="H1961"\w* \w strong|strong="H2388"\w* \w and|strong="H1121"\w* \w courageous|strong="H2388"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H1121"\w* \w bring|strong="H1961"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w into|strong="H1961"\w* \w the|strong="H3588"\w* land \w which|strong="H3478"\w* \w I|strong="H3588"\w* \w swore|strong="H7650"\w* \w to|strong="H3478"\w* \w them|strong="H6680"\w*. \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*.” +\p +\v 24 \w When|strong="H1961"\w* \w Moses|strong="H4872"\w* \w had|strong="H1961"\w* \w finished|strong="H3615"\w* \w writing|strong="H3789"\w* \w the|strong="H5921"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w this|strong="H2063"\w* \w law|strong="H8451"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w book|strong="H5612"\w*, \w until|strong="H5704"\w* \w they|strong="H5921"\w* \w were|strong="H1961"\w* \w finished|strong="H3615"\w*, +\v 25 \w Moses|strong="H4872"\w* \w commanded|strong="H6680"\w* \w the|strong="H5375"\w* \w Levites|strong="H3881"\w*, \w who|strong="H3068"\w* \w bore|strong="H5375"\w* \w the|strong="H5375"\w* ark \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w*, saying, +\v 26 “\w Take|strong="H3947"\w* \w this|strong="H2088"\w* \w book|strong="H5612"\w* \w of|strong="H3068"\w* \w the|strong="H3947"\w* \w law|strong="H8451"\w*, \w and|strong="H3068"\w* \w put|strong="H7760"\w* \w it|strong="H7760"\w* \w by|strong="H3068"\w* \w the|strong="H3947"\w* \w side|strong="H6654"\w* \w of|strong="H3068"\w* \w the|strong="H3947"\w* ark \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w covenant|strong="H1285"\w*, \w that|strong="H3068"\w* \w it|strong="H7760"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w there|strong="H8033"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w witness|strong="H5707"\w* \w against|strong="H3068"\w* \w you|strong="H3947"\w*. +\v 27 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w your|strong="H3068"\w* \w rebellion|strong="H4805"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w stiff|strong="H7186"\w* \w neck|strong="H6203"\w*. \w Behold|strong="H2005"\w*, \w while|strong="H5750"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w yet|strong="H5750"\w* \w alive|strong="H2416"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w* \w today|strong="H3117"\w*, \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w rebellious|strong="H4805"\w* \w against|strong="H5973"\w* \w Yahweh|strong="H3068"\w*. \w How|strong="H3588"\w* much \w more|strong="H5750"\w* \w after|strong="H1961"\w* \w my|strong="H3068"\w* \w death|strong="H4194"\w*? +\v 28 \w Assemble|strong="H6950"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H1697"\w* \w your|strong="H3605"\w* \w tribes|strong="H7626"\w* \w and|strong="H8064"\w* \w your|strong="H3605"\w* \w officers|strong="H7860"\w*, \w that|strong="H3605"\w* \w I|strong="H1697"\w* may \w speak|strong="H1696"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w* \w in|strong="H1696"\w* \w their|strong="H3605"\w* ears, \w and|strong="H8064"\w* \w call|strong="H5749"\w* \w heaven|strong="H8064"\w* \w and|strong="H8064"\w* \w earth|strong="H8064"\w* \w to|strong="H1696"\w* \w witness|strong="H5749"\w* \w against|strong="H1696"\w* \w them|strong="H1697"\w*. +\v 29 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w after|strong="H4480"\w* \w my|strong="H3068"\w* \w death|strong="H4194"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w utterly|strong="H7843"\w* \w corrupt|strong="H7843"\w* \w yourselves|strong="H3027"\w*, \w and|strong="H3068"\w* \w turn|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H4480"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w which|strong="H3068"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w commanded|strong="H6680"\w* \w you|strong="H3588"\w*; \w and|strong="H3068"\w* \w evil|strong="H7451"\w* \w will|strong="H3068"\w* \w happen|strong="H6213"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* latter \w days|strong="H3117"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w to|strong="H3068"\w* \w provoke|strong="H3707"\w* \w him|strong="H3027"\w* \w to|strong="H3068"\w* \w anger|strong="H3707"\w* \w through|strong="H3027"\w* \w the|strong="H3588"\w* \w work|strong="H4639"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w hands|strong="H3027"\w*.” +\p +\v 30 \w Moses|strong="H4872"\w* \w spoke|strong="H1696"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* ears \w of|strong="H1697"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w of|strong="H1697"\w* \w Israel|strong="H3478"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w this|strong="H2063"\w* \w song|strong="H7892"\w*, \w until|strong="H5704"\w* \w they|strong="H5704"\w* \w were|strong="H3478"\w* \w finished|strong="H8552"\w*. +\c 32 +\q1 +\v 1 \w Give|strong="H1696"\w* \w ear|strong="H8085"\w*, \w you|strong="H1696"\w* \w heavens|strong="H8064"\w*, \w and|strong="H8064"\w* \w I|strong="H8085"\w* \w will|strong="H8064"\w* \w speak|strong="H1696"\w*. +\q2 Let \w the|strong="H8085"\w* \w earth|strong="H8064"\w* \w hear|strong="H8085"\w* \w the|strong="H8085"\w* \w words|strong="H6310"\w* \w of|strong="H6310"\w* \w my|strong="H8085"\w* \w mouth|strong="H6310"\w*. +\q1 +\v 2 \w My|strong="H5921"\w* \w doctrine|strong="H3948"\w* will \w drop|strong="H6201"\w* \w as|strong="H5921"\w* \w the|strong="H5921"\w* \w rain|strong="H4306"\w*. +\q2 \w My|strong="H5921"\w* \w speech|strong="H3948"\w* will condense \w as|strong="H5921"\w* \w the|strong="H5921"\w* \w dew|strong="H2919"\w*, +\q2 \w as|strong="H5921"\w* \w the|strong="H5921"\w* misty \w rain|strong="H4306"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tender|strong="H1877"\w* \w grass|strong="H6212"\w*, +\q2 \w as|strong="H5921"\w* \w the|strong="H5921"\w* \w showers|strong="H7241"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w herb|strong="H6212"\w*. +\q1 +\v 3 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w proclaim|strong="H7121"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*. +\q2 \w Ascribe|strong="H3051"\w* \w greatness|strong="H1433"\w* \w to|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*! +\q1 +\v 4 \w The|strong="H3605"\w* \w Rock|strong="H6697"\w*: \w his|strong="H3605"\w* \w work|strong="H6467"\w* \w is|strong="H1931"\w* \w perfect|strong="H8549"\w*, +\q2 \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w ways|strong="H1870"\w* \w are|strong="H1870"\w* \w just|strong="H6662"\w*. +\q2 \w A|strong="H3068"\w* \w God|strong="H6697"\w* \w of|strong="H1870"\w* faithfulness \w who|strong="H3605"\w* does \w no|strong="H3605"\w* \w wrong|strong="H5766"\w*, +\q2 \w just|strong="H6662"\w* \w and|strong="H4941"\w* \w right|strong="H3477"\w* \w is|strong="H1931"\w* \w he|strong="H1931"\w*. +\q1 +\v 5 \w They|strong="H3808"\w* \w have|strong="H1121"\w* dealt \w corruptly|strong="H7843"\w* \w with|strong="H1121"\w* \w him|strong="H1121"\w*. +\q2 \w They|strong="H3808"\w* \w are|strong="H1121"\w* \w not|strong="H3808"\w* \w his|strong="H3808"\w* \w children|strong="H1121"\w*, because \w of|strong="H1121"\w* \w their|strong="H3808"\w* \w defect|strong="H3971"\w*. +\q2 \w They|strong="H3808"\w* \w are|strong="H1121"\w* \w a|strong="H3068"\w* \w perverse|strong="H6141"\w* \w and|strong="H1121"\w* \w crooked|strong="H6141"\w* \w generation|strong="H1755"\w*. +\q1 +\v 6 \w Is|strong="H3068"\w* \w this|strong="H2063"\w* \w the|strong="H6213"\w* \w way|strong="H2063"\w* \w you|strong="H6213"\w* \w repay|strong="H1580"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w foolish|strong="H5036"\w* \w and|strong="H3068"\w* \w unwise|strong="H2450"\w* \w people|strong="H5971"\w*? +\q1 Isn’t \w he|strong="H1931"\w* \w your|strong="H3068"\w* father \w who|strong="H1931"\w* \w has|strong="H3068"\w* \w bought|strong="H7069"\w* \w you|strong="H6213"\w*? +\q2 \w He|strong="H1931"\w* \w has|strong="H3068"\w* \w made|strong="H6213"\w* \w you|strong="H6213"\w* \w and|strong="H3068"\w* \w established|strong="H3559"\w* \w you|strong="H6213"\w*. +\q1 +\v 7 \w Remember|strong="H2142"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w old|strong="H2205"\w*. +\q2 \w Consider|strong="H2142"\w* \w the|strong="H3117"\w* \w years|strong="H8141"\w* \w of|strong="H3117"\w* \w many|strong="H1755"\w* \w generations|strong="H1755"\w*. +\q1 \w Ask|strong="H7592"\w* \w your|strong="H2142"\w* father, \w and|strong="H3117"\w* \w he|strong="H3117"\w* \w will|strong="H3117"\w* \w show|strong="H5046"\w* \w you|strong="H3117"\w*; +\q2 \w your|strong="H2142"\w* \w elders|strong="H2205"\w*, \w and|strong="H3117"\w* \w they|strong="H3117"\w* \w will|strong="H3117"\w* \w tell|strong="H5046"\w* \w you|strong="H3117"\w*. +\q1 +\v 8 \w When|strong="H1121"\w* \w the|strong="H5157"\w* \w Most|strong="H5945"\w* \w High|strong="H5945"\w* \w gave|strong="H5157"\w* \w to|strong="H3478"\w* \w the|strong="H5157"\w* \w nations|strong="H1471"\w* \w their|strong="H5157"\w* \w inheritance|strong="H5157"\w*, +\q2 \w when|strong="H1121"\w* \w he|strong="H5971"\w* \w separated|strong="H6504"\w* \w the|strong="H5157"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*, +\q1 \w he|strong="H5971"\w* \w set|strong="H5324"\w* \w the|strong="H5157"\w* \w bounds|strong="H1367"\w* \w of|strong="H1121"\w* \w the|strong="H5157"\w* \w peoples|strong="H5971"\w* +\q2 according \w to|strong="H3478"\w* \w the|strong="H5157"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w the|strong="H5157"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\q1 +\v 9 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w portion|strong="H2506"\w* \w is|strong="H3068"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*. +\q2 \w Jacob|strong="H3290"\w* \w is|strong="H3068"\w* \w the|strong="H3588"\w* \w lot|strong="H2256"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w inheritance|strong="H5159"\w*. +\q1 +\v 10 \w He|strong="H4057"\w* \w found|strong="H4672"\w* \w him|strong="H4672"\w* \w in|strong="H4672"\w* \w a|strong="H3068"\w* \w desert|strong="H4057"\w* land, +\q2 \w in|strong="H4672"\w* \w the|strong="H5437"\w* \w waste|strong="H8414"\w* \w howling|strong="H3214"\w* \w wilderness|strong="H4057"\w*. +\q1 \w He|strong="H4057"\w* \w surrounded|strong="H5437"\w* \w him|strong="H4672"\w*. +\q2 \w He|strong="H4057"\w* cared \w for|strong="H5869"\w* \w him|strong="H4672"\w*. +\q2 \w He|strong="H4057"\w* \w kept|strong="H5341"\w* \w him|strong="H4672"\w* \w as|strong="H5869"\w* \w the|strong="H5437"\w* apple \w of|strong="H5869"\w* \w his|strong="H5437"\w* \w eye|strong="H5869"\w*. +\q1 +\v 11 \w As|strong="H7064"\w* \w an|strong="H3947"\w* \w eagle|strong="H5404"\w* \w that|strong="H5404"\w* \w stirs|strong="H5782"\w* \w up|strong="H5375"\w* \w her|strong="H3947"\w* \w nest|strong="H7064"\w*, +\q2 \w that|strong="H5404"\w* flutters \w over|strong="H5921"\w* \w her|strong="H3947"\w* \w young|strong="H1469"\w*, +\q1 \w he|strong="H5921"\w* \w spread|strong="H6566"\w* \w abroad|strong="H6566"\w* \w his|strong="H5375"\w* \w wings|strong="H3671"\w*, +\q2 \w he|strong="H5921"\w* \w took|strong="H3947"\w* \w them|strong="H5921"\w*, +\q2 \w he|strong="H5921"\w* \w bore|strong="H5375"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w his|strong="H5375"\w* feathers. +\q1 +\v 12 \w Yahweh|strong="H3068"\w* alone \w led|strong="H5148"\w* \w him|strong="H5973"\w*. +\q2 \w There|strong="H3068"\w* \w was|strong="H3068"\w* no \w foreign|strong="H5236"\w* \w god|strong="H3068"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*. +\q1 +\v 13 \w He|strong="H5921"\w* made \w him|strong="H5921"\w* \w ride|strong="H7392"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w of|strong="H7704"\w* \w the|strong="H5921"\w* earth. +\q2 \w He|strong="H5921"\w* ate \w the|strong="H5921"\w* \w increase|strong="H8570"\w* \w of|strong="H7704"\w* \w the|strong="H5921"\w* \w field|strong="H7704"\w*. +\q1 \w He|strong="H5921"\w* caused \w him|strong="H5921"\w* \w to|strong="H5921"\w* \w suck|strong="H3243"\w* \w honey|strong="H1706"\w* \w out|strong="H5921"\w* \w of|strong="H7704"\w* \w the|strong="H5921"\w* \w rock|strong="H6697"\w*, +\q2 \w oil|strong="H8081"\w* \w out|strong="H5921"\w* \w of|strong="H7704"\w* \w the|strong="H5921"\w* \w flinty|strong="H2496"\w* \w rock|strong="H6697"\w*; +\q1 +\v 14 \w butter|strong="H2529"\w* \w from|strong="H1121"\w* \w the|strong="H5973"\w* \w herd|strong="H1241"\w*, \w and|strong="H1121"\w* \w milk|strong="H2461"\w* \w from|strong="H1121"\w* \w the|strong="H5973"\w* \w flock|strong="H6629"\w*, +\q2 \w with|strong="H5973"\w* \w fat|strong="H2459"\w* \w of|strong="H1121"\w* \w lambs|strong="H3733"\w*, +\q2 \w rams|strong="H3733"\w* \w of|strong="H1121"\w* \w the|strong="H5973"\w* \w breed|strong="H1121"\w* \w of|strong="H1121"\w* \w Bashan|strong="H1316"\w*, \w and|strong="H1121"\w* \w goats|strong="H6260"\w*, +\q2 \w with|strong="H5973"\w* \w the|strong="H5973"\w* \w finest|strong="H2459"\w* \w of|strong="H1121"\w* \w the|strong="H5973"\w* \w wheat|strong="H2406"\w*. +\q2 \w From|strong="H1121"\w* \w the|strong="H5973"\w* \w blood|strong="H1818"\w* \w of|strong="H1121"\w* \w the|strong="H5973"\w* \w grape|strong="H6025"\w*, \w you|strong="H5973"\w* \w drank|strong="H8354"\w* \w wine|strong="H2561"\w*. +\q1 +\v 15 But \w Jeshurun|strong="H3484"\w* \w grew|strong="H8080"\w* \w fat|strong="H8080"\w*, \w and|strong="H6213"\w* \w kicked|strong="H1163"\w*. +\q2 \w You|strong="H6213"\w* \w have|strong="H5203"\w* \w grown|strong="H8080"\w* \w fat|strong="H8080"\w*. +\q2 \w You|strong="H6213"\w* \w have|strong="H5203"\w* \w grown|strong="H8080"\w* \w thick|strong="H5666"\w*. +\q2 \w You|strong="H6213"\w* \w have|strong="H5203"\w* \w become|strong="H6213"\w* \w sleek|strong="H3780"\w*. +\q1 \w Then|strong="H6213"\w* \w he|strong="H6213"\w* \w abandoned|strong="H5203"\w* \w God|strong="H6697"\w* \w who|strong="H6697"\w* \w made|strong="H6213"\w* \w him|strong="H6213"\w*, +\q2 \w and|strong="H6213"\w* rejected \w the|strong="H6213"\w* \w Rock|strong="H6697"\w* \w of|strong="H6697"\w* \w his|strong="H6213"\w* \w salvation|strong="H3444"\w*. +\q1 +\v 16 \w They|strong="H8441"\w* moved \w him|strong="H7065"\w* \w to|strong="H8441"\w* \w jealousy|strong="H7065"\w* \w with|strong="H7065"\w* \w strange|strong="H2114"\w* gods. +\q2 \w They|strong="H8441"\w* \w provoked|strong="H3707"\w* \w him|strong="H7065"\w* \w to|strong="H8441"\w* \w anger|strong="H3707"\w* \w with|strong="H7065"\w* \w abominations|strong="H8441"\w*. +\q1 +\v 17 \w They|strong="H3808"\w* \w sacrificed|strong="H2076"\w* \w to|strong="H3045"\w* \w demons|strong="H7700"\w*, \w not|strong="H3808"\w* \w God|strong="H3808"\w*, +\q2 \w to|strong="H3045"\w* gods \w that|strong="H3045"\w* \w they|strong="H3808"\w* didn’t \w know|strong="H3045"\w*, +\q2 \w to|strong="H3045"\w* \w new|strong="H2319"\w* gods \w that|strong="H3045"\w* came up recently, +\q2 which \w your|strong="H3045"\w* fathers didn’t \w dread|strong="H8175"\w*. +\q1 +\v 18 \w Of|strong="H3205"\w* \w the|strong="H3205"\w* \w Rock|strong="H6697"\w* \w who|strong="H3205"\w* \w became|strong="H3205"\w* \w your|strong="H7911"\w* \w father|strong="H3205"\w*, \w you|strong="H3205"\w* \w are|strong="H6697"\w* \w unmindful|strong="H7876"\w*, +\q2 \w and|strong="H6697"\w* \w have|strong="H3205"\w* \w forgotten|strong="H7911"\w* \w God|strong="H6697"\w* \w who|strong="H3205"\w* \w gave|strong="H3205"\w* \w you|strong="H3205"\w* \w birth|strong="H3205"\w*. +\q1 +\v 19 \w Yahweh|strong="H3068"\w* \w saw|strong="H7200"\w* \w and|strong="H1121"\w* \w abhorred|strong="H5006"\w*, +\q2 \w because|strong="H3068"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w provocation|strong="H3708"\w* \w of|strong="H1121"\w* \w his|strong="H3068"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H3068"\w* \w daughters|strong="H1323"\w*. +\q1 +\v 20 \w He|strong="H3588"\w* said, “\w I|strong="H3588"\w* \w will|strong="H1121"\w* \w hide|strong="H5641"\w* \w my|strong="H7200"\w* \w face|strong="H6440"\w* \w from|strong="H6440"\w* \w them|strong="H1992"\w*. +\q2 \w I|strong="H3588"\w* \w will|strong="H1121"\w* \w see|strong="H7200"\w* \w what|strong="H4100"\w* \w their|strong="H6440"\w* \w end|strong="H4100"\w* \w will|strong="H1121"\w* \w be|strong="H3808"\w*; +\q1 \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w a|strong="H3068"\w* \w very|strong="H1992"\w* \w perverse|strong="H8419"\w* \w generation|strong="H1755"\w*, +\q2 \w children|strong="H1121"\w* \w in|strong="H6440"\w* \w whom|strong="H1992"\w* \w is|strong="H4100"\w* \w no|strong="H3808"\w* faithfulness. +\q1 +\v 21 \w They|strong="H1992"\w* \w have|strong="H5971"\w* moved \w me|strong="H3707"\w* \w to|strong="H5971"\w* \w jealousy|strong="H7065"\w* \w with|strong="H5971"\w* \w that|strong="H5971"\w* \w which|strong="H1471"\w* \w is|strong="H5971"\w* \w not|strong="H3808"\w* \w God|strong="H3808"\w*. +\q2 \w They|strong="H1992"\w* \w have|strong="H5971"\w* \w provoked|strong="H3707"\w* \w me|strong="H3707"\w* \w to|strong="H5971"\w* \w anger|strong="H3707"\w* \w with|strong="H5971"\w* \w their|strong="H1992"\w* \w vanities|strong="H1892"\w*. +\q1 \w I|strong="H3808"\w* \w will|strong="H1471"\w* move \w them|strong="H1992"\w* \w to|strong="H5971"\w* \w jealousy|strong="H7065"\w* \w with|strong="H5971"\w* \w those|strong="H1992"\w* \w who|strong="H5971"\w* \w are|strong="H1992"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w*. +\q2 \w I|strong="H3808"\w* \w will|strong="H1471"\w* \w provoke|strong="H3707"\w* \w them|strong="H1992"\w* \w to|strong="H5971"\w* \w anger|strong="H3707"\w* \w with|strong="H5971"\w* \w a|strong="H3068"\w* \w foolish|strong="H5036"\w* \w nation|strong="H1471"\w*. +\q1 +\v 22 \w For|strong="H3588"\w* \w a|strong="H3068"\w* \w fire|strong="H3857"\w* \w is|strong="H3588"\w* \w kindled|strong="H6919"\w* \w in|strong="H7585"\w* \w my|strong="H3588"\w* anger, +\q2 \w that|strong="H3588"\w* \w burns|strong="H3344"\w* \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w lowest|strong="H8482"\w* \w Sheol|strong="H7585"\w*,\f + \fr 32:22 \ft Sheol is the place of the dead.\f* +\q2 devours \w the|strong="H3588"\w* earth \w with|strong="H2022"\w* \w its|strong="H3588"\w* \w increase|strong="H2981"\w*, +\q2 \w and|strong="H2022"\w* \w sets|strong="H3857"\w* \w the|strong="H3588"\w* \w foundations|strong="H4146"\w* \w of|strong="H2022"\w* \w the|strong="H3588"\w* \w mountains|strong="H2022"\w* \w on|strong="H2022"\w* \w fire|strong="H3857"\w*. +\b +\q1 +\v 23 “\w I|strong="H5921"\w* \w will|strong="H5595"\w* \w heap|strong="H5595"\w* \w evils|strong="H7451"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*. +\q2 \w I|strong="H5921"\w* \w will|strong="H5595"\w* \w spend|strong="H3615"\w* \w my|strong="H5921"\w* \w arrows|strong="H2671"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*. +\q1 +\v 24 They \w shall|strong="H6083"\w* be \w wasted|strong="H4198"\w* \w with|strong="H5973"\w* \w hunger|strong="H7458"\w*, +\q2 \w and|strong="H7971"\w* \w devoured|strong="H3898"\w* \w with|strong="H5973"\w* \w burning|strong="H2534"\w* \w heat|strong="H2534"\w* +\q2 \w and|strong="H7971"\w* \w bitter|strong="H4815"\w* \w destruction|strong="H6986"\w*. +\q1 \w I|strong="H7971"\w* \w will|strong="H2534"\w* \w send|strong="H7971"\w* \w the|strong="H7971"\w* \w teeth|strong="H8127"\w* \w of|strong="H2534"\w* animals \w on|strong="H7971"\w* \w them|strong="H7971"\w*, +\q2 \w with|strong="H5973"\w* \w the|strong="H7971"\w* \w venom|strong="H2534"\w* \w of|strong="H2534"\w* vipers \w that|strong="H6986"\w* glide \w in|strong="H7458"\w* \w the|strong="H7971"\w* \w dust|strong="H6083"\w*. +\q1 +\v 25 \w Outside|strong="H2351"\w* \w the|strong="H1571"\w* \w sword|strong="H2719"\w* \w will|strong="H1571"\w* \w bereave|strong="H7921"\w*, +\q2 \w and|strong="H2719"\w* \w in|strong="H1571"\w* \w the|strong="H1571"\w* \w rooms|strong="H2315"\w*, +\q2 terror \w on|strong="H5973"\w* \w both|strong="H1571"\w* \w young|strong="H7921"\w* man \w and|strong="H2719"\w* \w virgin|strong="H1330"\w*, +\q2 \w the|strong="H1571"\w* \w nursing|strong="H3243"\w* \w infant|strong="H3243"\w* \w with|strong="H5973"\w* \w the|strong="H1571"\w* \w gray-haired|strong="H7872"\w* man. +\q1 +\v 26 I said that I would scatter them afar. +\q2 I would \w make|strong="H7673"\w* their \w memory|strong="H2143"\w* \w to|strong="H7673"\w* \w cease|strong="H7673"\w* \w from|strong="H7673"\w* among men; +\q1 +\v 27 \w were|strong="H3027"\w* \w it|strong="H2063"\w* \w not|strong="H3808"\w* \w that|strong="H3605"\w* \w I|strong="H3808"\w* \w feared|strong="H1481"\w* \w the|strong="H3605"\w* \w provocation|strong="H3708"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w enemy|strong="H6862"\w*, +\q2 \w lest|strong="H6435"\w* \w their|strong="H3605"\w* \w adversaries|strong="H6862"\w* \w should|strong="H3068"\w* judge wrongly, +\q2 \w lest|strong="H6435"\w* \w they|strong="H3068"\w* \w should|strong="H3068"\w* say, ‘\w Our|strong="H3068"\w* \w hand|strong="H3027"\w* \w is|strong="H3068"\w* \w exalted|strong="H7311"\w*; +\q2 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w done|strong="H6466"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w*.’” +\b +\q1 +\v 28 \w For|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* void \w of|strong="H6098"\w* \w counsel|strong="H6098"\w*. +\q2 \w There|strong="H1992"\w* \w is|strong="H8394"\w* no \w understanding|strong="H8394"\w* \w in|strong="H1471"\w* \w them|strong="H1992"\w*. +\q1 +\v 29 \w Oh|strong="H3863"\w* \w that|strong="H3863"\w* they were \w wise|strong="H2449"\w*, \w that|strong="H3863"\w* they \w understood|strong="H7919"\w* \w this|strong="H2063"\w*, +\q2 \w that|strong="H3863"\w* they \w would|strong="H3863"\w* \w consider|strong="H7919"\w* their latter end! +\q1 +\v 30 \w How|strong="H3588"\w* could \w one|strong="H3808"\w* \w chase|strong="H7291"\w* \w a|strong="H3068"\w* \w thousand|strong="H7233"\w*, +\q2 \w and|strong="H3068"\w* \w two|strong="H8147"\w* \w put|strong="H3068"\w* \w ten|strong="H7233"\w* \w thousand|strong="H7233"\w* \w to|strong="H3068"\w* \w flight|strong="H5127"\w*, +\q1 \w unless|strong="H3588"\w* \w their|strong="H3068"\w* \w Rock|strong="H6697"\w* \w had|strong="H3068"\w* \w sold|strong="H4376"\w* \w them|strong="H8147"\w*, +\q2 \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w delivered|strong="H5462"\w* \w them|strong="H8147"\w* \w up|strong="H5462"\w*? +\q1 +\v 31 \w For|strong="H3588"\w* \w their|strong="H3588"\w* \w rock|strong="H6697"\w* \w is|strong="H3808"\w* \w not|strong="H3808"\w* \w as|strong="H3588"\w* \w our|strong="H3588"\w* \w Rock|strong="H6697"\w*, +\q2 \w even|strong="H3588"\w* \w our|strong="H3588"\w* enemies themselves \w concede|strong="H6414"\w*. +\q1 +\v 32 \w For|strong="H3588"\w* \w their|strong="H3588"\w* \w vine|strong="H1612"\w* \w is|strong="H6017"\w* \w of|strong="H1612"\w* \w the|strong="H3588"\w* \w vine|strong="H1612"\w* \w of|strong="H1612"\w* \w Sodom|strong="H5467"\w*, +\q2 \w of|strong="H1612"\w* \w the|strong="H3588"\w* \w fields|strong="H7709"\w* \w of|strong="H1612"\w* \w Gomorrah|strong="H6017"\w*. +\q1 \w Their|strong="H3588"\w* \w grapes|strong="H6025"\w* \w are|strong="H6025"\w* \w poison|strong="H7219"\w* \w grapes|strong="H6025"\w*. +\q2 \w Their|strong="H3588"\w* clusters \w are|strong="H6025"\w* \w bitter|strong="H4846"\w*. +\q1 +\v 33 Their \w wine|strong="H3196"\w* \w is|strong="H2534"\w* the \w poison|strong="H2534"\w* \w of|strong="H2534"\w* \w serpents|strong="H8577"\w*, +\q2 the cruel \w venom|strong="H2534"\w* \w of|strong="H2534"\w* \w asps|strong="H6620"\w*. +\b +\q1 +\v 34 “Isn’t \w this|strong="H1931"\w* \w laid|strong="H3647"\w* \w up|strong="H2856"\w* \w in|strong="H3808"\w* \w store|strong="H3647"\w* \w with|strong="H5978"\w* \w me|strong="H5978"\w*, +\q2 \w sealed|strong="H2856"\w* \w up|strong="H2856"\w* \w among|strong="H3808"\w* \w my|strong="H3808"\w* treasures? +\q1 +\v 35 \w Vengeance|strong="H5359"\w* \w is|strong="H3117"\w* mine, \w and|strong="H3117"\w* recompense, +\q2 \w at|strong="H3117"\w* \w the|strong="H3588"\w* \w time|strong="H6256"\w* \w when|strong="H3588"\w* \w their|strong="H3588"\w* \w foot|strong="H7272"\w* slides, +\q1 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w their|strong="H3588"\w* calamity \w is|strong="H3117"\w* \w at|strong="H3117"\w* \w hand|strong="H7138"\w*. +\q2 \w Their|strong="H3588"\w* doom rushes \w at|strong="H3117"\w* \w them|strong="H3117"\w*.” +\b +\q1 +\v 36 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w judge|strong="H1777"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*, +\q2 \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w compassion|strong="H5162"\w* \w on|strong="H5921"\w* \w his|strong="H3068"\w* \w servants|strong="H5650"\w*, +\q1 \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w sees|strong="H7200"\w* \w that|strong="H3588"\w* \w their|strong="H3068"\w* \w power|strong="H3027"\w* \w is|strong="H3068"\w* \w gone|strong="H3068"\w*, +\q2 \w that|strong="H3588"\w* \w there|strong="H3068"\w* \w is|strong="H3068"\w* \w no|strong="H7200"\w* \w one|strong="H3588"\w* remaining, \w shut|strong="H6113"\w* \w up|strong="H6113"\w* \w or|strong="H7200"\w* \w left|strong="H5800"\w* \w at|strong="H5921"\w* large. +\q1 +\v 37 He will say, “Where \w are|strong="H6697"\w* their gods, +\q2 \w the|strong="H2620"\w* \w rock|strong="H6697"\w* \w in|strong="H6697"\w* which they took \w refuge|strong="H2620"\w*, +\q1 +\v 38 \w which|strong="H3196"\w* ate \w the|strong="H5921"\w* \w fat|strong="H2459"\w* \w of|strong="H2077"\w* \w their|strong="H5921"\w* \w sacrifices|strong="H2077"\w*, +\q2 \w and|strong="H6965"\w* \w drank|strong="H8354"\w* \w the|strong="H5921"\w* \w wine|strong="H3196"\w* \w of|strong="H2077"\w* \w their|strong="H5921"\w* \w drink|strong="H8354"\w* \w offering|strong="H5257"\w*? +\q1 \w Let|strong="H1961"\w* \w them|strong="H5921"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H6965"\w* \w help|strong="H5826"\w* \w you|strong="H5921"\w*! +\q2 \w Let|strong="H1961"\w* \w them|strong="H5921"\w* \w be|strong="H1961"\w* \w your|strong="H5921"\w* \w protection|strong="H5643"\w*. +\b +\q1 +\v 39 “\w See|strong="H7200"\w* \w now|strong="H6258"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* myself am \w he|strong="H1931"\w*. +\q2 \w There|strong="H6258"\w* \w is|strong="H1931"\w* \w no|strong="H7200"\w* \w god|strong="H3027"\w* \w with|strong="H3027"\w* \w me|strong="H5978"\w*. +\q1 \w I|strong="H3588"\w* \w kill|strong="H4191"\w* \w and|strong="H3027"\w* \w I|strong="H3588"\w* \w make|strong="H7200"\w* \w alive|strong="H2421"\w*. +\q2 \w I|strong="H3588"\w* \w wound|strong="H4272"\w* \w and|strong="H3027"\w* \w I|strong="H3588"\w* \w heal|strong="H7495"\w*. +\q2 \w There|strong="H6258"\w* \w is|strong="H1931"\w* \w no|strong="H7200"\w* \w one|strong="H2421"\w* \w who|strong="H1931"\w* \w can|strong="H7200"\w* \w deliver|strong="H5337"\w* \w out|strong="H7200"\w* \w of|strong="H3027"\w* \w my|strong="H7200"\w* \w hand|strong="H3027"\w*. +\q1 +\v 40 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w my|strong="H5375"\w* \w hand|strong="H3027"\w* \w to|strong="H3027"\w* \w heaven|strong="H8064"\w* \w and|strong="H8064"\w* declare, +\q2 \w as|strong="H3588"\w* \w I|strong="H3588"\w* \w live|strong="H2416"\w* \w forever|strong="H5769"\w*, +\q1 +\v 41 if \w I|strong="H6862"\w* \w sharpen|strong="H8150"\w* \w my|strong="H7725"\w* \w glittering|strong="H1300"\w* \w sword|strong="H2719"\w*, +\q2 \w my|strong="H7725"\w* \w hand|strong="H3027"\w* grasps \w it|strong="H7725"\w* \w in|strong="H7725"\w* \w judgment|strong="H4941"\w*; +\q1 \w I|strong="H6862"\w* \w will|strong="H2719"\w* \w take|strong="H7725"\w* \w vengeance|strong="H5359"\w* \w on|strong="H3027"\w* \w my|strong="H7725"\w* \w adversaries|strong="H6862"\w*, +\q2 \w and|strong="H7725"\w* \w will|strong="H2719"\w* \w repay|strong="H7999"\w* \w those|strong="H8130"\w* \w who|strong="H6862"\w* \w hate|strong="H8130"\w* \w me|strong="H7725"\w*. +\q1 +\v 42 \w I|strong="H1320"\w* \w will|strong="H2719"\w* \w make|strong="H7937"\w* \w my|strong="H1320"\w* \w arrows|strong="H2671"\w* \w drunk|strong="H7937"\w* \w with|strong="H1320"\w* \w blood|strong="H1818"\w*. +\q2 \w My|strong="H1320"\w* \w sword|strong="H2719"\w* \w shall|strong="H2719"\w* devour \w flesh|strong="H1320"\w* \w with|strong="H1320"\w* \w the|strong="H7218"\w* \w blood|strong="H1818"\w* \w of|strong="H7218"\w* \w the|strong="H7218"\w* \w slain|strong="H2491"\w* \w and|strong="H7218"\w* \w the|strong="H7218"\w* \w captives|strong="H7633"\w*, +\q2 \w from|strong="H2719"\w* \w the|strong="H7218"\w* \w head|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H7218"\w* \w leaders|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H7218"\w* enemy.” +\b +\q1 +\v 43 \w Rejoice|strong="H7442"\w*, \w you|strong="H3588"\w* \w nations|strong="H1471"\w*, \w with|strong="H5971"\w* \w his|strong="H7725"\w* \w people|strong="H5971"\w*, +\q2 \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H1471"\w* \w avenge|strong="H5358"\w* \w the|strong="H3588"\w* \w blood|strong="H1818"\w* \w of|strong="H5650"\w* \w his|strong="H7725"\w* \w servants|strong="H5650"\w*. +\q2 \w He|strong="H3588"\w* \w will|strong="H1471"\w* \w take|strong="H7725"\w* \w vengeance|strong="H5359"\w* \w on|strong="H7725"\w* \w his|strong="H7725"\w* \w adversaries|strong="H6862"\w*, +\q2 \w and|strong="H7725"\w* \w will|strong="H1471"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H3588"\w* \w his|strong="H7725"\w* land \w and|strong="H7725"\w* \w for|strong="H3588"\w* \w his|strong="H7725"\w* \w people|strong="H5971"\w*.\f + \fr 32:43 \ft For this verse, LXX reads: Rejoice, you heavens, with him, and let all the angels of God worship him; rejoice you Gentiles, with his people, and let all the sons of God strengthen themselves in him; for he will avenge the blood of his sons, and he will give vengeance, and recompense justice to his enemies, and will reward them that hate him; and the Lord shall purge the land of his people.\f* +\p +\v 44 \w Moses|strong="H4872"\w* \w came|strong="H5971"\w* \w and|strong="H1121"\w* \w spoke|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H1121"\w* \w this|strong="H2063"\w* \w song|strong="H7892"\w* \w in|strong="H1696"\w* \w the|strong="H3605"\w* ears \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w he|strong="H1931"\w* \w and|strong="H1121"\w* \w Joshua|strong="H1954"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w*. +\v 45 \w Moses|strong="H4872"\w* \w finished|strong="H3615"\w* \w reciting|strong="H1696"\w* \w all|strong="H3605"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*. +\v 46 \w He|strong="H3117"\w* \w said|strong="H1697"\w* \w to|strong="H6213"\w* \w them|strong="H6213"\w*, “\w Set|strong="H7760"\w* \w your|strong="H3605"\w* \w heart|strong="H3824"\w* \w to|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w which|strong="H1697"\w* \w I|strong="H3117"\w* \w testify|strong="H5749"\w* \w to|strong="H6213"\w* \w you|strong="H6680"\w* \w today|strong="H3117"\w*, \w which|strong="H1697"\w* \w you|strong="H6680"\w* \w shall|strong="H1121"\w* \w command|strong="H6680"\w* \w your|strong="H3605"\w* \w children|strong="H1121"\w* \w to|strong="H6213"\w* \w observe|strong="H8104"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H1121"\w* \w this|strong="H2063"\w* \w law|strong="H8451"\w*. +\v 47 \w For|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H2088"\w* \w no|strong="H3808"\w* \w vain|strong="H7386"\w* \w thing|strong="H1697"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*, \w because|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H2088"\w* \w your|strong="H5921"\w* \w life|strong="H2416"\w*, \w and|strong="H3117"\w* \w through|strong="H5674"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w you|strong="H3588"\w* \w shall|strong="H3117"\w* prolong \w your|strong="H5921"\w* \w days|strong="H3117"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land, \w where|strong="H8033"\w* \w you|strong="H3588"\w* \w go|strong="H5674"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w* \w to|strong="H5921"\w* \w possess|strong="H3423"\w* \w it|strong="H1931"\w*.” +\p +\v 48 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w that|strong="H3117"\w* \w same|strong="H6106"\w* \w day|strong="H3117"\w*, \w saying|strong="H1696"\w*, +\v 49 “\w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w into|strong="H5927"\w* \w this|strong="H2088"\w* \w mountain|strong="H2022"\w* \w of|strong="H1121"\w* \w Abarim|strong="H5682"\w*, \w to|strong="H3478"\w* \w Mount|strong="H2022"\w* \w Nebo|strong="H5015"\w*, \w which|strong="H3478"\w* \w is|strong="H2088"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w*, \w that|strong="H7200"\w* \w is|strong="H2088"\w* \w across|strong="H5921"\w* \w from|strong="H6440"\w* \w Jericho|strong="H3405"\w*; \w and|strong="H1121"\w* \w see|strong="H7200"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*, \w which|strong="H3478"\w* \w I|strong="H5414"\w* \w give|strong="H5414"\w* \w to|strong="H3478"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* possession. +\v 50 \w Die|strong="H4191"\w* \w on|strong="H5927"\w* \w the|strong="H5927"\w* \w mountain|strong="H2022"\w* \w where|strong="H8033"\w* \w you|strong="H2022"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w*, \w and|strong="H5971"\w* \w be|strong="H4191"\w* gathered \w to|strong="H4191"\w* \w your|strong="H5927"\w* \w people|strong="H5971"\w*, \w as|strong="H5927"\w* Aaron \w your|strong="H5927"\w* brother \w died|strong="H4191"\w* \w on|strong="H5927"\w* \w Mount|strong="H2022"\w* \w Hor|strong="H2023"\w*, \w and|strong="H5971"\w* \w was|strong="H2022"\w* gathered \w to|strong="H4191"\w* \w his|strong="H4191"\w* \w people|strong="H5971"\w*; +\v 51 \w because|strong="H5921"\w* \w you|strong="H5921"\w* \w trespassed|strong="H4603"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w* \w among|strong="H8432"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w of|strong="H1121"\w* Meribah \w of|strong="H1121"\w* \w Kadesh|strong="H6946"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w* \w of|strong="H1121"\w* \w Zin|strong="H6790"\w*; \w because|strong="H5921"\w* \w you|strong="H5921"\w* didn’t uphold \w my|strong="H5921"\w* \w holiness|strong="H6942"\w* \w among|strong="H8432"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 52 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H1121"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* land \w from|strong="H3478"\w* \w a|strong="H3068"\w* distance; \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w go|strong="H3478"\w* \w there|strong="H8033"\w* \w into|strong="H5414"\w* \w the|strong="H7200"\w* land \w which|strong="H8033"\w* \w I|strong="H3588"\w* \w give|strong="H5414"\w* \w the|strong="H7200"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*.” +\c 33 +\p +\v 1 \w This|strong="H2063"\w* \w is|strong="H3478"\w* \w the|strong="H6440"\w* \w blessing|strong="H1293"\w* \w with|strong="H6440"\w* \w which|strong="H3478"\w* \w Moses|strong="H4872"\w* \w the|strong="H6440"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* God \w blessed|strong="H1288"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w before|strong="H6440"\w* \w his|strong="H6440"\w* \w death|strong="H4194"\w*. +\v 2 \w He|strong="H3068"\w* said, +\q1 “\w Yahweh|strong="H3068"\w* \w came|strong="H3068"\w* \w from|strong="H3068"\w* \w Sinai|strong="H5514"\w*, +\q2 \w and|strong="H3068"\w* \w rose|strong="H2224"\w* \w from|strong="H3068"\w* \w Seir|strong="H8165"\w* \w to|strong="H3068"\w* \w them|strong="H3068"\w*. +\q1 \w He|strong="H3068"\w* \w shone|strong="H3313"\w* \w from|strong="H3068"\w* \w Mount|strong="H2022"\w* \w Paran|strong="H6290"\w*. +\q2 \w He|strong="H3068"\w* \w came|strong="H3068"\w* \w from|strong="H3068"\w* \w the|strong="H3068"\w* \w ten|strong="H7233"\w* \w thousands|strong="H7233"\w* \w of|strong="H3068"\w* \w holy|strong="H6944"\w* \w ones|strong="H6944"\w*. +\q2 \w At|strong="H3068"\w* \w his|strong="H3068"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w was|strong="H3068"\w* \w a|strong="H3068"\w* fiery law \w for|strong="H3068"\w* \w them|strong="H3068"\w*.\f + \fr 33:2 \ft another manuscript reads “He came with myriads of holy ones from the south, from his mountain slopes.”\f* +\q1 +\v 3 Yes, \w he|strong="H3605"\w* \w loves|strong="H2245"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*. +\q2 \w All|strong="H3605"\w* \w his|strong="H3605"\w* \w saints|strong="H6918"\w* \w are|strong="H1992"\w* \w in|strong="H3027"\w* \w your|strong="H3605"\w* \w hand|strong="H3027"\w*. +\q2 \w They|strong="H1992"\w* sat \w down|strong="H3027"\w* \w at|strong="H5971"\w* \w your|strong="H3605"\w* \w feet|strong="H7272"\w*. +\q2 \w Each|strong="H3605"\w* \w receives|strong="H5375"\w* \w your|strong="H3605"\w* \w words|strong="H1703"\w*. +\q1 +\v 4 \w Moses|strong="H4872"\w* \w commanded|strong="H6680"\w* us \w a|strong="H3068"\w* \w law|strong="H8451"\w*, +\q2 an \w inheritance|strong="H4181"\w* \w for|strong="H4872"\w* \w the|strong="H6680"\w* \w assembly|strong="H6952"\w* \w of|strong="H8451"\w* \w Jacob|strong="H3290"\w*. +\q1 +\v 5 \w He|strong="H3478"\w* \w was|strong="H1961"\w* \w king|strong="H4428"\w* \w in|strong="H3478"\w* \w Jeshurun|strong="H3484"\w*, +\q2 \w when|strong="H1961"\w* \w the|strong="H1961"\w* \w heads|strong="H7218"\w* \w of|strong="H4428"\w* \w the|strong="H1961"\w* \w people|strong="H5971"\w* \w were|strong="H3478"\w* \w gathered|strong="H3478"\w*, +\q2 \w all|strong="H3162"\w* \w the|strong="H1961"\w* \w tribes|strong="H7626"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w together|strong="H3162"\w*. +\b +\q1 +\v 6 “\w Let|strong="H1961"\w* \w Reuben|strong="H7205"\w* \w live|strong="H2421"\w*, \w and|strong="H4191"\w* \w not|strong="H1961"\w* \w die|strong="H4191"\w*; +\q2 Nor \w let|strong="H1961"\w* \w his|strong="H1961"\w* \w men|strong="H4962"\w* \w be|strong="H1961"\w* \w few|strong="H4557"\w*.” +\p +\v 7 \w This|strong="H2063"\w* \w is|strong="H3068"\w* \w for|strong="H3027"\w* \w Judah|strong="H3063"\w*. \w He|strong="H3068"\w* \w said|strong="H8085"\w*, +\q1 “\w Hear|strong="H8085"\w*, \w Yahweh|strong="H3068"\w*, \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w*. +\q2 \w Bring|strong="H1961"\w* \w him|strong="H3027"\w* \w in|strong="H3068"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*. +\q1 \w With|strong="H3068"\w* \w his|strong="H3068"\w* \w hands|strong="H3027"\w* \w he|strong="H3068"\w* contended \w for|strong="H3027"\w* \w himself|strong="H3027"\w*. +\q2 \w You|strong="H3027"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w help|strong="H5828"\w* \w against|strong="H3027"\w* \w his|strong="H3068"\w* \w adversaries|strong="H6862"\w*.” +\p +\v 8 \w About|strong="H5921"\w* \w Levi|strong="H3878"\w* \w he|strong="H5921"\w* said, +\q1 “\w Your|strong="H5921"\w* \w Thummim|strong="H8550"\w* \w and|strong="H4325"\w* \w your|strong="H5921"\w* Urim \w are|strong="H4325"\w* \w with|strong="H5921"\w* \w your|strong="H5921"\w* \w godly|strong="H2623"\w* \w one|strong="H2623"\w*, +\q2 whom \w you|strong="H5921"\w* \w proved|strong="H5254"\w* \w at|strong="H5921"\w* \w Massah|strong="H4532"\w*, +\q2 \w with|strong="H5921"\w* whom \w you|strong="H5921"\w* \w contended|strong="H7378"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w of|strong="H4325"\w* \w Meribah|strong="H4809"\w*. +\q1 +\v 9 \w He|strong="H3588"\w* said \w of|strong="H1121"\w* \w his|strong="H8104"\w* \w father|strong="H1121"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w his|strong="H8104"\w* mother, ‘\w I|strong="H3588"\w* \w have|strong="H3045"\w* \w not|strong="H3808"\w* \w seen|strong="H7200"\w* \w him|strong="H7200"\w*.’ +\q2 \w He|strong="H3588"\w* didn’t \w acknowledge|strong="H3045"\w* \w his|strong="H8104"\w* \w brothers|strong="H1121"\w*, +\q2 \w nor|strong="H3808"\w* \w did|strong="H3808"\w* \w he|strong="H3588"\w* \w know|strong="H3045"\w* \w his|strong="H8104"\w* own \w children|strong="H1121"\w*; +\q1 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3045"\w* \w observed|strong="H8104"\w* \w your|strong="H8104"\w* word, +\q2 \w and|strong="H1121"\w* \w keep|strong="H8104"\w* \w your|strong="H8104"\w* \w covenant|strong="H1285"\w*. +\q1 +\v 10 \w They|strong="H5921"\w* \w shall|strong="H3478"\w* \w teach|strong="H3384"\w* \w Jacob|strong="H3290"\w* \w your|strong="H5921"\w* \w ordinances|strong="H4941"\w*, +\q2 \w and|strong="H3478"\w* \w Israel|strong="H3478"\w* \w your|strong="H5921"\w* \w law|strong="H8451"\w*. +\q1 \w They|strong="H5921"\w* \w shall|strong="H3478"\w* \w put|strong="H7760"\w* \w incense|strong="H6988"\w* \w before|strong="H5921"\w* \w you|strong="H5921"\w*, +\q2 \w and|strong="H3478"\w* \w whole|strong="H3632"\w* \w burnt|strong="H3632"\w* \w offering|strong="H3632"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w altar|strong="H4196"\w*. +\q1 +\v 11 \w Yahweh|strong="H3068"\w*, \w bless|strong="H1288"\w* \w his|strong="H3068"\w* skills. +\q2 \w Accept|strong="H7521"\w* \w the|strong="H3068"\w* \w work|strong="H6467"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w hands|strong="H3027"\w*. +\q1 \w Strike|strong="H4272"\w* \w through|strong="H3027"\w* \w the|strong="H3068"\w* \w hips|strong="H4975"\w* \w of|strong="H3068"\w* \w those|strong="H4480"\w* \w who|strong="H3068"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H4480"\w* \w him|strong="H3027"\w*, +\q2 \w of|strong="H3068"\w* \w those|strong="H4480"\w* \w who|strong="H3068"\w* \w hate|strong="H8130"\w* \w him|strong="H3027"\w*, \w that|strong="H3068"\w* \w they|strong="H3068"\w* \w not|strong="H6965"\w* \w rise|strong="H6965"\w* \w again|strong="H6965"\w*.” +\p +\v 12 \w About|strong="H5921"\w* \w Benjamin|strong="H1144"\w* \w he|strong="H3117"\w* said, +\q1 “\w The|strong="H3605"\w* \w beloved|strong="H3039"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w dwell|strong="H7931"\w* \w in|strong="H5921"\w* safety \w by|strong="H5921"\w* \w him|strong="H5921"\w*. +\q2 \w He|strong="H3117"\w* covers \w him|strong="H5921"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w* \w long|strong="H3117"\w*. +\q2 \w He|strong="H3117"\w* \w dwells|strong="H7931"\w* \w between|strong="H5921"\w* \w his|strong="H3605"\w* \w shoulders|strong="H3802"\w*.” +\p +\v 13 \w About|strong="H3130"\w* \w Joseph|strong="H3130"\w* \w he|strong="H3068"\w* said, +\q1 “\w His|strong="H3068"\w* \w land|strong="H8064"\w* \w is|strong="H3068"\w* \w blessed|strong="H1288"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w for|strong="H8478"\w* \w the|strong="H3068"\w* \w precious|strong="H4022"\w* \w things|strong="H4022"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w heavens|strong="H8064"\w*, \w for|strong="H8478"\w* \w the|strong="H3068"\w* \w dew|strong="H2919"\w*, +\q2 \w for|strong="H8478"\w* \w the|strong="H3068"\w* \w deep|strong="H8415"\w* \w that|strong="H3068"\w* couches \w beneath|strong="H8478"\w*, +\q1 +\v 14 \w for|strong="H8121"\w* \w the|strong="H8121"\w* \w precious|strong="H4022"\w* \w things|strong="H4022"\w* \w of|strong="H3391"\w* \w the|strong="H8121"\w* \w fruits|strong="H8393"\w* \w of|strong="H3391"\w* \w the|strong="H8121"\w* \w sun|strong="H8121"\w*, +\q2 \w for|strong="H8121"\w* \w the|strong="H8121"\w* \w precious|strong="H4022"\w* \w things|strong="H4022"\w* \w that|strong="H8121"\w* \w the|strong="H8121"\w* \w moon|strong="H3391"\w* can \w yield|strong="H8393"\w*, +\q1 +\v 15 \w for|strong="H7218"\w* \w the|strong="H7218"\w* \w best|strong="H7218"\w* \w things|strong="H4022"\w* \w of|strong="H7218"\w* \w the|strong="H7218"\w* \w ancient|strong="H5769"\w* \w mountains|strong="H2042"\w*, +\q2 \w for|strong="H7218"\w* \w the|strong="H7218"\w* \w precious|strong="H4022"\w* \w things|strong="H4022"\w* \w of|strong="H7218"\w* \w the|strong="H7218"\w* \w everlasting|strong="H5769"\w* \w hills|strong="H1389"\w*, +\q1 +\v 16 \w for|strong="H7218"\w* \w the|strong="H3130"\w* \w precious|strong="H4022"\w* \w things|strong="H4022"\w* \w of|strong="H7218"\w* \w the|strong="H3130"\w* earth \w and|strong="H7218"\w* \w its|strong="H4393"\w* \w fullness|strong="H4393"\w*, +\q2 \w the|strong="H3130"\w* \w good|strong="H7522"\w* \w will|strong="H7522"\w* \w of|strong="H7218"\w* \w him|strong="H3130"\w* who \w lived|strong="H7931"\w* \w in|strong="H7931"\w* \w the|strong="H3130"\w* \w bush|strong="H5572"\w*.\f + \fr 33:16 \ft i.e., the burning bush of Exodus 3:3-4.\f* +\q1 Let this come \w on|strong="H7931"\w* \w the|strong="H3130"\w* \w head|strong="H7218"\w* \w of|strong="H7218"\w* \w Joseph|strong="H3130"\w*, +\q2 \w on|strong="H7931"\w* \w the|strong="H3130"\w* \w crown|strong="H6936"\w* \w of|strong="H7218"\w* \w the|strong="H3130"\w* \w head|strong="H7218"\w* \w of|strong="H7218"\w* \w him|strong="H3130"\w* who \w was|strong="H3130"\w* \w separated|strong="H5139"\w* \w from|strong="H7931"\w* \w his|strong="H7931"\w* brothers. +\q1 +\v 17 \w Majesty|strong="H1926"\w* belongs \w to|strong="H5971"\w* \w the|strong="H5971"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1060"\w* \w his|strong="H4519"\w* \w herd|strong="H7794"\w*. +\q2 \w His|strong="H4519"\w* \w horns|strong="H7161"\w* \w are|strong="H1992"\w* \w the|strong="H5971"\w* \w horns|strong="H7161"\w* \w of|strong="H1060"\w* \w the|strong="H5971"\w* \w wild|strong="H7214"\w* \w ox|strong="H7794"\w*. +\q2 \w With|strong="H5971"\w* \w them|strong="H1992"\w* \w he|strong="H5971"\w* \w will|strong="H5971"\w* \w push|strong="H5055"\w* \w all|strong="H3162"\w* \w the|strong="H5971"\w* \w peoples|strong="H5971"\w* \w to|strong="H5971"\w* \w the|strong="H5971"\w* ends \w of|strong="H1060"\w* \w the|strong="H5971"\w* earth. +\q1 \w They|strong="H1992"\w* \w are|strong="H1992"\w* \w the|strong="H5971"\w* \w ten|strong="H7233"\w* \w thousands|strong="H7233"\w* \w of|strong="H1060"\w* Ephraim. +\q2 \w They|strong="H1992"\w* \w are|strong="H1992"\w* \w the|strong="H5971"\w* \w thousands|strong="H7233"\w* \w of|strong="H1060"\w* \w Manasseh|strong="H4519"\w*.” +\p +\v 18 \w About|strong="H3318"\w* \w Zebulun|strong="H2074"\w* \w he|strong="H3318"\w* \w said|strong="H3318"\w*, +\q1 “\w Rejoice|strong="H8055"\w*, \w Zebulun|strong="H2074"\w*, \w in|strong="H8055"\w* \w your|strong="H3318"\w* \w going|strong="H3318"\w* \w out|strong="H3318"\w*; +\q2 \w and|strong="H3318"\w* \w Issachar|strong="H3485"\w*, \w in|strong="H8055"\w* \w your|strong="H3318"\w* tents. +\q1 +\v 19 \w They|strong="H3588"\w* \w will|strong="H5971"\w* \w call|strong="H7121"\w* \w the|strong="H3588"\w* \w peoples|strong="H5971"\w* \w to|strong="H7121"\w* \w the|strong="H3588"\w* \w mountain|strong="H2022"\w*. +\q2 \w There|strong="H8033"\w* \w they|strong="H3588"\w* \w will|strong="H5971"\w* \w offer|strong="H2076"\w* \w sacrifices|strong="H2077"\w* \w of|strong="H2022"\w* \w righteousness|strong="H6664"\w*, +\q1 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H5971"\w* \w draw|strong="H5971"\w* \w out|strong="H8033"\w* \w the|strong="H3588"\w* \w abundance|strong="H8228"\w* \w of|strong="H2022"\w* \w the|strong="H3588"\w* \w seas|strong="H3220"\w*, +\q2 \w the|strong="H3588"\w* \w hidden|strong="H2934"\w* \w treasures|strong="H8226"\w* \w of|strong="H2022"\w* \w the|strong="H3588"\w* \w sand|strong="H2344"\w*.” +\p +\v 20 About \w Gad|strong="H1410"\w* \w he|strong="H1410"\w* said, +\q1 “\w He|strong="H1410"\w* who \w enlarges|strong="H7337"\w* \w Gad|strong="H1410"\w* \w is|strong="H2220"\w* \w blessed|strong="H1288"\w*. +\q2 \w He|strong="H1410"\w* \w dwells|strong="H7931"\w* as \w a|strong="H3068"\w* \w lioness|strong="H3833"\w*, +\q2 \w and|strong="H1410"\w* \w tears|strong="H2963"\w* \w the|strong="H1288"\w* \w arm|strong="H2220"\w* \w and|strong="H1410"\w* \w the|strong="H1288"\w* \w crown|strong="H6936"\w* \w of|strong="H2220"\w* \w the|strong="H1288"\w* \w head|strong="H6936"\w*. +\q1 +\v 21 \w He|strong="H3588"\w* \w provided|strong="H7200"\w* \w the|strong="H7200"\w* \w first|strong="H7225"\w* \w part|strong="H2513"\w* \w for|strong="H3588"\w* \w himself|strong="H6213"\w*, +\q2 \w for|strong="H3588"\w* \w the|strong="H7200"\w* \w lawgiver|strong="H2710"\w*’s \w portion|strong="H2513"\w* \w was|strong="H3068"\w* \w reserved|strong="H5603"\w* \w for|strong="H3588"\w* \w him|strong="H6213"\w*. +\q1 \w He|strong="H3588"\w* \w came|strong="H3478"\w* \w with|strong="H5973"\w* \w the|strong="H7200"\w* \w heads|strong="H7218"\w* \w of|strong="H3068"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w*. +\q2 \w He|strong="H3588"\w* \w executed|strong="H6213"\w* \w the|strong="H7200"\w* \w righteousness|strong="H6666"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w His|strong="H3068"\w* \w ordinances|strong="H4941"\w* \w with|strong="H5973"\w* \w Israel|strong="H3478"\w*.” +\p +\v 22 \w About|strong="H4480"\w* \w Dan|strong="H1835"\w* \w he|strong="H4480"\w* said, +\q1 “\w Dan|strong="H1835"\w* \w is|strong="H1835"\w* \w a|strong="H3068"\w* lion’s \w cub|strong="H1482"\w* +\q2 \w that|strong="H4480"\w* \w leaps|strong="H2187"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w Bashan|strong="H1316"\w*.” +\p +\v 23 About \w Naphtali|strong="H5321"\w* \w he|strong="H3068"\w* said, +\q1 “\w Naphtali|strong="H5321"\w*, \w satisfied|strong="H7649"\w* \w with|strong="H3068"\w* \w favor|strong="H7522"\w*, +\q2 \w full|strong="H4392"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w blessing|strong="H1293"\w*, +\q2 \w Possess|strong="H3423"\w* \w the|strong="H3068"\w* \w west|strong="H3220"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w south|strong="H1864"\w*.” +\p +\v 24 \w About|strong="H1961"\w* Asher \w he|strong="H7272"\w* said, +\q1 “Asher \w is|strong="H1121"\w* \w blessed|strong="H1288"\w* \w with|strong="H7521"\w* \w children|strong="H1121"\w*. +\q2 \w Let|strong="H1961"\w* \w him|strong="H1288"\w* \w be|strong="H1961"\w* \w acceptable|strong="H7521"\w* \w to|strong="H1961"\w* \w his|strong="H1288"\w* \w brothers|strong="H1121"\w*. +\q2 \w Let|strong="H1961"\w* \w him|strong="H1288"\w* \w dip|strong="H2881"\w* \w his|strong="H1288"\w* \w foot|strong="H7272"\w* \w in|strong="H1121"\w* \w oil|strong="H8081"\w*. +\q1 +\v 25 \w Your|strong="H3117"\w* bars \w will|strong="H3117"\w* \w be|strong="H3117"\w* \w iron|strong="H1270"\w* \w and|strong="H3117"\w* \w bronze|strong="H5178"\w*. +\q2 \w As|strong="H3117"\w* \w your|strong="H3117"\w* \w days|strong="H3117"\w*, so \w your|strong="H3117"\w* \w strength|strong="H1679"\w* \w will|strong="H3117"\w* \w be|strong="H3117"\w*. +\b +\q1 +\v 26 “There \w is|strong="H7834"\w* no one \w like|strong="H8064"\w* \w God|strong="H8064"\w*, \w Jeshurun|strong="H3484"\w*, +\q2 \w who|strong="H5828"\w* \w rides|strong="H7392"\w* \w on|strong="H7392"\w* \w the|strong="H7392"\w* \w heavens|strong="H8064"\w* \w for|strong="H8064"\w* \w your|strong="H8064"\w* \w help|strong="H5828"\w*, +\q2 \w in|strong="H8064"\w* \w his|strong="H7392"\w* \w excellency|strong="H1346"\w* \w on|strong="H7392"\w* \w the|strong="H7392"\w* \w skies|strong="H7834"\w*. +\q1 +\v 27 \w The|strong="H6440"\w* \w eternal|strong="H5769"\w* God \w is|strong="H6440"\w* \w your|strong="H6440"\w* \w dwelling|strong="H4585"\w* \w place|strong="H8478"\w*. +\q2 \w Underneath|strong="H8478"\w* \w are|strong="H6440"\w* \w the|strong="H6440"\w* \w everlasting|strong="H5769"\w* \w arms|strong="H2220"\w*. +\q1 \w He|strong="H6440"\w* thrust \w out|strong="H1644"\w* \w the|strong="H6440"\w* enemy \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, +\q2 \w and|strong="H5769"\w* said, ‘\w Destroy|strong="H8045"\w*!’ +\q1 +\v 28 \w Israel|strong="H3478"\w* \w dwells|strong="H7931"\w* \w in|strong="H3478"\w* safety, +\q2 \w the|strong="H5869"\w* \w fountain|strong="H5869"\w* \w of|strong="H5869"\w* \w Jacob|strong="H3290"\w* alone, +\q1 \w In|strong="H3478"\w* \w a|strong="H3068"\w* \w land|strong="H8064"\w* \w of|strong="H5869"\w* \w grain|strong="H1715"\w* \w and|strong="H3478"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w*. +\q2 Yes, \w his|strong="H3478"\w* \w heavens|strong="H8064"\w* \w drop|strong="H6201"\w* \w down|strong="H7931"\w* \w dew|strong="H2919"\w*. +\q1 +\v 29 \w You|strong="H5921"\w* \w are|strong="H5971"\w* happy, \w Israel|strong="H3478"\w*! +\q2 \w Who|strong="H4310"\w* \w is|strong="H3068"\w* \w like|strong="H3644"\w* \w you|strong="H5921"\w*, \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w saved|strong="H3467"\w* \w by|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w the|strong="H5921"\w* \w shield|strong="H4043"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w help|strong="H5828"\w*, +\q2 \w the|strong="H5921"\w* \w sword|strong="H2719"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w excellency|strong="H1346"\w*? +\q1 \w Your|strong="H3068"\w* enemies \w will|strong="H3068"\w* \w submit|strong="H3584"\w* \w themselves|strong="H5921"\w* \w to|strong="H3478"\w* \w you|strong="H5921"\w*. +\q2 \w You|strong="H5921"\w* \w will|strong="H3068"\w* \w tread|strong="H1869"\w* \w on|strong="H5921"\w* \w their|strong="H3068"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*.” +\c 34 +\p +\v 1 \w Moses|strong="H4872"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H6440"\w* \w the|strong="H3605"\w* \w plains|strong="H6160"\w* \w of|strong="H3068"\w* \w Moab|strong="H4124"\w* \w to|strong="H5704"\w* \w Mount|strong="H2022"\w* \w Nebo|strong="H5015"\w*, \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w top|strong="H7218"\w* \w of|strong="H3068"\w* \w Pisgah|strong="H6449"\w*, \w that|strong="H7200"\w* \w is|strong="H3068"\w* \w opposite|strong="H5921"\w* \w Jericho|strong="H3405"\w*. \w Yahweh|strong="H3068"\w* \w showed|strong="H7200"\w* \w him|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w of|strong="H3068"\w* \w Gilead|strong="H1568"\w* \w to|strong="H5704"\w* \w Dan|strong="H1835"\w*, +\v 2 \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w Naphtali|strong="H5321"\w*, \w and|strong="H3063"\w* \w the|strong="H3605"\w* land \w of|strong="H3605"\w* Ephraim \w and|strong="H3063"\w* \w Manasseh|strong="H4519"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H3605"\w* \w Judah|strong="H3063"\w*, \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w Western|strong="H3220"\w* \w Sea|strong="H3220"\w*, +\v 3 \w and|strong="H5892"\w* \w the|strong="H5704"\w* \w south|strong="H5045"\w*,\f + \fr 34:3 \ft or, Negev\f* \w and|strong="H5892"\w* \w the|strong="H5704"\w* \w Plain|strong="H3603"\w* \w of|strong="H5892"\w* \w the|strong="H5704"\w* \w valley|strong="H1237"\w* \w of|strong="H5892"\w* \w Jericho|strong="H3405"\w* \w the|strong="H5704"\w* \w city|strong="H5892"\w* \w of|strong="H5892"\w* \w palm|strong="H8558"\w* \w trees|strong="H8558"\w*, \w to|strong="H5704"\w* \w Zoar|strong="H6820"\w*. +\v 4 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w him|strong="H5414"\w*, “\w This|strong="H2063"\w* \w is|strong="H3068"\w* \w the|strong="H7200"\w* land \w which|strong="H3068"\w* \w I|strong="H5414"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* Abraham, \w to|strong="H3068"\w* \w Isaac|strong="H3327"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w Jacob|strong="H3290"\w*, saying, ‘\w I|strong="H5414"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w offspring|strong="H2233"\w*.’ \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w caused|strong="H5414"\w* \w you|strong="H5414"\w* \w to|strong="H3068"\w* \w see|strong="H7200"\w* \w it|strong="H5414"\w* \w with|strong="H3068"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w*, \w but|strong="H3808"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w go|strong="H5674"\w* \w over|strong="H5674"\w* \w there|strong="H8033"\w*.” +\p +\v 5 \w So|strong="H4191"\w* \w Moses|strong="H4872"\w* \w the|strong="H5921"\w* \w servant|strong="H5650"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w died|strong="H4191"\w* \w there|strong="H8033"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H3068"\w* \w Moab|strong="H4124"\w*, \w according|strong="H5921"\w* \w to|strong="H4191"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H6310"\w*. +\v 6 \w He|strong="H3117"\w* \w buried|strong="H6912"\w* \w him|strong="H6912"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w valley|strong="H1516"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* land \w of|strong="H3117"\w* \w Moab|strong="H4124"\w* \w opposite|strong="H4136"\w* Beth Peor, \w but|strong="H3808"\w* \w no|strong="H3808"\w* \w man|strong="H2088"\w* \w knows|strong="H3045"\w* \w where|strong="H2088"\w* \w his|strong="H3045"\w* \w tomb|strong="H6900"\w* \w is|strong="H2088"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 7 \w Moses|strong="H4872"\w* \w was|strong="H4872"\w* \w one|strong="H3808"\w* \w hundred|strong="H3967"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H3808"\w* \w died|strong="H4194"\w*. \w His|strong="H4872"\w* \w eye|strong="H5869"\w* \w was|strong="H4872"\w* \w not|strong="H3808"\w* \w dim|strong="H3543"\w*, \w nor|strong="H3808"\w* \w his|strong="H4872"\w* strength \w gone|strong="H3808"\w*. +\v 8 \w The|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w wept|strong="H1058"\w* \w for|strong="H3117"\w* \w Moses|strong="H4872"\w* \w in|strong="H3478"\w* \w the|strong="H3117"\w* \w plains|strong="H6160"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w* \w thirty|strong="H7970"\w* \w days|strong="H3117"\w*, \w until|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w weeping|strong="H1065"\w* \w in|strong="H3478"\w* \w the|strong="H3117"\w* mourning \w for|strong="H3117"\w* \w Moses|strong="H4872"\w* \w were|strong="H3478"\w* \w ended|strong="H8552"\w*. +\v 9 \w Joshua|strong="H3091"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w* \w was|strong="H3068"\w* \w full|strong="H4392"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w spirit|strong="H7307"\w* \w of|strong="H1121"\w* \w wisdom|strong="H2451"\w*, \w for|strong="H3588"\w* \w Moses|strong="H4872"\w* \w had|strong="H3068"\w* \w laid|strong="H5564"\w* \w his|strong="H3068"\w* \w hands|strong="H3027"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*. \w The|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w listened|strong="H8085"\w* \w to|strong="H3478"\w* \w him|strong="H5921"\w*, \w and|strong="H1121"\w* \w did|strong="H6213"\w* \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\v 10 \w Since|strong="H5750"\w* \w then|strong="H6965"\w*, \w there|strong="H3045"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w arisen|strong="H6965"\w* \w a|strong="H3068"\w* \w prophet|strong="H5030"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w* \w like|strong="H3478"\w* \w Moses|strong="H4872"\w*, \w whom|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w knew|strong="H3045"\w* \w face|strong="H6440"\w* \w to|strong="H3478"\w* \w face|strong="H6440"\w*, +\v 11 \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* signs \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w wonders|strong="H4159"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w sent|strong="H7971"\w* \w him|strong="H7971"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w to|strong="H3068"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* land, +\v 12 \w and|strong="H4872"\w* \w in|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w mighty|strong="H2389"\w* \w hand|strong="H3027"\w*, \w and|strong="H4872"\w* \w in|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w awesome|strong="H1419"\w* \w deeds|strong="H1419"\w*, \w which|strong="H5869"\w* \w Moses|strong="H4872"\w* \w did|strong="H6213"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H3027"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/07-JOSeng-web.usfm b/bibles/eng-web_usfm/07-JOSeng-web.usfm new file mode 100644 index 0000000..4789604 --- /dev/null +++ b/bibles/eng-web_usfm/07-JOSeng-web.usfm @@ -0,0 +1,888 @@ +\id JOS World English Bible (WEB) +\ide UTF-8 +\h Joshua +\toc1 The Book of Joshua +\toc2 Joshua +\toc3 Jos +\mt2 The Book of +\mt1 Joshua +\c 1 +\p +\v 1 \w Now|strong="H1961"\w* \w after|strong="H1961"\w* \w the|strong="H3068"\w* \w death|strong="H4194"\w* \w of|strong="H1121"\w* \w Moses|strong="H4872"\w* \w the|strong="H3068"\w* \w servant|strong="H5650"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*,\f + \fr 1:1 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w Yahweh|strong="H3068"\w* spoke \w to|strong="H3068"\w* \w Joshua|strong="H3091"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w*, \w Moses|strong="H4872"\w*’ \w servant|strong="H5650"\w*, saying, +\v 2 “\w Moses|strong="H4872"\w* \w my|strong="H5414"\w* \w servant|strong="H5650"\w* \w is|strong="H2088"\w* \w dead|strong="H4191"\w*. \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w arise|strong="H6965"\w*, \w go|strong="H5674"\w* \w across|strong="H5674"\w* \w this|strong="H2088"\w* \w Jordan|strong="H3383"\w*, \w you|strong="H5414"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w these|strong="H2088"\w* \w people|strong="H5971"\w*, \w to|strong="H3478"\w* \w the|strong="H3605"\w* land \w which|strong="H5971"\w* \w I|strong="H5414"\w* am \w giving|strong="H5414"\w* \w to|strong="H3478"\w* \w them|strong="H5414"\w*, even \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 3 \w I|strong="H5414"\w* \w have|strong="H5414"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w* \w every|strong="H3605"\w* \w place|strong="H4725"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* \w sole|strong="H3709"\w* \w of|strong="H3709"\w* \w your|strong="H3605"\w* \w foot|strong="H7272"\w* \w will|strong="H5414"\w* \w tread|strong="H1869"\w* \w on|strong="H1696"\w*, \w as|strong="H5414"\w* \w I|strong="H5414"\w* \w told|strong="H1696"\w* \w Moses|strong="H4872"\w*. +\v 4 \w From|strong="H5704"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* \w and|strong="H1419"\w* \w this|strong="H2088"\w* \w Lebanon|strong="H3844"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w great|strong="H1419"\w* \w river|strong="H5104"\w*, \w the|strong="H3605"\w* \w river|strong="H5104"\w* \w Euphrates|strong="H6578"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H1366"\w* \w of|strong="H1366"\w* \w the|strong="H3605"\w* \w Hittites|strong="H2850"\w*, \w and|strong="H1419"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w great|strong="H1419"\w* \w sea|strong="H3220"\w* \w toward|strong="H5704"\w* \w the|strong="H3605"\w* \w going|strong="H8121"\w* \w down|strong="H3996"\w* \w of|strong="H1366"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*, \w shall|strong="H1366"\w* \w be|strong="H1961"\w* \w your|strong="H3605"\w* \w border|strong="H1366"\w*. +\v 5 \w No|strong="H3808"\w* \w man|strong="H3605"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* able \w to|strong="H1961"\w* \w stand|strong="H3320"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H3605"\w* \w life|strong="H2416"\w*. \w As|strong="H3117"\w* \w I|strong="H3117"\w* \w was|strong="H1961"\w* \w with|strong="H5973"\w* \w Moses|strong="H4872"\w*, \w so|strong="H1961"\w* \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H6440"\w*. \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w fail|strong="H7503"\w* \w you|strong="H6440"\w* \w nor|strong="H3808"\w* \w forsake|strong="H5800"\w* \w you|strong="H6440"\w*. +\p +\v 6 “\w Be|strong="H5414"\w* \w strong|strong="H2388"\w* \w and|strong="H5971"\w* \w courageous|strong="H2388"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H5971"\w* \w cause|strong="H5414"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w to|strong="H5414"\w* \w inherit|strong="H5157"\w* \w the|strong="H3588"\w* land \w which|strong="H5971"\w* \w I|strong="H3588"\w* \w swore|strong="H7650"\w* \w to|strong="H5414"\w* \w their|strong="H5414"\w* fathers \w to|strong="H5414"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w*. +\v 7 \w Only|strong="H7535"\w* \w be|strong="H5650"\w* \w strong|strong="H2388"\w* \w and|strong="H4872"\w* \w very|strong="H3966"\w* \w courageous|strong="H2388"\w*. \w Be|strong="H5650"\w* \w careful|strong="H8104"\w* \w to|strong="H3212"\w* \w observe|strong="H8104"\w* \w to|strong="H3212"\w* \w do|strong="H6213"\w* \w according|strong="H4480"\w* \w to|strong="H3212"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w which|strong="H8451"\w* \w Moses|strong="H4872"\w* \w my|strong="H8104"\w* \w servant|strong="H5650"\w* \w commanded|strong="H6680"\w* \w you|strong="H6680"\w*. Don’t \w turn|strong="H5493"\w* \w from|strong="H4480"\w* \w it|strong="H6213"\w* \w to|strong="H3212"\w* \w the|strong="H3605"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w or|strong="H3225"\w* \w to|strong="H3212"\w* \w the|strong="H3605"\w* \w left|strong="H8040"\w*, \w that|strong="H3605"\w* \w you|strong="H6680"\w* \w may|strong="H6213"\w* \w have|strong="H5650"\w* \w good|strong="H3966"\w* \w success|strong="H7919"\w* \w wherever|strong="H3605"\w* \w you|strong="H6680"\w* \w go|strong="H3212"\w*. +\v 8 \w This|strong="H2088"\w* \w book|strong="H5612"\w* \w of|strong="H1870"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w depart|strong="H4185"\w* \w from|strong="H4185"\w* \w your|strong="H3605"\w* \w mouth|strong="H6310"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3808"\w* \w meditate|strong="H1897"\w* \w on|strong="H1870"\w* \w it|strong="H3588"\w* \w day|strong="H3119"\w* \w and|strong="H3119"\w* \w night|strong="H3915"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H6213"\w* \w observe|strong="H8104"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w according|strong="H6310"\w* \w to|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w is|strong="H2088"\w* \w written|strong="H3789"\w* \w in|strong="H6213"\w* \w it|strong="H3588"\w*; \w for|strong="H3588"\w* \w then|strong="H2088"\w* \w you|strong="H3588"\w* \w shall|strong="H3808"\w* \w make|strong="H6213"\w* \w your|strong="H3605"\w* \w way|strong="H1870"\w* \w prosperous|strong="H6743"\w*, \w and|strong="H3119"\w* \w then|strong="H2088"\w* \w you|strong="H3588"\w* \w shall|strong="H3808"\w* \w have|strong="H7919"\w* \w good|strong="H6743"\w* \w success|strong="H6743"\w*. +\v 9 Haven’t \w I|strong="H3588"\w* \w commanded|strong="H6680"\w* \w you|strong="H3588"\w*? \w Be|strong="H3808"\w* \w strong|strong="H2388"\w* \w and|strong="H3068"\w* \w courageous|strong="H2388"\w*. Don’t \w be|strong="H3808"\w* \w afraid|strong="H2865"\w*. Don’t \w be|strong="H3808"\w* \w dismayed|strong="H2865"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*\f + \fr 1:9 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w is|strong="H3068"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w* \w wherever|strong="H3605"\w* \w you|strong="H3588"\w* \w go|strong="H3212"\w*.” +\p +\v 10 \w Then|strong="H6680"\w* \w Joshua|strong="H3091"\w* \w commanded|strong="H6680"\w* \w the|strong="H6680"\w* \w officers|strong="H7860"\w* \w of|strong="H5971"\w* \w the|strong="H6680"\w* \w people|strong="H5971"\w*, saying, +\v 11 “\w Pass|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H3588"\w* \w middle|strong="H7130"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w camp|strong="H4264"\w*, \w and|strong="H3068"\w* \w command|strong="H6680"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w*, saying, ‘\w Prepare|strong="H3559"\w* \w food|strong="H6720"\w*; \w for|strong="H3588"\w* \w within|strong="H7130"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w* \w you|strong="H3588"\w* \w are|strong="H3117"\w* \w to|strong="H3068"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w this|strong="H2088"\w* \w Jordan|strong="H3383"\w*, \w to|strong="H3068"\w* \w go|strong="H5674"\w* \w in|strong="H3068"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w* \w the|strong="H3588"\w* \w land|strong="H7130"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H3588"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w*.’” +\p +\v 12 \w Joshua|strong="H3091"\w* spoke \w to|strong="H7626"\w* \w the|strong="H3091"\w* \w Reubenites|strong="H7206"\w*, \w and|strong="H3091"\w* \w to|strong="H7626"\w* \w the|strong="H3091"\w* \w Gadites|strong="H1425"\w*, \w and|strong="H3091"\w* \w to|strong="H7626"\w* \w the|strong="H3091"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H7626"\w* \w Manasseh|strong="H4519"\w*, saying, +\v 13 “\w Remember|strong="H2142"\w* \w the|strong="H5414"\w* \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w Moses|strong="H4872"\w* \w the|strong="H5414"\w* \w servant|strong="H5650"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w you|strong="H5414"\w*, \w saying|strong="H1697"\w*, ‘\w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w you|strong="H5414"\w* \w rest|strong="H5117"\w*, \w and|strong="H4872"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w this|strong="H2063"\w* land. +\v 14 \w Your|strong="H3605"\w* wives, \w your|strong="H3605"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*, \w and|strong="H4872"\w* \w your|strong="H3605"\w* \w livestock|strong="H4735"\w* \w shall|strong="H6440"\w* \w live|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w which|strong="H2428"\w* \w Moses|strong="H4872"\w* \w gave|strong="H5414"\w* \w you|strong="H5414"\w* \w beyond|strong="H5676"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*; \w but|strong="H3605"\w* \w you|strong="H5414"\w* \w shall|strong="H6440"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w before|strong="H6440"\w* \w your|strong="H3605"\w* brothers \w armed|strong="H2571"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H3427"\w* \w valor|strong="H2428"\w*, \w and|strong="H4872"\w* \w shall|strong="H6440"\w* \w help|strong="H5826"\w* \w them|strong="H5414"\w* +\v 15 \w until|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w your|strong="H3068"\w* brothers \w rest|strong="H5117"\w*, \w as|strong="H5704"\w* \w he|strong="H5704"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w*, \w and|strong="H4872"\w* \w they|strong="H1992"\w* \w have|strong="H3068"\w* \w also|strong="H1571"\w* \w possessed|strong="H3423"\w* \w the|strong="H5414"\w* \w land|strong="H5676"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w gives|strong="H5414"\w* \w them|strong="H5414"\w*. \w Then|strong="H1571"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w return|strong="H7725"\w* \w to|strong="H5704"\w* \w the|strong="H5414"\w* \w land|strong="H5676"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w possession|strong="H3423"\w* \w and|strong="H4872"\w* \w possess|strong="H3423"\w* \w it|strong="H5414"\w*, \w which|strong="H3068"\w* \w Moses|strong="H4872"\w* \w the|strong="H5414"\w* \w servant|strong="H5650"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w gave|strong="H5414"\w* \w you|strong="H5414"\w* \w beyond|strong="H5676"\w* \w the|strong="H5414"\w* \w Jordan|strong="H3383"\w* \w toward|strong="H5704"\w* \w the|strong="H5414"\w* \w sunrise|strong="H4217"\w*.’” +\p +\v 16 \w They|strong="H6213"\w* \w answered|strong="H6030"\w* \w Joshua|strong="H3091"\w*, saying, “\w All|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H6680"\w* \w have|strong="H3605"\w* \w commanded|strong="H6680"\w* \w us|strong="H6213"\w* \w we|strong="H3068"\w* \w will|strong="H6213"\w* \w do|strong="H6213"\w*, \w and|strong="H6030"\w* \w wherever|strong="H3605"\w* \w you|strong="H6680"\w* \w send|strong="H7971"\w* \w us|strong="H6213"\w* \w we|strong="H3068"\w* \w will|strong="H6213"\w* \w go|strong="H3212"\w*. +\v 17 \w Just|strong="H3605"\w* \w as|strong="H1961"\w* \w we|strong="H3068"\w* \w listened|strong="H8085"\w* \w to|strong="H3068"\w* \w Moses|strong="H4872"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w things|strong="H3605"\w*, \w so|strong="H3651"\w* \w will|strong="H3068"\w* \w we|strong="H3068"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w you|strong="H3605"\w*. \w Only|strong="H7535"\w* \w may|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H3605"\w*, \w as|strong="H1961"\w* \w he|strong="H3651"\w* \w was|strong="H3068"\w* \w with|strong="H5973"\w* \w Moses|strong="H4872"\w*. +\v 18 \w Whoever|strong="H3605"\w* \w rebels|strong="H4784"\w* \w against|strong="H4784"\w* \w your|strong="H3605"\w* \w commandment|strong="H6310"\w*, \w and|strong="H8085"\w* doesn’t \w listen|strong="H8085"\w* \w to|strong="H4191"\w* \w your|strong="H3605"\w* \w words|strong="H1697"\w* \w in|strong="H4191"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H6680"\w* \w command|strong="H6680"\w* \w him|strong="H6680"\w* \w shall|strong="H3808"\w* \w himself|strong="H2388"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. \w Only|strong="H7535"\w* \w be|strong="H4191"\w* \w strong|strong="H2388"\w* \w and|strong="H8085"\w* \w courageous|strong="H2388"\w*.” +\c 2 +\p +\v 1 \w Joshua|strong="H3091"\w* \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w* \w secretly|strong="H2791"\w* \w sent|strong="H7971"\w* \w two|strong="H8147"\w* \w men|strong="H1121"\w* \w out|strong="H7971"\w* \w of|strong="H1121"\w* \w Shittim|strong="H7851"\w* \w as|strong="H1121"\w* \w spies|strong="H7270"\w*, saying, “\w Go|strong="H3212"\w*, \w view|strong="H7200"\w* \w the|strong="H7200"\w* land, \w including|strong="H4480"\w* \w Jericho|strong="H3405"\w*.” \w They|strong="H8033"\w* \w went|strong="H3212"\w* \w and|strong="H1121"\w* \w came|strong="H3212"\w* \w into|strong="H3212"\w* \w the|strong="H7200"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w prostitute|strong="H2181"\w* \w whose|strong="H1121"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Rahab|strong="H7343"\w*, \w and|strong="H1121"\w* \w slept|strong="H7901"\w* \w there|strong="H8033"\w*. +\p +\v 2 \w The|strong="H2009"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Jericho|strong="H3405"\w* \w was|strong="H3478"\w* told, “\w Behold|strong="H2009"\w*,\f + \fr 2:2 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H2009"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w came|strong="H3478"\w* \w in|strong="H3478"\w* \w here|strong="H2009"\w* \w tonight|strong="H3915"\w* \w to|strong="H3478"\w* spy \w out|strong="H2658"\w* \w the|strong="H2009"\w* land.” +\p +\v 3 \w Jericho|strong="H3405"\w*’s \w king|strong="H4428"\w* \w sent|strong="H7971"\w* \w to|strong="H3318"\w* \w Rahab|strong="H7343"\w*, saying, “\w Bring|strong="H3318"\w* \w out|strong="H3318"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w who|strong="H3605"\w* \w have|strong="H3605"\w* \w come|strong="H3318"\w* \w to|strong="H3318"\w* \w you|strong="H3588"\w*, \w who|strong="H3605"\w* \w have|strong="H3605"\w* \w entered|strong="H3318"\w* \w into|strong="H3318"\w* \w your|strong="H3605"\w* \w house|strong="H1004"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3605"\w* \w come|strong="H3318"\w* \w to|strong="H3318"\w* spy \w out|strong="H3318"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land.” +\p +\v 4 \w The|strong="H3947"\w* woman \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w two|strong="H8147"\w* \w men|strong="H1992"\w* \w and|strong="H3045"\w* \w hid|strong="H6845"\w* \w them|strong="H1992"\w*. \w Then|strong="H3947"\w* \w she|strong="H8147"\w* \w said|strong="H3651"\w*, “\w Yes|strong="H3651"\w*, \w the|strong="H3947"\w* \w men|strong="H1992"\w* \w came|strong="H8147"\w* \w to|strong="H3045"\w* \w me|strong="H3947"\w*, \w but|strong="H3808"\w* \w I|strong="H3651"\w* didn’t \w know|strong="H3045"\w* \w where|strong="H3808"\w* \w they|strong="H1992"\w* \w came|strong="H8147"\w* \w from|strong="H3947"\w*. +\v 5 \w About|strong="H1961"\w* \w the|strong="H3588"\w* \w time|strong="H3318"\w* \w of|strong="H8179"\w* \w the|strong="H3588"\w* \w shutting|strong="H5462"\w* \w of|strong="H8179"\w* \w the|strong="H3588"\w* \w gate|strong="H8179"\w*, \w when|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H1961"\w* \w dark|strong="H2822"\w*, \w the|strong="H3588"\w* \w men|strong="H1980"\w* \w went|strong="H1980"\w* \w out|strong="H3318"\w*. \w Where|strong="H3808"\w* \w the|strong="H3588"\w* \w men|strong="H1980"\w* \w went|strong="H1980"\w*, \w I|strong="H3588"\w* don’t \w know|strong="H3045"\w*. \w Pursue|strong="H7291"\w* \w them|strong="H3318"\w* \w quickly|strong="H4118"\w*. \w You|strong="H3588"\w* \w may|strong="H1961"\w* \w catch|strong="H5381"\w* \w up|strong="H5462"\w* \w with|strong="H1980"\w* \w them|strong="H3318"\w*.” +\v 6 \w But|strong="H1931"\w* \w she|strong="H1931"\w* \w had|strong="H1931"\w* \w brought|strong="H5927"\w* \w them|strong="H5921"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H5921"\w* \w roof|strong="H1406"\w*, \w and|strong="H6086"\w* \w hidden|strong="H2934"\w* \w them|strong="H5921"\w* \w under|strong="H5921"\w* \w the|strong="H5921"\w* \w stalks|strong="H6086"\w* \w of|strong="H6086"\w* \w flax|strong="H6593"\w* \w which|strong="H1931"\w* \w she|strong="H1931"\w* \w had|strong="H1931"\w* \w laid|strong="H2934"\w* \w in|strong="H5921"\w* \w order|strong="H6186"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w roof|strong="H1406"\w*. +\v 7 \w The|strong="H5921"\w* men \w pursued|strong="H7291"\w* \w them|strong="H5921"\w* \w along|strong="H5921"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w* \w to|strong="H3318"\w* \w the|strong="H5921"\w* \w fords|strong="H4569"\w* \w of|strong="H1870"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w* River. \w As|strong="H3318"\w* soon \w as|strong="H3318"\w* \w those|strong="H5921"\w* who \w pursued|strong="H7291"\w* \w them|strong="H5921"\w* \w had|strong="H7291"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w*, \w they|strong="H5921"\w* \w shut|strong="H5462"\w* \w the|strong="H5921"\w* \w gate|strong="H8179"\w*. +\v 8 \w Before|strong="H2962"\w* \w they|strong="H1992"\w* \w had|strong="H1931"\w* \w lain|strong="H7901"\w* \w down|strong="H7901"\w*, \w she|strong="H1931"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w them|strong="H1992"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w roof|strong="H1406"\w*. +\v 9 \w She|strong="H3588"\w* said \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w*, “\w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H3588"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w*, \w and|strong="H3068"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w fear|strong="H6440"\w* \w of|strong="H3068"\w* \w you|strong="H3588"\w* \w has|strong="H3068"\w* \w fallen|strong="H5307"\w* \w upon|strong="H5921"\w* \w us|strong="H5414"\w*, \w and|strong="H3068"\w* \w that|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w melt|strong="H4127"\w* \w away|strong="H5307"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*. +\v 10 \w For|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w how|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w dried|strong="H3001"\w* \w up|strong="H3001"\w* \w the|strong="H6440"\w* \w water|strong="H4325"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*, \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*; \w and|strong="H3068"\w* \w what|strong="H6213"\w* \w you|strong="H3588"\w* \w did|strong="H6213"\w* \w to|strong="H3318"\w* \w the|strong="H6440"\w* \w two|strong="H8147"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* Amorites, \w who|strong="H3068"\w* \w were|strong="H4325"\w* \w beyond|strong="H5676"\w* \w the|strong="H6440"\w* \w Jordan|strong="H3383"\w*, \w to|strong="H3318"\w* \w Sihon|strong="H5511"\w* \w and|strong="H3068"\w* \w to|strong="H3318"\w* \w Og|strong="H5747"\w*, \w whom|strong="H6440"\w* \w you|strong="H3588"\w* \w utterly|strong="H2763"\w* \w destroyed|strong="H2763"\w*. +\v 11 \w As|strong="H3824"\w* \w soon|strong="H5750"\w* \w as|strong="H3824"\w* \w we|strong="H3068"\w* \w had|strong="H3068"\w* \w heard|strong="H8085"\w* \w it|strong="H1931"\w*, \w our|strong="H3068"\w* \w hearts|strong="H3824"\w* \w melted|strong="H4549"\w*, \w and|strong="H6965"\w* \w there|strong="H8478"\w* wasn’t \w any|strong="H5750"\w* \w more|strong="H5750"\w* \w spirit|strong="H7307"\w* \w in|strong="H5921"\w* \w any|strong="H5750"\w* \w man|strong="H6440"\w*, \w because|strong="H3588"\w* \w of|strong="H3068"\w* \w you|strong="H3588"\w*: \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w he|strong="H1931"\w* \w is|strong="H3068"\w* \w God|strong="H3068"\w* \w in|strong="H5921"\w* \w heaven|strong="H8064"\w* \w above|strong="H4605"\w*, \w and|strong="H6965"\w* \w on|strong="H5921"\w* \w earth|strong="H8064"\w* \w beneath|strong="H8478"\w*. +\v 12 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w please|strong="H4994"\w* \w swear|strong="H7650"\w* \w to|strong="H3068"\w* \w me|strong="H5414"\w* \w by|strong="H7650"\w* \w Yahweh|strong="H3068"\w*, \w since|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w dealt|strong="H6213"\w* \w kindly|strong="H2617"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w also|strong="H1571"\w* \w will|strong="H3068"\w* \w deal|strong="H6213"\w* \w kindly|strong="H2617"\w* \w with|strong="H5973"\w* \w my|strong="H5414"\w* father’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w give|strong="H5414"\w* \w me|strong="H5414"\w* \w a|strong="H3068"\w* \w true|strong="H3068"\w* sign; +\v 13 \w and|strong="H5315"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w will|strong="H5315"\w* \w save|strong="H2421"\w* \w alive|strong="H2421"\w* \w my|strong="H3605"\w* father, \w my|strong="H3605"\w* mother, \w my|strong="H3605"\w* brothers, \w and|strong="H5315"\w* \w my|strong="H3605"\w* sisters, \w and|strong="H5315"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w they|strong="H5315"\w* \w have|strong="H3605"\w*, \w and|strong="H5315"\w* \w will|strong="H5315"\w* \w deliver|strong="H5337"\w* \w our|strong="H3605"\w* \w lives|strong="H5315"\w* \w from|strong="H5315"\w* \w death|strong="H4194"\w*.” +\p +\v 14 \w The|strong="H5414"\w* \w men|strong="H6213"\w* \w said|strong="H1697"\w* \w to|strong="H4191"\w* \w her|strong="H5414"\w*, “\w Our|strong="H3068"\w* \w life|strong="H5315"\w* \w for|strong="H6213"\w* \w yours|strong="H5414"\w*, \w if|strong="H1961"\w* \w you|strong="H5414"\w* don’t \w talk|strong="H1697"\w* \w about|strong="H1961"\w* \w this|strong="H2088"\w* \w business|strong="H1697"\w* \w of|strong="H3068"\w* ours; \w and|strong="H3068"\w* \w it|strong="H5414"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w*, \w when|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w gives|strong="H5414"\w* \w us|strong="H5414"\w* \w the|strong="H5414"\w* land, \w that|strong="H5315"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w deal|strong="H6213"\w* \w kindly|strong="H2617"\w* \w and|strong="H3068"\w* \w truly|strong="H6213"\w* \w with|strong="H5973"\w* \w you|strong="H5414"\w*.” +\p +\v 15 \w Then|strong="H3588"\w* \w she|strong="H1931"\w* \w let|strong="H3381"\w* \w them|strong="H3381"\w* \w down|strong="H3381"\w* \w by|strong="H3427"\w* \w a|strong="H3068"\w* \w cord|strong="H2256"\w* \w through|strong="H1157"\w* \w the|strong="H3588"\w* \w window|strong="H2474"\w*; \w for|strong="H3588"\w* \w her|strong="H3381"\w* \w house|strong="H1004"\w* \w was|strong="H1931"\w* \w on|strong="H3427"\w* \w the|strong="H3588"\w* \w side|strong="H7023"\w* \w of|strong="H1004"\w* \w the|strong="H3588"\w* \w wall|strong="H2346"\w*, \w and|strong="H1004"\w* \w she|strong="H1931"\w* \w lived|strong="H3427"\w* \w on|strong="H3427"\w* \w the|strong="H3588"\w* \w wall|strong="H2346"\w*. +\v 16 \w She|strong="H5704"\w* said \w to|strong="H5704"\w* \w them|strong="H7725"\w*, “\w Go|strong="H3212"\w* \w to|strong="H5704"\w* \w the|strong="H7725"\w* \w mountain|strong="H2022"\w*, \w lest|strong="H6435"\w* \w the|strong="H7725"\w* \w pursuers|strong="H7291"\w* find \w you|strong="H3117"\w*. \w Hide|strong="H2247"\w* \w yourselves|strong="H8033"\w* \w there|strong="H8033"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*, \w until|strong="H5704"\w* \w the|strong="H7725"\w* \w pursuers|strong="H7291"\w* \w have|strong="H3117"\w* \w returned|strong="H7725"\w*. Afterward, \w you|strong="H3117"\w* \w may|strong="H7725"\w* \w go|strong="H3212"\w* \w your|strong="H7725"\w* \w way|strong="H1870"\w*.” +\p +\v 17 \w The|strong="H7650"\w* men said \w to|strong="H7650"\w* \w her|strong="H5355"\w*, “We \w will|strong="H2088"\w* be \w guiltless|strong="H5355"\w* \w of|strong="H7621"\w* \w this|strong="H2088"\w* \w your|strong="H2088"\w* \w oath|strong="H7621"\w* \w which|strong="H2088"\w* \w you|strong="H2088"\w*’ve \w made|strong="H7650"\w* us \w to|strong="H7650"\w* \w swear|strong="H7650"\w*. +\v 18 \w Behold|strong="H2009"\w*, \w when|strong="H2009"\w* \w we|strong="H3068"\w* \w come|strong="H3381"\w* \w into|strong="H3381"\w* \w the|strong="H3605"\w* land, \w tie|strong="H7194"\w* \w this|strong="H2088"\w* \w line|strong="H8615"\w* \w of|strong="H1004"\w* \w scarlet|strong="H8144"\w* \w thread|strong="H2339"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* \w window|strong="H2474"\w* \w which|strong="H1004"\w* \w you|strong="H3605"\w* \w used|strong="H3605"\w* \w to|strong="H3381"\w* \w let|strong="H3381"\w* \w us|strong="H3381"\w* \w down|strong="H3381"\w*. Gather \w to|strong="H3381"\w* yourself \w into|strong="H3381"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w your|strong="H3605"\w* father, \w your|strong="H3605"\w* mother, \w your|strong="H3605"\w* brothers, \w and|strong="H1004"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* father’s \w household|strong="H1004"\w*. +\v 19 \w It|strong="H1961"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w* \w that|strong="H3605"\w* \w whoever|strong="H3605"\w* \w goes|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w doors|strong="H1817"\w* \w of|strong="H1004"\w* \w your|strong="H3605"\w* \w house|strong="H1004"\w* \w into|strong="H3318"\w* \w the|strong="H3605"\w* \w street|strong="H2351"\w*, \w his|strong="H3605"\w* \w blood|strong="H1818"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w on|strong="H3027"\w* \w his|strong="H3605"\w* \w head|strong="H7218"\w*, \w and|strong="H3027"\w* \w we|strong="H3068"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w guiltless|strong="H5355"\w*. \w Whoever|strong="H3605"\w* \w is|strong="H3027"\w* \w with|strong="H1004"\w* \w you|strong="H3605"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*, \w his|strong="H3605"\w* \w blood|strong="H1818"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w* \w on|strong="H3027"\w* \w our|strong="H3605"\w* \w head|strong="H7218"\w*, \w if|strong="H1961"\w* \w any|strong="H3605"\w* \w hand|strong="H3027"\w* \w is|strong="H3027"\w* \w on|strong="H3027"\w* \w him|strong="H3027"\w*. +\v 20 \w But|strong="H1961"\w* \w if|strong="H1961"\w* \w you|strong="H5046"\w* \w talk|strong="H1697"\w* \w about|strong="H1961"\w* \w this|strong="H2088"\w* \w business|strong="H1697"\w* \w of|strong="H1697"\w* ours, \w then|strong="H1961"\w* \w we|strong="H3068"\w* \w shall|strong="H2088"\w* \w be|strong="H1961"\w* \w guiltless|strong="H5355"\w* \w of|strong="H1697"\w* \w your|strong="H1961"\w* \w oath|strong="H7621"\w* \w which|strong="H1697"\w* \w you|strong="H5046"\w*’ve \w made|strong="H7650"\w* \w us|strong="H5046"\w* \w to|strong="H1961"\w* \w swear|strong="H7650"\w*.” +\p +\v 21 \w She|strong="H1931"\w* \w said|strong="H1697"\w*, “\w Let|strong="H7971"\w* \w it|strong="H1931"\w* \w be|strong="H1697"\w* \w as|strong="H1697"\w* \w you|strong="H7971"\w* \w have|strong="H1697"\w* \w said|strong="H1697"\w*.” \w She|strong="H1931"\w* \w sent|strong="H7971"\w* \w them|strong="H7971"\w* \w away|strong="H7971"\w*, \w and|strong="H7971"\w* \w they|strong="H3651"\w* \w departed|strong="H3212"\w*. \w Then|strong="H3651"\w* \w she|strong="H1931"\w* \w tied|strong="H7194"\w* \w the|strong="H7971"\w* \w scarlet|strong="H8144"\w* \w line|strong="H8615"\w* \w in|strong="H3212"\w* \w the|strong="H7971"\w* \w window|strong="H2474"\w*. +\p +\v 22 \w They|strong="H3117"\w* \w went|strong="H3212"\w* \w and|strong="H7725"\w* \w came|strong="H3212"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w mountain|strong="H2022"\w*, \w and|strong="H7725"\w* \w stayed|strong="H3427"\w* \w there|strong="H8033"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*, \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w pursuers|strong="H7291"\w* \w had|strong="H4672"\w* \w returned|strong="H7725"\w*. \w The|strong="H3605"\w* \w pursuers|strong="H7291"\w* \w sought|strong="H1245"\w* \w them|strong="H7725"\w* \w all|strong="H3605"\w* \w along|strong="H3212"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w*, \w but|strong="H3808"\w* didn’t \w find|strong="H4672"\w* \w them|strong="H7725"\w*. +\v 23 \w Then|strong="H7725"\w* \w the|strong="H3605"\w* \w two|strong="H8147"\w* \w men|strong="H1121"\w* \w returned|strong="H7725"\w*, \w descended|strong="H3381"\w* \w from|strong="H7725"\w* \w the|strong="H3605"\w* \w mountain|strong="H2022"\w*, \w crossed|strong="H5674"\w* \w the|strong="H3605"\w* river, \w and|strong="H1121"\w* \w came|strong="H3381"\w* \w to|strong="H7725"\w* \w Joshua|strong="H3091"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w*. \w They|strong="H3605"\w* \w told|strong="H5608"\w* \w him|strong="H7725"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w had|strong="H3091"\w* \w happened|strong="H4672"\w* \w to|strong="H7725"\w* \w them|strong="H7725"\w*. +\v 24 \w They|strong="H3588"\w* said \w to|strong="H3068"\w* \w Joshua|strong="H3091"\w*, “\w Truly|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w delivered|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w into|strong="H3027"\w* \w our|strong="H3068"\w* \w hands|strong="H3027"\w*. \w Moreover|strong="H1571"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w melt|strong="H4127"\w* \w away|strong="H4127"\w* \w before|strong="H6440"\w* \w us|strong="H5414"\w*.” +\c 3 +\p +\v 1 \w Joshua|strong="H3091"\w* \w got|strong="H7925"\w* \w up|strong="H7925"\w* \w early|strong="H7925"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w*; \w and|strong="H1121"\w* \w they|strong="H8033"\w* \w moved|strong="H5265"\w* \w from|strong="H5265"\w* \w Shittim|strong="H7851"\w* \w and|strong="H1121"\w* \w came|strong="H3478"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*, \w he|strong="H1931"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w They|strong="H8033"\w* camped \w there|strong="H8033"\w* \w before|strong="H2962"\w* \w they|strong="H8033"\w* \w crossed|strong="H5674"\w* \w over|strong="H5674"\w*. +\v 2 \w After|strong="H1961"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*, \w the|strong="H3117"\w* \w officers|strong="H7860"\w* \w went|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H3117"\w* \w middle|strong="H7130"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w camp|strong="H4264"\w*; +\v 3 \w and|strong="H1980"\w* \w they|strong="H3068"\w* \w commanded|strong="H6680"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w*, saying, “\w When|strong="H7200"\w* \w you|strong="H6680"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* ark \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w covenant|strong="H1285"\w*, \w and|strong="H1980"\w* \w the|strong="H7200"\w* \w Levitical|strong="H3881"\w* \w priests|strong="H3548"\w* \w bearing|strong="H5375"\w* \w it|strong="H7200"\w*, \w then|strong="H1980"\w* \w leave|strong="H1980"\w* \w your|strong="H3068"\w* \w place|strong="H4725"\w* \w and|strong="H1980"\w* \w follow|strong="H1980"\w* \w it|strong="H7200"\w*. +\v 4 \w Yet|strong="H3588"\w* \w there|strong="H1961"\w* \w shall|strong="H3808"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w space|strong="H7350"\w* \w between|strong="H3045"\w* \w you|strong="H3588"\w* \w and|strong="H3212"\w* \w it|strong="H7126"\w* \w of|strong="H1870"\w* \w about|strong="H1961"\w* \w two|strong="H3808"\w* thousand cubits\f + \fr 3:4 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters, so 2,000 cubits is about 920 meters.\f* \w by|strong="H5674"\w* \w measure|strong="H4060"\w*—don’t \w come|strong="H1961"\w* closer \w to|strong="H3212"\w* \w it|strong="H7126"\w*—\w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H1961"\w* \w know|strong="H3045"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w by|strong="H5674"\w* \w which|strong="H3588"\w* \w you|strong="H3588"\w* \w must|strong="H3808"\w* \w go|strong="H3212"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* \w passed|strong="H5674"\w* \w this|strong="H5674"\w* \w way|strong="H1870"\w* \w before|strong="H3808"\w*.” +\p +\v 5 \w Joshua|strong="H3091"\w* said \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w*, “\w Sanctify|strong="H6942"\w* \w yourselves|strong="H6942"\w*; \w for|strong="H3588"\w* \w tomorrow|strong="H4279"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w wonders|strong="H6381"\w* \w among|strong="H7130"\w* \w you|strong="H3588"\w*.” +\p +\v 6 \w Joshua|strong="H3091"\w* spoke \w to|strong="H3212"\w* \w the|strong="H6440"\w* \w priests|strong="H3548"\w*, saying, “\w Take|strong="H5375"\w* \w up|strong="H5375"\w* \w the|strong="H6440"\w* ark \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w covenant|strong="H1285"\w*, \w and|strong="H3212"\w* \w cross|strong="H5674"\w* \w over|strong="H5674"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*.” \w They|strong="H5971"\w* \w took|strong="H5375"\w* \w up|strong="H5375"\w* \w the|strong="H6440"\w* ark \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w covenant|strong="H1285"\w*, \w and|strong="H3212"\w* \w went|strong="H3212"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*. +\p +\v 7 \w Yahweh|strong="H3068"\w* said \w to|strong="H3478"\w* \w Joshua|strong="H3091"\w*, “\w Today|strong="H3117"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w begin|strong="H2490"\w* \w to|strong="H3478"\w* \w magnify|strong="H1431"\w* \w you|strong="H3588"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w may|strong="H1961"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w as|strong="H3117"\w* \w I|strong="H3588"\w* \w was|strong="H3068"\w* \w with|strong="H5973"\w* \w Moses|strong="H4872"\w*, \w so|strong="H1961"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*. +\v 8 \w You|strong="H6680"\w* \w shall|strong="H3548"\w* \w command|strong="H6680"\w* \w the|strong="H5375"\w* \w priests|strong="H3548"\w* \w who|strong="H3548"\w* \w bear|strong="H5375"\w* \w the|strong="H5375"\w* ark \w of|strong="H4325"\w* \w the|strong="H5375"\w* \w covenant|strong="H1285"\w*, saying, ‘\w When|strong="H5704"\w* \w you|strong="H6680"\w* come \w to|strong="H5704"\w* \w the|strong="H5375"\w* \w brink|strong="H7097"\w* \w of|strong="H4325"\w* \w the|strong="H5375"\w* \w waters|strong="H4325"\w* \w of|strong="H4325"\w* \w the|strong="H5375"\w* \w Jordan|strong="H3383"\w*, \w you|strong="H6680"\w* \w shall|strong="H3548"\w* \w stand|strong="H5975"\w* \w still|strong="H5975"\w* \w in|strong="H5975"\w* \w the|strong="H5375"\w* \w Jordan|strong="H3383"\w*.’” +\p +\v 9 \w Joshua|strong="H3091"\w* \w said|strong="H1697"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, “\w Come|strong="H5066"\w* \w here|strong="H2008"\w*, \w and|strong="H1121"\w* \w hear|strong="H8085"\w* \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*.” +\v 10 \w Joshua|strong="H3091"\w* said, “\w By|strong="H6440"\w* \w this|strong="H2063"\w* \w you|strong="H3588"\w* \w shall|strong="H6440"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w the|strong="H6440"\w* \w living|strong="H2416"\w* God \w is|strong="H6440"\w* \w among|strong="H7130"\w* \w you|strong="H3588"\w*, \w and|strong="H6440"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H3588"\w* \w without|strong="H3588"\w* \w fail|strong="H3423"\w* \w drive|strong="H3423"\w* \w the|strong="H6440"\w* \w Canaanite|strong="H3669"\w*, \w the|strong="H6440"\w* \w Hittite|strong="H2850"\w*, \w the|strong="H6440"\w* \w Hivite|strong="H2340"\w*, \w the|strong="H6440"\w* \w Perizzite|strong="H6522"\w*, \w the|strong="H6440"\w* \w Girgashite|strong="H1622"\w*, \w the|strong="H6440"\w* Amorite, \w and|strong="H6440"\w* \w the|strong="H6440"\w* \w Jebusite|strong="H2983"\w* \w out|strong="H3423"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*. +\v 11 \w Behold|strong="H2009"\w*, \w the|strong="H3605"\w* ark \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w covenant|strong="H1285"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* Lord\f + \fr 3:11 \ft The word translated “Lord” is “Adonai.”\f* \w of|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth \w passes|strong="H5674"\w* \w over|strong="H5674"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w into|strong="H5674"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*. +\v 12 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w take|strong="H3947"\w* \w twelve|strong="H8147"\w* \w men|strong="H8147"\w* \w out|strong="H3947"\w* \w of|strong="H7626"\w* \w the|strong="H3947"\w* \w tribes|strong="H7626"\w* \w of|strong="H7626"\w* \w Israel|strong="H3478"\w*, \w for|strong="H3478"\w* \w every|strong="H3947"\w* \w tribe|strong="H7626"\w* \w a|strong="H3068"\w* man. +\v 13 \w It|strong="H5117"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w that|strong="H3605"\w* \w when|strong="H1961"\w* \w the|strong="H3605"\w* \w soles|strong="H3709"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w feet|strong="H7272"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w who|strong="H3605"\w* \w bear|strong="H5375"\w* \w the|strong="H3605"\w* ark \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w Lord|strong="H3068"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth, \w rest|strong="H5117"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*, \w that|strong="H3605"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*. \w The|strong="H3605"\w* \w waters|strong="H4325"\w* \w that|strong="H3605"\w* \w come|strong="H1961"\w* \w down|strong="H3381"\w* \w from|strong="H3772"\w* \w above|strong="H4605"\w* \w shall|strong="H3548"\w* \w stand|strong="H5975"\w* \w in|strong="H3068"\w* \w one|strong="H3605"\w* \w heap|strong="H5067"\w*.” +\p +\v 14 \w When|strong="H1961"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w moved|strong="H5265"\w* \w from|strong="H5265"\w* \w their|strong="H5375"\w* tents \w to|strong="H1961"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H6440"\w* \w Jordan|strong="H3383"\w*, \w the|strong="H6440"\w* \w priests|strong="H3548"\w* \w who|strong="H5971"\w* \w bore|strong="H5375"\w* \w the|strong="H6440"\w* ark \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w covenant|strong="H1285"\w* \w being|strong="H1961"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*, +\v 15 \w and|strong="H3117"\w* \w when|strong="H3117"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w bore|strong="H5375"\w* \w the|strong="H3605"\w* ark \w had|strong="H3548"\w* \w come|strong="H4390"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*, \w and|strong="H3117"\w* \w the|strong="H3605"\w* \w feet|strong="H7272"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w who|strong="H3605"\w* \w bore|strong="H5375"\w* \w the|strong="H3605"\w* ark \w had|strong="H3548"\w* \w dipped|strong="H2881"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w edge|strong="H7097"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w water|strong="H4325"\w* (\w for|strong="H5704"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w* \w overflows|strong="H4390"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w banks|strong="H1415"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w time|strong="H3117"\w* \w of|strong="H3117"\w* \w harvest|strong="H7105"\w*), +\v 16 \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w which|strong="H5971"\w* \w came|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H3772"\w* \w above|strong="H4605"\w* \w stood|strong="H5975"\w*, \w and|strong="H6965"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w in|strong="H5921"\w* \w one|strong="H5892"\w* \w heap|strong="H5067"\w* \w a|strong="H3068"\w* \w great|strong="H3966"\w* \w way|strong="H7368"\w* \w off|strong="H3772"\w*, \w at|strong="H5921"\w* Adam, \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w that|strong="H5971"\w* \w is|strong="H5892"\w* \w beside|strong="H5921"\w* \w Zarethan|strong="H6891"\w*; \w and|strong="H6965"\w* \w those|strong="H5921"\w* \w that|strong="H5971"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w toward|strong="H5921"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w of|strong="H5892"\w* \w the|strong="H5921"\w* \w Arabah|strong="H6160"\w*, \w even|strong="H5921"\w* \w the|strong="H5921"\w* \w Salt|strong="H4417"\w* \w Sea|strong="H3220"\w*, \w were|strong="H5971"\w* wholly \w cut|strong="H3772"\w* \w off|strong="H3772"\w*. \w Then|strong="H6965"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w passed|strong="H5674"\w* \w over|strong="H5921"\w* \w near|strong="H5921"\w* \w Jericho|strong="H3405"\w*. +\v 17 \w The|strong="H3605"\w* \w priests|strong="H3548"\w* \w who|strong="H3605"\w* \w bore|strong="H5375"\w* \w the|strong="H3605"\w* ark \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w* \w stood|strong="H5975"\w* \w firm|strong="H3559"\w* \w on|strong="H5674"\w* \w dry|strong="H2724"\w* \w ground|strong="H2724"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*; \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w crossed|strong="H5674"\w* \w over|strong="H5674"\w* \w on|strong="H5674"\w* \w dry|strong="H2724"\w* \w ground|strong="H2724"\w*, \w until|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nation|strong="H1471"\w* \w had|strong="H3068"\w* \w passed|strong="H5674"\w* \w completely|strong="H3605"\w* \w over|strong="H5674"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*. +\c 4 +\p +\v 1 \w When|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nation|strong="H1471"\w* \w had|strong="H3068"\w* \w completely|strong="H3605"\w* \w crossed|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*, \w Yahweh|strong="H3068"\w* spoke \w to|strong="H3068"\w* \w Joshua|strong="H3091"\w*, saying, +\v 2 “\w Take|strong="H3947"\w* \w twelve|strong="H8147"\w* \w men|strong="H5971"\w* \w out|strong="H4480"\w* \w of|strong="H7626"\w* \w the|strong="H3947"\w* \w people|strong="H5971"\w*, \w a|strong="H3068"\w* man \w out|strong="H4480"\w* \w of|strong="H7626"\w* \w every|strong="H3947"\w* \w tribe|strong="H7626"\w*, +\v 3 \w and|strong="H3548"\w* \w command|strong="H6680"\w* \w them|strong="H6680"\w*, saying, ‘\w Take|strong="H5375"\w* \w from|strong="H7272"\w* \w out|strong="H8432"\w* \w of|strong="H8432"\w* \w the|strong="H5375"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w the|strong="H5375"\w* \w Jordan|strong="H3383"\w*, \w out|strong="H8432"\w* \w of|strong="H8432"\w* \w the|strong="H5375"\w* \w place|strong="H4411"\w* \w where|strong="H4673"\w* \w the|strong="H5375"\w* \w priests|strong="H3548"\w*’ \w feet|strong="H7272"\w* \w stood|strong="H4673"\w* \w firm|strong="H3559"\w*, \w twelve|strong="H8147"\w* stones, \w carry|strong="H5375"\w* \w them|strong="H6680"\w* \w over|strong="H5674"\w* \w with|strong="H5973"\w* \w you|strong="H6680"\w*, \w and|strong="H3548"\w* \w lay|strong="H3240"\w* \w them|strong="H6680"\w* \w down|strong="H3240"\w* \w in|strong="H8432"\w* \w the|strong="H5375"\w* \w place|strong="H4411"\w* \w where|strong="H4673"\w* \w you|strong="H6680"\w*’ll camp \w tonight|strong="H3915"\w*.’” +\p +\v 4 \w Then|strong="H7121"\w* \w Joshua|strong="H3091"\w* \w called|strong="H7121"\w* \w the|strong="H7121"\w* \w twelve|strong="H8147"\w* \w men|strong="H1121"\w* \w whom|strong="H7121"\w* \w he|strong="H8147"\w* \w had|strong="H3478"\w* \w prepared|strong="H3559"\w* \w of|strong="H1121"\w* \w the|strong="H7121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w out|strong="H8147"\w* \w of|strong="H1121"\w* \w every|strong="H7121"\w* \w tribe|strong="H7626"\w*. +\v 5 \w Joshua|strong="H3091"\w* said \w to|strong="H3478"\w* \w them|strong="H5921"\w*, “\w Cross|strong="H5674"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* ark \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w into|strong="H8432"\w* \w the|strong="H6440"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w Jordan|strong="H3383"\w*, \w and|strong="H1121"\w* each \w of|strong="H1121"\w* \w you|strong="H6440"\w* pick \w up|strong="H7311"\w* \w a|strong="H3068"\w* stone \w and|strong="H1121"\w* \w put|strong="H3068"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w your|strong="H3068"\w* \w shoulder|strong="H7926"\w*, \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w the|strong="H6440"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w tribes|strong="H7626"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; +\v 6 \w that|strong="H3588"\w* \w this|strong="H2063"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* sign \w among|strong="H7130"\w* \w you|strong="H3588"\w*, \w that|strong="H3588"\w* \w when|strong="H3588"\w* \w your|strong="H3588"\w* \w children|strong="H1121"\w* \w ask|strong="H7592"\w* \w in|strong="H1121"\w* \w the|strong="H3588"\w* future, saying, ‘\w What|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H3588"\w* mean \w by|strong="H1961"\w* \w these|strong="H2063"\w* stones?’ +\v 7 \w then|strong="H1961"\w* \w you|strong="H6440"\w* \w shall|strong="H3068"\w* tell \w them|strong="H6440"\w*, ‘\w Because|strong="H6440"\w* \w the|strong="H6440"\w* \w waters|strong="H4325"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w Jordan|strong="H3383"\w* \w were|strong="H3478"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* ark \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w*. \w When|strong="H1961"\w* \w it|strong="H6440"\w* \w crossed|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H6440"\w* \w Jordan|strong="H3383"\w*, \w the|strong="H6440"\w* \w waters|strong="H4325"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w Jordan|strong="H3383"\w* \w were|strong="H3478"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*. \w These|strong="H6440"\w* stones \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w for|strong="H5704"\w* \w a|strong="H3068"\w* \w memorial|strong="H2146"\w* \w to|strong="H5704"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w forever|strong="H5769"\w*.’” +\p +\v 8 \w The|strong="H5375"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w did|strong="H6213"\w* \w as|strong="H6213"\w* \w Joshua|strong="H3091"\w* \w commanded|strong="H6680"\w*, \w and|strong="H1121"\w* \w took|strong="H5375"\w* \w up|strong="H5375"\w* \w twelve|strong="H8147"\w* stones \w out|strong="H6213"\w* \w of|strong="H1121"\w* \w the|strong="H5375"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w the|strong="H5375"\w* \w Jordan|strong="H3383"\w*, \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Joshua|strong="H3091"\w*, according \w to|strong="H1696"\w* \w the|strong="H5375"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w the|strong="H5375"\w* \w tribes|strong="H7626"\w* \w of|strong="H1121"\w* \w the|strong="H5375"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w They|strong="H3651"\w* \w carried|strong="H5375"\w* \w them|strong="H6213"\w* \w over|strong="H5674"\w* \w with|strong="H5973"\w* \w them|strong="H6213"\w* \w to|strong="H1696"\w* \w the|strong="H5375"\w* \w place|strong="H4411"\w* \w where|strong="H8033"\w* \w they|strong="H3651"\w* camped, \w and|strong="H1121"\w* \w laid|strong="H5375"\w* \w them|strong="H6213"\w* \w down|strong="H3240"\w* \w there|strong="H8033"\w*. +\v 9 \w Joshua|strong="H3091"\w* \w set|strong="H6965"\w* \w up|strong="H6965"\w* \w twelve|strong="H8147"\w* stones \w in|strong="H3117"\w* \w the|strong="H5375"\w* \w middle|strong="H8432"\w* \w of|strong="H3117"\w* \w the|strong="H5375"\w* \w Jordan|strong="H3383"\w*, \w in|strong="H3117"\w* \w the|strong="H5375"\w* \w place|strong="H8478"\w* \w where|strong="H8033"\w* \w the|strong="H5375"\w* \w feet|strong="H7272"\w* \w of|strong="H3117"\w* \w the|strong="H5375"\w* \w priests|strong="H3548"\w* \w who|strong="H3548"\w* \w bore|strong="H5375"\w* \w the|strong="H5375"\w* ark \w of|strong="H3117"\w* \w the|strong="H5375"\w* \w covenant|strong="H1285"\w* \w stood|strong="H6965"\w*; \w and|strong="H6965"\w* \w they|strong="H3117"\w* \w are|strong="H3117"\w* \w there|strong="H8033"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 10 \w For|strong="H5704"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w who|strong="H3605"\w* \w bore|strong="H5375"\w* \w the|strong="H3605"\w* ark \w stood|strong="H5975"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w* \w until|strong="H5704"\w* \w everything|strong="H3605"\w* \w was|strong="H3068"\w* \w finished|strong="H8552"\w* \w that|strong="H5971"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Joshua|strong="H3091"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, according \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w that|strong="H5971"\w* \w Moses|strong="H4872"\w* \w commanded|strong="H6680"\w* \w Joshua|strong="H3091"\w*; \w and|strong="H4872"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w hurried|strong="H4116"\w* \w and|strong="H4872"\w* \w passed|strong="H5674"\w* \w over|strong="H5674"\w*. +\v 11 \w When|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w had|strong="H3068"\w* \w completely|strong="H3605"\w* \w crossed|strong="H5674"\w* \w over|strong="H5674"\w*, \w Yahweh|strong="H3068"\w*’s ark \w crossed|strong="H5674"\w* \w over|strong="H5674"\w* \w with|strong="H3068"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w presence|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*. +\p +\v 12 \w The|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w*, \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w*, \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w crossed|strong="H5674"\w* \w over|strong="H5674"\w* \w armed|strong="H2571"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w as|strong="H6440"\w* \w Moses|strong="H4872"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H6440"\w*. +\v 13 About forty thousand \w men|strong="H2502"\w*, ready \w and|strong="H3068"\w* \w armed|strong="H2502"\w* \w for|strong="H6440"\w* \w war|strong="H4421"\w*, \w passed|strong="H5674"\w* \w over|strong="H5674"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3068"\w* \w battle|strong="H4421"\w*, \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w plains|strong="H6160"\w* \w of|strong="H3068"\w* \w Jericho|strong="H3405"\w*. +\v 14 \w On|strong="H3117"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w*, \w Yahweh|strong="H3068"\w* \w magnified|strong="H1431"\w* \w Joshua|strong="H3091"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*; \w and|strong="H4872"\w* \w they|strong="H3117"\w* \w feared|strong="H3372"\w* \w him|strong="H1931"\w*, \w as|strong="H3117"\w* \w they|strong="H3117"\w* \w feared|strong="H3372"\w* \w Moses|strong="H4872"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w life|strong="H2416"\w*. +\p +\v 15 \w Yahweh|strong="H3068"\w* spoke \w to|strong="H3068"\w* \w Joshua|strong="H3091"\w*, saying, +\v 16 “\w Command|strong="H6680"\w* \w the|strong="H5375"\w* \w priests|strong="H3548"\w* \w who|strong="H3548"\w* \w bear|strong="H5375"\w* \w the|strong="H5375"\w* ark \w of|strong="H4480"\w* \w the|strong="H5375"\w* covenant, \w that|strong="H3548"\w* \w they|strong="H5375"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H5375"\w* \w Jordan|strong="H3383"\w*.” +\p +\v 17 \w Joshua|strong="H3091"\w* \w therefore|strong="H3091"\w* \w commanded|strong="H6680"\w* \w the|strong="H4480"\w* \w priests|strong="H3548"\w*, saying, “\w Come|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w Jordan|strong="H3383"\w*!” +\v 18 \w When|strong="H1961"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w who|strong="H3605"\w* \w bore|strong="H5375"\w* \w the|strong="H3605"\w* ark \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w* \w had|strong="H3068"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H5921"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w soles|strong="H3709"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w*’ \w feet|strong="H7272"\w* \w had|strong="H3068"\w* \w been|strong="H1961"\w* \w lifted|strong="H5375"\w* \w up|strong="H5927"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w dry|strong="H2724"\w* \w ground|strong="H2724"\w*, \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w their|strong="H3605"\w* \w place|strong="H4725"\w*, \w and|strong="H3068"\w* \w went|strong="H3212"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w banks|strong="H1415"\w*, \w as|strong="H1961"\w* \w before|strong="H5921"\w*. +\v 19 \w The|strong="H4480"\w* \w people|strong="H5971"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w Jordan|strong="H3383"\w* \w on|strong="H5927"\w* \w the|strong="H4480"\w* \w tenth|strong="H6218"\w* \w day|strong="H2320"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*, \w and|strong="H5971"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Gilgal|strong="H1537"\w*, \w on|strong="H5927"\w* \w the|strong="H4480"\w* \w east|strong="H4217"\w* \w border|strong="H7097"\w* \w of|strong="H4480"\w* \w Jericho|strong="H3405"\w*. +\p +\v 20 \w Joshua|strong="H3091"\w* \w set|strong="H6965"\w* \w up|strong="H6965"\w* \w those|strong="H4480"\w* \w twelve|strong="H8147"\w* stones, which \w they|strong="H3947"\w* \w took|strong="H3947"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H3947"\w* \w Jordan|strong="H3383"\w*, \w in|strong="H6965"\w* \w Gilgal|strong="H1537"\w*. +\v 21 \w He|strong="H3478"\w* spoke \w to|strong="H3478"\w* \w the|strong="H7592"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, saying, “\w When|strong="H1121"\w* \w your|strong="H3478"\w* \w children|strong="H1121"\w* \w ask|strong="H7592"\w* \w their|strong="H7592"\w* fathers \w in|strong="H3478"\w* \w time|strong="H4279"\w* \w to|strong="H3478"\w* \w come|strong="H4279"\w*, saying, ‘\w What|strong="H4100"\w* \w do|strong="H4100"\w* these stones mean?’ +\v 22 \w Then|strong="H2088"\w* \w you|strong="H3045"\w* \w shall|strong="H1121"\w* let \w your|strong="H3045"\w* \w children|strong="H1121"\w* \w know|strong="H3045"\w*, saying, ‘\w Israel|strong="H3478"\w* \w came|strong="H3478"\w* \w over|strong="H5674"\w* \w this|strong="H2088"\w* \w Jordan|strong="H3383"\w* \w on|strong="H5674"\w* \w dry|strong="H3004"\w* \w land|strong="H3004"\w*. +\v 23 \w For|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w dried|strong="H3001"\w* \w up|strong="H3001"\w* \w the|strong="H6440"\w* \w waters|strong="H4325"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w Jordan|strong="H3383"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w until|strong="H5704"\w* \w you|strong="H6440"\w* \w had|strong="H3068"\w* \w crossed|strong="H5674"\w* \w over|strong="H5674"\w*, \w as|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w did|strong="H6213"\w* \w to|strong="H5704"\w* \w the|strong="H6440"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w*, \w which|strong="H3068"\w* \w he|strong="H5704"\w* \w dried|strong="H3001"\w* \w up|strong="H3001"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w us|strong="H6213"\w*, \w until|strong="H5704"\w* \w we|strong="H3068"\w* \w had|strong="H3068"\w* \w crossed|strong="H5674"\w* \w over|strong="H5674"\w*, +\v 24 \w that|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* earth \w may|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w is|strong="H3068"\w* \w mighty|strong="H2389"\w*, \w and|strong="H3068"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H3068"\w* \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w forever|strong="H3605"\w*.’” +\c 5 +\p +\v 1 \w When|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* Amorites, \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w beyond|strong="H5676"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w* \w westward|strong="H3220"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w Canaanites|strong="H3669"\w*, \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w*, \w heard|strong="H8085"\w* \w how|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w dried|strong="H3001"\w* \w up|strong="H3001"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w until|strong="H5704"\w* \w we|strong="H3068"\w* \w had|strong="H3068"\w* \w crossed|strong="H5674"\w* \w over|strong="H5921"\w*, \w their|strong="H3605"\w* \w heart|strong="H3824"\w* \w melted|strong="H4549"\w*, \w and|strong="H1121"\w* \w there|strong="H1961"\w* \w was|strong="H3068"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w spirit|strong="H7307"\w* \w in|strong="H5921"\w* \w them|strong="H5921"\w*, \w because|strong="H5921"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 2 \w At|strong="H3478"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w*, \w Yahweh|strong="H3068"\w* said \w to|strong="H7725"\w* \w Joshua|strong="H3091"\w*, “\w Make|strong="H6213"\w* \w flint|strong="H6697"\w* \w knives|strong="H2719"\w*, \w and|strong="H1121"\w* \w circumcise|strong="H4135"\w* \w again|strong="H7725"\w* \w the|strong="H6213"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w the|strong="H6213"\w* \w second|strong="H8145"\w* \w time|strong="H6256"\w*.” +\v 3 \w Joshua|strong="H3091"\w* \w made|strong="H6213"\w* \w himself|strong="H6213"\w* \w flint|strong="H6697"\w* \w knives|strong="H2719"\w*, \w and|strong="H1121"\w* \w circumcised|strong="H4135"\w* \w the|strong="H6213"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w at|strong="H3478"\w* \w the|strong="H6213"\w* \w hill|strong="H1389"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w foreskins|strong="H6190"\w*. +\v 4 \w This|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H3605"\w* \w reason|strong="H1697"\w* \w Joshua|strong="H3091"\w* \w circumcised|strong="H4135"\w* \w them|strong="H3318"\w*: \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1697"\w* \w Egypt|strong="H4714"\w*, \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w males|strong="H2145"\w*, \w even|strong="H4714"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H2145"\w* \w of|strong="H1697"\w* \w war|strong="H4421"\w*, \w died|strong="H4191"\w* \w in|strong="H4191"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* along \w the|strong="H3605"\w* \w way|strong="H1870"\w*, \w after|strong="H3318"\w* \w they|strong="H5971"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1697"\w* \w Egypt|strong="H4714"\w*. +\v 5 \w For|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w came|strong="H1961"\w* \w out|strong="H3318"\w* \w were|strong="H1961"\w* \w circumcised|strong="H4135"\w*; \w but|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w born|strong="H3209"\w* \w in|strong="H1870"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* \w along|strong="H3588"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w as|strong="H1961"\w* \w they|strong="H3588"\w* \w came|strong="H1961"\w* \w out|strong="H3318"\w* \w of|strong="H1870"\w* \w Egypt|strong="H4714"\w* \w had|strong="H1961"\w* \w not|strong="H3808"\w* \w been|strong="H1961"\w* \w circumcised|strong="H4135"\w*. +\v 6 \w For|strong="H3588"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w walked|strong="H1980"\w* forty \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* \w until|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nation|strong="H1471"\w*, \w even|strong="H5704"\w* \w the|strong="H3605"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w war|strong="H4421"\w* \w who|strong="H3605"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w were|strong="H3478"\w* \w consumed|strong="H8552"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w*. \w Yahweh|strong="H3068"\w* \w swore|strong="H7650"\w* \w to|strong="H5704"\w* \w them|strong="H5414"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* wouldn’t \w let|strong="H5414"\w* \w them|strong="H5414"\w* \w see|strong="H7200"\w* \w the|strong="H3605"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w swore|strong="H7650"\w* \w to|strong="H5704"\w* \w their|strong="H3605"\w* fathers \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w would|strong="H3068"\w* \w give|strong="H5414"\w* \w us|strong="H5414"\w*, \w a|strong="H3068"\w* land \w flowing|strong="H2100"\w* \w with|strong="H1980"\w* \w milk|strong="H2461"\w* \w and|strong="H1121"\w* \w honey|strong="H1706"\w*. +\v 7 \w Their|strong="H3588"\w* \w children|strong="H1121"\w*, \w whom|strong="H3588"\w* \w he|strong="H3588"\w* \w raised|strong="H6965"\w* \w up|strong="H6965"\w* \w in|strong="H1121"\w* \w their|strong="H3588"\w* \w place|strong="H8478"\w*, \w were|strong="H1961"\w* \w circumcised|strong="H4135"\w* \w by|strong="H1870"\w* \w Joshua|strong="H3091"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H1961"\w* \w uncircumcised|strong="H6189"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H1961"\w* \w not|strong="H3808"\w* \w circumcised|strong="H4135"\w* \w them|strong="H4135"\w* \w on|strong="H1870"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w*. +\v 8 \w When|strong="H1961"\w* \w they|strong="H5704"\w* \w were|strong="H1961"\w* \w done|strong="H1961"\w* \w circumcising|strong="H4135"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w nation|strong="H1471"\w*, \w they|strong="H5704"\w* \w stayed|strong="H3427"\w* \w in|strong="H3427"\w* \w their|strong="H3605"\w* \w places|strong="H3605"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w until|strong="H5704"\w* \w they|strong="H5704"\w* \w were|strong="H1961"\w* \w healed|strong="H2421"\w*. +\p +\v 9 \w Yahweh|strong="H3068"\w* \w said|strong="H7121"\w* \w to|strong="H5704"\w* \w Joshua|strong="H3091"\w*, “\w Today|strong="H3117"\w* \w I|strong="H3117"\w* \w have|strong="H3068"\w* \w rolled|strong="H1556"\w* \w away|strong="H1556"\w* \w the|strong="H5921"\w* \w reproach|strong="H2781"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w* \w from|strong="H5921"\w* \w you|strong="H5921"\w*.” \w Therefore|strong="H5921"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w that|strong="H3117"\w* \w place|strong="H4725"\w* \w was|strong="H3068"\w* \w called|strong="H7121"\w* \w Gilgal|strong="H1537"\w*\f + \fr 5:9 \ft “Gilgal” sounds like the Hebrew for “roll.”\f* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 10 \w The|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Gilgal|strong="H1537"\w*. \w They|strong="H3117"\w* \w kept|strong="H6213"\w* \w the|strong="H6213"\w* \w Passover|strong="H6453"\w* \w on|strong="H3117"\w* \w the|strong="H6213"\w* \w fourteenth|strong="H6240"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w month|strong="H2320"\w* \w at|strong="H2583"\w* \w evening|strong="H6153"\w* \w in|strong="H2583"\w* \w the|strong="H6213"\w* \w plains|strong="H6160"\w* \w of|strong="H1121"\w* \w Jericho|strong="H3405"\w*. +\v 11 \w They|strong="H3117"\w* ate \w unleavened|strong="H4682"\w* \w cakes|strong="H4682"\w* \w and|strong="H3117"\w* \w parched|strong="H7033"\w* grain \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w produce|strong="H5669"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* land \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w next|strong="H4283"\w* \w day|strong="H3117"\w* \w after|strong="H4283"\w* \w the|strong="H3117"\w* \w Passover|strong="H6453"\w*, \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w same|strong="H6106"\w* \w day|strong="H3117"\w*. +\v 12 \w The|strong="H1961"\w* \w manna|strong="H4478"\w* \w ceased|strong="H7673"\w* \w on|strong="H1961"\w* \w the|strong="H1961"\w* \w next|strong="H4283"\w* \w day|strong="H4283"\w*, \w after|strong="H4283"\w* \w they|strong="H3808"\w* \w had|strong="H1961"\w* eaten \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w produce|strong="H8393"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* land. \w The|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* didn’t \w have|strong="H1961"\w* \w manna|strong="H4478"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*, \w but|strong="H3808"\w* \w they|strong="H3808"\w* ate \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w fruit|strong="H8393"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* land \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w* \w that|strong="H1931"\w* \w year|strong="H8141"\w*. +\p +\v 13 \w When|strong="H1961"\w* \w Joshua|strong="H3091"\w* \w was|strong="H1961"\w* \w by|strong="H3027"\w* \w Jericho|strong="H3405"\w*, \w he|strong="H3027"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w eyes|strong="H5869"\w* \w and|strong="H3027"\w* \w looked|strong="H7200"\w*, \w and|strong="H3027"\w* \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w man|strong="H5375"\w* \w stood|strong="H5975"\w* \w in|strong="H3212"\w* \w front|strong="H5048"\w* \w of|strong="H3027"\w* \w him|strong="H3027"\w* \w with|strong="H3212"\w* \w his|strong="H5375"\w* \w sword|strong="H2719"\w* \w drawn|strong="H8025"\w* \w in|strong="H3212"\w* \w his|strong="H5375"\w* \w hand|strong="H3027"\w*. \w Joshua|strong="H3091"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w him|strong="H3027"\w* \w and|strong="H3027"\w* said \w to|strong="H3212"\w* \w him|strong="H3027"\w*, “\w Are|strong="H5869"\w* \w you|strong="H7200"\w* \w for|strong="H3027"\w* \w us|strong="H7200"\w*, \w or|strong="H2719"\w* \w for|strong="H3027"\w* \w our|strong="H7200"\w* \w enemies|strong="H6862"\w*?” +\p +\v 14 \w He|strong="H3588"\w* \w said|strong="H1696"\w*, “\w No|strong="H3808"\w*; \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w come|strong="H5307"\w* \w now|strong="H6258"\w* \w as|strong="H3068"\w* \w commander|strong="H8269"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w army|strong="H6635"\w*.” +\p \w Joshua|strong="H3091"\w* \w fell|strong="H5307"\w* \w on|strong="H5307"\w* \w his|strong="H3068"\w* \w face|strong="H6440"\w* \w to|strong="H1696"\w* \w the|strong="H6440"\w* earth, \w and|strong="H3068"\w* \w worshiped|strong="H7812"\w*, \w and|strong="H3068"\w* \w asked|strong="H4100"\w* \w him|strong="H6440"\w*, “\w What|strong="H4100"\w* \w does|strong="H4100"\w* \w my|strong="H3068"\w* \w lord|strong="H3068"\w* \w say|strong="H1696"\w* \w to|strong="H1696"\w* \w his|strong="H3068"\w* \w servant|strong="H5650"\w*?” +\p +\v 15 \w The|strong="H5921"\w* \w prince|strong="H8269"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w army|strong="H6635"\w* \w said|strong="H3651"\w* \w to|strong="H3068"\w* \w Joshua|strong="H3091"\w*, “\w Take|strong="H6213"\w* \w off|strong="H5921"\w* \w your|strong="H3068"\w* \w sandals|strong="H5275"\w*, \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w on|strong="H5921"\w* \w which|strong="H1931"\w* \w you|strong="H3588"\w* \w stand|strong="H5975"\w* \w is|strong="H3068"\w* \w holy|strong="H6944"\w*.” \w Joshua|strong="H3091"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*. +\c 6 +\p +\v 1 \w Now|strong="H3478"\w* \w Jericho|strong="H3405"\w* \w was|strong="H3478"\w* \w tightly|strong="H5462"\w* \w shut|strong="H5462"\w* \w up|strong="H5462"\w* \w because|strong="H6440"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w No|strong="H6440"\w* \w one|strong="H1121"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H1121"\w* \w no|strong="H6440"\w* \w one|strong="H1121"\w* \w came|strong="H3318"\w* \w in|strong="H3478"\w*. +\v 2 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Joshua|strong="H3091"\w*, “\w Behold|strong="H7200"\w*, \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w given|strong="H5414"\w* \w Jericho|strong="H3405"\w* \w into|strong="H3027"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*, \w with|strong="H3068"\w* \w its|strong="H5414"\w* \w king|strong="H4428"\w* \w and|strong="H3068"\w* \w the|strong="H7200"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H4428"\w* \w valor|strong="H2428"\w*. +\v 3 \w All|strong="H3605"\w* \w of|strong="H3117"\w* \w your|strong="H3605"\w* \w men|strong="H6213"\w* \w of|strong="H3117"\w* \w war|strong="H4421"\w* \w shall|strong="H3117"\w* \w march|strong="H5437"\w* \w around|strong="H5437"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, going \w around|strong="H5437"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w once|strong="H6471"\w*. \w You|strong="H3605"\w* \w shall|strong="H3117"\w* \w do|strong="H6213"\w* \w this|strong="H6213"\w* \w six|strong="H8337"\w* \w days|strong="H3117"\w*. +\v 4 \w Seven|strong="H7651"\w* \w priests|strong="H3548"\w* \w shall|strong="H3548"\w* \w bear|strong="H5375"\w* \w seven|strong="H7651"\w* \w trumpets|strong="H7782"\w* \w of|strong="H3117"\w* \w rams|strong="H3104"\w*’ \w horns|strong="H7782"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* ark. \w On|strong="H3117"\w* \w the|strong="H6440"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*, \w you|strong="H6440"\w* \w shall|strong="H3548"\w* \w march|strong="H5437"\w* \w around|strong="H5437"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w* \w seven|strong="H7651"\w* \w times|strong="H6471"\w*, \w and|strong="H3117"\w* \w the|strong="H6440"\w* \w priests|strong="H3548"\w* \w shall|strong="H3548"\w* \w blow|strong="H8628"\w* \w the|strong="H6440"\w* \w trumpets|strong="H7782"\w*. +\v 5 \w It|strong="H5927"\w* \w shall|strong="H5971"\w* \w be|strong="H1961"\w* \w that|strong="H5971"\w* \w when|strong="H1961"\w* \w they|strong="H5971"\w* \w make|strong="H8085"\w* \w a|strong="H3068"\w* \w long|strong="H3605"\w* \w blast|strong="H4900"\w* \w with|strong="H5971"\w* \w the|strong="H3605"\w* ram’s \w horn|strong="H7161"\w*, \w and|strong="H1419"\w* \w when|strong="H1961"\w* \w you|strong="H3605"\w* \w hear|strong="H8085"\w* \w the|strong="H3605"\w* \w sound|strong="H6963"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w trumpet|strong="H7782"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w shall|strong="H5971"\w* \w shout|strong="H7321"\w* \w with|strong="H5971"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w shout|strong="H7321"\w*; \w then|strong="H1961"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w wall|strong="H2346"\w* \w will|strong="H1961"\w* \w fall|strong="H5307"\w* \w down|strong="H5307"\w* \w flat|strong="H8478"\w*, \w and|strong="H1419"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w shall|strong="H5971"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w*, \w every|strong="H3605"\w* \w man|strong="H1419"\w* \w straight|strong="H5048"\w* \w in|strong="H8085"\w* \w front|strong="H5048"\w* \w of|strong="H5892"\w* \w him|strong="H6963"\w*.” +\p +\v 6 \w Joshua|strong="H3091"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w* \w called|strong="H7121"\w* \w the|strong="H6440"\w* \w priests|strong="H3548"\w*, \w and|strong="H1121"\w* \w said|strong="H7121"\w* \w to|strong="H3068"\w* \w them|strong="H6440"\w*, “\w Take|strong="H5375"\w* \w up|strong="H5375"\w* \w the|strong="H6440"\w* ark \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w covenant|strong="H1285"\w*, \w and|strong="H1121"\w* let \w seven|strong="H7651"\w* \w priests|strong="H3548"\w* \w bear|strong="H5375"\w* \w seven|strong="H7651"\w* \w trumpets|strong="H7782"\w* \w of|strong="H1121"\w* \w rams|strong="H3104"\w*’ \w horns|strong="H7782"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*’s ark.” +\p +\v 7 \w They|strong="H3068"\w* said \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*, “Advance! \w March|strong="H5437"\w* \w around|strong="H5437"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w*, \w and|strong="H3068"\w* let \w the|strong="H6440"\w* \w armed|strong="H2502"\w* \w men|strong="H5971"\w* \w pass|strong="H5674"\w* \w on|strong="H5674"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*’s ark.” +\p +\v 8 \w It|strong="H5375"\w* \w was|strong="H3068"\w* \w so|strong="H1980"\w*, \w that|strong="H5971"\w* \w when|strong="H1961"\w* \w Joshua|strong="H3091"\w* \w had|strong="H3068"\w* spoken \w to|strong="H1980"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*, \w the|strong="H6440"\w* \w seven|strong="H7651"\w* \w priests|strong="H3548"\w* \w bearing|strong="H5375"\w* \w the|strong="H6440"\w* \w seven|strong="H7651"\w* \w trumpets|strong="H7782"\w* \w of|strong="H3068"\w* \w rams|strong="H3104"\w*’ \w horns|strong="H7782"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w advanced|strong="H5375"\w* \w and|strong="H1980"\w* \w blew|strong="H8628"\w* \w the|strong="H6440"\w* \w trumpets|strong="H7782"\w*, \w and|strong="H1980"\w* \w the|strong="H6440"\w* ark \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w* \w followed|strong="H1980"\w* \w them|strong="H6440"\w*. +\v 9 \w The|strong="H6440"\w* \w armed|strong="H2502"\w* \w men|strong="H2502"\w* \w went|strong="H1980"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w priests|strong="H3548"\w* \w who|strong="H3548"\w* \w blew|strong="H8628"\w* \w the|strong="H6440"\w* \w trumpets|strong="H7782"\w*, \w and|strong="H1980"\w* \w the|strong="H6440"\w* ark \w went|strong="H1980"\w* \w after|strong="H1980"\w* \w them|strong="H6440"\w*. \w The|strong="H6440"\w* \w trumpets|strong="H7782"\w* \w sounded|strong="H8628"\w* \w as|strong="H6440"\w* \w they|strong="H6440"\w* \w went|strong="H1980"\w*. +\p +\v 10 \w Joshua|strong="H3091"\w* \w commanded|strong="H6680"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w*, \w saying|strong="H1697"\w*, “\w You|strong="H6680"\w* \w shall|strong="H5971"\w* \w not|strong="H3808"\w* \w shout|strong="H7321"\w* \w nor|strong="H3808"\w* \w let|strong="H3808"\w* \w your|strong="H8085"\w* \w voice|strong="H6963"\w* \w be|strong="H3808"\w* \w heard|strong="H8085"\w*, \w neither|strong="H3808"\w* \w shall|strong="H5971"\w* \w any|strong="H1697"\w* \w word|strong="H1697"\w* \w proceed|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3117"\w* \w your|strong="H8085"\w* \w mouth|strong="H6310"\w* \w until|strong="H5704"\w* \w the|strong="H8085"\w* \w day|strong="H3117"\w* \w I|strong="H3117"\w* \w tell|strong="H8085"\w* \w you|strong="H6680"\w* \w to|strong="H5704"\w* \w shout|strong="H7321"\w*. \w Then|strong="H3318"\w* \w you|strong="H6680"\w* \w shall|strong="H5971"\w* \w shout|strong="H7321"\w*.” +\v 11 \w So|strong="H5437"\w* \w he|strong="H3068"\w* caused \w Yahweh|strong="H3068"\w*’s ark \w to|strong="H3068"\w* \w go|strong="H5437"\w* \w around|strong="H5437"\w* \w the|strong="H3068"\w* \w city|strong="H5892"\w*, \w circling|strong="H5362"\w* \w it|strong="H5437"\w* \w once|strong="H6471"\w*. \w Then|strong="H3068"\w* \w they|strong="H3068"\w* \w came|strong="H3068"\w* \w into|strong="H5892"\w* \w the|strong="H3068"\w* \w camp|strong="H4264"\w*, \w and|strong="H3068"\w* \w stayed|strong="H3885"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w camp|strong="H4264"\w*. +\v 12 \w Joshua|strong="H3091"\w* \w rose|strong="H7925"\w* \w early|strong="H7925"\w* \w in|strong="H3068"\w* \w the|strong="H5375"\w* \w morning|strong="H1242"\w*, \w and|strong="H3068"\w* \w the|strong="H5375"\w* \w priests|strong="H3548"\w* \w took|strong="H5375"\w* \w up|strong="H5375"\w* \w Yahweh|strong="H3068"\w*’s ark. +\v 13 \w The|strong="H6440"\w* \w seven|strong="H7651"\w* \w priests|strong="H3548"\w* \w bearing|strong="H5375"\w* \w the|strong="H6440"\w* \w seven|strong="H7651"\w* \w trumpets|strong="H7782"\w* \w of|strong="H3068"\w* \w rams|strong="H3104"\w*’ \w horns|strong="H7782"\w* \w in|strong="H1980"\w* \w front|strong="H6440"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s ark \w went|strong="H1980"\w* \w on|strong="H1980"\w* \w continually|strong="H1980"\w*, \w and|strong="H1980"\w* \w blew|strong="H8628"\w* \w the|strong="H6440"\w* \w trumpets|strong="H7782"\w*. \w The|strong="H6440"\w* \w armed|strong="H2502"\w* \w men|strong="H2502"\w* \w went|strong="H1980"\w* \w in|strong="H1980"\w* \w front|strong="H6440"\w* \w of|strong="H3068"\w* \w them|strong="H6440"\w*. \w The|strong="H6440"\w* rear guard \w came|strong="H1980"\w* \w after|strong="H1980"\w* \w Yahweh|strong="H3068"\w*’s ark. \w The|strong="H6440"\w* \w trumpets|strong="H7782"\w* \w sounded|strong="H8628"\w* \w as|strong="H3068"\w* \w they|strong="H3068"\w* \w went|strong="H1980"\w*. +\v 14 \w The|strong="H3541"\w* \w second|strong="H8145"\w* \w day|strong="H3117"\w* \w they|strong="H3117"\w* \w marched|strong="H5437"\w* \w around|strong="H5437"\w* \w the|strong="H3541"\w* \w city|strong="H5892"\w* \w once|strong="H6471"\w*, \w and|strong="H7725"\w* \w returned|strong="H7725"\w* \w into|strong="H7725"\w* \w the|strong="H3541"\w* \w camp|strong="H4264"\w*. \w They|strong="H3117"\w* \w did|strong="H6213"\w* \w this|strong="H6213"\w* \w six|strong="H8337"\w* \w days|strong="H3117"\w*. +\p +\v 15 \w On|strong="H3117"\w* \w the|strong="H3117"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*, \w they|strong="H3117"\w* \w rose|strong="H7925"\w* \w early|strong="H7925"\w* \w at|strong="H3117"\w* \w the|strong="H3117"\w* \w dawning|strong="H7837"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w*, \w and|strong="H3117"\w* \w marched|strong="H5927"\w* \w around|strong="H5437"\w* \w the|strong="H3117"\w* \w city|strong="H5892"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w same|strong="H1931"\w* \w way|strong="H4941"\w* \w seven|strong="H7651"\w* \w times|strong="H6471"\w*. \w On|strong="H3117"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w* \w only|strong="H7535"\w* \w they|strong="H3117"\w* \w marched|strong="H5927"\w* \w around|strong="H5437"\w* \w the|strong="H3117"\w* \w city|strong="H5892"\w* \w seven|strong="H7651"\w* \w times|strong="H6471"\w*. +\v 16 \w At|strong="H3068"\w* \w the|strong="H3588"\w* \w seventh|strong="H7637"\w* \w time|strong="H6471"\w*, \w when|strong="H3588"\w* \w the|strong="H3588"\w* \w priests|strong="H3548"\w* \w blew|strong="H8628"\w* \w the|strong="H3588"\w* \w trumpets|strong="H7782"\w*, \w Joshua|strong="H3091"\w* said \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w*, “\w Shout|strong="H7321"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H3588"\w* \w the|strong="H3588"\w* \w city|strong="H5892"\w*! +\v 17 \w The|strong="H3605"\w* \w city|strong="H5892"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w devoted|strong="H2764"\w*, \w even|strong="H3588"\w* \w it|strong="H1931"\w* \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w it|strong="H1931"\w*, \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w Only|strong="H7535"\w* \w Rahab|strong="H7343"\w* \w the|strong="H3605"\w* \w prostitute|strong="H2181"\w* \w shall|strong="H3068"\w* \w live|strong="H2421"\w*, \w she|strong="H1931"\w* \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H3068"\w* \w with|strong="H1004"\w* \w her|strong="H3605"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*, \w because|strong="H3588"\w* \w she|strong="H1931"\w* \w hid|strong="H2244"\w* \w the|strong="H3605"\w* \w messengers|strong="H4397"\w* \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w sent|strong="H7971"\w*. +\v 18 \w But|strong="H7535"\w* \w as|strong="H3947"\w* \w for|strong="H3478"\w* \w you|strong="H3947"\w*, \w only|strong="H7535"\w* \w keep|strong="H8104"\w* yourselves \w from|strong="H4480"\w* what \w is|strong="H3478"\w* \w devoted|strong="H2764"\w* \w to|strong="H3478"\w* \w destruction|strong="H2764"\w*, \w lest|strong="H6435"\w* \w when|strong="H4480"\w* \w you|strong="H3947"\w* \w have|strong="H3478"\w* \w devoted|strong="H2764"\w* \w it|strong="H7760"\w*, \w you|strong="H3947"\w* \w take|strong="H3947"\w* \w of|strong="H4480"\w* \w the|strong="H3947"\w* \w devoted|strong="H2764"\w* \w thing|strong="H2764"\w*; \w so|strong="H4480"\w* \w you|strong="H3947"\w* \w would|strong="H3478"\w* \w make|strong="H7760"\w* \w the|strong="H3947"\w* \w camp|strong="H4264"\w* \w of|strong="H4480"\w* \w Israel|strong="H3478"\w* \w accursed|strong="H2764"\w* \w and|strong="H3478"\w* \w trouble|strong="H5916"\w* \w it|strong="H7760"\w*. +\v 19 \w But|strong="H1931"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w silver|strong="H3701"\w*, \w gold|strong="H2091"\w*, \w and|strong="H3068"\w* \w vessels|strong="H3627"\w* \w of|strong="H3068"\w* \w bronze|strong="H5178"\w* \w and|strong="H3068"\w* \w iron|strong="H1270"\w* \w are|strong="H3068"\w* \w holy|strong="H6944"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w They|strong="H3068"\w* \w shall|strong="H3068"\w* come \w into|strong="H3701"\w* \w Yahweh|strong="H3068"\w*’s treasury.” +\p +\v 20 \w So|strong="H1961"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w* \w shouted|strong="H7321"\w* \w and|strong="H1419"\w* \w the|strong="H8085"\w* priests \w blew|strong="H8628"\w* \w the|strong="H8085"\w* \w trumpets|strong="H7782"\w*. \w When|strong="H1961"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w sound|strong="H6963"\w* \w of|strong="H5892"\w* \w the|strong="H8085"\w* \w trumpet|strong="H7782"\w*, \w the|strong="H8085"\w* \w people|strong="H5971"\w* \w shouted|strong="H7321"\w* \w with|strong="H5971"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w shout|strong="H7321"\w*, \w and|strong="H1419"\w* \w the|strong="H8085"\w* \w wall|strong="H2346"\w* \w fell|strong="H5307"\w* \w down|strong="H5307"\w* \w flat|strong="H8478"\w*, \w so|strong="H1961"\w* \w that|strong="H5971"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H8085"\w* \w city|strong="H5892"\w*, \w every|strong="H5927"\w* \w man|strong="H1419"\w* \w straight|strong="H5048"\w* \w in|strong="H8085"\w* \w front|strong="H5048"\w* \w of|strong="H5892"\w* \w him|strong="H6963"\w*, \w and|strong="H1419"\w* \w they|strong="H5971"\w* \w took|strong="H3920"\w* \w the|strong="H8085"\w* \w city|strong="H5892"\w*. +\v 21 \w They|strong="H5704"\w* \w utterly|strong="H2763"\w* \w destroyed|strong="H2763"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w was|strong="H5892"\w* \w in|strong="H5892"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w both|strong="H3605"\w* \w man|strong="H5288"\w* \w and|strong="H5892"\w* woman, \w both|strong="H3605"\w* \w young|strong="H5288"\w* \w and|strong="H5892"\w* \w old|strong="H2205"\w*, \w and|strong="H5892"\w* \w ox|strong="H7794"\w*, \w sheep|strong="H7716"\w*, \w and|strong="H5892"\w* \w donkey|strong="H2543"\w*, \w with|strong="H5892"\w* \w the|strong="H3605"\w* \w edge|strong="H6310"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*. +\v 22 \w Joshua|strong="H3091"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w two|strong="H8147"\w* \w men|strong="H3605"\w* \w who|strong="H3605"\w* \w had|strong="H3091"\w* \w spied|strong="H7270"\w* \w out|strong="H3318"\w* \w the|strong="H3605"\w* land, “\w Go|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H3605"\w* \w prostitute|strong="H2181"\w*’s \w house|strong="H1004"\w*, \w and|strong="H1004"\w* \w bring|strong="H3318"\w* \w the|strong="H3605"\w* \w woman|strong="H1004"\w* \w and|strong="H1004"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w she|strong="H8147"\w* \w has|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w there|strong="H8033"\w*, \w as|strong="H3318"\w* \w you|strong="H3605"\w* \w swore|strong="H7650"\w* \w to|strong="H3318"\w* \w her|strong="H3605"\w*.” +\v 23 \w The|strong="H3605"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w spies|strong="H7270"\w* \w went|strong="H3318"\w* \w in|strong="H3478"\w*, \w and|strong="H3478"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w Rahab|strong="H7343"\w* \w with|strong="H3318"\w* \w her|strong="H3605"\w* father, \w her|strong="H3605"\w* mother, \w her|strong="H3605"\w* brothers, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* she \w had|strong="H3478"\w*. \w They|strong="H3478"\w* \w also|strong="H3478"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w all|strong="H3605"\w* \w of|strong="H4264"\w* \w her|strong="H3605"\w* \w relatives|strong="H4940"\w*, \w and|strong="H3478"\w* \w they|strong="H3478"\w* \w set|strong="H3240"\w* \w them|strong="H3318"\w* \w outside|strong="H2351"\w* \w of|strong="H4264"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w of|strong="H4264"\w* \w Israel|strong="H3478"\w*. +\v 24 \w They|strong="H3068"\w* \w burned|strong="H8313"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w with|strong="H8313"\w* fire, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w was|strong="H3068"\w* \w in|strong="H3068"\w* \w it|strong="H5414"\w*. \w Only|strong="H7535"\w* \w they|strong="H3068"\w* \w put|strong="H5414"\w* \w the|strong="H3605"\w* \w silver|strong="H3701"\w*, \w the|strong="H3605"\w* \w gold|strong="H2091"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H1004"\w* \w bronze|strong="H5178"\w* \w and|strong="H3068"\w* \w of|strong="H1004"\w* \w iron|strong="H1270"\w* \w into|strong="H3701"\w* \w the|strong="H3605"\w* \w treasury|strong="H1004"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 25 \w But|strong="H3588"\w* \w Rahab|strong="H7343"\w* \w the|strong="H3605"\w* \w prostitute|strong="H2181"\w*, \w her|strong="H3605"\w* father’s \w household|strong="H1004"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w she|strong="H3588"\w* \w had|strong="H3478"\w*, \w Joshua|strong="H3091"\w* \w saved|strong="H2421"\w* \w alive|strong="H2421"\w*. \w She|strong="H3588"\w* \w lives|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w middle|strong="H7130"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, \w because|strong="H3588"\w* \w she|strong="H3588"\w* \w hid|strong="H2244"\w* \w the|strong="H3605"\w* \w messengers|strong="H4397"\w* \w whom|strong="H3588"\w* \w Joshua|strong="H3091"\w* \w sent|strong="H7971"\w* \w to|strong="H5704"\w* \w spy|strong="H7270"\w* \w out|strong="H7971"\w* \w Jericho|strong="H3405"\w*. +\p +\v 26 \w Joshua|strong="H3091"\w* commanded \w them|strong="H6440"\w* \w with|strong="H3068"\w* \w an|strong="H1129"\w* \w oath|strong="H7650"\w* \w at|strong="H3068"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w*, saying, “Cursed \w is|strong="H3068"\w* \w the|strong="H6440"\w* \w man|strong="H6440"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H1931"\w* \w rises|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H6965"\w* \w builds|strong="H1129"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w Jericho|strong="H3405"\w*. \w With|strong="H3068"\w* \w the|strong="H6440"\w* loss \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w firstborn|strong="H1060"\w* \w he|strong="H1931"\w* \w will|strong="H3068"\w* \w lay|strong="H3245"\w* \w its|strong="H3245"\w* \w foundation|strong="H3245"\w*, \w and|strong="H6965"\w* \w with|strong="H3068"\w* \w the|strong="H6440"\w* loss \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w youngest|strong="H6810"\w* \w son|strong="H6810"\w* \w he|strong="H1931"\w* \w will|strong="H3068"\w* \w set|strong="H6965"\w* \w up|strong="H6965"\w* \w its|strong="H3245"\w* \w gates|strong="H1817"\w*.” +\v 27 \w So|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w with|strong="H3068"\w* \w Joshua|strong="H3091"\w*; \w and|strong="H3068"\w* \w his|strong="H3605"\w* \w fame|strong="H8089"\w* \w was|strong="H3068"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land. +\c 7 +\p +\v 1 \w But|strong="H3947"\w* \w the|strong="H3947"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w committed|strong="H4603"\w* \w a|strong="H3068"\w* \w trespass|strong="H4604"\w* \w in|strong="H3478"\w* \w the|strong="H3947"\w* \w devoted|strong="H2764"\w* \w things|strong="H2764"\w*; \w for|strong="H3068"\w* \w Achan|strong="H5912"\w*, \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Carmi|strong="H3756"\w*, \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zabdi|strong="H2067"\w*, \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zerah|strong="H2226"\w*, \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w took|strong="H3947"\w* \w some|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w devoted|strong="H2764"\w* \w things|strong="H2764"\w*. \w Therefore|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s anger \w burned|strong="H2734"\w* \w against|strong="H2734"\w* \w the|strong="H3947"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 2 \w Joshua|strong="H3091"\w* \w sent|strong="H7971"\w* men \w from|strong="H5927"\w* \w Jericho|strong="H3405"\w* \w to|strong="H7971"\w* \w Ai|strong="H5857"\w*, which \w is|strong="H7971"\w* \w beside|strong="H5973"\w* Beth Aven, \w on|strong="H5927"\w* \w the|strong="H7971"\w* \w east|strong="H6924"\w* \w side|strong="H6924"\w* \w of|strong="H6924"\w* \w Bethel|strong="H1008"\w*, \w and|strong="H7971"\w* spoke \w to|strong="H7971"\w* \w them|strong="H7971"\w*, saying, “\w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H7971"\w* \w spy|strong="H7270"\w* \w out|strong="H7971"\w* \w the|strong="H7971"\w* land.” +\p \w The|strong="H7971"\w* men \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H7971"\w* \w spied|strong="H7270"\w* \w out|strong="H7971"\w* \w Ai|strong="H5857"\w*. +\v 3 \w They|strong="H1992"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Joshua|strong="H3091"\w*, \w and|strong="H7725"\w* said \w to|strong="H7725"\w* \w him|strong="H5221"\w*, “Don’t \w let|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w*, \w but|strong="H3588"\w* \w let|strong="H7725"\w* \w about|strong="H8033"\w* \w two|strong="H5221"\w* \w or|strong="H4592"\w* \w three|strong="H7969"\w* thousand \w men|strong="H5971"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H7725"\w* \w strike|strong="H5221"\w* \w Ai|strong="H5857"\w*. Don’t \w make|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w to|strong="H7725"\w* \w toil|strong="H3021"\w* \w there|strong="H8033"\w*, \w for|strong="H3588"\w* \w there|strong="H8033"\w* \w are|strong="H1992"\w* \w only|strong="H3588"\w* \w a|strong="H3068"\w* \w few|strong="H4592"\w* \w of|strong="H5971"\w* \w them|strong="H1992"\w*.” +\v 4 \w So|strong="H4480"\w* \w about|strong="H4480"\w* \w three|strong="H7969"\w* thousand \w men|strong="H5971"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w there|strong="H8033"\w*, \w and|strong="H5971"\w* \w they|strong="H8033"\w* \w fled|strong="H5127"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w men|strong="H5971"\w* \w of|strong="H6440"\w* \w Ai|strong="H5857"\w*. +\v 5 \w The|strong="H6440"\w* \w men|strong="H5971"\w* \w of|strong="H6440"\w* \w Ai|strong="H5857"\w* \w struck|strong="H5221"\w* \w about|strong="H1961"\w* \w thirty-six|strong="H7970"\w* \w men|strong="H5971"\w* \w of|strong="H6440"\w* \w them|strong="H1992"\w*. \w They|strong="H1992"\w* \w chased|strong="H7291"\w* \w them|strong="H1992"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w gate|strong="H8179"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Shebarim|strong="H7671"\w*, \w and|strong="H7970"\w* \w struck|strong="H5221"\w* \w them|strong="H1992"\w* \w at|strong="H1961"\w* \w the|strong="H6440"\w* \w descent|strong="H4174"\w*. \w The|strong="H6440"\w* \w hearts|strong="H3824"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w melted|strong="H4549"\w*, \w and|strong="H7970"\w* \w became|strong="H1961"\w* \w like|strong="H1961"\w* \w water|strong="H4325"\w*. +\v 6 \w Joshua|strong="H3091"\w* \w tore|strong="H7167"\w* \w his|strong="H3068"\w* \w clothes|strong="H8071"\w*, \w and|strong="H3478"\w* \w fell|strong="H5307"\w* \w to|strong="H5704"\w* \w the|strong="H6440"\w* \w earth|strong="H6083"\w* \w on|strong="H5921"\w* \w his|strong="H3068"\w* \w face|strong="H6440"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*’s ark \w until|strong="H5704"\w* \w the|strong="H6440"\w* \w evening|strong="H6153"\w*, \w he|strong="H1931"\w* \w and|strong="H3478"\w* \w the|strong="H6440"\w* \w elders|strong="H2205"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w they|strong="H3068"\w* \w put|strong="H5927"\w* \w dust|strong="H6083"\w* \w on|strong="H5921"\w* \w their|strong="H3068"\w* \w heads|strong="H7218"\w*. +\v 7 \w Joshua|strong="H3091"\w* said, “Alas, \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, \w why|strong="H4100"\w* \w have|strong="H5971"\w* \w you|strong="H5414"\w* \w brought|strong="H5414"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w over|strong="H5674"\w* \w the|strong="H5414"\w* \w Jordan|strong="H3383"\w* \w at|strong="H3427"\w* \w all|strong="H5414"\w*, \w to|strong="H5414"\w* \w deliver|strong="H5414"\w* \w us|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5414"\w* Amorites, \w to|strong="H5414"\w* \w cause|strong="H5414"\w* \w us|strong="H5414"\w* \w to|strong="H5414"\w* \w perish|strong="H5674"\w*? \w I|strong="H5414"\w* wish \w that|strong="H5971"\w* \w we|strong="H3068"\w* \w had|strong="H3091"\w* \w been|strong="H5971"\w* \w content|strong="H2974"\w* \w and|strong="H3027"\w* \w lived|strong="H3427"\w* \w beyond|strong="H5676"\w* \w the|strong="H5414"\w* \w Jordan|strong="H3383"\w*! +\v 8 Oh, Lord, \w what|strong="H4100"\w* \w shall|strong="H3478"\w* \w I|strong="H4100"\w* \w say|strong="H3478"\w*, \w after|strong="H6203"\w* \w Israel|strong="H3478"\w* \w has|strong="H3478"\w* \w turned|strong="H2015"\w* \w their|strong="H6440"\w* \w backs|strong="H6203"\w* \w before|strong="H6440"\w* \w their|strong="H6440"\w* enemies? +\v 9 \w For|strong="H5921"\w* \w the|strong="H3605"\w* \w Canaanites|strong="H3669"\w* \w and|strong="H1419"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* land \w will|strong="H4100"\w* \w hear|strong="H8085"\w* \w of|strong="H3427"\w* \w it|strong="H5921"\w*, \w and|strong="H1419"\w* \w will|strong="H4100"\w* \w surround|strong="H5437"\w* \w us|strong="H5921"\w*, \w and|strong="H1419"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w our|strong="H3605"\w* \w name|strong="H8034"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* earth. \w What|strong="H4100"\w* \w will|strong="H4100"\w* \w you|strong="H3605"\w* \w do|strong="H6213"\w* \w for|strong="H5921"\w* \w your|strong="H3605"\w* \w great|strong="H1419"\w* \w name|strong="H8034"\w*?” +\p +\v 10 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Joshua|strong="H3091"\w*, “\w Get|strong="H6965"\w* \w up|strong="H6965"\w*! \w Why|strong="H4100"\w* \w have|strong="H3068"\w* \w you|strong="H6440"\w* \w fallen|strong="H5307"\w* \w on|strong="H5921"\w* \w your|strong="H3068"\w* \w face|strong="H6440"\w* \w like|strong="H5307"\w* \w that|strong="H3068"\w*? +\v 11 \w Israel|strong="H3478"\w* \w has|strong="H3478"\w* \w sinned|strong="H2398"\w*. \w Yes|strong="H1571"\w*, \w they|strong="H3478"\w* \w have|strong="H1571"\w* \w even|strong="H1571"\w* \w transgressed|strong="H5674"\w* \w my|strong="H7760"\w* \w covenant|strong="H1285"\w* \w which|strong="H3478"\w* \w I|strong="H7760"\w* \w commanded|strong="H6680"\w* \w them|strong="H7760"\w*. \w Yes|strong="H1571"\w*, \w they|strong="H3478"\w* \w have|strong="H1571"\w* \w even|strong="H1571"\w* \w taken|strong="H3947"\w* \w some|strong="H4480"\w* \w of|strong="H3627"\w* \w the|strong="H3947"\w* \w devoted|strong="H2764"\w* \w things|strong="H2764"\w*, \w and|strong="H3478"\w* \w have|strong="H1571"\w* \w also|strong="H1571"\w* \w stolen|strong="H1589"\w*, \w and|strong="H3478"\w* \w also|strong="H1571"\w* \w deceived|strong="H3584"\w*. \w They|strong="H3478"\w* \w have|strong="H1571"\w* \w even|strong="H1571"\w* \w put|strong="H7760"\w* \w it|strong="H7760"\w* \w among|strong="H4480"\w* \w their|strong="H3947"\w* own \w stuff|strong="H3627"\w*. +\v 12 \w Therefore|strong="H3588"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w can|strong="H3201"\w*’t \w stand|strong="H6965"\w* \w before|strong="H6440"\w* \w their|strong="H6440"\w* \w enemies|strong="H6965"\w*. \w They|strong="H3588"\w* \w turn|strong="H6437"\w* \w their|strong="H6440"\w* \w backs|strong="H6203"\w* \w before|strong="H6440"\w* \w their|strong="H6440"\w* \w enemies|strong="H6965"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w devoted|strong="H2764"\w* \w for|strong="H3588"\w* \w destruction|strong="H8045"\w*. \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w* \w any|strong="H6440"\w* \w more|strong="H3254"\w*, \w unless|strong="H3588"\w* \w you|strong="H3588"\w* \w destroy|strong="H8045"\w* \w the|strong="H6440"\w* \w devoted|strong="H2764"\w* \w things|strong="H2764"\w* \w from|strong="H6440"\w* \w among|strong="H7130"\w* \w you|strong="H3588"\w*. +\v 13 \w Get|strong="H6965"\w* \w up|strong="H6965"\w*! \w Sanctify|strong="H6942"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*, \w and|strong="H6965"\w* \w say|strong="H3478"\w*, ‘\w Sanctify|strong="H6942"\w* \w yourselves|strong="H6942"\w* \w for|strong="H3588"\w* \w tomorrow|strong="H4279"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*, “\w There|strong="H5704"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w devoted|strong="H2764"\w* \w thing|strong="H2764"\w* \w among|strong="H7130"\w* \w you|strong="H3588"\w*, \w Israel|strong="H3478"\w*. \w You|strong="H3588"\w* \w cannot|strong="H3808"\w* \w stand|strong="H6965"\w* \w before|strong="H6440"\w* \w your|strong="H3068"\w* \w enemies|strong="H6965"\w* \w until|strong="H5704"\w* \w you|strong="H3588"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w* \w the|strong="H6440"\w* \w devoted|strong="H2764"\w* \w thing|strong="H2764"\w* \w from|strong="H5493"\w* \w among|strong="H7130"\w* \w you|strong="H3588"\w*.” +\v 14 \w In|strong="H3068"\w* \w the|strong="H3068"\w* \w morning|strong="H1242"\w* \w therefore|strong="H3068"\w* \w you|strong="H7126"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w brought|strong="H7126"\w* \w near|strong="H7126"\w* \w by|strong="H3068"\w* \w your|strong="H3068"\w* \w tribes|strong="H7626"\w*. \w It|strong="H7126"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w that|strong="H3068"\w* \w the|strong="H3068"\w* \w tribe|strong="H7626"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w selects|strong="H3920"\w* \w shall|strong="H3068"\w* \w come|strong="H1961"\w* \w near|strong="H7126"\w* \w by|strong="H3068"\w* \w families|strong="H4940"\w*. \w The|strong="H3068"\w* \w family|strong="H4940"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w selects|strong="H3920"\w* \w shall|strong="H3068"\w* \w come|strong="H1961"\w* \w near|strong="H7126"\w* \w by|strong="H3068"\w* \w households|strong="H1004"\w*. \w The|strong="H3068"\w* \w household|strong="H1004"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w selects|strong="H3920"\w* \w shall|strong="H3068"\w* \w come|strong="H1961"\w* \w near|strong="H7126"\w* \w man|strong="H1397"\w* \w by|strong="H3068"\w* \w man|strong="H1397"\w*. +\v 15 \w It|strong="H3588"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w who|strong="H3605"\w* \w is|strong="H3068"\w* \w taken|strong="H3920"\w* \w with|strong="H8313"\w* \w the|strong="H3605"\w* \w devoted|strong="H2764"\w* \w thing|strong="H2764"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w burned|strong="H8313"\w* \w with|strong="H8313"\w* fire, \w he|strong="H3588"\w* \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w transgressed|strong="H5674"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w*, \w and|strong="H3478"\w* \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w* \w a|strong="H3068"\w* \w disgraceful|strong="H5039"\w* \w thing|strong="H2764"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*.’” +\p +\v 16 \w So|strong="H7126"\w* \w Joshua|strong="H3091"\w* \w rose|strong="H7925"\w* \w up|strong="H7925"\w* \w early|strong="H7925"\w* \w in|strong="H3478"\w* \w the|strong="H3091"\w* \w morning|strong="H1242"\w* \w and|strong="H3063"\w* \w brought|strong="H7126"\w* \w Israel|strong="H3478"\w* \w near|strong="H7126"\w* \w by|strong="H1242"\w* \w their|strong="H7126"\w* \w tribes|strong="H7626"\w*. \w The|strong="H3091"\w* \w tribe|strong="H7626"\w* \w of|strong="H7626"\w* \w Judah|strong="H3063"\w* \w was|strong="H3478"\w* selected. +\v 17 \w He|strong="H3063"\w* \w brought|strong="H7126"\w* \w near|strong="H7126"\w* \w the|strong="H7126"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w he|strong="H3063"\w* selected \w the|strong="H7126"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H7126"\w* \w Zerahites|strong="H2227"\w*. \w He|strong="H3063"\w* \w brought|strong="H7126"\w* \w near|strong="H7126"\w* \w the|strong="H7126"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H7126"\w* \w Zerahites|strong="H2227"\w* \w man|strong="H1397"\w* \w by|strong="H1397"\w* \w man|strong="H1397"\w*, \w and|strong="H3063"\w* \w Zabdi|strong="H2067"\w* \w was|strong="H3063"\w* selected. +\v 18 \w He|strong="H1004"\w* \w brought|strong="H7126"\w* \w near|strong="H7126"\w* \w his|strong="H7126"\w* \w household|strong="H1004"\w* \w man|strong="H1397"\w* \w by|strong="H1397"\w* \w man|strong="H1397"\w*, \w and|strong="H1121"\w* \w Achan|strong="H5912"\w*, \w the|strong="H7126"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Carmi|strong="H3756"\w*, \w the|strong="H7126"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zabdi|strong="H2067"\w*, \w the|strong="H7126"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zerah|strong="H2226"\w*, \w of|strong="H1121"\w* \w the|strong="H7126"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w was|strong="H1004"\w* selected. +\v 19 \w Joshua|strong="H3091"\w* said \w to|strong="H3478"\w* \w Achan|strong="H5912"\w*, “\w My|strong="H5414"\w* \w son|strong="H1121"\w*, \w please|strong="H4994"\w* \w give|strong="H5414"\w* \w glory|strong="H3519"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5414"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w make|strong="H6213"\w* \w confession|strong="H8426"\w* \w to|strong="H3478"\w* \w him|strong="H5414"\w*. \w Tell|strong="H5046"\w* \w me|strong="H5414"\w* \w now|strong="H4994"\w* \w what|strong="H4100"\w* \w you|strong="H5414"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w*! Don’t \w hide|strong="H3582"\w* \w it|strong="H5414"\w* \w from|strong="H4480"\w* \w me|strong="H5414"\w*!” +\p +\v 20 \w Achan|strong="H5912"\w* \w answered|strong="H6030"\w* \w Joshua|strong="H3091"\w*, \w and|strong="H3478"\w* \w said|strong="H6030"\w*, “\w I|strong="H3478"\w* \w have|strong="H3068"\w* \w truly|strong="H6213"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H6213"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w this|strong="H2063"\w* \w is|strong="H3068"\w* \w what|strong="H6213"\w* \w I|strong="H3478"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w*. +\v 21 \w When|strong="H7200"\w* \w I|strong="H2009"\w* \w saw|strong="H7200"\w* \w among|strong="H8432"\w* \w the|strong="H7200"\w* \w plunder|strong="H7998"\w* \w a|strong="H3068"\w* \w beautiful|strong="H2896"\w* Babylonian robe, \w two|strong="H3947"\w* \w hundred|strong="H3967"\w* \w shekels|strong="H8255"\w*\f + \fr 7:21 \ft A shekel is about 10 grams or about 0.35 ounces.\f* \w of|strong="H8432"\w* \w silver|strong="H3701"\w*, \w and|strong="H3967"\w* \w a|strong="H3068"\w* \w wedge|strong="H3956"\w* \w of|strong="H8432"\w* \w gold|strong="H2091"\w* \w weighing|strong="H4948"\w* \w fifty|strong="H2572"\w* \w shekels|strong="H8255"\w*, \w then|strong="H2009"\w* \w I|strong="H2009"\w* \w coveted|strong="H2530"\w* \w them|strong="H7200"\w* \w and|strong="H3967"\w* \w took|strong="H3947"\w* \w them|strong="H7200"\w*. \w Behold|strong="H2009"\w*, \w they|strong="H3947"\w* \w are|strong="H2896"\w* \w hidden|strong="H2934"\w* \w in|strong="H8432"\w* \w the|strong="H7200"\w* ground \w in|strong="H8432"\w* \w the|strong="H7200"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w my|strong="H7200"\w* tent, \w with|strong="H3947"\w* \w the|strong="H7200"\w* \w silver|strong="H3701"\w* \w under|strong="H8478"\w* \w it|strong="H8432"\w*.” +\p +\v 22 \w So|strong="H7971"\w* \w Joshua|strong="H3091"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w*, \w and|strong="H3701"\w* \w they|strong="H7323"\w* \w ran|strong="H7323"\w* \w to|strong="H7971"\w* \w the|strong="H8478"\w* tent. \w Behold|strong="H2009"\w*, \w it|strong="H7971"\w* \w was|strong="H3091"\w* \w hidden|strong="H2934"\w* \w in|strong="H3701"\w* \w his|strong="H7971"\w* tent, \w with|strong="H7971"\w* \w the|strong="H8478"\w* \w silver|strong="H3701"\w* \w under|strong="H8478"\w* \w it|strong="H7971"\w*. +\v 23 \w They|strong="H3068"\w* \w took|strong="H3947"\w* \w them|strong="H6440"\w* \w from|strong="H6440"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* tent, \w and|strong="H1121"\w* \w brought|strong="H3947"\w* \w them|strong="H6440"\w* \w to|strong="H3478"\w* \w Joshua|strong="H3091"\w* \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w They|strong="H3068"\w* \w laid|strong="H3478"\w* \w them|strong="H6440"\w* \w down|strong="H6440"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 24 \w Joshua|strong="H3091"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*, \w took|strong="H3947"\w* \w Achan|strong="H5912"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zerah|strong="H2226"\w*, \w the|strong="H3605"\w* \w silver|strong="H3701"\w*, \w the|strong="H3605"\w* robe, \w the|strong="H3605"\w* \w wedge|strong="H3956"\w* \w of|strong="H1121"\w* \w gold|strong="H2091"\w*, \w his|strong="H3605"\w* \w sons|strong="H1121"\w*, \w his|strong="H3605"\w* \w daughters|strong="H1323"\w*, \w his|strong="H3605"\w* \w cattle|strong="H6629"\w*, \w his|strong="H3605"\w* \w donkeys|strong="H2543"\w*, \w his|strong="H3605"\w* \w sheep|strong="H6629"\w*, \w his|strong="H3605"\w* tent, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w had|strong="H3478"\w*; \w and|strong="H1121"\w* \w they|strong="H3478"\w* \w brought|strong="H5927"\w* \w them|strong="H3947"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w valley|strong="H6010"\w* \w of|strong="H1121"\w* \w Achor|strong="H5911"\w*. +\v 25 \w Joshua|strong="H3091"\w* said, “\w Why|strong="H4100"\w* \w have|strong="H3068"\w* \w you|strong="H3605"\w* \w troubled|strong="H5916"\w* \w us|strong="H3117"\w*? \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w trouble|strong="H5916"\w* \w you|strong="H3605"\w* \w today|strong="H3117"\w*.” \w All|strong="H3605"\w* \w Israel|strong="H3478"\w* \w stoned|strong="H5619"\w* \w him|strong="H3605"\w* \w with|strong="H8313"\w* \w stones|strong="H5619"\w*, \w and|strong="H3478"\w* \w they|strong="H3117"\w* \w burned|strong="H8313"\w* \w them|strong="H8313"\w* \w with|strong="H8313"\w* fire \w and|strong="H3478"\w* \w stoned|strong="H5619"\w* \w them|strong="H8313"\w* \w with|strong="H8313"\w* \w stones|strong="H5619"\w*. +\v 26 \w They|strong="H3117"\w* \w raised|strong="H6965"\w* \w over|strong="H5921"\w* \w him|strong="H7121"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w heap|strong="H1530"\w* \w of|strong="H3068"\w* stones \w that|strong="H3117"\w* remains \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. \w Yahweh|strong="H3068"\w* \w turned|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H5921"\w* \w fierceness|strong="H2740"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w anger|strong="H2740"\w*. \w Therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w that|strong="H3117"\w* \w place|strong="H4725"\w* \w was|strong="H3068"\w* \w called|strong="H7121"\w* “\w The|strong="H5921"\w* \w valley|strong="H6010"\w* \w of|strong="H3068"\w* \w Achor|strong="H5911"\w*” \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\c 8 +\p +\v 1 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Joshua|strong="H3091"\w*, “Don’t \w be|strong="H3027"\w* \w afraid|strong="H3372"\w*, \w and|strong="H6965"\w* don’t \w be|strong="H3027"\w* \w dismayed|strong="H2865"\w*. \w Take|strong="H3947"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w warriors|strong="H4421"\w* \w with|strong="H5973"\w* \w you|strong="H5414"\w*, \w and|strong="H6965"\w* \w arise|strong="H6965"\w*, \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w Ai|strong="H5857"\w*. \w Behold|strong="H7200"\w*, \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w given|strong="H5414"\w* \w into|strong="H5927"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Ai|strong="H5857"\w*, \w with|strong="H5973"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*, \w his|strong="H3605"\w* \w city|strong="H5892"\w*, \w and|strong="H6965"\w* \w his|strong="H3605"\w* land. +\v 2 \w You|strong="H6213"\w* \w shall|strong="H4428"\w* \w do|strong="H6213"\w* \w to|strong="H6213"\w* \w Ai|strong="H5857"\w* \w and|strong="H4428"\w* \w her|strong="H7760"\w* \w king|strong="H4428"\w* \w as|strong="H6213"\w* \w you|strong="H6213"\w* \w did|strong="H6213"\w* \w to|strong="H6213"\w* \w Jericho|strong="H3405"\w* \w and|strong="H4428"\w* \w her|strong="H7760"\w* \w king|strong="H4428"\w*, \w except|strong="H7535"\w* \w you|strong="H6213"\w* \w shall|strong="H4428"\w* \w take|strong="H7760"\w* \w its|strong="H6213"\w* goods \w and|strong="H4428"\w* \w its|strong="H6213"\w* livestock \w for|strong="H6213"\w* yourselves. \w Set|strong="H7760"\w* \w an|strong="H6213"\w* ambush \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w city|strong="H5892"\w* behind \w it|strong="H7760"\w*.” +\p +\v 3 \w So|strong="H7971"\w* \w Joshua|strong="H3091"\w* \w arose|strong="H6965"\w*, \w with|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w warriors|strong="H1368"\w*, \w to|strong="H7971"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H7971"\w* \w Ai|strong="H5857"\w*. \w Joshua|strong="H3091"\w* \w chose|strong="H3091"\w* \w thirty|strong="H7970"\w* thousand \w men|strong="H1368"\w*, \w the|strong="H3605"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H1368"\w* \w valor|strong="H2428"\w*, \w and|strong="H6965"\w* \w sent|strong="H7971"\w* \w them|strong="H7971"\w* \w out|strong="H7971"\w* \w by|strong="H6965"\w* \w night|strong="H3915"\w*. +\v 4 \w He|strong="H3605"\w* \w commanded|strong="H6680"\w* \w them|strong="H6680"\w*, saying, “\w Behold|strong="H7200"\w*, \w you|strong="H6680"\w* \w shall|strong="H5892"\w* \w lie|strong="H1961"\w* \w in|strong="H5892"\w* ambush \w against|strong="H4480"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w behind|strong="H4480"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*. Don’t \w go|strong="H1961"\w* \w very|strong="H3966"\w* \w far|strong="H7368"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w but|strong="H1961"\w* \w all|strong="H3605"\w* \w of|strong="H5892"\w* \w you|strong="H6680"\w* \w be|strong="H1961"\w* \w ready|strong="H3559"\w*. +\v 5 \w I|strong="H3588"\w* \w and|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w are|strong="H5971"\w* \w with|strong="H6440"\w* \w me|strong="H6440"\w* \w will|strong="H1961"\w* \w approach|strong="H7126"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*. \w It|strong="H7126"\w* \w shall|strong="H5971"\w* \w happen|strong="H1961"\w*, \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w come|strong="H1961"\w* \w out|strong="H3318"\w* \w against|strong="H7125"\w* \w us|strong="H6440"\w*, \w as|strong="H1961"\w* \w at|strong="H1961"\w* \w the|strong="H3605"\w* \w first|strong="H7223"\w*, \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w will|strong="H1961"\w* \w flee|strong="H5127"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*. +\v 6 \w They|strong="H3588"\w* \w will|strong="H5892"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w after|strong="H4480"\w* \w us|strong="H6440"\w* \w until|strong="H5704"\w* \w we|strong="H3068"\w* \w have|strong="H7223"\w* \w drawn|strong="H5423"\w* \w them|strong="H6440"\w* \w away|strong="H5127"\w* \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H5892"\w* say, ‘\w They|strong="H3588"\w* \w flee|strong="H5127"\w* \w before|strong="H6440"\w* \w us|strong="H6440"\w*, \w like|strong="H3318"\w* \w the|strong="H6440"\w* \w first|strong="H7223"\w* \w time|strong="H7223"\w*.’ \w So|strong="H4480"\w* \w we|strong="H3068"\w* \w will|strong="H5892"\w* \w flee|strong="H5127"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*, +\v 7 \w and|strong="H6965"\w* \w you|strong="H5414"\w* \w shall|strong="H3068"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w from|strong="H3027"\w* \w the|strong="H5414"\w* ambush, \w and|strong="H6965"\w* \w take|strong="H3423"\w* \w possession|strong="H3423"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* \w city|strong="H5892"\w*; \w for|strong="H3027"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w deliver|strong="H5414"\w* \w it|strong="H5414"\w* \w into|strong="H3027"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*. +\v 8 \w It|strong="H6213"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w*, \w when|strong="H1961"\w* \w you|strong="H6680"\w* \w have|strong="H1961"\w* \w seized|strong="H8610"\w* \w the|strong="H7200"\w* \w city|strong="H5892"\w*, \w that|strong="H7200"\w* \w you|strong="H6680"\w* \w shall|strong="H3068"\w* \w set|strong="H3341"\w* \w the|strong="H7200"\w* \w city|strong="H5892"\w* \w on|strong="H7200"\w* \w fire|strong="H3341"\w*. \w You|strong="H6680"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w this|strong="H6213"\w* according \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*. \w Behold|strong="H7200"\w*, \w I|strong="H1697"\w* \w have|strong="H1961"\w* \w commanded|strong="H6680"\w* \w you|strong="H6680"\w*.” +\p +\v 9 \w Joshua|strong="H3091"\w* \w sent|strong="H7971"\w* \w them|strong="H7971"\w* \w out|strong="H7971"\w*; \w and|strong="H7971"\w* \w they|strong="H1931"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w set|strong="H7971"\w* \w up|strong="H3212"\w* \w the|strong="H8432"\w* \w ambush|strong="H3993"\w*, \w and|strong="H7971"\w* \w stayed|strong="H3427"\w* \w between|strong="H8432"\w* \w Bethel|strong="H1008"\w* \w and|strong="H7971"\w* \w Ai|strong="H5857"\w* \w on|strong="H3427"\w* \w the|strong="H8432"\w* \w west|strong="H3220"\w* \w side|strong="H3220"\w* \w of|strong="H3427"\w* \w Ai|strong="H5857"\w*; \w but|strong="H1931"\w* \w Joshua|strong="H3091"\w* \w stayed|strong="H3427"\w* \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w people|strong="H5971"\w* \w that|strong="H5971"\w* \w night|strong="H3915"\w*. +\v 10 \w Joshua|strong="H3091"\w* \w rose|strong="H7925"\w* \w up|strong="H5927"\w* \w early|strong="H7925"\w* \w in|strong="H3478"\w* \w the|strong="H6440"\w* \w morning|strong="H1242"\w*, \w mustered|strong="H6485"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*, \w and|strong="H3478"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w*, \w he|strong="H1931"\w* \w and|strong="H3478"\w* \w the|strong="H6440"\w* \w elders|strong="H2205"\w* \w of|strong="H6440"\w* \w Israel|strong="H3478"\w*, \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w to|strong="H3478"\w* \w Ai|strong="H5857"\w*. +\v 11 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, even \w the|strong="H3605"\w* \w men|strong="H5971"\w* \w of|strong="H5892"\w* \w war|strong="H4421"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w with|strong="H5971"\w* \w him|strong="H3605"\w*, \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H5971"\w* \w came|strong="H5927"\w* \w near|strong="H5066"\w*, \w and|strong="H5971"\w* \w came|strong="H5927"\w* \w before|strong="H5048"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w and|strong="H5971"\w* \w encamped|strong="H2583"\w* \w on|strong="H5927"\w* \w the|strong="H3605"\w* \w north|strong="H6828"\w* \w side|strong="H6828"\w* \w of|strong="H5892"\w* \w Ai|strong="H5857"\w*. Now \w there|strong="H5927"\w* \w was|strong="H5892"\w* \w a|strong="H3068"\w* \w valley|strong="H1516"\w* \w between|strong="H4421"\w* \w him|strong="H3605"\w* \w and|strong="H5971"\w* \w Ai|strong="H5857"\w*. +\v 12 \w He|strong="H2568"\w* \w took|strong="H3947"\w* \w about|strong="H3947"\w* \w five|strong="H2568"\w* thousand \w men|strong="H3220"\w*, \w and|strong="H5892"\w* \w set|strong="H7760"\w* \w them|strong="H7760"\w* \w in|strong="H5892"\w* ambush between \w Bethel|strong="H1008"\w* \w and|strong="H5892"\w* \w Ai|strong="H5857"\w*, \w on|strong="H7760"\w* \w the|strong="H3947"\w* \w west|strong="H3220"\w* \w side|strong="H3220"\w* \w of|strong="H5892"\w* \w the|strong="H3947"\w* \w city|strong="H5892"\w*. +\v 13 \w So|strong="H7760"\w* \w they|strong="H1931"\w* \w set|strong="H7760"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, even \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H4264"\w* \w who|strong="H3605"\w* \w was|strong="H1931"\w* \w on|strong="H7760"\w* \w the|strong="H3605"\w* \w north|strong="H6828"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w and|strong="H3212"\w* \w their|strong="H3605"\w* ambush \w on|strong="H7760"\w* \w the|strong="H3605"\w* \w west|strong="H3220"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*; \w and|strong="H3212"\w* \w Joshua|strong="H3091"\w* \w went|strong="H3212"\w* \w that|strong="H5971"\w* \w night|strong="H3915"\w* \w into|strong="H8432"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w valley|strong="H6010"\w*. +\v 14 \w When|strong="H3588"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Ai|strong="H5857"\w* \w saw|strong="H7200"\w* \w it|strong="H1931"\w*, \w they|strong="H3588"\w* \w hurried|strong="H4116"\w* \w and|strong="H3478"\w* \w rose|strong="H7925"\w* \w up|strong="H7925"\w* \w early|strong="H7925"\w*, \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w men|strong="H5971"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w against|strong="H7125"\w* \w Israel|strong="H3478"\w* \w to|strong="H3318"\w* \w battle|strong="H4421"\w*, \w he|strong="H1931"\w* \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*, \w at|strong="H3478"\w* \w the|strong="H3605"\w* \w time|strong="H4150"\w* \w appointed|strong="H4150"\w*, \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w Arabah|strong="H6160"\w*; \w but|strong="H3588"\w* \w he|strong="H1931"\w* didn’t \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w an|strong="H1961"\w* ambush \w against|strong="H7125"\w* \w him|strong="H6440"\w* behind \w the|strong="H3605"\w* \w city|strong="H5892"\w*. +\v 15 \w Joshua|strong="H3091"\w* \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w made|strong="H3478"\w* \w as|strong="H6440"\w* if \w they|strong="H3605"\w* \w were|strong="H3478"\w* \w beaten|strong="H5060"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*, \w and|strong="H3478"\w* \w fled|strong="H5127"\w* \w by|strong="H1870"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w*. +\v 16 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w in|strong="H5892"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w were|strong="H5971"\w* \w called|strong="H2199"\w* \w together|strong="H2199"\w* \w to|strong="H5971"\w* \w pursue|strong="H7291"\w* \w after|strong="H4480"\w* \w them|strong="H7291"\w*. \w They|strong="H5971"\w* \w pursued|strong="H7291"\w* \w Joshua|strong="H3091"\w*, \w and|strong="H5971"\w* \w were|strong="H5971"\w* \w drawn|strong="H5423"\w* \w away|strong="H5423"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*. +\v 17 \w There|strong="H7604"\w* \w was|strong="H3478"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* man \w left|strong="H7604"\w* \w in|strong="H3478"\w* \w Ai|strong="H5857"\w* \w or|strong="H3808"\w* \w Bethel|strong="H1008"\w* \w who|strong="H3478"\w* didn’t \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w after|strong="H7291"\w* \w Israel|strong="H3478"\w*. \w They|strong="H3808"\w* \w left|strong="H7604"\w* \w the|strong="H3318"\w* \w city|strong="H5892"\w* \w open|strong="H6605"\w*, \w and|strong="H3478"\w* \w pursued|strong="H7291"\w* \w Israel|strong="H3478"\w*. +\p +\v 18 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Joshua|strong="H3091"\w*, “\w Stretch|strong="H5186"\w* \w out|strong="H5186"\w* \w the|strong="H3588"\w* \w javelin|strong="H3591"\w* \w that|strong="H3588"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w toward|strong="H3027"\w* \w Ai|strong="H5857"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w into|strong="H3027"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*.” +\p \w Joshua|strong="H3091"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w the|strong="H3588"\w* \w javelin|strong="H3591"\w* \w that|strong="H3588"\w* \w was|strong="H3068"\w* \w in|strong="H3068"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w* \w toward|strong="H3027"\w* \w the|strong="H3588"\w* \w city|strong="H5892"\w*. +\v 19 \w The|strong="H6965"\w* ambush \w arose|strong="H6965"\w* \w quickly|strong="H4116"\w* \w out|strong="H5186"\w* \w of|strong="H3027"\w* \w their|strong="H5186"\w* \w place|strong="H4725"\w*, \w and|strong="H6965"\w* \w they|strong="H7323"\w* \w ran|strong="H7323"\w* \w as|strong="H5892"\w* \w soon|strong="H4116"\w* \w as|strong="H5892"\w* \w he|strong="H3027"\w* \w had|strong="H3027"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w his|strong="H5186"\w* \w hand|strong="H3027"\w* \w and|strong="H6965"\w* entered \w into|strong="H3027"\w* \w the|strong="H6965"\w* \w city|strong="H5892"\w* \w and|strong="H6965"\w* \w took|strong="H3920"\w* \w it|strong="H5186"\w*. \w They|strong="H7323"\w* \w hurried|strong="H4116"\w* \w and|strong="H6965"\w* \w set|strong="H6965"\w* \w the|strong="H6965"\w* \w city|strong="H5892"\w* \w on|strong="H3027"\w* \w fire|strong="H3341"\w*. +\v 20 \w When|strong="H1961"\w* \w the|strong="H7200"\w* \w men|strong="H5971"\w* \w of|strong="H3027"\w* \w Ai|strong="H5857"\w* \w looked|strong="H7200"\w* behind \w them|strong="H3027"\w*, \w they|strong="H3808"\w* \w saw|strong="H7200"\w*, \w and|strong="H8064"\w* \w behold|strong="H2009"\w*, \w the|strong="H7200"\w* \w smoke|strong="H6227"\w* \w of|strong="H3027"\w* \w the|strong="H7200"\w* \w city|strong="H5892"\w* \w ascended|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w heaven|strong="H8064"\w*, \w and|strong="H8064"\w* \w they|strong="H3808"\w* \w had|strong="H1961"\w* \w no|strong="H3808"\w* \w power|strong="H3027"\w* \w to|strong="H5927"\w* \w flee|strong="H5127"\w* \w this|strong="H7200"\w* \w way|strong="H2008"\w* \w or|strong="H3808"\w* \w that|strong="H5971"\w* \w way|strong="H2008"\w*. \w The|strong="H7200"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w fled|strong="H5127"\w* \w to|strong="H5927"\w* \w the|strong="H7200"\w* \w wilderness|strong="H4057"\w* \w turned|strong="H2015"\w* \w back|strong="H6437"\w* \w on|strong="H7200"\w* \w the|strong="H7200"\w* \w pursuers|strong="H7291"\w*. +\v 21 \w When|strong="H3588"\w* \w Joshua|strong="H3091"\w* \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* ambush \w had|strong="H3478"\w* \w taken|strong="H3920"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w and|strong="H3478"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w smoke|strong="H6227"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w ascended|strong="H5927"\w*, \w then|strong="H7725"\w* \w they|strong="H3588"\w* \w turned|strong="H7725"\w* \w back|strong="H7725"\w* \w and|strong="H3478"\w* \w killed|strong="H5221"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H5892"\w* \w Ai|strong="H5857"\w*. +\v 22 \w The|strong="H5221"\w* others \w came|strong="H1961"\w* \w out|strong="H3318"\w* \w of|strong="H5892"\w* \w the|strong="H5221"\w* \w city|strong="H5892"\w* \w against|strong="H7125"\w* \w them|strong="H5221"\w*, \w so|strong="H4480"\w* \w they|strong="H5704"\w* \w were|strong="H3478"\w* \w in|strong="H3478"\w* \w the|strong="H5221"\w* \w middle|strong="H8432"\w* \w of|strong="H5892"\w* \w Israel|strong="H3478"\w*, \w some|strong="H4480"\w* \w on|strong="H1961"\w* \w this|strong="H2088"\w* \w side|strong="H2088"\w*, \w and|strong="H3478"\w* \w some|strong="H4480"\w* \w on|strong="H1961"\w* \w that|strong="H3478"\w* \w side|strong="H2088"\w*. \w They|strong="H5704"\w* \w struck|strong="H5221"\w* \w them|strong="H5221"\w*, \w so|strong="H4480"\w* \w that|strong="H3478"\w* \w they|strong="H5704"\w* \w let|strong="H7604"\w* \w none|strong="H7604"\w* \w of|strong="H5892"\w* \w them|strong="H5221"\w* \w remain|strong="H7604"\w* \w or|strong="H5704"\w* \w escape|strong="H6412"\w*. +\v 23 \w They|strong="H5857"\w* \w captured|strong="H8610"\w* \w the|strong="H3091"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Ai|strong="H5857"\w* \w alive|strong="H2416"\w*, \w and|strong="H4428"\w* \w brought|strong="H7126"\w* \w him|strong="H3091"\w* \w to|strong="H4428"\w* \w Joshua|strong="H3091"\w*. +\p +\v 24 \w When|strong="H1961"\w* \w Israel|strong="H3478"\w* \w had|strong="H1961"\w* \w finished|strong="H3615"\w* \w killing|strong="H2026"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Ai|strong="H5857"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*, \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* \w in|strong="H3427"\w* \w which|strong="H3478"\w* \w they|strong="H5704"\w* \w pursued|strong="H7291"\w* \w them|strong="H7725"\w*, \w and|strong="H3478"\w* \w they|strong="H5704"\w* \w had|strong="H1961"\w* \w all|strong="H3605"\w* \w fallen|strong="H5307"\w* \w by|strong="H3478"\w* \w the|strong="H3605"\w* \w edge|strong="H6310"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w* \w until|strong="H5704"\w* \w they|strong="H5704"\w* \w were|strong="H3478"\w* \w consumed|strong="H3615"\w*, \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w returned|strong="H7725"\w* \w to|strong="H5704"\w* \w Ai|strong="H5857"\w* \w and|strong="H3478"\w* \w struck|strong="H5221"\w* \w it|strong="H7725"\w* \w with|strong="H3427"\w* \w the|strong="H3605"\w* \w edge|strong="H6310"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*. +\v 25 \w All|strong="H3605"\w* \w that|strong="H3605"\w* \w fell|strong="H5307"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w*, \w both|strong="H8147"\w* \w of|strong="H3117"\w* \w men|strong="H3605"\w* \w and|strong="H3117"\w* women, \w were|strong="H1961"\w* \w twelve|strong="H8147"\w* thousand, \w even|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H1931"\w* \w of|strong="H3117"\w* \w Ai|strong="H5857"\w*. +\v 26 \w For|strong="H5704"\w* \w Joshua|strong="H3091"\w* didn’t \w draw|strong="H7725"\w* \w back|strong="H7725"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*, \w with|strong="H3427"\w* \w which|strong="H3605"\w* \w he|strong="H5704"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w the|strong="H3605"\w* \w javelin|strong="H3591"\w*, \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w had|strong="H3091"\w* \w utterly|strong="H2763"\w* \w destroyed|strong="H2763"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3027"\w* \w Ai|strong="H5857"\w*. +\v 27 \w Israel|strong="H3478"\w* \w took|strong="H3478"\w* \w for|strong="H3068"\w* \w themselves|strong="H1992"\w* \w only|strong="H7535"\w* \w the|strong="H3068"\w* livestock \w and|strong="H3478"\w* \w the|strong="H3068"\w* goods \w of|strong="H3068"\w* \w that|strong="H1931"\w* \w city|strong="H5892"\w*, according \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w commanded|strong="H6680"\w* \w Joshua|strong="H3091"\w*. +\v 28 \w So|strong="H2088"\w* \w Joshua|strong="H3091"\w* \w burned|strong="H8313"\w* \w Ai|strong="H5857"\w* \w and|strong="H3117"\w* \w made|strong="H7760"\w* \w it|strong="H7760"\w* \w a|strong="H3068"\w* \w heap|strong="H8510"\w* \w forever|strong="H5769"\w*, \w even|strong="H5704"\w* \w a|strong="H3068"\w* \w desolation|strong="H8077"\w*, \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 29 \w He|strong="H3117"\w* \w hanged|strong="H8518"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Ai|strong="H5857"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w tree|strong="H6086"\w* \w until|strong="H5704"\w* \w the|strong="H5921"\w* \w evening|strong="H6153"\w*. \w At|strong="H5921"\w* \w sundown|strong="H8121"\w*, \w Joshua|strong="H3091"\w* \w commanded|strong="H6680"\w*, \w and|strong="H6965"\w* \w they|strong="H3117"\w* \w took|strong="H3381"\w* \w his|strong="H5921"\w* \w body|strong="H5038"\w* \w down|strong="H3381"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* \w tree|strong="H6086"\w* \w and|strong="H6965"\w* \w threw|strong="H7993"\w* \w it|strong="H5921"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w entrance|strong="H6607"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w gate|strong="H8179"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*, \w and|strong="H6965"\w* \w raised|strong="H6965"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w heap|strong="H1530"\w* \w of|strong="H4428"\w* stones \w on|strong="H5921"\w* \w it|strong="H5921"\w* \w that|strong="H3117"\w* remains \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\p +\v 30 \w Then|strong="H3068"\w* \w Joshua|strong="H3091"\w* \w built|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w on|strong="H3068"\w* \w Mount|strong="H2022"\w* \w Ebal|strong="H5858"\w*, +\v 31 \w as|strong="H3068"\w* \w Moses|strong="H4872"\w* \w the|strong="H5921"\w* \w servant|strong="H5650"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w as|strong="H3068"\w* \w it|strong="H5921"\w* \w is|strong="H3068"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w law|strong="H8451"\w* \w of|strong="H1121"\w* \w Moses|strong="H4872"\w*: \w an|strong="H5130"\w* \w altar|strong="H4196"\w* \w of|strong="H1121"\w* \w uncut|strong="H8003"\w* stones, \w on|strong="H5921"\w* \w which|strong="H3068"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w had|strong="H3068"\w* \w lifted|strong="H5927"\w* \w up|strong="H5927"\w* \w any|strong="H5927"\w* \w iron|strong="H1270"\w*. \w They|strong="H3068"\w* \w offered|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H1121"\w* \w sacrificed|strong="H2076"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*. +\v 32 \w He|strong="H8033"\w* \w wrote|strong="H3789"\w* \w there|strong="H8033"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* stones \w a|strong="H3068"\w* \w copy|strong="H4932"\w* \w of|strong="H1121"\w* \w Moses|strong="H4872"\w*’ \w law|strong="H8451"\w*, \w which|strong="H8033"\w* \w he|strong="H8033"\w* \w wrote|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 33 \w All|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w with|strong="H3068"\w* \w their|strong="H3605"\w* \w elders|strong="H2205"\w*, \w officers|strong="H7860"\w*, \w and|strong="H4872"\w* \w judges|strong="H8199"\w*, \w stood|strong="H5975"\w* \w on|strong="H3068"\w* \w both|strong="H3605"\w* \w sides|strong="H2088"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* ark \w before|strong="H5048"\w* \w the|strong="H3605"\w* \w Levitical|strong="H3881"\w* \w priests|strong="H3548"\w*, \w who|strong="H3605"\w* \w carried|strong="H5375"\w* \w the|strong="H3605"\w* ark \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w*, \w the|strong="H3605"\w* \w foreigner|strong="H1616"\w* \w as|strong="H3068"\w* well \w as|strong="H3068"\w* \w the|strong="H3605"\w* native; \w half|strong="H2677"\w* \w of|strong="H3068"\w* \w them|strong="H5975"\w* \w in|strong="H3478"\w* \w front|strong="H5048"\w* \w of|strong="H3068"\w* \w Mount|strong="H2022"\w* \w Gerizim|strong="H1630"\w*, \w and|strong="H4872"\w* \w half|strong="H2677"\w* \w of|strong="H3068"\w* \w them|strong="H5975"\w* \w in|strong="H3478"\w* \w front|strong="H5048"\w* \w of|strong="H3068"\w* \w Mount|strong="H2022"\w* \w Ebal|strong="H5858"\w*, \w as|strong="H3068"\w* \w Moses|strong="H4872"\w* \w the|strong="H3605"\w* \w servant|strong="H5650"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w commanded|strong="H6680"\w* \w at|strong="H3478"\w* \w the|strong="H3605"\w* \w first|strong="H7223"\w*, \w that|strong="H5971"\w* \w they|strong="H3068"\w* \w should|strong="H3068"\w* \w bless|strong="H1288"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\v 34 Afterward \w he|strong="H3651"\w* \w read|strong="H7121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w*, \w the|strong="H3605"\w* \w blessing|strong="H1293"\w* \w and|strong="H1697"\w* \w the|strong="H3605"\w* \w curse|strong="H7045"\w*, according \w to|strong="H1697"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H1697"\w* \w written|strong="H3789"\w* \w in|strong="H3789"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w*. +\v 35 \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w word|strong="H1697"\w* \w of|strong="H1697"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Moses|strong="H4872"\w* \w commanded|strong="H6680"\w* \w which|strong="H1697"\w* \w Joshua|strong="H3091"\w* didn’t \w read|strong="H7121"\w* \w before|strong="H5048"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w of|strong="H1697"\w* \w Israel|strong="H3478"\w*, \w with|strong="H1980"\w* \w the|strong="H3605"\w* women, \w the|strong="H3605"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*, \w and|strong="H1980"\w* \w the|strong="H3605"\w* \w foreigners|strong="H1616"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w among|strong="H7130"\w* \w them|strong="H7121"\w*. +\c 9 +\p +\v 1 \w When|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w beyond|strong="H5676"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*, \w in|strong="H4428"\w* \w the|strong="H3605"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*, \w and|strong="H4428"\w* \w in|strong="H4428"\w* \w the|strong="H3605"\w* \w lowland|strong="H8219"\w*, \w and|strong="H4428"\w* \w on|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w shore|strong="H2348"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w great|strong="H1419"\w* \w sea|strong="H3220"\w* \w in|strong="H4428"\w* \w front|strong="H4136"\w* \w of|strong="H4428"\w* \w Lebanon|strong="H3844"\w*, \w the|strong="H3605"\w* \w Hittite|strong="H2850"\w*, \w the|strong="H3605"\w* Amorite, \w the|strong="H3605"\w* \w Canaanite|strong="H3669"\w*, \w the|strong="H3605"\w* \w Perizzite|strong="H6522"\w*, \w the|strong="H3605"\w* \w Hivite|strong="H2340"\w*, \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w Jebusite|strong="H2983"\w*, \w heard|strong="H8085"\w* \w of|strong="H4428"\w* \w it|strong="H1961"\w* +\v 2 \w they|strong="H6310"\w* \w gathered|strong="H6908"\w* \w themselves|strong="H6908"\w* \w together|strong="H3162"\w* \w to|strong="H3478"\w* \w fight|strong="H3898"\w* \w with|strong="H5973"\w* \w Joshua|strong="H3091"\w* \w and|strong="H3478"\w* \w with|strong="H5973"\w* \w Israel|strong="H3478"\w*, \w with|strong="H5973"\w* \w one|strong="H6310"\w* \w accord|strong="H6310"\w*. +\v 3 \w But|strong="H8085"\w* \w when|strong="H8085"\w* \w the|strong="H8085"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Gibeon|strong="H1391"\w* \w heard|strong="H8085"\w* \w what|strong="H6213"\w* \w Joshua|strong="H3091"\w* \w had|strong="H3091"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w Jericho|strong="H3405"\w* \w and|strong="H8085"\w* \w to|strong="H6213"\w* \w Ai|strong="H5857"\w*, +\v 4 \w they|strong="H1992"\w* \w also|strong="H1571"\w* resorted \w to|strong="H3212"\w* \w a|strong="H3068"\w* ruse, \w and|strong="H3212"\w* \w went|strong="H3212"\w* \w and|strong="H3212"\w* \w made|strong="H6213"\w* \w as|strong="H6213"\w* if \w they|strong="H1992"\w* \w had|strong="H6213"\w* \w been|strong="H6887"\w* \w ambassadors|strong="H6737"\w*, \w and|strong="H3212"\w* \w took|strong="H3947"\w* \w old|strong="H1087"\w* \w sacks|strong="H8242"\w* \w on|strong="H3212"\w* \w their|strong="H3947"\w* \w donkeys|strong="H2543"\w*, \w and|strong="H3212"\w* \w old|strong="H1087"\w*, torn-up \w and|strong="H3212"\w* \w bound|strong="H6887"\w* \w up|strong="H1234"\w* \w wineskins|strong="H4997"\w*, +\v 5 \w and|strong="H3899"\w* \w old|strong="H1087"\w* \w and|strong="H3899"\w* \w patched|strong="H2921"\w* \w sandals|strong="H5275"\w* \w on|strong="H5921"\w* \w their|strong="H3605"\w* \w feet|strong="H7272"\w*, \w and|strong="H3899"\w* \w wore|strong="H5921"\w* \w old|strong="H1087"\w* \w garments|strong="H8008"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w bread|strong="H3899"\w* \w of|strong="H5921"\w* \w their|strong="H3605"\w* \w food|strong="H3899"\w* supply \w was|strong="H1961"\w* \w dry|strong="H3001"\w* \w and|strong="H3899"\w* moldy. +\v 6 \w They|strong="H3478"\w* \w went|strong="H3212"\w* \w to|strong="H3478"\w* \w Joshua|strong="H3091"\w* \w at|strong="H3478"\w* \w the|strong="H3091"\w* \w camp|strong="H4264"\w* \w at|strong="H3478"\w* \w Gilgal|strong="H1537"\w*, \w and|strong="H3478"\w* said \w to|strong="H3478"\w* \w him|strong="H3772"\w* \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H3091"\w* \w men|strong="H3772"\w* \w of|strong="H4264"\w* \w Israel|strong="H3478"\w*, “\w We|strong="H6258"\w* \w have|strong="H3478"\w* \w come|strong="H3212"\w* \w from|strong="H3772"\w* \w a|strong="H3068"\w* \w far|strong="H7350"\w* country. \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w make|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w us|strong="H3478"\w*.” +\p +\v 7 \w The|strong="H3772"\w* \w men|strong="H3772"\w* \w of|strong="H3427"\w* \w Israel|strong="H3478"\w* said \w to|strong="H3478"\w* \w the|strong="H3772"\w* \w Hivites|strong="H2340"\w*, “What if \w you|strong="H7130"\w* \w live|strong="H3427"\w* \w among|strong="H7130"\w* \w us|strong="H3478"\w*? How could \w we|strong="H3068"\w* \w make|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w you|strong="H7130"\w*?” +\p +\v 8 They said \w to|strong="H5650"\w* \w Joshua|strong="H3091"\w*, “We \w are|strong="H5650"\w* your \w servants|strong="H5650"\w*.” +\p \w Joshua|strong="H3091"\w* said \w to|strong="H5650"\w* them, “\w Who|strong="H4310"\w* \w are|strong="H5650"\w* \w you|strong="H4310"\w*? Where \w do|strong="H4310"\w* \w you|strong="H4310"\w* come \w from|strong="H5650"\w*?” +\p +\v 9 \w They|strong="H3588"\w* \w said|strong="H8085"\w* \w to|strong="H3068"\w* \w him|strong="H6213"\w*, “\w Your|strong="H3068"\w* \w servants|strong="H5650"\w* \w have|strong="H3068"\w* \w come|strong="H7350"\w* \w from|strong="H8085"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w far|strong="H7350"\w* country \w because|strong="H3588"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*; \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w fame|strong="H8034"\w*, \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w did|strong="H6213"\w* \w in|strong="H3068"\w* \w Egypt|strong="H4714"\w*, +\v 10 \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w* \w to|strong="H6213"\w* \w the|strong="H3605"\w* \w two|strong="H8147"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* Amorites \w who|strong="H3605"\w* \w were|strong="H4428"\w* \w beyond|strong="H5676"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*, \w to|strong="H6213"\w* \w Sihon|strong="H5511"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Heshbon|strong="H2809"\w* \w and|strong="H4428"\w* \w to|strong="H6213"\w* \w Og|strong="H5747"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Bashan|strong="H1316"\w*, \w who|strong="H3605"\w* \w was|strong="H4428"\w* \w at|strong="H4428"\w* \w Ashtaroth|strong="H6252"\w*. +\v 11 \w Our|strong="H3605"\w* \w elders|strong="H2205"\w* \w and|strong="H3027"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3027"\w* \w our|strong="H3605"\w* country spoke \w to|strong="H3212"\w* \w us|strong="H3027"\w*, saying, ‘\w Take|strong="H3947"\w* \w supplies|strong="H6720"\w* \w in|strong="H3427"\w* \w your|strong="H3605"\w* \w hand|strong="H3027"\w* \w for|strong="H3027"\w* \w the|strong="H3605"\w* \w journey|strong="H1870"\w*, \w and|strong="H3027"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w meet|strong="H7125"\w* \w them|strong="H3027"\w*. \w Tell|strong="H3605"\w* \w them|strong="H3027"\w*, “\w We|strong="H6258"\w* \w are|strong="H3027"\w* \w your|strong="H3605"\w* \w servants|strong="H5650"\w*. \w Now|strong="H6258"\w* \w make|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w us|strong="H3027"\w*.”’ +\v 12 \w This|strong="H2088"\w* \w our|strong="H3318"\w* \w bread|strong="H3899"\w* \w we|strong="H3068"\w* \w took|strong="H3318"\w* \w hot|strong="H2525"\w* \w for|strong="H1004"\w* \w our|strong="H3318"\w* supplies \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w our|strong="H3318"\w* \w houses|strong="H1004"\w* \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w we|strong="H3068"\w* \w went|strong="H3212"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w go|strong="H3212"\w* \w to|strong="H3318"\w* \w you|strong="H3117"\w*; \w but|strong="H1961"\w* \w now|strong="H6258"\w*, \w behold|strong="H2009"\w*, \w it|strong="H1961"\w* \w is|strong="H2088"\w* \w dry|strong="H3001"\w*, \w and|strong="H3117"\w* \w has|strong="H1961"\w* \w become|strong="H1961"\w* moldy. +\v 13 These \w wineskins|strong="H4997"\w*, \w which|strong="H3196"\w* \w we|strong="H3068"\w* \w filled|strong="H4390"\w*, \w were|strong="H2009"\w* \w new|strong="H2319"\w*; \w and|strong="H1870"\w* \w behold|strong="H2009"\w*, \w they|strong="H1870"\w* \w are|strong="H1870"\w* \w torn|strong="H1234"\w*. These \w our|strong="H4390"\w* \w garments|strong="H8008"\w* \w and|strong="H1870"\w* \w our|strong="H4390"\w* \w sandals|strong="H5275"\w* \w have|strong="H2009"\w* \w become|strong="H1086"\w* \w old|strong="H1086"\w* \w because|strong="H7230"\w* \w of|strong="H1870"\w* \w the|strong="H4390"\w* \w very|strong="H3966"\w* \w long|strong="H7230"\w* \w journey|strong="H1870"\w*.” +\p +\v 14 \w The|strong="H3947"\w* \w men|strong="H3947"\w* sampled \w their|strong="H3068"\w* \w provisions|strong="H6718"\w*, \w and|strong="H3068"\w* didn’t \w ask|strong="H7592"\w* \w counsel|strong="H7592"\w* \w from|strong="H3947"\w* \w Yahweh|strong="H3068"\w*’s \w mouth|strong="H6310"\w*. +\v 15 \w Joshua|strong="H3091"\w* \w made|strong="H6213"\w* \w peace|strong="H7965"\w* \w with|strong="H1285"\w* \w them|strong="H6213"\w*, \w and|strong="H3091"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w them|strong="H6213"\w*, \w to|strong="H6213"\w* let \w them|strong="H6213"\w* \w live|strong="H2421"\w*. \w The|strong="H6213"\w* \w princes|strong="H5387"\w* \w of|strong="H5712"\w* \w the|strong="H6213"\w* \w congregation|strong="H5712"\w* \w swore|strong="H7650"\w* \w to|strong="H6213"\w* \w them|strong="H6213"\w*. +\v 16 \w At|strong="H3427"\w* \w the|strong="H8085"\w* \w end|strong="H7097"\w* \w of|strong="H3117"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w* \w after|strong="H1961"\w* \w they|strong="H1992"\w* \w had|strong="H1961"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w them|strong="H1992"\w*, \w they|strong="H1992"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w they|strong="H1992"\w* \w were|strong="H1961"\w* \w their|strong="H8085"\w* \w neighbors|strong="H7138"\w*, \w and|strong="H3117"\w* \w that|strong="H3588"\w* \w they|strong="H1992"\w* \w lived|strong="H3427"\w* \w among|strong="H7130"\w* \w them|strong="H1992"\w*. +\v 17 \w The|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w traveled|strong="H5265"\w* \w and|strong="H1121"\w* \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w their|strong="H3117"\w* \w cities|strong="H5892"\w* \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*. \w Now|strong="H3117"\w* \w their|strong="H3117"\w* \w cities|strong="H5892"\w* \w were|strong="H3478"\w* \w Gibeon|strong="H1391"\w*, \w Chephirah|strong="H3716"\w*, Beeroth, \w and|strong="H1121"\w* \w Kiriath|strong="H7157"\w* Jearim. +\v 18 \w The|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* didn’t \w strike|strong="H5221"\w* \w them|strong="H5921"\w*, \w because|strong="H3588"\w* \w the|strong="H3605"\w* \w princes|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w had|strong="H3068"\w* \w sworn|strong="H7650"\w* \w to|strong="H3478"\w* \w them|strong="H5921"\w* \w by|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w murmured|strong="H3885"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* \w princes|strong="H5387"\w*. +\v 19 \w But|strong="H3808"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H5387"\w* said \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w*, “\w We|strong="H6258"\w* \w have|strong="H3068"\w* \w sworn|strong="H7650"\w* \w to|strong="H3478"\w* \w them|strong="H5060"\w* \w by|strong="H7650"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w we|strong="H3068"\w* \w may|strong="H3201"\w* \w not|strong="H3808"\w* \w touch|strong="H5060"\w* \w them|strong="H5060"\w*. +\v 20 \w We|strong="H6213"\w* \w will|strong="H1961"\w* \w do|strong="H6213"\w* \w this|strong="H2063"\w* \w to|strong="H1961"\w* \w them|strong="H5921"\w*, \w and|strong="H6213"\w* \w let|strong="H3808"\w* \w them|strong="H5921"\w* \w live|strong="H2421"\w*; lest \w wrath|strong="H7110"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w us|strong="H5921"\w*, \w because|strong="H5921"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w oath|strong="H7621"\w* which \w we|strong="H3068"\w* \w swore|strong="H7650"\w* \w to|strong="H1961"\w* \w them|strong="H5921"\w*.” +\v 21 \w The|strong="H3605"\w* \w princes|strong="H5387"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H1961"\w*, “\w Let|strong="H1961"\w* \w them|strong="H1961"\w* \w live|strong="H2421"\w*.” \w So|strong="H1961"\w* \w they|strong="H3605"\w* \w became|strong="H1961"\w* \w wood|strong="H6086"\w* cutters \w and|strong="H6086"\w* \w drawers|strong="H7579"\w* \w of|strong="H4325"\w* \w water|strong="H4325"\w* \w for|strong="H4325"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w*, \w as|strong="H1961"\w* \w the|strong="H3605"\w* \w princes|strong="H5387"\w* \w had|strong="H1961"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H1961"\w*. +\p +\v 22 \w Joshua|strong="H3091"\w* \w called|strong="H7121"\w* \w for|strong="H7121"\w* \w them|strong="H7121"\w*, \w and|strong="H3091"\w* \w he|strong="H4480"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H7121"\w*, \w saying|strong="H1696"\w*, “\w Why|strong="H4100"\w* \w have|strong="H1696"\w* \w you|strong="H4480"\w* \w deceived|strong="H7411"\w* \w us|strong="H4480"\w*, \w saying|strong="H1696"\w*, ‘\w We|strong="H7130"\w* \w are|strong="H4100"\w* \w very|strong="H3966"\w* \w far|strong="H7350"\w* \w from|strong="H4480"\w* \w you|strong="H4480"\w*,’ \w when|strong="H1696"\w* \w you|strong="H4480"\w* \w live|strong="H3427"\w* \w among|strong="H7130"\w* \w us|strong="H4480"\w*? +\v 23 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w you|strong="H3808"\w* \w are|strong="H5650"\w* cursed, \w and|strong="H1004"\w* \w some|strong="H4480"\w* \w of|strong="H1004"\w* \w you|strong="H3808"\w* \w will|strong="H5650"\w* \w never|strong="H3808"\w* \w fail|strong="H3772"\w* \w to|strong="H1004"\w* \w be|strong="H3808"\w* \w slaves|strong="H5650"\w*, \w both|strong="H4480"\w* \w wood|strong="H6086"\w* cutters \w and|strong="H1004"\w* \w drawers|strong="H7579"\w* \w of|strong="H1004"\w* \w water|strong="H4325"\w* \w for|strong="H1004"\w* \w the|strong="H4480"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w my|strong="H4480"\w* \w God|strong="H3808"\w*.” +\p +\v 24 \w They|strong="H3588"\w* \w answered|strong="H6030"\w* \w Joshua|strong="H3091"\w*, \w and|strong="H4872"\w* \w said|strong="H1697"\w*, “\w Because|strong="H3588"\w* \w your|strong="H3068"\w* \w servants|strong="H5650"\w* \w were|strong="H1697"\w* \w certainly|strong="H3588"\w* \w told|strong="H5046"\w* \w how|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w commanded|strong="H6680"\w* \w his|strong="H3605"\w* \w servant|strong="H5650"\w* \w Moses|strong="H4872"\w* \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w you|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w*, \w and|strong="H4872"\w* \w to|strong="H3068"\w* \w destroy|strong="H8045"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*. \w Therefore|strong="H4872"\w* \w we|strong="H3068"\w* \w were|strong="H1697"\w* \w very|strong="H3966"\w* \w afraid|strong="H3372"\w* \w for|strong="H3588"\w* \w our|strong="H3068"\w* \w lives|strong="H5315"\w* \w because|strong="H3588"\w* \w of|strong="H3068"\w* \w you|strong="H3588"\w*, \w and|strong="H4872"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*. +\v 25 \w Now|strong="H6258"\w*, \w behold|strong="H2005"\w*, \w we|strong="H3068"\w* \w are|strong="H5869"\w* \w in|strong="H6213"\w* \w your|strong="H6213"\w* \w hand|strong="H3027"\w*. \w Do|strong="H6213"\w* \w to|strong="H6213"\w* \w us|strong="H6213"\w* \w as|strong="H6213"\w* \w it|strong="H6213"\w* \w seems|strong="H2896"\w* \w good|strong="H2896"\w* \w and|strong="H3027"\w* \w right|strong="H3477"\w* \w to|strong="H6213"\w* \w you|strong="H6213"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w*.” +\p +\v 26 \w He|strong="H3651"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w* \w to|strong="H3478"\w* \w them|strong="H3027"\w*, \w and|strong="H1121"\w* \w delivered|strong="H5337"\w* \w them|strong="H3027"\w* \w out|strong="H6213"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w so|strong="H3651"\w* \w that|strong="H3651"\w* \w they|strong="H3651"\w* didn’t \w kill|strong="H2026"\w* \w them|strong="H3027"\w*. +\v 27 \w That|strong="H3117"\w* \w day|strong="H3117"\w* \w Joshua|strong="H3091"\w* \w made|strong="H5414"\w* \w them|strong="H5414"\w* \w wood|strong="H6086"\w* cutters \w and|strong="H3068"\w* \w drawers|strong="H7579"\w* \w of|strong="H3068"\w* \w water|strong="H4325"\w* \w for|strong="H5704"\w* \w the|strong="H5414"\w* \w congregation|strong="H5712"\w* \w and|strong="H3068"\w* \w for|strong="H5704"\w* \w Yahweh|strong="H3068"\w*’s \w altar|strong="H4196"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, \w in|strong="H3068"\w* \w the|strong="H5414"\w* \w place|strong="H4725"\w* \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w should|strong="H3068"\w* choose. +\c 10 +\p +\v 1 \w Now|strong="H1961"\w* \w when|strong="H3588"\w* Adoni-Zedek \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w* \w heard|strong="H8085"\w* \w how|strong="H3588"\w* \w Joshua|strong="H3091"\w* \w had|strong="H1961"\w* \w taken|strong="H3920"\w* \w Ai|strong="H5857"\w*, \w and|strong="H3478"\w* \w had|strong="H1961"\w* \w utterly|strong="H2763"\w* \w destroyed|strong="H2763"\w* \w it|strong="H3588"\w*; \w as|strong="H1961"\w* \w he|strong="H3588"\w* \w had|strong="H1961"\w* \w done|strong="H6213"\w* \w to|strong="H3478"\w* \w Jericho|strong="H3405"\w* \w and|strong="H3478"\w* \w her|strong="H7130"\w* \w king|strong="H4428"\w*, \w so|strong="H3651"\w* \w he|strong="H3588"\w* \w had|strong="H1961"\w* \w done|strong="H6213"\w* \w to|strong="H3478"\w* \w Ai|strong="H5857"\w* \w and|strong="H3478"\w* \w her|strong="H7130"\w* \w king|strong="H4428"\w*; \w and|strong="H3478"\w* \w how|strong="H3588"\w* \w the|strong="H8085"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H4428"\w* \w Gibeon|strong="H1391"\w* \w had|strong="H1961"\w* \w made|strong="H6213"\w* \w peace|strong="H7999"\w* \w with|strong="H6213"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w were|strong="H3478"\w* \w among|strong="H7130"\w* \w them|strong="H6213"\w*, +\v 2 \w they|strong="H3588"\w* \w were|strong="H1419"\w* \w very|strong="H3966"\w* \w afraid|strong="H3372"\w*, \w because|strong="H3588"\w* \w Gibeon|strong="H1391"\w* \w was|strong="H1931"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w city|strong="H5892"\w*, \w as|strong="H3588"\w* \w one|strong="H3605"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w royal|strong="H4467"\w* \w cities|strong="H5892"\w*, \w and|strong="H1419"\w* \w because|strong="H3588"\w* \w it|strong="H1931"\w* \w was|strong="H1931"\w* \w greater|strong="H1419"\w* \w than|strong="H4480"\w* \w Ai|strong="H5857"\w*, \w and|strong="H1419"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w men|strong="H1368"\w* \w were|strong="H1419"\w* \w mighty|strong="H1368"\w*. +\v 3 \w Therefore|strong="H7971"\w* Adoni-Zedek \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w* \w sent|strong="H7971"\w* \w to|strong="H7971"\w* \w Hoham|strong="H1944"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Hebron|strong="H2275"\w*, \w Piram|strong="H6502"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Jarmuth|strong="H3412"\w*, \w Japhia|strong="H3309"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Lachish|strong="H3923"\w*, \w and|strong="H7971"\w* \w Debir|strong="H1688"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Eglon|strong="H5700"\w*, saying, +\v 4 “\w Come|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w me|strong="H5221"\w* \w and|strong="H1121"\w* \w help|strong="H5826"\w* \w me|strong="H5221"\w*. Let’s \w strike|strong="H5221"\w* \w Gibeon|strong="H1391"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H1121"\w* \w made|strong="H7999"\w* \w peace|strong="H7999"\w* \w with|strong="H5927"\w* \w Joshua|strong="H3091"\w* \w and|strong="H1121"\w* \w with|strong="H5927"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*.” +\v 5 \w Therefore|strong="H5921"\w* \w the|strong="H3605"\w* \w five|strong="H2568"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* Amorites, \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*, \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Hebron|strong="H2275"\w*, \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Jarmuth|strong="H3412"\w*, \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Lachish|strong="H3923"\w*, \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Eglon|strong="H5700"\w*, gathered \w themselves|strong="H1992"\w* \w together|strong="H5921"\w* \w and|strong="H4428"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w*, \w they|strong="H1992"\w* \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w armies|strong="H4264"\w*, \w and|strong="H4428"\w* \w encamped|strong="H2583"\w* \w against|strong="H5921"\w* \w Gibeon|strong="H1391"\w*, \w and|strong="H4428"\w* \w made|strong="H3605"\w* \w war|strong="H3898"\w* \w against|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 6 \w The|strong="H3605"\w* \w men|strong="H5650"\w* \w of|strong="H4428"\w* \w Gibeon|strong="H1391"\w* \w sent|strong="H7971"\w* \w to|strong="H7971"\w* \w Joshua|strong="H3091"\w* \w at|strong="H3427"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w at|strong="H3427"\w* \w Gilgal|strong="H1537"\w*, saying, “Don’t \w abandon|strong="H7503"\w* \w your|strong="H3605"\w* \w servants|strong="H5650"\w*! \w Come|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H7971"\w* \w us|strong="H3588"\w* \w quickly|strong="H4120"\w* \w and|strong="H7971"\w* \w save|strong="H3467"\w* \w us|strong="H3588"\w*! \w Help|strong="H5826"\w* \w us|strong="H3588"\w*; \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* Amorites \w that|strong="H3588"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w have|strong="H5650"\w* \w gathered|strong="H6908"\w* \w together|strong="H6908"\w* \w against|strong="H5927"\w* \w us|strong="H3588"\w*.” +\p +\v 7 \w So|strong="H4480"\w* \w Joshua|strong="H3091"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H4480"\w* \w Gilgal|strong="H1537"\w*, \w he|strong="H1931"\w* \w and|strong="H5971"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w army|strong="H2428"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*, \w including|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H4480"\w* \w valor|strong="H2428"\w*. +\v 8 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Joshua|strong="H3091"\w*, “Don’t \w fear|strong="H3372"\w* \w them|strong="H5414"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w delivered|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w your|strong="H3068"\w* \w hands|strong="H3027"\w*. \w Not|strong="H3808"\w* \w a|strong="H3068"\w* \w man|strong="H6440"\w* \w of|strong="H3068"\w* \w them|strong="H5414"\w* \w will|strong="H3068"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*.” +\p +\v 9 \w Joshua|strong="H3091"\w* \w therefore|strong="H3091"\w* \w came|strong="H5927"\w* \w to|strong="H5927"\w* \w them|strong="H5927"\w* \w suddenly|strong="H6597"\w*. \w He|strong="H3605"\w* \w marched|strong="H5927"\w* \w from|strong="H4480"\w* \w Gilgal|strong="H1537"\w* \w all|strong="H3605"\w* \w night|strong="H3915"\w*. +\v 10 \w Yahweh|strong="H3068"\w* \w confused|strong="H2000"\w* \w them|strong="H6440"\w* \w before|strong="H6440"\w* \w Israel|strong="H3478"\w*. \w He|strong="H5704"\w* \w killed|strong="H5221"\w* \w them|strong="H6440"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w slaughter|strong="H4347"\w* \w at|strong="H3478"\w* \w Gibeon|strong="H1391"\w*, \w and|strong="H3478"\w* \w chased|strong="H7291"\w* \w them|strong="H6440"\w* \w by|strong="H3068"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* ascent \w of|strong="H3068"\w* Beth Horon, \w and|strong="H3478"\w* \w struck|strong="H5221"\w* \w them|strong="H6440"\w* \w to|strong="H5704"\w* \w Azekah|strong="H5825"\w* \w and|strong="H3478"\w* \w to|strong="H5704"\w* \w Makkedah|strong="H4719"\w*. +\v 11 \w As|strong="H5704"\w* \w they|strong="H1992"\w* \w fled|strong="H5127"\w* \w from|strong="H4480"\w* \w before|strong="H6440"\w* \w Israel|strong="H3478"\w*, \w while|strong="H5704"\w* \w they|strong="H1992"\w* \w were|strong="H3478"\w* \w at|strong="H5921"\w* \w the|strong="H6440"\w* \w descent|strong="H4174"\w* \w of|strong="H1121"\w* Beth Horon, \w Yahweh|strong="H3068"\w* \w hurled|strong="H7993"\w* \w down|strong="H7993"\w* \w great|strong="H1419"\w* stones \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w sky|strong="H8064"\w* \w on|strong="H5921"\w* \w them|strong="H1992"\w* \w to|strong="H5704"\w* \w Azekah|strong="H5825"\w*, \w and|strong="H1121"\w* \w they|strong="H1992"\w* \w died|strong="H4191"\w*. \w There|strong="H1961"\w* \w were|strong="H3478"\w* \w more|strong="H4480"\w* \w who|strong="H3068"\w* \w died|strong="H4191"\w* \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w hailstones|strong="H1259"\w* \w than|strong="H4480"\w* \w those|strong="H1992"\w* \w whom|strong="H1992"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w killed|strong="H2026"\w* \w with|strong="H3068"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w*. +\p +\v 12 \w Then|strong="H1696"\w* \w Joshua|strong="H3091"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3478"\w* \w the|strong="H6440"\w* \w day|strong="H3117"\w* \w when|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w delivered|strong="H5414"\w* \w up|strong="H5414"\w* \w the|strong="H6440"\w* Amorites \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w He|strong="H3117"\w* \w said|strong="H1696"\w* \w in|strong="H3478"\w* \w the|strong="H6440"\w* \w sight|strong="H5869"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, “\w Sun|strong="H8121"\w*, \w stand|strong="H5869"\w* \w still|strong="H1826"\w* \w on|strong="H3117"\w* \w Gibeon|strong="H1391"\w*! \w You|strong="H5414"\w*, \w moon|strong="H3394"\w*, stop \w in|strong="H3478"\w* \w the|strong="H6440"\w* \w valley|strong="H6010"\w* \w of|strong="H1121"\w* Aijalon!” +\p +\v 13 \w The|strong="H5921"\w* \w sun|strong="H8121"\w* \w stood|strong="H5975"\w* \w still|strong="H5975"\w*, \w and|strong="H3117"\w* \w the|strong="H5921"\w* \w moon|strong="H3394"\w* \w stayed|strong="H5975"\w*, \w until|strong="H5704"\w* \w the|strong="H5921"\w* \w nation|strong="H1471"\w* \w had|strong="H8121"\w* \w avenged|strong="H5358"\w* \w themselves|strong="H5921"\w* \w of|strong="H3117"\w* \w their|strong="H5921"\w* enemies. Isn’t \w this|strong="H1931"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H3117"\w* \w Jashar|strong="H3477"\w*? \w The|strong="H5921"\w* \w sun|strong="H8121"\w* \w stayed|strong="H5975"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H2677"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w sky|strong="H8064"\w*, \w and|strong="H3117"\w* didn’t hurry \w to|strong="H5704"\w* \w go|strong="H8121"\w* \w down|strong="H3789"\w* \w about|strong="H5921"\w* \w a|strong="H3068"\w* \w whole|strong="H8549"\w* \w day|strong="H3117"\w*. +\v 14 \w There|strong="H1961"\w* \w was|strong="H3068"\w* \w no|strong="H3808"\w* \w day|strong="H3117"\w* \w like|strong="H1961"\w* \w that|strong="H3588"\w* \w before|strong="H6440"\w* \w it|strong="H1931"\w* \w or|strong="H3808"\w* \w after|strong="H1961"\w* \w it|strong="H1931"\w*, \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w listened|strong="H8085"\w* \w to|strong="H3478"\w* \w the|strong="H6440"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w man|strong="H6440"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w fought|strong="H3898"\w* \w for|strong="H3588"\w* \w Israel|strong="H3478"\w*. +\p +\v 15 \w Joshua|strong="H3091"\w* \w returned|strong="H7725"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w with|strong="H5973"\w* \w him|strong="H7725"\w*, \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w to|strong="H7725"\w* \w Gilgal|strong="H1537"\w*. +\v 16 \w These|strong="H4428"\w* \w five|strong="H2568"\w* \w kings|strong="H4428"\w* \w fled|strong="H5127"\w*, \w and|strong="H4428"\w* \w hid|strong="H2244"\w* \w themselves|strong="H2244"\w* \w in|strong="H4428"\w* \w the|strong="H2244"\w* \w cave|strong="H4631"\w* \w at|strong="H4428"\w* \w Makkedah|strong="H4719"\w*. +\v 17 \w Joshua|strong="H3091"\w* \w was|strong="H4428"\w* \w told|strong="H5046"\w*, saying, “\w The|strong="H3091"\w* \w five|strong="H2568"\w* \w kings|strong="H4428"\w* \w have|strong="H4672"\w* \w been|strong="H5046"\w* \w found|strong="H4672"\w*, \w hidden|strong="H2244"\w* \w in|strong="H4428"\w* \w the|strong="H3091"\w* \w cave|strong="H4631"\w* \w at|strong="H4428"\w* \w Makkedah|strong="H4719"\w*.” +\p +\v 18 \w Joshua|strong="H3091"\w* \w said|strong="H6310"\w*, “\w Roll|strong="H1556"\w* \w large|strong="H1419"\w* stones \w to|strong="H5921"\w* cover \w the|strong="H5921"\w* \w cave|strong="H4631"\w*’s entrance, \w and|strong="H1419"\w* \w set|strong="H6485"\w* \w men|strong="H1419"\w* \w by|strong="H5921"\w* \w it|strong="H5921"\w* \w to|strong="H5921"\w* \w guard|strong="H8104"\w* \w them|strong="H5921"\w*; +\v 19 \w but|strong="H3588"\w* don’t \w stay|strong="H5975"\w* \w there|strong="H5975"\w*. \w Pursue|strong="H7291"\w* \w your|strong="H3068"\w* \w enemies|strong="H3027"\w*, \w and|strong="H3068"\w* \w attack|strong="H2179"\w* \w them|strong="H5414"\w* \w from|strong="H3027"\w* \w the|strong="H3588"\w* \w rear|strong="H2179"\w*. Don’t \w allow|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H3068"\w* \w enter|strong="H5975"\w* \w into|strong="H3027"\w* \w their|strong="H3068"\w* \w cities|strong="H5892"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w delivered|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*.” +\p +\v 20 \w When|strong="H1961"\w* \w Joshua|strong="H3091"\w* \w and|strong="H1121"\w* \w the|strong="H5221"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w had|strong="H1961"\w* \w finished|strong="H3615"\w* \w killing|strong="H5221"\w* \w them|strong="H1992"\w* \w with|strong="H5892"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H1419"\w* \w slaughter|strong="H4347"\w* \w until|strong="H5704"\w* \w they|strong="H1992"\w* \w were|strong="H3478"\w* \w consumed|strong="H3615"\w*, \w and|strong="H1121"\w* \w the|strong="H5221"\w* \w remnant|strong="H8300"\w* \w which|strong="H1992"\w* \w remained|strong="H1961"\w* \w of|strong="H1121"\w* \w them|strong="H1992"\w* \w had|strong="H1961"\w* \w entered|strong="H5704"\w* \w into|strong="H1961"\w* \w the|strong="H5221"\w* \w fortified|strong="H4013"\w* \w cities|strong="H5892"\w*, +\v 21 \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w to|strong="H7725"\w* \w Joshua|strong="H3091"\w* \w at|strong="H3478"\w* \w Makkedah|strong="H4719"\w* \w in|strong="H3478"\w* \w peace|strong="H7965"\w*. \w None|strong="H3808"\w* \w moved|strong="H2782"\w* \w his|strong="H3605"\w* \w tongue|strong="H3956"\w* \w against|strong="H3956"\w* \w any|strong="H3605"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 22 \w Then|strong="H3318"\w* \w Joshua|strong="H3091"\w* \w said|strong="H3318"\w*, “\w Open|strong="H6605"\w* \w the|strong="H4480"\w* \w cave|strong="H4631"\w* entrance, \w and|strong="H4428"\w* \w bring|strong="H3318"\w* \w those|strong="H4480"\w* \w five|strong="H2568"\w* \w kings|strong="H4428"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w the|strong="H4480"\w* \w cave|strong="H4631"\w* \w to|strong="H3318"\w* \w me|strong="H4480"\w*.” +\p +\v 23 \w They|strong="H3651"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*, \w and|strong="H4428"\w* \w brought|strong="H3318"\w* \w those|strong="H4480"\w* \w five|strong="H2568"\w* \w kings|strong="H4428"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w the|strong="H6213"\w* \w cave|strong="H4631"\w* \w to|strong="H3318"\w* \w him|strong="H6213"\w*: \w the|strong="H6213"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*, \w the|strong="H6213"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Hebron|strong="H2275"\w*, \w the|strong="H6213"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Jarmuth|strong="H3412"\w*, \w the|strong="H6213"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Lachish|strong="H3923"\w*, \w and|strong="H4428"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Eglon|strong="H5700"\w*. +\v 24 \w When|strong="H1961"\w* \w they|strong="H5921"\w* \w brought|strong="H3318"\w* \w those|strong="H3605"\w* \w kings|strong="H4428"\w* \w out|strong="H3318"\w* \w to|strong="H1980"\w* \w Joshua|strong="H3091"\w*, \w Joshua|strong="H3091"\w* \w called|strong="H7121"\w* \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H1980"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1980"\w* \w said|strong="H7121"\w* \w to|strong="H1980"\w* \w the|strong="H3605"\w* \w chiefs|strong="H7101"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w men|strong="H1980"\w* \w of|strong="H4428"\w* \w war|strong="H4421"\w* \w who|strong="H3605"\w* \w went|strong="H1980"\w* \w with|strong="H1980"\w* \w him|strong="H7121"\w*, “\w Come|strong="H1980"\w* \w near|strong="H7126"\w*. \w Put|strong="H7760"\w* \w your|strong="H3605"\w* \w feet|strong="H7272"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w necks|strong="H6677"\w* \w of|strong="H4428"\w* \w these|strong="H7121"\w* \w kings|strong="H4428"\w*.” +\p \w They|strong="H5921"\w* \w came|strong="H1961"\w* \w near|strong="H7126"\w*, \w and|strong="H1980"\w* \w put|strong="H7760"\w* \w their|strong="H3605"\w* \w feet|strong="H7272"\w* \w on|strong="H5921"\w* \w their|strong="H3605"\w* \w necks|strong="H6677"\w*. +\p +\v 25 \w Joshua|strong="H3091"\w* said \w to|strong="H3068"\w* \w them|strong="H6213"\w*, “Don’t \w be|strong="H3068"\w* \w afraid|strong="H3372"\w*, \w nor|strong="H3372"\w* \w be|strong="H3068"\w* \w dismayed|strong="H2865"\w*. \w Be|strong="H3068"\w* \w strong|strong="H2388"\w* \w and|strong="H3068"\w* \w courageous|strong="H2388"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w this|strong="H6213"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* enemies \w against|strong="H3898"\w* \w whom|strong="H3588"\w* \w you|strong="H3588"\w* \w fight|strong="H3898"\w*.” +\p +\v 26 Afterward \w Joshua|strong="H3091"\w* \w struck|strong="H5221"\w* \w them|strong="H5921"\w*, \w put|strong="H4191"\w* \w them|strong="H5921"\w* \w to|strong="H5704"\w* \w death|strong="H4191"\w*, \w and|strong="H6086"\w* \w hanged|strong="H8518"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w five|strong="H2568"\w* \w trees|strong="H6086"\w*. \w They|strong="H3651"\w* \w were|strong="H1961"\w* \w hanging|strong="H8518"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w trees|strong="H6086"\w* \w until|strong="H5704"\w* \w the|strong="H5921"\w* \w evening|strong="H6153"\w*. +\v 27 \w At|strong="H5921"\w* \w the|strong="H5921"\w* \w time|strong="H6256"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w going|strong="H3381"\w* \w down|strong="H3381"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w sun|strong="H8121"\w*, \w Joshua|strong="H3091"\w* \w commanded|strong="H6680"\w*, \w and|strong="H3117"\w* \w they|strong="H3117"\w* \w took|strong="H3381"\w* \w them|strong="H5921"\w* \w down|strong="H3381"\w* \w off|strong="H5921"\w* \w the|strong="H5921"\w* \w trees|strong="H6086"\w*, \w and|strong="H3117"\w* \w threw|strong="H7993"\w* \w them|strong="H5921"\w* \w into|strong="H3381"\w* \w the|strong="H5921"\w* \w cave|strong="H4631"\w* \w in|strong="H5921"\w* \w which|strong="H8033"\w* \w they|strong="H3117"\w* \w had|strong="H1961"\w* \w hidden|strong="H2244"\w* \w themselves|strong="H2244"\w*, \w and|strong="H3117"\w* \w laid|strong="H7760"\w* \w great|strong="H1419"\w* stones \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w mouth|strong="H6310"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w cave|strong="H4631"\w*, \w which|strong="H8033"\w* \w remain|strong="H1961"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w very|strong="H6106"\w* \w day|strong="H3117"\w*. +\p +\v 28 \w Joshua|strong="H3091"\w* \w took|strong="H3920"\w* \w Makkedah|strong="H4719"\w* \w on|strong="H3117"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w*, \w and|strong="H4428"\w* \w struck|strong="H5221"\w* \w it|strong="H1931"\w* \w with|strong="H6213"\w* \w the|strong="H3605"\w* \w edge|strong="H6310"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w with|strong="H6213"\w* \w its|strong="H3605"\w* \w king|strong="H4428"\w*. \w He|strong="H1931"\w* \w utterly|strong="H2763"\w* \w destroyed|strong="H2763"\w* \w it|strong="H1931"\w* \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w souls|strong="H5315"\w* \w who|strong="H3605"\w* \w were|strong="H3117"\w* \w in|strong="H6213"\w* \w it|strong="H1931"\w*. \w He|strong="H1931"\w* \w left|strong="H7604"\w* \w no|strong="H3808"\w* \w one|strong="H3605"\w* \w remaining|strong="H8300"\w*. \w He|strong="H1931"\w* \w did|strong="H6213"\w* \w to|strong="H6213"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Makkedah|strong="H4719"\w* \w as|strong="H3117"\w* \w he|strong="H1931"\w* \w had|strong="H4428"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Jericho|strong="H3405"\w*. +\p +\v 29 \w Joshua|strong="H3091"\w* \w passed|strong="H5674"\w* \w from|strong="H3478"\w* \w Makkedah|strong="H4719"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*, \w to|strong="H3478"\w* \w Libnah|strong="H3841"\w*, \w and|strong="H3478"\w* \w fought|strong="H3898"\w* \w against|strong="H5973"\w* \w Libnah|strong="H3841"\w*. +\v 30 \w Yahweh|strong="H3068"\w* \w delivered|strong="H5414"\w* \w it|strong="H5414"\w* \w also|strong="H1571"\w*, \w with|strong="H3068"\w* \w its|strong="H3605"\w* \w king|strong="H4428"\w*, \w into|strong="H6213"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. \w He|strong="H6213"\w* \w struck|strong="H5221"\w* \w it|strong="H5414"\w* \w with|strong="H3068"\w* \w the|strong="H3605"\w* \w edge|strong="H6310"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w souls|strong="H5315"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w in|strong="H3478"\w* \w it|strong="H5414"\w*. \w He|strong="H6213"\w* \w left|strong="H7604"\w* \w no|strong="H3808"\w* \w one|strong="H3605"\w* \w remaining|strong="H8300"\w* \w in|strong="H3478"\w* \w it|strong="H5414"\w*. \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w to|strong="H3478"\w* \w its|strong="H3605"\w* \w king|strong="H4428"\w* \w as|strong="H6213"\w* \w he|strong="H6213"\w* \w had|strong="H3068"\w* \w done|strong="H6213"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Jericho|strong="H3405"\w*. +\p +\v 31 \w Joshua|strong="H3091"\w* \w passed|strong="H5674"\w* \w from|strong="H5921"\w* \w Libnah|strong="H3841"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w*, \w to|strong="H3478"\w* \w Lachish|strong="H3923"\w*, \w and|strong="H3478"\w* \w encamped|strong="H2583"\w* \w against|strong="H5921"\w* \w it|strong="H5921"\w*, \w and|strong="H3478"\w* \w fought|strong="H3898"\w* \w against|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 32 \w Yahweh|strong="H3068"\w* \w delivered|strong="H5414"\w* \w Lachish|strong="H3923"\w* \w into|strong="H6213"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. \w He|strong="H3117"\w* \w took|strong="H3920"\w* \w it|strong="H5414"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w second|strong="H8145"\w* \w day|strong="H3117"\w*, \w and|strong="H3478"\w* \w struck|strong="H5221"\w* \w it|strong="H5414"\w* \w with|strong="H3068"\w* \w the|strong="H3605"\w* \w edge|strong="H6310"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w souls|strong="H5315"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w in|strong="H3478"\w* \w it|strong="H5414"\w*, \w according|strong="H6310"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w had|strong="H3068"\w* \w done|strong="H6213"\w* \w to|strong="H3478"\w* \w Libnah|strong="H3841"\w*. +\v 33 \w Then|strong="H4428"\w* \w Horam|strong="H2036"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Gezer|strong="H1507"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5704"\w* \w help|strong="H5826"\w* \w Lachish|strong="H3923"\w*; \w and|strong="H4428"\w* \w Joshua|strong="H3091"\w* \w struck|strong="H5221"\w* \w him|strong="H5221"\w* \w and|strong="H4428"\w* \w his|strong="H5221"\w* \w people|strong="H5971"\w*, \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w had|strong="H4428"\w* \w left|strong="H7604"\w* \w him|strong="H5221"\w* \w no|strong="H1115"\w* \w one|strong="H4428"\w* \w remaining|strong="H8300"\w*. +\p +\v 34 \w Joshua|strong="H3091"\w* \w passed|strong="H5674"\w* \w from|strong="H5921"\w* \w Lachish|strong="H3923"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w*, \w to|strong="H3478"\w* \w Eglon|strong="H5700"\w*; \w and|strong="H3478"\w* \w they|strong="H5921"\w* \w encamped|strong="H2583"\w* \w against|strong="H5921"\w* \w it|strong="H5921"\w* \w and|strong="H3478"\w* \w fought|strong="H3898"\w* \w against|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 35 \w They|strong="H3117"\w* \w took|strong="H3920"\w* \w it|strong="H1931"\w* \w on|strong="H3117"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w*, \w and|strong="H3117"\w* \w struck|strong="H5221"\w* \w it|strong="H1931"\w* \w with|strong="H6213"\w* \w the|strong="H3605"\w* \w edge|strong="H6310"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*. \w He|strong="H1931"\w* \w utterly|strong="H2763"\w* \w destroyed|strong="H2763"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w souls|strong="H5315"\w* \w who|strong="H3605"\w* \w were|strong="H3117"\w* \w in|strong="H6213"\w* \w it|strong="H1931"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w*, \w according|strong="H6310"\w* \w to|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H1931"\w* \w had|strong="H5315"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w Lachish|strong="H3923"\w*. +\p +\v 36 \w Joshua|strong="H3091"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5921"\w* \w Eglon|strong="H5700"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w*, \w to|strong="H3478"\w* \w Hebron|strong="H2275"\w*; \w and|strong="H3478"\w* \w they|strong="H5921"\w* \w fought|strong="H3898"\w* \w against|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 37 \w They|strong="H3808"\w* \w took|strong="H3920"\w* \w it|strong="H6213"\w*, \w and|strong="H4428"\w* \w struck|strong="H5221"\w* \w it|strong="H6213"\w* \w with|strong="H6213"\w* \w the|strong="H3605"\w* \w edge|strong="H6310"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w with|strong="H6213"\w* \w its|strong="H3605"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w cities|strong="H5892"\w*, \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w souls|strong="H5315"\w* \w who|strong="H3605"\w* \w were|strong="H5315"\w* \w in|strong="H6213"\w* \w it|strong="H6213"\w*. \w He|strong="H6213"\w* \w left|strong="H7604"\w* \w no|strong="H3808"\w* \w one|strong="H3605"\w* \w remaining|strong="H8300"\w*, \w according|strong="H6310"\w* \w to|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w had|strong="H4428"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w Eglon|strong="H5700"\w*; \w but|strong="H3808"\w* \w he|strong="H6213"\w* \w utterly|strong="H2763"\w* \w destroyed|strong="H2763"\w* \w it|strong="H6213"\w*, \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w souls|strong="H5315"\w* \w who|strong="H3605"\w* \w were|strong="H5315"\w* \w in|strong="H6213"\w* \w it|strong="H6213"\w*. +\p +\v 38 \w Joshua|strong="H3091"\w* \w returned|strong="H7725"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w*, \w to|strong="H7725"\w* \w Debir|strong="H1688"\w*, \w and|strong="H3478"\w* \w fought|strong="H3898"\w* \w against|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 39 \w He|strong="H3651"\w* \w took|strong="H3920"\w* \w it|strong="H6213"\w*, \w with|strong="H6213"\w* \w its|strong="H3605"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w cities|strong="H5892"\w*. \w They|strong="H3651"\w* \w struck|strong="H5221"\w* \w them|strong="H5221"\w* \w with|strong="H6213"\w* \w the|strong="H3605"\w* \w edge|strong="H6310"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w and|strong="H4428"\w* \w utterly|strong="H2763"\w* \w destroyed|strong="H2763"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w souls|strong="H5315"\w* \w who|strong="H3605"\w* \w were|strong="H5315"\w* \w in|strong="H6213"\w* \w it|strong="H6213"\w*. \w He|strong="H3651"\w* \w left|strong="H7604"\w* \w no|strong="H3808"\w* \w one|strong="H3605"\w* \w remaining|strong="H8300"\w*. \w As|strong="H6213"\w* \w he|strong="H3651"\w* \w had|strong="H4428"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w Hebron|strong="H2275"\w*, \w so|strong="H3651"\w* \w he|strong="H3651"\w* \w did|strong="H6213"\w* \w to|strong="H6213"\w* \w Debir|strong="H1688"\w*, \w and|strong="H4428"\w* \w to|strong="H6213"\w* \w its|strong="H3605"\w* \w king|strong="H4428"\w*; \w as|strong="H6213"\w* \w he|strong="H3651"\w* \w had|strong="H4428"\w* \w done|strong="H6213"\w* \w also|strong="H6213"\w* \w to|strong="H6213"\w* \w Libnah|strong="H3841"\w*, \w and|strong="H4428"\w* \w to|strong="H6213"\w* \w its|strong="H3605"\w* \w king|strong="H4428"\w*. +\v 40 \w So|strong="H3808"\w* \w Joshua|strong="H3091"\w* \w struck|strong="H5221"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land, \w the|strong="H3605"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*, \w the|strong="H3605"\w* \w South|strong="H5045"\w*, \w the|strong="H3605"\w* \w lowland|strong="H8219"\w*, \w the|strong="H3605"\w* slopes, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w kings|strong="H4428"\w*. \w He|strong="H3068"\w* \w left|strong="H7604"\w* \w no|strong="H3808"\w* \w one|strong="H3605"\w* \w remaining|strong="H8300"\w*, \w but|strong="H3808"\w* \w he|strong="H3068"\w* \w utterly|strong="H2763"\w* \w destroyed|strong="H2763"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w breathed|strong="H5397"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w commanded|strong="H6680"\w*. +\v 41 \w Joshua|strong="H3091"\w* \w struck|strong="H5221"\w* \w them|strong="H5221"\w* \w from|strong="H5704"\w* Kadesh Barnea \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Gaza|strong="H5804"\w*, \w and|strong="H3091"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* country \w of|strong="H3605"\w* \w Goshen|strong="H1657"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Gibeon|strong="H1391"\w*. +\v 42 \w Joshua|strong="H3091"\w* \w took|strong="H3920"\w* \w all|strong="H3605"\w* \w these|strong="H3605"\w* \w kings|strong="H4428"\w* \w and|strong="H3478"\w* \w their|strong="H3605"\w* land \w at|strong="H3478"\w* \w one|strong="H3605"\w* \w time|strong="H6471"\w* \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w fought|strong="H3898"\w* \w for|strong="H3588"\w* \w Israel|strong="H3478"\w*. +\v 43 \w Joshua|strong="H3091"\w* \w returned|strong="H7725"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w with|strong="H5973"\w* \w him|strong="H7725"\w*, \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w to|strong="H7725"\w* \w Gilgal|strong="H1537"\w*. +\c 11 +\p +\v 1 \w When|strong="H1961"\w* \w Jabin|strong="H2985"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Hazor|strong="H2674"\w* \w heard|strong="H8085"\w* \w of|strong="H4428"\w* \w it|strong="H1961"\w*, \w he|strong="H7971"\w* \w sent|strong="H7971"\w* \w to|strong="H7971"\w* \w Jobab|strong="H3103"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Madon|strong="H4068"\w*, \w to|strong="H7971"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Shimron|strong="H8110"\w*, \w to|strong="H7971"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Achshaph, +\v 2 \w and|strong="H4428"\w* \w to|strong="H4428"\w* \w the|strong="H2022"\w* \w kings|strong="H4428"\w* \w who|strong="H4428"\w* \w were|strong="H2022"\w* \w on|strong="H3220"\w* \w the|strong="H2022"\w* \w north|strong="H6828"\w*, \w in|strong="H4428"\w* \w the|strong="H2022"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*, \w in|strong="H4428"\w* \w the|strong="H2022"\w* \w Arabah|strong="H6160"\w* \w south|strong="H5045"\w* \w of|strong="H4428"\w* \w Chinneroth|strong="H3672"\w*, \w in|strong="H4428"\w* \w the|strong="H2022"\w* \w lowland|strong="H8219"\w*, \w and|strong="H4428"\w* \w in|strong="H4428"\w* \w the|strong="H2022"\w* \w heights|strong="H5299"\w* \w of|strong="H4428"\w* \w Dor|strong="H1756"\w* \w on|strong="H3220"\w* \w the|strong="H2022"\w* \w west|strong="H3220"\w*, +\v 3 \w to|strong="H3220"\w* \w the|strong="H8478"\w* \w Canaanite|strong="H3669"\w* \w on|strong="H8478"\w* \w the|strong="H8478"\w* \w east|strong="H4217"\w* \w and|strong="H2022"\w* \w on|strong="H8478"\w* \w the|strong="H8478"\w* \w west|strong="H3220"\w*, \w the|strong="H8478"\w* Amorite, \w the|strong="H8478"\w* \w Hittite|strong="H2850"\w*, \w the|strong="H8478"\w* \w Perizzite|strong="H6522"\w*, \w the|strong="H8478"\w* \w Jebusite|strong="H2983"\w* \w in|strong="H3220"\w* \w the|strong="H8478"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*, \w and|strong="H2022"\w* \w the|strong="H8478"\w* \w Hivite|strong="H2340"\w* \w under|strong="H8478"\w* \w Hermon|strong="H2768"\w* \w in|strong="H3220"\w* \w the|strong="H8478"\w* land \w of|strong="H2022"\w* \w Mizpah|strong="H4709"\w*. +\v 4 \w They|strong="H1992"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*, \w they|strong="H1992"\w* \w and|strong="H5971"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w armies|strong="H4264"\w* \w with|strong="H5973"\w* \w them|strong="H1992"\w*, \w many|strong="H7227"\w* \w people|strong="H5971"\w*, \w even|strong="H5921"\w* \w as|strong="H7230"\w* \w the|strong="H3605"\w* \w sand|strong="H2344"\w* \w that|strong="H5971"\w* \w is|strong="H3605"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w seashore|strong="H3220"\w* \w in|strong="H5921"\w* \w multitude|strong="H7230"\w*, \w with|strong="H5973"\w* \w very|strong="H3966"\w* \w many|strong="H7227"\w* \w horses|strong="H5483"\w* \w and|strong="H5971"\w* \w chariots|strong="H7393"\w*. +\v 5 \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w kings|strong="H4428"\w* met \w together|strong="H3162"\w*; \w and|strong="H3478"\w* \w they|strong="H3478"\w* \w came|strong="H3478"\w* \w and|strong="H3478"\w* \w encamped|strong="H2583"\w* \w together|strong="H3162"\w* \w at|strong="H2583"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w of|strong="H4428"\w* \w Merom|strong="H4792"\w*, \w to|strong="H3478"\w* \w fight|strong="H3898"\w* \w with|strong="H5973"\w* \w Israel|strong="H3478"\w*. +\p +\v 6 \w Yahweh|strong="H3068"\w* said \w to|strong="H3478"\w* \w Joshua|strong="H3091"\w*, “Don’t \w be|strong="H3068"\w* \w afraid|strong="H3372"\w* \w because|strong="H3588"\w* \w of|strong="H3068"\w* \w them|strong="H5414"\w*; \w for|strong="H3588"\w* \w tomorrow|strong="H4279"\w* \w at|strong="H3478"\w* \w this|strong="H2063"\w* \w time|strong="H6256"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w deliver|strong="H5414"\w* \w them|strong="H5414"\w* \w up|strong="H5414"\w* \w all|strong="H3605"\w* \w slain|strong="H2491"\w* \w before|strong="H6440"\w* \w Israel|strong="H3478"\w*. \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w hamstring|strong="H6131"\w* \w their|strong="H3605"\w* \w horses|strong="H5483"\w* \w and|strong="H3478"\w* \w burn|strong="H8313"\w* \w their|strong="H3605"\w* \w chariots|strong="H4818"\w* \w with|strong="H8313"\w* fire.” +\p +\v 7 \w So|strong="H5921"\w* \w Joshua|strong="H3091"\w* \w came|strong="H5971"\w* \w suddenly|strong="H6597"\w*, \w with|strong="H5973"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w warriors|strong="H4421"\w*, \w against|strong="H5921"\w* \w them|strong="H5921"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w of|strong="H4325"\w* \w Merom|strong="H4792"\w*, \w and|strong="H5971"\w* \w attacked|strong="H4421"\w* \w them|strong="H5921"\w*. +\v 8 \w Yahweh|strong="H3068"\w* \w delivered|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w they|strong="H3068"\w* \w struck|strong="H5221"\w* \w them|strong="H5414"\w*, \w and|strong="H3478"\w* \w chased|strong="H7291"\w* \w them|strong="H5414"\w* \w to|strong="H5704"\w* \w great|strong="H7227"\w* \w Sidon|strong="H6721"\w*, \w and|strong="H3478"\w* \w to|strong="H5704"\w* \w Misrephoth|strong="H4956"\w* Maim, \w and|strong="H3478"\w* \w to|strong="H5704"\w* \w the|strong="H5414"\w* \w valley|strong="H1237"\w* \w of|strong="H3068"\w* \w Mizpah|strong="H4708"\w* \w eastward|strong="H4217"\w*. \w They|strong="H3068"\w* \w struck|strong="H5221"\w* \w them|strong="H5414"\w* \w until|strong="H5704"\w* \w they|strong="H3068"\w* \w left|strong="H7604"\w* \w them|strong="H5414"\w* \w no|strong="H1115"\w* \w one|strong="H7227"\w* \w remaining|strong="H8300"\w*. +\v 9 \w Joshua|strong="H3091"\w* \w did|strong="H6213"\w* \w to|strong="H3068"\w* \w them|strong="H6213"\w* \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w told|strong="H6213"\w* \w him|strong="H6213"\w*. \w He|strong="H6213"\w* hamstrung \w their|strong="H3068"\w* \w horses|strong="H5483"\w* \w and|strong="H3068"\w* \w burned|strong="H8313"\w* \w their|strong="H3068"\w* \w chariots|strong="H4818"\w* \w with|strong="H8313"\w* fire. +\v 10 \w Joshua|strong="H3091"\w* \w turned|strong="H7725"\w* \w back|strong="H7725"\w* \w at|strong="H4428"\w* \w that|strong="H3588"\w* \w time|strong="H6256"\w*, \w and|strong="H7725"\w* \w took|strong="H3920"\w* \w Hazor|strong="H2674"\w*, \w and|strong="H7725"\w* \w struck|strong="H5221"\w* \w its|strong="H3605"\w* \w king|strong="H4428"\w* \w with|strong="H6440"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*; \w for|strong="H3588"\w* \w Hazor|strong="H2674"\w* \w used|strong="H3605"\w* \w to|strong="H7725"\w* \w be|strong="H4428"\w* \w the|strong="H3605"\w* \w head|strong="H7218"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w kingdoms|strong="H4467"\w*. +\v 11 \w They|strong="H3808"\w* \w struck|strong="H5221"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w souls|strong="H5315"\w* \w who|strong="H3605"\w* \w were|strong="H5315"\w* \w in|strong="H5315"\w* \w it|strong="H5221"\w* \w with|strong="H8313"\w* \w the|strong="H3605"\w* \w edge|strong="H6310"\w* \w of|strong="H6310"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w utterly|strong="H2763"\w* \w destroying|strong="H2763"\w* \w them|strong="H5221"\w*. \w There|strong="H3605"\w* \w was|strong="H5315"\w* \w no|strong="H3808"\w* \w one|strong="H3605"\w* \w left|strong="H3498"\w* \w who|strong="H3605"\w* \w breathed|strong="H5397"\w*. \w He|strong="H3605"\w* \w burned|strong="H8313"\w* \w Hazor|strong="H2674"\w* \w with|strong="H8313"\w* fire. +\v 12 \w Joshua|strong="H3091"\w* \w captured|strong="H3920"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H4428"\w* \w those|strong="H3605"\w* \w kings|strong="H4428"\w*, \w with|strong="H3068"\w* \w their|strong="H3605"\w* \w kings|strong="H4428"\w*, \w and|strong="H4872"\w* \w he|strong="H3068"\w* \w struck|strong="H5221"\w* \w them|strong="H5221"\w* \w with|strong="H3068"\w* \w the|strong="H3605"\w* \w edge|strong="H6310"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w and|strong="H4872"\w* \w utterly|strong="H2763"\w* \w destroyed|strong="H2763"\w* \w them|strong="H5221"\w*, \w as|strong="H3068"\w* \w Moses|strong="H4872"\w* \w the|strong="H3605"\w* \w servant|strong="H5650"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w*. +\v 13 \w But|strong="H7535"\w* \w as|strong="H5892"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w that|strong="H3605"\w* \w stood|strong="H5975"\w* \w on|strong="H5921"\w* \w their|strong="H3605"\w* \w mounds|strong="H8510"\w*, \w Israel|strong="H3478"\w* \w burned|strong="H8313"\w* \w none|strong="H3808"\w* \w of|strong="H5892"\w* \w them|strong="H5921"\w*, \w except|strong="H2108"\w* \w Hazor|strong="H2674"\w* \w only|strong="H7535"\w*. \w Joshua|strong="H3091"\w* \w burned|strong="H8313"\w* \w that|strong="H3605"\w*. +\v 14 \w The|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w took|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w plunder|strong="H7998"\w* \w of|strong="H1121"\w* \w these|strong="H1992"\w* \w cities|strong="H5892"\w*, \w with|strong="H5892"\w* \w the|strong="H3605"\w* livestock, \w as|strong="H5704"\w* \w plunder|strong="H7998"\w* \w for|strong="H5704"\w* \w themselves|strong="H1992"\w*; \w but|strong="H7535"\w* \w every|strong="H3605"\w* \w man|strong="H1121"\w* \w they|strong="H1992"\w* \w struck|strong="H5221"\w* \w with|strong="H5892"\w* \w the|strong="H3605"\w* \w edge|strong="H6310"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w until|strong="H5704"\w* \w they|strong="H1992"\w* \w had|strong="H3478"\w* \w destroyed|strong="H8045"\w* \w them|strong="H1992"\w*. \w They|strong="H1992"\w* didn’t \w leave|strong="H7604"\w* \w any|strong="H3605"\w* \w who|strong="H3605"\w* \w breathed|strong="H5397"\w*. +\p +\v 15 \w As|strong="H1697"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w* \w his|strong="H3605"\w* \w servant|strong="H5650"\w*, \w so|strong="H3651"\w* \w Moses|strong="H4872"\w* \w commanded|strong="H6680"\w* \w Joshua|strong="H3091"\w*. \w Joshua|strong="H3091"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*. \w He|strong="H3651"\w* \w left|strong="H5493"\w* \w nothing|strong="H3808"\w* \w undone|strong="H5493"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\v 16 \w So|strong="H3947"\w* \w Joshua|strong="H3091"\w* \w captured|strong="H3947"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* land, \w the|strong="H3605"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w South|strong="H5045"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H2022"\w* \w Goshen|strong="H1657"\w*, \w the|strong="H3605"\w* \w lowland|strong="H8219"\w*, \w the|strong="H3605"\w* \w Arabah|strong="H6160"\w*, \w the|strong="H3605"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H2022"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w lowland|strong="H8219"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w same|strong="H2063"\w*, +\v 17 \w from|strong="H4480"\w* \w Mount|strong="H2022"\w* \w Halak|strong="H2510"\w*, \w that|strong="H3605"\w* \w goes|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5704"\w* \w Seir|strong="H8165"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* Baal Gad \w in|strong="H4428"\w* \w the|strong="H3605"\w* \w valley|strong="H1237"\w* \w of|strong="H4428"\w* \w Lebanon|strong="H3844"\w* \w under|strong="H8478"\w* \w Mount|strong="H2022"\w* \w Hermon|strong="H2768"\w*. \w He|strong="H5704"\w* \w took|strong="H3920"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w kings|strong="H4428"\w*, \w struck|strong="H5221"\w* \w them|strong="H5221"\w*, \w and|strong="H4428"\w* \w put|strong="H4191"\w* \w them|strong="H5221"\w* \w to|strong="H5704"\w* \w death|strong="H4191"\w*. +\v 18 \w Joshua|strong="H3091"\w* \w made|strong="H6213"\w* \w war|strong="H4421"\w* \w a|strong="H3068"\w* \w long|strong="H3117"\w* \w time|strong="H3117"\w* \w with|strong="H6213"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w kings|strong="H4428"\w*. +\v 19 \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w* \w that|strong="H3605"\w* \w made|strong="H7999"\w* \w peace|strong="H7999"\w* \w with|strong="H3427"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w except|strong="H1115"\w* \w the|strong="H3605"\w* \w Hivites|strong="H2340"\w*, \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1121"\w* \w Gibeon|strong="H1391"\w*. \w They|strong="H3808"\w* \w took|strong="H3947"\w* \w all|strong="H3605"\w* \w in|strong="H3427"\w* \w battle|strong="H4421"\w*. +\v 20 \w For|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H3068"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3478"\w* \w harden|strong="H2388"\w* \w their|strong="H3068"\w* \w hearts|strong="H3820"\w*, \w to|strong="H3478"\w* \w come|strong="H1961"\w* \w against|strong="H7125"\w* \w Israel|strong="H3478"\w* \w in|strong="H3478"\w* \w battle|strong="H4421"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w might|strong="H3068"\w* \w utterly|strong="H2763"\w* \w destroy|strong="H8045"\w* \w them|strong="H1992"\w*, \w that|strong="H3588"\w* \w they|strong="H1992"\w* \w might|strong="H3068"\w* \w have|strong="H1961"\w* \w no|strong="H1115"\w* \w favor|strong="H3068"\w*, \w but|strong="H3588"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w might|strong="H3068"\w* \w destroy|strong="H8045"\w* \w them|strong="H1992"\w*, \w as|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\v 21 \w Joshua|strong="H3091"\w* \w came|strong="H3478"\w* \w at|strong="H3478"\w* \w that|strong="H3605"\w* \w time|strong="H6256"\w*, \w and|strong="H3063"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w the|strong="H3605"\w* \w Anakim|strong="H6062"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*, \w from|strong="H4480"\w* \w Hebron|strong="H2275"\w*, \w from|strong="H4480"\w* \w Debir|strong="H1688"\w*, \w from|strong="H4480"\w* \w Anab|strong="H6024"\w*, \w and|strong="H3063"\w* \w from|strong="H4480"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H5892"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w from|strong="H4480"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H5892"\w* \w Israel|strong="H3478"\w*. \w Joshua|strong="H3091"\w* \w utterly|strong="H2763"\w* \w destroyed|strong="H2763"\w* \w them|strong="H2763"\w* \w with|strong="H5973"\w* \w their|strong="H3605"\w* \w cities|strong="H5892"\w*. +\v 22 \w There|strong="H3498"\w* \w were|strong="H3478"\w* \w none|strong="H3808"\w* \w of|strong="H1121"\w* \w the|strong="H3808"\w* \w Anakim|strong="H6062"\w* \w left|strong="H7604"\w* \w in|strong="H3478"\w* \w the|strong="H3808"\w* land \w of|strong="H1121"\w* \w the|strong="H3808"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w Only|strong="H7535"\w* \w in|strong="H3478"\w* \w Gaza|strong="H5804"\w*, \w in|strong="H3478"\w* \w Gath|strong="H1661"\w*, \w and|strong="H1121"\w* \w in|strong="H3478"\w* Ashdod, \w did|strong="H3478"\w* \w some|strong="H3498"\w* \w remain|strong="H7604"\w*. +\v 23 \w So|strong="H3947"\w* \w Joshua|strong="H3091"\w* \w took|strong="H3947"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w land|strong="H5159"\w*, according \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*; \w and|strong="H4872"\w* \w Joshua|strong="H3091"\w* \w gave|strong="H5414"\w* \w it|strong="H5414"\w* \w for|strong="H3068"\w* \w an|strong="H5414"\w* \w inheritance|strong="H5159"\w* \w to|strong="H1696"\w* \w Israel|strong="H3478"\w* according \w to|strong="H1696"\w* \w their|strong="H3605"\w* \w divisions|strong="H4256"\w* \w by|strong="H3068"\w* \w their|strong="H3605"\w* \w tribes|strong="H7626"\w*. \w Then|strong="H1696"\w* \w the|strong="H3605"\w* \w land|strong="H5159"\w* \w had|strong="H3068"\w* \w rest|strong="H8252"\w* \w from|strong="H3478"\w* \w war|strong="H4421"\w*. +\c 12 +\p +\v 1 \w Now|strong="H3478"\w* \w these|strong="H3605"\w* \w are|strong="H1121"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w land|strong="H5676"\w*, whom \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w struck|strong="H5221"\w*, \w and|strong="H1121"\w* \w possessed|strong="H3423"\w* \w their|strong="H3605"\w* \w land|strong="H5676"\w* \w beyond|strong="H5676"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w* \w toward|strong="H5704"\w* \w the|strong="H3605"\w* \w sunrise|strong="H4217"\w*, \w from|strong="H3478"\w* \w the|strong="H3605"\w* \w valley|strong="H5158"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* Arnon \w to|strong="H5704"\w* \w Mount|strong="H2022"\w* \w Hermon|strong="H2768"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Arabah|strong="H6160"\w* \w eastward|strong="H4217"\w*: +\v 2 \w Sihon|strong="H5511"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* Amorites, \w who|strong="H1121"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Heshbon|strong="H2809"\w*, \w and|strong="H1121"\w* \w ruled|strong="H4910"\w* \w from|strong="H5921"\w* \w Aroer|strong="H6177"\w*, \w which|strong="H5158"\w* \w is|strong="H4428"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w edge|strong="H8193"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w valley|strong="H5158"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* Arnon, \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w valley|strong="H5158"\w*, \w and|strong="H1121"\w* \w half|strong="H2677"\w* \w Gilead|strong="H1568"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w river|strong="H5158"\w* \w Jabbok|strong="H2999"\w*, \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*; +\v 3 \w and|strong="H1870"\w* \w the|strong="H5704"\w* \w Arabah|strong="H6160"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w sea|strong="H3220"\w* \w of|strong="H1870"\w* \w Chinneroth|strong="H3672"\w*, \w eastward|strong="H4217"\w*, \w and|strong="H1870"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w sea|strong="H3220"\w* \w of|strong="H1870"\w* \w the|strong="H5704"\w* \w Arabah|strong="H6160"\w*, \w even|strong="H5704"\w* \w the|strong="H5704"\w* \w Salt|strong="H4417"\w* \w Sea|strong="H3220"\w*, \w eastward|strong="H4217"\w*, \w the|strong="H5704"\w* \w way|strong="H1870"\w* \w to|strong="H5704"\w* Beth Jeshimoth; \w and|strong="H1870"\w* \w on|strong="H1870"\w* \w the|strong="H5704"\w* \w south|strong="H8486"\w*, \w under|strong="H8478"\w* \w the|strong="H5704"\w* slopes \w of|strong="H1870"\w* \w Pisgah|strong="H6449"\w*: +\v 4 \w and|strong="H4428"\w* \w the|strong="H3427"\w* \w border|strong="H1366"\w* \w of|strong="H4428"\w* \w Og|strong="H5747"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Bashan|strong="H1316"\w*, \w of|strong="H4428"\w* \w the|strong="H3427"\w* \w remnant|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H3427"\w* \w Rephaim|strong="H7497"\w*, \w who|strong="H3427"\w* \w lived|strong="H3427"\w* \w at|strong="H3427"\w* \w Ashtaroth|strong="H6252"\w* \w and|strong="H4428"\w* \w at|strong="H3427"\w* Edrei, +\v 5 \w and|strong="H4428"\w* \w ruled|strong="H4910"\w* \w in|strong="H4428"\w* \w Mount|strong="H2022"\w* \w Hermon|strong="H2768"\w*, \w and|strong="H4428"\w* \w in|strong="H4428"\w* \w Salecah|strong="H5548"\w*, \w and|strong="H4428"\w* \w in|strong="H4428"\w* \w all|strong="H3605"\w* \w Bashan|strong="H1316"\w*, \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w border|strong="H1366"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w Geshurites|strong="H1651"\w* \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w Maacathites|strong="H4602"\w*, \w and|strong="H4428"\w* \w half|strong="H2677"\w* \w Gilead|strong="H1568"\w*, \w the|strong="H3605"\w* \w border|strong="H1366"\w* \w of|strong="H4428"\w* \w Sihon|strong="H5511"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Heshbon|strong="H2809"\w*. +\v 6 \w Moses|strong="H4872"\w* \w the|strong="H5414"\w* \w servant|strong="H5650"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H1121"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w struck|strong="H5221"\w* \w them|strong="H5414"\w*. \w Moses|strong="H4872"\w* \w the|strong="H5414"\w* \w servant|strong="H5650"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w gave|strong="H5414"\w* \w it|strong="H5414"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w possession|strong="H3425"\w* \w to|strong="H3478"\w* \w the|strong="H5414"\w* \w Reubenites|strong="H7206"\w*, \w and|strong="H1121"\w* \w the|strong="H5414"\w* \w Gadites|strong="H1425"\w*, \w and|strong="H1121"\w* \w the|strong="H5414"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*. +\p +\v 7 \w These|strong="H5221"\w* \w are|strong="H1121"\w* \w the|strong="H5414"\w* \w kings|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w land|strong="H5676"\w* whom \w Joshua|strong="H3091"\w* \w and|strong="H1121"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w struck|strong="H5221"\w* \w beyond|strong="H5676"\w* \w the|strong="H5414"\w* \w Jordan|strong="H3383"\w* \w westward|strong="H3220"\w*, \w from|strong="H5927"\w* Baal Gad \w in|strong="H3478"\w* \w the|strong="H5414"\w* \w valley|strong="H1237"\w* \w of|strong="H1121"\w* \w Lebanon|strong="H3844"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Mount|strong="H2022"\w* \w Halak|strong="H2510"\w*, \w that|strong="H3478"\w* \w goes|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5704"\w* \w Seir|strong="H8165"\w*. \w Joshua|strong="H3091"\w* \w gave|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H5704"\w* \w the|strong="H5414"\w* \w tribes|strong="H7626"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w for|strong="H5704"\w* \w a|strong="H3068"\w* \w possession|strong="H3425"\w* according \w to|strong="H5704"\w* \w their|strong="H5414"\w* \w divisions|strong="H4256"\w*; +\v 8 \w in|strong="H2022"\w* \w the|strong="H2022"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*, \w and|strong="H2022"\w* \w in|strong="H2022"\w* \w the|strong="H2022"\w* \w lowland|strong="H8219"\w*, \w and|strong="H2022"\w* \w in|strong="H2022"\w* \w the|strong="H2022"\w* \w Arabah|strong="H6160"\w*, \w and|strong="H2022"\w* \w in|strong="H2022"\w* \w the|strong="H2022"\w* slopes, \w and|strong="H2022"\w* \w in|strong="H2022"\w* \w the|strong="H2022"\w* \w wilderness|strong="H4057"\w*, \w and|strong="H2022"\w* \w in|strong="H2022"\w* \w the|strong="H2022"\w* \w South|strong="H5045"\w*; \w the|strong="H2022"\w* \w Hittite|strong="H2850"\w*, \w the|strong="H2022"\w* Amorite, \w and|strong="H2022"\w* \w the|strong="H2022"\w* \w Canaanite|strong="H3669"\w*, \w the|strong="H2022"\w* \w Perizzite|strong="H6522"\w*, \w the|strong="H2022"\w* \w Hivite|strong="H2340"\w*, \w and|strong="H2022"\w* \w the|strong="H2022"\w* \w Jebusite|strong="H2983"\w*: +\m +\v 9 \w the|strong="H1008"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Jericho|strong="H3405"\w*, \w one|strong="H4428"\w*; +\m \w the|strong="H1008"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Ai|strong="H5857"\w*, \w which|strong="H4428"\w* \w is|strong="H4428"\w* \w beside|strong="H6654"\w* \w Bethel|strong="H1008"\w*, \w one|strong="H4428"\w*; +\m +\v 10 \w the|strong="H3389"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*, \w one|strong="H4428"\w*; +\m \w the|strong="H3389"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Hebron|strong="H2275"\w*, \w one|strong="H4428"\w*; +\m +\v 11 \w the|strong="H4428"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Jarmuth|strong="H3412"\w*, \w one|strong="H4428"\w*; +\m \w the|strong="H4428"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Lachish|strong="H3923"\w*, \w one|strong="H4428"\w*; +\m +\v 12 \w the|strong="H5700"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Eglon|strong="H5700"\w*, \w one|strong="H4428"\w*; +\m \w the|strong="H5700"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Gezer|strong="H1507"\w*, \w one|strong="H4428"\w*; +\m +\v 13 \w the|strong="H4428"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Debir|strong="H1688"\w*, \w one|strong="H4428"\w*; +\m \w the|strong="H4428"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Geder|strong="H1445"\w*, \w one|strong="H4428"\w*; +\m +\v 14 \w the|strong="H6166"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Hormah|strong="H2767"\w*, \w one|strong="H4428"\w*; +\m \w the|strong="H6166"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Arad|strong="H6166"\w*, \w one|strong="H4428"\w*; +\m +\v 15 \w the|strong="H5725"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Libnah|strong="H3841"\w*, \w one|strong="H4428"\w*; +\m \w the|strong="H5725"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Adullam|strong="H5725"\w*, \w one|strong="H4428"\w*; +\m +\v 16 \w the|strong="H1008"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Makkedah|strong="H4719"\w*, \w one|strong="H4428"\w*; +\m \w the|strong="H1008"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Bethel|strong="H1008"\w*, \w one|strong="H4428"\w*; +\m +\v 17 \w the|strong="H8599"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Tappuah|strong="H8599"\w*, \w one|strong="H4428"\w*; +\m \w the|strong="H8599"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Hepher|strong="H2660"\w*, \w one|strong="H4428"\w*; +\m +\v 18 \w the|strong="H4428"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Aphek, \w one|strong="H4428"\w*; +\m \w the|strong="H4428"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Lassharon, \w one|strong="H4428"\w*; +\m +\v 19 \w the|strong="H4428"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Madon|strong="H4068"\w*, \w one|strong="H4428"\w*; +\m \w the|strong="H4428"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Hazor|strong="H2674"\w*, \w one|strong="H4428"\w*; +\m +\v 20 \w the|strong="H4428"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Shimron Meron, \w one|strong="H4428"\w*; +\m \w the|strong="H4428"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Achshaph, \w one|strong="H4428"\w*; +\m +\v 21 \w the|strong="H4428"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Taanach|strong="H8590"\w*, \w one|strong="H4428"\w*; +\m \w the|strong="H4428"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Megiddo|strong="H4023"\w*, \w one|strong="H4428"\w*; +\m +\v 22 \w the|strong="H4428"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Kedesh|strong="H6943"\w*, \w one|strong="H4428"\w*; +\m \w the|strong="H4428"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Jokneam|strong="H3362"\w* \w in|strong="H4428"\w* \w Carmel|strong="H3760"\w*, \w one|strong="H4428"\w*; +\m +\v 23 \w the|strong="H1471"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Dor|strong="H1756"\w* \w in|strong="H4428"\w* \w the|strong="H1471"\w* \w height|strong="H5299"\w* \w of|strong="H4428"\w* \w Dor|strong="H1756"\w*, \w one|strong="H4428"\w*; +\m \w the|strong="H1471"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Goiim|strong="H1471"\w* \w in|strong="H4428"\w* \w Gilgal|strong="H1537"\w*, \w one|strong="H4428"\w*; +\m +\v 24 \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Tirzah|strong="H8656"\w*, \w one|strong="H3605"\w*: +\m \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w thirty-one|strong="H7970"\w*. +\c 13 +\p +\v 1 \w Now|strong="H3117"\w* \w Joshua|strong="H3091"\w* \w was|strong="H3068"\w* \w old|strong="H2204"\w* \w and|strong="H3068"\w* \w well|strong="H3966"\w* advanced \w in|strong="H3068"\w* \w years|strong="H3117"\w*. \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w him|strong="H7604"\w*, “\w You|strong="H3117"\w* \w are|strong="H3117"\w* \w old|strong="H2204"\w* \w and|strong="H3068"\w* advanced \w in|strong="H3068"\w* \w years|strong="H3117"\w*, \w and|strong="H3068"\w* \w there|strong="H3117"\w* \w remains|strong="H7604"\w* \w yet|strong="H3068"\w* \w very|strong="H3966"\w* \w much|strong="H7235"\w* land \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w possessed|strong="H3423"\w*. +\p +\v 2 “\w This|strong="H2063"\w* \w is|strong="H3605"\w* \w the|strong="H3605"\w* land \w that|strong="H3605"\w* still \w remains|strong="H7604"\w*: \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w regions|strong="H1552"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H6430"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Geshurites|strong="H1651"\w*; +\v 3 \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w Shihor|strong="H7883"\w*, \w which|strong="H1366"\w* \w is|strong="H6440"\w* \w before|strong="H6440"\w* \w Egypt|strong="H4714"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H6440"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Ekron|strong="H6138"\w* \w northward|strong="H6828"\w*, \w which|strong="H1366"\w* \w is|strong="H6440"\w* \w counted|strong="H2803"\w* \w as|strong="H5704"\w* \w Canaanite|strong="H3669"\w*; \w the|strong="H6440"\w* \w five|strong="H2568"\w* \w lords|strong="H5633"\w* \w of|strong="H1366"\w* \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w*; \w the|strong="H6440"\w* \w Gazites|strong="H5841"\w*, \w and|strong="H4714"\w* \w the|strong="H6440"\w* Ashdodites, \w the|strong="H6440"\w* Ashkelonites, \w the|strong="H6440"\w* \w Gittites|strong="H1663"\w*, \w and|strong="H4714"\w* \w the|strong="H6440"\w* \w Ekronites|strong="H6139"\w*; \w also|strong="H6430"\w* \w the|strong="H6440"\w* Avvim, +\v 4 \w on|strong="H3605"\w* \w the|strong="H3605"\w* \w south|strong="H8486"\w*; \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H1366"\w* \w of|strong="H1366"\w* \w the|strong="H3605"\w* \w Canaanites|strong="H3669"\w*, \w and|strong="H3605"\w* \w Mearah|strong="H4632"\w* \w that|strong="H3605"\w* belongs \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w Sidonians|strong="H6722"\w*, \w to|strong="H5704"\w* Aphek, \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w the|strong="H3605"\w* Amorites; +\v 5 \w and|strong="H2022"\w* \w the|strong="H3605"\w* land \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w Gebalites|strong="H1382"\w*, \w and|strong="H2022"\w* \w all|strong="H3605"\w* \w Lebanon|strong="H3844"\w*, \w toward|strong="H5704"\w* \w the|strong="H3605"\w* \w sunrise|strong="H4217"\w*, \w from|strong="H5704"\w* Baal Gad \w under|strong="H8478"\w* \w Mount|strong="H2022"\w* \w Hermon|strong="H2768"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* entrance \w of|strong="H2022"\w* \w Hamath|strong="H2574"\w*; +\v 6 \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w from|strong="H4480"\w* \w Lebanon|strong="H3844"\w* \w to|strong="H5704"\w* \w Misrephoth|strong="H4956"\w* Maim, \w even|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Sidonians|strong="H6722"\w*. \w I|strong="H5704"\w* \w will|strong="H3478"\w* \w drive|strong="H3423"\w* \w them|strong="H6440"\w* \w out|strong="H3423"\w* \w from|strong="H4480"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w Just|strong="H3605"\w* allocate \w it|strong="H6440"\w* \w to|strong="H5704"\w* \w Israel|strong="H3478"\w* \w for|strong="H5704"\w* \w an|strong="H4480"\w* \w inheritance|strong="H5159"\w*, \w as|strong="H5704"\w* \w I|strong="H5704"\w* \w have|strong="H1121"\w* \w commanded|strong="H6680"\w* \w you|strong="H6440"\w*. +\v 7 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w divide|strong="H2505"\w* \w this|strong="H2063"\w* \w land|strong="H5159"\w* \w for|strong="H8672"\w* \w an|strong="H2677"\w* \w inheritance|strong="H5159"\w* \w to|strong="H5159"\w* \w the|strong="H6258"\w* \w nine|strong="H8672"\w* \w tribes|strong="H7626"\w* \w and|strong="H4519"\w* \w the|strong="H6258"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H7626"\w* \w Manasseh|strong="H4519"\w*.” +\v 8 \w With|strong="H5973"\w* \w him|strong="H5414"\w* \w the|strong="H5414"\w* \w Reubenites|strong="H7206"\w* \w and|strong="H4872"\w* \w the|strong="H5414"\w* \w Gadites|strong="H1425"\w* \w received|strong="H3947"\w* \w their|strong="H3068"\w* \w inheritance|strong="H5159"\w*, \w which|strong="H3068"\w* \w Moses|strong="H4872"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w*, \w beyond|strong="H5676"\w* \w the|strong="H5414"\w* \w Jordan|strong="H3383"\w* \w eastward|strong="H4217"\w*, \w even|strong="H3068"\w* \w as|strong="H3068"\w* \w Moses|strong="H4872"\w* \w the|strong="H5414"\w* \w servant|strong="H5650"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w*: +\v 9 \w from|strong="H5921"\w* \w Aroer|strong="H6177"\w*, \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w edge|strong="H8193"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w valley|strong="H5158"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* Arnon, \w and|strong="H5892"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w valley|strong="H5158"\w*, \w and|strong="H5892"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w plain|strong="H4334"\w* \w of|strong="H5892"\w* \w Medeba|strong="H4311"\w* \w to|strong="H5704"\w* \w Dibon|strong="H1769"\w*; +\v 10 \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w Sihon|strong="H5511"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* Amorites, \w who|strong="H3605"\w* \w reigned|strong="H4427"\w* \w in|strong="H4428"\w* \w Heshbon|strong="H2809"\w*, \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w border|strong="H1366"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*; +\v 11 \w and|strong="H2022"\w* \w Gilead|strong="H1568"\w*, \w and|strong="H2022"\w* \w the|strong="H3605"\w* \w border|strong="H1366"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w Geshurites|strong="H1651"\w* \w and|strong="H2022"\w* \w Maacathites|strong="H4602"\w*, \w and|strong="H2022"\w* \w all|strong="H3605"\w* \w Mount|strong="H2022"\w* \w Hermon|strong="H2768"\w*, \w and|strong="H2022"\w* \w all|strong="H3605"\w* \w Bashan|strong="H1316"\w* \w to|strong="H5704"\w* \w Salecah|strong="H5548"\w*; +\v 12 \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdom|strong="H4468"\w* \w of|strong="H3605"\w* \w Og|strong="H5747"\w* \w in|strong="H4427"\w* \w Bashan|strong="H1316"\w*, \w who|strong="H3605"\w* \w reigned|strong="H4427"\w* \w in|strong="H4427"\w* \w Ashtaroth|strong="H6252"\w* \w and|strong="H4872"\w* \w in|strong="H4427"\w* Edrei (\w who|strong="H3605"\w* \w was|strong="H1931"\w* \w left|strong="H7604"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w remnant|strong="H3499"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w Rephaim|strong="H7497"\w*); \w for|strong="H3605"\w* \w Moses|strong="H4872"\w* \w attacked|strong="H5221"\w* \w these|strong="H1931"\w*, \w and|strong="H4872"\w* \w drove|strong="H3423"\w* \w them|strong="H5221"\w* \w out|strong="H3423"\w*. +\v 13 Nevertheless \w the|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* didn’t \w drive|strong="H3423"\w* \w out|strong="H3423"\w* \w the|strong="H3117"\w* \w Geshurites|strong="H1651"\w*, \w nor|strong="H3808"\w* \w the|strong="H3117"\w* \w Maacathites|strong="H4602"\w*: \w but|strong="H3808"\w* \w Geshur|strong="H1650"\w* \w and|strong="H1121"\w* \w Maacath|strong="H4601"\w* \w live|strong="H3427"\w* \w within|strong="H7130"\w* \w Israel|strong="H3478"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 14 \w Only|strong="H7535"\w* \w he|strong="H1931"\w* \w gave|strong="H5414"\w* \w no|strong="H3808"\w* \w inheritance|strong="H5159"\w* \w to|strong="H1696"\w* \w the|strong="H5414"\w* \w tribe|strong="H7626"\w* \w of|strong="H3068"\w* \w Levi|strong="H3878"\w*. \w The|strong="H5414"\w* \w offerings|strong="H3478"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5414"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w made|strong="H5414"\w* \w by|strong="H3068"\w* fire \w are|strong="H3478"\w* \w his|strong="H5414"\w* \w inheritance|strong="H5159"\w*, \w as|strong="H3068"\w* \w he|strong="H1931"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5414"\w*. +\v 15 \w Moses|strong="H4872"\w* \w gave|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* according \w to|strong="H5414"\w* \w their|strong="H5414"\w* \w families|strong="H4940"\w*. +\v 16 \w Their|strong="H3605"\w* \w border|strong="H1366"\w* \w was|strong="H1961"\w* \w from|strong="H5921"\w* \w Aroer|strong="H6177"\w*, \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w edge|strong="H8193"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w valley|strong="H5158"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* Arnon, \w and|strong="H5892"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w valley|strong="H5158"\w*, \w and|strong="H5892"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w plain|strong="H4334"\w* \w by|strong="H5921"\w* \w Medeba|strong="H4311"\w*; +\v 17 \w Heshbon|strong="H2809"\w*, \w and|strong="H5892"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w cities|strong="H5892"\w* \w that|strong="H3605"\w* \w are|strong="H5892"\w* \w in|strong="H5892"\w* \w the|strong="H3605"\w* \w plain|strong="H4334"\w*; \w Dibon|strong="H1769"\w*, \w Bamoth|strong="H1120"\w* \w Baal|strong="H1120"\w*, Beth \w Baal|strong="H1120"\w* Meon, +\v 18 \w Jahaz|strong="H3096"\w*, \w Kedemoth|strong="H6932"\w*, \w Mephaath|strong="H4158"\w*, +\v 19 \w Kiriathaim|strong="H7156"\w*, \w Sibmah|strong="H7643"\w*, Zereth Shahar \w in|strong="H2022"\w* \w the|strong="H2022"\w* \w mount|strong="H2022"\w* \w of|strong="H2022"\w* \w the|strong="H2022"\w* \w valley|strong="H6010"\w*, +\v 20 Beth Peor, the slopes of \w Pisgah|strong="H6449"\w*, Beth Jeshimoth, +\v 21 \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w plain|strong="H4334"\w*, \w and|strong="H4872"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdom|strong="H4468"\w* \w of|strong="H4428"\w* \w Sihon|strong="H5511"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* Amorites, \w who|strong="H3605"\w* \w reigned|strong="H4427"\w* \w in|strong="H3427"\w* \w Heshbon|strong="H2809"\w*, whom \w Moses|strong="H4872"\w* \w struck|strong="H5221"\w* \w with|strong="H3427"\w* \w the|strong="H3605"\w* \w chiefs|strong="H5387"\w* \w of|strong="H4428"\w* \w Midian|strong="H4080"\w*, Evi, \w Rekem|strong="H7552"\w*, \w Zur|strong="H6698"\w*, \w Hur|strong="H2354"\w*, \w and|strong="H4872"\w* \w Reba|strong="H7254"\w*, \w the|strong="H3605"\w* \w princes|strong="H5387"\w* \w of|strong="H4428"\w* \w Sihon|strong="H5511"\w*, \w who|strong="H3605"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* land. +\v 22 \w The|strong="H2026"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w also|strong="H3478"\w* \w killed|strong="H2026"\w* \w Balaam|strong="H1109"\w* \w the|strong="H2026"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Beor|strong="H1160"\w*, \w the|strong="H2026"\w* \w soothsayer|strong="H7080"\w*, \w with|strong="H3478"\w* \w the|strong="H2026"\w* \w sword|strong="H2719"\w*, \w among|strong="H2719"\w* \w the|strong="H2026"\w* rest \w of|strong="H1121"\w* \w their|strong="H2026"\w* \w slain|strong="H2491"\w*. +\p +\v 23 \w The|strong="H1961"\w* \w border|strong="H1366"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* \w was|strong="H1961"\w* \w the|strong="H1961"\w* bank \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w Jordan|strong="H3383"\w*. \w This|strong="H2063"\w* \w was|strong="H1961"\w* \w the|strong="H1961"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* according \w to|strong="H1961"\w* \w their|strong="H1961"\w* \w families|strong="H4940"\w*, \w the|strong="H1961"\w* \w cities|strong="H5892"\w* \w and|strong="H1121"\w* \w its|strong="H1961"\w* \w villages|strong="H2691"\w*. +\p +\v 24 \w Moses|strong="H4872"\w* \w gave|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w*, \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w*, according \w to|strong="H5414"\w* \w their|strong="H5414"\w* \w families|strong="H4940"\w*. +\v 25 \w Their|strong="H3605"\w* \w border|strong="H1366"\w* \w was|strong="H1961"\w* \w Jazer|strong="H3270"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*, \w and|strong="H1121"\w* \w half|strong="H2677"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, \w to|strong="H5704"\w* \w Aroer|strong="H6177"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w near|strong="H6440"\w* \w Rabbah|strong="H7237"\w*; +\v 26 \w and|strong="H2809"\w* \w from|strong="H5704"\w* \w Heshbon|strong="H2809"\w* \w to|strong="H5704"\w* Ramath Mizpeh, \w and|strong="H2809"\w* Betonim; \w and|strong="H2809"\w* \w from|strong="H5704"\w* \w Mahanaim|strong="H4266"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Debir|strong="H1688"\w*; +\v 27 \w and|strong="H4428"\w* \w in|strong="H4428"\w* \w the|strong="H5704"\w* \w valley|strong="H6010"\w*, Beth Haram, Beth Nimrah, \w Succoth|strong="H5523"\w*, \w and|strong="H4428"\w* \w Zaphon|strong="H6829"\w*, \w the|strong="H5704"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H5704"\w* \w kingdom|strong="H4468"\w* \w of|strong="H4428"\w* \w Sihon|strong="H5511"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Heshbon|strong="H2809"\w*, \w the|strong="H5704"\w* \w Jordan|strong="H3383"\w*’s bank, \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w uttermost|strong="H7097"\w* \w part|strong="H7097"\w* \w of|strong="H4428"\w* \w the|strong="H5704"\w* \w sea|strong="H3220"\w* \w of|strong="H4428"\w* \w Chinnereth|strong="H3672"\w* \w beyond|strong="H5676"\w* \w the|strong="H5704"\w* \w Jordan|strong="H3383"\w* \w eastward|strong="H4217"\w*. +\v 28 \w This|strong="H2063"\w* \w is|strong="H5892"\w* \w the|strong="H1121"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w* according \w to|strong="H1121"\w* their \w families|strong="H4940"\w*, \w the|strong="H1121"\w* \w cities|strong="H5892"\w* \w and|strong="H1121"\w* \w its|strong="H5892"\w* \w villages|strong="H2691"\w*. +\p +\v 29 \w Moses|strong="H4872"\w* \w gave|strong="H5414"\w* \w an|strong="H1961"\w* inheritance \w to|strong="H1961"\w* \w the|strong="H5414"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*. \w It|strong="H5414"\w* \w was|strong="H1961"\w* \w for|strong="H1121"\w* \w the|strong="H5414"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* according \w to|strong="H1961"\w* \w their|strong="H5414"\w* \w families|strong="H4940"\w*. +\v 30 \w Their|strong="H3605"\w* \w border|strong="H1366"\w* \w was|strong="H1961"\w* \w from|strong="H1961"\w* \w Mahanaim|strong="H4266"\w*, \w all|strong="H3605"\w* \w Bashan|strong="H1316"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdom|strong="H4468"\w* \w of|strong="H4428"\w* \w Og|strong="H5747"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Bashan|strong="H1316"\w*, \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* villages \w of|strong="H4428"\w* \w Jair|strong="H2971"\w*, \w which|strong="H5892"\w* \w are|strong="H5892"\w* \w in|strong="H4428"\w* \w Bashan|strong="H1316"\w*, \w sixty|strong="H8346"\w* \w cities|strong="H5892"\w*. +\v 31 \w Half|strong="H2677"\w* \w Gilead|strong="H1568"\w*, \w Ashtaroth|strong="H6252"\w*, \w and|strong="H1121"\w* Edrei, \w the|strong="H2677"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w the|strong="H2677"\w* \w kingdom|strong="H4468"\w* \w of|strong="H1121"\w* \w Og|strong="H5747"\w* \w in|strong="H5892"\w* \w Bashan|strong="H1316"\w*, \w were|strong="H1121"\w* \w for|strong="H1121"\w* \w the|strong="H2677"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Machir|strong="H4353"\w* \w the|strong="H2677"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*, \w even|strong="H4519"\w* \w for|strong="H1121"\w* \w the|strong="H2677"\w* \w half|strong="H2677"\w* \w of|strong="H1121"\w* \w the|strong="H2677"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Machir|strong="H4353"\w* according \w to|strong="H1121"\w* their \w families|strong="H4940"\w*. +\p +\v 32 These are \w the|strong="H4872"\w* inheritances which \w Moses|strong="H4872"\w* \w distributed|strong="H5157"\w* \w in|strong="H4872"\w* \w the|strong="H4872"\w* \w plains|strong="H6160"\w* \w of|strong="H6160"\w* \w Moab|strong="H4124"\w*, \w beyond|strong="H5676"\w* \w the|strong="H4872"\w* \w Jordan|strong="H3383"\w* \w at|strong="H3383"\w* \w Jericho|strong="H3405"\w*, \w eastward|strong="H4217"\w*. +\v 33 \w But|strong="H3808"\w* \w Moses|strong="H4872"\w* \w gave|strong="H5414"\w* \w no|strong="H3808"\w* \w inheritance|strong="H5159"\w* \w to|strong="H1696"\w* \w the|strong="H5414"\w* \w tribe|strong="H7626"\w* \w of|strong="H3068"\w* \w Levi|strong="H3878"\w*. \w Yahweh|strong="H3068"\w*, \w the|strong="H5414"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w is|strong="H3068"\w* \w their|strong="H3068"\w* \w inheritance|strong="H5159"\w*, \w as|strong="H3068"\w* \w he|strong="H1931"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H5414"\w*. +\c 14 +\p +\v 1 These \w are|strong="H1121"\w* \w the|strong="H3091"\w* inheritances \w which|strong="H3478"\w* \w the|strong="H3091"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w took|strong="H3548"\w* \w in|strong="H3478"\w* \w the|strong="H3091"\w* land \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*, \w which|strong="H3478"\w* Eleazar \w the|strong="H3091"\w* \w priest|strong="H3548"\w*, \w Joshua|strong="H3091"\w* \w the|strong="H3091"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w*, \w and|strong="H1121"\w* \w the|strong="H3091"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H3091"\w* fathers’ houses \w of|strong="H1121"\w* \w the|strong="H3091"\w* \w tribes|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H3091"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w distributed|strong="H5157"\w* \w to|strong="H3478"\w* \w them|strong="H1121"\w*, +\v 2 \w by|strong="H3027"\w* \w the|strong="H3068"\w* \w lot|strong="H1486"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w inheritance|strong="H5159"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w*, \w for|strong="H3027"\w* \w the|strong="H3068"\w* \w nine|strong="H8672"\w* \w tribes|strong="H4294"\w*, \w and|strong="H4872"\w* \w for|strong="H3027"\w* \w the|strong="H3068"\w* \w half-tribe|strong="H2677"\w*. +\v 3 \w For|strong="H3588"\w* \w Moses|strong="H4872"\w* \w had|strong="H4872"\w* \w given|strong="H5414"\w* \w the|strong="H3588"\w* \w inheritance|strong="H5159"\w* \w of|strong="H4294"\w* \w the|strong="H3588"\w* \w two|strong="H8147"\w* \w tribes|strong="H4294"\w* \w and|strong="H4872"\w* \w the|strong="H3588"\w* \w half-tribe|strong="H2677"\w* \w beyond|strong="H5676"\w* \w the|strong="H3588"\w* \w Jordan|strong="H3383"\w*; \w but|strong="H3588"\w* \w to|strong="H5414"\w* \w the|strong="H3588"\w* \w Levites|strong="H3881"\w* \w he|strong="H3588"\w* \w gave|strong="H5414"\w* \w no|strong="H3808"\w* \w inheritance|strong="H5159"\w* \w among|strong="H8432"\w* \w them|strong="H5414"\w*. +\v 4 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w* \w were|strong="H1961"\w* \w two|strong="H8147"\w* \w tribes|strong="H4294"\w*, \w Manasseh|strong="H4519"\w* \w and|strong="H1121"\w* Ephraim. \w They|strong="H3588"\w* \w gave|strong="H5414"\w* \w no|strong="H3808"\w* \w portion|strong="H2506"\w* \w to|strong="H1961"\w* \w the|strong="H3588"\w* \w Levites|strong="H3881"\w* \w in|strong="H3427"\w* \w the|strong="H3588"\w* \w land|strong="H2506"\w*, \w except|strong="H3588"\w* \w cities|strong="H5892"\w* \w to|strong="H1961"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w*, \w with|strong="H3427"\w* \w their|strong="H5414"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w* \w for|strong="H3588"\w* \w their|strong="H5414"\w* \w livestock|strong="H4735"\w* \w and|strong="H1121"\w* \w for|strong="H3588"\w* \w their|strong="H5414"\w* \w property|strong="H7075"\w*. +\v 5 \w The|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w did|strong="H6213"\w* \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*, \w and|strong="H1121"\w* \w they|strong="H3651"\w* \w divided|strong="H2505"\w* \w the|strong="H6213"\w* land. +\p +\v 6 \w Then|strong="H1696"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H1696"\w* \w Joshua|strong="H3091"\w* \w in|strong="H5921"\w* \w Gilgal|strong="H1537"\w*. \w Caleb|strong="H3612"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jephunneh|strong="H3312"\w* \w the|strong="H5921"\w* \w Kenizzite|strong="H7074"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5921"\w*, “\w You|strong="H5921"\w* \w know|strong="H3045"\w* \w the|strong="H5921"\w* \w thing|strong="H1697"\w* \w that|strong="H3045"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w* \w the|strong="H5921"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w God|strong="H3068"\w* \w concerning|strong="H5921"\w* \w me|strong="H5921"\w* \w and|strong="H1121"\w* \w concerning|strong="H5921"\w* \w you|strong="H5921"\w* \w in|strong="H5921"\w* Kadesh Barnea. +\v 7 \w I|strong="H1697"\w* \w was|strong="H3068"\w* forty \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H7725"\w* \w Moses|strong="H4872"\w* \w the|strong="H3068"\w* \w servant|strong="H5650"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w* \w from|strong="H7725"\w* Kadesh Barnea \w to|strong="H7725"\w* \w spy|strong="H7270"\w* \w out|strong="H7971"\w* \w the|strong="H3068"\w* land. \w I|strong="H1697"\w* \w brought|strong="H7725"\w* \w him|strong="H7971"\w* \w word|strong="H1697"\w* \w again|strong="H7725"\w* \w as|strong="H1697"\w* \w it|strong="H7725"\w* \w was|strong="H3068"\w* \w in|strong="H8141"\w* \w my|strong="H3068"\w* \w heart|strong="H3824"\w*. +\v 8 Nevertheless, \w my|strong="H3068"\w* brothers \w who|strong="H5971"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w with|strong="H5973"\w* \w me|strong="H5973"\w* \w made|strong="H3068"\w* \w the|strong="H3068"\w* \w heart|strong="H3820"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w* \w melt|strong="H4529"\w*; \w but|strong="H5971"\w* \w I|strong="H3068"\w* \w wholly|strong="H4390"\w* \w followed|strong="H5927"\w* \w Yahweh|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 9 \w Moses|strong="H4872"\w* \w swore|strong="H7650"\w* \w on|strong="H3117"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w*, saying, ‘\w Surely|strong="H3588"\w* \w the|strong="H3588"\w* \w land|strong="H5159"\w* \w where|strong="H3808"\w* \w you|strong="H3588"\w* \w walked|strong="H1869"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w an|strong="H1961"\w* \w inheritance|strong="H5159"\w* \w to|strong="H5704"\w* \w you|strong="H3588"\w* \w and|strong="H1121"\w* \w to|strong="H5704"\w* \w your|strong="H3068"\w* \w children|strong="H1121"\w* \w forever|strong="H5769"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w wholly|strong="H4390"\w* \w followed|strong="H7272"\w* \w Yahweh|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*.’ +\p +\v 10 “\w Now|strong="H6258"\w*, \w behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w kept|strong="H2421"\w* \w me|strong="H1696"\w* \w alive|strong="H2421"\w*, \w as|strong="H1697"\w* \w he|strong="H3117"\w* \w spoke|strong="H1696"\w*, \w these|strong="H2088"\w* forty-five \w years|strong="H8141"\w*, \w from|strong="H3478"\w* \w the|strong="H3068"\w* \w time|strong="H3117"\w* \w that|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w this|strong="H2088"\w* \w word|strong="H1697"\w* \w to|strong="H1696"\w* \w Moses|strong="H4872"\w*, \w while|strong="H3117"\w* \w Israel|strong="H3478"\w* \w walked|strong="H1980"\w* \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w wilderness|strong="H4057"\w*. \w Now|strong="H6258"\w*, \w behold|strong="H2009"\w*, \w I|strong="H3117"\w* \w am|strong="H3068"\w* \w eighty-five|strong="H8084"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*, \w today|strong="H3117"\w*. +\v 11 \w As|strong="H3117"\w* \w yet|strong="H5750"\w* \w I|strong="H3117"\w* am \w as|strong="H3117"\w* \w strong|strong="H2389"\w* \w today|strong="H3117"\w* \w as|strong="H3117"\w* \w I|strong="H3117"\w* \w was|strong="H3117"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w Moses|strong="H4872"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w*. \w As|strong="H3117"\w* \w my|strong="H7971"\w* \w strength|strong="H3581"\w* \w was|strong="H3117"\w* \w then|strong="H3318"\w*, \w even|strong="H5750"\w* \w so|strong="H7971"\w* \w is|strong="H3117"\w* \w my|strong="H7971"\w* \w strength|strong="H3581"\w* \w now|strong="H6258"\w* \w for|strong="H7971"\w* \w war|strong="H4421"\w*, \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H4872"\w* \w to|strong="H3318"\w* \w come|strong="H3318"\w* \w in|strong="H3117"\w*. +\v 12 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w give|strong="H5414"\w* \w me|strong="H5414"\w* \w this|strong="H2088"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*, \w of|strong="H3068"\w* \w which|strong="H1931"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w in|strong="H3068"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w heard|strong="H8085"\w* \w in|strong="H3068"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w* \w how|strong="H3588"\w* \w the|strong="H8085"\w* \w Anakim|strong="H6062"\w* \w were|strong="H3117"\w* \w there|strong="H8033"\w*, \w and|strong="H3068"\w* \w great|strong="H1419"\w* \w and|strong="H3068"\w* \w fortified|strong="H1219"\w* \w cities|strong="H5892"\w*. \w It|strong="H5414"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w with|strong="H3068"\w* \w me|strong="H5414"\w*, \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w shall|strong="H3068"\w* \w drive|strong="H3423"\w* \w them|strong="H5414"\w* \w out|strong="H3423"\w*, \w as|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w*.” +\p +\v 13 \w Joshua|strong="H3091"\w* \w blessed|strong="H1288"\w* \w him|strong="H5414"\w*; \w and|strong="H1121"\w* \w he|strong="H5414"\w* \w gave|strong="H5414"\w* \w Hebron|strong="H2275"\w* \w to|strong="H5414"\w* \w Caleb|strong="H3612"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jephunneh|strong="H3312"\w* \w for|strong="H1121"\w* \w an|strong="H5414"\w* \w inheritance|strong="H5159"\w*. +\v 14 \w Therefore|strong="H3651"\w* \w Hebron|strong="H2275"\w* \w became|strong="H1961"\w* \w the|strong="H5921"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w Caleb|strong="H3612"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jephunneh|strong="H3312"\w* \w the|strong="H5921"\w* \w Kenizzite|strong="H7074"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, \w because|strong="H5921"\w* \w he|strong="H3117"\w* \w followed|strong="H1961"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w wholeheartedly|strong="H4390"\w*. +\v 15 \w Now|strong="H1419"\w* \w the|strong="H6440"\w* \w name|strong="H8034"\w* \w of|strong="H6440"\w* \w Hebron|strong="H2275"\w* \w before|strong="H6440"\w* \w was|strong="H8034"\w* Kiriath Arba, \w after|strong="H8034"\w* \w the|strong="H6440"\w* \w greatest|strong="H1419"\w* \w man|strong="H1419"\w* \w among|strong="H8034"\w* \w the|strong="H6440"\w* \w Anakim|strong="H6062"\w*. Then \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w had|strong="H8252"\w* \w rest|strong="H8252"\w* \w from|strong="H6440"\w* \w war|strong="H4421"\w*. +\c 15 +\p +\v 1 \w The|strong="H1961"\w* \w lot|strong="H1486"\w* \w for|strong="H1121"\w* \w the|strong="H1961"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* according \w to|strong="H1961"\w* \w their|strong="H1961"\w* \w families|strong="H4940"\w* \w was|strong="H1961"\w* \w to|strong="H1961"\w* \w the|strong="H1961"\w* \w border|strong="H1366"\w* \w of|strong="H1121"\w* Edom, even \w to|strong="H1961"\w* \w the|strong="H1961"\w* \w wilderness|strong="H4057"\w* \w of|strong="H1121"\w* \w Zin|strong="H6790"\w* \w southward|strong="H5045"\w*, \w at|strong="H1961"\w* \w the|strong="H1961"\w* \w uttermost|strong="H7097"\w* \w part|strong="H7097"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w south|strong="H5045"\w*. +\v 2 \w Their|strong="H1992"\w* \w south|strong="H5045"\w* \w border|strong="H1366"\w* \w was|strong="H1961"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w uttermost|strong="H7097"\w* \w part|strong="H7097"\w* \w of|strong="H1366"\w* \w the|strong="H4480"\w* \w Salt|strong="H4417"\w* \w Sea|strong="H3220"\w*, \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w bay|strong="H3956"\w* \w that|strong="H4480"\w* looks \w southward|strong="H5045"\w*; +\v 3 \w and|strong="H5927"\w* \w it|strong="H5927"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w southward|strong="H5045"\w* \w of|strong="H3318"\w* \w the|strong="H5674"\w* \w ascent|strong="H4610"\w* \w of|strong="H3318"\w* \w Akrabbim|strong="H4610"\w*, \w and|strong="H5927"\w* \w passed|strong="H5674"\w* \w along|strong="H5674"\w* \w to|strong="H3318"\w* \w Zin|strong="H6790"\w*, \w and|strong="H5927"\w* \w went|strong="H3318"\w* \w up|strong="H5927"\w* \w by|strong="H5674"\w* \w the|strong="H5674"\w* \w south|strong="H5045"\w* \w of|strong="H3318"\w* Kadesh Barnea, \w and|strong="H5927"\w* \w passed|strong="H5674"\w* \w along|strong="H5674"\w* \w by|strong="H5674"\w* \w Hezron|strong="H2696"\w*, \w went|strong="H3318"\w* \w up|strong="H5927"\w* \w to|strong="H3318"\w* Addar, \w and|strong="H5927"\w* \w turned|strong="H5437"\w* \w toward|strong="H5927"\w* \w Karka|strong="H7173"\w*; +\v 4 \w and|strong="H4714"\w* \w it|strong="H1961"\w* \w passed|strong="H5674"\w* \w along|strong="H5674"\w* \w to|strong="H3318"\w* \w Azmon|strong="H6111"\w*, \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w at|strong="H1961"\w* \w the|strong="H5674"\w* \w brook|strong="H5158"\w* \w of|strong="H1366"\w* \w Egypt|strong="H4714"\w*; \w and|strong="H4714"\w* \w the|strong="H5674"\w* \w border|strong="H1366"\w* \w ended|strong="H1961"\w* \w at|strong="H1961"\w* \w the|strong="H5674"\w* \w sea|strong="H3220"\w*. \w This|strong="H2088"\w* \w shall|strong="H4714"\w* \w be|strong="H1961"\w* \w your|strong="H1961"\w* \w south|strong="H5045"\w* \w border|strong="H1366"\w*. +\v 5 \w The|strong="H5704"\w* \w east|strong="H6924"\w* \w border|strong="H1366"\w* \w was|strong="H1366"\w* \w the|strong="H5704"\w* \w Salt|strong="H4417"\w* \w Sea|strong="H3220"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w end|strong="H7097"\w* \w of|strong="H1366"\w* \w the|strong="H5704"\w* \w Jordan|strong="H3383"\w*. \w The|strong="H5704"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w the|strong="H5704"\w* \w north|strong="H6828"\w* \w quarter|strong="H6285"\w* \w was|strong="H1366"\w* \w from|strong="H6285"\w* \w the|strong="H5704"\w* \w bay|strong="H3956"\w* \w of|strong="H1366"\w* \w the|strong="H5704"\w* \w sea|strong="H3220"\w* \w at|strong="H3383"\w* \w the|strong="H5704"\w* \w end|strong="H7097"\w* \w of|strong="H1366"\w* \w the|strong="H5704"\w* \w Jordan|strong="H3383"\w*. +\v 6 \w The|strong="H5674"\w* \w border|strong="H1366"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* Beth Hoglah, \w and|strong="H1121"\w* \w passed|strong="H5674"\w* \w along|strong="H5674"\w* \w by|strong="H5674"\w* \w the|strong="H5674"\w* \w north|strong="H6828"\w* \w of|strong="H1121"\w* Beth Arabah; \w and|strong="H1121"\w* \w the|strong="H5674"\w* \w border|strong="H1366"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H5674"\w* stone \w of|strong="H1121"\w* Bohan \w the|strong="H5674"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w*. +\v 7 \w The|strong="H5674"\w* \w border|strong="H1366"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w Debir|strong="H1688"\w* \w from|strong="H5927"\w* \w the|strong="H5674"\w* \w valley|strong="H6010"\w* \w of|strong="H1366"\w* \w Achor|strong="H5911"\w*, \w and|strong="H6437"\w* \w so|strong="H1961"\w* \w northward|strong="H6828"\w*, \w looking|strong="H6437"\w* \w toward|strong="H5927"\w* \w Gilgal|strong="H1537"\w*, \w that|strong="H4325"\w* \w faces|strong="H6437"\w* \w the|strong="H5674"\w* \w ascent|strong="H4608"\w* \w of|strong="H1366"\w* Adummim, \w which|strong="H4325"\w* \w is|strong="H1961"\w* \w on|strong="H5674"\w* \w the|strong="H5674"\w* \w south|strong="H5045"\w* \w side|strong="H6828"\w* \w of|strong="H1366"\w* \w the|strong="H5674"\w* \w river|strong="H5158"\w*. \w The|strong="H5674"\w* \w border|strong="H1366"\w* \w passed|strong="H5674"\w* \w along|strong="H5674"\w* \w to|strong="H5927"\w* \w the|strong="H5674"\w* \w waters|strong="H4325"\w* \w of|strong="H1366"\w* En Shemesh, \w and|strong="H6437"\w* \w ended|strong="H1961"\w* \w at|strong="H1961"\w* En Rogel. +\v 8 \w The|strong="H6440"\w* \w border|strong="H1366"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w by|strong="H5921"\w* \w the|strong="H6440"\w* \w valley|strong="H6010"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hinnom|strong="H2011"\w* \w to|strong="H5927"\w* \w the|strong="H6440"\w* \w side|strong="H3802"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w Jebusite|strong="H2983"\w* (\w also|strong="H1121"\w* called \w Jerusalem|strong="H3389"\w*) \w southward|strong="H5045"\w*; \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w border|strong="H1366"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H6440"\w* \w top|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w mountain|strong="H2022"\w* \w that|strong="H1931"\w* lies \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w valley|strong="H6010"\w* \w of|strong="H1121"\w* \w Hinnom|strong="H2011"\w* \w westward|strong="H3220"\w*, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w at|strong="H5921"\w* \w the|strong="H6440"\w* farthest \w part|strong="H7097"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w valley|strong="H6010"\w* \w of|strong="H1121"\w* \w Rephaim|strong="H7497"\w* \w northward|strong="H6828"\w*. +\v 9 \w The|strong="H3318"\w* \w border|strong="H1366"\w* \w extended|strong="H3318"\w* \w from|strong="H3318"\w* \w the|strong="H3318"\w* \w top|strong="H7218"\w* \w of|strong="H5892"\w* \w the|strong="H3318"\w* \w mountain|strong="H2022"\w* \w to|strong="H3318"\w* \w the|strong="H3318"\w* \w spring|strong="H4599"\w* \w of|strong="H5892"\w* \w the|strong="H3318"\w* \w waters|strong="H4325"\w* \w of|strong="H5892"\w* \w Nephtoah|strong="H5318"\w*, \w and|strong="H5892"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3318"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w Mount|strong="H2022"\w* \w Ephron|strong="H6085"\w*; \w and|strong="H5892"\w* \w the|strong="H3318"\w* \w border|strong="H1366"\w* \w extended|strong="H3318"\w* \w to|strong="H3318"\w* \w Baalah|strong="H1173"\w* (\w also|strong="H3318"\w* called \w Kiriath|strong="H7157"\w* Jearim); +\v 10 \w and|strong="H2022"\w* \w the|strong="H5674"\w* \w border|strong="H1366"\w* \w turned|strong="H5437"\w* \w about|strong="H5437"\w* \w from|strong="H3381"\w* \w Baalah|strong="H1173"\w* \w westward|strong="H3220"\w* \w to|strong="H3381"\w* \w Mount|strong="H2022"\w* \w Seir|strong="H8165"\w*, \w and|strong="H2022"\w* \w passed|strong="H5674"\w* \w along|strong="H5674"\w* \w to|strong="H3381"\w* \w the|strong="H5674"\w* \w side|strong="H3802"\w* \w of|strong="H2022"\w* \w Mount|strong="H2022"\w* \w Jearim|strong="H3297"\w* (\w also|strong="H1366"\w* called \w Chesalon|strong="H3693"\w*) \w on|strong="H5674"\w* \w the|strong="H5674"\w* \w north|strong="H6828"\w*, \w and|strong="H2022"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* Beth Shemesh, \w and|strong="H2022"\w* \w passed|strong="H5674"\w* \w along|strong="H5674"\w* \w by|strong="H5674"\w* \w Timnah|strong="H8553"\w*; +\v 11 \w and|strong="H2022"\w* \w the|strong="H5674"\w* \w border|strong="H1366"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H5674"\w* \w side|strong="H3802"\w* \w of|strong="H2022"\w* \w Ekron|strong="H6138"\w* \w northward|strong="H6828"\w*; \w and|strong="H2022"\w* \w the|strong="H5674"\w* \w border|strong="H1366"\w* \w extended|strong="H3318"\w* \w to|strong="H3318"\w* \w Shikkeron|strong="H7942"\w*, \w and|strong="H2022"\w* \w passed|strong="H5674"\w* \w along|strong="H5674"\w* \w to|strong="H3318"\w* \w Mount|strong="H2022"\w* \w Baalah|strong="H1173"\w*, \w and|strong="H2022"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w at|strong="H1961"\w* \w Jabneel|strong="H2995"\w*; \w and|strong="H2022"\w* \w the|strong="H5674"\w* goings \w out|strong="H3318"\w* \w of|strong="H2022"\w* \w the|strong="H5674"\w* \w border|strong="H1366"\w* \w were|strong="H1961"\w* \w at|strong="H1961"\w* \w the|strong="H5674"\w* \w sea|strong="H3220"\w*. +\v 12 \w The|strong="H5439"\w* \w west|strong="H3220"\w* \w border|strong="H1366"\w* \w was|strong="H3063"\w* \w to|strong="H1121"\w* \w the|strong="H5439"\w* shore \w of|strong="H1121"\w* \w the|strong="H5439"\w* \w great|strong="H1419"\w* \w sea|strong="H3220"\w*. \w This|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H5439"\w* \w border|strong="H1366"\w* \w of|strong="H1121"\w* \w the|strong="H5439"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* according \w to|strong="H1121"\w* \w their|strong="H5439"\w* \w families|strong="H4940"\w*. +\p +\v 13 \w He|strong="H1931"\w* \w gave|strong="H5414"\w* \w to|strong="H3068"\w* \w Caleb|strong="H3612"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jephunneh|strong="H3312"\w* \w a|strong="H3068"\w* \w portion|strong="H2506"\w* \w among|strong="H8432"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w according|strong="H6310"\w* \w to|strong="H3068"\w* \w the|strong="H5414"\w* \w commandment|strong="H6310"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3068"\w* \w Joshua|strong="H3091"\w*, \w even|strong="H3068"\w* Kiriath Arba, named \w after|strong="H6310"\w* \w the|strong="H5414"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* \w Anak|strong="H6061"\w* (\w also|strong="H3068"\w* called \w Hebron|strong="H2275"\w*). +\v 14 \w Caleb|strong="H3612"\w* \w drove|strong="H3423"\w* \w out|strong="H3423"\w* \w the|strong="H3423"\w* \w three|strong="H7969"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Anak|strong="H6061"\w*: \w Sheshai|strong="H8344"\w*, \w and|strong="H1121"\w* Ahiman, \w and|strong="H1121"\w* \w Talmai|strong="H8526"\w*, \w the|strong="H3423"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Anak|strong="H6061"\w*. +\v 15 \w He|strong="H8033"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H6440"\w* \w the|strong="H6440"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Debir|strong="H1688"\w*: now \w the|strong="H6440"\w* \w name|strong="H8034"\w* \w of|strong="H3427"\w* \w Debir|strong="H1688"\w* \w before|strong="H6440"\w* \w was|strong="H8034"\w* Kiriath Sepher. +\v 16 \w Caleb|strong="H3612"\w* said, “\w He|strong="H5414"\w* \w who|strong="H1323"\w* \w strikes|strong="H5221"\w* Kiriath Sepher, \w and|strong="H1323"\w* \w takes|strong="H3920"\w* \w it|strong="H5414"\w*, \w to|strong="H5414"\w* \w him|strong="H5414"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w Achsah|strong="H5915"\w* \w my|strong="H5414"\w* \w daughter|strong="H1323"\w* \w as|strong="H5414"\w* wife.” +\v 17 \w Othniel|strong="H6274"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kenaz|strong="H7073"\w*, \w the|strong="H5414"\w* brother \w of|strong="H1121"\w* \w Caleb|strong="H3612"\w*, \w took|strong="H3920"\w* \w it|strong="H5414"\w*: \w and|strong="H1121"\w* \w he|strong="H5414"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w Achsah|strong="H5915"\w* \w his|strong="H5414"\w* \w daughter|strong="H1323"\w* \w as|strong="H1121"\w* wife. +\v 18 \w When|strong="H1961"\w* \w she|strong="H5921"\w* \w came|strong="H1961"\w*, \w she|strong="H5921"\w* \w had|strong="H1961"\w* \w him|strong="H5921"\w* \w ask|strong="H7592"\w* \w her|strong="H5921"\w* father \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w field|strong="H7704"\w*. \w She|strong="H5921"\w* got \w off|strong="H5921"\w* \w her|strong="H5921"\w* \w donkey|strong="H2543"\w*, \w and|strong="H7704"\w* \w Caleb|strong="H3612"\w* said, “\w What|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H5921"\w* want?” +\p +\v 19 \w She|strong="H3588"\w* said, “\w Give|strong="H5414"\w* \w me|strong="H5414"\w* \w a|strong="H3068"\w* \w blessing|strong="H1293"\w*. \w Because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H5414"\w* \w set|strong="H5414"\w* \w me|strong="H5414"\w* \w in|strong="H5414"\w* \w the|strong="H3588"\w* land \w of|strong="H4325"\w* \w the|strong="H3588"\w* \w South|strong="H5045"\w*, \w give|strong="H5414"\w* \w me|strong="H5414"\w* \w also|strong="H3588"\w* \w springs|strong="H1543"\w* \w of|strong="H4325"\w* \w water|strong="H4325"\w*.” +\p \w So|strong="H5414"\w* \w he|strong="H3588"\w* \w gave|strong="H5414"\w* \w her|strong="H5414"\w* \w the|strong="H3588"\w* \w upper|strong="H5942"\w* \w springs|strong="H1543"\w* \w and|strong="H4325"\w* \w the|strong="H3588"\w* \w lower|strong="H8482"\w* \w springs|strong="H1543"\w*. +\p +\v 20 \w This|strong="H2063"\w* \w is|strong="H1121"\w* \w the|strong="H1121"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* according \w to|strong="H1121"\w* their \w families|strong="H4940"\w*. +\v 21 \w The|strong="H1961"\w* farthest \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w toward|strong="H4294"\w* \w the|strong="H1961"\w* \w border|strong="H1366"\w* \w of|strong="H1121"\w* Edom \w in|strong="H5892"\w* \w the|strong="H1961"\w* \w South|strong="H5045"\w* \w were|strong="H1961"\w* \w Kabzeel|strong="H6909"\w*, \w Eder|strong="H5740"\w*, \w Jagur|strong="H3017"\w*, +\v 22 \w Kinah|strong="H7016"\w*, \w Dimonah|strong="H1776"\w*, \w Adadah|strong="H5735"\w*, +\v 23 \w Kedesh|strong="H6943"\w*, \w Hazor|strong="H2674"\w*, \w Ithnan|strong="H3497"\w*, +\v 24 \w Ziph|strong="H2128"\w*, \w Telem|strong="H2928"\w*, \w Bealoth|strong="H1175"\w*, +\v 25 \w Hazor|strong="H2674"\w* \w Hadattah|strong="H2675"\w*, \w Kerioth|strong="H7152"\w* \w Hezron|strong="H2696"\w* (\w also|strong="H1931"\w* called \w Hazor|strong="H2674"\w*), +\v 26 Amam, \w Shema|strong="H8090"\w*, \w Moladah|strong="H4137"\w*, +\v 27 Hazar Gaddah, \w Heshmon|strong="H2829"\w*, Beth Pelet, +\v 28 Hazar Shual, Beersheba, Biziothiah, +\v 29 \w Baalah|strong="H1173"\w*, \w Iim|strong="H5864"\w*, \w Ezem|strong="H6107"\w*, +\v 30 Eltolad, \w Chesil|strong="H3686"\w*, \w Hormah|strong="H2767"\w*, +\v 31 \w Ziklag|strong="H6860"\w*, \w Madmannah|strong="H4089"\w*, \w Sansannah|strong="H5578"\w*, +\v 32 \w Lebaoth|strong="H3822"\w*, \w Shilhim|strong="H7978"\w*, \w Ain|strong="H5871"\w*, \w and|strong="H6242"\w* \w Rimmon|strong="H7417"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w are|strong="H5892"\w* \w twenty-nine|strong="H6242"\w*, \w with|strong="H5892"\w* \w their|strong="H3605"\w* \w villages|strong="H2691"\w*. +\m +\v 33 \w In|strong="H8219"\w* \w the|strong="H8219"\w* \w lowland|strong="H8219"\w*, Eshtaol, \w Zorah|strong="H6881"\w*, Ashnah, +\v 34 \w Zanoah|strong="H2182"\w*, En Gannim, \w Tappuah|strong="H8599"\w*, \w Enam|strong="H5879"\w*, +\v 35 \w Jarmuth|strong="H3412"\w*, \w Adullam|strong="H5725"\w*, \w Socoh|strong="H7755"\w*, \w Azekah|strong="H5825"\w*, +\v 36 \w Shaaraim|strong="H8189"\w*, \w Adithaim|strong="H5723"\w* \w and|strong="H5892"\w* \w Gederah|strong="H1449"\w* (\w or|strong="H5892"\w* \w Gederothaim|strong="H1453"\w*); \w fourteen|strong="H6240"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* their \w villages|strong="H2691"\w*. +\m +\v 37 \w Zenan|strong="H6799"\w*, \w Hadashah|strong="H2322"\w*, Migdal Gad, +\v 38 \w Dilean|strong="H1810"\w*, \w Mizpah|strong="H4708"\w*, \w Joktheel|strong="H3371"\w*, +\v 39 \w Lachish|strong="H3923"\w*, \w Bozkath|strong="H1218"\w*, \w Eglon|strong="H5700"\w*, +\v 40 \w Cabbon|strong="H3522"\w*, \w Lahmam|strong="H3903"\w*, \w Chitlish|strong="H3798"\w*, +\v 41 \w Gederoth|strong="H1450"\w*, Beth Dagon, \w Naamah|strong="H5279"\w*, \w and|strong="H5892"\w* \w Makkedah|strong="H4719"\w*; \w sixteen|strong="H8337"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* their \w villages|strong="H2691"\w*. +\m +\v 42 \w Libnah|strong="H3841"\w*, \w Ether|strong="H6281"\w*, \w Ashan|strong="H6228"\w*, +\v 43 \w Iphtah|strong="H3316"\w*, Ashnah, \w Nezib|strong="H5334"\w*, +\v 44 \w Keilah|strong="H7084"\w*, Achzib, \w and|strong="H5892"\w* \w Mareshah|strong="H4762"\w*; \w nine|strong="H8672"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* their \w villages|strong="H2691"\w*. +\m +\v 45 \w Ekron|strong="H6138"\w*, \w with|strong="H2691"\w* its \w towns|strong="H1323"\w* \w and|strong="H1323"\w* its \w villages|strong="H2691"\w*; +\v 46 \w from|strong="H5921"\w* \w Ekron|strong="H6138"\w* \w even|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w*, \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w were|strong="H3027"\w* \w by|strong="H3027"\w* \w the|strong="H3605"\w* \w side|strong="H3027"\w* \w of|strong="H3027"\w* Ashdod, \w with|strong="H5921"\w* \w their|strong="H3605"\w* \w villages|strong="H2691"\w*. +\v 47 Ashdod, \w its|strong="H3220"\w* \w towns|strong="H1323"\w* \w and|strong="H4714"\w* \w its|strong="H3220"\w* \w villages|strong="H2691"\w*; \w Gaza|strong="H5804"\w*, \w its|strong="H3220"\w* \w towns|strong="H1323"\w* \w and|strong="H4714"\w* \w its|strong="H3220"\w* \w villages|strong="H2691"\w*; \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w brook|strong="H5158"\w* \w of|strong="H1323"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H4714"\w* \w the|strong="H5704"\w* great \w sea|strong="H3220"\w* \w with|strong="H4714"\w* \w its|strong="H3220"\w* \w coastline|strong="H1366"\w*. +\m +\v 48 \w In|strong="H2022"\w* \w the|strong="H2022"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*, \w Shamir|strong="H8069"\w*, \w Jattir|strong="H3492"\w*, \w Socoh|strong="H7755"\w*, +\v 49 \w Dannah|strong="H1837"\w*, Kiriath Sannah (\w which|strong="H1931"\w* \w is|strong="H1931"\w* \w Debir|strong="H1688"\w*), +\v 50 \w Anab|strong="H6024"\w*, Eshtemoh, \w Anim|strong="H6044"\w*, +\v 51 \w Goshen|strong="H1657"\w*, \w Holon|strong="H2473"\w*, \w and|strong="H5892"\w* \w Giloh|strong="H1542"\w*; \w eleven|strong="H6240"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* their \w villages|strong="H2691"\w*. +\m +\v 52 Arab, \w Dumah|strong="H1746"\w*, Eshan, +\v 53 \w Janim|strong="H3241"\w*, Beth Tappuah, Aphekah, +\v 54 \w Humtah|strong="H2547"\w*, Kiriath Arba (\w also|strong="H1931"\w* called \w Hebron|strong="H2275"\w*), \w and|strong="H5892"\w* \w Zior|strong="H6730"\w*; \w nine|strong="H8672"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* their \w villages|strong="H2691"\w*. +\m +\v 55 \w Maon|strong="H4584"\w*, \w Carmel|strong="H3760"\w*, \w Ziph|strong="H2128"\w*, Jutah, +\v 56 \w Jezreel|strong="H3157"\w*, \w Jokdeam|strong="H3347"\w*, \w Zanoah|strong="H2182"\w*, +\v 57 \w Kain|strong="H7014"\w*, \w Gibeah|strong="H1390"\w*, \w and|strong="H5892"\w* \w Timnah|strong="H8553"\w*; \w ten|strong="H6235"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* their \w villages|strong="H2691"\w*. +\m +\v 58 \w Halhul|strong="H2478"\w*, Beth Zur, \w Gedor|strong="H1446"\w*, +\v 59 \w Maarath|strong="H4638"\w*, Beth Anoth, \w and|strong="H5892"\w* Eltekon; \w six|strong="H8337"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* their \w villages|strong="H2691"\w*. +\v 60 \w Kiriath|strong="H7157"\w* Baal (\w also|strong="H1931"\w* called \w Kiriath|strong="H7157"\w* Jearim), \w and|strong="H5892"\w* \w Rabbah|strong="H7237"\w*; \w two|strong="H8147"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* \w their|strong="H8147"\w* \w villages|strong="H2691"\w*. +\m +\v 61 In \w the|strong="H4057"\w* \w wilderness|strong="H4057"\w*, Beth Arabah, \w Middin|strong="H4081"\w*, \w Secacah|strong="H5527"\w*, +\v 62 \w Nibshan|strong="H5044"\w*, \w the|strong="H5892"\w* \w City|strong="H5892"\w* \w of|strong="H5892"\w* \w Salt|strong="H5898"\w*, \w and|strong="H5892"\w* En Gedi; \w six|strong="H8337"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* their \w villages|strong="H2691"\w*. +\p +\v 63 \w As|strong="H5704"\w* \w for|strong="H5704"\w* \w the|strong="H3117"\w* \w Jebusites|strong="H2983"\w*, \w the|strong="H3117"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*, \w the|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* couldn’t \w drive|strong="H3423"\w* \w them|strong="H3423"\w* \w out|strong="H3423"\w*; \w but|strong="H3808"\w* \w the|strong="H3117"\w* \w Jebusites|strong="H2983"\w* \w live|strong="H3427"\w* \w with|strong="H3427"\w* \w the|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w at|strong="H3427"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\c 16 +\p +\v 1 \w The|strong="H3318"\w* \w lot|strong="H1486"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w for|strong="H4325"\w* \w the|strong="H3318"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w* \w from|strong="H3318"\w* \w the|strong="H3318"\w* \w Jordan|strong="H3383"\w* \w at|strong="H3383"\w* \w Jericho|strong="H3405"\w*, \w at|strong="H3383"\w* \w the|strong="H3318"\w* \w waters|strong="H4325"\w* \w of|strong="H1121"\w* \w Jericho|strong="H3405"\w* \w on|strong="H5927"\w* \w the|strong="H3318"\w* \w east|strong="H4217"\w*, even \w the|strong="H3318"\w* \w wilderness|strong="H4057"\w*, \w going|strong="H3318"\w* \w up|strong="H5927"\w* \w from|strong="H3318"\w* \w Jericho|strong="H3405"\w* \w through|strong="H3318"\w* \w the|strong="H3318"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w to|strong="H3318"\w* \w Bethel|strong="H1008"\w*. +\v 2 \w It|strong="H1366"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w Bethel|strong="H1008"\w* \w to|strong="H3318"\w* \w Luz|strong="H3870"\w*, \w and|strong="H3318"\w* \w passed|strong="H5674"\w* \w along|strong="H5674"\w* \w to|strong="H3318"\w* \w the|strong="H5674"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w the|strong="H5674"\w* Archites \w to|strong="H3318"\w* \w Ataroth|strong="H5852"\w*; +\v 3 \w and|strong="H3381"\w* \w it|strong="H3381"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w westward|strong="H3220"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w the|strong="H5704"\w* \w Japhletites|strong="H3311"\w*, \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* Beth Horon \w the|strong="H5704"\w* \w lower|strong="H8481"\w*, \w and|strong="H3381"\w* \w on|strong="H1961"\w* \w to|strong="H5704"\w* \w Gezer|strong="H1507"\w*; \w and|strong="H3381"\w* \w ended|strong="H1961"\w* \w at|strong="H1961"\w* \w the|strong="H5704"\w* \w sea|strong="H3220"\w*. +\p +\v 4 \w The|strong="H5157"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w*, \w Manasseh|strong="H4519"\w* \w and|strong="H1121"\w* Ephraim, took \w their|strong="H5157"\w* \w inheritance|strong="H5157"\w*. +\v 5 \w This|strong="H1961"\w* \w was|strong="H1961"\w* \w the|strong="H5704"\w* \w border|strong="H1366"\w* \w of|strong="H1121"\w* \w the|strong="H5704"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Ephraim according \w to|strong="H5704"\w* \w their|strong="H1961"\w* \w families|strong="H4940"\w*. \w The|strong="H5704"\w* \w border|strong="H1366"\w* \w of|strong="H1121"\w* \w their|strong="H1961"\w* \w inheritance|strong="H5159"\w* \w eastward|strong="H4217"\w* \w was|strong="H1961"\w* Ataroth Addar, \w to|strong="H5704"\w* Beth Horon \w the|strong="H5704"\w* \w upper|strong="H5945"\w*. +\v 6 \w The|strong="H5674"\w* \w border|strong="H1366"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w westward|strong="H3220"\w* \w at|strong="H3318"\w* \w Michmethath|strong="H4366"\w* \w on|strong="H5674"\w* \w the|strong="H5674"\w* \w north|strong="H6828"\w*. \w The|strong="H5674"\w* \w border|strong="H1366"\w* \w turned|strong="H5437"\w* \w about|strong="H5437"\w* \w eastward|strong="H4217"\w* \w to|strong="H3318"\w* Taanath Shiloh, \w and|strong="H3318"\w* \w passed|strong="H5674"\w* \w along|strong="H5674"\w* \w it|strong="H5437"\w* \w on|strong="H5674"\w* \w the|strong="H5674"\w* \w east|strong="H4217"\w* \w of|strong="H1366"\w* \w Janoah|strong="H3239"\w*. +\v 7 \w It|strong="H3381"\w* \w went|strong="H3318"\w* \w down|strong="H3381"\w* \w from|strong="H3318"\w* \w Janoah|strong="H3239"\w* \w to|strong="H3381"\w* \w Ataroth|strong="H5852"\w*, \w to|strong="H3381"\w* \w Naarah|strong="H5292"\w*, \w reached|strong="H6293"\w* \w to|strong="H3381"\w* \w Jericho|strong="H3405"\w*, \w and|strong="H3381"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w at|strong="H3383"\w* \w the|strong="H3318"\w* \w Jordan|strong="H3383"\w*. +\v 8 \w From|strong="H1121"\w* \w Tappuah|strong="H8599"\w* \w the|strong="H1961"\w* \w border|strong="H1366"\w* \w went|strong="H3212"\w* \w along|strong="H3212"\w* \w westward|strong="H3220"\w* \w to|strong="H3212"\w* \w the|strong="H1961"\w* \w brook|strong="H5158"\w* \w of|strong="H1121"\w* \w Kanah|strong="H7071"\w*; \w and|strong="H1121"\w* \w ended|strong="H1961"\w* \w at|strong="H1961"\w* \w the|strong="H1961"\w* \w sea|strong="H3220"\w*. \w This|strong="H2063"\w* \w is|strong="H1121"\w* \w the|strong="H1961"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Ephraim according \w to|strong="H3212"\w* \w their|strong="H1961"\w* \w families|strong="H4940"\w*; +\v 9 together \w with|strong="H5892"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w which|strong="H5892"\w* \w were|strong="H1121"\w* \w set|strong="H3995"\w* \w apart|strong="H3995"\w* \w for|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Ephraim \w in|strong="H8432"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* \w their|strong="H3605"\w* \w villages|strong="H2691"\w*. +\v 10 \w They|strong="H3117"\w* didn’t \w drive|strong="H3423"\w* \w out|strong="H3423"\w* \w the|strong="H5647"\w* \w Canaanites|strong="H3669"\w* \w who|strong="H3427"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Gezer|strong="H1507"\w*; \w but|strong="H3808"\w* \w the|strong="H5647"\w* \w Canaanites|strong="H3669"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5647"\w* territory \w of|strong="H3117"\w* Ephraim \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, \w and|strong="H3117"\w* \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w servants|strong="H5647"\w* \w to|strong="H5704"\w* \w do|strong="H5647"\w* \w forced|strong="H4522"\w* \w labor|strong="H4522"\w*. +\c 17 +\p +\v 1 \w This|strong="H1931"\w* \w was|strong="H1961"\w* \w the|strong="H3588"\w* \w lot|strong="H1486"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Manasseh|strong="H4519"\w*, \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H1961"\w* \w the|strong="H3588"\w* \w firstborn|strong="H1060"\w* \w of|strong="H4294"\w* \w Joseph|strong="H3130"\w*. \w As|strong="H1961"\w* \w for|strong="H3588"\w* \w Machir|strong="H4353"\w* \w the|strong="H3588"\w* \w firstborn|strong="H1060"\w* \w of|strong="H4294"\w* \w Manasseh|strong="H4519"\w*, \w the|strong="H3588"\w* father \w of|strong="H4294"\w* \w Gilead|strong="H1568"\w*, \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* man \w of|strong="H4294"\w* \w war|strong="H4421"\w*, \w therefore|strong="H3588"\w* \w he|strong="H1931"\w* \w had|strong="H1961"\w* \w Gilead|strong="H1568"\w* \w and|strong="H4519"\w* \w Bashan|strong="H1316"\w*. +\v 2 \w So|strong="H1961"\w* \w this|strong="H1961"\w* \w was|strong="H1961"\w* \w for|strong="H1121"\w* \w the|strong="H1961"\w* \w rest|strong="H3498"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* according \w to|strong="H1961"\w* \w their|strong="H1961"\w* \w families|strong="H4940"\w*: \w for|strong="H1121"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Abiezer, \w for|strong="H1121"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Helek|strong="H2507"\w*, \w for|strong="H1121"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Asriel, \w for|strong="H1121"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Shechem|strong="H7928"\w*, \w for|strong="H1121"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hepher|strong="H2660"\w*, \w and|strong="H1121"\w* \w for|strong="H1121"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Shemida|strong="H8061"\w*. These \w were|strong="H1961"\w* \w the|strong="H1961"\w* \w male|strong="H2145"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w* according \w to|strong="H1961"\w* \w their|strong="H1961"\w* \w families|strong="H4940"\w*. +\v 3 \w But|strong="H3588"\w* \w Zelophehad|strong="H6765"\w*, \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hepher|strong="H2660"\w*, \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*, \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Machir|strong="H4353"\w*, \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*, \w had|strong="H1961"\w* \w no|strong="H3808"\w* \w sons|strong="H1121"\w*, \w but|strong="H3588"\w* \w daughters|strong="H1323"\w*. These \w are|strong="H1121"\w* \w the|strong="H3588"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w his|strong="H1961"\w* \w daughters|strong="H1323"\w*: \w Mahlah|strong="H4244"\w*, \w Noah|strong="H5270"\w*, \w Hoglah|strong="H2295"\w*, \w Milcah|strong="H4435"\w*, \w and|strong="H1121"\w* \w Tirzah|strong="H8656"\w*. +\v 4 \w They|strong="H3068"\w* \w came|strong="H7126"\w* \w to|strong="H3068"\w* Eleazar \w the|strong="H6440"\w* \w priest|strong="H3548"\w*, \w and|strong="H1121"\w* \w to|strong="H3068"\w* \w Joshua|strong="H3091"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w*, \w and|strong="H1121"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w princes|strong="H5387"\w*, \w saying|strong="H6310"\w*, “\w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w* \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w us|strong="H5414"\w* \w an|strong="H7126"\w* \w inheritance|strong="H5159"\w* \w among|strong="H8432"\w* \w our|strong="H3068"\w* \w brothers|strong="H1121"\w*.” \w Therefore|strong="H4872"\w* \w according|strong="H6310"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w commandment|strong="H6310"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w he|strong="H3068"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w an|strong="H7126"\w* \w inheritance|strong="H5159"\w* \w among|strong="H8432"\w* \w the|strong="H6440"\w* \w brothers|strong="H1121"\w* \w of|strong="H1121"\w* \w their|strong="H3068"\w* \w father|strong="H1121"\w*. +\v 5 \w Ten|strong="H6235"\w* parts \w fell|strong="H5307"\w* \w to|strong="H3383"\w* \w Manasseh|strong="H4519"\w*, \w in|strong="H5307"\w* addition \w to|strong="H3383"\w* \w the|strong="H5676"\w* \w land|strong="H5676"\w* \w of|strong="H2256"\w* \w Gilead|strong="H1568"\w* \w and|strong="H4519"\w* \w Bashan|strong="H1316"\w*, which \w is|strong="H3383"\w* \w beyond|strong="H5676"\w* \w the|strong="H5676"\w* \w Jordan|strong="H3383"\w*; +\v 6 \w because|strong="H3588"\w* \w the|strong="H3588"\w* \w daughters|strong="H1323"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w had|strong="H1961"\w* \w an|strong="H1961"\w* \w inheritance|strong="H5159"\w* \w among|strong="H8432"\w* \w his|strong="H1961"\w* \w sons|strong="H1121"\w*. \w The|strong="H3588"\w* \w land|strong="H5159"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w* \w belonged|strong="H1961"\w* \w to|strong="H1961"\w* \w the|strong="H3588"\w* \w rest|strong="H3498"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*. +\v 7 \w The|strong="H6440"\w* \w border|strong="H1366"\w* \w of|strong="H3427"\w* \w Manasseh|strong="H4519"\w* \w was|strong="H1961"\w* \w from|strong="H6440"\w* Asher \w to|strong="H1980"\w* \w Michmethath|strong="H4366"\w*, \w which|strong="H1366"\w* \w is|strong="H1961"\w* \w before|strong="H6440"\w* \w Shechem|strong="H7927"\w*. \w The|strong="H6440"\w* \w border|strong="H1366"\w* \w went|strong="H1980"\w* \w along|strong="H5921"\w* \w to|strong="H1980"\w* \w the|strong="H6440"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w*, \w to|strong="H1980"\w* \w the|strong="H6440"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* En Tappuah. +\v 8 \w The|strong="H1961"\w* \w land|strong="H1366"\w* \w of|strong="H1121"\w* \w Tappuah|strong="H8599"\w* \w belonged|strong="H1961"\w* \w to|strong="H1961"\w* \w Manasseh|strong="H4519"\w*; \w but|strong="H1961"\w* \w Tappuah|strong="H8599"\w* \w on|strong="H1961"\w* \w the|strong="H1961"\w* \w border|strong="H1366"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w belonged|strong="H1961"\w* \w to|strong="H1961"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Ephraim. +\v 9 \w The|strong="H8432"\w* \w border|strong="H1366"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H8432"\w* \w brook|strong="H5158"\w* \w of|strong="H5892"\w* \w Kanah|strong="H7071"\w*, \w southward|strong="H5045"\w* \w of|strong="H5892"\w* \w the|strong="H8432"\w* \w brook|strong="H5158"\w*. These \w cities|strong="H5892"\w* \w belonged|strong="H1961"\w* \w to|strong="H3381"\w* Ephraim \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w Manasseh|strong="H4519"\w*. \w The|strong="H8432"\w* \w border|strong="H1366"\w* \w of|strong="H5892"\w* \w Manasseh|strong="H4519"\w* \w was|strong="H1961"\w* \w on|strong="H1961"\w* \w the|strong="H8432"\w* \w north|strong="H6828"\w* \w side|strong="H6828"\w* \w of|strong="H5892"\w* \w the|strong="H8432"\w* \w brook|strong="H5158"\w*, \w and|strong="H5892"\w* \w ended|strong="H1961"\w* \w at|strong="H1961"\w* \w the|strong="H8432"\w* \w sea|strong="H3220"\w*. +\v 10 \w Southward|strong="H5045"\w* \w it|strong="H1961"\w* \w was|strong="H1961"\w* Ephraim’s, \w and|strong="H4519"\w* \w northward|strong="H6828"\w* \w it|strong="H1961"\w* \w was|strong="H1961"\w* \w Manasseh|strong="H4519"\w*’s, \w and|strong="H4519"\w* \w the|strong="H1961"\w* \w sea|strong="H3220"\w* \w was|strong="H1961"\w* \w his|strong="H1961"\w* \w border|strong="H1366"\w*. They \w reached|strong="H6293"\w* \w to|strong="H1961"\w* Asher \w on|strong="H1961"\w* \w the|strong="H1961"\w* \w north|strong="H6828"\w*, \w and|strong="H4519"\w* \w to|strong="H1961"\w* \w Issachar|strong="H3485"\w* \w on|strong="H1961"\w* \w the|strong="H1961"\w* \w east|strong="H4217"\w*. +\v 11 \w Manasseh|strong="H4519"\w* \w had|strong="H1961"\w* \w three|strong="H7969"\w* heights \w in|strong="H3427"\w* \w Issachar|strong="H3485"\w*, \w in|strong="H3427"\w* Asher Beth Shean \w and|strong="H3427"\w* \w its|strong="H1961"\w* \w towns|strong="H1323"\w*, \w and|strong="H3427"\w* \w Ibleam|strong="H2991"\w* \w and|strong="H3427"\w* \w its|strong="H1961"\w* \w towns|strong="H1323"\w*, \w and|strong="H3427"\w* \w the|strong="H1961"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1323"\w* \w Dor|strong="H1756"\w* \w and|strong="H3427"\w* \w its|strong="H1961"\w* \w towns|strong="H1323"\w*, \w and|strong="H3427"\w* \w the|strong="H1961"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1323"\w* \w Endor|strong="H5874"\w* \w and|strong="H3427"\w* \w its|strong="H1961"\w* \w towns|strong="H1323"\w*, \w and|strong="H3427"\w* \w the|strong="H1961"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1323"\w* \w Taanach|strong="H8590"\w* \w and|strong="H3427"\w* \w its|strong="H1961"\w* \w towns|strong="H1323"\w*, \w and|strong="H3427"\w* \w the|strong="H1961"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1323"\w* \w Megiddo|strong="H4023"\w* \w and|strong="H3427"\w* \w its|strong="H1961"\w* \w towns|strong="H1323"\w*. +\v 12 \w Yet|strong="H3808"\w* \w the|strong="H3423"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* couldn’t \w drive|strong="H3423"\w* \w out|strong="H3423"\w* \w the|strong="H3423"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1121"\w* \w those|strong="H1121"\w* \w cities|strong="H5892"\w*; \w but|strong="H3808"\w* \w the|strong="H3423"\w* \w Canaanites|strong="H3669"\w* \w would|strong="H2974"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w that|strong="H5892"\w* land. +\p +\v 13 \w When|strong="H3588"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w had|strong="H1961"\w* \w grown|strong="H1961"\w* \w strong|strong="H2388"\w*, \w they|strong="H3588"\w* \w put|strong="H5414"\w* \w the|strong="H3588"\w* \w Canaanites|strong="H3669"\w* \w to|strong="H3478"\w* \w forced|strong="H4522"\w* \w labor|strong="H4522"\w*, \w and|strong="H1121"\w* didn’t \w utterly|strong="H3423"\w* \w drive|strong="H3423"\w* \w them|strong="H5414"\w* \w out|strong="H3423"\w*. +\v 14 \w The|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Joshua|strong="H3091"\w*, \w saying|strong="H1696"\w*, “\w Why|strong="H4069"\w* \w have|strong="H3068"\w* \w you|strong="H5414"\w* \w given|strong="H5414"\w* \w me|strong="H5414"\w* \w just|strong="H1696"\w* \w one|strong="H1121"\w* \w lot|strong="H1486"\w* \w and|strong="H1121"\w* \w one|strong="H1121"\w* part \w for|strong="H5704"\w* \w an|strong="H5414"\w* \w inheritance|strong="H5159"\w*, \w since|strong="H5704"\w* \w we|strong="H3068"\w* \w are|strong="H5971"\w* \w a|strong="H3068"\w* \w numerous|strong="H7227"\w* \w people|strong="H5971"\w*, \w because|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w blessed|strong="H1288"\w* \w us|strong="H5414"\w* \w so|strong="H3541"\w* \w far|strong="H5704"\w*?” +\p +\v 15 \w Joshua|strong="H3091"\w* said \w to|strong="H5927"\w* \w them|strong="H5927"\w*, “\w If|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H5971"\w* \w a|strong="H3068"\w* \w numerous|strong="H7227"\w* \w people|strong="H5971"\w*, \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H3588"\w* \w forest|strong="H3293"\w*, \w and|strong="H5971"\w* \w clear|strong="H1254"\w* land \w for|strong="H3588"\w* \w yourself|strong="H8033"\w* \w there|strong="H8033"\w* \w in|strong="H7227"\w* \w the|strong="H3588"\w* land \w of|strong="H2022"\w* \w the|strong="H3588"\w* \w Perizzites|strong="H6522"\w* \w and|strong="H5971"\w* \w of|strong="H2022"\w* \w the|strong="H3588"\w* \w Rephaim|strong="H7497"\w*, \w since|strong="H3588"\w* \w the|strong="H3588"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H2022"\w* Ephraim \w is|strong="H8033"\w* \w too|strong="H7227"\w* narrow \w for|strong="H3588"\w* \w you|strong="H3588"\w*.” +\p +\v 16 \w The|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w* said, “\w The|strong="H3605"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w is|strong="H3605"\w* \w not|strong="H3808"\w* \w enough|strong="H4672"\w* \w for|strong="H3427"\w* \w us|strong="H4672"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w Canaanites|strong="H3669"\w* \w who|strong="H3605"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* land \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w valley|strong="H6010"\w* \w have|strong="H1121"\w* \w chariots|strong="H7393"\w* \w of|strong="H1121"\w* \w iron|strong="H1270"\w*, \w both|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H1121"\w* \w in|strong="H3427"\w* Beth Shean \w and|strong="H1121"\w* \w its|strong="H3605"\w* \w towns|strong="H1323"\w*, \w and|strong="H1121"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H1121"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w valley|strong="H6010"\w* \w of|strong="H1121"\w* \w Jezreel|strong="H3157"\w*.” +\p +\v 17 \w Joshua|strong="H3091"\w* spoke \w to|strong="H1961"\w* \w the|strong="H3091"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Joseph|strong="H3130"\w*, \w that|strong="H5971"\w* \w is|strong="H1961"\w*, \w to|strong="H1961"\w* Ephraim \w and|strong="H1419"\w* \w to|strong="H1961"\w* \w Manasseh|strong="H4519"\w*, saying, “\w You|strong="H3808"\w* \w are|strong="H5971"\w* \w a|strong="H3068"\w* \w numerous|strong="H7227"\w* \w people|strong="H5971"\w*, \w and|strong="H1419"\w* \w have|strong="H1961"\w* \w great|strong="H1419"\w* \w power|strong="H3581"\w*. \w You|strong="H3808"\w* \w shall|strong="H5971"\w* \w not|strong="H3808"\w* \w have|strong="H1961"\w* \w one|strong="H3808"\w* \w lot|strong="H1486"\w* only; +\v 18 \w but|strong="H3588"\w* \w the|strong="H3588"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w shall|strong="H2022"\w* \w be|strong="H1961"\w* yours. \w Although|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w forest|strong="H3293"\w*, \w you|strong="H3588"\w* \w shall|strong="H2022"\w* \w cut|strong="H1254"\w* \w it|strong="H1931"\w* \w down|strong="H1254"\w*, \w and|strong="H7393"\w* \w it|strong="H1931"\w*’s \w farthest|strong="H8444"\w* extent \w shall|strong="H2022"\w* \w be|strong="H1961"\w* yours; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H2022"\w* \w drive|strong="H3423"\w* \w out|strong="H3423"\w* \w the|strong="H3588"\w* \w Canaanites|strong="H3669"\w*, \w though|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H1961"\w* \w chariots|strong="H7393"\w* \w of|strong="H2022"\w* \w iron|strong="H1270"\w*, \w and|strong="H7393"\w* \w though|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H1961"\w* \w strong|strong="H2389"\w*.” +\c 18 +\p +\v 1 \w The|strong="H3605"\w* \w whole|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w assembled|strong="H6950"\w* \w themselves|strong="H6440"\w* \w together|strong="H6950"\w* \w at|strong="H3478"\w* \w Shiloh|strong="H7887"\w*, \w and|strong="H1121"\w* \w set|strong="H7931"\w* \w up|strong="H1121"\w* \w the|strong="H3605"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w* \w there|strong="H8033"\w*. \w The|strong="H3605"\w* \w land|strong="H6440"\w* \w was|strong="H3478"\w* \w subdued|strong="H3533"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*. +\v 2 \w Seven|strong="H7651"\w* \w tribes|strong="H7626"\w* \w remained|strong="H3498"\w* \w among|strong="H3808"\w* \w the|strong="H3808"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w which|strong="H3478"\w* \w had|strong="H3478"\w* \w not|strong="H3808"\w* \w yet|strong="H3808"\w* \w divided|strong="H2505"\w* \w their|strong="H3808"\w* \w inheritance|strong="H5159"\w*. +\v 3 \w Joshua|strong="H3091"\w* said \w to|strong="H5704"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, “\w How|strong="H5704"\w* \w long|strong="H5704"\w* \w will|strong="H3068"\w* \w you|strong="H5414"\w* neglect \w to|strong="H5704"\w* \w go|strong="H7503"\w* \w in|strong="H3478"\w* \w to|strong="H5704"\w* \w possess|strong="H3423"\w* \w the|strong="H5414"\w* land, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5414"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* fathers, \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w*? +\v 4 \w Appoint|strong="H7971"\w* \w for|strong="H7971"\w* yourselves \w three|strong="H7969"\w* \w men|strong="H1980"\w* \w from|strong="H1980"\w* each \w tribe|strong="H7626"\w*. \w I|strong="H1980"\w* \w will|strong="H6310"\w* \w send|strong="H7971"\w* \w them|strong="H7971"\w*, \w and|strong="H1980"\w* \w they|strong="H6310"\w* \w shall|strong="H6310"\w* \w arise|strong="H6965"\w*, \w walk|strong="H1980"\w* \w through|strong="H1980"\w* \w the|strong="H7971"\w* \w land|strong="H5159"\w*, \w and|strong="H1980"\w* \w describe|strong="H3789"\w* \w it|strong="H1980"\w* \w according|strong="H6310"\w* \w to|strong="H1980"\w* \w their|strong="H7971"\w* \w inheritance|strong="H5159"\w*; \w then|strong="H1980"\w* \w they|strong="H6310"\w* \w shall|strong="H6310"\w* \w come|strong="H1980"\w* \w to|strong="H1980"\w* \w me|strong="H7971"\w*. +\v 5 \w They|strong="H5921"\w* \w shall|strong="H1004"\w* \w divide|strong="H2505"\w* \w it|strong="H5921"\w* \w into|strong="H5921"\w* \w seven|strong="H7651"\w* \w portions|strong="H2506"\w*. \w Judah|strong="H3063"\w* \w shall|strong="H1004"\w* live \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w borders|strong="H1366"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w south|strong="H5045"\w*, \w and|strong="H3063"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Joseph|strong="H3130"\w* \w shall|strong="H1004"\w* live \w in|strong="H5921"\w* \w their|strong="H5921"\w* \w borders|strong="H1366"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w north|strong="H6828"\w*. +\v 6 \w You|strong="H6440"\w* \w shall|strong="H3068"\w* survey \w the|strong="H6440"\w* \w land|strong="H6440"\w* into \w seven|strong="H7651"\w* \w parts|strong="H2506"\w*, \w and|strong="H3068"\w* bring \w the|strong="H6440"\w* description \w here|strong="H6311"\w* \w to|strong="H3068"\w* \w me|strong="H6440"\w*; \w and|strong="H3068"\w* \w I|strong="H6440"\w* \w will|strong="H3068"\w* \w cast|strong="H3384"\w* \w lots|strong="H1486"\w* \w for|strong="H6440"\w* \w you|strong="H6440"\w* \w here|strong="H6311"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 7 \w However|strong="H3588"\w*, \w the|strong="H3588"\w* \w Levites|strong="H3881"\w* \w have|strong="H3068"\w* \w no|strong="H3947"\w* \w portion|strong="H2506"\w* \w among|strong="H7130"\w* \w you|strong="H3588"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w priesthood|strong="H3550"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w their|strong="H3068"\w* \w inheritance|strong="H5159"\w*. \w Gad|strong="H1410"\w*, \w Reuben|strong="H7205"\w*, \w and|strong="H4872"\w* \w the|strong="H3588"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H3068"\w* \w Manasseh|strong="H4519"\w* \w have|strong="H3068"\w* \w received|strong="H3947"\w* \w their|strong="H3068"\w* \w inheritance|strong="H5159"\w* \w east|strong="H4217"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w Jordan|strong="H3383"\w*, \w which|strong="H3068"\w* \w Moses|strong="H4872"\w* \w the|strong="H3588"\w* \w servant|strong="H5650"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w*.” +\p +\v 8 \w The|strong="H6440"\w* \w men|strong="H1980"\w* \w arose|strong="H6965"\w* \w and|strong="H1980"\w* \w went|strong="H1980"\w*. \w Joshua|strong="H3091"\w* \w commanded|strong="H6680"\w* \w those|strong="H1980"\w* \w who|strong="H3068"\w* \w went|strong="H1980"\w* \w to|strong="H1980"\w* survey \w the|strong="H6440"\w* \w land|strong="H6440"\w*, saying, “\w Go|strong="H1980"\w* \w walk|strong="H1980"\w* \w through|strong="H1980"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*, survey \w it|strong="H7725"\w*, \w and|strong="H1980"\w* \w come|strong="H1980"\w* \w again|strong="H7725"\w* \w to|strong="H1980"\w* \w me|strong="H6440"\w*. \w I|strong="H6680"\w* \w will|strong="H3068"\w* \w cast|strong="H7993"\w* \w lots|strong="H1486"\w* \w for|strong="H6440"\w* \w you|strong="H6440"\w* \w here|strong="H6311"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H1980"\w* \w Shiloh|strong="H7887"\w*.” +\p +\v 9 \w The|strong="H5921"\w* \w men|strong="H7651"\w* \w went|strong="H3212"\w* \w and|strong="H3212"\w* \w passed|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H5921"\w* \w land|strong="H2506"\w*, \w and|strong="H3212"\w* surveyed \w it|strong="H5921"\w* \w by|strong="H5921"\w* \w cities|strong="H5892"\w* \w into|strong="H3212"\w* \w seven|strong="H7651"\w* \w portions|strong="H2506"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w book|strong="H5612"\w*. \w They|strong="H5921"\w* \w came|strong="H3212"\w* \w to|strong="H3212"\w* \w Joshua|strong="H3091"\w* \w to|strong="H3212"\w* \w the|strong="H5921"\w* \w camp|strong="H4264"\w* \w at|strong="H5921"\w* \w Shiloh|strong="H7887"\w*. +\v 10 \w Joshua|strong="H3091"\w* \w cast|strong="H7993"\w* \w lots|strong="H1486"\w* \w for|strong="H6440"\w* \w them|strong="H6440"\w* \w in|strong="H3478"\w* \w Shiloh|strong="H7887"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. \w There|strong="H8033"\w* \w Joshua|strong="H3091"\w* \w divided|strong="H2505"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w to|strong="H3478"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* according \w to|strong="H3478"\w* \w their|strong="H3068"\w* \w divisions|strong="H4256"\w*. +\p +\v 11 \w The|strong="H3318"\w* \w lot|strong="H1486"\w* \w of|strong="H1121"\w* \w the|strong="H3318"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H3318"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w came|strong="H3318"\w* \w up|strong="H5927"\w* according \w to|strong="H3318"\w* \w their|strong="H3318"\w* \w families|strong="H4940"\w*. \w The|strong="H3318"\w* \w border|strong="H1366"\w* \w of|strong="H1121"\w* \w their|strong="H3318"\w* \w lot|strong="H1486"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* between \w the|strong="H3318"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w and|strong="H1121"\w* \w the|strong="H3318"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w*. +\v 12 \w Their|strong="H1961"\w* \w border|strong="H1366"\w* \w on|strong="H1961"\w* \w the|strong="H4480"\w* \w north|strong="H6828"\w* \w quarter|strong="H6285"\w* \w was|strong="H1961"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w Jordan|strong="H3383"\w*. \w The|strong="H4480"\w* \w border|strong="H1366"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H4480"\w* \w side|strong="H6285"\w* \w of|strong="H2022"\w* \w Jericho|strong="H3405"\w* \w on|strong="H1961"\w* \w the|strong="H4480"\w* \w north|strong="H6828"\w*, \w and|strong="H2022"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w through|strong="H4480"\w* \w the|strong="H4480"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w westward|strong="H3220"\w*. \w It|strong="H5927"\w* \w ended|strong="H1961"\w* \w at|strong="H1961"\w* \w the|strong="H4480"\w* \w wilderness|strong="H4057"\w* \w of|strong="H2022"\w* Beth Aven. +\v 13 \w The|strong="H5921"\w* \w border|strong="H1366"\w* \w passed|strong="H5674"\w* \w along|strong="H5921"\w* \w from|strong="H3381"\w* \w there|strong="H8033"\w* \w to|strong="H3381"\w* \w Luz|strong="H3870"\w*, \w to|strong="H3381"\w* \w the|strong="H5921"\w* \w side|strong="H3802"\w* \w of|strong="H2022"\w* \w Luz|strong="H3870"\w* (\w also|strong="H1366"\w* \w called|strong="H8033"\w* \w Bethel|strong="H1008"\w*), \w southward|strong="H5045"\w*. \w The|strong="H5921"\w* \w border|strong="H1366"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* Ataroth Addar, \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w mountain|strong="H2022"\w* \w that|strong="H1931"\w* lies \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w south|strong="H5045"\w* \w of|strong="H2022"\w* Beth Horon \w the|strong="H5921"\w* \w lower|strong="H8481"\w*. +\v 14 \w The|strong="H6440"\w* \w border|strong="H1366"\w* \w extended|strong="H1961"\w*, \w and|strong="H1121"\w* \w turned|strong="H5437"\w* \w around|strong="H5437"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w west|strong="H3220"\w* \w quarter|strong="H6285"\w* \w southward|strong="H5045"\w*, \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w mountain|strong="H2022"\w* \w that|strong="H1931"\w* \w lies|strong="H1961"\w* \w before|strong="H6440"\w* Beth Horon \w southward|strong="H5045"\w*; \w and|strong="H1121"\w* \w ended|strong="H1961"\w* \w at|strong="H5921"\w* \w Kiriath|strong="H7157"\w* Baal (\w also|strong="H1121"\w* called \w Kiriath|strong="H7157"\w* Jearim), \w a|strong="H3068"\w* \w city|strong="H5892"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*. \w This|strong="H2063"\w* \w was|strong="H1961"\w* \w the|strong="H6440"\w* \w west|strong="H3220"\w* \w quarter|strong="H6285"\w*. +\v 15 \w The|strong="H3318"\w* \w south|strong="H5045"\w* \w quarter|strong="H6285"\w* \w was|strong="H1366"\w* \w from|strong="H3318"\w* \w the|strong="H3318"\w* farthest \w part|strong="H7097"\w* \w of|strong="H1366"\w* \w Kiriath|strong="H7157"\w* Jearim. \w The|strong="H3318"\w* \w border|strong="H1366"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w westward|strong="H3220"\w*, \w and|strong="H3318"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3318"\w* \w spring|strong="H4599"\w* \w of|strong="H1366"\w* \w the|strong="H3318"\w* \w waters|strong="H4325"\w* \w of|strong="H1366"\w* \w Nephtoah|strong="H5318"\w*. +\v 16 \w The|strong="H6440"\w* \w border|strong="H1366"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H6440"\w* farthest \w part|strong="H7097"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w mountain|strong="H2022"\w* \w that|strong="H1121"\w* lies \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w valley|strong="H6010"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hinnom|strong="H2011"\w*, \w which|strong="H2022"\w* \w is|strong="H1121"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w valley|strong="H6010"\w* \w of|strong="H1121"\w* \w Rephaim|strong="H7497"\w* \w northward|strong="H6828"\w*. \w It|strong="H5921"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H6440"\w* \w valley|strong="H6010"\w* \w of|strong="H1121"\w* \w Hinnom|strong="H2011"\w*, \w to|strong="H3381"\w* \w the|strong="H6440"\w* \w side|strong="H3802"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w Jebusite|strong="H2983"\w* \w southward|strong="H5045"\w*, \w and|strong="H1121"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* En Rogel. +\v 17 \w It|strong="H3381"\w* \w extended|strong="H3318"\w* \w northward|strong="H6828"\w*, \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w at|strong="H3318"\w* En Shemesh, \w and|strong="H1121"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3381"\w* \w Geliloth|strong="H1553"\w*, which \w is|strong="H1121"\w* \w opposite|strong="H5227"\w* \w the|strong="H3318"\w* \w ascent|strong="H4608"\w* \w of|strong="H1121"\w* Adummim. \w It|strong="H3381"\w* \w went|strong="H3318"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3318"\w* stone \w of|strong="H1121"\w* Bohan \w the|strong="H3318"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w*. +\v 18 \w It|strong="H3381"\w* \w passed|strong="H5674"\w* \w along|strong="H5674"\w* \w to|strong="H3381"\w* \w the|strong="H5674"\w* \w side|strong="H3802"\w* \w opposite|strong="H4136"\w* \w the|strong="H5674"\w* \w Arabah|strong="H6160"\w* \w northward|strong="H6828"\w*, \w and|strong="H3381"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H5674"\w* \w Arabah|strong="H6160"\w*. +\v 19 \w The|strong="H5674"\w* \w border|strong="H1366"\w* \w passed|strong="H5674"\w* \w along|strong="H5674"\w* \w to|strong="H1961"\w* \w the|strong="H5674"\w* \w side|strong="H3802"\w* \w of|strong="H1366"\w* Beth Hoglah \w northward|strong="H6828"\w*; \w and|strong="H3220"\w* \w the|strong="H5674"\w* \w border|strong="H1366"\w* \w ended|strong="H1961"\w* \w at|strong="H1961"\w* \w the|strong="H5674"\w* \w north|strong="H6828"\w* \w bay|strong="H3956"\w* \w of|strong="H1366"\w* \w the|strong="H5674"\w* \w Salt|strong="H4417"\w* \w Sea|strong="H3220"\w*, \w at|strong="H1961"\w* \w the|strong="H5674"\w* \w south|strong="H5045"\w* \w end|strong="H7097"\w* \w of|strong="H1366"\w* \w the|strong="H5674"\w* \w Jordan|strong="H3383"\w*. \w This|strong="H2088"\w* \w was|strong="H1961"\w* \w the|strong="H5674"\w* \w south|strong="H5045"\w* \w border|strong="H1366"\w*. +\v 20 \w The|strong="H5439"\w* \w Jordan|strong="H3383"\w* \w was|strong="H1121"\w* \w its|strong="H5439"\w* \w border|strong="H1379"\w* \w on|strong="H6285"\w* \w the|strong="H5439"\w* \w east|strong="H6924"\w* \w quarter|strong="H6285"\w*. \w This|strong="H2063"\w* \w was|strong="H1121"\w* \w the|strong="H5439"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H5439"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*, \w by|strong="H5159"\w* \w the|strong="H5439"\w* \w borders|strong="H1367"\w* \w around|strong="H5439"\w* \w it|strong="H5439"\w*, according \w to|strong="H1121"\w* \w their|strong="H5439"\w* \w families|strong="H4940"\w*. +\v 21 \w Now|strong="H1961"\w* \w the|strong="H1961"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* according \w to|strong="H1961"\w* \w their|strong="H1961"\w* \w families|strong="H4940"\w* \w were|strong="H1961"\w* \w Jericho|strong="H3405"\w*, Beth Hoglah, \w Emek|strong="H6010"\w* \w Keziz|strong="H7104"\w*, +\v 22 Beth Arabah, \w Zemaraim|strong="H6787"\w*, \w Bethel|strong="H1008"\w*, +\v 23 \w Avvim|strong="H5761"\w*, \w Parah|strong="H6511"\w*, \w Ophrah|strong="H6084"\w*, +\v 24 Chephar Ammoni, \w Ophni|strong="H6078"\w*, \w and|strong="H5892"\w* \w Geba|strong="H1387"\w*; \w twelve|strong="H8147"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* \w their|strong="H8147"\w* \w villages|strong="H2691"\w*. +\v 25 \w Gibeon|strong="H1391"\w*, \w Ramah|strong="H7414"\w*, Beeroth, +\v 26 \w Mizpeh|strong="H4708"\w*, \w Chephirah|strong="H3716"\w*, \w Mozah|strong="H4681"\w*, +\v 27 \w Rekem|strong="H7552"\w*, \w Irpeel|strong="H3416"\w*, \w Taralah|strong="H8634"\w*, +\v 28 \w Zelah|strong="H6762"\w*, Eleph, \w the|strong="H1121"\w* \w Jebusite|strong="H2983"\w* (\w also|strong="H1121"\w* called \w Jerusalem|strong="H3389"\w*), \w Gibeath|strong="H1394"\w*, \w and|strong="H1121"\w* \w Kiriath|strong="H7157"\w*; \w fourteen|strong="H6240"\w* \w cities|strong="H5892"\w* \w with|strong="H3389"\w* \w their|strong="H1144"\w* \w villages|strong="H2691"\w*. \w This|strong="H2063"\w* \w is|strong="H1931"\w* \w the|strong="H1121"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* according \w to|strong="H3389"\w* \w their|strong="H1144"\w* \w families|strong="H4940"\w*. +\c 19 +\p +\v 1 \w The|strong="H8432"\w* \w second|strong="H8145"\w* \w lot|strong="H1486"\w* \w came|strong="H1961"\w* \w out|strong="H3318"\w* \w for|strong="H1121"\w* \w Simeon|strong="H8095"\w*, even \w for|strong="H1121"\w* \w the|strong="H8432"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H8432"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Simeon|strong="H8095"\w* according \w to|strong="H3318"\w* \w their|strong="H8432"\w* \w families|strong="H4940"\w*. \w Their|strong="H8432"\w* \w inheritance|strong="H5159"\w* \w was|strong="H1961"\w* \w in|strong="H8432"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w the|strong="H8432"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H8432"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*. +\v 2 \w They|strong="H1992"\w* \w had|strong="H1961"\w* \w for|strong="H1961"\w* \w their|strong="H1992"\w* \w inheritance|strong="H5159"\w* Beersheba (or \w Sheba|strong="H7652"\w*), \w Moladah|strong="H4137"\w*, +\v 3 Hazar Shual, \w Balah|strong="H1088"\w*, \w Ezem|strong="H6107"\w*, +\v 4 Eltolad, \w Bethul|strong="H1329"\w*, \w Hormah|strong="H2767"\w*, +\v 5 \w Ziklag|strong="H6860"\w*, Beth Marcaboth, Hazar Susah, +\v 6 Beth Lebaoth, \w and|strong="H5892"\w* \w Sharuhen|strong="H8287"\w*; \w thirteen|strong="H7969"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* their \w villages|strong="H2691"\w*; +\v 7 \w Ain|strong="H5871"\w*, \w Rimmon|strong="H7417"\w*, \w Ether|strong="H6281"\w*, \w and|strong="H5892"\w* \w Ashan|strong="H6228"\w*; four \w cities|strong="H5892"\w* \w with|strong="H5892"\w* their \w villages|strong="H2691"\w*; +\v 8 \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w villages|strong="H2691"\w* \w that|strong="H3605"\w* \w were|strong="H1121"\w* \w around|strong="H5439"\w* \w these|strong="H2063"\w* \w cities|strong="H5892"\w* \w to|strong="H5704"\w* Baalath Beer, \w Ramah|strong="H7414"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w South|strong="H5045"\w*. \w This|strong="H2063"\w* \w is|strong="H3605"\w* \w the|strong="H3605"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Simeon|strong="H8095"\w* according \w to|strong="H5704"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w*. +\v 9 \w Out|strong="H8432"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w part|strong="H2506"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w was|strong="H1961"\w* \w the|strong="H3588"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Simeon|strong="H8095"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w portion|strong="H2506"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w was|strong="H1961"\w* \w too|strong="H1961"\w* \w much|strong="H7227"\w* \w for|strong="H3588"\w* \w them|strong="H1992"\w*. \w Therefore|strong="H3588"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Simeon|strong="H8095"\w* \w had|strong="H1961"\w* \w inheritance|strong="H5159"\w* \w in|strong="H8432"\w* \w the|strong="H3588"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w their|strong="H1992"\w* \w inheritance|strong="H5159"\w*. +\p +\v 10 \w The|strong="H5704"\w* \w third|strong="H7992"\w* \w lot|strong="H1486"\w* \w came|strong="H1961"\w* \w up|strong="H5927"\w* \w for|strong="H5704"\w* \w the|strong="H5704"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Zebulun|strong="H2074"\w* according \w to|strong="H5704"\w* \w their|strong="H1961"\w* \w families|strong="H4940"\w*. \w The|strong="H5704"\w* \w border|strong="H1366"\w* \w of|strong="H1121"\w* \w their|strong="H1961"\w* \w inheritance|strong="H5159"\w* \w was|strong="H1961"\w* \w to|strong="H5704"\w* \w Sarid|strong="H8301"\w*. +\v 11 \w Their|strong="H6440"\w* \w border|strong="H1366"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w westward|strong="H3220"\w*, \w even|strong="H5921"\w* \w to|strong="H5927"\w* \w Maralah|strong="H4831"\w*, \w and|strong="H6440"\w* \w reached|strong="H6293"\w* \w to|strong="H5927"\w* \w Dabbesheth|strong="H1708"\w*. \w It|strong="H5921"\w* \w reached|strong="H6293"\w* \w to|strong="H5927"\w* \w the|strong="H6440"\w* \w brook|strong="H5158"\w* \w that|strong="H5927"\w* \w is|strong="H6440"\w* \w before|strong="H6440"\w* \w Jokneam|strong="H3362"\w*. +\v 12 \w It|strong="H5921"\w* \w turned|strong="H7725"\w* \w from|strong="H7725"\w* \w Sarid|strong="H8301"\w* \w eastward|strong="H6924"\w* \w toward|strong="H5921"\w* \w the|strong="H5921"\w* \w sunrise|strong="H4217"\w* \w to|strong="H7725"\w* \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* Chisloth Tabor. \w It|strong="H5921"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H7725"\w* \w Daberath|strong="H1705"\w*, \w and|strong="H7725"\w* \w went|strong="H3318"\w* \w up|strong="H5927"\w* \w to|strong="H7725"\w* \w Japhia|strong="H3309"\w*. +\v 13 \w From|strong="H3318"\w* \w there|strong="H8033"\w* \w it|strong="H8033"\w* \w passed|strong="H5674"\w* \w along|strong="H5674"\w* \w eastward|strong="H6924"\w* \w to|strong="H3318"\w* Gath Hepher, \w to|strong="H3318"\w* Ethkazin; \w and|strong="H8033"\w* \w it|strong="H8033"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w at|strong="H3318"\w* \w Rimmon|strong="H7417"\w* \w which|strong="H8033"\w* \w stretches|strong="H8388"\w* \w to|strong="H3318"\w* \w Neah|strong="H5269"\w*. +\v 14 \w The|strong="H5437"\w* \w border|strong="H1366"\w* \w turned|strong="H5437"\w* \w around|strong="H5437"\w* \w it|strong="H1961"\w* \w on|strong="H1961"\w* \w the|strong="H5437"\w* \w north|strong="H6828"\w* \w to|strong="H1961"\w* \w Hannathon|strong="H2615"\w*; \w and|strong="H5437"\w* \w it|strong="H1961"\w* \w ended|strong="H1961"\w* \w at|strong="H1961"\w* \w the|strong="H5437"\w* \w valley|strong="H1516"\w* \w of|strong="H1366"\w* Iphtah El; +\v 15 \w Kattath|strong="H7005"\w*, \w Nahalal|strong="H5096"\w*, \w Shimron|strong="H8110"\w*, \w Idalah|strong="H3030"\w*, \w and|strong="H5892"\w* \w Bethlehem|strong="H1035"\w*: \w twelve|strong="H8147"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* \w their|strong="H8147"\w* \w villages|strong="H2691"\w*. +\v 16 \w This|strong="H2063"\w* \w is|strong="H5892"\w* \w the|strong="H1121"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Zebulun|strong="H2074"\w* according \w to|strong="H1121"\w* their \w families|strong="H4940"\w*, \w these|strong="H2063"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* their \w villages|strong="H2691"\w*. +\p +\v 17 \w The|strong="H3318"\w* \w fourth|strong="H7243"\w* \w lot|strong="H1486"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w for|strong="H1121"\w* \w Issachar|strong="H3485"\w*, even \w for|strong="H1121"\w* \w the|strong="H3318"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Issachar|strong="H3485"\w* according \w to|strong="H3318"\w* \w their|strong="H3318"\w* \w families|strong="H4940"\w*. +\v 18 \w Their|strong="H1961"\w* \w border|strong="H1366"\w* \w was|strong="H1961"\w* \w to|strong="H1961"\w* \w Jezreel|strong="H3157"\w*, \w Chesulloth|strong="H3694"\w*, \w Shunem|strong="H7766"\w*, +\v 19 \w Hapharaim|strong="H2663"\w*, \w Shion|strong="H7866"\w*, Anaharath, +\v 20 \w Rabbith|strong="H7245"\w*, \w Kishion|strong="H7191"\w*, Ebez, +\v 21 \w Remeth|strong="H7432"\w*, Engannim, En Haddah, \w and|strong="H5873"\w* Beth Pazzez. +\v 22 \w The|strong="H1961"\w* \w border|strong="H1366"\w* \w reached|strong="H6293"\w* \w to|strong="H1961"\w* \w Tabor|strong="H8396"\w*, \w Shahazumah|strong="H7831"\w*, \w and|strong="H5892"\w* Beth Shemesh. \w Their|strong="H1961"\w* \w border|strong="H1366"\w* \w ended|strong="H1961"\w* \w at|strong="H1961"\w* \w the|strong="H1961"\w* \w Jordan|strong="H3383"\w*: \w sixteen|strong="H8337"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* \w their|strong="H1961"\w* \w villages|strong="H2691"\w*. +\v 23 \w This|strong="H2063"\w* \w is|strong="H5892"\w* \w the|strong="H1121"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Issachar|strong="H3485"\w* according \w to|strong="H1121"\w* their \w families|strong="H4940"\w*, \w the|strong="H1121"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* their \w villages|strong="H2691"\w*. +\p +\v 24 \w The|strong="H3318"\w* \w fifth|strong="H2549"\w* \w lot|strong="H1486"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w for|strong="H1121"\w* \w the|strong="H3318"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H3318"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Asher according \w to|strong="H3318"\w* \w their|strong="H3318"\w* \w families|strong="H4940"\w*. +\v 25 \w Their|strong="H1961"\w* \w border|strong="H1366"\w* \w was|strong="H1961"\w* \w Helkath|strong="H2520"\w*, \w Hali|strong="H2482"\w*, Beten, Achshaph, +\v 26 Allammelech, \w Amad|strong="H6008"\w*, \w Mishal|strong="H4861"\w*. It \w reached|strong="H6293"\w* \w to|strong="H3220"\w* \w Carmel|strong="H3760"\w* \w westward|strong="H3220"\w*, \w and|strong="H3220"\w* \w to|strong="H3220"\w* Shihorlibnath. +\v 27 \w It|strong="H7725"\w* \w turned|strong="H7725"\w* \w toward|strong="H3318"\w* \w the|strong="H7725"\w* \w sunrise|strong="H4217"\w* \w to|strong="H7725"\w* Beth Dagon, \w and|strong="H7725"\w* \w reached|strong="H6293"\w* \w to|strong="H7725"\w* \w Zebulun|strong="H2074"\w*, \w and|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H7725"\w* \w valley|strong="H1516"\w* \w of|strong="H1516"\w* Iphtah El \w northward|strong="H6828"\w* \w to|strong="H7725"\w* Beth Emek \w and|strong="H7725"\w* \w Neiel|strong="H5272"\w*. \w It|strong="H7725"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H7725"\w* \w Cabul|strong="H3521"\w* \w on|strong="H3318"\w* \w the|strong="H7725"\w* \w left|strong="H8040"\w* \w hand|strong="H8040"\w*, +\v 28 \w and|strong="H7227"\w* \w Ebron|strong="H5683"\w*, \w Rehob|strong="H7340"\w*, \w Hammon|strong="H2540"\w*, \w and|strong="H7227"\w* \w Kanah|strong="H7071"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w great|strong="H7227"\w* \w Sidon|strong="H6721"\w*. +\v 29 \w The|strong="H7725"\w* \w border|strong="H1366"\w* \w turned|strong="H7725"\w* \w to|strong="H5704"\w* \w Ramah|strong="H7414"\w*, \w to|strong="H5704"\w* \w the|strong="H7725"\w* \w fortified|strong="H4013"\w* \w city|strong="H5892"\w* \w of|strong="H5892"\w* \w Tyre|strong="H6865"\w*; \w and|strong="H7725"\w* \w the|strong="H7725"\w* \w border|strong="H1366"\w* \w turned|strong="H7725"\w* \w to|strong="H5704"\w* \w Hosah|strong="H2621"\w*. \w It|strong="H7725"\w* \w ended|strong="H1961"\w* \w at|strong="H7725"\w* \w the|strong="H7725"\w* \w sea|strong="H3220"\w* \w by|strong="H5892"\w* \w the|strong="H7725"\w* \w region|strong="H2256"\w* \w of|strong="H5892"\w* Achzib; +\v 30 \w Ummah|strong="H5981"\w* also, \w and|strong="H6242"\w* Aphek, \w and|strong="H6242"\w* \w Rehob|strong="H7340"\w*: \w twenty-two|strong="H6242"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* \w their|strong="H8147"\w* \w villages|strong="H2691"\w*. +\v 31 \w This|strong="H2063"\w* \w is|strong="H5892"\w* \w the|strong="H1121"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Asher according \w to|strong="H1121"\w* their \w families|strong="H4940"\w*, \w these|strong="H2063"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* their \w villages|strong="H2691"\w*. +\p +\v 32 \w The|strong="H3318"\w* \w sixth|strong="H8345"\w* \w lot|strong="H1486"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w for|strong="H1121"\w* \w the|strong="H3318"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Naphtali|strong="H5321"\w*, even \w for|strong="H1121"\w* \w the|strong="H3318"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Naphtali|strong="H5321"\w* according \w to|strong="H3318"\w* \w their|strong="H3318"\w* \w families|strong="H4940"\w*. +\v 33 \w Their|strong="H1961"\w* \w border|strong="H1366"\w* \w was|strong="H1961"\w* \w from|strong="H5704"\w* \w Heleph|strong="H2501"\w*, \w from|strong="H5704"\w* \w the|strong="H5704"\w* oak \w in|strong="H1961"\w* \w Zaanannim|strong="H6815"\w*, Adami-nekeb, \w and|strong="H3383"\w* \w Jabneel|strong="H2995"\w*, \w to|strong="H5704"\w* \w Lakkum|strong="H3946"\w*. \w It|strong="H1961"\w* \w ended|strong="H1961"\w* \w at|strong="H1961"\w* \w the|strong="H5704"\w* \w Jordan|strong="H3383"\w*. +\v 34 \w The|strong="H7725"\w* \w border|strong="H1366"\w* \w turned|strong="H7725"\w* \w westward|strong="H3220"\w* \w to|strong="H7725"\w* Aznoth Tabor, \w and|strong="H3063"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H7725"\w* \w there|strong="H8033"\w* \w to|strong="H7725"\w* \w Hukkok|strong="H2712"\w*. \w It|strong="H7725"\w* \w reached|strong="H6293"\w* \w to|strong="H7725"\w* \w Zebulun|strong="H2074"\w* \w on|strong="H3318"\w* \w the|strong="H7725"\w* \w south|strong="H5045"\w*, \w and|strong="H3063"\w* \w reached|strong="H6293"\w* \w to|strong="H7725"\w* Asher \w on|strong="H3318"\w* \w the|strong="H7725"\w* \w west|strong="H3220"\w*, \w and|strong="H3063"\w* \w to|strong="H7725"\w* \w Judah|strong="H3063"\w* \w at|strong="H7725"\w* \w the|strong="H7725"\w* \w Jordan|strong="H3383"\w* \w toward|strong="H3318"\w* \w the|strong="H7725"\w* \w sunrise|strong="H4217"\w*. +\v 35 \w The|strong="H5892"\w* \w fortified|strong="H4013"\w* \w cities|strong="H5892"\w* \w were|strong="H5892"\w* \w Ziddim|strong="H6661"\w*, \w Zer|strong="H6863"\w*, \w Hammath|strong="H2575"\w*, \w Rakkath|strong="H7557"\w*, \w Chinnereth|strong="H3672"\w*, +\v 36 Adamah, \w Ramah|strong="H7414"\w*, \w Hazor|strong="H2674"\w*, +\v 37 \w Kedesh|strong="H6943"\w*, Edrei, En Hazor, +\v 38 \w Iron|strong="H3375"\w*, Migdal El, \w Horem|strong="H2765"\w*, Beth Anath, \w and|strong="H5892"\w* Beth Shemesh; \w nineteen|strong="H8672"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* their \w villages|strong="H2691"\w*. +\v 39 \w This|strong="H2063"\w* \w is|strong="H5892"\w* \w the|strong="H1121"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Naphtali|strong="H5321"\w* according \w to|strong="H1121"\w* their \w families|strong="H4940"\w*, \w the|strong="H1121"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* their \w villages|strong="H2691"\w*. +\p +\v 40 \w The|strong="H3318"\w* \w seventh|strong="H7637"\w* \w lot|strong="H1486"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w for|strong="H1121"\w* \w the|strong="H3318"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H3318"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w* according \w to|strong="H3318"\w* \w their|strong="H3318"\w* \w families|strong="H4940"\w*. +\v 41 \w The|strong="H1961"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w their|strong="H1961"\w* \w inheritance|strong="H5159"\w* \w was|strong="H1961"\w* \w Zorah|strong="H6881"\w*, Eshtaol, Irshemesh, +\v 42 \w Shaalabbin|strong="H8169"\w*, Aijalon, \w Ithlah|strong="H3494"\w*, +\v 43 Elon, \w Timnah|strong="H8553"\w*, \w Ekron|strong="H6138"\w*, +\v 44 Eltekeh, \w Gibbethon|strong="H1405"\w*, \w Baalath|strong="H1191"\w*, +\v 45 \w Jehud|strong="H3055"\w*, Bene Berak, Gath Rimmon, +\v 46 \w Me|strong="H5973"\w* Jarkon, \w and|strong="H5973"\w* \w Rakkon|strong="H7542"\w*, \w with|strong="H5973"\w* \w the|strong="H5973"\w* \w border|strong="H1366"\w* \w opposite|strong="H4136"\w* \w Joppa|strong="H3305"\w*. +\v 47 \w The|strong="H5221"\w* \w border|strong="H1366"\w* \w of|strong="H1121"\w* \w the|strong="H5221"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w beyond|strong="H3318"\w* \w them|strong="H1992"\w*; \w for|strong="H7121"\w* \w the|strong="H5221"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w* \w went|strong="H3318"\w* \w up|strong="H5927"\w* \w and|strong="H1121"\w* \w fought|strong="H3898"\w* \w against|strong="H5973"\w* \w Leshem|strong="H3959"\w*, \w and|strong="H1121"\w* \w took|strong="H3920"\w* \w it|strong="H7121"\w*, \w and|strong="H1121"\w* \w struck|strong="H5221"\w* \w it|strong="H7121"\w* \w with|strong="H5973"\w* \w the|strong="H5221"\w* \w edge|strong="H6310"\w* \w of|strong="H1121"\w* \w the|strong="H5221"\w* \w sword|strong="H2719"\w*, \w and|strong="H1121"\w* \w possessed|strong="H3423"\w* \w it|strong="H7121"\w*, \w and|strong="H1121"\w* \w lived|strong="H3427"\w* \w therein|strong="H7121"\w*, \w and|strong="H1121"\w* \w called|strong="H7121"\w* \w Leshem|strong="H3959"\w*, \w Dan|strong="H1835"\w*, \w after|strong="H5927"\w* \w the|strong="H5221"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w* \w their|strong="H1992"\w* forefather. +\v 48 \w This|strong="H2063"\w* \w is|strong="H5892"\w* \w the|strong="H1121"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w* according \w to|strong="H1121"\w* \w their|strong="H1835"\w* \w families|strong="H4940"\w*, \w these|strong="H2063"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* \w their|strong="H1835"\w* \w villages|strong="H2691"\w*. +\p +\v 49 \w So|strong="H5414"\w* \w they|strong="H3478"\w* \w finished|strong="H3615"\w* distributing \w the|strong="H5414"\w* \w land|strong="H5159"\w* \w for|strong="H1121"\w* \w inheritance|strong="H5159"\w* \w by|strong="H3478"\w* \w its|strong="H5414"\w* \w borders|strong="H1367"\w*. \w The|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w gave|strong="H5414"\w* \w an|strong="H5414"\w* \w inheritance|strong="H5159"\w* \w to|strong="H3478"\w* \w Joshua|strong="H3091"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w* \w among|strong="H8432"\w* \w them|strong="H5414"\w*. +\v 50 \w According|strong="H5921"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w commandment|strong="H6310"\w*, \w they|strong="H3068"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w asked|strong="H7592"\w*, \w even|strong="H1129"\w* Timnathserah \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H3068"\w* Ephraim; \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w built|strong="H1129"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*, \w and|strong="H3068"\w* \w lived|strong="H3427"\w* \w there|strong="H3427"\w*. +\v 51 \w These|strong="H6440"\w* \w are|strong="H1121"\w* \w the|strong="H6440"\w* \w inheritances|strong="H5159"\w*, \w which|strong="H3068"\w* Eleazar \w the|strong="H6440"\w* \w priest|strong="H3548"\w*, \w Joshua|strong="H3091"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w*, \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* fathers’ houses \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w tribes|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w distributed|strong="H2505"\w* \w for|strong="H6440"\w* \w inheritance|strong="H5159"\w* \w by|strong="H3068"\w* \w lot|strong="H1486"\w* \w in|strong="H3478"\w* \w Shiloh|strong="H7887"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w at|strong="H3478"\w* \w the|strong="H6440"\w* \w door|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*. \w So|strong="H6440"\w* \w they|strong="H3068"\w* \w finished|strong="H3615"\w* \w dividing|strong="H2505"\w* \w the|strong="H6440"\w* \w land|strong="H5159"\w*. +\c 20 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Joshua|strong="H3091"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w saying|strong="H1696"\w*, ‘\w Assign|strong="H5414"\w* \w the|strong="H5414"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w refuge|strong="H4733"\w*, \w of|strong="H1121"\w* \w which|strong="H5892"\w* \w I|strong="H5414"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H5414"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w*, +\v 3 \w that|strong="H5315"\w* \w the|strong="H5221"\w* \w man|strong="H5315"\w* \w slayer|strong="H7523"\w* \w who|strong="H5315"\w* \w kills|strong="H5221"\w* \w any|strong="H5221"\w* \w person|strong="H5315"\w* \w accidentally|strong="H7684"\w* \w or|strong="H1847"\w* \w unintentionally|strong="H7684"\w* \w may|strong="H1961"\w* \w flee|strong="H5127"\w* \w there|strong="H8033"\w*. \w They|strong="H8033"\w* \w shall|strong="H5315"\w* \w be|strong="H1961"\w* \w to|strong="H1961"\w* \w you|strong="H5221"\w* \w for|strong="H5315"\w* \w a|strong="H3068"\w* \w refuge|strong="H4733"\w* \w from|strong="H5315"\w* \w the|strong="H5221"\w* \w avenger|strong="H1350"\w* \w of|strong="H1818"\w* \w blood|strong="H1818"\w*. +\v 4 \w He|strong="H1931"\w* \w shall|strong="H5892"\w* \w flee|strong="H5127"\w* \w to|strong="H1696"\w* \w one|strong="H1931"\w* \w of|strong="H1697"\w* \w those|strong="H1931"\w* \w cities|strong="H5892"\w*, \w and|strong="H5892"\w* \w shall|strong="H5892"\w* \w stand|strong="H5975"\w* \w at|strong="H3427"\w* \w the|strong="H5414"\w* \w entrance|strong="H6607"\w* \w of|strong="H1697"\w* \w the|strong="H5414"\w* \w gate|strong="H8179"\w* \w of|strong="H1697"\w* \w the|strong="H5414"\w* \w city|strong="H5892"\w*, \w and|strong="H5892"\w* \w declare|strong="H1696"\w* \w his|strong="H5414"\w* \w case|strong="H1697"\w* \w in|strong="H3427"\w* \w the|strong="H5414"\w* ears \w of|strong="H1697"\w* \w the|strong="H5414"\w* \w elders|strong="H2205"\w* \w of|strong="H1697"\w* \w that|strong="H1931"\w* \w city|strong="H5892"\w*. \w They|strong="H1931"\w* \w shall|strong="H5892"\w* \w take|strong="H5414"\w* \w him|strong="H5414"\w* \w into|strong="H5414"\w* \w the|strong="H5414"\w* \w city|strong="H5892"\w* \w with|strong="H5973"\w* \w them|strong="H5414"\w*, \w and|strong="H5892"\w* \w give|strong="H5414"\w* \w him|strong="H5414"\w* \w a|strong="H3068"\w* \w place|strong="H4725"\w*, \w that|strong="H1931"\w* \w he|strong="H1931"\w* \w may|strong="H5414"\w* \w live|strong="H3427"\w* \w among|strong="H5973"\w* \w them|strong="H5414"\w*. +\v 5 \w If|strong="H3588"\w* \w the|strong="H3588"\w* \w avenger|strong="H1350"\w* \w of|strong="H3027"\w* \w blood|strong="H1818"\w* \w pursues|strong="H7291"\w* \w him|strong="H5221"\w*, \w then|strong="H3588"\w* \w they|strong="H3588"\w* \w shall|strong="H3027"\w* \w not|strong="H3808"\w* \w deliver|strong="H5462"\w* \w up|strong="H5462"\w* \w the|strong="H3588"\w* man \w slayer|strong="H7523"\w* \w into|strong="H3027"\w* \w his|strong="H5221"\w* \w hand|strong="H3027"\w*; \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w struck|strong="H5221"\w* \w his|strong="H5221"\w* \w neighbor|strong="H7453"\w* \w unintentionally|strong="H1847"\w*, \w and|strong="H3027"\w* didn’t \w hate|strong="H8130"\w* \w him|strong="H5221"\w* \w before|strong="H3808"\w*. +\v 6 \w He|strong="H1931"\w* \w shall|strong="H3548"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w that|strong="H3117"\w* \w city|strong="H5892"\w* \w until|strong="H5704"\w* \w he|strong="H1931"\w* \w stands|strong="H5975"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w congregation|strong="H5712"\w* \w for|strong="H5704"\w* \w judgment|strong="H4941"\w*, \w until|strong="H5704"\w* \w the|strong="H6440"\w* \w death|strong="H4194"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w high|strong="H1419"\w* \w priest|strong="H3548"\w* \w that|strong="H3117"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w in|strong="H3427"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*. \w Then|strong="H1961"\w* \w the|strong="H6440"\w* \w man|strong="H1419"\w* \w slayer|strong="H7523"\w* \w shall|strong="H3548"\w* \w return|strong="H7725"\w*, \w and|strong="H7725"\w* \w come|strong="H1961"\w* \w to|strong="H5704"\w* \w his|strong="H7725"\w* \w own|strong="H1961"\w* \w city|strong="H5892"\w*, \w and|strong="H7725"\w* \w to|strong="H5704"\w* \w his|strong="H7725"\w* \w own|strong="H1961"\w* \w house|strong="H1004"\w*, \w to|strong="H5704"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w* \w he|strong="H1931"\w* \w fled|strong="H5127"\w* \w from|strong="H7725"\w*.’” +\p +\v 7 \w They|strong="H1931"\w* \w set|strong="H6942"\w* \w apart|strong="H6942"\w* \w Kedesh|strong="H6943"\w* \w in|strong="H7927"\w* \w Galilee|strong="H1551"\w* \w in|strong="H7927"\w* \w the|strong="H6942"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H2022"\w* \w Naphtali|strong="H5321"\w*, \w Shechem|strong="H7927"\w* \w in|strong="H7927"\w* \w the|strong="H6942"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H2022"\w* Ephraim, \w and|strong="H3063"\w* Kiriath Arba (\w also|strong="H3063"\w* called \w Hebron|strong="H2275"\w*) \w in|strong="H7927"\w* \w the|strong="H6942"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H2022"\w* \w Judah|strong="H3063"\w*. +\v 8 \w Beyond|strong="H5676"\w* \w the|strong="H5414"\w* \w Jordan|strong="H3383"\w* \w at|strong="H3383"\w* \w Jericho|strong="H3405"\w* \w eastward|strong="H4217"\w*, \w they|strong="H5414"\w* \w assigned|strong="H5414"\w* \w Bezer|strong="H1221"\w* \w in|strong="H1474"\w* \w the|strong="H5414"\w* \w wilderness|strong="H4057"\w* \w in|strong="H1474"\w* \w the|strong="H5414"\w* \w plain|strong="H4334"\w* \w out|strong="H5414"\w* \w of|strong="H4294"\w* \w the|strong="H5414"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Reuben|strong="H7205"\w*, \w Ramoth|strong="H7216"\w* \w in|strong="H1474"\w* \w Gilead|strong="H1568"\w* \w out|strong="H5414"\w* \w of|strong="H4294"\w* \w the|strong="H5414"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Gad|strong="H1410"\w*, \w and|strong="H4519"\w* \w Golan|strong="H1474"\w* \w in|strong="H1474"\w* \w Bashan|strong="H1316"\w* \w out|strong="H5414"\w* \w of|strong="H4294"\w* \w the|strong="H5414"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Manasseh|strong="H4519"\w*. +\v 9 \w These|strong="H3605"\w* \w were|strong="H3478"\w* \w the|strong="H3605"\w* \w appointed|strong="H5975"\w* \w cities|strong="H5892"\w* \w for|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w for|strong="H5704"\w* \w the|strong="H3605"\w* \w alien|strong="H1616"\w* \w who|strong="H3605"\w* \w lives|strong="H5315"\w* \w among|strong="H8432"\w* \w them|strong="H6440"\w*, \w that|strong="H3605"\w* \w whoever|strong="H3605"\w* \w kills|strong="H5221"\w* \w any|strong="H3605"\w* \w person|strong="H5315"\w* \w unintentionally|strong="H7684"\w* \w might|strong="H1121"\w* \w flee|strong="H5127"\w* \w there|strong="H8033"\w*, \w and|strong="H1121"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w* \w by|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w avenger|strong="H1350"\w* \w of|strong="H1121"\w* \w blood|strong="H1818"\w*, \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w stands|strong="H5975"\w* trial \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w*. +\c 21 +\p +\v 1 \w Then|strong="H1121"\w* \w the|strong="H3091"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* fathers’ houses \w of|strong="H1121"\w* \w the|strong="H3091"\w* \w Levites|strong="H3881"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H3478"\w* Eleazar \w the|strong="H3091"\w* \w priest|strong="H3548"\w*, \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w Joshua|strong="H3091"\w* \w the|strong="H3091"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w*, \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w the|strong="H3091"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* fathers’ houses \w of|strong="H1121"\w* \w the|strong="H3091"\w* \w tribes|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H3091"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 2 \w They|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H5414"\w* \w at|strong="H3427"\w* \w Shiloh|strong="H7887"\w* \w in|strong="H3427"\w* \w the|strong="H5414"\w* land \w of|strong="H3068"\w* \w Canaan|strong="H3667"\w*, \w saying|strong="H1696"\w*, “\w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w through|strong="H3027"\w* \w Moses|strong="H4872"\w* \w to|strong="H1696"\w* \w give|strong="H5414"\w* \w us|strong="H5414"\w* \w cities|strong="H5892"\w* \w to|strong="H1696"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w*, \w with|strong="H3068"\w* \w their|strong="H3068"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w* \w for|strong="H3027"\w* \w our|strong="H3068"\w* livestock.” +\p +\v 3 \w The|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w gave|strong="H5414"\w* \w to|strong="H3478"\w* \w the|strong="H5414"\w* \w Levites|strong="H3881"\w* \w out|strong="H5414"\w* \w of|strong="H1121"\w* \w their|strong="H3068"\w* \w inheritance|strong="H5159"\w*, \w according|strong="H6310"\w* \w to|strong="H3478"\w* \w the|strong="H5414"\w* \w commandment|strong="H6310"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*, \w these|strong="H3881"\w* \w cities|strong="H5892"\w* \w with|strong="H3068"\w* \w their|strong="H3068"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*. +\v 4 \w The|strong="H4480"\w* \w lot|strong="H1486"\w* \w came|strong="H1961"\w* \w out|strong="H3318"\w* \w for|strong="H1121"\w* \w the|strong="H4480"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w Kohathites|strong="H6956"\w*. \w The|strong="H4480"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w the|strong="H4480"\w* \w priest|strong="H3548"\w*, \w who|strong="H3548"\w* \w were|strong="H1961"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w Levites|strong="H3881"\w*, \w had|strong="H1961"\w* \w thirteen|strong="H7969"\w* \w cities|strong="H5892"\w* \w by|strong="H3318"\w* \w lot|strong="H1486"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w Simeonites|strong="H8099"\w*, \w and|strong="H1121"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*. +\v 5 \w The|strong="H2677"\w* \w rest|strong="H3498"\w* \w of|strong="H1121"\w* \w the|strong="H2677"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Kohath|strong="H6955"\w* \w had|strong="H4519"\w* \w ten|strong="H6235"\w* \w cities|strong="H5892"\w* \w by|strong="H5892"\w* \w lot|strong="H1486"\w* out \w of|strong="H1121"\w* \w the|strong="H2677"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H2677"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* Ephraim, out \w of|strong="H1121"\w* \w the|strong="H2677"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w*, \w and|strong="H1121"\w* out \w of|strong="H1121"\w* \w the|strong="H2677"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*. +\v 6 \w The|strong="H2677"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gershon|strong="H1648"\w* \w had|strong="H4519"\w* \w thirteen|strong="H7969"\w* \w cities|strong="H5892"\w* \w by|strong="H5892"\w* \w lot|strong="H1486"\w* out \w of|strong="H1121"\w* \w the|strong="H2677"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H2677"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Issachar|strong="H3485"\w*, out \w of|strong="H1121"\w* \w the|strong="H2677"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* Asher, out \w of|strong="H1121"\w* \w the|strong="H2677"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Naphtali|strong="H5321"\w*, \w and|strong="H1121"\w* out \w of|strong="H1121"\w* \w the|strong="H2677"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w in|strong="H5892"\w* \w Bashan|strong="H1316"\w*. +\v 7 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w* according \w to|strong="H1121"\w* \w their|strong="H8147"\w* \w families|strong="H4940"\w* \w had|strong="H1121"\w* \w twelve|strong="H8147"\w* \w cities|strong="H5892"\w* \w out|strong="H8147"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w*, \w out|strong="H8147"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w*, \w and|strong="H1121"\w* \w out|strong="H8147"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Zebulun|strong="H2074"\w*. +\v 8 \w The|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w gave|strong="H5414"\w* \w these|strong="H3881"\w* \w cities|strong="H5892"\w* \w with|strong="H3068"\w* \w their|strong="H3068"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w* \w by|strong="H3027"\w* \w lot|strong="H1486"\w* \w to|strong="H3478"\w* \w the|strong="H5414"\w* \w Levites|strong="H3881"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w*. +\v 9 \w They|strong="H5414"\w* \w gave|strong="H5414"\w* \w out|strong="H5414"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w and|strong="H1121"\w* \w out|strong="H5414"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Simeon|strong="H8095"\w*, \w these|strong="H7121"\w* \w cities|strong="H5892"\w* \w which|strong="H5892"\w* \w are|strong="H1121"\w* \w mentioned|strong="H7121"\w* \w by|strong="H7121"\w* \w name|strong="H8034"\w*: +\v 10 \w and|strong="H1121"\w* \w they|strong="H1992"\w* \w were|strong="H1961"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Aaron, \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w Kohathites|strong="H6956"\w*, \w who|strong="H1121"\w* \w were|strong="H1961"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w*; \w for|strong="H3588"\w* \w theirs|strong="H1992"\w* \w was|strong="H1961"\w* \w the|strong="H3588"\w* \w first|strong="H7223"\w* \w lot|strong="H1486"\w*. +\v 11 \w They|strong="H1992"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* Kiriath Arba, named \w after|strong="H1992"\w* \w the|strong="H5414"\w* father \w of|strong="H2022"\w* \w Anak|strong="H6061"\w* (\w also|strong="H1992"\w* called \w Hebron|strong="H2275"\w*), \w in|strong="H5414"\w* \w the|strong="H5414"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H2022"\w* \w Judah|strong="H3063"\w*, \w with|strong="H2022"\w* \w its|strong="H5414"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w* \w around|strong="H5439"\w* \w it|strong="H5414"\w*. +\v 12 But \w they|strong="H5414"\w* \w gave|strong="H5414"\w* \w the|strong="H5414"\w* \w fields|strong="H7704"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w city|strong="H5892"\w* \w and|strong="H1121"\w* \w its|strong="H5414"\w* \w villages|strong="H2691"\w* \w to|strong="H5414"\w* \w Caleb|strong="H3612"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jephunneh|strong="H3312"\w* \w for|strong="H1121"\w* \w his|strong="H5414"\w* possession. +\v 13 \w To|strong="H5414"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w the|strong="H5414"\w* \w priest|strong="H3548"\w* \w they|strong="H5414"\w* \w gave|strong="H5414"\w* \w Hebron|strong="H2275"\w* \w with|strong="H5892"\w* \w its|strong="H5414"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w the|strong="H5414"\w* \w city|strong="H5892"\w* \w of|strong="H1121"\w* \w refuge|strong="H4733"\w* \w for|strong="H1121"\w* \w the|strong="H5414"\w* \w man|strong="H1121"\w* \w slayer|strong="H7523"\w*, \w Libnah|strong="H3841"\w* \w with|strong="H5892"\w* \w its|strong="H5414"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, +\v 14 \w Jattir|strong="H3492"\w* with its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, Eshtemoa with its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, +\v 15 \w Holon|strong="H2473"\w* with its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w Debir|strong="H1688"\w* with its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, +\v 16 \w Ain|strong="H5871"\w* \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w Juttah|strong="H3194"\w* \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w and|strong="H5892"\w* Beth Shemesh \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*: \w nine|strong="H8672"\w* \w cities|strong="H5892"\w* \w out|strong="H4054"\w* \w of|strong="H7626"\w* those \w two|strong="H8147"\w* \w tribes|strong="H7626"\w*. +\v 17 \w Out|strong="H4054"\w* \w of|strong="H4294"\w* \w the|strong="H1391"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Benjamin|strong="H1144"\w*, \w Gibeon|strong="H1391"\w* \w with|strong="H4294"\w* its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w Geba|strong="H1387"\w* \w with|strong="H4294"\w* its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, +\v 18 \w Anathoth|strong="H6068"\w* \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w and|strong="H5892"\w* \w Almon|strong="H5960"\w* \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*: four \w cities|strong="H5892"\w*. +\v 19 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Aaron, \w the|strong="H3605"\w* \w priests|strong="H3548"\w*, \w were|strong="H1121"\w* \w thirteen|strong="H7969"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* \w their|strong="H3605"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*. +\p +\v 20 \w The|strong="H1961"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Kohath|strong="H6955"\w*, \w the|strong="H1961"\w* \w Levites|strong="H3881"\w*, even \w the|strong="H1961"\w* \w rest|strong="H3498"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Kohath|strong="H6955"\w*, \w had|strong="H1961"\w* \w the|strong="H1961"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w their|strong="H1961"\w* \w lot|strong="H1486"\w* out \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* Ephraim. +\v 21 \w They|strong="H5414"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w Shechem|strong="H7927"\w* \w with|strong="H5892"\w* \w its|strong="H5414"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w* \w in|strong="H5892"\w* \w the|strong="H5414"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H5892"\w* Ephraim, \w the|strong="H5414"\w* \w city|strong="H5892"\w* \w of|strong="H5892"\w* \w refuge|strong="H4733"\w* \w for|strong="H5892"\w* \w the|strong="H5414"\w* man \w slayer|strong="H7523"\w*, \w and|strong="H5892"\w* \w Gezer|strong="H1507"\w* \w with|strong="H5892"\w* \w its|strong="H5414"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, +\v 22 \w Kibzaim|strong="H6911"\w* \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w and|strong="H5892"\w* Beth Horon \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*: four \w cities|strong="H5892"\w*. +\v 23 \w Out|strong="H4054"\w* \w of|strong="H4294"\w* \w the|strong="H4294"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Dan|strong="H1835"\w*, Elteke \w with|strong="H4294"\w* its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w Gibbethon|strong="H1405"\w* \w with|strong="H4294"\w* its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, +\v 24 Aijalon \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, Gath Rimmon \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*: four \w cities|strong="H5892"\w*. +\v 25 \w Out|strong="H4054"\w* \w of|strong="H4294"\w* \w the|strong="H8147"\w* \w half-tribe|strong="H4276"\w* \w of|strong="H4294"\w* \w Manasseh|strong="H4519"\w*, \w Taanach|strong="H8590"\w* \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w and|strong="H5892"\w* Gath Rimmon \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*: \w two|strong="H8147"\w* \w cities|strong="H5892"\w*. +\v 26 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w rest|strong="H3498"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Kohath|strong="H6955"\w* \w were|strong="H1121"\w* \w ten|strong="H6235"\w* \w with|strong="H5892"\w* \w their|strong="H3605"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*. +\p +\v 27 \w They|strong="H5892"\w* gave \w to|strong="H1121"\w* \w the|strong="H2677"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gershon|strong="H1648"\w*, \w of|strong="H1121"\w* \w the|strong="H2677"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H2677"\w* \w Levites|strong="H3881"\w*, \w out|strong="H4054"\w* \w of|strong="H1121"\w* \w the|strong="H2677"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w Golan|strong="H1474"\w* \w in|strong="H5892"\w* \w Bashan|strong="H1316"\w* \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w the|strong="H2677"\w* \w city|strong="H5892"\w* \w of|strong="H1121"\w* \w refuge|strong="H4733"\w* \w for|strong="H1121"\w* \w the|strong="H2677"\w* \w man|strong="H1121"\w* \w slayer|strong="H7523"\w*, \w and|strong="H1121"\w* \w Be|strong="H1121"\w* Eshterah \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*: \w two|strong="H8147"\w* \w cities|strong="H5892"\w*. +\v 28 \w Out|strong="H4054"\w* \w of|strong="H4294"\w* \w the|strong="H3485"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Issachar|strong="H3485"\w*, \w Kishion|strong="H7191"\w* \w with|strong="H4294"\w* its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w Daberath|strong="H1705"\w* \w with|strong="H4294"\w* its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, +\v 29 \w Jarmuth|strong="H3412"\w* \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, En Gannim \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*: four \w cities|strong="H5892"\w*. +\v 30 \w Out|strong="H4054"\w* \w of|strong="H4294"\w* \w the|strong="H5658"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* Asher, \w Mishal|strong="H4861"\w* \w with|strong="H4294"\w* its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w Abdon|strong="H5658"\w* \w with|strong="H4294"\w* its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, +\v 31 \w Helkath|strong="H2520"\w* \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w and|strong="H5892"\w* \w Rehob|strong="H7340"\w* \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*: four \w cities|strong="H5892"\w*. +\v 32 \w Out|strong="H4054"\w* \w of|strong="H4294"\w* \w the|strong="H5892"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Naphtali|strong="H5321"\w*, \w Kedesh|strong="H6943"\w* \w in|strong="H5892"\w* \w Galilee|strong="H1551"\w* \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w the|strong="H5892"\w* \w city|strong="H5892"\w* \w of|strong="H4294"\w* \w refuge|strong="H4733"\w* \w for|strong="H5892"\w* \w the|strong="H5892"\w* man \w slayer|strong="H7523"\w*, Hammothdor \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w and|strong="H5892"\w* \w Kartan|strong="H7178"\w* \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*: \w three|strong="H7969"\w* \w cities|strong="H5892"\w*. +\v 33 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w Gershonites|strong="H1649"\w* according \w to|strong="H5892"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w* \w were|strong="H4940"\w* \w thirteen|strong="H7969"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* \w their|strong="H3605"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*. +\p +\v 34 \w To|strong="H1121"\w* \w the|strong="H1121"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w*, \w the|strong="H1121"\w* \w rest|strong="H3498"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Levites|strong="H3881"\w*, \w out|strong="H4054"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Zebulun|strong="H2074"\w*, \w Jokneam|strong="H3362"\w* \w with|strong="H3498"\w* its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w Kartah|strong="H7177"\w* \w with|strong="H3498"\w* its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, +\v 35 \w Dimnah|strong="H1829"\w* \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w and|strong="H5892"\w* \w Nahalal|strong="H5096"\w* \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*: four \w cities|strong="H5892"\w*. +\v 36 \w Out|strong="H4054"\w* \w of|strong="H4294"\w* \w the|strong="H7205"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Reuben|strong="H7205"\w*, \w Bezer|strong="H1221"\w* \w with|strong="H4294"\w* its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w Jahaz|strong="H3096"\w* \w with|strong="H4294"\w* its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, +\v 37 \w Kedemoth|strong="H6932"\w* \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w and|strong="H5892"\w* \w Mephaath|strong="H4158"\w* \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*: four \w cities|strong="H5892"\w*. +\v 38 \w Out|strong="H4054"\w* \w of|strong="H4294"\w* \w the|strong="H5892"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Gad|strong="H1410"\w*, \w Ramoth|strong="H7433"\w* \w in|strong="H5892"\w* \w Gilead|strong="H1568"\w* \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w the|strong="H5892"\w* \w city|strong="H5892"\w* \w of|strong="H4294"\w* \w refuge|strong="H4733"\w* \w for|strong="H5892"\w* \w the|strong="H5892"\w* man \w slayer|strong="H7523"\w*, \w and|strong="H5892"\w* \w Mahanaim|strong="H4266"\w* \w with|strong="H5892"\w* \w its|strong="H5892"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, +\v 39 \w Heshbon|strong="H2809"\w* \w with|strong="H5892"\w* \w its|strong="H3605"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w Jazer|strong="H3270"\w* \w with|strong="H5892"\w* \w its|strong="H3605"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*: four \w cities|strong="H5892"\w* \w in|strong="H5892"\w* \w all|strong="H3605"\w*. +\v 40 \w All|strong="H3605"\w* \w these|strong="H8147"\w* \w were|strong="H1961"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w* according \w to|strong="H1961"\w* \w their|strong="H3605"\w* \w families|strong="H4940"\w*, even \w the|strong="H3605"\w* \w rest|strong="H3498"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*. \w Their|strong="H3605"\w* \w lot|strong="H1486"\w* \w was|strong="H1961"\w* \w twelve|strong="H8147"\w* \w cities|strong="H5892"\w*. +\p +\v 41 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w among|strong="H8432"\w* \w the|strong="H3605"\w* possessions \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w forty-eight|strong="H8083"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* \w their|strong="H3605"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*. +\v 42 \w Each|strong="H3605"\w* \w of|strong="H5892"\w* \w these|strong="H3605"\w* \w cities|strong="H5892"\w* \w included|strong="H1961"\w* \w their|strong="H3605"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w* \w around|strong="H5439"\w* \w them|strong="H5439"\w*. \w It|strong="H3651"\w* \w was|strong="H1961"\w* \w this|strong="H3651"\w* \w way|strong="H3651"\w* \w with|strong="H5892"\w* \w all|strong="H3605"\w* \w these|strong="H3605"\w* \w cities|strong="H5892"\w*. +\p +\v 43 \w So|strong="H5414"\w* \w Yahweh|strong="H3068"\w* \w gave|strong="H5414"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w swore|strong="H7650"\w* \w to|strong="H3478"\w* \w give|strong="H5414"\w* \w to|strong="H3478"\w* \w their|strong="H3605"\w* fathers. \w They|strong="H3068"\w* \w possessed|strong="H3423"\w* \w it|strong="H5414"\w*, \w and|strong="H3478"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w it|strong="H5414"\w*. +\v 44 \w Yahweh|strong="H3068"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w rest|strong="H5117"\w* \w all|strong="H3605"\w* \w around|strong="H5439"\w*, \w according|strong="H3027"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3068"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* \w their|strong="H3605"\w* fathers. \w Not|strong="H3808"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w enemies|strong="H3027"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w them|strong="H5414"\w*. \w Yahweh|strong="H3068"\w* \w delivered|strong="H5414"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w enemies|strong="H3027"\w* \w into|strong="H3027"\w* \w their|strong="H3605"\w* \w hand|strong="H3027"\w*. +\v 45 \w Nothing|strong="H3808"\w* \w failed|strong="H5307"\w* \w of|strong="H1004"\w* \w any|strong="H3605"\w* \w good|strong="H2896"\w* \w thing|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. \w All|strong="H3605"\w* \w came|strong="H3478"\w* \w to|strong="H1696"\w* pass. +\c 22 +\p +\v 1 \w Then|strong="H7121"\w* \w Joshua|strong="H3091"\w* \w called|strong="H7121"\w* \w the|strong="H7121"\w* \w Reubenites|strong="H7206"\w*, \w the|strong="H7121"\w* \w Gadites|strong="H1425"\w*, \w and|strong="H3091"\w* \w the|strong="H7121"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H4294"\w* \w Manasseh|strong="H4519"\w*, +\v 2 \w and|strong="H4872"\w* \w said|strong="H8085"\w* \w to|strong="H3068"\w* \w them|strong="H6680"\w*, “\w You|strong="H6680"\w* \w have|strong="H3068"\w* \w kept|strong="H8104"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Moses|strong="H4872"\w* \w the|strong="H3605"\w* \w servant|strong="H5650"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w you|strong="H6680"\w*, \w and|strong="H4872"\w* \w have|strong="H3068"\w* \w listened|strong="H8085"\w* \w to|strong="H3068"\w* \w my|strong="H8104"\w* \w voice|strong="H6963"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H6680"\w* \w commanded|strong="H6680"\w* \w you|strong="H6680"\w*. +\v 3 \w You|strong="H3117"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w left|strong="H5800"\w* \w your|strong="H3068"\w* brothers \w these|strong="H2088"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, \w but|strong="H3808"\w* \w have|strong="H3068"\w* \w performed|strong="H8104"\w* \w the|strong="H8104"\w* \w duty|strong="H4931"\w* \w of|strong="H3068"\w* \w the|strong="H8104"\w* \w commandment|strong="H4687"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 4 \w Now|strong="H6258"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w rest|strong="H5117"\w* \w to|strong="H1696"\w* \w your|strong="H3068"\w* brothers, \w as|strong="H3068"\w* \w he|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H5414"\w*. \w Therefore|strong="H6258"\w* \w now|strong="H6258"\w* \w return|strong="H6437"\w* \w and|strong="H4872"\w* \w go|strong="H3212"\w* \w to|strong="H1696"\w* \w your|strong="H3068"\w* tents, \w to|strong="H1696"\w* \w the|strong="H5414"\w* \w land|strong="H5676"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* possession, \w which|strong="H3068"\w* \w Moses|strong="H4872"\w* \w the|strong="H5414"\w* \w servant|strong="H5650"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w gave|strong="H5414"\w* \w you|strong="H5414"\w* \w beyond|strong="H5676"\w* \w the|strong="H5414"\w* \w Jordan|strong="H3383"\w*. +\v 5 \w Only|strong="H7535"\w* \w take|strong="H8104"\w* \w diligent|strong="H3966"\w* \w heed|strong="H8104"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w the|strong="H3605"\w* \w commandment|strong="H4687"\w* \w and|strong="H4872"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w which|strong="H3068"\w* \w Moses|strong="H4872"\w* \w the|strong="H3605"\w* \w servant|strong="H5650"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w you|strong="H6680"\w*, \w to|strong="H3068"\w* love \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w to|strong="H3068"\w* \w walk|strong="H3212"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w ways|strong="H1870"\w*, \w to|strong="H3068"\w* \w keep|strong="H8104"\w* \w his|strong="H3605"\w* \w commandments|strong="H4687"\w*, \w to|strong="H3068"\w* \w hold|strong="H1692"\w* \w fast|strong="H1692"\w* \w to|strong="H3068"\w* \w him|strong="H6213"\w*, \w and|strong="H4872"\w* \w to|strong="H3068"\w* \w serve|strong="H5647"\w* \w him|strong="H6213"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w and|strong="H4872"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w*.” +\p +\v 6 \w So|strong="H7971"\w* \w Joshua|strong="H3091"\w* \w blessed|strong="H1288"\w* \w them|strong="H7971"\w*, \w and|strong="H7971"\w* \w sent|strong="H7971"\w* \w them|strong="H7971"\w* \w away|strong="H7971"\w*; \w and|strong="H7971"\w* they \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w their|strong="H7971"\w* tents. +\v 7 \w Now|strong="H3588"\w* \w to|strong="H7971"\w* \w the|strong="H3588"\w* \w one|strong="H3588"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H7626"\w* \w Manasseh|strong="H4519"\w* \w Moses|strong="H4872"\w* \w had|strong="H4872"\w* \w given|strong="H5414"\w* inheritance \w in|strong="H5414"\w* \w Bashan|strong="H1316"\w*; \w but|strong="H3588"\w* \w Joshua|strong="H3091"\w* \w gave|strong="H5414"\w* \w to|strong="H7971"\w* \w the|strong="H3588"\w* \w other|strong="H5676"\w* \w half|strong="H2677"\w* \w among|strong="H5973"\w* \w their|strong="H5414"\w* brothers \w beyond|strong="H5676"\w* \w the|strong="H3588"\w* \w Jordan|strong="H3383"\w* \w westward|strong="H3220"\w*. \w Moreover|strong="H1571"\w* \w when|strong="H3588"\w* \w Joshua|strong="H3091"\w* \w sent|strong="H7971"\w* \w them|strong="H5414"\w* \w away|strong="H7971"\w* \w to|strong="H7971"\w* \w their|strong="H5414"\w* tents, \w he|strong="H3588"\w* \w blessed|strong="H1288"\w* \w them|strong="H5414"\w*, +\v 8 \w and|strong="H3701"\w* spoke \w to|strong="H7725"\w* \w them|strong="H7725"\w*, saying, “\w Return|strong="H7725"\w* \w with|strong="H5973"\w* \w much|strong="H7227"\w* \w wealth|strong="H5233"\w* \w to|strong="H7725"\w* \w your|strong="H7725"\w* tents, \w with|strong="H5973"\w* \w very|strong="H3966"\w* \w much|strong="H7227"\w* \w livestock|strong="H4735"\w*, \w with|strong="H5973"\w* \w silver|strong="H3701"\w*, \w with|strong="H5973"\w* \w gold|strong="H2091"\w*, \w with|strong="H5973"\w* \w bronze|strong="H5178"\w*, \w with|strong="H5973"\w* \w iron|strong="H1270"\w*, \w and|strong="H3701"\w* \w with|strong="H5973"\w* \w very|strong="H3966"\w* \w much|strong="H7227"\w* \w clothing|strong="H8008"\w*. \w Divide|strong="H2505"\w* \w the|strong="H7725"\w* \w plunder|strong="H7998"\w* \w of|strong="H4735"\w* \w your|strong="H7725"\w* enemies \w with|strong="H5973"\w* \w your|strong="H7725"\w* brothers.” +\p +\v 9 \w The|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w* \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w returned|strong="H7725"\w*, \w and|strong="H1121"\w* \w departed|strong="H3212"\w* \w from|strong="H7725"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w out|strong="H5921"\w* \w of|strong="H1121"\w* \w Shiloh|strong="H7887"\w*, \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*, \w to|strong="H7725"\w* \w go|strong="H3212"\w* \w to|strong="H7725"\w* \w the|strong="H5921"\w* land \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*, \w to|strong="H7725"\w* \w the|strong="H5921"\w* land \w of|strong="H1121"\w* \w their|strong="H3068"\w* \w possession|strong="H3027"\w*, \w which|strong="H3068"\w* \w they|strong="H3068"\w* owned, \w according|strong="H5921"\w* \w to|strong="H7725"\w* \w the|strong="H5921"\w* \w commandment|strong="H6310"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w*. +\v 10 \w When|strong="H1121"\w* \w they|strong="H8033"\w* came \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w region|strong="H1552"\w* \w near|strong="H5921"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w*, \w that|strong="H4196"\w* \w is|strong="H1121"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*, \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w* \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w built|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w there|strong="H8033"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w*, \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w altar|strong="H4196"\w* \w to|strong="H5921"\w* look \w at|strong="H5921"\w*. +\v 11 \w The|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w heard|strong="H8085"\w* \w this|strong="H8085"\w*, “\w Behold|strong="H2009"\w*, \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* \w and|strong="H1121"\w* \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w* \w and|strong="H1121"\w* \w the|strong="H8085"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w have|strong="H1121"\w* \w built|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* along \w the|strong="H8085"\w* border \w of|strong="H1121"\w* \w the|strong="H8085"\w* \w land|strong="H5676"\w* \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*, \w in|strong="H3478"\w* \w the|strong="H8085"\w* \w region|strong="H1552"\w* around \w the|strong="H8085"\w* \w Jordan|strong="H3383"\w*, \w on|strong="H8085"\w* \w the|strong="H8085"\w* \w side|strong="H5676"\w* \w that|strong="H8085"\w* belongs \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*.” +\v 12 \w When|strong="H8085"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w heard|strong="H8085"\w* \w of|strong="H1121"\w* \w it|strong="H5921"\w*, \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w gathered|strong="H6950"\w* \w themselves|strong="H8085"\w* \w together|strong="H6950"\w* \w at|strong="H5921"\w* \w Shiloh|strong="H7887"\w*, \w to|strong="H3478"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w* \w to|strong="H3478"\w* \w war|strong="H6635"\w*. +\v 13 \w The|strong="H7971"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w sent|strong="H7971"\w* \w to|strong="H3478"\w* \w the|strong="H7971"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w*, \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w the|strong="H7971"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w*, \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w the|strong="H7971"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*, into \w the|strong="H7971"\w* land \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*, \w Phinehas|strong="H6372"\w* \w the|strong="H7971"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Eleazar \w the|strong="H7971"\w* \w priest|strong="H3548"\w*. +\v 14 \w With|strong="H5973"\w* \w him|strong="H5973"\w* \w were|strong="H3478"\w* \w ten|strong="H6235"\w* \w princes|strong="H5387"\w*, \w one|strong="H3605"\w* \w prince|strong="H5387"\w* \w of|strong="H1004"\w* \w a|strong="H3068"\w* fathers’ \w house|strong="H1004"\w* \w for|strong="H1004"\w* \w each|strong="H3605"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w tribes|strong="H4294"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w they|strong="H1992"\w* \w were|strong="H3478"\w* \w each|strong="H3605"\w* \w head|strong="H7218"\w* \w of|strong="H1004"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w* \w among|strong="H5973"\w* \w the|strong="H3605"\w* thousands \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. +\v 15 \w They|strong="H1696"\w* came \w to|strong="H1696"\w* \w the|strong="H1696"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w*, \w and|strong="H1121"\w* \w to|strong="H1696"\w* \w the|strong="H1696"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w*, \w and|strong="H1121"\w* \w to|strong="H1696"\w* \w the|strong="H1696"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*, \w to|strong="H1696"\w* \w the|strong="H1696"\w* land \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*, \w and|strong="H1121"\w* \w they|strong="H1696"\w* \w spoke|strong="H1696"\w* \w with|strong="H1696"\w* \w them|strong="H1121"\w*, \w saying|strong="H1696"\w*, +\v 16 “\w The|strong="H3605"\w* \w whole|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w What|strong="H4100"\w* \w trespass|strong="H4604"\w* \w is|strong="H3068"\w* \w this|strong="H2088"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w have|strong="H3068"\w* \w committed|strong="H4603"\w* \w against|strong="H4775"\w* \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w to|strong="H7725"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w today|strong="H3117"\w* \w from|strong="H7725"\w* following \w Yahweh|strong="H3068"\w*, \w in|strong="H3478"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w have|strong="H3068"\w* \w built|strong="H1129"\w* \w yourselves|strong="H3605"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w*, \w to|strong="H7725"\w* \w rebel|strong="H4775"\w* \w today|strong="H3117"\w* \w against|strong="H4775"\w* \w Yahweh|strong="H3068"\w*? +\v 17 \w Is|strong="H3068"\w* \w the|strong="H3068"\w* \w iniquity|strong="H5771"\w* \w of|strong="H3068"\w* \w Peor|strong="H6465"\w* \w too|strong="H4480"\w* \w little|strong="H4592"\w* \w for|strong="H5704"\w* \w us|strong="H3117"\w*, \w from|strong="H4480"\w* \w which|strong="H3068"\w* \w we|strong="H3068"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* \w cleansed|strong="H2891"\w* \w ourselves|strong="H4480"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, \w although|strong="H3808"\w* \w there|strong="H1961"\w* \w came|strong="H1961"\w* \w a|strong="H3068"\w* \w plague|strong="H5063"\w* \w on|strong="H3117"\w* \w the|strong="H3068"\w* \w congregation|strong="H5712"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\v 18 \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w must|strong="H3478"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w today|strong="H3117"\w* \w from|strong="H7725"\w* following \w Yahweh|strong="H3068"\w*? \w It|strong="H7725"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w*, \w since|strong="H3117"\w* \w you|strong="H3605"\w* \w rebel|strong="H4775"\w* \w today|strong="H3117"\w* \w against|strong="H4775"\w* \w Yahweh|strong="H3068"\w*, \w that|strong="H3605"\w* \w tomorrow|strong="H4279"\w* \w he|strong="H3117"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w angry|strong="H7107"\w* \w with|strong="H3068"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\v 19 However, if \w the|strong="H8432"\w* land \w of|strong="H3068"\w* \w your|strong="H3068"\w* possession \w is|strong="H3068"\w* \w unclean|strong="H2931"\w*, \w then|strong="H5674"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w to|strong="H3068"\w* \w the|strong="H8432"\w* land \w of|strong="H3068"\w* \w the|strong="H8432"\w* possession \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w in|strong="H3068"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w tabernacle|strong="H4908"\w* \w dwells|strong="H7931"\w*, \w and|strong="H3068"\w* \w take|strong="H5674"\w* possession \w among|strong="H8432"\w* \w us|strong="H8432"\w*; \w but|strong="H1107"\w* don’t \w rebel|strong="H4775"\w* \w against|strong="H4775"\w* \w Yahweh|strong="H3068"\w*, \w nor|strong="H5674"\w* \w rebel|strong="H4775"\w* \w against|strong="H4775"\w* \w us|strong="H8432"\w*, \w in|strong="H3068"\w* \w building|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w other|strong="H1107"\w* \w than|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*’s \w altar|strong="H4196"\w*. +\v 20 Didn’t \w Achan|strong="H5912"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zerah|strong="H2226"\w* \w commit|strong="H4603"\w* \w a|strong="H3068"\w* \w trespass|strong="H4604"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w devoted|strong="H2764"\w* \w thing|strong="H2764"\w*, \w and|strong="H1121"\w* \w wrath|strong="H7110"\w* \w fell|strong="H1961"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*? \w That|strong="H3605"\w* \w man|strong="H1121"\w* didn’t \w perish|strong="H1478"\w* \w alone|strong="H1931"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w iniquity|strong="H5771"\w*.’” +\p +\v 21 \w Then|strong="H6030"\w* \w the|strong="H1696"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* \w and|strong="H1121"\w* \w the|strong="H1696"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w* \w and|strong="H1121"\w* \w the|strong="H1696"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w answered|strong="H6030"\w*, \w and|strong="H1121"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H1696"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H1696"\w* thousands \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, +\v 22 “\w The|strong="H3068"\w* Mighty \w One|strong="H2088"\w*, \w God|strong="H3068"\w*, \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* Mighty \w One|strong="H2088"\w*, \w God|strong="H3068"\w*, \w Yahweh|strong="H3068"\w*, \w he|strong="H1931"\w* \w knows|strong="H3045"\w*; \w and|strong="H3478"\w* \w Israel|strong="H3478"\w* \w shall|strong="H3068"\w* \w know|strong="H3045"\w*: \w if|strong="H1931"\w* \w it|strong="H1931"\w* \w was|strong="H3068"\w* \w in|strong="H3478"\w* \w rebellion|strong="H4777"\w*, \w or|strong="H3117"\w* \w if|strong="H1931"\w* \w in|strong="H3478"\w* \w trespass|strong="H4604"\w* \w against|strong="H3068"\w* \w Yahweh|strong="H3068"\w* (don’t \w save|strong="H3467"\w* \w us|strong="H3045"\w* \w today|strong="H3117"\w*), +\v 23 \w that|strong="H1931"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w built|strong="H1129"\w* \w us|strong="H7725"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w to|strong="H7725"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w from|strong="H7725"\w* following \w Yahweh|strong="H3068"\w*; \w or|strong="H5930"\w* \w if|strong="H1931"\w* \w to|strong="H7725"\w* \w offer|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w* \w or|strong="H5930"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w or|strong="H5930"\w* \w if|strong="H1931"\w* \w to|strong="H7725"\w* \w offer|strong="H5927"\w* \w sacrifices|strong="H2077"\w* \w of|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w let|strong="H7725"\w* \w Yahweh|strong="H3068"\w* \w himself|strong="H1931"\w* \w require|strong="H1245"\w* \w it|strong="H1931"\w*. +\p +\v 24 “\w If|strong="H1121"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w out|strong="H6213"\w* \w of|strong="H1121"\w* \w concern|strong="H1674"\w* \w done|strong="H6213"\w* \w this|strong="H2063"\w*, \w and|strong="H1121"\w* \w for|strong="H6213"\w* \w a|strong="H3068"\w* \w reason|strong="H1697"\w*, \w saying|strong="H1697"\w*, ‘\w In|strong="H3478"\w* \w time|strong="H4279"\w* \w to|strong="H3478"\w* \w come|strong="H4279"\w* \w your|strong="H3068"\w* \w children|strong="H1121"\w* \w might|strong="H3068"\w* \w speak|strong="H1697"\w* \w to|strong="H3478"\w* \w our|strong="H3068"\w* \w children|strong="H1121"\w*, \w saying|strong="H1697"\w*, “\w What|strong="H4100"\w* \w have|strong="H3068"\w* \w you|strong="H6213"\w* \w to|strong="H3478"\w* \w do|strong="H6213"\w* \w with|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H6213"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*? +\v 25 \w For|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w made|strong="H5414"\w* \w the|strong="H5414"\w* \w Jordan|strong="H3383"\w* \w a|strong="H3068"\w* \w border|strong="H1366"\w* between \w us|strong="H5414"\w* \w and|strong="H1121"\w* \w you|strong="H5414"\w*, \w you|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* \w and|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w*. \w You|strong="H5414"\w* \w have|strong="H3068"\w* \w no|strong="H1115"\w* \w portion|strong="H2506"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.”’ \w So|strong="H5414"\w* \w your|strong="H3068"\w* \w children|strong="H1121"\w* \w might|strong="H3068"\w* \w make|strong="H5414"\w* \w our|strong="H3068"\w* \w children|strong="H1121"\w* \w cease|strong="H7673"\w* \w from|strong="H1121"\w* \w fearing|strong="H3372"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 26 “\w Therefore|strong="H6213"\w* \w we|strong="H3068"\w* said, ‘\w Let|strong="H4994"\w*’s \w now|strong="H4994"\w* \w prepare|strong="H6213"\w* \w to|strong="H6213"\w* \w build|strong="H1129"\w* \w ourselves|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w*, \w not|strong="H3808"\w* \w for|strong="H6213"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w nor|strong="H3808"\w* \w for|strong="H6213"\w* \w sacrifice|strong="H2077"\w*; +\v 27 \w but|strong="H3588"\w* \w it|strong="H1931"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w a|strong="H3068"\w* \w witness|strong="H5707"\w* between \w us|strong="H6440"\w* \w and|strong="H1121"\w* \w you|strong="H3588"\w*, \w and|strong="H1121"\w* between \w our|strong="H3068"\w* \w generations|strong="H1755"\w* \w after|strong="H3588"\w* \w us|strong="H6440"\w*, \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w may|strong="H3068"\w* \w perform|strong="H5647"\w* \w the|strong="H6440"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w* \w with|strong="H3068"\w* \w our|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w*, \w with|strong="H3068"\w* \w our|strong="H3068"\w* \w sacrifices|strong="H2077"\w*, \w and|strong="H1121"\w* \w with|strong="H3068"\w* \w our|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*;’ \w that|strong="H3588"\w* \w your|strong="H3068"\w* \w children|strong="H1121"\w* \w may|strong="H3068"\w* \w not|strong="H3808"\w* tell \w our|strong="H3068"\w* \w children|strong="H1121"\w* \w in|strong="H3068"\w* \w time|strong="H4279"\w* \w to|strong="H3068"\w* \w come|strong="H4279"\w*, ‘\w You|strong="H3588"\w* \w have|strong="H3068"\w* \w no|strong="H3808"\w* \w portion|strong="H2506"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.’ +\p +\v 28 “\w Therefore|strong="H3588"\w* \w we|strong="H3068"\w* said, ‘\w It|strong="H1931"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w*, \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w tell|strong="H7200"\w* \w us|strong="H6213"\w* \w or|strong="H3808"\w* \w our|strong="H3068"\w* \w generations|strong="H1755"\w* \w this|strong="H6213"\w* \w in|strong="H3068"\w* \w time|strong="H4279"\w* \w to|strong="H3068"\w* \w come|strong="H1961"\w*, \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w shall|strong="H3068"\w* say, “\w Behold|strong="H7200"\w* \w the|strong="H7200"\w* \w pattern|strong="H8403"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w altar|strong="H4196"\w*, \w which|strong="H1931"\w* \w our|strong="H3068"\w* fathers \w made|strong="H6213"\w*, \w not|strong="H3808"\w* \w for|strong="H3588"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w nor|strong="H3808"\w* \w for|strong="H3588"\w* \w sacrifice|strong="H2077"\w*; \w but|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w witness|strong="H5707"\w* between \w us|strong="H6213"\w* \w and|strong="H3068"\w* \w you|strong="H3588"\w*.”’ +\p +\v 29 “\w Far|strong="H2486"\w* \w be|strong="H3068"\w* \w it|strong="H7725"\w* \w from|strong="H4480"\w* \w us|strong="H7725"\w* \w that|strong="H3117"\w* \w we|strong="H3068"\w* \w should|strong="H3068"\w* \w rebel|strong="H4775"\w* \w against|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w today|strong="H3117"\w* \w from|strong="H4480"\w* following \w Yahweh|strong="H3068"\w*, \w to|strong="H7725"\w* \w build|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w for|strong="H6440"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, \w for|strong="H6440"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w or|strong="H3117"\w* \w for|strong="H6440"\w* \w sacrifice|strong="H2077"\w*, \w besides|strong="H4480"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*’s \w altar|strong="H4196"\w* \w that|strong="H3117"\w* \w is|strong="H3068"\w* \w before|strong="H6440"\w* \w his|strong="H3068"\w* \w tabernacle|strong="H4908"\w*!” +\p +\v 30 \w When|strong="H8085"\w* \w Phinehas|strong="H6372"\w* \w the|strong="H8085"\w* \w priest|strong="H3548"\w*, \w and|strong="H1121"\w* \w the|strong="H8085"\w* \w princes|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* \w congregation|strong="H5712"\w*, \w even|strong="H5869"\w* \w the|strong="H8085"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* thousands \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w that|strong="H8085"\w* \w were|strong="H3478"\w* \w with|strong="H1696"\w* \w him|strong="H8085"\w*, \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w that|strong="H8085"\w* \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* \w and|strong="H1121"\w* \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w* \w and|strong="H1121"\w* \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w spoke|strong="H1696"\w*, \w it|strong="H1696"\w* \w pleased|strong="H3190"\w* \w them|strong="H3190"\w* \w well|strong="H3190"\w*. +\v 31 \w Phinehas|strong="H6372"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Eleazar \w the|strong="H3588"\w* \w priest|strong="H3548"\w* said \w to|strong="H3478"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w*, \w to|strong="H3478"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w*, \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*, “\w Today|strong="H3117"\w* \w we|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w among|strong="H8432"\w* \w us|strong="H3045"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w committed|strong="H4603"\w* \w this|strong="H2088"\w* \w trespass|strong="H4604"\w* \w against|strong="H3027"\w* \w Yahweh|strong="H3068"\w*. \w Now|strong="H3117"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w delivered|strong="H5337"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w out|strong="H3045"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w*.” +\v 32 \w Phinehas|strong="H6372"\w* \w the|strong="H7725"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Eleazar \w the|strong="H7725"\w* \w priest|strong="H3548"\w*, \w and|strong="H1121"\w* \w the|strong="H7725"\w* \w princes|strong="H5387"\w*, \w returned|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H7725"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w*, \w and|strong="H1121"\w* \w from|strong="H7725"\w* \w the|strong="H7725"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w*, \w out|strong="H7725"\w* \w of|strong="H1121"\w* \w the|strong="H7725"\w* land \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*, \w to|strong="H7725"\w* \w the|strong="H7725"\w* land \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*, \w to|strong="H7725"\w* \w the|strong="H7725"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w brought|strong="H7725"\w* \w them|strong="H7725"\w* \w word|strong="H1697"\w* \w again|strong="H7725"\w*. +\v 33 \w The|strong="H5921"\w* \w thing|strong="H1697"\w* \w pleased|strong="H3190"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w blessed|strong="H1288"\w* \w God|strong="H3808"\w*, \w and|strong="H1121"\w* \w spoke|strong="H1697"\w* \w no|strong="H3808"\w* \w more|strong="H3808"\w* \w of|strong="H1121"\w* \w going|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w* \w to|strong="H3478"\w* \w war|strong="H6635"\w*, \w to|strong="H3478"\w* \w destroy|strong="H7843"\w* \w the|strong="H5921"\w* land \w in|strong="H3427"\w* \w which|strong="H1697"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w* \w lived|strong="H3427"\w*. +\v 34 \w The|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w* \w named|strong="H7121"\w* \w the|strong="H3588"\w* \w altar|strong="H4196"\w* “\w A|strong="H3068"\w* \w Witness|strong="H5707"\w* Between \w Us|strong="H3588"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w God|strong="H3068"\w*.” +\c 23 +\p +\v 1 \w After|strong="H1961"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w*, \w when|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w given|strong="H5117"\w* \w rest|strong="H5117"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w* \w from|strong="H3478"\w* \w their|strong="H3605"\w* enemies \w all|strong="H3605"\w* \w around|strong="H5439"\w*, \w and|strong="H3478"\w* \w Joshua|strong="H3091"\w* \w was|strong="H3068"\w* \w old|strong="H2204"\w* \w and|strong="H3478"\w* well advanced \w in|strong="H3478"\w* \w years|strong="H3117"\w*, +\v 2 \w Joshua|strong="H3091"\w* \w called|strong="H7121"\w* \w for|strong="H7121"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w for|strong="H7121"\w* \w their|strong="H3605"\w* \w elders|strong="H2205"\w* \w and|strong="H3478"\w* \w for|strong="H7121"\w* \w their|strong="H3605"\w* \w heads|strong="H7218"\w*, \w and|strong="H3478"\w* \w for|strong="H7121"\w* \w their|strong="H3605"\w* \w judges|strong="H8199"\w* \w and|strong="H3478"\w* \w for|strong="H7121"\w* \w their|strong="H3605"\w* \w officers|strong="H7860"\w*, \w and|strong="H3478"\w* \w said|strong="H7121"\w* \w to|strong="H3478"\w* \w them|strong="H7121"\w*, “\w I|strong="H3117"\w* \w am|strong="H2204"\w* \w old|strong="H2205"\w* \w and|strong="H3478"\w* well advanced \w in|strong="H3478"\w* \w years|strong="H3117"\w*. +\v 3 \w You|strong="H3588"\w* \w have|strong="H3068"\w* \w seen|strong="H7200"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* \w nations|strong="H1471"\w* \w because|strong="H3588"\w* \w of|strong="H3068"\w* \w you|strong="H3588"\w*; \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w who|strong="H3605"\w* \w has|strong="H3068"\w* \w fought|strong="H3898"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*. +\v 4 \w Behold|strong="H7200"\w*, \w I|strong="H7200"\w* \w have|strong="H1471"\w* \w allotted|strong="H5307"\w* \w to|strong="H7200"\w* \w you|strong="H3605"\w* \w these|strong="H3605"\w* \w nations|strong="H1471"\w* \w that|strong="H7200"\w* \w remain|strong="H7604"\w*, \w to|strong="H7200"\w* \w be|strong="H1471"\w* \w an|strong="H7200"\w* \w inheritance|strong="H5159"\w* \w for|strong="H3605"\w* \w your|strong="H3605"\w* \w tribes|strong="H7626"\w*, \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*, \w with|strong="H3772"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w that|strong="H7200"\w* \w I|strong="H7200"\w* \w have|strong="H1471"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*, even \w to|strong="H7200"\w* \w the|strong="H3605"\w* \w great|strong="H1419"\w* \w sea|strong="H3220"\w* \w toward|strong="H4480"\w* \w the|strong="H3605"\w* \w going|strong="H5307"\w* \w down|strong="H5307"\w* \w of|strong="H7626"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*. +\v 5 \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w thrust|strong="H1920"\w* \w them|strong="H6440"\w* \w out|strong="H3423"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w and|strong="H3068"\w* \w drive|strong="H3423"\w* \w them|strong="H6440"\w* \w from|strong="H6440"\w* \w out|strong="H3423"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w sight|strong="H6440"\w*. \w You|strong="H6440"\w* \w shall|strong="H3068"\w* \w possess|strong="H3423"\w* \w their|strong="H3068"\w* \w land|strong="H6440"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H6440"\w*. +\p +\v 6 “\w Therefore|strong="H4872"\w* \w be|strong="H8040"\w* \w very|strong="H3966"\w* \w courageous|strong="H2388"\w* \w to|strong="H6213"\w* \w keep|strong="H8104"\w* \w and|strong="H4872"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w written|strong="H3789"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4480"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w of|strong="H4480"\w* \w Moses|strong="H4872"\w*, \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w not|strong="H1115"\w* \w turn|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H4480"\w* \w it|strong="H6213"\w* \w to|strong="H6213"\w* \w the|strong="H3605"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w or|strong="H3225"\w* \w to|strong="H6213"\w* \w the|strong="H3605"\w* \w left|strong="H8040"\w*; +\v 7 \w that|strong="H1471"\w* \w you|strong="H3808"\w* \w not|strong="H3808"\w* \w come|strong="H2142"\w* \w among|strong="H8034"\w* \w these|strong="H2142"\w* \w nations|strong="H1471"\w*, \w these|strong="H2142"\w* \w that|strong="H1471"\w* \w remain|strong="H7604"\w* \w among|strong="H8034"\w* \w you|strong="H3808"\w*; \w neither|strong="H3808"\w* \w make|strong="H5647"\w* \w mention|strong="H2142"\w* \w of|strong="H8034"\w* \w the|strong="H5647"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w their|strong="H5647"\w* gods, \w nor|strong="H3808"\w* cause \w to|strong="H7650"\w* \w swear|strong="H7650"\w* \w by|strong="H7650"\w* \w them|strong="H5647"\w*, \w neither|strong="H3808"\w* \w serve|strong="H5647"\w* \w them|strong="H5647"\w*, \w nor|strong="H3808"\w* \w bow|strong="H7812"\w* \w down|strong="H7812"\w* \w yourselves|strong="H7812"\w* \w to|strong="H7650"\w* \w them|strong="H5647"\w*; +\v 8 \w but|strong="H3588"\w* \w hold|strong="H1692"\w* \w fast|strong="H1692"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w as|strong="H5704"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\p +\v 9 “\w For|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w driven|strong="H3423"\w* \w great|strong="H1419"\w* \w and|strong="H3068"\w* \w strong|strong="H6099"\w* \w nations|strong="H1471"\w* \w out|strong="H3423"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*. \w But|strong="H3808"\w* \w as|strong="H5704"\w* \w for|strong="H5704"\w* \w you|strong="H6440"\w*, \w no|strong="H3808"\w* \w man|strong="H1419"\w* \w has|strong="H3068"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 10 \w One|strong="H4480"\w* man \w of|strong="H3068"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w chase|strong="H7291"\w* \w a|strong="H3068"\w* thousand; \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w who|strong="H1931"\w* \w fights|strong="H3898"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*, \w as|strong="H3068"\w* \w he|strong="H1931"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*. +\v 11 \w Take|strong="H8104"\w* \w good|strong="H3966"\w* \w heed|strong="H8104"\w* \w therefore|strong="H3068"\w* \w to|strong="H3068"\w* \w yourselves|strong="H5315"\w*, \w that|strong="H5315"\w* \w you|strong="H5315"\w* love \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\p +\v 12 “\w But|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* do \w at|strong="H7725"\w* \w all|strong="H7725"\w* \w go|strong="H7725"\w* \w back|strong="H7725"\w*, \w and|strong="H7725"\w* \w hold|strong="H1692"\w* \w fast|strong="H1692"\w* \w to|strong="H7725"\w* \w the|strong="H3588"\w* \w remnant|strong="H3499"\w* \w of|strong="H1471"\w* \w these|strong="H1992"\w* \w nations|strong="H1471"\w*, \w even|strong="H3588"\w* \w these|strong="H1992"\w* \w who|strong="H1992"\w* \w remain|strong="H7604"\w* among \w you|strong="H3588"\w*, \w and|strong="H7725"\w* \w make|strong="H7725"\w* \w marriages|strong="H2859"\w* \w with|strong="H7725"\w* \w them|strong="H1992"\w*, \w and|strong="H7725"\w* \w go|strong="H7725"\w* \w in|strong="H7604"\w* \w to|strong="H7725"\w* \w them|strong="H1992"\w*, \w and|strong="H7725"\w* \w they|strong="H1992"\w* \w to|strong="H7725"\w* \w you|strong="H3588"\w*; +\v 13 \w know|strong="H3045"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w certainty|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w no|strong="H3808"\w* \w longer|strong="H3254"\w* \w drive|strong="H3423"\w* \w these|strong="H2063"\w* \w nations|strong="H1471"\w* \w from|strong="H6440"\w* \w out|strong="H3423"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w sight|strong="H5869"\w*; \w but|strong="H3588"\w* \w they|strong="H3588"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w snare|strong="H4170"\w* \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w trap|strong="H4170"\w* \w to|strong="H5704"\w* \w you|strong="H3588"\w*, \w a|strong="H3068"\w* scourge \w in|strong="H5921"\w* \w your|strong="H3068"\w* \w sides|strong="H6654"\w*, \w and|strong="H3068"\w* \w thorns|strong="H6796"\w* \w in|strong="H5921"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w*, \w until|strong="H5704"\w* \w you|strong="H3588"\w* perish \w from|strong="H6440"\w* \w off|strong="H5921"\w* \w this|strong="H2063"\w* \w good|strong="H2896"\w* \w land|strong="H6440"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H3588"\w*. +\p +\v 14 “\w Behold|strong="H2009"\w*, \w today|strong="H3117"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w going|strong="H1980"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth. \w You|strong="H3588"\w* \w know|strong="H3045"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w hearts|strong="H3824"\w* \w and|strong="H1980"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w souls|strong="H5315"\w* \w that|strong="H3588"\w* \w not|strong="H3808"\w* \w one|strong="H3605"\w* \w thing|strong="H1697"\w* \w has|strong="H3068"\w* \w failed|strong="H5307"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w good|strong="H2896"\w* \w things|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w spoke|strong="H1696"\w* \w concerning|strong="H5921"\w* \w you|strong="H3588"\w*. \w All|strong="H3605"\w* \w have|strong="H3068"\w* \w happened|strong="H1697"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*. \w Not|strong="H3808"\w* \w one|strong="H3605"\w* \w thing|strong="H1697"\w* \w has|strong="H3068"\w* \w failed|strong="H5307"\w* \w of|strong="H3068"\w* \w it|strong="H5921"\w*. +\v 15 \w It|strong="H5414"\w* \w shall|strong="H3068"\w* \w happen|strong="H1961"\w* \w that|strong="H3605"\w* \w as|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w good|strong="H2896"\w* \w things|strong="H1697"\w* \w have|strong="H1961"\w* \w come|strong="H1961"\w* \w on|strong="H5921"\w* \w you|strong="H5414"\w* \w of|strong="H3068"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H5414"\w*, \w so|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w bring|strong="H5414"\w* \w on|strong="H5921"\w* \w you|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w things|strong="H1697"\w*, \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w has|strong="H3068"\w* \w destroyed|strong="H8045"\w* \w you|strong="H5414"\w* \w from|strong="H5921"\w* \w off|strong="H5921"\w* \w this|strong="H2063"\w* \w good|strong="H2896"\w* land \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w*, +\v 16 \w when|strong="H1980"\w* \w you|strong="H5414"\w* disobey \w the|strong="H5921"\w* \w covenant|strong="H1285"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w commanded|strong="H6680"\w* \w you|strong="H5414"\w*, \w and|strong="H1980"\w* \w go|strong="H1980"\w* \w and|strong="H1980"\w* \w serve|strong="H5647"\w* other \w gods|strong="H1980"\w*, \w and|strong="H1980"\w* \w bow|strong="H7812"\w* \w down|strong="H7812"\w* \w yourselves|strong="H3068"\w* \w to|strong="H1980"\w* \w them|strong="H5414"\w*. \w Then|strong="H1980"\w* \w Yahweh|strong="H3068"\w*’s \w anger|strong="H5674"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w kindled|strong="H2734"\w* \w against|strong="H5921"\w* \w you|strong="H5414"\w*, \w and|strong="H1980"\w* \w you|strong="H5414"\w* \w will|strong="H3068"\w* \w perish|strong="H5674"\w* \w quickly|strong="H4120"\w* \w from|strong="H5921"\w* \w off|strong="H5921"\w* \w the|strong="H5921"\w* \w good|strong="H2896"\w* land \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w to|strong="H1980"\w* \w you|strong="H5414"\w*.” +\c 24 +\p +\v 1 \w Joshua|strong="H3091"\w* \w gathered|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H7626"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w Shechem|strong="H7927"\w*, \w and|strong="H3478"\w* \w called|strong="H7121"\w* \w for|strong="H7121"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H7626"\w* \w Israel|strong="H3478"\w*, \w for|strong="H7121"\w* \w their|strong="H3605"\w* \w heads|strong="H7218"\w*, \w for|strong="H7121"\w* \w their|strong="H3605"\w* \w judges|strong="H8199"\w*, \w and|strong="H3478"\w* \w for|strong="H7121"\w* \w their|strong="H3605"\w* \w officers|strong="H7860"\w*; \w and|strong="H3478"\w* \w they|strong="H3478"\w* \w presented|strong="H3320"\w* \w themselves|strong="H3320"\w* \w before|strong="H6440"\w* God. +\v 2 \w Joshua|strong="H3091"\w* said \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, “\w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*, ‘\w Your|strong="H3068"\w* fathers \w lived|strong="H3427"\w* \w of|strong="H3068"\w* \w old|strong="H5769"\w* \w time|strong="H5769"\w* \w beyond|strong="H5676"\w* \w the|strong="H3605"\w* \w River|strong="H5104"\w*, \w even|strong="H3068"\w* \w Terah|strong="H8646"\w*, \w the|strong="H3605"\w* father \w of|strong="H3068"\w* Abraham, \w and|strong="H3478"\w* \w the|strong="H3605"\w* father \w of|strong="H3068"\w* \w Nahor|strong="H5152"\w*. \w They|strong="H3068"\w* \w served|strong="H5647"\w* \w other|strong="H5676"\w* gods. +\v 3 \w I|strong="H5414"\w* \w took|strong="H3947"\w* \w your|strong="H3605"\w* father \w Abraham|strong="H3947"\w* \w from|strong="H3947"\w* \w beyond|strong="H5676"\w* \w the|strong="H3605"\w* \w River|strong="H5104"\w*, \w and|strong="H3212"\w* \w led|strong="H3212"\w* \w him|strong="H5414"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H5676"\w* \w of|strong="H2233"\w* \w Canaan|strong="H3667"\w*, \w and|strong="H3212"\w* \w multiplied|strong="H7235"\w* \w his|strong="H3605"\w* \w offspring|strong="H2233"\w*,\f + \fr 24:3 \ft or, seed\f* \w and|strong="H3212"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w Isaac|strong="H3327"\w*. +\v 4 \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w to|strong="H3381"\w* \w Isaac|strong="H3327"\w* \w Jacob|strong="H3290"\w* \w and|strong="H1121"\w* \w Esau|strong="H6215"\w*: \w and|strong="H1121"\w* \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w to|strong="H3381"\w* \w Esau|strong="H6215"\w* \w Mount|strong="H2022"\w* \w Seir|strong="H8165"\w*, \w to|strong="H3381"\w* \w possess|strong="H3423"\w* \w it|strong="H5414"\w*. \w Jacob|strong="H3290"\w* \w and|strong="H1121"\w* \w his|strong="H5414"\w* \w children|strong="H1121"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w Egypt|strong="H4714"\w*. +\p +\v 5 “‘\w I|strong="H4714"\w* \w sent|strong="H7971"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron, \w and|strong="H4872"\w* \w I|strong="H4714"\w* \w plagued|strong="H5062"\w* \w Egypt|strong="H4714"\w*, according \w to|strong="H3318"\w* \w that|strong="H6213"\w* which \w I|strong="H4714"\w* \w did|strong="H6213"\w* \w among|strong="H7130"\w* \w them|strong="H7971"\w*: \w and|strong="H4872"\w* afterward \w I|strong="H4714"\w* \w brought|strong="H3318"\w* \w you|strong="H7971"\w* \w out|strong="H3318"\w*. +\v 6 \w I|strong="H4714"\w* \w brought|strong="H3318"\w* \w your|strong="H3318"\w* fathers \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w Egypt|strong="H4714"\w*: \w and|strong="H4714"\w* \w you|strong="H7291"\w* \w came|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3318"\w* \w sea|strong="H3220"\w*. \w The|strong="H3318"\w* \w Egyptians|strong="H4714"\w* \w pursued|strong="H7291"\w* \w your|strong="H3318"\w* fathers \w with|strong="H3318"\w* \w chariots|strong="H7393"\w* \w and|strong="H4714"\w* \w with|strong="H3318"\w* \w horsemen|strong="H6571"\w* \w to|strong="H3318"\w* \w the|strong="H3318"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w*. +\v 7 \w When|strong="H3117"\w* \w they|strong="H3117"\w* \w cried|strong="H6817"\w* \w out|strong="H7200"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w he|strong="H3117"\w* \w put|strong="H7760"\w* \w darkness|strong="H3990"\w* \w between|strong="H3427"\w* \w you|strong="H5921"\w* \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w Egyptians|strong="H4714"\w*, \w and|strong="H3068"\w* \w brought|strong="H7760"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, \w and|strong="H3068"\w* \w covered|strong="H3680"\w* \w them|strong="H5921"\w*; \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w* \w saw|strong="H7200"\w* \w what|strong="H6213"\w* \w I|strong="H3117"\w* \w did|strong="H6213"\w* \w in|strong="H3427"\w* \w Egypt|strong="H4714"\w*. \w You|strong="H5921"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w*. +\p +\v 8 “‘\w I|strong="H5414"\w* \w brought|strong="H5414"\w* \w you|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H3027"\w* \w the|strong="H6440"\w* Amorites, \w that|strong="H5414"\w* \w lived|strong="H3427"\w* \w beyond|strong="H5676"\w* \w the|strong="H6440"\w* \w Jordan|strong="H3383"\w*. \w They|strong="H6440"\w* \w fought|strong="H3898"\w* \w with|strong="H3427"\w* \w you|strong="H5414"\w*, \w and|strong="H3027"\w* \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w your|strong="H5414"\w* \w hand|strong="H3027"\w*. \w You|strong="H5414"\w* \w possessed|strong="H3423"\w* \w their|strong="H5414"\w* \w land|strong="H6440"\w*, \w and|strong="H3027"\w* \w I|strong="H5414"\w* \w destroyed|strong="H8045"\w* \w them|strong="H5414"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w*. +\v 9 \w Then|strong="H6965"\w* \w Balak|strong="H1111"\w* \w the|strong="H7121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zippor|strong="H6834"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w*, \w arose|strong="H6965"\w* \w and|strong="H1121"\w* \w fought|strong="H3898"\w* \w against|strong="H3898"\w* \w Israel|strong="H3478"\w*. \w He|strong="H7971"\w* \w sent|strong="H7971"\w* \w and|strong="H1121"\w* \w called|strong="H7121"\w* \w Balaam|strong="H1109"\w* \w the|strong="H7121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Beor|strong="H1160"\w* \w to|strong="H3478"\w* \w curse|strong="H7043"\w* \w you|strong="H7971"\w*, +\v 10 \w but|strong="H3808"\w* \w I|strong="H3808"\w* would \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H3027"\w* \w Balaam|strong="H1109"\w*; therefore \w he|strong="H3027"\w* \w blessed|strong="H1288"\w* \w you|strong="H1288"\w* \w still|strong="H1288"\w*. \w So|strong="H3808"\w* \w I|strong="H3808"\w* \w delivered|strong="H5337"\w* \w you|strong="H1288"\w* \w out|strong="H5337"\w* \w of|strong="H3027"\w* \w his|strong="H8085"\w* \w hand|strong="H3027"\w*. +\p +\v 11 “‘\w You|strong="H5414"\w* \w went|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H5414"\w* \w Jordan|strong="H3383"\w*, \w and|strong="H3027"\w* \w came|strong="H5674"\w* \w to|strong="H5414"\w* \w Jericho|strong="H3405"\w*. \w The|strong="H5414"\w* \w men|strong="H1167"\w* \w of|strong="H3027"\w* \w Jericho|strong="H3405"\w* \w fought|strong="H3898"\w* \w against|strong="H3898"\w* \w you|strong="H5414"\w*, \w the|strong="H5414"\w* Amorite, \w the|strong="H5414"\w* \w Perizzite|strong="H6522"\w*, \w the|strong="H5414"\w* \w Canaanite|strong="H3669"\w*, \w the|strong="H5414"\w* \w Hittite|strong="H2850"\w*, \w the|strong="H5414"\w* \w Girgashite|strong="H1622"\w*, \w the|strong="H5414"\w* \w Hivite|strong="H2340"\w*, \w and|strong="H3027"\w* \w the|strong="H5414"\w* \w Jebusite|strong="H2983"\w*; \w and|strong="H3027"\w* \w I|strong="H5414"\w* \w delivered|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w your|strong="H5414"\w* \w hand|strong="H3027"\w*. +\v 12 \w I|strong="H3808"\w* \w sent|strong="H7971"\w* \w the|strong="H6440"\w* \w hornet|strong="H6880"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w which|strong="H2719"\w* \w drove|strong="H1644"\w* \w them|strong="H7971"\w* \w out|strong="H7971"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w even|strong="H3808"\w* \w the|strong="H6440"\w* \w two|strong="H8147"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* Amorites; \w not|strong="H3808"\w* \w with|strong="H6440"\w* \w your|strong="H6440"\w* \w sword|strong="H2719"\w*, \w nor|strong="H3808"\w* \w with|strong="H6440"\w* \w your|strong="H6440"\w* \w bow|strong="H7198"\w*. +\v 13 \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* land \w on|strong="H3427"\w* \w which|strong="H5892"\w* \w you|strong="H5414"\w* \w had|strong="H5414"\w* \w not|strong="H3808"\w* \w labored|strong="H3021"\w*, \w and|strong="H5892"\w* \w cities|strong="H5892"\w* \w which|strong="H5892"\w* \w you|strong="H5414"\w* didn’t \w build|strong="H1129"\w*, \w and|strong="H5892"\w* \w you|strong="H5414"\w* \w live|strong="H3427"\w* \w in|strong="H3427"\w* \w them|strong="H5414"\w*. \w You|strong="H5414"\w* eat \w of|strong="H3427"\w* \w vineyards|strong="H3754"\w* \w and|strong="H5892"\w* \w olive|strong="H2132"\w* \w groves|strong="H2132"\w* \w which|strong="H5892"\w* \w you|strong="H5414"\w* didn’t \w plant|strong="H5193"\w*.’ +\p +\v 14 “\w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w serve|strong="H5647"\w* \w him|strong="H5647"\w* \w in|strong="H3068"\w* \w sincerity|strong="H8549"\w* \w and|strong="H3068"\w* \w in|strong="H3068"\w* truth. \w Put|strong="H5493"\w* \w away|strong="H5493"\w* \w the|strong="H5647"\w* gods \w which|strong="H3068"\w* \w your|strong="H3068"\w* fathers \w served|strong="H5647"\w* \w beyond|strong="H5676"\w* \w the|strong="H5647"\w* \w River|strong="H5104"\w*, \w in|strong="H3068"\w* \w Egypt|strong="H4714"\w*; \w and|strong="H3068"\w* \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w*. +\v 15 If \w it|strong="H3117"\w* \w seems|strong="H5869"\w* \w evil|strong="H7451"\w* \w to|strong="H3068"\w* \w you|strong="H3117"\w* \w to|strong="H3068"\w* \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w*, choose \w today|strong="H3117"\w* \w whom|strong="H4310"\w* \w you|strong="H3117"\w* \w will|strong="H3068"\w* \w serve|strong="H5647"\w*; whether \w the|strong="H5647"\w* gods \w which|strong="H3068"\w* \w your|strong="H3068"\w* fathers \w served|strong="H5647"\w* \w that|strong="H3117"\w* \w were|strong="H3117"\w* \w beyond|strong="H5676"\w* \w the|strong="H5647"\w* \w River|strong="H5104"\w*, \w or|strong="H3117"\w* \w the|strong="H5647"\w* gods \w of|strong="H1004"\w* \w the|strong="H5647"\w* Amorites, \w in|strong="H3427"\w* \w whose|strong="H4310"\w* \w land|strong="H5676"\w* \w you|strong="H3117"\w* \w dwell|strong="H3427"\w*; \w but|strong="H7451"\w* \w as|strong="H3117"\w* \w for|strong="H3068"\w* \w me|strong="H5869"\w* \w and|strong="H3068"\w* \w my|strong="H3068"\w* \w house|strong="H1004"\w*, \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 16 \w The|strong="H5647"\w* \w people|strong="H5971"\w* \w answered|strong="H6030"\w*, “\w Far|strong="H2486"\w* \w be|strong="H3068"\w* \w it|strong="H2486"\w* \w from|strong="H3068"\w* \w us|strong="H6030"\w* \w that|strong="H5971"\w* \w we|strong="H3068"\w* \w should|strong="H3068"\w* \w forsake|strong="H5800"\w* \w Yahweh|strong="H3068"\w*, \w to|strong="H3068"\w* \w serve|strong="H5647"\w* other gods; +\v 17 \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w who|strong="H3605"\w* \w brought|strong="H5927"\w* \w us|strong="H6213"\w* \w and|strong="H1980"\w* \w our|strong="H3068"\w* fathers \w up|strong="H5927"\w* \w out|strong="H6213"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w land|strong="H7130"\w* \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*, \w from|strong="H5927"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w bondage|strong="H5650"\w*, \w and|strong="H1980"\w* \w who|strong="H3605"\w* \w did|strong="H6213"\w* \w those|strong="H3605"\w* \w great|strong="H1419"\w* signs \w in|strong="H1980"\w* \w our|strong="H3068"\w* \w sight|strong="H5869"\w*, \w and|strong="H1980"\w* \w preserved|strong="H8104"\w* \w us|strong="H6213"\w* \w in|strong="H1980"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w in|strong="H1980"\w* \w which|strong="H1931"\w* \w we|strong="H3068"\w* \w went|strong="H1980"\w*, \w and|strong="H1980"\w* \w among|strong="H7130"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w through|strong="H5674"\w* \w the|strong="H3605"\w* \w middle|strong="H7130"\w* \w of|strong="H1004"\w* \w whom|strong="H5971"\w* \w we|strong="H3068"\w* \w passed|strong="H5674"\w*. +\v 18 \w Yahweh|strong="H3068"\w* \w drove|strong="H1644"\w* \w out|strong="H1644"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w us|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w*, \w even|strong="H1571"\w* \w the|strong="H3605"\w* Amorites \w who|strong="H3605"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w*. \w Therefore|strong="H1571"\w* \w we|strong="H3068"\w* \w also|strong="H1571"\w* \w will|strong="H3068"\w* \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w*; \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*.” +\p +\v 19 \w Joshua|strong="H3091"\w* said \w to|strong="H3201"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w*, “\w You|strong="H3588"\w* \w can|strong="H3201"\w*’t \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w*, \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w holy|strong="H6918"\w* \w God|strong="H3068"\w*. \w He|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w jealous|strong="H7072"\w* \w God|strong="H3068"\w*. \w He|strong="H1931"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w forgive|strong="H5375"\w* \w your|strong="H3068"\w* disobedience \w nor|strong="H3808"\w* \w your|strong="H3068"\w* \w sins|strong="H2403"\w*. +\v 20 \w If|strong="H3588"\w* \w you|strong="H3588"\w* \w forsake|strong="H5800"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w serve|strong="H5647"\w* \w foreign|strong="H5236"\w* gods, \w then|strong="H7725"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w turn|strong="H7725"\w* \w and|strong="H3068"\w* \w do|strong="H3190"\w* \w you|strong="H3588"\w* \w evil|strong="H7489"\w*, \w and|strong="H3068"\w* \w consume|strong="H3615"\w* \w you|strong="H3588"\w*, \w after|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w done|strong="H3615"\w* \w you|strong="H3588"\w* \w good|strong="H3190"\w*.” +\p +\v 21 \w The|strong="H3588"\w* \w people|strong="H5971"\w* said \w to|strong="H3068"\w* \w Joshua|strong="H3091"\w*, “\w No|strong="H3808"\w*, \w but|strong="H3588"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w*.” +\v 22 \w Joshua|strong="H3091"\w* said \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w*, “\w You|strong="H3588"\w* \w are|strong="H5971"\w* \w witnesses|strong="H5707"\w* \w against|strong="H3068"\w* \w yourselves|strong="H3068"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* chosen \w Yahweh|strong="H3068"\w* \w yourselves|strong="H3068"\w*, \w to|strong="H3068"\w* \w serve|strong="H5647"\w* \w him|strong="H5647"\w*.” +\p \w They|strong="H3588"\w* said, “\w We|strong="H3588"\w* \w are|strong="H5971"\w* \w witnesses|strong="H5707"\w*.” +\p +\v 23 “\w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w put|strong="H5493"\w* \w away|strong="H5493"\w* \w the|strong="H3068"\w* \w foreign|strong="H5236"\w* gods \w which|strong="H3068"\w* \w are|strong="H3478"\w* \w among|strong="H7130"\w* \w you|strong="H7130"\w*, \w and|strong="H3478"\w* \w incline|strong="H5186"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*.” +\p +\v 24 \w The|strong="H8085"\w* \w people|strong="H5971"\w* \w said|strong="H8085"\w* \w to|strong="H3068"\w* \w Joshua|strong="H3091"\w*, “\w We|strong="H8085"\w* \w will|strong="H3068"\w* \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w voice|strong="H6963"\w*.” +\p +\v 25 \w So|strong="H7760"\w* \w Joshua|strong="H3091"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w the|strong="H3117"\w* \w people|strong="H5971"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w*, \w and|strong="H3117"\w* \w made|strong="H3772"\w* \w for|strong="H2706"\w* \w them|strong="H7760"\w* \w a|strong="H3068"\w* \w statute|strong="H2706"\w* \w and|strong="H3117"\w* \w an|strong="H7760"\w* \w ordinance|strong="H4941"\w* \w in|strong="H3117"\w* \w Shechem|strong="H7927"\w*. +\v 26 \w Joshua|strong="H3091"\w* \w wrote|strong="H3789"\w* \w these|strong="H3789"\w* \w words|strong="H1697"\w* \w in|strong="H3068"\w* \w the|strong="H3947"\w* \w book|strong="H5612"\w* \w of|strong="H3068"\w* \w the|strong="H3947"\w* \w law|strong="H8451"\w* \w of|strong="H3068"\w* \w God|strong="H3068"\w*; \w and|strong="H6965"\w* \w he|strong="H8033"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* stone, \w and|strong="H6965"\w* \w set|strong="H6965"\w* \w it|strong="H8033"\w* \w up|strong="H6965"\w* \w there|strong="H8033"\w* \w under|strong="H8478"\w* \w the|strong="H3947"\w* oak \w that|strong="H3068"\w* \w was|strong="H3068"\w* \w by|strong="H3068"\w* \w the|strong="H3947"\w* \w sanctuary|strong="H4720"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 27 \w Joshua|strong="H3091"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, “\w Behold|strong="H2009"\w*, \w this|strong="H2063"\w* stone \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w witness|strong="H5713"\w* \w against|strong="H5973"\w* \w us|strong="H3588"\w*, \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w has|strong="H3068"\w* \w heard|strong="H8085"\w* \w all|strong="H3605"\w* \w Yahweh|strong="H3068"\w*’s words \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w us|strong="H3588"\w*. \w It|strong="H1931"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w therefore|strong="H3588"\w* \w a|strong="H3068"\w* \w witness|strong="H5713"\w* \w against|strong="H5973"\w* \w you|strong="H3588"\w*, \w lest|strong="H6435"\w* \w you|strong="H3588"\w* \w deny|strong="H3584"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*.” +\v 28 \w So|strong="H7971"\w* \w Joshua|strong="H3091"\w* \w sent|strong="H7971"\w* \w the|strong="H7971"\w* \w people|strong="H5971"\w* \w away|strong="H7971"\w*, \w each|strong="H5971"\w* \w to|strong="H7971"\w* \w his|strong="H7971"\w* \w own|strong="H5971"\w* \w inheritance|strong="H5159"\w*. +\p +\v 29 \w After|strong="H1961"\w* \w these|strong="H4191"\w* \w things|strong="H1697"\w*, \w Joshua|strong="H3091"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w*, \w the|strong="H3068"\w* \w servant|strong="H5650"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*, \w died|strong="H4191"\w*, \w being|strong="H1961"\w* \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* \w ten|strong="H6235"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*. +\v 30 They \w buried|strong="H6912"\w* \w him|strong="H6912"\w* \w in|strong="H6912"\w* \w the|strong="H6912"\w* \w border|strong="H1366"\w* \w of|strong="H2022"\w* \w his|strong="H6912"\w* \w inheritance|strong="H5159"\w* \w in|strong="H6912"\w* Timnathserah, \w which|strong="H2022"\w* \w is|strong="H5159"\w* \w in|strong="H6912"\w* \w the|strong="H6912"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H2022"\w* Ephraim, \w on|strong="H2022"\w* \w the|strong="H6912"\w* \w north|strong="H6828"\w* \w of|strong="H2022"\w* \w the|strong="H6912"\w* \w mountain|strong="H2022"\w* \w of|strong="H2022"\w* \w Gaash|strong="H1608"\w*. +\v 31 \w Israel|strong="H3478"\w* \w served|strong="H5647"\w* \w Yahweh|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w Joshua|strong="H3091"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w who|strong="H3605"\w* outlived \w Joshua|strong="H3091"\w*, \w and|strong="H3478"\w* \w had|strong="H3068"\w* \w known|strong="H3045"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w that|strong="H3045"\w* \w he|strong="H3117"\w* \w had|strong="H3068"\w* \w worked|strong="H6213"\w* \w for|strong="H6213"\w* \w Israel|strong="H3478"\w*. +\v 32 \w They|strong="H3478"\w* \w buried|strong="H6912"\w* \w the|strong="H5927"\w* \w bones|strong="H6106"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w*, \w which|strong="H3478"\w* \w the|strong="H5927"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H5927"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w in|strong="H3478"\w* \w Shechem|strong="H7927"\w*, \w in|strong="H3478"\w* \w the|strong="H5927"\w* \w parcel|strong="H2513"\w* \w of|strong="H1121"\w* \w ground|strong="H7704"\w* \w which|strong="H3478"\w* \w Jacob|strong="H3290"\w* \w bought|strong="H7069"\w* \w from|strong="H5927"\w* \w the|strong="H5927"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Hamor|strong="H2544"\w* \w the|strong="H5927"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* \w Shechem|strong="H7927"\w* \w for|strong="H4714"\w* \w a|strong="H3068"\w* \w hundred|strong="H3967"\w* \w pieces|strong="H7192"\w* \w of|strong="H1121"\w* \w silver|strong="H7192"\w*.\f + \fr 24:32 \ft Hebrew: kesitahs. A kesitah was a kind of silver coin.\f* \w They|strong="H3478"\w* \w became|strong="H1961"\w* \w the|strong="H5927"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H5927"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w*. +\v 33 Eleazar \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w died|strong="H4191"\w*. \w They|strong="H5414"\w* \w buried|strong="H6912"\w* \w him|strong="H5414"\w* \w in|strong="H4191"\w* \w the|strong="H5414"\w* \w hill|strong="H2022"\w* \w of|strong="H1121"\w* \w Phinehas|strong="H6372"\w* \w his|strong="H5414"\w* \w son|strong="H1121"\w*, \w which|strong="H2022"\w* \w was|strong="H1121"\w* \w given|strong="H5414"\w* \w him|strong="H5414"\w* \w in|strong="H4191"\w* \w the|strong="H5414"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H1121"\w* Ephraim. \ No newline at end of file diff --git a/bibles/eng-web_usfm/08-JDGeng-web.usfm b/bibles/eng-web_usfm/08-JDGeng-web.usfm new file mode 100644 index 0000000..f08a846 --- /dev/null +++ b/bibles/eng-web_usfm/08-JDGeng-web.usfm @@ -0,0 +1,1009 @@ +\id JDG World English Bible (WEB) +\ide UTF-8 +\h Judges +\toc1 The Book of Judges +\toc2 Judges +\toc3 Jdg +\mt2 The Book of +\mt1 Judges +\c 1 +\p +\v 1 \w After|strong="H1961"\w* \w the|strong="H3068"\w* \w death|strong="H4194"\w* \w of|strong="H1121"\w* \w Joshua|strong="H3091"\w*, \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w asked|strong="H7592"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*,\f + \fr 1:1 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* saying, “\w Who|strong="H4310"\w* \w should|strong="H3068"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w for|strong="H3068"\w* \w us|strong="H1961"\w* \w first|strong="H1121"\w* \w against|strong="H3898"\w* \w the|strong="H3068"\w* \w Canaanites|strong="H3669"\w*, \w to|strong="H3478"\w* \w fight|strong="H3898"\w* \w against|strong="H3898"\w* \w them|strong="H5927"\w*?” +\p +\v 2 \w Yahweh|strong="H3068"\w* said, “\w Judah|strong="H3063"\w* \w shall|strong="H3068"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w*. \w Behold|strong="H2009"\w*,\f + \fr 1:2 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w delivered|strong="H5414"\w* \w the|strong="H5414"\w* land \w into|strong="H5927"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w*.” +\p +\v 3 \w Judah|strong="H3063"\w* said \w to|strong="H1980"\w* \w Simeon|strong="H8095"\w* \w his|strong="H1980"\w* brother, “\w Come|strong="H1980"\w* \w up|strong="H5927"\w* \w with|strong="H1980"\w* \w me|strong="H5927"\w* \w into|strong="H1980"\w* \w my|strong="H5927"\w* \w lot|strong="H1486"\w*, \w that|strong="H3669"\w* \w we|strong="H3068"\w* \w may|strong="H1571"\w* \w fight|strong="H3898"\w* \w against|strong="H3898"\w* \w the|strong="H5927"\w* \w Canaanites|strong="H3669"\w*; \w and|strong="H1980"\w* \w I|strong="H1571"\w* \w likewise|strong="H1571"\w* \w will|strong="H1571"\w* \w go|strong="H1980"\w* \w with|strong="H1980"\w* \w you|strong="H1571"\w* \w into|strong="H1980"\w* \w your|strong="H1571"\w* \w lot|strong="H1486"\w*.” \w So|strong="H1980"\w* \w Simeon|strong="H8095"\w* \w went|strong="H1980"\w* \w with|strong="H1980"\w* \w him|strong="H5927"\w*. +\v 4 \w Judah|strong="H3063"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w*, \w and|strong="H3063"\w* \w Yahweh|strong="H3068"\w* \w delivered|strong="H5414"\w* \w the|strong="H5414"\w* \w Canaanites|strong="H3669"\w* \w and|strong="H3063"\w* \w the|strong="H5414"\w* \w Perizzites|strong="H6522"\w* \w into|strong="H5927"\w* \w their|strong="H3068"\w* \w hand|strong="H3027"\w*. \w They|strong="H3068"\w* \w struck|strong="H5221"\w* \w ten|strong="H6235"\w* thousand men \w in|strong="H3068"\w* Bezek. +\v 5 \w They|strong="H5221"\w* \w found|strong="H4672"\w* Adoni-Bezek \w in|strong="H4672"\w* Bezek, \w and|strong="H5221"\w* \w they|strong="H5221"\w* \w fought|strong="H3898"\w* \w against|strong="H3898"\w* \w him|strong="H5221"\w*. \w They|strong="H5221"\w* \w struck|strong="H5221"\w* \w the|strong="H5221"\w* \w Canaanites|strong="H3669"\w* \w and|strong="H5221"\w* \w the|strong="H5221"\w* \w Perizzites|strong="H6522"\w*. +\v 6 \w But|strong="H7291"\w* Adoni-Bezek \w fled|strong="H5127"\w*. \w They|strong="H7272"\w* \w pursued|strong="H7291"\w* \w him|strong="H3027"\w*, caught \w him|strong="H3027"\w*, \w and|strong="H3027"\w* \w cut|strong="H7112"\w* \w off|strong="H7112"\w* \w his|strong="H3027"\w* thumbs \w and|strong="H3027"\w* \w his|strong="H3027"\w* big \w toes|strong="H7272"\w*. +\v 7 Adoni-Bezek \w said|strong="H3651"\w*, “\w Seventy|strong="H7657"\w* \w kings|strong="H4428"\w*, \w having|strong="H1961"\w* \w their|strong="H1961"\w* thumbs \w and|strong="H4428"\w* \w their|strong="H1961"\w* big \w toes|strong="H7272"\w* \w cut|strong="H7112"\w* \w off|strong="H7112"\w*, scavenged \w under|strong="H8478"\w* \w my|strong="H1961"\w* \w table|strong="H7979"\w*. \w As|strong="H1961"\w* \w I|strong="H3651"\w* \w have|strong="H1961"\w* \w done|strong="H6213"\w*, \w so|strong="H3651"\w* \w God|strong="H7999"\w*\f + \fr 1:7 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w has|strong="H1961"\w* \w done|strong="H6213"\w* \w to|strong="H4191"\w* \w me|strong="H6213"\w*.” \w They|strong="H3651"\w* \w brought|strong="H6213"\w* \w him|strong="H3027"\w* \w to|strong="H4191"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H4428"\w* \w he|strong="H8033"\w* \w died|strong="H4191"\w* \w there|strong="H8033"\w*. +\v 8 \w The|strong="H5221"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w fought|strong="H3898"\w* \w against|strong="H3898"\w* \w Jerusalem|strong="H3389"\w*, \w took|strong="H3920"\w* \w it|strong="H5221"\w*, \w struck|strong="H5221"\w* \w it|strong="H5221"\w* \w with|strong="H3898"\w* \w the|strong="H5221"\w* \w edge|strong="H6310"\w* \w of|strong="H1121"\w* \w the|strong="H5221"\w* \w sword|strong="H2719"\w*, \w and|strong="H1121"\w* \w set|strong="H7971"\w* \w the|strong="H5221"\w* \w city|strong="H5892"\w* \w on|strong="H7971"\w* fire. +\p +\v 9 \w After|strong="H3381"\w* \w that|strong="H1121"\w*, \w the|strong="H3427"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w fight|strong="H3898"\w* \w against|strong="H3898"\w* \w the|strong="H3427"\w* \w Canaanites|strong="H3669"\w* \w who|strong="H1121"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3427"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*, \w and|strong="H1121"\w* \w in|strong="H3427"\w* \w the|strong="H3427"\w* \w South|strong="H5045"\w*, \w and|strong="H1121"\w* \w in|strong="H3427"\w* \w the|strong="H3427"\w* \w lowland|strong="H8219"\w*. +\v 10 \w Judah|strong="H3063"\w* \w went|strong="H3212"\w* \w against|strong="H6440"\w* \w the|strong="H6440"\w* \w Canaanites|strong="H3669"\w* \w who|strong="H3427"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Hebron|strong="H2275"\w*. (\w The|strong="H6440"\w* \w name|strong="H8034"\w* \w of|strong="H3427"\w* \w Hebron|strong="H2275"\w* \w before|strong="H6440"\w* \w that|strong="H3669"\w* \w was|strong="H8034"\w* Kiriath Arba.) \w They|strong="H5221"\w* \w struck|strong="H5221"\w* \w Sheshai|strong="H8344"\w*, Ahiman, \w and|strong="H3063"\w* \w Talmai|strong="H8526"\w*. +\p +\v 11 \w From|strong="H6440"\w* \w there|strong="H8033"\w* \w he|strong="H8033"\w* \w went|strong="H3212"\w* \w against|strong="H6440"\w* \w the|strong="H6440"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Debir|strong="H1688"\w*. (\w The|strong="H6440"\w* \w name|strong="H8034"\w* \w of|strong="H3427"\w* \w Debir|strong="H1688"\w* \w before|strong="H6440"\w* \w that|strong="H3212"\w* \w was|strong="H8034"\w* Kiriath Sepher.) +\v 12 \w Caleb|strong="H3612"\w* said, “\w I|strong="H5414"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w Achsah|strong="H5915"\w* \w my|strong="H5414"\w* \w daughter|strong="H1323"\w* \w as|strong="H5414"\w* wife \w to|strong="H5414"\w* \w the|strong="H5414"\w* man \w who|strong="H1323"\w* \w strikes|strong="H5221"\w* Kiriath Sepher, \w and|strong="H1323"\w* \w takes|strong="H3920"\w* \w it|strong="H5414"\w*.” +\v 13 \w Othniel|strong="H6274"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kenaz|strong="H7073"\w*, \w Caleb|strong="H3612"\w*’s \w younger|strong="H6996"\w* brother, \w took|strong="H3920"\w* \w it|strong="H5414"\w*, \w so|strong="H4480"\w* \w he|strong="H5414"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w Achsah|strong="H5915"\w* \w his|strong="H5414"\w* \w daughter|strong="H1323"\w* \w as|strong="H1121"\w* \w his|strong="H5414"\w* wife. +\p +\v 14 \w When|strong="H1961"\w* \w she|strong="H5921"\w* \w came|strong="H1961"\w*, \w she|strong="H5921"\w* got \w him|strong="H5921"\w* \w to|strong="H1961"\w* \w ask|strong="H7592"\w* \w her|strong="H5921"\w* father \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w field|strong="H7704"\w*. \w She|strong="H5921"\w* got \w off|strong="H5921"\w* \w her|strong="H5921"\w* \w donkey|strong="H2543"\w*; \w and|strong="H7704"\w* \w Caleb|strong="H3612"\w* said \w to|strong="H1961"\w* \w her|strong="H5921"\w*, “\w What|strong="H4100"\w* \w would|strong="H4100"\w* \w you|strong="H5921"\w* \w like|strong="H1961"\w*?” +\p +\v 15 \w She|strong="H3588"\w* said \w to|strong="H5414"\w* \w him|strong="H5414"\w*, “\w Give|strong="H5414"\w* \w me|strong="H5414"\w* \w a|strong="H3068"\w* \w blessing|strong="H1293"\w*; \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H5414"\w* \w set|strong="H5414"\w* \w me|strong="H5414"\w* \w in|strong="H5414"\w* \w the|strong="H3588"\w* land \w of|strong="H4325"\w* \w the|strong="H3588"\w* \w South|strong="H5045"\w*, \w give|strong="H5414"\w* \w me|strong="H5414"\w* \w also|strong="H3588"\w* \w springs|strong="H1543"\w* \w of|strong="H4325"\w* \w water|strong="H4325"\w*.” \w Then|strong="H5414"\w* \w Caleb|strong="H3612"\w* \w gave|strong="H5414"\w* \w her|strong="H5414"\w* \w the|strong="H3588"\w* \w upper|strong="H5942"\w* \w springs|strong="H1543"\w* \w and|strong="H4325"\w* \w the|strong="H3588"\w* \w lower|strong="H8482"\w* \w springs|strong="H1543"\w*. +\v 16 \w The|strong="H5927"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5927"\w* \w Kenite|strong="H7017"\w*, \w Moses|strong="H4872"\w*’ brother-in-law, \w went|strong="H3212"\w* \w up|strong="H5927"\w* \w out|strong="H3212"\w* \w of|strong="H1121"\w* \w the|strong="H5927"\w* \w city|strong="H5892"\w* \w of|strong="H1121"\w* \w palm|strong="H8558"\w* \w trees|strong="H8558"\w* \w with|strong="H3427"\w* \w the|strong="H5927"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w into|strong="H5927"\w* \w the|strong="H5927"\w* \w wilderness|strong="H4057"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w which|strong="H5971"\w* \w is|strong="H5892"\w* \w in|strong="H3427"\w* \w the|strong="H5927"\w* \w south|strong="H5045"\w* \w of|strong="H1121"\w* \w Arad|strong="H6166"\w*; \w and|strong="H1121"\w* \w they|strong="H5971"\w* \w went|strong="H3212"\w* \w and|strong="H1121"\w* \w lived|strong="H3427"\w* \w with|strong="H3427"\w* \w the|strong="H5927"\w* \w people|strong="H5971"\w*. +\v 17 \w Judah|strong="H3063"\w* \w went|strong="H3212"\w* \w with|strong="H3427"\w* \w Simeon|strong="H8095"\w* \w his|strong="H7121"\w* brother, \w and|strong="H3063"\w* \w they|strong="H2763"\w* \w struck|strong="H5221"\w* \w the|strong="H5221"\w* \w Canaanites|strong="H3669"\w* \w who|strong="H3427"\w* \w inhabited|strong="H3427"\w* \w Zephath|strong="H6857"\w*, \w and|strong="H3063"\w* \w utterly|strong="H2763"\w* \w destroyed|strong="H2763"\w* \w it|strong="H7121"\w*. \w The|strong="H5221"\w* \w name|strong="H8034"\w* \w of|strong="H3427"\w* \w the|strong="H5221"\w* \w city|strong="H5892"\w* \w was|strong="H8034"\w* \w called|strong="H7121"\w* \w Hormah|strong="H2767"\w*. +\v 18 \w Also|strong="H5804"\w* \w Judah|strong="H3063"\w* \w took|strong="H3920"\w* \w Gaza|strong="H5804"\w* \w with|strong="H1366"\w* \w its|strong="H3920"\w* \w border|strong="H1366"\w*, \w and|strong="H3063"\w* Ashkelon \w with|strong="H1366"\w* \w its|strong="H3920"\w* \w border|strong="H1366"\w*, \w and|strong="H3063"\w* \w Ekron|strong="H6138"\w* \w with|strong="H1366"\w* \w its|strong="H3920"\w* \w border|strong="H1366"\w*. +\v 19 \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w with|strong="H3068"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w drove|strong="H3423"\w* \w out|strong="H3423"\w* \w the|strong="H3588"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* could \w not|strong="H3808"\w* \w drive|strong="H3423"\w* \w out|strong="H3423"\w* \w the|strong="H3588"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w valley|strong="H6010"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3068"\w* \w chariots|strong="H7393"\w* \w of|strong="H3068"\w* \w iron|strong="H1270"\w*. +\v 20 \w They|strong="H8033"\w* \w gave|strong="H5414"\w* \w Hebron|strong="H2275"\w* \w to|strong="H1696"\w* \w Caleb|strong="H3612"\w*, \w as|strong="H1121"\w* \w Moses|strong="H4872"\w* \w had|strong="H4872"\w* \w said|strong="H1696"\w*, \w and|strong="H1121"\w* \w he|strong="H8033"\w* \w drove|strong="H3423"\w* \w the|strong="H5414"\w* \w three|strong="H7969"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Anak \w out|strong="H3423"\w* \w of|strong="H1121"\w* \w there|strong="H8033"\w*. +\v 21 \w The|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* didn’t \w drive|strong="H3423"\w* \w out|strong="H3423"\w* \w the|strong="H3117"\w* \w Jebusites|strong="H2983"\w* \w who|strong="H1121"\w* \w inhabited|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*, \w but|strong="H3808"\w* \w the|strong="H3117"\w* \w Jebusites|strong="H2983"\w* \w dwell|strong="H3427"\w* \w with|strong="H3427"\w* \w the|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\p +\v 22 \w The|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Joseph|strong="H3130"\w* \w also|strong="H1571"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5973"\w* \w Bethel|strong="H1008"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w with|strong="H5973"\w* \w them|strong="H1992"\w*. +\v 23 \w The|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Joseph|strong="H3130"\w* sent \w to|strong="H6440"\w* \w spy|strong="H8446"\w* \w out|strong="H8446"\w* \w Bethel|strong="H1008"\w*. (\w The|strong="H6440"\w* \w name|strong="H8034"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w* \w before|strong="H6440"\w* \w that|strong="H5892"\w* \w was|strong="H8034"\w* \w Luz|strong="H3870"\w*.) +\v 24 \w The|strong="H7200"\w* watchers \w saw|strong="H7200"\w* \w a|strong="H3068"\w* \w man|strong="H7200"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H5892"\w* \w the|strong="H7200"\w* \w city|strong="H5892"\w*, \w and|strong="H5892"\w* \w they|strong="H6213"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H6213"\w*, “\w Please|strong="H4994"\w* \w show|strong="H7200"\w* \w us|strong="H4994"\w* \w the|strong="H7200"\w* \w entrance|strong="H3996"\w* \w into|strong="H6213"\w* \w the|strong="H7200"\w* \w city|strong="H5892"\w*, \w and|strong="H5892"\w* \w we|strong="H3068"\w* \w will|strong="H5892"\w* \w deal|strong="H6213"\w* \w kindly|strong="H2617"\w* \w with|strong="H5973"\w* \w you|strong="H6213"\w*.” +\v 25 \w He|strong="H3605"\w* \w showed|strong="H7200"\w* \w them|strong="H7971"\w* \w the|strong="H3605"\w* \w entrance|strong="H3996"\w* \w into|strong="H2719"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w and|strong="H7971"\w* \w they|strong="H6310"\w* \w struck|strong="H5221"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w with|strong="H5892"\w* \w the|strong="H3605"\w* \w edge|strong="H6310"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*; \w but|strong="H7200"\w* \w they|strong="H6310"\w* \w let|strong="H7971"\w* \w the|strong="H3605"\w* \w man|strong="H3605"\w* \w and|strong="H7971"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w family|strong="H4940"\w* \w go|strong="H7971"\w*. +\v 26 \w The|strong="H3117"\w* \w man|strong="H2088"\w* \w went|strong="H3212"\w* \w into|strong="H3212"\w* \w the|strong="H3117"\w* land \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w Hittites|strong="H2850"\w*, \w built|strong="H1129"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w*, \w and|strong="H3117"\w* \w called|strong="H7121"\w* \w its|strong="H5892"\w* \w name|strong="H8034"\w* \w Luz|strong="H3870"\w*, \w which|strong="H1931"\w* \w is|strong="H2088"\w* \w its|strong="H5892"\w* \w name|strong="H8034"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\p +\v 27 \w Manasseh|strong="H4519"\w* didn’t \w drive|strong="H3423"\w* \w out|strong="H3423"\w* \w the|strong="H3423"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1323"\w* Beth Shean \w and|strong="H3427"\w* \w its|strong="H3808"\w* \w towns|strong="H1323"\w*, \w nor|strong="H3808"\w* \w Taanach|strong="H8590"\w* \w and|strong="H3427"\w* \w its|strong="H3808"\w* \w towns|strong="H1323"\w*, \w nor|strong="H3808"\w* \w the|strong="H3423"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1323"\w* \w Dor|strong="H1756"\w* \w and|strong="H3427"\w* \w its|strong="H3808"\w* \w towns|strong="H1323"\w*, \w nor|strong="H3808"\w* \w the|strong="H3423"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1323"\w* \w Ibleam|strong="H2991"\w* \w and|strong="H3427"\w* \w its|strong="H3808"\w* \w towns|strong="H1323"\w*, \w nor|strong="H3808"\w* \w the|strong="H3423"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1323"\w* \w Megiddo|strong="H4023"\w* \w and|strong="H3427"\w* \w its|strong="H3808"\w* \w towns|strong="H1323"\w*; \w but|strong="H3808"\w* \w the|strong="H3423"\w* \w Canaanites|strong="H3669"\w* \w would|strong="H2974"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w that|strong="H3669"\w* land. +\v 28 \w When|strong="H3588"\w* \w Israel|strong="H3478"\w* \w had|strong="H1961"\w* \w grown|strong="H1961"\w* \w strong|strong="H2388"\w*, \w they|strong="H3588"\w* \w put|strong="H7760"\w* \w the|strong="H3588"\w* \w Canaanites|strong="H3669"\w* \w to|strong="H3478"\w* \w forced|strong="H4522"\w* \w labor|strong="H4522"\w*, \w and|strong="H3478"\w* didn’t \w utterly|strong="H3423"\w* \w drive|strong="H3423"\w* \w them|strong="H7760"\w* \w out|strong="H3423"\w*. +\v 29 Ephraim didn’t \w drive|strong="H3423"\w* \w out|strong="H3423"\w* \w the|strong="H3423"\w* \w Canaanites|strong="H3669"\w* \w who|strong="H3427"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Gezer|strong="H1507"\w*, \w but|strong="H3808"\w* \w the|strong="H3423"\w* \w Canaanites|strong="H3669"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Gezer|strong="H1507"\w* \w among|strong="H7130"\w* \w them|strong="H3423"\w*. +\v 30 \w Zebulun|strong="H2074"\w* didn’t \w drive|strong="H3423"\w* \w out|strong="H3423"\w* \w the|strong="H3423"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Kitron|strong="H7003"\w*, \w nor|strong="H3808"\w* \w the|strong="H3423"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Nahalol|strong="H5096"\w*; \w but|strong="H3808"\w* \w the|strong="H3423"\w* \w Canaanites|strong="H3669"\w* \w lived|strong="H3427"\w* \w among|strong="H7130"\w* \w them|strong="H3423"\w*, \w and|strong="H3427"\w* \w became|strong="H1961"\w* subject \w to|strong="H1961"\w* \w forced|strong="H4522"\w* \w labor|strong="H4522"\w*. +\v 31 Asher didn’t \w drive|strong="H3423"\w* \w out|strong="H3423"\w* \w the|strong="H3423"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Acco|strong="H5910"\w*, \w nor|strong="H3808"\w* \w the|strong="H3423"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Sidon|strong="H6721"\w*, \w nor|strong="H3808"\w* \w of|strong="H3427"\w* Ahlab, \w nor|strong="H3808"\w* \w of|strong="H3427"\w* Achzib, \w nor|strong="H3808"\w* \w of|strong="H3427"\w* \w Helbah|strong="H2462"\w*, \w nor|strong="H3808"\w* \w of|strong="H3427"\w* Aphik, \w nor|strong="H3808"\w* \w of|strong="H3427"\w* \w Rehob|strong="H7340"\w*; +\v 32 \w but|strong="H3588"\w* \w the|strong="H3588"\w* Asherites \w lived|strong="H3427"\w* \w among|strong="H7130"\w* \w the|strong="H3588"\w* \w Canaanites|strong="H3669"\w*, \w the|strong="H3588"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H3588"\w* \w land|strong="H7130"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* didn’t \w drive|strong="H3423"\w* \w them|strong="H3423"\w* \w out|strong="H3423"\w*. +\v 33 \w Naphtali|strong="H5321"\w* didn’t \w drive|strong="H3423"\w* \w out|strong="H3423"\w* \w the|strong="H3423"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* Beth Shemesh, \w nor|strong="H3808"\w* \w the|strong="H3423"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* Beth Anath; \w but|strong="H3808"\w* \w he|strong="H3808"\w* \w lived|strong="H3427"\w* \w among|strong="H7130"\w* \w the|strong="H3423"\w* \w Canaanites|strong="H3669"\w*, \w the|strong="H3423"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H3423"\w* \w land|strong="H7130"\w*. Nevertheless \w the|strong="H3423"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* Beth Shemesh \w and|strong="H3427"\w* \w of|strong="H3427"\w* Beth Anath \w became|strong="H1961"\w* subject \w to|strong="H1961"\w* \w forced|strong="H4522"\w* \w labor|strong="H4522"\w*. +\v 34 \w The|strong="H3588"\w* Amorites \w forced|strong="H3905"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w* \w into|strong="H3381"\w* \w the|strong="H3588"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* would \w not|strong="H3808"\w* \w allow|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H3381"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3588"\w* \w valley|strong="H6010"\w*; +\v 35 \w but|strong="H1961"\w* \w the|strong="H1961"\w* Amorites \w would|strong="H2974"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w Mount|strong="H2022"\w* \w Heres|strong="H2776"\w*, \w in|strong="H3427"\w* Aijalon, \w and|strong="H3027"\w* \w in|strong="H3427"\w* \w Shaalbim|strong="H8169"\w*. Yet \w the|strong="H1961"\w* \w hand|strong="H3027"\w* \w of|strong="H1004"\w* \w the|strong="H1961"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Joseph|strong="H3130"\w* \w prevailed|strong="H3513"\w*, \w so|strong="H1961"\w* \w that|strong="H2022"\w* \w they|strong="H3027"\w* \w became|strong="H1961"\w* subject \w to|strong="H1961"\w* \w forced|strong="H4522"\w* \w labor|strong="H4522"\w*. +\v 36 \w The|strong="H4605"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w the|strong="H4605"\w* Amorites \w was|strong="H1366"\w* \w from|strong="H1366"\w* \w the|strong="H4605"\w* \w ascent|strong="H4610"\w* \w of|strong="H1366"\w* \w Akrabbim|strong="H4610"\w*, \w from|strong="H1366"\w* \w the|strong="H4605"\w* \w rock|strong="H5553"\w*, \w and|strong="H4605"\w* \w upward|strong="H4605"\w*. +\c 2 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H4480"\w* \w Gilgal|strong="H1537"\w* \w to|strong="H3068"\w* \w Bochim|strong="H1066"\w*. \w He|strong="H3068"\w* said, “\w I|strong="H4714"\w* \w brought|strong="H5927"\w* \w you|strong="H3808"\w* \w out|strong="H4480"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w brought|strong="H5927"\w* \w you|strong="H3808"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* land \w which|strong="H3068"\w* \w I|strong="H4714"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* \w give|strong="H5927"\w* \w your|strong="H3068"\w* fathers. \w I|strong="H4714"\w* said, ‘\w I|strong="H4714"\w* \w will|strong="H3068"\w* \w never|strong="H3808"\w* \w break|strong="H6565"\w* \w my|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H3068"\w* \w you|strong="H3808"\w*. +\v 2 \w You|strong="H6213"\w* \w shall|strong="H3808"\w* \w make|strong="H6213"\w* \w no|strong="H3808"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w the|strong="H8085"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w this|strong="H2063"\w* land. \w You|strong="H6213"\w* \w shall|strong="H3808"\w* \w break|strong="H5422"\w* \w down|strong="H5422"\w* \w their|strong="H8085"\w* \w altars|strong="H4196"\w*.’ \w But|strong="H3808"\w* \w you|strong="H6213"\w* \w have|strong="H3808"\w* \w not|strong="H3808"\w* \w listened|strong="H8085"\w* \w to|strong="H6213"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*. \w Why|strong="H4100"\w* \w have|strong="H3808"\w* \w you|strong="H6213"\w* \w done|strong="H6213"\w* \w this|strong="H2063"\w*? +\v 3 \w Therefore|strong="H1571"\w* \w I|strong="H3808"\w* \w also|strong="H1571"\w* said, ‘\w I|strong="H3808"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w drive|strong="H1644"\w* \w them|strong="H6440"\w* \w out|strong="H1644"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*; \w but|strong="H3808"\w* \w they|strong="H3808"\w* \w shall|strong="H3808"\w* \w be|strong="H1961"\w* \w in|strong="H6440"\w* \w your|strong="H6440"\w* \w sides|strong="H6654"\w*, \w and|strong="H6440"\w* \w their|strong="H6440"\w* gods \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w snare|strong="H4170"\w* \w to|strong="H1961"\w* \w you|strong="H6440"\w*.’” +\p +\v 4 \w When|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w spoke|strong="H1696"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w their|strong="H3605"\w* \w voice|strong="H6963"\w* \w and|strong="H1121"\w* \w wept|strong="H1058"\w*. +\v 5 \w They|strong="H8033"\w* \w called|strong="H7121"\w* \w the|strong="H3068"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w that|strong="H1931"\w* \w place|strong="H4725"\w* \w Bochim|strong="H1066"\w*,\f + \fr 2:5 \ft “Bochim” means “weepers”.\f* \w and|strong="H3068"\w* \w they|strong="H8033"\w* \w sacrificed|strong="H2076"\w* \w there|strong="H8033"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 6 \w Now|strong="H3478"\w* \w when|strong="H7971"\w* \w Joshua|strong="H3091"\w* \w had|strong="H3478"\w* \w sent|strong="H7971"\w* \w the|strong="H3423"\w* \w people|strong="H5971"\w* \w away|strong="H7971"\w*, \w the|strong="H3423"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w each|strong="H5971"\w* \w went|strong="H3212"\w* \w to|strong="H3478"\w* \w his|strong="H7971"\w* \w inheritance|strong="H5159"\w* \w to|strong="H3478"\w* \w possess|strong="H3423"\w* \w the|strong="H3423"\w* \w land|strong="H5159"\w*. +\v 7 \w The|strong="H3605"\w* \w people|strong="H5971"\w* \w served|strong="H5647"\w* \w Yahweh|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w Joshua|strong="H3091"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w who|strong="H3605"\w* outlived \w Joshua|strong="H3091"\w*, \w who|strong="H3605"\w* \w had|strong="H3068"\w* \w seen|strong="H7200"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w great|strong="H1419"\w* \w work|strong="H4639"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w that|strong="H5971"\w* \w he|strong="H3117"\w* \w had|strong="H3068"\w* \w worked|strong="H6213"\w* \w for|strong="H6213"\w* \w Israel|strong="H3478"\w*. +\v 8 \w Joshua|strong="H3091"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w*, \w the|strong="H3068"\w* \w servant|strong="H5650"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*, \w died|strong="H4191"\w*, \w being|strong="H1121"\w* \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* \w ten|strong="H6235"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*. +\v 9 They \w buried|strong="H6912"\w* \w him|strong="H6912"\w* \w in|strong="H6912"\w* \w the|strong="H6912"\w* \w border|strong="H1366"\w* \w of|strong="H2022"\w* \w his|strong="H6912"\w* \w inheritance|strong="H5159"\w* \w in|strong="H6912"\w* Timnath Heres, \w in|strong="H6912"\w* \w the|strong="H6912"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H2022"\w* Ephraim, \w on|strong="H2022"\w* \w the|strong="H6912"\w* \w north|strong="H6828"\w* \w of|strong="H2022"\w* \w the|strong="H6912"\w* \w mountain|strong="H2022"\w* \w of|strong="H2022"\w* \w Gaash|strong="H1608"\w*. +\v 10 \w After|strong="H6965"\w* \w all|strong="H3605"\w* \w that|strong="H3045"\w* \w generation|strong="H1755"\w* \w were|strong="H3478"\w* \w gathered|strong="H6213"\w* \w to|strong="H3478"\w* \w their|strong="H3605"\w* fathers, \w another|strong="H1571"\w* \w generation|strong="H1755"\w* \w arose|strong="H6965"\w* \w after|strong="H6965"\w* \w them|strong="H6213"\w* \w who|strong="H3605"\w* didn’t \w know|strong="H3045"\w* \w Yahweh|strong="H3068"\w*, \w nor|strong="H3808"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w had|strong="H3068"\w* \w done|strong="H6213"\w* \w for|strong="H6213"\w* \w Israel|strong="H3478"\w*. +\v 11 \w The|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w and|strong="H1121"\w* \w served|strong="H5647"\w* \w the|strong="H6213"\w* \w Baals|strong="H1168"\w*. +\v 12 \w They|strong="H3068"\w* \w abandoned|strong="H5800"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* fathers, \w who|strong="H5971"\w* \w brought|strong="H3318"\w* \w them|strong="H5439"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H3068"\w* \w followed|strong="H3212"\w* other gods, \w of|strong="H3068"\w* \w the|strong="H3068"\w* gods \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w peoples|strong="H5971"\w* \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w around|strong="H5439"\w* \w them|strong="H5439"\w*, \w and|strong="H3068"\w* \w bowed|strong="H7812"\w* \w themselves|strong="H7812"\w* \w down|strong="H7812"\w* \w to|strong="H3318"\w* \w them|strong="H5439"\w*; \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w provoked|strong="H3707"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3318"\w* \w anger|strong="H3707"\w*. +\v 13 \w They|strong="H3068"\w* \w abandoned|strong="H5800"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w served|strong="H5647"\w* \w Baal|strong="H1168"\w* \w and|strong="H3068"\w* \w the|strong="H5647"\w* \w Ashtaroth|strong="H6252"\w*. +\v 14 \w Yahweh|strong="H3068"\w*’s \w anger|strong="H6440"\w* \w burned|strong="H2734"\w* \w against|strong="H2734"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w he|strong="H3068"\w* \w delivered|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H6440"\w* \w hands|strong="H3027"\w* \w of|strong="H3068"\w* raiders \w who|strong="H3068"\w* \w plundered|strong="H8155"\w* \w them|strong="H5414"\w*. \w He|strong="H3068"\w* \w sold|strong="H4376"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H6440"\w* \w hands|strong="H3027"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w enemies|strong="H3027"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*, \w so|strong="H5414"\w* \w that|strong="H3068"\w* \w they|strong="H3068"\w* \w could|strong="H3201"\w* \w no|strong="H3808"\w* \w longer|strong="H5750"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w their|strong="H3068"\w* \w enemies|strong="H3027"\w*. +\v 15 \w Wherever|strong="H3605"\w* \w they|strong="H3068"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*, \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w was|strong="H3068"\w* \w against|strong="H1696"\w* \w them|strong="H3027"\w* \w for|strong="H3027"\w* \w evil|strong="H7451"\w*, \w as|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w spoken|strong="H1696"\w*, \w and|strong="H3068"\w* \w as|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w sworn|strong="H7650"\w* \w to|strong="H1696"\w* \w them|strong="H3027"\w*; \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w were|strong="H1961"\w* \w very|strong="H3966"\w* \w distressed|strong="H3334"\w*. +\v 16 \w Yahweh|strong="H3068"\w* \w raised|strong="H6965"\w* \w up|strong="H6965"\w* \w judges|strong="H8199"\w*, \w who|strong="H3068"\w* \w saved|strong="H3467"\w* \w them|strong="H3027"\w* \w out|strong="H6965"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w those|strong="H3467"\w* \w who|strong="H3068"\w* \w plundered|strong="H8154"\w* \w them|strong="H3027"\w*. +\v 17 \w Yet|strong="H3588"\w* \w they|strong="H3588"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H1980"\w* \w their|strong="H3068"\w* \w judges|strong="H8199"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w prostituted|strong="H2181"\w* \w themselves|strong="H7812"\w* \w to|strong="H1980"\w* other \w gods|strong="H1980"\w*, \w and|strong="H1980"\w* \w bowed|strong="H7812"\w* \w themselves|strong="H7812"\w* \w down|strong="H7812"\w* \w to|strong="H1980"\w* \w them|strong="H6213"\w*. \w They|strong="H3588"\w* \w quickly|strong="H4118"\w* \w turned|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H4480"\w* \w the|strong="H8085"\w* \w way|strong="H1870"\w* \w in|strong="H1980"\w* \w which|strong="H3068"\w* \w their|strong="H3068"\w* fathers \w walked|strong="H1980"\w*, \w obeying|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w commandments|strong="H4687"\w*. \w They|strong="H3588"\w* didn’t \w do|strong="H6213"\w* \w so|strong="H3651"\w*. +\v 18 \w When|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w raised|strong="H6965"\w* \w up|strong="H6965"\w* \w judges|strong="H8199"\w* \w for|strong="H3588"\w* \w them|strong="H6440"\w*, \w then|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w judge|strong="H8199"\w*, \w and|strong="H6965"\w* \w saved|strong="H3467"\w* \w them|strong="H6440"\w* \w out|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w their|strong="H3605"\w* \w enemies|strong="H6965"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w judge|strong="H8199"\w*; \w for|strong="H3588"\w* \w it|strong="H3588"\w* grieved \w Yahweh|strong="H3068"\w* \w because|strong="H3588"\w* \w of|strong="H3068"\w* \w their|strong="H3605"\w* \w groaning|strong="H5009"\w* \w by|strong="H3027"\w* \w reason|strong="H6440"\w* \w of|strong="H3068"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w oppressed|strong="H3905"\w* \w them|strong="H6440"\w* \w and|strong="H6965"\w* troubled \w them|strong="H6440"\w*. +\v 19 \w But|strong="H3808"\w* \w when|strong="H1961"\w* \w the|strong="H5647"\w* \w judge|strong="H8199"\w* \w was|strong="H1961"\w* \w dead|strong="H4191"\w*, \w they|strong="H3808"\w* \w turned|strong="H7725"\w* \w back|strong="H7725"\w*, \w and|strong="H7725"\w* dealt \w more|strong="H3808"\w* \w corruptly|strong="H7843"\w* \w than|strong="H3808"\w* \w their|strong="H7725"\w* fathers \w in|strong="H4191"\w* \w following|strong="H3212"\w* other gods \w to|strong="H7725"\w* \w serve|strong="H5647"\w* \w them|strong="H7725"\w* \w and|strong="H7725"\w* \w to|strong="H7725"\w* \w bow|strong="H7812"\w* \w down|strong="H5307"\w* \w to|strong="H7725"\w* \w them|strong="H7725"\w*. \w They|strong="H3808"\w* didn’t \w cease|strong="H7725"\w* \w what|strong="H1870"\w* \w they|strong="H3808"\w* \w were|strong="H1961"\w* \w doing|strong="H1870"\w*, \w or|strong="H3808"\w* \w give|strong="H7725"\w* \w up|strong="H3212"\w* \w their|strong="H7725"\w* \w stubborn|strong="H7186"\w* \w ways|strong="H1870"\w*. +\v 20 \w Yahweh|strong="H3068"\w*’s \w anger|strong="H5674"\w* \w burned|strong="H2734"\w* \w against|strong="H2734"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w he|strong="H3068"\w* \w said|strong="H8085"\w*, “\w Because|strong="H3282"\w* \w this|strong="H2088"\w* \w nation|strong="H1471"\w* \w transgressed|strong="H5674"\w* \w my|strong="H8085"\w* \w covenant|strong="H1285"\w* \w which|strong="H3068"\w* \w I|strong="H6680"\w* \w commanded|strong="H6680"\w* \w their|strong="H3068"\w* fathers, \w and|strong="H3478"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w listened|strong="H8085"\w* \w to|strong="H3478"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*, +\v 21 \w I|strong="H3808"\w* \w also|strong="H1571"\w* \w will|strong="H1471"\w* \w no|strong="H3808"\w* \w longer|strong="H3254"\w* \w drive|strong="H3423"\w* \w out|strong="H3423"\w* \w any|strong="H4480"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w nations|strong="H1471"\w* \w that|strong="H1471"\w* \w Joshua|strong="H3091"\w* \w left|strong="H5800"\w* \w when|strong="H4480"\w* \w he|strong="H4480"\w* \w died|strong="H4191"\w* \w from|strong="H4480"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*; +\v 22 \w that|strong="H3068"\w* \w by|strong="H3068"\w* \w them|strong="H1992"\w* \w I|strong="H3808"\w* \w may|strong="H3068"\w* \w test|strong="H5254"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* see if \w they|strong="H1992"\w* \w will|strong="H3068"\w* \w keep|strong="H8104"\w* \w Yahweh|strong="H3068"\w*’s \w way|strong="H1870"\w* \w to|strong="H3478"\w* \w walk|strong="H3212"\w* therein, \w as|strong="H3068"\w* \w their|strong="H3068"\w* fathers \w kept|strong="H8104"\w* \w it|strong="H3808"\w*, \w or|strong="H3808"\w* \w not|strong="H3808"\w*.” +\v 23 \w So|strong="H5414"\w* \w Yahweh|strong="H3068"\w* \w left|strong="H3240"\w* \w those|strong="H3240"\w* \w nations|strong="H1471"\w*, \w without|strong="H3808"\w* \w driving|strong="H3423"\w* \w them|strong="H5414"\w* \w out|strong="H3423"\w* \w hastily|strong="H4118"\w*. \w He|strong="H3068"\w* didn’t \w deliver|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w Joshua|strong="H3091"\w*’s \w hand|strong="H3027"\w*. +\c 3 +\p +\v 1 \w Now|strong="H3478"\w* \w these|strong="H3605"\w* \w are|strong="H1471"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w left|strong="H3240"\w*, \w to|strong="H3478"\w* \w test|strong="H5254"\w* \w Israel|strong="H3478"\w* \w by|strong="H3068"\w* \w them|strong="H3068"\w*, \w even|strong="H3808"\w* \w as|strong="H3068"\w* \w many|strong="H3808"\w* \w as|strong="H3068"\w* \w had|strong="H3068"\w* \w not|strong="H3808"\w* \w known|strong="H3045"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w wars|strong="H4421"\w* \w of|strong="H3068"\w* \w Canaan|strong="H3667"\w*; +\v 2 \w only|strong="H7535"\w* \w that|strong="H3045"\w* \w the|strong="H6440"\w* \w generations|strong="H1755"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w might|strong="H4616"\w* \w know|strong="H3045"\w*, \w to|strong="H3478"\w* \w teach|strong="H3925"\w* \w them|strong="H6440"\w* \w war|strong="H4421"\w*, \w at|strong="H3478"\w* least \w those|strong="H1121"\w* \w who|strong="H1121"\w* \w knew|strong="H3045"\w* \w nothing|strong="H3808"\w* \w of|strong="H1121"\w* \w it|strong="H3045"\w* \w before|strong="H6440"\w*: +\v 3 \w the|strong="H3605"\w* \w five|strong="H2568"\w* \w lords|strong="H5633"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Canaanites|strong="H3669"\w*, \w the|strong="H3605"\w* \w Sidonians|strong="H6722"\w*, \w and|strong="H2568"\w* \w the|strong="H3605"\w* \w Hivites|strong="H2340"\w* \w who|strong="H3605"\w* \w lived|strong="H3427"\w* \w on|strong="H3427"\w* \w Mount|strong="H2022"\w* \w Lebanon|strong="H3844"\w*, \w from|strong="H5704"\w* \w Mount|strong="H2022"\w* Baal Hermon \w to|strong="H5704"\w* \w the|strong="H3605"\w* entrance \w of|strong="H3427"\w* \w Hamath|strong="H2574"\w*. +\v 4 \w They|strong="H3068"\w* \w were|strong="H3478"\w* \w left|strong="H1961"\w* \w to|strong="H3478"\w* \w test|strong="H5254"\w* \w Israel|strong="H3478"\w* \w by|strong="H3027"\w* \w them|strong="H3027"\w*, \w to|strong="H3478"\w* \w know|strong="H3045"\w* \w whether|strong="H3045"\w* \w they|strong="H3068"\w* \w would|strong="H3068"\w* \w listen|strong="H8085"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w commandments|strong="H4687"\w*, \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w commanded|strong="H6680"\w* \w their|strong="H3068"\w* fathers \w by|strong="H3027"\w* \w Moses|strong="H4872"\w*. +\v 5 \w The|strong="H7130"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w lived|strong="H3427"\w* \w among|strong="H7130"\w* \w the|strong="H7130"\w* \w Canaanites|strong="H3669"\w*, \w the|strong="H7130"\w* \w Hittites|strong="H2850"\w*, \w the|strong="H7130"\w* Amorites, \w the|strong="H7130"\w* \w Perizzites|strong="H6522"\w*, \w the|strong="H7130"\w* \w Hivites|strong="H2340"\w*, \w and|strong="H1121"\w* \w the|strong="H7130"\w* \w Jebusites|strong="H2983"\w*. +\v 6 \w They|strong="H1992"\w* \w took|strong="H3947"\w* \w their|strong="H5414"\w* \w daughters|strong="H1323"\w* \w to|strong="H5414"\w* \w be|strong="H1121"\w* \w their|strong="H5414"\w* wives, \w and|strong="H1121"\w* \w gave|strong="H5414"\w* \w their|strong="H5414"\w* own \w daughters|strong="H1323"\w* \w to|strong="H5414"\w* \w their|strong="H5414"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w served|strong="H5647"\w* \w their|strong="H5414"\w* gods. +\v 7 \w The|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w and|strong="H1121"\w* \w forgot|strong="H7911"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H1121"\w* \w served|strong="H5647"\w* \w the|strong="H6213"\w* \w Baals|strong="H1168"\w* \w and|strong="H1121"\w* \w the|strong="H6213"\w* Asheroth. +\v 8 \w Therefore|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s anger \w burned|strong="H2734"\w* \w against|strong="H2734"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w he|strong="H3068"\w* \w sold|strong="H4376"\w* \w them|strong="H3027"\w* \w into|strong="H3027"\w* \w the|strong="H5647"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* Cushan Rishathaim \w king|strong="H4428"\w* \w of|strong="H1121"\w* Mesopotamia; \w and|strong="H1121"\w* \w the|strong="H5647"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w served|strong="H5647"\w* Cushan Rishathaim \w eight|strong="H8083"\w* \w years|strong="H8141"\w*. +\v 9 \w When|strong="H3068"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w cried|strong="H2199"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w Yahweh|strong="H3068"\w* \w raised|strong="H6965"\w* \w up|strong="H6965"\w* \w a|strong="H3068"\w* \w savior|strong="H3467"\w* \w to|strong="H3478"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w who|strong="H3068"\w* \w saved|strong="H3467"\w* \w them|strong="H1121"\w*, \w even|strong="H3068"\w* \w Othniel|strong="H6274"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kenaz|strong="H7073"\w*, \w Caleb|strong="H3612"\w*’s \w younger|strong="H6996"\w* brother. +\v 10 \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w* \w came|strong="H1961"\w* \w on|strong="H5921"\w* \w him|strong="H5414"\w*, \w and|strong="H3478"\w* \w he|strong="H3068"\w* \w judged|strong="H8199"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w he|strong="H3068"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w war|strong="H4421"\w*, \w and|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w delivered|strong="H5414"\w* Cushan Rishathaim \w king|strong="H4428"\w* \w of|strong="H4428"\w* Mesopotamia \w into|strong="H8199"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w*. \w His|strong="H5414"\w* \w hand|strong="H3027"\w* \w prevailed|strong="H5810"\w* \w against|strong="H5921"\w* Cushan Rishathaim. +\v 11 \w The|strong="H4191"\w* land \w had|strong="H1121"\w* \w rest|strong="H8252"\w* forty \w years|strong="H8141"\w*, \w then|strong="H1121"\w* \w Othniel|strong="H6274"\w* \w the|strong="H4191"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kenaz|strong="H7073"\w* \w died|strong="H4191"\w*. +\p +\v 12 \w The|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w again|strong="H3254"\w* \w did|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w and|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w strengthened|strong="H2388"\w* \w Eglon|strong="H5700"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w* \w against|strong="H5921"\w* \w Israel|strong="H3478"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3068"\w* \w done|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*. +\v 13 \w He|strong="H5221"\w* \w gathered|strong="H3478"\w* \w the|strong="H5221"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w and|strong="H1121"\w* \w Amalek|strong="H6002"\w* \w to|strong="H3478"\w* himself; \w and|strong="H1121"\w* \w he|strong="H5221"\w* \w went|strong="H3212"\w* \w and|strong="H1121"\w* \w struck|strong="H5221"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w they|strong="H3478"\w* \w possessed|strong="H3423"\w* \w the|strong="H5221"\w* \w city|strong="H5892"\w* \w of|strong="H1121"\w* \w palm|strong="H8558"\w* \w trees|strong="H8558"\w*. +\v 14 \w The|strong="H5647"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w served|strong="H5647"\w* \w Eglon|strong="H5700"\w* \w the|strong="H5647"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w* \w eighteen|strong="H8083"\w* \w years|strong="H8141"\w*. +\v 15 \w But|strong="H3068"\w* \w when|strong="H7971"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w cried|strong="H2199"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w Yahweh|strong="H3068"\w* \w raised|strong="H6965"\w* \w up|strong="H6965"\w* \w a|strong="H3068"\w* \w savior|strong="H3467"\w* \w for|strong="H3027"\w* \w them|strong="H7971"\w*: Ehud \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Gera|strong="H1617"\w*, \w the|strong="H3068"\w* \w Benjamite|strong="H1145"\w*, \w a|strong="H3068"\w* \w left-handed|strong="H3225"\w* \w man|strong="H1121"\w*. \w The|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w sent|strong="H7971"\w* \w tribute|strong="H4503"\w* \w by|strong="H3027"\w* \w him|strong="H7971"\w* \w to|strong="H3478"\w* \w Eglon|strong="H5700"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w*. +\v 16 Ehud \w made|strong="H6213"\w* \w himself|strong="H6213"\w* \w a|strong="H3068"\w* \w sword|strong="H2719"\w* \w which|strong="H2719"\w* \w had|strong="H3225"\w* \w two|strong="H8147"\w* \w edges|strong="H6366"\w*, \w a|strong="H3068"\w* \w cubit|strong="H1574"\w*\f + \fr 3:16 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w in|strong="H5921"\w* \w length|strong="H5921"\w*; \w and|strong="H2719"\w* \w he|strong="H6213"\w* \w wore|strong="H5921"\w* \w it|strong="H5921"\w* \w under|strong="H8478"\w* \w his|strong="H5921"\w* clothing \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w right|strong="H3225"\w* \w thigh|strong="H3409"\w*. +\v 17 \w He|strong="H7126"\w* \w offered|strong="H7126"\w* \w the|strong="H7126"\w* \w tribute|strong="H4503"\w* \w to|strong="H4428"\w* \w Eglon|strong="H5700"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Moab|strong="H4124"\w*. \w Now|strong="H4428"\w* \w Eglon|strong="H5700"\w* \w was|strong="H4428"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w fat|strong="H1277"\w* man. +\v 18 \w When|strong="H1961"\w* \w Ehud|strong="H3615"\w* \w had|strong="H1961"\w* \w finished|strong="H3615"\w* \w offering|strong="H4503"\w* \w the|strong="H5375"\w* \w tribute|strong="H4503"\w*, \w he|strong="H7971"\w* \w sent|strong="H7971"\w* \w away|strong="H7971"\w* \w the|strong="H5375"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w carried|strong="H5375"\w* \w the|strong="H5375"\w* \w tribute|strong="H4503"\w*. +\v 19 \w But|strong="H1931"\w* \w he|strong="H1931"\w* \w himself|strong="H1931"\w* \w turned|strong="H7725"\w* \w back|strong="H7725"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* stone \w idols|strong="H6456"\w* \w that|strong="H3605"\w* \w were|strong="H1697"\w* \w by|strong="H5921"\w* \w Gilgal|strong="H1537"\w*, \w and|strong="H7725"\w* \w said|strong="H1697"\w*, “\w I|strong="H5921"\w* \w have|strong="H1697"\w* \w a|strong="H3068"\w* \w secret|strong="H5643"\w* \w message|strong="H1697"\w* \w for|strong="H5921"\w* \w you|strong="H3605"\w*, \w O|strong="H3068"\w* \w king|strong="H4428"\w*.” +\p \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w said|strong="H1697"\w*, “\w Keep|strong="H2013"\w* \w silence|strong="H2013"\w*!” \w All|strong="H3605"\w* \w who|strong="H3605"\w* \w stood|strong="H5975"\w* \w by|strong="H5921"\w* \w him|strong="H5921"\w* \w left|strong="H3318"\w* \w him|strong="H5921"\w*. +\p +\v 20 Ehud \w came|strong="H1697"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w*; \w and|strong="H6965"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w sitting|strong="H3427"\w* \w by|strong="H5921"\w* \w himself|strong="H1931"\w* \w alone|strong="H1931"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w cool|strong="H4747"\w* \w upper|strong="H5944"\w* \w room|strong="H5944"\w*. Ehud \w said|strong="H1697"\w*, “\w I|strong="H5921"\w* \w have|strong="H1697"\w* \w a|strong="H3068"\w* \w message|strong="H1697"\w* \w from|strong="H5921"\w* God \w to|strong="H5921"\w* \w you|strong="H5921"\w*.” \w He|strong="H1931"\w* \w arose|strong="H6965"\w* \w out|strong="H5921"\w* \w of|strong="H1697"\w* \w his|strong="H5921"\w* \w seat|strong="H3678"\w*. +\v 21 Ehud \w put|strong="H7971"\w* \w out|strong="H7971"\w* \w his|strong="H7971"\w* \w left|strong="H8040"\w* \w hand|strong="H3027"\w*, \w and|strong="H7971"\w* \w took|strong="H3947"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w* \w from|strong="H5921"\w* \w his|strong="H7971"\w* \w right|strong="H3225"\w* \w thigh|strong="H3409"\w*, \w and|strong="H7971"\w* \w thrust|strong="H8628"\w* \w it|strong="H5921"\w* \w into|strong="H5921"\w* \w his|strong="H7971"\w* \w body|strong="H3409"\w*. +\v 22 \w The|strong="H3588"\w* \w handle|strong="H5325"\w* \w also|strong="H1571"\w* \w went|strong="H3318"\w* \w in|strong="H3808"\w* \w after|strong="H3588"\w* \w the|strong="H3588"\w* \w blade|strong="H3851"\w*; \w and|strong="H2719"\w* \w the|strong="H3588"\w* \w fat|strong="H2459"\w* \w closed|strong="H5462"\w* \w on|strong="H3318"\w* \w the|strong="H3588"\w* \w blade|strong="H3851"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* didn’t \w draw|strong="H8025"\w* \w the|strong="H3588"\w* \w sword|strong="H2719"\w* \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w his|strong="H3588"\w* body; \w and|strong="H2719"\w* \w it|strong="H3588"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w behind|strong="H1157"\w*. +\v 23 \w Then|strong="H3318"\w* Ehud \w went|strong="H3318"\w* \w out|strong="H3318"\w* onto \w the|strong="H3318"\w* \w porch|strong="H4528"\w*, \w and|strong="H3318"\w* \w shut|strong="H5462"\w* \w the|strong="H3318"\w* \w doors|strong="H1817"\w* \w of|strong="H3318"\w* \w the|strong="H3318"\w* \w upper|strong="H5944"\w* \w room|strong="H5944"\w* \w on|strong="H3318"\w* \w him|strong="H3318"\w*, \w and|strong="H3318"\w* \w locked|strong="H5274"\w* \w them|strong="H3318"\w*. +\p +\v 24 \w After|strong="H7272"\w* \w he|strong="H1931"\w* \w had|strong="H1817"\w* \w gone|strong="H3318"\w*, \w his|strong="H7200"\w* \w servants|strong="H5650"\w* \w came|strong="H3318"\w* \w and|strong="H5650"\w* \w saw|strong="H7200"\w* \w that|strong="H7200"\w* \w the|strong="H7200"\w* \w doors|strong="H1817"\w* \w of|strong="H5650"\w* \w the|strong="H7200"\w* \w upper|strong="H5944"\w* \w room|strong="H2315"\w* \w were|strong="H5650"\w* \w locked|strong="H5274"\w*. \w They|strong="H1931"\w* \w said|strong="H3318"\w*, “\w Surely|strong="H3318"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w covering|strong="H5526"\w* \w his|strong="H7200"\w* \w feet|strong="H7272"\w*\f + \fr 3:24 \ft or, “relieving himself”.\f* \w in|strong="H5650"\w* \w the|strong="H7200"\w* \w upper|strong="H5944"\w* \w room|strong="H2315"\w*.” +\v 25 \w They|strong="H5704"\w* \w waited|strong="H2342"\w* \w until|strong="H5704"\w* \w they|strong="H5704"\w* \w were|strong="H2009"\w* ashamed; \w and|strong="H3947"\w* \w behold|strong="H2009"\w*, \w he|strong="H5704"\w* didn’t \w open|strong="H6605"\w* \w the|strong="H3947"\w* \w doors|strong="H1817"\w* \w of|strong="H4191"\w* \w the|strong="H3947"\w* \w upper|strong="H5944"\w* \w room|strong="H5944"\w*. \w Therefore|strong="H3947"\w* \w they|strong="H5704"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w key|strong="H4668"\w* \w and|strong="H3947"\w* \w opened|strong="H6605"\w* \w them|strong="H3947"\w*, \w and|strong="H3947"\w* \w behold|strong="H2009"\w*, \w their|strong="H3947"\w* lord \w had|strong="H1817"\w* \w fallen|strong="H5307"\w* \w down|strong="H5307"\w* \w dead|strong="H4191"\w* \w on|strong="H5307"\w* \w the|strong="H3947"\w* floor. +\p +\v 26 Ehud \w escaped|strong="H4422"\w* \w while|strong="H5704"\w* \w they|strong="H5704"\w* waited, \w passed|strong="H5674"\w* \w beyond|strong="H5674"\w* \w the|strong="H5704"\w* stone \w idols|strong="H6456"\w*, \w and|strong="H5674"\w* \w escaped|strong="H4422"\w* \w to|strong="H5704"\w* \w Seirah|strong="H8167"\w*. +\v 27 \w When|strong="H1961"\w* \w he|strong="H1931"\w* \w had|strong="H1961"\w* \w come|strong="H1961"\w*, \w he|strong="H1931"\w* \w blew|strong="H8628"\w* \w a|strong="H3068"\w* \w trumpet|strong="H7782"\w* \w in|strong="H3478"\w* \w the|strong="H6440"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H1121"\w* Ephraim; \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w with|strong="H5973"\w* \w him|strong="H6440"\w* \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*, \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w led|strong="H6440"\w* \w them|strong="H6440"\w*. +\p +\v 28 \w He|strong="H3588"\w* said \w to|strong="H3381"\w* \w them|strong="H5414"\w*, “\w Follow|strong="H7291"\w* \w me|strong="H5414"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w delivered|strong="H5414"\w* \w your|strong="H3068"\w* \w enemies|strong="H3027"\w* \w the|strong="H3588"\w* \w Moabites|strong="H4124"\w* \w into|strong="H3381"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*.” \w They|strong="H3588"\w* \w followed|strong="H7291"\w* \w him|strong="H5414"\w*, \w and|strong="H3068"\w* \w took|strong="H3920"\w* \w the|strong="H3588"\w* \w fords|strong="H4569"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w Jordan|strong="H3383"\w* \w against|strong="H3027"\w* \w the|strong="H3588"\w* \w Moabites|strong="H4124"\w*, \w and|strong="H3068"\w* didn’t \w allow|strong="H5414"\w* \w any|strong="H5414"\w* \w man|strong="H5674"\w* \w to|strong="H3381"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w*. +\v 29 \w They|strong="H3808"\w* \w struck|strong="H5221"\w* \w at|strong="H3808"\w* \w that|strong="H3605"\w* \w time|strong="H6256"\w* \w about|strong="H5221"\w* \w ten|strong="H6235"\w* thousand \w men|strong="H2428"\w* \w of|strong="H6256"\w* \w Moab|strong="H4124"\w*, \w every|strong="H3605"\w* \w strong|strong="H2428"\w* \w man|strong="H3605"\w* \w and|strong="H2428"\w* \w every|strong="H3605"\w* \w man|strong="H3605"\w* \w of|strong="H6256"\w* \w valor|strong="H2428"\w*. \w No|strong="H3808"\w* \w man|strong="H3605"\w* \w escaped|strong="H4422"\w*. +\v 30 \w So|strong="H3027"\w* \w Moab|strong="H4124"\w* \w was|strong="H3478"\w* \w subdued|strong="H3665"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w under|strong="H8478"\w* \w the|strong="H3117"\w* \w hand|strong="H3027"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w*. \w Then|strong="H3117"\w* \w the|strong="H3117"\w* land \w had|strong="H3478"\w* \w rest|strong="H8252"\w* \w eighty|strong="H8084"\w* \w years|strong="H8141"\w*. +\p +\v 31 \w After|strong="H1961"\w* \w him|strong="H5221"\w* \w was|strong="H1961"\w* \w Shamgar|strong="H8044"\w* \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Anath|strong="H6067"\w*, \w who|strong="H1931"\w* \w struck|strong="H5221"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5221"\w* \w Philistines|strong="H6430"\w* \w with|strong="H3478"\w* \w an|strong="H1961"\w* \w ox|strong="H1241"\w* \w goad|strong="H4451"\w*. \w He|strong="H1931"\w* \w also|strong="H1571"\w* \w saved|strong="H3467"\w* \w Israel|strong="H3478"\w*. +\c 4 +\p +\v 1 \w The|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w again|strong="H3254"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w when|strong="H6213"\w* Ehud \w was|strong="H3068"\w* \w dead|strong="H4191"\w*. +\v 2 \w Yahweh|strong="H3068"\w* \w sold|strong="H4376"\w* \w them|strong="H3027"\w* \w into|strong="H3027"\w* \w the|strong="H3068"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w Jabin|strong="H2985"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Canaan|strong="H3667"\w*, \w who|strong="H1931"\w* \w reigned|strong="H4427"\w* \w in|strong="H3427"\w* \w Hazor|strong="H2674"\w*; \w the|strong="H3068"\w* \w captain|strong="H8269"\w* \w of|strong="H4428"\w* \w whose|strong="H1471"\w* \w army|strong="H6635"\w* \w was|strong="H3068"\w* \w Sisera|strong="H5516"\w*, \w who|strong="H1931"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Harosheth|strong="H2800"\w* \w of|strong="H4428"\w* \w the|strong="H3068"\w* \w Gentiles|strong="H1471"\w*. +\v 3 \w The|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w cried|strong="H6817"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w had|strong="H3068"\w* \w nine|strong="H8672"\w* \w hundred|strong="H3967"\w* \w chariots|strong="H7393"\w* \w of|strong="H1121"\w* \w iron|strong="H1270"\w*; \w and|strong="H3967"\w* \w he|strong="H1931"\w* \w mightily|strong="H2394"\w* \w oppressed|strong="H3905"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w for|strong="H3588"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w*. +\v 4 \w Now|strong="H6256"\w* \w Deborah|strong="H1683"\w*, \w a|strong="H3068"\w* \w prophetess|strong="H5031"\w*, \w the|strong="H8199"\w* wife \w of|strong="H6256"\w* \w Lappidoth|strong="H3941"\w*, \w judged|strong="H8199"\w* \w Israel|strong="H3478"\w* \w at|strong="H3478"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w*. +\v 5 \w She|strong="H1931"\w* \w lived|strong="H3427"\w* \w under|strong="H8478"\w* \w Deborah|strong="H1683"\w*’s \w palm|strong="H8560"\w* \w tree|strong="H8560"\w* \w between|strong="H3427"\w* \w Ramah|strong="H7414"\w* \w and|strong="H1121"\w* \w Bethel|strong="H1008"\w* \w in|strong="H3427"\w* \w the|strong="H8478"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H1121"\w* Ephraim; \w and|strong="H1121"\w* \w the|strong="H8478"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w her|strong="H1931"\w* \w for|strong="H8478"\w* \w judgment|strong="H4941"\w*. +\v 6 \w She|strong="H7121"\w* \w sent|strong="H7971"\w* \w and|strong="H1121"\w* \w called|strong="H7121"\w* \w Barak|strong="H1301"\w* \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Abinoam \w out|strong="H7971"\w* \w of|strong="H1121"\w* \w Kedesh|strong="H6943"\w* \w Naphtali|strong="H5321"\w*, \w and|strong="H1121"\w* \w said|strong="H7121"\w* \w to|strong="H3478"\w* \w him|strong="H7121"\w*, “Hasn’t \w Yahweh|strong="H3068"\w*, \w the|strong="H3947"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w commanded|strong="H6680"\w*, ‘\w Go|strong="H3212"\w* \w and|strong="H1121"\w* \w lead|strong="H3212"\w* \w the|strong="H3947"\w* \w way|strong="H3212"\w* \w to|strong="H3478"\w* \w Mount|strong="H2022"\w* \w Tabor|strong="H8396"\w*, \w and|strong="H1121"\w* \w take|strong="H3947"\w* \w with|strong="H5973"\w* \w you|strong="H6680"\w* \w ten|strong="H6235"\w* thousand \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Naphtali|strong="H5321"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Zebulun|strong="H2074"\w*? +\v 7 \w I|strong="H5414"\w* \w will|strong="H6635"\w* \w draw|strong="H4900"\w* \w to|strong="H5414"\w* \w you|strong="H5414"\w*, \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w river|strong="H5158"\w* \w Kishon|strong="H7028"\w*, \w Sisera|strong="H5516"\w*, \w the|strong="H5414"\w* \w captain|strong="H8269"\w* \w of|strong="H3027"\w* \w Jabin|strong="H2985"\w*’s \w army|strong="H6635"\w*, \w with|strong="H3027"\w* \w his|strong="H5414"\w* \w chariots|strong="H7393"\w* \w and|strong="H3027"\w* \w his|strong="H5414"\w* \w multitude|strong="H1995"\w*; \w and|strong="H3027"\w* \w I|strong="H5414"\w* \w will|strong="H6635"\w* \w deliver|strong="H5414"\w* \w him|strong="H5414"\w* \w into|strong="H3027"\w* \w your|strong="H5414"\w* \w hand|strong="H3027"\w*.’” +\p +\v 8 \w Barak|strong="H1301"\w* said \w to|strong="H1980"\w* \w her|strong="H1980"\w*, “If \w you|strong="H5973"\w* \w will|strong="H3808"\w* \w go|strong="H1980"\w* \w with|strong="H5973"\w* \w me|strong="H5973"\w*, \w then|strong="H1980"\w* \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w go|strong="H1980"\w*; \w but|strong="H3808"\w* if \w you|strong="H5973"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w go|strong="H1980"\w* \w with|strong="H5973"\w* \w me|strong="H5973"\w*, \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w go|strong="H1980"\w*.” +\p +\v 9 \w She|strong="H3588"\w* said, “\w I|strong="H3588"\w* \w will|strong="H3068"\w* \w surely|strong="H3588"\w* \w go|strong="H1980"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*. \w Nevertheless|strong="H3588"\w*, \w the|strong="H5921"\w* \w journey|strong="H1870"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w take|strong="H1980"\w* won’t \w be|strong="H1961"\w* \w for|strong="H3588"\w* \w your|strong="H3068"\w* \w honor|strong="H8597"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w sell|strong="H4376"\w* \w Sisera|strong="H5516"\w* \w into|strong="H1980"\w* \w a|strong="H3068"\w* woman’s \w hand|strong="H3027"\w*.” \w Deborah|strong="H1683"\w* \w arose|strong="H6965"\w*, \w and|strong="H1980"\w* \w went|strong="H1980"\w* \w with|strong="H5973"\w* \w Barak|strong="H1301"\w* \w to|strong="H1980"\w* \w Kedesh|strong="H6943"\w*. +\p +\v 10 \w Barak|strong="H1301"\w* \w called|strong="H2199"\w* \w Zebulun|strong="H2074"\w* \w and|strong="H5927"\w* \w Naphtali|strong="H5321"\w* \w together|strong="H2199"\w* \w to|strong="H5927"\w* \w Kedesh|strong="H6943"\w*. \w Ten|strong="H6235"\w* thousand men \w followed|strong="H7272"\w* \w him|strong="H5973"\w*; \w and|strong="H5927"\w* \w Deborah|strong="H1683"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*. +\v 11 Now \w Heber|strong="H2268"\w* \w the|strong="H5704"\w* \w Kenite|strong="H7017"\w* \w had|strong="H4872"\w* \w separated|strong="H6504"\w* \w himself|strong="H6504"\w* \w from|strong="H1121"\w* \w the|strong="H5704"\w* \w Kenites|strong="H7017"\w*, \w even|strong="H5704"\w* \w from|strong="H1121"\w* \w the|strong="H5704"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hobab|strong="H2246"\w*, \w Moses|strong="H4872"\w*’ brother-in-law, \w and|strong="H1121"\w* \w had|strong="H4872"\w* \w pitched|strong="H5186"\w* \w his|strong="H5186"\w* tent \w as|strong="H5704"\w* \w far|strong="H5704"\w* \w as|strong="H5704"\w* \w the|strong="H5704"\w* oak \w in|strong="H1121"\w* \w Zaanannim|strong="H6815"\w*, which \w is|strong="H1121"\w* \w by|strong="H5704"\w* \w Kedesh|strong="H6943"\w*. +\v 12 \w They|strong="H3588"\w* \w told|strong="H5046"\w* \w Sisera|strong="H5516"\w* \w that|strong="H3588"\w* \w Barak|strong="H1301"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Abinoam \w had|strong="H3588"\w* \w gone|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w Mount|strong="H2022"\w* \w Tabor|strong="H8396"\w*. +\v 13 \w Sisera|strong="H5516"\w* \w gathered|strong="H2199"\w* \w together|strong="H2199"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w chariots|strong="H7393"\w*, even \w nine|strong="H8672"\w* \w hundred|strong="H3967"\w* \w chariots|strong="H7393"\w* \w of|strong="H5971"\w* \w iron|strong="H1270"\w*, \w and|strong="H3967"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w with|strong="H5971"\w* \w him|strong="H3605"\w*, \w from|strong="H1471"\w* \w Harosheth|strong="H2800"\w* \w of|strong="H5971"\w* \w the|strong="H3605"\w* \w Gentiles|strong="H1471"\w*, \w to|strong="H5971"\w* \w the|strong="H3605"\w* \w river|strong="H5158"\w* \w Kishon|strong="H7028"\w*. +\p +\v 14 \w Deborah|strong="H1683"\w* \w said|strong="H3318"\w* \w to|strong="H3381"\w* \w Barak|strong="H1301"\w*, “\w Go|strong="H3318"\w*; \w for|strong="H3588"\w* \w this|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H6440"\w* \w day|strong="H3117"\w* \w in|strong="H3068"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w delivered|strong="H5414"\w* \w Sisera|strong="H5516"\w* \w into|strong="H3381"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*. Hasn’t \w Yahweh|strong="H3068"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*?” \w So|strong="H5414"\w* \w Barak|strong="H1301"\w* \w went|strong="H3318"\w* \w down|strong="H3381"\w* \w from|strong="H3318"\w* \w Mount|strong="H2022"\w* \w Tabor|strong="H8396"\w*, \w and|strong="H6965"\w* \w ten|strong="H6235"\w* thousand men \w after|strong="H3117"\w* \w him|strong="H5414"\w*. +\v 15 \w Yahweh|strong="H3068"\w* \w confused|strong="H2000"\w* \w Sisera|strong="H5516"\w*, \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w chariots|strong="H7393"\w*, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w army|strong="H4264"\w*, \w with|strong="H3068"\w* \w the|strong="H3605"\w* \w edge|strong="H6310"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w* \w before|strong="H6440"\w* \w Barak|strong="H1301"\w*. \w Sisera|strong="H5516"\w* abandoned \w his|strong="H3605"\w* \w chariot|strong="H7393"\w* \w and|strong="H3068"\w* \w fled|strong="H5127"\w* \w away|strong="H5127"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w feet|strong="H7272"\w*. +\v 16 \w But|strong="H3808"\w* \w Barak|strong="H1301"\w* \w pursued|strong="H7291"\w* \w the|strong="H3605"\w* \w chariots|strong="H7393"\w* \w and|strong="H7393"\w* \w the|strong="H3605"\w* \w army|strong="H4264"\w* \w to|strong="H5704"\w* \w Harosheth|strong="H2800"\w* \w of|strong="H6310"\w* \w the|strong="H3605"\w* \w Gentiles|strong="H1471"\w*; \w and|strong="H7393"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H4264"\w* \w of|strong="H6310"\w* \w Sisera|strong="H5516"\w* \w fell|strong="H5307"\w* \w by|strong="H5704"\w* \w the|strong="H3605"\w* \w edge|strong="H6310"\w* \w of|strong="H6310"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*. \w There|strong="H3605"\w* \w was|strong="H6310"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w left|strong="H7604"\w*. +\p +\v 17 \w However|strong="H3588"\w* \w Sisera|strong="H5516"\w* \w fled|strong="H5127"\w* \w away|strong="H5127"\w* \w on|strong="H1004"\w* \w his|strong="H3588"\w* \w feet|strong="H7272"\w* \w to|strong="H4428"\w* \w the|strong="H3588"\w* tent \w of|strong="H4428"\w* \w Jael|strong="H3278"\w* \w the|strong="H3588"\w* wife \w of|strong="H4428"\w* \w Heber|strong="H2268"\w* \w the|strong="H3588"\w* \w Kenite|strong="H7017"\w*; \w for|strong="H3588"\w* \w there|strong="H7965"\w* \w was|strong="H4428"\w* \w peace|strong="H7965"\w* \w between|strong="H7965"\w* \w Jabin|strong="H2985"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Hazor|strong="H2674"\w* \w and|strong="H4428"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w Heber|strong="H2268"\w* \w the|strong="H3588"\w* \w Kenite|strong="H7017"\w*. +\v 18 \w Jael|strong="H3278"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w meet|strong="H7125"\w* \w Sisera|strong="H5516"\w*, \w and|strong="H3318"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H3318"\w*, “\w Turn|strong="H5493"\w* \w in|strong="H5493"\w*, \w my|strong="H3318"\w* lord, \w turn|strong="H5493"\w* \w in|strong="H5493"\w* \w to|strong="H3318"\w* \w me|strong="H3318"\w*; don’t \w be|strong="H3372"\w* \w afraid|strong="H3372"\w*.” \w He|strong="H3318"\w* \w came|strong="H3318"\w* \w in|strong="H5493"\w* \w to|strong="H3318"\w* \w her|strong="H5493"\w* \w into|strong="H3318"\w* \w the|strong="H3680"\w* tent, \w and|strong="H3318"\w* she \w covered|strong="H3680"\w* \w him|strong="H3318"\w* \w with|strong="H3318"\w* \w a|strong="H3068"\w* \w rug|strong="H8063"\w*. +\p +\v 19 \w He|strong="H3588"\w* said \w to|strong="H4325"\w* \w her|strong="H3680"\w*, “\w Please|strong="H4994"\w* \w give|strong="H8248"\w* \w me|strong="H4994"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w water|strong="H4325"\w* \w to|strong="H4325"\w* \w drink|strong="H8248"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* am \w thirsty|strong="H6770"\w*.” +\p \w She|strong="H3588"\w* \w opened|strong="H6605"\w* \w a|strong="H3068"\w* container \w of|strong="H4325"\w* \w milk|strong="H2461"\w*, \w and|strong="H2461"\w* \w gave|strong="H8248"\w* \w him|strong="H8248"\w* \w a|strong="H3068"\w* \w drink|strong="H8248"\w*, \w and|strong="H2461"\w* \w covered|strong="H3680"\w* \w him|strong="H8248"\w*. +\p +\v 20 \w He|strong="H3426"\w* said \w to|strong="H1961"\w* \w her|strong="H7592"\w*, “\w Stand|strong="H5975"\w* \w in|strong="H5975"\w* \w the|strong="H1961"\w* \w door|strong="H6607"\w* \w of|strong="H7592"\w* \w the|strong="H1961"\w* tent, \w and|strong="H5975"\w* \w if|strong="H1961"\w* \w any|strong="H3426"\w* man \w comes|strong="H1961"\w* \w and|strong="H5975"\w* \w inquires|strong="H7592"\w* \w of|strong="H7592"\w* \w you|strong="H7592"\w*, \w and|strong="H5975"\w* says, ‘\w Is|strong="H3426"\w* \w there|strong="H3426"\w* \w any|strong="H3426"\w* man \w here|strong="H6311"\w*?’ \w you|strong="H7592"\w* \w shall|strong="H6607"\w* say, ‘\w No|strong="H5975"\w*.’” +\p +\v 21 \w Then|strong="H3947"\w* \w Jael|strong="H3278"\w*, \w Heber|strong="H2268"\w*’s wife, \w took|strong="H3947"\w* \w a|strong="H3068"\w* \w tent|strong="H3489"\w* \w peg|strong="H3489"\w*, \w and|strong="H3027"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* \w hammer|strong="H4718"\w* \w in|strong="H4191"\w* \w her|strong="H3947"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w went|strong="H3027"\w* \w softly|strong="H3814"\w* \w to|strong="H4191"\w* \w him|strong="H3027"\w*, \w and|strong="H3027"\w* struck \w the|strong="H3947"\w* \w pin|strong="H3489"\w* \w into|strong="H3027"\w* \w his|strong="H7760"\w* \w temples|strong="H7541"\w*, \w and|strong="H3027"\w* \w it|strong="H7760"\w* pierced \w through|strong="H3027"\w* \w into|strong="H3027"\w* \w the|strong="H3947"\w* ground, \w for|strong="H3027"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w in|strong="H4191"\w* \w a|strong="H3068"\w* \w deep|strong="H7290"\w* \w sleep|strong="H7290"\w*; \w so|strong="H3947"\w* \w he|strong="H1931"\w* fainted \w and|strong="H3027"\w* \w died|strong="H4191"\w*. +\v 22 \w Behold|strong="H2009"\w*, \w as|strong="H3318"\w* \w Barak|strong="H1301"\w* \w pursued|strong="H7291"\w* \w Sisera|strong="H5516"\w*, \w Jael|strong="H3278"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w meet|strong="H7125"\w* \w him|strong="H7200"\w*, \w and|strong="H3212"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H7200"\w*, “\w Come|strong="H3318"\w*, \w and|strong="H3212"\w* \w I|strong="H2009"\w* \w will|strong="H5307"\w* \w show|strong="H7200"\w* \w you|strong="H7200"\w* \w the|strong="H7200"\w* \w man|strong="H4191"\w* whom \w you|strong="H7200"\w* \w seek|strong="H1245"\w*.” \w He|strong="H3318"\w* \w came|strong="H3318"\w* \w to|strong="H3318"\w* \w her|strong="H7200"\w*; \w and|strong="H3212"\w* \w behold|strong="H2009"\w*, \w Sisera|strong="H5516"\w* \w lay|strong="H5307"\w* \w dead|strong="H4191"\w*, \w and|strong="H3212"\w* \w the|strong="H7200"\w* \w tent|strong="H3489"\w* \w peg|strong="H3489"\w* \w was|strong="H5516"\w* \w in|strong="H4191"\w* \w his|strong="H7200"\w* \w temples|strong="H7541"\w*. +\v 23 \w So|strong="H1931"\w* God \w subdued|strong="H3665"\w* \w Jabin|strong="H2985"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w on|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*. +\v 24 \w The|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w prevailed|strong="H7186"\w* \w more|strong="H5704"\w* \w and|strong="H1121"\w* \w more|strong="H5704"\w* \w against|strong="H5921"\w* \w Jabin|strong="H2985"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*, \w until|strong="H5704"\w* \w they|strong="H5921"\w* \w had|strong="H3478"\w* \w destroyed|strong="H3772"\w* \w Jabin|strong="H2985"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*. +\c 5 +\p +\v 1 \w Then|strong="H3117"\w* \w Deborah|strong="H1683"\w* \w and|strong="H1121"\w* \w Barak|strong="H1301"\w* \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Abinoam \w sang|strong="H7891"\w* \w on|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, saying, +\q1 +\v 2 “\w Because|strong="H3068"\w* \w the|strong="H3068"\w* \w leaders|strong="H6546"\w* \w took|strong="H3478"\w* \w the|strong="H3068"\w* lead \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*, +\q2 \w because|strong="H3068"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w* \w offered|strong="H5068"\w* themselves \w willingly|strong="H5068"\w*, +\q1 \w be|strong="H3068"\w* \w blessed|strong="H1288"\w*, \w Yahweh|strong="H3068"\w*! +\b +\q1 +\v 3 “\w Hear|strong="H8085"\w*, \w you|strong="H8085"\w* \w kings|strong="H4428"\w*! +\q2 \w Give|strong="H8085"\w* \w ear|strong="H8085"\w*, \w you|strong="H8085"\w* \w princes|strong="H7336"\w*! +\q1 \w I|strong="H8085"\w*, \w even|strong="H3068"\w* \w I|strong="H8085"\w*, \w will|strong="H3068"\w* \w sing|strong="H7891"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w I|strong="H8085"\w* \w will|strong="H3068"\w* \w sing|strong="H7891"\w* \w praise|strong="H2167"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H8085"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. +\b +\q1 +\v 4 “\w Yahweh|strong="H3068"\w*, \w when|strong="H3318"\w* \w you|strong="H1571"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w Seir|strong="H8165"\w*, +\q2 \w when|strong="H3318"\w* \w you|strong="H1571"\w* \w marched|strong="H6805"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w field|strong="H7704"\w* \w of|strong="H3068"\w* Edom, +\q1 \w the|strong="H3068"\w* \w earth|strong="H8064"\w* \w trembled|strong="H7493"\w*, \w the|strong="H3068"\w* \w sky|strong="H8064"\w* \w also|strong="H1571"\w* \w dropped|strong="H5197"\w*. +\q2 \w Yes|strong="H1571"\w*, \w the|strong="H3068"\w* \w clouds|strong="H5645"\w* \w dropped|strong="H5197"\w* \w water|strong="H4325"\w*. +\q1 +\v 5 \w The|strong="H6440"\w* \w mountains|strong="H2022"\w* \w quaked|strong="H5140"\w* \w at|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w presence|strong="H6440"\w*, +\q2 \w even|strong="H3068"\w* \w Sinai|strong="H5514"\w* \w at|strong="H3478"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\b +\q1 +\v 6 “\w In|strong="H1980"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w Shamgar|strong="H8044"\w* \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Anath|strong="H6067"\w*, +\q2 \w in|strong="H1980"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w Jael|strong="H3278"\w*, \w the|strong="H3117"\w* highways \w were|strong="H1121"\w* \w unoccupied|strong="H2308"\w*. +\q2 \w The|strong="H3117"\w* \w travelers|strong="H1980"\w* \w walked|strong="H1980"\w* \w through|strong="H1980"\w* \w byways|strong="H6128"\w*. +\q1 +\v 7 \w The|strong="H5704"\w* rulers \w ceased|strong="H2308"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\q2 \w They|strong="H5704"\w* \w ceased|strong="H2308"\w* \w until|strong="H5704"\w* \w I|strong="H5704"\w*, \w Deborah|strong="H1683"\w*, \w arose|strong="H6965"\w*; +\q2 \w Until|strong="H5704"\w* \w I|strong="H5704"\w* \w arose|strong="H6965"\w* \w a|strong="H3068"\w* mother \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\q1 +\v 8 \w They|strong="H3478"\w* chose \w new|strong="H2319"\w* gods. +\q2 \w Then|strong="H7200"\w* \w war|strong="H3901"\w* \w was|strong="H3478"\w* \w in|strong="H3478"\w* \w the|strong="H7200"\w* \w gates|strong="H8179"\w*. +\q2 \w Was|strong="H3478"\w* \w there|strong="H7200"\w* \w a|strong="H3068"\w* \w shield|strong="H4043"\w* \w or|strong="H7200"\w* \w spear|strong="H7420"\w* \w seen|strong="H7200"\w* \w among|strong="H7200"\w* forty thousand \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*? +\q1 +\v 9 \w My|strong="H3068"\w* \w heart|strong="H3820"\w* \w is|strong="H3068"\w* \w toward|strong="H3068"\w* \w the|strong="H3068"\w* \w governors|strong="H2710"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, +\q2 \w who|strong="H5971"\w* \w offered|strong="H5068"\w* themselves \w willingly|strong="H5068"\w* \w among|strong="H5971"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w*. +\q2 \w Bless|strong="H1288"\w* \w Yahweh|strong="H3068"\w*! +\b +\q1 +\v 10 “\w Speak|strong="H7878"\w*, \w you|strong="H5921"\w* \w who|strong="H3427"\w* \w ride|strong="H7392"\w* \w on|strong="H5921"\w* \w white|strong="H6715"\w* donkeys, +\q2 \w you|strong="H5921"\w* \w who|strong="H3427"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* rich \w carpets|strong="H4055"\w*, +\q2 \w and|strong="H1980"\w* \w you|strong="H5921"\w* \w who|strong="H3427"\w* \w walk|strong="H1980"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w*. +\q1 +\v 11 Far \w from|strong="H3381"\w* \w the|strong="H3068"\w* \w noise|strong="H6963"\w* \w of|strong="H3068"\w* \w archers|strong="H2686"\w*, \w in|strong="H3478"\w* \w the|strong="H3068"\w* \w places|strong="H4857"\w* \w of|strong="H3068"\w* drawing \w water|strong="H4857"\w*, +\q2 \w there|strong="H8033"\w* \w they|strong="H8033"\w* \w will|strong="H3068"\w* \w rehearse|strong="H8567"\w* \w Yahweh|strong="H3068"\w*’s \w righteous|strong="H6666"\w* \w acts|strong="H6666"\w*, +\q2 \w the|strong="H3068"\w* \w righteous|strong="H6666"\w* \w acts|strong="H6666"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* rule \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\b +\q1 “\w Then|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w people|strong="H5971"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3068"\w* \w gates|strong="H8179"\w*. +\q2 +\v 12 ‘\w Awake|strong="H5782"\w*, \w awake|strong="H5782"\w*, \w Deborah|strong="H1683"\w*! +\q2 \w Awake|strong="H5782"\w*, \w awake|strong="H5782"\w*, \w utter|strong="H1696"\w* \w a|strong="H3068"\w* \w song|strong="H7892"\w*! +\q2 \w Arise|strong="H6965"\w*, \w Barak|strong="H1301"\w*, \w and|strong="H1121"\w* lead \w away|strong="H7617"\w* \w your|strong="H6965"\w* \w captives|strong="H7617"\w*, \w you|strong="H1696"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Abinoam.’ +\b +\q1 +\v 13 “\w Then|strong="H3068"\w* \w a|strong="H3068"\w* \w remnant|strong="H8300"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* nobles \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w* \w came|strong="H3068"\w* down. +\q2 \w Yahweh|strong="H3068"\w* \w came|strong="H3068"\w* down \w for|strong="H3068"\w* me \w against|strong="H3068"\w* \w the|strong="H3068"\w* \w mighty|strong="H1368"\w*. +\q1 +\v 14 \w Those|strong="H4480"\w* \w whose|strong="H1144"\w* \w root|strong="H8328"\w* \w is|strong="H8328"\w* \w in|strong="H5971"\w* \w Amalek|strong="H6002"\w* \w came|strong="H3381"\w* \w out|strong="H4480"\w* \w of|strong="H7626"\w* Ephraim, +\q2 \w after|strong="H4480"\w* \w you|strong="H4480"\w*, \w Benjamin|strong="H1144"\w*, \w among|strong="H4480"\w* \w your|strong="H4480"\w* \w peoples|strong="H5971"\w*. +\q1 \w Governors|strong="H2710"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w* \w out|strong="H4480"\w* \w of|strong="H7626"\w* \w Machir|strong="H4353"\w*. +\q2 \w Those|strong="H4480"\w* \w who|strong="H5971"\w* \w handle|strong="H4900"\w* \w the|strong="H4480"\w* marshal’s \w staff|strong="H7626"\w* \w came|strong="H3381"\w* \w out|strong="H4480"\w* \w of|strong="H7626"\w* \w Zebulun|strong="H2074"\w*. +\q1 +\v 15 \w The|strong="H7971"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w Issachar|strong="H3485"\w* \w were|strong="H7272"\w* \w with|strong="H5973"\w* \w Deborah|strong="H1683"\w*. +\q2 \w As|strong="H3651"\w* \w was|strong="H3820"\w* \w Issachar|strong="H3485"\w*, \w so|strong="H3651"\w* \w was|strong="H3820"\w* \w Barak|strong="H1301"\w*. +\q2 \w They|strong="H3651"\w* \w rushed|strong="H7971"\w* into \w the|strong="H7971"\w* \w valley|strong="H6010"\w* \w at|strong="H3651"\w* \w his|strong="H7971"\w* \w feet|strong="H7272"\w*. +\q1 \w By|strong="H7971"\w* \w the|strong="H7971"\w* watercourses \w of|strong="H8269"\w* \w Reuben|strong="H7205"\w*, +\q2 there \w were|strong="H7272"\w* \w great|strong="H1419"\w* resolves \w of|strong="H8269"\w* \w heart|strong="H3820"\w*. +\q1 +\v 16 \w Why|strong="H4100"\w* \w did|strong="H4100"\w* \w you|strong="H4100"\w* \w sit|strong="H3427"\w* \w among|strong="H3427"\w* \w the|strong="H8085"\w* \w sheepfolds|strong="H4942"\w*? +\q2 \w To|strong="H3820"\w* \w hear|strong="H8085"\w* \w the|strong="H8085"\w* whistling \w for|strong="H3427"\w* \w the|strong="H8085"\w* \w flocks|strong="H5739"\w*? +\q1 \w At|strong="H3427"\w* \w the|strong="H8085"\w* watercourses \w of|strong="H3427"\w* \w Reuben|strong="H7205"\w*, +\q2 \w there|strong="H3427"\w* \w were|strong="H1419"\w* \w great|strong="H1419"\w* \w searchings|strong="H2714"\w* \w of|strong="H3427"\w* \w heart|strong="H3820"\w*. +\q1 +\v 17 \w Gilead|strong="H1568"\w* \w lived|strong="H3427"\w* \w beyond|strong="H5676"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w*. +\q2 \w Why|strong="H4100"\w* \w did|strong="H4100"\w* \w Dan|strong="H1835"\w* \w remain|strong="H3427"\w* \w in|strong="H3427"\w* ships? +\q2 Asher \w sat|strong="H3427"\w* \w still|strong="H3427"\w* \w at|strong="H3427"\w* \w the|strong="H5921"\w* \w haven|strong="H2348"\w* \w of|strong="H3427"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*, +\q2 \w and|strong="H3427"\w* \w lived|strong="H3427"\w* \w by|strong="H5921"\w* \w his|strong="H5921"\w* creeks. +\q1 +\v 18 \w Zebulun|strong="H2074"\w* \w was|strong="H5315"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w that|strong="H5971"\w* jeopardized \w their|strong="H5921"\w* \w lives|strong="H5315"\w* \w to|strong="H4191"\w* \w the|strong="H5921"\w* \w death|strong="H4191"\w*; +\q2 \w Naphtali|strong="H5321"\w* \w also|strong="H5971"\w*, \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w high|strong="H4791"\w* \w places|strong="H4791"\w* \w of|strong="H7704"\w* \w the|strong="H5921"\w* \w field|strong="H7704"\w*. +\b +\q1 +\v 19 “\w The|strong="H5921"\w* \w kings|strong="H4428"\w* \w came|strong="H4325"\w* \w and|strong="H3701"\w* \w fought|strong="H3898"\w*, +\q2 \w then|strong="H3947"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Canaan|strong="H3667"\w* \w fought|strong="H3898"\w* \w at|strong="H5921"\w* \w Taanach|strong="H8590"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w of|strong="H4428"\w* \w Megiddo|strong="H4023"\w*. +\q2 \w They|strong="H3808"\w* \w took|strong="H3947"\w* \w no|strong="H3808"\w* \w plunder|strong="H1215"\w* \w of|strong="H4428"\w* \w silver|strong="H3701"\w*. +\q1 +\v 20 \w From|strong="H4480"\w* \w the|strong="H4480"\w* \w sky|strong="H8064"\w* \w the|strong="H4480"\w* \w stars|strong="H3556"\w* \w fought|strong="H3898"\w*. +\q2 \w From|strong="H4480"\w* \w their|strong="H8064"\w* \w courses|strong="H4546"\w*, \w they|strong="H4546"\w* \w fought|strong="H3898"\w* \w against|strong="H5973"\w* \w Sisera|strong="H5516"\w*. +\q1 +\v 21 \w The|strong="H1869"\w* \w river|strong="H5158"\w* \w Kishon|strong="H7028"\w* \w swept|strong="H1640"\w* \w them|strong="H1869"\w* \w away|strong="H1640"\w*, +\q2 \w that|strong="H5315"\w* \w ancient|strong="H6917"\w* \w river|strong="H5158"\w*, \w the|strong="H1869"\w* \w river|strong="H5158"\w* \w Kishon|strong="H7028"\w*. +\q2 \w My|strong="H5315"\w* \w soul|strong="H5315"\w*, \w march|strong="H1869"\w* \w on|strong="H1869"\w* \w with|strong="H5315"\w* \w strength|strong="H5797"\w*. +\q1 +\v 22 Then \w the|strong="H1986"\w* \w horse|strong="H5483"\w* \w hoofs|strong="H6119"\w* stamped because \w of|strong="H5483"\w* \w the|strong="H1986"\w* prancing, +\q2 \w the|strong="H1986"\w* prancing \w of|strong="H5483"\w* \w their|strong="H5483"\w* strong ones. +\q1 +\v 23 ‘Curse \w Meroz|strong="H4789"\w*,’ said \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w*. +\q2 ‘Curse bitterly \w its|strong="H3588"\w* \w inhabitants|strong="H3427"\w*, +\q2 \w because|strong="H3588"\w* \w they|strong="H3588"\w* didn’t \w come|strong="H1368"\w* \w to|strong="H3068"\w* \w help|strong="H5833"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w to|strong="H3068"\w* \w help|strong="H5833"\w* \w Yahweh|strong="H3068"\w* \w against|strong="H3068"\w* \w the|strong="H3588"\w* \w mighty|strong="H1368"\w*.’ +\b +\q1 +\v 24 “\w Jael|strong="H3278"\w* shall \w be|strong="H1288"\w* \w blessed|strong="H1288"\w* \w above|strong="H1288"\w* women, +\q2 \w the|strong="H1288"\w* wife \w of|strong="H1288"\w* \w Heber|strong="H2268"\w* \w the|strong="H1288"\w* \w Kenite|strong="H7017"\w*; +\q2 \w blessed|strong="H1288"\w* shall she \w be|strong="H1288"\w* \w above|strong="H1288"\w* women \w in|strong="H1288"\w* \w the|strong="H1288"\w* tent. +\q1 +\v 25 \w He|strong="H5414"\w* \w asked|strong="H7592"\w* \w for|strong="H4325"\w* \w water|strong="H4325"\w*. +\q2 \w She|strong="H5602"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w milk|strong="H2461"\w*. +\q2 \w She|strong="H5602"\w* \w brought|strong="H7126"\w* \w him|strong="H5414"\w* \w butter|strong="H2529"\w* \w in|strong="H5414"\w* \w a|strong="H3068"\w* lordly \w dish|strong="H5602"\w*. +\q1 +\v 26 She \w put|strong="H7971"\w* \w her|strong="H7971"\w* \w hand|strong="H3027"\w* \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w tent|strong="H3489"\w* \w peg|strong="H3489"\w*, +\q2 \w and|strong="H7971"\w* \w her|strong="H7971"\w* \w right|strong="H3225"\w* \w hand|strong="H3027"\w* \w to|strong="H7971"\w* \w the|strong="H7971"\w* workmen’s \w hammer|strong="H1989"\w*. +\q1 \w With|strong="H3027"\w* \w the|strong="H7971"\w* \w hammer|strong="H1989"\w* she \w struck|strong="H4272"\w* \w Sisera|strong="H5516"\w*. +\q2 She \w struck|strong="H4272"\w* \w through|strong="H3027"\w* \w his|strong="H7971"\w* \w head|strong="H7218"\w*. +\q2 Yes, she \w pierced|strong="H4272"\w* \w and|strong="H7971"\w* \w struck|strong="H4272"\w* \w through|strong="H3027"\w* \w his|strong="H7971"\w* \w temples|strong="H7541"\w*. +\q1 +\v 27 \w At|strong="H5307"\w* \w her|strong="H7901"\w* \w feet|strong="H7272"\w* \w he|strong="H8033"\w* \w bowed|strong="H3766"\w*, \w he|strong="H8033"\w* \w fell|strong="H5307"\w*, \w he|strong="H8033"\w* \w lay|strong="H7901"\w*. +\q2 \w At|strong="H5307"\w* \w her|strong="H7901"\w* \w feet|strong="H7272"\w* \w he|strong="H8033"\w* \w bowed|strong="H3766"\w*, \w he|strong="H8033"\w* \w fell|strong="H5307"\w*. +\q2 \w Where|strong="H8033"\w* \w he|strong="H8033"\w* \w bowed|strong="H3766"\w*, \w there|strong="H8033"\w* \w he|strong="H8033"\w* \w fell|strong="H5307"\w* \w down|strong="H7901"\w* \w dead|strong="H7703"\w*. +\b +\q1 +\v 28 “\w Through|strong="H1157"\w* \w the|strong="H1157"\w* \w window|strong="H2474"\w* \w she|strong="H2474"\w* \w looked|strong="H8259"\w* \w out|strong="H8259"\w*, \w and|strong="H7393"\w* \w cried|strong="H2980"\w*: +\q2 \w Sisera|strong="H5516"\w*’s mother \w looked|strong="H8259"\w* \w through|strong="H1157"\w* \w the|strong="H1157"\w* lattice. +\q1 ‘\w Why|strong="H4069"\w* is \w his|strong="H1157"\w* \w chariot|strong="H7393"\w* so long \w in|strong="H6471"\w* coming? +\q2 \w Why|strong="H4069"\w* do \w the|strong="H1157"\w* \w wheels|strong="H6471"\w* \w of|strong="H7393"\w* \w his|strong="H1157"\w* \w chariots|strong="H7393"\w* wait?’ +\q1 +\v 29 \w Her|strong="H7725"\w* \w wise|strong="H2450"\w* \w ladies|strong="H8282"\w* \w answered|strong="H6030"\w* \w her|strong="H7725"\w*, +\q2 Yes, \w she|strong="H1931"\w* \w returned|strong="H7725"\w* \w answer|strong="H6030"\w* \w to|strong="H7725"\w* \w herself|strong="H1931"\w*, +\q1 +\v 30 ‘\w Have|strong="H4672"\w* \w they|strong="H3808"\w* \w not|strong="H3808"\w* \w found|strong="H4672"\w*, \w have|strong="H4672"\w* \w they|strong="H3808"\w* \w not|strong="H3808"\w* \w divided|strong="H2505"\w* \w the|strong="H4672"\w* \w plunder|strong="H7998"\w*? +\q2 \w A|strong="H3068"\w* lady, \w two|strong="H7361"\w* ladies \w to|strong="H3808"\w* \w every|strong="H7218"\w* \w man|strong="H1397"\w*; +\q1 \w to|strong="H3808"\w* \w Sisera|strong="H5516"\w* \w a|strong="H3068"\w* \w plunder|strong="H7998"\w* \w of|strong="H7218"\w* \w dyed|strong="H6648"\w* garments, +\q2 \w a|strong="H3068"\w* \w plunder|strong="H7998"\w* \w of|strong="H7218"\w* \w dyed|strong="H6648"\w* garments \w embroidered|strong="H7553"\w*, +\q2 \w of|strong="H7218"\w* \w dyed|strong="H6648"\w* garments \w embroidered|strong="H7553"\w* \w on|strong="H4672"\w* both \w sides|strong="H7553"\w*, \w on|strong="H4672"\w* \w the|strong="H4672"\w* \w necks|strong="H6677"\w* \w of|strong="H7218"\w* \w the|strong="H4672"\w* \w plunder|strong="H7998"\w*?’ +\b +\q1 +\v 31 “\w So|strong="H3651"\w* \w let|strong="H3651"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* enemies perish, \w Yahweh|strong="H3068"\w*, +\q2 \w but|strong="H3651"\w* \w let|strong="H3651"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* love \w him|strong="H3318"\w* \w be|strong="H3068"\w* \w as|strong="H3651"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w* \w when|strong="H3318"\w* \w it|strong="H3651"\w* \w rises|strong="H3318"\w* \w in|strong="H8141"\w* \w its|strong="H3605"\w* \w strength|strong="H1369"\w*.” +\b +\p \w Then|strong="H3318"\w* \w the|strong="H3605"\w* land \w had|strong="H3068"\w* \w rest|strong="H8252"\w* forty \w years|strong="H8141"\w*. +\c 6 +\p +\v 1 \w The|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H8141"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w so|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w delivered|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H6213"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w Midian|strong="H4080"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w*. +\v 2 \w The|strong="H6440"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w Midian|strong="H4080"\w* \w prevailed|strong="H5810"\w* \w against|strong="H5921"\w* \w Israel|strong="H3478"\w*; \w and|strong="H1121"\w* \w because|strong="H5921"\w* \w of|strong="H1121"\w* \w Midian|strong="H4080"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w made|strong="H6213"\w* \w themselves|strong="H6213"\w* \w the|strong="H6440"\w* \w dens|strong="H4492"\w* \w which|strong="H3478"\w* \w are|strong="H1121"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w mountains|strong="H2022"\w*, \w the|strong="H6440"\w* \w caves|strong="H4631"\w*, \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w strongholds|strong="H4679"\w*. +\v 3 \w So|strong="H1961"\w* \w it|strong="H5921"\w* \w was|strong="H1961"\w*, \w when|strong="H1961"\w* \w Israel|strong="H3478"\w* \w had|strong="H1961"\w* \w sown|strong="H2232"\w*, \w that|strong="H3478"\w* \w the|strong="H5921"\w* \w Midianites|strong="H4080"\w*, \w the|strong="H5921"\w* \w Amalekites|strong="H6002"\w*, \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w east|strong="H6924"\w* \w came|strong="H1961"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 4 \w They|strong="H3808"\w* \w encamped|strong="H2583"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w*, \w and|strong="H3478"\w* \w destroyed|strong="H7843"\w* \w the|strong="H5921"\w* \w increase|strong="H2981"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* earth, \w until|strong="H5704"\w* \w you|strong="H5921"\w* \w come|strong="H3478"\w* \w to|strong="H5704"\w* \w Gaza|strong="H5804"\w*. \w They|strong="H3808"\w* \w left|strong="H7604"\w* \w no|strong="H3808"\w* \w sustenance|strong="H4241"\w* \w in|strong="H5921"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w no|strong="H3808"\w* \w sheep|strong="H7716"\w*, \w ox|strong="H7794"\w*, \w or|strong="H3808"\w* \w donkey|strong="H2543"\w*. +\v 5 \w For|strong="H3588"\w* \w they|strong="H1992"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w with|strong="H5927"\w* \w their|strong="H1992"\w* \w livestock|strong="H4735"\w* \w and|strong="H5927"\w* \w their|strong="H1992"\w* tents. \w They|strong="H1992"\w* \w came|strong="H5927"\w* \w in|strong="H5927"\w* \w as|strong="H7230"\w* locusts \w for|strong="H3588"\w* \w multitude|strong="H7230"\w*. \w Both|strong="H7230"\w* \w they|strong="H1992"\w* \w and|strong="H5927"\w* \w their|strong="H1992"\w* \w camels|strong="H1581"\w* \w were|strong="H1992"\w* \w without|strong="H3588"\w* \w number|strong="H4557"\w*; \w and|strong="H5927"\w* \w they|strong="H1992"\w* \w came|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H3588"\w* land \w to|strong="H5927"\w* \w destroy|strong="H7843"\w* \w it|strong="H3588"\w*. +\v 6 \w Israel|strong="H3478"\w* \w was|strong="H3068"\w* \w brought|strong="H1809"\w* \w very|strong="H3966"\w* \w low|strong="H1809"\w* \w because|strong="H6440"\w* \w of|strong="H1121"\w* \w Midian|strong="H4080"\w*; \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w cried|strong="H2199"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 7 \w When|strong="H3588"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w cried|strong="H2199"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w because|strong="H3588"\w* \w of|strong="H1121"\w* \w Midian|strong="H4080"\w*, +\v 8 \w Yahweh|strong="H3068"\w* \w sent|strong="H7971"\w* \w a|strong="H3068"\w* \w prophet|strong="H5030"\w* \w to|strong="H3318"\w* \w the|strong="H3541"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w and|strong="H1121"\w* \w he|strong="H3068"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w them|strong="H7971"\w*, “\w Yahweh|strong="H3068"\w*, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*, ‘\w I|strong="H3541"\w* \w brought|strong="H3318"\w* \w you|strong="H7971"\w* \w up|strong="H5927"\w* \w from|strong="H3318"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H1121"\w* \w brought|strong="H3318"\w* \w you|strong="H7971"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H3541"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w bondage|strong="H5650"\w*. +\v 9 \w I|strong="H5414"\w* \w delivered|strong="H5414"\w* \w you|strong="H5414"\w* \w out|strong="H1644"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w Egyptians|strong="H4713"\w* \w and|strong="H3027"\w* \w out|strong="H1644"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w oppressed|strong="H3905"\w* \w you|strong="H5414"\w*, \w and|strong="H3027"\w* \w drove|strong="H1644"\w* \w them|strong="H5414"\w* \w out|strong="H1644"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w*, \w and|strong="H3027"\w* \w gave|strong="H5414"\w* \w you|strong="H5414"\w* \w their|strong="H3605"\w* \w land|strong="H6440"\w*. +\v 10 \w I|strong="H3808"\w* \w said|strong="H8085"\w* \w to|strong="H3068"\w* \w you|strong="H3808"\w*, “\w I|strong="H3808"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \w You|strong="H3808"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w fear|strong="H3372"\w* \w the|strong="H8085"\w* gods \w of|strong="H3068"\w* \w the|strong="H8085"\w* Amorites, \w in|strong="H3427"\w* whose land \w you|strong="H3808"\w* \w dwell|strong="H3427"\w*.” \w But|strong="H3808"\w* \w you|strong="H3808"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w listened|strong="H8085"\w* \w to|strong="H3068"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*.’” +\p +\v 11 \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w came|strong="H3068"\w* \w and|strong="H1121"\w* \w sat|strong="H3427"\w* \w under|strong="H8478"\w* \w the|strong="H6440"\w* oak \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w in|strong="H3427"\w* \w Ophrah|strong="H6084"\w*, \w that|strong="H3068"\w* belonged \w to|strong="H3068"\w* \w Joash|strong="H3101"\w* \w the|strong="H6440"\w* Abiezrite. \w His|strong="H3068"\w* \w son|strong="H1121"\w* \w Gideon|strong="H1439"\w* \w was|strong="H3068"\w* \w beating|strong="H2251"\w* \w out|strong="H2251"\w* \w wheat|strong="H2406"\w* \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w wine|strong="H1660"\w* \w press|strong="H1660"\w*, \w to|strong="H3068"\w* \w hide|strong="H5127"\w* \w it|strong="H6440"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w Midianites|strong="H4080"\w*. +\v 12 \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w appeared|strong="H7200"\w* \w to|strong="H3068"\w* \w him|strong="H7200"\w*, \w and|strong="H3068"\w* said \w to|strong="H3068"\w* \w him|strong="H7200"\w*, “\w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w with|strong="H5973"\w* \w you|strong="H5973"\w*, \w you|strong="H5973"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w* \w of|strong="H3068"\w* \w valor|strong="H2428"\w*!” +\p +\v 13 \w Gideon|strong="H1439"\w* said \w to|strong="H3068"\w* \w him|strong="H5414"\w*, “Oh, \w my|strong="H5414"\w* \w lord|strong="H3068"\w*, \w if|strong="H3426"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w with|strong="H5973"\w* \w us|strong="H5414"\w*, \w why|strong="H4100"\w* \w then|strong="H6258"\w* \w has|strong="H3068"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w happened|strong="H4672"\w* \w to|strong="H3068"\w* \w us|strong="H5414"\w*? \w Where|strong="H4100"\w* \w are|strong="H4100"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w wondrous|strong="H6381"\w* \w works|strong="H6381"\w* \w which|strong="H3068"\w* \w our|strong="H3068"\w* fathers \w told|strong="H5608"\w* \w us|strong="H5414"\w* \w of|strong="H3068"\w*, saying, ‘Didn’t \w Yahweh|strong="H3068"\w* \w bring|strong="H5927"\w* \w us|strong="H5414"\w* \w up|strong="H5927"\w* \w from|strong="H5927"\w* \w Egypt|strong="H4714"\w*?’ \w But|strong="H3808"\w* \w now|strong="H6258"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w cast|strong="H5414"\w* \w us|strong="H5414"\w* \w off|strong="H5203"\w*, \w and|strong="H3068"\w* \w delivered|strong="H5414"\w* \w us|strong="H5414"\w* \w into|strong="H5927"\w* \w the|strong="H3605"\w* \w hand|strong="H3709"\w* \w of|strong="H3068"\w* \w Midian|strong="H4080"\w*.” +\p +\v 14 \w Yahweh|strong="H3068"\w* \w looked|strong="H6437"\w* \w at|strong="H3478"\w* \w him|strong="H7971"\w*, \w and|strong="H3478"\w* said, “\w Go|strong="H3212"\w* \w in|strong="H3478"\w* \w this|strong="H2088"\w* \w your|strong="H3068"\w* \w might|strong="H3581"\w*, \w and|strong="H3478"\w* \w save|strong="H3467"\w* \w Israel|strong="H3478"\w* \w from|strong="H3478"\w* \w the|strong="H3068"\w* \w hand|strong="H3709"\w* \w of|strong="H3068"\w* \w Midian|strong="H4080"\w*. Haven’t \w I|strong="H2088"\w* \w sent|strong="H7971"\w* \w you|strong="H7971"\w*?” +\p +\v 15 \w He|strong="H1004"\w* said \w to|strong="H3478"\w* him, “\w O|strong="H3068"\w* Lord,\f + \fr 6:15 \ft The word translated “Lord” is “Adonai.”\f* \w how|strong="H4100"\w* \w shall|strong="H3478"\w* \w I|strong="H2009"\w* \w save|strong="H3467"\w* \w Israel|strong="H3478"\w*? \w Behold|strong="H2009"\w*, \w my|strong="H3467"\w* \w family|strong="H1004"\w* \w is|strong="H4100"\w* \w the|strong="H2009"\w* \w poorest|strong="H1800"\w* \w in|strong="H3478"\w* \w Manasseh|strong="H4519"\w*, \w and|strong="H3478"\w* \w I|strong="H2009"\w* am \w the|strong="H2009"\w* \w least|strong="H6810"\w* \w in|strong="H3478"\w* \w my|strong="H3467"\w* father’s \w house|strong="H1004"\w*.” +\p +\v 16 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w him|strong="H5221"\w*, “\w Surely|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w strike|strong="H5221"\w* \w the|strong="H3588"\w* \w Midianites|strong="H4080"\w* \w as|strong="H1961"\w* \w one|strong="H1961"\w* man.” +\p +\v 17 \w He|strong="H6213"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H6213"\w*, “If \w now|strong="H4994"\w* \w I|strong="H4672"\w* \w have|strong="H5869"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H6213"\w* \w your|strong="H6213"\w* \w sight|strong="H5869"\w*, \w then|strong="H1696"\w* \w show|strong="H6213"\w* \w me|strong="H4994"\w* \w a|strong="H3068"\w* sign \w that|strong="H6213"\w* \w it|strong="H6213"\w* \w is|strong="H5869"\w* \w you|strong="H6213"\w* \w who|strong="H4672"\w* \w talk|strong="H1696"\w* \w with|strong="H5973"\w* \w me|strong="H4994"\w*. +\v 18 \w Please|strong="H4994"\w* don’t \w go|strong="H3318"\w* \w away|strong="H7725"\w* \w until|strong="H5704"\w* \w I|strong="H5704"\w* \w come|strong="H3318"\w* \w to|strong="H5704"\w* \w you|strong="H6440"\w*, \w and|strong="H7725"\w* \w bring|strong="H3318"\w* \w out|strong="H3318"\w* \w my|strong="H7725"\w* \w present|strong="H4503"\w*, \w and|strong="H7725"\w* \w lay|strong="H3240"\w* \w it|strong="H7725"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*.” +\p \w He|strong="H5704"\w* \w said|strong="H3318"\w*, “\w I|strong="H5704"\w* \w will|strong="H5704"\w* \w wait|strong="H3427"\w* \w until|strong="H5704"\w* \w you|strong="H6440"\w* \w come|strong="H3318"\w* \w back|strong="H7725"\w*.” +\p +\v 19 \w Gideon|strong="H1439"\w* \w went|strong="H3318"\w* \w in|strong="H6213"\w* \w and|strong="H6213"\w* \w prepared|strong="H6213"\w* \w a|strong="H3068"\w* \w young|strong="H1423"\w* \w goat|strong="H5795"\w* \w and|strong="H6213"\w* \w unleavened|strong="H4682"\w* \w cakes|strong="H4682"\w* \w of|strong="H8478"\w* \w an|strong="H6213"\w* ephah\f + \fr 6:19 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w of|strong="H8478"\w* \w meal|strong="H7058"\w*. \w He|strong="H6213"\w* \w put|strong="H7760"\w* \w the|strong="H6213"\w* \w meat|strong="H1320"\w* \w in|strong="H6213"\w* \w a|strong="H3068"\w* \w basket|strong="H5536"\w* \w and|strong="H6213"\w* \w he|strong="H6213"\w* \w put|strong="H7760"\w* \w the|strong="H6213"\w* \w broth|strong="H4839"\w* \w in|strong="H6213"\w* \w a|strong="H3068"\w* \w pot|strong="H6517"\w*, \w and|strong="H6213"\w* \w brought|strong="H3318"\w* \w it|strong="H7760"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H6213"\w* \w under|strong="H8478"\w* \w the|strong="H6213"\w* oak, \w and|strong="H6213"\w* \w presented|strong="H5066"\w* \w it|strong="H7760"\w*. +\p +\v 20 \w The|strong="H3947"\w* \w angel|strong="H4397"\w* \w of|strong="H4397"\w* God \w said|strong="H3651"\w* \w to|strong="H6213"\w* \w him|strong="H6213"\w*, “\w Take|strong="H3947"\w* \w the|strong="H3947"\w* \w meat|strong="H1320"\w* \w and|strong="H6213"\w* \w the|strong="H3947"\w* \w unleavened|strong="H4682"\w* \w cakes|strong="H4682"\w*, \w and|strong="H6213"\w* \w lay|strong="H3240"\w* \w them|strong="H6213"\w* \w on|strong="H6213"\w* \w this|strong="H3651"\w* \w rock|strong="H5553"\w*, \w and|strong="H6213"\w* \w pour|strong="H8210"\w* \w out|strong="H8210"\w* \w the|strong="H3947"\w* \w broth|strong="H4839"\w*.” +\p \w He|strong="H3651"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*. +\v 21 \w Then|strong="H1980"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w stretched|strong="H7971"\w* \w out|strong="H7971"\w* \w the|strong="H3068"\w* \w end|strong="H7097"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w staff|strong="H4938"\w* \w that|strong="H3068"\w* \w was|strong="H3068"\w* \w in|strong="H1980"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w*, \w and|strong="H1980"\w* \w touched|strong="H5060"\w* \w the|strong="H3068"\w* \w meat|strong="H1320"\w* \w and|strong="H1980"\w* \w the|strong="H3068"\w* \w unleavened|strong="H4682"\w* \w cakes|strong="H4682"\w*; \w and|strong="H1980"\w* fire \w went|strong="H1980"\w* \w up|strong="H5927"\w* \w out|strong="H7971"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w rock|strong="H6697"\w* \w and|strong="H1980"\w* consumed \w the|strong="H3068"\w* \w meat|strong="H1320"\w* \w and|strong="H1980"\w* \w the|strong="H3068"\w* \w unleavened|strong="H4682"\w* \w cakes|strong="H4682"\w*. \w Then|strong="H1980"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w departed|strong="H1980"\w* \w out|strong="H7971"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w sight|strong="H5869"\w*. +\p +\v 22 \w Gideon|strong="H1439"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w*; \w and|strong="H3068"\w* \w Gideon|strong="H1439"\w* \w said|strong="H3651"\w*, “Alas, \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w*! \w Because|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w seen|strong="H7200"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w face|strong="H6440"\w* \w to|strong="H3068"\w* \w face|strong="H6440"\w*!” +\p +\v 23 \w Yahweh|strong="H3068"\w* said \w to|strong="H4191"\w* \w him|strong="H4191"\w*, “\w Peace|strong="H7965"\w* \w be|strong="H4191"\w* \w to|strong="H4191"\w* \w you|strong="H3808"\w*! Don’t \w be|strong="H4191"\w* \w afraid|strong="H3372"\w*. \w You|strong="H3808"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*.” +\p +\v 24 \w Then|strong="H2088"\w* \w Gideon|strong="H1439"\w* \w built|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w there|strong="H8033"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w called|strong="H7121"\w* \w it|strong="H7121"\w* “\w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w Peace|strong="H7965"\w*.”\f + \fr 6:24 \ft or, Yahweh Shalom\f* \w To|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w* \w it|strong="H7121"\w* \w is|strong="H3068"\w* \w still|strong="H5750"\w* \w in|strong="H3068"\w* \w Ophrah|strong="H6084"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* Abiezrites. +\p +\v 25 \w That|strong="H1931"\w* \w same|strong="H1931"\w* \w night|strong="H3915"\w*, \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w him|strong="H5921"\w*, “\w Take|strong="H3947"\w* \w your|strong="H3068"\w* father’s \w bull|strong="H6499"\w*, \w even|strong="H3068"\w* \w the|strong="H5921"\w* \w second|strong="H8145"\w* \w bull|strong="H6499"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w* \w old|strong="H8141"\w*, \w and|strong="H3068"\w* throw \w down|strong="H2040"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w of|strong="H3068"\w* \w Baal|strong="H1168"\w* \w that|strong="H1931"\w* \w your|strong="H3068"\w* father \w has|strong="H3068"\w*, \w and|strong="H3068"\w* \w cut|strong="H3772"\w* \w down|strong="H2040"\w* \w the|strong="H5921"\w* Asherah \w that|strong="H1931"\w* \w is|strong="H3068"\w* \w by|strong="H5921"\w* \w it|strong="H1931"\w*. +\v 26 \w Then|strong="H2088"\w* \w build|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w top|strong="H7218"\w* \w of|strong="H3068"\w* \w this|strong="H2088"\w* \w stronghold|strong="H4581"\w*, \w in|strong="H5921"\w* \w an|strong="H1129"\w* \w orderly|strong="H4634"\w* \w way|strong="H2088"\w*, \w and|strong="H3068"\w* \w take|strong="H3947"\w* \w the|strong="H5921"\w* \w second|strong="H8145"\w* \w bull|strong="H6499"\w*, \w and|strong="H3068"\w* \w offer|strong="H5927"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w with|strong="H3068"\w* \w the|strong="H5921"\w* \w wood|strong="H6086"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* Asherah \w which|strong="H3068"\w* \w you|strong="H5921"\w* \w shall|strong="H3068"\w* \w cut|strong="H3772"\w* \w down|strong="H3772"\w*.” +\p +\v 27 \w Then|strong="H1961"\w* \w Gideon|strong="H1439"\w* \w took|strong="H3947"\w* \w ten|strong="H6235"\w* \w men|strong="H5650"\w* \w of|strong="H1004"\w* \w his|strong="H3068"\w* \w servants|strong="H5650"\w*, \w and|strong="H3068"\w* \w did|strong="H6213"\w* \w as|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H6213"\w*. \w Because|strong="H3068"\w* \w he|strong="H6213"\w* \w feared|strong="H3372"\w* \w his|strong="H3068"\w* father’s \w household|strong="H1004"\w* \w and|strong="H3068"\w* \w the|strong="H3947"\w* \w men|strong="H5650"\w* \w of|strong="H1004"\w* \w the|strong="H3947"\w* \w city|strong="H5892"\w*, \w he|strong="H6213"\w* \w could|strong="H3915"\w* \w not|strong="H6213"\w* \w do|strong="H6213"\w* \w it|strong="H6213"\w* \w by|strong="H3068"\w* \w day|strong="H3119"\w*, \w but|strong="H1961"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w* \w it|strong="H6213"\w* \w by|strong="H3068"\w* \w night|strong="H3915"\w*. +\p +\v 28 \w When|strong="H5927"\w* \w the|strong="H5921"\w* \w men|strong="H3772"\w* \w of|strong="H5892"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w arose|strong="H7925"\w* \w early|strong="H7925"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w morning|strong="H1242"\w*, \w behold|strong="H2009"\w*, \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w of|strong="H5892"\w* \w Baal|strong="H1168"\w* \w was|strong="H5892"\w* \w broken|strong="H5422"\w* \w down|strong="H5422"\w*, \w and|strong="H5892"\w* \w the|strong="H5921"\w* Asherah \w was|strong="H5892"\w* \w cut|strong="H3772"\w* \w down|strong="H5422"\w* \w that|strong="H5892"\w* \w was|strong="H5892"\w* \w by|strong="H5921"\w* \w it|strong="H5921"\w*, \w and|strong="H5892"\w* \w the|strong="H5921"\w* \w second|strong="H8145"\w* \w bull|strong="H6499"\w* \w was|strong="H5892"\w* \w offered|strong="H5927"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w that|strong="H5892"\w* \w was|strong="H5892"\w* \w built|strong="H1129"\w*. +\v 29 \w They|strong="H6213"\w* \w said|strong="H1697"\w* \w to|strong="H6213"\w* \w one|strong="H2088"\w* \w another|strong="H7453"\w*, “\w Who|strong="H4310"\w* \w has|strong="H4310"\w* \w done|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*?” +\p \w When|strong="H6213"\w* \w they|strong="H6213"\w* \w inquired|strong="H1875"\w* \w and|strong="H1121"\w* \w asked|strong="H1697"\w*, \w they|strong="H6213"\w* \w said|strong="H1697"\w*, “\w Gideon|strong="H1439"\w* \w the|strong="H6213"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joash|strong="H3101"\w* \w has|strong="H4310"\w* \w done|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*.” +\p +\v 30 \w Then|strong="H3318"\w* \w the|strong="H5921"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w Joash|strong="H3101"\w*, “\w Bring|strong="H3318"\w* \w out|strong="H3318"\w* \w your|strong="H5921"\w* \w son|strong="H1121"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w may|strong="H1121"\w* \w die|strong="H4191"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w broken|strong="H5422"\w* \w down|strong="H5422"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w of|strong="H1121"\w* \w Baal|strong="H1168"\w*, \w and|strong="H1121"\w* \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w cut|strong="H3772"\w* \w down|strong="H5422"\w* \w the|strong="H5921"\w* Asherah \w that|strong="H3588"\w* \w was|strong="H5892"\w* \w by|strong="H5921"\w* \w it|strong="H5921"\w*.” +\v 31 \w Joash|strong="H3101"\w* said \w to|strong="H5704"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w stood|strong="H5975"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*, “\w Will|strong="H1931"\w* \w you|strong="H3588"\w* \w contend|strong="H7378"\w* \w for|strong="H3588"\w* \w Baal|strong="H1168"\w*? \w Or|strong="H5704"\w* \w will|strong="H1931"\w* \w you|strong="H3588"\w* \w save|strong="H3467"\w* \w him|strong="H5921"\w*? \w He|strong="H1931"\w* \w who|strong="H3605"\w* \w will|strong="H1931"\w* \w contend|strong="H7378"\w* \w for|strong="H3588"\w* \w him|strong="H5921"\w*, let \w him|strong="H5921"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H5704"\w* \w death|strong="H4191"\w* \w by|strong="H5921"\w* \w morning|strong="H1242"\w*! \w If|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* god, let \w him|strong="H5921"\w* \w contend|strong="H7378"\w* \w for|strong="H3588"\w* \w himself|strong="H1931"\w*, \w because|strong="H3588"\w* \w someone|strong="H4191"\w* \w has|strong="H3588"\w* \w broken|strong="H5422"\w* \w down|strong="H5422"\w* \w his|strong="H3605"\w* \w altar|strong="H4196"\w*!” +\v 32 \w Therefore|strong="H3588"\w* \w on|strong="H3117"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w* \w he|strong="H1931"\w* \w named|strong="H7121"\w* \w him|strong="H7121"\w* \w Jerub-Baal|strong="H3378"\w*,\f + \fr 6:32 \ft “Jerub-Baal” means “Let Baal contend”.\f* saying, “Let \w Baal|strong="H1168"\w* \w contend|strong="H7378"\w* \w against|strong="H7378"\w* \w him|strong="H7121"\w*, \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w has|strong="H3117"\w* \w broken|strong="H5422"\w* \w down|strong="H5422"\w* \w his|strong="H7121"\w* \w altar|strong="H4196"\w*.” +\p +\v 33 \w Then|strong="H5674"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Midianites|strong="H4080"\w* \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w Amalekites|strong="H6002"\w* \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w east|strong="H6924"\w* \w assembled|strong="H3605"\w* themselves \w together|strong="H3162"\w*; \w and|strong="H1121"\w* \w they|strong="H3605"\w* \w passed|strong="H5674"\w* \w over|strong="H5674"\w*, \w and|strong="H1121"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w the|strong="H3605"\w* \w valley|strong="H6010"\w* \w of|strong="H1121"\w* \w Jezreel|strong="H3157"\w*. +\v 34 \w But|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w* \w came|strong="H3068"\w* \w on|strong="H3847"\w* \w Gideon|strong="H1439"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w blew|strong="H8628"\w* \w a|strong="H3068"\w* \w trumpet|strong="H7782"\w*; \w and|strong="H3068"\w* Abiezer \w was|strong="H3068"\w* \w gathered|strong="H2199"\w* \w together|strong="H2199"\w* \w to|strong="H3068"\w* \w follow|strong="H3068"\w* \w him|strong="H8628"\w*. +\v 35 \w He|strong="H1931"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w Manasseh|strong="H4519"\w*, \w and|strong="H7971"\w* \w they|strong="H1931"\w* \w also|strong="H1571"\w* \w were|strong="H1571"\w* \w gathered|strong="H2199"\w* \w together|strong="H2199"\w* \w to|strong="H7971"\w* follow \w him|strong="H7971"\w*. \w He|strong="H1931"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H7971"\w* Asher, \w to|strong="H7971"\w* \w Zebulun|strong="H2074"\w*, \w and|strong="H7971"\w* \w to|strong="H7971"\w* \w Naphtali|strong="H5321"\w*; \w and|strong="H7971"\w* \w they|strong="H1931"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H7971"\w* \w meet|strong="H7125"\w* \w them|strong="H7971"\w*. +\p +\v 36 \w Gideon|strong="H1439"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w God|strong="H3027"\w*, “\w If|strong="H3426"\w* \w you|strong="H3027"\w* \w will|strong="H3478"\w* \w save|strong="H3467"\w* \w Israel|strong="H3478"\w* \w by|strong="H3027"\w* \w my|strong="H1696"\w* \w hand|strong="H3027"\w*, \w as|strong="H1696"\w* \w you|strong="H3027"\w* \w have|strong="H3426"\w* \w spoken|strong="H1696"\w*, +\v 37 \w behold|strong="H2009"\w*, \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w put|strong="H3322"\w* \w a|strong="H3068"\w* \w fleece|strong="H1492"\w* \w of|strong="H3027"\w* \w wool|strong="H6785"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w*. \w If|strong="H3588"\w* \w there|strong="H2009"\w* \w is|strong="H3027"\w* \w dew|strong="H2919"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w fleece|strong="H1492"\w* \w only|strong="H3588"\w*, \w and|strong="H3478"\w* \w it|strong="H5921"\w* \w is|strong="H3027"\w* \w dry|strong="H2721"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* ground, \w then|strong="H1961"\w* \w I|strong="H3588"\w*’ll \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H1961"\w* \w save|strong="H3467"\w* \w Israel|strong="H3478"\w* \w by|strong="H3027"\w* \w my|strong="H3605"\w* \w hand|strong="H3027"\w*, \w as|strong="H1961"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w spoken|strong="H1696"\w*.” +\p +\v 38 \w It|strong="H4393"\w* \w was|strong="H1961"\w* \w so|strong="H3651"\w*; \w for|strong="H4325"\w* \w he|strong="H3651"\w* \w rose|strong="H7925"\w* \w up|strong="H7925"\w* \w early|strong="H7925"\w* \w on|strong="H1961"\w* \w the|strong="H4480"\w* \w next|strong="H4283"\w* \w day|strong="H4283"\w*, \w and|strong="H7925"\w* \w pressed|strong="H1961"\w* \w the|strong="H4480"\w* \w fleece|strong="H1492"\w* \w together|strong="H2115"\w*, \w and|strong="H7925"\w* wrung \w the|strong="H4480"\w* \w dew|strong="H2919"\w* \w out|strong="H4480"\w* \w of|strong="H4325"\w* \w the|strong="H4480"\w* \w fleece|strong="H1492"\w*, \w a|strong="H3068"\w* \w bowl|strong="H5602"\w* \w full|strong="H4393"\w* \w of|strong="H4325"\w* \w water|strong="H4325"\w*. +\p +\v 39 \w Gideon|strong="H1439"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* God, “Don’t \w let|strong="H4994"\w* \w your|strong="H3605"\w* anger \w be|strong="H1961"\w* \w kindled|strong="H2734"\w* \w against|strong="H5921"\w* \w me|strong="H4994"\w*, \w and|strong="H1696"\w* \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w speak|strong="H1696"\w* \w but|strong="H7535"\w* \w this|strong="H1696"\w* \w once|strong="H6471"\w*. \w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w me|strong="H4994"\w* \w make|strong="H5254"\w* \w a|strong="H3068"\w* trial \w just|strong="H3605"\w* \w this|strong="H1696"\w* \w once|strong="H6471"\w* \w with|strong="H1696"\w* \w the|strong="H3605"\w* \w fleece|strong="H1492"\w*. \w Let|strong="H4994"\w* \w it|strong="H5921"\w* \w now|strong="H4994"\w* \w be|strong="H1961"\w* \w dry|strong="H2721"\w* \w only|strong="H7535"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w fleece|strong="H1492"\w*, \w and|strong="H1696"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* ground \w let|strong="H4994"\w* \w there|strong="H1961"\w* \w be|strong="H1961"\w* \w dew|strong="H2919"\w*.” +\p +\v 40 God \w did|strong="H6213"\w* \w so|strong="H3651"\w* \w that|strong="H3605"\w* \w night|strong="H3915"\w*; \w for|strong="H5921"\w* \w it|strong="H1931"\w* \w was|strong="H1961"\w* \w dry|strong="H2721"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w fleece|strong="H1492"\w* \w only|strong="H3605"\w*, \w and|strong="H3915"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w dew|strong="H2919"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* ground. +\c 7 +\p +\v 1 \w Then|strong="H1961"\w* \w Jerubbaal|strong="H3378"\w*, \w who|strong="H3605"\w* \w is|strong="H1931"\w* \w Gideon|strong="H1439"\w*, \w and|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w with|strong="H5921"\w* \w him|strong="H5921"\w*, \w rose|strong="H7925"\w* \w up|strong="H7925"\w* \w early|strong="H7925"\w* \w and|strong="H5971"\w* \w encamped|strong="H2583"\w* \w beside|strong="H5921"\w* \w the|strong="H3605"\w* spring \w of|strong="H6010"\w* \w Harod|strong="H5878"\w*. \w Midian|strong="H4080"\w*’s \w camp|strong="H4264"\w* \w was|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w north|strong="H6828"\w* \w side|strong="H6828"\w* \w of|strong="H6010"\w* \w them|strong="H5921"\w*, \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w hill|strong="H1389"\w* \w of|strong="H6010"\w* \w Moreh|strong="H4176"\w*, \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w valley|strong="H6010"\w*. +\v 2 \w Yahweh|strong="H3068"\w* said \w to|strong="H3478"\w* \w Gideon|strong="H1439"\w*, “\w The|strong="H5921"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w are|strong="H5971"\w* \w with|strong="H3068"\w* \w you|strong="H5414"\w* \w are|strong="H5971"\w* \w too|strong="H5921"\w* \w many|strong="H7227"\w* \w for|strong="H5921"\w* \w me|strong="H5414"\w* \w to|strong="H3478"\w* \w give|strong="H5414"\w* \w the|strong="H5921"\w* \w Midianites|strong="H4080"\w* \w into|strong="H5921"\w* \w their|strong="H3068"\w* \w hand|strong="H3027"\w*, \w lest|strong="H6435"\w* \w Israel|strong="H3478"\w* \w brag|strong="H6286"\w* \w against|strong="H5921"\w* \w me|strong="H5414"\w*, saying, ‘\w My|strong="H5414"\w* \w own|strong="H5971"\w* \w hand|strong="H3027"\w* \w has|strong="H3068"\w* \w saved|strong="H3467"\w* \w me|strong="H5414"\w*.’ +\v 3 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w proclaim|strong="H7121"\w* \w in|strong="H7604"\w* \w the|strong="H4480"\w* ears \w of|strong="H2022"\w* \w the|strong="H4480"\w* \w people|strong="H5971"\w*, saying, ‘\w Whoever|strong="H4310"\w* \w is|strong="H4310"\w* \w fearful|strong="H3373"\w* \w and|strong="H6242"\w* \w trembling|strong="H2730"\w*, \w let|strong="H4994"\w* \w him|strong="H7121"\w* \w return|strong="H7725"\w* \w and|strong="H6242"\w* \w depart|strong="H6852"\w* \w from|strong="H4480"\w* \w Mount|strong="H2022"\w* \w Gilead|strong="H1568"\w*.’” \w So|strong="H4480"\w* \w twenty-two|strong="H6242"\w* thousand \w of|strong="H2022"\w* \w the|strong="H4480"\w* \w people|strong="H5971"\w* \w returned|strong="H7725"\w*, \w and|strong="H6242"\w* \w ten|strong="H6235"\w* thousand \w remained|strong="H7604"\w*. +\p +\v 4 \w Yahweh|strong="H3068"\w* said \w to|strong="H3381"\w* \w Gideon|strong="H1439"\w*, “\w There|strong="H8033"\w* \w are|strong="H5971"\w* \w still|strong="H5750"\w* \w too|strong="H1961"\w* \w many|strong="H7227"\w* \w people|strong="H5971"\w*. \w Bring|strong="H3381"\w* \w them|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3605"\w* \w water|strong="H4325"\w*, \w and|strong="H3068"\w* \w I|strong="H2088"\w* \w will|strong="H3068"\w* \w test|strong="H6884"\w* \w them|strong="H3381"\w* \w for|strong="H3068"\w* \w you|strong="H3605"\w* \w there|strong="H8033"\w*. \w It|strong="H1931"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w*, \w that|strong="H5971"\w* \w those|strong="H3605"\w* \w whom|strong="H5971"\w* \w I|strong="H2088"\w* \w tell|strong="H3605"\w* \w you|strong="H3605"\w*, ‘\w This|strong="H2088"\w* \w shall|strong="H3068"\w* \w go|strong="H3212"\w* \w with|strong="H5973"\w* \w you|strong="H3605"\w*,’ \w shall|strong="H3068"\w* \w go|strong="H3212"\w* \w with|strong="H5973"\w* \w you|strong="H3605"\w*; \w and|strong="H3068"\w* \w whoever|strong="H3605"\w* \w I|strong="H2088"\w* \w tell|strong="H3605"\w* \w you|strong="H3605"\w*, ‘\w This|strong="H2088"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w go|strong="H3212"\w* \w with|strong="H5973"\w* \w you|strong="H3605"\w*,’ \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w go|strong="H3212"\w*.” +\v 5 \w So|strong="H4480"\w* \w he|strong="H3068"\w* \w brought|strong="H3381"\w* \w down|strong="H3381"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w to|strong="H3381"\w* \w the|strong="H3605"\w* \w water|strong="H4325"\w*; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* said \w to|strong="H3381"\w* \w Gideon|strong="H1439"\w*, “\w Everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w laps|strong="H3952"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w water|strong="H4325"\w* \w with|strong="H3068"\w* \w his|strong="H3605"\w* \w tongue|strong="H3956"\w*, \w like|strong="H3381"\w* \w a|strong="H3068"\w* \w dog|strong="H3611"\w* \w laps|strong="H3952"\w*, \w you|strong="H3605"\w* \w shall|strong="H3068"\w* \w set|strong="H3322"\w* \w him|strong="H5921"\w* \w by|strong="H5921"\w* \w himself|strong="H8354"\w*; \w likewise|strong="H3068"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* bows \w down|strong="H3381"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w knees|strong="H1290"\w* \w to|strong="H3381"\w* \w drink|strong="H8354"\w*.” +\v 6 \w The|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H3027"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w lapped|strong="H3952"\w*, putting \w their|strong="H3605"\w* \w hand|strong="H3027"\w* \w to|strong="H1961"\w* \w their|strong="H3605"\w* \w mouth|strong="H6310"\w*, \w was|strong="H1961"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w men|strong="H5971"\w*; \w but|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w bowed|strong="H3766"\w* \w down|strong="H3766"\w* \w on|strong="H5921"\w* \w their|strong="H3605"\w* \w knees|strong="H1290"\w* \w to|strong="H1961"\w* \w drink|strong="H8354"\w* \w water|strong="H4325"\w*. +\v 7 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Gideon|strong="H1439"\w*, “\w I|strong="H5414"\w* \w will|strong="H3068"\w* \w save|strong="H3467"\w* \w you|strong="H5414"\w* \w by|strong="H3027"\w* \w the|strong="H3605"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w men|strong="H5971"\w* \w who|strong="H3605"\w* \w lapped|strong="H3952"\w*, \w and|strong="H3967"\w* \w deliver|strong="H5414"\w* \w the|strong="H3605"\w* \w Midianites|strong="H4080"\w* \w into|strong="H3212"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*. \w Let|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w other|strong="H3605"\w* \w people|strong="H5971"\w* \w go|strong="H3212"\w*, \w each|strong="H3605"\w* \w to|strong="H3068"\w* \w his|strong="H3605"\w* \w own|strong="H5971"\w* \w place|strong="H4725"\w*.” +\p +\v 8 \w So|strong="H3947"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w took|strong="H3947"\w* \w food|strong="H6720"\w* \w in|strong="H3478"\w* \w their|strong="H3605"\w* \w hand|strong="H3027"\w*, \w and|strong="H3967"\w* \w their|strong="H3605"\w* \w trumpets|strong="H7782"\w*; \w and|strong="H3967"\w* \w he|strong="H3605"\w* \w sent|strong="H7971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w rest|strong="H1961"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w men|strong="H5971"\w* \w of|strong="H3027"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w their|strong="H3605"\w* \w own|strong="H1961"\w* \w tents|strong="H4264"\w*, \w but|strong="H1961"\w* \w retained|strong="H2388"\w* \w the|strong="H3605"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w men|strong="H5971"\w*; \w and|strong="H3967"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w of|strong="H3027"\w* \w Midian|strong="H4080"\w* \w was|strong="H1961"\w* \w beneath|strong="H8478"\w* \w him|strong="H7971"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w valley|strong="H6010"\w*. +\v 9 \w That|strong="H3588"\w* \w same|strong="H1931"\w* \w night|strong="H3915"\w*, \w Yahweh|strong="H3068"\w* said \w to|strong="H3381"\w* \w him|strong="H5414"\w*, “\w Arise|strong="H6965"\w*, \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w the|strong="H3588"\w* \w camp|strong="H4264"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w delivered|strong="H5414"\w* \w it|strong="H5414"\w* \w into|strong="H3381"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*. +\v 10 But if \w you|strong="H3381"\w* \w are|strong="H5288"\w* \w afraid|strong="H3373"\w* \w to|strong="H3381"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w*, \w go|strong="H3381"\w* \w with|strong="H3381"\w* \w Purah|strong="H6513"\w* \w your|strong="H3381"\w* \w servant|strong="H5288"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3373"\w* \w camp|strong="H4264"\w*. +\v 11 \w You|strong="H4100"\w* \w will|strong="H3027"\w* \w hear|strong="H8085"\w* \w what|strong="H4100"\w* \w they|strong="H4100"\w* \w say|strong="H1696"\w*; \w and|strong="H3027"\w* afterward \w your|strong="H8085"\w* \w hands|strong="H3027"\w* \w will|strong="H3027"\w* \w be|strong="H3027"\w* \w strengthened|strong="H2388"\w* \w to|strong="H1696"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w the|strong="H8085"\w* \w camp|strong="H4264"\w*.” \w Then|strong="H1696"\w* \w went|strong="H3381"\w* \w he|strong="H1931"\w* \w down|strong="H3381"\w* \w with|strong="H1696"\w* \w Purah|strong="H6513"\w* \w his|strong="H8085"\w* \w servant|strong="H5288"\w* \w to|strong="H1696"\w* \w the|strong="H8085"\w* outermost \w part|strong="H7097"\w* \w of|strong="H3027"\w* \w the|strong="H8085"\w* \w armed|strong="H2571"\w* \w men|strong="H5288"\w* \w who|strong="H1931"\w* \w were|strong="H3027"\w* \w in|strong="H8085"\w* \w the|strong="H8085"\w* \w camp|strong="H4264"\w*. +\p +\v 12 \w The|strong="H3605"\w* \w Midianites|strong="H4080"\w* \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w Amalekites|strong="H6002"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w east|strong="H6924"\w* \w lay|strong="H5307"\w* \w along|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w valley|strong="H6010"\w* \w like|strong="H1121"\w* locusts \w for|strong="H5921"\w* \w multitude|strong="H7230"\w*; \w and|strong="H1121"\w* \w their|strong="H3605"\w* \w camels|strong="H1581"\w* \w were|strong="H1121"\w* \w without|strong="H7230"\w* \w number|strong="H4557"\w*, \w as|strong="H7230"\w* \w the|strong="H3605"\w* \w sand|strong="H2344"\w* \w which|strong="H2344"\w* \w is|strong="H3605"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w seashore|strong="H3220"\w* \w for|strong="H5921"\w* \w multitude|strong="H7230"\w*. +\p +\v 13 \w When|strong="H5704"\w* \w Gideon|strong="H1439"\w* \w had|strong="H2492"\w* \w come|strong="H5307"\w*, \w behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w was|strong="H1439"\w* \w a|strong="H3068"\w* \w man|strong="H5307"\w* \w telling|strong="H5608"\w* \w a|strong="H3068"\w* \w dream|strong="H2472"\w* \w to|strong="H5704"\w* \w his|strong="H5221"\w* \w fellow|strong="H7453"\w*. \w He|strong="H5704"\w* said, “\w Behold|strong="H2009"\w*, \w I|strong="H5704"\w* \w dreamed|strong="H2492"\w* \w a|strong="H3068"\w* \w dream|strong="H2472"\w*; \w and|strong="H3899"\w* \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w cake|strong="H6742"\w* \w of|strong="H4264"\w* \w barley|strong="H8184"\w* \w bread|strong="H3899"\w* \w tumbled|strong="H2015"\w* \w into|strong="H2015"\w* \w the|strong="H5221"\w* \w camp|strong="H4264"\w* \w of|strong="H4264"\w* \w Midian|strong="H4080"\w*, \w came|strong="H2015"\w* \w to|strong="H5704"\w* \w the|strong="H5221"\w* tent, \w and|strong="H3899"\w* \w struck|strong="H5221"\w* \w it|strong="H5221"\w* \w so|strong="H5704"\w* \w that|strong="H5307"\w* \w it|strong="H5221"\w* \w fell|strong="H5307"\w*, \w and|strong="H3899"\w* \w turned|strong="H2015"\w* \w it|strong="H5221"\w* \w upside|strong="H4605"\w* \w down|strong="H5307"\w*, \w so|strong="H5704"\w* \w that|strong="H5307"\w* \w the|strong="H5221"\w* tent \w lay|strong="H5307"\w* \w flat|strong="H5307"\w*.” +\p +\v 14 \w His|strong="H3605"\w* \w fellow|strong="H7453"\w* \w answered|strong="H6030"\w*, “\w This|strong="H2063"\w* \w is|strong="H3027"\w* \w nothing|strong="H1115"\w* \w other|strong="H7453"\w* \w than|strong="H3605"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w* \w of|strong="H1121"\w* \w Gideon|strong="H1439"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joash|strong="H3101"\w*, \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w God|strong="H5414"\w* \w has|strong="H3478"\w* \w delivered|strong="H5414"\w* \w Midian|strong="H4080"\w* \w into|strong="H2719"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*, \w with|strong="H3027"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H4264"\w*.” +\p +\v 15 \w It|strong="H5414"\w* \w was|strong="H3068"\w* \w so|strong="H1961"\w*, \w when|strong="H3588"\w* \w Gideon|strong="H1439"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w telling|strong="H4557"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* \w dream|strong="H2472"\w* \w and|strong="H6965"\w* \w its|strong="H5414"\w* \w interpretation|strong="H7667"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w worshiped|strong="H7812"\w*. \w Then|strong="H1961"\w* \w he|strong="H3588"\w* \w returned|strong="H7725"\w* \w into|strong="H7725"\w* \w the|strong="H8085"\w* \w camp|strong="H4264"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w and|strong="H6965"\w* \w said|strong="H8085"\w*, “\w Arise|strong="H6965"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w delivered|strong="H5414"\w* \w the|strong="H8085"\w* \w army|strong="H4264"\w* \w of|strong="H3068"\w* \w Midian|strong="H4080"\w* \w into|strong="H7725"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*!” +\p +\v 16 \w He|strong="H3605"\w* \w divided|strong="H2673"\w* \w the|strong="H3605"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w men|strong="H7218"\w* \w into|strong="H8432"\w* \w three|strong="H7969"\w* \w companies|strong="H7218"\w*, \w and|strong="H3967"\w* \w he|strong="H3605"\w* \w put|strong="H5414"\w* \w into|strong="H8432"\w* \w the|strong="H3605"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w all|strong="H3605"\w* \w of|strong="H3027"\w* \w them|strong="H5414"\w* \w trumpets|strong="H7782"\w* \w and|strong="H3967"\w* \w empty|strong="H7386"\w* \w pitchers|strong="H3537"\w*, \w with|strong="H3027"\w* \w torches|strong="H3940"\w* \w within|strong="H8432"\w* \w the|strong="H3605"\w* \w pitchers|strong="H3537"\w*. +\p +\v 17 \w He|strong="H3651"\w* \w said|strong="H3651"\w* \w to|strong="H1961"\w* \w them|strong="H6213"\w*, “\w Watch|strong="H7200"\w* \w me|strong="H7200"\w*, \w and|strong="H7200"\w* \w do|strong="H6213"\w* \w likewise|strong="H3651"\w*. \w Behold|strong="H2009"\w*, \w when|strong="H1961"\w* \w I|strong="H2009"\w* \w come|strong="H1961"\w* \w to|strong="H1961"\w* \w the|strong="H7200"\w* outermost \w part|strong="H7097"\w* \w of|strong="H4480"\w* \w the|strong="H7200"\w* \w camp|strong="H4264"\w*, \w it|strong="H6213"\w* \w shall|strong="H6213"\w* \w be|strong="H1961"\w* \w that|strong="H7200"\w*, \w as|strong="H1961"\w* \w I|strong="H2009"\w* \w do|strong="H6213"\w*, \w so|strong="H3651"\w* \w you|strong="H6213"\w* \w shall|strong="H6213"\w* \w do|strong="H6213"\w*. +\v 18 \w When|strong="H3068"\w* \w I|strong="H1571"\w* \w blow|strong="H8628"\w* \w the|strong="H3605"\w* \w trumpet|strong="H7782"\w*, \w I|strong="H1571"\w* \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H3068"\w* \w with|strong="H3068"\w* \w me|strong="H1571"\w*, \w then|strong="H1571"\w* \w blow|strong="H8628"\w* \w the|strong="H3605"\w* \w trumpets|strong="H7782"\w* \w also|strong="H1571"\w* \w on|strong="H3068"\w* \w every|strong="H3605"\w* \w side|strong="H5439"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w*, \w and|strong="H3068"\w* shout, ‘\w For|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w for|strong="H3068"\w* \w Gideon|strong="H1439"\w*!’” +\p +\v 19 \w So|strong="H6965"\w* \w Gideon|strong="H1439"\w* \w and|strong="H3967"\w* \w the|strong="H8104"\w* \w hundred|strong="H3967"\w* \w men|strong="H7218"\w* \w who|strong="H8104"\w* \w were|strong="H3027"\w* \w with|strong="H3027"\w* \w him|strong="H3027"\w* came \w to|strong="H8104"\w* \w the|strong="H8104"\w* outermost \w part|strong="H7097"\w* \w of|strong="H3027"\w* \w the|strong="H8104"\w* \w camp|strong="H4264"\w* \w in|strong="H3027"\w* \w the|strong="H8104"\w* \w beginning|strong="H7218"\w* \w of|strong="H3027"\w* \w the|strong="H8104"\w* \w middle|strong="H8484"\w* \w watch|strong="H8104"\w*, \w when|strong="H8628"\w* \w they|strong="H3027"\w* \w had|strong="H3027"\w* but \w newly|strong="H6965"\w* \w set|strong="H6965"\w* \w the|strong="H8104"\w* \w watch|strong="H8104"\w*. \w Then|strong="H6965"\w* \w they|strong="H3027"\w* \w blew|strong="H8628"\w* \w the|strong="H8104"\w* \w trumpets|strong="H7782"\w* \w and|strong="H3967"\w* broke \w in|strong="H3027"\w* \w pieces|strong="H5310"\w* \w the|strong="H8104"\w* \w pitchers|strong="H3537"\w* \w that|strong="H3027"\w* \w were|strong="H3027"\w* \w in|strong="H3027"\w* \w their|strong="H8104"\w* \w hands|strong="H3027"\w*. +\v 20 \w The|strong="H3068"\w* \w three|strong="H7969"\w* \w companies|strong="H7218"\w* \w blew|strong="H8628"\w* \w the|strong="H3068"\w* \w trumpets|strong="H7782"\w*, \w broke|strong="H7665"\w* \w the|strong="H3068"\w* \w pitchers|strong="H3537"\w*, \w and|strong="H3068"\w* \w held|strong="H2388"\w* \w the|strong="H3068"\w* \w torches|strong="H3940"\w* \w in|strong="H3068"\w* \w their|strong="H3068"\w* \w left|strong="H8040"\w* \w hands|strong="H3027"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w trumpets|strong="H7782"\w* \w in|strong="H3068"\w* \w their|strong="H3068"\w* \w right|strong="H3225"\w* \w hands|strong="H3027"\w* \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w to|strong="H3068"\w* \w blow|strong="H8628"\w*; \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w shouted|strong="H7121"\w*, “\w The|strong="H3068"\w* \w sword|strong="H2719"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w Gideon|strong="H1439"\w*!” +\v 21 \w They|strong="H7323"\w* \w each|strong="H3605"\w* \w stood|strong="H5975"\w* \w in|strong="H5975"\w* \w his|strong="H3605"\w* \w place|strong="H8478"\w* \w around|strong="H5439"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w*, \w and|strong="H5975"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H4264"\w* \w ran|strong="H7323"\w*; \w and|strong="H5975"\w* \w they|strong="H7323"\w* \w shouted|strong="H7321"\w*, \w and|strong="H5975"\w* \w put|strong="H5127"\w* \w them|strong="H5975"\w* \w to|strong="H5127"\w* \w flight|strong="H5127"\w*. +\v 22 \w They|strong="H3068"\w* \w blew|strong="H8628"\w* \w the|strong="H3605"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w trumpets|strong="H7782"\w*, \w and|strong="H3967"\w* \w Yahweh|strong="H3068"\w* \w set|strong="H7760"\w* \w every|strong="H3605"\w* \w man|strong="H3605"\w*’s \w sword|strong="H2719"\w* \w against|strong="H5921"\w* \w his|strong="H3605"\w* \w fellow|strong="H7453"\w* \w and|strong="H3967"\w* \w against|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H4264"\w*; \w and|strong="H3967"\w* \w the|strong="H3605"\w* \w army|strong="H4264"\w* \w fled|strong="H5127"\w* \w as|strong="H5704"\w* \w far|strong="H5704"\w* \w as|strong="H5704"\w* Beth Shittah \w toward|strong="H5921"\w* \w Zererah|strong="H6888"\w*, \w as|strong="H5704"\w* \w far|strong="H5704"\w* \w as|strong="H5704"\w* \w the|strong="H3605"\w* \w border|strong="H8193"\w* \w of|strong="H3068"\w* Abel Meholah, \w by|strong="H5921"\w* \w Tabbath|strong="H2888"\w*. +\v 23 \w The|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H4480"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w gathered|strong="H6817"\w* \w together|strong="H6817"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w Naphtali|strong="H5321"\w*, \w out|strong="H4480"\w* \w of|strong="H4480"\w* Asher, \w and|strong="H3478"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w all|strong="H3605"\w* \w Manasseh|strong="H4519"\w*, \w and|strong="H3478"\w* \w pursued|strong="H7291"\w* \w Midian|strong="H4080"\w*. +\v 24 \w Gideon|strong="H1439"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H2022"\w* Ephraim, saying, “\w Come|strong="H3381"\w* \w down|strong="H3381"\w* \w against|strong="H7125"\w* \w Midian|strong="H4080"\w* \w and|strong="H7971"\w* \w take|strong="H3920"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w before|strong="H5704"\w* \w them|strong="H7971"\w* \w as|strong="H5704"\w* \w far|strong="H5704"\w* \w as|strong="H5704"\w* Beth Barah, \w even|strong="H5704"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*!” \w So|strong="H7971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H2022"\w* Ephraim \w were|strong="H4325"\w* \w gathered|strong="H6817"\w* \w together|strong="H6817"\w* \w and|strong="H7971"\w* \w took|strong="H3920"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w as|strong="H5704"\w* \w far|strong="H5704"\w* \w as|strong="H5704"\w* Beth Barah, \w even|strong="H5704"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*. +\v 25 \w They|strong="H3920"\w* \w took|strong="H3920"\w* \w the|strong="H5676"\w* \w two|strong="H8147"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w Midian|strong="H4080"\w*, \w Oreb|strong="H6159"\w* \w and|strong="H7218"\w* \w Zeeb|strong="H2062"\w*. \w They|strong="H3920"\w* \w killed|strong="H2026"\w* \w Oreb|strong="H6159"\w* \w at|strong="H3383"\w* \w Oreb|strong="H6159"\w*’s \w rock|strong="H6697"\w*, \w and|strong="H7218"\w* \w Zeeb|strong="H2062"\w* \w they|strong="H3920"\w* \w killed|strong="H2026"\w* \w at|strong="H3383"\w* \w Zeeb|strong="H2062"\w*’s \w wine|strong="H3342"\w* \w press|strong="H3342"\w*, \w as|strong="H4080"\w* \w they|strong="H3920"\w* \w pursued|strong="H7291"\w* \w Midian|strong="H4080"\w*. \w Then|strong="H7218"\w* \w they|strong="H3920"\w* brought \w the|strong="H5676"\w* \w heads|strong="H7218"\w* \w of|strong="H8269"\w* \w Oreb|strong="H6159"\w* \w and|strong="H7218"\w* \w Zeeb|strong="H2062"\w* \w to|strong="H3383"\w* \w Gideon|strong="H1439"\w* \w beyond|strong="H5676"\w* \w the|strong="H5676"\w* \w Jordan|strong="H3383"\w*. +\c 8 +\p +\v 1 \w The|strong="H3588"\w* \w men|strong="H1980"\w* \w of|strong="H1697"\w* Ephraim \w said|strong="H1697"\w* \w to|strong="H1980"\w* \w him|strong="H7121"\w*, “\w Why|strong="H4100"\w* \w have|strong="H1697"\w* \w you|strong="H3588"\w* \w treated|strong="H6213"\w* \w us|strong="H6213"\w* \w this|strong="H2088"\w* \w way|strong="H1697"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* didn’t \w call|strong="H7121"\w* \w us|strong="H6213"\w* \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w went|strong="H1980"\w* \w to|strong="H1980"\w* \w fight|strong="H3898"\w* \w with|strong="H1980"\w* \w Midian|strong="H4080"\w*?” \w They|strong="H3588"\w* \w rebuked|strong="H7378"\w* \w him|strong="H7121"\w* \w sharply|strong="H2394"\w*. +\v 2 \w He|strong="H6213"\w* said \w to|strong="H6213"\w* \w them|strong="H6213"\w*, “\w What|strong="H4100"\w* \w have|strong="H6258"\w* \w I|strong="H6258"\w* \w now|strong="H6258"\w* \w done|strong="H6213"\w* \w in|strong="H6213"\w* comparison \w with|strong="H6213"\w* \w you|strong="H6213"\w*? Isn’t \w the|strong="H6213"\w* \w gleaning|strong="H5955"\w* \w of|strong="H6213"\w* \w the|strong="H6213"\w* \w grapes|strong="H5955"\w* \w of|strong="H6213"\w* Ephraim \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w the|strong="H6213"\w* \w vintage|strong="H1210"\w* \w of|strong="H6213"\w* Abiezer? +\v 3 \w God|strong="H5414"\w* \w has|strong="H4100"\w* \w delivered|strong="H5414"\w* \w into|strong="H5921"\w* \w your|strong="H5414"\w* \w hand|strong="H3027"\w* \w the|strong="H5921"\w* \w princes|strong="H8269"\w* \w of|strong="H3027"\w* \w Midian|strong="H4080"\w*, \w Oreb|strong="H6159"\w* \w and|strong="H3027"\w* \w Zeeb|strong="H2062"\w*! \w What|strong="H4100"\w* \w was|strong="H1697"\w* \w I|strong="H5414"\w* \w able|strong="H3201"\w* \w to|strong="H1696"\w* \w do|strong="H6213"\w* \w in|strong="H5921"\w* comparison \w with|strong="H6213"\w* \w you|strong="H5414"\w*?” \w Then|strong="H1696"\w* \w their|strong="H5414"\w* \w anger|strong="H7307"\w* \w was|strong="H1697"\w* \w abated|strong="H7503"\w* \w toward|strong="H5921"\w* \w him|strong="H5414"\w* \w when|strong="H1696"\w* \w he|strong="H6213"\w* \w had|strong="H5414"\w* \w said|strong="H1696"\w* \w that|strong="H1697"\w*. +\p +\v 4 \w Gideon|strong="H1439"\w* \w came|strong="H5674"\w* \w to|strong="H5674"\w* \w the|strong="H5674"\w* \w Jordan|strong="H3383"\w* \w and|strong="H3967"\w* \w passed|strong="H5674"\w* \w over|strong="H5674"\w*, \w he|strong="H1931"\w* \w and|strong="H3967"\w* \w the|strong="H5674"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* men \w who|strong="H1931"\w* \w were|strong="H7291"\w* \w with|strong="H5674"\w* \w him|strong="H1931"\w*, \w faint|strong="H5889"\w*, \w yet|strong="H5889"\w* \w pursuing|strong="H7291"\w*. +\v 5 \w He|strong="H3588"\w* said \w to|strong="H5414"\w* \w the|strong="H3588"\w* \w men|strong="H5971"\w* \w of|strong="H4428"\w* \w Succoth|strong="H5523"\w*, “\w Please|strong="H4994"\w* \w give|strong="H5414"\w* \w loaves|strong="H3899"\w* \w of|strong="H4428"\w* \w bread|strong="H3899"\w* \w to|strong="H5414"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w follow|strong="H7291"\w* \w me|strong="H5414"\w*; \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w faint|strong="H5889"\w*, \w and|strong="H4428"\w* \w I|strong="H3588"\w* am \w pursuing|strong="H7291"\w* \w after|strong="H7291"\w* \w Zebah|strong="H2078"\w* \w and|strong="H4428"\w* \w Zalmunna|strong="H6759"\w*, \w the|strong="H3588"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Midian|strong="H4080"\w*.” +\p +\v 6 \w The|strong="H3588"\w* \w princes|strong="H8269"\w* \w of|strong="H3027"\w* \w Succoth|strong="H5523"\w* said, “\w Are|strong="H3027"\w* \w the|strong="H3588"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w Zebah|strong="H2078"\w* \w and|strong="H3027"\w* \w Zalmunna|strong="H6759"\w* \w now|strong="H6258"\w* \w in|strong="H6635"\w* \w your|strong="H5414"\w* \w hand|strong="H3027"\w*, \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w should|strong="H3588"\w* \w give|strong="H5414"\w* \w bread|strong="H3899"\w* \w to|strong="H5414"\w* \w your|strong="H5414"\w* \w army|strong="H6635"\w*?” +\p +\v 7 \w Gideon|strong="H1439"\w* \w said|strong="H3651"\w*, “\w Therefore|strong="H3651"\w* \w when|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w delivered|strong="H5414"\w* \w Zebah|strong="H2078"\w* \w and|strong="H3068"\w* \w Zalmunna|strong="H6759"\w* \w into|strong="H3027"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w*, \w then|strong="H3651"\w* \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w tear|strong="H1758"\w* \w your|strong="H3068"\w* \w flesh|strong="H1320"\w* \w with|strong="H3068"\w* \w the|strong="H5414"\w* \w thorns|strong="H6975"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* \w wilderness|strong="H4057"\w* \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w briers|strong="H1303"\w*.” +\p +\v 8 \w He|strong="H8033"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w there|strong="H8033"\w* \w to|strong="H1696"\w* \w Penuel|strong="H6439"\w*, \w and|strong="H6030"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H5927"\w* \w in|strong="H1696"\w* \w the|strong="H5927"\w* \w same|strong="H2063"\w* \w way|strong="H2063"\w*; \w and|strong="H6030"\w* \w the|strong="H5927"\w* men \w of|strong="H1696"\w* \w Penuel|strong="H6439"\w* \w answered|strong="H6030"\w* \w him|strong="H6030"\w* \w as|strong="H5927"\w* \w the|strong="H5927"\w* men \w of|strong="H1696"\w* \w Succoth|strong="H5523"\w* \w had|strong="H5523"\w* \w answered|strong="H6030"\w*. +\v 9 \w He|strong="H2088"\w* spoke \w also|strong="H1571"\w* \w to|strong="H7725"\w* \w the|strong="H7725"\w* men \w of|strong="H4026"\w* \w Penuel|strong="H6439"\w*, saying, “\w When|strong="H7725"\w* \w I|strong="H2088"\w* \w come|strong="H7725"\w* \w again|strong="H7725"\w* \w in|strong="H7725"\w* \w peace|strong="H7965"\w*, \w I|strong="H2088"\w* \w will|strong="H1571"\w* \w break|strong="H5422"\w* \w down|strong="H5422"\w* \w this|strong="H2088"\w* \w tower|strong="H4026"\w*.” +\p +\v 10 Now \w Zebah|strong="H2078"\w* \w and|strong="H3967"\w* \w Zalmunna|strong="H6759"\w* \w were|strong="H1121"\w* \w in|strong="H1121"\w* \w Karkor|strong="H7174"\w*, \w and|strong="H3967"\w* \w their|strong="H3605"\w* \w armies|strong="H4264"\w* \w with|strong="H5973"\w* \w them|strong="H5307"\w*, \w about|strong="H3605"\w* \w fifteen|strong="H2568"\w* thousand \w men|strong="H1121"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w left|strong="H3498"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H4264"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w east|strong="H6924"\w*; \w for|strong="H1121"\w* \w there|strong="H3605"\w* \w fell|strong="H5307"\w* \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* \w twenty|strong="H6242"\w* thousand \w men|strong="H1121"\w* \w who|strong="H3605"\w* \w drew|strong="H8025"\w* \w sword|strong="H2719"\w*. +\v 11 \w Gideon|strong="H1439"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w by|strong="H1870"\w* \w the|strong="H5221"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w those|strong="H1961"\w* \w who|strong="H5221"\w* \w lived|strong="H7931"\w* \w in|strong="H7931"\w* \w tents|strong="H4264"\w* \w on|strong="H1870"\w* \w the|strong="H5221"\w* \w east|strong="H6924"\w* \w of|strong="H1870"\w* \w Nobah|strong="H5025"\w* \w and|strong="H1870"\w* \w Jogbehah|strong="H3011"\w*, \w and|strong="H1870"\w* \w struck|strong="H5221"\w* \w the|strong="H5221"\w* \w army|strong="H4264"\w*; \w for|strong="H1961"\w* \w the|strong="H5221"\w* \w army|strong="H4264"\w* felt secure. +\v 12 \w Zebah|strong="H2078"\w* \w and|strong="H4428"\w* \w Zalmunna|strong="H6759"\w* \w fled|strong="H5127"\w* \w and|strong="H4428"\w* \w he|strong="H3605"\w* \w pursued|strong="H7291"\w* \w them|strong="H8147"\w*. \w He|strong="H3605"\w* \w took|strong="H3920"\w* \w the|strong="H3605"\w* \w two|strong="H8147"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Midian|strong="H4080"\w*, \w Zebah|strong="H2078"\w* \w and|strong="H4428"\w* \w Zalmunna|strong="H6759"\w*, \w and|strong="H4428"\w* confused \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H4264"\w*. +\v 13 \w Gideon|strong="H1439"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joash|strong="H3101"\w* \w returned|strong="H7725"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w battle|strong="H4421"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w ascent|strong="H4608"\w* \w of|strong="H1121"\w* Heres. +\v 14 \w He|strong="H2205"\w* \w caught|strong="H3920"\w* \w a|strong="H3068"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* \w of|strong="H8269"\w* \w the|strong="H3920"\w* \w men|strong="H5288"\w* \w of|strong="H8269"\w* \w Succoth|strong="H5523"\w*, \w and|strong="H5288"\w* \w inquired|strong="H7592"\w* \w of|strong="H8269"\w* \w him|strong="H7592"\w*; \w and|strong="H5288"\w* \w he|strong="H2205"\w* \w described|strong="H3789"\w* \w for|strong="H7592"\w* \w him|strong="H7592"\w* \w the|strong="H3920"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w Succoth|strong="H5523"\w*, \w and|strong="H5288"\w* \w its|strong="H3920"\w* \w elders|strong="H2205"\w*, \w seventy-seven|strong="H7657"\w* \w men|strong="H5288"\w*. +\v 15 \w He|strong="H3588"\w* came \w to|strong="H5414"\w* \w the|strong="H3588"\w* men \w of|strong="H3027"\w* \w Succoth|strong="H5523"\w*, \w and|strong="H3027"\w* said, “\w See|strong="H2009"\w* \w Zebah|strong="H2078"\w* \w and|strong="H3027"\w* \w Zalmunna|strong="H6759"\w*, concerning \w whom|strong="H3588"\w* \w you|strong="H3588"\w* \w taunted|strong="H2778"\w* \w me|strong="H5414"\w*, saying, ‘\w Are|strong="H3027"\w* \w the|strong="H3588"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w Zebah|strong="H2078"\w* \w and|strong="H3027"\w* \w Zalmunna|strong="H6759"\w* \w now|strong="H6258"\w* \w in|strong="H3899"\w* \w your|strong="H5414"\w* \w hand|strong="H3027"\w*, \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w should|strong="H3588"\w* \w give|strong="H5414"\w* \w bread|strong="H3899"\w* \w to|strong="H5414"\w* \w your|strong="H5414"\w* men \w who|strong="H3588"\w* \w are|strong="H3027"\w* \w weary|strong="H3286"\w*?’” +\v 16 \w He|strong="H5892"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w elders|strong="H2205"\w* \w of|strong="H5892"\w* \w the|strong="H3947"\w* \w city|strong="H5892"\w*, \w and|strong="H5892"\w* \w thorns|strong="H6975"\w* \w of|strong="H5892"\w* \w the|strong="H3947"\w* \w wilderness|strong="H4057"\w* \w and|strong="H5892"\w* \w briers|strong="H1303"\w*, \w and|strong="H5892"\w* \w with|strong="H3045"\w* \w them|strong="H3947"\w* \w he|strong="H5892"\w* \w taught|strong="H3045"\w* \w the|strong="H3947"\w* \w men|strong="H2205"\w* \w of|strong="H5892"\w* \w Succoth|strong="H5523"\w*. +\v 17 \w He|strong="H5892"\w* \w broke|strong="H5422"\w* \w down|strong="H5422"\w* \w the|strong="H2026"\w* \w tower|strong="H4026"\w* \w of|strong="H5892"\w* \w Penuel|strong="H6439"\w*, \w and|strong="H5892"\w* \w killed|strong="H2026"\w* \w the|strong="H2026"\w* men \w of|strong="H5892"\w* \w the|strong="H2026"\w* \w city|strong="H5892"\w*. +\p +\v 18 \w Then|strong="H4428"\w* \w he|strong="H4428"\w* said \w to|strong="H1121"\w* \w Zebah|strong="H2078"\w* \w and|strong="H1121"\w* \w Zalmunna|strong="H6759"\w*, “What kind \w of|strong="H1121"\w* \w men|strong="H1121"\w* \w were|strong="H1121"\w* \w they|strong="H4428"\w* whom \w you|strong="H3644"\w* \w killed|strong="H2026"\w* \w at|strong="H4428"\w* \w Tabor|strong="H8396"\w*?” +\p \w They|strong="H4428"\w* answered, “\w They|strong="H4428"\w* \w were|strong="H1121"\w* \w like|strong="H3644"\w* \w you|strong="H3644"\w*. \w They|strong="H4428"\w* \w all|strong="H2026"\w* \w resembled|strong="H8389"\w* \w the|strong="H2026"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w*.” +\p +\v 19 \w He|strong="H3068"\w* said, “\w They|strong="H1992"\w* \w were|strong="H1121"\w* \w my|strong="H3068"\w* \w brothers|strong="H1121"\w*, \w the|strong="H3068"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w my|strong="H3068"\w* mother. \w As|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*, \w if|strong="H3863"\w* \w you|strong="H3808"\w* \w had|strong="H3068"\w* \w saved|strong="H2421"\w* \w them|strong="H1992"\w* \w alive|strong="H2416"\w*, \w I|strong="H3808"\w* \w would|strong="H3068"\w* \w not|strong="H3808"\w* \w kill|strong="H2026"\w* \w you|strong="H3808"\w*.” +\p +\v 20 \w He|strong="H3588"\w* said \w to|strong="H6965"\w* \w Jether|strong="H3500"\w* \w his|strong="H6965"\w* \w firstborn|strong="H1060"\w*, “\w Get|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H6965"\w* \w kill|strong="H2026"\w* \w them|strong="H2026"\w*!” \w But|strong="H3588"\w* \w the|strong="H3588"\w* \w youth|strong="H5288"\w* didn’t \w draw|strong="H8025"\w* \w his|strong="H6965"\w* \w sword|strong="H2719"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w was|strong="H5288"\w* \w afraid|strong="H3372"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w was|strong="H5288"\w* \w yet|strong="H5750"\w* \w a|strong="H3068"\w* \w youth|strong="H5288"\w*. +\p +\v 21 \w Then|strong="H6965"\w* \w Zebah|strong="H2078"\w* \w and|strong="H6965"\w* \w Zalmunna|strong="H6759"\w* said, “\w You|strong="H3588"\w* \w rise|strong="H6965"\w* \w and|strong="H6965"\w* \w fall|strong="H6293"\w* \w on|strong="H6965"\w* \w us|strong="H3588"\w*; \w for|strong="H3588"\w* \w as|strong="H3588"\w* \w the|strong="H3588"\w* man \w is|strong="H3588"\w*, \w so|strong="H3947"\w* \w is|strong="H3588"\w* \w his|strong="H3947"\w* \w strength|strong="H1369"\w*.” \w Gideon|strong="H1439"\w* \w arose|strong="H6965"\w*, \w and|strong="H6965"\w* \w killed|strong="H2026"\w* \w Zebah|strong="H2078"\w* \w and|strong="H6965"\w* \w Zalmunna|strong="H6759"\w*, \w and|strong="H6965"\w* \w took|strong="H3947"\w* \w the|strong="H3588"\w* crescents \w that|strong="H3588"\w* \w were|strong="H1581"\w* \w on|strong="H6965"\w* \w their|strong="H3947"\w* \w camels|strong="H1581"\w*’ \w necks|strong="H6677"\w*. +\p +\v 22 \w Then|strong="H1571"\w* \w the|strong="H3588"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* said \w to|strong="H3478"\w* \w Gideon|strong="H1439"\w*, “\w Rule|strong="H4910"\w* \w over|strong="H3027"\w* \w us|strong="H3588"\w*, \w both|strong="H1571"\w* \w you|strong="H3588"\w*, \w your|strong="H3588"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w your|strong="H3588"\w* \w son|strong="H1121"\w*’s \w son|strong="H1121"\w* \w also|strong="H1571"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1121"\w* \w saved|strong="H3467"\w* \w us|strong="H3588"\w* \w out|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w Midian|strong="H4080"\w*.” +\p +\v 23 \w Gideon|strong="H1439"\w* said \w to|strong="H3068"\w* \w them|strong="H1121"\w*, “\w I|strong="H3808"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w rule|strong="H4910"\w* \w over|strong="H4910"\w* \w you|strong="H3808"\w*, \w neither|strong="H3808"\w* \w shall|strong="H3068"\w* \w my|strong="H3068"\w* \w son|strong="H1121"\w* \w rule|strong="H4910"\w* \w over|strong="H4910"\w* \w you|strong="H3808"\w*. \w Yahweh|strong="H3068"\w* \w shall|strong="H3068"\w* \w rule|strong="H4910"\w* \w over|strong="H4910"\w* \w you|strong="H3808"\w*.” +\v 24 \w Gideon|strong="H1439"\w* said \w to|strong="H5414"\w* \w them|strong="H5414"\w*, “\w I|strong="H3588"\w* do \w have|strong="H5414"\w* \w a|strong="H3068"\w* \w request|strong="H7596"\w*: \w that|strong="H3588"\w* \w you|strong="H3588"\w* would \w each|strong="H5414"\w* \w give|strong="H5414"\w* \w me|strong="H5414"\w* \w the|strong="H3588"\w* \w earrings|strong="H5141"\w* \w of|strong="H4480"\w* \w his|strong="H5414"\w* \w plunder|strong="H7998"\w*.” (\w For|strong="H3588"\w* \w they|strong="H1992"\w* \w had|strong="H3588"\w* \w golden|strong="H2091"\w* \w earrings|strong="H5141"\w*, \w because|strong="H3588"\w* \w they|strong="H1992"\w* \w were|strong="H1992"\w* \w Ishmaelites|strong="H3459"\w*.) +\p +\v 25 \w They|strong="H8033"\w* answered, “\w We|strong="H8033"\w* \w will|strong="H5414"\w* \w willingly|strong="H5414"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w*.” \w They|strong="H8033"\w* \w spread|strong="H6566"\w* \w a|strong="H3068"\w* \w garment|strong="H8071"\w*, \w and|strong="H8033"\w* \w every|strong="H5414"\w* man \w threw|strong="H7993"\w* \w the|strong="H5414"\w* \w earrings|strong="H5141"\w* \w of|strong="H7998"\w* \w his|strong="H5414"\w* \w plunder|strong="H7998"\w* \w into|strong="H7993"\w* \w it|strong="H5414"\w*. +\v 26 \w The|strong="H5921"\w* \w weight|strong="H4948"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w golden|strong="H2091"\w* \w earrings|strong="H5141"\w* \w that|strong="H4428"\w* \w he|strong="H4480"\w* \w requested|strong="H7592"\w* \w was|strong="H1961"\w* \w one|strong="H4480"\w* thousand \w and|strong="H3967"\w* \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w shekels|strong="H4948"\w*\f + \fr 8:26 \ft A shekel is about 10 grams or about 0.32 Troy ounces, so 1700 shekels is about 17 kilograms or 37.4 pounds.\f* \w of|strong="H4428"\w* \w gold|strong="H2091"\w*, \w in|strong="H5921"\w* \w addition|strong="H5921"\w* \w to|strong="H1961"\w* \w the|strong="H5921"\w* crescents, \w and|strong="H3967"\w* \w the|strong="H5921"\w* \w pendants|strong="H5188"\w*, \w and|strong="H3967"\w* \w the|strong="H5921"\w* purple clothing \w that|strong="H4428"\w* \w was|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Midian|strong="H4080"\w*, \w and|strong="H3967"\w* \w in|strong="H5921"\w* \w addition|strong="H5921"\w* \w to|strong="H1961"\w* \w the|strong="H5921"\w* \w chains|strong="H6060"\w* \w that|strong="H4428"\w* \w were|strong="H1961"\w* \w about|strong="H1961"\w* \w their|strong="H5921"\w* \w camels|strong="H1581"\w*’ \w necks|strong="H6677"\w*. +\v 27 \w Gideon|strong="H1439"\w* \w made|strong="H6213"\w* \w an|strong="H6213"\w* ephod \w out|strong="H6213"\w* \w of|strong="H1004"\w* \w it|strong="H6213"\w*, \w and|strong="H3478"\w* \w put|strong="H6213"\w* \w it|strong="H6213"\w* \w in|strong="H3478"\w* \w Ophrah|strong="H6084"\w*, \w his|strong="H3605"\w* \w city|strong="H5892"\w*. \w Then|strong="H1961"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w played|strong="H2181"\w* \w the|strong="H3605"\w* \w prostitute|strong="H2181"\w* \w with|strong="H1004"\w* \w it|strong="H6213"\w* \w there|strong="H8033"\w*; \w and|strong="H3478"\w* \w it|strong="H6213"\w* \w became|strong="H1961"\w* \w a|strong="H3068"\w* \w snare|strong="H4170"\w* \w to|strong="H3478"\w* \w Gideon|strong="H1439"\w* \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*. +\v 28 \w So|strong="H3808"\w* \w Midian|strong="H4080"\w* \w was|strong="H3478"\w* \w subdued|strong="H3665"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w they|strong="H3117"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w their|strong="H5375"\w* \w heads|strong="H7218"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w*. \w The|strong="H6440"\w* \w land|strong="H6440"\w* \w had|strong="H3478"\w* \w rest|strong="H8252"\w* forty \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w the|strong="H6440"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w Gideon|strong="H1439"\w*. +\p +\v 29 \w Jerubbaal|strong="H3378"\w* \w the|strong="H3427"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joash|strong="H3101"\w* \w went|strong="H3212"\w* \w and|strong="H1121"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w his|strong="H3101"\w* own \w house|strong="H1004"\w*. +\v 30 \w Gideon|strong="H1439"\w* \w had|strong="H1961"\w* \w seventy|strong="H7657"\w* \w sons|strong="H1121"\w* conceived \w from|strong="H3318"\w* \w his|strong="H1961"\w* \w body|strong="H3409"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H1961"\w* \w many|strong="H7227"\w* wives. +\v 31 \w His|strong="H7760"\w* \w concubine|strong="H6370"\w* \w who|strong="H1931"\w* \w was|strong="H8034"\w* \w in|strong="H1121"\w* \w Shechem|strong="H7927"\w* \w also|strong="H1571"\w* \w bore|strong="H3205"\w* \w him|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w named|strong="H8034"\w* \w him|strong="H3205"\w* Abimelech. +\v 32 \w Gideon|strong="H1439"\w* \w the|strong="H4191"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joash|strong="H3101"\w* \w died|strong="H4191"\w* \w in|strong="H4191"\w* \w a|strong="H3068"\w* \w good|strong="H2896"\w* \w old|strong="H1121"\w* \w age|strong="H7872"\w*, \w and|strong="H1121"\w* \w was|strong="H1121"\w* \w buried|strong="H6912"\w* \w in|strong="H4191"\w* \w the|strong="H4191"\w* \w tomb|strong="H6913"\w* \w of|strong="H1121"\w* \w Joash|strong="H3101"\w* \w his|strong="H6912"\w* \w father|strong="H1121"\w*, \w in|strong="H4191"\w* \w Ophrah|strong="H6084"\w* \w of|strong="H1121"\w* \w the|strong="H4191"\w* Abiezrites. +\p +\v 33 \w As|strong="H1961"\w* soon \w as|strong="H1961"\w* \w Gideon|strong="H1439"\w* \w was|strong="H1961"\w* \w dead|strong="H4191"\w*, \w the|strong="H7725"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w turned|strong="H7725"\w* \w again|strong="H7725"\w* \w and|strong="H1121"\w* \w played|strong="H2181"\w* \w the|strong="H7725"\w* \w prostitute|strong="H2181"\w* following \w the|strong="H7725"\w* \w Baals|strong="H1168"\w*, \w and|strong="H1121"\w* \w made|strong="H7760"\w* \w Baal|strong="H1168"\w* Berith \w their|strong="H7760"\w* god. +\v 34 \w The|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* didn’t \w remember|strong="H2142"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3605"\w* \w God|strong="H3068"\w*, \w who|strong="H3605"\w* \w had|strong="H3068"\w* \w delivered|strong="H5337"\w* \w them|strong="H3027"\w* \w out|strong="H5337"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w enemies|strong="H3027"\w* \w on|strong="H3027"\w* \w every|strong="H3605"\w* \w side|strong="H5439"\w*; +\v 35 \w neither|strong="H3808"\w* \w did|strong="H6213"\w* \w they|strong="H3808"\w* \w show|strong="H6213"\w* \w kindness|strong="H2617"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jerubbaal|strong="H3378"\w*, \w that|strong="H3605"\w* \w is|strong="H2617"\w*, \w Gideon|strong="H1439"\w*, according \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w goodness|strong="H2896"\w* \w which|strong="H1004"\w* \w he|strong="H6213"\w* \w had|strong="H3478"\w* \w shown|strong="H6213"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\c 9 +\p +\v 1 Abimelech \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jerubbaal|strong="H3378"\w* \w went|strong="H3212"\w* \w to|strong="H1696"\w* \w Shechem|strong="H7927"\w* \w to|strong="H1696"\w* \w his|strong="H3605"\w* mother’s \w brothers|strong="H1121"\w*, \w and|strong="H1121"\w* \w spoke|strong="H1696"\w* \w with|strong="H1004"\w* \w them|strong="H1121"\w* \w and|strong="H1121"\w* \w with|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* mother’s \w father|strong="H1121"\w*, \w saying|strong="H1696"\w*, +\v 2 “\w Please|strong="H4994"\w* \w speak|strong="H1696"\w* \w in|strong="H1320"\w* \w the|strong="H3605"\w* ears \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Shechem|strong="H7927"\w*, ‘\w Is|strong="H4100"\w* \w it|strong="H3588"\w* \w better|strong="H2896"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w that|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jerubbaal|strong="H3378"\w*, \w who|strong="H3605"\w* \w are|strong="H1121"\w* \w seventy|strong="H7657"\w* persons, \w rule|strong="H4910"\w* \w over|strong="H4910"\w* \w you|strong="H3588"\w*, \w or|strong="H1121"\w* \w that|strong="H3588"\w* \w one|strong="H3605"\w* \w rule|strong="H4910"\w* \w over|strong="H4910"\w* \w you|strong="H3588"\w*?’ \w Remember|strong="H2142"\w* \w also|strong="H1121"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* am \w your|strong="H3605"\w* \w bone|strong="H6106"\w* \w and|strong="H1121"\w* \w your|strong="H3605"\w* \w flesh|strong="H1320"\w*.” +\p +\v 3 \w His|strong="H3605"\w* mother’s brothers \w spoke|strong="H1696"\w* \w of|strong="H1697"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* ears \w of|strong="H1697"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H1167"\w* \w of|strong="H1697"\w* \w Shechem|strong="H7927"\w* \w all|strong="H3605"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w*. \w Their|strong="H3605"\w* \w hearts|strong="H3820"\w* \w inclined|strong="H5186"\w* \w to|strong="H1696"\w* follow Abimelech; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w said|strong="H1696"\w*, “\w He|strong="H1931"\w* \w is|strong="H1931"\w* \w our|strong="H3605"\w* brother.” +\v 4 \w They|strong="H5414"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w seventy|strong="H7657"\w* pieces \w of|strong="H1004"\w* \w silver|strong="H3701"\w* \w out|strong="H5414"\w* \w of|strong="H1004"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* Baal Berith, \w with|strong="H1004"\w* \w which|strong="H1004"\w* Abimelech \w hired|strong="H7936"\w* \w vain|strong="H7386"\w* \w and|strong="H3701"\w* \w reckless|strong="H6348"\w* \w fellows|strong="H7386"\w* who \w followed|strong="H3212"\w* \w him|strong="H5414"\w*. +\v 5 \w He|strong="H3588"\w* \w went|strong="H1121"\w* \w to|strong="H5921"\w* \w his|strong="H5921"\w* \w father|strong="H1121"\w*’s \w house|strong="H1004"\w* \w at|strong="H5921"\w* \w Ophrah|strong="H6084"\w*, \w and|strong="H1121"\w* \w killed|strong="H2026"\w* \w his|strong="H5921"\w* \w brothers|strong="H1121"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jerubbaal|strong="H3378"\w*, \w being|strong="H1004"\w* \w seventy|strong="H7657"\w* persons, \w on|strong="H5921"\w* \w one|strong="H1121"\w* stone; \w but|strong="H3588"\w* \w Jotham|strong="H3147"\w* \w the|strong="H5921"\w* \w youngest|strong="H6996"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jerubbaal|strong="H3378"\w* \w was|strong="H1004"\w* \w left|strong="H3498"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w hid|strong="H2244"\w* himself. +\v 6 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H1167"\w* \w of|strong="H4428"\w* \w Shechem|strong="H7927"\w* \w assembled|strong="H3605"\w* themselves \w together|strong="H5973"\w* \w with|strong="H5973"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w Millo|strong="H4407"\w*, \w and|strong="H4428"\w* \w went|strong="H3212"\w* \w and|strong="H4428"\w* \w made|strong="H4427"\w* Abimelech \w king|strong="H4428"\w* \w by|strong="H5973"\w* \w the|strong="H3605"\w* oak \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w pillar|strong="H5324"\w* \w that|strong="H3605"\w* \w was|strong="H4428"\w* \w in|strong="H1004"\w* \w Shechem|strong="H7927"\w*. +\v 7 \w When|strong="H8085"\w* \w they|strong="H5375"\w* \w told|strong="H5046"\w* \w it|strong="H7121"\w* \w to|strong="H3212"\w* \w Jotham|strong="H3147"\w*, \w he|strong="H7121"\w* \w went|strong="H3212"\w* \w and|strong="H3212"\w* \w stood|strong="H5975"\w* \w on|strong="H5975"\w* \w the|strong="H8085"\w* \w top|strong="H7218"\w* \w of|strong="H2022"\w* \w Mount|strong="H2022"\w* \w Gerizim|strong="H1630"\w* \w and|strong="H3212"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w voice|strong="H6963"\w*, \w cried|strong="H7121"\w* \w out|strong="H3212"\w*, \w and|strong="H3212"\w* \w said|strong="H7121"\w* \w to|strong="H3212"\w* \w them|strong="H7121"\w*, “\w Listen|strong="H8085"\w* \w to|strong="H3212"\w* \w me|strong="H5046"\w*, \w you|strong="H5046"\w* \w men|strong="H1167"\w* \w of|strong="H2022"\w* \w Shechem|strong="H7927"\w*, \w that|strong="H8085"\w* God \w may|strong="H8085"\w* \w listen|strong="H8085"\w* \w to|strong="H3212"\w* \w you|strong="H5046"\w*. +\v 8 \w The|strong="H5921"\w* \w trees|strong="H6086"\w* \w set|strong="H4427"\w* \w out|strong="H5921"\w* \w to|strong="H1980"\w* \w anoint|strong="H4886"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w themselves|strong="H5921"\w*. \w They|strong="H5921"\w* said \w to|strong="H1980"\w* \w the|strong="H5921"\w* \w olive|strong="H2132"\w* \w tree|strong="H6086"\w*, ‘\w Reign|strong="H4427"\w* \w over|strong="H5921"\w* \w us|strong="H5921"\w*.’ +\p +\v 9 “\w But|strong="H3513"\w* \w the|strong="H5921"\w* \w olive|strong="H2132"\w* \w tree|strong="H6086"\w* said \w to|strong="H1980"\w* \w them|strong="H5921"\w*, ‘\w Should|strong="H1980"\w* \w I|strong="H5921"\w* \w stop|strong="H2308"\w* producing \w my|strong="H5921"\w* oil, \w with|strong="H1980"\w* \w which|strong="H6086"\w* \w they|strong="H5921"\w* \w honor|strong="H3513"\w* God \w and|strong="H1980"\w* man \w by|strong="H5921"\w* \w me|strong="H5921"\w*, \w and|strong="H1980"\w* \w go|strong="H1980"\w* \w to|strong="H1980"\w* \w wave|strong="H5128"\w* \w back|strong="H1980"\w* \w and|strong="H1980"\w* \w forth|strong="H1980"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w trees|strong="H6086"\w*?’ +\p +\v 10 “\w The|strong="H5921"\w* \w trees|strong="H6086"\w* said \w to|strong="H3212"\w* \w the|strong="H5921"\w* \w fig|strong="H8384"\w* \w tree|strong="H6086"\w*, ‘\w Come|strong="H3212"\w* \w and|strong="H3212"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w us|strong="H5921"\w*.’ +\p +\v 11 “\w But|strong="H5921"\w* \w the|strong="H5921"\w* \w fig|strong="H8384"\w* \w tree|strong="H6086"\w* said \w to|strong="H1980"\w* \w them|strong="H5921"\w*, ‘\w Should|strong="H1980"\w* \w I|strong="H5921"\w* \w leave|strong="H1980"\w* \w my|strong="H5921"\w* \w sweetness|strong="H4987"\w*, \w and|strong="H1980"\w* \w my|strong="H5921"\w* \w good|strong="H2896"\w* \w fruit|strong="H8570"\w*, \w and|strong="H1980"\w* \w go|strong="H1980"\w* \w to|strong="H1980"\w* \w wave|strong="H5128"\w* \w back|strong="H1980"\w* \w and|strong="H1980"\w* \w forth|strong="H1980"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w trees|strong="H6086"\w*?’ +\p +\v 12 “\w The|strong="H5921"\w* \w trees|strong="H6086"\w* said \w to|strong="H3212"\w* \w the|strong="H5921"\w* \w vine|strong="H1612"\w*, ‘\w Come|strong="H3212"\w* \w and|strong="H3212"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w us|strong="H5921"\w*.’ +\p +\v 13 “\w The|strong="H5921"\w* \w vine|strong="H1612"\w* said \w to|strong="H1980"\w* \w them|strong="H5921"\w*, ‘\w Should|strong="H1980"\w* \w I|strong="H5921"\w* \w leave|strong="H1980"\w* \w my|strong="H5921"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w*, \w which|strong="H6086"\w* \w cheers|strong="H8055"\w* God \w and|strong="H1980"\w* man, \w and|strong="H1980"\w* \w go|strong="H1980"\w* \w to|strong="H1980"\w* \w wave|strong="H5128"\w* \w back|strong="H1980"\w* \w and|strong="H1980"\w* \w forth|strong="H1980"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w trees|strong="H6086"\w*?’ +\p +\v 14 “\w Then|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w trees|strong="H6086"\w* said \w to|strong="H3212"\w* \w the|strong="H3605"\w* bramble, ‘\w Come|strong="H3212"\w* \w and|strong="H3212"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w us|strong="H5921"\w*.’ +\p +\v 15 “\w The|strong="H5921"\w* bramble \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H5921"\w* \w trees|strong="H6086"\w*, ‘If \w in|strong="H5921"\w* truth \w you|strong="H5921"\w* \w anoint|strong="H4886"\w* \w me|strong="H5921"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w you|strong="H5921"\w*, \w then|strong="H3318"\w* \w come|strong="H3318"\w* \w and|strong="H4428"\w* \w take|strong="H2620"\w* \w refuge|strong="H2620"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* \w shade|strong="H6738"\w*; \w and|strong="H4428"\w* if \w not|strong="H3318"\w*, let fire \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* bramble, \w and|strong="H4428"\w* devour \w the|strong="H5921"\w* cedars \w of|strong="H4428"\w* \w Lebanon|strong="H3844"\w*.’ +\p +\v 16 “\w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, if \w you|strong="H6213"\w* \w have|strong="H3027"\w* \w dealt|strong="H6213"\w* \w truly|strong="H6213"\w* \w and|strong="H3027"\w* righteously, \w in|strong="H6213"\w* \w that|strong="H3027"\w* \w you|strong="H6213"\w* \w have|strong="H3027"\w* \w made|strong="H6213"\w* Abimelech \w king|strong="H4427"\w*, \w and|strong="H3027"\w* if \w you|strong="H6213"\w* \w have|strong="H3027"\w* \w dealt|strong="H6213"\w* \w well|strong="H2895"\w* \w with|strong="H5973"\w* \w Jerubbaal|strong="H3378"\w* \w and|strong="H3027"\w* \w his|strong="H3027"\w* \w house|strong="H1004"\w*, \w and|strong="H3027"\w* \w have|strong="H3027"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w him|strong="H3027"\w* \w according|strong="H3027"\w* \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w deserving|strong="H1576"\w* \w of|strong="H1004"\w* \w his|strong="H3027"\w* \w hands|strong="H3027"\w* +\v 17 (\w for|strong="H5921"\w* \w my|strong="H5921"\w* father \w fought|strong="H3898"\w* \w for|strong="H5921"\w* \w you|strong="H5921"\w*, \w risked|strong="H7993"\w* \w his|strong="H5921"\w* \w life|strong="H5315"\w*, \w and|strong="H3027"\w* \w delivered|strong="H5337"\w* \w you|strong="H5921"\w* \w out|strong="H7993"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w Midian|strong="H4080"\w*; +\v 18 \w and|strong="H1121"\w* \w you|strong="H3588"\w* \w have|strong="H1121"\w* \w risen|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H5921"\w* \w my|strong="H5921"\w* \w father|strong="H1121"\w*’s \w house|strong="H1004"\w* \w today|strong="H3117"\w* \w and|strong="H1121"\w* \w have|strong="H1121"\w* \w slain|strong="H2026"\w* \w his|strong="H5921"\w* \w sons|strong="H1121"\w*, \w seventy|strong="H7657"\w* persons, \w on|strong="H5921"\w* \w one|strong="H1931"\w* stone, \w and|strong="H1121"\w* \w have|strong="H1121"\w* \w made|strong="H4427"\w* Abimelech, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w his|strong="H5921"\w* female servant, \w king|strong="H4427"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Shechem|strong="H7927"\w*, \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w your|strong="H5921"\w* brother); +\v 19 \w if|strong="H1931"\w* \w you|strong="H3117"\w* \w then|strong="H2088"\w* \w have|strong="H1571"\w* \w dealt|strong="H6213"\w* \w truly|strong="H1571"\w* \w and|strong="H3117"\w* righteously \w with|strong="H5973"\w* \w Jerubbaal|strong="H3378"\w* \w and|strong="H3117"\w* \w with|strong="H5973"\w* \w his|strong="H6213"\w* \w house|strong="H1004"\w* \w today|strong="H3117"\w*, \w then|strong="H2088"\w* \w rejoice|strong="H8055"\w* \w in|strong="H6213"\w* Abimelech, \w and|strong="H3117"\w* \w let|strong="H8055"\w* \w him|strong="H6213"\w* \w also|strong="H1571"\w* \w rejoice|strong="H8055"\w* \w in|strong="H6213"\w* \w you|strong="H3117"\w*; +\v 20 but if \w not|strong="H3318"\w*, let fire \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* Abimelech \w and|strong="H1004"\w* devour \w the|strong="H3318"\w* \w men|strong="H1167"\w* \w of|strong="H1004"\w* \w Shechem|strong="H7927"\w* \w and|strong="H1004"\w* \w the|strong="H3318"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Millo|strong="H4407"\w*; \w and|strong="H1004"\w* let fire \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w the|strong="H3318"\w* \w men|strong="H1167"\w* \w of|strong="H1004"\w* \w Shechem|strong="H7927"\w* \w and|strong="H1004"\w* \w from|strong="H3318"\w* \w the|strong="H3318"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Millo|strong="H4407"\w* \w and|strong="H1004"\w* devour Abimelech.” +\p +\v 21 \w Jotham|strong="H3147"\w* \w ran|strong="H5127"\w* \w away|strong="H3212"\w* \w and|strong="H3212"\w* \w fled|strong="H5127"\w*, \w and|strong="H3212"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* Beer\f + \fr 9:21 \ft “Beer” is Hebrew for “well”, i.e., a village named for its well.\f* \w and|strong="H3212"\w* \w lived|strong="H3427"\w* \w there|strong="H8033"\w*, \w for|strong="H6440"\w* \w fear|strong="H6440"\w* \w of|strong="H3427"\w* Abimelech \w his|strong="H6440"\w* brother. +\p +\v 22 Abimelech \w was|strong="H3478"\w* prince \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w*. +\v 23 \w Then|strong="H7971"\w* \w God|strong="H7971"\w* \w sent|strong="H7971"\w* \w an|strong="H7971"\w* \w evil|strong="H7451"\w* \w spirit|strong="H7307"\w* \w between|strong="H7307"\w* Abimelech \w and|strong="H7971"\w* \w the|strong="H7971"\w* \w men|strong="H1167"\w* \w of|strong="H7307"\w* \w Shechem|strong="H7927"\w*; \w and|strong="H7971"\w* \w the|strong="H7971"\w* \w men|strong="H1167"\w* \w of|strong="H7307"\w* \w Shechem|strong="H7927"\w* \w dealt|strong="H7927"\w* treacherously \w with|strong="H7971"\w* Abimelech, +\v 24 \w that|strong="H1121"\w* \w the|strong="H5921"\w* \w violence|strong="H2555"\w* \w done|strong="H3027"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w seventy|strong="H7657"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jerubbaal|strong="H3378"\w* \w might|strong="H3378"\w* come, \w and|strong="H1121"\w* \w that|strong="H1121"\w* \w their|strong="H7760"\w* \w blood|strong="H1818"\w* \w might|strong="H3378"\w* \w be|strong="H3027"\w* \w laid|strong="H7760"\w* \w on|strong="H5921"\w* Abimelech \w their|strong="H7760"\w* brother \w who|strong="H1121"\w* \w killed|strong="H2026"\w* \w them|strong="H5921"\w*, \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Shechem|strong="H7927"\w* \w who|strong="H1121"\w* \w strengthened|strong="H2388"\w* \w his|strong="H7760"\w* \w hands|strong="H3027"\w* \w to|strong="H5921"\w* \w kill|strong="H2026"\w* \w his|strong="H7760"\w* \w brothers|strong="H1121"\w*. +\v 25 \w The|strong="H3605"\w* \w men|strong="H1167"\w* \w of|strong="H2022"\w* \w Shechem|strong="H7927"\w* \w set|strong="H7760"\w* \w an|strong="H7760"\w* ambush \w for|strong="H5921"\w* \w him|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w tops|strong="H7218"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w*, \w and|strong="H7218"\w* \w they|strong="H5921"\w* \w robbed|strong="H1497"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w came|strong="H5674"\w* \w along|strong="H5921"\w* \w that|strong="H3605"\w* \w way|strong="H1870"\w* \w by|strong="H5921"\w* \w them|strong="H5921"\w*; \w and|strong="H7218"\w* Abimelech \w was|strong="H7218"\w* \w told|strong="H5046"\w* \w about|strong="H5921"\w* \w it|strong="H7760"\w*. +\p +\v 26 \w Gaal|strong="H1603"\w* \w the|strong="H5674"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ebed|strong="H5651"\w* \w came|strong="H5674"\w* \w with|strong="H5674"\w* \w his|strong="H5674"\w* \w brothers|strong="H1121"\w* \w and|strong="H1121"\w* \w went|strong="H5674"\w* \w over|strong="H5674"\w* \w to|strong="H1121"\w* \w Shechem|strong="H7927"\w*; \w and|strong="H1121"\w* \w the|strong="H5674"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Shechem|strong="H7927"\w* \w put|strong="H5674"\w* their trust \w in|strong="H1121"\w* \w him|strong="H5674"\w*. +\v 27 \w They|strong="H6213"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H6213"\w* \w the|strong="H6213"\w* \w field|strong="H7704"\w*, \w harvested|strong="H1219"\w* \w their|strong="H6213"\w* \w vineyards|strong="H3754"\w*, \w trod|strong="H1869"\w* \w the|strong="H6213"\w* grapes, \w celebrated|strong="H6213"\w*, \w and|strong="H1004"\w* \w went|strong="H3318"\w* \w into|strong="H6213"\w* \w the|strong="H6213"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w their|strong="H6213"\w* god \w and|strong="H1004"\w* ate \w and|strong="H1004"\w* \w drank|strong="H8354"\w*, \w and|strong="H1004"\w* \w cursed|strong="H7043"\w* Abimelech. +\v 28 \w Gaal|strong="H1603"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ebed|strong="H5651"\w* said, “\w Who|strong="H4310"\w* \w is|strong="H4310"\w* Abimelech, \w and|strong="H1121"\w* \w who|strong="H4310"\w* \w is|strong="H4310"\w* \w Shechem|strong="H7927"\w*, \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w should|strong="H3588"\w* \w serve|strong="H5647"\w* \w him|strong="H5647"\w*? Isn’t \w he|strong="H3588"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jerubbaal|strong="H3378"\w*? Isn’t \w Zebul|strong="H2083"\w* \w his|strong="H3588"\w* \w officer|strong="H6496"\w*? \w Serve|strong="H5647"\w* \w the|strong="H3588"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Hamor|strong="H2544"\w* \w the|strong="H3588"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* \w Shechem|strong="H7927"\w*, \w but|strong="H3588"\w* \w why|strong="H4069"\w* \w should|strong="H3588"\w* \w we|strong="H3068"\w* \w serve|strong="H5647"\w* \w him|strong="H5647"\w*? +\v 29 \w I|strong="H5414"\w* \w wish|strong="H4310"\w* \w that|strong="H5971"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w were|strong="H5971"\w* \w under|strong="H3027"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w*! \w Then|strong="H3318"\w* \w I|strong="H5414"\w* \w would|strong="H4310"\w* \w remove|strong="H5493"\w* Abimelech.” \w He|strong="H5414"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* Abimelech, “\w Increase|strong="H7235"\w* \w your|strong="H5414"\w* \w army|strong="H6635"\w* \w and|strong="H3027"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w*!” +\p +\v 30 \w When|strong="H8085"\w* \w Zebul|strong="H2083"\w* \w the|strong="H8085"\w* \w ruler|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* \w city|strong="H5892"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w of|strong="H1121"\w* \w Gaal|strong="H1603"\w* \w the|strong="H8085"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ebed|strong="H5651"\w*, \w his|strong="H8085"\w* anger \w burned|strong="H2734"\w*. +\v 31 \w He|strong="H5921"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H7971"\w* Abimelech craftily, saying, “\w Behold|strong="H2009"\w*, \w Gaal|strong="H1603"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ebed|strong="H5651"\w* \w and|strong="H1121"\w* \w his|strong="H7971"\w* \w brothers|strong="H1121"\w* \w have|strong="H1121"\w* \w come|strong="H5892"\w* \w to|strong="H7971"\w* \w Shechem|strong="H7927"\w*; \w and|strong="H1121"\w* \w behold|strong="H2009"\w*, \w they|strong="H5921"\w* incite \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w against|strong="H5921"\w* \w you|strong="H7971"\w*. +\v 32 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w go|strong="H6965"\w* \w up|strong="H6965"\w* \w by|strong="H6965"\w* \w night|strong="H3915"\w*, \w you|strong="H3915"\w* \w and|strong="H6965"\w* \w the|strong="H6965"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w are|strong="H5971"\w* \w with|strong="H5971"\w* \w you|strong="H3915"\w*, \w and|strong="H6965"\w* lie \w in|strong="H5971"\w* wait \w in|strong="H5971"\w* \w the|strong="H6965"\w* \w field|strong="H7704"\w*. +\v 33 \w It|strong="H1931"\w* \w shall|strong="H5971"\w* \w be|strong="H1961"\w* \w that|strong="H5971"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w morning|strong="H1242"\w*, \w as|strong="H1961"\w* \w soon|strong="H1242"\w* \w as|strong="H1961"\w* \w the|strong="H5921"\w* \w sun|strong="H8121"\w* \w is|strong="H1931"\w* \w up|strong="H7925"\w*, \w you|strong="H5921"\w* \w shall|strong="H5971"\w* \w rise|strong="H7925"\w* \w early|strong="H7925"\w* \w and|strong="H3027"\w* \w rush|strong="H6584"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*. \w Behold|strong="H2009"\w*, \w when|strong="H1961"\w* \w he|strong="H1931"\w* \w and|strong="H3027"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w who|strong="H1931"\w* \w are|strong="H5971"\w* \w with|strong="H6213"\w* \w him|strong="H5921"\w* \w come|strong="H1961"\w* \w out|strong="H3318"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w*, \w then|strong="H1961"\w* \w may|strong="H1961"\w* \w you|strong="H5921"\w* \w do|strong="H6213"\w* \w to|strong="H3318"\w* \w them|strong="H5921"\w* \w as|strong="H1961"\w* \w you|strong="H5921"\w* \w shall|strong="H5971"\w* \w find|strong="H4672"\w* \w occasion|strong="H4672"\w*.” +\p +\v 34 Abimelech \w rose|strong="H6965"\w* \w up|strong="H6965"\w*, \w and|strong="H6965"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w*, \w by|strong="H5921"\w* \w night|strong="H3915"\w*, \w and|strong="H6965"\w* \w they|strong="H5921"\w* laid wait \w against|strong="H5921"\w* \w Shechem|strong="H7927"\w* \w in|strong="H5921"\w* four \w companies|strong="H7218"\w*. +\v 35 \w Gaal|strong="H1603"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ebed|strong="H5651"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H1121"\w* \w stood|strong="H5975"\w* \w in|strong="H5892"\w* \w the|strong="H4480"\w* \w entrance|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w gate|strong="H8179"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w city|strong="H5892"\w*. Abimelech \w rose|strong="H6965"\w* \w up|strong="H6965"\w*, \w and|strong="H1121"\w* \w the|strong="H4480"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w with|strong="H3318"\w* \w him|strong="H3318"\w*, \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w ambush|strong="H3993"\w*. +\p +\v 36 \w When|strong="H7200"\w* \w Gaal|strong="H1603"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w*, \w he|strong="H5971"\w* said \w to|strong="H3381"\w* \w Zebul|strong="H2083"\w*, “\w Behold|strong="H2009"\w*, \w people|strong="H5971"\w* \w are|strong="H5971"\w* \w coming|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H3381"\w* \w the|strong="H7200"\w* \w tops|strong="H7218"\w* \w of|strong="H2022"\w* \w the|strong="H7200"\w* \w mountains|strong="H2022"\w*.” +\p \w Zebul|strong="H2083"\w* said \w to|strong="H3381"\w* \w him|strong="H7200"\w*, “\w You|strong="H7200"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w shadows|strong="H6738"\w* \w of|strong="H2022"\w* \w the|strong="H7200"\w* \w mountains|strong="H2022"\w* \w as|strong="H5971"\w* \w if|strong="H2009"\w* \w they|strong="H5971"\w* \w were|strong="H5971"\w* \w men|strong="H7218"\w*.” +\p +\v 37 \w Gaal|strong="H1603"\w* \w spoke|strong="H1696"\w* \w again|strong="H5750"\w* \w and|strong="H5971"\w* \w said|strong="H1696"\w*, “\w Behold|strong="H2009"\w*, \w people|strong="H5971"\w* \w are|strong="H5971"\w* \w coming|strong="H3381"\w* \w down|strong="H3381"\w* \w by|strong="H1870"\w* \w the|strong="H1870"\w* \w middle|strong="H2872"\w* \w of|strong="H7218"\w* \w the|strong="H1870"\w* land, \w and|strong="H5971"\w* one \w company|strong="H7218"\w* \w comes|strong="H3381"\w* \w by|strong="H1870"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H7218"\w* \w the|strong="H1870"\w* oak \w of|strong="H7218"\w* \w Meonenim|strong="H6049"\w*.” +\p +\v 38 \w Then|strong="H3318"\w* \w Zebul|strong="H2083"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H3318"\w*, “\w Now|strong="H6258"\w* \w where|strong="H2088"\w* \w is|strong="H2088"\w* \w your|strong="H3588"\w* \w mouth|strong="H6310"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w said|strong="H3318"\w*, ‘\w Who|strong="H4310"\w* \w is|strong="H2088"\w* Abimelech, \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w should|strong="H3588"\w* \w serve|strong="H5647"\w* \w him|strong="H3318"\w*?’ Isn’t \w this|strong="H2088"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H5971"\w* \w despised|strong="H3988"\w*? \w Please|strong="H4994"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w now|strong="H6258"\w* \w and|strong="H5971"\w* \w fight|strong="H3898"\w* \w with|strong="H3898"\w* \w them|strong="H3318"\w*.” +\p +\v 39 \w Gaal|strong="H1603"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w men|strong="H1167"\w* \w of|strong="H6440"\w* \w Shechem|strong="H7927"\w*, \w and|strong="H6440"\w* \w fought|strong="H3898"\w* \w with|strong="H3898"\w* Abimelech. +\v 40 Abimelech \w chased|strong="H7291"\w* \w him|strong="H6440"\w*, \w and|strong="H6440"\w* \w he|strong="H5704"\w* \w fled|strong="H5127"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, \w and|strong="H6440"\w* \w many|strong="H7227"\w* \w fell|strong="H5307"\w* \w wounded|strong="H2491"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H6440"\w* \w entrance|strong="H6607"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w gate|strong="H8179"\w*. +\v 41 Abimelech \w lived|strong="H3427"\w* \w at|strong="H3427"\w* Arumah; \w and|strong="H3427"\w* \w Zebul|strong="H2083"\w* \w drove|strong="H1644"\w* \w out|strong="H1644"\w* \w Gaal|strong="H1603"\w* \w and|strong="H3427"\w* \w his|strong="H3427"\w* brothers, \w that|strong="H3427"\w* they should not \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w Shechem|strong="H7927"\w*. +\v 42 \w On|strong="H1961"\w* \w the|strong="H3318"\w* \w next|strong="H4283"\w* \w day|strong="H4283"\w*, \w the|strong="H3318"\w* \w people|strong="H5971"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H3318"\w* \w field|strong="H7704"\w*; \w and|strong="H5971"\w* \w they|strong="H5971"\w* \w told|strong="H5046"\w* Abimelech. +\v 43 \w He|strong="H4480"\w* \w took|strong="H3947"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w and|strong="H6965"\w* \w divided|strong="H2673"\w* \w them|strong="H5921"\w* \w into|strong="H5921"\w* \w three|strong="H7969"\w* \w companies|strong="H7218"\w*, \w and|strong="H6965"\w* \w laid|strong="H3318"\w* wait \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w field|strong="H7704"\w*; \w and|strong="H6965"\w* \w he|strong="H4480"\w* \w looked|strong="H7200"\w*, \w and|strong="H6965"\w* \w behold|strong="H2009"\w*, \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H5892"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*. \w So|strong="H4480"\w*, \w he|strong="H4480"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w* \w and|strong="H6965"\w* \w struck|strong="H5221"\w* \w them|strong="H5921"\w*. +\v 44 Abimelech \w and|strong="H5892"\w* \w the|strong="H3605"\w* \w companies|strong="H7218"\w* \w that|strong="H3605"\w* \w were|strong="H7218"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w* \w rushed|strong="H6584"\w* \w forward|strong="H5221"\w* \w and|strong="H5892"\w* \w stood|strong="H5975"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w entrance|strong="H6607"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*; \w and|strong="H5892"\w* \w the|strong="H3605"\w* \w two|strong="H8147"\w* \w companies|strong="H7218"\w* \w rushed|strong="H6584"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H7218"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w and|strong="H5892"\w* \w struck|strong="H5221"\w* \w them|strong="H5921"\w*. +\v 45 Abimelech \w fought|strong="H3898"\w* \w against|strong="H3898"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w all|strong="H3605"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w*; \w and|strong="H3117"\w* \w he|strong="H1931"\w* \w took|strong="H3920"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w and|strong="H3117"\w* \w killed|strong="H2026"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w in|strong="H3117"\w* \w it|strong="H1931"\w*. \w He|strong="H1931"\w* beat \w down|strong="H5422"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w and|strong="H3117"\w* \w sowed|strong="H2232"\w* \w it|strong="H1931"\w* \w with|strong="H3898"\w* \w salt|strong="H4417"\w*. +\p +\v 46 \w When|strong="H8085"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H1167"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w tower|strong="H4026"\w* \w of|strong="H1004"\w* \w Shechem|strong="H7927"\w* \w heard|strong="H8085"\w* \w of|strong="H1004"\w* \w it|strong="H3605"\w*, \w they|strong="H3605"\w* entered into \w the|strong="H3605"\w* stronghold \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* Elberith. +\v 47 Abimelech \w was|strong="H3605"\w* \w told|strong="H5046"\w* \w that|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H1167"\w* \w of|strong="H1167"\w* \w the|strong="H3605"\w* \w tower|strong="H4026"\w* \w of|strong="H1167"\w* \w Shechem|strong="H7927"\w* \w were|strong="H3605"\w* \w gathered|strong="H6908"\w* \w together|strong="H6908"\w*. +\v 48 Abimelech \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w Mount|strong="H2022"\w* \w Zalmon|strong="H6756"\w*, \w he|strong="H1931"\w* \w and|strong="H3027"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w*; \w and|strong="H3027"\w* Abimelech \w took|strong="H3947"\w* \w an|strong="H6213"\w* ax \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w cut|strong="H3772"\w* \w down|strong="H3772"\w* \w a|strong="H3068"\w* \w bough|strong="H7754"\w* \w from|strong="H3772"\w* \w the|strong="H3605"\w* \w trees|strong="H6086"\w*, \w and|strong="H3027"\w* \w took|strong="H3947"\w* \w it|strong="H7760"\w* \w up|strong="H5927"\w*, \w and|strong="H3027"\w* \w laid|strong="H7760"\w* \w it|strong="H7760"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w shoulder|strong="H7926"\w*. \w Then|strong="H3947"\w* \w he|strong="H1931"\w* said \w to|strong="H5927"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w*, “\w What|strong="H4100"\w* \w you|strong="H3605"\w* \w have|strong="H5971"\w* \w seen|strong="H7200"\w* \w me|strong="H7200"\w* \w do|strong="H6213"\w*, \w make|strong="H6213"\w* \w haste|strong="H4116"\w*, \w and|strong="H3027"\w* \w do|strong="H6213"\w* \w as|strong="H3644"\w* \w I|strong="H5921"\w* \w have|strong="H5971"\w* \w done|strong="H6213"\w*!” +\v 49 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w likewise|strong="H1571"\w* \w each|strong="H3605"\w* \w cut|strong="H3772"\w* \w down|strong="H3772"\w* \w his|strong="H3605"\w* \w bough|strong="H7754"\w*, \w followed|strong="H3212"\w* Abimelech, \w and|strong="H3212"\w* \w put|strong="H7760"\w* \w them|strong="H5921"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* base \w of|strong="H5971"\w* \w the|strong="H3605"\w* stronghold, \w and|strong="H3212"\w* \w set|strong="H7760"\w* \w the|strong="H3605"\w* stronghold \w on|strong="H5921"\w* \w fire|strong="H3341"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w*, \w so|strong="H1571"\w* \w that|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H5971"\w* \w the|strong="H3605"\w* \w tower|strong="H4026"\w* \w of|strong="H5971"\w* \w Shechem|strong="H7927"\w* \w died|strong="H4191"\w* \w also|strong="H1571"\w*, \w about|strong="H5921"\w* \w a|strong="H3068"\w* thousand \w men|strong="H5971"\w* \w and|strong="H3212"\w* women. +\v 50 Then Abimelech \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Thebez|strong="H8405"\w* \w and|strong="H3212"\w* \w encamped|strong="H2583"\w* \w against|strong="H2583"\w* \w Thebez|strong="H8405"\w*, \w and|strong="H3212"\w* \w took|strong="H3920"\w* \w it|strong="H3920"\w*. +\v 51 \w But|strong="H1961"\w* \w there|strong="H8033"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w strong|strong="H5797"\w* \w tower|strong="H4026"\w* \w within|strong="H8432"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w and|strong="H5892"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H1167"\w* \w and|strong="H5892"\w* women \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w fled|strong="H5127"\w* \w there|strong="H8033"\w*, \w and|strong="H5892"\w* \w shut|strong="H5462"\w* \w themselves|strong="H5921"\w* \w in|strong="H5921"\w*, \w and|strong="H5892"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H3605"\w* \w roof|strong="H1406"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w tower|strong="H4026"\w*. +\v 52 Abimelech \w came|strong="H5066"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w tower|strong="H4026"\w* \w and|strong="H5066"\w* \w fought|strong="H3898"\w* \w against|strong="H3898"\w* \w it|strong="H5704"\w*, \w and|strong="H5066"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w door|strong="H6607"\w* \w of|strong="H4026"\w* \w the|strong="H5704"\w* \w tower|strong="H4026"\w* \w to|strong="H5704"\w* \w burn|strong="H8313"\w* \w it|strong="H5704"\w* \w with|strong="H8313"\w* fire. +\v 53 \w A|strong="H3068"\w* certain woman \w cast|strong="H7993"\w* \w an|strong="H7993"\w* \w upper|strong="H7393"\w* \w millstone|strong="H7393"\w* \w on|strong="H5921"\w* Abimelech’s \w head|strong="H7218"\w*, \w and|strong="H7218"\w* \w broke|strong="H7533"\w* \w his|strong="H5921"\w* \w skull|strong="H1538"\w*. +\p +\v 54 \w Then|strong="H5375"\w* \w he|strong="H7121"\w* \w called|strong="H7121"\w* \w hastily|strong="H4120"\w* \w to|strong="H4191"\w* \w the|strong="H5375"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w*, \w his|strong="H5375"\w* \w armor|strong="H3627"\w* \w bearer|strong="H5375"\w*, \w and|strong="H2719"\w* \w said|strong="H7121"\w* \w to|strong="H4191"\w* \w him|strong="H7121"\w*, “\w Draw|strong="H8025"\w* \w your|strong="H5375"\w* \w sword|strong="H2719"\w* \w and|strong="H2719"\w* \w kill|strong="H2026"\w* \w me|strong="H7121"\w*, \w that|strong="H5288"\w* \w men|strong="H5288"\w* \w not|strong="H6435"\w* say \w of|strong="H3627"\w* \w me|strong="H7121"\w*, ‘\w A|strong="H3068"\w* woman \w killed|strong="H2026"\w* \w him|strong="H7121"\w*.’ \w His|strong="H5375"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* \w thrust|strong="H1856"\w* \w him|strong="H7121"\w* \w through|strong="H1856"\w*, \w and|strong="H2719"\w* \w he|strong="H7121"\w* \w died|strong="H4191"\w*.” +\p +\v 55 \w When|strong="H3588"\w* \w the|strong="H7200"\w* \w men|strong="H3478"\w* \w of|strong="H4725"\w* \w Israel|strong="H3478"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* Abimelech \w was|strong="H3478"\w* \w dead|strong="H4191"\w*, \w they|strong="H3588"\w* each \w departed|strong="H3212"\w* \w to|strong="H3478"\w* \w his|strong="H7200"\w* \w place|strong="H4725"\w*. +\v 56 Thus God \w repaid|strong="H7725"\w* \w the|strong="H6213"\w* \w wickedness|strong="H7451"\w* \w of|strong="H6213"\w* Abimelech, \w which|strong="H7451"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* father \w in|strong="H6213"\w* \w killing|strong="H2026"\w* \w his|strong="H7725"\w* \w seventy|strong="H7657"\w* brothers; +\v 57 \w and|strong="H1121"\w* God \w repaid|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w wickedness|strong="H7451"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Shechem|strong="H7927"\w* \w on|strong="H7451"\w* \w their|strong="H3605"\w* \w heads|strong="H7218"\w*; \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w curse|strong="H7045"\w* \w of|strong="H1121"\w* \w Jotham|strong="H3147"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jerubbaal|strong="H3378"\w* \w came|strong="H7725"\w* \w on|strong="H7451"\w* \w them|strong="H7725"\w*. +\c 10 +\p +\v 1 \w After|strong="H6965"\w* Abimelech, \w Tola|strong="H8439"\w* \w the|strong="H6965"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Puah|strong="H6312"\w*, \w the|strong="H6965"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Dodo|strong="H1734"\w*, \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w Issachar|strong="H3485"\w*, \w arose|strong="H6965"\w* \w to|strong="H3478"\w* \w save|strong="H3467"\w* \w Israel|strong="H3478"\w*. \w He|strong="H1931"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Shamir|strong="H8069"\w* \w in|strong="H3427"\w* \w the|strong="H6965"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H1121"\w* Ephraim. +\v 2 \w He|strong="H8141"\w* \w judged|strong="H8199"\w* \w Israel|strong="H3478"\w* \w twenty-three|strong="H6242"\w* \w years|strong="H8141"\w*, \w and|strong="H3478"\w* \w died|strong="H4191"\w*, \w and|strong="H3478"\w* \w was|strong="H3478"\w* \w buried|strong="H6912"\w* \w in|strong="H8141"\w* \w Shamir|strong="H8069"\w*. +\p +\v 3 \w After|strong="H6965"\w* him \w Jair|strong="H2971"\w*, \w the|strong="H6965"\w* \w Gileadite|strong="H1569"\w*, \w arose|strong="H6965"\w*. \w He|strong="H8147"\w* \w judged|strong="H8199"\w* \w Israel|strong="H3478"\w* \w twenty-two|strong="H6242"\w* \w years|strong="H8141"\w*. +\v 4 \w He|strong="H3117"\w* \w had|strong="H1961"\w* \w thirty|strong="H7970"\w* \w sons|strong="H1121"\w* \w who|strong="H1121"\w* \w rode|strong="H7392"\w* \w on|strong="H5921"\w* \w thirty|strong="H7970"\w* donkey \w colts|strong="H1121"\w*. \w They|strong="H1992"\w* \w had|strong="H1961"\w* \w thirty|strong="H7970"\w* \w cities|strong="H5895"\w*, \w which|strong="H1992"\w* \w are|strong="H3117"\w* \w called|strong="H7121"\w* Havvoth Jair \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, \w which|strong="H1992"\w* \w are|strong="H3117"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*. +\v 5 \w Jair|strong="H2971"\w* \w died|strong="H4191"\w*, \w and|strong="H4191"\w* was \w buried|strong="H6912"\w* \w in|strong="H4191"\w* \w Kamon|strong="H7056"\w*. +\p +\v 6 \w The|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w again|strong="H3254"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w and|strong="H1121"\w* \w served|strong="H5647"\w* \w the|strong="H6213"\w* \w Baals|strong="H1168"\w*, \w the|strong="H6213"\w* \w Ashtaroth|strong="H6252"\w*, \w the|strong="H6213"\w* gods \w of|strong="H1121"\w* Syria, \w the|strong="H6213"\w* gods \w of|strong="H1121"\w* \w Sidon|strong="H6721"\w*, \w the|strong="H6213"\w* gods \w of|strong="H1121"\w* \w Moab|strong="H4124"\w*, \w the|strong="H6213"\w* gods \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, \w and|strong="H1121"\w* \w the|strong="H6213"\w* gods \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w Philistines|strong="H6430"\w*. \w They|strong="H3068"\w* \w abandoned|strong="H5800"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H1121"\w* didn’t \w serve|strong="H5647"\w* \w him|strong="H6213"\w*. +\v 7 \w Yahweh|strong="H3068"\w*’s anger \w burned|strong="H2734"\w* \w against|strong="H2734"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w he|strong="H3068"\w* \w sold|strong="H4376"\w* \w them|strong="H3027"\w* \w into|strong="H3027"\w* \w the|strong="H3068"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w Philistines|strong="H6430"\w* \w and|strong="H1121"\w* \w into|strong="H3027"\w* \w the|strong="H3068"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*. +\v 8 \w They|strong="H8141"\w* troubled \w and|strong="H1121"\w* \w oppressed|strong="H7533"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w that|strong="H3605"\w* \w year|strong="H8141"\w*. \w For|strong="H1121"\w* \w eighteen|strong="H8083"\w* \w years|strong="H8141"\w* \w they|strong="H8141"\w* \w oppressed|strong="H7533"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w that|strong="H3605"\w* \w were|strong="H3478"\w* \w beyond|strong="H5676"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w land|strong="H5676"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* Amorites, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w in|strong="H8141"\w* \w Gilead|strong="H1568"\w*. +\v 9 \w The|strong="H5674"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w passed|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H5674"\w* \w Jordan|strong="H3383"\w* \w to|strong="H3478"\w* \w fight|strong="H3898"\w* \w also|strong="H1571"\w* \w against|strong="H3898"\w* \w Judah|strong="H3063"\w*, \w and|strong="H1121"\w* \w against|strong="H3898"\w* \w Benjamin|strong="H1144"\w*, \w and|strong="H1121"\w* \w against|strong="H3898"\w* \w the|strong="H5674"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* Ephraim, \w so|strong="H1571"\w* \w that|strong="H3478"\w* \w Israel|strong="H3478"\w* \w was|strong="H3478"\w* \w very|strong="H3966"\w* \w distressed|strong="H3334"\w*. +\v 10 \w The|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w cried|strong="H2199"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, saying, “\w We|strong="H3588"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w you|strong="H3588"\w*, \w even|strong="H3588"\w* \w because|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H1121"\w* \w have|strong="H3068"\w* \w served|strong="H5647"\w* \w the|strong="H3588"\w* \w Baals|strong="H1168"\w*.” +\p +\v 11 \w Yahweh|strong="H3068"\w* said \w to|strong="H3478"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, “Didn’t \w I|strong="H4714"\w* save \w you|strong="H3808"\w* \w from|strong="H4480"\w* \w the|strong="H3068"\w* \w Egyptians|strong="H4714"\w*, \w and|strong="H1121"\w* \w from|strong="H4480"\w* \w the|strong="H3068"\w* Amorites, \w from|strong="H4480"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, \w and|strong="H1121"\w* \w from|strong="H4480"\w* \w the|strong="H3068"\w* \w Philistines|strong="H6430"\w*? +\v 12 \w The|strong="H3027"\w* \w Sidonians|strong="H6722"\w* \w also|strong="H3027"\w*, \w and|strong="H3027"\w* \w the|strong="H3027"\w* \w Amalekites|strong="H6002"\w*, \w and|strong="H3027"\w* \w the|strong="H3027"\w* \w Maonites|strong="H4584"\w*, \w oppressed|strong="H3905"\w* \w you|strong="H3027"\w*; \w and|strong="H3027"\w* \w you|strong="H3027"\w* \w cried|strong="H6817"\w* \w to|strong="H3027"\w* \w me|strong="H3467"\w*, \w and|strong="H3027"\w* \w I|strong="H3027"\w* \w saved|strong="H3467"\w* \w you|strong="H3027"\w* \w out|strong="H6817"\w* \w of|strong="H3027"\w* \w their|strong="H3027"\w* \w hand|strong="H3027"\w*. +\v 13 \w Yet|strong="H3254"\w* \w you|strong="H3808"\w* \w have|strong="H3808"\w* \w forsaken|strong="H5800"\w* \w me|strong="H3254"\w* \w and|strong="H3254"\w* \w served|strong="H5647"\w* other gods. \w Therefore|strong="H3651"\w* \w I|strong="H3651"\w* \w will|strong="H3808"\w* \w save|strong="H3467"\w* \w you|strong="H3808"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w*. +\v 14 \w Go|strong="H3212"\w* \w and|strong="H3212"\w* \w cry|strong="H2199"\w* \w to|strong="H3212"\w* \w the|strong="H3467"\w* gods \w which|strong="H1992"\w* \w you|strong="H3467"\w* \w have|strong="H6256"\w* chosen. \w Let|strong="H3212"\w* \w them|strong="H1992"\w* \w save|strong="H3467"\w* \w you|strong="H3467"\w* \w in|strong="H3212"\w* \w the|strong="H3467"\w* \w time|strong="H6256"\w* \w of|strong="H6256"\w* \w your|strong="H3467"\w* \w distress|strong="H6869"\w*!” +\p +\v 15 \w The|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* said \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, “\w We|strong="H3117"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w*! \w Do|strong="H6213"\w* \w to|strong="H3478"\w* \w us|strong="H4994"\w* \w whatever|strong="H3605"\w* \w seems|strong="H3605"\w* \w good|strong="H2896"\w* \w to|strong="H3478"\w* \w you|strong="H3605"\w*; \w only|strong="H3605"\w* \w deliver|strong="H5337"\w* \w us|strong="H4994"\w*, \w please|strong="H4994"\w*, \w today|strong="H3117"\w*.” +\v 16 \w They|strong="H3068"\w* \w put|strong="H5493"\w* \w away|strong="H5493"\w* \w the|strong="H5647"\w* \w foreign|strong="H5236"\w* gods \w from|strong="H5493"\w* \w among|strong="H7130"\w* \w them|strong="H5493"\w* \w and|strong="H3478"\w* \w served|strong="H5647"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H3478"\w* \w his|strong="H3068"\w* \w soul|strong="H5315"\w* \w was|strong="H3068"\w* \w grieved|strong="H7114"\w* \w for|strong="H3068"\w* \w the|strong="H5647"\w* \w misery|strong="H5999"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\p +\v 17 \w Then|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w were|strong="H3478"\w* \w gathered|strong="H6817"\w* \w together|strong="H6817"\w* \w and|strong="H1121"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Gilead|strong="H1568"\w*. \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w assembled|strong="H6817"\w* themselves \w together|strong="H6817"\w* \w and|strong="H1121"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Mizpah|strong="H4709"\w*. +\v 18 \w The|strong="H3605"\w* \w people|strong="H5971"\w*, \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*, said \w to|strong="H1961"\w* \w one|strong="H3605"\w* \w another|strong="H7453"\w*, “\w Who|strong="H4310"\w* \w is|strong="H4310"\w* \w the|strong="H3605"\w* \w man|strong="H1121"\w* \w who|strong="H4310"\w* \w will|strong="H4310"\w* \w begin|strong="H2490"\w* \w to|strong="H1961"\w* \w fight|strong="H3898"\w* \w against|strong="H3898"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*? \w He|strong="H3605"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w head|strong="H7218"\w* \w over|strong="H8269"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*.” +\c 11 +\p +\v 1 \w Now|strong="H1961"\w* \w Jephthah|strong="H3316"\w* \w the|strong="H3205"\w* \w Gileadite|strong="H1569"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w* \w of|strong="H1121"\w* \w valor|strong="H2428"\w*. \w He|strong="H1931"\w* \w was|strong="H1961"\w* \w the|strong="H3205"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w prostitute|strong="H2181"\w*. \w Gilead|strong="H1568"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Jephthah|strong="H3316"\w*. +\v 2 \w Gilead|strong="H1568"\w*’s wife \w bore|strong="H3205"\w* \w him|strong="H3205"\w* \w sons|strong="H1121"\w*. \w When|strong="H3588"\w* \w his|strong="H3588"\w* wife’s \w sons|strong="H1121"\w* \w grew|strong="H1431"\w* \w up|strong="H1431"\w*, \w they|strong="H3588"\w* \w drove|strong="H1644"\w* \w Jephthah|strong="H3316"\w* \w out|strong="H1644"\w* \w and|strong="H1121"\w* said \w to|strong="H3205"\w* \w him|strong="H3205"\w*, “\w You|strong="H3588"\w* \w will|strong="H1121"\w* \w not|strong="H3808"\w* \w inherit|strong="H5157"\w* \w in|strong="H1004"\w* \w our|strong="H3588"\w* \w father|strong="H3205"\w*’s \w house|strong="H1004"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H1121"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w another|strong="H3808"\w* \w woman|strong="H3205"\w*.” +\v 3 \w Then|strong="H3318"\w* \w Jephthah|strong="H3316"\w* \w fled|strong="H1272"\w* \w from|strong="H3318"\w* \w his|strong="H6440"\w* brothers \w and|strong="H6440"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H3427"\w* \w Tob|strong="H2897"\w*. Outlaws \w joined|strong="H3950"\w* \w up|strong="H3318"\w* \w with|strong="H5973"\w* \w Jephthah|strong="H3316"\w*, \w and|strong="H6440"\w* \w they|strong="H6440"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w with|strong="H5973"\w* \w him|strong="H6440"\w*. +\p +\v 4 \w After|strong="H1961"\w* \w a|strong="H3068"\w* \w while|strong="H1961"\w*, \w the|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w made|strong="H1961"\w* \w war|strong="H3898"\w* \w against|strong="H5973"\w* \w Israel|strong="H3478"\w*. +\v 5 \w When|strong="H1961"\w* \w the|strong="H3947"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w made|strong="H1961"\w* \w war|strong="H3898"\w* \w against|strong="H5973"\w* \w Israel|strong="H3478"\w*, \w the|strong="H3947"\w* \w elders|strong="H2205"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w* \w went|strong="H3212"\w* \w to|strong="H3478"\w* \w get|strong="H3947"\w* \w Jephthah|strong="H3316"\w* \w out|strong="H3947"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* land \w of|strong="H1121"\w* \w Tob|strong="H2897"\w*. +\v 6 \w They|strong="H5983"\w* said \w to|strong="H3212"\w* \w Jephthah|strong="H3316"\w*, “\w Come|strong="H1961"\w* \w and|strong="H1121"\w* \w be|strong="H1961"\w* \w our|strong="H1961"\w* \w chief|strong="H7101"\w*, \w that|strong="H1121"\w* \w we|strong="H3068"\w* \w may|strong="H1961"\w* \w fight|strong="H3898"\w* \w with|strong="H3898"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*.” +\p +\v 7 \w Jephthah|strong="H3316"\w* said \w to|strong="H1004"\w* \w the|strong="H6258"\w* \w elders|strong="H2205"\w* \w of|strong="H1004"\w* \w Gilead|strong="H1568"\w*, “Didn’t \w you|strong="H3808"\w* \w hate|strong="H8130"\w* \w me|strong="H8130"\w*, \w and|strong="H1004"\w* \w drive|strong="H1644"\w* \w me|strong="H8130"\w* \w out|strong="H1644"\w* \w of|strong="H1004"\w* \w my|strong="H6258"\w* father’s \w house|strong="H1004"\w*? \w Why|strong="H4069"\w* \w have|strong="H6862"\w* \w you|strong="H3808"\w* come \w to|strong="H1004"\w* \w me|strong="H8130"\w* \w now|strong="H6258"\w* when \w you|strong="H3808"\w* \w are|strong="H1004"\w* \w in|strong="H1004"\w* \w distress|strong="H6862"\w*?” +\p +\v 8 \w The|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w* \w said|strong="H3651"\w* \w to|strong="H1980"\w* \w Jephthah|strong="H3316"\w*, “\w Therefore|strong="H3651"\w* \w we|strong="H3068"\w* \w have|strong="H1961"\w* \w turned|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H1980"\w* \w you|strong="H3605"\w* \w now|strong="H6258"\w*, \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w may|strong="H1961"\w* \w go|strong="H1980"\w* \w with|strong="H5973"\w* \w us|strong="H7725"\w* \w and|strong="H1121"\w* \w fight|strong="H3898"\w* \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*. \w You|strong="H3605"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w our|strong="H3605"\w* \w head|strong="H7218"\w* \w over|strong="H7218"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*.” +\p +\v 9 \w Jephthah|strong="H3316"\w* said \w to|strong="H7725"\w* \w the|strong="H6440"\w* \w elders|strong="H2205"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*, “\w If|strong="H1961"\w* \w you|strong="H5414"\w* \w bring|strong="H7725"\w* \w me|strong="H5414"\w* \w home|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w fight|strong="H3898"\w* \w with|strong="H3068"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, \w and|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w delivers|strong="H5414"\w* \w them|strong="H5414"\w* \w before|strong="H6440"\w* \w me|strong="H5414"\w*, \w will|strong="H3068"\w* \w I|strong="H5414"\w* \w be|strong="H1961"\w* \w your|strong="H3068"\w* \w head|strong="H7218"\w*?” +\p +\v 10 \w The|strong="H8085"\w* \w elders|strong="H2205"\w* \w of|strong="H3068"\w* \w Gilead|strong="H1568"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w Jephthah|strong="H3316"\w*, “\w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w witness|strong="H8085"\w* between \w us|strong="H6213"\w*. \w Surely|strong="H6213"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w what|strong="H1697"\w* \w you|strong="H6213"\w* \w say|strong="H1697"\w*.” +\p +\v 11 \w Then|strong="H1696"\w* \w Jephthah|strong="H3316"\w* \w went|strong="H3212"\w* \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H3068"\w* \w Gilead|strong="H1568"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w made|strong="H7760"\w* \w him|strong="H6440"\w* \w head|strong="H7218"\w* \w and|strong="H3068"\w* \w chief|strong="H7218"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w*. \w Jephthah|strong="H3316"\w* \w spoke|strong="H1696"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w words|strong="H1697"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H5921"\w* \w Mizpah|strong="H4709"\w*. +\p +\v 12 \w Jephthah|strong="H3316"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H7971"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, saying, “\w What|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H3588"\w* \w have|strong="H1121"\w* \w to|strong="H7971"\w* \w do|strong="H4100"\w* \w with|strong="H3898"\w* \w me|strong="H7971"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1121"\w* \w come|strong="H7971"\w* \w to|strong="H7971"\w* \w me|strong="H7971"\w* \w to|strong="H7971"\w* \w fight|strong="H3898"\w* \w against|strong="H3898"\w* \w my|strong="H7971"\w* land?” +\p +\v 13 \w The|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w answered|strong="H7725"\w* \w the|strong="H3588"\w* \w messengers|strong="H4397"\w* \w of|strong="H1121"\w* \w Jephthah|strong="H3316"\w*, “\w Because|strong="H3588"\w* \w Israel|strong="H3478"\w* \w took|strong="H3947"\w* \w away|strong="H7725"\w* \w my|strong="H3947"\w* land \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H3947"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w from|strong="H7725"\w* \w the|strong="H3588"\w* Arnon \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w Jabbok|strong="H2999"\w*, \w and|strong="H1121"\w* \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w Jordan|strong="H3383"\w*. \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w restore|strong="H7725"\w* \w that|strong="H3588"\w* territory \w again|strong="H7725"\w* \w peaceably|strong="H7965"\w*.” +\p +\v 14 \w Jephthah|strong="H3316"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w again|strong="H5750"\w* \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H7971"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*; +\v 15 \w and|strong="H1121"\w* \w he|strong="H3808"\w* said \w to|strong="H3478"\w* \w him|strong="H3947"\w*, “\w Jephthah|strong="H3316"\w* \w says|strong="H3541"\w*: \w Israel|strong="H3478"\w* didn’t \w take|strong="H3947"\w* \w away|strong="H3947"\w* \w the|strong="H3947"\w* land \w of|strong="H1121"\w* \w Moab|strong="H4124"\w*, \w nor|strong="H3808"\w* \w the|strong="H3947"\w* land \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*; +\v 16 \w but|strong="H3588"\w* \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5927"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H3478"\w* \w Israel|strong="H3478"\w* \w went|strong="H3212"\w* \w through|strong="H3212"\w* \w the|strong="H3588"\w* \w wilderness|strong="H4057"\w* \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w*, \w and|strong="H3478"\w* \w came|strong="H5927"\w* \w to|strong="H5704"\w* \w Kadesh|strong="H6946"\w*, +\v 17 \w then|strong="H7971"\w* \w Israel|strong="H3478"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Edom, saying, ‘\w Please|strong="H4994"\w* \w let|strong="H7971"\w* \w me|strong="H4994"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w your|strong="H8085"\w* land;’ \w but|strong="H3808"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Edom didn’t \w listen|strong="H8085"\w*. \w In|strong="H3427"\w* \w the|strong="H8085"\w* same \w way|strong="H7971"\w*, \w he|strong="H3808"\w* \w sent|strong="H7971"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Moab|strong="H4124"\w*, \w but|strong="H3808"\w* \w he|strong="H3808"\w* \w refused|strong="H3808"\w*; \w so|strong="H7971"\w* \w Israel|strong="H3478"\w* \w stayed|strong="H3427"\w* \w in|strong="H3427"\w* \w Kadesh|strong="H6946"\w*. +\v 18 \w Then|strong="H3588"\w* \w they|strong="H3588"\w* \w went|strong="H3212"\w* \w through|strong="H3212"\w* \w the|strong="H3588"\w* \w wilderness|strong="H4057"\w*, \w and|strong="H3212"\w* \w went|strong="H3212"\w* \w around|strong="H5437"\w* \w the|strong="H3588"\w* \w land|strong="H1366"\w* \w of|strong="H1366"\w* Edom, \w and|strong="H3212"\w* \w the|strong="H3588"\w* \w land|strong="H1366"\w* \w of|strong="H1366"\w* \w Moab|strong="H4124"\w*, \w and|strong="H3212"\w* \w came|strong="H3212"\w* \w by|strong="H4124"\w* \w the|strong="H3588"\w* \w east|strong="H4217"\w* \w side|strong="H5676"\w* \w of|strong="H1366"\w* \w the|strong="H3588"\w* \w land|strong="H1366"\w* \w of|strong="H1366"\w* \w Moab|strong="H4124"\w*, \w and|strong="H3212"\w* \w they|strong="H3588"\w* \w encamped|strong="H2583"\w* \w on|strong="H3212"\w* \w the|strong="H3588"\w* \w other|strong="H5676"\w* \w side|strong="H5676"\w* \w of|strong="H1366"\w* \w the|strong="H3588"\w* Arnon; \w but|strong="H3588"\w* \w they|strong="H3588"\w* didn’t \w come|strong="H3212"\w* within \w the|strong="H3588"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Moab|strong="H4124"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* Arnon \w was|strong="H1366"\w* \w the|strong="H3588"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Moab|strong="H4124"\w*. +\v 19 \w Israel|strong="H3478"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H5704"\w* \w Sihon|strong="H5511"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H5704"\w* Amorites, \w the|strong="H5704"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Heshbon|strong="H2809"\w*; \w and|strong="H3478"\w* \w Israel|strong="H3478"\w* said \w to|strong="H5704"\w* \w him|strong="H7971"\w*, ‘\w Please|strong="H4994"\w* \w let|strong="H7971"\w* \w us|strong="H4994"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w your|strong="H7971"\w* \w land|strong="H4725"\w* \w to|strong="H5704"\w* \w my|strong="H7971"\w* \w place|strong="H4725"\w*.’ +\v 20 \w But|strong="H3808"\w* \w Sihon|strong="H5511"\w* didn’t trust \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w his|strong="H3605"\w* \w border|strong="H1366"\w*; \w but|strong="H3808"\w* \w Sihon|strong="H5511"\w* \w gathered|strong="H3478"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w* \w together|strong="H5973"\w*, \w and|strong="H3478"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Jahaz|strong="H3096"\w*, \w and|strong="H3478"\w* \w fought|strong="H3898"\w* \w against|strong="H5973"\w* \w Israel|strong="H3478"\w*. +\v 21 \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w delivered|strong="H5414"\w* \w Sihon|strong="H5511"\w* \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w* \w into|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w they|strong="H3068"\w* \w struck|strong="H5221"\w* \w them|strong="H5414"\w*. \w So|strong="H5414"\w* \w Israel|strong="H3478"\w* \w possessed|strong="H3423"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H3068"\w* \w the|strong="H3605"\w* Amorites, \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w that|strong="H5971"\w* country. +\v 22 \w They|strong="H5704"\w* \w possessed|strong="H3423"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w the|strong="H3605"\w* Amorites, \w from|strong="H4480"\w* \w the|strong="H3605"\w* Arnon \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w Jabbok|strong="H2999"\w*, \w and|strong="H4057"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*. +\v 23 \w So|strong="H6258"\w* \w now|strong="H6258"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w has|strong="H3068"\w* \w dispossessed|strong="H3423"\w* \w the|strong="H6440"\w* Amorites \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w should|strong="H3068"\w* \w you|strong="H6440"\w* \w possess|strong="H3423"\w* \w them|strong="H6440"\w*? +\v 24 Won’t \w you|strong="H6440"\w* \w possess|strong="H3423"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w Chemosh|strong="H3645"\w* \w your|strong="H3068"\w* \w god|strong="H3068"\w* \w gives|strong="H3423"\w* \w you|strong="H6440"\w* \w to|strong="H3068"\w* \w possess|strong="H3423"\w*? \w So|strong="H3808"\w* \w whoever|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w dispossessed|strong="H3423"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w us|strong="H6440"\w*, \w them|strong="H6440"\w* \w will|strong="H3068"\w* \w we|strong="H3068"\w* \w possess|strong="H3423"\w*. +\v 25 \w Now|strong="H6258"\w* \w are|strong="H1121"\w* \w you|strong="H5973"\w* anything \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w Balak|strong="H1111"\w* \w the|strong="H5973"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zippor|strong="H6834"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w*? \w Did|strong="H3478"\w* \w he|strong="H3478"\w* \w ever|strong="H7378"\w* \w strive|strong="H7378"\w* \w against|strong="H5973"\w* \w Israel|strong="H3478"\w*, \w or|strong="H1121"\w* \w did|strong="H3478"\w* \w he|strong="H3478"\w* \w ever|strong="H7378"\w* \w fight|strong="H3898"\w* \w against|strong="H5973"\w* \w them|strong="H1121"\w*? +\v 26 \w Israel|strong="H3478"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Heshbon|strong="H2809"\w* \w and|strong="H3967"\w* \w its|strong="H3605"\w* \w towns|strong="H1323"\w*, \w and|strong="H3967"\w* \w in|strong="H3427"\w* \w Aroer|strong="H6177"\w* \w and|strong="H3967"\w* \w its|strong="H3605"\w* \w towns|strong="H1323"\w*, \w and|strong="H3967"\w* \w in|strong="H3427"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w that|strong="H3605"\w* \w are|strong="H3478"\w* \w along|strong="H5921"\w* \w the|strong="H3605"\w* \w side|strong="H3027"\w* \w of|strong="H1323"\w* \w the|strong="H3605"\w* Arnon \w for|strong="H5921"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w years|strong="H8141"\w*! \w Why|strong="H4069"\w* didn’t \w you|strong="H3605"\w* \w recover|strong="H5337"\w* \w them|strong="H5921"\w* \w within|strong="H5921"\w* \w that|strong="H3605"\w* \w time|strong="H6256"\w*? +\v 27 \w Therefore|strong="H3068"\w* \w I|strong="H3117"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w sinned|strong="H2398"\w* \w against|strong="H3898"\w* \w you|strong="H3117"\w*, \w but|strong="H3808"\w* \w you|strong="H3117"\w* \w do|strong="H6213"\w* \w me|strong="H6213"\w* \w wrong|strong="H7451"\w* \w to|strong="H3478"\w* \w war|strong="H3898"\w* \w against|strong="H3898"\w* \w me|strong="H6213"\w*. \w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w the|strong="H6213"\w* \w Judge|strong="H8199"\w* \w be|strong="H3808"\w* \w judge|strong="H8199"\w* \w today|strong="H3117"\w* \w between|strong="H8199"\w* \w the|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w and|strong="H1121"\w* \w the|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*.” +\p +\v 28 \w However|strong="H8085"\w*, \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H7971"\w* \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w of|strong="H1121"\w* \w Jephthah|strong="H3316"\w* \w which|strong="H1697"\w* \w he|strong="H3808"\w* \w sent|strong="H7971"\w* \w him|strong="H7971"\w*. +\v 29 \w Then|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w* \w came|strong="H1961"\w* \w on|strong="H5921"\w* \w Jephthah|strong="H3316"\w*, \w and|strong="H1121"\w* \w he|strong="H3068"\w* \w passed|strong="H5674"\w* \w over|strong="H5921"\w* \w Gilead|strong="H1568"\w* \w and|strong="H1121"\w* \w Manasseh|strong="H4519"\w*, \w and|strong="H1121"\w* \w passed|strong="H5674"\w* \w over|strong="H5921"\w* \w Mizpah|strong="H4708"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*, \w and|strong="H1121"\w* \w from|strong="H5921"\w* \w Mizpah|strong="H4708"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w* \w he|strong="H3068"\w* \w passed|strong="H5674"\w* \w over|strong="H5921"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*. +\p +\v 30 \w Jephthah|strong="H3316"\w* \w vowed|strong="H5087"\w* \w a|strong="H3068"\w* \w vow|strong="H5088"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H1121"\w* said, “\w If|strong="H1121"\w* \w you|strong="H5414"\w* \w will|strong="H3068"\w* \w indeed|strong="H5414"\w* \w deliver|strong="H5414"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w into|strong="H3027"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w*, +\v 31 \w then|strong="H1961"\w* \w it|strong="H7725"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w*, \w that|strong="H3068"\w* whatever \w comes|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w doors|strong="H1817"\w* \w of|strong="H1121"\w* \w my|strong="H3068"\w* \w house|strong="H1004"\w* \w to|strong="H7725"\w* \w meet|strong="H7125"\w* \w me|strong="H7725"\w* \w when|strong="H1961"\w* \w I|strong="H1121"\w* \w return|strong="H7725"\w* \w in|strong="H3068"\w* \w peace|strong="H7965"\w* \w from|strong="H7725"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, \w it|strong="H7725"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s, \w and|strong="H1121"\w* \w I|strong="H1121"\w* \w will|strong="H3068"\w* \w offer|strong="H5927"\w* \w it|strong="H7725"\w* \w up|strong="H5927"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*.” +\p +\v 32 \w So|strong="H5414"\w* \w Jephthah|strong="H3316"\w* \w passed|strong="H5674"\w* \w over|strong="H5674"\w* \w to|strong="H3068"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w to|strong="H3068"\w* \w fight|strong="H3898"\w* \w against|strong="H3898"\w* \w them|strong="H5414"\w*; \w and|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w delivered|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w*. +\v 33 \w He|strong="H5704"\w* \w struck|strong="H5221"\w* \w them|strong="H6440"\w* \w from|strong="H6440"\w* \w Aroer|strong="H6177"\w* \w until|strong="H5704"\w* \w you|strong="H6440"\w* \w come|strong="H3478"\w* \w to|strong="H5704"\w* \w Minnith|strong="H4511"\w*, \w even|strong="H5704"\w* \w twenty|strong="H6242"\w* \w cities|strong="H5892"\w*, \w and|strong="H1121"\w* \w to|strong="H5704"\w* Abelcheramim, \w with|strong="H6440"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H1419"\w* \w slaughter|strong="H4347"\w*. \w So|strong="H3966"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w were|strong="H3478"\w* \w subdued|strong="H3665"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\p +\v 34 \w Jephthah|strong="H3316"\w* \w came|strong="H3318"\w* \w to|strong="H3318"\w* \w Mizpah|strong="H4709"\w* \w to|strong="H3318"\w* \w his|strong="H4480"\w* \w house|strong="H1004"\w*; \w and|strong="H1121"\w* \w behold|strong="H2009"\w*, \w his|strong="H4480"\w* \w daughter|strong="H1323"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w meet|strong="H7125"\w* \w him|strong="H3318"\w* \w with|strong="H1004"\w* \w tambourines|strong="H8596"\w* \w and|strong="H1121"\w* \w with|strong="H1004"\w* \w dances|strong="H4246"\w*. \w She|strong="H1931"\w* \w was|strong="H1931"\w* \w his|strong="H4480"\w* \w only|strong="H7535"\w* \w child|strong="H1121"\w*. \w Besides|strong="H4480"\w* \w her|strong="H3318"\w* \w he|strong="H1931"\w* \w had|strong="H1121"\w* \w neither|strong="H4480"\w* \w son|strong="H1121"\w* \w nor|strong="H1121"\w* \w daughter|strong="H1323"\w*. +\v 35 \w When|strong="H1961"\w* \w he|strong="H3068"\w* \w saw|strong="H7200"\w* \w her|strong="H7200"\w*, \w he|strong="H3068"\w* \w tore|strong="H7167"\w* \w his|strong="H3068"\w* clothes, \w and|strong="H3068"\w* \w said|strong="H6310"\w*, “Alas, \w my|strong="H3068"\w* \w daughter|strong="H1323"\w*! \w You|strong="H7725"\w* \w have|strong="H1961"\w* \w brought|strong="H7725"\w* \w me|strong="H7725"\w* \w very|strong="H3766"\w* \w low|strong="H3766"\w*, \w and|strong="H3068"\w* \w you|strong="H7725"\w* \w are|strong="H3068"\w* \w one|strong="H3808"\w* \w of|strong="H3068"\w* \w those|strong="H1961"\w* \w who|strong="H3068"\w* \w trouble|strong="H5916"\w* \w me|strong="H7725"\w*; \w for|strong="H3068"\w* \w I|strong="H3201"\w* \w have|strong="H1961"\w* \w opened|strong="H6475"\w* \w my|strong="H3068"\w* \w mouth|strong="H6310"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w I|strong="H3201"\w* \w can|strong="H3201"\w*’t \w go|strong="H7725"\w* \w back|strong="H7725"\w*.” +\p +\v 36 She \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H6213"\w*, “\w My|strong="H3068"\w* \w father|strong="H1121"\w*, \w you|strong="H6213"\w* \w have|strong="H3068"\w* \w opened|strong="H6475"\w* \w your|strong="H3068"\w* \w mouth|strong="H6310"\w* \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w*; \w do|strong="H6213"\w* \w to|strong="H3318"\w* \w me|strong="H6213"\w* \w according|strong="H6310"\w* \w to|strong="H3318"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w has|strong="H3068"\w* \w proceeded|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* \w mouth|strong="H6310"\w*, \w because|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w taken|strong="H6213"\w* \w vengeance|strong="H5360"\w* \w for|strong="H6213"\w* \w you|strong="H6213"\w* \w on|strong="H3068"\w* \w your|strong="H3068"\w* enemies, \w even|strong="H6213"\w* \w on|strong="H3068"\w* \w the|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*.” +\v 37 \w Then|strong="H2088"\w* \w she|strong="H5921"\w* \w said|strong="H1697"\w* \w to|strong="H3381"\w* \w her|strong="H5921"\w* father, “\w Let|strong="H7503"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w be|strong="H1697"\w* \w done|strong="H6213"\w* \w for|strong="H5921"\w* \w me|strong="H5921"\w*. \w Leave|strong="H4480"\w* \w me|strong="H5921"\w* \w alone|strong="H7503"\w* \w two|strong="H8147"\w* \w months|strong="H2320"\w*, \w that|strong="H1697"\w* \w I|strong="H5921"\w* \w may|strong="H6213"\w* \w depart|strong="H3212"\w* \w and|strong="H3212"\w* \w go|strong="H3212"\w* \w down|strong="H3381"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w*, \w and|strong="H3212"\w* \w bewail|strong="H1058"\w* \w my|strong="H5921"\w* \w virginity|strong="H1331"\w*, \w I|strong="H5921"\w* \w and|strong="H3212"\w* \w my|strong="H5921"\w* companions.” +\p +\v 38 \w He|strong="H1931"\w* said, “\w Go|strong="H3212"\w*.” \w He|strong="H1931"\w* \w sent|strong="H7971"\w* \w her|strong="H7971"\w* \w away|strong="H7971"\w* \w for|strong="H5921"\w* \w two|strong="H8147"\w* \w months|strong="H2320"\w*; \w and|strong="H7971"\w* \w she|strong="H1931"\w* \w departed|strong="H3212"\w*, \w she|strong="H1931"\w* \w and|strong="H7971"\w* \w her|strong="H7971"\w* \w companions|strong="H7464"\w*, \w and|strong="H7971"\w* \w mourned|strong="H1058"\w* \w her|strong="H7971"\w* \w virginity|strong="H1331"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w*. +\v 39 \w At|strong="H3478"\w* \w the|strong="H6213"\w* \w end|strong="H7093"\w* \w of|strong="H7093"\w* \w two|strong="H8147"\w* \w months|strong="H2320"\w*, \w she|strong="H1931"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w her|strong="H7725"\w* father, \w who|strong="H1931"\w* \w did|strong="H6213"\w* \w with|strong="H6213"\w* \w her|strong="H7725"\w* according \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w vow|strong="H5088"\w* \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w had|strong="H1961"\w* \w vowed|strong="H5087"\w*. \w She|strong="H1931"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* virgin. \w It|strong="H1931"\w* \w became|strong="H1961"\w* \w a|strong="H3068"\w* \w custom|strong="H2706"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w* +\v 40 \w that|strong="H3117"\w* \w the|strong="H3117"\w* \w daughters|strong="H1323"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w* \w went|strong="H3212"\w* \w yearly|strong="H3117"\w* \w to|strong="H3478"\w* celebrate \w the|strong="H3117"\w* \w daughter|strong="H1323"\w* \w of|strong="H3117"\w* \w Jephthah|strong="H3316"\w* \w the|strong="H3117"\w* \w Gileadite|strong="H1569"\w* four \w days|strong="H3117"\w* \w in|strong="H8141"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w*. +\c 12 +\p +\v 1 \w The|strong="H5921"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* Ephraim \w were|strong="H1121"\w* \w gathered|strong="H6817"\w* \w together|strong="H5973"\w*, \w and|strong="H1121"\w* \w passed|strong="H5674"\w* \w northward|strong="H6828"\w*; \w and|strong="H1121"\w* \w they|strong="H3808"\w* \w said|strong="H7121"\w* \w to|strong="H3212"\w* \w Jephthah|strong="H3316"\w*, “\w Why|strong="H4069"\w* \w did|strong="H3808"\w* \w you|strong="H5921"\w* \w pass|strong="H5674"\w* \w over|strong="H5921"\w* \w to|strong="H3212"\w* \w fight|strong="H3898"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, \w and|strong="H1121"\w* didn’t \w call|strong="H7121"\w* \w us|strong="H5921"\w* \w to|strong="H3212"\w* \w go|strong="H3212"\w* \w with|strong="H5973"\w* \w you|strong="H5921"\w*? We \w will|strong="H1121"\w* \w burn|strong="H8313"\w* \w your|strong="H5921"\w* \w house|strong="H1004"\w* \w around|strong="H5921"\w* \w you|strong="H5921"\w* \w with|strong="H5973"\w* fire!” +\p +\v 2 \w Jephthah|strong="H3316"\w* said \w to|strong="H1961"\w* \w them|strong="H3027"\w*, “\w I|strong="H3808"\w* \w and|strong="H1121"\w* \w my|strong="H1961"\w* \w people|strong="H5971"\w* \w were|strong="H1961"\w* \w at|strong="H1961"\w* \w great|strong="H3966"\w* \w strife|strong="H7379"\w* \w with|strong="H5971"\w* \w the|strong="H3027"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*; \w and|strong="H1121"\w* \w when|strong="H1961"\w* \w I|strong="H3808"\w* \w called|strong="H2199"\w* \w you|strong="H3808"\w*, \w you|strong="H3808"\w* didn’t \w save|strong="H3467"\w* \w me|strong="H3467"\w* \w out|strong="H2199"\w* \w of|strong="H1121"\w* \w their|strong="H1961"\w* \w hand|strong="H3027"\w*. +\v 3 \w When|strong="H3588"\w* \w I|strong="H3588"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* didn’t \w save|strong="H3467"\w* \w me|strong="H5414"\w*, \w I|strong="H3588"\w* \w put|strong="H5414"\w* \w my|strong="H5414"\w* \w life|strong="H5315"\w* \w in|strong="H3068"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w*, \w and|strong="H1121"\w* \w passed|strong="H5674"\w* \w over|strong="H5674"\w* \w against|strong="H3898"\w* \w the|strong="H7200"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, \w and|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w delivered|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H5927"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w*. \w Why|strong="H4100"\w* \w then|strong="H2088"\w* \w have|strong="H3068"\w* \w you|strong="H3588"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w me|strong="H5414"\w* \w today|strong="H3117"\w*, \w to|strong="H3068"\w* \w fight|strong="H3898"\w* \w against|strong="H3898"\w* \w me|strong="H5414"\w*?” +\p +\v 4 \w Then|strong="H3588"\w* \w Jephthah|strong="H3316"\w* \w gathered|strong="H6908"\w* \w together|strong="H6908"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H8432"\w* \w Gilead|strong="H1568"\w*, \w and|strong="H4519"\w* \w fought|strong="H3898"\w* \w with|strong="H3898"\w* Ephraim. \w The|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H8432"\w* \w Gilead|strong="H1568"\w* \w struck|strong="H5221"\w* Ephraim, \w because|strong="H3588"\w* \w they|strong="H3588"\w* said, “\w You|strong="H3588"\w* are \w fugitives|strong="H6412"\w* \w of|strong="H8432"\w* Ephraim, \w you|strong="H3588"\w* \w Gileadites|strong="H1568"\w*, \w in|strong="H8432"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* Ephraim, \w and|strong="H4519"\w* \w in|strong="H8432"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w Manasseh|strong="H4519"\w*.” +\v 5 \w The|strong="H3588"\w* \w Gileadites|strong="H1568"\w* \w took|strong="H3920"\w* \w the|strong="H3588"\w* \w fords|strong="H4569"\w* \w of|strong="H3808"\w* \w the|strong="H3588"\w* \w Jordan|strong="H3383"\w* against \w the|strong="H3588"\w* Ephraimites. \w Whenever|strong="H1961"\w* \w a|strong="H3068"\w* \w fugitive|strong="H6412"\w* \w of|strong="H3808"\w* Ephraim said, “\w Let|strong="H3808"\w* \w me|strong="H5674"\w* \w go|strong="H5674"\w* \w over|strong="H5674"\w*,” \w the|strong="H3588"\w* men \w of|strong="H3808"\w* \w Gilead|strong="H1568"\w* said \w to|strong="H1961"\w* \w him|strong="H3588"\w*, “\w Are|strong="H1961"\w* \w you|strong="H3588"\w* \w an|strong="H1961"\w* Ephraimite?” \w If|strong="H3588"\w* \w he|strong="H3588"\w* said, “\w No|strong="H3808"\w*;” +\v 6 \w then|strong="H1696"\w* \w they|strong="H3651"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H1931"\w*, “\w Now|strong="H4994"\w* \w say|strong="H1696"\w* ‘\w Shibboleth|strong="H7641"\w*;’” \w and|strong="H8147"\w* \w he|strong="H1931"\w* \w said|strong="H1696"\w* “\w Sibboleth|strong="H5451"\w*”; \w for|strong="H3559"\w* \w he|strong="H1931"\w* couldn’t manage \w to|strong="H1696"\w* \w pronounce|strong="H1696"\w* \w it|strong="H1931"\w* \w correctly|strong="H3651"\w*, \w then|strong="H1696"\w* \w they|strong="H3651"\w* \w seized|strong="H5307"\w* \w him|strong="H1931"\w* \w and|strong="H8147"\w* \w killed|strong="H7819"\w* \w him|strong="H1931"\w* \w at|strong="H3383"\w* \w the|strong="H7819"\w* \w fords|strong="H4569"\w* \w of|strong="H6256"\w* \w the|strong="H7819"\w* \w Jordan|strong="H3383"\w*. \w At|strong="H3383"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w*, \w forty-two|strong="H8147"\w* thousand \w of|strong="H6256"\w* Ephraim \w fell|strong="H5307"\w*. +\p +\v 7 \w Jephthah|strong="H3316"\w* \w judged|strong="H8199"\w* \w Israel|strong="H3478"\w* \w six|strong="H8337"\w* \w years|strong="H8141"\w*. \w Then|strong="H3478"\w* \w Jephthah|strong="H3316"\w* \w the|strong="H8199"\w* \w Gileadite|strong="H1569"\w* \w died|strong="H4191"\w*, \w and|strong="H3478"\w* \w was|strong="H3478"\w* \w buried|strong="H6912"\w* \w in|strong="H8141"\w* \w the|strong="H8199"\w* \w cities|strong="H5892"\w* \w of|strong="H8141"\w* \w Gilead|strong="H1568"\w*. +\p +\v 8 After him \w Ibzan|strong="H8199"\w* \w of|strong="H8199"\w* \w Bethlehem|strong="H1035"\w* \w judged|strong="H8199"\w* \w Israel|strong="H3478"\w*. +\v 9 \w He|strong="H4480"\w* \w had|strong="H1961"\w* \w thirty|strong="H7970"\w* \w sons|strong="H1121"\w*. \w He|strong="H4480"\w* \w sent|strong="H7971"\w* \w his|strong="H7971"\w* \w thirty|strong="H7970"\w* \w daughters|strong="H1323"\w* \w outside|strong="H2351"\w* \w his|strong="H7971"\w* clan, \w and|strong="H1121"\w* \w he|strong="H4480"\w* \w brought|strong="H3478"\w* \w in|strong="H8141"\w* \w thirty|strong="H7970"\w* \w daughters|strong="H1323"\w* \w from|strong="H4480"\w* \w outside|strong="H2351"\w* \w his|strong="H7971"\w* clan \w for|strong="H7971"\w* \w his|strong="H7971"\w* \w sons|strong="H1121"\w*. \w He|strong="H4480"\w* \w judged|strong="H8199"\w* \w Israel|strong="H3478"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w*. +\v 10 Ibzan \w died|strong="H4191"\w*, \w and|strong="H4191"\w* was \w buried|strong="H6912"\w* \w at|strong="H4191"\w* \w Bethlehem|strong="H1035"\w*. +\p +\v 11 \w After|strong="H8141"\w* him, Elon \w the|strong="H8199"\w* \w Zebulunite|strong="H2075"\w* \w judged|strong="H8199"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w he|strong="H8141"\w* \w judged|strong="H8199"\w* \w Israel|strong="H3478"\w* \w ten|strong="H6235"\w* \w years|strong="H8141"\w*. +\v 12 Elon \w the|strong="H4191"\w* \w Zebulunite|strong="H2075"\w* \w died|strong="H4191"\w*, \w and|strong="H4191"\w* was \w buried|strong="H6912"\w* \w in|strong="H4191"\w* Aijalon \w in|strong="H4191"\w* \w the|strong="H4191"\w* land \w of|strong="H4191"\w* \w Zebulun|strong="H2074"\w*. +\p +\v 13 After \w him|strong="H1121"\w*, \w Abdon|strong="H5658"\w* \w the|strong="H8199"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hillel|strong="H1985"\w* \w the|strong="H8199"\w* \w Pirathonite|strong="H6553"\w* \w judged|strong="H8199"\w* \w Israel|strong="H3478"\w*. +\v 14 \w He|strong="H5921"\w* \w had|strong="H1961"\w* forty \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w thirty|strong="H7970"\w* \w sons|strong="H1121"\w*’ \w sons|strong="H1121"\w* \w who|strong="H1121"\w* \w rode|strong="H7392"\w* \w on|strong="H5921"\w* \w seventy|strong="H7657"\w* donkey \w colts|strong="H1121"\w*. \w He|strong="H5921"\w* \w judged|strong="H8199"\w* \w Israel|strong="H3478"\w* \w eight|strong="H8083"\w* \w years|strong="H8141"\w*. +\v 15 \w Abdon|strong="H5658"\w* \w the|strong="H4191"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hillel|strong="H1985"\w* \w the|strong="H4191"\w* \w Pirathonite|strong="H6553"\w* \w died|strong="H4191"\w*, \w and|strong="H1121"\w* \w was|strong="H1121"\w* \w buried|strong="H6912"\w* \w in|strong="H4191"\w* \w Pirathon|strong="H6552"\w* \w in|strong="H4191"\w* \w the|strong="H4191"\w* land \w of|strong="H1121"\w* Ephraim, \w in|strong="H4191"\w* \w the|strong="H4191"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H1121"\w* \w the|strong="H4191"\w* \w Amalekites|strong="H6003"\w*. +\c 13 +\p +\v 1 \w The|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w again|strong="H3254"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H8141"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*; \w and|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w delivered|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H6213"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w Philistines|strong="H6430"\w* forty \w years|strong="H8141"\w*. +\p +\v 2 \w There|strong="H1961"\w* \w was|strong="H8034"\w* \w a|strong="H3068"\w* certain man \w of|strong="H3205"\w* \w Zorah|strong="H6881"\w*, \w of|strong="H3205"\w* \w the|strong="H3205"\w* \w family|strong="H4940"\w* \w of|strong="H3205"\w* \w the|strong="H3205"\w* \w Danites|strong="H1839"\w*, \w whose|strong="H8034"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Manoah|strong="H4495"\w*; \w and|strong="H6881"\w* \w his|strong="H1961"\w* wife \w was|strong="H8034"\w* \w barren|strong="H6135"\w*, \w and|strong="H6881"\w* \w childless|strong="H6135"\w*. +\v 3 \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w appeared|strong="H7200"\w* \w to|strong="H3068"\w* \w the|strong="H7200"\w* \w woman|strong="H6135"\w*, \w and|strong="H1121"\w* said \w to|strong="H3068"\w* \w her|strong="H7200"\w*, “\w See|strong="H7200"\w* \w now|strong="H4994"\w*, \w you|strong="H3808"\w* \w are|strong="H1121"\w* \w barren|strong="H6135"\w* \w and|strong="H1121"\w* \w childless|strong="H6135"\w*; \w but|strong="H3808"\w* \w you|strong="H3808"\w* \w shall|strong="H3068"\w* \w conceive|strong="H2029"\w* \w and|strong="H1121"\w* \w bear|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*. +\v 4 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w please|strong="H4994"\w* \w beware|strong="H8104"\w* \w and|strong="H8354"\w* \w drink|strong="H8354"\w* \w no|strong="H3605"\w* \w wine|strong="H3196"\w* nor \w strong|strong="H7941"\w* \w drink|strong="H8354"\w*, \w and|strong="H8354"\w* don’t eat \w any|strong="H3605"\w* \w unclean|strong="H2931"\w* \w thing|strong="H3605"\w*; +\v 5 \w for|strong="H3588"\w*, \w behold|strong="H2009"\w*, \w you|strong="H3588"\w* \w shall|strong="H1121"\w* \w conceive|strong="H2029"\w* \w and|strong="H1121"\w* \w give|strong="H3205"\w* \w birth|strong="H3205"\w* \w to|strong="H3478"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*. \w No|strong="H3808"\w* \w razor|strong="H4177"\w* \w shall|strong="H1121"\w* \w come|strong="H5927"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w head|strong="H7218"\w*, \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w child|strong="H5288"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w Nazirite|strong="H5139"\w* \w to|strong="H3478"\w* \w God|strong="H3808"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* womb. \w He|strong="H1931"\w* \w shall|strong="H1121"\w* \w begin|strong="H2490"\w* \w to|strong="H3478"\w* \w save|strong="H3467"\w* \w Israel|strong="H3478"\w* \w out|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w Philistines|strong="H6430"\w*.” +\p +\v 6 \w Then|strong="H2088"\w* \w the|strong="H3372"\w* \w woman|strong="H2088"\w* \w came|strong="H4397"\w* \w and|strong="H3372"\w* \w told|strong="H5046"\w* \w her|strong="H5046"\w* husband, saying, “\w A|strong="H3068"\w* \w man|strong="H2088"\w* \w of|strong="H8034"\w* \w God|strong="H3808"\w* \w came|strong="H4397"\w* \w to|strong="H4397"\w* \w me|strong="H5046"\w*, \w and|strong="H3372"\w* \w his|strong="H5046"\w* \w face|strong="H4758"\w* \w was|strong="H8034"\w* \w like|strong="H4758"\w* \w the|strong="H3372"\w* \w face|strong="H4758"\w* \w of|strong="H8034"\w* \w the|strong="H3372"\w* \w angel|strong="H4397"\w* \w of|strong="H8034"\w* \w God|strong="H3808"\w*, \w very|strong="H3966"\w* \w awesome|strong="H3372"\w*. \w I|strong="H2088"\w* didn’t \w ask|strong="H7592"\w* \w him|strong="H5046"\w* \w where|strong="H2088"\w* \w he|strong="H1931"\w* \w was|strong="H8034"\w* \w from|strong="H5046"\w*, \w neither|strong="H3808"\w* \w did|strong="H3808"\w* \w he|strong="H1931"\w* \w tell|strong="H5046"\w* \w me|strong="H5046"\w* \w his|strong="H5046"\w* \w name|strong="H8034"\w*; +\v 7 \w but|strong="H3588"\w* \w he|strong="H3588"\w* said \w to|strong="H5704"\w* \w me|strong="H4480"\w*, ‘\w Behold|strong="H2009"\w*, \w you|strong="H3588"\w* \w shall|strong="H1121"\w* \w conceive|strong="H2029"\w* \w and|strong="H1121"\w* \w bear|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*; \w and|strong="H1121"\w* \w now|strong="H6258"\w* \w drink|strong="H8354"\w* \w no|strong="H4480"\w* \w wine|strong="H3196"\w* \w nor|strong="H1121"\w* \w strong|strong="H7941"\w* \w drink|strong="H8354"\w*. Don’t eat \w any|strong="H3605"\w* \w unclean|strong="H2932"\w* \w thing|strong="H2932"\w*, \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w child|strong="H5288"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w Nazirite|strong="H5139"\w* \w to|strong="H5704"\w* God \w from|strong="H4480"\w* \w the|strong="H3605"\w* womb \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w death|strong="H4194"\w*.’” +\p +\v 8 \w Then|strong="H7971"\w* \w Manoah|strong="H4495"\w* \w entreated|strong="H6279"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* said, “\w Oh|strong="H4994"\w*, \w Lord|strong="H3068"\w*, \w please|strong="H4994"\w* \w let|strong="H7971"\w* \w the|strong="H6213"\w* \w man|strong="H5288"\w* \w of|strong="H3068"\w* \w God|strong="H3068"\w* whom \w you|strong="H7971"\w* \w sent|strong="H7971"\w* \w come|strong="H4994"\w* \w again|strong="H5750"\w* \w to|strong="H3068"\w* \w us|strong="H4994"\w*, \w and|strong="H3068"\w* \w teach|strong="H3384"\w* \w us|strong="H4994"\w* \w what|strong="H4100"\w* \w we|strong="H3068"\w* \w should|strong="H3068"\w* \w do|strong="H6213"\w* \w to|strong="H3068"\w* \w the|strong="H6213"\w* \w child|strong="H5288"\w* \w who|strong="H3068"\w* \w shall|strong="H3068"\w* \w be|strong="H5750"\w* \w born|strong="H3205"\w*.” +\p +\v 9 God \w listened|strong="H8085"\w* \w to|strong="H8085"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H3427"\w* \w Manoah|strong="H4495"\w*, \w and|strong="H6963"\w* \w the|strong="H8085"\w* \w angel|strong="H4397"\w* \w of|strong="H3427"\w* God \w came|strong="H4397"\w* \w again|strong="H5750"\w* \w to|strong="H8085"\w* \w the|strong="H8085"\w* woman \w as|strong="H3427"\w* \w she|strong="H1931"\w* \w sat|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H8085"\w* \w field|strong="H7704"\w*; \w but|strong="H8085"\w* \w Manoah|strong="H4495"\w*, \w her|strong="H1931"\w* husband, wasn’t \w with|strong="H5973"\w* \w her|strong="H1931"\w*. +\v 10 \w The|strong="H7200"\w* woman \w hurried|strong="H4116"\w* \w and|strong="H3117"\w* \w ran|strong="H7323"\w*, \w and|strong="H3117"\w* \w told|strong="H5046"\w* \w her|strong="H5046"\w* husband, saying \w to|strong="H3117"\w* \w him|strong="H5046"\w*, “\w Behold|strong="H2009"\w*, \w the|strong="H7200"\w* \w man|strong="H7200"\w* \w who|strong="H7323"\w* came \w to|strong="H3117"\w* \w me|strong="H7200"\w* \w that|strong="H7200"\w* \w day|strong="H3117"\w* \w has|strong="H3117"\w* \w appeared|strong="H7200"\w* \w to|strong="H3117"\w* \w me|strong="H7200"\w*.” +\p +\v 11 \w Manoah|strong="H4495"\w* \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w followed|strong="H3212"\w* \w his|strong="H6965"\w* \w wife|strong="H1696"\w*, \w and|strong="H6965"\w* \w came|strong="H3212"\w* \w to|strong="H1696"\w* \w the|strong="H6965"\w* man, \w and|strong="H6965"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H1696"\w*, “Are \w you|strong="H1696"\w* \w the|strong="H6965"\w* man who \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w my|strong="H6965"\w* \w wife|strong="H1696"\w*?” +\p \w He|strong="H1696"\w* \w said|strong="H1696"\w*, “\w I|strong="H6965"\w* am.” +\p +\v 12 \w Manoah|strong="H4495"\w* \w said|strong="H1697"\w*, “\w Now|strong="H6258"\w* \w let|strong="H6258"\w* \w your|strong="H1961"\w* \w words|strong="H1697"\w* \w happen|strong="H1961"\w*. \w What|strong="H4100"\w* \w shall|strong="H5288"\w* \w the|strong="H1697"\w* \w child|strong="H5288"\w*’s \w way|strong="H1697"\w* \w of|strong="H1697"\w* \w life|strong="H4941"\w* \w and|strong="H4941"\w* mission \w be|strong="H1961"\w*?” +\p +\v 13 \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* said \w to|strong="H3068"\w* \w Manoah|strong="H4495"\w*, “\w Of|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H3068"\w* said \w to|strong="H3068"\w* \w the|strong="H3605"\w* woman let \w her|strong="H3605"\w* \w beware|strong="H8104"\w*. +\v 14 \w She|strong="H3808"\w* \w may|strong="H3196"\w* \w not|strong="H3808"\w* eat \w of|strong="H3605"\w* \w anything|strong="H3605"\w* \w that|strong="H3605"\w* \w comes|strong="H3318"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w vine|strong="H1612"\w*, \w neither|strong="H3808"\w* \w let|strong="H3808"\w* \w her|strong="H3605"\w* \w drink|strong="H8354"\w* \w wine|strong="H3196"\w* \w or|strong="H3808"\w* \w strong|strong="H7941"\w* \w drink|strong="H8354"\w*, \w nor|strong="H3808"\w* eat \w any|strong="H3605"\w* \w unclean|strong="H2932"\w* \w thing|strong="H2932"\w*. \w Let|strong="H3808"\w* \w her|strong="H3605"\w* \w observe|strong="H8104"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H6680"\w* \w commanded|strong="H6680"\w* \w her|strong="H3605"\w*.” +\p +\v 15 \w Manoah|strong="H4495"\w* said \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w*, “\w Please|strong="H4994"\w* stay \w with|strong="H3068"\w* \w us|strong="H4994"\w*, \w that|strong="H3068"\w* \w we|strong="H3068"\w* \w may|strong="H4994"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w young|strong="H1423"\w* \w goat|strong="H5795"\w* \w ready|strong="H6213"\w* \w for|strong="H6213"\w* \w you|strong="H6440"\w*.” +\p +\v 16 \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* said \w to|strong="H3068"\w* \w Manoah|strong="H4495"\w*, “\w Though|strong="H3588"\w* \w you|strong="H3588"\w* \w detain|strong="H6113"\w* \w me|strong="H6213"\w*, \w I|strong="H3588"\w* won’t \w eat|strong="H3899"\w* \w your|strong="H3068"\w* \w bread|strong="H3899"\w*. \w If|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w prepare|strong="H6213"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w you|strong="H3588"\w* \w must|strong="H3808"\w* \w offer|strong="H5927"\w* \w it|strong="H1931"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.” \w For|strong="H3588"\w* \w Manoah|strong="H4495"\w* didn’t \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w*. +\p +\v 17 \w Manoah|strong="H4495"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w*, “\w What|strong="H1697"\w* \w is|strong="H3068"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w*, \w that|strong="H3588"\w* \w when|strong="H3588"\w* \w your|strong="H3068"\w* \w words|strong="H1697"\w* \w happen|strong="H1697"\w*, \w we|strong="H3068"\w* \w may|strong="H3068"\w* \w honor|strong="H3513"\w* \w you|strong="H3588"\w*?” +\p +\v 18 \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* said \w to|strong="H3068"\w* \w him|strong="H1931"\w*, “\w Why|strong="H4100"\w* \w do|strong="H3068"\w* \w you|strong="H4100"\w* \w ask|strong="H7592"\w* \w about|strong="H8034"\w* \w my|strong="H3068"\w* \w name|strong="H8034"\w*, since \w it|strong="H1931"\w* \w is|strong="H3068"\w* incomprehensible\f + \fr 13:18 \ft or, wonderful\f*?” +\p +\v 19 \w So|strong="H6213"\w* \w Manoah|strong="H4495"\w* \w took|strong="H3947"\w* \w the|strong="H5921"\w* \w young|strong="H1423"\w* \w goat|strong="H5795"\w* \w with|strong="H3068"\w* \w the|strong="H5921"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w and|strong="H3068"\w* \w offered|strong="H5927"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w rock|strong="H6697"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w Then|strong="H3947"\w* \w the|strong="H5921"\w* angel \w did|strong="H6213"\w* \w an|strong="H6213"\w* \w amazing|strong="H6381"\w* thing \w as|strong="H6213"\w* \w Manoah|strong="H4495"\w* \w and|strong="H3068"\w* \w his|strong="H3068"\w* wife \w watched|strong="H7200"\w*. +\v 20 \w For|strong="H5921"\w* \w when|strong="H1961"\w* \w the|strong="H6440"\w* \w flame|strong="H3851"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w toward|strong="H5921"\w* \w the|strong="H6440"\w* \w sky|strong="H8064"\w* \w from|strong="H6440"\w* \w off|strong="H5921"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w*, \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w ascended|strong="H5927"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w flame|strong="H3851"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w*. \w Manoah|strong="H4495"\w* \w and|strong="H3068"\w* \w his|strong="H3068"\w* wife \w watched|strong="H7200"\w*; \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w their|strong="H3068"\w* \w faces|strong="H6440"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w*. +\v 21 \w But|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* didn’t \w appear|strong="H7200"\w* \w to|strong="H3068"\w* \w Manoah|strong="H4495"\w* \w or|strong="H3808"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* wife \w any|strong="H5750"\w* \w more|strong="H3254"\w*. \w Then|strong="H3254"\w* \w Manoah|strong="H4495"\w* \w knew|strong="H3045"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w*. +\v 22 \w Manoah|strong="H4495"\w* said \w to|strong="H4191"\w* \w his|strong="H7200"\w* wife, “\w We|strong="H3588"\w* \w shall|strong="H4191"\w* \w surely|strong="H4191"\w* \w die|strong="H4191"\w*, \w because|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H7200"\w* \w seen|strong="H7200"\w* God.” +\p +\v 23 \w But|strong="H3808"\w* \w his|strong="H3605"\w* wife \w said|strong="H8085"\w* \w to|strong="H4191"\w* \w him|strong="H3027"\w*, “\w If|strong="H3863"\w* \w Yahweh|strong="H3068"\w* \w were|strong="H3027"\w* \w pleased|strong="H2654"\w* \w to|strong="H4191"\w* \w kill|strong="H4191"\w* \w us|strong="H7200"\w*, \w he|strong="H3068"\w* wouldn’t \w have|strong="H3068"\w* \w received|strong="H3947"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w* \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w at|strong="H3068"\w* \w our|strong="H3068"\w* \w hand|strong="H3027"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* wouldn’t \w have|strong="H3068"\w* \w shown|strong="H7200"\w* \w us|strong="H7200"\w* \w all|strong="H3605"\w* \w these|strong="H2063"\w* \w things|strong="H3605"\w*, \w nor|strong="H3808"\w* \w would|strong="H3068"\w* \w he|strong="H3068"\w* \w have|strong="H3068"\w* \w told|strong="H8085"\w* \w us|strong="H7200"\w* \w such|strong="H2063"\w* \w things|strong="H3605"\w* \w as|strong="H3068"\w* \w these|strong="H2063"\w* \w at|strong="H3068"\w* \w this|strong="H2063"\w* \w time|strong="H6256"\w*.” +\v 24 \w The|strong="H3205"\w* \w woman|strong="H3205"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w and|strong="H1121"\w* \w named|strong="H7121"\w* \w him|strong="H3205"\w* \w Samson|strong="H8123"\w*. \w The|strong="H3205"\w* \w child|strong="H5288"\w* \w grew|strong="H1431"\w*, \w and|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w blessed|strong="H1288"\w* \w him|strong="H3205"\w*. +\v 25 \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w* \w began|strong="H2490"\w* \w to|strong="H3068"\w* move \w him|strong="H3068"\w* \w in|strong="H3068"\w* Mahaneh \w Dan|strong="H1835"\w*, \w between|strong="H7307"\w* \w Zorah|strong="H6881"\w* \w and|strong="H3068"\w* Eshtaol. +\c 14 +\p +\v 1 \w Samson|strong="H8123"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w Timnah|strong="H8553"\w*, \w and|strong="H7200"\w* \w saw|strong="H7200"\w* \w a|strong="H3068"\w* \w woman|strong="H1323"\w* \w in|strong="H7200"\w* \w Timnah|strong="H8553"\w* \w of|strong="H1323"\w* \w the|strong="H7200"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w the|strong="H7200"\w* \w Philistines|strong="H6430"\w*. +\v 2 \w He|strong="H3947"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w*, \w and|strong="H7200"\w* \w told|strong="H5046"\w* \w his|strong="H3947"\w* father \w and|strong="H7200"\w* \w his|strong="H3947"\w* mother, saying, “\w I|strong="H6258"\w* \w have|strong="H6430"\w* \w seen|strong="H7200"\w* \w a|strong="H3068"\w* \w woman|strong="H1323"\w* \w in|strong="H5927"\w* \w Timnah|strong="H8553"\w* \w of|strong="H1323"\w* \w the|strong="H7200"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w the|strong="H7200"\w* \w Philistines|strong="H6430"\w*. \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w get|strong="H3947"\w* \w her|strong="H3947"\w* \w for|strong="H3947"\w* \w me|strong="H7200"\w* \w as|strong="H5927"\w* \w my|strong="H7200"\w* wife.” +\p +\v 3 \w Then|strong="H1980"\w* \w his|strong="H3605"\w* father \w and|strong="H1980"\w* \w his|strong="H3605"\w* mother said \w to|strong="H1980"\w* \w him|strong="H3947"\w*, “Isn’t \w there|strong="H3605"\w* \w a|strong="H3068"\w* \w woman|strong="H1323"\w* \w among|strong="H5971"\w* \w your|strong="H3605"\w* brothers’ \w daughters|strong="H1323"\w*, \w or|strong="H1980"\w* \w among|strong="H5971"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w go|strong="H1980"\w* \w to|strong="H1980"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* wife \w of|strong="H1323"\w* \w the|strong="H3605"\w* \w uncircumcised|strong="H6189"\w* \w Philistines|strong="H6430"\w*?” +\p \w Samson|strong="H8123"\w* said \w to|strong="H1980"\w* \w his|strong="H3605"\w* father, “\w Get|strong="H3947"\w* \w her|strong="H3605"\w* \w for|strong="H3588"\w* \w me|strong="H3947"\w*, \w for|strong="H3588"\w* \w she|strong="H1931"\w* \w pleases|strong="H5869"\w* \w me|strong="H3947"\w* \w well|strong="H5869"\w*.” +\p +\v 4 \w But|strong="H3588"\w* \w his|strong="H3068"\w* father \w and|strong="H3478"\w* \w his|strong="H3068"\w* mother didn’t \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w it|strong="H1931"\w* \w was|strong="H3068"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*; \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w sought|strong="H1245"\w* \w an|strong="H3588"\w* \w occasion|strong="H8385"\w* \w against|strong="H6430"\w* \w the|strong="H3588"\w* \w Philistines|strong="H6430"\w*. \w Now|strong="H3588"\w* \w at|strong="H3478"\w* \w that|strong="H3588"\w* \w time|strong="H6256"\w* \w the|strong="H3588"\w* \w Philistines|strong="H6430"\w* \w ruled|strong="H4910"\w* \w over|strong="H4910"\w* \w Israel|strong="H3478"\w*. +\p +\v 5 \w Then|strong="H2009"\w* \w Samson|strong="H8123"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H5704"\w* \w Timnah|strong="H8553"\w* \w with|strong="H3381"\w* \w his|strong="H3381"\w* father \w and|strong="H3381"\w* \w his|strong="H3381"\w* mother, \w and|strong="H3381"\w* \w came|strong="H3381"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w vineyards|strong="H3754"\w* \w of|strong="H3754"\w* \w Timnah|strong="H8553"\w*; \w and|strong="H3381"\w* \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w young|strong="H3715"\w* \w lion|strong="H3715"\w* \w roared|strong="H7580"\w* \w at|strong="H3754"\w* \w him|strong="H3381"\w*. +\v 6 \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w* \w came|strong="H3068"\w* \w mightily|strong="H6743"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H3068"\w* \w he|strong="H6213"\w* \w tore|strong="H8156"\w* \w him|strong="H5921"\w* \w as|strong="H6213"\w* \w he|strong="H6213"\w* \w would|strong="H3068"\w* \w have|strong="H3068"\w* torn \w a|strong="H3068"\w* \w young|strong="H1423"\w* \w goat|strong="H1423"\w* \w with|strong="H3068"\w* \w his|strong="H3068"\w* bare \w hands|strong="H3027"\w*, \w but|strong="H3808"\w* \w he|strong="H6213"\w* didn’t \w tell|strong="H5046"\w* \w his|strong="H3068"\w* father \w or|strong="H3808"\w* \w his|strong="H3068"\w* mother \w what|strong="H6213"\w* \w he|strong="H6213"\w* \w had|strong="H3068"\w* \w done|strong="H6213"\w*. +\v 7 \w He|strong="H1696"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w and|strong="H5869"\w* \w talked|strong="H1696"\w* \w with|strong="H1696"\w* \w the|strong="H1696"\w* woman, \w and|strong="H5869"\w* she \w pleased|strong="H3474"\w* \w Samson|strong="H8123"\w* \w well|strong="H5869"\w*. +\v 8 \w After|strong="H3117"\w* \w a|strong="H3068"\w* \w while|strong="H3117"\w* \w he|strong="H3117"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w take|strong="H3947"\w* \w her|strong="H3947"\w*, \w and|strong="H7725"\w* \w he|strong="H3117"\w* \w went|strong="H7725"\w* over \w to|strong="H7725"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w carcass|strong="H1472"\w* \w of|strong="H3117"\w* \w the|strong="H7200"\w* lion; \w and|strong="H7725"\w* \w behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w was|strong="H3117"\w* \w a|strong="H3068"\w* \w swarm|strong="H5712"\w* \w of|strong="H3117"\w* \w bees|strong="H1682"\w* \w in|strong="H3117"\w* \w the|strong="H7200"\w* \w body|strong="H1472"\w* \w of|strong="H3117"\w* \w the|strong="H7200"\w* lion, \w and|strong="H7725"\w* \w honey|strong="H1706"\w*. +\v 9 \w He|strong="H3588"\w* \w took|strong="H1980"\w* \w it|strong="H5414"\w* \w into|strong="H1980"\w* \w his|strong="H5414"\w* \w hands|strong="H3709"\w*, \w and|strong="H1980"\w* \w went|strong="H1980"\w* \w on|strong="H1980"\w*, eating \w as|strong="H3588"\w* \w he|strong="H3588"\w* \w went|strong="H1980"\w*. \w He|strong="H3588"\w* \w came|strong="H1980"\w* \w to|strong="H1980"\w* \w his|strong="H5414"\w* father \w and|strong="H1980"\w* mother \w and|strong="H1980"\w* \w gave|strong="H5414"\w* \w to|strong="H1980"\w* \w them|strong="H5414"\w*, \w and|strong="H1980"\w* \w they|strong="H3588"\w* ate, \w but|strong="H3588"\w* \w he|strong="H3588"\w* didn’t \w tell|strong="H5046"\w* \w them|strong="H5414"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H3588"\w* \w taken|strong="H7287"\w* \w the|strong="H3588"\w* \w honey|strong="H1706"\w* \w out|strong="H5414"\w* \w of|strong="H3709"\w* \w the|strong="H3588"\w* lion’s \w body|strong="H1472"\w*. +\v 10 \w His|strong="H6213"\w* father \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3588"\w* woman; \w and|strong="H8033"\w* \w Samson|strong="H8123"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w feast|strong="H4960"\w* \w there|strong="H8033"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* young \w men|strong="H6213"\w* \w used|strong="H6213"\w* \w to|strong="H3381"\w* \w do|strong="H6213"\w* \w so|strong="H3651"\w*. +\v 11 \w When|strong="H1961"\w* \w they|strong="H3947"\w* \w saw|strong="H7200"\w* \w him|strong="H7200"\w*, \w they|strong="H3947"\w* \w brought|strong="H3947"\w* \w thirty|strong="H7970"\w* \w companions|strong="H4828"\w* \w to|strong="H1961"\w* \w be|strong="H1961"\w* \w with|strong="H3947"\w* \w him|strong="H7200"\w*. +\p +\v 12 \w Samson|strong="H8123"\w* said \w to|strong="H5414"\w* \w them|strong="H5414"\w*, “\w Let|strong="H4994"\w* \w me|strong="H5414"\w* \w tell|strong="H5046"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w riddle|strong="H2420"\w* \w now|strong="H4994"\w*. If \w you|strong="H5414"\w* \w can|strong="H4994"\w* \w tell|strong="H5046"\w* \w me|strong="H5414"\w* \w the|strong="H5414"\w* answer within \w the|strong="H5414"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H5414"\w* \w feast|strong="H4960"\w*, \w and|strong="H3117"\w* \w find|strong="H4672"\w* \w it|strong="H5414"\w* \w out|strong="H4672"\w*, \w then|strong="H5414"\w* \w I|strong="H3117"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w thirty|strong="H7970"\w* \w linen|strong="H5466"\w* \w garments|strong="H5466"\w* \w and|strong="H3117"\w* \w thirty|strong="H7970"\w* \w changes|strong="H2487"\w* \w of|strong="H3117"\w* clothing; +\v 13 \w but|strong="H3808"\w* if \w you|strong="H5414"\w* \w can|strong="H3201"\w*’t \w tell|strong="H5046"\w* \w me|strong="H5414"\w* \w the|strong="H8085"\w* answer, \w then|strong="H5414"\w* \w you|strong="H5414"\w* \w shall|strong="H3808"\w* \w give|strong="H5414"\w* \w me|strong="H5414"\w* \w thirty|strong="H7970"\w* \w linen|strong="H5466"\w* \w garments|strong="H5466"\w* \w and|strong="H7970"\w* \w thirty|strong="H7970"\w* \w changes|strong="H2487"\w* \w of|strong="H2487"\w* clothing.” +\p \w They|strong="H3808"\w* \w said|strong="H8085"\w* \w to|strong="H3201"\w* \w him|strong="H5414"\w*, “\w Tell|strong="H5046"\w* \w us|strong="H5414"\w* \w your|strong="H5414"\w* \w riddle|strong="H2420"\w*, \w that|strong="H8085"\w* \w we|strong="H3068"\w* \w may|strong="H3201"\w* \w hear|strong="H8085"\w* \w it|strong="H5414"\w*.” +\p +\v 14 \w He|strong="H3117"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w them|strong="H3318"\w*, +\q1 “\w Out|strong="H3318"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* eater \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w food|strong="H3978"\w*. +\q2 \w Out|strong="H3318"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w strong|strong="H5794"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w sweetness|strong="H4966"\w*.” +\p \w They|strong="H3117"\w* couldn’t \w in|strong="H3117"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w* \w declare|strong="H5046"\w* \w the|strong="H3117"\w* \w riddle|strong="H2420"\w*. +\v 15 \w On|strong="H3117"\w* \w the|strong="H3117"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*, \w they|strong="H3117"\w* \w said|strong="H7121"\w* \w to|strong="H1961"\w* \w Samson|strong="H8123"\w*’s wife, “\w Entice|strong="H6601"\w* \w your|strong="H1961"\w* husband, \w that|strong="H3117"\w* \w he|strong="H3117"\w* \w may|strong="H1961"\w* \w declare|strong="H5046"\w* \w to|strong="H1961"\w* \w us|strong="H5046"\w* \w the|strong="H3117"\w* \w riddle|strong="H2420"\w*, \w lest|strong="H6435"\w* \w we|strong="H3068"\w* \w burn|strong="H8313"\w* \w you|strong="H3117"\w* \w and|strong="H3117"\w* \w your|strong="H1961"\w* father’s \w house|strong="H1004"\w* \w with|strong="H8313"\w* fire. \w Have|strong="H1961"\w* \w you|strong="H3117"\w* \w called|strong="H7121"\w* \w us|strong="H5046"\w* \w to|strong="H1961"\w* \w impoverish|strong="H3423"\w* \w us|strong="H5046"\w*? Isn’t \w that|strong="H3117"\w* \w so|strong="H6435"\w*?” +\p +\v 16 \w Samson|strong="H8123"\w*’s wife \w wept|strong="H1058"\w* \w before|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H1121"\w* said, “\w You|strong="H5921"\w* just \w hate|strong="H8130"\w* \w me|strong="H5046"\w*, \w and|strong="H1121"\w* don’t love \w me|strong="H5046"\w*. \w You|strong="H5921"\w*’ve \w told|strong="H5046"\w* \w a|strong="H3068"\w* \w riddle|strong="H2420"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w my|strong="H5921"\w* \w people|strong="H5971"\w*, \w and|strong="H1121"\w* haven’t \w told|strong="H5046"\w* \w it|strong="H5921"\w* \w to|strong="H5921"\w* \w me|strong="H5046"\w*.” +\p \w He|strong="H3808"\w* said \w to|strong="H5921"\w* \w her|strong="H5046"\w*, “\w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* haven’t \w told|strong="H5046"\w* \w my|strong="H5921"\w* \w father|strong="H1121"\w* \w or|strong="H3808"\w* \w my|strong="H5921"\w* mother, \w so|strong="H3808"\w* \w why|strong="H5921"\w* should \w I|strong="H2009"\w* \w tell|strong="H5046"\w* \w you|strong="H5921"\w*?” +\p +\v 17 \w She|strong="H3588"\w* \w wept|strong="H1058"\w* \w before|strong="H5921"\w* \w him|strong="H5921"\w* \w the|strong="H5921"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w while|strong="H1961"\w* \w their|strong="H5921"\w* \w feast|strong="H4960"\w* \w lasted|strong="H1961"\w*; \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*, \w he|strong="H3588"\w* \w told|strong="H5046"\w* \w her|strong="H5046"\w*, \w because|strong="H3588"\w* \w she|strong="H3588"\w* \w pressed|strong="H6693"\w* \w him|strong="H5921"\w* severely; \w and|strong="H1121"\w* \w she|strong="H3588"\w* \w told|strong="H5046"\w* \w the|strong="H5921"\w* \w riddle|strong="H2420"\w* \w to|strong="H1961"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w her|strong="H5046"\w* \w people|strong="H5971"\w*. +\v 18 \w The|strong="H3117"\w* \w men|strong="H5794"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w city|strong="H5892"\w* \w said|strong="H2790"\w* \w to|strong="H3117"\w* \w him|strong="H4672"\w* \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w before|strong="H2962"\w* \w the|strong="H3117"\w* \w sun|strong="H2775"\w* \w went|strong="H5892"\w* down, “\w What|strong="H4100"\w* \w is|strong="H4100"\w* \w sweeter|strong="H4966"\w* \w than|strong="H3808"\w* \w honey|strong="H1706"\w*? \w What|strong="H4100"\w* \w is|strong="H4100"\w* \w stronger|strong="H5794"\w* \w than|strong="H3808"\w* \w a|strong="H3068"\w* lion?” +\p \w He|strong="H3117"\w* \w said|strong="H2790"\w* \w to|strong="H3117"\w* \w them|strong="H4672"\w*, +\q1 “\w If|strong="H3884"\w* \w you|strong="H3117"\w* hadn’t \w plowed|strong="H2790"\w* \w with|strong="H3117"\w* \w my|strong="H4672"\w* \w heifer|strong="H5697"\w*, +\q2 \w you|strong="H3117"\w* wouldn’t \w have|strong="H4672"\w* \w found|strong="H4672"\w* \w out|strong="H4672"\w* \w my|strong="H4672"\w* \w riddle|strong="H2420"\w*.” +\p +\v 19 \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w* \w came|strong="H5927"\w* \w mightily|strong="H6743"\w* \w on|strong="H5921"\w* \w him|strong="H5414"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w went|strong="H5927"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* Ashkelon \w and|strong="H3068"\w* \w struck|strong="H5221"\w* \w thirty|strong="H7970"\w* \w men|strong="H1992"\w* \w of|strong="H1004"\w* \w them|strong="H5414"\w*. \w He|strong="H3068"\w* \w took|strong="H3947"\w* \w their|strong="H3068"\w* plunder, \w then|strong="H3947"\w* \w gave|strong="H5414"\w* \w the|strong="H5921"\w* \w changes|strong="H2487"\w* \w of|strong="H1004"\w* clothing \w to|strong="H3381"\w* \w those|strong="H1992"\w* \w who|strong="H3068"\w* \w declared|strong="H5046"\w* \w the|strong="H5921"\w* \w riddle|strong="H2420"\w*. \w His|strong="H5414"\w* \w anger|strong="H7307"\w* \w burned|strong="H2734"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3381"\w* \w his|strong="H5414"\w* father’s \w house|strong="H1004"\w*. +\v 20 \w But|strong="H1961"\w* \w Samson|strong="H8123"\w*’s wife \w was|strong="H1961"\w* given \w to|strong="H1961"\w* \w his|strong="H1961"\w* \w companion|strong="H4828"\w*, \w who|strong="H7462"\w* \w had|strong="H1961"\w* \w been|strong="H1961"\w* \w his|strong="H1961"\w* \w friend|strong="H7462"\w*. +\c 15 +\p +\v 1 \w But|strong="H3808"\w* \w after|strong="H1961"\w* \w a|strong="H3068"\w* \w while|strong="H1961"\w*, \w in|strong="H3117"\w* \w the|strong="H5414"\w* \w time|strong="H3117"\w* \w of|strong="H3117"\w* \w wheat|strong="H2406"\w* \w harvest|strong="H7105"\w*, \w Samson|strong="H8123"\w* \w visited|strong="H6485"\w* \w his|strong="H5414"\w* wife \w with|strong="H3117"\w* \w a|strong="H3068"\w* \w young|strong="H1423"\w* \w goat|strong="H5795"\w*. \w He|strong="H3117"\w* said, “\w I|strong="H3117"\w* \w will|strong="H1961"\w* \w go|strong="H1961"\w* \w in|strong="H3117"\w* \w to|strong="H1961"\w* \w my|strong="H5414"\w* wife’s \w room|strong="H2315"\w*.” +\p \w But|strong="H3808"\w* \w her|strong="H5414"\w* father wouldn’t \w allow|strong="H5414"\w* \w him|strong="H5414"\w* \w to|strong="H1961"\w* \w go|strong="H1961"\w* \w in|strong="H3117"\w*. +\v 2 \w Her|strong="H5414"\w* father said, “\w I|strong="H3588"\w* \w most|strong="H2896"\w* \w certainly|strong="H3588"\w* thought \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w utterly|strong="H8130"\w* \w hated|strong="H8130"\w* \w her|strong="H5414"\w*; \w therefore|strong="H3588"\w* \w I|strong="H3588"\w* \w gave|strong="H5414"\w* \w her|strong="H5414"\w* \w to|strong="H1961"\w* \w your|strong="H5414"\w* \w companion|strong="H4828"\w*. Isn’t \w her|strong="H5414"\w* \w younger|strong="H6996"\w* sister \w more|strong="H4480"\w* \w beautiful|strong="H2896"\w* \w than|strong="H4480"\w* \w she|strong="H3588"\w*? \w Please|strong="H4994"\w*, \w take|strong="H1961"\w* \w her|strong="H5414"\w* \w instead|strong="H8478"\w*.” +\p +\v 3 \w Samson|strong="H8123"\w* said \w to|strong="H6213"\w* \w them|strong="H6213"\w*, “\w This|strong="H6213"\w* \w time|strong="H6471"\w* \w I|strong="H3588"\w* \w will|strong="H6430"\w* \w be|strong="H7451"\w* \w blameless|strong="H5352"\w* \w in|strong="H6213"\w* \w the|strong="H3588"\w* \w case|strong="H3588"\w* \w of|strong="H6213"\w* \w the|strong="H3588"\w* \w Philistines|strong="H6430"\w* \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w harm|strong="H7451"\w* \w them|strong="H6213"\w*.” +\v 4 \w Samson|strong="H8123"\w* \w went|strong="H3212"\w* \w and|strong="H3967"\w* \w caught|strong="H3920"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w foxes|strong="H7776"\w*, \w and|strong="H3967"\w* \w took|strong="H3947"\w* \w torches|strong="H3940"\w*, \w and|strong="H3967"\w* \w turned|strong="H6437"\w* \w tail|strong="H2180"\w* \w to|strong="H3212"\w* \w tail|strong="H2180"\w*, \w and|strong="H3967"\w* \w put|strong="H7760"\w* \w a|strong="H3068"\w* \w torch|strong="H3940"\w* \w in|strong="H8432"\w* \w the|strong="H3947"\w* \w middle|strong="H8432"\w* \w between|strong="H8432"\w* \w every|strong="H3212"\w* \w two|strong="H8147"\w* \w tails|strong="H2180"\w*. +\v 5 \w When|strong="H5704"\w* \w he|strong="H5704"\w* \w had|strong="H6430"\w* \w set|strong="H7971"\w* \w the|strong="H5704"\w* \w torches|strong="H3940"\w* \w on|strong="H7971"\w* fire, \w he|strong="H5704"\w* \w let|strong="H7971"\w* \w them|strong="H7971"\w* \w go|strong="H7971"\w* \w into|strong="H5704"\w* \w the|strong="H5704"\w* \w standing|strong="H7054"\w* \w grain|strong="H7054"\w* \w of|strong="H3754"\w* \w the|strong="H5704"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H7971"\w* \w burned|strong="H1197"\w* \w up|strong="H5704"\w* both \w the|strong="H5704"\w* \w shocks|strong="H1430"\w* \w and|strong="H7971"\w* \w the|strong="H5704"\w* \w standing|strong="H7054"\w* \w grain|strong="H7054"\w*, \w and|strong="H7971"\w* \w also|strong="H6430"\w* \w the|strong="H5704"\w* \w olive|strong="H2132"\w* \w groves|strong="H2132"\w*. +\p +\v 6 \w Then|strong="H3947"\w* \w the|strong="H3588"\w* \w Philistines|strong="H6430"\w* said, “\w Who|strong="H4310"\w* \w has|strong="H4310"\w* \w done|strong="H6213"\w* \w this|strong="H2063"\w*?” +\p \w They|strong="H3588"\w* said, “\w Samson|strong="H8123"\w*, \w the|strong="H3588"\w* \w son-in-law|strong="H2860"\w* \w of|strong="H6213"\w* \w the|strong="H3588"\w* \w Timnite|strong="H8554"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H4310"\w* \w taken|strong="H3947"\w* \w his|strong="H5414"\w* wife \w and|strong="H6213"\w* \w given|strong="H5414"\w* \w her|strong="H5414"\w* \w to|strong="H5927"\w* \w his|strong="H5414"\w* \w companion|strong="H4828"\w*.” \w The|strong="H3588"\w* \w Philistines|strong="H6430"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w*, \w and|strong="H6213"\w* \w burned|strong="H8313"\w* \w her|strong="H5414"\w* \w and|strong="H6213"\w* \w her|strong="H5414"\w* father \w with|strong="H8313"\w* fire. +\p +\v 7 \w Samson|strong="H8123"\w* said \w to|strong="H6213"\w* \w them|strong="H6213"\w*, “\w If|strong="H3588"\w* \w you|strong="H3588"\w* \w behave|strong="H6213"\w* \w like|strong="H6213"\w* \w this|strong="H2063"\w*, \w surely|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H6213"\w* \w take|strong="H5358"\w* \w revenge|strong="H5358"\w* \w on|strong="H6213"\w* \w you|strong="H3588"\w*, \w and|strong="H6213"\w* \w after|strong="H3588"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H6213"\w* \w cease|strong="H2308"\w*.” +\v 8 \w He|strong="H5921"\w* \w struck|strong="H5221"\w* \w them|strong="H5921"\w* \w hip|strong="H3409"\w* \w and|strong="H1419"\w* \w thigh|strong="H3409"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w slaughter|strong="H4347"\w*; \w and|strong="H1419"\w* \w he|strong="H5921"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w and|strong="H1419"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* cave \w in|strong="H3427"\w* \w Etam|strong="H5862"\w*’s \w rock|strong="H5553"\w*. +\v 9 \w Then|strong="H5927"\w* \w the|strong="H5927"\w* \w Philistines|strong="H6430"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w*, \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w spread|strong="H5203"\w* themselves \w in|strong="H2583"\w* \w Lehi|strong="H3896"\w*. +\p +\v 10 \w The|strong="H5921"\w* \w men|strong="H6213"\w* \w of|strong="H5921"\w* \w Judah|strong="H3063"\w* said, “\w Why|strong="H4100"\w* \w have|strong="H3063"\w* \w you|strong="H5921"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w us|strong="H5921"\w*?” +\p \w They|strong="H5921"\w* said, “\w We|strong="H6213"\w* \w have|strong="H3063"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* bind \w Samson|strong="H8123"\w*, \w to|strong="H5927"\w* \w do|strong="H6213"\w* \w to|strong="H5927"\w* \w him|strong="H5921"\w* \w as|strong="H6213"\w* \w he|strong="H6213"\w* \w has|strong="H3063"\w* \w done|strong="H6213"\w* \w to|strong="H5927"\w* \w us|strong="H5921"\w*.” +\p +\v 11 \w Then|strong="H3651"\w* \w three|strong="H7969"\w* thousand \w men|strong="H6213"\w* \w of|strong="H6213"\w* \w Judah|strong="H3063"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3588"\w* cave \w in|strong="H6213"\w* \w Etam|strong="H5862"\w*’s \w rock|strong="H5553"\w*, \w and|strong="H3063"\w* \w said|strong="H3651"\w* \w to|strong="H3381"\w* \w Samson|strong="H8123"\w*, “Don’t \w you|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w Philistines|strong="H6430"\w* \w are|strong="H4100"\w* \w rulers|strong="H4910"\w* \w over|strong="H4910"\w* \w us|strong="H6213"\w*? \w What|strong="H4100"\w* \w then|strong="H3651"\w* \w is|strong="H4100"\w* \w this|strong="H2063"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3045"\w* \w done|strong="H6213"\w* \w to|strong="H3381"\w* \w us|strong="H6213"\w*?” +\p \w He|strong="H3588"\w* \w said|strong="H3651"\w* \w to|strong="H3381"\w* \w them|strong="H6213"\w*, “\w As|strong="H6213"\w* \w they|strong="H3588"\w* \w did|strong="H6213"\w* \w to|strong="H3381"\w* \w me|strong="H6213"\w*, \w so|strong="H3651"\w* \w I|strong="H3588"\w* \w have|strong="H3045"\w* \w done|strong="H6213"\w* \w to|strong="H3381"\w* \w them|strong="H6213"\w*.” +\p +\v 12 \w They|strong="H3027"\w* said \w to|strong="H3381"\w* \w him|strong="H5414"\w*, “\w We|strong="H6435"\w* \w have|strong="H6430"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* bind \w you|strong="H5414"\w*, \w that|strong="H5414"\w* \w we|strong="H3068"\w* \w may|strong="H5414"\w* \w deliver|strong="H5414"\w* \w you|strong="H5414"\w* \w into|strong="H3381"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5414"\w* \w Philistines|strong="H6430"\w*.” +\p \w Samson|strong="H8123"\w* said \w to|strong="H3381"\w* \w them|strong="H5414"\w*, “\w Swear|strong="H7650"\w* \w to|strong="H3381"\w* \w me|strong="H5414"\w* \w that|strong="H5414"\w* \w you|strong="H5414"\w* \w will|strong="H3027"\w* \w not|strong="H5414"\w* \w attack|strong="H6293"\w* \w me|strong="H5414"\w* \w yourselves|strong="H3027"\w*.” +\p +\v 13 \w They|strong="H3588"\w* spoke \w to|strong="H4191"\w* \w him|strong="H5414"\w*, saying, “\w No|strong="H3808"\w*, \w but|strong="H3588"\w* \w we|strong="H3068"\w* \w will|strong="H3027"\w* bind \w you|strong="H3588"\w* securely \w and|strong="H3027"\w* \w deliver|strong="H5414"\w* \w you|strong="H3588"\w* \w into|strong="H5927"\w* \w their|strong="H5414"\w* \w hands|strong="H3027"\w*; \w but|strong="H3588"\w* \w surely|strong="H4191"\w* \w we|strong="H3068"\w* \w will|strong="H3027"\w* \w not|strong="H3808"\w* \w kill|strong="H4191"\w* \w you|strong="H3588"\w*.” \w They|strong="H3588"\w* bound \w him|strong="H5414"\w* \w with|strong="H3027"\w* \w two|strong="H8147"\w* \w new|strong="H2319"\w* \w ropes|strong="H5688"\w*, \w and|strong="H3027"\w* \w brought|strong="H5927"\w* \w him|strong="H5414"\w* \w up|strong="H5927"\w* \w from|strong="H4480"\w* \w the|strong="H3588"\w* \w rock|strong="H5553"\w*. +\p +\v 14 \w When|strong="H1961"\w* \w he|strong="H1931"\w* \w came|strong="H1961"\w* \w to|strong="H5704"\w* \w Lehi|strong="H3896"\w*, \w the|strong="H5921"\w* \w Philistines|strong="H6430"\w* \w shouted|strong="H7321"\w* \w as|strong="H5704"\w* \w they|strong="H3068"\w* \w met|strong="H7125"\w* \w him|strong="H5921"\w*. \w Then|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w* \w came|strong="H1961"\w* \w mightily|strong="H6743"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w ropes|strong="H5688"\w* \w that|strong="H1931"\w* \w were|strong="H1961"\w* \w on|strong="H5921"\w* \w his|strong="H3068"\w* \w arms|strong="H2220"\w* \w became|strong="H1961"\w* \w as|strong="H5704"\w* \w flax|strong="H6593"\w* \w that|strong="H1931"\w* \w was|strong="H3068"\w* \w burned|strong="H1197"\w* \w with|strong="H3068"\w* fire; \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w bands|strong="H5688"\w* \w dropped|strong="H4549"\w* \w from|strong="H5921"\w* \w off|strong="H5921"\w* \w his|strong="H3068"\w* \w hands|strong="H3027"\w*. +\v 15 \w He|strong="H3027"\w* \w found|strong="H4672"\w* \w a|strong="H3068"\w* \w fresh|strong="H2961"\w* \w jawbone|strong="H3895"\w* \w of|strong="H3027"\w* \w a|strong="H3068"\w* \w donkey|strong="H2543"\w*, \w put|strong="H7971"\w* \w out|strong="H7971"\w* \w his|strong="H7971"\w* \w hand|strong="H3027"\w*, \w took|strong="H3947"\w* \w it|strong="H5221"\w*, \w and|strong="H7971"\w* \w struck|strong="H5221"\w* \w a|strong="H3068"\w* thousand \w men|strong="H3947"\w* \w with|strong="H3027"\w* \w it|strong="H5221"\w*. +\v 16 \w Samson|strong="H8123"\w* said, “\w With|strong="H5221"\w* \w the|strong="H5221"\w* \w jawbone|strong="H3895"\w* \w of|strong="H5221"\w* \w a|strong="H3068"\w* \w donkey|strong="H2543"\w*, \w heaps|strong="H2565"\w* \w on|strong="H5221"\w* \w heaps|strong="H2565"\w*; \w with|strong="H5221"\w* \w the|strong="H5221"\w* \w jawbone|strong="H3895"\w* \w of|strong="H5221"\w* \w a|strong="H3068"\w* \w donkey|strong="H2543"\w* I have \w struck|strong="H5221"\w* \w a|strong="H3068"\w* thousand men.” +\v 17 \w When|strong="H1961"\w* \w he|strong="H1931"\w* \w had|strong="H1961"\w* \w finished|strong="H3615"\w* \w speaking|strong="H1696"\w*, \w he|strong="H1931"\w* \w threw|strong="H7993"\w* \w the|strong="H7121"\w* \w jawbone|strong="H3895"\w* \w out|strong="H7993"\w* \w of|strong="H3027"\w* \w his|strong="H7121"\w* \w hand|strong="H3027"\w*; \w and|strong="H3027"\w* \w that|strong="H1931"\w* \w place|strong="H4725"\w* \w was|strong="H1961"\w* \w called|strong="H7121"\w* \w Ramath|strong="H7437"\w* Lehi.\f + \fr 15:17 \ft “Ramath” means “hill” and “Lehi” means “jawbone”.\f* +\p +\v 18 \w He|strong="H3068"\w* \w was|strong="H3068"\w* \w very|strong="H3966"\w* \w thirsty|strong="H6770"\w*, \w and|strong="H3068"\w* \w called|strong="H7121"\w* \w on|strong="H5307"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w said|strong="H7121"\w*, “\w You|strong="H5414"\w* \w have|strong="H3068"\w* \w given|strong="H5414"\w* \w this|strong="H2063"\w* \w great|strong="H1419"\w* \w deliverance|strong="H8668"\w* \w by|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w*; \w and|strong="H3068"\w* \w now|strong="H6258"\w* \w shall|strong="H3068"\w* \w I|strong="H5414"\w* \w die|strong="H4191"\w* \w of|strong="H3068"\w* \w thirst|strong="H6772"\w*, \w and|strong="H3068"\w* \w fall|strong="H5307"\w* \w into|strong="H5307"\w* \w the|strong="H5414"\w* \w hands|strong="H3027"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* \w uncircumcised|strong="H6189"\w*?” +\p +\v 19 \w But|strong="H3651"\w* God \w split|strong="H1234"\w* \w the|strong="H5921"\w* \w hollow|strong="H4388"\w* \w place|strong="H4388"\w* \w that|strong="H3117"\w* \w is|strong="H2088"\w* \w in|strong="H5921"\w* \w Lehi|strong="H3896"\w*, \w and|strong="H7725"\w* \w water|strong="H4325"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3117"\w* \w it|strong="H7121"\w*. \w When|strong="H3117"\w* \w he|strong="H3117"\w* \w had|strong="H4325"\w* \w drunk|strong="H8354"\w*, \w his|strong="H7121"\w* \w spirit|strong="H7307"\w* \w came|strong="H3318"\w* \w again|strong="H7725"\w*, \w and|strong="H7725"\w* \w he|strong="H3117"\w* \w revived|strong="H2421"\w*. \w Therefore|strong="H3651"\w* \w its|strong="H5921"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w called|strong="H7121"\w* En Hakkore, \w which|strong="H4325"\w* \w is|strong="H2088"\w* \w in|strong="H5921"\w* \w Lehi|strong="H3896"\w*, \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 20 \w He|strong="H3117"\w* \w judged|strong="H8199"\w* \w Israel|strong="H3478"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w Philistines|strong="H6430"\w*. +\c 16 +\p +\v 1 \w Samson|strong="H8123"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Gaza|strong="H5804"\w*, \w and|strong="H3212"\w* \w saw|strong="H7200"\w* \w there|strong="H8033"\w* \w a|strong="H3068"\w* \w prostitute|strong="H2181"\w*, \w and|strong="H3212"\w* \w went|strong="H3212"\w* \w in|strong="H3212"\w* \w to|strong="H3212"\w* \w her|strong="H7200"\w*. +\v 2 \w The|strong="H3605"\w* \w Gazites|strong="H5841"\w* \w were|strong="H5892"\w* told, “\w Samson|strong="H8123"\w* \w is|strong="H3605"\w* \w here|strong="H2008"\w*!” \w They|strong="H5704"\w* \w surrounded|strong="H5437"\w* \w him|strong="H3605"\w* \w and|strong="H5892"\w* laid wait \w for|strong="H5704"\w* \w him|strong="H3605"\w* \w all|strong="H3605"\w* \w night|strong="H3915"\w* \w in|strong="H5892"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w and|strong="H5892"\w* \w were|strong="H5892"\w* \w quiet|strong="H2790"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w night|strong="H3915"\w*, saying, “Wait \w until|strong="H5704"\w* \w morning|strong="H1242"\w* light; \w then|strong="H3605"\w* \w we|strong="H3068"\w* \w will|strong="H5892"\w* \w kill|strong="H2026"\w* \w him|strong="H3605"\w*.” +\v 3 \w Samson|strong="H8123"\w* \w lay|strong="H7901"\w* \w until|strong="H5704"\w* \w midnight|strong="H2677"\w*, \w then|strong="H6965"\w* \w arose|strong="H6965"\w* \w at|strong="H5921"\w* \w midnight|strong="H2677"\w* \w and|strong="H6965"\w* \w took|strong="H5927"\w* \w hold|strong="H6965"\w* \w of|strong="H5892"\w* \w the|strong="H6440"\w* \w doors|strong="H1817"\w* \w of|strong="H5892"\w* \w the|strong="H6440"\w* \w gate|strong="H8179"\w* \w of|strong="H5892"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w*, \w with|strong="H5973"\w* \w the|strong="H6440"\w* \w two|strong="H8147"\w* \w posts|strong="H4201"\w*, \w and|strong="H6965"\w* \w plucked|strong="H5265"\w* \w them|strong="H5921"\w* \w up|strong="H5927"\w*, \w bar|strong="H1280"\w* \w and|strong="H6965"\w* \w all|strong="H5704"\w*, \w and|strong="H6965"\w* \w put|strong="H7760"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w his|strong="H7760"\w* \w shoulders|strong="H3802"\w* \w and|strong="H6965"\w* \w carried|strong="H5927"\w* \w them|strong="H5921"\w* \w up|strong="H5927"\w* \w to|strong="H5704"\w* \w the|strong="H6440"\w* \w top|strong="H7218"\w* \w of|strong="H5892"\w* \w the|strong="H6440"\w* \w mountain|strong="H2022"\w* \w that|strong="H5892"\w* \w is|strong="H5892"\w* \w before|strong="H6440"\w* \w Hebron|strong="H2275"\w*. +\p +\v 4 \w It|strong="H3651"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w pass|strong="H1961"\w* afterward \w that|strong="H3651"\w* \w he|strong="H3651"\w* loved \w a|strong="H3068"\w* \w woman|strong="H8034"\w* \w in|strong="H8034"\w* \w the|strong="H1961"\w* \w valley|strong="H5158"\w* \w of|strong="H8034"\w* \w Sorek|strong="H7796"\w*, \w whose|strong="H8034"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Delilah|strong="H1807"\w*. +\v 5 \w The|strong="H7200"\w* \w lords|strong="H5633"\w* \w of|strong="H3701"\w* \w the|strong="H7200"\w* \w Philistines|strong="H6430"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3201"\w* \w her|strong="H5414"\w* \w and|strong="H3967"\w* said \w to|strong="H3201"\w* \w her|strong="H5414"\w*, “\w Entice|strong="H6601"\w* \w him|strong="H5414"\w*, \w and|strong="H3967"\w* \w see|strong="H7200"\w* \w in|strong="H1419"\w* \w which|strong="H4100"\w* \w his|strong="H5414"\w* \w great|strong="H1419"\w* \w strength|strong="H3581"\w* \w lies|strong="H5414"\w*, \w and|strong="H3967"\w* \w by|strong="H5414"\w* \w what|strong="H4100"\w* \w means|strong="H5927"\w* \w we|strong="H3068"\w* \w may|strong="H3201"\w* \w prevail|strong="H3201"\w* \w against|strong="H5927"\w* \w him|strong="H5414"\w*, \w that|strong="H7200"\w* \w we|strong="H3068"\w* \w may|strong="H3201"\w* bind \w him|strong="H5414"\w* \w to|strong="H3201"\w* \w afflict|strong="H6031"\w* \w him|strong="H5414"\w*; \w and|strong="H3967"\w* \w we|strong="H3068"\w* \w will|strong="H5414"\w* \w each|strong="H5414"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* eleven \w hundred|strong="H3967"\w* pieces \w of|strong="H3701"\w* \w silver|strong="H3701"\w*.” +\p +\v 6 \w Delilah|strong="H1807"\w* said \w to|strong="H5046"\w* \w Samson|strong="H8123"\w*, “\w Please|strong="H4994"\w* \w tell|strong="H5046"\w* \w me|strong="H4994"\w* \w where|strong="H4100"\w* \w your|strong="H4994"\w* \w great|strong="H1419"\w* \w strength|strong="H3581"\w* lies, \w and|strong="H1419"\w* \w what|strong="H4100"\w* \w you|strong="H5046"\w* \w might|strong="H3581"\w* \w be|strong="H4994"\w* bound \w to|strong="H5046"\w* \w afflict|strong="H6031"\w* \w you|strong="H5046"\w*.” +\p +\v 7 \w Samson|strong="H8123"\w* said \w to|strong="H1961"\w* \w her|strong="H1961"\w*, “\w If|strong="H1961"\w* \w they|strong="H3808"\w* bind \w me|strong="H1961"\w* \w with|strong="H1961"\w* \w seven|strong="H7651"\w* \w green|strong="H3892"\w* \w cords|strong="H3499"\w* \w that|strong="H3808"\w* \w were|strong="H1961"\w* \w never|strong="H3808"\w* \w dried|strong="H2717"\w*, \w then|strong="H1961"\w* \w shall|strong="H3808"\w* \w I|strong="H3808"\w* \w become|strong="H1961"\w* \w weak|strong="H2470"\w*, \w and|strong="H7651"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w another|strong="H3808"\w* man.” +\p +\v 8 \w Then|strong="H5927"\w* \w the|strong="H5927"\w* \w lords|strong="H5633"\w* \w of|strong="H3499"\w* \w the|strong="H5927"\w* \w Philistines|strong="H6430"\w* \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w her|strong="H2717"\w* \w seven|strong="H7651"\w* \w green|strong="H3892"\w* \w cords|strong="H3499"\w* which \w had|strong="H6430"\w* \w not|strong="H3808"\w* \w been|strong="H3808"\w* \w dried|strong="H2717"\w*, \w and|strong="H5927"\w* \w she|strong="H3808"\w* bound \w him|strong="H5927"\w* \w with|strong="H5927"\w* \w them|strong="H5927"\w*. +\v 9 \w Now|strong="H5921"\w* \w she|strong="H5921"\w* \w had|strong="H6430"\w* \w an|strong="H3427"\w* ambush waiting \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w inner|strong="H2315"\w* \w room|strong="H2315"\w*. \w She|strong="H5921"\w* said \w to|strong="H5921"\w* \w him|strong="H5921"\w*, “\w The|strong="H5921"\w* \w Philistines|strong="H6430"\w* \w are|strong="H6430"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*, \w Samson|strong="H8123"\w*!” \w He|strong="H3808"\w* \w broke|strong="H5423"\w* \w the|strong="H5921"\w* \w cords|strong="H3499"\w* \w as|strong="H3427"\w* \w a|strong="H3068"\w* flax \w thread|strong="H6616"\w* \w is|strong="H3581"\w* \w broken|strong="H5423"\w* \w when|strong="H3427"\w* \w it|strong="H5921"\w* touches \w the|strong="H5921"\w* fire. \w So|strong="H3808"\w* \w his|strong="H5921"\w* \w strength|strong="H3581"\w* \w was|strong="H6430"\w* \w not|strong="H3808"\w* \w known|strong="H3045"\w*. +\p +\v 10 \w Delilah|strong="H1807"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Samson|strong="H8123"\w*, “\w Behold|strong="H2009"\w*, \w you|strong="H5046"\w* \w have|strong="H6258"\w* \w mocked|strong="H2048"\w* \w me|strong="H4994"\w*, \w and|strong="H1696"\w* \w told|strong="H5046"\w* \w me|strong="H4994"\w* \w lies|strong="H3576"\w*. \w Now|strong="H6258"\w* \w please|strong="H4994"\w* \w tell|strong="H5046"\w* \w me|strong="H4994"\w* \w how|strong="H4100"\w* \w you|strong="H5046"\w* might \w be|strong="H4994"\w* bound.” +\p +\v 11 \w He|strong="H6213"\w* said \w to|strong="H1961"\w* \w her|strong="H6213"\w*, “\w If|strong="H1961"\w* \w they|strong="H3808"\w* only bind \w me|strong="H6213"\w* \w with|strong="H6213"\w* \w new|strong="H2319"\w* \w ropes|strong="H5688"\w* \w with|strong="H6213"\w* \w which|strong="H4399"\w* \w no|strong="H3808"\w* \w work|strong="H4399"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w done|strong="H6213"\w*, \w then|strong="H1961"\w* \w I|strong="H3808"\w* \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w weak|strong="H2470"\w*, \w and|strong="H6213"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w another|strong="H3808"\w* man.” +\p +\v 12 \w So|strong="H3947"\w* \w Delilah|strong="H1807"\w* \w took|strong="H3947"\w* \w new|strong="H2319"\w* \w ropes|strong="H5688"\w* \w and|strong="H6430"\w* bound \w him|strong="H5921"\w* \w with|strong="H5921"\w* \w them|strong="H5921"\w*, \w then|strong="H3947"\w* said \w to|strong="H5921"\w* \w him|strong="H5921"\w*, “\w The|strong="H5921"\w* \w Philistines|strong="H6430"\w* \w are|strong="H6430"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*, \w Samson|strong="H8123"\w*!” \w The|strong="H5921"\w* ambush \w was|strong="H6430"\w* waiting \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w inner|strong="H2315"\w* \w room|strong="H2315"\w*. \w He|strong="H5921"\w* \w broke|strong="H5423"\w* \w them|strong="H5921"\w* \w off|strong="H5921"\w* \w his|strong="H3947"\w* \w arms|strong="H2220"\w* \w like|strong="H5423"\w* \w a|strong="H3068"\w* \w thread|strong="H2339"\w*. +\p +\v 13 \w Delilah|strong="H1807"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Samson|strong="H8123"\w*, “\w Until|strong="H5704"\w* \w now|strong="H2008"\w*, \w you|strong="H5704"\w* \w have|strong="H1696"\w* \w mocked|strong="H2048"\w* \w me|strong="H5046"\w* \w and|strong="H7218"\w* \w told|strong="H5046"\w* \w me|strong="H5046"\w* \w lies|strong="H3576"\w*. \w Tell|strong="H5046"\w* \w me|strong="H5046"\w* \w with|strong="H5973"\w* \w what|strong="H4100"\w* \w you|strong="H5704"\w* might be bound.” +\p \w He|strong="H5704"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w her|strong="H5046"\w*, “If \w you|strong="H5704"\w* weave \w the|strong="H5704"\w* \w seven|strong="H7651"\w* \w locks|strong="H4253"\w* \w of|strong="H7218"\w* \w my|strong="H5046"\w* \w head|strong="H7218"\w* \w with|strong="H5973"\w* \w the|strong="H5704"\w* \w fabric|strong="H4545"\w* \w on|strong="H1696"\w* \w the|strong="H5704"\w* loom.” +\p +\v 14 \w She|strong="H5921"\w* \w fastened|strong="H8628"\w* \w it|strong="H5921"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w pin|strong="H3489"\w*, \w and|strong="H6430"\w* said \w to|strong="H5921"\w* \w him|strong="H5921"\w*, “\w The|strong="H5921"\w* \w Philistines|strong="H6430"\w* \w are|strong="H6430"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*, \w Samson|strong="H8123"\w*!” \w He|strong="H5921"\w* \w awakened|strong="H3364"\w* \w out|strong="H5265"\w* \w of|strong="H5921"\w* \w his|strong="H5921"\w* \w sleep|strong="H8142"\w*, \w and|strong="H6430"\w* \w plucked|strong="H5265"\w* \w away|strong="H5265"\w* \w the|strong="H5921"\w* \w pin|strong="H3489"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* beam \w and|strong="H6430"\w* \w the|strong="H5921"\w* \w fabric|strong="H4545"\w*. +\p +\v 15 \w She|strong="H3820"\w* said \w to|strong="H3820"\w* \w him|strong="H5046"\w*, “\w How|strong="H4100"\w* \w can|strong="H4100"\w* \w you|strong="H5046"\w* say, ‘\w I|strong="H2088"\w* love \w you|strong="H5046"\w*,’ when \w your|strong="H3808"\w* \w heart|strong="H3820"\w* \w is|strong="H2088"\w* \w not|strong="H3808"\w* \w with|strong="H3820"\w* \w me|strong="H5046"\w*? \w You|strong="H5046"\w* \w have|strong="H3808"\w* \w mocked|strong="H2048"\w* \w me|strong="H5046"\w* \w these|strong="H2088"\w* \w three|strong="H7969"\w* \w times|strong="H6471"\w*, \w and|strong="H1419"\w* \w have|strong="H3808"\w* \w not|strong="H3808"\w* \w told|strong="H5046"\w* \w me|strong="H5046"\w* \w where|strong="H4100"\w* \w your|strong="H3808"\w* \w great|strong="H1419"\w* \w strength|strong="H3581"\w* lies.” +\p +\v 16 \w When|strong="H3588"\w* \w she|strong="H3588"\w* \w pressed|strong="H6693"\w* \w him|strong="H4191"\w* \w daily|strong="H3117"\w* \w with|strong="H1697"\w* \w her|strong="H3605"\w* \w words|strong="H1697"\w* \w and|strong="H3117"\w* urged \w him|strong="H4191"\w*, \w his|strong="H3605"\w* \w soul|strong="H5315"\w* \w was|strong="H1961"\w* \w troubled|strong="H7114"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. +\v 17 \w He|strong="H3588"\w* \w told|strong="H5046"\w* \w her|strong="H3605"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w heart|strong="H3820"\w* \w and|strong="H7218"\w* said \w to|strong="H5927"\w* \w her|strong="H3605"\w*, “\w No|strong="H3808"\w* \w razor|strong="H4177"\w* \w has|strong="H1961"\w* \w ever|strong="H3808"\w* \w come|strong="H5927"\w* \w on|strong="H5921"\w* \w my|strong="H3605"\w* \w head|strong="H7218"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w a|strong="H3068"\w* \w Nazirite|strong="H5139"\w* \w to|strong="H5927"\w* \w God|strong="H3808"\w* \w from|strong="H4480"\w* \w my|strong="H3605"\w* mother’s womb. \w If|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w shaved|strong="H1548"\w*, \w then|strong="H1961"\w* \w my|strong="H3605"\w* \w strength|strong="H3581"\w* \w will|strong="H1961"\w* \w go|strong="H5927"\w* \w from|strong="H4480"\w* \w me|strong="H5046"\w* \w and|strong="H7218"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w weak|strong="H2470"\w*, \w and|strong="H7218"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w any|strong="H3605"\w* \w other|strong="H3605"\w* \w man|strong="H3605"\w*.” +\p +\v 18 \w When|strong="H3588"\w* \w Delilah|strong="H1807"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H6430"\w* \w told|strong="H5046"\w* \w her|strong="H3605"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w heart|strong="H3820"\w*, \w she|strong="H3588"\w* \w sent|strong="H7971"\w* \w and|strong="H3701"\w* \w called|strong="H7121"\w* \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w lords|strong="H5633"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*, saying, “\w Come|strong="H5927"\w* \w up|strong="H5927"\w* \w this|strong="H7200"\w* \w once|strong="H6471"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3820"\w* \w told|strong="H5046"\w* \w me|strong="H7971"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w heart|strong="H3820"\w*.” \w Then|strong="H7971"\w* \w the|strong="H3605"\w* \w lords|strong="H5633"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H7971"\w* \w her|strong="H3605"\w* \w and|strong="H3701"\w* \w brought|strong="H5927"\w* \w the|strong="H3605"\w* \w money|strong="H3701"\w* \w in|strong="H3027"\w* \w their|strong="H3605"\w* \w hand|strong="H3027"\w*. +\v 19 \w She|strong="H7121"\w* \w made|strong="H7121"\w* \w him|strong="H7121"\w* \w sleep|strong="H3462"\w* \w on|strong="H5921"\w* \w her|strong="H5493"\w* \w knees|strong="H1290"\w*; \w and|strong="H7218"\w* \w she|strong="H7121"\w* \w called|strong="H7121"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w man|strong="H7218"\w* \w and|strong="H7218"\w* \w shaved|strong="H1548"\w* \w off|strong="H5493"\w* \w the|strong="H5921"\w* \w seven|strong="H7651"\w* \w locks|strong="H4253"\w* \w of|strong="H7218"\w* \w his|strong="H7121"\w* \w head|strong="H7218"\w*; \w and|strong="H7218"\w* \w she|strong="H7121"\w* \w began|strong="H2490"\w* \w to|strong="H5921"\w* \w afflict|strong="H6031"\w* \w him|strong="H7121"\w*, \w and|strong="H7218"\w* \w his|strong="H7121"\w* \w strength|strong="H3581"\w* \w went|strong="H7218"\w* \w from|strong="H5493"\w* \w him|strong="H7121"\w*. +\v 20 \w She|strong="H1931"\w* \w said|strong="H3318"\w*, “\w The|strong="H5921"\w* \w Philistines|strong="H6430"\w* \w are|strong="H3068"\w* \w upon|strong="H5921"\w* \w you|strong="H3588"\w*, \w Samson|strong="H8123"\w*!” +\p \w He|strong="H1931"\w* \w awoke|strong="H3364"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w sleep|strong="H8142"\w*, \w and|strong="H3068"\w* \w said|strong="H3318"\w*, “\w I|strong="H3588"\w* \w will|strong="H3068"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w as|strong="H3068"\w* \w at|strong="H5921"\w* \w other|strong="H6471"\w* \w times|strong="H6471"\w*, \w and|strong="H3068"\w* \w shake|strong="H5287"\w* \w myself|strong="H3045"\w* \w free|strong="H3318"\w*.” \w But|strong="H3588"\w* \w he|strong="H1931"\w* didn’t \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w departed|strong="H5493"\w* \w from|strong="H5493"\w* \w him|strong="H5921"\w*. +\v 21 \w The|strong="H1961"\w* \w Philistines|strong="H6430"\w* laid \w hold|strong="H1004"\w* \w on|strong="H1961"\w* \w him|strong="H3381"\w* \w and|strong="H1004"\w* \w put|strong="H3381"\w* \w out|strong="H5365"\w* \w his|strong="H1961"\w* \w eyes|strong="H5869"\w*; \w and|strong="H1004"\w* \w they|strong="H5178"\w* \w brought|strong="H3381"\w* \w him|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w Gaza|strong="H5804"\w* \w and|strong="H1004"\w* bound \w him|strong="H3381"\w* \w with|strong="H1004"\w* \w fetters|strong="H5178"\w* \w of|strong="H1004"\w* \w bronze|strong="H5178"\w*; \w and|strong="H1004"\w* \w he|strong="H1004"\w* \w ground|strong="H2912"\w* \w at|strong="H1004"\w* \w the|strong="H1961"\w* mill \w in|strong="H1004"\w* \w the|strong="H1961"\w* \w prison|strong="H1004"\w*. +\v 22 However, \w the|strong="H2490"\w* \w hair|strong="H8181"\w* \w of|strong="H7218"\w* \w his|strong="H1548"\w* \w head|strong="H7218"\w* \w began|strong="H2490"\w* \w to|strong="H2490"\w* \w grow|strong="H6779"\w* \w again|strong="H6779"\w* \w after|strong="H6779"\w* he \w was|strong="H7218"\w* \w shaved|strong="H1548"\w*. +\p +\v 23 \w The|strong="H5414"\w* \w lords|strong="H5633"\w* \w of|strong="H3027"\w* \w the|strong="H5414"\w* \w Philistines|strong="H6430"\w* \w gathered|strong="H6430"\w* together \w to|strong="H5414"\w* \w offer|strong="H2076"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w sacrifice|strong="H2077"\w* \w to|strong="H5414"\w* \w Dagon|strong="H1712"\w* \w their|strong="H5414"\w* \w god|strong="H5414"\w*, \w and|strong="H1419"\w* \w to|strong="H5414"\w* \w rejoice|strong="H8057"\w*; \w for|strong="H3027"\w* \w they|strong="H3027"\w* said, “\w Our|strong="H5414"\w* \w god|strong="H5414"\w* \w has|strong="H3027"\w* \w delivered|strong="H5414"\w* \w Samson|strong="H8123"\w* \w our|strong="H5414"\w* enemy \w into|strong="H3027"\w* \w our|strong="H5414"\w* \w hand|strong="H3027"\w*.” +\v 24 \w When|strong="H3588"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w* \w saw|strong="H7200"\w* \w him|strong="H5414"\w*, \w they|strong="H3588"\w* \w praised|strong="H1984"\w* \w their|strong="H5414"\w* \w god|strong="H5414"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* said, “\w Our|strong="H5414"\w* \w god|strong="H5414"\w* \w has|strong="H3588"\w* \w delivered|strong="H5414"\w* \w our|strong="H5414"\w* enemy \w and|strong="H3027"\w* \w the|strong="H7200"\w* \w destroyer|strong="H2717"\w* \w of|strong="H3027"\w* \w our|strong="H5414"\w* country, \w who|strong="H5971"\w* \w has|strong="H3588"\w* \w slain|strong="H2491"\w* \w many|strong="H7235"\w* \w of|strong="H3027"\w* \w us|strong="H5414"\w*, \w into|strong="H3027"\w* \w our|strong="H5414"\w* \w hand|strong="H3027"\w*.” +\p +\v 25 \w When|strong="H3588"\w* \w their|strong="H6440"\w* \w hearts|strong="H3820"\w* \w were|strong="H1961"\w* \w merry|strong="H2896"\w*, \w they|strong="H3588"\w* \w said|strong="H7121"\w*, “\w Call|strong="H7121"\w* \w for|strong="H3588"\w* \w Samson|strong="H8123"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w may|strong="H1961"\w* \w entertain|strong="H7832"\w* \w us|strong="H6440"\w*.” \w They|strong="H3588"\w* \w called|strong="H7121"\w* \w for|strong="H3588"\w* \w Samson|strong="H8123"\w* \w out|strong="H6440"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w prison|strong="H1004"\w*; \w and|strong="H1004"\w* \w he|strong="H3588"\w* performed \w before|strong="H6440"\w* \w them|strong="H6440"\w*. \w They|strong="H3588"\w* \w set|strong="H5975"\w* \w him|strong="H6440"\w* between \w the|strong="H6440"\w* \w pillars|strong="H5982"\w*; +\v 26 \w and|strong="H3027"\w* \w Samson|strong="H8123"\w* said \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w boy|strong="H5288"\w* \w who|strong="H5288"\w* \w held|strong="H2388"\w* \w him|strong="H5921"\w* \w by|strong="H3027"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w*, “\w Allow|strong="H3240"\w* \w me|strong="H5921"\w* \w to|strong="H5921"\w* \w feel|strong="H3559"\w* \w the|strong="H5921"\w* \w pillars|strong="H5982"\w* \w on|strong="H5921"\w* \w which|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w rests|strong="H3559"\w*, \w that|strong="H5288"\w* \w I|strong="H5921"\w* \w may|strong="H1004"\w* \w lean|strong="H8172"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*.” +\v 27 \w Now|strong="H5921"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w was|strong="H1004"\w* \w full|strong="H4390"\w* \w of|strong="H1004"\w* \w men|strong="H3605"\w* \w and|strong="H1004"\w* women; \w and|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w lords|strong="H5633"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w were|strong="H6430"\w* \w there|strong="H8033"\w*; \w and|strong="H1004"\w* \w there|strong="H8033"\w* \w were|strong="H6430"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w roof|strong="H1406"\w* \w about|strong="H5921"\w* \w three|strong="H7969"\w* thousand \w men|strong="H3605"\w* \w and|strong="H1004"\w* women, \w who|strong="H3605"\w* \w saw|strong="H7200"\w* \w while|strong="H5921"\w* \w Samson|strong="H8123"\w* performed. +\v 28 \w Samson|strong="H8123"\w* \w called|strong="H7121"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w said|strong="H7121"\w*, “\w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w remember|strong="H2142"\w* \w me|strong="H4994"\w*, \w please|strong="H4994"\w*, \w and|strong="H3068"\w* \w strengthen|strong="H2388"\w* \w me|strong="H4994"\w*, \w please|strong="H4994"\w*, only \w this|strong="H2088"\w* \w once|strong="H6471"\w*, \w God|strong="H3068"\w*, \w that|strong="H3068"\w* \w I|strong="H2088"\w* \w may|strong="H4994"\w* \w be|strong="H3068"\w* \w at|strong="H3068"\w* \w once|strong="H6471"\w* \w avenged|strong="H5358"\w* \w of|strong="H3068"\w* \w the|strong="H3069"\w* \w Philistines|strong="H6430"\w* \w for|strong="H7121"\w* \w my|strong="H3068"\w* \w two|strong="H8147"\w* \w eyes|strong="H5869"\w*.” +\v 29 \w Samson|strong="H8123"\w* \w took|strong="H8123"\w* \w hold|strong="H3943"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w middle|strong="H8432"\w* \w pillars|strong="H5982"\w* \w on|strong="H5921"\w* \w which|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w rested|strong="H5564"\w* \w and|strong="H1004"\w* \w leaned|strong="H5564"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, \w the|strong="H5921"\w* \w one|strong="H8147"\w* \w with|strong="H1004"\w* \w his|strong="H5921"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w and|strong="H1004"\w* \w the|strong="H5921"\w* \w other|strong="H8147"\w* \w with|strong="H1004"\w* \w his|strong="H5921"\w* \w left|strong="H8040"\w*. +\v 30 \w Samson|strong="H8123"\w* said, “\w Let|strong="H5186"\w* \w me|strong="H5315"\w* \w die|strong="H4191"\w* \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*!” \w He|strong="H3605"\w* \w bowed|strong="H5186"\w* \w himself|strong="H5315"\w* \w with|strong="H5973"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w might|strong="H3581"\w*; \w and|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w lords|strong="H5633"\w*, \w and|strong="H1004"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w in|strong="H5921"\w* \w it|strong="H5921"\w*. \w So|strong="H1961"\w* \w the|strong="H3605"\w* \w dead|strong="H4191"\w* \w that|strong="H5971"\w* \w he|strong="H3605"\w* \w killed|strong="H4191"\w* \w at|strong="H5921"\w* \w his|strong="H3605"\w* \w death|strong="H4194"\w* \w were|strong="H1961"\w* \w more|strong="H7227"\w* \w than|strong="H5921"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w he|strong="H3605"\w* \w killed|strong="H4191"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w life|strong="H5315"\w*. +\p +\v 31 \w Then|strong="H5375"\w* \w his|strong="H3605"\w* brothers \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w his|strong="H3605"\w* father \w came|strong="H5927"\w* \w down|strong="H3381"\w* \w and|strong="H3478"\w* \w took|strong="H5375"\w* \w him|strong="H3381"\w*, \w and|strong="H3478"\w* \w brought|strong="H5927"\w* \w him|strong="H3381"\w* \w up|strong="H5927"\w* \w and|strong="H3478"\w* \w buried|strong="H6912"\w* \w him|strong="H3381"\w* \w between|strong="H8199"\w* \w Zorah|strong="H6881"\w* \w and|strong="H3478"\w* Eshtaol \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w burial|strong="H6913"\w* site \w of|strong="H1004"\w* \w Manoah|strong="H4495"\w* \w his|strong="H3605"\w* father. \w He|strong="H1931"\w* \w judged|strong="H8199"\w* \w Israel|strong="H3478"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w*. +\c 17 +\p +\v 1 \w There|strong="H1961"\w* \w was|strong="H8034"\w* \w a|strong="H3068"\w* man \w of|strong="H2022"\w* \w the|strong="H1961"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H2022"\w* \w Ephraim|strong="H8034"\w*, \w whose|strong="H8034"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Micah|strong="H4319"\w*. +\v 2 \w He|strong="H3068"\w* said \w to|strong="H3068"\w* \w his|strong="H3068"\w* mother, “\w The|strong="H3947"\w* eleven \w hundred|strong="H3967"\w* pieces \w of|strong="H1121"\w* \w silver|strong="H3701"\w* \w that|strong="H3068"\w* \w were|strong="H1121"\w* \w taken|strong="H3947"\w* \w from|strong="H1121"\w* \w you|strong="H3947"\w*, \w about|strong="H3947"\w* \w which|strong="H3068"\w* \w you|strong="H3947"\w* uttered \w a|strong="H3068"\w* \w curse|strong="H1288"\w*, \w and|strong="H3967"\w* \w also|strong="H1571"\w* spoke \w it|strong="H3947"\w* \w in|strong="H3068"\w* \w my|strong="H3068"\w* ears—\w behold|strong="H2009"\w*, \w the|strong="H3947"\w* \w silver|strong="H3701"\w* \w is|strong="H3068"\w* \w with|strong="H3068"\w* \w me|strong="H3947"\w*. \w I|strong="H2009"\w* \w took|strong="H3947"\w* \w it|strong="H3947"\w*.” +\p \w His|strong="H3068"\w* mother said, “\w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w bless|strong="H1288"\w* \w my|strong="H3068"\w* \w son|strong="H1121"\w*!” +\p +\v 3 \w He|strong="H6213"\w* \w restored|strong="H7725"\w* \w the|strong="H6213"\w* eleven \w hundred|strong="H3967"\w* pieces \w of|strong="H1121"\w* \w silver|strong="H3701"\w* \w to|strong="H7725"\w* \w his|strong="H3068"\w* mother, \w then|strong="H6258"\w* \w his|strong="H3068"\w* mother said, “\w I|strong="H6258"\w* \w most|strong="H3068"\w* \w certainly|strong="H6213"\w* \w dedicate|strong="H6942"\w* \w the|strong="H6213"\w* \w silver|strong="H3701"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w* \w from|strong="H7725"\w* \w my|strong="H3068"\w* \w hand|strong="H3027"\w* \w for|strong="H6213"\w* \w my|strong="H3068"\w* \w son|strong="H1121"\w*, \w to|strong="H7725"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w carved|strong="H6213"\w* \w image|strong="H6459"\w* \w and|strong="H3967"\w* \w a|strong="H3068"\w* \w molten|strong="H4541"\w* \w image|strong="H6459"\w*. \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w I|strong="H6258"\w* \w will|strong="H3068"\w* \w restore|strong="H7725"\w* \w it|strong="H6213"\w* \w to|strong="H7725"\w* \w you|strong="H7725"\w*.” +\p +\v 4 \w When|strong="H1961"\w* \w he|strong="H6213"\w* \w restored|strong="H7725"\w* \w the|strong="H5414"\w* \w money|strong="H3701"\w* \w to|strong="H7725"\w* \w his|strong="H5414"\w* mother, \w his|strong="H5414"\w* mother \w took|strong="H3947"\w* \w two|strong="H3947"\w* \w hundred|strong="H3967"\w* pieces \w of|strong="H1004"\w* \w silver|strong="H3701"\w*, \w and|strong="H3967"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H7725"\w* \w a|strong="H3068"\w* \w silversmith|strong="H6884"\w*, \w who|strong="H6884"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w carved|strong="H6213"\w* \w image|strong="H6459"\w* \w and|strong="H3967"\w* \w a|strong="H3068"\w* \w molten|strong="H4541"\w* \w image|strong="H6459"\w* \w out|strong="H5414"\w* \w of|strong="H1004"\w* \w it|strong="H5414"\w*. \w It|strong="H5414"\w* \w was|strong="H1961"\w* \w in|strong="H6213"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Micah|strong="H4319"\w*. +\p +\v 5 \w The|strong="H6213"\w* \w man|strong="H1121"\w* \w Micah|strong="H4318"\w* \w had|strong="H1961"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* gods, \w and|strong="H1121"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w an|strong="H6213"\w* ephod, \w and|strong="H1121"\w* \w teraphim|strong="H8655"\w*,\f + \fr 17:5 \ft teraphim were household idols that may have been associated with inheritance rights to the household property.\f* \w and|strong="H1121"\w* \w consecrated|strong="H4390"\w* \w one|strong="H1121"\w* \w of|strong="H1121"\w* \w his|strong="H3027"\w* \w sons|strong="H1121"\w*, \w who|strong="H3548"\w* \w became|strong="H1961"\w* \w his|strong="H3027"\w* \w priest|strong="H3548"\w*. +\v 6 \w In|strong="H3478"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w* \w there|strong="H1992"\w* \w was|strong="H3478"\w* \w no|strong="H6213"\w* \w king|strong="H4428"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. Everyone \w did|strong="H6213"\w* \w that|strong="H3117"\w* \w which|strong="H1992"\w* \w was|strong="H3478"\w* \w right|strong="H3477"\w* \w in|strong="H3478"\w* \w his|strong="H3478"\w* \w own|strong="H5869"\w* \w eyes|strong="H5869"\w*. +\v 7 \w There|strong="H8033"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* \w out|strong="H8033"\w* \w of|strong="H4940"\w* \w Bethlehem|strong="H1035"\w* \w Judah|strong="H3063"\w*, \w of|strong="H4940"\w* \w the|strong="H1961"\w* \w family|strong="H4940"\w* \w of|strong="H4940"\w* \w Judah|strong="H3063"\w*, \w who|strong="H1931"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w Levite|strong="H3881"\w*; \w and|strong="H3063"\w* \w he|strong="H1931"\w* \w lived|strong="H1481"\w* \w there|strong="H8033"\w*. +\v 8 \w The|strong="H6213"\w* man \w departed|strong="H3212"\w* \w out|strong="H4672"\w* \w of|strong="H1004"\w* \w the|strong="H6213"\w* \w city|strong="H5892"\w*, \w out|strong="H4672"\w* \w of|strong="H1004"\w* \w Bethlehem|strong="H1035"\w* \w Judah|strong="H3063"\w*, \w to|strong="H5704"\w* \w live|strong="H1481"\w* \w where|strong="H1004"\w* \w he|strong="H5704"\w* could \w find|strong="H4672"\w* \w a|strong="H3068"\w* \w place|strong="H1004"\w*, \w and|strong="H3063"\w* \w he|strong="H5704"\w* \w came|strong="H3212"\w* \w to|strong="H5704"\w* \w the|strong="H6213"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H1004"\w* Ephraim, \w to|strong="H5704"\w* \w the|strong="H6213"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Micah|strong="H4318"\w*, \w as|strong="H5704"\w* \w he|strong="H5704"\w* traveled. +\v 9 \w Micah|strong="H4318"\w* said \w to|strong="H1980"\w* \w him|strong="H4672"\w*, “Where \w did|strong="H3063"\w* \w you|strong="H4672"\w* \w come|strong="H1980"\w* \w from|strong="H1980"\w*?” +\p \w He|strong="H1980"\w* said \w to|strong="H1980"\w* \w him|strong="H4672"\w*, “\w I|strong="H1980"\w* \w am|strong="H1980"\w* \w a|strong="H3068"\w* \w Levite|strong="H3881"\w* \w of|strong="H4672"\w* \w Bethlehem|strong="H1035"\w* \w Judah|strong="H3063"\w*, \w and|strong="H1980"\w* \w I|strong="H1980"\w* \w am|strong="H1980"\w* \w looking|strong="H4672"\w* \w for|strong="H3063"\w* \w a|strong="H3068"\w* place \w to|strong="H1980"\w* \w live|strong="H1481"\w*.” +\p +\v 10 \w Micah|strong="H4318"\w* said \w to|strong="H3212"\w* \w him|strong="H5414"\w*, “\w Dwell|strong="H3427"\w* \w with|strong="H3427"\w* \w me|strong="H5414"\w*, \w and|strong="H3701"\w* \w be|strong="H1961"\w* \w to|strong="H3212"\w* \w me|strong="H5414"\w* \w a|strong="H3068"\w* father \w and|strong="H3701"\w* \w a|strong="H3068"\w* \w priest|strong="H3548"\w*, \w and|strong="H3701"\w* \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w ten|strong="H6235"\w* pieces \w of|strong="H3117"\w* \w silver|strong="H3701"\w* per \w year|strong="H3117"\w*, \w a|strong="H3068"\w* \w suit|strong="H6187"\w* \w of|strong="H3117"\w* clothing, \w and|strong="H3701"\w* \w your|strong="H5414"\w* food.” \w So|strong="H1961"\w* \w the|strong="H5414"\w* \w Levite|strong="H3881"\w* \w went|strong="H3212"\w* \w in|strong="H3427"\w*. +\v 11 \w The|strong="H1961"\w* \w Levite|strong="H3881"\w* \w was|strong="H1961"\w* \w content|strong="H2974"\w* \w to|strong="H1961"\w* \w dwell|strong="H3427"\w* \w with|strong="H3427"\w* \w the|strong="H1961"\w* \w man|strong="H5288"\w*; \w and|strong="H1121"\w* \w the|strong="H1961"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* \w was|strong="H1961"\w* \w to|strong="H1961"\w* \w him|strong="H1961"\w* \w as|strong="H1961"\w* \w one|strong="H1121"\w* \w of|strong="H1121"\w* \w his|strong="H1961"\w* \w sons|strong="H1121"\w*. +\v 12 \w Micah|strong="H4318"\w* \w consecrated|strong="H4390"\w* \w the|strong="H4390"\w* \w Levite|strong="H3881"\w*, \w and|strong="H3027"\w* \w the|strong="H4390"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* \w became|strong="H1961"\w* \w his|strong="H3027"\w* \w priest|strong="H3548"\w*, \w and|strong="H3027"\w* \w was|strong="H1961"\w* \w in|strong="H1004"\w* \w the|strong="H4390"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Micah|strong="H4318"\w*. +\v 13 \w Then|strong="H1961"\w* \w Micah|strong="H4318"\w* said, “\w Now|strong="H6258"\w* \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w do|strong="H3190"\w* \w good|strong="H3190"\w* \w to|strong="H3068"\w* \w me|strong="H1961"\w*, \w since|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* \w Levite|strong="H3881"\w* \w as|strong="H1961"\w* \w my|strong="H3068"\w* \w priest|strong="H3548"\w*.” +\c 18 +\p +\v 1 \w In|strong="H3427"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w* \w there|strong="H3427"\w* \w was|strong="H3478"\w* \w no|strong="H3808"\w* \w king|strong="H4428"\w* \w in|strong="H3427"\w* \w Israel|strong="H3478"\w*. \w In|strong="H3427"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w* \w the|strong="H3588"\w* \w tribe|strong="H7626"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w Danites|strong="H1839"\w* \w sought|strong="H1245"\w* \w an|strong="H3588"\w* \w inheritance|strong="H5159"\w* \w to|strong="H5704"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w*; \w for|strong="H3588"\w* \w to|strong="H5704"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w*, \w their|strong="H1245"\w* \w inheritance|strong="H5159"\w* \w had|strong="H3478"\w* \w not|strong="H3808"\w* \w fallen|strong="H5307"\w* \w to|strong="H5704"\w* \w them|strong="H1992"\w* \w among|strong="H8432"\w* \w the|strong="H3588"\w* \w tribes|strong="H7626"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. +\v 2 \w The|strong="H5704"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w* \w sent|strong="H7971"\w* \w five|strong="H2568"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w their|strong="H7971"\w* \w family|strong="H4940"\w* \w from|strong="H1121"\w* \w their|strong="H7971"\w* \w whole|strong="H7098"\w* \w number|strong="H7098"\w*, \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w valor|strong="H2428"\w*, \w from|strong="H1121"\w* \w Zorah|strong="H6881"\w* \w and|strong="H1121"\w* \w from|strong="H1121"\w* Eshtaol, \w to|strong="H5704"\w* \w spy|strong="H7270"\w* \w out|strong="H7971"\w* \w the|strong="H5704"\w* \w land|strong="H4940"\w* \w and|strong="H1121"\w* \w to|strong="H5704"\w* \w search|strong="H2713"\w* \w it|strong="H8033"\w*. \w They|strong="H8033"\w* said \w to|strong="H5704"\w* \w them|strong="H7971"\w*, “\w Go|strong="H3212"\w*, \w explore|strong="H2713"\w* \w the|strong="H5704"\w* \w land|strong="H4940"\w*!” +\p \w They|strong="H8033"\w* \w came|strong="H3212"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H1121"\w* Ephraim, \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Micah|strong="H4318"\w*, \w and|strong="H1121"\w* \w lodged|strong="H3885"\w* \w there|strong="H8033"\w*. +\v 3 \w When|strong="H6213"\w* \w they|strong="H1992"\w* \w were|strong="H3881"\w* \w by|strong="H5973"\w* \w the|strong="H6213"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Micah|strong="H4318"\w*, \w they|strong="H1992"\w* \w knew|strong="H5234"\w* \w the|strong="H6213"\w* \w voice|strong="H6963"\w* \w of|strong="H1004"\w* \w the|strong="H6213"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* \w the|strong="H6213"\w* \w Levite|strong="H3881"\w*; \w so|strong="H6213"\w* \w they|strong="H1992"\w* \w went|strong="H3881"\w* \w over|strong="H6213"\w* \w there|strong="H8033"\w* \w and|strong="H1004"\w* said \w to|strong="H6213"\w* \w him|strong="H6213"\w*, “\w Who|strong="H4310"\w* \w brought|strong="H6213"\w* \w you|strong="H6213"\w* \w here|strong="H6311"\w*? \w What|strong="H4100"\w* \w do|strong="H6213"\w* \w you|strong="H6213"\w* \w do|strong="H6213"\w* \w in|strong="H6213"\w* \w this|strong="H2088"\w* \w place|strong="H1004"\w*? \w What|strong="H4100"\w* \w do|strong="H6213"\w* \w you|strong="H6213"\w* \w have|strong="H5288"\w* \w here|strong="H6311"\w*?” +\p +\v 4 \w He|strong="H6213"\w* said \w to|strong="H1961"\w* \w them|strong="H6213"\w*, “\w Thus|strong="H2088"\w* \w and|strong="H3548"\w* \w thus|strong="H2088"\w* \w has|strong="H1961"\w* \w Micah|strong="H4318"\w* \w dealt|strong="H6213"\w* \w with|strong="H6213"\w* \w me|strong="H6213"\w*, \w and|strong="H3548"\w* \w he|strong="H6213"\w* \w has|strong="H1961"\w* \w hired|strong="H7936"\w* \w me|strong="H6213"\w*, \w and|strong="H3548"\w* \w I|strong="H2088"\w* \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w his|strong="H1961"\w* \w priest|strong="H3548"\w*.” +\p +\v 5 \w They|strong="H5921"\w* said \w to|strong="H1980"\w* \w him|strong="H5921"\w*, “\w Please|strong="H4994"\w* \w ask|strong="H7592"\w* \w counsel|strong="H7592"\w* \w of|strong="H1870"\w* God, \w that|strong="H3045"\w* \w we|strong="H3068"\w* \w may|strong="H4994"\w* \w know|strong="H3045"\w* \w whether|strong="H3045"\w* \w our|strong="H5921"\w* \w way|strong="H1870"\w* which \w we|strong="H3068"\w* \w go|strong="H1980"\w* \w shall|strong="H1870"\w* \w be|strong="H4994"\w* \w prosperous|strong="H6743"\w*.” +\p +\v 6 \w The|strong="H3068"\w* \w priest|strong="H3548"\w* said \w to|strong="H3068"\w* \w them|strong="H3068"\w*, “\w Go|strong="H3212"\w* \w in|strong="H3068"\w* \w peace|strong="H7965"\w*. \w Your|strong="H3068"\w* \w way|strong="H1870"\w* \w in|strong="H3068"\w* \w which|strong="H3068"\w* \w you|strong="H1870"\w* \w go|strong="H3212"\w* \w is|strong="H3068"\w* \w before|strong="H5227"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 7 \w Then|strong="H7200"\w* \w the|strong="H7200"\w* \w five|strong="H2568"\w* \w men|strong="H5971"\w* \w departed|strong="H3212"\w* \w and|strong="H4941"\w* \w came|strong="H3212"\w* \w to|strong="H3212"\w* \w Laish|strong="H3919"\w* \w and|strong="H4941"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w there|strong="H3427"\w*, how \w they|strong="H1992"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* safety, \w in|strong="H3427"\w* \w the|strong="H7200"\w* \w way|strong="H3212"\w* \w of|strong="H1697"\w* \w the|strong="H7200"\w* \w Sidonians|strong="H6722"\w*, \w quiet|strong="H8252"\w* \w and|strong="H4941"\w* \w secure|strong="H3427"\w*; \w for|strong="H3427"\w* \w there|strong="H3427"\w* \w was|strong="H1697"\w* \w no|strong="H7200"\w* \w one|strong="H7200"\w* \w in|strong="H3427"\w* \w the|strong="H7200"\w* \w land|strong="H7130"\w* possessing \w authority|strong="H1697"\w*, \w that|strong="H5971"\w* \w might|strong="H5971"\w* put \w them|strong="H1992"\w* \w to|strong="H3212"\w* \w shame|strong="H3637"\w* \w in|strong="H3427"\w* \w anything|strong="H1697"\w*, \w and|strong="H4941"\w* \w they|strong="H1992"\w* \w were|strong="H5971"\w* \w far|strong="H7350"\w* \w from|strong="H3423"\w* \w the|strong="H7200"\w* \w Sidonians|strong="H6722"\w*, \w and|strong="H4941"\w* \w had|strong="H5971"\w* \w no|strong="H7200"\w* \w dealings|strong="H1697"\w* \w with|strong="H5973"\w* \w anyone|strong="H7200"\w* else. +\v 8 \w They|strong="H4100"\w* came \w to|strong="H4100"\w* \w their|strong="H4100"\w* brothers at \w Zorah|strong="H6881"\w* \w and|strong="H6881"\w* Eshtaol; \w and|strong="H6881"\w* \w their|strong="H4100"\w* brothers \w asked|strong="H4100"\w* them, “\w What|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H4100"\w* say?” +\p +\v 9 \w They|strong="H3588"\w* said, “\w Arise|strong="H6965"\w*, \w and|strong="H6965"\w* \w let|strong="H3212"\w*’s \w go|strong="H3212"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w*; \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H7200"\w* \w seen|strong="H7200"\w* \w the|strong="H5921"\w* land, \w and|strong="H6965"\w* \w behold|strong="H2009"\w*, \w it|strong="H5921"\w* \w is|strong="H2896"\w* \w very|strong="H3966"\w* \w good|strong="H2896"\w*. Do \w you|strong="H3588"\w* \w stand|strong="H6965"\w* \w still|strong="H2814"\w*? Don’t \w be|strong="H2896"\w* \w slothful|strong="H6101"\w* \w to|strong="H3212"\w* \w go|strong="H3212"\w* \w and|strong="H6965"\w* \w to|strong="H3212"\w* \w enter|strong="H5927"\w* \w in|strong="H5921"\w* \w to|strong="H3212"\w* \w possess|strong="H3423"\w* \w the|strong="H5921"\w* land. +\v 10 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w go|strong="H5971"\w*, \w you|strong="H3588"\w* \w will|strong="H5971"\w* \w come|strong="H5971"\w* \w to|strong="H5414"\w* \w an|strong="H5414"\w* unsuspecting \w people|strong="H5971"\w*, \w and|strong="H3027"\w* \w the|strong="H3605"\w* \w land|strong="H4725"\w* \w is|strong="H3027"\w* \w large|strong="H7342"\w*; \w for|strong="H3588"\w* \w God|strong="H5414"\w* \w has|strong="H3588"\w* \w given|strong="H5414"\w* \w it|strong="H5414"\w* \w into|strong="H3027"\w* \w your|strong="H3605"\w* \w hand|strong="H3027"\w*, \w a|strong="H3068"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w there|strong="H8033"\w* \w is|strong="H3027"\w* \w no|strong="H3605"\w* \w lack|strong="H4270"\w* \w of|strong="H3027"\w* \w anything|strong="H3605"\w* \w that|strong="H3588"\w* \w is|strong="H3027"\w* \w in|strong="H3027"\w* \w the|strong="H3605"\w* earth.” +\p +\v 11 \w The|strong="H8033"\w* \w family|strong="H4940"\w* \w of|strong="H3627"\w* \w the|strong="H8033"\w* \w Danites|strong="H1839"\w* \w set|strong="H5265"\w* \w out|strong="H5265"\w* \w from|strong="H5265"\w* \w Zorah|strong="H6881"\w* \w and|strong="H3967"\w* Eshtaol \w with|strong="H2296"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* men \w armed|strong="H4421"\w* \w with|strong="H2296"\w* \w weapons|strong="H3627"\w* \w of|strong="H3627"\w* \w war|strong="H4421"\w*. +\v 12 \w They|strong="H3117"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H3063"\w* \w encamped|strong="H2583"\w* \w in|strong="H5921"\w* \w Kiriath|strong="H7157"\w* Jearim \w in|strong="H5921"\w* \w Judah|strong="H3063"\w*. \w Therefore|strong="H3651"\w* \w they|strong="H3117"\w* \w call|strong="H7121"\w* \w that|strong="H3117"\w* \w place|strong="H4725"\w* Mahaneh Dan \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. \w Behold|strong="H2009"\w*, \w it|strong="H1931"\w* \w is|strong="H2088"\w* \w behind|strong="H5921"\w* \w Kiriath|strong="H7157"\w* Jearim. +\v 13 \w They|strong="H8033"\w* \w passed|strong="H5674"\w* \w from|strong="H5704"\w* \w there|strong="H8033"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H1004"\w* Ephraim, \w and|strong="H1004"\w* \w came|strong="H5674"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Micah|strong="H4318"\w*. +\p +\v 14 \w Then|strong="H6030"\w* \w the|strong="H3588"\w* \w five|strong="H2568"\w* \w men|strong="H1980"\w* \w who|strong="H3588"\w* \w went|strong="H1980"\w* \w to|strong="H1980"\w* \w spy|strong="H7270"\w* \w out|strong="H7270"\w* \w the|strong="H3588"\w* country \w of|strong="H1004"\w* \w Laish|strong="H3919"\w* \w answered|strong="H6030"\w* \w and|strong="H1980"\w* \w said|strong="H6030"\w* \w to|strong="H1980"\w* \w their|strong="H3588"\w* brothers, “\w Do|strong="H6213"\w* \w you|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w there|strong="H3426"\w* \w is|strong="H3426"\w* \w in|strong="H1980"\w* \w these|strong="H6213"\w* \w houses|strong="H1004"\w* \w an|strong="H6213"\w* ephod, \w and|strong="H1980"\w* \w teraphim|strong="H8655"\w*,\f + \fr 18:14 \ft teraphim were household idols that may have been associated with inheritance rights to the household property.\f* \w and|strong="H1980"\w* \w a|strong="H3068"\w* \w carved|strong="H6213"\w* \w image|strong="H6459"\w*, \w and|strong="H1980"\w* \w a|strong="H3068"\w* \w molten|strong="H4541"\w* \w image|strong="H6459"\w*? \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w consider|strong="H3045"\w* \w what|strong="H4100"\w* \w you|strong="H3588"\w* \w have|strong="H3426"\w* \w to|strong="H1980"\w* \w do|strong="H6213"\w*.” +\v 15 \w They|strong="H8033"\w* \w went|strong="H3881"\w* over \w there|strong="H8033"\w* \w and|strong="H1004"\w* came \w to|strong="H1004"\w* \w the|strong="H5493"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H5493"\w* \w young|strong="H5288"\w* \w Levite|strong="H3881"\w* \w man|strong="H5288"\w*, even \w to|strong="H1004"\w* \w the|strong="H5493"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Micah|strong="H4318"\w*, \w and|strong="H1004"\w* \w asked|strong="H7592"\w* \w him|strong="H7592"\w* \w how|strong="H7965"\w* \w he|strong="H8033"\w* \w was|strong="H1004"\w* doing. +\v 16 \w The|strong="H1121"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w men|strong="H1121"\w* \w armed|strong="H4421"\w* \w with|strong="H2296"\w* \w their|strong="H1835"\w* \w weapons|strong="H3627"\w* \w of|strong="H1121"\w* \w war|strong="H4421"\w*, \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w*, \w stood|strong="H5324"\w* \w by|strong="H3627"\w* \w the|strong="H1121"\w* \w entrance|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w gate|strong="H8179"\w*. +\v 17 \w The|strong="H3947"\w* \w five|strong="H2568"\w* \w men|strong="H1980"\w* \w who|strong="H3548"\w* \w went|strong="H1980"\w* \w to|strong="H1980"\w* \w spy|strong="H7270"\w* \w out|strong="H7270"\w* \w the|strong="H3947"\w* land \w went|strong="H1980"\w* \w up|strong="H5927"\w*, \w and|strong="H3967"\w* \w came|strong="H5927"\w* \w in|strong="H1980"\w* \w there|strong="H8033"\w*, \w and|strong="H3967"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w engraved|strong="H6456"\w* \w image|strong="H4541"\w*, \w the|strong="H3947"\w* ephod, \w the|strong="H3947"\w* \w teraphim|strong="H8655"\w*, \w and|strong="H3967"\w* \w the|strong="H3947"\w* \w molten|strong="H4541"\w* \w image|strong="H4541"\w*; \w and|strong="H3967"\w* \w the|strong="H3947"\w* \w priest|strong="H3548"\w* \w stood|strong="H5324"\w* \w by|strong="H1980"\w* \w the|strong="H3947"\w* \w entrance|strong="H6607"\w* \w of|strong="H3627"\w* \w the|strong="H3947"\w* \w gate|strong="H8179"\w* \w with|strong="H1980"\w* \w the|strong="H3947"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w men|strong="H1980"\w* \w armed|strong="H4421"\w* \w with|strong="H1980"\w* \w weapons|strong="H3627"\w* \w of|strong="H3627"\w* \w war|strong="H4421"\w*. +\p +\v 18 \w When|strong="H6213"\w* \w these|strong="H6213"\w* \w went|strong="H3548"\w* \w into|strong="H6213"\w* \w Micah|strong="H4318"\w*’s \w house|strong="H1004"\w*, \w and|strong="H1004"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* engraved \w image|strong="H6459"\w*, \w the|strong="H3947"\w* ephod, \w the|strong="H3947"\w* \w teraphim|strong="H8655"\w*, \w and|strong="H1004"\w* \w the|strong="H3947"\w* \w molten|strong="H4541"\w* \w image|strong="H6459"\w*, \w the|strong="H3947"\w* \w priest|strong="H3548"\w* said \w to|strong="H6213"\w* \w them|strong="H6213"\w*, “\w What|strong="H4100"\w* \w are|strong="H4100"\w* \w you|strong="H3947"\w* \w doing|strong="H6213"\w*?” +\p +\v 19 \w They|strong="H5921"\w* \w said|strong="H2790"\w* \w to|strong="H3478"\w* \w him|strong="H5921"\w*, “\w Hold|strong="H1004"\w* \w your|strong="H5921"\w* \w peace|strong="H2790"\w*, \w put|strong="H7760"\w* \w your|strong="H5921"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w mouth|strong="H6310"\w*, \w and|strong="H3478"\w* \w go|strong="H3212"\w* \w with|strong="H5973"\w* \w us|strong="H5921"\w*. \w Be|strong="H1961"\w* \w a|strong="H3068"\w* father \w and|strong="H3478"\w* \w a|strong="H3068"\w* \w priest|strong="H3548"\w* \w to|strong="H3478"\w* \w us|strong="H5921"\w*. \w Is|strong="H3027"\w* \w it|strong="H7760"\w* \w better|strong="H2896"\w* \w for|strong="H5921"\w* \w you|strong="H5921"\w* \w to|strong="H3478"\w* \w be|strong="H1961"\w* \w priest|strong="H3548"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w one|strong="H2896"\w* \w man|strong="H2896"\w*, \w or|strong="H2896"\w* \w to|strong="H3478"\w* \w be|strong="H1961"\w* \w priest|strong="H3548"\w* \w to|strong="H3478"\w* \w a|strong="H3068"\w* \w tribe|strong="H7626"\w* \w and|strong="H3478"\w* \w a|strong="H3068"\w* \w family|strong="H4940"\w* \w in|strong="H5921"\w* \w Israel|strong="H3478"\w*?” +\p +\v 20 \w The|strong="H3947"\w* \w priest|strong="H3548"\w*’s \w heart|strong="H3820"\w* \w was|strong="H3820"\w* \w glad|strong="H3190"\w*, \w and|strong="H3548"\w* \w he|strong="H5971"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* ephod, \w the|strong="H3947"\w* \w teraphim|strong="H8655"\w*, \w and|strong="H3548"\w* \w the|strong="H3947"\w* engraved \w image|strong="H6459"\w*, \w and|strong="H3548"\w* \w went|strong="H5971"\w* \w with|strong="H5971"\w* \w the|strong="H3947"\w* \w people|strong="H5971"\w*. +\v 21 \w So|strong="H7760"\w* \w they|strong="H6440"\w* \w turned|strong="H6437"\w* \w and|strong="H3212"\w* \w departed|strong="H3212"\w*, \w and|strong="H3212"\w* \w put|strong="H7760"\w* \w the|strong="H6440"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*, \w the|strong="H6440"\w* \w livestock|strong="H4735"\w*, \w and|strong="H3212"\w* \w the|strong="H6440"\w* goods \w before|strong="H6440"\w* \w them|strong="H6440"\w*. +\v 22 \w When|strong="H1121"\w* \w they|strong="H1992"\w* \w were|strong="H1121"\w* \w a|strong="H3068"\w* \w good|strong="H7368"\w* \w way|strong="H7368"\w* \w from|strong="H1121"\w* \w the|strong="H5973"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Micah|strong="H4318"\w*, \w the|strong="H5973"\w* \w men|strong="H1121"\w* \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w in|strong="H1004"\w* \w the|strong="H5973"\w* \w houses|strong="H1004"\w* \w near|strong="H5973"\w* \w Micah|strong="H4318"\w*’s \w house|strong="H1004"\w* \w gathered|strong="H2199"\w* \w together|strong="H2199"\w* \w and|strong="H1121"\w* \w overtook|strong="H1692"\w* \w the|strong="H5973"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w*. +\v 23 \w As|strong="H3588"\w* \w they|strong="H3588"\w* \w called|strong="H7121"\w* \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w*, \w they|strong="H3588"\w* \w turned|strong="H5437"\w* \w their|strong="H6440"\w* \w faces|strong="H6440"\w*, \w and|strong="H1121"\w* \w said|strong="H7121"\w* \w to|strong="H6440"\w* \w Micah|strong="H4318"\w*, “\w What|strong="H4100"\w* ails \w you|strong="H3588"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w come|strong="H5437"\w* \w with|strong="H6440"\w* such \w a|strong="H3068"\w* \w company|strong="H2199"\w*?” +\p +\v 24 \w He|strong="H6213"\w* said, “\w You|strong="H3947"\w* \w have|strong="H3548"\w* \w taken|strong="H3947"\w* \w away|strong="H3947"\w* \w my|strong="H3947"\w* gods \w which|strong="H4100"\w* \w I|strong="H2088"\w* \w made|strong="H6213"\w*, \w and|strong="H3212"\w* \w the|strong="H3947"\w* \w priest|strong="H3548"\w*, \w and|strong="H3212"\w* \w have|strong="H3548"\w* \w gone|strong="H3212"\w* \w away|strong="H3947"\w*! \w What|strong="H4100"\w* \w more|strong="H5750"\w* \w do|strong="H6213"\w* \w I|strong="H2088"\w* \w have|strong="H3548"\w*? \w How|strong="H4100"\w* \w can|strong="H4100"\w* \w you|strong="H3947"\w* ask \w me|strong="H6213"\w*, ‘\w What|strong="H4100"\w* ails \w you|strong="H3947"\w*?’” +\p +\v 25 \w The|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w* \w said|strong="H8085"\w* \w to|strong="H8085"\w* \w him|strong="H5973"\w*, “Don’t \w let|strong="H5315"\w* \w your|strong="H8085"\w* \w voice|strong="H6963"\w* \w be|strong="H1121"\w* \w heard|strong="H8085"\w* \w among|strong="H5973"\w* \w us|strong="H6435"\w*, \w lest|strong="H6435"\w* \w angry|strong="H4751"\w* \w fellows|strong="H1121"\w* \w fall|strong="H6293"\w* \w on|strong="H1004"\w* \w you|strong="H5973"\w*, \w and|strong="H1121"\w* \w you|strong="H5973"\w* lose \w your|strong="H8085"\w* \w life|strong="H5315"\w*, \w with|strong="H5973"\w* \w the|strong="H8085"\w* \w lives|strong="H5315"\w* \w of|strong="H1121"\w* \w your|strong="H8085"\w* \w household|strong="H1004"\w*.” +\p +\v 26 \w The|strong="H7200"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w* \w went|strong="H3212"\w* \w their|strong="H1992"\w* \w way|strong="H1870"\w*; \w and|strong="H1121"\w* \w when|strong="H3588"\w* \w Micah|strong="H4318"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w they|strong="H1992"\w* \w were|strong="H1121"\w* \w too|strong="H4480"\w* \w strong|strong="H2389"\w* \w for|strong="H3588"\w* \w him|strong="H7725"\w*, \w he|strong="H3588"\w* \w turned|strong="H6437"\w* \w and|strong="H1121"\w* \w went|strong="H3212"\w* \w back|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w house|strong="H1004"\w*. +\v 27 \w They|strong="H1992"\w* \w took|strong="H3947"\w* \w that|strong="H5971"\w* \w which|strong="H1992"\w* \w Micah|strong="H4318"\w* \w had|strong="H1961"\w* \w made|strong="H6213"\w*, \w and|strong="H3548"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w* \w whom|strong="H1992"\w* \w he|strong="H6213"\w* \w had|strong="H1961"\w*, \w and|strong="H3548"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w Laish|strong="H3919"\w*, \w to|strong="H1961"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w quiet|strong="H8252"\w* \w and|strong="H3548"\w* unsuspecting, \w and|strong="H3548"\w* \w struck|strong="H5221"\w* \w them|strong="H1992"\w* \w with|strong="H8313"\w* \w the|strong="H5921"\w* \w edge|strong="H6310"\w* \w of|strong="H5892"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w*; \w then|strong="H1961"\w* \w they|strong="H1992"\w* \w burned|strong="H8313"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w with|strong="H8313"\w* fire. +\v 28 \w There|strong="H3427"\w* \w was|strong="H1931"\w* no \w deliverer|strong="H5337"\w*, \w because|strong="H3588"\w* \w it|strong="H1931"\w* \w was|strong="H1931"\w* \w far|strong="H7350"\w* \w from|strong="H7350"\w* \w Sidon|strong="H6721"\w*, \w and|strong="H5892"\w* \w they|strong="H3588"\w* \w had|strong="H3588"\w* no \w dealings|strong="H1697"\w* \w with|strong="H5973"\w* \w anyone|strong="H3588"\w* \w else|strong="H3588"\w*; \w and|strong="H5892"\w* \w it|strong="H1931"\w* \w was|strong="H1931"\w* \w in|strong="H3427"\w* \w the|strong="H3588"\w* \w valley|strong="H6010"\w* \w that|strong="H3588"\w* \w lies|strong="H1697"\w* \w by|strong="H5892"\w* Beth Rehob. \w They|strong="H3588"\w* \w built|strong="H1129"\w* \w the|strong="H3588"\w* \w city|strong="H5892"\w* \w and|strong="H5892"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w it|strong="H1931"\w*. +\v 29 \w They|strong="H3478"\w* \w called|strong="H7121"\w* \w the|strong="H3205"\w* \w name|strong="H8034"\w* \w of|strong="H5892"\w* \w the|strong="H3205"\w* \w city|strong="H5892"\w* \w Dan|strong="H1835"\w*, \w after|strong="H7121"\w* \w the|strong="H3205"\w* \w name|strong="H8034"\w* \w of|strong="H5892"\w* \w Dan|strong="H1835"\w* \w their|strong="H7121"\w* \w father|strong="H3205"\w*, \w who|strong="H3478"\w* \w was|strong="H8034"\w* \w born|strong="H3205"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w*; however \w the|strong="H3205"\w* \w name|strong="H8034"\w* \w of|strong="H5892"\w* \w the|strong="H3205"\w* \w city|strong="H5892"\w* used \w to|strong="H3478"\w* \w be|strong="H8034"\w* \w Laish|strong="H3919"\w*. +\v 30 \w The|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Dan|strong="H1835"\w* \w set|strong="H6965"\w* \w up|strong="H6965"\w* \w for|strong="H5704"\w* themselves \w the|strong="H3117"\w* engraved \w image|strong="H6459"\w*; \w and|strong="H1121"\w* \w Jonathan|strong="H3129"\w*, \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Gershom|strong="H1647"\w*, \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Moses, \w and|strong="H1121"\w* \w his|strong="H1540"\w* \w sons|strong="H1121"\w* \w were|strong="H1961"\w* \w priests|strong="H3548"\w* \w to|strong="H5704"\w* \w the|strong="H3117"\w* \w tribe|strong="H7626"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* \w Danites|strong="H1839"\w* \w until|strong="H5704"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* \w captivity|strong="H1540"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* land. +\v 31 \w So|strong="H6213"\w* \w they|strong="H3117"\w* \w set|strong="H7760"\w* \w up|strong="H7760"\w* \w for|strong="H6213"\w* \w themselves|strong="H6213"\w* \w Micah|strong="H4318"\w*’s engraved \w image|strong="H6459"\w* \w which|strong="H1004"\w* \w he|strong="H3117"\w* \w made|strong="H6213"\w*, \w and|strong="H3117"\w* \w it|strong="H7760"\w* \w remained|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w time|strong="H3117"\w* \w that|strong="H3605"\w* God’s \w house|strong="H1004"\w* \w was|strong="H1961"\w* \w in|strong="H6213"\w* \w Shiloh|strong="H7887"\w*. +\c 19 +\p +\v 1 \w In|strong="H3478"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*, \w when|strong="H1961"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3947"\w* \w king|strong="H4428"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* certain \w Levite|strong="H3881"\w* \w living|strong="H1481"\w* \w on|strong="H3117"\w* \w the|strong="H3947"\w* farther \w side|strong="H3411"\w* \w of|strong="H4428"\w* \w the|strong="H3947"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H4428"\w* Ephraim, \w who|strong="H3478"\w* \w took|strong="H3947"\w* \w for|strong="H3117"\w* \w himself|strong="H3117"\w* \w a|strong="H3068"\w* \w concubine|strong="H6370"\w* \w out|strong="H3947"\w* \w of|strong="H4428"\w* \w Bethlehem|strong="H1035"\w* \w Judah|strong="H3063"\w*. +\v 2 \w His|strong="H5921"\w* \w concubine|strong="H6370"\w* \w played|strong="H2181"\w* \w the|strong="H5921"\w* \w prostitute|strong="H2181"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H3063"\w* \w went|strong="H3212"\w* \w away|strong="H3212"\w* \w from|strong="H5921"\w* \w him|strong="H5921"\w* \w to|strong="H3212"\w* \w her|strong="H5921"\w* father’s \w house|strong="H1004"\w* \w to|strong="H3212"\w* \w Bethlehem|strong="H1035"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w was|strong="H1961"\w* \w there|strong="H8033"\w* \w for|strong="H5921"\w* four \w months|strong="H2320"\w*. +\v 3 \w Her|strong="H5921"\w* husband \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w after|strong="H5921"\w* \w her|strong="H5921"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w kindly|strong="H3820"\w* \w to|strong="H1696"\w* \w her|strong="H5921"\w*, \w to|strong="H1696"\w* \w bring|strong="H7725"\w* \w her|strong="H5921"\w* \w again|strong="H7725"\w*, having \w his|strong="H7725"\w* \w servant|strong="H5288"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w* \w and|strong="H6965"\w* \w a|strong="H3068"\w* \w couple|strong="H6776"\w* \w of|strong="H1004"\w* \w donkeys|strong="H2543"\w*. \w She|strong="H3820"\w* \w brought|strong="H7725"\w* \w him|strong="H5921"\w* \w into|strong="H7725"\w* \w her|strong="H5921"\w* father’s \w house|strong="H1004"\w*; \w and|strong="H6965"\w* \w when|strong="H7200"\w* \w the|strong="H5921"\w* father \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w young|strong="H5288"\w* \w lady|strong="H5291"\w* \w saw|strong="H7200"\w* \w him|strong="H5921"\w*, \w he|strong="H1004"\w* \w rejoiced|strong="H8055"\w* \w to|strong="H1696"\w* \w meet|strong="H7125"\w* \w him|strong="H5921"\w*. +\v 4 \w His|strong="H2388"\w* \w father-in-law|strong="H2859"\w*, \w the|strong="H3117"\w* \w young|strong="H5291"\w* \w lady|strong="H5291"\w*’s father, kept \w him|strong="H2388"\w* \w there|strong="H8033"\w*; \w and|strong="H3117"\w* \w he|strong="H3117"\w* \w stayed|strong="H3427"\w* \w with|strong="H3427"\w* \w him|strong="H2388"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*. \w So|strong="H3427"\w* \w they|strong="H3117"\w* ate \w and|strong="H3117"\w* \w drank|strong="H8354"\w*, \w and|strong="H3117"\w* \w stayed|strong="H3427"\w* \w there|strong="H8033"\w*. +\p +\v 5 \w On|strong="H3117"\w* \w the|strong="H3117"\w* \w fourth|strong="H7243"\w* \w day|strong="H3117"\w*, \w they|strong="H3117"\w* \w got|strong="H6965"\w* \w up|strong="H6965"\w* \w early|strong="H7925"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w morning|strong="H1242"\w*, \w and|strong="H6965"\w* \w he|strong="H3117"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w to|strong="H3212"\w* \w depart|strong="H3212"\w*. \w The|strong="H3117"\w* \w young|strong="H5291"\w* \w lady|strong="H5291"\w*’s father said \w to|strong="H3212"\w* \w his|strong="H1961"\w* \w son-in-law|strong="H2860"\w*, “\w Strengthen|strong="H5582"\w* \w your|strong="H1961"\w* \w heart|strong="H3820"\w* \w with|strong="H3117"\w* \w a|strong="H3068"\w* \w morsel|strong="H6595"\w* \w of|strong="H3117"\w* \w bread|strong="H3899"\w*, \w and|strong="H6965"\w* afterward \w you|strong="H3117"\w* \w shall|strong="H3117"\w* \w go|strong="H3212"\w* \w your|strong="H1961"\w* \w way|strong="H3212"\w*.” +\v 6 \w So|strong="H3427"\w* \w they|strong="H3162"\w* \w sat|strong="H3427"\w* \w down|strong="H3427"\w*, ate, \w and|strong="H8147"\w* \w drank|strong="H8354"\w*, \w both|strong="H8147"\w* \w of|strong="H3427"\w* \w them|strong="H8147"\w* \w together|strong="H3162"\w*. Then \w the|strong="H3885"\w* \w young|strong="H5291"\w* \w lady|strong="H5291"\w*’s father said \w to|strong="H3820"\w* \w the|strong="H3885"\w* \w man|strong="H3820"\w*, “\w Please|strong="H4994"\w* \w be|strong="H3820"\w* \w pleased|strong="H3190"\w* \w to|strong="H3820"\w* \w stay|strong="H3427"\w* \w all|strong="H3162"\w* \w night|strong="H3885"\w*, \w and|strong="H8147"\w* \w let|strong="H4994"\w* \w your|strong="H3190"\w* \w heart|strong="H3820"\w* \w be|strong="H3820"\w* \w merry|strong="H3190"\w*.” +\v 7 \w The|strong="H7725"\w* man \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w to|strong="H7725"\w* \w depart|strong="H3212"\w*; \w but|strong="H7725"\w* \w his|strong="H7725"\w* \w father-in-law|strong="H2859"\w* \w urged|strong="H6484"\w* \w him|strong="H7725"\w*, \w and|strong="H6965"\w* \w he|strong="H8033"\w* \w stayed|strong="H3885"\w* \w there|strong="H8033"\w* \w again|strong="H7725"\w*. +\v 8 \w He|strong="H3117"\w* \w arose|strong="H7925"\w* \w early|strong="H7925"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w morning|strong="H1242"\w* \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w fifth|strong="H2549"\w* \w day|strong="H3117"\w* \w to|strong="H5704"\w* \w depart|strong="H3212"\w*; \w and|strong="H3117"\w* \w the|strong="H3117"\w* \w young|strong="H5291"\w* \w lady|strong="H5291"\w*’s father said, “\w Please|strong="H4994"\w* \w strengthen|strong="H5582"\w* \w your|strong="H5186"\w* \w heart|strong="H3824"\w* \w and|strong="H3117"\w* \w stay|strong="H4102"\w* \w until|strong="H5704"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* declines;” \w and|strong="H3117"\w* \w they|strong="H3117"\w* \w both|strong="H8147"\w* ate. +\p +\v 9 \w When|strong="H3117"\w* \w the|strong="H3117"\w* \w man|strong="H5288"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w to|strong="H1980"\w* \w depart|strong="H3212"\w*, \w he|strong="H1931"\w*, \w and|strong="H1980"\w* \w his|strong="H6965"\w* \w concubine|strong="H6370"\w*, \w and|strong="H1980"\w* \w his|strong="H6965"\w* \w servant|strong="H5288"\w*, \w his|strong="H6965"\w* \w father-in-law|strong="H2859"\w*, \w the|strong="H3117"\w* \w young|strong="H5288"\w* \w lady|strong="H5291"\w*’s father, said \w to|strong="H1980"\w* \w him|strong="H1931"\w*, “\w Behold|strong="H2009"\w*, \w now|strong="H4994"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* draws \w toward|strong="H1870"\w* \w evening|strong="H6150"\w*, \w please|strong="H4994"\w* \w stay|strong="H7503"\w* \w all|strong="H3885"\w* \w night|strong="H3885"\w*. \w Behold|strong="H2009"\w*, \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w is|strong="H1931"\w* ending. \w Stay|strong="H7503"\w* \w here|strong="H6311"\w*, \w that|strong="H3117"\w* \w your|strong="H3190"\w* \w heart|strong="H3824"\w* \w may|strong="H4994"\w* \w be|strong="H3117"\w* \w merry|strong="H3190"\w*; \w and|strong="H1980"\w* \w tomorrow|strong="H4279"\w* \w go|strong="H1980"\w* \w on|strong="H3117"\w* \w your|strong="H3190"\w* \w way|strong="H1870"\w* \w early|strong="H7925"\w*, \w that|strong="H3117"\w* \w you|strong="H3117"\w* \w may|strong="H4994"\w* \w go|strong="H1980"\w* \w home|strong="H3212"\w*.” +\v 10 \w But|strong="H3808"\w* \w the|strong="H5704"\w* man wouldn’t \w stay|strong="H3885"\w* \w that|strong="H1931"\w* \w night|strong="H3885"\w*, \w but|strong="H3808"\w* \w he|strong="H1931"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w near|strong="H5973"\w* \w Jebus|strong="H2982"\w* (\w also|strong="H3389"\w* called \w Jerusalem|strong="H3389"\w*). \w With|strong="H5973"\w* \w him|strong="H5973"\w* \w were|strong="H3389"\w* \w a|strong="H3068"\w* \w couple|strong="H6776"\w* \w of|strong="H6776"\w* \w saddled|strong="H2280"\w* \w donkeys|strong="H2543"\w*. \w His|strong="H6965"\w* \w concubine|strong="H6370"\w* \w also|strong="H3389"\w* \w was|strong="H1931"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*. +\p +\v 11 \w When|strong="H3117"\w* \w they|strong="H1992"\w* \w were|strong="H3117"\w* \w by|strong="H3117"\w* \w Jebus|strong="H2982"\w*, \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w was|strong="H5892"\w* \w far|strong="H3966"\w* \w spent|strong="H3885"\w*; \w and|strong="H3117"\w* \w the|strong="H3117"\w* \w servant|strong="H5288"\w* said \w to|strong="H3212"\w* \w his|strong="H5493"\w* master, “\w Please|strong="H4994"\w* \w come|strong="H3212"\w* \w and|strong="H3117"\w* \w let|strong="H4994"\w*’s enter \w into|strong="H3212"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w Jebusites|strong="H2983"\w*, \w and|strong="H3117"\w* \w stay|strong="H3885"\w* \w in|strong="H3117"\w* \w it|strong="H2063"\w*.” +\p +\v 12 \w His|strong="H5493"\w* master said \w to|strong="H5704"\w* \w him|strong="H5704"\w*, “\w We|strong="H5704"\w* won’t \w enter|strong="H5674"\w* \w into|strong="H5892"\w* \w the|strong="H5704"\w* \w city|strong="H5892"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w foreigner|strong="H5237"\w* \w that|strong="H3478"\w* \w is|strong="H3478"\w* \w not|strong="H3808"\w* \w of|strong="H1121"\w* \w the|strong="H5704"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w but|strong="H3808"\w* \w we|strong="H3068"\w* \w will|strong="H3478"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w to|strong="H5704"\w* \w Gibeah|strong="H1390"\w*.” +\v 13 \w He|strong="H7126"\w* said \w to|strong="H3212"\w* \w his|strong="H7126"\w* \w servant|strong="H5288"\w*, “\w Come|strong="H3212"\w* \w and|strong="H3212"\w* \w let|strong="H3212"\w*’s \w draw|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H3212"\w* one \w of|strong="H4725"\w* these \w places|strong="H4725"\w*; \w and|strong="H3212"\w* \w we|strong="H3068"\w* \w will|strong="H5288"\w* \w lodge|strong="H3885"\w* \w in|strong="H3212"\w* \w Gibeah|strong="H1390"\w*, or \w in|strong="H3212"\w* \w Ramah|strong="H7414"\w*.” +\v 14 \w So|strong="H5674"\w* \w they|strong="H5674"\w* \w passed|strong="H5674"\w* \w on|strong="H5674"\w* \w and|strong="H3212"\w* \w went|strong="H3212"\w* \w their|strong="H1144"\w* \w way|strong="H3212"\w*; \w and|strong="H3212"\w* \w the|strong="H5674"\w* \w sun|strong="H8121"\w* \w went|strong="H3212"\w* \w down|strong="H3212"\w* \w on|strong="H5674"\w* \w them|strong="H5674"\w* near \w Gibeah|strong="H1390"\w*, which belongs \w to|strong="H3212"\w* \w Benjamin|strong="H1144"\w*. +\v 15 \w They|strong="H8033"\w* \w went|strong="H5892"\w* \w over|strong="H3427"\w* \w there|strong="H8033"\w*, \w to|strong="H1004"\w* \w go|strong="H5493"\w* \w in|strong="H3427"\w* \w to|strong="H1004"\w* \w stay|strong="H3427"\w* \w in|strong="H3427"\w* \w Gibeah|strong="H1390"\w*. \w He|strong="H8033"\w* \w went|strong="H5892"\w* \w in|strong="H3427"\w*, \w and|strong="H1004"\w* \w sat|strong="H3427"\w* \w down|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5493"\w* \w street|strong="H7339"\w* \w of|strong="H1004"\w* \w the|strong="H5493"\w* \w city|strong="H5892"\w*; \w for|strong="H3427"\w* \w there|strong="H8033"\w* \w was|strong="H5892"\w* no \w one|strong="H5892"\w* \w who|strong="H3427"\w* \w took|strong="H5493"\w* \w them|strong="H3427"\w* \w into|strong="H5892"\w* \w his|strong="H5493"\w* \w house|strong="H1004"\w* \w to|strong="H1004"\w* \w stay|strong="H3427"\w*. +\p +\v 16 \w Behold|strong="H2009"\w*, \w an|strong="H4480"\w* \w old|strong="H2205"\w* \w man|strong="H2205"\w* came \w from|strong="H4480"\w* \w his|strong="H4480"\w* \w work|strong="H4639"\w* \w out|strong="H4480"\w* \w of|strong="H2022"\w* \w the|strong="H4480"\w* \w field|strong="H7704"\w* \w at|strong="H2022"\w* \w evening|strong="H6153"\w*. \w Now|strong="H2009"\w* \w the|strong="H4480"\w* \w man|strong="H2205"\w* \w was|strong="H1931"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H2022"\w* Ephraim, \w and|strong="H2022"\w* \w he|strong="H1931"\w* \w lived|strong="H1481"\w* \w in|strong="H4725"\w* \w Gibeah|strong="H1390"\w*; \w but|strong="H2009"\w* \w the|strong="H4480"\w* \w men|strong="H2205"\w* \w of|strong="H2022"\w* \w the|strong="H4480"\w* \w place|strong="H4725"\w* \w were|strong="H2022"\w* \w Benjamites|strong="H1145"\w*. +\v 17 \w He|strong="H3212"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w eyes|strong="H5869"\w*, \w and|strong="H3212"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* wayfaring \w man|strong="H2205"\w* \w in|strong="H3212"\w* \w the|strong="H7200"\w* \w street|strong="H7339"\w* \w of|strong="H5892"\w* \w the|strong="H7200"\w* \w city|strong="H5892"\w*; \w and|strong="H3212"\w* \w the|strong="H7200"\w* \w old|strong="H2205"\w* \w man|strong="H2205"\w* said, “Where \w are|strong="H5869"\w* \w you|strong="H7200"\w* \w going|strong="H3212"\w*? Where \w did|strong="H5869"\w* \w you|strong="H7200"\w* \w come|strong="H3212"\w* \w from|strong="H5869"\w*?” +\p +\v 18 \w He|strong="H5704"\w* said \w to|strong="H5704"\w* \w him|strong="H1980"\w*, “\w We|strong="H5704"\w* \w are|strong="H3068"\w* \w passing|strong="H5674"\w* \w from|strong="H1980"\w* \w Bethlehem|strong="H1035"\w* \w Judah|strong="H3063"\w* \w to|strong="H5704"\w* \w the|strong="H3068"\w* farther \w side|strong="H3411"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H1004"\w* Ephraim. \w I|strong="H5704"\w* \w am|strong="H3068"\w* \w from|strong="H1980"\w* \w there|strong="H8033"\w*, \w and|strong="H1980"\w* \w I|strong="H5704"\w* \w went|strong="H1980"\w* \w to|strong="H5704"\w* \w Bethlehem|strong="H1035"\w* \w Judah|strong="H3063"\w*. \w I|strong="H5704"\w* \w am|strong="H3068"\w* \w going|strong="H1980"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*; \w and|strong="H1980"\w* \w there|strong="H8033"\w* \w is|strong="H3068"\w* \w no|strong="H1980"\w* \w one|strong="H3068"\w* \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w taken|strong="H5674"\w* \w me|strong="H5674"\w* \w into|strong="H1980"\w* \w his|strong="H3068"\w* \w house|strong="H1004"\w*. +\v 19 \w Yet|strong="H1571"\w* \w there|strong="H3426"\w* \w is|strong="H3426"\w* \w both|strong="H1571"\w* \w straw|strong="H8401"\w* \w and|strong="H3899"\w* \w feed|strong="H4554"\w* \w for|strong="H5650"\w* \w our|strong="H3605"\w* \w donkeys|strong="H2543"\w*; \w and|strong="H3899"\w* \w there|strong="H3426"\w* \w is|strong="H3426"\w* \w bread|strong="H3899"\w* \w and|strong="H3899"\w* \w wine|strong="H3196"\w* \w also|strong="H1571"\w* \w for|strong="H5650"\w* \w me|strong="H5973"\w*, \w and|strong="H3899"\w* \w for|strong="H5650"\w* \w your|strong="H3605"\w* \w servant|strong="H5650"\w*, \w and|strong="H3899"\w* \w for|strong="H5650"\w* \w the|strong="H3605"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* \w who|strong="H3605"\w* \w is|strong="H3426"\w* \w with|strong="H5973"\w* \w your|strong="H3605"\w* \w servants|strong="H5650"\w*. \w There|strong="H3426"\w* \w is|strong="H3426"\w* \w no|strong="H3605"\w* \w lack|strong="H4270"\w* \w of|strong="H1697"\w* \w anything|strong="H3605"\w*.” +\p +\v 20 \w The|strong="H3605"\w* \w old|strong="H2205"\w* \w man|strong="H2205"\w* said, “\w Peace|strong="H7965"\w* \w be|strong="H7965"\w* \w to|strong="H5921"\w* \w you|strong="H3605"\w*! \w Just|strong="H3605"\w* let \w me|strong="H5921"\w* supply \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w needs|strong="H4270"\w*, \w but|strong="H7535"\w* don’t \w sleep|strong="H3885"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w street|strong="H7339"\w*.” +\v 21 So \w he|strong="H1004"\w* brought him into \w his|strong="H7364"\w* \w house|strong="H1004"\w*, \w and|strong="H1004"\w* \w gave|strong="H1101"\w* \w the|strong="H8354"\w* \w donkeys|strong="H2543"\w* \w fodder|strong="H1101"\w*. Then \w they|strong="H7272"\w* \w washed|strong="H7364"\w* \w their|strong="H7364"\w* \w feet|strong="H7272"\w*, \w and|strong="H1004"\w* ate \w and|strong="H1004"\w* \w drank|strong="H8354"\w*. +\v 22 \w As|strong="H3318"\w* \w they|strong="H1992"\w* \w were|strong="H1121"\w* making \w their|strong="H1992"\w* \w hearts|strong="H3820"\w* \w merry|strong="H3190"\w*, \w behold|strong="H2009"\w*, \w the|strong="H5921"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*, \w certain|strong="H3045"\w* \w wicked|strong="H1100"\w* \w fellows|strong="H1121"\w*, \w surrounded|strong="H5437"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*, beating \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w door|strong="H1817"\w*; \w and|strong="H1121"\w* \w they|strong="H1992"\w* spoke \w to|strong="H3318"\w* \w the|strong="H5921"\w* \w master|strong="H1167"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*, \w the|strong="H5921"\w* \w old|strong="H1121"\w* \w man|strong="H2205"\w*, saying, “\w Bring|strong="H3318"\w* \w out|strong="H3318"\w* \w the|strong="H5921"\w* \w man|strong="H2205"\w* \w who|strong="H1121"\w* \w came|strong="H3318"\w* \w into|strong="H5921"\w* \w your|strong="H5921"\w* \w house|strong="H1004"\w*, \w that|strong="H3045"\w* \w we|strong="H3068"\w* \w can|strong="H3045"\w* \w have|strong="H3045"\w* sex \w with|strong="H1004"\w* \w him|strong="H5921"\w*!” +\p +\v 23 \w The|strong="H6213"\w* \w man|strong="H1167"\w*, \w the|strong="H6213"\w* \w master|strong="H1167"\w* \w of|strong="H1004"\w* \w the|strong="H6213"\w* \w house|strong="H1004"\w*, \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w them|strong="H6213"\w*, \w and|strong="H1004"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w them|strong="H6213"\w*, “\w No|strong="H6213"\w*, \w my|strong="H3318"\w* brothers, \w please|strong="H4994"\w* don’t \w act|strong="H6213"\w* \w so|strong="H6213"\w* \w wickedly|strong="H7489"\w*; since \w this|strong="H2088"\w* \w man|strong="H1167"\w* \w has|strong="H3318"\w* \w come|strong="H3318"\w* \w into|strong="H6213"\w* \w my|strong="H3318"\w* \w house|strong="H1004"\w*, don’t \w do|strong="H6213"\w* \w this|strong="H2088"\w* \w folly|strong="H5039"\w*. +\v 24 \w Behold|strong="H2009"\w*, \w here|strong="H2009"\w* \w is|strong="H2088"\w* \w my|strong="H3318"\w* \w virgin|strong="H1330"\w* \w daughter|strong="H1323"\w* \w and|strong="H5869"\w* \w his|strong="H6213"\w* \w concubine|strong="H6370"\w*. \w I|strong="H2009"\w* \w will|strong="H5869"\w* \w bring|strong="H3318"\w* \w them|strong="H6213"\w* \w out|strong="H3318"\w* \w now|strong="H4994"\w*. \w Humble|strong="H6031"\w* \w them|strong="H6213"\w*, \w and|strong="H5869"\w* \w do|strong="H6213"\w* \w with|strong="H6213"\w* \w them|strong="H6213"\w* \w what|strong="H1697"\w* \w seems|strong="H2896"\w* \w good|strong="H2896"\w* \w to|strong="H3318"\w* \w you|strong="H6213"\w*; \w but|strong="H3808"\w* \w to|strong="H3318"\w* \w this|strong="H2088"\w* \w man|strong="H2896"\w* don’t \w do|strong="H6213"\w* \w any|strong="H6213"\w* \w such|strong="H2088"\w* \w folly|strong="H5039"\w*.” +\p +\v 25 \w But|strong="H3808"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* wouldn’t \w listen|strong="H8085"\w* \w to|strong="H5704"\w* \w him|strong="H7971"\w*; \w so|strong="H7971"\w* \w the|strong="H3605"\w* \w man|strong="H3605"\w* \w grabbed|strong="H2388"\w* \w his|strong="H3605"\w* \w concubine|strong="H6370"\w*, \w and|strong="H7971"\w* \w brought|strong="H3318"\w* \w her|strong="H3605"\w* \w out|strong="H3318"\w* \w to|strong="H5704"\w* \w them|strong="H7971"\w*; \w and|strong="H7971"\w* \w they|strong="H3808"\w* \w had|strong="H3045"\w* sex \w with|strong="H3045"\w* \w her|strong="H3605"\w*, \w and|strong="H7971"\w* \w abused|strong="H5953"\w* \w her|strong="H3605"\w* \w all|strong="H3605"\w* \w night|strong="H3915"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w*. \w When|strong="H8085"\w* \w the|strong="H3605"\w* \w day|strong="H7837"\w* began \w to|strong="H5704"\w* \w dawn|strong="H7837"\w*, \w they|strong="H3808"\w* \w let|strong="H7971"\w* \w her|strong="H3605"\w* \w go|strong="H3318"\w*. +\v 26 \w Then|strong="H5307"\w* \w the|strong="H5704"\w* \w woman|strong="H1004"\w* \w came|strong="H5307"\w* \w in|strong="H1004"\w* \w the|strong="H5704"\w* \w dawning|strong="H6437"\w* \w of|strong="H1004"\w* \w the|strong="H5704"\w* \w day|strong="H1242"\w*, \w and|strong="H1004"\w* \w fell|strong="H5307"\w* \w down|strong="H5307"\w* \w at|strong="H1004"\w* \w the|strong="H5704"\w* \w door|strong="H6607"\w* \w of|strong="H1004"\w* \w the|strong="H5704"\w* \w man|strong="H5307"\w*’s \w house|strong="H1004"\w* \w where|strong="H8033"\w* \w her|strong="H5704"\w* lord \w was|strong="H1004"\w*, \w until|strong="H5704"\w* \w it|strong="H8033"\w* \w was|strong="H1004"\w* light. +\v 27 \w Her|strong="H5921"\w* lord \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w morning|strong="H1242"\w* \w and|strong="H6965"\w* \w opened|strong="H6605"\w* \w the|strong="H5921"\w* \w doors|strong="H1817"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*, \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w go|strong="H3212"\w* \w his|strong="H5921"\w* \w way|strong="H1870"\w*; \w and|strong="H6965"\w* \w behold|strong="H2009"\w*, \w the|strong="H5921"\w* \w woman|strong="H1004"\w* \w his|strong="H5921"\w* \w concubine|strong="H6370"\w* \w had|strong="H3027"\w* \w fallen|strong="H5307"\w* \w down|strong="H5307"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w door|strong="H6607"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*, \w with|strong="H1004"\w* \w her|strong="H5921"\w* \w hands|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w threshold|strong="H5592"\w*. +\p +\v 28 \w He|strong="H5921"\w* \w said|strong="H6030"\w* \w to|strong="H3212"\w* \w her|strong="H3947"\w*, “\w Get|strong="H3947"\w* \w up|strong="H6965"\w*, \w and|strong="H6965"\w* \w let|strong="H3212"\w*’s \w get|strong="H3947"\w* \w going|strong="H3212"\w*!” \w but|strong="H6030"\w* \w no|strong="H3947"\w* one \w answered|strong="H6030"\w*. \w Then|strong="H6030"\w* \w he|strong="H5921"\w* \w took|strong="H3947"\w* \w her|strong="H3947"\w* \w up|strong="H6965"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w donkey|strong="H2543"\w*; \w and|strong="H6965"\w* \w the|strong="H5921"\w* \w man|strong="H6030"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w*, \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w his|strong="H3947"\w* \w place|strong="H4725"\w*. +\p +\v 29 \w When|strong="H7971"\w* \w he|strong="H3605"\w* \w had|strong="H3478"\w* \w come|strong="H3478"\w* \w into|strong="H3947"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*, \w he|strong="H3605"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* \w knife|strong="H3979"\w* \w and|strong="H3478"\w* \w cut|strong="H5408"\w* \w up|strong="H3947"\w* \w his|strong="H3605"\w* \w concubine|strong="H6370"\w*, \w and|strong="H3478"\w* \w divided|strong="H5408"\w* \w her|strong="H3605"\w*, \w limb|strong="H6106"\w* \w by|strong="H3478"\w* \w limb|strong="H6106"\w*, \w into|strong="H3947"\w* \w twelve|strong="H8147"\w* \w pieces|strong="H5409"\w*, \w and|strong="H3478"\w* \w sent|strong="H7971"\w* \w her|strong="H3605"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w borders|strong="H1366"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. +\v 30 \w It|strong="H7760"\w* \w was|strong="H1961"\w* \w so|strong="H1961"\w*, \w that|strong="H7200"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w saw|strong="H7200"\w* \w it|strong="H7760"\w* \w said|strong="H1696"\w*, “\w Such|strong="H2088"\w* \w a|strong="H3068"\w* \w deed|strong="H2063"\w* \w has|strong="H1961"\w* \w not|strong="H3808"\w* \w been|strong="H1961"\w* \w done|strong="H1961"\w* \w or|strong="H3808"\w* \w seen|strong="H7200"\w* \w from|strong="H5921"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H7200"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w came|strong="H1961"\w* \w up|strong="H5927"\w* \w out|strong="H7200"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w* \w to|strong="H1696"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*! \w Consider|strong="H7200"\w* \w it|strong="H7760"\w*, \w take|strong="H7760"\w* \w counsel|strong="H5779"\w*, \w and|strong="H1121"\w* \w speak|strong="H1696"\w*.” +\c 20 +\p +\v 1 \w Then|strong="H3318"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w was|strong="H3068"\w* \w assembled|strong="H6950"\w* \w as|strong="H5704"\w* \w one|strong="H3605"\w* \w man|strong="H1121"\w*, \w from|strong="H3318"\w* \w Dan|strong="H1835"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* Beersheba, \w with|strong="H3068"\w* \w the|strong="H3605"\w* land \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*, \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w at|strong="H3478"\w* \w Mizpah|strong="H4709"\w*. +\v 2 \w The|strong="H3605"\w* \w chiefs|strong="H6438"\w* \w of|strong="H7626"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, even \w of|strong="H7626"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H7626"\w* \w Israel|strong="H3478"\w*, \w presented|strong="H3320"\w* \w themselves|strong="H3320"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w of|strong="H7626"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H7626"\w* God, four \w hundred|strong="H3967"\w* thousand \w footmen|strong="H7273"\w* \w who|strong="H3605"\w* \w drew|strong="H8025"\w* \w sword|strong="H2719"\w*. +\v 3 (\w Now|strong="H1961"\w* \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w had|strong="H1961"\w* \w gone|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H1696"\w* \w Mizpah|strong="H4709"\w*.) \w The|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w said|strong="H1696"\w*, “\w Tell|strong="H1696"\w* \w us|strong="H3588"\w*, \w how|strong="H3588"\w* \w did|strong="H3478"\w* \w this|strong="H2063"\w* \w wickedness|strong="H7451"\w* \w happen|strong="H1961"\w*?” +\p +\v 4 \w The|strong="H3885"\w* \w Levite|strong="H3881"\w*, \w the|strong="H3885"\w* husband \w of|strong="H1390"\w* \w the|strong="H3885"\w* woman \w who|strong="H3881"\w* \w was|strong="H1144"\w* \w murdered|strong="H7523"\w*, \w answered|strong="H6030"\w*, “I \w came|strong="H1144"\w* into \w Gibeah|strong="H1390"\w* \w that|strong="H3881"\w* belongs \w to|strong="H6030"\w* \w Benjamin|strong="H1144"\w*, I \w and|strong="H6030"\w* \w my|strong="H1144"\w* \w concubine|strong="H6370"\w*, \w to|strong="H6030"\w* \w spend|strong="H3885"\w* \w the|strong="H3885"\w* \w night|strong="H3885"\w*. +\v 5 \w The|strong="H5921"\w* \w men|strong="H1167"\w* \w of|strong="H1004"\w* \w Gibeah|strong="H1390"\w* \w rose|strong="H6965"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*, \w and|strong="H6965"\w* \w surrounded|strong="H5437"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w by|strong="H5921"\w* \w night|strong="H3915"\w*. \w They|strong="H5921"\w* \w intended|strong="H1819"\w* \w to|strong="H4191"\w* \w kill|strong="H2026"\w* \w me|strong="H5921"\w* \w and|strong="H6965"\w* \w they|strong="H5921"\w* raped \w my|strong="H5921"\w* \w concubine|strong="H6370"\w*, \w and|strong="H6965"\w* \w she|strong="H5921"\w* \w is|strong="H1004"\w* \w dead|strong="H4191"\w*. +\v 6 \w I|strong="H3588"\w* \w took|strong="H3478"\w* \w my|strong="H3605"\w* \w concubine|strong="H6370"\w* \w and|strong="H3478"\w* \w cut|strong="H5408"\w* \w her|strong="H3605"\w* \w in|strong="H3478"\w* \w pieces|strong="H5408"\w*, \w and|strong="H3478"\w* \w sent|strong="H7971"\w* \w her|strong="H3605"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w country|strong="H7704"\w* \w of|strong="H7704"\w* \w the|strong="H3605"\w* \w inheritance|strong="H5159"\w* \w of|strong="H7704"\w* \w Israel|strong="H3478"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3478"\w* \w committed|strong="H6213"\w* \w lewdness|strong="H2154"\w* \w and|strong="H3478"\w* \w folly|strong="H5039"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\v 7 \w Behold|strong="H2009"\w*, \w you|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w all|strong="H3605"\w* \w of|strong="H1121"\w* \w you|strong="H3605"\w*, \w give|strong="H3051"\w* \w here|strong="H2009"\w* \w your|strong="H3605"\w* \w advice|strong="H6098"\w* \w and|strong="H1121"\w* \w counsel|strong="H6098"\w*.” +\p +\v 8 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w arose|strong="H6965"\w* \w as|strong="H5971"\w* \w one|strong="H3605"\w* \w man|strong="H3605"\w*, saying, “\w None|strong="H3808"\w* \w of|strong="H1004"\w* \w us|strong="H5971"\w* \w will|strong="H5971"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w his|strong="H3605"\w* tent, \w neither|strong="H3808"\w* \w will|strong="H5971"\w* \w any|strong="H3605"\w* \w of|strong="H1004"\w* \w us|strong="H5971"\w* \w turn|strong="H5493"\w* \w to|strong="H3212"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*. +\v 9 \w But|strong="H6258"\w* \w now|strong="H6258"\w* \w this|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H5921"\w* \w thing|strong="H1697"\w* \w which|strong="H1697"\w* \w we|strong="H3068"\w* \w will|strong="H1697"\w* \w do|strong="H6213"\w* \w to|strong="H6213"\w* \w Gibeah|strong="H1390"\w*: \w we|strong="H3068"\w* \w will|strong="H1697"\w* go \w up|strong="H5921"\w* \w against|strong="H5921"\w* \w it|strong="H5921"\w* \w by|strong="H5921"\w* \w lot|strong="H1486"\w*; +\v 10 \w and|strong="H3967"\w* \w we|strong="H3068"\w* \w will|strong="H5971"\w* \w take|strong="H3947"\w* \w ten|strong="H6235"\w* \w men|strong="H5971"\w* \w of|strong="H7626"\w* \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H7626"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3967"\w* \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* \w of|strong="H7626"\w* \w one|strong="H3605"\w* \w thousand|strong="H7233"\w*, \w and|strong="H3967"\w* \w a|strong="H3068"\w* \w thousand|strong="H7233"\w* \w out|strong="H3947"\w* \w of|strong="H7626"\w* \w ten|strong="H6235"\w* \w thousand|strong="H7233"\w* \w to|strong="H3478"\w* \w get|strong="H3947"\w* \w food|strong="H6720"\w* \w for|strong="H6213"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w that|strong="H5971"\w* \w they|strong="H6213"\w* \w may|strong="H5971"\w* \w do|strong="H6213"\w*, \w when|strong="H6213"\w* \w they|strong="H6213"\w* \w come|strong="H5971"\w* \w to|strong="H3478"\w* \w Gibeah|strong="H1387"\w* \w of|strong="H7626"\w* \w Benjamin|strong="H1144"\w*, according \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w folly|strong="H5039"\w* \w that|strong="H5971"\w* \w the|strong="H3605"\w* \w men|strong="H5971"\w* \w of|strong="H7626"\w* \w Gibeah|strong="H1387"\w* \w have|strong="H5971"\w* \w done|strong="H6213"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*.” +\v 11 So \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H5892"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w gathered|strong="H3478"\w* \w against|strong="H5892"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, knit \w together|strong="H2270"\w* \w as|strong="H5892"\w* \w one|strong="H3605"\w* \w man|strong="H3605"\w*. +\p +\v 12 \w The|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H7626"\w* \w Israel|strong="H3478"\w* \w sent|strong="H7971"\w* \w men|strong="H7451"\w* \w through|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribe|strong="H7626"\w* \w of|strong="H7626"\w* \w Benjamin|strong="H1144"\w*, saying, “\w What|strong="H4100"\w* \w wickedness|strong="H7451"\w* \w is|strong="H4100"\w* \w this|strong="H2063"\w* \w that|strong="H3605"\w* \w has|strong="H1961"\w* \w happened|strong="H1961"\w* \w among|strong="H3478"\w* \w you|strong="H3605"\w*? +\v 13 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w deliver|strong="H5414"\w* \w up|strong="H5414"\w* \w the|strong="H8085"\w* \w men|strong="H1121"\w*, \w the|strong="H8085"\w* \w wicked|strong="H7451"\w* \w fellows|strong="H1121"\w* \w who|strong="H1121"\w* \w are|strong="H1121"\w* \w in|strong="H3478"\w* \w Gibeah|strong="H1390"\w*, \w that|strong="H8085"\w* \w we|strong="H3068"\w* \w may|strong="H3478"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H3478"\w* \w death|strong="H4191"\w* \w and|strong="H1121"\w* \w put|strong="H5414"\w* \w away|strong="H1197"\w* \w evil|strong="H7451"\w* \w from|strong="H3478"\w* \w Israel|strong="H3478"\w*.” +\p \w But|strong="H3808"\w* \w Benjamin|strong="H1144"\w* \w would|strong="H3478"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H1121"\w* \w their|strong="H5414"\w* \w brothers|strong="H1121"\w*, \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 14 \w The|strong="H4480"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w gathered|strong="H3478"\w* themselves \w together|strong="H5973"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w cities|strong="H5892"\w* \w to|strong="H3318"\w* \w Gibeah|strong="H1390"\w*, \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w battle|strong="H4421"\w* \w against|strong="H5973"\w* \w the|strong="H4480"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 15 \w The|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w were|strong="H1121"\w* \w counted|strong="H6485"\w* \w on|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w out|strong="H3427"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* \w cities|strong="H5892"\w* \w twenty-six|strong="H8337"\w* thousand \w men|strong="H1121"\w* \w who|strong="H1931"\w* \w drew|strong="H8025"\w* \w the|strong="H3117"\w* \w sword|strong="H2719"\w*, \w in|strong="H3427"\w* addition \w to|strong="H3117"\w* \w the|strong="H3117"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1121"\w* \w Gibeah|strong="H1390"\w*, \w who|strong="H1931"\w* \w were|strong="H1121"\w* \w counted|strong="H6485"\w* \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* chosen \w men|strong="H1121"\w*. +\v 16 \w Among|strong="H5971"\w* \w all|strong="H3605"\w* \w these|strong="H2088"\w* \w soldiers|strong="H5971"\w* \w there|strong="H2088"\w* \w were|strong="H5971"\w* \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* chosen \w men|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w left-handed|strong="H3225"\w*. \w Every|strong="H3605"\w* \w one|strong="H2088"\w* \w of|strong="H3027"\w* \w them|strong="H3027"\w* \w could|strong="H2088"\w* \w sling|strong="H7049"\w* \w a|strong="H3068"\w* stone \w at|strong="H3808"\w* \w a|strong="H3068"\w* \w hair|strong="H8185"\w* \w and|strong="H3967"\w* \w not|strong="H3808"\w* \w miss|strong="H2398"\w*. +\v 17 \w The|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H3605"\w* \w Israel|strong="H3478"\w*, besides \w Benjamin|strong="H1144"\w*, \w were|strong="H3478"\w* \w counted|strong="H6485"\w* four \w hundred|strong="H3967"\w* thousand \w men|strong="H3605"\w* \w who|strong="H3605"\w* \w drew|strong="H8025"\w* \w sword|strong="H2719"\w*. \w All|strong="H3605"\w* \w these|strong="H2088"\w* \w were|strong="H3478"\w* \w men|strong="H3605"\w* \w of|strong="H3605"\w* \w war|strong="H4421"\w*. +\p +\v 18 \w The|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w arose|strong="H6965"\w*, \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w Bethel|strong="H1008"\w*, \w and|strong="H1121"\w* \w asked|strong="H7592"\w* \w counsel|strong="H7592"\w* \w of|strong="H1121"\w* \w God|strong="H3068"\w*. \w They|strong="H3068"\w* \w asked|strong="H7592"\w*, “\w Who|strong="H4310"\w* \w shall|strong="H3068"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w for|strong="H3068"\w* \w us|strong="H7592"\w* \w first|strong="H1121"\w* \w to|strong="H3478"\w* \w battle|strong="H4421"\w* \w against|strong="H5973"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*?” +\p \w Yahweh|strong="H3068"\w* said, “\w Judah|strong="H3063"\w* \w first|strong="H1121"\w*.” +\p +\v 19 \w The|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w morning|strong="H1242"\w* \w and|strong="H1121"\w* \w encamped|strong="H2583"\w* \w against|strong="H5921"\w* \w Gibeah|strong="H1390"\w*. +\v 20 \w The|strong="H3318"\w* \w men|strong="H3478"\w* \w of|strong="H3318"\w* \w Israel|strong="H3478"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w battle|strong="H4421"\w* \w against|strong="H5973"\w* \w Benjamin|strong="H1144"\w*; \w and|strong="H3478"\w* \w the|strong="H3318"\w* \w men|strong="H3478"\w* \w of|strong="H3318"\w* \w Israel|strong="H3478"\w* \w set|strong="H6186"\w* \w the|strong="H3318"\w* \w battle|strong="H4421"\w* \w in|strong="H3478"\w* \w array|strong="H6186"\w* \w against|strong="H5973"\w* \w them|strong="H3318"\w* \w at|strong="H3478"\w* \w Gibeah|strong="H1390"\w*. +\v 21 \w The|strong="H4480"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w Gibeah|strong="H1390"\w*, \w and|strong="H1121"\w* \w on|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w destroyed|strong="H7843"\w* \w twenty-two|strong="H6242"\w* thousand \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w Israelite|strong="H3478"\w* \w men|strong="H1121"\w* \w down|strong="H7843"\w* \w to|strong="H3318"\w* \w the|strong="H4480"\w* ground. +\v 22 \w The|strong="H3117"\w* \w people|strong="H5971"\w*, \w the|strong="H3117"\w* \w men|strong="H5971"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w*, \w encouraged|strong="H2388"\w* \w themselves|strong="H6186"\w*, \w and|strong="H3478"\w* \w set|strong="H6186"\w* \w the|strong="H3117"\w* \w battle|strong="H4421"\w* \w again|strong="H3254"\w* \w in|strong="H3478"\w* \w array|strong="H6186"\w* \w in|strong="H3478"\w* \w the|strong="H3117"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w they|strong="H3117"\w* \w set|strong="H6186"\w* \w themselves|strong="H6186"\w* \w in|strong="H3478"\w* \w array|strong="H6186"\w* \w the|strong="H3117"\w* \w first|strong="H7223"\w* \w day|strong="H3117"\w*. +\v 23 \w The|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H1121"\w* \w wept|strong="H1058"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w until|strong="H5704"\w* \w evening|strong="H6153"\w*; \w and|strong="H1121"\w* \w they|strong="H3068"\w* \w asked|strong="H7592"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*, saying, “\w Shall|strong="H3068"\w* \w I|strong="H5704"\w* \w again|strong="H3254"\w* \w draw|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H5704"\w* \w battle|strong="H4421"\w* \w against|strong="H5973"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w my|strong="H3068"\w* brother?” +\p \w Yahweh|strong="H3068"\w* said, “\w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5973"\w* \w him|strong="H6440"\w*.” +\p +\v 24 \w The|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w came|strong="H7126"\w* \w near|strong="H7126"\w* against \w the|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w the|strong="H3117"\w* \w second|strong="H8145"\w* \w day|strong="H3117"\w*. +\v 25 \w Benjamin|strong="H1144"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w against|strong="H7125"\w* \w them|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w Gibeah|strong="H1390"\w* \w the|strong="H3605"\w* \w second|strong="H8145"\w* \w day|strong="H3117"\w*, \w and|strong="H1121"\w* \w destroyed|strong="H7843"\w* \w down|strong="H7843"\w* \w to|strong="H3318"\w* \w the|strong="H3605"\w* ground \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w again|strong="H5750"\w* \w eighteen|strong="H8083"\w* thousand \w men|strong="H1121"\w*. \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w drew|strong="H8025"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*. +\p +\v 26 \w Then|strong="H5927"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w*, \w and|strong="H1121"\w* \w came|strong="H5927"\w* \w to|strong="H5704"\w* \w Bethel|strong="H1008"\w*, \w and|strong="H1121"\w* \w wept|strong="H1058"\w*, \w and|strong="H1121"\w* \w sat|strong="H3427"\w* \w there|strong="H8033"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H1121"\w* \w fasted|strong="H6684"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w* \w until|strong="H5704"\w* \w evening|strong="H6153"\w*; \w then|strong="H5927"\w* \w they|strong="H3117"\w* \w offered|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w* \w and|strong="H1121"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 27 \w The|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w asked|strong="H7592"\w* \w Yahweh|strong="H3068"\w* (\w for|strong="H3068"\w* \w the|strong="H3068"\w* ark \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w covenant|strong="H1285"\w* \w of|strong="H1121"\w* \w God|strong="H3068"\w* \w was|strong="H3068"\w* \w there|strong="H8033"\w* \w in|strong="H3478"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*, +\v 28 \w and|strong="H1121"\w* \w Phinehas|strong="H6372"\w*, \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Eleazar, \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Aaron, \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w it|strong="H5414"\w* \w in|strong="H3068"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*), saying, “\w Shall|strong="H3068"\w* \w I|strong="H3588"\w* \w yet|strong="H5750"\w* \w again|strong="H5750"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w battle|strong="H4421"\w* \w against|strong="H5973"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w my|strong="H5414"\w* brother, \w or|strong="H3117"\w* \w shall|strong="H3068"\w* \w I|strong="H3588"\w* \w cease|strong="H2308"\w*?” +\p \w Yahweh|strong="H3068"\w* \w said|strong="H3318"\w*, “\w Go|strong="H3318"\w* \w up|strong="H5927"\w*; \w for|strong="H3588"\w* \w tomorrow|strong="H4279"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w deliver|strong="H5414"\w* \w him|strong="H5414"\w* \w into|strong="H5927"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*.” +\p +\v 29 \w Israel|strong="H3478"\w* \w set|strong="H7760"\w* ambushes \w all|strong="H5439"\w* \w around|strong="H5439"\w* \w Gibeah|strong="H1390"\w*. +\v 30 \w The|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5927"\w* \w the|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*, \w and|strong="H1121"\w* \w set|strong="H6186"\w* \w themselves|strong="H6186"\w* \w in|strong="H3478"\w* \w array|strong="H6186"\w* \w against|strong="H5927"\w* \w Gibeah|strong="H1390"\w*, \w as|strong="H3117"\w* \w at|strong="H3478"\w* \w other|strong="H6471"\w* \w times|strong="H6471"\w*. +\v 31 \w The|strong="H5221"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w against|strong="H7125"\w* \w the|strong="H5221"\w* \w people|strong="H5971"\w*, \w and|strong="H1121"\w* \w were|strong="H3478"\w* \w drawn|strong="H5423"\w* \w away|strong="H5927"\w* \w from|strong="H4480"\w* \w the|strong="H5221"\w* \w city|strong="H5892"\w*; \w and|strong="H1121"\w* \w they|strong="H5971"\w* \w began|strong="H2490"\w* \w to|strong="H3318"\w* \w strike|strong="H5221"\w* \w and|strong="H1121"\w* \w kill|strong="H5221"\w* \w of|strong="H1121"\w* \w the|strong="H5221"\w* \w people|strong="H5971"\w* \w as|strong="H5927"\w* \w at|strong="H3478"\w* \w other|strong="H6471"\w* \w times|strong="H6471"\w*, \w in|strong="H3478"\w* \w the|strong="H5221"\w* \w highways|strong="H4546"\w*, \w of|strong="H1121"\w* \w which|strong="H5971"\w* \w one|strong="H4480"\w* \w goes|strong="H3318"\w* \w up|strong="H5927"\w* \w to|strong="H3318"\w* \w Bethel|strong="H1008"\w* \w and|strong="H1121"\w* \w the|strong="H5221"\w* \w other|strong="H6471"\w* \w to|strong="H3318"\w* \w Gibeah|strong="H1390"\w*, \w in|strong="H3478"\w* \w the|strong="H5221"\w* \w field|strong="H7704"\w*, \w about|strong="H4480"\w* \w thirty|strong="H7970"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\p +\v 32 \w The|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* said, “\w They|strong="H1992"\w* \w are|strong="H1992"\w* \w struck|strong="H5062"\w* \w down|strong="H5062"\w* \w before|strong="H6440"\w* \w us|strong="H6440"\w*, \w as|strong="H6440"\w* \w at|strong="H3478"\w* \w the|strong="H6440"\w* \w first|strong="H7223"\w*.” \w But|strong="H1992"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* said, “Let’s \w flee|strong="H5127"\w*, \w and|strong="H1121"\w* \w draw|strong="H5423"\w* \w them|strong="H1992"\w* \w away|strong="H5127"\w* \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w* \w to|strong="H3478"\w* \w the|strong="H6440"\w* \w highways|strong="H4546"\w*.” +\p +\v 33 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H4725"\w* \w Israel|strong="H3478"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w out|strong="H3605"\w* \w of|strong="H4725"\w* \w their|strong="H3605"\w* \w place|strong="H4725"\w* \w and|strong="H6965"\w* \w set|strong="H6965"\w* \w themselves|strong="H6186"\w* \w in|strong="H3478"\w* \w array|strong="H6186"\w* \w at|strong="H3478"\w* Baal Tamar. \w Then|strong="H6965"\w* \w the|strong="H3605"\w* ambushers \w of|strong="H4725"\w* \w Israel|strong="H3478"\w* \w broke|strong="H1518"\w* \w out|strong="H3605"\w* \w of|strong="H4725"\w* \w their|strong="H3605"\w* \w place|strong="H4725"\w*, even \w out|strong="H3605"\w* \w of|strong="H4725"\w* Maareh Geba. +\v 34 \w Ten|strong="H6235"\w* thousand \w chosen|strong="H3045"\w* \w men|strong="H7451"\w* \w out|strong="H5921"\w* \w of|strong="H5921"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w came|strong="H5060"\w* \w over|strong="H5921"\w* \w against|strong="H5921"\w* \w Gibeah|strong="H1390"\w*, \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w battle|strong="H4421"\w* \w was|strong="H3478"\w* \w severe|strong="H7451"\w*; \w but|strong="H3588"\w* \w they|strong="H1992"\w* didn’t \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w disaster|strong="H7451"\w* \w was|strong="H3478"\w* \w close|strong="H5060"\w* \w to|strong="H3478"\w* \w them|strong="H1992"\w*. +\v 35 \w Yahweh|strong="H3068"\w* \w struck|strong="H5062"\w* \w Benjamin|strong="H1144"\w* \w before|strong="H6440"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3967"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w destroyed|strong="H7843"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w* \w twenty-five|strong="H6242"\w* thousand \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* \w men|strong="H1121"\w*. \w All|strong="H3605"\w* \w these|strong="H1931"\w* \w drew|strong="H8025"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*. +\v 36 \w So|strong="H5414"\w* \w the|strong="H7200"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H3478"\w* \w struck|strong="H5062"\w*, \w for|strong="H3588"\w* \w the|strong="H7200"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w yielded|strong="H5414"\w* \w to|strong="H3478"\w* \w Benjamin|strong="H1144"\w* \w because|strong="H3588"\w* \w they|strong="H3588"\w* trusted \w the|strong="H7200"\w* ambushers \w whom|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3478"\w* \w set|strong="H7760"\w* \w against|strong="H7760"\w* \w Gibeah|strong="H1390"\w*. +\v 37 \w The|strong="H3605"\w* ambushers \w hurried|strong="H2363"\w*, \w and|strong="H5892"\w* \w rushed|strong="H6584"\w* \w on|strong="H5892"\w* \w Gibeah|strong="H1390"\w*; \w then|strong="H3605"\w* \w the|strong="H3605"\w* ambushers \w spread|strong="H6584"\w* \w out|strong="H4900"\w*, \w and|strong="H5892"\w* \w struck|strong="H5221"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w with|strong="H5892"\w* \w the|strong="H3605"\w* \w edge|strong="H6310"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*. +\v 38 \w Now|strong="H1961"\w* \w the|strong="H4480"\w* \w appointed|strong="H4150"\w* \w sign|strong="H4150"\w* \w between|strong="H5973"\w* \w the|strong="H4480"\w* \w men|strong="H3478"\w* \w of|strong="H5892"\w* \w Israel|strong="H3478"\w* \w and|strong="H3478"\w* \w the|strong="H4480"\w* ambushers \w was|strong="H1961"\w* \w that|strong="H3478"\w* \w they|strong="H3478"\w* \w should|strong="H3478"\w* \w make|strong="H7235"\w* \w a|strong="H3068"\w* \w great|strong="H7235"\w* \w cloud|strong="H4864"\w* \w of|strong="H5892"\w* \w smoke|strong="H6227"\w* \w rise|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H4480"\w* \w of|strong="H5892"\w* \w the|strong="H4480"\w* \w city|strong="H5892"\w*. +\v 39 \w The|strong="H6440"\w* \w men|strong="H3478"\w* \w of|strong="H6440"\w* \w Israel|strong="H3478"\w* \w turned|strong="H2015"\w* \w in|strong="H3478"\w* \w the|strong="H6440"\w* \w battle|strong="H4421"\w*, \w and|strong="H3478"\w* \w Benjamin|strong="H1144"\w* \w began|strong="H2490"\w* \w to|strong="H3478"\w* \w strike|strong="H5221"\w* \w and|strong="H3478"\w* \w kill|strong="H5221"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w men|strong="H3478"\w* \w of|strong="H6440"\w* \w Israel|strong="H3478"\w* \w about|strong="H5221"\w* \w thirty|strong="H7970"\w* \w persons|strong="H6440"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* said, “\w Surely|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H3478"\w* \w struck|strong="H5221"\w* \w down|strong="H5221"\w* \w before|strong="H6440"\w* \w us|strong="H6440"\w*, \w as|strong="H3588"\w* \w in|strong="H3478"\w* \w the|strong="H6440"\w* \w first|strong="H7223"\w* \w battle|strong="H4421"\w*.” +\v 40 \w But|strong="H2009"\w* \w when|strong="H4480"\w* \w the|strong="H4480"\w* \w cloud|strong="H4864"\w* \w began|strong="H2490"\w* \w to|strong="H5927"\w* \w arise|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H4480"\w* \w of|strong="H5892"\w* \w the|strong="H4480"\w* \w city|strong="H5892"\w* \w in|strong="H5892"\w* \w a|strong="H3068"\w* \w pillar|strong="H5982"\w* \w of|strong="H5892"\w* \w smoke|strong="H6227"\w*, \w the|strong="H4480"\w* Benjamites \w looked|strong="H6437"\w* \w behind|strong="H4480"\w* \w them|strong="H5927"\w*; \w and|strong="H8064"\w* \w behold|strong="H2009"\w*, \w the|strong="H4480"\w* \w whole|strong="H3632"\w* \w city|strong="H5892"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w in|strong="H5892"\w* \w smoke|strong="H6227"\w* \w to|strong="H5927"\w* \w the|strong="H4480"\w* \w sky|strong="H8064"\w*. +\v 41 \w The|strong="H5921"\w* \w men|strong="H7451"\w* \w of|strong="H5921"\w* \w Israel|strong="H3478"\w* \w turned|strong="H2015"\w*, \w and|strong="H3478"\w* \w the|strong="H5921"\w* \w men|strong="H7451"\w* \w of|strong="H5921"\w* \w Benjamin|strong="H1144"\w* \w were|strong="H3478"\w* dismayed; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w disaster|strong="H7451"\w* \w had|strong="H3478"\w* \w come|strong="H5060"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 42 Therefore \w they|strong="H3478"\w* \w turned|strong="H6437"\w* \w their|strong="H6440"\w* backs \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w men|strong="H3478"\w* \w of|strong="H5892"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w* \w of|strong="H5892"\w* \w the|strong="H6440"\w* \w wilderness|strong="H4057"\w*, \w but|strong="H6437"\w* \w the|strong="H6440"\w* \w battle|strong="H4421"\w* followed \w hard|strong="H1692"\w* after \w them|strong="H6440"\w*; \w and|strong="H3478"\w* those \w who|strong="H3478"\w* \w came|strong="H3478"\w* \w out|strong="H6440"\w* \w of|strong="H5892"\w* \w the|strong="H6440"\w* \w cities|strong="H5892"\w* \w destroyed|strong="H7843"\w* \w them|strong="H6440"\w* \w in|strong="H3478"\w* \w the|strong="H6440"\w* \w middle|strong="H8432"\w* \w of|strong="H5892"\w* \w it|strong="H8432"\w*. +\v 43 \w They|strong="H5704"\w* \w surrounded|strong="H3803"\w* \w the|strong="H5704"\w* Benjamites, \w chased|strong="H7291"\w* \w them|strong="H7291"\w*, \w and|strong="H1144"\w* \w trod|strong="H1869"\w* \w them|strong="H7291"\w* \w down|strong="H1869"\w* \w at|strong="H1144"\w* \w their|strong="H1869"\w* \w resting|strong="H4496"\w* \w place|strong="H4496"\w*, \w as|strong="H5704"\w* \w far|strong="H5704"\w* \w as|strong="H5704"\w* \w near|strong="H5704"\w* \w Gibeah|strong="H1390"\w* \w toward|strong="H5704"\w* \w the|strong="H5704"\w* \w sunrise|strong="H4217"\w*. +\v 44 \w Eighteen|strong="H8083"\w* thousand \w men|strong="H2428"\w* \w of|strong="H3605"\w* \w Benjamin|strong="H1144"\w* \w fell|strong="H5307"\w*; \w all|strong="H3605"\w* \w these|strong="H3605"\w* \w were|strong="H1144"\w* \w men|strong="H2428"\w* \w of|strong="H3605"\w* \w valor|strong="H2428"\w*. +\v 45 \w They|strong="H5704"\w* \w turned|strong="H6437"\w* \w and|strong="H2568"\w* \w fled|strong="H5127"\w* \w toward|strong="H4480"\w* \w the|strong="H5221"\w* \w wilderness|strong="H4057"\w* \w to|strong="H5704"\w* \w the|strong="H5221"\w* \w rock|strong="H5553"\w* \w of|strong="H4057"\w* \w Rimmon|strong="H7417"\w*. \w They|strong="H5704"\w* \w gleaned|strong="H5953"\w* \w five|strong="H2568"\w* thousand men \w of|strong="H4057"\w* \w them|strong="H5221"\w* \w in|strong="H5127"\w* \w the|strong="H5221"\w* \w highways|strong="H4546"\w*, \w and|strong="H2568"\w* followed \w hard|strong="H1692"\w* \w after|strong="H4480"\w* \w them|strong="H5221"\w* \w to|strong="H5704"\w* \w Gidom|strong="H1440"\w*, \w and|strong="H2568"\w* \w struck|strong="H5221"\w* \w two|strong="H4480"\w* thousand men \w of|strong="H4057"\w* \w them|strong="H5221"\w*. +\v 46 \w So|strong="H1961"\w* \w that|strong="H3605"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w fell|strong="H5307"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w Benjamin|strong="H1144"\w* \w were|strong="H1961"\w* \w twenty-five|strong="H6242"\w* thousand \w men|strong="H2428"\w* \w who|strong="H3605"\w* \w drew|strong="H8025"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*. \w All|strong="H3605"\w* \w these|strong="H1931"\w* \w were|strong="H1961"\w* \w men|strong="H2428"\w* \w of|strong="H3117"\w* \w valor|strong="H2428"\w*. +\v 47 \w But|strong="H6437"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* men \w turned|strong="H6437"\w* \w and|strong="H3967"\w* \w fled|strong="H5127"\w* \w toward|strong="H6437"\w* \w the|strong="H3427"\w* \w wilderness|strong="H4057"\w* \w to|strong="H5127"\w* \w the|strong="H3427"\w* \w rock|strong="H5553"\w* \w of|strong="H3427"\w* \w Rimmon|strong="H7417"\w*, \w and|strong="H3967"\w* \w stayed|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3427"\w* \w rock|strong="H5553"\w* \w of|strong="H3427"\w* \w Rimmon|strong="H7417"\w* four \w months|strong="H2320"\w*. +\v 48 \w The|strong="H3605"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w turned|strong="H7725"\w* \w again|strong="H7725"\w* \w on|strong="H7971"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*, \w and|strong="H1121"\w* \w struck|strong="H5221"\w* \w them|strong="H7725"\w* \w with|strong="H5892"\w* \w the|strong="H3605"\w* \w edge|strong="H6310"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*—\w including|strong="H5704"\w* \w the|strong="H3605"\w* \w entire|strong="H3605"\w* \w city|strong="H5892"\w*, \w the|strong="H3605"\w* livestock, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w they|strong="H5704"\w* \w found|strong="H4672"\w*. \w Moreover|strong="H1571"\w* \w they|strong="H5704"\w* \w set|strong="H7971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w which|strong="H5892"\w* \w they|strong="H5704"\w* \w found|strong="H4672"\w* \w on|strong="H7971"\w* fire. +\c 21 +\p +\v 1 \w Now|strong="H5414"\w* \w the|strong="H5414"\w* \w men|strong="H3478"\w* \w of|strong="H1323"\w* \w Israel|strong="H3478"\w* \w had|strong="H3478"\w* \w sworn|strong="H7650"\w* \w in|strong="H3478"\w* \w Mizpah|strong="H4709"\w*, saying, “\w None|strong="H3808"\w* \w of|strong="H1323"\w* \w us|strong="H5414"\w* \w will|strong="H3478"\w* \w give|strong="H5414"\w* \w his|strong="H5414"\w* \w daughter|strong="H1323"\w* \w to|strong="H3478"\w* \w Benjamin|strong="H1144"\w* \w as|strong="H5414"\w* \w a|strong="H3068"\w* wife.” +\v 2 \w The|strong="H6440"\w* \w people|strong="H5971"\w* \w came|strong="H5971"\w* \w to|strong="H5704"\w* \w Bethel|strong="H1008"\w* \w and|strong="H1419"\w* \w sat|strong="H3427"\w* \w there|strong="H8033"\w* \w until|strong="H5704"\w* \w evening|strong="H6153"\w* \w before|strong="H6440"\w* \w God|strong="H1008"\w*, \w and|strong="H1419"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w their|strong="H5375"\w* \w voices|strong="H6963"\w*, \w and|strong="H1419"\w* \w wept|strong="H1058"\w* severely. +\v 3 \w They|strong="H3117"\w* said, “\w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w why|strong="H4100"\w* \w has|strong="H3068"\w* \w this|strong="H2063"\w* \w happened|strong="H1961"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w that|strong="H3117"\w* \w there|strong="H1961"\w* \w should|strong="H3068"\w* \w be|strong="H1961"\w* \w one|strong="H1961"\w* \w tribe|strong="H7626"\w* \w lacking|strong="H6485"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w* \w today|strong="H3117"\w*?” +\p +\v 4 \w On|strong="H1961"\w* \w the|strong="H1129"\w* \w next|strong="H4283"\w* \w day|strong="H4283"\w*, \w the|strong="H1129"\w* \w people|strong="H5971"\w* \w rose|strong="H7925"\w* \w early|strong="H7925"\w* \w and|strong="H5971"\w* \w built|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w there|strong="H8033"\w*, \w and|strong="H5971"\w* \w offered|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w* \w and|strong="H5971"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*. +\v 5 \w The|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* said, “\w Who|strong="H4310"\w* \w is|strong="H3068"\w* \w there|strong="H1961"\w* \w among|strong="H4310"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w who|strong="H4310"\w* didn’t \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*?” \w For|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3068"\w* \w made|strong="H1961"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w oath|strong="H7621"\w* \w concerning|strong="H3068"\w* \w him|strong="H4191"\w* \w who|strong="H4310"\w* didn’t \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3478"\w* \w Mizpah|strong="H4709"\w*, saying, “\w He|strong="H3588"\w* \w shall|strong="H3068"\w* \w surely|strong="H4191"\w* \w be|strong="H1961"\w* \w put|strong="H4191"\w* \w to|strong="H3478"\w* \w death|strong="H4191"\w*.” +\v 6 \w The|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* grieved \w for|strong="H3117"\w* \w Benjamin|strong="H1144"\w* \w their|strong="H3117"\w* brother, \w and|strong="H1121"\w* said, “\w There|strong="H3117"\w* \w is|strong="H3117"\w* \w one|strong="H1121"\w* \w tribe|strong="H7626"\w* \w cut|strong="H1438"\w* \w off|strong="H1438"\w* \w from|strong="H3478"\w* \w Israel|strong="H3478"\w* \w today|strong="H3117"\w*. +\v 7 \w How|strong="H4100"\w* \w shall|strong="H3068"\w* \w we|strong="H3068"\w* \w provide|strong="H6213"\w* wives \w for|strong="H6213"\w* \w those|strong="H6213"\w* \w who|strong="H3068"\w* \w remain|strong="H3498"\w*, since \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w sworn|strong="H7650"\w* \w by|strong="H7650"\w* \w Yahweh|strong="H3068"\w* \w that|strong="H3068"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H1115"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w of|strong="H3068"\w* \w our|strong="H3068"\w* \w daughters|strong="H1323"\w* \w to|strong="H3068"\w* wives?” +\v 8 \w They|strong="H3068"\w* said, “\w What|strong="H4310"\w* \w one|strong="H3808"\w* \w is|strong="H3068"\w* \w there|strong="H2009"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w tribes|strong="H7626"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w who|strong="H4310"\w* didn’t \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3478"\w* \w Mizpah|strong="H4709"\w*?” \w Behold|strong="H2009"\w*, \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w came|strong="H5927"\w* \w from|strong="H5927"\w* \w Jabesh|strong="H3003"\w* \w Gilead|strong="H1568"\w* \w to|strong="H3478"\w* \w the|strong="H3068"\w* \w camp|strong="H4264"\w* \w to|strong="H3478"\w* \w the|strong="H3068"\w* \w assembly|strong="H6951"\w*. +\v 9 \w For|strong="H3427"\w* \w when|strong="H3427"\w* \w the|strong="H6485"\w* \w people|strong="H5971"\w* \w were|strong="H5971"\w* \w counted|strong="H6485"\w*, \w behold|strong="H2009"\w*, \w there|strong="H8033"\w* \w were|strong="H5971"\w* none \w of|strong="H3427"\w* \w the|strong="H6485"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Jabesh|strong="H3003"\w* \w Gilead|strong="H1568"\w* \w there|strong="H8033"\w*. +\v 10 \w The|strong="H5221"\w* \w congregation|strong="H5712"\w* \w sent|strong="H7971"\w* \w twelve|strong="H8147"\w* thousand \w of|strong="H1121"\w* \w the|strong="H5221"\w* most \w valiant|strong="H2428"\w* \w men|strong="H1121"\w* \w there|strong="H8033"\w*, \w and|strong="H1121"\w* \w commanded|strong="H6680"\w* \w them|strong="H7971"\w*, \w saying|strong="H6310"\w*, “\w Go|strong="H3212"\w* \w and|strong="H1121"\w* \w strike|strong="H5221"\w* \w the|strong="H5221"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1121"\w* \w Jabesh|strong="H3003"\w* \w Gilead|strong="H1568"\w* \w with|strong="H3427"\w* \w the|strong="H5221"\w* \w edge|strong="H6310"\w* \w of|strong="H1121"\w* \w the|strong="H5221"\w* \w sword|strong="H2719"\w*, \w with|strong="H3427"\w* \w the|strong="H5221"\w* women \w and|strong="H1121"\w* \w the|strong="H5221"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*. +\v 11 \w This|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H3605"\w* \w thing|strong="H1697"\w* \w that|strong="H3045"\w* \w you|strong="H3605"\w* \w shall|strong="H4904"\w* \w do|strong="H6213"\w*: \w you|strong="H3605"\w* \w shall|strong="H4904"\w* \w utterly|strong="H2763"\w* \w destroy|strong="H2763"\w* \w every|strong="H3605"\w* \w male|strong="H2145"\w*, \w and|strong="H6213"\w* \w every|strong="H3605"\w* \w woman|strong="H2088"\w* \w who|strong="H3605"\w* \w has|strong="H1697"\w* \w lain|strong="H3045"\w* \w with|strong="H6213"\w* \w a|strong="H3068"\w* \w man|strong="H2145"\w*.” +\v 12 \w They|strong="H3808"\w* \w found|strong="H4672"\w* \w among|strong="H3427"\w* \w the|strong="H3045"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Jabesh|strong="H3003"\w* \w Gilead|strong="H1568"\w* four \w hundred|strong="H3967"\w* \w young|strong="H5291"\w* \w virgins|strong="H1330"\w* \w who|strong="H3427"\w* \w had|strong="H3045"\w* \w not|strong="H3808"\w* \w known|strong="H3045"\w* \w man|strong="H2145"\w* \w by|strong="H3427"\w* \w lying|strong="H4904"\w* \w with|strong="H3427"\w* \w him|strong="H4672"\w*; \w and|strong="H3967"\w* \w they|strong="H3808"\w* brought \w them|strong="H4672"\w* \w to|strong="H3045"\w* \w the|strong="H3045"\w* \w camp|strong="H4264"\w* \w to|strong="H3045"\w* \w Shiloh|strong="H7887"\w*, \w which|strong="H5291"\w* \w is|strong="H5291"\w* \w in|strong="H3427"\w* \w the|strong="H3045"\w* land \w of|strong="H3427"\w* \w Canaan|strong="H3667"\w*. +\p +\v 13 \w The|strong="H3605"\w* \w whole|strong="H3605"\w* \w congregation|strong="H5712"\w* \w sent|strong="H7971"\w* \w and|strong="H1121"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w in|strong="H1696"\w* \w the|strong="H3605"\w* \w rock|strong="H5553"\w* \w of|strong="H1121"\w* \w Rimmon|strong="H7417"\w*, \w and|strong="H1121"\w* \w proclaimed|strong="H7121"\w* \w peace|strong="H7965"\w* \w to|strong="H1696"\w* \w them|strong="H7971"\w*. +\v 14 \w Benjamin|strong="H1144"\w* \w returned|strong="H7725"\w* \w at|strong="H7725"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w*; \w and|strong="H7725"\w* \w they|strong="H3651"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w the|strong="H5414"\w* women whom \w they|strong="H3651"\w* \w had|strong="H5414"\w* \w saved|strong="H2421"\w* \w alive|strong="H2421"\w* \w of|strong="H6256"\w* \w the|strong="H5414"\w* women \w of|strong="H6256"\w* \w Jabesh|strong="H3003"\w* \w Gilead|strong="H1568"\w*. \w There|strong="H4672"\w* \w still|strong="H7725"\w* weren’t \w enough|strong="H4672"\w* \w for|strong="H6256"\w* \w them|strong="H5414"\w*. +\v 15 \w The|strong="H3588"\w* \w people|strong="H5971"\w* grieved \w for|strong="H3588"\w* \w Benjamin|strong="H1144"\w*, \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w breach|strong="H6556"\w* \w in|strong="H3478"\w* \w the|strong="H3588"\w* \w tribes|strong="H7626"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\v 16 \w Then|strong="H6213"\w* \w the|strong="H3588"\w* \w elders|strong="H2205"\w* \w of|strong="H2205"\w* \w the|strong="H3588"\w* \w congregation|strong="H5712"\w* said, “\w How|strong="H4100"\w* \w shall|strong="H5712"\w* \w we|strong="H3068"\w* \w provide|strong="H6213"\w* wives \w for|strong="H3588"\w* \w those|strong="H6213"\w* \w who|strong="H3588"\w* \w remain|strong="H3498"\w*, \w since|strong="H3588"\w* \w the|strong="H3588"\w* \w women|strong="H2205"\w* \w are|strong="H4100"\w* \w destroyed|strong="H8045"\w* \w out|strong="H6213"\w* \w of|strong="H2205"\w* \w Benjamin|strong="H1144"\w*?” +\v 17 \w They|strong="H3808"\w* said, “There \w must|strong="H3478"\w* \w be|strong="H3808"\w* \w an|strong="H3478"\w* \w inheritance|strong="H3425"\w* \w for|strong="H3478"\w* those \w who|strong="H3478"\w* \w are|strong="H3478"\w* \w escaped|strong="H6413"\w* \w of|strong="H7626"\w* \w Benjamin|strong="H1144"\w*, \w that|strong="H3478"\w* \w a|strong="H3068"\w* \w tribe|strong="H7626"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w blotted|strong="H4229"\w* \w out|strong="H4229"\w* \w from|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\v 18 \w However|strong="H3588"\w*, \w we|strong="H3068"\w* \w may|strong="H3201"\w* \w not|strong="H3808"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* wives \w of|strong="H1121"\w* \w our|strong="H5414"\w* \w daughters|strong="H1323"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w had|strong="H3478"\w* \w sworn|strong="H7650"\w*, saying, ‘Cursed \w is|strong="H3478"\w* \w he|strong="H3588"\w* \w who|strong="H1121"\w* \w gives|strong="H5414"\w* \w a|strong="H3068"\w* wife \w to|strong="H3478"\w* \w Benjamin|strong="H1144"\w*.’” +\v 19 \w They|strong="H3117"\w* said, “\w Behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w feast|strong="H2282"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w from|strong="H5927"\w* \w year|strong="H3117"\w* \w to|strong="H3068"\w* \w year|strong="H3117"\w* \w in|strong="H3068"\w* \w Shiloh|strong="H7887"\w*, \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w on|strong="H3117"\w* \w the|strong="H3068"\w* \w north|strong="H6828"\w* \w of|strong="H3068"\w* \w Bethel|strong="H1008"\w*, \w on|strong="H3117"\w* \w the|strong="H3068"\w* \w east|strong="H4217"\w* \w side|strong="H6828"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w highway|strong="H4546"\w* \w that|strong="H3117"\w* \w goes|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5927"\w* \w Bethel|strong="H1008"\w* \w to|strong="H3068"\w* \w Shechem|strong="H7927"\w*, \w and|strong="H3068"\w* \w on|strong="H3117"\w* \w the|strong="H3068"\w* \w south|strong="H5045"\w* \w of|strong="H3068"\w* \w Lebonah|strong="H3829"\w*.” +\v 20 They \w commanded|strong="H6680"\w* \w the|strong="H6680"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*, saying, “\w Go|strong="H3212"\w* \w and|strong="H1121"\w* lie \w in|strong="H3212"\w* wait \w in|strong="H3212"\w* \w the|strong="H6680"\w* \w vineyards|strong="H3754"\w*, +\v 21 \w and|strong="H1980"\w* \w see|strong="H7200"\w*, \w and|strong="H1980"\w* \w behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w the|strong="H7200"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w Shiloh|strong="H7887"\w* \w come|strong="H1980"\w* \w out|strong="H3318"\w* \w to|strong="H1980"\w* \w dance|strong="H4246"\w* \w in|strong="H1980"\w* \w the|strong="H7200"\w* \w dances|strong="H4246"\w*, \w then|strong="H1980"\w* \w come|strong="H1980"\w* \w out|strong="H3318"\w* \w of|strong="H1323"\w* \w the|strong="H7200"\w* \w vineyards|strong="H3754"\w*, \w and|strong="H1980"\w* each \w man|strong="H7200"\w* \w catch|strong="H2414"\w* \w his|strong="H7200"\w* wife \w of|strong="H1323"\w* \w the|strong="H7200"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w Shiloh|strong="H7887"\w*, \w and|strong="H1980"\w* \w go|strong="H1980"\w* \w to|strong="H1980"\w* \w the|strong="H7200"\w* land \w of|strong="H1323"\w* \w Benjamin|strong="H1144"\w*. +\v 22 \w It|strong="H5414"\w* \w shall|strong="H3808"\w* \w be|strong="H1961"\w*, \w when|strong="H3588"\w* \w their|strong="H5414"\w* fathers \w or|strong="H3808"\w* \w their|strong="H5414"\w* brothers \w come|strong="H1961"\w* \w to|strong="H1961"\w* \w complain|strong="H7378"\w* \w to|strong="H1961"\w* \w us|strong="H5414"\w*, \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w will|strong="H1961"\w* say \w to|strong="H1961"\w* \w them|strong="H5414"\w*, ‘\w Grant|strong="H5414"\w* \w them|strong="H5414"\w* \w graciously|strong="H2603"\w* \w to|strong="H1961"\w* \w us|strong="H5414"\w*, \w because|strong="H3588"\w* \w we|strong="H3068"\w* didn’t \w take|strong="H3947"\w* \w for|strong="H3588"\w* \w each|strong="H5414"\w* man \w his|strong="H5414"\w* wife \w in|strong="H4421"\w* \w battle|strong="H4421"\w*, \w neither|strong="H3808"\w* \w did|strong="H3808"\w* \w you|strong="H3588"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H1961"\w* \w them|strong="H5414"\w*; \w otherwise|strong="H3808"\w* \w you|strong="H3588"\w* would \w now|strong="H1961"\w* \w be|strong="H1961"\w* guilty.’” +\p +\v 23 \w The|strong="H5375"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*, \w and|strong="H1121"\w* \w took|strong="H5375"\w* wives \w for|strong="H6213"\w* \w themselves|strong="H6213"\w* \w according|strong="H4480"\w* \w to|strong="H7725"\w* \w their|strong="H5375"\w* \w number|strong="H4557"\w*, \w of|strong="H1121"\w* \w those|strong="H4480"\w* \w who|strong="H1121"\w* \w danced|strong="H2342"\w*, whom \w they|strong="H3651"\w* \w carried|strong="H5375"\w* \w off|strong="H4480"\w*. \w They|strong="H3651"\w* \w went|strong="H3212"\w* \w and|strong="H1121"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w their|strong="H5375"\w* \w inheritance|strong="H5159"\w*, \w built|strong="H1129"\w* \w the|strong="H5375"\w* \w cities|strong="H5892"\w*, \w and|strong="H1121"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w them|strong="H7725"\w*. +\v 24 \w The|strong="H3318"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w departed|strong="H1980"\w* \w from|strong="H3318"\w* \w there|strong="H8033"\w* \w at|strong="H3478"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w*, \w every|strong="H4940"\w* \w man|strong="H1121"\w* \w to|strong="H1980"\w* \w his|strong="H3478"\w* \w tribe|strong="H7626"\w* \w and|strong="H1121"\w* \w to|strong="H1980"\w* \w his|strong="H3478"\w* \w family|strong="H4940"\w*, \w and|strong="H1121"\w* \w they|strong="H8033"\w* each \w went|strong="H1980"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w there|strong="H8033"\w* \w to|strong="H1980"\w* \w his|strong="H3478"\w* own \w inheritance|strong="H5159"\w*. +\v 25 \w In|strong="H3478"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w* \w there|strong="H1992"\w* \w was|strong="H3478"\w* \w no|strong="H6213"\w* \w king|strong="H4428"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. Everyone \w did|strong="H6213"\w* \w that|strong="H3117"\w* \w which|strong="H1992"\w* \w was|strong="H3478"\w* \w right|strong="H3477"\w* \w in|strong="H3478"\w* \w his|strong="H3478"\w* \w own|strong="H5869"\w* \w eyes|strong="H5869"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/09-RUTeng-web.usfm b/bibles/eng-web_usfm/09-RUTeng-web.usfm new file mode 100644 index 0000000..48ec3c0 --- /dev/null +++ b/bibles/eng-web_usfm/09-RUTeng-web.usfm @@ -0,0 +1,139 @@ +\id RUT World English Bible (WEB) +\ide UTF-8 +\h Ruth +\toc1 The Book of Ruth +\toc2 Ruth +\toc3 Rut +\mt2 The Book of +\mt1 Ruth +\c 1 +\p +\v 1 \w In|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w when|strong="H1961"\w* \w the|strong="H3117"\w* \w judges|strong="H8199"\w* \w judged|strong="H8199"\w*, \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w famine|strong="H7458"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w land|strong="H7704"\w*. \w A|strong="H3068"\w* certain \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w Bethlehem|strong="H1035"\w* \w Judah|strong="H3063"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w live|strong="H1481"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w country|strong="H7704"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w* \w with|strong="H3117"\w* \w his|strong="H1961"\w* wife \w and|strong="H1121"\w* \w his|strong="H1961"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w*. +\v 2 \w The|strong="H1961"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w man|strong="H1121"\w* \w was|strong="H8034"\w* Elimelech, \w and|strong="H1121"\w* \w the|strong="H1961"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w his|strong="H1961"\w* wife \w Naomi|strong="H5281"\w*. \w The|strong="H1961"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w his|strong="H1961"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w* \w were|strong="H1961"\w* \w Mahlon|strong="H4248"\w* \w and|strong="H1121"\w* \w Chilion|strong="H3630"\w*, Ephrathites \w of|strong="H1121"\w* \w Bethlehem|strong="H1035"\w* \w Judah|strong="H3063"\w*. \w They|strong="H8033"\w* \w came|strong="H1961"\w* \w into|strong="H1961"\w* \w the|strong="H1961"\w* \w country|strong="H7704"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w* \w and|strong="H1121"\w* \w lived|strong="H1961"\w* \w there|strong="H8033"\w*. +\v 3 Elimelech, \w Naomi|strong="H5281"\w*’s husband, \w died|strong="H4191"\w*; \w and|strong="H1121"\w* \w she|strong="H1931"\w* \w was|strong="H1931"\w* \w left|strong="H7604"\w* \w with|strong="H4191"\w* \w her|strong="H1931"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w*. +\v 4 \w They|strong="H8033"\w* \w took|strong="H5375"\w* \w for|strong="H8034"\w* themselves wives \w of|strong="H8141"\w* \w the|strong="H5375"\w* women \w of|strong="H8141"\w* \w Moab|strong="H4125"\w*. \w The|strong="H5375"\w* \w name|strong="H8034"\w* \w of|strong="H8141"\w* \w the|strong="H5375"\w* \w one|strong="H5375"\w* \w was|strong="H8034"\w* \w Orpah|strong="H6204"\w*, \w and|strong="H8033"\w* \w the|strong="H5375"\w* \w name|strong="H8034"\w* \w of|strong="H8141"\w* \w the|strong="H5375"\w* \w other|strong="H8145"\w* \w was|strong="H8034"\w* \w Ruth|strong="H7327"\w*. \w They|strong="H8033"\w* \w lived|strong="H3427"\w* \w there|strong="H8033"\w* \w about|strong="H8033"\w* \w ten|strong="H6235"\w* \w years|strong="H8141"\w*. +\v 5 \w Mahlon|strong="H4248"\w* \w and|strong="H8147"\w* \w Chilion|strong="H3630"\w* \w both|strong="H8147"\w* \w died|strong="H4191"\w*, \w and|strong="H8147"\w* \w the|strong="H1571"\w* woman \w was|strong="H3206"\w* bereaved \w of|strong="H8147"\w* \w her|strong="H1571"\w* \w two|strong="H8147"\w* \w children|strong="H3206"\w* \w and|strong="H8147"\w* \w of|strong="H8147"\w* \w her|strong="H1571"\w* husband. +\v 6 \w Then|strong="H6965"\w* \w she|strong="H1931"\w* \w arose|strong="H6965"\w* \w with|strong="H3068"\w* \w her|strong="H5414"\w* \w daughters-in-law|strong="H3618"\w*, \w that|strong="H3588"\w* \w she|strong="H1931"\w* \w might|strong="H3068"\w* \w return|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H8085"\w* \w country|strong="H7704"\w* \w of|strong="H3068"\w* \w Moab|strong="H4124"\w*; \w for|strong="H3588"\w* \w she|strong="H1931"\w* \w had|strong="H3068"\w* \w heard|strong="H8085"\w* \w in|strong="H3068"\w* \w the|strong="H8085"\w* \w country|strong="H7704"\w* \w of|strong="H3068"\w* \w Moab|strong="H4124"\w* \w how|strong="H3588"\w* \w Yahweh|strong="H3068"\w*\f + \fr 1:6 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w had|strong="H3068"\w* \w visited|strong="H6485"\w* \w his|strong="H5414"\w* \w people|strong="H5971"\w* \w in|strong="H3068"\w* \w giving|strong="H5414"\w* \w them|strong="H5414"\w* \w bread|strong="H3899"\w*. +\v 7 \w She|strong="H8147"\w* \w went|strong="H3212"\w* \w out|strong="H3318"\w* \w of|strong="H1870"\w* \w the|strong="H4480"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w she|strong="H8147"\w* \w was|strong="H1961"\w*, \w and|strong="H3063"\w* \w her|strong="H3318"\w* \w two|strong="H8147"\w* \w daughters-in-law|strong="H3618"\w* \w with|strong="H5973"\w* \w her|strong="H3318"\w*. \w They|strong="H8033"\w* \w went|strong="H3212"\w* \w on|strong="H1870"\w* \w the|strong="H4480"\w* \w way|strong="H1870"\w* \w to|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H4480"\w* \w land|strong="H4725"\w* \w of|strong="H1870"\w* \w Judah|strong="H3063"\w*. +\v 8 \w Naomi|strong="H5281"\w* said \w to|strong="H7725"\w* \w her|strong="H7725"\w* \w two|strong="H8147"\w* \w daughters-in-law|strong="H3618"\w*, “\w Go|strong="H3212"\w*, \w return|strong="H7725"\w* \w each|strong="H8147"\w* \w of|strong="H1004"\w* \w you|strong="H7725"\w* \w to|strong="H7725"\w* \w her|strong="H7725"\w* mother’s \w house|strong="H1004"\w*. \w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w deal|strong="H6213"\w* \w kindly|strong="H2617"\w* \w with|strong="H5973"\w* \w you|strong="H7725"\w*, \w as|strong="H6213"\w* \w you|strong="H7725"\w* \w have|strong="H3068"\w* \w dealt|strong="H6213"\w* \w with|strong="H5973"\w* \w the|strong="H6213"\w* \w dead|strong="H4191"\w* \w and|strong="H3068"\w* \w with|strong="H5973"\w* \w me|strong="H7725"\w*. +\v 9 \w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w grant|strong="H5414"\w* \w you|strong="H5414"\w* \w that|strong="H3068"\w* \w you|strong="H5414"\w* \w may|strong="H3068"\w* \w find|strong="H4672"\w* \w rest|strong="H4496"\w*, \w each|strong="H5414"\w* \w of|strong="H1004"\w* \w you|strong="H5414"\w* \w in|strong="H3068"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w her|strong="H5414"\w* husband.” +\p \w Then|strong="H5375"\w* she \w kissed|strong="H5401"\w* \w them|strong="H5414"\w*, \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w their|strong="H3068"\w* \w voices|strong="H6963"\w*, \w and|strong="H3068"\w* \w wept|strong="H1058"\w*. +\v 10 \w They|strong="H3588"\w* said \w to|strong="H7725"\w* \w her|strong="H7725"\w*, “No, \w but|strong="H3588"\w* \w we|strong="H3068"\w* \w will|strong="H5971"\w* \w return|strong="H7725"\w* \w with|strong="H5971"\w* \w you|strong="H3588"\w* \w to|strong="H7725"\w* \w your|strong="H7725"\w* \w people|strong="H5971"\w*.” +\p +\v 11 \w Naomi|strong="H5281"\w* said, “\w Go|strong="H3212"\w* \w back|strong="H7725"\w*, \w my|strong="H7725"\w* \w daughters|strong="H1323"\w*. \w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H7725"\w* want \w to|strong="H7725"\w* \w go|strong="H3212"\w* \w with|strong="H5973"\w* \w me|strong="H7725"\w*? \w Do|strong="H4100"\w* \w I|strong="H4100"\w* \w still|strong="H5750"\w* \w have|strong="H1961"\w* \w sons|strong="H1121"\w* \w in|strong="H3212"\w* \w my|strong="H7725"\w* \w womb|strong="H4578"\w*, \w that|strong="H1121"\w* \w they|strong="H4100"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w your|strong="H7725"\w* \w husbands|strong="H5973"\w*? +\v 12 \w Go|strong="H3212"\w* \w back|strong="H7725"\w*, \w my|strong="H7725"\w* \w daughters|strong="H1323"\w*, \w go|strong="H3212"\w* \w your|strong="H7725"\w* \w way|strong="H3212"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w too|strong="H1571"\w* \w old|strong="H1121"\w* \w to|strong="H7725"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* husband. \w If|strong="H3588"\w* \w I|strong="H3588"\w* \w should|strong="H3588"\w* \w say|strong="H7725"\w*, ‘\w I|strong="H3588"\w* \w have|strong="H1961"\w* \w hope|strong="H8615"\w*,’ \w if|strong="H3588"\w* \w I|strong="H3588"\w* \w should|strong="H3588"\w* \w even|strong="H1571"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* husband \w tonight|strong="H3915"\w*, \w and|strong="H1121"\w* \w should|strong="H3588"\w* \w also|strong="H1571"\w* \w bear|strong="H3205"\w* \w sons|strong="H1121"\w*, +\v 13 \w would|strong="H3068"\w* \w you|strong="H3588"\w* \w then|strong="H1961"\w* \w wait|strong="H7663"\w* \w until|strong="H5704"\w* \w they|strong="H3588"\w* \w were|strong="H1961"\w* \w grown|strong="H1431"\w*? \w Would|strong="H3068"\w* \w you|strong="H3588"\w* \w then|strong="H1961"\w* \w refrain|strong="H5702"\w* \w from|strong="H4480"\w* \w having|strong="H1961"\w* husbands? \w No|strong="H1115"\w*, \w my|strong="H3068"\w* \w daughters|strong="H1323"\w*, \w for|strong="H3588"\w* \w it|strong="H3588"\w* grieves \w me|strong="H4480"\w* seriously \w for|strong="H3588"\w* \w your|strong="H3068"\w* sakes, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w has|strong="H3068"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w against|strong="H4480"\w* \w me|strong="H4480"\w*.” +\p +\v 14 \w They|strong="H5375"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w their|strong="H5375"\w* \w voices|strong="H6963"\w* \w and|strong="H6963"\w* \w wept|strong="H1058"\w* \w again|strong="H5750"\w*; \w then|strong="H5375"\w* \w Orpah|strong="H6204"\w* \w kissed|strong="H5401"\w* \w her|strong="H5375"\w* \w mother-in-law|strong="H2545"\w*, \w but|strong="H5750"\w* \w Ruth|strong="H7327"\w* \w stayed|strong="H5750"\w* \w with|strong="H5375"\w* \w her|strong="H5375"\w*. +\v 15 She said, “\w Behold|strong="H2009"\w*,\f + \fr 1:15 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w your|strong="H7725"\w* \w sister-in-law|strong="H2994"\w* \w has|strong="H2009"\w* \w gone|strong="H7725"\w* \w back|strong="H7725"\w* \w to|strong="H7725"\w* \w her|strong="H7725"\w* \w people|strong="H5971"\w* \w and|strong="H7725"\w* \w to|strong="H7725"\w* \w her|strong="H7725"\w* god. Follow \w your|strong="H7725"\w* \w sister-in-law|strong="H2994"\w*.” +\p +\v 16 \w Ruth|strong="H7327"\w* said, “Don’t \w urge|strong="H6293"\w* \w me|strong="H7725"\w* \w to|strong="H7725"\w* \w leave|strong="H5800"\w* \w you|strong="H3588"\w*, \w and|strong="H7725"\w* \w to|strong="H7725"\w* \w return|strong="H7725"\w* \w from|strong="H7725"\w* \w following|strong="H3212"\w* \w you|strong="H3588"\w*, \w for|strong="H3588"\w* where \w you|strong="H3588"\w* \w go|strong="H3212"\w*, \w I|strong="H3588"\w* \w will|strong="H5971"\w* \w go|strong="H3212"\w*; \w and|strong="H7725"\w* where \w you|strong="H3588"\w* \w stay|strong="H3885"\w*, \w I|strong="H3588"\w* \w will|strong="H5971"\w* \w stay|strong="H3885"\w*. \w Your|strong="H7725"\w* \w people|strong="H5971"\w* \w will|strong="H5971"\w* \w be|strong="H5971"\w* \w my|strong="H7725"\w* \w people|strong="H5971"\w*, \w and|strong="H7725"\w* \w your|strong="H7725"\w* God\f + \fr 1:16 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w my|strong="H7725"\w* God. +\v 17 \w Where|strong="H8033"\w* \w you|strong="H3588"\w* \w die|strong="H4191"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w die|strong="H4191"\w*, \w and|strong="H3068"\w* \w there|strong="H8033"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H4191"\w* \w buried|strong="H6912"\w*. \w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w do|strong="H6213"\w* \w so|strong="H6213"\w* \w to|strong="H4191"\w* \w me|strong="H6213"\w*, \w and|strong="H3068"\w* \w more|strong="H3254"\w* \w also|strong="H3068"\w*, \w if|strong="H3588"\w* \w anything|strong="H6213"\w* \w but|strong="H3588"\w* \w death|strong="H4194"\w* \w parts|strong="H6504"\w* \w you|strong="H3588"\w* \w and|strong="H3068"\w* \w me|strong="H6213"\w*.” +\p +\v 18 \w When|strong="H3588"\w* Naomi \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w she|strong="H1931"\w* \w was|strong="H1931"\w* determined \w to|strong="H1696"\w* \w go|strong="H3212"\w* \w with|strong="H1696"\w* \w her|strong="H7200"\w*, \w she|strong="H1931"\w* \w stopped|strong="H2308"\w* urging \w her|strong="H7200"\w*. +\p +\v 19 \w So|strong="H1961"\w* \w they|strong="H5921"\w* \w both|strong="H8147"\w* \w went|strong="H3212"\w* \w until|strong="H5704"\w* \w they|strong="H5921"\w* \w came|strong="H1961"\w* \w to|strong="H5704"\w* \w Bethlehem|strong="H1035"\w*. \w When|strong="H1961"\w* \w they|strong="H5921"\w* \w had|strong="H1961"\w* \w come|strong="H1961"\w* \w to|strong="H5704"\w* \w Bethlehem|strong="H1035"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w was|strong="H1961"\w* excited \w about|strong="H1961"\w* \w them|strong="H5921"\w*, \w and|strong="H3212"\w* \w they|strong="H5921"\w* asked, “\w Is|strong="H3605"\w* \w this|strong="H2063"\w* \w Naomi|strong="H5281"\w*?” +\p +\v 20 \w She|strong="H3588"\w* \w said|strong="H7121"\w* \w to|strong="H7121"\w* \w them|strong="H7121"\w*, “Don’t \w call|strong="H7121"\w* \w me|strong="H7121"\w* \w Naomi|strong="H5281"\w*.\f + \fr 1:20 \ft “Naomi” means “pleasant”.\f* \w Call|strong="H7121"\w* \w me|strong="H7121"\w* \w Mara|strong="H4755"\w*,\f + \fr 1:20 \ft “Mara” means “bitter”.\f* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w Almighty|strong="H7706"\w* \w has|strong="H3588"\w* \w dealt|strong="H4843"\w* \w very|strong="H3966"\w* \w bitterly|strong="H4843"\w* \w with|strong="H4843"\w* \w me|strong="H7121"\w*. +\v 21 \w I|strong="H4100"\w* \w went|strong="H1980"\w* \w out|strong="H1980"\w* \w full|strong="H4392"\w*, \w and|strong="H1980"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w brought|strong="H7725"\w* \w me|strong="H7725"\w* \w home|strong="H7725"\w* \w again|strong="H7725"\w* \w empty|strong="H7387"\w*. \w Why|strong="H4100"\w* \w do|strong="H7489"\w* \w you|strong="H7725"\w* \w call|strong="H7121"\w* \w me|strong="H7725"\w* \w Naomi|strong="H5281"\w*, since \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w testified|strong="H6030"\w* \w against|strong="H3068"\w* \w me|strong="H7725"\w*, \w and|strong="H1980"\w* \w the|strong="H3068"\w* \w Almighty|strong="H7706"\w* \w has|strong="H3068"\w* \w afflicted|strong="H7489"\w* \w me|strong="H7725"\w*?” +\v 22 \w So|strong="H7725"\w* \w Naomi|strong="H5281"\w* \w returned|strong="H7725"\w*, \w and|strong="H7725"\w* \w Ruth|strong="H7327"\w* \w the|strong="H7725"\w* \w Moabitess|strong="H4125"\w*, \w her|strong="H7725"\w* \w daughter-in-law|strong="H3618"\w*, \w with|strong="H5973"\w* \w her|strong="H7725"\w*, \w who|strong="H1992"\w* \w returned|strong="H7725"\w* \w out|strong="H7725"\w* \w of|strong="H7704"\w* \w the|strong="H7725"\w* \w country|strong="H7704"\w* \w of|strong="H7704"\w* \w Moab|strong="H4124"\w*. \w They|strong="H1992"\w* \w came|strong="H7725"\w* \w to|strong="H7725"\w* \w Bethlehem|strong="H1035"\w* \w in|strong="H7725"\w* \w the|strong="H7725"\w* \w beginning|strong="H8462"\w* \w of|strong="H7704"\w* \w barley|strong="H8184"\w* \w harvest|strong="H7105"\w*. +\c 2 +\p +\v 1 \w Naomi|strong="H5281"\w* \w had|strong="H3045"\w* \w a|strong="H3068"\w* relative \w of|strong="H8034"\w* \w her|strong="H3045"\w* husband’s, \w a|strong="H3068"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w* \w of|strong="H8034"\w* \w wealth|strong="H2428"\w*, \w of|strong="H8034"\w* \w the|strong="H3045"\w* \w family|strong="H4940"\w* \w of|strong="H8034"\w* Elimelech, \w and|strong="H3045"\w* \w his|strong="H3045"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Boaz|strong="H1162"\w*. +\v 2 \w Ruth|strong="H7327"\w* \w the|strong="H4672"\w* \w Moabitess|strong="H4125"\w* said \w to|strong="H3212"\w* \w Naomi|strong="H5281"\w*, “\w Let|strong="H4994"\w* \w me|strong="H4994"\w* \w now|strong="H4994"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H4672"\w* \w field|strong="H7704"\w*, \w and|strong="H3212"\w* \w glean|strong="H3950"\w* \w among|strong="H4672"\w* \w the|strong="H4672"\w* \w ears|strong="H7641"\w* \w of|strong="H1323"\w* \w grain|strong="H7641"\w* after \w him|strong="H4672"\w* \w in|strong="H3212"\w* \w whose|strong="H1323"\w* \w sight|strong="H5869"\w* \w I|strong="H4672"\w* \w find|strong="H4672"\w* \w favor|strong="H2580"\w*.” +\p She said \w to|strong="H3212"\w* \w her|strong="H4672"\w*, “\w Go|strong="H3212"\w*, \w my|strong="H4672"\w* \w daughter|strong="H1323"\w*.” +\v 3 She \w went|strong="H3212"\w*, \w and|strong="H3212"\w* \w came|strong="H3212"\w* \w and|strong="H3212"\w* \w gleaned|strong="H3950"\w* \w in|strong="H3212"\w* \w the|strong="H3212"\w* \w field|strong="H7704"\w* after \w the|strong="H3212"\w* \w reapers|strong="H7114"\w*; \w and|strong="H3212"\w* she \w happened|strong="H7136"\w* \w to|strong="H3212"\w* \w come|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H3212"\w* \w portion|strong="H2513"\w* \w of|strong="H7704"\w* \w the|strong="H3212"\w* \w field|strong="H7704"\w* belonging \w to|strong="H3212"\w* \w Boaz|strong="H1162"\w*, who \w was|strong="H4940"\w* \w of|strong="H7704"\w* \w the|strong="H3212"\w* \w family|strong="H4940"\w* \w of|strong="H7704"\w* Elimelech. +\p +\v 4 \w Behold|strong="H2009"\w*, \w Boaz|strong="H1162"\w* \w came|strong="H3068"\w* \w from|strong="H3068"\w* \w Bethlehem|strong="H1035"\w*, \w and|strong="H3068"\w* said \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w reapers|strong="H7114"\w*, “\w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w be|strong="H3068"\w* \w with|strong="H5973"\w* \w you|strong="H5973"\w*.” +\p \w They|strong="H3068"\w* answered \w him|strong="H5973"\w*, “\w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w bless|strong="H1288"\w* \w you|strong="H5973"\w*.” +\p +\v 5 Then \w Boaz|strong="H1162"\w* said \w to|strong="H5921"\w* \w his|strong="H5921"\w* \w servant|strong="H5288"\w* \w who|strong="H4310"\w* \w was|strong="H5288"\w* \w set|strong="H5324"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w reapers|strong="H7114"\w*, “\w Whose|strong="H4310"\w* \w young|strong="H5288"\w* \w lady|strong="H5291"\w* \w is|strong="H4310"\w* \w this|strong="H2063"\w*?” +\p +\v 6 \w The|strong="H5921"\w* \w servant|strong="H5288"\w* \w who|strong="H1931"\w* \w was|strong="H1931"\w* \w set|strong="H5324"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w reapers|strong="H7114"\w* \w answered|strong="H6030"\w*, “\w It|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H5921"\w* \w Moabite|strong="H4125"\w* \w lady|strong="H5291"\w* \w who|strong="H1931"\w* \w came|strong="H7725"\w* \w back|strong="H7725"\w* \w with|strong="H5973"\w* \w Naomi|strong="H5281"\w* \w out|strong="H5921"\w* \w of|strong="H7704"\w* \w the|strong="H5921"\w* \w country|strong="H7704"\w* \w of|strong="H7704"\w* \w Moab|strong="H4124"\w*. +\v 7 \w She|strong="H1242"\w* said, ‘\w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w me|strong="H4994"\w* \w glean|strong="H3950"\w* \w and|strong="H1004"\w* \w gather|strong="H3950"\w* \w after|strong="H1242"\w* \w the|strong="H5704"\w* \w reapers|strong="H7114"\w* \w among|strong="H3427"\w* \w the|strong="H5704"\w* \w sheaves|strong="H6016"\w*.’ \w So|strong="H6258"\w* \w she|strong="H1242"\w* came, \w and|strong="H1004"\w* \w has|strong="H2088"\w* \w continued|strong="H3427"\w* \w even|strong="H5704"\w* \w from|strong="H5704"\w* \w the|strong="H5704"\w* \w morning|strong="H1242"\w* \w until|strong="H5704"\w* \w now|strong="H6258"\w*, except \w that|strong="H2088"\w* \w she|strong="H1242"\w* rested \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w in|strong="H3427"\w* \w the|strong="H5704"\w* \w house|strong="H1004"\w*.” +\p +\v 8 \w Then|strong="H2088"\w* \w Boaz|strong="H1162"\w* \w said|strong="H8085"\w* \w to|strong="H3212"\w* \w Ruth|strong="H7327"\w*, “\w Listen|strong="H8085"\w*, \w my|strong="H8085"\w* \w daughter|strong="H1323"\w*. Don’t \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w glean|strong="H3950"\w* \w in|strong="H8085"\w* \w another|strong="H2088"\w* \w field|strong="H7704"\w*, \w and|strong="H3212"\w* don’t \w go|strong="H3212"\w* \w from|strong="H8085"\w* \w here|strong="H2088"\w*, \w but|strong="H3808"\w* \w stay|strong="H1692"\w* \w here|strong="H2088"\w* \w close|strong="H1692"\w* \w to|strong="H3212"\w* \w my|strong="H8085"\w* \w maidens|strong="H5291"\w*. +\v 9 \w Let|strong="H3808"\w* \w your|strong="H6680"\w* \w eyes|strong="H5869"\w* \w be|strong="H3808"\w* \w on|strong="H1980"\w* \w the|strong="H6680"\w* \w field|strong="H7704"\w* \w that|strong="H5288"\w* \w they|strong="H3808"\w* \w reap|strong="H7114"\w*, \w and|strong="H1980"\w* \w go|strong="H1980"\w* \w after|strong="H1980"\w* \w them|strong="H6680"\w*. Haven’t \w I|strong="H6680"\w* \w commanded|strong="H6680"\w* \w the|strong="H6680"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w not|strong="H3808"\w* \w to|strong="H1980"\w* \w touch|strong="H5060"\w* \w you|strong="H6680"\w*? \w When|strong="H1980"\w* \w you|strong="H6680"\w* \w are|strong="H5869"\w* \w thirsty|strong="H6770"\w*, \w go|strong="H1980"\w* \w to|strong="H1980"\w* \w the|strong="H6680"\w* \w vessels|strong="H3627"\w*, \w and|strong="H1980"\w* \w drink|strong="H8354"\w* \w from|strong="H1980"\w* \w that|strong="H5288"\w* \w which|strong="H5869"\w* \w the|strong="H6680"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w have|strong="H5869"\w* \w drawn|strong="H7579"\w*.” +\p +\v 10 \w Then|strong="H5307"\w* \w she|strong="H5921"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w* \w face|strong="H6440"\w* \w and|strong="H5869"\w* \w bowed|strong="H7812"\w* \w herself|strong="H7812"\w* \w to|strong="H5921"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w*, \w and|strong="H5869"\w* said \w to|strong="H5921"\w* \w him|strong="H6440"\w*, “\w Why|strong="H4069"\w* \w have|strong="H5869"\w* \w I|strong="H5921"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w sight|strong="H5869"\w*, \w that|strong="H5307"\w* \w you|strong="H6440"\w* \w should|strong="H4069"\w* \w take|strong="H5234"\w* \w knowledge|strong="H5234"\w* \w of|strong="H6440"\w* \w me|strong="H6440"\w*, since \w I|strong="H5921"\w* am \w a|strong="H3068"\w* \w foreigner|strong="H5237"\w*?” +\p +\v 11 \w Boaz|strong="H1162"\w* \w answered|strong="H6030"\w* \w her|strong="H3605"\w*, “\w I|strong="H3045"\w* \w have|strong="H5971"\w* \w been|strong="H4194"\w* \w told|strong="H5046"\w* \w all|strong="H3605"\w* \w about|strong="H6213"\w* \w what|strong="H3045"\w* \w you|strong="H3605"\w* \w have|strong="H5971"\w* \w done|strong="H6213"\w* \w for|strong="H6213"\w* \w your|strong="H3605"\w* \w mother-in-law|strong="H2545"\w* since \w the|strong="H3605"\w* \w death|strong="H4194"\w* \w of|strong="H5971"\w* \w your|strong="H3605"\w* husband, \w and|strong="H6030"\w* \w how|strong="H3045"\w* \w you|strong="H3605"\w* \w have|strong="H5971"\w* \w left|strong="H5800"\w* \w your|strong="H3605"\w* father, \w your|strong="H3605"\w* mother, \w and|strong="H6030"\w* \w the|strong="H3605"\w* land \w of|strong="H5971"\w* \w your|strong="H3605"\w* \w birth|strong="H4138"\w*, \w and|strong="H6030"\w* \w have|strong="H5971"\w* \w come|strong="H3212"\w* \w to|strong="H3212"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w that|strong="H3045"\w* \w you|strong="H3605"\w* didn’t \w know|strong="H3045"\w* \w before|strong="H3808"\w*. +\v 12 \w May|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w repay|strong="H7999"\w* \w your|strong="H3068"\w* \w work|strong="H6467"\w*, \w and|strong="H3478"\w* \w a|strong="H3068"\w* \w full|strong="H8003"\w* \w reward|strong="H7999"\w* \w be|strong="H1961"\w* given \w to|strong="H3478"\w* \w you|strong="H5973"\w* \w from|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w under|strong="H8478"\w* whose \w wings|strong="H3671"\w* \w you|strong="H5973"\w* \w have|strong="H1961"\w* \w come|strong="H1961"\w* \w to|strong="H3478"\w* \w take|strong="H2620"\w* \w refuge|strong="H2620"\w*.” +\p +\v 13 \w Then|strong="H1961"\w* \w she|strong="H3588"\w* \w said|strong="H1696"\w*, “\w Let|strong="H3808"\w* \w me|strong="H5921"\w* \w find|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w sight|strong="H5869"\w*, \w my|strong="H5921"\w* lord, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w comforted|strong="H5162"\w* \w me|strong="H5921"\w*, \w and|strong="H5869"\w* \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w spoken|strong="H1696"\w* \w kindly|strong="H3820"\w* \w to|strong="H1696"\w* \w your|strong="H5921"\w* \w servant|strong="H8198"\w*, \w though|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w not|strong="H3808"\w* \w as|strong="H1961"\w* \w one|strong="H3808"\w* \w of|strong="H5869"\w* \w your|strong="H5921"\w* \w servants|strong="H8198"\w*.” +\p +\v 14 \w At|strong="H3427"\w* \w meal|strong="H3899"\w* \w time|strong="H6256"\w* \w Boaz|strong="H1162"\w* said \w to|strong="H6256"\w* \w her|strong="H6642"\w*, “\w Come|strong="H5066"\w* \w here|strong="H1988"\w*, \w and|strong="H3899"\w* \w eat|strong="H3899"\w* \w some|strong="H4480"\w* \w bread|strong="H3899"\w*, \w and|strong="H3899"\w* \w dip|strong="H2881"\w* \w your|strong="H4480"\w* \w morsel|strong="H6595"\w* \w in|strong="H3427"\w* \w the|strong="H4480"\w* \w vinegar|strong="H2558"\w*.” +\p \w She|strong="H6256"\w* \w sat|strong="H3427"\w* \w beside|strong="H6654"\w* \w the|strong="H4480"\w* \w reapers|strong="H7114"\w*, \w and|strong="H3899"\w* \w they|strong="H6256"\w* \w passed|strong="H3427"\w* \w her|strong="H6642"\w* \w parched|strong="H7039"\w* \w grain|strong="H7039"\w*. \w She|strong="H6256"\w* ate, \w was|strong="H3427"\w* \w satisfied|strong="H7646"\w*, \w and|strong="H3899"\w* \w left|strong="H3498"\w* \w some|strong="H4480"\w* \w of|strong="H3427"\w* \w it|strong="H6256"\w*. +\v 15 \w When|strong="H1571"\w* \w she|strong="H1571"\w* \w had|strong="H6680"\w* \w risen|strong="H6965"\w* \w up|strong="H6965"\w* \w to|strong="H6965"\w* \w glean|strong="H3950"\w*, \w Boaz|strong="H1162"\w* \w commanded|strong="H6680"\w* \w his|strong="H6680"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w*, saying, “\w Let|strong="H3808"\w* \w her|strong="H1571"\w* \w glean|strong="H3950"\w* \w even|strong="H1571"\w* \w among|strong="H3808"\w* \w the|strong="H6680"\w* \w sheaves|strong="H6016"\w*, \w and|strong="H6965"\w* don’t \w reproach|strong="H3637"\w* \w her|strong="H1571"\w*. +\v 16 \w Also|strong="H1571"\w* \w pull|strong="H7997"\w* \w out|strong="H4480"\w* \w some|strong="H4480"\w* \w for|strong="H3808"\w* \w her|strong="H1571"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w bundles|strong="H6653"\w*, \w and|strong="H1571"\w* \w leave|strong="H5800"\w* \w it|strong="H3808"\w*. \w Let|strong="H5800"\w* \w her|strong="H1571"\w* \w glean|strong="H3950"\w*, \w and|strong="H1571"\w* don’t \w rebuke|strong="H1605"\w* \w her|strong="H1571"\w*.” +\p +\v 17 \w So|strong="H1961"\w* \w she|strong="H6153"\w* \w gleaned|strong="H3950"\w* \w in|strong="H1961"\w* \w the|strong="H5704"\w* \w field|strong="H7704"\w* \w until|strong="H5704"\w* \w evening|strong="H6153"\w*; \w and|strong="H7704"\w* \w she|strong="H6153"\w* \w beat|strong="H2251"\w* \w out|strong="H2251"\w* \w that|strong="H5704"\w* \w which|strong="H7704"\w* \w she|strong="H6153"\w* \w had|strong="H1961"\w* \w gleaned|strong="H3950"\w*, \w and|strong="H7704"\w* \w it|strong="H1961"\w* \w was|strong="H1961"\w* \w about|strong="H1961"\w* \w an|strong="H1961"\w* ephah\f + \fr 2:17 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w of|strong="H7704"\w* \w barley|strong="H8184"\w*. +\v 18 \w She|strong="H5892"\w* \w took|strong="H5375"\w* \w it|strong="H5414"\w* \w up|strong="H5375"\w*, \w and|strong="H5892"\w* \w went|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H7200"\w* \w city|strong="H5892"\w*. \w Then|strong="H3318"\w* \w her|strong="H5414"\w* \w mother-in-law|strong="H2545"\w* \w saw|strong="H7200"\w* \w what|strong="H7200"\w* \w she|strong="H5892"\w* \w had|strong="H5414"\w* \w gleaned|strong="H3950"\w*; \w and|strong="H5892"\w* \w she|strong="H5892"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H5892"\w* \w gave|strong="H5414"\w* \w to|strong="H3318"\w* \w her|strong="H5414"\w* \w that|strong="H7200"\w* \w which|strong="H5892"\w* \w she|strong="H5892"\w* \w had|strong="H5414"\w* \w left|strong="H3498"\w* \w after|strong="H3318"\w* \w she|strong="H5892"\w* \w had|strong="H5414"\w* \w enough|strong="H3498"\w*. +\p +\v 19 \w Her|strong="H5046"\w* \w mother-in-law|strong="H2545"\w* said \w to|strong="H1961"\w* \w her|strong="H5046"\w*, “Where \w have|strong="H1961"\w* \w you|strong="H3117"\w* \w gleaned|strong="H3950"\w* \w today|strong="H3117"\w*? Where \w have|strong="H1961"\w* \w you|strong="H3117"\w* \w worked|strong="H6213"\w*? \w Blessed|strong="H1288"\w* \w be|strong="H1961"\w* \w he|strong="H3117"\w* \w who|strong="H6213"\w* \w noticed|strong="H5234"\w* \w you|strong="H3117"\w*.” +\p \w She|strong="H5973"\w* \w told|strong="H5046"\w* \w her|strong="H5046"\w* \w mother-in-law|strong="H2545"\w* \w with|strong="H5973"\w* whom \w she|strong="H5973"\w* \w had|strong="H1961"\w* \w worked|strong="H6213"\w*, “\w The|strong="H6213"\w* man’s \w name|strong="H8034"\w* \w with|strong="H5973"\w* whom \w I|strong="H3117"\w* \w worked|strong="H6213"\w* \w today|strong="H3117"\w* \w is|strong="H3117"\w* \w Boaz|strong="H1162"\w*.” +\v 20 \w Naomi|strong="H5281"\w* said \w to|strong="H4191"\w* \w her|strong="H3618"\w* \w daughter-in-law|strong="H3618"\w*, “\w May|strong="H3068"\w* \w he|strong="H1931"\w* \w be|strong="H4191"\w* \w blessed|strong="H1288"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H1931"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w abandoned|strong="H5800"\w* \w his|strong="H3068"\w* \w kindness|strong="H2617"\w* \w to|strong="H4191"\w* \w the|strong="H3068"\w* \w living|strong="H2416"\w* \w and|strong="H3068"\w* \w to|strong="H4191"\w* \w the|strong="H3068"\w* \w dead|strong="H4191"\w*.” \w Naomi|strong="H5281"\w* said \w to|strong="H4191"\w* \w her|strong="H3618"\w*, “\w The|strong="H3068"\w* \w man|strong="H4191"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w close|strong="H7138"\w* \w relative|strong="H1350"\w* \w to|strong="H4191"\w* \w us|strong="H5800"\w*, \w one|strong="H3808"\w* \w of|strong="H3068"\w* \w our|strong="H3068"\w* \w near|strong="H7138"\w* \w kinsmen|strong="H7138"\w*.” +\p +\v 21 \w Ruth|strong="H7327"\w* \w the|strong="H3605"\w* \w Moabitess|strong="H4125"\w* said, “\w Yes|strong="H3588"\w*, \w he|strong="H3588"\w* said \w to|strong="H5704"\w* \w me|strong="H5973"\w*, ‘\w You|strong="H3588"\w* \w shall|strong="H5288"\w* \w stay|strong="H1692"\w* \w close|strong="H1692"\w* \w to|strong="H5704"\w* \w my|strong="H3605"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w until|strong="H5704"\w* \w they|strong="H3588"\w* \w have|strong="H1571"\w* \w finished|strong="H3615"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w harvest|strong="H7105"\w*.’” +\p +\v 22 \w Naomi|strong="H5281"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w Ruth|strong="H7327"\w* \w her|strong="H3318"\w* \w daughter-in-law|strong="H3618"\w*, “\w It|strong="H3588"\w* \w is|strong="H2896"\w* \w good|strong="H2896"\w*, \w my|strong="H3318"\w* \w daughter|strong="H1323"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w with|strong="H5973"\w* \w his|strong="H3588"\w* \w maidens|strong="H5291"\w*, \w and|strong="H7704"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w not|strong="H3808"\w* harm \w you|strong="H3588"\w* \w in|strong="H3808"\w* \w any|strong="H3588"\w* other \w field|strong="H7704"\w*.” +\v 23 \w So|strong="H3427"\w* \w she|strong="H5704"\w* \w stayed|strong="H3427"\w* \w close|strong="H1692"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w maidens|strong="H5291"\w* \w of|strong="H3427"\w* \w Boaz|strong="H1162"\w*, \w to|strong="H5704"\w* \w glean|strong="H3950"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w end|strong="H3615"\w* \w of|strong="H3427"\w* \w barley|strong="H8184"\w* \w harvest|strong="H7105"\w* \w and|strong="H3427"\w* \w of|strong="H3427"\w* \w wheat|strong="H2406"\w* \w harvest|strong="H7105"\w*; \w and|strong="H3427"\w* \w she|strong="H5704"\w* \w lived|strong="H3427"\w* \w with|strong="H3427"\w* \w her|strong="H5291"\w* \w mother-in-law|strong="H2545"\w*. +\c 3 +\p +\v 1 \w Naomi|strong="H5281"\w* \w her|strong="H3190"\w* \w mother-in-law|strong="H2545"\w* said \w to|strong="H1245"\w* \w her|strong="H3190"\w*, “\w My|strong="H1245"\w* \w daughter|strong="H1323"\w*, \w shall|strong="H1323"\w* \w I|strong="H3808"\w* \w not|strong="H3808"\w* \w seek|strong="H1245"\w* \w rest|strong="H4494"\w* \w for|strong="H1245"\w* \w you|strong="H3808"\w*, \w that|strong="H3808"\w* \w it|strong="H3190"\w* \w may|strong="H3808"\w* \w be|strong="H3808"\w* \w well|strong="H3190"\w* \w with|strong="H3190"\w* \w you|strong="H3808"\w*? +\v 2 \w Now|strong="H6258"\w* isn’t \w Boaz|strong="H1162"\w* \w our|strong="H1961"\w* \w kinsman|strong="H4130"\w*, \w with|strong="H1961"\w* whose \w maidens|strong="H5291"\w* \w you|strong="H3808"\w* \w were|strong="H1961"\w*? \w Behold|strong="H2009"\w*, \w he|strong="H1931"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w winnowing|strong="H2219"\w* \w barley|strong="H8184"\w* \w tonight|strong="H3915"\w* \w on|strong="H1961"\w* \w the|strong="H1961"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w*. +\v 3 \w Therefore|strong="H5921"\w* \w wash|strong="H7364"\w* \w yourself|strong="H5921"\w*, \w anoint|strong="H5480"\w* \w yourself|strong="H5921"\w*, \w get|strong="H7760"\w* dressed, \w and|strong="H3381"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w*; \w but|strong="H5921"\w* don’t \w make|strong="H7760"\w* \w yourself|strong="H5921"\w* \w known|strong="H3045"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w man|strong="H3045"\w* \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w has|strong="H3045"\w* \w finished|strong="H3615"\w* eating \w and|strong="H3381"\w* \w drinking|strong="H8354"\w*. +\v 4 \w It|strong="H1931"\w* \w shall|strong="H1931"\w* \w be|strong="H1961"\w*, \w when|strong="H1961"\w* \w he|strong="H1931"\w* \w lies|strong="H7901"\w* \w down|strong="H7901"\w*, \w that|strong="H3045"\w* \w you|strong="H6213"\w* \w shall|strong="H1931"\w* \w note|strong="H3045"\w* \w the|strong="H6213"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w lying|strong="H7901"\w*. \w Then|strong="H1961"\w* \w you|strong="H6213"\w* \w shall|strong="H1931"\w* \w go|strong="H1540"\w* \w in|strong="H6213"\w*, \w uncover|strong="H1540"\w* \w his|strong="H3045"\w* \w feet|strong="H4772"\w*, \w and|strong="H8033"\w* \w lie|strong="H7901"\w* \w down|strong="H7901"\w*. \w Then|strong="H1961"\w* \w he|strong="H1931"\w* \w will|strong="H1961"\w* \w tell|strong="H5046"\w* \w you|strong="H6213"\w* \w what|strong="H3045"\w* \w to|strong="H1961"\w* \w do|strong="H6213"\w*.” +\p +\v 5 She said \w to|strong="H6213"\w* \w her|strong="H3605"\w*, “\w All|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* say, \w I|strong="H3605"\w* \w will|strong="H6213"\w* \w do|strong="H6213"\w*.” +\v 6 She \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3605"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w*, \w and|strong="H6213"\w* \w did|strong="H6213"\w* \w everything|strong="H3605"\w* \w that|strong="H3605"\w* \w her|strong="H3605"\w* \w mother-in-law|strong="H2545"\w* \w told|strong="H6680"\w* \w her|strong="H3605"\w*. +\v 7 \w When|strong="H7901"\w* \w Boaz|strong="H1162"\w* \w had|strong="H1162"\w* eaten \w and|strong="H8354"\w* \w drunk|strong="H8354"\w*, \w and|strong="H8354"\w* \w his|strong="H1540"\w* \w heart|strong="H3820"\w* \w was|strong="H3820"\w* \w merry|strong="H3190"\w*, \w he|strong="H8354"\w* \w went|strong="H1540"\w* \w to|strong="H3820"\w* \w lie|strong="H7901"\w* \w down|strong="H7901"\w* \w at|strong="H7097"\w* \w the|strong="H1540"\w* \w end|strong="H7097"\w* \w of|strong="H3820"\w* \w the|strong="H1540"\w* \w heap|strong="H6194"\w* \w of|strong="H3820"\w* \w grain|strong="H6194"\w*. \w She|strong="H3820"\w* came \w softly|strong="H3909"\w*, \w uncovered|strong="H1540"\w* \w his|strong="H1540"\w* \w feet|strong="H4772"\w*, \w and|strong="H8354"\w* \w lay|strong="H7901"\w* \w down|strong="H7901"\w*. +\v 8 \w At|strong="H1961"\w* \w midnight|strong="H2677"\w*, \w the|strong="H1961"\w* man \w was|strong="H1961"\w* \w startled|strong="H2729"\w* \w and|strong="H3915"\w* \w turned|strong="H1961"\w* himself; \w and|strong="H3915"\w* \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* woman \w lay|strong="H7901"\w* \w at|strong="H1961"\w* \w his|strong="H1961"\w* \w feet|strong="H4772"\w*. +\v 9 \w He|strong="H3588"\w* said, “\w Who|strong="H4310"\w* \w are|strong="H4310"\w* \w you|strong="H3588"\w*?” +\p \w She|strong="H3588"\w* answered, “\w I|strong="H3588"\w* am \w Ruth|strong="H7327"\w* \w your|strong="H5921"\w* servant. \w Therefore|strong="H5921"\w* \w spread|strong="H6566"\w* \w the|strong="H5921"\w* \w corner|strong="H3671"\w* \w of|strong="H5921"\w* \w your|strong="H5921"\w* \w garment|strong="H3671"\w* \w over|strong="H5921"\w* \w your|strong="H5921"\w* servant; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H4310"\w* \w a|strong="H3068"\w* \w near|strong="H5921"\w* \w kinsman|strong="H1350"\w*.” +\p +\v 10 \w He|strong="H3068"\w* said, “\w You|strong="H1288"\w* \w are|strong="H3068"\w* \w blessed|strong="H1288"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w my|strong="H3068"\w* \w daughter|strong="H1323"\w*. \w You|strong="H1288"\w* \w have|strong="H3068"\w* \w shown|strong="H3190"\w* \w more|strong="H4480"\w* \w kindness|strong="H2617"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* latter end \w than|strong="H4480"\w* \w at|strong="H3068"\w* \w the|strong="H3068"\w* \w beginning|strong="H7223"\w*, \w because|strong="H4480"\w* \w you|strong="H1288"\w* didn’t \w follow|strong="H3212"\w* \w young|strong="H1115"\w* \w men|strong="H6223"\w*, \w whether|strong="H4480"\w* \w poor|strong="H1800"\w* \w or|strong="H4480"\w* \w rich|strong="H6223"\w*. +\v 11 \w Now|strong="H6258"\w*, \w my|strong="H3605"\w* \w daughter|strong="H1323"\w*, don’t \w be|strong="H5971"\w* \w afraid|strong="H3372"\w*. \w I|strong="H3588"\w* \w will|strong="H5971"\w* \w do|strong="H6213"\w* \w to|strong="H6213"\w* \w you|strong="H3588"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* say; \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w city|strong="H8179"\w* \w of|strong="H1323"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w* \w knows|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H5971"\w* \w a|strong="H3068"\w* \w worthy|strong="H2428"\w* \w woman|strong="H1323"\w*. +\v 12 \w Now|strong="H6258"\w* \w it|strong="H3588"\w* \w is|strong="H3426"\w* true \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3426"\w* \w a|strong="H3068"\w* \w near|strong="H7138"\w* \w kinsman|strong="H1350"\w*. \w However|strong="H1571"\w*, \w there|strong="H3426"\w* \w is|strong="H3426"\w* \w a|strong="H3068"\w* \w kinsman|strong="H1350"\w* \w nearer|strong="H7138"\w* \w than|strong="H4480"\w* \w I|strong="H3588"\w*. +\v 13 \w Stay|strong="H3885"\w* \w this|strong="H3068"\w* \w night|strong="H3915"\w*, \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w morning|strong="H1242"\w*, \w if|strong="H1961"\w* \w he|strong="H5704"\w* \w will|strong="H3068"\w* perform \w for|strong="H5704"\w* \w you|strong="H5704"\w* \w the|strong="H3068"\w* part \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w kinsman|strong="H1350"\w*, \w good|strong="H2896"\w*. \w Let|strong="H3808"\w* \w him|strong="H2896"\w* \w do|strong="H3068"\w* \w the|strong="H3068"\w* \w kinsman|strong="H1350"\w*’s duty. \w But|strong="H3808"\w* \w if|strong="H1961"\w* \w he|strong="H5704"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w do|strong="H3068"\w* \w the|strong="H3068"\w* duty \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w kinsman|strong="H1350"\w* \w for|strong="H5704"\w* \w you|strong="H5704"\w*, \w then|strong="H1961"\w* \w I|strong="H5704"\w* \w will|strong="H3068"\w* \w do|strong="H3068"\w* \w the|strong="H3068"\w* duty \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w kinsman|strong="H1350"\w* \w for|strong="H5704"\w* \w you|strong="H5704"\w*, \w as|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*. \w Lie|strong="H7901"\w* \w down|strong="H7901"\w* \w until|strong="H5704"\w* \w the|strong="H3068"\w* \w morning|strong="H1242"\w*.” +\p +\v 14 \w She|strong="H3588"\w* \w lay|strong="H7901"\w* \w at|strong="H6965"\w* \w his|strong="H3045"\w* \w feet|strong="H4772"\w* \w until|strong="H5704"\w* \w the|strong="H3588"\w* \w morning|strong="H1242"\w*, \w then|strong="H6965"\w* \w she|strong="H3588"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w before|strong="H5704"\w* \w one|strong="H3588"\w* \w could|strong="H3045"\w* \w discern|strong="H5234"\w* \w another|strong="H7453"\w*. \w For|strong="H3588"\w* \w he|strong="H3588"\w* said, “Let \w it|strong="H3588"\w* \w not|strong="H3045"\w* \w be|strong="H3588"\w* \w known|strong="H3045"\w* \w that|strong="H3588"\w* \w the|strong="H3588"\w* woman came \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w*.” +\v 15 \w He|strong="H5921"\w* said, “\w Bring|strong="H3051"\w* \w the|strong="H5921"\w* mantle \w that|strong="H5892"\w* \w is|strong="H5892"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*, \w and|strong="H5892"\w* \w hold|strong="H7896"\w* \w it|strong="H5921"\w*.” \w She|strong="H5921"\w* held \w it|strong="H5921"\w*; \w and|strong="H5892"\w* \w he|strong="H5921"\w* \w measured|strong="H4058"\w* \w six|strong="H8337"\w* measures \w of|strong="H5892"\w* \w barley|strong="H8184"\w*, \w and|strong="H5892"\w* \w laid|strong="H7896"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w*; then \w he|strong="H5921"\w* \w went|strong="H5892"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*. +\p +\v 16 \w When|strong="H6213"\w* she \w came|strong="H1323"\w* \w to|strong="H6213"\w* \w her|strong="H3605"\w* \w mother-in-law|strong="H2545"\w*, she said, “\w How|strong="H4310"\w* \w did|strong="H6213"\w* \w it|strong="H6213"\w* go, \w my|strong="H3605"\w* \w daughter|strong="H1323"\w*?” +\p She \w told|strong="H5046"\w* \w her|strong="H3605"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* \w man|strong="H3605"\w* \w had|strong="H6213"\w* \w done|strong="H6213"\w* \w for|strong="H6213"\w* \w her|strong="H3605"\w*. +\v 17 \w She|strong="H3588"\w* said, “\w He|strong="H3588"\w* \w gave|strong="H5414"\w* \w me|strong="H5414"\w* these \w six|strong="H8337"\w* measures of \w barley|strong="H8184"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* said, ‘Don’t go \w empty|strong="H7387"\w* \w to|strong="H5414"\w* \w your|strong="H5414"\w* \w mother-in-law|strong="H2545"\w*.’” +\p +\v 18 \w Then|strong="H5307"\w* \w she|strong="H3588"\w* \w said|strong="H1697"\w*, “\w Wait|strong="H3427"\w*, \w my|strong="H3045"\w* \w daughter|strong="H1323"\w*, \w until|strong="H5704"\w* \w you|strong="H3588"\w* \w know|strong="H3045"\w* \w what|strong="H1697"\w* \w will|strong="H1697"\w* \w happen|strong="H1697"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w man|strong="H5307"\w* \w will|strong="H1697"\w* \w not|strong="H3808"\w* \w rest|strong="H8252"\w* \w until|strong="H5704"\w* \w he|strong="H3588"\w* \w has|strong="H3117"\w* \w settled|strong="H3427"\w* \w this|strong="H1697"\w* \w today|strong="H3117"\w*.” +\c 4 +\p +\v 1 \w Now|strong="H2009"\w* \w Boaz|strong="H1162"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H1696"\w* \w the|strong="H5674"\w* \w gate|strong="H8179"\w* \w and|strong="H8033"\w* \w sat|strong="H3427"\w* \w down|strong="H3427"\w* \w there|strong="H8033"\w*. \w Behold|strong="H2009"\w*, \w the|strong="H5674"\w* \w near|strong="H8033"\w* \w kinsman|strong="H1350"\w* \w of|strong="H3427"\w* whom \w Boaz|strong="H1162"\w* \w spoke|strong="H1696"\w* \w came|strong="H5927"\w* \w by|strong="H5674"\w*. \w Boaz|strong="H1162"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5927"\w*, “\w Come|strong="H5927"\w* \w over|strong="H5674"\w* \w here|strong="H6311"\w*, \w friend|strong="H6423"\w*, \w and|strong="H8033"\w* \w sit|strong="H3427"\w* \w down|strong="H3427"\w*!” \w He|strong="H8033"\w* \w came|strong="H5927"\w* \w over|strong="H5674"\w*, \w and|strong="H8033"\w* \w sat|strong="H3427"\w* \w down|strong="H3427"\w*. +\v 2 Boaz \w took|strong="H3947"\w* \w ten|strong="H6235"\w* \w men|strong="H2205"\w* \w of|strong="H3427"\w* \w the|strong="H3947"\w* \w elders|strong="H2205"\w* \w of|strong="H3427"\w* \w the|strong="H3947"\w* \w city|strong="H5892"\w*, \w and|strong="H5892"\w* said, “\w Sit|strong="H3427"\w* \w down|strong="H3427"\w* \w here|strong="H6311"\w*,” \w and|strong="H5892"\w* \w they|strong="H5892"\w* \w sat|strong="H3427"\w* \w down|strong="H3427"\w*. +\v 3 \w He|strong="H7725"\w* said \w to|strong="H7725"\w* \w the|strong="H7725"\w* near \w kinsman|strong="H1350"\w*, “\w Naomi|strong="H5281"\w*, \w who|strong="H4376"\w* \w has|strong="H4124"\w* \w come|strong="H7725"\w* \w back|strong="H7725"\w* \w out|strong="H7725"\w* \w of|strong="H7704"\w* \w the|strong="H7725"\w* \w country|strong="H7704"\w* \w of|strong="H7704"\w* \w Moab|strong="H4124"\w*, \w is|strong="H4124"\w* \w selling|strong="H4376"\w* \w the|strong="H7725"\w* \w parcel|strong="H2513"\w* \w of|strong="H7704"\w* \w land|strong="H7704"\w*, \w which|strong="H7704"\w* \w was|strong="H4124"\w* \w our|strong="H7725"\w* brother Elimelech’s. +\v 4 \w I|strong="H3588"\w* \w thought|strong="H3045"\w* \w I|strong="H3588"\w* \w should|strong="H3588"\w* \w tell|strong="H5046"\w* \w you|strong="H3588"\w*, saying, ‘\w Buy|strong="H7069"\w* \w it|strong="H3588"\w* \w before|strong="H5048"\w* \w those|strong="H3427"\w* \w who|strong="H5971"\w* \w sit|strong="H3427"\w* \w here|strong="H1350"\w*, \w and|strong="H5971"\w* \w before|strong="H5048"\w* \w the|strong="H3588"\w* \w elders|strong="H2205"\w* \w of|strong="H3427"\w* \w my|strong="H3045"\w* \w people|strong="H5971"\w*.’ \w If|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H5971"\w* \w redeem|strong="H1350"\w* \w it|strong="H3588"\w*, \w redeem|strong="H1350"\w* \w it|strong="H3588"\w*; \w but|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H5971"\w* \w not|strong="H3808"\w* \w redeem|strong="H1350"\w* \w it|strong="H3588"\w*, \w then|strong="H3588"\w* \w tell|strong="H5046"\w* \w me|strong="H5046"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H5971"\w* \w know|strong="H3045"\w*. \w For|strong="H3588"\w* \w there|strong="H3427"\w* \w is|strong="H1350"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w to|strong="H1540"\w* \w redeem|strong="H1350"\w* \w it|strong="H3588"\w* \w besides|strong="H2108"\w* \w you|strong="H3588"\w*; \w and|strong="H5971"\w* \w I|strong="H3588"\w* am \w after|strong="H3588"\w* \w you|strong="H3588"\w*.” +\p \w He|strong="H3588"\w* said, “\w I|strong="H3588"\w* \w will|strong="H5971"\w* \w redeem|strong="H1350"\w* \w it|strong="H3588"\w*.” +\p +\v 5 \w Then|strong="H6965"\w* \w Boaz|strong="H1162"\w* said, “\w On|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w you|strong="H5921"\w* \w buy|strong="H7069"\w* \w the|strong="H5921"\w* \w field|strong="H7704"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H3117"\w* \w Naomi|strong="H5281"\w*, \w you|strong="H5921"\w* \w must|strong="H4191"\w* \w buy|strong="H7069"\w* \w it|strong="H5921"\w* \w also|strong="H8034"\w* \w from|strong="H5921"\w* \w Ruth|strong="H7327"\w* \w the|strong="H5921"\w* \w Moabitess|strong="H4125"\w*, \w the|strong="H5921"\w* wife \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w dead|strong="H4191"\w*, \w to|strong="H4191"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w dead|strong="H4191"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w inheritance|strong="H5159"\w*.” +\p +\v 6 \w The|strong="H3588"\w* \w near|strong="H3808"\w* \w kinsman|strong="H1350"\w* said, “\w I|strong="H3588"\w* \w can|strong="H3201"\w*’t \w redeem|strong="H1350"\w* \w it|strong="H3588"\w* \w for|strong="H3588"\w* myself, \w lest|strong="H6435"\w* \w I|strong="H3588"\w* endanger \w my|strong="H3588"\w* own \w inheritance|strong="H5159"\w*. Take \w my|strong="H3588"\w* \w right|strong="H1353"\w* \w of|strong="H1350"\w* \w redemption|strong="H1353"\w* \w for|strong="H3588"\w* yourself; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w can|strong="H3201"\w*’t \w redeem|strong="H1350"\w* \w it|strong="H3588"\w*.” +\p +\v 7 \w Now|strong="H5414"\w* \w this|strong="H2063"\w* \w was|strong="H3478"\w* \w the|strong="H3605"\w* \w custom|strong="H1697"\w* \w in|strong="H5921"\w* \w former|strong="H6440"\w* \w time|strong="H6440"\w* \w in|strong="H5921"\w* \w Israel|strong="H3478"\w* \w concerning|strong="H5921"\w* \w redeeming|strong="H1353"\w* \w and|strong="H6965"\w* \w concerning|strong="H5921"\w* exchanging, \w to|strong="H3478"\w* \w confirm|strong="H6965"\w* \w all|strong="H3605"\w* \w things|strong="H1697"\w*: \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w took|strong="H3478"\w* \w off|strong="H5921"\w* \w his|strong="H3605"\w* \w sandal|strong="H5275"\w*, \w and|strong="H6965"\w* \w gave|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3478"\w* \w his|strong="H3605"\w* \w neighbor|strong="H7453"\w*; \w and|strong="H6965"\w* \w this|strong="H2063"\w* \w was|strong="H3478"\w* \w the|strong="H3605"\w* \w way|strong="H1697"\w* \w of|strong="H1697"\w* formalizing transactions \w in|strong="H5921"\w* \w Israel|strong="H3478"\w*. +\v 8 \w So|strong="H1350"\w* \w the|strong="H7069"\w* near \w kinsman|strong="H1350"\w* said \w to|strong="H1350"\w* \w Boaz|strong="H1162"\w*, “\w Buy|strong="H7069"\w* \w it|strong="H7069"\w* for yourself,” then \w he|strong="H7069"\w* took \w off|strong="H8025"\w* \w his|strong="H8025"\w* \w sandal|strong="H5275"\w*. +\p +\v 9 \w Boaz|strong="H1162"\w* said \w to|strong="H3027"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w and|strong="H3117"\w* \w to|strong="H3027"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, “\w You|strong="H3588"\w* \w are|strong="H3117"\w* \w witnesses|strong="H5707"\w* \w today|strong="H3117"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H5971"\w* \w bought|strong="H7069"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w was|strong="H3117"\w* Elimelech’s, \w and|strong="H3117"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w was|strong="H3117"\w* \w Chilion|strong="H3630"\w*’s \w and|strong="H3117"\w* \w Mahlon|strong="H4248"\w*’s, \w from|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3117"\w* \w Naomi|strong="H5281"\w*. +\v 10 \w Moreover|strong="H1571"\w*, \w Ruth|strong="H7327"\w* \w the|strong="H5921"\w* \w Moabitess|strong="H4125"\w*, \w the|strong="H5921"\w* wife \w of|strong="H3117"\w* \w Mahlon|strong="H4248"\w*, \w I|strong="H3117"\w* \w have|strong="H1571"\w* \w purchased|strong="H7069"\w* \w to|strong="H4191"\w* \w be|strong="H4191"\w* \w my|strong="H5921"\w* wife, \w to|strong="H4191"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w dead|strong="H4191"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w inheritance|strong="H5159"\w*, \w that|strong="H3117"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w dead|strong="H4191"\w* \w may|strong="H1571"\w* \w not|strong="H3808"\w* \w be|strong="H4191"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w among|strong="H5973"\w* \w his|strong="H5921"\w* brothers \w and|strong="H6965"\w* \w from|strong="H3772"\w* \w the|strong="H5921"\w* \w gate|strong="H8179"\w* \w of|strong="H3117"\w* \w his|strong="H5921"\w* \w place|strong="H4725"\w*. \w You|strong="H5921"\w* \w are|strong="H3117"\w* \w witnesses|strong="H5707"\w* \w today|strong="H3117"\w*.” +\p +\v 11 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w*, \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w*, \w said|strong="H7121"\w*, “\w We|strong="H6213"\w* \w are|strong="H5971"\w* \w witnesses|strong="H5707"\w*. \w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w make|strong="H6213"\w* \w the|strong="H3605"\w* \w woman|strong="H8034"\w* \w who|strong="H3605"\w* \w has|strong="H3068"\w* \w come|strong="H5971"\w* \w into|strong="H6213"\w* \w your|strong="H3068"\w* \w house|strong="H1004"\w* \w like|strong="H1004"\w* \w Rachel|strong="H7354"\w* \w and|strong="H3478"\w* \w like|strong="H1004"\w* \w Leah|strong="H3812"\w*, \w which|strong="H3068"\w* \w both|strong="H8147"\w* \w built|strong="H1129"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w treat|strong="H6213"\w* \w you|strong="H5414"\w* \w worthily|strong="H2428"\w* \w in|strong="H3478"\w* Ephrathah, \w and|strong="H3478"\w* \w be|strong="H3068"\w* \w famous|strong="H8034"\w* \w in|strong="H3478"\w* \w Bethlehem|strong="H1035"\w*. +\v 12 \w Let|strong="H5414"\w* \w your|strong="H3068"\w* \w house|strong="H1004"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Perez|strong="H6557"\w*, whom \w Tamar|strong="H8559"\w* \w bore|strong="H3205"\w* \w to|strong="H3068"\w* \w Judah|strong="H3063"\w*, \w of|strong="H1004"\w* \w the|strong="H5414"\w* \w offspring|strong="H2233"\w*\f + \fr 4:12 \ft or, seed\f* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w by|strong="H3068"\w* \w this|strong="H2063"\w* \w young|strong="H5291"\w* \w woman|strong="H5291"\w*.” +\p +\v 13 \w So|strong="H3947"\w* \w Boaz|strong="H1162"\w* \w took|strong="H3947"\w* \w Ruth|strong="H7327"\w* \w and|strong="H1121"\w* she \w became|strong="H3205"\w* \w his|strong="H5414"\w* wife; \w and|strong="H1121"\w* \w he|strong="H3068"\w* \w went|strong="H3068"\w* \w in|strong="H3068"\w* \w to|strong="H3068"\w* \w her|strong="H5414"\w*, \w and|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w enabled|strong="H5414"\w* \w her|strong="H5414"\w* \w to|strong="H3068"\w* \w conceive|strong="H2032"\w*, \w and|strong="H1121"\w* she \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*. +\v 14 \w The|strong="H3068"\w* women \w said|strong="H7121"\w* \w to|strong="H3478"\w* \w Naomi|strong="H5281"\w*, “\w Blessed|strong="H1288"\w* \w be|strong="H3808"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w left|strong="H7673"\w* \w you|strong="H3117"\w* \w today|strong="H3117"\w* \w without|strong="H3808"\w* \w a|strong="H3068"\w* \w near|strong="H3808"\w* \w kinsman|strong="H1350"\w*. \w Let|strong="H3808"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w* \w be|strong="H3808"\w* \w famous|strong="H8034"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\v 15 \w He|strong="H1931"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w to|strong="H7725"\w* \w you|strong="H3588"\w* \w a|strong="H3068"\w* \w restorer|strong="H7725"\w* \w of|strong="H1121"\w* \w life|strong="H5315"\w* \w and|strong="H1121"\w* \w sustain|strong="H3557"\w* \w you|strong="H3588"\w* \w in|strong="H5315"\w* \w your|strong="H7725"\w* \w old|strong="H1121"\w* \w age|strong="H7872"\w*; \w for|strong="H3588"\w* \w your|strong="H7725"\w* \w daughter-in-law|strong="H3618"\w*, \w who|strong="H1931"\w* loves \w you|strong="H3588"\w*, \w who|strong="H1931"\w* \w is|strong="H1931"\w* \w better|strong="H2896"\w* \w to|strong="H7725"\w* \w you|strong="H3588"\w* \w than|strong="H2896"\w* \w seven|strong="H7651"\w* \w sons|strong="H1121"\w*, \w has|strong="H1961"\w* \w given|strong="H3205"\w* \w birth|strong="H3205"\w* \w to|strong="H7725"\w* \w him|strong="H3205"\w*.” +\v 16 \w Naomi|strong="H5281"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w child|strong="H3206"\w*, \w laid|strong="H7896"\w* \w him|strong="H3947"\w* \w in|strong="H1961"\w* \w her|strong="H3947"\w* \w bosom|strong="H2436"\w*, \w and|strong="H3947"\w* \w became|strong="H1961"\w* nurse \w to|strong="H1961"\w* \w him|strong="H3947"\w*. +\v 17 \w The|strong="H3205"\w* \w women|strong="H7934"\w*, \w her|strong="H7121"\w* \w neighbors|strong="H7934"\w*, \w gave|strong="H3205"\w* \w him|strong="H3205"\w* \w a|strong="H3068"\w* \w name|strong="H8034"\w*, saying, “\w A|strong="H3068"\w* \w son|strong="H1121"\w* \w is|strong="H1931"\w* \w born|strong="H3205"\w* \w to|strong="H3205"\w* \w Naomi|strong="H5281"\w*”. \w They|strong="H1931"\w* \w named|strong="H7121"\w* \w him|strong="H3205"\w* \w Obed|strong="H5744"\w*. \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Jesse|strong="H3448"\w*, \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w*. +\p +\v 18 Now this is \w the|strong="H3205"\w* \w history|strong="H8435"\w* \w of|strong="H3205"\w* \w the|strong="H3205"\w* \w generations|strong="H8435"\w* \w of|strong="H3205"\w* \w Perez|strong="H6557"\w*: \w Perez|strong="H6557"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Hezron|strong="H2696"\w*, +\v 19 \w and|strong="H2696"\w* \w Hezron|strong="H2696"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Ram|strong="H7410"\w*, \w and|strong="H2696"\w* \w Ram|strong="H7410"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Amminadab|strong="H5992"\w*, +\v 20 \w and|strong="H3205"\w* \w Amminadab|strong="H5992"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Nahshon|strong="H5177"\w*, \w and|strong="H3205"\w* \w Nahshon|strong="H5177"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Salmon|strong="H8009"\w*, +\v 21 \w and|strong="H3205"\w* \w Salmon|strong="H8012"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Boaz|strong="H1162"\w*, \w and|strong="H3205"\w* \w Boaz|strong="H1162"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Obed|strong="H5744"\w*, +\v 22 \w and|strong="H1732"\w* \w Obed|strong="H5744"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Jesse|strong="H3448"\w*, \w and|strong="H1732"\w* \w Jesse|strong="H3448"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w David|strong="H1732"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/10-1SAeng-web.usfm b/bibles/eng-web_usfm/10-1SAeng-web.usfm new file mode 100644 index 0000000..9c2ce1d --- /dev/null +++ b/bibles/eng-web_usfm/10-1SAeng-web.usfm @@ -0,0 +1,1261 @@ +\id 1SA World English Bible (WEB) +\ide UTF-8 +\h 1 Samuel +\toc1 The First Book of Samuel +\toc2 1 Samuel +\toc3 1Sa +\mt1 The First Book of Samuel +\c 1 +\p +\v 1 \w Now|strong="H1961"\w* \w there|strong="H1961"\w* \w was|strong="H8034"\w* \w a|strong="H3068"\w* certain \w man|strong="H1121"\w* \w of|strong="H1121"\w* Ramathaim Zophim, \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H1121"\w* \w Ephraim|strong="H8034"\w*, \w and|strong="H1121"\w* \w his|strong="H1961"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* Elkanah, \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeroham|strong="H3395"\w*, \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Elihu, \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Tohu|strong="H8459"\w*, \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zuph|strong="H6689"\w*, \w an|strong="H1961"\w* Ephraimite. +\v 2 \w He|strong="H8147"\w* \w had|strong="H1961"\w* \w two|strong="H8147"\w* wives. \w The|strong="H1961"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w one|strong="H1961"\w* \w was|strong="H8034"\w* \w Hannah|strong="H2584"\w*, \w and|strong="H8147"\w* \w the|strong="H1961"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w the|strong="H1961"\w* \w other|strong="H8145"\w* \w Peninnah|strong="H6444"\w*. \w Peninnah|strong="H6444"\w* \w had|strong="H1961"\w* \w children|strong="H3206"\w*, \w but|strong="H1961"\w* \w Hannah|strong="H2584"\w* \w had|strong="H1961"\w* \w no|strong="H1961"\w* \w children|strong="H3206"\w*. +\v 3 \w This|strong="H1931"\w* \w man|strong="H1121"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H8033"\w* \w of|strong="H1121"\w* \w his|strong="H3068"\w* \w city|strong="H5892"\w* \w from|strong="H5927"\w* \w year|strong="H3117"\w* \w to|strong="H3068"\w* \w year|strong="H3117"\w* \w to|strong="H3068"\w* \w worship|strong="H7812"\w* \w and|strong="H1121"\w* \w to|strong="H3068"\w* \w sacrifice|strong="H2076"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*\f + \fr 1:3 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w of|strong="H1121"\w* \w Armies|strong="H6635"\w* \w in|strong="H3068"\w* \w Shiloh|strong="H7887"\w*. \w The|strong="H3068"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Eli|strong="H5941"\w*, \w Hophni|strong="H2652"\w* \w and|strong="H1121"\w* \w Phinehas|strong="H6372"\w*, \w priests|strong="H3548"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w were|strong="H1121"\w* \w there|strong="H8033"\w*. +\v 4 \w When|strong="H1961"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w came|strong="H1961"\w* \w that|strong="H3605"\w* Elkanah \w sacrificed|strong="H2076"\w*, \w he|strong="H3117"\w* \w gave|strong="H5414"\w* \w portions|strong="H4490"\w* \w to|strong="H1961"\w* \w Peninnah|strong="H6444"\w* \w his|strong="H3605"\w* wife \w and|strong="H1121"\w* \w to|strong="H1961"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w her|strong="H3605"\w* \w daughters|strong="H1323"\w*; +\v 5 \w but|strong="H3588"\w* \w he|strong="H3588"\w* \w gave|strong="H5414"\w* \w a|strong="H3068"\w* double \w portion|strong="H4490"\w* \w to|strong="H3068"\w* \w Hannah|strong="H2584"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* loved \w Hannah|strong="H2584"\w*, \w but|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w shut|strong="H5462"\w* \w up|strong="H5462"\w* \w her|strong="H5414"\w* \w womb|strong="H7358"\w*. +\v 6 \w Her|strong="H5462"\w* \w rival|strong="H6869"\w* \w provoked|strong="H3707"\w* \w her|strong="H5462"\w* severely, \w to|strong="H3068"\w* \w irritate|strong="H7481"\w* \w her|strong="H5462"\w*, \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w shut|strong="H5462"\w* \w up|strong="H5462"\w* \w her|strong="H5462"\w* \w womb|strong="H7358"\w*. +\v 7 \w So|strong="H3651"\w* \w year|strong="H8141"\w* \w by|strong="H8141"\w* \w year|strong="H8141"\w*, \w when|strong="H6213"\w* \w she|strong="H3651"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w her|strong="H1058"\w* rival \w provoked|strong="H3707"\w* \w her|strong="H1058"\w*. \w Therefore|strong="H3651"\w* \w she|strong="H3651"\w* \w wept|strong="H1058"\w*, \w and|strong="H3068"\w* didn’t eat. +\v 8 Elkanah \w her|strong="H1058"\w* husband said \w to|strong="H1121"\w* \w her|strong="H1058"\w*, “\w Hannah|strong="H2584"\w*, \w why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H3808"\w* \w weep|strong="H1058"\w*? \w Why|strong="H4100"\w* don’t \w you|strong="H3808"\w* eat? \w Why|strong="H4100"\w* \w is|strong="H4100"\w* \w your|strong="H3808"\w* \w heart|strong="H3824"\w* \w grieved|strong="H3415"\w*? Am \w I|strong="H3808"\w* \w not|strong="H3808"\w* \w better|strong="H2896"\w* \w to|strong="H1121"\w* \w you|strong="H3808"\w* \w than|strong="H2896"\w* \w ten|strong="H6235"\w* \w sons|strong="H1121"\w*?” +\p +\v 9 \w So|strong="H6965"\w* \w Hannah|strong="H2584"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w after|strong="H5921"\w* \w they|strong="H3068"\w* \w had|strong="H3068"\w* finished eating \w and|strong="H6965"\w* \w drinking|strong="H8354"\w* \w in|strong="H3427"\w* \w Shiloh|strong="H7887"\w*. \w Now|strong="H5921"\w* \w Eli|strong="H5941"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w* \w was|strong="H3068"\w* \w sitting|strong="H3427"\w* \w on|strong="H5921"\w* \w his|strong="H3068"\w* \w seat|strong="H3678"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w doorpost|strong="H4201"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1964"\w*. +\v 10 \w She|strong="H1931"\w* \w was|strong="H3068"\w* \w in|strong="H5921"\w* \w bitterness|strong="H4751"\w* \w of|strong="H3068"\w* \w soul|strong="H5315"\w*, \w and|strong="H3068"\w* \w prayed|strong="H6419"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w weeping|strong="H1058"\w* \w bitterly|strong="H4751"\w*. +\v 11 \w She|strong="H5921"\w* \w vowed|strong="H5087"\w* \w a|strong="H3068"\w* \w vow|strong="H5088"\w*, \w and|strong="H3068"\w* said, “\w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w if|strong="H7200"\w* \w you|strong="H5414"\w* \w will|strong="H3068"\w* \w indeed|strong="H7200"\w* \w look|strong="H7200"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w affliction|strong="H6040"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* servant \w and|strong="H3068"\w* \w remember|strong="H2142"\w* \w me|strong="H5414"\w*, \w and|strong="H3068"\w* \w not|strong="H3808"\w* \w forget|strong="H7911"\w* \w your|strong="H3068"\w* servant, \w but|strong="H3808"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* servant \w a|strong="H3068"\w* boy, \w then|strong="H5414"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w him|strong="H5414"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w life|strong="H2416"\w*, \w and|strong="H3068"\w* \w no|strong="H3808"\w* \w razor|strong="H4177"\w* \w shall|strong="H3068"\w* \w come|strong="H5927"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w head|strong="H7218"\w*.” +\p +\v 12 \w As|strong="H1961"\w* \w she|strong="H3588"\w* \w continued|strong="H1961"\w* \w praying|strong="H6419"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w Eli|strong="H5941"\w* saw \w her|strong="H7235"\w* \w mouth|strong="H6310"\w*. +\v 13 \w Now|strong="H8085"\w* \w Hannah|strong="H2584"\w* \w spoke|strong="H1696"\w* \w in|strong="H5921"\w* \w her|strong="H5921"\w* \w heart|strong="H3820"\w*. \w Only|strong="H7535"\w* \w her|strong="H5921"\w* \w lips|strong="H8193"\w* \w moved|strong="H5128"\w*, \w but|strong="H7535"\w* \w her|strong="H5921"\w* \w voice|strong="H6963"\w* \w was|strong="H3820"\w* \w not|strong="H3808"\w* \w heard|strong="H8085"\w*. \w Therefore|strong="H5921"\w* \w Eli|strong="H5941"\w* \w thought|strong="H2803"\w* \w she|strong="H1931"\w* \w was|strong="H3820"\w* \w drunk|strong="H7910"\w*. +\v 14 \w Eli|strong="H5941"\w* said \w to|strong="H5704"\w* \w her|strong="H5493"\w*, “\w How|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H5704"\w* \w you|strong="H5921"\w* be \w drunk|strong="H7937"\w*? \w Get|strong="H5493"\w* rid \w of|strong="H5921"\w* \w your|strong="H5921"\w* \w wine|strong="H3196"\w*!” +\p +\v 15 \w Hannah|strong="H2584"\w* \w answered|strong="H6030"\w*, “\w No|strong="H3808"\w*, \w my|strong="H3068"\w* \w lord|strong="H3068"\w*, \w I|strong="H5315"\w* \w am|strong="H3068"\w* \w a|strong="H3068"\w* woman \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w sorrowful|strong="H7186"\w* \w spirit|strong="H7307"\w*. \w I|strong="H5315"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w been|strong="H3808"\w* \w drinking|strong="H8354"\w* \w wine|strong="H3196"\w* \w or|strong="H3808"\w* \w strong|strong="H7941"\w* \w drink|strong="H8354"\w*, \w but|strong="H3808"\w* \w I|strong="H5315"\w* \w poured|strong="H8210"\w* \w out|strong="H8210"\w* \w my|strong="H3068"\w* \w soul|strong="H5315"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 16 Don’t \w consider|strong="H5414"\w* \w your|strong="H5414"\w* servant \w a|strong="H3068"\w* \w wicked|strong="H1100"\w* \w woman|strong="H1323"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1323"\w* been \w speaking|strong="H1696"\w* \w out|strong="H5414"\w* \w of|strong="H1323"\w* \w the|strong="H6440"\w* \w abundance|strong="H7230"\w* \w of|strong="H1323"\w* \w my|strong="H5414"\w* \w complaint|strong="H7879"\w* \w and|strong="H6440"\w* \w my|strong="H5414"\w* \w provocation|strong="H3708"\w*.” +\p +\v 17 \w Then|strong="H6030"\w* \w Eli|strong="H5941"\w* \w answered|strong="H6030"\w*, “\w Go|strong="H3212"\w* \w in|strong="H3478"\w* \w peace|strong="H7965"\w*; \w and|strong="H3478"\w* \w may|strong="H3478"\w* \w the|strong="H5414"\w* \w God|strong="H5414"\w*\f + \fr 1:17 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w of|strong="H7592"\w* \w Israel|strong="H3478"\w* \w grant|strong="H5414"\w* \w your|strong="H5414"\w* \w petition|strong="H7596"\w* \w that|strong="H3478"\w* \w you|strong="H5414"\w* \w have|strong="H3478"\w* \w asked|strong="H7592"\w* \w of|strong="H7592"\w* \w him|strong="H5414"\w*.” +\p +\v 18 \w She|strong="H6440"\w* said, “\w Let|strong="H3808"\w* \w your|strong="H6440"\w* \w servant|strong="H8198"\w* \w find|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H3212"\w* \w your|strong="H6440"\w* \w sight|strong="H5869"\w*.” \w So|strong="H1961"\w* \w the|strong="H6440"\w* woman \w went|strong="H3212"\w* \w her|strong="H4672"\w* \w way|strong="H1870"\w* \w and|strong="H3212"\w* ate; \w and|strong="H3212"\w* \w her|strong="H4672"\w* facial \w expression|strong="H6440"\w* wasn’t sad \w any|strong="H5750"\w* \w more|strong="H5750"\w*. +\p +\v 19 \w They|strong="H3068"\w* \w rose|strong="H7925"\w* \w up|strong="H7925"\w* \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w morning|strong="H1242"\w* \w early|strong="H7925"\w* \w and|strong="H3068"\w* \w worshiped|strong="H7812"\w* \w Yahweh|strong="H3068"\w*, \w then|strong="H7725"\w* \w returned|strong="H7725"\w* \w and|strong="H3068"\w* \w came|strong="H3068"\w* \w to|strong="H7725"\w* \w their|strong="H3068"\w* \w house|strong="H1004"\w* \w to|strong="H7725"\w* \w Ramah|strong="H7414"\w*. \w Then|strong="H7725"\w* Elkanah \w knew|strong="H3045"\w* \w Hannah|strong="H2584"\w* \w his|strong="H3068"\w* wife; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w remembered|strong="H2142"\w* \w her|strong="H7725"\w*. +\p +\v 20 \w When|strong="H3588"\w* \w the|strong="H3588"\w* \w time|strong="H3117"\w* \w had|strong="H3068"\w* \w come|strong="H1961"\w*, \w Hannah|strong="H2584"\w* \w conceived|strong="H2029"\w*, \w and|strong="H1121"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*; \w and|strong="H1121"\w* \w she|strong="H3588"\w* \w named|strong="H7121"\w* \w him|strong="H3205"\w* \w Samuel|strong="H8050"\w*,\f + \fr 1:20 \ft Samuel sounds like the Hebrew for “heard by God.”\f* saying, “\w Because|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w asked|strong="H7592"\w* \w him|strong="H3205"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 21 \w The|strong="H3605"\w* \w man|strong="H3605"\w* Elkanah, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*, \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w offer|strong="H5927"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w the|strong="H3605"\w* \w yearly|strong="H3117"\w* \w sacrifice|strong="H2077"\w* \w and|strong="H3068"\w* \w his|strong="H3605"\w* \w vow|strong="H5088"\w*. +\v 22 \w But|strong="H3588"\w* \w Hannah|strong="H2584"\w* didn’t \w go|strong="H5927"\w* \w up|strong="H5927"\w*, \w for|strong="H3588"\w* \w she|strong="H3588"\w* said \w to|strong="H5704"\w* \w her|strong="H7200"\w* husband, “\w Not|strong="H3808"\w* \w until|strong="H5704"\w* \w the|strong="H6440"\w* \w child|strong="H5288"\w* \w is|strong="H3068"\w* \w weaned|strong="H1580"\w*; \w then|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w bring|strong="H5927"\w* \w him|strong="H6440"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w may|strong="H3068"\w* \w appear|strong="H7200"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w stay|strong="H3427"\w* \w there|strong="H8033"\w* \w forever|strong="H5769"\w*.” +\p +\v 23 Elkanah \w her|strong="H6213"\w* husband \w said|strong="H1697"\w* \w to|strong="H5704"\w* \w her|strong="H6213"\w*, “\w Do|strong="H6213"\w* \w what|strong="H1697"\w* \w seems|strong="H2896"\w* \w good|strong="H2896"\w* \w to|strong="H5704"\w* \w you|strong="H5704"\w*. \w Wait|strong="H3427"\w* \w until|strong="H5704"\w* \w you|strong="H5704"\w* \w have|strong="H3068"\w* \w weaned|strong="H1580"\w* \w him|strong="H6213"\w*; \w only|strong="H5704"\w* \w may|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w establish|strong="H6965"\w* \w his|strong="H3068"\w* \w word|strong="H1697"\w*.” +\p \w So|strong="H6213"\w* \w the|strong="H6213"\w* woman waited \w and|strong="H1121"\w* \w nursed|strong="H3243"\w* \w her|strong="H6213"\w* \w son|strong="H1121"\w* \w until|strong="H5704"\w* \w she|strong="H5704"\w* \w weaned|strong="H1580"\w* \w him|strong="H6213"\w*. +\v 24 \w When|strong="H3068"\w* \w she|strong="H5973"\w* \w had|strong="H3068"\w* \w weaned|strong="H1580"\w* \w him|strong="H5973"\w*, \w she|strong="H5973"\w* \w took|strong="H5927"\w* \w him|strong="H5973"\w* \w up|strong="H5927"\w* \w with|strong="H5973"\w* her, \w with|strong="H5973"\w* \w three|strong="H7969"\w* \w bulls|strong="H6499"\w*, \w and|strong="H3068"\w* \w one|strong="H3068"\w* ephah\f + \fr 1:24 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w of|strong="H1004"\w* \w meal|strong="H7058"\w*, \w and|strong="H3068"\w* \w a|strong="H3068"\w* container \w of|strong="H1004"\w* \w wine|strong="H3196"\w*, \w and|strong="H3068"\w* \w brought|strong="H5927"\w* \w him|strong="H5973"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w in|strong="H3068"\w* \w Shiloh|strong="H7887"\w*. \w The|strong="H3068"\w* \w child|strong="H5288"\w* \w was|strong="H3068"\w* \w young|strong="H5288"\w*. +\v 25 \w They|strong="H7819"\w* \w killed|strong="H7819"\w* \w the|strong="H7819"\w* \w bull|strong="H6499"\w*, \w and|strong="H6499"\w* brought \w the|strong="H7819"\w* \w child|strong="H5288"\w* \w to|strong="H5288"\w* \w Eli|strong="H5941"\w*. +\v 26 \w She|strong="H5973"\w* said, “Oh, \w my|strong="H3068"\w* \w lord|strong="H3068"\w*, \w as|strong="H5315"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w* \w lives|strong="H5315"\w*, \w my|strong="H3068"\w* \w lord|strong="H3068"\w*, \w I|strong="H5315"\w* \w am|strong="H3068"\w* \w the|strong="H3068"\w* \w woman|strong="H2088"\w* \w who|strong="H3068"\w* \w stood|strong="H5324"\w* \w by|strong="H3068"\w* \w you|strong="H5973"\w* \w here|strong="H2088"\w*, \w praying|strong="H6419"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 27 \w I|strong="H5414"\w* \w prayed|strong="H6419"\w* \w for|strong="H3068"\w* \w this|strong="H2088"\w* \w child|strong="H5288"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w me|strong="H5414"\w* \w my|strong="H5414"\w* \w petition|strong="H7596"\w* \w which|strong="H3068"\w* \w I|strong="H5414"\w* \w asked|strong="H7592"\w* \w of|strong="H3068"\w* \w him|strong="H5414"\w*. +\v 28 \w Therefore|strong="H1571"\w* \w I|strong="H3117"\w* \w have|strong="H1961"\w* \w also|strong="H1571"\w* given \w him|strong="H1931"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w As|strong="H3117"\w* \w long|strong="H3117"\w* \w as|strong="H3117"\w* \w he|strong="H1931"\w* \w lives|strong="H1961"\w* \w he|strong="H1931"\w* \w is|strong="H3068"\w* given \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.” \w He|strong="H1931"\w* \w worshiped|strong="H7812"\w* \w Yahweh|strong="H3068"\w* \w there|strong="H8033"\w*. +\c 2 +\p +\v 1 \w Hannah|strong="H2584"\w* \w prayed|strong="H6419"\w*, \w and|strong="H3068"\w* \w said|strong="H6310"\w*, +\q1 “\w My|strong="H3068"\w* \w heart|strong="H3820"\w* \w exults|strong="H5970"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*! +\q2 \w My|strong="H3068"\w* \w horn|strong="H7161"\w* \w is|strong="H3068"\w* \w exalted|strong="H7311"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*. +\q1 \w My|strong="H3068"\w* \w mouth|strong="H6310"\w* \w is|strong="H3068"\w* \w enlarged|strong="H7337"\w* \w over|strong="H5921"\w* \w my|strong="H3068"\w* enemies, +\q2 \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w rejoice|strong="H8055"\w* \w in|strong="H5921"\w* \w your|strong="H3068"\w* \w salvation|strong="H3444"\w*. +\q1 +\v 2 \w There|strong="H3068"\w* \w is|strong="H3068"\w* \w no|strong="H1115"\w* \w one|strong="H6918"\w* \w as|strong="H3068"\w* \w holy|strong="H6918"\w* \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w for|strong="H3588"\w* \w there|strong="H3068"\w* \w is|strong="H3068"\w* \w no|strong="H1115"\w* \w one|strong="H6918"\w* \w besides|strong="H1115"\w* \w you|strong="H3588"\w*, +\q2 \w nor|strong="H1115"\w* \w is|strong="H3068"\w* \w there|strong="H3068"\w* \w any|strong="H3588"\w* \w rock|strong="H6697"\w* \w like|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*. +\b +\q1 +\v 3 “Don’t keep \w talking|strong="H1696"\w* \w so|strong="H3808"\w* \w exceedingly|strong="H7235"\w* \w proudly|strong="H1364"\w*. +\q2 Don’t \w let|strong="H3808"\w* \w arrogance|strong="H6277"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w mouth|strong="H6310"\w*, +\q2 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w knowledge|strong="H1844"\w*. +\q2 \w By|strong="H3068"\w* \w him|strong="H3318"\w* \w actions|strong="H5949"\w* \w are|strong="H3068"\w* \w weighed|strong="H8505"\w*. +\b +\q1 +\v 4 “The \w bows|strong="H7198"\w* \w of|strong="H1368"\w* the \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w are|strong="H1368"\w* \w broken|strong="H2844"\w*. +\q2 \w Those|strong="H3782"\w* \w who|strong="H1368"\w* \w stumbled|strong="H3782"\w* \w are|strong="H1368"\w* armed \w with|strong="H1368"\w* \w strength|strong="H2428"\w*. +\q1 +\v 5 \w Those|strong="H1121"\w* \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w full|strong="H7649"\w* \w have|strong="H1121"\w* \w hired|strong="H7936"\w* themselves \w out|strong="H5704"\w* \w for|strong="H5704"\w* \w bread|strong="H3899"\w*. +\q2 \w Those|strong="H1121"\w* \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w hungry|strong="H7457"\w* \w are|strong="H1121"\w* \w satisfied|strong="H7649"\w*. +\q1 Yes, \w the|strong="H3205"\w* \w barren|strong="H6135"\w* \w has|strong="H3205"\w* \w borne|strong="H3205"\w* \w seven|strong="H7651"\w*. +\q2 \w She|strong="H5704"\w* \w who|strong="H1121"\w* \w has|strong="H3205"\w* \w many|strong="H7227"\w* \w children|strong="H1121"\w* languishes. +\b +\q1 +\v 6 “\w Yahweh|strong="H3068"\w* \w kills|strong="H4191"\w* \w and|strong="H3068"\w* \w makes|strong="H3068"\w* \w alive|strong="H2421"\w*. +\q2 \w He|strong="H3068"\w* \w brings|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w Sheol|strong="H7585"\w*\f + \fr 2:6 \ft Sheol is the place of the dead.\f* \w and|strong="H3068"\w* \w brings|strong="H3381"\w* \w up|strong="H5927"\w*. +\q1 +\v 7 \w Yahweh|strong="H3068"\w* \w makes|strong="H6238"\w* \w poor|strong="H3423"\w* \w and|strong="H3068"\w* \w makes|strong="H6238"\w* \w rich|strong="H6238"\w*. +\q2 \w He|strong="H3068"\w* \w brings|strong="H8213"\w* \w low|strong="H8213"\w*, \w he|strong="H3068"\w* \w also|strong="H3068"\w* \w lifts|strong="H7311"\w* \w up|strong="H7311"\w*. +\q1 +\v 8 \w He|strong="H3588"\w* \w raises|strong="H6965"\w* \w up|strong="H6965"\w* \w the|strong="H5921"\w* \w poor|strong="H1800"\w* \w out|strong="H5921"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w dust|strong="H6083"\w*. +\q2 \w He|strong="H3588"\w* \w lifts|strong="H7311"\w* \w up|strong="H6965"\w* \w the|strong="H5921"\w* \w needy|strong="H1800"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* dunghill +\q2 \w to|strong="H3068"\w* \w make|strong="H7896"\w* \w them|strong="H5921"\w* \w sit|strong="H3427"\w* \w with|strong="H5973"\w* \w princes|strong="H5081"\w* +\q2 \w and|strong="H6965"\w* \w inherit|strong="H5157"\w* \w the|strong="H5921"\w* \w throne|strong="H3678"\w* \w of|strong="H3068"\w* \w glory|strong="H3519"\w*. +\q1 \w For|strong="H3588"\w* \w the|strong="H5921"\w* \w pillars|strong="H4690"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w earth|strong="H6083"\w* \w are|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s. +\q2 \w He|strong="H3588"\w* \w has|strong="H3068"\w* \w set|strong="H7896"\w* \w the|strong="H5921"\w* \w world|strong="H8398"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*. +\q1 +\v 9 \w He|strong="H3588"\w* \w will|strong="H7563"\w* \w keep|strong="H8104"\w* \w the|strong="H3588"\w* \w feet|strong="H7272"\w* \w of|strong="H7272"\w* \w his|strong="H8104"\w* \w holy|strong="H2623"\w* \w ones|strong="H2623"\w*, +\q2 \w but|strong="H3588"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w* \w will|strong="H7563"\w* \w be|strong="H3808"\w* \w put|strong="H7563"\w* \w to|strong="H8104"\w* \w silence|strong="H1826"\w* \w in|strong="H3808"\w* \w darkness|strong="H2822"\w*; +\q2 \w for|strong="H3588"\w* \w no|strong="H3808"\w* \w man|strong="H7563"\w* \w will|strong="H7563"\w* \w prevail|strong="H1396"\w* \w by|strong="H3808"\w* \w strength|strong="H3581"\w*. +\q1 +\v 10 \w Those|strong="H5921"\w* \w who|strong="H3068"\w* \w strive|strong="H7378"\w* \w with|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w broken|strong="H5181"\w* \w to|strong="H3068"\w* pieces. +\q2 \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w thunder|strong="H7481"\w* \w against|strong="H5921"\w* \w them|strong="H5414"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w sky|strong="H8064"\w*. +\b +\q1 “\w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w judge|strong="H1777"\w* \w the|strong="H5921"\w* ends \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w earth|strong="H8064"\w*. +\q2 \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w strength|strong="H5797"\w* \w to|strong="H3068"\w* \w his|strong="H5414"\w* \w king|strong="H4428"\w*, +\q2 \w and|strong="H3068"\w* \w exalt|strong="H7311"\w* \w the|strong="H5921"\w* \w horn|strong="H7161"\w* \w of|strong="H4428"\w* \w his|strong="H5414"\w* \w anointed|strong="H4899"\w*.” +\p +\v 11 Elkanah \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Ramah|strong="H7414"\w* \w to|strong="H3212"\w* \w his|strong="H3068"\w* \w house|strong="H1004"\w*. \w The|strong="H6440"\w* \w child|strong="H5288"\w* \w served|strong="H8334"\w* \w Yahweh|strong="H3068"\w* \w before|strong="H6440"\w* \w Eli|strong="H5941"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w*. +\p +\v 12 Now \w the|strong="H3068"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Eli|strong="H5941"\w* \w were|strong="H1121"\w* \w wicked|strong="H1100"\w* \w men|strong="H1121"\w*. \w They|strong="H3068"\w* didn’t \w know|strong="H3045"\w* \w Yahweh|strong="H3068"\w*. +\v 13 \w The|strong="H3605"\w* \w custom|strong="H4941"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w with|strong="H5971"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w was|strong="H5288"\w* \w that|strong="H5971"\w* \w when|strong="H3027"\w* \w anyone|strong="H3605"\w* \w offered|strong="H2076"\w* \w a|strong="H3068"\w* \w sacrifice|strong="H2077"\w*, \w the|strong="H3605"\w* \w priest|strong="H3548"\w*’s \w servant|strong="H5288"\w* \w came|strong="H5971"\w* \w while|strong="H4941"\w* \w the|strong="H3605"\w* \w meat|strong="H1320"\w* \w was|strong="H5288"\w* \w boiling|strong="H1310"\w*, \w with|strong="H5971"\w* \w a|strong="H3068"\w* \w fork|strong="H4207"\w* \w of|strong="H3027"\w* \w three|strong="H7969"\w* \w teeth|strong="H8127"\w* \w in|strong="H1320"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*; +\v 14 \w and|strong="H3478"\w* \w he|strong="H8033"\w* \w stabbed|strong="H5221"\w* \w it|strong="H6213"\w* \w into|strong="H5927"\w* \w the|strong="H3605"\w* \w pan|strong="H3595"\w*, \w or|strong="H1731"\w* \w kettle|strong="H1731"\w*, \w or|strong="H1731"\w* cauldron, \w or|strong="H1731"\w* \w pot|strong="H6517"\w*. \w The|strong="H3605"\w* \w priest|strong="H3548"\w* \w took|strong="H3947"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* \w fork|strong="H4207"\w* \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w for|strong="H6213"\w* \w himself|strong="H6213"\w*. \w They|strong="H8033"\w* \w did|strong="H6213"\w* \w this|strong="H6213"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Israelites|strong="H3478"\w* \w who|strong="H3605"\w* \w came|strong="H5927"\w* \w there|strong="H8033"\w* \w to|strong="H3478"\w* \w Shiloh|strong="H7887"\w*. +\v 15 \w Yes|strong="H3588"\w*, \w before|strong="H4480"\w* \w they|strong="H3588"\w* \w burned|strong="H6999"\w* \w the|strong="H3588"\w* \w fat|strong="H2459"\w*, \w the|strong="H3588"\w* \w priest|strong="H3548"\w*’s \w servant|strong="H5288"\w* \w came|strong="H1320"\w*, \w and|strong="H3548"\w* said \w to|strong="H5414"\w* \w the|strong="H3588"\w* \w man|strong="H5288"\w* \w who|strong="H3548"\w* \w sacrificed|strong="H2076"\w*, “\w Give|strong="H5414"\w* \w meat|strong="H1320"\w* \w to|strong="H5414"\w* \w roast|strong="H6740"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w priest|strong="H3548"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H1571"\w* \w not|strong="H3808"\w* \w accept|strong="H3947"\w* \w boiled|strong="H1310"\w* \w meat|strong="H1320"\w* \w from|strong="H4480"\w* \w you|strong="H3588"\w*, \w but|strong="H3588"\w* \w raw|strong="H2416"\w*.” +\p +\v 16 \w If|strong="H3588"\w* \w the|strong="H3588"\w* \w man|strong="H5315"\w* said \w to|strong="H5414"\w* \w him|strong="H5414"\w*, “\w Let|strong="H5414"\w* \w the|strong="H3588"\w* \w fat|strong="H2459"\w* \w be|strong="H3808"\w* \w burned|strong="H6999"\w* \w first|strong="H3117"\w*, \w and|strong="H3117"\w* \w then|strong="H6258"\w* \w take|strong="H3947"\w* \w as|strong="H3117"\w* much \w as|strong="H3117"\w* \w your|strong="H5414"\w* \w soul|strong="H5315"\w* \w desires|strong="H8378"\w*;” \w then|strong="H6258"\w* \w he|strong="H3588"\w* \w would|strong="H5315"\w* say, “\w No|strong="H3808"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H5315"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H5414"\w* \w me|strong="H5414"\w* \w now|strong="H6258"\w*; \w and|strong="H3117"\w* \w if|strong="H3588"\w* \w not|strong="H3808"\w*, \w I|strong="H3588"\w* \w will|strong="H5315"\w* \w take|strong="H3947"\w* \w it|strong="H5414"\w* \w by|strong="H3117"\w* \w force|strong="H2394"\w*.” +\v 17 \w The|strong="H6440"\w* \w sin|strong="H2403"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w was|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H1419"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*; \w for|strong="H3588"\w* \w the|strong="H6440"\w* \w men|strong="H5288"\w* \w despised|strong="H5006"\w* \w Yahweh|strong="H3068"\w*’s \w offering|strong="H4503"\w*. +\v 18 \w But|strong="H3068"\w* \w Samuel|strong="H8050"\w* \w ministered|strong="H8334"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w being|strong="H3068"\w* \w a|strong="H3068"\w* \w child|strong="H5288"\w*, \w clothed|strong="H2296"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* linen ephod. +\v 19 Moreover \w his|strong="H6213"\w* mother \w made|strong="H6213"\w* \w him|strong="H6213"\w* \w a|strong="H3068"\w* \w little|strong="H6996"\w* \w robe|strong="H4598"\w*, \w and|strong="H3117"\w* \w brought|strong="H5927"\w* \w it|strong="H6213"\w* \w to|strong="H5927"\w* \w him|strong="H6213"\w* \w from|strong="H5927"\w* \w year|strong="H3117"\w* \w to|strong="H5927"\w* \w year|strong="H3117"\w* \w when|strong="H3117"\w* she \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w with|strong="H6213"\w* \w her|strong="H6213"\w* husband \w to|strong="H5927"\w* \w offer|strong="H5927"\w* \w the|strong="H6213"\w* \w yearly|strong="H3117"\w* \w sacrifice|strong="H2077"\w*. +\v 20 \w Eli|strong="H5941"\w* \w blessed|strong="H1288"\w* Elkanah \w and|strong="H1980"\w* \w his|strong="H7760"\w* wife, \w and|strong="H1980"\w* said, “\w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w give|strong="H7760"\w* \w you|strong="H7760"\w* \w offspring|strong="H2233"\w*\f + \fr 2:20 \ft or, seed\f* \w from|strong="H4480"\w* \w this|strong="H2063"\w* woman \w for|strong="H8478"\w* \w the|strong="H3068"\w* \w petition|strong="H7596"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w asked|strong="H7592"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.” \w Then|strong="H1980"\w* \w they|strong="H3068"\w* \w went|strong="H1980"\w* \w to|strong="H1980"\w* \w their|strong="H3068"\w* own \w home|strong="H4725"\w*. +\v 21 \w Yahweh|strong="H3068"\w* \w visited|strong="H6485"\w* \w Hannah|strong="H2584"\w*, \w and|strong="H1121"\w* \w she|strong="H3588"\w* \w conceived|strong="H2029"\w* \w and|strong="H1121"\w* \w bore|strong="H3205"\w* \w three|strong="H7969"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w two|strong="H8147"\w* \w daughters|strong="H1323"\w*. \w The|strong="H3588"\w* \w child|strong="H5288"\w* \w Samuel|strong="H8050"\w* \w grew|strong="H1431"\w* \w before|strong="H5973"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 22 \w Now|strong="H8085"\w* \w Eli|strong="H5941"\w* \w was|strong="H3478"\w* \w very|strong="H3966"\w* \w old|strong="H1121"\w*; \w and|strong="H1121"\w* \w he|strong="H6213"\w* \w heard|strong="H8085"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w* \w did|strong="H6213"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w how|strong="H8085"\w* \w that|strong="H3605"\w* \w they|strong="H6213"\w* \w slept|strong="H7901"\w* \w with|strong="H6213"\w* \w the|strong="H3605"\w* \w women|strong="H6633"\w* \w who|strong="H3605"\w* \w served|strong="H6633"\w* \w at|strong="H3478"\w* \w the|strong="H3605"\w* \w door|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*. +\v 23 \w He|strong="H6213"\w* \w said|strong="H1697"\w* \w to|strong="H6213"\w* \w them|strong="H6213"\w*, “\w Why|strong="H4100"\w* \w do|strong="H6213"\w* \w you|strong="H3605"\w* \w do|strong="H6213"\w* \w such|strong="H6213"\w* \w things|strong="H1697"\w*? \w For|strong="H6213"\w* \w I|strong="H1697"\w* \w hear|strong="H8085"\w* \w of|strong="H1697"\w* \w your|strong="H3605"\w* \w evil|strong="H7451"\w* \w dealings|strong="H1697"\w* \w from|strong="H8085"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* \w people|strong="H5971"\w*. +\v 24 \w No|strong="H3808"\w*, \w my|strong="H8085"\w* \w sons|strong="H1121"\w*; \w for|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H3068"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w good|strong="H2896"\w* \w report|strong="H8052"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w hear|strong="H8085"\w*! \w You|strong="H3588"\w* \w make|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w people|strong="H5971"\w* disobey. +\v 25 \w If|strong="H3588"\w* \w one|strong="H3808"\w* \w man|strong="H4191"\w* \w sins|strong="H2398"\w* \w against|strong="H2398"\w* \w another|strong="H3808"\w*, \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w judge|strong="H6419"\w* \w him|strong="H6963"\w*; \w but|strong="H3588"\w* \w if|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H4191"\w* \w sins|strong="H2398"\w* \w against|strong="H2398"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H4310"\w* \w will|strong="H3068"\w* \w intercede|strong="H6419"\w* \w for|strong="H3588"\w* \w him|strong="H6963"\w*?” Notwithstanding, \w they|strong="H3588"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H4191"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* father, \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* intended \w to|strong="H4191"\w* \w kill|strong="H4191"\w* \w them|strong="H8085"\w*. +\p +\v 26 \w The|strong="H3068"\w* \w child|strong="H5288"\w* \w Samuel|strong="H8050"\w* \w grew|strong="H1980"\w* \w on|strong="H1980"\w*, \w and|strong="H1980"\w* increased \w in|strong="H1980"\w* \w favor|strong="H2896"\w* \w both|strong="H1571"\w* \w with|strong="H5973"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H1980"\w* \w also|strong="H1571"\w* \w with|strong="H5973"\w* \w men|strong="H5288"\w*. +\p +\v 27 \w A|strong="H3068"\w* man \w of|strong="H1004"\w* \w God|strong="H3068"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Eli|strong="H5941"\w* \w and|strong="H3068"\w* said \w to|strong="H3068"\w* \w him|strong="H1540"\w*, “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w Did|strong="H3068"\w* \w I|strong="H3541"\w* \w reveal|strong="H1540"\w* myself \w to|strong="H3068"\w* \w the|strong="H3541"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w your|strong="H3068"\w* father \w when|strong="H1961"\w* \w they|strong="H3068"\w* \w were|strong="H1961"\w* \w in|strong="H3068"\w* \w Egypt|strong="H4714"\w* \w in|strong="H3068"\w* bondage \w to|strong="H3068"\w* \w Pharaoh|strong="H6547"\w*’s \w house|strong="H1004"\w*? +\v 28 Didn’t \w I|strong="H5414"\w* choose \w him|strong="H5414"\w* \w out|strong="H5414"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w be|strong="H1121"\w* \w my|strong="H5414"\w* \w priest|strong="H3548"\w*, \w to|strong="H3478"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w my|strong="H5414"\w* \w altar|strong="H4196"\w*, \w to|strong="H3478"\w* \w burn|strong="H6999"\w* \w incense|strong="H7004"\w*, \w to|strong="H3478"\w* \w wear|strong="H5375"\w* \w an|strong="H5414"\w* ephod \w before|strong="H6440"\w* \w me|strong="H5414"\w*? Didn’t \w I|strong="H5414"\w* \w give|strong="H5414"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w your|strong="H3605"\w* \w father|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w offerings|strong="H5927"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w made|strong="H5414"\w* \w by|strong="H5921"\w* fire? +\v 29 \w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H6680"\w* \w kick|strong="H1163"\w* \w at|strong="H3478"\w* \w my|strong="H3605"\w* \w sacrifice|strong="H2077"\w* \w and|strong="H1121"\w* \w at|strong="H3478"\w* \w my|strong="H3605"\w* \w offering|strong="H4503"\w*, \w which|strong="H5971"\w* \w I|strong="H6680"\w* \w have|strong="H5971"\w* \w commanded|strong="H6680"\w* \w in|strong="H3478"\w* \w my|strong="H3605"\w* \w habitation|strong="H4583"\w*, \w and|strong="H1121"\w* \w honor|strong="H3513"\w* \w your|strong="H3605"\w* \w sons|strong="H1121"\w* \w above|strong="H4480"\w* \w me|strong="H4480"\w*, \w to|strong="H3478"\w* \w make|strong="H1254"\w* \w yourselves|strong="H3605"\w* \w fat|strong="H1254"\w* \w with|strong="H5971"\w* \w the|strong="H3605"\w* best \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w offerings|strong="H4503"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w*?’ +\v 30 “\w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w says|strong="H5002"\w*, ‘\w I|strong="H3588"\w* \w said|strong="H5002"\w* \w indeed|strong="H3588"\w* \w that|strong="H3588"\w* \w your|strong="H3068"\w* \w house|strong="H1004"\w* \w and|strong="H1980"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w your|strong="H3068"\w* father \w should|strong="H3068"\w* \w walk|strong="H1980"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w forever|strong="H5769"\w*.’ \w But|strong="H3588"\w* \w now|strong="H6258"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H5002"\w*, ‘\w Far|strong="H5704"\w* \w be|strong="H3068"\w* \w it|strong="H3588"\w* \w from|strong="H6440"\w* \w me|strong="H6440"\w*; \w for|strong="H3588"\w* \w those|strong="H1980"\w* \w who|strong="H3068"\w* \w honor|strong="H3513"\w* \w me|strong="H6440"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w honor|strong="H3513"\w*, \w and|strong="H1980"\w* \w those|strong="H1980"\w* \w who|strong="H3068"\w* \w despise|strong="H7043"\w* \w me|strong="H6440"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w cursed|strong="H7043"\w*. +\v 31 \w Behold|strong="H2009"\w*,\f + \fr 2:31 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w come|strong="H1961"\w* \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w cut|strong="H1438"\w* \w off|strong="H1438"\w* \w your|strong="H1961"\w* \w arm|strong="H2220"\w* \w and|strong="H3117"\w* \w the|strong="H3117"\w* \w arm|strong="H2220"\w* \w of|strong="H1004"\w* \w your|strong="H1961"\w* father’s \w house|strong="H1004"\w*, \w that|strong="H3117"\w* \w there|strong="H2009"\w* \w will|strong="H1961"\w* \w not|strong="H1961"\w* \w be|strong="H1961"\w* \w an|strong="H1961"\w* \w old|strong="H2205"\w* \w man|strong="H2205"\w* \w in|strong="H1004"\w* \w your|strong="H1961"\w* \w house|strong="H1004"\w*. +\v 32 \w You|strong="H3605"\w* \w will|strong="H1961"\w* \w see|strong="H5027"\w* \w the|strong="H3605"\w* \w affliction|strong="H6862"\w* \w of|strong="H1004"\w* \w my|strong="H3605"\w* \w habitation|strong="H4583"\w*, \w in|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w wealth|strong="H3808"\w* \w which|strong="H1004"\w* \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w give|strong="H3190"\w* \w Israel|strong="H3478"\w*. \w There|strong="H1961"\w* \w shall|strong="H3478"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w an|strong="H1961"\w* \w old|strong="H2205"\w* \w man|strong="H2205"\w* \w in|strong="H3478"\w* \w your|strong="H3605"\w* \w house|strong="H1004"\w* \w forever|strong="H3605"\w*. +\v 33 \w The|strong="H3605"\w* \w man|strong="H5315"\w* \w of|strong="H1004"\w* \w yours|strong="H4191"\w* \w whom|strong="H5869"\w* \w I|strong="H5315"\w* don’t \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w my|strong="H3605"\w* \w altar|strong="H4196"\w* \w will|strong="H5869"\w* \w consume|strong="H3615"\w* \w your|strong="H3605"\w* \w eyes|strong="H5869"\w*\f + \fr 2:33 \ft or, blind your eyes with tears\f* \w and|strong="H1004"\w* grieve \w your|strong="H3605"\w* \w heart|strong="H5315"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w increase|strong="H4768"\w* \w of|strong="H1004"\w* \w your|strong="H3605"\w* \w house|strong="H1004"\w* \w will|strong="H5869"\w* \w die|strong="H4191"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* flower \w of|strong="H1004"\w* \w their|strong="H3605"\w* age. +\v 34 \w This|strong="H2088"\w* \w will|strong="H1121"\w* \w be|strong="H4191"\w* \w the|strong="H3117"\w* sign \w to|strong="H4191"\w* \w you|strong="H3117"\w* \w that|strong="H3117"\w* \w will|strong="H1121"\w* come \w on|strong="H3117"\w* \w your|strong="H2088"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w*, \w on|strong="H3117"\w* \w Hophni|strong="H2652"\w* \w and|strong="H1121"\w* \w Phinehas|strong="H6372"\w*: \w in|strong="H4191"\w* \w one|strong="H2088"\w* \w day|strong="H3117"\w* \w they|strong="H3117"\w* \w will|strong="H1121"\w* \w both|strong="H8147"\w* \w die|strong="H4191"\w*. +\v 35 \w I|strong="H3117"\w* \w will|strong="H5315"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w a|strong="H3068"\w* faithful \w priest|strong="H3548"\w* \w for|strong="H6213"\w* \w myself|strong="H5315"\w* \w who|strong="H3605"\w* \w will|strong="H5315"\w* \w do|strong="H6213"\w* according \w to|strong="H1980"\w* \w that|strong="H3605"\w* \w which|strong="H1004"\w* \w is|strong="H5315"\w* \w in|strong="H1980"\w* \w my|strong="H3605"\w* \w heart|strong="H3824"\w* \w and|strong="H1980"\w* \w in|strong="H1980"\w* \w my|strong="H3605"\w* \w mind|strong="H3824"\w*. \w I|strong="H3117"\w* \w will|strong="H5315"\w* \w build|strong="H1129"\w* \w him|strong="H6440"\w* \w a|strong="H3068"\w* \w sure|strong="H6965"\w* \w house|strong="H1004"\w*. \w He|strong="H3117"\w* \w will|strong="H5315"\w* \w walk|strong="H1980"\w* \w before|strong="H6440"\w* \w my|strong="H3605"\w* \w anointed|strong="H4899"\w* \w forever|strong="H3605"\w*. +\v 36 \w It|strong="H1961"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w that|strong="H3605"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3701"\w* \w left|strong="H3498"\w* \w in|strong="H1004"\w* \w your|strong="H3605"\w* \w house|strong="H1004"\w* \w will|strong="H1961"\w* \w come|strong="H1961"\w* \w and|strong="H3701"\w* \w bow|strong="H7812"\w* \w down|strong="H7812"\w* \w to|strong="H1961"\w* \w him|strong="H3605"\w* \w for|strong="H1004"\w* \w a|strong="H3068"\w* \w piece|strong="H6595"\w* \w of|strong="H1004"\w* \w silver|strong="H3701"\w* \w and|strong="H3701"\w* \w a|strong="H3068"\w* \w loaf|strong="H3603"\w* \w of|strong="H1004"\w* \w bread|strong="H3899"\w*, \w and|strong="H3701"\w* \w will|strong="H1961"\w* say, “\w Please|strong="H4994"\w* \w put|strong="H5596"\w* \w me|strong="H4994"\w* \w into|strong="H1961"\w* \w one|strong="H3605"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* priests’ \w offices|strong="H3550"\w*, \w that|strong="H3605"\w* \w I|strong="H3605"\w* \w may|strong="H1961"\w* \w eat|strong="H3899"\w* \w a|strong="H3068"\w* \w morsel|strong="H6595"\w* \w of|strong="H1004"\w* \w bread|strong="H3899"\w*.”’” +\c 3 +\p +\v 1 \w The|strong="H6440"\w* \w child|strong="H5288"\w* \w Samuel|strong="H8050"\w* \w ministered|strong="H8334"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w before|strong="H6440"\w* \w Eli|strong="H5941"\w*. \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w was|strong="H3068"\w* \w rare|strong="H3368"\w* \w in|strong="H3068"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*. \w There|strong="H1961"\w* \w were|strong="H1961"\w* \w not|strong="H1961"\w* many \w visions|strong="H2377"\w*, \w then|strong="H1961"\w*. +\v 2 \w At|strong="H3117"\w* \w that|strong="H7200"\w* \w time|strong="H3117"\w*, \w when|strong="H1961"\w* \w Eli|strong="H5941"\w* \w was|strong="H1961"\w* \w laid|strong="H7901"\w* \w down|strong="H7901"\w* \w in|strong="H3117"\w* \w his|strong="H7200"\w* \w place|strong="H4725"\w* (\w now|strong="H1961"\w* \w his|strong="H7200"\w* \w eyes|strong="H5869"\w* \w had|strong="H1961"\w* \w begun|strong="H2490"\w* \w to|strong="H3201"\w* grow \w dim|strong="H3544"\w*, \w so|strong="H1961"\w* \w that|strong="H7200"\w* \w he|strong="H1931"\w* \w could|strong="H3201"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w*), +\v 3 \w and|strong="H3068"\w* \w God|strong="H3068"\w*’s \w lamp|strong="H5216"\w* hadn’t \w yet|strong="H2962"\w* \w gone|strong="H3068"\w* \w out|strong="H3518"\w*, \w and|strong="H3068"\w* \w Samuel|strong="H8050"\w* \w had|strong="H3068"\w* \w laid|strong="H7901"\w* \w down|strong="H7901"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1964"\w* \w where|strong="H8033"\w* \w God|strong="H3068"\w*’s ark \w was|strong="H3068"\w*, +\v 4 \w Yahweh|strong="H3068"\w* \w called|strong="H7121"\w* \w Samuel|strong="H8050"\w*. \w He|strong="H3068"\w* \w said|strong="H7121"\w*, “\w Here|strong="H2005"\w* \w I|strong="H2005"\w* \w am|strong="H3068"\w*.” +\p +\v 5 \w He|strong="H3588"\w* \w ran|strong="H7323"\w* \w to|strong="H7725"\w* \w Eli|strong="H5941"\w* \w and|strong="H7725"\w* \w said|strong="H7121"\w*, “\w Here|strong="H2005"\w* \w I|strong="H3588"\w* \w am|strong="H2005"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w called|strong="H7121"\w* \w me|strong="H7725"\w*.” +\p \w He|strong="H3588"\w* \w said|strong="H7121"\w*, “\w I|strong="H3588"\w* didn’t \w call|strong="H7121"\w*. \w Lie|strong="H7901"\w* \w down|strong="H7901"\w* \w again|strong="H7725"\w*.” +\p \w He|strong="H3588"\w* \w went|strong="H3212"\w* \w and|strong="H7725"\w* \w lay|strong="H7901"\w* \w down|strong="H7901"\w*. +\v 6 \w Yahweh|strong="H3068"\w* \w called|strong="H7121"\w* \w yet|strong="H5750"\w* \w again|strong="H7725"\w*, “\w Samuel|strong="H8050"\w*!” +\p \w Samuel|strong="H8050"\w* \w arose|strong="H6965"\w* \w and|strong="H1121"\w* \w went|strong="H3212"\w* \w to|strong="H7725"\w* \w Eli|strong="H5941"\w* \w and|strong="H1121"\w* \w said|strong="H7121"\w*, “\w Here|strong="H2005"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w called|strong="H7121"\w* \w me|strong="H7725"\w*.” +\p \w He|strong="H3588"\w* \w answered|strong="H7725"\w*, “\w I|strong="H3588"\w* didn’t \w call|strong="H7121"\w*, \w my|strong="H3068"\w* \w son|strong="H1121"\w*. \w Lie|strong="H7901"\w* \w down|strong="H7901"\w* \w again|strong="H7725"\w*.” +\v 7 Now \w Samuel|strong="H8050"\w* didn’t \w yet|strong="H2962"\w* \w know|strong="H3045"\w* \w Yahweh|strong="H3068"\w*, neither \w was|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w yet|strong="H2962"\w* \w revealed|strong="H1540"\w* \w to|strong="H3068"\w* \w him|strong="H3045"\w*. +\v 8 \w Yahweh|strong="H3068"\w* \w called|strong="H7121"\w* \w Samuel|strong="H8050"\w* \w again|strong="H3254"\w* \w the|strong="H3588"\w* \w third|strong="H7992"\w* \w time|strong="H7992"\w*. \w He|strong="H3588"\w* \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Eli|strong="H5941"\w* \w and|strong="H6965"\w* \w said|strong="H7121"\w*, “\w Here|strong="H2005"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w called|strong="H7121"\w* \w me|strong="H7121"\w*.” +\p \w Eli|strong="H5941"\w* perceived \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w called|strong="H7121"\w* \w the|strong="H3588"\w* \w child|strong="H5288"\w*. +\v 9 \w Therefore|strong="H3588"\w* \w Eli|strong="H5941"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Samuel|strong="H8050"\w*, “\w Go|strong="H3212"\w*, \w lie|strong="H7901"\w* \w down|strong="H7901"\w*. \w It|strong="H7121"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w*, \w if|strong="H3588"\w* \w he|strong="H3588"\w* \w calls|strong="H7121"\w* \w you|strong="H3588"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w say|strong="H1696"\w*, ‘\w Speak|strong="H1696"\w*, \w Yahweh|strong="H3068"\w*; \w for|strong="H3588"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w hears|strong="H8085"\w*.’” \w So|strong="H1961"\w* \w Samuel|strong="H8050"\w* \w went|strong="H3212"\w* \w and|strong="H3068"\w* \w lay|strong="H7901"\w* \w down|strong="H7901"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w place|strong="H4725"\w*. +\v 10 \w Yahweh|strong="H3068"\w* \w came|strong="H3068"\w*, \w and|strong="H3068"\w* \w stood|strong="H3320"\w*, \w and|strong="H3068"\w* \w called|strong="H7121"\w* \w as|strong="H3068"\w* \w at|strong="H3068"\w* \w other|strong="H6471"\w* \w times|strong="H6471"\w*, “\w Samuel|strong="H8050"\w*! \w Samuel|strong="H8050"\w*!” +\p \w Then|strong="H1696"\w* \w Samuel|strong="H8050"\w* \w said|strong="H1696"\w*, “\w Speak|strong="H1696"\w*; \w for|strong="H3588"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w hears|strong="H8085"\w*.” +\p +\v 11 \w Yahweh|strong="H3068"\w* \w said|strong="H1697"\w* \w to|strong="H3478"\w* \w Samuel|strong="H8050"\w*, “\w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w a|strong="H3068"\w* \w thing|strong="H1697"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w* \w at|strong="H3478"\w* \w which|strong="H3068"\w* \w both|strong="H8147"\w* \w the|strong="H3605"\w* ears \w of|strong="H3068"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w hears|strong="H8085"\w* \w it|strong="H6213"\w* \w will|strong="H3068"\w* \w tingle|strong="H6750"\w*. +\v 12 \w In|strong="H1004"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H1004"\w* \w perform|strong="H6965"\w* \w against|strong="H1696"\w* \w Eli|strong="H5941"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H3117"\w* \w have|strong="H3117"\w* \w spoken|strong="H1696"\w* \w concerning|strong="H1696"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*, \w from|strong="H3117"\w* \w the|strong="H3605"\w* \w beginning|strong="H2490"\w* even \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w end|strong="H3615"\w*. +\v 13 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3045"\w* \w told|strong="H5046"\w* \w him|strong="H5046"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H1121"\w* \w judge|strong="H8199"\w* \w his|strong="H3045"\w* \w house|strong="H1004"\w* \w forever|strong="H5769"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w iniquity|strong="H5771"\w* \w which|strong="H1992"\w* \w he|strong="H3588"\w* \w knew|strong="H3045"\w*, \w because|strong="H3588"\w* \w his|strong="H3045"\w* \w sons|strong="H1121"\w* \w brought|strong="H7043"\w* \w a|strong="H3068"\w* \w curse|strong="H7043"\w* \w on|strong="H1004"\w* \w themselves|strong="H1992"\w*, \w and|strong="H1121"\w* \w he|strong="H3588"\w* didn’t restrain \w them|strong="H1992"\w*. +\v 14 \w Therefore|strong="H3651"\w* \w I|strong="H5704"\w* \w have|strong="H5771"\w* \w sworn|strong="H7650"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Eli|strong="H5941"\w* \w that|strong="H3651"\w* \w the|strong="H5704"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1004"\w* \w Eli|strong="H5941"\w*’s \w house|strong="H1004"\w* \w shall|strong="H1004"\w* \w not|strong="H5704"\w* \w be|strong="H5769"\w* removed \w with|strong="H1004"\w* \w sacrifice|strong="H2077"\w* \w or|strong="H5704"\w* \w offering|strong="H4503"\w* \w forever|strong="H5769"\w*.” +\p +\v 15 \w Samuel|strong="H8050"\w* \w lay|strong="H7901"\w* \w until|strong="H5704"\w* \w the|strong="H3068"\w* \w morning|strong="H1242"\w*, \w and|strong="H3068"\w* \w opened|strong="H6605"\w* \w the|strong="H3068"\w* \w doors|strong="H1817"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. \w Samuel|strong="H8050"\w* \w was|strong="H3068"\w* \w afraid|strong="H3372"\w* \w to|strong="H5704"\w* \w show|strong="H5046"\w* \w Eli|strong="H5941"\w* \w the|strong="H3068"\w* \w vision|strong="H4759"\w*. +\v 16 \w Then|strong="H7121"\w* \w Eli|strong="H5941"\w* \w called|strong="H7121"\w* \w Samuel|strong="H8050"\w* \w and|strong="H1121"\w* \w said|strong="H7121"\w*, “\w Samuel|strong="H8050"\w*, \w my|strong="H7121"\w* \w son|strong="H1121"\w*!” +\p \w He|strong="H7121"\w* \w said|strong="H7121"\w*, “\w Here|strong="H2005"\w* \w I|strong="H2005"\w* \w am|strong="H2005"\w*.” +\p +\v 17 \w He|strong="H6213"\w* \w said|strong="H1696"\w*, “\w What|strong="H4100"\w* \w is|strong="H4100"\w* \w the|strong="H3605"\w* \w thing|strong="H1697"\w* \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w has|strong="H4100"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3605"\w*? \w Please|strong="H4994"\w* don’t \w hide|strong="H3582"\w* \w it|strong="H6213"\w* \w from|strong="H4480"\w* \w me|strong="H4994"\w*. God \w do|strong="H6213"\w* \w so|strong="H6213"\w* \w to|strong="H1696"\w* \w you|strong="H3605"\w*, \w and|strong="H6213"\w* \w more|strong="H3254"\w* \w also|strong="H3541"\w*, if \w you|strong="H3605"\w* \w hide|strong="H3582"\w* \w anything|strong="H3605"\w* \w from|strong="H4480"\w* \w me|strong="H4994"\w* \w of|strong="H1697"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w things|strong="H1697"\w* \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3605"\w*.” +\p +\v 18 \w Samuel|strong="H8050"\w* \w told|strong="H5046"\w* \w him|strong="H5046"\w* \w every|strong="H3605"\w* bit, \w and|strong="H3068"\w* \w hid|strong="H3582"\w* \w nothing|strong="H3808"\w* \w from|strong="H4480"\w* \w him|strong="H5046"\w*. +\p \w He|strong="H1931"\w* \w said|strong="H1697"\w*, “\w It|strong="H1931"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w Let|strong="H5046"\w* \w him|strong="H5046"\w* \w do|strong="H6213"\w* \w what|strong="H1697"\w* \w seems|strong="H3605"\w* \w good|strong="H2896"\w* \w to|strong="H3068"\w* \w him|strong="H5046"\w*.” +\p +\v 19 \w Samuel|strong="H8050"\w* \w grew|strong="H1431"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w* \w and|strong="H3068"\w* \w let|strong="H3808"\w* \w none|strong="H3808"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w words|strong="H1697"\w* \w fall|strong="H5307"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* ground. +\v 20 \w All|strong="H3605"\w* \w Israel|strong="H3478"\w* \w from|strong="H3478"\w* \w Dan|strong="H1835"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* Beersheba \w knew|strong="H3045"\w* \w that|strong="H3588"\w* \w Samuel|strong="H8050"\w* \w was|strong="H3068"\w* established \w to|strong="H5704"\w* \w be|strong="H3068"\w* \w a|strong="H3068"\w* \w prophet|strong="H5030"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 21 \w Yahweh|strong="H3068"\w* \w appeared|strong="H7200"\w* \w again|strong="H3254"\w* \w in|strong="H3068"\w* \w Shiloh|strong="H7887"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w revealed|strong="H1540"\w* \w himself|strong="H1540"\w* \w to|strong="H3068"\w* \w Samuel|strong="H8050"\w* \w in|strong="H3068"\w* \w Shiloh|strong="H7887"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*. +\c 4 +\nb +\v 1 \w The|strong="H3605"\w* \w word|strong="H1697"\w* \w of|strong="H1697"\w* \w Samuel|strong="H8050"\w* \w came|strong="H1961"\w* \w to|strong="H3318"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*. +\p \w Now|strong="H1961"\w* \w Israel|strong="H3478"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w to|strong="H3318"\w* \w battle|strong="H4421"\w*, \w and|strong="H3478"\w* \w encamped|strong="H2583"\w* \w beside|strong="H5921"\w* Ebenezer; \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w encamped|strong="H2583"\w* \w in|strong="H5921"\w* Aphek. +\v 2 \w The|strong="H6440"\w* \w Philistines|strong="H6430"\w* \w put|strong="H6186"\w* \w themselves|strong="H6186"\w* \w in|strong="H3478"\w* \w array|strong="H6186"\w* \w against|strong="H6440"\w* \w Israel|strong="H3478"\w*. \w When|strong="H3478"\w* \w they|strong="H3478"\w* \w joined|strong="H6186"\w* \w battle|strong="H4421"\w*, \w Israel|strong="H3478"\w* \w was|strong="H3478"\w* \w defeated|strong="H5221"\w* \w by|strong="H3478"\w* \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w*, \w who|strong="H3478"\w* \w killed|strong="H5221"\w* \w about|strong="H5221"\w* four thousand \w men|strong="H3478"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w army|strong="H4634"\w* \w in|strong="H3478"\w* \w the|strong="H6440"\w* \w field|strong="H7704"\w*. +\v 3 \w When|strong="H3117"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w had|strong="H3068"\w* \w come|strong="H5971"\w* \w into|strong="H3947"\w* \w the|strong="H6440"\w* \w camp|strong="H4264"\w*, \w the|strong="H6440"\w* \w elders|strong="H2205"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* said, “\w Why|strong="H4100"\w* \w has|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w defeated|strong="H5062"\w* \w us|strong="H6440"\w* \w today|strong="H3117"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w*? Let’s \w get|strong="H3947"\w* \w the|strong="H6440"\w* ark \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w* \w out|strong="H3947"\w* \w of|strong="H3068"\w* \w Shiloh|strong="H7887"\w* \w and|strong="H3478"\w* \w bring|strong="H3947"\w* \w it|strong="H6440"\w* \w to|strong="H3478"\w* \w us|strong="H6440"\w*, \w that|strong="H5971"\w* \w it|strong="H6440"\w* \w may|strong="H3068"\w* \w come|strong="H5971"\w* \w among|strong="H7130"\w* \w us|strong="H6440"\w* \w and|strong="H3478"\w* \w save|strong="H3467"\w* \w us|strong="H6440"\w* \w out|strong="H3947"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w hand|strong="H3709"\w* \w of|strong="H3068"\w* \w our|strong="H3068"\w* enemies.” +\p +\v 4 \w So|strong="H7971"\w* \w the|strong="H5375"\w* \w people|strong="H5971"\w* \w sent|strong="H7971"\w* \w to|strong="H3068"\w* \w Shiloh|strong="H7887"\w*, \w and|strong="H1121"\w* \w they|strong="H8033"\w* \w brought|strong="H5375"\w* \w from|strong="H1121"\w* \w there|strong="H8033"\w* \w the|strong="H5375"\w* ark \w of|strong="H1121"\w* \w the|strong="H5375"\w* \w covenant|strong="H1285"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1121"\w* \w Armies|strong="H6635"\w*, \w who|strong="H5971"\w* \w sits|strong="H3427"\w* above \w the|strong="H5375"\w* \w cherubim|strong="H3742"\w*; \w and|strong="H1121"\w* \w the|strong="H5375"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Eli|strong="H5941"\w*, \w Hophni|strong="H2652"\w* \w and|strong="H1121"\w* \w Phinehas|strong="H6372"\w*, \w were|strong="H5971"\w* \w there|strong="H8033"\w* \w with|strong="H5973"\w* \w the|strong="H5375"\w* ark \w of|strong="H1121"\w* \w the|strong="H5375"\w* \w covenant|strong="H1285"\w* \w of|strong="H1121"\w* \w God|strong="H3068"\w*. +\v 5 \w When|strong="H1961"\w* \w the|strong="H3605"\w* ark \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w* \w came|strong="H1961"\w* \w into|strong="H1961"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w*, \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w shouted|strong="H7321"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w shout|strong="H7321"\w*, \w so|strong="H1961"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* earth \w resounded|strong="H1949"\w*. +\v 6 \w When|strong="H3588"\w* \w the|strong="H8085"\w* \w Philistines|strong="H6430"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w noise|strong="H6963"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* \w shout|strong="H8643"\w*, \w they|strong="H3588"\w* \w said|strong="H8085"\w*, “\w What|strong="H4100"\w* \w does|strong="H4100"\w* \w the|strong="H8085"\w* \w noise|strong="H6963"\w* \w of|strong="H3068"\w* \w this|strong="H2063"\w* \w great|strong="H1419"\w* \w shout|strong="H8643"\w* \w in|strong="H3068"\w* \w the|strong="H8085"\w* \w camp|strong="H4264"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* \w Hebrews|strong="H5680"\w* mean?” \w They|strong="H3588"\w* \w understood|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s ark \w had|strong="H3068"\w* \w come|strong="H5680"\w* \w into|strong="H4264"\w* \w the|strong="H8085"\w* \w camp|strong="H4264"\w*. +\v 7 \w The|strong="H3588"\w* \w Philistines|strong="H6430"\w* \w were|strong="H1961"\w* \w afraid|strong="H3372"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* said, “\w God|strong="H3808"\w* \w has|strong="H1961"\w* \w come|strong="H1961"\w* \w into|strong="H1961"\w* \w the|strong="H3588"\w* \w camp|strong="H4264"\w*.” \w They|strong="H3588"\w* said, “Woe \w to|strong="H1961"\w* \w us|strong="H3588"\w*! \w For|strong="H3588"\w* \w there|strong="H1961"\w* \w has|strong="H1961"\w* \w not|strong="H3808"\w* \w been|strong="H1961"\w* \w such|strong="H2063"\w* \w a|strong="H3068"\w* \w thing|strong="H2063"\w* \w before|strong="H3808"\w*. +\v 8 Woe \w to|strong="H3027"\w* \w us|strong="H5337"\w*! \w Who|strong="H4310"\w* \w shall|strong="H4714"\w* \w deliver|strong="H5337"\w* \w us|strong="H5337"\w* \w out|strong="H5337"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w these|strong="H1992"\w* mighty gods? \w These|strong="H1992"\w* \w are|strong="H1992"\w* \w the|strong="H3605"\w* gods \w that|strong="H3605"\w* \w struck|strong="H5221"\w* \w the|strong="H3605"\w* \w Egyptians|strong="H4714"\w* \w with|strong="H4714"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H3027"\w* \w plagues|strong="H4347"\w* \w in|strong="H3027"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w*. +\v 9 \w Be|strong="H1961"\w* \w strong|strong="H2388"\w* \w and|strong="H2388"\w* behave \w like|strong="H1961"\w* \w men|strong="H2388"\w*, \w O|strong="H3068"\w* \w you|strong="H5647"\w* \w Philistines|strong="H6430"\w*, \w that|strong="H1961"\w* \w you|strong="H5647"\w* \w not|strong="H6435"\w* \w be|strong="H1961"\w* \w servants|strong="H5647"\w* \w to|strong="H1961"\w* \w the|strong="H5647"\w* \w Hebrews|strong="H5680"\w*, \w as|strong="H1961"\w* \w they|strong="H6430"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w to|strong="H1961"\w* \w you|strong="H5647"\w*. \w Strengthen|strong="H2388"\w* yourselves \w like|strong="H1961"\w* \w men|strong="H2388"\w*, \w and|strong="H2388"\w* \w fight|strong="H3898"\w*!” +\v 10 \w The|strong="H1961"\w* \w Philistines|strong="H6430"\w* \w fought|strong="H3898"\w*, \w and|strong="H3478"\w* \w Israel|strong="H3478"\w* \w was|strong="H1961"\w* \w defeated|strong="H5062"\w*, \w and|strong="H3478"\w* each \w man|strong="H1419"\w* \w fled|strong="H5127"\w* \w to|strong="H3478"\w* \w his|strong="H3478"\w* tent. \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H1419"\w* \w slaughter|strong="H4347"\w*; \w for|strong="H3478"\w* \w thirty|strong="H7970"\w* thousand \w footmen|strong="H7273"\w* \w of|strong="H5307"\w* \w Israel|strong="H3478"\w* \w fell|strong="H5307"\w*. +\v 11 God’s ark \w was|strong="H1121"\w* \w taken|strong="H3947"\w*; \w and|strong="H1121"\w* \w the|strong="H3947"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Eli|strong="H5941"\w*, \w Hophni|strong="H2652"\w* \w and|strong="H1121"\w* \w Phinehas|strong="H6372"\w*, \w were|strong="H1121"\w* \w slain|strong="H4191"\w*. +\p +\v 12 \w A|strong="H3068"\w* \w man|strong="H7218"\w* \w of|strong="H3117"\w* \w Benjamin|strong="H1144"\w* \w ran|strong="H7323"\w* \w out|strong="H5921"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w army|strong="H4634"\w* \w and|strong="H3117"\w* \w came|strong="H1144"\w* \w to|strong="H5921"\w* \w Shiloh|strong="H7887"\w* \w the|strong="H5921"\w* \w same|strong="H1931"\w* \w day|strong="H3117"\w*, \w with|strong="H5921"\w* \w his|strong="H5921"\w* \w clothes|strong="H4055"\w* \w torn|strong="H7167"\w* \w and|strong="H3117"\w* \w with|strong="H5921"\w* dirt \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w head|strong="H7218"\w*. +\v 13 \w When|strong="H3588"\w* \w he|strong="H3588"\w* \w came|strong="H1961"\w*, \w behold|strong="H2009"\w*, \w Eli|strong="H5941"\w* \w was|strong="H1961"\w* \w sitting|strong="H3427"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w seat|strong="H3678"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w road|strong="H1870"\w* \w watching|strong="H6822"\w*, \w for|strong="H3588"\w* \w his|strong="H3605"\w* \w heart|strong="H3820"\w* \w trembled|strong="H2730"\w* \w for|strong="H3588"\w* God’s ark. \w When|strong="H3588"\w* \w the|strong="H3605"\w* \w man|strong="H3605"\w* \w came|strong="H1961"\w* \w into|strong="H5921"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w and|strong="H5892"\w* \w told|strong="H5046"\w* \w about|strong="H1961"\w* \w it|strong="H5921"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w cried|strong="H2199"\w* \w out|strong="H2199"\w*. +\v 14 \w When|strong="H8085"\w* \w Eli|strong="H5941"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w crying|strong="H6818"\w*, \w he|strong="H2088"\w* \w said|strong="H8085"\w*, “\w What|strong="H4100"\w* \w does|strong="H4100"\w* \w the|strong="H8085"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w this|strong="H2088"\w* \w tumult|strong="H1995"\w* mean?” +\p \w The|strong="H8085"\w* \w man|strong="H2088"\w* \w hurried|strong="H4116"\w*, \w and|strong="H6963"\w* came \w and|strong="H6963"\w* \w told|strong="H5046"\w* \w Eli|strong="H5941"\w*. +\v 15 Now \w Eli|strong="H5941"\w* \w was|strong="H1121"\w* \w ninety-eight|strong="H8673"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*. \w His|strong="H7200"\w* \w eyes|strong="H5869"\w* \w were|strong="H1121"\w* \w set|strong="H6965"\w*, \w so|strong="H3808"\w* \w that|strong="H7200"\w* \w he|strong="H3808"\w* \w could|strong="H3201"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w*. +\v 16 \w The|strong="H4480"\w* \w man|strong="H1121"\w* \w said|strong="H1697"\w* \w to|strong="H1961"\w* \w Eli|strong="H5941"\w*, “\w I|strong="H3117"\w* \w am|strong="H1961"\w* \w he|strong="H3117"\w* \w who|strong="H1121"\w* \w came|strong="H1961"\w* \w out|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w army|strong="H4634"\w*, \w and|strong="H1121"\w* \w I|strong="H3117"\w* \w fled|strong="H5127"\w* \w today|strong="H3117"\w* \w out|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w army|strong="H4634"\w*.” +\p \w He|strong="H3117"\w* \w said|strong="H1697"\w*, “\w How|strong="H4100"\w* \w did|strong="H4100"\w* \w the|strong="H4480"\w* \w matter|strong="H1697"\w* \w go|strong="H1961"\w*, \w my|strong="H1961"\w* \w son|strong="H1121"\w*?” +\p +\v 17 \w He|strong="H8147"\w* \w who|strong="H5971"\w* \w brought|strong="H3947"\w* \w the|strong="H6440"\w* \w news|strong="H1319"\w* \w answered|strong="H6030"\w*, “\w Israel|strong="H3478"\w* \w has|strong="H1961"\w* \w fled|strong="H5127"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H1121"\w* \w there|strong="H1961"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w also|strong="H1571"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w slaughter|strong="H4046"\w* \w among|strong="H5971"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*. \w Your|strong="H3947"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w* \w also|strong="H1571"\w*, \w Hophni|strong="H2652"\w* \w and|strong="H1121"\w* \w Phinehas|strong="H6372"\w*, \w are|strong="H5971"\w* \w dead|strong="H4191"\w*, \w and|strong="H1121"\w* God’s ark \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w captured|strong="H3947"\w*.” +\p +\v 18 \w When|strong="H3588"\w* \w he|strong="H1931"\w* \w made|strong="H1961"\w* \w mention|strong="H2142"\w* \w of|strong="H3027"\w* \w God|strong="H3027"\w*’s ark, \w Eli|strong="H5307"\w* \w fell|strong="H5307"\w* \w from|strong="H5921"\w* \w off|strong="H5921"\w* \w his|strong="H5921"\w* \w seat|strong="H3678"\w* backward \w by|strong="H3027"\w* \w the|strong="H5921"\w* \w side|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w gate|strong="H8179"\w*; \w and|strong="H3478"\w* \w his|strong="H5921"\w* \w neck|strong="H4665"\w* \w broke|strong="H7665"\w*, \w and|strong="H3478"\w* \w he|strong="H1931"\w* \w died|strong="H4191"\w*, \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H1961"\w* \w an|strong="H1961"\w* \w old|strong="H2204"\w* \w man|strong="H4191"\w* \w and|strong="H3478"\w* \w heavy|strong="H3515"\w*. \w He|strong="H1931"\w* \w had|strong="H1961"\w* \w judged|strong="H8199"\w* \w Israel|strong="H3478"\w* forty \w years|strong="H8141"\w*. +\p +\v 19 \w His|strong="H3947"\w* \w daughter-in-law|strong="H3618"\w*, \w Phinehas|strong="H6372"\w*’ wife, \w was|strong="H3205"\w* \w with|strong="H5921"\w* \w child|strong="H2030"\w*, \w near|strong="H5921"\w* \w to|strong="H4191"\w* \w giving|strong="H3205"\w* \w birth|strong="H3205"\w*. \w When|strong="H3588"\w* \w she|strong="H3588"\w* \w heard|strong="H8085"\w* \w the|strong="H5921"\w* \w news|strong="H8052"\w* \w that|strong="H3588"\w* God’s ark \w was|strong="H3205"\w* \w taken|strong="H3947"\w* \w and|strong="H8085"\w* \w that|strong="H3588"\w* \w her|strong="H3947"\w* \w father-in-law|strong="H2524"\w* \w and|strong="H8085"\w* \w her|strong="H3947"\w* husband \w were|strong="H3205"\w* \w dead|strong="H4191"\w*, \w she|strong="H3588"\w* \w bowed|strong="H3766"\w* \w herself|strong="H5921"\w* \w and|strong="H8085"\w* \w gave|strong="H3205"\w* \w birth|strong="H3205"\w*; \w for|strong="H3588"\w* \w her|strong="H3947"\w* \w pains|strong="H6735"\w* \w came|strong="H2015"\w* \w on|strong="H5921"\w* \w her|strong="H3947"\w*. +\v 20 \w About|strong="H5921"\w* \w the|strong="H5921"\w* \w time|strong="H6256"\w* \w of|strong="H1121"\w* \w her|strong="H5921"\w* \w death|strong="H4191"\w* \w the|strong="H5921"\w* women \w who|strong="H1121"\w* \w stood|strong="H5324"\w* \w by|strong="H5921"\w* \w her|strong="H5921"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w her|strong="H5921"\w*, “Don’t \w be|strong="H4191"\w* \w afraid|strong="H3372"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1121"\w* \w given|strong="H3205"\w* \w birth|strong="H3205"\w* \w to|strong="H1696"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*.” \w But|strong="H3588"\w* \w she|strong="H3588"\w* didn’t \w answer|strong="H6030"\w*, \w neither|strong="H3808"\w* \w did|strong="H3808"\w* \w she|strong="H3588"\w* \w regard|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 21 \w She|strong="H7121"\w* \w named|strong="H7121"\w* \w the|strong="H3947"\w* \w child|strong="H5288"\w* Ichabod,\f + \fr 4:21 \ft “Ichabod” means “no glory”.\f* saying, “\w The|strong="H3947"\w* \w glory|strong="H3519"\w* \w has|strong="H3478"\w* \w departed|strong="H1540"\w* \w from|strong="H3478"\w* \w Israel|strong="H3478"\w*!” because God’s ark \w was|strong="H3478"\w* \w taken|strong="H3947"\w*, \w and|strong="H3478"\w* because \w of|strong="H3519"\w* \w her|strong="H1540"\w* \w father-in-law|strong="H2524"\w* \w and|strong="H3478"\w* \w her|strong="H1540"\w* husband. +\v 22 \w She|strong="H3588"\w* said, “\w The|strong="H3588"\w* \w glory|strong="H3519"\w* \w has|strong="H3478"\w* \w departed|strong="H1540"\w* \w from|strong="H3478"\w* \w Israel|strong="H3478"\w*; \w for|strong="H3588"\w* God’s ark \w has|strong="H3478"\w* been \w taken|strong="H3947"\w*.” +\c 5 +\p +\v 1 \w Now|strong="H3947"\w* \w the|strong="H3947"\w* \w Philistines|strong="H6430"\w* \w had|strong="H6430"\w* \w taken|strong="H3947"\w* God’s ark, \w and|strong="H6430"\w* \w they|strong="H3947"\w* \w brought|strong="H3947"\w* \w it|strong="H3947"\w* \w from|strong="H3947"\w* Ebenezer \w to|strong="H3947"\w* Ashdod. +\v 2 \w The|strong="H3947"\w* \w Philistines|strong="H6430"\w* \w took|strong="H3947"\w* God’s ark, \w and|strong="H1004"\w* \w brought|strong="H3947"\w* \w it|strong="H3322"\w* \w into|strong="H3947"\w* \w the|strong="H3947"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Dagon|strong="H1712"\w* \w and|strong="H1004"\w* \w set|strong="H3322"\w* \w it|strong="H3322"\w* \w by|strong="H6430"\w* \w Dagon|strong="H1712"\w*. +\v 3 \w When|strong="H7725"\w* \w the|strong="H6440"\w* people \w of|strong="H3068"\w* Ashdod \w arose|strong="H7925"\w* \w early|strong="H7925"\w* \w on|strong="H5307"\w* \w the|strong="H6440"\w* \w next|strong="H4283"\w* \w day|strong="H4283"\w*, \w behold|strong="H2009"\w*, \w Dagon|strong="H1712"\w* \w had|strong="H3068"\w* \w fallen|strong="H5307"\w* \w on|strong="H5307"\w* \w his|strong="H3068"\w* \w face|strong="H6440"\w* \w to|strong="H7725"\w* \w the|strong="H6440"\w* \w ground|strong="H4725"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*’s ark. \w They|strong="H3068"\w* \w took|strong="H3947"\w* \w Dagon|strong="H1712"\w* \w and|strong="H3068"\w* \w set|strong="H7725"\w* \w him|strong="H6440"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w place|strong="H4725"\w* \w again|strong="H7725"\w*. +\v 4 \w When|strong="H3068"\w* \w they|strong="H3068"\w* \w arose|strong="H7925"\w* \w early|strong="H7925"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w following|strong="H4283"\w* \w morning|strong="H1242"\w*, \w behold|strong="H2009"\w*, \w Dagon|strong="H1712"\w* \w had|strong="H3068"\w* \w fallen|strong="H5307"\w* \w on|strong="H5921"\w* \w his|strong="H3068"\w* \w face|strong="H6440"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*’s ark; \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w head|strong="H7218"\w* \w of|strong="H3068"\w* \w Dagon|strong="H1712"\w* \w and|strong="H3068"\w* \w both|strong="H8147"\w* \w the|strong="H6440"\w* \w palms|strong="H3709"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w hands|strong="H3027"\w* \w were|strong="H3027"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w threshold|strong="H4670"\w*. \w Only|strong="H7535"\w* \w Dagon|strong="H1712"\w*’s torso \w was|strong="H3068"\w* \w intact|strong="H5921"\w*. +\v 5 \w Therefore|strong="H3651"\w* \w neither|strong="H3808"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w of|strong="H1004"\w* \w Dagon|strong="H1712"\w* \w nor|strong="H3808"\w* \w any|strong="H3605"\w* \w who|strong="H3605"\w* \w come|strong="H1869"\w* \w into|strong="H5921"\w* \w Dagon|strong="H1712"\w*’s \w house|strong="H1004"\w* step \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w threshold|strong="H4670"\w* \w of|strong="H1004"\w* \w Dagon|strong="H1712"\w* \w in|strong="H5921"\w* Ashdod \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 6 \w But|strong="H3513"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w was|strong="H3068"\w* \w heavy|strong="H3513"\w* \w on|strong="H3027"\w* \w the|strong="H5221"\w* people \w of|strong="H3068"\w* Ashdod, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w destroyed|strong="H5221"\w* \w them|strong="H5221"\w* \w and|strong="H3068"\w* \w struck|strong="H5221"\w* \w them|strong="H5221"\w* \w with|strong="H3068"\w* \w tumors|strong="H6076"\w*, \w even|strong="H3068"\w* Ashdod \w and|strong="H3068"\w* \w its|strong="H5221"\w* \w borders|strong="H1366"\w*. +\p +\v 7 \w When|strong="H3588"\w* \w the|strong="H5921"\w* \w men|strong="H3478"\w* \w of|strong="H3027"\w* Ashdod \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w it|strong="H5921"\w* \w was|strong="H3478"\w* \w so|strong="H3651"\w*, \w they|strong="H3588"\w* \w said|strong="H3651"\w*, “\w The|strong="H5921"\w* ark \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w God|strong="H3808"\w* \w of|strong="H3027"\w* \w Israel|strong="H3478"\w* \w shall|strong="H3478"\w* \w not|strong="H3808"\w* \w stay|strong="H3427"\w* \w with|strong="H5973"\w* \w us|strong="H5921"\w*, \w for|strong="H3588"\w* \w his|strong="H5921"\w* \w hand|strong="H3027"\w* \w is|strong="H3027"\w* \w severe|strong="H7185"\w* \w on|strong="H5921"\w* \w us|strong="H5921"\w* \w and|strong="H3478"\w* \w on|strong="H5921"\w* \w Dagon|strong="H1712"\w* \w our|strong="H7200"\w* \w god|strong="H3808"\w*.” +\v 8 \w They|strong="H4100"\w* \w sent|strong="H7971"\w* \w therefore|strong="H7971"\w* \w and|strong="H3478"\w* \w gathered|strong="H6430"\w* together \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w lords|strong="H5633"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H3478"\w* said, “\w What|strong="H4100"\w* \w shall|strong="H3478"\w* \w we|strong="H3068"\w* \w do|strong="H6213"\w* \w with|strong="H6213"\w* \w the|strong="H3605"\w* ark \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w God|strong="H7971"\w* \w of|strong="H3605"\w* \w Israel|strong="H3478"\w*?” +\p \w They|strong="H4100"\w* answered, “\w Let|strong="H7971"\w* \w the|strong="H3605"\w* ark \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w God|strong="H7971"\w* \w of|strong="H3605"\w* \w Israel|strong="H3478"\w* \w be|strong="H3478"\w* \w carried|strong="H6213"\w* \w over|strong="H5437"\w* \w to|strong="H3478"\w* \w Gath|strong="H1661"\w*.” \w They|strong="H4100"\w* \w carried|strong="H6213"\w* \w the|strong="H3605"\w* ark \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w God|strong="H7971"\w* \w of|strong="H3605"\w* \w Israel|strong="H3478"\w* \w there|strong="H3605"\w*. +\v 9 \w It|strong="H5221"\w* \w was|strong="H3068"\w* \w so|strong="H1961"\w*, \w that|strong="H3068"\w* \w after|strong="H1961"\w* \w they|strong="H3068"\w* \w had|strong="H3068"\w* \w carried|strong="H3068"\w* \w it|strong="H5221"\w* \w there|strong="H1961"\w*, \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w was|strong="H3068"\w* \w against|strong="H3027"\w* \w the|strong="H5221"\w* \w city|strong="H5892"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H1419"\w* \w confusion|strong="H4103"\w*; \w and|strong="H3068"\w* \w he|strong="H5704"\w* \w struck|strong="H5221"\w* \w the|strong="H5221"\w* \w men|strong="H1419"\w* \w of|strong="H3068"\w* \w the|strong="H5221"\w* \w city|strong="H5892"\w*, both \w small|strong="H6996"\w* \w and|strong="H3068"\w* \w great|strong="H1419"\w*, \w so|strong="H1961"\w* \w that|strong="H3068"\w* \w tumors|strong="H6076"\w* \w broke|strong="H8368"\w* \w out|strong="H5704"\w* \w on|strong="H3027"\w* \w them|strong="H5221"\w*. +\v 10 \w So|strong="H7971"\w* \w they|strong="H5971"\w* \w sent|strong="H7971"\w* \w God|strong="H7971"\w*’s ark \w to|strong="H3478"\w* \w Ekron|strong="H6138"\w*. +\p \w As|strong="H1961"\w* \w God|strong="H7971"\w*’s ark \w came|strong="H1961"\w* \w to|strong="H3478"\w* \w Ekron|strong="H6138"\w*, \w the|strong="H7971"\w* \w Ekronites|strong="H6139"\w* \w cried|strong="H2199"\w* \w out|strong="H7971"\w*, saying, “\w They|strong="H5971"\w* \w have|strong="H1961"\w* \w brought|strong="H5437"\w* \w the|strong="H7971"\w* ark \w of|strong="H5971"\w* \w the|strong="H7971"\w* \w God|strong="H7971"\w* \w of|strong="H5971"\w* \w Israel|strong="H3478"\w* \w here|strong="H4191"\w* \w to|strong="H3478"\w* \w us|strong="H1961"\w*, \w to|strong="H3478"\w* \w kill|strong="H4191"\w* \w us|strong="H1961"\w* \w and|strong="H3478"\w* \w our|strong="H1961"\w* \w people|strong="H5971"\w*.” +\v 11 \w They|strong="H3588"\w* \w sent|strong="H7971"\w* \w therefore|strong="H3588"\w* \w and|strong="H3478"\w* \w gathered|strong="H6430"\w* \w together|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w lords|strong="H5633"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H3478"\w* \w they|strong="H3588"\w* said, “\w Send|strong="H7971"\w* \w the|strong="H3605"\w* ark \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w God|strong="H3808"\w* \w of|strong="H3027"\w* \w Israel|strong="H3478"\w* \w away|strong="H7971"\w*, \w and|strong="H3478"\w* \w let|strong="H7971"\w* \w it|strong="H3588"\w* \w go|strong="H7971"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w its|strong="H3605"\w* \w own|strong="H1961"\w* \w place|strong="H4725"\w*, \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w not|strong="H3808"\w* \w kill|strong="H4191"\w* \w us|strong="H7725"\w* \w and|strong="H3478"\w* \w our|strong="H3605"\w* \w people|strong="H5971"\w*.” \w For|strong="H3588"\w* \w there|strong="H8033"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w deadly|strong="H4194"\w* \w panic|strong="H4103"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*. \w The|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w God|strong="H3808"\w* \w was|strong="H1961"\w* \w very|strong="H3966"\w* \w heavy|strong="H3513"\w* \w there|strong="H8033"\w*. +\v 12 \w The|strong="H5221"\w* men \w who|strong="H5221"\w* didn’t \w die|strong="H4191"\w* \w were|strong="H8064"\w* \w struck|strong="H5221"\w* \w with|strong="H5892"\w* \w the|strong="H5221"\w* \w tumors|strong="H6076"\w*; \w and|strong="H8064"\w* \w the|strong="H5221"\w* \w cry|strong="H7775"\w* \w of|strong="H5892"\w* \w the|strong="H5221"\w* \w city|strong="H5892"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H4191"\w* \w heaven|strong="H8064"\w*. +\c 6 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s ark \w was|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w country|strong="H7704"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w Philistines|strong="H6430"\w* \w seven|strong="H7651"\w* \w months|strong="H2320"\w*. +\v 2 \w The|strong="H6213"\w* \w Philistines|strong="H6430"\w* \w called|strong="H7121"\w* \w for|strong="H7121"\w* \w the|strong="H6213"\w* \w priests|strong="H3548"\w* \w and|strong="H3068"\w* \w the|strong="H6213"\w* \w diviners|strong="H7080"\w*, saying, “\w What|strong="H4100"\w* \w shall|strong="H3548"\w* \w we|strong="H3068"\w* \w do|strong="H6213"\w* \w with|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s ark? \w Show|strong="H6213"\w* \w us|strong="H6213"\w* \w how|strong="H4100"\w* \w we|strong="H3068"\w* \w should|strong="H3068"\w* \w send|strong="H7971"\w* \w it|strong="H7121"\w* \w to|strong="H3068"\w* \w its|strong="H6213"\w* \w place|strong="H4725"\w*.” +\p +\v 3 \w They|strong="H3588"\w* said, “\w If|strong="H3588"\w* \w you|strong="H3588"\w* \w send|strong="H7971"\w* \w away|strong="H5493"\w* \w the|strong="H3588"\w* ark \w of|strong="H3027"\w* \w the|strong="H3588"\w* \w God|strong="H3808"\w* \w of|strong="H3027"\w* \w Israel|strong="H3478"\w*, don’t \w send|strong="H7971"\w* \w it|strong="H3588"\w* \w empty|strong="H7387"\w*; \w but|strong="H3588"\w* \w by|strong="H3027"\w* \w all|strong="H3045"\w* \w means|strong="H3027"\w* \w return|strong="H7725"\w* \w a|strong="H3068"\w* trespass \w offering|strong="H4480"\w* \w to|strong="H7725"\w* \w him|strong="H7971"\w*. \w Then|strong="H7971"\w* \w you|strong="H3588"\w* \w will|strong="H3478"\w* \w be|strong="H3808"\w* \w healed|strong="H7495"\w*, \w and|strong="H3478"\w* \w it|strong="H3588"\w* \w will|strong="H3478"\w* \w be|strong="H3808"\w* \w known|strong="H3045"\w* \w to|strong="H7725"\w* \w you|strong="H3588"\w* \w why|strong="H4100"\w* \w his|strong="H7971"\w* \w hand|strong="H3027"\w* \w is|strong="H4100"\w* \w not|strong="H3808"\w* \w removed|strong="H5493"\w* \w from|strong="H4480"\w* \w you|strong="H3588"\w*.” +\p +\v 4 \w Then|strong="H7725"\w* \w they|strong="H3588"\w* said, “\w What|strong="H4100"\w* \w should|strong="H4100"\w* \w the|strong="H3605"\w* trespass offering \w be|strong="H7725"\w* \w which|strong="H4100"\w* \w we|strong="H3068"\w* \w shall|strong="H6430"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w him|strong="H7725"\w*?” +\p \w They|strong="H3588"\w* said, “\w Five|strong="H2568"\w* \w golden|strong="H2091"\w* \w tumors|strong="H6076"\w* \w and|strong="H7725"\w* \w five|strong="H2568"\w* \w golden|strong="H2091"\w* \w mice|strong="H5909"\w*, \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H4557"\w* \w the|strong="H3605"\w* \w lords|strong="H5633"\w* \w of|strong="H4557"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*; \w for|strong="H3588"\w* \w one|strong="H3605"\w* \w plague|strong="H4046"\w* \w was|strong="H4046"\w* \w on|strong="H2091"\w* \w you|strong="H3588"\w* \w all|strong="H3605"\w*, \w and|strong="H7725"\w* \w on|strong="H2091"\w* \w your|strong="H3605"\w* \w lords|strong="H5633"\w*. +\v 5 \w Therefore|strong="H5921"\w* \w you|strong="H5414"\w* \w shall|strong="H3478"\w* \w make|strong="H6213"\w* \w images|strong="H6754"\w* \w of|strong="H3027"\w* \w your|strong="H5414"\w* \w tumors|strong="H6076"\w* \w and|strong="H3478"\w* \w images|strong="H6754"\w* \w of|strong="H3027"\w* \w your|strong="H5414"\w* \w mice|strong="H5909"\w* \w that|strong="H3478"\w* \w mar|strong="H7843"\w* \w the|strong="H5921"\w* land; \w and|strong="H3478"\w* \w you|strong="H5414"\w* \w shall|strong="H3478"\w* \w give|strong="H5414"\w* \w glory|strong="H3519"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w God|strong="H5414"\w* \w of|strong="H3027"\w* \w Israel|strong="H3478"\w*. Perhaps \w he|strong="H6213"\w* \w will|strong="H3478"\w* release \w his|strong="H5414"\w* \w hand|strong="H3027"\w* \w from|strong="H5921"\w* \w you|strong="H5414"\w*, \w from|strong="H5921"\w* \w your|strong="H5414"\w* gods, \w and|strong="H3478"\w* \w from|strong="H5921"\w* \w your|strong="H5414"\w* land. +\v 6 \w Why|strong="H4100"\w* \w then|strong="H7971"\w* \w do|strong="H4100"\w* \w you|strong="H7971"\w* \w harden|strong="H3513"\w* \w your|strong="H3513"\w* \w hearts|strong="H3820"\w* \w as|strong="H3824"\w* \w the|strong="H7971"\w* \w Egyptians|strong="H4713"\w* \w and|strong="H7971"\w* \w Pharaoh|strong="H6547"\w* \w hardened|strong="H3513"\w* \w their|strong="H7971"\w* \w hearts|strong="H3820"\w*? \w When|strong="H7971"\w* \w he|strong="H3808"\w* \w had|strong="H6547"\w* worked \w wonderfully|strong="H5953"\w* \w among|strong="H3808"\w* \w them|strong="H7971"\w*, didn’t \w they|strong="H3808"\w* \w let|strong="H7971"\w* \w the|strong="H7971"\w* \w people|strong="H3808"\w* \w go|strong="H3212"\w*, \w and|strong="H7971"\w* \w they|strong="H3808"\w* \w departed|strong="H3212"\w*? +\p +\v 7 “\w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* \w take|strong="H3947"\w* \w and|strong="H1121"\w* \w prepare|strong="H6213"\w* \w yourselves|strong="H5921"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w cart|strong="H5699"\w* \w and|strong="H1121"\w* \w two|strong="H8147"\w* milk \w cows|strong="H6510"\w* \w on|strong="H5921"\w* \w which|strong="H1004"\w* \w there|strong="H5927"\w* \w has|strong="H6213"\w* \w come|strong="H5927"\w* \w no|strong="H3808"\w* \w yoke|strong="H5923"\w*; \w and|strong="H1121"\w* tie \w the|strong="H5921"\w* \w cows|strong="H6510"\w* \w to|strong="H7725"\w* \w the|strong="H5921"\w* \w cart|strong="H5699"\w*, \w and|strong="H1121"\w* \w bring|strong="H7725"\w* \w their|strong="H3947"\w* \w calves|strong="H1121"\w* \w home|strong="H1004"\w* \w from|strong="H7725"\w* \w them|strong="H5921"\w*; +\v 8 \w and|strong="H1980"\w* \w take|strong="H3947"\w* \w Yahweh|strong="H3068"\w*’s ark \w and|strong="H1980"\w* \w lay|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H1980"\w* \w the|strong="H5414"\w* \w cart|strong="H5699"\w*. \w Put|strong="H5414"\w* \w the|strong="H5414"\w* \w jewels|strong="H3627"\w* \w of|strong="H3068"\w* \w gold|strong="H2091"\w*, \w which|strong="H3068"\w* \w you|strong="H5414"\w* \w return|strong="H7725"\w* \w him|strong="H5414"\w* \w for|strong="H7971"\w* \w a|strong="H3068"\w* trespass \w offering|strong="H3068"\w*, \w in|strong="H1980"\w* \w a|strong="H3068"\w* box \w by|strong="H3068"\w* \w its|strong="H5414"\w* \w side|strong="H6654"\w*; \w and|strong="H1980"\w* \w send|strong="H7971"\w* \w it|strong="H5414"\w* \w away|strong="H7971"\w*, \w that|strong="H3068"\w* \w it|strong="H5414"\w* \w may|strong="H3068"\w* \w go|strong="H1980"\w*. +\v 9 \w Behold|strong="H7200"\w*, \w if|strong="H3588"\w* \w it|strong="H1931"\w* \w goes|strong="H5927"\w* \w up|strong="H5927"\w* \w by|strong="H3027"\w* \w the|strong="H7200"\w* \w way|strong="H1870"\w* \w of|strong="H3027"\w* \w its|strong="H6213"\w* \w own|strong="H1961"\w* \w border|strong="H1366"\w* \w to|strong="H5927"\w* Beth Shemesh, \w then|strong="H1961"\w* \w he|strong="H1931"\w* \w has|strong="H1961"\w* \w done|strong="H6213"\w* \w us|strong="H6213"\w* \w this|strong="H2063"\w* \w great|strong="H1419"\w* \w evil|strong="H7451"\w*; \w but|strong="H3588"\w* \w if|strong="H3588"\w* \w not|strong="H3808"\w*, \w then|strong="H1961"\w* \w we|strong="H3068"\w* \w shall|strong="H3027"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w not|strong="H3808"\w* \w his|strong="H7200"\w* \w hand|strong="H3027"\w* \w that|strong="H3588"\w* \w struck|strong="H5060"\w* \w us|strong="H6213"\w*. \w It|strong="H1931"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w chance|strong="H4745"\w* \w that|strong="H3588"\w* \w happened|strong="H1961"\w* \w to|strong="H5927"\w* \w us|strong="H6213"\w*.” +\p +\v 10 \w The|strong="H3947"\w* \w men|strong="H1121"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*, \w and|strong="H1121"\w* \w took|strong="H3947"\w* \w two|strong="H8147"\w* milk \w cows|strong="H6510"\w* \w and|strong="H1121"\w* tied \w them|strong="H6213"\w* \w to|strong="H6213"\w* \w the|strong="H3947"\w* \w cart|strong="H5699"\w*, \w and|strong="H1121"\w* \w shut|strong="H3607"\w* \w up|strong="H3607"\w* \w their|strong="H3947"\w* \w calves|strong="H1121"\w* \w at|strong="H1004"\w* \w home|strong="H1004"\w*. +\v 11 \w They|strong="H3068"\w* \w put|strong="H7760"\w* \w Yahweh|strong="H3068"\w*’s ark \w on|strong="H7760"\w* \w the|strong="H3068"\w* \w cart|strong="H5699"\w*, \w and|strong="H3068"\w* \w the|strong="H3068"\w* box \w with|strong="H3068"\w* \w the|strong="H3068"\w* \w golden|strong="H2091"\w* \w mice|strong="H5909"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w images|strong="H6754"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w tumors|strong="H2914"\w*. +\v 12 \w The|strong="H5921"\w* \w cows|strong="H6510"\w* \w took|strong="H5493"\w* \w the|strong="H5921"\w* \w straight|strong="H3474"\w* \w way|strong="H1870"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w* \w to|strong="H5704"\w* Beth Shemesh. \w They|strong="H3808"\w* \w went|strong="H1980"\w* \w along|strong="H5921"\w* \w the|strong="H5921"\w* \w highway|strong="H4546"\w*, \w lowing|strong="H1600"\w* \w as|strong="H5704"\w* \w they|strong="H3808"\w* \w went|strong="H1980"\w*, \w and|strong="H1980"\w* didn’t \w turn|strong="H5493"\w* \w away|strong="H5493"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w or|strong="H3808"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w left|strong="H8040"\w*; \w and|strong="H1980"\w* \w the|strong="H5921"\w* \w lords|strong="H5633"\w* \w of|strong="H1366"\w* \w the|strong="H5921"\w* \w Philistines|strong="H6430"\w* \w went|strong="H1980"\w* \w after|strong="H5921"\w* \w them|strong="H5921"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* Beth Shemesh. +\v 13 \w The|strong="H7200"\w* \w people|strong="H5869"\w* \w of|strong="H5869"\w* Beth Shemesh \w were|strong="H5869"\w* \w reaping|strong="H7114"\w* \w their|strong="H5375"\w* \w wheat|strong="H2406"\w* \w harvest|strong="H7105"\w* \w in|strong="H8055"\w* \w the|strong="H7200"\w* \w valley|strong="H6010"\w*; \w and|strong="H5869"\w* \w they|strong="H5375"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w their|strong="H5375"\w* \w eyes|strong="H5869"\w* \w and|strong="H5869"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* ark, \w and|strong="H5869"\w* \w rejoiced|strong="H8055"\w* \w to|strong="H7200"\w* \w see|strong="H7200"\w* \w it|strong="H7200"\w*. +\v 14 \w The|strong="H3068"\w* \w cart|strong="H5699"\w* \w came|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H3068"\w* \w field|strong="H7704"\w* \w of|strong="H3068"\w* \w Joshua|strong="H3091"\w* \w of|strong="H3068"\w* Beth Shemesh, \w and|strong="H3068"\w* \w stood|strong="H5975"\w* \w there|strong="H8033"\w*, \w where|strong="H8033"\w* \w there|strong="H8033"\w* \w was|strong="H3068"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* stone. \w Then|strong="H5975"\w* \w they|strong="H8033"\w* \w split|strong="H1234"\w* \w the|strong="H3068"\w* \w wood|strong="H6086"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w cart|strong="H5699"\w* \w and|strong="H3068"\w* \w offered|strong="H5927"\w* \w up|strong="H5927"\w* \w the|strong="H3068"\w* \w cows|strong="H6510"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 15 \w The|strong="H3068"\w* \w Levites|strong="H3881"\w* \w took|strong="H5927"\w* \w down|strong="H3381"\w* \w Yahweh|strong="H3068"\w*’s ark \w and|strong="H3068"\w* \w the|strong="H3068"\w* box \w that|strong="H3117"\w* \w was|strong="H3068"\w* \w with|strong="H3068"\w* \w it|strong="H7760"\w*, \w in|strong="H3068"\w* \w which|strong="H1931"\w* \w the|strong="H3068"\w* \w jewels|strong="H3627"\w* \w of|strong="H3068"\w* \w gold|strong="H2091"\w* \w were|strong="H3881"\w*, \w and|strong="H3068"\w* \w put|strong="H7760"\w* \w them|strong="H3381"\w* \w on|strong="H3117"\w* \w the|strong="H3068"\w* \w great|strong="H1419"\w* stone; \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w men|strong="H1419"\w* \w of|strong="H3068"\w* Beth Shemesh \w offered|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w and|strong="H3068"\w* \w sacrificed|strong="H2076"\w* \w sacrifices|strong="H2077"\w* \w the|strong="H3068"\w* \w same|strong="H1931"\w* \w day|strong="H3117"\w* \w to|strong="H3381"\w* \w Yahweh|strong="H3068"\w*. +\v 16 \w When|strong="H3117"\w* \w the|strong="H7200"\w* \w five|strong="H2568"\w* \w lords|strong="H5633"\w* \w of|strong="H3117"\w* \w the|strong="H7200"\w* \w Philistines|strong="H6430"\w* \w had|strong="H6430"\w* \w seen|strong="H7200"\w* \w it|strong="H1931"\w*, \w they|strong="H3117"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Ekron|strong="H6138"\w* \w the|strong="H7200"\w* \w same|strong="H1931"\w* \w day|strong="H3117"\w*. +\v 17 These \w are|strong="H3068"\w* \w the|strong="H3068"\w* \w golden|strong="H2091"\w* \w tumors|strong="H2914"\w* \w which|strong="H3068"\w* \w the|strong="H3068"\w* \w Philistines|strong="H6430"\w* \w returned|strong="H7725"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* trespass \w offering|strong="H3068"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*: \w for|strong="H3068"\w* Ashdod \w one|strong="H3068"\w*, \w for|strong="H3068"\w* \w Gaza|strong="H5804"\w* \w one|strong="H3068"\w*, \w for|strong="H3068"\w* Ashkelon \w one|strong="H3068"\w*, \w for|strong="H3068"\w* \w Gath|strong="H1661"\w* \w one|strong="H3068"\w*, \w for|strong="H3068"\w* \w Ekron|strong="H6138"\w* \w one|strong="H3068"\w*; +\v 18 \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w golden|strong="H2091"\w* \w mice|strong="H5909"\w*, \w according|strong="H5921"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* belonging \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w five|strong="H2568"\w* \w lords|strong="H5633"\w*, \w both|strong="H3605"\w* \w of|strong="H3068"\w* \w fortified|strong="H4013"\w* \w cities|strong="H5892"\w* \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w country|strong="H7704"\w* \w villages|strong="H3724"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w great|strong="H1419"\w* stone \w on|strong="H5921"\w* \w which|strong="H3068"\w* \w they|strong="H3117"\w* \w set|strong="H3240"\w* \w down|strong="H3240"\w* \w Yahweh|strong="H3068"\w*’s ark. \w That|strong="H3605"\w* stone remains \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w of|strong="H3068"\w* \w Joshua|strong="H3091"\w* \w of|strong="H3068"\w* Beth Shemesh. +\v 19 \w He|strong="H3588"\w* \w struck|strong="H5221"\w* \w of|strong="H3068"\w* \w the|strong="H7200"\w* \w men|strong="H1419"\w* \w of|strong="H3068"\w* Beth Shemesh, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3068"\w* \w looked|strong="H7200"\w* \w into|strong="H7200"\w* \w Yahweh|strong="H3068"\w*’s ark, \w he|strong="H3588"\w* \w struck|strong="H5221"\w* \w fifty|strong="H2572"\w* thousand \w seventy|strong="H7657"\w* \w of|strong="H3068"\w* \w the|strong="H7200"\w* \w men|strong="H1419"\w*. \w Then|strong="H3588"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w* \w mourned|strong="H7657"\w*, \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w struck|strong="H5221"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w slaughter|strong="H4347"\w*. +\v 20 \w The|strong="H6440"\w* men \w of|strong="H3068"\w* Beth Shemesh said, “\w Who|strong="H4310"\w* \w is|strong="H3068"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w this|strong="H2088"\w* \w holy|strong="H6918"\w* \w God|strong="H3068"\w*? \w To|strong="H3201"\w* \w whom|strong="H4310"\w* \w shall|strong="H3068"\w* \w he|strong="H3068"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H6440"\w* \w us|strong="H5921"\w*?” +\p +\v 21 \w They|strong="H3068"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H7725"\w* \w the|strong="H3068"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w Kiriath|strong="H7157"\w* Jearim, saying, “\w The|strong="H3068"\w* \w Philistines|strong="H6430"\w* \w have|strong="H3068"\w* \w brought|strong="H5927"\w* \w back|strong="H7725"\w* \w Yahweh|strong="H3068"\w*’s ark. \w Come|strong="H5927"\w* \w down|strong="H3381"\w* \w and|strong="H3068"\w* \w bring|strong="H7725"\w* \w it|strong="H7725"\w* \w up|strong="H5927"\w* \w to|strong="H7725"\w* \w yourselves|strong="H3068"\w*.” +\c 7 +\p +\v 1 \w The|strong="H8104"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Kiriath|strong="H7157"\w* Jearim \w came|strong="H5927"\w* \w and|strong="H1121"\w* \w took|strong="H5927"\w* \w Yahweh|strong="H3068"\w*’s ark, \w and|strong="H1121"\w* \w brought|strong="H5927"\w* \w it|strong="H5927"\w* \w into|strong="H5927"\w* Abinadab’s \w house|strong="H1004"\w* \w on|strong="H3068"\w* \w the|strong="H8104"\w* \w hill|strong="H1389"\w*, \w and|strong="H1121"\w* \w consecrated|strong="H6942"\w* Eleazar \w his|strong="H8104"\w* \w son|strong="H1121"\w* \w to|strong="H3068"\w* \w keep|strong="H8104"\w* \w Yahweh|strong="H3068"\w*’s ark. +\v 2 \w From|strong="H3478"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* ark \w stayed|strong="H3427"\w* \w in|strong="H3427"\w* \w Kiriath|strong="H7157"\w* Jearim, \w the|strong="H3605"\w* \w time|strong="H3117"\w* \w was|strong="H3068"\w* \w long|strong="H3117"\w*—\w for|strong="H3068"\w* \w it|strong="H1961"\w* \w was|strong="H3068"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w*; \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w lamented|strong="H5091"\w* \w after|strong="H1961"\w* \w Yahweh|strong="H3068"\w*. +\v 3 \w Samuel|strong="H8050"\w* spoke \w to|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, saying, “If \w you|strong="H3605"\w* \w are|strong="H3478"\w* \w returning|strong="H7725"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H1004"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w*, \w then|strong="H7725"\w* \w put|strong="H5493"\w* \w away|strong="H5493"\w* \w the|strong="H3605"\w* \w foreign|strong="H5236"\w* gods \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w Ashtaroth|strong="H6252"\w* \w from|strong="H7725"\w* \w among|strong="H8432"\w* \w you|strong="H3605"\w*, \w and|strong="H3478"\w* \w direct|strong="H3559"\w* \w your|strong="H3068"\w* \w hearts|strong="H3824"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3478"\w* \w serve|strong="H5647"\w* \w him|strong="H3027"\w* \w only|strong="H3605"\w*; \w and|strong="H3478"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w deliver|strong="H5337"\w* \w you|strong="H3605"\w* \w out|strong="H5337"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*.” +\v 4 \w Then|strong="H3068"\w* \w the|strong="H5647"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w removed|strong="H5493"\w* \w the|strong="H5647"\w* \w Baals|strong="H1168"\w* \w and|strong="H1121"\w* \w the|strong="H5647"\w* \w Ashtaroth|strong="H6252"\w*, \w and|strong="H1121"\w* \w served|strong="H5647"\w* \w Yahweh|strong="H3068"\w* only. +\v 5 \w Samuel|strong="H8050"\w* said, “\w Gather|strong="H6908"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w Mizpah|strong="H4709"\w*, \w and|strong="H3478"\w* \w I|strong="H3478"\w* \w will|strong="H3068"\w* \w pray|strong="H6419"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H1157"\w* \w you|strong="H3605"\w*.” +\v 6 \w They|strong="H3117"\w* \w gathered|strong="H6908"\w* \w together|strong="H6908"\w* \w to|strong="H3478"\w* \w Mizpah|strong="H4709"\w*, \w and|strong="H1121"\w* \w drew|strong="H7579"\w* \w water|strong="H4325"\w*, \w and|strong="H1121"\w* \w poured|strong="H8210"\w* \w it|strong="H1931"\w* \w out|strong="H8210"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H1121"\w* \w fasted|strong="H6684"\w* \w on|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w and|strong="H1121"\w* said \w there|strong="H8033"\w*, “\w We|strong="H3117"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w* \w against|strong="H6440"\w* \w Yahweh|strong="H3068"\w*.” \w Samuel|strong="H8050"\w* \w judged|strong="H8199"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w in|strong="H3478"\w* \w Mizpah|strong="H4709"\w*. +\p +\v 7 \w When|strong="H3588"\w* \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w gathered|strong="H6908"\w* \w together|strong="H6908"\w* \w at|strong="H3478"\w* \w Mizpah|strong="H4709"\w*, \w the|strong="H6440"\w* \w lords|strong="H5633"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H6440"\w* \w Israel|strong="H3478"\w*. \w When|strong="H3588"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w heard|strong="H8085"\w* \w it|strong="H3588"\w*, \w they|strong="H3588"\w* \w were|strong="H3478"\w* \w afraid|strong="H3372"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w*. +\v 8 \w The|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w said|strong="H2790"\w* \w to|strong="H3478"\w* \w Samuel|strong="H8050"\w*, “Don’t stop \w crying|strong="H2199"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w for|strong="H3027"\w* \w us|strong="H3027"\w*, \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w save|strong="H3467"\w* \w us|strong="H3027"\w* \w out|strong="H2199"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w Philistines|strong="H6430"\w*.” +\v 9 \w Samuel|strong="H8050"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* \w suckling|strong="H2461"\w* \w lamb|strong="H2924"\w*, \w and|strong="H3478"\w* \w offered|strong="H5927"\w* \w it|strong="H5927"\w* \w for|strong="H1157"\w* \w a|strong="H3068"\w* \w whole|strong="H3632"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*. \w Samuel|strong="H8050"\w* \w cried|strong="H2199"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H1157"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w answered|strong="H6030"\w* \w him|strong="H3947"\w*. +\v 10 \w As|strong="H3117"\w* \w Samuel|strong="H8050"\w* \w was|strong="H3068"\w* \w offering|strong="H5930"\w* \w up|strong="H5927"\w* \w the|strong="H6440"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w* \w came|strong="H1961"\w* \w near|strong="H5066"\w* \w to|strong="H3478"\w* \w battle|strong="H4421"\w* \w against|strong="H5921"\w* \w Israel|strong="H3478"\w*; \w but|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w thundered|strong="H7481"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w thunder|strong="H6963"\w* \w on|strong="H5921"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w* \w and|strong="H3478"\w* \w confused|strong="H2000"\w* \w them|strong="H5921"\w*; \w and|strong="H3478"\w* \w they|strong="H3117"\w* \w were|strong="H3478"\w* \w struck|strong="H5062"\w* \w down|strong="H5062"\w* \w before|strong="H6440"\w* \w Israel|strong="H3478"\w*. +\v 11 \w The|strong="H5221"\w* \w men|strong="H3478"\w* \w of|strong="H4480"\w* \w Israel|strong="H3478"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4480"\w* \w Mizpah|strong="H4709"\w* \w and|strong="H3478"\w* \w pursued|strong="H7291"\w* \w the|strong="H5221"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H3478"\w* \w struck|strong="H5221"\w* \w them|strong="H5221"\w* \w until|strong="H5704"\w* \w they|strong="H5704"\w* \w came|strong="H3318"\w* \w under|strong="H8478"\w* Beth Kar. +\p +\v 12 \w Then|strong="H3947"\w* \w Samuel|strong="H8050"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* stone \w and|strong="H3068"\w* \w set|strong="H7760"\w* \w it|strong="H7760"\w* \w between|strong="H5704"\w* \w Mizpah|strong="H4709"\w* \w and|strong="H3068"\w* \w Shen|strong="H8129"\w*, \w and|strong="H3068"\w* \w called|strong="H7121"\w* \w its|strong="H7760"\w* \w name|strong="H8034"\w* Ebenezer,\f + \fr 7:12 \ft “Ebenezer” means “stone of help”.\f* saying, “\w Yahweh|strong="H3068"\w* \w helped|strong="H5826"\w* \w us|strong="H7760"\w* \w until|strong="H5704"\w* \w now|strong="H2008"\w*.” +\v 13 \w So|strong="H1961"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w were|strong="H3478"\w* \w subdued|strong="H3665"\w*, \w and|strong="H3478"\w* \w they|strong="H3117"\w* \w stopped|strong="H6430"\w* coming \w within|strong="H5750"\w* \w the|strong="H3605"\w* \w border|strong="H1366"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w was|strong="H3068"\w* \w against|strong="H3027"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w Samuel|strong="H8050"\w*. +\p +\v 14 \w The|strong="H3947"\w* \w cities|strong="H5892"\w* \w which|strong="H5892"\w* \w the|strong="H3947"\w* \w Philistines|strong="H6430"\w* \w had|strong="H1961"\w* \w taken|strong="H3947"\w* \w from|strong="H7725"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w restored|strong="H7725"\w* \w to|strong="H5704"\w* \w Israel|strong="H3478"\w*, \w from|strong="H7725"\w* \w Ekron|strong="H6138"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Gath|strong="H1661"\w*; \w and|strong="H3478"\w* \w Israel|strong="H3478"\w* \w recovered|strong="H7725"\w* \w its|strong="H7725"\w* \w border|strong="H1366"\w* \w out|strong="H3947"\w* \w of|strong="H3027"\w* \w the|strong="H3947"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3947"\w* \w Philistines|strong="H6430"\w*. \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w peace|strong="H7965"\w* \w between|strong="H7965"\w* \w Israel|strong="H3478"\w* \w and|strong="H3478"\w* \w the|strong="H3947"\w* Amorites. +\p +\v 15 \w Samuel|strong="H8050"\w* \w judged|strong="H8199"\w* \w Israel|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w his|strong="H3605"\w* \w life|strong="H2416"\w*. +\v 16 \w He|strong="H3605"\w* \w went|strong="H1980"\w* \w from|strong="H3478"\w* \w year|strong="H8141"\w* \w to|strong="H1980"\w* \w year|strong="H8141"\w* \w in|strong="H8141"\w* \w a|strong="H3068"\w* \w circuit|strong="H5437"\w* \w to|strong="H1980"\w* \w Bethel|strong="H1008"\w*, \w Gilgal|strong="H1537"\w*, \w and|strong="H1980"\w* \w Mizpah|strong="H4709"\w*; \w and|strong="H1980"\w* \w he|strong="H3605"\w* \w judged|strong="H8199"\w* \w Israel|strong="H3478"\w* \w in|strong="H8141"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w places|strong="H4725"\w*. +\v 17 \w His|strong="H3068"\w* \w return|strong="H8666"\w* \w was|strong="H3068"\w* \w to|strong="H3478"\w* \w Ramah|strong="H7414"\w*, \w for|strong="H3588"\w* \w his|strong="H3068"\w* \w house|strong="H1004"\w* \w was|strong="H3068"\w* \w there|strong="H8033"\w*, \w and|strong="H3478"\w* \w he|strong="H3588"\w* \w judged|strong="H8199"\w* \w Israel|strong="H3478"\w* \w there|strong="H8033"\w*; \w and|strong="H3478"\w* \w he|strong="H3588"\w* \w built|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w there|strong="H8033"\w*. +\c 8 +\p +\v 1 \w When|strong="H1961"\w* \w Samuel|strong="H8050"\w* \w was|strong="H1961"\w* \w old|strong="H1121"\w*, \w he|strong="H3478"\w* \w made|strong="H7760"\w* \w his|strong="H7760"\w* \w sons|strong="H1121"\w* \w judges|strong="H8199"\w* \w over|strong="H8199"\w* \w Israel|strong="H3478"\w*. +\v 2 \w Now|strong="H1961"\w* \w the|strong="H8199"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w his|strong="H1961"\w* \w firstborn|strong="H1060"\w* \w was|strong="H8034"\w* \w Joel|strong="H3100"\w*, \w and|strong="H1121"\w* \w the|strong="H8199"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w his|strong="H1961"\w* \w second|strong="H4932"\w*, Abijah. \w They|strong="H8034"\w* \w were|strong="H1961"\w* \w judges|strong="H8199"\w* \w in|strong="H1121"\w* Beersheba. +\v 3 \w His|strong="H3947"\w* \w sons|strong="H1121"\w* didn’t \w walk|strong="H1980"\w* \w in|strong="H1980"\w* \w his|strong="H3947"\w* \w ways|strong="H1870"\w*, \w but|strong="H3808"\w* \w turned|strong="H5186"\w* \w away|strong="H3947"\w* \w after|strong="H1980"\w* \w dishonest|strong="H1215"\w* \w gain|strong="H1215"\w*, \w took|strong="H3947"\w* \w bribes|strong="H7810"\w*, \w and|strong="H1121"\w* \w perverted|strong="H5186"\w* \w justice|strong="H4941"\w*. +\p +\v 4 \w Then|strong="H6908"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H2205"\w* \w Israel|strong="H3478"\w* \w gathered|strong="H6908"\w* \w themselves|strong="H6908"\w* \w together|strong="H6908"\w* \w and|strong="H3478"\w* \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w Samuel|strong="H8050"\w* \w to|strong="H3478"\w* \w Ramah|strong="H7414"\w*. +\v 5 \w They|strong="H3808"\w* said \w to|strong="H1980"\w* \w him|strong="H7760"\w*, “\w Behold|strong="H2009"\w*, \w you|strong="H3605"\w* \w are|strong="H1121"\w* \w old|strong="H1121"\w*, \w and|strong="H1121"\w* \w your|strong="H3605"\w* \w sons|strong="H1121"\w* don’t \w walk|strong="H1980"\w* \w in|strong="H1980"\w* \w your|strong="H3605"\w* \w ways|strong="H1870"\w*. \w Now|strong="H6258"\w* \w make|strong="H7760"\w* \w us|strong="H7760"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w to|strong="H1980"\w* \w judge|strong="H8199"\w* \w us|strong="H7760"\w* \w like|strong="H1870"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*.” +\v 6 \w But|strong="H3068"\w* \w the|strong="H5414"\w* \w thing|strong="H1697"\w* \w displeased|strong="H7489"\w* \w Samuel|strong="H8050"\w* \w when|strong="H3068"\w* \w they|strong="H3068"\w* \w said|strong="H1697"\w*, “\w Give|strong="H5414"\w* \w us|strong="H5414"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w to|strong="H3068"\w* \w judge|strong="H8199"\w* \w us|strong="H5414"\w*.” +\p \w Samuel|strong="H8050"\w* \w prayed|strong="H6419"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 7 \w Yahweh|strong="H3068"\w* \w said|strong="H8085"\w* \w to|strong="H3068"\w* \w Samuel|strong="H8050"\w*, “\w Listen|strong="H8085"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w tell|strong="H8085"\w* \w you|strong="H3588"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w rejected|strong="H3988"\w* \w you|strong="H3588"\w*, \w but|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3068"\w* \w rejected|strong="H3988"\w* \w me|strong="H5921"\w* \w as|strong="H3068"\w* \w the|strong="H3605"\w* \w king|strong="H4427"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 8 According \w to|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w works|strong="H4639"\w* \w which|strong="H1992"\w* \w they|strong="H1992"\w* \w have|strong="H1571"\w* \w done|strong="H6213"\w* \w since|strong="H3117"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H3605"\w* \w I|strong="H3117"\w* \w brought|strong="H5927"\w* \w them|strong="H1992"\w* \w up|strong="H5927"\w* \w out|strong="H6213"\w* \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w* \w even|strong="H1571"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, \w in|strong="H6213"\w* \w that|strong="H3605"\w* \w they|strong="H1992"\w* \w have|strong="H1571"\w* \w forsaken|strong="H5800"\w* \w me|strong="H6213"\w* \w and|strong="H3117"\w* \w served|strong="H5647"\w* \w other|strong="H2088"\w* gods, \w so|strong="H3651"\w* \w they|strong="H1992"\w* \w also|strong="H1571"\w* \w do|strong="H6213"\w* \w to|strong="H5704"\w* \w you|strong="H3605"\w*. +\v 9 \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w*, \w listen|strong="H8085"\w* \w to|strong="H5921"\w* \w their|strong="H8085"\w* \w voice|strong="H6963"\w*. \w However|strong="H8085"\w*, \w you|strong="H3588"\w* \w shall|strong="H4428"\w* \w protest|strong="H5749"\w* \w solemnly|strong="H5749"\w* \w to|strong="H5921"\w* \w them|strong="H5921"\w*, \w and|strong="H4428"\w* \w shall|strong="H4428"\w* \w show|strong="H5046"\w* \w them|strong="H5921"\w* \w the|strong="H5921"\w* \w way|strong="H4941"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w who|strong="H4428"\w* \w will|strong="H4428"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w*.” +\p +\v 10 \w Samuel|strong="H8050"\w* \w told|strong="H1697"\w* \w all|strong="H3605"\w* \w Yahweh|strong="H3068"\w*’s \w words|strong="H1697"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w asked|strong="H7592"\w* \w him|strong="H3605"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w*. +\v 11 \w He|strong="H5921"\w* said, “\w This|strong="H2088"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w the|strong="H6440"\w* \w way|strong="H4941"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w who|strong="H1121"\w* \w shall|strong="H1121"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w you|strong="H6440"\w*: \w he|strong="H5921"\w* \w will|strong="H1961"\w* \w take|strong="H3947"\w* \w your|strong="H5921"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w appoint|strong="H7760"\w* \w them|strong="H5921"\w* \w as|strong="H1961"\w* \w his|strong="H7760"\w* \w servants|strong="H6440"\w*, \w for|strong="H5921"\w* \w his|strong="H7760"\w* \w chariots|strong="H4818"\w* \w and|strong="H1121"\w* \w to|strong="H1961"\w* \w be|strong="H1961"\w* \w his|strong="H7760"\w* \w horsemen|strong="H6571"\w*; \w and|strong="H1121"\w* \w they|strong="H5921"\w* \w will|strong="H1961"\w* \w run|strong="H7323"\w* \w before|strong="H6440"\w* \w his|strong="H7760"\w* \w chariots|strong="H4818"\w*. +\v 12 \w He|strong="H6213"\w* \w will|strong="H8269"\w* \w appoint|strong="H7760"\w* \w them|strong="H6213"\w* \w to|strong="H6213"\w* \w him|strong="H6213"\w* \w for|strong="H6213"\w* \w captains|strong="H8269"\w* \w of|strong="H8269"\w* thousands \w and|strong="H2572"\w* \w captains|strong="H8269"\w* \w of|strong="H8269"\w* \w fifties|strong="H2572"\w*; \w and|strong="H2572"\w* \w he|strong="H6213"\w* \w will|strong="H8269"\w* \w assign|strong="H7760"\w* some \w to|strong="H6213"\w* \w plow|strong="H2790"\w* \w his|strong="H7760"\w* \w ground|strong="H2758"\w* \w and|strong="H2572"\w* \w to|strong="H6213"\w* \w reap|strong="H7114"\w* \w his|strong="H7760"\w* \w harvest|strong="H7105"\w*; \w and|strong="H2572"\w* \w to|strong="H6213"\w* \w make|strong="H6213"\w* \w his|strong="H7760"\w* \w instruments|strong="H3627"\w* \w of|strong="H8269"\w* \w war|strong="H4421"\w* \w and|strong="H2572"\w* \w the|strong="H6213"\w* \w instruments|strong="H3627"\w* \w of|strong="H8269"\w* \w his|strong="H7760"\w* \w chariots|strong="H7393"\w*. +\v 13 \w He|strong="H3947"\w* \w will|strong="H1323"\w* \w take|strong="H3947"\w* \w your|strong="H3947"\w* \w daughters|strong="H1323"\w* \w to|strong="H1323"\w* be \w perfumers|strong="H7548"\w*, \w to|strong="H1323"\w* be \w cooks|strong="H2879"\w*, \w and|strong="H1323"\w* \w to|strong="H1323"\w* be bakers. +\v 14 \w He|strong="H5414"\w* \w will|strong="H5650"\w* \w take|strong="H3947"\w* \w your|strong="H5414"\w* \w fields|strong="H7704"\w*, \w your|strong="H5414"\w* \w vineyards|strong="H3754"\w*, \w and|strong="H5650"\w* \w your|strong="H5414"\w* \w olive|strong="H2132"\w* \w groves|strong="H2132"\w*, even \w your|strong="H5414"\w* \w best|strong="H2896"\w*, \w and|strong="H5650"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H5414"\w* \w his|strong="H5414"\w* \w servants|strong="H5650"\w*. +\v 15 \w He|strong="H5414"\w* \w will|strong="H5650"\w* \w take|strong="H5414"\w* \w one|strong="H2233"\w* \w tenth|strong="H6237"\w* \w of|strong="H5650"\w* \w your|strong="H5414"\w* \w seed|strong="H2233"\w* \w and|strong="H5650"\w* \w of|strong="H5650"\w* \w your|strong="H5414"\w* \w vineyards|strong="H3754"\w*, \w and|strong="H5650"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H5414"\w* \w his|strong="H5414"\w* \w officers|strong="H5631"\w* \w and|strong="H5650"\w* \w to|strong="H5414"\w* \w his|strong="H5414"\w* \w servants|strong="H5650"\w*. +\v 16 \w He|strong="H6213"\w* \w will|strong="H5650"\w* \w take|strong="H3947"\w* \w your|strong="H3947"\w* \w male|strong="H5650"\w* \w servants|strong="H5650"\w*, \w your|strong="H3947"\w* \w female|strong="H8198"\w* \w servants|strong="H5650"\w*, \w your|strong="H3947"\w* \w best|strong="H2896"\w* \w young|strong="H2896"\w* \w men|strong="H5650"\w*, \w and|strong="H5650"\w* \w your|strong="H3947"\w* \w donkeys|strong="H2543"\w*, \w and|strong="H5650"\w* assign \w them|strong="H6213"\w* \w to|strong="H6213"\w* \w his|strong="H3947"\w* own \w work|strong="H4399"\w*. +\v 17 He \w will|strong="H1961"\w* \w take|strong="H1961"\w* \w one|strong="H1961"\w* \w tenth|strong="H6237"\w* \w of|strong="H5650"\w* \w your|strong="H1961"\w* \w flocks|strong="H6629"\w*; \w and|strong="H5650"\w* \w you|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w his|strong="H1961"\w* \w servants|strong="H5650"\w*. +\v 18 \w You|strong="H6440"\w* \w will|strong="H3068"\w* \w cry|strong="H2199"\w* \w out|strong="H2199"\w* \w in|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w because|strong="H6440"\w* \w of|strong="H4428"\w* \w your|strong="H3068"\w* \w king|strong="H4428"\w* \w whom|strong="H6440"\w* \w you|strong="H6440"\w* \w will|strong="H3068"\w* \w have|strong="H3068"\w* chosen \w for|strong="H6440"\w* \w yourselves|strong="H3068"\w*; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w answer|strong="H6030"\w* \w you|strong="H6440"\w* \w in|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*.” +\p +\v 19 \w But|strong="H3588"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w refused|strong="H3985"\w* \w to|strong="H1961"\w* \w listen|strong="H8085"\w* \w to|strong="H1961"\w* \w the|strong="H5921"\w* \w voice|strong="H6963"\w* \w of|strong="H4428"\w* \w Samuel|strong="H8050"\w*; \w and|strong="H4428"\w* \w they|strong="H3588"\w* \w said|strong="H8085"\w*, “\w No|strong="H3808"\w*, \w but|strong="H3588"\w* \w we|strong="H3068"\w* \w will|strong="H1961"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w us|strong="H5921"\w*, +\v 20 \w that|strong="H3605"\w* \w we|strong="H3068"\w* \w also|strong="H1571"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*; \w and|strong="H4428"\w* \w that|strong="H3605"\w* \w our|strong="H3605"\w* \w king|strong="H4428"\w* \w may|strong="H1961"\w* \w judge|strong="H8199"\w* \w us|strong="H6440"\w*, \w and|strong="H4428"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w before|strong="H6440"\w* \w us|strong="H6440"\w*, \w and|strong="H4428"\w* \w fight|strong="H3898"\w* \w our|strong="H3605"\w* \w battles|strong="H4421"\w*.” +\p +\v 21 \w Samuel|strong="H8050"\w* \w heard|strong="H8085"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w rehearsed|strong="H1696"\w* \w them|strong="H8085"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* ears \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 22 \w Yahweh|strong="H3068"\w* \w said|strong="H8085"\w* \w to|strong="H3478"\w* \w Samuel|strong="H8050"\w*, “\w Listen|strong="H8085"\w* \w to|strong="H3478"\w* \w their|strong="H3068"\w* \w voice|strong="H6963"\w*, \w and|strong="H3478"\w* \w make|strong="H4427"\w* \w them|strong="H8085"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w*.” +\p \w Samuel|strong="H8050"\w* \w said|strong="H8085"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w men|strong="H3478"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, “Everyone \w go|strong="H3212"\w* \w to|strong="H3478"\w* \w your|strong="H3068"\w* own \w city|strong="H5892"\w*.” +\c 9 +\p +\v 1 \w Now|strong="H1961"\w* \w there|strong="H1961"\w* \w was|strong="H8034"\w* \w a|strong="H3068"\w* \w man|strong="H1368"\w* \w of|strong="H1121"\w* Benjamin, \w whose|strong="H1121"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Kish|strong="H7027"\w* \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Abiel, \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeror|strong="H6872"\w*, \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Becorath|strong="H1064"\w*, \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Aphiah, \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w Benjamite|strong="H1121"\w*, \w a|strong="H3068"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w* \w of|strong="H1121"\w* \w valor|strong="H2428"\w*. +\v 2 \w He|strong="H3605"\w* \w had|strong="H1961"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w whose|strong="H1121"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Saul|strong="H7586"\w*, \w an|strong="H1961"\w* \w impressive|strong="H2896"\w* \w young|strong="H1121"\w* \w man|strong="H1121"\w*; \w and|strong="H1121"\w* \w there|strong="H1961"\w* \w was|strong="H8034"\w* \w not|strong="H1961"\w* \w among|strong="H4480"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w a|strong="H3068"\w* \w more|strong="H4480"\w* \w handsome|strong="H2896"\w* person \w than|strong="H4480"\w* \w he|strong="H3605"\w*. \w From|strong="H4480"\w* \w his|strong="H3605"\w* \w shoulders|strong="H7926"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w* \w he|strong="H3605"\w* \w was|strong="H8034"\w* \w taller|strong="H1364"\w* \w than|strong="H4480"\w* \w any|strong="H3605"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*. +\p +\v 3 \w The|strong="H3947"\w* donkeys \w of|strong="H1121"\w* \w Kish|strong="H7027"\w*, \w Saul|strong="H7586"\w*’s \w father|strong="H1121"\w*, \w were|strong="H1121"\w* lost. \w Kish|strong="H7027"\w* said \w to|strong="H3212"\w* \w Saul|strong="H7586"\w* \w his|strong="H3947"\w* \w son|strong="H1121"\w*, “\w Now|strong="H4994"\w* \w take|strong="H3947"\w* \w one|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w servants|strong="H5288"\w* \w with|strong="H3212"\w* \w you|strong="H3947"\w*, \w and|strong="H1121"\w* \w arise|strong="H6965"\w*, \w go|strong="H3212"\w* \w look|strong="H1245"\w* \w for|strong="H1121"\w* \w the|strong="H3947"\w* donkeys.” +\v 4 \w He|strong="H3808"\w* \w passed|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H5674"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H2022"\w* Ephraim, \w and|strong="H2022"\w* \w passed|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H5674"\w* land \w of|strong="H2022"\w* \w Shalishah|strong="H8031"\w*, \w but|strong="H3808"\w* \w they|strong="H3808"\w* didn’t \w find|strong="H4672"\w* \w them|strong="H5674"\w*. \w Then|strong="H5674"\w* \w they|strong="H3808"\w* \w passed|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H5674"\w* land \w of|strong="H2022"\w* \w Shaalim|strong="H8171"\w*, \w and|strong="H2022"\w* \w they|strong="H3808"\w* weren’t \w there|strong="H4672"\w*. \w Then|strong="H5674"\w* \w he|strong="H3808"\w* \w passed|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H5674"\w* land \w of|strong="H2022"\w* \w the|strong="H5674"\w* Benjamites, \w but|strong="H3808"\w* \w they|strong="H3808"\w* didn’t \w find|strong="H4672"\w* \w them|strong="H5674"\w*. +\p +\v 5 \w When|strong="H7725"\w* \w they|strong="H1992"\w* \w had|strong="H7586"\w* \w come|strong="H3212"\w* \w to|strong="H7725"\w* \w the|strong="H4480"\w* land \w of|strong="H4480"\w* \w Zuph|strong="H6689"\w*, \w Saul|strong="H7586"\w* said \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w servant|strong="H5288"\w* \w who|strong="H1992"\w* \w was|strong="H7586"\w* \w with|strong="H5973"\w* \w him|strong="H7725"\w*, “\w Come|strong="H3212"\w*! \w Let|strong="H2308"\w*’s \w return|strong="H7725"\w*, \w lest|strong="H6435"\w* \w my|strong="H7725"\w* father \w stop|strong="H2308"\w* caring \w about|strong="H4480"\w* \w the|strong="H4480"\w* donkeys \w and|strong="H7725"\w* \w be|strong="H7725"\w* \w anxious|strong="H1672"\w* \w for|strong="H4480"\w* \w us|strong="H7725"\w*.” +\p +\v 6 \w The|strong="H3605"\w* servant \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5921"\w*, “\w Behold|strong="H2009"\w* \w now|strong="H6258"\w*, \w there|strong="H8033"\w* \w is|strong="H1870"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w of|strong="H5892"\w* God \w in|strong="H5921"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w*, \w and|strong="H1980"\w* \w he|strong="H8033"\w* \w is|strong="H1870"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H1870"\w* \w held|strong="H3513"\w* \w in|strong="H5921"\w* \w honor|strong="H3513"\w*. \w All|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H8033"\w* \w says|strong="H1696"\w* \w surely|strong="H1980"\w* happens. \w Now|strong="H6258"\w* \w let|strong="H4994"\w*’s \w go|strong="H1980"\w* \w there|strong="H8033"\w*. Perhaps \w he|strong="H8033"\w* \w can|strong="H1980"\w* \w tell|strong="H5046"\w* \w us|strong="H4994"\w* \w which|strong="H5892"\w* \w way|strong="H1870"\w* \w to|strong="H1696"\w* \w go|strong="H1980"\w*.” +\p +\v 7 \w Then|strong="H2009"\w* \w Saul|strong="H7586"\w* said \w to|strong="H3212"\w* \w his|strong="H3588"\w* \w servant|strong="H5288"\w*, “\w But|strong="H3588"\w* \w behold|strong="H2009"\w*, \w if|strong="H3588"\w* \w we|strong="H3068"\w* \w go|strong="H3212"\w*, \w what|strong="H4100"\w* \w should|strong="H4100"\w* \w we|strong="H3068"\w* \w bring|strong="H3212"\w* \w the|strong="H3588"\w* \w man|strong="H5288"\w*? \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w bread|strong="H3899"\w* \w is|strong="H4100"\w* spent \w in|strong="H3212"\w* \w our|strong="H3588"\w* \w sacks|strong="H3627"\w*, \w and|strong="H3212"\w* \w there|strong="H2009"\w* \w is|strong="H4100"\w* \w not|strong="H3588"\w* \w a|strong="H3068"\w* \w present|strong="H8670"\w* \w to|strong="H3212"\w* \w bring|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H3588"\w* \w man|strong="H5288"\w* \w of|strong="H3627"\w* God. \w What|strong="H4100"\w* \w do|strong="H4100"\w* \w we|strong="H3068"\w* \w have|strong="H5288"\w*?” +\p +\v 8 \w The|strong="H5414"\w* \w servant|strong="H5288"\w* \w answered|strong="H6030"\w* \w Saul|strong="H7586"\w* \w again|strong="H3254"\w* \w and|strong="H6030"\w* \w said|strong="H6030"\w*, “\w Behold|strong="H2009"\w*, \w I|strong="H5414"\w* \w have|strong="H3027"\w* \w in|strong="H4672"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w* \w the|strong="H5414"\w* \w fourth|strong="H7253"\w* \w part|strong="H7253"\w* \w of|strong="H3027"\w* \w a|strong="H3068"\w* \w shekel|strong="H8255"\w*\f + \fr 9:8 \ft A shekel is about 10 grams or about 0.35 ounces, so 1/4 shekel would be a small coin of about 2.5 grams.\f* \w of|strong="H3027"\w* \w silver|strong="H3701"\w*. \w I|strong="H5414"\w* \w will|strong="H3027"\w* \w give|strong="H5414"\w* \w that|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w man|strong="H5288"\w* \w of|strong="H3027"\w* \w God|strong="H5414"\w*, \w to|strong="H5414"\w* \w tell|strong="H5046"\w* \w us|strong="H5414"\w* \w our|strong="H5414"\w* \w way|strong="H1870"\w*.” +\v 9 (\w In|strong="H3478"\w* earlier \w times|strong="H3117"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w when|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H6440"\w* \w went|strong="H3212"\w* \w to|strong="H5704"\w* \w inquire|strong="H1875"\w* \w of|strong="H3117"\w* God, \w he|strong="H3588"\w* \w said|strong="H7121"\w*, “\w Come|strong="H3212"\w*! \w Let|strong="H3212"\w*’s \w go|strong="H3212"\w* \w to|strong="H5704"\w* \w the|strong="H6440"\w* \w seer|strong="H7203"\w*;” \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w who|strong="H3478"\w* \w is|strong="H3117"\w* \w now|strong="H3117"\w* \w called|strong="H7121"\w* \w a|strong="H3068"\w* \w prophet|strong="H5030"\w* \w was|strong="H3478"\w* \w before|strong="H6440"\w* \w called|strong="H7121"\w* \w a|strong="H3068"\w* \w seer|strong="H7203"\w*.) +\p +\v 10 \w Then|strong="H7586"\w* \w Saul|strong="H7586"\w* \w said|strong="H1697"\w* \w to|strong="H3212"\w* \w his|strong="H7586"\w* \w servant|strong="H5288"\w*, “\w Well|strong="H2896"\w* \w said|strong="H1697"\w*. \w Come|strong="H3212"\w*! \w Let|strong="H3212"\w*’s \w go|strong="H3212"\w*.” \w So|strong="H1697"\w* \w they|strong="H8033"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H1697"\w* \w city|strong="H5892"\w* \w where|strong="H8033"\w* \w the|strong="H1697"\w* \w man|strong="H5288"\w* \w of|strong="H1697"\w* God \w was|strong="H7586"\w*. +\v 11 \w As|strong="H5927"\w* \w they|strong="H1992"\w* \w went|strong="H3318"\w* \w up|strong="H5927"\w* \w the|strong="H3318"\w* \w ascent|strong="H4608"\w* \w to|strong="H3318"\w* \w the|strong="H3318"\w* \w city|strong="H5892"\w*, \w they|strong="H1992"\w* \w found|strong="H4672"\w* \w young|strong="H5291"\w* \w maidens|strong="H5291"\w* \w going|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w draw|strong="H7579"\w* \w water|strong="H4325"\w*, \w and|strong="H5892"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w them|strong="H1992"\w*, “\w Is|strong="H3426"\w* \w the|strong="H3318"\w* \w seer|strong="H7203"\w* \w here|strong="H2088"\w*?” +\p +\v 12 \w They|strong="H3588"\w* \w answered|strong="H6030"\w* \w them|strong="H6440"\w* \w and|strong="H6030"\w* \w said|strong="H6030"\w*, “\w He|strong="H3588"\w* \w is|strong="H3426"\w*. \w Behold|strong="H2009"\w*, \w he|strong="H3588"\w* \w is|strong="H3426"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*. \w Hurry|strong="H4116"\w* \w now|strong="H6258"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3117"\w* \w come|strong="H5971"\w* \w today|strong="H3117"\w* \w into|strong="H5892"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w*; \w for|strong="H3588"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w have|strong="H3426"\w* \w a|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w today|strong="H3117"\w* \w in|strong="H3117"\w* \w the|strong="H6440"\w* \w high|strong="H1116"\w* \w place|strong="H1116"\w*. +\v 13 \w As|strong="H5704"\w* \w soon|strong="H6258"\w* \w as|strong="H5704"\w* \w you|strong="H3588"\w* \w have|strong="H5971"\w* \w come|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H3588"\w* \w city|strong="H5892"\w*, \w you|strong="H3588"\w* \w will|strong="H5971"\w* immediately \w find|strong="H4672"\w* \w him|strong="H7121"\w* \w before|strong="H2962"\w* \w he|strong="H1931"\w* \w goes|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w high|strong="H1116"\w* \w place|strong="H1116"\w* \w to|strong="H5704"\w* eat; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w will|strong="H5971"\w* \w not|strong="H3808"\w* eat \w until|strong="H5704"\w* \w he|strong="H1931"\w* \w comes|strong="H5927"\w*, \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w blesses|strong="H1288"\w* \w the|strong="H3588"\w* \w sacrifice|strong="H2077"\w*. Afterwards \w those|strong="H1931"\w* \w who|strong="H1931"\w* \w are|strong="H3117"\w* \w invited|strong="H7121"\w* eat. \w Now|strong="H6258"\w* \w therefore|strong="H3651"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w*; \w for|strong="H3588"\w* \w at|strong="H3117"\w* \w this|strong="H3651"\w* \w time|strong="H3117"\w* \w you|strong="H3588"\w* \w will|strong="H5971"\w* \w find|strong="H4672"\w* \w him|strong="H7121"\w*.” +\p +\v 14 \w They|strong="H1992"\w* \w went|strong="H3318"\w* \w up|strong="H5927"\w* \w to|strong="H3318"\w* \w the|strong="H8432"\w* \w city|strong="H5892"\w*. \w As|strong="H5927"\w* \w they|strong="H1992"\w* \w came|strong="H3318"\w* \w within|strong="H8432"\w* \w the|strong="H8432"\w* \w city|strong="H5892"\w*, \w behold|strong="H2009"\w*, \w Samuel|strong="H8050"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w toward|strong="H5927"\w* \w them|strong="H1992"\w* \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w up|strong="H5927"\w* \w to|strong="H3318"\w* \w the|strong="H8432"\w* \w high|strong="H1116"\w* \w place|strong="H1116"\w*. +\p +\v 15 \w Now|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w revealed|strong="H1540"\w* \w to|strong="H3068"\w* \w Samuel|strong="H8050"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w before|strong="H6440"\w* \w Saul|strong="H7586"\w* \w came|strong="H3068"\w*, saying, +\v 16 “\w Tomorrow|strong="H4279"\w* \w about|strong="H5921"\w* \w this|strong="H7200"\w* \w time|strong="H6256"\w* \w I|strong="H3588"\w* \w will|strong="H5971"\w* \w send|strong="H7971"\w* \w you|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H7200"\w* \w out|strong="H7971"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* land \w of|strong="H3027"\w* \w Benjamin|strong="H1144"\w*, \w and|strong="H3478"\w* \w you|strong="H3588"\w* \w shall|strong="H5971"\w* \w anoint|strong="H4886"\w* \w him|strong="H5921"\w* \w to|strong="H3478"\w* \w be|strong="H3027"\w* \w prince|strong="H5057"\w* \w over|strong="H5921"\w* \w my|strong="H7200"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*. \w He|strong="H3588"\w* \w will|strong="H5971"\w* \w save|strong="H3467"\w* \w my|strong="H7200"\w* \w people|strong="H5971"\w* \w out|strong="H7971"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w Philistines|strong="H6430"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H5971"\w* \w looked|strong="H7200"\w* \w upon|strong="H5921"\w* \w my|strong="H7200"\w* \w people|strong="H5971"\w*, \w because|strong="H3588"\w* \w their|strong="H7200"\w* \w cry|strong="H6818"\w* \w has|strong="H3478"\w* \w come|strong="H4279"\w* \w to|strong="H3478"\w* \w me|strong="H7971"\w*.” +\p +\v 17 \w When|strong="H7200"\w* \w Samuel|strong="H8050"\w* \w saw|strong="H7200"\w* \w Saul|strong="H7586"\w*, \w Yahweh|strong="H3068"\w* \w said|strong="H6030"\w* \w to|strong="H3068"\w* \w him|strong="H7200"\w*, “\w Behold|strong="H2009"\w*, \w the|strong="H7200"\w* \w man|strong="H2088"\w* \w of|strong="H3068"\w* \w whom|strong="H5971"\w* \w I|strong="H2009"\w* \w spoke|strong="H6030"\w* \w to|strong="H3068"\w* \w you|strong="H7200"\w*! \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w have|strong="H3068"\w* authority \w over|strong="H3068"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w*.” +\p +\v 18 \w Then|strong="H2088"\w* \w Saul|strong="H7586"\w* \w approached|strong="H5066"\w* \w Samuel|strong="H8050"\w* \w in|strong="H1004"\w* \w the|strong="H8432"\w* \w gateway|strong="H8179"\w*, \w and|strong="H1004"\w* said, “\w Please|strong="H4994"\w* \w tell|strong="H5046"\w* \w me|strong="H4994"\w* \w where|strong="H1004"\w* \w the|strong="H8432"\w* \w seer|strong="H7203"\w*’s \w house|strong="H1004"\w* \w is|strong="H2088"\w*.” +\p +\v 19 \w Samuel|strong="H8050"\w* \w answered|strong="H6030"\w* \w Saul|strong="H7586"\w* \w and|strong="H6030"\w* \w said|strong="H6030"\w*, “\w I|strong="H3117"\w* am \w the|strong="H3605"\w* \w seer|strong="H7203"\w*. \w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w to|strong="H7971"\w* \w the|strong="H3605"\w* \w high|strong="H1116"\w* \w place|strong="H1116"\w*, \w for|strong="H6440"\w* \w you|strong="H6440"\w* \w are|strong="H3117"\w* \w to|strong="H7971"\w* eat \w with|strong="H5973"\w* \w me|strong="H6440"\w* \w today|strong="H3117"\w*. \w In|strong="H3117"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w* \w I|strong="H3117"\w* \w will|strong="H3824"\w* \w let|strong="H7971"\w* \w you|strong="H6440"\w* \w go|strong="H5927"\w* \w and|strong="H6030"\w* \w will|strong="H3824"\w* \w tell|strong="H5046"\w* \w you|strong="H6440"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3117"\w* \w in|strong="H3117"\w* \w your|strong="H3605"\w* \w heart|strong="H3824"\w*. +\v 20 \w As|strong="H3117"\w* \w for|strong="H3588"\w* \w your|strong="H3605"\w* donkeys \w who|strong="H4310"\w* \w were|strong="H3478"\w* lost \w three|strong="H7969"\w* \w days|strong="H3117"\w* \w ago|strong="H3117"\w*, don’t \w set|strong="H7760"\w* \w your|strong="H3605"\w* \w mind|strong="H3820"\w* \w on|strong="H3117"\w* \w them|strong="H7760"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3478"\w* \w been|strong="H3808"\w* \w found|strong="H4672"\w*. \w For|strong="H3588"\w* \w whom|strong="H4310"\w* \w does|strong="H3808"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w desire|strong="H2532"\w*? \w Is|strong="H3820"\w* \w it|strong="H7760"\w* \w not|strong="H3808"\w* \w you|strong="H3588"\w* \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* father’s \w house|strong="H1004"\w*?” +\p +\v 21 \w Saul|strong="H7586"\w* \w answered|strong="H6030"\w*, “Am \w I|strong="H1697"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w Benjamite|strong="H1145"\w*, \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w smallest|strong="H6996"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H1697"\w* \w Israel|strong="H3478"\w*? \w And|strong="H3478"\w* \w my|strong="H3605"\w* \w family|strong="H4940"\w* \w the|strong="H3605"\w* \w least|strong="H6996"\w* \w of|strong="H1697"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w families|strong="H4940"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w tribe|strong="H7626"\w* \w of|strong="H1697"\w* \w Benjamin|strong="H1144"\w*? \w Why|strong="H4100"\w* \w then|strong="H6030"\w* \w do|strong="H4100"\w* \w you|strong="H3605"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w* \w like|strong="H3478"\w* \w this|strong="H2088"\w*?” +\p +\v 22 \w Samuel|strong="H8050"\w* \w took|strong="H3947"\w* \w Saul|strong="H7586"\w* \w and|strong="H7970"\w* \w his|strong="H5414"\w* \w servant|strong="H5288"\w* \w and|strong="H7970"\w* \w brought|strong="H3947"\w* \w them|strong="H5414"\w* \w into|strong="H3947"\w* \w the|strong="H5414"\w* guest \w room|strong="H4725"\w*, \w and|strong="H7970"\w* \w made|strong="H5414"\w* \w them|strong="H5414"\w* \w sit|strong="H5414"\w* \w in|strong="H4725"\w* \w the|strong="H5414"\w* \w best|strong="H7218"\w* \w place|strong="H4725"\w* \w among|strong="H7218"\w* \w those|strong="H1992"\w* \w who|strong="H1992"\w* \w were|strong="H1992"\w* \w invited|strong="H7121"\w*, \w who|strong="H1992"\w* \w were|strong="H1992"\w* \w about|strong="H3947"\w* \w thirty|strong="H7970"\w* persons. +\v 23 \w Samuel|strong="H8050"\w* said \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w cook|strong="H2876"\w*, “\w Bring|strong="H5414"\w* \w the|strong="H5414"\w* \w portion|strong="H4490"\w* which \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w you|strong="H5414"\w*, \w of|strong="H7760"\w* which \w I|strong="H5414"\w* said \w to|strong="H5414"\w* \w you|strong="H5414"\w*, ‘\w Set|strong="H7760"\w* \w it|strong="H5414"\w* \w aside|strong="H5973"\w*.’” +\v 24 \w The|strong="H6440"\w* \w cook|strong="H2876"\w* \w took|strong="H7760"\w* \w up|strong="H7311"\w* \w the|strong="H6440"\w* \w thigh|strong="H7785"\w*, \w and|strong="H3117"\w* \w that|strong="H3588"\w* \w which|strong="H1931"\w* \w was|strong="H7586"\w* \w on|strong="H5921"\w* \w it|strong="H7760"\w*, \w and|strong="H3117"\w* \w set|strong="H7760"\w* \w it|strong="H7760"\w* \w before|strong="H6440"\w* \w Saul|strong="H7586"\w*. \w Samuel|strong="H8050"\w* \w said|strong="H7121"\w*, “\w Behold|strong="H2009"\w*, \w that|strong="H3588"\w* \w which|strong="H1931"\w* \w has|strong="H3117"\w* \w been|strong="H5971"\w* \w reserved|strong="H8104"\w*! \w Set|strong="H7760"\w* \w it|strong="H7760"\w* \w before|strong="H6440"\w* \w yourself|strong="H5921"\w* \w and|strong="H3117"\w* eat; \w because|strong="H3588"\w* \w it|strong="H7760"\w* \w has|strong="H3117"\w* \w been|strong="H5971"\w* \w kept|strong="H8104"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w for|strong="H3588"\w* \w the|strong="H6440"\w* \w appointed|strong="H4150"\w* \w time|strong="H3117"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w said|strong="H7121"\w*, ‘\w I|strong="H3588"\w* \w have|strong="H5971"\w* \w invited|strong="H7121"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*.’” \w So|strong="H7121"\w* \w Saul|strong="H7586"\w* ate \w with|strong="H5973"\w* \w Samuel|strong="H8050"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w*. +\p +\v 25 \w When|strong="H1696"\w* \w they|strong="H5921"\w* \w had|strong="H7586"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H3381"\w* \w the|strong="H5921"\w* \w high|strong="H1116"\w* \w place|strong="H1116"\w* \w into|strong="H3381"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*, \w he|strong="H5921"\w* \w talked|strong="H1696"\w* \w with|strong="H5973"\w* \w Saul|strong="H7586"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w housetop|strong="H1406"\w*. +\v 26 \w They|strong="H1931"\w* \w arose|strong="H6965"\w* \w early|strong="H7925"\w*; \w and|strong="H6965"\w* \w about|strong="H1961"\w* \w daybreak|strong="H7837"\w*, \w Samuel|strong="H8050"\w* \w called|strong="H7121"\w* \w to|strong="H3318"\w* \w Saul|strong="H7586"\w* \w on|strong="H1961"\w* \w the|strong="H7121"\w* \w housetop|strong="H1406"\w*, saying, “\w Get|strong="H6965"\w* \w up|strong="H5927"\w*, \w that|strong="H1931"\w* \w I|strong="H6965"\w* \w may|strong="H1961"\w* \w send|strong="H7971"\w* \w you|strong="H7971"\w* \w away|strong="H7971"\w*.” \w Saul|strong="H7586"\w* \w arose|strong="H6965"\w*, \w and|strong="H6965"\w* \w they|strong="H1931"\w* \w both|strong="H8147"\w* \w went|strong="H3318"\w* \w outside|strong="H2351"\w*, \w he|strong="H1931"\w* \w and|strong="H6965"\w* \w Samuel|strong="H8050"\w*, \w together|strong="H7121"\w*. +\v 27 \w As|strong="H1697"\w* \w they|strong="H1992"\w* \w were|strong="H3117"\w* \w going|strong="H5674"\w* \w down|strong="H3381"\w* \w at|strong="H3117"\w* \w the|strong="H6440"\w* \w end|strong="H7097"\w* \w of|strong="H3117"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w*, \w Samuel|strong="H8050"\w* \w said|strong="H1697"\w* \w to|strong="H3381"\w* \w Saul|strong="H7586"\w*, “\w Tell|strong="H8085"\w* \w the|strong="H6440"\w* \w servant|strong="H5288"\w* \w to|strong="H3381"\w* \w go|strong="H3381"\w* \w on|strong="H3117"\w* \w ahead|strong="H6440"\w* \w of|strong="H3117"\w* \w us|strong="H6440"\w*.” \w He|strong="H3117"\w* \w went|strong="H3381"\w* \w ahead|strong="H6440"\w*, \w then|strong="H5975"\w* \w Samuel|strong="H8050"\w* \w said|strong="H1697"\w*, “\w But|strong="H1992"\w* \w stand|strong="H5975"\w* \w still|strong="H5975"\w* \w first|strong="H3117"\w*, \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w may|strong="H3117"\w* \w cause|strong="H1697"\w* \w you|strong="H6440"\w* \w to|strong="H3381"\w* \w hear|strong="H8085"\w* God’s \w message|strong="H1697"\w*.” +\c 10 +\p +\v 1 \w Then|strong="H3947"\w* \w Samuel|strong="H8050"\w* \w took|strong="H3947"\w* \w the|strong="H5921"\w* \w vial|strong="H6378"\w* \w of|strong="H3068"\w* \w oil|strong="H8081"\w* \w and|strong="H3068"\w* \w poured|strong="H3332"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w his|strong="H3068"\w* \w head|strong="H7218"\w*, \w then|strong="H3947"\w* \w kissed|strong="H5401"\w* \w him|strong="H5921"\w* \w and|strong="H3068"\w* said, “Hasn’t \w Yahweh|strong="H3068"\w* \w anointed|strong="H4886"\w* \w you|strong="H3588"\w* \w to|strong="H3068"\w* \w be|strong="H3808"\w* \w prince|strong="H5057"\w* \w over|strong="H5921"\w* \w his|strong="H3068"\w* \w inheritance|strong="H5159"\w*? +\v 2 \w When|strong="H3117"\w* \w you|strong="H3117"\w* \w have|strong="H1121"\w* \w departed|strong="H1980"\w* \w from|strong="H1980"\w* \w me|strong="H5978"\w* \w today|strong="H3117"\w*, \w then|strong="H1980"\w* \w you|strong="H3117"\w* \w will|strong="H1121"\w* \w find|strong="H4672"\w* \w two|strong="H8147"\w* \w men|strong="H1121"\w* \w by|strong="H3117"\w* \w Rachel|strong="H7354"\w*’s \w tomb|strong="H6900"\w*, \w on|strong="H3117"\w* \w the|strong="H6213"\w* \w border|strong="H1366"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w at|strong="H3117"\w* \w Zelzah|strong="H6766"\w*. \w They|strong="H3117"\w* \w will|strong="H1121"\w* tell \w you|strong="H3117"\w*, ‘\w The|strong="H6213"\w* donkeys \w which|strong="H1697"\w* \w you|strong="H3117"\w* \w went|strong="H1980"\w* \w to|strong="H1980"\w* \w look|strong="H2009"\w* \w for|strong="H6213"\w* \w have|strong="H1121"\w* been \w found|strong="H4672"\w*; \w and|strong="H1121"\w* \w behold|strong="H2009"\w*, \w your|strong="H6213"\w* \w father|strong="H1121"\w* \w has|strong="H3117"\w* stopped caring \w about|strong="H1980"\w* \w the|strong="H6213"\w* donkeys \w and|strong="H1121"\w* \w is|strong="H4100"\w* \w anxious|strong="H1672"\w* \w for|strong="H6213"\w* \w you|strong="H3117"\w*, \w saying|strong="H1697"\w*, “\w What|strong="H4100"\w* \w shall|strong="H1121"\w* \w I|strong="H3117"\w* \w do|strong="H6213"\w* \w for|strong="H6213"\w* \w my|strong="H1245"\w* \w son|strong="H1121"\w*?”’ +\p +\v 3 “\w Then|strong="H5375"\w* \w you|strong="H5704"\w* \w will|strong="H5704"\w* \w go|strong="H5927"\w* \w on|strong="H5927"\w* \w forward|strong="H1973"\w* \w from|strong="H5927"\w* \w there|strong="H8033"\w*, \w and|strong="H3899"\w* \w you|strong="H5704"\w* \w will|strong="H5704"\w* \w come|strong="H5927"\w* \w to|strong="H5704"\w* \w the|strong="H5375"\w* oak \w of|strong="H3603"\w* \w Tabor|strong="H8396"\w*. \w Three|strong="H7969"\w* men \w will|strong="H5704"\w* \w meet|strong="H4672"\w* \w you|strong="H5704"\w* \w there|strong="H8033"\w* \w going|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5704"\w* \w God|strong="H1008"\w* \w to|strong="H5704"\w* \w Bethel|strong="H1008"\w*: \w one|strong="H5375"\w* \w carrying|strong="H5375"\w* \w three|strong="H7969"\w* \w young|strong="H1423"\w* \w goats|strong="H1423"\w*, \w and|strong="H3899"\w* another \w carrying|strong="H5375"\w* \w three|strong="H7969"\w* \w loaves|strong="H3899"\w* \w of|strong="H3603"\w* \w bread|strong="H3899"\w*, \w and|strong="H3899"\w* another \w carrying|strong="H5375"\w* \w a|strong="H3068"\w* container \w of|strong="H3603"\w* \w wine|strong="H3196"\w*. +\v 4 \w They|strong="H3027"\w* \w will|strong="H3027"\w* \w greet|strong="H7592"\w* \w you|strong="H5414"\w* \w and|strong="H3027"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w two|strong="H8147"\w* \w loaves|strong="H3899"\w* \w of|strong="H3027"\w* \w bread|strong="H3899"\w*, \w which|strong="H3899"\w* \w you|strong="H5414"\w* \w shall|strong="H3027"\w* \w receive|strong="H3947"\w* \w from|strong="H3027"\w* \w their|strong="H5414"\w* \w hand|strong="H3027"\w*. +\p +\v 5 “\w After|strong="H1961"\w* \w that|strong="H3651"\w* \w you|strong="H6440"\w* \w will|strong="H1961"\w* \w come|strong="H1961"\w* \w to|strong="H3381"\w* \w the|strong="H6440"\w* \w hill|strong="H1389"\w* \w of|strong="H5892"\w* God, \w where|strong="H8033"\w* \w the|strong="H6440"\w* \w garrison|strong="H5333"\w* \w of|strong="H5892"\w* \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w* \w is|strong="H3651"\w*; \w and|strong="H5892"\w* \w it|strong="H3651"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w*, \w when|strong="H1961"\w* \w you|strong="H6440"\w* \w have|strong="H1961"\w* \w come|strong="H1961"\w* \w there|strong="H8033"\w* \w to|strong="H3381"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w*, \w that|strong="H3651"\w* \w you|strong="H6440"\w* \w will|strong="H1961"\w* \w meet|strong="H6440"\w* \w a|strong="H3068"\w* band \w of|strong="H5892"\w* \w prophets|strong="H5030"\w* \w coming|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w high|strong="H1116"\w* \w place|strong="H1116"\w* \w with|strong="H3381"\w* \w a|strong="H3068"\w* lute, \w a|strong="H3068"\w* \w tambourine|strong="H8596"\w*, \w a|strong="H3068"\w* \w pipe|strong="H2485"\w*, \w and|strong="H5892"\w* \w a|strong="H3068"\w* \w harp|strong="H3658"\w* \w before|strong="H6440"\w* \w them|strong="H1992"\w*; \w and|strong="H5892"\w* \w they|strong="H1992"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w prophesying|strong="H5012"\w*. +\v 6 \w Then|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w* \w will|strong="H3068"\w* \w come|strong="H6743"\w* \w mightily|strong="H6743"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*, \w then|strong="H3068"\w* \w you|strong="H5921"\w* \w will|strong="H3068"\w* \w prophesy|strong="H5012"\w* \w with|strong="H5973"\w* \w them|strong="H5921"\w* \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w turned|strong="H2015"\w* \w into|strong="H2015"\w* another man. +\v 7 \w Let|strong="H1961"\w* \w it|strong="H3588"\w* \w be|strong="H1961"\w*, \w when|strong="H3588"\w* \w these|strong="H6213"\w* signs \w have|strong="H1961"\w* \w come|strong="H1961"\w* \w to|strong="H1961"\w* \w you|strong="H3588"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w do|strong="H6213"\w* \w what|strong="H6213"\w* \w is|strong="H3027"\w* \w appropriate|strong="H6213"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w occasion|strong="H4672"\w*; \w for|strong="H3588"\w* \w God|strong="H3027"\w* \w is|strong="H3027"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*. +\p +\v 8 “\w Go|strong="H5927"\w* \w down|strong="H3381"\w* \w ahead|strong="H6440"\w* \w of|strong="H3117"\w* \w me|strong="H6440"\w* \w to|strong="H5704"\w* \w Gilgal|strong="H1537"\w*; \w and|strong="H3117"\w* \w behold|strong="H2009"\w*, \w I|strong="H3117"\w* \w will|strong="H3117"\w* \w come|strong="H5927"\w* \w down|strong="H3381"\w* \w to|strong="H5704"\w* \w you|strong="H6440"\w* \w to|strong="H5704"\w* \w offer|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w* \w and|strong="H3117"\w* \w to|strong="H5704"\w* \w sacrifice|strong="H2077"\w* \w sacrifices|strong="H2077"\w* \w of|strong="H3117"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*. \w Wait|strong="H3176"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w until|strong="H5704"\w* \w I|strong="H3117"\w* \w come|strong="H5927"\w* \w to|strong="H5704"\w* \w you|strong="H6440"\w* \w and|strong="H3117"\w* \w show|strong="H6213"\w* \w you|strong="H6440"\w* \w what|strong="H3045"\w* \w you|strong="H6440"\w* \w are|strong="H3117"\w* \w to|strong="H5704"\w* \w do|strong="H6213"\w*.” +\v 9 \w It|strong="H1931"\w* \w was|strong="H1961"\w* \w so|strong="H1961"\w*, \w that|strong="H3605"\w* \w when|strong="H1961"\w* \w he|strong="H1931"\w* \w had|strong="H1961"\w* \w turned|strong="H2015"\w* \w his|strong="H3605"\w* \w back|strong="H6437"\w* \w to|strong="H3212"\w* \w go|strong="H3212"\w* \w from|strong="H3117"\w* \w Samuel|strong="H8050"\w*, God \w gave|strong="H2015"\w* \w him|strong="H5973"\w* another \w heart|strong="H3820"\w*; \w and|strong="H3117"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* signs \w happened|strong="H1961"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w*. +\v 10 \w When|strong="H5921"\w* \w they|strong="H8033"\w* \w came|strong="H6743"\w* \w there|strong="H8033"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w hill|strong="H1389"\w*, \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* band \w of|strong="H7307"\w* \w prophets|strong="H5030"\w* \w met|strong="H7122"\w* \w him|strong="H5921"\w*; \w and|strong="H8033"\w* \w the|strong="H5921"\w* \w Spirit|strong="H7307"\w* \w of|strong="H7307"\w* God \w came|strong="H6743"\w* \w mightily|strong="H6743"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H8033"\w* \w he|strong="H8033"\w* \w prophesied|strong="H5012"\w* \w among|strong="H8432"\w* \w them|strong="H5921"\w*. +\v 11 \w When|strong="H1961"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w knew|strong="H3045"\w* \w him|strong="H7200"\w* \w before|strong="H5973"\w* \w saw|strong="H7200"\w* \w that|strong="H3045"\w*, \w behold|strong="H2009"\w*, \w he|strong="H3605"\w* \w prophesied|strong="H5012"\w* \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w*, \w then|strong="H1961"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* said \w to|strong="H1961"\w* \w one|strong="H2088"\w* \w another|strong="H7453"\w*, “\w What|strong="H4100"\w* \w is|strong="H2088"\w* \w this|strong="H2088"\w* \w that|strong="H3045"\w* \w has|strong="H1961"\w* \w come|strong="H1961"\w* \w to|strong="H1961"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kish|strong="H7027"\w*? \w Is|strong="H2088"\w* \w Saul|strong="H7586"\w* \w also|strong="H1571"\w* \w among|strong="H5973"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w*?” +\p +\v 12 \w One|strong="H1961"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w same|strong="H3651"\w* \w place|strong="H1961"\w* \w answered|strong="H6030"\w*, “\w Who|strong="H4310"\w* \w is|strong="H4310"\w* \w their|strong="H5921"\w* father?” \w Therefore|strong="H3651"\w* \w it|strong="H5921"\w* \w became|strong="H1961"\w* \w a|strong="H3068"\w* \w proverb|strong="H4912"\w*, “\w Is|strong="H4310"\w* \w Saul|strong="H7586"\w* \w also|strong="H1571"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w prophets|strong="H5030"\w*?” +\v 13 \w When|strong="H3615"\w* \w he|strong="H1116"\w* had \w finished|strong="H3615"\w* \w prophesying|strong="H5012"\w*, \w he|strong="H1116"\w* \w came|strong="H3615"\w* \w to|strong="H1116"\w* \w the|strong="H3615"\w* \w high|strong="H1116"\w* \w place|strong="H1116"\w*. +\p +\v 14 \w Saul|strong="H7586"\w*’s \w uncle|strong="H1730"\w* said \w to|strong="H1980"\w* \w him|strong="H7200"\w* \w and|strong="H1980"\w* \w to|strong="H1980"\w* \w his|strong="H7200"\w* \w servant|strong="H5288"\w*, “Where \w did|strong="H7200"\w* \w you|strong="H3588"\w* \w go|strong="H1980"\w*?” +\p \w He|strong="H3588"\w* said, “\w To|strong="H1980"\w* \w seek|strong="H1245"\w* \w the|strong="H7200"\w* donkeys. \w When|strong="H3588"\w* \w we|strong="H3068"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H7586"\w* \w not|strong="H3588"\w* found, \w we|strong="H3068"\w* \w came|strong="H1980"\w* \w to|strong="H1980"\w* \w Samuel|strong="H8050"\w*.” +\p +\v 15 \w Saul|strong="H7586"\w*’s \w uncle|strong="H1730"\w* said, “\w Please|strong="H4994"\w* \w tell|strong="H5046"\w* \w me|strong="H4994"\w* \w what|strong="H4100"\w* \w Samuel|strong="H8050"\w* said \w to|strong="H5046"\w* \w you|strong="H5046"\w*.” +\p +\v 16 \w Saul|strong="H7586"\w* \w said|strong="H1697"\w* \w to|strong="H1697"\w* \w his|strong="H5046"\w* \w uncle|strong="H1730"\w*, “\w He|strong="H3588"\w* \w told|strong="H5046"\w* \w us|strong="H5046"\w* \w plainly|strong="H5046"\w* \w that|strong="H3588"\w* \w the|strong="H3588"\w* donkeys \w were|strong="H1697"\w* \w found|strong="H4672"\w*.” \w But|strong="H3588"\w* \w concerning|strong="H1697"\w* \w the|strong="H3588"\w* \w matter|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H3588"\w* \w kingdom|strong="H4410"\w*, \w of|strong="H1697"\w* \w which|strong="H1697"\w* \w Samuel|strong="H8050"\w* \w spoke|strong="H1697"\w*, \w he|strong="H3588"\w* didn’t \w tell|strong="H5046"\w* \w him|strong="H5046"\w*. +\p +\v 17 \w Samuel|strong="H8050"\w* \w called|strong="H6817"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w* \w together|strong="H6817"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3068"\w* \w Mizpah|strong="H4709"\w*; +\v 18 \w and|strong="H1121"\w* \w he|strong="H3068"\w* said \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, “\w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w* ‘\w I|strong="H3541"\w* \w brought|strong="H5927"\w* \w Israel|strong="H3478"\w* \w up|strong="H5927"\w* \w out|strong="H5337"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w* \w and|strong="H1121"\w* \w I|strong="H3541"\w* \w delivered|strong="H5337"\w* \w you|strong="H3605"\w* \w out|strong="H5337"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w Egyptians|strong="H4714"\w*, \w and|strong="H1121"\w* \w out|strong="H5337"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w that|strong="H3605"\w* \w oppressed|strong="H3905"\w* \w you|strong="H3605"\w*.’ +\v 19 \w But|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w today|strong="H3117"\w* \w rejected|strong="H3988"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w who|strong="H3605"\w* \w himself|strong="H1931"\w* \w saves|strong="H3467"\w* \w you|strong="H3588"\w* \w out|strong="H5921"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w calamities|strong="H6869"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w distresses|strong="H6869"\w*; \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* said \w to|strong="H3068"\w* \w him|strong="H6440"\w*, ‘\w No|strong="H3605"\w*! \w Set|strong="H7760"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w us|strong="H5921"\w*!’ \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* \w present|strong="H3320"\w* \w yourselves|strong="H3320"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w by|strong="H5921"\w* \w your|strong="H3068"\w* \w tribes|strong="H7626"\w* \w and|strong="H3068"\w* \w by|strong="H5921"\w* \w your|strong="H3068"\w* thousands.” +\p +\v 20 \w So|strong="H7126"\w* \w Samuel|strong="H8050"\w* \w brought|strong="H7126"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H7626"\w* \w Israel|strong="H3478"\w* \w near|strong="H7126"\w*, \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w tribe|strong="H7626"\w* \w of|strong="H7626"\w* \w Benjamin|strong="H1144"\w* \w was|strong="H3478"\w* chosen. +\v 21 \w He|strong="H3808"\w* \w brought|strong="H7126"\w* \w the|strong="H7126"\w* \w tribe|strong="H7626"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w near|strong="H7126"\w* \w by|strong="H3808"\w* \w their|strong="H1245"\w* \w families|strong="H4940"\w* \w and|strong="H1121"\w* \w the|strong="H7126"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H7126"\w* Matrites \w was|strong="H7586"\w* chosen. \w Then|strong="H7126"\w* \w Saul|strong="H7586"\w* \w the|strong="H7126"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kish|strong="H7027"\w* \w was|strong="H7586"\w* chosen; \w but|strong="H3808"\w* \w when|strong="H1121"\w* \w they|strong="H3808"\w* \w looked|strong="H1245"\w* \w for|strong="H1121"\w* \w him|strong="H4672"\w*, \w he|strong="H3808"\w* could \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w found|strong="H4672"\w*. +\v 22 \w Therefore|strong="H3068"\w* \w they|strong="H3068"\w* \w asked|strong="H7592"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w further|strong="H5750"\w*, “\w Is|strong="H3068"\w* \w there|strong="H2009"\w* \w yet|strong="H5750"\w* \w a|strong="H3068"\w* man \w to|strong="H3068"\w* \w come|strong="H5750"\w* \w here|strong="H2009"\w*?” +\p \w Yahweh|strong="H3068"\w* answered, “\w Behold|strong="H2009"\w*, \w he|strong="H1931"\w* \w has|strong="H3068"\w* \w hidden|strong="H2244"\w* \w himself|strong="H1931"\w* among \w the|strong="H3068"\w* \w baggage|strong="H3627"\w*.” +\p +\v 23 \w They|strong="H8033"\w* \w ran|strong="H7323"\w* \w and|strong="H5971"\w* \w got|strong="H3947"\w* \w him|strong="H3947"\w* \w there|strong="H8033"\w*. \w When|strong="H1361"\w* \w he|strong="H8033"\w* \w stood|strong="H3320"\w* \w among|strong="H8432"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w he|strong="H8033"\w* \w was|strong="H3605"\w* \w higher|strong="H4605"\w* \w than|strong="H3605"\w* \w any|strong="H3605"\w* \w of|strong="H8432"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w from|strong="H3947"\w* \w his|strong="H3605"\w* \w shoulders|strong="H7926"\w* \w and|strong="H5971"\w* \w upward|strong="H4605"\w*. +\v 24 \w Samuel|strong="H8050"\w* said \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, “\w Do|strong="H3068"\w* \w you|strong="H3588"\w* \w see|strong="H7200"\w* \w him|strong="H7200"\w* \w whom|strong="H5971"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* chosen, \w that|strong="H3588"\w* \w there|strong="H3605"\w* \w is|strong="H3068"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w like|strong="H3644"\w* \w him|strong="H7200"\w* \w among|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*?” +\p \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w shouted|strong="H7321"\w* \w and|strong="H3068"\w* said, “\w Long|strong="H3605"\w* \w live|strong="H2421"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*!” +\p +\v 25 \w Then|strong="H1696"\w* \w Samuel|strong="H8050"\w* \w told|strong="H1696"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w the|strong="H3605"\w* \w regulations|strong="H4941"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w kingdom|strong="H4410"\w*, \w and|strong="H3068"\w* \w wrote|strong="H3789"\w* \w it|strong="H6440"\w* \w in|strong="H3068"\w* \w a|strong="H3068"\w* \w book|strong="H5612"\w* \w and|strong="H3068"\w* \w laid|strong="H7971"\w* \w it|strong="H6440"\w* \w up|strong="H3240"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. \w Samuel|strong="H8050"\w* \w sent|strong="H7971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w away|strong="H7971"\w*, \w every|strong="H3605"\w* \w man|strong="H3605"\w* \w to|strong="H1696"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*. +\v 26 \w Saul|strong="H7586"\w* \w also|strong="H1571"\w* \w went|strong="H1980"\w* \w to|strong="H1980"\w* \w his|strong="H7586"\w* \w house|strong="H1004"\w* \w in|strong="H1980"\w* \w Gibeah|strong="H1390"\w*; \w and|strong="H1980"\w* \w the|strong="H5060"\w* \w army|strong="H2428"\w* \w went|strong="H1980"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*, \w whose|strong="H7586"\w* \w hearts|strong="H3820"\w* God \w had|strong="H7586"\w* \w touched|strong="H5060"\w*. +\v 27 \w But|strong="H3808"\w* certain \w worthless|strong="H1100"\w* \w fellows|strong="H1121"\w* \w said|strong="H2790"\w*, “\w How|strong="H4100"\w* \w could|strong="H2088"\w* \w this|strong="H2088"\w* \w man|strong="H1121"\w* \w save|strong="H3467"\w* \w us|strong="H1961"\w*?” \w They|strong="H3808"\w* despised \w him|strong="H2088"\w*, \w and|strong="H1121"\w* \w brought|strong="H3467"\w* \w him|strong="H2088"\w* \w no|strong="H3808"\w* \w tribute|strong="H4503"\w*. \w But|strong="H3808"\w* \w he|strong="H3808"\w* \w held|strong="H1961"\w* \w his|strong="H1961"\w* \w peace|strong="H2790"\w*. +\c 11 +\p +\v 1 \w Then|strong="H5927"\w* \w Nahash|strong="H5176"\w* \w the|strong="H3605"\w* \w Ammonite|strong="H5984"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H1285"\w* \w encamped|strong="H2583"\w* \w against|strong="H5921"\w* \w Jabesh|strong="H3003"\w* \w Gilead|strong="H1568"\w*; \w and|strong="H1285"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H5921"\w* \w Jabesh|strong="H3003"\w* said \w to|strong="H5927"\w* \w Nahash|strong="H5176"\w*, “\w Make|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w us|strong="H5921"\w*, \w and|strong="H1285"\w* \w we|strong="H3068"\w* \w will|strong="H5647"\w* \w serve|strong="H5647"\w* \w you|strong="H3605"\w*.” +\p +\v 2 \w Nahash|strong="H5176"\w* \w the|strong="H3605"\w* \w Ammonite|strong="H5984"\w* said \w to|strong="H3478"\w* \w them|strong="H5921"\w*, “\w On|strong="H5921"\w* \w this|strong="H2063"\w* condition \w I|strong="H5921"\w* \w will|strong="H3478"\w* \w make|strong="H7760"\w* \w it|strong="H7760"\w* \w with|strong="H5921"\w* \w you|strong="H3605"\w*, \w that|strong="H3605"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w right|strong="H3225"\w* \w eyes|strong="H5869"\w* \w be|strong="H3478"\w* \w gouged|strong="H5365"\w* \w out|strong="H5921"\w*. \w I|strong="H5921"\w* \w will|strong="H3478"\w* \w make|strong="H7760"\w* \w this|strong="H2063"\w* dishonor \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*.” +\p +\v 3 \w The|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H3117"\w* \w Jabesh|strong="H3003"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H7971"\w*, “Give \w us|strong="H3117"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w that|strong="H3605"\w* \w we|strong="H3068"\w* \w may|strong="H3478"\w* \w send|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H3318"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w borders|strong="H1366"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w then|strong="H3318"\w*, if \w there|strong="H3117"\w* \w is|strong="H3117"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w to|strong="H3318"\w* \w save|strong="H3467"\w* \w us|strong="H3117"\w*, \w we|strong="H3068"\w* \w will|strong="H3478"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w you|strong="H3605"\w*.” +\v 4 \w Then|strong="H1696"\w* \w the|strong="H3605"\w* \w messengers|strong="H4397"\w* \w came|strong="H5971"\w* \w to|strong="H1696"\w* \w Gibeah|strong="H1390"\w* \w of|strong="H1697"\w* \w Saul|strong="H7586"\w*, \w and|strong="H5971"\w* \w spoke|strong="H1696"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w* \w in|strong="H1696"\w* \w the|strong="H3605"\w* ears \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w then|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w their|strong="H3605"\w* \w voice|strong="H6963"\w* \w and|strong="H5971"\w* \w wept|strong="H1058"\w*. +\p +\v 5 \w Behold|strong="H2009"\w*, \w Saul|strong="H7586"\w* \w came|strong="H5971"\w* following \w the|strong="H3588"\w* \w oxen|strong="H1241"\w* \w out|strong="H4480"\w* \w of|strong="H1697"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w*; \w and|strong="H5971"\w* \w Saul|strong="H7586"\w* \w said|strong="H1697"\w*, “\w What|strong="H4100"\w* ails \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w weep|strong="H1058"\w*?” \w They|strong="H3588"\w* \w told|strong="H5608"\w* \w him|strong="H4480"\w* \w the|strong="H3588"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H3588"\w* \w men|strong="H5971"\w* \w of|strong="H1697"\w* \w Jabesh|strong="H3003"\w*. +\v 6 God’s \w Spirit|strong="H7307"\w* \w came|strong="H6743"\w* \w mightily|strong="H6743"\w* \w on|strong="H5921"\w* \w Saul|strong="H7586"\w* \w when|strong="H8085"\w* \w he|strong="H5921"\w* \w heard|strong="H8085"\w* \w those|strong="H5921"\w* \w words|strong="H1697"\w*, \w and|strong="H7586"\w* \w his|strong="H8085"\w* \w anger|strong="H7307"\w* \w burned|strong="H2734"\w* \w hot|strong="H2734"\w*. +\v 7 \w He|strong="H6213"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* \w yoke|strong="H6776"\w* \w of|strong="H3068"\w* \w oxen|strong="H1241"\w* \w and|strong="H3478"\w* \w cut|strong="H5408"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w pieces|strong="H5408"\w*, \w then|strong="H3318"\w* \w sent|strong="H7971"\w* \w them|strong="H5921"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w borders|strong="H1366"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w by|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w messengers|strong="H4397"\w*, saying, “\w Whoever|strong="H3605"\w* doesn’t \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w after|strong="H5921"\w* \w Saul|strong="H7586"\w* \w and|strong="H3478"\w* \w after|strong="H5921"\w* \w Samuel|strong="H8050"\w*, \w so|strong="H6213"\w* \w shall|strong="H3068"\w* \w it|strong="H5921"\w* \w be|strong="H3027"\w* \w done|strong="H6213"\w* \w to|strong="H3318"\w* \w his|strong="H3605"\w* \w oxen|strong="H1241"\w*.” \w The|strong="H3605"\w* \w dread|strong="H6343"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w and|strong="H3478"\w* \w they|strong="H3068"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w as|strong="H6213"\w* \w one|strong="H3605"\w* \w man|strong="H3605"\w*. +\v 8 \w He|strong="H3478"\w* \w counted|strong="H6485"\w* \w them|strong="H1961"\w* \w in|strong="H3478"\w* Bezek; \w and|strong="H3967"\w* \w the|strong="H6485"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* thousand, \w and|strong="H3967"\w* \w the|strong="H6485"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w thirty|strong="H7970"\w* thousand. +\v 9 \w They|strong="H3541"\w* said \w to|strong="H1961"\w* \w the|strong="H3541"\w* \w messengers|strong="H4397"\w* \w who|strong="H4397"\w* \w came|strong="H1961"\w*, “\w Tell|strong="H5046"\w* \w the|strong="H3541"\w* men \w of|strong="H4397"\w* \w Jabesh|strong="H3003"\w* \w Gilead|strong="H1568"\w*, ‘\w Tomorrow|strong="H4279"\w*, \w by|strong="H1961"\w* \w the|strong="H3541"\w* \w time|strong="H4279"\w* \w the|strong="H3541"\w* \w sun|strong="H8121"\w* \w is|strong="H1961"\w* \w hot|strong="H2527"\w*, \w you|strong="H5046"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* rescued.’” \w The|strong="H3541"\w* \w messengers|strong="H4397"\w* \w came|strong="H1961"\w* \w and|strong="H1568"\w* \w told|strong="H5046"\w* \w the|strong="H3541"\w* men \w of|strong="H4397"\w* \w Jabesh|strong="H3003"\w*; \w and|strong="H1568"\w* \w they|strong="H3541"\w* \w were|strong="H1961"\w* \w glad|strong="H8055"\w*. +\v 10 \w Therefore|strong="H6213"\w* \w the|strong="H3605"\w* \w men|strong="H6213"\w* \w of|strong="H5869"\w* \w Jabesh|strong="H3003"\w* \w said|strong="H3318"\w*, “\w Tomorrow|strong="H4279"\w* \w we|strong="H3068"\w* \w will|strong="H5869"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w you|strong="H3605"\w*, \w and|strong="H5869"\w* \w you|strong="H3605"\w* \w shall|strong="H5869"\w* \w do|strong="H6213"\w* \w with|strong="H6213"\w* \w us|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w seems|strong="H3605"\w* \w good|strong="H2896"\w* \w to|strong="H3318"\w* \w you|strong="H3605"\w*.” +\v 11 \w On|strong="H3117"\w* \w the|strong="H5221"\w* \w next|strong="H4283"\w* \w day|strong="H3117"\w*, \w Saul|strong="H7586"\w* \w put|strong="H7760"\w* \w the|strong="H5221"\w* \w people|strong="H5971"\w* \w in|strong="H3117"\w* \w three|strong="H7969"\w* \w companies|strong="H7218"\w*; \w and|strong="H3117"\w* \w they|strong="H3117"\w* \w came|strong="H1961"\w* \w into|strong="H8432"\w* \w the|strong="H5221"\w* \w middle|strong="H8432"\w* \w of|strong="H3117"\w* \w the|strong="H5221"\w* \w camp|strong="H4264"\w* \w in|strong="H3117"\w* \w the|strong="H5221"\w* \w morning|strong="H1242"\w* watch, \w and|strong="H3117"\w* \w struck|strong="H5221"\w* \w the|strong="H5221"\w* \w Ammonites|strong="H5983"\w* \w until|strong="H5704"\w* \w the|strong="H5221"\w* \w heat|strong="H2527"\w* \w of|strong="H3117"\w* \w the|strong="H5221"\w* \w day|strong="H3117"\w*. \w Those|strong="H1961"\w* \w who|strong="H5971"\w* \w remained|strong="H7604"\w* \w were|strong="H1961"\w* \w scattered|strong="H6327"\w*, \w so|strong="H1961"\w* \w that|strong="H5971"\w* \w no|strong="H3808"\w* \w two|strong="H8147"\w* \w of|strong="H3117"\w* \w them|strong="H5221"\w* \w were|strong="H1961"\w* \w left|strong="H7604"\w* \w together|strong="H3162"\w*. +\p +\v 12 \w The|strong="H5921"\w* \w people|strong="H5971"\w* said \w to|strong="H4191"\w* \w Samuel|strong="H8050"\w*, “\w Who|strong="H4310"\w* \w is|strong="H4310"\w* \w he|strong="H5414"\w* \w who|strong="H4310"\w* said, ‘\w Shall|strong="H5971"\w* \w Saul|strong="H7586"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w us|strong="H5414"\w*?’ \w Bring|strong="H5414"\w* \w those|strong="H5921"\w* \w men|strong="H5971"\w*, \w that|strong="H5971"\w* \w we|strong="H3068"\w* \w may|strong="H5971"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*!” +\p +\v 13 \w Saul|strong="H7586"\w* said, “\w No|strong="H3808"\w* \w man|strong="H4191"\w* \w shall|strong="H3068"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H3478"\w* \w death|strong="H4191"\w* \w today|strong="H3117"\w*; \w for|strong="H3588"\w* \w today|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* rescued \w Israel|strong="H3478"\w*.” +\p +\v 14 Then \w Samuel|strong="H8050"\w* said \w to|strong="H3212"\w* \w the|strong="H8033"\w* \w people|strong="H5971"\w*, “\w Come|strong="H3212"\w*! \w Let|strong="H3212"\w*’s \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w Gilgal|strong="H1537"\w*, \w and|strong="H3212"\w* \w renew|strong="H2318"\w* \w the|strong="H8033"\w* \w kingdom|strong="H4410"\w* \w there|strong="H8033"\w*.” +\v 15 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w went|strong="H3212"\w* \w to|strong="H5704"\w* \w Gilgal|strong="H1537"\w*; \w and|strong="H3478"\w* \w there|strong="H8033"\w* \w they|strong="H8033"\w* \w made|strong="H4427"\w* \w Saul|strong="H7586"\w* \w king|strong="H4427"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3478"\w* \w Gilgal|strong="H1537"\w*. \w There|strong="H8033"\w* \w they|strong="H8033"\w* \w offered|strong="H2076"\w* \w sacrifices|strong="H2077"\w* \w of|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H3478"\w* \w there|strong="H8033"\w* \w Saul|strong="H7586"\w* \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H5971"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w rejoiced|strong="H8055"\w* \w greatly|strong="H3966"\w*. +\c 12 +\p +\v 1 \w Samuel|strong="H8050"\w* \w said|strong="H8085"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, “\w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w have|strong="H3478"\w* \w listened|strong="H8085"\w* \w to|strong="H3478"\w* \w your|strong="H3605"\w* \w voice|strong="H6963"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w said|strong="H8085"\w* \w to|strong="H3478"\w* \w me|strong="H5921"\w*, \w and|strong="H3478"\w* \w have|strong="H3478"\w* \w made|strong="H4427"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w you|strong="H3605"\w*. +\v 2 \w Now|strong="H6258"\w*, \w behold|strong="H2009"\w*, \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w walks|strong="H1980"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*. \w I|strong="H3117"\w* \w am|strong="H2204"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* gray-headed. \w Behold|strong="H2009"\w*, \w my|strong="H6258"\w* \w sons|strong="H1121"\w* \w are|strong="H3117"\w* \w with|strong="H1980"\w* \w you|strong="H6440"\w*. \w I|strong="H3117"\w* \w have|strong="H1121"\w* \w walked|strong="H1980"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w from|strong="H6440"\w* \w my|strong="H6258"\w* \w youth|strong="H5271"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 3 \w Here|strong="H2005"\w* \w I|strong="H2005"\w* \w am|strong="H3068"\w*. \w Witness|strong="H6030"\w* \w against|strong="H5048"\w* \w me|strong="H7725"\w* \w before|strong="H5048"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w before|strong="H5048"\w* \w his|strong="H3068"\w* \w anointed|strong="H4899"\w*. \w Whose|strong="H4310"\w* \w ox|strong="H7794"\w* \w have|strong="H3068"\w* \w I|strong="H2005"\w* \w taken|strong="H3947"\w*? \w Whose|strong="H4310"\w* \w donkey|strong="H2543"\w* \w have|strong="H3068"\w* \w I|strong="H2005"\w* \w taken|strong="H3947"\w*? \w Whom|strong="H4310"\w* \w have|strong="H3068"\w* \w I|strong="H2005"\w* \w defrauded|strong="H6231"\w*? \w Whom|strong="H4310"\w* \w have|strong="H3068"\w* \w I|strong="H2005"\w* \w oppressed|strong="H6231"\w*? \w Of|strong="H3068"\w* \w whose|strong="H4310"\w* \w hand|strong="H3027"\w* \w have|strong="H3068"\w* \w I|strong="H2005"\w* \w taken|strong="H3947"\w* \w a|strong="H3068"\w* \w bribe|strong="H3724"\w* \w to|strong="H7725"\w* \w make|strong="H7725"\w* \w me|strong="H7725"\w* \w blind|strong="H5956"\w* \w my|strong="H3068"\w* \w eyes|strong="H5869"\w*? \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w restore|strong="H7725"\w* \w it|strong="H7725"\w* \w to|strong="H7725"\w* \w you|strong="H7725"\w*.” +\p +\v 4 \w They|strong="H3808"\w* said, “\w You|strong="H3947"\w* \w have|strong="H3027"\w* \w not|strong="H3808"\w* \w defrauded|strong="H6231"\w* \w us|strong="H3027"\w*, \w nor|strong="H3808"\w* \w oppressed|strong="H6231"\w* \w us|strong="H3027"\w*, \w neither|strong="H3808"\w* \w have|strong="H3027"\w* \w you|strong="H3947"\w* \w taken|strong="H3947"\w* \w anything|strong="H3972"\w* \w from|strong="H3027"\w* anyone’s \w hand|strong="H3027"\w*.” +\p +\v 5 \w He|strong="H3588"\w* said \w to|strong="H3068"\w* \w them|strong="H3027"\w*, “\w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w witness|strong="H5707"\w* \w against|strong="H3027"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w anointed|strong="H4899"\w* \w is|strong="H3068"\w* \w witness|strong="H5707"\w* \w today|strong="H3117"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w found|strong="H4672"\w* \w anything|strong="H3972"\w* \w in|strong="H3068"\w* \w my|strong="H3068"\w* \w hand|strong="H3027"\w*.” +\p \w They|strong="H3588"\w* said, “\w He|strong="H3588"\w* \w is|strong="H3068"\w* \w witness|strong="H5707"\w*.” +\v 6 \w Samuel|strong="H8050"\w* said \w to|strong="H3068"\w* \w the|strong="H6213"\w* \w people|strong="H5971"\w*, “\w It|strong="H6213"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H5971"\w* \w appointed|strong="H6213"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron, \w and|strong="H4872"\w* \w that|strong="H5971"\w* \w brought|strong="H5927"\w* \w your|strong="H3068"\w* fathers \w up|strong="H5927"\w* \w out|strong="H6213"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*. +\v 7 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w stand|strong="H3320"\w* \w still|strong="H3320"\w*, \w that|strong="H3605"\w* \w I|strong="H6258"\w* \w may|strong="H3068"\w* \w plead|strong="H8199"\w* \w with|strong="H3068"\w* \w you|strong="H6440"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w concerning|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w righteous|strong="H6666"\w* \w acts|strong="H6213"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w* \w to|strong="H3068"\w* \w you|strong="H6440"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* fathers. +\p +\v 8 “\w When|strong="H3318"\w* \w Jacob|strong="H3290"\w* \w had|strong="H3068"\w* \w come|strong="H3318"\w* \w into|strong="H3318"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H4872"\w* \w your|strong="H3068"\w* fathers \w cried|strong="H2199"\w* \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w*, \w then|strong="H3318"\w* \w Yahweh|strong="H3068"\w* \w sent|strong="H7971"\w* \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron, \w who|strong="H3068"\w* \w brought|strong="H3318"\w* \w your|strong="H3068"\w* fathers \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H4872"\w* \w made|strong="H3068"\w* \w them|strong="H7971"\w* \w to|strong="H3318"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*. +\v 9 \w But|strong="H7911"\w* \w they|strong="H3068"\w* \w forgot|strong="H7911"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*; \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w sold|strong="H4376"\w* \w them|strong="H3027"\w* \w into|strong="H3027"\w* \w the|strong="H3068"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w Sisera|strong="H5516"\w*, \w captain|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H3068"\w* \w army|strong="H6635"\w* \w of|strong="H4428"\w* \w Hazor|strong="H2674"\w*, \w and|strong="H3068"\w* \w into|strong="H3027"\w* \w the|strong="H3068"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H3068"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H3068"\w* \w into|strong="H3027"\w* \w the|strong="H3068"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Moab|strong="H4124"\w*; \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w fought|strong="H3898"\w* \w against|strong="H3898"\w* \w them|strong="H3027"\w*. +\v 10 \w They|strong="H3588"\w* \w cried|strong="H2199"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* said, ‘\w We|strong="H3588"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w*, \w because|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w served|strong="H5647"\w* \w the|strong="H3588"\w* \w Baals|strong="H1168"\w* \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w Ashtaroth|strong="H6252"\w*; \w but|strong="H3588"\w* \w now|strong="H6258"\w* \w deliver|strong="H5337"\w* \w us|strong="H3588"\w* \w out|strong="H2199"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w our|strong="H3068"\w* \w enemies|strong="H3027"\w*, \w and|strong="H3068"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w serve|strong="H5647"\w* \w you|strong="H3588"\w*.’ +\v 11 \w Yahweh|strong="H3068"\w* \w sent|strong="H7971"\w* \w Jerubbaal|strong="H3378"\w*, Bedan, \w Jephthah|strong="H3316"\w*, \w and|strong="H3068"\w* \w Samuel|strong="H8050"\w*, \w and|strong="H3068"\w* \w delivered|strong="H5337"\w* \w you|strong="H7971"\w* \w out|strong="H7971"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w enemies|strong="H3027"\w* \w on|strong="H3427"\w* \w every|strong="H5439"\w* \w side|strong="H5439"\w*; \w and|strong="H3068"\w* \w you|strong="H7971"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* safety. +\p +\v 12 “\w When|strong="H3588"\w* \w you|strong="H3588"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w Nahash|strong="H5176"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w came|strong="H3068"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w*, \w you|strong="H3588"\w* said \w to|strong="H3068"\w* \w me|strong="H7200"\w*, ‘\w No|strong="H3808"\w*, \w but|strong="H3588"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w shall|strong="H3068"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w us|strong="H5921"\w*,’ \w when|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w was|strong="H3068"\w* \w your|strong="H3068"\w* \w king|strong="H4428"\w*. +\v 13 \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* \w see|strong="H2009"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* whom \w you|strong="H5414"\w* \w have|strong="H3068"\w* chosen \w and|strong="H3068"\w* whom \w you|strong="H5414"\w* \w have|strong="H3068"\w* \w asked|strong="H7592"\w* \w for|strong="H5921"\w*. \w Behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w set|strong="H5414"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w you|strong="H5414"\w*. +\v 14 \w If|strong="H1961"\w* \w you|strong="H5921"\w* \w will|strong="H3068"\w* \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w serve|strong="H5647"\w* \w him|strong="H5921"\w*, \w and|strong="H3068"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w voice|strong="H6963"\w*, \w and|strong="H3068"\w* \w not|strong="H3808"\w* \w rebel|strong="H4784"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w commandment|strong="H6310"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*, \w then|strong="H1961"\w* \w both|strong="H1571"\w* \w you|strong="H5921"\w* \w and|strong="H3068"\w* \w also|strong="H1571"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w who|strong="H3068"\w* \w reigns|strong="H4427"\w* \w over|strong="H5921"\w* \w you|strong="H5921"\w* \w are|strong="H3068"\w* followers \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 15 \w But|strong="H3808"\w* \w if|strong="H1961"\w* \w you|strong="H3808"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w*, \w but|strong="H3808"\w* \w rebel|strong="H4784"\w* \w against|strong="H3027"\w* \w the|strong="H8085"\w* \w commandment|strong="H6310"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w then|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w against|strong="H3027"\w* \w you|strong="H3808"\w*, \w as|strong="H1961"\w* \w it|strong="H1961"\w* \w was|strong="H3068"\w* \w against|strong="H3027"\w* \w your|strong="H3068"\w* fathers. +\p +\v 16 “\w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w stand|strong="H3320"\w* \w still|strong="H3320"\w* \w and|strong="H3068"\w* \w see|strong="H7200"\w* \w this|strong="H2088"\w* \w great|strong="H1419"\w* \w thing|strong="H1697"\w*, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w before|strong="H5869"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w*. +\v 17 Isn’t \w it|strong="H5414"\w* \w wheat|strong="H2406"\w* \w harvest|strong="H7105"\w* \w today|strong="H3117"\w*? \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w call|strong="H7121"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w may|strong="H3068"\w* \w send|strong="H5414"\w* \w thunder|strong="H6963"\w* \w and|strong="H3068"\w* \w rain|strong="H4306"\w*; \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w and|strong="H3068"\w* \w see|strong="H7200"\w* \w that|strong="H3588"\w* \w your|strong="H3068"\w* \w wickedness|strong="H7451"\w* \w is|strong="H3068"\w* \w great|strong="H7227"\w*, \w which|strong="H3068"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w in|strong="H3068"\w* \w asking|strong="H7592"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w*.” +\p +\v 18 \w So|strong="H7121"\w* \w Samuel|strong="H8050"\w* \w called|strong="H7121"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w sent|strong="H5414"\w* \w thunder|strong="H6963"\w* \w and|strong="H3068"\w* \w rain|strong="H4306"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w*. \w Then|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w greatly|strong="H3966"\w* \w feared|strong="H3372"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w Samuel|strong="H8050"\w*. +\p +\v 19 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* said \w to|strong="H4191"\w* \w Samuel|strong="H8050"\w*, “\w Pray|strong="H6419"\w* \w for|strong="H3588"\w* \w your|strong="H3068"\w* \w servants|strong="H5650"\w* \w to|strong="H4191"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w not|strong="H3254"\w* \w die|strong="H4191"\w*; \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w added|strong="H3254"\w* \w to|strong="H4191"\w* \w all|strong="H3605"\w* \w our|strong="H3068"\w* \w sins|strong="H2403"\w* \w this|strong="H3588"\w* \w evil|strong="H7451"\w*, \w to|strong="H4191"\w* \w ask|strong="H7592"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w*.” +\p +\v 20 \w Samuel|strong="H8050"\w* said \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, “Don’t \w be|strong="H3068"\w* \w afraid|strong="H3372"\w*. \w You|strong="H3605"\w* \w have|strong="H3068"\w* \w indeed|strong="H6213"\w* \w done|strong="H6213"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w evil|strong="H7451"\w*; \w yet|strong="H3068"\w* don’t \w turn|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* following \w Yahweh|strong="H3068"\w*, \w but|strong="H5971"\w* \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w*. +\v 21 Don’t \w turn|strong="H5493"\w* \w away|strong="H5493"\w* \w to|strong="H5493"\w* \w go|strong="H5493"\w* \w after|strong="H3588"\w* \w vain|strong="H8414"\w* \w things|strong="H8414"\w* \w which|strong="H1992"\w* \w can|strong="H3808"\w*’t \w profit|strong="H3276"\w* \w or|strong="H3808"\w* \w deliver|strong="H5337"\w*, \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w vain|strong="H8414"\w*. +\v 22 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w forsake|strong="H5203"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w* \w for|strong="H3588"\w* \w his|strong="H3068"\w* \w great|strong="H1419"\w* \w name|strong="H8034"\w*’s \w sake|strong="H5668"\w*, \w because|strong="H3588"\w* \w it|strong="H3588"\w* \w has|strong="H3068"\w* \w pleased|strong="H2974"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3068"\w* \w make|strong="H6213"\w* \w you|strong="H3588"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w for|strong="H3588"\w* \w himself|strong="H6213"\w*. +\v 23 \w Moreover|strong="H1571"\w*, \w as|strong="H1571"\w* \w for|strong="H1157"\w* \w me|strong="H1157"\w*, \w far|strong="H2486"\w* \w be|strong="H3068"\w* \w it|strong="H2486"\w* \w from|strong="H3068"\w* \w me|strong="H1157"\w* \w that|strong="H3068"\w* \w I|strong="H1571"\w* \w should|strong="H3068"\w* \w sin|strong="H2398"\w* \w against|strong="H2398"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w ceasing|strong="H2308"\w* \w to|strong="H3068"\w* \w pray|strong="H6419"\w* \w for|strong="H1157"\w* \w you|strong="H3384"\w*; \w but|strong="H1571"\w* \w I|strong="H1571"\w* \w will|strong="H3068"\w* \w instruct|strong="H3384"\w* \w you|strong="H3384"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w good|strong="H2896"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w right|strong="H3477"\w* \w way|strong="H1870"\w*. +\v 24 \w Only|strong="H3588"\w* \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w serve|strong="H5647"\w* \w him|strong="H7200"\w* \w in|strong="H3068"\w* truth \w with|strong="H5973"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w*; \w for|strong="H3588"\w* \w consider|strong="H7200"\w* \w what|strong="H3372"\w* \w great|strong="H1431"\w* \w things|strong="H3605"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w done|strong="H1431"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*. +\v 25 \w But|strong="H1571"\w* if \w you|strong="H7489"\w* keep \w doing|strong="H7489"\w* \w evil|strong="H7489"\w*, \w you|strong="H7489"\w* \w will|strong="H4428"\w* \w be|strong="H1571"\w* \w consumed|strong="H5595"\w*, \w both|strong="H1571"\w* \w you|strong="H7489"\w* \w and|strong="H4428"\w* \w your|strong="H1571"\w* \w king|strong="H4428"\w*.” +\c 13 +\p +\v 1 \w Saul|strong="H7586"\w* \w was|strong="H3478"\w* thirty \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H8147"\w* \w became|strong="H4427"\w* \w king|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H8147"\w* \w reigned|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w forty-two|strong="H8147"\w* \w years|strong="H8141"\w*.\f + \fr 13:1 \ft The traditional Hebrew text omits “thirty” and “forty-”. The blanks are filled in here from a few manuscripts of the Septuagint.\f* +\p +\v 2 \w Saul|strong="H7586"\w* chose \w for|strong="H7971"\w* himself \w three|strong="H7969"\w* thousand \w men|strong="H5971"\w* \w of|strong="H2022"\w* \w Israel|strong="H3478"\w*, \w of|strong="H2022"\w* \w which|strong="H5971"\w* two thousand \w were|strong="H3478"\w* \w with|strong="H5973"\w* \w Saul|strong="H7586"\w* \w in|strong="H3478"\w* \w Michmash|strong="H4363"\w* \w and|strong="H3478"\w* \w in|strong="H3478"\w* \w the|strong="H7971"\w* \w Mount|strong="H2022"\w* \w of|strong="H2022"\w* \w Bethel|strong="H1008"\w*, \w and|strong="H3478"\w* \w one|strong="H1961"\w* thousand \w were|strong="H3478"\w* \w with|strong="H5973"\w* \w Jonathan|strong="H3129"\w* \w in|strong="H3478"\w* \w Gibeah|strong="H1390"\w* \w of|strong="H2022"\w* \w Benjamin|strong="H1144"\w*. \w He|strong="H7971"\w* \w sent|strong="H7971"\w* \w the|strong="H7971"\w* \w rest|strong="H3499"\w* \w of|strong="H2022"\w* \w the|strong="H7971"\w* \w people|strong="H5971"\w* \w to|strong="H3478"\w* \w their|strong="H7971"\w* \w own|strong="H1961"\w* tents. +\v 3 \w Jonathan|strong="H3129"\w* \w struck|strong="H5221"\w* \w the|strong="H3605"\w* \w garrison|strong="H5333"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w that|strong="H3605"\w* \w was|strong="H7586"\w* \w in|strong="H8085"\w* \w Geba|strong="H1387"\w*, \w and|strong="H8085"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w heard|strong="H8085"\w* \w of|strong="H3605"\w* \w it|strong="H5221"\w*. \w Saul|strong="H7586"\w* \w blew|strong="H8628"\w* \w the|strong="H3605"\w* \w trumpet|strong="H7782"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land, saying, “Let \w the|strong="H3605"\w* \w Hebrews|strong="H5680"\w* \w hear|strong="H8085"\w*!” +\v 4 \w All|strong="H3605"\w* \w Israel|strong="H3478"\w* \w heard|strong="H8085"\w* \w that|strong="H5971"\w* \w Saul|strong="H7586"\w* \w had|strong="H3478"\w* \w struck|strong="H5221"\w* \w the|strong="H3605"\w* \w garrison|strong="H5333"\w* \w of|strong="H5971"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H3478"\w* \w also|strong="H1571"\w* \w that|strong="H5971"\w* \w Israel|strong="H3478"\w* \w was|strong="H3478"\w* \w considered|strong="H8085"\w* \w an|strong="H5221"\w* abomination \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*. \w The|strong="H3605"\w* \w people|strong="H5971"\w* \w were|strong="H3478"\w* \w gathered|strong="H6430"\w* \w together|strong="H6817"\w* \w after|strong="H6430"\w* \w Saul|strong="H7586"\w* \w to|strong="H3478"\w* \w Gilgal|strong="H1537"\w*. +\v 5 \w The|strong="H5921"\w* \w Philistines|strong="H6430"\w* \w assembled|strong="H3478"\w* \w themselves|strong="H5921"\w* \w together|strong="H5973"\w* \w to|strong="H3478"\w* \w fight|strong="H3898"\w* \w with|strong="H5973"\w* \w Israel|strong="H3478"\w*: \w thirty|strong="H7970"\w* thousand \w chariots|strong="H7393"\w*, \w six|strong="H8337"\w* thousand \w horsemen|strong="H6571"\w*, \w and|strong="H3478"\w* \w people|strong="H5971"\w* \w as|strong="H7230"\w* \w the|strong="H5921"\w* \w sand|strong="H2344"\w* \w which|strong="H5971"\w* \w is|strong="H3478"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w seashore|strong="H3220"\w* \w in|strong="H5921"\w* \w multitude|strong="H7230"\w*. \w They|strong="H5921"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H3478"\w* \w encamped|strong="H2583"\w* \w in|strong="H5921"\w* \w Michmash|strong="H4363"\w*, \w eastward|strong="H6926"\w* \w of|strong="H7230"\w* Beth Aven. +\v 6 \w When|strong="H3588"\w* \w the|strong="H7200"\w* \w men|strong="H5971"\w* \w of|strong="H5971"\w* \w Israel|strong="H3478"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H3478"\w* \w in|strong="H3478"\w* \w trouble|strong="H6862"\w* (\w for|strong="H3588"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w* \w were|strong="H3478"\w* \w distressed|strong="H5065"\w*), \w then|strong="H3588"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w* \w hid|strong="H2244"\w* \w themselves|strong="H2244"\w* \w in|strong="H3478"\w* \w caves|strong="H4631"\w*, \w in|strong="H3478"\w* \w thickets|strong="H2337"\w*, \w in|strong="H3478"\w* \w rocks|strong="H5553"\w*, \w in|strong="H3478"\w* tombs, \w and|strong="H3478"\w* \w in|strong="H3478"\w* pits. +\v 7 Now \w some|strong="H5971"\w* \w of|strong="H5971"\w* \w the|strong="H3605"\w* \w Hebrews|strong="H5680"\w* \w had|strong="H7586"\w* \w gone|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w* \w to|strong="H5674"\w* \w the|strong="H3605"\w* land \w of|strong="H5971"\w* \w Gad|strong="H1410"\w* \w and|strong="H5971"\w* \w Gilead|strong="H1568"\w*; \w but|strong="H5971"\w* \w as|strong="H5971"\w* \w for|strong="H3605"\w* \w Saul|strong="H7586"\w*, \w he|strong="H3605"\w* \w was|strong="H7586"\w* \w yet|strong="H5750"\w* \w in|strong="H5750"\w* \w Gilgal|strong="H1537"\w*, \w and|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* followed \w him|strong="H3605"\w* \w trembling|strong="H2729"\w*. +\v 8 \w He|strong="H3117"\w* \w stayed|strong="H3176"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w time|strong="H3117"\w* \w set|strong="H4150"\w* \w by|strong="H5921"\w* \w Samuel|strong="H8050"\w*; \w but|strong="H3808"\w* \w Samuel|strong="H8050"\w* didn’t \w come|strong="H5971"\w* \w to|strong="H5921"\w* \w Gilgal|strong="H1537"\w*, \w and|strong="H3117"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w were|strong="H5971"\w* \w scattering|strong="H6327"\w* \w from|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 9 \w Saul|strong="H7586"\w* said, “\w Bring|strong="H5927"\w* \w the|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w to|strong="H5927"\w* \w me|strong="H5927"\w* \w here|strong="H5066"\w*, \w and|strong="H7586"\w* \w the|strong="H5927"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*.” He \w offered|strong="H5927"\w* \w the|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*. +\p +\v 10 \w It|strong="H5927"\w* \w came|strong="H1961"\w* \w to|strong="H3318"\w* \w pass|strong="H1961"\w* \w that|strong="H7586"\w* \w as|strong="H1961"\w* soon \w as|strong="H1961"\w* \w he|strong="H3318"\w* \w had|strong="H1961"\w* \w finished|strong="H3615"\w* \w offering|strong="H5930"\w* \w the|strong="H1288"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w behold|strong="H2009"\w*, \w Samuel|strong="H8050"\w* \w came|strong="H1961"\w*; \w and|strong="H7586"\w* \w Saul|strong="H7586"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w meet|strong="H7122"\w* \w him|strong="H3318"\w*, \w that|strong="H7586"\w* \w he|strong="H3318"\w* might \w greet|strong="H1288"\w* \w him|strong="H3318"\w*. +\v 11 \w Samuel|strong="H8050"\w* said, “\w What|strong="H4100"\w* \w have|strong="H5971"\w* \w you|strong="H3588"\w* \w done|strong="H6213"\w*?” +\p \w Saul|strong="H7586"\w* said, “\w Because|strong="H3588"\w* \w I|strong="H3588"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w were|strong="H5971"\w* \w scattered|strong="H5310"\w* \w from|strong="H5921"\w* \w me|strong="H7200"\w*, \w and|strong="H3117"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* didn’t \w come|strong="H5971"\w* \w within|strong="H5921"\w* \w the|strong="H5921"\w* \w days|strong="H3117"\w* \w appointed|strong="H4150"\w*, \w and|strong="H3117"\w* \w that|strong="H3588"\w* \w the|strong="H5921"\w* \w Philistines|strong="H6430"\w* assembled \w themselves|strong="H6213"\w* \w together|strong="H5921"\w* \w at|strong="H5921"\w* \w Michmash|strong="H4363"\w*, +\v 12 \w therefore|strong="H6258"\w* \w I|strong="H6258"\w* said, ‘\w Now|strong="H6258"\w* \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w* \w will|strong="H3068"\w* \w come|strong="H5927"\w* \w down|strong="H3381"\w* \w on|strong="H3068"\w* \w me|strong="H6440"\w* \w to|strong="H3381"\w* \w Gilgal|strong="H1537"\w*, \w and|strong="H3068"\w* \w I|strong="H6258"\w* haven’t \w entreated|strong="H2470"\w* \w the|strong="H6440"\w* \w favor|strong="H6440"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.’ \w I|strong="H6258"\w* forced myself \w therefore|strong="H6258"\w*, \w and|strong="H3068"\w* \w offered|strong="H5927"\w* \w the|strong="H6440"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*.” +\p +\v 13 \w Samuel|strong="H8050"\w* said \w to|strong="H5704"\w* \w Saul|strong="H7586"\w*, “\w You|strong="H3588"\w* \w have|strong="H3068"\w* \w done|strong="H3478"\w* \w foolishly|strong="H5528"\w*. \w You|strong="H3588"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w kept|strong="H8104"\w* \w the|strong="H3588"\w* \w commandment|strong="H4687"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w which|strong="H3068"\w* \w he|strong="H3588"\w* \w commanded|strong="H6680"\w* \w you|strong="H3588"\w*; \w for|strong="H3588"\w* \w now|strong="H6258"\w* \w Yahweh|strong="H3068"\w* \w would|strong="H3068"\w* \w have|strong="H3068"\w* \w established|strong="H3559"\w* \w your|strong="H3068"\w* \w kingdom|strong="H4467"\w* \w on|strong="H3068"\w* \w Israel|strong="H3478"\w* \w forever|strong="H5769"\w*. +\v 14 \w But|strong="H3588"\w* \w now|strong="H6258"\w* \w your|strong="H3068"\w* \w kingdom|strong="H4467"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w continue|strong="H6965"\w*. \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w sought|strong="H1245"\w* \w for|strong="H3588"\w* \w himself|strong="H3824"\w* \w a|strong="H3068"\w* man \w after|strong="H5921"\w* \w his|strong="H8104"\w* \w own|strong="H5971"\w* \w heart|strong="H3824"\w*, \w and|strong="H6965"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w appointed|strong="H6680"\w* \w him|strong="H5921"\w* \w to|strong="H3068"\w* \w be|strong="H3808"\w* \w prince|strong="H5057"\w* \w over|strong="H5921"\w* \w his|strong="H8104"\w* \w people|strong="H5971"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w kept|strong="H8104"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w you|strong="H3588"\w*.” +\p +\v 15 \w Samuel|strong="H8050"\w* \w arose|strong="H6965"\w*, \w and|strong="H3967"\w* \w went|strong="H5927"\w* \w from|strong="H4480"\w* \w Gilgal|strong="H1537"\w* \w to|strong="H5927"\w* \w Gibeah|strong="H1390"\w* \w of|strong="H4480"\w* \w Benjamin|strong="H1144"\w*. \w Saul|strong="H7586"\w* \w counted|strong="H6485"\w* \w the|strong="H4480"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w present|strong="H4672"\w* \w with|strong="H5973"\w* \w him|strong="H4672"\w*, \w about|strong="H4480"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w men|strong="H5971"\w*. +\v 16 \w Saul|strong="H7586"\w*, \w and|strong="H1121"\w* \w Jonathan|strong="H3129"\w* \w his|strong="H7586"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w the|strong="H4672"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w present|strong="H4672"\w* \w with|strong="H5973"\w* \w them|strong="H4672"\w*, \w stayed|strong="H3427"\w* \w in|strong="H3427"\w* \w Geba|strong="H1387"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*; \w but|strong="H5971"\w* \w the|strong="H4672"\w* \w Philistines|strong="H6430"\w* \w encamped|strong="H2583"\w* \w in|strong="H3427"\w* \w Michmash|strong="H4363"\w*. +\v 17 \w The|strong="H3318"\w* \w raiders|strong="H7843"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H7218"\w* \w the|strong="H3318"\w* \w camp|strong="H4264"\w* \w of|strong="H7218"\w* \w the|strong="H3318"\w* \w Philistines|strong="H6430"\w* \w in|strong="H1870"\w* \w three|strong="H7969"\w* \w companies|strong="H7218"\w*: one \w company|strong="H4264"\w* \w turned|strong="H6437"\w* \w to|strong="H3318"\w* \w the|strong="H3318"\w* \w way|strong="H1870"\w* \w that|strong="H6430"\w* \w leads|strong="H3318"\w* \w to|strong="H3318"\w* \w Ophrah|strong="H6084"\w*, \w to|strong="H3318"\w* \w the|strong="H3318"\w* land \w of|strong="H7218"\w* \w Shual|strong="H7777"\w*; +\v 18 another \w company|strong="H7218"\w* \w turned|strong="H6437"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w* \w to|strong="H5921"\w* Beth Horon; \w and|strong="H7218"\w* another \w company|strong="H7218"\w* \w turned|strong="H6437"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w* \w of|strong="H1366"\w* \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w that|strong="H1870"\w* \w looks|strong="H8259"\w* \w down|strong="H8259"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w valley|strong="H1516"\w* \w of|strong="H1366"\w* \w Zeboim|strong="H6650"\w* \w toward|strong="H1870"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*. +\v 19 \w Now|strong="H3588"\w* \w there|strong="H4672"\w* \w was|strong="H3478"\w* \w no|strong="H3808"\w* \w blacksmith|strong="H2796"\w* \w found|strong="H4672"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* said, “\w Lest|strong="H6435"\w* \w the|strong="H3605"\w* \w Hebrews|strong="H5680"\w* \w make|strong="H6213"\w* \w themselves|strong="H6213"\w* \w swords|strong="H2719"\w* \w or|strong="H3808"\w* \w spears|strong="H2595"\w*”; +\v 20 \w but|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Israelites|strong="H3478"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*, \w each|strong="H3605"\w* \w man|strong="H3605"\w* \w to|strong="H3381"\w* \w sharpen|strong="H3913"\w* \w his|strong="H3605"\w* own \w plowshare|strong="H4281"\w*, \w mattock|strong="H4281"\w*, ax, \w and|strong="H3478"\w* sickle. +\v 21 \w The|strong="H1961"\w* price \w was|strong="H1961"\w* \w one|strong="H6310"\w* payim\f + \fr 13:21 \ft A payim (or pim) was 2/3 shekel of silver, or 0.26 ounces, or 7.6 grams\f* each \w to|strong="H1961"\w* \w sharpen|strong="H5324"\w* \w mattocks|strong="H4281"\w*, \w plowshares|strong="H4281"\w*, pitchforks, \w axes|strong="H7134"\w*, \w and|strong="H6310"\w* \w goads|strong="H1861"\w*. +\v 22 \w So|strong="H1961"\w* \w it|strong="H1961"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w pass|strong="H1961"\w* \w in|strong="H3117"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w battle|strong="H4421"\w* \w that|strong="H5971"\w* \w neither|strong="H3808"\w* \w sword|strong="H2719"\w* \w nor|strong="H3808"\w* \w spear|strong="H2595"\w* \w was|strong="H1961"\w* \w found|strong="H4672"\w* \w in|strong="H3117"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w any|strong="H3605"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w with|strong="H3117"\w* \w Saul|strong="H7586"\w* \w and|strong="H1121"\w* \w Jonathan|strong="H3129"\w*; \w but|strong="H3808"\w* \w Saul|strong="H7586"\w* \w and|strong="H1121"\w* \w Jonathan|strong="H3129"\w* \w his|strong="H3605"\w* \w son|strong="H1121"\w* \w had|strong="H1961"\w* \w them|strong="H3027"\w*. +\p +\v 23 \w The|strong="H3318"\w* \w garrison|strong="H4673"\w* \w of|strong="H3318"\w* \w the|strong="H3318"\w* \w Philistines|strong="H6430"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3318"\w* \w pass|strong="H4569"\w* \w of|strong="H3318"\w* \w Michmash|strong="H4363"\w*. +\c 14 +\p +\v 1 \w Now|strong="H1961"\w* \w it|strong="H5375"\w* \w happened|strong="H1961"\w* \w on|strong="H3117"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w Jonathan|strong="H3129"\w* \w the|strong="H5375"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w* said \w to|strong="H3212"\w* \w the|strong="H5375"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* \w who|strong="H1121"\w* \w bore|strong="H5375"\w* \w his|strong="H5375"\w* \w armor|strong="H3627"\w*, “\w Come|strong="H1961"\w*! \w Let|strong="H5046"\w*’s \w go|strong="H3212"\w* \w over|strong="H5674"\w* \w to|strong="H3212"\w* \w the|strong="H5375"\w* \w Philistines|strong="H6430"\w*’ \w garrison|strong="H4673"\w* \w that|strong="H3117"\w* \w is|strong="H3117"\w* \w on|strong="H3117"\w* \w the|strong="H5375"\w* \w other|strong="H5676"\w* \w side|strong="H5676"\w*.” \w But|strong="H3808"\w* \w he|strong="H3117"\w* didn’t \w tell|strong="H5046"\w* \w his|strong="H5375"\w* \w father|strong="H1121"\w*. +\v 2 \w Saul|strong="H7586"\w* \w stayed|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H8478"\w* \w uttermost|strong="H7097"\w* \w part|strong="H7097"\w* \w of|strong="H3427"\w* \w Gibeah|strong="H1390"\w* \w under|strong="H8478"\w* \w the|strong="H8478"\w* \w pomegranate|strong="H7416"\w* \w tree|strong="H7416"\w* \w which|strong="H5971"\w* \w is|strong="H7586"\w* \w in|strong="H3427"\w* \w Migron|strong="H4051"\w*; \w and|strong="H3967"\w* \w the|strong="H8478"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w* \w were|strong="H5971"\w* \w about|strong="H5971"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w men|strong="H5971"\w*, +\v 3 including Ahijah \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahitub, Ichabod’s brother, \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Phinehas|strong="H6372"\w*, \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Eli|strong="H5941"\w* \w the|strong="H3588"\w* \w priest|strong="H3548"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H1980"\w* \w Shiloh|strong="H7887"\w*, \w wearing|strong="H5375"\w* \w an|strong="H5375"\w* ephod. \w The|strong="H3588"\w* \w people|strong="H5971"\w* didn’t \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Jonathan|strong="H3129"\w* \w was|strong="H3068"\w* \w gone|strong="H1980"\w*. +\p +\v 4 \w Between|strong="H5921"\w* \w the|strong="H5921"\w* \w passes|strong="H5674"\w*, \w by|strong="H5921"\w* \w which|strong="H2088"\w* \w Jonathan|strong="H3129"\w* \w sought|strong="H1245"\w* \w to|strong="H5921"\w* \w go|strong="H5674"\w* \w over|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w Philistines|strong="H6430"\w*’ \w garrison|strong="H4673"\w*, \w there|strong="H2088"\w* \w was|strong="H8034"\w* \w a|strong="H3068"\w* \w rocky|strong="H5553"\w* \w crag|strong="H8127"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w one|strong="H2088"\w* \w side|strong="H5676"\w* \w and|strong="H6430"\w* \w a|strong="H3068"\w* \w rocky|strong="H5553"\w* \w crag|strong="H8127"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w other|strong="H2088"\w* \w side|strong="H5676"\w*; \w and|strong="H6430"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w the|strong="H5921"\w* \w one|strong="H2088"\w* \w was|strong="H8034"\w* Bozez, \w and|strong="H6430"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w the|strong="H5921"\w* \w other|strong="H2088"\w* \w Seneh|strong="H5573"\w*. +\v 5 \w The|strong="H4136"\w* one \w crag|strong="H8127"\w* \w rose|strong="H4690"\w* \w up|strong="H1387"\w* \w on|strong="H4136"\w* \w the|strong="H4136"\w* \w north|strong="H6828"\w* \w in|strong="H8127"\w* \w front|strong="H4136"\w* \w of|strong="H5045"\w* \w Michmash|strong="H4363"\w*, \w and|strong="H6828"\w* \w the|strong="H4136"\w* other \w on|strong="H4136"\w* \w the|strong="H4136"\w* \w south|strong="H5045"\w* \w in|strong="H8127"\w* \w front|strong="H4136"\w* \w of|strong="H5045"\w* \w Geba|strong="H1387"\w*. +\v 6 \w Jonathan|strong="H3083"\w* said \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* \w who|strong="H3068"\w* \w bore|strong="H5375"\w* \w his|strong="H5375"\w* \w armor|strong="H3627"\w*, “\w Come|strong="H3212"\w*! \w Let|strong="H3212"\w*’s \w go|strong="H3212"\w* \w over|strong="H5674"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w garrison|strong="H4673"\w* \w of|strong="H3068"\w* \w these|strong="H6213"\w* \w uncircumcised|strong="H6189"\w*. \w It|strong="H3588"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w work|strong="H6213"\w* \w for|strong="H3588"\w* \w us|strong="H6213"\w*, \w for|strong="H3588"\w* \w there|strong="H3068"\w* \w is|strong="H3068"\w* \w no|strong="H6213"\w* \w restraint|strong="H4622"\w* \w on|strong="H5674"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3068"\w* \w save|strong="H3467"\w* \w by|strong="H5674"\w* \w many|strong="H7227"\w* \w or|strong="H4592"\w* \w by|strong="H5674"\w* \w few|strong="H4592"\w*.” +\p +\v 7 \w His|strong="H3605"\w* \w armor|strong="H3627"\w* \w bearer|strong="H5375"\w* said \w to|strong="H6213"\w* \w him|strong="H6213"\w*, “\w Do|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w in|strong="H6213"\w* \w your|strong="H3605"\w* \w heart|strong="H3824"\w*. Go, \w and|strong="H6213"\w* \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H2005"\w* \w with|strong="H5973"\w* \w you|strong="H3605"\w* according \w to|strong="H6213"\w* \w your|strong="H3605"\w* \w heart|strong="H3824"\w*.” +\p +\v 8 \w Then|strong="H2009"\w* \w Jonathan|strong="H3083"\w* said, “\w Behold|strong="H2009"\w*, \w we|strong="H3068"\w* will \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w to|strong="H1540"\w* \w the|strong="H5674"\w* men, \w and|strong="H5674"\w* \w we|strong="H3068"\w* will \w reveal|strong="H1540"\w* ourselves \w to|strong="H1540"\w* \w them|strong="H5674"\w*. +\v 9 If \w they|strong="H3808"\w* say \w this|strong="H3541"\w* \w to|strong="H5704"\w* \w us|strong="H8478"\w*, ‘\w Wait|strong="H1826"\w* \w until|strong="H5704"\w* \w we|strong="H3068"\w* \w come|strong="H5927"\w* \w to|strong="H5704"\w* \w you|strong="H5704"\w*!’ \w then|strong="H5975"\w* \w we|strong="H3068"\w* \w will|strong="H3808"\w* \w stand|strong="H5975"\w* \w still|strong="H5975"\w* \w in|strong="H5975"\w* \w our|strong="H8478"\w* \w place|strong="H8478"\w* \w and|strong="H5975"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5704"\w* \w them|strong="H5975"\w*. +\v 10 \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w they|strong="H3588"\w* say \w this|strong="H2088"\w*, ‘\w Come|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w us|strong="H5414"\w*!’ \w then|strong="H2088"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w delivered|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H5927"\w* \w our|strong="H3068"\w* \w hand|strong="H3027"\w*. \w This|strong="H2088"\w* \w shall|strong="H3068"\w* \w be|strong="H3027"\w* \w the|strong="H5921"\w* sign \w to|strong="H3068"\w* \w us|strong="H5414"\w*.” +\p +\v 11 \w Both|strong="H8147"\w* \w of|strong="H4480"\w* \w them|strong="H3318"\w* \w revealed|strong="H1540"\w* \w themselves|strong="H2244"\w* \w to|strong="H3318"\w* \w the|strong="H4480"\w* \w garrison|strong="H4673"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w Philistines|strong="H6430"\w*; \w and|strong="H8033"\w* \w the|strong="H4480"\w* \w Philistines|strong="H6430"\w* \w said|strong="H3318"\w*, “\w Behold|strong="H2009"\w*, \w the|strong="H4480"\w* \w Hebrews|strong="H5680"\w* \w are|strong="H6430"\w* \w coming|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w holes|strong="H2356"\w* \w where|strong="H8033"\w* \w they|strong="H8033"\w* \w had|strong="H6430"\w* \w hidden|strong="H2244"\w* \w themselves|strong="H2244"\w*!” +\v 12 \w The|strong="H3588"\w* \w men|strong="H3478"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w garrison|strong="H4675"\w* \w answered|strong="H6030"\w* \w Jonathan|strong="H3129"\w* \w and|strong="H3478"\w* \w his|strong="H5375"\w* \w armor|strong="H3627"\w* \w bearer|strong="H5375"\w*, \w and|strong="H3478"\w* \w said|strong="H1697"\w*, “\w Come|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w us|strong="H5414"\w*, \w and|strong="H3478"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w show|strong="H3045"\w* \w you|strong="H3588"\w* \w something|strong="H1697"\w*!” +\p \w Jonathan|strong="H3129"\w* \w said|strong="H1697"\w* \w to|strong="H3478"\w* \w his|strong="H5375"\w* \w armor|strong="H3627"\w* \w bearer|strong="H5375"\w*, “\w Come|strong="H5927"\w* \w up|strong="H5927"\w* \w after|strong="H3588"\w* \w me|strong="H5414"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w delivered|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H5927"\w* \w the|strong="H3588"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*.” +\v 13 \w Jonathan|strong="H3129"\w* \w climbed|strong="H5927"\w* \w up|strong="H5927"\w* \w on|strong="H5921"\w* \w his|strong="H5375"\w* \w hands|strong="H3027"\w* \w and|strong="H3027"\w* \w on|strong="H5921"\w* \w his|strong="H5375"\w* \w feet|strong="H7272"\w*, \w and|strong="H3027"\w* \w his|strong="H5375"\w* \w armor|strong="H3627"\w* \w bearer|strong="H5375"\w* \w after|strong="H5921"\w* \w him|strong="H6440"\w*, \w and|strong="H3027"\w* \w they|strong="H5921"\w* \w fell|strong="H5307"\w* \w before|strong="H6440"\w* \w Jonathan|strong="H3129"\w*; \w and|strong="H3027"\w* \w his|strong="H5375"\w* \w armor|strong="H3627"\w* \w bearer|strong="H5375"\w* \w killed|strong="H4191"\w* \w them|strong="H5921"\w* \w after|strong="H5921"\w* \w him|strong="H6440"\w*. +\v 14 \w That|strong="H3627"\w* \w first|strong="H7223"\w* \w slaughter|strong="H4347"\w*, \w which|strong="H7704"\w* \w Jonathan|strong="H3129"\w* \w and|strong="H6242"\w* \w his|strong="H5375"\w* \w armor|strong="H3627"\w* \w bearer|strong="H5375"\w* \w made|strong="H1961"\w*, \w was|strong="H1961"\w* \w about|strong="H1961"\w* \w twenty|strong="H6242"\w* men, within \w as|strong="H1961"\w* \w it|strong="H5375"\w* \w were|strong="H1961"\w* \w half|strong="H2677"\w* \w a|strong="H3068"\w* \w furrow|strong="H4618"\w*’s length \w in|strong="H1961"\w* \w an|strong="H1961"\w* \w acre|strong="H6776"\w* \w of|strong="H3627"\w* \w land|strong="H7704"\w*. +\p +\v 15 \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w trembling|strong="H2731"\w* \w in|strong="H5971"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w*, \w in|strong="H5971"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*, \w and|strong="H5971"\w* \w among|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*; \w the|strong="H3605"\w* \w garrison|strong="H4673"\w* \w and|strong="H5971"\w* \w the|strong="H3605"\w* \w raiders|strong="H7843"\w* \w also|strong="H1571"\w* \w trembled|strong="H2729"\w*; \w and|strong="H5971"\w* \w the|strong="H3605"\w* earth \w quaked|strong="H7264"\w*, \w so|strong="H1961"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w an|strong="H1961"\w* exceedingly great \w trembling|strong="H2731"\w*. +\v 16 \w The|strong="H7200"\w* \w watchmen|strong="H6822"\w* \w of|strong="H1995"\w* \w Saul|strong="H7586"\w* \w in|strong="H3212"\w* \w Gibeah|strong="H1390"\w* \w of|strong="H1995"\w* \w Benjamin|strong="H1144"\w* \w looked|strong="H7200"\w*; \w and|strong="H3212"\w* \w behold|strong="H2009"\w*, \w the|strong="H7200"\w* \w multitude|strong="H1995"\w* \w melted|strong="H4127"\w* \w away|strong="H3212"\w* \w and|strong="H3212"\w* scattered. +\v 17 \w Then|strong="H1980"\w* \w Saul|strong="H7586"\w* said \w to|strong="H1980"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w* \w who|strong="H4310"\w* \w were|strong="H5971"\w* \w with|strong="H5973"\w* \w him|strong="H7200"\w*, “\w Count|strong="H5375"\w* \w now|strong="H4994"\w*, \w and|strong="H1980"\w* \w see|strong="H7200"\w* \w who|strong="H4310"\w* \w is|strong="H4310"\w* \w missing|strong="H6485"\w* \w from|strong="H1980"\w* \w us|strong="H4994"\w*.” \w When|strong="H7200"\w* \w they|strong="H5971"\w* \w had|strong="H7586"\w* \w counted|strong="H6485"\w*, \w behold|strong="H2009"\w*, \w Jonathan|strong="H3129"\w* \w and|strong="H1980"\w* \w his|strong="H5375"\w* \w armor|strong="H3627"\w* \w bearer|strong="H5375"\w* \w were|strong="H5971"\w* \w not|strong="H7200"\w* \w there|strong="H2009"\w*. +\p +\v 18 \w Saul|strong="H7586"\w* said \w to|strong="H3478"\w* Ahijah, “\w Bring|strong="H5066"\w* God’s ark \w here|strong="H5066"\w*.” \w For|strong="H3588"\w* God’s ark \w was|strong="H1961"\w* \w with|strong="H3117"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w at|strong="H3478"\w* \w that|strong="H3588"\w* \w time|strong="H3117"\w*. +\v 19 \w While|strong="H5704"\w* \w Saul|strong="H7586"\w* \w talked|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H5704"\w* \w priest|strong="H3548"\w*, \w the|strong="H5704"\w* \w tumult|strong="H1995"\w* \w that|strong="H3548"\w* \w was|strong="H1961"\w* \w in|strong="H1980"\w* \w the|strong="H5704"\w* \w camp|strong="H4264"\w* \w of|strong="H3027"\w* \w the|strong="H5704"\w* \w Philistines|strong="H6430"\w* \w went|strong="H1980"\w* \w on|strong="H1980"\w* \w and|strong="H1980"\w* \w increased|strong="H7227"\w*; \w and|strong="H1980"\w* \w Saul|strong="H7586"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H5704"\w* \w priest|strong="H3548"\w*, “Withdraw \w your|strong="H1961"\w* \w hand|strong="H3027"\w*!” +\p +\v 20 \w Saul|strong="H7586"\w* \w and|strong="H1419"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w with|strong="H5971"\w* \w him|strong="H3605"\w* \w were|strong="H1961"\w* \w gathered|strong="H2199"\w* \w together|strong="H2199"\w*, \w and|strong="H1419"\w* \w came|strong="H1961"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w battle|strong="H4421"\w*; \w and|strong="H1419"\w* \w behold|strong="H2009"\w*, \w they|strong="H5704"\w* \w were|strong="H1961"\w* \w all|strong="H3605"\w* striking \w each|strong="H3605"\w* \w other|strong="H7453"\w* \w with|strong="H5971"\w* \w their|strong="H3605"\w* \w swords|strong="H2719"\w* \w in|strong="H4421"\w* \w very|strong="H3966"\w* \w great|strong="H1419"\w* \w confusion|strong="H4103"\w*. +\v 21 \w Now|strong="H1961"\w* \w the|strong="H5927"\w* \w Hebrews|strong="H5680"\w* \w who|strong="H3478"\w* \w were|strong="H3478"\w* \w with|strong="H5973"\w* \w the|strong="H5927"\w* \w Philistines|strong="H6430"\w* \w before|strong="H5973"\w* \w and|strong="H3478"\w* \w who|strong="H3478"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w with|strong="H5973"\w* \w them|strong="H1992"\w* \w into|strong="H5927"\w* \w the|strong="H5927"\w* \w camp|strong="H4264"\w* \w from|strong="H5927"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*, \w even|strong="H1571"\w* \w they|strong="H1992"\w* \w also|strong="H1571"\w* \w turned|strong="H3478"\w* \w to|strong="H3478"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w the|strong="H5927"\w* \w Israelites|strong="H3478"\w* \w who|strong="H3478"\w* \w were|strong="H3478"\w* \w with|strong="H5973"\w* \w Saul|strong="H7586"\w* \w and|strong="H3478"\w* \w Jonathan|strong="H3129"\w*. +\v 22 \w Likewise|strong="H1571"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H2022"\w* \w Israel|strong="H3478"\w* \w who|strong="H3605"\w* \w had|strong="H3478"\w* \w hidden|strong="H2244"\w* \w themselves|strong="H1992"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H2022"\w* Ephraim, \w when|strong="H3588"\w* \w they|strong="H1992"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w fled|strong="H5127"\w*, \w even|strong="H1571"\w* \w they|strong="H1992"\w* \w also|strong="H1571"\w* \w followed|strong="H6430"\w* \w hard|strong="H1692"\w* \w after|strong="H3588"\w* \w them|strong="H1992"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w battle|strong="H4421"\w*. +\v 23 \w So|strong="H5674"\w* \w Yahweh|strong="H3068"\w* \w saved|strong="H3467"\w* \w Israel|strong="H3478"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*; \w and|strong="H3478"\w* \w the|strong="H3068"\w* \w battle|strong="H4421"\w* \w passed|strong="H5674"\w* \w over|strong="H5674"\w* \w by|strong="H5674"\w* Beth Aven. +\p +\v 24 \w The|strong="H3605"\w* \w men|strong="H5971"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w distressed|strong="H5065"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w*; \w for|strong="H5704"\w* \w Saul|strong="H7586"\w* \w had|strong="H3478"\w* adjured \w the|strong="H3605"\w* \w people|strong="H5971"\w*, saying, “Cursed \w is|strong="H1931"\w* \w the|strong="H3605"\w* \w man|strong="H3605"\w* \w who|strong="H3605"\w* eats \w any|strong="H3605"\w* \w food|strong="H3899"\w* \w until|strong="H5704"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w evening|strong="H6153"\w*, \w and|strong="H3478"\w* \w I|strong="H3117"\w* am \w avenged|strong="H5358"\w* \w of|strong="H3117"\w* \w my|strong="H3605"\w* enemies.” \w So|strong="H3808"\w* \w none|strong="H3808"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w tasted|strong="H2938"\w* \w food|strong="H3899"\w*. +\p +\v 25 \w All|strong="H3605"\w* \w the|strong="H3605"\w* people \w came|strong="H1961"\w* \w into|strong="H5921"\w* \w the|strong="H3605"\w* \w forest|strong="H3293"\w*; \w and|strong="H6440"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w honey|strong="H1706"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w ground|strong="H7704"\w*. +\v 26 \w When|strong="H3588"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w had|strong="H3588"\w* \w come|strong="H5971"\w* \w to|strong="H3027"\w* \w the|strong="H3588"\w* \w forest|strong="H3293"\w*, \w behold|strong="H2009"\w*, \w honey|strong="H1706"\w* \w was|strong="H3027"\w* dripping, \w but|strong="H3588"\w* \w no|strong="H3372"\w* \w one|strong="H6310"\w* \w put|strong="H5381"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w* \w to|strong="H3027"\w* \w his|strong="H3027"\w* \w mouth|strong="H6310"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w feared|strong="H3372"\w* \w the|strong="H3588"\w* \w oath|strong="H7621"\w*. +\v 27 \w But|strong="H3808"\w* \w Jonathan|strong="H3129"\w* didn’t \w hear|strong="H8085"\w* \w when|strong="H7200"\w* \w his|strong="H7971"\w* father \w commanded|strong="H6310"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w* \w with|strong="H5971"\w* \w the|strong="H8085"\w* \w oath|strong="H7650"\w*. \w Therefore|strong="H7971"\w* \w he|strong="H3027"\w* \w put|strong="H7971"\w* \w out|strong="H7971"\w* \w the|strong="H8085"\w* \w end|strong="H7097"\w* \w of|strong="H3027"\w* \w the|strong="H8085"\w* \w rod|strong="H4294"\w* \w that|strong="H5971"\w* \w was|strong="H3027"\w* \w in|strong="H8085"\w* \w his|strong="H7971"\w* \w hand|strong="H3027"\w* \w and|strong="H7971"\w* \w dipped|strong="H2881"\w* \w it|strong="H7725"\w* \w in|strong="H8085"\w* \w the|strong="H8085"\w* \w honeycomb|strong="H3295"\w*, \w and|strong="H7971"\w* \w put|strong="H7971"\w* \w his|strong="H7971"\w* \w hand|strong="H3027"\w* \w to|strong="H7725"\w* \w his|strong="H7971"\w* \w mouth|strong="H6310"\w*; \w and|strong="H7971"\w* \w his|strong="H7971"\w* \w eyes|strong="H5869"\w* brightened. +\v 28 \w Then|strong="H6030"\w* one \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w people|strong="H5971"\w* \w answered|strong="H6030"\w*, \w and|strong="H6030"\w* \w said|strong="H6030"\w*, “\w Your|strong="H3117"\w* father directly commanded \w the|strong="H3117"\w* \w people|strong="H5971"\w* \w with|strong="H3117"\w* \w an|strong="H7650"\w* \w oath|strong="H7650"\w*, saying, ‘Cursed \w is|strong="H3117"\w* \w the|strong="H3117"\w* \w man|strong="H6030"\w* \w who|strong="H5971"\w* eats \w food|strong="H3899"\w* \w today|strong="H3117"\w*.’” \w So|strong="H7650"\w* \w the|strong="H3117"\w* \w people|strong="H5971"\w* \w were|strong="H5971"\w* \w faint|strong="H5774"\w*. +\p +\v 29 \w Then|strong="H2088"\w* \w Jonathan|strong="H3129"\w* said, “\w My|strong="H7200"\w* father \w has|strong="H3588"\w* \w troubled|strong="H5916"\w* \w the|strong="H7200"\w* land. \w Please|strong="H4994"\w* \w look|strong="H7200"\w* \w how|strong="H3588"\w* \w my|strong="H7200"\w* \w eyes|strong="H5869"\w* \w have|strong="H5869"\w* brightened \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w tasted|strong="H2938"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w of|strong="H5869"\w* \w this|strong="H2088"\w* \w honey|strong="H1706"\w*. +\v 30 \w How|strong="H3588"\w* \w much|strong="H7235"\w* \w more|strong="H7235"\w*, \w if|strong="H3588"\w* \w perhaps|strong="H3588"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w had|strong="H6430"\w* eaten freely \w today|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3588"\w* \w plunder|strong="H7998"\w* \w of|strong="H3117"\w* \w their|strong="H3588"\w* enemies \w which|strong="H5971"\w* \w they|strong="H3588"\w* \w found|strong="H4672"\w*? \w For|strong="H3588"\w* \w now|strong="H6258"\w* \w there|strong="H4672"\w* \w has|strong="H3117"\w* \w been|strong="H5971"\w* \w no|strong="H3808"\w* \w great|strong="H7235"\w* \w slaughter|strong="H4347"\w* \w among|strong="H4672"\w* \w the|strong="H3588"\w* \w Philistines|strong="H6430"\w*.” +\v 31 \w They|strong="H3117"\w* \w struck|strong="H5221"\w* \w the|strong="H5221"\w* \w Philistines|strong="H6430"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w* \w from|strong="H3117"\w* \w Michmash|strong="H4363"\w* \w to|strong="H3117"\w* Aijalon. \w The|strong="H5221"\w* \w people|strong="H5971"\w* \w were|strong="H5971"\w* \w very|strong="H3966"\w* \w faint|strong="H5774"\w*; +\v 32 \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* pounced \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w plunder|strong="H7998"\w*, \w and|strong="H1121"\w* \w took|strong="H3947"\w* \w sheep|strong="H6629"\w*, \w cattle|strong="H1241"\w*, \w and|strong="H1121"\w* \w calves|strong="H1121"\w*, \w and|strong="H1121"\w* \w killed|strong="H7819"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* ground; \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* ate \w them|strong="H5921"\w* \w with|strong="H6213"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w*. +\v 33 \w Then|strong="H2009"\w* \w they|strong="H3117"\w* \w told|strong="H5046"\w* \w Saul|strong="H7586"\w*, saying, “\w Behold|strong="H2009"\w*, \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w are|strong="H3117"\w* \w sinning|strong="H2398"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w in|strong="H5921"\w* \w that|strong="H5971"\w* \w they|strong="H3117"\w* eat meat \w with|strong="H3068"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w*.” +\p \w He|strong="H3117"\w* said, “\w You|strong="H5921"\w* \w have|strong="H3068"\w* dealt treacherously. \w Roll|strong="H1556"\w* \w a|strong="H3068"\w* \w large|strong="H1419"\w* stone \w to|strong="H3068"\w* \w me|strong="H5046"\w* \w today|strong="H3117"\w*!” +\v 34 \w Saul|strong="H7586"\w* said, “\w Disperse|strong="H6327"\w* \w yourselves|strong="H3027"\w* \w among|strong="H5971"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w and|strong="H3068"\w* \w tell|strong="H3605"\w* \w them|strong="H3027"\w*, ‘\w Every|strong="H3605"\w* \w man|strong="H3605"\w* \w bring|strong="H5066"\w* \w me|strong="H5066"\w* \w here|strong="H2088"\w* \w his|strong="H3605"\w* \w ox|strong="H7794"\w*, \w and|strong="H3068"\w* \w every|strong="H3605"\w* \w man|strong="H3605"\w* \w his|strong="H3605"\w* \w sheep|strong="H7716"\w*, \w and|strong="H3068"\w* \w kill|strong="H7819"\w* \w them|strong="H3027"\w* \w here|strong="H2088"\w*, \w and|strong="H3068"\w* eat; \w and|strong="H3068"\w* don’t \w sin|strong="H2398"\w* \w against|strong="H2398"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* eating meat \w with|strong="H3068"\w* \w the|strong="H3605"\w* \w blood|strong="H1818"\w*.’” \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w brought|strong="H5066"\w* \w every|strong="H3605"\w* \w man|strong="H3605"\w* \w his|strong="H3605"\w* \w ox|strong="H7794"\w* \w with|strong="H3068"\w* \w him|strong="H3027"\w* \w that|strong="H5971"\w* \w night|strong="H3915"\w*, \w and|strong="H3068"\w* \w killed|strong="H7819"\w* \w them|strong="H3027"\w* \w there|strong="H8033"\w*. +\p +\v 35 \w Saul|strong="H7586"\w* \w built|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w This|strong="H3068"\w* \w was|strong="H3068"\w* \w the|strong="H3068"\w* \w first|strong="H2490"\w* \w altar|strong="H4196"\w* \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w built|strong="H1129"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 36 \w Saul|strong="H7586"\w* said, “\w Let|strong="H3381"\w*’s \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w after|strong="H1242"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w by|strong="H1242"\w* \w night|strong="H3915"\w*, \w and|strong="H3548"\w* \w take|strong="H6213"\w* plunder \w among|strong="H3808"\w* \w them|strong="H6213"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w* light. \w Let|strong="H3381"\w*’s \w not|strong="H3808"\w* \w leave|strong="H7604"\w* \w a|strong="H3068"\w* \w man|strong="H2896"\w* \w of|strong="H5869"\w* \w them|strong="H6213"\w*.” +\p \w They|strong="H3808"\w* said, “\w Do|strong="H6213"\w* \w whatever|strong="H3605"\w* \w seems|strong="H3605"\w* \w good|strong="H2896"\w* \w to|strong="H5704"\w* \w you|strong="H3605"\w*.” +\p \w Then|strong="H6213"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w* said, “\w Let|strong="H3381"\w*’s \w draw|strong="H7126"\w* \w near|strong="H7126"\w* \w here|strong="H1988"\w* \w to|strong="H5704"\w* \w God|strong="H3808"\w*.” +\p +\v 37 \w Saul|strong="H7586"\w* \w asked|strong="H7592"\w* \w counsel|strong="H7592"\w* \w of|strong="H3117"\w* \w God|strong="H5414"\w*: “\w Shall|strong="H3478"\w* \w I|strong="H3117"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w after|strong="H3117"\w* \w the|strong="H5414"\w* \w Philistines|strong="H6430"\w*? \w Will|strong="H3478"\w* \w you|strong="H5414"\w* \w deliver|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3381"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w*?” \w But|strong="H3808"\w* \w he|strong="H1931"\w* didn’t \w answer|strong="H6030"\w* \w him|strong="H5414"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*. +\v 38 \w Saul|strong="H7586"\w* said, “\w Draw|strong="H5066"\w* \w near|strong="H5066"\w* \w here|strong="H1988"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* \w chiefs|strong="H6438"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w and|strong="H3117"\w* \w know|strong="H3045"\w* \w and|strong="H3117"\w* \w see|strong="H7200"\w* \w in|strong="H3117"\w* \w whom|strong="H5971"\w* \w this|strong="H2063"\w* \w sin|strong="H2403"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w today|strong="H3117"\w*. +\v 39 \w For|strong="H3588"\w* \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*, \w who|strong="H3605"\w* \w saves|strong="H3467"\w* \w Israel|strong="H3478"\w*, \w though|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H3068"\w* \w in|strong="H3478"\w* \w Jonathan|strong="H3129"\w* \w my|strong="H3605"\w* \w son|strong="H1121"\w*, \w he|strong="H3588"\w* \w shall|strong="H3068"\w* \w surely|strong="H4191"\w* \w die|strong="H4191"\w*.” \w But|strong="H3588"\w* \w there|strong="H3426"\w* \w was|strong="H3068"\w* \w not|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w among|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w answered|strong="H6030"\w* \w him|strong="H4191"\w*. +\v 40 \w Then|strong="H1961"\w* \w he|strong="H6213"\w* said \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, “\w You|strong="H3605"\w* \w be|strong="H1961"\w* \w on|strong="H1961"\w* \w one|strong="H3605"\w* \w side|strong="H5676"\w*, \w and|strong="H1121"\w* \w I|strong="H1121"\w* \w and|strong="H1121"\w* \w Jonathan|strong="H3129"\w* \w my|strong="H3605"\w* \w son|strong="H1121"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w on|strong="H1961"\w* \w the|strong="H3605"\w* \w other|strong="H5676"\w* \w side|strong="H5676"\w*.” +\p \w The|strong="H3605"\w* \w people|strong="H5971"\w* said \w to|strong="H3478"\w* \w Saul|strong="H7586"\w*, “\w Do|strong="H6213"\w* \w what|strong="H2896"\w* \w seems|strong="H3605"\w* \w good|strong="H2896"\w* \w to|strong="H3478"\w* \w you|strong="H3605"\w*.” +\p +\v 41 \w Therefore|strong="H3068"\w* \w Saul|strong="H7586"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, “Show \w the|strong="H3068"\w* \w right|strong="H3478"\w*.” +\p \w Jonathan|strong="H3129"\w* \w and|strong="H3478"\w* \w Saul|strong="H7586"\w* \w were|strong="H3478"\w* chosen, \w but|strong="H5971"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w* \w escaped|strong="H3318"\w*. +\p +\v 42 \w Saul|strong="H7586"\w* said, “\w Cast|strong="H5307"\w* lots between \w me|strong="H3920"\w* \w and|strong="H1121"\w* \w Jonathan|strong="H3129"\w* \w my|strong="H7586"\w* \w son|strong="H1121"\w*.” +\p \w Jonathan|strong="H3129"\w* \w was|strong="H7586"\w* selected. +\p +\v 43 \w Then|strong="H6213"\w* \w Saul|strong="H7586"\w* said \w to|strong="H4191"\w* \w Jonathan|strong="H3129"\w*, “\w Tell|strong="H5046"\w* \w me|strong="H5046"\w* \w what|strong="H4100"\w* \w you|strong="H6213"\w* \w have|strong="H3027"\w* \w done|strong="H6213"\w*!” +\p \w Jonathan|strong="H3129"\w* \w told|strong="H5046"\w* \w him|strong="H5046"\w*, \w and|strong="H3027"\w* said, “\w I|strong="H2005"\w* \w certainly|strong="H6213"\w* \w did|strong="H6213"\w* \w taste|strong="H2938"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w honey|strong="H1706"\w* \w with|strong="H6213"\w* \w the|strong="H6213"\w* \w end|strong="H7097"\w* \w of|strong="H3027"\w* \w the|strong="H6213"\w* \w rod|strong="H4294"\w* \w that|strong="H7586"\w* \w was|strong="H7586"\w* \w in|strong="H6213"\w* \w my|strong="H6213"\w* \w hand|strong="H3027"\w*; \w and|strong="H3027"\w* \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w must|strong="H4191"\w* \w die|strong="H4191"\w*.” +\p +\v 44 \w Saul|strong="H7586"\w* said, “God \w do|strong="H6213"\w* \w so|strong="H6213"\w* \w and|strong="H7586"\w* \w more|strong="H3254"\w* \w also|strong="H3541"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H6213"\w* \w surely|strong="H4191"\w* \w die|strong="H4191"\w*, \w Jonathan|strong="H3129"\w*.” +\p +\v 45 \w The|strong="H3588"\w* \w people|strong="H5971"\w* said \w to|strong="H3478"\w* \w Saul|strong="H7586"\w*, “\w Shall|strong="H3068"\w* \w Jonathan|strong="H3129"\w* \w die|strong="H4191"\w*, \w who|strong="H5971"\w* \w has|strong="H3068"\w* \w worked|strong="H6213"\w* \w this|strong="H2088"\w* \w great|strong="H1419"\w* \w salvation|strong="H3444"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*? \w Far|strong="H2486"\w* \w from|strong="H3478"\w* \w it|strong="H3588"\w*! \w As|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*, \w there|strong="H2088"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w one|strong="H2088"\w* \w hair|strong="H8185"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w head|strong="H7218"\w* \w fall|strong="H5307"\w* \w to|strong="H3478"\w* \w the|strong="H3588"\w* ground, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w worked|strong="H6213"\w* \w with|strong="H5973"\w* \w God|strong="H3068"\w* \w today|strong="H3117"\w*!” \w So|strong="H6213"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w rescued|strong="H6299"\w* \w Jonathan|strong="H3129"\w*, \w so|strong="H6213"\w* \w he|strong="H3588"\w* didn’t \w die|strong="H4191"\w*. +\v 46 \w Then|strong="H1980"\w* \w Saul|strong="H7586"\w* \w went|strong="H1980"\w* \w up|strong="H5927"\w* \w from|strong="H5927"\w* \w following|strong="H1980"\w* \w the|strong="H5927"\w* \w Philistines|strong="H6430"\w*; \w and|strong="H1980"\w* \w the|strong="H5927"\w* \w Philistines|strong="H6430"\w* \w went|strong="H1980"\w* \w to|strong="H1980"\w* \w their|strong="H5927"\w* own \w place|strong="H4725"\w*. +\p +\v 47 \w Now|strong="H3478"\w* \w when|strong="H1121"\w* \w Saul|strong="H7586"\w* \w had|strong="H3478"\w* \w taken|strong="H3920"\w* \w the|strong="H3605"\w* \w kingdom|strong="H4410"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*, \w he|strong="H3605"\w* \w fought|strong="H3898"\w* \w against|strong="H5921"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* enemies \w on|strong="H5921"\w* \w every|strong="H3605"\w* \w side|strong="H5439"\w*: \w against|strong="H5921"\w* \w Moab|strong="H4124"\w*, \w and|strong="H1121"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, \w and|strong="H1121"\w* \w against|strong="H5921"\w* Edom, \w and|strong="H1121"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H1121"\w* \w Zobah|strong="H6678"\w*, \w and|strong="H1121"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*. \w Wherever|strong="H3605"\w* \w he|strong="H3605"\w* \w turned|strong="H6437"\w* \w himself|strong="H6437"\w*, \w he|strong="H3605"\w* defeated \w them|strong="H5921"\w*. +\v 48 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w valiantly|strong="H2428"\w* \w and|strong="H3478"\w* \w struck|strong="H5221"\w* \w the|strong="H5221"\w* \w Amalekites|strong="H6002"\w*, \w and|strong="H3478"\w* \w delivered|strong="H5337"\w* \w Israel|strong="H3478"\w* \w out|strong="H6213"\w* \w of|strong="H3027"\w* \w the|strong="H5221"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w those|strong="H6213"\w* \w who|strong="H3478"\w* \w plundered|strong="H8154"\w* \w them|strong="H5221"\w*. +\v 49 \w Now|strong="H1961"\w* \w the|strong="H1961"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w* \w were|strong="H1961"\w* \w Jonathan|strong="H3129"\w*, \w Ishvi|strong="H3440"\w*, \w and|strong="H1121"\w* Malchishua; \w and|strong="H1121"\w* \w the|strong="H1961"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w his|strong="H1961"\w* \w two|strong="H8147"\w* \w daughters|strong="H1323"\w* \w were|strong="H1961"\w* \w these|strong="H8147"\w*: \w the|strong="H1961"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w firstborn|strong="H1067"\w* \w Merab|strong="H4764"\w*, \w and|strong="H1121"\w* \w the|strong="H1961"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w younger|strong="H6996"\w* \w Michal|strong="H4324"\w*. +\v 50 \w The|strong="H8034"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w*’s wife \w was|strong="H8034"\w* Ahinoam \w the|strong="H8034"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* Ahimaaz. \w The|strong="H8034"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H8034"\w* \w captain|strong="H8269"\w* \w of|strong="H1121"\w* \w his|strong="H7586"\w* \w army|strong="H6635"\w* \w was|strong="H8034"\w* Abner \w the|strong="H8034"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ner|strong="H5369"\w*, \w Saul|strong="H7586"\w*’s \w uncle|strong="H1730"\w*. +\v 51 \w Kish|strong="H7027"\w* \w was|strong="H7586"\w* \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w*, \w and|strong="H1121"\w* \w Ner|strong="H5369"\w* \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Abner \w was|strong="H7586"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Abiel. +\p +\v 52 \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w severe|strong="H2389"\w* \w war|strong="H4421"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w*; \w and|strong="H1121"\w* \w when|strong="H1961"\w* \w Saul|strong="H7586"\w* \w saw|strong="H7200"\w* \w any|strong="H3605"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w* \w or|strong="H3117"\w* \w any|strong="H3605"\w* \w valiant|strong="H2428"\w* \w man|strong="H1368"\w*, \w he|strong="H3117"\w* \w took|strong="H1961"\w* \w him|strong="H5921"\w* \w into|strong="H5921"\w* \w his|strong="H3605"\w* service. +\c 15 +\p +\v 1 \w Samuel|strong="H8050"\w* \w said|strong="H1697"\w* \w to|strong="H3478"\w* \w Saul|strong="H7586"\w*, “\w Yahweh|strong="H3068"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w* \w to|strong="H3478"\w* \w anoint|strong="H4886"\w* \w you|strong="H7971"\w* \w to|strong="H3478"\w* \w be|strong="H1697"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*, \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*. \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* \w listen|strong="H8085"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w voice|strong="H6963"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w words|strong="H1697"\w*. +\v 2 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*, ‘\w I|strong="H3541"\w* \w remember|strong="H6485"\w* \w what|strong="H6213"\w* \w Amalek|strong="H6002"\w* \w did|strong="H6213"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w how|strong="H1870"\w* \w he|strong="H6213"\w* \w set|strong="H7760"\w* \w himself|strong="H6213"\w* \w against|strong="H5927"\w* \w him|strong="H6213"\w* \w on|strong="H1870"\w* \w the|strong="H3541"\w* \w way|strong="H1870"\w* \w when|strong="H6213"\w* \w he|strong="H6213"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H6213"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*. +\v 3 \w Now|strong="H6258"\w* \w go|strong="H3212"\w* \w and|strong="H3212"\w* \w strike|strong="H5221"\w* \w Amalek|strong="H6002"\w*, \w and|strong="H3212"\w* \w utterly|strong="H2763"\w* \w destroy|strong="H2763"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w they|strong="H3808"\w* \w have|strong="H2550"\w*, \w and|strong="H3212"\w* don’t \w spare|strong="H2550"\w* \w them|strong="H5921"\w*; \w but|strong="H3808"\w* \w kill|strong="H4191"\w* \w both|strong="H3605"\w* \w man|strong="H4191"\w* \w and|strong="H3212"\w* woman, \w infant|strong="H3243"\w* \w and|strong="H3212"\w* \w nursing|strong="H3243"\w* baby, \w ox|strong="H7794"\w* \w and|strong="H3212"\w* \w sheep|strong="H7716"\w*, \w camel|strong="H1581"\w* \w and|strong="H3212"\w* \w donkey|strong="H2543"\w*.’” +\p +\v 4 \w Saul|strong="H7586"\w* \w summoned|strong="H8085"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w*, \w and|strong="H3967"\w* \w counted|strong="H6485"\w* \w them|strong="H6485"\w* \w in|strong="H8085"\w* \w Telaim|strong="H2923"\w*, \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* thousand \w footmen|strong="H7273"\w* \w and|strong="H3967"\w* \w ten|strong="H6235"\w* thousand \w men|strong="H5971"\w* \w of|strong="H5971"\w* \w Judah|strong="H3063"\w*. +\v 5 \w Saul|strong="H7586"\w* \w came|strong="H7586"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w city|strong="H5892"\w* \w of|strong="H5892"\w* \w Amalek|strong="H6002"\w*, \w and|strong="H5892"\w* set \w an|strong="H5892"\w* ambush \w in|strong="H5892"\w* \w the|strong="H5704"\w* \w valley|strong="H5158"\w*. +\v 6 \w Saul|strong="H7586"\w* said \w to|strong="H3381"\w* \w the|strong="H3605"\w* \w Kenites|strong="H7017"\w*, “\w Go|strong="H3212"\w*, \w depart|strong="H5493"\w*, \w go|strong="H3212"\w* \w down|strong="H3381"\w* \w from|strong="H5493"\w* \w among|strong="H8432"\w* \w the|strong="H3605"\w* \w Amalekites|strong="H6002"\w*, \w lest|strong="H6435"\w* \w I|strong="H4714"\w* \w destroy|strong="H6213"\w* \w you|strong="H3605"\w* \w with|strong="H5973"\w* \w them|strong="H6213"\w*; \w for|strong="H6213"\w* \w you|strong="H3605"\w* \w showed|strong="H6213"\w* \w kindness|strong="H2617"\w* \w to|strong="H3381"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w when|strong="H6213"\w* \w they|strong="H6213"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H6213"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*.” \w So|strong="H6213"\w* \w the|strong="H3605"\w* \w Kenites|strong="H7017"\w* \w departed|strong="H3212"\w* \w from|strong="H5493"\w* \w among|strong="H8432"\w* \w the|strong="H3605"\w* \w Amalekites|strong="H6002"\w*. +\p +\v 7 \w Saul|strong="H7586"\w* \w struck|strong="H5221"\w* \w the|strong="H6440"\w* \w Amalekites|strong="H6002"\w*, \w from|strong="H6440"\w* \w Havilah|strong="H2341"\w* \w as|strong="H6440"\w* \w you|strong="H6440"\w* go \w to|strong="H5921"\w* \w Shur|strong="H7793"\w*, which \w is|strong="H6440"\w* \w before|strong="H6440"\w* \w Egypt|strong="H4714"\w*. +\v 8 \w He|strong="H3605"\w* \w took|strong="H8610"\w* Agag \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w Amalekites|strong="H6002"\w* \w alive|strong="H2416"\w*, \w and|strong="H4428"\w* \w utterly|strong="H2763"\w* \w destroyed|strong="H2763"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w with|strong="H5971"\w* \w the|strong="H3605"\w* \w edge|strong="H6310"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*. +\v 9 \w But|strong="H3808"\w* \w Saul|strong="H7586"\w* \w and|strong="H5971"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w spared|strong="H2550"\w* Agag \w and|strong="H5971"\w* \w the|strong="H3605"\w* \w best|strong="H4315"\w* \w of|strong="H5971"\w* \w the|strong="H3605"\w* \w sheep|strong="H6629"\w*, \w of|strong="H5971"\w* \w the|strong="H3605"\w* \w cattle|strong="H1241"\w*, \w of|strong="H5971"\w* \w the|strong="H3605"\w* fat \w calves|strong="H1241"\w*, \w of|strong="H5971"\w* \w the|strong="H3605"\w* \w lambs|strong="H3733"\w*, \w and|strong="H5971"\w* \w all|strong="H3605"\w* \w that|strong="H5971"\w* \w was|strong="H7586"\w* \w good|strong="H2896"\w*, \w and|strong="H5971"\w* \w were|strong="H5971"\w* \w not|strong="H3808"\w* willing \w to|strong="H5921"\w* \w utterly|strong="H2763"\w* \w destroy|strong="H2763"\w* \w them|strong="H5921"\w*; \w but|strong="H3808"\w* \w everything|strong="H3605"\w* \w that|strong="H5971"\w* \w was|strong="H7586"\w* \w vile|strong="H5240"\w* \w and|strong="H5971"\w* \w refuse|strong="H3808"\w*, \w that|strong="H5971"\w* \w they|strong="H3808"\w* \w destroyed|strong="H2763"\w* \w utterly|strong="H2763"\w*. +\p +\v 10 \w Then|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Samuel|strong="H8050"\w*, \w saying|strong="H1697"\w*, +\v 11 “\w It|strong="H3588"\w* grieves \w me|strong="H7725"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w set|strong="H6965"\w* \w up|strong="H6965"\w* \w Saul|strong="H7586"\w* \w to|strong="H7725"\w* \w be|strong="H3808"\w* \w king|strong="H4428"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w turned|strong="H7725"\w* \w back|strong="H7725"\w* \w from|strong="H7725"\w* following \w me|strong="H7725"\w*, \w and|strong="H6965"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w performed|strong="H6965"\w* \w my|strong="H3605"\w* \w commandments|strong="H1697"\w*.” \w Samuel|strong="H8050"\w* \w was|strong="H3068"\w* \w angry|strong="H2734"\w*; \w and|strong="H6965"\w* \w he|strong="H3588"\w* \w cried|strong="H2199"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w* \w all|strong="H3605"\w* \w night|strong="H3915"\w*. +\p +\v 12 \w Samuel|strong="H8050"\w* \w rose|strong="H7925"\w* \w early|strong="H7925"\w* \w to|strong="H3381"\w* \w meet|strong="H7122"\w* \w Saul|strong="H7586"\w* \w in|strong="H3027"\w* \w the|strong="H5674"\w* \w morning|strong="H1242"\w*; \w and|strong="H3027"\w* \w Samuel|strong="H8050"\w* \w was|strong="H7586"\w* \w told|strong="H5046"\w*, saying, “\w Saul|strong="H7586"\w* \w came|strong="H3381"\w* \w to|strong="H3381"\w* \w Carmel|strong="H3760"\w*, \w and|strong="H3027"\w* \w behold|strong="H2009"\w*, \w he|strong="H3027"\w* \w set|strong="H5324"\w* \w up|strong="H5324"\w* \w a|strong="H3068"\w* \w monument|strong="H3027"\w* \w for|strong="H3027"\w* \w himself|strong="H3027"\w*, \w turned|strong="H5437"\w*, \w passed|strong="H5674"\w* \w on|strong="H5674"\w*, \w and|strong="H3027"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w Gilgal|strong="H1537"\w*.” +\p +\v 13 \w Samuel|strong="H8050"\w* \w came|strong="H3068"\w* \w to|strong="H3068"\w* \w Saul|strong="H7586"\w*; \w and|strong="H6965"\w* \w Saul|strong="H7586"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w him|strong="H1288"\w*, “\w You|strong="H1288"\w* \w are|strong="H1697"\w* \w blessed|strong="H1288"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w*! \w I|strong="H1697"\w* \w have|strong="H3068"\w* \w performed|strong="H6965"\w* \w the|strong="H3068"\w* \w commandment|strong="H1697"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 14 \w Samuel|strong="H8050"\w* \w said|strong="H8085"\w*, “\w Then|strong="H2088"\w* \w what|strong="H4100"\w* \w does|strong="H4100"\w* \w this|strong="H2088"\w* \w bleating|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w sheep|strong="H6629"\w* \w in|strong="H8085"\w* \w my|strong="H8085"\w* ears \w and|strong="H6963"\w* \w the|strong="H8085"\w* \w lowing|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w cattle|strong="H1241"\w* \w which|strong="H4100"\w* \w I|strong="H2088"\w* \w hear|strong="H8085"\w* mean?” +\p +\v 15 \w Saul|strong="H7586"\w* said, “\w They|strong="H3068"\w* \w have|strong="H3068"\w* \w brought|strong="H3068"\w* \w them|strong="H5921"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w Amalekites|strong="H6003"\w*; \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w spared|strong="H2550"\w* \w the|strong="H5921"\w* \w best|strong="H4315"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w sheep|strong="H6629"\w* \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w cattle|strong="H1241"\w*, \w to|strong="H3068"\w* \w sacrifice|strong="H2076"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \w We|strong="H2763"\w* \w have|strong="H3068"\w* \w utterly|strong="H2763"\w* \w destroyed|strong="H2763"\w* \w the|strong="H5921"\w* \w rest|strong="H3498"\w*.” +\p +\v 16 \w Then|strong="H1696"\w* \w Samuel|strong="H8050"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Saul|strong="H7586"\w*, “\w Stay|strong="H7503"\w*, \w and|strong="H3068"\w* \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w tell|strong="H5046"\w* \w you|strong="H5046"\w* \w what|strong="H1696"\w* \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H5046"\w* last \w night|strong="H3915"\w*.” +\p \w He|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5046"\w*, “\w Say|strong="H1696"\w* \w on|strong="H3068"\w*.” +\p +\v 17 \w Samuel|strong="H8050"\w* said, “Though \w you|strong="H5921"\w* \w were|strong="H3478"\w* \w little|strong="H6996"\w* \w in|strong="H5921"\w* \w your|strong="H3068"\w* \w own|strong="H5869"\w* \w sight|strong="H5869"\w*, weren’t \w you|strong="H5921"\w* \w made|strong="H3478"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w tribes|strong="H7626"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*? \w Yahweh|strong="H3068"\w* \w anointed|strong="H4886"\w* \w you|strong="H5921"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*; +\v 18 \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w sent|strong="H7971"\w* \w you|strong="H7971"\w* \w on|strong="H1870"\w* \w a|strong="H3068"\w* \w journey|strong="H1870"\w*, \w and|strong="H3068"\w* said, ‘\w Go|strong="H3212"\w*, \w and|strong="H3068"\w* \w utterly|strong="H2763"\w* \w destroy|strong="H2763"\w* \w the|strong="H3068"\w* \w sinners|strong="H2400"\w* \w the|strong="H3068"\w* \w Amalekites|strong="H6002"\w*, \w and|strong="H3068"\w* \w fight|strong="H3898"\w* \w against|strong="H3898"\w* \w them|strong="H7971"\w* \w until|strong="H5704"\w* \w they|strong="H3068"\w* \w are|strong="H3068"\w* \w consumed|strong="H3615"\w*.’ +\v 19 \w Why|strong="H4100"\w* \w then|strong="H6213"\w* didn’t \w you|strong="H6213"\w* \w obey|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w*, \w but|strong="H3808"\w* took \w the|strong="H8085"\w* \w plunder|strong="H7998"\w*, \w and|strong="H3068"\w* \w did|strong="H6213"\w* \w that|strong="H8085"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*?” +\p +\v 20 \w Saul|strong="H7586"\w* \w said|strong="H8085"\w* \w to|strong="H3212"\w* \w Samuel|strong="H8050"\w*, “\w But|strong="H8085"\w* \w I|strong="H8085"\w* \w have|strong="H3068"\w* \w obeyed|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w gone|strong="H3212"\w* \w the|strong="H8085"\w* \w way|strong="H1870"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w brought|strong="H3212"\w* Agag \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Amalek|strong="H6002"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w utterly|strong="H2763"\w* \w destroyed|strong="H2763"\w* \w the|strong="H8085"\w* \w Amalekites|strong="H6002"\w*. +\v 21 \w But|strong="H3947"\w* \w the|strong="H3947"\w* \w people|strong="H5971"\w* \w took|strong="H3947"\w* \w of|strong="H3068"\w* \w the|strong="H3947"\w* \w plunder|strong="H7998"\w*, \w sheep|strong="H6629"\w* \w and|strong="H3068"\w* \w cattle|strong="H1241"\w*, \w the|strong="H3947"\w* best \w of|strong="H3068"\w* \w the|strong="H3947"\w* \w devoted|strong="H2764"\w* \w things|strong="H2764"\w*, \w to|strong="H3068"\w* \w sacrifice|strong="H2076"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w in|strong="H3068"\w* \w Gilgal|strong="H1537"\w*.” +\p +\v 22 \w Samuel|strong="H8050"\w* \w said|strong="H8085"\w*, “\w Has|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w as|strong="H3068"\w* \w great|strong="H2896"\w* \w delight|strong="H2656"\w* \w in|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w and|strong="H3068"\w* \w sacrifices|strong="H2077"\w*, \w as|strong="H3068"\w* \w in|strong="H3068"\w* \w obeying|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w*? \w Behold|strong="H2009"\w*, \w to|strong="H3068"\w* \w obey|strong="H8085"\w* \w is|strong="H3068"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w sacrifice|strong="H2077"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w listen|strong="H8085"\w* \w than|strong="H2896"\w* \w the|strong="H8085"\w* \w fat|strong="H2459"\w* \w of|strong="H3068"\w* rams. +\v 23 \w For|strong="H3588"\w* \w rebellion|strong="H4805"\w* \w is|strong="H3068"\w* \w as|strong="H1697"\w* \w the|strong="H3588"\w* \w sin|strong="H2403"\w* \w of|strong="H4428"\w* \w witchcraft|strong="H7081"\w*, \w and|strong="H3068"\w* \w stubbornness|strong="H6484"\w* \w is|strong="H3068"\w* \w as|strong="H1697"\w* \w idolatry|strong="H8655"\w* \w and|strong="H3068"\w* \w teraphim|strong="H8655"\w*.\f + \fr 15:23 \ft teraphim were household idols that may have been associated with inheritance rights to the household property.\f* \w Because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w rejected|strong="H3988"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w also|strong="H3068"\w* \w rejected|strong="H3988"\w* \w you|strong="H3588"\w* \w from|strong="H3068"\w* \w being|strong="H3068"\w* \w king|strong="H4428"\w*.” +\p +\v 24 \w Saul|strong="H7586"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w Samuel|strong="H8050"\w*, “\w I|strong="H3588"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w transgressed|strong="H5674"\w* \w the|strong="H8085"\w* \w commandment|strong="H6310"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w words|strong="H1697"\w*, \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w feared|strong="H3372"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w* \w and|strong="H3068"\w* \w obeyed|strong="H8085"\w* \w their|strong="H3068"\w* \w voice|strong="H6963"\w*. +\v 25 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w please|strong="H4994"\w* \w pardon|strong="H5375"\w* \w my|strong="H3068"\w* \w sin|strong="H2403"\w*, \w and|strong="H3068"\w* \w turn|strong="H7725"\w* \w again|strong="H7725"\w* \w with|strong="H5973"\w* \w me|strong="H4994"\w*, \w that|strong="H3068"\w* \w I|strong="H6258"\w* \w may|strong="H4994"\w* \w worship|strong="H7812"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 26 \w Samuel|strong="H8050"\w* \w said|strong="H1697"\w* \w to|strong="H7725"\w* \w Saul|strong="H7586"\w*, “\w I|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w return|strong="H7725"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w rejected|strong="H3988"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w and|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w rejected|strong="H3988"\w* \w you|strong="H3588"\w* \w from|strong="H7725"\w* \w being|strong="H1961"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*.” +\v 27 \w As|strong="H2388"\w* \w Samuel|strong="H8050"\w* \w turned|strong="H5437"\w* \w around|strong="H5437"\w* \w to|strong="H3212"\w* \w go|strong="H3212"\w* \w away|strong="H3212"\w*, \w Saul|strong="H2388"\w* \w grabbed|strong="H2388"\w* \w the|strong="H2388"\w* \w skirt|strong="H3671"\w* \w of|strong="H3671"\w* \w his|strong="H7167"\w* \w robe|strong="H4598"\w*, \w and|strong="H3212"\w* \w it|strong="H5437"\w* \w tore|strong="H7167"\w*. +\v 28 \w Samuel|strong="H8050"\w* said \w to|strong="H3478"\w* \w him|strong="H5414"\w*, “\w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w torn|strong="H7167"\w* \w the|strong="H5921"\w* \w kingdom|strong="H4468"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w from|strong="H4480"\w* \w you|strong="H5414"\w* \w today|strong="H3117"\w*, \w and|strong="H3478"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3478"\w* \w a|strong="H3068"\w* \w neighbor|strong="H7453"\w* \w of|strong="H3068"\w* \w yours|strong="H5414"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w better|strong="H2896"\w* \w than|strong="H4480"\w* \w you|strong="H5414"\w*. +\v 29 \w Also|strong="H1571"\w* \w the|strong="H3588"\w* \w Strength|strong="H5331"\w* \w of|strong="H3808"\w* \w Israel|strong="H3478"\w* \w will|strong="H3478"\w* \w not|strong="H3808"\w* \w lie|strong="H8266"\w* \w nor|strong="H3808"\w* \w repent|strong="H5162"\w*; \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* man, \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w should|strong="H3588"\w* \w repent|strong="H5162"\w*.” +\p +\v 30 \w Then|strong="H6258"\w* \w he|strong="H3068"\w* said, “\w I|strong="H6258"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w*; \w yet|strong="H3068"\w* \w please|strong="H4994"\w* \w honor|strong="H3513"\w* \w me|strong="H4994"\w* \w now|strong="H6258"\w* \w before|strong="H5048"\w* \w the|strong="H3068"\w* \w elders|strong="H2205"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w and|strong="H3478"\w* \w before|strong="H5048"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w come|strong="H7725"\w* \w back|strong="H7725"\w* \w with|strong="H5973"\w* \w me|strong="H4994"\w*, \w that|strong="H5971"\w* \w I|strong="H6258"\w* \w may|strong="H4994"\w* \w worship|strong="H7812"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*.” +\p +\v 31 \w So|strong="H7725"\w* \w Samuel|strong="H8050"\w* \w went|strong="H3068"\w* \w back|strong="H7725"\w* \w with|strong="H3068"\w* \w Saul|strong="H7586"\w*; \w and|strong="H3068"\w* \w Saul|strong="H7586"\w* \w worshiped|strong="H7812"\w* \w Yahweh|strong="H3068"\w*. +\v 32 \w Then|strong="H4428"\w* \w Samuel|strong="H8050"\w* said, “\w Bring|strong="H5066"\w* Agag \w the|strong="H5493"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H5493"\w* \w Amalekites|strong="H6002"\w* \w here|strong="H5066"\w* \w to|strong="H3212"\w* \w me|strong="H5493"\w*!” +\p Agag \w came|strong="H5066"\w* \w to|strong="H3212"\w* \w him|strong="H4428"\w* cheerfully. Agag said, “Surely \w the|strong="H5493"\w* \w bitterness|strong="H4751"\w* \w of|strong="H4428"\w* \w death|strong="H4194"\w* \w is|strong="H4428"\w* \w past|strong="H5493"\w*.” +\p +\v 33 \w Samuel|strong="H8050"\w* \w said|strong="H3651"\w*, “\w As|strong="H3651"\w* \w your|strong="H3068"\w* \w sword|strong="H2719"\w* \w has|strong="H3068"\w* \w made|strong="H3068"\w* women \w childless|strong="H7921"\w*, \w so|strong="H3651"\w* \w your|strong="H3068"\w* mother \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w childless|strong="H7921"\w* \w among|strong="H2719"\w* women!” \w Then|strong="H3651"\w* \w Samuel|strong="H8050"\w* cut Agag \w in|strong="H3068"\w* \w pieces|strong="H8158"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w Gilgal|strong="H1537"\w*. +\p +\v 34 \w Then|strong="H5927"\w* \w Samuel|strong="H8050"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Ramah|strong="H7414"\w*; \w and|strong="H1004"\w* \w Saul|strong="H7586"\w* \w went|strong="H3212"\w* \w up|strong="H5927"\w* \w to|strong="H3212"\w* \w his|strong="H7586"\w* \w house|strong="H1004"\w* \w to|strong="H3212"\w* \w Gibeah|strong="H1390"\w* \w of|strong="H1004"\w* \w Saul|strong="H7586"\w*. +\v 35 \w Samuel|strong="H8050"\w* \w came|strong="H3478"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w* \w to|strong="H5704"\w* \w see|strong="H7200"\w* \w Saul|strong="H7586"\w* \w until|strong="H5704"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w death|strong="H4194"\w*, \w but|strong="H3588"\w* \w Samuel|strong="H8050"\w* mourned \w for|strong="H3588"\w* \w Saul|strong="H7586"\w*. \w Yahweh|strong="H3068"\w* grieved \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H3068"\w* \w made|strong="H4427"\w* \w Saul|strong="H7586"\w* \w king|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*. +\c 16 +\p +\v 1 \w Yahweh|strong="H3068"\w* said \w to|strong="H5704"\w* \w Samuel|strong="H8050"\w*, “\w How|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H3068"\w* \w you|strong="H3588"\w* \w mourn|strong="H5921"\w* \w for|strong="H3588"\w* \w Saul|strong="H7586"\w*, \w since|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w rejected|strong="H3988"\w* \w him|strong="H5921"\w* \w from|strong="H5921"\w* \w being|strong="H4427"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*? \w Fill|strong="H4390"\w* \w your|strong="H3068"\w* \w horn|strong="H7161"\w* \w with|strong="H4390"\w* \w oil|strong="H8081"\w*, \w and|strong="H1121"\w* \w go|strong="H3212"\w*. \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w you|strong="H3588"\w* \w to|strong="H5704"\w* \w Jesse|strong="H3448"\w* \w the|strong="H5921"\w* \w Bethlehemite|strong="H1022"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w provided|strong="H7200"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w for|strong="H3588"\w* myself \w among|strong="H5921"\w* \w his|strong="H3068"\w* \w sons|strong="H1121"\w*.” +\p +\v 2 \w Samuel|strong="H8050"\w* \w said|strong="H8085"\w*, “\w How|strong="H8085"\w* \w can|strong="H3947"\w* \w I|strong="H8085"\w* \w go|strong="H3212"\w*? If \w Saul|strong="H7586"\w* \w hears|strong="H8085"\w* \w it|strong="H3947"\w*, \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w kill|strong="H2026"\w* \w me|strong="H3947"\w*.” +\p \w Yahweh|strong="H3068"\w* \w said|strong="H8085"\w*, “\w Take|strong="H3947"\w* \w a|strong="H3068"\w* \w heifer|strong="H5697"\w* \w with|strong="H3068"\w* \w you|strong="H3947"\w*, \w and|strong="H3068"\w* say, ‘\w I|strong="H8085"\w* \w have|strong="H3068"\w* \w come|strong="H3212"\w* \w to|strong="H3068"\w* \w sacrifice|strong="H2076"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.’ +\v 3 \w Call|strong="H7121"\w* \w Jesse|strong="H3448"\w* \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w sacrifice|strong="H2077"\w*, \w and|strong="H6213"\w* \w I|strong="H3045"\w* \w will|strong="H6213"\w* \w show|strong="H6213"\w* \w you|strong="H6213"\w* \w what|strong="H3045"\w* \w you|strong="H6213"\w* \w shall|strong="H6213"\w* \w do|strong="H6213"\w*. \w You|strong="H6213"\w* \w shall|strong="H6213"\w* \w anoint|strong="H4886"\w* \w to|strong="H6213"\w* \w me|strong="H7121"\w* \w him|strong="H7121"\w* \w whom|strong="H7121"\w* \w I|strong="H3045"\w* \w name|strong="H7121"\w* \w to|strong="H6213"\w* \w you|strong="H6213"\w*.” +\p +\v 4 \w Samuel|strong="H8050"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w*, \w and|strong="H3068"\w* \w came|strong="H3068"\w* \w to|strong="H1696"\w* \w Bethlehem|strong="H1035"\w*. \w The|strong="H6213"\w* \w elders|strong="H2205"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* \w city|strong="H5892"\w* \w came|strong="H3068"\w* \w to|strong="H1696"\w* \w meet|strong="H7122"\w* \w him|strong="H6213"\w* \w trembling|strong="H2729"\w*, \w and|strong="H3068"\w* \w said|strong="H1696"\w*, “\w Do|strong="H6213"\w* \w you|strong="H6213"\w* \w come|strong="H7122"\w* \w peaceably|strong="H7965"\w*?” +\p +\v 5 \w He|strong="H3068"\w* \w said|strong="H7121"\w*, “\w Peaceably|strong="H7965"\w*; \w I|strong="H1121"\w* \w have|strong="H3068"\w* come \w to|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w Sanctify|strong="H6942"\w* \w yourselves|strong="H6942"\w*, \w and|strong="H1121"\w* come \w with|strong="H3068"\w* \w me|strong="H7121"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w sacrifice|strong="H2077"\w*.” \w He|strong="H3068"\w* \w sanctified|strong="H6942"\w* \w Jesse|strong="H3448"\w* \w and|strong="H1121"\w* \w his|strong="H3068"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w called|strong="H7121"\w* \w them|strong="H7121"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w sacrifice|strong="H2077"\w*. +\v 6 \w When|strong="H1961"\w* \w they|strong="H3068"\w* \w had|strong="H3068"\w* \w come|strong="H1961"\w*, \w he|strong="H3068"\w* \w looked|strong="H7200"\w* \w at|strong="H3068"\w* Eliab, \w and|strong="H3068"\w* said, “\w Surely|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w anointed|strong="H4899"\w* \w is|strong="H3068"\w* \w before|strong="H5048"\w* \w him|strong="H7200"\w*.” +\p +\v 7 \w But|strong="H3588"\w* \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Samuel|strong="H8050"\w*, “Don’t \w look|strong="H7200"\w* \w on|strong="H7200"\w* \w his|strong="H3068"\w* \w face|strong="H5869"\w*, \w or|strong="H3808"\w* \w on|strong="H7200"\w* \w the|strong="H7200"\w* \w height|strong="H6967"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w stature|strong="H6967"\w*, \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w rejected|strong="H3988"\w* \w him|strong="H7200"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* don’t \w see|strong="H7200"\w* \w as|strong="H3824"\w* \w man|strong="H7200"\w* \w sees|strong="H7200"\w*. \w For|strong="H3588"\w* \w man|strong="H7200"\w* \w looks|strong="H7200"\w* \w at|strong="H3068"\w* \w the|strong="H7200"\w* \w outward|strong="H5869"\w* \w appearance|strong="H4758"\w*, \w but|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w looks|strong="H7200"\w* \w at|strong="H3068"\w* \w the|strong="H7200"\w* \w heart|strong="H3824"\w*.” +\p +\v 8 \w Then|strong="H2088"\w* \w Jesse|strong="H3448"\w* \w called|strong="H7121"\w* Abinadab, \w and|strong="H3068"\w* \w made|strong="H3448"\w* \w him|strong="H6440"\w* \w pass|strong="H5674"\w* \w before|strong="H6440"\w* \w Samuel|strong="H8050"\w*. \w He|strong="H3068"\w* \w said|strong="H7121"\w*, “\w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* chosen \w this|strong="H2088"\w* \w one|strong="H2088"\w*, \w either|strong="H1571"\w*.” +\v 9 \w Then|strong="H2088"\w* \w Jesse|strong="H3448"\w* \w made|strong="H3448"\w* \w Shammah|strong="H8048"\w* \w to|strong="H3068"\w* \w pass|strong="H5674"\w* \w by|strong="H5674"\w*. \w He|strong="H3068"\w* said, “\w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* chosen \w this|strong="H2088"\w* \w one|strong="H2088"\w*, \w either|strong="H1571"\w*.” +\v 10 \w Jesse|strong="H3448"\w* \w made|strong="H3448"\w* \w seven|strong="H7651"\w* \w of|strong="H1121"\w* \w his|strong="H3068"\w* \w sons|strong="H1121"\w* \w to|strong="H3068"\w* \w pass|strong="H5674"\w* \w before|strong="H6440"\w* \w Samuel|strong="H8050"\w*. \w Samuel|strong="H8050"\w* said \w to|strong="H3068"\w* \w Jesse|strong="H3448"\w*, “\w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* chosen \w these|strong="H6440"\w*.” +\v 11 \w Samuel|strong="H8050"\w* said \w to|strong="H5704"\w* \w Jesse|strong="H3448"\w*, “\w Are|strong="H5288"\w* \w all|strong="H8552"\w* \w your|strong="H3947"\w* \w children|strong="H5288"\w* \w here|strong="H6311"\w*?” +\p \w He|strong="H3588"\w* said, “\w There|strong="H2009"\w* \w remains|strong="H7604"\w* \w yet|strong="H5750"\w* \w the|strong="H3588"\w* \w youngest|strong="H6996"\w*. \w Behold|strong="H2009"\w*, \w he|strong="H3588"\w* \w is|strong="H2009"\w* \w keeping|strong="H7462"\w* \w the|strong="H3588"\w* \w sheep|strong="H6629"\w*.” +\p \w Samuel|strong="H8050"\w* said \w to|strong="H5704"\w* \w Jesse|strong="H3448"\w*, “\w Send|strong="H7971"\w* \w and|strong="H7971"\w* \w get|strong="H3947"\w* \w him|strong="H7971"\w*, \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w sit|strong="H5437"\w* \w down|strong="H7971"\w* \w until|strong="H5704"\w* \w he|strong="H3588"\w* comes \w here|strong="H6311"\w*.” +\p +\v 12 \w He|strong="H1931"\w* \w sent|strong="H7971"\w*, \w and|strong="H6965"\w* \w brought|strong="H5869"\w* \w him|strong="H7971"\w* \w in|strong="H3068"\w*. \w Now|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H3068"\w* ruddy, \w with|strong="H5973"\w* \w a|strong="H3068"\w* \w handsome|strong="H3303"\w* \w face|strong="H5869"\w* \w and|strong="H6965"\w* \w good|strong="H2896"\w* \w appearance|strong="H5869"\w*. \w Yahweh|strong="H3068"\w* said, “\w Arise|strong="H6965"\w*! \w Anoint|strong="H4886"\w* \w him|strong="H7971"\w*, \w for|strong="H3588"\w* \w this|strong="H2088"\w* \w is|strong="H3068"\w* \w he|strong="H1931"\w*.” +\p +\v 13 \w Then|strong="H6965"\w* \w Samuel|strong="H8050"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w horn|strong="H7161"\w* \w of|strong="H3068"\w* \w oil|strong="H8081"\w* \w and|strong="H6965"\w* \w anointed|strong="H4886"\w* \w him|strong="H3947"\w* \w in|strong="H3068"\w* \w the|strong="H3947"\w* \w middle|strong="H7130"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* brothers. \w Then|strong="H6965"\w* \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w* \w came|strong="H3068"\w* \w mightily|strong="H6743"\w* \w on|strong="H3117"\w* \w David|strong="H1732"\w* \w from|strong="H3947"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w forward|strong="H4605"\w*. \w So|strong="H3947"\w* \w Samuel|strong="H8050"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Ramah|strong="H7414"\w*. +\v 14 Now \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w* \w departed|strong="H5493"\w* \w from|strong="H5493"\w* \w Saul|strong="H7586"\w*, \w and|strong="H3068"\w* \w an|strong="H3068"\w* \w evil|strong="H7451"\w* \w spirit|strong="H7307"\w* \w from|strong="H5493"\w* \w Yahweh|strong="H3068"\w* \w troubled|strong="H7451"\w* \w him|strong="H5973"\w*. +\v 15 \w Saul|strong="H7586"\w*’s \w servants|strong="H5650"\w* said \w to|strong="H5650"\w* him, “\w See|strong="H2009"\w* \w now|strong="H4994"\w*, \w an|strong="H7307"\w* \w evil|strong="H7451"\w* \w spirit|strong="H7307"\w* \w from|strong="H7307"\w* God \w troubles|strong="H7451"\w* \w you|strong="H4994"\w*. +\v 16 \w Let|strong="H4994"\w* \w our|strong="H5921"\w* lord \w now|strong="H4994"\w* \w command|strong="H3027"\w* \w your|strong="H5921"\w* \w servants|strong="H5650"\w* \w who|strong="H5650"\w* \w are|strong="H3027"\w* \w in|strong="H5921"\w* \w front|strong="H6440"\w* \w of|strong="H3027"\w* \w you|strong="H6440"\w* \w to|strong="H1961"\w* \w seek|strong="H1245"\w* \w out|strong="H1245"\w* \w a|strong="H3068"\w* \w man|strong="H7451"\w* \w who|strong="H5650"\w* \w is|strong="H3027"\w* \w a|strong="H3068"\w* \w skillful|strong="H3045"\w* \w player|strong="H5059"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w harp|strong="H3658"\w*. \w Then|strong="H1961"\w* \w when|strong="H1961"\w* \w the|strong="H6440"\w* \w evil|strong="H7451"\w* \w spirit|strong="H7307"\w* \w from|strong="H6440"\w* \w God|strong="H3027"\w* \w is|strong="H3027"\w* \w on|strong="H5921"\w* \w you|strong="H6440"\w*, \w he|strong="H3027"\w* \w will|strong="H1961"\w* \w play|strong="H5059"\w* \w with|strong="H5921"\w* \w his|strong="H6440"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w you|strong="H6440"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w well|strong="H2895"\w*.” +\p +\v 17 \w Saul|strong="H7586"\w* said \w to|strong="H5650"\w* \w his|strong="H7200"\w* \w servants|strong="H5650"\w*, “\w Provide|strong="H7200"\w* \w me|strong="H4994"\w* \w now|strong="H4994"\w* \w a|strong="H3068"\w* \w man|strong="H7200"\w* \w who|strong="H5650"\w* \w can|strong="H5650"\w* \w play|strong="H5059"\w* \w well|strong="H3190"\w*, \w and|strong="H5650"\w* bring \w him|strong="H7200"\w* \w to|strong="H5650"\w* \w me|strong="H4994"\w*.” +\p +\v 18 \w Then|strong="H6030"\w* \w one|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w young|strong="H5288"\w* \w men|strong="H1368"\w* \w answered|strong="H6030"\w* \w and|strong="H1121"\w* \w said|strong="H1697"\w*, “\w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w have|strong="H3068"\w* \w seen|strong="H7200"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jesse|strong="H3448"\w* \w the|strong="H7200"\w* \w Bethlehemite|strong="H1022"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w skillful|strong="H3045"\w* \w in|strong="H3068"\w* \w playing|strong="H5059"\w*, \w a|strong="H3068"\w* \w mighty|strong="H1368"\w* \w man|strong="H5288"\w* \w of|strong="H1121"\w* \w valor|strong="H2428"\w*, \w a|strong="H3068"\w* \w man|strong="H5288"\w* \w of|strong="H1121"\w* \w war|strong="H4421"\w*, prudent \w in|strong="H3068"\w* \w speech|strong="H1697"\w*, \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w handsome|strong="H8389"\w* \w person|strong="H3045"\w*; \w and|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w with|strong="H5973"\w* \w him|strong="H7200"\w*.” +\p +\v 19 \w Therefore|strong="H1732"\w* \w Saul|strong="H7586"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H7971"\w* \w Jesse|strong="H3448"\w*, \w and|strong="H1121"\w* said, “\w Send|strong="H7971"\w* \w me|strong="H7971"\w* \w David|strong="H1732"\w* \w your|strong="H7971"\w* \w son|strong="H1121"\w*, \w who|strong="H1121"\w* \w is|strong="H1121"\w* \w with|strong="H1732"\w* \w the|strong="H7971"\w* \w sheep|strong="H6629"\w*.” +\p +\v 20 \w Jesse|strong="H3448"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* \w donkey|strong="H2543"\w* loaded \w with|strong="H3899"\w* \w bread|strong="H3899"\w*, \w a|strong="H3068"\w* container \w of|strong="H1121"\w* \w wine|strong="H3196"\w*, \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w young|strong="H1121"\w* \w goat|strong="H5795"\w*, \w and|strong="H1121"\w* \w sent|strong="H7971"\w* \w them|strong="H7971"\w* \w by|strong="H3027"\w* \w David|strong="H1732"\w* \w his|strong="H7971"\w* \w son|strong="H1121"\w* \w to|strong="H7971"\w* \w Saul|strong="H7586"\w*. +\v 21 \w David|strong="H1732"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w Saul|strong="H7586"\w* \w and|strong="H1732"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. \w He|strong="H1732"\w* loved \w him|strong="H6440"\w* \w greatly|strong="H3966"\w*; \w and|strong="H1732"\w* \w he|strong="H1732"\w* \w became|strong="H1961"\w* \w his|strong="H5375"\w* \w armor|strong="H3627"\w* \w bearer|strong="H5375"\w*. +\v 22 \w Saul|strong="H7586"\w* \w sent|strong="H7971"\w* \w to|strong="H7971"\w* \w Jesse|strong="H3448"\w*, saying, “\w Please|strong="H4994"\w* \w let|strong="H7971"\w* \w David|strong="H1732"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H7586"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H4672"\w* \w my|strong="H1732"\w* \w sight|strong="H5869"\w*.” +\v 23 \w When|strong="H1961"\w* \w the|strong="H5921"\w* \w spirit|strong="H7307"\w* \w from|strong="H5493"\w* \w God|strong="H3027"\w* \w was|strong="H1961"\w* \w on|strong="H5921"\w* \w Saul|strong="H7586"\w*, \w David|strong="H1732"\w* \w took|strong="H3947"\w* \w the|strong="H5921"\w* \w harp|strong="H3658"\w* \w and|strong="H3027"\w* \w played|strong="H5059"\w* \w with|strong="H5921"\w* \w his|strong="H3947"\w* \w hand|strong="H3027"\w*; \w so|strong="H3947"\w* \w Saul|strong="H7586"\w* \w was|strong="H1961"\w* \w refreshed|strong="H7304"\w* \w and|strong="H3027"\w* \w was|strong="H1961"\w* \w well|strong="H2895"\w*, \w and|strong="H3027"\w* \w the|strong="H5921"\w* \w evil|strong="H7451"\w* \w spirit|strong="H7307"\w* \w departed|strong="H5493"\w* \w from|strong="H5493"\w* \w him|strong="H5921"\w*. +\c 17 +\p +\v 1 Now \w the|strong="H3063"\w* \w Philistines|strong="H6430"\w* \w gathered|strong="H6430"\w* together their \w armies|strong="H4264"\w* \w to|strong="H3063"\w* \w battle|strong="H4421"\w*; \w and|strong="H3063"\w* \w they|strong="H3063"\w* \w were|strong="H6430"\w* \w gathered|strong="H6430"\w* together \w at|strong="H2583"\w* \w Socoh|strong="H7755"\w*, \w which|strong="H3063"\w* belongs \w to|strong="H3063"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w encamped|strong="H2583"\w* \w between|strong="H4421"\w* \w Socoh|strong="H7755"\w* \w and|strong="H3063"\w* \w Azekah|strong="H5825"\w* \w in|strong="H2583"\w* Ephesdammim. +\v 2 \w Saul|strong="H7586"\w* \w and|strong="H3478"\w* \w the|strong="H7122"\w* \w men|strong="H3478"\w* \w of|strong="H6010"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w gathered|strong="H6430"\w* together, \w and|strong="H3478"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w the|strong="H7122"\w* \w valley|strong="H6010"\w* \w of|strong="H6010"\w* Elah, \w and|strong="H3478"\w* \w set|strong="H6186"\w* \w the|strong="H7122"\w* \w battle|strong="H4421"\w* \w in|strong="H2583"\w* \w array|strong="H6186"\w* \w against|strong="H7122"\w* \w the|strong="H7122"\w* \w Philistines|strong="H6430"\w*. +\v 3 \w The|strong="H5975"\w* \w Philistines|strong="H6430"\w* \w stood|strong="H5975"\w* \w on|strong="H5975"\w* \w the|strong="H5975"\w* \w mountain|strong="H2022"\w* \w on|strong="H5975"\w* \w the|strong="H5975"\w* \w one|strong="H2088"\w* \w side|strong="H2088"\w*, \w and|strong="H3478"\w* \w Israel|strong="H3478"\w* \w stood|strong="H5975"\w* \w on|strong="H5975"\w* \w the|strong="H5975"\w* \w mountain|strong="H2022"\w* \w on|strong="H5975"\w* \w the|strong="H5975"\w* \w other|strong="H2088"\w* \w side|strong="H2088"\w*: \w and|strong="H3478"\w* \w there|strong="H2088"\w* \w was|strong="H3478"\w* \w a|strong="H3068"\w* \w valley|strong="H1516"\w* between \w them|strong="H5975"\w*. +\v 4 \w A|strong="H3068"\w* champion \w out|strong="H3318"\w* \w of|strong="H8034"\w* \w the|strong="H3318"\w* \w camp|strong="H4264"\w* \w of|strong="H8034"\w* \w the|strong="H3318"\w* \w Philistines|strong="H6430"\w* \w named|strong="H8034"\w* \w Goliath|strong="H1555"\w* \w of|strong="H8034"\w* \w Gath|strong="H1661"\w*, \w whose|strong="H8034"\w* \w height|strong="H1363"\w* \w was|strong="H8034"\w* \w six|strong="H8337"\w* cubits \w and|strong="H3318"\w* \w a|strong="H3068"\w* \w span|strong="H2239"\w*\f + \fr 17:4 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. A span is the length from the tip of a man’s thumb to the tip of his little finger when his hand is stretched out (about half a cubit, or 9 inches, or 22.8 cm.) Therefore, Goliath was about 9 feet and 9 inches or 2.97 meters tall.\f* \w went|strong="H3318"\w* \w out|strong="H3318"\w*. +\v 5 \w He|strong="H1931"\w* \w had|strong="H1931"\w* \w a|strong="H3068"\w* \w helmet|strong="H3553"\w* \w of|strong="H7218"\w* \w bronze|strong="H5178"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w head|strong="H7218"\w*, \w and|strong="H7218"\w* \w he|strong="H1931"\w* \w wore|strong="H5921"\w* \w a|strong="H3068"\w* \w coat|strong="H8302"\w* \w of|strong="H7218"\w* \w mail|strong="H7193"\w*; \w and|strong="H7218"\w* \w the|strong="H5921"\w* \w weight|strong="H4948"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w coat|strong="H8302"\w* \w was|strong="H1931"\w* \w five|strong="H2568"\w* thousand \w shekels|strong="H8255"\w*\f + \fr 17:5 \ft A shekel is about 10 grams or about 0.35 ounces, so 5000 shekels is about 50 kilograms or 110 pounds.\f* \w of|strong="H7218"\w* \w bronze|strong="H5178"\w*. +\v 6 \w He|strong="H5921"\w* had \w bronze|strong="H5178"\w* shin armor \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w legs|strong="H7272"\w* \w and|strong="H5178"\w* \w a|strong="H3068"\w* \w bronze|strong="H5178"\w* \w javelin|strong="H3591"\w* \w between|strong="H5921"\w* \w his|strong="H5921"\w* \w shoulders|strong="H3802"\w*. +\v 7 \w The|strong="H6440"\w* staff \w of|strong="H6440"\w* \w his|strong="H5375"\w* \w spear|strong="H2595"\w* \w was|strong="H6440"\w* \w like|strong="H1980"\w* \w a|strong="H3068"\w* weaver’s \w beam|strong="H4500"\w*; \w and|strong="H3967"\w* \w his|strong="H5375"\w* \w spear|strong="H2595"\w*’s \w head|strong="H1270"\w* weighed \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w shekels|strong="H8255"\w* \w of|strong="H6440"\w* \w iron|strong="H1270"\w*.\f + \fr 17:7 \ft A shekel is about 10 grams or about 0.35 ounces, so 600 shekels is about 6 kilograms or about 13 pounds.\f* \w His|strong="H5375"\w* \w shield|strong="H6793"\w* \w bearer|strong="H5375"\w* \w went|strong="H1980"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 8 \w He|strong="H3808"\w* \w stood|strong="H5975"\w* \w and|strong="H3478"\w* \w cried|strong="H7121"\w* \w to|strong="H3381"\w* \w the|strong="H7121"\w* \w armies|strong="H4634"\w* \w of|strong="H5650"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w said|strong="H7121"\w* \w to|strong="H3381"\w* \w them|strong="H3381"\w*, “\w Why|strong="H4100"\w* \w have|strong="H5650"\w* \w you|strong="H3808"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3381"\w* \w set|strong="H5975"\w* \w your|strong="H3808"\w* \w battle|strong="H4421"\w* \w in|strong="H3478"\w* \w array|strong="H6186"\w*? Am \w I|strong="H5650"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w Philistine|strong="H6430"\w*, \w and|strong="H3478"\w* \w you|strong="H3808"\w* \w servants|strong="H5650"\w* \w to|strong="H3381"\w* \w Saul|strong="H7586"\w*? \w Choose|strong="H1262"\w* \w a|strong="H3068"\w* man \w for|strong="H7121"\w* \w yourselves|strong="H6186"\w*, \w and|strong="H3478"\w* \w let|strong="H3381"\w* \w him|strong="H7121"\w* \w come|strong="H3318"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w me|strong="H7121"\w*. +\v 9 \w If|strong="H1961"\w* \w he|strong="H3201"\w* \w is|strong="H5650"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w fight|strong="H3898"\w* \w with|strong="H3898"\w* \w me|strong="H5221"\w* \w and|strong="H5650"\w* \w kill|strong="H5221"\w* \w me|strong="H5221"\w*, \w then|strong="H1961"\w* \w will|strong="H1961"\w* \w we|strong="H3068"\w* \w be|strong="H1961"\w* \w your|strong="H1961"\w* \w servants|strong="H5650"\w*; \w but|strong="H1961"\w* \w if|strong="H1961"\w* \w I|strong="H3201"\w* \w prevail|strong="H3201"\w* \w against|strong="H3898"\w* \w him|strong="H5221"\w* \w and|strong="H5650"\w* \w kill|strong="H5221"\w* \w him|strong="H5221"\w*, \w then|strong="H1961"\w* \w you|strong="H5221"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w our|strong="H5650"\w* \w servants|strong="H5650"\w* \w and|strong="H5650"\w* \w serve|strong="H5647"\w* \w us|strong="H1961"\w*.” +\v 10 \w The|strong="H5414"\w* \w Philistine|strong="H6430"\w* said, “\w I|strong="H3117"\w* \w defy|strong="H2778"\w* \w the|strong="H5414"\w* \w armies|strong="H4634"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w* \w today|strong="H3117"\w*! \w Give|strong="H5414"\w* \w me|strong="H5414"\w* \w a|strong="H3068"\w* \w man|strong="H2088"\w*, \w that|strong="H3117"\w* \w we|strong="H3068"\w* \w may|strong="H3478"\w* \w fight|strong="H3898"\w* \w together|strong="H3162"\w*!” +\p +\v 11 \w When|strong="H8085"\w* \w Saul|strong="H7586"\w* \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w heard|strong="H8085"\w* \w those|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w Philistine|strong="H6430"\w*, \w they|strong="H1697"\w* \w were|strong="H3478"\w* \w dismayed|strong="H2865"\w* \w and|strong="H3478"\w* \w greatly|strong="H3966"\w* \w afraid|strong="H3372"\w*. +\v 12 \w Now|strong="H3117"\w* \w David|strong="H1732"\w* \w was|strong="H8034"\w* \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w that|strong="H3117"\w* Ephrathite \w of|strong="H1121"\w* \w Bethlehem|strong="H1035"\w* \w Judah|strong="H3063"\w*, \w whose|strong="H1121"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Jesse|strong="H3448"\w*; \w and|strong="H1121"\w* \w he|strong="H3117"\w* \w had|strong="H1732"\w* \w eight|strong="H8083"\w* \w sons|strong="H1121"\w*. \w The|strong="H3117"\w* \w man|strong="H1121"\w* \w was|strong="H8034"\w* \w an|strong="H2088"\w* elderly \w old|strong="H1121"\w* \w man|strong="H1121"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w*. +\v 13 \w The|strong="H1980"\w* \w three|strong="H7969"\w* \w oldest|strong="H1419"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jesse|strong="H3448"\w* \w had|strong="H7586"\w* \w gone|strong="H1980"\w* \w after|strong="H7992"\w* \w Saul|strong="H7586"\w* \w to|strong="H1980"\w* \w the|strong="H1980"\w* \w battle|strong="H4421"\w*; \w and|strong="H1121"\w* \w the|strong="H1980"\w* \w names|strong="H8034"\w* \w of|strong="H1121"\w* \w his|strong="H7586"\w* \w three|strong="H7969"\w* \w sons|strong="H1121"\w* \w who|strong="H1121"\w* \w went|strong="H1980"\w* \w to|strong="H1980"\w* \w the|strong="H1980"\w* \w battle|strong="H4421"\w* \w were|strong="H1121"\w* Eliab \w the|strong="H1980"\w* \w firstborn|strong="H1060"\w*, \w and|strong="H1121"\w* \w next|strong="H4932"\w* \w to|strong="H1980"\w* \w him|strong="H1980"\w* Abinadab, \w and|strong="H1121"\w* \w the|strong="H1980"\w* \w third|strong="H7992"\w* \w Shammah|strong="H8048"\w*. +\v 14 \w David|strong="H1732"\w* \w was|strong="H1732"\w* \w the|strong="H1732"\w* \w youngest|strong="H6996"\w*; \w and|strong="H1980"\w* \w the|strong="H1732"\w* \w three|strong="H7969"\w* \w oldest|strong="H1419"\w* \w followed|strong="H1980"\w* \w Saul|strong="H7586"\w*. +\v 15 \w Now|strong="H5921"\w* \w David|strong="H1732"\w* \w went|strong="H1980"\w* \w back|strong="H7725"\w* \w and|strong="H1980"\w* \w forth|strong="H1980"\w* \w from|strong="H7725"\w* \w Saul|strong="H7586"\w* \w to|strong="H1980"\w* \w feed|strong="H7462"\w* \w his|strong="H1732"\w* father’s \w sheep|strong="H6629"\w* \w at|strong="H5921"\w* \w Bethlehem|strong="H1035"\w*. +\p +\v 16 \w The|strong="H3117"\w* \w Philistine|strong="H6430"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w morning|strong="H7925"\w* \w and|strong="H3117"\w* \w evening|strong="H6150"\w*, \w and|strong="H3117"\w* \w presented|strong="H3320"\w* \w himself|strong="H3320"\w* forty \w days|strong="H3117"\w*. +\p +\v 17 \w Jesse|strong="H3448"\w* said \w to|strong="H1121"\w* \w David|strong="H1732"\w* \w his|strong="H3947"\w* \w son|strong="H1121"\w*, “\w Now|strong="H4994"\w* \w take|strong="H3947"\w* \w for|strong="H1121"\w* \w your|strong="H3947"\w* \w brothers|strong="H1121"\w* \w an|strong="H3947"\w* ephah\f + \fr 17:17 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w of|strong="H1121"\w* \w this|strong="H2088"\w* \w parched|strong="H7039"\w* \w grain|strong="H7039"\w* \w and|strong="H1121"\w* \w these|strong="H2088"\w* \w ten|strong="H6235"\w* \w loaves|strong="H3899"\w*, \w and|strong="H1121"\w* \w carry|strong="H3947"\w* \w them|strong="H3947"\w* \w quickly|strong="H7323"\w* \w to|strong="H1121"\w* \w the|strong="H3947"\w* \w camp|strong="H4264"\w* \w to|strong="H1121"\w* \w your|strong="H3947"\w* \w brothers|strong="H1121"\w*; +\v 18 \w and|strong="H2461"\w* \w bring|strong="H3947"\w* \w these|strong="H3947"\w* \w ten|strong="H6235"\w* \w cheeses|strong="H2461"\w* \w to|strong="H3947"\w* \w the|strong="H3947"\w* \w captain|strong="H8269"\w* \w of|strong="H8269"\w* \w their|strong="H3947"\w* thousand; \w and|strong="H2461"\w* \w see|strong="H6485"\w* \w how|strong="H7965"\w* \w your|strong="H3947"\w* brothers \w are|strong="H8269"\w* doing, \w and|strong="H2461"\w* \w bring|strong="H3947"\w* \w back|strong="H3947"\w* \w news|strong="H6161"\w*.” +\v 19 \w Now|strong="H3478"\w* \w Saul|strong="H7586"\w*, \w and|strong="H3478"\w* \w they|strong="H1992"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H6010"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w valley|strong="H6010"\w* \w of|strong="H6010"\w* Elah, \w fighting|strong="H3898"\w* \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*. +\p +\v 20 \w David|strong="H1732"\w* \w rose|strong="H7925"\w* \w up|strong="H5375"\w* \w early|strong="H7925"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w morning|strong="H1242"\w* \w and|strong="H3212"\w* \w left|strong="H3318"\w* \w the|strong="H5921"\w* \w sheep|strong="H6629"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w keeper|strong="H8104"\w*, \w and|strong="H3212"\w* \w took|strong="H5375"\w* \w the|strong="H5921"\w* provisions \w and|strong="H3212"\w* \w went|strong="H3212"\w*, \w as|strong="H3318"\w* \w Jesse|strong="H3448"\w* \w had|strong="H1732"\w* \w commanded|strong="H6680"\w* \w him|strong="H5921"\w*. \w He|strong="H1732"\w* \w came|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H5921"\w* \w place|strong="H4634"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* wagons \w as|strong="H3318"\w* \w the|strong="H5921"\w* \w army|strong="H2428"\w* \w which|strong="H2428"\w* \w was|strong="H1732"\w* \w going|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H5921"\w* \w fight|strong="H4421"\w* \w shouted|strong="H7321"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w battle|strong="H4421"\w*. +\v 21 \w Israel|strong="H3478"\w* \w and|strong="H3478"\w* \w the|strong="H7122"\w* \w Philistines|strong="H6430"\w* \w put|strong="H6186"\w* \w the|strong="H7122"\w* \w battle|strong="H4634"\w* \w in|strong="H3478"\w* \w array|strong="H6186"\w*, \w army|strong="H4634"\w* \w against|strong="H7122"\w* \w army|strong="H4634"\w*. +\v 22 \w David|strong="H1732"\w* \w left|strong="H5203"\w* \w his|strong="H8104"\w* \w baggage|strong="H3627"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w keeper|strong="H8104"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w baggage|strong="H3627"\w* \w and|strong="H3027"\w* \w ran|strong="H7323"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w army|strong="H4634"\w*, \w and|strong="H3027"\w* \w came|strong="H1732"\w* \w and|strong="H3027"\w* \w greeted|strong="H7592"\w* \w his|strong="H8104"\w* brothers. +\v 23 \w As|strong="H1697"\w* \w he|strong="H1931"\w* \w talked|strong="H1696"\w* \w with|strong="H5973"\w* \w them|strong="H5927"\w*, \w behold|strong="H2009"\w*, \w the|strong="H8085"\w* champion, \w the|strong="H8085"\w* \w Philistine|strong="H6430"\w* \w of|strong="H1697"\w* \w Gath|strong="H1661"\w*, \w Goliath|strong="H1555"\w* \w by|strong="H8034"\w* \w name|strong="H8034"\w*, \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H1696"\w* \w of|strong="H1697"\w* \w the|strong="H8085"\w* ranks \w of|strong="H1697"\w* \w the|strong="H8085"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H1732"\w* \w said|strong="H1696"\w* \w the|strong="H8085"\w* \w same|strong="H1931"\w* \w words|strong="H1697"\w*; \w and|strong="H1732"\w* \w David|strong="H1732"\w* \w heard|strong="H8085"\w* \w them|strong="H5927"\w*. +\v 24 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H6440"\w* \w Israel|strong="H3478"\w*, \w when|strong="H7200"\w* \w they|strong="H3605"\w* \w saw|strong="H7200"\w* \w the|strong="H3605"\w* \w man|strong="H3605"\w*, \w fled|strong="H5127"\w* \w from|strong="H6440"\w* \w him|strong="H6440"\w* \w and|strong="H3478"\w* \w were|strong="H3478"\w* \w terrified|strong="H3966"\w*. +\v 25 \w The|strong="H7200"\w* \w men|strong="H1419"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* said, “\w Have|strong="H1961"\w* \w you|strong="H3588"\w* \w seen|strong="H7200"\w* \w this|strong="H2088"\w* \w man|strong="H1419"\w* \w who|strong="H3478"\w* \w has|strong="H1961"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w*? \w He|strong="H3588"\w* \w has|strong="H1961"\w* \w surely|strong="H3588"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w defy|strong="H2778"\w* \w Israel|strong="H3478"\w*. \w The|strong="H7200"\w* \w king|strong="H4428"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w great|strong="H1419"\w* \w riches|strong="H6239"\w* \w to|strong="H3478"\w* \w the|strong="H7200"\w* \w man|strong="H1419"\w* \w who|strong="H3478"\w* \w kills|strong="H5221"\w* \w him|strong="H5414"\w*, \w and|strong="H3478"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w him|strong="H5414"\w* \w his|strong="H5414"\w* \w daughter|strong="H1323"\w*, \w and|strong="H3478"\w* \w will|strong="H1961"\w* \w make|strong="H6213"\w* \w his|strong="H5414"\w* father’s \w house|strong="H1004"\w* tax-free \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*.” +\p +\v 26 \w David|strong="H1732"\w* spoke \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w men|strong="H6213"\w* \w who|strong="H4310"\w* \w stood|strong="H5975"\w* \w by|strong="H5921"\w* \w him|strong="H5921"\w*, saying, “\w What|strong="H4100"\w* \w shall|strong="H3478"\w* \w be|strong="H3478"\w* \w done|strong="H6213"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w man|strong="H2088"\w* \w who|strong="H4310"\w* \w kills|strong="H5221"\w* \w this|strong="H2088"\w* \w Philistine|strong="H6430"\w* \w and|strong="H3478"\w* \w takes|strong="H5221"\w* \w away|strong="H5493"\w* \w the|strong="H5921"\w* \w reproach|strong="H2781"\w* \w from|strong="H5493"\w* \w Israel|strong="H3478"\w*? \w For|strong="H3588"\w* \w who|strong="H4310"\w* \w is|strong="H2088"\w* \w this|strong="H2088"\w* \w uncircumcised|strong="H6189"\w* \w Philistine|strong="H6430"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w should|strong="H4100"\w* \w defy|strong="H2778"\w* \w the|strong="H5921"\w* \w armies|strong="H4634"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w living|strong="H2416"\w* \w God|strong="H4310"\w*?” +\p +\v 27 \w The|strong="H5221"\w* \w people|strong="H5971"\w* \w answered|strong="H1697"\w* \w him|strong="H5221"\w* \w in|strong="H6213"\w* \w this|strong="H2088"\w* \w way|strong="H1697"\w*, \w saying|strong="H1697"\w*, “\w So|strong="H6213"\w* \w shall|strong="H5971"\w* \w it|strong="H6213"\w* \w be|strong="H1697"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w the|strong="H5221"\w* \w man|strong="H2088"\w* \w who|strong="H5971"\w* \w kills|strong="H5221"\w* \w him|strong="H5221"\w*.” +\p +\v 28 Eliab \w his|strong="H1732"\w* \w oldest|strong="H1419"\w* brother \w heard|strong="H8085"\w* \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H5921"\w* \w men|strong="H1419"\w*; \w and|strong="H1419"\w* Eliab’s \w anger|strong="H3824"\w* \w burned|strong="H2734"\w* \w against|strong="H5921"\w* \w David|strong="H1732"\w*, \w and|strong="H1419"\w* \w he|strong="H3588"\w* \w said|strong="H1696"\w*, “\w Why|strong="H4100"\w* \w have|strong="H3045"\w* \w you|strong="H3588"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w*? \w With|strong="H1696"\w* \w whom|strong="H4310"\w* \w have|strong="H3045"\w* \w you|strong="H3588"\w* \w left|strong="H5203"\w* \w those|strong="H5921"\w* \w few|strong="H4592"\w* \w sheep|strong="H6629"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*? \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w your|strong="H5921"\w* \w pride|strong="H2087"\w* \w and|strong="H1419"\w* \w the|strong="H5921"\w* \w evil|strong="H7455"\w* \w of|strong="H4057"\w* \w your|strong="H5921"\w* \w heart|strong="H3824"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3045"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w might|strong="H4616"\w* \w see|strong="H7200"\w* \w the|strong="H5921"\w* \w battle|strong="H4421"\w*.” +\p +\v 29 \w David|strong="H1732"\w* \w said|strong="H1697"\w*, “\w What|strong="H4100"\w* \w have|strong="H1697"\w* \w I|strong="H1697"\w* \w now|strong="H6258"\w* \w done|strong="H6213"\w*? \w Is|strong="H1931"\w* \w there|strong="H6258"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w cause|strong="H1697"\w*?” +\v 30 \w He|strong="H5971"\w* \w turned|strong="H7725"\w* \w away|strong="H7725"\w* \w from|strong="H7725"\w* \w him|strong="H7725"\w* \w toward|strong="H4136"\w* \w another|strong="H2088"\w*, \w and|strong="H7725"\w* \w spoke|strong="H1697"\w* \w like|strong="H1697"\w* \w that|strong="H5971"\w* \w again|strong="H7725"\w*; \w and|strong="H7725"\w* \w the|strong="H7725"\w* \w people|strong="H5971"\w* \w answered|strong="H7725"\w* \w him|strong="H7725"\w* \w again|strong="H7725"\w* \w the|strong="H7725"\w* \w same|strong="H2088"\w* \w way|strong="H1697"\w*. +\v 31 \w When|strong="H8085"\w* \w the|strong="H6440"\w* \w words|strong="H1697"\w* \w were|strong="H1697"\w* \w heard|strong="H8085"\w* \w which|strong="H1697"\w* \w David|strong="H1732"\w* \w spoke|strong="H1696"\w*, \w they|strong="H1697"\w* \w rehearsed|strong="H1696"\w* \w them|strong="H6440"\w* \w before|strong="H6440"\w* \w Saul|strong="H7586"\w*; \w and|strong="H1732"\w* \w he|strong="H1732"\w* \w sent|strong="H1732"\w* \w for|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 32 \w David|strong="H1732"\w* said \w to|strong="H3212"\w* \w Saul|strong="H7586"\w*, “\w Let|strong="H3212"\w* no \w man|strong="H2088"\w*’s \w heart|strong="H3820"\w* \w fail|strong="H5307"\w* \w because|strong="H5921"\w* \w of|strong="H5650"\w* \w him|strong="H5921"\w*. \w Your|strong="H5921"\w* \w servant|strong="H5650"\w* \w will|strong="H5650"\w* \w go|strong="H3212"\w* \w and|strong="H3212"\w* \w fight|strong="H3898"\w* \w with|strong="H5973"\w* \w this|strong="H2088"\w* \w Philistine|strong="H6430"\w*.” +\p +\v 33 \w Saul|strong="H7586"\w* said \w to|strong="H3201"\w* \w David|strong="H1732"\w*, “\w You|strong="H3588"\w* \w are|strong="H4421"\w* \w not|strong="H3808"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w go|strong="H3212"\w* \w against|strong="H5973"\w* \w this|strong="H2088"\w* \w Philistine|strong="H6430"\w* \w to|strong="H3201"\w* \w fight|strong="H3898"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H4421"\w* \w but|strong="H3588"\w* \w a|strong="H3068"\w* \w youth|strong="H5271"\w*, \w and|strong="H3212"\w* \w he|strong="H1931"\w* \w a|strong="H3068"\w* \w man|strong="H5288"\w* \w of|strong="H5288"\w* \w war|strong="H4421"\w* \w from|strong="H6430"\w* \w his|strong="H1732"\w* \w youth|strong="H5271"\w*.” +\p +\v 34 \w David|strong="H1732"\w* said \w to|strong="H1961"\w* \w Saul|strong="H7586"\w*, “\w Your|strong="H5375"\w* \w servant|strong="H5650"\w* \w was|strong="H1961"\w* \w keeping|strong="H7462"\w* \w his|strong="H5375"\w* father’s \w sheep|strong="H6629"\w*; \w and|strong="H1732"\w* \w when|strong="H1961"\w* \w a|strong="H3068"\w* lion \w or|strong="H7462"\w* \w a|strong="H3068"\w* \w bear|strong="H5375"\w* \w came|strong="H1961"\w* \w and|strong="H1732"\w* \w took|strong="H5375"\w* \w a|strong="H3068"\w* \w lamb|strong="H7716"\w* out \w of|strong="H5650"\w* \w the|strong="H5375"\w* \w flock|strong="H6629"\w*, +\v 35 \w I|strong="H5921"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w after|strong="H5921"\w* \w him|strong="H5921"\w*, \w struck|strong="H5221"\w* \w him|strong="H5921"\w*, \w and|strong="H6965"\w* \w rescued|strong="H5337"\w* \w it|strong="H5921"\w* \w out|strong="H3318"\w* \w of|strong="H6310"\w* \w his|strong="H5921"\w* \w mouth|strong="H6310"\w*. \w When|strong="H3318"\w* \w he|strong="H5921"\w* \w arose|strong="H6965"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*, \w I|strong="H5921"\w* \w caught|strong="H2388"\w* \w him|strong="H5921"\w* \w by|strong="H5921"\w* \w his|strong="H5921"\w* \w beard|strong="H2206"\w*, \w struck|strong="H5221"\w* \w him|strong="H5921"\w*, \w and|strong="H6965"\w* \w killed|strong="H5221"\w* \w him|strong="H5921"\w*. +\v 36 \w Your|strong="H3588"\w* \w servant|strong="H5650"\w* \w struck|strong="H5221"\w* \w both|strong="H1571"\w* \w the|strong="H3588"\w* lion \w and|strong="H5650"\w* \w the|strong="H3588"\w* \w bear|strong="H1677"\w*. \w This|strong="H2088"\w* \w uncircumcised|strong="H6189"\w* \w Philistine|strong="H6430"\w* \w shall|strong="H5650"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w one|strong="H2088"\w* \w of|strong="H5650"\w* \w them|strong="H1992"\w*, \w since|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H1961"\w* \w defied|strong="H2778"\w* \w the|strong="H3588"\w* \w armies|strong="H4634"\w* \w of|strong="H5650"\w* \w the|strong="H3588"\w* \w living|strong="H2416"\w* God.” +\v 37 \w David|strong="H1732"\w* said, “\w Yahweh|strong="H3068"\w*, \w who|strong="H1931"\w* \w delivered|strong="H5337"\w* \w me|strong="H5973"\w* \w out|strong="H3212"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w paw|strong="H3027"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* lion \w and|strong="H3068"\w* \w out|strong="H3212"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w paw|strong="H3027"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w bear|strong="H1677"\w*, \w will|strong="H3068"\w* \w deliver|strong="H5337"\w* \w me|strong="H5973"\w* \w out|strong="H3212"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w this|strong="H2088"\w* \w Philistine|strong="H6430"\w*.” +\p \w Saul|strong="H7586"\w* said \w to|strong="H3212"\w* \w David|strong="H1732"\w*, “\w Go|strong="H3212"\w*! \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H5973"\w*.” +\p +\v 38 \w Saul|strong="H7586"\w* \w dressed|strong="H3847"\w* \w David|strong="H1732"\w* \w with|strong="H3847"\w* \w his|strong="H5414"\w* \w clothing|strong="H3847"\w*. \w He|strong="H1732"\w* \w put|strong="H5414"\w* \w a|strong="H3068"\w* \w helmet|strong="H6959"\w* \w of|strong="H7218"\w* \w bronze|strong="H5178"\w* \w on|strong="H5921"\w* \w his|strong="H5414"\w* \w head|strong="H7218"\w*, \w and|strong="H1732"\w* \w he|strong="H1732"\w* clad \w him|strong="H5414"\w* \w with|strong="H3847"\w* \w a|strong="H3068"\w* \w coat|strong="H8302"\w* \w of|strong="H7218"\w* \w mail|strong="H8302"\w*. +\v 39 \w David|strong="H1732"\w* \w strapped|strong="H2296"\w* \w his|strong="H1732"\w* \w sword|strong="H2719"\w* \w on|strong="H5921"\w* \w his|strong="H1732"\w* clothing \w and|strong="H3212"\w* \w he|strong="H3588"\w* \w tried|strong="H2974"\w* \w to|strong="H3201"\w* \w move|strong="H5493"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H1732"\w* \w not|strong="H3808"\w* \w tested|strong="H5254"\w* \w it|strong="H5921"\w*. \w David|strong="H1732"\w* said \w to|strong="H3201"\w* \w Saul|strong="H7586"\w*, “\w I|strong="H3588"\w* \w can|strong="H3201"\w*’t \w go|strong="H3212"\w* \w with|strong="H5921"\w* \w these|strong="H1732"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3588"\w* \w not|strong="H3808"\w* \w tested|strong="H5254"\w* \w them|strong="H5921"\w*.” \w Then|strong="H3588"\w* \w David|strong="H1732"\w* \w took|strong="H5493"\w* \w them|strong="H5921"\w* \w off|strong="H5493"\w*. +\p +\v 40 \w He|strong="H2568"\w* \w took|strong="H3947"\w* \w his|strong="H7760"\w* \w staff|strong="H4731"\w* \w in|strong="H3027"\w* \w his|strong="H7760"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* chose \w for|strong="H3027"\w* \w himself|strong="H3027"\w* \w five|strong="H2568"\w* \w smooth|strong="H2512"\w* stones \w out|strong="H4480"\w* \w of|strong="H3027"\w* \w the|strong="H3947"\w* \w brook|strong="H5158"\w*, \w and|strong="H3027"\w* \w put|strong="H7760"\w* \w them|strong="H3027"\w* \w in|strong="H3027"\w* \w the|strong="H3947"\w* \w pouch|strong="H3219"\w* \w of|strong="H3027"\w* \w his|strong="H7760"\w* \w shepherd|strong="H7462"\w*’s \w bag|strong="H3627"\w* \w which|strong="H5158"\w* \w he|strong="H2568"\w* \w had|strong="H6430"\w*. \w His|strong="H7760"\w* \w sling|strong="H7050"\w* \w was|strong="H3027"\w* \w in|strong="H3027"\w* \w his|strong="H7760"\w* \w hand|strong="H3027"\w*; \w and|strong="H3027"\w* \w he|strong="H2568"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H3027"\w* \w the|strong="H3947"\w* \w Philistine|strong="H6430"\w*. +\v 41 \w The|strong="H6440"\w* \w Philistine|strong="H6430"\w* \w walked|strong="H1980"\w* \w and|strong="H1980"\w* \w came|strong="H1980"\w* \w near|strong="H7131"\w* \w to|strong="H1980"\w* \w David|strong="H1732"\w*; \w and|strong="H1980"\w* \w the|strong="H6440"\w* \w man|strong="H5375"\w* \w who|strong="H1980"\w* \w bore|strong="H5375"\w* \w the|strong="H6440"\w* \w shield|strong="H6793"\w* \w went|strong="H1980"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 42 \w When|strong="H3588"\w* \w the|strong="H7200"\w* \w Philistine|strong="H6430"\w* \w looked|strong="H7200"\w* around \w and|strong="H1732"\w* \w saw|strong="H7200"\w* \w David|strong="H1732"\w*, \w he|strong="H3588"\w* disdained \w him|strong="H7200"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w was|strong="H1961"\w* \w but|strong="H3588"\w* \w a|strong="H3068"\w* \w youth|strong="H5288"\w*, \w and|strong="H1732"\w* ruddy, \w and|strong="H1732"\w* \w had|strong="H1961"\w* \w a|strong="H3068"\w* good \w looking|strong="H7200"\w* \w face|strong="H4758"\w*. +\v 43 \w The|strong="H3588"\w* \w Philistine|strong="H6430"\w* said \w to|strong="H1732"\w* \w David|strong="H1732"\w*, “Am \w I|strong="H3588"\w* \w a|strong="H3068"\w* \w dog|strong="H3611"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* come \w to|strong="H1732"\w* \w me|strong="H3588"\w* \w with|strong="H1732"\w* \w sticks|strong="H4731"\w*?” \w The|strong="H3588"\w* \w Philistine|strong="H6430"\w* \w cursed|strong="H7043"\w* \w David|strong="H1732"\w* \w by|strong="H6430"\w* \w his|strong="H1732"\w* gods. +\v 44 \w The|strong="H5414"\w* \w Philistine|strong="H6430"\w* said \w to|strong="H3212"\w* \w David|strong="H1732"\w*, “\w Come|strong="H3212"\w* \w to|strong="H3212"\w* \w me|strong="H5414"\w*, \w and|strong="H8064"\w* \w I|strong="H5414"\w* \w will|strong="H8064"\w* \w give|strong="H5414"\w* \w your|strong="H5414"\w* \w flesh|strong="H1320"\w* \w to|strong="H3212"\w* \w the|strong="H5414"\w* \w birds|strong="H5775"\w* \w of|strong="H7704"\w* \w the|strong="H5414"\w* \w sky|strong="H8064"\w* \w and|strong="H8064"\w* \w to|strong="H3212"\w* \w the|strong="H5414"\w* animals \w of|strong="H7704"\w* \w the|strong="H5414"\w* \w field|strong="H7704"\w*.” +\p +\v 45 \w Then|strong="H1732"\w* \w David|strong="H1732"\w* said \w to|strong="H3478"\w* \w the|strong="H3068"\w* \w Philistine|strong="H6430"\w*, “\w You|strong="H3478"\w* \w come|strong="H3478"\w* \w to|strong="H3478"\w* \w me|strong="H2719"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w sword|strong="H2719"\w*, \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w spear|strong="H2595"\w*, \w and|strong="H3478"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w javelin|strong="H3591"\w*; \w but|strong="H3068"\w* \w I|strong="H3478"\w* \w come|strong="H3478"\w* \w to|strong="H3478"\w* \w you|strong="H3478"\w* \w in|strong="H3478"\w* \w the|strong="H3068"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w armies|strong="H6635"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, whom \w you|strong="H3478"\w* \w have|strong="H3068"\w* \w defied|strong="H2778"\w*. +\v 46 \w Today|strong="H3117"\w*, \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w deliver|strong="H5414"\w* \w you|strong="H3588"\w* \w into|strong="H5921"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w*. \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w strike|strong="H5221"\w* \w you|strong="H3588"\w* \w and|strong="H3478"\w* \w take|strong="H5493"\w* \w your|strong="H3068"\w* \w head|strong="H7218"\w* \w from|strong="H5493"\w* \w off|strong="H5493"\w* \w you|strong="H3588"\w*. \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w the|strong="H3605"\w* \w dead|strong="H6297"\w* \w bodies|strong="H6297"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w army|strong="H4264"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w today|strong="H3117"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w birds|strong="H5775"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w* \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* wild \w animals|strong="H2416"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*, \w that|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w* \w may|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w there|strong="H3426"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w God|strong="H3068"\w* \w in|strong="H5921"\w* \w Israel|strong="H3478"\w*, +\v 47 \w and|strong="H3068"\w* \w that|strong="H3588"\w* \w all|strong="H3605"\w* \w this|strong="H2088"\w* \w assembly|strong="H6951"\w* \w may|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* doesn’t \w save|strong="H3467"\w* \w with|strong="H3068"\w* \w sword|strong="H2719"\w* \w and|strong="H3068"\w* \w spear|strong="H2595"\w*; \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w battle|strong="H4421"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s, \w and|strong="H3068"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w you|strong="H3588"\w* \w into|strong="H2595"\w* \w our|strong="H3068"\w* \w hand|strong="H3027"\w*.” +\p +\v 48 \w When|strong="H3588"\w* \w the|strong="H3588"\w* \w Philistine|strong="H6430"\w* \w arose|strong="H6965"\w*, \w and|strong="H6965"\w* \w walked|strong="H3212"\w* \w and|strong="H6965"\w* \w came|strong="H1961"\w* \w near|strong="H7126"\w* \w to|strong="H3212"\w* \w meet|strong="H7122"\w* \w David|strong="H1732"\w*, \w David|strong="H1732"\w* \w hurried|strong="H4116"\w* \w and|strong="H6965"\w* \w ran|strong="H7323"\w* \w toward|strong="H7122"\w* \w the|strong="H3588"\w* \w army|strong="H4634"\w* \w to|strong="H3212"\w* \w meet|strong="H7122"\w* \w the|strong="H3588"\w* \w Philistine|strong="H6430"\w*. +\v 49 \w David|strong="H1732"\w* \w put|strong="H7971"\w* \w his|strong="H7971"\w* \w hand|strong="H3027"\w* \w in|strong="H5921"\w* \w his|strong="H7971"\w* \w bag|strong="H3627"\w*, \w took|strong="H3947"\w* \w a|strong="H3068"\w* stone \w and|strong="H7971"\w* \w slung|strong="H7049"\w* \w it|strong="H5921"\w*, \w and|strong="H7971"\w* \w struck|strong="H5221"\w* \w the|strong="H6440"\w* \w Philistine|strong="H6430"\w* \w in|strong="H5921"\w* \w his|strong="H7971"\w* \w forehead|strong="H4696"\w*. \w The|strong="H6440"\w* stone \w sank|strong="H2883"\w* \w into|strong="H5307"\w* \w his|strong="H7971"\w* \w forehead|strong="H4696"\w*, \w and|strong="H7971"\w* \w he|strong="H8033"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w his|strong="H7971"\w* \w face|strong="H6440"\w* \w to|strong="H7971"\w* \w the|strong="H6440"\w* earth. +\v 50 \w So|strong="H4480"\w* \w David|strong="H1732"\w* \w prevailed|strong="H2388"\w* \w over|strong="H3027"\w* \w the|strong="H5221"\w* \w Philistine|strong="H6430"\w* \w with|strong="H3027"\w* \w a|strong="H3068"\w* \w sling|strong="H7050"\w* \w and|strong="H3027"\w* \w with|strong="H3027"\w* \w a|strong="H3068"\w* stone, \w and|strong="H3027"\w* \w struck|strong="H5221"\w* \w the|strong="H5221"\w* \w Philistine|strong="H6430"\w* \w and|strong="H3027"\w* \w killed|strong="H5221"\w* \w him|strong="H5221"\w*; \w but|strong="H2388"\w* \w there|strong="H4480"\w* \w was|strong="H1732"\w* \w no|strong="H4480"\w* \w sword|strong="H2719"\w* \w in|strong="H4191"\w* \w David|strong="H1732"\w*’s \w hand|strong="H3027"\w*. +\v 51 \w Then|strong="H3947"\w* \w David|strong="H1732"\w* \w ran|strong="H7323"\w*, \w stood|strong="H5975"\w* \w over|strong="H7218"\w* \w the|strong="H7200"\w* \w Philistine|strong="H6430"\w*, \w took|strong="H3947"\w* \w his|strong="H3947"\w* \w sword|strong="H2719"\w*, \w drew|strong="H8025"\w* \w it|strong="H3588"\w* \w out|strong="H7200"\w* \w of|strong="H7218"\w* \w its|strong="H5975"\w* \w sheath|strong="H8593"\w*, \w killed|strong="H4191"\w* \w him|strong="H7200"\w*, \w and|strong="H1732"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w his|strong="H3947"\w* \w head|strong="H7218"\w* \w with|strong="H1732"\w* \w it|strong="H3588"\w*. +\p \w When|strong="H3588"\w* \w the|strong="H7200"\w* \w Philistines|strong="H6430"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w their|strong="H3947"\w* \w champion|strong="H1368"\w* \w was|strong="H1732"\w* \w dead|strong="H4191"\w*, \w they|strong="H3588"\w* \w fled|strong="H5127"\w*. +\v 52 \w The|strong="H5704"\w* \w men|strong="H3478"\w* \w of|strong="H1870"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w of|strong="H1870"\w* \w Judah|strong="H3063"\w* \w arose|strong="H6965"\w* \w and|strong="H3063"\w* \w shouted|strong="H7321"\w*, \w and|strong="H3063"\w* \w pursued|strong="H7291"\w* \w the|strong="H5704"\w* \w Philistines|strong="H6430"\w* \w as|strong="H5704"\w* \w far|strong="H5704"\w* \w as|strong="H5704"\w* Gai \w and|strong="H3063"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w gates|strong="H8179"\w* \w of|strong="H1870"\w* \w Ekron|strong="H6138"\w*. \w The|strong="H5704"\w* \w wounded|strong="H2491"\w* \w of|strong="H1870"\w* \w the|strong="H5704"\w* \w Philistines|strong="H6430"\w* \w fell|strong="H5307"\w* \w down|strong="H5307"\w* \w by|strong="H1870"\w* \w the|strong="H5704"\w* \w way|strong="H1870"\w* \w to|strong="H5704"\w* \w Shaaraim|strong="H8189"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Gath|strong="H1661"\w* \w and|strong="H3063"\w* \w to|strong="H5704"\w* \w Ekron|strong="H6138"\w*. +\v 53 \w The|strong="H7725"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w returned|strong="H7725"\w* \w from|strong="H7725"\w* \w chasing|strong="H1814"\w* \w after|strong="H1814"\w* \w the|strong="H7725"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H1121"\w* \w they|strong="H3478"\w* \w plundered|strong="H8155"\w* \w their|strong="H7725"\w* \w camp|strong="H4264"\w*. +\v 54 \w David|strong="H1732"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w head|strong="H7218"\w* \w of|strong="H3627"\w* \w the|strong="H3947"\w* \w Philistine|strong="H6430"\w* \w and|strong="H3389"\w* \w brought|strong="H3947"\w* \w it|strong="H7760"\w* \w to|strong="H3389"\w* \w Jerusalem|strong="H3389"\w*, \w but|strong="H3947"\w* \w he|strong="H1732"\w* \w put|strong="H7760"\w* \w his|strong="H7760"\w* \w armor|strong="H3627"\w* \w in|strong="H1732"\w* \w his|strong="H7760"\w* tent. +\v 55 \w When|strong="H7200"\w* \w Saul|strong="H7586"\w* \w saw|strong="H7200"\w* \w David|strong="H1732"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w against|strong="H7122"\w* \w the|strong="H7200"\w* \w Philistine|strong="H6430"\w*, \w he|strong="H1732"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* Abner, \w the|strong="H7200"\w* \w captain|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w army|strong="H6635"\w*, “Abner, \w whose|strong="H4310"\w* \w son|strong="H1121"\w* \w is|strong="H2088"\w* \w this|strong="H2088"\w* \w youth|strong="H5288"\w*?” +\p Abner \w said|strong="H3318"\w*, “\w As|strong="H5315"\w* \w your|strong="H7200"\w* \w soul|strong="H5315"\w* \w lives|strong="H5315"\w*, \w O|strong="H3068"\w* \w king|strong="H4428"\w*, \w I|strong="H3045"\w* \w can|strong="H4310"\w*’t \w tell|strong="H3045"\w*.” +\p +\v 56 \w The|strong="H7592"\w* \w king|strong="H4428"\w* said, “\w Inquire|strong="H7592"\w* \w whose|strong="H4310"\w* \w son|strong="H1121"\w* \w the|strong="H7592"\w* \w young|strong="H1121"\w* \w man|strong="H1121"\w* \w is|strong="H2088"\w*!” +\p +\v 57 \w As|strong="H6440"\w* \w David|strong="H1732"\w* \w returned|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H6440"\w* \w slaughter|strong="H5221"\w* \w of|strong="H3027"\w* \w the|strong="H6440"\w* \w Philistine|strong="H6430"\w*, Abner \w took|strong="H3947"\w* \w him|strong="H6440"\w* \w and|strong="H7725"\w* \w brought|strong="H7725"\w* \w him|strong="H6440"\w* \w before|strong="H6440"\w* \w Saul|strong="H7586"\w* \w with|strong="H6440"\w* \w the|strong="H6440"\w* \w head|strong="H7218"\w* \w of|strong="H3027"\w* \w the|strong="H6440"\w* \w Philistine|strong="H6430"\w* \w in|strong="H6440"\w* \w his|strong="H3947"\w* \w hand|strong="H3027"\w*. +\v 58 \w Saul|strong="H7586"\w* said \w to|strong="H1121"\w* \w him|strong="H1732"\w*, “\w Whose|strong="H4310"\w* \w son|strong="H1121"\w* \w are|strong="H1121"\w* \w you|strong="H4310"\w*, \w you|strong="H4310"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w*?” +\p \w David|strong="H1732"\w* answered, “\w I|strong="H5650"\w* am \w the|strong="H5650"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w your|strong="H1732"\w* \w servant|strong="H5650"\w* \w Jesse|strong="H3448"\w* \w the|strong="H5650"\w* \w Bethlehemite|strong="H1022"\w*.” +\c 18 +\p +\v 1 \w When|strong="H1961"\w* \w he|strong="H1732"\w* \w had|strong="H1961"\w* \w finished|strong="H3615"\w* \w speaking|strong="H1696"\w* \w to|strong="H1696"\w* \w Saul|strong="H7586"\w*, \w the|strong="H1961"\w* \w soul|strong="H5315"\w* \w of|strong="H3615"\w* \w Jonathan|strong="H3083"\w* \w was|strong="H1961"\w* \w knit|strong="H7194"\w* \w with|strong="H1696"\w* \w the|strong="H1961"\w* \w soul|strong="H5315"\w* \w of|strong="H3615"\w* \w David|strong="H1732"\w*, \w and|strong="H1732"\w* \w Jonathan|strong="H3083"\w* loved \w him|strong="H1732"\w* \w as|strong="H1961"\w* \w his|strong="H1732"\w* \w own|strong="H1961"\w* \w soul|strong="H5315"\w*. +\v 2 \w Saul|strong="H7586"\w* \w took|strong="H3947"\w* \w him|strong="H5414"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w and|strong="H7725"\w* wouldn’t \w let|strong="H5414"\w* \w him|strong="H5414"\w* \w go|strong="H7725"\w* \w home|strong="H1004"\w* \w to|strong="H7725"\w* \w his|strong="H5414"\w* father’s \w house|strong="H1004"\w* \w any|strong="H5414"\w* \w more|strong="H3808"\w*. +\v 3 \w Then|strong="H1732"\w* \w Jonathan|strong="H3083"\w* \w and|strong="H1732"\w* \w David|strong="H1732"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w*, because \w he|strong="H1732"\w* loved \w him|strong="H3772"\w* \w as|strong="H5315"\w* \w his|strong="H1732"\w* \w own|strong="H5315"\w* \w soul|strong="H5315"\w*. +\v 4 \w Jonathan|strong="H3083"\w* \w stripped|strong="H6584"\w* himself \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w robe|strong="H4598"\w* \w that|strong="H5414"\w* \w was|strong="H1732"\w* \w on|strong="H5921"\w* \w him|strong="H5414"\w* \w and|strong="H1732"\w* \w gave|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H5704"\w* \w David|strong="H1732"\w* \w with|strong="H5921"\w* \w his|strong="H5414"\w* clothing, \w even|strong="H5704"\w* \w including|strong="H5704"\w* \w his|strong="H5414"\w* \w sword|strong="H2719"\w*, \w his|strong="H5414"\w* \w bow|strong="H7198"\w*, \w and|strong="H1732"\w* \w his|strong="H5414"\w* sash. +\p +\v 5 \w David|strong="H1732"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w wherever|strong="H3605"\w* \w Saul|strong="H7586"\w* \w sent|strong="H7971"\w* \w him|strong="H5921"\w*, \w and|strong="H7971"\w* \w behaved|strong="H7919"\w* \w himself|strong="H7919"\w* \w wisely|strong="H7919"\w*; \w and|strong="H7971"\w* \w Saul|strong="H7586"\w* \w set|strong="H7760"\w* \w him|strong="H5921"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w men|strong="H5971"\w* \w of|strong="H5869"\w* \w war|strong="H4421"\w*. \w It|strong="H7760"\w* \w was|strong="H1732"\w* \w good|strong="H3190"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H5869"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w and|strong="H7971"\w* \w also|strong="H1571"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H5869"\w* \w Saul|strong="H7586"\w*’s \w servants|strong="H5650"\w*. +\p +\v 6 \w As|strong="H1961"\w* \w they|strong="H3478"\w* \w came|strong="H1961"\w*, \w when|strong="H1961"\w* \w David|strong="H1732"\w* \w returned|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H3605"\w* \w slaughter|strong="H5221"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w Philistine|strong="H6430"\w*, \w the|strong="H3605"\w* \w women|strong="H7891"\w* \w came|strong="H1961"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w singing|strong="H7891"\w* \w and|strong="H3478"\w* \w dancing|strong="H4246"\w*, \w to|strong="H7725"\w* \w meet|strong="H7122"\w* \w King|strong="H4428"\w* \w Saul|strong="H7586"\w* \w with|strong="H3318"\w* \w tambourines|strong="H8596"\w*, \w with|strong="H3318"\w* \w joy|strong="H8057"\w*, \w and|strong="H3478"\w* \w with|strong="H3318"\w* \w instruments|strong="H7991"\w* \w of|strong="H4428"\w* music. +\v 7 \w The|strong="H5221"\w* women \w sang|strong="H6030"\w* \w to|strong="H1732"\w* one another \w as|strong="H5221"\w* \w they|strong="H5221"\w* \w played|strong="H7832"\w*, \w and|strong="H6030"\w* \w said|strong="H6030"\w*, +\q1 “\w Saul|strong="H7586"\w* \w has|strong="H7586"\w* \w slain|strong="H5221"\w* \w his|strong="H1732"\w* \w thousands|strong="H7233"\w*, +\q2 \w and|strong="H6030"\w* \w David|strong="H1732"\w* \w his|strong="H1732"\w* \w ten|strong="H7233"\w* \w thousands|strong="H7233"\w*.” +\p +\v 8 \w Saul|strong="H7586"\w* \w was|strong="H1732"\w* \w very|strong="H3966"\w* \w angry|strong="H2734"\w*, \w and|strong="H5869"\w* \w this|strong="H2088"\w* \w saying|strong="H1697"\w* \w displeased|strong="H7489"\w* \w him|strong="H5414"\w*. \w He|strong="H1732"\w* \w said|strong="H1697"\w*, “\w They|strong="H1697"\w* \w have|strong="H5869"\w* credited \w David|strong="H1732"\w* \w with|strong="H1697"\w* \w ten|strong="H7233"\w* \w thousands|strong="H7233"\w*, \w and|strong="H5869"\w* \w they|strong="H1697"\w* \w have|strong="H5869"\w* only credited \w me|strong="H5414"\w* \w with|strong="H1697"\w* \w thousands|strong="H7233"\w*. \w What|strong="H1697"\w* \w can|strong="H5750"\w* \w he|strong="H1732"\w* \w have|strong="H5869"\w* \w more|strong="H5750"\w* \w but|strong="H5750"\w* \w the|strong="H5414"\w* \w kingdom|strong="H4410"\w*?” +\v 9 \w Saul|strong="H7586"\w* watched \w David|strong="H1732"\w* \w from|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w and|strong="H3117"\w* \w forward|strong="H1973"\w*. +\v 10 \w On|strong="H3117"\w* \w the|strong="H8432"\w* \w next|strong="H4283"\w* \w day|strong="H3117"\w*, \w an|strong="H1961"\w* \w evil|strong="H7451"\w* \w spirit|strong="H7307"\w* \w from|strong="H3027"\w* \w God|strong="H3027"\w* \w came|strong="H1961"\w* \w mightily|strong="H6743"\w* \w on|strong="H3117"\w* \w Saul|strong="H7586"\w*, \w and|strong="H3117"\w* \w he|strong="H3117"\w* \w prophesied|strong="H5012"\w* \w in|strong="H1004"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H1004"\w* \w the|strong="H8432"\w* \w house|strong="H1004"\w*. \w David|strong="H1732"\w* \w played|strong="H5059"\w* \w with|strong="H1004"\w* \w his|strong="H1732"\w* \w hand|strong="H3027"\w*, \w as|strong="H3117"\w* \w he|strong="H3117"\w* \w did|strong="H1732"\w* \w day|strong="H3117"\w* \w by|strong="H3027"\w* \w day|strong="H3117"\w*. \w Saul|strong="H7586"\w* \w had|strong="H1961"\w* \w his|strong="H1732"\w* \w spear|strong="H2595"\w* \w in|strong="H1004"\w* \w his|strong="H1732"\w* \w hand|strong="H3027"\w*; +\v 11 \w and|strong="H1732"\w* \w Saul|strong="H7586"\w* \w threw|strong="H2904"\w* \w the|strong="H6440"\w* \w spear|strong="H2595"\w*, \w for|strong="H6440"\w* \w he|strong="H1732"\w* said, “\w I|strong="H6440"\w* \w will|strong="H2904"\w* \w pin|strong="H5221"\w* \w David|strong="H1732"\w* \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w wall|strong="H7023"\w*!” \w David|strong="H1732"\w* \w escaped|strong="H5437"\w* \w from|strong="H6440"\w* \w his|strong="H1732"\w* \w presence|strong="H6440"\w* \w twice|strong="H6471"\w*. +\v 12 \w Saul|strong="H7586"\w* \w was|strong="H3068"\w* \w afraid|strong="H3372"\w* \w of|strong="H3068"\w* \w David|strong="H1732"\w*, \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w with|strong="H5973"\w* \w him|strong="H6440"\w*, \w and|strong="H3068"\w* \w had|strong="H3068"\w* \w departed|strong="H5493"\w* \w from|strong="H5493"\w* \w Saul|strong="H7586"\w*. +\v 13 \w Therefore|strong="H5971"\w* \w Saul|strong="H7586"\w* \w removed|strong="H5493"\w* \w him|strong="H6440"\w* \w from|strong="H5493"\w* \w his|strong="H7760"\w* \w presence|strong="H6440"\w*, \w and|strong="H5971"\w* \w made|strong="H7760"\w* \w him|strong="H6440"\w* \w his|strong="H7760"\w* \w captain|strong="H8269"\w* \w over|strong="H8269"\w* \w a|strong="H3068"\w* thousand; \w and|strong="H5971"\w* \w he|strong="H5971"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H5971"\w* \w came|strong="H3318"\w* \w in|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*. +\p +\v 14 \w David|strong="H1732"\w* \w behaved|strong="H7919"\w* \w himself|strong="H7919"\w* \w wisely|strong="H7919"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w ways|strong="H1870"\w*; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*. +\v 15 \w When|strong="H7200"\w* \w Saul|strong="H7586"\w* \w saw|strong="H7200"\w* \w that|strong="H7200"\w* \w he|strong="H1931"\w* \w behaved|strong="H7919"\w* \w himself|strong="H1931"\w* \w very|strong="H3966"\w* \w wisely|strong="H7919"\w*, \w he|strong="H1931"\w* stood \w in|strong="H6440"\w* \w awe|strong="H1481"\w* \w of|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 16 \w But|strong="H3588"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w Judah|strong="H3063"\w* loved \w David|strong="H1732"\w*; \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H3063"\w* \w came|strong="H3318"\w* \w in|strong="H3478"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*. +\v 17 \w Saul|strong="H7586"\w* said \w to|strong="H3068"\w* \w David|strong="H1732"\w*, “\w Behold|strong="H2009"\w*, \w my|strong="H5414"\w* \w elder|strong="H1419"\w* \w daughter|strong="H1323"\w* \w Merab|strong="H4764"\w*. \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w her|strong="H5414"\w* \w to|strong="H3068"\w* \w you|strong="H5414"\w* \w as|strong="H1961"\w* wife. Only \w be|strong="H1961"\w* \w valiant|strong="H2428"\w* \w for|strong="H3027"\w* \w me|strong="H5414"\w*, \w and|strong="H1121"\w* \w fight|strong="H3898"\w* \w Yahweh|strong="H3068"\w*’s \w battles|strong="H4421"\w*.” \w For|strong="H3027"\w* \w Saul|strong="H7586"\w* said, “Don’t \w let|strong="H5414"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w* \w be|strong="H1961"\w* \w on|strong="H3027"\w* \w him|strong="H5414"\w*, \w but|strong="H1961"\w* \w let|strong="H5414"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w Philistines|strong="H6430"\w* \w be|strong="H1961"\w* \w on|strong="H3027"\w* \w him|strong="H5414"\w*.” +\p +\v 18 \w David|strong="H1732"\w* said \w to|strong="H3478"\w* \w Saul|strong="H7586"\w*, “\w Who|strong="H4310"\w* \w am|strong="H1961"\w* \w I|strong="H3588"\w*, \w and|strong="H3478"\w* \w what|strong="H4310"\w* \w is|strong="H4310"\w* \w my|strong="H1732"\w* \w life|strong="H2416"\w*, \w or|strong="H4310"\w* \w my|strong="H1732"\w* father’s \w family|strong="H4940"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w should|strong="H3588"\w* \w be|strong="H1961"\w* \w son-in-law|strong="H2860"\w* \w to|strong="H3478"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w*?” +\p +\v 19 \w But|strong="H1961"\w* \w at|strong="H1732"\w* \w the|strong="H5414"\w* \w time|strong="H6256"\w* \w when|strong="H1961"\w* \w Merab|strong="H4764"\w*, \w Saul|strong="H7586"\w*’s \w daughter|strong="H1323"\w*, \w should|strong="H1732"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w given|strong="H5414"\w* \w to|strong="H1961"\w* \w David|strong="H1732"\w*, \w she|strong="H1931"\w* \w was|strong="H1961"\w* \w given|strong="H5414"\w* \w to|strong="H1961"\w* \w Adriel|strong="H5741"\w* \w the|strong="H5414"\w* \w Meholathite|strong="H4259"\w* \w as|strong="H1961"\w* wife. +\p +\v 20 \w Michal|strong="H4324"\w*, \w Saul|strong="H7586"\w*’s \w daughter|strong="H1323"\w*, loved \w David|strong="H1732"\w*; \w and|strong="H5869"\w* \w they|strong="H1697"\w* \w told|strong="H5046"\w* \w Saul|strong="H7586"\w*, \w and|strong="H5869"\w* \w the|strong="H1697"\w* \w thing|strong="H1697"\w* \w pleased|strong="H3474"\w* \w him|strong="H5046"\w*. +\v 21 \w Saul|strong="H7586"\w* said, \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w her|strong="H5414"\w* \w to|strong="H1961"\w* \w him|strong="H5414"\w*, \w that|strong="H3117"\w* \w she|strong="H8147"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w snare|strong="H4170"\w* \w to|strong="H1961"\w* \w him|strong="H5414"\w* \w and|strong="H3117"\w* \w that|strong="H3117"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H3117"\w* \w the|strong="H5414"\w* \w Philistines|strong="H6430"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w against|strong="H3027"\w* \w him|strong="H5414"\w*. \w Therefore|strong="H1732"\w* \w Saul|strong="H7586"\w* said \w to|strong="H1961"\w* \w David|strong="H1732"\w* \w a|strong="H3068"\w* \w second|strong="H8147"\w* \w time|strong="H3117"\w*, “\w You|strong="H5414"\w* \w shall|strong="H3117"\w* \w today|strong="H3117"\w* \w be|strong="H1961"\w* \w my|strong="H5414"\w* \w son-in-law|strong="H2859"\w*.” +\p +\v 22 \w Saul|strong="H7586"\w* \w commanded|strong="H6680"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w*, “\w Talk|strong="H1696"\w* \w with|strong="H1696"\w* \w David|strong="H1732"\w* \w secretly|strong="H3909"\w*, \w and|strong="H4428"\w* \w say|strong="H1696"\w*, ‘\w Behold|strong="H2009"\w*, \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w has|strong="H4428"\w* \w delight|strong="H2654"\w* \w in|strong="H4428"\w* \w you|strong="H6680"\w*, \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w* love \w you|strong="H6680"\w*. \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w be|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w son-in-law|strong="H2859"\w*.’” +\p +\v 23 \w Saul|strong="H7586"\w*’s \w servants|strong="H5650"\w* \w spoke|strong="H1696"\w* \w those|strong="H1696"\w* \w words|strong="H1697"\w* \w in|strong="H4428"\w* \w the|strong="H1697"\w* ears \w of|strong="H4428"\w* \w David|strong="H1732"\w*. \w David|strong="H1732"\w* \w said|strong="H1696"\w*, “Does \w it|strong="H1696"\w* \w seem|strong="H5869"\w* \w to|strong="H1696"\w* \w you|strong="H1696"\w* \w a|strong="H3068"\w* \w light|strong="H7043"\w* \w thing|strong="H1697"\w* \w to|strong="H1696"\w* \w be|strong="H1697"\w* \w the|strong="H1697"\w* \w king|strong="H4428"\w*’s \w son-in-law|strong="H2859"\w*, since \w I|strong="H1697"\w* \w am|strong="H7326"\w* \w a|strong="H3068"\w* \w poor|strong="H7326"\w* \w man|strong="H7326"\w* \w and|strong="H4428"\w* little known?” +\p +\v 24 \w The|strong="H1697"\w* \w servants|strong="H5650"\w* \w of|strong="H1697"\w* \w Saul|strong="H7586"\w* \w told|strong="H5046"\w* \w him|strong="H5046"\w*, \w saying|strong="H1697"\w*, “\w David|strong="H1732"\w* \w spoke|strong="H1696"\w* \w like|strong="H1697"\w* \w this|strong="H1696"\w*.” +\p +\v 25 \w Saul|strong="H7586"\w* said, “Tell \w David|strong="H1732"\w*, ‘\w The|strong="H3588"\w* \w king|strong="H4428"\w* desires \w no|strong="H2803"\w* \w dowry|strong="H4119"\w* \w except|strong="H3588"\w* \w one|strong="H3588"\w* \w hundred|strong="H3967"\w* \w foreskins|strong="H6190"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w Philistines|strong="H6430"\w*, \w to|strong="H3027"\w* \w be|strong="H3027"\w* \w avenged|strong="H5358"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w*’s \w enemies|strong="H3027"\w*.’” \w Now|strong="H3588"\w* \w Saul|strong="H7586"\w* \w thought|strong="H2803"\w* \w he|strong="H3588"\w* \w would|strong="H4428"\w* \w make|strong="H3027"\w* \w David|strong="H1732"\w* \w fall|strong="H5307"\w* \w by|strong="H3027"\w* \w the|strong="H3588"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w Philistines|strong="H6430"\w*. +\v 26 \w When|strong="H3117"\w* \w his|strong="H1732"\w* \w servants|strong="H5650"\w* \w told|strong="H5046"\w* \w David|strong="H1732"\w* \w these|strong="H1732"\w* \w words|strong="H1697"\w*, \w it|strong="H3117"\w* \w pleased|strong="H3474"\w* \w David|strong="H1732"\w* \w well|strong="H5869"\w* \w to|strong="H3117"\w* \w be|strong="H3808"\w* \w the|strong="H3117"\w* \w king|strong="H4428"\w*’s \w son-in-law|strong="H2859"\w*. \w Before|strong="H5869"\w* \w the|strong="H3117"\w* deadline, +\v 27 \w David|strong="H1732"\w* \w arose|strong="H6965"\w* \w and|strong="H3967"\w* \w went|strong="H3212"\w*, \w he|strong="H1931"\w* \w and|strong="H3967"\w* \w his|strong="H5414"\w* men, \w and|strong="H3967"\w* \w killed|strong="H5221"\w* \w two|strong="H5221"\w* \w hundred|strong="H3967"\w* men \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w Philistines|strong="H6430"\w*. \w Then|strong="H6965"\w* \w David|strong="H1732"\w* \w brought|strong="H3212"\w* \w their|strong="H5414"\w* \w foreskins|strong="H6190"\w*, \w and|strong="H3967"\w* \w they|strong="H1931"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w in|strong="H4428"\w* \w full|strong="H4390"\w* number \w to|strong="H3212"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w*, \w that|strong="H1931"\w* \w he|strong="H1931"\w* \w might|strong="H1323"\w* \w be|strong="H5414"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w*’s \w son-in-law|strong="H2859"\w*. \w Then|strong="H6965"\w* \w Saul|strong="H7586"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w Michal|strong="H4324"\w* \w his|strong="H5414"\w* \w daughter|strong="H1323"\w* \w as|strong="H6965"\w* wife. +\v 28 \w Saul|strong="H7586"\w* \w saw|strong="H7200"\w* \w and|strong="H3068"\w* \w knew|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w with|strong="H5973"\w* \w David|strong="H1732"\w*; \w and|strong="H3068"\w* \w Michal|strong="H4324"\w*, \w Saul|strong="H7586"\w*’s \w daughter|strong="H1323"\w*, loved \w him|strong="H7200"\w*. +\v 29 \w Saul|strong="H7586"\w* \w was|strong="H1961"\w* \w even|strong="H5750"\w* \w more|strong="H3254"\w* \w afraid|strong="H3372"\w* \w of|strong="H3117"\w* \w David|strong="H1732"\w*; \w and|strong="H3117"\w* \w Saul|strong="H7586"\w* \w was|strong="H1961"\w* \w David|strong="H1732"\w*’s enemy \w continually|strong="H3605"\w*. +\p +\v 30 \w Then|strong="H1961"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*; \w and|strong="H5650"\w* \w as|strong="H1961"\w* \w often|strong="H1767"\w* \w as|strong="H1961"\w* \w they|strong="H3605"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*, \w David|strong="H1732"\w* \w behaved|strong="H7919"\w* \w himself|strong="H7919"\w* \w more|strong="H3966"\w* \w wisely|strong="H7919"\w* \w than|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w servants|strong="H5650"\w* \w of|strong="H8269"\w* \w Saul|strong="H7586"\w*, \w so|strong="H1961"\w* \w that|strong="H3605"\w* \w his|strong="H3605"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w highly|strong="H3966"\w* \w esteemed|strong="H3365"\w*. +\c 19 +\p +\v 1 \w Saul|strong="H7586"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Jonathan|strong="H3129"\w* \w his|strong="H3605"\w* \w son|strong="H1121"\w* \w and|strong="H1121"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w*, \w that|strong="H3605"\w* \w they|strong="H3605"\w* \w should|strong="H1732"\w* \w kill|strong="H4191"\w* \w David|strong="H1732"\w*. \w But|strong="H1696"\w* \w Jonathan|strong="H3129"\w*, \w Saul|strong="H7586"\w*’s \w son|strong="H1121"\w*, \w greatly|strong="H3966"\w* \w delighted|strong="H2654"\w* \w in|strong="H4191"\w* \w David|strong="H1732"\w*. +\v 2 \w Jonathan|strong="H3083"\w* \w told|strong="H5046"\w* \w David|strong="H1732"\w*, saying, “\w Saul|strong="H7586"\w* \w my|strong="H8104"\w* father \w seeks|strong="H1245"\w* \w to|strong="H4191"\w* \w kill|strong="H4191"\w* \w you|strong="H5046"\w*. \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w please|strong="H4994"\w* \w take|strong="H8104"\w* \w care|strong="H8104"\w* \w of|strong="H3427"\w* yourself \w in|strong="H3427"\w* \w the|strong="H8104"\w* \w morning|strong="H1242"\w*, \w live|strong="H3427"\w* \w in|strong="H3427"\w* \w a|strong="H3068"\w* \w secret|strong="H5643"\w* \w place|strong="H5643"\w*, \w and|strong="H1732"\w* \w hide|strong="H2244"\w* yourself. +\v 3 \w I|strong="H7200"\w* \w will|strong="H3027"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H3027"\w* \w stand|strong="H5975"\w* \w beside|strong="H3027"\w* \w my|strong="H7200"\w* father \w in|strong="H1696"\w* \w the|strong="H7200"\w* \w field|strong="H7704"\w* \w where|strong="H8033"\w* \w you|strong="H5046"\w* \w are|strong="H3027"\w*, \w and|strong="H3027"\w* \w I|strong="H7200"\w* \w will|strong="H3027"\w* \w talk|strong="H1696"\w* \w with|strong="H1696"\w* \w my|strong="H7200"\w* father \w about|strong="H8033"\w* \w you|strong="H5046"\w*; \w and|strong="H3027"\w* \w if|strong="H7200"\w* \w I|strong="H7200"\w* \w see|strong="H7200"\w* \w anything|strong="H4100"\w*, \w I|strong="H7200"\w* \w will|strong="H3027"\w* \w tell|strong="H5046"\w* \w you|strong="H5046"\w*.” +\p +\v 4 \w Jonathan|strong="H3083"\w* \w spoke|strong="H1696"\w* \w good|strong="H2896"\w* \w of|strong="H4428"\w* \w David|strong="H1732"\w* \w to|strong="H1696"\w* \w Saul|strong="H7586"\w* \w his|strong="H1732"\w* father, \w and|strong="H4428"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H1732"\w*, “Don’t \w let|strong="H3808"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w sin|strong="H2398"\w* \w against|strong="H2398"\w* \w his|strong="H1732"\w* \w servant|strong="H5650"\w*, \w against|strong="H2398"\w* \w David|strong="H1732"\w*; \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H4428"\w* \w not|strong="H3808"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w you|strong="H3588"\w*, \w and|strong="H4428"\w* \w because|strong="H3588"\w* \w his|strong="H1732"\w* \w works|strong="H4639"\w* \w have|strong="H5650"\w* \w been|strong="H3808"\w* \w very|strong="H3966"\w* \w good|strong="H2896"\w* toward \w you|strong="H3588"\w*; +\v 5 \w for|strong="H6213"\w* \w he|strong="H6213"\w* \w put|strong="H7760"\w* \w his|strong="H3605"\w* \w life|strong="H5315"\w* \w in|strong="H3478"\w* \w his|strong="H3605"\w* \w hand|strong="H3709"\w* \w and|strong="H3478"\w* \w struck|strong="H5221"\w* \w the|strong="H3605"\w* \w Philistine|strong="H6430"\w*, \w and|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w worked|strong="H6213"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w victory|strong="H8668"\w* \w for|strong="H6213"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*. \w You|strong="H3605"\w* \w saw|strong="H7200"\w* \w it|strong="H7760"\w* \w and|strong="H3478"\w* \w rejoiced|strong="H8055"\w*. \w Why|strong="H4100"\w* \w then|strong="H6213"\w* \w will|strong="H3068"\w* \w you|strong="H3605"\w* \w sin|strong="H2398"\w* \w against|strong="H2398"\w* \w innocent|strong="H5355"\w* \w blood|strong="H1818"\w*, \w to|strong="H3478"\w* \w kill|strong="H4191"\w* \w David|strong="H1732"\w* \w without|strong="H2600"\w* \w a|strong="H3068"\w* \w cause|strong="H2600"\w*?” +\p +\v 6 \w Saul|strong="H7586"\w* \w listened|strong="H8085"\w* \w to|strong="H4191"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w Jonathan|strong="H3083"\w*; \w and|strong="H3068"\w* \w Saul|strong="H7586"\w* \w swore|strong="H7650"\w*, “\w As|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*, \w he|strong="H3068"\w* \w shall|strong="H3068"\w* \w not|strong="H8085"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*.” +\p +\v 7 \w Jonathan|strong="H3083"\w* \w called|strong="H7121"\w* \w David|strong="H1732"\w*, \w and|strong="H1732"\w* \w Jonathan|strong="H3083"\w* showed \w him|strong="H6440"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w things|strong="H1697"\w*. \w Then|strong="H1961"\w* \w Jonathan|strong="H3083"\w* \w brought|strong="H1961"\w* \w David|strong="H1732"\w* \w to|strong="H1961"\w* \w Saul|strong="H7586"\w*, \w and|strong="H1732"\w* \w he|strong="H3605"\w* \w was|strong="H1961"\w* \w in|strong="H6440"\w* \w his|strong="H3605"\w* \w presence|strong="H6440"\w* \w as|strong="H1697"\w* \w before|strong="H6440"\w*. +\p +\v 8 \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w war|strong="H4421"\w* \w again|strong="H3254"\w*. \w David|strong="H1732"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H1419"\w* \w fought|strong="H3898"\w* \w with|strong="H3898"\w* \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H1419"\w* \w killed|strong="H5221"\w* \w them|strong="H6440"\w* \w with|strong="H3898"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w slaughter|strong="H4347"\w*; \w and|strong="H1419"\w* \w they|strong="H5221"\w* \w fled|strong="H5127"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\p +\v 9 \w An|strong="H1961"\w* \w evil|strong="H7451"\w* \w spirit|strong="H7307"\w* \w from|strong="H3027"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w on|strong="H3427"\w* \w Saul|strong="H7586"\w* \w as|strong="H1961"\w* \w he|strong="H1931"\w* \w sat|strong="H3427"\w* \w in|strong="H3427"\w* \w his|strong="H3068"\w* \w house|strong="H1004"\w* \w with|strong="H1004"\w* \w his|strong="H3068"\w* \w spear|strong="H2595"\w* \w in|strong="H3427"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w*; \w and|strong="H3068"\w* \w David|strong="H1732"\w* \w was|strong="H3068"\w* \w playing|strong="H5059"\w* music \w with|strong="H1004"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w*. +\v 10 \w Saul|strong="H7586"\w* \w sought|strong="H1245"\w* \w to|strong="H6440"\w* \w pin|strong="H5221"\w* \w David|strong="H1732"\w* \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w wall|strong="H7023"\w* \w with|strong="H6440"\w* \w the|strong="H6440"\w* \w spear|strong="H2595"\w*, \w but|strong="H5221"\w* \w he|strong="H1931"\w* \w slipped|strong="H6362"\w* \w away|strong="H5127"\w* \w out|strong="H1245"\w* \w of|strong="H6440"\w* \w Saul|strong="H7586"\w*’s \w presence|strong="H6440"\w*; \w and|strong="H1732"\w* \w he|strong="H1931"\w* \w stuck|strong="H5221"\w* \w the|strong="H6440"\w* \w spear|strong="H2595"\w* \w into|strong="H2595"\w* \w the|strong="H6440"\w* \w wall|strong="H7023"\w*. \w David|strong="H1732"\w* \w fled|strong="H5127"\w* \w and|strong="H1732"\w* \w escaped|strong="H4422"\w* \w that|strong="H1931"\w* \w night|strong="H3915"\w*. +\v 11 \w Saul|strong="H7586"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H4191"\w* \w David|strong="H1732"\w*’s \w house|strong="H1004"\w* \w to|strong="H4191"\w* \w watch|strong="H8104"\w* \w him|strong="H7971"\w* \w and|strong="H7971"\w* \w to|strong="H4191"\w* \w kill|strong="H4191"\w* \w him|strong="H7971"\w* \w in|strong="H1004"\w* \w the|strong="H8104"\w* \w morning|strong="H1242"\w*. \w Michal|strong="H4324"\w*, \w David|strong="H1732"\w*’s wife, \w told|strong="H5046"\w* \w him|strong="H7971"\w*, saying, “If \w you|strong="H7971"\w* don’t \w save|strong="H4422"\w* \w your|strong="H8104"\w* \w life|strong="H5315"\w* \w tonight|strong="H3915"\w*, \w tomorrow|strong="H4279"\w* \w you|strong="H7971"\w* \w will|strong="H5315"\w* \w be|strong="H4191"\w* \w killed|strong="H4191"\w*.” +\v 12 \w So|strong="H3381"\w* \w Michal|strong="H4324"\w* \w let|strong="H3381"\w* \w David|strong="H1732"\w* \w down|strong="H3381"\w* \w through|strong="H1157"\w* \w the|strong="H1732"\w* \w window|strong="H2474"\w*. \w He|strong="H1732"\w* \w went|strong="H3212"\w* \w away|strong="H3212"\w*, \w fled|strong="H1272"\w*, \w and|strong="H3212"\w* \w escaped|strong="H4422"\w*. +\v 13 \w Michal|strong="H4324"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w teraphim|strong="H8655"\w*\f + \fr 19:13 \ft teraphim were household idols that may have been associated with inheritance rights to the household property.\f* \w and|strong="H3947"\w* \w laid|strong="H7760"\w* \w it|strong="H7760"\w* \w in|strong="H7760"\w* \w the|strong="H3947"\w* \w bed|strong="H4296"\w*, \w and|strong="H3947"\w* \w put|strong="H7760"\w* \w a|strong="H3068"\w* \w pillow|strong="H3523"\w* \w of|strong="H4296"\w* \w goats|strong="H5795"\w*’ hair at \w its|strong="H7760"\w* \w head|strong="H4763"\w* \w and|strong="H3947"\w* \w covered|strong="H3680"\w* \w it|strong="H7760"\w* \w with|strong="H3680"\w* clothes. +\v 14 \w When|strong="H7971"\w* \w Saul|strong="H7586"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H7971"\w* \w take|strong="H3947"\w* \w David|strong="H1732"\w*, \w she|strong="H1931"\w* said, “\w He|strong="H1931"\w* \w is|strong="H1931"\w* \w sick|strong="H2470"\w*.” +\p +\v 15 \w Saul|strong="H7586"\w* \w sent|strong="H7971"\w* \w the|strong="H7200"\w* \w messengers|strong="H4397"\w* \w to|strong="H4191"\w* \w see|strong="H7200"\w* \w David|strong="H1732"\w*, saying, “\w Bring|strong="H5927"\w* \w him|strong="H7971"\w* \w up|strong="H5927"\w* \w to|strong="H4191"\w* \w me|strong="H7971"\w* \w in|strong="H4191"\w* \w the|strong="H7200"\w* \w bed|strong="H4296"\w*, \w that|strong="H7200"\w* \w I|strong="H7200"\w* \w may|strong="H1732"\w* \w kill|strong="H4191"\w* \w him|strong="H7971"\w*.” +\v 16 \w When|strong="H2009"\w* \w the|strong="H2009"\w* \w messengers|strong="H4397"\w* \w came|strong="H4397"\w* in, \w behold|strong="H2009"\w*, \w the|strong="H2009"\w* \w teraphim|strong="H8655"\w* \w was|strong="H4397"\w* in \w the|strong="H2009"\w* \w bed|strong="H4296"\w*, with \w the|strong="H2009"\w* \w pillow|strong="H3523"\w* \w of|strong="H4397"\w* \w goats|strong="H5795"\w*’ hair at its \w head|strong="H4763"\w*. +\p +\v 17 \w Saul|strong="H7586"\w* said \w to|strong="H4191"\w* \w Michal|strong="H4324"\w*, “\w Why|strong="H4100"\w* have \w you|strong="H7971"\w* \w deceived|strong="H7411"\w* \w me|strong="H7971"\w* \w like|strong="H4191"\w* \w this|strong="H1931"\w* \w and|strong="H7971"\w* \w let|strong="H7971"\w* \w my|strong="H7971"\w* enemy \w go|strong="H7971"\w*, \w so|strong="H7971"\w* \w that|strong="H1931"\w* \w he|strong="H1931"\w* \w has|strong="H4100"\w* \w escaped|strong="H4422"\w*?” +\p \w Michal|strong="H4324"\w* answered \w Saul|strong="H7586"\w*, “\w He|strong="H1931"\w* said \w to|strong="H4191"\w* \w me|strong="H7971"\w*, ‘\w Let|strong="H7971"\w* \w me|strong="H7971"\w* \w go|strong="H7971"\w*! \w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w I|strong="H4100"\w* \w kill|strong="H4191"\w* \w you|strong="H7971"\w*?’” +\p +\v 18 \w Now|strong="H3212"\w* \w David|strong="H1732"\w* \w fled|strong="H1272"\w* \w and|strong="H3212"\w* \w escaped|strong="H4422"\w*, \w and|strong="H3212"\w* \w came|strong="H3212"\w* \w to|strong="H3212"\w* \w Samuel|strong="H8050"\w* \w at|strong="H3427"\w* \w Ramah|strong="H7414"\w*, \w and|strong="H3212"\w* \w told|strong="H5046"\w* \w him|strong="H5046"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Saul|strong="H7586"\w* \w had|strong="H1732"\w* \w done|strong="H6213"\w* \w to|strong="H3212"\w* \w him|strong="H5046"\w*. \w He|strong="H1931"\w* \w and|strong="H3212"\w* \w Samuel|strong="H8050"\w* \w went|strong="H3212"\w* \w and|strong="H3212"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Naioth|strong="H5121"\w*. +\v 19 \w Saul|strong="H7586"\w* \w was|strong="H1732"\w* \w told|strong="H5046"\w*, saying, “\w Behold|strong="H2009"\w*, \w David|strong="H1732"\w* \w is|strong="H2009"\w* \w at|strong="H1732"\w* \w Naioth|strong="H5121"\w* \w in|strong="H5121"\w* \w Ramah|strong="H7414"\w*.” +\p +\v 20 \w Saul|strong="H7586"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H7971"\w* \w seize|strong="H3947"\w* \w David|strong="H1732"\w*; \w and|strong="H7971"\w* \w when|strong="H1961"\w* \w they|strong="H1992"\w* \w saw|strong="H7200"\w* \w the|strong="H5921"\w* \w company|strong="H3862"\w* \w of|strong="H7307"\w* \w the|strong="H5921"\w* \w prophets|strong="H5030"\w* \w prophesying|strong="H5012"\w*, \w and|strong="H7971"\w* \w Samuel|strong="H8050"\w* \w standing|strong="H5975"\w* \w as|strong="H1961"\w* head \w over|strong="H5921"\w* \w them|strong="H1992"\w*, \w God|strong="H7971"\w*’s \w Spirit|strong="H7307"\w* \w came|strong="H1961"\w* \w on|strong="H5921"\w* \w Saul|strong="H7586"\w*’s \w messengers|strong="H4397"\w*, \w and|strong="H7971"\w* \w they|strong="H1992"\w* \w also|strong="H1571"\w* \w prophesied|strong="H5012"\w*. +\v 21 \w When|strong="H7971"\w* \w Saul|strong="H7586"\w* \w was|strong="H7586"\w* \w told|strong="H5046"\w*, \w he|strong="H7971"\w* \w sent|strong="H7971"\w* other \w messengers|strong="H4397"\w*, \w and|strong="H7971"\w* \w they|strong="H1992"\w* \w also|strong="H1571"\w* \w prophesied|strong="H5012"\w*. \w Saul|strong="H7586"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w again|strong="H3254"\w* \w the|strong="H7971"\w* \w third|strong="H7992"\w* \w time|strong="H7992"\w*, \w and|strong="H7971"\w* \w they|strong="H1992"\w* \w also|strong="H1571"\w* \w prophesied|strong="H5012"\w*. +\v 22 \w Then|strong="H2009"\w* \w he|strong="H1931"\w* \w also|strong="H1571"\w* \w went|strong="H3212"\w* \w to|strong="H5704"\w* \w Ramah|strong="H7414"\w*, \w and|strong="H1419"\w* \w came|strong="H3212"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w great|strong="H1419"\w* \w well|strong="H1571"\w* \w that|strong="H1931"\w* \w is|strong="H1931"\w* \w in|strong="H3212"\w* \w Secu|strong="H7906"\w*: \w and|strong="H1419"\w* \w he|strong="H1931"\w* \w asked|strong="H7592"\w*, “\w Where|strong="H2009"\w* \w are|strong="H1571"\w* \w Samuel|strong="H8050"\w* \w and|strong="H1419"\w* \w David|strong="H1732"\w*?” +\p \w One|strong="H1931"\w* said, “\w Behold|strong="H2009"\w*, \w they|strong="H5704"\w* \w are|strong="H1571"\w* \w at|strong="H1732"\w* \w Naioth|strong="H5121"\w* \w in|strong="H3212"\w* \w Ramah|strong="H7414"\w*.” +\p +\v 23 \w He|strong="H1931"\w* \w went|strong="H1980"\w* \w there|strong="H8033"\w* \w to|strong="H5704"\w* \w Naioth|strong="H5121"\w* \w in|strong="H5921"\w* \w Ramah|strong="H7414"\w*. \w Then|strong="H1961"\w* God’s \w Spirit|strong="H7307"\w* \w came|strong="H1961"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w* \w also|strong="H1571"\w*, \w and|strong="H1980"\w* \w he|strong="H1931"\w* \w went|strong="H1980"\w* \w on|strong="H5921"\w*, \w and|strong="H1980"\w* \w prophesied|strong="H5012"\w*, \w until|strong="H5704"\w* \w he|strong="H1931"\w* \w came|strong="H1961"\w* \w to|strong="H5704"\w* \w Naioth|strong="H5121"\w* \w in|strong="H5921"\w* \w Ramah|strong="H7414"\w*. +\v 24 \w He|strong="H1931"\w* \w also|strong="H1571"\w* \w stripped|strong="H6584"\w* \w off|strong="H6584"\w* \w his|strong="H3605"\w* clothes. \w He|strong="H1931"\w* \w also|strong="H1571"\w* \w prophesied|strong="H5012"\w* \w before|strong="H6440"\w* \w Samuel|strong="H8050"\w* \w and|strong="H3117"\w* \w lay|strong="H5307"\w* \w down|strong="H5307"\w* \w naked|strong="H6174"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w* \w and|strong="H3117"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w night|strong="H3915"\w*. \w Therefore|strong="H3651"\w* \w they|strong="H3117"\w* say, “\w Is|strong="H1931"\w* \w Saul|strong="H7586"\w* \w also|strong="H1571"\w* \w among|strong="H5921"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w*?” +\c 20 +\p +\v 1 \w David|strong="H1732"\w* \w fled|strong="H1272"\w* \w from|strong="H6440"\w* \w Naioth|strong="H5121"\w* \w in|strong="H6213"\w* \w Ramah|strong="H7414"\w*, \w and|strong="H1732"\w* \w came|strong="H1732"\w* \w and|strong="H1732"\w* said \w to|strong="H6213"\w* \w Jonathan|strong="H3083"\w*, “\w What|strong="H4100"\w* \w have|strong="H5771"\w* \w I|strong="H3588"\w* \w done|strong="H6213"\w*? \w What|strong="H4100"\w* \w is|strong="H4100"\w* \w my|strong="H1732"\w* \w iniquity|strong="H5771"\w*? \w What|strong="H4100"\w* \w is|strong="H4100"\w* \w my|strong="H1732"\w* \w sin|strong="H2403"\w* \w before|strong="H6440"\w* \w your|strong="H6440"\w* father, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w seeks|strong="H1245"\w* \w my|strong="H1732"\w* \w life|strong="H5315"\w*?” +\p +\v 2 \w He|strong="H6213"\w* \w said|strong="H1697"\w* \w to|strong="H4191"\w* \w him|strong="H6213"\w*, “\w Far|strong="H2486"\w* \w from|strong="H4480"\w* \w it|strong="H6213"\w*; \w you|strong="H6213"\w* \w will|strong="H1697"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*. \w Behold|strong="H2009"\w*, \w my|strong="H5641"\w* father \w does|strong="H6213"\w* \w nothing|strong="H3808"\w* \w either|strong="H4480"\w* \w great|strong="H1419"\w* \w or|strong="H3808"\w* \w small|strong="H6996"\w*, \w but|strong="H3808"\w* \w that|strong="H1697"\w* \w he|strong="H6213"\w* \w discloses|strong="H1540"\w* \w it|strong="H6213"\w* \w to|strong="H4191"\w* \w me|strong="H4480"\w*. \w Why|strong="H4069"\w* \w would|strong="H1697"\w* \w my|strong="H5641"\w* father \w hide|strong="H5641"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w from|strong="H4480"\w* \w me|strong="H4480"\w*? \w It|strong="H6213"\w* \w is|strong="H2088"\w* \w not|strong="H3808"\w* \w so|strong="H6213"\w*.” +\p +\v 3 \w David|strong="H1732"\w* \w swore|strong="H7650"\w* \w moreover|strong="H5750"\w*, \w and|strong="H3068"\w* said, “\w Your|strong="H3068"\w* father \w knows|strong="H3045"\w* \w well|strong="H5869"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w*; \w and|strong="H3068"\w* \w he|strong="H3588"\w* says, ‘Don’t \w let|strong="H5315"\w* \w Jonathan|strong="H3083"\w* \w know|strong="H3045"\w* \w this|strong="H2063"\w*, \w lest|strong="H6435"\w* \w he|strong="H3588"\w* \w be|strong="H5750"\w* \w grieved|strong="H6087"\w*;’ \w but|strong="H3588"\w* \w truly|strong="H3588"\w* \w as|strong="H5315"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H5315"\w*, \w and|strong="H3068"\w* \w as|strong="H5315"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w* \w lives|strong="H5315"\w*, \w there|strong="H4672"\w* \w is|strong="H3068"\w* \w but|strong="H3588"\w* \w a|strong="H3068"\w* \w step|strong="H6587"\w* \w between|strong="H3045"\w* \w me|strong="H5315"\w* \w and|strong="H3068"\w* \w death|strong="H4194"\w*.” +\p +\v 4 \w Then|strong="H6213"\w* \w Jonathan|strong="H3083"\w* said \w to|strong="H6213"\w* \w David|strong="H1732"\w*, “\w Whatever|strong="H4100"\w* \w your|strong="H6213"\w* \w soul|strong="H5315"\w* desires, \w I|strong="H5315"\w* \w will|strong="H5315"\w* \w even|strong="H6213"\w* \w do|strong="H6213"\w* \w it|strong="H6213"\w* \w for|strong="H6213"\w* \w you|strong="H6213"\w*.” +\p +\v 5 \w David|strong="H1732"\w* said \w to|strong="H5704"\w* \w Jonathan|strong="H3083"\w*, “\w Behold|strong="H2009"\w*, \w tomorrow|strong="H4279"\w* \w is|strong="H2009"\w* \w the|strong="H5704"\w* \w new|strong="H2320"\w* \w moon|strong="H2320"\w*, \w and|strong="H7971"\w* \w I|strong="H5704"\w* \w should|strong="H1732"\w* \w not|strong="H1732"\w* \w fail|strong="H3427"\w* \w to|strong="H5704"\w* dine \w with|strong="H5973"\w* \w the|strong="H5704"\w* \w king|strong="H4428"\w*; \w but|strong="H2009"\w* \w let|strong="H7971"\w* \w me|strong="H7971"\w* \w go|strong="H7971"\w*, \w that|strong="H4428"\w* \w I|strong="H5704"\w* \w may|strong="H4428"\w* \w hide|strong="H5641"\w* myself \w in|strong="H3427"\w* \w the|strong="H5704"\w* \w field|strong="H7704"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w third|strong="H7992"\w* \w day|strong="H2320"\w* \w at|strong="H3427"\w* \w evening|strong="H6153"\w*. +\v 6 \w If|strong="H3588"\w* \w your|strong="H3605"\w* father \w misses|strong="H6485"\w* \w me|strong="H4480"\w* \w at|strong="H1732"\w* \w all|strong="H3605"\w*, \w then|strong="H3588"\w* say, ‘\w David|strong="H1732"\w* \w earnestly|strong="H7592"\w* \w asked|strong="H7592"\w* \w leave|strong="H4480"\w* \w of|strong="H3117"\w* \w me|strong="H4480"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* might \w run|strong="H7323"\w* \w to|strong="H3117"\w* \w Bethlehem|strong="H1035"\w*, \w his|strong="H3605"\w* \w city|strong="H5892"\w*; \w for|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H3117"\w* \w the|strong="H3605"\w* \w yearly|strong="H3117"\w* \w sacrifice|strong="H2077"\w* \w there|strong="H8033"\w* \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w family|strong="H4940"\w*.’ +\v 7 \w If|strong="H3588"\w* \w he|strong="H3588"\w* \w says|strong="H3541"\w*, ‘\w It|strong="H3588"\w* \w is|strong="H2896"\w* \w well|strong="H7965"\w*,’ \w your|strong="H3045"\w* \w servant|strong="H5650"\w* \w shall|strong="H5650"\w* \w have|strong="H3045"\w* \w peace|strong="H7965"\w*; \w but|strong="H3588"\w* \w if|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H2896"\w* \w angry|strong="H2734"\w*, \w then|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w evil|strong="H7451"\w* \w is|strong="H2896"\w* \w determined|strong="H3615"\w* \w by|strong="H7451"\w* \w him|strong="H5973"\w*. +\v 8 \w Therefore|strong="H5921"\w* \w deal|strong="H6213"\w* \w kindly|strong="H2617"\w* \w with|strong="H5973"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3426"\w* \w brought|strong="H6213"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w into|strong="H5921"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*; \w but|strong="H3588"\w* \w if|strong="H3588"\w* \w there|strong="H3426"\w* \w is|strong="H3068"\w* \w iniquity|strong="H5771"\w* \w in|strong="H5921"\w* \w me|strong="H5921"\w*, \w kill|strong="H4191"\w* \w me|strong="H5921"\w* \w yourself|strong="H6213"\w*, \w for|strong="H3588"\w* \w why|strong="H4100"\w* \w should|strong="H3068"\w* \w you|strong="H3588"\w* \w bring|strong="H6213"\w* \w me|strong="H5921"\w* \w to|strong="H5704"\w* \w your|strong="H3068"\w* father?” +\p +\v 9 \w Jonathan|strong="H3083"\w* said, “\w Far|strong="H2486"\w* \w be|strong="H3808"\w* \w it|strong="H5921"\w* \w from|strong="H5921"\w* \w you|strong="H3588"\w*; \w for|strong="H3588"\w* \w if|strong="H3588"\w* \w I|strong="H3588"\w* \w should|strong="H3588"\w* \w at|strong="H5921"\w* \w all|strong="H3045"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w evil|strong="H7451"\w* \w were|strong="H5921"\w* \w determined|strong="H3615"\w* \w by|strong="H5921"\w* \w my|strong="H5921"\w* father \w to|strong="H5921"\w* \w come|strong="H3615"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*, \w then|strong="H3588"\w* wouldn’t \w I|strong="H3588"\w* \w tell|strong="H5046"\w* \w you|strong="H3588"\w* \w that|strong="H3588"\w*?” +\p +\v 10 \w Then|strong="H6030"\w* \w David|strong="H1732"\w* \w said|strong="H6030"\w* \w to|strong="H1732"\w* \w Jonathan|strong="H3083"\w*, “\w Who|strong="H4310"\w* \w will|strong="H4310"\w* \w tell|strong="H5046"\w* \w me|strong="H5046"\w* if \w your|strong="H5046"\w* father \w answers|strong="H6030"\w* \w you|strong="H5046"\w* \w roughly|strong="H7186"\w*?” +\p +\v 11 \w Jonathan|strong="H3083"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w David|strong="H1732"\w*, “\w Come|strong="H3318"\w*! \w Let|strong="H3212"\w*’s \w go|strong="H3212"\w* \w out|strong="H3318"\w* \w into|strong="H3212"\w* \w the|strong="H3318"\w* \w field|strong="H7704"\w*.” \w They|strong="H3318"\w* \w both|strong="H8147"\w* \w went|strong="H3212"\w* \w out|strong="H3318"\w* \w into|strong="H3212"\w* \w the|strong="H3318"\w* \w field|strong="H7704"\w*. +\v 12 \w Jonathan|strong="H3083"\w* said \w to|strong="H3478"\w* \w David|strong="H1732"\w*, “\w By|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3588"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w sounded|strong="H2713"\w* \w out|strong="H7971"\w* \w my|strong="H3068"\w* father \w about|strong="H6256"\w* \w this|strong="H3588"\w* \w time|strong="H6256"\w* \w tomorrow|strong="H4279"\w*, \w or|strong="H3808"\w* \w the|strong="H3588"\w* \w third|strong="H7992"\w* \w day|strong="H6256"\w*, \w behold|strong="H2009"\w*, \w if|strong="H3588"\w* \w there|strong="H2009"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w* \w toward|strong="H3068"\w* \w David|strong="H1732"\w*, won’t \w I|strong="H3588"\w* \w then|strong="H2009"\w* \w send|strong="H7971"\w* \w to|strong="H3478"\w* \w you|strong="H3588"\w* \w and|strong="H3478"\w* \w disclose|strong="H1540"\w* \w it|strong="H3588"\w* \w to|strong="H3478"\w* \w you|strong="H3588"\w*? +\v 13 \w Yahweh|strong="H3068"\w* \w do|strong="H6213"\w* \w so|strong="H6213"\w* \w to|strong="H1980"\w* \w Jonathan|strong="H3083"\w* \w and|strong="H1980"\w* \w more|strong="H3254"\w* \w also|strong="H3068"\w*, \w should|strong="H3068"\w* \w it|strong="H5921"\w* \w please|strong="H3190"\w* \w my|strong="H3068"\w* father \w to|strong="H1980"\w* \w do|strong="H6213"\w* \w you|strong="H3588"\w* \w evil|strong="H7451"\w*, \w if|strong="H3588"\w* \w I|strong="H3588"\w* don’t \w disclose|strong="H1540"\w* \w it|strong="H5921"\w* \w to|strong="H1980"\w* \w you|strong="H3588"\w* \w and|strong="H1980"\w* \w send|strong="H7971"\w* \w you|strong="H3588"\w* \w away|strong="H7971"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H1961"\w* \w go|strong="H1980"\w* \w in|strong="H5921"\w* \w peace|strong="H7965"\w*. \w May|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w* \w as|strong="H1961"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w been|strong="H1961"\w* \w with|strong="H5973"\w* \w my|strong="H3068"\w* father. +\v 14 \w You|strong="H6213"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* only \w show|strong="H6213"\w* \w me|strong="H5978"\w* \w the|strong="H6213"\w* loving \w kindness|strong="H2617"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w while|strong="H5750"\w* \w I|strong="H3808"\w* \w still|strong="H5750"\w* \w live|strong="H2416"\w*, \w that|strong="H3068"\w* \w I|strong="H3808"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*; +\v 15 \w but|strong="H3808"\w* \w you|strong="H6440"\w* \w shall|strong="H3068"\w* \w also|strong="H3068"\w* \w not|strong="H3808"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w your|strong="H3068"\w* \w kindness|strong="H2617"\w* \w from|strong="H6440"\w* \w my|strong="H3068"\w* \w house|strong="H1004"\w* \w forever|strong="H5769"\w*, \w no|strong="H3808"\w*, \w not|strong="H3808"\w* \w when|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w every|strong="H3068"\w* \w one|strong="H3808"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* enemies \w of|strong="H1004"\w* \w David|strong="H1732"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* earth.” +\v 16 \w So|strong="H3027"\w* \w Jonathan|strong="H3083"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* covenant \w with|strong="H5973"\w* \w David|strong="H1732"\w*’s \w house|strong="H1004"\w*, saying, “\w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w require|strong="H1245"\w* \w it|strong="H3772"\w* \w at|strong="H3068"\w* \w the|strong="H3068"\w* \w hand|strong="H3027"\w* \w of|strong="H1004"\w* \w David|strong="H1732"\w*’s \w enemies|strong="H3027"\w*.” +\p +\v 17 \w Jonathan|strong="H3083"\w* \w caused|strong="H3083"\w* \w David|strong="H1732"\w* \w to|strong="H1732"\w* \w swear|strong="H7650"\w* \w again|strong="H3254"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* love \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H1732"\w* \w to|strong="H1732"\w* \w him|strong="H1732"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* loved \w him|strong="H1732"\w* \w as|strong="H5315"\w* \w he|strong="H3588"\w* loved \w his|strong="H1732"\w* \w own|strong="H5315"\w* \w soul|strong="H5315"\w*. +\v 18 \w Then|strong="H3588"\w* \w Jonathan|strong="H3083"\w* said \w to|strong="H2320"\w* \w him|strong="H6485"\w*, “\w Tomorrow|strong="H4279"\w* \w is|strong="H2320"\w* \w the|strong="H3588"\w* \w new|strong="H2320"\w* \w moon|strong="H2320"\w*, \w and|strong="H3083"\w* \w you|strong="H3588"\w* \w will|strong="H2320"\w* \w be|strong="H2320"\w* \w missed|strong="H6485"\w*, \w because|strong="H3588"\w* \w your|strong="H3588"\w* \w seat|strong="H4186"\w* \w will|strong="H2320"\w* \w be|strong="H2320"\w* \w empty|strong="H6485"\w*. +\v 19 \w When|strong="H3117"\w* \w you|strong="H3117"\w* \w have|strong="H3117"\w* \w stayed|strong="H3427"\w* \w three|strong="H8027"\w* \w days|strong="H3117"\w*, \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w quickly|strong="H3966"\w* \w and|strong="H3117"\w* \w come|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3117"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w you|strong="H3117"\w* \w hid|strong="H5641"\w* \w yourself|strong="H8033"\w* \w when|strong="H3117"\w* \w this|strong="H3117"\w* started, \w and|strong="H3117"\w* \w remain|strong="H3427"\w* \w by|strong="H3117"\w* \w the|strong="H3117"\w* stone Ezel. +\v 20 \w I|strong="H7971"\w* \w will|strong="H7971"\w* \w shoot|strong="H3384"\w* \w three|strong="H7969"\w* \w arrows|strong="H2678"\w* \w on|strong="H7971"\w* \w its|strong="H3384"\w* \w side|strong="H6654"\w*, as though \w I|strong="H7971"\w* \w shot|strong="H3384"\w* \w at|strong="H7969"\w* \w a|strong="H3068"\w* \w mark|strong="H4307"\w*. +\v 21 \w Behold|strong="H2009"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w the|strong="H3588"\w* \w boy|strong="H5288"\w*, \w saying|strong="H1697"\w*, ‘\w Go|strong="H3212"\w*, \w find|strong="H4672"\w* \w the|strong="H3588"\w* \w arrows|strong="H2678"\w*!’ \w If|strong="H3588"\w* \w I|strong="H3588"\w* tell \w the|strong="H3588"\w* \w boy|strong="H5288"\w*, ‘\w Behold|strong="H2009"\w*, \w the|strong="H3588"\w* \w arrows|strong="H2678"\w* \w are|strong="H1697"\w* \w on|strong="H3068"\w* \w this|strong="H1697"\w* \w side|strong="H2008"\w* \w of|strong="H3068"\w* \w you|strong="H3588"\w*. \w Take|strong="H3947"\w* \w them|strong="H7971"\w*;’ \w then|strong="H2009"\w* \w come|strong="H3212"\w*, \w for|strong="H3588"\w* \w there|strong="H2009"\w* \w is|strong="H3068"\w* \w peace|strong="H7965"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w* \w and|strong="H3068"\w* \w no|strong="H4480"\w* danger, \w as|strong="H1697"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*. +\v 22 \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w I|strong="H3588"\w* say \w this|strong="H3541"\w* \w to|strong="H3212"\w* \w the|strong="H3588"\w* \w boy|strong="H5958"\w*, ‘\w Behold|strong="H2009"\w*, \w the|strong="H3588"\w* \w arrows|strong="H2678"\w* \w are|strong="H3068"\w* \w beyond|strong="H4480"\w* \w you|strong="H3588"\w*,’ \w then|strong="H2009"\w* \w go|strong="H3212"\w* \w your|strong="H3068"\w* \w way|strong="H3212"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w sent|strong="H7971"\w* \w you|strong="H3588"\w* \w away|strong="H7971"\w*. +\v 23 \w Concerning|strong="H1697"\w* \w the|strong="H3068"\w* \w matter|strong="H1697"\w* \w which|strong="H3068"\w* \w you|strong="H5704"\w* \w and|strong="H3068"\w* \w I|strong="H5704"\w* \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w of|strong="H3068"\w*, \w behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w between|strong="H5704"\w* \w you|strong="H5704"\w* \w and|strong="H3068"\w* \w me|strong="H1696"\w* \w forever|strong="H5769"\w*.” +\p +\v 24 \w So|strong="H1961"\w* \w David|strong="H1732"\w* \w hid|strong="H5641"\w* \w himself|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w field|strong="H7704"\w*. \w When|strong="H1961"\w* \w the|strong="H5921"\w* \w new|strong="H2320"\w* \w moon|strong="H2320"\w* \w had|strong="H1961"\w* \w come|strong="H1961"\w*, \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w sat|strong="H3427"\w* \w himself|strong="H3427"\w* \w down|strong="H3427"\w* \w to|strong="H1961"\w* \w eat|strong="H3899"\w* \w food|strong="H3899"\w*. +\v 25 \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w sat|strong="H3427"\w* \w on|strong="H5921"\w* \w his|strong="H1732"\w* \w seat|strong="H4186"\w*, \w as|strong="H3427"\w* \w at|strong="H3427"\w* \w other|strong="H6471"\w* \w times|strong="H6471"\w*, \w even|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w seat|strong="H4186"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w wall|strong="H7023"\w*; \w and|strong="H6965"\w* \w Jonathan|strong="H3083"\w* \w stood|strong="H6965"\w* \w up|strong="H6965"\w*, \w and|strong="H6965"\w* Abner \w sat|strong="H3427"\w* \w by|strong="H5921"\w* \w Saul|strong="H7586"\w*’s \w side|strong="H6654"\w*, \w but|strong="H4428"\w* \w David|strong="H1732"\w*’s \w place|strong="H4725"\w* \w was|strong="H1732"\w* \w empty|strong="H6485"\w*. +\v 26 \w Nevertheless|strong="H3588"\w* \w Saul|strong="H7586"\w* didn’t \w say|strong="H1696"\w* \w anything|strong="H3972"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w*, \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w thought|strong="H1696"\w*, “\w Something|strong="H3972"\w* \w has|strong="H3117"\w* happened \w to|strong="H1696"\w* \w him|strong="H1931"\w*. \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w not|strong="H3808"\w* \w clean|strong="H2889"\w*. \w Surely|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w not|strong="H3808"\w* \w clean|strong="H2889"\w*.” +\p +\v 27 \w On|strong="H3117"\w* \w the|strong="H3117"\w* \w next|strong="H4283"\w* \w day|strong="H3117"\w* \w after|strong="H4283"\w* \w the|strong="H3117"\w* \w new|strong="H2320"\w* \w moon|strong="H2320"\w*, \w the|strong="H3117"\w* \w second|strong="H8145"\w* \w day|strong="H3117"\w*, \w David|strong="H1732"\w*’s \w place|strong="H4725"\w* \w was|strong="H1961"\w* \w empty|strong="H6485"\w*. \w Saul|strong="H7586"\w* said \w to|strong="H1961"\w* \w Jonathan|strong="H3083"\w* \w his|strong="H1732"\w* \w son|strong="H1121"\w*, “\w Why|strong="H4069"\w* didn’t \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jesse|strong="H3448"\w* \w come|strong="H1961"\w* \w to|strong="H1961"\w* \w eat|strong="H3899"\w*, \w either|strong="H1571"\w* \w yesterday|strong="H8543"\w*, \w or|strong="H3808"\w* \w today|strong="H3117"\w*?” +\p +\v 28 \w Jonathan|strong="H3083"\w* \w answered|strong="H6030"\w* \w Saul|strong="H7586"\w*, “\w David|strong="H1732"\w* \w earnestly|strong="H7592"\w* \w asked|strong="H7592"\w* permission \w of|strong="H7592"\w* \w me|strong="H5978"\w* \w to|strong="H5704"\w* \w go|strong="H1732"\w* \w to|strong="H5704"\w* \w Bethlehem|strong="H1035"\w*. +\v 29 \w He|strong="H1931"\w* \w said|strong="H3651"\w*, ‘\w Please|strong="H4994"\w* \w let|strong="H7971"\w* \w me|strong="H4994"\w* \w go|strong="H7971"\w*, \w for|strong="H3588"\w* \w our|strong="H7200"\w* \w family|strong="H4940"\w* \w has|strong="H4428"\w* \w a|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*. \w My|strong="H7200"\w* brother \w has|strong="H4428"\w* \w commanded|strong="H6680"\w* \w me|strong="H4994"\w* \w to|strong="H7971"\w* \w be|strong="H3808"\w* \w there|strong="H4672"\w*. \w Now|strong="H6258"\w*, \w if|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H5869"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w eyes|strong="H5869"\w*, \w please|strong="H4994"\w* \w let|strong="H7971"\w* \w me|strong="H4994"\w* \w go|strong="H7971"\w* \w away|strong="H7971"\w* \w and|strong="H7971"\w* \w see|strong="H7200"\w* \w my|strong="H7200"\w* brothers.’ \w Therefore|strong="H3651"\w* \w he|strong="H1931"\w* \w has|strong="H4428"\w* \w not|strong="H3808"\w* \w come|strong="H4672"\w* \w to|strong="H7971"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w table|strong="H7979"\w*.” +\p +\v 30 \w Then|strong="H3588"\w* \w Saul|strong="H7586"\w*’s anger \w burned|strong="H2734"\w* \w against|strong="H2734"\w* \w Jonathan|strong="H3083"\w*, \w and|strong="H1121"\w* \w he|strong="H3588"\w* said \w to|strong="H1121"\w* \w him|strong="H3045"\w*, “\w You|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w perverse|strong="H5753"\w* \w rebellious|strong="H4780"\w* woman, don’t \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3045"\w* \w chosen|strong="H3045"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jesse|strong="H3448"\w* \w to|strong="H1121"\w* \w your|strong="H3045"\w* own \w shame|strong="H1322"\w*, \w and|strong="H1121"\w* \w to|strong="H1121"\w* \w the|strong="H3588"\w* \w shame|strong="H1322"\w* \w of|strong="H1121"\w* \w your|strong="H3045"\w* mother’s \w nakedness|strong="H6172"\w*? +\v 31 \w For|strong="H3588"\w* \w as|strong="H3117"\w* \w long|strong="H3117"\w* \w as|strong="H3117"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jesse|strong="H3448"\w* \w lives|strong="H2425"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth, \w you|strong="H3588"\w* \w will|strong="H1121"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w established|strong="H3559"\w*, \w nor|strong="H3808"\w* \w will|strong="H1121"\w* \w your|strong="H3605"\w* \w kingdom|strong="H4438"\w*. \w Therefore|strong="H5921"\w* \w now|strong="H6258"\w* \w send|strong="H7971"\w* \w and|strong="H1121"\w* \w bring|strong="H3947"\w* \w him|strong="H5921"\w* \w to|strong="H7971"\w* \w me|strong="H7971"\w*, \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w shall|strong="H1121"\w* \w surely|strong="H3588"\w* \w die|strong="H4194"\w*!” +\p +\v 32 \w Jonathan|strong="H3083"\w* \w answered|strong="H6030"\w* \w Saul|strong="H7586"\w* \w his|strong="H6213"\w* father, \w and|strong="H6030"\w* \w said|strong="H6030"\w* \w to|strong="H4191"\w* \w him|strong="H6213"\w*, “\w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w he|strong="H6213"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*? \w What|strong="H4100"\w* \w has|strong="H4100"\w* \w he|strong="H6213"\w* \w done|strong="H6213"\w*?” +\p +\v 33 \w Saul|strong="H7586"\w* \w cast|strong="H2904"\w* \w his|strong="H1732"\w* \w spear|strong="H2595"\w* \w at|strong="H5921"\w* \w him|strong="H5921"\w* \w to|strong="H4191"\w* \w strike|strong="H5221"\w* \w him|strong="H5921"\w*. \w By|strong="H5921"\w* \w this|strong="H1931"\w* \w Jonathan|strong="H3083"\w* \w knew|strong="H3045"\w* \w that|strong="H3588"\w* \w his|strong="H1732"\w* father \w was|strong="H1732"\w* \w determined|strong="H3617"\w* \w to|strong="H4191"\w* \w put|strong="H4191"\w* \w David|strong="H1732"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. +\v 34 \w So|strong="H3808"\w* \w Jonathan|strong="H3083"\w* \w arose|strong="H6965"\w* \w from|strong="H3117"\w* \w the|strong="H3588"\w* \w table|strong="H7979"\w* \w in|strong="H3117"\w* \w fierce|strong="H2750"\w* anger, \w and|strong="H6965"\w* ate \w no|strong="H3808"\w* \w food|strong="H3899"\w* \w the|strong="H3588"\w* \w second|strong="H8145"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3588"\w* \w month|strong="H2320"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w was|strong="H1732"\w* \w grieved|strong="H6087"\w* \w for|strong="H3588"\w* \w David|strong="H1732"\w*, \w because|strong="H3588"\w* \w his|strong="H1732"\w* father \w had|strong="H1732"\w* treated \w him|strong="H5973"\w* shamefully. +\p +\v 35 \w In|strong="H1732"\w* \w the|strong="H3318"\w* \w morning|strong="H1242"\w*, \w Jonathan|strong="H3083"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H3318"\w* \w field|strong="H7704"\w* \w at|strong="H1732"\w* \w the|strong="H3318"\w* \w time|strong="H4150"\w* \w appointed|strong="H4150"\w* \w with|strong="H5973"\w* \w David|strong="H1732"\w*, \w and|strong="H1732"\w* \w a|strong="H3068"\w* \w little|strong="H6996"\w* \w boy|strong="H5288"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*. +\v 36 \w He|strong="H1931"\w* said \w to|strong="H5674"\w* \w his|strong="H5674"\w* \w boy|strong="H5288"\w*, “\w Run|strong="H7323"\w*, \w find|strong="H4672"\w* \w now|strong="H4994"\w* \w the|strong="H5674"\w* \w arrows|strong="H2678"\w* \w which|strong="H1931"\w* \w I|strong="H5288"\w* \w shoot|strong="H3384"\w*.” As \w the|strong="H5674"\w* \w boy|strong="H5288"\w* \w ran|strong="H7323"\w*, \w he|strong="H1931"\w* \w shot|strong="H3384"\w* \w an|strong="H4672"\w* \w arrow|strong="H2678"\w* \w beyond|strong="H5674"\w* \w him|strong="H4672"\w*. +\v 37 \w When|strong="H5704"\w* \w the|strong="H4480"\w* \w boy|strong="H5288"\w* \w had|strong="H3083"\w* \w come|strong="H5288"\w* \w to|strong="H5704"\w* \w the|strong="H4480"\w* \w place|strong="H4725"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w arrow|strong="H2678"\w* \w which|strong="H4725"\w* \w Jonathan|strong="H3083"\w* \w had|strong="H3083"\w* \w shot|strong="H3384"\w*, \w Jonathan|strong="H3083"\w* \w cried|strong="H7121"\w* \w after|strong="H4480"\w* \w the|strong="H4480"\w* \w boy|strong="H5288"\w*, \w and|strong="H5288"\w* \w said|strong="H7121"\w*, “Isn’t \w the|strong="H4480"\w* \w arrow|strong="H2678"\w* \w beyond|strong="H4480"\w* \w you|strong="H5704"\w*?” +\v 38 \w Jonathan|strong="H3083"\w* \w cried|strong="H7121"\w* \w after|strong="H7121"\w* \w the|strong="H7121"\w* \w boy|strong="H5288"\w*, “\w Go|strong="H5288"\w* \w fast|strong="H5975"\w*! \w Hurry|strong="H2363"\w*! Don’t \w delay|strong="H5975"\w*!” \w Jonathan|strong="H3083"\w*’s \w boy|strong="H5288"\w* \w gathered|strong="H3950"\w* \w up|strong="H5975"\w* \w the|strong="H7121"\w* \w arrows|strong="H2678"\w*, \w and|strong="H5288"\w* came \w to|strong="H7121"\w* \w his|strong="H7121"\w* master. +\v 39 \w But|strong="H3808"\w* \w the|strong="H3045"\w* \w boy|strong="H5288"\w* didn’t \w know|strong="H3045"\w* \w anything|strong="H1697"\w*. Only \w Jonathan|strong="H3083"\w* \w and|strong="H1732"\w* \w David|strong="H1732"\w* \w knew|strong="H3045"\w* \w the|strong="H3045"\w* \w matter|strong="H1697"\w*. +\v 40 \w Jonathan|strong="H3083"\w* \w gave|strong="H5414"\w* \w his|strong="H5414"\w* \w weapons|strong="H3627"\w* \w to|strong="H3212"\w* \w his|strong="H5414"\w* \w boy|strong="H5288"\w*, \w and|strong="H3212"\w* said \w to|strong="H3212"\w* \w him|strong="H5414"\w*, “\w Go|strong="H3212"\w*, \w carry|strong="H3212"\w* \w them|strong="H5414"\w* \w to|strong="H3212"\w* \w the|strong="H5414"\w* \w city|strong="H5892"\w*.” +\p +\v 41 \w As|strong="H5704"\w* soon \w as|strong="H5704"\w* \w the|strong="H5704"\w* \w boy|strong="H5288"\w* \w was|strong="H1732"\w* \w gone|strong="H5307"\w*, \w David|strong="H1732"\w* \w arose|strong="H6965"\w* \w out|strong="H5307"\w* \w of|strong="H5045"\w* \w the|strong="H5704"\w* \w south|strong="H5045"\w*, \w and|strong="H6965"\w* \w fell|strong="H5307"\w* \w on|strong="H5307"\w* \w his|strong="H1732"\w* face \w to|strong="H5704"\w* \w the|strong="H5704"\w* ground, \w and|strong="H6965"\w* \w bowed|strong="H7812"\w* \w himself|strong="H7812"\w* \w three|strong="H7969"\w* \w times|strong="H6471"\w*. \w They|strong="H5704"\w* \w kissed|strong="H5401"\w* \w one|strong="H7453"\w* \w another|strong="H7453"\w* \w and|strong="H6965"\w* \w wept|strong="H1058"\w* \w with|strong="H1732"\w* \w one|strong="H7453"\w* \w another|strong="H7453"\w*, \w and|strong="H6965"\w* \w David|strong="H1732"\w* \w wept|strong="H1058"\w* \w the|strong="H5704"\w* most. +\v 42 \w Jonathan|strong="H3083"\w* said \w to|strong="H5704"\w* \w David|strong="H1732"\w*, “\w Go|strong="H1980"\w* \w in|strong="H1980"\w* \w peace|strong="H7965"\w*, \w because|strong="H3068"\w* \w we|strong="H3068"\w* \w have|strong="H1961"\w* \w both|strong="H8147"\w* \w sworn|strong="H7650"\w* \w in|strong="H1980"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*, saying, ‘\w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w between|strong="H7965"\w* \w me|strong="H1961"\w* \w and|strong="H1980"\w* \w you|strong="H5704"\w*, \w and|strong="H1980"\w* \w between|strong="H7965"\w* \w my|strong="H3068"\w* \w offspring|strong="H2233"\w* \w and|strong="H1980"\w* \w your|strong="H3068"\w* \w offspring|strong="H2233"\w*, \w forever|strong="H5769"\w*.’” \w He|strong="H5704"\w* arose \w and|strong="H1980"\w* \w departed|strong="H1980"\w*; \w and|strong="H1980"\w* \w Jonathan|strong="H3083"\w* \w went|strong="H1980"\w* \w into|strong="H1980"\w* \w the|strong="H3068"\w* city. +\c 21 +\p +\v 1 \w Then|strong="H6965"\w* David \w came|strong="H3212"\w* \w to|strong="H3212"\w* Nob \w to|strong="H3212"\w* Ahimelech \w the|strong="H6965"\w* priest. Ahimelech \w came|strong="H3212"\w* \w to|strong="H3212"\w* meet David trembling, \w and|strong="H6965"\w* said \w to|strong="H3212"\w* \w him|strong="H3083"\w*, “Why \w are|strong="H5892"\w* \w you|strong="H3212"\w* alone, \w and|strong="H6965"\w* \w no|strong="H6965"\w* man \w with|strong="H3212"\w* \w you|strong="H3212"\w*?” +\v 2 \w David|strong="H1732"\w* said \w to|strong="H1732"\w* Ahimelech \w the|strong="H1732"\w* \w priest|strong="H3548"\w*, “\w The|strong="H1732"\w* king \w has|strong="H3548"\w* commanded me \w to|strong="H1732"\w* do something, \w and|strong="H3548"\w* \w has|strong="H3548"\w* said \w to|strong="H1732"\w* me, ‘Let no one know \w anything|strong="H7122"\w* \w about|strong="H1732"\w* \w the|strong="H1732"\w* business \w about|strong="H1732"\w* \w which|strong="H3548"\w* \w I|strong="H7122"\w* send \w you|strong="H7122"\w*, \w and|strong="H3548"\w* \w what|strong="H1732"\w* \w I|strong="H7122"\w* \w have|strong="H3548"\w* commanded \w you|strong="H7122"\w*. \w I|strong="H7122"\w* \w have|strong="H3548"\w* \w sent|strong="H1732"\w* \w the|strong="H1732"\w* \w young|strong="H1732"\w* men \w to|strong="H1732"\w* \w a|strong="H3068"\w* certain place.’ +\v 3 \w Now|strong="H4428"\w* \w therefore|strong="H1732"\w* \w what|strong="H1697"\w* \w is|strong="H1697"\w* under \w your|strong="H3045"\w* hand? Please \w give|strong="H6680"\w* \w me|strong="H7971"\w* five loaves \w of|strong="H4428"\w* bread \w in|strong="H4428"\w* \w my|strong="H1732"\w* hand, \w or|strong="H4428"\w* whatever \w is|strong="H1697"\w* available.” +\p +\v 4 \w The|strong="H5414"\w* priest answered \w David|strong="H3027"\w*, \w and|strong="H3027"\w* said, “\w I|strong="H5414"\w* \w have|strong="H3426"\w* \w no|strong="H4672"\w* common \w bread|strong="H3899"\w*, \w but|strong="H6258"\w* \w there|strong="H3426"\w* \w is|strong="H3426"\w* holy \w bread|strong="H3899"\w*; \w if|strong="H3426"\w* only \w the|strong="H5414"\w* \w young|strong="H4672"\w* men \w have|strong="H3426"\w* \w kept|strong="H5414"\w* \w themselves|strong="H5414"\w* \w from|strong="H3027"\w* women.” +\p +\v 5 \w David|strong="H1732"\w* \w answered|strong="H6030"\w* \w the|strong="H3588"\w* \w priest|strong="H3548"\w*, \w and|strong="H6030"\w* \w said|strong="H6030"\w* \w to|strong="H8104"\w* \w him|strong="H3027"\w*, “\w Truly|strong="H3588"\w*, women \w have|strong="H3426"\w* \w been|strong="H3426"\w* \w kept|strong="H8104"\w* \w from|strong="H3027"\w* \w us|strong="H3588"\w* \w as|strong="H3588"\w* usual \w these|strong="H1732"\w* three days. \w When|strong="H3588"\w* \w I|strong="H3588"\w* \w came|strong="H3548"\w* \w out|strong="H3027"\w*, \w the|strong="H3588"\w* vessels \w of|strong="H3027"\w* \w the|strong="H3588"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w were|strong="H3027"\w* \w holy|strong="H6944"\w*, \w though|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H1732"\w* \w only|strong="H3588"\w* \w a|strong="H3068"\w* \w common|strong="H2455"\w* journey. \w How|strong="H3588"\w* \w much|strong="H3027"\w* \w more|strong="H3588"\w* \w then|strong="H6030"\w* today \w shall|strong="H3548"\w* \w their|strong="H3588"\w* vessels \w be|strong="H3426"\w* \w holy|strong="H6944"\w*?” +\v 6 \w So|strong="H1961"\w* \w the|strong="H3588"\w* \w priest|strong="H3548"\w* \w gave|strong="H3318"\w* \w him|strong="H3318"\w* \w holy|strong="H6944"\w* bread; \w for|strong="H3588"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H6113"\w* bread \w there|strong="H1961"\w* \w but|strong="H3588"\w* \w the|strong="H3588"\w* \w show|strong="H1961"\w* bread \w that|strong="H3588"\w* \w was|strong="H1961"\w* \w taken|strong="H1961"\w* \w from|strong="H3318"\w* \w before|strong="H8032"\w* \w Yahweh|strong="H3068"\w*, \w to|strong="H3318"\w* \w be|strong="H1961"\w* replaced \w with|strong="H3318"\w* hot bread \w in|strong="H3117"\w* \w the|strong="H3588"\w* \w day|strong="H3117"\w* \w when|strong="H3588"\w* \w it|strong="H1931"\w* \w was|strong="H1961"\w* \w taken|strong="H1961"\w* \w away|strong="H3318"\w*. +\p +\v 7 \w Now|strong="H1961"\w* \w a|strong="H3068"\w* certain \w man|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w servants|strong="H6440"\w* \w of|strong="H3068"\w* Saul \w was|strong="H3068"\w* \w there|strong="H8033"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w*, detained \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H3068"\w* \w his|strong="H5414"\w* name \w was|strong="H3068"\w* Doeg \w the|strong="H6440"\w* Edomite, \w the|strong="H6440"\w* best \w of|strong="H3068"\w* \w the|strong="H6440"\w* herdsmen \w who|strong="H3068"\w* \w belonged|strong="H1961"\w* \w to|strong="H3068"\w* Saul. +\p +\v 8 \w David|strong="H3117"\w* said \w to|strong="H3068"\w* Ahimelech, “Isn’t \w there|strong="H8033"\w* \w here|strong="H8033"\w* \w under|strong="H6440"\w* \w your|strong="H3068"\w* hand spear \w or|strong="H3117"\w* sword? \w For|strong="H6440"\w* \w I|strong="H3117"\w* haven’t \w brought|strong="H3068"\w* \w my|strong="H3068"\w* sword \w or|strong="H3117"\w* \w my|strong="H3068"\w* weapons \w with|strong="H3068"\w* \w me|strong="H6440"\w*, \w because|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H6440"\w*’s business \w required|strong="H3117"\w* haste.” +\p +\v 9 \w The|strong="H3588"\w* priest \w said|strong="H1697"\w*, “\w Behold|strong="H3808"\w*, \w the|strong="H3588"\w* \w sword|strong="H2719"\w* \w of|strong="H4428"\w* Goliath \w the|strong="H3588"\w* Philistine, \w whom|strong="H3588"\w* \w you|strong="H3588"\w* \w killed|strong="H2719"\w* \w in|strong="H4428"\w* \w the|strong="H3588"\w* valley \w of|strong="H4428"\w* Elah, \w is|strong="H3426"\w* \w here|strong="H6311"\w* wrapped \w in|strong="H4428"\w* \w a|strong="H3068"\w* cloth behind \w the|strong="H3588"\w* ephod. \w If|strong="H3588"\w* \w you|strong="H3588"\w* \w would|strong="H1697"\w* \w like|strong="H1961"\w* \w to|strong="H1961"\w* \w take|strong="H3947"\w* \w that|strong="H3588"\w*, \w take|strong="H3947"\w* \w it|strong="H3588"\w*, \w for|strong="H3588"\w* \w there|strong="H3426"\w* \w is|strong="H3426"\w* \w no|strong="H3808"\w* \w other|strong="H6311"\w* \w except|strong="H3588"\w* \w that|strong="H3588"\w* \w here|strong="H6311"\w*.” +\p \w David|strong="H1732"\w* \w said|strong="H1697"\w*, “\w There|strong="H3426"\w* \w is|strong="H3426"\w* \w none|strong="H3808"\w* \w like|strong="H1961"\w* \w that|strong="H3588"\w*. \w Give|strong="H3947"\w* \w it|strong="H3588"\w* \w to|strong="H1961"\w* \w me|strong="H3947"\w*.” +\p +\v 10 \w David|strong="H1732"\w* arose \w and|strong="H3548"\w* fled \w that|strong="H3588"\w* day \w for|strong="H3588"\w* fear \w of|strong="H6010"\w* \w Saul|strong="H1931"\w*, \w and|strong="H3548"\w* \w went|strong="H1732"\w* \w to|strong="H5414"\w* Achish \w the|strong="H3588"\w* king \w of|strong="H6010"\w* Gath. +\v 11 \w The|strong="H6440"\w* \w servants|strong="H6440"\w* \w of|strong="H4428"\w* Achish said \w to|strong="H6440"\w* \w him|strong="H6440"\w*, “Isn’t \w this|strong="H1931"\w* \w David|strong="H1732"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*? Didn’t \w they|strong="H3117"\w* sing \w to|strong="H6440"\w* \w one|strong="H1931"\w* \w another|strong="H6440"\w* \w about|strong="H3117"\w* \w him|strong="H6440"\w* \w in|strong="H4428"\w* dances, saying, +\q1 ‘\w Saul|strong="H7586"\w* \w has|strong="H4428"\w* slain \w his|strong="H1732"\w* thousands, +\q2 \w and|strong="H6965"\w* \w David|strong="H1732"\w* \w his|strong="H1732"\w* \w ten|strong="H1732"\w* thousands’?” +\p +\v 12 \w David|strong="H1732"\w* \w laid|strong="H1732"\w* \w up|strong="H6030"\w* \w these|strong="H2088"\w* words \w in|strong="H4428"\w* \w his|strong="H1732"\w* heart, \w and|strong="H6030"\w* \w was|strong="H1732"\w* \w very|strong="H2088"\w* afraid \w of|strong="H4428"\w* Achish \w the|strong="H5221"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Gath. +\v 13 \w He|strong="H1732"\w* changed \w his|strong="H7760"\w* behavior \w before|strong="H6440"\w* \w them|strong="H6440"\w* \w and|strong="H4428"\w* pretended \w to|strong="H6440"\w* \w be|strong="H1697"\w* insane \w in|strong="H4428"\w* \w their|strong="H7760"\w* hands, \w and|strong="H4428"\w* scribbled \w on|strong="H7760"\w* \w the|strong="H6440"\w* doors \w of|strong="H4428"\w* \w the|strong="H6440"\w* gate, \w and|strong="H4428"\w* \w let|strong="H7760"\w* \w his|strong="H7760"\w* spittle fall \w down|strong="H7760"\w* \w on|strong="H7760"\w* \w his|strong="H7760"\w* beard. +\v 14 \w Then|strong="H3381"\w* Achish said \w to|strong="H3381"\w* \w his|strong="H5921"\w* servants, “\w Look|strong="H5869"\w*, \w you|strong="H5921"\w* \w see|strong="H5869"\w* \w the|strong="H5921"\w* \w man|strong="H8179"\w* \w is|strong="H3027"\w* insane. \w Why|strong="H5921"\w* \w then|strong="H3381"\w* \w have|strong="H5869"\w* \w you|strong="H5921"\w* \w brought|strong="H3381"\w* \w him|strong="H5921"\w* \w to|strong="H3381"\w* \w me|strong="H5921"\w*? +\v 15 \w Do|strong="H4100"\w* \w I|strong="H2009"\w* lack \w madmen|strong="H7696"\w*, \w that|strong="H7200"\w* \w you|strong="H4100"\w* \w have|strong="H5650"\w* \w brought|strong="H5650"\w* \w this|strong="H7200"\w* \w fellow|strong="H7696"\w* \w to|strong="H5650"\w* play \w the|strong="H7200"\w* \w madman|strong="H7696"\w* \w in|strong="H5650"\w* \w my|strong="H7200"\w* presence? \w Should|strong="H4100"\w* \w this|strong="H7200"\w* \w fellow|strong="H7696"\w* come \w into|strong="H7200"\w* \w my|strong="H7200"\w* house?” +\c 22 +\p +\v 1 \w David|strong="H1732"\w* \w therefore|strong="H1732"\w* \w departed|strong="H3212"\w* \w from|strong="H3381"\w* \w there|strong="H8033"\w* \w and|strong="H1004"\w* \w escaped|strong="H4422"\w* \w to|strong="H3381"\w* \w Adullam|strong="H5725"\w*’s \w cave|strong="H4631"\w*. \w When|strong="H8085"\w* \w his|strong="H3605"\w* brothers \w and|strong="H1004"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* father’s \w house|strong="H1004"\w* \w heard|strong="H8085"\w* \w it|strong="H3381"\w*, \w they|strong="H8033"\w* \w went|strong="H3212"\w* \w down|strong="H3381"\w* \w there|strong="H8033"\w* \w to|strong="H3381"\w* \w him|strong="H3381"\w*. +\v 2 \w Everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w was|strong="H1961"\w* \w in|strong="H5921"\w* \w distress|strong="H4689"\w*, \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w was|strong="H1961"\w* \w in|strong="H5921"\w* \w debt|strong="H5378"\w*, \w and|strong="H3967"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w was|strong="H1961"\w* \w discontented|strong="H4751"\w* \w gathered|strong="H6908"\w* \w themselves|strong="H5315"\w* \w to|strong="H1961"\w* \w him|strong="H5921"\w*; \w and|strong="H3967"\w* \w he|strong="H3605"\w* \w became|strong="H1961"\w* \w captain|strong="H8269"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w*. \w There|strong="H1961"\w* \w were|strong="H1961"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w* \w about|strong="H1961"\w* four \w hundred|strong="H3967"\w* \w men|strong="H3605"\w*. +\v 3 \w David|strong="H1732"\w* \w went|strong="H3212"\w* \w from|strong="H3318"\w* \w there|strong="H8033"\w* \w to|strong="H5704"\w* \w Mizpeh|strong="H4708"\w* \w of|strong="H4428"\w* \w Moab|strong="H4124"\w*; \w and|strong="H4428"\w* \w he|strong="H5704"\w* \w said|strong="H3318"\w* \w to|strong="H5704"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Moab|strong="H4124"\w*, “\w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w my|strong="H1732"\w* father \w and|strong="H4428"\w* \w my|strong="H1732"\w* mother \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H5704"\w* \w you|strong="H5704"\w*, \w until|strong="H5704"\w* \w I|strong="H5704"\w* \w know|strong="H3045"\w* \w what|strong="H4100"\w* God \w will|strong="H4428"\w* \w do|strong="H6213"\w* \w for|strong="H5704"\w* \w me|strong="H4994"\w*.” +\v 4 \w He|strong="H3117"\w* \w brought|strong="H5148"\w* \w them|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Moab|strong="H4124"\w*; \w and|strong="H4428"\w* \w they|strong="H3117"\w* \w lived|strong="H3427"\w* \w with|strong="H5973"\w* \w him|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w time|strong="H3117"\w* \w that|strong="H3605"\w* \w David|strong="H1732"\w* \w was|strong="H1961"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w stronghold|strong="H4686"\w*. +\v 5 \w The|strong="H1732"\w* \w prophet|strong="H5030"\w* \w Gad|strong="H1410"\w* said \w to|strong="H3212"\w* \w David|strong="H1732"\w*, “Don’t \w stay|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H1732"\w* \w stronghold|strong="H4686"\w*. \w Depart|strong="H3212"\w*, \w and|strong="H3063"\w* \w go|strong="H3212"\w* \w into|strong="H3212"\w* \w the|strong="H1732"\w* land \w of|strong="H3427"\w* \w Judah|strong="H3063"\w*.” +\p \w Then|strong="H1732"\w* \w David|strong="H1732"\w* \w departed|strong="H3212"\w*, \w and|strong="H3063"\w* \w came|strong="H3212"\w* \w into|strong="H3212"\w* \w the|strong="H1732"\w* \w forest|strong="H3293"\w* \w of|strong="H3427"\w* \w Hereth|strong="H2802"\w*. +\p +\v 6 \w Saul|strong="H7586"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w David|strong="H1732"\w* \w was|strong="H1732"\w* \w discovered|strong="H3045"\w*, \w with|strong="H5921"\w* \w the|strong="H3605"\w* \w men|strong="H5650"\w* \w who|strong="H3605"\w* \w were|strong="H3027"\w* \w with|strong="H5921"\w* \w him|strong="H5921"\w*. \w Now|strong="H3588"\w* \w Saul|strong="H7586"\w* \w was|strong="H1732"\w* \w sitting|strong="H3427"\w* \w in|strong="H3427"\w* \w Gibeah|strong="H1390"\w*, \w under|strong="H8478"\w* \w the|strong="H3605"\w* tamarisk tree \w in|strong="H3427"\w* Ramah, \w with|strong="H5921"\w* \w his|strong="H3605"\w* \w spear|strong="H2595"\w* \w in|strong="H3427"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w* \w were|strong="H3027"\w* \w standing|strong="H5324"\w* \w around|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 7 \w Saul|strong="H7586"\w* \w said|strong="H8085"\w* \w to|strong="H5921"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w* \w who|strong="H3605"\w* \w stood|strong="H5324"\w* \w around|strong="H5921"\w* \w him|strong="H5414"\w*, “\w Hear|strong="H8085"\w* \w now|strong="H4994"\w*, \w you|strong="H5414"\w* Benjamites! \w Will|strong="H5650"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jesse|strong="H3448"\w* \w give|strong="H5414"\w* \w everyone|strong="H3605"\w* \w of|strong="H1121"\w* \w you|strong="H5414"\w* \w fields|strong="H7704"\w* \w and|strong="H3967"\w* \w vineyards|strong="H3754"\w*? \w Will|strong="H5650"\w* \w he|strong="H3605"\w* \w make|strong="H7760"\w* \w you|strong="H5414"\w* \w all|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* thousands \w and|strong="H3967"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* \w hundreds|strong="H3967"\w*? +\v 8 \w Is|strong="H2088"\w* \w that|strong="H3588"\w* \w why|strong="H5921"\w* \w all|strong="H3605"\w* \w of|strong="H1121"\w* \w you|strong="H3588"\w* \w have|strong="H1121"\w* \w conspired|strong="H7194"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*, \w and|strong="H1121"\w* \w there|strong="H2088"\w* \w is|strong="H2088"\w* \w no|strong="H4480"\w* \w one|strong="H2088"\w* \w who|strong="H3605"\w* \w discloses|strong="H1540"\w* \w to|strong="H5921"\w* \w me|strong="H5921"\w* \w when|strong="H3588"\w* \w my|strong="H3605"\w* \w son|strong="H1121"\w* \w makes|strong="H3772"\w* \w a|strong="H3068"\w* treaty \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jesse|strong="H3448"\w*, \w and|strong="H1121"\w* \w there|strong="H2088"\w* \w is|strong="H2088"\w* \w none|strong="H3605"\w* \w of|strong="H1121"\w* \w you|strong="H3588"\w* \w who|strong="H3605"\w* \w is|strong="H2088"\w* \w sorry|strong="H2470"\w* \w for|strong="H3588"\w* \w me|strong="H5921"\w*, \w or|strong="H3117"\w* \w discloses|strong="H1540"\w* \w to|strong="H5921"\w* \w me|strong="H5921"\w* \w that|strong="H3588"\w* \w my|strong="H3605"\w* \w son|strong="H1121"\w* \w has|strong="H5650"\w* \w stirred|strong="H6965"\w* \w up|strong="H6965"\w* \w my|strong="H3605"\w* \w servant|strong="H5650"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*, \w to|strong="H5921"\w* lie \w in|strong="H5921"\w* wait, \w as|strong="H3117"\w* \w it|strong="H5921"\w* \w is|strong="H2088"\w* \w today|strong="H3117"\w*?” +\p +\v 9 \w Then|strong="H6030"\w* \w Doeg|strong="H1673"\w* \w the|strong="H5921"\w* Edomite, \w who|strong="H1931"\w* \w stood|strong="H5324"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w servants|strong="H5650"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w*, \w answered|strong="H6030"\w* \w and|strong="H1121"\w* \w said|strong="H6030"\w*, “\w I|strong="H5921"\w* \w saw|strong="H7200"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jesse|strong="H3448"\w* \w coming|strong="H5650"\w* \w to|strong="H5921"\w* \w Nob|strong="H5011"\w*, \w to|strong="H5921"\w* Ahimelech \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahitub. +\v 10 \w He|strong="H3068"\w* \w inquired|strong="H7592"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H3068"\w* \w him|strong="H5414"\w*, \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w food|strong="H6720"\w*, \w and|strong="H3068"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w the|strong="H5414"\w* \w sword|strong="H2719"\w* \w of|strong="H3068"\w* \w Goliath|strong="H1555"\w* \w the|strong="H5414"\w* \w Philistine|strong="H6430"\w*.” +\p +\v 11 \w Then|strong="H7971"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w sent|strong="H7971"\w* \w to|strong="H7971"\w* \w call|strong="H7121"\w* Ahimelech \w the|strong="H3605"\w* \w priest|strong="H3548"\w*, \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahitub, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w father|strong="H1121"\w*’s \w house|strong="H1004"\w*, \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w in|strong="H1004"\w* \w Nob|strong="H5011"\w*; \w and|strong="H1121"\w* \w they|strong="H3605"\w* \w all|strong="H3605"\w* \w came|strong="H3548"\w* \w to|strong="H7971"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. +\v 12 \w Saul|strong="H7586"\w* \w said|strong="H8085"\w*, “\w Hear|strong="H8085"\w* \w now|strong="H4994"\w*, \w you|strong="H4994"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahitub.” +\p \w He|strong="H2005"\w* \w answered|strong="H8085"\w*, “\w Here|strong="H2005"\w* \w I|strong="H2005"\w* \w am|strong="H2005"\w*, \w my|strong="H8085"\w* lord.” +\p +\v 13 \w Saul|strong="H7586"\w* said \w to|strong="H5921"\w* \w him|strong="H5414"\w*, “\w Why|strong="H4100"\w* \w have|strong="H1121"\w* \w you|strong="H5414"\w* \w conspired|strong="H7194"\w* \w against|strong="H5921"\w* \w me|strong="H5414"\w*, \w you|strong="H5414"\w* \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jesse|strong="H3448"\w*, \w in|strong="H5921"\w* \w that|strong="H3117"\w* \w you|strong="H5414"\w* \w have|strong="H1121"\w* \w given|strong="H5414"\w* \w him|strong="H5414"\w* \w bread|strong="H3899"\w*, \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w sword|strong="H2719"\w*, \w and|strong="H1121"\w* \w have|strong="H1121"\w* \w inquired|strong="H7592"\w* \w of|strong="H1121"\w* \w God|strong="H5414"\w* \w for|strong="H5921"\w* \w him|strong="H5414"\w*, \w that|strong="H3117"\w* \w he|strong="H3117"\w* \w should|strong="H4100"\w* \w rise|strong="H6965"\w* \w against|strong="H5921"\w* \w me|strong="H5414"\w*, \w to|strong="H5921"\w* \w lie|strong="H5414"\w* \w in|strong="H5921"\w* wait, \w as|strong="H3117"\w* \w it|strong="H5414"\w* \w is|strong="H2088"\w* \w today|strong="H3117"\w*?” +\p +\v 14 \w Then|strong="H6030"\w* Ahimelech \w answered|strong="H6030"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w and|strong="H6030"\w* \w said|strong="H6030"\w*, “\w Who|strong="H4310"\w* \w among|strong="H4310"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w servants|strong="H5650"\w* \w is|strong="H4310"\w* \w so|strong="H5493"\w* faithful \w as|strong="H1004"\w* \w David|strong="H1732"\w*, \w who|strong="H4310"\w* \w is|strong="H4310"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w son-in-law|strong="H2860"\w*, captain \w of|strong="H4428"\w* \w your|strong="H3605"\w* body \w guard|strong="H4928"\w*, \w and|strong="H6030"\w* \w honored|strong="H3513"\w* \w in|strong="H1004"\w* \w your|strong="H3605"\w* \w house|strong="H1004"\w*? +\v 15 \w Have|strong="H3045"\w* \w I|strong="H3588"\w* \w today|strong="H3117"\w* \w begun|strong="H2490"\w* \w to|strong="H3117"\w* \w inquire|strong="H7592"\w* \w of|strong="H4428"\w* \w God|strong="H3808"\w* \w for|strong="H3588"\w* \w him|strong="H7760"\w*? \w Be|strong="H3808"\w* \w it|strong="H7760"\w* \w far|strong="H2486"\w* \w from|strong="H3117"\w* \w me|strong="H7760"\w*! Don’t \w let|strong="H7760"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w impute|strong="H7760"\w* \w anything|strong="H3605"\w* \w to|strong="H3117"\w* \w his|strong="H3605"\w* \w servant|strong="H5650"\w*, \w nor|strong="H3808"\w* \w to|strong="H3117"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w my|strong="H3605"\w* father; \w for|strong="H3588"\w* \w your|strong="H3605"\w* \w servant|strong="H5650"\w* \w knew|strong="H3045"\w* \w nothing|strong="H3808"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w*, \w less|strong="H6996"\w* \w or|strong="H3808"\w* \w more|strong="H1419"\w*.” +\p +\v 16 \w The|strong="H3605"\w* \w king|strong="H4428"\w* said, “\w You|strong="H3605"\w* \w shall|strong="H4428"\w* \w surely|strong="H4191"\w* \w die|strong="H4191"\w*, Ahimelech, \w you|strong="H3605"\w* \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* father’s \w house|strong="H1004"\w*.” +\v 17 \w The|strong="H5921"\w* \w king|strong="H4428"\w* said \w to|strong="H4191"\w* \w the|strong="H5921"\w* \w guard|strong="H7323"\w* \w who|strong="H1931"\w* \w stood|strong="H5324"\w* \w about|strong="H5437"\w* \w him|strong="H5921"\w*, “\w Turn|strong="H5437"\w* \w and|strong="H3068"\w* \w kill|strong="H4191"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*, \w because|strong="H3588"\w* \w their|strong="H3068"\w* \w hand|strong="H3027"\w* \w also|strong="H1571"\w* \w is|strong="H3068"\w* \w with|strong="H5973"\w* \w David|strong="H1732"\w*, \w and|strong="H3068"\w* \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w knew|strong="H3045"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w fled|strong="H1272"\w* \w and|strong="H3068"\w* didn’t \w disclose|strong="H1540"\w* \w it|strong="H1931"\w* \w to|strong="H4191"\w* \w me|strong="H7971"\w*.” \w But|strong="H3588"\w* \w the|strong="H5921"\w* \w servants|strong="H5650"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* wouldn’t \w put|strong="H4191"\w* \w out|strong="H7971"\w* \w their|strong="H3068"\w* \w hand|strong="H3027"\w* \w to|strong="H4191"\w* \w fall|strong="H6293"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 18 \w The|strong="H5375"\w* \w king|strong="H4428"\w* said \w to|strong="H4191"\w* \w Doeg|strong="H1673"\w*, “\w Turn|strong="H5437"\w* \w and|strong="H4428"\w* \w attack|strong="H6293"\w* \w the|strong="H5375"\w* \w priests|strong="H3548"\w*!” +\p \w Doeg|strong="H1673"\w* \w the|strong="H5375"\w* Edomite \w turned|strong="H5437"\w*, \w and|strong="H4428"\w* \w he|strong="H1931"\w* \w attacked|strong="H6293"\w* \w the|strong="H5375"\w* \w priests|strong="H3548"\w*, \w and|strong="H4428"\w* \w he|strong="H1931"\w* \w killed|strong="H4191"\w* \w on|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w eighty-five|strong="H8084"\w* \w people|strong="H1931"\w* \w who|strong="H1931"\w* \w wore|strong="H5375"\w* \w a|strong="H3068"\w* linen ephod. +\v 19 \w He|strong="H5704"\w* \w struck|strong="H5221"\w* \w Nob|strong="H5011"\w*, \w the|strong="H5221"\w* \w city|strong="H5892"\w* \w of|strong="H5892"\w* \w the|strong="H5221"\w* \w priests|strong="H3548"\w*, \w with|strong="H5892"\w* \w the|strong="H5221"\w* \w edge|strong="H6310"\w* \w of|strong="H5892"\w* \w the|strong="H5221"\w* \w sword|strong="H2719"\w*—both men \w and|strong="H3548"\w* women, \w children|strong="H5768"\w* \w and|strong="H3548"\w* \w nursing|strong="H3243"\w* babies, \w and|strong="H3548"\w* \w cattle|strong="H7716"\w*, \w donkeys|strong="H2543"\w*, \w and|strong="H3548"\w* \w sheep|strong="H7716"\w*, \w with|strong="H5892"\w* \w the|strong="H5221"\w* \w edge|strong="H6310"\w* \w of|strong="H5892"\w* \w the|strong="H5221"\w* \w sword|strong="H2719"\w*. +\v 20 \w One|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H1732"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Ahimelech \w the|strong="H1732"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahitub, \w named|strong="H8034"\w* Abiathar, \w escaped|strong="H4422"\w* \w and|strong="H1121"\w* \w fled|strong="H1272"\w* \w after|strong="H8034"\w* \w David|strong="H1732"\w*. +\v 21 Abiathar \w told|strong="H5046"\w* \w David|strong="H1732"\w* \w that|strong="H3588"\w* \w Saul|strong="H7586"\w* \w had|strong="H3068"\w* \w slain|strong="H2026"\w* \w Yahweh|strong="H3068"\w*’s \w priests|strong="H3548"\w*. +\p +\v 22 \w David|strong="H1732"\w* said \w to|strong="H3117"\w* Abiathar, “\w I|strong="H3588"\w* \w knew|strong="H3045"\w* \w on|strong="H3117"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w*, \w when|strong="H3588"\w* \w Doeg|strong="H1673"\w* \w the|strong="H3605"\w* Edomite \w was|strong="H1732"\w* \w there|strong="H8033"\w*, \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w would|strong="H5315"\w* \w surely|strong="H3588"\w* \w tell|strong="H5046"\w* \w Saul|strong="H7586"\w*. \w I|strong="H3588"\w* am responsible \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w death|strong="H5315"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w persons|strong="H5315"\w* \w of|strong="H1004"\w* \w your|strong="H3605"\w* father’s \w house|strong="H1004"\w*. +\v 23 \w Stay|strong="H3427"\w* \w with|strong="H3427"\w* \w me|strong="H5315"\w*. Don’t \w be|strong="H5315"\w* \w afraid|strong="H3372"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w who|strong="H5315"\w* \w seeks|strong="H1245"\w* \w my|strong="H1245"\w* \w life|strong="H5315"\w* \w seeks|strong="H1245"\w* \w your|strong="H3588"\w* \w life|strong="H5315"\w*. \w You|strong="H3588"\w* \w will|strong="H5315"\w* \w be|strong="H5315"\w* \w safe|strong="H4931"\w* \w with|strong="H3427"\w* \w me|strong="H5315"\w*.” +\c 23 +\p +\v 1 \w David|strong="H1732"\w* \w was|strong="H1732"\w* \w told|strong="H5046"\w*, “\w Behold|strong="H2009"\w*, \w the|strong="H5046"\w* \w Philistines|strong="H6430"\w* \w are|strong="H1992"\w* \w fighting|strong="H3898"\w* \w against|strong="H3898"\w* \w Keilah|strong="H7084"\w*, \w and|strong="H1732"\w* \w are|strong="H1992"\w* robbing \w the|strong="H5046"\w* \w threshing|strong="H1637"\w* \w floors|strong="H1637"\w*.” +\p +\v 2 \w Therefore|strong="H1732"\w* \w David|strong="H1732"\w* \w inquired|strong="H7592"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, saying, “\w Shall|strong="H3068"\w* \w I|strong="H3068"\w* \w go|strong="H3212"\w* \w and|strong="H3068"\w* \w strike|strong="H5221"\w* \w these|strong="H1732"\w* \w Philistines|strong="H6430"\w*?” +\p \w Yahweh|strong="H3068"\w* said \w to|strong="H3212"\w* \w David|strong="H1732"\w*, “\w Go|strong="H3212"\w* \w strike|strong="H5221"\w* \w the|strong="H5221"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H3068"\w* \w save|strong="H3467"\w* \w Keilah|strong="H7084"\w*.” +\p +\v 3 \w David|strong="H1732"\w*’s men said \w to|strong="H3212"\w* \w him|strong="H1732"\w*, “\w Behold|strong="H2009"\w*, \w we|strong="H3068"\w* \w are|strong="H6430"\w* \w afraid|strong="H3372"\w* \w here|strong="H6311"\w* \w in|strong="H3212"\w* \w Judah|strong="H3063"\w*. \w How|strong="H3588"\w* much \w more|strong="H3588"\w* \w then|strong="H2009"\w* \w if|strong="H3588"\w* \w we|strong="H3068"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w Keilah|strong="H7084"\w* \w against|strong="H3212"\w* \w the|strong="H3588"\w* \w armies|strong="H4634"\w* \w of|strong="H3372"\w* \w the|strong="H3588"\w* \w Philistines|strong="H6430"\w*?” +\p +\v 4 \w Then|strong="H6030"\w* \w David|strong="H1732"\w* \w inquired|strong="H7592"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w yet|strong="H5750"\w* \w again|strong="H5750"\w*. \w Yahweh|strong="H3068"\w* \w answered|strong="H6030"\w* \w him|strong="H5414"\w*, \w and|strong="H6965"\w* \w said|strong="H6030"\w*, “\w Arise|strong="H6965"\w*, \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w Keilah|strong="H7084"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w deliver|strong="H5414"\w* \w the|strong="H3588"\w* \w Philistines|strong="H6430"\w* \w into|strong="H3381"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*.” +\p +\v 5 \w David|strong="H1732"\w* \w and|strong="H1419"\w* \w his|strong="H1732"\w* \w men|strong="H1419"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Keilah|strong="H7084"\w* \w and|strong="H1419"\w* \w fought|strong="H3898"\w* \w with|strong="H3427"\w* \w the|strong="H5221"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H1419"\w* \w brought|strong="H3212"\w* \w away|strong="H3212"\w* \w their|strong="H5221"\w* \w livestock|strong="H4735"\w*, \w and|strong="H1419"\w* \w killed|strong="H5221"\w* \w them|strong="H5221"\w* \w with|strong="H3427"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w slaughter|strong="H4347"\w*. \w So|strong="H3427"\w* \w David|strong="H1732"\w* \w saved|strong="H3467"\w* \w the|strong="H5221"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Keilah|strong="H7084"\w*. +\p +\v 6 \w When|strong="H1961"\w* Abiathar \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahimelech \w fled|strong="H1272"\w* \w to|strong="H3381"\w* \w David|strong="H1732"\w* \w to|strong="H3381"\w* \w Keilah|strong="H7084"\w*, \w he|strong="H1732"\w* \w came|strong="H1961"\w* \w down|strong="H3381"\w* \w with|strong="H3381"\w* \w an|strong="H1961"\w* ephod \w in|strong="H1121"\w* \w his|strong="H1732"\w* \w hand|strong="H3027"\w*. +\p +\v 7 \w Saul|strong="H7586"\w* \w was|strong="H1732"\w* \w told|strong="H5046"\w* \w that|strong="H3588"\w* \w David|strong="H1732"\w* \w had|strong="H1732"\w* \w come|strong="H7586"\w* \w to|strong="H3027"\w* \w Keilah|strong="H7084"\w*. \w Saul|strong="H7586"\w* said, “\w God|strong="H3027"\w* \w has|strong="H7586"\w* \w delivered|strong="H5462"\w* \w him|strong="H5046"\w* \w into|strong="H3027"\w* \w my|strong="H1732"\w* \w hand|strong="H3027"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H3027"\w* \w shut|strong="H5462"\w* \w in|strong="H5892"\w* \w by|strong="H3027"\w* entering \w into|strong="H3027"\w* \w a|strong="H3068"\w* \w town|strong="H5892"\w* \w that|strong="H3588"\w* \w has|strong="H7586"\w* \w gates|strong="H1817"\w* \w and|strong="H3027"\w* \w bars|strong="H1280"\w*.” +\v 8 \w Saul|strong="H7586"\w* \w summoned|strong="H8085"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w to|strong="H3381"\w* \w war|strong="H4421"\w*, \w to|strong="H3381"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w Keilah|strong="H7084"\w* \w to|strong="H3381"\w* \w besiege|strong="H6696"\w* \w David|strong="H1732"\w* \w and|strong="H5971"\w* \w his|strong="H3605"\w* \w men|strong="H5971"\w*. +\v 9 \w David|strong="H1732"\w* \w knew|strong="H3045"\w* \w that|strong="H3588"\w* \w Saul|strong="H7586"\w* \w was|strong="H1732"\w* devising \w mischief|strong="H7451"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*. \w He|strong="H3588"\w* \w said|strong="H2790"\w* \w to|strong="H5921"\w* Abiathar \w the|strong="H5921"\w* \w priest|strong="H3548"\w*, “\w Bring|strong="H5066"\w* \w the|strong="H5921"\w* ephod \w here|strong="H5066"\w*.” +\v 10 \w Then|strong="H8085"\w* \w David|strong="H1732"\w* \w said|strong="H8085"\w*, “\w O|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H8085"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w has|strong="H3068"\w* \w surely|strong="H3588"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w Saul|strong="H7586"\w* \w seeks|strong="H1245"\w* \w to|strong="H3478"\w* \w come|strong="H3478"\w* \w to|strong="H3478"\w* \w Keilah|strong="H7084"\w* \w to|strong="H3478"\w* \w destroy|strong="H7843"\w* \w the|strong="H8085"\w* \w city|strong="H5892"\w* \w for|strong="H3588"\w* \w my|strong="H8085"\w* \w sake|strong="H5668"\w*. +\v 11 \w Will|strong="H3068"\w* \w the|strong="H8085"\w* \w men|strong="H1167"\w* \w of|strong="H3068"\w* \w Keilah|strong="H7084"\w* \w deliver|strong="H5462"\w* \w me|strong="H4994"\w* \w up|strong="H5462"\w* \w into|strong="H3381"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w*? \w Will|strong="H3068"\w* \w Saul|strong="H7586"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w*, \w as|strong="H3068"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w has|strong="H3068"\w* \w heard|strong="H8085"\w*? \w Yahweh|strong="H3068"\w*, \w the|strong="H8085"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w I|strong="H5650"\w* \w beg|strong="H4994"\w* \w you|strong="H5046"\w*, \w tell|strong="H5046"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w*.” +\p \w Yahweh|strong="H3068"\w* \w said|strong="H8085"\w*, “\w He|strong="H3068"\w* \w will|strong="H3068"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w*.” +\p +\v 12 \w Then|strong="H7586"\w* \w David|strong="H1732"\w* said, “\w Will|strong="H3068"\w* \w the|strong="H3068"\w* \w men|strong="H1167"\w* \w of|strong="H3068"\w* \w Keilah|strong="H7084"\w* \w deliver|strong="H5462"\w* \w me|strong="H5462"\w* \w and|strong="H3068"\w* \w my|strong="H3068"\w* \w men|strong="H1167"\w* \w into|strong="H3027"\w* \w the|strong="H3068"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w Saul|strong="H7586"\w*?” +\p \w Yahweh|strong="H3068"\w* said, “\w They|strong="H3068"\w* \w will|strong="H3068"\w* \w deliver|strong="H5462"\w* \w you|strong="H3027"\w* \w up|strong="H5462"\w*.” +\p +\v 13 \w Then|strong="H1980"\w* \w David|strong="H1732"\w* \w and|strong="H3967"\w* \w his|strong="H1732"\w* \w men|strong="H1980"\w*, \w who|strong="H3588"\w* \w were|strong="H1732"\w* \w about|strong="H1980"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w*, \w arose|strong="H6965"\w* \w and|strong="H3967"\w* \w departed|strong="H1980"\w* \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w Keilah|strong="H7084"\w* \w and|strong="H3967"\w* \w went|strong="H1980"\w* \w wherever|strong="H1980"\w* \w they|strong="H3588"\w* \w could|strong="H6965"\w* \w go|strong="H1980"\w*. \w Saul|strong="H7586"\w* \w was|strong="H1732"\w* \w told|strong="H5046"\w* \w that|strong="H3588"\w* \w David|strong="H1732"\w* \w had|strong="H1732"\w* \w escaped|strong="H4422"\w* \w from|strong="H3318"\w* \w Keilah|strong="H7084"\w*; \w and|strong="H3967"\w* \w he|strong="H3588"\w* \w gave|strong="H3318"\w* \w up|strong="H6965"\w* \w going|strong="H1980"\w* \w there|strong="H6965"\w*. +\v 14 \w David|strong="H1732"\w* \w stayed|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w strongholds|strong="H4679"\w*, \w and|strong="H3117"\w* \w remained|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* \w of|strong="H3117"\w* \w Ziph|strong="H2128"\w*. \w Saul|strong="H7586"\w* \w sought|strong="H1245"\w* \w him|strong="H5414"\w* \w every|strong="H3605"\w* \w day|strong="H3117"\w*, \w but|strong="H3808"\w* \w God|strong="H5414"\w* didn’t \w deliver|strong="H5414"\w* \w him|strong="H5414"\w* \w into|strong="H3027"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*. +\v 15 \w David|strong="H1732"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w Saul|strong="H7586"\w* \w had|strong="H1732"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w seek|strong="H1245"\w* \w his|strong="H1732"\w* \w life|strong="H5315"\w*. \w David|strong="H1732"\w* \w was|strong="H1732"\w* \w in|strong="H5315"\w* \w the|strong="H7200"\w* \w wilderness|strong="H4057"\w* \w of|strong="H4057"\w* \w Ziph|strong="H2128"\w* \w in|strong="H5315"\w* \w the|strong="H7200"\w* woods. +\p +\v 16 \w Jonathan|strong="H3083"\w*, \w Saul|strong="H7586"\w*’s \w son|strong="H1121"\w*, \w arose|strong="H6965"\w* \w and|strong="H1121"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w David|strong="H1732"\w* \w into|strong="H3212"\w* \w the|strong="H2388"\w* woods, \w and|strong="H1121"\w* \w strengthened|strong="H2388"\w* \w his|strong="H1732"\w* \w hand|strong="H3027"\w* \w in|strong="H3212"\w* \w God|strong="H3027"\w*. +\v 17 \w He|strong="H3588"\w* \w said|strong="H3651"\w* \w to|strong="H3478"\w* \w him|strong="H5921"\w*, “Don’t \w be|strong="H1961"\w* \w afraid|strong="H3372"\w*, \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w Saul|strong="H7586"\w* \w my|strong="H5921"\w* father won’t \w find|strong="H4672"\w* \w you|strong="H3588"\w*; \w and|strong="H3478"\w* \w you|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w king|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w next|strong="H5921"\w* \w to|strong="H3478"\w* \w you|strong="H3588"\w*; \w and|strong="H3478"\w* \w Saul|strong="H7586"\w* \w my|strong="H5921"\w* father \w knows|strong="H3045"\w* \w that|strong="H3588"\w* \w also|strong="H1571"\w*.” +\v 18 \w They|strong="H3068"\w* \w both|strong="H8147"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. \w Then|strong="H1980"\w* \w David|strong="H1732"\w* \w stayed|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H6440"\w* woods \w and|strong="H1980"\w* \w Jonathan|strong="H3083"\w* \w went|strong="H1980"\w* \w to|strong="H1980"\w* \w his|strong="H3068"\w* \w house|strong="H1004"\w*. +\p +\v 19 \w Then|strong="H5927"\w* \w the|strong="H5927"\w* \w Ziphites|strong="H2130"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w Saul|strong="H7586"\w* \w to|strong="H5927"\w* \w Gibeah|strong="H1390"\w*, saying, “Doesn’t \w David|strong="H1732"\w* \w hide|strong="H5641"\w* \w himself|strong="H3808"\w* \w with|strong="H5973"\w* \w us|strong="H5927"\w* \w in|strong="H1732"\w* \w the|strong="H5927"\w* \w strongholds|strong="H4679"\w* \w in|strong="H1732"\w* \w the|strong="H5927"\w* woods, \w in|strong="H1732"\w* \w the|strong="H5927"\w* \w hill|strong="H1389"\w* \w of|strong="H1390"\w* \w Hachilah|strong="H2444"\w*, which \w is|strong="H7586"\w* \w on|strong="H5927"\w* \w the|strong="H5927"\w* \w south|strong="H3225"\w* \w of|strong="H1390"\w* \w the|strong="H5927"\w* \w desert|strong="H3452"\w*? +\v 20 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w O|strong="H3068"\w* \w king|strong="H4428"\w*, \w come|strong="H3381"\w* \w down|strong="H3381"\w*. \w According|strong="H3027"\w* \w to|strong="H3381"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w desire|strong="H5315"\w* \w of|strong="H4428"\w* \w your|strong="H3605"\w* \w soul|strong="H5315"\w* \w to|strong="H3381"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w*; \w and|strong="H4428"\w* \w our|strong="H3605"\w* \w part|strong="H3027"\w* \w will|strong="H4428"\w* \w be|strong="H3027"\w* \w to|strong="H3381"\w* \w deliver|strong="H5462"\w* \w him|strong="H3027"\w* \w up|strong="H5462"\w* \w into|strong="H3381"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w hand|strong="H3027"\w*.” +\p +\v 21 \w Saul|strong="H7586"\w* said, “\w You|strong="H3588"\w* \w are|strong="H3068"\w* \w blessed|strong="H1288"\w* \w by|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w had|strong="H3068"\w* \w compassion|strong="H2550"\w* \w on|strong="H5921"\w* \w me|strong="H5921"\w*. +\v 22 \w Please|strong="H4994"\w* \w go|strong="H3212"\w* \w make|strong="H3045"\w* \w yet|strong="H5750"\w* \w more|strong="H5750"\w* \w sure|strong="H3045"\w*, \w and|strong="H3212"\w* \w know|strong="H3045"\w* \w and|strong="H3212"\w* \w see|strong="H7200"\w* \w his|strong="H7200"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w his|strong="H7200"\w* \w haunt|strong="H7272"\w* \w is|strong="H1931"\w*, \w and|strong="H3212"\w* \w who|strong="H4310"\w* \w has|strong="H4310"\w* \w seen|strong="H7200"\w* \w him|strong="H7200"\w* \w there|strong="H8033"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* told \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w very|strong="H6191"\w* \w cunning|strong="H3045"\w*. +\v 23 \w See|strong="H7200"\w* \w therefore|strong="H3045"\w*, \w and|strong="H1980"\w* \w take|strong="H7725"\w* \w knowledge|strong="H3045"\w* \w of|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* lurking \w places|strong="H4224"\w* \w where|strong="H8033"\w* \w he|strong="H8033"\w* \w hides|strong="H2244"\w* \w himself|strong="H3045"\w*; \w and|strong="H1980"\w* \w come|strong="H1980"\w* \w again|strong="H7725"\w* \w to|strong="H1980"\w* \w me|strong="H7725"\w* \w with|strong="H1980"\w* \w certainty|strong="H3045"\w*, \w and|strong="H1980"\w* \w I|strong="H3045"\w* \w will|strong="H1961"\w* \w go|strong="H1980"\w* \w with|strong="H1980"\w* \w you|strong="H3605"\w*. \w It|strong="H7725"\w* \w shall|strong="H3063"\w* \w happen|strong="H1961"\w*, \w if|strong="H7200"\w* \w he|strong="H8033"\w* \w is|strong="H3426"\w* \w in|strong="H1980"\w* \w the|strong="H3605"\w* land, \w that|strong="H3045"\w* \w I|strong="H3045"\w* \w will|strong="H1961"\w* \w search|strong="H2664"\w* \w him|strong="H7725"\w* \w out|strong="H7200"\w* \w among|strong="H7200"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* thousands \w of|strong="H3605"\w* \w Judah|strong="H3063"\w*.” +\p +\v 24 \w They|strong="H6440"\w* \w arose|strong="H6965"\w*, \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Ziph|strong="H2128"\w* \w before|strong="H6440"\w* \w Saul|strong="H7586"\w*; \w but|strong="H3225"\w* \w David|strong="H1732"\w* \w and|strong="H6965"\w* \w his|strong="H1732"\w* men \w were|strong="H1732"\w* \w in|strong="H3212"\w* \w the|strong="H6440"\w* \w wilderness|strong="H4057"\w* \w of|strong="H6440"\w* \w Maon|strong="H4584"\w*, \w in|strong="H3212"\w* \w the|strong="H6440"\w* \w Arabah|strong="H6160"\w* \w on|strong="H3212"\w* \w the|strong="H6440"\w* \w south|strong="H3225"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w desert|strong="H6160"\w*. +\v 25 \w Saul|strong="H7586"\w* \w and|strong="H3212"\w* \w his|strong="H1732"\w* men \w went|strong="H3212"\w* \w to|strong="H3381"\w* \w seek|strong="H1245"\w* \w him|strong="H5046"\w*. \w When|strong="H8085"\w* \w David|strong="H1732"\w* \w was|strong="H1732"\w* \w told|strong="H5046"\w*, \w he|strong="H1732"\w* \w went|strong="H3212"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H8085"\w* \w rock|strong="H5553"\w*, \w and|strong="H3212"\w* \w stayed|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H8085"\w* \w wilderness|strong="H4057"\w* \w of|strong="H3427"\w* \w Maon|strong="H4584"\w*. \w When|strong="H8085"\w* \w Saul|strong="H7586"\w* \w heard|strong="H8085"\w* \w that|strong="H8085"\w*, \w he|strong="H1732"\w* \w pursued|strong="H7291"\w* \w David|strong="H1732"\w* \w in|strong="H3427"\w* \w the|strong="H8085"\w* \w wilderness|strong="H4057"\w* \w of|strong="H3427"\w* \w Maon|strong="H4584"\w*. +\v 26 \w Saul|strong="H7586"\w* \w went|strong="H3212"\w* \w on|strong="H1961"\w* \w this|strong="H2088"\w* \w side|strong="H6654"\w* \w of|strong="H2022"\w* \w the|strong="H6440"\w* \w mountain|strong="H2022"\w*, \w and|strong="H3212"\w* \w David|strong="H1732"\w* \w and|strong="H3212"\w* \w his|strong="H1732"\w* men \w on|strong="H1961"\w* \w that|strong="H2088"\w* \w side|strong="H6654"\w* \w of|strong="H2022"\w* \w the|strong="H6440"\w* \w mountain|strong="H2022"\w*; \w and|strong="H3212"\w* \w David|strong="H1732"\w* \w hurried|strong="H2648"\w* \w to|strong="H3212"\w* \w get|strong="H3212"\w* \w away|strong="H3212"\w* \w for|strong="H6440"\w* \w fear|strong="H6440"\w* \w of|strong="H2022"\w* \w Saul|strong="H7586"\w*, \w for|strong="H6440"\w* \w Saul|strong="H7586"\w* \w and|strong="H3212"\w* \w his|strong="H1732"\w* men surrounded \w David|strong="H1732"\w* \w and|strong="H3212"\w* \w his|strong="H1732"\w* men \w to|strong="H3212"\w* \w take|strong="H8610"\w* \w them|strong="H6440"\w*. +\v 27 \w But|strong="H3588"\w* \w a|strong="H3068"\w* \w messenger|strong="H4397"\w* \w came|strong="H3212"\w* \w to|strong="H3212"\w* \w Saul|strong="H7586"\w*, saying, “\w Hurry|strong="H4116"\w* \w and|strong="H3212"\w* \w come|strong="H3212"\w*, \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w Philistines|strong="H6430"\w* \w have|strong="H6430"\w* \w made|strong="H6584"\w* \w a|strong="H3068"\w* \w raid|strong="H6584"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* land!” +\v 28 \w So|strong="H3651"\w* \w Saul|strong="H7586"\w* \w returned|strong="H7725"\w* \w from|strong="H7725"\w* \w pursuing|strong="H7291"\w* \w David|strong="H1732"\w*, \w and|strong="H7725"\w* \w went|strong="H3212"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w Philistines|strong="H6430"\w*. \w Therefore|strong="H3651"\w* \w they|strong="H3651"\w* \w called|strong="H7121"\w* \w that|strong="H1931"\w* \w place|strong="H4725"\w* Sela Hammahlekoth.\f + \fr 23:28 \ft “Sela Hammahlekoth” means “rock of parting”.\f* +\p +\v 29 David went up from there and lived in the strongholds of En Gedi. +\c 24 +\p +\v 1 \w When|strong="H3427"\w* Saul \w had|strong="H1732"\w* \w returned|strong="H5927"\w* \w from|strong="H5927"\w* following \w the|strong="H5927"\w* Philistines, \w he|strong="H8033"\w* \w was|strong="H1732"\w* told, “Behold, \w David|strong="H1732"\w* \w is|strong="H8033"\w* \w in|strong="H3427"\w* \w the|strong="H5927"\w* wilderness \w of|strong="H3427"\w* En Gedi.” +\v 2 \w Then|strong="H1961"\w* \w Saul|strong="H7586"\w* \w took|strong="H1961"\w* three thousand chosen men \w out|strong="H7725"\w* \w of|strong="H4057"\w* \w all|strong="H7725"\w* Israel, \w and|strong="H7725"\w* \w went|strong="H1732"\w* \w to|strong="H7725"\w* seek \w David|strong="H1732"\w* \w and|strong="H7725"\w* \w his|strong="H1732"\w* men \w on|strong="H1961"\w* \w the|strong="H7725"\w* rocks \w of|strong="H4057"\w* \w the|strong="H7725"\w* wild goats. +\v 3 \w He|strong="H3605"\w* \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* sheep pens \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w way|strong="H3212"\w*, \w where|strong="H5921"\w* \w there|strong="H3605"\w* \w was|strong="H1732"\w* \w a|strong="H3068"\w* cave; \w and|strong="H3478"\w* \w Saul|strong="H7586"\w* \w went|strong="H3212"\w* \w in|strong="H5921"\w* \w to|strong="H3478"\w* relieve \w himself|strong="H6440"\w*. \w Now|strong="H3947"\w* \w David|strong="H1732"\w* \w and|strong="H3478"\w* \w his|strong="H3605"\w* \w men|strong="H3605"\w* \w were|strong="H3478"\w* staying \w in|strong="H5921"\w* \w the|strong="H3605"\w* innermost parts \w of|strong="H6440"\w* \w the|strong="H3605"\w* cave. +\v 4 \w David|strong="H1732"\w*’s men said \w to|strong="H5921"\w* \w him|strong="H5921"\w*, “Behold, \w the|strong="H5921"\w* day \w of|strong="H3427"\w* \w which|strong="H8033"\w* \w Yahweh|strong="H3068"\w* said \w to|strong="H5921"\w* \w you|strong="H5921"\w*, ‘Behold, \w I|strong="H5921"\w* \w will|strong="H7272"\w* deliver \w your|strong="H5921"\w* enemy \w into|strong="H5921"\w* \w your|strong="H5921"\w* hand, \w and|strong="H1732"\w* \w you|strong="H5921"\w* \w shall|strong="H7272"\w* \w do|strong="H1870"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w* \w as|strong="H3427"\w* \w it|strong="H5921"\w* \w shall|strong="H7272"\w* seem good \w to|strong="H5921"\w* \w you|strong="H5921"\w*.’” \w Then|strong="H7586"\w* \w David|strong="H1732"\w* arose \w and|strong="H1732"\w* \w cut|strong="H7272"\w* \w off|strong="H5921"\w* \w the|strong="H5921"\w* skirt \w of|strong="H3427"\w* \w Saul|strong="H7586"\w*’s robe \w secretly|strong="H7586"\w*. +\v 5 Afterward, \w David|strong="H1732"\w*’s heart struck \w him|strong="H5414"\w* \w because|strong="H3027"\w* \w he|strong="H3117"\w* \w had|strong="H3068"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w Saul|strong="H7586"\w*’s \w skirt|strong="H3671"\w*. +\v 6 \w He|strong="H3651"\w* \w said|strong="H3651"\w* \w to|strong="H1961"\w* \w his|strong="H1732"\w* \w men|strong="H3772"\w*, “\w Yahweh|strong="H3068"\w* forbid \w that|strong="H3651"\w* \w I|strong="H5921"\w* \w should|strong="H1732"\w* \w do|strong="H3671"\w* \w this|strong="H3651"\w* \w thing|strong="H3651"\w* \w to|strong="H1961"\w* \w my|strong="H1732"\w* lord, \w Yahweh|strong="H3068"\w*’s anointed, \w to|strong="H1961"\w* stretch \w out|strong="H5921"\w* \w my|strong="H1732"\w* hand \w against|strong="H5921"\w* \w him|strong="H5921"\w*, \w since|strong="H3651"\w* \w he|strong="H3651"\w* \w is|strong="H3820"\w* \w Yahweh|strong="H3068"\w*’s anointed.” +\v 7 \w So|strong="H6213"\w* \w David|strong="H3027"\w* checked \w his|strong="H3068"\w* \w men|strong="H6213"\w* \w with|strong="H3068"\w* \w these|strong="H2088"\w* \w words|strong="H1697"\w*, \w and|strong="H3068"\w* didn’t allow \w them|strong="H7971"\w* \w to|strong="H3068"\w* rise \w against|strong="H3027"\w* \w Saul|strong="H1931"\w*. \w Saul|strong="H1931"\w* rose \w up|strong="H6213"\w* \w out|strong="H7971"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* cave, \w and|strong="H3068"\w* \w went|strong="H3068"\w* \w on|strong="H3027"\w* \w his|strong="H3068"\w* \w way|strong="H1697"\w*. +\v 8 \w David|strong="H1732"\w* \w also|strong="H1732"\w* \w arose|strong="H6965"\w* afterward, \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w out|strong="H5414"\w* \w of|strong="H1697"\w* \w the|strong="H5414"\w* \w cave|strong="H4631"\w* \w and|strong="H6965"\w* \w cried|strong="H5414"\w* \w after|strong="H6965"\w* \w Saul|strong="H7586"\w*, \w saying|strong="H1697"\w*, “\w My|strong="H5414"\w* lord \w the|strong="H5414"\w* king!” +\p \w When|strong="H6965"\w* \w Saul|strong="H7586"\w* looked behind \w him|strong="H5414"\w*, \w David|strong="H1732"\w* bowed \w with|strong="H1697"\w* \w his|strong="H5414"\w* face \w to|strong="H3212"\w* \w the|strong="H5414"\w* earth, \w and|strong="H6965"\w* \w showed|strong="H5414"\w* respect. +\v 9 \w David|strong="H1732"\w* \w said|strong="H7121"\w* \w to|strong="H3318"\w* \w Saul|strong="H7586"\w*, “\w Why|strong="H3651"\w* \w do|strong="H3318"\w* \w you|strong="H4480"\w* listen \w to|strong="H3318"\w* \w men|strong="H7121"\w*’s words, saying, ‘\w Behold|strong="H5027"\w*, \w David|strong="H1732"\w* seeks \w to|strong="H3318"\w* harm \w you|strong="H4480"\w*’? +\v 10 \w Behold|strong="H2009"\w*, today \w your|strong="H8085"\w* eyes \w have|strong="H1697"\w* seen \w how|strong="H4100"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H1732"\w* delivered \w you|strong="H4100"\w* today \w into|strong="H1697"\w* \w my|strong="H8085"\w* hand \w in|strong="H8085"\w* \w the|strong="H8085"\w* cave. \w Some|strong="H1697"\w* urged \w me|strong="H1697"\w* \w to|strong="H8085"\w* kill \w you|strong="H4100"\w*, \w but|strong="H2009"\w* \w I|strong="H2009"\w* spared \w you|strong="H4100"\w*. \w I|strong="H2009"\w* \w said|strong="H1697"\w*, ‘\w I|strong="H2009"\w* \w will|strong="H1697"\w* \w not|strong="H8085"\w* stretch \w out|strong="H1245"\w* \w my|strong="H8085"\w* hand \w against|strong="H1697"\w* \w my|strong="H8085"\w* lord, \w for|strong="H1245"\w* \w he|strong="H1732"\w* \w is|strong="H4100"\w* \w Yahweh|strong="H3068"\w*’s anointed.’ +\v 11 \w Moreover|strong="H2009"\w*, \w my|strong="H5414"\w* father, \w behold|strong="H2009"\w*, \w yes|strong="H3588"\w*, \w see|strong="H7200"\w* \w the|strong="H5921"\w* skirt \w of|strong="H3068"\w* \w your|strong="H3068"\w* robe \w in|strong="H5921"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w*; \w for|strong="H3588"\w* \w in|strong="H5921"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* cut \w off|strong="H5921"\w* \w the|strong="H5921"\w* skirt \w of|strong="H3068"\w* \w your|strong="H3068"\w* robe \w and|strong="H3068"\w* didn’t \w kill|strong="H2026"\w* \w you|strong="H3588"\w*, know \w and|strong="H3068"\w* \w see|strong="H7200"\w* \w that|strong="H3588"\w* \w there|strong="H2009"\w* \w is|strong="H3068"\w* \w neither|strong="H3808"\w* evil \w nor|strong="H3808"\w* disobedience \w in|strong="H5921"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w*. \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* sinned \w against|strong="H5921"\w* \w you|strong="H3588"\w*, \w though|strong="H3588"\w* \w you|strong="H3588"\w* hunt \w for|strong="H3588"\w* \w my|strong="H5414"\w* \w life|strong="H3117"\w* \w to|strong="H3068"\w* \w take|strong="H5414"\w* \w it|strong="H5414"\w*. +\v 12 \w May|strong="H5315"\w* \w Yahweh|strong="H3068"\w* judge \w between|strong="H3045"\w* \w me|strong="H5315"\w* \w and|strong="H3027"\w* \w you|strong="H3588"\w*, \w and|strong="H3027"\w* \w may|strong="H5315"\w* \w Yahweh|strong="H3068"\w* avenge \w me|strong="H5315"\w* \w of|strong="H3027"\w* \w you|strong="H3588"\w*; \w but|strong="H3588"\w* \w my|strong="H7200"\w* \w hand|strong="H3027"\w* \w will|strong="H1571"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w on|strong="H7200"\w* \w you|strong="H3588"\w*. +\v 13 \w As|strong="H1961"\w* \w the|strong="H3068"\w* proverb \w of|strong="H3068"\w* \w the|strong="H3068"\w* ancients says, ‘\w Out|strong="H4480"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* wicked \w comes|strong="H1961"\w* wickedness;’ \w but|strong="H3808"\w* \w my|strong="H3068"\w* \w hand|strong="H3027"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w on|strong="H3027"\w* \w you|strong="H3808"\w*. +\v 14 \w Against|strong="H3027"\w* whom \w has|strong="H1961"\w* \w the|strong="H3318"\w* king \w of|strong="H3027"\w* Israel \w come|strong="H1961"\w* \w out|strong="H3318"\w*? Whom \w do|strong="H3318"\w* \w you|strong="H3808"\w* pursue? \w A|strong="H3068"\w* dead dog? \w A|strong="H3068"\w* flea? +\v 15 \w May|strong="H4310"\w* \w Yahweh|strong="H3068"\w* therefore \w be|strong="H4191"\w* judge, \w and|strong="H3478"\w* give sentence between \w me|strong="H3318"\w* \w and|strong="H3478"\w* \w you|strong="H7291"\w*, \w and|strong="H3478"\w* see, \w and|strong="H3478"\w* plead \w my|strong="H3318"\w* \w cause|strong="H3318"\w*, \w and|strong="H3478"\w* deliver \w me|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w your|strong="H3318"\w* hand.” +\p +\v 16 \w It|strong="H7200"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w pass|strong="H1961"\w*, \w when|strong="H1961"\w* \w David|strong="H3027"\w* \w had|strong="H3068"\w* finished speaking these words \w to|strong="H3068"\w* Saul, \w that|strong="H7200"\w* Saul said, “\w Is|strong="H3068"\w* \w that|strong="H7200"\w* \w your|strong="H3068"\w* voice, \w my|strong="H3068"\w* son \w David|strong="H3027"\w*?” Saul lifted \w up|strong="H7200"\w* \w his|strong="H3068"\w* voice \w and|strong="H3068"\w* wept. +\v 17 \w He|strong="H1732"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w David|strong="H1732"\w*, “\w You|strong="H1696"\w* \w are|strong="H1121"\w* \w more|strong="H1058"\w* righteous \w than|strong="H2088"\w* \w I|strong="H1697"\w*; \w for|strong="H1121"\w* \w you|strong="H1696"\w* \w have|strong="H1961"\w* \w done|strong="H1961"\w* good \w to|strong="H1696"\w* \w me|strong="H6963"\w*, whereas \w I|strong="H1697"\w* \w have|strong="H1961"\w* \w done|strong="H1961"\w* evil \w to|strong="H1696"\w* \w you|strong="H1696"\w*. +\v 18 \w You|strong="H3588"\w* \w have|strong="H3588"\w* declared today \w how|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* \w dealt|strong="H1580"\w* \w well|strong="H2896"\w* \w with|strong="H1732"\w* \w me|strong="H4480"\w*, \w because|strong="H3588"\w* \w when|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H1732"\w* delivered \w me|strong="H4480"\w* \w up|strong="H4480"\w* \w into|strong="H4480"\w* \w your|strong="H3588"\w* hand, \w you|strong="H3588"\w* didn’t kill \w me|strong="H4480"\w*. +\v 19 \w For|strong="H6213"\w* if \w a|strong="H3068"\w* \w man|strong="H2896"\w* finds \w his|strong="H3068"\w* enemy, \w will|strong="H3068"\w* \w he|strong="H3117"\w* \w let|strong="H5046"\w* \w him|strong="H5046"\w* \w go|strong="H3068"\w* away unharmed? \w Therefore|strong="H3068"\w* \w may|strong="H3068"\w* \w Yahweh|strong="H3068"\w* reward \w you|strong="H3117"\w* \w good|strong="H2896"\w* \w for|strong="H6213"\w* \w that|strong="H3117"\w* \w which|strong="H3068"\w* \w you|strong="H3117"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w to|strong="H3068"\w* \w me|strong="H5046"\w* \w today|strong="H3117"\w*. +\v 20 \w Now|strong="H3117"\w*, behold, \w I|strong="H3588"\w* know \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w surely|strong="H3588"\w* \w be|strong="H3068"\w* king, \w and|strong="H3068"\w* \w that|strong="H3588"\w* \w the|strong="H3588"\w* kingdom \w of|strong="H3068"\w* Israel \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w established|strong="H6213"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H4672"\w*. +\v 21 \w Swear|strong="H3588"\w* \w now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w to|strong="H3478"\w* \w me|strong="H4427"\w* \w by|strong="H3027"\w* \w Yahweh|strong="H3068"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3478"\w* \w not|strong="H3045"\w* \w cut|strong="H3478"\w* off \w my|strong="H3045"\w* offspring \w after|strong="H3588"\w* \w me|strong="H4427"\w*, \w and|strong="H6965"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3478"\w* \w not|strong="H3045"\w* destroy \w my|strong="H3045"\w* name \w out|strong="H3045"\w* \w of|strong="H3027"\w* \w my|strong="H3045"\w* father’s house.” +\p +\v 22 David \w swore|strong="H7650"\w* \w to|strong="H3068"\w* Saul. Saul \w went|strong="H3068"\w* \w home|strong="H1004"\w*, \w but|strong="H6258"\w* David \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w men|strong="H8034"\w* \w went|strong="H3068"\w* up \w to|strong="H3068"\w* \w the|strong="H3068"\w* stronghold. +\c 25 +\p +\v 1 \w Samuel|strong="H8050"\w* \w died|strong="H4191"\w*; \w and|strong="H6965"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w gathered|strong="H6908"\w* \w themselves|strong="H6908"\w* \w together|strong="H6908"\w* \w and|strong="H6965"\w* \w mourned|strong="H5594"\w* \w for|strong="H1004"\w* \w him|strong="H4191"\w*, \w and|strong="H6965"\w* \w buried|strong="H6912"\w* \w him|strong="H4191"\w* \w at|strong="H3478"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w* \w at|strong="H3478"\w* \w Ramah|strong="H7414"\w*. +\p \w Then|strong="H6965"\w* \w David|strong="H1732"\w* \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* \w of|strong="H1004"\w* \w Paran|strong="H6290"\w*. +\v 2 \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w man|strong="H1419"\w* \w in|strong="H1419"\w* \w Maon|strong="H4584"\w* \w whose|strong="H4584"\w* \w possessions|strong="H4639"\w* \w were|strong="H1961"\w* \w in|strong="H1419"\w* \w Carmel|strong="H3760"\w*; \w and|strong="H1419"\w* \w the|strong="H1961"\w* \w man|strong="H1419"\w* \w was|strong="H1961"\w* \w very|strong="H3966"\w* \w great|strong="H1419"\w*. \w He|strong="H5795"\w* \w had|strong="H1961"\w* \w three|strong="H7969"\w* thousand \w sheep|strong="H6629"\w* \w and|strong="H1419"\w* \w a|strong="H3068"\w* thousand \w goats|strong="H5795"\w*; \w and|strong="H1419"\w* \w he|strong="H5795"\w* \w was|strong="H1961"\w* \w shearing|strong="H1494"\w* \w his|strong="H1961"\w* \w sheep|strong="H6629"\w* \w in|strong="H1419"\w* \w Carmel|strong="H3760"\w*. +\v 3 Now \w the|strong="H8034"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w the|strong="H8034"\w* \w man|strong="H7451"\w* \w was|strong="H8034"\w* \w Nabal|strong="H5037"\w*; \w and|strong="H2896"\w* \w the|strong="H8034"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w his|strong="H1931"\w* wife Abigail. \w This|strong="H1931"\w* \w woman|strong="H8034"\w* \w was|strong="H8034"\w* \w intelligent|strong="H2896"\w* \w and|strong="H2896"\w* \w had|strong="H3820"\w* \w a|strong="H3068"\w* \w beautiful|strong="H3303"\w* face; \w but|strong="H1931"\w* \w the|strong="H8034"\w* \w man|strong="H7451"\w* \w was|strong="H8034"\w* surly \w and|strong="H2896"\w* \w evil|strong="H7451"\w* \w in|strong="H8034"\w* \w his|strong="H1931"\w* \w doings|strong="H4611"\w*. \w He|strong="H1931"\w* \w was|strong="H8034"\w* \w of|strong="H8034"\w* \w the|strong="H8034"\w* house \w of|strong="H8034"\w* Caleb. +\v 4 \w David|strong="H1732"\w* \w heard|strong="H8085"\w* \w in|strong="H8085"\w* \w the|strong="H8085"\w* \w wilderness|strong="H4057"\w* \w that|strong="H3588"\w* \w Nabal|strong="H5037"\w* \w was|strong="H1732"\w* \w shearing|strong="H1494"\w* \w his|strong="H1732"\w* \w sheep|strong="H6629"\w*. +\v 5 \w David|strong="H1732"\w* \w sent|strong="H7971"\w* \w ten|strong="H6235"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w*; \w and|strong="H7971"\w* \w David|strong="H1732"\w* said \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w*, “\w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H7971"\w* \w Carmel|strong="H3760"\w*, \w and|strong="H7971"\w* \w go|strong="H5927"\w* \w to|strong="H7971"\w* \w Nabal|strong="H5037"\w*, \w and|strong="H7971"\w* \w greet|strong="H7592"\w* \w him|strong="H7971"\w* \w in|strong="H8034"\w* \w my|strong="H1732"\w* \w name|strong="H8034"\w*. +\v 6 \w Tell|strong="H3605"\w* \w him|strong="H3605"\w*, ‘\w Long|strong="H3605"\w* \w life|strong="H2416"\w* \w to|strong="H1004"\w* \w you|strong="H3605"\w*! \w Peace|strong="H7965"\w* \w be|strong="H1004"\w* \w to|strong="H1004"\w* \w you|strong="H3605"\w*! \w Peace|strong="H7965"\w* \w be|strong="H1004"\w* \w to|strong="H1004"\w* \w your|strong="H3605"\w* \w house|strong="H1004"\w*! \w Peace|strong="H7965"\w* \w be|strong="H1004"\w* \w to|strong="H1004"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w have|strong="H7965"\w*! +\v 7 \w Now|strong="H6258"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w shearers|strong="H1494"\w*. \w Your|strong="H3605"\w* \w shepherds|strong="H7462"\w* \w have|strong="H1961"\w* \w now|strong="H6258"\w* \w been|strong="H1961"\w* \w with|strong="H5973"\w* \w us|strong="H3588"\w*, \w and|strong="H3117"\w* \w we|strong="H3068"\w* didn’t \w harm|strong="H3972"\w* \w them|strong="H1961"\w*. \w Nothing|strong="H3808"\w* \w was|strong="H1961"\w* \w missing|strong="H6485"\w* \w from|strong="H8085"\w* \w them|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w time|strong="H3117"\w* \w they|strong="H3588"\w* \w were|strong="H1961"\w* \w in|strong="H8085"\w* \w Carmel|strong="H3760"\w*. +\v 8 \w Ask|strong="H7592"\w* \w your|strong="H5414"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w*, \w and|strong="H1121"\w* \w they|strong="H3588"\w* \w will|strong="H5650"\w* \w tell|strong="H5046"\w* \w you|strong="H3588"\w*. \w Therefore|strong="H5921"\w* \w let|strong="H4994"\w* \w the|strong="H5921"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w find|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H5921"\w* \w your|strong="H5414"\w* \w eyes|strong="H5869"\w*, \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w come|strong="H4672"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w good|strong="H2896"\w* \w day|strong="H3117"\w*. \w Please|strong="H4994"\w* \w give|strong="H5414"\w* \w whatever|strong="H2896"\w* \w comes|strong="H5414"\w* \w to|strong="H5921"\w* \w your|strong="H5414"\w* \w hand|strong="H3027"\w* \w to|strong="H5921"\w* \w your|strong="H5414"\w* \w servants|strong="H5650"\w* \w and|strong="H1121"\w* \w to|strong="H5921"\w* \w your|strong="H5414"\w* \w son|strong="H1121"\w* \w David|strong="H1732"\w*.’” +\p +\v 9 \w When|strong="H1696"\w* \w David|strong="H1732"\w*’s \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w came|strong="H1697"\w*, \w they|strong="H1697"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Nabal|strong="H5037"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w words|strong="H1697"\w* \w in|strong="H1696"\w* \w the|strong="H3605"\w* \w name|strong="H8034"\w* \w of|strong="H1697"\w* \w David|strong="H1732"\w*, \w and|strong="H1732"\w* \w waited|strong="H5117"\w*. +\p +\v 10 \w Nabal|strong="H5037"\w* \w answered|strong="H6030"\w* \w David|strong="H1732"\w*’s \w servants|strong="H5650"\w* \w and|strong="H1121"\w* \w said|strong="H6030"\w*, “\w Who|strong="H4310"\w* \w is|strong="H4310"\w* \w David|strong="H1732"\w*? \w Who|strong="H4310"\w* \w is|strong="H4310"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jesse|strong="H3448"\w*? \w There|strong="H3117"\w* \w are|strong="H3117"\w* \w many|strong="H7235"\w* \w servants|strong="H5650"\w* \w who|strong="H4310"\w* \w break|strong="H6555"\w* \w away|strong="H6555"\w* \w from|strong="H6440"\w* \w their|strong="H6440"\w* masters \w these|strong="H6440"\w* \w days|strong="H3117"\w*. +\v 11 \w Shall|strong="H3808"\w* \w I|strong="H5414"\w* \w then|strong="H2088"\w* \w take|strong="H3947"\w* \w my|strong="H5414"\w* \w bread|strong="H3899"\w*, \w my|strong="H5414"\w* \w water|strong="H4325"\w*, \w and|strong="H3899"\w* \w my|strong="H5414"\w* \w meat|strong="H3899"\w* \w that|strong="H3045"\w* \w I|strong="H5414"\w* \w have|strong="H3045"\w* \w killed|strong="H2873"\w* \w for|strong="H4325"\w* \w my|strong="H5414"\w* \w shearers|strong="H1494"\w*, \w and|strong="H3899"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H5414"\w* \w men|strong="H1992"\w* \w who|strong="H1992"\w* \w I|strong="H5414"\w* don’t \w know|strong="H3045"\w* \w where|strong="H2088"\w* \w they|strong="H1992"\w* \w come|strong="H3045"\w* \w from|strong="H3947"\w*?” +\p +\v 12 \w So|strong="H7725"\w* \w David|strong="H1732"\w*’s \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w turned|strong="H2015"\w* \w on|strong="H1870"\w* \w their|strong="H3605"\w* \w way|strong="H1870"\w* \w and|strong="H7725"\w* \w went|strong="H1732"\w* \w back|strong="H7725"\w*, \w and|strong="H7725"\w* \w came|strong="H7725"\w* \w and|strong="H7725"\w* \w told|strong="H5046"\w* \w him|strong="H5046"\w* \w all|strong="H3605"\w* \w these|strong="H3605"\w* \w words|strong="H1697"\w*. +\p +\v 13 \w David|strong="H1732"\w* said \w to|strong="H5927"\w* \w his|strong="H1732"\w* men, “\w Every|strong="H3427"\w* man \w put|strong="H5927"\w* \w on|strong="H5921"\w* \w his|strong="H1732"\w* \w sword|strong="H2719"\w*!” +\p \w Every|strong="H3427"\w* man \w put|strong="H5927"\w* \w on|strong="H5921"\w* \w his|strong="H1732"\w* \w sword|strong="H2719"\w*. \w David|strong="H1732"\w* \w also|strong="H1571"\w* \w put|strong="H5927"\w* \w on|strong="H5921"\w* \w his|strong="H1732"\w* \w sword|strong="H2719"\w*. \w About|strong="H5921"\w* four \w hundred|strong="H3967"\w* men \w followed|strong="H5927"\w* \w David|strong="H1732"\w*, \w and|strong="H3967"\w* \w two|strong="H3427"\w* \w hundred|strong="H3967"\w* \w stayed|strong="H3427"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w baggage|strong="H3627"\w*. +\p +\v 14 \w But|strong="H2009"\w* one \w of|strong="H4057"\w* \w the|strong="H1288"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w told|strong="H5046"\w* Abigail, \w Nabal|strong="H5037"\w*’s wife, saying, “\w Behold|strong="H2009"\w*, \w David|strong="H1732"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w out|strong="H7971"\w* \w of|strong="H4057"\w* \w the|strong="H1288"\w* \w wilderness|strong="H4057"\w* \w to|strong="H7971"\w* \w greet|strong="H1288"\w* \w our|strong="H1288"\w* master; \w and|strong="H7971"\w* \w he|strong="H1732"\w* insulted \w them|strong="H7971"\w*. +\v 15 \w But|strong="H3808"\w* \w the|strong="H3605"\w* \w men|strong="H1980"\w* \w were|strong="H1961"\w* \w very|strong="H3966"\w* \w good|strong="H2896"\w* \w to|strong="H1980"\w* \w us|strong="H3117"\w*, \w and|strong="H1980"\w* \w we|strong="H3068"\w* \w were|strong="H1961"\w* \w not|strong="H3808"\w* harmed, \w and|strong="H1980"\w* \w we|strong="H3068"\w* didn’t \w miss|strong="H6485"\w* \w anything|strong="H3605"\w* \w as|strong="H3117"\w* \w long|strong="H3117"\w* \w as|strong="H3117"\w* \w we|strong="H3068"\w* \w went|strong="H1980"\w* \w with|strong="H1980"\w* \w them|strong="H1961"\w*, \w when|strong="H1961"\w* \w we|strong="H3068"\w* \w were|strong="H1961"\w* \w in|strong="H1980"\w* \w the|strong="H3605"\w* \w fields|strong="H7704"\w*. +\v 16 \w They|strong="H3117"\w* \w were|strong="H1961"\w* \w a|strong="H3068"\w* \w wall|strong="H2346"\w* \w to|strong="H1961"\w* \w us|strong="H5921"\w* \w both|strong="H1571"\w* \w by|strong="H5921"\w* \w night|strong="H3915"\w* \w and|strong="H3117"\w* \w by|strong="H5921"\w* \w day|strong="H3117"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w while|strong="H1961"\w* \w we|strong="H3068"\w* \w were|strong="H1961"\w* \w with|strong="H5973"\w* \w them|strong="H5921"\w* \w keeping|strong="H7462"\w* \w the|strong="H3605"\w* \w sheep|strong="H6629"\w*. +\v 17 \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* \w know|strong="H3045"\w* \w and|strong="H1121"\w* \w consider|strong="H7200"\w* \w what|strong="H4100"\w* \w you|strong="H3588"\w* \w will|strong="H1121"\w* \w do|strong="H6213"\w*; \w for|strong="H3588"\w* \w evil|strong="H7451"\w* \w is|strong="H1931"\w* \w determined|strong="H3615"\w* \w against|strong="H5921"\w* \w our|strong="H3605"\w* master \w and|strong="H1121"\w* \w against|strong="H5921"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*, \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w such|strong="H1931"\w* \w a|strong="H3068"\w* \w worthless|strong="H1100"\w* \w fellow|strong="H1121"\w* \w that|strong="H3588"\w* \w one|strong="H3605"\w* \w can|strong="H4100"\w*’t \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5921"\w*.” +\p +\v 18 \w Then|strong="H3947"\w* Abigail \w hurried|strong="H4116"\w* \w and|strong="H3967"\w* \w took|strong="H3947"\w* \w two|strong="H8147"\w* \w hundred|strong="H3967"\w* \w loaves|strong="H3899"\w* \w of|strong="H5921"\w* \w bread|strong="H3899"\w*, \w two|strong="H8147"\w* \w containers|strong="H5035"\w* \w of|strong="H5921"\w* \w wine|strong="H3196"\w*, \w five|strong="H2568"\w* \w sheep|strong="H6629"\w* \w ready|strong="H6213"\w* \w dressed|strong="H6213"\w*, \w five|strong="H2568"\w* \w seahs|strong="H5429"\w*\f + \fr 25:18 \ft 1 seah is about 7 liters or 1.9 gallons or 0.8 pecks\f* \w of|strong="H5921"\w* \w parched|strong="H7039"\w* \w grain|strong="H7039"\w*, \w one|strong="H6213"\w* \w hundred|strong="H3967"\w* \w clusters|strong="H6778"\w* \w of|strong="H5921"\w* \w raisins|strong="H6778"\w*, \w and|strong="H3967"\w* \w two|strong="H8147"\w* \w hundred|strong="H3967"\w* \w cakes|strong="H1690"\w* \w of|strong="H5921"\w* \w figs|strong="H1690"\w*, \w and|strong="H3967"\w* \w laid|strong="H7760"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w donkeys|strong="H2543"\w*. +\v 19 \w She|strong="H6440"\w* said \w to|strong="H6440"\w* \w her|strong="H5046"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w*, “\w Go|strong="H5674"\w* \w on|strong="H5674"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*. \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H2005"\w* coming after \w you|strong="H6440"\w*.” \w But|strong="H3808"\w* \w she|strong="H6440"\w* didn’t \w tell|strong="H5046"\w* \w her|strong="H5046"\w* husband, \w Nabal|strong="H5037"\w*. +\v 20 \w As|strong="H1961"\w* \w she|strong="H1931"\w* \w rode|strong="H7392"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w* \w donkey|strong="H2543"\w*, \w and|strong="H1732"\w* \w came|strong="H1961"\w* \w down|strong="H3381"\w* \w hidden|strong="H5643"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w mountain|strong="H2022"\w*, \w behold|strong="H2009"\w*, \w David|strong="H1732"\w* \w and|strong="H1732"\w* \w his|strong="H1732"\w* men \w came|strong="H1961"\w* \w down|strong="H3381"\w* \w toward|strong="H5921"\w* \w her|strong="H5921"\w*, \w and|strong="H1732"\w* \w she|strong="H1931"\w* \w met|strong="H6298"\w* \w them|strong="H5921"\w*. +\p +\v 21 \w Now|strong="H2088"\w* \w David|strong="H1732"\w* \w had|strong="H1732"\w* said, “\w Surely|strong="H6485"\w* \w in|strong="H7725"\w* \w vain|strong="H8267"\w* \w I|strong="H2088"\w* \w have|strong="H3605"\w* \w kept|strong="H8104"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w this|strong="H2088"\w* fellow \w has|strong="H2088"\w* \w in|strong="H7725"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w*, \w so|strong="H3808"\w* \w that|strong="H3605"\w* \w nothing|strong="H3808"\w* \w was|strong="H1732"\w* \w missed|strong="H6485"\w* \w of|strong="H4057"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* pertained \w to|strong="H7725"\w* \w him|strong="H7725"\w*. \w He|strong="H3605"\w* \w has|strong="H2088"\w* \w returned|strong="H7725"\w* \w me|strong="H7725"\w* \w evil|strong="H7451"\w* \w for|strong="H8478"\w* \w good|strong="H2896"\w*. +\v 22 God \w do|strong="H6213"\w* \w so|strong="H6213"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* enemies \w of|strong="H3605"\w* \w David|strong="H1732"\w*, \w and|strong="H1732"\w* \w more|strong="H3254"\w* \w also|strong="H1732"\w*, if \w I|strong="H5704"\w* \w leave|strong="H7604"\w* \w of|strong="H3605"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* belongs \w to|strong="H5704"\w* \w him|strong="H6213"\w* \w by|strong="H1242"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w* light \w so|strong="H6213"\w* \w much|strong="H6213"\w* \w as|strong="H5704"\w* \w one|strong="H3605"\w* \w who|strong="H3605"\w* urinates \w on|strong="H6213"\w* \w a|strong="H3068"\w* \w wall|strong="H7023"\w*.”\f + \fr 25:22 \ft or, male.\f* +\p +\v 23 \w When|strong="H7200"\w* Abigail \w saw|strong="H7200"\w* \w David|strong="H1732"\w*, \w she|strong="H5921"\w* \w hurried|strong="H4116"\w* \w and|strong="H1732"\w* got \w off|strong="H5921"\w* \w her|strong="H5921"\w* \w donkey|strong="H2543"\w*, \w and|strong="H1732"\w* \w fell|strong="H5307"\w* \w before|strong="H6440"\w* \w David|strong="H1732"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w* \w face|strong="H6440"\w* \w and|strong="H1732"\w* \w bowed|strong="H7812"\w* \w herself|strong="H7812"\w* \w to|strong="H3381"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w*. +\v 24 \w She|strong="H5921"\w* \w fell|strong="H5307"\w* \w at|strong="H5921"\w* \w his|strong="H8085"\w* \w feet|strong="H7272"\w* \w and|strong="H8085"\w* \w said|strong="H1696"\w*, “\w On|strong="H5921"\w* \w me|strong="H4994"\w*, \w my|strong="H8085"\w* lord, \w on|strong="H5921"\w* \w me|strong="H4994"\w* \w be|strong="H1697"\w* \w the|strong="H5921"\w* \w blame|strong="H5771"\w*! \w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w your|strong="H5921"\w* servant \w speak|strong="H1696"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* ears. \w Hear|strong="H8085"\w* \w the|strong="H5921"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w your|strong="H5921"\w* servant. +\v 25 \w Please|strong="H4994"\w* don’t \w let|strong="H7971"\w* \w my|strong="H7760"\w* lord \w pay|strong="H7760"\w* \w attention|strong="H3820"\w* \w to|strong="H7971"\w* \w this|strong="H2088"\w* \w worthless|strong="H1100"\w* fellow, \w Nabal|strong="H5037"\w*, \w for|strong="H3588"\w* \w as|strong="H3651"\w* \w his|strong="H7760"\w* \w name|strong="H8034"\w* \w is|strong="H2088"\w*, \w so|strong="H3651"\w* \w is|strong="H2088"\w* \w he|strong="H1931"\w*. \w Nabal|strong="H5037"\w*\f + \fr 25:25 \ft “Nabal” means “foolish”.\f* \w is|strong="H2088"\w* \w his|strong="H7760"\w* \w name|strong="H8034"\w*, \w and|strong="H7971"\w* \w folly|strong="H5039"\w* \w is|strong="H2088"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w*; \w but|strong="H3588"\w* \w I|strong="H3588"\w*, \w your|strong="H5921"\w* \w servant|strong="H5288"\w*, didn’t \w see|strong="H7200"\w* \w my|strong="H7760"\w* lord’s \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w whom|strong="H3588"\w* \w you|strong="H3588"\w* \w sent|strong="H7971"\w*. +\v 26 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w my|strong="H3068"\w* \w lord|strong="H3068"\w*, \w as|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H5315"\w* \w and|strong="H3068"\w* \w as|strong="H1961"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w* \w lives|strong="H5315"\w*, \w since|strong="H6258"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w withheld|strong="H4513"\w* \w you|strong="H3027"\w* \w from|strong="H5315"\w* \w blood|strong="H1818"\w* guiltiness \w and|strong="H3068"\w* \w from|strong="H5315"\w* \w avenging|strong="H3467"\w* \w yourself|strong="H5315"\w* \w with|strong="H3068"\w* \w your|strong="H3068"\w* \w own|strong="H1961"\w* \w hand|strong="H3027"\w*, \w now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w let|strong="H6258"\w* \w your|strong="H3068"\w* \w enemies|strong="H3027"\w* \w and|strong="H3068"\w* \w those|strong="H3467"\w* \w who|strong="H3068"\w* \w seek|strong="H1245"\w* \w evil|strong="H7451"\w* \w to|strong="H3068"\w* \w my|strong="H3068"\w* \w lord|strong="H3068"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w Nabal|strong="H5037"\w*. +\v 27 \w Now|strong="H6258"\w* \w this|strong="H2063"\w* \w present|strong="H1293"\w* which \w your|strong="H5414"\w* \w servant|strong="H5288"\w* \w has|strong="H7272"\w* \w brought|strong="H5414"\w* \w to|strong="H1980"\w* \w my|strong="H5414"\w* lord, \w let|strong="H5414"\w* \w it|strong="H5414"\w* \w be|strong="H5414"\w* \w given|strong="H5414"\w* \w to|strong="H1980"\w* \w the|strong="H5414"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w who|strong="H5288"\w* \w follow|strong="H1980"\w* \w my|strong="H5414"\w* lord. +\v 28 \w Please|strong="H4994"\w* \w forgive|strong="H5375"\w* \w the|strong="H3588"\w* \w trespass|strong="H6588"\w* \w of|strong="H1004"\w* \w your|strong="H3068"\w* servant. \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w certainly|strong="H3588"\w* \w make|strong="H6213"\w* \w my|strong="H3068"\w* \w lord|strong="H3068"\w* \w a|strong="H3068"\w* sure \w house|strong="H1004"\w*, \w because|strong="H3588"\w* \w my|strong="H3068"\w* \w lord|strong="H3068"\w* \w fights|strong="H3898"\w* \w Yahweh|strong="H3068"\w*’s \w battles|strong="H4421"\w*. \w Evil|strong="H7451"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w found|strong="H4672"\w* \w in|strong="H3068"\w* \w you|strong="H3588"\w* \w all|strong="H6213"\w* \w your|strong="H3068"\w* \w days|strong="H3117"\w*. +\v 29 Though \w men|strong="H5315"\w* \w may|strong="H1961"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w to|strong="H3068"\w* \w pursue|strong="H7291"\w* \w you|strong="H8432"\w* \w and|strong="H6965"\w* \w to|strong="H3068"\w* \w seek|strong="H1245"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w*, \w yet|strong="H3068"\w* \w the|strong="H8432"\w* \w soul|strong="H5315"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w lord|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w bound|strong="H6887"\w* \w in|strong="H3068"\w* \w the|strong="H8432"\w* \w bundle|strong="H6872"\w* \w of|strong="H3068"\w* \w life|strong="H5315"\w* \w with|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w sling|strong="H7050"\w* \w out|strong="H1245"\w* \w the|strong="H8432"\w* \w souls|strong="H5315"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w enemies|strong="H6887"\w* \w as|strong="H1961"\w* \w from|strong="H5315"\w* \w a|strong="H3068"\w* \w sling|strong="H7050"\w*’s \w pocket|strong="H3709"\w*. +\v 30 \w It|strong="H5921"\w* \w will|strong="H3068"\w* \w come|strong="H1961"\w* \w to|strong="H1696"\w* \w pass|strong="H1961"\w*, \w when|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w* \w to|strong="H1696"\w* \w my|strong="H3605"\w* \w lord|strong="H3068"\w* \w according|strong="H5921"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w good|strong="H2896"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w concerning|strong="H5921"\w* \w you|strong="H3588"\w*, \w and|strong="H3478"\w* \w has|strong="H3068"\w* \w appointed|strong="H6680"\w* \w you|strong="H3588"\w* \w prince|strong="H5057"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*, +\v 31 \w that|strong="H3068"\w* \w this|strong="H2063"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w no|strong="H3808"\w* \w grief|strong="H6330"\w* \w to|strong="H3068"\w* \w you|strong="H3808"\w*, \w nor|strong="H3808"\w* offense \w of|strong="H3068"\w* \w heart|strong="H3820"\w* \w to|strong="H3068"\w* \w my|strong="H3068"\w* \w lord|strong="H3068"\w*, \w either|strong="H3808"\w* \w that|strong="H3068"\w* \w you|strong="H3808"\w* \w have|strong="H1961"\w* \w shed|strong="H8210"\w* \w blood|strong="H1818"\w* \w without|strong="H3808"\w* \w cause|strong="H2600"\w*, \w or|strong="H3808"\w* \w that|strong="H3068"\w* \w my|strong="H3068"\w* \w lord|strong="H3068"\w* \w has|strong="H3068"\w* \w avenged|strong="H3467"\w* \w himself|strong="H3820"\w*. \w When|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* dealt \w well|strong="H3190"\w* \w with|strong="H3068"\w* \w my|strong="H3068"\w* \w lord|strong="H3068"\w*, \w then|strong="H1961"\w* \w remember|strong="H2142"\w* \w your|strong="H3068"\w* servant.” +\p +\v 32 \w David|strong="H1732"\w* said \w to|strong="H3478"\w* Abigail, “\w Blessed|strong="H1288"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w who|strong="H3068"\w* \w sent|strong="H7971"\w* \w you|strong="H7971"\w* \w today|strong="H3117"\w* \w to|strong="H3478"\w* \w meet|strong="H7122"\w* \w me|strong="H7971"\w*! +\v 33 \w Blessed|strong="H1288"\w* \w is|strong="H2088"\w* \w your|strong="H3027"\w* \w discretion|strong="H2940"\w*, \w and|strong="H3117"\w* \w blessed|strong="H1288"\w* \w are|strong="H3117"\w* \w you|strong="H3117"\w*, \w who|strong="H2088"\w* \w have|strong="H3027"\w* \w kept|strong="H3607"\w* \w me|strong="H1288"\w* \w today|strong="H3117"\w* \w from|strong="H3027"\w* \w blood|strong="H1818"\w* guiltiness, \w and|strong="H3117"\w* \w from|strong="H3027"\w* \w avenging|strong="H3467"\w* myself \w with|strong="H3117"\w* \w my|strong="H3467"\w* \w own|strong="H3027"\w* \w hand|strong="H3027"\w*. +\v 34 \w For|strong="H3588"\w* \w indeed|strong="H3588"\w*, \w as|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w the|strong="H3588"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w lives|strong="H2416"\w*, \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w withheld|strong="H4513"\w* \w me|strong="H4513"\w* \w from|strong="H3478"\w* \w harming|strong="H7489"\w* \w you|strong="H3588"\w*, \w unless|strong="H3588"\w* \w you|strong="H3588"\w* \w had|strong="H3068"\w* \w hurried|strong="H4116"\w* \w and|strong="H3478"\w* \w come|strong="H7122"\w* \w to|strong="H5704"\w* \w meet|strong="H7122"\w* \w me|strong="H4513"\w*, \w surely|strong="H3588"\w* \w there|strong="H3498"\w* wouldn’t \w have|strong="H3068"\w* \w been|strong="H3068"\w* \w left|strong="H3498"\w* \w to|strong="H5704"\w* \w Nabal|strong="H5037"\w* \w by|strong="H3068"\w* \w the|strong="H3588"\w* \w morning|strong="H1242"\w* light \w so|strong="H3588"\w* \w much|strong="H3498"\w* \w as|strong="H5704"\w* \w one|strong="H2416"\w* \w who|strong="H3068"\w* urinates \w on|strong="H3068"\w* \w a|strong="H3068"\w* \w wall|strong="H7023"\w*.”\f + \fr 25:34 \ft or, one male.\f* +\p +\v 35 \w So|strong="H3947"\w* \w David|strong="H1732"\w* \w received|strong="H3947"\w* \w from|strong="H6440"\w* \w her|strong="H3947"\w* \w hand|strong="H3027"\w* \w that|strong="H7200"\w* \w which|strong="H1004"\w* \w she|strong="H6440"\w* \w had|strong="H1732"\w* \w brought|strong="H5927"\w* \w him|strong="H6440"\w*. \w Then|strong="H3947"\w* \w he|strong="H1004"\w* \w said|strong="H8085"\w* \w to|strong="H5927"\w* \w her|strong="H3947"\w*, “\w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w in|strong="H1004"\w* \w peace|strong="H7965"\w* \w to|strong="H5927"\w* \w your|strong="H3947"\w* \w house|strong="H1004"\w*. \w Behold|strong="H7200"\w*, \w I|strong="H7200"\w* \w have|strong="H3027"\w* \w listened|strong="H8085"\w* \w to|strong="H5927"\w* \w your|strong="H3947"\w* \w voice|strong="H6963"\w* \w and|strong="H3027"\w* \w have|strong="H3027"\w* \w granted|strong="H5375"\w* \w your|strong="H3947"\w* \w request|strong="H6963"\w*.” +\p +\v 36 Abigail \w came|strong="H1697"\w* \w to|strong="H5704"\w* \w Nabal|strong="H5037"\w*; \w and|strong="H4428"\w* \w behold|strong="H2009"\w*, \w he|strong="H1931"\w* \w held|strong="H4428"\w* \w a|strong="H3068"\w* \w feast|strong="H4960"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w house|strong="H1004"\w* \w like|strong="H1004"\w* \w the|strong="H5921"\w* \w feast|strong="H4960"\w* \w of|strong="H4428"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w*. \w Nabal|strong="H5037"\w*’s \w heart|strong="H3820"\w* \w was|strong="H3820"\w* \w merry|strong="H2896"\w* \w within|strong="H1004"\w* \w him|strong="H5921"\w*, \w for|strong="H5704"\w* \w he|strong="H1931"\w* \w was|strong="H3820"\w* \w very|strong="H3966"\w* \w drunk|strong="H7910"\w*. \w Therefore|strong="H5921"\w* \w she|strong="H1931"\w* \w told|strong="H5046"\w* \w him|strong="H5921"\w* \w nothing|strong="H3808"\w* \w until|strong="H5704"\w* \w the|strong="H5921"\w* \w morning|strong="H1242"\w* light. +\v 37 \w In|strong="H4191"\w* \w the|strong="H3318"\w* \w morning|strong="H1242"\w*, \w when|strong="H1961"\w* \w the|strong="H3318"\w* \w wine|strong="H3196"\w* \w had|strong="H1961"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1697"\w* \w Nabal|strong="H5037"\w*, \w his|strong="H5046"\w* wife \w told|strong="H5046"\w* \w him|strong="H5046"\w* \w these|strong="H1931"\w* \w things|strong="H1697"\w*; \w and|strong="H1242"\w* \w his|strong="H5046"\w* \w heart|strong="H3820"\w* \w died|strong="H4191"\w* \w within|strong="H7130"\w* \w him|strong="H5046"\w*, \w and|strong="H1242"\w* \w he|strong="H1931"\w* \w became|strong="H1961"\w* \w as|strong="H1697"\w* \w a|strong="H3068"\w* stone. +\v 38 \w About|strong="H1961"\w* \w ten|strong="H6235"\w* \w days|strong="H3117"\w* \w later|strong="H1961"\w*, \w Yahweh|strong="H3068"\w* \w struck|strong="H5062"\w* \w Nabal|strong="H5037"\w*, \w so|strong="H1961"\w* \w that|strong="H3117"\w* \w he|strong="H3117"\w* \w died|strong="H4191"\w*. +\v 39 \w When|strong="H3588"\w* \w David|strong="H1732"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w Nabal|strong="H5037"\w* \w was|strong="H3068"\w* \w dead|strong="H4191"\w*, \w he|strong="H3588"\w* \w said|strong="H1696"\w*, “\w Blessed|strong="H1288"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w pleaded|strong="H7378"\w* \w the|strong="H8085"\w* \w cause|strong="H7379"\w* \w of|strong="H3068"\w* \w my|strong="H8085"\w* \w reproach|strong="H2781"\w* \w from|strong="H7725"\w* \w the|strong="H8085"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w Nabal|strong="H5037"\w*, \w and|strong="H3068"\w* \w has|strong="H3068"\w* \w kept|strong="H2820"\w* \w back|strong="H7725"\w* \w his|strong="H3068"\w* \w servant|strong="H5650"\w* \w from|strong="H7725"\w* \w evil|strong="H7451"\w*. \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w returned|strong="H7725"\w* \w the|strong="H8085"\w* evildoing \w of|strong="H3068"\w* \w Nabal|strong="H5037"\w* \w on|strong="H3027"\w* \w his|strong="H3068"\w* \w own|strong="H3027"\w* \w head|strong="H7218"\w*.” +\p \w David|strong="H1732"\w* \w sent|strong="H7971"\w* \w and|strong="H3068"\w* \w spoke|strong="H1696"\w* \w concerning|strong="H3068"\w* Abigail, \w to|strong="H1696"\w* \w take|strong="H3947"\w* \w her|strong="H7971"\w* \w to|strong="H1696"\w* \w himself|strong="H3027"\w* \w as|strong="H3068"\w* \w wife|strong="H1696"\w*. +\v 40 \w When|strong="H1696"\w* \w David|strong="H1732"\w*’s \w servants|strong="H5650"\w* \w had|strong="H1732"\w* \w come|strong="H7971"\w* \w to|strong="H1696"\w* Abigail \w to|strong="H1696"\w* \w Carmel|strong="H3760"\w*, \w they|strong="H3947"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w her|strong="H7971"\w*, \w saying|strong="H1696"\w*, “\w David|strong="H1732"\w* \w has|strong="H5650"\w* \w sent|strong="H7971"\w* \w us|strong="H7971"\w* \w to|strong="H1696"\w* \w you|strong="H7971"\w*, \w to|strong="H1696"\w* \w take|strong="H3947"\w* \w you|strong="H7971"\w* \w to|strong="H1696"\w* \w him|strong="H7971"\w* \w as|strong="H1696"\w* \w wife|strong="H1696"\w*.” +\p +\v 41 \w She|strong="H6965"\w* \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w bowed|strong="H7812"\w* \w herself|strong="H7812"\w* \w with|strong="H7364"\w* \w her|strong="H6965"\w* face \w to|strong="H6965"\w* \w the|strong="H6965"\w* earth, \w and|strong="H6965"\w* said, “\w Behold|strong="H2009"\w*, \w your|strong="H6965"\w* \w servant|strong="H5650"\w* \w is|strong="H2009"\w* \w a|strong="H3068"\w* \w servant|strong="H5650"\w* \w to|strong="H6965"\w* \w wash|strong="H7364"\w* \w the|strong="H6965"\w* \w feet|strong="H7272"\w* \w of|strong="H5650"\w* \w the|strong="H6965"\w* \w servants|strong="H5650"\w* \w of|strong="H5650"\w* \w my|strong="H6965"\w* lord.” +\v 42 Abigail \w hurriedly|strong="H4116"\w* \w arose|strong="H6965"\w* \w and|strong="H1980"\w* \w rode|strong="H7392"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w donkey|strong="H2543"\w* \w with|strong="H1980"\w* \w her|strong="H5921"\w* \w five|strong="H2568"\w* \w maids|strong="H5291"\w* \w who|strong="H4397"\w* \w followed|strong="H1980"\w* \w her|strong="H5921"\w*; \w and|strong="H1980"\w* \w she|strong="H5921"\w* \w went|strong="H1980"\w* \w after|strong="H5921"\w* \w the|strong="H5921"\w* \w messengers|strong="H4397"\w* \w of|strong="H5921"\w* \w David|strong="H1732"\w*, \w and|strong="H1980"\w* \w became|strong="H1961"\w* \w his|strong="H1732"\w* wife. +\v 43 \w David|strong="H1732"\w* \w also|strong="H1571"\w* \w took|strong="H3947"\w* Ahinoam \w of|strong="H8147"\w* \w Jezreel|strong="H3157"\w*; \w and|strong="H1732"\w* \w they|strong="H1571"\w* \w both|strong="H8147"\w* \w became|strong="H1961"\w* \w his|strong="H3947"\w* wives. +\p +\v 44 \w Now|strong="H5414"\w* \w Saul|strong="H7586"\w* \w had|strong="H1732"\w* \w given|strong="H5414"\w* \w Michal|strong="H4324"\w* \w his|strong="H5414"\w* \w daughter|strong="H1323"\w*, \w David|strong="H1732"\w*’s wife, \w to|strong="H5414"\w* \w Palti|strong="H6406"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Laish|strong="H3919"\w*, \w who|strong="H1121"\w* \w was|strong="H1732"\w* \w of|strong="H1121"\w* \w Gallim|strong="H1554"\w*. +\c 26 +\p +\v 1 \w The|strong="H6440"\w* \w Ziphites|strong="H2130"\w* \w came|strong="H7586"\w* \w to|strong="H5921"\w* \w Saul|strong="H7586"\w* \w to|strong="H5921"\w* \w Gibeah|strong="H1390"\w*, saying, “Doesn’t \w David|strong="H1732"\w* \w hide|strong="H5641"\w* \w himself|strong="H6440"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w hill|strong="H1389"\w* \w of|strong="H6440"\w* \w Hachilah|strong="H2444"\w*, which \w is|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w desert|strong="H3452"\w*?” +\v 2 \w Then|strong="H6965"\w* \w Saul|strong="H7586"\w* \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H6965"\w* \w wilderness|strong="H4057"\w* \w of|strong="H4057"\w* \w Ziph|strong="H2128"\w*, having \w three|strong="H7969"\w* thousand chosen \w men|strong="H3478"\w* \w of|strong="H4057"\w* \w Israel|strong="H3478"\w* \w with|strong="H3381"\w* \w him|strong="H3381"\w*, \w to|strong="H3381"\w* \w seek|strong="H1245"\w* \w David|strong="H1732"\w* \w in|strong="H3478"\w* \w the|strong="H6965"\w* \w wilderness|strong="H4057"\w* \w of|strong="H4057"\w* \w Ziph|strong="H2128"\w*. +\v 3 \w Saul|strong="H7586"\w* \w encamped|strong="H2583"\w* \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w hill|strong="H1389"\w* \w of|strong="H3427"\w* \w Hachilah|strong="H2444"\w*, \w which|strong="H4057"\w* \w is|strong="H1870"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w desert|strong="H4057"\w*, \w by|strong="H5921"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w*. \w But|strong="H3588"\w* \w David|strong="H1732"\w* \w stayed|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w wilderness|strong="H4057"\w*, \w and|strong="H1732"\w* \w he|strong="H3588"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w Saul|strong="H7586"\w* \w came|strong="H7586"\w* \w after|strong="H5921"\w* \w him|strong="H6440"\w* \w into|strong="H5921"\w* \w the|strong="H6440"\w* \w wilderness|strong="H4057"\w*. +\v 4 \w David|strong="H1732"\w* \w therefore|strong="H1732"\w* \w sent|strong="H7971"\w* \w out|strong="H7971"\w* \w spies|strong="H7270"\w*, \w and|strong="H7971"\w* \w understood|strong="H3045"\w* \w that|strong="H3588"\w* \w Saul|strong="H7586"\w* \w had|strong="H1732"\w* \w certainly|strong="H3588"\w* \w come|strong="H7586"\w*. +\v 5 \w Then|strong="H6965"\w* \w David|strong="H1732"\w* \w arose|strong="H6965"\w* \w and|strong="H1121"\w* \w came|strong="H5971"\w* \w to|strong="H1121"\w* \w the|strong="H7200"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w Saul|strong="H7586"\w* \w had|strong="H1732"\w* \w encamped|strong="H2583"\w*; \w and|strong="H1121"\w* \w David|strong="H1732"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w Saul|strong="H7586"\w* \w lay|strong="H7901"\w*, \w with|strong="H7901"\w* Abner \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ner|strong="H5369"\w*, \w the|strong="H7200"\w* \w captain|strong="H8269"\w* \w of|strong="H1121"\w* \w his|strong="H1732"\w* \w army|strong="H6635"\w*. \w Saul|strong="H7586"\w* \w lay|strong="H7901"\w* within \w the|strong="H7200"\w* \w place|strong="H4725"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* wagons, \w and|strong="H1121"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w* \w were|strong="H5971"\w* \w encamped|strong="H2583"\w* \w around|strong="H5439"\w* \w him|strong="H7200"\w*. +\p +\v 6 \w Then|strong="H6030"\w* \w David|strong="H1732"\w* \w answered|strong="H6030"\w* \w and|strong="H1121"\w* \w said|strong="H6030"\w* \w to|strong="H3381"\w* Ahimelech \w the|strong="H5973"\w* \w Hittite|strong="H2850"\w*, \w and|strong="H1121"\w* \w to|strong="H3381"\w* Abishai \w the|strong="H5973"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w*, brother \w of|strong="H1121"\w* \w Joab|strong="H3097"\w*, saying, “\w Who|strong="H4310"\w* \w will|strong="H4310"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w with|strong="H5973"\w* \w me|strong="H5973"\w* \w to|strong="H3381"\w* \w Saul|strong="H7586"\w* \w to|strong="H3381"\w* \w the|strong="H5973"\w* \w camp|strong="H4264"\w*?” +\p Abishai \w said|strong="H6030"\w*, “\w I|strong="H1121"\w* \w will|strong="H4310"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w with|strong="H5973"\w* \w you|strong="H5973"\w*.” +\v 7 So \w David|strong="H1732"\w* \w and|strong="H5971"\w* Abishai \w came|strong="H5971"\w* \w to|strong="H1732"\w* \w the|strong="H5439"\w* \w people|strong="H5971"\w* \w by|strong="H3915"\w* \w night|strong="H3915"\w*; \w and|strong="H5971"\w*, \w behold|strong="H2009"\w*, \w Saul|strong="H7586"\w* \w lay|strong="H7901"\w* \w sleeping|strong="H3463"\w* within \w the|strong="H5439"\w* place \w of|strong="H5971"\w* \w the|strong="H5439"\w* wagons, \w with|strong="H7901"\w* \w his|strong="H1732"\w* \w spear|strong="H2595"\w* \w stuck|strong="H4600"\w* \w in|strong="H7901"\w* \w the|strong="H5439"\w* ground \w at|strong="H1732"\w* \w his|strong="H1732"\w* \w head|strong="H4763"\w*; \w and|strong="H5971"\w* Abner \w and|strong="H5971"\w* \w the|strong="H5439"\w* \w people|strong="H5971"\w* \w lay|strong="H7901"\w* \w around|strong="H5439"\w* \w him|strong="H5439"\w*. +\v 8 \w Then|strong="H6258"\w* Abishai said \w to|strong="H3027"\w* \w David|strong="H1732"\w*, “\w God|strong="H3808"\w* \w has|strong="H3117"\w* \w delivered|strong="H5462"\w* \w up|strong="H5462"\w* \w your|strong="H3808"\w* enemy \w into|strong="H2595"\w* \w your|strong="H3808"\w* \w hand|strong="H3027"\w* \w today|strong="H3117"\w*. \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w please|strong="H4994"\w* \w let|strong="H4994"\w* \w me|strong="H4994"\w* \w strike|strong="H5221"\w* \w him|strong="H5221"\w* \w with|strong="H3117"\w* \w the|strong="H5221"\w* \w spear|strong="H2595"\w* \w to|strong="H3027"\w* \w the|strong="H5221"\w* earth \w at|strong="H1732"\w* \w one|strong="H3808"\w* \w stroke|strong="H3027"\w*, \w and|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H3027"\w* \w not|strong="H3808"\w* \w strike|strong="H5221"\w* \w him|strong="H5221"\w* \w the|strong="H5221"\w* \w second|strong="H8138"\w* \w time|strong="H3117"\w*.” +\p +\v 9 \w David|strong="H1732"\w* said \w to|strong="H3068"\w* Abishai, “Don’t \w destroy|strong="H7843"\w* \w him|strong="H7971"\w*, \w for|strong="H3588"\w* \w who|strong="H4310"\w* \w can|strong="H4310"\w* \w stretch|strong="H7971"\w* \w out|strong="H7971"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w* \w against|strong="H3027"\w* \w Yahweh|strong="H3068"\w*’s \w anointed|strong="H4899"\w*, \w and|strong="H3068"\w* \w be|strong="H3027"\w* \w guiltless|strong="H5352"\w*?” +\v 10 \w David|strong="H1732"\w* said, “\w As|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*, \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w strike|strong="H5062"\w* \w him|strong="H4191"\w*; \w or|strong="H3117"\w* \w his|strong="H3068"\w* \w day|strong="H3117"\w* \w shall|strong="H3068"\w* \w come|strong="H3381"\w* \w to|strong="H3381"\w* \w die|strong="H4191"\w*, \w or|strong="H3117"\w* \w he|strong="H3588"\w* \w shall|strong="H3068"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w battle|strong="H4421"\w* \w and|strong="H3068"\w* \w perish|strong="H5595"\w*. +\v 11 \w Yahweh|strong="H3068"\w* \w forbid|strong="H2486"\w* \w that|strong="H3068"\w* \w I|strong="H6258"\w* \w should|strong="H3068"\w* \w stretch|strong="H7971"\w* \w out|strong="H7971"\w* \w my|strong="H3068"\w* \w hand|strong="H3027"\w* \w against|strong="H3027"\w* \w Yahweh|strong="H3068"\w*’s \w anointed|strong="H4899"\w*; \w but|strong="H6258"\w* \w now|strong="H6258"\w* \w please|strong="H4994"\w* \w take|strong="H3947"\w* \w the|strong="H3947"\w* \w spear|strong="H2595"\w* \w that|strong="H3068"\w* \w is|strong="H3068"\w* \w at|strong="H3068"\w* \w his|strong="H3068"\w* \w head|strong="H4763"\w* \w and|strong="H3068"\w* \w the|strong="H3947"\w* \w jar|strong="H6835"\w* \w of|strong="H3068"\w* \w water|strong="H4325"\w*, \w and|strong="H3068"\w* \w let|strong="H7971"\w*’s \w go|strong="H3212"\w*.” +\p +\v 12 \w So|strong="H3947"\w* \w David|strong="H1732"\w* \w took|strong="H3947"\w* \w the|strong="H3605"\w* \w spear|strong="H2595"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w jar|strong="H6835"\w* \w of|strong="H3068"\w* \w water|strong="H4325"\w* \w from|strong="H5921"\w* \w Saul|strong="H7586"\w*’s \w head|strong="H5307"\w*, \w and|strong="H3068"\w* \w they|strong="H3588"\w* \w went|strong="H3212"\w* \w away|strong="H3947"\w*. \w No|strong="H3605"\w* \w man|strong="H3605"\w* \w saw|strong="H7200"\w* \w it|strong="H5921"\w*, \w or|strong="H7200"\w* \w knew|strong="H3045"\w* \w it|strong="H5921"\w*, \w nor|strong="H3045"\w* \w did|strong="H3068"\w* \w any|strong="H3605"\w* \w awake|strong="H6974"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H4325"\w* \w all|strong="H3605"\w* \w asleep|strong="H3462"\w*, \w because|strong="H3588"\w* \w a|strong="H3068"\w* \w deep|strong="H8639"\w* \w sleep|strong="H3462"\w* \w from|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w fallen|strong="H5307"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 13 \w Then|strong="H5975"\w* \w David|strong="H1732"\w* \w went|strong="H5674"\w* \w over|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w other|strong="H5676"\w* \w side|strong="H5676"\w*, \w and|strong="H1732"\w* \w stood|strong="H5975"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w top|strong="H7218"\w* \w of|strong="H2022"\w* \w the|strong="H5921"\w* \w mountain|strong="H2022"\w* \w far|strong="H7350"\w* \w away|strong="H5674"\w*, \w a|strong="H3068"\w* \w great|strong="H7227"\w* \w space|strong="H4725"\w* being \w between|strong="H5921"\w* \w them|strong="H5921"\w*; +\v 14 \w and|strong="H1121"\w* \w David|strong="H1732"\w* \w cried|strong="H7121"\w* \w to|strong="H1121"\w* \w the|strong="H7121"\w* \w people|strong="H5971"\w*, \w and|strong="H1121"\w* \w to|strong="H1121"\w* Abner \w the|strong="H7121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ner|strong="H5369"\w*, saying, “Don’t \w you|strong="H3808"\w* \w answer|strong="H6030"\w*, Abner?” +\p \w Then|strong="H6030"\w* Abner \w answered|strong="H6030"\w*, “\w Who|strong="H4310"\w* \w are|strong="H5971"\w* \w you|strong="H3808"\w* \w who|strong="H4310"\w* \w calls|strong="H7121"\w* \w to|strong="H1121"\w* \w the|strong="H7121"\w* \w king|strong="H4428"\w*?” +\p +\v 15 \w David|strong="H1732"\w* said \w to|strong="H3478"\w* Abner, “Aren’t \w you|strong="H3588"\w* \w a|strong="H3068"\w* man? \w Who|strong="H4310"\w* \w is|strong="H4310"\w* \w like|strong="H3644"\w* \w you|strong="H3588"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*? \w Why|strong="H4100"\w* \w then|strong="H4428"\w* \w have|strong="H5971"\w* \w you|strong="H3588"\w* \w not|strong="H3808"\w* \w kept|strong="H8104"\w* \w watch|strong="H8104"\w* \w over|strong="H4428"\w* \w your|strong="H8104"\w* lord \w the|strong="H3588"\w* \w king|strong="H4428"\w*? \w For|strong="H3588"\w* \w one|strong="H3808"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w came|strong="H3478"\w* \w in|strong="H3478"\w* \w to|strong="H3478"\w* \w destroy|strong="H7843"\w* \w your|strong="H8104"\w* lord \w the|strong="H3588"\w* \w king|strong="H4428"\w*. +\v 16 \w This|strong="H2088"\w* \w thing|strong="H1697"\w* isn’t \w good|strong="H2896"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w*. \w As|strong="H1697"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*, \w you|strong="H3588"\w* \w are|strong="H1121"\w* \w worthy|strong="H1121"\w* \w to|strong="H3068"\w* \w die|strong="H4194"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w kept|strong="H8104"\w* \w watch|strong="H8104"\w* \w over|strong="H5921"\w* \w your|strong="H3068"\w* \w lord|strong="H3068"\w*, \w Yahweh|strong="H3068"\w*’s \w anointed|strong="H4899"\w*. \w Now|strong="H6258"\w* \w see|strong="H7200"\w* \w where|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w spear|strong="H2595"\w* \w is|strong="H3068"\w*, \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w jar|strong="H6835"\w* \w of|strong="H1121"\w* \w water|strong="H4325"\w* \w that|strong="H3588"\w* \w was|strong="H3068"\w* \w at|strong="H5921"\w* \w his|strong="H8104"\w* \w head|strong="H4763"\w*.” +\p +\v 17 \w Saul|strong="H7586"\w* \w recognized|strong="H5234"\w* \w David|strong="H1732"\w*’s \w voice|strong="H6963"\w*, \w and|strong="H1121"\w* said, “\w Is|strong="H2088"\w* \w this|strong="H2088"\w* \w your|strong="H2088"\w* \w voice|strong="H6963"\w*, \w my|strong="H1732"\w* \w son|strong="H1121"\w* \w David|strong="H1732"\w*?” +\p \w David|strong="H1732"\w* said, “\w It|strong="H5234"\w* \w is|strong="H2088"\w* \w my|strong="H1732"\w* \w voice|strong="H6963"\w*, \w my|strong="H1732"\w* lord, \w O|strong="H3068"\w* \w king|strong="H4428"\w*.” +\v 18 \w He|strong="H3588"\w* said, “\w Why|strong="H4100"\w* \w does|strong="H6213"\w* \w my|strong="H6213"\w* lord \w pursue|strong="H7291"\w* \w his|strong="H3027"\w* \w servant|strong="H5650"\w*? \w For|strong="H3588"\w* \w what|strong="H4100"\w* \w have|strong="H5650"\w* \w I|strong="H3588"\w* \w done|strong="H6213"\w*? \w What|strong="H4100"\w* \w evil|strong="H7451"\w* \w is|strong="H2088"\w* \w in|strong="H6213"\w* \w my|strong="H6213"\w* \w hand|strong="H3027"\w*? +\v 19 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w please|strong="H4994"\w* \w let|strong="H4994"\w* \w my|strong="H8085"\w* \w lord|strong="H3068"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w hear|strong="H8085"\w* \w the|strong="H6440"\w* \w words|strong="H1697"\w* \w of|strong="H1121"\w* \w his|strong="H3068"\w* \w servant|strong="H5650"\w*. \w If|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H3068"\w* \w so|strong="H6258"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w stirred|strong="H3068"\w* \w you|strong="H3588"\w* \w up|strong="H5496"\w* \w against|strong="H6440"\w* \w me|strong="H6440"\w*, \w let|strong="H4994"\w* \w him|strong="H6440"\w* \w accept|strong="H6440"\w* \w an|strong="H3588"\w* \w offering|strong="H4503"\w*. \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H3068"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*, \w they|strong="H1992"\w* \w are|strong="H3117"\w* cursed \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*; \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w have|strong="H3068"\w* \w driven|strong="H1644"\w* \w me|strong="H6440"\w* \w out|strong="H1644"\w* \w today|strong="H3117"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* shouldn’t cling \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w inheritance|strong="H5159"\w*, \w saying|strong="H1697"\w*, ‘\w Go|strong="H3212"\w*, \w serve|strong="H5647"\w* other gods!’ +\v 20 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, don’t \w let|strong="H6258"\w* \w my|strong="H3068"\w* \w blood|strong="H1818"\w* \w fall|strong="H5307"\w* \w to|strong="H3318"\w* \w the|strong="H6440"\w* earth \w away|strong="H5307"\w* \w from|strong="H3318"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*; \w for|strong="H3588"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w has|strong="H3068"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w seek|strong="H1245"\w* \w a|strong="H3068"\w* \w flea|strong="H6550"\w*, \w as|strong="H3068"\w* \w when|strong="H3588"\w* \w one|strong="H3588"\w* \w hunts|strong="H7291"\w* \w a|strong="H3068"\w* \w partridge|strong="H7124"\w* \w in|strong="H3478"\w* \w the|strong="H6440"\w* \w mountains|strong="H2022"\w*.” +\p +\v 21 \w Then|strong="H2009"\w* \w Saul|strong="H7586"\w* said, “\w I|strong="H3588"\w* \w have|strong="H5869"\w* \w sinned|strong="H2398"\w*. \w Return|strong="H7725"\w*, \w my|strong="H1732"\w* \w son|strong="H1121"\w* \w David|strong="H1732"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H5869"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w do|strong="H7489"\w* \w you|strong="H3588"\w* \w harm|strong="H7489"\w*, \w because|strong="H3588"\w* \w my|strong="H1732"\w* \w life|strong="H5315"\w* \w was|strong="H1732"\w* \w precious|strong="H3365"\w* \w in|strong="H3117"\w* \w your|strong="H7725"\w* \w eyes|strong="H5869"\w* \w today|strong="H3117"\w*. \w Behold|strong="H2009"\w*, \w I|strong="H3588"\w* \w have|strong="H5869"\w* \w played|strong="H5528"\w* \w the|strong="H3588"\w* \w fool|strong="H5528"\w*, \w and|strong="H1121"\w* \w have|strong="H5869"\w* \w erred|strong="H7686"\w* \w exceedingly|strong="H3966"\w*.” +\p +\v 22 \w David|strong="H1732"\w* \w answered|strong="H6030"\w*, “\w Behold|strong="H2009"\w* \w the|strong="H3947"\w* \w spear|strong="H2595"\w*, \w O|strong="H3068"\w* \w king|strong="H4428"\w*! Let \w one|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3947"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w come|strong="H5674"\w* \w over|strong="H5674"\w* \w and|strong="H6030"\w* \w get|strong="H3947"\w* \w it|strong="H3947"\w*. +\v 23 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w to|strong="H7725"\w* \w every|strong="H7725"\w* man \w his|strong="H5414"\w* \w righteousness|strong="H6666"\w* \w and|strong="H3068"\w* \w his|strong="H5414"\w* faithfulness; \w because|strong="H3027"\w* \w Yahweh|strong="H3068"\w* \w delivered|strong="H5414"\w* \w you|strong="H5414"\w* \w into|strong="H7725"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w* \w today|strong="H3117"\w*, \w and|strong="H3068"\w* \w I|strong="H3117"\w* wouldn’t \w stretch|strong="H7971"\w* \w out|strong="H7971"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w* \w against|strong="H3027"\w* \w Yahweh|strong="H3068"\w*’s \w anointed|strong="H4899"\w*. +\v 24 \w Behold|strong="H2009"\w*, \w as|strong="H3117"\w* \w your|strong="H3068"\w* \w life|strong="H5315"\w* \w was|strong="H3068"\w* \w respected|strong="H5869"\w* \w today|strong="H3117"\w* \w in|strong="H3068"\w* \w my|strong="H3605"\w* \w eyes|strong="H5869"\w*, \w so|strong="H3651"\w* \w let|strong="H3651"\w* \w my|strong="H3605"\w* \w life|strong="H5315"\w* \w be|strong="H3068"\w* \w respected|strong="H5869"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*, \w and|strong="H3068"\w* \w let|strong="H3651"\w* \w him|strong="H3605"\w* \w deliver|strong="H5337"\w* \w me|strong="H5315"\w* \w out|strong="H5337"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* oppression.” +\p +\v 25 \w Then|strong="H1571"\w* \w Saul|strong="H7586"\w* said \w to|strong="H7725"\w* \w David|strong="H1732"\w*, “\w You|strong="H7725"\w* \w are|strong="H1121"\w* \w blessed|strong="H1288"\w*, \w my|strong="H1732"\w* \w son|strong="H1121"\w* \w David|strong="H1732"\w*. \w You|strong="H7725"\w* \w will|strong="H1571"\w* \w both|strong="H1571"\w* \w do|strong="H6213"\w* mightily, \w and|strong="H1121"\w* \w will|strong="H1571"\w* \w surely|strong="H7725"\w* \w prevail|strong="H3201"\w*.” +\p \w So|strong="H6213"\w* \w David|strong="H1732"\w* \w went|strong="H3212"\w* \w his|strong="H1732"\w* \w way|strong="H1870"\w*, \w and|strong="H1121"\w* \w Saul|strong="H7586"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H1732"\w* \w place|strong="H4725"\w*. +\c 27 +\p +\v 1 \w David|strong="H1732"\w* said \w in|strong="H3478"\w* \w his|strong="H3605"\w* \w heart|strong="H3820"\w*, “\w I|strong="H3588"\w* \w will|strong="H3478"\w* \w now|strong="H6258"\w* \w perish|strong="H5595"\w* \w one|strong="H3605"\w* \w day|strong="H3117"\w* \w by|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3117"\w* \w Saul|strong="H7586"\w*. \w There|strong="H3117"\w* \w is|strong="H3820"\w* \w nothing|strong="H3605"\w* \w better|strong="H2896"\w* \w for|strong="H3588"\w* \w me|strong="H4480"\w* \w than|strong="H4480"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w should|strong="H3588"\w* \w escape|strong="H4422"\w* \w into|strong="H3027"\w* \w the|strong="H3605"\w* \w land|strong="H1366"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*; \w and|strong="H3478"\w* \w Saul|strong="H7586"\w* \w will|strong="H3478"\w* \w despair|strong="H2976"\w* \w of|strong="H3117"\w* \w me|strong="H4480"\w*, \w to|strong="H3478"\w* \w seek|strong="H1245"\w* \w me|strong="H4480"\w* \w any|strong="H3605"\w* \w more|strong="H4480"\w* \w in|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w borders|strong="H1366"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w*. \w So|strong="H4480"\w* \w I|strong="H3588"\w* \w will|strong="H3478"\w* \w escape|strong="H4422"\w* \w out|strong="H4480"\w* \w of|strong="H3117"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*.” +\v 2 \w David|strong="H1732"\w* \w arose|strong="H6965"\w* \w and|strong="H3967"\w* \w passed|strong="H5674"\w* \w over|strong="H5674"\w*, \w he|strong="H1931"\w* \w and|strong="H3967"\w* \w the|strong="H5674"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w men|strong="H1121"\w* \w who|strong="H1931"\w* \w were|strong="H1121"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*, \w to|strong="H1121"\w* Achish \w the|strong="H5674"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Maoch|strong="H4582"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Gath|strong="H1661"\w*. +\v 3 \w David|strong="H1732"\w* \w lived|strong="H3427"\w* \w with|strong="H5973"\w* Achish \w at|strong="H3427"\w* \w Gath|strong="H1661"\w*, \w he|strong="H1931"\w* \w and|strong="H1004"\w* \w his|strong="H1732"\w* \w men|strong="H8147"\w*, \w every|strong="H3427"\w* man \w with|strong="H5973"\w* \w his|strong="H1732"\w* \w household|strong="H1004"\w*, even \w David|strong="H1732"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* \w two|strong="H8147"\w* wives, Ahinoam \w the|strong="H5973"\w* \w Jezreelitess|strong="H3159"\w* \w and|strong="H1004"\w* Abigail \w the|strong="H5973"\w* \w Carmelitess|strong="H3762"\w*, \w Nabal|strong="H5037"\w*’s wife. +\v 4 \w Saul|strong="H7586"\w* \w was|strong="H1732"\w* \w told|strong="H5046"\w* \w that|strong="H3588"\w* \w David|strong="H1732"\w* \w had|strong="H1732"\w* \w fled|strong="H1272"\w* \w to|strong="H1732"\w* \w Gath|strong="H1661"\w*, \w so|strong="H3808"\w* \w he|strong="H3588"\w* stopped \w looking|strong="H1245"\w* \w for|strong="H3588"\w* \w him|strong="H5046"\w*. +\p +\v 5 \w David|strong="H1732"\w* said \w to|strong="H5414"\w* Achish, “If \w now|strong="H4994"\w* \w I|strong="H5414"\w* \w have|strong="H5869"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H3427"\w* \w your|strong="H5414"\w* \w eyes|strong="H5869"\w*, \w let|strong="H4994"\w* \w them|strong="H5414"\w* \w give|strong="H5414"\w* \w me|strong="H5414"\w* \w a|strong="H3068"\w* \w place|strong="H4725"\w* \w in|strong="H3427"\w* \w one|strong="H5892"\w* \w of|strong="H3427"\w* \w the|strong="H5414"\w* \w cities|strong="H5892"\w* \w in|strong="H3427"\w* \w the|strong="H5414"\w* \w country|strong="H7704"\w*, \w that|strong="H5414"\w* \w I|strong="H5414"\w* \w may|strong="H4994"\w* \w dwell|strong="H3427"\w* \w there|strong="H8033"\w*. \w For|strong="H3427"\w* \w why|strong="H4100"\w* \w should|strong="H4100"\w* \w your|strong="H5414"\w* \w servant|strong="H5650"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5414"\w* \w royal|strong="H4467"\w* \w city|strong="H5892"\w* \w with|strong="H5973"\w* \w you|strong="H5414"\w*?” +\v 6 \w Then|strong="H1961"\w* Achish \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w Ziklag|strong="H6860"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*: \w therefore|strong="H3651"\w* \w Ziklag|strong="H6860"\w* \w belongs|strong="H1961"\w* \w to|strong="H5704"\w* \w the|strong="H5414"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 7 \w The|strong="H3117"\w* \w number|strong="H4557"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w that|strong="H3117"\w* \w David|strong="H1732"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3117"\w* \w country|strong="H7704"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w Philistines|strong="H6430"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w full|strong="H3117"\w* \w year|strong="H3117"\w* \w and|strong="H3117"\w* four \w months|strong="H2320"\w*. +\p +\v 8 \w David|strong="H1732"\w* \w and|strong="H1732"\w* \w his|strong="H1732"\w* men \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H1732"\w* \w raided|strong="H6584"\w* \w the|strong="H3588"\w* \w Geshurites|strong="H1651"\w*, \w the|strong="H3588"\w* Girzites, \w and|strong="H1732"\w* \w the|strong="H3588"\w* \w Amalekites|strong="H6003"\w*; \w for|strong="H3588"\w* \w those|strong="H2007"\w* \w were|strong="H4714"\w* \w the|strong="H3588"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H3588"\w* land \w who|strong="H3427"\w* \w were|strong="H4714"\w* \w of|strong="H3427"\w* \w old|strong="H5769"\w*, \w on|strong="H3427"\w* \w the|strong="H3588"\w* \w way|strong="H5704"\w* \w to|strong="H5704"\w* \w Shur|strong="H7793"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3588"\w* land \w of|strong="H3427"\w* \w Egypt|strong="H4714"\w*. +\v 9 \w David|strong="H1732"\w* \w struck|strong="H5221"\w* \w the|strong="H3947"\w* land, \w and|strong="H7725"\w* \w saved|strong="H2421"\w* \w no|strong="H3808"\w* man \w or|strong="H3808"\w* woman \w alive|strong="H2421"\w*, \w and|strong="H7725"\w* \w took|strong="H3947"\w* \w away|strong="H7725"\w* \w the|strong="H3947"\w* \w sheep|strong="H6629"\w*, \w the|strong="H3947"\w* \w cattle|strong="H1241"\w*, \w the|strong="H3947"\w* \w donkeys|strong="H2543"\w*, \w the|strong="H3947"\w* \w camels|strong="H1581"\w*, \w and|strong="H7725"\w* \w the|strong="H3947"\w* clothing. \w Then|strong="H3947"\w* \w he|strong="H1732"\w* \w returned|strong="H7725"\w*, \w and|strong="H7725"\w* \w came|strong="H7725"\w* \w to|strong="H7725"\w* Achish. +\p +\v 10 Achish said, “\w Against|strong="H5921"\w* whom \w have|strong="H3063"\w* \w you|strong="H5921"\w* \w made|strong="H6584"\w* \w a|strong="H3068"\w* \w raid|strong="H6584"\w* \w today|strong="H3117"\w*?” +\p \w David|strong="H1732"\w* said, “\w Against|strong="H5921"\w* \w the|strong="H5921"\w* \w South|strong="H5045"\w* \w of|strong="H3117"\w* \w Judah|strong="H3063"\w*, \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w South|strong="H5045"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w Jerahmeelites|strong="H3397"\w*, \w and|strong="H3063"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w South|strong="H5045"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w Kenites|strong="H7017"\w*.” +\v 11 \w David|strong="H1732"\w* \w saved|strong="H2421"\w* \w neither|strong="H3808"\w* \w man|strong="H3605"\w* \w nor|strong="H3808"\w* woman \w alive|strong="H2421"\w* \w to|strong="H6213"\w* \w bring|strong="H6213"\w* \w them|strong="H5921"\w* \w to|strong="H6213"\w* \w Gath|strong="H1661"\w*, saying, “\w Lest|strong="H6435"\w* \w they|strong="H3117"\w* \w should|strong="H3117"\w* \w tell|strong="H5046"\w* \w about|strong="H5921"\w* \w us|strong="H5046"\w*, saying, ‘\w David|strong="H1732"\w* \w did|strong="H6213"\w* \w this|strong="H6213"\w*, \w and|strong="H3117"\w* \w this|strong="H6213"\w* \w has|strong="H3117"\w* \w been|strong="H5046"\w* \w his|strong="H3605"\w* \w way|strong="H3541"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w time|strong="H3117"\w* \w he|strong="H3117"\w* \w has|strong="H3117"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w country|strong="H7704"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*.’” +\p +\v 12 Achish believed \w David|strong="H1732"\w*, saying, “\w He|strong="H1732"\w* \w has|strong="H1961"\w* \w made|strong="H1961"\w* \w his|strong="H1732"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w* utterly \w to|strong="H3478"\w* abhor \w him|strong="H1732"\w*. \w Therefore|strong="H1732"\w* \w he|strong="H1732"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w my|strong="H1732"\w* \w servant|strong="H5650"\w* \w forever|strong="H5769"\w*.” +\c 28 +\p +\v 1 \w In|strong="H3478"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*, \w the|strong="H3588"\w* \w Philistines|strong="H6430"\w* \w gathered|strong="H6908"\w* \w their|strong="H1992"\w* \w armies|strong="H6635"\w* \w together|strong="H6908"\w* \w for|strong="H3588"\w* \w warfare|strong="H6635"\w*, \w to|strong="H3318"\w* \w fight|strong="H3898"\w* \w with|strong="H3898"\w* \w Israel|strong="H3478"\w*. Achish \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w David|strong="H1732"\w*, “\w Know|strong="H3045"\w* \w assuredly|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H1961"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w with|strong="H3898"\w* \w me|strong="H3318"\w* \w in|strong="H3478"\w* \w the|strong="H3588"\w* \w army|strong="H6635"\w*, \w you|strong="H3588"\w* \w and|strong="H3478"\w* \w your|strong="H3045"\w* \w men|strong="H1992"\w*.” +\p +\v 2 \w David|strong="H1732"\w* \w said|strong="H3651"\w* \w to|strong="H6213"\w* Achish, “\w Therefore|strong="H3651"\w* \w you|strong="H3605"\w* \w will|strong="H5650"\w* \w know|strong="H3045"\w* \w what|strong="H3045"\w* \w your|strong="H3605"\w* \w servant|strong="H5650"\w* \w can|strong="H5650"\w* \w do|strong="H6213"\w*.” +\p Achish \w said|strong="H3651"\w* \w to|strong="H6213"\w* \w David|strong="H1732"\w*, “\w Therefore|strong="H3651"\w* \w I|strong="H3117"\w* \w will|strong="H5650"\w* \w make|strong="H6213"\w* \w you|strong="H3605"\w* \w my|strong="H8104"\w* \w bodyguard|strong="H8104"\w* \w forever|strong="H3605"\w*.” +\p +\v 3 \w Now|strong="H3478"\w* \w Samuel|strong="H8050"\w* \w was|strong="H3478"\w* \w dead|strong="H4191"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w had|strong="H3478"\w* \w mourned|strong="H5594"\w* \w for|strong="H4191"\w* \w him|strong="H4191"\w* \w and|strong="H3478"\w* \w buried|strong="H6912"\w* \w him|strong="H4191"\w* \w in|strong="H3478"\w* \w Ramah|strong="H7414"\w*, even \w in|strong="H3478"\w* \w his|strong="H3605"\w* own \w city|strong="H5892"\w*. \w Saul|strong="H7586"\w* \w had|strong="H3478"\w* sent \w away|strong="H5493"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w had|strong="H3478"\w* familiar spirits \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w wizards|strong="H3049"\w* \w out|strong="H3605"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* land. +\p +\v 4 \w The|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w gathered|strong="H6908"\w* \w themselves|strong="H6908"\w* \w together|strong="H6908"\w*, \w and|strong="H3478"\w* \w came|strong="H3478"\w* \w and|strong="H3478"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Shunem|strong="H7766"\w*; \w and|strong="H3478"\w* \w Saul|strong="H7586"\w* \w gathered|strong="H6908"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w together|strong="H6908"\w*, \w and|strong="H3478"\w* \w they|strong="H3478"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Gilboa|strong="H1533"\w*. +\v 5 \w When|strong="H7200"\w* \w Saul|strong="H7586"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w army|strong="H4264"\w* \w of|strong="H4264"\w* \w the|strong="H7200"\w* \w Philistines|strong="H6430"\w*, \w he|strong="H3820"\w* \w was|strong="H7586"\w* \w afraid|strong="H3372"\w*, \w and|strong="H7586"\w* \w his|strong="H7200"\w* \w heart|strong="H3820"\w* \w trembled|strong="H2729"\w* \w greatly|strong="H3966"\w*. +\v 6 \w When|strong="H3068"\w* \w Saul|strong="H7586"\w* \w inquired|strong="H7592"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w Yahweh|strong="H3068"\w* didn’t \w answer|strong="H6030"\w* \w him|strong="H7592"\w* \w by|strong="H3068"\w* \w dreams|strong="H2472"\w*, \w by|strong="H3068"\w* Urim, \w or|strong="H3808"\w* \w by|strong="H3068"\w* \w prophets|strong="H5030"\w*. +\v 7 \w Then|strong="H2009"\w* \w Saul|strong="H7586"\w* said \w to|strong="H3212"\w* \w his|strong="H1245"\w* \w servants|strong="H5650"\w*, “\w Seek|strong="H1245"\w* \w for|strong="H5650"\w* \w me|strong="H1875"\w* \w a|strong="H3068"\w* woman \w who|strong="H5650"\w* \w has|strong="H5650"\w* \w a|strong="H3068"\w* familiar spirit, \w that|strong="H7586"\w* \w I|strong="H2009"\w* may \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w her|strong="H3212"\w* \w and|strong="H3212"\w* \w inquire|strong="H1875"\w* \w of|strong="H5650"\w* \w her|strong="H3212"\w*.” +\p \w His|strong="H1245"\w* \w servants|strong="H5650"\w* said \w to|strong="H3212"\w* \w him|strong="H1245"\w*, “\w Behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w is|strong="H2009"\w* \w a|strong="H3068"\w* woman \w who|strong="H5650"\w* \w has|strong="H5650"\w* \w a|strong="H3068"\w* familiar spirit \w at|strong="H7586"\w* \w Endor|strong="H5874"\w*.” +\p +\v 8 \w Saul|strong="H7586"\w* \w disguised|strong="H2664"\w* \w himself|strong="H1931"\w* \w and|strong="H3212"\w* \w put|strong="H3847"\w* \w on|strong="H3847"\w* \w other|strong="H8147"\w* \w clothing|strong="H3847"\w*, \w and|strong="H3212"\w* \w went|strong="H3212"\w*, \w he|strong="H1931"\w* \w and|strong="H3212"\w* \w two|strong="H8147"\w* \w men|strong="H8147"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*, \w and|strong="H3212"\w* \w they|strong="H1931"\w* \w came|strong="H5927"\w* \w to|strong="H3212"\w* \w the|strong="H5927"\w* woman \w by|strong="H5973"\w* \w night|strong="H3915"\w*. \w Then|strong="H5927"\w* \w he|strong="H1931"\w* said, “Please consult \w for|strong="H5973"\w* \w me|strong="H5973"\w* \w by|strong="H5973"\w* \w the|strong="H5927"\w* familiar spirit, \w and|strong="H3212"\w* \w bring|strong="H5927"\w* \w me|strong="H5973"\w* \w up|strong="H5927"\w* whomever \w I|strong="H3212"\w* \w shall|strong="H1931"\w* name \w to|strong="H3212"\w* \w you|strong="H5973"\w*.” +\p +\v 9 \w The|strong="H6213"\w* woman said \w to|strong="H4191"\w* \w him|strong="H6213"\w*, “\w Behold|strong="H2009"\w*, \w you|strong="H6213"\w* \w know|strong="H3045"\w* \w what|strong="H4100"\w* \w Saul|strong="H7586"\w* \w has|strong="H4100"\w* \w done|strong="H6213"\w*, \w how|strong="H4100"\w* \w he|strong="H6213"\w* \w has|strong="H4100"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w those|strong="H4480"\w* \w who|strong="H5315"\w* \w have|strong="H3045"\w* \w familiar|strong="H3045"\w* spirits \w and|strong="H7586"\w* \w the|strong="H6213"\w* \w wizards|strong="H3049"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H6213"\w* land. \w Why|strong="H4100"\w* \w then|strong="H2009"\w* \w do|strong="H6213"\w* \w you|strong="H6213"\w* \w lay|strong="H5315"\w* \w a|strong="H3068"\w* \w snare|strong="H5367"\w* \w for|strong="H6213"\w* \w my|strong="H3045"\w* \w life|strong="H5315"\w*, \w to|strong="H4191"\w* \w cause|strong="H6213"\w* \w me|strong="H5315"\w* \w to|strong="H4191"\w* \w die|strong="H4191"\w*?” +\p +\v 10 \w Saul|strong="H7586"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* her \w by|strong="H7650"\w* \w Yahweh|strong="H3068"\w*, \w saying|strong="H1697"\w*, “\w As|strong="H1697"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*, no \w punishment|strong="H5771"\w* \w will|strong="H3068"\w* \w happen|strong="H7136"\w* \w to|strong="H3068"\w* \w you|strong="H7136"\w* \w for|strong="H3068"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*.” +\p +\v 11 \w Then|strong="H5927"\w* \w the|strong="H5927"\w* woman said, “\w Whom|strong="H4310"\w* \w shall|strong="H4310"\w* I \w bring|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w you|strong="H4310"\w*?” +\p \w He|strong="H4310"\w* said, “\w Bring|strong="H5927"\w* \w Samuel|strong="H8050"\w* \w up|strong="H5927"\w* \w for|strong="H4310"\w* \w me|strong="H5927"\w*.” +\p +\v 12 \w When|strong="H7200"\w* \w the|strong="H7200"\w* woman \w saw|strong="H7200"\w* \w Samuel|strong="H8050"\w*, \w she|strong="H4100"\w* \w cried|strong="H2199"\w* \w with|strong="H6963"\w* \w a|strong="H3068"\w* \w loud|strong="H1419"\w* \w voice|strong="H6963"\w*; \w and|strong="H1419"\w* \w the|strong="H7200"\w* woman spoke \w to|strong="H7200"\w* \w Saul|strong="H7586"\w*, \w saying|strong="H6963"\w*, “\w Why|strong="H4100"\w* \w have|strong="H7200"\w* \w you|strong="H4100"\w* \w deceived|strong="H7411"\w* \w me|strong="H7200"\w*? \w For|strong="H6963"\w* \w you|strong="H4100"\w* \w are|strong="H4100"\w* \w Saul|strong="H7586"\w*!” +\p +\v 13 \w The|strong="H7200"\w* \w king|strong="H4428"\w* said \w to|strong="H5927"\w* \w her|strong="H7200"\w*, “Don’t \w be|strong="H4428"\w* \w afraid|strong="H3372"\w*! \w What|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H3588"\w* \w see|strong="H7200"\w*?” +\p \w The|strong="H7200"\w* woman said \w to|strong="H5927"\w* \w Saul|strong="H7586"\w*, “\w I|strong="H3588"\w* \w see|strong="H7200"\w* \w a|strong="H3068"\w* god \w coming|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H4480"\w* \w of|strong="H4428"\w* \w the|strong="H7200"\w* \w earth|strong="H5927"\w*.” +\p +\v 14 \w He|strong="H1931"\w* said \w to|strong="H5927"\w* \w her|strong="H3045"\w*, “\w What|strong="H4100"\w* \w does|strong="H4100"\w* \w he|strong="H1931"\w* look \w like|strong="H5927"\w*?” +\p \w She|strong="H1931"\w* said, “\w An|strong="H3588"\w* \w old|strong="H2205"\w* \w man|strong="H2205"\w* \w comes|strong="H5927"\w* \w up|strong="H5927"\w*. \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w covered|strong="H5844"\w* \w with|strong="H3045"\w* \w a|strong="H3068"\w* \w robe|strong="H4598"\w*.” \w Saul|strong="H7586"\w* \w perceived|strong="H3045"\w* \w that|strong="H3588"\w* \w it|strong="H1931"\w* \w was|strong="H7586"\w* \w Samuel|strong="H8050"\w*, \w and|strong="H7586"\w* \w he|strong="H1931"\w* \w bowed|strong="H7812"\w* \w with|strong="H3045"\w* \w his|strong="H3045"\w* face \w to|strong="H5927"\w* \w the|strong="H3588"\w* ground, \w and|strong="H7586"\w* showed \w respect|strong="H3045"\w*. +\p +\v 15 \w Samuel|strong="H8050"\w* \w said|strong="H6030"\w* \w to|strong="H5927"\w* \w Saul|strong="H7586"\w*, “\w Why|strong="H4100"\w* \w have|strong="H3045"\w* \w you|strong="H5921"\w* \w disturbed|strong="H7264"\w* \w me|strong="H5921"\w*, \w to|strong="H5927"\w* \w bring|strong="H5927"\w* \w me|strong="H5921"\w* \w up|strong="H5927"\w*?” +\p \w Saul|strong="H7586"\w* \w answered|strong="H6030"\w*, “\w I|strong="H5921"\w* am \w very|strong="H3966"\w* \w distressed|strong="H6887"\w*; \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w Philistines|strong="H6430"\w* \w make|strong="H6213"\w* \w war|strong="H3898"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*, \w and|strong="H6030"\w* \w God|strong="H3808"\w* \w has|strong="H4100"\w* \w departed|strong="H5493"\w* \w from|strong="H5493"\w* \w me|strong="H5921"\w*, \w and|strong="H6030"\w* \w answers|strong="H6030"\w* \w me|strong="H5921"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w*, \w by|strong="H3027"\w* \w prophets|strong="H5030"\w*, \w or|strong="H3808"\w* \w by|strong="H3027"\w* \w dreams|strong="H2472"\w*. \w Therefore|strong="H5921"\w* \w I|strong="H5921"\w* \w have|strong="H3045"\w* \w called|strong="H7121"\w* \w you|strong="H5921"\w*, \w that|strong="H3045"\w* \w you|strong="H5921"\w* \w may|strong="H6213"\w* \w make|strong="H6213"\w* \w known|strong="H3045"\w* \w to|strong="H5927"\w* \w me|strong="H5921"\w* \w what|strong="H4100"\w* \w I|strong="H5921"\w* \w shall|strong="H3027"\w* \w do|strong="H6213"\w*.” +\p +\v 16 \w Samuel|strong="H8050"\w* said, “\w Why|strong="H4100"\w* \w then|strong="H1961"\w* \w do|strong="H3068"\w* \w you|strong="H5921"\w* \w ask|strong="H7592"\w* \w me|strong="H5921"\w*, since \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w departed|strong="H5493"\w* \w from|strong="H5493"\w* \w you|strong="H5921"\w* \w and|strong="H3068"\w* \w has|strong="H3068"\w* \w become|strong="H1961"\w* \w your|strong="H3068"\w* \w adversary|strong="H6145"\w*? +\v 17 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w* \w to|strong="H1696"\w* \w you|strong="H5414"\w* \w as|strong="H6213"\w* \w he|strong="H6213"\w* \w spoke|strong="H1696"\w* \w by|strong="H3027"\w* \w me|strong="H5414"\w*. \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w torn|strong="H7167"\w* \w the|strong="H5414"\w* \w kingdom|strong="H4467"\w* \w out|strong="H5414"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w and|strong="H3068"\w* \w given|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H1696"\w* \w your|strong="H3068"\w* \w neighbor|strong="H7453"\w*, \w even|strong="H6213"\w* \w to|strong="H1696"\w* \w David|strong="H1732"\w*. +\v 18 \w Because|strong="H5921"\w* \w you|strong="H5921"\w* didn’t \w obey|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w*, \w and|strong="H3068"\w* didn’t \w execute|strong="H6213"\w* \w his|strong="H3068"\w* \w fierce|strong="H2740"\w* \w wrath|strong="H2740"\w* \w on|strong="H5921"\w* \w Amalek|strong="H6002"\w*, \w therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w to|strong="H3068"\w* \w you|strong="H5921"\w* \w today|strong="H3117"\w*. +\v 19 \w Moreover|strong="H1571"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w deliver|strong="H5414"\w* \w Israel|strong="H3478"\w* \w also|strong="H1571"\w* \w with|strong="H5973"\w* \w you|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w Philistines|strong="H6430"\w*; \w and|strong="H1121"\w* \w tomorrow|strong="H4279"\w* \w you|strong="H5414"\w* \w and|strong="H1121"\w* \w your|strong="H3068"\w* \w sons|strong="H1121"\w* \w will|strong="H3068"\w* \w be|strong="H3027"\w* \w with|strong="H5973"\w* \w me|strong="H5414"\w*. \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w deliver|strong="H5414"\w* \w the|strong="H5414"\w* \w army|strong="H4264"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w also|strong="H1571"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w Philistines|strong="H6430"\w*.” +\p +\v 20 \w Then|strong="H1961"\w* \w Saul|strong="H7586"\w* \w fell|strong="H5307"\w* \w immediately|strong="H4116"\w* \w his|strong="H3605"\w* \w full|strong="H4393"\w* \w length|strong="H6967"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* earth, \w and|strong="H3117"\w* \w was|strong="H1961"\w* \w terrified|strong="H3966"\w*, \w because|strong="H3588"\w* \w of|strong="H3117"\w* \w Samuel|strong="H8050"\w*’s \w words|strong="H1697"\w*. \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w strength|strong="H3581"\w* \w in|strong="H3117"\w* \w him|strong="H3605"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H1961"\w* eaten \w no|strong="H3808"\w* \w bread|strong="H3899"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w* \w long|strong="H3117"\w* \w or|strong="H3808"\w* \w all|strong="H3605"\w* \w night|strong="H3915"\w* \w long|strong="H3117"\w*. +\p +\v 21 \w The|strong="H8085"\w* woman \w came|strong="H1697"\w* \w to|strong="H1696"\w* \w Saul|strong="H7586"\w* \w and|strong="H6963"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w was|strong="H7586"\w* \w very|strong="H3966"\w* \w troubled|strong="H3966"\w*, \w and|strong="H6963"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H7200"\w*, “\w Behold|strong="H2009"\w*, \w your|strong="H7760"\w* \w servant|strong="H8198"\w* \w has|strong="H7586"\w* \w listened|strong="H8085"\w* \w to|strong="H1696"\w* \w your|strong="H7760"\w* \w voice|strong="H6963"\w*, \w and|strong="H6963"\w* \w I|strong="H3588"\w* \w have|strong="H7200"\w* \w put|strong="H7760"\w* \w my|strong="H8085"\w* \w life|strong="H5315"\w* \w in|strong="H8085"\w* \w my|strong="H8085"\w* \w hand|strong="H3709"\w*, \w and|strong="H6963"\w* \w have|strong="H7200"\w* \w listened|strong="H8085"\w* \w to|strong="H1696"\w* \w your|strong="H7760"\w* \w words|strong="H1697"\w* \w which|strong="H1697"\w* \w you|strong="H3588"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H5315"\w*. +\v 22 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w please|strong="H4994"\w* \w listen|strong="H8085"\w* \w also|strong="H1571"\w* \w to|strong="H3212"\w* \w the|strong="H6440"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w your|strong="H7760"\w* \w servant|strong="H8198"\w*, \w and|strong="H3212"\w* \w let|strong="H4994"\w* \w me|strong="H6440"\w* \w set|strong="H7760"\w* \w a|strong="H3068"\w* \w morsel|strong="H6595"\w* \w of|strong="H6963"\w* \w bread|strong="H3899"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*. \w Eat|strong="H3899"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H1961"\w* \w have|strong="H1961"\w* \w strength|strong="H3581"\w* \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w go|strong="H3212"\w* \w on|strong="H1870"\w* \w your|strong="H7760"\w* \w way|strong="H1870"\w*.” +\p +\v 23 \w But|strong="H3808"\w* \w he|strong="H3808"\w* \w refused|strong="H3985"\w*, \w and|strong="H6965"\w* \w said|strong="H8085"\w*, “\w I|strong="H5650"\w* \w will|strong="H5650"\w* \w not|strong="H3808"\w* eat.” \w But|strong="H3808"\w* \w his|strong="H8085"\w* \w servants|strong="H5650"\w*, \w together|strong="H8085"\w* \w with|strong="H3427"\w* \w the|strong="H8085"\w* woman, constrained \w him|strong="H6963"\w*; \w and|strong="H6965"\w* \w he|strong="H3808"\w* \w listened|strong="H8085"\w* \w to|strong="H3985"\w* \w their|strong="H8085"\w* \w voice|strong="H6963"\w*. \w So|strong="H3808"\w* \w he|strong="H3808"\w* \w arose|strong="H6965"\w* \w from|strong="H8085"\w* \w the|strong="H8085"\w* earth \w and|strong="H6965"\w* \w sat|strong="H3427"\w* \w on|strong="H3427"\w* \w the|strong="H8085"\w* \w bed|strong="H4296"\w*. +\v 24 \w The|strong="H3947"\w* \w woman|strong="H1004"\w* had \w a|strong="H3068"\w* \w fattened|strong="H4770"\w* \w calf|strong="H5695"\w* \w in|strong="H1004"\w* \w the|strong="H3947"\w* \w house|strong="H1004"\w*. She \w hurried|strong="H4116"\w* \w and|strong="H1004"\w* \w killed|strong="H2076"\w* \w it|strong="H3947"\w*; \w and|strong="H1004"\w* she \w took|strong="H3947"\w* \w flour|strong="H7058"\w* \w and|strong="H1004"\w* \w kneaded|strong="H3888"\w* \w it|strong="H3947"\w*, \w and|strong="H1004"\w* baked \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w* \w of|strong="H1004"\w* \w it|strong="H3947"\w*. +\v 25 \w She|strong="H1931"\w* \w brought|strong="H5066"\w* \w it|strong="H1931"\w* \w before|strong="H6440"\w* \w Saul|strong="H7586"\w* \w and|strong="H6965"\w* \w before|strong="H6440"\w* \w his|strong="H6440"\w* \w servants|strong="H5650"\w*, \w and|strong="H6965"\w* \w they|strong="H1931"\w* ate. \w Then|strong="H6965"\w* \w they|strong="H1931"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w away|strong="H3212"\w* \w that|strong="H1931"\w* \w night|strong="H3915"\w*. +\c 29 +\p +\v 1 \w Now|strong="H3478"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w gathered|strong="H6908"\w* \w together|strong="H6908"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w armies|strong="H4264"\w* \w to|strong="H3478"\w* Aphek; \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w Israelites|strong="H3478"\w* \w encamped|strong="H2583"\w* \w by|strong="H3478"\w* \w the|strong="H3605"\w* \w spring|strong="H5869"\w* \w which|strong="H5869"\w* \w is|strong="H3478"\w* \w in|strong="H2583"\w* \w Jezreel|strong="H3157"\w*. +\v 2 \w The|strong="H5674"\w* \w lords|strong="H5633"\w* \w of|strong="H1732"\w* \w the|strong="H5674"\w* \w Philistines|strong="H6430"\w* \w passed|strong="H5674"\w* \w on|strong="H5674"\w* \w by|strong="H5674"\w* \w hundreds|strong="H3967"\w* \w and|strong="H3967"\w* \w by|strong="H5674"\w* thousands; \w and|strong="H3967"\w* \w David|strong="H1732"\w* \w and|strong="H3967"\w* \w his|strong="H1732"\w* men \w passed|strong="H5674"\w* \w on|strong="H5674"\w* \w in|strong="H1732"\w* \w the|strong="H5674"\w* rear \w with|strong="H5973"\w* Achish. +\p +\v 3 \w Then|strong="H1961"\w* \w the|strong="H3117"\w* \w princes|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H3117"\w* \w Philistines|strong="H6430"\w* said, “\w What|strong="H4100"\w* \w about|strong="H1961"\w* \w these|strong="H2088"\w* \w Hebrews|strong="H5680"\w*?” +\p Achish said \w to|strong="H5704"\w* \w the|strong="H3117"\w* \w princes|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H3117"\w* \w Philistines|strong="H6430"\w*, “Isn’t \w this|strong="H2088"\w* \w David|strong="H1732"\w*, \w the|strong="H3117"\w* \w servant|strong="H5650"\w* \w of|strong="H4428"\w* \w Saul|strong="H7586"\w* \w the|strong="H3117"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w who|strong="H5650"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w with|strong="H3117"\w* \w me|strong="H4672"\w* \w these|strong="H2088"\w* \w days|strong="H3117"\w*, \w or|strong="H3808"\w* \w rather|strong="H3808"\w* \w these|strong="H2088"\w* \w years|strong="H8141"\w*? \w I|strong="H3117"\w* \w have|strong="H1961"\w* \w found|strong="H4672"\w* \w no|strong="H3808"\w* \w fault|strong="H3972"\w* \w in|strong="H8141"\w* \w him|strong="H4672"\w* \w since|strong="H3117"\w* \w he|strong="H3117"\w* \w fell|strong="H5307"\w* \w away|strong="H5307"\w* \w until|strong="H5704"\w* \w today|strong="H3117"\w*.” +\p +\v 4 \w But|strong="H3808"\w* \w the|strong="H5921"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H5921"\w* \w Philistines|strong="H6430"\w* \w were|strong="H1961"\w* \w angry|strong="H7107"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w*; \w and|strong="H7725"\w* \w the|strong="H5921"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H5921"\w* \w Philistines|strong="H6430"\w* said \w to|strong="H7725"\w* \w him|strong="H5921"\w*, “\w Make|strong="H7521"\w* \w the|strong="H5921"\w* \w man|strong="H2088"\w* \w return|strong="H7725"\w*, \w that|strong="H2088"\w* \w he|strong="H8033"\w* \w may|strong="H1961"\w* \w go|strong="H3381"\w* \w back|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w you|strong="H5921"\w* \w have|strong="H1961"\w* \w appointed|strong="H6485"\w* \w him|strong="H5921"\w*, \w and|strong="H7725"\w* \w let|strong="H3381"\w* \w him|strong="H5921"\w* \w not|strong="H3808"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w with|strong="H5973"\w* \w us|strong="H7725"\w* \w to|strong="H7725"\w* \w battle|strong="H4421"\w*, lest \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w battle|strong="H4421"\w* \w he|strong="H8033"\w* \w become|strong="H1961"\w* \w an|strong="H1961"\w* \w adversary|strong="H7854"\w* \w to|strong="H7725"\w* \w us|strong="H7725"\w*. \w For|strong="H5921"\w* \w with|strong="H5973"\w* \w what|strong="H4100"\w* \w should|strong="H4100"\w* \w this|strong="H2088"\w* fellow \w reconcile|strong="H7521"\w* \w himself|strong="H7521"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* lord? \w Should|strong="H4100"\w* \w it|strong="H5921"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w the|strong="H5921"\w* \w heads|strong="H7218"\w* \w of|strong="H8269"\w* \w these|strong="H2088"\w* \w men|strong="H7218"\w*? +\v 5 Isn’t \w this|strong="H2088"\w* \w David|strong="H1732"\w*, \w of|strong="H5221"\w* whom \w people|strong="H3808"\w* \w sang|strong="H6030"\w* \w to|strong="H1732"\w* \w one|strong="H2088"\w* \w another|strong="H2088"\w* \w in|strong="H1732"\w* \w dances|strong="H4246"\w*, saying, +\q1 ‘\w Saul|strong="H7586"\w* \w has|strong="H7586"\w* \w slain|strong="H5221"\w* \w his|strong="H1732"\w* \w thousands|strong="H7233"\w*, +\q2 \w and|strong="H6030"\w* \w David|strong="H1732"\w* \w his|strong="H1732"\w* \w ten|strong="H7233"\w* \w thousands|strong="H7233"\w*’?” +\p +\v 6 \w Then|strong="H3318"\w* Achish \w called|strong="H7121"\w* \w David|strong="H1732"\w* \w and|strong="H3068"\w* \w said|strong="H7121"\w* \w to|strong="H5704"\w* \w him|strong="H7121"\w*, “\w As|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*, \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w been|strong="H3808"\w* \w upright|strong="H3477"\w*, \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w going|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w coming|strong="H3318"\w* \w in|strong="H3068"\w* \w with|strong="H3068"\w* \w me|strong="H7121"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w army|strong="H4264"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w* \w in|strong="H3068"\w* \w my|strong="H3068"\w* \w sight|strong="H5869"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w found|strong="H4672"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w you|strong="H3588"\w* \w since|strong="H3588"\w* \w the|strong="H3588"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w coming|strong="H3318"\w* \w to|strong="H5704"\w* \w me|strong="H7121"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. \w Nevertheless|strong="H3588"\w*, \w the|strong="H3588"\w* \w lords|strong="H5633"\w* don’t \w favor|strong="H5869"\w* \w you|strong="H3588"\w*. +\v 7 \w Therefore|strong="H6258"\w* \w now|strong="H6258"\w* \w return|strong="H7725"\w*, \w and|strong="H7725"\w* \w go|strong="H3212"\w* \w in|strong="H6213"\w* \w peace|strong="H7965"\w*, \w that|strong="H7451"\w* \w you|strong="H7725"\w* \w not|strong="H3808"\w* \w displease|strong="H6213"\w* \w the|strong="H6213"\w* \w lords|strong="H5633"\w* \w of|strong="H5869"\w* \w the|strong="H6213"\w* \w Philistines|strong="H6430"\w*.” +\p +\v 8 \w David|strong="H1732"\w* said \w to|strong="H5704"\w* Achish, “\w But|strong="H3588"\w* \w what|strong="H4100"\w* \w have|strong="H1961"\w* \w I|strong="H3588"\w* \w done|strong="H6213"\w*? \w What|strong="H4100"\w* \w have|strong="H1961"\w* \w you|strong="H3588"\w* \w found|strong="H4672"\w* \w in|strong="H6213"\w* \w your|strong="H6440"\w* \w servant|strong="H5650"\w* \w so|strong="H6213"\w* \w long|strong="H5704"\w* \w as|strong="H5704"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H1961"\w* \w not|strong="H3808"\w* \w go|strong="H1961"\w* \w and|strong="H4428"\w* \w fight|strong="H3898"\w* \w against|strong="H3898"\w* \w the|strong="H6440"\w* enemies \w of|strong="H4428"\w* \w my|strong="H1732"\w* lord \w the|strong="H6440"\w* \w king|strong="H4428"\w*?” +\p +\v 9 Achish \w answered|strong="H6030"\w* \w David|strong="H1732"\w*, “\w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H5869"\w* \w good|strong="H2896"\w* \w in|strong="H4421"\w* \w my|strong="H1732"\w* \w sight|strong="H5869"\w*, \w as|strong="H5927"\w* \w an|strong="H3588"\w* \w angel|strong="H4397"\w* \w of|strong="H8269"\w* \w God|strong="H3808"\w*. Notwithstanding, \w the|strong="H3588"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H3588"\w* \w Philistines|strong="H6430"\w* \w have|strong="H5869"\w* \w said|strong="H6030"\w*, ‘\w He|strong="H3588"\w* \w shall|strong="H5869"\w* \w not|strong="H3808"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w with|strong="H5973"\w* \w us|strong="H3045"\w* \w to|strong="H5927"\w* \w the|strong="H3588"\w* \w battle|strong="H4421"\w*.’ +\v 10 \w Therefore|strong="H6258"\w* \w now|strong="H6258"\w* \w rise|strong="H7925"\w* \w up|strong="H7925"\w* \w early|strong="H7925"\w* \w in|strong="H3212"\w* \w the|strong="H5650"\w* \w morning|strong="H1242"\w* \w with|strong="H3212"\w* \w the|strong="H5650"\w* \w servants|strong="H5650"\w* \w of|strong="H5650"\w* \w your|strong="H6258"\w* lord \w who|strong="H5650"\w* \w have|strong="H5650"\w* \w come|strong="H3212"\w* \w with|strong="H3212"\w* \w you|strong="H3212"\w*; \w and|strong="H3212"\w* \w as|strong="H5650"\w* \w soon|strong="H6258"\w* \w as|strong="H5650"\w* \w you|strong="H3212"\w* \w are|strong="H5650"\w* \w up|strong="H7925"\w* \w early|strong="H7925"\w* \w in|strong="H3212"\w* \w the|strong="H5650"\w* \w morning|strong="H1242"\w* \w and|strong="H3212"\w* \w have|strong="H5650"\w* light, \w depart|strong="H3212"\w*.” +\p +\v 11 \w So|strong="H5927"\w* \w David|strong="H1732"\w* \w rose|strong="H7925"\w* \w up|strong="H5927"\w* \w early|strong="H7925"\w*, \w he|strong="H1931"\w* \w and|strong="H7725"\w* \w his|strong="H1732"\w* men, \w to|strong="H7725"\w* \w depart|strong="H3212"\w* \w in|strong="H3212"\w* \w the|strong="H7725"\w* \w morning|strong="H1242"\w*, \w to|strong="H7725"\w* \w return|strong="H7725"\w* \w into|strong="H7725"\w* \w the|strong="H7725"\w* land \w of|strong="H7725"\w* \w the|strong="H7725"\w* \w Philistines|strong="H6430"\w*; \w and|strong="H7725"\w* \w the|strong="H7725"\w* \w Philistines|strong="H6430"\w* \w went|strong="H3212"\w* \w up|strong="H5927"\w* \w to|strong="H7725"\w* \w Jezreel|strong="H3157"\w*. +\c 30 +\p +\v 1 \w When|strong="H1961"\w* \w David|strong="H1732"\w* \w and|strong="H3117"\w* \w his|strong="H1732"\w* men \w had|strong="H1961"\w* \w come|strong="H1961"\w* \w to|strong="H1961"\w* \w Ziklag|strong="H6860"\w* \w on|strong="H3117"\w* \w the|strong="H5221"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*, \w the|strong="H5221"\w* \w Amalekites|strong="H6003"\w* \w had|strong="H1961"\w* \w made|strong="H6584"\w* \w a|strong="H3068"\w* \w raid|strong="H6584"\w* \w on|strong="H3117"\w* \w the|strong="H5221"\w* \w South|strong="H5045"\w* \w and|strong="H3117"\w* \w on|strong="H3117"\w* \w Ziklag|strong="H6860"\w*, \w and|strong="H3117"\w* \w had|strong="H1961"\w* \w struck|strong="H5221"\w* \w Ziklag|strong="H6860"\w* \w and|strong="H3117"\w* \w burned|strong="H8313"\w* \w it|strong="H5221"\w* \w with|strong="H8313"\w* fire, +\v 2 \w and|strong="H1419"\w* \w had|strong="H3808"\w* \w taken|strong="H7617"\w* \w captive|strong="H7617"\w* \w the|strong="H5704"\w* women \w and|strong="H1419"\w* \w all|strong="H5704"\w* \w who|strong="H3808"\w* \w were|strong="H1419"\w* \w in|strong="H4191"\w* \w it|strong="H5704"\w*, \w both|strong="H4191"\w* \w small|strong="H6996"\w* \w and|strong="H1419"\w* \w great|strong="H1419"\w*. \w They|strong="H3808"\w* didn’t \w kill|strong="H4191"\w* \w any|strong="H3808"\w*, \w but|strong="H3808"\w* \w carried|strong="H7617"\w* \w them|strong="H7617"\w* \w off|strong="H7617"\w* \w and|strong="H1419"\w* \w went|strong="H3212"\w* \w their|strong="H3808"\w* \w way|strong="H1870"\w*. +\v 3 \w When|strong="H1121"\w* \w David|strong="H1732"\w* \w and|strong="H1121"\w* \w his|strong="H1732"\w* \w men|strong="H1121"\w* \w came|strong="H1323"\w* \w to|strong="H1121"\w* \w the|strong="H8313"\w* \w city|strong="H5892"\w*, \w behold|strong="H2009"\w*, \w it|strong="H2009"\w* \w was|strong="H1732"\w* \w burned|strong="H8313"\w* \w with|strong="H8313"\w* fire; \w and|strong="H1121"\w* \w their|strong="H8313"\w* wives, \w their|strong="H8313"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w their|strong="H8313"\w* \w daughters|strong="H1323"\w* \w were|strong="H1121"\w* \w taken|strong="H7617"\w* \w captive|strong="H7617"\w*. +\v 4 \w Then|strong="H5375"\w* \w David|strong="H1732"\w* \w and|strong="H5971"\w* \w the|strong="H5375"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w with|strong="H5971"\w* \w him|strong="H6963"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w their|strong="H5375"\w* \w voice|strong="H6963"\w* \w and|strong="H5971"\w* \w wept|strong="H1058"\w* \w until|strong="H5704"\w* \w they|strong="H5704"\w* \w had|strong="H1732"\w* \w no|strong="H5375"\w* \w more|strong="H5704"\w* \w power|strong="H3581"\w* \w to|strong="H5704"\w* \w weep|strong="H1058"\w*. +\v 5 \w David|strong="H1732"\w*’s \w two|strong="H8147"\w* wives \w were|strong="H1732"\w* \w taken|strong="H7617"\w* \w captive|strong="H7617"\w*, Ahinoam \w the|strong="H1732"\w* \w Jezreelitess|strong="H3159"\w*, \w and|strong="H1732"\w* Abigail \w the|strong="H1732"\w* wife \w of|strong="H8147"\w* \w Nabal|strong="H5037"\w* \w the|strong="H1732"\w* \w Carmelite|strong="H3761"\w*. +\v 6 \w David|strong="H1732"\w* \w was|strong="H3068"\w* \w greatly|strong="H3966"\w* \w distressed|strong="H3334"\w*, \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* spoke \w of|strong="H1121"\w* \w stoning|strong="H5619"\w* \w him|strong="H5921"\w*, \w because|strong="H3588"\w* \w the|strong="H3605"\w* \w souls|strong="H5315"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w were|strong="H5971"\w* grieved, \w every|strong="H3605"\w* \w man|strong="H1121"\w* \w for|strong="H3588"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w for|strong="H3588"\w* \w his|strong="H3605"\w* \w daughters|strong="H1323"\w*; \w but|strong="H3588"\w* \w David|strong="H1732"\w* \w strengthened|strong="H2388"\w* \w himself|strong="H5315"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H3605"\w* \w God|strong="H3068"\w*. +\v 7 \w David|strong="H1732"\w* said \w to|strong="H1121"\w* Abiathar \w the|strong="H3548"\w* \w priest|strong="H3548"\w*, \w the|strong="H3548"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahimelech, “\w Please|strong="H4994"\w* \w bring|strong="H5066"\w* \w the|strong="H3548"\w* ephod \w here|strong="H5066"\w* \w to|strong="H1121"\w* \w me|strong="H4994"\w*.” +\p Abiathar \w brought|strong="H5066"\w* \w the|strong="H3548"\w* ephod \w to|strong="H1121"\w* \w David|strong="H1732"\w*. +\v 8 \w David|strong="H1732"\w* \w inquired|strong="H7592"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, saying, “\w If|strong="H3588"\w* \w I|strong="H3588"\w* \w pursue|strong="H7291"\w* \w after|strong="H7291"\w* \w this|strong="H2088"\w* \w troop|strong="H1416"\w*, \w will|strong="H3068"\w* \w I|strong="H3588"\w* \w overtake|strong="H5381"\w* \w them|strong="H7291"\w*?” +\p \w He|strong="H3588"\w* answered \w him|strong="H7592"\w*, “\w Pursue|strong="H7291"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w surely|strong="H3588"\w* \w overtake|strong="H5381"\w* \w them|strong="H7291"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w without|strong="H3588"\w* \w fail|strong="H5337"\w* \w recover|strong="H5337"\w* \w all|strong="H5337"\w*.” +\p +\v 9 \w So|strong="H5975"\w* \w David|strong="H1732"\w* \w went|strong="H3212"\w*, \w he|strong="H1931"\w* \w and|strong="H3967"\w* \w the|strong="H5704"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* men \w who|strong="H1931"\w* \w were|strong="H1732"\w* \w with|strong="H3212"\w* \w him|strong="H5975"\w*, \w and|strong="H3967"\w* \w came|strong="H3212"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w brook|strong="H5158"\w* \w Besor|strong="H1308"\w*, where \w those|strong="H1931"\w* \w who|strong="H1931"\w* \w were|strong="H1732"\w* \w left|strong="H3498"\w* \w behind|strong="H3498"\w* \w stayed|strong="H5975"\w*. +\v 10 \w But|strong="H1931"\w* \w David|strong="H1732"\w* \w pursued|strong="H7291"\w*, \w he|strong="H1931"\w* \w and|strong="H3967"\w* four \w hundred|strong="H3967"\w* men; \w for|strong="H5975"\w* \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* \w stayed|strong="H5975"\w* \w behind|strong="H5975"\w*, \w who|strong="H1931"\w* \w were|strong="H1732"\w* \w so|strong="H5975"\w* \w faint|strong="H6296"\w* \w that|strong="H1931"\w* \w they|strong="H1931"\w* couldn’t \w go|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H5674"\w* \w brook|strong="H5158"\w* \w Besor|strong="H1308"\w*. +\v 11 \w They|strong="H5414"\w* \w found|strong="H4672"\w* \w an|strong="H5414"\w* \w Egyptian|strong="H4713"\w* \w in|strong="H4672"\w* \w the|strong="H5414"\w* \w field|strong="H7704"\w*, \w and|strong="H3899"\w* \w brought|strong="H3947"\w* \w him|strong="H5414"\w* \w to|strong="H5414"\w* \w David|strong="H1732"\w*, \w and|strong="H3899"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w bread|strong="H3899"\w*, \w and|strong="H3899"\w* \w he|strong="H1732"\w* ate; \w and|strong="H3899"\w* \w they|strong="H5414"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w water|strong="H4325"\w* \w to|strong="H5414"\w* \w drink|strong="H8248"\w*. +\v 12 \w They|strong="H3588"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w a|strong="H3068"\w* \w piece|strong="H6400"\w* \w of|strong="H3117"\w* \w a|strong="H3068"\w* \w cake|strong="H1690"\w* \w of|strong="H3117"\w* \w figs|strong="H1690"\w* \w and|strong="H7725"\w* \w two|strong="H8147"\w* \w clusters|strong="H6778"\w* \w of|strong="H3117"\w* \w raisins|strong="H6778"\w*. \w When|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H3588"\w* eaten, \w his|strong="H5414"\w* \w spirit|strong="H7307"\w* \w came|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w him|strong="H5414"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H3588"\w* eaten \w no|strong="H3808"\w* \w bread|strong="H3899"\w*, \w and|strong="H7725"\w* \w drank|strong="H8354"\w* \w no|strong="H3808"\w* \w water|strong="H4325"\w* \w for|strong="H3588"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w* \w and|strong="H7725"\w* \w three|strong="H7969"\w* \w nights|strong="H3915"\w*. +\v 13 \w David|strong="H1732"\w* \w asked|strong="H2470"\w* \w him|strong="H1732"\w*, “\w To|strong="H3117"\w* \w whom|strong="H4310"\w* \w do|strong="H2088"\w* \w you|strong="H3588"\w* belong? \w Where|strong="H2088"\w* \w are|strong="H3117"\w* \w you|strong="H3588"\w* \w from|strong="H3117"\w*?” +\p \w He|strong="H3588"\w* said, “\w I|strong="H3588"\w* \w am|strong="H2470"\w* \w a|strong="H3068"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* \w of|strong="H3117"\w* \w Egypt|strong="H4713"\w*, \w servant|strong="H5650"\w* \w to|strong="H3117"\w* \w an|strong="H3588"\w* \w Amalekite|strong="H6003"\w*; \w and|strong="H3117"\w* \w my|strong="H1732"\w* master \w left|strong="H5800"\w* \w me|strong="H5800"\w*, \w because|strong="H3588"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w* \w ago|strong="H3117"\w* \w I|strong="H3588"\w* got \w sick|strong="H2470"\w*. +\v 14 We \w made|strong="H6584"\w* \w a|strong="H3068"\w* \w raid|strong="H6584"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w South|strong="H5045"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w Cherethites|strong="H3774"\w*, \w and|strong="H3063"\w* \w on|strong="H5921"\w* \w that|strong="H3063"\w* \w which|strong="H3063"\w* belongs \w to|strong="H5921"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w South|strong="H5045"\w* \w of|strong="H5921"\w* \w Caleb|strong="H3612"\w*; \w and|strong="H3063"\w* \w we|strong="H3068"\w* \w burned|strong="H8313"\w* \w Ziklag|strong="H6860"\w* \w with|strong="H8313"\w* fire.” +\p +\v 15 \w David|strong="H1732"\w* said \w to|strong="H3381"\w* \w him|strong="H3027"\w*, “\w Will|strong="H3027"\w* \w you|strong="H3381"\w* \w bring|strong="H3381"\w* \w me|strong="H4191"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w this|strong="H2088"\w* \w troop|strong="H1416"\w*?” +\p \w He|strong="H1732"\w* said, “\w Swear|strong="H7650"\w* \w to|strong="H3381"\w* \w me|strong="H4191"\w* \w by|strong="H3027"\w* \w God|strong="H3027"\w* \w that|strong="H2088"\w* \w you|strong="H3381"\w* \w will|strong="H3027"\w* \w not|strong="H2088"\w* \w kill|strong="H4191"\w* \w me|strong="H4191"\w* \w and|strong="H3027"\w* \w not|strong="H2088"\w* \w deliver|strong="H5462"\w* \w me|strong="H4191"\w* \w up|strong="H5462"\w* \w into|strong="H3381"\w* \w the|strong="H3027"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w my|strong="H1732"\w* master, \w and|strong="H3027"\w* \w I|strong="H2088"\w* \w will|strong="H3027"\w* \w bring|strong="H3381"\w* \w you|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w this|strong="H2088"\w* \w troop|strong="H1416"\w*.” +\p +\v 16 \w When|strong="H5921"\w* \w he|strong="H3605"\w* \w had|strong="H3063"\w* \w brought|strong="H3947"\w* \w him|strong="H6440"\w* \w down|strong="H3381"\w*, \w behold|strong="H2009"\w*, \w they|strong="H5921"\w* \w were|strong="H6430"\w* \w spread|strong="H5203"\w* \w around|strong="H5921"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w ground|strong="H6440"\w*, eating, \w drinking|strong="H8354"\w*, \w and|strong="H3063"\w* \w dancing|strong="H2287"\w*, \w because|strong="H5921"\w* \w of|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w great|strong="H1419"\w* \w plunder|strong="H7998"\w* \w that|strong="H3605"\w* \w they|strong="H5921"\w* \w had|strong="H3063"\w* \w taken|strong="H3947"\w* \w out|strong="H3947"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H3063"\w* \w out|strong="H3947"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w of|strong="H6440"\w* \w Judah|strong="H3063"\w*. +\v 17 \w David|strong="H1732"\w* \w struck|strong="H5221"\w* \w them|strong="H1992"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w twilight|strong="H5399"\w* \w even|strong="H6153"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w evening|strong="H6153"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w next|strong="H4283"\w* \w day|strong="H4283"\w*. \w Not|strong="H3808"\w* \w a|strong="H3068"\w* \w man|strong="H5288"\w* \w of|strong="H5921"\w* \w them|strong="H1992"\w* \w escaped|strong="H4422"\w* \w from|strong="H5921"\w* \w there|strong="H1992"\w*, \w except|strong="H3588"\w* four \w hundred|strong="H3967"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w who|strong="H1992"\w* \w rode|strong="H7392"\w* \w on|strong="H5921"\w* \w camels|strong="H1581"\w* \w and|strong="H3967"\w* \w fled|strong="H5127"\w*. +\v 18 \w David|strong="H1732"\w* \w recovered|strong="H5337"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* \w Amalekites|strong="H6002"\w* \w had|strong="H1732"\w* \w taken|strong="H3947"\w*, \w and|strong="H1732"\w* \w David|strong="H1732"\w* \w rescued|strong="H5337"\w* \w his|strong="H3605"\w* \w two|strong="H8147"\w* wives. +\v 19 \w There|strong="H4480"\w* \w was|strong="H1732"\w* \w nothing|strong="H3808"\w* \w lacking|strong="H5737"\w* \w to|strong="H5704"\w* \w them|strong="H7725"\w*, \w neither|strong="H3808"\w* \w small|strong="H6996"\w* \w nor|strong="H3808"\w* \w great|strong="H1419"\w*, \w neither|strong="H3808"\w* \w sons|strong="H1121"\w* \w nor|strong="H3808"\w* \w daughters|strong="H1323"\w*, \w neither|strong="H3808"\w* \w plunder|strong="H7998"\w*, \w nor|strong="H3808"\w* \w anything|strong="H3605"\w* \w that|strong="H3605"\w* \w they|strong="H3808"\w* \w had|strong="H1732"\w* \w taken|strong="H3947"\w*. \w David|strong="H1732"\w* \w brought|strong="H7725"\w* \w them|strong="H7725"\w* \w all|strong="H3605"\w* \w back|strong="H7725"\w*. +\v 20 \w David|strong="H1732"\w* \w took|strong="H3947"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w flocks|strong="H6629"\w* \w and|strong="H1732"\w* \w the|strong="H3605"\w* \w herds|strong="H1241"\w*, \w which|strong="H1931"\w* \w they|strong="H1931"\w* \w drove|strong="H5090"\w* \w before|strong="H6440"\w* \w those|strong="H3605"\w* \w other|strong="H2088"\w* \w livestock|strong="H4735"\w*, \w and|strong="H1732"\w* said, “\w This|strong="H2088"\w* \w is|strong="H2088"\w* \w David|strong="H1732"\w*’s \w plunder|strong="H7998"\w*.” +\p +\v 21 \w David|strong="H1732"\w* \w came|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3318"\w* \w two|strong="H3427"\w* \w hundred|strong="H3967"\w* \w men|strong="H5971"\w*, \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w so|strong="H3318"\w* \w faint|strong="H6296"\w* \w that|strong="H5971"\w* \w they|strong="H5971"\w* \w could|strong="H5971"\w* \w not|strong="H1732"\w* \w follow|strong="H3212"\w* \w David|strong="H1732"\w*, \w whom|strong="H5971"\w* \w also|strong="H1732"\w* \w they|strong="H5971"\w* \w had|strong="H1732"\w* \w made|strong="H1732"\w* \w to|strong="H3318"\w* \w stay|strong="H3427"\w* \w at|strong="H3427"\w* \w the|strong="H3318"\w* \w brook|strong="H5158"\w* \w Besor|strong="H1308"\w*; \w and|strong="H3967"\w* \w they|strong="H5971"\w* \w went|strong="H3212"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w meet|strong="H7122"\w* \w David|strong="H1732"\w*, \w and|strong="H3967"\w* \w to|strong="H3318"\w* \w meet|strong="H7122"\w* \w the|strong="H3318"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w with|strong="H3427"\w* \w him|strong="H3318"\w*. \w When|strong="H3318"\w* \w David|strong="H1732"\w* \w came|strong="H3318"\w* \w near|strong="H5066"\w* \w to|strong="H3318"\w* \w the|strong="H3318"\w* \w people|strong="H5971"\w*, \w he|strong="H1732"\w* \w greeted|strong="H7592"\w* \w them|strong="H3318"\w*. +\v 22 \w Then|strong="H6030"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w wicked|strong="H7451"\w* \w men|strong="H1121"\w* \w and|strong="H1121"\w* \w worthless|strong="H1100"\w* \w fellows|strong="H1121"\w* \w of|strong="H1121"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w went|strong="H1980"\w* \w with|strong="H5973"\w* \w David|strong="H1732"\w* \w answered|strong="H6030"\w* \w and|strong="H1121"\w* \w said|strong="H6030"\w*, “\w Because|strong="H3588"\w* \w they|strong="H3588"\w* didn’t \w go|strong="H1980"\w* \w with|strong="H5973"\w* \w us|strong="H5414"\w*, \w we|strong="H3068"\w* \w will|strong="H1121"\w* \w not|strong="H3808"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w anything|strong="H3605"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w plunder|strong="H7998"\w* \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H1121"\w* \w recovered|strong="H5337"\w*, \w except|strong="H3588"\w* \w to|strong="H1980"\w* \w every|strong="H3605"\w* \w man|strong="H1121"\w* \w his|strong="H3605"\w* wife \w and|strong="H1121"\w* \w his|strong="H3605"\w* \w children|strong="H1121"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w may|strong="H1121"\w* \w lead|strong="H5090"\w* \w them|strong="H5414"\w* \w away|strong="H3212"\w* \w and|strong="H1121"\w* \w depart|strong="H3212"\w*.” +\p +\v 23 \w Then|strong="H3651"\w* \w David|strong="H1732"\w* \w said|strong="H3651"\w*, “\w Do|strong="H6213"\w* \w not|strong="H3808"\w* \w do|strong="H6213"\w* \w so|strong="H3651"\w*, \w my|strong="H8104"\w* brothers, \w with|strong="H3068"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w to|strong="H3068"\w* \w us|strong="H5414"\w*, \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w preserved|strong="H8104"\w* \w us|strong="H5414"\w*, \w and|strong="H3068"\w* \w delivered|strong="H5414"\w* \w the|strong="H5921"\w* \w troop|strong="H1416"\w* \w that|strong="H3068"\w* \w came|strong="H3068"\w* \w against|strong="H5921"\w* \w us|strong="H5414"\w* \w into|strong="H5921"\w* \w our|strong="H3068"\w* \w hand|strong="H3027"\w*. +\v 24 \w Who|strong="H4310"\w* \w will|strong="H4310"\w* \w listen|strong="H8085"\w* \w to|strong="H3381"\w* \w you|strong="H3588"\w* \w in|strong="H3427"\w* \w this|strong="H2088"\w* \w matter|strong="H1697"\w*? \w For|strong="H3588"\w* \w as|strong="H1697"\w* \w his|strong="H8085"\w* \w share|strong="H2506"\w* \w is|strong="H2088"\w* \w who|strong="H4310"\w* \w goes|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H5921"\w* \w battle|strong="H4421"\w*, \w so|strong="H2088"\w* \w shall|strong="H4310"\w* \w his|strong="H8085"\w* \w share|strong="H2506"\w* \w be|strong="H1697"\w* \w who|strong="H4310"\w* \w stays|strong="H3427"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w baggage|strong="H3627"\w*. \w They|strong="H3588"\w* \w shall|strong="H4310"\w* \w share|strong="H2506"\w* \w alike|strong="H3162"\w*.” +\v 25 \w It|strong="H7760"\w* \w was|strong="H1961"\w* \w so|strong="H1961"\w* \w from|strong="H3478"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w forward|strong="H4605"\w* \w that|strong="H3117"\w* \w he|strong="H1931"\w* \w made|strong="H7760"\w* \w it|strong="H7760"\w* \w a|strong="H3068"\w* \w statute|strong="H2706"\w* \w and|strong="H3478"\w* \w an|strong="H1961"\w* \w ordinance|strong="H4941"\w* \w for|strong="H5704"\w* \w Israel|strong="H3478"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\p +\v 26 \w When|strong="H7971"\w* \w David|strong="H1732"\w* \w came|strong="H3068"\w* \w to|strong="H3068"\w* \w Ziklag|strong="H6860"\w*, \w he|strong="H3068"\w* \w sent|strong="H7971"\w* \w some|strong="H2009"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w plunder|strong="H7998"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w elders|strong="H2205"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w*, \w even|strong="H3068"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w friends|strong="H7453"\w*, saying, “\w Behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w present|strong="H1293"\w* \w for|strong="H7971"\w* \w you|strong="H7971"\w* \w from|strong="H7971"\w* \w the|strong="H3068"\w* \w plunder|strong="H7998"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s enemies.” +\v 27 He sent it \w to|strong="H1008"\w* those who were \w in|strong="H1008"\w* \w Bethel|strong="H1008"\w*, \w to|strong="H1008"\w* those who were \w in|strong="H1008"\w* \w Ramoth|strong="H7418"\w* of \w the|strong="H1008"\w* South, \w to|strong="H1008"\w* those who were \w in|strong="H1008"\w* \w Jattir|strong="H3492"\w*, +\v 28 to those who were in \w Aroer|strong="H6177"\w*, to those who were in \w Siphmoth|strong="H8224"\w*, to those who were in Eshtemoa, +\v 29 \w to|strong="H5892"\w* those \w who|strong="H7017"\w* \w were|strong="H5892"\w* \w in|strong="H5892"\w* \w Racal|strong="H7403"\w*, \w to|strong="H5892"\w* those \w who|strong="H7017"\w* \w were|strong="H5892"\w* \w in|strong="H5892"\w* \w the|strong="H5892"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w the|strong="H5892"\w* \w Jerahmeelites|strong="H3397"\w*, \w to|strong="H5892"\w* those \w who|strong="H7017"\w* \w were|strong="H5892"\w* \w in|strong="H5892"\w* \w the|strong="H5892"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w the|strong="H5892"\w* \w Kenites|strong="H7017"\w*, +\v 30 to those who were in \w Hormah|strong="H2767"\w*, to those who were in Borashan, to those who were in \w Athach|strong="H6269"\w*, +\v 31 \w to|strong="H1980"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1732"\w* \w in|strong="H1980"\w* \w Hebron|strong="H2275"\w*, \w and|strong="H1980"\w* \w to|strong="H1980"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w places|strong="H4725"\w* \w where|strong="H8033"\w* \w David|strong="H1732"\w* \w himself|strong="H1931"\w* \w and|strong="H1980"\w* \w his|strong="H3605"\w* \w men|strong="H1980"\w* \w used|strong="H3605"\w* \w to|strong="H1980"\w* stay. +\c 31 +\p +\v 1 \w Now|strong="H3478"\w* \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w* \w fought|strong="H3898"\w* \w against|strong="H3898"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w the|strong="H6440"\w* \w men|strong="H3478"\w* \w of|strong="H2022"\w* \w Israel|strong="H3478"\w* \w fled|strong="H5127"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H3478"\w* \w fell|strong="H5307"\w* \w down|strong="H5307"\w* \w slain|strong="H2491"\w* \w on|strong="H5307"\w* \w Mount|strong="H2022"\w* \w Gilboa|strong="H1533"\w*. +\v 2 \w The|strong="H5221"\w* \w Philistines|strong="H6430"\w* \w overtook|strong="H1692"\w* \w Saul|strong="H7586"\w* \w and|strong="H1121"\w* \w his|strong="H5221"\w* \w sons|strong="H1121"\w*; \w and|strong="H1121"\w* \w the|strong="H5221"\w* \w Philistines|strong="H6430"\w* \w killed|strong="H5221"\w* \w Jonathan|strong="H3083"\w*, Abinadab, \w and|strong="H1121"\w* Malchishua, \w the|strong="H5221"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w*. +\v 3 \w The|strong="H4672"\w* \w battle|strong="H4421"\w* \w went|strong="H7586"\w* \w hard|strong="H3966"\w* \w against|strong="H4421"\w* \w Saul|strong="H7586"\w*, \w and|strong="H7586"\w* \w the|strong="H4672"\w* \w archers|strong="H3384"\w* \w overtook|strong="H4672"\w* \w him|strong="H4672"\w*; \w and|strong="H7586"\w* \w he|strong="H3384"\w* \w was|strong="H7586"\w* \w greatly|strong="H3966"\w* distressed \w by|strong="H4421"\w* reason \w of|strong="H7198"\w* \w the|strong="H4672"\w* \w archers|strong="H3384"\w*. +\v 4 \w Then|strong="H3947"\w* \w Saul|strong="H7586"\w* said \w to|strong="H5921"\w* \w his|strong="H5375"\w* \w armor|strong="H3627"\w* \w bearer|strong="H5375"\w*, “\w Draw|strong="H8025"\w* \w your|strong="H3947"\w* \w sword|strong="H2719"\w*, \w and|strong="H2719"\w* \w thrust|strong="H1856"\w* \w me|strong="H5921"\w* \w through|strong="H1856"\w* \w with|strong="H5921"\w* \w it|strong="H5921"\w*, \w lest|strong="H6435"\w* \w these|strong="H3947"\w* \w uncircumcised|strong="H6189"\w* \w come|strong="H5307"\w* \w and|strong="H2719"\w* \w thrust|strong="H1856"\w* \w me|strong="H5921"\w* \w through|strong="H1856"\w* \w and|strong="H2719"\w* \w abuse|strong="H5953"\w* \w me|strong="H5921"\w*!” \w But|strong="H3588"\w* \w his|strong="H5375"\w* \w armor|strong="H3627"\w* \w bearer|strong="H5375"\w* would \w not|strong="H3808"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w was|strong="H7586"\w* \w terrified|strong="H3966"\w*. \w Therefore|strong="H5921"\w* \w Saul|strong="H7586"\w* \w took|strong="H3947"\w* \w his|strong="H5375"\w* \w sword|strong="H2719"\w* \w and|strong="H2719"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 5 \w When|strong="H3588"\w* \w his|strong="H5375"\w* \w armor|strong="H3627"\w* \w bearer|strong="H5375"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w Saul|strong="H7586"\w* \w was|strong="H7586"\w* \w dead|strong="H4191"\w*, \w he|strong="H1931"\w* \w likewise|strong="H1571"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w his|strong="H5375"\w* \w sword|strong="H2719"\w*, \w and|strong="H2719"\w* \w died|strong="H4191"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w*. +\v 6 \w So|strong="H1571"\w* \w Saul|strong="H7586"\w* \w died|strong="H4191"\w* \w with|strong="H3117"\w* \w his|strong="H3605"\w* \w three|strong="H7969"\w* \w sons|strong="H1121"\w*, \w his|strong="H3605"\w* \w armor|strong="H3627"\w* \w bearer|strong="H5375"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w men|strong="H1121"\w* \w that|strong="H3605"\w* \w same|strong="H1931"\w* \w day|strong="H3117"\w* \w together|strong="H3162"\w*. +\p +\v 7 \w When|strong="H3588"\w* \w the|strong="H7200"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w who|strong="H1121"\w* \w were|strong="H3478"\w* \w on|strong="H7200"\w* \w the|strong="H7200"\w* \w other|strong="H5676"\w* \w side|strong="H5676"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w valley|strong="H6010"\w*, \w and|strong="H1121"\w* \w those|strong="H1121"\w* \w who|strong="H1121"\w* \w were|strong="H3478"\w* \w beyond|strong="H5676"\w* \w the|strong="H7200"\w* \w Jordan|strong="H3383"\w*, \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H7200"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w fled|strong="H5127"\w* \w and|strong="H1121"\w* \w that|strong="H3588"\w* \w Saul|strong="H7586"\w* \w and|strong="H1121"\w* \w his|strong="H7200"\w* \w sons|strong="H1121"\w* \w were|strong="H3478"\w* \w dead|strong="H4191"\w*, \w they|strong="H3588"\w* \w abandoned|strong="H5800"\w* \w the|strong="H7200"\w* \w cities|strong="H5892"\w* \w and|strong="H1121"\w* \w fled|strong="H5127"\w*; \w and|strong="H1121"\w* \w the|strong="H7200"\w* \w Philistines|strong="H6430"\w* \w came|strong="H3478"\w* \w and|strong="H1121"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w them|strong="H7200"\w*. +\v 8 \w On|strong="H5307"\w* \w the|strong="H1961"\w* \w next|strong="H4283"\w* \w day|strong="H4283"\w*, \w when|strong="H1961"\w* \w the|strong="H1961"\w* \w Philistines|strong="H6430"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w strip|strong="H6584"\w* \w the|strong="H1961"\w* \w slain|strong="H2491"\w*, \w they|strong="H7586"\w* \w found|strong="H4672"\w* \w Saul|strong="H7586"\w* \w and|strong="H1121"\w* \w his|strong="H1961"\w* \w three|strong="H7969"\w* \w sons|strong="H1121"\w* \w fallen|strong="H5307"\w* \w on|strong="H5307"\w* \w Mount|strong="H2022"\w* \w Gilboa|strong="H1533"\w*. +\v 9 \w They|strong="H5971"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w his|strong="H7971"\w* \w head|strong="H7218"\w*, \w stripped|strong="H6584"\w* \w off|strong="H3772"\w* \w his|strong="H7971"\w* \w armor|strong="H3627"\w*, \w and|strong="H7971"\w* \w sent|strong="H7971"\w* \w into|strong="H3627"\w* \w the|strong="H7971"\w* land \w of|strong="H1004"\w* \w the|strong="H7971"\w* \w Philistines|strong="H6430"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*, \w to|strong="H7971"\w* \w carry|strong="H1319"\w* \w the|strong="H7971"\w* \w news|strong="H1319"\w* \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w their|strong="H7971"\w* \w idols|strong="H6091"\w* \w and|strong="H7971"\w* \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w people|strong="H5971"\w*. +\v 10 \w They|strong="H7760"\w* \w put|strong="H7760"\w* \w his|strong="H7760"\w* \w armor|strong="H3627"\w* \w in|strong="H1004"\w* \w the|strong="H7760"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H7760"\w* \w Ashtaroth|strong="H6252"\w*, \w and|strong="H1004"\w* \w they|strong="H7760"\w* \w fastened|strong="H8628"\w* \w his|strong="H7760"\w* \w body|strong="H1472"\w* \w to|strong="H1004"\w* \w the|strong="H7760"\w* \w wall|strong="H2346"\w* \w of|strong="H1004"\w* \w Beth|strong="H1004"\w* Shan. +\v 11 \w When|strong="H8085"\w* \w the|strong="H8085"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Jabesh|strong="H3003"\w* \w Gilead|strong="H1568"\w* \w heard|strong="H8085"\w* \w what|strong="H6213"\w* \w the|strong="H8085"\w* \w Philistines|strong="H6430"\w* \w had|strong="H7586"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w Saul|strong="H7586"\w*, +\v 12 \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w valiant|strong="H2428"\w* \w men|strong="H1121"\w* \w arose|strong="H6965"\w*, \w went|strong="H3212"\w* \w all|strong="H3605"\w* \w night|strong="H3915"\w*, \w and|strong="H1121"\w* \w took|strong="H3947"\w* \w the|strong="H3605"\w* \w body|strong="H1472"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w* \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w bodies|strong="H1472"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w* \w from|strong="H1121"\w* \w the|strong="H3605"\w* \w wall|strong="H2346"\w* \w of|strong="H1121"\w* Beth Shan; \w and|strong="H1121"\w* \w they|strong="H8033"\w* \w came|strong="H3212"\w* \w to|strong="H3212"\w* \w Jabesh|strong="H3003"\w* \w and|strong="H1121"\w* \w burned|strong="H8313"\w* \w them|strong="H3947"\w* \w there|strong="H8033"\w*. +\v 13 \w They|strong="H3117"\w* \w took|strong="H3947"\w* \w their|strong="H3947"\w* \w bones|strong="H6106"\w* \w and|strong="H3117"\w* \w buried|strong="H6912"\w* \w them|strong="H3947"\w* \w under|strong="H8478"\w* \w the|strong="H3947"\w* tamarisk\f + \fr 31:13 \ft or, salt cedar\f* tree \w in|strong="H3117"\w* \w Jabesh|strong="H3003"\w*, \w and|strong="H3117"\w* \w fasted|strong="H6684"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/106-GLOeng-web.usfm b/bibles/eng-web_usfm/106-GLOeng-web.usfm new file mode 100644 index 0000000..6adc3c8 --- /dev/null +++ b/bibles/eng-web_usfm/106-GLOeng-web.usfm @@ -0,0 +1,101 @@ +\id GLO +\h Glossary +\toc1 World English Bible Glossary +\toc2 Glossary +\toc3 Glo +\mt1 World English Bible Glossary +\ip The following words used in the World English Bible (WEB) are not very common, either because they refer to ancient weights, measures, or money, or because they are in some way unique to the Bible. +\ili \k Abaddon\k* Abaddon is Hebrew for destruction. +\ili \k Abba\k* Abba is a Chaldee word for father, used in a respectful, affectionate, and familiar way, like papa, dad, or daddy. Often used in prayer to refer to our Father in Heaven. +\ili \k adultery\k* Adultery is having sexual intercourse with someone besides your own husband or wife. In the Bible, the only legitimate sexual intercourse is between a man and a woman who are married to each other. +\ili \k alpha\k* Alpha is the first letter of the Greek alphabet. It is sometimes used to mean the beginning or the first. +\ili \k amen\k* Amen means “So be it” or “I believe it is certainly so.” +\ili \k angel\k* “Angel” literally means “messenger” or “envoy,” and is usually used to refer to spiritual beings who normally are invisible to us, but can also appear as exceedingly strong creatures or as humans. +\ili \k Apollyon\k* Apollyon is Greek for destroyer. +\ili \k apostle\k* “Apostle” means a delegate, messenger, or one sent forth with orders. This term is applied in the New Testament in both a general sense connected with a ministry of establishing and strengthening church fellowships, as well as in a specific sense to “The 12 Apostles of the Lamb” (Revelation 21:14). The former category applies to a specific ministry that continues in the Church (Ephesians 4:11-13) and which includes many more than 12 people, while the latter refers to the apostles named in Matthew 10:2-4, except with Judas Iscariot replaced by Matthias (Acts 1:26). +\ili \k Armageddon\k* See Har-magedon. +\ili \k assarion\k* An assarion is a small Roman copper coin worth one tenth of a drachma, or about an hour’s wages for an agricultural laborer. +\ili \k aureus\k* An aureus is a Roman gold coin, worth 25 silver denarii. An aureus weighed from 115 to 126.3 grains (7.45 to 8.18 grams). +\ili \k baptize\k* Baptize means to immerse in, or wash with something, usually water. Baptism in the Holy Spirit, fire, the Body of Christ, and suffering are also mentioned in the New Testament, along with baptism in water. Baptism is not just to cleanse the body, but as an outward sign of an inward spiritual cleansing and commitment. Baptism is a sign of repentance, as practiced by John the Baptizer, and of faith in Jesus Christ, as practiced by Jesus’ disciples. +\ili \k bath\k* A bath is a liquid measure of about 22 liters, 5.8 U. S. gallons, or 4.8 imperial gallons. +\ili \k batos\k* A batos is a liquid measure of about 39.5 liters, 10.4 U. S. gallons, or 8.7 imperial gallons. +\ili \k Beelzebul\k* literally, lord of the flies. A name used for the devil. +\ili \k Beersheba\k* Beersheba is Hebrew for “well of the oath” or “well of the seven.” A city in Israel. +\ili \k behold\k* Look! See! Wow! Notice this! Lo! +\ili \k cherub\k* A cherub is a kind of angel with wings and hands that is associated with the throne room of God and guardian duty. See Ezekiel 10. +\ili \k cherubim\k* Cherubim means more than one cherub or a mighty cherub. +\ili \k choenix\k* A choenix is a dry volume measure that is a little more than a liter (which is a little more than a quart). A choenix was the daily ration of grain for a soldier in some armies. +\ili \k concubine\k* a woman who is united to a man for the purpose of providing him with sexual pleasure and children, but not being honored as a full partner in marriage; a second-class wife. In Old Testament times (and in some places now), it was the custom of middle-eastern kings, chiefs, and wealthy men to marry multiple wives and concubines, but God commanded the Kings of Israel not to do so (Deuteronomy 17:17) and Jesus encouraged people to either remain single or marry as God originally intended: one man married to one woman (Matthew 19:3-12; 1 Corinthians 7:1-13). +\ili \k cor\k* A cor is a dry measure of about 391 liters, 103 U. S. gallons, or 86 imperial gallons. +\ili \k corban\k* Corban is a Hebrew word for an offering devoted to God. +\ili \k crucify\k* Crucify means to execute someone by nailing them to a cross with metal spikes. Their hands are stretched out on the crossbeam with spikes driven through their wrists or hands. Their feet or ankles are attached to a cross with a metal spike. The weight of the victim’s body tends to force the air out of his lungs. To rise up to breathe, the victim has to put weight on the wounds, and use a lot of strength. The victim is nailed to the cross while the cross is on the ground, then the cross is raised up and dropped into a hole, thus jarring the wounds. Before crucifixion, the victim was usually whipped with a Roman cat of nine tails, which had bits of glass and metal tied to its ends. This caused chunks of flesh to be removed and open wounds to be placed against the raw wood of the cross. The victim was made to carry the heavy crossbeam of his cross from the place of judgment to the place of crucifixion, but often was physically unable after the scourging, so another person would be pressed into involuntary service to carry the cross for him. Roman crucifixion was generally done totally naked to maximize both shame and discomfort. Eventually, the pain, weakness, dehydration, and exhaustion of the muscles needed to breathe make breathing impossible, and the victim suffocates. +\ili \k cubit\k* A cubit is a unit of linear measure, from the elbow to the tip of the longest finger of a man. This unit is commonly converted to 0.46 meters or 18 inches, although that varies with height of the man doing the measurement. There is also a “long” cubit that is longer than a regular cubit by a handbreadth. (Ezekiel 43:13) +\ili \k cummin\k* Cummin is an aromatic seed from Cuminum cyminum, resembling caraway in flavor and appearance. It is used as a spice. +\ili \k darnel\k* Darnel is a weed grass (probably bearded darnel or Lolium temulentum) that looks very much like wheat until it is mature, when the seeds reveal a great difference. Darnel seeds aren’t good for much except as chicken feed or to burn to prevent the spread of this weed. +\ili \k denarii\k* denarii: plural form of denarius, a silver Roman coin worth about a day’s wages for a laborer. +\ili \k denarius\k* A denarius is a silver Roman coin worth about a day’s wages for an agricultural laborer. A denarius was worth 1/25th of a Roman aureus. +\ili \k devil\k* The word “devil” comes from the Greek “diabolos,” which means “one prone to slander; a liar.” “Devil” is used to refer to a fallen angel, also called “Satan,” who works to steal, kill, destroy, and do evil. The devil’s doom is certain, and it is only a matter of time before he is thrown into the Lake of Fire, never to escape. +\ili \k didrachma\k* A didrachma is a Greek silver coin worth 2 drachmas, about as much as 2 Roman denarii, or about 2 days wages. It was commonly used to pay the half-shekel temple tax. +\ili \k disciple\k* a student who follows a teacher to learn both by precept and example. +\ili \k distaff\k* part of a spinning wheel used for twisting threads. +\ili \k drachma\k* A drachma is a Greek silver coin worth about one Roman denarius, or about a day’s wages for an agricultural laborer. +\ili \k El-Elohe-Israel\k* El-Elohe-Israel means “God, the God of Israel” or “The God of Israel is mighty.” +\ili \k ephah\k* An ephah is a measure of volume of about 22 liters, 5.8 U. S. gallons, 4.8 imperial gallons, or a bit more than half a bushel. +\ili \k Gehenna\k* Gehenna is one word used for Hell. It comes from the Hebrew Gey-Hinnom, literally “valley of Hinnom.” This word originated as the name for a place south of the old city of Jerusalem where the city’s rubbish was burned. At one time, live babies were thrown crying into the fire under the arms of the idol, Moloch, to die there. This place was so despised by the people after the righteous King Josiah abolished this hideous practice that it was made into a garbage heap. Bodies of diseased animals and executed criminals were thrown there and burned. +\ili \k gittith\k* Gittith is a musical term possibly meaning “an instrument of Gath.” +\ili \k goad\k* a sharp, pointed prodding device used to motivate reluctant animals (such as oxen and mules) to move in the right direction. +\ili \k gospel\k* Gospel means “good news” or “glad tidings,” specifically the Good News of Jesus’ life, death, and resurrection for our salvation, healing, and provision; and the hope of eternal life that Jesus made available to us by God’s grace. +\ili \k Hades\k* Hades: The nether realm of the disembodied spirits. Also known as “hell.” See also “Sheol”. +\ili \k Har-magedon\k* Har-magedon, also called Armegeddon, is most likely a reference to hill (“har”) of Megiddo, near the Carmel Range in Israel. This area has a large valley plain with plenty of room for armies to maneuver. +\ili \k hin\k* A hin is a measure of volume of about about 6.5 liters or 1.7 gallons. +\ili \k homer\k* One homer is about 220 liters, 6.2 U. S. bushels, 6.1 imperial bushels, 58 U. S. gallons, or 48.4 imperial gallons. +\ili \k hypocrite\k* a stage actor; someone who pretends to be someone other than who they really are; a pretender; a dissembler +\ili \k Ishmael\k* Ishmael is the son of Abraham and Hagar. Ishmael literally means, “God hears.” +\ili \k Jehovah\k* See “Yahweh.” +\ili \k Jesus\k* “Jesus” is Greek for the Hebrew name “Yeshua,” which is a short version of “Yehoshua,” which comes from “Yoshia,” which means “He will save.” +\ili \k kodrantes\k* A kodrantes is a small coin worth one half of an Attic chalcus or two lepta. It is worth less than 2% of a day’s wages for an agricultural laborer. +\ili \k lepta\k* Lepta are very small, brass, Jewish coins worth half a Roman quadrans each, which is worth a quarter of the copper assarion. Lepta are worth less than 1% of an agricultural worker’s daily wages. +\ili \k leviathan\k* Leviathan is a poetic name for a large aquatic creature, possibly a crocodile or a dinosaur. +\ili \k mahalath\k* Mahalath is the name of a tune or a musical term. +\ili \k manna\k* Name for the food that God miraculously provided to the Israelites while they were wandering in the wilderness between Egypt and the promised land. From Hebrew man-hu (What is that?) or manan (to allot). See Exodus 16:14-35. +\ili \k marriage\k* the union of a husband and a wife for the purpose of cohabitation, procreation, and to enjoy each other’s company. God’s plan for marriage is between one man and one woman (Mark 10:6-9; 1 Corinthians 7). Although there are many cases of a man marrying more than one woman in the Old Testament, being married to one wife is a requirement to serve in certain church leadership positions (1 Timothy 3:2,12; Titus 1:5-6). +\ili \k maschil\k* Maschil is a musical and literary term for “contemplation” or “meditative psalm.” +\ili \k michtam\k* A michtam is a poem. +\ili \k mina\k* A mina is a Greek coin worth 100 Greek drachmas (or 100 Roman denarii), or about 100 day’s wages for an agricultural laborer. +\ili \k myrrh\k* Myrrh is the fragrant substance that oozes out of the stems and branches of the low, shrubby tree commiphora myrrha or commiphora kataf native to the Arabian deserts and parts of Africa. The fragrant gum drops to the ground and hardens into an oily yellowish-brown resin. Myrrh was highly valued as a perfume, and as an ingredient in medicinal and ceremonial ointments. +\ili \k Nicolaitans\k* Nicolaitans were most likely Gnostics who taught the detestable lie that the physical and spiritual realms were entirely separate and that immorality in the physical realm wouldn’t harm your spiritual health. +\ili \k omega\k* Omega is the last letter of the Greek alphabet. It is sometimes used to mean the last or the end. +\ili \k Peniel\k* Peniel is Hebrew for “face of God.” +\ili \k phylactery\k* a leather container for holding a small scroll containing important Scripture passages that is worn on the arm or forehead in prayer. These phylacteries (tefillin in Hebrew) are still used by orthodox Jewish men. See Deuteronomy 6:8. +\ili \k Praetorium\k* Praetorium: the Roman governor’s residence and office building, and those who work there. +\ili \k quadrans\k* A quadrans is a Roman coin worth about 1/64 of a denarius. A denarius is about one day’s wages for an agricultural laborer. +\ili \k rabbi\k* Rabbi is a transliteration of the Hebrew word for “my teacher,” used as a title of respect for Jewish teachers. +\ili \k Rahab\k* Rahab is either (1) The prostitute who hid Joshua’s 2 spies in Jericho (Joshua 2,6) and later became an ancestor of Jesus (Matthew 1:5) and an example of faith (Hebrews 11:31; James 2:25); or (2) Literally, “pride” or “arrogance” —possibly a reference to a large aquatic creature (Job 9:13; 26:12; Isaiah 51:9) or symbolically referring to Egypt (Psalms 87:4; 89:10; Isaiah 30:7). +\ili \k repent\k* to change one’s mind; turn away from sin and turn toward God; to abhor one’s past sins and determine to follow God. +\ili \k Rhabboni\k* Rhabboni: a transliteration of the Hebrew word for “great teacher.” +\ili \k Sabbath\k* The seventh day of the week, set aside by God for man to rest. +\ili \k saints\k* The Greek word for “saints” literally means “holy ones.” Saints are people set apart for service to God as holy and separate, living in righteousness. Used in the Bible to refer to all Christians and to all of those who worship Yahweh in Old Testament times. +\ili \k Samaritan\k* A Samaritan is a resident of Samaria. The Samaritans and the Jews generally detested each other during the time that Jesus walked among us. +\ili \k sanctify\k* To declare or set apart something as holy. To purify and separate a person from sin. +\ili \k sata\k* A sata is a dry measure of capacity approximately equal to 13 liters or 1.5 pecks. +\ili \k Satan\k* Satan means “accuser.” This is one name for the devil, an enemy of God and God’s people. +\ili \k scribe\k* A scribe is one who copies God’s law. They were often respected as teachers and authorities on God’s law. +\ili \k selah\k* Selah is a musical term indicating a pause or instrumental interlude for reflection. +\ili \k seraphim\k* Seraphim are 6-winged angels. See Isaiah 6:2-6. +\ili \k sexual immorality\k* The term “sexual immorality” in the New Testament comes from the Greek “porneia,” which refers to any sexual activity besides that between a husband and his wife. In other words, prostitution (male or female), bestiality, homosexual activity, any sexual intercourse outside of marriage, and the production and consumption of pornography all are included in this term. +\ili \k shekel\k* A measure of weight, and when referring to that weight in gold, silver, or brass, of money. A shekel is approximately 16 grams, about a half an ounce, or 20 gerahs (Ezekiel 45:12). +\ili \k Sheol\k* Sheol is the place of the dead. See also “Hades”. +\ili \k Shibah\k* Shibah is Hebrew for “oath” or “seven.” See Beersheba. +\ili \k shigionoth\k* Victorious music. +\ili \k soul\k* “Soul” refers to the emotions and intellect of a living person, as well as that person’s very life. It is distinguished in the Bible from a person’s spirit and body. (1 Thessalonians 5:23, Hebrews 4:12) +\ili \k span\k* A span is the length from the tip of a man’s thumb to the tip of his little finger when his hand is stretched out (about half a cubit, or 9 inches, or 22.8 cm.) +\ili \k spirit\k* Spirit, breath, and wind all derive from the same Hebrew and Greek words. A person’s spirit is the very essence of that person’s life, which comes from God, who is a Spirit being (John 4:24, Genesis 1:2; 2:7). The Bible distinguishes between a person’s spirit, soul, and body (1 Thessalonians 5:23, Hebrews 4:12). Some beings may exist as spirits without necessarily having a visible body, such as angels and demons (Luke 9:39, 1 John 4:1-3). +\ili \k stadia\k* Stadia is plural for “stadion,” a linear measure of about 184.9 meters or 606.6 feet (the length of the race course at Olympia). +\ili \k stater\k* A stater is a Greek silver coin equivalent to four Attic or two Alexandrian drachmas, or a Jewish shekel: just exactly enough to cover the half-shekel Temple Tax for two people. +\ili \k tabernacle\k* a dwelling place or place of worship, usually a tent. +\ili \k talent\k* A measure of weight or mass of 3000 shekels. +\ili \k Tartarus\k* Tartarus is the Greek name for an underworld for the wicked dead; another name for Gehenna or Hell. +\ili \k teraphim\k* Teraphim are household idols that may have been associated with inheritance rights to the household property. +\ili \k Yah\k* “Yah” is a shortened form of “Yahweh,” which is God’s proper name. This form is used occasionally in the Old Testament, mostly in the Psalms. See “Yahweh.” +\ili \k Yahweh\k* “Yahweh” is God’s proper name. In Hebrew, the four consonants roughly equivalent to YHWH were considered too holy to pronounce, so the Hebrew word for “Lord” (Adonai) was substituted when reading it aloud. When vowel points were added to the Hebrew Old Testament, the vowel points for “Adonai” were mixed with the consonants for “Yahweh,” which if you pronounced it literally as written, would be pronounced “Yehovah” or “Jehovah.” When the Old Testament was translated to Greek, the tradition of substituting “Lord” for God’s proper name continued in the translation of God’s name to “Lord” (Kurios). Some English Bibles translate God’s proper name to “LORD” or “GOD” (usually with small capital letters), based on that same tradition. This can get really confusing, since two other words (“Adonai” and “Elohim”) translate to “Lord” and “God,” and they are sometimes used together. The ASV of 1901 (and some other translations) render YHWH as “Jehovah.” The most probable pronunciation of God’s proper name is “Yahweh.” In Hebrew, the name “Yahweh” is related to the active declaration “I AM.” See Exodus 3:13-14. Since Hebrew has no tenses, the declaration “I AM” can also be interpreted as “I WAS” and “I WILL BE.” Compare Revelation 1:8. +\ili \k Zion\k* Zion is a name which originally referred one of the mountains of Jerusalem. It became a term synonymous with Jerusalem itself. The term “Heavenly Zion” is also used to refer the future dwelling place of God’s people. \ No newline at end of file diff --git a/bibles/eng-web_usfm/11-2SAeng-web.usfm b/bibles/eng-web_usfm/11-2SAeng-web.usfm new file mode 100644 index 0000000..9c0e329 --- /dev/null +++ b/bibles/eng-web_usfm/11-2SAeng-web.usfm @@ -0,0 +1,1199 @@ +\id 2SA World English Bible (WEB) +\ide UTF-8 +\h 2 Samuel +\toc1 The Second Book of Samuel +\toc2 2 Samuel +\toc3 2Sa +\mt1 The Second Book of Samuel +\c 1 +\p +\v 1 \w After|strong="H1961"\w* \w the|strong="H5221"\w* \w death|strong="H4191"\w* \w of|strong="H3117"\w* \w Saul|strong="H7586"\w*, \w when|strong="H1961"\w* \w David|strong="H1732"\w* \w had|strong="H1961"\w* \w returned|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H5221"\w* \w slaughter|strong="H5221"\w* \w of|strong="H3117"\w* \w the|strong="H5221"\w* \w Amalekites|strong="H6002"\w*, \w and|strong="H7725"\w* \w David|strong="H1732"\w* \w had|strong="H1961"\w* \w stayed|strong="H3427"\w* \w two|strong="H8147"\w* \w days|strong="H3117"\w* \w in|strong="H3427"\w* \w Ziklag|strong="H6860"\w*, +\v 2 \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*, \w behold|strong="H2009"\w*,\f + \fr 1:2 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w a|strong="H3068"\w* \w man|strong="H5307"\w* \w came|strong="H1961"\w* \w out|strong="H4480"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w camp|strong="H4264"\w* \w from|strong="H4480"\w* \w Saul|strong="H7586"\w*, \w with|strong="H5973"\w* \w his|strong="H1732"\w* clothes \w torn|strong="H7167"\w* \w and|strong="H3117"\w* earth \w on|strong="H5921"\w* \w his|strong="H1732"\w* \w head|strong="H7218"\w*. \w When|strong="H1961"\w* \w he|strong="H3117"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w David|strong="H1732"\w*, \w he|strong="H3117"\w* \w fell|strong="H5307"\w* \w to|strong="H1961"\w* \w the|strong="H5921"\w* earth \w and|strong="H3117"\w* showed \w respect|strong="H5921"\w*. +\p +\v 3 \w David|strong="H1732"\w* said \w to|strong="H3478"\w* \w him|strong="H1732"\w*, “\w Where|strong="H2088"\w* \w do|strong="H2088"\w* \w you|strong="H2088"\w* \w come|strong="H3478"\w* \w from|strong="H3478"\w*?” +\p \w He|strong="H1732"\w* said \w to|strong="H3478"\w* \w him|strong="H1732"\w*, “\w I|strong="H2088"\w* \w have|strong="H3478"\w* \w escaped|strong="H4422"\w* \w out|strong="H4422"\w* \w of|strong="H4264"\w* \w the|strong="H1732"\w* \w camp|strong="H4264"\w* \w of|strong="H4264"\w* \w Israel|strong="H3478"\w*.” +\p +\v 4 \w David|strong="H1732"\w* \w said|strong="H1697"\w* \w to|strong="H4191"\w* \w him|strong="H5046"\w*, “\w How|strong="H4100"\w* \w did|strong="H4100"\w* \w it|strong="H1961"\w* \w go|strong="H5971"\w*? \w Please|strong="H4994"\w* \w tell|strong="H5046"\w* \w me|strong="H4994"\w*.” +\p \w He|strong="H1732"\w* \w answered|strong="H5046"\w*, “\w The|strong="H4480"\w* \w people|strong="H5971"\w* \w have|strong="H1961"\w* \w fled|strong="H5127"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w battle|strong="H4421"\w*, \w and|strong="H1121"\w* \w many|strong="H7235"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w people|strong="H5971"\w* \w also|strong="H1571"\w* \w have|strong="H1961"\w* \w fallen|strong="H5307"\w* \w and|strong="H1121"\w* \w are|strong="H5971"\w* \w dead|strong="H4191"\w*. \w Saul|strong="H7586"\w* \w and|strong="H1121"\w* \w Jonathan|strong="H3083"\w* \w his|strong="H1732"\w* \w son|strong="H1121"\w* \w are|strong="H5971"\w* \w dead|strong="H4191"\w* \w also|strong="H1571"\w*.” +\p +\v 5 \w David|strong="H1732"\w* said \w to|strong="H4191"\w* \w the|strong="H3588"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* \w who|strong="H1121"\w* \w told|strong="H5046"\w* \w him|strong="H5046"\w*, “\w How|strong="H3588"\w* do \w you|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Saul|strong="H7586"\w* \w and|strong="H1121"\w* \w Jonathan|strong="H3083"\w* \w his|strong="H1732"\w* \w son|strong="H1121"\w* \w are|strong="H1121"\w* \w dead|strong="H4191"\w*?” +\p +\v 6 \w The|strong="H5921"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* \w who|strong="H5288"\w* \w told|strong="H5046"\w* \w him|strong="H5921"\w* said, “\w As|strong="H2022"\w* \w I|strong="H2009"\w* \w happened|strong="H7122"\w* \w by|strong="H5921"\w* \w chance|strong="H7122"\w* \w on|strong="H5921"\w* \w Mount|strong="H2022"\w* \w Gilboa|strong="H1533"\w*, \w behold|strong="H2009"\w*, \w Saul|strong="H7586"\w* \w was|strong="H7586"\w* \w leaning|strong="H8172"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w spear|strong="H2595"\w*; \w and|strong="H7393"\w* \w behold|strong="H2009"\w*, \w the|strong="H5921"\w* \w chariots|strong="H7393"\w* \w and|strong="H7393"\w* \w the|strong="H5921"\w* \w horsemen|strong="H6571"\w* \w followed|strong="H1167"\w* \w close|strong="H1692"\w* \w behind|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 7 \w When|strong="H7200"\w* \w he|strong="H7121"\w* \w looked|strong="H7200"\w* behind \w him|strong="H7121"\w*, \w he|strong="H7121"\w* \w saw|strong="H7200"\w* \w me|strong="H7200"\w* \w and|strong="H7200"\w* \w called|strong="H7121"\w* \w to|strong="H7121"\w* \w me|strong="H7200"\w*. \w I|strong="H2005"\w* answered, ‘\w Here|strong="H2005"\w* \w I|strong="H2005"\w* \w am|strong="H2005"\w*.’ +\v 8 \w He|strong="H4310"\w* said \w to|strong="H4310"\w* me, ‘\w Who|strong="H4310"\w* \w are|strong="H4310"\w* \w you|strong="H4310"\w*?’ I answered him, ‘I am \w an|strong="H4310"\w* \w Amalekite|strong="H6003"\w*.’ +\v 9 \w He|strong="H3588"\w* said \w to|strong="H4191"\w* \w me|strong="H4994"\w*, ‘\w Please|strong="H4994"\w* \w stand|strong="H5975"\w* \w beside|strong="H5921"\w* \w me|strong="H4994"\w*, \w and|strong="H5975"\w* \w kill|strong="H4191"\w* \w me|strong="H4994"\w*, \w for|strong="H3588"\w* \w anguish|strong="H7661"\w* \w has|strong="H3588"\w* taken hold \w of|strong="H5921"\w* \w me|strong="H4994"\w* \w because|strong="H3588"\w* \w my|strong="H3605"\w* \w life|strong="H5315"\w* lingers \w in|strong="H5921"\w* \w me|strong="H4994"\w*.’ +\v 10 \w So|strong="H3947"\w* \w I|strong="H3588"\w* \w stood|strong="H5975"\w* \w beside|strong="H5921"\w* \w him|strong="H5921"\w* \w and|strong="H7218"\w* \w killed|strong="H4191"\w* \w him|strong="H5921"\w*, \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w was|strong="H7218"\w* \w sure|strong="H3045"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w could|strong="H3045"\w* \w not|strong="H3808"\w* \w live|strong="H2421"\w* \w after|strong="H5921"\w* \w he|strong="H3588"\w* \w had|strong="H3588"\w* \w fallen|strong="H5307"\w*. \w I|strong="H3588"\w* \w took|strong="H3947"\w* \w the|strong="H5921"\w* \w crown|strong="H5145"\w* \w that|strong="H3588"\w* \w was|strong="H7218"\w* \w on|strong="H5921"\w* \w his|strong="H3947"\w* \w head|strong="H7218"\w* \w and|strong="H7218"\w* \w the|strong="H5921"\w* bracelet \w that|strong="H3588"\w* \w was|strong="H7218"\w* \w on|strong="H5921"\w* \w his|strong="H3947"\w* \w arm|strong="H2220"\w*, \w and|strong="H7218"\w* \w have|strong="H3045"\w* \w brought|strong="H3947"\w* \w them|strong="H5921"\w* \w here|strong="H2008"\w* \w to|strong="H4191"\w* \w my|strong="H3947"\w* lord.” +\p +\v 11 \w Then|strong="H1571"\w* \w David|strong="H1732"\w* \w took|strong="H2388"\w* \w hold|strong="H2388"\w* \w on|strong="H2388"\w* \w his|strong="H3605"\w* clothes \w and|strong="H1732"\w* \w tore|strong="H7167"\w* \w them|strong="H2388"\w*; \w and|strong="H1732"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1732"\w* \w with|strong="H1732"\w* \w him|strong="H3605"\w* \w did|strong="H1732"\w* \w likewise|strong="H1571"\w*. +\v 12 \w They|strong="H3588"\w* \w mourned|strong="H5594"\w*, \w wept|strong="H1058"\w*, \w and|strong="H1121"\w* \w fasted|strong="H6684"\w* \w until|strong="H5704"\w* \w evening|strong="H6153"\w* \w for|strong="H3588"\w* \w Saul|strong="H7586"\w* \w and|strong="H1121"\w* \w for|strong="H3588"\w* \w Jonathan|strong="H3083"\w* \w his|strong="H3068"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*,\f + \fr 1:12 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w and|strong="H1121"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3068"\w* \w fallen|strong="H5307"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w*. +\p +\v 13 \w David|strong="H1732"\w* said \w to|strong="H1121"\w* \w the|strong="H5046"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* \w who|strong="H1616"\w* \w told|strong="H5046"\w* \w him|strong="H5046"\w*, “\w Where|strong="H2088"\w* \w are|strong="H1121"\w* \w you|strong="H5046"\w* \w from|strong="H1121"\w*?” +\p \w He|strong="H1732"\w* \w answered|strong="H5046"\w*, “\w I|strong="H2088"\w* am \w the|strong="H5046"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1121"\w*, \w an|strong="H2088"\w* \w Amalekite|strong="H6003"\w*.” +\p +\v 14 \w David|strong="H1732"\w* said \w to|strong="H3068"\w* \w him|strong="H7971"\w*, “\w Why|strong="H3808"\w* \w were|strong="H3027"\w* \w you|strong="H7971"\w* \w not|strong="H3808"\w* \w afraid|strong="H3372"\w* \w to|strong="H3068"\w* \w stretch|strong="H7971"\w* \w out|strong="H7971"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w to|strong="H3068"\w* \w destroy|strong="H7843"\w* \w Yahweh|strong="H3068"\w*’s \w anointed|strong="H4899"\w*?” +\v 15 \w David|strong="H1732"\w* \w called|strong="H7121"\w* one \w of|strong="H4191"\w* \w the|strong="H5221"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w and|strong="H1732"\w* \w said|strong="H7121"\w*, “\w Go|strong="H5066"\w* \w near|strong="H5066"\w*, \w and|strong="H1732"\w* \w cut|strong="H6293"\w* \w him|strong="H7121"\w* \w down|strong="H5221"\w*!” \w He|strong="H1732"\w* \w struck|strong="H5221"\w* \w him|strong="H7121"\w* \w so|strong="H7121"\w* \w that|strong="H5288"\w* \w he|strong="H1732"\w* \w died|strong="H4191"\w*. +\v 16 \w David|strong="H1732"\w* \w said|strong="H6030"\w* \w to|strong="H4191"\w* \w him|strong="H5921"\w*, “\w Your|strong="H3068"\w* \w blood|strong="H1818"\w* \w be|strong="H4191"\w* \w on|strong="H5921"\w* \w your|strong="H3068"\w* \w head|strong="H7218"\w*, \w for|strong="H3588"\w* \w your|strong="H3068"\w* \w mouth|strong="H6310"\w* \w has|strong="H3068"\w* \w testified|strong="H6030"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w*, \w saying|strong="H6310"\w*, ‘\w I|strong="H3588"\w* \w have|strong="H3068"\w* \w slain|strong="H4191"\w* \w Yahweh|strong="H3068"\w*’s \w anointed|strong="H4899"\w*.’” +\p +\v 17 \w David|strong="H1732"\w* \w lamented|strong="H6969"\w* \w with|strong="H5921"\w* \w this|strong="H2063"\w* \w lamentation|strong="H7015"\w* \w over|strong="H5921"\w* \w Saul|strong="H7586"\w* \w and|strong="H1121"\w* \w over|strong="H5921"\w* \w Jonathan|strong="H3083"\w* \w his|strong="H1732"\w* \w son|strong="H1121"\w* +\v 18 (\w and|strong="H1121"\w* \w he|strong="H5921"\w* commanded \w them|strong="H5921"\w* \w to|strong="H5921"\w* \w teach|strong="H3925"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w the|strong="H5921"\w* song \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w bow|strong="H7198"\w*; \w behold|strong="H2009"\w*, \w it|strong="H5921"\w* \w is|strong="H2009"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H1121"\w* \w Jashar|strong="H3477"\w*): +\q1 +\v 19 “\w Your|strong="H5921"\w* \w glory|strong="H6643"\w*, \w Israel|strong="H3478"\w*, \w was|strong="H3478"\w* \w slain|strong="H2491"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*! +\q2 How \w the|strong="H5921"\w* \w mighty|strong="H1368"\w* \w have|strong="H3478"\w* \w fallen|strong="H5307"\w*! +\q1 +\v 20 Don’t \w tell|strong="H5046"\w* \w it|strong="H8055"\w* \w in|strong="H6189"\w* \w Gath|strong="H1661"\w*. +\q2 Don’t \w publish|strong="H1319"\w* \w it|strong="H8055"\w* \w in|strong="H6189"\w* \w the|strong="H5046"\w* \w streets|strong="H2351"\w* \w of|strong="H1323"\w* Ashkelon, +\q1 \w lest|strong="H6435"\w* \w the|strong="H5046"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w the|strong="H5046"\w* \w Philistines|strong="H6430"\w* \w rejoice|strong="H8055"\w*, +\q2 \w lest|strong="H6435"\w* \w the|strong="H5046"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w the|strong="H5046"\w* \w uncircumcised|strong="H6189"\w* \w triumph|strong="H5937"\w*. +\q1 +\v 21 \w You|strong="H3588"\w* \w mountains|strong="H2022"\w* \w of|strong="H2022"\w* \w Gilboa|strong="H1533"\w*, +\q2 let \w there|strong="H8033"\w* \w be|strong="H2022"\w* \w no|strong="H1097"\w* \w dew|strong="H2919"\w* \w or|strong="H7704"\w* \w rain|strong="H4306"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*, \w and|strong="H7586"\w* \w no|strong="H1097"\w* \w fields|strong="H7704"\w* \w of|strong="H2022"\w* \w offerings|strong="H8641"\w*; +\q2 \w for|strong="H3588"\w* \w there|strong="H8033"\w* \w the|strong="H5921"\w* \w shield|strong="H4043"\w* \w of|strong="H2022"\w* \w the|strong="H5921"\w* \w mighty|strong="H1368"\w* \w was|strong="H7586"\w* \w defiled|strong="H1602"\w* \w and|strong="H7586"\w* cast \w away|strong="H1602"\w*, +\q2 \w the|strong="H5921"\w* \w shield|strong="H4043"\w* \w of|strong="H2022"\w* \w Saul|strong="H7586"\w* \w was|strong="H7586"\w* \w not|strong="H3588"\w* \w anointed|strong="H4899"\w* \w with|strong="H5921"\w* \w oil|strong="H8081"\w*. +\q1 +\v 22 \w From|strong="H7725"\w* \w the|strong="H7725"\w* \w blood|strong="H1818"\w* \w of|strong="H1368"\w* \w the|strong="H7725"\w* \w slain|strong="H2491"\w*, +\q2 \w from|strong="H7725"\w* \w the|strong="H7725"\w* \w fat|strong="H2459"\w* \w of|strong="H1368"\w* \w the|strong="H7725"\w* \w mighty|strong="H1368"\w*, +\q2 \w Jonathan|strong="H3083"\w*’s \w bow|strong="H7198"\w* didn’t \w turn|strong="H7725"\w* \w back|strong="H7725"\w*. +\q2 \w Saul|strong="H7586"\w*’s \w sword|strong="H2719"\w* didn’t \w return|strong="H7725"\w* \w empty|strong="H7387"\w*. +\q1 +\v 23 \w Saul|strong="H7586"\w* \w and|strong="H7586"\w* \w Jonathan|strong="H3083"\w* \w were|strong="H7586"\w* \w lovely|strong="H5273"\w* \w and|strong="H7586"\w* \w pleasant|strong="H5273"\w* \w in|strong="H3808"\w* \w their|strong="H3808"\w* \w lives|strong="H2416"\w*. +\q2 \w In|strong="H3808"\w* \w their|strong="H3808"\w* \w death|strong="H4194"\w*, \w they|strong="H3808"\w* \w were|strong="H7586"\w* \w not|strong="H3808"\w* \w divided|strong="H6504"\w*. +\q1 \w They|strong="H3808"\w* \w were|strong="H7586"\w* \w swifter|strong="H7043"\w* \w than|strong="H3808"\w* \w eagles|strong="H5404"\w*. +\q2 \w They|strong="H3808"\w* \w were|strong="H7586"\w* \w stronger|strong="H1396"\w* \w than|strong="H3808"\w* lions. +\q1 +\v 24 \w You|strong="H5921"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w Israel|strong="H3478"\w*, \w weep|strong="H1058"\w* \w over|strong="H5921"\w* \w Saul|strong="H7586"\w*, +\q2 \w who|strong="H3478"\w* \w clothed|strong="H3847"\w* \w you|strong="H5921"\w* delicately \w in|strong="H5921"\w* \w scarlet|strong="H8144"\w*, +\q2 \w who|strong="H3478"\w* \w put|strong="H3847"\w* \w ornaments|strong="H5716"\w* \w of|strong="H1323"\w* \w gold|strong="H2091"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w clothing|strong="H3830"\w*. +\q1 +\v 25 How \w the|strong="H5921"\w* \w mighty|strong="H1368"\w* \w have|strong="H5307"\w* \w fallen|strong="H5307"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w the|strong="H5921"\w* \w battle|strong="H4421"\w*! +\q2 \w Jonathan|strong="H3083"\w* \w was|strong="H4421"\w* \w slain|strong="H2491"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*. +\q1 +\v 26 \w I|strong="H5921"\w* am \w distressed|strong="H6887"\w* \w for|strong="H5921"\w* \w you|strong="H5921"\w*, \w my|strong="H5921"\w* brother \w Jonathan|strong="H3083"\w*. +\q2 \w You|strong="H5921"\w* \w have|strong="H6887"\w* \w been|strong="H6887"\w* \w very|strong="H3966"\w* \w pleasant|strong="H5276"\w* \w to|strong="H5921"\w* \w me|strong="H5921"\w*. +\q2 \w Your|strong="H5921"\w* love \w to|strong="H5921"\w* \w me|strong="H5921"\w* \w was|strong="H3966"\w* \w wonderful|strong="H6381"\w*, +\q2 surpassing \w the|strong="H5921"\w* love \w of|strong="H5921"\w* women. +\q1 +\v 27 How \w the|strong="H5307"\w* \w mighty|strong="H1368"\w* \w have|strong="H5307"\w* \w fallen|strong="H5307"\w*, +\q2 \w and|strong="H5307"\w* \w the|strong="H5307"\w* \w weapons|strong="H3627"\w* \w of|strong="H3627"\w* \w war|strong="H4421"\w* \w have|strong="H5307"\w* perished!” +\c 2 +\p +\v 1 \w After|strong="H1961"\w* \w this|strong="H3651"\w*, \w David|strong="H1732"\w* \w inquired|strong="H7592"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, saying, “\w Shall|strong="H3068"\w* \w I|strong="H3651"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w into|strong="H5927"\w* \w any|strong="H1961"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w*?” +\p \w Yahweh|strong="H3068"\w* \w said|strong="H3651"\w* \w to|strong="H3068"\w* \w him|strong="H7592"\w*, “\w Go|strong="H5927"\w* \w up|strong="H5927"\w*.” +\p \w David|strong="H1732"\w* \w said|strong="H3651"\w*, “Where \w shall|strong="H3068"\w* \w I|strong="H3651"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w*?” +\p \w He|strong="H3651"\w* \w said|strong="H3651"\w*, “\w To|strong="H3068"\w* \w Hebron|strong="H2275"\w*.” +\p +\v 2 \w So|strong="H5927"\w* \w David|strong="H1732"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w there|strong="H8033"\w* \w with|strong="H5927"\w* \w his|strong="H1732"\w* \w two|strong="H8147"\w* wives, Ahinoam \w the|strong="H5927"\w* \w Jezreelitess|strong="H3159"\w*, \w and|strong="H1732"\w* Abigail \w the|strong="H5927"\w* wife \w of|strong="H8147"\w* \w Nabal|strong="H5037"\w* \w the|strong="H5927"\w* \w Carmelite|strong="H3761"\w*. +\v 3 \w David|strong="H1732"\w* \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w his|strong="H1732"\w* men \w who|strong="H3427"\w* \w were|strong="H1732"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*, \w every|strong="H3427"\w* man \w with|strong="H5973"\w* \w his|strong="H1732"\w* \w household|strong="H1004"\w*. \w They|strong="H5892"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5927"\w* \w cities|strong="H5892"\w* \w of|strong="H1004"\w* \w Hebron|strong="H2275"\w*. +\v 4 \w The|strong="H5921"\w* men \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w came|strong="H3063"\w*, \w and|strong="H3063"\w* \w there|strong="H8033"\w* \w they|strong="H8033"\w* \w anointed|strong="H4886"\w* \w David|strong="H1732"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*. \w They|strong="H8033"\w* \w told|strong="H5046"\w* \w David|strong="H1732"\w*, “\w The|strong="H5921"\w* men \w of|strong="H4428"\w* \w Jabesh|strong="H3003"\w* \w Gilead|strong="H1568"\w* \w were|strong="H3063"\w* \w those|strong="H5921"\w* \w who|strong="H3063"\w* \w buried|strong="H6912"\w* \w Saul|strong="H7586"\w*.” +\v 5 \w David|strong="H1732"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H3068"\w* \w the|strong="H6213"\w* \w men|strong="H6213"\w* \w of|strong="H3068"\w* \w Jabesh|strong="H3003"\w* \w Gilead|strong="H1568"\w*, \w and|strong="H3068"\w* said \w to|strong="H3068"\w* \w them|strong="H7971"\w*, “\w Blessed|strong="H1288"\w* \w are|strong="H3068"\w* \w you|strong="H7971"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w that|strong="H3068"\w* \w you|strong="H7971"\w* \w have|strong="H3068"\w* \w shown|strong="H6213"\w* \w this|strong="H2088"\w* \w kindness|strong="H2617"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w lord|strong="H3068"\w*, \w even|strong="H6213"\w* \w to|strong="H3068"\w* \w Saul|strong="H7586"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w buried|strong="H6912"\w* \w him|strong="H7971"\w*. +\v 6 \w Now|strong="H6258"\w* \w may|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w show|strong="H6213"\w* \w loving|strong="H2896"\w* \w kindness|strong="H2617"\w* \w and|strong="H3068"\w* truth \w to|strong="H3068"\w* \w you|strong="H6213"\w*. \w I|strong="H1697"\w* \w also|strong="H1571"\w* \w will|strong="H3068"\w* reward \w you|strong="H6213"\w* \w for|strong="H6213"\w* \w this|strong="H2088"\w* \w kindness|strong="H2617"\w*, \w because|strong="H1697"\w* \w you|strong="H6213"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*. +\v 7 \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* \w let|strong="H6258"\w* \w your|strong="H5921"\w* \w hands|strong="H3027"\w* \w be|strong="H1961"\w* \w strong|strong="H2388"\w*, \w and|strong="H1121"\w* \w be|strong="H1961"\w* \w valiant|strong="H2428"\w*; \w for|strong="H3588"\w* \w Saul|strong="H7586"\w* \w your|strong="H5921"\w* lord \w is|strong="H1571"\w* \w dead|strong="H4191"\w*, \w and|strong="H1121"\w* \w also|strong="H1571"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w have|strong="H1961"\w* \w anointed|strong="H4886"\w* \w me|strong="H5921"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w*.” +\p +\v 8 \w Now|strong="H3947"\w* Abner \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ner|strong="H5369"\w*, \w captain|strong="H8269"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w*’s \w army|strong="H6635"\w*, \w had|strong="H7586"\w* \w taken|strong="H3947"\w* Ishbosheth \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w* \w and|strong="H1121"\w* \w brought|strong="H3947"\w* \w him|strong="H3947"\w* \w over|strong="H5674"\w* \w to|strong="H1121"\w* \w Mahanaim|strong="H4266"\w*. +\v 9 \w He|strong="H3605"\w* \w made|strong="H4427"\w* \w him|strong="H5921"\w* \w king|strong="H4427"\w* \w over|strong="H5921"\w* \w Gilead|strong="H1568"\w*, \w over|strong="H5921"\w* \w the|strong="H3605"\w* Ashurites, \w over|strong="H5921"\w* \w Jezreel|strong="H3157"\w*, \w over|strong="H5921"\w* Ephraim, \w over|strong="H5921"\w* \w Benjamin|strong="H1144"\w*, \w and|strong="H3478"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*. +\v 10 Ishbosheth, \w Saul|strong="H7586"\w*’s \w son|strong="H1121"\w*, \w was|strong="H1961"\w* forty \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1961"\w* \w he|strong="H1004"\w* \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w he|strong="H1004"\w* \w reigned|strong="H4427"\w* \w two|strong="H8147"\w* \w years|strong="H8141"\w*. \w But|strong="H1961"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w followed|strong="H1961"\w* \w David|strong="H1732"\w*. +\v 11 \w The|strong="H5921"\w* \w time|strong="H3117"\w* \w that|strong="H3117"\w* \w David|strong="H1732"\w* \w was|strong="H1961"\w* \w king|strong="H4428"\w* \w in|strong="H8141"\w* \w Hebron|strong="H2275"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w was|strong="H1961"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w* \w and|strong="H3063"\w* \w six|strong="H8337"\w* \w months|strong="H2320"\w*. +\p +\v 12 Abner \w the|strong="H3318"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ner|strong="H5369"\w*, \w and|strong="H1121"\w* \w the|strong="H3318"\w* \w servants|strong="H5650"\w* \w of|strong="H1121"\w* Ishbosheth \w the|strong="H3318"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w*, \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w Mahanaim|strong="H4266"\w* \w to|strong="H3318"\w* \w Gibeon|strong="H1391"\w*. +\v 13 \w Joab|strong="H3097"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w* \w and|strong="H1121"\w* \w David|strong="H1732"\w*’s \w servants|strong="H5650"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H1121"\w* \w met|strong="H6298"\w* \w them|strong="H5921"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w pool|strong="H1295"\w* \w of|strong="H1121"\w* \w Gibeon|strong="H1391"\w*; \w and|strong="H1121"\w* \w they|strong="H5921"\w* \w sat|strong="H3427"\w* \w down|strong="H3427"\w*, \w the|strong="H5921"\w* \w one|strong="H2088"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w one|strong="H2088"\w* \w side|strong="H2088"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w pool|strong="H1295"\w* \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w other|strong="H2088"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w other|strong="H2088"\w* \w side|strong="H2088"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w pool|strong="H1295"\w*. +\v 14 Abner said \w to|strong="H6440"\w* \w Joab|strong="H3097"\w*, “\w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w the|strong="H6440"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w arise|strong="H6965"\w* \w and|strong="H6965"\w* compete \w before|strong="H6440"\w* \w us|strong="H4994"\w*!” +\p \w Joab|strong="H3097"\w* said, “\w Let|strong="H4994"\w* \w them|strong="H6440"\w* \w arise|strong="H6965"\w*!” +\v 15 \w Then|strong="H6965"\w* \w they|strong="H7586"\w* \w arose|strong="H6965"\w* \w and|strong="H1121"\w* \w went|strong="H5674"\w* \w over|strong="H5674"\w* \w by|strong="H5674"\w* \w number|strong="H4557"\w*: \w twelve|strong="H8147"\w* \w for|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w and|strong="H1121"\w* \w for|strong="H1121"\w* Ishbosheth \w the|strong="H5674"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w*, \w and|strong="H1121"\w* \w twelve|strong="H8147"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w*’s \w servants|strong="H5650"\w*. +\v 16 \w They|strong="H1931"\w* \w each|strong="H3162"\w* \w caught|strong="H2388"\w* \w his|strong="H7121"\w* \w opponent|strong="H7453"\w* \w by|strong="H7121"\w* \w the|strong="H7121"\w* \w head|strong="H7218"\w* \w and|strong="H7218"\w* thrust \w his|strong="H7121"\w* \w sword|strong="H2719"\w* \w in|strong="H5307"\w* \w his|strong="H7121"\w* \w fellow|strong="H7453"\w*’s \w side|strong="H6654"\w*; \w so|strong="H7121"\w* \w they|strong="H1931"\w* \w fell|strong="H5307"\w* \w down|strong="H5307"\w* \w together|strong="H3162"\w*. Therefore \w that|strong="H1931"\w* \w place|strong="H4725"\w* \w in|strong="H5307"\w* \w Gibeon|strong="H1391"\w* \w was|strong="H1931"\w* \w called|strong="H7121"\w* Helkath Hazzurim.\f + \fr 2:16 \ft “Helkath Hazzurim” means “field of daggers”.\f* +\v 17 \w The|strong="H6440"\w* \w battle|strong="H4421"\w* \w was|strong="H1961"\w* \w very|strong="H3966"\w* \w severe|strong="H7186"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*; \w and|strong="H3478"\w* Abner \w was|strong="H1961"\w* \w beaten|strong="H5062"\w*, \w and|strong="H3478"\w* \w the|strong="H6440"\w* \w men|strong="H5650"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w*, \w before|strong="H6440"\w* \w David|strong="H1732"\w*’s \w servants|strong="H5650"\w*. +\v 18 \w The|strong="H1961"\w* \w three|strong="H7969"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w* \w were|strong="H1961"\w* \w there|strong="H8033"\w*: \w Joab|strong="H3097"\w*, Abishai, \w and|strong="H1121"\w* \w Asahel|strong="H6214"\w*. \w Asahel|strong="H6214"\w* \w was|strong="H1961"\w* \w as|strong="H1961"\w* \w light|strong="H7031"\w* \w of|strong="H1121"\w* \w foot|strong="H7272"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w wild|strong="H7704"\w* \w gazelle|strong="H6643"\w*. +\v 19 \w Asahel|strong="H6214"\w* \w pursued|strong="H7291"\w* Abner. \w He|strong="H3808"\w* didn’t \w turn|strong="H5186"\w* \w to|strong="H3212"\w* \w the|strong="H5921"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w or|strong="H3808"\w* \w to|strong="H3212"\w* \w the|strong="H5921"\w* \w left|strong="H8040"\w* \w from|strong="H5921"\w* \w following|strong="H3212"\w* Abner. +\p +\v 20 \w Then|strong="H2088"\w* Abner \w looked|strong="H6437"\w* behind \w him|strong="H2088"\w* \w and|strong="H6437"\w* said, “\w Is|strong="H2088"\w* \w that|strong="H2088"\w* \w you|strong="H6437"\w*, \w Asahel|strong="H6214"\w*?” +\p \w He|strong="H2088"\w* answered, “\w It|strong="H6437"\w* \w is|strong="H2088"\w*.” +\p +\v 21 Abner said \w to|strong="H5921"\w* \w him|strong="H5921"\w*, “\w Turn|strong="H5493"\w* \w away|strong="H5493"\w* \w to|strong="H5921"\w* \w your|strong="H3947"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w or|strong="H3808"\w* \w to|strong="H5921"\w* \w your|strong="H3947"\w* \w left|strong="H8040"\w*, \w and|strong="H5288"\w* grab \w one|strong="H3808"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w*, \w and|strong="H5288"\w* \w take|strong="H3947"\w* \w his|strong="H3947"\w* armor.” \w But|strong="H3808"\w* \w Asahel|strong="H6214"\w* \w would|strong="H5288"\w* \w not|strong="H3808"\w* \w turn|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* following \w him|strong="H5921"\w*. +\v 22 Abner said \w again|strong="H5750"\w* \w to|strong="H6440"\w* \w Asahel|strong="H6214"\w*, “\w Turn|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* following \w me|strong="H6440"\w*. \w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w I|strong="H4100"\w* \w strike|strong="H5221"\w* \w you|strong="H6440"\w* \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w*? \w How|strong="H4100"\w* \w then|strong="H5375"\w* \w could|strong="H4100"\w* \w I|strong="H4100"\w* \w look|strong="H5375"\w* \w Joab|strong="H3097"\w* \w your|strong="H5375"\w* brother \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w*?” +\v 23 However, \w he|strong="H8033"\w* \w refused|strong="H3985"\w* \w to|strong="H3318"\w* \w turn|strong="H5493"\w* \w away|strong="H5493"\w*. \w Therefore|strong="H1961"\w* Abner \w with|strong="H3318"\w* \w the|strong="H3605"\w* \w back|strong="H5493"\w* \w end|strong="H3318"\w* \w of|strong="H8478"\w* \w the|strong="H3605"\w* \w spear|strong="H2595"\w* \w struck|strong="H5221"\w* \w him|strong="H5221"\w* \w in|strong="H4191"\w* \w the|strong="H3605"\w* \w body|strong="H4191"\w*, \w so|strong="H1961"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* \w spear|strong="H2595"\w* \w came|strong="H1961"\w* \w out|strong="H3318"\w* \w behind|strong="H5975"\w* \w him|strong="H5221"\w*; \w and|strong="H8033"\w* \w he|strong="H8033"\w* \w fell|strong="H5307"\w* \w down|strong="H5307"\w* \w there|strong="H8033"\w* \w and|strong="H8033"\w* \w died|strong="H4191"\w* \w in|strong="H4191"\w* \w the|strong="H3605"\w* same \w place|strong="H4725"\w*. \w As|strong="H1961"\w* many \w as|strong="H1961"\w* \w came|strong="H1961"\w* \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w Asahel|strong="H6214"\w* \w fell|strong="H5307"\w* \w down|strong="H5307"\w* \w and|strong="H8033"\w* \w died|strong="H4191"\w* \w stood|strong="H5975"\w* \w still|strong="H5975"\w*. +\p +\v 24 \w But|strong="H1992"\w* \w Joab|strong="H3097"\w* \w and|strong="H6440"\w* Abishai \w pursued|strong="H7291"\w* Abner. \w The|strong="H6440"\w* \w sun|strong="H8121"\w* \w went|strong="H8121"\w* \w down|strong="H1870"\w* \w when|strong="H5704"\w* \w they|strong="H1992"\w* \w had|strong="H3097"\w* come \w to|strong="H5704"\w* \w the|strong="H6440"\w* \w hill|strong="H1389"\w* \w of|strong="H6440"\w* Ammah, \w that|strong="H5704"\w* lies \w before|strong="H6440"\w* \w Giah|strong="H1520"\w* \w by|strong="H5921"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w wilderness|strong="H4057"\w* \w of|strong="H6440"\w* \w Gibeon|strong="H1391"\w*. +\v 25 \w The|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w gathered|strong="H6908"\w* \w themselves|strong="H6908"\w* \w together|strong="H6908"\w* \w after|strong="H5921"\w* Abner \w and|strong="H1121"\w* \w became|strong="H1961"\w* \w one|strong="H1121"\w* \w band|strong="H7218"\w*, \w and|strong="H1121"\w* \w stood|strong="H5975"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w top|strong="H7218"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w hill|strong="H1389"\w*. +\v 26 \w Then|strong="H1961"\w* Abner \w called|strong="H7121"\w* \w to|strong="H5704"\w* \w Joab|strong="H3097"\w*, \w and|strong="H7725"\w* \w said|strong="H7121"\w*, “\w Shall|strong="H5971"\w* \w the|strong="H3588"\w* \w sword|strong="H2719"\w* devour \w forever|strong="H5704"\w*? Don’t \w you|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w it|strong="H7121"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w bitterness|strong="H4751"\w* \w in|strong="H7725"\w* \w the|strong="H3588"\w* latter \w end|strong="H5331"\w*? \w How|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H1961"\w* \w it|strong="H7121"\w* \w be|strong="H1961"\w* \w then|strong="H1961"\w*, \w before|strong="H5704"\w* \w you|strong="H3588"\w* ask \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w to|strong="H5704"\w* \w return|strong="H7725"\w* \w from|strong="H7725"\w* following \w their|strong="H7725"\w* brothers?” +\p +\v 27 \w Joab|strong="H3097"\w* \w said|strong="H1696"\w*, “\w As|strong="H5927"\w* God\f + \fr 2:27 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w lives|strong="H2416"\w*, \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w had|strong="H3588"\w* \w not|strong="H3588"\w* \w spoken|strong="H1696"\w*, \w surely|strong="H3588"\w* \w then|strong="H1696"\w* \w in|strong="H1696"\w* \w the|strong="H3588"\w* \w morning|strong="H1242"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w would|strong="H5971"\w* \w have|strong="H5971"\w* \w gone|strong="H5927"\w* \w away|strong="H5927"\w*, \w and|strong="H5971"\w* \w not|strong="H3588"\w* \w each|strong="H5971"\w* \w followed|strong="H5927"\w* \w his|strong="H3588"\w* brother.” +\v 28 \w So|strong="H3808"\w* \w Joab|strong="H3097"\w* \w blew|strong="H8628"\w* \w the|strong="H3605"\w* \w trumpet|strong="H7782"\w*; \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w stood|strong="H5975"\w* \w still|strong="H5750"\w* \w and|strong="H3478"\w* \w pursued|strong="H7291"\w* \w Israel|strong="H3478"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w*, \w and|strong="H3478"\w* \w they|strong="H3808"\w* \w fought|strong="H3898"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w*. +\v 29 Abner \w and|strong="H1980"\w* \w his|strong="H3605"\w* \w men|strong="H1980"\w* \w went|strong="H1980"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w night|strong="H3915"\w* \w through|strong="H5674"\w* \w the|strong="H3605"\w* \w Arabah|strong="H6160"\w*; \w and|strong="H1980"\w* \w they|strong="H1931"\w* \w passed|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*, \w and|strong="H1980"\w* \w went|strong="H1980"\w* \w through|strong="H5674"\w* \w all|strong="H3605"\w* \w Bithron|strong="H1338"\w*, \w and|strong="H1980"\w* \w came|strong="H1980"\w* \w to|strong="H1980"\w* \w Mahanaim|strong="H4266"\w*. +\p +\v 30 \w Joab|strong="H3097"\w* \w returned|strong="H7725"\w* \w from|strong="H7725"\w* following Abner; \w and|strong="H7725"\w* \w when|strong="H7725"\w* \w he|strong="H3605"\w* \w had|strong="H1732"\w* \w gathered|strong="H6908"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w together|strong="H6908"\w*, \w nineteen|strong="H8672"\w* \w men|strong="H5971"\w* \w of|strong="H5650"\w* \w David|strong="H1732"\w*’s \w and|strong="H7725"\w* \w Asahel|strong="H6214"\w* \w were|strong="H5971"\w* \w missing|strong="H6485"\w*. +\v 31 \w But|strong="H5221"\w* \w David|strong="H1732"\w*’s \w servants|strong="H5650"\w* \w had|strong="H1732"\w* \w struck|strong="H5221"\w* \w Benjamin|strong="H1144"\w* Abner’s \w men|strong="H5650"\w* \w so|strong="H4191"\w* \w that|strong="H1732"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w sixty|strong="H8346"\w* \w men|strong="H5650"\w* \w died|strong="H4191"\w*. +\v 32 \w They|strong="H3605"\w* \w took|strong="H5375"\w* \w up|strong="H5375"\w* \w Asahel|strong="H6214"\w* \w and|strong="H3212"\w* \w buried|strong="H6912"\w* \w him|strong="H6912"\w* \w in|strong="H6912"\w* \w the|strong="H3605"\w* \w tomb|strong="H6913"\w* \w of|strong="H3605"\w* \w his|strong="H3605"\w* father, \w which|strong="H3605"\w* \w was|strong="H3097"\w* \w in|strong="H6912"\w* \w Bethlehem|strong="H1035"\w*. \w Joab|strong="H3097"\w* \w and|strong="H3212"\w* \w his|strong="H3605"\w* \w men|strong="H3605"\w* \w went|strong="H3212"\w* \w all|strong="H3605"\w* \w night|strong="H3915"\w*, \w and|strong="H3212"\w* \w the|strong="H3605"\w* day broke \w on|strong="H3212"\w* \w them|strong="H5375"\w* \w at|strong="H6912"\w* \w Hebron|strong="H2275"\w*. +\c 3 +\p +\v 1 \w Now|strong="H1961"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w long|strong="H1980"\w* \w war|strong="H4421"\w* \w between|strong="H4421"\w* \w Saul|strong="H7586"\w*’s \w house|strong="H1004"\w* \w and|strong="H1980"\w* \w David|strong="H1732"\w*’s \w house|strong="H1004"\w*. \w David|strong="H1732"\w* \w grew|strong="H1980"\w* \w stronger|strong="H2390"\w* \w and|strong="H1980"\w* \w stronger|strong="H2390"\w*, \w but|strong="H1961"\w* \w Saul|strong="H7586"\w*’s \w house|strong="H1004"\w* \w grew|strong="H1980"\w* \w weaker|strong="H1800"\w* \w and|strong="H1980"\w* \w weaker|strong="H1800"\w*. +\v 2 \w Sons|strong="H1121"\w* \w were|strong="H1961"\w* \w born|strong="H3205"\w* \w to|strong="H1961"\w* \w David|strong="H1732"\w* \w in|strong="H1121"\w* \w Hebron|strong="H2275"\w*. \w His|strong="H1732"\w* \w firstborn|strong="H1060"\w* \w was|strong="H1961"\w* Amnon, \w of|strong="H1121"\w* Ahinoam \w the|strong="H3205"\w* \w Jezreelitess|strong="H3159"\w*; +\v 3 \w and|strong="H1121"\w* \w his|strong="H4428"\w* \w second|strong="H4932"\w*, \w Chileab|strong="H3609"\w*, \w of|strong="H1121"\w* Abigail \w the|strong="H1121"\w* wife \w of|strong="H1121"\w* \w Nabal|strong="H5037"\w* \w the|strong="H1121"\w* \w Carmelite|strong="H3761"\w*; \w and|strong="H1121"\w* \w the|strong="H1121"\w* \w third|strong="H7992"\w*, Absalom \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Maacah|strong="H4601"\w* \w the|strong="H1121"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Talmai|strong="H8526"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Geshur|strong="H1650"\w*; +\v 4 \w and|strong="H1121"\w* \w the|strong="H1121"\w* \w fourth|strong="H7243"\w*, Adonijah \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Haggith|strong="H2294"\w*; \w and|strong="H1121"\w* \w the|strong="H1121"\w* \w fifth|strong="H2549"\w*, \w Shephatiah|strong="H8203"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Abital; +\v 5 \w and|strong="H1732"\w* \w the|strong="H3205"\w* \w sixth|strong="H8345"\w*, \w Ithream|strong="H3507"\w*, \w of|strong="H3205"\w* \w Eglah|strong="H5698"\w*, \w David|strong="H1732"\w*’s wife. \w These|strong="H1732"\w* \w were|strong="H1732"\w* \w born|strong="H3205"\w* \w to|strong="H3205"\w* \w David|strong="H1732"\w* \w in|strong="H1732"\w* \w Hebron|strong="H2275"\w*. +\p +\v 6 \w While|strong="H1961"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w war|strong="H4421"\w* \w between|strong="H4421"\w* \w Saul|strong="H7586"\w*’s \w house|strong="H1004"\w* \w and|strong="H1004"\w* \w David|strong="H1732"\w*’s \w house|strong="H1004"\w*, Abner \w made|strong="H2388"\w* \w himself|strong="H2388"\w* \w strong|strong="H2388"\w* \w in|strong="H1004"\w* \w Saul|strong="H7586"\w*’s \w house|strong="H1004"\w*. +\v 7 Now \w Saul|strong="H7586"\w* \w had|strong="H7586"\w* \w a|strong="H3068"\w* \w concubine|strong="H6370"\w*, \w whose|strong="H8034"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Rizpah|strong="H7532"\w*, \w the|strong="H8034"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* Aiah; \w and|strong="H7586"\w* Ishbosheth said \w to|strong="H1323"\w* Abner, “\w Why|strong="H4069"\w* \w have|strong="H1323"\w* you gone \w in|strong="H8034"\w* \w to|strong="H1323"\w* \w my|strong="H7586"\w* father’s \w concubine|strong="H6370"\w*?” +\p +\v 8 \w Then|strong="H6213"\w* Abner \w was|strong="H1732"\w* \w very|strong="H3966"\w* \w angry|strong="H2734"\w* \w about|strong="H5921"\w* Ishbosheth’s \w words|strong="H1697"\w*, \w and|strong="H3063"\w* \w said|strong="H1697"\w*, “\w Am|strong="H6485"\w* \w I|strong="H3117"\w* \w a|strong="H3068"\w* \w dog|strong="H3611"\w*’s \w head|strong="H7218"\w* \w that|strong="H3117"\w* belongs \w to|strong="H6213"\w* \w Judah|strong="H3063"\w*? \w Today|strong="H3117"\w* \w I|strong="H3117"\w* \w show|strong="H6213"\w* \w kindness|strong="H2617"\w* \w to|strong="H6213"\w* \w your|strong="H5921"\w* father \w Saul|strong="H7586"\w*’s \w house|strong="H1004"\w*, \w to|strong="H6213"\w* \w his|strong="H1732"\w* brothers, \w and|strong="H3063"\w* \w to|strong="H6213"\w* \w his|strong="H1732"\w* \w friends|strong="H4828"\w*, \w and|strong="H3063"\w* \w have|strong="H3063"\w* \w not|strong="H3808"\w* \w delivered|strong="H4672"\w* \w you|strong="H5921"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H1004"\w* \w David|strong="H1732"\w*; \w and|strong="H3063"\w* \w yet|strong="H3808"\w* \w you|strong="H5921"\w* \w charge|strong="H5921"\w* \w me|strong="H5921"\w* \w today|strong="H3117"\w* \w with|strong="H5973"\w* \w a|strong="H3068"\w* \w fault|strong="H5771"\w* \w concerning|strong="H5921"\w* \w this|strong="H6213"\w* \w woman|strong="H1004"\w*! +\v 9 \w God|strong="H3068"\w* \w do|strong="H6213"\w* \w so|strong="H3651"\w* \w to|strong="H3068"\w* Abner, \w and|strong="H3068"\w* \w more|strong="H3254"\w* \w also|strong="H3068"\w*, \w if|strong="H3588"\w*, \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w sworn|strong="H7650"\w* \w to|strong="H3068"\w* \w David|strong="H1732"\w*, \w I|strong="H3588"\w* don’t \w do|strong="H6213"\w* \w even|strong="H3588"\w* \w so|strong="H3651"\w* \w to|strong="H3068"\w* \w him|strong="H6213"\w*: +\v 10 \w to|strong="H5704"\w* \w transfer|strong="H5674"\w* \w the|strong="H5921"\w* \w kingdom|strong="H4467"\w* \w from|strong="H5921"\w* \w Saul|strong="H7586"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3063"\w* \w to|strong="H5704"\w* \w set|strong="H6965"\w* \w up|strong="H6965"\w* \w David|strong="H1732"\w*’s \w throne|strong="H3678"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w over|strong="H5921"\w* \w Judah|strong="H3063"\w*, \w from|strong="H5921"\w* \w Dan|strong="H1835"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* Beersheba.” +\p +\v 11 \w He|strong="H3808"\w* \w could|strong="H3201"\w* \w not|strong="H3808"\w* \w answer|strong="H7725"\w* Abner \w another|strong="H5750"\w* \w word|strong="H1697"\w*, \w because|strong="H1697"\w* \w he|strong="H3808"\w* \w was|strong="H1697"\w* \w afraid|strong="H3372"\w* \w of|strong="H1697"\w* \w him|strong="H7725"\w*. +\p +\v 12 Abner \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H3478"\w* \w David|strong="H1732"\w* \w on|strong="H3027"\w* \w his|strong="H3605"\w* \w behalf|strong="H5973"\w*, saying, “\w Whose|strong="H4310"\w* \w is|strong="H4310"\w* \w the|strong="H3605"\w* land?” \w and|strong="H3478"\w* saying, “\w Make|strong="H3772"\w* \w your|strong="H3605"\w* alliance \w with|strong="H5973"\w* \w me|strong="H7971"\w*, \w and|strong="H3478"\w* \w behold|strong="H2009"\w*, \w my|strong="H3605"\w* \w hand|strong="H3027"\w* \w will|strong="H4310"\w* \w be|strong="H3027"\w* \w with|strong="H5973"\w* \w you|strong="H3605"\w* \w to|strong="H3478"\w* \w bring|strong="H5437"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w around|strong="H5437"\w* \w to|strong="H3478"\w* \w you|strong="H3605"\w*.” +\p +\v 13 David \w said|strong="H1697"\w*, “\w Good|strong="H2896"\w*. \w I|strong="H3588"\w* \w will|strong="H1697"\w* \w make|strong="H3772"\w* \w a|strong="H3068"\w* \w treaty|strong="H1285"\w* \w with|strong="H1285"\w* \w you|strong="H3588"\w*, \w but|strong="H3588"\w* \w one|strong="H3808"\w* \w thing|strong="H1697"\w* \w I|strong="H3588"\w* \w require|strong="H7592"\w* \w of|strong="H1323"\w* \w you|strong="H3588"\w*. \w That|strong="H3588"\w* \w is|strong="H1697"\w*, \w you|strong="H3588"\w* \w will|strong="H1697"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w* \w my|strong="H7200"\w* \w face|strong="H6440"\w* \w unless|strong="H3588"\w* \w you|strong="H3588"\w* \w first|strong="H1323"\w* \w bring|strong="H1323"\w* \w Michal|strong="H4324"\w*, \w Saul|strong="H7586"\w*’s \w daughter|strong="H1323"\w*, \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w come|strong="H7586"\w* \w to|strong="H6440"\w* \w see|strong="H7200"\w* \w my|strong="H7200"\w* \w face|strong="H6440"\w*.” +\v 14 \w David|strong="H1732"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H7971"\w* Ishbosheth, \w Saul|strong="H7586"\w*’s \w son|strong="H1121"\w*, saying, “\w Deliver|strong="H5414"\w* \w me|strong="H5414"\w* \w my|strong="H5414"\w* wife \w Michal|strong="H4324"\w*, whom \w I|strong="H5414"\w* \w was|strong="H1732"\w* \w given|strong="H5414"\w* \w to|strong="H7971"\w* \w marry|strong="H5414"\w* \w for|strong="H7971"\w* \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* \w foreskins|strong="H6190"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w Philistines|strong="H6430"\w*.” +\p +\v 15 Ishbosheth \w sent|strong="H7971"\w* \w and|strong="H1121"\w* \w took|strong="H3947"\w* \w her|strong="H7971"\w* \w from|strong="H1121"\w* \w her|strong="H7971"\w* husband, \w Paltiel|strong="H6409"\w* \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Laish|strong="H3889"\w*. +\v 16 \w Her|strong="H7725"\w* husband \w went|strong="H1980"\w* \w with|strong="H1980"\w* \w her|strong="H7725"\w*, \w weeping|strong="H1058"\w* \w as|strong="H5704"\w* \w he|strong="H5704"\w* \w went|strong="H1980"\w*, \w and|strong="H1980"\w* \w followed|strong="H1980"\w* \w her|strong="H7725"\w* \w to|strong="H5704"\w* Bahurim. \w Then|strong="H1980"\w* Abner said \w to|strong="H5704"\w* \w him|strong="H7725"\w*, “\w Go|strong="H1980"\w*! \w Return|strong="H7725"\w*!” \w and|strong="H1980"\w* \w he|strong="H5704"\w* \w returned|strong="H7725"\w*. +\p +\v 17 Abner \w had|strong="H1961"\w* \w communication|strong="H1961"\w* \w with|strong="H5973"\w* \w the|strong="H5921"\w* \w elders|strong="H2205"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w saying|strong="H1697"\w*, “\w In|strong="H5921"\w* \w times|strong="H8543"\w* \w past|strong="H8032"\w*, \w you|strong="H5921"\w* \w sought|strong="H1245"\w* \w for|strong="H5921"\w* \w David|strong="H1732"\w* \w to|strong="H3478"\w* \w be|strong="H1961"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w you|strong="H5921"\w*. +\v 18 \w Now|strong="H6258"\w* \w then|strong="H6258"\w* \w do|strong="H6213"\w* \w it|strong="H3588"\w*! \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* spoken \w of|strong="H3068"\w* \w David|strong="H1732"\w*, saying, ‘\w By|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w my|strong="H3605"\w* \w servant|strong="H5650"\w* \w David|strong="H1732"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w save|strong="H3467"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w* \w out|strong="H6213"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H3478"\w* \w out|strong="H6213"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w enemies|strong="H3027"\w*.’” +\p +\v 19 Abner \w also|strong="H1571"\w* \w spoke|strong="H1696"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* ears \w of|strong="H1004"\w* \w Benjamin|strong="H1144"\w*; \w and|strong="H3478"\w* Abner \w went|strong="H3212"\w* \w also|strong="H1571"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* ears \w of|strong="H1004"\w* \w David|strong="H1732"\w* \w in|strong="H3478"\w* \w Hebron|strong="H2275"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w seemed|strong="H5869"\w* \w good|strong="H2896"\w* \w to|strong="H1696"\w* \w Israel|strong="H3478"\w* \w and|strong="H3478"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Benjamin|strong="H1144"\w*. +\v 20 \w So|strong="H6213"\w* Abner \w came|strong="H1732"\w* \w to|strong="H6213"\w* \w David|strong="H1732"\w* \w to|strong="H6213"\w* \w Hebron|strong="H2275"\w*, \w and|strong="H6242"\w* \w twenty|strong="H6242"\w* \w men|strong="H6213"\w* \w with|strong="H6213"\w* \w him|strong="H6213"\w*. \w David|strong="H1732"\w* \w made|strong="H6213"\w* Abner \w and|strong="H6242"\w* \w the|strong="H6213"\w* \w men|strong="H6213"\w* \w who|strong="H6213"\w* \w were|strong="H1732"\w* \w with|strong="H6213"\w* \w him|strong="H6213"\w* \w a|strong="H3068"\w* \w feast|strong="H4960"\w*. +\v 21 Abner said \w to|strong="H3478"\w* \w David|strong="H1732"\w*, “\w I|strong="H5315"\w* \w will|strong="H4428"\w* \w arise|strong="H6965"\w* \w and|strong="H6965"\w* \w go|strong="H3212"\w*, \w and|strong="H6965"\w* \w will|strong="H4428"\w* \w gather|strong="H6908"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w my|strong="H3605"\w* lord \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w that|strong="H3605"\w* \w they|strong="H5315"\w* \w may|strong="H3478"\w* \w make|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w you|strong="H3605"\w*, \w and|strong="H6965"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w may|strong="H3478"\w* \w reign|strong="H4427"\w* \w over|strong="H4427"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w your|strong="H3605"\w* \w soul|strong="H5315"\w* desires.” \w David|strong="H1732"\w* \w sent|strong="H7971"\w* Abner \w away|strong="H7971"\w*; \w and|strong="H6965"\w* \w he|strong="H3605"\w* \w went|strong="H3212"\w* \w in|strong="H3478"\w* \w peace|strong="H7965"\w*. +\p +\v 22 \w Behold|strong="H2009"\w*, \w David|strong="H1732"\w*’s \w servants|strong="H5650"\w* \w and|strong="H7971"\w* \w Joab|strong="H3097"\w* \w came|strong="H3212"\w* \w from|strong="H7971"\w* \w a|strong="H3068"\w* \w raid|strong="H1416"\w* \w and|strong="H7971"\w* \w brought|strong="H3212"\w* \w in|strong="H3212"\w* \w a|strong="H3068"\w* \w great|strong="H7227"\w* \w plunder|strong="H7998"\w* \w with|strong="H5973"\w* \w them|strong="H7971"\w*; \w but|strong="H3588"\w* Abner \w was|strong="H1732"\w* \w not|strong="H3588"\w* \w with|strong="H5973"\w* \w David|strong="H1732"\w* \w in|strong="H3212"\w* \w Hebron|strong="H2275"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H1732"\w* \w sent|strong="H7971"\w* \w him|strong="H7971"\w* \w away|strong="H7971"\w*, \w and|strong="H7971"\w* \w he|strong="H3588"\w* \w had|strong="H1732"\w* \w gone|strong="H3212"\w* \w in|strong="H3212"\w* \w peace|strong="H7965"\w*. +\v 23 \w When|strong="H7971"\w* \w Joab|strong="H3097"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w* \w who|strong="H3605"\w* \w was|strong="H4428"\w* \w with|strong="H3212"\w* \w him|strong="H7971"\w* \w had|strong="H4428"\w* \w come|strong="H3212"\w*, \w they|strong="H3605"\w* \w told|strong="H5046"\w* \w Joab|strong="H3097"\w*, “Abner \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ner|strong="H5369"\w* \w came|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w and|strong="H1121"\w* \w he|strong="H3605"\w* \w has|strong="H6635"\w* \w sent|strong="H7971"\w* \w him|strong="H7971"\w* \w away|strong="H7971"\w*, \w and|strong="H1121"\w* \w he|strong="H3605"\w* \w has|strong="H6635"\w* \w gone|strong="H3212"\w* \w in|strong="H4428"\w* \w peace|strong="H7965"\w*.” +\p +\v 24 \w Then|strong="H1980"\w* \w Joab|strong="H3097"\w* \w came|strong="H1980"\w* \w to|strong="H1980"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w* \w and|strong="H1980"\w* said, “\w What|strong="H4100"\w* \w have|strong="H4428"\w* \w you|strong="H7971"\w* \w done|strong="H6213"\w*? \w Behold|strong="H2009"\w*, Abner \w came|strong="H1980"\w* \w to|strong="H1980"\w* \w you|strong="H7971"\w*. \w Why|strong="H4100"\w* \w is|strong="H2088"\w* \w it|strong="H6213"\w* \w that|strong="H4428"\w* \w you|strong="H7971"\w* \w have|strong="H4428"\w* \w sent|strong="H7971"\w* \w him|strong="H7971"\w* \w away|strong="H7971"\w*, \w and|strong="H1980"\w* \w he|strong="H6213"\w* \w is|strong="H2088"\w* \w already|strong="H1980"\w* \w gone|strong="H1980"\w*? +\v 25 \w You|strong="H3588"\w* \w know|strong="H3045"\w* Abner \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ner|strong="H5369"\w*. \w He|strong="H3588"\w* came \w to|strong="H6213"\w* \w deceive|strong="H6601"\w* \w you|strong="H3588"\w*, \w and|strong="H1121"\w* \w to|strong="H6213"\w* \w know|strong="H3045"\w* \w your|strong="H3605"\w* \w going|strong="H4161"\w* \w out|strong="H4161"\w* \w and|strong="H1121"\w* \w your|strong="H3605"\w* \w coming|strong="H4126"\w* \w in|strong="H6213"\w*, \w and|strong="H1121"\w* \w to|strong="H6213"\w* \w know|strong="H3045"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w do|strong="H6213"\w*.” +\p +\v 26 \w When|strong="H3318"\w* \w Joab|strong="H3097"\w* \w had|strong="H1732"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H7725"\w* \w David|strong="H1732"\w*, \w he|strong="H1732"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w after|strong="H3318"\w* Abner, \w and|strong="H7971"\w* \w they|strong="H3808"\w* \w brought|strong="H3318"\w* \w him|strong="H7971"\w* \w back|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H7725"\w* \w well|strong="H3045"\w* \w of|strong="H4397"\w* \w Sirah|strong="H5626"\w*; \w but|strong="H3808"\w* \w David|strong="H1732"\w* didn’t \w know|strong="H3045"\w* \w it|strong="H7725"\w*. +\v 27 \w When|strong="H7725"\w* Abner \w had|strong="H3097"\w* \w returned|strong="H7725"\w* \w to|strong="H1696"\w* \w Hebron|strong="H2275"\w*, \w Joab|strong="H3097"\w* \w took|strong="H5186"\w* \w him|strong="H5221"\w* \w aside|strong="H5186"\w* \w into|strong="H7725"\w* \w the|strong="H5221"\w* \w middle|strong="H8432"\w* \w of|strong="H8179"\w* \w the|strong="H5221"\w* \w gate|strong="H8179"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w with|strong="H1696"\w* \w him|strong="H5221"\w* \w quietly|strong="H7987"\w*, \w and|strong="H7725"\w* \w struck|strong="H5221"\w* \w him|strong="H5221"\w* \w there|strong="H8033"\w* \w in|strong="H4191"\w* \w the|strong="H5221"\w* \w body|strong="H4191"\w*, \w so|strong="H7725"\w* \w that|strong="H8179"\w* \w he|strong="H8033"\w* \w died|strong="H4191"\w* \w for|strong="H4191"\w* \w the|strong="H5221"\w* \w blood|strong="H1818"\w* \w of|strong="H8179"\w* \w Asahel|strong="H6214"\w* \w his|strong="H7725"\w* brother. +\v 28 Afterward, \w when|strong="H8085"\w* \w David|strong="H1732"\w* \w heard|strong="H8085"\w* \w it|strong="H3651"\w*, \w he|strong="H3651"\w* \w said|strong="H8085"\w*, “\w I|strong="H3651"\w* \w and|strong="H1121"\w* \w my|strong="H8085"\w* \w kingdom|strong="H4467"\w* \w are|strong="H1121"\w* \w guiltless|strong="H5355"\w* \w before|strong="H5973"\w* \w Yahweh|strong="H3068"\w* \w forever|strong="H5769"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* \w blood|strong="H1818"\w* \w of|strong="H1121"\w* Abner \w the|strong="H8085"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ner|strong="H5369"\w*. +\v 29 Let \w it|strong="H5921"\w* \w fall|strong="H5307"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w head|strong="H7218"\w* \w of|strong="H1004"\w* \w Joab|strong="H3097"\w* \w and|strong="H1004"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* father’s \w house|strong="H1004"\w*. Let \w there|strong="H3605"\w* \w not|strong="H5307"\w* \w fail|strong="H3772"\w* \w from|strong="H3772"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Joab|strong="H3097"\w* \w one|strong="H3605"\w* \w who|strong="H3605"\w* \w has|strong="H2719"\w* \w a|strong="H3068"\w* \w discharge|strong="H2100"\w*, \w or|strong="H7218"\w* \w who|strong="H3605"\w* \w is|strong="H3605"\w* \w a|strong="H3068"\w* \w leper|strong="H6879"\w*, \w or|strong="H7218"\w* \w who|strong="H3605"\w* leans \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w staff|strong="H6418"\w*, \w or|strong="H7218"\w* \w who|strong="H3605"\w* \w falls|strong="H5307"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w or|strong="H7218"\w* \w who|strong="H3605"\w* \w lacks|strong="H2638"\w* \w bread|strong="H3899"\w*.” +\v 30 \w So|strong="H4191"\w* \w Joab|strong="H3097"\w* \w and|strong="H3097"\w* Abishai \w his|strong="H5921"\w* brother \w killed|strong="H2026"\w* Abner, \w because|strong="H5921"\w* \w he|strong="H5921"\w* \w had|strong="H3097"\w* \w killed|strong="H2026"\w* \w their|strong="H5921"\w* brother \w Asahel|strong="H6214"\w* \w at|strong="H5921"\w* \w Gibeon|strong="H1391"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w battle|strong="H4421"\w*. +\p +\v 31 \w David|strong="H1732"\w* said \w to|strong="H1980"\w* \w Joab|strong="H3097"\w* \w and|strong="H1980"\w* \w to|strong="H1980"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w with|strong="H1980"\w* \w him|strong="H6440"\w*, “\w Tear|strong="H7167"\w* \w your|strong="H3605"\w* clothes, \w and|strong="H1980"\w* clothe \w yourselves|strong="H2296"\w* \w with|strong="H1980"\w* \w sackcloth|strong="H8242"\w*, \w and|strong="H1980"\w* \w mourn|strong="H5594"\w* \w in|strong="H1980"\w* \w front|strong="H6440"\w* \w of|strong="H4428"\w* Abner.” \w King|strong="H4428"\w* \w David|strong="H1732"\w* \w followed|strong="H1980"\w* \w the|strong="H3605"\w* \w bier|strong="H4296"\w*. +\v 32 \w They|strong="H5971"\w* \w buried|strong="H6912"\w* Abner \w in|strong="H4428"\w* \w Hebron|strong="H2275"\w*; \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H3605"\w* \w voice|strong="H6963"\w* \w and|strong="H4428"\w* \w wept|strong="H1058"\w* \w at|strong="H4428"\w* Abner’s \w grave|strong="H6913"\w*; \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w wept|strong="H1058"\w*. +\v 33 \w The|strong="H4191"\w* \w king|strong="H4428"\w* \w lamented|strong="H6969"\w* \w for|strong="H4191"\w* Abner, \w and|strong="H4428"\w* said, “\w Should|strong="H4428"\w* Abner \w die|strong="H4191"\w* \w as|strong="H4428"\w* \w a|strong="H3068"\w* \w fool|strong="H5036"\w* \w dies|strong="H4191"\w*? +\v 34 \w Your|strong="H3605"\w* \w hands|strong="H3027"\w* weren’t bound, \w and|strong="H1121"\w* \w your|strong="H3605"\w* \w feet|strong="H7272"\w* weren’t \w put|strong="H3254"\w* \w into|strong="H5307"\w* \w fetters|strong="H5178"\w*. \w As|strong="H5971"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w falls|strong="H5307"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w iniquity|strong="H5766"\w*, \w so|strong="H3808"\w* \w you|strong="H6440"\w* \w fell|strong="H5307"\w*.” +\p \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w wept|strong="H1058"\w* \w again|strong="H3254"\w* \w over|strong="H5921"\w* \w him|strong="H6440"\w*. +\v 35 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w came|strong="H5971"\w* \w to|strong="H6213"\w* urge \w David|strong="H1732"\w* \w to|strong="H6213"\w* \w eat|strong="H1262"\w* \w bread|strong="H3899"\w* \w while|strong="H5750"\w* \w it|strong="H3588"\w* \w was|strong="H1732"\w* \w yet|strong="H5750"\w* \w day|strong="H3117"\w*; \w but|strong="H3588"\w* \w David|strong="H1732"\w* \w swore|strong="H7650"\w*, saying, “God \w do|strong="H6213"\w* \w so|strong="H6213"\w* \w to|strong="H6213"\w* \w me|strong="H6440"\w*, \w and|strong="H3117"\w* \w more|strong="H3254"\w* \w also|strong="H1732"\w*, \w if|strong="H3588"\w* \w I|strong="H3588"\w* \w taste|strong="H2938"\w* \w bread|strong="H3899"\w* \w or|strong="H3117"\w* \w anything|strong="H3605"\w* \w else|strong="H5750"\w*, \w until|strong="H3588"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w* \w goes|strong="H6440"\w* \w down|strong="H6440"\w*.” +\p +\v 36 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w took|strong="H4428"\w* \w notice|strong="H5234"\w* \w of|strong="H4428"\w* \w it|strong="H6213"\w*, \w and|strong="H4428"\w* \w it|strong="H6213"\w* \w pleased|strong="H3190"\w* \w them|strong="H6213"\w*, \w as|strong="H6213"\w* \w whatever|strong="H3605"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w did|strong="H6213"\w* \w pleased|strong="H3190"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*. +\v 37 \w So|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w understood|strong="H3045"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w it|strong="H1931"\w* \w was|strong="H1961"\w* \w not|strong="H3808"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w to|strong="H3478"\w* \w kill|strong="H4191"\w* Abner \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ner|strong="H5369"\w*. +\v 38 \w The|strong="H3588"\w* \w king|strong="H4428"\w* said \w to|strong="H3478"\w* \w his|strong="H3045"\w* \w servants|strong="H5650"\w*, “Don’t \w you|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w a|strong="H3068"\w* \w prince|strong="H8269"\w* \w and|strong="H3478"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w man|strong="H1419"\w* \w has|strong="H3478"\w* \w fallen|strong="H5307"\w* \w today|strong="H3117"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*? +\v 39 \w I|strong="H3117"\w* \w am|strong="H3068"\w* \w weak|strong="H7390"\w* \w today|strong="H3117"\w*, though \w anointed|strong="H4886"\w* \w king|strong="H4428"\w*. \w These|strong="H6213"\w* \w men|strong="H1121"\w*, \w the|strong="H6213"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w* \w are|strong="H3117"\w* \w too|strong="H4480"\w* \w hard|strong="H7186"\w* \w for|strong="H6213"\w* \w me|strong="H4480"\w*. \w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w reward|strong="H7999"\w* \w the|strong="H6213"\w* \w evildoer|strong="H6213"\w* \w according|strong="H4480"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w wickedness|strong="H7451"\w*.” +\c 4 +\p +\v 1 \w When|strong="H3588"\w* \w Saul|strong="H7586"\w*’s \w son|strong="H1121"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* Abner \w was|strong="H3478"\w* \w dead|strong="H4191"\w* \w in|strong="H3478"\w* \w Hebron|strong="H2275"\w*, \w his|strong="H3605"\w* \w hands|strong="H3027"\w* \w became|strong="H7586"\w* \w feeble|strong="H7503"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Israelites|strong="H3478"\w* \w were|strong="H3478"\w* troubled. +\v 2 \w Saul|strong="H7586"\w*’s \w son|strong="H1121"\w* \w had|strong="H1961"\w* \w two|strong="H8147"\w* \w men|strong="H1121"\w* \w who|strong="H1121"\w* \w were|strong="H1961"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* raiding \w bands|strong="H1416"\w*. \w The|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w one|strong="H1121"\w* \w was|strong="H8034"\w* \w Baanah|strong="H1196"\w* \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w other|strong="H8145"\w* \w Rechab|strong="H7394"\w*, \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Rimmon|strong="H7417"\w* \w the|strong="H5921"\w* Beerothite, \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* (\w for|strong="H3588"\w* Beeroth \w also|strong="H1571"\w* \w is|strong="H1571"\w* \w considered|strong="H2803"\w* \w a|strong="H3068"\w* \w part|strong="H1571"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*; +\v 3 \w and|strong="H3117"\w* \w the|strong="H3117"\w* Beerothites \w fled|strong="H1272"\w* \w to|strong="H5704"\w* \w Gittaim|strong="H1664"\w*, \w and|strong="H3117"\w* \w have|strong="H1961"\w* \w lived|strong="H1481"\w* \w as|strong="H5704"\w* \w foreigners|strong="H1481"\w* \w there|strong="H8033"\w* \w until|strong="H5704"\w* \w today|strong="H3117"\w*). +\p +\v 4 \w Now|strong="H1961"\w* \w Jonathan|strong="H3083"\w*, \w Saul|strong="H7586"\w*’s \w son|strong="H1121"\w*, \w had|strong="H1961"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w who|strong="H1121"\w* \w was|strong="H8034"\w* \w lame|strong="H5223"\w* \w in|strong="H8141"\w* \w his|strong="H5375"\w* \w feet|strong="H7272"\w*. \w He|strong="H2568"\w* \w was|strong="H8034"\w* \w five|strong="H2568"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1961"\w* \w the|strong="H5375"\w* \w news|strong="H8052"\w* \w came|strong="H1961"\w* \w about|strong="H1961"\w* \w Saul|strong="H7586"\w* \w and|strong="H1121"\w* \w Jonathan|strong="H3083"\w* \w out|strong="H5307"\w* \w of|strong="H1121"\w* \w Jezreel|strong="H3157"\w*; \w and|strong="H1121"\w* \w his|strong="H5375"\w* nurse \w picked|strong="H5375"\w* \w him|strong="H5375"\w* \w up|strong="H5375"\w* \w and|strong="H1121"\w* \w fled|strong="H5127"\w*. \w As|strong="H1961"\w* she \w hurried|strong="H2648"\w* \w to|strong="H1961"\w* \w flee|strong="H5127"\w*, \w he|strong="H2568"\w* \w fell|strong="H5307"\w* \w and|strong="H1121"\w* \w became|strong="H1961"\w* \w lame|strong="H5223"\w*. \w His|strong="H5375"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Mephibosheth|strong="H4648"\w*. +\p +\v 5 \w The|strong="H3117"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Rimmon|strong="H7417"\w* \w the|strong="H3117"\w* Beerothite, \w Rechab|strong="H7394"\w* \w and|strong="H1121"\w* \w Baanah|strong="H1196"\w*, \w went|strong="H3212"\w* \w out|strong="H3212"\w* \w and|strong="H1121"\w* \w came|strong="H3212"\w* \w at|strong="H1004"\w* \w about|strong="H3117"\w* \w the|strong="H3117"\w* \w heat|strong="H2527"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w to|strong="H3212"\w* \w the|strong="H3117"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* Ishbosheth \w as|strong="H3117"\w* \w he|strong="H1931"\w* took \w his|strong="H3117"\w* \w rest|strong="H7901"\w* \w at|strong="H1004"\w* \w noon|strong="H6672"\w*. +\v 6 \w They|strong="H2007"\w* came \w there|strong="H5704"\w* \w into|strong="H8432"\w* \w the|strong="H3947"\w* \w middle|strong="H8432"\w* \w of|strong="H1004"\w* \w the|strong="H3947"\w* \w house|strong="H1004"\w* \w as|strong="H5704"\w* though \w they|strong="H2007"\w* would \w have|strong="H7394"\w* \w fetched|strong="H3947"\w* \w wheat|strong="H2406"\w*, \w and|strong="H1004"\w* \w they|strong="H2007"\w* \w struck|strong="H5221"\w* \w him|strong="H5221"\w* \w in|strong="H1004"\w* \w the|strong="H3947"\w* body; \w and|strong="H1004"\w* \w Rechab|strong="H7394"\w* \w and|strong="H1004"\w* \w Baanah|strong="H1196"\w* \w his|strong="H3947"\w* brother \w escaped|strong="H4422"\w*. +\v 7 \w Now|strong="H3947"\w* \w when|strong="H7901"\w* \w they|strong="H5921"\w* \w came|strong="H3212"\w* \w into|strong="H3212"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w as|strong="H1004"\w* \w he|strong="H1931"\w* \w lay|strong="H7901"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w bed|strong="H4904"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w bedroom|strong="H2315"\w*, \w they|strong="H5921"\w* \w struck|strong="H5221"\w* \w him|strong="H5921"\w*, \w killed|strong="H5221"\w* \w him|strong="H5921"\w*, \w beheaded|strong="H5493"\w* \w him|strong="H5921"\w*, \w and|strong="H3212"\w* \w took|strong="H3947"\w* \w his|strong="H3605"\w* \w head|strong="H7218"\w*, \w and|strong="H3212"\w* \w went|strong="H3212"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w Arabah|strong="H6160"\w* \w all|strong="H3605"\w* \w night|strong="H3915"\w*. +\v 8 \w They|strong="H3117"\w* \w brought|strong="H5414"\w* \w the|strong="H5414"\w* \w head|strong="H7218"\w* \w of|strong="H1121"\w* Ishbosheth \w to|strong="H3068"\w* \w David|strong="H1732"\w* \w to|strong="H3068"\w* \w Hebron|strong="H2275"\w*, \w and|strong="H1121"\w* said \w to|strong="H3068"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w*, “\w Behold|strong="H2009"\w*, \w the|strong="H5414"\w* \w head|strong="H7218"\w* \w of|strong="H1121"\w* Ishbosheth, \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w*, \w your|strong="H3068"\w* enemy, \w who|strong="H3068"\w* \w sought|strong="H1245"\w* \w your|strong="H3068"\w* \w life|strong="H5315"\w*! \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w avenged|strong="H5360"\w* \w my|strong="H5414"\w* \w lord|strong="H3068"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w today|strong="H3117"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w his|strong="H5414"\w* \w offspring|strong="H2233"\w*.\f + \fr 4:8 \ft or, seed\f*” +\p +\v 9 \w David|strong="H1732"\w* \w answered|strong="H6030"\w* \w Rechab|strong="H7394"\w* \w and|strong="H1121"\w* \w Baanah|strong="H1196"\w* \w his|strong="H3605"\w* brother, \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Rimmon|strong="H7417"\w* \w the|strong="H3605"\w* Beerothite, \w and|strong="H1121"\w* \w said|strong="H6030"\w* \w to|strong="H3068"\w* \w them|strong="H6030"\w*, “\w As|strong="H5315"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H5315"\w*, \w who|strong="H3605"\w* \w has|strong="H3068"\w* \w redeemed|strong="H6299"\w* \w my|strong="H3605"\w* \w soul|strong="H5315"\w* \w out|strong="H3605"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w adversity|strong="H6869"\w*, +\v 10 \w when|strong="H3588"\w* \w someone|strong="H5414"\w* \w told|strong="H5046"\w* \w me|strong="H5414"\w*, ‘\w Behold|strong="H2009"\w*, \w Saul|strong="H7586"\w* \w is|strong="H1931"\w* \w dead|strong="H4191"\w*,’ thinking \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w brought|strong="H5414"\w* \w good|strong="H1319"\w* \w news|strong="H1319"\w*, \w I|strong="H3588"\w* seized \w him|strong="H5414"\w* \w and|strong="H5869"\w* \w killed|strong="H2026"\w* \w him|strong="H5414"\w* \w in|strong="H4191"\w* \w Ziklag|strong="H6860"\w*, \w which|strong="H1931"\w* \w was|strong="H1961"\w* \w the|strong="H3588"\w* \w reward|strong="H1309"\w* \w I|strong="H3588"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w for|strong="H3588"\w* \w his|strong="H5414"\w* \w news|strong="H1319"\w*. +\v 11 \w How|strong="H3588"\w* \w much|strong="H3027"\w* \w more|strong="H4480"\w*, \w when|strong="H3588"\w* \w wicked|strong="H7563"\w* \w men|strong="H7563"\w* \w have|strong="H3027"\w* \w slain|strong="H2026"\w* \w a|strong="H3068"\w* \w righteous|strong="H6662"\w* \w person|strong="H1245"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w own|strong="H3027"\w* \w house|strong="H1004"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w bed|strong="H4904"\w*, \w should|strong="H3588"\w* \w I|strong="H3588"\w* \w not|strong="H3808"\w* \w now|strong="H6258"\w* \w require|strong="H1245"\w* \w his|strong="H5921"\w* \w blood|strong="H1818"\w* \w from|strong="H4480"\w* \w your|strong="H5921"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* rid \w the|strong="H5921"\w* earth \w of|strong="H1004"\w* \w you|strong="H3588"\w*?” +\v 12 \w David|strong="H1732"\w* \w commanded|strong="H6680"\w* \w his|strong="H3947"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w*, \w and|strong="H3027"\w* \w they|strong="H5921"\w* \w killed|strong="H2026"\w* \w them|strong="H5921"\w*, \w cut|strong="H7112"\w* \w off|strong="H7112"\w* \w their|strong="H3947"\w* \w hands|strong="H3027"\w* \w and|strong="H3027"\w* \w their|strong="H3947"\w* \w feet|strong="H7272"\w*, \w and|strong="H3027"\w* \w hanged|strong="H8518"\w* \w them|strong="H5921"\w* \w up|strong="H5921"\w* \w beside|strong="H5921"\w* \w the|strong="H5921"\w* \w pool|strong="H1295"\w* \w in|strong="H5921"\w* \w Hebron|strong="H2275"\w*. \w But|strong="H3947"\w* \w they|strong="H5921"\w* \w took|strong="H3947"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H3027"\w* Ishbosheth \w and|strong="H3027"\w* \w buried|strong="H6912"\w* \w it|strong="H5921"\w* \w in|strong="H5921"\w* Abner’s \w grave|strong="H6913"\w* \w in|strong="H5921"\w* \w Hebron|strong="H2275"\w*. +\c 5 +\p +\v 1 \w Then|strong="H1732"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H7626"\w* \w Israel|strong="H3478"\w* \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w David|strong="H1732"\w* \w at|strong="H3478"\w* \w Hebron|strong="H2275"\w* \w and|strong="H3478"\w* spoke, saying, “\w Behold|strong="H2005"\w*, \w we|strong="H3068"\w* \w are|strong="H6106"\w* \w your|strong="H3605"\w* \w bone|strong="H6106"\w* \w and|strong="H3478"\w* \w your|strong="H3605"\w* \w flesh|strong="H1320"\w*. +\v 2 \w In|strong="H5921"\w* \w times|strong="H1571"\w* \w past|strong="H8032"\w*, \w when|strong="H1961"\w* \w Saul|strong="H7586"\w* \w was|strong="H3068"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w us|strong="H5921"\w*, \w it|strong="H5921"\w* \w was|strong="H3068"\w* \w you|strong="H5921"\w* \w who|strong="H5971"\w* \w led|strong="H3318"\w* \w Israel|strong="H3478"\w* \w out|strong="H3318"\w* \w and|strong="H3478"\w* \w in|strong="H5921"\w*. \w Yahweh|strong="H3068"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w you|strong="H5921"\w*, ‘\w You|strong="H5921"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w shepherd|strong="H7462"\w* \w of|strong="H4428"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w you|strong="H5921"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w prince|strong="H5057"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*.’” +\v 3 \w So|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w to|strong="H3478"\w* \w Hebron|strong="H2275"\w*, \w and|strong="H3478"\w* \w King|strong="H4428"\w* \w David|strong="H1732"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H3068"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w Hebron|strong="H2275"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H3478"\w* \w they|strong="H3068"\w* \w anointed|strong="H4886"\w* \w David|strong="H1732"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*. +\p +\v 4 \w David|strong="H1732"\w* \w was|strong="H1732"\w* \w thirty|strong="H7970"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H1732"\w* began \w to|strong="H1121"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H1732"\w* \w reigned|strong="H4427"\w* forty \w years|strong="H8141"\w*. +\v 5 \w In|strong="H8141"\w* \w Hebron|strong="H2275"\w* \w he|strong="H3605"\w* \w reigned|strong="H4427"\w* \w over|strong="H5921"\w* \w Judah|strong="H3063"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w* \w and|strong="H3063"\w* \w six|strong="H8337"\w* \w months|strong="H2320"\w*, \w and|strong="H3063"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w* \w he|strong="H3605"\w* \w reigned|strong="H4427"\w* \w thirty-three|strong="H7970"\w* \w years|strong="H8141"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w Judah|strong="H3063"\w*. +\p +\v 6 \w The|strong="H3588"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w his|strong="H1732"\w* \w men|strong="H5787"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Jerusalem|strong="H3389"\w* \w against|strong="H3212"\w* \w the|strong="H3588"\w* \w Jebusites|strong="H2983"\w*, \w the|strong="H3588"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* land, \w who|strong="H3427"\w* spoke \w to|strong="H3212"\w* \w David|strong="H1732"\w*, saying, “\w The|strong="H3588"\w* \w blind|strong="H5787"\w* \w and|strong="H4428"\w* \w the|strong="H3588"\w* \w lame|strong="H6452"\w* \w will|strong="H4428"\w* \w keep|strong="H3427"\w* \w you|strong="H3588"\w* \w out|strong="H3212"\w* \w of|strong="H4428"\w* \w here|strong="H2008"\w*,” thinking, “\w David|strong="H1732"\w* \w can|strong="H3808"\w*’t \w come|strong="H3212"\w* \w in|strong="H3427"\w* \w here|strong="H2008"\w*.” +\v 7 Nevertheless \w David|strong="H1732"\w* \w took|strong="H3920"\w* \w the|strong="H3920"\w* \w stronghold|strong="H4686"\w* \w of|strong="H5892"\w* \w Zion|strong="H6726"\w*. \w This|strong="H1931"\w* \w is|strong="H1931"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*. +\v 8 \w David|strong="H1732"\w* \w said|strong="H3651"\w* \w on|strong="H5921"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w*, “\w Whoever|strong="H3605"\w* \w strikes|strong="H5221"\w* \w the|strong="H3605"\w* \w Jebusites|strong="H2983"\w*, \w let|strong="H3808"\w* \w him|strong="H5921"\w* \w go|strong="H1732"\w* \w up|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H3605"\w* watercourse \w and|strong="H3117"\w* \w strike|strong="H5221"\w* \w those|strong="H3605"\w* \w lame|strong="H6455"\w* \w and|strong="H3117"\w* \w blind|strong="H5787"\w*, \w who|strong="H3605"\w* \w are|strong="H3117"\w* \w hated|strong="H8130"\w* \w by|strong="H5921"\w* \w David|strong="H1732"\w*’s \w soul|strong="H5315"\w*.” \w Therefore|strong="H3651"\w* \w they|strong="H3117"\w* say, “\w The|strong="H3605"\w* \w blind|strong="H5787"\w* \w and|strong="H3117"\w* \w the|strong="H3605"\w* \w lame|strong="H6455"\w* \w can|strong="H3808"\w*’t \w come|strong="H5060"\w* \w into|strong="H5921"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*.” +\p +\v 9 \w David|strong="H1732"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H4480"\w* \w stronghold|strong="H4686"\w*, \w and|strong="H1004"\w* \w called|strong="H7121"\w* \w it|strong="H7121"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*. \w David|strong="H1732"\w* \w built|strong="H1129"\w* \w around|strong="H5439"\w* \w from|strong="H4480"\w* \w Millo|strong="H4407"\w* \w and|strong="H1004"\w* \w inward|strong="H1004"\w*. +\v 10 \w David|strong="H1732"\w* \w grew|strong="H1980"\w* \w greater|strong="H1419"\w* \w and|strong="H1980"\w* \w greater|strong="H1419"\w*, \w for|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w was|strong="H3068"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*. +\v 11 \w Hiram|strong="H2438"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Tyre|strong="H6865"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H7971"\w* \w David|strong="H1732"\w*, \w with|strong="H1004"\w* cedar \w trees|strong="H6086"\w*, \w carpenters|strong="H2796"\w*, \w and|strong="H7971"\w* \w masons|strong="H7023"\w*; \w and|strong="H7971"\w* \w they|strong="H4428"\w* \w built|strong="H1129"\w* \w David|strong="H1732"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w*. +\v 12 \w David|strong="H1732"\w* \w perceived|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w established|strong="H3559"\w* \w him|strong="H5921"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H3068"\w* \w exalted|strong="H5375"\w* \w his|strong="H5375"\w* \w kingdom|strong="H4467"\w* \w for|strong="H3588"\w* \w his|strong="H5375"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*’s \w sake|strong="H5668"\w*. +\p +\v 13 \w David|strong="H1732"\w* \w took|strong="H3947"\w* \w more|strong="H5750"\w* \w concubines|strong="H6370"\w* \w and|strong="H1121"\w* wives \w for|strong="H1121"\w* himself \w out|strong="H3947"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*, after \w he|strong="H1732"\w* \w had|strong="H1732"\w* \w come|strong="H3205"\w* \w from|strong="H1121"\w* \w Hebron|strong="H2275"\w*; \w and|strong="H1121"\w* \w more|strong="H5750"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w daughters|strong="H1323"\w* \w were|strong="H1121"\w* \w born|strong="H3205"\w* \w to|strong="H3389"\w* \w David|strong="H1732"\w*. +\v 14 These \w are|strong="H8034"\w* \w the|strong="H5416"\w* \w names|strong="H8034"\w* \w of|strong="H8034"\w* those \w who|strong="H3389"\w* \w were|strong="H3389"\w* \w born|strong="H3209"\w* \w to|strong="H3389"\w* \w him|strong="H8010"\w* \w in|strong="H8034"\w* \w Jerusalem|strong="H3389"\w*: \w Shammua|strong="H8051"\w*, \w Shobab|strong="H7727"\w*, \w Nathan|strong="H5416"\w*, \w Solomon|strong="H8010"\w*, +\v 15 \w Ibhar|strong="H2984"\w*, Elishua, \w Nepheg|strong="H5298"\w*, \w Japhia|strong="H3309"\w*, +\v 16 Elishama, Eliada, and Eliphelet. +\p +\v 17 \w When|strong="H3588"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3478"\w* \w anointed|strong="H4886"\w* \w David|strong="H1732"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3381"\w* \w seek|strong="H1245"\w* \w David|strong="H1732"\w*, \w but|strong="H3588"\w* \w David|strong="H1732"\w* \w heard|strong="H8085"\w* \w about|strong="H5921"\w* \w it|strong="H5921"\w* \w and|strong="H3478"\w* \w went|strong="H5927"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3605"\w* \w stronghold|strong="H4686"\w*. +\v 18 Now \w the|strong="H5203"\w* \w Philistines|strong="H6430"\w* \w had|strong="H6430"\w* come \w and|strong="H6430"\w* \w spread|strong="H5203"\w* themselves \w in|strong="H6430"\w* \w the|strong="H5203"\w* \w valley|strong="H6010"\w* \w of|strong="H6010"\w* \w Rephaim|strong="H7497"\w*. +\v 19 \w David|strong="H1732"\w* \w inquired|strong="H7592"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, saying, “\w Shall|strong="H3068"\w* \w I|strong="H3588"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5927"\w* \w the|strong="H3588"\w* \w Philistines|strong="H6430"\w*? \w Will|strong="H3068"\w* \w you|strong="H3588"\w* \w deliver|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H5927"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w*?” +\p \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w David|strong="H1732"\w*, “\w Go|strong="H5927"\w* \w up|strong="H5927"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w certainly|strong="H3588"\w* \w deliver|strong="H5414"\w* \w the|strong="H3588"\w* \w Philistines|strong="H6430"\w* \w into|strong="H5927"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*.” +\p +\v 20 \w David|strong="H1732"\w* \w came|strong="H3068"\w* \w to|strong="H3068"\w* Baal Perazim, \w and|strong="H3068"\w* \w David|strong="H1732"\w* \w struck|strong="H5221"\w* \w them|strong="H5921"\w* \w there|strong="H8033"\w*. \w Then|strong="H3651"\w* \w he|strong="H1931"\w* \w said|strong="H7121"\w*, “\w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w broken|strong="H6555"\w* \w my|strong="H3068"\w* enemies \w before|strong="H6440"\w* \w me|strong="H6440"\w*, \w like|strong="H3651"\w* \w the|strong="H6440"\w* \w breach|strong="H6556"\w* \w of|strong="H3068"\w* \w waters|strong="H4325"\w*.” \w Therefore|strong="H3651"\w* \w he|strong="H1931"\w* \w called|strong="H7121"\w* \w the|strong="H6440"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w that|strong="H1931"\w* \w place|strong="H4725"\w* Baal Perazim.\f + \fr 5:20 \ft “Baal Perazim” means “Lord who breaks out”.\f* +\v 21 \w They|strong="H8033"\w* \w left|strong="H5800"\w* \w their|strong="H5375"\w* \w images|strong="H6091"\w* \w there|strong="H8033"\w*, \w and|strong="H1732"\w* \w David|strong="H1732"\w* \w and|strong="H1732"\w* \w his|strong="H5375"\w* men \w took|strong="H5375"\w* \w them|strong="H5375"\w* \w away|strong="H5375"\w*. +\p +\v 22 \w The|strong="H5927"\w* \w Philistines|strong="H6430"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w yet|strong="H5750"\w* \w again|strong="H5750"\w* \w and|strong="H5927"\w* \w spread|strong="H5203"\w* themselves \w in|strong="H5750"\w* \w the|strong="H5927"\w* \w valley|strong="H6010"\w* \w of|strong="H6010"\w* \w Rephaim|strong="H7497"\w*. +\v 23 \w When|strong="H3068"\w* \w David|strong="H1732"\w* \w inquired|strong="H7592"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w he|strong="H3068"\w* said, “\w You|strong="H3808"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w*. \w Circle|strong="H5437"\w* \w around|strong="H5437"\w* behind \w them|strong="H5927"\w*, \w and|strong="H3068"\w* \w attack|strong="H5927"\w* \w them|strong="H5927"\w* \w in|strong="H3068"\w* \w front|strong="H4136"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* mulberry \w trees|strong="H1057"\w*. +\v 24 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w hear|strong="H8085"\w* \w the|strong="H6440"\w* \w sound|strong="H6963"\w* \w of|strong="H3068"\w* \w marching|strong="H6807"\w* \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w tops|strong="H7218"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* mulberry \w trees|strong="H1057"\w*, \w then|strong="H1961"\w* stir yourself \w up|strong="H3318"\w*; \w for|strong="H3588"\w* \w then|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w* \w to|strong="H3318"\w* \w strike|strong="H5221"\w* \w the|strong="H6440"\w* \w army|strong="H4264"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w*.” +\p +\v 25 \w David|strong="H1732"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*, \w as|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w him|strong="H5221"\w*, \w and|strong="H3068"\w* \w struck|strong="H5221"\w* \w the|strong="H5221"\w* \w Philistines|strong="H6430"\w* \w all|strong="H5704"\w* \w the|strong="H5221"\w* \w way|strong="H3651"\w* \w from|strong="H5704"\w* \w Geba|strong="H1387"\w* \w to|strong="H5704"\w* \w Gezer|strong="H1507"\w*. +\c 6 +\p +\v 1 \w David|strong="H1732"\w* \w again|strong="H5750"\w* \w gathered|strong="H1732"\w* together \w all|strong="H3605"\w* \w the|strong="H3605"\w* chosen \w men|strong="H3605"\w* \w of|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w thirty|strong="H7970"\w* thousand. +\v 2 \w David|strong="H1732"\w* \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w with|strong="H3068"\w* \w him|strong="H7121"\w* \w from|strong="H5921"\w* Baale \w Judah|strong="H1184"\w*, \w to|strong="H3068"\w* \w bring|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5921"\w* \w there|strong="H8033"\w* \w God|strong="H3068"\w*’s ark, \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w called|strong="H7121"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w Name|strong="H8034"\w*, \w even|strong="H3068"\w* \w the|strong="H3605"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w who|strong="H3605"\w* \w sits|strong="H3427"\w* \w above|strong="H5921"\w* \w the|strong="H3605"\w* \w cherubim|strong="H3742"\w*. +\v 3 \w They|strong="H5375"\w* \w set|strong="H5375"\w* God’s ark \w on|strong="H7392"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w cart|strong="H5699"\w*, \w and|strong="H1121"\w* \w brought|strong="H5375"\w* \w it|strong="H5375"\w* out \w of|strong="H1121"\w* Abinadab’s \w house|strong="H1004"\w* \w that|strong="H1121"\w* \w was|strong="H1004"\w* \w on|strong="H7392"\w* \w the|strong="H5375"\w* \w hill|strong="H1389"\w*; \w and|strong="H1121"\w* \w Uzzah|strong="H5798"\w* \w and|strong="H1121"\w* Ahio, \w the|strong="H5375"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Abinadab, \w drove|strong="H5090"\w* \w the|strong="H5375"\w* \w new|strong="H2319"\w* \w cart|strong="H5699"\w*. +\v 4 \w They|strong="H5375"\w* \w brought|strong="H5375"\w* \w it|strong="H5375"\w* \w out|strong="H1980"\w* \w of|strong="H1004"\w* Abinadab’s \w house|strong="H1004"\w* \w which|strong="H1004"\w* \w was|strong="H1004"\w* \w in|strong="H1980"\w* \w the|strong="H6440"\w* \w hill|strong="H1389"\w*, \w with|strong="H5973"\w* God’s ark; \w and|strong="H1980"\w* Ahio \w went|strong="H1980"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* ark. +\v 5 \w David|strong="H1732"\w* \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w played|strong="H7832"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H1004"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H1004"\w* instruments \w made|strong="H1732"\w* \w of|strong="H1004"\w* \w cypress|strong="H1265"\w* \w wood|strong="H6086"\w*, \w with|strong="H1004"\w* \w harps|strong="H3658"\w*, \w with|strong="H1004"\w* stringed instruments, \w with|strong="H1004"\w* \w tambourines|strong="H8596"\w*, \w with|strong="H1004"\w* \w castanets|strong="H4517"\w*, \w and|strong="H3478"\w* \w with|strong="H1004"\w* \w cymbals|strong="H6767"\w*. +\p +\v 6 \w When|strong="H3588"\w* \w they|strong="H3588"\w* came \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w* \w of|strong="H1637"\w* \w Nacon|strong="H5225"\w*, \w Uzzah|strong="H5798"\w* \w reached|strong="H7971"\w* \w for|strong="H3588"\w* \w God|strong="H7971"\w*’s ark \w and|strong="H7971"\w* took hold \w of|strong="H1637"\w* \w it|strong="H3588"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w cattle|strong="H1241"\w* \w stumbled|strong="H8058"\w*. +\v 7 \w Yahweh|strong="H3068"\w*’s anger \w burned|strong="H2734"\w* \w against|strong="H5921"\w* \w Uzzah|strong="H5798"\w*, \w and|strong="H3068"\w* \w God|strong="H3068"\w* \w struck|strong="H5221"\w* \w him|strong="H5921"\w* \w there|strong="H8033"\w* \w for|strong="H5921"\w* \w his|strong="H3068"\w* \w error|strong="H7944"\w*; \w and|strong="H3068"\w* \w he|strong="H8033"\w* \w died|strong="H4191"\w* \w there|strong="H8033"\w* \w by|strong="H5921"\w* \w God|strong="H3068"\w*’s ark. +\v 8 \w David|strong="H1732"\w* \w was|strong="H3068"\w* \w displeased|strong="H2734"\w* \w because|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w broken|strong="H6555"\w* \w out|strong="H5921"\w* \w against|strong="H5921"\w* \w Uzzah|strong="H5798"\w*; \w and|strong="H3068"\w* \w he|strong="H1931"\w* \w called|strong="H7121"\w* \w that|strong="H3117"\w* \w place|strong="H4725"\w* Perez \w Uzzah|strong="H5798"\w*\f + \fr 6:8 \ft “Perez Uzzah” means “outbreak against Uzzah”.\f* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 9 \w David|strong="H1732"\w* \w was|strong="H3068"\w* \w afraid|strong="H3372"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*; \w and|strong="H3068"\w* \w he|strong="H1931"\w* said, “How could \w Yahweh|strong="H3068"\w*’s ark come \w to|strong="H3068"\w* \w me|strong="H3372"\w*?” +\v 10 \w So|strong="H3808"\w* \w David|strong="H1732"\w* \w would|strong="H3068"\w* \w not|strong="H3808"\w* \w move|strong="H5493"\w* \w Yahweh|strong="H3068"\w*’s ark \w to|strong="H3068"\w* \w be|strong="H3808"\w* \w with|strong="H1004"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*; \w but|strong="H3808"\w* \w David|strong="H1732"\w* \w carried|strong="H3068"\w* \w it|strong="H5921"\w* \w aside|strong="H5493"\w* \w into|strong="H5921"\w* \w Obed-Edom|strong="H5654"\w* \w the|strong="H5921"\w* \w Gittite|strong="H1663"\w*’s \w house|strong="H1004"\w*. +\v 11 \w Yahweh|strong="H3068"\w*’s ark \w remained|strong="H3427"\w* \w in|strong="H3427"\w* \w Obed-Edom|strong="H5654"\w* \w the|strong="H3605"\w* \w Gittite|strong="H1663"\w*’s \w house|strong="H1004"\w* \w three|strong="H7969"\w* \w months|strong="H2320"\w*; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w blessed|strong="H1288"\w* \w Obed-Edom|strong="H5654"\w* \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*. +\v 12 \w King|strong="H4428"\w* \w David|strong="H1732"\w* \w was|strong="H3068"\w* \w told|strong="H5046"\w*, “\w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w blessed|strong="H1288"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w Obed-Edom|strong="H5654"\w*, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* belongs \w to|strong="H3068"\w* \w him|strong="H5046"\w*, \w because|strong="H5668"\w* \w of|strong="H4428"\w* \w God|strong="H3068"\w*’s ark.” +\p \w So|strong="H5927"\w* \w David|strong="H1732"\w* \w went|strong="H3212"\w* \w and|strong="H3068"\w* \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w God|strong="H3068"\w*’s ark \w from|strong="H5927"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w Obed-Edom|strong="H5654"\w* \w into|strong="H5927"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w* \w with|strong="H1004"\w* \w joy|strong="H8057"\w*. +\v 13 \w When|strong="H3588"\w* \w those|strong="H5375"\w* \w who|strong="H3068"\w* \w bore|strong="H5375"\w* \w Yahweh|strong="H3068"\w*’s ark \w had|strong="H3068"\w* \w gone|strong="H6805"\w* \w six|strong="H8337"\w* \w paces|strong="H6806"\w*, \w he|strong="H3588"\w* \w sacrificed|strong="H2076"\w* \w an|strong="H1961"\w* \w ox|strong="H7794"\w* \w and|strong="H3068"\w* \w a|strong="H3068"\w* fattened calf. +\v 14 \w David|strong="H1732"\w* \w danced|strong="H3769"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w might|strong="H5797"\w*; \w and|strong="H3068"\w* \w David|strong="H1732"\w* \w was|strong="H3068"\w* \w clothed|strong="H2296"\w* \w in|strong="H3068"\w* \w a|strong="H3068"\w* linen ephod. +\v 15 \w So|strong="H5927"\w* \w David|strong="H1732"\w* \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w Yahweh|strong="H3068"\w*’s ark \w with|strong="H1004"\w* \w shouting|strong="H8643"\w* \w and|strong="H3478"\w* \w with|strong="H1004"\w* \w the|strong="H3605"\w* \w sound|strong="H6963"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w trumpet|strong="H7782"\w*. +\p +\v 16 \w As|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s ark \w came|strong="H1961"\w* \w into|strong="H1323"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*, \w Michal|strong="H4324"\w* \w the|strong="H6440"\w* \w daughter|strong="H1323"\w* \w of|strong="H4428"\w* \w Saul|strong="H7586"\w* \w looked|strong="H7200"\w* \w out|strong="H8259"\w* \w through|strong="H1157"\w* \w the|strong="H6440"\w* \w window|strong="H2474"\w* \w and|strong="H3068"\w* \w saw|strong="H7200"\w* \w King|strong="H4428"\w* \w David|strong="H1732"\w* \w leaping|strong="H6339"\w* \w and|strong="H3068"\w* \w dancing|strong="H3769"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H3068"\w* \w she|strong="H3820"\w* despised \w him|strong="H6440"\w* \w in|strong="H3068"\w* \w her|strong="H7200"\w* \w heart|strong="H3820"\w*. +\v 17 \w They|strong="H3068"\w* \w brought|strong="H5927"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s ark, \w and|strong="H3068"\w* \w set|strong="H3322"\w* \w it|strong="H8432"\w* \w in|strong="H3068"\w* \w its|strong="H5927"\w* \w place|strong="H4725"\w* \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* tent \w that|strong="H3068"\w* \w David|strong="H1732"\w* \w had|strong="H3068"\w* \w pitched|strong="H5186"\w* \w for|strong="H6440"\w* \w it|strong="H8432"\w*; \w and|strong="H3068"\w* \w David|strong="H1732"\w* \w offered|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w* \w and|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 18 \w When|strong="H3615"\w* \w David|strong="H1732"\w* \w had|strong="H3068"\w* \w finished|strong="H3615"\w* \w offering|strong="H5930"\w* \w the|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w he|strong="H3068"\w* \w blessed|strong="H1288"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\v 19 \w He|strong="H5704"\w* gave \w to|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w even|strong="H5704"\w* \w among|strong="H5971"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w multitude|strong="H1995"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w both|strong="H3605"\w* \w to|strong="H5704"\w* \w men|strong="H5971"\w* \w and|strong="H3478"\w* women, \w to|strong="H5704"\w* \w everyone|strong="H3605"\w* \w a|strong="H3068"\w* \w portion|strong="H2505"\w* \w of|strong="H1004"\w* \w bread|strong="H3899"\w*, dates, \w and|strong="H3478"\w* raisins. \w So|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w departed|strong="H3212"\w*, \w each|strong="H3605"\w* \w to|strong="H5704"\w* \w his|strong="H3605"\w* \w own|strong="H5971"\w* \w house|strong="H1004"\w*. +\p +\v 20 \w Then|strong="H3318"\w* \w David|strong="H1732"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w bless|strong="H1288"\w* \w his|strong="H1732"\w* \w household|strong="H1004"\w*. \w Michal|strong="H4324"\w* \w the|strong="H7725"\w* \w daughter|strong="H1323"\w* \w of|strong="H4428"\w* \w Saul|strong="H7586"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H7725"\w* \w meet|strong="H7125"\w* \w David|strong="H1732"\w*, \w and|strong="H3478"\w* \w said|strong="H3318"\w*, “\w How|strong="H4100"\w* \w glorious|strong="H3513"\w* \w the|strong="H7725"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w was|strong="H1732"\w* \w today|strong="H3117"\w*, \w who|strong="H5650"\w* \w uncovered|strong="H1540"\w* \w himself|strong="H1540"\w* \w today|strong="H3117"\w* \w in|strong="H3478"\w* \w the|strong="H7725"\w* \w eyes|strong="H5869"\w* \w of|strong="H4428"\w* \w his|strong="H1732"\w* \w servants|strong="H5650"\w*’ maids, \w as|strong="H3117"\w* \w one|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H7725"\w* \w vain|strong="H7386"\w* \w fellows|strong="H7386"\w* \w shamelessly|strong="H1540"\w* \w uncovers|strong="H1540"\w* \w himself|strong="H1540"\w*!” +\p +\v 21 \w David|strong="H1732"\w* said \w to|strong="H3478"\w* \w Michal|strong="H4324"\w*, “\w It|strong="H5921"\w* \w was|strong="H3068"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H3605"\w* chose \w me|strong="H6440"\w* \w above|strong="H5921"\w* \w your|strong="H3068"\w* father, \w and|strong="H3478"\w* \w above|strong="H5921"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*, \w to|strong="H3478"\w* \w appoint|strong="H6680"\w* \w me|strong="H6440"\w* \w prince|strong="H5057"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*, \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*. \w Therefore|strong="H5921"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w celebrate|strong="H7832"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 22 \w I|strong="H5869"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w yet|strong="H5750"\w* \w more|strong="H5750"\w* undignified \w than|strong="H7043"\w* \w this|strong="H2063"\w*, \w and|strong="H5869"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* worthless \w in|strong="H5750"\w* \w my|strong="H1961"\w* \w own|strong="H1961"\w* \w sight|strong="H5869"\w*. \w But|strong="H1961"\w* \w the|strong="H1961"\w* maids \w of|strong="H5869"\w* \w whom|strong="H5869"\w* \w you|strong="H5973"\w* \w have|strong="H1961"\w* spoken \w will|strong="H1961"\w* \w honor|strong="H3513"\w* \w me|strong="H5973"\w*.” +\p +\v 23 \w Michal|strong="H4324"\w* \w the|strong="H3117"\w* \w daughter|strong="H1323"\w* \w of|strong="H3117"\w* \w Saul|strong="H7586"\w* \w had|strong="H1961"\w* \w no|strong="H3808"\w* \w child|strong="H3206"\w* \w to|strong="H5704"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w her|strong="H1961"\w* \w death|strong="H4194"\w*. +\c 7 +\p +\v 1 \w When|strong="H3588"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w given|strong="H5117"\w* \w him|strong="H5117"\w* \w rest|strong="H5117"\w* \w from|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* enemies \w all|strong="H3605"\w* \w around|strong="H5439"\w*, +\v 2 \w the|strong="H7200"\w* \w king|strong="H4428"\w* said \w to|strong="H4428"\w* \w Nathan|strong="H5416"\w* \w the|strong="H7200"\w* \w prophet|strong="H5030"\w*, “\w See|strong="H7200"\w* \w now|strong="H4994"\w*, \w I|strong="H7200"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* cedar, \w but|strong="H7200"\w* God’s ark \w dwells|strong="H3427"\w* \w within|strong="H8432"\w* \w curtains|strong="H3407"\w*.” +\p +\v 3 \w Nathan|strong="H5416"\w* said \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, “\w Go|strong="H3212"\w*, \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*.” +\p +\v 4 \w That|strong="H1931"\w* \w same|strong="H1931"\w* \w night|strong="H3915"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Nathan|strong="H5416"\w*, \w saying|strong="H1697"\w*, +\v 5 “\w Go|strong="H3212"\w* \w and|strong="H3068"\w* tell \w my|strong="H3068"\w* \w servant|strong="H5650"\w* \w David|strong="H1732"\w*, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w Should|strong="H3068"\w* \w you|strong="H3212"\w* \w build|strong="H1129"\w* \w me|strong="H5650"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w for|strong="H3068"\w* \w me|strong="H5650"\w* \w to|strong="H3212"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w*? +\v 6 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w since|strong="H3588"\w* \w the|strong="H3588"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w brought|strong="H5927"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w up|strong="H5927"\w* \w out|strong="H1980"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, \w but|strong="H3588"\w* \w have|strong="H1961"\w* \w moved|strong="H1980"\w* \w around|strong="H1980"\w* \w in|strong="H3427"\w* \w a|strong="H3068"\w* tent \w and|strong="H1121"\w* \w in|strong="H3427"\w* \w a|strong="H3068"\w* \w tabernacle|strong="H4908"\w*. +\v 7 \w In|strong="H1980"\w* \w all|strong="H3605"\w* \w places|strong="H1004"\w* \w in|strong="H1980"\w* \w which|strong="H1697"\w* \w I|strong="H1697"\w* \w have|strong="H5971"\w* \w walked|strong="H1980"\w* \w with|strong="H1980"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w did|strong="H4100"\w* \w I|strong="H1697"\w* \w say|strong="H1696"\w* \w a|strong="H3068"\w* \w word|strong="H1697"\w* \w to|strong="H1696"\w* \w anyone|strong="H3605"\w* \w from|strong="H3478"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w whom|strong="H5971"\w* \w I|strong="H1697"\w* \w commanded|strong="H6680"\w* \w to|strong="H1696"\w* \w be|strong="H3808"\w* \w shepherd|strong="H7462"\w* \w of|strong="H1121"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w saying|strong="H1697"\w*, ‘\w Why|strong="H4100"\w* \w have|strong="H5971"\w* \w you|strong="H6680"\w* \w not|strong="H3808"\w* \w built|strong="H1129"\w* \w me|strong="H1696"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* cedar?’”’ +\v 8 \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* tell \w my|strong="H3068"\w* \w servant|strong="H5650"\w* \w David|strong="H1732"\w* \w this|strong="H3541"\w*: ‘\w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*, “\w I|strong="H3541"\w* \w took|strong="H3947"\w* \w you|strong="H5921"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* \w sheep|strong="H6629"\w* pen, \w from|strong="H4480"\w* following \w the|strong="H5921"\w* \w sheep|strong="H6629"\w*, \w to|strong="H3478"\w* \w be|strong="H1961"\w* \w prince|strong="H5057"\w* \w over|strong="H5921"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w*, \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*. +\v 9 \w I|strong="H1980"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H6440"\w* \w wherever|strong="H3605"\w* \w you|strong="H6440"\w* \w went|strong="H1980"\w*, \w and|strong="H1980"\w* \w have|strong="H1961"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* enemies \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*. \w I|strong="H1980"\w* \w will|strong="H1961"\w* \w make|strong="H6213"\w* \w you|strong="H6440"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w name|strong="H8034"\w*, \w like|strong="H1961"\w* \w the|strong="H3605"\w* \w name|strong="H8034"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w great|strong="H1419"\w* \w ones|strong="H1419"\w* \w who|strong="H3605"\w* \w are|strong="H6213"\w* \w in|strong="H1980"\w* \w the|strong="H3605"\w* earth. +\v 10 \w I|strong="H7760"\w* \w will|strong="H5971"\w* \w appoint|strong="H7760"\w* \w a|strong="H3068"\w* \w place|strong="H4725"\w* \w for|strong="H8478"\w* \w my|strong="H7760"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w will|strong="H5971"\w* \w plant|strong="H5193"\w* \w them|strong="H7760"\w*, \w that|strong="H5971"\w* \w they|strong="H3808"\w* \w may|strong="H5971"\w* \w dwell|strong="H7931"\w* \w in|strong="H3478"\w* \w their|strong="H7760"\w* \w own|strong="H5971"\w* \w place|strong="H4725"\w* \w and|strong="H1121"\w* \w be|strong="H3808"\w* \w moved|strong="H7264"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w*. \w The|strong="H7760"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w wickedness|strong="H5766"\w* \w will|strong="H5971"\w* \w not|strong="H3808"\w* \w afflict|strong="H6031"\w* \w them|strong="H7760"\w* \w any|strong="H5750"\w* \w more|strong="H3254"\w*, \w as|strong="H5971"\w* \w at|strong="H3478"\w* \w the|strong="H7760"\w* \w first|strong="H7223"\w*, +\v 11 \w and|strong="H3478"\w* \w as|strong="H3117"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w commanded|strong="H6680"\w* \w judges|strong="H8199"\w* \w to|strong="H3478"\w* \w be|strong="H3068"\w* \w over|strong="H5921"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*. \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w cause|strong="H6213"\w* \w you|strong="H3588"\w* \w to|strong="H3478"\w* \w rest|strong="H5117"\w* \w from|strong="H4480"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* enemies. \w Moreover|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w tells|strong="H5046"\w* \w you|strong="H3588"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w make|strong="H6213"\w* \w you|strong="H3588"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w*. +\v 12 \w When|strong="H3588"\w* \w your|strong="H3588"\w* \w days|strong="H3117"\w* \w are|strong="H3117"\w* \w fulfilled|strong="H4390"\w* \w and|strong="H6965"\w* \w you|strong="H3588"\w* \w sleep|strong="H7901"\w* \w with|strong="H4390"\w* \w your|strong="H3588"\w* fathers, \w I|strong="H3588"\w* \w will|strong="H2233"\w* \w set|strong="H6965"\w* \w up|strong="H6965"\w* \w your|strong="H3588"\w* \w offspring|strong="H2233"\w* \w after|strong="H2233"\w* \w you|strong="H3588"\w*, \w who|strong="H3588"\w* \w will|strong="H2233"\w* \w proceed|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3117"\w* \w your|strong="H3588"\w* \w body|strong="H4578"\w*, \w and|strong="H6965"\w* \w I|strong="H3588"\w* \w will|strong="H2233"\w* \w establish|strong="H6965"\w* \w his|strong="H3559"\w* \w kingdom|strong="H4467"\w*. +\v 13 \w He|strong="H1931"\w* \w will|strong="H1004"\w* \w build|strong="H1129"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w for|strong="H5704"\w* \w my|strong="H3559"\w* \w name|strong="H8034"\w*, \w and|strong="H1004"\w* \w I|strong="H5704"\w* \w will|strong="H1004"\w* \w establish|strong="H3559"\w* \w the|strong="H1129"\w* \w throne|strong="H3678"\w* \w of|strong="H1004"\w* \w his|strong="H3559"\w* \w kingdom|strong="H4467"\w* \w forever|strong="H5769"\w*. +\v 14 \w I|strong="H1121"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w his|strong="H1961"\w* \w father|strong="H1121"\w*, \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w my|strong="H1961"\w* \w son|strong="H1121"\w*. \w If|strong="H1961"\w* \w he|strong="H1931"\w* \w commits|strong="H5753"\w* \w iniquity|strong="H5753"\w*, \w I|strong="H1121"\w* \w will|strong="H1961"\w* \w chasten|strong="H3198"\w* \w him|strong="H1931"\w* \w with|strong="H3198"\w* \w the|strong="H1961"\w* \w rod|strong="H7626"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w* \w and|strong="H1121"\w* \w with|strong="H3198"\w* \w the|strong="H1961"\w* \w stripes|strong="H5061"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*; +\v 15 \w but|strong="H3808"\w* \w my|strong="H5493"\w* loving \w kindness|strong="H2617"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w depart|strong="H5493"\w* \w from|strong="H4480"\w* \w him|strong="H6440"\w*, \w as|strong="H6440"\w* \w I|strong="H3808"\w* \w took|strong="H5493"\w* \w it|strong="H6440"\w* \w from|strong="H4480"\w* \w Saul|strong="H7586"\w*, \w whom|strong="H6440"\w* \w I|strong="H3808"\w* \w put|strong="H5493"\w* \w away|strong="H5493"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*. +\v 16 \w Your|strong="H6440"\w* \w house|strong="H1004"\w* \w and|strong="H1004"\w* \w your|strong="H6440"\w* \w kingdom|strong="H4467"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w made|strong="H3559"\w* \w sure|strong="H3559"\w* \w forever|strong="H5769"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*. \w Your|strong="H6440"\w* \w throne|strong="H3678"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w established|strong="H3559"\w* \w forever|strong="H5769"\w*.”’” +\v 17 \w Nathan|strong="H5416"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w David|strong="H1732"\w* \w all|strong="H3605"\w* \w these|strong="H2088"\w* \w words|strong="H1697"\w*, \w and|strong="H1732"\w* according \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w this|strong="H2088"\w* \w vision|strong="H2384"\w*. +\p +\v 18 \w Then|strong="H4428"\w* \w David|strong="H1732"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w went|strong="H1732"\w* \w in|strong="H3427"\w* \w and|strong="H3068"\w* \w sat|strong="H3427"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H3068"\w* \w he|strong="H3588"\w* said, “\w Who|strong="H4310"\w* \w am|strong="H3068"\w* \w I|strong="H3588"\w*, \w Lord|strong="H3068"\w*\f + \fr 7:18 \ft The word translated “Lord” is “Adonai.”\f* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w what|strong="H4310"\w* \w is|strong="H3068"\w* \w my|strong="H3068"\w* \w house|strong="H1004"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w brought|strong="H3068"\w* \w me|strong="H6440"\w* \w this|strong="H3588"\w* \w far|strong="H5704"\w*? +\v 19 \w This|strong="H2063"\w* \w was|strong="H1004"\w* \w yet|strong="H5750"\w* \w a|strong="H3068"\w* \w small|strong="H6994"\w* \w thing|strong="H6994"\w* \w in|strong="H1004"\w* \w your|strong="H1571"\w* \w eyes|strong="H5869"\w*, \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, \w but|strong="H1696"\w* \w you|strong="H1696"\w* \w have|strong="H5869"\w* \w spoken|strong="H1696"\w* \w also|strong="H1571"\w* \w of|strong="H1004"\w* \w your|strong="H1571"\w* \w servant|strong="H5650"\w*’s \w house|strong="H1004"\w* \w for|strong="H1004"\w* \w a|strong="H3068"\w* \w great|strong="H7350"\w* \w while|strong="H5750"\w* \w to|strong="H1696"\w* \w come|strong="H7350"\w*; \w and|strong="H1004"\w* \w this|strong="H2063"\w* among \w men|strong="H5650"\w*, \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*! +\v 20 \w What|strong="H4100"\w* \w more|strong="H3254"\w* \w can|strong="H4100"\w* \w David|strong="H1732"\w* \w say|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3045"\w*? \w For|strong="H5650"\w* \w you|strong="H3045"\w* \w know|strong="H3045"\w* \w your|strong="H3045"\w* \w servant|strong="H5650"\w*, \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\v 21 \w For|strong="H6213"\w* \w your|strong="H3605"\w* \w word|strong="H1697"\w*’s \w sake|strong="H5668"\w*, \w and|strong="H5650"\w* according \w to|strong="H6213"\w* \w your|strong="H3605"\w* own \w heart|strong="H3820"\w*, \w you|strong="H3605"\w* \w have|strong="H3045"\w* \w worked|strong="H6213"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w greatness|strong="H1420"\w*, \w to|strong="H6213"\w* \w make|strong="H6213"\w* \w your|strong="H3605"\w* \w servant|strong="H5650"\w* \w know|strong="H3045"\w* \w it|strong="H6213"\w*. +\v 22 \w Therefore|strong="H3651"\w* \w you|strong="H3588"\w* are \w great|strong="H1431"\w*, \w Yahweh|strong="H3068"\w* \w God|strong="H3069"\w*. \w For|strong="H3588"\w* \w there|strong="H3605"\w* \w is|strong="H3651"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w like|strong="H3644"\w* \w you|strong="H3588"\w*, neither \w is|strong="H3651"\w* \w there|strong="H3605"\w* \w any|strong="H3605"\w* \w God|strong="H3069"\w* \w besides|strong="H2108"\w* \w you|strong="H3588"\w*, \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3605"\w* \w heard|strong="H8085"\w* \w with|strong="H5921"\w* \w our|strong="H3605"\w* ears. +\v 23 \w What|strong="H4310"\w* \w one|strong="H6213"\w* \w nation|strong="H1471"\w* \w in|strong="H1980"\w* \w the|strong="H6440"\w* earth \w is|strong="H4310"\w* \w like|strong="H3478"\w* \w your|strong="H7760"\w* \w people|strong="H5971"\w*, \w even|strong="H6213"\w* \w like|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w whom|strong="H4310"\w* \w God|strong="H4310"\w* \w went|strong="H1980"\w* \w to|strong="H1980"\w* \w redeem|strong="H6299"\w* \w to|strong="H1980"\w* \w himself|strong="H6213"\w* \w for|strong="H6213"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w*, \w and|strong="H1980"\w* \w to|strong="H1980"\w* \w make|strong="H6213"\w* \w himself|strong="H6213"\w* \w a|strong="H3068"\w* \w name|strong="H8034"\w*, \w and|strong="H1980"\w* \w to|strong="H1980"\w* \w do|strong="H6213"\w* \w great|strong="H6213"\w* \w things|strong="H3372"\w* \w for|strong="H6213"\w* \w you|strong="H6440"\w*, \w and|strong="H1980"\w* \w awesome|strong="H3372"\w* \w things|strong="H3372"\w* \w for|strong="H6213"\w* \w your|strong="H7760"\w* \w land|strong="H6440"\w*, \w before|strong="H6440"\w* \w your|strong="H7760"\w* \w people|strong="H5971"\w*, \w whom|strong="H4310"\w* \w you|strong="H6440"\w* \w redeemed|strong="H6299"\w* \w to|strong="H1980"\w* \w yourself|strong="H6213"\w* \w out|strong="H6213"\w* \w of|strong="H6440"\w* \w Egypt|strong="H4714"\w*, \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w nations|strong="H1471"\w* \w and|strong="H1980"\w* \w their|strong="H7760"\w* \w gods|strong="H1980"\w*? +\v 24 \w You|strong="H5704"\w* \w established|strong="H3559"\w* \w for|strong="H5704"\w* \w yourself|strong="H3559"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w* \w to|strong="H5704"\w* \w be|strong="H1961"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w* \w forever|strong="H5769"\w*; \w and|strong="H3478"\w* \w you|strong="H5704"\w*, \w Yahweh|strong="H3068"\w*, \w became|strong="H1961"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*. +\p +\v 25 “\w Now|strong="H6258"\w*, \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w*, \w the|strong="H5921"\w* \w word|strong="H1697"\w* \w that|strong="H3068"\w* \w you|strong="H5921"\w* \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w concerning|strong="H5921"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w*, \w and|strong="H6965"\w* \w concerning|strong="H5921"\w* \w his|strong="H3068"\w* \w house|strong="H1004"\w*, \w confirm|strong="H6965"\w* \w it|strong="H5921"\w* \w forever|strong="H5769"\w*, \w and|strong="H6965"\w* \w do|strong="H6213"\w* \w as|strong="H5704"\w* \w you|strong="H5921"\w* \w have|strong="H3068"\w* \w spoken|strong="H1696"\w*. +\v 26 \w Let|strong="H1961"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w* \w be|strong="H1961"\w* \w magnified|strong="H1431"\w* \w forever|strong="H5769"\w*, saying, ‘\w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w* \w is|strong="H3068"\w* \w God|strong="H3068"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w David|strong="H1732"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w established|strong="H3559"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*.’ +\v 27 \w For|strong="H3588"\w* \w you|strong="H3588"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w have|strong="H3068"\w* \w revealed|strong="H1540"\w* \w to|strong="H3478"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w*, saying, ‘\w I|strong="H3588"\w* \w will|strong="H3068"\w* \w build|strong="H1129"\w* \w you|strong="H3588"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w*.’ \w Therefore|strong="H3651"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w has|strong="H3068"\w* \w found|strong="H4672"\w* \w in|strong="H5921"\w* \w his|strong="H3068"\w* \w heart|strong="H3820"\w* \w to|strong="H3478"\w* \w pray|strong="H6419"\w* \w this|strong="H2063"\w* \w prayer|strong="H8605"\w* \w to|strong="H3478"\w* \w you|strong="H3588"\w*. +\p +\v 28 “\w Now|strong="H6258"\w*, \w O|strong="H3068"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, \w you|strong="H1696"\w* \w are|strong="H1697"\w* \w God|strong="H3069"\w*, \w and|strong="H5650"\w* \w your|strong="H1961"\w* \w words|strong="H1697"\w* \w are|strong="H1697"\w* truth, \w and|strong="H5650"\w* \w you|strong="H1696"\w* \w have|strong="H1961"\w* \w promised|strong="H1696"\w* \w this|strong="H2063"\w* \w good|strong="H2896"\w* \w thing|strong="H1697"\w* \w to|strong="H1696"\w* \w your|strong="H1961"\w* \w servant|strong="H5650"\w*. +\v 29 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w let|strong="H6258"\w* \w it|strong="H3588"\w* \w please|strong="H2974"\w* \w you|strong="H3588"\w* \w to|strong="H1696"\w* \w bless|strong="H1288"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w your|strong="H6440"\w* \w servant|strong="H5650"\w*, \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w may|strong="H1961"\w* \w continue|strong="H1961"\w* \w forever|strong="H5769"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w*, \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, \w have|strong="H1961"\w* \w spoken|strong="H1696"\w* \w it|strong="H3588"\w*. \w Let|strong="H6258"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w your|strong="H6440"\w* \w servant|strong="H5650"\w* \w be|strong="H1961"\w* \w blessed|strong="H1288"\w* \w forever|strong="H5769"\w* \w with|strong="H1004"\w* \w your|strong="H6440"\w* \w blessing|strong="H1293"\w*.” +\c 8 +\p +\v 1 \w After|strong="H1961"\w* \w this|strong="H3651"\w*, \w David|strong="H1732"\w* \w struck|strong="H5221"\w* \w the|strong="H3947"\w* \w Philistines|strong="H6430"\w* \w and|strong="H3027"\w* \w subdued|strong="H3665"\w* \w them|strong="H5221"\w*; \w and|strong="H3027"\w* \w David|strong="H1732"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* bridle \w of|strong="H3027"\w* \w the|strong="H3947"\w* mother city \w out|strong="H3947"\w* \w of|strong="H3027"\w* \w the|strong="H3947"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3947"\w* \w Philistines|strong="H6430"\w*. +\v 2 \w He|strong="H1732"\w* \w defeated|strong="H5221"\w* \w Moab|strong="H4124"\w*, \w and|strong="H1732"\w* \w measured|strong="H4058"\w* \w them|strong="H5221"\w* \w with|strong="H7901"\w* \w the|strong="H5221"\w* \w line|strong="H2256"\w*, making \w them|strong="H5221"\w* \w to|strong="H4191"\w* \w lie|strong="H7901"\w* \w down|strong="H7901"\w* \w on|strong="H1961"\w* \w the|strong="H5221"\w* ground; \w and|strong="H1732"\w* \w he|strong="H1732"\w* \w measured|strong="H4058"\w* \w two|strong="H8147"\w* \w lines|strong="H2256"\w* \w to|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*, \w and|strong="H1732"\w* \w one|strong="H2421"\w* \w full|strong="H4393"\w* \w line|strong="H2256"\w* \w to|strong="H4191"\w* \w keep|strong="H2421"\w* \w alive|strong="H2421"\w*. \w The|strong="H5221"\w* \w Moabites|strong="H4124"\w* \w became|strong="H1961"\w* \w servants|strong="H5650"\w* \w to|strong="H4191"\w* \w David|strong="H1732"\w*, \w and|strong="H1732"\w* \w brought|strong="H5375"\w* \w tribute|strong="H4503"\w*. +\p +\v 3 \w David|strong="H1732"\w* \w also|strong="H1732"\w* \w struck|strong="H5221"\w* \w Hadadezer|strong="H1909"\w* \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Rehob|strong="H7340"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Zobah|strong="H6678"\w*, \w as|strong="H1121"\w* \w he|strong="H1732"\w* \w went|strong="H3212"\w* \w to|strong="H7725"\w* \w recover|strong="H7725"\w* \w his|strong="H1732"\w* \w dominion|strong="H3027"\w* \w at|strong="H1732"\w* \w the|strong="H5221"\w* \w River|strong="H5104"\w*. +\v 4 \w David|strong="H1732"\w* \w took|strong="H3920"\w* \w from|strong="H4480"\w* \w him|strong="H3605"\w* \w one|strong="H3605"\w* thousand \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w horsemen|strong="H6571"\w* \w and|strong="H3967"\w* \w twenty|strong="H6242"\w* thousand \w footmen|strong="H7273"\w*. \w David|strong="H1732"\w* hamstrung \w the|strong="H3605"\w* \w chariot|strong="H7393"\w* \w horses|strong="H6571"\w*, \w but|strong="H3498"\w* \w reserved|strong="H3498"\w* \w enough|strong="H3605"\w* \w of|strong="H4480"\w* \w them|strong="H4480"\w* \w for|strong="H3605"\w* \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* \w chariots|strong="H7393"\w*. +\v 5 When \w the|strong="H5221"\w* Syrians \w of|strong="H4428"\w* \w Damascus|strong="H1834"\w* \w came|strong="H4428"\w* \w to|strong="H4428"\w* \w help|strong="H5826"\w* \w Hadadezer|strong="H1909"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Zobah|strong="H6678"\w*, \w David|strong="H1732"\w* \w struck|strong="H5221"\w* \w twenty|strong="H6242"\w* \w two|strong="H8147"\w* thousand \w men|strong="H8147"\w* \w of|strong="H4428"\w* \w the|strong="H5221"\w* Syrians. +\v 6 \w Then|strong="H1961"\w* \w David|strong="H1732"\w* \w put|strong="H7760"\w* \w garrisons|strong="H5333"\w* \w in|strong="H1980"\w* Syria \w of|strong="H3068"\w* \w Damascus|strong="H1834"\w*; \w and|strong="H1980"\w* \w the|strong="H3605"\w* Syrians \w became|strong="H1961"\w* \w servants|strong="H5650"\w* \w to|strong="H1980"\w* \w David|strong="H1732"\w*, \w and|strong="H1980"\w* \w brought|strong="H5375"\w* \w tribute|strong="H4503"\w*. \w Yahweh|strong="H3068"\w* \w gave|strong="H7760"\w* \w victory|strong="H3467"\w* \w to|strong="H1980"\w* \w David|strong="H1732"\w* \w wherever|strong="H3605"\w* \w he|strong="H3068"\w* \w went|strong="H1980"\w*. +\v 7 \w David|strong="H1732"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w shields|strong="H7982"\w* \w of|strong="H5650"\w* \w gold|strong="H2091"\w* \w that|strong="H1732"\w* \w were|strong="H1961"\w* \w on|strong="H1961"\w* \w the|strong="H3947"\w* \w servants|strong="H5650"\w* \w of|strong="H5650"\w* \w Hadadezer|strong="H1909"\w*, \w and|strong="H2091"\w* \w brought|strong="H3947"\w* \w them|strong="H3947"\w* \w to|strong="H1961"\w* \w Jerusalem|strong="H3389"\w*. +\v 8 \w From|strong="H3947"\w* Betah \w and|strong="H4428"\w* \w from|strong="H3947"\w* \w Berothai|strong="H1268"\w*, \w cities|strong="H5892"\w* \w of|strong="H4428"\w* \w Hadadezer|strong="H1909"\w*, \w King|strong="H4428"\w* \w David|strong="H1732"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* \w great|strong="H3966"\w* quantity \w of|strong="H4428"\w* \w bronze|strong="H5178"\w*. +\p +\v 9 \w When|strong="H3588"\w* \w Toi|strong="H8583"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Hamath|strong="H2574"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w David|strong="H1732"\w* \w had|strong="H1732"\w* \w struck|strong="H5221"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H2426"\w* \w of|strong="H4428"\w* \w Hadadezer|strong="H1909"\w*, +\v 10 \w then|strong="H1961"\w* \w Toi|strong="H8583"\w* \w sent|strong="H7971"\w* \w Joram|strong="H3141"\w* \w his|strong="H7971"\w* \w son|strong="H1121"\w* \w to|strong="H7971"\w* \w King|strong="H4428"\w* \w David|strong="H1732"\w* \w to|strong="H7971"\w* \w greet|strong="H7592"\w* \w him|strong="H5921"\w* \w and|strong="H1121"\w* \w to|strong="H7971"\w* \w bless|strong="H1288"\w* \w him|strong="H5921"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H1961"\w* \w fought|strong="H3898"\w* \w against|strong="H5921"\w* \w Hadadezer|strong="H1909"\w* \w and|strong="H1121"\w* \w struck|strong="H5221"\w* \w him|strong="H5921"\w*; \w for|strong="H3588"\w* \w Hadadezer|strong="H1909"\w* \w had|strong="H1961"\w* \w wars|strong="H4421"\w* \w with|strong="H5921"\w* \w Toi|strong="H8583"\w*. \w Joram|strong="H3141"\w* \w brought|strong="H1961"\w* \w with|strong="H5921"\w* \w him|strong="H5921"\w* \w vessels|strong="H3627"\w* \w of|strong="H1121"\w* \w silver|strong="H3701"\w*, \w vessels|strong="H3627"\w* \w of|strong="H1121"\w* \w gold|strong="H2091"\w*, \w and|strong="H1121"\w* \w vessels|strong="H3627"\w* \w of|strong="H1121"\w* \w bronze|strong="H5178"\w*. +\v 11 \w King|strong="H4428"\w* \w David|strong="H1732"\w* \w also|strong="H1571"\w* \w dedicated|strong="H6942"\w* \w these|strong="H3605"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w silver|strong="H3701"\w* \w and|strong="H3068"\w* \w gold|strong="H2091"\w* \w that|strong="H3605"\w* \w he|strong="H3068"\w* \w dedicated|strong="H6942"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w subdued|strong="H3533"\w*— +\v 12 \w of|strong="H1121"\w* Syria, \w of|strong="H1121"\w* \w Moab|strong="H4124"\w*, \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Philistines|strong="H6430"\w*, \w of|strong="H1121"\w* \w Amalek|strong="H6002"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w plunder|strong="H7998"\w* \w of|strong="H1121"\w* \w Hadadezer|strong="H1909"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Rehob|strong="H7340"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Zobah|strong="H6678"\w*. +\p +\v 13 \w David|strong="H1732"\w* earned \w a|strong="H3068"\w* \w reputation|strong="H8034"\w* \w when|strong="H7725"\w* \w he|strong="H6213"\w* \w returned|strong="H7725"\w* \w from|strong="H7725"\w* \w striking|strong="H5221"\w* \w down|strong="H5221"\w* \w eighteen|strong="H8083"\w* thousand \w men|strong="H6213"\w* \w of|strong="H8034"\w* \w the|strong="H5221"\w* Syrians \w in|strong="H6213"\w* \w the|strong="H5221"\w* \w Valley|strong="H1516"\w* \w of|strong="H8034"\w* \w Salt|strong="H4417"\w*. +\v 14 \w He|strong="H3068"\w* \w put|strong="H7760"\w* \w garrisons|strong="H5333"\w* \w in|strong="H1980"\w* Edom. \w Throughout|strong="H3605"\w* \w all|strong="H3605"\w* Edom, \w he|strong="H3068"\w* \w put|strong="H7760"\w* \w garrisons|strong="H5333"\w*, \w and|strong="H1980"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* Edomites \w became|strong="H1961"\w* \w servants|strong="H5650"\w* \w to|strong="H1980"\w* \w David|strong="H1732"\w*. \w Yahweh|strong="H3068"\w* \w gave|strong="H7760"\w* \w victory|strong="H3467"\w* \w to|strong="H1980"\w* \w David|strong="H1732"\w* \w wherever|strong="H3605"\w* \w he|strong="H3068"\w* \w went|strong="H1980"\w*. +\p +\v 15 \w David|strong="H1732"\w* \w reigned|strong="H4427"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w David|strong="H1732"\w* \w executed|strong="H6213"\w* \w justice|strong="H4941"\w* \w and|strong="H3478"\w* \w righteousness|strong="H6666"\w* \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*. +\v 16 \w Joab|strong="H3097"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w* \w was|strong="H1121"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w army|strong="H6635"\w*, \w Jehoshaphat|strong="H3092"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahilud \w was|strong="H1121"\w* \w recorder|strong="H2142"\w*, +\v 17 \w Zadok|strong="H6659"\w* \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahitub \w and|strong="H1121"\w* Ahimelech \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Abiathar \w were|strong="H1121"\w* \w priests|strong="H3548"\w*, \w Seraiah|strong="H8304"\w* \w was|strong="H1121"\w* \w scribe|strong="H5608"\w*, +\v 18 \w Benaiah|strong="H1141"\w* \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w* \w was|strong="H1961"\w* \w over|strong="H1732"\w* \w the|strong="H1961"\w* \w Cherethites|strong="H3774"\w* \w and|strong="H1121"\w* \w the|strong="H1961"\w* \w Pelethites|strong="H6432"\w*; \w and|strong="H1121"\w* \w David|strong="H1732"\w*’s \w sons|strong="H1121"\w* \w were|strong="H1961"\w* \w chief|strong="H3548"\w* \w ministers|strong="H3548"\w*. +\c 9 +\p +\v 1 \w David|strong="H1732"\w* said, “\w Is|strong="H3426"\w* \w there|strong="H3426"\w* \w yet|strong="H5750"\w* \w any|strong="H5750"\w* \w who|strong="H3588"\w* \w is|strong="H3426"\w* \w left|strong="H3498"\w* \w of|strong="H1004"\w* \w Saul|strong="H7586"\w*’s \w house|strong="H1004"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H6213"\w* \w show|strong="H6213"\w* \w him|strong="H6213"\w* \w kindness|strong="H2617"\w* \w for|strong="H3588"\w* \w Jonathan|strong="H3083"\w*’s \w sake|strong="H5668"\w*?” +\v 2 \w There|strong="H8034"\w* \w was|strong="H8034"\w* \w of|strong="H4428"\w* \w Saul|strong="H7586"\w*’s \w house|strong="H1004"\w* \w a|strong="H3068"\w* \w servant|strong="H5650"\w* \w whose|strong="H5650"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Ziba|strong="H6717"\w*, \w and|strong="H4428"\w* \w they|strong="H7586"\w* \w called|strong="H7121"\w* \w him|strong="H7121"\w* \w to|strong="H1004"\w* \w David|strong="H1732"\w*; \w and|strong="H4428"\w* \w the|strong="H7121"\w* \w king|strong="H4428"\w* \w said|strong="H7121"\w* \w to|strong="H1004"\w* \w him|strong="H7121"\w*, “\w Are|strong="H5650"\w* \w you|strong="H7121"\w* \w Ziba|strong="H6717"\w*?” +\p \w He|strong="H1004"\w* \w said|strong="H7121"\w*, “\w I|strong="H5650"\w* am \w your|strong="H1732"\w* \w servant|strong="H5650"\w*.” +\p +\v 3 \w The|strong="H6213"\w* \w king|strong="H4428"\w* said, “\w Is|strong="H2617"\w* there \w not|strong="H6213"\w* \w yet|strong="H5750"\w* \w any|strong="H5750"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w*’s \w house|strong="H1004"\w*, \w that|strong="H4428"\w* \w I|strong="H1121"\w* \w may|strong="H4428"\w* \w show|strong="H6213"\w* \w the|strong="H6213"\w* \w kindness|strong="H2617"\w* \w of|strong="H1121"\w* God \w to|strong="H6213"\w* \w him|strong="H6213"\w*?” +\p \w Ziba|strong="H6717"\w* said \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w*, “\w Jonathan|strong="H3083"\w* \w still|strong="H5750"\w* \w has|strong="H4428"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*, \w who|strong="H1121"\w* \w is|strong="H2617"\w* \w lame|strong="H5223"\w* \w in|strong="H6213"\w* \w his|strong="H6213"\w* \w feet|strong="H7272"\w*.” +\p +\v 4 \w The|strong="H2009"\w* \w king|strong="H4428"\w* said \w to|strong="H1121"\w* \w him|strong="H1931"\w*, “\w Where|strong="H1004"\w* \w is|strong="H1931"\w* \w he|strong="H1931"\w*?” +\p \w Ziba|strong="H6717"\w* said \w to|strong="H1121"\w* \w the|strong="H2009"\w* \w king|strong="H4428"\w*, “\w Behold|strong="H2009"\w*, \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w in|strong="H1004"\w* \w the|strong="H2009"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Machir|strong="H4353"\w* \w the|strong="H2009"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammiel|strong="H5988"\w*, \w in|strong="H1004"\w* \w Lo|strong="H2009"\w* Debar.” +\p +\v 5 \w Then|strong="H3947"\w* \w King|strong="H4428"\w* \w David|strong="H1732"\w* \w sent|strong="H7971"\w* \w and|strong="H1121"\w* \w brought|strong="H3947"\w* \w him|strong="H7971"\w* \w out|strong="H7971"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Machir|strong="H4353"\w* \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammiel|strong="H5988"\w*, \w from|strong="H1121"\w* Lo Debar. +\v 6 \w Mephibosheth|strong="H4648"\w*, \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jonathan|strong="H3083"\w*, \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w*, \w came|strong="H7586"\w* \w to|strong="H5921"\w* \w David|strong="H1732"\w*, \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w his|strong="H1732"\w* \w face|strong="H6440"\w*, \w and|strong="H1121"\w* showed \w respect|strong="H5921"\w*. \w David|strong="H1732"\w* said, “\w Mephibosheth|strong="H4648"\w*?” +\p \w He|strong="H1732"\w* answered, “\w Behold|strong="H2009"\w*, \w your|strong="H5921"\w* \w servant|strong="H5650"\w*!” +\p +\v 7 \w David|strong="H1732"\w* said \w to|strong="H7725"\w* \w him|strong="H5921"\w*, “Don’t \w be|strong="H3372"\w* \w afraid|strong="H3372"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H7704"\w* \w surely|strong="H3588"\w* \w show|strong="H6213"\w* \w you|strong="H3588"\w* \w kindness|strong="H2617"\w* \w for|strong="H3588"\w* \w Jonathan|strong="H3083"\w* \w your|strong="H3605"\w* father’s \w sake|strong="H5668"\w*, \w and|strong="H7725"\w* \w will|strong="H7704"\w* \w restore|strong="H7725"\w* \w to|strong="H7725"\w* \w you|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H7704"\w* \w of|strong="H7704"\w* \w Saul|strong="H7586"\w* \w your|strong="H3605"\w* father. \w You|strong="H3588"\w* \w will|strong="H7704"\w* \w eat|strong="H3899"\w* \w bread|strong="H3899"\w* \w at|strong="H5921"\w* \w my|strong="H3605"\w* \w table|strong="H7979"\w* \w continually|strong="H8548"\w*.” +\p +\v 8 \w He|strong="H3588"\w* \w bowed|strong="H7812"\w* \w down|strong="H7812"\w*, \w and|strong="H5650"\w* said, “\w What|strong="H4100"\w* \w is|strong="H4100"\w* \w your|strong="H3588"\w* \w servant|strong="H5650"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w should|strong="H4100"\w* \w look|strong="H6437"\w* \w at|strong="H4191"\w* \w such|strong="H3644"\w* \w a|strong="H3068"\w* \w dead|strong="H4191"\w* \w dog|strong="H3611"\w* \w as|strong="H3644"\w* \w I|strong="H3588"\w* am?” +\p +\v 9 \w Then|strong="H1961"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w called|strong="H7121"\w* \w to|strong="H1961"\w* \w Ziba|strong="H6717"\w*, \w Saul|strong="H7586"\w*’s \w servant|strong="H5288"\w*, \w and|strong="H1121"\w* \w said|strong="H7121"\w* \w to|strong="H1961"\w* \w him|strong="H5414"\w*, “\w All|strong="H3605"\w* \w that|strong="H3605"\w* \w belonged|strong="H1961"\w* \w to|strong="H1961"\w* \w Saul|strong="H7586"\w* \w and|strong="H1121"\w* \w to|strong="H1961"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w* \w I|strong="H5414"\w* \w have|strong="H1961"\w* \w given|strong="H5414"\w* \w to|strong="H1961"\w* \w your|strong="H3605"\w* \w master|strong="H5414"\w*’s \w son|strong="H1121"\w*. +\v 10 \w Till|strong="H5647"\w* \w the|strong="H5921"\w* land \w for|strong="H5921"\w* \w him|strong="H5921"\w*—\w you|strong="H5921"\w*, \w your|strong="H5921"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w your|strong="H5921"\w* \w servants|strong="H5650"\w*. \w Bring|strong="H1961"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* harvest, \w that|strong="H1121"\w* \w your|strong="H5921"\w* master’s \w son|strong="H1121"\w* \w may|strong="H1961"\w* \w have|strong="H1961"\w* \w bread|strong="H3899"\w* \w to|strong="H1961"\w* \w eat|strong="H3899"\w*; \w but|strong="H1961"\w* \w Mephibosheth|strong="H4648"\w* \w your|strong="H5921"\w* master’s \w son|strong="H1121"\w* \w will|strong="H1961"\w* \w always|strong="H8548"\w* \w eat|strong="H3899"\w* \w bread|strong="H3899"\w* \w at|strong="H5921"\w* \w my|strong="H5921"\w* \w table|strong="H7979"\w*.” +\p \w Now|strong="H1961"\w* \w Ziba|strong="H6717"\w* \w had|strong="H1961"\w* \w fifteen|strong="H2568"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w twenty|strong="H6242"\w* \w servants|strong="H5650"\w*. +\v 11 \w Then|strong="H3651"\w* \w Ziba|strong="H6717"\w* \w said|strong="H3651"\w* \w to|strong="H6213"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, “\w According|strong="H5921"\w* \w to|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w my|strong="H3605"\w* lord \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w commands|strong="H6680"\w* \w his|strong="H3605"\w* \w servant|strong="H5650"\w*, \w so|strong="H3651"\w* \w your|strong="H3605"\w* \w servant|strong="H5650"\w* \w will|strong="H4428"\w* \w do|strong="H6213"\w*.” \w So|strong="H3651"\w* \w Mephibosheth|strong="H4648"\w* ate \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w table|strong="H7979"\w* \w like|strong="H3651"\w* \w one|strong="H3605"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w sons|strong="H1121"\w*. +\v 12 \w Mephibosheth|strong="H4648"\w* \w had|strong="H1121"\w* \w a|strong="H3068"\w* \w young|strong="H1121"\w* \w son|strong="H1121"\w*, \w whose|strong="H1121"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Mica|strong="H4316"\w*. \w All|strong="H3605"\w* \w who|strong="H3605"\w* \w lived|strong="H4186"\w* \w in|strong="H1004"\w* \w Ziba|strong="H6717"\w*’s \w house|strong="H1004"\w* \w were|strong="H1121"\w* \w servants|strong="H5650"\w* \w to|strong="H1121"\w* \w Mephibosheth|strong="H4648"\w*. +\v 13 \w So|strong="H3588"\w* \w Mephibosheth|strong="H4648"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*, \w for|strong="H3588"\w* \w he|strong="H1931"\w* ate \w continually|strong="H8548"\w* \w at|strong="H3427"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w table|strong="H7979"\w*. \w He|strong="H1931"\w* \w was|strong="H1931"\w* \w lame|strong="H6455"\w* \w in|strong="H3427"\w* \w both|strong="H8147"\w* \w his|strong="H5921"\w* \w feet|strong="H7272"\w*. +\c 10 +\p +\v 1 \w After|strong="H1961"\w* \w this|strong="H3651"\w*, \w the|strong="H8478"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H8478"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w died|strong="H4191"\w*, \w and|strong="H1121"\w* \w Hanun|strong="H2586"\w* \w his|strong="H1961"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H4428"\w* \w his|strong="H1961"\w* \w place|strong="H8478"\w*. +\v 2 \w David|strong="H1732"\w* said, “\w I|strong="H5650"\w* \w will|strong="H5650"\w* \w show|strong="H6213"\w* \w kindness|strong="H2617"\w* \w to|strong="H7971"\w* \w Hanun|strong="H2586"\w* \w the|strong="H6213"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nahash|strong="H5176"\w*, \w as|strong="H6213"\w* \w his|strong="H7971"\w* \w father|strong="H1121"\w* \w showed|strong="H6213"\w* \w kindness|strong="H2617"\w* \w to|strong="H7971"\w* \w me|strong="H7971"\w*.” \w So|strong="H6213"\w* \w David|strong="H1732"\w* \w sent|strong="H7971"\w* \w by|strong="H3027"\w* \w his|strong="H7971"\w* \w servants|strong="H5650"\w* \w to|strong="H7971"\w* \w comfort|strong="H5162"\w* \w him|strong="H7971"\w* \w concerning|strong="H5162"\w* \w his|strong="H7971"\w* \w father|strong="H1121"\w*. \w David|strong="H1732"\w*’s \w servants|strong="H5650"\w* \w came|strong="H5983"\w* \w into|strong="H6213"\w* \w the|strong="H6213"\w* land \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*. +\p +\v 3 \w But|strong="H3588"\w* \w the|strong="H3588"\w* \w princes|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* said \w to|strong="H7971"\w* \w Hanun|strong="H2586"\w* \w their|strong="H3588"\w* lord, “\w Do|strong="H5869"\w* \w you|strong="H3588"\w* \w think|strong="H5869"\w* \w that|strong="H3588"\w* \w David|strong="H1732"\w* \w honors|strong="H3513"\w* \w your|strong="H3588"\w* \w father|strong="H1121"\w*, \w in|strong="H5892"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H5650"\w* \w sent|strong="H7971"\w* \w comforters|strong="H5162"\w* \w to|strong="H7971"\w* \w you|strong="H3588"\w*? Hasn’t \w David|strong="H1732"\w* \w sent|strong="H7971"\w* \w his|strong="H7971"\w* \w servants|strong="H5650"\w* \w to|strong="H7971"\w* \w you|strong="H3588"\w* \w to|strong="H7971"\w* \w search|strong="H2713"\w* \w the|strong="H3588"\w* \w city|strong="H5892"\w*, \w to|strong="H7971"\w* \w spy|strong="H7270"\w* \w it|strong="H3588"\w* \w out|strong="H7971"\w*, \w and|strong="H1121"\w* \w to|strong="H7971"\w* \w overthrow|strong="H2015"\w* \w it|strong="H3588"\w*?” +\p +\v 4 \w So|strong="H3947"\w* \w Hanun|strong="H2586"\w* \w took|strong="H3947"\w* \w David|strong="H1732"\w*’s \w servants|strong="H5650"\w*, \w shaved|strong="H1548"\w* \w off|strong="H3772"\w* one \w half|strong="H2677"\w* \w of|strong="H5650"\w* \w their|strong="H3947"\w* \w beards|strong="H2206"\w*, \w and|strong="H7971"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w their|strong="H3947"\w* \w garments|strong="H4063"\w* \w in|strong="H5650"\w* \w the|strong="H3947"\w* \w middle|strong="H2677"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w their|strong="H3947"\w* \w buttocks|strong="H8357"\w*, \w and|strong="H7971"\w* \w sent|strong="H7971"\w* \w them|strong="H7971"\w* \w away|strong="H7971"\w*. +\v 5 \w When|strong="H3588"\w* \w they|strong="H3588"\w* \w told|strong="H5046"\w* \w David|strong="H1732"\w* \w this|strong="H3588"\w*, \w he|strong="H3588"\w* \w sent|strong="H7971"\w* \w to|strong="H5704"\w* \w meet|strong="H7125"\w* \w them|strong="H7725"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* men \w were|strong="H1961"\w* \w greatly|strong="H3966"\w* \w ashamed|strong="H3637"\w*. \w The|strong="H3588"\w* \w king|strong="H4428"\w* said, “\w Wait|strong="H3427"\w* \w at|strong="H3427"\w* \w Jericho|strong="H3405"\w* \w until|strong="H5704"\w* \w your|strong="H7725"\w* \w beards|strong="H2206"\w* \w have|strong="H1961"\w* \w grown|strong="H6779"\w*, \w and|strong="H7971"\w* \w then|strong="H1961"\w* \w return|strong="H7725"\w*.” +\p +\v 6 \w When|strong="H3588"\w* \w the|strong="H7200"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H1732"\w* \w become|strong="H7200"\w* odious \w to|strong="H7971"\w* \w David|strong="H1732"\w*, \w the|strong="H7200"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w sent|strong="H7971"\w* \w and|strong="H1121"\w* \w hired|strong="H7936"\w* \w the|strong="H7200"\w* Syrians \w of|strong="H1121"\w* Beth Rehob \w and|strong="H1121"\w* \w the|strong="H7200"\w* Syrians \w of|strong="H1121"\w* \w Zobah|strong="H6678"\w*, \w twenty|strong="H6242"\w* thousand \w footmen|strong="H7273"\w*, \w and|strong="H1121"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Maacah|strong="H4601"\w* \w with|strong="H1732"\w* \w one|strong="H1121"\w* thousand \w men|strong="H1121"\w*, \w and|strong="H1121"\w* \w the|strong="H7200"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Tob|strong="H2897"\w* \w twelve|strong="H8147"\w* thousand \w men|strong="H1121"\w*. +\v 7 \w When|strong="H8085"\w* \w David|strong="H1732"\w* \w heard|strong="H8085"\w* \w of|strong="H6635"\w* \w it|strong="H7971"\w*, \w he|strong="H3605"\w* \w sent|strong="H7971"\w* \w Joab|strong="H3097"\w* \w and|strong="H7971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w* \w of|strong="H6635"\w* \w the|strong="H3605"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w*. +\v 8 \w The|strong="H3318"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H1121"\w* \w put|strong="H3318"\w* \w the|strong="H3318"\w* \w battle|strong="H4421"\w* \w in|strong="H4421"\w* \w array|strong="H6186"\w* \w at|strong="H4421"\w* \w the|strong="H3318"\w* \w entrance|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H3318"\w* \w gate|strong="H8179"\w*. \w The|strong="H3318"\w* Syrians \w of|strong="H1121"\w* \w Zobah|strong="H6678"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w Rehob|strong="H7340"\w* \w and|strong="H1121"\w* \w the|strong="H3318"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Tob|strong="H2897"\w* \w and|strong="H1121"\w* \w Maacah|strong="H4601"\w* \w were|strong="H1121"\w* \w by|strong="H3318"\w* \w themselves|strong="H6186"\w* \w in|strong="H4421"\w* \w the|strong="H3318"\w* \w field|strong="H7704"\w*. +\v 9 \w Now|strong="H1961"\w* \w when|strong="H3588"\w* \w Joab|strong="H3097"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w battle|strong="H4421"\w* \w was|strong="H1961"\w* \w set|strong="H6186"\w* \w against|strong="H7125"\w* \w him|strong="H6440"\w* \w before|strong="H6440"\w* \w and|strong="H3478"\w* behind, \w he|strong="H3588"\w* chose \w of|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w choice|strong="H7200"\w* \w men|strong="H3605"\w* \w of|strong="H6440"\w* \w Israel|strong="H3478"\w* \w and|strong="H3478"\w* \w put|strong="H6186"\w* \w them|strong="H6440"\w* \w in|strong="H3478"\w* \w array|strong="H6186"\w* \w against|strong="H7125"\w* \w the|strong="H3605"\w* Syrians. +\v 10 \w The|strong="H5414"\w* \w rest|strong="H3499"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w* \w he|strong="H3027"\w* \w committed|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* Abishai \w his|strong="H5414"\w* brother; \w and|strong="H1121"\w* \w he|strong="H3027"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w in|strong="H1121"\w* \w array|strong="H6186"\w* \w against|strong="H7125"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*. +\v 11 \w He|strong="H4480"\w* said, “\w If|strong="H1961"\w* \w the|strong="H4480"\w* Syrians \w are|strong="H1121"\w* \w too|strong="H4480"\w* \w strong|strong="H2388"\w* \w for|strong="H1121"\w* \w me|strong="H4480"\w*, \w then|strong="H1961"\w* \w you|strong="H4480"\w* \w shall|strong="H1121"\w* \w help|strong="H3467"\w* \w me|strong="H4480"\w*; \w but|strong="H1961"\w* \w if|strong="H1961"\w* \w the|strong="H4480"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w are|strong="H1121"\w* \w too|strong="H4480"\w* \w strong|strong="H2388"\w* \w for|strong="H1121"\w* \w you|strong="H4480"\w*, \w then|strong="H1961"\w* \w I|strong="H1980"\w* \w will|strong="H1961"\w* \w come|strong="H1980"\w* \w and|strong="H1121"\w* \w help|strong="H3467"\w* \w you|strong="H4480"\w*. +\v 12 \w Be|strong="H3068"\w* \w courageous|strong="H2388"\w*, \w and|strong="H3068"\w* let’s \w be|strong="H3068"\w* \w strong|strong="H2388"\w* \w for|strong="H6213"\w* \w our|strong="H3068"\w* \w people|strong="H5971"\w* \w and|strong="H3068"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*; \w and|strong="H3068"\w* \w may|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w do|strong="H6213"\w* \w what|strong="H2896"\w* \w seems|strong="H2896"\w* \w good|strong="H2896"\w* \w to|strong="H3068"\w* \w him|strong="H6213"\w*.” +\v 13 \w So|strong="H5066"\w* \w Joab|strong="H3097"\w* \w and|strong="H5971"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w with|strong="H5973"\w* \w him|strong="H6440"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w battle|strong="H4421"\w* \w against|strong="H5973"\w* \w the|strong="H6440"\w* Syrians, \w and|strong="H5971"\w* \w they|strong="H5971"\w* \w fled|strong="H5127"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 14 \w When|strong="H3588"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H6440"\w* Syrians \w had|strong="H3588"\w* \w fled|strong="H5127"\w*, \w they|strong="H3588"\w* likewise \w fled|strong="H5127"\w* \w before|strong="H6440"\w* Abishai, \w and|strong="H1121"\w* entered \w into|strong="H7725"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w*. \w Then|strong="H7725"\w* \w Joab|strong="H3097"\w* \w returned|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w and|strong="H1121"\w* \w came|strong="H7725"\w* \w to|strong="H7725"\w* \w Jerusalem|strong="H3389"\w*. +\p +\v 15 \w When|strong="H3588"\w* \w the|strong="H6440"\w* Syrians \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H3478"\w* \w defeated|strong="H5062"\w* \w by|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w they|strong="H3588"\w* \w gathered|strong="H3478"\w* \w themselves|strong="H6440"\w* \w together|strong="H3162"\w*. +\v 16 \w Hadadezer|strong="H1909"\w* \w sent|strong="H7971"\w* \w and|strong="H7971"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w the|strong="H6440"\w* Syrians \w who|strong="H6635"\w* \w were|strong="H8269"\w* \w beyond|strong="H5676"\w* \w the|strong="H6440"\w* \w River|strong="H5104"\w*; \w and|strong="H7971"\w* \w they|strong="H6440"\w* \w came|strong="H3318"\w* \w to|strong="H3318"\w* \w Helam|strong="H2431"\w*, \w with|strong="H6440"\w* \w Shobach|strong="H7731"\w* \w the|strong="H6440"\w* \w captain|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H6440"\w* \w army|strong="H6635"\w* \w of|strong="H8269"\w* \w Hadadezer|strong="H1909"\w* \w at|strong="H6440"\w* \w their|strong="H6440"\w* \w head|strong="H8269"\w*. +\v 17 \w David|strong="H1732"\w* \w was|strong="H1732"\w* \w told|strong="H5046"\w* \w that|strong="H3605"\w*; \w and|strong="H3478"\w* \w he|strong="H3605"\w* \w gathered|strong="H1732"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w together|strong="H5973"\w*, \w passed|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*, \w and|strong="H3478"\w* \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w Helam|strong="H2431"\w*. \w The|strong="H3605"\w* Syrians \w set|strong="H6186"\w* \w themselves|strong="H6186"\w* \w in|strong="H3478"\w* \w array|strong="H6186"\w* \w against|strong="H5973"\w* \w David|strong="H1732"\w* \w and|strong="H3478"\w* \w fought|strong="H3898"\w* \w with|strong="H5973"\w* \w him|strong="H5046"\w*. +\v 18 \w The|strong="H6440"\w* Syrians \w fled|strong="H5127"\w* \w before|strong="H6440"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3967"\w* \w David|strong="H1732"\w* \w killed|strong="H2026"\w* \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w charioteers|strong="H7393"\w* \w of|strong="H8269"\w* \w the|strong="H6440"\w* Syrians \w and|strong="H3967"\w* forty thousand \w horsemen|strong="H6571"\w*, \w and|strong="H3967"\w* \w struck|strong="H5221"\w* \w Shobach|strong="H7731"\w* \w the|strong="H6440"\w* \w captain|strong="H8269"\w* \w of|strong="H8269"\w* \w their|strong="H6440"\w* \w army|strong="H6635"\w*, \w so|strong="H4191"\w* \w that|strong="H3478"\w* \w he|strong="H8033"\w* \w died|strong="H4191"\w* \w there|strong="H8033"\w*. +\v 19 \w When|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w servants|strong="H5650"\w* \w to|strong="H3478"\w* \w Hadadezer|strong="H1909"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H3478"\w* \w defeated|strong="H5062"\w* \w before|strong="H6440"\w* \w Israel|strong="H3478"\w*, \w they|strong="H3588"\w* \w made|strong="H7999"\w* \w peace|strong="H7999"\w* \w with|strong="H6440"\w* \w Israel|strong="H3478"\w* \w and|strong="H1121"\w* \w served|strong="H5647"\w* \w them|strong="H6440"\w*. \w So|strong="H3588"\w* \w the|strong="H3605"\w* Syrians \w were|strong="H3478"\w* \w afraid|strong="H3372"\w* \w to|strong="H3478"\w* \w help|strong="H3467"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w any|strong="H3605"\w* \w more|strong="H5750"\w*. +\c 11 +\p +\v 1 \w At|strong="H3427"\w* \w the|strong="H3605"\w* \w return|strong="H8666"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w year|strong="H8141"\w*, \w at|strong="H3427"\w* \w the|strong="H3605"\w* \w time|strong="H6256"\w* \w when|strong="H1961"\w* \w kings|strong="H4428"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*, \w David|strong="H1732"\w* \w sent|strong="H7971"\w* \w Joab|strong="H3097"\w* \w and|strong="H1121"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*; \w and|strong="H1121"\w* \w they|strong="H5921"\w* \w destroyed|strong="H7843"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w and|strong="H1121"\w* \w besieged|strong="H6696"\w* \w Rabbah|strong="H7237"\w*. \w But|strong="H1961"\w* \w David|strong="H1732"\w* \w stayed|strong="H3427"\w* \w at|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*. +\v 2 \w At|strong="H5921"\w* \w evening|strong="H6153"\w*, \w David|strong="H1732"\w* \w arose|strong="H6965"\w* \w from|strong="H5921"\w* \w his|strong="H1732"\w* \w bed|strong="H4904"\w* \w and|strong="H1980"\w* \w walked|strong="H1980"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w roof|strong="H1406"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*. \w From|strong="H5921"\w* \w the|strong="H5921"\w* \w roof|strong="H1406"\w*, \w he|strong="H1004"\w* \w saw|strong="H7200"\w* \w a|strong="H3068"\w* \w woman|strong="H1004"\w* \w bathing|strong="H7364"\w*, \w and|strong="H1980"\w* \w the|strong="H5921"\w* \w woman|strong="H1004"\w* \w was|strong="H1961"\w* \w very|strong="H3966"\w* \w beautiful|strong="H2896"\w* \w to|strong="H1980"\w* \w look|strong="H7200"\w* \w at|strong="H5921"\w*. +\v 3 \w David|strong="H1732"\w* \w sent|strong="H7971"\w* \w and|strong="H7971"\w* \w inquired|strong="H1875"\w* \w after|strong="H1875"\w* \w the|strong="H7971"\w* \w woman|strong="H1323"\w*. \w One|strong="H3808"\w* said, “Isn’t \w this|strong="H2063"\w* \w Bathsheba|strong="H1339"\w*, \w the|strong="H7971"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* Eliam, Uriah \w the|strong="H7971"\w* \w Hittite|strong="H2850"\w*’s wife?” +\p +\v 4 \w David|strong="H1732"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w*, \w and|strong="H7971"\w* \w took|strong="H3947"\w* \w her|strong="H7971"\w*; \w and|strong="H7971"\w* \w she|strong="H1931"\w* \w came|strong="H7725"\w* \w in|strong="H1004"\w* \w to|strong="H7725"\w* \w him|strong="H7971"\w*, \w and|strong="H7971"\w* \w he|strong="H1931"\w* \w lay|strong="H7901"\w* \w with|strong="H5973"\w* \w her|strong="H7971"\w* (\w for|strong="H7971"\w* \w she|strong="H1931"\w* \w was|strong="H1732"\w* \w purified|strong="H6942"\w* \w from|strong="H7725"\w* \w her|strong="H7971"\w* \w uncleanness|strong="H2932"\w*); \w and|strong="H7971"\w* \w she|strong="H1931"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w her|strong="H7971"\w* \w house|strong="H1004"\w*. +\v 5 \w The|strong="H7971"\w* \w woman|strong="H2030"\w* \w conceived|strong="H2029"\w*; \w and|strong="H7971"\w* she \w sent|strong="H7971"\w* \w and|strong="H7971"\w* \w told|strong="H5046"\w* \w David|strong="H1732"\w*, \w and|strong="H7971"\w* said, “\w I|strong="H5046"\w* \w am|strong="H2029"\w* \w with|strong="H1732"\w* \w child|strong="H2030"\w*.” +\p +\v 6 \w David|strong="H1732"\w* \w sent|strong="H7971"\w* \w to|strong="H7971"\w* \w Joab|strong="H3097"\w*, “\w Send|strong="H7971"\w* \w me|strong="H7971"\w* Uriah \w the|strong="H7971"\w* \w Hittite|strong="H2850"\w*.” \w Joab|strong="H3097"\w* \w sent|strong="H7971"\w* Uriah \w to|strong="H7971"\w* \w David|strong="H1732"\w*. +\v 7 When Uriah \w had|strong="H1732"\w* \w come|strong="H5971"\w* \w to|strong="H1732"\w* \w him|strong="H7592"\w*, \w David|strong="H1732"\w* \w asked|strong="H7592"\w* \w him|strong="H7592"\w* \w how|strong="H7965"\w* \w Joab|strong="H3097"\w* \w did|strong="H5971"\w*, \w and|strong="H5971"\w* \w how|strong="H7965"\w* \w the|strong="H1732"\w* \w people|strong="H5971"\w* fared, \w and|strong="H5971"\w* \w how|strong="H7965"\w* \w the|strong="H1732"\w* \w war|strong="H4421"\w* \w prospered|strong="H7965"\w*. +\v 8 \w David|strong="H1732"\w* \w said|strong="H3318"\w* \w to|strong="H3381"\w* Uriah, “\w Go|strong="H3318"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w your|strong="H3318"\w* \w house|strong="H1004"\w* \w and|strong="H4428"\w* \w wash|strong="H7364"\w* \w your|strong="H3318"\w* \w feet|strong="H7272"\w*.” Uriah \w departed|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w the|strong="H3318"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w and|strong="H4428"\w* \w a|strong="H3068"\w* \w gift|strong="H4864"\w* \w from|strong="H3318"\w* \w the|strong="H3318"\w* \w king|strong="H4428"\w* \w was|strong="H1732"\w* \w sent|strong="H3318"\w* \w after|strong="H7272"\w* \w him|strong="H3318"\w*. +\v 9 \w But|strong="H3808"\w* Uriah \w slept|strong="H7901"\w* \w at|strong="H1004"\w* \w the|strong="H3605"\w* \w door|strong="H6607"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w* \w with|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w servants|strong="H5650"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* lord, \w and|strong="H4428"\w* didn’t \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*. +\v 10 When \w they|strong="H3808"\w* \w had|strong="H1732"\w* \w told|strong="H5046"\w* \w David|strong="H1732"\w*, saying, “Uriah didn’t \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w his|strong="H1732"\w* \w house|strong="H1004"\w*,” \w David|strong="H1732"\w* said \w to|strong="H3381"\w* Uriah, “Haven’t \w you|strong="H5046"\w* \w come|strong="H3381"\w* \w from|strong="H3381"\w* \w a|strong="H3068"\w* \w journey|strong="H1870"\w*? \w Why|strong="H4069"\w* didn’t \w you|strong="H5046"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w your|strong="H3808"\w* \w house|strong="H1004"\w*?” +\p +\v 11 Uriah \w said|strong="H1697"\w* \w to|strong="H3478"\w* \w David|strong="H1732"\w*, “\w The|strong="H6440"\w* ark, \w Israel|strong="H3478"\w*, \w and|strong="H3063"\w* \w Judah|strong="H3063"\w*, \w are|strong="H3478"\w* \w staying|strong="H3427"\w* \w in|strong="H3427"\w* \w tents|strong="H2583"\w*; \w and|strong="H3063"\w* \w my|strong="H1732"\w* lord \w Joab|strong="H3097"\w* \w and|strong="H3063"\w* \w the|strong="H6440"\w* \w servants|strong="H5650"\w* \w of|strong="H1004"\w* \w my|strong="H1732"\w* lord \w are|strong="H3478"\w* \w encamped|strong="H2583"\w* \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w open|strong="H6440"\w* \w field|strong="H7704"\w*. \w Shall|strong="H3478"\w* \w I|strong="H5921"\w* \w then|strong="H2088"\w* \w go|strong="H3478"\w* \w into|strong="H5921"\w* \w my|strong="H1732"\w* \w house|strong="H1004"\w* \w to|strong="H3478"\w* eat \w and|strong="H3063"\w* \w to|strong="H3478"\w* \w drink|strong="H8354"\w*, \w and|strong="H3063"\w* \w to|strong="H3478"\w* \w lie|strong="H7901"\w* \w with|strong="H5973"\w* \w my|strong="H1732"\w* \w wife|strong="H2416"\w*? \w As|strong="H1697"\w* \w you|strong="H6440"\w* \w live|strong="H3427"\w*, \w and|strong="H3063"\w* \w as|strong="H1697"\w* \w your|strong="H5921"\w* \w soul|strong="H5315"\w* \w lives|strong="H5315"\w*, \w I|strong="H5921"\w* \w will|strong="H3478"\w* \w not|strong="H6213"\w* \w do|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*!” +\p +\v 12 \w David|strong="H1732"\w* said \w to|strong="H7971"\w* Uriah, “\w Stay|strong="H3427"\w* \w here|strong="H2088"\w* \w today|strong="H3117"\w* \w also|strong="H1571"\w*, \w and|strong="H7971"\w* \w tomorrow|strong="H4279"\w* \w I|strong="H3117"\w* \w will|strong="H1571"\w* \w let|strong="H7971"\w* \w you|strong="H7971"\w* \w depart|strong="H7971"\w*.” \w So|strong="H7971"\w* Uriah \w stayed|strong="H3427"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w and|strong="H7971"\w* \w the|strong="H3117"\w* \w next|strong="H4283"\w* \w day|strong="H3117"\w*. +\v 13 \w When|strong="H3318"\w* \w David|strong="H1732"\w* \w had|strong="H1732"\w* \w called|strong="H7121"\w* \w him|strong="H6440"\w*, \w he|strong="H1004"\w* ate \w and|strong="H1004"\w* \w drank|strong="H8354"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*; \w and|strong="H1004"\w* \w he|strong="H1004"\w* \w made|strong="H1732"\w* \w him|strong="H6440"\w* \w drunk|strong="H8354"\w*. \w At|strong="H1004"\w* \w evening|strong="H6153"\w*, \w he|strong="H1004"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3381"\w* \w lie|strong="H7901"\w* \w on|strong="H1004"\w* \w his|strong="H7121"\w* \w bed|strong="H4904"\w* \w with|strong="H5973"\w* \w the|strong="H6440"\w* \w servants|strong="H5650"\w* \w of|strong="H1004"\w* \w his|strong="H7121"\w* lord, \w but|strong="H3808"\w* didn’t \w go|strong="H3318"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w his|strong="H7121"\w* \w house|strong="H1004"\w*. +\v 14 \w In|strong="H3789"\w* \w the|strong="H7971"\w* \w morning|strong="H1242"\w*, \w David|strong="H1732"\w* \w wrote|strong="H3789"\w* \w a|strong="H3068"\w* \w letter|strong="H5612"\w* \w to|strong="H7971"\w* \w Joab|strong="H3097"\w* \w and|strong="H7971"\w* \w sent|strong="H7971"\w* \w it|strong="H1242"\w* \w by|strong="H3027"\w* \w the|strong="H7971"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* Uriah. +\v 15 \w He|strong="H5221"\w* \w wrote|strong="H3789"\w* \w in|strong="H4191"\w* \w the|strong="H6440"\w* \w letter|strong="H5612"\w*, saying, “Send Uriah \w to|strong="H7725"\w* \w the|strong="H6440"\w* \w forefront|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w hottest|strong="H2389"\w* \w battle|strong="H4421"\w*, \w and|strong="H7725"\w* \w retreat|strong="H7725"\w* \w from|strong="H7725"\w* \w him|strong="H6440"\w*, \w that|strong="H4421"\w* \w he|strong="H5221"\w* \w may|strong="H7725"\w* \w be|strong="H4191"\w* \w struck|strong="H5221"\w* \w and|strong="H7725"\w* \w die|strong="H4191"\w*.” +\p +\v 16 \w When|strong="H3588"\w* \w Joab|strong="H3097"\w* \w kept|strong="H8104"\w* \w watch|strong="H8104"\w* \w on|strong="H1961"\w* \w the|strong="H3588"\w* \w city|strong="H5892"\w*, \w he|strong="H3588"\w* \w assigned|strong="H5414"\w* Uriah \w to|strong="H1961"\w* \w the|strong="H3588"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w he|strong="H3588"\w* \w knew|strong="H3045"\w* \w that|strong="H3588"\w* \w valiant|strong="H2428"\w* \w men|strong="H2428"\w* \w were|strong="H1961"\w*. +\v 17 \w The|strong="H4480"\w* \w men|strong="H5971"\w* \w of|strong="H5892"\w* \w the|strong="H4480"\w* \w city|strong="H5892"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H5971"\w* \w fought|strong="H3898"\w* \w with|strong="H3898"\w* \w Joab|strong="H3097"\w*. \w Some|strong="H4480"\w* \w of|strong="H5892"\w* \w the|strong="H4480"\w* \w people|strong="H5971"\w* \w fell|strong="H5307"\w*, \w even|strong="H1571"\w* \w of|strong="H5892"\w* \w David|strong="H1732"\w*’s \w servants|strong="H5650"\w*; \w and|strong="H5971"\w* Uriah \w the|strong="H4480"\w* \w Hittite|strong="H2850"\w* \w died|strong="H4191"\w* \w also|strong="H1571"\w*. +\v 18 \w Then|strong="H7971"\w* \w Joab|strong="H3097"\w* \w sent|strong="H7971"\w* \w and|strong="H7971"\w* \w told|strong="H5046"\w* \w David|strong="H1732"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w things|strong="H1697"\w* \w concerning|strong="H1697"\w* \w the|strong="H3605"\w* \w war|strong="H4421"\w*; +\v 19 \w and|strong="H4428"\w* \w he|strong="H3605"\w* \w commanded|strong="H6680"\w* \w the|strong="H3605"\w* \w messenger|strong="H4397"\w*, \w saying|strong="H1697"\w*, “\w When|strong="H3615"\w* \w you|strong="H6680"\w* \w have|strong="H1697"\w* \w finished|strong="H3615"\w* \w telling|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w things|strong="H1697"\w* \w concerning|strong="H1697"\w* \w the|strong="H3605"\w* \w war|strong="H4421"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, +\v 20 \w it|strong="H5921"\w* \w shall|strong="H4428"\w* \w be|strong="H1961"\w* \w that|strong="H3045"\w*, \w if|strong="H1961"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w wrath|strong="H2534"\w* \w arise|strong="H5927"\w*, \w and|strong="H4428"\w* \w he|strong="H3808"\w* asks \w you|strong="H5921"\w*, ‘\w Why|strong="H4069"\w* \w did|strong="H3808"\w* \w you|strong="H5921"\w* \w go|strong="H5927"\w* \w so|strong="H1961"\w* \w near|strong="H5066"\w* \w to|strong="H5927"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w to|strong="H5927"\w* \w fight|strong="H3898"\w*? Didn’t \w you|strong="H5921"\w* \w know|strong="H3045"\w* \w that|strong="H3045"\w* \w they|strong="H3808"\w* \w would|strong="H4428"\w* \w shoot|strong="H3384"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w wall|strong="H2346"\w*? +\v 21 \w Who|strong="H4310"\w* \w struck|strong="H5221"\w* Abimelech \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jerubbesheth|strong="H3380"\w*? Didn’t \w a|strong="H3068"\w* woman \w cast|strong="H7993"\w* \w an|strong="H5221"\w* \w upper|strong="H7393"\w* \w millstone|strong="H7393"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w wall|strong="H2346"\w*, \w so|strong="H3808"\w* \w that|strong="H1121"\w* \w he|strong="H3808"\w* \w died|strong="H4191"\w* \w at|strong="H5921"\w* \w Thebez|strong="H8405"\w*? \w Why|strong="H4100"\w* \w did|strong="H4100"\w* \w you|strong="H5921"\w* \w go|strong="H5066"\w* \w so|strong="H3808"\w* \w near|strong="H5066"\w* \w the|strong="H5921"\w* \w wall|strong="H2346"\w*?’ \w then|strong="H1571"\w* \w you|strong="H5921"\w* \w shall|strong="H1121"\w* say, ‘\w Your|strong="H5921"\w* \w servant|strong="H5650"\w* Uriah \w the|strong="H5921"\w* \w Hittite|strong="H2850"\w* \w is|strong="H4310"\w* \w also|strong="H1571"\w* \w dead|strong="H4191"\w*.’” +\p +\v 22 \w So|strong="H7971"\w* \w the|strong="H3605"\w* \w messenger|strong="H4397"\w* \w went|strong="H3212"\w*, \w and|strong="H7971"\w* \w came|strong="H3212"\w* \w and|strong="H7971"\w* showed \w David|strong="H1732"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Joab|strong="H3097"\w* \w had|strong="H1732"\w* \w sent|strong="H7971"\w* \w him|strong="H7971"\w* \w for|strong="H7971"\w*. +\v 23 \w The|strong="H5921"\w* \w messenger|strong="H4397"\w* \w said|strong="H3318"\w* \w to|strong="H5704"\w* \w David|strong="H1732"\w*, “\w The|strong="H5921"\w* men \w prevailed|strong="H1396"\w* \w against|strong="H5921"\w* \w us|strong="H5921"\w*, \w and|strong="H1732"\w* \w came|strong="H1961"\w* \w out|strong="H3318"\w* \w to|strong="H5704"\w* \w us|strong="H5921"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w field|strong="H7704"\w*; \w and|strong="H1732"\w* \w we|strong="H3068"\w* \w were|strong="H1961"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w entrance|strong="H6607"\w* \w of|strong="H8179"\w* \w the|strong="H5921"\w* \w gate|strong="H8179"\w*. +\v 24 \w The|strong="H5921"\w* \w shooters|strong="H3384"\w* \w shot|strong="H3384"\w* \w at|strong="H5921"\w* \w your|strong="H5921"\w* \w servants|strong="H5650"\w* \w from|strong="H5921"\w* \w off|strong="H5921"\w* \w the|strong="H5921"\w* \w wall|strong="H2346"\w*; \w and|strong="H4428"\w* some \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w servants|strong="H5650"\w* \w are|strong="H5650"\w* \w dead|strong="H4191"\w*, \w and|strong="H4428"\w* \w your|strong="H5921"\w* \w servant|strong="H5650"\w* Uriah \w the|strong="H5921"\w* \w Hittite|strong="H2850"\w* \w is|strong="H1571"\w* \w also|strong="H1571"\w* \w dead|strong="H4191"\w*.” +\p +\v 25 \w Then|strong="H2088"\w* \w David|strong="H1732"\w* \w said|strong="H1697"\w* \w to|strong="H4397"\w* \w the|strong="H3588"\w* \w messenger|strong="H4397"\w*, “Tell \w Joab|strong="H3097"\w*, ‘Don’t let \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w displease|strong="H7489"\w* \w you|strong="H3588"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w sword|strong="H2719"\w* devours \w one|strong="H2088"\w* \w as|strong="H1697"\w* \w well|strong="H5869"\w* \w as|strong="H1697"\w* \w another|strong="H2088"\w*. \w Make|strong="H2388"\w* \w your|strong="H3588"\w* \w battle|strong="H4421"\w* \w stronger|strong="H2388"\w* \w against|strong="H4421"\w* \w the|strong="H3588"\w* \w city|strong="H5892"\w*, \w and|strong="H5869"\w* \w overthrow|strong="H2040"\w* \w it|strong="H3588"\w*.’ \w Encourage|strong="H2388"\w* \w him|strong="H1732"\w*.” +\p +\v 26 \w When|strong="H3588"\w* Uriah’s wife \w heard|strong="H8085"\w* \w that|strong="H3588"\w* Uriah \w her|strong="H5921"\w* \w husband|strong="H1167"\w* was \w dead|strong="H4191"\w*, \w she|strong="H3588"\w* \w mourned|strong="H5594"\w* \w for|strong="H3588"\w* \w her|strong="H5921"\w* \w husband|strong="H1167"\w*. +\v 27 \w When|strong="H1961"\w* \w the|strong="H6213"\w* mourning \w was|strong="H3068"\w* \w past|strong="H5674"\w*, \w David|strong="H1732"\w* \w sent|strong="H7971"\w* \w and|strong="H1121"\w* \w took|strong="H1961"\w* \w her|strong="H7971"\w* \w home|strong="H1004"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w house|strong="H1004"\w*, \w and|strong="H1121"\w* she \w became|strong="H3205"\w* \w his|strong="H3068"\w* wife \w and|strong="H1121"\w* \w bore|strong="H3205"\w* \w him|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*. \w But|strong="H1961"\w* \w the|strong="H6213"\w* \w thing|strong="H1697"\w* \w that|strong="H3068"\w* \w David|strong="H1732"\w* \w had|strong="H3068"\w* \w done|strong="H6213"\w* \w displeased|strong="H7489"\w* \w Yahweh|strong="H3068"\w*. +\c 12 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w sent|strong="H7971"\w* \w Nathan|strong="H5416"\w* \w to|strong="H3068"\w* \w David|strong="H1732"\w*. \w He|strong="H3068"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w him|strong="H7971"\w*, \w and|strong="H3068"\w* said \w to|strong="H3068"\w* \w him|strong="H7971"\w*, “\w There|strong="H1961"\w* \w were|strong="H1961"\w* \w two|strong="H8147"\w* \w men|strong="H6223"\w* \w in|strong="H3068"\w* \w one|strong="H1961"\w* \w city|strong="H5892"\w*: \w the|strong="H3068"\w* \w one|strong="H1961"\w* \w rich|strong="H6223"\w*, \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w other|strong="H8147"\w* \w poor|strong="H7326"\w*. +\v 2 \w The|strong="H1961"\w* \w rich|strong="H6223"\w* \w man|strong="H6223"\w* \w had|strong="H1961"\w* \w very|strong="H3966"\w* \w many|strong="H7235"\w* \w flocks|strong="H6629"\w* \w and|strong="H6629"\w* \w herds|strong="H1241"\w*, +\v 3 \w but|strong="H3588"\w* \w the|strong="H3605"\w* \w poor|strong="H7326"\w* \w man|strong="H1121"\w* \w had|strong="H1961"\w* \w nothing|strong="H3605"\w*, \w except|strong="H3588"\w* \w one|strong="H3605"\w* \w little|strong="H6996"\w* \w ewe|strong="H3535"\w* \w lamb|strong="H3535"\w*, \w which|strong="H1323"\w* \w he|strong="H3588"\w* \w had|strong="H1961"\w* \w bought|strong="H7069"\w* \w and|strong="H1121"\w* \w raised|strong="H1431"\w*. \w It|strong="H3588"\w* \w grew|strong="H1431"\w* \w up|strong="H1431"\w* \w together|strong="H3162"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w* \w and|strong="H1121"\w* \w with|strong="H5973"\w* \w his|strong="H3605"\w* \w children|strong="H1121"\w*. \w It|strong="H3588"\w* ate \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w own|strong="H1961"\w* food, \w drank|strong="H8354"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w own|strong="H1961"\w* \w cup|strong="H3563"\w*, \w and|strong="H1121"\w* \w lay|strong="H7901"\w* \w in|strong="H1121"\w* \w his|strong="H3605"\w* \w bosom|strong="H2436"\w*, \w and|strong="H1121"\w* \w was|strong="H1961"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w daughter|strong="H1323"\w* \w to|strong="H1961"\w* \w him|strong="H5973"\w*. +\v 4 \w A|strong="H3068"\w* \w traveler|strong="H1982"\w* came \w to|strong="H6213"\w* \w the|strong="H3947"\w* \w rich|strong="H6223"\w* \w man|strong="H6223"\w*, \w and|strong="H6629"\w* \w he|strong="H6213"\w* didn’t want \w to|strong="H6213"\w* \w take|strong="H3947"\w* \w of|strong="H6629"\w* \w his|strong="H3947"\w* own \w flock|strong="H6629"\w* \w and|strong="H6629"\w* \w of|strong="H6629"\w* \w his|strong="H3947"\w* own \w herd|strong="H1241"\w* \w to|strong="H6213"\w* \w prepare|strong="H6213"\w* \w for|strong="H6213"\w* \w the|strong="H3947"\w* wayfaring \w man|strong="H6223"\w* \w who|strong="H6213"\w* \w had|strong="H2550"\w* come \w to|strong="H6213"\w* \w him|strong="H6213"\w*, \w but|strong="H7326"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w poor|strong="H7326"\w* \w man|strong="H6223"\w*’s \w lamb|strong="H3535"\w* \w and|strong="H6629"\w* \w prepared|strong="H6213"\w* \w it|strong="H6213"\w* \w for|strong="H6213"\w* \w the|strong="H3947"\w* \w man|strong="H6223"\w* \w who|strong="H6213"\w* \w had|strong="H2550"\w* come \w to|strong="H6213"\w* \w him|strong="H6213"\w*.” +\p +\v 5 \w David|strong="H1732"\w*’s anger \w burned|strong="H2734"\w* \w hot|strong="H2734"\w* \w against|strong="H2734"\w* \w the|strong="H3588"\w* \w man|strong="H1121"\w*, \w and|strong="H1121"\w* \w he|strong="H3588"\w* said \w to|strong="H3068"\w* \w Nathan|strong="H5416"\w*, “\w As|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*, \w the|strong="H3588"\w* \w man|strong="H1121"\w* \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w* \w this|strong="H2063"\w* \w deserves|strong="H1121"\w* \w to|strong="H3068"\w* \w die|strong="H4194"\w*! +\v 6 \w He|strong="H6213"\w* \w must|strong="H3808"\w* \w restore|strong="H7999"\w* \w the|strong="H5921"\w* \w lamb|strong="H3535"\w* fourfold, \w because|strong="H5921"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w and|strong="H6213"\w* \w because|strong="H5921"\w* \w he|strong="H6213"\w* \w had|strong="H2550"\w* \w no|strong="H3808"\w* \w pity|strong="H2550"\w*!” +\p +\v 7 \w Nathan|strong="H5416"\w* said \w to|strong="H3478"\w* \w David|strong="H1732"\w*, “\w You|strong="H5921"\w* \w are|strong="H3478"\w* \w the|strong="H5921"\w* man! \w This|strong="H3541"\w* \w is|strong="H3068"\w* \w what|strong="H3541"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*: ‘\w I|strong="H3541"\w* \w anointed|strong="H4886"\w* \w you|strong="H5921"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w I|strong="H3541"\w* \w delivered|strong="H5337"\w* \w you|strong="H5921"\w* \w out|strong="H5921"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w Saul|strong="H7586"\w*. +\v 8 \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w you|strong="H5414"\w* \w your|strong="H5414"\w* \w master|strong="H5414"\w*’s \w house|strong="H1004"\w* \w and|strong="H3063"\w* \w your|strong="H5414"\w* \w master|strong="H5414"\w*’s wives \w into|strong="H3063"\w* \w your|strong="H5414"\w* \w bosom|strong="H2436"\w*, \w and|strong="H3063"\w* \w gave|strong="H5414"\w* \w you|strong="H5414"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w*; \w and|strong="H3063"\w* if \w that|strong="H3478"\w* \w would|strong="H3478"\w* \w have|strong="H3478"\w* \w been|strong="H4592"\w* too \w little|strong="H4592"\w*, \w I|strong="H5414"\w* \w would|strong="H3478"\w* \w have|strong="H3478"\w* \w added|strong="H3254"\w* \w to|strong="H3478"\w* \w you|strong="H5414"\w* many \w more|strong="H3254"\w* \w such|strong="H2007"\w* \w things|strong="H2007"\w*. +\v 9 \w Why|strong="H4069"\w* \w have|strong="H3068"\w* \w you|strong="H3947"\w* despised \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w sight|strong="H5869"\w*? \w You|strong="H3947"\w* \w have|strong="H3068"\w* \w struck|strong="H5221"\w* Uriah \w the|strong="H3947"\w* \w Hittite|strong="H2850"\w* \w with|strong="H3068"\w* \w the|strong="H3947"\w* \w sword|strong="H2719"\w*, \w have|strong="H3068"\w* \w taken|strong="H3947"\w* \w his|strong="H3068"\w* wife \w to|strong="H3068"\w* \w be|strong="H1697"\w* \w your|strong="H3068"\w* wife, \w and|strong="H1121"\w* \w have|strong="H3068"\w* \w slain|strong="H2026"\w* \w him|strong="H5221"\w* \w with|strong="H3068"\w* \w the|strong="H3947"\w* \w sword|strong="H2719"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*. +\v 10 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w the|strong="H3588"\w* \w sword|strong="H2719"\w* \w will|strong="H1961"\w* \w never|strong="H3808"\w* \w depart|strong="H5493"\w* \w from|strong="H5493"\w* \w your|strong="H3947"\w* \w house|strong="H1004"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* despised \w me|strong="H3947"\w* \w and|strong="H1004"\w* \w have|strong="H1961"\w* \w taken|strong="H3947"\w* Uriah \w the|strong="H3588"\w* \w Hittite|strong="H2850"\w*’s wife \w to|strong="H5704"\w* \w be|strong="H1961"\w* \w your|strong="H3947"\w* wife.’ +\p +\v 11 “\w This|strong="H2063"\w* \w is|strong="H3068"\w* \w what|strong="H7451"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w evil|strong="H7451"\w* \w against|strong="H5921"\w* \w you|strong="H5414"\w* \w out|strong="H5414"\w* \w of|strong="H1004"\w* \w your|strong="H3068"\w* \w own|strong="H5973"\w* \w house|strong="H1004"\w*; \w and|strong="H6965"\w* \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w take|strong="H3947"\w* \w your|strong="H3068"\w* wives \w before|strong="H5869"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w* \w and|strong="H6965"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w neighbor|strong="H7453"\w*, \w and|strong="H6965"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w lie|strong="H7901"\w* \w with|strong="H5973"\w* \w your|strong="H3068"\w* wives \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w sight|strong="H5869"\w* \w of|strong="H1004"\w* \w this|strong="H2063"\w* \w sun|strong="H8121"\w*. +\v 12 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w did|strong="H6213"\w* \w this|strong="H2088"\w* \w secretly|strong="H5643"\w*, \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3478"\w* \w do|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w before|strong="H5048"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w before|strong="H5048"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*.’” +\p +\v 13 \w David|strong="H1732"\w* said \w to|strong="H4191"\w* \w Nathan|strong="H5416"\w*, “\w I|strong="H3808"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w Yahweh|strong="H3068"\w*.” +\p \w Nathan|strong="H5416"\w* said \w to|strong="H4191"\w* \w David|strong="H1732"\w*, “\w Yahweh|strong="H3068"\w* \w also|strong="H1571"\w* \w has|strong="H3068"\w* \w put|strong="H4191"\w* \w away|strong="H5674"\w* \w your|strong="H3068"\w* \w sin|strong="H2403"\w*. \w You|strong="H3808"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*. +\v 14 \w However|strong="H1571"\w*, \w because|strong="H3588"\w* \w by|strong="H3068"\w* \w this|strong="H2088"\w* \w deed|strong="H1697"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w given|strong="H5006"\w* \w great|strong="H5006"\w* \w occasion|strong="H5006"\w* \w to|strong="H4191"\w* \w Yahweh|strong="H3068"\w*’s enemies \w to|strong="H4191"\w* \w blaspheme|strong="H5006"\w*, \w the|strong="H3588"\w* \w child|strong="H1121"\w* \w also|strong="H1571"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w born|strong="H3209"\w* \w to|strong="H4191"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w surely|strong="H4191"\w* \w die|strong="H4191"\w*.” +\v 15 \w Then|strong="H1732"\w* \w Nathan|strong="H5416"\w* \w departed|strong="H3212"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w house|strong="H1004"\w*. +\p \w Yahweh|strong="H3068"\w* \w struck|strong="H5062"\w* \w the|strong="H3205"\w* \w child|strong="H3206"\w* \w that|strong="H3068"\w* Uriah’s wife \w bore|strong="H3205"\w* \w to|strong="H3068"\w* \w David|strong="H1732"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w was|strong="H3068"\w* very sick. +\v 16 \w David|strong="H1732"\w* \w therefore|strong="H1732"\w* begged God \w for|strong="H1157"\w* \w the|strong="H1245"\w* \w child|strong="H5288"\w*; \w and|strong="H1732"\w* \w David|strong="H1732"\w* \w fasted|strong="H6684"\w*, \w and|strong="H1732"\w* \w went|strong="H1732"\w* \w in|strong="H7901"\w* \w and|strong="H1732"\w* \w lay|strong="H7901"\w* \w all|strong="H7901"\w* \w night|strong="H3885"\w* \w on|strong="H7901"\w* \w the|strong="H1245"\w* ground. +\v 17 \w The|strong="H5921"\w* \w elders|strong="H2205"\w* \w of|strong="H1004"\w* \w his|strong="H5921"\w* \w house|strong="H1004"\w* \w arose|strong="H6965"\w* \w beside|strong="H5921"\w* \w him|strong="H5921"\w*, \w to|strong="H5921"\w* \w raise|strong="H6965"\w* \w him|strong="H5921"\w* \w up|strong="H6965"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* earth; \w but|strong="H3808"\w* \w he|strong="H1004"\w* would \w not|strong="H3808"\w*, \w and|strong="H6965"\w* \w he|strong="H1004"\w* didn’t \w eat|strong="H3899"\w* \w bread|strong="H3899"\w* \w with|strong="H1004"\w* \w them|strong="H5921"\w*. +\v 18 \w On|strong="H3117"\w* \w the|strong="H8085"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*, \w the|strong="H8085"\w* \w child|strong="H3206"\w* \w died|strong="H4191"\w*. \w David|strong="H1732"\w*’s \w servants|strong="H5650"\w* \w were|strong="H1961"\w* \w afraid|strong="H3372"\w* \w to|strong="H1696"\w* \w tell|strong="H5046"\w* \w him|strong="H5046"\w* \w that|strong="H3588"\w* \w the|strong="H8085"\w* \w child|strong="H3206"\w* \w was|strong="H1961"\w* \w dead|strong="H4191"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w said|strong="H1696"\w*, “\w Behold|strong="H2009"\w*, \w while|strong="H1961"\w* \w the|strong="H8085"\w* \w child|strong="H3206"\w* \w was|strong="H1961"\w* \w yet|strong="H3588"\w* \w alive|strong="H2416"\w*, \w we|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5046"\w* \w and|strong="H3117"\w* \w he|strong="H3588"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H1696"\w* \w our|strong="H8085"\w* \w voice|strong="H6963"\w*. \w How|strong="H3588"\w* \w will|strong="H1961"\w* \w he|strong="H3588"\w* \w then|strong="H1961"\w* \w harm|strong="H7451"\w* \w himself|strong="H6213"\w* \w if|strong="H3588"\w* \w we|strong="H3068"\w* \w tell|strong="H5046"\w* \w him|strong="H5046"\w* \w that|strong="H3588"\w* \w the|strong="H8085"\w* \w child|strong="H3206"\w* \w is|strong="H3117"\w* \w dead|strong="H4191"\w*?” +\p +\v 19 \w But|strong="H3588"\w* \w when|strong="H3588"\w* \w David|strong="H1732"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w his|strong="H1732"\w* \w servants|strong="H5650"\w* \w were|strong="H5650"\w* \w whispering|strong="H3907"\w* together, \w David|strong="H1732"\w* \w perceived|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H7200"\w* \w child|strong="H3206"\w* \w was|strong="H1732"\w* \w dead|strong="H4191"\w*; \w and|strong="H1732"\w* \w David|strong="H1732"\w* said \w to|strong="H4191"\w* \w his|strong="H1732"\w* \w servants|strong="H5650"\w*, “\w Is|strong="H5650"\w* \w the|strong="H7200"\w* \w child|strong="H3206"\w* \w dead|strong="H4191"\w*?” +\p \w They|strong="H3588"\w* said, “\w He|strong="H3588"\w* \w is|strong="H5650"\w* \w dead|strong="H4191"\w*.” +\p +\v 20 \w Then|strong="H6965"\w* \w David|strong="H1732"\w* \w arose|strong="H6965"\w* \w from|strong="H6965"\w* \w the|strong="H3068"\w* earth, \w and|strong="H6965"\w* \w washed|strong="H7364"\w* \w and|strong="H6965"\w* \w anointed|strong="H5480"\w* \w himself|strong="H7812"\w*, \w and|strong="H6965"\w* \w changed|strong="H2498"\w* \w his|strong="H7760"\w* \w clothing|strong="H8071"\w*; \w and|strong="H6965"\w* \w he|strong="H3068"\w* \w came|strong="H3068"\w* \w into|strong="H7760"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H6965"\w* \w worshiped|strong="H7812"\w*. \w Then|strong="H6965"\w* \w he|strong="H3068"\w* \w came|strong="H3068"\w* \w to|strong="H3068"\w* \w his|strong="H7760"\w* own \w house|strong="H1004"\w*; \w and|strong="H6965"\w* \w when|strong="H3068"\w* \w he|strong="H3068"\w* \w requested|strong="H7592"\w*, \w they|strong="H3068"\w* \w set|strong="H7760"\w* \w bread|strong="H3899"\w* \w before|strong="H6965"\w* \w him|strong="H7760"\w* \w and|strong="H6965"\w* \w he|strong="H3068"\w* ate. +\v 21 \w Then|strong="H6965"\w* \w his|strong="H6965"\w* \w servants|strong="H5650"\w* \w said|strong="H1697"\w* \w to|strong="H4191"\w* \w him|strong="H6213"\w*, “\w What|strong="H4100"\w* \w is|strong="H2088"\w* \w this|strong="H2088"\w* \w that|strong="H1697"\w* \w you|strong="H6213"\w* \w have|strong="H5650"\w* \w done|strong="H6213"\w*? \w You|strong="H6213"\w* \w fasted|strong="H6684"\w* \w and|strong="H6965"\w* \w wept|strong="H1058"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w child|strong="H3206"\w* \w while|strong="H2088"\w* \w he|strong="H6213"\w* \w was|strong="H1697"\w* \w alive|strong="H2416"\w*, \w but|strong="H4191"\w* \w when|strong="H6213"\w* \w the|strong="H6213"\w* \w child|strong="H3206"\w* \w was|strong="H1697"\w* \w dead|strong="H4191"\w*, \w you|strong="H6213"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H6965"\w* ate \w bread|strong="H3899"\w*.” +\p +\v 22 \w He|strong="H3588"\w* said, “\w While|strong="H5750"\w* \w the|strong="H3588"\w* \w child|strong="H3206"\w* \w was|strong="H3068"\w* \w yet|strong="H5750"\w* \w alive|strong="H2416"\w*, \w I|strong="H3588"\w* \w fasted|strong="H6684"\w* \w and|strong="H3068"\w* \w wept|strong="H1058"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* said, ‘\w Who|strong="H4310"\w* \w knows|strong="H3045"\w* \w whether|strong="H3045"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3045"\w* \w be|strong="H5750"\w* \w gracious|strong="H2603"\w* \w to|strong="H3068"\w* \w me|strong="H2603"\w*, \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w child|strong="H3206"\w* \w may|strong="H3068"\w* \w live|strong="H2416"\w*?’ +\v 23 \w But|strong="H3808"\w* \w now|strong="H6258"\w* \w he|strong="H1931"\w* \w is|strong="H2088"\w* \w dead|strong="H4191"\w*. \w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w I|strong="H6258"\w* \w fast|strong="H6684"\w*? \w Can|strong="H3201"\w* \w I|strong="H6258"\w* \w bring|strong="H7725"\w* \w him|strong="H7725"\w* \w back|strong="H7725"\w* \w again|strong="H7725"\w*? \w I|strong="H6258"\w* \w will|strong="H3808"\w* \w go|strong="H1980"\w* \w to|strong="H1980"\w* \w him|strong="H7725"\w*, \w but|strong="H3808"\w* \w he|strong="H1931"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w return|strong="H7725"\w* \w to|strong="H1980"\w* \w me|strong="H7725"\w*.” +\p +\v 24 \w David|strong="H1732"\w* \w comforted|strong="H5162"\w* \w Bathsheba|strong="H1339"\w* \w his|strong="H3068"\w* wife, \w and|strong="H1121"\w* \w went|strong="H1732"\w* \w in|strong="H3068"\w* \w to|strong="H3068"\w* \w her|strong="H7121"\w*, \w and|strong="H1121"\w* \w lay|strong="H7901"\w* \w with|strong="H5973"\w* \w her|strong="H7121"\w*. \w She|strong="H7121"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w he|strong="H3068"\w* \w called|strong="H7121"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w* \w Solomon|strong="H8010"\w*. \w Yahweh|strong="H3068"\w* loved \w him|strong="H3205"\w*; +\v 25 \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w sent|strong="H7971"\w* \w by|strong="H3027"\w* \w the|strong="H3068"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w Nathan|strong="H5416"\w* \w the|strong="H3068"\w* \w prophet|strong="H5030"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w named|strong="H7121"\w* \w him|strong="H7121"\w* \w Jedidiah|strong="H3041"\w*,\f + \fr 12:25 \ft “Jedidiah” means “loved by Yahweh”.\f* \w for|strong="H7121"\w* \w Yahweh|strong="H3068"\w*’s \w sake|strong="H5668"\w*. +\p +\v 26 Now \w Joab|strong="H3097"\w* \w fought|strong="H3898"\w* \w against|strong="H3898"\w* \w Rabbah|strong="H7237"\w* \w of|strong="H1121"\w* \w the|strong="H3920"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, \w and|strong="H1121"\w* \w took|strong="H3920"\w* \w the|strong="H3920"\w* \w royal|strong="H4410"\w* \w city|strong="H5892"\w*. +\v 27 \w Joab|strong="H3097"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H7971"\w* \w David|strong="H1732"\w*, \w and|strong="H7971"\w* said, “\w I|strong="H1571"\w* \w have|strong="H1571"\w* \w fought|strong="H3898"\w* \w against|strong="H3898"\w* \w Rabbah|strong="H7237"\w*. \w Yes|strong="H1571"\w*, \w I|strong="H1571"\w* \w have|strong="H1571"\w* \w taken|strong="H3920"\w* \w the|strong="H7971"\w* \w city|strong="H5892"\w* \w of|strong="H5892"\w* \w waters|strong="H4325"\w*. +\v 28 \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* gather \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H5892"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w together|strong="H5921"\w*, \w and|strong="H5971"\w* \w encamp|strong="H2583"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w and|strong="H5971"\w* \w take|strong="H3920"\w* \w it|strong="H7121"\w*; \w lest|strong="H6435"\w* \w I|strong="H5921"\w* \w take|strong="H3920"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*, \w and|strong="H5971"\w* \w it|strong="H7121"\w* \w be|strong="H8034"\w* \w called|strong="H7121"\w* \w by|strong="H5921"\w* \w my|strong="H5921"\w* \w name|strong="H8034"\w*.” +\p +\v 29 \w David|strong="H1732"\w* \w gathered|strong="H1732"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w together|strong="H3920"\w* \w and|strong="H3212"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Rabbah|strong="H7237"\w*, \w and|strong="H3212"\w* \w fought|strong="H3898"\w* \w against|strong="H3898"\w* \w it|strong="H3920"\w* \w and|strong="H3212"\w* \w took|strong="H3920"\w* \w it|strong="H3920"\w*. +\v 30 \w He|strong="H1732"\w* \w took|strong="H3947"\w* \w the|strong="H5921"\w* \w crown|strong="H5850"\w* \w of|strong="H4428"\w* \w their|strong="H3947"\w* \w king|strong="H4428"\w* \w from|strong="H3318"\w* \w off|strong="H5921"\w* \w his|strong="H3947"\w* \w head|strong="H7218"\w*; \w and|strong="H4428"\w* \w its|strong="H5921"\w* \w weight|strong="H4948"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w talent|strong="H3603"\w*\f + \fr 12:30 \ft A talent is about 30 kilograms or 66 pounds or 965 Troy ounces\f* \w of|strong="H4428"\w* \w gold|strong="H2091"\w*, \w and|strong="H4428"\w* \w in|strong="H5921"\w* \w it|strong="H5921"\w* \w were|strong="H1961"\w* \w precious|strong="H3368"\w* stones; \w and|strong="H4428"\w* \w it|strong="H5921"\w* \w was|strong="H1961"\w* \w set|strong="H3318"\w* \w on|strong="H5921"\w* \w David|strong="H1732"\w*’s \w head|strong="H7218"\w*. \w He|strong="H1732"\w* \w brought|strong="H3318"\w* \w a|strong="H3068"\w* \w great|strong="H3966"\w* quantity \w of|strong="H4428"\w* \w plunder|strong="H7998"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*. +\v 31 \w He|strong="H3651"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w in|strong="H6213"\w* \w it|strong="H7760"\w*, \w and|strong="H1121"\w* \w put|strong="H7760"\w* \w them|strong="H7725"\w* \w to|strong="H7725"\w* \w work|strong="H6213"\w* \w under|strong="H6213"\w* \w saws|strong="H4050"\w*, \w under|strong="H6213"\w* \w iron|strong="H1270"\w* \w picks|strong="H2757"\w*, \w under|strong="H6213"\w* \w axes|strong="H4037"\w* \w of|strong="H1121"\w* \w iron|strong="H1270"\w*, \w and|strong="H1121"\w* \w made|strong="H6213"\w* \w them|strong="H7725"\w* \w go|strong="H3318"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w brick|strong="H4404"\w* kiln; \w and|strong="H1121"\w* \w he|strong="H3651"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w* \w to|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*. \w Then|strong="H3318"\w* \w David|strong="H1732"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Jerusalem|strong="H3389"\w*. +\c 13 +\p +\v 1 \w After|strong="H1961"\w* \w this|strong="H3651"\w*, Absalom \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w* \w had|strong="H1961"\w* \w a|strong="H3068"\w* \w beautiful|strong="H3303"\w* sister, \w whose|strong="H1121"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Tamar|strong="H8559"\w*; \w and|strong="H1121"\w* Amnon \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w* loved \w her|strong="H1961"\w*. +\v 2 Amnon \w was|strong="H1931"\w* \w so|strong="H6213"\w* troubled \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w became|strong="H2470"\w* \w sick|strong="H2470"\w* \w because|strong="H3588"\w* \w of|strong="H5869"\w* \w his|strong="H6213"\w* sister \w Tamar|strong="H8559"\w*, \w for|strong="H3588"\w* \w she|strong="H1931"\w* \w was|strong="H1931"\w* \w a|strong="H3068"\w* \w virgin|strong="H1330"\w*, \w and|strong="H5869"\w* \w it|strong="H1931"\w* \w seemed|strong="H5869"\w* \w hard|strong="H6381"\w* \w to|strong="H6213"\w* Amnon \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w anything|strong="H3972"\w* \w to|strong="H6213"\w* \w her|strong="H1931"\w*. +\v 3 But Amnon \w had|strong="H1732"\w* \w a|strong="H3068"\w* \w friend|strong="H7453"\w* \w whose|strong="H1121"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Jonadab|strong="H3122"\w* \w the|strong="H1732"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shimeah|strong="H8093"\w*, \w David|strong="H1732"\w*’s \w brother|strong="H7453"\w*; \w and|strong="H1121"\w* \w Jonadab|strong="H3122"\w* \w was|strong="H8034"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* subtle \w man|strong="H2450"\w*. +\v 4 \w He|strong="H3808"\w* said \w to|strong="H1121"\w* \w him|strong="H5046"\w*, “\w Why|strong="H4069"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5046"\w* \w king|strong="H4428"\w*, \w are|strong="H1121"\w* \w you|strong="H5046"\w* \w so|strong="H3602"\w* sad \w from|strong="H1121"\w* \w day|strong="H1242"\w* \w to|strong="H1121"\w* \w day|strong="H1242"\w*? Won’t \w you|strong="H5046"\w* \w tell|strong="H5046"\w* \w me|strong="H5046"\w*?” +\p Amnon said \w to|strong="H1121"\w* \w him|strong="H5046"\w*, “\w I|strong="H3808"\w* love \w Tamar|strong="H8559"\w*, \w my|strong="H5046"\w* brother Absalom’s sister.” +\p +\v 5 \w Jonadab|strong="H3082"\w* said \w to|strong="H6213"\w* \w him|strong="H5921"\w*, “\w Lay|strong="H7901"\w* \w down|strong="H7901"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w bed|strong="H4904"\w* \w and|strong="H3027"\w* \w pretend|strong="H2470"\w* \w to|strong="H6213"\w* \w be|strong="H3027"\w* \w sick|strong="H2470"\w*. \w When|strong="H7200"\w* \w your|strong="H5921"\w* father comes \w to|strong="H6213"\w* \w see|strong="H7200"\w* \w you|strong="H5921"\w*, \w tell|strong="H4994"\w* \w him|strong="H5921"\w*, ‘\w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w my|strong="H7200"\w* sister \w Tamar|strong="H8559"\w* \w come|strong="H4994"\w* \w and|strong="H3027"\w* \w give|strong="H4994"\w* \w me|strong="H4994"\w* \w bread|strong="H3899"\w* \w to|strong="H6213"\w* \w eat|strong="H1262"\w*, \w and|strong="H3027"\w* \w prepare|strong="H6213"\w* \w the|strong="H5921"\w* \w food|strong="H3899"\w* \w in|strong="H5921"\w* \w my|strong="H7200"\w* \w sight|strong="H5869"\w*, \w that|strong="H7200"\w* \w I|strong="H5921"\w* \w may|strong="H4994"\w* \w see|strong="H7200"\w* \w it|strong="H5921"\w* \w and|strong="H3027"\w* \w eat|strong="H1262"\w* \w it|strong="H5921"\w* \w from|strong="H5921"\w* \w her|strong="H5921"\w* \w hand|strong="H3027"\w*.’” +\p +\v 6 \w So|strong="H7200"\w* Amnon \w lay|strong="H7901"\w* \w down|strong="H7901"\w* \w and|strong="H4428"\w* faked being \w sick|strong="H2470"\w*. \w When|strong="H7200"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w* \w came|strong="H4428"\w* \w to|strong="H3027"\w* \w see|strong="H7200"\w* \w him|strong="H3027"\w*, Amnon said \w to|strong="H3027"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w*, “\w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w my|strong="H7200"\w* sister \w Tamar|strong="H8559"\w* \w come|strong="H4994"\w* \w and|strong="H4428"\w* \w make|strong="H7200"\w* \w me|strong="H4994"\w* \w a|strong="H3068"\w* \w couple|strong="H8147"\w* \w of|strong="H4428"\w* \w cakes|strong="H3834"\w* \w in|strong="H4428"\w* \w my|strong="H7200"\w* \w sight|strong="H5869"\w*, \w that|strong="H7200"\w* \w I|strong="H7200"\w* \w may|strong="H4994"\w* \w eat|strong="H1262"\w* \w from|strong="H3027"\w* \w her|strong="H7200"\w* \w hand|strong="H3027"\w*.” +\p +\v 7 \w Then|strong="H7971"\w* \w David|strong="H1732"\w* \w sent|strong="H7971"\w* \w home|strong="H1004"\w* \w to|strong="H3212"\w* \w Tamar|strong="H8559"\w*, saying, “\w Go|strong="H3212"\w* \w now|strong="H4994"\w* \w to|strong="H3212"\w* \w your|strong="H6213"\w* brother Amnon’s \w house|strong="H1004"\w*, \w and|strong="H7971"\w* \w prepare|strong="H6213"\w* \w food|strong="H1279"\w* \w for|strong="H6213"\w* \w him|strong="H7971"\w*.” +\v 8 \w So|strong="H3947"\w* \w Tamar|strong="H8559"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w her|strong="H3947"\w* brother Amnon’s \w house|strong="H1004"\w*; \w and|strong="H1004"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w lying|strong="H7901"\w* \w down|strong="H7901"\w*. \w She|strong="H1931"\w* \w took|strong="H3947"\w* \w dough|strong="H1217"\w*, \w kneaded|strong="H3888"\w* \w it|strong="H1931"\w*, \w made|strong="H3947"\w* \w cakes|strong="H3834"\w* \w in|strong="H1004"\w* \w his|strong="H3947"\w* \w sight|strong="H5869"\w*, \w and|strong="H1004"\w* \w baked|strong="H1310"\w* \w the|strong="H3947"\w* \w cakes|strong="H3834"\w*. +\v 9 \w She|strong="H5921"\w* \w took|strong="H3947"\w* \w the|strong="H3605"\w* \w pan|strong="H4958"\w* \w and|strong="H6440"\w* \w poured|strong="H3332"\w* \w them|strong="H5921"\w* \w out|strong="H3318"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, \w but|strong="H3947"\w* \w he|strong="H3605"\w* \w refused|strong="H3985"\w* \w to|strong="H3318"\w* eat. Amnon \w said|strong="H3318"\w*, “\w Have|strong="H3605"\w* \w all|strong="H3605"\w* \w men|strong="H3605"\w* \w leave|strong="H3318"\w* \w me|strong="H6440"\w*.” \w Then|strong="H3318"\w* \w every|strong="H3605"\w* \w man|strong="H3605"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w him|strong="H6440"\w*. +\v 10 Amnon said \w to|strong="H6213"\w* \w Tamar|strong="H8559"\w*, “\w Bring|strong="H3947"\w* \w the|strong="H3947"\w* \w food|strong="H1279"\w* \w into|strong="H6213"\w* \w the|strong="H3947"\w* \w room|strong="H2315"\w*, \w that|strong="H3027"\w* \w I|strong="H3027"\w* \w may|strong="H6213"\w* \w eat|strong="H1262"\w* \w from|strong="H3027"\w* \w your|strong="H3947"\w* \w hand|strong="H3027"\w*.” \w Tamar|strong="H8559"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w cakes|strong="H3834"\w* which she \w had|strong="H3027"\w* \w made|strong="H6213"\w*, \w and|strong="H3027"\w* \w brought|strong="H3947"\w* \w them|strong="H3027"\w* \w into|strong="H6213"\w* \w the|strong="H3947"\w* \w room|strong="H2315"\w* \w to|strong="H6213"\w* Amnon \w her|strong="H3947"\w* brother. +\v 11 \w When|strong="H7901"\w* \w she|strong="H5973"\w* had \w brought|strong="H5066"\w* \w them|strong="H2388"\w* \w near|strong="H5066"\w* \w to|strong="H5066"\w* \w him|strong="H5973"\w* \w to|strong="H5066"\w* eat, he \w took|strong="H2388"\w* \w hold|strong="H2388"\w* \w of|strong="H2388"\w* \w her|strong="H7901"\w* \w and|strong="H2388"\w* said \w to|strong="H5066"\w* \w her|strong="H7901"\w*, “\w Come|strong="H5066"\w*, \w lie|strong="H7901"\w* \w with|strong="H5973"\w* \w me|strong="H5973"\w*, \w my|strong="H2388"\w* sister!” +\p +\v 12 \w She|strong="H3588"\w* answered \w him|strong="H6213"\w*, “\w No|strong="H3808"\w*, \w my|strong="H6213"\w* brother, \w do|strong="H6213"\w* \w not|strong="H3808"\w* \w force|strong="H6031"\w* \w me|strong="H6213"\w*! \w For|strong="H3588"\w* \w no|strong="H3808"\w* \w such|strong="H3651"\w* \w thing|strong="H5039"\w* \w ought|strong="H3651"\w* \w to|strong="H3478"\w* \w be|strong="H3808"\w* \w done|strong="H6213"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. Don’t \w you|strong="H3588"\w* \w do|strong="H6213"\w* \w this|strong="H2063"\w* \w folly|strong="H5039"\w*! +\v 13 \w As|strong="H1961"\w* \w for|strong="H3588"\w* \w me|strong="H4994"\w*, \w where|strong="H4480"\w* \w would|strong="H3478"\w* \w I|strong="H3588"\w* \w carry|strong="H3212"\w* \w my|strong="H1961"\w* \w shame|strong="H2781"\w*? \w And|strong="H3478"\w* \w as|strong="H1961"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*, \w you|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w one|strong="H3808"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w fools|strong="H5036"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w please|strong="H4994"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w withhold|strong="H4513"\w* \w me|strong="H4994"\w* \w from|strong="H4480"\w* \w you|strong="H3588"\w*.” +\p +\v 14 \w However|strong="H8085"\w*, \w he|strong="H4480"\w* would \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H8085"\w* \w her|strong="H6031"\w* \w voice|strong="H6963"\w*; \w but|strong="H3808"\w* being \w stronger|strong="H2388"\w* \w than|strong="H4480"\w* \w she|strong="H7901"\w*, \w he|strong="H4480"\w* \w forced|strong="H6031"\w* \w her|strong="H6031"\w* \w and|strong="H6963"\w* \w lay|strong="H7901"\w* \w with|strong="H7901"\w* \w her|strong="H6031"\w*. +\v 15 \w Then|strong="H6965"\w* Amnon \w hated|strong="H8130"\w* \w her|strong="H8130"\w* \w with|strong="H3212"\w* \w exceedingly|strong="H3966"\w* \w great|strong="H1419"\w* \w hatred|strong="H8135"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w hatred|strong="H8135"\w* \w with|strong="H3212"\w* \w which|strong="H3588"\w* \w he|strong="H3588"\w* \w hated|strong="H8130"\w* \w her|strong="H8130"\w* \w was|strong="H3966"\w* \w greater|strong="H1419"\w* \w than|strong="H1419"\w* \w the|strong="H3588"\w* love \w with|strong="H3212"\w* \w which|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H3588"\w* loved \w her|strong="H8130"\w*. Amnon said \w to|strong="H3212"\w* \w her|strong="H8130"\w*, “\w Arise|strong="H6965"\w*, \w be|strong="H8130"\w* \w gone|strong="H3212"\w*!” +\p +\v 16 \w She|strong="H2063"\w* \w said|strong="H8085"\w* \w to|strong="H7971"\w* \w him|strong="H7971"\w*, “\w Not|strong="H3808"\w* \w so|strong="H6213"\w*, \w because|strong="H5973"\w* \w this|strong="H2063"\w* \w great|strong="H1419"\w* \w wrong|strong="H7451"\w* \w in|strong="H6213"\w* \w sending|strong="H7971"\w* \w me|strong="H7971"\w* \w away|strong="H7971"\w* \w is|strong="H7451"\w* \w worse|strong="H7451"\w* \w than|strong="H3808"\w* \w the|strong="H8085"\w* \w other|strong="H2063"\w* \w that|strong="H8085"\w* \w you|strong="H7971"\w* \w did|strong="H6213"\w* \w to|strong="H7971"\w* \w me|strong="H7971"\w*!” +\p \w But|strong="H3808"\w* \w he|strong="H6213"\w* \w would|strong="H6213"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H7971"\w* \w her|strong="H7971"\w*. +\v 17 \w Then|strong="H7971"\w* \w he|strong="H5921"\w* \w called|strong="H7121"\w* \w his|strong="H7121"\w* \w servant|strong="H5288"\w* \w who|strong="H5288"\w* \w ministered|strong="H8334"\w* \w to|strong="H7971"\w* \w him|strong="H7121"\w*, \w and|strong="H7971"\w* \w said|strong="H7121"\w*, “\w Now|strong="H4994"\w* \w put|strong="H7971"\w* \w this|strong="H2063"\w* woman \w out|strong="H7971"\w* \w from|strong="H5921"\w* \w me|strong="H4994"\w*, \w and|strong="H7971"\w* \w bolt|strong="H5274"\w* \w the|strong="H5921"\w* \w door|strong="H1817"\w* \w after|strong="H5921"\w* \w her|strong="H7971"\w*.” +\p +\v 18 \w She|strong="H3588"\w* \w had|strong="H4428"\w* \w a|strong="H3068"\w* \w garment|strong="H3801"\w* \w of|strong="H4428"\w* various colors \w on|strong="H5921"\w* \w her|strong="H5921"\w*, \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w daughters|strong="H1323"\w* \w who|strong="H4428"\w* \w were|strong="H1323"\w* \w virgins|strong="H1330"\w* \w dressed|strong="H3847"\w* \w in|strong="H5921"\w* \w such|strong="H3651"\w* \w robes|strong="H4598"\w*. \w Then|strong="H3318"\w* \w his|strong="H5921"\w* \w servant|strong="H8334"\w* \w brought|strong="H3318"\w* \w her|strong="H5921"\w* \w out|strong="H3318"\w* \w and|strong="H4428"\w* \w bolted|strong="H5274"\w* \w the|strong="H5921"\w* \w door|strong="H1817"\w* \w after|strong="H5921"\w* \w her|strong="H5921"\w*. +\v 19 \w Tamar|strong="H8559"\w* \w put|strong="H7760"\w* ashes \w on|strong="H5921"\w* \w her|strong="H3947"\w* \w head|strong="H7218"\w*, \w and|strong="H1980"\w* \w tore|strong="H7167"\w* \w her|strong="H3947"\w* \w garment|strong="H3801"\w* \w of|strong="H3027"\w* various colors \w that|strong="H3027"\w* \w was|strong="H3027"\w* \w on|strong="H5921"\w* \w her|strong="H3947"\w*; \w and|strong="H1980"\w* \w she|strong="H5921"\w* \w laid|strong="H7760"\w* \w her|strong="H3947"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w her|strong="H3947"\w* \w head|strong="H7218"\w* \w and|strong="H1980"\w* \w went|strong="H1980"\w* \w her|strong="H3947"\w* \w way|strong="H3212"\w*, \w crying|strong="H2199"\w* \w aloud|strong="H2199"\w* \w as|strong="H1980"\w* \w she|strong="H5921"\w* \w went|strong="H1980"\w*. +\v 20 Absalom \w her|strong="H7896"\w* brother \w said|strong="H1697"\w* \w to|strong="H1961"\w* \w her|strong="H7896"\w*, “\w Has|strong="H1961"\w* Amnon \w your|strong="H1961"\w* brother \w been|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H5973"\w*? \w But|strong="H1961"\w* \w now|strong="H6258"\w* \w hold|strong="H1004"\w* \w your|strong="H1961"\w* \w peace|strong="H2790"\w*, \w my|strong="H1961"\w* sister. \w He|strong="H1931"\w* \w is|strong="H2088"\w* \w your|strong="H1961"\w* brother. Don’t \w take|strong="H1961"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w to|strong="H1961"\w* \w heart|strong="H3820"\w*.” +\p \w So|strong="H1961"\w* \w Tamar|strong="H8559"\w* \w remained|strong="H3427"\w* \w desolate|strong="H8076"\w* \w in|strong="H3427"\w* \w her|strong="H7896"\w* brother Absalom’s \w house|strong="H1004"\w*. +\v 21 \w But|strong="H8085"\w* \w when|strong="H8085"\w* \w King|strong="H4428"\w* \w David|strong="H1732"\w* \w heard|strong="H8085"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w these|strong="H8085"\w* \w things|strong="H1697"\w*, \w he|strong="H3605"\w* \w was|strong="H1732"\w* \w very|strong="H3966"\w* \w angry|strong="H2734"\w*. +\v 22 Absalom \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* Amnon \w neither|strong="H3808"\w* \w good|strong="H2896"\w* \w nor|strong="H3808"\w* \w bad|strong="H7451"\w*; \w for|strong="H3588"\w* Absalom \w hated|strong="H8130"\w* Amnon, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H3588"\w* \w forced|strong="H6031"\w* \w his|strong="H5921"\w* sister \w Tamar|strong="H8559"\w*. +\p +\v 23 \w After|strong="H1961"\w* two \w full|strong="H3117"\w* \w years|strong="H8141"\w*, Absalom \w had|strong="H1961"\w* sheep \w shearers|strong="H1494"\w* \w in|strong="H8141"\w* Baal Hazor, \w which|strong="H3117"\w* \w is|strong="H3117"\w* \w beside|strong="H5973"\w* Ephraim; \w and|strong="H1121"\w* Absalom \w invited|strong="H7121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w sons|strong="H1121"\w*. +\v 24 Absalom \w came|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H5973"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* said, “\w See|strong="H2009"\w* \w now|strong="H4994"\w*, \w your|strong="H4994"\w* \w servant|strong="H5650"\w* \w has|strong="H4428"\w* sheep \w shearers|strong="H1494"\w*. \w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w the|strong="H5973"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w his|strong="H1494"\w* \w servants|strong="H5650"\w* \w go|strong="H3212"\w* \w with|strong="H5973"\w* \w your|strong="H4994"\w* \w servant|strong="H5650"\w*.” +\p +\v 25 \w The|strong="H3605"\w* \w king|strong="H4428"\w* said \w to|strong="H3212"\w* Absalom, “\w No|strong="H3808"\w*, \w my|strong="H3605"\w* \w son|strong="H1121"\w*, \w let|strong="H4994"\w*’s \w not|strong="H3808"\w* \w all|strong="H3605"\w* \w go|strong="H3212"\w*, lest \w we|strong="H3068"\w* \w be|strong="H3808"\w* \w burdensome|strong="H3513"\w* \w to|strong="H3212"\w* \w you|strong="H3605"\w*.” \w He|strong="H3605"\w* \w pressed|strong="H6555"\w* \w him|strong="H5921"\w*; however \w he|strong="H3605"\w* \w would|strong="H4428"\w* \w not|strong="H3808"\w* \w go|strong="H3212"\w*, \w but|strong="H3808"\w* \w blessed|strong="H1288"\w* \w him|strong="H5921"\w*. +\p +\v 26 \w Then|strong="H4428"\w* Absalom said, “If \w not|strong="H3808"\w*, \w please|strong="H4994"\w* \w let|strong="H4994"\w* \w my|strong="H3808"\w* brother Amnon \w go|strong="H3212"\w* \w with|strong="H5973"\w* \w us|strong="H4994"\w*.” +\p \w The|strong="H5973"\w* \w king|strong="H4428"\w* said \w to|strong="H3212"\w* \w him|strong="H5973"\w*, “\w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w he|strong="H3808"\w* \w go|strong="H3212"\w* \w with|strong="H5973"\w* \w you|strong="H5973"\w*?” +\p +\v 27 \w But|strong="H3605"\w* Absalom \w pressed|strong="H6555"\w* \w him|strong="H7971"\w*, \w and|strong="H1121"\w* \w he|strong="H3605"\w* \w let|strong="H7971"\w* Amnon \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w sons|strong="H1121"\w* \w go|strong="H7971"\w* \w with|strong="H4428"\w* \w him|strong="H7971"\w*. +\v 28 Absalom \w commanded|strong="H6680"\w* \w his|strong="H7200"\w* \w servants|strong="H5288"\w*, saying, “\w Mark|strong="H7200"\w* \w now|strong="H4994"\w*, \w when|strong="H3588"\w* Amnon’s \w heart|strong="H3820"\w* \w is|strong="H3820"\w* \w merry|strong="H2896"\w* \w with|strong="H4191"\w* \w wine|strong="H3196"\w*; \w and|strong="H1121"\w* \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w tell|strong="H4994"\w* \w you|strong="H3588"\w*, ‘\w Strike|strong="H5221"\w* Amnon,’ \w then|strong="H1961"\w* \w kill|strong="H4191"\w* \w him|strong="H5221"\w*. Don’t \w be|strong="H1961"\w* \w afraid|strong="H3372"\w*. Haven’t \w I|strong="H3588"\w* \w commanded|strong="H6680"\w* \w you|strong="H3588"\w*? \w Be|strong="H1961"\w* \w courageous|strong="H2388"\w*, \w and|strong="H1121"\w* \w be|strong="H1961"\w* \w valiant|strong="H2428"\w*!” +\p +\v 29 \w The|strong="H3605"\w* \w servants|strong="H5288"\w* \w of|strong="H1121"\w* Absalom \w did|strong="H6213"\w* \w to|strong="H6213"\w* Amnon \w as|strong="H6213"\w* Absalom \w had|strong="H4428"\w* \w commanded|strong="H6680"\w*. \w Then|strong="H6965"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w sons|strong="H1121"\w* \w arose|strong="H6965"\w*, \w and|strong="H1121"\w* \w every|strong="H3605"\w* \w man|strong="H5288"\w* \w got|strong="H6965"\w* \w up|strong="H6965"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w mule|strong="H6505"\w* \w and|strong="H1121"\w* \w fled|strong="H5127"\w*. +\p +\v 30 \w While|strong="H1961"\w* \w they|strong="H1992"\w* \w were|strong="H1961"\w* \w on|strong="H1870"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w*, \w the|strong="H3605"\w* \w news|strong="H8052"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w David|strong="H1732"\w*, saying, “Absalom \w has|strong="H1961"\w* \w slain|strong="H5221"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w there|strong="H1961"\w* \w is|strong="H1870"\w* \w not|strong="H3808"\w* \w one|strong="H3605"\w* \w of|strong="H1121"\w* \w them|strong="H1992"\w* \w left|strong="H3498"\w*!” +\p +\v 31 \w Then|strong="H6965"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w arose|strong="H6965"\w*, \w and|strong="H6965"\w* \w tore|strong="H7167"\w* \w his|strong="H3605"\w* garments, \w and|strong="H6965"\w* \w lay|strong="H7901"\w* \w on|strong="H6965"\w* \w the|strong="H3605"\w* earth; \w and|strong="H6965"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w* \w stood|strong="H5324"\w* \w by|strong="H6965"\w* \w with|strong="H7901"\w* \w their|strong="H3605"\w* clothes \w torn|strong="H7167"\w*. +\v 32 \w Jonadab|strong="H3122"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shimeah|strong="H8093"\w*, \w David|strong="H1732"\w*’s brother, \w answered|strong="H6030"\w*, “Don’t \w let|strong="H7760"\w* \w my|strong="H3605"\w* lord \w suppose|strong="H3588"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H1961"\w* \w killed|strong="H4191"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w*, \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w sons|strong="H1121"\w*, \w for|strong="H3588"\w* Amnon \w only|strong="H3588"\w* \w is|strong="H3117"\w* \w dead|strong="H4191"\w*; \w for|strong="H3588"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w appointment|strong="H6310"\w* \w of|strong="H1121"\w* Absalom \w this|strong="H3588"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w determined|strong="H7760"\w* \w from|strong="H5921"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w forced|strong="H6031"\w* \w his|strong="H3605"\w* sister \w Tamar|strong="H8559"\w*. +\v 33 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* don’t \w let|strong="H6258"\w* \w my|strong="H3605"\w* lord \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w take|strong="H7760"\w* \w the|strong="H3605"\w* \w thing|strong="H1697"\w* \w to|strong="H4191"\w* \w his|strong="H3605"\w* \w heart|strong="H3820"\w*, \w to|strong="H4191"\w* \w think|strong="H3820"\w* \w that|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w sons|strong="H1121"\w* \w are|strong="H1121"\w* \w dead|strong="H4191"\w*; \w for|strong="H3588"\w* \w only|strong="H3588"\w* Amnon \w is|strong="H3820"\w* \w dead|strong="H4191"\w*.” +\v 34 \w But|strong="H7200"\w* Absalom \w fled|strong="H1272"\w*. \w The|strong="H7200"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* \w who|strong="H5971"\w* kept \w the|strong="H7200"\w* \w watch|strong="H6822"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w eyes|strong="H5869"\w* \w and|strong="H1980"\w* \w looked|strong="H7200"\w*, \w and|strong="H1980"\w* \w behold|strong="H2009"\w*, \w many|strong="H7227"\w* \w people|strong="H5971"\w* \w were|strong="H5971"\w* \w coming|strong="H1980"\w* \w by|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H2022"\w* \w the|strong="H7200"\w* hillside \w behind|strong="H1980"\w* \w him|strong="H7200"\w*. +\v 35 \w Jonadab|strong="H3122"\w* \w said|strong="H1697"\w* \w to|strong="H1961"\w* \w the|strong="H1697"\w* \w king|strong="H4428"\w*, “\w Behold|strong="H2009"\w*, \w the|strong="H1697"\w* \w king|strong="H4428"\w*’s \w sons|strong="H1121"\w* \w are|strong="H1121"\w* \w coming|strong="H2009"\w*! \w It|strong="H3651"\w* \w is|strong="H1697"\w* \w as|strong="H1697"\w* \w your|strong="H1961"\w* \w servant|strong="H5650"\w* \w said|strong="H1697"\w*.” +\v 36 \w As|strong="H1961"\w* soon \w as|strong="H1961"\w* \w he|strong="H3605"\w* \w had|strong="H1961"\w* \w finished|strong="H3615"\w* \w speaking|strong="H1696"\w*, \w behold|strong="H2009"\w*, \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w sons|strong="H1121"\w* \w came|strong="H1961"\w*, \w and|strong="H1121"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w their|strong="H3605"\w* \w voices|strong="H6963"\w* \w and|strong="H1121"\w* \w wept|strong="H1058"\w*. \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w also|strong="H1571"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w* \w wept|strong="H1058"\w* \w bitterly|strong="H1419"\w*. +\p +\v 37 \w But|strong="H3605"\w* Absalom \w fled|strong="H1272"\w* \w and|strong="H1121"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Talmai|strong="H8526"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ammihur, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Geshur|strong="H1650"\w*. \w David|strong="H3117"\w* mourned \w for|strong="H5921"\w* \w his|strong="H3605"\w* \w son|strong="H1121"\w* \w every|strong="H3605"\w* \w day|strong="H3117"\w*. +\v 38 \w So|strong="H1961"\w* Absalom \w fled|strong="H1272"\w* \w and|strong="H3212"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Geshur|strong="H1650"\w*, \w and|strong="H3212"\w* \w was|strong="H1961"\w* \w there|strong="H8033"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w*. +\v 39 \w King|strong="H4428"\w* \w David|strong="H1732"\w* \w longed|strong="H3615"\w* \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* Absalom, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w was|strong="H1732"\w* \w comforted|strong="H5162"\w* \w concerning|strong="H5921"\w* Amnon, \w since|strong="H3588"\w* \w he|strong="H3588"\w* \w was|strong="H1732"\w* \w dead|strong="H4191"\w*. +\c 14 +\p +\v 1 \w Now|strong="H3588"\w* \w Joab|strong="H3097"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w* \w perceived|strong="H3045"\w* \w that|strong="H3588"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w heart|strong="H3820"\w* \w was|strong="H3820"\w* \w toward|strong="H5921"\w* Absalom. +\v 2 \w Joab|strong="H3097"\w* \w sent|strong="H7971"\w* \w to|strong="H4191"\w* \w Tekoa|strong="H8620"\w* \w and|strong="H7971"\w* \w brought|strong="H3947"\w* \w a|strong="H3068"\w* \w wise|strong="H2450"\w* \w woman|strong="H2088"\w* \w from|strong="H5921"\w* \w there|strong="H8033"\w*, \w and|strong="H7971"\w* said \w to|strong="H4191"\w* \w her|strong="H7971"\w*, “\w Please|strong="H4994"\w* \w act|strong="H4994"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* mourner, \w and|strong="H7971"\w* \w put|strong="H4191"\w* \w on|strong="H5921"\w* mourning \w clothing|strong="H3847"\w*, \w please|strong="H4994"\w*, \w and|strong="H7971"\w* don’t \w anoint|strong="H5480"\w* \w yourself|strong="H3847"\w* \w with|strong="H3847"\w* \w oil|strong="H8081"\w*; \w but|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H3117"\w* \w a|strong="H3068"\w* \w woman|strong="H2088"\w* \w who|strong="H7227"\w* \w has|strong="H1961"\w* mourned \w a|strong="H3068"\w* \w long|strong="H3117"\w* \w time|strong="H3117"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w dead|strong="H4191"\w*. +\v 3 \w Go|strong="H4428"\w* \w in|strong="H4428"\w* \w to|strong="H1696"\w* \w the|strong="H7760"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w speak|strong="H1696"\w* \w like|strong="H1697"\w* \w this|strong="H2088"\w* \w to|strong="H1696"\w* \w him|strong="H7760"\w*.” \w So|strong="H2088"\w* \w Joab|strong="H3097"\w* \w put|strong="H7760"\w* \w the|strong="H7760"\w* \w words|strong="H1697"\w* \w in|strong="H4428"\w* \w her|strong="H7760"\w* \w mouth|strong="H6310"\w*. +\p +\v 4 \w When|strong="H5307"\w* \w the|strong="H5921"\w* woman \w of|strong="H4428"\w* \w Tekoa|strong="H8621"\w* spoke \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*, \w she|strong="H5921"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w* face \w to|strong="H5921"\w* \w the|strong="H5921"\w* ground, showed \w respect|strong="H5921"\w*, \w and|strong="H4428"\w* said, “\w Help|strong="H3467"\w*, \w O|strong="H3068"\w* \w king|strong="H4428"\w*!” +\p +\v 5 \w The|strong="H4191"\w* \w king|strong="H4428"\w* said \w to|strong="H4191"\w* \w her|strong="H4191"\w*, “\w What|strong="H4100"\w* ails \w you|strong="H4100"\w*?” +\p \w She|strong="H4100"\w* answered, “Truly \w I|strong="H4100"\w* am \w a|strong="H3068"\w* widow, \w and|strong="H4428"\w* \w my|strong="H4191"\w* husband \w is|strong="H4100"\w* \w dead|strong="H4191"\w*. +\v 6 \w Your|strong="H5221"\w* \w servant|strong="H8198"\w* \w had|strong="H1121"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w*; \w and|strong="H1121"\w* \w they|strong="H5221"\w* \w both|strong="H8147"\w* fought \w together|strong="H5327"\w* \w in|strong="H4191"\w* \w the|strong="H5221"\w* \w field|strong="H7704"\w*, \w and|strong="H1121"\w* there \w was|strong="H1121"\w* no \w one|strong="H1121"\w* \w to|strong="H4191"\w* \w part|strong="H5337"\w* \w them|strong="H5221"\w*, \w but|strong="H5221"\w* \w the|strong="H5221"\w* \w one|strong="H1121"\w* \w struck|strong="H5221"\w* \w the|strong="H5221"\w* \w other|strong="H8147"\w* \w and|strong="H1121"\w* \w killed|strong="H5221"\w* \w him|strong="H5221"\w*. +\v 7 \w Behold|strong="H2009"\w*, \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w family|strong="H4940"\w* \w has|strong="H1571"\w* \w risen|strong="H6965"\w* \w against|strong="H5921"\w* \w your|strong="H3605"\w* \w servant|strong="H8198"\w*, \w and|strong="H6965"\w* \w they|strong="H5921"\w* say, ‘\w Deliver|strong="H5414"\w* \w him|strong="H5414"\w* \w who|strong="H3605"\w* \w struck|strong="H5221"\w* \w his|strong="H3605"\w* brother, \w that|strong="H3605"\w* \w we|strong="H3068"\w* \w may|strong="H5315"\w* \w kill|strong="H2026"\w* \w him|strong="H5414"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w life|strong="H5315"\w* \w of|strong="H6440"\w* \w his|strong="H3605"\w* brother \w whom|strong="H6440"\w* \w he|strong="H3605"\w* \w killed|strong="H2026"\w*, \w and|strong="H6965"\w* \w so|strong="H5414"\w* \w destroy|strong="H8045"\w* \w the|strong="H3605"\w* \w heir|strong="H3423"\w* \w also|strong="H1571"\w*.’ \w Thus|strong="H4191"\w* \w they|strong="H5921"\w* \w would|strong="H5315"\w* \w quench|strong="H3518"\w* \w my|strong="H5414"\w* \w coal|strong="H1513"\w* \w which|strong="H5315"\w* \w is|strong="H5315"\w* \w left|strong="H7604"\w*, \w and|strong="H6965"\w* \w would|strong="H5315"\w* \w leave|strong="H7604"\w* \w to|strong="H4191"\w* \w my|strong="H5414"\w* husband \w neither|strong="H1571"\w* \w name|strong="H8034"\w* \w nor|strong="H1571"\w* \w remainder|strong="H7611"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* earth.” +\p +\v 8 \w The|strong="H5921"\w* \w king|strong="H4428"\w* said \w to|strong="H3212"\w* \w the|strong="H5921"\w* \w woman|strong="H1004"\w*, “\w Go|strong="H3212"\w* \w to|strong="H3212"\w* \w your|strong="H5921"\w* \w house|strong="H1004"\w*, \w and|strong="H4428"\w* \w I|strong="H5921"\w* \w will|strong="H4428"\w* \w give|strong="H6680"\w* \w a|strong="H3068"\w* \w command|strong="H6680"\w* \w concerning|strong="H5921"\w* \w you|strong="H6680"\w*.” +\p +\v 9 \w The|strong="H5921"\w* \w woman|strong="H1004"\w* \w of|strong="H4428"\w* \w Tekoa|strong="H8621"\w* said \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*, “\w My|strong="H5921"\w* lord, \w O|strong="H3068"\w* \w king|strong="H4428"\w*, \w may|strong="H4428"\w* \w the|strong="H5921"\w* \w iniquity|strong="H5771"\w* \w be|strong="H4428"\w* \w on|strong="H5921"\w* \w me|strong="H5921"\w*, \w and|strong="H4428"\w* \w on|strong="H5921"\w* \w my|strong="H5921"\w* father’s \w house|strong="H1004"\w*; \w and|strong="H4428"\w* \w may|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w his|strong="H5921"\w* \w throne|strong="H3678"\w* \w be|strong="H4428"\w* \w guiltless|strong="H5355"\w*.” +\p +\v 10 \w The|strong="H5060"\w* \w king|strong="H4428"\w* \w said|strong="H1696"\w*, “Whoever \w says|strong="H1696"\w* \w anything|strong="H3808"\w* \w to|strong="H1696"\w* \w you|strong="H3808"\w*, \w bring|strong="H5060"\w* \w him|strong="H4428"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w*, \w and|strong="H4428"\w* \w he|strong="H3808"\w* \w will|strong="H4428"\w* \w not|strong="H3808"\w* \w bother|strong="H5060"\w* \w you|strong="H3808"\w* \w any|strong="H5750"\w* \w more|strong="H3254"\w*.” +\p +\v 11 \w Then|strong="H5307"\w* \w she|strong="H3808"\w* said, “\w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w remember|strong="H2142"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w that|strong="H3068"\w* \w the|strong="H3068"\w* \w avenger|strong="H1350"\w* \w of|strong="H1121"\w* \w blood|strong="H1818"\w* \w destroy|strong="H7843"\w* \w not|strong="H3808"\w* \w any|strong="H3808"\w* \w more|strong="H7235"\w*, lest \w they|strong="H3068"\w* \w destroy|strong="H7843"\w* \w my|strong="H3068"\w* \w son|strong="H1121"\w*.” +\p \w He|strong="H3068"\w* said, “\w As|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*, \w not|strong="H3808"\w* \w one|strong="H3808"\w* \w hair|strong="H8185"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* \w son|strong="H1121"\w* \w shall|strong="H3068"\w* \w fall|strong="H5307"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* earth.” +\p +\v 12 \w Then|strong="H1696"\w* \w the|strong="H1697"\w* woman \w said|strong="H1696"\w*, “\w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w your|strong="H4994"\w* \w servant|strong="H8198"\w* \w speak|strong="H1696"\w* \w a|strong="H3068"\w* \w word|strong="H1697"\w* \w to|strong="H1696"\w* \w my|strong="H1696"\w* lord \w the|strong="H1697"\w* \w king|strong="H4428"\w*.” +\p \w He|strong="H1696"\w* \w said|strong="H1696"\w*, “\w Say|strong="H1696"\w* \w on|strong="H1696"\w*.” +\p +\v 13 \w The|strong="H5921"\w* \w woman|strong="H2088"\w* \w said|strong="H1696"\w*, “\w Why|strong="H4100"\w* \w then|strong="H1696"\w* \w have|strong="H5971"\w* \w you|strong="H5921"\w* \w devised|strong="H2803"\w* \w such|strong="H2088"\w* \w a|strong="H3068"\w* \w thing|strong="H1697"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* God? \w For|strong="H5921"\w* \w in|strong="H5921"\w* \w speaking|strong="H1696"\w* \w this|strong="H2088"\w* \w word|strong="H1697"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w is|strong="H2088"\w* \w as|strong="H1697"\w* \w one|strong="H2088"\w* \w who|strong="H5971"\w* \w is|strong="H2088"\w* guilty, \w in|strong="H5921"\w* \w that|strong="H5971"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w does|strong="H4100"\w* \w not|strong="H1115"\w* \w bring|strong="H7725"\w* \w home|strong="H7725"\w* \w again|strong="H7725"\w* \w his|strong="H7725"\w* \w banished|strong="H5080"\w* \w one|strong="H2088"\w*. +\v 14 \w For|strong="H3588"\w* \w we|strong="H3068"\w* \w must|strong="H4191"\w* \w die|strong="H4191"\w*, \w and|strong="H4325"\w* \w are|strong="H4284"\w* \w like|strong="H2803"\w* \w water|strong="H4325"\w* \w spilled|strong="H5064"\w* \w on|strong="H4191"\w* \w the|strong="H3588"\w* ground, \w which|strong="H4325"\w* \w can|strong="H3808"\w*’t \w be|strong="H4191"\w* \w gathered|strong="H3588"\w* \w up|strong="H5375"\w* again; \w neither|strong="H3808"\w* \w does|strong="H3808"\w* \w God|strong="H3808"\w* \w take|strong="H5375"\w* \w away|strong="H5375"\w* \w life|strong="H5315"\w*, \w but|strong="H3588"\w* \w devises|strong="H2803"\w* \w means|strong="H4191"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w who|strong="H5315"\w* \w is|strong="H5315"\w* \w banished|strong="H5080"\w* \w not|strong="H3808"\w* \w be|strong="H4191"\w* \w an|strong="H5375"\w* \w outcast|strong="H5080"\w* \w from|strong="H4480"\w* \w him|strong="H4191"\w*. +\v 15 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w seeing|strong="H3588"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H5971"\w* \w come|strong="H4994"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w this|strong="H2088"\w* \w word|strong="H1697"\w* \w to|strong="H1696"\w* \w my|strong="H6213"\w* lord \w the|strong="H3588"\w* \w king|strong="H4428"\w*, \w it|strong="H3588"\w* \w is|strong="H2088"\w* \w because|strong="H3588"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w have|strong="H5971"\w* \w made|strong="H6213"\w* \w me|strong="H4994"\w* \w afraid|strong="H3372"\w*. \w Your|strong="H6213"\w* \w servant|strong="H8198"\w* \w said|strong="H1696"\w*, ‘\w I|strong="H3588"\w* \w will|strong="H4428"\w* \w now|strong="H6258"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w*; \w it|strong="H3588"\w* \w may|strong="H4994"\w* \w be|strong="H1697"\w* \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w will|strong="H4428"\w* \w perform|strong="H6213"\w* \w the|strong="H3588"\w* \w request|strong="H1697"\w* \w of|strong="H4428"\w* \w his|strong="H6213"\w* \w servant|strong="H8198"\w*.’ +\v 16 \w For|strong="H3588"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w will|strong="H4428"\w* \w hear|strong="H8085"\w*, \w to|strong="H8085"\w* \w deliver|strong="H5337"\w* \w his|strong="H8085"\w* servant \w out|strong="H5337"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* \w hand|strong="H3709"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* \w man|strong="H1121"\w* \w who|strong="H1121"\w* \w would|strong="H3162"\w* \w destroy|strong="H8045"\w* \w me|strong="H5337"\w* \w and|strong="H1121"\w* \w my|strong="H8085"\w* \w son|strong="H1121"\w* \w together|strong="H3162"\w* \w out|strong="H5337"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1121"\w* God. +\v 17 \w Then|strong="H1961"\w* \w your|strong="H3068"\w* \w servant|strong="H8198"\w* \w said|strong="H1697"\w*, ‘\w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w the|strong="H8085"\w* \w word|strong="H1697"\w* \w of|strong="H4428"\w* \w my|strong="H8085"\w* \w lord|strong="H3068"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w bring|strong="H7451"\w* \w rest|strong="H4496"\w*; \w for|strong="H3588"\w* \w as|strong="H1697"\w* \w an|strong="H1961"\w* \w angel|strong="H4397"\w* \w of|strong="H4428"\w* \w God|strong="H3068"\w*, \w so|strong="H3651"\w* \w is|strong="H3068"\w* \w my|strong="H8085"\w* \w lord|strong="H3068"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w to|strong="H3068"\w* \w discern|strong="H8085"\w* \w good|strong="H2896"\w* \w and|strong="H3068"\w* \w bad|strong="H7451"\w*. \w May|strong="H1961"\w* \w Yahweh|strong="H3068"\w*, \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*.’” +\p +\v 18 \w Then|strong="H6030"\w* \w the|strong="H4480"\w* \w king|strong="H4428"\w* \w answered|strong="H6030"\w* \w the|strong="H4480"\w* woman, “\w Please|strong="H4994"\w* don’t \w hide|strong="H3582"\w* \w anything|strong="H1697"\w* \w from|strong="H4480"\w* \w me|strong="H4994"\w* \w that|strong="H1697"\w* \w I|strong="H1697"\w* \w ask|strong="H7592"\w* \w you|strong="H4480"\w*.” +\p \w The|strong="H4480"\w* woman \w said|strong="H1696"\w*, “\w Let|strong="H4994"\w* \w my|strong="H1696"\w* lord \w the|strong="H4480"\w* \w king|strong="H4428"\w* \w now|strong="H4994"\w* \w speak|strong="H1696"\w*.” +\p +\v 19 \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w said|strong="H1696"\w*, “\w Is|strong="H1931"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w Joab|strong="H3097"\w* \w with|strong="H1696"\w* \w you|strong="H3588"\w* \w in|strong="H4428"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w*?” +\p \w The|strong="H3605"\w* woman \w answered|strong="H6030"\w*, “\w As|strong="H1697"\w* \w your|strong="H3605"\w* \w soul|strong="H5315"\w* \w lives|strong="H5315"\w*, \w my|strong="H3605"\w* lord \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w can|strong="H5650"\w* \w turn|strong="H7760"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w right|strong="H3231"\w* \w hand|strong="H3027"\w* \w or|strong="H6310"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w left|strong="H8041"\w* \w from|strong="H5315"\w* \w anything|strong="H3605"\w* \w that|strong="H3588"\w* \w my|strong="H3605"\w* lord \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w has|strong="H4428"\w* \w spoken|strong="H1696"\w*; \w for|strong="H3588"\w* \w your|strong="H3605"\w* \w servant|strong="H5650"\w* \w Joab|strong="H3097"\w* urged \w me|strong="H5315"\w*, \w and|strong="H6030"\w* \w he|strong="H1931"\w* \w put|strong="H7760"\w* \w all|strong="H3605"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w* \w in|strong="H4428"\w* \w the|strong="H3605"\w* \w mouth|strong="H6310"\w* \w of|strong="H4428"\w* \w your|strong="H3605"\w* \w servant|strong="H5650"\w*. +\v 20 \w Your|strong="H3605"\w* \w servant|strong="H5650"\w* \w Joab|strong="H3097"\w* \w has|strong="H5650"\w* \w done|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w to|strong="H6213"\w* \w change|strong="H5437"\w* \w the|strong="H3605"\w* \w face|strong="H6440"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w matter|strong="H1697"\w*. \w My|strong="H3605"\w* lord \w is|strong="H2088"\w* \w wise|strong="H2450"\w*, according \w to|strong="H6213"\w* \w the|strong="H3605"\w* \w wisdom|strong="H2451"\w* \w of|strong="H1697"\w* \w an|strong="H6213"\w* \w angel|strong="H4397"\w* \w of|strong="H1697"\w* \w God|strong="H2451"\w*, \w to|strong="H6213"\w* \w know|strong="H3045"\w* \w all|strong="H3605"\w* \w things|strong="H1697"\w* \w that|strong="H3045"\w* \w are|strong="H1697"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* earth.” +\p +\v 21 \w The|strong="H6213"\w* \w king|strong="H4428"\w* \w said|strong="H1697"\w* \w to|strong="H7725"\w* \w Joab|strong="H3097"\w*, “\w Behold|strong="H2009"\w* \w now|strong="H4994"\w*, \w I|strong="H2009"\w* \w have|strong="H5288"\w* \w granted|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*. \w Go|strong="H3212"\w* \w therefore|strong="H6213"\w*, \w and|strong="H7725"\w* \w bring|strong="H7725"\w* \w the|strong="H6213"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* Absalom \w back|strong="H7725"\w*.” +\p +\v 22 \w Joab|strong="H3097"\w* \w fell|strong="H5307"\w* \w to|strong="H6213"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w* \w on|strong="H3117"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w*, \w showed|strong="H6213"\w* \w respect|strong="H3045"\w*, \w and|strong="H4428"\w* \w blessed|strong="H1288"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*. \w Joab|strong="H3097"\w* \w said|strong="H1697"\w*, “\w Today|strong="H3117"\w* \w your|strong="H6440"\w* \w servant|strong="H5650"\w* \w knows|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H5869"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H6213"\w* \w your|strong="H6440"\w* \w sight|strong="H5869"\w*, \w my|strong="H3045"\w* lord, \w O|strong="H3068"\w* \w king|strong="H4428"\w*, \w in|strong="H6213"\w* \w that|strong="H3588"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w has|strong="H4428"\w* \w performed|strong="H6213"\w* \w the|strong="H6440"\w* \w request|strong="H1697"\w* \w of|strong="H4428"\w* \w his|strong="H6440"\w* \w servant|strong="H5650"\w*.” +\p +\v 23 \w So|strong="H6965"\w* \w Joab|strong="H3097"\w* \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Geshur|strong="H1650"\w*, \w and|strong="H6965"\w* \w brought|strong="H3212"\w* Absalom \w to|strong="H3212"\w* \w Jerusalem|strong="H3389"\w*. +\v 24 \w The|strong="H6440"\w* \w king|strong="H4428"\w* said, “\w Let|strong="H3808"\w* \w him|strong="H6440"\w* return \w to|strong="H6440"\w* \w his|strong="H6440"\w* \w own|strong="H6440"\w* \w house|strong="H1004"\w*, \w but|strong="H3808"\w* \w let|strong="H3808"\w* \w him|strong="H6440"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w* \w my|strong="H7200"\w* \w face|strong="H6440"\w*.” \w So|strong="H3808"\w* Absalom \w returned|strong="H5437"\w* \w to|strong="H6440"\w* \w his|strong="H6440"\w* \w own|strong="H6440"\w* \w house|strong="H1004"\w*, \w and|strong="H4428"\w* didn’t \w see|strong="H7200"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w face|strong="H6440"\w*. +\v 25 \w Now|strong="H1961"\w* \w in|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w one|strong="H3605"\w* \w to|strong="H5704"\w* \w be|strong="H1961"\w* \w so|strong="H1961"\w* \w much|strong="H3966"\w* \w praised|strong="H1984"\w* \w as|strong="H5704"\w* Absalom \w for|strong="H5704"\w* \w his|strong="H3605"\w* \w beauty|strong="H3303"\w*. \w From|strong="H3478"\w* \w the|strong="H3605"\w* \w sole|strong="H3709"\w* \w of|strong="H3709"\w* \w his|strong="H3605"\w* \w foot|strong="H7272"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w crown|strong="H6936"\w* \w of|strong="H3709"\w* \w his|strong="H3605"\w* \w head|strong="H6936"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w defect|strong="H3971"\w* \w in|strong="H3478"\w* \w him|strong="H3605"\w*. +\v 26 \w When|strong="H3588"\w* \w he|strong="H3588"\w* \w cut|strong="H1548"\w* \w the|strong="H5921"\w* \w hair|strong="H8181"\w* \w of|strong="H4428"\w* \w his|strong="H5921"\w* \w head|strong="H7218"\w* (\w now|strong="H1961"\w* \w it|strong="H5921"\w* \w was|strong="H1961"\w* \w at|strong="H5921"\w* \w every|strong="H3117"\w* \w year|strong="H3117"\w*’s \w end|strong="H7093"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w cut|strong="H1548"\w* \w it|strong="H5921"\w*; \w because|strong="H3588"\w* \w it|strong="H5921"\w* \w was|strong="H1961"\w* \w heavy|strong="H3513"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w therefore|strong="H5921"\w* \w he|strong="H3588"\w* \w cut|strong="H1548"\w* \w it|strong="H5921"\w*), \w he|strong="H3588"\w* \w weighed|strong="H8254"\w* \w the|strong="H5921"\w* \w hair|strong="H8181"\w* \w of|strong="H4428"\w* \w his|strong="H5921"\w* \w head|strong="H7218"\w* \w at|strong="H5921"\w* \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* \w shekels|strong="H8255"\w*,\f + \fr 14:26 \ft A shekel is about 10 grams or about 0.35 ounces, so 200 shekels is about 2 kilograms or about 4.4 pounds.\f* \w after|strong="H7093"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s weight. +\v 27 \w Three|strong="H7969"\w* \w sons|strong="H1121"\w* \w were|strong="H1961"\w* \w born|strong="H3205"\w* \w to|strong="H1961"\w* Absalom, \w and|strong="H1121"\w* \w one|strong="H1931"\w* \w daughter|strong="H1323"\w*, \w whose|strong="H1121"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Tamar|strong="H8559"\w*. \w She|strong="H1931"\w* \w was|strong="H8034"\w* \w a|strong="H3068"\w* \w woman|strong="H1323"\w* \w with|strong="H1961"\w* \w a|strong="H3068"\w* \w beautiful|strong="H3303"\w* \w face|strong="H4758"\w*. +\v 28 Absalom \w lived|strong="H3427"\w* \w two|strong="H3427"\w* \w full|strong="H3117"\w* \w years|strong="H8141"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H4428"\w* \w he|strong="H3117"\w* didn’t \w see|strong="H7200"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w face|strong="H6440"\w*. +\v 29 \w Then|strong="H7971"\w* Absalom \w sent|strong="H7971"\w* \w for|strong="H7971"\w* \w Joab|strong="H3097"\w*, \w to|strong="H7971"\w* \w send|strong="H7971"\w* \w him|strong="H7971"\w* \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w king|strong="H4428"\w*, \w but|strong="H3808"\w* \w he|strong="H3808"\w* \w would|strong="H4428"\w* \w not|strong="H3808"\w* \w come|strong="H5750"\w* \w to|strong="H7971"\w* \w him|strong="H7971"\w*. \w Then|strong="H7971"\w* \w he|strong="H3808"\w* \w sent|strong="H7971"\w* \w again|strong="H5750"\w* \w a|strong="H3068"\w* \w second|strong="H8145"\w* \w time|strong="H8145"\w*, \w but|strong="H3808"\w* \w he|strong="H3808"\w* \w would|strong="H4428"\w* \w not|strong="H3808"\w* \w come|strong="H5750"\w*. +\v 30 \w Therefore|strong="H5650"\w* \w he|strong="H8033"\w* said \w to|strong="H3212"\w* \w his|strong="H7200"\w* \w servants|strong="H5650"\w*, “\w Behold|strong="H7200"\w*, \w Joab|strong="H3097"\w*’s \w field|strong="H2513"\w* \w is|strong="H3027"\w* \w near|strong="H3027"\w* \w mine|strong="H7200"\w*, \w and|strong="H3027"\w* \w he|strong="H8033"\w* \w has|strong="H5650"\w* \w barley|strong="H8184"\w* \w there|strong="H8033"\w*. \w Go|strong="H3212"\w* \w and|strong="H3027"\w* \w set|strong="H3341"\w* \w it|strong="H7200"\w* \w on|strong="H7200"\w* \w fire|strong="H3341"\w*.” \w So|strong="H7200"\w* Absalom’s \w servants|strong="H5650"\w* \w set|strong="H3341"\w* \w the|strong="H7200"\w* \w field|strong="H2513"\w* \w on|strong="H7200"\w* \w fire|strong="H3341"\w*. +\p +\v 31 \w Then|strong="H6965"\w* \w Joab|strong="H3097"\w* \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w came|strong="H5650"\w* \w to|strong="H1004"\w* Absalom \w to|strong="H1004"\w* \w his|strong="H6965"\w* \w house|strong="H1004"\w*, \w and|strong="H6965"\w* said \w to|strong="H1004"\w* him, “\w Why|strong="H4100"\w* \w have|strong="H5650"\w* \w your|strong="H6965"\w* \w servants|strong="H5650"\w* \w set|strong="H6965"\w* \w my|strong="H6965"\w* \w field|strong="H2513"\w* \w on|strong="H1004"\w* \w fire|strong="H3341"\w*?” +\p +\v 32 Absalom answered \w Joab|strong="H3097"\w*, “\w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w sent|strong="H7971"\w* \w to|strong="H4191"\w* \w you|strong="H6440"\w*, saying, ‘\w Come|strong="H5750"\w* \w here|strong="H2009"\w*, \w that|strong="H7200"\w* \w I|strong="H2009"\w* \w may|strong="H4428"\w* \w send|strong="H7971"\w* \w you|strong="H6440"\w* \w to|strong="H4191"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*, \w to|strong="H4191"\w* say, “\w Why|strong="H4100"\w* \w have|strong="H3426"\w* \w I|strong="H2009"\w* \w come|strong="H5750"\w* \w from|strong="H6440"\w* \w Geshur|strong="H1650"\w*? \w It|strong="H7200"\w* \w would|strong="H4100"\w* \w be|strong="H4191"\w* \w better|strong="H2896"\w* \w for|strong="H6440"\w* \w me|strong="H6440"\w* \w to|strong="H4191"\w* \w be|strong="H4191"\w* \w there|strong="H8033"\w* \w still|strong="H5750"\w*. \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w let|strong="H7971"\w* \w me|strong="H6440"\w* \w see|strong="H7200"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w face|strong="H6440"\w*; \w and|strong="H7971"\w* \w if|strong="H2009"\w* \w there|strong="H8033"\w* \w is|strong="H3426"\w* \w iniquity|strong="H5771"\w* \w in|strong="H4428"\w* \w me|strong="H6440"\w*, \w let|strong="H7971"\w* \w him|strong="H6440"\w* \w kill|strong="H4191"\w* \w me|strong="H6440"\w*.”’” +\p +\v 33 \w So|strong="H7121"\w* \w Joab|strong="H3097"\w* \w came|strong="H4428"\w* \w to|strong="H5921"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w told|strong="H5046"\w* \w him|strong="H6440"\w*; \w and|strong="H4428"\w* \w when|strong="H5921"\w* \w he|strong="H5921"\w* \w had|strong="H4428"\w* \w called|strong="H7121"\w* \w for|strong="H5921"\w* Absalom, \w he|strong="H5921"\w* \w came|strong="H4428"\w* \w to|strong="H5921"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w bowed|strong="H7812"\w* \w himself|strong="H7812"\w* \w on|strong="H5921"\w* \w his|strong="H7121"\w* \w face|strong="H6440"\w* \w to|strong="H5921"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*; \w and|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w kissed|strong="H5401"\w* Absalom. +\c 15 +\p +\v 1 \w After|strong="H1961"\w* \w this|strong="H3651"\w*, Absalom \w prepared|strong="H6213"\w* \w a|strong="H3068"\w* \w chariot|strong="H4818"\w* \w and|strong="H2572"\w* \w horses|strong="H5483"\w* \w for|strong="H6213"\w* \w himself|strong="H6213"\w*, \w and|strong="H2572"\w* \w fifty|strong="H2572"\w* \w men|strong="H6213"\w* \w to|strong="H1961"\w* \w run|strong="H7323"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 2 Absalom \w rose|strong="H7925"\w* \w up|strong="H5975"\w* \w early|strong="H7925"\w*, \w and|strong="H3478"\w* \w stood|strong="H5975"\w* \w beside|strong="H5921"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w*. \w When|strong="H1961"\w* \w any|strong="H3605"\w* \w man|strong="H3605"\w* \w had|strong="H1961"\w* \w a|strong="H3068"\w* \w suit|strong="H7379"\w* \w which|strong="H5892"\w* \w should|strong="H3478"\w* \w come|strong="H1961"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w for|strong="H5921"\w* \w judgment|strong="H4941"\w*, \w then|strong="H1961"\w* Absalom \w called|strong="H7121"\w* \w to|strong="H3478"\w* \w him|strong="H7121"\w*, \w and|strong="H3478"\w* \w said|strong="H7121"\w*, “\w What|strong="H2088"\w* \w city|strong="H5892"\w* \w are|strong="H3478"\w* \w you|strong="H3605"\w* \w from|strong="H5921"\w*?” +\p \w He|strong="H3605"\w* \w said|strong="H7121"\w*, “\w Your|strong="H3605"\w* \w servant|strong="H5650"\w* \w is|strong="H2088"\w* \w of|strong="H4428"\w* \w one|strong="H2088"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*.” +\p +\v 3 Absalom \w said|strong="H1697"\w* \w to|strong="H8085"\w* \w him|strong="H7200"\w*, “\w Behold|strong="H7200"\w*, \w your|strong="H7200"\w* \w matters|strong="H1697"\w* \w are|strong="H1697"\w* \w good|strong="H2896"\w* \w and|strong="H4428"\w* \w right|strong="H5228"\w*; \w but|strong="H7200"\w* \w there|strong="H1697"\w* \w is|strong="H1697"\w* \w no|strong="H7200"\w* \w man|strong="H2896"\w* deputized \w by|strong="H4428"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w to|strong="H8085"\w* \w hear|strong="H8085"\w* \w you|strong="H7200"\w*.” +\v 4 Absalom said \w moreover|strong="H1961"\w*, “\w Oh|strong="H4310"\w* \w that|strong="H3605"\w* \w I|strong="H5921"\w* \w were|strong="H1961"\w* \w made|strong="H7760"\w* \w judge|strong="H8199"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* land, \w that|strong="H3605"\w* \w every|strong="H3605"\w* \w man|strong="H3605"\w* \w who|strong="H4310"\w* \w has|strong="H4310"\w* \w any|strong="H3605"\w* \w suit|strong="H7379"\w* \w or|strong="H7379"\w* \w cause|strong="H7379"\w* \w might|strong="H4941"\w* \w come|strong="H1961"\w* \w to|strong="H1961"\w* \w me|strong="H5921"\w*, \w and|strong="H4941"\w* \w I|strong="H5921"\w* \w would|strong="H4310"\w* \w do|strong="H3605"\w* \w him|strong="H5921"\w* \w justice|strong="H4941"\w*!” +\v 5 \w It|strong="H7126"\w* \w was|strong="H1961"\w* \w so|strong="H7971"\w*, \w that|strong="H3027"\w* \w when|strong="H1961"\w* \w any|strong="H1961"\w* man \w came|strong="H1961"\w* \w near|strong="H7126"\w* \w to|strong="H7971"\w* \w bow|strong="H7812"\w* \w down|strong="H7812"\w* \w to|strong="H7971"\w* \w him|strong="H7971"\w*, \w he|strong="H3027"\w* \w stretched|strong="H7971"\w* \w out|strong="H7971"\w* \w his|strong="H7971"\w* \w hand|strong="H3027"\w*, \w took|strong="H2388"\w* \w hold|strong="H2388"\w* \w of|strong="H3027"\w* \w him|strong="H7971"\w*, \w and|strong="H7971"\w* \w kissed|strong="H5401"\w* \w him|strong="H7971"\w*. +\v 6 Absalom \w did|strong="H6213"\w* \w this|strong="H2088"\w* \w sort|strong="H1697"\w* \w of|strong="H4428"\w* \w thing|strong="H1697"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w who|strong="H3605"\w* \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w for|strong="H6213"\w* \w judgment|strong="H4941"\w*. \w So|strong="H6213"\w* Absalom \w stole|strong="H1589"\w* \w the|strong="H3605"\w* \w hearts|strong="H3820"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w men|strong="H6213"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. +\p +\v 7 \w At|strong="H3068"\w* \w the|strong="H3068"\w* \w end|strong="H7093"\w* \w of|strong="H4428"\w* forty \w years|strong="H8141"\w*, Absalom said \w to|strong="H3212"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w*, “\w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w me|strong="H4994"\w* \w go|strong="H3212"\w* \w and|strong="H3068"\w* \w pay|strong="H7999"\w* \w my|strong="H3068"\w* \w vow|strong="H5088"\w*, \w which|strong="H3068"\w* \w I|strong="H8141"\w* \w have|strong="H1961"\w* \w vowed|strong="H5087"\w* \w to|strong="H3212"\w* \w Yahweh|strong="H3068"\w*, \w in|strong="H8141"\w* \w Hebron|strong="H2275"\w*. +\v 8 \w For|strong="H3588"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w vowed|strong="H5087"\w* \w a|strong="H3068"\w* \w vow|strong="H5088"\w* \w while|strong="H3588"\w* \w I|strong="H3588"\w* \w stayed|strong="H3427"\w* \w at|strong="H3427"\w* \w Geshur|strong="H1650"\w* \w in|strong="H3427"\w* Syria, saying, ‘\w If|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w shall|strong="H3068"\w* \w indeed|strong="H3588"\w* \w bring|strong="H7725"\w* \w me|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w Jerusalem|strong="H3389"\w*, \w then|strong="H7725"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w*.’” +\p +\v 9 \w The|strong="H6965"\w* \w king|strong="H4428"\w* said \w to|strong="H3212"\w* \w him|strong="H4428"\w*, “\w Go|strong="H3212"\w* \w in|strong="H4428"\w* \w peace|strong="H7965"\w*.” +\p \w So|strong="H6965"\w* \w he|strong="H4428"\w* \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Hebron|strong="H2275"\w*. +\v 10 \w But|strong="H8085"\w* Absalom \w sent|strong="H7971"\w* \w spies|strong="H7270"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H7626"\w* \w Israel|strong="H3478"\w*, \w saying|strong="H6963"\w*, “\w As|strong="H4427"\w* soon \w as|strong="H4427"\w* \w you|strong="H3605"\w* \w hear|strong="H8085"\w* \w the|strong="H3605"\w* \w sound|strong="H6963"\w* \w of|strong="H7626"\w* \w the|strong="H3605"\w* \w trumpet|strong="H7782"\w*, \w then|strong="H7971"\w* \w you|strong="H3605"\w* \w shall|strong="H3478"\w* \w say|strong="H6963"\w*, ‘Absalom \w is|strong="H3478"\w* \w king|strong="H4427"\w* \w in|strong="H3478"\w* \w Hebron|strong="H2275"\w*!’” +\p +\v 11 \w Two|strong="H1980"\w* \w hundred|strong="H3967"\w* \w men|strong="H1980"\w* \w went|strong="H1980"\w* \w with|strong="H1980"\w* Absalom \w out|strong="H1980"\w* \w of|strong="H1697"\w* \w Jerusalem|strong="H3389"\w*, \w who|strong="H3605"\w* \w were|strong="H1697"\w* \w invited|strong="H7121"\w*, \w and|strong="H3967"\w* \w went|strong="H1980"\w* \w in|strong="H1980"\w* \w their|strong="H3605"\w* \w simplicity|strong="H8537"\w*; \w and|strong="H3967"\w* \w they|strong="H3808"\w* didn’t \w know|strong="H3045"\w* \w anything|strong="H3605"\w*. +\v 12 Absalom \w sent|strong="H7971"\w* \w for|strong="H7971"\w* Ahithophel \w the|strong="H7971"\w* \w Gilonite|strong="H1526"\w*, \w David|strong="H1732"\w*’s \w counselor|strong="H3289"\w*, \w from|strong="H1980"\w* \w his|strong="H7971"\w* \w city|strong="H5892"\w*, even \w from|strong="H1980"\w* \w Giloh|strong="H1542"\w*, \w while|strong="H1961"\w* \w he|strong="H1732"\w* \w was|strong="H1961"\w* \w offering|strong="H2076"\w* \w the|strong="H7971"\w* \w sacrifices|strong="H2077"\w*. \w The|strong="H7971"\w* \w conspiracy|strong="H7195"\w* \w was|strong="H1961"\w* strong, \w for|strong="H7971"\w* \w the|strong="H7971"\w* \w people|strong="H5971"\w* \w increased|strong="H7227"\w* \w continually|strong="H1980"\w* \w with|strong="H1980"\w* Absalom. +\v 13 \w A|strong="H3068"\w* \w messenger|strong="H5046"\w* \w came|strong="H1961"\w* \w to|strong="H3478"\w* \w David|strong="H1732"\w*, saying, “\w The|strong="H5046"\w* \w hearts|strong="H3820"\w* \w of|strong="H3820"\w* \w the|strong="H5046"\w* \w men|strong="H3478"\w* \w of|strong="H3820"\w* \w Israel|strong="H3478"\w* \w are|strong="H3478"\w* \w after|strong="H1961"\w* Absalom.” +\p +\v 14 \w David|strong="H1732"\w* \w said|strong="H6310"\w* \w to|strong="H3212"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w with|strong="H5921"\w* \w him|strong="H6440"\w* \w at|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, “\w Arise|strong="H6965"\w*! \w Let|strong="H3808"\w*’s \w flee|strong="H1272"\w*, \w or|strong="H3808"\w* \w else|strong="H6435"\w* \w none|strong="H3808"\w* \w of|strong="H5892"\w* \w us|strong="H5921"\w* \w will|strong="H1961"\w* \w escape|strong="H6413"\w* \w from|strong="H6440"\w* Absalom. \w Hurry|strong="H4116"\w* \w to|strong="H3212"\w* \w depart|strong="H3212"\w*, \w lest|strong="H6435"\w* \w he|strong="H3588"\w* \w overtake|strong="H5381"\w* \w us|strong="H5921"\w* \w quickly|strong="H4116"\w* \w and|strong="H6965"\w* \w bring|strong="H3212"\w* \w down|strong="H5221"\w* \w evil|strong="H7451"\w* \w on|strong="H5921"\w* \w us|strong="H5921"\w*, \w and|strong="H6965"\w* \w strike|strong="H5221"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w with|strong="H5921"\w* \w the|strong="H3605"\w* \w edge|strong="H6310"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*.” +\p +\v 15 \w The|strong="H3605"\w* \w king|strong="H4428"\w*’s \w servants|strong="H5650"\w* said \w to|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, “\w Behold|strong="H2009"\w*, \w your|strong="H3605"\w* \w servants|strong="H5650"\w* \w are|strong="H5650"\w* ready \w to|strong="H4428"\w* \w do|strong="H3605"\w* \w whatever|strong="H3605"\w* \w my|strong="H3605"\w* lord \w the|strong="H3605"\w* \w king|strong="H4428"\w* chooses.” +\p +\v 16 \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w household|strong="H1004"\w* \w after|strong="H7272"\w* \w him|strong="H3318"\w*. \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w left|strong="H5800"\w* \w ten|strong="H6235"\w* women, \w who|strong="H3605"\w* \w were|strong="H7272"\w* \w concubines|strong="H6370"\w*, \w to|strong="H3318"\w* \w keep|strong="H8104"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*. +\v 17 \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w after|strong="H7272"\w* \w him|strong="H3318"\w*; \w and|strong="H4428"\w* \w they|strong="H5971"\w* \w stayed|strong="H5975"\w* \w in|strong="H4428"\w* Beth Merhak. +\v 18 \w All|strong="H3605"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w* \w passed|strong="H5674"\w* \w on|strong="H5921"\w* \w beside|strong="H5921"\w* \w him|strong="H6440"\w*; \w and|strong="H3967"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Cherethites|strong="H3774"\w*, \w and|strong="H3967"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Pelethites|strong="H6432"\w*, \w and|strong="H3967"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Gittites|strong="H1663"\w*, \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w men|strong="H5650"\w* \w who|strong="H3605"\w* \w came|strong="H5674"\w* \w after|strong="H5921"\w* \w him|strong="H6440"\w* \w from|strong="H6440"\w* \w Gath|strong="H1661"\w*, \w passed|strong="H5674"\w* \w on|strong="H5921"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. +\p +\v 19 \w Then|strong="H1571"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* said \w to|strong="H7725"\w* Ittai \w the|strong="H3588"\w* \w Gittite|strong="H1663"\w*, “\w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H3588"\w* \w also|strong="H1571"\w* \w go|strong="H3212"\w* \w with|strong="H5973"\w* \w us|strong="H7725"\w*? \w Return|strong="H7725"\w*, \w and|strong="H7725"\w* \w stay|strong="H3427"\w* \w with|strong="H5973"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H4100"\w* \w a|strong="H3068"\w* \w foreigner|strong="H5237"\w* \w and|strong="H7725"\w* \w also|strong="H1571"\w* \w an|strong="H3588"\w* \w exile|strong="H1540"\w*. \w Return|strong="H7725"\w* \w to|strong="H7725"\w* \w your|strong="H7725"\w* \w own|strong="H5973"\w* \w place|strong="H4725"\w*. +\v 20 Whereas \w you|strong="H5921"\w* \w came|strong="H1980"\w* \w but|strong="H7725"\w* \w yesterday|strong="H8543"\w*, \w should|strong="H1980"\w* \w I|strong="H3117"\w* \w today|strong="H3117"\w* \w make|strong="H7725"\w* \w you|strong="H5921"\w* \w go|strong="H1980"\w* \w up|strong="H5921"\w* \w and|strong="H1980"\w* \w down|strong="H1980"\w* \w with|strong="H5973"\w* \w us|strong="H7725"\w*, \w since|strong="H3117"\w* \w I|strong="H3117"\w* \w go|strong="H1980"\w* \w where|strong="H5921"\w* \w I|strong="H3117"\w* \w may|strong="H7725"\w*? \w Return|strong="H7725"\w*, \w and|strong="H1980"\w* \w take|strong="H7725"\w* \w back|strong="H7725"\w* \w your|strong="H5921"\w* brothers. \w Mercy|strong="H2617"\w* \w and|strong="H1980"\w* truth \w be|strong="H3117"\w* \w with|strong="H5973"\w* \w you|strong="H5921"\w*.” +\p +\v 21 Ittai \w answered|strong="H6030"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w and|strong="H3068"\w* \w said|strong="H6030"\w*, “\w As|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*, \w and|strong="H3068"\w* \w as|strong="H1961"\w* \w my|strong="H3068"\w* \w lord|strong="H3068"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w lives|strong="H2416"\w*, \w surely|strong="H3588"\w* \w in|strong="H3068"\w* \w what|strong="H3588"\w* \w place|strong="H4725"\w* \w my|strong="H3068"\w* \w lord|strong="H3068"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w is|strong="H3068"\w*, whether \w for|strong="H3588"\w* \w death|strong="H4194"\w* \w or|strong="H4194"\w* \w for|strong="H3588"\w* \w life|strong="H2416"\w*, \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w there|strong="H8033"\w* \w also|strong="H3068"\w*.” +\p +\v 22 \w David|strong="H1732"\w* said \w to|strong="H3212"\w* Ittai, “\w Go|strong="H3212"\w* \w and|strong="H3212"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w*.” Ittai \w the|strong="H3605"\w* \w Gittite|strong="H1663"\w* \w passed|strong="H5674"\w* \w over|strong="H5674"\w*, \w and|strong="H3212"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w men|strong="H3605"\w*, \w and|strong="H3212"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w* \w who|strong="H3605"\w* \w were|strong="H1732"\w* \w with|strong="H3212"\w* \w him|strong="H3605"\w*. +\v 23 \w All|strong="H3605"\w* \w the|strong="H3605"\w* country \w wept|strong="H1058"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w loud|strong="H1419"\w* \w voice|strong="H6963"\w*, \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w passed|strong="H5674"\w* \w over|strong="H5921"\w*. \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w also|strong="H4428"\w* \w himself|strong="H6440"\w* \w passed|strong="H5674"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w brook|strong="H5158"\w* \w Kidron|strong="H6939"\w*, \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w passed|strong="H5674"\w* \w over|strong="H5921"\w* \w toward|strong="H1870"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w*. +\v 24 \w Behold|strong="H2009"\w*, \w Zadok|strong="H6659"\w* \w also|strong="H1571"\w* \w came|strong="H5927"\w*, \w and|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w with|strong="H1285"\w* \w him|strong="H3605"\w*, \w bearing|strong="H5375"\w* \w the|strong="H3605"\w* ark \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w covenant|strong="H1285"\w* \w of|strong="H5892"\w* God; \w and|strong="H5971"\w* \w they|strong="H5704"\w* \w set|strong="H5375"\w* \w down|strong="H3332"\w* God’s ark; \w and|strong="H5971"\w* Abiathar \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w until|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w finished|strong="H8552"\w* \w passing|strong="H5674"\w* \w out|strong="H4480"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*. +\v 25 \w The|strong="H7200"\w* \w king|strong="H4428"\w* said \w to|strong="H7725"\w* \w Zadok|strong="H6659"\w*, “Carry \w God|strong="H3068"\w*’s ark \w back|strong="H7725"\w* \w into|strong="H7725"\w* \w the|strong="H7200"\w* \w city|strong="H5892"\w*. \w If|strong="H7200"\w* \w I|strong="H7200"\w* \w find|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*, \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w bring|strong="H7725"\w* \w me|strong="H7725"\w* \w again|strong="H7725"\w*, \w and|strong="H3068"\w* \w show|strong="H7200"\w* \w me|strong="H7725"\w* both \w it|strong="H7725"\w* \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w habitation|strong="H5116"\w*; +\v 26 \w but|strong="H3808"\w* \w if|strong="H2005"\w* \w he|strong="H6213"\w* \w says|strong="H3541"\w*, ‘\w I|strong="H2005"\w* \w have|strong="H5869"\w* \w no|strong="H3808"\w* \w delight|strong="H2654"\w* \w in|strong="H6213"\w* \w you|strong="H6213"\w*,’ \w behold|strong="H2005"\w*, \w here|strong="H3541"\w* \w I|strong="H2005"\w* \w am|strong="H2005"\w*. \w Let|strong="H3808"\w* \w him|strong="H6213"\w* \w do|strong="H6213"\w* \w to|strong="H6213"\w* \w me|strong="H6213"\w* \w as|strong="H6213"\w* \w seems|strong="H2896"\w* \w good|strong="H2896"\w* \w to|strong="H6213"\w* \w him|strong="H6213"\w*.” +\v 27 \w The|strong="H7200"\w* \w king|strong="H4428"\w* said \w also|strong="H4428"\w* \w to|strong="H7725"\w* \w Zadok|strong="H6659"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w*, “Aren’t \w you|strong="H7725"\w* \w a|strong="H3068"\w* \w seer|strong="H7200"\w*? \w Return|strong="H7725"\w* \w into|strong="H7725"\w* \w the|strong="H7200"\w* \w city|strong="H5892"\w* \w in|strong="H4428"\w* \w peace|strong="H7965"\w*, \w and|strong="H1121"\w* \w your|strong="H7200"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w* \w with|strong="H5892"\w* \w you|strong="H7725"\w*, Ahimaaz \w your|strong="H7200"\w* \w son|strong="H1121"\w* \w and|strong="H1121"\w* \w Jonathan|strong="H3083"\w* \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Abiathar. +\v 28 \w Behold|strong="H7200"\w*, \w I|strong="H5704"\w* \w will|strong="H1697"\w* \w stay|strong="H4102"\w* \w at|strong="H7200"\w* \w the|strong="H7200"\w* \w fords|strong="H5679"\w* \w of|strong="H1697"\w* \w the|strong="H7200"\w* \w wilderness|strong="H4057"\w* \w until|strong="H5704"\w* \w word|strong="H1697"\w* \w comes|strong="H5973"\w* \w from|strong="H5704"\w* \w you|strong="H5704"\w* \w to|strong="H5704"\w* \w inform|strong="H5046"\w* \w me|strong="H7200"\w*.” +\v 29 \w Zadok|strong="H6659"\w* therefore \w and|strong="H7725"\w* Abiathar \w carried|strong="H7725"\w* God’s ark \w to|strong="H7725"\w* \w Jerusalem|strong="H3389"\w* \w again|strong="H7725"\w*; \w and|strong="H7725"\w* \w they|strong="H8033"\w* \w stayed|strong="H3427"\w* \w there|strong="H8033"\w*. +\v 30 \w David|strong="H1732"\w* \w went|strong="H1980"\w* \w up|strong="H5927"\w* \w by|strong="H1980"\w* \w the|strong="H3605"\w* \w ascent|strong="H4608"\w* \w of|strong="H7218"\w* \w the|strong="H3605"\w* \w Mount|strong="H5927"\w* \w of|strong="H7218"\w* \w Olives|strong="H2132"\w*, \w and|strong="H1980"\w* \w wept|strong="H1058"\w* \w as|strong="H5927"\w* \w he|strong="H1931"\w* \w went|strong="H1980"\w* \w up|strong="H5927"\w*; \w and|strong="H1980"\w* \w he|strong="H1931"\w* \w had|strong="H1732"\w* \w his|strong="H3605"\w* \w head|strong="H7218"\w* \w covered|strong="H2645"\w* \w and|strong="H1980"\w* \w went|strong="H1980"\w* \w barefoot|strong="H3182"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w with|strong="H1980"\w* \w him|strong="H1931"\w* \w each|strong="H3605"\w* \w covered|strong="H2645"\w* \w his|strong="H3605"\w* \w head|strong="H7218"\w*, \w and|strong="H1980"\w* \w they|strong="H1931"\w* \w went|strong="H1980"\w* \w up|strong="H5927"\w*, \w weeping|strong="H1058"\w* \w as|strong="H5927"\w* \w they|strong="H1931"\w* \w went|strong="H1980"\w* \w up|strong="H5927"\w*. +\p +\v 31 Someone \w told|strong="H5046"\w* \w David|strong="H1732"\w*, saying, “Ahithophel \w is|strong="H3068"\w* \w among|strong="H5973"\w* \w the|strong="H3068"\w* \w conspirators|strong="H7194"\w* \w with|strong="H5973"\w* Absalom.” +\p \w David|strong="H1732"\w* said, “\w Yahweh|strong="H3068"\w*, \w please|strong="H4994"\w* turn \w the|strong="H3068"\w* \w counsel|strong="H6098"\w* \w of|strong="H3068"\w* Ahithophel into \w foolishness|strong="H5528"\w*.” +\p +\v 32 \w When|strong="H1961"\w* \w David|strong="H1732"\w* \w had|strong="H1961"\w* \w come|strong="H1961"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w top|strong="H7218"\w*, \w where|strong="H8033"\w* God \w was|strong="H1961"\w* \w worshiped|strong="H7812"\w*, \w behold|strong="H2009"\w*, \w Hushai|strong="H2365"\w* \w the|strong="H5921"\w* Archite \w came|strong="H1961"\w* \w to|strong="H5704"\w* \w meet|strong="H7125"\w* \w him|strong="H5921"\w* \w with|strong="H5921"\w* \w his|strong="H1732"\w* \w tunic|strong="H3801"\w* \w torn|strong="H7167"\w* \w and|strong="H1732"\w* earth \w on|strong="H5921"\w* \w his|strong="H1732"\w* \w head|strong="H7218"\w*. +\v 33 \w David|strong="H1732"\w* said \w to|strong="H1961"\w* \w him|strong="H5921"\w*, “\w If|strong="H1961"\w* \w you|strong="H5921"\w* \w pass|strong="H5674"\w* \w on|strong="H5921"\w* \w with|strong="H5921"\w* \w me|strong="H5921"\w*, \w then|strong="H1961"\w* \w you|strong="H5921"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w burden|strong="H4853"\w* \w to|strong="H1961"\w* \w me|strong="H5921"\w*; +\v 34 \w but|strong="H1961"\w* \w if|strong="H1961"\w* \w you|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H7725"\w* \w city|strong="H5892"\w*, \w and|strong="H7725"\w* tell Absalom, ‘\w I|strong="H6258"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w your|strong="H7725"\w* \w servant|strong="H5650"\w*, \w O|strong="H3068"\w* \w king|strong="H4428"\w*. \w As|strong="H1961"\w* \w I|strong="H6258"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w your|strong="H7725"\w* father’s \w servant|strong="H5650"\w* \w in|strong="H4428"\w* \w time|strong="H6258"\w* \w past|strong="H7725"\w*, \w so|strong="H1961"\w* \w I|strong="H6258"\w* \w will|strong="H1961"\w* \w now|strong="H6258"\w* \w be|strong="H1961"\w* \w your|strong="H7725"\w* \w servant|strong="H5650"\w*; \w then|strong="H1961"\w* \w you|strong="H7725"\w* \w will|strong="H1961"\w* \w defeat|strong="H6565"\w* \w for|strong="H5650"\w* \w me|strong="H7725"\w* \w the|strong="H7725"\w* \w counsel|strong="H6098"\w* \w of|strong="H4428"\w* Ahithophel.’ +\v 35 Don’t \w you|strong="H3605"\w* \w have|strong="H1961"\w* \w Zadok|strong="H6659"\w* \w and|strong="H4428"\w* Abiathar \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w there|strong="H8033"\w* \w with|strong="H5973"\w* \w you|strong="H3605"\w*? \w Therefore|strong="H1961"\w* \w whatever|strong="H3605"\w* \w you|strong="H3605"\w* \w hear|strong="H8085"\w* \w out|strong="H3605"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w tell|strong="H5046"\w* \w it|strong="H8033"\w* \w to|strong="H1961"\w* \w Zadok|strong="H6659"\w* \w and|strong="H4428"\w* Abiathar \w the|strong="H3605"\w* \w priests|strong="H3548"\w*. +\v 36 \w Behold|strong="H2009"\w*, \w they|strong="H8033"\w* \w have|strong="H1121"\w* \w there|strong="H8033"\w* \w with|strong="H5973"\w* \w them|strong="H7971"\w* \w their|strong="H3605"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w*, Ahimaaz, \w Zadok|strong="H6659"\w*’s \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w Jonathan|strong="H3083"\w*, Abiathar’s \w son|strong="H1121"\w*. \w Send|strong="H7971"\w* \w to|strong="H7971"\w* \w me|strong="H7971"\w* \w everything|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w shall|strong="H1121"\w* \w hear|strong="H8085"\w* \w by|strong="H3027"\w* \w them|strong="H7971"\w*.” +\p +\v 37 So \w Hushai|strong="H2365"\w*, \w David|strong="H1732"\w*’s \w friend|strong="H7463"\w*, \w came|strong="H1732"\w* \w into|strong="H5892"\w* \w the|strong="H1732"\w* \w city|strong="H5892"\w*; \w and|strong="H3389"\w* Absalom \w came|strong="H1732"\w* \w into|strong="H5892"\w* \w Jerusalem|strong="H3389"\w*. +\c 16 +\p +\v 1 \w When|strong="H5674"\w* \w David|strong="H1732"\w* \w was|strong="H1732"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w past|strong="H5674"\w* \w the|strong="H5921"\w* \w top|strong="H7218"\w*, \w behold|strong="H2009"\w*, \w Ziba|strong="H6717"\w* \w the|strong="H5921"\w* \w servant|strong="H5288"\w* \w of|strong="H7218"\w* \w Mephibosheth|strong="H4648"\w* \w met|strong="H7122"\w* \w him|strong="H5921"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w couple|strong="H6776"\w* \w of|strong="H7218"\w* \w donkeys|strong="H2543"\w* \w saddled|strong="H2280"\w*, \w and|strong="H3967"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w two|strong="H6776"\w* \w hundred|strong="H3967"\w* \w loaves|strong="H3899"\w* \w of|strong="H7218"\w* \w bread|strong="H3899"\w*, \w and|strong="H3967"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w clusters|strong="H6778"\w* \w of|strong="H7218"\w* \w raisins|strong="H6778"\w*, \w and|strong="H3967"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w summer|strong="H7019"\w* \w fruits|strong="H7019"\w*, \w and|strong="H3967"\w* \w a|strong="H3068"\w* container \w of|strong="H7218"\w* \w wine|strong="H3196"\w*. +\v 2 \w The|strong="H8354"\w* \w king|strong="H4428"\w* said \w to|strong="H4428"\w* \w Ziba|strong="H6717"\w*, “\w What|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H4100"\w* mean \w by|strong="H4428"\w* \w these|strong="H1004"\w*?” +\p \w Ziba|strong="H6717"\w* said, “\w The|strong="H8354"\w* \w donkeys|strong="H2543"\w* \w are|strong="H4100"\w* \w for|strong="H1004"\w* \w the|strong="H8354"\w* \w king|strong="H4428"\w*’s \w household|strong="H1004"\w* \w to|strong="H4428"\w* \w ride|strong="H7392"\w* \w on|strong="H7392"\w*; \w and|strong="H4428"\w* \w the|strong="H8354"\w* \w bread|strong="H3899"\w* \w and|strong="H4428"\w* \w summer|strong="H7019"\w* \w fruit|strong="H7019"\w* \w for|strong="H1004"\w* \w the|strong="H8354"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w to|strong="H4428"\w* \w eat|strong="H3899"\w*; \w and|strong="H4428"\w* \w the|strong="H8354"\w* \w wine|strong="H3196"\w*, \w that|strong="H4428"\w* those \w who|strong="H5288"\w* \w are|strong="H4100"\w* \w faint|strong="H3287"\w* \w in|strong="H1004"\w* \w the|strong="H8354"\w* \w wilderness|strong="H4057"\w* \w may|strong="H4428"\w* \w drink|strong="H8354"\w*.” +\p +\v 3 \w The|strong="H3588"\w* \w king|strong="H4428"\w* said, “\w Where|strong="H1004"\w* \w is|strong="H3117"\w* \w your|strong="H7725"\w* \w master|strong="H3427"\w*’s \w son|strong="H1121"\w*?” +\p \w Ziba|strong="H6717"\w* said \w to|strong="H7725"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w*, “\w Behold|strong="H2009"\w*, \w he|strong="H3588"\w* \w is|strong="H3117"\w* \w staying|strong="H3427"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* said, ‘\w Today|strong="H3117"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w will|strong="H4428"\w* \w restore|strong="H7725"\w* \w me|strong="H7725"\w* \w the|strong="H3588"\w* \w kingdom|strong="H4468"\w* \w of|strong="H1121"\w* \w my|strong="H7725"\w* \w father|strong="H1121"\w*.’” +\p +\v 4 \w Then|strong="H2009"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* said \w to|strong="H4428"\w* \w Ziba|strong="H6717"\w*, “\w Behold|strong="H2009"\w*, \w all|strong="H3605"\w* \w that|strong="H3605"\w* belongs \w to|strong="H4428"\w* \w Mephibosheth|strong="H4648"\w* \w is|strong="H2009"\w* yours.” +\p \w Ziba|strong="H6717"\w* said, “\w I|strong="H2009"\w* \w bow|strong="H7812"\w* \w down|strong="H7812"\w*. Let \w me|strong="H4672"\w* \w find|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H4428"\w* \w your|strong="H3605"\w* \w sight|strong="H5869"\w*, \w my|strong="H3605"\w* lord, \w O|strong="H3068"\w* \w king|strong="H4428"\w*.” +\p +\v 5 \w When|strong="H3318"\w* \w King|strong="H4428"\w* \w David|strong="H1732"\w* \w came|strong="H3318"\w* \w to|strong="H5704"\w* Bahurim, \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5704"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w*’s \w house|strong="H1004"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w*, \w whose|strong="H1121"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Shimei|strong="H8096"\w*, \w the|strong="H5704"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Gera|strong="H1617"\w*. \w He|strong="H5704"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H1121"\w* \w cursed|strong="H7043"\w* \w as|strong="H5704"\w* \w he|strong="H5704"\w* \w came|strong="H3318"\w*. +\v 6 \w He|strong="H3605"\w* \w cast|strong="H5619"\w* \w stones|strong="H5619"\w* \w at|strong="H1732"\w* \w David|strong="H1732"\w* \w and|strong="H4428"\w* \w at|strong="H1732"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w servants|strong="H5650"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* \w David|strong="H1732"\w*, \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w were|strong="H5971"\w* \w on|strong="H3605"\w* \w his|strong="H3605"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w and|strong="H4428"\w* \w on|strong="H3605"\w* \w his|strong="H3605"\w* \w left|strong="H8040"\w*. +\v 7 \w Shimei|strong="H8096"\w* \w said|strong="H3318"\w* \w when|strong="H3318"\w* \w he|strong="H3541"\w* \w cursed|strong="H7043"\w*, “\w Be|strong="H1818"\w* \w gone|strong="H3318"\w*, \w be|strong="H1818"\w* \w gone|strong="H3318"\w*, \w you|strong="H3318"\w* man \w of|strong="H1818"\w* \w blood|strong="H1818"\w*, \w and|strong="H1818"\w* \w wicked|strong="H1100"\w* fellow! +\v 8 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w returned|strong="H7725"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w blood|strong="H1818"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w*’s \w house|strong="H1004"\w*, \w in|strong="H5921"\w* \w whose|strong="H1121"\w* \w place|strong="H8478"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w reigned|strong="H4427"\w*! \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w delivered|strong="H5414"\w* \w the|strong="H3605"\w* \w kingdom|strong="H4410"\w* \w into|strong="H7725"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* Absalom \w your|strong="H3068"\w* \w son|strong="H1121"\w*! \w Behold|strong="H2005"\w*, \w you|strong="H3588"\w* \w are|strong="H1121"\w* caught \w by|strong="H3027"\w* \w your|strong="H3068"\w* \w own|strong="H3027"\w* \w mischief|strong="H7451"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H1121"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w blood|strong="H1818"\w*!” +\p +\v 9 \w Then|strong="H2088"\w* Abishai \w the|strong="H5674"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w* said \w to|strong="H4191"\w* \w the|strong="H5674"\w* \w king|strong="H4428"\w*, “\w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w this|strong="H2088"\w* \w dead|strong="H4191"\w* \w dog|strong="H3611"\w* \w curse|strong="H7043"\w* \w my|strong="H5493"\w* lord \w the|strong="H5674"\w* \w king|strong="H4428"\w*? \w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w me|strong="H4994"\w* \w go|strong="H5674"\w* \w over|strong="H5674"\w* \w and|strong="H1121"\w* \w take|strong="H5493"\w* \w off|strong="H5493"\w* \w his|strong="H5493"\w* \w head|strong="H7218"\w*.” +\v 10 \w The|strong="H3588"\w* \w king|strong="H4428"\w* \w said|strong="H3651"\w*, “\w What|strong="H4100"\w* \w have|strong="H3068"\w* \w I|strong="H3588"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w*, \w you|strong="H3588"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w*? \w Because|strong="H3588"\w* \w he|strong="H3588"\w* \w curses|strong="H7043"\w*, \w and|strong="H1121"\w* \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w said|strong="H3651"\w* \w to|strong="H3068"\w* \w him|strong="H6213"\w*, ‘\w Curse|strong="H7043"\w* \w David|strong="H1732"\w*,’ \w who|strong="H4310"\w* \w then|strong="H3651"\w* \w shall|strong="H3068"\w* say, ‘\w Why|strong="H4100"\w* \w have|strong="H3068"\w* \w you|strong="H3588"\w* \w done|strong="H6213"\w* \w so|strong="H3651"\w*?’” +\p +\v 11 \w David|strong="H1732"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* Abishai \w and|strong="H1121"\w* \w to|strong="H3318"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w*, “\w Behold|strong="H2009"\w*, \w my|strong="H3605"\w* \w son|strong="H1121"\w*, \w who|strong="H3605"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w my|strong="H3605"\w* \w bowels|strong="H4578"\w*, \w seeks|strong="H1245"\w* \w my|strong="H3605"\w* \w life|strong="H5315"\w*. \w How|strong="H3588"\w* \w much|strong="H3605"\w* \w more|strong="H3588"\w* \w this|strong="H6258"\w* \w Benjamite|strong="H1145"\w*, \w now|strong="H6258"\w*? \w Leave|strong="H3240"\w* \w him|strong="H3318"\w* \w alone|strong="H3240"\w*, \w and|strong="H1121"\w* \w let|strong="H6258"\w* \w him|strong="H3318"\w* \w curse|strong="H7043"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* invited \w him|strong="H3318"\w*. +\v 12 \w It|strong="H7725"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w that|strong="H7200"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w look|strong="H7200"\w* \w on|strong="H3117"\w* \w the|strong="H7200"\w* \w wrong|strong="H5771"\w* done \w to|strong="H7725"\w* \w me|strong="H7725"\w*, \w and|strong="H3068"\w* \w that|strong="H7200"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w repay|strong="H7725"\w* \w me|strong="H7725"\w* \w good|strong="H2896"\w* \w for|strong="H8478"\w* \w the|strong="H7200"\w* \w cursing|strong="H7045"\w* \w of|strong="H3068"\w* \w me|strong="H7725"\w* \w today|strong="H3117"\w*.” +\v 13 \w So|strong="H1980"\w* \w David|strong="H1732"\w* \w and|strong="H1980"\w* \w his|strong="H1732"\w* \w men|strong="H1980"\w* \w went|strong="H1980"\w* \w by|strong="H1870"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w*; \w and|strong="H1980"\w* \w Shimei|strong="H8096"\w* \w went|strong="H1980"\w* \w along|strong="H1980"\w* \w on|strong="H1980"\w* \w the|strong="H1870"\w* \w hillside|strong="H6763"\w* opposite \w him|strong="H1732"\w* \w and|strong="H1980"\w* \w cursed|strong="H7043"\w* \w as|strong="H1980"\w* \w he|strong="H1732"\w* \w went|strong="H1980"\w*, \w threw|strong="H5619"\w* \w stones|strong="H5619"\w* \w at|strong="H1732"\w* \w him|strong="H1732"\w*, \w and|strong="H1980"\w* \w threw|strong="H5619"\w* \w dust|strong="H6083"\w*. +\v 14 \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w with|strong="H5971"\w* \w him|strong="H3605"\w* arrived \w weary|strong="H5889"\w*; \w and|strong="H4428"\w* \w he|strong="H8033"\w* \w refreshed|strong="H5314"\w* \w himself|strong="H5314"\w* \w there|strong="H8033"\w*. +\p +\v 15 Absalom \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w the|strong="H3605"\w* \w men|strong="H5971"\w* \w of|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3478"\w* Ahithophel \w with|strong="H3389"\w* \w him|strong="H3605"\w*. +\v 16 \w When|strong="H1961"\w* \w Hushai|strong="H2365"\w* \w the|strong="H1961"\w* Archite, \w David|strong="H1732"\w*’s \w friend|strong="H7463"\w*, \w had|strong="H1961"\w* \w come|strong="H1961"\w* \w to|strong="H1961"\w* Absalom, \w Hushai|strong="H2365"\w* said \w to|strong="H1961"\w* Absalom, “Long \w live|strong="H2421"\w* \w the|strong="H1961"\w* \w king|strong="H4428"\w*! Long \w live|strong="H2421"\w* \w the|strong="H1961"\w* \w king|strong="H4428"\w*!” +\p +\v 17 Absalom said \w to|strong="H1980"\w* \w Hushai|strong="H2365"\w*, “\w Is|strong="H2088"\w* \w this|strong="H2088"\w* \w your|strong="H3808"\w* \w kindness|strong="H2617"\w* \w to|strong="H1980"\w* \w your|strong="H3808"\w* \w friend|strong="H7453"\w*? \w Why|strong="H4100"\w* didn’t \w you|strong="H3808"\w* \w go|strong="H1980"\w* \w with|strong="H1980"\w* \w your|strong="H3808"\w* \w friend|strong="H7453"\w*?” +\p +\v 18 \w Hushai|strong="H2365"\w* said \w to|strong="H3478"\w* Absalom, “\w No|strong="H3808"\w*; \w but|strong="H3588"\w* \w whomever|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3478"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H5971"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w have|strong="H1961"\w* chosen, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w his|strong="H3605"\w*, \w and|strong="H3478"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w stay|strong="H3427"\w* \w with|strong="H3068"\w* \w him|strong="H3605"\w*. +\v 19 \w Again|strong="H8145"\w*, \w whom|strong="H4310"\w* \w should|strong="H4310"\w* \w I|strong="H3651"\w* \w serve|strong="H5647"\w*? Shouldn’t \w I|strong="H3651"\w* \w serve|strong="H5647"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H1121"\w* \w his|strong="H6440"\w* \w son|strong="H1121"\w*? \w As|strong="H1961"\w* \w I|strong="H3651"\w* \w have|strong="H1961"\w* \w served|strong="H5647"\w* \w in|strong="H6440"\w* \w your|strong="H6440"\w* \w father|strong="H1121"\w*’s \w presence|strong="H6440"\w*, \w so|strong="H3651"\w* \w I|strong="H3651"\w* \w will|strong="H4310"\w* \w be|strong="H1961"\w* \w in|strong="H6440"\w* \w your|strong="H6440"\w* \w presence|strong="H6440"\w*.” +\p +\v 20 \w Then|strong="H6213"\w* Absalom said \w to|strong="H6213"\w* Ahithophel, “\w Give|strong="H3051"\w* \w your|strong="H6213"\w* \w counsel|strong="H6098"\w* \w what|strong="H4100"\w* \w we|strong="H3068"\w* \w shall|strong="H6213"\w* \w do|strong="H6213"\w*.” +\p +\v 21 Ahithophel \w said|strong="H8085"\w* \w to|strong="H3478"\w* Absalom, “\w Go|strong="H3478"\w* \w in|strong="H3478"\w* \w to|strong="H3478"\w* \w your|strong="H3605"\w* father’s \w concubines|strong="H6370"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3478"\w* \w left|strong="H3240"\w* \w to|strong="H3478"\w* \w keep|strong="H8104"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*. \w Then|strong="H8085"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w will|strong="H3478"\w* \w hear|strong="H8085"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H3478"\w* abhorred \w by|strong="H3027"\w* \w your|strong="H3605"\w* father. \w Then|strong="H8085"\w* \w the|strong="H3605"\w* \w hands|strong="H3027"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H3478"\w* \w with|strong="H1004"\w* \w you|strong="H3588"\w* \w will|strong="H3478"\w* \w be|strong="H3027"\w* \w strong|strong="H2388"\w*.” +\p +\v 22 \w So|strong="H5921"\w* \w they|strong="H5921"\w* \w spread|strong="H5186"\w* \w a|strong="H3068"\w* tent \w for|strong="H5921"\w* Absalom \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w top|strong="H1406"\w* \w of|strong="H5869"\w* \w the|strong="H3605"\w* \w house|strong="H1406"\w*, \w and|strong="H3478"\w* Absalom \w went|strong="H3478"\w* \w in|strong="H5921"\w* \w to|strong="H3478"\w* \w his|strong="H3605"\w* father’s \w concubines|strong="H6370"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H5869"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*. +\p +\v 23 \w The|strong="H3605"\w* \w counsel|strong="H6098"\w* \w of|strong="H3117"\w* Ahithophel, \w which|strong="H1992"\w* \w he|strong="H3117"\w* \w gave|strong="H3289"\w* \w in|strong="H3117"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*, \w was|strong="H1732"\w* \w as|strong="H1697"\w* \w if|strong="H3651"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w inquired|strong="H7592"\w* \w at|strong="H1732"\w* \w the|strong="H3605"\w* inner sanctuary \w of|strong="H3117"\w* God. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w counsel|strong="H6098"\w* \w of|strong="H3117"\w* Ahithophel \w was|strong="H1732"\w* \w like|strong="H3651"\w* \w this|strong="H3651"\w* \w both|strong="H1571"\w* \w with|strong="H1697"\w* \w David|strong="H1732"\w* \w and|strong="H3117"\w* \w with|strong="H1697"\w* Absalom. +\c 17 +\p +\v 1 Moreover Ahithophel said \w to|strong="H1732"\w* Absalom, “\w Let|strong="H4994"\w* \w me|strong="H4994"\w* \w now|strong="H4994"\w* choose \w twelve|strong="H8147"\w* thousand \w men|strong="H8147"\w*, \w and|strong="H6965"\w* \w I|strong="H6965"\w* \w will|strong="H8147"\w* \w arise|strong="H6965"\w* \w and|strong="H6965"\w* \w pursue|strong="H7291"\w* \w after|strong="H7291"\w* \w David|strong="H1732"\w* \w tonight|strong="H3915"\w*. +\v 2 \w I|strong="H5921"\w* \w will|strong="H4428"\w* \w come|strong="H5971"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w* \w while|strong="H1931"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w weary|strong="H3023"\w* \w and|strong="H4428"\w* \w exhausted|strong="H3027"\w*, \w and|strong="H4428"\w* \w will|strong="H4428"\w* \w make|strong="H2729"\w* \w him|strong="H5921"\w* \w afraid|strong="H2729"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w are|strong="H5971"\w* \w with|strong="H5921"\w* \w him|strong="H5921"\w* \w will|strong="H4428"\w* \w flee|strong="H5127"\w*. \w I|strong="H5921"\w* \w will|strong="H4428"\w* \w strike|strong="H5221"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w only|strong="H3605"\w*, +\v 3 \w and|strong="H7725"\w* \w I|strong="H3605"\w* \w will|strong="H1961"\w* \w bring|strong="H7725"\w* \w back|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w to|strong="H7725"\w* \w you|strong="H3605"\w*. \w The|strong="H3605"\w* \w man|strong="H3605"\w* \w whom|strong="H5971"\w* \w you|strong="H3605"\w* \w seek|strong="H1245"\w* \w is|strong="H3605"\w* \w as|strong="H1961"\w* \w if|strong="H1961"\w* \w all|strong="H3605"\w* \w returned|strong="H7725"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w shall|strong="H5971"\w* \w be|strong="H1961"\w* \w in|strong="H7725"\w* \w peace|strong="H7965"\w*.” +\p +\v 4 \w The|strong="H3605"\w* \w saying|strong="H1697"\w* \w pleased|strong="H3474"\w* Absalom \w well|strong="H5869"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H1697"\w* \w Israel|strong="H3478"\w*. +\v 5 \w Then|strong="H1571"\w* Absalom \w said|strong="H7121"\w*, “\w Now|strong="H4994"\w* \w call|strong="H7121"\w* \w Hushai|strong="H2365"\w* \w the|strong="H8085"\w* Archite \w also|strong="H1571"\w*, \w and|strong="H8085"\w* \w let|strong="H4994"\w*’s \w hear|strong="H8085"\w* \w likewise|strong="H1571"\w* \w what|strong="H4100"\w* \w he|strong="H1931"\w* \w says|strong="H6310"\w*.” +\p +\v 6 \w When|strong="H1696"\w* \w Hushai|strong="H2365"\w* \w had|strong="H1697"\w* come \w to|strong="H1696"\w* Absalom, Absalom \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H6213"\w*, \w saying|strong="H1697"\w*, “Ahithophel \w has|strong="H1697"\w* \w spoken|strong="H1696"\w* \w like|strong="H1697"\w* \w this|strong="H2088"\w*. \w Shall|strong="H2088"\w* \w we|strong="H3068"\w* \w do|strong="H6213"\w* \w what|strong="H1697"\w* \w he|strong="H6213"\w* \w says|strong="H1696"\w*? If \w not|strong="H6213"\w*, \w speak|strong="H1696"\w* \w up|strong="H6213"\w*.” +\p +\v 7 \w Hushai|strong="H2365"\w* said \w to|strong="H2896"\w* Absalom, “\w The|strong="H3808"\w* \w counsel|strong="H6098"\w* \w that|strong="H3808"\w* Ahithophel \w has|strong="H3289"\w* \w given|strong="H3289"\w* \w this|strong="H2063"\w* \w time|strong="H6471"\w* \w is|strong="H2896"\w* \w not|strong="H3808"\w* \w good|strong="H2896"\w*.” +\v 8 \w Hushai|strong="H2365"\w* said \w moreover|strong="H3588"\w*, “\w You|strong="H3588"\w* \w know|strong="H3045"\w* \w your|strong="H3045"\w* father \w and|strong="H5971"\w* \w his|strong="H3045"\w* \w men|strong="H1368"\w*, \w that|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w*, \w and|strong="H5971"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w fierce|strong="H4751"\w* \w in|strong="H5315"\w* \w their|strong="H1992"\w* \w minds|strong="H5315"\w*, \w like|strong="H3808"\w* \w a|strong="H3068"\w* \w bear|strong="H1677"\w* \w robbed|strong="H7909"\w* \w of|strong="H7704"\w* \w her|strong="H3045"\w* \w cubs|strong="H7909"\w* \w in|strong="H5315"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w*. \w Your|strong="H3045"\w* father \w is|strong="H5315"\w* \w a|strong="H3068"\w* \w man|strong="H1368"\w* \w of|strong="H7704"\w* \w war|strong="H4421"\w*, \w and|strong="H5971"\w* \w will|strong="H5971"\w* \w not|strong="H3808"\w* \w lodge|strong="H3885"\w* \w with|strong="H3045"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w*. +\v 9 \w Behold|strong="H2009"\w*, \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w now|strong="H6258"\w* \w hidden|strong="H2244"\w* \w in|strong="H8085"\w* \w some|strong="H5971"\w* \w pit|strong="H6354"\w*, \w or|strong="H8085"\w* \w in|strong="H8085"\w* \w some|strong="H5971"\w* other \w place|strong="H4725"\w*. \w It|strong="H1931"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w*, \w when|strong="H1961"\w* \w some|strong="H5971"\w* \w of|strong="H5971"\w* \w them|strong="H1961"\w* \w have|strong="H1961"\w* \w fallen|strong="H5307"\w* \w at|strong="H1961"\w* \w the|strong="H8085"\w* \w first|strong="H8462"\w*, \w that|strong="H5971"\w* whoever \w hears|strong="H8085"\w* \w it|strong="H1931"\w* \w will|strong="H1961"\w* say, ‘\w There|strong="H2009"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w slaughter|strong="H4046"\w* \w among|strong="H5971"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w* \w who|strong="H1931"\w* \w follow|strong="H1961"\w* Absalom!’ +\v 10 \w Even|strong="H1571"\w* \w he|strong="H1931"\w* \w who|strong="H3605"\w* \w is|strong="H1931"\w* \w valiant|strong="H2428"\w*, \w whose|strong="H1121"\w* \w heart|strong="H3820"\w* \w is|strong="H1931"\w* \w as|strong="H1571"\w* \w the|strong="H3605"\w* \w heart|strong="H3820"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* lion, \w will|strong="H3478"\w* \w utterly|strong="H4549"\w* \w melt|strong="H4549"\w*; \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w knows|strong="H3045"\w* \w that|strong="H3588"\w* \w your|strong="H3605"\w* \w father|strong="H1121"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w*, \w and|strong="H1121"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H1121"\w* \w with|strong="H3045"\w* \w him|strong="H1931"\w* \w are|strong="H1121"\w* \w valiant|strong="H2428"\w* \w men|strong="H1368"\w*. +\v 11 \w But|strong="H3588"\w* \w I|strong="H3588"\w* \w counsel|strong="H3289"\w* \w that|strong="H3588"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w be|strong="H3478"\w* \w gathered|strong="H3478"\w* \w together|strong="H5921"\w* \w to|strong="H5704"\w* \w you|strong="H3588"\w*, \w from|strong="H6440"\w* \w Dan|strong="H1835"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* Beersheba, \w as|strong="H5704"\w* \w the|strong="H3605"\w* \w sand|strong="H2344"\w* \w that|strong="H3588"\w* \w is|strong="H3478"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w* \w for|strong="H3588"\w* \w multitude|strong="H7230"\w*; \w and|strong="H1980"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w go|strong="H1980"\w* \w to|strong="H5704"\w* \w battle|strong="H7128"\w* \w in|strong="H5921"\w* \w your|strong="H3605"\w* \w own|strong="H6440"\w* \w person|strong="H6440"\w*. +\v 12 \w So|strong="H3808"\w* \w we|strong="H3068"\w* \w will|strong="H1571"\w* \w come|strong="H4672"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w some|strong="H8033"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w he|strong="H8033"\w* \w will|strong="H1571"\w* \w be|strong="H3808"\w* \w found|strong="H4672"\w*, \w and|strong="H8033"\w* \w we|strong="H3068"\w* \w will|strong="H1571"\w* light \w on|strong="H5921"\w* \w him|strong="H5921"\w* \w as|strong="H1571"\w* \w the|strong="H3605"\w* \w dew|strong="H2919"\w* \w falls|strong="H5307"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w ground|strong="H4725"\w*, \w then|strong="H5307"\w* \w we|strong="H3068"\w* \w will|strong="H1571"\w* \w not|strong="H3808"\w* \w leave|strong="H3498"\w* \w so|strong="H3808"\w* \w much|strong="H3498"\w* \w as|strong="H1571"\w* \w one|strong="H3605"\w* \w of|strong="H5921"\w* \w him|strong="H5921"\w* \w and|strong="H8033"\w* \w of|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H1571"\w* \w with|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 13 \w Moreover|strong="H1571"\w*, \w if|strong="H1931"\w* \w he|strong="H1931"\w* \w has|strong="H3478"\w* \w gone|strong="H3808"\w* \w into|strong="H5892"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w*, \w then|strong="H5375"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w will|strong="H3478"\w* \w bring|strong="H5375"\w* \w ropes|strong="H2256"\w* \w to|strong="H5704"\w* \w that|strong="H3605"\w* \w city|strong="H5892"\w*, \w and|strong="H3478"\w* \w we|strong="H3068"\w* \w will|strong="H3478"\w* \w draw|strong="H5498"\w* \w it|strong="H1931"\w* \w into|strong="H5892"\w* \w the|strong="H3605"\w* \w river|strong="H5158"\w*, \w until|strong="H5704"\w* \w there|strong="H8033"\w* isn’t \w one|strong="H3605"\w* \w small|strong="H1571"\w* \w stone|strong="H6872"\w* \w found|strong="H4672"\w* \w there|strong="H8033"\w*.” +\p +\v 14 Absalom \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H7451"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* said, “\w The|strong="H3605"\w* \w counsel|strong="H6098"\w* \w of|strong="H3068"\w* \w Hushai|strong="H2365"\w* \w the|strong="H3605"\w* Archite \w is|strong="H3068"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w the|strong="H3605"\w* \w counsel|strong="H6098"\w* \w of|strong="H3068"\w* Ahithophel.” \w For|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w ordained|strong="H6680"\w* \w to|strong="H3478"\w* \w defeat|strong="H6565"\w* \w the|strong="H3605"\w* \w good|strong="H2896"\w* \w counsel|strong="H6098"\w* \w of|strong="H3068"\w* Ahithophel, \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w intent|strong="H5668"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w might|strong="H3068"\w* \w bring|strong="H7451"\w* \w evil|strong="H7451"\w* \w on|strong="H3068"\w* Absalom. +\p +\v 15 \w Then|strong="H3548"\w* \w Hushai|strong="H2365"\w* said \w to|strong="H3478"\w* \w Zadok|strong="H6659"\w* \w and|strong="H3478"\w* \w to|strong="H3478"\w* Abiathar \w the|strong="H6659"\w* \w priests|strong="H3548"\w*, “Ahithophel \w counseled|strong="H3289"\w* Absalom \w and|strong="H3478"\w* \w the|strong="H6659"\w* \w elders|strong="H2205"\w* \w of|strong="H2205"\w* \w Israel|strong="H3478"\w* \w that|strong="H3478"\w* \w way|strong="H2063"\w*; \w and|strong="H3478"\w* \w I|strong="H3478"\w* \w have|strong="H3478"\w* \w counseled|strong="H3289"\w* \w this|strong="H2063"\w* \w way|strong="H2063"\w*. +\v 16 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w send|strong="H7971"\w* \w quickly|strong="H4120"\w*, \w and|strong="H7971"\w* \w tell|strong="H5046"\w* \w David|strong="H1732"\w*, saying, ‘Don’t \w lodge|strong="H3885"\w* \w tonight|strong="H3915"\w* \w at|strong="H1732"\w* \w the|strong="H3605"\w* \w fords|strong="H6160"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w*, \w but|strong="H1571"\w* \w by|strong="H5674"\w* \w all|strong="H3605"\w* \w means|strong="H5674"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w*, \w lest|strong="H6435"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w be|strong="H1571"\w* \w swallowed|strong="H1104"\w* \w up|strong="H1104"\w*, \w and|strong="H7971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w are|strong="H5971"\w* \w with|strong="H5971"\w* \w him|strong="H7971"\w*.’” +\p +\v 17 \w Now|strong="H3588"\w* \w Jonathan|strong="H3083"\w* \w and|strong="H1980"\w* Ahimaaz \w were|strong="H1992"\w* \w staying|strong="H5975"\w* \w by|strong="H5975"\w* En Rogel; \w and|strong="H1980"\w* \w a|strong="H3068"\w* \w female|strong="H8198"\w* \w servant|strong="H8198"\w* used \w to|strong="H1980"\w* \w go|strong="H1980"\w* \w and|strong="H1980"\w* \w report|strong="H5046"\w* \w to|strong="H1980"\w* \w them|strong="H1992"\w*, \w and|strong="H1980"\w* \w they|strong="H1992"\w* \w went|strong="H1980"\w* \w and|strong="H1980"\w* \w told|strong="H5046"\w* \w King|strong="H4428"\w* \w David|strong="H1732"\w*; \w for|strong="H3588"\w* \w they|strong="H1992"\w* couldn’t risk being \w seen|strong="H7200"\w* \w coming|strong="H1980"\w* \w into|strong="H1980"\w* \w the|strong="H7200"\w* \w city|strong="H5892"\w*. +\v 18 \w But|strong="H7200"\w* \w a|strong="H3068"\w* \w boy|strong="H5288"\w* \w saw|strong="H7200"\w* \w them|strong="H3381"\w*, \w and|strong="H3212"\w* \w told|strong="H5046"\w* Absalom. \w Then|strong="H7200"\w* \w they|strong="H8033"\w* \w both|strong="H8147"\w* \w went|strong="H3212"\w* \w away|strong="H3212"\w* \w quickly|strong="H4120"\w* \w and|strong="H3212"\w* \w came|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H7200"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w a|strong="H3068"\w* \w man|strong="H5288"\w* \w in|strong="H1004"\w* Bahurim, \w who|strong="H5288"\w* had \w a|strong="H3068"\w* well \w in|strong="H1004"\w* \w his|strong="H7200"\w* \w court|strong="H2691"\w*; \w and|strong="H3212"\w* \w they|strong="H8033"\w* \w went|strong="H3212"\w* \w down|strong="H3381"\w* \w there|strong="H8033"\w*. +\v 19 \w The|strong="H6440"\w* woman \w took|strong="H3947"\w* \w and|strong="H6440"\w* \w spread|strong="H6566"\w* \w the|strong="H6440"\w* \w covering|strong="H4539"\w* \w over|strong="H5921"\w* \w the|strong="H6440"\w* \w well|strong="H3045"\w*’s \w mouth|strong="H6440"\w*, \w and|strong="H6440"\w* \w spread|strong="H6566"\w* \w out|strong="H6566"\w* \w crushed|strong="H7383"\w* \w grain|strong="H7383"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*; \w and|strong="H6440"\w* \w nothing|strong="H3808"\w* \w was|strong="H1697"\w* \w known|strong="H3045"\w*. +\v 20 Absalom’s \w servants|strong="H5650"\w* \w came|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H7725"\w* \w woman|strong="H1004"\w* \w to|strong="H7725"\w* \w the|strong="H7725"\w* \w house|strong="H1004"\w*; \w and|strong="H7725"\w* \w they|strong="H3808"\w* said, “\w Where|strong="H1004"\w* \w are|strong="H5650"\w* Ahimaaz \w and|strong="H7725"\w* \w Jonathan|strong="H3083"\w*?” +\p \w The|strong="H7725"\w* \w woman|strong="H1004"\w* said \w to|strong="H7725"\w* \w them|strong="H7725"\w*, “\w They|strong="H3808"\w* \w have|strong="H5650"\w* \w gone|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H7725"\w* \w brook|strong="H4323"\w* \w of|strong="H1004"\w* \w water|strong="H4325"\w*.” +\p \w When|strong="H7725"\w* \w they|strong="H3808"\w* \w had|strong="H3083"\w* \w sought|strong="H1245"\w* \w and|strong="H7725"\w* could \w not|strong="H3808"\w* \w find|strong="H4672"\w* \w them|strong="H7725"\w*, \w they|strong="H3808"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Jerusalem|strong="H3389"\w*. +\v 21 \w After|strong="H5921"\w* \w they|strong="H3588"\w* \w had|strong="H1961"\w* \w departed|strong="H3212"\w*, \w they|strong="H3588"\w* \w came|strong="H1961"\w* \w up|strong="H5927"\w* \w out|strong="H5921"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* well \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w and|strong="H6965"\w* \w told|strong="H5046"\w* \w King|strong="H4428"\w* \w David|strong="H1732"\w*; \w and|strong="H6965"\w* \w they|strong="H3588"\w* said \w to|strong="H3212"\w* \w David|strong="H1732"\w*, “\w Arise|strong="H6965"\w* \w and|strong="H6965"\w* \w pass|strong="H5674"\w* \w quickly|strong="H4120"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w water|strong="H4325"\w*; \w for|strong="H3588"\w* \w thus|strong="H3602"\w* \w has|strong="H1961"\w* Ahithophel \w counseled|strong="H3289"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w*.” +\p +\v 22 \w Then|strong="H6965"\w* \w David|strong="H1732"\w* \w arose|strong="H6965"\w*, \w and|strong="H6965"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w with|strong="H5971"\w* \w him|strong="H3605"\w*, \w and|strong="H6965"\w* \w they|strong="H3808"\w* \w passed|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*. \w By|strong="H5674"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w* light \w there|strong="H3605"\w* \w lacked|strong="H5737"\w* \w not|strong="H3808"\w* \w one|strong="H3605"\w* \w of|strong="H5971"\w* \w them|strong="H5674"\w* \w who|strong="H3605"\w* \w had|strong="H1732"\w* \w not|strong="H3808"\w* \w gone|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*. +\p +\v 23 \w When|strong="H3588"\w* Ahithophel \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w his|strong="H7200"\w* \w counsel|strong="H6098"\w* \w was|strong="H5892"\w* \w not|strong="H3808"\w* \w followed|strong="H3212"\w*, \w he|strong="H3588"\w* \w saddled|strong="H2280"\w* \w his|strong="H7200"\w* \w donkey|strong="H2543"\w*, \w arose|strong="H6965"\w*, \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w home|strong="H1004"\w* \w to|strong="H4191"\w* \w his|strong="H7200"\w* \w city|strong="H5892"\w*, \w set|strong="H6965"\w* \w his|strong="H7200"\w* \w house|strong="H1004"\w* \w in|strong="H6213"\w* \w order|strong="H6680"\w*, \w and|strong="H6965"\w* \w hanged|strong="H2614"\w* \w himself|strong="H6213"\w*; \w and|strong="H6965"\w* \w he|strong="H3588"\w* \w died|strong="H4191"\w*, \w and|strong="H6965"\w* \w was|strong="H5892"\w* \w buried|strong="H6912"\w* \w in|strong="H6213"\w* \w the|strong="H7200"\w* \w tomb|strong="H6913"\w* \w of|strong="H1004"\w* \w his|strong="H7200"\w* father. +\p +\v 24 \w Then|strong="H5674"\w* \w David|strong="H1732"\w* \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w Mahanaim|strong="H4266"\w*. Absalom \w passed|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*, \w he|strong="H1931"\w* \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H3605"\w* \w Israel|strong="H3478"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*. +\v 25 Absalom \w set|strong="H7760"\w* \w Amasa|strong="H6021"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w army|strong="H6635"\w* \w instead|strong="H8478"\w* \w of|strong="H1121"\w* \w Joab|strong="H3097"\w*. \w Now|strong="H7760"\w* \w Amasa|strong="H6021"\w* \w was|strong="H8034"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w whose|strong="H1121"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Ithra|strong="H3501"\w* \w the|strong="H5921"\w* \w Israelite|strong="H3481"\w*, \w who|strong="H1121"\w* \w went|strong="H1121"\w* \w in|strong="H5921"\w* \w to|strong="H5921"\w* Abigail \w the|strong="H5921"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Nahash|strong="H5176"\w*, sister \w to|strong="H5921"\w* \w Zeruiah|strong="H6870"\w*, \w Joab|strong="H3097"\w*’s mother. +\v 26 \w Israel|strong="H3478"\w* \w and|strong="H3478"\w* Absalom \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w the|strong="H3478"\w* land \w of|strong="H3478"\w* \w Gilead|strong="H1568"\w*. +\p +\v 27 \w When|strong="H1961"\w* \w David|strong="H1732"\w* \w had|strong="H1961"\w* \w come|strong="H1961"\w* \w to|strong="H1961"\w* \w Mahanaim|strong="H4266"\w*, \w Shobi|strong="H7629"\w* \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nahash|strong="H5176"\w* \w of|strong="H1121"\w* \w Rabbah|strong="H7237"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, \w and|strong="H1121"\w* \w Machir|strong="H4353"\w* \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammiel|strong="H5988"\w* \w of|strong="H1121"\w* \w Lodebar|strong="H3810"\w*, \w and|strong="H1121"\w* \w Barzillai|strong="H1271"\w* \w the|strong="H1961"\w* \w Gileadite|strong="H1569"\w* \w of|strong="H1121"\w* \w Rogelim|strong="H7274"\w*, +\v 28 brought \w beds|strong="H4904"\w*, \w basins|strong="H5592"\w*, \w earthen|strong="H3335"\w* \w vessels|strong="H3627"\w*, \w wheat|strong="H2406"\w*, \w barley|strong="H8184"\w*, \w meal|strong="H7058"\w*, \w parched|strong="H7039"\w* \w grain|strong="H7039"\w*, \w beans|strong="H6321"\w*, \w lentils|strong="H5742"\w*, \w roasted|strong="H7039"\w* \w grain|strong="H7039"\w*, +\v 29 \w honey|strong="H1706"\w*, \w butter|strong="H2529"\w*, \w sheep|strong="H6629"\w*, \w and|strong="H5971"\w* \w cheese|strong="H8194"\w* \w of|strong="H4057"\w* \w the|strong="H3588"\w* \w herd|strong="H1241"\w*, \w for|strong="H3588"\w* \w David|strong="H1732"\w* \w and|strong="H5971"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w with|strong="H5971"\w* \w him|strong="H1732"\w* \w to|strong="H1732"\w* eat; \w for|strong="H3588"\w* \w they|strong="H3588"\w* said, “\w The|strong="H3588"\w* \w people|strong="H5971"\w* \w are|strong="H5971"\w* \w hungry|strong="H7457"\w*, \w weary|strong="H5889"\w*, \w and|strong="H5971"\w* \w thirsty|strong="H6771"\w* \w in|strong="H6629"\w* \w the|strong="H3588"\w* \w wilderness|strong="H4057"\w*.” +\c 18 +\p +\v 1 \w David|strong="H1732"\w* \w counted|strong="H6485"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w with|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H3967"\w* \w set|strong="H7760"\w* \w captains|strong="H8269"\w* \w of|strong="H8269"\w* thousands \w and|strong="H3967"\w* \w captains|strong="H8269"\w* \w of|strong="H8269"\w* \w hundreds|strong="H3967"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 2 \w David|strong="H1732"\w* \w sent|strong="H7971"\w* \w the|strong="H7971"\w* \w people|strong="H5971"\w* \w out|strong="H3318"\w*, \w a|strong="H3068"\w* \w third|strong="H7992"\w* \w part|strong="H7992"\w* \w under|strong="H3027"\w* \w the|strong="H7971"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w Joab|strong="H3097"\w*, \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w third|strong="H7992"\w* \w part|strong="H7992"\w* \w under|strong="H3027"\w* \w the|strong="H7971"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* Abishai \w the|strong="H7971"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w*, \w Joab|strong="H3097"\w*’s brother, \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w third|strong="H7992"\w* \w part|strong="H7992"\w* \w under|strong="H3027"\w* \w the|strong="H7971"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* Ittai \w the|strong="H7971"\w* \w Gittite|strong="H1663"\w*. \w The|strong="H7971"\w* \w king|strong="H4428"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H7971"\w* \w people|strong="H5971"\w*, “\w I|strong="H1571"\w* \w will|strong="H4428"\w* \w also|strong="H1571"\w* \w surely|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w with|strong="H5973"\w* \w you|strong="H7971"\w* \w myself|strong="H1571"\w*.” +\p +\v 3 \w But|strong="H3588"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w said|strong="H3318"\w*, “\w You|strong="H3588"\w* \w shall|strong="H5971"\w* \w not|strong="H3808"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*, \w for|strong="H3588"\w* \w if|strong="H3588"\w* \w we|strong="H3068"\w* \w flee|strong="H5127"\w* \w away|strong="H5127"\w*, \w they|strong="H3588"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w care|strong="H7760"\w* \w for|strong="H3588"\w* \w us|strong="H7760"\w*, \w neither|strong="H3808"\w* \w if|strong="H3588"\w* \w half|strong="H2677"\w* \w of|strong="H5892"\w* \w us|strong="H7760"\w* \w die|strong="H4191"\w*, \w will|strong="H1961"\w* \w they|strong="H3588"\w* \w care|strong="H7760"\w* \w for|strong="H3588"\w* \w us|strong="H7760"\w*. \w But|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H5971"\w* \w worth|strong="H3644"\w* \w ten|strong="H6235"\w* thousand \w of|strong="H5892"\w* \w us|strong="H7760"\w*. \w Therefore|strong="H6258"\w* \w now|strong="H6258"\w* \w it|strong="H7760"\w* \w is|strong="H3820"\w* \w better|strong="H2896"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H5971"\w* \w ready|strong="H2896"\w* \w to|strong="H3318"\w* \w help|strong="H5826"\w* \w us|strong="H7760"\w* \w out|strong="H3318"\w* \w of|strong="H5892"\w* \w the|strong="H3588"\w* \w city|strong="H5892"\w*.” +\p +\v 4 \w The|strong="H3605"\w* \w king|strong="H4428"\w* said \w to|strong="H3381"\w* \w them|strong="H3027"\w*, “\w I|strong="H3027"\w* \w will|strong="H4428"\w* \w do|strong="H6213"\w* \w what|strong="H6213"\w* \w seems|strong="H3190"\w* \w best|strong="H3190"\w* \w to|strong="H3381"\w* \w you|strong="H3605"\w*.” +\p \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w stood|strong="H5975"\w* \w beside|strong="H3027"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w*, \w and|strong="H3967"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w went|strong="H3381"\w* \w out|strong="H6213"\w* \w by|strong="H3027"\w* \w hundreds|strong="H3967"\w* \w and|strong="H3967"\w* \w by|strong="H3027"\w* thousands. +\v 5 \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w commanded|strong="H6680"\w* \w Joab|strong="H3097"\w* \w and|strong="H4428"\w* Abishai \w and|strong="H4428"\w* Ittai, \w saying|strong="H1697"\w*, “Deal gently \w for|strong="H5921"\w* \w my|strong="H8085"\w* \w sake|strong="H5921"\w* \w with|strong="H5921"\w* \w the|strong="H3605"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* Absalom.” \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w heard|strong="H8085"\w* \w when|strong="H8085"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w commanded|strong="H6680"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w concerning|strong="H5921"\w* Absalom. +\p +\v 6 \w So|strong="H1961"\w* \w the|strong="H3318"\w* \w people|strong="H5971"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H3318"\w* \w field|strong="H7704"\w* \w against|strong="H7125"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w the|strong="H3318"\w* \w battle|strong="H4421"\w* \w was|strong="H1961"\w* \w in|strong="H3478"\w* \w the|strong="H3318"\w* \w forest|strong="H3293"\w* \w of|strong="H7704"\w* Ephraim. +\v 7 \w The|strong="H6440"\w* \w people|strong="H5971"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w struck|strong="H5062"\w* \w there|strong="H8033"\w* \w before|strong="H6440"\w* \w David|strong="H1732"\w*’s \w servants|strong="H5650"\w*, \w and|strong="H3478"\w* \w there|strong="H8033"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w slaughter|strong="H4046"\w* \w there|strong="H8033"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w twenty|strong="H6242"\w* thousand \w men|strong="H1419"\w*. +\v 8 \w For|strong="H5921"\w* \w the|strong="H3605"\w* \w battle|strong="H4421"\w* \w was|strong="H1961"\w* \w there|strong="H8033"\w* \w spread|strong="H6327"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H3117"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* country, \w and|strong="H3117"\w* \w the|strong="H3605"\w* \w forest|strong="H3293"\w* devoured \w more|strong="H7235"\w* \w people|strong="H5971"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w* \w than|strong="H7235"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w* devoured. +\p +\v 9 Absalom \w happened|strong="H7122"\w* \w to|strong="H5921"\w* \w meet|strong="H7122"\w* \w David|strong="H1732"\w*’s \w servants|strong="H5650"\w*. Absalom \w was|strong="H1732"\w* \w riding|strong="H7392"\w* \w on|strong="H5921"\w* \w his|strong="H5414"\w* \w mule|strong="H6505"\w*, \w and|strong="H1419"\w* \w the|strong="H6440"\w* \w mule|strong="H6505"\w* \w went|strong="H5674"\w* \w under|strong="H8478"\w* \w the|strong="H6440"\w* \w thick|strong="H7730"\w* \w boughs|strong="H7730"\w* \w of|strong="H7218"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* oak; \w and|strong="H1419"\w* \w his|strong="H5414"\w* \w head|strong="H7218"\w* \w caught|strong="H2388"\w* \w hold|strong="H2388"\w* \w of|strong="H7218"\w* \w the|strong="H6440"\w* oak, \w and|strong="H1419"\w* \w he|strong="H1732"\w* \w was|strong="H1732"\w* \w hanging|strong="H5414"\w* \w between|strong="H5921"\w* \w the|strong="H6440"\w* \w sky|strong="H8064"\w* \w and|strong="H1419"\w* \w earth|strong="H8064"\w*; \w and|strong="H1419"\w* \w the|strong="H6440"\w* \w mule|strong="H6505"\w* \w that|strong="H5414"\w* \w was|strong="H1732"\w* \w under|strong="H8478"\w* \w him|strong="H5414"\w* \w went|strong="H5674"\w* \w on|strong="H5921"\w*. +\v 10 \w A|strong="H3068"\w* certain \w man|strong="H7200"\w* \w saw|strong="H7200"\w* \w it|strong="H7200"\w*, \w and|strong="H7200"\w* \w told|strong="H5046"\w* \w Joab|strong="H3097"\w*, \w and|strong="H7200"\w* said, “\w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w saw|strong="H7200"\w* Absalom \w hanging|strong="H8518"\w* \w in|strong="H7200"\w* \w an|strong="H7200"\w* oak.” +\p +\v 11 \w Joab|strong="H3097"\w* said \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w man|strong="H7200"\w* \w who|strong="H5221"\w* \w told|strong="H5046"\w* \w him|strong="H5414"\w*, “\w Behold|strong="H2009"\w*, \w you|strong="H5414"\w* \w saw|strong="H7200"\w* \w it|strong="H5414"\w*, \w and|strong="H3701"\w* \w why|strong="H4069"\w* didn’t \w you|strong="H5414"\w* \w strike|strong="H5221"\w* \w him|strong="H5414"\w* \w there|strong="H8033"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* ground? \w I|strong="H5414"\w* would \w have|strong="H7200"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w* \w ten|strong="H6235"\w* pieces \w of|strong="H5921"\w* \w silver|strong="H3701"\w* \w and|strong="H3701"\w* \w a|strong="H3068"\w* sash.” +\p +\v 12 \w The|strong="H5921"\w* \w man|strong="H5288"\w* said \w to|strong="H7971"\w* \w Joab|strong="H3097"\w*, “\w Though|strong="H3588"\w* \w I|strong="H3588"\w* \w should|strong="H3588"\w* \w receive|strong="H8254"\w* \w a|strong="H3068"\w* thousand pieces \w of|strong="H1121"\w* \w silver|strong="H3701"\w* \w in|strong="H5921"\w* \w my|strong="H8104"\w* \w hand|strong="H3027"\w*, \w I|strong="H3588"\w* \w still|strong="H3588"\w* wouldn’t \w stretch|strong="H7971"\w* \w out|strong="H7971"\w* \w my|strong="H8104"\w* \w hand|strong="H3027"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w son|strong="H1121"\w*; \w for|strong="H3588"\w* \w in|strong="H5921"\w* \w our|strong="H5921"\w* hearing \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w commanded|strong="H6680"\w* \w you|strong="H3588"\w* \w and|strong="H1121"\w* Abishai \w and|strong="H1121"\w* Ittai, saying, ‘\w Beware|strong="H8104"\w* \w that|strong="H3588"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* touch \w the|strong="H5921"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* Absalom.’ +\v 13 \w Otherwise|strong="H3808"\w*, if \w I|strong="H1697"\w* \w had|strong="H4428"\w* \w dealt|strong="H6213"\w* \w falsely|strong="H8267"\w* \w against|strong="H4480"\w* \w his|strong="H3605"\w* \w life|strong="H5315"\w* (\w and|strong="H4428"\w* \w there|strong="H4480"\w* \w is|strong="H5315"\w* \w no|strong="H3808"\w* \w matter|strong="H1697"\w* \w hidden|strong="H3582"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*), \w then|strong="H6213"\w* \w you|strong="H3605"\w* \w yourself|strong="H5315"\w* \w would|strong="H1697"\w* \w have|strong="H1697"\w* \w set|strong="H3320"\w* \w yourself|strong="H5315"\w* \w against|strong="H4480"\w* \w me|strong="H5315"\w*.” +\p +\v 14 \w Then|strong="H3947"\w* \w Joab|strong="H3097"\w* \w said|strong="H3651"\w*, “\w I|strong="H3651"\w*’m \w not|strong="H3808"\w* going \w to|strong="H3820"\w* \w wait|strong="H3176"\w* \w like|strong="H3651"\w* \w this|strong="H3651"\w* \w with|strong="H6440"\w* \w you|strong="H6440"\w*.” \w He|strong="H3651"\w* \w took|strong="H3947"\w* \w three|strong="H7969"\w* \w darts|strong="H7626"\w* \w in|strong="H6440"\w* \w his|strong="H3947"\w* \w hand|strong="H3709"\w* \w and|strong="H6440"\w* \w thrust|strong="H8628"\w* \w them|strong="H6440"\w* \w through|strong="H3820"\w* Absalom’s \w heart|strong="H3820"\w* \w while|strong="H5750"\w* \w he|strong="H3651"\w* \w was|strong="H3820"\w* \w still|strong="H5750"\w* \w alive|strong="H2416"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w middle|strong="H3820"\w* \w of|strong="H7626"\w* \w the|strong="H6440"\w* oak. +\v 15 \w Ten|strong="H6235"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w who|strong="H5288"\w* \w bore|strong="H5375"\w* \w Joab|strong="H3097"\w*’s \w armor|strong="H3627"\w* \w surrounded|strong="H5437"\w* \w and|strong="H5288"\w* \w struck|strong="H5221"\w* Absalom, \w and|strong="H5288"\w* \w killed|strong="H5221"\w* \w him|strong="H5221"\w*. +\v 16 \w Joab|strong="H3097"\w* \w blew|strong="H8628"\w* \w the|strong="H3588"\w* \w trumpet|strong="H7782"\w*, \w and|strong="H3478"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w returned|strong="H7725"\w* \w from|strong="H7725"\w* \w pursuing|strong="H7291"\w* \w after|strong="H7291"\w* \w Israel|strong="H3478"\w*; \w for|strong="H3588"\w* \w Joab|strong="H3097"\w* \w held|strong="H3097"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w back|strong="H7725"\w*. +\v 17 \w They|strong="H5921"\w* \w took|strong="H3947"\w* Absalom \w and|strong="H3478"\w* \w cast|strong="H7993"\w* \w him|strong="H5921"\w* \w into|strong="H5921"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w pit|strong="H6354"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w forest|strong="H3293"\w*, \w and|strong="H3478"\w* raised \w over|strong="H5921"\w* \w him|strong="H5921"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H1419"\w* \w heap|strong="H1530"\w* \w of|strong="H5921"\w* stones. \w Then|strong="H3947"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w fled|strong="H5127"\w*, \w each|strong="H3605"\w* \w to|strong="H3478"\w* \w his|strong="H3605"\w* own tent. +\p +\v 18 \w Now|strong="H3117"\w* Absalom \w in|strong="H5921"\w* \w his|strong="H7121"\w* \w lifetime|strong="H3117"\w* \w had|strong="H4428"\w* \w taken|strong="H3947"\w* \w and|strong="H1121"\w* reared \w up|strong="H5324"\w* \w for|strong="H3588"\w* \w himself|strong="H3027"\w* \w the|strong="H5921"\w* \w pillar|strong="H4678"\w* \w which|strong="H2088"\w* \w is|strong="H2088"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w valley|strong="H6010"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w said|strong="H7121"\w*, “\w I|strong="H3588"\w* \w have|strong="H1121"\w* \w no|strong="H3947"\w* \w son|strong="H1121"\w* \w to|strong="H5704"\w* \w keep|strong="H2142"\w* \w my|strong="H3947"\w* \w name|strong="H8034"\w* \w in|strong="H5921"\w* \w memory|strong="H8034"\w*.” \w He|strong="H3588"\w* \w called|strong="H7121"\w* \w the|strong="H5921"\w* \w pillar|strong="H4678"\w* \w after|strong="H5921"\w* \w his|strong="H7121"\w* \w own|strong="H3027"\w* \w name|strong="H8034"\w*. \w It|strong="H7121"\w* \w is|strong="H2088"\w* \w called|strong="H7121"\w* Absalom’s \w monument|strong="H3027"\w*, \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\p +\v 19 \w Then|strong="H4428"\w* Ahimaaz \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zadok|strong="H6659"\w* said, “\w Let|strong="H4994"\w* \w me|strong="H4994"\w* \w now|strong="H4994"\w* \w run|strong="H7323"\w* \w and|strong="H1121"\w* \w carry|strong="H1319"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w news|strong="H1319"\w*, \w how|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w avenged|strong="H8199"\w* \w him|strong="H3027"\w* \w of|strong="H1121"\w* \w his|strong="H3068"\w* \w enemies|strong="H3027"\w*.” +\p +\v 20 \w Joab|strong="H3097"\w* said \w to|strong="H4191"\w* \w him|strong="H5921"\w*, “\w You|strong="H3588"\w* \w must|strong="H4191"\w* \w not|strong="H3808"\w* \w be|strong="H4191"\w* \w the|strong="H5921"\w* \w bearer|strong="H1319"\w* \w of|strong="H1121"\w* \w news|strong="H1319"\w* \w today|strong="H3117"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w must|strong="H4191"\w* \w carry|strong="H1319"\w* \w news|strong="H1319"\w* \w another|strong="H2088"\w* \w day|strong="H3117"\w*. \w But|strong="H3588"\w* \w today|strong="H3117"\w* \w you|strong="H3588"\w* \w must|strong="H4191"\w* \w carry|strong="H1319"\w* \w no|strong="H3808"\w* \w news|strong="H1319"\w*, \w because|strong="H3588"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w son|strong="H1121"\w* \w is|strong="H2088"\w* \w dead|strong="H4191"\w*.” +\p +\v 21 \w Then|strong="H4428"\w* \w Joab|strong="H3097"\w* said \w to|strong="H3212"\w* \w the|strong="H7200"\w* \w Cushite|strong="H3569"\w*, “\w Go|strong="H3212"\w*, \w tell|strong="H5046"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w* \w what|strong="H7200"\w* \w you|strong="H5046"\w* \w have|strong="H7200"\w* \w seen|strong="H7200"\w*!” \w The|strong="H7200"\w* \w Cushite|strong="H3569"\w* \w bowed|strong="H7812"\w* \w himself|strong="H7812"\w* \w to|strong="H3212"\w* \w Joab|strong="H3097"\w*, \w and|strong="H4428"\w* \w ran|strong="H7323"\w*. +\p +\v 22 \w Then|strong="H1961"\w* Ahimaaz \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zadok|strong="H6659"\w* said \w yet|strong="H5750"\w* \w again|strong="H5750"\w* \w to|strong="H1961"\w* \w Joab|strong="H3097"\w*, “\w But|strong="H1961"\w* \w come|strong="H1961"\w* \w what|strong="H4100"\w* \w may|strong="H1961"\w*, \w please|strong="H4994"\w* \w let|strong="H4994"\w* \w me|strong="H4994"\w* \w also|strong="H1571"\w* \w run|strong="H7323"\w* \w after|strong="H1961"\w* \w the|strong="H1961"\w* \w Cushite|strong="H3569"\w*.” +\p \w Joab|strong="H3097"\w* said, “\w Why|strong="H4100"\w* \w do|strong="H3254"\w* \w you|strong="H4100"\w* \w want|strong="H7323"\w* \w to|strong="H1961"\w* \w run|strong="H7323"\w*, \w my|strong="H1961"\w* \w son|strong="H1121"\w*, \w since|strong="H5750"\w* \w you|strong="H4100"\w* \w will|strong="H1961"\w* \w have|strong="H1961"\w* \w no|strong="H4672"\w* \w reward|strong="H1309"\w* \w for|strong="H1121"\w* \w the|strong="H1961"\w* \w news|strong="H1309"\w*?” +\p +\v 23 “\w But|strong="H1961"\w* \w come|strong="H1961"\w* \w what|strong="H4100"\w* \w may|strong="H1961"\w*,” \w he|strong="H4100"\w* said, “\w I|strong="H4100"\w* \w will|strong="H1961"\w* \w run|strong="H7323"\w*.” +\p \w He|strong="H4100"\w* said \w to|strong="H1961"\w* \w him|strong="H1870"\w*, “\w Run|strong="H7323"\w*!” \w Then|strong="H1961"\w* Ahimaaz \w ran|strong="H7323"\w* \w by|strong="H5674"\w* \w the|strong="H5674"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w the|strong="H5674"\w* \w Plain|strong="H3603"\w*, \w and|strong="H1870"\w* \w outran|strong="H7323"\w* \w the|strong="H5674"\w* \w Cushite|strong="H3569"\w*. +\p +\v 24 \w Now|strong="H2009"\w* \w David|strong="H1732"\w* \w was|strong="H1732"\w* \w sitting|strong="H3427"\w* \w between|strong="H3427"\w* \w the|strong="H7200"\w* \w two|strong="H8147"\w* \w gates|strong="H8179"\w*; \w and|strong="H3212"\w* \w the|strong="H7200"\w* \w watchman|strong="H6822"\w* \w went|strong="H3212"\w* \w up|strong="H5375"\w* \w to|strong="H3212"\w* \w the|strong="H7200"\w* \w roof|strong="H1406"\w* \w of|strong="H3427"\w* \w the|strong="H7200"\w* \w gate|strong="H8179"\w* \w to|strong="H3212"\w* \w the|strong="H7200"\w* \w wall|strong="H2346"\w*, \w and|strong="H3212"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w eyes|strong="H5869"\w* \w and|strong="H3212"\w* \w looked|strong="H7200"\w*, \w and|strong="H3212"\w*, \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w man|strong="H5375"\w* \w running|strong="H7323"\w* alone. +\v 25 \w The|strong="H7121"\w* \w watchman|strong="H6822"\w* \w shouted|strong="H7121"\w* \w and|strong="H1980"\w* \w told|strong="H5046"\w* \w the|strong="H7121"\w* \w king|strong="H4428"\w*. \w The|strong="H7121"\w* \w king|strong="H4428"\w* \w said|strong="H7121"\w*, “If \w he|strong="H1980"\w* \w is|strong="H4428"\w* alone, there \w is|strong="H4428"\w* \w news|strong="H1309"\w* \w in|strong="H1980"\w* \w his|strong="H7121"\w* \w mouth|strong="H6310"\w*.” \w He|strong="H1980"\w* \w came|strong="H1980"\w* closer \w and|strong="H1980"\w* closer. +\p +\v 26 \w The|strong="H7200"\w* \w watchman|strong="H6822"\w* \w saw|strong="H7200"\w* \w another|strong="H2088"\w* \w man|strong="H2088"\w* \w running|strong="H7323"\w*; \w and|strong="H4428"\w* \w the|strong="H7200"\w* \w watchman|strong="H6822"\w* \w called|strong="H7121"\w* \w to|strong="H4428"\w* \w the|strong="H7200"\w* \w gatekeeper|strong="H7778"\w* \w and|strong="H4428"\w* \w said|strong="H7121"\w*, “\w Behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w man|strong="H2088"\w* \w running|strong="H7323"\w* alone!” +\p \w The|strong="H7200"\w* \w king|strong="H4428"\w* \w said|strong="H7121"\w*, “\w He|strong="H7121"\w* \w also|strong="H1571"\w* \w brings|strong="H1319"\w* \w news|strong="H1319"\w*.” +\p +\v 27 \w The|strong="H7200"\w* \w watchman|strong="H6822"\w* said, “\w I|strong="H7200"\w* \w think|strong="H7200"\w* \w the|strong="H7200"\w* \w running|strong="H4794"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w first|strong="H7223"\w* \w one|strong="H2088"\w* \w is|strong="H2088"\w* \w like|strong="H1121"\w* \w the|strong="H7200"\w* \w running|strong="H4794"\w* \w of|strong="H1121"\w* Ahimaaz \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zadok|strong="H6659"\w*.” +\p \w The|strong="H7200"\w* \w king|strong="H4428"\w* said, “\w He|strong="H4428"\w* \w is|strong="H2088"\w* \w a|strong="H3068"\w* \w good|strong="H2896"\w* \w man|strong="H1121"\w*, \w and|strong="H1121"\w* comes \w with|strong="H4428"\w* \w good|strong="H2896"\w* \w news|strong="H1309"\w*.” +\p +\v 28 Ahimaaz \w called|strong="H7121"\w*, \w and|strong="H3068"\w* \w said|strong="H7121"\w* \w to|strong="H3068"\w* \w the|strong="H5375"\w* \w king|strong="H4428"\w*, “\w All|strong="H1288"\w* \w is|strong="H3068"\w* \w well|strong="H7965"\w*.” \w He|strong="H3068"\w* \w bowed|strong="H7812"\w* \w himself|strong="H7812"\w* \w before|strong="H7121"\w* \w the|strong="H5375"\w* \w king|strong="H4428"\w* \w with|strong="H3068"\w* \w his|strong="H5375"\w* face \w to|strong="H3068"\w* \w the|strong="H5375"\w* earth, \w and|strong="H3068"\w* \w said|strong="H7121"\w*, “\w Blessed|strong="H1288"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w delivered|strong="H5462"\w* \w up|strong="H5375"\w* \w the|strong="H5375"\w* \w men|strong="H7121"\w* \w who|strong="H3068"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w their|strong="H3068"\w* \w hand|strong="H3027"\w* \w against|strong="H3027"\w* \w my|strong="H3068"\w* \w lord|strong="H3068"\w* \w the|strong="H5375"\w* \w king|strong="H4428"\w*!” +\p +\v 29 \w The|strong="H7200"\w* \w king|strong="H4428"\w* said, “\w Is|strong="H4100"\w* \w it|strong="H7200"\w* \w well|strong="H7965"\w* \w with|strong="H3045"\w* \w the|strong="H7200"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* Absalom?” +\p Ahimaaz answered, “\w When|strong="H7200"\w* \w Joab|strong="H3097"\w* \w sent|strong="H7971"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w*’s \w servant|strong="H5650"\w*, \w even|strong="H3808"\w* \w me|strong="H7971"\w* \w your|strong="H7200"\w* \w servant|strong="H5650"\w*, \w I|strong="H3045"\w* \w saw|strong="H7200"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w tumult|strong="H1995"\w*, \w but|strong="H3808"\w* \w I|strong="H3045"\w* don’t \w know|strong="H3045"\w* \w what|strong="H4100"\w* \w it|strong="H7200"\w* \w was|strong="H4428"\w*.” +\p +\v 30 \w The|strong="H3541"\w* \w king|strong="H4428"\w* said, “\w Come|strong="H5437"\w* \w and|strong="H4428"\w* \w stand|strong="H5975"\w* \w here|strong="H3541"\w*.” \w He|strong="H3541"\w* \w came|strong="H4428"\w* \w and|strong="H4428"\w* \w stood|strong="H5975"\w* \w still|strong="H5975"\w*. +\p +\v 31 \w Behold|strong="H2009"\w*, \w the|strong="H3605"\w* \w Cushite|strong="H3569"\w* \w came|strong="H3068"\w*. \w The|strong="H3605"\w* \w Cushite|strong="H3569"\w* said, “\w Good|strong="H1319"\w* \w news|strong="H1319"\w* \w for|strong="H3588"\w* \w my|strong="H3605"\w* \w lord|strong="H3068"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w avenged|strong="H8199"\w* \w you|strong="H3588"\w* \w today|strong="H3117"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w*.” +\p +\v 32 \w The|strong="H3605"\w* \w king|strong="H4428"\w* said \w to|strong="H1961"\w* \w the|strong="H3605"\w* \w Cushite|strong="H3569"\w*, “\w Is|strong="H3605"\w* \w it|strong="H5921"\w* \w well|strong="H7965"\w* \w with|strong="H5921"\w* \w the|strong="H3605"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* Absalom?” +\p \w The|strong="H3605"\w* \w Cushite|strong="H3569"\w* answered, “\w May|strong="H1961"\w* \w the|strong="H3605"\w* \w enemies|strong="H6965"\w* \w of|strong="H4428"\w* \w my|strong="H3605"\w* lord \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w and|strong="H6965"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H5921"\w* \w you|strong="H3605"\w* \w to|strong="H1961"\w* \w do|strong="H3605"\w* \w you|strong="H3605"\w* \w harm|strong="H7451"\w*, \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w that|strong="H3605"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* \w is|strong="H3605"\w*.” +\p +\v 33 The king was much moved, and went up to the room over the gate and wept. As he went, he said, “My son Absalom! My son, my son Absalom! I wish I had died instead of you, Absalom, my son, my son!” +\c 19 +\p +\v 1 Joab \w was|strong="H4428"\w* told, “Behold, \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w weeps|strong="H1058"\w* \w and|strong="H1121"\w* mourns \w for|strong="H5921"\w* Absalom.” +\v 2 \w The|strong="H5921"\w* victory \w that|strong="H4428"\w* day \w was|strong="H4428"\w* turned \w into|strong="H5921"\w* mourning \w among|strong="H5921"\w* \w all|strong="H1058"\w* \w the|strong="H5921"\w* people, \w for|strong="H5921"\w* \w the|strong="H5921"\w* people \w heard|strong="H5046"\w* \w it|strong="H5921"\w* said \w that|strong="H4428"\w* day, “\w The|strong="H5921"\w* \w king|strong="H4428"\w* grieves \w for|strong="H5921"\w* \w his|strong="H5921"\w* son.” +\p +\v 3 \w The|strong="H3605"\w* \w people|strong="H5971"\w* sneaked \w into|strong="H5921"\w* \w the|strong="H3605"\w* \w city|strong="H1931"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w*, \w as|strong="H3117"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w are|strong="H3117"\w* ashamed steal \w away|strong="H3605"\w* \w when|strong="H3588"\w* \w they|strong="H3588"\w* flee \w in|strong="H5921"\w* \w battle|strong="H3117"\w*. +\v 4 \w The|strong="H3117"\w* king covered \w his|strong="H3117"\w* face, \w and|strong="H3117"\w* \w the|strong="H3117"\w* king \w cried|strong="H5892"\w* \w with|strong="H3117"\w* \w a|strong="H3068"\w* loud voice, “\w My|strong="H1589"\w* son Absalom, Absalom, \w my|strong="H1589"\w* son, \w my|strong="H1589"\w* son!” +\p +\v 5 Joab \w came|strong="H4428"\w* into \w the|strong="H6440"\w* house \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*, \w and|strong="H1121"\w* said, “Today \w you|strong="H6440"\w* \w have|strong="H1121"\w* shamed \w the|strong="H6440"\w* \w faces|strong="H6440"\w* \w of|strong="H1121"\w* \w all|strong="H1419"\w* \w your|strong="H6440"\w* \w servants|strong="H6440"\w* \w who|strong="H1121"\w* today \w have|strong="H1121"\w* saved \w your|strong="H6440"\w* life, \w and|strong="H1121"\w* \w the|strong="H6440"\w* lives \w of|strong="H1121"\w* \w your|strong="H6440"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w your|strong="H6440"\w* \w daughters|strong="H1121"\w*, \w and|strong="H1121"\w* \w the|strong="H6440"\w* lives \w of|strong="H1121"\w* \w your|strong="H6440"\w* wives, \w and|strong="H1121"\w* \w the|strong="H6440"\w* lives \w of|strong="H1121"\w* \w your|strong="H6440"\w* concubines; +\v 6 \w in|strong="H1004"\w* \w that|strong="H3605"\w* \w you|strong="H6440"\w* love \w those|strong="H3605"\w* \w who|strong="H3605"\w* hate \w you|strong="H6440"\w* \w and|strong="H1121"\w* hate \w those|strong="H3605"\w* \w who|strong="H3605"\w* love \w you|strong="H6440"\w*. \w For|strong="H6440"\w* \w you|strong="H6440"\w* \w have|strong="H1121"\w* declared \w today|strong="H3117"\w* \w that|strong="H3605"\w* princes \w and|strong="H1121"\w* \w servants|strong="H5650"\w* \w are|strong="H3117"\w* \w nothing|strong="H3605"\w* \w to|strong="H6440"\w* \w you|strong="H6440"\w*. \w For|strong="H6440"\w* \w today|strong="H3117"\w* \w I|strong="H3117"\w* perceive \w that|strong="H3605"\w* \w if|strong="H1121"\w* Absalom \w had|strong="H4428"\w* \w lived|strong="H5315"\w* \w and|strong="H1121"\w* \w we|strong="H3068"\w* \w had|strong="H4428"\w* \w all|strong="H3605"\w* died \w today|strong="H3117"\w*, \w then|strong="H4428"\w* \w it|strong="H6440"\w* \w would|strong="H5315"\w* \w have|strong="H1121"\w* pleased \w you|strong="H6440"\w* well. +\v 7 \w Now|strong="H3117"\w* \w therefore|strong="H3588"\w* arise, go \w out|strong="H3045"\w* \w and|strong="H3117"\w* speak \w to|strong="H4191"\w* comfort \w your|strong="H3605"\w* \w servants|strong="H5650"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w swear|strong="H3588"\w* \w by|strong="H3117"\w* \w Yahweh|strong="H3068"\w*, \w if|strong="H3588"\w* \w you|strong="H3588"\w* don’t go \w out|strong="H3045"\w*, \w not|strong="H3045"\w* \w a|strong="H3068"\w* \w man|strong="H4191"\w* \w will|strong="H5650"\w* stay \w with|strong="H3045"\w* \w you|strong="H3588"\w* \w this|strong="H3588"\w* night. \w That|strong="H3588"\w* \w would|strong="H3863"\w* \w be|strong="H4191"\w* worse \w to|strong="H4191"\w* \w you|strong="H3588"\w* \w than|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* evil \w that|strong="H3588"\w* \w has|strong="H5650"\w* happened \w to|strong="H4191"\w* \w you|strong="H3588"\w* \w from|strong="H3117"\w* \w your|strong="H3605"\w* youth \w until|strong="H3588"\w* \w now|strong="H3117"\w*.” +\p +\v 8 \w Then|strong="H6965"\w* \w the|strong="H3605"\w* \w king|strong="H5921"\w* \w arose|strong="H6965"\w* \w and|strong="H6965"\w* sat \w in|strong="H5921"\w* \w the|strong="H3605"\w* gate. \w The|strong="H3605"\w* \w people|strong="H1696"\w* \w were|strong="H5650"\w* \w all|strong="H3605"\w* \w told|strong="H1696"\w*, “Behold, \w the|strong="H3605"\w* \w king|strong="H5921"\w* \w is|strong="H3068"\w* sitting \w in|strong="H5921"\w* \w the|strong="H3605"\w* gate.” \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H1696"\w* \w came|strong="H3318"\w* \w before|strong="H5921"\w* \w the|strong="H3605"\w* \w king|strong="H5921"\w*. \w Now|strong="H6258"\w* Israel \w had|strong="H3068"\w* fled \w every|strong="H3605"\w* \w man|strong="H7451"\w* \w to|strong="H1696"\w* \w his|strong="H3605"\w* tent. +\v 9 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w were|strong="H3478"\w* \w at|strong="H3427"\w* strife \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* tribes \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, saying, “\w The|strong="H3605"\w* \w king|strong="H4428"\w* delivered \w us|strong="H5046"\w* \w out|strong="H6440"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* hand \w of|strong="H4428"\w* \w our|strong="H3605"\w* \w enemies|strong="H6965"\w*, \w and|strong="H6965"\w* \w he|strong="H3605"\w* saved \w us|strong="H5046"\w* \w out|strong="H6440"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* hand \w of|strong="H4428"\w* \w the|strong="H3605"\w* Philistines; \w and|strong="H6965"\w* \w now|strong="H2009"\w* \w he|strong="H3605"\w* \w has|strong="H3478"\w* \w fled|strong="H5127"\w* \w out|strong="H6440"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w from|strong="H6440"\w* Absalom. +\v 10 Absalom, \w whom|strong="H5971"\w* \w we|strong="H3068"\w* anointed \w over|strong="H5921"\w* \w us|strong="H5921"\w*, \w is|strong="H1931"\w* dead \w in|strong="H5921"\w* battle. \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* \w why|strong="H5921"\w* don’t \w you|strong="H3605"\w* speak \w a|strong="H3068"\w* word \w of|strong="H4428"\w* bringing \w the|strong="H3605"\w* \w king|strong="H4428"\w* back?” +\p +\v 11 \w King|strong="H4428"\w* David \w sent|strong="H7725"\w* \w to|strong="H7725"\w* Zadok \w and|strong="H7725"\w* \w to|strong="H7725"\w* Abiathar \w the|strong="H5921"\w* priests, saying, “\w Speak|strong="H2790"\w* \w to|strong="H7725"\w* \w the|strong="H5921"\w* elders \w of|strong="H4428"\w* Judah, saying, ‘\w Why|strong="H4100"\w* \w are|strong="H4100"\w* \w you|strong="H5921"\w* \w the|strong="H5921"\w* last \w to|strong="H7725"\w* \w bring|strong="H7725"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w back|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* house, \w since|strong="H6258"\w* \w the|strong="H5921"\w* speech \w of|strong="H4428"\w* \w all|strong="H5921"\w* \w Israel|strong="H4421"\w* \w has|strong="H4428"\w* \w come|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*, \w to|strong="H7725"\w* \w return|strong="H7725"\w* \w him|strong="H5921"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* house? +\v 12 \w You|strong="H3605"\w* \w are|strong="H3478"\w* \w my|strong="H3605"\w* brothers. \w You|strong="H3605"\w* \w are|strong="H3478"\w* \w my|strong="H3605"\w* bone \w and|strong="H3063"\w* \w my|strong="H3605"\w* flesh. \w Why|strong="H4100"\w* \w then|strong="H1961"\w* \w are|strong="H3478"\w* \w you|strong="H3605"\w* \w the|strong="H3605"\w* last \w to|strong="H1696"\w* \w bring|strong="H7725"\w* \w back|strong="H7725"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*?’ +\v 13 \w Say|strong="H7725"\w* \w to|strong="H7725"\w* Amasa, ‘Aren’t \w you|strong="H7725"\w* \w my|strong="H7725"\w* \w bone|strong="H6106"\w* \w and|strong="H7725"\w* \w my|strong="H7725"\w* \w flesh|strong="H1320"\w*? God \w do|strong="H4100"\w* \w so|strong="H1961"\w* \w to|strong="H7725"\w* \w me|strong="H7725"\w*, \w and|strong="H7725"\w* \w more|strong="H7725"\w* \w also|strong="H4428"\w*, \w if|strong="H1961"\w* \w you|strong="H7725"\w* aren’t captain \w of|strong="H4428"\w* \w the|strong="H7725"\w* army \w before|strong="H1961"\w* \w me|strong="H7725"\w* continually instead \w of|strong="H4428"\w* Joab.’” +\v 14 \w He|strong="H3117"\w* bowed \w the|strong="H3605"\w* heart \w of|strong="H3117"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H6213"\w* \w of|strong="H3117"\w* Judah, \w even|strong="H3808"\w* \w as|strong="H3117"\w* \w one|strong="H3605"\w* \w man|strong="H3605"\w*, \w so|strong="H6213"\w* \w that|strong="H3605"\w* \w they|strong="H3117"\w* sent \w to|strong="H1961"\w* \w the|strong="H3605"\w* \w king|strong="H6440"\w*, saying, “\w Return|strong="H8478"\w*, \w you|strong="H6440"\w* \w and|strong="H3117"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w servants|strong="H6440"\w*.” +\p +\v 15 \w So|strong="H7971"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w returned|strong="H7725"\w*, \w and|strong="H3063"\w* \w came|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* Jordan. \w Judah|strong="H3063"\w* \w came|strong="H7725"\w* \w to|strong="H7725"\w* Gilgal, \w to|strong="H7725"\w* \w go|strong="H7971"\w* \w to|strong="H7725"\w* meet \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w to|strong="H7725"\w* \w bring|strong="H7725"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w over|strong="H4428"\w* \w the|strong="H3605"\w* Jordan. +\v 16 Shimei \w the|strong="H7725"\w* son \w of|strong="H4428"\w* Gera, \w the|strong="H7725"\w* Benjamite, \w who|strong="H3063"\w* \w was|strong="H4428"\w* \w of|strong="H4428"\w* Bahurim, hurried \w and|strong="H3063"\w* \w came|strong="H3212"\w* \w down|strong="H3212"\w* \w with|strong="H3212"\w* \w the|strong="H7725"\w* men \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w to|strong="H5704"\w* \w meet|strong="H7125"\w* \w King|strong="H4428"\w* David. +\v 17 There \w were|strong="H1121"\w* \w a|strong="H3068"\w* thousand \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1145"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*, \w and|strong="H1121"\w* Ziba \w the|strong="H5973"\w* servant \w of|strong="H1121"\w* Saul’s house, \w and|strong="H1121"\w* \w his|strong="H1732"\w* fifteen \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H1732"\w* twenty servants \w with|strong="H5973"\w* \w him|strong="H5973"\w*; \w and|strong="H1121"\w* \w they|strong="H3063"\w* \w went|strong="H3381"\w* through \w the|strong="H5973"\w* Jordan \w in|strong="H4428"\w* \w the|strong="H5973"\w* \w presence|strong="H5973"\w* \w of|strong="H1121"\w* \w the|strong="H5973"\w* \w king|strong="H4428"\w*. +\v 18 \w A|strong="H3068"\w* ferry boat \w went|strong="H4428"\w* \w to|strong="H6440"\w* bring \w over|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w household|strong="H1004"\w*, \w and|strong="H1121"\w* \w to|strong="H6440"\w* do what \w he|strong="H2568"\w* thought \w good|strong="H6743"\w*. +\p Shimei \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Gera fell \w down|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w when|strong="H1121"\w* \w he|strong="H2568"\w* \w had|strong="H4428"\w* \w come|strong="H5288"\w* \w over|strong="H4428"\w* \w the|strong="H6440"\w* \w Jordan|strong="H3383"\w*. +\v 19 \w He|strong="H6213"\w* said \w to|strong="H6213"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*, “Don’t let \w my|strong="H6213"\w* lord impute iniquity \w to|strong="H6213"\w* \w me|strong="H6440"\w*, \w or|strong="H1121"\w* remember \w that|strong="H4428"\w* \w which|strong="H1004"\w* \w your|strong="H6440"\w* servant \w did|strong="H6213"\w* perversely \w the|strong="H6440"\w* day \w that|strong="H4428"\w* \w my|strong="H6213"\w* lord \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w went|strong="H5674"\w* \w out|strong="H6213"\w* \w of|strong="H1121"\w* Jerusalem, \w that|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w should|strong="H6213"\w* \w take|strong="H5674"\w* \w it|strong="H6213"\w* \w to|strong="H6213"\w* \w his|strong="H6440"\w* heart. +\v 20 \w For|strong="H3117"\w* \w your|strong="H7760"\w* \w servant|strong="H5650"\w* knows \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w have|strong="H5650"\w* sinned. \w Therefore|strong="H5650"\w* behold, \w I|strong="H3117"\w* \w have|strong="H5650"\w* \w come|strong="H3318"\w* \w today|strong="H3117"\w* \w as|strong="H3117"\w* \w the|strong="H3117"\w* \w first|strong="H3117"\w* \w of|strong="H4428"\w* \w all|strong="H3117"\w* \w the|strong="H3117"\w* house \w of|strong="H4428"\w* Joseph \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w down|strong="H7760"\w* \w to|strong="H3318"\w* \w meet|strong="H3318"\w* \w my|strong="H7760"\w* lord \w the|strong="H3117"\w* \w king|strong="H4428"\w*.” +\p +\v 21 \w But|strong="H3588"\w* Abishai \w the|strong="H3605"\w* son \w of|strong="H4428"\w* Zeruiah answered, “Shouldn’t Shimei \w be|strong="H3117"\w* \w put|strong="H3381"\w* \w to|strong="H3381"\w* death \w for|strong="H3588"\w* \w this|strong="H3588"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* cursed \w Yahweh|strong="H3068"\w*’s anointed?” +\p +\v 22 David \w said|strong="H6030"\w*, “\w What|strong="H2063"\w* \w have|strong="H3068"\w* \w I|strong="H3588"\w* \w to|strong="H4191"\w* \w do|strong="H3068"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w*, \w you|strong="H3588"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w should|strong="H3068"\w* \w be|strong="H4191"\w* adversaries \w to|strong="H4191"\w* \w me|strong="H6030"\w* today? \w Shall|strong="H3068"\w* \w any|strong="H3588"\w* \w man|strong="H1121"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w* today \w in|strong="H3068"\w* Israel? \w For|strong="H3588"\w* don’t \w I|strong="H3588"\w* know \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* king \w over|strong="H3068"\w* Israel today?” +\v 23 \w The|strong="H5921"\w* \w king|strong="H4428"\w* said \w to|strong="H3478"\w* Shimei, “\w You|strong="H3588"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*.” \w The|strong="H5921"\w* \w king|strong="H4428"\w* swore \w to|strong="H3478"\w* \w him|strong="H5921"\w*. +\p +\v 24 \w Mephibosheth|strong="H3808"\w* \w the|strong="H4191"\w* son \w of|strong="H4428"\w* Saul \w came|strong="H4428"\w* down \w to|strong="H4191"\w* meet \w the|strong="H4191"\w* \w king|strong="H4428"\w*; \w and|strong="H4428"\w* \w he|strong="H3808"\w* \w had|strong="H4428"\w* \w neither|strong="H3808"\w* groomed \w his|strong="H8096"\w* feet, \w nor|strong="H3808"\w* trimmed \w his|strong="H8096"\w* beard, \w nor|strong="H3808"\w* washed \w his|strong="H8096"\w* clothes, \w from|strong="H4191"\w* \w the|strong="H4191"\w* day \w the|strong="H4191"\w* \w king|strong="H4428"\w* departed until \w the|strong="H4191"\w* day \w he|strong="H3808"\w* \w came|strong="H4428"\w* home \w in|strong="H4428"\w* peace. +\v 25 \w When|strong="H3117"\w* \w he|strong="H3117"\w* \w had|strong="H4428"\w* \w come|strong="H3212"\w* \w to|strong="H5704"\w* Jerusalem \w to|strong="H5704"\w* \w meet|strong="H7125"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w*, \w the|strong="H6213"\w* \w king|strong="H4428"\w* said \w to|strong="H5704"\w* \w him|strong="H6213"\w*, “\w Why|strong="H3808"\w* didn’t \w you|strong="H3117"\w* \w go|strong="H3212"\w* \w with|strong="H6213"\w* \w me|strong="H4480"\w*, \w Mephibosheth|strong="H4648"\w*?” +\p +\v 26 \w He|strong="H3588"\w* answered, “\w My|strong="H1961"\w* lord, \w O|strong="H3068"\w* \w king|strong="H4428"\w*, \w my|strong="H1961"\w* servant deceived \w me|strong="H5973"\w*. \w For|strong="H3588"\w* \w your|strong="H3588"\w* servant said, ‘\w I|strong="H3588"\w* \w will|strong="H1961"\w* saddle \w a|strong="H3068"\w* donkey \w for|strong="H3588"\w* \w myself|strong="H1980"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H1961"\w* ride \w on|strong="H1980"\w* \w it|strong="H3588"\w* \w and|strong="H1980"\w* \w go|strong="H1980"\w* \w with|strong="H5973"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w*,’ \w because|strong="H3588"\w* \w your|strong="H3588"\w* servant \w is|strong="H4100"\w* lame. +\v 27 \w He|strong="H3588"\w* \w has|strong="H4428"\w* slandered \w your|strong="H5921"\w* \w servant|strong="H5650"\w* \w to|strong="H3212"\w* \w my|strong="H5921"\w* lord \w the|strong="H5921"\w* \w king|strong="H4428"\w*, \w but|strong="H3588"\w* \w my|strong="H5921"\w* lord \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w is|strong="H4428"\w* \w as|strong="H3588"\w* \w an|strong="H3588"\w* angel \w of|strong="H4428"\w* God. \w Therefore|strong="H5921"\w* do \w what|strong="H3588"\w* \w is|strong="H4428"\w* good \w in|strong="H5921"\w* \w your|strong="H5921"\w* eyes. +\v 28 \w For|strong="H6213"\w* \w all|strong="H6213"\w* \w my|strong="H6213"\w* father’s house \w were|strong="H5869"\w* \w but|strong="H4428"\w* dead \w men|strong="H5650"\w* \w before|strong="H5869"\w* \w my|strong="H6213"\w* lord \w the|strong="H6213"\w* \w king|strong="H4428"\w*; yet \w you|strong="H6213"\w* \w set|strong="H6213"\w* \w your|strong="H6213"\w* \w servant|strong="H5650"\w* among \w those|strong="H6213"\w* \w who|strong="H5650"\w* ate \w at|strong="H4428"\w* \w your|strong="H6213"\w* \w own|strong="H5869"\w* table. \w What|strong="H2896"\w* \w right|strong="H5869"\w* \w therefore|strong="H5650"\w* \w have|strong="H5869"\w* \w I|strong="H5650"\w* yet \w that|strong="H4397"\w* \w I|strong="H5650"\w* \w should|strong="H6213"\w* appeal \w any|strong="H6213"\w* \w more|strong="H6213"\w* \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w*?” +\p +\v 29 \w The|strong="H3605"\w* \w king|strong="H4428"\w* said \w to|strong="H1961"\w* \w him|strong="H3605"\w*, “\w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H3588"\w* speak \w any|strong="H3605"\w* \w more|strong="H5750"\w* \w of|strong="H4428"\w* \w your|strong="H3605"\w* matters? \w I|strong="H3588"\w* say, \w you|strong="H3588"\w* \w and|strong="H4428"\w* Ziba divide \w the|strong="H3605"\w* land.” +\p +\v 30 Mephibosheth \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H1697"\w* \w king|strong="H4428"\w*, “Yes, let \w him|strong="H4428"\w* \w take|strong="H2505"\w* \w all|strong="H1697"\w*, \w because|strong="H1697"\w* \w my|strong="H1696"\w* lord \w the|strong="H1697"\w* \w king|strong="H4428"\w* \w has|strong="H4428"\w* \w come|strong="H5750"\w* \w in|strong="H4428"\w* peace \w to|strong="H1696"\w* \w his|strong="H4428"\w* own house.” +\p +\v 31 Barzillai \w the|strong="H3605"\w* Gileadite \w came|strong="H4428"\w* down \w from|strong="H3947"\w* Rogelim; \w and|strong="H4428"\w* \w he|strong="H3605"\w* \w went|strong="H4428"\w* \w over|strong="H4428"\w* \w the|strong="H3605"\w* Jordan \w with|strong="H1004"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w to|strong="H4428"\w* conduct \w him|strong="H3947"\w* \w over|strong="H4428"\w* \w the|strong="H3605"\w* Jordan. +\v 32 \w Now|strong="H4428"\w* \w Barzillai|strong="H1271"\w* \w was|strong="H4428"\w* \w a|strong="H3068"\w* very aged \w man|strong="H5674"\w*, even eighty years old. \w He|strong="H7971"\w* \w had|strong="H4428"\w* provided \w the|strong="H5674"\w* \w king|strong="H4428"\w* \w with|strong="H3381"\w* sustenance \w while|strong="H3383"\w* \w he|strong="H7971"\w* stayed \w at|strong="H4428"\w* Mahanaim, \w for|strong="H7971"\w* \w he|strong="H7971"\w* \w was|strong="H4428"\w* \w a|strong="H3068"\w* very great \w man|strong="H5674"\w*. +\v 33 \w The|strong="H3588"\w* \w king|strong="H4428"\w* said \w to|strong="H1121"\w* \w Barzillai|strong="H1271"\w*, “Come \w over|strong="H4428"\w* \w with|strong="H4428"\w* \w me|strong="H3588"\w*, \w and|strong="H1121"\w* \w I|strong="H3588"\w* \w will|strong="H4428"\w* \w sustain|strong="H3557"\w* \w you|strong="H3588"\w* \w with|strong="H4428"\w* \w me|strong="H3588"\w* \w in|strong="H8141"\w* Jerusalem.” +\p +\v 34 \w Barzillai|strong="H1271"\w* said \w to|strong="H3389"\w* \w the|strong="H5674"\w* \w king|strong="H4428"\w*, “How many \w are|strong="H4428"\w* \w the|strong="H5674"\w* days \w of|strong="H4428"\w* \w the|strong="H5674"\w* years \w of|strong="H4428"\w* \w my|strong="H5674"\w* life, \w that|strong="H4428"\w* I \w should|strong="H4428"\w* \w go|strong="H5674"\w* \w up|strong="H4428"\w* \w with|strong="H3389"\w* \w the|strong="H5674"\w* \w king|strong="H4428"\w* \w to|strong="H3389"\w* \w Jerusalem|strong="H3389"\w*? +\v 35 \w I|strong="H3588"\w* am eighty \w years|strong="H3117"\w* \w old|strong="H2416"\w*, \w today|strong="H3117"\w*. \w Can|strong="H4100"\w* \w I|strong="H3588"\w* discern between \w good|strong="H4100"\w* \w and|strong="H4428"\w* bad? \w Can|strong="H4100"\w* \w your|strong="H3588"\w* servant taste \w what|strong="H4100"\w* \w I|strong="H3588"\w* eat \w or|strong="H3117"\w* \w what|strong="H4100"\w* \w I|strong="H3588"\w* drink? \w Can|strong="H4100"\w* \w I|strong="H3588"\w* hear \w the|strong="H3588"\w* voice \w of|strong="H4428"\w* singing \w men|strong="H8147"\w* \w and|strong="H4428"\w* singing women \w any|strong="H3588"\w* \w more|strong="H3588"\w*? \w Why|strong="H4100"\w* \w then|strong="H4428"\w* \w should|strong="H4100"\w* \w your|strong="H3588"\w* servant \w be|strong="H3117"\w* \w a|strong="H3068"\w* burden \w to|strong="H5927"\w* \w my|strong="H5927"\w* lord \w the|strong="H3588"\w* \w king|strong="H4428"\w*? +\v 36 \w Your|strong="H8085"\w* \w servant|strong="H5650"\w* \w will|strong="H1961"\w* just \w go|strong="H1961"\w* \w over|strong="H4428"\w* \w the|strong="H8085"\w* Jordan \w with|strong="H3045"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w*. \w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* repay \w me|strong="H6963"\w* \w with|strong="H3045"\w* \w such|strong="H1961"\w* \w a|strong="H3068"\w* reward? +\v 37 Please let \w your|strong="H5674"\w* \w servant|strong="H5650"\w* \w turn|strong="H5674"\w* back \w again|strong="H5674"\w*, \w that|strong="H4428"\w* \w I|strong="H5650"\w* \w may|strong="H4428"\w* die \w in|strong="H4428"\w* \w my|strong="H5674"\w* own city, \w by|strong="H5674"\w* \w the|strong="H5674"\w* grave \w of|strong="H4428"\w* \w my|strong="H5674"\w* father \w and|strong="H4428"\w* \w my|strong="H5674"\w* mother. \w But|strong="H4428"\w* behold, \w your|strong="H5674"\w* \w servant|strong="H5650"\w* Chimham; let \w him|strong="H1580"\w* \w go|strong="H5674"\w* \w over|strong="H5674"\w* \w with|strong="H4428"\w* \w my|strong="H5674"\w* lord \w the|strong="H5674"\w* \w king|strong="H4428"\w*; \w and|strong="H4428"\w* \w do|strong="H4100"\w* \w to|strong="H4428"\w* \w him|strong="H1580"\w* \w what|strong="H4100"\w* \w shall|strong="H4428"\w* seem \w good|strong="H1580"\w* \w to|strong="H4428"\w* \w you|strong="H4100"\w*.” +\p +\v 38 \w The|strong="H6213"\w* \w king|strong="H4428"\w* \w answered|strong="H7725"\w*, “\w Chimham|strong="H3643"\w* \w shall|strong="H4428"\w* \w go|strong="H5674"\w* \w over|strong="H5674"\w* \w with|strong="H5973"\w* \w me|strong="H4994"\w*, \w and|strong="H7725"\w* \w I|strong="H2009"\w* \w will|strong="H4428"\w* \w do|strong="H6213"\w* \w to|strong="H7725"\w* \w him|strong="H6213"\w* \w that|strong="H4428"\w* \w which|strong="H5869"\w* \w shall|strong="H4428"\w* \w seem|strong="H5869"\w* \w good|strong="H2896"\w* \w to|strong="H7725"\w* \w you|strong="H7725"\w*. \w Whatever|strong="H2896"\w* \w you|strong="H7725"\w* request \w of|strong="H4428"\w* \w me|strong="H4994"\w*, \w that|strong="H4428"\w* \w I|strong="H2009"\w* \w will|strong="H4428"\w* \w do|strong="H6213"\w* \w for|strong="H6213"\w* \w you|strong="H7725"\w*.” +\p +\v 39 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5869"\w* \w went|strong="H5674"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* Jordan, \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w went|strong="H5674"\w* \w over|strong="H5921"\w*. \w Then|strong="H6213"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* kissed Barzillai \w and|strong="H4428"\w* blessed \w him|strong="H5921"\w*; \w and|strong="H4428"\w* \w he|strong="H6213"\w* returned \w to|strong="H6213"\w* \w his|strong="H3605"\w* \w own|strong="H5869"\w* \w place|strong="H3605"\w*. +\v 40 \w So|strong="H7725"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w went|strong="H5674"\w* \w over|strong="H5674"\w* \w to|strong="H7725"\w* Gilgal, \w and|strong="H7725"\w* Chimham \w went|strong="H5674"\w* \w over|strong="H5674"\w* \w with|strong="H5971"\w* \w him|strong="H7725"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* Judah \w brought|strong="H7725"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w over|strong="H5674"\w*, \w and|strong="H7725"\w* \w also|strong="H4428"\w* half \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* \w Israel|strong="H5971"\w*. +\v 41 Behold, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H5971"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w and|strong="H3063"\w* said \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, “Why \w have|strong="H5971"\w* \w our|strong="H3605"\w* brothers \w the|strong="H3605"\w* \w men|strong="H5971"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* stolen \w you|strong="H3605"\w* \w away|strong="H5674"\w*, \w and|strong="H3063"\w* \w brought|strong="H3478"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w and|strong="H3063"\w* \w his|strong="H3605"\w* household, \w over|strong="H5674"\w* \w the|strong="H3605"\w* Jordan, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w David|strong="H5973"\w*’s \w men|strong="H5971"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*?” +\p +\v 42 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* answered \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, “\w Because|strong="H3605"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w is|strong="H2009"\w* \w a|strong="H3068"\w* \w close|strong="H5973"\w* relative \w to|strong="H3478"\w* \w us|strong="H3478"\w*. \w Why|strong="H4069"\w* \w then|strong="H2009"\w* \w are|strong="H3478"\w* \w you|strong="H3605"\w* \w angry|strong="H5674"\w* \w about|strong="H4428"\w* \w this|strong="H5674"\w* matter? \w Have|strong="H3478"\w* \w we|strong="H3068"\w* eaten \w at|strong="H3478"\w* \w all|strong="H3605"\w* \w at|strong="H3478"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s cost? \w Or|strong="H1004"\w* \w has|strong="H3478"\w* \w he|strong="H3605"\w* given \w us|strong="H3478"\w* \w any|strong="H3605"\w* gift?” +\p +\v 43 \w The|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w answered|strong="H6030"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w said|strong="H1697"\w*, “\w We|strong="H3588"\w* \w have|strong="H3478"\w* ten \w parts|strong="H1697"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w and|strong="H3063"\w* \w we|strong="H3068"\w* \w have|strong="H3478"\w* \w also|strong="H3478"\w* \w more|strong="H4480"\w* claim \w to|strong="H3478"\w* David \w than|strong="H4480"\w* \w you|strong="H3588"\w*. \w Why|strong="H4100"\w* \w then|strong="H6030"\w* \w did|strong="H4100"\w* \w you|strong="H3588"\w* despise \w us|strong="H5921"\w*, \w that|strong="H3588"\w* \w our|strong="H3605"\w* \w advice|strong="H1697"\w* \w should|strong="H4100"\w* \w not|strong="H2088"\w* \w be|strong="H1697"\w* \w first|strong="H2088"\w* \w had|strong="H3478"\w* \w in|strong="H5921"\w* \w bringing|strong="H5375"\w* back \w our|strong="H3605"\w* \w king|strong="H4428"\w*?” \w The|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w were|strong="H3478"\w* fiercer \w than|strong="H4480"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. +\c 20 +\p +\v 1 \w There|strong="H8033"\w* \w happened|strong="H7122"\w* \w to|strong="H3478"\w* \w be|strong="H3808"\w* \w there|strong="H8033"\w* \w a|strong="H3068"\w* \w wicked|strong="H1100"\w* \w fellow|strong="H1121"\w*, \w whose|strong="H1121"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Sheba|strong="H7652"\w* \w the|strong="H8628"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Bichri|strong="H1075"\w*, \w a|strong="H3068"\w* \w Benjamite|strong="H1121"\w*; \w and|strong="H1121"\w* \w he|strong="H8033"\w* \w blew|strong="H8628"\w* \w the|strong="H8628"\w* \w trumpet|strong="H7782"\w*, \w and|strong="H1121"\w* said, “\w We|strong="H8033"\w* \w have|strong="H1121"\w* \w no|strong="H3808"\w* \w portion|strong="H2506"\w* \w in|strong="H3478"\w* \w David|strong="H1732"\w*, \w neither|strong="H3808"\w* \w have|strong="H1121"\w* \w we|strong="H3068"\w* \w inheritance|strong="H5159"\w* \w in|strong="H3478"\w* \w the|strong="H8628"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jesse|strong="H3448"\w*. \w Every|strong="H3478"\w* \w man|strong="H1121"\w* \w to|strong="H3478"\w* \w his|strong="H1732"\w* tents, \w Israel|strong="H3478"\w*!” +\p +\v 2 \w So|strong="H4480"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H4480"\w* following \w David|strong="H1732"\w*, \w and|strong="H1121"\w* \w followed|strong="H5927"\w* \w Sheba|strong="H7652"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Bichri|strong="H1075"\w*; \w but|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w joined|strong="H1692"\w* \w with|strong="H3389"\w* \w their|strong="H3605"\w* \w king|strong="H4428"\w*, \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Jerusalem|strong="H3389"\w*. +\p +\v 3 \w David|strong="H1732"\w* \w came|strong="H1961"\w* \w to|strong="H5704"\w* \w his|strong="H5414"\w* \w house|strong="H1004"\w* \w at|strong="H1004"\w* \w Jerusalem|strong="H3389"\w*; \w and|strong="H4428"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w took|strong="H3947"\w* \w the|strong="H5414"\w* \w ten|strong="H6235"\w* women \w his|strong="H5414"\w* \w concubines|strong="H6370"\w*, whom \w he|strong="H3117"\w* \w had|strong="H1961"\w* \w left|strong="H3240"\w* \w to|strong="H5704"\w* \w keep|strong="H8104"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w*, \w and|strong="H4428"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w in|strong="H1004"\w* custody \w and|strong="H4428"\w* \w provided|strong="H3557"\w* \w them|strong="H5414"\w* \w with|strong="H1004"\w* \w sustenance|strong="H3557"\w*, \w but|strong="H3808"\w* didn’t \w go|strong="H1961"\w* \w in|strong="H1004"\w* \w to|strong="H5704"\w* \w them|strong="H5414"\w*. \w So|strong="H3947"\w* \w they|strong="H3117"\w* \w were|strong="H1961"\w* \w shut|strong="H6887"\w* \w up|strong="H5414"\w* \w to|strong="H5704"\w* \w the|strong="H5414"\w* \w day|strong="H3117"\w* \w of|strong="H4428"\w* \w their|strong="H5414"\w* \w death|strong="H4194"\w*, \w living|strong="H2424"\w* \w in|strong="H1004"\w* widowhood. +\p +\v 4 \w Then|strong="H5975"\w* \w the|strong="H3117"\w* \w king|strong="H4428"\w* said \w to|strong="H3117"\w* \w Amasa|strong="H6021"\w*, “\w Call|strong="H2199"\w* \w me|strong="H5975"\w* \w the|strong="H3117"\w* men \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w together|strong="H2199"\w* \w within|strong="H3063"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*, \w and|strong="H3063"\w* \w be|strong="H3117"\w* \w here|strong="H6311"\w* \w present|strong="H5975"\w*.” +\p +\v 5 \w So|strong="H4480"\w* \w Amasa|strong="H6021"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w call|strong="H2199"\w* \w the|strong="H4480"\w* men \w of|strong="H4480"\w* \w Judah|strong="H3063"\w* \w together|strong="H2199"\w*, but \w he|strong="H4480"\w* stayed longer \w than|strong="H4480"\w* \w the|strong="H4480"\w* \w set|strong="H3259"\w* \w time|strong="H4150"\w* \w which|strong="H3063"\w* \w had|strong="H3063"\w* been \w appointed|strong="H4150"\w* \w to|strong="H3212"\w* \w him|strong="H4480"\w*. +\v 6 \w David|strong="H1732"\w* said \w to|strong="H1121"\w* Abishai, “\w Now|strong="H6258"\w* \w Sheba|strong="H7652"\w* \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Bichri|strong="H1075"\w* \w will|strong="H5650"\w* \w do|strong="H5869"\w* \w us|strong="H6435"\w* \w more|strong="H4480"\w* \w harm|strong="H3415"\w* \w than|strong="H4480"\w* Absalom \w did|strong="H5650"\w*. \w Take|strong="H3947"\w* \w your|strong="H3947"\w* lord’s \w servants|strong="H5650"\w* \w and|strong="H1121"\w* \w pursue|strong="H7291"\w* \w after|strong="H4480"\w* \w him|strong="H4672"\w*, \w lest|strong="H6435"\w* \w he|strong="H1732"\w* \w get|strong="H3947"\w* himself \w fortified|strong="H1219"\w* \w cities|strong="H5892"\w*, \w and|strong="H1121"\w* \w escape|strong="H5337"\w* \w out|strong="H4672"\w* \w of|strong="H1121"\w* \w our|strong="H3947"\w* \w sight|strong="H5869"\w*.” +\p +\v 7 \w Joab|strong="H3097"\w*’s \w men|strong="H1368"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w after|strong="H7291"\w* \w him|strong="H3318"\w* \w with|strong="H3389"\w* \w the|strong="H3605"\w* \w Cherethites|strong="H3774"\w*, \w the|strong="H3605"\w* \w Pelethites|strong="H6432"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w*; \w and|strong="H1121"\w* \w they|strong="H3605"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H3318"\w* \w pursue|strong="H7291"\w* \w Sheba|strong="H7652"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Bichri|strong="H1075"\w*. +\v 8 \w When|strong="H3318"\w* \w they|strong="H1992"\w* \w were|strong="H1992"\w* \w at|strong="H5921"\w* \w the|strong="H6440"\w* \w great|strong="H1419"\w* stone \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w in|strong="H5921"\w* \w Gibeon|strong="H1391"\w*, \w Amasa|strong="H6021"\w* \w came|strong="H3318"\w* \w to|strong="H3318"\w* \w meet|strong="H6440"\w* \w them|strong="H1992"\w*. \w Joab|strong="H3097"\w* \w was|strong="H1931"\w* \w clothed|strong="H3830"\w* \w in|strong="H5921"\w* \w his|strong="H6440"\w* \w apparel|strong="H3830"\w* \w of|strong="H6440"\w* \w war|strong="H2719"\w* \w that|strong="H1931"\w* \w he|strong="H1931"\w* \w had|strong="H3097"\w* \w put|strong="H2296"\w* \w on|strong="H5921"\w*, \w and|strong="H1419"\w* \w on|strong="H5921"\w* \w it|strong="H1931"\w* \w was|strong="H1931"\w* \w a|strong="H3068"\w* sash \w with|strong="H5973"\w* \w a|strong="H3068"\w* \w sword|strong="H2719"\w* \w fastened|strong="H6775"\w* \w on|strong="H5921"\w* \w his|strong="H6440"\w* \w waist|strong="H4975"\w* \w in|strong="H5921"\w* \w its|strong="H5921"\w* \w sheath|strong="H8593"\w*; \w and|strong="H1419"\w* \w as|strong="H3318"\w* \w he|strong="H1931"\w* \w went|strong="H3318"\w* \w along|strong="H5921"\w* \w it|strong="H1931"\w* \w fell|strong="H5307"\w* \w out|strong="H3318"\w*. +\v 9 \w Joab|strong="H3097"\w* said \w to|strong="H3027"\w* \w Amasa|strong="H6021"\w*, “\w Is|strong="H3027"\w* \w it|strong="H7965"\w* \w well|strong="H7965"\w* \w with|strong="H3027"\w* \w you|strong="H3027"\w*, \w my|strong="H3027"\w* brother?” \w Joab|strong="H3097"\w* \w took|strong="H3027"\w* \w Amasa|strong="H6021"\w* \w by|strong="H3027"\w* \w the|strong="H3027"\w* \w beard|strong="H2206"\w* \w with|strong="H3027"\w* \w his|strong="H3027"\w* \w right|strong="H3225"\w* \w hand|strong="H3027"\w* \w to|strong="H3027"\w* \w kiss|strong="H5401"\w* \w him|strong="H3027"\w*. +\v 10 \w But|strong="H3808"\w* \w Amasa|strong="H6021"\w* \w took|strong="H4191"\w* \w no|strong="H3808"\w* \w heed|strong="H8104"\w* \w to|strong="H4191"\w* \w the|strong="H5221"\w* \w sword|strong="H2719"\w* \w that|strong="H1121"\w* \w was|strong="H1121"\w* \w in|strong="H4191"\w* \w Joab|strong="H3097"\w*’s \w hand|strong="H3027"\w*. \w So|strong="H3808"\w* \w he|strong="H3027"\w* \w struck|strong="H5221"\w* \w him|strong="H5221"\w* \w with|strong="H3027"\w* \w it|strong="H5221"\w* \w in|strong="H4191"\w* \w the|strong="H5221"\w* \w body|strong="H4578"\w* \w and|strong="H1121"\w* \w shed|strong="H8210"\w* \w out|strong="H8210"\w* \w his|strong="H8104"\w* \w bowels|strong="H4578"\w* \w to|strong="H4191"\w* \w the|strong="H5221"\w* ground, \w and|strong="H1121"\w* didn’t \w strike|strong="H5221"\w* \w him|strong="H5221"\w* \w again|strong="H8138"\w*; \w and|strong="H1121"\w* \w he|strong="H3027"\w* \w died|strong="H4191"\w*. \w Joab|strong="H3097"\w* \w and|strong="H1121"\w* Abishai \w his|strong="H8104"\w* brother \w pursued|strong="H7291"\w* \w Sheba|strong="H7652"\w* \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Bichri|strong="H1075"\w*. +\v 11 \w One|strong="H4310"\w* \w of|strong="H5921"\w* \w Joab|strong="H3097"\w*’s \w young|strong="H5288"\w* \w men|strong="H5288"\w* stood \w by|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H1732"\w* said, “\w He|strong="H1732"\w* \w who|strong="H4310"\w* \w favors|strong="H2654"\w* \w Joab|strong="H3097"\w*, \w and|strong="H1732"\w* \w he|strong="H1732"\w* \w who|strong="H4310"\w* \w is|strong="H4310"\w* \w for|strong="H5921"\w* \w David|strong="H1732"\w*, let \w him|strong="H5921"\w* follow \w Joab|strong="H3097"\w*!” +\p +\v 12 \w Amasa|strong="H6021"\w* \w lay|strong="H1556"\w* \w wallowing|strong="H1556"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w blood|strong="H1818"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H7704"\w* \w the|strong="H3605"\w* \w highway|strong="H4546"\w*. \w When|strong="H3588"\w* \w the|strong="H3605"\w* \w man|strong="H3605"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w stood|strong="H5975"\w* \w still|strong="H5975"\w*, \w he|strong="H3588"\w* \w carried|strong="H5437"\w* \w Amasa|strong="H6021"\w* \w out|strong="H7993"\w* \w of|strong="H7704"\w* \w the|strong="H3605"\w* \w highway|strong="H4546"\w* \w into|strong="H8432"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*, \w and|strong="H5971"\w* \w cast|strong="H7993"\w* \w a|strong="H3068"\w* garment \w over|strong="H5921"\w* \w him|strong="H5921"\w* \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w came|strong="H5971"\w* \w by|strong="H5921"\w* \w him|strong="H5921"\w* \w stood|strong="H5975"\w* \w still|strong="H5975"\w*. +\v 13 \w When|strong="H1121"\w* \w he|strong="H3605"\w* \w was|strong="H1121"\w* \w removed|strong="H5674"\w* \w out|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w highway|strong="H4546"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H1121"\w* \w went|strong="H5674"\w* \w on|strong="H5674"\w* \w after|strong="H4480"\w* \w Joab|strong="H3097"\w* \w to|strong="H1121"\w* \w pursue|strong="H7291"\w* \w Sheba|strong="H7652"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Bichri|strong="H1075"\w*. +\v 14 \w He|strong="H3605"\w* \w went|strong="H3478"\w* \w through|strong="H5674"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H7626"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* Abel, \w to|strong="H3478"\w* Beth Maacah, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Berites|strong="H1276"\w*. \w They|strong="H3478"\w* \w were|strong="H3478"\w* \w gathered|strong="H3478"\w* together, \w and|strong="H3478"\w* \w went|strong="H3478"\w* \w also|strong="H3478"\w* after \w him|strong="H3605"\w*. +\v 15 \w They|strong="H5921"\w* \w came|strong="H5971"\w* \w and|strong="H5971"\w* \w besieged|strong="H6696"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* Abel \w of|strong="H5892"\w* Beth Maacah, \w and|strong="H5971"\w* \w they|strong="H5921"\w* \w cast|strong="H5307"\w* \w up|strong="H5975"\w* \w a|strong="H3068"\w* mound \w against|strong="H5921"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w and|strong="H5971"\w* \w it|strong="H5921"\w* \w stood|strong="H5975"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* \w rampart|strong="H2426"\w*; \w and|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w with|strong="H5921"\w* \w Joab|strong="H3097"\w* \w battered|strong="H7843"\w* \w the|strong="H3605"\w* \w wall|strong="H2346"\w* \w to|strong="H5921"\w* \w throw|strong="H8210"\w* \w it|strong="H5921"\w* \w down|strong="H5307"\w*. +\p +\v 16 \w Then|strong="H1696"\w* \w a|strong="H3068"\w* \w wise|strong="H2450"\w* woman \w cried|strong="H7121"\w* \w out|strong="H4480"\w* \w of|strong="H5892"\w* \w the|strong="H8085"\w* \w city|strong="H5892"\w*, “\w Hear|strong="H8085"\w*, \w hear|strong="H8085"\w*! \w Please|strong="H4994"\w* \w say|strong="H1696"\w* \w to|strong="H1696"\w* \w Joab|strong="H3097"\w*, ‘\w Come|strong="H7126"\w* \w near|strong="H7126"\w* \w here|strong="H2008"\w*, \w that|strong="H8085"\w* \w I|strong="H5704"\w* \w may|strong="H4994"\w* \w speak|strong="H1696"\w* \w with|strong="H1696"\w* \w you|strong="H5704"\w*.’” +\v 17 \w He|strong="H7126"\w* \w came|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H8085"\w* \w her|strong="H8085"\w*; \w and|strong="H8085"\w* \w the|strong="H8085"\w* woman \w said|strong="H1697"\w*, “\w Are|strong="H1697"\w* \w you|strong="H7126"\w* \w Joab|strong="H3097"\w*?” +\p \w He|strong="H7126"\w* \w answered|strong="H1697"\w*, “\w I|strong="H1697"\w* am.” +\p \w Then|strong="H7126"\w* she \w said|strong="H1697"\w* \w to|strong="H8085"\w* \w him|strong="H8085"\w*, “\w Hear|strong="H8085"\w* \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w your|strong="H8085"\w* servant.” +\p \w He|strong="H7126"\w* \w answered|strong="H1697"\w*, “\w I|strong="H1697"\w*’m \w listening|strong="H8085"\w*.” +\p +\v 18 \w Then|strong="H1696"\w* \w she|strong="H3651"\w* \w spoke|strong="H1696"\w*, \w saying|strong="H1696"\w*, “\w They|strong="H3651"\w* used \w to|strong="H1696"\w* \w say|strong="H1696"\w* \w in|strong="H1696"\w* \w old|strong="H7223"\w* times, ‘\w They|strong="H3651"\w* shall \w surely|strong="H3651"\w* \w ask|strong="H7592"\w* \w counsel|strong="H7592"\w* \w at|strong="H3651"\w* Abel,’ \w and|strong="H7223"\w* \w so|strong="H3651"\w* \w they|strong="H3651"\w* settled \w a|strong="H3068"\w* matter. +\v 19 \w I|strong="H4100"\w* \w am|strong="H3068"\w* \w among|strong="H3478"\w* those \w who|strong="H3068"\w* \w are|strong="H3478"\w* \w peaceable|strong="H7999"\w* \w and|strong="H3478"\w* faithful \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. \w You|strong="H4100"\w* \w seek|strong="H1245"\w* \w to|strong="H3478"\w* \w destroy|strong="H1104"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w* \w and|strong="H3478"\w* \w a|strong="H3068"\w* mother \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. \w Why|strong="H4100"\w* \w will|strong="H3068"\w* \w you|strong="H4100"\w* \w swallow|strong="H1104"\w* \w up|strong="H1104"\w* \w Yahweh|strong="H3068"\w*’s \w inheritance|strong="H5159"\w*?” +\p +\v 20 \w Joab|strong="H3097"\w* \w answered|strong="H6030"\w*, “\w Far|strong="H2486"\w* be \w it|strong="H2486"\w*, \w far|strong="H2486"\w* be \w it|strong="H2486"\w* \w from|strong="H2486"\w* \w me|strong="H6030"\w*, \w that|strong="H6030"\w* I should \w swallow|strong="H1104"\w* \w up|strong="H1104"\w* \w or|strong="H1104"\w* \w destroy|strong="H7843"\w*. +\v 21 \w The|strong="H5921"\w* \w matter|strong="H1697"\w* \w is|strong="H8034"\w* \w not|strong="H3808"\w* \w so|strong="H3651"\w*. \w But|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H1121"\w* \w Ephraim|strong="H8034"\w*, \w Sheba|strong="H7652"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Bichri|strong="H1075"\w* \w by|strong="H3027"\w* \w name|strong="H8034"\w*, \w has|strong="H4428"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w hand|strong="H3027"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*, \w even|strong="H3588"\w* \w against|strong="H5921"\w* \w David|strong="H1732"\w*. \w Just|strong="H1697"\w* \w deliver|strong="H5414"\w* \w him|strong="H5414"\w*, \w and|strong="H1121"\w* \w I|strong="H3588"\w* \w will|strong="H4428"\w* \w depart|strong="H3212"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*.” +\p \w The|strong="H5921"\w* \w woman|strong="H8034"\w* \w said|strong="H1697"\w* \w to|strong="H3212"\w* \w Joab|strong="H3097"\w*, “\w Behold|strong="H2009"\w*, \w his|strong="H5375"\w* \w head|strong="H7218"\w* \w will|strong="H4428"\w* \w be|strong="H3808"\w* \w thrown|strong="H7993"\w* \w to|strong="H3212"\w* \w you|strong="H3588"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w wall|strong="H2346"\w*.” +\p +\v 22 \w Then|strong="H7725"\w* \w the|strong="H3605"\w* woman \w went|strong="H5971"\w* \w to|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w in|strong="H5921"\w* \w her|strong="H3605"\w* \w wisdom|strong="H2451"\w*. \w They|strong="H5921"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w the|strong="H3605"\w* \w head|strong="H7218"\w* \w of|strong="H1121"\w* \w Sheba|strong="H7652"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Bichri|strong="H1075"\w*, \w and|strong="H1121"\w* \w threw|strong="H7993"\w* \w it|strong="H5921"\w* \w out|strong="H7993"\w* \w to|strong="H7725"\w* \w Joab|strong="H3097"\w*. \w He|strong="H3605"\w* \w blew|strong="H8628"\w* \w the|strong="H3605"\w* \w trumpet|strong="H7782"\w*, \w and|strong="H1121"\w* \w they|strong="H5921"\w* \w were|strong="H5971"\w* \w dispersed|strong="H6327"\w* \w from|strong="H7725"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w every|strong="H3605"\w* \w man|strong="H1121"\w* \w to|strong="H7725"\w* \w his|strong="H3605"\w* tent. \w Then|strong="H7725"\w* \w Joab|strong="H3097"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. +\p +\v 23 \w Now|strong="H3478"\w* \w Joab|strong="H3097"\w* \w was|strong="H3478"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w Benaiah|strong="H1141"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w* \w was|strong="H3478"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* Cherethites \w and|strong="H1121"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w Pelethites|strong="H6432"\w*, +\v 24 Adoram \w was|strong="H1121"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w men|strong="H1121"\w* subject \w to|strong="H5921"\w* \w forced|strong="H4522"\w* \w labor|strong="H4522"\w*, \w Jehoshaphat|strong="H3092"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahilud \w was|strong="H1121"\w* \w the|strong="H5921"\w* \w recorder|strong="H2142"\w*, +\v 25 \w Sheva|strong="H7864"\w* \w was|strong="H3548"\w* \w scribe|strong="H5608"\w*, \w Zadok|strong="H6659"\w* \w and|strong="H3548"\w* Abiathar were \w priests|strong="H3548"\w*, +\v 26 \w and|strong="H3548"\w* \w Ira|strong="H5896"\w* \w the|strong="H1961"\w* \w Jairite|strong="H2972"\w* \w was|strong="H1961"\w* \w chief|strong="H3548"\w* minister \w to|strong="H1961"\w* \w David|strong="H1732"\w*. +\c 21 +\p +\v 1 \w There|strong="H1961"\w* \w was|strong="H3068"\w* \w a|strong="H3068"\w* \w famine|strong="H7458"\w* \w in|strong="H8141"\w* \w the|strong="H6440"\w* \w days|strong="H3117"\w* \w of|strong="H1004"\w* \w David|strong="H1732"\w* \w for|strong="H5921"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w*, \w year|strong="H8141"\w* \w after|strong="H5921"\w* \w year|strong="H8141"\w*; \w and|strong="H3068"\w* \w David|strong="H1732"\w* \w sought|strong="H1245"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*. \w Yahweh|strong="H3068"\w* said, “\w It|strong="H5921"\w* \w is|strong="H3068"\w* \w for|strong="H5921"\w* \w Saul|strong="H7586"\w*, \w and|strong="H3068"\w* \w for|strong="H5921"\w* \w his|strong="H3068"\w* \w bloody|strong="H1818"\w* \w house|strong="H1004"\w*, \w because|strong="H5921"\w* \w he|strong="H3117"\w* \w put|strong="H4191"\w* \w the|strong="H6440"\w* \w Gibeonites|strong="H1393"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*.” +\p +\v 2 \w The|strong="H3588"\w* \w king|strong="H4428"\w* \w called|strong="H7121"\w* \w the|strong="H3588"\w* \w Gibeonites|strong="H1393"\w* \w and|strong="H1121"\w* \w said|strong="H7121"\w* \w to|strong="H3478"\w* \w them|strong="H1992"\w* (\w now|strong="H3588"\w* \w the|strong="H3588"\w* \w Gibeonites|strong="H1393"\w* \w were|strong="H3478"\w* \w not|strong="H3808"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w but|strong="H3588"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w remnant|strong="H3499"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* Amorites, \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w had|strong="H3478"\w* \w sworn|strong="H7650"\w* \w to|strong="H3478"\w* \w them|strong="H1992"\w*; \w and|strong="H1121"\w* \w Saul|strong="H7586"\w* \w sought|strong="H1245"\w* \w to|strong="H3478"\w* \w kill|strong="H5221"\w* \w them|strong="H1992"\w* \w in|strong="H3478"\w* \w his|strong="H7121"\w* \w zeal|strong="H7065"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w and|strong="H1121"\w* \w Judah|strong="H3063"\w*); +\v 3 \w and|strong="H3068"\w* \w David|strong="H1732"\w* said \w to|strong="H3068"\w* \w the|strong="H6213"\w* \w Gibeonites|strong="H1393"\w*, “\w What|strong="H4100"\w* \w should|strong="H3068"\w* \w I|strong="H4100"\w* \w do|strong="H6213"\w* \w for|strong="H6213"\w* \w you|strong="H6213"\w*? \w And|strong="H3068"\w* \w with|strong="H3068"\w* \w what|strong="H4100"\w* \w should|strong="H3068"\w* \w I|strong="H4100"\w* \w make|strong="H6213"\w* \w atonement|strong="H3722"\w*, \w that|strong="H3068"\w* \w you|strong="H6213"\w* \w may|strong="H3068"\w* \w bless|strong="H1288"\w* \w Yahweh|strong="H3068"\w*’s \w inheritance|strong="H5159"\w*?” +\p +\v 4 \w The|strong="H6213"\w* \w Gibeonites|strong="H1393"\w* said \w to|strong="H3478"\w* \w him|strong="H6213"\w*, “\w It|strong="H6213"\w* \w is|strong="H4100"\w* \w no|strong="H6213"\w* matter \w of|strong="H1004"\w* \w silver|strong="H3701"\w* \w or|strong="H3701"\w* \w gold|strong="H2091"\w* \w between|strong="H5973"\w* \w us|strong="H6213"\w* \w and|strong="H3478"\w* \w Saul|strong="H7586"\w* \w or|strong="H3701"\w* \w his|strong="H3478"\w* \w house|strong="H1004"\w*; \w neither|strong="H5973"\w* \w is|strong="H4100"\w* \w it|strong="H6213"\w* \w for|strong="H6213"\w* \w us|strong="H6213"\w* \w to|strong="H3478"\w* \w put|strong="H4191"\w* \w any|strong="H6213"\w* \w man|strong="H4191"\w* \w to|strong="H3478"\w* \w death|strong="H4191"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*.” +\p \w He|strong="H6213"\w* said, “\w I|strong="H4100"\w* \w will|strong="H3478"\w* \w do|strong="H6213"\w* \w for|strong="H6213"\w* \w you|strong="H6213"\w* \w whatever|strong="H4100"\w* \w you|strong="H6213"\w* \w say|strong="H3478"\w*.” +\p +\v 5 \w They|strong="H3478"\w* said \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, “\w The|strong="H3605"\w* \w man|strong="H3605"\w* \w who|strong="H3605"\w* \w consumed|strong="H3615"\w* \w us|strong="H3478"\w* \w and|strong="H3478"\w* \w who|strong="H3605"\w* \w plotted|strong="H3615"\w* \w against|strong="H3605"\w* \w us|strong="H3478"\w*, \w that|strong="H3605"\w* \w we|strong="H3068"\w* \w should|strong="H3478"\w* \w be|strong="H3478"\w* \w destroyed|strong="H8045"\w* \w from|strong="H3478"\w* \w remaining|strong="H3320"\w* \w in|strong="H3478"\w* \w any|strong="H3605"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w borders|strong="H1366"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, +\v 6 \w let|strong="H5414"\w* \w seven|strong="H7651"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w his|strong="H5414"\w* \w sons|strong="H1121"\w* \w be|strong="H3068"\w* \w delivered|strong="H5414"\w* \w to|strong="H3068"\w* \w us|strong="H5414"\w*, \w and|strong="H1121"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w hang|strong="H5414"\w* \w them|strong="H5414"\w* \w up|strong="H5414"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w Gibeah|strong="H1390"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w*, \w the|strong="H5414"\w* chosen \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*.” +\p \w The|strong="H5414"\w* \w king|strong="H4428"\w* said, “\w I|strong="H5414"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w*.” +\p +\v 7 \w But|strong="H3068"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w spared|strong="H2550"\w* \w Mephibosheth|strong="H4648"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jonathan|strong="H3083"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w*, \w because|strong="H5921"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w oath|strong="H7621"\w* \w that|strong="H3068"\w* \w was|strong="H3068"\w* \w between|strong="H5921"\w* \w them|strong="H5921"\w*, \w between|strong="H5921"\w* \w David|strong="H1732"\w* \w and|strong="H1121"\w* \w Jonathan|strong="H3083"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w*. +\v 8 \w But|strong="H3947"\w* \w the|strong="H3947"\w* \w king|strong="H4428"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Rizpah|strong="H7532"\w* \w the|strong="H3947"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* Aiah, whom \w she|strong="H8147"\w* \w bore|strong="H3205"\w* \w to|strong="H3205"\w* \w Saul|strong="H7586"\w*, Armoni \w and|strong="H1121"\w* \w Mephibosheth|strong="H4648"\w*; \w and|strong="H1121"\w* \w the|strong="H3947"\w* \w five|strong="H2568"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Merab|strong="H4324"\w* \w the|strong="H3947"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w*, whom \w she|strong="H8147"\w* \w bore|strong="H3205"\w* \w to|strong="H3205"\w* \w Adriel|strong="H5741"\w* \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Barzillai|strong="H1271"\w* \w the|strong="H3947"\w* \w Meholathite|strong="H4259"\w*. +\v 9 \w He|strong="H3117"\w* \w delivered|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H5307"\w* \w the|strong="H6440"\w* \w hands|strong="H3027"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w Gibeonites|strong="H1393"\w*; \w and|strong="H3068"\w* \w they|strong="H1992"\w* \w hanged|strong="H3363"\w* \w them|strong="H5414"\w* \w on|strong="H3117"\w* \w the|strong="H6440"\w* \w mountain|strong="H2022"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w all|strong="H3162"\w* \w seven|strong="H7651"\w* \w of|strong="H3068"\w* \w them|strong="H5414"\w* \w fell|strong="H5307"\w* \w together|strong="H3162"\w*. \w They|strong="H1992"\w* \w were|strong="H3117"\w* \w put|strong="H5414"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w* \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w harvest|strong="H7105"\w*, \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w first|strong="H7223"\w* \w days|strong="H3117"\w*, \w at|strong="H3068"\w* \w the|strong="H6440"\w* \w beginning|strong="H8462"\w* \w of|strong="H3068"\w* \w barley|strong="H8184"\w* \w harvest|strong="H7105"\w*. +\p +\v 10 \w Rizpah|strong="H7532"\w* \w the|strong="H5921"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* Aiah \w took|strong="H3947"\w* \w sackcloth|strong="H8242"\w* \w and|strong="H8064"\w* \w spread|strong="H5186"\w* \w it|strong="H5414"\w* \w for|strong="H5704"\w* \w herself|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w rock|strong="H6697"\w*, \w from|strong="H4480"\w* \w the|strong="H5921"\w* \w beginning|strong="H8462"\w* \w of|strong="H1323"\w* \w harvest|strong="H7105"\w* \w until|strong="H5704"\w* \w water|strong="H4325"\w* \w poured|strong="H5413"\w* \w on|strong="H5921"\w* \w them|strong="H5414"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* \w sky|strong="H8064"\w*. \w She|strong="H5921"\w* \w allowed|strong="H5414"\w* \w neither|strong="H3808"\w* \w the|strong="H5921"\w* \w birds|strong="H5775"\w* \w of|strong="H1323"\w* \w the|strong="H5921"\w* \w sky|strong="H8064"\w* \w to|strong="H5704"\w* \w rest|strong="H5117"\w* \w on|strong="H5921"\w* \w them|strong="H5414"\w* \w by|strong="H5921"\w* \w day|strong="H3119"\w*, \w nor|strong="H3808"\w* \w the|strong="H5921"\w* \w animals|strong="H2416"\w* \w of|strong="H1323"\w* \w the|strong="H5921"\w* \w field|strong="H7704"\w* \w by|strong="H5921"\w* \w night|strong="H3915"\w*. +\v 11 \w David|strong="H1732"\w* \w was|strong="H1732"\w* \w told|strong="H5046"\w* \w what|strong="H6213"\w* \w Rizpah|strong="H7532"\w* \w the|strong="H6213"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* Aiah, \w the|strong="H6213"\w* \w concubine|strong="H6370"\w* \w of|strong="H1323"\w* \w Saul|strong="H7586"\w*, \w had|strong="H1732"\w* \w done|strong="H6213"\w*. +\v 12 \w So|strong="H3947"\w* \w David|strong="H1732"\w* \w went|strong="H3212"\w* \w and|strong="H1121"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w bones|strong="H6106"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w* \w and|strong="H1121"\w* \w the|strong="H3947"\w* \w bones|strong="H6106"\w* \w of|strong="H1121"\w* \w Jonathan|strong="H3083"\w* \w his|strong="H3947"\w* \w son|strong="H1121"\w* \w from|strong="H1121"\w* \w the|strong="H3947"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Jabesh|strong="H3003"\w* \w Gilead|strong="H1568"\w*, \w who|strong="H1121"\w* \w had|strong="H1732"\w* \w stolen|strong="H1589"\w* \w them|strong="H5221"\w* \w from|strong="H1121"\w* \w the|strong="H3947"\w* \w street|strong="H7339"\w* \w of|strong="H1121"\w* Beth Shan, \w where|strong="H8033"\w* \w the|strong="H3947"\w* \w Philistines|strong="H6430"\w* \w had|strong="H1732"\w* \w hanged|strong="H8518"\w* \w them|strong="H5221"\w* \w in|strong="H3117"\w* \w the|strong="H3947"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w the|strong="H3947"\w* \w Philistines|strong="H6430"\w* \w killed|strong="H5221"\w* \w Saul|strong="H7586"\w* \w in|strong="H3117"\w* \w Gilboa|strong="H1533"\w*; +\v 13 \w and|strong="H1121"\w* \w he|strong="H8033"\w* \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5927"\w* \w there|strong="H8033"\w* \w the|strong="H5927"\w* \w bones|strong="H6106"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w* \w and|strong="H1121"\w* \w the|strong="H5927"\w* \w bones|strong="H6106"\w* \w of|strong="H1121"\w* \w Jonathan|strong="H3083"\w* \w his|strong="H3083"\w* \w son|strong="H1121"\w*. \w They|strong="H8033"\w* \w also|strong="H1121"\w* gathered \w the|strong="H5927"\w* \w bones|strong="H6106"\w* \w of|strong="H1121"\w* \w those|strong="H1121"\w* \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w hanged|strong="H3363"\w*. +\v 14 \w They|strong="H3651"\w* \w buried|strong="H6912"\w* \w the|strong="H3605"\w* \w bones|strong="H6106"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w* \w and|strong="H1121"\w* \w Jonathan|strong="H3083"\w* \w his|strong="H3605"\w* \w son|strong="H1121"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* country \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w in|strong="H6213"\w* \w Zela|strong="H6762"\w*, \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w tomb|strong="H6913"\w* \w of|strong="H1121"\w* \w Kish|strong="H7027"\w* \w his|strong="H3605"\w* \w father|strong="H1121"\w*; \w and|strong="H1121"\w* \w they|strong="H3651"\w* \w performed|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w commanded|strong="H6680"\w*. After \w that|strong="H3605"\w*, God \w answered|strong="H6279"\w* \w prayer|strong="H6279"\w* \w for|strong="H6213"\w* \w the|strong="H3605"\w* land. +\p +\v 15 \w The|strong="H1961"\w* \w Philistines|strong="H6430"\w* \w had|strong="H1961"\w* \w war|strong="H4421"\w* \w again|strong="H5750"\w* \w with|strong="H5973"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w David|strong="H1732"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w*, \w and|strong="H3478"\w* \w his|strong="H1732"\w* \w servants|strong="H5650"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*, \w and|strong="H3478"\w* \w fought|strong="H3898"\w* \w against|strong="H5973"\w* \w the|strong="H1961"\w* \w Philistines|strong="H6430"\w*. \w David|strong="H1732"\w* grew \w faint|strong="H5774"\w*; +\v 16 \w and|strong="H3967"\w* Ishbibenob, \w who|strong="H1931"\w* \w was|strong="H1732"\w* \w of|strong="H5221"\w* \w the|strong="H5221"\w* \w sons|strong="H3211"\w* \w of|strong="H5221"\w* \w the|strong="H5221"\w* \w giant|strong="H7497"\w*, \w the|strong="H5221"\w* \w weight|strong="H4948"\w* \w of|strong="H5221"\w* whose \w spear|strong="H7013"\w* \w was|strong="H1732"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w shekels|strong="H4948"\w* \w of|strong="H5221"\w* \w bronze|strong="H5178"\w* \w in|strong="H1732"\w* \w weight|strong="H4948"\w*, \w he|strong="H1931"\w* being \w armed|strong="H2296"\w* \w with|strong="H2296"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* sword, thought \w he|strong="H1931"\w* \w would|strong="H1732"\w* \w kill|strong="H5221"\w* \w David|strong="H1732"\w*. +\v 17 \w But|strong="H3808"\w* Abishai \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w* \w helped|strong="H5826"\w* \w him|strong="H5221"\w*, \w and|strong="H1121"\w* \w struck|strong="H5221"\w* \w the|strong="H5221"\w* \w Philistine|strong="H6430"\w* \w and|strong="H1121"\w* \w killed|strong="H5221"\w* \w him|strong="H5221"\w*. \w Then|strong="H3318"\w* \w the|strong="H5221"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w* \w swore|strong="H7650"\w* \w to|strong="H3318"\w* \w him|strong="H5221"\w*, saying, “Don’t \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w with|strong="H3318"\w* \w us|strong="H3478"\w* \w to|strong="H3318"\w* \w battle|strong="H4421"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*, \w so|strong="H3808"\w* \w that|strong="H3478"\w* \w you|strong="H3808"\w* don’t \w quench|strong="H3518"\w* \w the|strong="H5221"\w* \w lamp|strong="H5216"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*.” +\p +\v 18 \w After|strong="H1961"\w* \w this|strong="H3651"\w*, \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w again|strong="H5750"\w* \w war|strong="H4421"\w* \w with|strong="H5973"\w* \w the|strong="H5221"\w* \w Philistines|strong="H6430"\w* \w at|strong="H4421"\w* \w Gob|strong="H1359"\w*. \w Then|strong="H1961"\w* \w Sibbecai|strong="H5444"\w* \w the|strong="H5221"\w* \w Hushathite|strong="H2843"\w* \w killed|strong="H5221"\w* \w Saph|strong="H5593"\w*, \w who|strong="H3211"\w* \w was|strong="H1961"\w* \w of|strong="H5221"\w* \w the|strong="H5221"\w* \w sons|strong="H3211"\w* \w of|strong="H5221"\w* \w the|strong="H5221"\w* \w giant|strong="H7497"\w*. +\v 19 \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w again|strong="H5750"\w* \w war|strong="H4421"\w* \w with|strong="H5973"\w* \w the|strong="H5221"\w* \w Philistines|strong="H6430"\w* \w at|strong="H4421"\w* \w Gob|strong="H1359"\w*, \w and|strong="H1121"\w* Elhanan \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jaare-Oregim|strong="H3296"\w* \w the|strong="H5221"\w* \w Bethlehemite|strong="H1022"\w* \w killed|strong="H5221"\w* \w Goliath|strong="H1555"\w* \w the|strong="H5221"\w* \w Gittite|strong="H1663"\w*’s brother, \w the|strong="H5221"\w* \w staff|strong="H6086"\w* \w of|strong="H1121"\w* \w whose|strong="H1121"\w* \w spear|strong="H2595"\w* \w was|strong="H1961"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* weaver’s \w beam|strong="H4500"\w*. +\v 20 \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w again|strong="H5750"\w* \w war|strong="H4421"\w* \w at|strong="H4421"\w* \w Gath|strong="H1661"\w*, \w where|strong="H3027"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* man \w of|strong="H3027"\w* great \w stature|strong="H4067"\w*, \w who|strong="H1931"\w* \w had|strong="H1961"\w* \w six|strong="H8337"\w* fingers \w on|strong="H3027"\w* every \w hand|strong="H3027"\w* \w and|strong="H6242"\w* \w six|strong="H8337"\w* \w toes|strong="H7272"\w* \w on|strong="H3027"\w* every \w foot|strong="H7272"\w*, \w twenty-four|strong="H6242"\w* \w in|strong="H4421"\w* \w number|strong="H4557"\w*, \w and|strong="H6242"\w* \w he|strong="H1931"\w* \w also|strong="H1571"\w* \w was|strong="H1961"\w* \w born|strong="H3205"\w* \w to|strong="H1961"\w* \w the|strong="H3205"\w* \w giant|strong="H7497"\w*. +\v 21 \w When|strong="H1121"\w* \w he|strong="H1732"\w* \w defied|strong="H2778"\w* \w Israel|strong="H3478"\w*, \w Jonathan|strong="H3083"\w* \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shimei|strong="H8096"\w*, \w David|strong="H1732"\w*’s brother, \w killed|strong="H5221"\w* \w him|strong="H5221"\w*. +\v 22 \w These|strong="H1732"\w* four \w were|strong="H3027"\w* \w born|strong="H3205"\w* \w to|strong="H3027"\w* \w the|strong="H3205"\w* \w giant|strong="H7497"\w* \w in|strong="H5650"\w* \w Gath|strong="H1661"\w*; \w and|strong="H3027"\w* \w they|strong="H3027"\w* \w fell|strong="H5307"\w* \w by|strong="H3027"\w* \w the|strong="H3205"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w David|strong="H1732"\w* \w and|strong="H3027"\w* \w by|strong="H3027"\w* \w the|strong="H3205"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w his|strong="H1732"\w* \w servants|strong="H5650"\w*. +\c 22 +\p +\v 1 \w David|strong="H1732"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w this|strong="H2063"\w* \w song|strong="H7892"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w delivered|strong="H5337"\w* \w him|strong="H3605"\w* \w out|strong="H5337"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w hand|strong="H3709"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* enemies, \w and|strong="H3068"\w* \w out|strong="H5337"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w hand|strong="H3709"\w* \w of|strong="H3068"\w* \w Saul|strong="H7586"\w*, +\v 2 \w and|strong="H3068"\w* \w he|strong="H3068"\w* said: +\q1 “\w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w my|strong="H3068"\w* \w rock|strong="H5553"\w*, +\q2 \w my|strong="H3068"\w* \w fortress|strong="H4686"\w*, +\q2 \w and|strong="H3068"\w* \w my|strong="H3068"\w* \w deliverer|strong="H6403"\w*, \w even|strong="H3068"\w* mine; +\q1 +\v 3 \w God|strong="H6697"\w* \w is|strong="H7161"\w* \w my|strong="H3467"\w* \w rock|strong="H6697"\w* \w in|strong="H4043"\w* whom \w I|strong="H6697"\w* \w take|strong="H2620"\w* \w refuge|strong="H2620"\w*; +\q2 \w my|strong="H3467"\w* \w shield|strong="H4043"\w*, \w and|strong="H4043"\w* \w the|strong="H3467"\w* \w horn|strong="H7161"\w* \w of|strong="H7161"\w* \w my|strong="H3467"\w* \w salvation|strong="H3468"\w*, +\q2 \w my|strong="H3467"\w* high \w tower|strong="H4869"\w*, \w and|strong="H4043"\w* \w my|strong="H3467"\w* \w refuge|strong="H2620"\w*. +\q2 \w My|strong="H3467"\w* \w savior|strong="H3467"\w*, \w you|strong="H3467"\w* \w save|strong="H3467"\w* \w me|strong="H3467"\w* \w from|strong="H3467"\w* \w violence|strong="H2555"\w*. +\q1 +\v 4 \w I|strong="H3068"\w* \w call|strong="H7121"\w* \w on|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H3068"\w* \w is|strong="H3068"\w* worthy \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w praised|strong="H1984"\w*; +\q2 \w So|strong="H7121"\w* \w shall|strong="H3068"\w* \w I|strong="H3068"\w* \w be|strong="H3068"\w* \w saved|strong="H3467"\w* \w from|strong="H3068"\w* \w my|strong="H3068"\w* enemies. +\b +\q1 +\v 5 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w waves|strong="H4867"\w* \w of|strong="H5158"\w* \w death|strong="H4194"\w* surrounded \w me|strong="H3588"\w*. +\q2 \w The|strong="H3588"\w* \w floods|strong="H5158"\w* \w of|strong="H5158"\w* \w ungodliness|strong="H1100"\w* made \w me|strong="H3588"\w* \w afraid|strong="H1204"\w*. +\q1 +\v 6 \w The|strong="H5437"\w* \w cords|strong="H2256"\w* \w of|strong="H4194"\w* \w Sheol|strong="H7585"\w*\f + \fr 22:6 \ft Sheol is the place of the dead.\f* \w were|strong="H4194"\w* \w around|strong="H5437"\w* \w me|strong="H5437"\w*. +\q2 \w The|strong="H5437"\w* \w snares|strong="H4170"\w* \w of|strong="H4194"\w* \w death|strong="H4194"\w* caught \w me|strong="H5437"\w*. +\q1 +\v 7 \w In|strong="H3068"\w* \w my|strong="H8085"\w* \w distress|strong="H6862"\w*, \w I|strong="H8085"\w* \w called|strong="H7121"\w* \w on|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 Yes, \w I|strong="H8085"\w* \w called|strong="H7121"\w* \w to|strong="H3068"\w* \w my|strong="H8085"\w* \w God|strong="H3068"\w*. +\q1 \w He|strong="H3068"\w* \w heard|strong="H8085"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w* out \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w temple|strong="H1964"\w*. +\q2 \w My|strong="H8085"\w* \w cry|strong="H7121"\w* \w came|strong="H3068"\w* into \w his|strong="H3068"\w* ears. +\q1 +\v 8 \w Then|strong="H3588"\w* \w the|strong="H3588"\w* \w earth|strong="H8064"\w* \w shook|strong="H1607"\w* \w and|strong="H8064"\w* \w trembled|strong="H7264"\w*. +\q2 \w The|strong="H3588"\w* \w foundations|strong="H4146"\w* \w of|strong="H8064"\w* \w heaven|strong="H8064"\w* \w quaked|strong="H7493"\w* \w and|strong="H8064"\w* \w were|strong="H8064"\w* \w shaken|strong="H1607"\w*, +\q2 \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w was|strong="H8064"\w* \w angry|strong="H2734"\w*. +\q1 +\v 9 \w Smoke|strong="H6227"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H4480"\w* \w of|strong="H6310"\w* \w his|strong="H4480"\w* nostrils. +\q2 Consuming \w fire|strong="H1513"\w* \w came|strong="H5927"\w* \w out|strong="H4480"\w* \w of|strong="H6310"\w* \w his|strong="H4480"\w* \w mouth|strong="H6310"\w*. +\q2 \w Coals|strong="H1513"\w* \w were|strong="H1513"\w* \w kindled|strong="H1197"\w* \w by|strong="H5927"\w* \w it|strong="H5927"\w*. +\q1 +\v 10 \w He|strong="H7272"\w* \w bowed|strong="H5186"\w* \w the|strong="H8478"\w* \w heavens|strong="H8064"\w* \w also|strong="H8064"\w*, \w and|strong="H8064"\w* \w came|strong="H3381"\w* \w down|strong="H3381"\w*. +\q2 \w Thick|strong="H6205"\w* \w darkness|strong="H6205"\w* \w was|strong="H8064"\w* \w under|strong="H8478"\w* \w his|strong="H5186"\w* \w feet|strong="H7272"\w*. +\q1 +\v 11 \w He|strong="H5921"\w* \w rode|strong="H7392"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w cherub|strong="H3742"\w*, \w and|strong="H7200"\w* \w flew|strong="H5774"\w*. +\q2 \w Yes|strong="H7200"\w*, \w he|strong="H5921"\w* \w was|strong="H7307"\w* \w seen|strong="H7200"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wings|strong="H3671"\w* \w of|strong="H7307"\w* \w the|strong="H5921"\w* \w wind|strong="H7307"\w*. +\q1 +\v 12 \w He|strong="H2822"\w* \w made|strong="H7896"\w* \w darkness|strong="H2822"\w* \w a|strong="H3068"\w* \w shelter|strong="H5521"\w* \w around|strong="H5439"\w* \w himself|strong="H4325"\w*, +\q2 gathering \w of|strong="H4325"\w* \w waters|strong="H4325"\w*, \w and|strong="H4325"\w* \w thick|strong="H5645"\w* \w clouds|strong="H5645"\w* \w of|strong="H4325"\w* \w the|strong="H5439"\w* \w skies|strong="H7834"\w*. +\q1 +\v 13 At \w the|strong="H5048"\w* \w brightness|strong="H5051"\w* \w before|strong="H5048"\w* \w him|strong="H5048"\w*, +\q2 \w coals|strong="H1513"\w* \w of|strong="H1513"\w* \w fire|strong="H1513"\w* \w were|strong="H1513"\w* \w kindled|strong="H1197"\w*. +\q1 +\v 14 \w Yahweh|strong="H3068"\w* \w thundered|strong="H7481"\w* \w from|strong="H4480"\w* \w heaven|strong="H8064"\w*. +\q2 \w The|strong="H5414"\w* \w Most|strong="H5945"\w* \w High|strong="H5945"\w* \w uttered|strong="H5414"\w* \w his|strong="H5414"\w* \w voice|strong="H6963"\w*. +\q1 +\v 15 \w He|strong="H7971"\w* \w sent|strong="H7971"\w* \w out|strong="H7971"\w* \w arrows|strong="H2671"\w* \w and|strong="H7971"\w* \w scattered|strong="H6327"\w* \w them|strong="H7971"\w*, +\q2 \w lightning|strong="H1300"\w* \w and|strong="H7971"\w* \w confused|strong="H2000"\w* \w them|strong="H7971"\w*. +\q1 +\v 16 \w Then|strong="H7200"\w* \w the|strong="H7200"\w* channels \w of|strong="H3068"\w* \w the|strong="H7200"\w* \w sea|strong="H3220"\w* \w appeared|strong="H7200"\w*. +\q2 \w The|strong="H7200"\w* \w foundations|strong="H4146"\w* \w of|strong="H3068"\w* \w the|strong="H7200"\w* \w world|strong="H8398"\w* \w were|strong="H8398"\w* \w laid|strong="H1540"\w* \w bare|strong="H1540"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w rebuke|strong="H1606"\w*, +\q2 \w at|strong="H3068"\w* \w the|strong="H7200"\w* \w blast|strong="H7307"\w* \w of|strong="H3068"\w* \w the|strong="H7200"\w* \w breath|strong="H7307"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* nostrils. +\b +\q1 +\v 17 \w He|strong="H7971"\w* \w sent|strong="H7971"\w* \w from|strong="H7971"\w* \w on|strong="H7971"\w* \w high|strong="H4791"\w* \w and|strong="H7971"\w* \w he|strong="H7971"\w* \w took|strong="H3947"\w* \w me|strong="H7971"\w*. +\q2 \w He|strong="H7971"\w* \w drew|strong="H4871"\w* \w me|strong="H7971"\w* \w out|strong="H7971"\w* \w of|strong="H4325"\w* \w many|strong="H7227"\w* \w waters|strong="H4325"\w*. +\q1 +\v 18 \w He|strong="H3588"\w* \w delivered|strong="H5337"\w* \w me|strong="H8130"\w* \w from|strong="H4480"\w* \w my|strong="H5337"\w* \w strong|strong="H5794"\w* \w enemy|strong="H8130"\w*, +\q2 \w from|strong="H4480"\w* \w those|strong="H4480"\w* \w who|strong="H3588"\w* \w hated|strong="H8130"\w* \w me|strong="H8130"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H4480"\w* \w too|strong="H4480"\w* \w mighty|strong="H5794"\w* \w for|strong="H3588"\w* \w me|strong="H8130"\w*. +\q1 +\v 19 \w They|strong="H3117"\w* \w came|strong="H1961"\w* \w on|strong="H3117"\w* \w me|strong="H1961"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* calamity, +\q2 \w but|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w my|strong="H3068"\w* \w support|strong="H4937"\w*. +\q1 +\v 20 \w He|strong="H3588"\w* \w also|strong="H3318"\w* \w brought|strong="H3318"\w* \w me|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H3318"\w* \w a|strong="H3068"\w* \w large|strong="H4800"\w* \w place|strong="H4800"\w*. +\q2 \w He|strong="H3588"\w* \w delivered|strong="H2502"\w* \w me|strong="H3318"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w delighted|strong="H2654"\w* \w in|strong="H2654"\w* \w me|strong="H3318"\w*. +\b +\q1 +\v 21 \w Yahweh|strong="H3068"\w* \w rewarded|strong="H1580"\w* \w me|strong="H7725"\w* \w according|strong="H3027"\w* \w to|strong="H7725"\w* \w my|strong="H3068"\w* \w righteousness|strong="H6666"\w*. +\q2 \w He|strong="H3068"\w* \w rewarded|strong="H1580"\w* \w me|strong="H7725"\w* \w according|strong="H3027"\w* \w to|strong="H7725"\w* \w the|strong="H3068"\w* \w cleanness|strong="H1252"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w hands|strong="H3027"\w*. +\q1 +\v 22 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w kept|strong="H8104"\w* \w Yahweh|strong="H3068"\w*’s \w ways|strong="H1870"\w*, +\q2 \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w wickedly|strong="H7561"\w* \w departed|strong="H7561"\w* \w from|strong="H3068"\w* \w my|strong="H8104"\w* \w God|strong="H3068"\w*. +\q1 +\v 23 \w For|strong="H3588"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w ordinances|strong="H4941"\w* \w were|strong="H3605"\w* \w before|strong="H4480"\w* \w me|strong="H4480"\w*. +\q2 \w As|strong="H3588"\w* \w for|strong="H3588"\w* \w his|strong="H3605"\w* \w statutes|strong="H2708"\w*, \w I|strong="H3588"\w* didn’t \w depart|strong="H5493"\w* \w from|strong="H4480"\w* \w them|strong="H5493"\w*. +\q1 +\v 24 \w I|strong="H5771"\w* \w was|strong="H1961"\w* also \w perfect|strong="H8549"\w* toward \w him|strong="H8104"\w*. +\q2 \w I|strong="H5771"\w* \w kept|strong="H8104"\w* myself \w from|strong="H1961"\w* \w my|strong="H8104"\w* \w iniquity|strong="H5771"\w*. +\q1 +\v 25 \w Therefore|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w rewarded|strong="H7725"\w* \w me|strong="H7725"\w* according \w to|strong="H7725"\w* \w my|strong="H3068"\w* \w righteousness|strong="H6666"\w*, +\q2 According \w to|strong="H7725"\w* \w my|strong="H3068"\w* \w cleanness|strong="H1252"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w eyesight|strong="H5869"\w*. +\b +\q1 +\v 26 \w With|strong="H5973"\w* \w the|strong="H5973"\w* \w merciful|strong="H2623"\w* \w you|strong="H5973"\w* \w will|strong="H8549"\w* \w show|strong="H8552"\w* \w yourself|strong="H2616"\w* \w merciful|strong="H2623"\w*. +\q2 \w With|strong="H5973"\w* \w the|strong="H5973"\w* \w perfect|strong="H8549"\w* \w man|strong="H1368"\w* \w you|strong="H5973"\w* \w will|strong="H8549"\w* \w show|strong="H8552"\w* \w yourself|strong="H2616"\w* \w perfect|strong="H8549"\w*. +\q2 +\v 27 \w With|strong="H5973"\w* \w the|strong="H5973"\w* \w pure|strong="H1305"\w* \w you|strong="H5973"\w* will \w show|strong="H6617"\w* \w yourself|strong="H1305"\w* \w pure|strong="H1305"\w*. +\q2 \w With|strong="H5973"\w* \w the|strong="H5973"\w* \w crooked|strong="H6141"\w* \w you|strong="H5973"\w* will \w show|strong="H6617"\w* \w yourself|strong="H1305"\w* shrewd. +\q1 +\v 28 \w You|strong="H5921"\w* \w will|strong="H5971"\w* \w save|strong="H3467"\w* \w the|strong="H5921"\w* \w afflicted|strong="H6041"\w* \w people|strong="H5971"\w*, +\q2 \w but|strong="H5971"\w* \w your|strong="H5921"\w* \w eyes|strong="H5869"\w* \w are|strong="H5971"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* arrogant, \w that|strong="H5971"\w* \w you|strong="H5921"\w* \w may|strong="H5971"\w* \w bring|strong="H8213"\w* \w them|strong="H5921"\w* \w down|strong="H8213"\w*. +\q1 +\v 29 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H3068"\w* \w my|strong="H3068"\w* \w lamp|strong="H5216"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w light|strong="H5216"\w* up \w my|strong="H3068"\w* \w darkness|strong="H2822"\w*. +\q1 +\v 30 \w For|strong="H3588"\w* \w by|strong="H7323"\w* \w you|strong="H3588"\w*, \w I|strong="H3588"\w* \w run|strong="H7323"\w* against \w a|strong="H3068"\w* \w troop|strong="H1416"\w*. +\q2 \w By|strong="H7323"\w* \w my|strong="H3588"\w* God, \w I|strong="H3588"\w* \w leap|strong="H1801"\w* \w over|strong="H1801"\w* \w a|strong="H3068"\w* \w wall|strong="H7791"\w*. +\q1 +\v 31 \w As|strong="H3068"\w* \w for|strong="H3068"\w* \w God|strong="H3068"\w*, \w his|strong="H3605"\w* \w way|strong="H1870"\w* \w is|strong="H3068"\w* \w perfect|strong="H8549"\w*. +\q2 \w Yahweh|strong="H3068"\w*’s word \w is|strong="H3068"\w* \w tested|strong="H6884"\w*. +\q2 \w He|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w shield|strong="H4043"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w take|strong="H2620"\w* \w refuge|strong="H2620"\w* \w in|strong="H3068"\w* \w him|strong="H1931"\w*. +\b +\q1 +\v 32 \w For|strong="H3588"\w* \w who|strong="H4310"\w* \w is|strong="H3068"\w* \w God|strong="H3068"\w*, \w besides|strong="H1107"\w* \w Yahweh|strong="H3068"\w*? +\q2 \w Who|strong="H4310"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w rock|strong="H6697"\w*, \w besides|strong="H1107"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*? +\q1 +\v 33 God \w is|strong="H1870"\w* \w my|strong="H1870"\w* \w strong|strong="H2428"\w* \w fortress|strong="H4581"\w*. +\q2 He makes \w my|strong="H1870"\w* \w way|strong="H1870"\w* \w perfect|strong="H8549"\w*. +\q1 +\v 34 \w He|strong="H5921"\w* \w makes|strong="H7737"\w* \w his|strong="H5921"\w* \w feet|strong="H7272"\w* \w like|strong="H7272"\w* hinds’ \w feet|strong="H7272"\w*, +\q2 \w and|strong="H5975"\w* \w sets|strong="H5975"\w* \w me|strong="H5921"\w* \w on|strong="H5921"\w* \w my|strong="H5921"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*. +\q1 +\v 35 \w He|strong="H3027"\w* \w teaches|strong="H3925"\w* \w my|strong="H3925"\w* \w hands|strong="H3027"\w* \w to|strong="H3027"\w* \w war|strong="H4421"\w*, +\q2 \w so|strong="H3027"\w* \w that|strong="H3027"\w* \w my|strong="H3925"\w* \w arms|strong="H2220"\w* \w bend|strong="H5181"\w* \w a|strong="H3068"\w* \w bow|strong="H7198"\w* \w of|strong="H3027"\w* \w bronze|strong="H5154"\w*. +\q1 +\v 36 \w You|strong="H5414"\w* \w have|strong="H5414"\w* also \w given|strong="H5414"\w* \w me|strong="H5414"\w* \w the|strong="H5414"\w* \w shield|strong="H4043"\w* \w of|strong="H4043"\w* \w your|strong="H5414"\w* \w salvation|strong="H3468"\w*. +\q2 \w Your|strong="H5414"\w* \w gentleness|strong="H6031"\w* \w has|strong="H5414"\w* \w made|strong="H5414"\w* \w me|strong="H5414"\w* \w great|strong="H7235"\w*. +\q1 +\v 37 \w You|strong="H3808"\w* \w have|strong="H3808"\w* \w enlarged|strong="H7337"\w* \w my|strong="H8478"\w* \w steps|strong="H6806"\w* \w under|strong="H8478"\w* \w me|strong="H7337"\w*. +\q2 \w My|strong="H8478"\w* \w feet|strong="H7166"\w* \w have|strong="H3808"\w* \w not|strong="H3808"\w* \w slipped|strong="H4571"\w*. +\q1 +\v 38 \w I|strong="H5704"\w* \w have|strong="H3808"\w* \w pursued|strong="H7291"\w* \w my|strong="H7725"\w* enemies \w and|strong="H7725"\w* \w destroyed|strong="H8045"\w* \w them|strong="H7725"\w*. +\q2 \w I|strong="H5704"\w* didn’t \w turn|strong="H7725"\w* \w again|strong="H7725"\w* \w until|strong="H5704"\w* \w they|strong="H3808"\w* \w were|strong="H7291"\w* \w consumed|strong="H3615"\w*. +\q1 +\v 39 \w I|strong="H3808"\w* \w have|strong="H3808"\w* consumed \w them|strong="H8478"\w*, +\q2 \w and|strong="H6965"\w* \w struck|strong="H4272"\w* \w them|strong="H8478"\w* \w through|strong="H4272"\w*, +\q2 \w so|strong="H3808"\w* \w that|strong="H5307"\w* \w they|strong="H3808"\w* \w can|strong="H3808"\w*’t \w arise|strong="H6965"\w*. +\q2 Yes, \w they|strong="H3808"\w* \w have|strong="H3808"\w* \w fallen|strong="H5307"\w* \w under|strong="H8478"\w* \w my|strong="H6965"\w* \w feet|strong="H7272"\w*. +\q1 +\v 40 \w For|strong="H8478"\w* \w you|strong="H8478"\w* \w have|strong="H2428"\w* \w armed|strong="H4421"\w* \w me|strong="H3766"\w* \w with|strong="H4421"\w* \w strength|strong="H2428"\w* \w for|strong="H8478"\w* \w the|strong="H8478"\w* \w battle|strong="H4421"\w*. +\q2 \w You|strong="H8478"\w* \w have|strong="H2428"\w* \w subdued|strong="H3766"\w* \w under|strong="H8478"\w* \w me|strong="H3766"\w* those \w who|strong="H4421"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H4421"\w* \w me|strong="H3766"\w*. +\q1 +\v 41 \w You|strong="H5414"\w* \w have|strong="H5414"\w* also \w made|strong="H5414"\w* \w my|strong="H5414"\w* \w enemies|strong="H8130"\w* \w turn|strong="H5414"\w* \w their|strong="H5414"\w* \w backs|strong="H6203"\w* \w to|strong="H5414"\w* \w me|strong="H5414"\w*, +\q2 \w that|strong="H5414"\w* \w I|strong="H5414"\w* might \w cut|strong="H6789"\w* \w off|strong="H6789"\w* \w those|strong="H8130"\w* \w who|strong="H8130"\w* \w hate|strong="H8130"\w* \w me|strong="H5414"\w*. +\q1 +\v 42 \w They|strong="H3068"\w* \w looked|strong="H8159"\w*, \w but|strong="H3808"\w* \w there|strong="H3068"\w* \w was|strong="H3068"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w to|strong="H3068"\w* \w save|strong="H3467"\w*; +\q2 \w even|strong="H3808"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w but|strong="H3808"\w* \w he|strong="H3068"\w* didn’t \w answer|strong="H6030"\w* \w them|strong="H6030"\w*. +\q1 +\v 43 Then I \w beat|strong="H7833"\w* \w them|strong="H7833"\w* \w as|strong="H1854"\w* \w small|strong="H1854"\w* \w as|strong="H1854"\w* \w the|strong="H2351"\w* \w dust|strong="H6083"\w* \w of|strong="H2351"\w* \w the|strong="H2351"\w* \w earth|strong="H6083"\w*. +\q2 I \w crushed|strong="H1854"\w* \w them|strong="H7833"\w* \w as|strong="H1854"\w* \w the|strong="H2351"\w* \w mire|strong="H2916"\w* \w of|strong="H2351"\w* \w the|strong="H2351"\w* \w streets|strong="H2351"\w*, \w and|strong="H6083"\w* \w spread|strong="H7554"\w* \w them|strong="H7833"\w* \w abroad|strong="H2351"\w*. +\b +\q1 +\v 44 \w You|strong="H3045"\w* \w also|strong="H1471"\w* \w have|strong="H5971"\w* \w delivered|strong="H6403"\w* \w me|strong="H8104"\w* \w from|strong="H1471"\w* \w the|strong="H8104"\w* \w strivings|strong="H7379"\w* \w of|strong="H7218"\w* \w my|strong="H8104"\w* \w people|strong="H5971"\w*. +\q2 \w You|strong="H3045"\w* \w have|strong="H5971"\w* \w kept|strong="H8104"\w* \w me|strong="H8104"\w* \w to|strong="H8104"\w* \w be|strong="H3808"\w* \w the|strong="H8104"\w* \w head|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H8104"\w* \w nations|strong="H1471"\w*. +\q2 \w A|strong="H3068"\w* \w people|strong="H5971"\w* \w whom|strong="H5971"\w* \w I|strong="H3045"\w* \w have|strong="H5971"\w* \w not|strong="H3808"\w* \w known|strong="H3045"\w* \w will|strong="H1471"\w* \w serve|strong="H5647"\w* \w me|strong="H8104"\w*. +\q1 +\v 45 \w The|strong="H8085"\w* \w foreigners|strong="H1121"\w* \w will|strong="H1121"\w* \w submit|strong="H3584"\w* \w themselves|strong="H8085"\w* \w to|strong="H8085"\w* \w me|strong="H8085"\w*. +\q2 \w As|strong="H1121"\w* soon \w as|strong="H1121"\w* \w they|strong="H8085"\w* \w hear|strong="H8085"\w* \w of|strong="H1121"\w* \w me|strong="H8085"\w*, \w they|strong="H8085"\w* \w will|strong="H1121"\w* \w obey|strong="H8085"\w* \w me|strong="H8085"\w*. +\q1 +\v 46 \w The|strong="H1121"\w* \w foreigners|strong="H1121"\w* \w will|strong="H1121"\w* \w fade|strong="H5034"\w* \w away|strong="H5034"\w*, +\q2 \w and|strong="H1121"\w* \w will|strong="H1121"\w* \w come|strong="H2296"\w* \w trembling|strong="H2296"\w* out \w of|strong="H1121"\w* their close \w places|strong="H4526"\w*. +\b +\q1 +\v 47 \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*! +\q2 \w Blessed|strong="H1288"\w* \w be|strong="H3068"\w* \w my|strong="H3068"\w* \w rock|strong="H6697"\w*! +\q1 \w Exalted|strong="H7311"\w* \w be|strong="H3068"\w* \w God|strong="H3068"\w*, \w the|strong="H3068"\w* \w rock|strong="H6697"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w salvation|strong="H3468"\w*, +\q2 +\v 48 even \w the|strong="H5414"\w* \w God|strong="H5414"\w* \w who|strong="H5971"\w* \w executes|strong="H5414"\w* \w vengeance|strong="H5360"\w* \w for|strong="H8478"\w* \w me|strong="H5414"\w*, +\q2 \w who|strong="H5971"\w* \w brings|strong="H3381"\w* \w down|strong="H3381"\w* \w peoples|strong="H5971"\w* \w under|strong="H8478"\w* \w me|strong="H5414"\w*, +\q2 +\v 49 who \w brings|strong="H3318"\w* \w me|strong="H7311"\w* \w away|strong="H3318"\w* \w from|strong="H3318"\w* \w my|strong="H6965"\w* \w enemies|strong="H6965"\w*. +\q1 Yes, \w you|strong="H6965"\w* \w lift|strong="H7311"\w* \w me|strong="H7311"\w* \w up|strong="H6965"\w* above \w those|strong="H3318"\w* who \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H6965"\w* \w me|strong="H7311"\w*. +\q2 \w You|strong="H6965"\w* \w deliver|strong="H5337"\w* \w me|strong="H7311"\w* \w from|strong="H3318"\w* \w the|strong="H3318"\w* \w violent|strong="H2555"\w* man. +\q1 +\v 50 \w Therefore|strong="H3651"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3068"\w* \w you|strong="H5921"\w*, \w Yahweh|strong="H3068"\w*, \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w sing|strong="H2167"\w* \w praises|strong="H2167"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w*. +\q1 +\v 51 \w He|strong="H5704"\w* \w gives|strong="H3444"\w* \w great|strong="H6213"\w* \w deliverance|strong="H3444"\w* \w to|strong="H5704"\w* \w his|strong="H1732"\w* \w king|strong="H4428"\w*, +\q2 \w and|strong="H4428"\w* \w shows|strong="H6213"\w* loving \w kindness|strong="H2617"\w* \w to|strong="H5704"\w* \w his|strong="H1732"\w* \w anointed|strong="H4899"\w*, +\q2 \w to|strong="H5704"\w* \w David|strong="H1732"\w* \w and|strong="H4428"\w* \w to|strong="H5704"\w* \w his|strong="H1732"\w* \w offspring|strong="H2233"\w*, \w forever|strong="H5769"\w* \w more|strong="H5704"\w*.” +\c 23 +\p +\v 1 \w Now|strong="H3478"\w* \w these|strong="H6965"\w* \w are|strong="H1121"\w* \w the|strong="H5002"\w* \w last|strong="H6965"\w* \w words|strong="H1697"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w*. +\q1 \w David|strong="H1732"\w* \w the|strong="H5002"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jesse|strong="H3448"\w* \w says|strong="H5002"\w*, +\q2 \w the|strong="H5002"\w* \w man|strong="H1397"\w* \w who|strong="H1121"\w* \w was|strong="H1732"\w* \w raised|strong="H6965"\w* \w on|strong="H6965"\w* \w high|strong="H5920"\w* \w says|strong="H5002"\w*, +\q2 \w the|strong="H5002"\w* \w anointed|strong="H4899"\w* \w of|strong="H1121"\w* \w the|strong="H5002"\w* God \w of|strong="H1121"\w* \w Jacob|strong="H3290"\w*, +\q2 \w the|strong="H5002"\w* \w sweet|strong="H5273"\w* \w psalmist|strong="H2158"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*: +\q1 +\v 2 “\w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w* \w spoke|strong="H1696"\w* \w by|strong="H5921"\w* \w me|strong="H5921"\w*. +\q2 \w His|strong="H3068"\w* \w word|strong="H1696"\w* \w was|strong="H3068"\w* \w on|strong="H5921"\w* \w my|strong="H3068"\w* \w tongue|strong="H3956"\w*. +\q1 +\v 3 \w The|strong="H1696"\w* \w God|strong="H6697"\w* \w of|strong="H6697"\w* \w Israel|strong="H3478"\w* \w said|strong="H1696"\w*, +\q2 \w the|strong="H1696"\w* \w Rock|strong="H6697"\w* \w of|strong="H6697"\w* \w Israel|strong="H3478"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w*, +\q2 ‘\w One|strong="H6662"\w* \w who|strong="H3478"\w* \w rules|strong="H4910"\w* \w over|strong="H4910"\w* \w men|strong="H6662"\w* \w righteously|strong="H6662"\w*, +\q2 \w who|strong="H3478"\w* \w rules|strong="H4910"\w* \w in|strong="H3478"\w* \w the|strong="H1696"\w* \w fear|strong="H3374"\w* \w of|strong="H6697"\w* \w God|strong="H6697"\w*, +\q1 +\v 4 \w shall|strong="H3808"\w* \w be|strong="H3808"\w* \w as|strong="H5645"\w* \w the|strong="H3808"\w* \w light|strong="H5051"\w* \w of|strong="H3808"\w* \w the|strong="H3808"\w* \w morning|strong="H1242"\w* when \w the|strong="H3808"\w* \w sun|strong="H8121"\w* \w rises|strong="H2224"\w*, +\q2 \w a|strong="H3068"\w* \w morning|strong="H1242"\w* \w without|strong="H3808"\w* \w clouds|strong="H5645"\w*, +\q2 when \w the|strong="H3808"\w* \w tender|strong="H1877"\w* \w grass|strong="H1877"\w* springs \w out|strong="H3808"\w* \w of|strong="H3808"\w* \w the|strong="H3808"\w* \w earth|strong="H8121"\w*, +\q2 through clear \w shining|strong="H5051"\w* \w after|strong="H1242"\w* \w rain|strong="H4306"\w*.’ +\b +\q1 +\v 5 Isn’t \w my|strong="H8104"\w* \w house|strong="H1004"\w* \w so|strong="H3651"\w* \w with|strong="H5973"\w* \w God|strong="H3808"\w*? +\q2 \w Yet|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w made|strong="H7760"\w* \w with|strong="H5973"\w* \w me|strong="H7760"\w* \w an|strong="H7760"\w* \w everlasting|strong="H5769"\w* \w covenant|strong="H1285"\w*, +\q2 \w ordered|strong="H6186"\w* \w in|strong="H1004"\w* \w all|strong="H3605"\w* \w things|strong="H3605"\w*, \w and|strong="H1004"\w* \w sure|strong="H8104"\w*, +\q2 \w for|strong="H3588"\w* \w it|strong="H7760"\w* \w is|strong="H3651"\w* \w all|strong="H3605"\w* \w my|strong="H8104"\w* \w salvation|strong="H3468"\w* \w and|strong="H1004"\w* \w all|strong="H3605"\w* \w my|strong="H8104"\w* \w desire|strong="H2656"\w*. +\q2 Won’t \w he|strong="H3588"\w* \w make|strong="H7760"\w* \w it|strong="H7760"\w* \w grow|strong="H6779"\w*? +\q1 +\v 6 \w But|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w ungodly|strong="H1100"\w* \w will|strong="H3027"\w* \w be|strong="H3808"\w* \w as|strong="H3588"\w* \w thorns|strong="H6975"\w* \w to|strong="H3027"\w* \w be|strong="H3808"\w* \w thrust|strong="H6975"\w* \w away|strong="H3947"\w*, +\q2 \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w can|strong="H3947"\w*’t \w be|strong="H3808"\w* \w taken|strong="H3947"\w* \w with|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w*. +\q1 +\v 7 \w The|strong="H4390"\w* man who \w touches|strong="H5060"\w* \w them|strong="H8313"\w* must \w be|strong="H6086"\w* \w armed|strong="H4390"\w* \w with|strong="H4390"\w* \w iron|strong="H1270"\w* \w and|strong="H6086"\w* \w the|strong="H4390"\w* \w staff|strong="H6086"\w* \w of|strong="H4390"\w* \w a|strong="H3068"\w* \w spear|strong="H2595"\w*. +\q1 They will \w be|strong="H6086"\w* \w utterly|strong="H8313"\w* \w burned|strong="H8313"\w* \w with|strong="H4390"\w* fire \w in|strong="H6086"\w* \w their|strong="H8313"\w* \w place|strong="H7675"\w*.” +\p +\v 8 \w These|strong="H1931"\w* \w are|strong="H1368"\w* \w the|strong="H5921"\w* \w names|strong="H8034"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w whom|strong="H1368"\w* \w David|strong="H1732"\w* \w had|strong="H1732"\w*: Josheb Basshebeth \w a|strong="H3068"\w* \w Tahchemonite|strong="H8461"\w*, \w chief|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w captains|strong="H7218"\w*; \w he|strong="H1931"\w* \w was|strong="H8034"\w* \w called|strong="H8034"\w* \w Adino|strong="H5722"\w* \w the|strong="H5921"\w* \w Eznite|strong="H6112"\w*, \w who|strong="H1931"\w* \w killed|strong="H2491"\w* \w eight|strong="H8083"\w* \w hundred|strong="H3967"\w* \w at|strong="H5921"\w* \w one|strong="H1931"\w* \w time|strong="H6471"\w*. +\v 9 \w After|strong="H5927"\w* \w him|strong="H5973"\w* \w was|strong="H1732"\w* Eleazar \w the|strong="H5927"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Dodai \w the|strong="H5927"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w an|strong="H8033"\w* Ahohite, \w one|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5927"\w* \w three|strong="H7969"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w with|strong="H5973"\w* \w David|strong="H1732"\w* \w when|strong="H1121"\w* \w they|strong="H8033"\w* \w defied|strong="H2778"\w* \w the|strong="H5927"\w* \w Philistines|strong="H6430"\w* \w who|strong="H1121"\w* \w were|strong="H3478"\w* \w there|strong="H8033"\w* \w gathered|strong="H6430"\w* \w together|strong="H5973"\w* \w to|strong="H3478"\w* \w battle|strong="H4421"\w*, \w and|strong="H1121"\w* \w the|strong="H5927"\w* \w men|strong="H1368"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w had|strong="H3478"\w* \w gone|strong="H5927"\w* \w away|strong="H5927"\w*. +\v 10 \w He|strong="H1931"\w* \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w struck|strong="H5221"\w* \w the|strong="H3588"\w* \w Philistines|strong="H6430"\w* \w until|strong="H5704"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w* \w was|strong="H3068"\w* \w weary|strong="H3021"\w*, \w and|strong="H6965"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w* froze \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w sword|strong="H2719"\w*; \w and|strong="H6965"\w* \w Yahweh|strong="H3068"\w* \w worked|strong="H6213"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w victory|strong="H8668"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w*; \w and|strong="H6965"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w returned|strong="H7725"\w* \w after|strong="H3117"\w* \w him|strong="H5221"\w* \w only|strong="H3588"\w* \w to|strong="H5704"\w* \w take|strong="H7725"\w* plunder. +\v 11 \w After|strong="H1961"\w* \w him|strong="H6440"\w* \w was|strong="H1961"\w* Shammah \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Agee \w a|strong="H3068"\w* \w Hararite|strong="H2043"\w*. \w The|strong="H6440"\w* \w Philistines|strong="H6430"\w* \w had|strong="H1961"\w* \w gathered|strong="H6430"\w* \w together|strong="H5971"\w* \w into|strong="H1961"\w* \w a|strong="H3068"\w* \w troop|strong="H2416"\w* \w where|strong="H8033"\w* \w there|strong="H8033"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w plot|strong="H2513"\w* \w of|strong="H1121"\w* \w ground|strong="H7704"\w* \w full|strong="H4395"\w* \w of|strong="H1121"\w* \w lentils|strong="H5742"\w*; \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w fled|strong="H5127"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w*. +\v 12 \w But|strong="H5221"\w* \w he|strong="H6213"\w* \w stood|strong="H3320"\w* \w in|strong="H3068"\w* \w the|strong="H5221"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H5221"\w* \w plot|strong="H2513"\w* \w and|strong="H3068"\w* \w defended|strong="H5337"\w* \w it|strong="H6213"\w*, \w and|strong="H3068"\w* \w killed|strong="H5221"\w* \w the|strong="H5221"\w* \w Philistines|strong="H6430"\w*; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w worked|strong="H6213"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w victory|strong="H8668"\w*. +\p +\v 13 \w Three|strong="H7970"\w* \w of|strong="H7218"\w* \w the|strong="H1732"\w* \w thirty|strong="H7970"\w* \w chief|strong="H7218"\w* \w men|strong="H7218"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w*, \w and|strong="H7970"\w* \w came|strong="H3381"\w* \w to|strong="H3381"\w* \w David|strong="H1732"\w* \w in|strong="H2583"\w* \w the|strong="H1732"\w* \w harvest|strong="H7105"\w* \w time|strong="H7105"\w* \w to|strong="H3381"\w* \w the|strong="H1732"\w* \w cave|strong="H4631"\w* \w of|strong="H7218"\w* \w Adullam|strong="H5725"\w*; \w and|strong="H7970"\w* \w the|strong="H1732"\w* \w troop|strong="H2416"\w* \w of|strong="H7218"\w* \w the|strong="H1732"\w* \w Philistines|strong="H6430"\w* \w was|strong="H1732"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w the|strong="H1732"\w* \w valley|strong="H6010"\w* \w of|strong="H7218"\w* \w Rephaim|strong="H7497"\w*. +\v 14 \w David|strong="H1732"\w* \w was|strong="H1732"\w* \w then|strong="H1732"\w* \w in|strong="H1035"\w* \w the|strong="H1732"\w* \w stronghold|strong="H4686"\w*; \w and|strong="H1732"\w* \w the|strong="H1732"\w* \w garrison|strong="H4673"\w* \w of|strong="H1732"\w* \w the|strong="H1732"\w* \w Philistines|strong="H6430"\w* \w was|strong="H1732"\w* \w then|strong="H1732"\w* \w in|strong="H1035"\w* \w Bethlehem|strong="H1035"\w*. +\v 15 \w David|strong="H1732"\w* said longingly, “\w Oh|strong="H4310"\w* \w that|strong="H4325"\w* \w someone|strong="H4310"\w* \w would|strong="H4310"\w* \w give|strong="H8248"\w* \w me|strong="H8248"\w* \w water|strong="H4325"\w* \w to|strong="H1732"\w* \w drink|strong="H8248"\w* \w from|strong="H4325"\w* \w the|strong="H1732"\w* well \w of|strong="H8179"\w* \w Bethlehem|strong="H1035"\w*, \w which|strong="H4310"\w* \w is|strong="H4310"\w* \w by|strong="H4325"\w* \w the|strong="H1732"\w* \w gate|strong="H8179"\w*!” +\p +\v 16 \w The|strong="H5375"\w* \w three|strong="H7969"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w broke|strong="H1234"\w* \w through|strong="H1234"\w* \w the|strong="H5375"\w* \w army|strong="H4264"\w* \w of|strong="H3068"\w* \w the|strong="H5375"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H3068"\w* \w drew|strong="H7579"\w* \w water|strong="H4325"\w* \w out|strong="H5258"\w* \w of|strong="H3068"\w* \w the|strong="H5375"\w* well \w of|strong="H3068"\w* \w Bethlehem|strong="H1035"\w* \w that|strong="H3068"\w* \w was|strong="H3068"\w* \w by|strong="H3068"\w* \w the|strong="H5375"\w* \w gate|strong="H8179"\w* \w and|strong="H3068"\w* \w took|strong="H5375"\w* \w it|strong="H5375"\w* \w and|strong="H3068"\w* \w brought|strong="H5375"\w* \w it|strong="H5375"\w* \w to|strong="H3068"\w* \w David|strong="H1732"\w*; \w but|strong="H3808"\w* \w he|strong="H3068"\w* \w would|strong="H3068"\w* \w not|strong="H3808"\w* \w drink|strong="H8354"\w* \w of|strong="H3068"\w* \w it|strong="H5375"\w*, \w but|strong="H3808"\w* \w poured|strong="H5258"\w* \w it|strong="H5375"\w* \w out|strong="H5258"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 17 \w He|strong="H6213"\w* said, “\w Be|strong="H3808"\w* \w it|strong="H6213"\w* \w far|strong="H2486"\w* \w from|strong="H5315"\w* \w me|strong="H5315"\w*, \w Yahweh|strong="H3068"\w*, \w that|strong="H5315"\w* \w I|strong="H5315"\w* \w should|strong="H3068"\w* \w do|strong="H6213"\w* \w this|strong="H2063"\w*! Isn’t \w this|strong="H2063"\w* \w the|strong="H6213"\w* \w blood|strong="H1818"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* \w men|strong="H1368"\w* \w who|strong="H3068"\w* risked \w their|strong="H3068"\w* \w lives|strong="H5315"\w* \w to|strong="H1980"\w* \w go|strong="H1980"\w*?” \w Therefore|strong="H3068"\w* \w he|strong="H6213"\w* \w would|strong="H3068"\w* \w not|strong="H3808"\w* \w drink|strong="H8354"\w* \w it|strong="H6213"\w*. \w The|strong="H6213"\w* \w three|strong="H7969"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w did|strong="H6213"\w* \w these|strong="H2063"\w* \w things|strong="H7969"\w*. +\p +\v 18 Abishai, \w the|strong="H5921"\w* brother \w of|strong="H1121"\w* \w Joab|strong="H3097"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w*, \w was|strong="H8034"\w* \w chief|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w three|strong="H7969"\w*. \w He|strong="H1931"\w* \w lifted|strong="H5782"\w* \w up|strong="H5782"\w* \w his|strong="H5921"\w* \w spear|strong="H2595"\w* \w against|strong="H5921"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w and|strong="H3967"\w* \w killed|strong="H2491"\w* \w them|strong="H5921"\w*, \w and|strong="H3967"\w* \w had|strong="H3097"\w* \w a|strong="H3068"\w* \w name|strong="H8034"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w three|strong="H7969"\w*. +\v 19 Wasn’t \w he|strong="H3588"\w* \w most|strong="H4480"\w* \w honorable|strong="H3513"\w* \w of|strong="H8269"\w* \w the|strong="H3588"\w* \w three|strong="H7969"\w*? \w Therefore|strong="H3588"\w* \w he|strong="H3588"\w* \w was|strong="H1961"\w* \w made|strong="H3513"\w* \w their|strong="H3588"\w* \w captain|strong="H8269"\w*. \w However|strong="H3588"\w* \w he|strong="H3588"\w* wasn’t \w included|strong="H1961"\w* \w as|strong="H5704"\w* \w one|strong="H3808"\w* \w of|strong="H8269"\w* \w the|strong="H3588"\w* \w three|strong="H7969"\w*. +\p +\v 20 \w Benaiah|strong="H1141"\w* \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w*, \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w valiant|strong="H1121"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w Kabzeel|strong="H6909"\w*, \w who|strong="H1931"\w* \w had|strong="H1121"\w* \w done|strong="H6467"\w* \w mighty|strong="H7227"\w* \w deeds|strong="H6467"\w*, \w killed|strong="H5221"\w* \w the|strong="H5221"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Ariel \w of|strong="H1121"\w* \w Moab|strong="H4124"\w*. \w He|strong="H1931"\w* \w also|strong="H1121"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w and|strong="H1121"\w* \w killed|strong="H5221"\w* \w a|strong="H3068"\w* lion \w in|strong="H3117"\w* \w the|strong="H5221"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* pit \w in|strong="H3117"\w* \w a|strong="H3068"\w* \w time|strong="H3117"\w* \w of|strong="H1121"\w* \w snow|strong="H7950"\w*. +\v 21 \w He|strong="H1931"\w* \w killed|strong="H2026"\w* \w a|strong="H3068"\w* huge \w Egyptian|strong="H4713"\w*, \w and|strong="H3027"\w* \w the|strong="H5221"\w* \w Egyptian|strong="H4713"\w* \w had|strong="H3027"\w* \w a|strong="H3068"\w* \w spear|strong="H2595"\w* \w in|strong="H3027"\w* \w his|strong="H5221"\w* \w hand|strong="H3027"\w*; \w but|strong="H5221"\w* \w he|strong="H1931"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w him|strong="H5221"\w* \w with|strong="H3381"\w* \w a|strong="H3068"\w* \w staff|strong="H7626"\w* \w and|strong="H3027"\w* \w plucked|strong="H1497"\w* \w the|strong="H5221"\w* \w spear|strong="H2595"\w* \w out|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5221"\w* \w Egyptian|strong="H4713"\w*’s \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w killed|strong="H2026"\w* \w him|strong="H5221"\w* \w with|strong="H3381"\w* \w his|strong="H5221"\w* \w own|strong="H3027"\w* \w spear|strong="H2595"\w*. +\v 22 \w Benaiah|strong="H1141"\w* \w the|strong="H6213"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w* \w did|strong="H6213"\w* \w these|strong="H6213"\w* \w things|strong="H7969"\w*, \w and|strong="H1121"\w* \w had|strong="H1121"\w* \w a|strong="H3068"\w* \w name|strong="H8034"\w* \w among|strong="H8034"\w* \w the|strong="H6213"\w* \w three|strong="H7969"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w*. +\v 23 \w He|strong="H1732"\w* \w was|strong="H1732"\w* \w more|strong="H4480"\w* \w honorable|strong="H3513"\w* \w than|strong="H4480"\w* \w the|strong="H4480"\w* \w thirty|strong="H7970"\w*, \w but|strong="H3808"\w* \w he|strong="H1732"\w* didn’t attain \w to|strong="H1732"\w* \w the|strong="H4480"\w* \w three|strong="H7969"\w*. \w David|strong="H1732"\w* \w set|strong="H7760"\w* \w him|strong="H7760"\w* \w over|strong="H4480"\w* \w his|strong="H7760"\w* \w guard|strong="H4928"\w*. +\p +\v 24 \w Asahel|strong="H6214"\w* \w the|strong="H3097"\w* brother \w of|strong="H1121"\w* \w Joab|strong="H3097"\w* \w was|strong="H1121"\w* \w one|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3097"\w* \w thirty|strong="H7970"\w*: Elhanan \w the|strong="H3097"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Dodo|strong="H1734"\w* \w of|strong="H1121"\w* \w Bethlehem|strong="H1035"\w*, +\v 25 \w Shammah|strong="H8048"\w* \w the|strong="H8048"\w* \w Harodite|strong="H2733"\w*, Elika \w the|strong="H8048"\w* \w Harodite|strong="H2733"\w*, +\v 26 \w Helez|strong="H2503"\w* \w the|strong="H1121"\w* \w Paltite|strong="H6407"\w*, \w Ira|strong="H5896"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ikkesh|strong="H6142"\w* \w the|strong="H1121"\w* \w Tekoite|strong="H8621"\w*, +\v 27 Abiezer \w the|strong="H4012"\w* \w Anathothite|strong="H6069"\w*, \w Mebunnai|strong="H4012"\w* \w the|strong="H4012"\w* \w Hushathite|strong="H2843"\w*, +\v 28 \w Zalmon|strong="H6756"\w* \w the|strong="H4121"\w* Ahohite, \w Maharai|strong="H4121"\w* \w the|strong="H4121"\w* \w Netophathite|strong="H5200"\w*, +\v 29 \w Heleb|strong="H2460"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Baanah|strong="H1196"\w* \w the|strong="H1121"\w* \w Netophathite|strong="H5200"\w*, Ittai \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ribai|strong="H7380"\w* \w of|strong="H1121"\w* \w Gibeah|strong="H1390"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*, +\v 30 \w Benaiah|strong="H1141"\w* \w a|strong="H3068"\w* \w Pirathonite|strong="H6553"\w*, \w Hiddai|strong="H1914"\w* \w of|strong="H5158"\w* \w the|strong="H1141"\w* \w brooks|strong="H5158"\w* \w of|strong="H5158"\w* \w Gaash|strong="H1608"\w*. +\v 31 Abialbon \w the|strong="H5820"\w* \w Arbathite|strong="H6164"\w*, \w Azmaveth|strong="H5820"\w* \w the|strong="H5820"\w* \w Barhumite|strong="H1273"\w*, +\v 32 Eliahba \w the|strong="H3083"\w* \w Shaalbonite|strong="H8170"\w*, \w the|strong="H3083"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jashen|strong="H3464"\w*, \w Jonathan|strong="H3083"\w*, +\v 33 \w Shammah|strong="H8048"\w* \w the|strong="H1121"\w* \w Hararite|strong="H2043"\w*, Ahiam \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Sharar|strong="H8325"\w* \w the|strong="H1121"\w* \w Ararite|strong="H2043"\w*, +\v 34 Eliphelet \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahasbai, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Maacathite|strong="H4602"\w*, Eliam \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahithophel \w the|strong="H1121"\w* \w Gilonite|strong="H1526"\w*, +\v 35 \w Hezro|strong="H2695"\w* \w the|strong="H2695"\w* \w Carmelite|strong="H3761"\w*, \w Paarai|strong="H6474"\w* \w the|strong="H2695"\w* Arbite, +\v 36 \w Igal|strong="H3008"\w* \w the|strong="H5416"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nathan|strong="H5416"\w* \w of|strong="H1121"\w* \w Zobah|strong="H6678"\w*, \w Bani|strong="H1137"\w* \w the|strong="H5416"\w* \w Gadite|strong="H1425"\w*, +\v 37 \w Zelek|strong="H6768"\w* \w the|strong="H5375"\w* \w Ammonite|strong="H5984"\w*, \w Naharai|strong="H5171"\w* \w the|strong="H5375"\w* Beerothite, \w armor|strong="H3627"\w* \w bearers|strong="H5375"\w* \w to|strong="H1121"\w* \w Joab|strong="H3097"\w* \w the|strong="H5375"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w*, +\v 38 \w Ira|strong="H5896"\w* \w the|strong="H5896"\w* \w Ithrite|strong="H3505"\w*, \w Gareb|strong="H1619"\w* \w the|strong="H5896"\w* \w Ithrite|strong="H3505"\w*, +\v 39 \w and|strong="H7970"\w* Uriah \w the|strong="H3605"\w* \w Hittite|strong="H2850"\w*: \w thirty-seven|strong="H7970"\w* \w in|strong="H3605"\w* \w all|strong="H3605"\w*. +\c 24 +\p +\v 1 \w Again|strong="H3254"\w* \w Yahweh|strong="H3068"\w*’s anger \w burned|strong="H2734"\w* \w against|strong="H2734"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3063"\w* \w he|strong="H3068"\w* \w moved|strong="H5496"\w* \w David|strong="H1732"\w* \w against|strong="H2734"\w* \w them|strong="H3068"\w*, saying, “\w Go|strong="H3212"\w*, \w count|strong="H4487"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w Judah|strong="H3063"\w*.” +\v 2 \w The|strong="H3605"\w* \w king|strong="H4428"\w* said \w to|strong="H5704"\w* \w Joab|strong="H3097"\w* \w the|strong="H3605"\w* \w captain|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w army|strong="H2428"\w*, \w who|strong="H3605"\w* \w was|strong="H3478"\w* \w with|strong="H3045"\w* \w him|strong="H3605"\w*, “\w Now|strong="H4994"\w* \w go|strong="H5971"\w* \w back|strong="H3045"\w* \w and|strong="H3478"\w* \w forth|strong="H7751"\w* \w through|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w from|strong="H3478"\w* \w Dan|strong="H1835"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* Beersheba, \w and|strong="H3478"\w* \w count|strong="H4557"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w that|strong="H3045"\w* \w I|strong="H5704"\w* \w may|strong="H4994"\w* \w know|strong="H3045"\w* \w the|strong="H3605"\w* \w sum|strong="H4557"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*.” +\p +\v 3 \w Joab|strong="H3097"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w*, “\w Now|strong="H6471"\w* \w may|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w add|strong="H3254"\w* \w to|strong="H3068"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w*, however \w many|strong="H4100"\w* \w they|strong="H1992"\w* \w may|strong="H3068"\w* \w be|strong="H1697"\w*, \w one|strong="H2088"\w* \w hundred|strong="H3967"\w* \w times|strong="H6471"\w*; \w and|strong="H3967"\w* \w may|strong="H3068"\w* \w the|strong="H7200"\w* \w eyes|strong="H5869"\w* \w of|strong="H4428"\w* \w my|strong="H3068"\w* \w lord|strong="H3068"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w* \w see|strong="H7200"\w* \w it|strong="H7200"\w*. \w But|strong="H7200"\w* \w why|strong="H4100"\w* \w does|strong="H4100"\w* \w my|strong="H3068"\w* \w lord|strong="H3068"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w* \w delight|strong="H2654"\w* \w in|strong="H3068"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*?” +\p +\v 4 Notwithstanding, \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w word|strong="H1697"\w* \w prevailed|strong="H2388"\w* \w against|strong="H5921"\w* \w Joab|strong="H3097"\w* \w and|strong="H3478"\w* \w against|strong="H5921"\w* \w the|strong="H6440"\w* \w captains|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w army|strong="H2428"\w*. \w Joab|strong="H3097"\w* \w and|strong="H3478"\w* \w the|strong="H6440"\w* \w captains|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w army|strong="H2428"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w to|strong="H3318"\w* count \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. +\v 5 \w They|strong="H5892"\w* \w passed|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H8432"\w* \w Jordan|strong="H3383"\w* \w and|strong="H5892"\w* \w encamped|strong="H2583"\w* \w in|strong="H2583"\w* \w Aroer|strong="H6177"\w*, \w on|strong="H5674"\w* \w the|strong="H8432"\w* \w right|strong="H3225"\w* \w side|strong="H3225"\w* \w of|strong="H5892"\w* \w the|strong="H8432"\w* \w city|strong="H5892"\w* \w that|strong="H5892"\w* \w is|strong="H5892"\w* \w in|strong="H2583"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H5892"\w* \w the|strong="H8432"\w* \w valley|strong="H5158"\w* \w of|strong="H5892"\w* \w Gad|strong="H1410"\w*, \w and|strong="H5892"\w* \w to|strong="H5674"\w* \w Jazer|strong="H3270"\w*; +\v 6 then they came \w to|strong="H5439"\w* \w Gilead|strong="H1568"\w* \w and|strong="H1568"\w* \w to|strong="H5439"\w* \w the|strong="H5439"\w* land \w of|strong="H5439"\w* Tahtim Hodshi; \w and|strong="H1568"\w* they came \w to|strong="H5439"\w* Dan Jaan \w and|strong="H1568"\w* \w around|strong="H5439"\w* \w to|strong="H5439"\w* \w Sidon|strong="H6721"\w*, +\v 7 \w and|strong="H3063"\w* \w came|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3605"\w* stronghold \w of|strong="H5892"\w* \w Tyre|strong="H6865"\w*, \w and|strong="H3063"\w* \w to|strong="H3318"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w Hivites|strong="H2340"\w* \w and|strong="H3063"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w Canaanites|strong="H3669"\w*; \w and|strong="H3063"\w* \w they|strong="H3605"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w south|strong="H5045"\w* \w of|strong="H5892"\w* \w Judah|strong="H3063"\w*, \w at|strong="H3318"\w* Beersheba. +\v 8 So \w when|strong="H3117"\w* \w they|strong="H3117"\w* \w had|strong="H3389"\w* \w gone|strong="H7751"\w* \w back|strong="H7751"\w* \w and|strong="H6242"\w* \w forth|strong="H7751"\w* \w through|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land, \w they|strong="H3117"\w* came \w to|strong="H3389"\w* \w Jerusalem|strong="H3389"\w* \w at|strong="H2320"\w* \w the|strong="H3605"\w* \w end|strong="H7097"\w* \w of|strong="H3117"\w* \w nine|strong="H8672"\w* \w months|strong="H2320"\w* \w and|strong="H6242"\w* \w twenty|strong="H6242"\w* \w days|strong="H3117"\w*. +\v 9 \w Joab|strong="H3097"\w* \w gave|strong="H5414"\w* \w up|strong="H5414"\w* \w the|strong="H5414"\w* \w sum|strong="H4557"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w counting|strong="H4557"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w* \w to|strong="H3478"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w*; \w and|strong="H3967"\w* \w there|strong="H1961"\w* \w were|strong="H3478"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w* \w eight|strong="H8083"\w* \w hundred|strong="H3967"\w* thousand \w valiant|strong="H2428"\w* \w men|strong="H5971"\w* \w who|strong="H5971"\w* \w drew|strong="H8025"\w* \w the|strong="H5414"\w* \w sword|strong="H2719"\w*, \w and|strong="H3967"\w* \w the|strong="H5414"\w* \w men|strong="H5971"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w were|strong="H3478"\w* \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* thousand \w men|strong="H5971"\w*. +\p +\v 10 \w David|strong="H1732"\w*’s \w heart|strong="H3820"\w* \w struck|strong="H5221"\w* \w him|strong="H5221"\w* \w after|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H3068"\w* \w counted|strong="H5608"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w*. \w David|strong="H1732"\w* \w said|strong="H3651"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, “\w I|strong="H3588"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w* \w greatly|strong="H3966"\w* \w in|strong="H3068"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w*. \w But|strong="H3588"\w* \w now|strong="H6258"\w*, \w Yahweh|strong="H3068"\w*, \w put|strong="H6213"\w* \w away|strong="H5674"\w*, \w I|strong="H3588"\w* \w beg|strong="H4994"\w* \w you|strong="H3588"\w*, \w the|strong="H3588"\w* \w iniquity|strong="H5771"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w very|strong="H3966"\w* \w foolishly|strong="H5528"\w*.” +\p +\v 11 \w When|strong="H1961"\w* \w David|strong="H1732"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w morning|strong="H1242"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w prophet|strong="H5030"\w* \w Gad|strong="H1410"\w*, \w David|strong="H1732"\w*’s \w seer|strong="H2374"\w*, \w saying|strong="H1697"\w*, +\v 12 “\w Go|strong="H1980"\w* \w and|strong="H1980"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w David|strong="H1732"\w*, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w I|strong="H3541"\w* \w offer|strong="H6213"\w* \w you|strong="H5921"\w* \w three|strong="H7969"\w* \w things|strong="H7969"\w*. Choose \w one|strong="H6213"\w* \w of|strong="H3068"\w* \w them|strong="H1992"\w*, \w that|strong="H3068"\w* \w I|strong="H3541"\w* \w may|strong="H3068"\w* \w do|strong="H6213"\w* \w it|strong="H5921"\w* \w to|strong="H1696"\w* \w you|strong="H5921"\w*.”’” +\p +\v 13 \w So|strong="H7971"\w* \w Gad|strong="H1410"\w* \w came|strong="H1961"\w* \w to|strong="H7725"\w* \w David|strong="H1732"\w*, \w and|strong="H7971"\w* \w told|strong="H5046"\w* \w him|strong="H6440"\w*, \w saying|strong="H1697"\w*, “\w Shall|strong="H3117"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w* \w of|strong="H3117"\w* \w famine|strong="H7458"\w* \w come|strong="H1961"\w* \w to|strong="H7725"\w* \w you|strong="H6440"\w* \w in|strong="H8141"\w* \w your|strong="H6440"\w* \w land|strong="H6440"\w*? \w Or|strong="H3117"\w* \w will|strong="H1961"\w* \w you|strong="H6440"\w* \w flee|strong="H5127"\w* \w three|strong="H7969"\w* \w months|strong="H2320"\w* \w before|strong="H6440"\w* \w your|strong="H6440"\w* \w foes|strong="H6862"\w* \w while|strong="H1961"\w* \w they|strong="H3117"\w* \w pursue|strong="H7291"\w* \w you|strong="H6440"\w*? \w Or|strong="H3117"\w* \w shall|strong="H3117"\w* \w there|strong="H1961"\w* \w be|strong="H1961"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*’ \w pestilence|strong="H1698"\w* \w in|strong="H8141"\w* \w your|strong="H6440"\w* \w land|strong="H6440"\w*? \w Now|strong="H6258"\w* \w answer|strong="H7725"\w*, \w and|strong="H7971"\w* \w consider|strong="H7200"\w* \w what|strong="H4100"\w* \w answer|strong="H7725"\w* \w I|strong="H3117"\w* \w shall|strong="H3117"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w him|strong="H6440"\w* \w who|strong="H1931"\w* \w sent|strong="H7971"\w* \w me|strong="H6440"\w*.” +\p +\v 14 \w David|strong="H1732"\w* said \w to|strong="H3068"\w* \w Gad|strong="H1410"\w*, “\w I|strong="H3588"\w* \w am|strong="H3068"\w* \w in|strong="H3068"\w* \w distress|strong="H6862"\w*. \w Let|strong="H4994"\w* \w us|strong="H4994"\w* \w fall|strong="H5307"\w* \w now|strong="H4994"\w* \w into|strong="H5307"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w*, \w for|strong="H3588"\w* \w his|strong="H3068"\w* \w mercies|strong="H7356"\w* \w are|strong="H3027"\w* \w great|strong="H7227"\w*. \w Let|strong="H4994"\w* \w me|strong="H4994"\w* \w not|strong="H3588"\w* \w fall|strong="H5307"\w* \w into|strong="H5307"\w* \w man|strong="H5307"\w*’s \w hand|strong="H3027"\w*.” +\p +\v 15 \w So|strong="H4480"\w* \w Yahweh|strong="H3068"\w* \w sent|strong="H5414"\w* \w a|strong="H3068"\w* \w pestilence|strong="H1698"\w* \w on|strong="H3068"\w* \w Israel|strong="H3478"\w* \w from|strong="H4480"\w* \w the|strong="H5414"\w* \w morning|strong="H1242"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5414"\w* \w appointed|strong="H4150"\w* \w time|strong="H6256"\w*; \w and|strong="H3478"\w* \w seventy|strong="H7657"\w* thousand \w men|strong="H5971"\w* \w died|strong="H4191"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w* \w from|strong="H4480"\w* \w Dan|strong="H1835"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* Beersheba. +\v 16 \w When|strong="H1961"\w* \w the|strong="H3068"\w* \w angel|strong="H4397"\w* \w stretched|strong="H7971"\w* \w out|strong="H7971"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w* \w toward|strong="H3027"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H3068"\w* \w destroy|strong="H7843"\w* \w it|strong="H1961"\w*, \w Yahweh|strong="H3068"\w* \w relented|strong="H5162"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w disaster|strong="H7451"\w*, \w and|strong="H3068"\w* said \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w angel|strong="H4397"\w* \w who|strong="H5971"\w* \w destroyed|strong="H7843"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w*, “\w It|strong="H1961"\w* \w is|strong="H3068"\w* \w enough|strong="H7227"\w*. \w Now|strong="H6258"\w* withdraw \w your|strong="H3068"\w* \w hand|strong="H3027"\w*.” \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w was|strong="H3068"\w* \w by|strong="H3027"\w* \w the|strong="H3068"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w* \w of|strong="H3068"\w* Araunah \w the|strong="H3068"\w* \w Jebusite|strong="H2983"\w*. +\p +\v 17 \w David|strong="H1732"\w* spoke \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w when|strong="H1961"\w* \w he|strong="H6213"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w angel|strong="H4397"\w* \w who|strong="H5971"\w* \w struck|strong="H5221"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w*, \w and|strong="H3068"\w* said, “\w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w have|strong="H1961"\w* \w sinned|strong="H2398"\w*, \w and|strong="H3068"\w* \w I|strong="H2009"\w* \w have|strong="H1961"\w* \w done|strong="H6213"\w* \w perversely|strong="H5753"\w*; \w but|strong="H1961"\w* \w these|strong="H6213"\w* \w sheep|strong="H6629"\w*, \w what|strong="H4100"\w* \w have|strong="H1961"\w* \w they|strong="H3068"\w* \w done|strong="H6213"\w*? \w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w be|strong="H1961"\w* \w against|strong="H2398"\w* \w me|strong="H4994"\w*, \w and|strong="H3068"\w* \w against|strong="H2398"\w* \w my|strong="H3068"\w* father’s \w house|strong="H1004"\w*.” +\p +\v 18 \w Gad|strong="H1410"\w* \w came|strong="H5927"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w to|strong="H3068"\w* \w David|strong="H1732"\w* \w and|strong="H6965"\w* said \w to|strong="H3068"\w* \w him|strong="H1931"\w*, “\w Go|strong="H5927"\w* \w up|strong="H5927"\w*, \w build|strong="H6965"\w* \w an|strong="H6965"\w* \w altar|strong="H4196"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w on|strong="H3117"\w* \w the|strong="H3068"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w* \w of|strong="H3068"\w* Araunah \w the|strong="H3068"\w* \w Jebusite|strong="H2983"\w*.” +\p +\v 19 \w David|strong="H1732"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* according \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w saying|strong="H1697"\w* \w of|strong="H3068"\w* \w Gad|strong="H1410"\w*, \w as|strong="H1697"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w*. +\v 20 Araunah \w looked|strong="H7200"\w* \w out|strong="H3318"\w*, \w and|strong="H4428"\w* \w saw|strong="H7200"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w his|strong="H5921"\w* \w servants|strong="H5650"\w* \w coming|strong="H3318"\w* \w on|strong="H5921"\w* \w toward|strong="H5921"\w* \w him|strong="H5921"\w*. \w Then|strong="H3318"\w* Araunah \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H4428"\w* \w bowed|strong="H7812"\w* \w himself|strong="H7812"\w* \w before|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w with|strong="H5921"\w* \w his|strong="H5921"\w* \w face|strong="H7200"\w* \w to|strong="H3318"\w* \w the|strong="H5921"\w* ground. +\v 21 Araunah said, “\w Why|strong="H4069"\w* \w has|strong="H3068"\w* \w my|strong="H3068"\w* \w lord|strong="H3068"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w come|strong="H5971"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w servant|strong="H5650"\w*?” +\p \w David|strong="H1732"\w* said, “\w To|strong="H3068"\w* \w buy|strong="H7069"\w* \w your|strong="H3068"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w*, \w to|strong="H3068"\w* \w build|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w that|strong="H5971"\w* \w the|strong="H5921"\w* \w plague|strong="H4046"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w stopped|strong="H6113"\w* \w from|strong="H5921"\w* afflicting \w the|strong="H5921"\w* \w people|strong="H5971"\w*.” +\p +\v 22 Araunah said \w to|strong="H5927"\w* \w David|strong="H1732"\w*, “Let \w my|strong="H7200"\w* lord \w the|strong="H7200"\w* \w king|strong="H4428"\w* \w take|strong="H3947"\w* \w and|strong="H4428"\w* \w offer|strong="H5927"\w* \w up|strong="H5927"\w* \w what|strong="H2896"\w* \w seems|strong="H2896"\w* \w good|strong="H2896"\w* \w to|strong="H5927"\w* \w him|strong="H7200"\w*. \w Behold|strong="H7200"\w*, \w the|strong="H7200"\w* \w cattle|strong="H1241"\w* \w for|strong="H6086"\w* \w the|strong="H7200"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w and|strong="H4428"\w* \w the|strong="H7200"\w* \w threshing|strong="H4173"\w* \w sledges|strong="H4173"\w* \w and|strong="H4428"\w* \w the|strong="H7200"\w* \w yokes|strong="H3627"\w* \w of|strong="H4428"\w* \w the|strong="H7200"\w* \w oxen|strong="H1241"\w* \w for|strong="H6086"\w* \w the|strong="H7200"\w* \w wood|strong="H6086"\w*. +\v 23 \w All|strong="H3605"\w* \w this|strong="H5414"\w*, \w O|strong="H3068"\w* \w king|strong="H4428"\w*, \w does|strong="H3068"\w* Araunah \w give|strong="H5414"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*.” Araunah said \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, “\w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w accept|strong="H7521"\w* \w you|strong="H5414"\w*.” +\p +\v 24 \w The|strong="H3588"\w* \w king|strong="H4428"\w* said \w to|strong="H3068"\w* Araunah, “\w No|strong="H3808"\w*, \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w most|strong="H3068"\w* \w certainly|strong="H3588"\w* \w buy|strong="H7069"\w* \w it|strong="H3588"\w* \w from|strong="H5927"\w* \w you|strong="H3588"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w price|strong="H4242"\w*. \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w offer|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w* \w which|strong="H3068"\w* \w cost|strong="H4242"\w* \w me|strong="H2600"\w* \w nothing|strong="H3808"\w*.” \w So|strong="H5927"\w* \w David|strong="H1732"\w* \w bought|strong="H7069"\w* \w the|strong="H3588"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w* \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w oxen|strong="H1241"\w* \w for|strong="H3588"\w* \w fifty|strong="H2572"\w* \w shekels|strong="H8255"\w*\f + \fr 24:24 \ft A shekel is about 10 grams or about 0.35 ounces, so 50 shekels is about 0.5 kilograms or 1.1 pounds.\f* \w of|strong="H4428"\w* \w silver|strong="H3701"\w*. +\v 25 \w David|strong="H1732"\w* \w built|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w there|strong="H8033"\w*, \w and|strong="H3478"\w* \w offered|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w* \w and|strong="H3478"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*. \w So|strong="H5927"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w entreated|strong="H6279"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* land, \w and|strong="H3478"\w* \w the|strong="H5921"\w* \w plague|strong="H4046"\w* \w was|strong="H3068"\w* removed \w from|strong="H5921"\w* \w Israel|strong="H3478"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/12-1KIeng-web.usfm b/bibles/eng-web_usfm/12-1KIeng-web.usfm new file mode 100644 index 0000000..559f6b6 --- /dev/null +++ b/bibles/eng-web_usfm/12-1KIeng-web.usfm @@ -0,0 +1,1147 @@ +\id 1KI World English Bible (WEB) +\ide UTF-8 +\h 1 Kings +\toc1 The First Book of Kings +\toc2 1 Kings +\toc3 1Ki +\mt1 The First Book of Kings +\c 1 +\p +\v 1 \w Now|strong="H3117"\w* \w King|strong="H4428"\w* \w David|strong="H1732"\w* \w was|strong="H1732"\w* \w old|strong="H2204"\w* \w and|strong="H4428"\w* advanced \w in|strong="H4428"\w* \w years|strong="H3117"\w*; \w and|strong="H4428"\w* \w they|strong="H3117"\w* \w covered|strong="H3680"\w* \w him|strong="H1732"\w* \w with|strong="H3117"\w* clothes, \w but|strong="H3808"\w* \w he|strong="H3117"\w* couldn’t \w keep|strong="H3680"\w* \w warm|strong="H3179"\w*. +\v 2 \w Therefore|strong="H5650"\w* \w his|strong="H6440"\w* \w servants|strong="H5650"\w* said \w to|strong="H1961"\w* \w him|strong="H6440"\w*, “\w Let|strong="H1961"\w* \w a|strong="H3068"\w* \w young|strong="H5291"\w* \w virgin|strong="H1330"\w* \w be|strong="H1961"\w* \w sought|strong="H1245"\w* \w for|strong="H6440"\w* \w my|strong="H1245"\w* lord \w the|strong="H6440"\w* \w king|strong="H4428"\w*. \w Let|strong="H1961"\w* \w her|strong="H7901"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*, \w and|strong="H4428"\w* \w cherish|strong="H2436"\w* \w him|strong="H6440"\w*; \w and|strong="H4428"\w* \w let|strong="H1961"\w* \w her|strong="H7901"\w* \w lie|strong="H7901"\w* \w in|strong="H4428"\w* \w your|strong="H6440"\w* \w bosom|strong="H2436"\w*, \w that|strong="H4428"\w* \w my|strong="H1245"\w* lord \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w may|strong="H1961"\w* \w keep|strong="H2552"\w* \w warm|strong="H2552"\w*.” +\v 3 \w So|strong="H4672"\w* \w they|strong="H3478"\w* \w sought|strong="H1245"\w* \w for|strong="H4428"\w* \w a|strong="H3068"\w* \w beautiful|strong="H3303"\w* \w young|strong="H5291"\w* \w lady|strong="H5291"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w borders|strong="H1366"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w found|strong="H4672"\w* Abishag \w the|strong="H3605"\w* \w Shunammite|strong="H7767"\w*, \w and|strong="H3478"\w* \w brought|strong="H3478"\w* \w her|strong="H3605"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. +\v 4 \w The|strong="H3045"\w* \w young|strong="H5291"\w* \w lady|strong="H5291"\w* \w was|strong="H1961"\w* \w very|strong="H3966"\w* \w beautiful|strong="H3303"\w*; \w and|strong="H4428"\w* \w she|strong="H5704"\w* \w cherished|strong="H5532"\w* \w the|strong="H3045"\w* \w king|strong="H4428"\w*, \w and|strong="H4428"\w* \w served|strong="H8334"\w* \w him|strong="H3045"\w*; \w but|strong="H3808"\w* \w the|strong="H3045"\w* \w king|strong="H4428"\w* didn’t \w know|strong="H3045"\w* \w her|strong="H3045"\w* \w intimately|strong="H5532"\w*. +\p +\v 5 \w Then|strong="H6213"\w* Adonijah \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Haggith|strong="H2294"\w* \w exalted|strong="H4984"\w* \w himself|strong="H6213"\w*, saying, “\w I|strong="H6440"\w* \w will|strong="H1121"\w* \w be|strong="H1121"\w* \w king|strong="H4427"\w*.” \w Then|strong="H6213"\w* \w he|strong="H6213"\w* \w prepared|strong="H6213"\w* \w him|strong="H6440"\w* \w chariots|strong="H7393"\w* \w and|strong="H1121"\w* \w horsemen|strong="H6571"\w*, \w and|strong="H1121"\w* \w fifty|strong="H2572"\w* \w men|strong="H1121"\w* \w to|strong="H6213"\w* \w run|strong="H7323"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 6 \w His|strong="H6213"\w* \w father|strong="H3205"\w* \w had|strong="H3205"\w* \w not|strong="H3808"\w* \w displeased|strong="H6087"\w* \w him|strong="H3205"\w* \w at|strong="H3117"\w* \w any|strong="H6213"\w* \w time|strong="H3117"\w* \w in|strong="H6213"\w* saying, “\w Why|strong="H4069"\w* \w have|strong="H1571"\w* \w you|strong="H3117"\w* \w done|strong="H6213"\w* \w so|strong="H6213"\w*?” \w and|strong="H3117"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w also|strong="H1571"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w handsome|strong="H2896"\w* \w man|strong="H2896"\w*; \w and|strong="H3117"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w born|strong="H3205"\w* \w after|strong="H3117"\w* Absalom. +\v 7 \w He|strong="H1697"\w* \w conferred|strong="H1697"\w* \w with|strong="H5973"\w* \w Joab|strong="H3097"\w* \w the|strong="H1697"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w* \w and|strong="H1121"\w* \w with|strong="H5973"\w* Abiathar \w the|strong="H1697"\w* \w priest|strong="H3548"\w*; \w and|strong="H1121"\w* \w they|strong="H1697"\w* \w followed|strong="H1961"\w* Adonijah \w and|strong="H1121"\w* \w helped|strong="H5826"\w* \w him|strong="H5973"\w*. +\v 8 \w But|strong="H3808"\w* \w Zadok|strong="H6659"\w* \w the|strong="H1961"\w* \w priest|strong="H3548"\w*, \w Benaiah|strong="H1141"\w* \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w*, \w Nathan|strong="H5416"\w* \w the|strong="H1961"\w* \w prophet|strong="H5030"\w*, \w Shimei|strong="H8096"\w*, \w Rei|strong="H7472"\w*, \w and|strong="H1121"\w* \w the|strong="H1961"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w who|strong="H3548"\w* \w belonged|strong="H1961"\w* \w to|strong="H1961"\w* \w David|strong="H1732"\w*, \w were|strong="H1961"\w* \w not|strong="H3808"\w* \w with|strong="H5973"\w* Adonijah. +\p +\v 9 Adonijah \w killed|strong="H2076"\w* \w sheep|strong="H6629"\w*, \w cattle|strong="H1241"\w*, \w and|strong="H1121"\w* \w fatlings|strong="H4806"\w* \w by|strong="H7121"\w* \w the|strong="H3605"\w* stone \w of|strong="H1121"\w* \w Zoheleth|strong="H2120"\w*, \w which|strong="H3063"\w* \w is|strong="H3605"\w* \w beside|strong="H5973"\w* En Rogel; \w and|strong="H1121"\w* \w he|strong="H3605"\w* \w called|strong="H7121"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w brothers|strong="H1121"\w*, \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w servants|strong="H5650"\w*; +\v 10 \w but|strong="H3808"\w* \w he|strong="H3808"\w* didn’t \w call|strong="H7121"\w* \w Nathan|strong="H5416"\w* \w the|strong="H7121"\w* \w prophet|strong="H5030"\w*, \w and|strong="H5030"\w* \w Benaiah|strong="H1141"\w*, \w and|strong="H5030"\w* \w the|strong="H7121"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w*, \w and|strong="H5030"\w* \w Solomon|strong="H8010"\w* \w his|strong="H7121"\w* brother. +\p +\v 11 \w Then|strong="H8085"\w* \w Nathan|strong="H5416"\w* spoke \w to|strong="H8085"\w* \w Bathsheba|strong="H1339"\w* \w the|strong="H8085"\w* mother \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w*, saying, “Haven’t \w you|strong="H3588"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* Adonijah \w the|strong="H8085"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Haggith|strong="H2294"\w* \w reigns|strong="H4427"\w*, \w and|strong="H1121"\w* \w David|strong="H1732"\w* \w our|strong="H8085"\w* lord doesn’t \w know|strong="H3045"\w* \w it|strong="H3588"\w*? +\v 12 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w come|strong="H3212"\w*, \w please|strong="H4994"\w* \w let|strong="H4994"\w* \w me|strong="H4994"\w* \w give|strong="H3289"\w* \w you|strong="H3289"\w* \w counsel|strong="H6098"\w*, \w that|strong="H5315"\w* \w you|strong="H3289"\w* \w may|strong="H4994"\w* \w save|strong="H4422"\w* \w your|strong="H4994"\w* \w own|strong="H5315"\w* \w life|strong="H5315"\w* \w and|strong="H1121"\w* \w your|strong="H4994"\w* \w son|strong="H1121"\w* \w Solomon|strong="H8010"\w*’s \w life|strong="H5315"\w*. +\v 13 \w Go|strong="H3212"\w* \w in|strong="H3427"\w* \w to|strong="H3212"\w* \w King|strong="H4428"\w* \w David|strong="H1732"\w*, \w and|strong="H1121"\w* tell \w him|strong="H5921"\w*, ‘Didn’t \w you|strong="H3588"\w*, \w my|strong="H1732"\w* lord \w the|strong="H5921"\w* \w king|strong="H4428"\w*, \w swear|strong="H7650"\w* \w to|strong="H3212"\w* \w your|strong="H5921"\w* servant, saying, “\w Assuredly|strong="H3588"\w* \w Solomon|strong="H8010"\w* \w your|strong="H5921"\w* \w son|strong="H1121"\w* \w shall|strong="H1121"\w* \w reign|strong="H4427"\w* \w after|strong="H5921"\w* \w me|strong="H5921"\w*, \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w shall|strong="H1121"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w my|strong="H1732"\w* \w throne|strong="H3678"\w*”? \w Why|strong="H4069"\w* \w then|strong="H4428"\w* \w does|strong="H3808"\w* Adonijah \w reign|strong="H4427"\w*?’ +\v 14 \w Behold|strong="H2009"\w*,\f + \fr 1:14 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w while|strong="H5750"\w* \w you|strong="H5973"\w* \w are|strong="H1697"\w* \w still|strong="H5750"\w* \w talking|strong="H1696"\w* \w there|strong="H8033"\w* \w with|strong="H5973"\w* \w the|strong="H4390"\w* \w king|strong="H4428"\w*, \w I|strong="H2009"\w* \w will|strong="H4428"\w* \w also|strong="H5750"\w* \w come|strong="H4390"\w* \w in|strong="H4428"\w* \w after|strong="H2009"\w* \w you|strong="H5973"\w* \w and|strong="H4428"\w* \w confirm|strong="H4390"\w* \w your|strong="H4390"\w* \w words|strong="H1697"\w*.” +\p +\v 15 \w Bathsheba|strong="H1339"\w* \w went|strong="H4428"\w* \w in|strong="H4428"\w* \w to|strong="H4428"\w* \w the|strong="H8334"\w* \w king|strong="H4428"\w* \w in|strong="H4428"\w* \w his|strong="H4428"\w* \w room|strong="H2315"\w*. \w The|strong="H8334"\w* \w king|strong="H4428"\w* \w was|strong="H4428"\w* \w very|strong="H3966"\w* \w old|strong="H2204"\w*; \w and|strong="H4428"\w* Abishag \w the|strong="H8334"\w* \w Shunammite|strong="H7767"\w* \w was|strong="H4428"\w* \w serving|strong="H8334"\w* \w the|strong="H8334"\w* \w king|strong="H4428"\w*. +\v 16 \w Bathsheba|strong="H1339"\w* \w bowed|strong="H7812"\w* \w and|strong="H4428"\w* showed respect \w to|strong="H4428"\w* \w the|strong="H7812"\w* \w king|strong="H4428"\w*. \w The|strong="H7812"\w* \w king|strong="H4428"\w* said, “\w What|strong="H4100"\w* \w would|strong="H4100"\w* \w you|strong="H4100"\w* like?” +\p +\v 17 \w She|strong="H1931"\w* said \w to|strong="H3068"\w* \w him|strong="H5921"\w*, “\w My|strong="H3068"\w* \w lord|strong="H3068"\w*, \w you|strong="H3588"\w* \w swore|strong="H7650"\w* \w by|strong="H5921"\w* \w Yahweh|strong="H3068"\w*\f + \fr 1:17 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. \f* \w your|strong="H3068"\w* \w God|strong="H3068"\w*\f + \fr 1:17 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w to|strong="H3068"\w* \w your|strong="H3068"\w* servant, ‘\w Assuredly|strong="H3588"\w* \w Solomon|strong="H8010"\w* \w your|strong="H3068"\w* \w son|strong="H1121"\w* \w shall|strong="H3068"\w* \w reign|strong="H4427"\w* \w after|strong="H5921"\w* \w me|strong="H5921"\w*, \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w shall|strong="H3068"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w my|strong="H3068"\w* \w throne|strong="H3678"\w*.’ +\v 18 \w Now|strong="H6258"\w*, \w behold|strong="H2009"\w*, Adonijah \w reigns|strong="H4427"\w*; \w and|strong="H4428"\w* \w you|strong="H3045"\w*, \w my|strong="H3045"\w* lord \w the|strong="H3045"\w* \w king|strong="H4428"\w*, don’t \w know|strong="H3045"\w* \w it|strong="H3045"\w*. +\v 19 \w He|strong="H3605"\w* \w has|strong="H6635"\w* \w slain|strong="H2076"\w* \w cattle|strong="H6629"\w* \w and|strong="H1121"\w* \w fatlings|strong="H4806"\w* \w and|strong="H1121"\w* \w sheep|strong="H6629"\w* \w in|strong="H4428"\w* \w abundance|strong="H7230"\w*, \w and|strong="H1121"\w* \w has|strong="H6635"\w* \w called|strong="H7121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, Abiathar \w the|strong="H3605"\w* \w priest|strong="H3548"\w*, \w and|strong="H1121"\w* \w Joab|strong="H3097"\w* \w the|strong="H3605"\w* \w captain|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w*; \w but|strong="H3808"\w* \w he|strong="H3605"\w* hasn’t \w called|strong="H7121"\w* \w Solomon|strong="H8010"\w* \w your|strong="H3605"\w* \w servant|strong="H5650"\w*. +\v 20 \w You|strong="H3605"\w*, \w my|strong="H3605"\w* lord \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w the|strong="H3605"\w* \w eyes|strong="H5869"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w are|strong="H3478"\w* \w on|strong="H5921"\w* \w you|strong="H3605"\w*, \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w should|strong="H3478"\w* \w tell|strong="H5046"\w* \w them|strong="H5921"\w* \w who|strong="H4310"\w* \w will|strong="H4310"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w throne|strong="H3678"\w* \w of|strong="H4428"\w* \w my|strong="H3605"\w* lord \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w after|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 21 Otherwise \w it|strong="H1961"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w*, \w when|strong="H1961"\w* \w my|strong="H1961"\w* lord \w the|strong="H1961"\w* \w king|strong="H4428"\w* \w sleeps|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H1961"\w* fathers, \w that|strong="H4428"\w* \w I|strong="H1121"\w* \w and|strong="H1121"\w* \w my|strong="H1961"\w* \w son|strong="H1121"\w* \w Solomon|strong="H8010"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w considered|strong="H1961"\w* \w criminals|strong="H2400"\w*.” +\p +\v 22 \w Behold|strong="H2009"\w*, \w while|strong="H5750"\w* \w she|strong="H5973"\w* \w was|strong="H4428"\w* \w still|strong="H5750"\w* \w talking|strong="H1696"\w* \w with|strong="H5973"\w* \w the|strong="H1696"\w* \w king|strong="H4428"\w*, \w Nathan|strong="H5416"\w* \w the|strong="H1696"\w* \w prophet|strong="H5030"\w* \w came|strong="H4428"\w* \w in|strong="H4428"\w*. +\v 23 \w They|strong="H5921"\w* \w told|strong="H5046"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*, saying, “\w Behold|strong="H2009"\w*, \w Nathan|strong="H5416"\w* \w the|strong="H6440"\w* \w prophet|strong="H5030"\w*!” +\p \w When|strong="H5921"\w* \w he|strong="H5921"\w* \w had|strong="H4428"\w* come \w in|strong="H5921"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*, \w he|strong="H5921"\w* \w bowed|strong="H7812"\w* \w himself|strong="H7812"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w with|strong="H5921"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w* \w to|strong="H5921"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w*. +\v 24 \w Nathan|strong="H5416"\w* said, “\w My|strong="H5921"\w* lord, \w King|strong="H4428"\w*, \w have|strong="H4428"\w* \w you|strong="H5921"\w* said, ‘Adonijah \w shall|strong="H4428"\w* \w reign|strong="H4427"\w* \w after|strong="H5921"\w* \w me|strong="H5921"\w*, \w and|strong="H4428"\w* \w he|strong="H1931"\w* \w shall|strong="H4428"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w my|strong="H5921"\w* \w throne|strong="H3678"\w*’? +\v 25 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H6635"\w* \w gone|strong="H3381"\w* \w down|strong="H3381"\w* \w today|strong="H3117"\w*, \w and|strong="H1121"\w* \w has|strong="H6635"\w* \w slain|strong="H2076"\w* \w cattle|strong="H6629"\w*, \w fatlings|strong="H4806"\w*, \w and|strong="H1121"\w* \w sheep|strong="H6629"\w* \w in|strong="H4428"\w* \w abundance|strong="H7230"\w*, \w and|strong="H1121"\w* \w has|strong="H6635"\w* \w called|strong="H7121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w sons|strong="H1121"\w*, \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w*, \w and|strong="H1121"\w* Abiathar \w the|strong="H3605"\w* \w priest|strong="H3548"\w*. \w Behold|strong="H2009"\w*, \w they|strong="H3588"\w* \w are|strong="H3117"\w* eating \w and|strong="H1121"\w* \w drinking|strong="H8354"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, \w and|strong="H1121"\w* saying, ‘\w Long|strong="H3117"\w* \w live|strong="H2421"\w* \w King|strong="H4428"\w* Adonijah!’ +\v 26 \w But|strong="H3808"\w* \w he|strong="H3808"\w* hasn’t \w called|strong="H7121"\w* \w me|strong="H7121"\w*, \w even|strong="H3808"\w* \w me|strong="H7121"\w* \w your|strong="H3808"\w* \w servant|strong="H5650"\w*, \w Zadok|strong="H6659"\w* \w the|strong="H7121"\w* \w priest|strong="H3548"\w*, \w Benaiah|strong="H1141"\w* \w the|strong="H7121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w*, \w and|strong="H1121"\w* \w your|strong="H3808"\w* \w servant|strong="H5650"\w* \w Solomon|strong="H8010"\w*. +\v 27 \w Was|strong="H1961"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w done|strong="H1961"\w* \w by|strong="H5921"\w* \w my|strong="H5921"\w* lord \w the|strong="H5921"\w* \w king|strong="H4428"\w*, \w and|strong="H4428"\w* \w you|strong="H5921"\w* haven’t \w shown|strong="H3045"\w* \w to|strong="H1961"\w* \w your|strong="H5921"\w* \w servants|strong="H5650"\w* \w who|strong="H4310"\w* \w should|strong="H4310"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w throne|strong="H3678"\w* \w of|strong="H4428"\w* \w my|strong="H5921"\w* lord \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w after|strong="H5921"\w* \w him|strong="H5921"\w*?” +\p +\v 28 \w Then|strong="H6030"\w* \w King|strong="H4428"\w* \w David|strong="H1732"\w* \w answered|strong="H6030"\w*, “\w Call|strong="H7121"\w* \w Bathsheba|strong="H1339"\w* \w in|strong="H4428"\w* \w to|strong="H6440"\w* \w me|strong="H6440"\w*.” \w She|strong="H7121"\w* \w came|strong="H4428"\w* into \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w presence|strong="H6440"\w* \w and|strong="H6030"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*. +\v 29 \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w vowed|strong="H7650"\w* \w and|strong="H3068"\w* said, “\w As|strong="H5315"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H5315"\w*, \w who|strong="H3605"\w* \w has|strong="H3068"\w* \w redeemed|strong="H6299"\w* \w my|strong="H3605"\w* \w soul|strong="H5315"\w* \w out|strong="H3605"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w adversity|strong="H6869"\w*, +\v 30 \w most|strong="H3068"\w* \w certainly|strong="H3588"\w* \w as|strong="H3117"\w* \w I|strong="H3588"\w* \w swore|strong="H7650"\w* \w to|strong="H3478"\w* \w you|strong="H3588"\w* \w by|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, saying, ‘\w Assuredly|strong="H3588"\w* \w Solomon|strong="H8010"\w* \w your|strong="H3068"\w* \w son|strong="H1121"\w* \w shall|strong="H3068"\w* \w reign|strong="H4427"\w* \w after|strong="H5921"\w* \w me|strong="H5921"\w*, \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w shall|strong="H3068"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w my|strong="H3068"\w* \w throne|strong="H3678"\w* \w in|strong="H3427"\w* \w my|strong="H3068"\w* \w place|strong="H8478"\w*;’ \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w most|strong="H3068"\w* \w certainly|strong="H3588"\w* \w do|strong="H6213"\w* \w this|strong="H2088"\w* \w today|strong="H3117"\w*.” +\p +\v 31 \w Then|strong="H4428"\w* \w Bathsheba|strong="H1339"\w* \w bowed|strong="H7812"\w* \w with|strong="H4428"\w* her face \w to|strong="H4428"\w* \w the|strong="H7812"\w* earth \w and|strong="H4428"\w* showed respect \w to|strong="H4428"\w* \w the|strong="H7812"\w* \w king|strong="H4428"\w*, \w and|strong="H4428"\w* said, “Let \w my|strong="H1732"\w* lord \w King|strong="H4428"\w* \w David|strong="H1732"\w* \w live|strong="H2421"\w* \w forever|strong="H5769"\w*!” +\p +\v 32 \w King|strong="H4428"\w* \w David|strong="H1732"\w* \w said|strong="H7121"\w*, “\w Call|strong="H7121"\w* \w to|strong="H6440"\w* \w me|strong="H6440"\w* \w Zadok|strong="H6659"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w*, \w Nathan|strong="H5416"\w* \w the|strong="H6440"\w* \w prophet|strong="H5030"\w*, \w and|strong="H1121"\w* \w Benaiah|strong="H1141"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w*.” \w They|strong="H6440"\w* \w came|strong="H3548"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*. +\v 33 \w The|strong="H5921"\w* \w king|strong="H4428"\w* said \w to|strong="H3381"\w* \w them|strong="H5921"\w*, “\w Take|strong="H3947"\w* \w with|strong="H5973"\w* \w you|strong="H5921"\w* \w the|strong="H5921"\w* \w servants|strong="H5650"\w* \w of|strong="H1121"\w* \w your|strong="H3947"\w* lord, \w and|strong="H1121"\w* \w cause|strong="H7392"\w* \w Solomon|strong="H8010"\w* \w my|strong="H3947"\w* \w son|strong="H1121"\w* \w to|strong="H3381"\w* \w ride|strong="H7392"\w* \w on|strong="H5921"\w* \w my|strong="H3947"\w* \w own|strong="H5973"\w* \w mule|strong="H6506"\w*, \w and|strong="H1121"\w* \w bring|strong="H3947"\w* \w him|strong="H5921"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w Gihon|strong="H1521"\w*. +\v 34 Let \w Zadok|strong="H6659"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w* \w and|strong="H3478"\w* \w Nathan|strong="H5416"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w* \w anoint|strong="H4886"\w* \w him|strong="H5921"\w* \w there|strong="H8033"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*. \w Blow|strong="H8628"\w* \w the|strong="H5921"\w* \w trumpet|strong="H7782"\w*, \w and|strong="H3478"\w* \w say|strong="H3478"\w*, ‘\w Long|strong="H5921"\w* \w live|strong="H2421"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w*!’ +\v 35 \w Then|strong="H1961"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w after|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H3063"\w* \w he|strong="H1931"\w* \w shall|strong="H3478"\w* \w come|strong="H5927"\w* \w and|strong="H3063"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w my|strong="H5921"\w* \w throne|strong="H3678"\w*; \w for|strong="H5921"\w* \w he|strong="H1931"\w* \w shall|strong="H3478"\w* \w be|strong="H1961"\w* \w king|strong="H4427"\w* \w in|strong="H3427"\w* \w my|strong="H5921"\w* \w place|strong="H8478"\w*. \w I|strong="H5921"\w* \w have|strong="H1961"\w* \w appointed|strong="H6680"\w* \w him|strong="H5921"\w* \w to|strong="H3478"\w* \w be|strong="H1961"\w* \w prince|strong="H5057"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w over|strong="H5921"\w* \w Judah|strong="H3063"\w*.” +\p +\v 36 \w Benaiah|strong="H1141"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w* \w answered|strong="H6030"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w*, \w and|strong="H1121"\w* \w said|strong="H6030"\w*, “Amen. \w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w my|strong="H3068"\w* \w lord|strong="H3068"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w*, say \w so|strong="H3651"\w*. +\v 37 \w As|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w been|strong="H1961"\w* \w with|strong="H5973"\w* \w my|strong="H3068"\w* \w lord|strong="H3068"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w*, \w even|strong="H3651"\w* \w so|strong="H3651"\w* \w may|strong="H1961"\w* \w he|strong="H3651"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w Solomon|strong="H8010"\w*, \w and|strong="H3068"\w* \w make|strong="H1431"\w* \w his|strong="H3068"\w* \w throne|strong="H3678"\w* \w greater|strong="H1431"\w* \w than|strong="H4428"\w* \w the|strong="H3068"\w* \w throne|strong="H3678"\w* \w of|strong="H4428"\w* \w my|strong="H3068"\w* \w lord|strong="H3068"\w* \w King|strong="H4428"\w* \w David|strong="H1732"\w*.” +\p +\v 38 \w So|strong="H3381"\w* \w Zadok|strong="H6659"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w*, \w Nathan|strong="H5416"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w*, \w Benaiah|strong="H1141"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w*, \w and|strong="H1121"\w* \w the|strong="H5921"\w* Cherethites \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w Pelethites|strong="H6432"\w* \w went|strong="H3212"\w* \w down|strong="H3381"\w* \w and|strong="H1121"\w* \w had|strong="H1732"\w* \w Solomon|strong="H8010"\w* \w ride|strong="H7392"\w* \w on|strong="H5921"\w* \w King|strong="H4428"\w* \w David|strong="H1732"\w*’s \w mule|strong="H6506"\w*, \w and|strong="H1121"\w* \w brought|strong="H3381"\w* \w him|strong="H5921"\w* \w to|strong="H3381"\w* \w Gihon|strong="H1521"\w*. +\v 39 \w Zadok|strong="H6659"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w took|strong="H3947"\w* \w the|strong="H3605"\w* \w horn|strong="H7161"\w* \w of|strong="H4428"\w* \w oil|strong="H8081"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* Tent, \w and|strong="H4428"\w* \w anointed|strong="H4886"\w* \w Solomon|strong="H8010"\w*. \w They|strong="H5971"\w* \w blew|strong="H8628"\w* \w the|strong="H3605"\w* \w trumpet|strong="H7782"\w*; \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* said, “\w Long|strong="H3605"\w* \w live|strong="H2421"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w*!” +\p +\v 40 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w after|strong="H5927"\w* \w him|strong="H6963"\w*, \w and|strong="H1419"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w piped|strong="H2490"\w* \w with|strong="H5971"\w* \w pipes|strong="H2485"\w*, \w and|strong="H1419"\w* \w rejoiced|strong="H8056"\w* \w with|strong="H5971"\w* \w great|strong="H1419"\w* \w joy|strong="H8057"\w*, \w so|strong="H5927"\w* \w that|strong="H5971"\w* \w the|strong="H3605"\w* \w earth|strong="H5927"\w* \w shook|strong="H1234"\w* \w with|strong="H5971"\w* \w their|strong="H3605"\w* \w sound|strong="H6963"\w*. +\v 41 Adonijah \w and|strong="H6963"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w guests|strong="H7121"\w* \w who|strong="H3605"\w* \w were|strong="H1992"\w* \w with|strong="H8085"\w* \w him|strong="H7121"\w* \w heard|strong="H8085"\w* \w it|strong="H7121"\w* \w as|strong="H1992"\w* \w they|strong="H1992"\w* \w had|strong="H3097"\w* \w finished|strong="H3615"\w* eating. \w When|strong="H8085"\w* \w Joab|strong="H3097"\w* \w heard|strong="H8085"\w* \w the|strong="H3605"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H3605"\w* \w trumpet|strong="H7782"\w*, \w he|strong="H3605"\w* \w said|strong="H7121"\w*, “\w Why|strong="H4069"\w* \w is|strong="H3605"\w* \w this|strong="H7121"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H3605"\w* \w city|strong="H7151"\w* being \w in|strong="H8085"\w* \w an|strong="H7121"\w* \w uproar|strong="H1993"\w*?” +\p +\v 42 \w While|strong="H5750"\w* \w he|strong="H3588"\w* \w yet|strong="H5750"\w* \w spoke|strong="H1696"\w*, \w behold|strong="H2009"\w*, \w Jonathan|strong="H3129"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Abiathar \w the|strong="H3588"\w* \w priest|strong="H3548"\w* \w came|strong="H3548"\w*; \w and|strong="H1121"\w* Adonijah \w said|strong="H1696"\w*, “\w Come|strong="H5750"\w* \w in|strong="H1696"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H1121"\w* \w a|strong="H3068"\w* \w worthy|strong="H1121"\w* \w man|strong="H1121"\w*, \w and|strong="H1121"\w* \w bring|strong="H1319"\w* \w good|strong="H2896"\w* \w news|strong="H1319"\w*.” +\p +\v 43 \w Jonathan|strong="H3129"\w* \w answered|strong="H6030"\w* Adonijah, “\w Most|strong="H4428"\w* certainly \w our|strong="H1732"\w* lord \w King|strong="H4428"\w* \w David|strong="H1732"\w* \w has|strong="H4428"\w* \w made|strong="H4427"\w* \w Solomon|strong="H8010"\w* \w king|strong="H4428"\w*. +\v 44 \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w has|strong="H4428"\w* \w sent|strong="H7971"\w* \w with|strong="H5921"\w* \w him|strong="H5921"\w* \w Zadok|strong="H6659"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w*, \w Nathan|strong="H5416"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w*, \w Benaiah|strong="H1141"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w*, \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w Cherethites|strong="H3774"\w* \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w Pelethites|strong="H6432"\w*; \w and|strong="H1121"\w* \w they|strong="H5921"\w* \w have|strong="H1121"\w* caused \w him|strong="H5921"\w* \w to|strong="H7971"\w* \w ride|strong="H7392"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w mule|strong="H6506"\w*. +\v 45 \w Zadok|strong="H6659"\w* \w the|strong="H8085"\w* \w priest|strong="H3548"\w* \w and|strong="H4428"\w* \w Nathan|strong="H5416"\w* \w the|strong="H8085"\w* \w prophet|strong="H5030"\w* \w have|strong="H5030"\w* \w anointed|strong="H4886"\w* \w him|strong="H6963"\w* \w king|strong="H4428"\w* \w in|strong="H4428"\w* \w Gihon|strong="H1521"\w*. \w They|strong="H8033"\w* \w have|strong="H5030"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5927"\w* \w there|strong="H8033"\w* \w rejoicing|strong="H8056"\w*, \w so|strong="H5927"\w* \w that|strong="H8085"\w* \w the|strong="H8085"\w* \w city|strong="H7151"\w* \w rang|strong="H7151"\w* \w again|strong="H1949"\w*. \w This|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H8085"\w* \w noise|strong="H6963"\w* \w that|strong="H8085"\w* \w you|strong="H4886"\w* \w have|strong="H5030"\w* \w heard|strong="H8085"\w*. +\v 46 \w Also|strong="H1571"\w*, \w Solomon|strong="H8010"\w* \w sits|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w throne|strong="H3678"\w* \w of|strong="H3427"\w* \w the|strong="H5921"\w* \w kingdom|strong="H4410"\w*. +\v 47 \w Moreover|strong="H1571"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w servants|strong="H5650"\w* \w came|strong="H5650"\w* \w to|strong="H5921"\w* \w bless|strong="H1288"\w* \w our|strong="H5921"\w* lord \w King|strong="H4428"\w* \w David|strong="H1732"\w*, saying, ‘\w May|strong="H4428"\w* \w your|strong="H5921"\w* \w God|strong="H3190"\w* \w make|strong="H1431"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w better|strong="H3190"\w* \w than|strong="H5921"\w* \w your|strong="H5921"\w* \w name|strong="H8034"\w*, \w and|strong="H4428"\w* \w make|strong="H1431"\w* \w his|strong="H1732"\w* \w throne|strong="H3678"\w* \w greater|strong="H1431"\w* \w than|strong="H5921"\w* \w your|strong="H5921"\w* \w throne|strong="H3678"\w*;’ \w and|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w bowed|strong="H7812"\w* \w himself|strong="H7812"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w bed|strong="H4904"\w*. +\v 48 \w Also|strong="H1571"\w* \w thus|strong="H3602"\w* said \w the|strong="H5921"\w* \w king|strong="H4428"\w*, ‘\w Blessed|strong="H1288"\w* \w be|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w one|strong="H7200"\w* \w to|strong="H3478"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w my|strong="H5414"\w* \w throne|strong="H3678"\w* \w today|strong="H3117"\w*, \w my|strong="H5414"\w* \w eyes|strong="H5869"\w* \w even|strong="H1571"\w* \w seeing|strong="H7200"\w* \w it|strong="H5414"\w*.’” +\p +\v 49 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w guests|strong="H7121"\w* \w of|strong="H1870"\w* Adonijah \w were|strong="H1870"\w* \w afraid|strong="H2729"\w*, \w and|strong="H6965"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w*, \w and|strong="H6965"\w* \w each|strong="H3605"\w* \w man|strong="H3605"\w* \w went|strong="H3212"\w* \w his|strong="H3605"\w* \w way|strong="H1870"\w*. +\v 50 Adonijah \w was|strong="H8010"\w* \w afraid|strong="H3372"\w* \w because|strong="H6440"\w* \w of|strong="H6440"\w* \w Solomon|strong="H8010"\w*; \w and|strong="H6965"\w* \w he|strong="H8010"\w* \w arose|strong="H6965"\w*, \w and|strong="H6965"\w* \w went|strong="H3212"\w*, \w and|strong="H6965"\w* hung onto \w the|strong="H6440"\w* \w horns|strong="H7161"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w*. +\v 51 \w Solomon|strong="H8010"\w* \w was|strong="H3117"\w* \w told|strong="H5046"\w*, “\w Behold|strong="H2009"\w*, Adonijah \w fears|strong="H3372"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w*; \w for|strong="H4196"\w*, \w behold|strong="H2009"\w*, \w he|strong="H3117"\w* \w is|strong="H3117"\w* hanging onto \w the|strong="H3117"\w* \w horns|strong="H7161"\w* \w of|strong="H4428"\w* \w the|strong="H3117"\w* \w altar|strong="H4196"\w*, saying, ‘\w Let|strong="H5046"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w swear|strong="H7650"\w* \w to|strong="H4191"\w* \w me|strong="H5046"\w* \w first|strong="H3117"\w* \w that|strong="H3117"\w* \w he|strong="H3117"\w* \w will|strong="H4428"\w* \w not|strong="H3372"\w* \w kill|strong="H4191"\w* \w his|strong="H5046"\w* \w servant|strong="H5650"\w* \w with|strong="H3117"\w* \w the|strong="H3117"\w* \w sword|strong="H2719"\w*.’” +\p +\v 52 \w Solomon|strong="H8010"\w* said, “\w If|strong="H1961"\w* \w he|strong="H3808"\w* shows \w himself|strong="H5307"\w* \w a|strong="H3068"\w* \w worthy|strong="H1121"\w* \w man|strong="H1121"\w*, \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w hair|strong="H8185"\w* \w of|strong="H1121"\w* \w his|strong="H1961"\w* \w shall|strong="H1121"\w* \w fall|strong="H5307"\w* \w to|strong="H4191"\w* \w the|strong="H1961"\w* earth; \w but|strong="H3808"\w* \w if|strong="H1961"\w* \w wickedness|strong="H7451"\w* \w is|strong="H7451"\w* \w found|strong="H4672"\w* \w in|strong="H4191"\w* \w him|strong="H4672"\w*, \w he|strong="H3808"\w* \w shall|strong="H1121"\w* \w die|strong="H4191"\w*.” +\p +\v 53 \w So|strong="H7971"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w sent|strong="H7971"\w*, \w and|strong="H7971"\w* \w they|strong="H5921"\w* \w brought|strong="H3381"\w* \w him|strong="H5921"\w* \w down|strong="H3381"\w* \w from|strong="H3381"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*. \w He|strong="H1004"\w* \w came|strong="H3381"\w* \w and|strong="H7971"\w* \w bowed|strong="H7812"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w*; \w and|strong="H7971"\w* \w Solomon|strong="H8010"\w* said \w to|strong="H3381"\w* \w him|strong="H5921"\w*, “\w Go|strong="H3212"\w* \w to|strong="H3381"\w* \w your|strong="H5921"\w* \w house|strong="H1004"\w*.” +\c 2 +\p +\v 1 \w Now|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w* \w came|strong="H7126"\w* \w near|strong="H7126"\w* \w that|strong="H3117"\w* \w he|strong="H3117"\w* \w should|strong="H3117"\w* \w die|strong="H4191"\w*; \w and|strong="H1121"\w* \w he|strong="H3117"\w* \w commanded|strong="H6680"\w* \w Solomon|strong="H8010"\w* \w his|strong="H1732"\w* \w son|strong="H1121"\w*, saying, +\v 2 “\w I|strong="H1980"\w* \w am|strong="H1961"\w* \w going|strong="H1980"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth. \w You|strong="H3605"\w* \w be|strong="H1961"\w* \w strong|strong="H2388"\w* \w therefore|strong="H1961"\w*, \w and|strong="H1980"\w* \w show|strong="H2388"\w* yourself \w a|strong="H3068"\w* \w man|strong="H3605"\w*; +\v 3 \w and|strong="H4872"\w* \w keep|strong="H8104"\w* \w the|strong="H3605"\w* \w instruction|strong="H8451"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w to|strong="H3068"\w* \w walk|strong="H3212"\w* \w in|strong="H3068"\w* \w his|strong="H3605"\w* \w ways|strong="H1870"\w*, \w to|strong="H3068"\w* \w keep|strong="H8104"\w* \w his|strong="H3605"\w* \w statutes|strong="H2708"\w*, \w his|strong="H3605"\w* \w commandments|strong="H4687"\w*, \w his|strong="H3605"\w* \w ordinances|strong="H4941"\w*, \w and|strong="H4872"\w* \w his|strong="H3605"\w* \w testimonies|strong="H5715"\w*, \w according|strong="H4941"\w* \w to|strong="H3068"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w written|strong="H3789"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w of|strong="H3068"\w* \w Moses|strong="H4872"\w*, \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w may|strong="H3068"\w* \w prosper|strong="H7919"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w do|strong="H6213"\w* \w and|strong="H4872"\w* \w wherever|strong="H3605"\w* \w you|strong="H3605"\w* \w turn|strong="H6437"\w* \w yourself|strong="H6213"\w*. +\v 4 \w Then|strong="H6965"\w* \w Yahweh|strong="H3068"\w* \w may|strong="H3068"\w* \w establish|strong="H6965"\w* \w his|strong="H3605"\w* \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w spoke|strong="H1696"\w* \w concerning|strong="H5921"\w* \w me|strong="H6440"\w*, \w saying|strong="H1697"\w*, ‘\w If|strong="H1121"\w* \w your|strong="H3068"\w* \w children|strong="H1121"\w* \w are|strong="H1121"\w* \w careful|strong="H8104"\w* \w of|strong="H1121"\w* \w their|strong="H3605"\w* \w way|strong="H1870"\w*, \w to|strong="H1696"\w* \w walk|strong="H3212"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w in|strong="H5921"\w* \w truth|strong="H3808"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w heart|strong="H3824"\w* \w and|strong="H1121"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w soul|strong="H5315"\w*, \w there|strong="H3605"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w fail|strong="H3772"\w* \w you|strong="H6440"\w*,’ \w he|strong="H3068"\w* \w said|strong="H1696"\w*, ‘\w a|strong="H3068"\w* \w man|strong="H1121"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w throne|strong="H3678"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*.’ +\p +\v 5 “\w Moreover|strong="H1571"\w* \w you|strong="H5414"\w* \w know|strong="H3045"\w* \w also|strong="H1571"\w* \w what|strong="H3045"\w* \w Joab|strong="H3097"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w* \w did|strong="H6213"\w* \w to|strong="H3478"\w* \w me|strong="H5414"\w*, \w even|strong="H1571"\w* \w what|strong="H3045"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w* \w to|strong="H3478"\w* \w the|strong="H5414"\w* \w two|strong="H8147"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w armies|strong="H6635"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* Abner \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ner|strong="H5369"\w* \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w Amasa|strong="H6021"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jether|strong="H3500"\w*, whom \w he|strong="H6213"\w* \w killed|strong="H2026"\w*, \w and|strong="H1121"\w* \w shed|strong="H7760"\w* \w the|strong="H5414"\w* \w blood|strong="H1818"\w* \w of|strong="H1121"\w* \w war|strong="H4421"\w* \w in|strong="H3478"\w* \w peace|strong="H7965"\w*, \w and|strong="H1121"\w* \w put|strong="H5414"\w* \w the|strong="H5414"\w* \w blood|strong="H1818"\w* \w of|strong="H1121"\w* \w war|strong="H4421"\w* \w on|strong="H7760"\w* \w his|strong="H5414"\w* sash \w that|strong="H3045"\w* \w was|strong="H3478"\w* around \w his|strong="H5414"\w* \w waist|strong="H4975"\w* \w and|strong="H1121"\w* \w in|strong="H3478"\w* \w his|strong="H5414"\w* \w sandals|strong="H5275"\w* \w that|strong="H3045"\w* \w were|strong="H3478"\w* \w on|strong="H7760"\w* \w his|strong="H5414"\w* \w feet|strong="H7272"\w*. +\v 6 \w Do|strong="H6213"\w* \w therefore|strong="H6213"\w* according \w to|strong="H3381"\w* \w your|strong="H6213"\w* \w wisdom|strong="H2451"\w*, \w and|strong="H2451"\w* don’t \w let|strong="H3381"\w* \w his|strong="H6213"\w* \w gray|strong="H7872"\w* \w head|strong="H7872"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w Sheol|strong="H7585"\w*\f + \fr 2:6 \ft Sheol is the place of the dead.\f* \w in|strong="H6213"\w* \w peace|strong="H7965"\w*. +\v 7 \w But|strong="H3588"\w* \w show|strong="H6213"\w* \w kindness|strong="H2617"\w* \w to|strong="H1961"\w* \w the|strong="H6440"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Barzillai|strong="H1271"\w* \w the|strong="H6440"\w* \w Gileadite|strong="H1569"\w*, \w and|strong="H1121"\w* \w let|strong="H3651"\w* \w them|strong="H6440"\w* \w be|strong="H1961"\w* among \w those|strong="H1121"\w* \w who|strong="H1121"\w* eat \w at|strong="H6213"\w* \w your|strong="H6440"\w* \w table|strong="H7979"\w*; \w for|strong="H3588"\w* \w so|strong="H3651"\w* \w they|strong="H3588"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w me|strong="H6440"\w* \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w fled|strong="H1272"\w* \w from|strong="H6440"\w* Absalom \w your|strong="H6440"\w* brother. +\p +\v 8 “\w Behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w is|strong="H3068"\w* \w with|strong="H5973"\w* \w you|strong="H3117"\w* \w Shimei|strong="H8096"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Gera|strong="H1617"\w*, \w the|strong="H3068"\w* \w Benjamite|strong="H1145"\w* \w of|strong="H1121"\w* Bahurim, \w who|strong="H1931"\w* \w cursed|strong="H7043"\w* \w me|strong="H5973"\w* \w with|strong="H5973"\w* \w a|strong="H3068"\w* \w grievous|strong="H4834"\w* \w curse|strong="H7045"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w when|strong="H3117"\w* \w I|strong="H3117"\w* \w went|strong="H3212"\w* \w to|strong="H3381"\w* \w Mahanaim|strong="H4266"\w*; \w but|strong="H2009"\w* \w he|strong="H1931"\w* \w came|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w meet|strong="H7125"\w* \w me|strong="H5973"\w* \w at|strong="H3068"\w* \w the|strong="H3068"\w* \w Jordan|strong="H3383"\w*, \w and|strong="H1121"\w* \w I|strong="H3117"\w* \w swore|strong="H7650"\w* \w to|strong="H3381"\w* \w him|strong="H5973"\w* \w by|strong="H7650"\w* \w Yahweh|strong="H3068"\w*, saying, ‘\w I|strong="H3117"\w* \w will|strong="H3068"\w* \w not|strong="H4191"\w* \w put|strong="H4191"\w* \w you|strong="H3117"\w* \w to|strong="H3381"\w* \w death|strong="H4191"\w* \w with|strong="H5973"\w* \w the|strong="H3068"\w* \w sword|strong="H2719"\w*.’ +\v 9 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* don’t \w hold|strong="H6213"\w* \w him|strong="H6213"\w* \w guiltless|strong="H5352"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H2450"\w* \w a|strong="H3068"\w* \w wise|strong="H2450"\w* \w man|strong="H2450"\w*; \w and|strong="H1818"\w* \w you|strong="H3588"\w* \w will|strong="H2450"\w* \w know|strong="H3045"\w* \w what|strong="H3045"\w* \w you|strong="H3588"\w* ought \w to|strong="H3381"\w* \w do|strong="H6213"\w* \w to|strong="H3381"\w* \w him|strong="H6213"\w*, \w and|strong="H1818"\w* \w you|strong="H3588"\w* \w shall|strong="H1818"\w* \w bring|strong="H3381"\w* \w his|strong="H3045"\w* \w gray|strong="H7872"\w* \w head|strong="H7872"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w Sheol|strong="H7585"\w*\f + \fr 2:9 \ft Sheol is the place of the dead.\f* \w with|strong="H6213"\w* \w blood|strong="H1818"\w*.” +\p +\v 10 \w David|strong="H1732"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* fathers, \w and|strong="H5892"\w* \w was|strong="H1732"\w* \w buried|strong="H6912"\w* \w in|strong="H6912"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*. +\v 11 \w The|strong="H5921"\w* \w days|strong="H3117"\w* \w that|strong="H3117"\w* \w David|strong="H1732"\w* \w reigned|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* forty \w years|strong="H8141"\w*; \w he|strong="H3117"\w* \w reigned|strong="H4427"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Hebron|strong="H2275"\w*, \w and|strong="H3478"\w* \w he|strong="H3117"\w* \w reigned|strong="H4427"\w* \w thirty-three|strong="H7970"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. +\v 12 \w Solomon|strong="H8010"\w* \w sat|strong="H3427"\w* \w on|strong="H5921"\w* \w David|strong="H1732"\w* \w his|strong="H1732"\w* father’s \w throne|strong="H3678"\w*; \w and|strong="H4428"\w* \w his|strong="H1732"\w* \w kingdom|strong="H4428"\w* \w was|strong="H1732"\w* \w firmly|strong="H3559"\w* \w established|strong="H3559"\w*. +\p +\v 13 \w Then|strong="H8010"\w* Adonijah \w the|strong="H8010"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Haggith|strong="H2294"\w* came \w to|strong="H1121"\w* \w Bathsheba|strong="H1339"\w* \w the|strong="H8010"\w* mother \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w*. She said, “Do you come \w peaceably|strong="H7965"\w*?” +\p \w He|strong="H8010"\w* said, “\w Peaceably|strong="H7965"\w*. +\v 14 \w He|strong="H1696"\w* \w said|strong="H1696"\w* \w moreover|strong="H1696"\w*, \w I|strong="H1697"\w* \w have|strong="H1697"\w* \w something|strong="H1697"\w* \w to|strong="H1696"\w* \w tell|strong="H1696"\w* \w you|strong="H1696"\w*.” +\p She \w said|strong="H1696"\w*, “\w Say|strong="H1696"\w* \w on|strong="H1696"\w*.” +\p +\v 15 \w He|strong="H3588"\w* said, “\w You|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w kingdom|strong="H4410"\w* \w was|strong="H3068"\w* \w mine|strong="H7760"\w*, \w and|strong="H3478"\w* \w that|strong="H3588"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w set|strong="H7760"\w* \w their|strong="H3605"\w* \w faces|strong="H6440"\w* \w on|strong="H5921"\w* \w me|strong="H6440"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w should|strong="H3068"\w* \w reign|strong="H4427"\w*. \w However|strong="H3588"\w*, \w the|strong="H3605"\w* \w kingdom|strong="H4410"\w* \w is|strong="H3068"\w* \w turned|strong="H5437"\w* \w around|strong="H5437"\w*, \w and|strong="H3478"\w* \w has|strong="H3068"\w* \w become|strong="H1961"\w* \w my|strong="H3605"\w* brother’s; \w for|strong="H3588"\w* \w it|strong="H7760"\w* \w was|strong="H3068"\w* \w his|strong="H3605"\w* \w from|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 16 \w Now|strong="H6258"\w* \w I|strong="H6258"\w* \w ask|strong="H7592"\w* \w one|strong="H7596"\w* \w petition|strong="H7596"\w* \w of|strong="H6440"\w* \w you|strong="H6440"\w*. Don’t \w deny|strong="H7725"\w* \w me|strong="H6440"\w*.” +\p \w She|strong="H6440"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H6440"\w*, “\w Say|strong="H1696"\w* \w on|strong="H1696"\w*.” +\p +\v 17 \w He|strong="H3588"\w* said, “\w Please|strong="H4994"\w* speak \w to|strong="H7725"\w* \w Solomon|strong="H8010"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* (\w for|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H4428"\w* \w not|strong="H3808"\w* \w tell|strong="H4994"\w* \w you|strong="H3588"\w* ‘\w no|strong="H3808"\w*’), \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w give|strong="H5414"\w* \w me|strong="H5414"\w* Abishag \w the|strong="H6440"\w* \w Shunammite|strong="H7767"\w* \w as|strong="H3588"\w* wife.” +\p +\v 18 \w Bathsheba|strong="H1339"\w* \w said|strong="H1696"\w*, “\w All|strong="H5921"\w* \w right|strong="H1696"\w*. \w I|strong="H5921"\w* \w will|strong="H4428"\w* \w speak|strong="H1696"\w* \w for|strong="H5921"\w* \w you|strong="H5921"\w* \w to|strong="H1696"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*.” +\p +\v 19 \w Bathsheba|strong="H1339"\w* \w therefore|strong="H5921"\w* \w went|strong="H4428"\w* \w to|strong="H1696"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w*, \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5921"\w* \w for|strong="H5921"\w* Adonijah. \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w to|strong="H1696"\w* \w meet|strong="H7125"\w* \w her|strong="H5921"\w* \w and|strong="H6965"\w* \w bowed|strong="H7812"\w* \w himself|strong="H7812"\w* \w to|strong="H1696"\w* \w her|strong="H5921"\w*, \w and|strong="H6965"\w* \w sat|strong="H3427"\w* \w down|strong="H7812"\w* \w on|strong="H5921"\w* \w his|strong="H7760"\w* \w throne|strong="H3678"\w* \w and|strong="H6965"\w* \w caused|strong="H6965"\w* \w a|strong="H3068"\w* \w throne|strong="H3678"\w* \w to|strong="H1696"\w* \w be|strong="H4428"\w* \w set|strong="H7760"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s mother; \w and|strong="H6965"\w* \w she|strong="H5921"\w* \w sat|strong="H3427"\w* \w on|strong="H5921"\w* \w his|strong="H7760"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w*. +\v 20 \w Then|strong="H7725"\w* \w she|strong="H3588"\w* said, “\w I|strong="H3588"\w* \w ask|strong="H7592"\w* \w one|strong="H3808"\w* \w small|strong="H6996"\w* \w petition|strong="H7596"\w* \w of|strong="H4428"\w* \w you|strong="H3588"\w*; don’t \w deny|strong="H7725"\w* \w me|strong="H6440"\w*.” +\p \w The|strong="H6440"\w* \w king|strong="H4428"\w* said \w to|strong="H7725"\w* \w her|strong="H7592"\w*, “\w Ask|strong="H7592"\w* \w on|strong="H6440"\w*, \w my|strong="H7725"\w* mother, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H4428"\w* \w not|strong="H3808"\w* \w deny|strong="H7725"\w* \w you|strong="H3588"\w*.” +\p +\v 21 She said, “\w Let|strong="H5414"\w* Abishag \w the|strong="H5414"\w* \w Shunammite|strong="H7767"\w* \w be|strong="H5414"\w* \w given|strong="H5414"\w* \w to|strong="H5414"\w* Adonijah \w your|strong="H5414"\w* brother \w as|strong="H5414"\w* wife.” +\p +\v 22 \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w answered|strong="H6030"\w* \w his|strong="H8010"\w* mother, “\w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H3588"\w* \w ask|strong="H7592"\w* Abishag \w the|strong="H3588"\w* \w Shunammite|strong="H7767"\w* \w for|strong="H3588"\w* Adonijah? \w Ask|strong="H7592"\w* \w for|strong="H3588"\w* \w him|strong="H1931"\w* \w the|strong="H3588"\w* \w kingdom|strong="H4410"\w* \w also|strong="H4428"\w*, \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w my|strong="H3588"\w* \w elder|strong="H1419"\w* brother; \w even|strong="H3588"\w* \w for|strong="H3588"\w* \w him|strong="H1931"\w*, \w and|strong="H1121"\w* \w for|strong="H3588"\w* Abiathar \w the|strong="H3588"\w* \w priest|strong="H3548"\w*, \w and|strong="H1121"\w* \w for|strong="H3588"\w* \w Joab|strong="H3097"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w*.” +\v 23 \w Then|strong="H1696"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w swore|strong="H7650"\w* \w by|strong="H7650"\w* \w Yahweh|strong="H3068"\w*, \w saying|strong="H1697"\w*, “\w God|strong="H3068"\w* \w do|strong="H6213"\w* \w so|strong="H6213"\w* \w to|strong="H1696"\w* \w me|strong="H5315"\w*, \w and|strong="H3068"\w* \w more|strong="H3254"\w* \w also|strong="H3068"\w*, \w if|strong="H3588"\w* Adonijah \w has|strong="H3068"\w* \w not|strong="H6213"\w* \w spoken|strong="H1696"\w* \w this|strong="H2088"\w* \w word|strong="H1697"\w* \w against|strong="H1696"\w* \w his|strong="H3068"\w* \w own|strong="H5315"\w* \w life|strong="H5315"\w*. +\v 24 \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* \w as|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*, \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w established|strong="H3559"\w* \w me|strong="H5921"\w* \w and|strong="H3068"\w* \w set|strong="H3427"\w* \w me|strong="H5921"\w* \w on|strong="H5921"\w* \w my|strong="H3068"\w* father \w David|strong="H1732"\w*’s \w throne|strong="H3678"\w*, \w and|strong="H3068"\w* \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w made|strong="H6213"\w* \w me|strong="H5921"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w as|strong="H3117"\w* \w he|strong="H3588"\w* \w promised|strong="H1696"\w*, \w surely|strong="H4191"\w* Adonijah \w shall|strong="H3068"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H1696"\w* \w death|strong="H4191"\w* \w today|strong="H3117"\w*.” +\p +\v 25 \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w sent|strong="H7971"\w* \w Benaiah|strong="H1141"\w* \w the|strong="H7971"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w*; \w and|strong="H1121"\w* \w he|strong="H3027"\w* \w fell|strong="H6293"\w* \w on|strong="H3027"\w* \w him|strong="H7971"\w*, \w so|strong="H7971"\w* \w that|strong="H4428"\w* \w he|strong="H3027"\w* \w died|strong="H4191"\w*. +\v 26 \w To|strong="H4191"\w* Abiathar \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* said, “\w Go|strong="H3212"\w* \w to|strong="H4191"\w* \w Anathoth|strong="H6068"\w*, \w to|strong="H4191"\w* \w your|strong="H3605"\w* \w own|strong="H3548"\w* \w fields|strong="H7704"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H3117"\w* worthy \w of|strong="H4428"\w* \w death|strong="H4194"\w*. \w But|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H4428"\w* \w not|strong="H3808"\w* \w at|strong="H5921"\w* \w this|strong="H2088"\w* \w time|strong="H3117"\w* \w put|strong="H4191"\w* \w you|strong="H3588"\w* \w to|strong="H4191"\w* \w death|strong="H4194"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w bore|strong="H5375"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w*\f + \fr 2:26 \ft The word translated “Lord” is “Adonai.”\f* \w Yahweh|strong="H3068"\w*’s ark \w before|strong="H6440"\w* \w David|strong="H1732"\w* \w my|strong="H3605"\w* father, \w and|strong="H4428"\w* \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w were|strong="H3117"\w* \w afflicted|strong="H6031"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w in|strong="H5921"\w* \w which|strong="H3548"\w* \w my|strong="H3605"\w* father \w was|strong="H1732"\w* \w afflicted|strong="H6031"\w*.” +\v 27 \w So|strong="H1961"\w* \w Solomon|strong="H8010"\w* \w thrust|strong="H8010"\w* Abiathar \w out|strong="H1644"\w* \w from|strong="H5921"\w* \w being|strong="H1961"\w* \w priest|strong="H3548"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*, \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w might|strong="H3068"\w* \w fulfill|strong="H4390"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w spoke|strong="H1696"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Eli|strong="H5941"\w* \w in|strong="H5921"\w* \w Shiloh|strong="H7887"\w*. +\p +\v 28 \w This|strong="H3588"\w* \w news|strong="H8052"\w* \w came|strong="H3068"\w* \w to|strong="H5704"\w* \w Joab|strong="H3097"\w*; \w for|strong="H3588"\w* \w Joab|strong="H3097"\w* \w had|strong="H3068"\w* \w followed|strong="H5186"\w* Adonijah, \w although|strong="H3588"\w* \w he|strong="H3588"\w* didn’t \w follow|strong="H3068"\w* Absalom. \w Joab|strong="H3097"\w* \w fled|strong="H5127"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w*’s Tent, \w and|strong="H3068"\w* \w held|strong="H2388"\w* onto \w the|strong="H3588"\w* \w horns|strong="H7161"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w altar|strong="H4196"\w*. +\v 29 \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w was|strong="H3068"\w* \w told|strong="H5046"\w*, “\w Joab|strong="H3097"\w* \w has|strong="H3068"\w* \w fled|strong="H5127"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s Tent; \w and|strong="H1121"\w* \w behold|strong="H2009"\w*, \w he|strong="H3588"\w* \w is|strong="H3068"\w* \w by|strong="H3068"\w* \w the|strong="H3588"\w* \w altar|strong="H4196"\w*.” \w Then|strong="H2009"\w* \w Solomon|strong="H8010"\w* \w sent|strong="H7971"\w* \w Benaiah|strong="H1141"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w*, saying, “\w Go|strong="H3212"\w*, \w fall|strong="H6293"\w* \w on|strong="H3068"\w* \w him|strong="H7971"\w*.” +\p +\v 30 \w Benaiah|strong="H1141"\w* \w came|strong="H3318"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*’s Tent, \w and|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H7725"\w*, “\w The|strong="H3588"\w* \w king|strong="H4428"\w* \w says|strong="H3541"\w*, ‘\w Come|strong="H3318"\w* \w out|strong="H3318"\w*!’” +\p \w He|strong="H3588"\w* \w said|strong="H1696"\w*, “\w No|strong="H3808"\w*; \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w die|strong="H4191"\w* \w here|strong="H6311"\w*.” +\p \w Benaiah|strong="H1141"\w* \w brought|strong="H3318"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w word|strong="H1697"\w* \w again|strong="H7725"\w*, \w saying|strong="H1697"\w*, “\w This|strong="H3541"\w* \w is|strong="H3068"\w* \w what|strong="H1697"\w* \w Joab|strong="H3097"\w* \w said|strong="H1696"\w*, \w and|strong="H3068"\w* \w this|strong="H3541"\w* \w is|strong="H3068"\w* \w how|strong="H3588"\w* \w he|strong="H3588"\w* \w answered|strong="H6030"\w* \w me|strong="H7725"\w*.” +\p +\v 31 \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5921"\w*, “\w Do|strong="H6213"\w* \w as|strong="H6213"\w* \w he|strong="H6213"\w* \w has|strong="H4428"\w* \w said|strong="H1696"\w*, \w and|strong="H4428"\w* \w fall|strong="H6293"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H4428"\w* \w bury|strong="H6912"\w* \w him|strong="H5921"\w*, \w that|strong="H4428"\w* \w you|strong="H5921"\w* \w may|strong="H4428"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w*, \w which|strong="H1004"\w* \w Joab|strong="H3097"\w* \w shed|strong="H8210"\w* \w without|strong="H2600"\w* \w cause|strong="H2600"\w*, \w from|strong="H5493"\w* \w me|strong="H5921"\w* \w and|strong="H4428"\w* \w from|strong="H5493"\w* \w my|strong="H5921"\w* father’s \w house|strong="H1004"\w*. +\v 32 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w return|strong="H7725"\w* \w his|strong="H3068"\w* \w blood|strong="H1818"\w* \w on|strong="H5921"\w* \w his|strong="H3068"\w* own \w head|strong="H7218"\w*, \w because|strong="H5921"\w* \w he|strong="H3068"\w* \w fell|strong="H6293"\w* \w on|strong="H5921"\w* \w two|strong="H8147"\w* \w men|strong="H1121"\w* \w more|strong="H4480"\w* \w righteous|strong="H6662"\w* \w and|strong="H1121"\w* \w better|strong="H2896"\w* \w than|strong="H4480"\w* \w he|strong="H3068"\w*, \w and|strong="H1121"\w* \w killed|strong="H2026"\w* \w them|strong="H5921"\w* \w with|strong="H3068"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w*, \w and|strong="H1121"\w* \w my|strong="H3068"\w* \w father|strong="H1121"\w* \w David|strong="H1732"\w* didn’t \w know|strong="H3045"\w* \w it|strong="H5921"\w*: Abner \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ner|strong="H5369"\w*, \w captain|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w army|strong="H6635"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w Amasa|strong="H6021"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jether|strong="H3500"\w*, \w captain|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w army|strong="H6635"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*. +\v 33 \w So|strong="H1961"\w* \w their|strong="H3068"\w* \w blood|strong="H1818"\w* \w will|strong="H3068"\w* \w return|strong="H7725"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w head|strong="H7218"\w* \w of|strong="H1004"\w* \w Joab|strong="H3097"\w* \w and|strong="H3068"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w head|strong="H7218"\w* \w of|strong="H1004"\w* \w his|strong="H3068"\w* \w offspring|strong="H2233"\w*\f + \fr 2:33 \ft or, seed\f* \w forever|strong="H5769"\w*. \w But|strong="H1961"\w* \w for|strong="H5704"\w* \w David|strong="H1732"\w*, \w for|strong="H5704"\w* \w his|strong="H3068"\w* \w offspring|strong="H2233"\w*, \w for|strong="H5704"\w* \w his|strong="H3068"\w* \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w for|strong="H5704"\w* \w his|strong="H3068"\w* \w throne|strong="H3678"\w*, \w there|strong="H1961"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w peace|strong="H7965"\w* \w forever|strong="H5769"\w* \w from|strong="H7725"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 34 \w Then|strong="H5927"\w* \w Benaiah|strong="H1141"\w* \w the|strong="H5927"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H1121"\w* \w fell|strong="H6293"\w* \w on|strong="H5927"\w* \w him|strong="H4191"\w*, \w and|strong="H1121"\w* \w killed|strong="H4191"\w* \w him|strong="H4191"\w*; \w and|strong="H1121"\w* \w he|strong="H1004"\w* \w was|strong="H1004"\w* \w buried|strong="H6912"\w* \w in|strong="H1004"\w* \w his|strong="H6912"\w* own \w house|strong="H1004"\w* \w in|strong="H1004"\w* \w the|strong="H5927"\w* \w wilderness|strong="H4057"\w*. +\v 35 \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w put|strong="H5414"\w* \w Benaiah|strong="H1141"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w* \w in|strong="H5921"\w* \w his|strong="H5414"\w* \w place|strong="H8478"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w army|strong="H6635"\w*; \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w put|strong="H5414"\w* \w Zadok|strong="H6659"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w place|strong="H8478"\w* \w of|strong="H1121"\w* Abiathar. +\p +\v 36 \w The|strong="H1129"\w* \w king|strong="H4428"\w* \w sent|strong="H7971"\w* \w and|strong="H7971"\w* \w called|strong="H7121"\w* \w for|strong="H7121"\w* \w Shimei|strong="H8096"\w*, \w and|strong="H7971"\w* \w said|strong="H7121"\w* \w to|strong="H3318"\w* \w him|strong="H7121"\w*, “\w Build|strong="H1129"\w* \w yourself|strong="H8033"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H7971"\w* \w live|strong="H3427"\w* \w there|strong="H8033"\w*, \w and|strong="H7971"\w* don’t \w go|strong="H3318"\w* anywhere \w else|strong="H3808"\w*. +\v 37 \w For|strong="H3588"\w* \w on|strong="H3117"\w* \w the|strong="H3588"\w* \w day|strong="H3117"\w* \w you|strong="H3588"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H3117"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H3588"\w* \w brook|strong="H5158"\w* \w Kidron|strong="H6939"\w*, \w know|strong="H3045"\w* \w for|strong="H3588"\w* \w certain|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H1961"\w* \w surely|strong="H4191"\w* \w die|strong="H4191"\w*. \w Your|strong="H3045"\w* \w blood|strong="H1818"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w on|strong="H3117"\w* \w your|strong="H3045"\w* \w own|strong="H1961"\w* \w head|strong="H7218"\w*.” +\p +\v 38 \w Shimei|strong="H8096"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w*, “\w What|strong="H1697"\w* \w you|strong="H3117"\w* \w say|strong="H1696"\w* \w is|strong="H3117"\w* \w good|strong="H2896"\w*. \w As|strong="H1697"\w* \w my|strong="H6213"\w* lord \w the|strong="H6213"\w* \w king|strong="H4428"\w* \w has|strong="H4428"\w* \w said|strong="H1696"\w*, \w so|strong="H3651"\w* \w will|strong="H4428"\w* \w your|strong="H6213"\w* \w servant|strong="H5650"\w* \w do|strong="H6213"\w*.” \w Shimei|strong="H8096"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w*. +\p +\v 39 \w At|strong="H4428"\w* \w the|strong="H1961"\w* \w end|strong="H7093"\w* \w of|strong="H1121"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w*, \w two|strong="H8147"\w* \w of|strong="H1121"\w* \w Shimei|strong="H8096"\w*’s \w slaves|strong="H5650"\w* \w ran|strong="H1272"\w* \w away|strong="H1272"\w* \w to|strong="H1961"\w* Achish, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Maacah|strong="H4601"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Gath|strong="H1661"\w*. \w They|strong="H8141"\w* \w told|strong="H5046"\w* \w Shimei|strong="H8096"\w*, saying, “\w Behold|strong="H2009"\w*, \w your|strong="H1961"\w* \w slaves|strong="H5650"\w* \w are|strong="H1121"\w* \w in|strong="H8141"\w* \w Gath|strong="H1661"\w*.” +\p +\v 40 \w Shimei|strong="H8096"\w* \w arose|strong="H6965"\w*, \w saddled|strong="H2280"\w* \w his|strong="H6965"\w* \w donkey|strong="H2543"\w*, \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Gath|strong="H1661"\w* \w to|strong="H3212"\w* Achish \w to|strong="H3212"\w* \w seek|strong="H1245"\w* \w his|strong="H6965"\w* \w slaves|strong="H5650"\w*; \w and|strong="H6965"\w* \w Shimei|strong="H8096"\w* \w went|strong="H3212"\w* \w and|strong="H6965"\w* \w brought|strong="H3212"\w* \w his|strong="H6965"\w* \w slaves|strong="H5650"\w* \w from|strong="H6965"\w* \w Gath|strong="H1661"\w*. +\v 41 \w Solomon|strong="H8010"\w* \w was|strong="H3389"\w* \w told|strong="H5046"\w* \w that|strong="H3588"\w* \w Shimei|strong="H8096"\w* \w had|strong="H8010"\w* \w gone|strong="H1980"\w* \w from|strong="H7725"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H1980"\w* \w Gath|strong="H1661"\w*, \w and|strong="H1980"\w* \w had|strong="H8010"\w* \w come|strong="H1980"\w* \w again|strong="H7725"\w*. +\p +\v 42 \w The|strong="H8085"\w* \w king|strong="H4428"\w* \w sent|strong="H7971"\w* \w and|strong="H1980"\w* \w called|strong="H7121"\w* \w for|strong="H3588"\w* \w Shimei|strong="H8096"\w*, \w and|strong="H1980"\w* \w said|strong="H1697"\w* \w to|strong="H1980"\w* \w him|strong="H7121"\w*, “Didn’t \w I|strong="H3588"\w* \w adjure|strong="H7650"\w* \w you|strong="H3588"\w* \w by|strong="H7650"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H1980"\w* \w warn|strong="H5749"\w* \w you|strong="H3588"\w*, \w saying|strong="H1697"\w*, ‘\w Know|strong="H3045"\w* \w for|strong="H3588"\w* \w certain|strong="H3045"\w* \w that|strong="H3588"\w* \w on|strong="H3117"\w* \w the|strong="H8085"\w* \w day|strong="H3117"\w* \w you|strong="H3588"\w* \w go|strong="H1980"\w* \w out|strong="H3318"\w* \w and|strong="H1980"\w* \w walk|strong="H1980"\w* anywhere \w else|strong="H3808"\w*, \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w surely|strong="H4191"\w* \w die|strong="H4191"\w*’? \w You|strong="H3588"\w* \w said|strong="H1697"\w* \w to|strong="H1980"\w* \w me|strong="H7971"\w*, ‘\w The|strong="H8085"\w* \w saying|strong="H1697"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w*.’ +\v 43 \w Why|strong="H4069"\w* \w then|strong="H6680"\w* \w have|strong="H3068"\w* \w you|strong="H6680"\w* \w not|strong="H3808"\w* \w kept|strong="H8104"\w* \w the|strong="H5921"\w* \w oath|strong="H7621"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w commandment|strong="H4687"\w* \w that|strong="H3068"\w* \w I|strong="H5921"\w* \w have|strong="H3068"\w* \w instructed|strong="H6680"\w* \w you|strong="H6680"\w* \w with|strong="H3068"\w*?” +\v 44 \w The|strong="H3605"\w* \w king|strong="H4428"\w* said moreover \w to|strong="H7725"\w* \w Shimei|strong="H8096"\w*, “\w You|strong="H3605"\w* \w know|strong="H3045"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w wickedness|strong="H7451"\w* \w that|strong="H3045"\w* \w you|strong="H3605"\w* \w did|strong="H6213"\w* \w to|strong="H7725"\w* \w David|strong="H1732"\w* \w my|strong="H3605"\w* father. \w Therefore|strong="H1732"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w return|strong="H7725"\w* \w your|strong="H3068"\w* \w wickedness|strong="H7451"\w* \w on|strong="H3068"\w* \w your|strong="H3068"\w* own \w head|strong="H7218"\w*. +\v 45 \w But|strong="H1961"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w blessed|strong="H1288"\w*, \w and|strong="H3068"\w* \w David|strong="H1732"\w*’s \w throne|strong="H3678"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w established|strong="H3559"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w forever|strong="H5769"\w*.” +\v 46 \w So|strong="H3318"\w* \w the|strong="H6680"\w* \w king|strong="H4428"\w* \w commanded|strong="H6680"\w* \w Benaiah|strong="H1141"\w* \w the|strong="H6680"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w*; \w and|strong="H1121"\w* \w he|strong="H3027"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H1121"\w* \w fell|strong="H6293"\w* \w on|strong="H3027"\w* \w him|strong="H3027"\w*, \w so|strong="H3318"\w* \w that|strong="H4428"\w* \w he|strong="H3027"\w* \w died|strong="H4191"\w*. \w The|strong="H6680"\w* \w kingdom|strong="H4467"\w* \w was|strong="H4428"\w* \w established|strong="H3559"\w* \w in|strong="H4428"\w* \w the|strong="H6680"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w*. +\c 3 +\p +\v 1 \w Solomon|strong="H8010"\w* \w made|strong="H1129"\w* \w a|strong="H3068"\w* \w marriage|strong="H2859"\w* \w alliance|strong="H2859"\w* \w with|strong="H1004"\w* \w Pharaoh|strong="H6547"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*. \w He|strong="H5704"\w* \w took|strong="H3947"\w* \w Pharaoh|strong="H6547"\w*’s \w daughter|strong="H1323"\w* \w and|strong="H3068"\w* \w brought|strong="H3947"\w* \w her|strong="H3947"\w* \w into|strong="H4714"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w* \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w had|strong="H3068"\w* \w finished|strong="H3615"\w* \w building|strong="H1129"\w* \w his|strong="H3068"\w* own \w house|strong="H1004"\w*, \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w the|strong="H3947"\w* \w wall|strong="H2346"\w* \w around|strong="H5439"\w* \w Jerusalem|strong="H3389"\w*. +\v 2 \w However|strong="H7535"\w*, \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w sacrificed|strong="H2076"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*, \w because|strong="H3588"\w* \w there|strong="H1992"\w* \w was|strong="H3068"\w* \w not|strong="H3808"\w* \w yet|strong="H3588"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w built|strong="H1129"\w* \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*. +\v 3 \w Solomon|strong="H8010"\w* loved \w Yahweh|strong="H3068"\w*, \w walking|strong="H3212"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w statutes|strong="H2708"\w* \w of|strong="H3068"\w* \w David|strong="H1732"\w* \w his|strong="H3068"\w* father, \w except|strong="H7535"\w* \w that|strong="H1931"\w* \w he|strong="H1931"\w* \w sacrificed|strong="H2076"\w* \w and|strong="H3068"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*. +\v 4 \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Gibeon|strong="H1391"\w* \w to|strong="H3212"\w* \w sacrifice|strong="H2076"\w* \w there|strong="H8033"\w*, \w for|strong="H3588"\w* \w that|strong="H3588"\w* \w was|strong="H1931"\w* \w the|strong="H5921"\w* \w great|strong="H1419"\w* \w high|strong="H1116"\w* \w place|strong="H1116"\w*. \w Solomon|strong="H8010"\w* \w offered|strong="H5927"\w* \w a|strong="H3068"\w* thousand \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w on|strong="H5921"\w* \w that|strong="H3588"\w* \w altar|strong="H4196"\w*. +\v 5 \w In|strong="H3068"\w* \w Gibeon|strong="H1391"\w*, \w Yahweh|strong="H3068"\w* \w appeared|strong="H7200"\w* \w to|strong="H3068"\w* \w Solomon|strong="H8010"\w* \w in|strong="H3068"\w* \w a|strong="H3068"\w* \w dream|strong="H2472"\w* \w by|strong="H3068"\w* \w night|strong="H3915"\w*; \w and|strong="H3068"\w* \w God|strong="H3068"\w* said, “\w Ask|strong="H7592"\w* \w for|strong="H3068"\w* \w what|strong="H4100"\w* \w I|strong="H5414"\w* \w should|strong="H3068"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w*.” +\p +\v 6 \w Solomon|strong="H8010"\w* said, “\w You|strong="H5414"\w* \w have|strong="H1121"\w* \w shown|strong="H6213"\w* \w to|strong="H1980"\w* \w your|strong="H5414"\w* \w servant|strong="H5650"\w* \w David|strong="H1732"\w* \w my|strong="H8104"\w* \w father|strong="H1121"\w* \w great|strong="H1419"\w* loving \w kindness|strong="H2617"\w*, \w because|strong="H5921"\w* \w he|strong="H3117"\w* \w walked|strong="H1980"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w* \w in|strong="H3427"\w* truth, \w in|strong="H3427"\w* \w righteousness|strong="H6666"\w*, \w and|strong="H1121"\w* \w in|strong="H3427"\w* \w uprightness|strong="H3483"\w* \w of|strong="H1121"\w* \w heart|strong="H3824"\w* \w with|strong="H5973"\w* \w you|strong="H5414"\w*. \w You|strong="H5414"\w* \w have|strong="H1121"\w* \w kept|strong="H8104"\w* \w for|strong="H5921"\w* \w him|strong="H5414"\w* \w this|strong="H2088"\w* \w great|strong="H1419"\w* loving \w kindness|strong="H2617"\w*, \w that|strong="H3117"\w* \w you|strong="H5414"\w* \w have|strong="H1121"\w* \w given|strong="H5414"\w* \w him|strong="H5414"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w to|strong="H1980"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w his|strong="H5414"\w* \w throne|strong="H3678"\w*, \w as|strong="H3117"\w* \w it|strong="H5414"\w* \w is|strong="H2088"\w* \w today|strong="H3117"\w*. +\v 7 \w Now|strong="H6258"\w*, \w Yahweh|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*, \w you|strong="H3045"\w* \w have|strong="H3068"\w* \w made|strong="H4427"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w king|strong="H4427"\w* \w instead|strong="H8478"\w* \w of|strong="H3068"\w* \w David|strong="H1732"\w* \w my|strong="H3068"\w* father. \w I|strong="H6258"\w* \w am|strong="H3068"\w* \w just|strong="H6258"\w* \w a|strong="H3068"\w* \w little|strong="H6996"\w* \w child|strong="H5288"\w*. \w I|strong="H6258"\w* don’t \w know|strong="H3045"\w* \w how|strong="H3045"\w* \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w or|strong="H3808"\w* \w come|strong="H3318"\w* \w in|strong="H3068"\w*. +\v 8 \w Your|strong="H3808"\w* \w servant|strong="H5650"\w* \w is|strong="H5650"\w* \w among|strong="H8432"\w* \w your|strong="H3808"\w* \w people|strong="H5971"\w* \w which|strong="H5971"\w* \w you|strong="H3808"\w* \w have|strong="H5971"\w* chosen, \w a|strong="H3068"\w* \w great|strong="H7227"\w* \w people|strong="H5971"\w*, \w that|strong="H5971"\w* \w can|strong="H5650"\w*’t \w be|strong="H3808"\w* \w numbered|strong="H5608"\w* \w or|strong="H3808"\w* \w counted|strong="H5608"\w* \w for|strong="H5650"\w* \w multitude|strong="H7230"\w*. +\v 9 \w Give|strong="H5414"\w* \w your|strong="H5414"\w* \w servant|strong="H5650"\w* \w therefore|strong="H3588"\w* \w an|strong="H5414"\w* \w understanding|strong="H3820"\w* \w heart|strong="H3820"\w* \w to|strong="H3201"\w* \w judge|strong="H8199"\w* \w your|strong="H5414"\w* \w people|strong="H5971"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H3201"\w* \w discern|strong="H8085"\w* \w between|strong="H8199"\w* \w good|strong="H2896"\w* \w and|strong="H5971"\w* \w evil|strong="H7451"\w*; \w for|strong="H3588"\w* \w who|strong="H4310"\w* \w is|strong="H2088"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w judge|strong="H8199"\w* \w this|strong="H2088"\w* \w great|strong="H3515"\w* \w people|strong="H5971"\w* \w of|strong="H5650"\w* \w yours|strong="H5650"\w*?” +\p +\v 10 \w This|strong="H2088"\w* \w request|strong="H1697"\w* \w pleased|strong="H3190"\w* \w the|strong="H3588"\w* Lord, \w that|strong="H3588"\w* \w Solomon|strong="H8010"\w* \w had|strong="H8010"\w* \w asked|strong="H7592"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*. +\v 11 \w God|strong="H3808"\w* \w said|strong="H1697"\w* \w to|strong="H3117"\w* \w him|strong="H7592"\w*, “\w Because|strong="H3282"\w* \w you|strong="H3117"\w* \w have|strong="H1697"\w* \w asked|strong="H7592"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*, \w and|strong="H3117"\w* \w have|strong="H1697"\w* \w not|strong="H3808"\w* \w asked|strong="H7592"\w* \w for|strong="H4941"\w* \w yourself|strong="H5315"\w* \w long|strong="H3117"\w* \w life|strong="H5315"\w*, \w nor|strong="H3808"\w* \w have|strong="H1697"\w* \w you|strong="H3117"\w* \w asked|strong="H7592"\w* \w for|strong="H4941"\w* \w riches|strong="H6239"\w* \w for|strong="H4941"\w* \w yourself|strong="H5315"\w*, \w nor|strong="H3808"\w* \w have|strong="H1697"\w* \w you|strong="H3117"\w* \w asked|strong="H7592"\w* \w for|strong="H4941"\w* \w the|strong="H8085"\w* \w life|strong="H5315"\w* \w of|strong="H3117"\w* \w your|strong="H8085"\w* enemies, \w but|strong="H3808"\w* \w have|strong="H1697"\w* \w asked|strong="H7592"\w* \w for|strong="H4941"\w* \w yourself|strong="H5315"\w* \w understanding|strong="H8085"\w* \w to|strong="H3117"\w* \w discern|strong="H8085"\w* \w justice|strong="H4941"\w*, +\v 12 \w behold|strong="H2009"\w*, \w I|strong="H5414"\w* \w have|strong="H1961"\w* \w done|strong="H6213"\w* \w according|strong="H3644"\w* \w to|strong="H1961"\w* \w your|strong="H5414"\w* \w word|strong="H1697"\w*. \w Behold|strong="H2009"\w*, \w I|strong="H5414"\w* \w have|strong="H1961"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w wise|strong="H2450"\w* \w and|strong="H6965"\w* \w understanding|strong="H3820"\w* \w heart|strong="H3820"\w*, \w so|strong="H6213"\w* \w that|strong="H1697"\w* \w there|strong="H2009"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w like|strong="H3644"\w* \w you|strong="H5414"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w*, \w and|strong="H6965"\w* \w after|strong="H1961"\w* \w you|strong="H5414"\w* \w none|strong="H3808"\w* \w will|strong="H1961"\w* \w arise|strong="H6965"\w* \w like|strong="H3644"\w* \w you|strong="H5414"\w*. +\v 13 \w I|strong="H3117"\w* \w have|strong="H1961"\w* \w also|strong="H1571"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w* \w that|strong="H3605"\w* \w which|strong="H3117"\w* \w you|strong="H5414"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* \w asked|strong="H7592"\w*, \w both|strong="H1571"\w* \w riches|strong="H6239"\w* \w and|strong="H4428"\w* \w honor|strong="H3519"\w*, \w so|strong="H1961"\w* \w that|strong="H3605"\w* \w there|strong="H1961"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w any|strong="H3605"\w* \w among|strong="H3808"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w like|strong="H3644"\w* \w you|strong="H5414"\w* \w for|strong="H3117"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w days|strong="H3117"\w*. +\v 14 If \w you|strong="H3117"\w* \w will|strong="H3117"\w* \w walk|strong="H1980"\w* \w in|strong="H1980"\w* \w my|strong="H8104"\w* \w ways|strong="H1870"\w*, \w to|strong="H1980"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w statutes|strong="H2706"\w* \w and|strong="H1980"\w* \w my|strong="H8104"\w* \w commandments|strong="H4687"\w*, \w as|strong="H3117"\w* \w your|strong="H8104"\w* father \w David|strong="H1732"\w* \w walked|strong="H1980"\w*, \w then|strong="H1980"\w* \w I|strong="H3117"\w* \w will|strong="H3117"\w* lengthen \w your|strong="H8104"\w* \w days|strong="H3117"\w*.” +\p +\v 15 \w Solomon|strong="H8010"\w* \w awoke|strong="H3364"\w*; \w and|strong="H3389"\w* \w behold|strong="H2009"\w*, \w it|strong="H6213"\w* \w was|strong="H8010"\w* \w a|strong="H3068"\w* \w dream|strong="H2472"\w*. \w Then|strong="H2009"\w* \w he|strong="H6213"\w* \w came|strong="H5927"\w* \w to|strong="H5927"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H3389"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* ark \w of|strong="H6440"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w*, \w and|strong="H3389"\w* \w offered|strong="H5927"\w* \w up|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w*, \w offered|strong="H5927"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w and|strong="H3389"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w feast|strong="H4960"\w* \w for|strong="H6213"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w*. +\p +\v 16 \w Then|strong="H5975"\w* \w two|strong="H8147"\w* women \w who|strong="H4428"\w* \w were|strong="H4428"\w* \w prostitutes|strong="H2185"\w* \w came|strong="H4428"\w* \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*, \w and|strong="H4428"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 17 \w The|strong="H3205"\w* \w one|strong="H2063"\w* \w woman|strong="H3205"\w* said, “Oh, \w my|strong="H5973"\w* lord, \w I|strong="H1004"\w* \w and|strong="H1004"\w* \w this|strong="H2063"\w* \w woman|strong="H3205"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w one|strong="H2063"\w* \w house|strong="H1004"\w*. \w I|strong="H1004"\w* \w delivered|strong="H3205"\w* \w a|strong="H3068"\w* \w child|strong="H3205"\w* \w with|strong="H5973"\w* \w her|strong="H3205"\w* \w in|strong="H3427"\w* \w the|strong="H3205"\w* \w house|strong="H1004"\w*. +\v 18 \w The|strong="H3205"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w* \w after|strong="H1961"\w* \w I|strong="H3117"\w* \w delivered|strong="H3205"\w*, \w this|strong="H2063"\w* \w woman|strong="H2114"\w* \w delivered|strong="H3205"\w* \w also|strong="H1571"\w*. \w We|strong="H3117"\w* \w were|strong="H1961"\w* \w together|strong="H3162"\w*. \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H1961"\w* \w stranger|strong="H2114"\w* \w with|strong="H1004"\w* \w us|strong="H3117"\w* \w in|strong="H1004"\w* \w the|strong="H3205"\w* \w house|strong="H1004"\w*, \w just|strong="H1571"\w* \w us|strong="H3117"\w* \w two|strong="H8147"\w* \w in|strong="H1004"\w* \w the|strong="H3205"\w* \w house|strong="H1004"\w*. +\v 19 \w This|strong="H2063"\w* woman’s \w child|strong="H1121"\w* \w died|strong="H4191"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w night|strong="H3915"\w*, \w because|strong="H5921"\w* \w she|strong="H2063"\w* \w lay|strong="H7901"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 20 \w She|strong="H7901"\w* \w arose|strong="H6965"\w* \w at|strong="H4191"\w* \w midnight|strong="H8432"\w*, \w and|strong="H1121"\w* \w took|strong="H3947"\w* \w my|strong="H3947"\w* \w son|strong="H1121"\w* \w from|strong="H1121"\w* beside \w me|strong="H3947"\w* while \w your|strong="H3947"\w* servant \w slept|strong="H7901"\w*, \w and|strong="H1121"\w* \w laid|strong="H7901"\w* \w it|strong="H8432"\w* \w in|strong="H4191"\w* \w her|strong="H3947"\w* \w bosom|strong="H2436"\w*, \w and|strong="H1121"\w* \w laid|strong="H7901"\w* \w her|strong="H3947"\w* \w dead|strong="H4191"\w* \w child|strong="H1121"\w* \w in|strong="H4191"\w* \w my|strong="H3947"\w* \w bosom|strong="H2436"\w*. +\v 21 \w When|strong="H1961"\w* \w I|strong="H2009"\w* \w rose|strong="H6965"\w* \w in|strong="H4191"\w* \w the|strong="H3205"\w* \w morning|strong="H1242"\w* \w to|strong="H4191"\w* \w nurse|strong="H3243"\w* \w my|strong="H6965"\w* \w child|strong="H1121"\w*, \w behold|strong="H2009"\w*, \w he|strong="H3808"\w* \w was|strong="H1961"\w* \w dead|strong="H4191"\w*; \w but|strong="H3808"\w* \w when|strong="H1961"\w* \w I|strong="H2009"\w* \w had|strong="H1961"\w* \w looked|strong="H2009"\w* \w at|strong="H4191"\w* \w him|strong="H3205"\w* \w in|strong="H4191"\w* \w the|strong="H3205"\w* \w morning|strong="H1242"\w*, \w behold|strong="H2009"\w*, \w it|strong="H1242"\w* \w was|strong="H1961"\w* \w not|strong="H3808"\w* \w my|strong="H6965"\w* \w son|strong="H1121"\w* whom \w I|strong="H2009"\w* \w bore|strong="H3205"\w*.” +\p +\v 22 \w The|strong="H6440"\w* \w other|strong="H2063"\w* woman \w said|strong="H1696"\w*, “\w No|strong="H3808"\w*! \w But|strong="H3588"\w* \w the|strong="H6440"\w* \w living|strong="H2416"\w* \w one|strong="H3808"\w* \w is|strong="H4428"\w* \w my|strong="H1696"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w dead|strong="H4191"\w* \w one|strong="H3808"\w* \w is|strong="H4428"\w* \w your|strong="H6440"\w* \w son|strong="H1121"\w*.” +\p \w The|strong="H6440"\w* \w first|strong="H1121"\w* \w one|strong="H3808"\w* \w said|strong="H1696"\w*, “\w No|strong="H3808"\w*! \w But|strong="H3588"\w* \w the|strong="H6440"\w* \w dead|strong="H4191"\w* \w one|strong="H3808"\w* \w is|strong="H4428"\w* \w your|strong="H6440"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w living|strong="H2416"\w* \w one|strong="H3808"\w* \w is|strong="H4428"\w* \w my|strong="H1696"\w* \w son|strong="H1121"\w*.” \w They|strong="H3588"\w* argued \w like|strong="H3808"\w* \w this|strong="H2063"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*. +\p +\v 23 \w Then|strong="H2088"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* said, “\w One|strong="H2088"\w* says, ‘\w This|strong="H2088"\w* \w is|strong="H2088"\w* \w my|strong="H3588"\w* \w son|strong="H1121"\w* \w who|strong="H1121"\w* \w lives|strong="H2416"\w*, \w and|strong="H1121"\w* \w your|strong="H3588"\w* \w son|strong="H1121"\w* \w is|strong="H2088"\w* \w the|strong="H3588"\w* \w dead|strong="H4191"\w* \w one|strong="H2088"\w*;’ \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w other|strong="H2088"\w* says, ‘\w No|strong="H3808"\w*! \w But|strong="H3588"\w* \w your|strong="H3588"\w* \w son|strong="H1121"\w* \w is|strong="H2088"\w* \w the|strong="H3588"\w* \w dead|strong="H4191"\w* \w one|strong="H2088"\w*, \w and|strong="H1121"\w* \w my|strong="H3588"\w* \w son|strong="H1121"\w* \w is|strong="H2088"\w* \w the|strong="H3588"\w* \w living|strong="H2416"\w* \w one|strong="H2088"\w*.’” +\p +\v 24 \w The|strong="H6440"\w* \w king|strong="H4428"\w* said, “\w Get|strong="H3947"\w* \w me|strong="H6440"\w* \w a|strong="H3068"\w* \w sword|strong="H2719"\w*.” \w So|strong="H3947"\w* \w they|strong="H6440"\w* \w brought|strong="H3947"\w* \w a|strong="H3068"\w* \w sword|strong="H2719"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*. +\p +\v 25 \w The|strong="H5414"\w* \w king|strong="H4428"\w* said, “\w Divide|strong="H1504"\w* \w the|strong="H5414"\w* \w living|strong="H2416"\w* \w child|strong="H3206"\w* \w in|strong="H4428"\w* \w two|strong="H8147"\w*, \w and|strong="H4428"\w* \w give|strong="H5414"\w* \w half|strong="H2677"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w one|strong="H2416"\w*, \w and|strong="H4428"\w* \w half|strong="H2677"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w other|strong="H8147"\w*.” +\p +\v 26 \w Then|strong="H1961"\w* \w the|strong="H5921"\w* \w woman|strong="H3205"\w* \w whose|strong="H1121"\w* \w the|strong="H5921"\w* \w living|strong="H2416"\w* \w child|strong="H1121"\w* \w was|strong="H1961"\w* spoke \w to|strong="H4191"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*, \w for|strong="H3588"\w* \w her|strong="H5414"\w* heart \w yearned|strong="H3648"\w* \w over|strong="H5921"\w* \w her|strong="H5414"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w she|strong="H3588"\w* said, “Oh, \w my|strong="H5414"\w* lord, \w give|strong="H5414"\w* \w her|strong="H5414"\w* \w the|strong="H5921"\w* \w living|strong="H2416"\w* \w child|strong="H1121"\w*, \w and|strong="H1121"\w* \w in|strong="H5921"\w* \w no|strong="H3808"\w* \w way|strong="H2063"\w* \w kill|strong="H4191"\w* \w him|strong="H5414"\w*!” +\p \w But|strong="H3588"\w* \w the|strong="H5921"\w* \w other|strong="H3205"\w* said, “\w He|strong="H3588"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w neither|strong="H3808"\w* \w mine|strong="H5414"\w* \w nor|strong="H3808"\w* \w yours|strong="H5414"\w*. \w Divide|strong="H1504"\w* \w him|strong="H5414"\w*.” +\p +\v 27 \w Then|strong="H6030"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w answered|strong="H6030"\w*, “\w Give|strong="H5414"\w* \w the|strong="H5414"\w* first \w woman|strong="H3205"\w* \w the|strong="H5414"\w* \w living|strong="H2416"\w* \w child|strong="H3205"\w*, \w and|strong="H6030"\w* definitely do \w not|strong="H3808"\w* \w kill|strong="H4191"\w* \w him|strong="H5414"\w*. \w She|strong="H1931"\w* \w is|strong="H1931"\w* \w his|strong="H5414"\w* mother.” +\p +\v 28 \w All|strong="H3605"\w* \w Israel|strong="H3478"\w* \w heard|strong="H8085"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w judgment|strong="H4941"\w* \w which|strong="H3478"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w had|strong="H3478"\w* \w judged|strong="H8199"\w*; \w and|strong="H3478"\w* \w they|strong="H3588"\w* \w feared|strong="H3372"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w wisdom|strong="H2451"\w* \w of|strong="H4428"\w* \w God|strong="H2451"\w* \w was|strong="H3478"\w* \w in|strong="H3478"\w* \w him|strong="H6440"\w* \w to|strong="H3478"\w* \w do|strong="H6213"\w* \w justice|strong="H4941"\w*. +\c 4 +\p +\v 1 \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w was|strong="H1961"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*. +\v 2 These \w were|strong="H1121"\w* \w the|strong="H6659"\w* \w princes|strong="H8269"\w* whom \w he|strong="H1121"\w* \w had|strong="H3548"\w*: \w Azariah|strong="H5838"\w* \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zadok|strong="H6659"\w*, \w the|strong="H6659"\w* \w priest|strong="H3548"\w*; +\v 3 Elihoreph \w and|strong="H1121"\w* Ahijah, \w the|strong="H2142"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shisha|strong="H7894"\w*, \w scribes|strong="H5608"\w*; \w Jehoshaphat|strong="H3092"\w* \w the|strong="H2142"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahilud, \w the|strong="H2142"\w* \w recorder|strong="H2142"\w*; +\v 4 \w Benaiah|strong="H1141"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w* \w was|strong="H1121"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w army|strong="H6635"\w*; \w Zadok|strong="H6659"\w* \w and|strong="H1121"\w* Abiathar \w were|strong="H1121"\w* \w priests|strong="H3548"\w*; +\v 5 \w Azariah|strong="H5838"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nathan|strong="H5416"\w* \w was|strong="H4428"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w officers|strong="H5324"\w*; \w Zabud|strong="H2071"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nathan|strong="H5416"\w* \w was|strong="H4428"\w* \w chief|strong="H3548"\w* minister, \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w friend|strong="H7463"\w*; +\v 6 Ahishar \w was|strong="H1004"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w household|strong="H1004"\w*; \w and|strong="H1121"\w* Adoniram \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Abda|strong="H5653"\w* \w was|strong="H1004"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w men|strong="H1121"\w* subject \w to|strong="H5921"\w* \w forced|strong="H4522"\w* \w labor|strong="H4522"\w*. +\p +\v 7 \w Solomon|strong="H8010"\w* \w had|strong="H1961"\w* \w twelve|strong="H8147"\w* \w officers|strong="H5324"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w who|strong="H3605"\w* \w provided|strong="H3557"\w* \w food|strong="H1004"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w and|strong="H3478"\w* \w his|strong="H3605"\w* \w household|strong="H1004"\w*. \w Each|strong="H3605"\w* \w man|strong="H3605"\w* \w had|strong="H1961"\w* \w to|strong="H3478"\w* \w make|strong="H8141"\w* \w provision|strong="H3557"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w month|strong="H2320"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w year|strong="H8141"\w*. +\v 8 These \w are|strong="H2022"\w* their \w names|strong="H8034"\w*: Ben \w Hur|strong="H1133"\w*, \w in|strong="H8034"\w* \w the|strong="H8034"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H2022"\w* \w Ephraim|strong="H8034"\w*; +\v 9 Ben Deker, \w in|strong="H1128"\w* \w Makaz|strong="H4739"\w*, \w in|strong="H1128"\w* \w Shaalbim|strong="H8169"\w*, Beth Shemesh, \w and|strong="H1053"\w* Elon Beth Hanan; +\v 10 Ben \w Hesed|strong="H1136"\w*, \w in|strong="H3605"\w* Arubboth (\w Socoh|strong="H7755"\w* \w and|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H3605"\w* \w Hepher|strong="H2660"\w* belonged \w to|strong="H3605"\w* \w him|strong="H3605"\w*); +\v 11 Ben \w Abinadab|strong="H1125"\w*, \w in|strong="H8010"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w height|strong="H5299"\w* \w of|strong="H1323"\w* \w Dor|strong="H1756"\w* (\w he|strong="H3605"\w* \w had|strong="H1961"\w* \w Taphath|strong="H2955"\w*, \w Solomon|strong="H8010"\w*’s \w daughter|strong="H1323"\w*, \w as|strong="H1961"\w* wife); +\v 12 \w Baana|strong="H1195"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahilud, \w in|strong="H1121"\w* \w Taanach|strong="H8590"\w* \w and|strong="H1121"\w* \w Megiddo|strong="H4023"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* Beth Shean \w which|strong="H3605"\w* \w is|strong="H3605"\w* \w beside|strong="H5704"\w* \w Zarethan|strong="H6891"\w*, \w beneath|strong="H8478"\w* \w Jezreel|strong="H3157"\w*, \w from|strong="H1121"\w* Beth Shean \w to|strong="H5704"\w* Abel Meholah, \w as|strong="H5704"\w* \w far|strong="H5704"\w* \w as|strong="H5704"\w* \w beyond|strong="H5676"\w* \w Jokmeam|strong="H3361"\w*; +\v 13 Ben \w Geber|strong="H1127"\w*, \w in|strong="H5892"\w* \w Ramoth|strong="H7433"\w* \w Gilead|strong="H1568"\w* (\w the|strong="H1121"\w* \w towns|strong="H5892"\w* \w of|strong="H1121"\w* \w Jair|strong="H2971"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*, \w which|strong="H5892"\w* \w are|strong="H1121"\w* \w in|strong="H5892"\w* \w Gilead|strong="H1568"\w*, belonged \w to|strong="H1121"\w* \w him|strong="H1121"\w*; \w and|strong="H1121"\w* \w the|strong="H1121"\w* \w region|strong="H2256"\w* \w of|strong="H1121"\w* Argob, \w which|strong="H5892"\w* \w is|strong="H5892"\w* \w in|strong="H5892"\w* \w Bashan|strong="H1316"\w*, \w sixty|strong="H8346"\w* \w great|strong="H1419"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* \w walls|strong="H2346"\w* \w and|strong="H1121"\w* \w bronze|strong="H5178"\w* \w bars|strong="H1280"\w*, belonged \w to|strong="H1121"\w* \w him|strong="H1121"\w*); +\v 14 Ahinadab \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Iddo|strong="H5714"\w*, \w in|strong="H1121"\w* \w Mahanaim|strong="H4266"\w*; +\v 15 Ahimaaz, \w in|strong="H8010"\w* \w Naphtali|strong="H5321"\w* (\w he|strong="H1931"\w* \w also|strong="H1571"\w* \w took|strong="H3947"\w* \w Basemath|strong="H1315"\w* \w the|strong="H3947"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Solomon|strong="H8010"\w* \w as|strong="H1571"\w* wife); +\v 16 \w Baana|strong="H1195"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hushai|strong="H2365"\w*, \w in|strong="H1121"\w* Asher \w and|strong="H1121"\w* \w Bealoth|strong="H1175"\w*; +\v 17 \w Jehoshaphat|strong="H3092"\w* \w the|strong="H3092"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Paruah|strong="H6515"\w*, \w in|strong="H1121"\w* \w Issachar|strong="H3485"\w*; +\v 18 \w Shimei|strong="H8096"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ela, \w in|strong="H1121"\w* \w Benjamin|strong="H1144"\w*; +\v 19 \w Geber|strong="H1398"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Uri, \w in|strong="H4428"\w* \w the|strong="H1121"\w* land \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*, \w the|strong="H1121"\w* country \w of|strong="H1121"\w* \w Sihon|strong="H5511"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* Amorites \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w Og|strong="H5747"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Bashan|strong="H1316"\w*; \w and|strong="H1121"\w* \w he|strong="H4428"\w* \w was|strong="H4428"\w* \w the|strong="H1121"\w* only \w officer|strong="H5333"\w* \w who|strong="H1121"\w* \w was|strong="H4428"\w* \w in|strong="H4428"\w* \w the|strong="H1121"\w* land. +\p +\v 20 \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w numerous|strong="H7227"\w* \w as|strong="H7230"\w* \w the|strong="H5921"\w* \w sand|strong="H2344"\w* \w which|strong="H2344"\w* \w is|strong="H3478"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w in|strong="H5921"\w* \w multitude|strong="H7230"\w*, eating \w and|strong="H3063"\w* \w drinking|strong="H8354"\w* \w and|strong="H3063"\w* making \w merry|strong="H8056"\w*. +\v 21 Solomon ruled over all the kingdoms from the River to the land of the Philistines, and to the border of Egypt. They brought tribute and served Solomon all the days of his life. +\v 22 Solomon’s provision for one day was thirty cors\f + \fr 4:22 \ft 1 cor is the same as a homer, or about 55.9 U. S. gallons (liquid) or 211 liters or 6 bushels\f* of fine flour, sixty measures of meal, +\v 23 ten head of fat cattle, twenty head of cattle out of the pastures, and one hundred sheep, in addition to deer, gazelles, roebucks, and fattened fowl. +\v 24 For he had dominion over all on this side of the River, from Tiphsah even to Gaza, over all the kings on this side of the River; and he had peace on all sides around him. +\v 25 Judah and Israel lived safely, every man under his vine and under his fig tree, from Dan even to Beersheba, all the days of Solomon. +\v 26 Solomon had forty thousand stalls of horses for his chariots, and twelve thousand horsemen. +\v 27 Those officers provided food for King Solomon, and for all who came to King Solomon’s table, every man in his month. They let nothing be lacking. +\v 28 They also brought barley and straw for the horses and swift steeds to the place where the officers were, each man according to his duty. +\v 29 God gave Solomon abundant wisdom, understanding, and breadth of mind like the sand that is on the seashore. +\v 30 Solomon’s wisdom excelled the wisdom of all the children of the east and all the wisdom of Egypt. +\v 31 For he was wiser than all men—wiser than Ethan the Ezrahite, Heman, Calcol, and Darda, the sons of Mahol; and his fame was in all the nations all around. +\v 32 He spoke three thousand proverbs, and his songs numbered one thousand five. +\v 33 He spoke of trees, from the cedar that is in Lebanon even to the hyssop that grows out of the wall; he also spoke of animals, of birds, of creeping things, and of fish. +\v 34 People of all nations came to hear the wisdom of Solomon, sent by all kings of the earth who had heard of his wisdom. +\c 5 +\p +\v 1 Hiram king \w of|strong="H3117"\w* Tyre sent \w his|strong="H3605"\w* \w servants|strong="H5647"\w* \w to|strong="H5704"\w* \w Solomon|strong="H8010"\w*, \w for|strong="H5704"\w* \w he|strong="H3117"\w* \w had|strong="H1961"\w* heard \w that|strong="H3605"\w* \w they|strong="H3117"\w* \w had|strong="H1961"\w* anointed \w him|strong="H5647"\w* king \w in|strong="H3117"\w* \w the|strong="H3605"\w* \w place|strong="H1961"\w* \w of|strong="H3117"\w* \w his|strong="H3605"\w* father, \w and|strong="H3117"\w* Hiram \w had|strong="H1961"\w* \w always|strong="H3605"\w* loved \w David|strong="H3117"\w*. +\v 2 \w Solomon|strong="H8010"\w* sent \w to|strong="H1961"\w* Hiram, saying, +\v 3 “You know \w that|strong="H1241"\w* David my father could not build \w a|strong="H3068"\w* house \w for|strong="H1241"\w* \w the|strong="H3967"\w* name \w of|strong="H6629"\w* \w Yahweh|strong="H3068"\w* his God because \w of|strong="H6629"\w* \w the|strong="H3967"\w* wars which \w were|strong="H6629"\w* around him on every side, until \w Yahweh|strong="H3068"\w* put his enemies under \w the|strong="H3967"\w* soles \w of|strong="H6629"\w* his feet. +\v 4 \w But|strong="H3588"\w* \w now|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w my|strong="H3605"\w* God \w has|strong="H1961"\w* given \w me|strong="H1961"\w* \w rest|strong="H7965"\w* \w on|strong="H1961"\w* \w every|strong="H3605"\w* \w side|strong="H5676"\w*. \w There|strong="H1961"\w* \w is|strong="H1931"\w* \w no|strong="H3605"\w* enemy \w and|strong="H4428"\w* \w no|strong="H3605"\w* evil occurrence. +\v 5 Behold, \w I|strong="H3117"\w* intend \w to|strong="H5704"\w* build \w a|strong="H3068"\w* house \w for|strong="H5704"\w* \w the|strong="H3605"\w* name \w of|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w my|strong="H3605"\w* God, \w as|strong="H5704"\w* \w Yahweh|strong="H3068"\w* spoke \w to|strong="H5704"\w* \w David|strong="H3117"\w* \w my|strong="H3605"\w* father, saying, ‘\w Your|strong="H3605"\w* son, whom \w I|strong="H3117"\w* \w will|strong="H3478"\w* \w set|strong="H3427"\w* \w on|strong="H3117"\w* \w your|strong="H3605"\w* throne \w in|strong="H3427"\w* \w your|strong="H3605"\w* \w place|strong="H8478"\w* \w shall|strong="H3478"\w* build \w the|strong="H3605"\w* house \w for|strong="H5704"\w* \w my|strong="H3605"\w* name.’ +\v 6 \w Now|strong="H1961"\w* \w therefore|strong="H1961"\w* command \w that|strong="H8010"\w* cedar trees \w be|strong="H1961"\w* cut \w for|strong="H1961"\w* \w me|strong="H1961"\w* \w out|strong="H8147"\w* \w of|strong="H8147"\w* Lebanon. \w My|strong="H1961"\w* servants \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w with|strong="H8147"\w* \w your|strong="H1961"\w* servants; \w and|strong="H5483"\w* \w I|strong="H1961"\w* \w will|strong="H1961"\w* \w give|strong="H1961"\w* \w you|strong="H1961"\w* wages \w for|strong="H1961"\w* \w your|strong="H1961"\w* servants according \w to|strong="H1961"\w* all \w that|strong="H8010"\w* \w you|strong="H1961"\w* say. \w For|strong="H1961"\w* \w you|strong="H1961"\w* know \w that|strong="H8010"\w* \w there|strong="H1961"\w* \w is|strong="H1961"\w* nobody among \w us|strong="H1961"\w* who knows how \w to|strong="H1961"\w* cut timber \w like|strong="H1961"\w* \w the|strong="H1961"\w* Sidonians.” +\p +\v 7 When Hiram heard \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w Solomon|strong="H8010"\w*, \w he|strong="H3605"\w* rejoiced \w greatly|strong="H4428"\w*, \w and|strong="H4428"\w* \w said|strong="H1697"\w*, “Blessed \w is|strong="H1697"\w* \w Yahweh|strong="H3068"\w* today, \w who|strong="H3605"\w* \w has|strong="H4428"\w* given \w to|strong="H4428"\w* David \w a|strong="H3068"\w* wise son \w to|strong="H4428"\w* \w rule|strong="H4428"\w* \w over|strong="H4428"\w* \w this|strong="H1697"\w* great \w people|strong="H3808"\w*.” +\v 8 Hiram sent \w to|strong="H1961"\w* Solomon, saying, “\w I|strong="H8033"\w* \w have|strong="H1961"\w* heard \w the|strong="H1961"\w* message \w which|strong="H8033"\w* \w you|strong="H4725"\w* \w have|strong="H1961"\w* sent \w to|strong="H1961"\w* \w me|strong="H1961"\w*. \w I|strong="H8033"\w* \w will|strong="H1961"\w* do all \w your|strong="H1961"\w* desire concerning timber \w of|strong="H4725"\w* cedar, \w and|strong="H4941"\w* concerning cypress timber. +\v 9 \w My|strong="H5414"\w* servants \w will|strong="H3820"\w* \w bring|strong="H5414"\w* \w them|strong="H5414"\w* \w down|strong="H5414"\w* \w from|strong="H5921"\w* Lebanon \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*. \w I|strong="H5414"\w* \w will|strong="H3820"\w* \w make|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H5921"\w* rafts \w to|strong="H5921"\w* go \w by|strong="H5921"\w* \w sea|strong="H3220"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w place|strong="H5414"\w* \w that|strong="H5414"\w* \w you|strong="H5414"\w* specify \w to|strong="H5921"\w* \w me|strong="H5414"\w*, \w and|strong="H2451"\w* \w will|strong="H3820"\w* \w cause|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H5921"\w* \w be|strong="H3820"\w* broken \w up|strong="H5414"\w* there, \w and|strong="H2451"\w* \w you|strong="H5414"\w* \w will|strong="H3820"\w* \w receive|strong="H5414"\w* \w them|strong="H5414"\w*. \w You|strong="H5414"\w* \w will|strong="H3820"\w* accomplish \w my|strong="H5414"\w* desire, \w in|strong="H5921"\w* \w giving|strong="H5414"\w* food \w for|strong="H5921"\w* \w my|strong="H5414"\w* household.” +\p +\v 10 \w So|strong="H7235"\w* Hiram \w gave|strong="H7235"\w* \w Solomon|strong="H8010"\w* cedar timber \w and|strong="H1121"\w* cypress timber according \w to|strong="H4714"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* desire. +\v 11 Solomon \w gave|strong="H1961"\w* Hiram twenty thousand cors\f + \fr 5:11 \ft 20,000 cors would be about 120,000 bushels or about 4.2 megaliters of wheat, which would weigh about 3,270 metric tons.\f* \w of|strong="H1121"\w* wheat \w for|strong="H8034"\w* food \w to|strong="H1961"\w* \w his|strong="H3605"\w* household, \w and|strong="H1121"\w* twenty cors\f + \fr 5:11 \ft 20 cors is about 1,100 gallons or about 4220 liters.\f* \w of|strong="H1121"\w* pure oil. Solomon \w gave|strong="H1961"\w* \w this|strong="H3605"\w* \w to|strong="H1961"\w* Hiram \w year|strong="H1121"\w* \w by|strong="H8034"\w* \w year|strong="H1121"\w*. +\v 12 \w Yahweh|strong="H3068"\w* \w gave|strong="H1696"\w* Solomon wisdom, \w as|strong="H1961"\w* \w he|strong="H2568"\w* \w promised|strong="H1696"\w* \w him|strong="H1961"\w*. \w There|strong="H1961"\w* \w was|strong="H1961"\w* peace between Hiram \w and|strong="H2568"\w* Solomon, \w and|strong="H2568"\w* \w the|strong="H1961"\w* two \w of|strong="H7892"\w* \w them|strong="H1961"\w* \w made|strong="H1696"\w* \w a|strong="H3068"\w* treaty together. +\p +\v 13 \w King|strong="H5921"\w* Solomon raised \w a|strong="H3068"\w* levy \w out|strong="H3318"\w* \w of|strong="H4480"\w* \w all|strong="H5704"\w* Israel; \w and|strong="H6086"\w* \w the|strong="H5921"\w* levy \w was|strong="H6086"\w* thirty thousand men. +\v 14 \w He|strong="H3605"\w* sent \w them|strong="H8085"\w* \w to|strong="H8085"\w* Lebanon, ten thousand \w a|strong="H3068"\w* month \w by|strong="H3605"\w* courses: \w for|strong="H4428"\w* \w a|strong="H3068"\w* month \w they|strong="H5971"\w* \w were|strong="H5971"\w* \w in|strong="H4428"\w* Lebanon, \w and|strong="H4428"\w* two months \w at|strong="H4428"\w* home; \w and|strong="H4428"\w* Adoniram \w was|strong="H4428"\w* \w over|strong="H4428"\w* \w the|strong="H3605"\w* \w men|strong="H5971"\w* \w subject|strong="H8085"\w* \w to|strong="H8085"\w* forced labor. +\v 15 \w Solomon|strong="H8010"\w* \w had|strong="H1961"\w* seventy thousand \w who|strong="H3605"\w* bore burdens, \w and|strong="H7971"\w* eighty thousand \w who|strong="H3605"\w* \w were|strong="H1961"\w* stone cutters \w in|strong="H4428"\w* \w the|strong="H3605"\w* mountains, +\v 16 besides \w Solomon|strong="H8010"\w*’s chief officers who were \w over|strong="H7971"\w* \w the|strong="H7971"\w* work: three thousand three hundred who ruled \w over|strong="H7971"\w* \w the|strong="H7971"\w* people who labored \w in|strong="H8010"\w* \w the|strong="H7971"\w* work. +\v 17 \w The|strong="H6440"\w* \w king|strong="H6440"\w* commanded, \w and|strong="H3068"\w* \w they|strong="H3588"\w* \w cut|strong="H7272"\w* \w out|strong="H5414"\w* \w large|strong="H1004"\w* stones, costly stones, \w to|strong="H5704"\w* \w lay|strong="H5414"\w* \w the|strong="H6440"\w* foundation \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w with|strong="H1004"\w* \w worked|strong="H5704"\w* stone. +\v 18 Solomon’s builders \w and|strong="H3068"\w* Hiram’s builders \w and|strong="H3068"\w* \w the|strong="H3068"\w* Gebalites cut \w them|strong="H5117"\w*, \w and|strong="H3068"\w* prepared \w the|strong="H3068"\w* timber \w and|strong="H3068"\w* \w the|strong="H3068"\w* stones \w to|strong="H3068"\w* build \w the|strong="H3068"\w* house. +\c 6 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H5921"\w* four \w hundred|strong="H3967"\w* \w and|strong="H3967"\w* \w eightieth|strong="H8084"\w* \w year|strong="H8141"\w* \w after|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w had|strong="H3068"\w* \w come|strong="H1961"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w fourth|strong="H7243"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w*’s \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*, \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w month|strong="H2320"\w* \w Ziv|strong="H2099"\w*, \w which|strong="H1931"\w* \w is|strong="H3068"\w* \w the|strong="H5921"\w* \w second|strong="H8145"\w* \w month|strong="H2320"\w*, \w he|strong="H1931"\w* \w began|strong="H3478"\w* \w to|strong="H3318"\w* \w build|strong="H1129"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 2 \w The|strong="H3068"\w* \w house|strong="H1004"\w* \w which|strong="H3068"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w built|strong="H1129"\w* \w for|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w a|strong="H3068"\w* \w length|strong="H6967"\w* \w of|strong="H4428"\w* \w sixty|strong="H8346"\w* cubits,\f + \fr 6:2 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w and|strong="H3068"\w* its \w width|strong="H7341"\w* \w twenty|strong="H6242"\w*, \w and|strong="H3068"\w* its \w height|strong="H6967"\w* \w thirty|strong="H7970"\w* cubits. +\v 3 \w The|strong="H6440"\w* porch \w in|strong="H5921"\w* \w front|strong="H6440"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w temple|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* had \w a|strong="H3068"\w* \w length|strong="H5921"\w* \w of|strong="H1004"\w* \w twenty|strong="H6242"\w* cubits, \w which|strong="H1004"\w* \w was|strong="H1004"\w* \w along|strong="H5921"\w* \w the|strong="H6440"\w* \w width|strong="H7341"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w*. \w Ten|strong="H6235"\w* cubits \w was|strong="H1004"\w* \w its|strong="H5921"\w* \w width|strong="H7341"\w* \w in|strong="H5921"\w* \w front|strong="H6440"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w*. +\v 4 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w windows|strong="H2474"\w* \w of|strong="H1004"\w* fixed lattice \w work|strong="H6213"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w house|strong="H1004"\w*. +\v 5 \w Against|strong="H5921"\w* \w the|strong="H5921"\w* \w wall|strong="H7023"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*, \w he|strong="H6213"\w* \w built|strong="H1129"\w* floors \w all|strong="H5439"\w* \w around|strong="H5439"\w*, \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w walls|strong="H7023"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*, \w both|strong="H5921"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w temple|strong="H1004"\w* \w and|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w inner|strong="H1687"\w* \w sanctuary|strong="H1687"\w*; \w and|strong="H1004"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w side|strong="H5439"\w* \w rooms|strong="H1004"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*. +\v 6 \w The|strong="H3588"\w* \w lowest|strong="H8481"\w* \w floor|strong="H8484"\w* \w was|strong="H1004"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w* \w wide|strong="H7341"\w*, \w and|strong="H1004"\w* \w the|strong="H3588"\w* \w middle|strong="H8484"\w* \w was|strong="H1004"\w* \w six|strong="H8337"\w* \w cubits|strong="H2568"\w* \w wide|strong="H7341"\w*, \w and|strong="H1004"\w* \w the|strong="H3588"\w* \w third|strong="H7992"\w* \w was|strong="H1004"\w* \w seven|strong="H7651"\w* \w cubits|strong="H2568"\w* \w wide|strong="H7341"\w*; \w for|strong="H3588"\w* \w on|strong="H1004"\w* \w the|strong="H3588"\w* \w outside|strong="H2351"\w* \w he|strong="H3588"\w* \w made|strong="H5414"\w* \w offsets|strong="H4052"\w* \w in|strong="H1004"\w* \w the|strong="H3588"\w* \w wall|strong="H7023"\w* \w of|strong="H1004"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*, \w that|strong="H3588"\w* \w the|strong="H3588"\w* beams \w should|strong="H3588"\w* \w not|strong="H1115"\w* \w be|strong="H5414"\w* \w inserted|strong="H5414"\w* \w into|strong="H5414"\w* \w the|strong="H3588"\w* \w walls|strong="H7023"\w* \w of|strong="H1004"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w*. +\v 7 \w The|strong="H3605"\w* \w house|strong="H1004"\w*, \w when|strong="H8085"\w* \w it|strong="H3808"\w* \w was|strong="H1004"\w* \w under|strong="H1004"\w* \w construction|strong="H1129"\w*, \w was|strong="H1004"\w* \w built|strong="H1129"\w* \w of|strong="H1004"\w* stone \w prepared|strong="H8003"\w* \w at|strong="H1004"\w* \w the|strong="H3605"\w* \w quarry|strong="H4551"\w*; \w and|strong="H1004"\w* \w no|strong="H3808"\w* \w hammer|strong="H4717"\w* \w or|strong="H3808"\w* ax \w or|strong="H3808"\w* \w any|strong="H3605"\w* \w tool|strong="H3627"\w* \w of|strong="H1004"\w* \w iron|strong="H1270"\w* \w was|strong="H1004"\w* \w heard|strong="H8085"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w while|strong="H1004"\w* \w it|strong="H3808"\w* \w was|strong="H1004"\w* \w under|strong="H1004"\w* \w construction|strong="H1129"\w*. +\v 8 \w The|strong="H5921"\w* \w door|strong="H6607"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H8484"\w* \w side|strong="H3802"\w* \w rooms|strong="H1004"\w* \w was|strong="H1004"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w right|strong="H3233"\w* \w side|strong="H3802"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*. \w They|strong="H5921"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w by|strong="H5921"\w* \w winding|strong="H3883"\w* \w stairs|strong="H3883"\w* \w into|strong="H5927"\w* \w the|strong="H5921"\w* \w middle|strong="H8484"\w* \w floor|strong="H8484"\w*, \w and|strong="H1004"\w* \w out|strong="H4480"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w middle|strong="H8484"\w* \w into|strong="H5927"\w* \w the|strong="H5921"\w* \w third|strong="H7992"\w*. +\v 9 So \w he|strong="H1004"\w* \w built|strong="H1129"\w* \w the|strong="H1129"\w* \w house|strong="H1004"\w* \w and|strong="H1004"\w* \w finished|strong="H3615"\w* \w it|strong="H3615"\w*; \w and|strong="H1004"\w* \w he|strong="H1004"\w* \w covered|strong="H5603"\w* \w the|strong="H1129"\w* \w house|strong="H1004"\w* \w with|strong="H1004"\w* \w beams|strong="H1356"\w* \w and|strong="H1004"\w* \w planks|strong="H7713"\w* \w of|strong="H1004"\w* cedar. +\v 10 \w He|strong="H2568"\w* \w built|strong="H1129"\w* \w the|strong="H3605"\w* floors \w all|strong="H3605"\w* \w along|strong="H5921"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*, \w each|strong="H3605"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w* \w high|strong="H6967"\w*; \w and|strong="H1004"\w* \w they|strong="H5921"\w* rested \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w with|strong="H1004"\w* \w timbers|strong="H6086"\w* \w of|strong="H1004"\w* \w cedar|strong="H6967"\w*. +\p +\v 11 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Solomon|strong="H8010"\w*, \w saying|strong="H1697"\w*, +\v 12 “\w Concerning|strong="H1697"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w* \w which|strong="H1697"\w* \w you|strong="H3605"\w* \w are|strong="H1697"\w* \w building|strong="H1129"\w*, if \w you|strong="H3605"\w* \w will|strong="H1004"\w* \w walk|strong="H3212"\w* \w in|strong="H6213"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w*, \w and|strong="H6965"\w* \w execute|strong="H6213"\w* \w my|strong="H8104"\w* \w ordinances|strong="H4941"\w*, \w and|strong="H6965"\w* \w keep|strong="H8104"\w* \w all|strong="H3605"\w* \w my|strong="H8104"\w* \w commandments|strong="H4687"\w* \w to|strong="H1696"\w* \w walk|strong="H3212"\w* \w in|strong="H6213"\w* \w them|strong="H6213"\w*, \w then|strong="H6965"\w* \w I|strong="H1697"\w* \w will|strong="H1004"\w* \w establish|strong="H6965"\w* \w my|strong="H8104"\w* \w word|strong="H1697"\w* \w with|strong="H1004"\w* \w you|strong="H3605"\w*, \w which|strong="H1697"\w* \w I|strong="H1697"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w David|strong="H1732"\w* \w your|strong="H3605"\w* father. +\v 13 \w I|strong="H3808"\w* \w will|strong="H5971"\w* \w dwell|strong="H7931"\w* \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w will|strong="H5971"\w* \w not|strong="H3808"\w* \w forsake|strong="H5800"\w* \w my|strong="H8432"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*.” +\p +\v 14 So \w Solomon|strong="H8010"\w* \w built|strong="H1129"\w* \w the|strong="H1129"\w* \w house|strong="H1004"\w* \w and|strong="H1004"\w* \w finished|strong="H3615"\w* \w it|strong="H1129"\w*. +\v 15 \w He|strong="H5704"\w* \w built|strong="H1129"\w* \w the|strong="H1129"\w* \w walls|strong="H7023"\w* \w of|strong="H1004"\w* \w the|strong="H1129"\w* \w house|strong="H1004"\w* \w within|strong="H1004"\w* \w with|strong="H1004"\w* \w boards|strong="H6763"\w* \w of|strong="H1004"\w* cedar; \w from|strong="H5704"\w* \w the|strong="H1129"\w* \w floor|strong="H7172"\w* \w of|strong="H1004"\w* \w the|strong="H1129"\w* \w house|strong="H1004"\w* \w to|strong="H5704"\w* \w the|strong="H1129"\w* \w walls|strong="H7023"\w* \w of|strong="H1004"\w* \w the|strong="H1129"\w* \w ceiling|strong="H7023"\w*, \w he|strong="H5704"\w* \w covered|strong="H6823"\w* \w them|strong="H5704"\w* \w on|strong="H1004"\w* \w the|strong="H1129"\w* \w inside|strong="H1004"\w* \w with|strong="H1004"\w* \w wood|strong="H6086"\w*. \w He|strong="H5704"\w* \w covered|strong="H6823"\w* \w the|strong="H1129"\w* \w floor|strong="H7172"\w* \w of|strong="H1004"\w* \w the|strong="H1129"\w* \w house|strong="H1004"\w* \w with|strong="H1004"\w* \w cypress|strong="H1265"\w* \w boards|strong="H6763"\w*. +\v 16 \w He|strong="H5704"\w* \w built|strong="H1129"\w* \w twenty|strong="H6242"\w* cubits \w of|strong="H1004"\w* \w the|strong="H4480"\w* \w back|strong="H1004"\w* \w part|strong="H3411"\w* \w of|strong="H1004"\w* \w the|strong="H4480"\w* \w house|strong="H1004"\w* \w with|strong="H1004"\w* \w boards|strong="H6763"\w* \w of|strong="H1004"\w* cedar \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w floor|strong="H7172"\w* \w to|strong="H5704"\w* \w the|strong="H4480"\w* \w ceiling|strong="H7023"\w*. \w He|strong="H5704"\w* \w built|strong="H1129"\w* \w this|strong="H1004"\w* \w within|strong="H1004"\w*, \w for|strong="H5704"\w* \w an|strong="H1129"\w* \w inner|strong="H1687"\w* \w sanctuary|strong="H6944"\w*, \w even|strong="H5704"\w* \w for|strong="H5704"\w* \w the|strong="H4480"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w*. +\v 17 \w In|strong="H1004"\w* front \w of|strong="H1004"\w* \w the|strong="H1961"\w* \w temple|strong="H1004"\w* \w sanctuary|strong="H1004"\w* \w was|strong="H1961"\w* forty cubits long. +\v 18 \w There|strong="H3605"\w* \w was|strong="H1004"\w* cedar \w on|strong="H7200"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w within|strong="H1004"\w*, \w carved|strong="H4734"\w* \w with|strong="H1004"\w* buds \w and|strong="H1004"\w* open \w flowers|strong="H6731"\w*. \w All|strong="H3605"\w* \w was|strong="H1004"\w* cedar. \w No|strong="H3605"\w* stone \w was|strong="H1004"\w* \w visible|strong="H7200"\w*. +\v 19 \w He|strong="H8033"\w* \w prepared|strong="H3559"\w* \w an|strong="H5414"\w* \w inner|strong="H1687"\w* \w sanctuary|strong="H1687"\w* \w in|strong="H3068"\w* \w the|strong="H5414"\w* \w middle|strong="H8432"\w* \w of|strong="H1004"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w* \w within|strong="H8432"\w*, \w to|strong="H3068"\w* \w set|strong="H5414"\w* \w the|strong="H5414"\w* ark \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w* \w there|strong="H8033"\w*. +\v 20 \w Within|strong="H6440"\w* \w the|strong="H6440"\w* \w inner|strong="H1687"\w* \w sanctuary|strong="H1687"\w* \w was|strong="H6967"\w* \w twenty|strong="H6242"\w* cubits \w in|strong="H6440"\w* \w length|strong="H6967"\w*, \w and|strong="H6242"\w* \w twenty|strong="H6242"\w* cubits \w in|strong="H6440"\w* \w width|strong="H7341"\w*, \w and|strong="H6242"\w* \w twenty|strong="H6242"\w* cubits \w in|strong="H6440"\w* \w its|strong="H6440"\w* \w height|strong="H6967"\w*. \w He|strong="H1687"\w* \w overlaid|strong="H6823"\w* \w it|strong="H6440"\w* \w with|strong="H6440"\w* \w pure|strong="H5462"\w* \w gold|strong="H2091"\w*. \w He|strong="H1687"\w* \w covered|strong="H6823"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w* \w with|strong="H6440"\w* \w cedar|strong="H6967"\w*. +\v 21 \w So|strong="H5674"\w* \w Solomon|strong="H8010"\w* \w overlaid|strong="H6823"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w within|strong="H1004"\w* \w with|strong="H1004"\w* \w pure|strong="H5462"\w* \w gold|strong="H2091"\w*. \w He|strong="H1004"\w* \w drew|strong="H5674"\w* \w chains|strong="H7572"\w* \w of|strong="H1004"\w* \w gold|strong="H2091"\w* \w across|strong="H5674"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w inner|strong="H1687"\w* \w sanctuary|strong="H1687"\w*, \w and|strong="H1004"\w* \w he|strong="H1004"\w* \w overlaid|strong="H6823"\w* \w it|strong="H6440"\w* \w with|strong="H1004"\w* \w gold|strong="H2091"\w*. +\v 22 \w He|strong="H5704"\w* \w overlaid|strong="H6823"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w house|strong="H1004"\w* \w with|strong="H1004"\w* \w gold|strong="H2091"\w*, \w until|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w was|strong="H1004"\w* \w finished|strong="H8552"\w*. \w He|strong="H5704"\w* also \w overlaid|strong="H6823"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w altar|strong="H4196"\w* \w that|strong="H3605"\w* belonged \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w inner|strong="H1687"\w* \w sanctuary|strong="H1687"\w* \w with|strong="H1004"\w* \w gold|strong="H2091"\w*. +\p +\v 23 \w In|strong="H6213"\w* \w the|strong="H6213"\w* \w inner|strong="H1687"\w* \w sanctuary|strong="H1687"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w two|strong="H8147"\w* \w cherubim|strong="H3742"\w*\f + \fr 6:23 \ft “Cherubim” is plural of “cherub”, an angelic being.\f* \w of|strong="H6086"\w* \w olive|strong="H8081"\w* \w wood|strong="H6086"\w*, \w each|strong="H8147"\w* \w ten|strong="H6235"\w* cubits \w high|strong="H6967"\w*. +\v 24 \w Five|strong="H2568"\w* \w cubits|strong="H2568"\w* \w was|strong="H3742"\w* \w the|strong="H5704"\w* length \w of|strong="H3671"\w* \w one|strong="H3671"\w* \w wing|strong="H3671"\w* \w of|strong="H3671"\w* \w the|strong="H5704"\w* \w cherub|strong="H3742"\w*, \w and|strong="H2568"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w* \w was|strong="H3742"\w* \w the|strong="H5704"\w* length \w of|strong="H3671"\w* \w the|strong="H5704"\w* \w other|strong="H8145"\w* \w wing|strong="H3671"\w* \w of|strong="H3671"\w* \w the|strong="H5704"\w* \w cherub|strong="H3742"\w*. \w From|strong="H5704"\w* \w the|strong="H5704"\w* tip \w of|strong="H3671"\w* \w one|strong="H3671"\w* \w wing|strong="H3671"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* tip \w of|strong="H3671"\w* \w the|strong="H5704"\w* \w other|strong="H8145"\w* \w was|strong="H3742"\w* \w ten|strong="H6235"\w* \w cubits|strong="H2568"\w*. +\v 25 \w The|strong="H8147"\w* \w other|strong="H8145"\w* \w cherub|strong="H3742"\w* \w was|strong="H3742"\w* \w ten|strong="H6235"\w* cubits. \w Both|strong="H8147"\w* \w the|strong="H8147"\w* \w cherubim|strong="H3742"\w* \w were|strong="H3742"\w* \w of|strong="H8147"\w* \w one|strong="H8147"\w* \w measure|strong="H4060"\w* \w and|strong="H8147"\w* \w one|strong="H8147"\w* \w form|strong="H7095"\w*. +\v 26 \w One|strong="H3651"\w* \w cherub|strong="H3742"\w* \w was|strong="H6967"\w* \w ten|strong="H6235"\w* cubits \w high|strong="H6967"\w*, \w and|strong="H3742"\w* \w so|strong="H3651"\w* \w was|strong="H6967"\w* \w the|strong="H3651"\w* \w other|strong="H8145"\w* \w cherub|strong="H3742"\w*. +\v 27 \w He|strong="H1004"\w* \w set|strong="H5414"\w* \w the|strong="H5414"\w* \w cherubim|strong="H3742"\w* \w within|strong="H8432"\w* \w the|strong="H5414"\w* \w inner|strong="H6442"\w* \w house|strong="H1004"\w*. \w The|strong="H5414"\w* \w wings|strong="H3671"\w* \w of|strong="H1004"\w* \w the|strong="H5414"\w* \w cherubim|strong="H3742"\w* \w were|strong="H3742"\w* \w stretched|strong="H6566"\w* \w out|strong="H6566"\w*, \w so|strong="H5414"\w* \w that|strong="H5414"\w* \w the|strong="H5414"\w* \w wing|strong="H3671"\w* \w of|strong="H1004"\w* \w the|strong="H5414"\w* \w one|strong="H3671"\w* \w touched|strong="H5060"\w* \w the|strong="H5414"\w* \w one|strong="H3671"\w* \w wall|strong="H7023"\w* \w and|strong="H1004"\w* \w the|strong="H5414"\w* \w wing|strong="H3671"\w* \w of|strong="H1004"\w* \w the|strong="H5414"\w* \w other|strong="H8145"\w* \w cherub|strong="H3742"\w* \w touched|strong="H5060"\w* \w the|strong="H5414"\w* \w other|strong="H8145"\w* \w wall|strong="H7023"\w*; \w and|strong="H1004"\w* \w their|strong="H5414"\w* \w wings|strong="H3671"\w* \w touched|strong="H5060"\w* \w one|strong="H3671"\w* \w another|strong="H8145"\w* \w in|strong="H1004"\w* \w the|strong="H5414"\w* \w middle|strong="H8432"\w* \w of|strong="H1004"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w*. +\v 28 He \w overlaid|strong="H6823"\w* \w the|strong="H6823"\w* \w cherubim|strong="H3742"\w* \w with|strong="H6823"\w* \w gold|strong="H2091"\w*. +\p +\v 29 \w He|strong="H3605"\w* \w carved|strong="H7049"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w walls|strong="H7023"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w around|strong="H4524"\w* \w with|strong="H1004"\w* \w carved|strong="H7049"\w* \w figures|strong="H4734"\w* \w of|strong="H1004"\w* \w cherubim|strong="H3742"\w*, \w palm|strong="H8561"\w* \w trees|strong="H8561"\w*, \w and|strong="H1004"\w* \w open|strong="H6440"\w* \w flowers|strong="H6731"\w*, \w inside|strong="H1004"\w* \w and|strong="H1004"\w* \w outside|strong="H2435"\w*. +\v 30 \w He|strong="H1004"\w* \w overlaid|strong="H6823"\w* \w the|strong="H6823"\w* \w floor|strong="H7172"\w* \w of|strong="H1004"\w* \w the|strong="H6823"\w* \w house|strong="H1004"\w* \w with|strong="H1004"\w* \w gold|strong="H2091"\w*, \w inside|strong="H1004"\w* \w and|strong="H1004"\w* \w outside|strong="H2435"\w*. +\v 31 \w For|strong="H6213"\w* \w the|strong="H6213"\w* \w entrance|strong="H6607"\w* \w of|strong="H6086"\w* \w the|strong="H6213"\w* \w inner|strong="H1687"\w* \w sanctuary|strong="H1687"\w*, \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w doors|strong="H1817"\w* \w of|strong="H6086"\w* \w olive|strong="H8081"\w* \w wood|strong="H6086"\w*. \w The|strong="H6213"\w* lintel \w and|strong="H6086"\w* \w door|strong="H6607"\w* \w posts|strong="H4201"\w* were \w a|strong="H3068"\w* \w fifth|strong="H2549"\w* \w part|strong="H2549"\w* \w of|strong="H6086"\w* \w the|strong="H6213"\w* wall. +\v 32 \w So|strong="H5921"\w* \w he|strong="H8147"\w* \w made|strong="H6086"\w* \w two|strong="H8147"\w* \w doors|strong="H1817"\w* \w of|strong="H6086"\w* \w olive|strong="H8081"\w* \w wood|strong="H6086"\w*; \w and|strong="H6086"\w* \w he|strong="H8147"\w* \w carved|strong="H7049"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w carvings|strong="H4734"\w* \w of|strong="H6086"\w* \w cherubim|strong="H3742"\w*, \w palm|strong="H8561"\w* \w trees|strong="H6086"\w*, \w and|strong="H6086"\w* open \w flowers|strong="H6731"\w*, \w and|strong="H6086"\w* \w overlaid|strong="H6823"\w* \w them|strong="H5921"\w* \w with|strong="H5921"\w* \w gold|strong="H2091"\w*. \w He|strong="H8147"\w* \w spread|strong="H3742"\w* \w the|strong="H5921"\w* \w gold|strong="H2091"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w cherubim|strong="H3742"\w* \w and|strong="H6086"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w palm|strong="H8561"\w* \w trees|strong="H6086"\w*. +\v 33 \w He|strong="H6213"\w* \w also|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w entrance|strong="H6607"\w* \w of|strong="H6086"\w* \w the|strong="H6213"\w* \w temple|strong="H1964"\w* \w door|strong="H6607"\w* \w posts|strong="H4201"\w* \w of|strong="H6086"\w* \w olive|strong="H8081"\w* \w wood|strong="H6086"\w*, \w out|strong="H6213"\w* \w of|strong="H6086"\w* \w a|strong="H3068"\w* \w fourth|strong="H7243"\w* \w part|strong="H7243"\w* \w of|strong="H6086"\w* \w the|strong="H6213"\w* wall, +\v 34 \w and|strong="H6086"\w* \w two|strong="H8147"\w* \w doors|strong="H1817"\w* \w of|strong="H6086"\w* \w cypress|strong="H1265"\w* \w wood|strong="H6086"\w*. \w The|strong="H8147"\w* \w two|strong="H8147"\w* \w leaves|strong="H1817"\w* \w of|strong="H6086"\w* \w the|strong="H8147"\w* \w one|strong="H7050"\w* \w door|strong="H1817"\w* \w were|strong="H8147"\w* \w folding|strong="H1550"\w*, \w and|strong="H6086"\w* \w the|strong="H8147"\w* \w two|strong="H8147"\w* \w leaves|strong="H1817"\w* \w of|strong="H6086"\w* \w the|strong="H8147"\w* \w other|strong="H8145"\w* \w door|strong="H1817"\w* \w were|strong="H8147"\w* \w folding|strong="H1550"\w*. +\v 35 \w He|strong="H5921"\w* \w carved|strong="H7049"\w* \w cherubim|strong="H3742"\w*, \w palm|strong="H8561"\w* \w trees|strong="H8561"\w*, \w and|strong="H2091"\w* open \w flowers|strong="H6731"\w*; \w and|strong="H2091"\w* \w he|strong="H5921"\w* \w overlaid|strong="H6823"\w* \w them|strong="H5921"\w* \w with|strong="H5921"\w* \w gold|strong="H2091"\w* \w fitted|strong="H3474"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w engraved|strong="H2707"\w* \w work|strong="H2707"\w*. +\v 36 \w He|strong="H1129"\w* \w built|strong="H1129"\w* \w the|strong="H1129"\w* \w inner|strong="H6442"\w* \w court|strong="H2691"\w* \w with|strong="H2691"\w* \w three|strong="H7969"\w* courses \w of|strong="H2905"\w* \w cut|strong="H1496"\w* \w stone|strong="H1496"\w* \w and|strong="H7969"\w* \w a|strong="H3068"\w* course \w of|strong="H2905"\w* cedar \w beams|strong="H3773"\w*. +\p +\v 37 \w The|strong="H3068"\w* \w foundation|strong="H3245"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w was|strong="H3068"\w* \w laid|strong="H3245"\w* \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w fourth|strong="H7243"\w* \w year|strong="H8141"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w month|strong="H3391"\w* \w Ziv|strong="H2099"\w*. +\v 38 \w In|strong="H8141"\w* \w the|strong="H3605"\w* \w eleventh|strong="H6240"\w* \w year|strong="H8141"\w*, \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w month|strong="H2320"\w* Bul, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H3605"\w* \w eighth|strong="H8066"\w* \w month|strong="H2320"\w*, \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w was|strong="H1931"\w* \w finished|strong="H3615"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w parts|strong="H1697"\w* \w and|strong="H4941"\w* \w according|strong="H4941"\w* \w to|strong="H1004"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* specifications. \w So|strong="H1697"\w* \w he|strong="H1931"\w* \w spent|strong="H3615"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w* \w building|strong="H1129"\w* \w it|strong="H1931"\w*. +\c 7 +\p +\v 1 \w Solomon|strong="H8010"\w* \w was|strong="H1004"\w* \w building|strong="H1129"\w* \w his|strong="H3605"\w* own \w house|strong="H1004"\w* \w thirteen|strong="H7969"\w* \w years|strong="H8141"\w*, \w and|strong="H1004"\w* \w he|strong="H3605"\w* \w finished|strong="H3615"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*. +\v 2 \w For|strong="H5921"\w* \w he|strong="H1004"\w* \w built|strong="H1129"\w* \w the|strong="H5921"\w* \w House|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w Forest|strong="H3293"\w* \w of|strong="H1004"\w* \w Lebanon|strong="H3844"\w*. \w Its|strong="H5921"\w* \w length|strong="H6967"\w* \w was|strong="H1004"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* cubits,\f + \fr 7:2 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w its|strong="H5921"\w* \w width|strong="H7341"\w* \w fifty|strong="H2572"\w* cubits, \w and|strong="H3967"\w* \w its|strong="H5921"\w* \w height|strong="H6967"\w* \w thirty|strong="H7970"\w* cubits, \w on|strong="H5921"\w* four \w rows|strong="H2905"\w* \w of|strong="H1004"\w* \w cedar|strong="H6967"\w* \w pillars|strong="H5982"\w*, \w with|strong="H1004"\w* \w cedar|strong="H6967"\w* \w beams|strong="H3773"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w pillars|strong="H5982"\w*. +\v 3 \w It|strong="H5921"\w* \w was|strong="H5982"\w* \w covered|strong="H5603"\w* \w with|strong="H5921"\w* cedar \w above|strong="H4605"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* forty-five \w beams|strong="H6763"\w* \w that|strong="H6763"\w* \w were|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w pillars|strong="H5982"\w*, \w fifteen|strong="H2568"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w row|strong="H2905"\w*. +\v 4 There \w were|strong="H7969"\w* beams \w in|strong="H6471"\w* \w three|strong="H7969"\w* \w rows|strong="H2905"\w*, \w and|strong="H7969"\w* \w window|strong="H4237"\w* \w was|strong="H4237"\w* facing \w window|strong="H4237"\w* \w in|strong="H6471"\w* \w three|strong="H7969"\w* \w ranks|strong="H6471"\w*. +\v 5 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w doors|strong="H6607"\w* \w and|strong="H7969"\w* \w posts|strong="H4201"\w* \w were|strong="H7969"\w* \w made|strong="H3605"\w* \w square|strong="H7251"\w* \w with|strong="H3605"\w* beams; \w and|strong="H7969"\w* \w window|strong="H4237"\w* \w was|strong="H3605"\w* facing \w window|strong="H4237"\w* \w in|strong="H6607"\w* \w three|strong="H7969"\w* \w ranks|strong="H6471"\w*. +\v 6 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6440"\w* hall \w of|strong="H6440"\w* \w pillars|strong="H5982"\w*. \w Its|strong="H5921"\w* \w length|strong="H5921"\w* \w was|strong="H5982"\w* \w fifty|strong="H2572"\w* cubits \w and|strong="H7970"\w* \w its|strong="H5921"\w* \w width|strong="H7341"\w* \w thirty|strong="H7970"\w* cubits, \w with|strong="H6213"\w* \w a|strong="H3068"\w* porch \w before|strong="H6440"\w* \w them|strong="H5921"\w*, \w and|strong="H7970"\w* \w pillars|strong="H5982"\w* \w and|strong="H7970"\w* \w a|strong="H3068"\w* \w threshold|strong="H5646"\w* \w before|strong="H6440"\w* \w them|strong="H5921"\w*. +\v 7 \w He|strong="H5704"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* porch \w of|strong="H3678"\w* \w the|strong="H6213"\w* \w throne|strong="H3678"\w* \w where|strong="H8033"\w* \w he|strong="H5704"\w* \w was|strong="H6213"\w* \w to|strong="H5704"\w* \w judge|strong="H8199"\w*, \w even|strong="H5704"\w* \w the|strong="H6213"\w* porch \w of|strong="H3678"\w* \w judgment|strong="H4941"\w*; \w and|strong="H4941"\w* \w it|strong="H6213"\w* \w was|strong="H6213"\w* \w covered|strong="H5603"\w* \w with|strong="H6213"\w* cedar \w from|strong="H5704"\w* \w floor|strong="H7172"\w* \w to|strong="H5704"\w* \w floor|strong="H7172"\w*. +\v 8 \w His|strong="H3947"\w* \w house|strong="H1004"\w* \w where|strong="H8033"\w* \w he|strong="H8033"\w* \w was|strong="H1961"\w* \w to|strong="H1961"\w* \w dwell|strong="H3427"\w*, \w the|strong="H3947"\w* \w other|strong="H2088"\w* \w court|strong="H2691"\w* \w within|strong="H1004"\w* \w the|strong="H3947"\w* porch, \w was|strong="H1961"\w* \w of|strong="H1004"\w* \w the|strong="H3947"\w* \w same|strong="H2088"\w* construction. \w He|strong="H8033"\w* \w made|strong="H6213"\w* \w also|strong="H6213"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w for|strong="H6213"\w* \w Pharaoh|strong="H6547"\w*’s \w daughter|strong="H1323"\w* (whom \w Solomon|strong="H8010"\w* \w had|strong="H1961"\w* \w taken|strong="H3947"\w* \w as|strong="H1961"\w* wife), \w like|strong="H1961"\w* \w this|strong="H2088"\w* porch. +\v 9 \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w were|strong="H1419"\w* \w of|strong="H1004"\w* \w costly|strong="H3368"\w* \w stones|strong="H1496"\w*, \w even|strong="H5704"\w* \w of|strong="H1004"\w* \w stone|strong="H1496"\w* \w cut|strong="H1496"\w* according \w to|strong="H5704"\w* \w measure|strong="H4060"\w*, \w sawed|strong="H1641"\w* \w with|strong="H1004"\w* \w saws|strong="H4050"\w*, \w inside|strong="H1004"\w* \w and|strong="H1419"\w* \w outside|strong="H2351"\w*, \w even|strong="H5704"\w* \w from|strong="H5704"\w* \w the|strong="H3605"\w* \w foundation|strong="H4527"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w coping|strong="H2947"\w*, \w and|strong="H1419"\w* \w so|strong="H5704"\w* \w on|strong="H1004"\w* \w the|strong="H3605"\w* \w outside|strong="H2351"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w great|strong="H1419"\w* \w court|strong="H2691"\w*. +\v 10 \w The|strong="H3245"\w* \w foundation|strong="H3245"\w* \w was|strong="H1419"\w* \w of|strong="H1419"\w* \w costly|strong="H3368"\w* stones, even \w great|strong="H1419"\w* stones, stones \w of|strong="H1419"\w* \w ten|strong="H6235"\w* cubits \w and|strong="H1419"\w* stones \w of|strong="H1419"\w* \w eight|strong="H8083"\w* cubits. +\v 11 \w Above|strong="H4605"\w* \w were|strong="H4605"\w* \w costly|strong="H3368"\w* \w stones|strong="H1496"\w*, even \w cut|strong="H1496"\w* \w stone|strong="H1496"\w*, according \w to|strong="H4605"\w* \w measure|strong="H4060"\w*, \w and|strong="H4605"\w* cedar wood. +\v 12 \w The|strong="H3068"\w* \w great|strong="H1419"\w* \w court|strong="H2691"\w* \w around|strong="H5439"\w* \w had|strong="H3068"\w* \w three|strong="H7969"\w* \w courses|strong="H5439"\w* \w of|strong="H1004"\w* \w cut|strong="H1496"\w* \w stone|strong="H1496"\w* \w with|strong="H1004"\w* \w a|strong="H3068"\w* course \w of|strong="H1004"\w* cedar \w beams|strong="H3773"\w*, \w like|strong="H1004"\w* \w the|strong="H3068"\w* \w inner|strong="H6442"\w* \w court|strong="H2691"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* porch \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w*. +\p +\v 13 \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w sent|strong="H7971"\w* \w and|strong="H7971"\w* \w brought|strong="H3947"\w* \w Hiram|strong="H2438"\w* \w out|strong="H7971"\w* \w of|strong="H4428"\w* \w Tyre|strong="H6865"\w*. +\v 14 \w He|strong="H1931"\w* \w was|strong="H1931"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* widow \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* \w Naphtali|strong="H5321"\w*, \w and|strong="H1121"\w* \w his|strong="H3605"\w* \w father|strong="H1121"\w* \w was|strong="H1931"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w Tyre|strong="H6876"\w*, \w a|strong="H3068"\w* \w worker|strong="H6213"\w* \w in|strong="H6213"\w* \w bronze|strong="H5178"\w*; \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w wisdom|strong="H2451"\w* \w and|strong="H1121"\w* \w understanding|strong="H8394"\w* \w and|strong="H1121"\w* \w skill|strong="H2451"\w* \w to|strong="H6213"\w* \w work|strong="H4399"\w* \w all|strong="H3605"\w* \w works|strong="H6213"\w* \w in|strong="H6213"\w* \w bronze|strong="H5178"\w*. \w He|strong="H1931"\w* \w came|strong="H4428"\w* \w to|strong="H6213"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w and|strong="H1121"\w* \w performed|strong="H6213"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w work|strong="H4399"\w*. +\v 15 \w For|strong="H5178"\w* \w he|strong="H8147"\w* \w fashioned|strong="H6696"\w* \w the|strong="H5437"\w* \w two|strong="H8147"\w* \w pillars|strong="H5982"\w* \w of|strong="H5982"\w* \w bronze|strong="H5178"\w*, \w eighteen|strong="H8083"\w* cubits \w high|strong="H6967"\w* \w apiece|strong="H5982"\w*; \w and|strong="H8147"\w* \w a|strong="H3068"\w* \w line|strong="H2339"\w* \w of|strong="H5982"\w* \w twelve|strong="H8147"\w* cubits \w encircled|strong="H5437"\w* \w either|strong="H8145"\w* \w of|strong="H5982"\w* \w them|strong="H8147"\w*. +\v 16 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w two|strong="H8147"\w* \w capitals|strong="H3805"\w* \w of|strong="H7218"\w* \w molten|strong="H3332"\w* \w bronze|strong="H5178"\w* \w to|strong="H6213"\w* \w set|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tops|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w pillars|strong="H5982"\w*. \w The|strong="H5921"\w* \w height|strong="H6967"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w one|strong="H6213"\w* \w capital|strong="H3805"\w* \w was|strong="H7218"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w*, \w and|strong="H7218"\w* \w the|strong="H5921"\w* \w height|strong="H6967"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w other|strong="H8145"\w* \w capital|strong="H3805"\w* \w was|strong="H7218"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w*. +\v 17 There \w were|strong="H7218"\w* \w nets|strong="H7638"\w* \w of|strong="H7218"\w* \w checker|strong="H7639"\w* \w work|strong="H4639"\w* \w and|strong="H7218"\w* \w wreaths|strong="H1434"\w* \w of|strong="H7218"\w* \w chain|strong="H8333"\w* \w work|strong="H4639"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w capitals|strong="H3805"\w* \w which|strong="H3805"\w* \w were|strong="H7218"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w top|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w pillars|strong="H5982"\w*: \w seven|strong="H7651"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w one|strong="H7651"\w* \w capital|strong="H3805"\w*, \w and|strong="H7218"\w* \w seven|strong="H7651"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w other|strong="H8145"\w* \w capital|strong="H3805"\w*. +\v 18 \w So|strong="H3651"\w* \w he|strong="H3651"\w* \w made|strong="H6213"\w* \w the|strong="H5921"\w* \w pillars|strong="H5982"\w*; \w and|strong="H7218"\w* there \w were|strong="H7218"\w* \w two|strong="H8147"\w* \w rows|strong="H2905"\w* \w of|strong="H7218"\w* \w pomegranates|strong="H7416"\w* \w around|strong="H5439"\w* \w the|strong="H5921"\w* \w one|strong="H6213"\w* \w network|strong="H7639"\w*, \w to|strong="H5921"\w* \w cover|strong="H3680"\w* \w the|strong="H5921"\w* \w capitals|strong="H3805"\w* \w that|strong="H3651"\w* \w were|strong="H7218"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w top|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w pillars|strong="H5982"\w*; \w and|strong="H7218"\w* \w he|strong="H3651"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w other|strong="H8145"\w* \w capital|strong="H3805"\w*. +\v 19 \w The|strong="H5921"\w* \w capitals|strong="H3805"\w* \w that|strong="H3805"\w* \w were|strong="H7218"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w top|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w pillars|strong="H5982"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* porch \w were|strong="H7218"\w* \w of|strong="H7218"\w* \w lily|strong="H7799"\w* \w work|strong="H4639"\w*, four cubits. +\v 20 There \w were|strong="H8147"\w* \w capitals|strong="H3805"\w* \w above|strong="H4605"\w* \w also|strong="H1571"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w pillars|strong="H5982"\w*, \w close|strong="H5980"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* belly \w which|strong="H3805"\w* \w was|strong="H3805"\w* \w beside|strong="H5921"\w* \w the|strong="H5921"\w* \w network|strong="H7639"\w*. There \w were|strong="H8147"\w* \w two|strong="H8147"\w* \w hundred|strong="H3967"\w* \w pomegranates|strong="H7416"\w* \w in|strong="H5921"\w* \w rows|strong="H2905"\w* \w around|strong="H5439"\w* \w the|strong="H5921"\w* \w other|strong="H8145"\w* \w capital|strong="H3805"\w*. +\v 21 \w He|strong="H7121"\w* \w set|strong="H6965"\w* \w up|strong="H6965"\w* \w the|strong="H7121"\w* \w pillars|strong="H5982"\w* \w at|strong="H6965"\w* \w the|strong="H7121"\w* porch \w of|strong="H8034"\w* \w the|strong="H7121"\w* \w temple|strong="H1964"\w*. \w He|strong="H7121"\w* \w set|strong="H6965"\w* \w up|strong="H6965"\w* \w the|strong="H7121"\w* \w right|strong="H3233"\w* \w pillar|strong="H5982"\w* \w and|strong="H6965"\w* \w called|strong="H7121"\w* \w its|strong="H6965"\w* \w name|strong="H8034"\w* \w Jachin|strong="H3199"\w*; \w and|strong="H6965"\w* \w he|strong="H7121"\w* \w set|strong="H6965"\w* \w up|strong="H6965"\w* \w the|strong="H7121"\w* \w left|strong="H8042"\w* \w pillar|strong="H5982"\w* \w and|strong="H6965"\w* \w called|strong="H7121"\w* \w its|strong="H6965"\w* \w name|strong="H8034"\w* \w Boaz|strong="H1162"\w*. +\v 22 \w On|strong="H5921"\w* \w the|strong="H5921"\w* \w tops|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w pillars|strong="H5982"\w* \w was|strong="H7218"\w* \w lily|strong="H7799"\w* \w work|strong="H4399"\w*. \w So|strong="H5921"\w* \w the|strong="H5921"\w* \w work|strong="H4399"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w pillars|strong="H5982"\w* \w was|strong="H7218"\w* \w finished|strong="H8552"\w*. +\p +\v 23 \w He|strong="H5704"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* molten \w sea|strong="H3220"\w* \w ten|strong="H6235"\w* \w cubits|strong="H2568"\w* \w from|strong="H5704"\w* \w brim|strong="H8193"\w* \w to|strong="H5704"\w* \w brim|strong="H8193"\w*, \w round|strong="H5439"\w* \w in|strong="H6213"\w* shape. \w Its|strong="H6213"\w* \w height|strong="H6967"\w* \w was|strong="H6967"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w*; \w and|strong="H7970"\w* \w a|strong="H3068"\w* line \w of|strong="H8193"\w* \w thirty|strong="H7970"\w* \w cubits|strong="H2568"\w* \w encircled|strong="H5437"\w* \w it|strong="H6213"\w*. +\v 24 \w Under|strong="H8478"\w* \w its|strong="H8478"\w* \w brim|strong="H8193"\w* \w around|strong="H5439"\w* \w there|strong="H8478"\w* \w were|strong="H8147"\w* buds which \w encircled|strong="H5437"\w* \w it|strong="H5439"\w* \w for|strong="H8478"\w* \w ten|strong="H6235"\w* cubits, \w encircling|strong="H5437"\w* \w the|strong="H8478"\w* \w sea|strong="H3220"\w*. \w The|strong="H8478"\w* buds \w were|strong="H8147"\w* \w in|strong="H3220"\w* \w two|strong="H8147"\w* \w rows|strong="H2905"\w*, \w cast|strong="H3332"\w* when \w it|strong="H5439"\w* \w was|strong="H8193"\w* \w cast|strong="H3332"\w*. +\v 25 \w It|strong="H5921"\w* \w stood|strong="H5975"\w* \w on|strong="H5921"\w* \w twelve|strong="H8147"\w* \w oxen|strong="H1241"\w*, \w three|strong="H7969"\w* \w looking|strong="H6437"\w* \w toward|strong="H5921"\w* \w the|strong="H3605"\w* \w north|strong="H6828"\w*, \w and|strong="H1004"\w* \w three|strong="H7969"\w* \w looking|strong="H6437"\w* \w toward|strong="H5921"\w* \w the|strong="H3605"\w* \w west|strong="H3220"\w*, \w and|strong="H1004"\w* \w three|strong="H7969"\w* \w looking|strong="H6437"\w* \w toward|strong="H5921"\w* \w the|strong="H3605"\w* \w south|strong="H5045"\w*, \w and|strong="H1004"\w* \w three|strong="H7969"\w* \w looking|strong="H6437"\w* \w toward|strong="H5921"\w* \w the|strong="H3605"\w* \w east|strong="H4217"\w*; \w and|strong="H1004"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w* \w was|strong="H1004"\w* \w set|strong="H5975"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w above|strong="H4605"\w*, \w and|strong="H1004"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* hindquarters \w were|strong="H1241"\w* \w inward|strong="H1004"\w*. +\v 26 It \w was|strong="H8193"\w* \w a|strong="H3068"\w* hand width \w thick|strong="H5672"\w*. Its \w brim|strong="H8193"\w* \w was|strong="H8193"\w* worked \w like|strong="H7799"\w* \w the|strong="H3557"\w* \w brim|strong="H8193"\w* \w of|strong="H4639"\w* \w a|strong="H3068"\w* \w cup|strong="H3563"\w*, \w like|strong="H7799"\w* \w the|strong="H3557"\w* \w flower|strong="H6525"\w* \w of|strong="H4639"\w* \w a|strong="H3068"\w* \w lily|strong="H7799"\w*. It \w held|strong="H3557"\w* \w two|strong="H3557"\w* thousand \w baths|strong="H1324"\w*. +\p +\v 27 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w ten|strong="H6235"\w* \w bases|strong="H4350"\w* \w of|strong="H7341"\w* \w bronze|strong="H5178"\w*. \w The|strong="H6213"\w* \w length|strong="H6967"\w* \w of|strong="H7341"\w* \w one|strong="H6213"\w* \w base|strong="H4350"\w* \w was|strong="H6967"\w* \w four|strong="H7969"\w* cubits, \w four|strong="H7969"\w* cubits \w its|strong="H6213"\w* \w width|strong="H7341"\w*, \w and|strong="H6213"\w* \w three|strong="H7969"\w* cubits \w its|strong="H6213"\w* \w height|strong="H6967"\w*. +\v 28 \w The|strong="H2088"\w* \w work|strong="H4639"\w* \w of|strong="H4639"\w* \w the|strong="H2088"\w* \w bases|strong="H4350"\w* \w was|strong="H2088"\w* \w like|strong="H4526"\w* \w this|strong="H2088"\w*: \w they|strong="H1992"\w* \w had|strong="H4350"\w* panels; \w and|strong="H2088"\w* \w there|strong="H1992"\w* \w were|strong="H1992"\w* panels between \w the|strong="H2088"\w* \w ledges|strong="H7948"\w*; +\v 29 \w and|strong="H1241"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* panels \w that|strong="H1241"\w* \w were|strong="H1241"\w* \w between|strong="H5921"\w* \w the|strong="H5921"\w* \w ledges|strong="H7948"\w* \w were|strong="H1241"\w* lions, \w oxen|strong="H1241"\w*, \w and|strong="H1241"\w* \w cherubim|strong="H3742"\w*; \w and|strong="H1241"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w ledges|strong="H7948"\w* \w there|strong="H7948"\w* \w was|strong="H3742"\w* \w a|strong="H3068"\w* \w pedestal|strong="H3653"\w* \w above|strong="H4605"\w*; \w and|strong="H1241"\w* \w beneath|strong="H8478"\w* \w the|strong="H5921"\w* lions \w and|strong="H1241"\w* \w oxen|strong="H1241"\w* \w were|strong="H1241"\w* \w wreaths|strong="H3914"\w* \w of|strong="H5921"\w* \w hanging|strong="H4174"\w* \w work|strong="H4639"\w*. +\v 30 \w Every|strong="H8478"\w* \w base|strong="H4350"\w* \w had|strong="H4350"\w* four \w bronze|strong="H5178"\w* \w wheels|strong="H6471"\w* \w and|strong="H5178"\w* \w axles|strong="H5633"\w* \w of|strong="H8478"\w* \w bronze|strong="H5178"\w*; \w and|strong="H5178"\w* \w its|strong="H8478"\w* four \w feet|strong="H6471"\w* \w had|strong="H4350"\w* \w supports|strong="H3802"\w*. \w The|strong="H8478"\w* \w supports|strong="H3802"\w* were \w cast|strong="H3333"\w* \w beneath|strong="H8478"\w* \w the|strong="H8478"\w* \w basin|strong="H3595"\w*, \w with|strong="H6471"\w* \w wreaths|strong="H3914"\w* \w at|strong="H3914"\w* \w the|strong="H8478"\w* \w side|strong="H5676"\w* \w of|strong="H8478"\w* \w each|strong="H6471"\w*. +\v 31 \w Its|strong="H5921"\w* \w opening|strong="H6310"\w* \w within|strong="H1004"\w* \w the|strong="H5921"\w* \w capital|strong="H3805"\w* \w and|strong="H1004"\w* \w above|strong="H4605"\w* \w was|strong="H1004"\w* \w a|strong="H3068"\w* cubit. \w Its|strong="H5921"\w* \w opening|strong="H6310"\w* \w was|strong="H1004"\w* \w round|strong="H5696"\w* \w like|strong="H1004"\w* \w the|strong="H5921"\w* \w work|strong="H4639"\w* \w of|strong="H1004"\w* \w a|strong="H3068"\w* \w pedestal|strong="H3653"\w*, \w a|strong="H3068"\w* cubit \w and|strong="H1004"\w* \w a|strong="H3068"\w* \w half|strong="H2677"\w*; \w and|strong="H1004"\w* \w also|strong="H1571"\w* \w on|strong="H5921"\w* \w its|strong="H5921"\w* \w opening|strong="H6310"\w* \w were|strong="H1004"\w* \w engravings|strong="H4734"\w*, \w and|strong="H1004"\w* \w their|strong="H5921"\w* panels \w were|strong="H1004"\w* \w square|strong="H7251"\w*, \w not|strong="H3808"\w* \w round|strong="H5696"\w*. +\v 32 \w The|strong="H8478"\w* four wheels \w were|strong="H3027"\w* \w underneath|strong="H8478"\w* \w the|strong="H8478"\w* panels; \w and|strong="H3027"\w* \w the|strong="H8478"\w* \w axles|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H8478"\w* wheels \w were|strong="H3027"\w* \w in|strong="H3027"\w* \w the|strong="H8478"\w* \w base|strong="H4350"\w*. \w The|strong="H8478"\w* \w height|strong="H6967"\w* \w of|strong="H3027"\w* \w a|strong="H3068"\w* wheel \w was|strong="H3027"\w* \w a|strong="H3068"\w* cubit \w and|strong="H3027"\w* \w half|strong="H2677"\w* \w a|strong="H3068"\w* cubit. +\v 33 \w The|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* wheels \w was|strong="H3027"\w* \w like|strong="H4818"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H3027"\w* \w a|strong="H3068"\w* \w chariot|strong="H4818"\w* wheel. \w Their|strong="H3605"\w* \w axles|strong="H3027"\w*, \w their|strong="H3605"\w* \w rims|strong="H1354"\w*, \w their|strong="H3605"\w* \w spokes|strong="H2839"\w*, \w and|strong="H3027"\w* \w their|strong="H3605"\w* \w hubs|strong="H2840"\w* \w were|strong="H3027"\w* \w all|strong="H3605"\w* \w of|strong="H3027"\w* \w cast|strong="H3332"\w* metal. +\v 34 \w There|strong="H4480"\w* \w were|strong="H4480"\w* four \w supports|strong="H3802"\w* \w at|strong="H4480"\w* \w the|strong="H4480"\w* four \w corners|strong="H6438"\w* \w of|strong="H4480"\w* each \w base|strong="H4350"\w*. \w Its|strong="H4350"\w* \w supports|strong="H3802"\w* \w were|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w base|strong="H4350"\w* itself. +\v 35 \w In|strong="H5921"\w* \w the|strong="H5921"\w* \w top|strong="H7218"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w base|strong="H4350"\w* \w there|strong="H4480"\w* \w was|strong="H3027"\w* \w a|strong="H3068"\w* \w round|strong="H5439"\w* \w band|strong="H7218"\w* \w half|strong="H2677"\w* \w a|strong="H3068"\w* cubit \w high|strong="H6967"\w*; \w and|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w top|strong="H7218"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w base|strong="H4350"\w* \w its|strong="H5921"\w* supports \w and|strong="H3027"\w* \w its|strong="H5921"\w* panels \w were|strong="H3027"\w* \w the|strong="H5921"\w* \w same|strong="H4480"\w*. +\v 36 \w On|strong="H5921"\w* \w the|strong="H5921"\w* \w plates|strong="H3871"\w* \w of|strong="H3027"\w* \w its|strong="H5921"\w* supports \w and|strong="H3027"\w* \w on|strong="H5921"\w* \w its|strong="H5921"\w* panels, \w he|strong="H3027"\w* \w engraved|strong="H6605"\w* \w cherubim|strong="H3742"\w*, lions, \w and|strong="H3027"\w* \w palm|strong="H8561"\w* \w trees|strong="H8561"\w*, \w each|strong="H5439"\w* \w in|strong="H5921"\w* \w its|strong="H5921"\w* \w space|strong="H4626"\w*, \w with|strong="H5921"\w* \w wreaths|strong="H3914"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*. +\v 37 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H3605"\w* \w ten|strong="H6235"\w* \w bases|strong="H4350"\w* \w in|strong="H6213"\w* \w this|strong="H2063"\w* \w way|strong="H2063"\w*: \w all|strong="H3605"\w* \w of|strong="H3605"\w* \w them|strong="H6213"\w* \w had|strong="H4350"\w* \w one|strong="H3605"\w* \w casting|strong="H4165"\w*, \w one|strong="H3605"\w* \w measure|strong="H4060"\w*, \w and|strong="H6213"\w* \w one|strong="H3605"\w* \w form|strong="H7095"\w*. +\v 38 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w ten|strong="H6235"\w* \w basins|strong="H3595"\w* \w of|strong="H5921"\w* \w bronze|strong="H5178"\w*. \w One|strong="H6213"\w* \w basin|strong="H3595"\w* \w contained|strong="H3557"\w* forty \w baths|strong="H1324"\w*.\f + \fr 7:38 \ft 1 bath is one tenth of a cor, or about 5.6 U. S. gallons or 21 liters, so 40 baths was about 224 gallons or 840 liters.\f* \w Every|strong="H6213"\w* \w basin|strong="H3595"\w* measured four cubits. \w One|strong="H6213"\w* \w basin|strong="H3595"\w* \w was|strong="H6213"\w* \w on|strong="H5921"\w* \w every|strong="H6213"\w* \w one|strong="H6213"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w ten|strong="H6235"\w* \w bases|strong="H4350"\w*. +\v 39 \w He|strong="H2568"\w* \w set|strong="H5414"\w* \w the|strong="H5921"\w* \w bases|strong="H4350"\w*, \w five|strong="H2568"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w right|strong="H3225"\w* \w side|strong="H3802"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w and|strong="H1004"\w* \w five|strong="H2568"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w left|strong="H8040"\w* \w side|strong="H3802"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*. \w He|strong="H2568"\w* \w set|strong="H5414"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w right|strong="H3225"\w* \w side|strong="H3802"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w eastward|strong="H6924"\w* \w and|strong="H1004"\w* \w toward|strong="H5921"\w* \w the|strong="H5921"\w* \w south|strong="H5045"\w*. +\p +\v 40 \w Hiram|strong="H2438"\w* \w made|strong="H6213"\w* \w the|strong="H3605"\w* pots, \w the|strong="H3605"\w* \w shovels|strong="H3257"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w basins|strong="H4219"\w*. \w So|strong="H6213"\w* \w Hiram|strong="H2438"\w* \w finished|strong="H3615"\w* \w doing|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w worked|strong="H6213"\w* \w for|strong="H6213"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*: +\v 41 \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w pillars|strong="H5982"\w*; \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w bowls|strong="H1543"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w capitals|strong="H3805"\w* \w that|strong="H3805"\w* \w were|strong="H7218"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w top|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w pillars|strong="H5982"\w*; \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w networks|strong="H7639"\w* \w to|strong="H5921"\w* \w cover|strong="H3680"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w bowls|strong="H1543"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w capitals|strong="H3805"\w* \w that|strong="H3805"\w* \w were|strong="H7218"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w top|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w pillars|strong="H5982"\w*; +\v 42 \w the|strong="H6440"\w* four \w hundred|strong="H3967"\w* \w pomegranates|strong="H7416"\w* \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w two|strong="H8147"\w* \w networks|strong="H7639"\w*; \w two|strong="H8147"\w* \w rows|strong="H2905"\w* \w of|strong="H6440"\w* \w pomegranates|strong="H7416"\w* \w for|strong="H5921"\w* \w each|strong="H8147"\w* \w network|strong="H7639"\w*, \w to|strong="H5921"\w* \w cover|strong="H3680"\w* \w the|strong="H6440"\w* \w two|strong="H8147"\w* \w bowls|strong="H1543"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w capitals|strong="H3805"\w* \w that|strong="H3805"\w* \w were|strong="H8147"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w pillars|strong="H5982"\w*; +\v 43 \w the|strong="H5921"\w* \w ten|strong="H6235"\w* \w bases|strong="H4350"\w*; \w the|strong="H5921"\w* \w ten|strong="H6235"\w* \w basins|strong="H3595"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w bases|strong="H4350"\w*; +\v 44 \w the|strong="H8478"\w* \w one|strong="H8147"\w* \w sea|strong="H3220"\w*; \w the|strong="H8478"\w* \w twelve|strong="H8147"\w* \w oxen|strong="H1241"\w* \w under|strong="H8478"\w* \w the|strong="H8478"\w* \w sea|strong="H3220"\w*; +\v 45 \w the|strong="H3605"\w* \w pots|strong="H5518"\w*; \w the|strong="H3605"\w* \w shovels|strong="H3257"\w*; \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w basins|strong="H4219"\w*. \w All|strong="H3605"\w* \w of|strong="H4428"\w* \w these|strong="H6213"\w* \w vessels|strong="H3627"\w*, \w which|strong="H3068"\w* \w Hiram|strong="H2438"\w* \w made|strong="H6213"\w* \w for|strong="H6213"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w were|strong="H4428"\w* \w of|strong="H4428"\w* burnished \w bronze|strong="H5178"\w*. +\v 46 \w The|strong="H3332"\w* \w king|strong="H4428"\w* \w cast|strong="H3332"\w* them \w in|strong="H4428"\w* \w the|strong="H3332"\w* \w plain|strong="H3603"\w* \w of|strong="H4428"\w* \w the|strong="H3332"\w* \w Jordan|strong="H3383"\w*, \w in|strong="H4428"\w* \w the|strong="H3332"\w* \w clay|strong="H4568"\w* ground between \w Succoth|strong="H5523"\w* \w and|strong="H4428"\w* \w Zarethan|strong="H6891"\w*. +\v 47 \w Solomon|strong="H8010"\w* \w left|strong="H3240"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w unweighed|strong="H7230"\w*, \w because|strong="H7230"\w* \w there|strong="H3605"\w* \w were|strong="H3627"\w* \w so|strong="H3808"\w* \w many|strong="H7230"\w* \w of|strong="H3627"\w* \w them|strong="H3240"\w*. \w The|strong="H3605"\w* \w weight|strong="H4948"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w bronze|strong="H5178"\w* could \w not|strong="H3808"\w* \w be|strong="H3808"\w* determined. +\p +\v 48 \w Solomon|strong="H8010"\w* \w made|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w that|strong="H3605"\w* \w were|strong="H3627"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*: \w the|strong="H3605"\w* \w golden|strong="H2091"\w* \w altar|strong="H4196"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w table|strong="H7979"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* \w show|strong="H6213"\w* \w bread|strong="H3899"\w* \w was|strong="H3068"\w* \w on|strong="H5921"\w*, \w of|strong="H1004"\w* \w gold|strong="H2091"\w*; +\v 49 \w and|strong="H2091"\w* \w the|strong="H6440"\w* \w lamp|strong="H5216"\w* stands, \w five|strong="H2568"\w* \w on|strong="H2091"\w* \w the|strong="H6440"\w* \w right|strong="H3225"\w* \w side|strong="H3225"\w* \w and|strong="H2091"\w* \w five|strong="H2568"\w* \w on|strong="H2091"\w* \w the|strong="H6440"\w* \w left|strong="H8040"\w*, \w in|strong="H6440"\w* \w front|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w inner|strong="H1687"\w* \w sanctuary|strong="H1687"\w*, \w of|strong="H6440"\w* \w pure|strong="H5462"\w* \w gold|strong="H2091"\w*; \w and|strong="H2091"\w* \w the|strong="H6440"\w* \w flowers|strong="H6525"\w*, \w the|strong="H6440"\w* \w lamps|strong="H5216"\w*, \w and|strong="H2091"\w* \w the|strong="H6440"\w* \w tongs|strong="H4457"\w*, \w of|strong="H6440"\w* \w gold|strong="H2091"\w*; +\v 50 \w the|strong="H5462"\w* \w cups|strong="H5592"\w*, \w the|strong="H5462"\w* \w snuffers|strong="H4212"\w*, \w the|strong="H5462"\w* \w basins|strong="H4219"\w*, \w the|strong="H5462"\w* \w spoons|strong="H3709"\w*, \w and|strong="H1004"\w* \w the|strong="H5462"\w* fire \w pans|strong="H3709"\w*, \w of|strong="H1004"\w* \w pure|strong="H5462"\w* \w gold|strong="H2091"\w*; \w and|strong="H1004"\w* \w the|strong="H5462"\w* \w hinges|strong="H6596"\w*, both \w for|strong="H1004"\w* \w the|strong="H5462"\w* \w doors|strong="H1817"\w* \w of|strong="H1004"\w* \w the|strong="H5462"\w* \w inner|strong="H6442"\w* \w house|strong="H1004"\w*, \w the|strong="H5462"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w*, \w and|strong="H1004"\w* \w for|strong="H1004"\w* \w the|strong="H5462"\w* \w doors|strong="H1817"\w* \w of|strong="H1004"\w* \w the|strong="H5462"\w* \w house|strong="H1004"\w*, \w of|strong="H1004"\w* \w the|strong="H5462"\w* \w temple|strong="H1004"\w*, \w of|strong="H1004"\w* \w gold|strong="H2091"\w*. +\p +\v 51 Thus \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w that|strong="H3605"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w did|strong="H6213"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w was|strong="H3068"\w* \w finished|strong="H7999"\w*. \w Solomon|strong="H8010"\w* \w brought|strong="H5414"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w things|strong="H6944"\w* \w which|strong="H3068"\w* \w David|strong="H1732"\w* \w his|strong="H3605"\w* father \w had|strong="H3068"\w* \w dedicated|strong="H6944"\w*—\w the|strong="H3605"\w* \w silver|strong="H3701"\w*, \w the|strong="H3605"\w* \w gold|strong="H2091"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w*—\w and|strong="H3068"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* treasuries \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\c 8 +\p +\v 1 \w Then|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w assembled|strong="H6950"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w tribes|strong="H4294"\w*, \w the|strong="H3605"\w* \w princes|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* fathers’ households \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w in|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*, \w to|strong="H3478"\w* \w bring|strong="H5927"\w* \w up|strong="H5927"\w* \w the|strong="H3605"\w* ark \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w* \w out|strong="H3605"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*, \w which|strong="H1931"\w* \w is|strong="H3068"\w* \w Zion|strong="H6726"\w*. +\v 2 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w assembled|strong="H6950"\w* \w themselves|strong="H6950"\w* \w to|strong="H3478"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w at|strong="H3478"\w* \w the|strong="H3605"\w* \w feast|strong="H2282"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w month|strong="H2320"\w* Ethanim, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w*. +\v 3 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H2205"\w* \w Israel|strong="H3478"\w* \w came|strong="H3478"\w*, \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w picked|strong="H5375"\w* \w up|strong="H5375"\w* \w the|strong="H3605"\w* ark. +\v 4 \w They|strong="H3068"\w* \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w Yahweh|strong="H3068"\w*’s ark, \w the|strong="H3605"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w holy|strong="H6944"\w* \w vessels|strong="H3627"\w* \w that|strong="H3605"\w* \w were|strong="H3881"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* Tent. \w The|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w brought|strong="H5927"\w* \w these|strong="H3605"\w* \w up|strong="H5927"\w*. +\v 5 \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w assembled|strong="H3259"\w* \w to|strong="H3478"\w* \w him|strong="H6440"\w*, \w were|strong="H3478"\w* \w with|strong="H5921"\w* \w him|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* ark, \w sacrificing|strong="H2076"\w* \w sheep|strong="H6629"\w* \w and|strong="H3478"\w* \w cattle|strong="H1241"\w* \w that|strong="H3605"\w* could \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w counted|strong="H5608"\w* \w or|strong="H3808"\w* \w numbered|strong="H5608"\w* \w for|strong="H5921"\w* \w multitude|strong="H7230"\w*. +\v 6 \w The|strong="H3068"\w* \w priests|strong="H3548"\w* \w brought|strong="H3548"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* ark \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w* \w to|strong="H3068"\w* \w its|strong="H8478"\w* \w place|strong="H4725"\w*, into \w the|strong="H3068"\w* \w inner|strong="H1687"\w* \w sanctuary|strong="H6944"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w*, \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w place|strong="H4725"\w*, \w even|strong="H3068"\w* \w under|strong="H8478"\w* \w the|strong="H3068"\w* \w cherubim|strong="H3742"\w*’s \w wings|strong="H3671"\w*. +\v 7 \w For|strong="H3588"\w* \w the|strong="H5921"\w* \w cherubim|strong="H3742"\w* \w spread|strong="H6566"\w* \w their|strong="H5921"\w* \w wings|strong="H3671"\w* \w out|strong="H6566"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* ark, \w and|strong="H4725"\w* \w the|strong="H5921"\w* \w cherubim|strong="H3742"\w* \w covered|strong="H5526"\w* \w the|strong="H5921"\w* ark \w and|strong="H4725"\w* \w its|strong="H5921"\w* poles \w above|strong="H4605"\w*. +\v 8 \w The|strong="H6440"\w* poles \w were|strong="H1961"\w* \w so|strong="H4480"\w* \w long|strong="H5704"\w* \w that|strong="H7200"\w* \w the|strong="H6440"\w* \w ends|strong="H7218"\w* \w of|strong="H3117"\w* \w the|strong="H6440"\w* poles \w were|strong="H1961"\w* \w seen|strong="H7200"\w* \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w inner|strong="H1687"\w* \w sanctuary|strong="H6944"\w*, \w but|strong="H3808"\w* \w they|strong="H3117"\w* \w were|strong="H1961"\w* \w not|strong="H3808"\w* \w seen|strong="H7200"\w* \w outside|strong="H2351"\w*. \w They|strong="H3117"\w* \w are|strong="H3117"\w* \w there|strong="H8033"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 9 \w There|strong="H8033"\w* \w was|strong="H3068"\w* nothing \w in|strong="H3478"\w* \w the|strong="H3068"\w* ark \w except|strong="H7535"\w* \w the|strong="H3068"\w* \w two|strong="H8147"\w* stone \w tablets|strong="H3871"\w* \w which|strong="H3068"\w* \w Moses|strong="H4872"\w* \w put|strong="H3240"\w* \w there|strong="H8033"\w* \w at|strong="H3478"\w* \w Horeb|strong="H2722"\w*, \w when|strong="H3318"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* covenant \w with|strong="H5973"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w when|strong="H3318"\w* \w they|strong="H8033"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*. +\v 10 \w It|strong="H1961"\w* \w came|strong="H1961"\w* \w to|strong="H3318"\w* \w pass|strong="H1961"\w*, \w when|strong="H1961"\w* \w the|strong="H3068"\w* \w priests|strong="H3548"\w* \w had|strong="H3068"\w* \w come|strong="H1961"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w*, \w that|strong="H3068"\w* \w the|strong="H3068"\w* \w cloud|strong="H6051"\w* \w filled|strong="H4390"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, +\v 11 \w so|strong="H3808"\w* \w that|strong="H3588"\w* \w the|strong="H6440"\w* \w priests|strong="H3548"\w* \w could|strong="H3201"\w* \w not|strong="H3808"\w* \w stand|strong="H5975"\w* \w to|strong="H3201"\w* \w minister|strong="H8334"\w* \w by|strong="H3068"\w* \w reason|strong="H6440"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w cloud|strong="H6051"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w filled|strong="H4390"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\p +\v 12 \w Then|strong="H3068"\w* \w Solomon|strong="H8010"\w* said, “\w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* said \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w would|strong="H3068"\w* \w dwell|strong="H7931"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w thick|strong="H6205"\w* \w darkness|strong="H6205"\w*. +\v 13 \w I|strong="H1004"\w* \w have|strong="H1129"\w* \w surely|strong="H1129"\w* \w built|strong="H1129"\w* \w you|strong="H1129"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w habitation|strong="H2073"\w*, \w a|strong="H3068"\w* \w place|strong="H4349"\w* \w for|strong="H3427"\w* \w you|strong="H1129"\w* \w to|strong="H1004"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w forever|strong="H5769"\w*.” +\p +\v 14 \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w turned|strong="H5437"\w* \w his|strong="H3605"\w* \w face|strong="H6440"\w* \w around|strong="H5437"\w* \w and|strong="H3478"\w* \w blessed|strong="H1288"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w stood|strong="H5975"\w*. +\v 15 \w He|strong="H3068"\w* \w said|strong="H1696"\w*, “\w Blessed|strong="H1288"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w who|strong="H3068"\w* \w spoke|strong="H1696"\w* \w with|strong="H4390"\w* \w his|strong="H3068"\w* \w mouth|strong="H6310"\w* \w to|strong="H1696"\w* \w David|strong="H1732"\w* \w your|strong="H3068"\w* father, \w and|strong="H3478"\w* \w has|strong="H3068"\w* \w with|strong="H4390"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w* \w fulfilled|strong="H4390"\w* \w it|strong="H1696"\w*, \w saying|strong="H1696"\w*, +\v 16 ‘\w Since|strong="H4480"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H5971"\w* \w I|strong="H3117"\w* \w brought|strong="H3318"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*, \w I|strong="H3117"\w* chose \w no|strong="H3808"\w* \w city|strong="H5892"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w to|strong="H3318"\w* \w build|strong="H1129"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w*, \w that|strong="H5971"\w* \w my|strong="H3605"\w* \w name|strong="H8034"\w* \w might|strong="H3478"\w* \w be|strong="H1961"\w* \w there|strong="H8033"\w*; \w but|strong="H3808"\w* \w I|strong="H3117"\w* chose \w David|strong="H1732"\w* \w to|strong="H3318"\w* \w be|strong="H1961"\w* \w over|strong="H5921"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*.’ +\p +\v 17 “\w Now|strong="H1961"\w* \w it|strong="H8034"\w* \w was|strong="H3068"\w* \w in|strong="H3478"\w* \w the|strong="H3068"\w* \w heart|strong="H3824"\w* \w of|strong="H1004"\w* \w David|strong="H1732"\w* \w my|strong="H3068"\w* father \w to|strong="H3478"\w* \w build|strong="H1129"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w for|strong="H8034"\w* \w the|strong="H3068"\w* \w name|strong="H8034"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. +\v 18 \w But|strong="H3588"\w* \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w David|strong="H1732"\w* \w my|strong="H3068"\w* father, ‘\w Whereas|strong="H3282"\w* \w it|strong="H3588"\w* \w was|strong="H3068"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w to|strong="H3068"\w* \w build|strong="H1129"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w for|strong="H3588"\w* \w my|strong="H3068"\w* \w name|strong="H8034"\w*, \w you|strong="H3588"\w* \w did|strong="H3068"\w* \w well|strong="H2895"\w* \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H3068"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w*. +\v 19 \w Nevertheless|strong="H3588"\w*, \w you|strong="H3588"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w build|strong="H1129"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w*; \w but|strong="H3588"\w* \w your|strong="H3588"\w* \w son|strong="H1121"\w* \w who|strong="H1931"\w* \w shall|strong="H1121"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w your|strong="H3588"\w* body, \w he|strong="H1931"\w* \w shall|strong="H1121"\w* \w build|strong="H1129"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w for|strong="H3588"\w* \w my|strong="H3318"\w* \w name|strong="H8034"\w*.’ +\v 20 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w established|strong="H6965"\w* \w his|strong="H3068"\w* \w word|strong="H1697"\w* \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w spoke|strong="H1696"\w*; \w for|strong="H5921"\w* \w I|strong="H5921"\w* \w have|strong="H3068"\w* \w risen|strong="H6965"\w* \w up|strong="H6965"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w place|strong="H8478"\w* \w of|strong="H1004"\w* \w David|strong="H1732"\w* \w my|strong="H3068"\w* father, \w and|strong="H6965"\w* \w I|strong="H5921"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w throne|strong="H3678"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w as|strong="H1697"\w* \w Yahweh|strong="H3068"\w* \w promised|strong="H1696"\w*, \w and|strong="H6965"\w* \w have|strong="H3068"\w* \w built|strong="H1129"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. +\v 21 \w There|strong="H8033"\w* \w I|strong="H7760"\w* \w have|strong="H3068"\w* \w set|strong="H7760"\w* \w a|strong="H3068"\w* \w place|strong="H4725"\w* \w for|strong="H4714"\w* \w the|strong="H3068"\w* ark, \w in|strong="H3068"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w*, \w which|strong="H3068"\w* \w he|strong="H8033"\w* \w made|strong="H3772"\w* \w with|strong="H5973"\w* \w our|strong="H3068"\w* fathers \w when|strong="H3318"\w* \w he|strong="H8033"\w* \w brought|strong="H3318"\w* \w them|strong="H7760"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w land|strong="H4725"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*.” +\p +\v 22 \w Solomon|strong="H8010"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*’s \w altar|strong="H4196"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w presence|strong="H6440"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w spread|strong="H6566"\w* \w out|strong="H6566"\w* \w his|strong="H3605"\w* \w hands|strong="H3709"\w* \w toward|strong="H6440"\w* \w heaven|strong="H8064"\w*; +\v 23 \w and|strong="H1980"\w* \w he|strong="H3068"\w* said, “\w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w there|strong="H3605"\w* \w is|strong="H3068"\w* \w no|strong="H3605"\w* \w God|strong="H3068"\w* \w like|strong="H3644"\w* \w you|strong="H6440"\w*, \w in|strong="H5921"\w* \w heaven|strong="H8064"\w* \w above|strong="H4605"\w*, \w or|strong="H3068"\w* \w on|strong="H5921"\w* \w earth|strong="H8064"\w* \w beneath|strong="H8478"\w*; \w who|strong="H3605"\w* \w keeps|strong="H8104"\w* \w covenant|strong="H1285"\w* \w and|strong="H1980"\w* loving \w kindness|strong="H2617"\w* \w with|strong="H1980"\w* \w your|strong="H3068"\w* \w servants|strong="H5650"\w* \w who|strong="H3605"\w* \w walk|strong="H1980"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w with|strong="H1980"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w heart|strong="H3820"\w*; +\v 24 \w who|strong="H5650"\w* \w has|strong="H5650"\w* \w kept|strong="H8104"\w* \w with|strong="H4390"\w* \w your|strong="H8104"\w* \w servant|strong="H5650"\w* \w David|strong="H1732"\w* \w my|strong="H8104"\w* father \w that|strong="H3117"\w* \w which|strong="H2088"\w* \w you|strong="H3117"\w* \w promised|strong="H1696"\w* \w him|strong="H3027"\w*. Yes, \w you|strong="H3117"\w* \w spoke|strong="H1696"\w* \w with|strong="H4390"\w* \w your|strong="H8104"\w* \w mouth|strong="H6310"\w*, \w and|strong="H3117"\w* \w have|strong="H5650"\w* \w fulfilled|strong="H4390"\w* \w it|strong="H1696"\w* \w with|strong="H4390"\w* \w your|strong="H8104"\w* \w hand|strong="H3027"\w*, \w as|strong="H3117"\w* \w it|strong="H1696"\w* \w is|strong="H2088"\w* \w today|strong="H3117"\w*. +\v 25 \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w*, \w may|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w keep|strong="H8104"\w* \w with|strong="H1980"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w David|strong="H1732"\w* \w my|strong="H8104"\w* \w father|strong="H1121"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w you|strong="H6440"\w* \w have|strong="H3068"\w* \w promised|strong="H1696"\w* \w him|strong="H6440"\w*, \w saying|strong="H1696"\w*, ‘\w There|strong="H3427"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w fail|strong="H3772"\w* \w from|strong="H6440"\w* \w you|strong="H6440"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w in|strong="H3427"\w* \w my|strong="H8104"\w* \w sight|strong="H6440"\w* \w to|strong="H1696"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w throne|strong="H3678"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w if|strong="H1121"\w* \w only|strong="H7535"\w* \w your|strong="H3068"\w* \w children|strong="H1121"\w* \w take|strong="H8104"\w* \w heed|strong="H8104"\w* \w to|strong="H1696"\w* \w their|strong="H3068"\w* \w way|strong="H1870"\w*, \w to|strong="H1696"\w* \w walk|strong="H1980"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w as|strong="H3068"\w* \w you|strong="H6440"\w* \w have|strong="H3068"\w* \w walked|strong="H1980"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*.’ +\p +\v 26 “\w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, God \w of|strong="H1697"\w* \w Israel|strong="H3478"\w*, \w please|strong="H4994"\w* \w let|strong="H4994"\w* \w your|strong="H4994"\w* \w word|strong="H1697"\w* \w be|strong="H1697"\w* verified, \w which|strong="H1697"\w* \w you|strong="H1696"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w your|strong="H4994"\w* \w servant|strong="H5650"\w* \w David|strong="H1732"\w* \w my|strong="H1732"\w* father. +\v 27 \w But|strong="H3588"\w* \w will|strong="H1004"\w* \w God|strong="H3808"\w* \w in|strong="H3427"\w* \w very|strong="H2088"\w* deed \w dwell|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w earth|strong="H8064"\w*? \w Behold|strong="H2009"\w*, \w heaven|strong="H8064"\w* \w and|strong="H8064"\w* \w the|strong="H5921"\w* \w heaven|strong="H8064"\w* \w of|strong="H1004"\w* \w heavens|strong="H8064"\w* \w can|strong="H3808"\w*’t \w contain|strong="H3557"\w* \w you|strong="H3588"\w*; \w how|strong="H3588"\w* \w much|strong="H5921"\w* \w less|strong="H3588"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1129"\w* \w built|strong="H1129"\w*! +\v 28 \w Yet|strong="H3068"\w* \w have|strong="H3068"\w* \w respect|strong="H6437"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* \w prayer|strong="H8605"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w and|strong="H3068"\w* \w for|strong="H6440"\w* \w his|strong="H3068"\w* \w supplication|strong="H8467"\w*, \w Yahweh|strong="H3068"\w* \w my|strong="H8085"\w* \w God|strong="H3068"\w*, \w to|strong="H3068"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w cry|strong="H7440"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w prayer|strong="H8605"\w* \w which|strong="H3068"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w prays|strong="H6419"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w today|strong="H3117"\w*; +\v 29 \w that|strong="H3117"\w* \w your|strong="H8085"\w* \w eyes|strong="H5869"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w open|strong="H6605"\w* toward \w this|strong="H2088"\w* \w house|strong="H1004"\w* \w night|strong="H3915"\w* \w and|strong="H3117"\w* \w day|strong="H3117"\w*, \w even|strong="H5869"\w* toward \w the|strong="H8085"\w* \w place|strong="H4725"\w* \w of|strong="H1004"\w* \w which|strong="H1004"\w* \w you|strong="H3117"\w* \w have|strong="H1961"\w* \w said|strong="H8085"\w*, ‘\w My|strong="H8085"\w* \w name|strong="H8034"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w* \w there|strong="H8033"\w*;’ \w to|strong="H1961"\w* \w listen|strong="H8085"\w* \w to|strong="H1961"\w* \w the|strong="H8085"\w* \w prayer|strong="H8605"\w* \w which|strong="H1004"\w* \w your|strong="H8085"\w* \w servant|strong="H5650"\w* \w prays|strong="H6419"\w* toward \w this|strong="H2088"\w* \w place|strong="H4725"\w*. +\v 30 \w Listen|strong="H8085"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w supplication|strong="H8467"\w* \w of|strong="H3427"\w* \w your|strong="H8085"\w* \w servant|strong="H5650"\w*, \w and|strong="H3478"\w* \w of|strong="H3427"\w* \w your|strong="H8085"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w when|strong="H8085"\w* \w they|strong="H5971"\w* \w pray|strong="H6419"\w* toward \w this|strong="H2088"\w* \w place|strong="H4725"\w*. Yes, \w hear|strong="H8085"\w* \w in|strong="H3427"\w* \w heaven|strong="H8064"\w*, \w your|strong="H8085"\w* \w dwelling|strong="H3427"\w* \w place|strong="H4725"\w*; \w and|strong="H3478"\w* \w when|strong="H8085"\w* \w you|strong="H5971"\w* \w hear|strong="H8085"\w*, \w forgive|strong="H5545"\w*. +\p +\v 31 “\w If|strong="H2398"\w* \w a|strong="H3068"\w* \w man|strong="H2088"\w* \w sins|strong="H2398"\w* \w against|strong="H6440"\w* \w his|strong="H6440"\w* \w neighbor|strong="H7453"\w*, \w and|strong="H1004"\w* \w an|strong="H6440"\w* oath \w is|strong="H2088"\w* \w laid|strong="H6440"\w* \w on|strong="H1004"\w* \w him|strong="H6440"\w* \w to|strong="H6440"\w* cause \w him|strong="H6440"\w* \w to|strong="H6440"\w* swear, \w and|strong="H1004"\w* \w he|strong="H1004"\w* \w comes|strong="H6440"\w* \w and|strong="H1004"\w* swears \w before|strong="H6440"\w* \w your|strong="H6440"\w* \w altar|strong="H4196"\w* \w in|strong="H1004"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w*, +\v 32 \w then|strong="H5414"\w* \w hear|strong="H8085"\w* \w in|strong="H6213"\w* \w heaven|strong="H8064"\w*, \w and|strong="H8064"\w* \w act|strong="H6213"\w*, \w and|strong="H8064"\w* \w judge|strong="H8199"\w* \w your|strong="H5414"\w* \w servants|strong="H5650"\w*, \w condemning|strong="H7561"\w* \w the|strong="H8085"\w* \w wicked|strong="H7563"\w*, \w to|strong="H6213"\w* \w bring|strong="H5414"\w* \w his|strong="H5414"\w* \w way|strong="H1870"\w* \w on|strong="H1870"\w* \w his|strong="H5414"\w* own \w head|strong="H7218"\w*, \w and|strong="H8064"\w* \w justifying|strong="H6663"\w* \w the|strong="H8085"\w* \w righteous|strong="H6662"\w*, \w to|strong="H6213"\w* \w give|strong="H5414"\w* \w him|strong="H5414"\w* according \w to|strong="H6213"\w* \w his|strong="H5414"\w* \w righteousness|strong="H6666"\w*. +\p +\v 33 “\w When|strong="H7725"\w* \w your|strong="H6440"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w* \w are|strong="H5971"\w* \w struck|strong="H5062"\w* \w down|strong="H5062"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* enemy \w because|strong="H6440"\w* \w they|strong="H5971"\w* \w have|strong="H5971"\w* \w sinned|strong="H2398"\w* \w against|strong="H6440"\w* \w you|strong="H6440"\w*, \w if|strong="H2603"\w* \w they|strong="H5971"\w* \w turn|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w you|strong="H6440"\w* \w and|strong="H3478"\w* \w confess|strong="H3034"\w* \w your|strong="H6440"\w* \w name|strong="H8034"\w*, \w and|strong="H3478"\w* \w pray|strong="H6419"\w* \w and|strong="H3478"\w* \w make|strong="H2603"\w* \w supplication|strong="H2603"\w* \w to|strong="H7725"\w* \w you|strong="H6440"\w* \w in|strong="H3478"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w*, +\v 34 \w then|strong="H5414"\w* \w hear|strong="H8085"\w* \w in|strong="H3478"\w* \w heaven|strong="H8064"\w*, \w and|strong="H3478"\w* \w forgive|strong="H5545"\w* \w the|strong="H8085"\w* \w sin|strong="H2403"\w* \w of|strong="H5971"\w* \w your|strong="H5414"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w bring|strong="H7725"\w* \w them|strong="H5414"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H8085"\w* \w land|strong="H8064"\w* \w which|strong="H5971"\w* \w you|strong="H5414"\w* \w gave|strong="H5414"\w* \w to|strong="H7725"\w* \w their|strong="H5414"\w* fathers. +\p +\v 35 “\w When|strong="H3588"\w* \w the|strong="H3588"\w* \w sky|strong="H8064"\w* \w is|strong="H2088"\w* \w shut|strong="H6113"\w* \w up|strong="H6113"\w* \w and|strong="H7725"\w* \w there|strong="H1961"\w* \w is|strong="H2088"\w* \w no|strong="H3808"\w* \w rain|strong="H4306"\w* \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H1961"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w you|strong="H3588"\w*, \w if|strong="H3588"\w* \w they|strong="H3588"\w* \w pray|strong="H6419"\w* \w toward|strong="H7725"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w* \w and|strong="H7725"\w* \w confess|strong="H3034"\w* \w your|strong="H7725"\w* \w name|strong="H8034"\w*, \w and|strong="H7725"\w* \w turn|strong="H7725"\w* \w from|strong="H7725"\w* \w their|strong="H7725"\w* \w sin|strong="H2403"\w* \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w afflict|strong="H6031"\w* \w them|strong="H7725"\w*, +\v 36 \w then|strong="H5414"\w* \w hear|strong="H8085"\w* \w in|strong="H5921"\w* \w heaven|strong="H8064"\w*, \w and|strong="H3478"\w* \w forgive|strong="H5545"\w* \w the|strong="H5921"\w* \w sin|strong="H2403"\w* \w of|strong="H1870"\w* \w your|strong="H5414"\w* \w servants|strong="H5650"\w*, \w and|strong="H3478"\w* \w of|strong="H1870"\w* \w your|strong="H5414"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w teach|strong="H3384"\w* \w them|strong="H5414"\w* \w the|strong="H5921"\w* \w good|strong="H2896"\w* \w way|strong="H1870"\w* \w in|strong="H5921"\w* \w which|strong="H5971"\w* \w they|strong="H3588"\w* \w should|strong="H3588"\w* \w walk|strong="H3212"\w*; \w and|strong="H3478"\w* \w send|strong="H5414"\w* \w rain|strong="H4306"\w* \w on|strong="H5921"\w* \w your|strong="H5414"\w* \w land|strong="H5159"\w* \w which|strong="H5971"\w* \w you|strong="H3588"\w* \w have|strong="H5971"\w* \w given|strong="H5414"\w* \w to|strong="H3478"\w* \w your|strong="H5414"\w* \w people|strong="H5971"\w* \w for|strong="H3588"\w* \w an|strong="H5414"\w* \w inheritance|strong="H5159"\w*. +\p +\v 37 “\w If|strong="H3588"\w* \w there|strong="H1961"\w* \w is|strong="H3605"\w* \w famine|strong="H7458"\w* \w in|strong="H7458"\w* \w the|strong="H3605"\w* land, \w if|strong="H3588"\w* \w there|strong="H1961"\w* \w is|strong="H3605"\w* \w pestilence|strong="H1698"\w*, \w if|strong="H3588"\w* \w there|strong="H1961"\w* \w is|strong="H3605"\w* \w blight|strong="H7711"\w*, \w mildew|strong="H3420"\w*, \w locust|strong="H2625"\w* \w or|strong="H5061"\w* \w caterpillar|strong="H2625"\w*; \w if|strong="H3588"\w* \w their|strong="H3605"\w* \w enemy|strong="H6887"\w* \w besieges|strong="H6887"\w* \w them|strong="H1961"\w* \w in|strong="H7458"\w* \w the|strong="H3605"\w* land \w of|strong="H8179"\w* \w their|strong="H3605"\w* \w cities|strong="H8179"\w*, \w whatever|strong="H3605"\w* \w plague|strong="H5061"\w*, \w whatever|strong="H3605"\w* \w sickness|strong="H4245"\w* \w there|strong="H1961"\w* \w is|strong="H3605"\w*, +\v 38 \w whatever|strong="H3605"\w* \w prayer|strong="H8605"\w* \w and|strong="H3478"\w* \w supplication|strong="H8467"\w* \w is|strong="H2088"\w* \w made|strong="H3045"\w* \w by|strong="H3478"\w* \w any|strong="H3605"\w* \w man|strong="H3605"\w*, \w or|strong="H1004"\w* \w by|strong="H3478"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w who|strong="H3605"\w* \w shall|strong="H5971"\w* \w each|strong="H3605"\w* \w know|strong="H3045"\w* \w the|strong="H3605"\w* \w plague|strong="H5061"\w* \w of|strong="H1004"\w* \w his|strong="H3605"\w* \w own|strong="H1961"\w* \w heart|strong="H3824"\w*, \w and|strong="H3478"\w* \w spread|strong="H6566"\w* \w out|strong="H6566"\w* \w his|strong="H3605"\w* \w hands|strong="H3709"\w* \w toward|strong="H3709"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w*, +\v 39 \w then|strong="H5414"\w* \w hear|strong="H8085"\w* \w in|strong="H3427"\w* \w heaven|strong="H8064"\w*, \w your|strong="H3605"\w* \w dwelling|strong="H3427"\w* \w place|strong="H4349"\w*, \w and|strong="H1121"\w* \w forgive|strong="H5545"\w*, \w and|strong="H1121"\w* \w act|strong="H6213"\w*, \w and|strong="H1121"\w* \w give|strong="H5414"\w* \w to|strong="H6213"\w* \w every|strong="H3605"\w* \w man|strong="H1121"\w* according \w to|strong="H6213"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w ways|strong="H1870"\w*, \w whose|strong="H1121"\w* \w heart|strong="H3824"\w* \w you|strong="H3588"\w* \w know|strong="H3045"\w* (\w for|strong="H3588"\w* \w you|strong="H3588"\w*, \w even|strong="H3588"\w* \w you|strong="H3588"\w* \w only|strong="H3588"\w*, \w know|strong="H3045"\w* \w the|strong="H3605"\w* \w hearts|strong="H3824"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*); +\v 40 \w that|strong="H3605"\w* \w they|strong="H1992"\w* \w may|strong="H5414"\w* \w fear|strong="H3372"\w* \w you|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w that|strong="H3605"\w* \w they|strong="H1992"\w* \w live|strong="H2416"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w which|strong="H1992"\w* \w you|strong="H5414"\w* \w gave|strong="H5414"\w* \w to|strong="H5921"\w* \w our|strong="H3605"\w* fathers. +\p +\v 41 “\w Moreover|strong="H1571"\w*, \w concerning|strong="H3478"\w* \w the|strong="H1571"\w* \w foreigner|strong="H5237"\w*, \w who|strong="H1931"\w* \w is|strong="H1931"\w* \w not|strong="H3808"\w* \w of|strong="H8034"\w* \w your|strong="H3808"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w when|strong="H1571"\w* \w he|strong="H1931"\w* comes \w out|strong="H3808"\w* \w of|strong="H8034"\w* \w a|strong="H3068"\w* \w far|strong="H7350"\w* country \w for|strong="H8034"\w* \w your|strong="H3808"\w* \w name|strong="H8034"\w*’s \w sake|strong="H4616"\w* +\v 42 (\w for|strong="H3588"\w* \w they|strong="H3588"\w* \w shall|strong="H1004"\w* \w hear|strong="H8085"\w* \w of|strong="H1004"\w* \w your|strong="H5186"\w* \w great|strong="H1419"\w* \w name|strong="H8034"\w* \w and|strong="H1419"\w* \w of|strong="H1004"\w* \w your|strong="H5186"\w* \w mighty|strong="H2389"\w* \w hand|strong="H3027"\w* \w and|strong="H1419"\w* \w of|strong="H1004"\w* \w your|strong="H5186"\w* \w outstretched|strong="H5186"\w* \w arm|strong="H2220"\w*), \w when|strong="H3588"\w* \w he|strong="H3588"\w* comes \w and|strong="H1419"\w* \w prays|strong="H6419"\w* \w toward|strong="H3027"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w*, +\v 43 \w hear|strong="H8085"\w* \w in|strong="H3427"\w* \w heaven|strong="H8064"\w*, \w your|strong="H3605"\w* \w dwelling|strong="H3427"\w* \w place|strong="H4349"\w*, \w and|strong="H3478"\w* \w do|strong="H6213"\w* \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w foreigner|strong="H5237"\w* \w calls|strong="H7121"\w* \w to|strong="H3478"\w* \w you|strong="H3588"\w* \w for|strong="H3588"\w*; \w that|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w* \w may|strong="H5971"\w* \w know|strong="H3045"\w* \w your|strong="H3605"\w* \w name|strong="H8034"\w*, \w to|strong="H3478"\w* \w fear|strong="H3372"\w* \w you|strong="H3588"\w*, \w as|strong="H6213"\w* \w do|strong="H6213"\w* \w your|strong="H3605"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w may|strong="H5971"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w* \w which|strong="H1004"\w* \w I|strong="H3588"\w* \w have|strong="H5971"\w* \w built|strong="H1129"\w* \w is|strong="H2088"\w* \w called|strong="H7121"\w* \w by|strong="H5921"\w* \w your|strong="H3605"\w* \w name|strong="H8034"\w*. +\p +\v 44 “\w If|strong="H3588"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w battle|strong="H4421"\w* \w against|strong="H5921"\w* \w their|strong="H3068"\w* enemy, \w by|strong="H5921"\w* whatever \w way|strong="H1870"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w send|strong="H7971"\w* \w them|strong="H5921"\w*, \w and|strong="H3068"\w* \w they|strong="H3588"\w* \w pray|strong="H6419"\w* \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w* \w toward|strong="H1870"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w which|strong="H3068"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* chosen, \w and|strong="H3068"\w* \w toward|strong="H1870"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w which|strong="H3068"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w built|strong="H1129"\w* \w for|strong="H3588"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w*, +\v 45 \w then|strong="H6213"\w* \w hear|strong="H8085"\w* \w in|strong="H6213"\w* \w heaven|strong="H8064"\w* \w their|strong="H8085"\w* \w prayer|strong="H8605"\w* \w and|strong="H8064"\w* \w their|strong="H8085"\w* \w supplication|strong="H8467"\w*, \w and|strong="H8064"\w* \w maintain|strong="H6213"\w* \w their|strong="H8085"\w* \w cause|strong="H4941"\w*. +\v 46 \w If|strong="H3588"\w* \w they|strong="H3588"\w* \w sin|strong="H2398"\w* \w against|strong="H6440"\w* \w you|strong="H3588"\w* (\w for|strong="H3588"\w* \w there|strong="H6440"\w* \w is|strong="H6440"\w* \w no|strong="H3808"\w* \w man|strong="H6440"\w* \w who|strong="H7350"\w* doesn’t \w sin|strong="H2398"\w*), \w and|strong="H6440"\w* \w you|strong="H3588"\w* \w are|strong="H7350"\w* angry \w with|strong="H6440"\w* \w them|strong="H5414"\w* \w and|strong="H6440"\w* \w deliver|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H6440"\w* enemy, \w so|strong="H5414"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* carry \w them|strong="H5414"\w* \w away|strong="H7617"\w* \w captive|strong="H7617"\w* \w to|strong="H5414"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* enemy, \w far|strong="H7350"\w* \w off|strong="H7350"\w* \w or|strong="H3808"\w* \w near|strong="H7138"\w*; +\v 47 \w yet|strong="H2398"\w* \w if|strong="H2603"\w* \w they|strong="H8033"\w* \w repent|strong="H7725"\w* \w in|strong="H7725"\w* \w the|strong="H7725"\w* land \w where|strong="H8033"\w* \w they|strong="H8033"\w* \w are|strong="H8033"\w* \w carried|strong="H7617"\w* \w captive|strong="H7617"\w*, \w and|strong="H7725"\w* \w turn|strong="H7725"\w* \w again|strong="H7725"\w*, \w and|strong="H7725"\w* \w make|strong="H2603"\w* \w supplication|strong="H2603"\w* \w to|strong="H7725"\w* \w you|strong="H7725"\w* \w in|strong="H7725"\w* \w the|strong="H7725"\w* land \w of|strong="H3820"\w* those who \w carried|strong="H7617"\w* \w them|strong="H7725"\w* \w captive|strong="H7617"\w*, saying, ‘\w We|strong="H8033"\w* \w have|strong="H7617"\w* \w sinned|strong="H2398"\w* \w and|strong="H7725"\w* \w have|strong="H7617"\w* \w done|strong="H2398"\w* \w perversely|strong="H5753"\w*; \w we|strong="H3068"\w* \w have|strong="H7617"\w* \w dealt|strong="H2603"\w* \w wickedly|strong="H7561"\w*,’ +\v 48 if \w they|strong="H5315"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w you|strong="H5414"\w* \w with|strong="H1004"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w heart|strong="H3824"\w* \w and|strong="H7725"\w* \w with|strong="H1004"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w soul|strong="H5315"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* land \w of|strong="H1004"\w* \w their|strong="H3605"\w* enemies \w who|strong="H3605"\w* \w carried|strong="H7617"\w* \w them|strong="H5414"\w* \w captive|strong="H7617"\w*, \w and|strong="H7725"\w* \w pray|strong="H6419"\w* \w to|strong="H7725"\w* \w you|strong="H5414"\w* \w toward|strong="H1870"\w* \w their|strong="H3605"\w* land \w which|strong="H1004"\w* \w you|strong="H5414"\w* \w gave|strong="H5414"\w* \w to|strong="H7725"\w* \w their|strong="H3605"\w* fathers, \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w which|strong="H1004"\w* \w you|strong="H5414"\w* \w have|strong="H5414"\w* chosen \w and|strong="H7725"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w which|strong="H1004"\w* \w I|strong="H5414"\w* \w have|strong="H5414"\w* \w built|strong="H1129"\w* \w for|strong="H8034"\w* \w your|strong="H3605"\w* \w name|strong="H8034"\w*, +\v 49 \w then|strong="H6213"\w* \w hear|strong="H8085"\w* \w their|strong="H8085"\w* \w prayer|strong="H8605"\w* \w and|strong="H8064"\w* \w their|strong="H8085"\w* \w supplication|strong="H8467"\w* \w in|strong="H3427"\w* \w heaven|strong="H8064"\w*, \w your|strong="H8085"\w* \w dwelling|strong="H3427"\w* \w place|strong="H4349"\w*, \w and|strong="H8064"\w* \w maintain|strong="H6213"\w* \w their|strong="H8085"\w* \w cause|strong="H4941"\w*; +\v 50 \w and|strong="H5971"\w* \w forgive|strong="H5545"\w* \w your|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w have|strong="H7355"\w* \w sinned|strong="H2398"\w* \w against|strong="H6440"\w* \w you|strong="H5414"\w*, \w and|strong="H5971"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w transgressions|strong="H6588"\w* \w in|strong="H6440"\w* \w which|strong="H5971"\w* \w they|strong="H5971"\w* \w have|strong="H7355"\w* \w transgressed|strong="H6586"\w* \w against|strong="H6440"\w* \w you|strong="H5414"\w*; \w and|strong="H5971"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w compassion|strong="H7355"\w* \w before|strong="H6440"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w carried|strong="H7617"\w* \w them|strong="H5414"\w* \w captive|strong="H7617"\w*, \w that|strong="H5971"\w* \w they|strong="H5971"\w* \w may|strong="H5971"\w* \w have|strong="H7355"\w* \w compassion|strong="H7355"\w* \w on|strong="H7355"\w* \w them|strong="H5414"\w* +\v 51 (\w for|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w your|strong="H3588"\w* \w people|strong="H5971"\w* \w and|strong="H5971"\w* \w your|strong="H3588"\w* \w inheritance|strong="H5159"\w*, \w which|strong="H1992"\w* \w you|strong="H3588"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H8432"\w* \w Egypt|strong="H4714"\w*, \w from|strong="H3318"\w* \w the|strong="H3588"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w the|strong="H3588"\w* \w iron|strong="H1270"\w* \w furnace|strong="H3564"\w*); +\v 52 \w that|strong="H5971"\w* \w your|strong="H3605"\w* \w eyes|strong="H5869"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w open|strong="H6605"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w supplication|strong="H8467"\w* \w of|strong="H5869"\w* \w your|strong="H3605"\w* \w servant|strong="H5650"\w* \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w supplication|strong="H8467"\w* \w of|strong="H5869"\w* \w your|strong="H3605"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w listen|strong="H8085"\w* \w to|strong="H3478"\w* \w them|strong="H7121"\w* \w whenever|strong="H3605"\w* \w they|strong="H5971"\w* \w cry|strong="H7121"\w* \w to|strong="H3478"\w* \w you|strong="H3605"\w*. +\v 53 \w For|strong="H3588"\w* \w you|strong="H3588"\w* separated \w them|strong="H3027"\w* \w from|strong="H3318"\w* \w among|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* earth \w to|strong="H1696"\w* \w be|strong="H3027"\w* \w your|strong="H3605"\w* \w inheritance|strong="H5159"\w*, \w as|strong="H3588"\w* \w you|strong="H3588"\w* \w spoke|strong="H1696"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w* \w your|strong="H3605"\w* \w servant|strong="H5650"\w*, \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w brought|strong="H3318"\w* \w our|strong="H3605"\w* fathers \w out|strong="H3318"\w* \w of|strong="H3027"\w* \w Egypt|strong="H4714"\w*, \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 54 \w It|strong="H5921"\w* \w was|strong="H3068"\w* \w so|strong="H1961"\w*, \w that|strong="H3605"\w* \w when|strong="H1961"\w* \w Solomon|strong="H8010"\w* \w had|strong="H3068"\w* \w finished|strong="H3615"\w* \w praying|strong="H6419"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w prayer|strong="H8605"\w* \w and|strong="H6965"\w* \w supplication|strong="H8467"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w he|strong="H3068"\w* \w arose|strong="H6965"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*’s \w altar|strong="H4196"\w*, \w from|strong="H6440"\w* \w kneeling|strong="H3766"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w knees|strong="H1290"\w* \w with|strong="H3068"\w* \w his|strong="H3605"\w* \w hands|strong="H3709"\w* \w spread|strong="H6566"\w* \w out|strong="H6566"\w* \w toward|strong="H5921"\w* \w heaven|strong="H8064"\w*. +\v 55 \w He|strong="H3605"\w* \w stood|strong="H5975"\w* \w and|strong="H3478"\w* \w blessed|strong="H1288"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w of|strong="H6963"\w* \w Israel|strong="H3478"\w* \w with|strong="H3478"\w* \w a|strong="H3068"\w* \w loud|strong="H1419"\w* \w voice|strong="H6963"\w*, \w saying|strong="H6963"\w*, +\v 56 “\w Blessed|strong="H1288"\w* \w be|strong="H3808"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H3605"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w rest|strong="H4496"\w* \w to|strong="H1696"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w according|strong="H3027"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w that|strong="H5971"\w* \w he|strong="H3068"\w* \w promised|strong="H1696"\w*. \w There|strong="H3605"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w failed|strong="H5307"\w* \w one|strong="H3605"\w* \w word|strong="H1697"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w good|strong="H2896"\w* \w promise|strong="H1697"\w*, \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w promised|strong="H1696"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w* \w his|strong="H3605"\w* \w servant|strong="H5650"\w*. +\v 57 \w May|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w us|strong="H1961"\w* \w as|strong="H1961"\w* \w he|strong="H3068"\w* \w was|strong="H3068"\w* \w with|strong="H5973"\w* \w our|strong="H3068"\w* fathers. \w Let|strong="H5800"\w* \w him|strong="H5973"\w* \w not|strong="H1961"\w* \w leave|strong="H5800"\w* \w us|strong="H1961"\w* \w or|strong="H3068"\w* \w forsake|strong="H5800"\w* \w us|strong="H1961"\w*, +\v 58 \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w may|strong="H3824"\w* \w incline|strong="H5186"\w* \w our|strong="H3605"\w* \w hearts|strong="H3824"\w* \w to|strong="H3212"\w* \w him|strong="H6680"\w*, \w to|strong="H3212"\w* \w walk|strong="H3212"\w* \w in|strong="H3212"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w ways|strong="H1870"\w*, \w and|strong="H4941"\w* \w to|strong="H3212"\w* \w keep|strong="H8104"\w* \w his|strong="H3605"\w* \w commandments|strong="H4687"\w*, \w his|strong="H3605"\w* \w statutes|strong="H2706"\w*, \w and|strong="H4941"\w* \w his|strong="H3605"\w* \w ordinances|strong="H4941"\w*, \w which|strong="H3605"\w* \w he|strong="H3605"\w* \w commanded|strong="H6680"\w* \w our|strong="H3605"\w* fathers. +\v 59 \w Let|strong="H1961"\w* \w these|strong="H6213"\w* \w my|strong="H3068"\w* \w words|strong="H1697"\w*, \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w I|strong="H3117"\w* \w have|strong="H1961"\w* \w made|strong="H6213"\w* \w supplication|strong="H2603"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w be|strong="H1961"\w* \w near|strong="H7126"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w day|strong="H3117"\w* \w and|strong="H3478"\w* \w night|strong="H3915"\w*, \w that|strong="H5971"\w* \w he|strong="H3117"\w* \w may|strong="H1961"\w* \w maintain|strong="H6213"\w* \w the|strong="H6440"\w* \w cause|strong="H4941"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w servant|strong="H5650"\w* \w and|strong="H3478"\w* \w the|strong="H6440"\w* \w cause|strong="H4941"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w as|strong="H1697"\w* \w every|strong="H3117"\w* \w day|strong="H3117"\w* \w requires|strong="H1697"\w*; +\v 60 \w that|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* earth \w may|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w himself|strong="H1931"\w* \w is|strong="H3068"\w* \w God|strong="H3068"\w*. \w There|strong="H3605"\w* \w is|strong="H3068"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w else|strong="H5750"\w*. +\p +\v 61 “\w Let|strong="H3212"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w therefore|strong="H3068"\w* \w be|strong="H1961"\w* \w perfect|strong="H8003"\w* \w with|strong="H5973"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w to|strong="H3068"\w* \w walk|strong="H3212"\w* \w in|strong="H3068"\w* \w his|strong="H8104"\w* \w statutes|strong="H2706"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w keep|strong="H8104"\w* \w his|strong="H8104"\w* \w commandments|strong="H4687"\w*, \w as|strong="H3117"\w* \w it|strong="H1961"\w* \w is|strong="H3068"\w* \w today|strong="H3117"\w*.” +\p +\v 62 \w The|strong="H3605"\w* \w king|strong="H4428"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w with|strong="H5973"\w* \w him|strong="H6440"\w*, \w offered|strong="H2076"\w* \w sacrifice|strong="H2077"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 63 \w Solomon|strong="H8010"\w* \w offered|strong="H2076"\w* \w for|strong="H3068"\w* \w the|strong="H3605"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H1121"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w offered|strong="H2076"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w twenty|strong="H6242"\w* \w two|strong="H8147"\w* thousand head \w of|strong="H1121"\w* \w cattle|strong="H1241"\w* \w and|strong="H3967"\w* \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* \w twenty|strong="H6242"\w* thousand \w sheep|strong="H6629"\w*. So \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w and|strong="H3967"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w dedicated|strong="H2596"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 64 \w The|strong="H6440"\w* \w same|strong="H1931"\w* \w day|strong="H3117"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w made|strong="H6213"\w* \w the|strong="H6440"\w* \w middle|strong="H8432"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w court|strong="H2691"\w* \w holy|strong="H6942"\w* \w that|strong="H3588"\w* \w was|strong="H3068"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*; \w for|strong="H3588"\w* \w there|strong="H8033"\w* \w he|strong="H1931"\w* \w offered|strong="H6213"\w* \w the|strong="H6440"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, \w the|strong="H6440"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w fat|strong="H2459"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w because|strong="H3588"\w* \w the|strong="H6440"\w* \w bronze|strong="H5178"\w* \w altar|strong="H4196"\w* \w that|strong="H3588"\w* \w was|strong="H3068"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* too \w little|strong="H6996"\w* \w to|strong="H3068"\w* \w receive|strong="H3557"\w* \w the|strong="H6440"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, \w the|strong="H6440"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w fat|strong="H2459"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*. +\p +\v 65 \w So|strong="H6213"\w* \w Solomon|strong="H8010"\w* \w held|strong="H6213"\w* \w the|strong="H3605"\w* \w feast|strong="H2282"\w* \w at|strong="H3478"\w* \w that|strong="H3605"\w* \w time|strong="H6256"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w with|strong="H5973"\w* \w him|strong="H6440"\w*, \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w assembly|strong="H6951"\w*, \w from|strong="H6440"\w* \w the|strong="H3605"\w* entrance \w of|strong="H3068"\w* \w Hamath|strong="H2574"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w brook|strong="H5158"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w seven|strong="H7651"\w* \w days|strong="H3117"\w* \w and|strong="H3478"\w* \w seven|strong="H7651"\w* \w more|strong="H1419"\w* \w days|strong="H3117"\w*, \w even|strong="H5704"\w* \w fourteen|strong="H6240"\w* \w days|strong="H3117"\w*. +\v 66 \w On|strong="H5921"\w* \w the|strong="H3605"\w* \w eighth|strong="H8066"\w* \w day|strong="H3117"\w* \w he|strong="H3117"\w* \w sent|strong="H7971"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w away|strong="H7971"\w*; \w and|strong="H3478"\w* \w they|strong="H3117"\w* \w blessed|strong="H1288"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w and|strong="H3478"\w* \w went|strong="H3212"\w* \w to|strong="H3478"\w* \w their|strong="H3605"\w* tents \w joyful|strong="H8056"\w* \w and|strong="H3478"\w* \w glad|strong="H8056"\w* \w in|strong="H5921"\w* \w their|strong="H3605"\w* \w hearts|strong="H3820"\w* \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w goodness|strong="H2896"\w* \w that|strong="H5971"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w shown|strong="H6213"\w* \w to|strong="H3478"\w* \w David|strong="H1732"\w* \w his|strong="H3605"\w* \w servant|strong="H5650"\w*, \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*. +\c 9 +\p +\v 1 \w When|strong="H1961"\w* \w Solomon|strong="H8010"\w* \w had|strong="H3068"\w* \w finished|strong="H3615"\w* \w the|strong="H3605"\w* \w building|strong="H1129"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w Solomon|strong="H8010"\w*’s \w desire|strong="H2654"\w* \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w was|strong="H3068"\w* \w pleased|strong="H2654"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w*, +\v 2 \w Yahweh|strong="H3068"\w* \w appeared|strong="H7200"\w* \w to|strong="H3068"\w* \w Solomon|strong="H8010"\w* \w the|strong="H7200"\w* \w second|strong="H8145"\w* \w time|strong="H8145"\w*, \w as|strong="H3068"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w* \w appeared|strong="H7200"\w* \w to|strong="H3068"\w* \w him|strong="H7200"\w* \w at|strong="H3068"\w* \w Gibeon|strong="H1391"\w*. +\v 3 \w Yahweh|strong="H3068"\w* \w said|strong="H8085"\w* \w to|strong="H5704"\w* \w him|strong="H6440"\w*, “\w I|strong="H3117"\w* \w have|strong="H1961"\w* \w heard|strong="H8085"\w* \w your|strong="H3068"\w* \w prayer|strong="H8605"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w supplication|strong="H8467"\w* \w that|strong="H3605"\w* \w you|strong="H6440"\w* \w have|strong="H1961"\w* \w made|strong="H7760"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*. \w I|strong="H3117"\w* \w have|strong="H1961"\w* \w made|strong="H7760"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w* \w holy|strong="H6942"\w*, \w which|strong="H3068"\w* \w you|strong="H6440"\w* \w have|strong="H1961"\w* \w built|strong="H1129"\w*, \w to|strong="H5704"\w* \w put|strong="H7760"\w* \w my|strong="H8085"\w* \w name|strong="H8034"\w* \w there|strong="H8033"\w* \w forever|strong="H5769"\w*; \w and|strong="H3068"\w* \w my|strong="H8085"\w* \w eyes|strong="H5869"\w* \w and|strong="H3068"\w* \w my|strong="H8085"\w* \w heart|strong="H3820"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w there|strong="H8033"\w* \w perpetually|strong="H3605"\w*. +\v 4 \w As|strong="H6213"\w* \w for|strong="H6213"\w* \w you|strong="H6440"\w*, if \w you|strong="H6440"\w* \w will|strong="H3824"\w* \w walk|strong="H1980"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w as|strong="H6213"\w* \w David|strong="H1732"\w* \w your|strong="H3605"\w* father \w walked|strong="H1980"\w*, \w in|strong="H1980"\w* \w integrity|strong="H8537"\w* \w of|strong="H6440"\w* \w heart|strong="H3824"\w* \w and|strong="H1980"\w* \w in|strong="H1980"\w* \w uprightness|strong="H3476"\w*, \w to|strong="H1980"\w* \w do|strong="H6213"\w* \w according|strong="H4941"\w* \w to|strong="H1980"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H6680"\w* \w have|strong="H3605"\w* \w commanded|strong="H6680"\w* \w you|strong="H6440"\w*, \w and|strong="H1980"\w* \w will|strong="H3824"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w statutes|strong="H2706"\w* \w and|strong="H1980"\w* \w my|strong="H8104"\w* \w ordinances|strong="H4941"\w*, +\v 5 \w then|strong="H6965"\w* \w I|strong="H5921"\w* \w will|strong="H3478"\w* \w establish|strong="H6965"\w* \w the|strong="H5921"\w* \w throne|strong="H3678"\w* \w of|strong="H3678"\w* \w your|strong="H5921"\w* \w kingdom|strong="H4467"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w forever|strong="H5769"\w*, \w as|strong="H6965"\w* \w I|strong="H5921"\w* \w promised|strong="H1696"\w* \w to|strong="H1696"\w* \w David|strong="H1732"\w* \w your|strong="H5921"\w* father, \w saying|strong="H1696"\w*, ‘\w There|strong="H5769"\w* \w shall|strong="H3478"\w* \w not|strong="H3808"\w* \w fail|strong="H3772"\w* \w from|strong="H3772"\w* \w you|strong="H5921"\w* \w a|strong="H3068"\w* man \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w throne|strong="H3678"\w* \w of|strong="H3678"\w* \w Israel|strong="H3478"\w*.’ +\v 6 \w But|strong="H3808"\w* \w if|strong="H1121"\w* \w you|strong="H5414"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w from|strong="H7725"\w* \w following|strong="H1980"\w* \w me|strong="H5414"\w*, \w you|strong="H5414"\w* \w or|strong="H3808"\w* \w your|strong="H5414"\w* \w children|strong="H1121"\w*, \w and|strong="H1121"\w* \w not|strong="H3808"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w commandments|strong="H4687"\w* \w and|strong="H1121"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w* \w which|strong="H2708"\w* \w I|strong="H5414"\w* \w have|strong="H1121"\w* \w set|strong="H5414"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w*, \w but|strong="H3808"\w* \w go|strong="H1980"\w* \w and|strong="H1121"\w* \w serve|strong="H5647"\w* other \w gods|strong="H1980"\w* \w and|strong="H1121"\w* \w worship|strong="H7812"\w* \w them|strong="H5414"\w*, +\v 7 \w then|strong="H1961"\w* \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w Israel|strong="H3478"\w* \w out|strong="H7971"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w which|strong="H1004"\w* \w I|strong="H5414"\w* \w have|strong="H1961"\w* \w given|strong="H5414"\w* \w them|strong="H5414"\w*; \w and|strong="H3478"\w* \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w cast|strong="H7971"\w* \w this|strong="H5414"\w* \w house|strong="H1004"\w*, \w which|strong="H1004"\w* \w I|strong="H5414"\w* \w have|strong="H1961"\w* \w made|strong="H3772"\w* \w holy|strong="H6942"\w* \w for|strong="H5921"\w* \w my|strong="H5414"\w* \w name|strong="H8034"\w*, \w out|strong="H7971"\w* \w of|strong="H1004"\w* \w my|strong="H5414"\w* \w sight|strong="H6440"\w*; \w and|strong="H3478"\w* \w Israel|strong="H3478"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w proverb|strong="H4912"\w* \w and|strong="H3478"\w* \w a|strong="H3068"\w* \w byword|strong="H8148"\w* \w among|strong="H5921"\w* \w all|strong="H3605"\w* \w peoples|strong="H5971"\w*. +\v 8 Though \w this|strong="H2088"\w* \w house|strong="H1004"\w* \w is|strong="H3068"\w* \w so|strong="H6213"\w* \w high|strong="H5945"\w*, \w yet|strong="H3068"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w passes|strong="H5674"\w* \w by|strong="H5921"\w* \w it|strong="H5921"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w astonished|strong="H8074"\w* \w and|strong="H3068"\w* \w hiss|strong="H8319"\w*; \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* say, ‘\w Why|strong="H4100"\w* \w has|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w done|strong="H6213"\w* \w this|strong="H2088"\w* \w to|strong="H3068"\w* \w this|strong="H2088"\w* land \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w*?’ +\v 9 \w and|strong="H3068"\w* \w they|strong="H3651"\w* \w will|strong="H3068"\w* answer, ‘\w Because|strong="H5921"\w* \w they|strong="H3651"\w* \w abandoned|strong="H5800"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3605"\w* \w God|strong="H3068"\w*, \w who|strong="H3605"\w* \w brought|strong="H3318"\w* \w their|strong="H3605"\w* fathers \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H3068"\w* embraced \w other|strong="H3605"\w* gods, \w and|strong="H3068"\w* \w worshiped|strong="H7812"\w* \w them|strong="H5921"\w*, \w and|strong="H3068"\w* \w served|strong="H5647"\w* \w them|strong="H5921"\w*. \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w brought|strong="H3318"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w evil|strong="H7451"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*.’” +\p +\v 10 \w At|strong="H3068"\w* \w the|strong="H3068"\w* \w end|strong="H7097"\w* \w of|strong="H4428"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w*, \w in|strong="H8141"\w* \w which|strong="H3068"\w* \w Solomon|strong="H8010"\w* \w had|strong="H3068"\w* \w built|strong="H1129"\w* \w the|strong="H3068"\w* \w two|strong="H8147"\w* \w houses|strong="H1004"\w*, \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w* +\v 11 (\w now|strong="H5414"\w* \w Hiram|strong="H2438"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Tyre|strong="H6865"\w* \w had|strong="H8010"\w* \w furnished|strong="H5375"\w* \w Solomon|strong="H8010"\w* \w with|strong="H5892"\w* cedar \w trees|strong="H6086"\w* \w and|strong="H6242"\w* \w cypress|strong="H1265"\w* \w trees|strong="H6086"\w*, \w and|strong="H6242"\w* \w with|strong="H5892"\w* \w gold|strong="H2091"\w*, according \w to|strong="H5414"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w desire|strong="H2656"\w*), \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w gave|strong="H5414"\w* \w Hiram|strong="H2438"\w* \w twenty|strong="H6242"\w* \w cities|strong="H5892"\w* \w in|strong="H4428"\w* \w the|strong="H3605"\w* land \w of|strong="H4428"\w* \w Galilee|strong="H1551"\w*. +\v 12 \w Hiram|strong="H2438"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H5892"\w* \w Tyre|strong="H6865"\w* \w to|strong="H3318"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w cities|strong="H5892"\w* \w which|strong="H5869"\w* \w Solomon|strong="H8010"\w* \w had|strong="H8010"\w* \w given|strong="H5414"\w* \w him|strong="H5414"\w*; \w and|strong="H5869"\w* \w they|strong="H3808"\w* didn’t \w please|strong="H3474"\w* \w him|strong="H5414"\w*. +\v 13 \w He|strong="H3117"\w* \w said|strong="H7121"\w*, “\w What|strong="H4100"\w* \w cities|strong="H5892"\w* \w are|strong="H3117"\w* \w these|strong="H2088"\w* \w which|strong="H5892"\w* \w you|strong="H5414"\w* \w have|strong="H3117"\w* \w given|strong="H5414"\w* \w me|strong="H5414"\w*, \w my|strong="H5414"\w* brother?” \w He|strong="H3117"\w* \w called|strong="H7121"\w* \w them|strong="H5414"\w* \w the|strong="H5414"\w* land \w of|strong="H3117"\w* \w Cabul|strong="H3521"\w*\f + \fr 9:13 \ft “Cabul” sounds like Hebrew for “good-for-nothing”.\f* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 14 \w Hiram|strong="H2438"\w* \w sent|strong="H7971"\w* \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w king|strong="H4428"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w twenty|strong="H6242"\w* \w talents|strong="H3603"\w*\f + \fr 9:14 \ft A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 120 talents is about 3.6 metric tons\f* \w of|strong="H4428"\w* \w gold|strong="H2091"\w*. +\p +\v 15 \w This|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w reason|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3068"\w* \w forced|strong="H4522"\w* \w labor|strong="H4522"\w* \w which|strong="H3068"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w conscripted|strong="H5927"\w*: \w to|strong="H3068"\w* \w build|strong="H1129"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w his|strong="H3068"\w* own \w house|strong="H1004"\w*, \w Millo|strong="H4407"\w*, \w Jerusalem|strong="H3389"\w*’s \w wall|strong="H2346"\w*, \w Hazor|strong="H2674"\w*, \w Megiddo|strong="H4023"\w*, \w and|strong="H3068"\w* \w Gezer|strong="H1507"\w*. +\v 16 \w Pharaoh|strong="H6547"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w had|strong="H8010"\w* \w gone|strong="H5927"\w* \w up|strong="H5927"\w*, \w taken|strong="H3920"\w* \w Gezer|strong="H1507"\w*, \w burned|strong="H8313"\w* \w it|strong="H5414"\w* \w with|strong="H8313"\w* fire, \w killed|strong="H2026"\w* \w the|strong="H5414"\w* \w Canaanites|strong="H3669"\w* \w who|strong="H3427"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5414"\w* \w city|strong="H5892"\w*, \w and|strong="H4428"\w* \w given|strong="H5414"\w* \w it|strong="H5414"\w* \w for|strong="H4714"\w* \w a|strong="H3068"\w* wedding \w gift|strong="H5414"\w* \w to|strong="H5927"\w* \w his|strong="H5414"\w* \w daughter|strong="H1323"\w*, \w Solomon|strong="H8010"\w*’s wife. +\v 17 \w Solomon|strong="H8010"\w* \w built|strong="H1129"\w* \w in|strong="H1129"\w* \w the|strong="H1129"\w* land \w Gezer|strong="H1507"\w*, Beth Horon \w the|strong="H1129"\w* \w lower|strong="H8481"\w*, +\v 18 \w Baalath|strong="H1191"\w*, \w Tamar|strong="H8559"\w* in \w the|strong="H4057"\w* \w wilderness|strong="H4057"\w*, +\v 19 \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w storage|strong="H4543"\w* \w cities|strong="H5892"\w* \w that|strong="H3605"\w* \w Solomon|strong="H8010"\w* \w had|strong="H1961"\w*, \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w for|strong="H3389"\w* \w his|strong="H3605"\w* \w chariots|strong="H7393"\w*, \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w for|strong="H3389"\w* \w his|strong="H3605"\w* \w horsemen|strong="H6571"\w*, \w and|strong="H5892"\w* \w that|strong="H3605"\w* \w which|strong="H5892"\w* \w Solomon|strong="H8010"\w* \w desired|strong="H2836"\w* \w to|strong="H1961"\w* \w build|strong="H1129"\w* \w for|strong="H3389"\w* \w his|strong="H3605"\w* \w pleasure|strong="H2837"\w* \w in|strong="H5892"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H5892"\w* \w in|strong="H5892"\w* \w Lebanon|strong="H3844"\w*, \w and|strong="H5892"\w* \w in|strong="H5892"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H5892"\w* \w his|strong="H3605"\w* \w dominion|strong="H4475"\w*. +\v 20 \w As|strong="H5971"\w* \w for|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w left|strong="H3498"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* Amorites, \w the|strong="H3605"\w* \w Hittites|strong="H2850"\w*, \w the|strong="H3605"\w* \w Perizzites|strong="H6522"\w*, \w the|strong="H3605"\w* \w Hivites|strong="H2340"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w Jebusites|strong="H2983"\w*, \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w not|strong="H3808"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*— +\v 21 \w their|strong="H5647"\w* \w children|strong="H1121"\w* \w who|strong="H1121"\w* \w were|strong="H3478"\w* \w left|strong="H3498"\w* \w after|strong="H3117"\w* \w them|strong="H2763"\w* \w in|strong="H3478"\w* \w the|strong="H5647"\w* land, whom \w the|strong="H5647"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w not|strong="H3808"\w* \w able|strong="H3201"\w* \w utterly|strong="H2763"\w* \w to|strong="H5704"\w* \w destroy|strong="H2763"\w*—\w of|strong="H1121"\w* \w them|strong="H2763"\w* \w Solomon|strong="H8010"\w* \w raised|strong="H5927"\w* \w a|strong="H3068"\w* \w levy|strong="H4522"\w* \w of|strong="H1121"\w* bondservants \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 22 \w But|strong="H3588"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w Solomon|strong="H8010"\w* \w made|strong="H5414"\w* \w no|strong="H3808"\w* bondservants; \w but|strong="H3588"\w* \w they|strong="H1992"\w* \w were|strong="H3478"\w* \w the|strong="H3588"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w war|strong="H4421"\w*, \w his|strong="H5414"\w* \w servants|strong="H5650"\w*, \w his|strong="H5414"\w* \w princes|strong="H8269"\w*, \w his|strong="H5414"\w* \w captains|strong="H8269"\w*, \w and|strong="H1121"\w* \w rulers|strong="H8269"\w* \w of|strong="H1121"\w* \w his|strong="H5414"\w* \w chariots|strong="H7393"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w his|strong="H5414"\w* \w horsemen|strong="H6571"\w*. +\v 23 \w These|strong="H6213"\w* \w were|strong="H5971"\w* \w the|strong="H5921"\w* \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w* \w chief|strong="H8269"\w* \w officers|strong="H8269"\w* \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w over|strong="H5921"\w* \w Solomon|strong="H8010"\w*’s \w work|strong="H4399"\w*, \w who|strong="H5971"\w* \w ruled|strong="H7287"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w labored|strong="H6213"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w work|strong="H4399"\w*. +\p +\v 24 But \w Pharaoh|strong="H6547"\w*’s \w daughter|strong="H1323"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H5927"\w* \w of|strong="H1004"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w* \w to|strong="H5927"\w* \w her|strong="H1129"\w* \w house|strong="H1004"\w* \w which|strong="H1004"\w* Solomon \w had|strong="H1732"\w* \w built|strong="H1129"\w* \w for|strong="H1004"\w* \w her|strong="H1129"\w*. \w Then|strong="H5927"\w* \w he|strong="H1004"\w* \w built|strong="H1129"\w* \w Millo|strong="H4407"\w*. +\p +\v 25 \w Solomon|strong="H8010"\w* \w offered|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w* \w and|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w built|strong="H1129"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w three|strong="H7969"\w* \w times|strong="H6471"\w* per \w year|strong="H8141"\w*, \w burning|strong="H6999"\w* \w incense|strong="H6999"\w* \w with|strong="H1004"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w* \w that|strong="H3068"\w* \w was|strong="H3068"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. \w So|strong="H5927"\w* \w he|strong="H3068"\w* \w finished|strong="H7999"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w*. +\p +\v 26 \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* fleet \w of|strong="H4428"\w* ships \w in|strong="H5921"\w* Ezion Geber, \w which|strong="H4428"\w* \w is|strong="H4428"\w* \w beside|strong="H5921"\w* Eloth, \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w shore|strong="H8193"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H4428"\w* Edom. +\v 27 \w Hiram|strong="H2438"\w* \w sent|strong="H7971"\w* \w in|strong="H5650"\w* \w the|strong="H3045"\w* fleet \w his|strong="H7971"\w* \w servants|strong="H5650"\w*, sailors \w who|strong="H5650"\w* \w had|strong="H8010"\w* \w knowledge|strong="H3045"\w* \w of|strong="H5650"\w* \w the|strong="H3045"\w* \w sea|strong="H3220"\w*, \w with|strong="H5973"\w* \w the|strong="H3045"\w* \w servants|strong="H5650"\w* \w of|strong="H5650"\w* \w Solomon|strong="H8010"\w*. +\v 28 \w They|strong="H8033"\w* \w came|strong="H4428"\w* \w to|strong="H4428"\w* Ophir, \w and|strong="H3967"\w* \w fetched|strong="H3947"\w* \w from|strong="H3947"\w* \w there|strong="H8033"\w* \w gold|strong="H2091"\w*, four \w hundred|strong="H3967"\w* \w and|strong="H3967"\w* \w twenty|strong="H6242"\w* \w talents|strong="H3603"\w*,\f + \fr 9:28 \ft A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 420 talents is about 12.6 metric tons\f* \w and|strong="H3967"\w* \w brought|strong="H3947"\w* \w it|strong="H8033"\w* \w to|strong="H4428"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w*. +\c 10 +\p +\v 1 \w When|strong="H8085"\w* \w the|strong="H8085"\w* \w queen|strong="H4436"\w* \w of|strong="H3068"\w* \w Sheba|strong="H7614"\w* \w heard|strong="H8085"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* \w fame|strong="H8034"\w* \w of|strong="H3068"\w* \w Solomon|strong="H8010"\w* \w concerning|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*, she \w came|strong="H3068"\w* \w to|strong="H3068"\w* \w test|strong="H5254"\w* \w him|strong="H8085"\w* \w with|strong="H3068"\w* hard \w questions|strong="H2420"\w*. +\v 2 \w She|strong="H5973"\w* \w came|strong="H1961"\w* \w to|strong="H1696"\w* \w Jerusalem|strong="H3389"\w* \w with|strong="H5973"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H7227"\w* caravan, \w with|strong="H5973"\w* \w camels|strong="H1581"\w* \w that|strong="H3605"\w* \w bore|strong="H5375"\w* \w spices|strong="H1314"\w*, \w very|strong="H3966"\w* \w much|strong="H7227"\w* \w gold|strong="H2091"\w*, \w and|strong="H2091"\w* \w precious|strong="H3368"\w* stones; \w and|strong="H2091"\w* \w when|strong="H1961"\w* \w she|strong="H5973"\w* \w had|strong="H1961"\w* \w come|strong="H1961"\w* \w to|strong="H1696"\w* \w Solomon|strong="H8010"\w*, \w she|strong="H5973"\w* \w talked|strong="H1696"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w* \w about|strong="H1961"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w was|strong="H1961"\w* \w in|strong="H1696"\w* \w her|strong="H3605"\w* \w heart|strong="H3824"\w*. +\v 3 \w Solomon|strong="H8010"\w* \w answered|strong="H5046"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w questions|strong="H1697"\w*. \w There|strong="H1961"\w* wasn’t \w anything|strong="H3605"\w* \w hidden|strong="H5956"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w which|strong="H1697"\w* \w he|strong="H3605"\w* didn’t \w tell|strong="H5046"\w* \w her|strong="H3605"\w*. +\v 4 \w When|strong="H7200"\w* \w the|strong="H3605"\w* \w queen|strong="H4436"\w* \w of|strong="H1004"\w* \w Sheba|strong="H7614"\w* \w had|strong="H8010"\w* \w seen|strong="H7200"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w wisdom|strong="H2451"\w* \w of|strong="H1004"\w* \w Solomon|strong="H8010"\w*, \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w that|strong="H7200"\w* \w he|strong="H3605"\w* \w had|strong="H8010"\w* \w built|strong="H1129"\w*, +\v 5 \w the|strong="H3068"\w* \w food|strong="H3978"\w* \w of|strong="H1004"\w* \w his|strong="H3068"\w* \w table|strong="H7979"\w*, \w the|strong="H3068"\w* \w sitting|strong="H4186"\w* \w of|strong="H1004"\w* \w his|strong="H3068"\w* \w servants|strong="H5650"\w*, \w the|strong="H3068"\w* \w attendance|strong="H4612"\w* \w of|strong="H1004"\w* \w his|strong="H3068"\w* \w officials|strong="H5650"\w*, \w their|strong="H3068"\w* clothing, \w his|strong="H3068"\w* cup bearers, \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w ascent|strong="H5927"\w* \w by|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w there|strong="H1961"\w* \w was|strong="H3068"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w spirit|strong="H7307"\w* \w in|strong="H3068"\w* \w her|strong="H1961"\w*. +\v 6 \w She|strong="H5921"\w* \w said|strong="H1697"\w* \w to|strong="H1961"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*, “\w It|strong="H5921"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* true \w report|strong="H1697"\w* \w that|strong="H8085"\w* \w I|strong="H5921"\w* \w heard|strong="H8085"\w* \w in|strong="H5921"\w* \w my|strong="H8085"\w* \w own|strong="H1961"\w* land \w of|strong="H4428"\w* \w your|strong="H5921"\w* \w acts|strong="H1697"\w* \w and|strong="H4428"\w* \w of|strong="H4428"\w* \w your|strong="H5921"\w* \w wisdom|strong="H2451"\w*. +\v 7 \w However|strong="H8085"\w*, \w I|strong="H5704"\w* didn’t believe \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w until|strong="H5704"\w* \w I|strong="H5704"\w* \w came|strong="H1697"\w* \w and|strong="H5869"\w* \w my|strong="H8085"\w* \w eyes|strong="H5869"\w* \w had|strong="H5869"\w* \w seen|strong="H7200"\w* \w it|strong="H7200"\w*. \w Behold|strong="H2009"\w*, \w not|strong="H3808"\w* \w even|strong="H5704"\w* \w half|strong="H2677"\w* \w was|strong="H1697"\w* \w told|strong="H5046"\w* \w me|strong="H7200"\w*! \w Your|strong="H7200"\w* \w wisdom|strong="H2451"\w* \w and|strong="H5869"\w* \w prosperity|strong="H2896"\w* \w exceed|strong="H3254"\w* \w the|strong="H8085"\w* \w fame|strong="H8052"\w* \w which|strong="H1697"\w* \w I|strong="H5704"\w* \w heard|strong="H8085"\w*. +\v 8 Happy \w are|strong="H5650"\w* \w your|strong="H6440"\w* \w men|strong="H5650"\w*, happy \w are|strong="H5650"\w* \w these|strong="H8085"\w* \w your|strong="H6440"\w* \w servants|strong="H5650"\w* \w who|strong="H5650"\w* \w stand|strong="H5975"\w* \w continually|strong="H8548"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w who|strong="H5650"\w* \w hear|strong="H8085"\w* \w your|strong="H6440"\w* \w wisdom|strong="H2451"\w*. +\v 9 \w Blessed|strong="H1288"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w who|strong="H3068"\w* \w delighted|strong="H2654"\w* \w in|strong="H5921"\w* \w you|strong="H5414"\w*, \w to|strong="H3478"\w* \w set|strong="H7760"\w* \w you|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w throne|strong="H3678"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. \w Because|strong="H5921"\w* \w Yahweh|strong="H3068"\w* loved \w Israel|strong="H3478"\w* \w forever|strong="H5769"\w*, \w therefore|strong="H5921"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w you|strong="H5414"\w* \w king|strong="H4428"\w*, \w to|strong="H3478"\w* \w do|strong="H6213"\w* \w justice|strong="H4941"\w* \w and|strong="H3478"\w* \w righteousness|strong="H6666"\w*.” +\v 10 \w She|strong="H1931"\w* \w gave|strong="H5414"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w one|strong="H3808"\w* \w hundred|strong="H3967"\w* \w twenty|strong="H6242"\w* \w talents|strong="H3603"\w* \w of|strong="H4428"\w* \w gold|strong="H2091"\w*, \w and|strong="H3967"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H3966"\w* \w quantity|strong="H7230"\w* \w of|strong="H4428"\w* \w spices|strong="H1314"\w*, \w and|strong="H3967"\w* \w precious|strong="H3368"\w* stones. \w Never|strong="H3808"\w* \w again|strong="H5750"\w* \w was|strong="H1931"\w* \w there|strong="H7230"\w* \w such|strong="H1931"\w* \w an|strong="H5414"\w* \w abundance|strong="H7230"\w* \w of|strong="H4428"\w* \w spices|strong="H1314"\w* \w as|strong="H7230"\w* \w these|strong="H1931"\w* \w which|strong="H1931"\w* \w the|strong="H5414"\w* \w queen|strong="H4436"\w* \w of|strong="H4428"\w* \w Sheba|strong="H7614"\w* \w gave|strong="H5414"\w* \w to|strong="H5414"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w*. +\p +\v 11 \w The|strong="H5375"\w* fleet \w of|strong="H6086"\w* \w Hiram|strong="H2438"\w* \w that|strong="H6086"\w* \w brought|strong="H5375"\w* \w gold|strong="H2091"\w* \w from|strong="H2091"\w* Ophir \w also|strong="H1571"\w* \w brought|strong="H5375"\w* \w in|strong="H6086"\w* \w from|strong="H2091"\w* Ophir \w great|strong="H3966"\w* quantities \w of|strong="H6086"\w* almug \w trees|strong="H6086"\w*\f + \fr 10:11 \ft possibly an Indian sandalwood, with nice grain and a pleasant scent, and good for woodworking\f* \w and|strong="H6086"\w* \w precious|strong="H3368"\w* stones. +\v 12 \w The|strong="H7200"\w* \w king|strong="H4428"\w* \w made|strong="H6213"\w* \w of|strong="H4428"\w* \w the|strong="H7200"\w* almug \w trees|strong="H6086"\w* \w pillars|strong="H4552"\w* \w for|strong="H5704"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w and|strong="H3068"\w* \w for|strong="H5704"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w harps|strong="H3658"\w* \w also|strong="H3068"\w* \w and|strong="H3068"\w* stringed instruments \w for|strong="H5704"\w* \w the|strong="H7200"\w* \w singers|strong="H7891"\w*; \w no|strong="H3808"\w* \w such|strong="H2088"\w* almug \w trees|strong="H6086"\w* \w came|strong="H3068"\w* \w or|strong="H3808"\w* \w were|strong="H3117"\w* \w seen|strong="H7200"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\p +\v 13 \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w gave|strong="H5414"\w* \w to|strong="H3212"\w* \w the|strong="H3605"\w* \w queen|strong="H4436"\w* \w of|strong="H4428"\w* \w Sheba|strong="H7614"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w desire|strong="H2656"\w*, \w whatever|strong="H3605"\w* \w she|strong="H1931"\w* \w asked|strong="H7592"\w*, \w in|strong="H4428"\w* addition \w to|strong="H3212"\w* \w that|strong="H3605"\w* \w which|strong="H1931"\w* \w Solomon|strong="H8010"\w* \w gave|strong="H5414"\w* \w her|strong="H3605"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* \w royal|strong="H4428"\w* \w bounty|strong="H3027"\w*. \w So|strong="H5414"\w* \w she|strong="H1931"\w* \w turned|strong="H6437"\w* \w and|strong="H4428"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w her|strong="H3605"\w* \w own|strong="H3027"\w* land, \w she|strong="H1931"\w* \w and|strong="H4428"\w* \w her|strong="H3605"\w* \w servants|strong="H5650"\w*. +\p +\v 14 \w Now|strong="H1961"\w* \w the|strong="H1961"\w* \w weight|strong="H4948"\w* \w of|strong="H8141"\w* \w gold|strong="H2091"\w* \w that|strong="H8141"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w Solomon|strong="H8010"\w* \w in|strong="H8141"\w* \w one|strong="H1961"\w* \w year|strong="H8141"\w* \w was|strong="H1961"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w sixty-six|strong="H8346"\w* \w talents|strong="H3603"\w*\f + \fr 10:14 \ft A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 666 talents is about 20 metric tons\f* \w of|strong="H8141"\w* \w gold|strong="H2091"\w*, +\v 15 \w in|strong="H4428"\w* addition \w to|strong="H4428"\w* \w that|strong="H3605"\w* \w which|strong="H4428"\w* \w the|strong="H3605"\w* \w traders|strong="H7402"\w* \w brought|strong="H4428"\w*, \w and|strong="H4428"\w* \w the|strong="H3605"\w* traffic \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w merchants|strong="H7402"\w*, \w and|strong="H4428"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* mixed people, \w and|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w governors|strong="H6346"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* country. +\v 16 \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w made|strong="H6213"\w* \w two|strong="H6213"\w* \w hundred|strong="H3967"\w* \w bucklers|strong="H6793"\w* \w of|strong="H4428"\w* \w beaten|strong="H7820"\w* \w gold|strong="H2091"\w*; \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* shekels\f + \fr 10:16 \ft A shekel is about 10 grams or about 0.32 Troy ounces, so 600 shekels is about 6 kilograms or 13.2 pounds or 192 Troy ounces.\f* \w of|strong="H4428"\w* \w gold|strong="H2091"\w* \w went|strong="H5927"\w* \w to|strong="H5927"\w* \w one|strong="H6213"\w* \w buckler|strong="H6793"\w*. +\v 17 \w He|strong="H1004"\w* \w made|strong="H5414"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w shields|strong="H4043"\w* \w of|strong="H4428"\w* \w beaten|strong="H7820"\w* \w gold|strong="H2091"\w*; \w three|strong="H7969"\w* \w minas|strong="H4488"\w*\f + \fr 10:17 \ft A mina is about 600 grams or 1.3 U. S. pounds.\f* \w of|strong="H4428"\w* \w gold|strong="H2091"\w* \w went|strong="H5927"\w* \w to|strong="H5927"\w* \w one|strong="H3967"\w* \w shield|strong="H4043"\w*; \w and|strong="H3967"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w House|strong="H1004"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w Forest|strong="H3293"\w* \w of|strong="H4428"\w* \w Lebanon|strong="H3844"\w*. +\v 18 Moreover \w the|strong="H6213"\w* \w king|strong="H4428"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w throne|strong="H3678"\w* \w of|strong="H4428"\w* \w ivory|strong="H8127"\w*, \w and|strong="H4428"\w* \w overlaid|strong="H6823"\w* \w it|strong="H6213"\w* \w with|strong="H6213"\w* \w the|strong="H6213"\w* finest \w gold|strong="H2091"\w*. +\v 19 \w There|strong="H2088"\w* \w were|strong="H3027"\w* \w six|strong="H8337"\w* \w steps|strong="H4609"\w* \w to|strong="H3027"\w* \w the|strong="H3027"\w* \w throne|strong="H3678"\w*, \w and|strong="H3027"\w* \w the|strong="H3027"\w* \w top|strong="H7218"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w throne|strong="H3678"\w* \w was|strong="H4725"\w* \w round|strong="H5696"\w* \w behind|strong="H5975"\w*; \w and|strong="H3027"\w* \w there|strong="H2088"\w* \w were|strong="H3027"\w* \w armrests|strong="H7675"\w* \w on|strong="H3027"\w* \w either|strong="H2088"\w* \w side|strong="H2088"\w* \w by|strong="H3027"\w* \w the|strong="H3027"\w* \w place|strong="H4725"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w seat|strong="H3678"\w*, \w and|strong="H3027"\w* \w two|strong="H8147"\w* lions \w standing|strong="H5975"\w* \w beside|strong="H3027"\w* \w the|strong="H3027"\w* \w armrests|strong="H7675"\w*. +\v 20 \w Twelve|strong="H8147"\w* lions \w stood|strong="H5975"\w* \w there|strong="H8033"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w one|strong="H2088"\w* \w side|strong="H2088"\w* \w and|strong="H8033"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w other|strong="H2088"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w six|strong="H8337"\w* \w steps|strong="H4609"\w*. \w Nothing|strong="H3808"\w* \w like|strong="H3651"\w* \w it|strong="H5921"\w* \w was|strong="H4467"\w* \w made|strong="H6213"\w* \w in|strong="H5921"\w* \w any|strong="H3605"\w* \w kingdom|strong="H4467"\w*. +\v 21 \w All|strong="H3605"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w*’s \w drinking|strong="H4945"\w* \w vessels|strong="H3627"\w* \w were|strong="H3117"\w* \w of|strong="H4428"\w* \w gold|strong="H2091"\w*, \w and|strong="H3701"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w House|strong="H1004"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w Forest|strong="H3293"\w* \w of|strong="H4428"\w* \w Lebanon|strong="H3844"\w* \w were|strong="H3117"\w* \w of|strong="H4428"\w* \w pure|strong="H5462"\w* \w gold|strong="H2091"\w*. \w None|strong="H3808"\w* \w were|strong="H3117"\w* \w of|strong="H4428"\w* \w silver|strong="H3701"\w*, \w because|strong="H3117"\w* \w it|strong="H3117"\w* \w was|strong="H3117"\w* \w considered|strong="H2803"\w* \w of|strong="H4428"\w* little \w value|strong="H2803"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w Solomon|strong="H8010"\w*. +\v 22 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w had|strong="H4428"\w* \w a|strong="H3068"\w* fleet \w of|strong="H4428"\w* ships \w of|strong="H4428"\w* \w Tarshish|strong="H8659"\w* \w at|strong="H4428"\w* \w sea|strong="H3220"\w* \w with|strong="H5973"\w* \w Hiram|strong="H2438"\w*’s fleet. Once \w every|strong="H8141"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w* \w the|strong="H3588"\w* fleet \w of|strong="H4428"\w* \w Tarshish|strong="H8659"\w* \w came|strong="H4428"\w* \w bringing|strong="H5375"\w* \w gold|strong="H2091"\w*, \w silver|strong="H3701"\w*, \w ivory|strong="H8143"\w*, \w apes|strong="H6971"\w*, \w and|strong="H3701"\w* \w peacocks|strong="H8500"\w*. +\p +\v 23 \w So|strong="H1431"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w exceeded|strong="H1431"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* earth \w in|strong="H4428"\w* \w riches|strong="H6239"\w* \w and|strong="H4428"\w* \w in|strong="H4428"\w* \w wisdom|strong="H2451"\w*. +\v 24 \w All|strong="H3605"\w* \w the|strong="H3605"\w* earth \w sought|strong="H1245"\w* \w the|strong="H3605"\w* \w presence|strong="H6440"\w* \w of|strong="H6440"\w* \w Solomon|strong="H8010"\w* \w to|strong="H5414"\w* \w hear|strong="H8085"\w* \w his|strong="H3605"\w* \w wisdom|strong="H2451"\w* \w which|strong="H8085"\w* \w God|strong="H5414"\w* \w had|strong="H8010"\w* \w put|strong="H5414"\w* \w in|strong="H8085"\w* \w his|strong="H3605"\w* \w heart|strong="H3820"\w*. +\v 25 \w Year|strong="H8141"\w* \w after|strong="H1992"\w* \w year|strong="H8141"\w*, \w every|strong="H1697"\w* man brought \w his|strong="H1992"\w* \w tribute|strong="H4503"\w*, \w vessels|strong="H3627"\w* \w of|strong="H1697"\w* \w silver|strong="H3701"\w*, \w vessels|strong="H3627"\w* \w of|strong="H1697"\w* \w gold|strong="H2091"\w*, \w clothing|strong="H3627"\w*, \w armor|strong="H3627"\w*, \w spices|strong="H1314"\w*, \w horses|strong="H5483"\w*, \w and|strong="H3701"\w* \w mules|strong="H6505"\w*. +\p +\v 26 \w Solomon|strong="H8010"\w* \w gathered|strong="H8010"\w* \w together|strong="H5973"\w* \w chariots|strong="H7393"\w* \w and|strong="H3967"\w* \w horsemen|strong="H6571"\w*. \w He|strong="H8147"\w* \w had|strong="H1961"\w* \w one|strong="H1961"\w* thousand four \w hundred|strong="H3967"\w* \w chariots|strong="H7393"\w* \w and|strong="H3967"\w* \w twelve|strong="H8147"\w* thousand \w horsemen|strong="H6571"\w*. \w He|strong="H8147"\w* \w kept|strong="H1961"\w* \w them|strong="H8147"\w* \w in|strong="H4428"\w* \w the|strong="H1961"\w* \w chariot|strong="H7393"\w* \w cities|strong="H5892"\w* \w and|strong="H3967"\w* \w with|strong="H5973"\w* \w the|strong="H1961"\w* \w king|strong="H4428"\w* \w at|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*. +\v 27 \w The|strong="H5414"\w* \w king|strong="H4428"\w* \w made|strong="H5414"\w* \w silver|strong="H3701"\w* \w as|strong="H7230"\w* \w common|strong="H7230"\w* \w as|strong="H7230"\w* stones \w in|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3701"\w* cedars \w as|strong="H7230"\w* \w common|strong="H7230"\w* \w as|strong="H7230"\w* \w the|strong="H5414"\w* \w sycamore|strong="H8256"\w* \w trees|strong="H8256"\w* \w that|strong="H5414"\w* \w are|strong="H4428"\w* \w in|strong="H4428"\w* \w the|strong="H5414"\w* \w lowland|strong="H8219"\w*. +\v 28 \w The|strong="H3947"\w* \w horses|strong="H5483"\w* \w which|strong="H5483"\w* \w Solomon|strong="H8010"\w* \w had|strong="H8010"\w* \w were|strong="H4714"\w* \w brought|strong="H3947"\w* \w out|strong="H4161"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*. \w The|strong="H3947"\w* \w king|strong="H4428"\w*’s \w merchants|strong="H5503"\w* \w received|strong="H3947"\w* \w them|strong="H3947"\w* \w in|strong="H4428"\w* droves, \w each|strong="H3947"\w* drove \w at|strong="H4428"\w* \w a|strong="H3068"\w* \w price|strong="H4242"\w*. +\v 29 \w A|strong="H3068"\w* \w chariot|strong="H4818"\w* \w was|strong="H4428"\w* \w imported|strong="H5927"\w* \w from|strong="H3318"\w* \w Egypt|strong="H4714"\w* \w for|strong="H3027"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w shekels|strong="H3701"\w*\f + \fr 10:29 \ft A shekel is about 10 grams or about 0.35 ounces.\f* \w of|strong="H4428"\w* \w silver|strong="H3701"\w*, \w and|strong="H3967"\w* \w a|strong="H3068"\w* \w horse|strong="H5483"\w* \w for|strong="H3027"\w* \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w* \w shekels|strong="H3701"\w*; \w and|strong="H3967"\w* \w so|strong="H3651"\w* \w they|strong="H3651"\w* \w exported|strong="H3318"\w* \w them|strong="H3027"\w* \w to|strong="H3318"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w Hittites|strong="H2850"\w* \w and|strong="H3967"\w* \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* Syria. +\c 11 +\p +\v 1 \w Now|strong="H7227"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* loved \w many|strong="H7227"\w* \w foreign|strong="H5237"\w* \w women|strong="H1323"\w*, together \w with|strong="H4428"\w* \w the|strong="H8010"\w* \w daughter|strong="H1323"\w* \w of|strong="H4428"\w* \w Pharaoh|strong="H6547"\w*: \w women|strong="H1323"\w* \w of|strong="H4428"\w* \w the|strong="H8010"\w* \w Moabites|strong="H4125"\w*, \w Ammonites|strong="H5984"\w*, Edomites, \w Sidonians|strong="H6722"\w*, \w and|strong="H4428"\w* \w Hittites|strong="H2850"\w*, +\v 2 \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w nations|strong="H1471"\w* \w concerning|strong="H3068"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* said \w to|strong="H3478"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, “\w You|strong="H3808"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w go|strong="H3068"\w* \w among|strong="H4480"\w* \w them|strong="H1992"\w*, \w neither|strong="H3808"\w* \w shall|strong="H3068"\w* \w they|strong="H1992"\w* \w come|strong="H3478"\w* \w among|strong="H4480"\w* \w you|strong="H3808"\w*, \w for|strong="H3068"\w* \w surely|strong="H1121"\w* \w they|strong="H1992"\w* \w will|strong="H3068"\w* \w turn|strong="H5186"\w* \w away|strong="H5186"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w after|strong="H4480"\w* \w their|strong="H3068"\w* gods.” \w Solomon|strong="H8010"\w* \w joined|strong="H1692"\w* \w to|strong="H3478"\w* \w these|strong="H1992"\w* \w in|strong="H3478"\w* love. +\v 3 \w He|strong="H5186"\w* \w had|strong="H1961"\w* \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* wives, \w princesses|strong="H8282"\w*, \w and|strong="H3967"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w concubines|strong="H6370"\w*. \w His|strong="H5186"\w* wives \w turned|strong="H5186"\w* \w his|strong="H5186"\w* \w heart|strong="H3820"\w* \w away|strong="H5186"\w*. +\v 4 \w When|strong="H1961"\w* \w Solomon|strong="H8010"\w* \w was|strong="H3068"\w* \w old|strong="H2209"\w*, \w his|strong="H3068"\w* wives \w turned|strong="H5186"\w* \w away|strong="H5186"\w* \w his|strong="H3068"\w* \w heart|strong="H3824"\w* \w after|strong="H1961"\w* other gods; \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w heart|strong="H3824"\w* \w was|strong="H3068"\w* \w not|strong="H3808"\w* \w perfect|strong="H8003"\w* \w with|strong="H5973"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H3068"\w* \w God|strong="H3068"\w*, \w as|strong="H1961"\w* \w the|strong="H3068"\w* \w heart|strong="H3824"\w* \w of|strong="H3068"\w* \w David|strong="H1732"\w* \w his|strong="H3068"\w* father \w was|strong="H3068"\w*. +\v 5 \w For|strong="H8010"\w* \w Solomon|strong="H8010"\w* \w went|strong="H3212"\w* after \w Ashtoreth|strong="H6253"\w* \w the|strong="H8010"\w* goddess \w of|strong="H8251"\w* \w the|strong="H8010"\w* \w Sidonians|strong="H6722"\w*, \w and|strong="H3212"\w* after \w Milcom|strong="H4445"\w* \w the|strong="H8010"\w* \w abomination|strong="H8251"\w* \w of|strong="H8251"\w* \w the|strong="H8010"\w* \w Ammonites|strong="H5984"\w*. +\v 6 \w Solomon|strong="H8010"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w and|strong="H3068"\w* didn’t \w go|strong="H3068"\w* \w fully|strong="H4390"\w* after \w Yahweh|strong="H3068"\w*, \w as|strong="H6213"\w* \w David|strong="H1732"\w* \w his|strong="H3068"\w* father \w did|strong="H6213"\w*. +\v 7 \w Then|strong="H8010"\w* \w Solomon|strong="H8010"\w* \w built|strong="H1129"\w* \w a|strong="H3068"\w* \w high|strong="H1116"\w* \w place|strong="H1116"\w* \w for|strong="H5921"\w* \w Chemosh|strong="H3645"\w* \w the|strong="H6440"\w* \w abomination|strong="H8251"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w*, \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w mountain|strong="H2022"\w* \w that|strong="H1121"\w* \w is|strong="H1121"\w* \w before|strong="H6440"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H1121"\w* \w for|strong="H5921"\w* \w Molech|strong="H4432"\w* \w the|strong="H6440"\w* \w abomination|strong="H8251"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*. +\v 8 \w So|strong="H3651"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w* \w for|strong="H6213"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w foreign|strong="H5237"\w* wives, \w who|strong="H3605"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w and|strong="H6213"\w* \w sacrificed|strong="H2076"\w* \w to|strong="H6213"\w* \w their|strong="H3605"\w* gods. +\v 9 \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* angry \w with|strong="H5973"\w* \w Solomon|strong="H8010"\w*, \w because|strong="H3588"\w* \w his|strong="H3068"\w* \w heart|strong="H3824"\w* \w was|strong="H3068"\w* \w turned|strong="H5186"\w* \w away|strong="H5186"\w* \w from|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H7200"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w who|strong="H3068"\w* \w had|strong="H3068"\w* \w appeared|strong="H7200"\w* \w to|strong="H3478"\w* \w him|strong="H7200"\w* \w twice|strong="H6471"\w*, +\v 10 \w and|strong="H3068"\w* \w had|strong="H3068"\w* \w commanded|strong="H6680"\w* \w him|strong="H5921"\w* \w concerning|strong="H5921"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*, \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w should|strong="H3068"\w* \w not|strong="H3808"\w* \w go|strong="H3212"\w* \w after|strong="H5921"\w* \w other|strong="H2088"\w* gods; \w but|strong="H3808"\w* \w he|strong="H3068"\w* didn’t \w keep|strong="H8104"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w*. +\v 11 \w Therefore|strong="H5921"\w* \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Solomon|strong="H8010"\w*, “\w Because|strong="H5921"\w* \w this|strong="H2063"\w* \w is|strong="H3068"\w* \w done|strong="H1961"\w* \w by|strong="H5921"\w* \w you|strong="H5414"\w*, \w and|strong="H3068"\w* \w you|strong="H5414"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* \w kept|strong="H8104"\w* \w my|strong="H8104"\w* \w covenant|strong="H1285"\w* \w and|strong="H3068"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w*, \w which|strong="H3068"\w* \w I|strong="H5414"\w* \w have|strong="H1961"\w* \w commanded|strong="H6680"\w* \w you|strong="H5414"\w*, \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w surely|strong="H5414"\w* \w tear|strong="H7167"\w* \w the|strong="H5921"\w* \w kingdom|strong="H4467"\w* \w from|strong="H5921"\w* \w you|strong="H5414"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w*. +\v 12 Nevertheless, \w I|strong="H3117"\w* \w will|strong="H1121"\w* \w not|strong="H3808"\w* \w do|strong="H6213"\w* \w it|strong="H6213"\w* \w in|strong="H6213"\w* \w your|strong="H6213"\w* \w days|strong="H3117"\w*, \w for|strong="H6213"\w* \w David|strong="H1732"\w* \w your|strong="H6213"\w* \w father|strong="H1121"\w*’s \w sake|strong="H4616"\w*; \w but|strong="H3808"\w* \w I|strong="H3117"\w* \w will|strong="H1121"\w* \w tear|strong="H7167"\w* \w it|strong="H6213"\w* \w out|strong="H6213"\w* \w of|strong="H1121"\w* \w your|strong="H6213"\w* \w son|strong="H1121"\w*’s \w hand|strong="H3027"\w*. +\v 13 \w However|strong="H7535"\w*, \w I|strong="H5414"\w* \w will|strong="H5650"\w* \w not|strong="H3808"\w* \w tear|strong="H7167"\w* \w away|strong="H7167"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdom|strong="H4467"\w*; \w but|strong="H7535"\w* \w I|strong="H5414"\w* \w will|strong="H5650"\w* \w give|strong="H5414"\w* \w one|strong="H3605"\w* \w tribe|strong="H7626"\w* \w to|strong="H5414"\w* \w your|strong="H3605"\w* \w son|strong="H1121"\w*, \w for|strong="H4616"\w* \w David|strong="H1732"\w* \w my|strong="H5414"\w* \w servant|strong="H5650"\w*’s \w sake|strong="H4616"\w*, \w and|strong="H1121"\w* \w for|strong="H4616"\w* \w Jerusalem|strong="H3389"\w*’s \w sake|strong="H4616"\w* \w which|strong="H7626"\w* \w I|strong="H5414"\w* \w have|strong="H1121"\w* chosen.” +\p +\v 14 \w Yahweh|strong="H3068"\w* \w raised|strong="H6965"\w* \w up|strong="H6965"\w* \w an|strong="H6965"\w* \w adversary|strong="H7854"\w* \w to|strong="H3068"\w* \w Solomon|strong="H8010"\w*: \w Hadad|strong="H1908"\w* \w the|strong="H3068"\w* Edomite. \w He|strong="H1931"\w* \w was|strong="H3068"\w* \w one|strong="H1931"\w* \w of|strong="H4428"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w*’s \w offspring|strong="H2233"\w* \w in|strong="H3068"\w* Edom. +\v 15 \w For|strong="H6635"\w* \w when|strong="H1961"\w* \w David|strong="H1732"\w* \w was|strong="H1961"\w* \w in|strong="H6912"\w* Edom, \w and|strong="H1732"\w* \w Joab|strong="H3097"\w* \w the|strong="H3605"\w* \w captain|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w* \w had|strong="H1961"\w* \w gone|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w bury|strong="H6912"\w* \w the|strong="H3605"\w* \w slain|strong="H2491"\w*, \w and|strong="H1732"\w* \w had|strong="H1961"\w* \w struck|strong="H5221"\w* \w every|strong="H3605"\w* \w male|strong="H2145"\w* \w in|strong="H6912"\w* Edom +\v 16 (\w for|strong="H3588"\w* \w Joab|strong="H3097"\w* \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w remained|strong="H3427"\w* \w there|strong="H8033"\w* \w six|strong="H8337"\w* \w months|strong="H2320"\w*, \w until|strong="H5704"\w* \w he|strong="H3588"\w* \w had|strong="H3478"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w every|strong="H3605"\w* \w male|strong="H2145"\w* \w in|strong="H3427"\w* Edom), +\v 17 \w Hadad|strong="H1908"\w* \w fled|strong="H1272"\w*, \w he|strong="H1931"\w* \w and|strong="H5650"\w* certain Edomites \w of|strong="H5650"\w* \w his|strong="H1931"\w* father’s \w servants|strong="H5650"\w* \w with|strong="H4714"\w* \w him|strong="H1931"\w*, \w to|strong="H4714"\w* \w go|strong="H5288"\w* \w into|strong="H4714"\w* \w Egypt|strong="H4714"\w*, when \w Hadad|strong="H1908"\w* \w was|strong="H1931"\w* still \w a|strong="H3068"\w* \w little|strong="H6996"\w* \w child|strong="H5288"\w*. +\v 18 \w They|strong="H5414"\w* \w arose|strong="H6965"\w* \w out|strong="H5414"\w* \w of|strong="H4428"\w* \w Midian|strong="H4080"\w* \w and|strong="H6965"\w* \w came|strong="H4714"\w* \w to|strong="H5414"\w* \w Paran|strong="H6290"\w*; \w and|strong="H6965"\w* \w they|strong="H5414"\w* \w took|strong="H3947"\w* \w men|strong="H3947"\w* \w with|strong="H5973"\w* \w them|strong="H5414"\w* \w out|strong="H5414"\w* \w of|strong="H4428"\w* \w Paran|strong="H6290"\w*, \w and|strong="H6965"\w* \w they|strong="H5414"\w* \w came|strong="H4714"\w* \w to|strong="H5414"\w* \w Egypt|strong="H4714"\w*, \w to|strong="H5414"\w* \w Pharaoh|strong="H6547"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*, \w who|strong="H4428"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w*, \w and|strong="H6965"\w* \w appointed|strong="H5414"\w* \w him|strong="H5414"\w* \w food|strong="H3899"\w*, \w and|strong="H6965"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* land. +\v 19 \w Hadad|strong="H1908"\w* \w found|strong="H4672"\w* \w great|strong="H3966"\w* \w favor|strong="H2580"\w* \w in|strong="H4672"\w* \w the|strong="H5414"\w* \w sight|strong="H5869"\w* \w of|strong="H5869"\w* \w Pharaoh|strong="H6547"\w*, \w so|strong="H5414"\w* \w that|strong="H5414"\w* \w he|strong="H5414"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w as|strong="H5869"\w* wife \w the|strong="H5414"\w* sister \w of|strong="H5869"\w* \w his|strong="H5414"\w* \w own|strong="H5869"\w* wife, \w the|strong="H5414"\w* sister \w of|strong="H5869"\w* \w Tahpenes|strong="H8472"\w* \w the|strong="H5414"\w* \w queen|strong="H1377"\w*. +\v 20 \w The|strong="H8432"\w* sister \w of|strong="H1121"\w* \w Tahpenes|strong="H8472"\w* \w bore|strong="H3205"\w* \w him|strong="H3205"\w* \w Genubath|strong="H1592"\w* \w his|strong="H1961"\w* \w son|strong="H1121"\w*, whom \w Tahpenes|strong="H8472"\w* \w weaned|strong="H1580"\w* \w in|strong="H1004"\w* \w Pharaoh|strong="H6547"\w*’s \w house|strong="H1004"\w*; \w and|strong="H1121"\w* \w Genubath|strong="H1592"\w* \w was|strong="H1961"\w* \w in|strong="H1004"\w* \w Pharaoh|strong="H6547"\w*’s \w house|strong="H1004"\w* \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Pharaoh|strong="H6547"\w*. +\v 21 \w When|strong="H3588"\w* \w Hadad|strong="H1908"\w* \w heard|strong="H8085"\w* \w in|strong="H4191"\w* \w Egypt|strong="H4714"\w* \w that|strong="H3588"\w* \w David|strong="H1732"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H7971"\w* fathers, \w and|strong="H7971"\w* \w that|strong="H3588"\w* \w Joab|strong="H3097"\w* \w the|strong="H8085"\w* \w captain|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H8085"\w* \w army|strong="H6635"\w* \w was|strong="H1732"\w* \w dead|strong="H4191"\w*, \w Hadad|strong="H1908"\w* \w said|strong="H8085"\w* \w to|strong="H4191"\w* \w Pharaoh|strong="H6547"\w*, “\w Let|strong="H7971"\w* \w me|strong="H7971"\w* \w depart|strong="H3212"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H4714"\w* \w go|strong="H3212"\w* \w to|strong="H4191"\w* \w my|strong="H8085"\w* \w own|strong="H5973"\w* country.” +\p +\v 22 \w Then|strong="H7971"\w* \w Pharaoh|strong="H6547"\w* said \w to|strong="H3212"\w* \w him|strong="H7971"\w*, “\w But|strong="H3588"\w* \w what|strong="H4100"\w* \w have|strong="H3588"\w* \w you|strong="H3588"\w* \w lacked|strong="H2638"\w* \w with|strong="H5973"\w* \w me|strong="H7971"\w*, \w that|strong="H3588"\w* \w behold|strong="H2005"\w*, \w you|strong="H3588"\w* \w seek|strong="H1245"\w* \w to|strong="H3212"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w your|strong="H3588"\w* \w own|strong="H5973"\w* country?” +\p \w He|strong="H3588"\w* answered, “\w Nothing|strong="H3808"\w*, \w however|strong="H3588"\w* \w only|strong="H3588"\w* \w let|strong="H7971"\w* \w me|strong="H7971"\w* \w depart|strong="H3212"\w*.” +\p +\v 23 God \w raised|strong="H6965"\w* \w up|strong="H6965"\w* \w an|strong="H6965"\w* \w adversary|strong="H7854"\w* \w to|strong="H1121"\w* \w him|strong="H4428"\w*, \w Rezon|strong="H7331"\w* \w the|strong="H6965"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Eliada, \w who|strong="H1121"\w* \w had|strong="H4428"\w* \w fled|strong="H1272"\w* \w from|strong="H1121"\w* \w his|strong="H6965"\w* lord, \w Hadadezer|strong="H1909"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Zobah|strong="H6678"\w*. +\v 24 \w He|strong="H1732"\w* \w gathered|strong="H6908"\w* \w men|strong="H1416"\w* \w to|strong="H3212"\w* \w himself|strong="H3427"\w*, \w and|strong="H3212"\w* \w became|strong="H4427"\w* \w captain|strong="H8269"\w* \w over|strong="H5921"\w* \w a|strong="H3068"\w* \w troop|strong="H1416"\w*, \w when|strong="H1961"\w* \w David|strong="H1732"\w* \w killed|strong="H2026"\w* \w them|strong="H5921"\w* \w of|strong="H3427"\w* Zobah. \w They|strong="H5921"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Damascus|strong="H1834"\w* \w and|strong="H3212"\w* \w lived|strong="H3427"\w* \w there|strong="H1961"\w*, \w and|strong="H3212"\w* \w reigned|strong="H4427"\w* \w in|strong="H3427"\w* \w Damascus|strong="H1834"\w*. +\v 25 \w He|strong="H3117"\w* \w was|strong="H1961"\w* \w an|strong="H1961"\w* \w adversary|strong="H7854"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w Solomon|strong="H8010"\w*, \w in|strong="H5921"\w* \w addition|strong="H5921"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w mischief|strong="H7451"\w* \w of|strong="H3117"\w* \w Hadad|strong="H1908"\w*. \w He|strong="H3117"\w* \w abhorred|strong="H6973"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w reigned|strong="H4427"\w* \w over|strong="H5921"\w* Syria. +\p +\v 26 \w Jeroboam|strong="H3379"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w*, \w an|strong="H4480"\w* Ephraimite \w of|strong="H1121"\w* \w Zeredah|strong="H6868"\w*, \w a|strong="H3068"\w* \w servant|strong="H5650"\w* \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w*, \w whose|strong="H1121"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Zeruah|strong="H6871"\w*, \w a|strong="H3068"\w* widow, \w also|strong="H8034"\w* \w lifted|strong="H7311"\w* \w up|strong="H7311"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w* \w against|strong="H4480"\w* \w the|strong="H4480"\w* \w king|strong="H4428"\w*. +\v 27 \w This|strong="H2088"\w* \w was|strong="H1732"\w* \w the|strong="H1129"\w* \w reason|strong="H1697"\w* \w why|strong="H1697"\w* \w he|strong="H1732"\w* \w lifted|strong="H7311"\w* \w up|strong="H7311"\w* \w his|strong="H1732"\w* \w hand|strong="H3027"\w* \w against|strong="H3027"\w* \w the|strong="H1129"\w* \w king|strong="H4428"\w*: \w Solomon|strong="H8010"\w* \w built|strong="H1129"\w* \w Millo|strong="H4407"\w*, \w and|strong="H4428"\w* \w repaired|strong="H1129"\w* \w the|strong="H1129"\w* \w breach|strong="H6556"\w* \w of|strong="H4428"\w* \w his|strong="H1732"\w* father \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*. +\v 28 \w The|strong="H3605"\w* \w man|strong="H5288"\w* \w Jeroboam|strong="H3379"\w* \w was|strong="H1931"\w* \w a|strong="H3068"\w* \w mighty|strong="H1368"\w* \w man|strong="H5288"\w* \w of|strong="H1004"\w* \w valor|strong="H2428"\w*; \w and|strong="H1004"\w* \w Solomon|strong="H8010"\w* \w saw|strong="H7200"\w* \w the|strong="H3605"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w industrious|strong="H4399"\w*, \w and|strong="H1004"\w* \w he|strong="H1931"\w* \w put|strong="H6213"\w* \w him|strong="H6213"\w* \w in|strong="H6213"\w* \w charge|strong="H6485"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w labor|strong="H5447"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Joseph|strong="H3130"\w*. +\v 29 \w At|strong="H1961"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w*, \w when|strong="H1961"\w* \w Jeroboam|strong="H3379"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1870"\w* \w Jerusalem|strong="H3389"\w*, \w the|strong="H3680"\w* \w prophet|strong="H5030"\w* \w Ahijah|strong="H3680"\w* \w the|strong="H3680"\w* \w Shilonite|strong="H7888"\w* \w found|strong="H4672"\w* \w him|strong="H4672"\w* \w on|strong="H1870"\w* \w the|strong="H3680"\w* \w way|strong="H1870"\w*. \w Now|strong="H1961"\w* \w Ahijah|strong="H3680"\w* \w had|strong="H1961"\w* \w clad|strong="H3680"\w* \w himself|strong="H1931"\w* \w with|strong="H3389"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w garment|strong="H8008"\w*; \w and|strong="H3389"\w* \w the|strong="H3680"\w* \w two|strong="H8147"\w* \w of|strong="H1870"\w* \w them|strong="H3318"\w* \w were|strong="H1961"\w* \w alone|strong="H1931"\w* \w in|strong="H4672"\w* \w the|strong="H3680"\w* \w field|strong="H7704"\w*. +\v 30 Ahijah \w took|strong="H8610"\w* \w the|strong="H5921"\w* \w new|strong="H2319"\w* \w garment|strong="H8008"\w* \w that|strong="H5921"\w* was \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H8147"\w* \w tore|strong="H7167"\w* \w it|strong="H5921"\w* \w in|strong="H5921"\w* \w twelve|strong="H8147"\w* \w pieces|strong="H7168"\w*. +\v 31 \w He|strong="H3588"\w* said \w to|strong="H3478"\w* \w Jeroboam|strong="H3379"\w*, “\w Take|strong="H3947"\w* \w ten|strong="H6235"\w* \w pieces|strong="H7168"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3588"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*, ‘\w Behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w tear|strong="H7167"\w* \w the|strong="H3588"\w* \w kingdom|strong="H4467"\w* \w out|strong="H5414"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w Solomon|strong="H8010"\w* \w and|strong="H3478"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w ten|strong="H6235"\w* \w tribes|strong="H7626"\w* \w to|strong="H3478"\w* \w you|strong="H3588"\w* +\v 32 (\w but|strong="H1961"\w* \w he|strong="H3605"\w* \w shall|strong="H3478"\w* \w have|strong="H1961"\w* \w one|strong="H3605"\w* \w tribe|strong="H7626"\w*, \w for|strong="H4616"\w* \w my|strong="H3605"\w* \w servant|strong="H5650"\w* \w David|strong="H1732"\w*’s \w sake|strong="H4616"\w* \w and|strong="H3478"\w* \w for|strong="H4616"\w* \w Jerusalem|strong="H3389"\w*’s \w sake|strong="H4616"\w*, \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w which|strong="H5892"\w* \w I|strong="H5650"\w* \w have|strong="H1961"\w* chosen \w out|strong="H3605"\w* \w of|strong="H7626"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H7626"\w* \w Israel|strong="H3478"\w*), +\v 33 \w because|strong="H3282"\w* \w they|strong="H3808"\w* \w have|strong="H5869"\w* \w forsaken|strong="H5800"\w* \w me|strong="H6213"\w*, \w and|strong="H1121"\w* \w have|strong="H5869"\w* \w worshiped|strong="H7812"\w* \w Ashtoreth|strong="H6253"\w* \w the|strong="H6213"\w* goddess \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w Sidonians|strong="H6722"\w*, \w Chemosh|strong="H3645"\w* \w the|strong="H6213"\w* \w god|strong="H3808"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w*, \w and|strong="H1121"\w* \w Milcom|strong="H4445"\w* \w the|strong="H6213"\w* \w god|strong="H3808"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*. \w They|strong="H3808"\w* \w have|strong="H5869"\w* \w not|strong="H3808"\w* \w walked|strong="H1980"\w* \w in|strong="H1980"\w* \w my|strong="H1732"\w* \w ways|strong="H1870"\w*, \w to|strong="H1980"\w* \w do|strong="H6213"\w* \w that|strong="H1121"\w* \w which|strong="H5869"\w* \w is|strong="H1870"\w* \w right|strong="H3477"\w* \w in|strong="H1980"\w* \w my|strong="H1732"\w* \w eyes|strong="H5869"\w*, \w and|strong="H1121"\w* \w to|strong="H1980"\w* \w keep|strong="H6213"\w* \w my|strong="H1732"\w* \w statutes|strong="H2708"\w* \w and|strong="H1121"\w* \w my|strong="H1732"\w* \w ordinances|strong="H4941"\w*, \w as|strong="H6213"\w* \w David|strong="H1732"\w* \w his|strong="H1732"\w* \w father|strong="H1121"\w* \w did|strong="H6213"\w*. +\p +\v 34 “‘\w However|strong="H3588"\w*, \w I|strong="H3588"\w* \w will|strong="H5650"\w* \w not|strong="H3808"\w* \w take|strong="H3947"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w kingdom|strong="H4467"\w* \w out|strong="H3947"\w* \w of|strong="H3117"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*, \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H5650"\w* \w make|strong="H7896"\w* \w him|strong="H3027"\w* \w prince|strong="H5387"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w his|strong="H3605"\w* \w life|strong="H2416"\w* \w for|strong="H3588"\w* \w David|strong="H1732"\w* \w my|strong="H8104"\w* \w servant|strong="H5650"\w*’s \w sake|strong="H4616"\w* \w whom|strong="H3588"\w* \w I|strong="H3588"\w* chose, \w who|strong="H3605"\w* \w kept|strong="H8104"\w* \w my|strong="H8104"\w* \w commandments|strong="H4687"\w* \w and|strong="H3117"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w*, +\v 35 \w but|strong="H3947"\w* \w I|strong="H5414"\w* \w will|strong="H1121"\w* \w take|strong="H3947"\w* \w the|strong="H5414"\w* \w kingdom|strong="H4410"\w* \w out|strong="H5414"\w* \w of|strong="H1121"\w* \w his|strong="H5414"\w* \w son|strong="H1121"\w*’s \w hand|strong="H3027"\w* \w and|strong="H1121"\w* \w will|strong="H1121"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H5414"\w* \w you|strong="H5414"\w*, even \w ten|strong="H6235"\w* \w tribes|strong="H7626"\w*. +\v 36 \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w one|strong="H3605"\w* \w tribe|strong="H7626"\w* \w to|strong="H1961"\w* \w his|strong="H3605"\w* \w son|strong="H1121"\w*, \w that|strong="H3605"\w* \w David|strong="H1732"\w* \w my|strong="H5414"\w* \w servant|strong="H5650"\w* \w may|strong="H1961"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* \w lamp|strong="H5216"\w* \w always|strong="H3605"\w* \w before|strong="H6440"\w* \w me|strong="H5414"\w* \w in|strong="H3117"\w* \w Jerusalem|strong="H3389"\w*, \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w which|strong="H5892"\w* \w I|strong="H3117"\w* \w have|strong="H1961"\w* chosen \w for|strong="H6440"\w* myself \w to|strong="H1961"\w* \w put|strong="H5414"\w* \w my|strong="H5414"\w* \w name|strong="H8034"\w* \w there|strong="H8033"\w*. +\v 37 \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w take|strong="H3947"\w* \w you|strong="H3605"\w*, \w and|strong="H3478"\w* \w you|strong="H3605"\w* \w shall|strong="H3478"\w* \w reign|strong="H4427"\w* \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w your|strong="H3605"\w* \w soul|strong="H5315"\w* desires, \w and|strong="H3478"\w* \w shall|strong="H3478"\w* \w be|strong="H1961"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*. +\v 38 \w It|strong="H5414"\w* \w shall|strong="H3478"\w* \w be|strong="H1961"\w*, \w if|strong="H1961"\w* \w you|strong="H5414"\w* \w will|strong="H1961"\w* \w listen|strong="H8085"\w* \w to|strong="H1980"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H5414"\w* \w command|strong="H6680"\w* \w you|strong="H5414"\w*, \w and|strong="H1980"\w* \w will|strong="H1961"\w* \w walk|strong="H1980"\w* \w in|strong="H1980"\w* \w my|strong="H8104"\w* \w ways|strong="H1870"\w*, \w and|strong="H1980"\w* \w do|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H1004"\w* \w is|strong="H1870"\w* \w right|strong="H3477"\w* \w in|strong="H1980"\w* \w my|strong="H8104"\w* \w eyes|strong="H5869"\w*, \w to|strong="H1980"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w* \w and|strong="H1980"\w* \w my|strong="H8104"\w* \w commandments|strong="H4687"\w*, \w as|strong="H1961"\w* \w David|strong="H1732"\w* \w my|strong="H8104"\w* \w servant|strong="H5650"\w* \w did|strong="H6213"\w*, \w that|strong="H3605"\w* \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H5414"\w*, \w and|strong="H1980"\w* \w will|strong="H1961"\w* \w build|strong="H1129"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w sure|strong="H8104"\w* \w house|strong="H1004"\w*, \w as|strong="H1961"\w* \w I|strong="H5414"\w* \w built|strong="H1129"\w* \w for|strong="H6213"\w* \w David|strong="H1732"\w*, \w and|strong="H1980"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w Israel|strong="H3478"\w* \w to|strong="H1980"\w* \w you|strong="H5414"\w*. +\v 39 \w I|strong="H3117"\w* \w will|strong="H3808"\w* \w afflict|strong="H6031"\w* \w the|strong="H3605"\w* \w offspring|strong="H2233"\w* \w of|strong="H3117"\w* \w David|strong="H1732"\w* \w for|strong="H4616"\w* \w this|strong="H2063"\w*, \w but|strong="H3808"\w* \w not|strong="H3808"\w* \w forever|strong="H3605"\w*.’” +\p +\v 40 \w Therefore|strong="H1961"\w* \w Solomon|strong="H8010"\w* \w sought|strong="H1245"\w* \w to|strong="H5704"\w* \w kill|strong="H4191"\w* \w Jeroboam|strong="H3379"\w*, \w but|strong="H1961"\w* \w Jeroboam|strong="H3379"\w* \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w fled|strong="H1272"\w* \w into|strong="H4714"\w* \w Egypt|strong="H4714"\w*, \w to|strong="H5704"\w* \w Shishak|strong="H7895"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H6965"\w* \w was|strong="H1961"\w* \w in|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w until|strong="H5704"\w* \w the|strong="H5704"\w* \w death|strong="H4194"\w* \w of|strong="H4428"\w* \w Solomon|strong="H8010"\w*. +\p +\v 41 \w Now|strong="H5921"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H1697"\w* \w Solomon|strong="H8010"\w*, \w and|strong="H2451"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w*, \w and|strong="H2451"\w* \w his|strong="H3605"\w* \w wisdom|strong="H2451"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H1697"\w* \w Solomon|strong="H8010"\w*? +\v 42 \w The|strong="H3605"\w* \w time|strong="H3117"\w* \w that|strong="H3605"\w* \w Solomon|strong="H8010"\w* \w reigned|strong="H4427"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w was|strong="H3478"\w* forty \w years|strong="H8141"\w*. +\v 43 \w Solomon|strong="H8010"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* fathers, \w and|strong="H1121"\w* \w was|strong="H1732"\w* \w buried|strong="H6912"\w* \w in|strong="H6912"\w* \w his|strong="H1732"\w* \w father|strong="H1121"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*; \w and|strong="H1121"\w* \w Rehoboam|strong="H7346"\w* \w his|strong="H1732"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H6912"\w* \w his|strong="H1732"\w* \w place|strong="H8478"\w*. +\c 12 +\p +\v 1 \w Rehoboam|strong="H7346"\w* \w went|strong="H3212"\w* \w to|strong="H3478"\w* \w Shechem|strong="H7927"\w*, \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w had|strong="H3478"\w* \w come|strong="H3212"\w* \w to|strong="H3478"\w* \w Shechem|strong="H7927"\w* \w to|strong="H3478"\w* \w make|strong="H4427"\w* \w him|strong="H4427"\w* \w king|strong="H4427"\w*. +\v 2 \w When|strong="H1961"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w* \w heard|strong="H8085"\w* \w of|strong="H1121"\w* \w it|strong="H1931"\w* (\w for|strong="H6440"\w* \w he|strong="H1931"\w* \w was|strong="H1961"\w* \w yet|strong="H5750"\w* \w in|strong="H3427"\w* \w Egypt|strong="H4714"\w*, where \w he|strong="H1931"\w* \w had|strong="H1961"\w* \w fled|strong="H1272"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H1121"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w*, \w and|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Egypt|strong="H4714"\w*; +\v 3 \w and|strong="H3478"\w* \w they|strong="H3478"\w* \w sent|strong="H7971"\w* \w and|strong="H3478"\w* \w called|strong="H7121"\w* \w him|strong="H7121"\w*), \w Jeroboam|strong="H3379"\w* \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w of|strong="H6951"\w* \w Israel|strong="H3478"\w* \w came|strong="H3478"\w*, \w and|strong="H3478"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Rehoboam|strong="H7346"\w*, \w saying|strong="H1696"\w*, +\v 4 “\w Your|strong="H5414"\w* father \w made|strong="H5414"\w* \w our|strong="H5414"\w* \w yoke|strong="H5923"\w* \w difficult|strong="H3515"\w*. \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* \w make|strong="H5414"\w* \w the|strong="H5921"\w* \w hard|strong="H7186"\w* \w service|strong="H5656"\w* \w of|strong="H5921"\w* \w your|strong="H5414"\w* father, \w and|strong="H5647"\w* \w his|strong="H5414"\w* \w heavy|strong="H3515"\w* \w yoke|strong="H5923"\w* which \w he|strong="H5414"\w* \w put|strong="H5414"\w* \w on|strong="H5921"\w* \w us|strong="H5414"\w*, \w lighter|strong="H7043"\w*, \w and|strong="H5647"\w* \w we|strong="H3068"\w* \w will|strong="H5414"\w* \w serve|strong="H5647"\w* \w you|strong="H5414"\w*.” +\p +\v 5 \w He|strong="H3117"\w* said \w to|strong="H7725"\w* \w them|strong="H7725"\w*, “\w Depart|strong="H3212"\w* \w for|strong="H3117"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*, \w then|strong="H7725"\w* \w come|strong="H3212"\w* \w back|strong="H7725"\w* \w to|strong="H7725"\w* \w me|strong="H7725"\w*.” +\p \w So|strong="H7725"\w* \w the|strong="H3117"\w* \w people|strong="H5971"\w* \w departed|strong="H3212"\w*. +\p +\v 6 \w King|strong="H4428"\w* \w Rehoboam|strong="H7346"\w* \w took|strong="H1961"\w* \w counsel|strong="H3289"\w* \w with|strong="H1697"\w* \w the|strong="H6440"\w* \w old|strong="H2205"\w* \w men|strong="H2205"\w* \w who|strong="H5971"\w* \w had|strong="H1961"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w Solomon|strong="H8010"\w* \w his|strong="H7725"\w* father \w while|strong="H1961"\w* \w he|strong="H8010"\w* \w yet|strong="H5975"\w* \w lived|strong="H2416"\w*, \w saying|strong="H1697"\w*, “\w What|strong="H1697"\w* \w counsel|strong="H3289"\w* \w do|strong="H1697"\w* \w you|strong="H6440"\w* \w give|strong="H3289"\w* \w me|strong="H6440"\w* \w to|strong="H7725"\w* \w answer|strong="H7725"\w* \w these|strong="H2088"\w* \w people|strong="H5971"\w*?” +\p +\v 7 \w They|strong="H3117"\w* \w replied|strong="H6030"\w*, “\w If|strong="H1961"\w* \w you|strong="H3605"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w servant|strong="H5650"\w* \w to|strong="H1696"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w today|strong="H3117"\w*, \w and|strong="H6030"\w* \w will|strong="H1961"\w* \w serve|strong="H5647"\w* \w them|strong="H1961"\w*, \w and|strong="H6030"\w* \w answer|strong="H6030"\w* \w them|strong="H1961"\w* \w with|strong="H1696"\w* \w good|strong="H2896"\w* \w words|strong="H1697"\w*, \w then|strong="H6030"\w* \w they|strong="H3117"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w your|strong="H3605"\w* \w servants|strong="H5650"\w* \w forever|strong="H3605"\w*.” +\p +\v 8 \w But|strong="H5800"\w* \w he|strong="H6440"\w* \w abandoned|strong="H5800"\w* \w the|strong="H6440"\w* \w counsel|strong="H6098"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w old|strong="H2205"\w* \w men|strong="H2205"\w* \w which|strong="H3206"\w* \w they|strong="H3289"\w* had \w given|strong="H3289"\w* \w him|strong="H6440"\w*, \w and|strong="H6440"\w* \w took|strong="H5975"\w* \w counsel|strong="H6098"\w* \w with|strong="H6440"\w* \w the|strong="H6440"\w* \w young|strong="H3206"\w* \w men|strong="H2205"\w* \w who|strong="H5975"\w* had \w grown|strong="H1431"\w* \w up|strong="H5975"\w* \w with|strong="H6440"\w* \w him|strong="H6440"\w*, \w who|strong="H5975"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 9 \w He|strong="H5414"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H5414"\w*, “\w What|strong="H4100"\w* \w counsel|strong="H3289"\w* \w do|strong="H4100"\w* \w you|strong="H5414"\w* \w give|strong="H5414"\w*, \w that|strong="H5971"\w* \w we|strong="H3068"\w* \w may|strong="H5971"\w* \w answer|strong="H7725"\w* \w these|strong="H2088"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w have|strong="H5971"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H5414"\w*, \w saying|strong="H1697"\w*, ‘\w Make|strong="H5414"\w* \w the|strong="H5921"\w* \w yoke|strong="H5923"\w* \w that|strong="H5971"\w* \w your|strong="H5414"\w* father \w put|strong="H5414"\w* \w on|strong="H5921"\w* \w us|strong="H5414"\w* \w lighter|strong="H7043"\w*’?” +\p +\v 10 \w The|strong="H5921"\w* \w young|strong="H3206"\w* \w men|strong="H3206"\w* \w who|strong="H5971"\w* \w had|strong="H5971"\w* \w grown|strong="H1431"\w* \w up|strong="H1431"\w* \w with|strong="H1696"\w* \w him|strong="H5921"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5921"\w*, “\w Tell|strong="H1696"\w* \w these|strong="H2088"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H5921"\w*, \w saying|strong="H1696"\w*, ‘\w Your|strong="H5921"\w* father \w made|strong="H3513"\w* \w our|strong="H5921"\w* \w yoke|strong="H5923"\w* \w heavy|strong="H3513"\w*, \w but|strong="H1696"\w* \w make|strong="H1431"\w* \w it|strong="H5921"\w* \w lighter|strong="H7043"\w* \w to|strong="H1696"\w* \w us|strong="H5921"\w*’—\w tell|strong="H1696"\w* \w them|strong="H5921"\w*, ‘\w My|strong="H5921"\w* \w little|strong="H6995"\w* \w finger|strong="H6995"\w* \w is|strong="H2088"\w* \w thicker|strong="H5666"\w* \w than|strong="H5921"\w* \w my|strong="H5921"\w* father’s \w waist|strong="H4975"\w*. +\v 11 \w Now|strong="H6258"\w* \w my|strong="H5921"\w* father burdened \w you|strong="H5921"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w heavy|strong="H3515"\w* \w yoke|strong="H5923"\w*, \w but|strong="H6258"\w* \w I|strong="H5921"\w* \w will|strong="H3254"\w* \w add|strong="H3254"\w* \w to|strong="H5921"\w* \w your|strong="H5921"\w* \w yoke|strong="H5923"\w*. \w My|strong="H5921"\w* father \w chastised|strong="H3256"\w* \w you|strong="H5921"\w* \w with|strong="H5921"\w* \w whips|strong="H7752"\w*, \w but|strong="H6258"\w* \w I|strong="H5921"\w* \w will|strong="H3254"\w* \w chastise|strong="H3256"\w* \w you|strong="H5921"\w* \w with|strong="H5921"\w* \w scorpions|strong="H6137"\w*.’” +\p +\v 12 \w So|strong="H7725"\w* \w Jeroboam|strong="H3379"\w* \w and|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w came|strong="H5971"\w* \w to|strong="H1696"\w* \w Rehoboam|strong="H7346"\w* \w the|strong="H3605"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*, \w as|strong="H3117"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w asked|strong="H1696"\w*, \w saying|strong="H1696"\w*, “\w Come|strong="H7725"\w* \w to|strong="H1696"\w* \w me|strong="H7725"\w* \w again|strong="H7725"\w* \w the|strong="H3605"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*.” +\v 13 \w The|strong="H5800"\w* \w king|strong="H4428"\w* \w answered|strong="H6030"\w* \w the|strong="H5800"\w* \w people|strong="H5971"\w* \w roughly|strong="H7186"\w*, \w and|strong="H6030"\w* \w abandoned|strong="H5800"\w* \w the|strong="H5800"\w* \w counsel|strong="H6098"\w* \w of|strong="H4428"\w* \w the|strong="H5800"\w* \w old|strong="H2205"\w* \w men|strong="H2205"\w* \w which|strong="H5971"\w* \w they|strong="H5971"\w* \w had|strong="H4428"\w* \w given|strong="H3289"\w* \w him|strong="H6030"\w*, +\v 14 \w and|strong="H6098"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H5921"\w* \w according|strong="H5921"\w* \w to|strong="H1696"\w* \w the|strong="H5921"\w* \w counsel|strong="H6098"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w young|strong="H3206"\w* \w men|strong="H3206"\w*, \w saying|strong="H1696"\w*, “\w My|strong="H5921"\w* father \w made|strong="H3513"\w* \w your|strong="H5921"\w* \w yoke|strong="H5923"\w* \w heavy|strong="H3513"\w*, \w but|strong="H1696"\w* \w I|strong="H5921"\w* \w will|strong="H3206"\w* \w add|strong="H3254"\w* \w to|strong="H1696"\w* \w your|strong="H5921"\w* \w yoke|strong="H5923"\w*. \w My|strong="H5921"\w* father \w chastised|strong="H3256"\w* \w you|strong="H5921"\w* \w with|strong="H1696"\w* \w whips|strong="H7752"\w*, \w but|strong="H1696"\w* \w I|strong="H5921"\w* \w will|strong="H3206"\w* \w chastise|strong="H3256"\w* \w you|strong="H5921"\w* \w with|strong="H1696"\w* \w scorpions|strong="H6137"\w*.” +\p +\v 15 \w So|strong="H4616"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H1696"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w*; \w for|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H3068"\w* \w a|strong="H3068"\w* \w thing|strong="H1697"\w* \w brought|strong="H1961"\w* \w about|strong="H1961"\w* \w from|strong="H3027"\w* \w Yahweh|strong="H3068"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w might|strong="H3068"\w* \w establish|strong="H6965"\w* \w his|strong="H3068"\w* \w word|strong="H1697"\w*, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w by|strong="H3027"\w* Ahijah \w the|strong="H8085"\w* \w Shilonite|strong="H7888"\w* \w to|strong="H1696"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H8085"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w*. +\v 16 \w When|strong="H3588"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H7725"\w* \w them|strong="H7725"\w*, \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w answered|strong="H7725"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w saying|strong="H1697"\w*, “\w What|strong="H4100"\w* \w portion|strong="H2506"\w* \w have|strong="H5971"\w* \w we|strong="H3068"\w* \w in|strong="H3478"\w* \w David|strong="H1732"\w*? \w We|strong="H3588"\w* don’t \w have|strong="H5971"\w* \w an|strong="H7200"\w* \w inheritance|strong="H5159"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jesse|strong="H3448"\w*. \w To|strong="H7725"\w* \w your|strong="H3605"\w* tents, \w Israel|strong="H3478"\w*! \w Now|strong="H6258"\w* \w see|strong="H7200"\w* \w to|strong="H7725"\w* \w your|strong="H3605"\w* \w own|strong="H5971"\w* \w house|strong="H1004"\w*, \w David|strong="H1732"\w*.” \w So|strong="H3808"\w* \w Israel|strong="H3478"\w* \w departed|strong="H3212"\w* \w to|strong="H7725"\w* \w their|strong="H3605"\w* tents. +\p +\v 17 \w But|strong="H5921"\w* \w as|strong="H4427"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w who|strong="H1121"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w Rehoboam|strong="H7346"\w* \w reigned|strong="H4427"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 18 \w Then|strong="H7971"\w* \w King|strong="H4428"\w* \w Rehoboam|strong="H7346"\w* \w sent|strong="H7971"\w* Adoram, \w who|strong="H3605"\w* \w was|strong="H3478"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* subject \w to|strong="H3478"\w* \w forced|strong="H4522"\w* \w labor|strong="H4522"\w*; \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w stoned|strong="H7275"\w* \w him|strong="H5921"\w* \w to|strong="H3478"\w* \w death|strong="H4191"\w* \w with|strong="H5921"\w* stones. \w King|strong="H4428"\w* \w Rehoboam|strong="H7346"\w* \w hurried|strong="H5127"\w* \w to|strong="H3478"\w* \w get|strong="H5927"\w* himself \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w his|strong="H3605"\w* \w chariot|strong="H4818"\w*, \w to|strong="H3478"\w* \w flee|strong="H5127"\w* \w to|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*. +\v 19 \w So|strong="H2088"\w* \w Israel|strong="H3478"\w* \w rebelled|strong="H6586"\w* \w against|strong="H6586"\w* \w David|strong="H1732"\w*’s \w house|strong="H1004"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\p +\v 20 \w When|strong="H3588"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w Jeroboam|strong="H3379"\w* \w had|strong="H1961"\w* \w returned|strong="H7725"\w*, \w they|strong="H3588"\w* \w sent|strong="H7971"\w* \w and|strong="H3063"\w* \w called|strong="H7121"\w* \w him|strong="H7121"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w*, \w and|strong="H3063"\w* \w made|strong="H4427"\w* \w him|strong="H7121"\w* \w king|strong="H4427"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*. \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w one|strong="H3605"\w* \w who|strong="H3605"\w* \w followed|strong="H1961"\w* \w David|strong="H1732"\w*’s \w house|strong="H1004"\w*, \w except|strong="H3588"\w* \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w tribe|strong="H7626"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w only|strong="H3588"\w*. +\p +\v 21 \w When|strong="H7725"\w* \w Rehoboam|strong="H7346"\w* \w had|strong="H3478"\w* \w come|strong="H7725"\w* \w to|strong="H7725"\w* \w Jerusalem|strong="H3389"\w*, \w he|strong="H6213"\w* \w assembled|strong="H6950"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w and|strong="H3967"\w* \w the|strong="H3605"\w* \w tribe|strong="H7626"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*, \w a|strong="H3068"\w* \w hundred|strong="H3967"\w* \w and|strong="H3967"\w* \w eighty|strong="H8084"\w* thousand chosen \w men|strong="H1121"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w warriors|strong="H4421"\w*, \w to|strong="H7725"\w* \w fight|strong="H3898"\w* \w against|strong="H5973"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w to|strong="H7725"\w* \w bring|strong="H7725"\w* \w the|strong="H3605"\w* \w kingdom|strong="H4410"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w Rehoboam|strong="H7346"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w*. +\v 22 \w But|strong="H1961"\w* \w the|strong="H1697"\w* \w word|strong="H1697"\w* \w of|strong="H1697"\w* God \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w Shemaiah|strong="H8098"\w* \w the|strong="H1697"\w* man \w of|strong="H1697"\w* God, \w saying|strong="H1697"\w*, +\v 23 “Speak \w to|strong="H1121"\w* \w Rehoboam|strong="H7346"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w and|strong="H1121"\w* \w to|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w and|strong="H1121"\w* \w Benjamin|strong="H1144"\w*, \w and|strong="H1121"\w* \w to|strong="H1121"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, saying, +\v 24 ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w go|strong="H3212"\w* \w up|strong="H5927"\w* \w or|strong="H3808"\w* \w fight|strong="H3898"\w* \w against|strong="H5973"\w* \w your|strong="H3068"\w* \w brothers|strong="H1121"\w*, \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. Everyone \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H3068"\w* \w house|strong="H1004"\w*; \w for|strong="H3588"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w is|strong="H3068"\w* \w from|strong="H7725"\w* \w me|strong="H7725"\w*.”’” \w So|strong="H3541"\w* \w they|strong="H3588"\w* \w listened|strong="H8085"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w and|strong="H1121"\w* \w returned|strong="H7725"\w* \w and|strong="H1121"\w* \w went|strong="H3212"\w* \w their|strong="H3068"\w* \w way|strong="H3212"\w*, according \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*. +\p +\v 25 \w Then|strong="H3318"\w* \w Jeroboam|strong="H3379"\w* \w built|strong="H1129"\w* \w Shechem|strong="H7927"\w* \w in|strong="H3427"\w* \w the|strong="H1129"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H3427"\w* Ephraim, \w and|strong="H8033"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w it|strong="H8033"\w*; \w and|strong="H8033"\w* \w he|strong="H8033"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w there|strong="H8033"\w* \w and|strong="H8033"\w* \w built|strong="H1129"\w* \w Penuel|strong="H6439"\w*. +\v 26 \w Jeroboam|strong="H3379"\w* said \w in|strong="H1004"\w* \w his|strong="H1732"\w* \w heart|strong="H3820"\w*, “\w Now|strong="H6258"\w* \w the|strong="H7725"\w* \w kingdom|strong="H4467"\w* \w will|strong="H1004"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w David|strong="H1732"\w*’s \w house|strong="H1004"\w*. +\v 27 If \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w goes|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H7725"\w* \w offer|strong="H5927"\w* \w sacrifices|strong="H2077"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w at|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, \w then|strong="H2088"\w* \w the|strong="H6213"\w* \w heart|strong="H3820"\w* \w of|strong="H4428"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w will|strong="H3068"\w* \w turn|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w their|strong="H3068"\w* \w lord|strong="H3068"\w*, \w even|strong="H6213"\w* \w to|strong="H7725"\w* \w Rehoboam|strong="H7346"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*; \w and|strong="H3063"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* \w kill|strong="H2026"\w* \w me|strong="H7725"\w*, \w and|strong="H3063"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w Rehoboam|strong="H7346"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*.” +\v 28 \w So|strong="H6213"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w* \w took|strong="H5927"\w* \w counsel|strong="H3289"\w*, \w and|strong="H3478"\w* \w made|strong="H6213"\w* \w two|strong="H8147"\w* \w calves|strong="H5695"\w* \w of|strong="H4428"\w* \w gold|strong="H2091"\w*; \w and|strong="H3478"\w* \w he|strong="H6213"\w* said \w to|strong="H3478"\w* \w them|strong="H6213"\w*, “\w It|strong="H6213"\w* \w is|strong="H2009"\w* \w too|strong="H7227"\w* \w much|strong="H7227"\w* \w for|strong="H6213"\w* \w you|strong="H6213"\w* \w to|strong="H3478"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*. \w Look|strong="H2009"\w* \w and|strong="H3478"\w* \w behold|strong="H2009"\w* \w your|strong="H6213"\w* gods, \w Israel|strong="H3478"\w*, \w which|strong="H3478"\w* \w brought|strong="H5927"\w* \w you|strong="H6213"\w* \w up|strong="H5927"\w* \w out|strong="H6213"\w* \w of|strong="H4428"\w* \w the|strong="H6213"\w* land \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*!” +\v 29 \w He|strong="H5414"\w* \w set|strong="H7760"\w* \w the|strong="H5414"\w* one \w in|strong="H5414"\w* \w Bethel|strong="H1008"\w*, \w and|strong="H1008"\w* \w the|strong="H5414"\w* other \w he|strong="H5414"\w* \w put|strong="H5414"\w* \w in|strong="H5414"\w* \w Dan|strong="H1835"\w*. +\v 30 \w This|strong="H2088"\w* \w thing|strong="H1697"\w* \w became|strong="H1961"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w*, \w for|strong="H5704"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w went|strong="H3212"\w* \w even|strong="H5704"\w* \w as|strong="H5704"\w* \w far|strong="H5704"\w* \w as|strong="H5704"\w* \w Dan|strong="H1835"\w* \w to|strong="H5704"\w* worship \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w one|strong="H2088"\w* \w there|strong="H1961"\w*. +\v 31 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w houses|strong="H1004"\w* \w of|strong="H1121"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*, \w and|strong="H1121"\w* \w made|strong="H6213"\w* \w priests|strong="H3548"\w* \w from|strong="H1121"\w* \w among|strong="H5971"\w* \w all|strong="H6213"\w* \w the|strong="H6213"\w* \w people|strong="H5971"\w*, \w who|strong="H5971"\w* \w were|strong="H1961"\w* \w not|strong="H3808"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w*. +\v 32 \w Jeroboam|strong="H3379"\w* \w ordained|strong="H6213"\w* \w a|strong="H3068"\w* \w feast|strong="H2282"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w eighth|strong="H8066"\w* \w month|strong="H2320"\w*, \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w fifteenth|strong="H2568"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w month|strong="H2320"\w*, \w like|strong="H3651"\w* \w the|strong="H5921"\w* \w feast|strong="H2282"\w* \w that|strong="H3117"\w* \w is|strong="H3117"\w* \w in|strong="H5921"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w he|strong="H3117"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*. \w He|strong="H3117"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w* \w in|strong="H5921"\w* \w Bethel|strong="H1008"\w*, \w sacrificing|strong="H2076"\w* \w to|strong="H5927"\w* \w the|strong="H5921"\w* \w calves|strong="H5695"\w* \w that|strong="H3117"\w* \w he|strong="H3117"\w* \w had|strong="H3063"\w* \w made|strong="H6213"\w*, \w and|strong="H3063"\w* \w he|strong="H3117"\w* \w placed|strong="H5975"\w* \w in|strong="H5921"\w* \w Bethel|strong="H1008"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w that|strong="H3117"\w* \w he|strong="H3117"\w* \w had|strong="H3063"\w* \w made|strong="H6213"\w*. +\v 33 \w He|strong="H3117"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w which|strong="H4196"\w* \w he|strong="H3117"\w* \w had|strong="H3478"\w* \w made|strong="H6213"\w* \w in|strong="H5921"\w* \w Bethel|strong="H1008"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w fifteenth|strong="H2568"\w* \w day|strong="H3117"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w eighth|strong="H8066"\w* \w month|strong="H2320"\w*, \w even|strong="H6213"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w month|strong="H2320"\w* \w which|strong="H4196"\w* \w he|strong="H3117"\w* \w had|strong="H3478"\w* devised \w of|strong="H1121"\w* \w his|strong="H5921"\w* own heart; \w and|strong="H1121"\w* \w he|strong="H3117"\w* \w ordained|strong="H6213"\w* \w a|strong="H3068"\w* \w feast|strong="H2282"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w to|strong="H3478"\w* \w burn|strong="H6999"\w* \w incense|strong="H6999"\w*. +\c 13 +\p +\v 1 \w Behold|strong="H2009"\w*, \w a|strong="H3068"\w* man \w of|strong="H3068"\w* \w God|strong="H3068"\w* \w came|strong="H3068"\w* \w out|strong="H5921"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w* \w by|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w to|strong="H3068"\w* \w Bethel|strong="H1008"\w*; \w and|strong="H3063"\w* \w Jeroboam|strong="H3379"\w* \w was|strong="H3068"\w* \w standing|strong="H5975"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w to|strong="H3068"\w* \w burn|strong="H6999"\w* \w incense|strong="H6999"\w*. +\v 2 \w He|strong="H3068"\w* \w cried|strong="H7121"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w by|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w and|strong="H1121"\w* \w said|strong="H1697"\w*, “\w Altar|strong="H4196"\w*! \w Altar|strong="H4196"\w*! \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w will|strong="H3068"\w* \w be|strong="H1697"\w* \w born|strong="H3205"\w* \w to|strong="H3068"\w* \w David|strong="H1732"\w*’s \w house|strong="H1004"\w*, \w Josiah|strong="H2977"\w* \w by|strong="H5921"\w* \w name|strong="H8034"\w*. \w On|strong="H5921"\w* \w you|strong="H5921"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w sacrifice|strong="H2076"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w who|strong="H3068"\w* \w burn|strong="H8313"\w* \w incense|strong="H6999"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*, \w and|strong="H1121"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* \w burn|strong="H8313"\w* \w men|strong="H1121"\w*’s \w bones|strong="H6106"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*.’” +\v 3 \w He|strong="H1931"\w* \w gave|strong="H5414"\w* \w a|strong="H3068"\w* \w sign|strong="H4159"\w* \w the|strong="H5921"\w* \w same|strong="H1931"\w* \w day|strong="H3117"\w*, \w saying|strong="H1696"\w*, “\w This|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H5921"\w* \w sign|strong="H4159"\w* \w which|strong="H1931"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w*: \w Behold|strong="H2009"\w*, \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w split|strong="H7167"\w* \w apart|strong="H7167"\w*, \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w ashes|strong="H1880"\w* \w that|strong="H3117"\w* \w are|strong="H3117"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w poured|strong="H8210"\w* \w out|strong="H8210"\w*.” +\p +\v 4 \w When|strong="H1961"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w heard|strong="H8085"\w* \w the|strong="H5921"\w* \w saying|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* man \w of|strong="H4428"\w* \w God|strong="H3808"\w*, \w which|strong="H1697"\w* \w he|strong="H3027"\w* \w cried|strong="H7121"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w in|strong="H5921"\w* \w Bethel|strong="H1008"\w*, \w Jeroboam|strong="H3379"\w* \w put|strong="H7971"\w* \w out|strong="H7971"\w* \w his|strong="H7121"\w* \w hand|strong="H3027"\w* \w from|strong="H7725"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*, \w saying|strong="H1697"\w*, “\w Seize|strong="H8610"\w* \w him|strong="H7121"\w*!” \w His|strong="H7121"\w* \w hand|strong="H3027"\w*, \w which|strong="H1697"\w* \w he|strong="H3027"\w* \w put|strong="H7971"\w* \w out|strong="H7971"\w* \w against|strong="H5921"\w* \w him|strong="H7121"\w*, \w dried|strong="H3001"\w* \w up|strong="H3001"\w*, \w so|strong="H7971"\w* \w that|strong="H8085"\w* \w he|strong="H3027"\w* \w could|strong="H3201"\w* \w not|strong="H3808"\w* \w draw|strong="H7725"\w* \w it|strong="H7121"\w* \w back|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w himself|strong="H3027"\w*. +\v 5 \w The|strong="H5414"\w* \w altar|strong="H4196"\w* \w was|strong="H3068"\w* \w also|strong="H3068"\w* \w split|strong="H7167"\w* \w apart|strong="H7167"\w*, \w and|strong="H3068"\w* \w the|strong="H5414"\w* \w ashes|strong="H1880"\w* \w poured|strong="H8210"\w* \w out|strong="H8210"\w* \w from|strong="H4480"\w* \w the|strong="H5414"\w* \w altar|strong="H4196"\w*, \w according|strong="H4480"\w* \w to|strong="H3068"\w* \w the|strong="H5414"\w* \w sign|strong="H4159"\w* \w which|strong="H3068"\w* \w the|strong="H5414"\w* man \w of|strong="H3068"\w* \w God|strong="H3068"\w* \w had|strong="H3068"\w* \w given|strong="H5414"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*. +\v 6 \w The|strong="H6440"\w* \w king|strong="H4428"\w* \w answered|strong="H6030"\w* \w the|strong="H6440"\w* \w man|strong="H6440"\w* \w of|strong="H4428"\w* \w God|strong="H3068"\w*, “\w Now|strong="H4994"\w* \w intercede|strong="H6419"\w* \w for|strong="H1157"\w* \w the|strong="H6440"\w* \w favor|strong="H6440"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w pray|strong="H6419"\w* \w for|strong="H1157"\w* \w me|strong="H6440"\w*, \w that|strong="H3068"\w* \w my|strong="H3068"\w* \w hand|strong="H3027"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w restored|strong="H7725"\w* \w me|strong="H6440"\w* \w again|strong="H7725"\w*.” +\p \w The|strong="H6440"\w* \w man|strong="H6440"\w* \w of|strong="H4428"\w* \w God|strong="H3068"\w* \w interceded|strong="H6419"\w* \w with|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w hand|strong="H3027"\w* \w was|strong="H3068"\w* \w restored|strong="H7725"\w* \w to|strong="H7725"\w* \w him|strong="H6440"\w* \w again|strong="H7725"\w*, \w and|strong="H3068"\w* \w became|strong="H1961"\w* \w as|strong="H1961"\w* \w it|strong="H7725"\w* \w was|strong="H3068"\w* \w before|strong="H6440"\w*. +\p +\v 7 \w The|strong="H5414"\w* \w king|strong="H4428"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H5414"\w* man \w of|strong="H4428"\w* \w God|strong="H5414"\w*, “Come \w home|strong="H1004"\w* \w with|strong="H1004"\w* \w me|strong="H5414"\w* \w and|strong="H4428"\w* \w refresh|strong="H5582"\w* \w yourself|strong="H5414"\w*, \w and|strong="H4428"\w* \w I|strong="H5414"\w* \w will|strong="H4428"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w reward|strong="H4991"\w*.” +\p +\v 8 \w The|strong="H5414"\w* \w man|strong="H2088"\w* \w of|strong="H4428"\w* \w God|strong="H5414"\w* said \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w*, “\w Even|strong="H3808"\w* if \w you|strong="H5414"\w* \w gave|strong="H5414"\w* \w me|strong="H5414"\w* \w half|strong="H2677"\w* \w of|strong="H4428"\w* \w your|strong="H5414"\w* \w house|strong="H1004"\w*, \w I|strong="H5414"\w* \w would|strong="H4428"\w* \w not|strong="H3808"\w* \w go|strong="H4428"\w* \w in|strong="H1004"\w* \w with|strong="H5973"\w* \w you|strong="H5414"\w*, \w neither|strong="H3808"\w* \w would|strong="H4428"\w* \w I|strong="H5414"\w* \w eat|strong="H3899"\w* \w bread|strong="H3899"\w* \w nor|strong="H3808"\w* \w drink|strong="H8354"\w* \w water|strong="H4325"\w* \w in|strong="H1004"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*; +\v 9 \w for|strong="H3588"\w* \w so|strong="H3651"\w* \w was|strong="H3068"\w* \w it|strong="H3588"\w* \w commanded|strong="H6680"\w* \w me|strong="H7725"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w saying|strong="H1697"\w*, ‘\w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w eat|strong="H3899"\w* \w no|strong="H3808"\w* \w bread|strong="H3899"\w*, \w drink|strong="H8354"\w* \w no|strong="H3808"\w* \w water|strong="H4325"\w*, \w and|strong="H1980"\w* don’t \w return|strong="H7725"\w* \w by|strong="H3068"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w came|strong="H1980"\w*.’” +\v 10 \w So|strong="H3808"\w* \w he|strong="H3808"\w* \w went|strong="H3212"\w* \w another|strong="H3808"\w* \w way|strong="H1870"\w*, \w and|strong="H7725"\w* didn’t \w return|strong="H7725"\w* \w by|strong="H1870"\w* \w the|strong="H7725"\w* \w way|strong="H1870"\w* \w that|strong="H3808"\w* \w he|strong="H3808"\w* \w came|strong="H3212"\w* \w to|strong="H7725"\w* \w Bethel|strong="H1008"\w*. +\p +\v 11 \w Now|strong="H3117"\w* \w an|strong="H6213"\w* \w old|strong="H1121"\w* \w prophet|strong="H5030"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Bethel|strong="H1008"\w*, \w and|strong="H1121"\w* \w one|strong="H3605"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w* \w came|strong="H1697"\w* \w and|strong="H1121"\w* \w told|strong="H1696"\w* \w him|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w works|strong="H4639"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* \w man|strong="H2205"\w* \w of|strong="H1121"\w* \w God|strong="H1008"\w* \w had|strong="H4428"\w* \w done|strong="H6213"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w* \w in|strong="H3427"\w* \w Bethel|strong="H1008"\w*. \w They|strong="H3117"\w* \w also|strong="H6213"\w* \w told|strong="H1696"\w* \w their|strong="H3605"\w* \w father|strong="H1121"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w which|strong="H1697"\w* \w he|strong="H3117"\w* \w had|strong="H4428"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. +\p +\v 12 \w Their|strong="H7200"\w* \w father|strong="H1121"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H7200"\w*, “\w Which|strong="H2088"\w* \w way|strong="H1870"\w* \w did|strong="H3063"\w* \w he|strong="H1980"\w* \w go|strong="H1980"\w*?” \w Now|strong="H2088"\w* \w his|strong="H7200"\w* \w sons|strong="H1121"\w* \w had|strong="H3063"\w* \w seen|strong="H7200"\w* \w which|strong="H2088"\w* \w way|strong="H1870"\w* \w the|strong="H7200"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* God \w went|strong="H1980"\w*, \w who|strong="H1121"\w* \w came|strong="H1980"\w* \w from|strong="H1980"\w* \w Judah|strong="H3063"\w*. +\v 13 \w He|strong="H5921"\w* said \w to|strong="H5921"\w* \w his|strong="H5921"\w* \w sons|strong="H1121"\w*, “\w Saddle|strong="H2280"\w* \w the|strong="H5921"\w* \w donkey|strong="H2543"\w* \w for|strong="H5921"\w* \w me|strong="H5921"\w*.” \w So|strong="H5921"\w* \w they|strong="H5921"\w* \w saddled|strong="H2280"\w* \w the|strong="H5921"\w* \w donkey|strong="H2543"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w*; \w and|strong="H1121"\w* \w he|strong="H5921"\w* \w rode|strong="H7392"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 14 \w He|strong="H3063"\w* \w went|strong="H3212"\w* after \w the|strong="H8478"\w* man \w of|strong="H3427"\w* God, \w and|strong="H3063"\w* \w found|strong="H4672"\w* \w him|strong="H4672"\w* \w sitting|strong="H3427"\w* \w under|strong="H8478"\w* \w an|strong="H4672"\w* oak. \w He|strong="H3063"\w* said \w to|strong="H3212"\w* \w him|strong="H4672"\w*, “\w Are|strong="H8478"\w* \w you|strong="H4672"\w* \w the|strong="H8478"\w* man \w of|strong="H3427"\w* God \w who|strong="H3427"\w* \w came|strong="H3212"\w* \w from|strong="H8478"\w* \w Judah|strong="H3063"\w*?” +\p \w He|strong="H3063"\w* said, “\w I|strong="H4672"\w* am.” +\p +\v 15 Then \w he|strong="H1004"\w* said \w to|strong="H3212"\w* him, “\w Come|strong="H3212"\w* \w home|strong="H1004"\w* \w with|strong="H1004"\w* \w me|strong="H1004"\w* \w and|strong="H1004"\w* \w eat|strong="H3899"\w* \w bread|strong="H3899"\w*.” +\p +\v 16 \w He|strong="H3808"\w* said, “\w I|strong="H3201"\w* \w may|strong="H3201"\w* \w not|strong="H3808"\w* \w return|strong="H7725"\w* \w with|strong="H3899"\w* \w you|strong="H7725"\w*, \w nor|strong="H3808"\w* \w go|strong="H7725"\w* \w in|strong="H3899"\w* \w with|strong="H3899"\w* \w you|strong="H7725"\w*. \w I|strong="H3201"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w eat|strong="H3899"\w* \w bread|strong="H3899"\w* \w or|strong="H3808"\w* \w drink|strong="H8354"\w* \w water|strong="H4325"\w* \w with|strong="H3899"\w* \w you|strong="H7725"\w* \w in|strong="H3899"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*. +\v 17 \w For|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H3068"\w* \w said|strong="H1697"\w* \w to|strong="H1980"\w* \w me|strong="H7725"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, ‘\w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w eat|strong="H3899"\w* \w no|strong="H3808"\w* \w bread|strong="H3899"\w* \w or|strong="H3808"\w* \w drink|strong="H8354"\w* \w water|strong="H4325"\w* \w there|strong="H8033"\w*, \w and|strong="H1980"\w* don’t \w turn|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H1980"\w* \w go|strong="H1980"\w* \w by|strong="H3068"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w came|strong="H1980"\w*.’” +\p +\v 18 \w He|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H7725"\w*, “\w I|strong="H1697"\w* \w also|strong="H1571"\w* \w am|strong="H3068"\w* \w a|strong="H3068"\w* \w prophet|strong="H5030"\w* \w as|strong="H1697"\w* \w you|strong="H7725"\w* \w are|strong="H1697"\w*; \w and|strong="H3068"\w* \w an|strong="H3068"\w* \w angel|strong="H4397"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H7725"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w saying|strong="H1697"\w*, ‘\w Bring|strong="H7725"\w* \w him|strong="H7725"\w* \w back|strong="H7725"\w* \w with|strong="H1004"\w* \w you|strong="H7725"\w* \w into|strong="H7725"\w* \w your|strong="H3068"\w* \w house|strong="H1004"\w*, \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w may|strong="H3068"\w* \w eat|strong="H3899"\w* \w bread|strong="H3899"\w* \w and|strong="H3068"\w* \w drink|strong="H8354"\w* \w water|strong="H4325"\w*.’” \w He|strong="H3068"\w* \w lied|strong="H3584"\w* \w to|strong="H1696"\w* \w him|strong="H7725"\w*. +\p +\v 19 \w So|strong="H7725"\w* \w he|strong="H1004"\w* \w went|strong="H7725"\w* \w back|strong="H7725"\w* \w with|strong="H1004"\w* \w him|strong="H7725"\w*, ate \w bread|strong="H3899"\w* \w in|strong="H1004"\w* \w his|strong="H7725"\w* \w house|strong="H1004"\w*, \w and|strong="H7725"\w* \w drank|strong="H8354"\w* \w water|strong="H4325"\w*. +\v 20 \w As|strong="H1697"\w* \w they|strong="H1992"\w* \w sat|strong="H3427"\w* \w at|strong="H3427"\w* \w the|strong="H3068"\w* \w table|strong="H7979"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H7725"\w* \w the|strong="H3068"\w* \w prophet|strong="H5030"\w* \w who|strong="H3068"\w* \w brought|strong="H7725"\w* \w him|strong="H7725"\w* \w back|strong="H7725"\w*; +\v 21 \w and|strong="H3063"\w* \w he|strong="H3588"\w* \w cried|strong="H7121"\w* \w out|strong="H3808"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* man \w of|strong="H3068"\w* \w God|strong="H3068"\w* \w who|strong="H3068"\w* \w came|strong="H3068"\w* \w from|strong="H3068"\w* \w Judah|strong="H3063"\w*, \w saying|strong="H6310"\w*, “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w Because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w been|strong="H3808"\w* \w disobedient|strong="H4784"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H6310"\w*, \w and|strong="H3063"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w kept|strong="H8104"\w* \w the|strong="H3588"\w* \w commandment|strong="H4687"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w commanded|strong="H6680"\w* \w you|strong="H3588"\w*, +\v 22 \w but|strong="H3808"\w* \w came|strong="H7725"\w* \w back|strong="H7725"\w*, \w and|strong="H7725"\w* \w have|strong="H1696"\w* eaten \w bread|strong="H3899"\w* \w and|strong="H7725"\w* \w drank|strong="H8354"\w* \w water|strong="H4325"\w* \w in|strong="H1696"\w* \w the|strong="H7725"\w* \w place|strong="H4725"\w* \w of|strong="H4325"\w* \w which|strong="H4325"\w* \w he|strong="H3808"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H7725"\w*, “\w Eat|strong="H3899"\w* \w no|strong="H3808"\w* \w bread|strong="H3899"\w*, \w and|strong="H7725"\w* \w drink|strong="H8354"\w* \w no|strong="H3808"\w* \w water|strong="H4325"\w*,” \w your|strong="H7725"\w* \w body|strong="H5038"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w come|strong="H7725"\w* \w to|strong="H1696"\w* \w the|strong="H7725"\w* \w tomb|strong="H6913"\w* \w of|strong="H4325"\w* \w your|strong="H7725"\w* fathers.’” +\p +\v 23 \w After|strong="H1961"\w* \w he|strong="H7725"\w* \w had|strong="H1961"\w* eaten \w bread|strong="H3899"\w* \w and|strong="H7725"\w* \w after|strong="H1961"\w* \w he|strong="H7725"\w* \w drank|strong="H8354"\w*, \w he|strong="H7725"\w* \w saddled|strong="H2280"\w* \w the|strong="H7725"\w* \w donkey|strong="H2543"\w* \w for|strong="H1961"\w* \w the|strong="H7725"\w* \w prophet|strong="H5030"\w* whom \w he|strong="H7725"\w* \w had|strong="H1961"\w* \w brought|strong="H7725"\w* \w back|strong="H7725"\w*. +\v 24 \w When|strong="H1961"\w* \w he|strong="H3212"\w* \w had|strong="H1961"\w* \w gone|strong="H3212"\w*, \w a|strong="H3068"\w* lion \w met|strong="H4672"\w* \w him|strong="H4672"\w* \w by|strong="H1870"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w and|strong="H3212"\w* \w killed|strong="H4191"\w* \w him|strong="H4672"\w*. \w His|strong="H1961"\w* \w body|strong="H5038"\w* \w was|strong="H1961"\w* \w thrown|strong="H7993"\w* \w on|strong="H1870"\w* \w the|strong="H1870"\w* \w path|strong="H1870"\w*, \w and|strong="H3212"\w* \w the|strong="H1870"\w* \w donkey|strong="H2543"\w* \w stood|strong="H5975"\w* \w by|strong="H1870"\w* \w it|strong="H5038"\w*. \w The|strong="H1870"\w* lion \w also|strong="H4191"\w* \w stood|strong="H5975"\w* \w by|strong="H1870"\w* \w the|strong="H1870"\w* \w body|strong="H5038"\w*. +\v 25 \w Behold|strong="H2009"\w*, \w men|strong="H2205"\w* \w passed|strong="H5674"\w* \w by|strong="H5674"\w* \w and|strong="H5892"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w body|strong="H5038"\w* \w thrown|strong="H7993"\w* \w on|strong="H5674"\w* \w the|strong="H7200"\w* \w path|strong="H1870"\w*, \w and|strong="H5892"\w* \w the|strong="H7200"\w* lion \w standing|strong="H5975"\w* \w by|strong="H5674"\w* \w the|strong="H7200"\w* \w body|strong="H5038"\w*; \w and|strong="H5892"\w* \w they|strong="H5892"\w* \w came|strong="H5674"\w* \w and|strong="H5892"\w* \w told|strong="H1696"\w* \w it|strong="H7200"\w* \w in|strong="H3427"\w* \w the|strong="H7200"\w* \w city|strong="H5892"\w* \w where|strong="H2009"\w* \w the|strong="H7200"\w* \w old|strong="H2205"\w* \w prophet|strong="H5030"\w* \w lived|strong="H3427"\w*. +\v 26 \w When|strong="H8085"\w* \w the|strong="H8085"\w* \w prophet|strong="H5030"\w* \w who|strong="H1931"\w* \w brought|strong="H7725"\w* \w him|strong="H5414"\w* \w back|strong="H7725"\w* \w from|strong="H4480"\w* \w the|strong="H8085"\w* \w way|strong="H1870"\w* \w heard|strong="H8085"\w* \w of|strong="H3068"\w* \w it|strong="H5414"\w*, \w he|strong="H1931"\w* \w said|strong="H1696"\w*, “\w It|strong="H5414"\w* \w is|strong="H3068"\w* \w the|strong="H8085"\w* \w man|strong="H4191"\w* \w of|strong="H3068"\w* \w God|strong="H3068"\w* \w who|strong="H1931"\w* \w was|strong="H3068"\w* \w disobedient|strong="H4784"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*. \w Therefore|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w delivered|strong="H5414"\w* \w him|strong="H5414"\w* \w to|strong="H1696"\w* \w the|strong="H8085"\w* lion, \w which|strong="H1931"\w* \w has|strong="H3068"\w* mauled \w him|strong="H5414"\w* \w and|strong="H3068"\w* \w slain|strong="H4191"\w* \w him|strong="H5414"\w*, \w according|strong="H6310"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5414"\w*.” +\v 27 \w He|strong="H1696"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w his|strong="H2280"\w* \w sons|strong="H1121"\w*, \w saying|strong="H1696"\w*, “\w Saddle|strong="H2280"\w* \w the|strong="H1696"\w* \w donkey|strong="H2543"\w* \w for|strong="H1121"\w* \w me|strong="H1696"\w*,” \w and|strong="H1121"\w* \w they|strong="H1696"\w* \w saddled|strong="H2280"\w* \w it|strong="H1696"\w*. +\v 28 \w He|strong="H3808"\w* \w went|strong="H3212"\w* \w and|strong="H3212"\w* \w found|strong="H4672"\w* \w his|strong="H7993"\w* \w body|strong="H5038"\w* \w thrown|strong="H7993"\w* \w on|strong="H1870"\w* \w the|strong="H7665"\w* \w path|strong="H1870"\w*, \w and|strong="H3212"\w* \w the|strong="H7665"\w* \w donkey|strong="H2543"\w* \w and|strong="H3212"\w* \w the|strong="H7665"\w* lion \w standing|strong="H5975"\w* \w by|strong="H1870"\w* \w the|strong="H7665"\w* \w body|strong="H5038"\w*. \w The|strong="H7665"\w* lion \w had|strong="H4672"\w* \w not|strong="H3808"\w* eaten \w the|strong="H7665"\w* \w body|strong="H5038"\w* \w nor|strong="H3808"\w* mauled \w the|strong="H7665"\w* \w donkey|strong="H2543"\w*. +\v 29 \w The|strong="H5375"\w* \w prophet|strong="H5030"\w* \w took|strong="H5375"\w* \w up|strong="H5375"\w* \w the|strong="H5375"\w* \w body|strong="H5038"\w* \w of|strong="H5892"\w* \w the|strong="H5375"\w* \w man|strong="H2205"\w* \w of|strong="H5892"\w* God, \w and|strong="H7725"\w* \w laid|strong="H5375"\w* \w it|strong="H7725"\w* \w on|strong="H5892"\w* \w the|strong="H5375"\w* \w donkey|strong="H2543"\w*, \w and|strong="H7725"\w* \w brought|strong="H7725"\w* \w it|strong="H7725"\w* \w back|strong="H7725"\w*. \w He|strong="H7725"\w* \w came|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H5375"\w* \w city|strong="H5892"\w* \w of|strong="H5892"\w* \w the|strong="H5375"\w* \w old|strong="H2205"\w* \w prophet|strong="H5030"\w* \w to|strong="H7725"\w* \w mourn|strong="H5594"\w*, \w and|strong="H7725"\w* \w to|strong="H7725"\w* \w bury|strong="H6912"\w* \w him|strong="H7725"\w*. +\v 30 \w He|strong="H5921"\w* \w laid|strong="H3240"\w* \w his|strong="H5921"\w* \w body|strong="H5038"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* own \w grave|strong="H6913"\w*; \w and|strong="H5594"\w* \w they|strong="H5921"\w* \w mourned|strong="H5594"\w* \w over|strong="H5921"\w* \w him|strong="H5921"\w*, saying, “\w Alas|strong="H1945"\w*, \w my|strong="H5921"\w* brother!” +\p +\v 31 \w After|strong="H1961"\w* \w he|strong="H1121"\w* \w had|strong="H1961"\w* \w buried|strong="H6912"\w* \w him|strong="H4191"\w*, \w he|strong="H1121"\w* spoke \w to|strong="H4191"\w* \w his|strong="H1961"\w* \w sons|strong="H1121"\w*, saying, “\w When|strong="H1961"\w* \w I|strong="H1121"\w* \w am|strong="H1961"\w* \w dead|strong="H4191"\w*, \w bury|strong="H6912"\w* \w me|strong="H4191"\w* \w in|strong="H4191"\w* \w the|strong="H1961"\w* \w tomb|strong="H6913"\w* \w in|strong="H4191"\w* \w which|strong="H4191"\w* \w the|strong="H1961"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* God \w is|strong="H1121"\w* \w buried|strong="H6912"\w*. \w Lay|strong="H3240"\w* \w my|strong="H1961"\w* \w bones|strong="H6106"\w* beside \w his|strong="H1961"\w* \w bones|strong="H6106"\w*. +\v 32 \w For|strong="H3588"\w* \w the|strong="H3605"\w* \w saying|strong="H1697"\w* \w which|strong="H3068"\w* \w he|strong="H3588"\w* \w cried|strong="H7121"\w* \w by|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w in|strong="H5921"\w* \w Bethel|strong="H1008"\w*, \w and|strong="H3068"\w* \w against|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w houses|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w which|strong="H3068"\w* \w are|strong="H1697"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H1004"\w* \w Samaria|strong="H8111"\w*, \w will|strong="H3068"\w* \w surely|strong="H3588"\w* \w happen|strong="H1961"\w*.” +\p +\v 33 \w After|strong="H1961"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*, \w Jeroboam|strong="H3379"\w* didn’t \w turn|strong="H7725"\w* \w from|strong="H7725"\w* \w his|strong="H7725"\w* \w evil|strong="H7451"\w* \w way|strong="H1870"\w*, \w but|strong="H3808"\w* \w again|strong="H7725"\w* \w made|strong="H6213"\w* \w priests|strong="H3548"\w* \w of|strong="H3027"\w* \w the|strong="H6213"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w from|strong="H7725"\w* \w among|strong="H5971"\w* \w all|strong="H6213"\w* \w the|strong="H6213"\w* \w people|strong="H5971"\w*. Whoever wanted \w to|strong="H7725"\w*, \w he|strong="H6213"\w* \w consecrated|strong="H4390"\w* \w him|strong="H3027"\w*, \w that|strong="H5971"\w* \w there|strong="H1961"\w* \w might|strong="H5971"\w* \w be|strong="H1961"\w* \w priests|strong="H3548"\w* \w of|strong="H3027"\w* \w the|strong="H6213"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*. +\v 34 \w This|strong="H2088"\w* \w thing|strong="H1697"\w* \w became|strong="H1961"\w* \w sin|strong="H2403"\w* \w to|strong="H1961"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jeroboam|strong="H3379"\w*, \w even|strong="H5921"\w* \w to|strong="H1961"\w* \w cut|strong="H3582"\w* \w it|strong="H5921"\w* \w off|strong="H3582"\w* \w and|strong="H1004"\w* \w to|strong="H1961"\w* \w destroy|strong="H8045"\w* \w it|strong="H5921"\w* \w from|strong="H6440"\w* \w off|strong="H3582"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* earth. +\c 14 +\p +\v 1 \w At|strong="H1121"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w* Abijah \w the|strong="H3379"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w became|strong="H2470"\w* \w sick|strong="H2470"\w*. +\v 2 \w Jeroboam|strong="H3379"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w his|strong="H5921"\w* \w wife|strong="H1696"\w*, “\w Please|strong="H4994"\w* \w get|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H1980"\w* \w disguise|strong="H8138"\w* \w yourself|strong="H5921"\w*, \w so|strong="H1980"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* won’t \w be|strong="H3808"\w* \w recognized|strong="H3045"\w* \w as|strong="H3588"\w* \w Jeroboam|strong="H3379"\w*’s \w wife|strong="H1696"\w*. \w Go|strong="H1980"\w* \w to|strong="H1696"\w* \w Shiloh|strong="H7887"\w*. \w Behold|strong="H2009"\w*, Ahijah \w the|strong="H5921"\w* \w prophet|strong="H5030"\w* \w is|strong="H2088"\w* \w there|strong="H8033"\w*, \w who|strong="H1931"\w* \w said|strong="H1696"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w would|strong="H5971"\w* \w be|strong="H3808"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*. +\v 3 \w Take|strong="H3947"\w* \w with|strong="H3899"\w* \w you|strong="H3947"\w* \w ten|strong="H6235"\w* \w loaves|strong="H3899"\w* \w of|strong="H3027"\w* \w bread|strong="H3899"\w*, \w some|strong="H3027"\w* \w cakes|strong="H5350"\w*, \w and|strong="H3027"\w* \w a|strong="H3068"\w* \w jar|strong="H1228"\w* \w of|strong="H3027"\w* \w honey|strong="H1706"\w*, \w and|strong="H3027"\w* \w go|strong="H1961"\w* \w to|strong="H1961"\w* \w him|strong="H5046"\w*. \w He|strong="H1931"\w* \w will|strong="H1961"\w* \w tell|strong="H5046"\w* \w you|strong="H3947"\w* \w what|strong="H4100"\w* \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w of|strong="H3027"\w* \w the|strong="H3947"\w* \w child|strong="H5288"\w*.” +\p +\v 4 \w Jeroboam|strong="H3379"\w*’s wife \w did|strong="H6213"\w* \w so|strong="H3651"\w*, \w and|strong="H6965"\w* \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w to|strong="H3201"\w* \w Shiloh|strong="H7887"\w*, \w and|strong="H6965"\w* \w came|strong="H3212"\w* \w to|strong="H3201"\w* Ahijah’s \w house|strong="H1004"\w*. \w Now|strong="H3588"\w* Ahijah \w could|strong="H3201"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w*, \w for|strong="H3588"\w* \w his|strong="H7200"\w* \w eyes|strong="H5869"\w* \w were|strong="H5869"\w* \w set|strong="H6965"\w* \w by|strong="H6965"\w* \w reason|strong="H3651"\w* \w of|strong="H1004"\w* \w his|strong="H7200"\w* \w age|strong="H7869"\w*. +\v 5 \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* Ahijah, “\w Behold|strong="H2009"\w*, \w Jeroboam|strong="H3379"\w*’s \w wife|strong="H1696"\w* \w is|strong="H3068"\w* \w coming|strong="H2009"\w* \w to|strong="H1696"\w* \w inquire|strong="H1875"\w* \w of|strong="H1121"\w* \w you|strong="H3588"\w* \w concerning|strong="H1697"\w* \w her|strong="H1931"\w* \w son|strong="H1121"\w*, \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H3068"\w* \w sick|strong="H2470"\w*. \w Tell|strong="H1696"\w* \w her|strong="H1931"\w* \w such|strong="H2088"\w* \w and|strong="H1121"\w* \w such|strong="H2088"\w*; \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w*, \w when|strong="H3588"\w* \w she|strong="H1931"\w* \w comes|strong="H1961"\w* \w in|strong="H3068"\w*, \w that|strong="H3588"\w* \w she|strong="H1931"\w* \w will|strong="H3068"\w* \w pretend|strong="H2470"\w* \w to|strong="H1696"\w* \w be|strong="H1961"\w* \w another|strong="H2088"\w* \w woman|strong="H2088"\w*.” +\p +\v 6 \w So|strong="H7971"\w* \w when|strong="H1961"\w* Ahijah \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w her|strong="H7971"\w* \w feet|strong="H7272"\w* \w as|strong="H1961"\w* \w she|strong="H4100"\w* \w came|strong="H1961"\w* \w in|strong="H8085"\w* \w at|strong="H1961"\w* \w the|strong="H8085"\w* \w door|strong="H6607"\w*, \w he|strong="H7971"\w* \w said|strong="H8085"\w*, “\w Come|strong="H1961"\w* \w in|strong="H8085"\w*, \w Jeroboam|strong="H3379"\w*’s wife! \w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H7971"\w* pretend \w to|strong="H7971"\w* \w be|strong="H1961"\w* \w another|strong="H2088"\w*? \w For|strong="H7971"\w* \w I|strong="H2088"\w* \w am|strong="H1961"\w* \w sent|strong="H7971"\w* \w to|strong="H7971"\w* \w you|strong="H7971"\w* \w with|strong="H8085"\w* \w heavy|strong="H7186"\w* \w news|strong="H6963"\w*. +\v 7 \w Go|strong="H3212"\w*, tell \w Jeroboam|strong="H3379"\w*, ‘\w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*: “\w Because|strong="H5921"\w* \w I|strong="H5414"\w* \w exalted|strong="H7311"\w* \w you|strong="H5414"\w* \w from|strong="H5921"\w* \w among|strong="H8432"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w*, \w and|strong="H3478"\w* \w made|strong="H5414"\w* \w you|strong="H5414"\w* \w prince|strong="H5057"\w* \w over|strong="H5921"\w* \w my|strong="H5414"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, +\v 8 \w and|strong="H1980"\w* \w tore|strong="H7167"\w* \w the|strong="H3605"\w* \w kingdom|strong="H4467"\w* \w away|strong="H1980"\w* \w from|strong="H1980"\w* \w David|strong="H1732"\w*’s \w house|strong="H1004"\w*, \w and|strong="H1980"\w* \w gave|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H1980"\w* \w you|strong="H5414"\w*; \w and|strong="H1980"\w* \w yet|strong="H7535"\w* \w you|strong="H5414"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* \w been|strong="H1961"\w* \w as|strong="H1961"\w* \w my|strong="H8104"\w* \w servant|strong="H5650"\w* \w David|strong="H1732"\w*, \w who|strong="H3605"\w* \w kept|strong="H8104"\w* \w my|strong="H8104"\w* \w commandments|strong="H4687"\w*, \w and|strong="H1980"\w* \w who|strong="H3605"\w* \w followed|strong="H1980"\w* \w me|strong="H5414"\w* \w with|strong="H1980"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w heart|strong="H3824"\w*, \w to|strong="H1980"\w* \w do|strong="H6213"\w* \w that|strong="H3605"\w* \w only|strong="H7535"\w* \w which|strong="H1004"\w* \w was|strong="H1961"\w* \w right|strong="H3477"\w* \w in|strong="H1980"\w* \w my|strong="H8104"\w* \w eyes|strong="H5869"\w*, +\v 9 \w but|strong="H1961"\w* \w have|strong="H1961"\w* \w done|strong="H6213"\w* \w evil|strong="H7489"\w* \w above|strong="H6440"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w and|strong="H3212"\w* \w have|strong="H1961"\w* \w gone|strong="H3212"\w* \w and|strong="H3212"\w* \w made|strong="H6213"\w* \w for|strong="H6213"\w* \w yourself|strong="H6213"\w* \w other|strong="H3605"\w* gods, \w molten|strong="H4541"\w* \w images|strong="H4541"\w*, \w to|strong="H3212"\w* \w provoke|strong="H3707"\w* \w me|strong="H6440"\w* \w to|strong="H3212"\w* \w anger|strong="H3707"\w*, \w and|strong="H3212"\w* \w have|strong="H1961"\w* \w cast|strong="H7993"\w* \w me|strong="H6440"\w* behind \w your|strong="H3605"\w* \w back|strong="H1458"\w*, +\v 10 \w therefore|strong="H3651"\w*, \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3478"\w* \w bring|strong="H7451"\w* \w evil|strong="H7451"\w* \w on|strong="H1004"\w* \w the|strong="H5704"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jeroboam|strong="H3379"\w*, \w and|strong="H3478"\w* \w will|strong="H3478"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w Jeroboam|strong="H3379"\w* everyone \w who|strong="H3478"\w* urinates \w on|strong="H1004"\w* \w a|strong="H3068"\w* \w wall|strong="H7023"\w*,\f + \fr 14:10 \ft or, male\f* \w he|strong="H5704"\w* \w who|strong="H3478"\w* \w is|strong="H3651"\w* \w shut|strong="H6113"\w* \w up|strong="H6113"\w* \w and|strong="H3478"\w* \w he|strong="H5704"\w* \w who|strong="H3478"\w* \w is|strong="H3651"\w* \w left|strong="H5800"\w* \w at|strong="H3478"\w* \w large|strong="H1004"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w will|strong="H3478"\w* \w utterly|strong="H5704"\w* \w sweep|strong="H1197"\w* \w away|strong="H1197"\w* \w the|strong="H5704"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jeroboam|strong="H3379"\w*, \w as|strong="H5704"\w* \w a|strong="H3068"\w* \w man|strong="H7451"\w* \w sweeps|strong="H1197"\w* \w away|strong="H1197"\w* \w dung|strong="H1557"\w* \w until|strong="H5704"\w* \w it|strong="H3651"\w* \w is|strong="H3651"\w* \w all|strong="H8552"\w* \w gone|strong="H8552"\w*. +\v 11 \w The|strong="H3588"\w* \w dogs|strong="H3611"\w* \w will|strong="H3068"\w* eat \w he|strong="H3588"\w* \w who|strong="H3068"\w* belongs \w to|strong="H1696"\w* \w Jeroboam|strong="H3379"\w* \w who|strong="H3068"\w* \w dies|strong="H4191"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w city|strong="H5892"\w*; \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w birds|strong="H5775"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w sky|strong="H8064"\w* \w will|strong="H3068"\w* eat \w he|strong="H3588"\w* \w who|strong="H3068"\w* \w dies|strong="H4191"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w it|strong="H3588"\w*.”’ +\v 12 \w Arise|strong="H6965"\w* therefore, \w and|strong="H6965"\w* \w go|strong="H3212"\w* \w to|strong="H4191"\w* \w your|strong="H6965"\w* \w house|strong="H1004"\w*. \w When|strong="H6965"\w* \w your|strong="H6965"\w* \w feet|strong="H7272"\w* enter \w into|strong="H3212"\w* \w the|strong="H6965"\w* \w city|strong="H5892"\w*, \w the|strong="H6965"\w* \w child|strong="H3206"\w* \w will|strong="H1004"\w* \w die|strong="H4191"\w*. +\v 13 \w All|strong="H3605"\w* \w Israel|strong="H3478"\w* \w will|strong="H3068"\w* \w mourn|strong="H5594"\w* \w for|strong="H3588"\w* \w him|strong="H4672"\w* \w and|strong="H3478"\w* \w bury|strong="H6912"\w* \w him|strong="H4672"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w only|strong="H3588"\w* \w of|strong="H1004"\w* \w Jeroboam|strong="H3379"\w* \w will|strong="H3068"\w* \w come|strong="H4672"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w grave|strong="H6913"\w*, \w because|strong="H3588"\w* \w in|strong="H3478"\w* \w him|strong="H4672"\w* \w there|strong="H2088"\w* \w is|strong="H3068"\w* \w found|strong="H4672"\w* \w some|strong="H1697"\w* \w good|strong="H2896"\w* \w thing|strong="H1697"\w* \w toward|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jeroboam|strong="H3379"\w*. +\v 14 \w Moreover|strong="H1571"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w for|strong="H5921"\w* \w himself|strong="H3068"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w who|strong="H3068"\w* \w will|strong="H3068"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w Jeroboam|strong="H3379"\w*. \w This|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w*! \w What|strong="H4100"\w*? \w Even|strong="H1571"\w* \w now|strong="H6258"\w*. +\v 15 \w For|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w strike|strong="H5221"\w* \w Israel|strong="H3478"\w*, \w as|strong="H6213"\w* \w a|strong="H3068"\w* \w reed|strong="H7070"\w* \w is|strong="H3068"\w* \w shaken|strong="H5110"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w water|strong="H4325"\w*; \w and|strong="H3478"\w* \w he|strong="H6213"\w* \w will|strong="H3068"\w* \w root|strong="H5428"\w* \w up|strong="H5414"\w* \w Israel|strong="H3478"\w* \w out|strong="H5414"\w* \w of|strong="H3068"\w* \w this|strong="H2063"\w* \w good|strong="H2896"\w* \w land|strong="H5676"\w* \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w gave|strong="H5414"\w* \w to|strong="H3478"\w* \w their|strong="H3068"\w* fathers, \w and|strong="H3478"\w* \w will|strong="H3068"\w* \w scatter|strong="H2219"\w* \w them|strong="H5414"\w* \w beyond|strong="H5676"\w* \w the|strong="H5921"\w* \w River|strong="H5104"\w*,\f + \fr 14:15 \ft That is, the Euphrates.\f* \w because|strong="H5921"\w* \w they|strong="H3068"\w* \w have|strong="H3068"\w* \w made|strong="H6213"\w* \w their|strong="H3068"\w* Asherah poles, \w provoking|strong="H3707"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3478"\w* \w anger|strong="H3707"\w*. +\v 16 \w He|strong="H5414"\w* \w will|strong="H3478"\w* \w give|strong="H5414"\w* \w Israel|strong="H3478"\w* \w up|strong="H5414"\w* \w because|strong="H1558"\w* \w of|strong="H2403"\w* \w the|strong="H5414"\w* \w sins|strong="H2403"\w* \w of|strong="H2403"\w* \w Jeroboam|strong="H3379"\w*, \w which|strong="H3478"\w* \w he|strong="H5414"\w* \w has|strong="H3478"\w* \w sinned|strong="H2398"\w*, \w and|strong="H3478"\w* \w with|strong="H3478"\w* \w which|strong="H3478"\w* \w he|strong="H5414"\w* \w has|strong="H3478"\w* \w made|strong="H5414"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w sin|strong="H2403"\w*.” +\p +\v 17 \w Jeroboam|strong="H3379"\w*’s wife \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w departed|strong="H3212"\w*, \w and|strong="H6965"\w* \w came|strong="H3212"\w* \w to|strong="H4191"\w* \w Tirzah|strong="H8656"\w*. \w As|strong="H6965"\w* \w she|strong="H1931"\w* \w came|strong="H3212"\w* \w to|strong="H4191"\w* \w the|strong="H6965"\w* \w threshold|strong="H5592"\w* \w of|strong="H1004"\w* \w the|strong="H6965"\w* \w house|strong="H1004"\w*, \w the|strong="H6965"\w* \w child|strong="H5288"\w* \w died|strong="H4191"\w*. +\v 18 \w All|strong="H3605"\w* \w Israel|strong="H3478"\w* \w buried|strong="H6912"\w* \w him|strong="H3027"\w* \w and|strong="H3478"\w* \w mourned|strong="H5594"\w* \w for|strong="H3027"\w* \w him|strong="H3027"\w*, \w according|strong="H3027"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w spoke|strong="H1696"\w* \w by|strong="H3027"\w* \w his|strong="H3605"\w* \w servant|strong="H5650"\w* Ahijah \w the|strong="H3605"\w* \w prophet|strong="H5030"\w*. +\p +\v 19 \w The|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Jeroboam|strong="H3379"\w*, \w how|strong="H2009"\w* \w he|strong="H3117"\w* \w fought|strong="H3898"\w* \w and|strong="H3478"\w* \w how|strong="H2009"\w* \w he|strong="H3117"\w* \w reigned|strong="H4427"\w*, \w behold|strong="H2009"\w*, \w they|strong="H3117"\w* \w are|strong="H3117"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. +\v 20 \w The|strong="H3117"\w* \w days|strong="H3117"\w* \w which|strong="H3117"\w* \w Jeroboam|strong="H3379"\w* \w reigned|strong="H4427"\w* \w were|strong="H1121"\w* \w twenty|strong="H6242"\w* \w two|strong="H8147"\w* \w years|strong="H8141"\w*; \w then|strong="H3117"\w* \w he|strong="H3117"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H8478"\w* fathers, \w and|strong="H1121"\w* \w Nadab|strong="H5070"\w* \w his|strong="H8478"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H8141"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\p +\v 21 \w Rehoboam|strong="H7346"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w* \w reigned|strong="H4427"\w* \w in|strong="H8141"\w* \w Judah|strong="H3063"\w*. \w Rehoboam|strong="H7346"\w* \w was|strong="H3068"\w* forty-one \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H3068"\w* \w he|strong="H8033"\w* \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H8033"\w* \w reigned|strong="H4427"\w* \w seventeen|strong="H7651"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*, \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* chosen \w out|strong="H3605"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w put|strong="H7760"\w* \w his|strong="H3605"\w* \w name|strong="H8034"\w* \w there|strong="H8033"\w*. \w His|strong="H3605"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H3068"\w* \w Naamah|strong="H5279"\w* \w the|strong="H3605"\w* \w Ammonitess|strong="H5985"\w*. +\v 22 \w Judah|strong="H3063"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w and|strong="H3063"\w* \w they|strong="H3068"\w* \w provoked|strong="H7065"\w* \w him|strong="H6213"\w* \w to|strong="H3068"\w* \w jealousy|strong="H7065"\w* \w with|strong="H3068"\w* \w their|strong="H3605"\w* \w sins|strong="H2403"\w* \w which|strong="H3068"\w* \w they|strong="H3068"\w* \w committed|strong="H6213"\w*, above \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w their|strong="H3605"\w* fathers \w had|strong="H3068"\w* \w done|strong="H6213"\w*. +\v 23 \w For|strong="H5921"\w* \w they|strong="H1992"\w* \w also|strong="H1571"\w* \w built|strong="H1129"\w* \w for|strong="H5921"\w* \w themselves|strong="H1992"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*, sacred \w pillars|strong="H4676"\w*, \w and|strong="H6086"\w* Asherah poles \w on|strong="H5921"\w* \w every|strong="H3605"\w* \w high|strong="H1116"\w* \w hill|strong="H1389"\w* \w and|strong="H6086"\w* \w under|strong="H8478"\w* \w every|strong="H3605"\w* \w green|strong="H7488"\w* \w tree|strong="H6086"\w*. +\v 24 \w There|strong="H1961"\w* \w were|strong="H3478"\w* \w also|strong="H1571"\w* \w sodomites|strong="H6945"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w*. \w They|strong="H3068"\w* \w did|strong="H6213"\w* according \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w abominations|strong="H8441"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w drove|strong="H3423"\w* \w out|strong="H3423"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\p +\v 25 \w In|strong="H8141"\w* \w the|strong="H5921"\w* \w fifth|strong="H2549"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* \w Rehoboam|strong="H7346"\w*, \w Shishak|strong="H7895"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w came|strong="H1961"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*; +\v 26 \w and|strong="H3068"\w* \w he|strong="H6213"\w* \w took|strong="H3947"\w* \w away|strong="H3947"\w* \w the|strong="H3605"\w* treasures \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* treasures \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*. \w He|strong="H6213"\w* \w even|strong="H6213"\w* \w took|strong="H3947"\w* \w away|strong="H3947"\w* \w all|strong="H3605"\w* \w of|strong="H4428"\w* \w it|strong="H6213"\w*, \w including|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w gold|strong="H2091"\w* \w shields|strong="H4043"\w* \w which|strong="H3068"\w* \w Solomon|strong="H8010"\w* \w had|strong="H3068"\w* \w made|strong="H6213"\w*. +\v 27 \w King|strong="H4428"\w* \w Rehoboam|strong="H7346"\w* \w made|strong="H6213"\w* \w shields|strong="H4043"\w* \w of|strong="H4428"\w* \w bronze|strong="H5178"\w* \w in|strong="H5921"\w* \w their|strong="H5921"\w* \w place|strong="H8478"\w*, \w and|strong="H4428"\w* \w committed|strong="H6213"\w* \w them|strong="H5921"\w* \w to|strong="H6213"\w* \w the|strong="H5921"\w* \w hands|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w captains|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w guard|strong="H8104"\w*, \w who|strong="H8104"\w* \w kept|strong="H8104"\w* \w the|strong="H5921"\w* \w door|strong="H6607"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*. +\v 28 \w It|strong="H7725"\w* \w was|strong="H3068"\w* \w so|strong="H1961"\w*, \w that|strong="H3068"\w* \w as|strong="H1961"\w* \w often|strong="H1767"\w* \w as|strong="H1961"\w* \w the|strong="H5375"\w* \w king|strong="H4428"\w* \w went|strong="H3068"\w* \w into|strong="H7725"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w the|strong="H5375"\w* \w guard|strong="H7323"\w* \w bore|strong="H5375"\w* \w them|strong="H7725"\w*, \w and|strong="H3068"\w* \w brought|strong="H7725"\w* \w them|strong="H7725"\w* \w back|strong="H7725"\w* \w into|strong="H7725"\w* \w the|strong="H5375"\w* \w guard|strong="H7323"\w* \w room|strong="H1004"\w*. +\p +\v 29 \w Now|strong="H3117"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Rehoboam|strong="H7346"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*? +\v 30 \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w war|strong="H4421"\w* \w between|strong="H4421"\w* \w Rehoboam|strong="H7346"\w* \w and|strong="H3117"\w* \w Jeroboam|strong="H3379"\w* \w continually|strong="H3605"\w*. +\v 31 \w Rehoboam|strong="H7346"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* fathers, \w and|strong="H1121"\w* \w was|strong="H8034"\w* \w buried|strong="H6912"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* fathers \w in|strong="H6912"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*. \w His|strong="H1732"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Naamah|strong="H5279"\w* \w the|strong="H8478"\w* \w Ammonitess|strong="H5985"\w*. Abijam \w his|strong="H1732"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H6912"\w* \w his|strong="H1732"\w* \w place|strong="H8478"\w*. +\c 15 +\p +\v 1 \w Now|strong="H4428"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w eighteenth|strong="H8083"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w King|strong="H4428"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w*, Abijam \w began|strong="H3063"\w* \w to|strong="H5921"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w Judah|strong="H3063"\w*. +\v 2 \w He|strong="H3389"\w* \w reigned|strong="H4427"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H4427"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Maacah|strong="H4601"\w* \w the|strong="H8034"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* Abishalom. +\v 3 \w He|strong="H6213"\w* \w walked|strong="H3212"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w sins|strong="H2403"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* father, \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w had|strong="H3068"\w* \w done|strong="H6213"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*; \w and|strong="H3068"\w* \w his|strong="H3605"\w* \w heart|strong="H3824"\w* \w was|strong="H3068"\w* \w not|strong="H3808"\w* \w perfect|strong="H8003"\w* \w with|strong="H5973"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H3605"\w* \w God|strong="H3068"\w*, \w as|strong="H1961"\w* \w the|strong="H3605"\w* \w heart|strong="H3824"\w* \w of|strong="H3068"\w* \w David|strong="H1732"\w* \w his|strong="H3605"\w* father. +\v 4 \w Nevertheless|strong="H3588"\w* \w for|strong="H3588"\w* \w David|strong="H1732"\w*’s \w sake|strong="H4616"\w*, \w Yahweh|strong="H3068"\w* \w his|strong="H5414"\w* \w God|strong="H3068"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w a|strong="H3068"\w* \w lamp|strong="H5216"\w* \w in|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, \w to|strong="H3068"\w* \w set|strong="H5414"\w* \w up|strong="H6965"\w* \w his|strong="H5414"\w* \w son|strong="H1121"\w* \w after|strong="H3588"\w* \w him|strong="H5414"\w* \w and|strong="H1121"\w* \w to|strong="H3068"\w* \w establish|strong="H6965"\w* \w Jerusalem|strong="H3389"\w*; +\v 5 \w because|strong="H1697"\w* \w David|strong="H1732"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w right|strong="H3477"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*, \w and|strong="H3068"\w* didn’t \w turn|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* \w anything|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w commanded|strong="H6680"\w* \w him|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w life|strong="H2416"\w*, \w except|strong="H7535"\w* \w only|strong="H7535"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w matter|strong="H1697"\w* \w of|strong="H3068"\w* Uriah \w the|strong="H3605"\w* \w Hittite|strong="H2850"\w*. +\v 6 \w Now|strong="H1961"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w war|strong="H4421"\w* \w between|strong="H4421"\w* \w Rehoboam|strong="H7346"\w* \w and|strong="H3117"\w* \w Jeroboam|strong="H3379"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w his|strong="H3605"\w* \w life|strong="H2416"\w*. +\v 7 \w The|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* Abijam, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*? \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w war|strong="H4421"\w* \w between|strong="H4421"\w* Abijam \w and|strong="H3063"\w* \w Jeroboam|strong="H3379"\w*. +\v 8 Abijam \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* fathers, \w and|strong="H1121"\w* \w they|strong="H5892"\w* \w buried|strong="H6912"\w* \w him|strong="H4427"\w* \w in|strong="H6912"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*; \w and|strong="H1121"\w* Asa \w his|strong="H1732"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H6912"\w* \w his|strong="H1732"\w* \w place|strong="H8478"\w*. +\p +\v 9 \w In|strong="H8141"\w* \w the|strong="H3379"\w* \w twentieth|strong="H6242"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w Jeroboam|strong="H3379"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, Asa \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w* \w over|strong="H4427"\w* \w Judah|strong="H3063"\w*. +\v 10 \w He|strong="H3389"\w* \w reigned|strong="H4427"\w* forty-one \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H4427"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Maacah|strong="H4601"\w* \w the|strong="H8034"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* Abishalom. +\v 11 Asa \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w right|strong="H3477"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*, \w as|strong="H6213"\w* \w David|strong="H1732"\w* \w his|strong="H3068"\w* father \w did|strong="H6213"\w*. +\v 12 \w He|strong="H6213"\w* \w put|strong="H5493"\w* \w away|strong="H5493"\w* \w the|strong="H3605"\w* \w sodomites|strong="H6945"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H3605"\w* land, \w and|strong="H6213"\w* \w removed|strong="H5493"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w idols|strong="H1544"\w* \w that|strong="H3605"\w* \w his|strong="H3605"\w* fathers \w had|strong="H6213"\w* \w made|strong="H6213"\w*. +\v 13 \w He|strong="H6213"\w* \w also|strong="H1571"\w* \w removed|strong="H5493"\w* \w Maacah|strong="H4601"\w* \w his|strong="H5493"\w* \w mother|strong="H1377"\w* \w from|strong="H5493"\w* \w being|strong="H3772"\w* \w queen|strong="H1377"\w*, because \w she|strong="H1571"\w* \w had|strong="H8313"\w* \w made|strong="H6213"\w* \w an|strong="H6213"\w* abominable \w image|strong="H4656"\w* \w for|strong="H6213"\w* \w an|strong="H6213"\w* Asherah. Asa \w cut|strong="H3772"\w* \w down|strong="H3772"\w* \w her|strong="H3772"\w* \w image|strong="H4656"\w* \w and|strong="H6213"\w* \w burned|strong="H8313"\w* \w it|strong="H6213"\w* \w at|strong="H6213"\w* \w the|strong="H6213"\w* \w brook|strong="H5158"\w* \w Kidron|strong="H6939"\w*. +\v 14 \w But|strong="H7535"\w* \w the|strong="H3605"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w were|strong="H1961"\w* \w not|strong="H3808"\w* \w taken|strong="H5493"\w* \w away|strong="H5493"\w*. \w Nevertheless|strong="H7535"\w* \w the|strong="H3605"\w* \w heart|strong="H3824"\w* \w of|strong="H3068"\w* Asa \w was|strong="H3068"\w* \w perfect|strong="H8003"\w* \w with|strong="H5973"\w* \w Yahweh|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w days|strong="H3117"\w*. +\v 15 \w He|strong="H3068"\w* \w brought|strong="H3068"\w* \w into|strong="H3701"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w the|strong="H3068"\w* \w things|strong="H6944"\w* \w that|strong="H3068"\w* \w his|strong="H3068"\w* father \w had|strong="H3068"\w* \w dedicated|strong="H6944"\w*, \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w things|strong="H6944"\w* \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w himself|strong="H3068"\w* \w had|strong="H3068"\w* \w dedicated|strong="H6944"\w*: \w silver|strong="H3701"\w*, \w gold|strong="H2091"\w*, \w and|strong="H3068"\w* \w utensils|strong="H3627"\w*. +\p +\v 16 \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w war|strong="H4421"\w* \w between|strong="H4421"\w* Asa \w and|strong="H3478"\w* \w Baasha|strong="H1201"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w days|strong="H3117"\w*. +\v 17 \w Baasha|strong="H1201"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w went|strong="H3318"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w built|strong="H1129"\w* \w Ramah|strong="H7414"\w*, \w that|strong="H3478"\w* \w he|strong="H5414"\w* \w might|strong="H3478"\w* \w not|strong="H1115"\w* \w allow|strong="H5414"\w* anyone \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w or|strong="H1115"\w* \w come|strong="H5927"\w* \w in|strong="H5921"\w* \w to|strong="H3318"\w* Asa \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*. +\v 18 \w Then|strong="H3947"\w* Asa \w took|strong="H3947"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w silver|strong="H3701"\w* \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w gold|strong="H2091"\w* \w that|strong="H3605"\w* \w was|strong="H3068"\w* \w left|strong="H3498"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* treasures \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* treasures \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w and|strong="H1121"\w* \w delivered|strong="H5414"\w* \w it|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w*. \w Then|strong="H3947"\w* \w King|strong="H4428"\w* Asa \w sent|strong="H7971"\w* \w them|strong="H5414"\w* \w to|strong="H3068"\w* Ben Hadad, \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Tabrimmon|strong="H2886"\w*, \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hezion|strong="H2383"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* Syria, \w who|strong="H3605"\w* \w lived|strong="H3427"\w* \w at|strong="H3427"\w* \w Damascus|strong="H1834"\w*, saying, +\v 19 “\w Let|strong="H7971"\w* \w there|strong="H2009"\w* \w be|strong="H3478"\w* \w a|strong="H3068"\w* \w treaty|strong="H1285"\w* \w between|strong="H5921"\w* \w me|strong="H7971"\w* \w and|strong="H3478"\w* \w you|strong="H7971"\w*, \w like|strong="H3478"\w* \w that|strong="H3478"\w* \w between|strong="H5921"\w* \w my|strong="H5921"\w* father \w and|strong="H3478"\w* \w your|strong="H5921"\w* father. \w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w have|strong="H3478"\w* \w sent|strong="H7971"\w* \w to|strong="H3478"\w* \w you|strong="H7971"\w* \w a|strong="H3068"\w* \w present|strong="H7810"\w* \w of|strong="H4428"\w* \w silver|strong="H3701"\w* \w and|strong="H3478"\w* \w gold|strong="H2091"\w*. \w Go|strong="H3212"\w*, \w break|strong="H6565"\w* \w your|strong="H5921"\w* \w treaty|strong="H1285"\w* \w with|strong="H1285"\w* \w Baasha|strong="H1201"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w that|strong="H3478"\w* \w he|strong="H5921"\w* \w may|strong="H3478"\w* \w depart|strong="H3212"\w* \w from|strong="H5921"\w* \w me|strong="H7971"\w*.” +\p +\v 20 Ben Hadad \w listened|strong="H8085"\w* \w to|strong="H3478"\w* \w King|strong="H4428"\w* Asa, \w and|strong="H3478"\w* \w sent|strong="H7971"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* \w armies|strong="H2428"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w struck|strong="H5221"\w* \w Ijon|strong="H5859"\w*, \w and|strong="H3478"\w* \w Dan|strong="H1835"\w*, \w and|strong="H3478"\w* Abel Beth Maacah, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Chinneroth|strong="H3672"\w*, \w with|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H4428"\w* \w Naphtali|strong="H5321"\w*. +\v 21 \w When|strong="H1961"\w* \w Baasha|strong="H1201"\w* \w heard|strong="H8085"\w* \w of|strong="H3427"\w* \w it|strong="H1961"\w*, \w he|strong="H3427"\w* \w stopped|strong="H2308"\w* \w building|strong="H1129"\w* \w Ramah|strong="H7414"\w*, \w and|strong="H8085"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Tirzah|strong="H8656"\w*. +\v 22 \w Then|strong="H5375"\w* \w King|strong="H4428"\w* Asa \w made|strong="H1129"\w* \w a|strong="H3068"\w* \w proclamation|strong="H8085"\w* \w to|strong="H8085"\w* \w all|strong="H3605"\w* \w Judah|strong="H3063"\w*. \w No|strong="H3605"\w* \w one|strong="H3605"\w* \w was|strong="H4428"\w* \w exempted|strong="H5355"\w*. \w They|strong="H3605"\w* \w carried|strong="H5375"\w* \w away|strong="H5375"\w* \w the|strong="H3605"\w* stones \w of|strong="H4428"\w* \w Ramah|strong="H7414"\w*, \w and|strong="H3063"\w* \w its|strong="H3605"\w* \w timber|strong="H6086"\w*, \w with|strong="H4428"\w* \w which|strong="H6086"\w* \w Baasha|strong="H1201"\w* \w had|strong="H4428"\w* \w built|strong="H1129"\w*; \w and|strong="H3063"\w* \w King|strong="H4428"\w* Asa \w used|strong="H3605"\w* \w it|strong="H5375"\w* \w to|strong="H8085"\w* \w build|strong="H1129"\w* \w Geba|strong="H1387"\w* \w of|strong="H4428"\w* \w Benjamin|strong="H1144"\w*, \w and|strong="H3063"\w* \w Mizpah|strong="H4709"\w*. +\v 23 \w Now|strong="H3117"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* Asa, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w might|strong="H1369"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, \w and|strong="H3063"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w which|strong="H1992"\w* \w he|strong="H3117"\w* \w built|strong="H1129"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*? \w But|strong="H7535"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w time|strong="H6256"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* \w old|strong="H2209"\w* \w age|strong="H3117"\w* \w he|strong="H3117"\w* \w was|strong="H1697"\w* \w diseased|strong="H2470"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w feet|strong="H7272"\w*. +\v 24 Asa \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* fathers, \w and|strong="H1121"\w* \w was|strong="H1732"\w* \w buried|strong="H6912"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* fathers \w in|strong="H6912"\w* \w his|strong="H1732"\w* \w father|strong="H1121"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*; \w and|strong="H1121"\w* \w Jehoshaphat|strong="H3092"\w* \w his|strong="H1732"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H6912"\w* \w his|strong="H1732"\w* \w place|strong="H8478"\w*. +\p +\v 25 \w Nadab|strong="H5070"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w second|strong="H8147"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* Asa \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*; \w and|strong="H1121"\w* \w he|strong="H8147"\w* \w reigned|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w two|strong="H8147"\w* \w years|strong="H8141"\w*. +\v 26 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w and|strong="H3478"\w* \w walked|strong="H3212"\w* \w in|strong="H3478"\w* \w the|strong="H6213"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* father, \w and|strong="H3478"\w* \w in|strong="H3478"\w* \w his|strong="H3068"\w* \w sin|strong="H2403"\w* \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w sin|strong="H2403"\w*. +\v 27 \w Baasha|strong="H1201"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahijah, \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Issachar|strong="H3485"\w*, \w conspired|strong="H7194"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*; \w and|strong="H1121"\w* \w Baasha|strong="H1201"\w* \w struck|strong="H5221"\w* \w him|strong="H5921"\w* \w at|strong="H5921"\w* \w Gibbethon|strong="H1405"\w*, \w which|strong="H1004"\w* belonged \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*; \w for|strong="H5921"\w* \w Nadab|strong="H5070"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w besieging|strong="H6696"\w* \w Gibbethon|strong="H1405"\w*. +\v 28 Even \w in|strong="H8141"\w* \w the|strong="H8478"\w* \w third|strong="H7969"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* Asa \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w Baasha|strong="H1201"\w* \w killed|strong="H4191"\w* \w him|strong="H4427"\w* \w and|strong="H3063"\w* \w reigned|strong="H4427"\w* \w in|strong="H8141"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\v 29 \w As|strong="H5704"\w* soon \w as|strong="H5704"\w* \w he|strong="H5704"\w* \w was|strong="H3068"\w* \w king|strong="H4427"\w*, \w he|strong="H5704"\w* \w struck|strong="H5221"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jeroboam|strong="H3379"\w*. \w He|strong="H5704"\w* didn’t \w leave|strong="H7604"\w* \w to|strong="H1696"\w* \w Jeroboam|strong="H3379"\w* \w any|strong="H3605"\w* \w who|strong="H3605"\w* \w breathed|strong="H5397"\w*, \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w had|strong="H3068"\w* \w destroyed|strong="H8045"\w* \w him|strong="H5221"\w*, \w according|strong="H3027"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w saying|strong="H1697"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*, \w which|strong="H3068"\w* \w he|strong="H5704"\w* \w spoke|strong="H1696"\w* \w by|strong="H3027"\w* \w his|strong="H3605"\w* \w servant|strong="H5650"\w* Ahijah \w the|strong="H3605"\w* \w Shilonite|strong="H7888"\w*; +\v 30 \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w sins|strong="H2403"\w* \w of|strong="H3068"\w* \w Jeroboam|strong="H3379"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w sinned|strong="H2398"\w*, \w and|strong="H3478"\w* \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w made|strong="H3478"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w sin|strong="H2403"\w*, \w because|strong="H5921"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w provocation|strong="H3708"\w* \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w provoked|strong="H3707"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w anger|strong="H3707"\w*. +\p +\v 31 \w Now|strong="H3117"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Nadab|strong="H5070"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*? +\v 32 \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w war|strong="H4421"\w* \w between|strong="H4421"\w* Asa \w and|strong="H3478"\w* \w Baasha|strong="H1201"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w days|strong="H3117"\w*. +\p +\v 33 \w In|strong="H8141"\w* \w the|strong="H3605"\w* \w third|strong="H7969"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* Asa \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w Baasha|strong="H1201"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahijah \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w in|strong="H8141"\w* \w Tirzah|strong="H8656"\w* \w for|strong="H5921"\w* \w twenty-four|strong="H6242"\w* \w years|strong="H8141"\w*. +\v 34 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w and|strong="H3478"\w* \w walked|strong="H3212"\w* \w in|strong="H3478"\w* \w the|strong="H6213"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w Jeroboam|strong="H3379"\w*, \w and|strong="H3478"\w* \w in|strong="H3478"\w* \w his|strong="H3068"\w* \w sin|strong="H2403"\w* \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w sin|strong="H2403"\w*. +\c 16 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jehu|strong="H3058"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hanani|strong="H2607"\w* \w against|strong="H5921"\w* \w Baasha|strong="H1201"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Because|strong="H5921"\w* \w I|strong="H5414"\w* \w exalted|strong="H7311"\w* \w you|strong="H5414"\w* \w out|strong="H4480"\w* \w of|strong="H1870"\w* \w the|strong="H5921"\w* \w dust|strong="H6083"\w* \w and|strong="H3478"\w* \w made|strong="H5414"\w* \w you|strong="H5414"\w* \w prince|strong="H5057"\w* \w over|strong="H5921"\w* \w my|strong="H5414"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w you|strong="H5414"\w* \w have|strong="H5971"\w* \w walked|strong="H3212"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w Jeroboam|strong="H3379"\w* \w and|strong="H3478"\w* \w have|strong="H5971"\w* \w made|strong="H5414"\w* \w my|strong="H5414"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w sin|strong="H2403"\w*, \w to|strong="H3478"\w* \w provoke|strong="H3707"\w* \w me|strong="H5414"\w* \w to|strong="H3478"\w* \w anger|strong="H3707"\w* \w with|strong="H5921"\w* \w their|strong="H5414"\w* \w sins|strong="H2403"\w*, +\v 3 \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H1121"\w* \w utterly|strong="H1197"\w* \w sweep|strong="H1197"\w* \w away|strong="H1197"\w* \w Baasha|strong="H1201"\w* \w and|strong="H1121"\w* \w his|strong="H5414"\w* \w house|strong="H1004"\w*; \w and|strong="H1121"\w* \w I|strong="H2005"\w* \w will|strong="H1121"\w* \w make|strong="H5414"\w* \w your|strong="H5414"\w* \w house|strong="H1004"\w* \w like|strong="H1004"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w*. +\v 4 \w The|strong="H4191"\w* \w dogs|strong="H3611"\w* \w will|strong="H5892"\w* eat \w Baasha|strong="H1201"\w*’s descendants \w who|strong="H1201"\w* \w die|strong="H4191"\w* \w in|strong="H4191"\w* \w the|strong="H4191"\w* \w city|strong="H5892"\w*; \w and|strong="H8064"\w* \w he|strong="H5892"\w* \w who|strong="H1201"\w* \w dies|strong="H4191"\w* \w of|strong="H5892"\w* \w his|strong="H4191"\w* \w in|strong="H4191"\w* \w the|strong="H4191"\w* \w field|strong="H7704"\w*, \w the|strong="H4191"\w* \w birds|strong="H5775"\w* \w of|strong="H5892"\w* \w the|strong="H4191"\w* \w sky|strong="H8064"\w* \w will|strong="H5892"\w* eat.” +\p +\v 5 \w Now|strong="H3117"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Baasha|strong="H1201"\w*, \w and|strong="H3478"\w* \w what|strong="H1697"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, \w and|strong="H3478"\w* \w his|strong="H5921"\w* \w might|strong="H1369"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*? +\v 6 \w Baasha|strong="H1201"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H8478"\w* fathers, \w and|strong="H1121"\w* \w was|strong="H1121"\w* \w buried|strong="H6912"\w* \w in|strong="H6912"\w* \w Tirzah|strong="H8656"\w*; \w and|strong="H1121"\w* Elah \w his|strong="H8478"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H6912"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\p +\v 7 \w Moreover|strong="H1571"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w by|strong="H3027"\w* \w the|strong="H3605"\w* \w prophet|strong="H5030"\w* \w Jehu|strong="H3058"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hanani|strong="H2607"\w* \w against|strong="H5921"\w* \w Baasha|strong="H1201"\w* \w and|strong="H1121"\w* \w against|strong="H5921"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*, \w both|strong="H1571"\w* \w because|strong="H5921"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w to|strong="H3068"\w* \w provoke|strong="H3707"\w* \w him|strong="H5921"\w* \w to|strong="H3068"\w* \w anger|strong="H3707"\w* \w with|strong="H1004"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w hands|strong="H3027"\w*, \w in|strong="H5921"\w* \w being|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w*, \w and|strong="H1121"\w* \w because|strong="H5921"\w* \w he|strong="H6213"\w* \w struck|strong="H5221"\w* \w him|strong="H5921"\w*. +\p +\v 8 \w In|strong="H8141"\w* \w the|strong="H5921"\w* \w twenty-sixth|strong="H6242"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* Asa \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, Elah \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Baasha|strong="H1201"\w* \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w in|strong="H8141"\w* \w Tirzah|strong="H8656"\w* \w for|strong="H5921"\w* \w two|strong="H4427"\w* \w years|strong="H8141"\w*. +\v 9 \w His|strong="H5921"\w* \w servant|strong="H5650"\w* \w Zimri|strong="H2174"\w*, \w captain|strong="H8269"\w* \w of|strong="H1004"\w* \w half|strong="H4276"\w* \w his|strong="H5921"\w* \w chariots|strong="H7393"\w*, \w conspired|strong="H7194"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*. \w Now|strong="H5921"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w in|strong="H5921"\w* \w Tirzah|strong="H8656"\w*, \w drinking|strong="H8354"\w* \w himself|strong="H1931"\w* \w drunk|strong="H8354"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* Arza, \w who|strong="H1931"\w* \w was|strong="H1931"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w household|strong="H1004"\w* \w in|strong="H5921"\w* \w Tirzah|strong="H8656"\w*; +\v 10 \w and|strong="H3063"\w* \w Zimri|strong="H2174"\w* \w went|strong="H3063"\w* \w in|strong="H8141"\w* \w and|strong="H3063"\w* \w struck|strong="H5221"\w* \w him|strong="H5221"\w* \w and|strong="H3063"\w* \w killed|strong="H5221"\w* \w him|strong="H5221"\w* \w in|strong="H8141"\w* \w the|strong="H5221"\w* \w twenty-seventh|strong="H6242"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* Asa \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w reigned|strong="H4427"\w* \w in|strong="H8141"\w* \w his|strong="H5221"\w* \w place|strong="H8478"\w*. +\p +\v 11 \w When|strong="H1961"\w* \w he|strong="H3605"\w* \w began|strong="H1961"\w* \w to|strong="H1961"\w* \w reign|strong="H4427"\w*, \w as|strong="H1961"\w* soon \w as|strong="H1961"\w* \w he|strong="H3605"\w* \w sat|strong="H3427"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w throne|strong="H3678"\w*, \w he|strong="H3605"\w* \w attacked|strong="H5221"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Baasha|strong="H1201"\w*. \w He|strong="H3605"\w* didn’t \w leave|strong="H7604"\w* \w him|strong="H5921"\w* \w a|strong="H3068"\w* single \w one|strong="H3605"\w* \w who|strong="H3605"\w* urinates \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w wall|strong="H7023"\w*\f + \fr 16:11 \ft or, male\f* \w among|strong="H5921"\w* \w his|strong="H3605"\w* \w relatives|strong="H1350"\w* \w or|strong="H3808"\w* \w his|strong="H3605"\w* \w friends|strong="H7453"\w*. +\v 12 \w Thus|strong="H1697"\w* \w Zimri|strong="H2174"\w* \w destroyed|strong="H8045"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Baasha|strong="H1201"\w*, \w according|strong="H3027"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w spoke|strong="H1696"\w* \w against|strong="H1696"\w* \w Baasha|strong="H1201"\w* \w by|strong="H3027"\w* \w Jehu|strong="H3058"\w* \w the|strong="H3605"\w* \w prophet|strong="H5030"\w*, +\v 13 \w for|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w sins|strong="H2403"\w* \w of|strong="H1121"\w* \w Baasha|strong="H1201"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w sins|strong="H2403"\w* \w of|strong="H1121"\w* Elah \w his|strong="H3605"\w* \w son|strong="H1121"\w*, \w which|strong="H3068"\w* \w they|strong="H3068"\w* \w sinned|strong="H2398"\w* \w and|strong="H1121"\w* \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w they|strong="H3068"\w* \w made|strong="H3478"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w sin|strong="H2403"\w*, \w to|strong="H3478"\w* \w provoke|strong="H3707"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w anger|strong="H3707"\w* \w with|strong="H3068"\w* \w their|strong="H3605"\w* \w vanities|strong="H1892"\w*. +\v 14 \w Now|strong="H3117"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* Elah, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*? +\p +\v 15 \w In|strong="H8141"\w* \w the|strong="H5921"\w* \w twenty-seventh|strong="H6242"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* Asa \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w Zimri|strong="H2174"\w* \w reigned|strong="H4427"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w* \w in|strong="H8141"\w* \w Tirzah|strong="H8656"\w*. \w Now|strong="H3117"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w were|strong="H5971"\w* \w encamped|strong="H2583"\w* \w against|strong="H5921"\w* \w Gibbethon|strong="H1405"\w*, \w which|strong="H5971"\w* belonged \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w Philistines|strong="H6430"\w*. +\v 16 \w The|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w encamped|strong="H2583"\w* \w heard|strong="H8085"\w* \w that|strong="H5971"\w* \w Zimri|strong="H2174"\w* \w had|strong="H3478"\w* \w conspired|strong="H7194"\w*, \w and|strong="H3478"\w* \w had|strong="H3478"\w* \w also|strong="H1571"\w* \w killed|strong="H5221"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. \w Therefore|strong="H5921"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w made|strong="H4427"\w* \w Omri|strong="H6018"\w*, \w the|strong="H3605"\w* \w captain|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w*, \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w*. +\v 17 \w Omri|strong="H6018"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5921"\w* \w Gibbethon|strong="H1405"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w*, \w and|strong="H3478"\w* \w they|strong="H5921"\w* \w besieged|strong="H6696"\w* \w Tirzah|strong="H8656"\w*. +\v 18 \w When|strong="H3588"\w* \w Zimri|strong="H2174"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w was|strong="H1961"\w* \w taken|strong="H3920"\w*, \w he|strong="H3588"\w* \w went|strong="H4428"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* fortified \w part|strong="H5921"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w* \w and|strong="H4428"\w* \w burned|strong="H8313"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w* \w over|strong="H5921"\w* \w him|strong="H5921"\w* \w with|strong="H8313"\w* fire, \w and|strong="H4428"\w* \w died|strong="H4191"\w*, +\v 19 \w for|strong="H5921"\w* \w his|strong="H3068"\w* \w sins|strong="H2403"\w* \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w sinned|strong="H2398"\w* \w in|strong="H5921"\w* \w doing|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w in|strong="H5921"\w* \w walking|strong="H3212"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w Jeroboam|strong="H3379"\w*, \w and|strong="H3478"\w* \w in|strong="H5921"\w* \w his|strong="H3068"\w* \w sin|strong="H2403"\w* \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w* \w to|strong="H3478"\w* \w make|strong="H6213"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w sin|strong="H2403"\w*. +\v 20 \w Now|strong="H3117"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Zimri|strong="H2174"\w*, \w and|strong="H3478"\w* \w his|strong="H5921"\w* \w treason|strong="H7195"\w* \w that|strong="H3117"\w* \w he|strong="H3117"\w* \w committed|strong="H3478"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*? +\p +\v 21 \w Then|strong="H1961"\w* \w the|strong="H1961"\w* \w people|strong="H5971"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w divided|strong="H2505"\w* \w into|strong="H1961"\w* \w two|strong="H4427"\w* \w parts|strong="H2677"\w*: \w half|strong="H2677"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w people|strong="H5971"\w* \w followed|strong="H1961"\w* \w Tibni|strong="H8402"\w* \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ginath|strong="H1527"\w*, \w to|strong="H3478"\w* \w make|strong="H4427"\w* \w him|strong="H4427"\w* \w king|strong="H4427"\w*, \w and|strong="H1121"\w* \w half|strong="H2677"\w* \w followed|strong="H1961"\w* \w Omri|strong="H6018"\w*. +\v 22 \w But|strong="H2388"\w* \w the|strong="H2388"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* followed \w Omri|strong="H6018"\w* \w prevailed|strong="H2388"\w* \w against|strong="H2388"\w* \w the|strong="H2388"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* followed \w Tibni|strong="H8402"\w* \w the|strong="H2388"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ginath|strong="H1527"\w*; \w so|strong="H4191"\w* \w Tibni|strong="H8402"\w* \w died|strong="H4191"\w*, \w and|strong="H1121"\w* \w Omri|strong="H6018"\w* \w reigned|strong="H4427"\w*. +\v 23 \w In|strong="H8141"\w* \w the|strong="H5921"\w* \w thirty-first|strong="H7970"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* Asa \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w Omri|strong="H6018"\w* \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w for|strong="H5921"\w* \w twelve|strong="H8147"\w* \w years|strong="H8141"\w*. \w He|strong="H8147"\w* \w reigned|strong="H4427"\w* \w six|strong="H8337"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Tirzah|strong="H8656"\w*. +\v 24 \w He|strong="H5921"\w* \w bought|strong="H7069"\w* \w the|strong="H5921"\w* \w hill|strong="H2022"\w* \w Samaria|strong="H8111"\w* \w of|strong="H5892"\w* \w Shemer|strong="H8106"\w* \w for|strong="H5921"\w* two \w talents|strong="H3603"\w*\f + \fr 16:24 \ft A talent is about 30 kilograms or 66 pounds.\f* \w of|strong="H5892"\w* \w silver|strong="H3701"\w*; \w and|strong="H3701"\w* \w he|strong="H5921"\w* \w built|strong="H1129"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w hill|strong="H2022"\w*, \w and|strong="H3701"\w* \w called|strong="H7121"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H5892"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w which|strong="H5892"\w* \w he|strong="H5921"\w* \w built|strong="H1129"\w*, \w Samaria|strong="H8111"\w*, \w after|strong="H5921"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H5892"\w* \w Shemer|strong="H8106"\w*, \w the|strong="H5921"\w* \w owner|strong="H7069"\w* \w of|strong="H5892"\w* \w the|strong="H5921"\w* \w hill|strong="H2022"\w*. +\v 25 \w Omri|strong="H6018"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w and|strong="H3068"\w* \w dealt|strong="H6213"\w* \w wickedly|strong="H7489"\w* \w above|strong="H6440"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H5869"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 26 \w For|strong="H3068"\w* \w he|strong="H3068"\w* \w walked|strong="H3212"\w* \w in|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w*, \w and|strong="H1121"\w* \w in|strong="H3478"\w* \w his|strong="H3605"\w* \w sins|strong="H2403"\w* \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w made|strong="H3478"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w sin|strong="H2403"\w*, \w to|strong="H3478"\w* \w provoke|strong="H3707"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w anger|strong="H3707"\w* \w with|strong="H3068"\w* \w their|strong="H3605"\w* \w vanities|strong="H1892"\w*. +\v 27 \w Now|strong="H3117"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Omri|strong="H6018"\w* \w which|strong="H1992"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, \w and|strong="H3478"\w* \w his|strong="H5921"\w* \w might|strong="H1369"\w* \w that|strong="H3117"\w* \w he|strong="H3117"\w* \w showed|strong="H6213"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*? +\v 28 So \w Omri|strong="H6018"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H8478"\w* fathers, \w and|strong="H1121"\w* \w was|strong="H1121"\w* \w buried|strong="H6912"\w* \w in|strong="H6912"\w* \w Samaria|strong="H8111"\w*; \w and|strong="H1121"\w* Ahab \w his|strong="H8478"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H6912"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\p +\v 29 \w In|strong="H8141"\w* \w the|strong="H5921"\w* \w thirty-eighth|strong="H7970"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* Asa \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, Ahab \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Omri|strong="H6018"\w* \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*. Ahab \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Omri|strong="H6018"\w* \w reigned|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w in|strong="H8141"\w* \w Samaria|strong="H8111"\w* \w twenty-two|strong="H6242"\w* \w years|strong="H8141"\w*. +\v 30 Ahab \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Omri|strong="H6018"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w* \w above|strong="H6440"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w were|strong="H1121"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 31 \w As|strong="H1961"\w* \w if|strong="H1961"\w* \w it|strong="H1961"\w* \w had|strong="H1961"\w* \w been|strong="H1961"\w* \w a|strong="H3068"\w* \w light|strong="H7043"\w* \w thing|strong="H7043"\w* \w for|strong="H1121"\w* \w him|strong="H3947"\w* \w to|strong="H3212"\w* \w walk|strong="H3212"\w* \w in|strong="H4428"\w* \w the|strong="H3947"\w* \w sins|strong="H2403"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w*, \w he|strong="H4428"\w* \w took|strong="H3947"\w* \w as|strong="H1961"\w* wife Jezebel \w the|strong="H3947"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* Ethbaal \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w Sidonians|strong="H6722"\w*, \w and|strong="H1121"\w* \w went|strong="H3212"\w* \w and|strong="H1121"\w* \w served|strong="H5647"\w* \w Baal|strong="H1168"\w* \w and|strong="H1121"\w* \w worshiped|strong="H7812"\w* \w him|strong="H3947"\w*. +\v 32 \w He|strong="H1004"\w* \w raised|strong="H6965"\w* \w up|strong="H6965"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w for|strong="H1004"\w* \w Baal|strong="H1168"\w* \w in|strong="H1004"\w* \w the|strong="H1129"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Baal|strong="H1168"\w*, \w which|strong="H1004"\w* \w he|strong="H1004"\w* \w had|strong="H1129"\w* \w built|strong="H1129"\w* \w in|strong="H1004"\w* \w Samaria|strong="H8111"\w*. +\v 33 Ahab \w made|strong="H6213"\w* \w the|strong="H3605"\w* Asherah; \w and|strong="H3478"\w* Ahab \w did|strong="H6213"\w* \w more|strong="H3254"\w* \w yet|strong="H3254"\w* \w to|strong="H3478"\w* \w provoke|strong="H3707"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w anger|strong="H3707"\w* \w than|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 34 \w In|strong="H3068"\w* \w his|strong="H3068"\w* \w days|strong="H3117"\w* \w Hiel|strong="H2419"\w* \w the|strong="H3068"\w* \w Bethelite|strong="H1017"\w* \w built|strong="H1129"\w* \w Jericho|strong="H3405"\w*. \w He|strong="H3117"\w* \w laid|strong="H3245"\w* \w its|strong="H3245"\w* \w foundation|strong="H3245"\w* \w with|strong="H3068"\w* \w the|strong="H3068"\w* loss \w of|strong="H1121"\w* Abiram \w his|strong="H3068"\w* \w firstborn|strong="H1060"\w*, \w and|strong="H1121"\w* \w set|strong="H5324"\w* \w up|strong="H1129"\w* \w its|strong="H3245"\w* \w gates|strong="H1817"\w* \w with|strong="H3068"\w* \w the|strong="H3068"\w* loss \w of|strong="H1121"\w* \w his|strong="H3068"\w* \w youngest|strong="H6810"\w* \w son|strong="H1121"\w* \w Segub|strong="H7687"\w*, \w according|strong="H3027"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w which|strong="H3068"\w* \w he|strong="H3117"\w* \w spoke|strong="H1696"\w* \w by|strong="H3027"\w* \w Joshua|strong="H3091"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w*. +\c 17 +\p +\v 1 Elijah \w the|strong="H6440"\w* \w Tishbite|strong="H8664"\w*, \w who|strong="H3068"\w* \w was|strong="H3068"\w* \w one|strong="H2416"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w settlers|strong="H8453"\w* \w of|strong="H3068"\w* \w Gilead|strong="H1568"\w*, \w said|strong="H1697"\w* \w to|strong="H3478"\w* Ahab, “\w As|strong="H1697"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w lives|strong="H2416"\w*, \w before|strong="H6440"\w* \w whom|strong="H6440"\w* \w I|strong="H3588"\w* \w stand|strong="H5975"\w*, \w there|strong="H1961"\w* \w shall|strong="H3068"\w* \w not|strong="H1961"\w* \w be|strong="H1961"\w* \w dew|strong="H2919"\w* \w nor|strong="H2919"\w* \w rain|strong="H4306"\w* \w these|strong="H6440"\w* \w years|strong="H8141"\w*, \w but|strong="H3588"\w* \w according|strong="H6310"\w* \w to|strong="H3478"\w* \w my|strong="H3068"\w* \w word|strong="H1697"\w*.” +\p +\v 2 \w Then|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w him|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 3 “\w Go|strong="H3212"\w* \w away|strong="H3212"\w* \w from|strong="H6440"\w* \w here|strong="H2088"\w*, \w turn|strong="H6437"\w* \w eastward|strong="H6924"\w*, \w and|strong="H3212"\w* \w hide|strong="H5641"\w* \w yourself|strong="H5921"\w* \w by|strong="H5921"\w* \w the|strong="H6440"\w* \w brook|strong="H5158"\w* \w Cherith|strong="H3747"\w*, \w that|strong="H2088"\w* \w is|strong="H2088"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w Jordan|strong="H3383"\w*. +\v 4 \w You|strong="H6680"\w* \w shall|strong="H5158"\w* \w drink|strong="H8354"\w* \w from|strong="H1961"\w* \w the|strong="H6680"\w* \w brook|strong="H5158"\w*. \w I|strong="H6680"\w* \w have|strong="H1961"\w* \w commanded|strong="H6680"\w* \w the|strong="H6680"\w* \w ravens|strong="H6158"\w* \w to|strong="H1961"\w* \w feed|strong="H3557"\w* \w you|strong="H6680"\w* \w there|strong="H8033"\w*.” +\v 5 \w So|strong="H6213"\w* \w he|strong="H6213"\w* \w went|strong="H3212"\w* \w and|strong="H3068"\w* \w did|strong="H6213"\w* \w according|strong="H5921"\w* \w to|strong="H3212"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w for|strong="H5921"\w* \w he|strong="H6213"\w* \w went|strong="H3212"\w* \w and|strong="H3068"\w* \w lived|strong="H3427"\w* \w by|strong="H5921"\w* \w the|strong="H6440"\w* \w brook|strong="H5158"\w* \w Cherith|strong="H3747"\w* \w that|strong="H3068"\w* \w is|strong="H3068"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w Jordan|strong="H3383"\w*. +\v 6 \w The|strong="H4480"\w* \w ravens|strong="H6158"\w* brought \w him|strong="H4480"\w* \w bread|strong="H3899"\w* \w and|strong="H3899"\w* \w meat|strong="H1320"\w* \w in|strong="H1320"\w* \w the|strong="H4480"\w* \w morning|strong="H1242"\w*, \w and|strong="H3899"\w* \w bread|strong="H3899"\w* \w and|strong="H3899"\w* \w meat|strong="H1320"\w* \w in|strong="H1320"\w* \w the|strong="H4480"\w* \w evening|strong="H6153"\w*; \w and|strong="H3899"\w* \w he|strong="H4480"\w* \w drank|strong="H8354"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w brook|strong="H5158"\w*. +\v 7 \w After|strong="H7093"\w* \w a|strong="H3068"\w* \w while|strong="H1961"\w*, \w the|strong="H3588"\w* \w brook|strong="H5158"\w* \w dried|strong="H3001"\w* \w up|strong="H3001"\w*, \w because|strong="H3588"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w rain|strong="H1653"\w* \w in|strong="H3117"\w* \w the|strong="H3588"\w* land. +\p +\v 8 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w him|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 9 “\w Arise|strong="H6965"\w*, \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w Zarephath|strong="H6886"\w*, \w which|strong="H8033"\w* belongs \w to|strong="H3212"\w* \w Sidon|strong="H6721"\w*, \w and|strong="H6965"\w* \w stay|strong="H3427"\w* \w there|strong="H8033"\w*. \w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w have|strong="H2009"\w* \w commanded|strong="H6680"\w* \w a|strong="H3068"\w* widow \w there|strong="H8033"\w* \w to|strong="H3212"\w* \w sustain|strong="H3557"\w* \w you|strong="H6680"\w*.” +\p +\v 10 \w So|strong="H3947"\w* \w he|strong="H8033"\w* \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Zarephath|strong="H6886"\w*; \w and|strong="H6965"\w* \w when|strong="H2009"\w* \w he|strong="H8033"\w* \w came|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H3947"\w* \w gate|strong="H6607"\w* \w of|strong="H5892"\w* \w the|strong="H3947"\w* \w city|strong="H5892"\w*, \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* widow \w was|strong="H5892"\w* \w there|strong="H8033"\w* \w gathering|strong="H7197"\w* \w sticks|strong="H6086"\w*. \w He|strong="H8033"\w* \w called|strong="H7121"\w* \w to|strong="H3212"\w* \w her|strong="H3947"\w* \w and|strong="H6965"\w* \w said|strong="H7121"\w*, “\w Please|strong="H4994"\w* \w get|strong="H3947"\w* \w me|strong="H4994"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w water|strong="H4325"\w* \w in|strong="H3212"\w* \w a|strong="H3068"\w* \w jar|strong="H3627"\w*, \w that|strong="H5892"\w* \w I|strong="H2009"\w* \w may|strong="H4994"\w* \w drink|strong="H8354"\w*.” +\p +\v 11 \w As|strong="H3947"\w* \w she|strong="H7121"\w* \w was|strong="H3027"\w* \w going|strong="H3212"\w* \w to|strong="H3212"\w* \w get|strong="H3947"\w* \w it|strong="H7121"\w*, \w he|strong="H3027"\w* \w called|strong="H7121"\w* \w to|strong="H3212"\w* \w her|strong="H3947"\w* \w and|strong="H3027"\w* \w said|strong="H7121"\w*, “\w Please|strong="H4994"\w* \w bring|strong="H3947"\w* \w me|strong="H4994"\w* \w a|strong="H3068"\w* \w morsel|strong="H6595"\w* \w of|strong="H3027"\w* \w bread|strong="H3899"\w* \w in|strong="H3212"\w* \w your|strong="H3947"\w* \w hand|strong="H3027"\w*.” +\p +\v 12 \w She|strong="H3588"\w* said, “\w As|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w lives|strong="H2416"\w*, \w I|strong="H3588"\w* don’t \w have|strong="H3426"\w* \w anything|strong="H6213"\w* baked, \w but|strong="H3588"\w* \w only|strong="H3588"\w* \w a|strong="H3068"\w* \w handful|strong="H4393"\w* \w of|strong="H1121"\w* \w meal|strong="H7058"\w* \w in|strong="H3068"\w* \w a|strong="H3068"\w* \w jar|strong="H3537"\w* \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w oil|strong="H8081"\w* \w in|strong="H3068"\w* \w a|strong="H3068"\w* \w jar|strong="H3537"\w*. \w Behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w gathering|strong="H7197"\w* \w two|strong="H8147"\w* \w sticks|strong="H6086"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H3068"\w* \w go|strong="H3068"\w* \w in|strong="H3068"\w* \w and|strong="H1121"\w* bake \w it|strong="H3588"\w* \w for|strong="H3588"\w* \w me|strong="H6213"\w* \w and|strong="H1121"\w* \w my|strong="H3068"\w* \w son|strong="H1121"\w*, \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w may|strong="H3068"\w* eat \w it|strong="H3588"\w*, \w and|strong="H1121"\w* \w die|strong="H4191"\w*.” +\p +\v 13 Elijah \w said|strong="H1697"\w* \w to|strong="H3318"\w* \w her|strong="H3318"\w*, “Don’t \w be|strong="H1697"\w* \w afraid|strong="H3372"\w*. \w Go|strong="H3318"\w* \w and|strong="H1121"\w* \w do|strong="H6213"\w* \w as|strong="H1697"\w* \w you|strong="H6213"\w* \w have|strong="H1121"\w* \w said|strong="H1697"\w*; \w but|strong="H7223"\w* \w make|strong="H6213"\w* \w me|strong="H6213"\w* \w a|strong="H3068"\w* \w little|strong="H6996"\w* \w cake|strong="H5692"\w* \w from|strong="H3318"\w* \w it|strong="H6213"\w* \w first|strong="H7223"\w*, \w and|strong="H1121"\w* \w bring|strong="H3318"\w* \w it|strong="H6213"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w me|strong="H6213"\w*, \w and|strong="H1121"\w* afterward \w make|strong="H6213"\w* \w some|strong="H8033"\w* \w for|strong="H6213"\w* \w you|strong="H6213"\w* \w and|strong="H1121"\w* \w for|strong="H6213"\w* \w your|strong="H6213"\w* \w son|strong="H1121"\w*. +\v 14 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*, ‘\w The|strong="H6440"\w* \w jar|strong="H3537"\w* \w of|strong="H3068"\w* \w meal|strong="H7058"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w run|strong="H2637"\w* \w out|strong="H5414"\w*, \w and|strong="H3478"\w* \w the|strong="H6440"\w* \w jar|strong="H3537"\w* \w of|strong="H3068"\w* \w oil|strong="H8081"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w fail|strong="H3615"\w*, \w until|strong="H5704"\w* \w the|strong="H6440"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w sends|strong="H5414"\w* \w rain|strong="H1653"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* earth.’” +\p +\v 15 \w She|strong="H1931"\w* \w went|strong="H3212"\w* \w and|strong="H3117"\w* \w did|strong="H6213"\w* according \w to|strong="H3212"\w* \w the|strong="H6213"\w* \w saying|strong="H1697"\w* \w of|strong="H1004"\w* Elijah; \w and|strong="H3117"\w* \w she|strong="H1931"\w*, \w he|strong="H1931"\w*, \w and|strong="H3117"\w* \w her|strong="H1931"\w* \w household|strong="H1004"\w* ate many \w days|strong="H3117"\w*. +\v 16 \w The|strong="H3068"\w* \w jar|strong="H3537"\w* \w of|strong="H3068"\w* \w meal|strong="H7058"\w* didn’t run \w out|strong="H3027"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w jar|strong="H3537"\w* \w of|strong="H3068"\w* \w oil|strong="H8081"\w* didn’t \w fail|strong="H3615"\w*, \w according|strong="H3027"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w spoke|strong="H1696"\w* \w by|strong="H3027"\w* \w Elijah|strong="H1696"\w*. +\p +\v 17 \w After|strong="H1961"\w* \w these|strong="H1004"\w* \w things|strong="H1697"\w*, \w the|strong="H5704"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5704"\w* \w woman|strong="H1004"\w*, \w the|strong="H5704"\w* \w mistress|strong="H1172"\w* \w of|strong="H1121"\w* \w the|strong="H5704"\w* \w house|strong="H1004"\w*, \w became|strong="H1961"\w* \w sick|strong="H2470"\w*; \w and|strong="H1121"\w* \w his|strong="H1961"\w* \w sickness|strong="H2483"\w* \w was|strong="H1961"\w* \w so|strong="H1961"\w* \w severe|strong="H2389"\w* \w that|strong="H1697"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w breath|strong="H5397"\w* \w left|strong="H3498"\w* \w in|strong="H1004"\w* \w him|strong="H5704"\w*. +\v 18 \w She|strong="H4100"\w* said \w to|strong="H4191"\w* Elijah, “\w What|strong="H4100"\w* \w have|strong="H1121"\w* \w I|strong="H4100"\w* \w to|strong="H4191"\w* \w do|strong="H4100"\w* \w with|strong="H4191"\w* \w you|strong="H4100"\w*, \w you|strong="H4100"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* God? \w You|strong="H4100"\w* \w have|strong="H1121"\w* \w come|strong="H2142"\w* \w to|strong="H4191"\w* \w me|strong="H4191"\w* \w to|strong="H4191"\w* \w bring|strong="H4191"\w* \w my|strong="H2142"\w* \w sin|strong="H5771"\w* \w to|strong="H4191"\w* memory, \w and|strong="H1121"\w* \w to|strong="H4191"\w* \w kill|strong="H4191"\w* \w my|strong="H2142"\w* \w son|strong="H1121"\w*!” +\p +\v 19 \w He|strong="H1931"\w* said \w to|strong="H5927"\w* \w her|strong="H5414"\w*, “\w Give|strong="H5414"\w* \w me|strong="H5414"\w* \w your|strong="H5414"\w* \w son|strong="H1121"\w*.” \w He|strong="H1931"\w* \w took|strong="H3947"\w* \w him|strong="H5414"\w* \w out|strong="H5414"\w* \w of|strong="H1121"\w* \w her|strong="H5414"\w* \w bosom|strong="H2436"\w*, \w and|strong="H1121"\w* \w carried|strong="H5927"\w* \w him|strong="H5414"\w* \w up|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H5921"\w* \w room|strong="H5944"\w* \w where|strong="H8033"\w* \w he|strong="H1931"\w* \w stayed|strong="H3427"\w*, \w and|strong="H1121"\w* \w laid|strong="H5414"\w* \w him|strong="H5414"\w* \w on|strong="H5921"\w* \w his|strong="H5414"\w* own \w bed|strong="H4296"\w*. +\v 20 \w He|strong="H3068"\w* \w cried|strong="H7121"\w* \w to|strong="H4191"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H1121"\w* \w said|strong="H7121"\w*, “\w Yahweh|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*, \w have|strong="H3068"\w* \w you|strong="H5921"\w* \w also|strong="H1571"\w* \w brought|strong="H7489"\w* \w evil|strong="H7489"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* widow \w with|strong="H5973"\w* \w whom|strong="H7121"\w* \w I|strong="H5921"\w* \w am|strong="H3068"\w* \w staying|strong="H1481"\w*, \w by|strong="H5921"\w* \w killing|strong="H4191"\w* \w her|strong="H5921"\w* \w son|strong="H1121"\w*?” +\p +\v 21 \w He|strong="H3068"\w* \w stretched|strong="H4058"\w* \w himself|strong="H5315"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w child|strong="H3206"\w* \w three|strong="H7969"\w* \w times|strong="H6471"\w*, \w and|strong="H3068"\w* \w cried|strong="H7121"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w said|strong="H7121"\w*, “\w Yahweh|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*, \w please|strong="H4994"\w* \w let|strong="H4994"\w* \w this|strong="H2088"\w* \w child|strong="H3206"\w*’s \w soul|strong="H5315"\w* \w come|strong="H7725"\w* \w into|strong="H7725"\w* \w him|strong="H7121"\w* \w again|strong="H7725"\w*.” +\p +\v 22 \w Yahweh|strong="H3068"\w* \w listened|strong="H8085"\w* \w to|strong="H7725"\w* \w the|strong="H5921"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* Elijah; \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w soul|strong="H5315"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w child|strong="H3206"\w* \w came|strong="H3068"\w* \w into|strong="H7725"\w* \w him|strong="H5921"\w* \w again|strong="H7725"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w revived|strong="H2421"\w*. +\v 23 Elijah \w took|strong="H3947"\w* \w the|strong="H7200"\w* \w child|strong="H3206"\w* \w and|strong="H1121"\w* \w brought|strong="H3947"\w* \w him|strong="H5414"\w* \w down|strong="H3381"\w* \w out|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w room|strong="H1004"\w* \w into|strong="H3381"\w* \w the|strong="H7200"\w* \w house|strong="H1004"\w*, \w and|strong="H1121"\w* \w delivered|strong="H5414"\w* \w him|strong="H5414"\w* \w to|strong="H3381"\w* \w his|strong="H5414"\w* mother; \w and|strong="H1121"\w* Elijah said, “\w Behold|strong="H7200"\w*, \w your|strong="H5414"\w* \w son|strong="H1121"\w* \w lives|strong="H2416"\w*.” +\p +\v 24 \w The|strong="H3588"\w* \w woman|strong="H2088"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* Elijah, “\w Now|strong="H6258"\w* \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H1697"\w* \w a|strong="H3068"\w* \w man|strong="H2088"\w* \w of|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w mouth|strong="H6310"\w* \w is|strong="H3068"\w* truth.” +\c 18 +\p +\v 1 \w After|strong="H5921"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* Elijah, \w in|strong="H8141"\w* \w the|strong="H6440"\w* \w third|strong="H7992"\w* \w year|strong="H8141"\w*, \w saying|strong="H1697"\w*, “\w Go|strong="H3212"\w*, \w show|strong="H7200"\w* \w yourself|strong="H5921"\w* \w to|strong="H3068"\w* Ahab; \w and|strong="H3068"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w send|strong="H5414"\w* \w rain|strong="H4306"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* earth.” +\p +\v 2 Elijah \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w show|strong="H7200"\w* himself \w to|strong="H3212"\w* Ahab. \w The|strong="H7200"\w* \w famine|strong="H7458"\w* \w was|strong="H7458"\w* \w severe|strong="H2389"\w* \w in|strong="H3212"\w* \w Samaria|strong="H8111"\w*. +\v 3 Ahab \w called|strong="H7121"\w* \w Obadiah|strong="H5662"\w*, \w who|strong="H3068"\w* \w was|strong="H3068"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w household|strong="H1004"\w*. (\w Now|strong="H1961"\w* \w Obadiah|strong="H5662"\w* \w feared|strong="H3373"\w* \w Yahweh|strong="H3068"\w* \w greatly|strong="H3966"\w*; +\v 4 \w for|strong="H3068"\w* \w when|strong="H1961"\w* Jezebel \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w Yahweh|strong="H3068"\w*’s \w prophets|strong="H5030"\w*, \w Obadiah|strong="H5662"\w* \w took|strong="H3947"\w* \w one|strong="H1961"\w* \w hundred|strong="H3967"\w* \w prophets|strong="H5030"\w*, \w and|strong="H3967"\w* \w hid|strong="H2244"\w* \w them|strong="H3947"\w* \w fifty|strong="H2572"\w* \w to|strong="H3068"\w* \w a|strong="H3068"\w* \w cave|strong="H4631"\w*, \w and|strong="H3967"\w* \w fed|strong="H3557"\w* \w them|strong="H3947"\w* \w with|strong="H3068"\w* \w bread|strong="H3899"\w* \w and|strong="H3967"\w* \w water|strong="H4325"\w*.) +\v 5 Ahab said \w to|strong="H3212"\w* \w Obadiah|strong="H5662"\w*, “\w Go|strong="H3212"\w* \w through|strong="H3212"\w* \w the|strong="H3605"\w* land, \w to|strong="H3212"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w springs|strong="H4599"\w* \w of|strong="H4325"\w* \w water|strong="H4325"\w*, \w and|strong="H3212"\w* \w to|strong="H3212"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w brooks|strong="H5158"\w*. Perhaps \w we|strong="H3068"\w* \w may|strong="H4325"\w* \w find|strong="H4672"\w* \w grass|strong="H2682"\w* \w and|strong="H3212"\w* \w save|strong="H2421"\w* \w the|strong="H3605"\w* \w horses|strong="H5483"\w* \w and|strong="H3212"\w* \w mules|strong="H6505"\w* \w alive|strong="H2421"\w*, \w that|strong="H3605"\w* \w we|strong="H3068"\w* \w not|strong="H3808"\w* \w lose|strong="H3772"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w animals|strong="H2421"\w*.” +\p +\v 6 \w So|strong="H1980"\w* \w they|strong="H1992"\w* \w divided|strong="H2505"\w* \w the|strong="H5674"\w* land \w between|strong="H5674"\w* \w them|strong="H1992"\w* \w to|strong="H1980"\w* \w pass|strong="H5674"\w* \w throughout|strong="H5674"\w* \w it|strong="H1980"\w*. Ahab \w went|strong="H1980"\w* one \w way|strong="H1870"\w* \w by|strong="H5674"\w* himself, \w and|strong="H1980"\w* \w Obadiah|strong="H5662"\w* \w went|strong="H1980"\w* another \w way|strong="H1870"\w* \w by|strong="H5674"\w* himself. +\v 7 \w As|strong="H1961"\w* \w Obadiah|strong="H5662"\w* \w was|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w*, \w behold|strong="H2009"\w*, Elijah \w met|strong="H7125"\w* \w him|strong="H6440"\w*. \w He|strong="H5921"\w* \w recognized|strong="H5234"\w* \w him|strong="H6440"\w*, \w and|strong="H6440"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w*, \w and|strong="H6440"\w* said, “\w Is|strong="H2088"\w* \w it|strong="H5921"\w* \w you|strong="H6440"\w*, \w my|strong="H5921"\w* lord Elijah?” +\p +\v 8 \w He|strong="H2009"\w* answered him, “\w It|strong="H2009"\w* \w is|strong="H2009"\w* \w I|strong="H2009"\w*. \w Go|strong="H3212"\w*, tell \w your|strong="H2009"\w* lord, ‘\w Behold|strong="H2009"\w*, Elijah \w is|strong="H2009"\w* \w here|strong="H2009"\w*!’” +\p +\v 9 \w He|strong="H3588"\w* said, “\w How|strong="H4100"\w* \w have|strong="H5650"\w* \w I|strong="H3588"\w* \w sinned|strong="H2398"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w would|strong="H4100"\w* \w deliver|strong="H5414"\w* \w your|strong="H5414"\w* \w servant|strong="H5650"\w* \w into|strong="H3027"\w* \w the|strong="H3588"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* Ahab, \w to|strong="H4191"\w* \w kill|strong="H4191"\w* \w me|strong="H5414"\w*? +\v 10 \w As|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w lives|strong="H2416"\w*, \w there|strong="H8033"\w* \w is|strong="H3068"\w* \w no|strong="H3808"\w* \w nation|strong="H1471"\w* \w or|strong="H3808"\w* \w kingdom|strong="H4467"\w* \w where|strong="H8033"\w* \w my|strong="H3068"\w* \w lord|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w sent|strong="H7971"\w* \w to|strong="H3068"\w* \w seek|strong="H1245"\w* \w you|strong="H3588"\w*. \w When|strong="H3588"\w* \w they|strong="H3588"\w* said, ‘\w He|strong="H3588"\w* \w is|strong="H3068"\w* \w not|strong="H3808"\w* \w here|strong="H8033"\w*,’ \w he|strong="H3588"\w* \w took|strong="H7650"\w* \w an|strong="H7971"\w* \w oath|strong="H7650"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w kingdom|strong="H4467"\w* \w and|strong="H3068"\w* \w nation|strong="H1471"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* didn’t \w find|strong="H4672"\w* \w you|strong="H3588"\w*. +\v 11 \w Now|strong="H6258"\w* \w you|strong="H3212"\w* say, ‘\w Go|strong="H3212"\w*, tell \w your|strong="H6258"\w* lord, “\w Behold|strong="H2009"\w*, Elijah \w is|strong="H2009"\w* \w here|strong="H2009"\w*.”’ +\v 12 \w It|strong="H5921"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w*, \w as|strong="H1961"\w* soon \w as|strong="H1961"\w* \w I|strong="H5921"\w* leave \w you|strong="H5921"\w*, \w that|strong="H3045"\w* \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w* \w will|strong="H3068"\w* \w carry|strong="H5375"\w* \w you|strong="H5921"\w* \w I|strong="H5921"\w* don’t \w know|strong="H3045"\w* \w where|strong="H5921"\w*; \w and|strong="H3068"\w* \w so|strong="H1961"\w* \w when|strong="H1961"\w* \w I|strong="H5921"\w* \w come|strong="H1961"\w* \w and|strong="H3068"\w* \w tell|strong="H5046"\w* Ahab, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w can|strong="H5650"\w*’t \w find|strong="H4672"\w* \w you|strong="H5921"\w*, \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w kill|strong="H2026"\w* \w me|strong="H5046"\w*. \w But|strong="H3808"\w* \w I|strong="H5921"\w*, \w your|strong="H3068"\w* \w servant|strong="H5650"\w*, \w have|strong="H1961"\w* \w feared|strong="H3372"\w* \w Yahweh|strong="H3068"\w* \w from|strong="H5921"\w* \w my|strong="H3068"\w* \w youth|strong="H5271"\w*. +\v 13 Wasn’t \w it|strong="H6213"\w* \w told|strong="H5046"\w* \w my|strong="H3068"\w* \w lord|strong="H3068"\w* \w what|strong="H6213"\w* \w I|strong="H3808"\w* \w did|strong="H6213"\w* \w when|strong="H6213"\w* Jezebel \w killed|strong="H2026"\w* \w Yahweh|strong="H3068"\w*’s \w prophets|strong="H5030"\w*, \w how|strong="H6213"\w* \w I|strong="H3808"\w* \w hid|strong="H2244"\w* \w one|strong="H3808"\w* \w hundred|strong="H3967"\w* \w men|strong="H6213"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w prophets|strong="H5030"\w* \w with|strong="H3068"\w* \w fifty|strong="H2572"\w* \w to|strong="H3068"\w* \w a|strong="H3068"\w* \w cave|strong="H4631"\w*, \w and|strong="H3967"\w* \w fed|strong="H3557"\w* \w them|strong="H6213"\w* \w with|strong="H3068"\w* \w bread|strong="H3899"\w* \w and|strong="H3967"\w* \w water|strong="H4325"\w*? +\v 14 \w Now|strong="H6258"\w* \w you|strong="H3212"\w* say, ‘\w Go|strong="H3212"\w*, tell \w your|strong="H2026"\w* lord, “\w Behold|strong="H2009"\w*, Elijah \w is|strong="H2009"\w* \w here|strong="H2009"\w*”.’ \w He|strong="H2009"\w* will \w kill|strong="H2026"\w* \w me|strong="H2026"\w*.” +\p +\v 15 Elijah said, “\w As|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w lives|strong="H2416"\w*, \w before|strong="H6440"\w* \w whom|strong="H6440"\w* \w I|strong="H3588"\w* \w stand|strong="H5975"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w surely|strong="H3588"\w* \w show|strong="H7200"\w* myself \w to|strong="H3068"\w* \w him|strong="H6440"\w* \w today|strong="H3117"\w*.” +\v 16 So \w Obadiah|strong="H5662"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w meet|strong="H7125"\w* Ahab, \w and|strong="H3212"\w* \w told|strong="H5046"\w* \w him|strong="H5046"\w*; \w and|strong="H3212"\w* Ahab \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w meet|strong="H7125"\w* Elijah. +\p +\v 17 \w When|strong="H1961"\w* Ahab \w saw|strong="H7200"\w* Elijah, Ahab said \w to|strong="H3478"\w* \w him|strong="H7200"\w*, “\w Is|strong="H2088"\w* \w that|strong="H7200"\w* \w you|strong="H7200"\w*, \w you|strong="H7200"\w* \w troubler|strong="H5916"\w* \w of|strong="H7200"\w* \w Israel|strong="H3478"\w*?” +\p +\v 18 \w He|strong="H3588"\w* answered, “\w I|strong="H3588"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w troubled|strong="H5916"\w* \w Israel|strong="H3478"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w and|strong="H3478"\w* \w your|strong="H3068"\w* father’s \w house|strong="H1004"\w*, \w in|strong="H3478"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w Yahweh|strong="H3068"\w*’s \w commandments|strong="H4687"\w* \w and|strong="H3478"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w followed|strong="H3212"\w* \w the|strong="H3588"\w* \w Baals|strong="H1168"\w*. +\v 19 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w send|strong="H7971"\w*, \w and|strong="H3967"\w* \w gather|strong="H6908"\w* \w to|strong="H3478"\w* \w me|strong="H7971"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w Mount|strong="H2022"\w* \w Carmel|strong="H3760"\w*, \w and|strong="H3967"\w* four \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w* \w of|strong="H2022"\w* \w Baal|strong="H1168"\w*, \w and|strong="H3967"\w* four \w hundred|strong="H3967"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* Asherah, \w who|strong="H3605"\w* eat \w at|strong="H3478"\w* Jezebel’s \w table|strong="H7979"\w*.” +\p +\v 20 \w So|strong="H7971"\w* Ahab \w sent|strong="H7971"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w gathered|strong="H6908"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w* \w together|strong="H6908"\w* \w to|strong="H3478"\w* \w Mount|strong="H2022"\w* \w Carmel|strong="H3760"\w*. +\v 21 Elijah \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w and|strong="H3068"\w* \w said|strong="H1697"\w*, “\w How|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H3068"\w* \w you|strong="H3605"\w* waver \w between|strong="H5704"\w* \w the|strong="H3605"\w* \w two|strong="H8147"\w* sides? If \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w God|strong="H3068"\w*, \w follow|strong="H3212"\w* \w him|strong="H5921"\w*; \w but|strong="H3808"\w* if \w Baal|strong="H1168"\w*, \w then|strong="H6030"\w* \w follow|strong="H3212"\w* \w him|strong="H5921"\w*.” +\p \w The|strong="H3605"\w* \w people|strong="H5971"\w* didn’t \w say|strong="H1697"\w* \w a|strong="H3068"\w* \w word|strong="H1697"\w*. +\p +\v 22 \w Then|strong="H3068"\w* Elijah said \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w*, “\w I|strong="H3068"\w*, \w even|strong="H3068"\w* \w I|strong="H3068"\w* only, \w am|strong="H3068"\w* \w left|strong="H3498"\w* \w as|strong="H3068"\w* \w a|strong="H3068"\w* \w prophet|strong="H5030"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*; \w but|strong="H3498"\w* \w Baal|strong="H1168"\w*’s \w prophets|strong="H5030"\w* \w are|strong="H5971"\w* four \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w* \w men|strong="H5971"\w*. +\v 23 \w Let|strong="H5414"\w* \w them|strong="H5414"\w* \w therefore|strong="H5921"\w* \w give|strong="H5414"\w* \w us|strong="H5414"\w* \w two|strong="H8147"\w* \w bulls|strong="H6499"\w*; \w and|strong="H6086"\w* \w let|strong="H5414"\w* \w them|strong="H5414"\w* choose \w one|strong="H3808"\w* \w bull|strong="H6499"\w* \w for|strong="H5921"\w* \w themselves|strong="H1992"\w*, \w and|strong="H6086"\w* \w cut|strong="H5408"\w* \w it|strong="H5414"\w* \w in|strong="H5921"\w* \w pieces|strong="H5408"\w*, \w and|strong="H6086"\w* \w lay|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wood|strong="H6086"\w*, \w and|strong="H6086"\w* \w put|strong="H5414"\w* \w no|strong="H3808"\w* fire \w under|strong="H5921"\w*; \w and|strong="H6086"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w dress|strong="H6213"\w* \w the|strong="H5921"\w* \w other|strong="H8147"\w* \w bull|strong="H6499"\w*, \w and|strong="H6086"\w* \w lay|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wood|strong="H6086"\w*, \w and|strong="H6086"\w* \w put|strong="H5414"\w* \w no|strong="H3808"\w* fire \w under|strong="H5921"\w* \w it|strong="H5414"\w*. +\v 24 \w You|strong="H3605"\w* \w call|strong="H7121"\w* \w on|strong="H3068"\w* \w the|strong="H3605"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w god|strong="H3068"\w*, \w and|strong="H3068"\w* \w I|strong="H1697"\w* \w will|strong="H3068"\w* \w call|strong="H7121"\w* \w on|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*. \w The|strong="H3605"\w* \w God|strong="H3068"\w* \w who|strong="H3605"\w* \w answers|strong="H6030"\w* \w by|strong="H3068"\w* fire, \w let|strong="H1961"\w* \w him|strong="H7121"\w* \w be|strong="H1961"\w* \w God|strong="H3068"\w*.” +\p \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w answered|strong="H6030"\w*, “\w What|strong="H1697"\w* \w you|strong="H3605"\w* \w say|strong="H1697"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w*.” +\p +\v 25 Elijah \w said|strong="H7121"\w* \w to|strong="H6213"\w* \w the|strong="H3588"\w* \w prophets|strong="H5030"\w* \w of|strong="H8034"\w* \w Baal|strong="H1168"\w*, “Choose \w one|strong="H3808"\w* \w bull|strong="H6499"\w* \w for|strong="H3588"\w* yourselves, \w and|strong="H6499"\w* \w dress|strong="H6213"\w* \w it|strong="H7760"\w* \w first|strong="H7223"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H5030"\w* \w many|strong="H7227"\w*; \w and|strong="H6499"\w* \w call|strong="H7121"\w* \w on|strong="H7760"\w* \w the|strong="H3588"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w your|strong="H7760"\w* \w god|strong="H3808"\w*, \w but|strong="H3588"\w* \w put|strong="H7760"\w* \w no|strong="H3808"\w* fire \w under|strong="H6213"\w* \w it|strong="H7760"\w*.” +\p +\v 26 \w They|strong="H5921"\w* \w took|strong="H3947"\w* \w the|strong="H5921"\w* \w bull|strong="H6499"\w* \w which|strong="H4196"\w* \w was|strong="H8034"\w* \w given|strong="H5414"\w* \w them|strong="H5414"\w*, \w and|strong="H6030"\w* \w they|strong="H5921"\w* \w dressed|strong="H6213"\w* \w it|strong="H5414"\w*, \w and|strong="H6030"\w* \w called|strong="H7121"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H6963"\w* \w Baal|strong="H1168"\w* \w from|strong="H5921"\w* \w morning|strong="H1242"\w* \w even|strong="H5704"\w* \w until|strong="H5704"\w* \w noon|strong="H6672"\w*, \w saying|strong="H6963"\w*, “\w Baal|strong="H1168"\w*, \w hear|strong="H6030"\w* \w us|strong="H5414"\w*!” \w But|strong="H6030"\w* \w there|strong="H5704"\w* \w was|strong="H8034"\w* \w no|strong="H6213"\w* \w voice|strong="H6963"\w*, \w and|strong="H6030"\w* nobody \w answered|strong="H6030"\w*. \w They|strong="H5921"\w* \w leaped|strong="H6452"\w* \w about|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w which|strong="H4196"\w* \w was|strong="H8034"\w* \w made|strong="H6213"\w*. +\p +\v 27 \w At|strong="H1961"\w* \w noon|strong="H6672"\w*, Elijah \w mocked|strong="H2048"\w* \w them|strong="H7121"\w*, \w and|strong="H1419"\w* \w said|strong="H7121"\w*, “\w Cry|strong="H7121"\w* \w aloud|strong="H6963"\w*, \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* god. \w Either|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w deep|strong="H1419"\w* \w in|strong="H1419"\w* thought, \w or|strong="H1419"\w* \w he|strong="H1931"\w* \w has|strong="H1961"\w* \w gone|strong="H1961"\w* somewhere, \w or|strong="H1419"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w on|strong="H1870"\w* \w a|strong="H3068"\w* \w journey|strong="H1870"\w*, \w or|strong="H1419"\w* \w perhaps|strong="H3588"\w* \w he|strong="H1931"\w* sleeps \w and|strong="H1419"\w* must \w be|strong="H1961"\w* \w awakened|strong="H3364"\w*.” +\p +\v 28 \w They|strong="H5921"\w* \w cried|strong="H7121"\w* \w aloud|strong="H6963"\w*, \w and|strong="H1419"\w* \w cut|strong="H1413"\w* \w themselves|strong="H7121"\w* \w in|strong="H5921"\w* \w their|strong="H5921"\w* \w way|strong="H4941"\w* \w with|strong="H5921"\w* \w knives|strong="H2719"\w* \w and|strong="H1419"\w* \w lances|strong="H7420"\w* \w until|strong="H5704"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w gushed|strong="H8210"\w* \w out|strong="H8210"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 29 \w When|strong="H1961"\w* \w midday|strong="H6672"\w* \w was|strong="H1961"\w* \w past|strong="H5674"\w*, \w they|strong="H5704"\w* \w prophesied|strong="H5012"\w* \w until|strong="H5704"\w* \w the|strong="H5704"\w* \w time|strong="H5704"\w* \w of|strong="H6963"\w* \w the|strong="H5704"\w* evening \w offering|strong="H4503"\w*; \w but|strong="H1961"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H5927"\w* \w voice|strong="H6963"\w*, \w no|strong="H5927"\w* \w answer|strong="H6030"\w*, \w and|strong="H6030"\w* nobody \w paid|strong="H7182"\w* \w attention|strong="H7182"\w*. +\p +\v 30 Elijah said \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, “\w Come|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H3068"\w* \w me|strong="H5066"\w*!”; \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H3068"\w* \w him|strong="H3605"\w*. \w He|strong="H3068"\w* \w repaired|strong="H7495"\w* \w Yahweh|strong="H3068"\w*’s \w altar|strong="H4196"\w* \w that|strong="H5971"\w* \w had|strong="H3068"\w* \w been|strong="H5971"\w* \w thrown|strong="H2040"\w* \w down|strong="H2040"\w*. +\v 31 Elijah \w took|strong="H3947"\w* \w twelve|strong="H8147"\w* stones, according \w to|strong="H3478"\w* \w the|strong="H3947"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w tribes|strong="H7626"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jacob|strong="H3290"\w*, \w to|strong="H3478"\w* whom \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w*, \w saying|strong="H1697"\w*, “\w Israel|strong="H3478"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w*.” +\v 32 \w With|strong="H1004"\w* \w the|strong="H6213"\w* stones \w he|strong="H6213"\w* \w built|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*. \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w trench|strong="H8585"\w* \w around|strong="H5439"\w* \w the|strong="H6213"\w* \w altar|strong="H4196"\w* \w large|strong="H1004"\w* \w enough|strong="H6213"\w* \w to|strong="H3068"\w* \w contain|strong="H1004"\w* \w two|strong="H6213"\w* \w seahs|strong="H5429"\w*\f + \fr 18:32 \ft 1 seah is about 7 liters or 1.9 gallons or 0.8 pecks\f* \w of|strong="H1004"\w* \w seed|strong="H2233"\w*. +\v 33 \w He|strong="H5921"\w* \w put|strong="H7760"\w* \w the|strong="H5921"\w* \w wood|strong="H6086"\w* \w in|strong="H5921"\w* \w order|strong="H6186"\w*, \w and|strong="H6086"\w* \w cut|strong="H5408"\w* \w the|strong="H5921"\w* \w bull|strong="H6499"\w* \w in|strong="H5921"\w* \w pieces|strong="H5408"\w* \w and|strong="H6086"\w* \w laid|strong="H7760"\w* \w it|strong="H7760"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wood|strong="H6086"\w*. \w He|strong="H5921"\w* said, “Fill four jars \w with|strong="H5921"\w* water, \w and|strong="H6086"\w* pour \w it|strong="H7760"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* burnt offering \w and|strong="H6086"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wood|strong="H6086"\w*.” +\v 34 \w He|strong="H5921"\w* said, “\w Do|strong="H8138"\w* \w it|strong="H5921"\w* \w a|strong="H3068"\w* \w second|strong="H8138"\w* \w time|strong="H8138"\w*;” \w and|strong="H6086"\w* \w they|strong="H5921"\w* \w did|strong="H5930"\w* \w it|strong="H5921"\w* \w the|strong="H5921"\w* \w second|strong="H8138"\w* \w time|strong="H8138"\w*. \w He|strong="H5921"\w* said, “\w Do|strong="H8138"\w* \w it|strong="H5921"\w* \w a|strong="H3068"\w* \w third|strong="H8027"\w* \w time|strong="H8138"\w*;” \w and|strong="H6086"\w* \w they|strong="H5921"\w* \w did|strong="H5930"\w* \w it|strong="H5921"\w* \w the|strong="H5921"\w* \w third|strong="H8027"\w* \w time|strong="H8138"\w*. +\v 35 \w The|strong="H4390"\w* \w water|strong="H4325"\w* \w ran|strong="H3212"\w* \w around|strong="H5439"\w* \w the|strong="H4390"\w* \w altar|strong="H4196"\w*; \w and|strong="H3212"\w* \w he|strong="H4325"\w* \w also|strong="H1571"\w* \w filled|strong="H4390"\w* \w the|strong="H4390"\w* \w trench|strong="H8585"\w* \w with|strong="H4390"\w* \w water|strong="H4325"\w*. +\p +\v 36 \w At|strong="H3478"\w* \w the|strong="H3605"\w* \w time|strong="H3117"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w evening|strong="H3117"\w* \w offering|strong="H4503"\w*, Elijah \w the|strong="H3605"\w* \w prophet|strong="H5030"\w* \w came|strong="H1961"\w* \w near|strong="H5066"\w* \w and|strong="H3478"\w* \w said|strong="H1697"\w*, “\w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* Abraham, \w of|strong="H3068"\w* \w Isaac|strong="H3327"\w*, \w and|strong="H3478"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w let|strong="H1961"\w* \w it|strong="H3588"\w* \w be|strong="H1961"\w* \w known|strong="H3045"\w* \w today|strong="H3117"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H3117"\w* \w God|strong="H3068"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w* \w and|strong="H3478"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w*, \w and|strong="H3478"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w done|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* \w things|strong="H1697"\w* \w at|strong="H3478"\w* \w your|strong="H3068"\w* \w word|strong="H1697"\w*. +\v 37 \w Hear|strong="H6030"\w* \w me|strong="H5437"\w*, \w Yahweh|strong="H3068"\w*, \w hear|strong="H6030"\w* \w me|strong="H5437"\w*, \w that|strong="H3588"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w may|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w are|strong="H5971"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w turned|strong="H5437"\w* \w their|strong="H3068"\w* \w heart|strong="H3820"\w* \w back|strong="H5437"\w* \w again|strong="H5437"\w*.” +\p +\v 38 \w Then|strong="H5307"\w* \w Yahweh|strong="H3068"\w*’s fire \w fell|strong="H5307"\w* \w and|strong="H3068"\w* consumed \w the|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w the|strong="H3068"\w* \w wood|strong="H6086"\w*, \w the|strong="H3068"\w* stones, \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w dust|strong="H6083"\w*; \w and|strong="H3068"\w* \w it|strong="H3068"\w* \w licked|strong="H3897"\w* \w up|strong="H3897"\w* \w the|strong="H3068"\w* \w water|strong="H4325"\w* \w that|strong="H3068"\w* \w was|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w trench|strong="H8585"\w*. +\v 39 \w When|strong="H7200"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w saw|strong="H7200"\w* \w it|strong="H1931"\w*, \w they|strong="H3068"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w their|strong="H3605"\w* \w faces|strong="H6440"\w*. \w They|strong="H3068"\w* said, “\w Yahweh|strong="H3068"\w*, \w he|strong="H1931"\w* \w is|strong="H3068"\w* \w God|strong="H3068"\w*! \w Yahweh|strong="H3068"\w*, \w he|strong="H1931"\w* \w is|strong="H3068"\w* \w God|strong="H3068"\w*!” +\p +\v 40 Elijah said \w to|strong="H3381"\w* \w them|strong="H1992"\w*, “\w Seize|strong="H8610"\w* \w the|strong="H7819"\w* \w prophets|strong="H5030"\w* \w of|strong="H5158"\w* \w Baal|strong="H1168"\w*! Don’t \w let|strong="H3381"\w* \w one|strong="H4422"\w* \w of|strong="H5158"\w* \w them|strong="H1992"\w* \w escape|strong="H4422"\w*!” +\p \w They|strong="H1992"\w* \w seized|strong="H8610"\w* \w them|strong="H1992"\w*; \w and|strong="H8033"\w* Elijah \w brought|strong="H3381"\w* \w them|strong="H1992"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H7819"\w* \w brook|strong="H5158"\w* \w Kishon|strong="H7028"\w*, \w and|strong="H8033"\w* \w killed|strong="H7819"\w* \w them|strong="H1992"\w* \w there|strong="H8033"\w*. +\p +\v 41 Elijah said \w to|strong="H5927"\w* Ahab, “\w Get|strong="H5927"\w* \w up|strong="H5927"\w*, eat \w and|strong="H6963"\w* \w drink|strong="H8354"\w*; \w for|strong="H3588"\w* \w there|strong="H5927"\w* \w is|strong="H6963"\w* \w the|strong="H3588"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w abundance|strong="H1995"\w* \w of|strong="H6963"\w* \w rain|strong="H1653"\w*.” +\p +\v 42 \w So|strong="H5927"\w* Ahab \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* eat \w and|strong="H7218"\w* \w to|strong="H5927"\w* \w drink|strong="H8354"\w*. Elijah \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H6440"\w* \w top|strong="H7218"\w* \w of|strong="H7218"\w* \w Carmel|strong="H3760"\w*; \w and|strong="H7218"\w* \w he|strong="H6440"\w* bowed \w himself|strong="H8354"\w* \w down|strong="H7760"\w* \w on|strong="H7760"\w* \w the|strong="H6440"\w* \w earth|strong="H5927"\w*, \w and|strong="H7218"\w* \w put|strong="H7760"\w* \w his|strong="H7760"\w* \w face|strong="H6440"\w* between \w his|strong="H7760"\w* \w knees|strong="H1290"\w*. +\v 43 \w He|strong="H7725"\w* said \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w servant|strong="H5288"\w*, “\w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w now|strong="H4994"\w* \w and|strong="H7725"\w* \w look|strong="H5027"\w* \w toward|strong="H1870"\w* \w the|strong="H7725"\w* \w sea|strong="H3220"\w*.” +\p \w He|strong="H7725"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H7725"\w* \w looked|strong="H5027"\w*, \w then|strong="H7725"\w* said, “\w There|strong="H5927"\w* \w is|strong="H1870"\w* \w nothing|strong="H3972"\w*.” +\p \w He|strong="H7725"\w* said, “\w Go|strong="H5927"\w* \w again|strong="H7725"\w*” \w seven|strong="H7651"\w* \w times|strong="H6471"\w*. +\p +\v 44 \w On|strong="H1961"\w* \w the|strong="H5927"\w* \w seventh|strong="H7637"\w* \w time|strong="H1961"\w*, \w he|strong="H3808"\w* said, “\w Behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w small|strong="H6996"\w* \w cloud|strong="H5645"\w*, \w like|strong="H1961"\w* \w a|strong="H3068"\w* man’s \w hand|strong="H3709"\w*, \w is|strong="H2009"\w* \w rising|strong="H5927"\w* \w out|strong="H3381"\w* \w of|strong="H3709"\w* \w the|strong="H5927"\w* \w sea|strong="H3220"\w*.” +\p \w He|strong="H3808"\w* said, “\w Go|strong="H5927"\w* \w up|strong="H5927"\w*, tell Ahab, ‘\w Get|strong="H5927"\w* ready \w and|strong="H5927"\w* \w go|strong="H5927"\w* \w down|strong="H3381"\w*, \w so|strong="H1961"\w* \w that|strong="H3808"\w* \w the|strong="H5927"\w* \w rain|strong="H1653"\w* doesn’t \w stop|strong="H3808"\w* \w you|strong="H3808"\w*.’” +\p +\v 45 \w In|strong="H3212"\w* \w a|strong="H3068"\w* \w little|strong="H5704"\w* \w while|strong="H5704"\w*, \w the|strong="H3541"\w* \w sky|strong="H8064"\w* \w grew|strong="H6937"\w* \w black|strong="H6937"\w* \w with|strong="H3212"\w* \w clouds|strong="H5645"\w* \w and|strong="H8064"\w* \w wind|strong="H7307"\w*, \w and|strong="H8064"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w rain|strong="H1653"\w*. Ahab \w rode|strong="H7392"\w*, \w and|strong="H8064"\w* \w went|strong="H3212"\w* \w to|strong="H5704"\w* \w Jezreel|strong="H3157"\w*. +\v 46 \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w was|strong="H3068"\w* \w on|strong="H3027"\w* Elijah; \w and|strong="H3068"\w* \w he|strong="H5704"\w* tucked \w his|strong="H3068"\w* cloak \w into|strong="H3027"\w* \w his|strong="H3068"\w* belt \w and|strong="H3068"\w* \w ran|strong="H7323"\w* \w before|strong="H6440"\w* Ahab \w to|strong="H5704"\w* \w the|strong="H6440"\w* entrance \w of|strong="H3068"\w* \w Jezreel|strong="H3157"\w*. +\c 19 +\p +\v 1 Ahab \w told|strong="H5046"\w* Jezebel \w all|strong="H3605"\w* \w that|strong="H3605"\w* Elijah \w had|strong="H5030"\w* \w done|strong="H6213"\w*, \w and|strong="H2719"\w* \w how|strong="H6213"\w* \w he|strong="H6213"\w* \w had|strong="H5030"\w* \w killed|strong="H2026"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w* \w with|strong="H6213"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*. +\v 2 \w Then|strong="H7971"\w* Jezebel \w sent|strong="H7971"\w* \w a|strong="H3068"\w* \w messenger|strong="H4397"\w* \w to|strong="H7971"\w* Elijah, saying, “\w So|strong="H6213"\w* \w let|strong="H7971"\w* \w the|strong="H3588"\w* gods \w do|strong="H6213"\w* \w to|strong="H7971"\w* \w me|strong="H7971"\w*, \w and|strong="H7971"\w* \w more|strong="H3254"\w* \w also|strong="H3541"\w*, \w if|strong="H3588"\w* \w I|strong="H3588"\w* don’t \w make|strong="H6213"\w* \w your|strong="H7760"\w* \w life|strong="H5315"\w* \w as|strong="H6213"\w* \w the|strong="H3588"\w* \w life|strong="H5315"\w* \w of|strong="H6256"\w* \w one|strong="H6213"\w* \w of|strong="H6256"\w* \w them|strong="H1992"\w* \w by|strong="H7971"\w* \w tomorrow|strong="H4279"\w* \w about|strong="H6213"\w* \w this|strong="H6213"\w* \w time|strong="H6256"\w*!” +\p +\v 3 \w When|strong="H7200"\w* \w he|strong="H8033"\w* \w saw|strong="H7200"\w* \w that|strong="H7200"\w*, \w he|strong="H8033"\w* \w arose|strong="H6965"\w* \w and|strong="H3063"\w* \w ran|strong="H3212"\w* \w for|strong="H5315"\w* \w his|strong="H7200"\w* \w life|strong="H5315"\w*, \w and|strong="H3063"\w* \w came|strong="H3212"\w* \w to|strong="H3212"\w* Beersheba, \w which|strong="H8033"\w* belongs \w to|strong="H3212"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w left|strong="H3240"\w* \w his|strong="H7200"\w* \w servant|strong="H5288"\w* \w there|strong="H8033"\w*. +\v 4 \w But|strong="H3588"\w* \w he|strong="H1931"\w* \w himself|strong="H5315"\w* \w went|strong="H1980"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w*’s \w journey|strong="H1870"\w* \w into|strong="H1980"\w* \w the|strong="H3588"\w* \w wilderness|strong="H4057"\w*, \w and|strong="H1980"\w* \w came|strong="H1980"\w* \w and|strong="H1980"\w* \w sat|strong="H3427"\w* \w down|strong="H3427"\w* \w under|strong="H8478"\w* \w a|strong="H3068"\w* \w juniper|strong="H7574"\w* \w tree|strong="H7574"\w*. \w Then|strong="H1980"\w* \w he|strong="H1931"\w* \w requested|strong="H7592"\w* \w for|strong="H3588"\w* \w himself|strong="H5315"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w might|strong="H3068"\w* \w die|strong="H4191"\w*, \w and|strong="H1980"\w* said, “\w It|strong="H1931"\w* \w is|strong="H3068"\w* \w enough|strong="H7227"\w*. \w Now|strong="H6258"\w*, \w O|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w take|strong="H3947"\w* \w away|strong="H3947"\w* \w my|strong="H3068"\w* \w life|strong="H5315"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w not|strong="H3808"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w my|strong="H3068"\w* fathers.” +\p +\v 5 \w He|strong="H4397"\w* \w lay|strong="H7901"\w* \w down|strong="H7901"\w* \w and|strong="H6965"\w* \w slept|strong="H7901"\w* \w under|strong="H8478"\w* \w a|strong="H3068"\w* \w juniper|strong="H7574"\w* \w tree|strong="H7574"\w*; \w and|strong="H6965"\w* \w behold|strong="H2009"\w*, \w an|strong="H6965"\w* \w angel|strong="H4397"\w* \w touched|strong="H5060"\w* \w him|strong="H8478"\w*, \w and|strong="H6965"\w* said \w to|strong="H4397"\w* \w him|strong="H8478"\w*, “\w Arise|strong="H6965"\w* \w and|strong="H6965"\w* eat!” +\p +\v 6 \w He|strong="H7725"\w* \w looked|strong="H5027"\w*, \w and|strong="H7725"\w* \w behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w was|strong="H4325"\w* \w at|strong="H7725"\w* \w his|strong="H7725"\w* \w head|strong="H4763"\w* \w a|strong="H3068"\w* \w cake|strong="H5692"\w* baked \w on|strong="H5027"\w* \w the|strong="H7725"\w* \w coals|strong="H7529"\w*, \w and|strong="H7725"\w* \w a|strong="H3068"\w* \w jar|strong="H6835"\w* \w of|strong="H4325"\w* \w water|strong="H4325"\w*. \w He|strong="H7725"\w* ate \w and|strong="H7725"\w* \w drank|strong="H8354"\w*, \w and|strong="H7725"\w* \w lay|strong="H7901"\w* \w down|strong="H7901"\w* \w again|strong="H7725"\w*. +\v 7 \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w came|strong="H5060"\w* \w again|strong="H7725"\w* \w the|strong="H3588"\w* \w second|strong="H8145"\w* \w time|strong="H8145"\w*, \w and|strong="H6965"\w* \w touched|strong="H5060"\w* \w him|strong="H7725"\w*, \w and|strong="H6965"\w* said, “\w Arise|strong="H6965"\w* \w and|strong="H6965"\w* eat, \w because|strong="H3588"\w* \w the|strong="H3588"\w* \w journey|strong="H1870"\w* \w is|strong="H3068"\w* \w too|strong="H4480"\w* \w great|strong="H7227"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*.” +\p +\v 8 \w He|strong="H1931"\w* \w arose|strong="H6965"\w*, \w and|strong="H6965"\w* ate \w and|strong="H6965"\w* \w drank|strong="H8354"\w*, \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w strength|strong="H3581"\w* \w of|strong="H3117"\w* \w that|strong="H3117"\w* food forty \w days|strong="H3117"\w* \w and|strong="H6965"\w* forty \w nights|strong="H3915"\w* \w to|strong="H5704"\w* \w Horeb|strong="H2722"\w*, God’s \w Mountain|strong="H2022"\w*. +\v 9 \w He|strong="H8033"\w* \w came|strong="H3068"\w* \w to|strong="H3068"\w* \w a|strong="H3068"\w* \w cave|strong="H4631"\w* \w there|strong="H8033"\w*, \w and|strong="H3068"\w* camped \w there|strong="H8033"\w*; \w and|strong="H3068"\w* \w behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H3068"\w* \w to|strong="H3068"\w* \w him|strong="H1697"\w*, \w and|strong="H3068"\w* \w he|strong="H8033"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w him|strong="H1697"\w*, “\w What|strong="H4100"\w* \w are|strong="H4100"\w* \w you|strong="H4100"\w* doing \w here|strong="H6311"\w*, Elijah?” +\p +\v 10 \w He|strong="H3588"\w* said, “\w I|strong="H3588"\w* \w have|strong="H3068"\w* \w been|strong="H7065"\w* \w very|strong="H7065"\w* \w jealous|strong="H7065"\w* \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3588"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Armies|strong="H6635"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w have|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w your|strong="H3068"\w* \w covenant|strong="H1285"\w*, \w thrown|strong="H2040"\w* \w down|strong="H2040"\w* \w your|strong="H3068"\w* \w altars|strong="H4196"\w*, \w and|strong="H1121"\w* \w killed|strong="H2026"\w* \w your|strong="H3068"\w* \w prophets|strong="H5030"\w* \w with|strong="H3068"\w* \w the|strong="H3588"\w* \w sword|strong="H2719"\w*. \w I|strong="H3588"\w*, \w even|strong="H3588"\w* \w I|strong="H3588"\w* \w only|strong="H3588"\w*, \w am|strong="H3068"\w* \w left|strong="H3498"\w*; \w and|strong="H1121"\w* \w they|strong="H3588"\w* \w seek|strong="H1245"\w* \w my|strong="H3068"\w* \w life|strong="H5315"\w*, \w to|strong="H3478"\w* \w take|strong="H3947"\w* \w it|strong="H3588"\w* \w away|strong="H3947"\w*.” +\p +\v 11 \w He|strong="H3068"\w* \w said|strong="H3318"\w*, “\w Go|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H3068"\w* \w stand|strong="H5975"\w* \w on|strong="H5674"\w* \w the|strong="H6440"\w* \w mountain|strong="H2022"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*.” +\p \w Behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w* \w passed|strong="H5674"\w* \w by|strong="H5674"\w*, \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w and|strong="H3068"\w* \w strong|strong="H2389"\w* \w wind|strong="H7307"\w* \w tore|strong="H7665"\w* \w the|strong="H6440"\w* \w mountains|strong="H2022"\w* \w and|strong="H3068"\w* \w broke|strong="H7665"\w* \w in|strong="H3068"\w* \w pieces|strong="H7665"\w* \w the|strong="H6440"\w* \w rocks|strong="H5553"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*; \w but|strong="H3808"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w not|strong="H3808"\w* \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w wind|strong="H7307"\w*. \w After|strong="H3318"\w* \w the|strong="H6440"\w* \w wind|strong="H7307"\w* \w there|strong="H2009"\w* \w was|strong="H3068"\w* \w an|strong="H6440"\w* \w earthquake|strong="H7494"\w*; \w but|strong="H3808"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w not|strong="H3808"\w* \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w earthquake|strong="H7494"\w*. +\v 12 After \w the|strong="H3068"\w* \w earthquake|strong="H7494"\w* \w a|strong="H3068"\w* fire \w passed|strong="H3068"\w*; \w but|strong="H3808"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w not|strong="H3808"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* fire. After \w the|strong="H3068"\w* fire, \w there|strong="H3068"\w* \w was|strong="H3068"\w* \w a|strong="H3068"\w* \w still|strong="H1827"\w* \w small|strong="H1851"\w* \w voice|strong="H6963"\w*. +\v 13 \w When|strong="H1961"\w* Elijah \w heard|strong="H8085"\w* \w it|strong="H6440"\w*, \w he|strong="H6440"\w* \w wrapped|strong="H3874"\w* \w his|strong="H8085"\w* \w face|strong="H6440"\w* \w in|strong="H8085"\w* \w his|strong="H8085"\w* mantle, \w went|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H6963"\w* \w stood|strong="H5975"\w* \w in|strong="H8085"\w* \w the|strong="H6440"\w* \w entrance|strong="H6607"\w* \w of|strong="H6963"\w* \w the|strong="H6440"\w* \w cave|strong="H4631"\w*. \w Behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w voice|strong="H6963"\w* \w came|strong="H1961"\w* \w to|strong="H3318"\w* \w him|strong="H6440"\w*, \w and|strong="H6963"\w* \w said|strong="H8085"\w*, “\w What|strong="H4100"\w* \w are|strong="H4100"\w* \w you|strong="H6440"\w* \w doing|strong="H3318"\w* \w here|strong="H6311"\w*, Elijah?” +\p +\v 14 \w He|strong="H3588"\w* said, “\w I|strong="H3588"\w* \w have|strong="H3068"\w* \w been|strong="H7065"\w* \w very|strong="H7065"\w* \w jealous|strong="H7065"\w* \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3588"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Armies|strong="H6635"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w have|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w your|strong="H3068"\w* \w covenant|strong="H1285"\w*, \w thrown|strong="H2040"\w* \w down|strong="H2040"\w* \w your|strong="H3068"\w* \w altars|strong="H4196"\w*, \w and|strong="H1121"\w* \w killed|strong="H2026"\w* \w your|strong="H3068"\w* \w prophets|strong="H5030"\w* \w with|strong="H3068"\w* \w the|strong="H3588"\w* \w sword|strong="H2719"\w*. \w I|strong="H3588"\w*, \w even|strong="H3588"\w* \w I|strong="H3588"\w* \w only|strong="H3588"\w*, \w am|strong="H3068"\w* \w left|strong="H3498"\w*; \w and|strong="H1121"\w* \w they|strong="H3588"\w* \w seek|strong="H1245"\w* \w my|strong="H3068"\w* \w life|strong="H5315"\w*, \w to|strong="H3478"\w* \w take|strong="H3947"\w* \w it|strong="H3588"\w* \w away|strong="H3947"\w*.” +\p +\v 15 \w Yahweh|strong="H3068"\w* said \w to|strong="H7725"\w* \w him|strong="H5921"\w*, “\w Go|strong="H3212"\w*, \w return|strong="H7725"\w* \w on|strong="H5921"\w* \w your|strong="H3068"\w* \w way|strong="H1870"\w* \w to|strong="H7725"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w* \w of|strong="H4428"\w* \w Damascus|strong="H1834"\w*. \w When|strong="H7725"\w* \w you|strong="H5921"\w* arrive, \w anoint|strong="H4886"\w* \w Hazael|strong="H2371"\w* \w to|strong="H7725"\w* \w be|strong="H3068"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* Syria. +\v 16 \w Anoint|strong="H4886"\w* \w Jehu|strong="H3058"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nimshi|strong="H5250"\w* \w to|strong="H3478"\w* \w be|strong="H1121"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*; \w and|strong="H1121"\w* \w anoint|strong="H4886"\w* Elisha \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shaphat|strong="H8202"\w* \w of|strong="H1121"\w* Abel Meholah \w to|strong="H3478"\w* \w be|strong="H1121"\w* \w prophet|strong="H5030"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w place|strong="H8478"\w*. +\v 17 \w He|strong="H2719"\w* who \w escapes|strong="H4422"\w* \w from|strong="H1961"\w* \w the|strong="H1961"\w* \w sword|strong="H2719"\w* \w of|strong="H2719"\w* \w Hazael|strong="H2371"\w*, \w Jehu|strong="H3058"\w* \w will|strong="H1961"\w* \w kill|strong="H4191"\w*; \w and|strong="H2719"\w* \w he|strong="H2719"\w* who \w escapes|strong="H4422"\w* \w from|strong="H1961"\w* \w the|strong="H1961"\w* \w sword|strong="H2719"\w* \w of|strong="H2719"\w* \w Jehu|strong="H3058"\w*, Elisha \w will|strong="H1961"\w* \w kill|strong="H4191"\w*. +\v 18 \w Yet|strong="H3808"\w* \w I|strong="H3808"\w* \w reserved|strong="H7604"\w* \w seven|strong="H7651"\w* thousand \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w knees|strong="H1290"\w* \w of|strong="H6310"\w* \w which|strong="H3478"\w* \w have|strong="H3478"\w* \w not|strong="H3808"\w* \w bowed|strong="H3766"\w* \w to|strong="H3478"\w* \w Baal|strong="H1168"\w*, \w and|strong="H3478"\w* \w every|strong="H3605"\w* \w mouth|strong="H6310"\w* \w which|strong="H3478"\w* \w has|strong="H3478"\w* \w not|strong="H3808"\w* \w kissed|strong="H5401"\w* \w him|strong="H3605"\w*.” +\p +\v 19 \w So|strong="H5674"\w* \w he|strong="H1931"\w* \w departed|strong="H3212"\w* \w from|strong="H6440"\w* \w there|strong="H8033"\w* \w and|strong="H1121"\w* \w found|strong="H4672"\w* Elisha \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shaphat|strong="H8202"\w*, \w who|strong="H1931"\w* \w was|strong="H1931"\w* \w plowing|strong="H2790"\w* \w with|strong="H6440"\w* \w twelve|strong="H8147"\w* \w yoke|strong="H6776"\w* \w of|strong="H1121"\w* \w oxen|strong="H6776"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w with|strong="H6440"\w* \w the|strong="H6440"\w* \w twelfth|strong="H8147"\w*. Elijah \w went|strong="H3212"\w* \w over|strong="H5674"\w* \w to|strong="H3212"\w* \w him|strong="H6440"\w* \w and|strong="H1121"\w* \w put|strong="H5674"\w* \w his|strong="H6440"\w* mantle \w on|strong="H5674"\w* \w him|strong="H6440"\w*. +\v 20 \w Elisha|strong="H7725"\w* \w left|strong="H5800"\w* \w the|strong="H3588"\w* \w oxen|strong="H1241"\w* \w and|strong="H7725"\w* \w ran|strong="H7323"\w* \w after|strong="H3588"\w* Elijah, \w and|strong="H7725"\w* said, “\w Let|strong="H4994"\w* \w me|strong="H4994"\w* \w please|strong="H4994"\w* \w kiss|strong="H5401"\w* \w my|strong="H7725"\w* father \w and|strong="H7725"\w* \w my|strong="H7725"\w* mother, \w and|strong="H7725"\w* \w then|strong="H6213"\w* \w I|strong="H3588"\w* \w will|strong="H4100"\w* \w follow|strong="H3212"\w* \w you|strong="H3588"\w*.” +\p \w He|strong="H3588"\w* said \w to|strong="H7725"\w* \w him|strong="H6213"\w*, “\w Go|strong="H3212"\w* \w back|strong="H7725"\w* \w again|strong="H7725"\w*; \w for|strong="H3588"\w* \w what|strong="H4100"\w* \w have|strong="H3588"\w* \w I|strong="H3588"\w* \w done|strong="H6213"\w* \w to|strong="H7725"\w* \w you|strong="H3588"\w*?” +\p +\v 21 \w He|strong="H5414"\w* \w returned|strong="H7725"\w* \w from|strong="H7725"\w* \w following|strong="H3212"\w* \w him|strong="H5414"\w*, \w and|strong="H6965"\w* \w took|strong="H3947"\w* \w the|strong="H5414"\w* \w yoke|strong="H6776"\w* \w of|strong="H3627"\w* \w oxen|strong="H1241"\w*, \w killed|strong="H2076"\w* \w them|strong="H5414"\w*, \w and|strong="H6965"\w* \w boiled|strong="H1310"\w* \w their|strong="H5414"\w* \w meat|strong="H1320"\w* \w with|strong="H3212"\w* \w the|strong="H5414"\w* \w oxen|strong="H1241"\w*’s \w equipment|strong="H3627"\w*, \w and|strong="H6965"\w* \w gave|strong="H5414"\w* \w to|strong="H7725"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w*; \w and|strong="H6965"\w* \w they|strong="H5971"\w* ate. \w Then|strong="H6965"\w* \w he|strong="H5414"\w* \w arose|strong="H6965"\w*, \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w after|strong="H6965"\w* Elijah, \w and|strong="H6965"\w* \w served|strong="H8334"\w* \w him|strong="H5414"\w*. +\c 20 +\p +\v 1 Ben Hadad \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria \w gathered|strong="H6908"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w army|strong="H2426"\w* \w together|strong="H6908"\w*; \w and|strong="H4428"\w* \w there|strong="H5927"\w* \w were|strong="H5483"\w* \w thirty-two|strong="H7970"\w* \w kings|strong="H4428"\w* \w with|strong="H5921"\w* \w him|strong="H5921"\w*, \w with|strong="H5921"\w* \w horses|strong="H5483"\w* \w and|strong="H4428"\w* \w chariots|strong="H7393"\w*. \w He|strong="H3605"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H4428"\w* \w besieged|strong="H6696"\w* \w Samaria|strong="H8111"\w*, \w and|strong="H4428"\w* \w fought|strong="H3898"\w* \w against|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 2 \w He|strong="H7971"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w into|strong="H5892"\w* \w the|strong="H7971"\w* \w city|strong="H5892"\w* \w to|strong="H3478"\w* Ahab \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w and|strong="H3478"\w* said \w to|strong="H3478"\w* \w him|strong="H7971"\w*, “Ben Hadad says, +\v 3 ‘\w Your|strong="H3541"\w* \w silver|strong="H3701"\w* \w and|strong="H1121"\w* \w your|strong="H3541"\w* \w gold|strong="H2091"\w* \w are|strong="H1992"\w* mine. \w Your|strong="H3541"\w* wives \w also|strong="H3541"\w* \w and|strong="H1121"\w* \w your|strong="H3541"\w* \w children|strong="H1121"\w*, \w even|strong="H3541"\w* \w the|strong="H3541"\w* \w best|strong="H2896"\w*, \w are|strong="H1992"\w* mine.’” +\p +\v 4 \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w answered|strong="H6030"\w*, “\w It|strong="H3605"\w* \w is|strong="H1697"\w* according \w to|strong="H3478"\w* \w your|strong="H3605"\w* \w saying|strong="H1697"\w*, \w my|strong="H3605"\w* lord, \w O|strong="H3068"\w* \w king|strong="H4428"\w*. \w I|strong="H1697"\w* am yours, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H1697"\w* \w have|strong="H3478"\w*.” +\p +\v 5 \w The|strong="H3588"\w* \w messengers|strong="H4397"\w* \w came|strong="H7725"\w* \w again|strong="H7725"\w* \w and|strong="H1121"\w* said, “Ben Hadad \w says|strong="H3541"\w*, ‘\w I|strong="H3588"\w* \w sent|strong="H7971"\w* \w indeed|strong="H3588"\w* \w to|strong="H7725"\w* \w you|strong="H3588"\w*, saying, “\w You|strong="H3588"\w* \w shall|strong="H1121"\w* \w deliver|strong="H5414"\w* \w me|strong="H5414"\w* \w your|strong="H5414"\w* \w silver|strong="H3701"\w*, \w your|strong="H5414"\w* \w gold|strong="H2091"\w*, \w your|strong="H5414"\w* wives, \w and|strong="H1121"\w* \w your|strong="H5414"\w* \w children|strong="H1121"\w*; +\v 6 \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w send|strong="H7971"\w* \w my|strong="H3605"\w* \w servants|strong="H5650"\w* \w to|strong="H7971"\w* \w you|strong="H3588"\w* \w tomorrow|strong="H4279"\w* \w about|strong="H1961"\w* \w this|strong="H3588"\w* \w time|strong="H6256"\w*, \w and|strong="H7971"\w* \w they|strong="H3588"\w* \w will|strong="H1961"\w* \w search|strong="H2664"\w* \w your|strong="H3605"\w* \w house|strong="H1004"\w* \w and|strong="H7971"\w* \w the|strong="H3605"\w* \w houses|strong="H1004"\w* \w of|strong="H1004"\w* \w your|strong="H3605"\w* \w servants|strong="H5650"\w*. \w Whatever|strong="H3605"\w* \w is|strong="H3027"\w* \w pleasant|strong="H4261"\w* \w in|strong="H1004"\w* \w your|strong="H3605"\w* \w eyes|strong="H5869"\w*, \w they|strong="H3588"\w* \w will|strong="H1961"\w* \w put|strong="H7760"\w* \w it|strong="H7760"\w* \w in|strong="H1004"\w* \w their|strong="H3605"\w* \w hand|strong="H3027"\w*, \w and|strong="H7971"\w* \w take|strong="H3947"\w* \w it|strong="H7760"\w* \w away|strong="H7971"\w*.”’” +\p +\v 7 \w Then|strong="H2088"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w called|strong="H7121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* land, \w and|strong="H1121"\w* \w said|strong="H7121"\w*, “\w Please|strong="H4994"\w* \w notice|strong="H3045"\w* \w how|strong="H3588"\w* \w this|strong="H2088"\w* \w man|strong="H2205"\w* \w seeks|strong="H1245"\w* \w mischief|strong="H7451"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w sent|strong="H7971"\w* \w to|strong="H3478"\w* \w me|strong="H4994"\w* \w for|strong="H3588"\w* \w my|strong="H3605"\w* wives, \w and|strong="H1121"\w* \w for|strong="H3588"\w* \w my|strong="H3605"\w* \w children|strong="H1121"\w*, \w and|strong="H1121"\w* \w for|strong="H3588"\w* \w my|strong="H3605"\w* \w silver|strong="H3701"\w*, \w and|strong="H1121"\w* \w for|strong="H3588"\w* \w my|strong="H3605"\w* \w gold|strong="H2091"\w*; \w and|strong="H1121"\w* \w I|strong="H3588"\w* didn’t \w deny|strong="H4513"\w* \w him|strong="H7121"\w*.” +\p +\v 8 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w and|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w said|strong="H8085"\w* \w to|strong="H8085"\w* \w him|strong="H3605"\w*, “Don’t \w listen|strong="H8085"\w*, \w and|strong="H5971"\w* don’t consent.” +\p +\v 9 \w Therefore|strong="H7971"\w* \w he|strong="H6213"\w* \w said|strong="H1697"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w messengers|strong="H4397"\w* \w of|strong="H4428"\w* Ben Hadad, “\w Tell|strong="H3605"\w* \w my|strong="H3605"\w* lord \w the|strong="H3605"\w* \w king|strong="H4428"\w*, ‘\w All|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w sent|strong="H7971"\w* \w for|strong="H6213"\w* \w to|strong="H7725"\w* \w your|strong="H3605"\w* \w servant|strong="H5650"\w* \w at|strong="H4428"\w* \w the|strong="H3605"\w* \w first|strong="H7223"\w* \w I|strong="H1697"\w* \w will|strong="H4428"\w* \w do|strong="H6213"\w*, \w but|strong="H3808"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w I|strong="H1697"\w* \w cannot|strong="H3808"\w* \w do|strong="H6213"\w*.’” +\p \w The|strong="H3605"\w* \w messengers|strong="H4397"\w* \w departed|strong="H3212"\w* \w and|strong="H7971"\w* \w brought|strong="H7725"\w* \w him|strong="H7971"\w* \w back|strong="H7725"\w* \w the|strong="H3605"\w* \w message|strong="H1697"\w*. +\v 10 Ben Hadad \w sent|strong="H7971"\w* \w to|strong="H7971"\w* \w him|strong="H7971"\w*, \w and|strong="H7971"\w* said, “\w The|strong="H3605"\w* gods \w do|strong="H6213"\w* \w so|strong="H6213"\w* \w to|strong="H7971"\w* \w me|strong="H7971"\w*, \w and|strong="H7971"\w* \w more|strong="H3254"\w* \w also|strong="H3541"\w*, if \w the|strong="H3605"\w* \w dust|strong="H6083"\w* \w of|strong="H5971"\w* \w Samaria|strong="H8111"\w* \w will|strong="H5971"\w* \w be|strong="H3254"\w* \w enough|strong="H3605"\w* \w for|strong="H6213"\w* \w handfuls|strong="H8168"\w* \w for|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w follow|strong="H7272"\w* \w me|strong="H7971"\w*.” +\p +\v 11 \w The|strong="H1696"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w answered|strong="H6030"\w*, “\w Tell|strong="H1696"\w* \w him|strong="H6030"\w*, ‘Don’t let \w him|strong="H6030"\w* \w who|strong="H3478"\w* puts \w on|strong="H2296"\w* \w his|strong="H3478"\w* armor brag \w like|strong="H3478"\w* \w he|strong="H3478"\w* \w who|strong="H3478"\w* \w takes|strong="H6605"\w* \w it|strong="H1696"\w* \w off|strong="H6605"\w*.’” +\p +\v 12 \w When|strong="H1961"\w* Ben Hadad \w heard|strong="H8085"\w* \w this|strong="H2088"\w* \w message|strong="H1697"\w* \w as|strong="H1697"\w* \w he|strong="H1931"\w* \w was|strong="H1961"\w* \w drinking|strong="H8354"\w*, \w he|strong="H1931"\w* \w and|strong="H4428"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w pavilions|strong="H5521"\w*, \w he|strong="H1931"\w* \w said|strong="H1697"\w* \w to|strong="H1961"\w* \w his|strong="H7760"\w* \w servants|strong="H5650"\w*, “\w Prepare|strong="H7760"\w* \w to|strong="H1961"\w* attack!” \w So|strong="H1961"\w* \w they|strong="H5921"\w* prepared \w to|strong="H1961"\w* attack \w the|strong="H5921"\w* \w city|strong="H5892"\w*. +\p +\v 13 \w Behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w prophet|strong="H5030"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H3478"\w* Ahab \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* said, “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w Have|strong="H3068"\w* \w you|strong="H3588"\w* \w seen|strong="H7200"\w* \w all|strong="H3605"\w* \w this|strong="H2088"\w* \w great|strong="H1419"\w* \w multitude|strong="H1995"\w*? \w Behold|strong="H2009"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w deliver|strong="H5414"\w* \w it|strong="H5414"\w* \w into|strong="H3027"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w today|strong="H3117"\w*. \w Then|strong="H2009"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.’” +\p +\v 14 Ahab said, “\w By|strong="H3068"\w* \w whom|strong="H4310"\w*?” +\p \w He|strong="H3068"\w* said, “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w By|strong="H3068"\w* \w the|strong="H3541"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w of|strong="H3068"\w* \w the|strong="H3541"\w* \w princes|strong="H8269"\w* \w of|strong="H3068"\w* \w the|strong="H3541"\w* \w provinces|strong="H4082"\w*.’” +\p \w Then|strong="H3068"\w* \w he|strong="H3068"\w* said, “\w Who|strong="H4310"\w* \w shall|strong="H3068"\w* begin \w the|strong="H3541"\w* \w battle|strong="H4421"\w*?” +\p \w He|strong="H3068"\w* answered, “\w You|strong="H4310"\w*.” +\p +\v 15 \w Then|strong="H1961"\w* \w he|strong="H3605"\w* \w mustered|strong="H6485"\w* \w the|strong="H3605"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w provinces|strong="H4082"\w*, \w and|strong="H3967"\w* \w they|strong="H5971"\w* \w were|strong="H3478"\w* \w two|strong="H8147"\w* \w hundred|strong="H3967"\w* \w and|strong="H3967"\w* \w thirty-two|strong="H7970"\w*. \w After|strong="H1961"\w* \w them|strong="H8147"\w*, \w he|strong="H3605"\w* \w mustered|strong="H6485"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w even|strong="H7651"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w being|strong="H1961"\w* \w seven|strong="H7651"\w* thousand. +\v 16 \w They|strong="H1931"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w at|strong="H4428"\w* \w noon|strong="H6672"\w*. \w But|strong="H1931"\w* Ben Hadad \w was|strong="H1931"\w* \w drinking|strong="H8354"\w* \w himself|strong="H1931"\w* \w drunk|strong="H8354"\w* \w in|strong="H4428"\w* \w the|strong="H3318"\w* \w pavilions|strong="H5521"\w*, \w he|strong="H1931"\w* \w and|strong="H4428"\w* \w the|strong="H3318"\w* \w kings|strong="H4428"\w*, \w the|strong="H3318"\w* \w thirty-two|strong="H7970"\w* \w kings|strong="H4428"\w* \w who|strong="H1931"\w* \w helped|strong="H5826"\w* \w him|strong="H3318"\w*. +\v 17 \w The|strong="H7971"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w of|strong="H8269"\w* \w the|strong="H7971"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H7971"\w* \w provinces|strong="H4082"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w first|strong="H7223"\w*; \w and|strong="H7971"\w* Ben Hadad \w sent|strong="H7971"\w* \w out|strong="H3318"\w*, \w and|strong="H7971"\w* \w they|strong="H3318"\w* \w told|strong="H5046"\w* \w him|strong="H7971"\w*, saying, “\w Men|strong="H5288"\w* \w are|strong="H8269"\w* \w coming|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w Samaria|strong="H8111"\w*.” +\p +\v 18 \w He|strong="H3318"\w* \w said|strong="H3318"\w*, “If \w they|strong="H3318"\w* \w have|strong="H7965"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w for|strong="H3318"\w* \w peace|strong="H7965"\w*, \w take|strong="H8610"\w* \w them|strong="H8610"\w* \w alive|strong="H2416"\w*; \w or|strong="H2416"\w* if \w they|strong="H3318"\w* \w have|strong="H7965"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w for|strong="H3318"\w* \w war|strong="H4421"\w*, \w take|strong="H8610"\w* \w them|strong="H8610"\w* \w alive|strong="H2416"\w*.” +\p +\v 19 \w So|strong="H4480"\w* these \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H8269"\w* \w the|strong="H4480"\w* \w city|strong="H5892"\w*, \w the|strong="H4480"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w of|strong="H8269"\w* \w the|strong="H4480"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H4480"\w* \w provinces|strong="H4082"\w*, \w and|strong="H5892"\w* \w the|strong="H4480"\w* \w army|strong="H2428"\w* \w which|strong="H5892"\w* followed \w them|strong="H3318"\w*. +\v 20 \w They|strong="H5921"\w* each \w killed|strong="H5221"\w* \w his|strong="H5921"\w* man. \w The|strong="H5921"\w* Syrians \w fled|strong="H5127"\w*, \w and|strong="H3478"\w* \w Israel|strong="H3478"\w* \w pursued|strong="H7291"\w* \w them|strong="H5921"\w*. Ben Hadad \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria \w escaped|strong="H4422"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w horse|strong="H5483"\w* \w with|strong="H5921"\w* \w horsemen|strong="H6571"\w*. +\v 21 \w The|strong="H5221"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H3478"\w* \w struck|strong="H5221"\w* \w the|strong="H5221"\w* \w horses|strong="H5483"\w* \w and|strong="H3478"\w* \w chariots|strong="H7393"\w*, \w and|strong="H3478"\w* \w killed|strong="H5221"\w* \w the|strong="H5221"\w* Syrians \w with|strong="H3318"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w slaughter|strong="H4347"\w*. +\v 22 \w The|strong="H5921"\w* \w prophet|strong="H5030"\w* \w came|strong="H5927"\w* \w near|strong="H5066"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w and|strong="H3478"\w* said \w to|strong="H3478"\w* \w him|strong="H5921"\w*, “\w Go|strong="H3212"\w*, \w strengthen|strong="H2388"\w* \w yourself|strong="H6213"\w*, \w and|strong="H3478"\w* \w plan|strong="H5927"\w* \w what|strong="H3045"\w* \w you|strong="H3588"\w* \w must|strong="H3478"\w* \w do|strong="H6213"\w*, \w for|strong="H3588"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w return|strong="H8666"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w year|strong="H8141"\w*, \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria \w will|strong="H4428"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w*.” +\p +\v 23 \w The|strong="H5921"\w* \w servants|strong="H5650"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria \w said|strong="H3651"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w*, “\w Their|strong="H1992"\w* \w god|strong="H3808"\w* \w is|strong="H3651"\w* \w a|strong="H3068"\w* \w god|strong="H3808"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w hills|strong="H2022"\w*; \w therefore|strong="H3651"\w* \w they|strong="H1992"\w* \w were|strong="H1992"\w* \w stronger|strong="H2388"\w* \w than|strong="H4480"\w* \w we|strong="H3068"\w*. \w But|strong="H3808"\w* \w let|strong="H3808"\w*’s \w fight|strong="H3898"\w* \w against|strong="H5921"\w* \w them|strong="H1992"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w plain|strong="H4334"\w*, \w and|strong="H4428"\w* \w surely|strong="H3651"\w* \w we|strong="H3068"\w* \w will|strong="H4428"\w* \w be|strong="H3808"\w* \w stronger|strong="H2388"\w* \w than|strong="H4480"\w* \w they|strong="H1992"\w*. +\v 24 \w Do|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*: \w take|strong="H5493"\w* \w the|strong="H6213"\w* \w kings|strong="H4428"\w* \w away|strong="H5493"\w*, \w every|strong="H1697"\w* \w man|strong="H2088"\w* \w out|strong="H6213"\w* \w of|strong="H4428"\w* \w his|strong="H7760"\w* \w place|strong="H4725"\w*, \w and|strong="H4428"\w* \w put|strong="H7760"\w* \w captains|strong="H6346"\w* \w in|strong="H6213"\w* \w their|strong="H7760"\w* \w place|strong="H4725"\w*. +\v 25 \w Muster|strong="H4487"\w* \w an|strong="H6213"\w* \w army|strong="H2428"\w* \w like|strong="H3651"\w* \w the|strong="H8085"\w* \w army|strong="H2428"\w* \w that|strong="H8085"\w* \w you|strong="H6213"\w* \w have|strong="H3808"\w* \w lost|strong="H5307"\w*, \w horse|strong="H5483"\w* \w for|strong="H6213"\w* \w horse|strong="H5483"\w* \w and|strong="H6963"\w* \w chariot|strong="H7393"\w* \w for|strong="H6213"\w* \w chariot|strong="H7393"\w*. \w We|strong="H8085"\w* \w will|strong="H3808"\w* \w fight|strong="H3898"\w* \w against|strong="H3898"\w* \w them|strong="H1992"\w* \w in|strong="H6213"\w* \w the|strong="H8085"\w* \w plain|strong="H4334"\w*, \w and|strong="H6963"\w* \w surely|strong="H6213"\w* \w we|strong="H3068"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w stronger|strong="H2388"\w* \w than|strong="H3808"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w*.” +\p \w He|strong="H3651"\w* \w listened|strong="H8085"\w* \w to|strong="H6213"\w* \w their|strong="H8085"\w* \w voice|strong="H6963"\w* \w and|strong="H6963"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*. +\v 26 \w At|strong="H3478"\w* \w the|strong="H6485"\w* \w return|strong="H8666"\w* \w of|strong="H8141"\w* \w the|strong="H6485"\w* \w year|strong="H8141"\w*, Ben Hadad \w mustered|strong="H6485"\w* \w the|strong="H6485"\w* Syrians \w and|strong="H3478"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* Aphek \w to|strong="H3478"\w* \w fight|strong="H4421"\w* \w against|strong="H5973"\w* \w Israel|strong="H3478"\w*. +\v 27 \w The|strong="H4390"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w mustered|strong="H6485"\w* \w and|strong="H1121"\w* \w given|strong="H4390"\w* provisions, \w and|strong="H1121"\w* \w went|strong="H3212"\w* \w against|strong="H7125"\w* \w them|strong="H8147"\w*. \w The|strong="H4390"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w encamped|strong="H2583"\w* \w before|strong="H5048"\w* \w them|strong="H8147"\w* \w like|strong="H3478"\w* \w two|strong="H8147"\w* \w little|strong="H8147"\w* \w flocks|strong="H2835"\w* \w of|strong="H1121"\w* \w young|strong="H1121"\w* \w goats|strong="H5795"\w*, but \w the|strong="H4390"\w* Syrians \w filled|strong="H4390"\w* \w the|strong="H4390"\w* country. +\v 28 \w A|strong="H3068"\w* \w man|strong="H1419"\w* \w of|strong="H4428"\w* \w God|strong="H3068"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w and|strong="H3478"\w* spoke \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* said, “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w Because|strong="H3588"\w* \w the|strong="H3605"\w* Syrians \w have|strong="H3068"\w* said, “\w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w god|strong="H3068"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w hills|strong="H2022"\w*, \w but|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H3068"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w god|strong="H3068"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w valleys|strong="H6010"\w*,” \w therefore|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w deliver|strong="H5414"\w* \w all|strong="H3605"\w* \w this|strong="H2088"\w* \w great|strong="H1419"\w* \w multitude|strong="H1995"\w* \w into|strong="H3027"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*, \w and|strong="H3478"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.’” +\p +\v 29 \w They|strong="H3117"\w* \w encamped|strong="H2583"\w* \w opposite|strong="H5227"\w* \w each|strong="H3117"\w* other \w for|strong="H3117"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. \w Then|strong="H1961"\w* \w on|strong="H3117"\w* \w the|strong="H5221"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w* \w the|strong="H5221"\w* \w battle|strong="H4421"\w* \w was|strong="H1961"\w* \w joined|strong="H7126"\w*; \w and|strong="H3967"\w* \w the|strong="H5221"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w killed|strong="H5221"\w* \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* thousand \w footmen|strong="H7273"\w* \w of|strong="H1121"\w* \w the|strong="H5221"\w* Syrians \w in|strong="H2583"\w* \w one|strong="H1121"\w* \w day|strong="H3117"\w*. +\v 30 \w But|strong="H3498"\w* \w the|strong="H5921"\w* \w rest|strong="H3498"\w* \w fled|strong="H5127"\w* \w to|strong="H5921"\w* Aphek, \w into|strong="H5307"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*; \w and|strong="H6242"\w* \w the|strong="H5921"\w* \w wall|strong="H2346"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w twenty-seven|strong="H6242"\w* thousand \w men|strong="H7651"\w* who \w were|strong="H5892"\w* \w left|strong="H3498"\w*. Ben Hadad \w fled|strong="H5127"\w* \w and|strong="H6242"\w* \w came|strong="H1130"\w* \w into|strong="H5307"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*, \w into|strong="H5307"\w* \w an|strong="H5307"\w* \w inner|strong="H2315"\w* \w room|strong="H2315"\w*. +\v 31 \w His|strong="H7760"\w* \w servants|strong="H5650"\w* \w said|strong="H8085"\w* \w to|strong="H3318"\w* \w him|strong="H7760"\w*, “\w See|strong="H2009"\w* \w now|strong="H4994"\w*, \w we|strong="H3068"\w* \w have|strong="H5650"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w the|strong="H8085"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H8085"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w are|strong="H1992"\w* \w merciful|strong="H2617"\w* \w kings|strong="H4428"\w*. \w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w us|strong="H4994"\w* \w put|strong="H7760"\w* \w sackcloth|strong="H8242"\w* \w on|strong="H7760"\w* \w our|strong="H8085"\w* bodies \w and|strong="H3478"\w* \w ropes|strong="H2256"\w* \w on|strong="H7760"\w* \w our|strong="H8085"\w* \w heads|strong="H7218"\w*, \w and|strong="H3478"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. Maybe \w he|strong="H3588"\w* \w will|strong="H4428"\w* \w save|strong="H2421"\w* \w your|strong="H7760"\w* \w life|strong="H5315"\w*.” +\p +\v 32 \w So|strong="H5650"\w* \w they|strong="H1931"\w* \w put|strong="H2296"\w* \w sackcloth|strong="H8242"\w* \w on|strong="H2296"\w* \w their|strong="H8242"\w* bodies \w and|strong="H3478"\w* \w ropes|strong="H2256"\w* \w on|strong="H2296"\w* \w their|strong="H8242"\w* \w heads|strong="H7218"\w*, \w and|strong="H3478"\w* \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H5650"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* said, “\w Your|strong="H4994"\w* \w servant|strong="H5650"\w* Ben Hadad says, ‘\w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w me|strong="H4994"\w* \w live|strong="H2421"\w*.’” +\p \w He|strong="H1931"\w* said, “\w Is|strong="H1931"\w* \w he|strong="H1931"\w* \w still|strong="H5750"\w* \w alive|strong="H2416"\w*? \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w my|strong="H5650"\w* brother.” +\p +\v 33 \w Now|strong="H3947"\w* \w the|strong="H5921"\w* \w men|strong="H3947"\w* observed diligently \w and|strong="H3318"\w* \w hurried|strong="H4116"\w* \w to|strong="H3318"\w* \w take|strong="H3947"\w* \w this|strong="H5927"\w* phrase; \w and|strong="H3318"\w* \w they|strong="H5921"\w* \w said|strong="H3318"\w*, “\w Your|strong="H5921"\w* brother Ben Hadad.” +\p \w Then|strong="H3318"\w* \w he|strong="H4480"\w* \w said|strong="H3318"\w*, “\w Go|strong="H3318"\w*, \w bring|strong="H3318"\w* \w him|strong="H5921"\w*.” +\p \w Then|strong="H3318"\w* Ben Hadad \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H5921"\w*; \w and|strong="H3318"\w* \w he|strong="H4480"\w* caused \w him|strong="H5921"\w* \w to|strong="H3318"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H5921"\w* \w chariot|strong="H4818"\w*. +\v 34 Ben Hadad said \w to|strong="H7725"\w* \w him|strong="H7971"\w*, “\w The|strong="H3947"\w* \w cities|strong="H5892"\w* \w which|strong="H5892"\w* \w my|strong="H7760"\w* father \w took|strong="H3947"\w* \w from|strong="H7725"\w* \w your|strong="H3947"\w* father \w I|strong="H7760"\w* \w will|strong="H5892"\w* \w restore|strong="H7725"\w*. \w You|strong="H7971"\w* \w shall|strong="H5892"\w* \w make|strong="H7760"\w* \w streets|strong="H2351"\w* \w for|strong="H7971"\w* yourself \w in|strong="H5892"\w* \w Damascus|strong="H1834"\w*, \w as|strong="H5892"\w* \w my|strong="H7760"\w* father \w made|strong="H3772"\w* \w in|strong="H5892"\w* \w Samaria|strong="H8111"\w*.” +\p “\w I|strong="H7760"\w*”, said Ahab, “\w will|strong="H5892"\w* \w let|strong="H7971"\w* \w you|strong="H7971"\w* \w go|strong="H7971"\w* \w with|strong="H1285"\w* \w this|strong="H7725"\w* \w covenant|strong="H1285"\w*.” \w So|strong="H3947"\w* \w he|strong="H7971"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w him|strong="H7971"\w* \w and|strong="H7971"\w* \w let|strong="H7971"\w* \w him|strong="H7971"\w* \w go|strong="H7971"\w*. +\p +\v 35 \w A|strong="H3068"\w* certain \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5221"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5221"\w* \w prophets|strong="H5030"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w fellow|strong="H7453"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, “\w Please|strong="H4994"\w* \w strike|strong="H5221"\w* \w me|strong="H4994"\w*!” +\p \w The|strong="H5221"\w* \w man|strong="H1121"\w* \w refused|strong="H3985"\w* \w to|strong="H3068"\w* \w strike|strong="H5221"\w* \w him|strong="H5221"\w*. +\v 36 \w Then|strong="H1980"\w* \w he|strong="H3068"\w* \w said|strong="H8085"\w* \w to|strong="H1980"\w* \w him|strong="H5221"\w*, “\w Because|strong="H3282"\w* \w you|strong="H3808"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w obeyed|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w*, \w behold|strong="H2005"\w*, \w as|strong="H3068"\w* soon \w as|strong="H3068"\w* \w you|strong="H3808"\w* \w have|strong="H3068"\w* \w departed|strong="H1980"\w* \w from|strong="H1980"\w* \w me|strong="H6963"\w*, \w a|strong="H3068"\w* lion \w will|strong="H3068"\w* \w kill|strong="H5221"\w* \w you|strong="H3808"\w*.” \w As|strong="H3068"\w* soon \w as|strong="H3068"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w* \w departed|strong="H1980"\w* \w from|strong="H1980"\w* \w him|strong="H5221"\w*, \w a|strong="H3068"\w* lion \w found|strong="H4672"\w* \w him|strong="H5221"\w* \w and|strong="H1980"\w* \w killed|strong="H5221"\w* \w him|strong="H5221"\w*. +\p +\v 37 \w Then|strong="H5221"\w* \w he|strong="H5221"\w* \w found|strong="H4672"\w* another man, \w and|strong="H4994"\w* said, “\w Please|strong="H4994"\w* \w strike|strong="H5221"\w* \w me|strong="H4994"\w*.” +\p \w The|strong="H5221"\w* man \w struck|strong="H5221"\w* \w him|strong="H5221"\w* \w and|strong="H4994"\w* \w wounded|strong="H5221"\w* \w him|strong="H5221"\w*. +\v 38 \w So|strong="H5975"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w* \w departed|strong="H3212"\w* \w and|strong="H4428"\w* \w waited|strong="H5975"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w*, \w and|strong="H4428"\w* \w disguised|strong="H2664"\w* \w himself|strong="H5975"\w* \w with|strong="H5921"\w* \w his|strong="H5921"\w* headband \w over|strong="H5921"\w* \w his|strong="H5921"\w* \w eyes|strong="H5869"\w*. +\v 39 \w As|strong="H1961"\w* \w the|strong="H8104"\w* \w king|strong="H4428"\w* \w passed|strong="H5674"\w* \w by|strong="H5674"\w*, \w he|strong="H1931"\w* \w cried|strong="H6817"\w* \w to|strong="H3318"\w* \w the|strong="H8104"\w* \w king|strong="H4428"\w*, \w and|strong="H3701"\w* \w he|strong="H1931"\w* \w said|strong="H3318"\w*, “\w Your|strong="H8104"\w* \w servant|strong="H5650"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H8104"\w* \w middle|strong="H7130"\w* \w of|strong="H4428"\w* \w the|strong="H8104"\w* \w battle|strong="H4421"\w*; \w and|strong="H3701"\w* \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w man|strong="H5315"\w* \w came|strong="H1961"\w* \w over|strong="H5674"\w* \w and|strong="H3701"\w* \w brought|strong="H3318"\w* \w a|strong="H3068"\w* \w man|strong="H5315"\w* \w to|strong="H3318"\w* \w me|strong="H5315"\w*, \w and|strong="H3701"\w* \w said|strong="H3318"\w*, ‘\w Guard|strong="H8104"\w* \w this|strong="H2088"\w* \w man|strong="H5315"\w*! \w If|strong="H2009"\w* \w by|strong="H5674"\w* \w any|strong="H5315"\w* \w means|strong="H6485"\w* \w he|strong="H1931"\w* \w is|strong="H2088"\w* \w missing|strong="H6485"\w*, \w then|strong="H1961"\w* \w your|strong="H8104"\w* \w life|strong="H5315"\w* \w shall|strong="H4428"\w* \w be|strong="H1961"\w* \w for|strong="H8478"\w* \w his|strong="H8104"\w* \w life|strong="H5315"\w*, \w or|strong="H3701"\w* else \w you|strong="H7130"\w* \w shall|strong="H4428"\w* \w pay|strong="H8254"\w* \w a|strong="H3068"\w* \w talent|strong="H3603"\w*\f + \fr 20:39 \ft A talent is about 30 kilograms or 66 pounds\f* \w of|strong="H4428"\w* \w silver|strong="H3701"\w*.’ +\v 40 \w As|strong="H1961"\w* \w your|strong="H6213"\w* \w servant|strong="H5650"\w* \w was|strong="H1961"\w* \w busy|strong="H6213"\w* \w here|strong="H2008"\w* \w and|strong="H3478"\w* \w there|strong="H1961"\w*, \w he|strong="H1931"\w* \w was|strong="H1961"\w* \w gone|strong="H1961"\w*.” +\p \w The|strong="H6213"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w said|strong="H3651"\w* \w to|strong="H3478"\w* \w him|strong="H6213"\w*, “\w So|strong="H3651"\w* \w shall|strong="H3478"\w* \w your|strong="H6213"\w* \w judgment|strong="H4941"\w* \w be|strong="H1961"\w*. \w You|strong="H6213"\w* \w yourself|strong="H6213"\w* \w have|strong="H1961"\w* \w decided|strong="H2782"\w* \w it|strong="H1931"\w*.” +\p +\v 41 \w He|strong="H1931"\w* \w hurried|strong="H4116"\w*, \w and|strong="H3478"\w* \w took|strong="H5493"\w* \w the|strong="H5921"\w* headband \w away|strong="H5493"\w* \w from|strong="H5493"\w* \w his|strong="H5921"\w* \w eyes|strong="H5869"\w*; \w and|strong="H3478"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w recognized|strong="H5234"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H3478"\w* \w one|strong="H1931"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w prophets|strong="H5030"\w*. +\v 42 \w He|strong="H3068"\w* said \w to|strong="H3068"\w* \w him|strong="H7971"\w*, “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w Because|strong="H3282"\w* \w you|strong="H7971"\w* \w have|strong="H1961"\w* \w let|strong="H7971"\w* \w go|strong="H7971"\w* \w out|strong="H7971"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w the|strong="H3541"\w* \w man|strong="H5315"\w* \w whom|strong="H5971"\w* \w I|strong="H3541"\w* \w had|strong="H3068"\w* \w devoted|strong="H2764"\w* \w to|strong="H3068"\w* \w destruction|strong="H2764"\w*, \w therefore|strong="H7971"\w* \w your|strong="H3068"\w* \w life|strong="H5315"\w* \w will|strong="H3068"\w* \w take|strong="H1961"\w* \w the|strong="H3541"\w* \w place|strong="H8478"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w life|strong="H5315"\w*, \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w* \w take|strong="H1961"\w* \w the|strong="H3541"\w* \w place|strong="H8478"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*.’” +\p +\v 43 \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w went|strong="H3212"\w* \w to|strong="H3478"\w* \w his|strong="H5921"\w* \w house|strong="H1004"\w* \w sullen|strong="H5620"\w* \w and|strong="H3478"\w* angry, \w and|strong="H3478"\w* \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w Samaria|strong="H8111"\w*. +\c 21 +\p +\v 1 \w After|strong="H1961"\w* \w these|strong="H4428"\w* \w things|strong="H1697"\w*, \w Naboth|strong="H5022"\w* \w the|strong="H1697"\w* \w Jezreelite|strong="H3158"\w* \w had|strong="H1961"\w* \w a|strong="H3068"\w* \w vineyard|strong="H3754"\w* \w which|strong="H1697"\w* \w was|strong="H1961"\w* \w in|strong="H4428"\w* \w Jezreel|strong="H3157"\w*, next \w to|strong="H1961"\w* \w the|strong="H1697"\w* \w palace|strong="H1964"\w* \w of|strong="H4428"\w* Ahab \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Samaria|strong="H8111"\w*. +\v 2 Ahab \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Naboth|strong="H5022"\w*, \w saying|strong="H1696"\w*, “\w Give|strong="H5414"\w* \w me|strong="H5414"\w* \w your|strong="H5414"\w* \w vineyard|strong="H3754"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H1961"\w* \w have|strong="H1961"\w* \w it|strong="H5414"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w garden|strong="H1588"\w* \w of|strong="H1004"\w* \w herbs|strong="H3419"\w*, \w because|strong="H3588"\w* \w it|strong="H5414"\w* \w is|strong="H2088"\w* \w near|strong="H7138"\w* \w my|strong="H5414"\w* \w house|strong="H1004"\w*; \w and|strong="H3701"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w you|strong="H3588"\w* \w for|strong="H3588"\w* \w it|strong="H5414"\w* \w a|strong="H3068"\w* \w better|strong="H2896"\w* \w vineyard|strong="H3754"\w* \w than|strong="H4480"\w* \w it|strong="H5414"\w*. \w Or|strong="H3701"\w*, \w if|strong="H3588"\w* \w it|strong="H5414"\w* \w seems|strong="H2896"\w* \w good|strong="H2896"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*, \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w you|strong="H3588"\w* \w its|strong="H5414"\w* \w worth|strong="H4242"\w* \w in|strong="H1004"\w* \w money|strong="H3701"\w*.” +\p +\v 3 \w Naboth|strong="H5022"\w* said \w to|strong="H3068"\w* Ahab, “\w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w forbid|strong="H2486"\w* \w me|strong="H5414"\w*, \w that|strong="H3068"\w* \w I|strong="H5414"\w* \w should|strong="H3068"\w* \w give|strong="H5414"\w* \w the|strong="H5414"\w* \w inheritance|strong="H5159"\w* \w of|strong="H3068"\w* \w my|strong="H5414"\w* fathers \w to|strong="H3068"\w* \w you|strong="H5414"\w*!” +\p +\v 4 Ahab \w came|strong="H1697"\w* \w into|strong="H5921"\w* \w his|strong="H5414"\w* \w house|strong="H1004"\w* \w sullen|strong="H5620"\w* \w and|strong="H1004"\w* angry \w because|strong="H5921"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w word|strong="H1697"\w* \w which|strong="H1697"\w* \w Naboth|strong="H5022"\w* \w the|strong="H6440"\w* \w Jezreelite|strong="H3158"\w* \w had|strong="H5414"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5414"\w*, \w for|strong="H5921"\w* \w he|strong="H1004"\w* \w had|strong="H5414"\w* \w said|strong="H1696"\w*, “\w I|strong="H5414"\w* \w will|strong="H1004"\w* \w not|strong="H3808"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w the|strong="H6440"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1004"\w* \w my|strong="H5414"\w* fathers.” \w He|strong="H1004"\w* \w laid|strong="H5414"\w* \w himself|strong="H6440"\w* \w down|strong="H7901"\w* \w on|strong="H5921"\w* \w his|strong="H5414"\w* \w bed|strong="H4296"\w*, \w and|strong="H1004"\w* \w turned|strong="H5437"\w* \w away|strong="H5437"\w* \w his|strong="H5414"\w* \w face|strong="H6440"\w*, \w and|strong="H1004"\w* \w would|strong="H1697"\w* \w eat|strong="H3899"\w* \w no|strong="H3808"\w* \w bread|strong="H3899"\w*. +\v 5 \w But|strong="H1696"\w* Jezebel \w his|strong="H1696"\w* \w wife|strong="H1696"\w* \w came|strong="H7307"\w* \w to|strong="H1696"\w* \w him|strong="H2088"\w*, \w and|strong="H3899"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H2088"\w*, “\w Why|strong="H4100"\w* \w is|strong="H2088"\w* \w your|strong="H2088"\w* \w spirit|strong="H7307"\w* \w so|strong="H2088"\w* \w sad|strong="H5620"\w* \w that|strong="H2088"\w* \w you|strong="H4100"\w* \w eat|strong="H3899"\w* \w no|strong="H1696"\w* \w bread|strong="H3899"\w*?” +\p +\v 6 \w He|strong="H3588"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w her|strong="H5414"\w*, “\w Because|strong="H3588"\w* \w I|strong="H3588"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Naboth|strong="H5022"\w* \w the|strong="H3588"\w* \w Jezreelite|strong="H3158"\w*, \w and|strong="H3701"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5414"\w*, ‘\w Give|strong="H5414"\w* \w me|strong="H5414"\w* \w your|strong="H5414"\w* \w vineyard|strong="H3754"\w* \w for|strong="H3588"\w* \w money|strong="H3701"\w*; \w or|strong="H3808"\w* \w else|strong="H3808"\w*, \w if|strong="H3588"\w* \w it|strong="H5414"\w* \w pleases|strong="H2655"\w* \w you|strong="H3588"\w*, \w I|strong="H3588"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w you|strong="H3588"\w* \w another|strong="H3808"\w* \w vineyard|strong="H3754"\w* \w for|strong="H3588"\w* \w it|strong="H5414"\w*.’ \w He|strong="H3588"\w* \w answered|strong="H1696"\w*, ‘\w I|strong="H3588"\w* \w will|strong="H5414"\w* \w not|strong="H3808"\w* \w give|strong="H5414"\w* \w you|strong="H3588"\w* \w my|strong="H5414"\w* \w vineyard|strong="H3754"\w*.’” +\p +\v 7 Jezebel \w his|strong="H5414"\w* wife said \w to|strong="H3478"\w* \w him|strong="H5414"\w*, “\w Do|strong="H6213"\w* \w you|strong="H5414"\w* \w now|strong="H6258"\w* \w govern|strong="H6213"\w* \w the|strong="H5921"\w* \w kingdom|strong="H4410"\w* \w of|strong="H5921"\w* \w Israel|strong="H3478"\w*? \w Arise|strong="H6965"\w*, \w and|strong="H6965"\w* \w eat|strong="H3899"\w* \w bread|strong="H3899"\w*, \w and|strong="H6965"\w* \w let|strong="H5414"\w* \w your|strong="H5414"\w* \w heart|strong="H3820"\w* \w be|strong="H3820"\w* \w merry|strong="H3190"\w*. \w I|strong="H5414"\w* \w will|strong="H3478"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w the|strong="H5921"\w* \w vineyard|strong="H3754"\w* \w of|strong="H5921"\w* \w Naboth|strong="H5022"\w* \w the|strong="H5921"\w* \w Jezreelite|strong="H3158"\w*.” +\v 8 \w So|strong="H7971"\w* \w she|strong="H5892"\w* \w wrote|strong="H3789"\w* \w letters|strong="H5612"\w* \w in|strong="H3427"\w* Ahab’s \w name|strong="H8034"\w* \w and|strong="H7971"\w* \w sealed|strong="H2856"\w* \w them|strong="H7971"\w* \w with|strong="H3427"\w* \w his|strong="H7971"\w* \w seal|strong="H2368"\w*, \w and|strong="H7971"\w* \w sent|strong="H7971"\w* \w the|strong="H7971"\w* \w letters|strong="H5612"\w* \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w elders|strong="H2205"\w* \w and|strong="H7971"\w* \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w nobles|strong="H2715"\w* \w who|strong="H3427"\w* \w were|strong="H5612"\w* \w in|strong="H3427"\w* \w his|strong="H7971"\w* \w city|strong="H5892"\w*, \w who|strong="H3427"\w* \w lived|strong="H3427"\w* \w with|strong="H3427"\w* \w Naboth|strong="H5022"\w*. +\v 9 \w She|strong="H7121"\w* \w wrote|strong="H3789"\w* \w in|strong="H3427"\w* \w the|strong="H7121"\w* \w letters|strong="H5612"\w*, saying, “\w Proclaim|strong="H7121"\w* \w a|strong="H3068"\w* \w fast|strong="H6685"\w*, \w and|strong="H5971"\w* \w set|strong="H3427"\w* \w Naboth|strong="H5022"\w* \w on|strong="H3427"\w* \w high|strong="H7218"\w* \w among|strong="H3427"\w* \w the|strong="H7121"\w* \w people|strong="H5971"\w*. +\v 10 \w Set|strong="H3427"\w* \w two|strong="H8147"\w* \w men|strong="H1121"\w*, \w wicked|strong="H1100"\w* \w fellows|strong="H1121"\w*, \w before|strong="H5048"\w* \w him|strong="H3318"\w*, \w and|strong="H1121"\w* let \w them|strong="H3318"\w* \w testify|strong="H5749"\w* \w against|strong="H5048"\w* \w him|strong="H3318"\w*, saying, ‘\w You|strong="H1288"\w* \w cursed|strong="H1288"\w* God \w and|strong="H1121"\w* \w the|strong="H1288"\w* \w king|strong="H4428"\w*!’ \w Then|strong="H3318"\w* \w carry|strong="H3318"\w* \w him|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H1121"\w* \w stone|strong="H5619"\w* \w him|strong="H3318"\w* \w to|strong="H3318"\w* \w death|strong="H4191"\w*.” +\p +\v 11 \w The|strong="H6213"\w* \w men|strong="H2205"\w* \w of|strong="H3427"\w* \w his|strong="H7971"\w* \w city|strong="H5892"\w*, \w even|strong="H6213"\w* \w the|strong="H6213"\w* \w elders|strong="H2205"\w* \w and|strong="H7971"\w* \w the|strong="H6213"\w* \w nobles|strong="H2715"\w* \w who|strong="H3427"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w his|strong="H7971"\w* \w city|strong="H5892"\w*, \w did|strong="H6213"\w* \w as|strong="H6213"\w* Jezebel \w had|strong="H3427"\w* instructed \w them|strong="H7971"\w* \w in|strong="H3427"\w* \w the|strong="H6213"\w* \w letters|strong="H5612"\w* \w which|strong="H5892"\w* \w she|strong="H5892"\w* \w had|strong="H3427"\w* \w written|strong="H3789"\w* \w and|strong="H7971"\w* \w sent|strong="H7971"\w* \w to|strong="H7971"\w* \w them|strong="H7971"\w*. +\v 12 \w They|strong="H5971"\w* \w proclaimed|strong="H7121"\w* \w a|strong="H3068"\w* \w fast|strong="H6685"\w*, \w and|strong="H5971"\w* \w set|strong="H3427"\w* \w Naboth|strong="H5022"\w* \w on|strong="H3427"\w* \w high|strong="H7218"\w* \w among|strong="H3427"\w* \w the|strong="H7121"\w* \w people|strong="H5971"\w*. +\v 13 \w The|strong="H1288"\w* \w two|strong="H8147"\w* \w men|strong="H1121"\w*, \w the|strong="H1288"\w* \w wicked|strong="H1100"\w* \w fellows|strong="H1121"\w*, \w came|strong="H3318"\w* \w in|strong="H3427"\w* \w and|strong="H1121"\w* \w sat|strong="H3427"\w* \w before|strong="H5048"\w* \w him|strong="H3318"\w*. \w The|strong="H1288"\w* \w wicked|strong="H1100"\w* \w fellows|strong="H1121"\w* \w testified|strong="H5749"\w* \w against|strong="H5048"\w* \w him|strong="H3318"\w*, even \w against|strong="H5048"\w* \w Naboth|strong="H5022"\w*, \w in|strong="H3427"\w* \w the|strong="H1288"\w* \w presence|strong="H5048"\w* \w of|strong="H1121"\w* \w the|strong="H1288"\w* \w people|strong="H5971"\w*, saying, “\w Naboth|strong="H5022"\w* \w cursed|strong="H1288"\w* God \w and|strong="H1121"\w* \w the|strong="H1288"\w* \w king|strong="H4428"\w*!” \w Then|strong="H3318"\w* \w they|strong="H5971"\w* \w carried|strong="H3318"\w* \w him|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H1288"\w* \w city|strong="H5892"\w* \w and|strong="H1121"\w* \w stoned|strong="H5619"\w* \w him|strong="H3318"\w* \w to|strong="H3318"\w* \w death|strong="H4191"\w* \w with|strong="H3427"\w* \w stones|strong="H5619"\w*. +\v 14 \w Then|strong="H7971"\w* they \w sent|strong="H7971"\w* \w to|strong="H4191"\w* Jezebel, saying, “\w Naboth|strong="H5022"\w* has been \w stoned|strong="H5619"\w* \w and|strong="H7971"\w* \w is|strong="H4191"\w* \w dead|strong="H4191"\w*.” +\p +\v 15 \w When|strong="H3588"\w* Jezebel \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w Naboth|strong="H5022"\w* \w had|strong="H1961"\w* \w been|strong="H1961"\w* \w stoned|strong="H5619"\w* \w and|strong="H6965"\w* \w was|strong="H1961"\w* \w dead|strong="H4191"\w*, Jezebel \w said|strong="H8085"\w* \w to|strong="H4191"\w* Ahab, “\w Arise|strong="H6965"\w*, \w take|strong="H3423"\w* \w possession|strong="H3423"\w* \w of|strong="H4191"\w* \w the|strong="H8085"\w* \w vineyard|strong="H3754"\w* \w of|strong="H4191"\w* \w Naboth|strong="H5022"\w* \w the|strong="H8085"\w* \w Jezreelite|strong="H3158"\w*, \w which|strong="H2416"\w* \w he|strong="H3588"\w* \w refused|strong="H3985"\w* \w to|strong="H4191"\w* \w give|strong="H5414"\w* \w you|strong="H3588"\w* \w for|strong="H3588"\w* \w money|strong="H3701"\w*; \w for|strong="H3588"\w* \w Naboth|strong="H5022"\w* \w is|strong="H3701"\w* \w not|strong="H5414"\w* \w alive|strong="H2416"\w*, \w but|strong="H3588"\w* \w dead|strong="H4191"\w*.” +\p +\v 16 \w When|strong="H3588"\w* Ahab \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w Naboth|strong="H5022"\w* \w was|strong="H1961"\w* \w dead|strong="H4191"\w*, Ahab \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w to|strong="H3381"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H8085"\w* \w vineyard|strong="H3754"\w* \w of|strong="H4191"\w* \w Naboth|strong="H5022"\w* \w the|strong="H8085"\w* \w Jezreelite|strong="H3158"\w*, \w to|strong="H3381"\w* \w take|strong="H3423"\w* \w possession|strong="H3423"\w* \w of|strong="H4191"\w* \w it|strong="H3588"\w*. +\p +\v 17 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* Elijah \w the|strong="H3068"\w* \w Tishbite|strong="H8664"\w*, \w saying|strong="H1697"\w*, +\v 18 “\w Arise|strong="H6965"\w*, \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w meet|strong="H7125"\w* Ahab \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w who|strong="H3478"\w* dwells \w in|strong="H3478"\w* \w Samaria|strong="H8111"\w*. \w Behold|strong="H2009"\w*, \w he|strong="H8033"\w* \w is|strong="H2009"\w* \w in|strong="H3478"\w* \w the|strong="H3423"\w* \w vineyard|strong="H3754"\w* \w of|strong="H4428"\w* \w Naboth|strong="H5022"\w*, \w where|strong="H8033"\w* \w he|strong="H8033"\w* \w has|strong="H3478"\w* \w gone|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w take|strong="H3423"\w* \w possession|strong="H3423"\w* \w of|strong="H4428"\w* \w it|strong="H3381"\w*. +\v 19 \w You|strong="H1696"\w* \w shall|strong="H3068"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H1571"\w*, \w saying|strong="H1696"\w*, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w Have|strong="H3068"\w* \w you|strong="H1696"\w* \w killed|strong="H7523"\w* \w and|strong="H3068"\w* \w also|strong="H1571"\w* \w taken|strong="H3423"\w* \w possession|strong="H3423"\w*?”’ \w You|strong="H1696"\w* \w shall|strong="H3068"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H1571"\w*, \w saying|strong="H1696"\w*, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w In|strong="H3068"\w* \w the|strong="H3541"\w* \w place|strong="H4725"\w* \w where|strong="H4725"\w* \w dogs|strong="H3611"\w* \w licked|strong="H3952"\w* \w the|strong="H3541"\w* \w blood|strong="H1818"\w* \w of|strong="H3068"\w* \w Naboth|strong="H5022"\w*, \w dogs|strong="H3611"\w* \w will|strong="H3068"\w* \w lick|strong="H3952"\w* \w your|strong="H3068"\w* \w blood|strong="H1818"\w*, \w even|strong="H1571"\w* yours.”’” +\p +\v 20 Ahab said \w to|strong="H3068"\w* Elijah, “\w Have|strong="H3068"\w* \w you|strong="H6213"\w* \w found|strong="H4672"\w* \w me|strong="H6213"\w*, \w my|strong="H3068"\w* enemy?” +\p \w He|strong="H6213"\w* answered, “\w I|strong="H3282"\w* \w have|strong="H3068"\w* \w found|strong="H4672"\w* \w you|strong="H6213"\w*, \w because|strong="H3282"\w* \w you|strong="H6213"\w* \w have|strong="H3068"\w* \w sold|strong="H4376"\w* \w yourself|strong="H6213"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*. +\v 21 \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3478"\w* \w bring|strong="H7451"\w* \w evil|strong="H7451"\w* \w on|strong="H7451"\w* \w you|strong="H5800"\w*, \w and|strong="H3478"\w* \w will|strong="H3478"\w* \w utterly|strong="H1197"\w* \w sweep|strong="H1197"\w* \w you|strong="H5800"\w* \w away|strong="H1197"\w* \w and|strong="H3478"\w* \w will|strong="H3478"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* Ahab everyone \w who|strong="H3478"\w* urinates \w against|strong="H1197"\w* \w a|strong="H3068"\w* \w wall|strong="H7023"\w*,\f + \fr 21:21 \ft or, male \f* \w and|strong="H3478"\w* \w him|strong="H3772"\w* \w who|strong="H3478"\w* \w is|strong="H3478"\w* \w shut|strong="H6113"\w* \w up|strong="H6113"\w* \w and|strong="H3478"\w* \w him|strong="H3772"\w* \w who|strong="H3478"\w* \w is|strong="H3478"\w* \w left|strong="H5800"\w* \w at|strong="H3478"\w* large \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\v 22 \w I|strong="H5414"\w* \w will|strong="H3478"\w* \w make|strong="H5414"\w* \w your|strong="H5414"\w* \w house|strong="H1004"\w* \w like|strong="H1004"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w*, \w and|strong="H1121"\w* \w like|strong="H1004"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Baasha|strong="H1201"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahijah, \w for|strong="H1004"\w* \w the|strong="H5414"\w* \w provocation|strong="H3708"\w* \w with|strong="H1004"\w* \w which|strong="H1004"\w* \w you|strong="H5414"\w* \w have|strong="H1121"\w* \w provoked|strong="H3707"\w* \w me|strong="H5414"\w* \w to|strong="H3478"\w* \w anger|strong="H3707"\w*, \w and|strong="H1121"\w* \w have|strong="H1121"\w* \w made|strong="H5414"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w sin|strong="H2398"\w*.” +\v 23 \w Yahweh|strong="H3068"\w* \w also|strong="H1571"\w* \w spoke|strong="H1696"\w* \w of|strong="H3068"\w* Jezebel, \w saying|strong="H1696"\w*, “\w The|strong="H3068"\w* \w dogs|strong="H3611"\w* \w will|strong="H3068"\w* eat Jezebel \w by|strong="H3068"\w* \w the|strong="H3068"\w* rampart \w of|strong="H3068"\w* \w Jezreel|strong="H3157"\w*. +\v 24 \w The|strong="H4191"\w* \w dogs|strong="H3611"\w* \w will|strong="H5892"\w* eat \w he|strong="H5892"\w* who \w dies|strong="H4191"\w* \w of|strong="H5892"\w* Ahab \w in|strong="H4191"\w* \w the|strong="H4191"\w* \w city|strong="H5892"\w*; \w and|strong="H8064"\w* \w the|strong="H4191"\w* \w birds|strong="H5775"\w* \w of|strong="H5892"\w* \w the|strong="H4191"\w* \w sky|strong="H8064"\w* \w will|strong="H5892"\w* eat \w he|strong="H5892"\w* who \w dies|strong="H4191"\w* \w in|strong="H4191"\w* \w the|strong="H4191"\w* \w field|strong="H7704"\w*.” +\p +\v 25 \w But|strong="H7535"\w* \w there|strong="H1961"\w* \w was|strong="H3068"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w like|strong="H1961"\w* Ahab, \w who|strong="H3068"\w* \w sold|strong="H4376"\w* \w himself|strong="H6213"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w whom|strong="H5869"\w* Jezebel \w his|strong="H3068"\w* wife \w stirred|strong="H3068"\w* \w up|strong="H5496"\w*. +\v 26 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w very|strong="H3966"\w* \w abominably|strong="H8581"\w* \w in|strong="H3478"\w* \w following|strong="H3212"\w* \w idols|strong="H1544"\w*, according \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* Amorites \w did|strong="H6213"\w*, \w whom|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w cast|strong="H3068"\w* \w out|strong="H3423"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\p +\v 27 \w When|strong="H1961"\w* Ahab \w heard|strong="H8085"\w* \w those|strong="H5921"\w* \w words|strong="H1697"\w*, \w he|strong="H5921"\w* \w tore|strong="H7167"\w* \w his|strong="H7760"\w* clothes, \w put|strong="H7760"\w* \w sackcloth|strong="H8242"\w* \w on|strong="H5921"\w* \w his|strong="H7760"\w* \w body|strong="H1320"\w*, \w fasted|strong="H6684"\w*, \w lay|strong="H7901"\w* \w in|strong="H5921"\w* \w sackcloth|strong="H8242"\w*, \w and|strong="H1980"\w* \w went|strong="H1980"\w* \w about|strong="H1961"\w* despondently. +\p +\v 28 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* Elijah \w the|strong="H3068"\w* \w Tishbite|strong="H8664"\w*, \w saying|strong="H1697"\w*, +\v 29 “\w See|strong="H7200"\w* \w how|strong="H3588"\w* Ahab humbles \w himself|strong="H3665"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*? \w Because|strong="H3588"\w* \w he|strong="H3588"\w* humbles \w himself|strong="H3665"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*, \w I|strong="H3588"\w* \w will|strong="H1121"\w* \w not|strong="H3808"\w* \w bring|strong="H7451"\w* \w the|strong="H6440"\w* \w evil|strong="H7451"\w* \w in|strong="H5921"\w* \w his|strong="H6440"\w* \w days|strong="H3117"\w*; \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H1121"\w* \w bring|strong="H7451"\w* \w the|strong="H6440"\w* \w evil|strong="H7451"\w* \w on|strong="H5921"\w* \w his|strong="H6440"\w* \w house|strong="H1004"\w* \w in|strong="H5921"\w* \w his|strong="H6440"\w* \w son|strong="H1121"\w*’s \w day|strong="H3117"\w*.” +\c 22 +\p +\v 1 \w They|strong="H8141"\w* \w continued|strong="H3427"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w* \w without|strong="H8141"\w* \w war|strong="H4421"\w* \w between|strong="H4421"\w* Syria \w and|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\v 2 \w In|strong="H8141"\w* \w the|strong="H1961"\w* \w third|strong="H7992"\w* \w year|strong="H8141"\w*, \w Jehoshaphat|strong="H3092"\w* \w the|strong="H1961"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w came|strong="H1961"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H1961"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. +\v 3 \w The|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* said \w to|strong="H3478"\w* \w his|strong="H3947"\w* \w servants|strong="H5650"\w*, “\w You|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Ramoth|strong="H7433"\w* \w Gilead|strong="H1568"\w* \w is|strong="H3027"\w* ours, \w and|strong="H3478"\w* \w we|strong="H3068"\w* \w do|strong="H3027"\w* \w nothing|strong="H2814"\w*, \w and|strong="H3478"\w* don’t \w take|strong="H3947"\w* \w it|strong="H3588"\w* \w out|strong="H3947"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria?” +\v 4 \w He|strong="H3478"\w* said \w to|strong="H3478"\w* \w Jehoshaphat|strong="H3092"\w*, “\w Will|strong="H4428"\w* \w you|strong="H3644"\w* \w go|strong="H3212"\w* \w with|strong="H3212"\w* \w me|strong="H3212"\w* \w to|strong="H3478"\w* \w battle|strong="H4421"\w* \w to|strong="H3478"\w* \w Ramoth|strong="H7433"\w* \w Gilead|strong="H1568"\w*?” +\p \w Jehoshaphat|strong="H3092"\w* said \w to|strong="H3478"\w* \w the|strong="H3092"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, “\w I|strong="H3478"\w* am \w as|strong="H3644"\w* \w you|strong="H3644"\w* \w are|strong="H5971"\w*, \w my|strong="H3478"\w* \w people|strong="H5971"\w* \w as|strong="H3644"\w* \w your|strong="H3478"\w* \w people|strong="H5971"\w*, \w my|strong="H3478"\w* \w horses|strong="H5483"\w* \w as|strong="H3644"\w* \w your|strong="H3478"\w* \w horses|strong="H5483"\w*.” +\v 5 \w Jehoshaphat|strong="H3092"\w* \w said|strong="H1697"\w* \w to|strong="H3478"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, “\w Please|strong="H4994"\w* \w inquire|strong="H1875"\w* \w first|strong="H3117"\w* \w for|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*.” +\p +\v 6 \w Then|strong="H5414"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w gathered|strong="H6908"\w* \w the|strong="H5921"\w* \w prophets|strong="H5030"\w* \w together|strong="H6908"\w*, \w about|strong="H5921"\w* four \w hundred|strong="H3967"\w* \w men|strong="H3478"\w*, \w and|strong="H3967"\w* said \w to|strong="H3478"\w* \w them|strong="H5414"\w*, “\w Should|strong="H3478"\w* \w I|strong="H5414"\w* \w go|strong="H3212"\w* \w against|strong="H5921"\w* \w Ramoth|strong="H7433"\w* \w Gilead|strong="H1568"\w* \w to|strong="H3478"\w* \w battle|strong="H4421"\w*, \w or|strong="H3027"\w* \w should|strong="H3478"\w* \w I|strong="H5414"\w* \w refrain|strong="H2308"\w*?” +\p \w They|strong="H5921"\w* said, “\w Go|strong="H3212"\w* \w up|strong="H5927"\w*; \w for|strong="H5921"\w* \w the|strong="H5921"\w* Lord \w will|strong="H4428"\w* \w deliver|strong="H5414"\w* \w it|strong="H5414"\w* \w into|strong="H5927"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*.” +\p +\v 7 \w But|strong="H3068"\w* \w Jehoshaphat|strong="H3092"\w* said, “Isn’t \w there|strong="H3068"\w* \w here|strong="H6311"\w* \w a|strong="H3068"\w* \w prophet|strong="H5030"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w that|strong="H3068"\w* \w we|strong="H3068"\w* \w may|strong="H3068"\w* \w inquire|strong="H1875"\w* \w of|strong="H3068"\w* \w him|strong="H1875"\w*?” +\p +\v 8 \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w said|strong="H3651"\w* \w to|strong="H3478"\w* \w Jehoshaphat|strong="H3092"\w*, “\w There|strong="H3068"\w* \w is|strong="H3068"\w* \w yet|strong="H5750"\w* \w one|strong="H3808"\w* \w man|strong="H1121"\w* \w by|strong="H5921"\w* \w whom|strong="H3588"\w* \w we|strong="H3068"\w* \w may|strong="H3068"\w* \w inquire|strong="H1875"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*, \w Micaiah|strong="H4321"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Imlah|strong="H3229"\w*; \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w hate|strong="H8130"\w* \w him|strong="H5921"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w does|strong="H3808"\w* \w not|strong="H3808"\w* \w prophesy|strong="H5012"\w* \w good|strong="H2896"\w* \w concerning|strong="H5921"\w* \w me|strong="H8130"\w*, \w but|strong="H3588"\w* \w evil|strong="H7451"\w*.” +\p \w Jehoshaphat|strong="H3092"\w* \w said|strong="H3651"\w*, “Don’t \w let|strong="H3808"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w say|strong="H3478"\w* \w so|strong="H3651"\w*.” +\p +\v 9 \w Then|strong="H4428"\w* \w the|strong="H7121"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w called|strong="H7121"\w* \w an|strong="H7121"\w* \w officer|strong="H5631"\w*, \w and|strong="H1121"\w* \w said|strong="H7121"\w*, “\w Quickly|strong="H4116"\w* get \w Micaiah|strong="H4321"\w* \w the|strong="H7121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Imlah|strong="H3229"\w*.” +\p +\v 10 \w Now|strong="H3478"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w Jehoshaphat|strong="H3092"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w were|strong="H3478"\w* \w sitting|strong="H3427"\w* \w each|strong="H3605"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w throne|strong="H3678"\w*, \w arrayed|strong="H3847"\w* \w in|strong="H3427"\w* \w their|strong="H3605"\w* robes, \w in|strong="H3427"\w* \w an|strong="H6440"\w* \w open|strong="H6440"\w* \w place|strong="H1637"\w* \w at|strong="H3427"\w* \w the|strong="H3605"\w* \w entrance|strong="H6607"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w* \w of|strong="H4428"\w* \w Samaria|strong="H8111"\w*; \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w* \w were|strong="H3478"\w* \w prophesying|strong="H5012"\w* \w before|strong="H6440"\w* \w them|strong="H5921"\w*. +\v 11 \w Zedekiah|strong="H6667"\w* \w the|strong="H3541"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Chenaanah|strong="H3668"\w* \w made|strong="H6213"\w* \w himself|strong="H6213"\w* \w horns|strong="H7161"\w* \w of|strong="H1121"\w* \w iron|strong="H1270"\w*, \w and|strong="H1121"\w* said, “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w With|strong="H3068"\w* \w these|strong="H6213"\w* \w you|strong="H5704"\w* \w will|strong="H3068"\w* \w push|strong="H5055"\w* \w the|strong="H3541"\w* Syrians, \w until|strong="H5704"\w* \w they|strong="H3068"\w* \w are|strong="H1121"\w* \w consumed|strong="H3615"\w*.’” +\v 12 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w* \w prophesied|strong="H5012"\w* \w so|strong="H3651"\w*, saying, “\w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w Ramoth|strong="H7433"\w* \w Gilead|strong="H1568"\w* \w and|strong="H3068"\w* \w prosper|strong="H6743"\w*; \w for|strong="H3027"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w deliver|strong="H5414"\w* \w it|strong="H5414"\w* \w into|strong="H5927"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*.” +\p +\v 13 \w The|strong="H7121"\w* \w messenger|strong="H4397"\w* \w who|strong="H5030"\w* \w went|strong="H1980"\w* \w to|strong="H1696"\w* \w call|strong="H7121"\w* \w Micaiah|strong="H4321"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H7121"\w*, \w saying|strong="H1697"\w*, “\w See|strong="H2009"\w* \w now|strong="H4994"\w*, \w the|strong="H7121"\w* \w prophets|strong="H5030"\w* \w declare|strong="H1696"\w* \w good|strong="H2896"\w* \w to|strong="H1696"\w* \w the|strong="H7121"\w* \w king|strong="H4428"\w* \w with|strong="H1980"\w* \w one|strong="H2896"\w* \w mouth|strong="H6310"\w*. \w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w your|strong="H1961"\w* \w word|strong="H1697"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H7121"\w* \w word|strong="H1697"\w* \w of|strong="H4428"\w* \w one|strong="H2896"\w* \w of|strong="H4428"\w* \w them|strong="H1992"\w*, \w and|strong="H1980"\w* \w speak|strong="H1696"\w* \w good|strong="H2896"\w*.” +\p +\v 14 \w Micaiah|strong="H4321"\w* \w said|strong="H1696"\w*, “\w As|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*, \w what|strong="H1696"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w speak|strong="H1696"\w*.” +\p +\v 15 \w When|strong="H3068"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w* \w come|strong="H5927"\w* \w to|strong="H3068"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w*, \w the|strong="H5414"\w* \w king|strong="H4428"\w* said \w to|strong="H3068"\w* \w him|strong="H5414"\w*, “\w Micaiah|strong="H4321"\w*, \w shall|strong="H3068"\w* \w we|strong="H3068"\w* \w go|strong="H3212"\w* \w to|strong="H3068"\w* \w Ramoth|strong="H7433"\w* \w Gilead|strong="H1568"\w* \w to|strong="H3068"\w* \w battle|strong="H4421"\w*, \w or|strong="H3068"\w* \w shall|strong="H3068"\w* \w we|strong="H3068"\w* \w forbear|strong="H2308"\w*?” +\p \w He|strong="H3068"\w* answered \w him|strong="H5414"\w*, “\w Go|strong="H3212"\w* \w up|strong="H5927"\w* \w and|strong="H3068"\w* \w prosper|strong="H6743"\w*; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w deliver|strong="H5414"\w* \w it|strong="H5414"\w* \w into|strong="H5927"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w*.” +\p +\v 16 \w The|strong="H3068"\w* \w king|strong="H4428"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H4428"\w*, “\w How|strong="H4100"\w* \w many|strong="H4100"\w* \w times|strong="H6471"\w* \w do|strong="H3068"\w* \w I|strong="H5704"\w* \w have|strong="H3068"\w* \w to|strong="H1696"\w* \w adjure|strong="H7650"\w* \w you|strong="H5704"\w* \w that|strong="H3068"\w* \w you|strong="H5704"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w* \w nothing|strong="H3808"\w* \w but|strong="H7535"\w* \w the|strong="H3068"\w* \w truth|strong="H3808"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*?” +\p +\v 17 \w He|strong="H3068"\w* said, “\w I|strong="H7200"\w* \w saw|strong="H7200"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w scattered|strong="H6327"\w* \w on|strong="H7200"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w*, \w as|strong="H3068"\w* \w sheep|strong="H6629"\w* \w that|strong="H7200"\w* \w have|strong="H3068"\w* \w no|strong="H3808"\w* \w shepherd|strong="H7462"\w*. \w Yahweh|strong="H3068"\w* said, ‘\w These|strong="H1992"\w* \w have|strong="H3068"\w* \w no|strong="H3808"\w* master. \w Let|strong="H3808"\w* \w them|strong="H1992"\w* \w each|strong="H3605"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w* \w in|strong="H3478"\w* \w peace|strong="H7965"\w*.’” +\p +\v 18 \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* said \w to|strong="H3478"\w* \w Jehoshaphat|strong="H3092"\w*, “Didn’t \w I|strong="H3588"\w* tell \w you|strong="H3588"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w would|strong="H3478"\w* \w not|strong="H3808"\w* \w prophesy|strong="H5012"\w* \w good|strong="H2896"\w* \w concerning|strong="H5921"\w* \w me|strong="H5921"\w*, \w but|strong="H3588"\w* \w evil|strong="H7451"\w*?” +\p +\v 19 Micaiah \w said|strong="H1697"\w*, “\w Therefore|strong="H3651"\w* \w hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*. \w I|strong="H5921"\w* \w saw|strong="H7200"\w* \w Yahweh|strong="H3068"\w* \w sitting|strong="H3427"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w throne|strong="H3678"\w*, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w* \w of|strong="H3068"\w* \w heaven|strong="H8064"\w* \w standing|strong="H5975"\w* \w by|strong="H5921"\w* \w him|strong="H5921"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w and|strong="H3068"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w left|strong="H8040"\w*. +\v 20 \w Yahweh|strong="H3068"\w* said, ‘\w Who|strong="H4310"\w* \w will|strong="H3068"\w* \w entice|strong="H6601"\w* Ahab, \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w may|strong="H3068"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H3068"\w* \w fall|strong="H5307"\w* \w at|strong="H3068"\w* \w Ramoth|strong="H7433"\w* \w Gilead|strong="H1568"\w*?’ \w One|strong="H2088"\w* said \w one|strong="H2088"\w* \w thing|strong="H2088"\w*, \w and|strong="H3068"\w* \w another|strong="H2088"\w* said \w another|strong="H2088"\w*. +\p +\v 21 \w A|strong="H3068"\w* \w spirit|strong="H7307"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H3068"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w said|strong="H3318"\w*, ‘\w I|strong="H6440"\w* \w will|strong="H3068"\w* \w entice|strong="H6601"\w* \w him|strong="H6440"\w*.’ +\p +\v 22 \w Yahweh|strong="H3068"\w* \w said|strong="H3651"\w* \w to|strong="H3318"\w* \w him|strong="H6213"\w*, ‘\w How|strong="H3651"\w*?’ +\p \w He|strong="H3651"\w* \w said|strong="H3651"\w*, ‘\w I|strong="H3651"\w* \w will|strong="H1961"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H6213"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w lying|strong="H8267"\w* \w spirit|strong="H7307"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w mouth|strong="H6310"\w* \w of|strong="H7307"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w prophets|strong="H5030"\w*.’ +\p \w He|strong="H3651"\w* \w said|strong="H3651"\w*, ‘\w You|strong="H3605"\w* \w will|strong="H1961"\w* \w entice|strong="H6601"\w* \w him|strong="H6213"\w*, \w and|strong="H6213"\w* \w will|strong="H1961"\w* \w also|strong="H1571"\w* \w prevail|strong="H3201"\w*. \w Go|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H6213"\w* \w do|strong="H6213"\w* \w so|strong="H3651"\w*.’ +\v 23 \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w*, \w behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w put|strong="H5414"\w* \w a|strong="H3068"\w* \w lying|strong="H8267"\w* \w spirit|strong="H7307"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w mouth|strong="H6310"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w these|strong="H1696"\w* \w your|strong="H3068"\w* \w prophets|strong="H5030"\w*; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w evil|strong="H7451"\w* \w concerning|strong="H5921"\w* \w you|strong="H5414"\w*.” +\p +\v 24 \w Then|strong="H1696"\w* \w Zedekiah|strong="H6667"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Chenaanah|strong="H3668"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w and|strong="H1121"\w* \w struck|strong="H5221"\w* \w Micaiah|strong="H4321"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w cheek|strong="H3895"\w*, \w and|strong="H1121"\w* \w said|strong="H1696"\w*, “\w Which|strong="H3068"\w* \w way|strong="H2088"\w* \w did|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w* \w go|strong="H5674"\w* \w from|strong="H5921"\w* \w me|strong="H5921"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H5921"\w*?” +\p +\v 25 \w Micaiah|strong="H4321"\w* said, “\w Behold|strong="H2005"\w*, \w you|strong="H3117"\w* \w will|strong="H3117"\w* \w see|strong="H7200"\w* \w on|strong="H3117"\w* \w that|strong="H7200"\w* \w day|strong="H3117"\w* \w when|strong="H3117"\w* \w you|strong="H3117"\w* go \w into|strong="H7200"\w* \w an|strong="H7200"\w* \w inner|strong="H2315"\w* \w room|strong="H2315"\w* \w to|strong="H3117"\w* \w hide|strong="H2247"\w* yourself.” +\p +\v 26 \w The|strong="H3947"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* said, “\w Take|strong="H3947"\w* \w Micaiah|strong="H4321"\w*, \w and|strong="H1121"\w* \w carry|strong="H3947"\w* \w him|strong="H7725"\w* \w back|strong="H7725"\w* \w to|strong="H7725"\w* Amon \w the|strong="H3947"\w* \w governor|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w city|strong="H5892"\w* \w and|strong="H1121"\w* \w to|strong="H7725"\w* \w Joash|strong="H3101"\w* \w the|strong="H3947"\w* \w king|strong="H4428"\w*’s \w son|strong="H1121"\w*. +\v 27 Say, ‘\w The|strong="H3541"\w* \w king|strong="H4428"\w* \w says|strong="H3541"\w*, “\w Put|strong="H7760"\w* \w this|strong="H2088"\w* fellow \w in|strong="H1004"\w* \w the|strong="H3541"\w* \w prison|strong="H1004"\w*, \w and|strong="H4428"\w* feed \w him|strong="H7760"\w* \w with|strong="H1004"\w* \w bread|strong="H3899"\w* \w of|strong="H4428"\w* \w affliction|strong="H3906"\w* \w and|strong="H4428"\w* \w with|strong="H1004"\w* \w water|strong="H4325"\w* \w of|strong="H4428"\w* \w affliction|strong="H3906"\w*, \w until|strong="H5704"\w* \w I|strong="H5704"\w* come \w in|strong="H1004"\w* \w peace|strong="H7965"\w*.”’” +\p +\v 28 \w Micaiah|strong="H4321"\w* \w said|strong="H1696"\w*, “If \w you|strong="H3605"\w* \w return|strong="H7725"\w* \w at|strong="H3068"\w* \w all|strong="H3605"\w* \w in|strong="H3068"\w* \w peace|strong="H7965"\w*, \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w spoken|strong="H1696"\w* \w by|strong="H3068"\w* \w me|strong="H7725"\w*.” \w He|strong="H3068"\w* \w said|strong="H1696"\w*, “\w Listen|strong="H8085"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* \w people|strong="H5971"\w*!” +\p +\v 29 \w So|strong="H5927"\w* \w the|strong="H5927"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w Jehoshaphat|strong="H3092"\w* \w the|strong="H5927"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w Ramoth|strong="H7433"\w* \w Gilead|strong="H1568"\w*. +\v 30 \w The|strong="H3092"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* said \w to|strong="H3478"\w* \w Jehoshaphat|strong="H3092"\w*, “\w I|strong="H3478"\w* \w will|strong="H4428"\w* \w disguise|strong="H2664"\w* myself \w and|strong="H3478"\w* \w go|strong="H4428"\w* into \w the|strong="H3092"\w* \w battle|strong="H4421"\w*, \w but|strong="H4428"\w* \w you|strong="H3847"\w* \w put|strong="H3847"\w* \w on|strong="H3847"\w* \w your|strong="H3478"\w* robes.” \w The|strong="H3092"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w disguised|strong="H2664"\w* himself \w and|strong="H3478"\w* \w went|strong="H3478"\w* into \w the|strong="H3092"\w* \w battle|strong="H4421"\w*. +\p +\v 31 \w Now|strong="H3588"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria \w had|strong="H3478"\w* \w commanded|strong="H6680"\w* \w the|strong="H3588"\w* \w thirty-two|strong="H7970"\w* \w captains|strong="H8269"\w* \w of|strong="H4428"\w* \w his|strong="H6680"\w* \w chariots|strong="H7393"\w*, saying, “Don’t \w fight|strong="H3898"\w* \w with|strong="H3898"\w* \w small|strong="H6996"\w* \w nor|strong="H3808"\w* \w great|strong="H1419"\w*, \w except|strong="H3588"\w* \w only|strong="H3588"\w* \w with|strong="H3898"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*.” +\p +\v 32 \w When|strong="H1961"\w* \w the|strong="H5921"\w* \w captains|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w chariots|strong="H7393"\w* \w saw|strong="H7200"\w* \w Jehoshaphat|strong="H3092"\w*, \w they|strong="H1992"\w* said, “\w Surely|strong="H1961"\w* \w that|strong="H7200"\w* \w is|strong="H1931"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*!” \w and|strong="H3478"\w* \w they|strong="H1992"\w* \w came|strong="H1961"\w* \w over|strong="H5921"\w* \w to|strong="H3478"\w* \w fight|strong="H3898"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*. \w Jehoshaphat|strong="H3092"\w* \w cried|strong="H2199"\w* \w out|strong="H2199"\w*. +\v 33 \w When|strong="H3588"\w* \w the|strong="H7200"\w* \w captains|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H7200"\w* \w chariots|strong="H7393"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w it|strong="H1931"\w* \w was|strong="H1961"\w* \w not|strong="H3808"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w they|strong="H3588"\w* \w turned|strong="H7725"\w* \w back|strong="H7725"\w* \w from|strong="H7725"\w* pursuing \w him|strong="H7725"\w*. +\v 34 \w A|strong="H3068"\w* certain man \w drew|strong="H4900"\w* \w his|strong="H5221"\w* \w bow|strong="H7198"\w* \w at|strong="H3478"\w* \w random|strong="H8537"\w*, \w and|strong="H3478"\w* \w struck|strong="H5221"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w between|strong="H4480"\w* \w the|strong="H3588"\w* \w joints|strong="H1694"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w armor|strong="H8302"\w*. \w Therefore|strong="H3588"\w* \w he|strong="H3588"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3588"\w* \w driver|strong="H7395"\w* \w of|strong="H4428"\w* \w his|strong="H5221"\w* \w chariot|strong="H7395"\w*, “\w Turn|strong="H2015"\w* \w around|strong="H3027"\w*, \w and|strong="H3478"\w* \w carry|strong="H3318"\w* \w me|strong="H4480"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w battle|strong="H4264"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H2470"\w* \w severely|strong="H2470"\w* \w wounded|strong="H5221"\w*.” +\v 35 \w The|strong="H3117"\w* \w battle|strong="H4421"\w* \w increased|strong="H5927"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*. \w The|strong="H3117"\w* \w king|strong="H4428"\w* \w was|strong="H1961"\w* \w propped|strong="H5975"\w* \w up|strong="H5927"\w* \w in|strong="H4428"\w* \w his|strong="H1961"\w* \w chariot|strong="H7393"\w* facing \w the|strong="H3117"\w* Syrians, \w and|strong="H4428"\w* \w died|strong="H4191"\w* \w at|strong="H4421"\w* \w evening|strong="H6153"\w*. \w The|strong="H3117"\w* \w blood|strong="H1818"\w* \w ran|strong="H1818"\w* \w out|strong="H3332"\w* \w of|strong="H4428"\w* \w the|strong="H3117"\w* \w wound|strong="H4347"\w* \w into|strong="H5927"\w* \w the|strong="H3117"\w* \w bottom|strong="H2436"\w* \w of|strong="H4428"\w* \w the|strong="H3117"\w* \w chariot|strong="H7393"\w*. +\v 36 \w A|strong="H3068"\w* \w cry|strong="H7440"\w* \w went|strong="H5674"\w* \w throughout|strong="H5674"\w* \w the|strong="H5674"\w* \w army|strong="H4264"\w* \w about|strong="H5892"\w* \w the|strong="H5674"\w* \w going|strong="H5674"\w* down \w of|strong="H5892"\w* \w the|strong="H5674"\w* \w sun|strong="H8121"\w*, saying, “\w Every|strong="H5892"\w* \w man|strong="H5674"\w* \w to|strong="H5674"\w* \w his|strong="H5674"\w* \w city|strong="H5892"\w*, \w and|strong="H5892"\w* \w every|strong="H5892"\w* \w man|strong="H5674"\w* \w to|strong="H5674"\w* \w his|strong="H5674"\w* country!” +\p +\v 37 \w So|strong="H4191"\w* \w the|strong="H4191"\w* \w king|strong="H4428"\w* \w died|strong="H4191"\w*, \w and|strong="H4428"\w* \w was|strong="H4428"\w* \w brought|strong="H4428"\w* \w to|strong="H4191"\w* \w Samaria|strong="H8111"\w*; \w and|strong="H4428"\w* \w they|strong="H4428"\w* \w buried|strong="H6912"\w* \w the|strong="H4191"\w* \w king|strong="H4428"\w* \w in|strong="H4428"\w* \w Samaria|strong="H8111"\w*. +\v 38 \w They|strong="H3068"\w* \w washed|strong="H7364"\w* \w the|strong="H5921"\w* \w chariot|strong="H7393"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w pool|strong="H1295"\w* \w of|strong="H3068"\w* \w Samaria|strong="H8111"\w*; \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w dogs|strong="H3611"\w* \w licked|strong="H3952"\w* \w up|strong="H5921"\w* \w his|strong="H3068"\w* \w blood|strong="H1818"\w* \w where|strong="H5921"\w* \w the|strong="H5921"\w* \w prostitutes|strong="H2185"\w* \w washed|strong="H7364"\w* \w themselves|strong="H7364"\w*, \w according|strong="H5921"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w spoke|strong="H1696"\w*. +\p +\v 39 \w Now|strong="H3117"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* Ahab, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w ivory|strong="H8127"\w* \w house|strong="H1004"\w* \w which|strong="H1992"\w* \w he|strong="H3117"\w* \w built|strong="H1129"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w built|strong="H1129"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*? +\v 40 So Ahab \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H8478"\w* fathers; \w and|strong="H1121"\w* Ahaziah \w his|strong="H8478"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H4427"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\p +\v 41 \w Jehoshaphat|strong="H3092"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Asa \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w Judah|strong="H3063"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* fourth \w year|strong="H8141"\w* \w of|strong="H1121"\w* Ahab \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 42 \w Jehoshaphat|strong="H3092"\w* \w was|strong="H8034"\w* \w thirty-five|strong="H7970"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H2568"\w* began \w to|strong="H3389"\w* \w reign|strong="H4427"\w*; \w and|strong="H1121"\w* \w he|strong="H2568"\w* \w reigned|strong="H4427"\w* \w twenty-five|strong="H6242"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H3092"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Azubah|strong="H5806"\w* \w the|strong="H3092"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Shilhi|strong="H7977"\w*. +\v 43 \w He|strong="H6213"\w* \w walked|strong="H3212"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* Asa \w his|strong="H3605"\w* father. \w He|strong="H6213"\w* didn’t \w turn|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H4480"\w* \w it|strong="H6213"\w*, \w doing|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w right|strong="H3477"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*. However, \w the|strong="H3605"\w* \w high|strong="H6213"\w* \w places|strong="H3605"\w* \w were|strong="H5869"\w* \w not|strong="H3808"\w* \w taken|strong="H5493"\w* \w away|strong="H5493"\w*. \w The|strong="H3605"\w* \w people|strong="H3808"\w* still \w sacrificed|strong="H6213"\w* \w and|strong="H3068"\w* burned incense \w on|strong="H1870"\w* \w the|strong="H3605"\w* \w high|strong="H6213"\w* \w places|strong="H3605"\w*. +\v 44 Jehoshaphat \w made|strong="H2076"\w* \w peace|strong="H2076"\w* \w with|strong="H5971"\w* \w the|strong="H5493"\w* king \w of|strong="H5971"\w* \w Israel|strong="H5971"\w*. +\p +\v 45 \w Now|strong="H3478"\w* \w the|strong="H5973"\w* rest \w of|strong="H4428"\w* \w the|strong="H5973"\w* acts \w of|strong="H4428"\w* \w Jehoshaphat|strong="H3092"\w*, \w and|strong="H3478"\w* \w his|strong="H3478"\w* \w might|strong="H3478"\w* \w that|strong="H3478"\w* \w he|strong="H3478"\w* showed, \w and|strong="H3478"\w* how \w he|strong="H3478"\w* fought, aren’t \w they|strong="H3478"\w* written \w in|strong="H3478"\w* \w the|strong="H5973"\w* book \w of|strong="H4428"\w* \w the|strong="H5973"\w* chronicles \w of|strong="H4428"\w* \w the|strong="H5973"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* Judah? +\v 46 \w The|strong="H5921"\w* \w remnant|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* sodomites, \w that|strong="H3117"\w* remained \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w his|strong="H5921"\w* father Asa, \w he|strong="H3117"\w* \w put|strong="H6213"\w* away \w out|strong="H5921"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* land. +\v 47 \w There|strong="H3117"\w* \w was|strong="H3117"\w* \w no|strong="H4480"\w* king \w in|strong="H3117"\w* Edom. \w A|strong="H3068"\w* deputy ruled. +\v 48 Jehoshaphat made ships \w of|strong="H4428"\w* Tarshish \w to|strong="H4428"\w* \w go|strong="H4428"\w* \w to|strong="H4428"\w* Ophir \w for|strong="H4428"\w* gold, \w but|strong="H4428"\w* \w they|strong="H4428"\w* didn’t \w go|strong="H4428"\w*, \w for|strong="H4428"\w* \w the|strong="H5324"\w* ships wrecked \w at|strong="H4428"\w* Ezion Geber. +\v 49 \w Then|strong="H1980"\w* Ahaziah \w the|strong="H3588"\w* son \w of|strong="H2091"\w* Ahab said \w to|strong="H1980"\w* \w Jehoshaphat|strong="H3092"\w*, “\w Let|strong="H3808"\w* \w my|strong="H3588"\w* servants \w go|strong="H1980"\w* \w with|strong="H1980"\w* \w your|strong="H3588"\w* servants \w in|strong="H1980"\w* \w the|strong="H3588"\w* ships.” \w But|strong="H3588"\w* \w Jehoshaphat|strong="H3092"\w* \w would|strong="H1980"\w* \w not|strong="H3808"\w*. +\v 50 \w Jehoshaphat|strong="H3092"\w* slept \w with|strong="H5973"\w* \w his|strong="H3808"\w* fathers, \w and|strong="H1121"\w* \w was|strong="H1121"\w* buried \w with|strong="H5973"\w* \w his|strong="H3808"\w* fathers \w in|strong="H3212"\w* \w his|strong="H3808"\w* \w father|strong="H1121"\w* \w David|strong="H5973"\w*’s city. Jehoram \w his|strong="H3808"\w* \w son|strong="H1121"\w* reigned \w in|strong="H3212"\w* \w his|strong="H3808"\w* place. +\p +\v 51 Ahaziah \w the|strong="H8478"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahab began \w to|strong="H1121"\w* \w reign|strong="H4427"\w* \w over|strong="H4427"\w* Israel \w in|strong="H6912"\w* Samaria \w in|strong="H6912"\w* \w the|strong="H8478"\w* seventeenth \w year|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoshaphat|strong="H3092"\w* \w king|strong="H4427"\w* \w of|strong="H1121"\w* Judah, \w and|strong="H1121"\w* \w he|strong="H1732"\w* \w reigned|strong="H4427"\w* \w two|strong="H4427"\w* years \w over|strong="H4427"\w* Israel. +\v 52 \w He|strong="H5921"\w* \w did|strong="H3478"\w* \w that|strong="H3478"\w* \w which|strong="H3478"\w* \w was|strong="H3478"\w* evil \w in|strong="H8141"\w* \w Yahweh|strong="H3068"\w*’s sight, \w and|strong="H1121"\w* walked \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w way|strong="H5921"\w* \w of|strong="H1121"\w* \w his|strong="H5921"\w* \w father|strong="H1121"\w*, \w and|strong="H1121"\w* \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w way|strong="H5921"\w* \w of|strong="H1121"\w* \w his|strong="H5921"\w* mother, \w and|strong="H1121"\w* \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w way|strong="H5921"\w* \w of|strong="H1121"\w* Jeroboam \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Nebat, \w in|strong="H8141"\w* \w which|strong="H3478"\w* \w he|strong="H5921"\w* \w made|strong="H4427"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* sin. +\v 53 \w He|strong="H6213"\w* \w served|strong="H6213"\w* Baal \w and|strong="H1121"\w* worshiped \w him|strong="H6213"\w*, \w and|strong="H1121"\w* provoked \w Yahweh|strong="H3068"\w*, \w the|strong="H6213"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* anger \w in|strong="H3478"\w* \w all|strong="H6213"\w* \w the|strong="H6213"\w* \w ways|strong="H1870"\w* \w that|strong="H3068"\w* \w his|strong="H3068"\w* \w father|strong="H1121"\w* \w had|strong="H3068"\w* \w done|strong="H6213"\w* \w so|strong="H6213"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/13-2KIeng-web.usfm b/bibles/eng-web_usfm/13-2KIeng-web.usfm new file mode 100644 index 0000000..f523897 --- /dev/null +++ b/bibles/eng-web_usfm/13-2KIeng-web.usfm @@ -0,0 +1,1078 @@ +\id 2KI World English Bible (WEB) +\ide UTF-8 +\h 2 Kings +\toc1 The Second Book of Kings +\toc2 2 Kings +\toc3 2Ki +\mt1 The Second Book of Kings +\c 1 +\p +\v 1 \w Moab|strong="H4124"\w* \w rebelled|strong="H6586"\w* \w against|strong="H6586"\w* \w Israel|strong="H3478"\w* after \w the|strong="H3478"\w* \w death|strong="H4194"\w* \w of|strong="H4194"\w* Ahab. +\p +\v 2 Ahaziah \w fell|strong="H5307"\w* \w down|strong="H5307"\w* \w through|strong="H1157"\w* \w the|strong="H7971"\w* \w lattice|strong="H7639"\w* \w in|strong="H3212"\w* \w his|strong="H7971"\w* \w upper|strong="H5944"\w* \w room|strong="H5944"\w* \w that|strong="H4397"\w* \w was|strong="H2088"\w* \w in|strong="H3212"\w* \w Samaria|strong="H8111"\w*, \w and|strong="H7971"\w* \w was|strong="H2088"\w* \w sick|strong="H2470"\w*. \w So|strong="H7971"\w* \w he|strong="H7971"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w*, \w and|strong="H7971"\w* said \w to|strong="H3212"\w* \w them|strong="H7971"\w*, “\w Go|strong="H3212"\w*, \w inquire|strong="H1875"\w* \w of|strong="H4397"\w* Baal Zebub, \w the|strong="H7971"\w* \w god|strong="H7971"\w* \w of|strong="H4397"\w* \w Ekron|strong="H6138"\w*, whether \w I|strong="H2088"\w* \w will|strong="H5307"\w* \w recover|strong="H2421"\w* \w of|strong="H4397"\w* \w this|strong="H2088"\w* \w sickness|strong="H2483"\w*.” +\p +\v 3 \w But|strong="H1696"\w* \w Yahweh|strong="H3068"\w*’s\f + \fr 1:3 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w angel|strong="H4397"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Elijah|strong="H1696"\w* \w the|strong="H3068"\w* \w Tishbite|strong="H8664"\w*, “\w Arise|strong="H6965"\w*, \w go|strong="H1980"\w* \w up|strong="H5927"\w* \w to|strong="H1696"\w* \w meet|strong="H7125"\w* \w the|strong="H3068"\w* \w messengers|strong="H4397"\w* \w of|strong="H4428"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Samaria|strong="H8111"\w*, \w and|strong="H1980"\w* \w tell|strong="H1696"\w* \w them|strong="H5927"\w*, ‘\w Is|strong="H3068"\w* \w it|strong="H5927"\w* \w because|strong="H1097"\w* \w there|strong="H5927"\w* \w is|strong="H3068"\w* \w no|strong="H1097"\w* \w God|strong="H3068"\w*\f + \fr 1:3 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w in|strong="H1980"\w* \w Israel|strong="H3478"\w* \w that|strong="H3068"\w* \w you|strong="H1696"\w* \w go|strong="H1980"\w* \w to|strong="H1696"\w* \w inquire|strong="H1875"\w* \w of|strong="H4428"\w* Baal Zebub, \w the|strong="H3068"\w* \w god|strong="H3068"\w* \w of|strong="H4428"\w* \w Ekron|strong="H6138"\w*? +\v 4 \w Now|strong="H3588"\w* \w therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w You|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w come|strong="H5927"\w* \w down|strong="H3381"\w* \w from|strong="H4480"\w* \w the|strong="H3588"\w* \w bed|strong="H4296"\w* \w where|strong="H8033"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w gone|strong="H5927"\w* \w up|strong="H5927"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w surely|strong="H4191"\w* \w die|strong="H4191"\w*.”’” \w Then|strong="H3651"\w* Elijah \w departed|strong="H3212"\w*. +\p +\v 5 \w The|strong="H7725"\w* \w messengers|strong="H4397"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w him|strong="H7725"\w*, \w and|strong="H7725"\w* \w he|strong="H4397"\w* said \w to|strong="H7725"\w* \w them|strong="H7725"\w*, “\w Why|strong="H4100"\w* \w is|strong="H2088"\w* \w it|strong="H7725"\w* \w that|strong="H4397"\w* \w you|strong="H7725"\w* \w have|strong="H2088"\w* \w returned|strong="H7725"\w*?” +\p +\v 6 \w They|strong="H3588"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H7971"\w*, “\w A|strong="H3068"\w* \w man|strong="H4191"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H1696"\w* \w meet|strong="H7125"\w* \w us|strong="H7725"\w*, \w and|strong="H3478"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w us|strong="H7725"\w*, ‘\w Go|strong="H3212"\w*, \w return|strong="H7725"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w who|strong="H3068"\w* \w sent|strong="H7971"\w* \w you|strong="H3588"\w*, \w and|strong="H3478"\w* \w tell|strong="H1696"\w* \w him|strong="H7971"\w*, “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w Is|strong="H3068"\w* \w it|strong="H3588"\w* \w because|strong="H3588"\w* \w there|strong="H8033"\w* \w is|strong="H3068"\w* \w no|strong="H3808"\w* \w God|strong="H3068"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w send|strong="H7971"\w* \w to|strong="H1696"\w* \w inquire|strong="H1875"\w* \w of|strong="H4428"\w* Baal Zebub, \w the|strong="H3588"\w* \w god|strong="H3068"\w* \w of|strong="H4428"\w* \w Ekron|strong="H6138"\w*? \w Therefore|strong="H3651"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w come|strong="H5927"\w* \w down|strong="H3381"\w* \w from|strong="H4480"\w* \w the|strong="H3588"\w* \w bed|strong="H4296"\w* \w where|strong="H8033"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w gone|strong="H5927"\w* \w up|strong="H5927"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w surely|strong="H4191"\w* \w die|strong="H4191"\w*.’”’” +\p +\v 7 \w He|strong="H1696"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H5927"\w*, “\w What|strong="H4100"\w* \w kind|strong="H4941"\w* \w of|strong="H1697"\w* man \w was|strong="H1697"\w* \w he|strong="H1696"\w* \w who|strong="H4100"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H1696"\w* \w meet|strong="H7125"\w* \w you|strong="H4100"\w* \w and|strong="H4941"\w* \w told|strong="H1696"\w* \w you|strong="H4100"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w*?” +\p +\v 8 \w They|strong="H1931"\w* answered \w him|strong="H1931"\w*, “\w He|strong="H1931"\w* \w was|strong="H1931"\w* \w a|strong="H3068"\w* \w hairy|strong="H8181"\w* \w man|strong="H1167"\w*, \w and|strong="H4975"\w* wearing \w a|strong="H3068"\w* \w leather|strong="H5785"\w* belt around \w his|strong="H1931"\w* \w waist|strong="H4975"\w*.” +\p \w He|strong="H1931"\w* said, “\w It|strong="H1931"\w*’s Elijah \w the|strong="H1931"\w* \w Tishbite|strong="H8664"\w*.” +\p +\v 9 \w Then|strong="H1696"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w sent|strong="H7971"\w* \w a|strong="H3068"\w* \w captain|strong="H8269"\w* \w of|strong="H4428"\w* \w fifty|strong="H2572"\w* \w with|strong="H1696"\w* \w his|strong="H7971"\w* \w fifty|strong="H2572"\w* \w to|strong="H1696"\w* \w him|strong="H5921"\w*. \w He|strong="H5921"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H1696"\w* \w him|strong="H5921"\w*; \w and|strong="H7971"\w* \w behold|strong="H2009"\w*,\f + \fr 1:9 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w he|strong="H5921"\w* \w was|strong="H4428"\w* \w sitting|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w top|strong="H7218"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w hill|strong="H2022"\w*. \w He|strong="H5921"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5921"\w*, “\w Man|strong="H7218"\w* \w of|strong="H4428"\w* \w God|strong="H7971"\w*, \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w has|strong="H4428"\w* \w said|strong="H1696"\w*, ‘\w Come|strong="H5927"\w* \w down|strong="H3381"\w*!’” +\p +\v 10 \w Elijah|strong="H1696"\w* \w answered|strong="H6030"\w* \w to|strong="H1696"\w* \w the|strong="H4480"\w* \w captain|strong="H8269"\w* \w of|strong="H8269"\w* \w fifty|strong="H2572"\w*, “If \w I|strong="H4480"\w* am \w a|strong="H3068"\w* \w man|strong="H6030"\w* \w of|strong="H8269"\w* \w God|strong="H8064"\w*, \w then|strong="H6030"\w* \w let|strong="H3381"\w* fire \w come|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w sky|strong="H8064"\w* \w and|strong="H6030"\w* consume \w you|strong="H4480"\w* \w and|strong="H6030"\w* \w your|strong="H4480"\w* \w fifty|strong="H2572"\w*!” \w Then|strong="H6030"\w* fire \w came|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w sky|strong="H8064"\w*, \w and|strong="H6030"\w* consumed \w him|strong="H3381"\w* \w and|strong="H6030"\w* \w his|strong="H4480"\w* \w fifty|strong="H2572"\w*. +\p +\v 11 \w Again|strong="H7725"\w* \w he|strong="H7971"\w* \w sent|strong="H7971"\w* \w to|strong="H1696"\w* \w him|strong="H7971"\w* another \w captain|strong="H8269"\w* \w of|strong="H4428"\w* \w fifty|strong="H2572"\w* \w with|strong="H1696"\w* \w his|strong="H7971"\w* \w fifty|strong="H2572"\w*. \w He|strong="H7971"\w* \w answered|strong="H6030"\w* \w him|strong="H7971"\w*, “\w Man|strong="H6030"\w* \w of|strong="H4428"\w* \w God|strong="H7971"\w*, \w the|strong="H3541"\w* \w king|strong="H4428"\w* \w has|strong="H4428"\w* \w said|strong="H1696"\w*, ‘\w Come|strong="H3381"\w* \w down|strong="H3381"\w* \w quickly|strong="H4120"\w*!’” +\p +\v 12 \w Elijah|strong="H1696"\w* \w answered|strong="H6030"\w* \w them|strong="H3381"\w*, “If \w I|strong="H4480"\w* am \w a|strong="H3068"\w* \w man|strong="H6030"\w* \w of|strong="H4480"\w* \w God|strong="H8064"\w*, \w then|strong="H6030"\w* \w let|strong="H3381"\w* fire \w come|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w sky|strong="H8064"\w* \w and|strong="H6030"\w* consume \w you|strong="H4480"\w* \w and|strong="H6030"\w* \w your|strong="H4480"\w* \w fifty|strong="H2572"\w*!” \w Then|strong="H6030"\w* \w God|strong="H8064"\w*’s fire \w came|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w sky|strong="H8064"\w*, \w and|strong="H6030"\w* consumed \w him|strong="H3381"\w* \w and|strong="H6030"\w* \w his|strong="H4480"\w* \w fifty|strong="H2572"\w*. +\p +\v 13 \w Again|strong="H7725"\w* \w he|strong="H5921"\w* \w sent|strong="H7971"\w* \w the|strong="H5921"\w* \w captain|strong="H8269"\w* \w of|strong="H8269"\w* \w a|strong="H3068"\w* \w third|strong="H7992"\w* \w fifty|strong="H2572"\w* \w with|strong="H1696"\w* \w his|strong="H7971"\w* \w fifty|strong="H2572"\w*. \w The|strong="H5921"\w* \w third|strong="H7992"\w* \w captain|strong="H8269"\w* \w of|strong="H8269"\w* \w fifty|strong="H2572"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w*, \w and|strong="H7971"\w* \w came|strong="H5927"\w* \w and|strong="H7971"\w* \w fell|strong="H5927"\w* \w on|strong="H5921"\w* \w his|strong="H7971"\w* \w knees|strong="H1290"\w* \w before|strong="H5048"\w* \w Elijah|strong="H1696"\w*, \w and|strong="H7971"\w* \w begged|strong="H2603"\w* \w him|strong="H5921"\w*, \w and|strong="H7971"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5921"\w*, “\w Man|strong="H5315"\w* \w of|strong="H8269"\w* \w God|strong="H7971"\w*, \w please|strong="H4994"\w* \w let|strong="H7971"\w* \w my|strong="H5921"\w* \w life|strong="H5315"\w* \w and|strong="H7971"\w* \w the|strong="H5921"\w* \w life|strong="H5315"\w* \w of|strong="H8269"\w* \w these|strong="H1696"\w* \w fifty|strong="H2572"\w* \w of|strong="H8269"\w* \w your|strong="H5921"\w* \w servants|strong="H5650"\w* \w be|strong="H5315"\w* \w precious|strong="H3365"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w sight|strong="H5869"\w*. +\v 14 \w Behold|strong="H2009"\w*, fire \w came|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w sky|strong="H8064"\w* \w and|strong="H8064"\w* consumed \w the|strong="H4480"\w* last \w two|strong="H8147"\w* \w captains|strong="H8269"\w* \w of|strong="H8269"\w* \w fifty|strong="H2572"\w* \w with|strong="H3381"\w* \w their|strong="H8064"\w* \w fifties|strong="H2572"\w*. \w But|strong="H2009"\w* \w now|strong="H6258"\w* \w let|strong="H3381"\w* \w my|strong="H4480"\w* \w life|strong="H5315"\w* \w be|strong="H5315"\w* \w precious|strong="H3365"\w* \w in|strong="H5315"\w* \w your|strong="H4480"\w* \w sight|strong="H5869"\w*.” +\p +\v 15 \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Elijah|strong="H1696"\w*, “\w Go|strong="H3381"\w* \w down|strong="H3381"\w* \w with|strong="H3068"\w* \w him|strong="H6440"\w*. Don’t \w be|strong="H3068"\w* \w afraid|strong="H3372"\w* \w of|strong="H4428"\w* \w him|strong="H6440"\w*.” +\p \w Then|strong="H6965"\w* \w he|strong="H3068"\w* \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w with|strong="H3068"\w* \w him|strong="H6440"\w* \w to|strong="H1696"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*. +\v 16 \w He|strong="H3588"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H7971"\w*, “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w Because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H1696"\w* \w inquire|strong="H1875"\w* \w of|strong="H3068"\w* Baal Zebub, \w the|strong="H3588"\w* \w god|strong="H3068"\w* \w of|strong="H3068"\w* \w Ekron|strong="H6138"\w*, \w is|strong="H3068"\w* \w it|strong="H3588"\w* \w because|strong="H3588"\w* \w there|strong="H8033"\w* \w is|strong="H3068"\w* \w no|strong="H3808"\w* \w God|strong="H3068"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w* \w to|strong="H1696"\w* \w inquire|strong="H1875"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w word|strong="H1697"\w*? \w Therefore|strong="H3651"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w come|strong="H5927"\w* \w down|strong="H3381"\w* \w from|strong="H4480"\w* \w the|strong="H3588"\w* \w bed|strong="H4296"\w* \w where|strong="H8033"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w gone|strong="H5927"\w* \w up|strong="H5927"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w surely|strong="H4191"\w* \w die|strong="H4191"\w*.’” +\p +\v 17 \w So|strong="H1961"\w* \w he|strong="H3588"\w* \w died|strong="H4191"\w* according \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w Elijah|strong="H1696"\w* \w had|strong="H3068"\w* \w spoken|strong="H1696"\w*. \w Jehoram|strong="H3088"\w* \w began|strong="H3063"\w* \w to|strong="H1696"\w* \w reign|strong="H4427"\w* \w in|strong="H8141"\w* \w his|strong="H3068"\w* \w place|strong="H8478"\w* \w in|strong="H8141"\w* \w the|strong="H3588"\w* \w second|strong="H8147"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Jehoram|strong="H3088"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoshaphat|strong="H3092"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H3068"\w* \w no|strong="H3808"\w* \w son|strong="H1121"\w*. +\v 18 \w Now|strong="H3117"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* Ahaziah \w which|strong="H1992"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*? +\c 2 +\p +\v 1 \w When|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w about|strong="H1961"\w* \w to|strong="H3212"\w* \w take|strong="H1961"\w* Elijah \w up|strong="H5927"\w* \w by|strong="H3068"\w* \w a|strong="H3068"\w* \w whirlwind|strong="H5591"\w* \w into|strong="H5927"\w* \w heaven|strong="H8064"\w*, Elijah \w went|strong="H3212"\w* \w with|strong="H3068"\w* Elisha \w from|strong="H4480"\w* \w Gilgal|strong="H1537"\w*. +\v 2 Elijah said \w to|strong="H5704"\w* \w Elisha|strong="H3427"\w*, “\w Please|strong="H4994"\w* \w wait|strong="H3427"\w* \w here|strong="H6311"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w sent|strong="H7971"\w* \w me|strong="H4994"\w* \w as|strong="H5704"\w* \w far|strong="H5704"\w* \w as|strong="H5704"\w* \w Bethel|strong="H1008"\w*.” +\p \w Elisha|strong="H3427"\w* said, “\w As|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H5315"\w*, \w and|strong="H3068"\w* \w as|strong="H5704"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w* \w lives|strong="H5315"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3588"\w* \w leave|strong="H5800"\w* \w you|strong="H3588"\w*.” \w So|strong="H7971"\w* \w they|strong="H3588"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H5704"\w* \w Bethel|strong="H1008"\w*. +\p +\v 3 \w The|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w prophets|strong="H5030"\w* \w who|strong="H3068"\w* \w were|strong="H1121"\w* \w at|strong="H5921"\w* \w Bethel|strong="H1008"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* Elisha, \w and|strong="H1121"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H5921"\w*, “\w Do|strong="H3068"\w* \w you|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w take|strong="H3947"\w* \w away|strong="H3947"\w* \w your|strong="H3068"\w* master \w from|strong="H3318"\w* \w over|strong="H5921"\w* \w you|strong="H3588"\w* \w today|strong="H3117"\w*?” +\p \w He|strong="H3588"\w* \w said|strong="H3318"\w*, “\w Yes|strong="H3588"\w*, \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w it|strong="H5921"\w*. Hold \w your|strong="H3068"\w* \w peace|strong="H2814"\w*.” +\p +\v 4 Elijah said \w to|strong="H3068"\w* \w him|strong="H7971"\w*, “\w Elisha|strong="H3427"\w*, \w please|strong="H4994"\w* \w wait|strong="H3427"\w* \w here|strong="H6311"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w sent|strong="H7971"\w* \w me|strong="H4994"\w* \w to|strong="H3068"\w* \w Jericho|strong="H3405"\w*.” +\p \w He|strong="H3588"\w* said, “\w As|strong="H5315"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H5315"\w*, \w and|strong="H3068"\w* \w as|strong="H5315"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w* \w lives|strong="H5315"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3588"\w* \w leave|strong="H5800"\w* \w you|strong="H3588"\w*.” \w So|strong="H7971"\w* \w they|strong="H3588"\w* \w came|strong="H3068"\w* \w to|strong="H3068"\w* \w Jericho|strong="H3405"\w*. +\p +\v 5 \w The|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w prophets|strong="H5030"\w* \w who|strong="H3068"\w* \w were|strong="H1121"\w* \w at|strong="H5921"\w* \w Jericho|strong="H3405"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H3068"\w* Elisha, \w and|strong="H1121"\w* said \w to|strong="H3068"\w* \w him|strong="H5921"\w*, “\w Do|strong="H3068"\w* \w you|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w take|strong="H3947"\w* \w away|strong="H3947"\w* \w your|strong="H3068"\w* master \w from|strong="H5921"\w* \w over|strong="H5921"\w* \w you|strong="H3588"\w* \w today|strong="H3117"\w*?” +\p \w He|strong="H3588"\w* answered, “\w Yes|strong="H3588"\w*, \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w it|strong="H5921"\w*. Hold \w your|strong="H3068"\w* \w peace|strong="H2814"\w*.” +\p +\v 6 Elijah said \w to|strong="H3212"\w* \w him|strong="H7971"\w*, “\w Please|strong="H4994"\w* \w wait|strong="H3427"\w* \w here|strong="H6311"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w sent|strong="H7971"\w* \w me|strong="H4994"\w* \w to|strong="H3212"\w* \w the|strong="H3588"\w* \w Jordan|strong="H3383"\w*.” +\p \w He|strong="H3588"\w* said, “\w As|strong="H5315"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H5315"\w*, \w and|strong="H3068"\w* \w as|strong="H5315"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w* \w lives|strong="H5315"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3588"\w* \w leave|strong="H5800"\w* \w you|strong="H3588"\w*.” \w Then|strong="H7971"\w* \w they|strong="H3588"\w* \w both|strong="H8147"\w* \w went|strong="H3212"\w* \w on|strong="H3427"\w*. +\v 7 \w Fifty|strong="H2572"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w prophets|strong="H5030"\w* \w went|strong="H1980"\w* \w and|strong="H1121"\w* \w stood|strong="H5975"\w* \w opposite|strong="H5048"\w* \w them|strong="H5921"\w* \w at|strong="H5921"\w* \w a|strong="H3068"\w* \w distance|strong="H7350"\w*; \w and|strong="H1121"\w* \w they|strong="H5921"\w* \w both|strong="H8147"\w* \w stood|strong="H5975"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w*. +\v 8 Elijah \w took|strong="H3947"\w* \w his|strong="H3947"\w* mantle, \w and|strong="H8147"\w* \w rolled|strong="H5674"\w* \w it|strong="H5221"\w* \w up|strong="H3947"\w*, \w and|strong="H8147"\w* \w struck|strong="H5221"\w* \w the|strong="H3947"\w* \w waters|strong="H4325"\w*; \w and|strong="H8147"\w* \w they|strong="H5221"\w* \w were|strong="H4325"\w* \w divided|strong="H2673"\w* \w here|strong="H2008"\w* \w and|strong="H8147"\w* \w there|strong="H2008"\w*, \w so|strong="H3947"\w* \w that|strong="H4325"\w* \w they|strong="H5221"\w* \w both|strong="H8147"\w* \w went|strong="H5674"\w* \w over|strong="H5674"\w* \w on|strong="H5674"\w* \w dry|strong="H2724"\w* \w ground|strong="H2724"\w*. +\v 9 \w When|strong="H1961"\w* \w they|strong="H2962"\w* \w had|strong="H1961"\w* \w gone|strong="H5674"\w* \w over|strong="H5674"\w*, Elijah \w said|strong="H6310"\w* \w to|strong="H1961"\w* Elisha, “\w Ask|strong="H7592"\w* \w what|strong="H4100"\w* \w I|strong="H2962"\w* \w shall|strong="H6310"\w* \w do|strong="H6213"\w* \w for|strong="H6213"\w* \w you|strong="H3947"\w*, \w before|strong="H2962"\w* \w I|strong="H2962"\w* \w am|strong="H1961"\w* \w taken|strong="H3947"\w* \w from|strong="H3947"\w* \w you|strong="H3947"\w*.” +\p Elisha \w said|strong="H6310"\w*, “\w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w a|strong="H3068"\w* \w double|strong="H8147"\w* \w portion|strong="H6310"\w* \w of|strong="H7307"\w* \w your|strong="H3947"\w* \w spirit|strong="H7307"\w* \w be|strong="H1961"\w* \w on|strong="H5674"\w* \w me|strong="H4994"\w*.” +\p +\v 10 \w He|strong="H3651"\w* \w said|strong="H3651"\w*, “\w You|strong="H3947"\w* \w have|strong="H1961"\w* \w asked|strong="H7592"\w* \w a|strong="H3068"\w* \w hard|strong="H7185"\w* \w thing|strong="H7185"\w*. \w If|strong="H7200"\w* \w you|strong="H3947"\w* \w see|strong="H7200"\w* \w me|strong="H7200"\w* \w when|strong="H1961"\w* \w I|strong="H3651"\w* \w am|strong="H1961"\w* \w taken|strong="H3947"\w* \w from|strong="H3947"\w* \w you|strong="H3947"\w*, \w it|strong="H3651"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w so|strong="H3651"\w* \w for|strong="H7592"\w* \w you|strong="H3947"\w*; \w but|strong="H3808"\w* \w if|strong="H7200"\w* \w not|strong="H3808"\w*, \w it|strong="H3651"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w so|strong="H3651"\w*.” +\p +\v 11 \w As|strong="H1961"\w* \w they|strong="H1992"\w* \w continued|strong="H1980"\w* \w on|strong="H1980"\w* \w and|strong="H1980"\w* \w talked|strong="H1696"\w*, \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w chariot|strong="H7393"\w* \w of|strong="H7393"\w* fire \w and|strong="H1980"\w* \w horses|strong="H5483"\w* \w of|strong="H7393"\w* fire \w separated|strong="H6504"\w* \w them|strong="H1992"\w*; \w and|strong="H1980"\w* \w Elijah|strong="H1696"\w* \w went|strong="H1980"\w* \w up|strong="H5927"\w* \w by|strong="H1980"\w* \w a|strong="H3068"\w* \w whirlwind|strong="H5591"\w* \w into|strong="H1980"\w* \w heaven|strong="H8064"\w*. +\v 12 Elisha \w saw|strong="H7200"\w* \w it|strong="H1931"\w*, \w and|strong="H3478"\w* \w he|strong="H1931"\w* \w cried|strong="H6817"\w*, “\w My|strong="H7200"\w* father, \w my|strong="H7200"\w* father, \w the|strong="H7200"\w* \w chariots|strong="H7393"\w* \w of|strong="H7393"\w* \w Israel|strong="H3478"\w* \w and|strong="H3478"\w* \w its|strong="H3808"\w* \w horsemen|strong="H6571"\w*!” +\p \w He|strong="H1931"\w* \w saw|strong="H7200"\w* \w him|strong="H7200"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w*. \w Then|strong="H7200"\w* \w he|strong="H1931"\w* \w took|strong="H2388"\w* \w hold|strong="H2388"\w* \w of|strong="H7393"\w* \w his|strong="H7200"\w* \w own|strong="H2388"\w* clothes \w and|strong="H3478"\w* \w tore|strong="H7167"\w* \w them|strong="H7200"\w* \w in|strong="H3478"\w* \w two|strong="H8147"\w* \w pieces|strong="H7168"\w*. +\v 13 \w He|strong="H5921"\w* also \w took|strong="H5975"\w* \w up|strong="H7311"\w* Elijah’s mantle \w that|strong="H5307"\w* \w fell|strong="H5307"\w* \w from|strong="H7725"\w* \w him|strong="H5921"\w*, \w and|strong="H7725"\w* \w went|strong="H7725"\w* \w back|strong="H7725"\w* \w and|strong="H7725"\w* \w stood|strong="H5975"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w bank|strong="H8193"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w*. +\v 14 \w He|strong="H1931"\w* \w took|strong="H3947"\w* Elijah’s mantle \w that|strong="H1931"\w* \w fell|strong="H5307"\w* \w from|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H3068"\w* \w struck|strong="H5221"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w*, \w and|strong="H3068"\w* said, “\w Where|strong="H5921"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* Elijah?” \w When|strong="H3068"\w* \w he|strong="H1931"\w* \w also|strong="H3068"\w* \w had|strong="H3068"\w* \w struck|strong="H5221"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w*, \w they|strong="H3068"\w* \w were|strong="H4325"\w* \w divided|strong="H2673"\w* \w apart|strong="H5674"\w*, \w and|strong="H3068"\w* Elisha \w went|strong="H5674"\w* \w over|strong="H5921"\w*. +\p +\v 15 \w When|strong="H7200"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w prophets|strong="H5030"\w* \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w at|strong="H5921"\w* \w Jericho|strong="H3405"\w* \w facing|strong="H5921"\w* \w him|strong="H5921"\w* \w saw|strong="H7200"\w* \w him|strong="H5921"\w*, \w they|strong="H5921"\w* said, “\w The|strong="H5921"\w* \w spirit|strong="H7307"\w* \w of|strong="H1121"\w* Elijah \w rests|strong="H5117"\w* \w on|strong="H5921"\w* Elisha.” \w They|strong="H5921"\w* \w came|strong="H7307"\w* \w to|strong="H5921"\w* \w meet|strong="H7125"\w* \w him|strong="H5921"\w*, \w and|strong="H1121"\w* \w bowed|strong="H7812"\w* \w themselves|strong="H7812"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* ground \w before|strong="H5048"\w* \w him|strong="H5921"\w*. +\v 16 \w They|strong="H3068"\w* said \w to|strong="H3068"\w* \w him|strong="H7971"\w*, “\w See|strong="H2009"\w* \w now|strong="H4994"\w*, \w there|strong="H3426"\w* \w are|strong="H1121"\w* \w with|strong="H3068"\w* \w your|strong="H3068"\w* \w servants|strong="H5650"\w* \w fifty|strong="H2572"\w* \w strong|strong="H2428"\w* \w men|strong="H1121"\w*. \w Please|strong="H4994"\w* \w let|strong="H7971"\w* \w them|strong="H7971"\w* \w go|strong="H3212"\w* \w and|strong="H1121"\w* \w seek|strong="H1245"\w* \w your|strong="H3068"\w* master. \w Perhaps|strong="H5375"\w* \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w* \w has|strong="H3068"\w* \w taken|strong="H5375"\w* \w him|strong="H7971"\w* \w up|strong="H5375"\w*, \w and|strong="H1121"\w* \w put|strong="H7971"\w* \w him|strong="H7971"\w* \w on|strong="H3068"\w* \w some|strong="H2009"\w* \w mountain|strong="H2022"\w* \w or|strong="H3808"\w* \w into|strong="H3212"\w* \w some|strong="H2009"\w* \w valley|strong="H1516"\w*.” +\p \w He|strong="H3068"\w* said, “Don’t \w send|strong="H7971"\w* \w them|strong="H7971"\w*.” +\p +\v 17 \w When|strong="H3117"\w* \w they|strong="H3117"\w* \w urged|strong="H6484"\w* \w him|strong="H7971"\w* \w until|strong="H5704"\w* \w he|strong="H3117"\w* \w was|strong="H3117"\w* ashamed, \w he|strong="H3117"\w* said, “\w Send|strong="H7971"\w* \w them|strong="H7971"\w*.” +\p \w Therefore|strong="H7971"\w* \w they|strong="H3117"\w* \w sent|strong="H7971"\w* \w fifty|strong="H2572"\w* men; \w and|strong="H7971"\w* \w they|strong="H3117"\w* \w searched|strong="H1245"\w* \w for|strong="H5704"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*, \w but|strong="H3808"\w* didn’t \w find|strong="H4672"\w* \w him|strong="H7971"\w*. +\v 18 \w They|strong="H3808"\w* \w came|strong="H3212"\w* \w back|strong="H7725"\w* \w to|strong="H7725"\w* \w him|strong="H7725"\w* \w while|strong="H1931"\w* \w he|strong="H1931"\w* \w stayed|strong="H3427"\w* \w at|strong="H3427"\w* \w Jericho|strong="H3405"\w*; \w and|strong="H7725"\w* \w he|strong="H1931"\w* said \w to|strong="H7725"\w* \w them|strong="H7725"\w*, “Didn’t \w I|strong="H3808"\w* tell \w you|strong="H7725"\w*, ‘Don’t \w go|strong="H3212"\w*’?” +\p +\v 19 \w The|strong="H7200"\w* \w men|strong="H7451"\w* \w of|strong="H5892"\w* \w the|strong="H7200"\w* \w city|strong="H5892"\w* said \w to|strong="H4325"\w* Elisha, “\w Behold|strong="H2009"\w*, \w please|strong="H4994"\w*, \w the|strong="H7200"\w* \w situation|strong="H4186"\w* \w of|strong="H5892"\w* \w this|strong="H7200"\w* \w city|strong="H5892"\w* \w is|strong="H2896"\w* \w pleasant|strong="H2896"\w*, \w as|strong="H5892"\w* \w my|strong="H7200"\w* lord \w sees|strong="H7200"\w*; \w but|strong="H7200"\w* \w the|strong="H7200"\w* \w water|strong="H4325"\w* \w is|strong="H2896"\w* \w bad|strong="H7451"\w*, \w and|strong="H5892"\w* \w the|strong="H7200"\w* land \w is|strong="H2896"\w* \w barren|strong="H7921"\w*.” +\p +\v 20 \w He|strong="H8033"\w* said, “\w Bring|strong="H3947"\w* \w me|strong="H7760"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w jar|strong="H6746"\w*, \w and|strong="H8033"\w* \w put|strong="H7760"\w* \w salt|strong="H4417"\w* \w in|strong="H8033"\w* \w it|strong="H7760"\w*.” \w Then|strong="H3947"\w* \w they|strong="H8033"\w* \w brought|strong="H3947"\w* \w it|strong="H7760"\w* \w to|strong="H8033"\w* \w him|strong="H3947"\w*. +\v 21 \w He|strong="H8033"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3541"\w* \w spring|strong="H4161"\w* \w of|strong="H3068"\w* \w the|strong="H3541"\w* \w waters|strong="H4325"\w*, \w and|strong="H3068"\w* \w threw|strong="H7993"\w* \w salt|strong="H4417"\w* \w into|strong="H3318"\w* \w it|strong="H8033"\w*, \w and|strong="H3068"\w* \w said|strong="H3318"\w*, “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w I|strong="H3541"\w* \w have|strong="H1961"\w* \w healed|strong="H7495"\w* \w these|strong="H7495"\w* \w waters|strong="H4325"\w*. \w There|strong="H8033"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w from|strong="H3318"\w* \w there|strong="H8033"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w* \w death|strong="H4194"\w* \w or|strong="H3808"\w* \w barren|strong="H7921"\w* wasteland.’” +\v 22 \w So|strong="H2088"\w* \w the|strong="H3117"\w* \w waters|strong="H4325"\w* \w were|strong="H4325"\w* \w healed|strong="H7495"\w* \w to|strong="H1696"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, according \w to|strong="H1696"\w* \w Elisha|strong="H5704"\w*’s \w word|strong="H1697"\w* \w which|strong="H1697"\w* \w he|strong="H3117"\w* \w spoke|strong="H1696"\w*. +\p +\v 23 \w He|strong="H1931"\w* \w went|strong="H3318"\w* \w up|strong="H5927"\w* \w from|strong="H4480"\w* \w there|strong="H8033"\w* \w to|strong="H3318"\w* \w Bethel|strong="H1008"\w*. \w As|strong="H5927"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w going|strong="H3318"\w* \w up|strong="H5927"\w* \w by|strong="H1870"\w* \w the|strong="H4480"\w* \w way|strong="H1870"\w*, \w some|strong="H4480"\w* \w youths|strong="H5288"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H5892"\w* \w the|strong="H4480"\w* \w city|strong="H5892"\w* \w and|strong="H5892"\w* \w mocked|strong="H7046"\w* \w him|strong="H3318"\w*, \w and|strong="H5892"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H3318"\w*, “\w Go|strong="H3318"\w* \w up|strong="H5927"\w*, \w you|strong="H4480"\w* \w baldy|strong="H7142"\w*! \w Go|strong="H3318"\w* \w up|strong="H5927"\w*, \w you|strong="H4480"\w* \w baldy|strong="H7142"\w*!” +\v 24 \w He|strong="H3068"\w* \w looked|strong="H7200"\w* \w behind|strong="H4480"\w* \w him|strong="H7200"\w* \w and|strong="H3068"\w* \w saw|strong="H7200"\w* \w them|strong="H1992"\w*, \w and|strong="H3068"\w* \w cursed|strong="H7043"\w* \w them|strong="H1992"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*. \w Then|strong="H3318"\w* \w two|strong="H8147"\w* \w female|strong="H8147"\w* \w bears|strong="H1677"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H7200"\w* \w woods|strong="H3293"\w* \w and|strong="H3068"\w* mauled \w forty-two|strong="H8147"\w* \w of|strong="H3068"\w* \w those|strong="H1992"\w* \w youths|strong="H3206"\w*. +\v 25 \w He|strong="H8033"\w* \w went|strong="H3212"\w* \w from|strong="H7725"\w* \w there|strong="H8033"\w* \w to|strong="H7725"\w* \w Mount|strong="H2022"\w* \w Carmel|strong="H3760"\w*, \w and|strong="H7725"\w* \w from|strong="H7725"\w* \w there|strong="H8033"\w* \w he|strong="H8033"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Samaria|strong="H8111"\w*. +\c 3 +\p +\v 1 \w Now|strong="H3478"\w* \w Jehoram|strong="H3088"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahab \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w in|strong="H8141"\w* \w Samaria|strong="H8111"\w* \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w eighteenth|strong="H8083"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Jehoshaphat|strong="H3092"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w and|strong="H1121"\w* \w reigned|strong="H4427"\w* \w twelve|strong="H8147"\w* \w years|strong="H8141"\w*. +\v 2 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w but|strong="H7535"\w* \w not|strong="H3808"\w* \w like|strong="H3808"\w* \w his|strong="H3068"\w* father \w and|strong="H3068"\w* \w like|strong="H3808"\w* \w his|strong="H3068"\w* mother, \w for|strong="H6213"\w* \w he|strong="H6213"\w* \w put|strong="H5493"\w* \w away|strong="H5493"\w* \w the|strong="H6213"\w* \w pillar|strong="H4676"\w* \w of|strong="H3068"\w* \w Baal|strong="H1168"\w* \w that|strong="H3068"\w* \w his|strong="H3068"\w* father \w had|strong="H3068"\w* \w made|strong="H6213"\w*. +\v 3 \w Nevertheless|strong="H7535"\w* \w he|strong="H4480"\w* \w held|strong="H1692"\w* \w to|strong="H3478"\w* \w the|strong="H4480"\w* \w sins|strong="H2403"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w*, \w with|strong="H3478"\w* \w which|strong="H3478"\w* \w he|strong="H4480"\w* \w made|strong="H3478"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w sin|strong="H2403"\w*. \w He|strong="H4480"\w* didn’t \w depart|strong="H5493"\w* \w from|strong="H4480"\w* \w them|strong="H1692"\w*. +\p +\v 4 \w Now|strong="H1961"\w* \w Mesha|strong="H4338"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Moab|strong="H4124"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w sheep|strong="H5349"\w* \w breeder|strong="H5349"\w*; \w and|strong="H3967"\w* \w he|strong="H3478"\w* supplied \w the|strong="H7725"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w with|strong="H4428"\w* \w one|strong="H1961"\w* \w hundred|strong="H3967"\w* thousand \w lambs|strong="H3733"\w* \w and|strong="H3967"\w* \w the|strong="H7725"\w* \w wool|strong="H6785"\w* \w of|strong="H4428"\w* \w one|strong="H1961"\w* \w hundred|strong="H3967"\w* thousand \w rams|strong="H3733"\w*. +\v 5 \w But|strong="H1961"\w* \w when|strong="H1961"\w* Ahab \w was|strong="H1961"\w* \w dead|strong="H4194"\w*, \w the|strong="H1961"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Moab|strong="H4124"\w* \w rebelled|strong="H6586"\w* \w against|strong="H6586"\w* \w the|strong="H1961"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. +\v 6 \w King|strong="H4428"\w* \w Jehoram|strong="H3088"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w Samaria|strong="H8111"\w* \w at|strong="H3478"\w* \w that|strong="H3605"\w* \w time|strong="H3117"\w*, \w and|strong="H3478"\w* \w mustered|strong="H6485"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*. +\v 7 \w He|strong="H7971"\w* \w went|strong="H3212"\w* \w and|strong="H3063"\w* \w sent|strong="H7971"\w* \w to|strong="H3212"\w* \w Jehoshaphat|strong="H3092"\w* \w the|strong="H7971"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, saying, “\w The|strong="H7971"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Moab|strong="H4124"\w* \w has|strong="H4428"\w* \w rebelled|strong="H6586"\w* \w against|strong="H5927"\w* \w me|strong="H7971"\w*. \w Will|strong="H4428"\w* \w you|strong="H7971"\w* \w go|strong="H3212"\w* \w with|strong="H3212"\w* \w me|strong="H7971"\w* \w against|strong="H5927"\w* \w Moab|strong="H4124"\w* \w to|strong="H3212"\w* \w battle|strong="H4421"\w*?” +\p \w He|strong="H7971"\w* said, “\w I|strong="H3644"\w* \w will|strong="H4428"\w* \w go|strong="H3212"\w* \w up|strong="H5927"\w*. \w I|strong="H3644"\w* am \w as|strong="H3644"\w* \w you|strong="H7971"\w* \w are|strong="H5971"\w*, \w my|strong="H7971"\w* \w people|strong="H5971"\w* \w as|strong="H3644"\w* \w your|strong="H7971"\w* \w people|strong="H5971"\w*, \w my|strong="H7971"\w* \w horses|strong="H5483"\w* \w as|strong="H3644"\w* \w your|strong="H7971"\w* \w horses|strong="H5483"\w*.” +\v 8 \w Then|strong="H2088"\w* \w he|strong="H2088"\w* said, “\w Which|strong="H2088"\w* \w way|strong="H1870"\w* \w shall|strong="H2088"\w* \w we|strong="H3068"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w*?” +\p Jehoram answered, “\w The|strong="H5927"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w the|strong="H5927"\w* \w wilderness|strong="H4057"\w* \w of|strong="H1870"\w* Edom.” +\p +\v 9 \w So|strong="H1961"\w* \w the|strong="H3117"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w went|strong="H3212"\w* \w with|strong="H3117"\w* \w the|strong="H3117"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w the|strong="H3117"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Edom, \w and|strong="H3063"\w* \w they|strong="H3117"\w* \w marched|strong="H5437"\w* \w for|strong="H4325"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w* \w along|strong="H3212"\w* \w a|strong="H3068"\w* circuitous \w route|strong="H1870"\w*. \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w water|strong="H4325"\w* \w for|strong="H4325"\w* \w the|strong="H3117"\w* \w army|strong="H4264"\w* \w or|strong="H3808"\w* \w for|strong="H4325"\w* \w the|strong="H3117"\w* \w animals|strong="H1961"\w* \w that|strong="H3117"\w* \w followed|strong="H3212"\w* \w them|strong="H1961"\w*. +\v 10 \w The|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w said|strong="H7121"\w*, “Alas! \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w called|strong="H7121"\w* \w these|strong="H7121"\w* \w three|strong="H7969"\w* \w kings|strong="H4428"\w* \w together|strong="H7121"\w* \w to|strong="H3478"\w* \w deliver|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H3588"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w Moab|strong="H4124"\w*.” +\p +\v 11 \w But|strong="H6030"\w* \w Jehoshaphat|strong="H3092"\w* \w said|strong="H6030"\w*, “Isn’t \w there|strong="H3068"\w* \w a|strong="H3068"\w* \w prophet|strong="H5030"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w here|strong="H6311"\w*, \w that|strong="H3068"\w* \w we|strong="H3068"\w* \w may|strong="H3068"\w* \w inquire|strong="H1875"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w by|strong="H3027"\w* \w him|strong="H5921"\w*?” +\p \w One|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*’s \w servants|strong="H5650"\w* \w answered|strong="H6030"\w*, “Elisha \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shaphat|strong="H8202"\w*, \w who|strong="H3068"\w* \w poured|strong="H3332"\w* \w water|strong="H4325"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w hands|strong="H3027"\w* \w of|strong="H1121"\w* Elijah, \w is|strong="H3068"\w* \w here|strong="H6311"\w*.” +\p +\v 12 \w Jehoshaphat|strong="H3092"\w* \w said|strong="H1697"\w*, “\w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w is|strong="H3068"\w* \w with|strong="H3068"\w* \w him|strong="H3381"\w*.” \w So|strong="H1697"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w and|strong="H3478"\w* \w Jehoshaphat|strong="H3092"\w* \w and|strong="H3478"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Edom \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w him|strong="H3381"\w*. +\p +\v 13 \w Elisha|strong="H7121"\w* \w said|strong="H7121"\w* \w to|strong="H3478"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, “\w What|strong="H4100"\w* \w have|strong="H3068"\w* \w I|strong="H3588"\w* \w to|strong="H3478"\w* \w do|strong="H3068"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w*? \w Go|strong="H3212"\w* \w to|strong="H3478"\w* \w the|strong="H3588"\w* \w prophets|strong="H5030"\w* \w of|strong="H4428"\w* \w your|strong="H3068"\w* father, \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H3588"\w* \w prophets|strong="H5030"\w* \w of|strong="H4428"\w* \w your|strong="H3068"\w* mother.” +\p \w The|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w said|strong="H7121"\w* \w to|strong="H3478"\w* \w him|strong="H5414"\w*, “\w No|strong="H5414"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w called|strong="H7121"\w* \w these|strong="H7121"\w* \w three|strong="H7969"\w* \w kings|strong="H4428"\w* \w together|strong="H7121"\w* \w to|strong="H3478"\w* \w deliver|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3212"\w* \w the|strong="H3588"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w Moab|strong="H4124"\w*.” +\p +\v 14 Elisha said, “\w As|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H4428"\w* \w Armies|strong="H6635"\w* \w lives|strong="H2416"\w*, \w before|strong="H6440"\w* \w whom|strong="H6440"\w* \w I|strong="H3588"\w* \w stand|strong="H5975"\w*, \w surely|strong="H3588"\w*, \w were|strong="H3063"\w* \w it|strong="H3588"\w* \w not|strong="H3588"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w respect|strong="H7200"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H4428"\w* \w Jehoshaphat|strong="H3092"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w I|strong="H3588"\w* \w would|strong="H3068"\w* \w not|strong="H3588"\w* \w look|strong="H7200"\w* \w toward|strong="H6440"\w* \w you|strong="H3588"\w*, \w nor|strong="H3588"\w* \w see|strong="H7200"\w* \w you|strong="H3588"\w*. +\v 15 \w But|strong="H1961"\w* \w now|strong="H6258"\w* \w bring|strong="H3947"\w* \w me|strong="H5921"\w* \w a|strong="H3068"\w* \w musician|strong="H5059"\w*.” \w When|strong="H1961"\w* \w the|strong="H5921"\w* \w musician|strong="H5059"\w* \w played|strong="H5059"\w*, \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w came|strong="H1961"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 16 \w He|strong="H6213"\w* said, “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w Make|strong="H6213"\w* \w this|strong="H2088"\w* \w valley|strong="H5158"\w* \w full|strong="H1356"\w* \w of|strong="H3068"\w* \w trenches|strong="H1356"\w*.’ +\v 17 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w You|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w* \w wind|strong="H7307"\w*, \w neither|strong="H3808"\w* \w will|strong="H3068"\w* \w you|strong="H3588"\w* \w see|strong="H7200"\w* \w rain|strong="H1653"\w*, \w yet|strong="H3588"\w* \w that|strong="H3588"\w* \w valley|strong="H5158"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w water|strong="H4325"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w drink|strong="H8354"\w*, both \w you|strong="H3588"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w livestock|strong="H4735"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w other|strong="H3541"\w* animals. +\v 18 \w This|strong="H2063"\w* \w is|strong="H3068"\w* \w an|strong="H5414"\w* \w easy|strong="H7043"\w* \w thing|strong="H7043"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*. \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w also|strong="H3068"\w* \w deliver|strong="H5414"\w* \w the|strong="H5414"\w* \w Moabites|strong="H4124"\w* \w into|strong="H3027"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*. +\v 19 \w You|strong="H3605"\w* \w shall|strong="H5892"\w* \w strike|strong="H5221"\w* \w every|strong="H3605"\w* \w fortified|strong="H4013"\w* \w city|strong="H5892"\w* \w and|strong="H6086"\w* \w every|strong="H3605"\w* \w choice|strong="H4004"\w* \w city|strong="H5892"\w*, \w and|strong="H6086"\w* \w shall|strong="H5892"\w* \w fell|strong="H5307"\w* \w every|strong="H3605"\w* \w good|strong="H2896"\w* \w tree|strong="H6086"\w*, \w and|strong="H6086"\w* \w stop|strong="H5640"\w* \w all|strong="H3605"\w* \w springs|strong="H4599"\w* \w of|strong="H5892"\w* \w water|strong="H4325"\w*, \w and|strong="H6086"\w* \w mar|strong="H3510"\w* \w every|strong="H3605"\w* \w good|strong="H2896"\w* \w piece|strong="H2513"\w* \w of|strong="H5892"\w* \w land|strong="H2513"\w* \w with|strong="H5892"\w* stones.’” +\p +\v 20 \w In|strong="H1870"\w* \w the|strong="H4390"\w* \w morning|strong="H1242"\w*, \w about|strong="H1961"\w* \w the|strong="H4390"\w* \w time|strong="H1961"\w* \w of|strong="H1870"\w* \w offering|strong="H4503"\w* \w the|strong="H4390"\w* \w sacrifice|strong="H4503"\w*, \w behold|strong="H2009"\w*, \w water|strong="H4325"\w* \w came|strong="H1961"\w* \w by|strong="H1870"\w* \w the|strong="H4390"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* Edom, \w and|strong="H1242"\w* \w the|strong="H4390"\w* country \w was|strong="H1961"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w water|strong="H4325"\w*. +\p +\v 21 \w Now|strong="H3588"\w* \w when|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Moabites|strong="H4124"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w had|strong="H4428"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w fight|strong="H3898"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w*, \w they|strong="H3588"\w* \w gathered|strong="H8085"\w* \w themselves|strong="H8085"\w* \w together|strong="H6817"\w*, \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H4428"\w* able \w to|strong="H5927"\w* \w put|strong="H5927"\w* \w on|strong="H5921"\w* \w armor|strong="H2290"\w*, young \w and|strong="H4428"\w* \w old|strong="H4605"\w*, \w and|strong="H4428"\w* \w stood|strong="H5975"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w border|strong="H1366"\w*. +\v 22 \w They|strong="H5921"\w* \w rose|strong="H7925"\w* \w up|strong="H7925"\w* \w early|strong="H7925"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w morning|strong="H1242"\w*, \w and|strong="H7925"\w* \w the|strong="H5921"\w* \w sun|strong="H8121"\w* \w shone|strong="H2224"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w water|strong="H4325"\w*, \w and|strong="H7925"\w* \w the|strong="H5921"\w* \w Moabites|strong="H4124"\w* \w saw|strong="H7200"\w* \w the|strong="H5921"\w* \w water|strong="H4325"\w* \w opposite|strong="H5048"\w* \w them|strong="H5921"\w* \w as|strong="H4325"\w* red \w as|strong="H4325"\w* \w blood|strong="H1818"\w*. +\v 23 \w They|strong="H5221"\w* said, “\w This|strong="H2088"\w* \w is|strong="H2088"\w* \w blood|strong="H1818"\w*. \w The|strong="H5221"\w* \w kings|strong="H4428"\w* \w are|strong="H4428"\w* \w surely|strong="H5221"\w* \w destroyed|strong="H2717"\w*, \w and|strong="H4428"\w* \w they|strong="H5221"\w* \w have|strong="H6258"\w* \w struck|strong="H5221"\w* \w each|strong="H2088"\w* \w other|strong="H2088"\w*. \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w Moab|strong="H4124"\w*, \w to|strong="H4428"\w* \w the|strong="H5221"\w* \w plunder|strong="H7998"\w*!” +\p +\v 24 \w When|strong="H5127"\w* \w they|strong="H3478"\w* \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H6440"\w* \w camp|strong="H4264"\w* \w of|strong="H6440"\w* \w Israel|strong="H3478"\w*, \w the|strong="H6440"\w* \w Israelites|strong="H3478"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H6965"\w* \w struck|strong="H5221"\w* \w the|strong="H6440"\w* \w Moabites|strong="H4124"\w*, \w so|strong="H6965"\w* \w that|strong="H3478"\w* \w they|strong="H3478"\w* \w fled|strong="H5127"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*; \w and|strong="H6965"\w* \w they|strong="H3478"\w* \w went|strong="H3478"\w* \w forward|strong="H6440"\w* \w into|strong="H5127"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w attacking|strong="H5221"\w* \w the|strong="H6440"\w* \w Moabites|strong="H4124"\w*. +\v 25 \w They|strong="H5704"\w* \w beat|strong="H5221"\w* \w down|strong="H5307"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w*; \w and|strong="H6086"\w* \w on|strong="H5307"\w* \w every|strong="H3605"\w* \w good|strong="H2896"\w* \w piece|strong="H2513"\w* \w of|strong="H5892"\w* \w land|strong="H2513"\w* \w each|strong="H3605"\w* \w man|strong="H2896"\w* \w cast|strong="H7993"\w* \w his|strong="H3605"\w* stone, \w and|strong="H6086"\w* \w filled|strong="H4390"\w* \w it|strong="H5221"\w*. \w They|strong="H5704"\w* \w also|strong="H5221"\w* \w stopped|strong="H5640"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w springs|strong="H4599"\w* \w of|strong="H5892"\w* \w water|strong="H4325"\w* \w and|strong="H6086"\w* \w cut|strong="H5640"\w* \w down|strong="H5307"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w good|strong="H2896"\w* \w trees|strong="H6086"\w*, \w until|strong="H5704"\w* \w in|strong="H5892"\w* Kir Hareseth \w all|strong="H3605"\w* \w they|strong="H5704"\w* \w left|strong="H7604"\w* \w was|strong="H5892"\w* \w its|strong="H3605"\w* stones; however \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w armed|strong="H4390"\w* \w with|strong="H4390"\w* slings \w went|strong="H5437"\w* \w around|strong="H5437"\w* \w it|strong="H5221"\w* \w and|strong="H6086"\w* \w attacked|strong="H5221"\w* \w it|strong="H5221"\w*. +\v 26 \w When|strong="H3588"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Moab|strong="H4124"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H7200"\w* \w battle|strong="H4421"\w* \w was|strong="H4428"\w* \w too|strong="H4480"\w* \w severe|strong="H2388"\w* \w for|strong="H3588"\w* \w him|strong="H7200"\w*, \w he|strong="H3588"\w* \w took|strong="H3947"\w* \w with|strong="H4428"\w* \w him|strong="H7200"\w* \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w men|strong="H2388"\w* \w who|strong="H4428"\w* \w drew|strong="H8025"\w* \w a|strong="H3068"\w* \w sword|strong="H2719"\w*, \w to|strong="H3201"\w* \w break|strong="H1234"\w* \w through|strong="H4480"\w* \w to|strong="H3201"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Edom; \w but|strong="H3588"\w* \w they|strong="H3588"\w* \w could|strong="H3201"\w* \w not|strong="H3808"\w*. +\v 27 \w Then|strong="H1961"\w* \w he|strong="H5921"\w* \w took|strong="H3947"\w* \w his|strong="H3947"\w* \w oldest|strong="H1419"\w* \w son|strong="H1121"\w* \w who|strong="H1121"\w* \w would|strong="H3478"\w* \w have|strong="H1961"\w* \w reigned|strong="H4427"\w* \w in|strong="H5921"\w* \w his|strong="H3947"\w* \w place|strong="H8478"\w*, \w and|strong="H1121"\w* \w offered|strong="H5927"\w* \w him|strong="H5921"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wall|strong="H2346"\w*. \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w great|strong="H1419"\w* \w wrath|strong="H7110"\w* \w against|strong="H5921"\w* \w Israel|strong="H3478"\w*; \w and|strong="H1121"\w* \w they|strong="H5921"\w* \w departed|strong="H5265"\w* \w from|strong="H5265"\w* \w him|strong="H5921"\w*, \w and|strong="H1121"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w their|strong="H3947"\w* \w own|strong="H1961"\w* land. +\c 4 +\p +\v 1 \w Now|strong="H1961"\w* \w a|strong="H3068"\w* \w certain|strong="H3045"\w* woman \w of|strong="H1121"\w* \w the|strong="H3588"\w* wives \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w prophets|strong="H5030"\w* \w cried|strong="H6817"\w* \w out|strong="H3947"\w* \w to|strong="H4191"\w* Elisha, saying, “\w Your|strong="H3068"\w* \w servant|strong="H5650"\w* \w my|strong="H3068"\w* husband \w is|strong="H3068"\w* \w dead|strong="H4191"\w*. \w You|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w feared|strong="H3372"\w* \w Yahweh|strong="H3068"\w*. \w Now|strong="H1961"\w* \w the|strong="H3588"\w* \w creditor|strong="H5383"\w* \w has|strong="H3068"\w* \w come|strong="H1961"\w* \w to|strong="H4191"\w* \w take|strong="H3947"\w* \w for|strong="H3588"\w* \w himself|strong="H3045"\w* \w my|strong="H3068"\w* \w two|strong="H8147"\w* \w children|strong="H1121"\w* \w to|strong="H4191"\w* \w be|strong="H1961"\w* \w slaves|strong="H5650"\w*.” +\p +\v 2 Elisha said \w to|strong="H6213"\w* \w her|strong="H3605"\w*, “\w What|strong="H4100"\w* \w should|strong="H4100"\w* \w I|strong="H3588"\w* \w do|strong="H6213"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*? \w Tell|strong="H5046"\w* \w me|strong="H5046"\w*, \w what|strong="H4100"\w* \w do|strong="H6213"\w* \w you|strong="H3588"\w* \w have|strong="H3426"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*?” +\p \w She|strong="H3588"\w* said, “\w Your|strong="H3605"\w* \w servant|strong="H8198"\w* \w has|strong="H4100"\w* \w nothing|strong="H3605"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*, \w except|strong="H3588"\w* \w a|strong="H3068"\w* pot \w of|strong="H1004"\w* \w oil|strong="H8081"\w*.” +\p +\v 3 \w Then|strong="H3605"\w* \w he|strong="H3605"\w* said, “\w Go|strong="H3212"\w*, \w borrow|strong="H7592"\w* \w empty|strong="H7386"\w* \w containers|strong="H3627"\w* \w from|strong="H4480"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w neighbors|strong="H7934"\w*. Don’t \w borrow|strong="H7592"\w* \w just|strong="H3605"\w* \w a|strong="H3068"\w* \w few|strong="H4591"\w* \w containers|strong="H3627"\w*. +\v 4 \w Go|strong="H5265"\w* \w in|strong="H5921"\w* \w and|strong="H1121"\w* \w shut|strong="H5462"\w* \w the|strong="H3605"\w* \w door|strong="H1817"\w* \w on|strong="H5921"\w* \w you|strong="H3605"\w* \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w your|strong="H3605"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w pour|strong="H3332"\w* oil \w into|strong="H5921"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w containers|strong="H3627"\w*; \w and|strong="H1121"\w* \w set|strong="H5265"\w* \w aside|strong="H5265"\w* \w those|strong="H3605"\w* \w which|strong="H3627"\w* \w are|strong="H1121"\w* \w full|strong="H4392"\w*.” +\p +\v 5 \w So|strong="H5066"\w* \w she|strong="H1931"\w* \w went|strong="H3212"\w* \w from|strong="H1121"\w* \w him|strong="H1931"\w*, \w and|strong="H1121"\w* \w shut|strong="H5462"\w* \w the|strong="H5462"\w* \w door|strong="H1817"\w* \w on|strong="H3212"\w* \w herself|strong="H1931"\w* \w and|strong="H1121"\w* \w on|strong="H3212"\w* \w her|strong="H5462"\w* \w sons|strong="H1121"\w*. \w They|strong="H1992"\w* \w brought|strong="H5066"\w* \w the|strong="H5462"\w* containers \w to|strong="H3212"\w* \w her|strong="H5462"\w*, \w and|strong="H1121"\w* \w she|strong="H1931"\w* \w poured|strong="H3332"\w* oil. +\v 6 \w When|strong="H1961"\w* \w the|strong="H4390"\w* \w containers|strong="H3627"\w* \w were|strong="H1961"\w* \w full|strong="H4390"\w*, \w she|strong="H3627"\w* said \w to|strong="H1961"\w* \w her|strong="H4390"\w* \w son|strong="H1121"\w*, “\w Bring|strong="H5066"\w* \w me|strong="H1961"\w* \w another|strong="H5750"\w* \w container|strong="H3627"\w*.” +\p \w He|strong="H1121"\w* said \w to|strong="H1961"\w* \w her|strong="H4390"\w*, “\w There|strong="H1961"\w* isn’t \w another|strong="H5750"\w* \w container|strong="H3627"\w*.” \w Then|strong="H1961"\w* \w the|strong="H4390"\w* \w oil|strong="H8081"\w* \w stopped|strong="H5975"\w* \w flowing|strong="H3627"\w*. +\p +\v 7 \w Then|strong="H1121"\w* she \w came|strong="H3212"\w* \w and|strong="H1121"\w* \w told|strong="H5046"\w* \w the|strong="H5046"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w God|strong="H7999"\w*. \w He|strong="H3212"\w* said, “\w Go|strong="H3212"\w*, \w sell|strong="H4376"\w* \w the|strong="H5046"\w* \w oil|strong="H8081"\w*, \w and|strong="H1121"\w* \w pay|strong="H7999"\w* \w your|strong="H5046"\w* \w debt|strong="H5386"\w*; \w and|strong="H1121"\w* \w you|strong="H5046"\w* \w and|strong="H1121"\w* \w your|strong="H5046"\w* \w sons|strong="H1121"\w* \w live|strong="H2421"\w* \w on|strong="H3212"\w* \w the|strong="H5046"\w* \w rest|strong="H3498"\w*.” +\p +\v 8 \w One|strong="H1961"\w* \w day|strong="H3117"\w* Elisha \w went|strong="H5674"\w* \w to|strong="H1961"\w* \w Shunem|strong="H7766"\w*, \w where|strong="H8033"\w* \w there|strong="H8033"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w prominent|strong="H1419"\w* woman; \w and|strong="H3117"\w* she \w persuaded|strong="H2388"\w* \w him|strong="H5674"\w* \w to|strong="H1961"\w* \w eat|strong="H3899"\w* \w bread|strong="H3899"\w*. \w So|strong="H1961"\w* \w it|strong="H8033"\w* \w was|strong="H1961"\w*, \w that|strong="H3117"\w* \w as|strong="H3117"\w* \w often|strong="H1767"\w* \w as|strong="H3117"\w* \w he|strong="H3117"\w* \w passed|strong="H5674"\w* \w by|strong="H5674"\w*, \w he|strong="H3117"\w* \w turned|strong="H5493"\w* \w in|strong="H3117"\w* \w there|strong="H8033"\w* \w to|strong="H1961"\w* \w eat|strong="H3899"\w* \w bread|strong="H3899"\w*. +\v 9 \w She|strong="H1931"\w* said \w to|strong="H5921"\w* \w her|strong="H5921"\w* husband, “\w See|strong="H2009"\w* \w now|strong="H4994"\w*, \w I|strong="H3588"\w* \w perceive|strong="H3045"\w* \w that|strong="H3588"\w* \w this|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w holy|strong="H6918"\w* \w man|strong="H5674"\w* \w of|strong="H6918"\w* God \w who|strong="H1931"\w* \w passes|strong="H5674"\w* \w by|strong="H5921"\w* \w us|strong="H4994"\w* \w continually|strong="H8548"\w*. +\v 10 \w Please|strong="H4994"\w*, \w let|strong="H4994"\w*’s \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w little|strong="H6996"\w* \w room|strong="H5944"\w* \w on|strong="H7760"\w* \w the|strong="H6213"\w* \w roof|strong="H5944"\w*. \w Let|strong="H4994"\w*’s \w set|strong="H7760"\w* \w a|strong="H3068"\w* \w bed|strong="H4296"\w*, \w a|strong="H3068"\w* \w table|strong="H7979"\w*, \w a|strong="H3068"\w* \w chair|strong="H3678"\w*, \w and|strong="H8033"\w* \w a|strong="H3068"\w* lamp stand \w for|strong="H6213"\w* \w him|strong="H6213"\w* \w there|strong="H8033"\w*. \w When|strong="H1961"\w* \w he|strong="H8033"\w* \w comes|strong="H1961"\w* \w to|strong="H1961"\w* \w us|strong="H4994"\w*, \w he|strong="H8033"\w* \w can|strong="H6213"\w* stay \w there|strong="H8033"\w*.” +\p +\v 11 \w One|strong="H1961"\w* \w day|strong="H3117"\w* \w he|strong="H3117"\w* \w came|strong="H1961"\w* \w there|strong="H8033"\w*, \w and|strong="H3117"\w* \w he|strong="H3117"\w* \w went|strong="H1961"\w* \w to|strong="H1961"\w* \w the|strong="H3117"\w* \w room|strong="H5944"\w* \w and|strong="H3117"\w* \w lay|strong="H7901"\w* \w there|strong="H8033"\w*. +\v 12 \w He|strong="H7121"\w* \w said|strong="H7121"\w* \w to|strong="H6440"\w* \w Gehazi|strong="H1522"\w* \w his|strong="H7121"\w* \w servant|strong="H5288"\w*, “\w Call|strong="H7121"\w* \w this|strong="H2063"\w* \w Shunammite|strong="H7767"\w*.” \w When|strong="H5975"\w* \w he|strong="H7121"\w* had \w called|strong="H7121"\w* \w her|strong="H7121"\w*, \w she|strong="H7121"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 13 \w He|strong="H6213"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H6213"\w*, “\w Say|strong="H1696"\w* \w now|strong="H4994"\w* \w to|strong="H1696"\w* \w her|strong="H3605"\w*, ‘\w Behold|strong="H2009"\w*, \w you|strong="H3605"\w* \w have|strong="H3426"\w* \w cared|strong="H6213"\w* \w for|strong="H6213"\w* \w us|strong="H4994"\w* \w with|strong="H6213"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w care|strong="H2731"\w*. \w What|strong="H4100"\w* \w is|strong="H3426"\w* \w to|strong="H1696"\w* \w be|strong="H3426"\w* \w done|strong="H6213"\w* \w for|strong="H6213"\w* \w you|strong="H3605"\w*? \w Would|strong="H5971"\w* \w you|strong="H3605"\w* \w like|strong="H6213"\w* \w to|strong="H1696"\w* \w be|strong="H3426"\w* \w spoken|strong="H1696"\w* \w for|strong="H6213"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w or|strong="H6213"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w captain|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w*?’” +\p \w She|strong="H2063"\w* \w answered|strong="H1696"\w*, “\w I|strong="H2009"\w* \w dwell|strong="H3427"\w* \w among|strong="H8432"\w* \w my|strong="H3605"\w* \w own|strong="H5971"\w* \w people|strong="H5971"\w*.” +\p +\v 14 \w He|strong="H6213"\w* said, “\w What|strong="H4100"\w* \w then|strong="H6213"\w* \w is|strong="H4100"\w* \w to|strong="H6213"\w* \w be|strong="H1121"\w* \w done|strong="H6213"\w* \w for|strong="H6213"\w* \w her|strong="H6213"\w*?” +\p \w Gehazi|strong="H1522"\w* answered, “Most \w certainly|strong="H6213"\w* \w she|strong="H4100"\w* \w has|strong="H4100"\w* \w no|strong="H6213"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w her|strong="H6213"\w* husband \w is|strong="H4100"\w* \w old|strong="H1121"\w*.” +\p +\v 15 \w He|strong="H7121"\w* \w said|strong="H7121"\w*, “\w Call|strong="H7121"\w* \w her|strong="H7121"\w*.” \w When|strong="H5975"\w* \w he|strong="H7121"\w* had \w called|strong="H7121"\w* \w her|strong="H7121"\w*, \w she|strong="H7121"\w* \w stood|strong="H5975"\w* \w in|strong="H5975"\w* \w the|strong="H7121"\w* \w door|strong="H6607"\w*. +\v 16 \w He|strong="H6256"\w* said, “\w At|strong="H1121"\w* \w this|strong="H2088"\w* \w season|strong="H6256"\w* \w next|strong="H2416"\w* \w year|strong="H6256"\w*, \w you|strong="H6256"\w* \w will|strong="H1121"\w* \w embrace|strong="H2263"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*.” +\p \w She|strong="H6256"\w* said, “No, \w my|strong="H2088"\w* lord, \w you|strong="H6256"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* God, \w do|strong="H2088"\w* \w not|strong="H2088"\w* \w lie|strong="H3576"\w* \w to|strong="H6256"\w* \w your|strong="H2088"\w* \w servant|strong="H8198"\w*.” +\p +\v 17 \w The|strong="H3205"\w* \w woman|strong="H3205"\w* \w conceived|strong="H2029"\w*, \w and|strong="H1121"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w at|strong="H1121"\w* \w that|strong="H2416"\w* \w season|strong="H6256"\w* \w when|strong="H6256"\w* \w the|strong="H3205"\w* \w time|strong="H6256"\w* came around, \w as|strong="H1121"\w* Elisha \w had|strong="H3205"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w her|strong="H3205"\w*. +\v 18 \w When|strong="H1961"\w* \w the|strong="H3117"\w* \w child|strong="H3206"\w* \w was|strong="H1961"\w* \w grown|strong="H1431"\w*, \w one|strong="H1961"\w* \w day|strong="H3117"\w* \w he|strong="H3117"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w his|strong="H1961"\w* father \w to|strong="H3318"\w* \w the|strong="H3117"\w* \w reapers|strong="H7114"\w*. +\v 19 He said \w to|strong="H5375"\w* \w his|strong="H5375"\w* father, “\w My|strong="H5375"\w* \w head|strong="H7218"\w*! \w My|strong="H5375"\w* \w head|strong="H7218"\w*!” +\p He said \w to|strong="H5375"\w* \w his|strong="H5375"\w* \w servant|strong="H5288"\w*, “\w Carry|strong="H5375"\w* \w him|strong="H5375"\w* \w to|strong="H5375"\w* \w his|strong="H5375"\w* mother.” +\p +\v 20 \w When|strong="H5704"\w* \w he|strong="H5704"\w* \w had|strong="H3427"\w* \w taken|strong="H5375"\w* \w him|strong="H5921"\w* \w and|strong="H3427"\w* \w brought|strong="H5375"\w* \w him|strong="H5921"\w* \w to|strong="H5704"\w* \w his|strong="H5375"\w* mother, \w he|strong="H5704"\w* \w sat|strong="H3427"\w* \w on|strong="H5921"\w* \w her|strong="H5375"\w* \w knees|strong="H1290"\w* \w until|strong="H5704"\w* \w noon|strong="H6672"\w*, \w and|strong="H3427"\w* \w then|strong="H5375"\w* \w died|strong="H4191"\w*. +\v 21 \w She|strong="H5921"\w* \w went|strong="H3318"\w* \w up|strong="H5927"\w* \w and|strong="H5927"\w* \w laid|strong="H7901"\w* \w him|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* man \w of|strong="H5921"\w* God’s \w bed|strong="H4296"\w*, \w and|strong="H5927"\w* \w shut|strong="H5462"\w* \w the|strong="H5921"\w* door \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H5927"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*. +\v 22 \w She|strong="H7121"\w* \w called|strong="H7121"\w* \w to|strong="H5704"\w* \w her|strong="H7971"\w* husband \w and|strong="H7971"\w* \w said|strong="H7121"\w*, “\w Please|strong="H4994"\w* \w send|strong="H7971"\w* \w me|strong="H4994"\w* \w one|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w servants|strong="H5288"\w*, \w and|strong="H7971"\w* \w one|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* donkeys, \w that|strong="H5288"\w* \w I|strong="H5704"\w* \w may|strong="H4994"\w* \w run|strong="H7323"\w* \w to|strong="H5704"\w* \w the|strong="H4480"\w* \w man|strong="H5288"\w* \w of|strong="H4480"\w* \w God|strong="H7971"\w* \w and|strong="H7971"\w* \w come|strong="H7725"\w* \w again|strong="H7725"\w*.” +\p +\v 23 \w He|strong="H3117"\w* said, “\w Why|strong="H4069"\w* \w would|strong="H1980"\w* \w you|strong="H3117"\w* \w want|strong="H3808"\w* \w to|strong="H1980"\w* \w go|strong="H1980"\w* \w to|strong="H1980"\w* \w him|strong="H1980"\w* \w today|strong="H3117"\w*? \w It|strong="H1980"\w* \w is|strong="H3117"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w new|strong="H2320"\w* \w moon|strong="H2320"\w* \w or|strong="H3808"\w* \w a|strong="H3068"\w* \w Sabbath|strong="H7676"\w*.” +\p \w She|strong="H2320"\w* said, “\w It|strong="H1980"\w*’s \w all|strong="H3117"\w* right.” +\p +\v 24 \w Then|strong="H3588"\w* \w she|strong="H3588"\w* \w saddled|strong="H2280"\w* \w a|strong="H3068"\w* donkey, \w and|strong="H3212"\w* said \w to|strong="H3212"\w* \w her|strong="H3212"\w* \w servant|strong="H5288"\w*, “\w Drive|strong="H5090"\w*, \w and|strong="H3212"\w* \w go|strong="H3212"\w* \w forward|strong="H3212"\w*! Don’t \w slow|strong="H6113"\w* \w down|strong="H3212"\w* \w for|strong="H3588"\w* \w me|strong="H3212"\w*, \w unless|strong="H3588"\w* \w I|strong="H3588"\w* ask \w you|strong="H3588"\w* \w to|strong="H3212"\w*.” +\p +\v 25 \w So|strong="H1961"\w* she \w went|strong="H3212"\w*, \w and|strong="H3212"\w* \w came|strong="H1961"\w* \w to|strong="H3212"\w* \w the|strong="H7200"\w* \w man|strong="H5288"\w* \w of|strong="H2022"\w* God \w to|strong="H3212"\w* \w Mount|strong="H2022"\w* \w Carmel|strong="H3760"\w*. \w When|strong="H1961"\w* \w the|strong="H7200"\w* \w man|strong="H5288"\w* \w of|strong="H2022"\w* God \w saw|strong="H7200"\w* \w her|strong="H7200"\w* \w afar|strong="H2022"\w* \w off|strong="H7200"\w*, \w he|strong="H3212"\w* said \w to|strong="H3212"\w* \w Gehazi|strong="H1522"\w* \w his|strong="H7200"\w* \w servant|strong="H5288"\w*, “\w Behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w is|strong="H2009"\w* \w the|strong="H7200"\w* \w Shunammite|strong="H7767"\w*. +\v 26 \w Please|strong="H4994"\w* \w run|strong="H7323"\w* \w now|strong="H6258"\w* \w to|strong="H7323"\w* \w meet|strong="H7125"\w* \w her|strong="H7125"\w*, \w and|strong="H7965"\w* ask \w her|strong="H7125"\w*, ‘\w Is|strong="H3206"\w* \w it|strong="H7965"\w* \w well|strong="H7965"\w* \w with|strong="H7323"\w* \w you|strong="H6258"\w*? \w Is|strong="H3206"\w* \w it|strong="H7965"\w* \w well|strong="H7965"\w* \w with|strong="H7323"\w* \w your|strong="H4994"\w* husband? \w Is|strong="H3206"\w* \w it|strong="H7965"\w* \w well|strong="H7965"\w* \w with|strong="H7323"\w* \w your|strong="H4994"\w* \w child|strong="H3206"\w*?’” +\p She answered, “\w It|strong="H7965"\w* \w is|strong="H3206"\w* \w well|strong="H7965"\w*.” +\p +\v 27 \w When|strong="H3588"\w* \w she|strong="H3588"\w* \w came|strong="H5066"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w man|strong="H5315"\w* \w of|strong="H3068"\w* \w God|strong="H3068"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w hill|strong="H2022"\w*, \w she|strong="H3588"\w* \w caught|strong="H2388"\w* \w hold|strong="H2388"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w feet|strong="H7272"\w*. \w Gehazi|strong="H1522"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H3068"\w* \w thrust|strong="H1920"\w* \w her|strong="H5046"\w* \w away|strong="H4480"\w*; \w but|strong="H3588"\w* \w the|strong="H3588"\w* \w man|strong="H5315"\w* \w of|strong="H3068"\w* \w God|strong="H3068"\w* said, “\w Leave|strong="H4480"\w* \w her|strong="H5046"\w* \w alone|strong="H7503"\w*, \w for|strong="H3588"\w* \w her|strong="H5046"\w* \w soul|strong="H5315"\w* \w is|strong="H3068"\w* \w troubled|strong="H4843"\w* \w within|strong="H4480"\w* \w her|strong="H5046"\w*; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w hidden|strong="H5956"\w* \w it|strong="H3588"\w* \w from|strong="H4480"\w* \w me|strong="H5315"\w*, \w and|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w told|strong="H5046"\w* \w me|strong="H5315"\w*.” +\p +\v 28 \w Then|strong="H3808"\w* \w she|strong="H3808"\w* said, “\w Did|strong="H3808"\w* \w I|strong="H3808"\w* \w ask|strong="H7592"\w* \w you|strong="H3808"\w* \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*, \w my|strong="H3808"\w* lord? Didn’t \w I|strong="H3808"\w* say, ‘Do \w not|strong="H3808"\w* \w deceive|strong="H7952"\w* \w me|strong="H7592"\w*’?” +\p +\v 29 \w Then|strong="H6030"\w* \w he|strong="H3588"\w* \w said|strong="H6030"\w* \w to|strong="H3212"\w* \w Gehazi|strong="H1522"\w*, “Tuck \w your|strong="H3947"\w* cloak \w into|strong="H3212"\w* \w your|strong="H3947"\w* belt, \w take|strong="H3947"\w* \w my|strong="H7760"\w* \w staff|strong="H4938"\w* \w in|strong="H5921"\w* \w your|strong="H3947"\w* \w hand|strong="H3027"\w*, \w and|strong="H6030"\w* \w go|strong="H3212"\w* \w your|strong="H3947"\w* \w way|strong="H3212"\w*. \w If|strong="H3588"\w* \w you|strong="H3588"\w* \w meet|strong="H6440"\w* \w any|strong="H6440"\w* \w man|strong="H5288"\w*, don’t \w greet|strong="H1288"\w* \w him|strong="H6440"\w*; \w and|strong="H6030"\w* \w if|strong="H3588"\w* \w anyone|strong="H3588"\w* greets \w you|strong="H3588"\w*, don’t \w answer|strong="H6030"\w* \w him|strong="H6440"\w* \w again|strong="H3212"\w*. \w Then|strong="H6030"\w* \w lay|strong="H7760"\w* \w my|strong="H7760"\w* \w staff|strong="H4938"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w child|strong="H5288"\w*’s \w face|strong="H6440"\w*.” +\p +\v 30 \w The|strong="H3068"\w* \w child|strong="H5288"\w*’s mother said, “\w As|strong="H5315"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H5315"\w*, \w and|strong="H6965"\w* \w as|strong="H5315"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w* \w lives|strong="H5315"\w*, \w I|strong="H5315"\w* \w will|strong="H3068"\w* \w not|strong="H3212"\w* \w leave|strong="H5800"\w* \w you|strong="H5800"\w*.” +\p \w So|strong="H6965"\w* \w he|strong="H3068"\w* \w arose|strong="H6965"\w*, \w and|strong="H6965"\w* \w followed|strong="H3212"\w* \w her|strong="H5800"\w*. +\p +\v 31 \w Gehazi|strong="H1522"\w* \w went|strong="H5674"\w* \w ahead|strong="H6440"\w* \w of|strong="H6963"\w* \w them|strong="H5921"\w*, \w and|strong="H7725"\w* \w laid|strong="H7760"\w* \w the|strong="H6440"\w* \w staff|strong="H4938"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w child|strong="H5288"\w*’s \w face|strong="H6440"\w*; \w but|strong="H3808"\w* \w there|strong="H7725"\w* \w was|strong="H5288"\w* \w no|strong="H3808"\w* \w voice|strong="H6963"\w* \w and|strong="H7725"\w* \w no|strong="H3808"\w* \w hearing|strong="H7182"\w*. \w Therefore|strong="H5921"\w* \w he|strong="H3808"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w meet|strong="H7125"\w* \w him|strong="H6440"\w*, \w and|strong="H7725"\w* \w told|strong="H5046"\w* \w him|strong="H6440"\w*, “\w The|strong="H6440"\w* \w child|strong="H5288"\w* \w has|strong="H5674"\w* \w not|strong="H3808"\w* awakened.” +\p +\v 32 \w When|strong="H7901"\w* Elisha had \w come|strong="H5288"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*, \w behold|strong="H2009"\w*, \w the|strong="H5921"\w* \w child|strong="H5288"\w* \w was|strong="H1004"\w* \w dead|strong="H4191"\w*, \w and|strong="H1004"\w* \w lying|strong="H7901"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w bed|strong="H4296"\w*. +\v 33 \w He|strong="H3068"\w* \w went|strong="H3068"\w* \w in|strong="H3068"\w* \w therefore|strong="H3068"\w*, \w and|strong="H3068"\w* \w shut|strong="H5462"\w* \w the|strong="H3068"\w* \w door|strong="H1817"\w* \w on|strong="H3068"\w* \w them|strong="H8147"\w* \w both|strong="H8147"\w*, \w and|strong="H3068"\w* \w prayed|strong="H6419"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 34 \w He|strong="H5921"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H5869"\w* \w lay|strong="H7901"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w child|strong="H3206"\w*, \w and|strong="H5869"\w* \w put|strong="H7760"\w* \w his|strong="H7760"\w* \w mouth|strong="H6310"\w* \w on|strong="H5921"\w* \w his|strong="H7760"\w* \w mouth|strong="H6310"\w*, \w and|strong="H5869"\w* \w his|strong="H7760"\w* \w eyes|strong="H5869"\w* \w on|strong="H5921"\w* \w his|strong="H7760"\w* \w eyes|strong="H5869"\w*, \w and|strong="H5869"\w* \w his|strong="H7760"\w* \w hands|strong="H3709"\w* \w on|strong="H5921"\w* \w his|strong="H7760"\w* \w hands|strong="H3709"\w*. \w He|strong="H5921"\w* \w stretched|strong="H1457"\w* himself \w on|strong="H5921"\w* \w him|strong="H5921"\w*; \w and|strong="H5869"\w* \w the|strong="H5921"\w* \w child|strong="H3206"\w*’s \w flesh|strong="H1320"\w* \w grew|strong="H5927"\w* \w warm|strong="H2552"\w*. +\v 35 \w Then|strong="H7725"\w* \w he|strong="H5704"\w* \w returned|strong="H7725"\w*, \w and|strong="H7725"\w* \w walked|strong="H3212"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w once|strong="H6471"\w* \w back|strong="H7725"\w* \w and|strong="H7725"\w* \w forth|strong="H2008"\w*, \w then|strong="H7725"\w* \w went|strong="H3212"\w* \w up|strong="H5927"\w* \w and|strong="H7725"\w* \w stretched|strong="H1457"\w* himself \w out|strong="H5921"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*. \w Then|strong="H7725"\w* \w the|strong="H5921"\w* \w child|strong="H5288"\w* \w sneezed|strong="H2237"\w* \w seven|strong="H7651"\w* \w times|strong="H6471"\w*, \w and|strong="H7725"\w* \w the|strong="H5921"\w* \w child|strong="H5288"\w* \w opened|strong="H6491"\w* \w his|strong="H7725"\w* \w eyes|strong="H5869"\w*. +\v 36 \w He|strong="H7121"\w* \w called|strong="H7121"\w* \w Gehazi|strong="H1522"\w*, \w and|strong="H1121"\w* \w said|strong="H7121"\w*, “\w Call|strong="H7121"\w* \w this|strong="H2063"\w* \w Shunammite|strong="H7767"\w*!” \w So|strong="H7121"\w* \w he|strong="H7121"\w* \w called|strong="H7121"\w* \w her|strong="H5375"\w*. +\p \w When|strong="H1121"\w* \w she|strong="H7121"\w* \w had|strong="H1121"\w* come \w in|strong="H1121"\w* \w to|strong="H1121"\w* \w him|strong="H7121"\w*, \w he|strong="H7121"\w* \w said|strong="H7121"\w*, “\w Take|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H5375"\w* \w son|strong="H1121"\w*.” +\p +\v 37 \w Then|strong="H3318"\w* \w she|strong="H5921"\w* \w went|strong="H3318"\w* \w in|strong="H5921"\w*, \w fell|strong="H5307"\w* \w at|strong="H5921"\w* \w his|strong="H5375"\w* \w feet|strong="H7272"\w*, \w and|strong="H1121"\w* \w bowed|strong="H7812"\w* \w herself|strong="H7812"\w* \w to|strong="H3318"\w* \w the|strong="H5921"\w* ground; \w then|strong="H3318"\w* \w she|strong="H5921"\w* \w picked|strong="H5375"\w* \w up|strong="H5375"\w* \w her|strong="H5375"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*. +\p +\v 38 \w Elisha|strong="H7725"\w* \w came|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w Gilgal|strong="H1537"\w*. \w There|strong="H3427"\w* \w was|strong="H5288"\w* \w a|strong="H3068"\w* \w famine|strong="H7458"\w* \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*; \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w prophets|strong="H5030"\w* \w were|strong="H1121"\w* \w sitting|strong="H3427"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*; \w and|strong="H1121"\w* \w he|strong="H6440"\w* said \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w servant|strong="H5288"\w*, “\w Get|strong="H7725"\w* \w the|strong="H6440"\w* \w large|strong="H1419"\w* \w pot|strong="H5518"\w*, \w and|strong="H1121"\w* \w boil|strong="H1310"\w* \w stew|strong="H5138"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w prophets|strong="H5030"\w*.” +\p +\v 39 \w One|strong="H3808"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w* \w to|strong="H3318"\w* \w gather|strong="H3950"\w* herbs, \w and|strong="H7704"\w* \w found|strong="H4672"\w* \w a|strong="H3068"\w* \w wild|strong="H7704"\w* \w vine|strong="H1612"\w*, \w and|strong="H7704"\w* \w gathered|strong="H3950"\w* \w a|strong="H3068"\w* lap \w full|strong="H4393"\w* \w of|strong="H7704"\w* \w wild|strong="H7704"\w* \w gourds|strong="H6498"\w* \w from|strong="H4480"\w* \w it|strong="H3588"\w*, \w and|strong="H7704"\w* \w came|strong="H3318"\w* \w and|strong="H7704"\w* cut \w them|strong="H3318"\w* \w up|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H3588"\w* \w pot|strong="H5518"\w* \w of|strong="H7704"\w* \w stew|strong="H5138"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* didn’t \w recognize|strong="H3045"\w* \w them|strong="H3318"\w*. +\v 40 \w So|strong="H1961"\w* \w they|strong="H1992"\w* \w poured|strong="H3332"\w* \w out|strong="H3332"\w* \w for|strong="H1961"\w* \w the|strong="H1961"\w* \w men|strong="H1992"\w* \w to|strong="H3201"\w* eat. \w As|strong="H1961"\w* \w they|strong="H1992"\w* \w were|strong="H1961"\w* eating \w some|strong="H1992"\w* \w of|strong="H4194"\w* \w the|strong="H1961"\w* \w stew|strong="H5138"\w*, \w they|strong="H1992"\w* \w cried|strong="H6817"\w* \w out|strong="H3332"\w* \w and|strong="H4194"\w* said, “Man \w of|strong="H4194"\w* \w God|strong="H3808"\w*, \w there|strong="H1961"\w* \w is|strong="H1961"\w* \w death|strong="H4194"\w* \w in|strong="H3808"\w* \w the|strong="H1961"\w* \w pot|strong="H5518"\w*!” \w And|strong="H4194"\w* \w they|strong="H1992"\w* \w could|strong="H3201"\w* \w not|strong="H3808"\w* eat \w it|strong="H1961"\w*. +\p +\v 41 \w But|strong="H3808"\w* \w he|strong="H3808"\w* \w said|strong="H1697"\w*, “\w Then|strong="H1961"\w* \w bring|strong="H3947"\w* \w meal|strong="H7058"\w*.” \w He|strong="H3808"\w* \w threw|strong="H7993"\w* \w it|strong="H1961"\w* \w into|strong="H3332"\w* \w the|strong="H3947"\w* \w pot|strong="H5518"\w*; \w and|strong="H5971"\w* \w he|strong="H3808"\w* \w said|strong="H1697"\w*, “\w Serve|strong="H1961"\w* \w it|strong="H1961"\w* \w to|strong="H1961"\w* \w the|strong="H3947"\w* \w people|strong="H5971"\w*, \w that|strong="H5971"\w* \w they|strong="H3808"\w* \w may|strong="H1961"\w* eat.” \w And|strong="H5971"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w nothing|strong="H3808"\w* \w harmful|strong="H7451"\w* \w in|strong="H1697"\w* \w the|strong="H3947"\w* \w pot|strong="H5518"\w*. +\p +\v 42 \w A|strong="H3068"\w* man \w from|strong="H3899"\w* Baal Shalishah \w came|strong="H5971"\w*, \w and|strong="H6242"\w* \w brought|strong="H5414"\w* \w the|strong="H5414"\w* man \w of|strong="H5971"\w* \w God|strong="H5414"\w* \w some|strong="H5971"\w* \w bread|strong="H3899"\w* \w of|strong="H5971"\w* \w the|strong="H5414"\w* \w first|strong="H1061"\w* \w fruits|strong="H1061"\w*: \w twenty|strong="H6242"\w* \w loaves|strong="H3899"\w* \w of|strong="H5971"\w* \w barley|strong="H8184"\w* \w and|strong="H6242"\w* \w fresh|strong="H3759"\w* \w ears|strong="H3759"\w* \w of|strong="H5971"\w* \w grain|strong="H3899"\w* \w in|strong="H3899"\w* \w his|strong="H5414"\w* \w sack|strong="H6861"\w*. Elisha said, “\w Give|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w*, \w that|strong="H5971"\w* \w they|strong="H5971"\w* \w may|strong="H5971"\w* \w eat|strong="H3899"\w*.” +\p +\v 43 \w His|strong="H5414"\w* \w servant|strong="H8334"\w* said, “\w What|strong="H4100"\w*, \w should|strong="H3068"\w* \w I|strong="H3588"\w* \w set|strong="H5414"\w* \w this|strong="H2088"\w* \w before|strong="H6440"\w* \w a|strong="H3068"\w* \w hundred|strong="H3967"\w* \w men|strong="H5971"\w*?” +\p \w But|strong="H3588"\w* \w he|strong="H3588"\w* said, “\w Give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w may|strong="H3068"\w* eat; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w They|strong="H3588"\w* \w will|strong="H3068"\w* eat, \w and|strong="H3967"\w* \w will|strong="H3068"\w* \w have|strong="H3068"\w* \w some|strong="H3498"\w* \w left|strong="H3498"\w* \w over|strong="H5414"\w*.’” +\p +\v 44 \w So|strong="H5414"\w* \w he|strong="H3068"\w* \w set|strong="H5414"\w* \w it|strong="H5414"\w* \w before|strong="H6440"\w* \w them|strong="H5414"\w* \w and|strong="H3068"\w* \w they|strong="H3068"\w* ate \w and|strong="H3068"\w* \w had|strong="H3068"\w* \w some|strong="H1697"\w* \w left|strong="H3498"\w* \w over|strong="H5414"\w*, according \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*. +\c 5 +\p +\v 1 \w Now|strong="H1961"\w* \w Naaman|strong="H5283"\w*, \w captain|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w army|strong="H2428"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria, \w was|strong="H3068"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w man|strong="H1368"\w* \w with|strong="H3068"\w* \w his|strong="H5375"\w* \w master|strong="H8269"\w*, \w and|strong="H3068"\w* \w honorable|strong="H5375"\w*, \w because|strong="H3588"\w* \w by|strong="H3068"\w* \w him|strong="H5414"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w given|strong="H5414"\w* \w victory|strong="H8668"\w* \w to|strong="H3068"\w* Syria; \w he|strong="H3588"\w* \w was|strong="H3068"\w* \w also|strong="H3068"\w* \w a|strong="H3068"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w* \w of|strong="H4428"\w* \w valor|strong="H2428"\w*, \w but|strong="H3588"\w* \w he|strong="H3588"\w* \w was|strong="H3068"\w* \w a|strong="H3068"\w* \w leper|strong="H6879"\w*. +\v 2 \w The|strong="H6440"\w* Syrians \w had|strong="H1961"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w in|strong="H3478"\w* \w bands|strong="H1416"\w*, \w and|strong="H3478"\w* \w had|strong="H1961"\w* \w brought|strong="H3318"\w* \w away|strong="H7617"\w* \w captive|strong="H7617"\w* \w out|strong="H3318"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H6440"\w* \w Israel|strong="H3478"\w* \w a|strong="H3068"\w* \w little|strong="H6996"\w* \w girl|strong="H5291"\w*, \w and|strong="H3478"\w* \w she|strong="H6440"\w* \w waited|strong="H1961"\w* \w on|strong="H1961"\w* \w Naaman|strong="H5283"\w*’s wife. +\v 3 \w She|strong="H6440"\w* said \w to|strong="H6440"\w* \w her|strong="H6440"\w* \w mistress|strong="H1404"\w*, “\w I|strong="H6440"\w* wish \w that|strong="H5030"\w* \w my|strong="H6440"\w* lord \w were|strong="H5030"\w* \w with|strong="H6440"\w* \w the|strong="H6440"\w* \w prophet|strong="H5030"\w* \w who|strong="H5030"\w* \w is|strong="H6440"\w* \w in|strong="H6440"\w* \w Samaria|strong="H8111"\w*! Then \w he|strong="H6440"\w* would heal \w him|strong="H6440"\w* \w of|strong="H6440"\w* \w his|strong="H6440"\w* \w leprosy|strong="H6883"\w*.” +\p +\v 4 Someone \w went|strong="H3478"\w* \w in|strong="H3478"\w* \w and|strong="H3478"\w* \w told|strong="H5046"\w* \w his|strong="H5046"\w* lord, \w saying|strong="H1696"\w*, “\w The|strong="H5046"\w* \w girl|strong="H5291"\w* \w who|strong="H3478"\w* \w is|strong="H3478"\w* \w from|strong="H3478"\w* \w the|strong="H5046"\w* land \w of|strong="H1696"\w* \w Israel|strong="H3478"\w* \w said|strong="H1696"\w* \w this|strong="H2063"\w*.” +\p +\v 5 \w The|strong="H3947"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria said, “\w Go|strong="H3212"\w* \w now|strong="H3947"\w*, \w and|strong="H3478"\w* \w I|strong="H3027"\w* \w will|strong="H4428"\w* \w send|strong="H7971"\w* \w a|strong="H3068"\w* \w letter|strong="H5612"\w* \w to|strong="H3478"\w* \w the|strong="H3947"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*.” +\p \w He|strong="H3027"\w* \w departed|strong="H3212"\w*, \w and|strong="H3478"\w* \w took|strong="H3947"\w* \w with|strong="H3212"\w* \w him|strong="H7971"\w* \w ten|strong="H6235"\w* \w talents|strong="H3603"\w*\f + \fr 5:5 \ft A talent is about 30 kilograms or 66 pounds\f* \w of|strong="H4428"\w* \w silver|strong="H3701"\w*, \w six|strong="H8337"\w* thousand pieces \w of|strong="H4428"\w* \w gold|strong="H2091"\w*, \w and|strong="H3478"\w* \w ten|strong="H6235"\w* \w changes|strong="H2487"\w* \w of|strong="H4428"\w* clothing. +\v 6 \w He|strong="H7971"\w* \w brought|strong="H3478"\w* \w the|strong="H7971"\w* \w letter|strong="H5612"\w* \w to|strong="H3478"\w* \w the|strong="H7971"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, saying, “\w Now|strong="H6258"\w* \w when|strong="H7971"\w* \w this|strong="H2088"\w* \w letter|strong="H5612"\w* \w has|strong="H3478"\w* \w come|strong="H3478"\w* \w to|strong="H3478"\w* \w you|strong="H7971"\w*, \w behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w have|strong="H5650"\w* \w sent|strong="H7971"\w* \w Naaman|strong="H5283"\w* \w my|strong="H7971"\w* \w servant|strong="H5650"\w* \w to|strong="H3478"\w* \w you|strong="H7971"\w*, \w that|strong="H3478"\w* \w you|strong="H7971"\w* \w may|strong="H3478"\w* heal \w him|strong="H7971"\w* \w of|strong="H4428"\w* \w his|strong="H7971"\w* \w leprosy|strong="H6883"\w*.” +\p +\v 7 \w When|strong="H3588"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w had|strong="H1961"\w* \w read|strong="H7121"\w* \w the|strong="H7200"\w* \w letter|strong="H5612"\w*, \w he|strong="H1931"\w* \w tore|strong="H7167"\w* \w his|strong="H7121"\w* clothes \w and|strong="H3478"\w* \w said|strong="H7121"\w*, “\w Am|strong="H1961"\w* \w I|strong="H3588"\w* \w God|strong="H7971"\w*, \w to|strong="H3478"\w* \w kill|strong="H4191"\w* \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w make|strong="H3045"\w* \w alive|strong="H2421"\w*, \w that|strong="H3588"\w* \w this|strong="H2088"\w* \w man|strong="H4191"\w* \w sends|strong="H7971"\w* \w to|strong="H3478"\w* \w me|strong="H4994"\w* \w to|strong="H3478"\w* heal \w a|strong="H3068"\w* \w man|strong="H4191"\w* \w of|strong="H4428"\w* \w his|strong="H7121"\w* \w leprosy|strong="H6883"\w*? \w But|strong="H3588"\w* \w please|strong="H4994"\w* \w consider|strong="H7200"\w* \w and|strong="H3478"\w* \w see|strong="H7200"\w* \w how|strong="H3588"\w* \w he|strong="H1931"\w* seeks \w a|strong="H3068"\w* quarrel \w against|strong="H7971"\w* \w me|strong="H4994"\w*.” +\p +\v 8 \w It|strong="H3588"\w* \w was|strong="H1961"\w* \w so|strong="H7971"\w*, \w when|strong="H3588"\w* Elisha \w the|strong="H8085"\w* \w man|strong="H3045"\w* \w of|strong="H4428"\w* \w God|strong="H7971"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w had|strong="H1961"\w* \w torn|strong="H7167"\w* \w his|strong="H7971"\w* clothes, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w sent|strong="H7971"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w*, saying, “\w Why|strong="H4100"\w* \w have|strong="H1961"\w* \w you|strong="H3588"\w* \w torn|strong="H7167"\w* \w your|strong="H8085"\w* clothes? \w Let|strong="H7971"\w* \w him|strong="H7971"\w* \w come|strong="H1961"\w* \w now|strong="H4994"\w* \w to|strong="H3478"\w* \w me|strong="H4994"\w*, \w and|strong="H3478"\w* \w he|strong="H3588"\w* \w shall|strong="H3478"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w there|strong="H3426"\w* \w is|strong="H3426"\w* \w a|strong="H3068"\w* \w prophet|strong="H5030"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*.” +\p +\v 9 \w So|strong="H5975"\w* \w Naaman|strong="H5283"\w* came \w with|strong="H1004"\w* \w his|strong="H5975"\w* \w horses|strong="H5483"\w* \w and|strong="H1004"\w* \w with|strong="H1004"\w* \w his|strong="H5975"\w* \w chariots|strong="H7393"\w*, \w and|strong="H1004"\w* \w stood|strong="H5975"\w* \w at|strong="H1004"\w* \w the|strong="H5975"\w* \w door|strong="H6607"\w* \w of|strong="H1004"\w* \w the|strong="H5975"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* Elisha. +\v 10 \w Elisha|strong="H7725"\w* \w sent|strong="H7971"\w* \w a|strong="H3068"\w* \w messenger|strong="H4397"\w* \w to|strong="H1980"\w* \w him|strong="H7971"\w*, saying, “\w Go|strong="H1980"\w* \w and|strong="H1980"\w* \w wash|strong="H7364"\w* \w in|strong="H1980"\w* \w the|strong="H7725"\w* \w Jordan|strong="H3383"\w* \w seven|strong="H7651"\w* \w times|strong="H6471"\w*, \w and|strong="H1980"\w* \w your|strong="H7725"\w* \w flesh|strong="H1320"\w* \w shall|strong="H1320"\w* \w come|strong="H1980"\w* \w again|strong="H7725"\w* \w to|strong="H1980"\w* \w you|strong="H7971"\w*, \w and|strong="H1980"\w* \w you|strong="H7971"\w* \w shall|strong="H1320"\w* \w be|strong="H1320"\w* \w clean|strong="H2891"\w*.” +\p +\v 11 \w But|strong="H2009"\w* \w Naaman|strong="H5283"\w* \w was|strong="H3068"\w* \w angry|strong="H7107"\w*, \w and|strong="H3068"\w* \w went|strong="H3212"\w* \w away|strong="H3212"\w* \w and|strong="H3068"\w* \w said|strong="H7121"\w*, “\w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* thought, ‘\w He|strong="H3068"\w* \w will|strong="H3068"\w* \w surely|strong="H3318"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w me|strong="H7121"\w*, \w and|strong="H3068"\w* \w stand|strong="H5975"\w*, \w and|strong="H3068"\w* \w call|strong="H7121"\w* \w on|strong="H3027"\w* \w the|strong="H3068"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w wave|strong="H5130"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w* \w over|strong="H3027"\w* \w the|strong="H3068"\w* \w place|strong="H4725"\w*, \w and|strong="H3068"\w* heal \w the|strong="H3068"\w* \w leper|strong="H6879"\w*.’ +\v 12 Aren’t Abanah \w and|strong="H3478"\w* \w Pharpar|strong="H6554"\w*, \w the|strong="H3605"\w* \w rivers|strong="H5104"\w* \w of|strong="H4325"\w* \w Damascus|strong="H1834"\w*, \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w of|strong="H4325"\w* \w Israel|strong="H3478"\w*? Couldn’t \w I|strong="H3808"\w* \w wash|strong="H7364"\w* \w in|strong="H3478"\w* \w them|strong="H3478"\w* \w and|strong="H3478"\w* \w be|strong="H3808"\w* \w clean|strong="H2891"\w*?” \w So|strong="H3808"\w* \w he|strong="H3605"\w* \w turned|strong="H6437"\w* \w and|strong="H3478"\w* \w went|strong="H3212"\w* \w away|strong="H3212"\w* \w in|strong="H3478"\w* \w a|strong="H3068"\w* \w rage|strong="H2534"\w*. +\p +\v 13 \w His|strong="H7364"\w* \w servants|strong="H5650"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w and|strong="H1419"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H6213"\w*, \w and|strong="H1419"\w* \w said|strong="H1696"\w*, “\w My|strong="H6213"\w* father, \w if|strong="H3588"\w* \w the|strong="H3588"\w* \w prophet|strong="H5030"\w* \w had|strong="H3588"\w* \w asked|strong="H1696"\w* \w you|strong="H3588"\w* \w do|strong="H6213"\w* \w some|strong="H1697"\w* \w great|strong="H1419"\w* \w thing|strong="H1697"\w*, wouldn’t \w you|strong="H3588"\w* \w have|strong="H5030"\w* \w done|strong="H6213"\w* \w it|strong="H3588"\w*? \w How|strong="H3588"\w* \w much|strong="H1697"\w* \w rather|strong="H3588"\w* \w then|strong="H1696"\w*, \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w says|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*, ‘\w Wash|strong="H7364"\w*, \w and|strong="H1419"\w* \w be|strong="H3808"\w* \w clean|strong="H2891"\w*’?” +\p +\v 14 \w Then|strong="H7725"\w* \w went|strong="H3381"\w* \w he|strong="H7725"\w* \w down|strong="H3381"\w* \w and|strong="H7725"\w* \w dipped|strong="H2881"\w* \w himself|strong="H2881"\w* \w seven|strong="H7651"\w* \w times|strong="H6471"\w* \w in|strong="H1320"\w* \w the|strong="H7725"\w* \w Jordan|strong="H3383"\w*, according \w to|strong="H7725"\w* \w the|strong="H7725"\w* \w saying|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H7725"\w* \w man|strong="H5288"\w* \w of|strong="H1697"\w* God; \w and|strong="H7725"\w* \w his|strong="H7725"\w* \w flesh|strong="H1320"\w* \w was|strong="H1697"\w* \w restored|strong="H7725"\w* \w like|strong="H3381"\w* \w the|strong="H7725"\w* \w flesh|strong="H1320"\w* \w of|strong="H1697"\w* \w a|strong="H3068"\w* \w little|strong="H6996"\w* \w child|strong="H5288"\w*, \w and|strong="H7725"\w* \w he|strong="H7725"\w* \w was|strong="H1697"\w* \w clean|strong="H2891"\w*. +\v 15 \w He|strong="H1931"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w man|strong="H3605"\w* \w of|strong="H6440"\w* God, \w he|strong="H1931"\w* \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w company|strong="H4264"\w*, \w and|strong="H3478"\w* \w came|strong="H3478"\w*, \w and|strong="H3478"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*; \w and|strong="H3478"\w* \w he|strong="H1931"\w* said, “\w See|strong="H2009"\w* \w now|strong="H6258"\w*, \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w there|strong="H2009"\w* \w is|strong="H1931"\w* \w no|strong="H3605"\w* God \w in|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth, \w but|strong="H3588"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w please|strong="H4994"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w gift|strong="H1293"\w* \w from|strong="H7725"\w* \w your|strong="H3605"\w* \w servant|strong="H5650"\w*.” +\p +\v 16 \w But|strong="H3947"\w* \w he|strong="H3068"\w* said, “\w As|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*, \w before|strong="H6440"\w* \w whom|strong="H6440"\w* \w I|strong="H6440"\w* \w stand|strong="H5975"\w*, \w I|strong="H6440"\w* \w will|strong="H3068"\w* \w receive|strong="H3947"\w* none.” +\p \w He|strong="H3068"\w* \w urged|strong="H6484"\w* \w him|strong="H6440"\w* \w to|strong="H3068"\w* \w take|strong="H3947"\w* \w it|strong="H6440"\w*; \w but|strong="H3947"\w* \w he|strong="H3068"\w* \w refused|strong="H3985"\w*. +\v 17 \w Naaman|strong="H5283"\w* said, “\w If|strong="H3588"\w* \w not|strong="H3808"\w*, \w then|strong="H5414"\w*, \w please|strong="H4994"\w* \w let|strong="H4994"\w* \w two|strong="H6776"\w* \w mules|strong="H6505"\w*’ \w load|strong="H4853"\w* \w of|strong="H3068"\w* earth \w be|strong="H3808"\w* \w given|strong="H5414"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w*; \w for|strong="H3588"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w will|strong="H3068"\w* \w from|strong="H3068"\w* \w now|strong="H4994"\w* \w on|strong="H3068"\w* \w offer|strong="H6213"\w* \w neither|strong="H3808"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w nor|strong="H3808"\w* \w sacrifice|strong="H2077"\w* \w to|strong="H3068"\w* \w other|strong="H5750"\w* gods, \w but|strong="H3588"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 18 \w In|strong="H5921"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w may|strong="H4994"\w* \w Yahweh|strong="H3068"\w* \w pardon|strong="H5545"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w*: \w when|strong="H3068"\w* \w my|strong="H3068"\w* master goes \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Rimmon|strong="H7417"\w* \w to|strong="H3068"\w* \w worship|strong="H7812"\w* \w there|strong="H8033"\w*, \w and|strong="H3068"\w* \w he|strong="H1931"\w* \w leans|strong="H8172"\w* \w on|strong="H5921"\w* \w my|strong="H3068"\w* \w hand|strong="H3027"\w*, \w and|strong="H3068"\w* \w I|strong="H5921"\w* \w bow|strong="H7812"\w* myself \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Rimmon|strong="H7417"\w*. \w When|strong="H3068"\w* \w I|strong="H5921"\w* \w bow|strong="H7812"\w* myself \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Rimmon|strong="H7417"\w*, \w may|strong="H4994"\w* \w Yahweh|strong="H3068"\w* \w pardon|strong="H5545"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w in|strong="H5921"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*.” +\p +\v 19 \w He|strong="H3212"\w* said \w to|strong="H3212"\w* him, “\w Go|strong="H3212"\w* \w in|strong="H3212"\w* \w peace|strong="H7965"\w*.” +\p So \w he|strong="H3212"\w* \w departed|strong="H3212"\w* \w from|strong="H3212"\w* him \w a|strong="H3068"\w* \w little|strong="H3530"\w* \w way|strong="H3212"\w*. +\v 20 \w But|strong="H3588"\w* \w Gehazi|strong="H1522"\w* \w the|strong="H3588"\w* \w servant|strong="H5288"\w* \w of|strong="H3068"\w* Elisha \w the|strong="H3588"\w* \w man|strong="H5288"\w* \w of|strong="H3068"\w* \w God|strong="H3068"\w*, said, “\w Behold|strong="H2009"\w*, \w my|strong="H3068"\w* master \w has|strong="H3068"\w* \w spared|strong="H2820"\w* \w this|strong="H2088"\w* \w Naaman|strong="H5283"\w* \w the|strong="H3588"\w* Syrian, \w in|strong="H3068"\w* \w not|strong="H2088"\w* \w receiving|strong="H3947"\w* \w at|strong="H3068"\w* \w his|strong="H3068"\w* \w hands|strong="H3027"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w he|strong="H3588"\w* \w brought|strong="H3947"\w*. \w As|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w run|strong="H7323"\w* \w after|strong="H3588"\w* \w him|strong="H3027"\w*, \w and|strong="H3068"\w* \w take|strong="H3947"\w* \w something|strong="H3972"\w* \w from|strong="H3027"\w* \w him|strong="H3027"\w*.” +\p +\v 21 \w So|strong="H7200"\w* \w Gehazi|strong="H1522"\w* \w followed|strong="H7291"\w* \w after|strong="H5921"\w* \w Naaman|strong="H5283"\w*. \w When|strong="H7200"\w* \w Naaman|strong="H5283"\w* \w saw|strong="H7200"\w* \w one|strong="H7200"\w* \w running|strong="H7323"\w* \w after|strong="H5921"\w* \w him|strong="H5921"\w*, \w he|strong="H5921"\w* \w came|strong="H1522"\w* \w down|strong="H5307"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w chariot|strong="H4818"\w* \w to|strong="H5921"\w* \w meet|strong="H7125"\w* \w him|strong="H5921"\w*, \w and|strong="H7200"\w* said, “\w Is|strong="H5307"\w* \w all|strong="H7200"\w* \w well|strong="H7965"\w*?” +\p +\v 22 \w He|strong="H5414"\w* said, “\w All|strong="H5414"\w* \w is|strong="H2088"\w* \w well|strong="H7965"\w*. \w My|strong="H5414"\w* \w master|strong="H5414"\w* \w has|strong="H5030"\w* \w sent|strong="H7971"\w* \w me|strong="H5414"\w*, saying, ‘\w Behold|strong="H2009"\w*, even \w now|strong="H6258"\w* \w two|strong="H8147"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w prophets|strong="H5030"\w* \w have|strong="H1121"\w* \w come|strong="H4994"\w* \w to|strong="H7971"\w* \w me|strong="H5414"\w* \w from|strong="H1121"\w* \w the|strong="H5414"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H1121"\w* Ephraim. \w Please|strong="H4994"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w a|strong="H3068"\w* \w talent|strong="H3603"\w*\f + \fr 5:22 \ft A talent is about 30 kilograms or 66 pounds\f* \w of|strong="H1121"\w* \w silver|strong="H3701"\w* \w and|strong="H1121"\w* \w two|strong="H8147"\w* \w changes|strong="H2487"\w* \w of|strong="H1121"\w* clothing.’” +\p +\v 23 \w Naaman|strong="H5283"\w* said, “\w Be|strong="H5414"\w* \w pleased|strong="H2974"\w* \w to|strong="H5414"\w* \w take|strong="H3947"\w* \w two|strong="H8147"\w* \w talents|strong="H3603"\w*.” \w He|strong="H5414"\w* \w urged|strong="H6555"\w* \w him|strong="H5414"\w*, \w and|strong="H3701"\w* \w bound|strong="H6887"\w* \w two|strong="H8147"\w* \w talents|strong="H3603"\w* \w of|strong="H6440"\w* \w silver|strong="H3701"\w* \w in|strong="H6440"\w* \w two|strong="H8147"\w* \w bags|strong="H2754"\w*, \w with|strong="H6440"\w* \w two|strong="H8147"\w* \w changes|strong="H2487"\w* \w of|strong="H6440"\w* clothing, \w and|strong="H3701"\w* \w laid|strong="H5414"\w* \w them|strong="H5414"\w* \w on|strong="H5375"\w* \w two|strong="H8147"\w* \w of|strong="H6440"\w* \w his|strong="H5375"\w* \w servants|strong="H5288"\w*; \w and|strong="H3701"\w* \w they|strong="H5375"\w* \w carried|strong="H5375"\w* \w them|strong="H5414"\w* \w before|strong="H6440"\w* \w him|strong="H5414"\w*. +\v 24 \w When|strong="H7971"\w* \w he|strong="H1004"\w* \w came|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H3947"\w* \w hill|strong="H6076"\w*, \w he|strong="H1004"\w* \w took|strong="H3947"\w* \w them|strong="H7971"\w* \w from|strong="H3027"\w* \w their|strong="H3947"\w* \w hand|strong="H3027"\w*, \w and|strong="H7971"\w* stored \w them|strong="H7971"\w* \w in|strong="H1004"\w* \w the|strong="H3947"\w* \w house|strong="H1004"\w*. \w Then|strong="H3947"\w* \w he|strong="H1004"\w* \w let|strong="H7971"\w* \w the|strong="H3947"\w* \w men|strong="H6485"\w* \w go|strong="H3212"\w*, \w and|strong="H7971"\w* \w they|strong="H3027"\w* \w departed|strong="H3212"\w*. +\v 25 \w But|strong="H3808"\w* \w he|strong="H1931"\w* \w went|strong="H1980"\w* \w in|strong="H1980"\w*, \w and|strong="H1980"\w* \w stood|strong="H5975"\w* \w before|strong="H3808"\w* \w his|strong="H3808"\w* master. Elisha said \w to|strong="H1980"\w* \w him|strong="H5975"\w*, “\w Where|strong="H3808"\w* \w did|strong="H5650"\w* \w you|strong="H3808"\w* \w come|strong="H1980"\w* \w from|strong="H1980"\w*, \w Gehazi|strong="H1522"\w*?” +\p \w He|strong="H1931"\w* said, “\w Your|strong="H3808"\w* \w servant|strong="H5650"\w* \w went|strong="H1980"\w* \w nowhere|strong="H3808"\w*.” +\p +\v 26 \w He|strong="H3808"\w* said \w to|strong="H1980"\w* \w him|strong="H5921"\w*, “Didn’t \w my|strong="H3947"\w* \w heart|strong="H3820"\w* \w go|strong="H1980"\w* \w with|strong="H1980"\w* \w you|strong="H5921"\w* \w when|strong="H6256"\w* \w the|strong="H5921"\w* \w man|strong="H3820"\w* \w turned|strong="H2015"\w* \w from|strong="H5921"\w* \w his|strong="H3947"\w* \w chariot|strong="H4818"\w* \w to|strong="H1980"\w* \w meet|strong="H7125"\w* \w you|strong="H5921"\w*? \w Is|strong="H3820"\w* \w it|strong="H5921"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H1980"\w* \w receive|strong="H3947"\w* \w money|strong="H3701"\w*, \w and|strong="H1980"\w* \w to|strong="H1980"\w* \w receive|strong="H3947"\w* garments, \w and|strong="H1980"\w* \w olive|strong="H2132"\w* \w groves|strong="H2132"\w* \w and|strong="H1980"\w* \w vineyards|strong="H3754"\w*, \w and|strong="H1980"\w* \w sheep|strong="H6629"\w* \w and|strong="H1980"\w* \w cattle|strong="H1241"\w*, \w and|strong="H1980"\w* \w male|strong="H5650"\w* \w servants|strong="H5650"\w* \w and|strong="H1980"\w* \w female|strong="H8198"\w* \w servants|strong="H5650"\w*? +\v 27 Therefore \w the|strong="H6440"\w* \w leprosy|strong="H6883"\w* \w of|strong="H6440"\w* \w Naaman|strong="H5283"\w* \w will|strong="H2233"\w* \w cling|strong="H1692"\w* \w to|strong="H3318"\w* \w you|strong="H6440"\w* \w and|strong="H5769"\w* \w to|strong="H3318"\w* \w your|strong="H6440"\w* \w offspring|strong="H2233"\w*\f + \fr 5:27 \ft or, seed\f* \w forever|strong="H5769"\w*.” +\p \w He|strong="H3318"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w his|strong="H6440"\w* \w presence|strong="H6440"\w* \w a|strong="H3068"\w* \w leper|strong="H6879"\w*, \w as|strong="H3318"\w* white \w as|strong="H3318"\w* \w snow|strong="H7950"\w*. +\c 6 +\p +\v 1 \w The|strong="H6440"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w prophets|strong="H5030"\w* said \w to|strong="H6440"\w* \w Elisha|strong="H3427"\w*, “\w See|strong="H2009"\w* \w now|strong="H4994"\w*, \w the|strong="H6440"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w we|strong="H3068"\w* \w live|strong="H3427"\w* \w and|strong="H1121"\w* \w meet|strong="H6440"\w* \w with|strong="H3427"\w* \w you|strong="H6440"\w* \w is|strong="H2009"\w* \w too|strong="H4480"\w* \w small|strong="H6862"\w* \w for|strong="H6440"\w* \w us|strong="H4994"\w*. +\v 2 \w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w us|strong="H4994"\w* \w go|strong="H3212"\w* \w to|strong="H5704"\w* \w the|strong="H3947"\w* \w Jordan|strong="H3383"\w*, \w and|strong="H3212"\w* \w each|strong="H3947"\w* man \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w beam|strong="H6982"\w* \w from|strong="H3947"\w* \w there|strong="H8033"\w*, \w and|strong="H3212"\w* \w let|strong="H4994"\w*’s \w make|strong="H6213"\w* \w us|strong="H4994"\w* \w a|strong="H3068"\w* \w place|strong="H4725"\w* \w there|strong="H8033"\w*, \w where|strong="H8033"\w* \w we|strong="H3068"\w* \w may|strong="H4994"\w* \w live|strong="H3427"\w*.” +\p \w He|strong="H5704"\w* answered, “\w Go|strong="H3212"\w*!” +\p +\v 3 One said, “\w Please|strong="H4994"\w* \w be|strong="H4994"\w* \w pleased|strong="H2974"\w* \w to|strong="H3212"\w* \w go|strong="H3212"\w* \w with|strong="H3212"\w* \w your|strong="H4994"\w* \w servants|strong="H5650"\w*.” +\p \w He|strong="H3212"\w* answered, “\w I|strong="H5650"\w* \w will|strong="H5650"\w* \w go|strong="H3212"\w*.” +\v 4 So \w he|strong="H3212"\w* \w went|strong="H3212"\w* \w with|strong="H3212"\w* them. When they \w came|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H3212"\w* \w Jordan|strong="H3383"\w*, they \w cut|strong="H1504"\w* \w down|strong="H1504"\w* \w wood|strong="H6086"\w*. +\v 5 \w But|strong="H1961"\w* \w as|strong="H1961"\w* \w one|strong="H1931"\w* \w was|strong="H1961"\w* cutting \w down|strong="H5307"\w* \w a|strong="H3068"\w* tree, \w the|strong="H1961"\w* ax \w head|strong="H1270"\w* \w fell|strong="H5307"\w* \w into|strong="H5307"\w* \w the|strong="H1961"\w* \w water|strong="H4325"\w*. \w Then|strong="H1961"\w* \w he|strong="H1931"\w* \w cried|strong="H6817"\w* \w out|strong="H6817"\w* \w and|strong="H4325"\w* said, “Alas, \w my|strong="H1961"\w* master! \w For|strong="H4325"\w* \w it|strong="H1931"\w* \w was|strong="H1961"\w* \w borrowed|strong="H7592"\w*.” +\p +\v 6 \w The|strong="H7200"\w* \w man|strong="H5307"\w* \w of|strong="H6086"\w* God asked, “\w Where|strong="H8033"\w* \w did|strong="H1270"\w* \w it|strong="H7200"\w* \w fall|strong="H5307"\w*?” \w He|strong="H8033"\w* \w showed|strong="H7200"\w* \w him|strong="H7200"\w* \w the|strong="H7200"\w* \w place|strong="H4725"\w*. \w He|strong="H8033"\w* \w cut|strong="H7094"\w* \w down|strong="H5307"\w* \w a|strong="H3068"\w* \w stick|strong="H6086"\w*, \w threw|strong="H7993"\w* \w it|strong="H7200"\w* \w in|strong="H6086"\w* \w there|strong="H8033"\w*, \w and|strong="H6086"\w* \w made|strong="H6086"\w* \w the|strong="H7200"\w* \w iron|strong="H1270"\w* \w float|strong="H6687"\w*. +\v 7 \w He|strong="H3027"\w* said, “\w Take|strong="H3947"\w* \w it|strong="H7971"\w*.” \w So|strong="H3947"\w* \w he|strong="H3027"\w* \w put|strong="H7971"\w* \w out|strong="H7971"\w* \w his|strong="H7971"\w* \w hand|strong="H3027"\w* \w and|strong="H7971"\w* \w took|strong="H3947"\w* \w it|strong="H7971"\w*. +\p +\v 8 \w Now|strong="H1961"\w* \w the|strong="H1961"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria \w was|strong="H1961"\w* \w at|strong="H3478"\w* \w war|strong="H3898"\w* \w against|strong="H3898"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w he|strong="H3478"\w* \w took|strong="H1961"\w* \w counsel|strong="H3289"\w* \w with|strong="H3898"\w* \w his|strong="H3478"\w* \w servants|strong="H5650"\w*, saying, “\w My|strong="H1961"\w* \w camp|strong="H8466"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w in|strong="H3478"\w* \w such|strong="H6423"\w* \w and|strong="H3478"\w* \w such|strong="H6423"\w* \w a|strong="H3068"\w* \w place|strong="H4725"\w*.” +\p +\v 9 \w The|strong="H3588"\w* \w man|strong="H2088"\w* \w of|strong="H4428"\w* \w God|strong="H7971"\w* \w sent|strong="H7971"\w* \w to|strong="H3478"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, saying, “\w Beware|strong="H8104"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w not|strong="H2088"\w* \w pass|strong="H5674"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* Syrians \w are|strong="H3478"\w* \w coming|strong="H5185"\w* \w down|strong="H7971"\w* \w there|strong="H8033"\w*.” +\v 10 \w The|strong="H8104"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w sent|strong="H7971"\w* \w to|strong="H3478"\w* \w the|strong="H8104"\w* \w place|strong="H4725"\w* \w which|strong="H8033"\w* \w the|strong="H8104"\w* man \w of|strong="H4428"\w* \w God|strong="H3808"\w* told \w him|strong="H7971"\w* \w and|strong="H3478"\w* \w warned|strong="H2094"\w* \w him|strong="H7971"\w* \w of|strong="H4428"\w*; \w and|strong="H3478"\w* \w he|strong="H8033"\w* \w saved|strong="H8104"\w* \w himself|strong="H8104"\w* \w there|strong="H8033"\w*, \w not|strong="H3808"\w* once \w or|strong="H3808"\w* \w twice|strong="H8147"\w*. +\v 11 \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria’s \w heart|strong="H3820"\w* \w was|strong="H3478"\w* \w very|strong="H2088"\w* \w troubled|strong="H5590"\w* \w about|strong="H5921"\w* \w this|strong="H2088"\w*. \w He|strong="H3808"\w* \w called|strong="H7121"\w* \w his|strong="H7121"\w* \w servants|strong="H5650"\w*, \w and|strong="H3478"\w* \w said|strong="H1697"\w* \w to|strong="H3478"\w* \w them|strong="H5921"\w*, “Won’t \w you|strong="H5921"\w* \w show|strong="H5046"\w* \w me|strong="H5046"\w* \w which|strong="H7945"\w* \w of|strong="H4428"\w* \w us|strong="H5046"\w* \w is|strong="H2088"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*?” +\p +\v 12 \w One|strong="H3808"\w* \w of|strong="H4428"\w* \w his|strong="H5046"\w* \w servants|strong="H5650"\w* \w said|strong="H1696"\w*, “\w No|strong="H3808"\w*, \w my|strong="H5046"\w* lord, \w O|strong="H3068"\w* \w king|strong="H4428"\w*; \w but|strong="H3588"\w* Elisha, \w the|strong="H3588"\w* \w prophet|strong="H5030"\w* \w who|strong="H5650"\w* \w is|strong="H1697"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w tells|strong="H1696"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w the|strong="H3588"\w* \w words|strong="H1697"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w speak|strong="H1696"\w* \w in|strong="H3478"\w* \w your|strong="H3588"\w* \w bedroom|strong="H2315"\w*.” +\p +\v 13 \w He|strong="H1931"\w* said, “\w Go|strong="H3212"\w* \w and|strong="H7971"\w* \w see|strong="H7200"\w* \w where|strong="H2009"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w*, \w that|strong="H7200"\w* \w I|strong="H2009"\w* \w may|strong="H1931"\w* \w send|strong="H7971"\w* \w and|strong="H7971"\w* \w get|strong="H3947"\w* \w him|strong="H7971"\w*.” +\p \w He|strong="H1931"\w* \w was|strong="H1931"\w* \w told|strong="H5046"\w*, “\w Behold|strong="H2009"\w*, \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w in|strong="H3212"\w* \w Dothan|strong="H1886"\w*.” +\p +\v 14 \w Therefore|strong="H5921"\w* \w he|strong="H8033"\w* \w sent|strong="H7971"\w* \w horses|strong="H5483"\w*, \w chariots|strong="H7393"\w*, \w and|strong="H7971"\w* \w a|strong="H3068"\w* \w great|strong="H3515"\w* \w army|strong="H2428"\w* \w there|strong="H8033"\w*. \w They|strong="H8033"\w* came \w by|strong="H5921"\w* \w night|strong="H3915"\w* \w and|strong="H7971"\w* \w surrounded|strong="H5362"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*. +\v 15 \w When|strong="H3318"\w* \w the|strong="H6213"\w* \w servant|strong="H5288"\w* \w of|strong="H5892"\w* \w the|strong="H6213"\w* \w man|strong="H5288"\w* \w of|strong="H5892"\w* God \w had|strong="H2428"\w* \w risen|strong="H6965"\w* \w early|strong="H7925"\w* \w and|strong="H6965"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w*, \w behold|strong="H2009"\w*, \w an|strong="H6213"\w* \w army|strong="H2428"\w* \w with|strong="H6213"\w* \w horses|strong="H5483"\w* \w and|strong="H6965"\w* \w chariots|strong="H7393"\w* \w was|strong="H5892"\w* \w around|strong="H5437"\w* \w the|strong="H6213"\w* \w city|strong="H5892"\w*. \w His|strong="H6965"\w* \w servant|strong="H5288"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H6213"\w*, “Alas, \w my|strong="H6965"\w* master! \w What|strong="H6213"\w* \w shall|strong="H5892"\w* \w we|strong="H3068"\w* \w do|strong="H6213"\w*?” +\p +\v 16 \w He|strong="H3588"\w* answered, “Don’t \w be|strong="H3372"\w* \w afraid|strong="H3372"\w*, \w for|strong="H3588"\w* \w those|strong="H3588"\w* \w who|strong="H7227"\w* \w are|strong="H7227"\w* \w with|strong="H7227"\w* \w us|strong="H3588"\w* \w are|strong="H7227"\w* \w more|strong="H7227"\w* \w than|strong="H3588"\w* \w those|strong="H3588"\w* \w who|strong="H7227"\w* \w are|strong="H7227"\w* \w with|strong="H7227"\w* \w them|strong="H3588"\w*.” +\v 17 Elisha \w prayed|strong="H6419"\w*, \w and|strong="H3068"\w* said, “\w Yahweh|strong="H3068"\w*, \w please|strong="H4994"\w* \w open|strong="H6491"\w* \w his|strong="H3068"\w* \w eyes|strong="H5869"\w*, \w that|strong="H7200"\w* \w he|strong="H3068"\w* \w may|strong="H4994"\w* \w see|strong="H7200"\w*.” \w Yahweh|strong="H3068"\w* \w opened|strong="H6491"\w* \w the|strong="H7200"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w*’s \w eyes|strong="H5869"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w saw|strong="H7200"\w*; \w and|strong="H3068"\w* \w behold|strong="H2009"\w*, \w the|strong="H7200"\w* \w mountain|strong="H2022"\w* \w was|strong="H3068"\w* \w full|strong="H4390"\w* \w of|strong="H3068"\w* \w horses|strong="H5483"\w* \w and|strong="H3068"\w* \w chariots|strong="H7393"\w* \w of|strong="H3068"\w* fire \w around|strong="H5439"\w* Elisha. +\v 18 \w When|strong="H3068"\w* \w they|strong="H3068"\w* \w came|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w him|strong="H5221"\w*, Elisha \w prayed|strong="H6419"\w* \w to|strong="H3381"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w said|strong="H1697"\w*, “\w Please|strong="H4994"\w* \w strike|strong="H5221"\w* \w this|strong="H2088"\w* \w people|strong="H1471"\w* \w with|strong="H3068"\w* \w blindness|strong="H5575"\w*.” +\p \w He|strong="H3068"\w* \w struck|strong="H5221"\w* \w them|strong="H5221"\w* \w with|strong="H3068"\w* \w blindness|strong="H5575"\w* according \w to|strong="H3381"\w* Elisha’s \w word|strong="H1697"\w*. +\p +\v 19 Elisha said \w to|strong="H3212"\w* \w them|strong="H2088"\w*, “\w This|strong="H2088"\w* \w is|strong="H2088"\w* \w not|strong="H3808"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w*, \w neither|strong="H3808"\w* \w is|strong="H2088"\w* \w this|strong="H2088"\w* \w the|strong="H1870"\w* \w city|strong="H5892"\w*. \w Follow|strong="H3212"\w* \w me|strong="H3808"\w*, \w and|strong="H3212"\w* \w I|strong="H2088"\w* \w will|strong="H5892"\w* \w bring|strong="H3212"\w* \w you|strong="H3808"\w* \w to|strong="H3212"\w* \w the|strong="H1870"\w* \w man|strong="H2088"\w* whom \w you|strong="H3808"\w* \w seek|strong="H1245"\w*.” \w He|strong="H3808"\w* \w led|strong="H3212"\w* \w them|strong="H2088"\w* \w to|strong="H3212"\w* \w Samaria|strong="H8111"\w*. +\v 20 \w When|strong="H1961"\w* \w they|strong="H3068"\w* \w had|strong="H3068"\w* \w come|strong="H1961"\w* \w into|strong="H8432"\w* \w Samaria|strong="H8111"\w*, Elisha said, “\w Yahweh|strong="H3068"\w*, \w open|strong="H6491"\w* these men’s \w eyes|strong="H5869"\w*, \w that|strong="H7200"\w* \w they|strong="H3068"\w* \w may|strong="H1961"\w* \w see|strong="H7200"\w*.” +\p \w Yahweh|strong="H3068"\w* \w opened|strong="H6491"\w* \w their|strong="H3068"\w* \w eyes|strong="H5869"\w*, \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w saw|strong="H7200"\w*; \w and|strong="H3068"\w* \w behold|strong="H2009"\w*, \w they|strong="H3068"\w* \w were|strong="H1961"\w* \w in|strong="H3068"\w* \w the|strong="H7200"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w Samaria|strong="H8111"\w*. +\p +\v 21 \w The|strong="H7200"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* said \w to|strong="H3478"\w* Elisha, \w when|strong="H7200"\w* \w he|strong="H5221"\w* \w saw|strong="H7200"\w* \w them|strong="H5221"\w*, “\w My|strong="H7200"\w* father, \w shall|strong="H3478"\w* \w I|strong="H7200"\w* \w strike|strong="H5221"\w* \w them|strong="H5221"\w*? \w Shall|strong="H3478"\w* \w I|strong="H7200"\w* \w strike|strong="H5221"\w* \w them|strong="H5221"\w*?” +\p +\v 22 \w He|strong="H3808"\w* answered, “\w You|strong="H6440"\w* \w shall|strong="H2719"\w* \w not|strong="H3808"\w* \w strike|strong="H5221"\w* \w them|strong="H6440"\w*. Would \w you|strong="H6440"\w* \w strike|strong="H5221"\w* those \w whom|strong="H6440"\w* \w you|strong="H6440"\w* \w have|strong="H3808"\w* \w taken|strong="H7617"\w* \w captive|strong="H7617"\w* \w with|strong="H6440"\w* \w your|strong="H7760"\w* \w sword|strong="H2719"\w* \w and|strong="H3212"\w* \w with|strong="H6440"\w* \w your|strong="H7760"\w* \w bow|strong="H7198"\w*? \w Set|strong="H7760"\w* \w bread|strong="H3899"\w* \w and|strong="H3212"\w* \w water|strong="H4325"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*, \w that|strong="H4325"\w* \w they|strong="H3808"\w* \w may|strong="H4325"\w* \w eat|strong="H3899"\w* \w and|strong="H3212"\w* \w drink|strong="H8354"\w*, \w then|strong="H7760"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w their|strong="H7760"\w* master.” +\p +\v 23 \w He|strong="H3808"\w* \w prepared|strong="H3739"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w feast|strong="H3740"\w* \w for|strong="H7971"\w* \w them|strong="H1992"\w*. \w After|strong="H1992"\w* \w they|strong="H1992"\w* ate \w and|strong="H3478"\w* \w drank|strong="H8354"\w*, \w he|strong="H3808"\w* \w sent|strong="H7971"\w* \w them|strong="H1992"\w* \w away|strong="H7971"\w* \w and|strong="H3478"\w* \w they|strong="H1992"\w* \w went|strong="H3212"\w* \w to|strong="H3478"\w* \w their|strong="H1992"\w* master. \w So|strong="H7971"\w* \w the|strong="H7971"\w* \w bands|strong="H1416"\w* \w of|strong="H1416"\w* Syria stopped raiding \w the|strong="H7971"\w* land \w of|strong="H1416"\w* \w Israel|strong="H3478"\w*. +\p +\v 24 \w After|strong="H5921"\w* \w this|strong="H3651"\w*, Benhadad \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria \w gathered|strong="H6908"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w army|strong="H4264"\w*, \w and|strong="H4428"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H4428"\w* \w besieged|strong="H6696"\w* \w Samaria|strong="H8111"\w*. +\v 25 \w There|strong="H2009"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w famine|strong="H7458"\w* \w in|strong="H5921"\w* \w Samaria|strong="H8111"\w*. \w Behold|strong="H2009"\w*, \w they|strong="H5921"\w* \w besieged|strong="H6696"\w* \w it|strong="H5921"\w* \w until|strong="H5704"\w* \w a|strong="H3068"\w* \w donkey|strong="H2543"\w*’s \w head|strong="H7218"\w* \w was|strong="H1961"\w* \w sold|strong="H1961"\w* \w for|strong="H5704"\w* \w eighty|strong="H8084"\w* pieces \w of|strong="H7218"\w* \w silver|strong="H3701"\w*, \w and|strong="H3701"\w* \w the|strong="H5921"\w* \w fourth|strong="H7255"\w* \w part|strong="H7255"\w* \w of|strong="H7218"\w* \w a|strong="H3068"\w* \w kab|strong="H6894"\w*\f + \fr 6:25 \ft A kab was about 2 liters, so a fourth of a kab would be about 500 milliliters or about a pint\f* \w of|strong="H7218"\w* dove’s dung \w for|strong="H5704"\w* \w five|strong="H2568"\w* pieces \w of|strong="H7218"\w* \w silver|strong="H3701"\w*. +\v 26 \w As|strong="H1961"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w was|strong="H1961"\w* \w passing|strong="H5674"\w* \w by|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wall|strong="H2346"\w*, \w a|strong="H3068"\w* woman \w cried|strong="H6817"\w* \w to|strong="H3478"\w* \w him|strong="H5921"\w*, saying, “\w Help|strong="H3467"\w*, \w my|strong="H5921"\w* lord, \w O|strong="H3068"\w* \w king|strong="H4428"\w*!” +\p +\v 27 \w He|strong="H3068"\w* said, “If \w Yahweh|strong="H3068"\w* doesn’t \w help|strong="H3467"\w* \w you|strong="H4480"\w*, \w where|strong="H4480"\w* could \w I|strong="H3068"\w* get \w help|strong="H3467"\w* \w for|strong="H3068"\w* \w you|strong="H4480"\w*? \w From|strong="H4480"\w* \w the|strong="H3068"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w*, \w or|strong="H4480"\w* \w from|strong="H4480"\w* \w the|strong="H3068"\w* \w wine|strong="H3342"\w* \w press|strong="H3342"\w*?” +\v 28 \w Then|strong="H5414"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w asked|strong="H4100"\w* \w her|strong="H5414"\w*, “\w What|strong="H4100"\w* \w is|strong="H4100"\w* \w your|strong="H5414"\w* problem?” +\p \w She|strong="H2063"\w* answered, “\w This|strong="H2063"\w* woman said \w to|strong="H5414"\w* \w me|strong="H5414"\w*, ‘\w Give|strong="H5414"\w* \w your|strong="H5414"\w* \w son|strong="H1121"\w*, \w that|strong="H3117"\w* \w we|strong="H3068"\w* \w may|strong="H4428"\w* eat \w him|strong="H5414"\w* \w today|strong="H3117"\w*, \w and|strong="H1121"\w* \w we|strong="H3068"\w* \w will|strong="H4428"\w* eat \w my|strong="H5414"\w* \w son|strong="H1121"\w* \w tomorrow|strong="H4279"\w*.’ +\v 29 \w So|strong="H5414"\w* \w we|strong="H3068"\w* \w boiled|strong="H1310"\w* \w my|strong="H5414"\w* \w son|strong="H1121"\w* \w and|strong="H1121"\w* ate \w him|strong="H5414"\w*; \w and|strong="H1121"\w* \w I|strong="H3117"\w* said \w to|strong="H5414"\w* \w her|strong="H5414"\w* \w on|strong="H3117"\w* \w the|strong="H5414"\w* next \w day|strong="H3117"\w*, ‘\w Give|strong="H5414"\w* \w up|strong="H5414"\w* \w your|strong="H5414"\w* \w son|strong="H1121"\w*, \w that|strong="H3117"\w* \w we|strong="H3068"\w* \w may|strong="H1121"\w* eat \w him|strong="H5414"\w*;’ \w and|strong="H1121"\w* she \w has|strong="H3117"\w* \w hidden|strong="H2244"\w* \w her|strong="H5414"\w* \w son|strong="H1121"\w*.” +\p +\v 30 \w When|strong="H1961"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w heard|strong="H8085"\w* \w the|strong="H5921"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w woman|strong="H1004"\w*, \w he|strong="H1931"\w* \w tore|strong="H7167"\w* \w his|strong="H8085"\w* clothes. \w Now|strong="H1961"\w* \w he|strong="H1931"\w* \w was|strong="H1961"\w* \w passing|strong="H5674"\w* \w by|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wall|strong="H2346"\w*, \w and|strong="H4428"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w looked|strong="H7200"\w*, \w and|strong="H4428"\w* \w behold|strong="H2009"\w*, \w he|strong="H1931"\w* \w had|strong="H1961"\w* \w sackcloth|strong="H8242"\w* underneath \w on|strong="H5921"\w* \w his|strong="H8085"\w* \w body|strong="H1320"\w*. +\v 31 \w Then|strong="H3254"\w* \w he|strong="H3117"\w* said, “God \w do|strong="H6213"\w* \w so|strong="H6213"\w* \w to|strong="H5921"\w* \w me|strong="H5921"\w*, \w and|strong="H1121"\w* \w more|strong="H3254"\w* \w also|strong="H3541"\w*, \w if|strong="H1121"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H1121"\w* Elisha \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shaphat|strong="H8202"\w* \w stays|strong="H5975"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w* \w today|strong="H3117"\w*.” +\p +\v 32 \w But|strong="H3588"\w* \w Elisha|strong="H3427"\w* \w was|strong="H1931"\w* \w sitting|strong="H3427"\w* \w in|strong="H3427"\w* \w his|strong="H7971"\w* \w house|strong="H1004"\w*, \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w elders|strong="H2205"\w* \w were|strong="H1121"\w* \w sitting|strong="H3427"\w* \w with|strong="H1004"\w* \w him|strong="H6440"\w*. \w Then|strong="H2088"\w* \w the|strong="H6440"\w* \w king|strong="H6440"\w* \w sent|strong="H7971"\w* \w a|strong="H3068"\w* \w man|strong="H2205"\w* \w from|strong="H5493"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*; \w but|strong="H3588"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w messenger|strong="H4397"\w* \w came|strong="H4397"\w* \w to|strong="H7971"\w* \w him|strong="H6440"\w*, \w he|strong="H1931"\w* said \w to|strong="H7971"\w* \w the|strong="H6440"\w* \w elders|strong="H2205"\w*, “\w Do|strong="H2088"\w* \w you|strong="H3588"\w* \w see|strong="H7200"\w* \w how|strong="H3588"\w* \w this|strong="H2088"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w murderer|strong="H7523"\w* \w has|strong="H3588"\w* \w sent|strong="H7971"\w* \w to|strong="H7971"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w* \w my|strong="H7200"\w* \w head|strong="H7218"\w*? \w Behold|strong="H7200"\w*, \w when|strong="H3588"\w* \w the|strong="H6440"\w* \w messenger|strong="H4397"\w* \w comes|strong="H6440"\w*, \w shut|strong="H5462"\w* \w the|strong="H6440"\w* \w door|strong="H1817"\w*, \w and|strong="H1121"\w* \w hold|strong="H3905"\w* \w the|strong="H6440"\w* \w door|strong="H1817"\w* \w shut|strong="H5462"\w* \w against|strong="H6440"\w* \w him|strong="H6440"\w*. Isn’t \w the|strong="H6440"\w* \w sound|strong="H6963"\w* \w of|strong="H1121"\w* \w his|strong="H7971"\w* \w master|strong="H3427"\w*’s \w feet|strong="H7272"\w* behind \w him|strong="H6440"\w*?” +\p +\v 33 \w While|strong="H5750"\w* \w he|strong="H3068"\w* \w was|strong="H3068"\w* \w still|strong="H5750"\w* \w talking|strong="H1696"\w* \w with|strong="H5973"\w* \w them|strong="H3381"\w*, \w behold|strong="H2009"\w*, \w the|strong="H3068"\w* \w messenger|strong="H4397"\w* \w came|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H1696"\w* \w him|strong="H5973"\w*. \w Then|strong="H1696"\w* \w he|strong="H3068"\w* \w said|strong="H1696"\w*, “\w Behold|strong="H2009"\w*, \w this|strong="H2063"\w* \w evil|strong="H7451"\w* \w is|strong="H3068"\w* \w from|strong="H3381"\w* \w Yahweh|strong="H3068"\w*. \w Why|strong="H4100"\w* \w should|strong="H3068"\w* \w I|strong="H2009"\w* \w wait|strong="H3176"\w* \w for|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w any|strong="H5750"\w* \w longer|strong="H5750"\w*?” +\c 7 +\p +\v 1 Elisha \w said|strong="H1697"\w*, “\w Hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*. \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w Tomorrow|strong="H4279"\w* \w about|strong="H1697"\w* \w this|strong="H3541"\w* \w time|strong="H6256"\w* \w a|strong="H3068"\w* seah\f + \fr 7:1 \ft 1 seah is about 7 liters or 1.9 gallons or 0.8 pecks\f* \w of|strong="H3068"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w will|strong="H3068"\w* \w be|strong="H1697"\w* sold \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w shekel|strong="H8255"\w*,\f + \fr 7:1 \ft A shekel is about 10 grams or about 0.35 ounces. In this context, it was probably a silver coin weighing that much.\f* \w and|strong="H3068"\w* two \w seahs|strong="H5429"\w* \w of|strong="H3068"\w* \w barley|strong="H8184"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w shekel|strong="H8255"\w*, \w in|strong="H3068"\w* \w the|strong="H8085"\w* \w gate|strong="H8179"\w* \w of|strong="H3068"\w* \w Samaria|strong="H8111"\w*.’” +\p +\v 2 \w Then|strong="H6030"\w* \w the|strong="H5921"\w* \w captain|strong="H7991"\w* \w on|strong="H5921"\w* \w whose|strong="H8033"\w* \w hand|strong="H3027"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w leaned|strong="H8172"\w* \w answered|strong="H6030"\w* \w the|strong="H5921"\w* \w man|strong="H2088"\w* \w of|strong="H4428"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w said|strong="H1697"\w*, “\w Behold|strong="H2009"\w*, \w if|strong="H2005"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H6213"\w* windows \w in|strong="H5921"\w* \w heaven|strong="H8064"\w*, \w could|strong="H2088"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w be|strong="H1961"\w*?” +\p \w He|strong="H8033"\w* \w said|strong="H1697"\w*, “\w Behold|strong="H2009"\w*, \w you|strong="H5921"\w* \w will|strong="H3068"\w* \w see|strong="H7200"\w* \w it|strong="H5921"\w* \w with|strong="H3068"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w*, \w but|strong="H3808"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* eat \w of|strong="H4428"\w* \w it|strong="H5921"\w*.” +\p +\v 3 \w Now|strong="H1961"\w* \w there|strong="H1961"\w* \w were|strong="H1961"\w* four \w leprous|strong="H6879"\w* men \w at|strong="H3427"\w* \w the|strong="H5704"\w* \w entrance|strong="H6607"\w* \w of|strong="H3427"\w* \w the|strong="H5704"\w* \w gate|strong="H8179"\w*. \w They|strong="H5704"\w* said \w to|strong="H5704"\w* \w one|strong="H1961"\w* \w another|strong="H7453"\w*, “\w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w we|strong="H3068"\w* \w sit|strong="H3427"\w* \w here|strong="H6311"\w* \w until|strong="H5704"\w* \w we|strong="H3068"\w* \w die|strong="H4191"\w*? +\v 4 If \w we|strong="H3068"\w* say, ‘\w We|strong="H6258"\w* \w will|strong="H5892"\w* enter \w into|strong="H3212"\w* \w the|strong="H8033"\w* \w city|strong="H5892"\w*,’ \w then|strong="H6258"\w* \w the|strong="H8033"\w* \w famine|strong="H7458"\w* \w is|strong="H5892"\w* \w in|strong="H3427"\w* \w the|strong="H8033"\w* \w city|strong="H5892"\w*, \w and|strong="H3212"\w* \w we|strong="H3068"\w* \w will|strong="H5892"\w* \w die|strong="H4191"\w* \w there|strong="H8033"\w*. If \w we|strong="H3068"\w* \w sit|strong="H3427"\w* \w still|strong="H3427"\w* \w here|strong="H6311"\w*, \w we|strong="H3068"\w* \w also|strong="H4191"\w* \w die|strong="H4191"\w*. \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w come|strong="H3212"\w*, \w and|strong="H3212"\w* \w let|strong="H6258"\w*’s surrender \w to|strong="H4191"\w* \w the|strong="H8033"\w* \w army|strong="H4264"\w* \w of|strong="H3427"\w* \w the|strong="H8033"\w* Syrians. If \w they|strong="H8033"\w* \w save|strong="H2421"\w* \w us|strong="H2421"\w* \w alive|strong="H2421"\w*, \w we|strong="H3068"\w* \w will|strong="H5892"\w* \w live|strong="H3427"\w*; \w and|strong="H3212"\w* if \w they|strong="H8033"\w* \w kill|strong="H4191"\w* \w us|strong="H2421"\w*, \w we|strong="H3068"\w* \w will|strong="H5892"\w* \w only|strong="H5307"\w* \w die|strong="H4191"\w*.” +\p +\v 5 \w They|strong="H8033"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w in|strong="H8033"\w* \w the|strong="H5704"\w* \w twilight|strong="H5399"\w* \w to|strong="H5704"\w* \w go|strong="H6965"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w camp|strong="H4264"\w* \w of|strong="H4264"\w* \w the|strong="H5704"\w* Syrians. \w When|strong="H5704"\w* \w they|strong="H8033"\w* \w had|strong="H4264"\w* \w come|strong="H6965"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* outermost \w part|strong="H7097"\w* \w of|strong="H4264"\w* \w the|strong="H5704"\w* \w camp|strong="H4264"\w* \w of|strong="H4264"\w* \w the|strong="H5704"\w* Syrians, \w behold|strong="H2009"\w*, \w no|strong="H6965"\w* man \w was|strong="H4264"\w* \w there|strong="H8033"\w*. +\v 6 \w For|strong="H5921"\w* \w the|strong="H5921"\w* Lord\f + \fr 7:6 \ft The word translated “Lord” is “Adonai.”\f* \w had|strong="H3478"\w* \w made|strong="H3478"\w* \w the|strong="H5921"\w* \w army|strong="H2428"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* Syrians \w to|strong="H3478"\w* \w hear|strong="H8085"\w* \w the|strong="H5921"\w* \w sound|strong="H6963"\w* \w of|strong="H4428"\w* \w chariots|strong="H7393"\w* \w and|strong="H3478"\w* \w the|strong="H5921"\w* \w sound|strong="H6963"\w* \w of|strong="H4428"\w* \w horses|strong="H5483"\w*, \w even|strong="H5921"\w* \w the|strong="H5921"\w* \w noise|strong="H6963"\w* \w of|strong="H4428"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w army|strong="H2428"\w*; \w and|strong="H3478"\w* \w they|strong="H5921"\w* \w said|strong="H8085"\w* \w to|strong="H3478"\w* \w one|strong="H8085"\w* another, “\w Behold|strong="H2009"\w*, \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w has|strong="H3478"\w* \w hired|strong="H7936"\w* \w against|strong="H5921"\w* \w us|strong="H5921"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w Hittites|strong="H2850"\w* \w and|strong="H3478"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w Egyptians|strong="H4714"\w* \w to|strong="H3478"\w* attack \w us|strong="H5921"\w*.” +\v 7 Therefore \w they|strong="H1931"\w* \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w fled|strong="H5127"\w* \w in|strong="H5315"\w* \w the|strong="H6965"\w* \w twilight|strong="H5399"\w*, \w and|strong="H6965"\w* \w left|strong="H5800"\w* \w their|strong="H5800"\w* \w tents|strong="H4264"\w*, \w their|strong="H5800"\w* \w horses|strong="H5483"\w*, \w and|strong="H6965"\w* \w their|strong="H5800"\w* \w donkeys|strong="H2543"\w*, even \w the|strong="H6965"\w* \w camp|strong="H4264"\w* \w as|strong="H5315"\w* \w it|strong="H1931"\w* \w was|strong="H1931"\w*, \w and|strong="H6965"\w* \w fled|strong="H5127"\w* \w for|strong="H5315"\w* \w their|strong="H5800"\w* \w life|strong="H5315"\w*. +\v 8 \w When|strong="H5704"\w* these \w lepers|strong="H6879"\w* \w came|strong="H3212"\w* \w to|strong="H5704"\w* \w the|strong="H5375"\w* outermost \w part|strong="H7097"\w* \w of|strong="H4264"\w* \w the|strong="H5375"\w* \w camp|strong="H4264"\w*, \w they|strong="H8033"\w* \w went|strong="H3212"\w* \w into|strong="H7725"\w* \w one|strong="H5375"\w* tent, \w and|strong="H3701"\w* ate \w and|strong="H3701"\w* \w drank|strong="H8354"\w*, \w then|strong="H5375"\w* \w carried|strong="H5375"\w* \w away|strong="H7725"\w* \w silver|strong="H3701"\w*, \w gold|strong="H2091"\w*, \w and|strong="H3701"\w* clothing \w and|strong="H3701"\w* \w went|strong="H3212"\w* \w and|strong="H3701"\w* \w hid|strong="H2934"\w* \w it|strong="H7725"\w*. \w Then|strong="H5375"\w* \w they|strong="H8033"\w* \w came|strong="H3212"\w* \w back|strong="H7725"\w*, \w and|strong="H3701"\w* \w entered|strong="H5704"\w* \w into|strong="H7725"\w* another tent \w and|strong="H3701"\w* \w carried|strong="H5375"\w* things \w from|strong="H7725"\w* \w there|strong="H8033"\w* \w also|strong="H8354"\w*, \w and|strong="H3701"\w* \w went|strong="H3212"\w* \w and|strong="H3701"\w* \w hid|strong="H2934"\w* \w them|strong="H7725"\w*. +\v 9 \w Then|strong="H6258"\w* \w they|strong="H3117"\w* \w said|strong="H3651"\w* \w to|strong="H5704"\w* \w one|strong="H2088"\w* \w another|strong="H7453"\w*, “\w We|strong="H3117"\w* aren’t \w doing|strong="H6213"\w* \w right|strong="H3651"\w*. \w Today|strong="H3117"\w* \w is|strong="H2088"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H4428"\w* good \w news|strong="H1309"\w*, \w and|strong="H4428"\w* \w we|strong="H3068"\w* \w keep|strong="H6213"\w* \w silent|strong="H2814"\w*. \w If|strong="H3651"\w* \w we|strong="H3068"\w* \w wait|strong="H2442"\w* \w until|strong="H5704"\w* \w the|strong="H6213"\w* \w morning|strong="H1242"\w* light, \w punishment|strong="H5771"\w* \w will|strong="H4428"\w* \w overtake|strong="H4672"\w* \w us|strong="H5046"\w*. \w Now|strong="H6258"\w* \w therefore|strong="H3651"\w* \w come|strong="H3212"\w*, \w let|strong="H6258"\w*’s \w go|strong="H3212"\w* \w and|strong="H4428"\w* \w tell|strong="H5046"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w*’s \w household|strong="H1004"\w*.” +\p +\v 10 \w So|strong="H7121"\w* \w they|strong="H1992"\w* came \w and|strong="H6963"\w* \w called|strong="H7121"\w* \w to|strong="H7121"\w* \w the|strong="H3588"\w* \w city|strong="H5892"\w* \w gatekeepers|strong="H7778"\w*; \w and|strong="H6963"\w* \w they|strong="H1992"\w* \w told|strong="H5046"\w* \w them|strong="H1992"\w*, “\w We|strong="H3588"\w* came \w to|strong="H7121"\w* \w the|strong="H3588"\w* \w camp|strong="H4264"\w* \w of|strong="H5892"\w* \w the|strong="H3588"\w* Syrians, \w and|strong="H6963"\w*, \w behold|strong="H2009"\w*, \w there|strong="H8033"\w* \w was|strong="H5892"\w* no man \w there|strong="H8033"\w*, \w not|strong="H3588"\w* \w even|strong="H3588"\w* \w a|strong="H3068"\w* man’s \w voice|strong="H6963"\w*, \w but|strong="H3588"\w* \w the|strong="H3588"\w* \w horses|strong="H5483"\w* tied, \w and|strong="H6963"\w* \w the|strong="H3588"\w* \w donkeys|strong="H2543"\w* tied, \w and|strong="H6963"\w* \w the|strong="H3588"\w* \w tents|strong="H4264"\w* \w as|strong="H3588"\w* \w they|strong="H1992"\w* \w were|strong="H1992"\w*.” +\p +\v 11 \w Then|strong="H4428"\w* \w the|strong="H7121"\w* \w gatekeepers|strong="H7778"\w* \w called|strong="H7121"\w* out \w and|strong="H4428"\w* \w told|strong="H5046"\w* \w it|strong="H7121"\w* \w to|strong="H4428"\w* \w the|strong="H7121"\w* \w king|strong="H4428"\w*’s \w household|strong="H1004"\w* \w within|strong="H1004"\w*. +\p +\v 12 \w The|strong="H3588"\w* \w king|strong="H4428"\w* \w arose|strong="H6965"\w* \w in|strong="H6213"\w* \w the|strong="H3588"\w* \w night|strong="H3915"\w*, \w and|strong="H6965"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w his|strong="H3045"\w* \w servants|strong="H5650"\w*, “\w I|strong="H3588"\w* \w will|strong="H4428"\w* \w now|strong="H4994"\w* \w show|strong="H6213"\w* \w you|strong="H3588"\w* \w what|strong="H3045"\w* \w the|strong="H3588"\w* Syrians \w have|strong="H3045"\w* \w done|strong="H6213"\w* \w to|strong="H3318"\w* \w us|strong="H4994"\w*. \w They|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w are|strong="H5892"\w* \w hungry|strong="H7457"\w*. \w Therefore|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3045"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w camp|strong="H4264"\w* \w to|strong="H3318"\w* \w hide|strong="H2247"\w* \w themselves|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w*, saying, ‘\w When|strong="H3588"\w* \w they|strong="H3588"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w city|strong="H5892"\w*, \w we|strong="H3068"\w* \w shall|strong="H4428"\w* \w take|strong="H8610"\w* \w them|strong="H6213"\w* \w alive|strong="H2416"\w*, \w and|strong="H6965"\w* \w get|strong="H6965"\w* \w into|strong="H6213"\w* \w the|strong="H3588"\w* \w city|strong="H5892"\w*.’” +\p +\v 13 \w One|strong="H3605"\w* \w of|strong="H5650"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w* \w answered|strong="H6030"\w*, “\w Please|strong="H4994"\w* \w let|strong="H7971"\w* \w some|strong="H4480"\w* \w people|strong="H1995"\w* \w take|strong="H3947"\w* \w five|strong="H2568"\w* \w of|strong="H5650"\w* \w the|strong="H3605"\w* \w horses|strong="H5483"\w* \w that|strong="H7200"\w* \w remain|strong="H7604"\w*, \w which|strong="H3478"\w* \w are|strong="H3478"\w* \w left|strong="H7604"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* city. \w Behold|strong="H2009"\w*, \w they|strong="H3478"\w* \w are|strong="H3478"\w* \w like|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w multitude|strong="H1995"\w* \w of|strong="H5650"\w* \w Israel|strong="H3478"\w* \w who|strong="H3605"\w* \w are|strong="H3478"\w* \w left|strong="H7604"\w* \w in|strong="H3478"\w* \w it|strong="H7200"\w*. \w Behold|strong="H2009"\w*, \w they|strong="H3478"\w* \w are|strong="H3478"\w* \w like|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w multitude|strong="H1995"\w* \w of|strong="H5650"\w* \w Israel|strong="H3478"\w* \w who|strong="H3605"\w* \w are|strong="H3478"\w* \w consumed|strong="H8552"\w*. \w Let|strong="H7971"\w*’s \w send|strong="H7971"\w* \w and|strong="H3478"\w* \w see|strong="H7200"\w*.” +\p +\v 14 \w Therefore|strong="H7971"\w* \w they|strong="H3947"\w* \w took|strong="H3947"\w* \w two|strong="H8147"\w* \w chariots|strong="H7393"\w* \w with|strong="H3212"\w* \w horses|strong="H5483"\w*; \w and|strong="H7971"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w* \w sent|strong="H7971"\w* \w them|strong="H7971"\w* \w out|strong="H7971"\w* \w to|strong="H3212"\w* \w the|strong="H7200"\w* Syrian \w army|strong="H4264"\w*, saying, “\w Go|strong="H3212"\w* \w and|strong="H7971"\w* \w see|strong="H7200"\w*.” +\p +\v 15 \w They|strong="H5704"\w* \w went|strong="H3212"\w* \w after|strong="H2009"\w* \w them|strong="H7725"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*; \w and|strong="H7725"\w* \w behold|strong="H2009"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w path|strong="H1870"\w* \w was|strong="H4428"\w* \w full|strong="H4392"\w* \w of|strong="H4428"\w* garments \w and|strong="H7725"\w* \w equipment|strong="H3627"\w* \w which|strong="H4397"\w* \w the|strong="H3605"\w* Syrians \w had|strong="H4428"\w* \w cast|strong="H7993"\w* \w away|strong="H7725"\w* \w in|strong="H4428"\w* \w their|strong="H3605"\w* \w haste|strong="H2648"\w*. \w The|strong="H3605"\w* \w messengers|strong="H4397"\w* \w returned|strong="H7725"\w* \w and|strong="H7725"\w* \w told|strong="H5046"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. +\v 16 \w The|strong="H3068"\w* \w people|strong="H5971"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H3068"\w* plundered \w the|strong="H3068"\w* \w camp|strong="H4264"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* Syrians. \w So|strong="H1961"\w* \w a|strong="H3068"\w* seah\f + \fr 7:16 \ft 1 seah is about 7 liters or 1.9 gallons or 0.8 pecks\f* \w of|strong="H3068"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w was|strong="H3068"\w* \w sold|strong="H3318"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w shekel|strong="H8255"\w*, \w and|strong="H3068"\w* two \w measures|strong="H5429"\w* \w of|strong="H3068"\w* \w barley|strong="H8184"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w shekel|strong="H8255"\w*,\f + \fr 7:16 \ft A shekel is about 10 grams or about 0.35 ounces. In this context, it was probably a silver coin weighing that much.\f* according \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*. +\v 17 \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w had|strong="H4428"\w* \w appointed|strong="H6485"\w* \w the|strong="H5921"\w* \w captain|strong="H7991"\w* \w on|strong="H5921"\w* \w whose|strong="H8179"\w* \w hand|strong="H3027"\w* \w he|strong="H3027"\w* \w leaned|strong="H8172"\w* \w to|strong="H1696"\w* \w be|strong="H4191"\w* \w in|strong="H5921"\w* \w charge|strong="H5921"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w gate|strong="H8179"\w*; \w and|strong="H4428"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w trampled|strong="H7429"\w* \w over|strong="H5921"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w gate|strong="H8179"\w*, \w and|strong="H4428"\w* \w he|strong="H3027"\w* \w died|strong="H4191"\w* \w as|strong="H5971"\w* \w the|strong="H5921"\w* \w man|strong="H4191"\w* \w of|strong="H4428"\w* \w God|strong="H3027"\w* \w had|strong="H4428"\w* \w said|strong="H1696"\w*, \w who|strong="H5971"\w* \w spoke|strong="H1696"\w* \w when|strong="H1696"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w came|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H1696"\w* \w him|strong="H5921"\w*. +\v 18 \w It|strong="H1961"\w* \w happened|strong="H1961"\w* \w as|strong="H1961"\w* \w the|strong="H1961"\w* \w man|strong="H8179"\w* \w of|strong="H4428"\w* God \w had|strong="H1961"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H1961"\w* \w king|strong="H4428"\w*, \w saying|strong="H1696"\w*, “Two \w seahs|strong="H5429"\w*\f + \fr 7:18 \ft 1 seah is about 7 liters or 1.9 gallons or 0.8 pecks\f* \w of|strong="H4428"\w* \w barley|strong="H8184"\w* \w for|strong="H4428"\w* \w a|strong="H3068"\w* \w shekel|strong="H8255"\w*,\f + \fr 7:18 \ft A shekel is about 10 grams or about 0.35 ounces. In this context, it was probably a silver coin weighing that much.\f* \w and|strong="H4428"\w* \w a|strong="H3068"\w* seah \w of|strong="H4428"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w for|strong="H4428"\w* \w a|strong="H3068"\w* \w shekel|strong="H8255"\w*, \w shall|strong="H4428"\w* \w be|strong="H1961"\w* \w tomorrow|strong="H4279"\w* \w about|strong="H1961"\w* \w this|strong="H1696"\w* \w time|strong="H6256"\w* \w in|strong="H4428"\w* \w the|strong="H1961"\w* \w gate|strong="H8179"\w* \w of|strong="H4428"\w* \w Samaria|strong="H8111"\w*;” +\v 19 \w and|strong="H3068"\w* \w that|strong="H7200"\w* \w captain|strong="H7991"\w* \w answered|strong="H6030"\w* \w the|strong="H7200"\w* \w man|strong="H2088"\w* \w of|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w said|strong="H1697"\w*, “\w Now|strong="H1961"\w*, \w behold|strong="H2009"\w*, \w if|strong="H2005"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H6213"\w* windows \w in|strong="H3068"\w* \w heaven|strong="H8064"\w*, \w might|strong="H3068"\w* \w such|strong="H2088"\w* \w a|strong="H3068"\w* \w thing|strong="H1697"\w* \w be|strong="H1961"\w*?” \w and|strong="H3068"\w* \w he|strong="H8033"\w* \w said|strong="H1697"\w*, “\w Behold|strong="H2009"\w*, \w you|strong="H6213"\w* \w will|strong="H3068"\w* \w see|strong="H7200"\w* \w it|strong="H6213"\w* \w with|strong="H3068"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w*, \w but|strong="H3808"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* eat \w of|strong="H3068"\w* \w it|strong="H6213"\w*.” +\v 20 \w It|strong="H3651"\w* \w happened|strong="H1961"\w* \w like|strong="H1961"\w* \w that|strong="H5971"\w* \w to|strong="H4191"\w* \w him|strong="H4191"\w*, \w for|strong="H4191"\w* \w the|strong="H1961"\w* \w people|strong="H5971"\w* \w trampled|strong="H7429"\w* \w over|strong="H8179"\w* \w him|strong="H4191"\w* \w in|strong="H4191"\w* \w the|strong="H1961"\w* \w gate|strong="H8179"\w*, \w and|strong="H5971"\w* \w he|strong="H3651"\w* \w died|strong="H4191"\w*. +\c 8 +\p +\v 1 \w Now|strong="H3588"\w* \w Elisha|strong="H7121"\w* \w had|strong="H3068"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w woman|strong="H1004"\w* \w whose|strong="H1121"\w* \w son|strong="H1121"\w* \w he|strong="H3588"\w* \w had|strong="H3068"\w* \w restored|strong="H2421"\w* \w to|strong="H1696"\w* \w life|strong="H2421"\w*, \w saying|strong="H1696"\w*, “\w Arise|strong="H6965"\w*, \w and|strong="H1121"\w* \w go|strong="H3212"\w*, \w you|strong="H3588"\w* \w and|strong="H1121"\w* \w your|strong="H3068"\w* \w household|strong="H1004"\w*, \w and|strong="H1121"\w* \w stay|strong="H1481"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w while|strong="H3588"\w* wherever \w you|strong="H3588"\w* \w can|strong="H1004"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w called|strong="H7121"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w famine|strong="H7458"\w*. \w It|strong="H7121"\w* \w will|strong="H3068"\w* \w also|strong="H1571"\w* \w come|strong="H3212"\w* \w on|strong="H3068"\w* \w the|strong="H3588"\w* land \w for|strong="H3588"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w*.” +\p +\v 2 \w The|strong="H6213"\w* \w woman|strong="H1004"\w* \w arose|strong="H6965"\w*, \w and|strong="H6965"\w* \w did|strong="H6213"\w* according \w to|strong="H3212"\w* \w the|strong="H6213"\w* man \w of|strong="H1004"\w* God’s \w word|strong="H1697"\w*. \w She|strong="H1931"\w* \w went|strong="H3212"\w* \w with|strong="H1004"\w* \w her|strong="H1931"\w* \w household|strong="H1004"\w*, \w and|strong="H6965"\w* \w lived|strong="H1481"\w* \w in|strong="H8141"\w* \w the|strong="H6213"\w* land \w of|strong="H1004"\w* \w the|strong="H6213"\w* \w Philistines|strong="H6430"\w* \w for|strong="H6213"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w*. +\v 3 \w At|strong="H1004"\w* \w the|strong="H7725"\w* \w end|strong="H7097"\w* \w of|strong="H4428"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w*, \w the|strong="H7725"\w* \w woman|strong="H1004"\w* \w returned|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H7725"\w* \w land|strong="H7704"\w* \w of|strong="H4428"\w* \w the|strong="H7725"\w* \w Philistines|strong="H6430"\w*. \w Then|strong="H1961"\w* she \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H7725"\w* beg \w the|strong="H7725"\w* \w king|strong="H4428"\w* \w for|strong="H1004"\w* \w her|strong="H3318"\w* \w house|strong="H1004"\w* \w and|strong="H7725"\w* \w for|strong="H1004"\w* \w her|strong="H3318"\w* \w land|strong="H7704"\w*. +\v 4 \w Now|strong="H4994"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w was|strong="H4428"\w* \w talking|strong="H1696"\w* \w with|strong="H6213"\w* \w Gehazi|strong="H1522"\w* \w the|strong="H3605"\w* \w servant|strong="H5288"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w man|strong="H5288"\w* \w of|strong="H4428"\w* God, \w saying|strong="H1696"\w*, “\w Please|strong="H4994"\w* \w tell|strong="H1696"\w* \w me|strong="H4994"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w great|strong="H1419"\w* \w things|strong="H1419"\w* \w that|strong="H3605"\w* Elisha \w has|strong="H4428"\w* \w done|strong="H6213"\w*.” +\v 5 \w As|strong="H1961"\w* \w he|strong="H1931"\w* \w was|strong="H1961"\w* \w telling|strong="H5608"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w how|strong="H2009"\w* \w he|strong="H1931"\w* \w had|strong="H1961"\w* \w restored|strong="H2421"\w* \w to|strong="H4191"\w* \w life|strong="H2421"\w* \w him|strong="H5921"\w* \w who|strong="H1931"\w* \w was|strong="H1961"\w* \w dead|strong="H4191"\w*, \w behold|strong="H2009"\w*, \w the|strong="H5921"\w* \w woman|strong="H2088"\w* \w whose|strong="H1121"\w* \w son|strong="H1121"\w* \w he|strong="H1931"\w* \w had|strong="H1961"\w* \w restored|strong="H2421"\w* \w to|strong="H4191"\w* \w life|strong="H2421"\w* begged \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w for|strong="H5921"\w* \w her|strong="H5921"\w* \w house|strong="H1004"\w* \w and|strong="H1121"\w* \w for|strong="H5921"\w* \w her|strong="H5921"\w* \w land|strong="H7704"\w*. \w Gehazi|strong="H1522"\w* said, “\w My|strong="H5921"\w* lord, \w O|strong="H3068"\w* \w king|strong="H4428"\w*, \w this|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H5921"\w* \w woman|strong="H2088"\w*, \w and|strong="H1121"\w* \w this|strong="H2088"\w* \w is|strong="H2088"\w* \w her|strong="H5921"\w* \w son|strong="H1121"\w*, whom \w Elisha|strong="H2421"\w* \w restored|strong="H2421"\w* \w to|strong="H4191"\w* \w life|strong="H2421"\w*.” +\p +\v 6 \w When|strong="H3117"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w asked|strong="H7592"\w* \w the|strong="H3605"\w* woman, \w she|strong="H5704"\w* \w told|strong="H5608"\w* \w him|strong="H5414"\w*. \w So|strong="H5414"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w appointed|strong="H5414"\w* \w to|strong="H5704"\w* \w her|strong="H3605"\w* \w a|strong="H3068"\w* certain \w officer|strong="H5631"\w*, saying, “\w Restore|strong="H7725"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w was|strong="H3117"\w* hers, \w and|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fruits|strong="H8393"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w since|strong="H3117"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H3605"\w* \w she|strong="H5704"\w* \w left|strong="H5800"\w* \w the|strong="H3605"\w* \w land|strong="H7704"\w*, \w even|strong="H5704"\w* \w until|strong="H5704"\w* \w now|strong="H6258"\w*.” +\p +\v 7 \w Elisha|strong="H5704"\w* \w came|strong="H4428"\w* \w to|strong="H5704"\w* \w Damascus|strong="H1834"\w*; \w and|strong="H4428"\w* Benhadad \w the|strong="H5704"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria \w was|strong="H4428"\w* \w sick|strong="H2470"\w*. \w He|strong="H5704"\w* \w was|strong="H4428"\w* \w told|strong="H5046"\w*, “\w The|strong="H5704"\w* man \w of|strong="H4428"\w* God \w has|strong="H4428"\w* come \w here|strong="H2008"\w*.” +\p +\v 8 \w The|strong="H3947"\w* \w king|strong="H4428"\w* said \w to|strong="H3068"\w* \w Hazael|strong="H2371"\w*, “\w Take|strong="H3947"\w* \w a|strong="H3068"\w* \w present|strong="H4503"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*, \w and|strong="H3068"\w* \w go|strong="H3212"\w* \w meet|strong="H7125"\w* \w the|strong="H3947"\w* \w man|strong="H2088"\w* \w of|strong="H4428"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w inquire|strong="H1875"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w* \w by|strong="H3027"\w* \w him|strong="H3027"\w*, saying, ‘\w Will|strong="H3068"\w* \w I|strong="H2088"\w* \w recover|strong="H2421"\w* \w from|strong="H3027"\w* \w this|strong="H2088"\w* \w sickness|strong="H2483"\w*?’” +\p +\v 9 \w So|strong="H3947"\w* \w Hazael|strong="H2371"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w meet|strong="H7125"\w* \w him|strong="H6440"\w* \w and|strong="H1121"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* \w present|strong="H4503"\w* \w with|strong="H6440"\w* \w him|strong="H6440"\w*, even \w of|strong="H1121"\w* \w every|strong="H3605"\w* \w good|strong="H2898"\w* \w thing|strong="H2088"\w* \w of|strong="H1121"\w* \w Damascus|strong="H1834"\w*, forty \w camels|strong="H1581"\w*’ \w burden|strong="H4853"\w*, \w and|strong="H1121"\w* \w came|strong="H3212"\w* \w and|strong="H1121"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w* \w and|strong="H1121"\w* said, “\w Your|strong="H3605"\w* \w son|strong="H1121"\w* Benhadad \w king|strong="H4428"\w* \w of|strong="H1121"\w* Syria \w has|strong="H4428"\w* \w sent|strong="H7971"\w* \w me|strong="H6440"\w* \w to|strong="H3212"\w* \w you|strong="H6440"\w*, saying, ‘\w Will|strong="H4428"\w* \w I|strong="H2088"\w* \w recover|strong="H2421"\w* \w from|strong="H6440"\w* \w this|strong="H2088"\w* \w sickness|strong="H2483"\w*?’” +\p +\v 10 \w Elisha|strong="H2421"\w* said \w to|strong="H4191"\w* \w him|strong="H7200"\w*, “\w Go|strong="H3212"\w*, \w tell|strong="H7200"\w* \w him|strong="H7200"\w*, ‘\w You|strong="H3588"\w* \w will|strong="H3068"\w* \w surely|strong="H4191"\w* \w recover|strong="H2421"\w*;’ \w however|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w shown|strong="H7200"\w* \w me|strong="H7200"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w surely|strong="H4191"\w* \w die|strong="H4191"\w*.” +\v 11 \w He|strong="H5704"\w* \w settled|strong="H5975"\w* \w his|strong="H7760"\w* \w gaze|strong="H6440"\w* steadfastly \w on|strong="H7760"\w* \w him|strong="H6440"\w*, \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w was|strong="H6440"\w* ashamed. \w Then|strong="H5975"\w* \w the|strong="H6440"\w* \w man|strong="H6440"\w* \w of|strong="H6440"\w* God \w wept|strong="H1058"\w*. +\p +\v 12 \w Hazael|strong="H2371"\w* said, “\w Why|strong="H4069"\w* \w do|strong="H6213"\w* \w you|strong="H3588"\w* \w weep|strong="H1058"\w*, \w my|strong="H3045"\w* lord?” +\p \w He|strong="H3588"\w* answered, “\w Because|strong="H3588"\w* \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w the|strong="H3588"\w* \w evil|strong="H7451"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3478"\w* \w do|strong="H6213"\w* \w to|strong="H3478"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w You|strong="H3588"\w* \w will|strong="H3478"\w* \w set|strong="H7971"\w* \w their|strong="H3588"\w* \w strongholds|strong="H4013"\w* \w on|strong="H7971"\w* fire, \w and|strong="H1121"\w* \w you|strong="H3588"\w* \w will|strong="H3478"\w* \w kill|strong="H2026"\w* \w their|strong="H3588"\w* \w young|strong="H1121"\w* \w men|strong="H1121"\w* \w with|strong="H6213"\w* \w the|strong="H3588"\w* \w sword|strong="H2719"\w*, \w and|strong="H1121"\w* \w will|strong="H3478"\w* \w dash|strong="H7376"\w* \w their|strong="H3588"\w* \w little|strong="H5768"\w* \w ones|strong="H5768"\w* \w in|strong="H3478"\w* \w pieces|strong="H7376"\w*, \w and|strong="H1121"\w* \w rip|strong="H1234"\w* \w up|strong="H1234"\w* \w their|strong="H3588"\w* \w pregnant|strong="H2030"\w* \w women|strong="H2030"\w*.” +\p +\v 13 \w Hazael|strong="H2371"\w* \w said|strong="H1697"\w*, “\w But|strong="H3588"\w* \w what|strong="H4100"\w* \w is|strong="H3068"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w*, \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w but|strong="H3588"\w* \w a|strong="H3068"\w* \w dog|strong="H3611"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w could|strong="H2088"\w* \w do|strong="H6213"\w* \w this|strong="H2088"\w* \w great|strong="H1419"\w* \w thing|strong="H1697"\w*?” +\p Elisha \w answered|strong="H1697"\w*, “\w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w shown|strong="H7200"\w* \w me|strong="H7200"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1697"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* Syria.” +\p +\v 14 \w Then|strong="H4100"\w* \w he|strong="H3212"\w* \w departed|strong="H3212"\w* \w from|strong="H3212"\w* \w Elisha|strong="H2421"\w*, \w and|strong="H3212"\w* \w came|strong="H3212"\w* \w to|strong="H3212"\w* \w his|strong="H2421"\w* master, \w who|strong="H4100"\w* said \w to|strong="H3212"\w* \w him|strong="H2421"\w*, “\w What|strong="H4100"\w* \w did|strong="H4100"\w* \w Elisha|strong="H2421"\w* say \w to|strong="H3212"\w* \w you|strong="H4100"\w*?” +\p \w He|strong="H3212"\w* answered, “\w He|strong="H3212"\w* told \w me|strong="H2421"\w* \w that|strong="H3212"\w* \w you|strong="H4100"\w* \w would|strong="H2421"\w* \w surely|strong="H2421"\w* \w recover|strong="H2421"\w*.” +\p +\v 15 \w On|strong="H5921"\w* \w the|strong="H6440"\w* \w next|strong="H4283"\w* \w day|strong="H4283"\w*, \w he|strong="H5921"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* thick \w cloth|strong="H4346"\w*, \w dipped|strong="H2881"\w* \w it|strong="H5921"\w* \w in|strong="H5921"\w* \w water|strong="H4325"\w*, \w and|strong="H6440"\w* \w spread|strong="H6566"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w king|strong="H4427"\w*’s \w face|strong="H6440"\w*, \w so|strong="H3947"\w* \w that|strong="H4325"\w* \w he|strong="H5921"\w* \w died|strong="H4191"\w*. \w Then|strong="H1961"\w* \w Hazael|strong="H2371"\w* \w reigned|strong="H4427"\w* \w in|strong="H5921"\w* \w his|strong="H3947"\w* \w place|strong="H8478"\w*. +\p +\v 16 \w In|strong="H8141"\w* \w the|strong="H3092"\w* \w fifth|strong="H2568"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Joram|strong="H3141"\w* \w the|strong="H3092"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahab \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w Jehoshaphat|strong="H3092"\w* \w being|strong="H4427"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w then|strong="H4428"\w*, \w Jehoram|strong="H3088"\w* \w the|strong="H3092"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoshaphat|strong="H3092"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w*. +\v 17 \w He|strong="H8147"\w* \w was|strong="H1961"\w* \w thirty-two|strong="H7970"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1961"\w* \w he|strong="H8147"\w* \w began|strong="H1961"\w* \w to|strong="H1961"\w* \w reign|strong="H4427"\w*. \w He|strong="H8147"\w* \w reigned|strong="H4427"\w* \w eight|strong="H8083"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. +\v 18 \w He|strong="H3588"\w* \w walked|strong="H3212"\w* \w in|strong="H3478"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w as|strong="H1961"\w* \w did|strong="H6213"\w* Ahab’s \w house|strong="H1004"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* married Ahab’s \w daughter|strong="H1323"\w*. \w He|strong="H3588"\w* \w did|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*. +\v 19 However, \w Yahweh|strong="H3068"\w* \w would|strong="H3068"\w* \w not|strong="H3808"\w* \w destroy|strong="H7843"\w* \w Judah|strong="H3063"\w*, \w for|strong="H3068"\w* \w David|strong="H1732"\w* \w his|strong="H3605"\w* \w servant|strong="H5650"\w*’s \w sake|strong="H4616"\w*, \w as|strong="H3117"\w* \w he|strong="H3117"\w* \w promised|strong="H5414"\w* \w him|strong="H5414"\w* \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w to|strong="H3068"\w* \w him|strong="H5414"\w* \w a|strong="H3068"\w* \w lamp|strong="H5216"\w* \w for|strong="H3068"\w* \w his|strong="H3605"\w* \w children|strong="H1121"\w* \w always|strong="H3605"\w*. +\p +\v 20 \w In|strong="H5921"\w* \w his|strong="H5921"\w* \w days|strong="H3117"\w* Edom \w revolted|strong="H6586"\w* \w from|strong="H5921"\w* \w under|strong="H8478"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w made|strong="H4427"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w themselves|strong="H5921"\w*. +\v 21 \w Then|strong="H1961"\w* \w Joram|strong="H3141"\w* \w crossed|strong="H5674"\w* \w over|strong="H5674"\w* \w to|strong="H1961"\w* \w Zair|strong="H6811"\w*, \w and|strong="H6965"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w chariots|strong="H7393"\w* \w with|strong="H5973"\w* \w him|strong="H5221"\w*; \w and|strong="H6965"\w* \w he|strong="H1931"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w by|strong="H5674"\w* \w night|strong="H3915"\w* \w and|strong="H6965"\w* \w struck|strong="H5221"\w* \w the|strong="H3605"\w* Edomites \w who|strong="H3605"\w* \w surrounded|strong="H5437"\w* \w him|strong="H5221"\w* \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* \w chariots|strong="H7393"\w*; \w and|strong="H6965"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w fled|strong="H5127"\w* \w to|strong="H1961"\w* \w their|strong="H3605"\w* tents. +\v 22 \w So|strong="H2088"\w* Edom \w revolted|strong="H6586"\w* \w from|strong="H3027"\w* \w under|strong="H8478"\w* \w the|strong="H3117"\w* \w hand|strong="H3027"\w* \w of|strong="H3117"\w* \w Judah|strong="H3063"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. \w Then|strong="H2088"\w* \w Libnah|strong="H3841"\w* \w revolted|strong="H6586"\w* \w at|strong="H3117"\w* \w the|strong="H3117"\w* \w same|strong="H1931"\w* \w time|strong="H6256"\w*. +\v 23 \w The|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Joram|strong="H3141"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*? +\v 24 \w Joram|strong="H3141"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* fathers, \w and|strong="H1121"\w* \w was|strong="H1732"\w* \w buried|strong="H6912"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* fathers \w in|strong="H6912"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*; \w and|strong="H1121"\w* Ahaziah \w his|strong="H1732"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H6912"\w* \w his|strong="H1732"\w* \w place|strong="H8478"\w*. +\p +\v 25 \w In|strong="H8141"\w* \w the|strong="H1121"\w* \w twelfth|strong="H8147"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Joram|strong="H3141"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahab \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, Ahaziah \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoram|strong="H3088"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w*. +\v 26 Ahaziah \w was|strong="H8034"\w* \w twenty-two|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H8147"\w* \w began|strong="H3478"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w*; \w and|strong="H1121"\w* \w he|strong="H8147"\w* \w reigned|strong="H4427"\w* \w one|strong="H1121"\w* \w year|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H3478"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Athaliah|strong="H6271"\w* \w the|strong="H8034"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Omri|strong="H6018"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 27 \w He|strong="H1931"\w* \w walked|strong="H3212"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w of|strong="H1004"\w* Ahab’s \w house|strong="H1004"\w* \w and|strong="H3068"\w* \w did|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H1931"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w as|strong="H6213"\w* \w did|strong="H6213"\w* Ahab’s \w house|strong="H1004"\w*, \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H3068"\w* \w the|strong="H3588"\w* \w son-in-law|strong="H2860"\w* \w of|strong="H1004"\w* Ahab’s \w house|strong="H1004"\w*. +\p +\v 28 \w He|strong="H5221"\w* \w went|strong="H3212"\w* \w with|strong="H5973"\w* \w Joram|strong="H3141"\w* \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahab \w to|strong="H3212"\w* \w war|strong="H4421"\w* \w against|strong="H5973"\w* \w Hazael|strong="H2371"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Syria \w at|strong="H4421"\w* \w Ramoth|strong="H7433"\w* \w Gilead|strong="H1568"\w*, \w and|strong="H1121"\w* \w the|strong="H5221"\w* Syrians \w wounded|strong="H5221"\w* \w Joram|strong="H3141"\w*. +\v 29 \w King|strong="H4428"\w* \w Joram|strong="H3141"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w be|strong="H1121"\w* \w healed|strong="H7495"\w* \w in|strong="H4428"\w* \w Jezreel|strong="H3157"\w* \w from|strong="H4480"\w* \w the|strong="H7200"\w* \w wounds|strong="H4347"\w* \w which|strong="H1931"\w* \w the|strong="H7200"\w* Syrians \w had|strong="H4428"\w* \w given|strong="H5221"\w* \w him|strong="H5221"\w* \w at|strong="H4428"\w* \w Ramah|strong="H7414"\w*, \w when|strong="H3588"\w* \w he|strong="H1931"\w* \w fought|strong="H3898"\w* \w against|strong="H3898"\w* \w Hazael|strong="H2371"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Syria. Ahaziah \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoram|strong="H3088"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H7725"\w* \w see|strong="H7200"\w* \w Joram|strong="H3141"\w* \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahab \w in|strong="H4428"\w* \w Jezreel|strong="H3157"\w*, \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w sick|strong="H2470"\w*. +\c 9 +\p +\v 1 \w Elisha|strong="H7121"\w* \w the|strong="H3947"\w* \w prophet|strong="H5030"\w* \w called|strong="H7121"\w* \w one|strong="H2088"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w prophets|strong="H5030"\w*, \w and|strong="H1121"\w* \w said|strong="H7121"\w* \w to|strong="H3212"\w* \w him|strong="H7121"\w*, “\w Put|strong="H2296"\w* \w your|strong="H3947"\w* belt \w on|strong="H2296"\w* \w your|strong="H3947"\w* \w waist|strong="H4975"\w*, \w take|strong="H3947"\w* \w this|strong="H2088"\w* \w vial|strong="H6378"\w* \w of|strong="H1121"\w* \w oil|strong="H8081"\w* \w in|strong="H3212"\w* \w your|strong="H3947"\w* \w hand|strong="H3027"\w*, \w and|strong="H1121"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w Ramoth|strong="H7433"\w* \w Gilead|strong="H1568"\w*. +\v 2 \w When|strong="H7200"\w* \w you|strong="H8432"\w* \w come|strong="H6965"\w* \w there|strong="H8033"\w*, \w find|strong="H7200"\w* \w Jehu|strong="H3058"\w* \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoshaphat|strong="H3092"\w* \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nimshi|strong="H5250"\w*, \w and|strong="H1121"\w* \w go|strong="H6965"\w* \w in|strong="H8432"\w* \w and|strong="H1121"\w* \w make|strong="H7200"\w* \w him|strong="H7200"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w from|strong="H1121"\w* \w among|strong="H8432"\w* \w his|strong="H7200"\w* \w brothers|strong="H1121"\w*, \w and|strong="H1121"\w* \w take|strong="H1121"\w* \w him|strong="H7200"\w* \w to|strong="H1121"\w* \w an|strong="H7200"\w* \w inner|strong="H2315"\w* \w room|strong="H2315"\w*. +\v 3 \w Then|strong="H3947"\w* \w take|strong="H3947"\w* \w the|strong="H5921"\w* \w vial|strong="H6378"\w* \w of|strong="H4428"\w* \w oil|strong="H8081"\w*, \w and|strong="H3478"\w* \w pour|strong="H3332"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w his|strong="H3068"\w* \w head|strong="H7218"\w*, \w and|strong="H3478"\w* \w say|strong="H3478"\w*, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w I|strong="H3541"\w* \w have|strong="H3068"\w* \w anointed|strong="H4886"\w* \w you|strong="H5921"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*.”’ \w Then|strong="H3947"\w* \w open|strong="H6605"\w* \w the|strong="H5921"\w* \w door|strong="H1817"\w*, \w flee|strong="H5127"\w*, \w and|strong="H3478"\w* don’t \w wait|strong="H2442"\w*.” +\p +\v 4 So \w the|strong="H3212"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w*, \w the|strong="H3212"\w* \w young|strong="H5288"\w* \w prophet|strong="H5030"\w*, \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Ramoth|strong="H7433"\w* \w Gilead|strong="H1568"\w*. +\v 5 \w When|strong="H3427"\w* \w he|strong="H3605"\w* \w came|strong="H1697"\w*, \w behold|strong="H2009"\w*, \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w army|strong="H2428"\w* \w were|strong="H1697"\w* \w sitting|strong="H3427"\w*. \w Then|strong="H2009"\w* \w he|strong="H3605"\w* \w said|strong="H1697"\w*, “\w I|strong="H2009"\w* \w have|strong="H1697"\w* \w a|strong="H3068"\w* \w message|strong="H1697"\w* \w for|strong="H3427"\w* \w you|strong="H3605"\w*, \w captain|strong="H8269"\w*.” +\p \w Jehu|strong="H3058"\w* \w said|strong="H1697"\w*, “\w To|strong="H1697"\w* \w which|strong="H4310"\w* \w one|strong="H3605"\w* \w of|strong="H1697"\w* us?” +\p \w He|strong="H3605"\w* \w said|strong="H1697"\w*, “\w To|strong="H1697"\w* \w you|strong="H3605"\w*, \w O|strong="H3068"\w* \w captain|strong="H8269"\w*.” +\v 6 \w He|strong="H3068"\w* \w arose|strong="H6965"\w*, \w and|strong="H6965"\w* \w went|strong="H3478"\w* \w into|strong="H3332"\w* \w the|strong="H3541"\w* \w house|strong="H1004"\w*. \w Then|strong="H6965"\w* \w he|strong="H3068"\w* \w poured|strong="H3332"\w* \w the|strong="H3541"\w* \w oil|strong="H8081"\w* \w on|strong="H3068"\w* \w his|strong="H3068"\w* \w head|strong="H7218"\w*, \w and|strong="H6965"\w* said \w to|strong="H3478"\w* \w him|strong="H4886"\w*, “\w Yahweh|strong="H3068"\w*, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*, ‘\w I|strong="H3541"\w* \w have|strong="H3068"\w* \w anointed|strong="H4886"\w* \w you|strong="H4886"\w* \w king|strong="H4428"\w* \w over|strong="H4428"\w* \w the|strong="H3541"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*, \w even|strong="H3068"\w* \w over|strong="H4428"\w* \w Israel|strong="H3478"\w*. +\v 7 \w You|strong="H3605"\w* \w must|strong="H1818"\w* \w strike|strong="H5221"\w* \w your|strong="H3068"\w* master Ahab’s \w house|strong="H1004"\w*, \w that|strong="H3605"\w* \w I|strong="H5650"\w* \w may|strong="H3068"\w* \w avenge|strong="H5358"\w* \w the|strong="H3605"\w* \w blood|strong="H1818"\w* \w of|strong="H1004"\w* \w my|strong="H3605"\w* \w servants|strong="H5650"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w blood|strong="H1818"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w servants|strong="H5650"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*, \w at|strong="H3068"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H1004"\w* Jezebel. +\v 8 \w For|strong="H1004"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* Ahab \w will|strong="H3478"\w* \w perish|strong="H3772"\w*. \w I|strong="H3772"\w* \w will|strong="H3478"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* Ahab \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* urinates \w against|strong="H3605"\w* \w a|strong="H3068"\w* \w wall|strong="H7023"\w*,\f + \fr 9:8 \ft or, male\f* \w both|strong="H3605"\w* \w him|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3478"\w* \w shut|strong="H6113"\w* \w up|strong="H6113"\w* \w and|strong="H3478"\w* \w him|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3478"\w* \w left|strong="H5800"\w* \w at|strong="H3478"\w* \w large|strong="H1004"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\v 9 \w I|strong="H5414"\w* \w will|strong="H1121"\w* \w make|strong="H5414"\w* Ahab’s \w house|strong="H1004"\w* \w like|strong="H1004"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w*, \w and|strong="H1121"\w* \w like|strong="H1004"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Baasha|strong="H1201"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahijah. +\v 10 \w The|strong="H6605"\w* \w dogs|strong="H3611"\w* \w will|strong="H3611"\w* eat Jezebel \w on|strong="H5127"\w* \w the|strong="H6605"\w* plot \w of|strong="H2506"\w* ground \w of|strong="H2506"\w* \w Jezreel|strong="H3157"\w*, \w and|strong="H1817"\w* there \w shall|strong="H3611"\w* be \w no|strong="H2506"\w* one \w to|strong="H5127"\w* \w bury|strong="H6912"\w* \w her|strong="H6605"\w*.’” \w Then|strong="H2506"\w* \w he|strong="H6912"\w* \w opened|strong="H6605"\w* \w the|strong="H6605"\w* \w door|strong="H1817"\w* \w and|strong="H1817"\w* \w fled|strong="H5127"\w*. +\p +\v 11 \w When|strong="H3318"\w* \w Jehu|strong="H3058"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3045"\w* \w servants|strong="H5650"\w* \w of|strong="H5650"\w* \w his|strong="H3045"\w* lord \w and|strong="H5650"\w* \w one|strong="H2088"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H3318"\w*, “\w Is|strong="H2088"\w* \w all|strong="H3045"\w* \w well|strong="H7965"\w*? \w Why|strong="H4069"\w* \w did|strong="H5650"\w* \w this|strong="H2088"\w* \w madman|strong="H7696"\w* \w come|strong="H3318"\w* \w to|strong="H3318"\w* \w you|strong="H3045"\w*?” +\p \w He|strong="H3318"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w them|strong="H3318"\w*, “\w You|strong="H3045"\w* \w know|strong="H3045"\w* \w the|strong="H3045"\w* \w man|strong="H2088"\w* \w and|strong="H5650"\w* \w how|strong="H3045"\w* \w he|strong="H3318"\w* talks.” +\p +\v 12 \w They|strong="H3068"\w* said, “\w That|strong="H3068"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w lie|strong="H8267"\w*. \w Tell|strong="H5046"\w* \w us|strong="H4994"\w* \w now|strong="H4994"\w*.” +\p \w He|strong="H3068"\w* said, “\w He|strong="H3068"\w* said \w to|strong="H3478"\w* \w me|strong="H4994"\w*, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, \w I|strong="H3541"\w* \w have|strong="H3068"\w* \w anointed|strong="H4886"\w* \w you|strong="H5046"\w* \w king|strong="H4428"\w* \w over|strong="H4428"\w* \w Israel|strong="H3478"\w*.’” +\p +\v 13 \w Then|strong="H3947"\w* \w they|strong="H3947"\w* \w hurried|strong="H4116"\w*, \w and|strong="H4116"\w* \w each|strong="H3947"\w* man \w took|strong="H3947"\w* \w his|strong="H7760"\w* cloak, \w and|strong="H4116"\w* \w put|strong="H7760"\w* \w it|strong="H7760"\w* \w under|strong="H8478"\w* \w him|strong="H4427"\w* \w on|strong="H7760"\w* \w the|strong="H3947"\w* \w top|strong="H1634"\w* \w of|strong="H8478"\w* \w the|strong="H3947"\w* \w stairs|strong="H4609"\w*, \w and|strong="H4116"\w* \w blew|strong="H8628"\w* \w the|strong="H3947"\w* \w trumpet|strong="H7782"\w*, saying, “\w Jehu|strong="H3058"\w* \w is|strong="H3058"\w* \w king|strong="H4427"\w*.” +\p +\v 14 \w So|strong="H1961"\w* \w Jehu|strong="H3058"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoshaphat|strong="H3092"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nimshi|strong="H5250"\w* \w conspired|strong="H7194"\w* \w against|strong="H6440"\w* \w Joram|strong="H3141"\w*. (\w Now|strong="H1961"\w* \w Joram|strong="H3141"\w* \w was|strong="H1961"\w* \w defending|strong="H8104"\w* \w Ramoth|strong="H7433"\w* \w Gilead|strong="H1568"\w*, \w he|strong="H1931"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w because|strong="H6440"\w* \w of|strong="H1121"\w* \w Hazael|strong="H2371"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Syria; +\v 15 \w but|strong="H5221"\w* \w King|strong="H4428"\w* \w Joram|strong="H3088"\w* \w had|strong="H4428"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w be|strong="H3426"\w* \w healed|strong="H7495"\w* \w in|strong="H4428"\w* \w Jezreel|strong="H3157"\w* \w of|strong="H4428"\w* \w the|strong="H5221"\w* \w wounds|strong="H4347"\w* \w which|strong="H5892"\w* \w the|strong="H5221"\w* Syrians \w had|strong="H4428"\w* \w given|strong="H5221"\w* \w him|strong="H5221"\w* \w when|strong="H3318"\w* \w he|strong="H4480"\w* \w fought|strong="H3898"\w* \w with|strong="H3898"\w* \w Hazael|strong="H2371"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria.) \w Jehu|strong="H3058"\w* \w said|strong="H3318"\w*, “\w If|strong="H3426"\w* \w this|strong="H7725"\w* \w is|strong="H3426"\w* \w your|strong="H7725"\w* thinking, \w then|strong="H3318"\w* \w let|strong="H5046"\w* \w no|strong="H4480"\w* \w one|strong="H4480"\w* \w escape|strong="H6412"\w* \w and|strong="H7725"\w* \w go|strong="H3212"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w the|strong="H5221"\w* \w city|strong="H5892"\w* \w to|strong="H7725"\w* \w go|strong="H3212"\w* \w to|strong="H7725"\w* \w tell|strong="H5046"\w* \w it|strong="H7725"\w* \w in|strong="H4428"\w* \w Jezreel|strong="H3157"\w*.” +\v 16 \w So|strong="H3588"\w* \w Jehu|strong="H3058"\w* \w rode|strong="H7392"\w* \w in|strong="H4428"\w* \w a|strong="H3068"\w* \w chariot|strong="H7392"\w* \w and|strong="H3063"\w* \w went|strong="H3212"\w* \w to|strong="H3381"\w* \w Jezreel|strong="H3157"\w*, \w for|strong="H3588"\w* \w Joram|strong="H3141"\w* \w lay|strong="H7901"\w* \w there|strong="H8033"\w*. Ahaziah \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w had|strong="H4428"\w* \w come|strong="H3212"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w see|strong="H7200"\w* \w Joram|strong="H3141"\w*. +\v 17 \w Now|strong="H3947"\w* \w the|strong="H5921"\w* \w watchman|strong="H6822"\w* \w was|strong="H3058"\w* \w standing|strong="H5975"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tower|strong="H4026"\w* \w in|strong="H5921"\w* \w Jezreel|strong="H3157"\w*, \w and|strong="H7971"\w* \w he|strong="H5921"\w* \w spied|strong="H7200"\w* \w the|strong="H5921"\w* \w company|strong="H8229"\w* \w of|strong="H5921"\w* \w Jehu|strong="H3058"\w* \w as|strong="H3947"\w* \w he|strong="H5921"\w* \w came|strong="H3058"\w*, \w and|strong="H7971"\w* said, “\w I|strong="H5921"\w* \w see|strong="H7200"\w* \w a|strong="H3068"\w* \w company|strong="H8229"\w*.” +\p \w Joram|strong="H3088"\w* said, “\w Take|strong="H3947"\w* \w a|strong="H3068"\w* \w horseman|strong="H7395"\w*, \w and|strong="H7971"\w* \w send|strong="H7971"\w* \w to|strong="H7971"\w* \w meet|strong="H7125"\w* \w them|strong="H5921"\w*, \w and|strong="H7971"\w* \w let|strong="H7971"\w* \w him|strong="H5921"\w* say, ‘\w Is|strong="H5975"\w* \w it|strong="H5921"\w* \w peace|strong="H7965"\w*?’” +\p +\v 18 \w So|strong="H3541"\w* \w one|strong="H3808"\w* \w went|strong="H3212"\w* \w on|strong="H7392"\w* \w horseback|strong="H5483"\w* \w to|strong="H5704"\w* \w meet|strong="H7125"\w* \w him|strong="H5046"\w*, \w and|strong="H7725"\w* said, “\w the|strong="H3541"\w* \w king|strong="H4428"\w* \w says|strong="H3541"\w*, ‘\w Is|strong="H4100"\w* \w it|strong="H7725"\w* \w peace|strong="H7965"\w*?’” +\p \w Jehu|strong="H3058"\w* said, “\w What|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H5704"\w* \w have|strong="H7965"\w* \w to|strong="H5704"\w* \w do|strong="H4100"\w* \w with|strong="H3212"\w* \w peace|strong="H7965"\w*? Fall \w in|strong="H4428"\w* behind \w me|strong="H7725"\w*!” +\p \w The|strong="H3541"\w* \w watchman|strong="H6822"\w* said, “\w The|strong="H3541"\w* \w messenger|strong="H4397"\w* \w came|strong="H3212"\w* \w to|strong="H5704"\w* \w them|strong="H1992"\w*, \w but|strong="H3808"\w* \w he|strong="H5704"\w* isn’t \w coming|strong="H7125"\w* \w back|strong="H7725"\w*.” +\p +\v 19 \w Then|strong="H7971"\w* \w he|strong="H7971"\w* \w sent|strong="H7971"\w* \w out|strong="H7971"\w* \w a|strong="H3068"\w* \w second|strong="H8145"\w* \w on|strong="H7392"\w* \w horseback|strong="H5483"\w*, \w who|strong="H4428"\w* \w came|strong="H4428"\w* \w to|strong="H7971"\w* \w them|strong="H7971"\w* \w and|strong="H7971"\w* said, “\w The|strong="H3541"\w* \w king|strong="H4428"\w* \w says|strong="H3541"\w*, ‘\w Is|strong="H4100"\w* \w it|strong="H5437"\w* \w peace|strong="H7965"\w*?’” +\p \w Jehu|strong="H3058"\w* answered, “\w What|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H7971"\w* \w have|strong="H7965"\w* \w to|strong="H7971"\w* \w do|strong="H4100"\w* \w with|strong="H4428"\w* \w peace|strong="H7965"\w*? Fall \w in|strong="H4428"\w* behind \w me|strong="H7971"\w*!” +\p +\v 20 \w The|strong="H3588"\w* \w watchman|strong="H6822"\w* said, “\w He|strong="H3588"\w* \w came|strong="H7725"\w* \w to|strong="H5704"\w* \w them|strong="H7725"\w*, \w and|strong="H1121"\w* isn’t coming \w back|strong="H7725"\w*. \w The|strong="H3588"\w* \w driving|strong="H4491"\w* \w is|strong="H1121"\w* \w like|strong="H3808"\w* \w the|strong="H3588"\w* \w driving|strong="H4491"\w* \w of|strong="H1121"\w* \w Jehu|strong="H3058"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nimshi|strong="H5250"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w drives|strong="H5090"\w* \w furiously|strong="H7697"\w*.” +\p +\v 21 \w Joram|strong="H3088"\w* \w said|strong="H3318"\w*, “\w Get|strong="H3318"\w* \w ready|strong="H4672"\w*!” +\p \w They|strong="H3478"\w* \w got|strong="H3318"\w* \w his|strong="H3478"\w* \w chariot|strong="H7393"\w* \w ready|strong="H4672"\w*. \w Then|strong="H3318"\w* \w Joram|strong="H3088"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* Ahaziah \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*, each \w in|strong="H3478"\w* \w his|strong="H3478"\w* \w chariot|strong="H7393"\w*; \w and|strong="H3063"\w* \w they|strong="H3478"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w meet|strong="H7125"\w* \w Jehu|strong="H3058"\w*, \w and|strong="H3063"\w* \w found|strong="H4672"\w* \w him|strong="H4672"\w* \w on|strong="H3318"\w* \w Naboth|strong="H5022"\w* \w the|strong="H3318"\w* \w Jezreelite|strong="H3158"\w*’s \w land|strong="H2513"\w*. +\v 22 \w When|strong="H1961"\w* \w Joram|strong="H3088"\w* \w saw|strong="H7200"\w* \w Jehu|strong="H3058"\w*, \w he|strong="H5704"\w* said, “\w Is|strong="H4100"\w* \w it|strong="H7200"\w* \w peace|strong="H7965"\w*, \w Jehu|strong="H3058"\w*?” +\p \w He|strong="H5704"\w* answered, “\w What|strong="H4100"\w* \w peace|strong="H7965"\w*, \w so|strong="H1961"\w* \w long|strong="H5704"\w* \w as|strong="H5704"\w* \w the|strong="H7200"\w* prostitution \w of|strong="H7227"\w* \w your|strong="H7200"\w* mother Jezebel \w and|strong="H7200"\w* \w her|strong="H7200"\w* witchcraft \w abound|strong="H7227"\w*?” +\p +\v 23 \w Joram|strong="H3088"\w* \w turned|strong="H2015"\w* \w his|strong="H3027"\w* \w hands|strong="H3027"\w* \w and|strong="H3027"\w* \w fled|strong="H5127"\w*, \w and|strong="H3027"\w* said \w to|strong="H3027"\w* Ahaziah, “\w This|strong="H3027"\w* \w is|strong="H3027"\w* treason, Ahaziah!” +\p +\v 24 \w Jehu|strong="H3058"\w* \w drew|strong="H4390"\w* \w his|strong="H5221"\w* \w bow|strong="H7198"\w* \w with|strong="H4390"\w* \w his|strong="H5221"\w* \w full|strong="H4390"\w* \w strength|strong="H2220"\w*, \w and|strong="H3027"\w* \w struck|strong="H5221"\w* \w Joram|strong="H3088"\w* between \w his|strong="H5221"\w* \w arms|strong="H2220"\w*; \w and|strong="H3027"\w* \w the|strong="H5221"\w* \w arrow|strong="H2678"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w at|strong="H3318"\w* \w his|strong="H5221"\w* \w heart|strong="H3820"\w*, \w and|strong="H3027"\w* \w he|strong="H3027"\w* sunk \w down|strong="H5221"\w* \w in|strong="H3027"\w* \w his|strong="H5221"\w* \w chariot|strong="H7393"\w*. +\v 25 \w Then|strong="H2088"\w* Jehu said \w to|strong="H3068"\w* Bidkar \w his|strong="H5375"\w* \w captain|strong="H7991"\w*, “\w Pick|strong="H5375"\w* \w him|strong="H5921"\w* \w up|strong="H5375"\w*, \w and|strong="H3068"\w* \w throw|strong="H7993"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w plot|strong="H2513"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w field|strong="H7704"\w* \w of|strong="H3068"\w* \w Naboth|strong="H5022"\w* \w the|strong="H5921"\w* \w Jezreelite|strong="H3158"\w*; \w for|strong="H3588"\w* \w remember|strong="H2142"\w* \w how|strong="H3588"\w*, \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w rode|strong="H7392"\w* \w together|strong="H5921"\w* \w after|strong="H5921"\w* Ahab \w his|strong="H5375"\w* father, \w Yahweh|strong="H3068"\w* \w laid|strong="H5375"\w* \w this|strong="H2088"\w* \w burden|strong="H4853"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*: +\v 26 ‘\w Surely|strong="H7999"\w* \w I|strong="H1697"\w* \w have|strong="H3068"\w* \w seen|strong="H7200"\w* yesterday \w the|strong="H5002"\w* \w blood|strong="H1818"\w* \w of|strong="H1121"\w* \w Naboth|strong="H5022"\w*, \w and|strong="H1121"\w* \w the|strong="H5002"\w* \w blood|strong="H1818"\w* \w of|strong="H1121"\w* \w his|strong="H5375"\w* \w sons|strong="H1121"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*; ‘\w and|strong="H1121"\w* \w I|strong="H1697"\w* \w will|strong="H3068"\w* \w repay|strong="H7999"\w* \w you|strong="H3808"\w* \w in|strong="H3068"\w* \w this|strong="H2063"\w* \w plot|strong="H2513"\w* \w of|strong="H1121"\w* \w ground|strong="H2513"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w take|strong="H5375"\w* \w and|strong="H1121"\w* \w cast|strong="H7993"\w* \w him|strong="H7200"\w* onto \w the|strong="H5002"\w* \w plot|strong="H2513"\w* \w of|strong="H1121"\w* \w ground|strong="H2513"\w*, according \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*.” +\p +\v 27 \w But|strong="H7200"\w* \w when|strong="H7200"\w* Ahaziah \w the|strong="H7200"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w saw|strong="H7200"\w* \w this|strong="H7200"\w*, \w he|strong="H8033"\w* \w fled|strong="H5127"\w* \w by|strong="H1870"\w* \w the|strong="H7200"\w* \w way|strong="H1870"\w* \w of|strong="H4428"\w* \w the|strong="H7200"\w* \w garden|strong="H1588"\w* \w house|strong="H1004"\w*. \w Jehu|strong="H3058"\w* \w followed|strong="H7291"\w* \w after|strong="H7291"\w* \w him|strong="H5221"\w*, \w and|strong="H3063"\w* said, “\w Strike|strong="H5221"\w* \w him|strong="H5221"\w* \w also|strong="H1571"\w* \w in|strong="H1004"\w* \w the|strong="H7200"\w* \w chariot|strong="H4818"\w*!” \w They|strong="H8033"\w* \w struck|strong="H5221"\w* \w him|strong="H5221"\w* \w at|strong="H1004"\w* \w the|strong="H7200"\w* \w ascent|strong="H4608"\w* \w of|strong="H4428"\w* \w Gur|strong="H1483"\w*, \w which|strong="H1004"\w* \w is|strong="H1571"\w* \w by|strong="H1870"\w* \w Ibleam|strong="H2991"\w*. \w He|strong="H8033"\w* \w fled|strong="H5127"\w* \w to|strong="H4191"\w* \w Megiddo|strong="H4023"\w*, \w and|strong="H3063"\w* \w died|strong="H4191"\w* \w there|strong="H8033"\w*. +\v 28 \w His|strong="H1732"\w* \w servants|strong="H5650"\w* \w carried|strong="H7392"\w* \w him|strong="H5973"\w* \w in|strong="H6912"\w* \w a|strong="H3068"\w* \w chariot|strong="H7392"\w* \w to|strong="H3389"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H5892"\w* \w buried|strong="H6912"\w* \w him|strong="H5973"\w* \w in|strong="H6912"\w* \w his|strong="H1732"\w* \w tomb|strong="H6900"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* fathers \w in|strong="H6912"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*. +\v 29 \w In|strong="H8141"\w* \w the|strong="H5921"\w* \w eleventh|strong="H6240"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Joram|strong="H3141"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahab, Ahaziah \w began|strong="H3063"\w* \w to|strong="H5921"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w Judah|strong="H3063"\w*. +\p +\v 30 \w When|strong="H8085"\w* \w Jehu|strong="H3058"\w* \w had|strong="H5869"\w* come \w to|strong="H8085"\w* \w Jezreel|strong="H3157"\w*, Jezebel \w heard|strong="H8085"\w* \w of|strong="H7218"\w* \w it|strong="H7760"\w*; \w and|strong="H5869"\w* \w she|strong="H2474"\w* \w painted|strong="H7760"\w* \w her|strong="H7760"\w* \w eyes|strong="H5869"\w*, \w and|strong="H5869"\w* \w adorned|strong="H3190"\w* \w her|strong="H7760"\w* \w head|strong="H7218"\w*, \w and|strong="H5869"\w* \w looked|strong="H8259"\w* \w out|strong="H8259"\w* \w at|strong="H7218"\w* \w the|strong="H8085"\w* \w window|strong="H2474"\w*. +\v 31 \w As|strong="H8179"\w* \w Jehu|strong="H3058"\w* \w entered|strong="H3058"\w* \w in|strong="H2026"\w* \w at|strong="H2026"\w* \w the|strong="H2026"\w* \w gate|strong="H8179"\w*, she said, “Do you come \w in|strong="H2026"\w* \w peace|strong="H7965"\w*, \w Zimri|strong="H2174"\w*, you \w murderer|strong="H2026"\w* \w of|strong="H8179"\w* \w your|strong="H2026"\w* master?” +\p +\v 32 \w He|strong="H8147"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w face|strong="H6440"\w* \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w window|strong="H2474"\w*, \w and|strong="H6440"\w* said, “\w Who|strong="H4310"\w* \w is|strong="H4310"\w* \w on|strong="H5375"\w* \w my|strong="H5375"\w* \w side|strong="H8147"\w*? \w Who|strong="H4310"\w*?” +\p \w Two|strong="H8147"\w* \w or|strong="H8147"\w* \w three|strong="H7969"\w* \w eunuchs|strong="H5631"\w* \w looked|strong="H8259"\w* \w out|strong="H8259"\w* \w at|strong="H6440"\w* \w him|strong="H6440"\w*. +\p +\v 33 \w He|strong="H1818"\w* said, “\w Throw|strong="H8058"\w* \w her|strong="H8058"\w* \w down|strong="H7429"\w*!” +\p So they \w threw|strong="H8058"\w* \w her|strong="H8058"\w* \w down|strong="H7429"\w*; \w and|strong="H1818"\w* some \w of|strong="H1818"\w* \w her|strong="H8058"\w* \w blood|strong="H1818"\w* \w was|strong="H1818"\w* \w sprinkled|strong="H5137"\w* \w on|strong="H5483"\w* \w the|strong="H7429"\w* \w wall|strong="H7023"\w*, \w and|strong="H1818"\w* \w on|strong="H5483"\w* \w the|strong="H7429"\w* \w horses|strong="H5483"\w*. Then \w he|strong="H1818"\w* \w trampled|strong="H7429"\w* \w her|strong="H8058"\w* \w under|strong="H7429"\w* \w foot|strong="H7429"\w*. +\v 34 \w When|strong="H3588"\w* \w he|strong="H1931"\w* \w had|strong="H4428"\w* \w come|strong="H4994"\w* \w in|strong="H4428"\w*, \w he|strong="H1931"\w* ate \w and|strong="H4428"\w* \w drank|strong="H8354"\w*. \w Then|strong="H4428"\w* \w he|strong="H1931"\w* said, “\w See|strong="H6485"\w* \w now|strong="H4994"\w* \w to|strong="H4428"\w* \w this|strong="H2063"\w* cursed \w woman|strong="H1323"\w*, \w and|strong="H4428"\w* \w bury|strong="H6912"\w* \w her|strong="H6485"\w*; \w for|strong="H3588"\w* \w she|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w*’s \w daughter|strong="H1323"\w*.” +\p +\v 35 \w They|strong="H3588"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w bury|strong="H6912"\w* \w her|strong="H4672"\w*, \w but|strong="H3588"\w* \w they|strong="H3588"\w* \w found|strong="H4672"\w* \w no|strong="H3808"\w* \w more|strong="H3808"\w* \w of|strong="H3027"\w* \w her|strong="H4672"\w* \w than|strong="H3808"\w* \w the|strong="H3588"\w* \w skull|strong="H1538"\w*, \w the|strong="H3588"\w* \w feet|strong="H7272"\w*, \w and|strong="H3027"\w* \w the|strong="H3588"\w* \w palms|strong="H3709"\w* \w of|strong="H3027"\w* \w her|strong="H4672"\w* \w hands|strong="H3027"\w*. +\v 36 \w Therefore|strong="H3068"\w* \w they|strong="H3068"\w* \w came|strong="H3068"\w* \w back|strong="H7725"\w*, \w and|strong="H3068"\w* \w told|strong="H5046"\w* \w him|strong="H5046"\w*. +\p \w He|strong="H1931"\w* \w said|strong="H1696"\w*, “\w This|strong="H1931"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w spoke|strong="H1696"\w* \w by|strong="H3027"\w* \w his|strong="H3068"\w* \w servant|strong="H5650"\w* \w Elijah|strong="H1696"\w* \w the|strong="H3068"\w* \w Tishbite|strong="H8664"\w*, \w saying|strong="H1697"\w*, ‘\w The|strong="H3068"\w* \w dogs|strong="H3611"\w* \w will|strong="H3068"\w* eat \w the|strong="H3068"\w* \w flesh|strong="H1320"\w* \w of|strong="H3068"\w* Jezebel \w on|strong="H3027"\w* \w the|strong="H3068"\w* \w plot|strong="H1697"\w* \w of|strong="H3068"\w* \w Jezreel|strong="H3157"\w*, +\v 37 \w and|strong="H6440"\w* \w the|strong="H6440"\w* \w body|strong="H5038"\w* \w of|strong="H6440"\w* Jezebel \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w dung|strong="H1828"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w field|strong="H7704"\w* \w on|strong="H5921"\w* \w Jezreel|strong="H3157"\w*’s \w land|strong="H7704"\w*, \w so|strong="H1961"\w* \w that|strong="H3808"\w* \w they|strong="H3808"\w* won’t say, “\w This|strong="H2063"\w* \w is|strong="H1961"\w* Jezebel.”’” +\c 10 +\p +\v 1 \w Now|strong="H7971"\w* Ahab \w had|strong="H1121"\w* \w seventy|strong="H7657"\w* \w sons|strong="H1121"\w* \w in|strong="H3789"\w* \w Samaria|strong="H8111"\w*. \w Jehu|strong="H3058"\w* \w wrote|strong="H3789"\w* \w letters|strong="H5612"\w* \w and|strong="H1121"\w* \w sent|strong="H7971"\w* \w them|strong="H7971"\w* \w to|strong="H7971"\w* \w Samaria|strong="H8111"\w*, \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w rulers|strong="H8269"\w* \w of|strong="H1121"\w* \w Jezreel|strong="H3157"\w*, even \w the|strong="H7971"\w* \w elders|strong="H2205"\w*, \w and|strong="H1121"\w* \w to|strong="H7971"\w* \w those|strong="H1121"\w* \w who|strong="H1121"\w* \w brought|strong="H7971"\w* \w up|strong="H1121"\w* Ahab’s \w sons|strong="H1121"\w*, saying, +\v 2 “\w Now|strong="H6258"\w* \w as|strong="H5892"\w* \w soon|strong="H6258"\w* \w as|strong="H5892"\w* \w this|strong="H2088"\w* \w letter|strong="H5612"\w* comes \w to|strong="H1121"\w* \w you|strong="H6258"\w*, \w since|strong="H6258"\w* \w your|strong="H2088"\w* master’s \w sons|strong="H1121"\w* \w are|strong="H1121"\w* \w with|strong="H5892"\w* \w you|strong="H6258"\w*, \w and|strong="H1121"\w* \w you|strong="H6258"\w* \w have|strong="H1121"\w* \w chariots|strong="H7393"\w* \w and|strong="H1121"\w* \w horses|strong="H5483"\w*, \w a|strong="H3068"\w* \w fortified|strong="H4013"\w* \w city|strong="H5892"\w* \w also|strong="H2088"\w*, \w and|strong="H1121"\w* armor, +\v 3 \w select|strong="H7200"\w* \w the|strong="H5921"\w* \w best|strong="H2896"\w* \w and|strong="H1121"\w* \w fittest|strong="H3477"\w* \w of|strong="H1121"\w* \w your|strong="H5921"\w* master’s \w sons|strong="H1121"\w*, \w set|strong="H7760"\w* \w him|strong="H5921"\w* \w on|strong="H5921"\w* \w his|strong="H7760"\w* \w father|strong="H1121"\w*’s \w throne|strong="H3678"\w*, \w and|strong="H1121"\w* \w fight|strong="H3898"\w* \w for|strong="H5921"\w* \w your|strong="H5921"\w* master’s \w house|strong="H1004"\w*.” +\p +\v 4 \w But|strong="H3808"\w* \w they|strong="H3808"\w* \w were|strong="H4428"\w* \w exceedingly|strong="H3966"\w* \w afraid|strong="H3372"\w*, \w and|strong="H4428"\w* said, “\w Behold|strong="H2009"\w*, \w the|strong="H6440"\w* \w two|strong="H8147"\w* \w kings|strong="H4428"\w* didn’t \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*! \w How|strong="H2009"\w* \w then|strong="H2009"\w* \w shall|strong="H4428"\w* \w we|strong="H3068"\w* \w stand|strong="H5975"\w*?” +\v 5 \w He|strong="H6213"\w* \w who|strong="H3605"\w* \w was|strong="H5892"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w household|strong="H1004"\w*, \w and|strong="H7971"\w* \w he|strong="H6213"\w* \w who|strong="H3605"\w* \w was|strong="H5892"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w also|strong="H6213"\w*, \w and|strong="H7971"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* raised \w the|strong="H3605"\w* children, \w sent|strong="H7971"\w* \w to|strong="H7971"\w* \w Jehu|strong="H3058"\w*, saying, “\w We|strong="H6213"\w* \w are|strong="H5869"\w* \w your|strong="H3605"\w* \w servants|strong="H5650"\w*, \w and|strong="H7971"\w* \w will|strong="H5650"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* ask \w us|strong="H5921"\w*. \w We|strong="H6213"\w* \w will|strong="H5650"\w* \w not|strong="H3808"\w* \w make|strong="H6213"\w* \w any|strong="H3605"\w* \w man|strong="H2205"\w* \w king|strong="H4427"\w*. \w You|strong="H3605"\w* \w do|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H1004"\w* \w is|strong="H2896"\w* \w good|strong="H2896"\w* \w in|strong="H5921"\w* \w your|strong="H3605"\w* \w eyes|strong="H5869"\w*.” +\p +\v 6 \w Then|strong="H3947"\w* \w he|strong="H6256"\w* \w wrote|strong="H3789"\w* \w a|strong="H3068"\w* \w letter|strong="H5612"\w* \w the|strong="H8085"\w* \w second|strong="H8145"\w* \w time|strong="H6256"\w* \w to|strong="H6256"\w* \w them|strong="H3947"\w*, \w saying|strong="H6963"\w*, “\w If|strong="H1121"\w* \w you|strong="H3947"\w* \w are|strong="H1121"\w* \w on|strong="H5892"\w* \w my|strong="H8085"\w* side, \w and|strong="H1121"\w* \w if|strong="H1121"\w* \w you|strong="H3947"\w* \w will|strong="H4428"\w* \w listen|strong="H8085"\w* \w to|strong="H6256"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*, \w take|strong="H3947"\w* \w the|strong="H8085"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* \w men|strong="H1121"\w* \w who|strong="H1121"\w* \w are|strong="H1121"\w* \w your|strong="H3947"\w* master’s \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w come|strong="H4279"\w* \w to|strong="H6256"\w* \w me|strong="H6963"\w* \w to|strong="H6256"\w* \w Jezreel|strong="H3157"\w* \w by|strong="H5892"\w* \w tomorrow|strong="H4279"\w* \w this|strong="H8085"\w* \w time|strong="H6256"\w*.” +\p \w Now|strong="H6256"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w*’s \w sons|strong="H1121"\w*, \w being|strong="H1121"\w* \w seventy|strong="H7657"\w* persons, \w were|strong="H1121"\w* \w with|strong="H5892"\w* \w the|strong="H8085"\w* \w great|strong="H1419"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* \w city|strong="H5892"\w*, \w who|strong="H1121"\w* \w brought|strong="H3947"\w* \w them|strong="H3947"\w* \w up|strong="H1431"\w*. +\v 7 \w When|strong="H1961"\w* \w the|strong="H3947"\w* \w letter|strong="H5612"\w* \w came|strong="H1961"\w* \w to|strong="H7971"\w* \w them|strong="H7971"\w*, \w they|strong="H3947"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w king|strong="H4428"\w*’s \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w killed|strong="H7819"\w* \w them|strong="H7971"\w*, even \w seventy|strong="H7657"\w* \w people|strong="H1121"\w*, \w and|strong="H1121"\w* \w put|strong="H7760"\w* \w their|strong="H3947"\w* \w heads|strong="H7218"\w* \w in|strong="H4428"\w* \w baskets|strong="H1731"\w*, \w and|strong="H1121"\w* \w sent|strong="H7971"\w* \w them|strong="H7971"\w* \w to|strong="H7971"\w* \w him|strong="H7971"\w* \w to|strong="H7971"\w* \w Jezreel|strong="H3157"\w*. +\v 8 \w A|strong="H3068"\w* \w messenger|strong="H4397"\w* \w came|strong="H4397"\w* \w and|strong="H1121"\w* \w told|strong="H5046"\w* \w him|strong="H5046"\w*, “\w They|strong="H5704"\w* \w have|strong="H1121"\w* \w brought|strong="H7760"\w* \w the|strong="H7760"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H7760"\w* \w king|strong="H4428"\w*’s \w sons|strong="H1121"\w*.” +\p \w He|strong="H5704"\w* said, “\w Lay|strong="H7760"\w* \w them|strong="H7760"\w* \w in|strong="H4428"\w* \w two|strong="H8147"\w* \w heaps|strong="H6652"\w* \w at|strong="H4428"\w* \w the|strong="H7760"\w* \w entrance|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H7760"\w* \w gate|strong="H8179"\w* \w until|strong="H5704"\w* \w the|strong="H7760"\w* \w morning|strong="H1242"\w*.” +\v 9 \w In|strong="H5921"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w*, \w he|strong="H3605"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H5971"\w* \w stood|strong="H5975"\w*, \w and|strong="H5971"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, “\w You|strong="H3605"\w* \w are|strong="H5971"\w* \w righteous|strong="H6662"\w*. \w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w conspired|strong="H7194"\w* \w against|strong="H5921"\w* \w my|strong="H3605"\w* master \w and|strong="H5971"\w* \w killed|strong="H2026"\w* \w him|strong="H5921"\w*, \w but|strong="H1961"\w* \w who|strong="H4310"\w* \w killed|strong="H2026"\w* \w all|strong="H3605"\w* \w these|strong="H3605"\w*? +\v 10 \w Know|strong="H3045"\w* \w now|strong="H3588"\w* \w that|strong="H3588"\w* \w nothing|strong="H3808"\w* \w will|strong="H3068"\w* \w fall|strong="H5307"\w* \w to|strong="H1696"\w* \w the|strong="H5921"\w* earth \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w concerning|strong="H5921"\w* Ahab’s \w house|strong="H1004"\w*. \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w he|strong="H3588"\w* \w spoke|strong="H1696"\w* \w by|strong="H3027"\w* \w his|strong="H3068"\w* \w servant|strong="H5650"\w* \w Elijah|strong="H1696"\w*.” +\p +\v 11 \w So|strong="H1115"\w* \w Jehu|strong="H3058"\w* \w struck|strong="H5221"\w* \w all|strong="H3605"\w* \w that|strong="H3045"\w* \w remained|strong="H7604"\w* \w of|strong="H1004"\w* Ahab’s \w house|strong="H1004"\w* \w in|strong="H1004"\w* \w Jezreel|strong="H3157"\w*, \w with|strong="H1004"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w great|strong="H1419"\w* \w men|strong="H1419"\w*, \w his|strong="H3605"\w* \w familiar|strong="H3045"\w* \w friends|strong="H3045"\w*, \w and|strong="H1419"\w* \w his|strong="H3605"\w* \w priests|strong="H3548"\w*, \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w left|strong="H7604"\w* \w him|strong="H5221"\w* \w no|strong="H1115"\w* \w one|strong="H3605"\w* \w remaining|strong="H8300"\w*. +\p +\v 12 \w He|strong="H1931"\w* \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w departed|strong="H3212"\w*, \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Samaria|strong="H8111"\w*. \w As|strong="H6965"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w at|strong="H6965"\w* \w the|strong="H6965"\w* \w shearing|strong="H7462"\w* \w house|strong="H1044"\w* \w of|strong="H1870"\w* \w the|strong="H6965"\w* \w shepherds|strong="H7462"\w* \w on|strong="H1870"\w* \w the|strong="H6965"\w* \w way|strong="H1870"\w*, +\v 13 \w Jehu|strong="H3058"\w* \w met|strong="H4672"\w* \w with|strong="H3381"\w* \w the|strong="H4672"\w* \w brothers|strong="H1121"\w* \w of|strong="H1121"\w* Ahaziah \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w and|strong="H1121"\w* said, “\w Who|strong="H4310"\w* \w are|strong="H1121"\w* \w you|strong="H3381"\w*?” +\p \w They|strong="H3063"\w* answered, “\w We|strong="H4672"\w* \w are|strong="H1121"\w* \w the|strong="H4672"\w* \w brothers|strong="H1121"\w* \w of|strong="H1121"\w* Ahaziah. \w We|strong="H4672"\w* \w are|strong="H1121"\w* \w going|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w greet|strong="H7965"\w* \w the|strong="H4672"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H4672"\w* \w king|strong="H4428"\w* \w and|strong="H1121"\w* \w the|strong="H4672"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H4672"\w* \w queen|strong="H1377"\w*.” +\p +\v 14 \w He|strong="H8147"\w* said, “\w Take|strong="H8610"\w* \w them|strong="H1992"\w* \w alive|strong="H2416"\w*!” +\p \w They|strong="H1992"\w* \w took|strong="H8610"\w* \w them|strong="H1992"\w* \w alive|strong="H2416"\w*, \w and|strong="H8147"\w* \w killed|strong="H7819"\w* \w them|strong="H1992"\w* \w at|strong="H3808"\w* \w the|strong="H7819"\w* pit \w of|strong="H8147"\w* \w the|strong="H7819"\w* shearing \w house|strong="H1044"\w*, \w even|strong="H3808"\w* \w forty-two|strong="H8147"\w* \w men|strong="H1992"\w*. \w He|strong="H8147"\w* didn’t \w leave|strong="H7604"\w* \w any|strong="H3808"\w* \w of|strong="H8147"\w* \w them|strong="H1992"\w*. +\p +\v 15 \w When|strong="H1121"\w* \w he|strong="H8033"\w* \w had|strong="H5414"\w* \w departed|strong="H3212"\w* \w from|strong="H5927"\w* \w there|strong="H8033"\w*, \w he|strong="H8033"\w* \w met|strong="H4672"\w* \w Jehonadab|strong="H3082"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Rechab|strong="H7394"\w* \w coming|strong="H5927"\w* \w to|strong="H3212"\w* \w meet|strong="H7125"\w* \w him|strong="H5414"\w*. \w He|strong="H8033"\w* \w greeted|strong="H1288"\w* \w him|strong="H5414"\w*, \w and|strong="H1121"\w* said \w to|strong="H3212"\w* \w him|strong="H5414"\w*, “\w Is|strong="H3426"\w* \w your|strong="H5414"\w* \w heart|strong="H3824"\w* \w right|strong="H3477"\w*, \w as|strong="H3824"\w* \w my|strong="H5414"\w* \w heart|strong="H3824"\w* \w is|strong="H3426"\w* \w with|strong="H5973"\w* \w your|strong="H5414"\w* \w heart|strong="H3824"\w*?” +\p \w Jehonadab|strong="H3082"\w* answered, “\w It|strong="H5414"\w* \w is|strong="H3426"\w*.” +\p “\w If|strong="H3426"\w* \w it|strong="H5414"\w* \w is|strong="H3426"\w*, \w give|strong="H5414"\w* \w me|strong="H5414"\w* \w your|strong="H5414"\w* \w hand|strong="H3027"\w*.” \w He|strong="H8033"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w*; \w and|strong="H1121"\w* \w he|strong="H8033"\w* \w took|strong="H5927"\w* \w him|strong="H5414"\w* \w up|strong="H5927"\w* \w to|strong="H3212"\w* \w him|strong="H5414"\w* \w into|strong="H5927"\w* \w the|strong="H5414"\w* \w chariot|strong="H4818"\w*. +\v 16 \w He|strong="H3068"\w* said, “\w Come|strong="H3212"\w* \w with|strong="H3068"\w* \w me|strong="H7200"\w*, \w and|strong="H3068"\w* \w see|strong="H7200"\w* \w my|strong="H3068"\w* \w zeal|strong="H7068"\w* \w for|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.” \w So|strong="H7200"\w* \w they|strong="H3068"\w* \w made|strong="H3068"\w* \w him|strong="H7200"\w* \w ride|strong="H7392"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w chariot|strong="H7393"\w*. +\v 17 \w When|strong="H5704"\w* \w he|strong="H5704"\w* \w came|strong="H3068"\w* \w to|strong="H1696"\w* \w Samaria|strong="H8111"\w*, \w he|strong="H5704"\w* \w struck|strong="H5221"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w remained|strong="H7604"\w* \w to|strong="H1696"\w* Ahab \w in|strong="H3068"\w* \w Samaria|strong="H8111"\w*, \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w had|strong="H3068"\w* \w destroyed|strong="H8045"\w* \w them|strong="H5221"\w*, according \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w he|strong="H5704"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Elijah|strong="H1696"\w*. +\p +\v 18 \w Jehu|strong="H3058"\w* \w gathered|strong="H6908"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w together|strong="H6908"\w*, \w and|strong="H5971"\w* said \w to|strong="H5971"\w* \w them|strong="H5647"\w*, “Ahab \w served|strong="H5647"\w* \w Baal|strong="H1168"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w*, \w but|strong="H5971"\w* \w Jehu|strong="H3058"\w* \w will|strong="H5971"\w* \w serve|strong="H5647"\w* \w him|strong="H5647"\w* \w much|strong="H7235"\w*. +\v 19 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w call|strong="H7121"\w* \w to|strong="H6213"\w* \w me|strong="H7121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w* \w of|strong="H2077"\w* \w Baal|strong="H1168"\w*, \w all|strong="H3605"\w* \w of|strong="H2077"\w* \w his|strong="H3605"\w* \w worshipers|strong="H5647"\w*, \w and|strong="H1419"\w* \w all|strong="H3605"\w* \w of|strong="H2077"\w* \w his|strong="H3605"\w* \w priests|strong="H3548"\w*. \w Let|strong="H6258"\w* \w no|strong="H3808"\w* \w one|strong="H3605"\w* \w be|strong="H3808"\w* absent, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H5030"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w sacrifice|strong="H2077"\w* \w to|strong="H6213"\w* \w Baal|strong="H1168"\w*. \w Whoever|strong="H3605"\w* \w is|strong="H3605"\w* absent, \w he|strong="H3588"\w* \w shall|strong="H3548"\w* \w not|strong="H3808"\w* \w live|strong="H2421"\w*.” \w But|strong="H3588"\w* \w Jehu|strong="H3058"\w* \w did|strong="H6213"\w* deceptively, intending \w to|strong="H6213"\w* \w destroy|strong="H6213"\w* \w the|strong="H3605"\w* \w worshipers|strong="H5647"\w* \w of|strong="H2077"\w* \w Baal|strong="H1168"\w*. +\p +\v 20 \w Jehu|strong="H3058"\w* \w said|strong="H7121"\w*, “\w Sanctify|strong="H6942"\w* \w a|strong="H3068"\w* \w solemn|strong="H6116"\w* \w assembly|strong="H6116"\w* \w for|strong="H7121"\w* \w Baal|strong="H1168"\w*!” +\p \w So|strong="H7121"\w* \w they|strong="H6942"\w* \w proclaimed|strong="H7121"\w* \w it|strong="H7121"\w*. +\v 21 \w Jehu|strong="H3058"\w* \w sent|strong="H7971"\w* \w through|strong="H3605"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w worshipers|strong="H5647"\w* \w of|strong="H1004"\w* \w Baal|strong="H1168"\w* \w came|strong="H3478"\w*, \w so|strong="H7971"\w* \w that|strong="H3605"\w* \w there|strong="H3605"\w* \w was|strong="H3478"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w left|strong="H7604"\w* \w that|strong="H3605"\w* didn’t \w come|strong="H3478"\w*. \w They|strong="H3808"\w* \w came|strong="H3478"\w* into \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Baal|strong="H1168"\w*; \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Baal|strong="H1168"\w* \w was|strong="H3478"\w* \w filled|strong="H4390"\w* \w from|strong="H3478"\w* \w one|strong="H3605"\w* \w end|strong="H6310"\w* \w to|strong="H3478"\w* \w another|strong="H6310"\w*. +\v 22 \w He|strong="H3605"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H5921"\w* \w who|strong="H3605"\w* kept \w the|strong="H3605"\w* \w wardrobe|strong="H4458"\w*, “\w Bring|strong="H3318"\w* \w out|strong="H3318"\w* \w robes|strong="H3830"\w* \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w worshipers|strong="H5647"\w* \w of|strong="H5921"\w* \w Baal|strong="H1168"\w*!” +\p \w So|strong="H3318"\w* \w he|strong="H3605"\w* \w brought|strong="H3318"\w* \w robes|strong="H3830"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w them|strong="H5921"\w*. +\v 23 \w Jehu|strong="H3058"\w* \w went|strong="H3068"\w* \w with|strong="H5973"\w* \w Jehonadab|strong="H3082"\w* \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Rechab|strong="H7394"\w* \w into|strong="H7200"\w* \w the|strong="H7200"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Baal|strong="H1168"\w*. \w Then|strong="H3588"\w* \w he|strong="H3588"\w* said \w to|strong="H3068"\w* \w the|strong="H7200"\w* \w worshipers|strong="H5647"\w* \w of|strong="H1121"\w* \w Baal|strong="H1168"\w*, “\w Search|strong="H2664"\w*, \w and|strong="H1121"\w* \w see|strong="H7200"\w* \w that|strong="H3588"\w* \w none|strong="H6435"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w servants|strong="H5650"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w are|strong="H1121"\w* \w here|strong="H6311"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*, \w but|strong="H3588"\w* \w only|strong="H3588"\w* \w the|strong="H7200"\w* \w worshipers|strong="H5647"\w* \w of|strong="H1121"\w* \w Baal|strong="H1168"\w*.” +\p +\v 24 \w So|strong="H6213"\w* \w they|strong="H5921"\w* \w went|strong="H3027"\w* \w in|strong="H5921"\w* \w to|strong="H6213"\w* \w offer|strong="H6213"\w* \w sacrifices|strong="H2077"\w* \w and|strong="H3027"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w*. \w Now|strong="H7760"\w* \w Jehu|strong="H3058"\w* \w had|strong="H3027"\w* \w appointed|strong="H7760"\w* \w for|strong="H5921"\w* \w himself|strong="H5315"\w* \w eighty|strong="H8084"\w* \w men|strong="H6213"\w* \w outside|strong="H2351"\w*, \w and|strong="H3027"\w* said, “\w If|strong="H7760"\w* \w any|strong="H4480"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w men|strong="H6213"\w* whom \w I|strong="H5921"\w* \w bring|strong="H6213"\w* \w into|strong="H5921"\w* \w your|strong="H5921"\w* \w hands|strong="H3027"\w* \w escape|strong="H4422"\w*, \w he|strong="H6213"\w* \w who|strong="H5315"\w* lets \w him|strong="H5921"\w* go, \w his|strong="H7760"\w* \w life|strong="H5315"\w* \w shall|strong="H5315"\w* \w be|strong="H3027"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w life|strong="H5315"\w* \w of|strong="H3027"\w* \w him|strong="H5921"\w*.” +\p +\v 25 \w As|strong="H5704"\w* soon \w as|strong="H5704"\w* \w he|strong="H5704"\w* \w had|strong="H1961"\w* \w finished|strong="H3615"\w* \w offering|strong="H5930"\w* \w the|strong="H5221"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w Jehu|strong="H3058"\w* \w said|strong="H3318"\w* \w to|strong="H5704"\w* \w the|strong="H5221"\w* \w guard|strong="H7323"\w* \w and|strong="H1004"\w* \w to|strong="H5704"\w* \w the|strong="H5221"\w* \w captains|strong="H7991"\w*, “\w Go|strong="H3212"\w* \w in|strong="H6213"\w* \w and|strong="H1004"\w* \w kill|strong="H5221"\w* \w them|strong="H5221"\w*! \w Let|strong="H3212"\w* \w no|strong="H6213"\w* \w one|strong="H6310"\w* \w escape|strong="H3318"\w*.” \w So|strong="H6213"\w* \w they|strong="H5704"\w* \w struck|strong="H5221"\w* \w them|strong="H5221"\w* \w with|strong="H1004"\w* \w the|strong="H5221"\w* \w edge|strong="H6310"\w* \w of|strong="H1004"\w* \w the|strong="H5221"\w* \w sword|strong="H2719"\w*. \w The|strong="H5221"\w* \w guard|strong="H7323"\w* \w and|strong="H1004"\w* \w the|strong="H5221"\w* \w captains|strong="H7991"\w* \w threw|strong="H7993"\w* \w the|strong="H5221"\w* bodies \w out|strong="H3318"\w*, \w and|strong="H1004"\w* \w went|strong="H3212"\w* \w to|strong="H5704"\w* \w the|strong="H5221"\w* \w inner|strong="H1004"\w* \w shrine|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H5221"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Baal|strong="H1168"\w*. +\v 26 \w They|strong="H3318"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w the|strong="H3318"\w* \w pillars|strong="H4676"\w* \w that|strong="H1004"\w* \w were|strong="H1004"\w* \w in|strong="H1004"\w* \w the|strong="H3318"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Baal|strong="H1168"\w* \w and|strong="H1004"\w* \w burned|strong="H8313"\w* \w them|strong="H3318"\w*. +\v 27 \w They|strong="H3117"\w* \w broke|strong="H5422"\w* \w down|strong="H5422"\w* \w the|strong="H3117"\w* \w pillar|strong="H4676"\w* \w of|strong="H1004"\w* \w Baal|strong="H1168"\w*, \w and|strong="H3117"\w* \w broke|strong="H5422"\w* \w down|strong="H5422"\w* \w the|strong="H3117"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Baal|strong="H1168"\w*, \w and|strong="H3117"\w* \w made|strong="H7760"\w* \w it|strong="H7760"\w* \w a|strong="H3068"\w* \w latrine|strong="H4280"\w*, \w to|strong="H5704"\w* \w this|strong="H7760"\w* \w day|strong="H3117"\w*. +\v 28 Thus \w Jehu|strong="H3058"\w* \w destroyed|strong="H8045"\w* \w Baal|strong="H1168"\w* out \w of|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\p +\v 29 \w However|strong="H7535"\w*, \w Jehu|strong="H3058"\w* didn’t \w depart|strong="H5493"\w* \w from|strong="H5493"\w* \w the|strong="H5493"\w* \w sins|strong="H2398"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H5493"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w*, \w with|strong="H3478"\w* \w which|strong="H3478"\w* \w he|strong="H3808"\w* \w made|strong="H3478"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w sin|strong="H2398"\w*—\w the|strong="H5493"\w* \w golden|strong="H2091"\w* \w calves|strong="H5695"\w* \w that|strong="H3478"\w* \w were|strong="H3478"\w* \w in|strong="H3478"\w* \w Bethel|strong="H1008"\w* \w and|strong="H1121"\w* \w that|strong="H3478"\w* \w were|strong="H3478"\w* \w in|strong="H3478"\w* \w Dan|strong="H1835"\w*. +\v 30 \w Yahweh|strong="H3068"\w* said \w to|strong="H3478"\w* \w Jehu|strong="H3058"\w*, “\w Because|strong="H5921"\w* \w you|strong="H3605"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w well|strong="H2895"\w* \w in|strong="H3427"\w* \w executing|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w right|strong="H3477"\w* \w in|strong="H3427"\w* \w my|strong="H3605"\w* \w eyes|strong="H5869"\w*, \w and|strong="H1121"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w to|strong="H3478"\w* Ahab’s \w house|strong="H1004"\w* \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w was|strong="H3068"\w* \w in|strong="H3427"\w* \w my|strong="H3605"\w* \w heart|strong="H3824"\w*, \w your|strong="H3068"\w* \w descendants|strong="H1121"\w* \w shall|strong="H3068"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w throne|strong="H3678"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w fourth|strong="H7243"\w* generation.” +\p +\v 31 \w But|strong="H3808"\w* \w Jehu|strong="H3058"\w* \w took|strong="H5493"\w* \w no|strong="H3808"\w* \w heed|strong="H8104"\w* \w to|strong="H3478"\w* \w walk|strong="H3212"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w heart|strong="H3824"\w*. \w He|strong="H3068"\w* didn’t \w depart|strong="H5493"\w* \w from|strong="H5493"\w* \w the|strong="H3605"\w* \w sins|strong="H2403"\w* \w of|strong="H3068"\w* \w Jeroboam|strong="H3379"\w*, \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w made|strong="H3478"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w sin|strong="H2403"\w*. +\p +\v 32 \w In|strong="H3478"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w began|strong="H2490"\w* \w to|strong="H3478"\w* \w cut|strong="H7096"\w* \w away|strong="H3605"\w* parts \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w Hazael|strong="H2371"\w* \w struck|strong="H5221"\w* \w them|strong="H1992"\w* \w in|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w borders|strong="H1366"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* +\v 33 \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w* \w eastward|strong="H4217"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H4480"\w* \w Gilead|strong="H1568"\w*, \w the|strong="H3605"\w* \w Gadites|strong="H1425"\w*, \w and|strong="H1568"\w* \w the|strong="H3605"\w* \w Reubenites|strong="H7206"\w*, \w and|strong="H1568"\w* \w the|strong="H3605"\w* \w Manassites|strong="H4520"\w*, \w from|strong="H4480"\w* \w Aroer|strong="H6177"\w*, \w which|strong="H5158"\w* \w is|strong="H3605"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w valley|strong="H5158"\w* \w of|strong="H4480"\w* \w the|strong="H3605"\w* Arnon, \w even|strong="H5921"\w* \w Gilead|strong="H1568"\w* \w and|strong="H1568"\w* \w Bashan|strong="H1316"\w*. +\v 34 \w Now|strong="H3117"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Jehu|strong="H3058"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w might|strong="H1369"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*? +\v 35 \w Jehu|strong="H3058"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H8478"\w* fathers; \w and|strong="H1121"\w* \w they|strong="H8478"\w* \w buried|strong="H6912"\w* \w him|strong="H4427"\w* \w in|strong="H6912"\w* \w Samaria|strong="H8111"\w*. \w Jehoahaz|strong="H3059"\w* \w his|strong="H8478"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H6912"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\v 36 \w The|strong="H5921"\w* \w time|strong="H3117"\w* \w that|strong="H3117"\w* \w Jehu|strong="H3058"\w* \w reigned|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w in|strong="H5921"\w* \w Samaria|strong="H8111"\w* \w was|strong="H3478"\w* \w twenty-eight|strong="H6242"\w* \w years|strong="H8141"\w*. +\c 11 +\p +\v 1 \w Now|strong="H3588"\w* \w when|strong="H3588"\w* \w Athaliah|strong="H6271"\w* \w the|strong="H3605"\w* mother \w of|strong="H1121"\w* Ahaziah \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w her|strong="H3605"\w* \w son|strong="H1121"\w* \w was|strong="H4467"\w* \w dead|strong="H4191"\w*, \w she|strong="H3588"\w* \w arose|strong="H6965"\w* \w and|strong="H1121"\w* destroyed \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w royal|strong="H4467"\w* \w offspring|strong="H2233"\w*. +\v 2 \w But|strong="H3808"\w* \w Jehosheba|strong="H3089"\w*, \w the|strong="H6440"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w King|strong="H4428"\w* \w Joram|strong="H3141"\w*, sister \w of|strong="H1121"\w* Ahaziah, \w took|strong="H3947"\w* \w Joash|strong="H3101"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahaziah, \w and|strong="H1121"\w* \w stole|strong="H1589"\w* \w him|strong="H6440"\w* \w away|strong="H3947"\w* \w from|strong="H6440"\w* \w among|strong="H8432"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w sons|strong="H1121"\w* \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w slain|strong="H4191"\w*, \w even|strong="H3808"\w* \w him|strong="H6440"\w* \w and|strong="H1121"\w* \w his|strong="H3947"\w* \w nurse|strong="H3243"\w*, \w and|strong="H1121"\w* \w put|strong="H4191"\w* \w them|strong="H6440"\w* \w in|strong="H4428"\w* \w the|strong="H6440"\w* \w bedroom|strong="H2315"\w*; \w and|strong="H1121"\w* \w they|strong="H3808"\w* \w hid|strong="H5641"\w* \w him|strong="H6440"\w* \w from|strong="H6440"\w* \w Athaliah|strong="H6271"\w*, \w so|strong="H3947"\w* \w that|strong="H4428"\w* \w he|strong="H3808"\w* \w was|strong="H4428"\w* \w not|strong="H3808"\w* \w slain|strong="H4191"\w*. +\v 3 \w He|strong="H3068"\w* \w was|strong="H3068"\w* \w with|strong="H1004"\w* \w her|strong="H5921"\w* \w hidden|strong="H2244"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w six|strong="H8337"\w* \w years|strong="H8141"\w* \w while|strong="H1961"\w* \w Athaliah|strong="H6271"\w* \w reigned|strong="H4427"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* land. +\p +\v 4 \w In|strong="H8141"\w* \w the|strong="H7200"\w* \w seventh|strong="H7637"\w* \w year|strong="H8141"\w* \w Jehoiada|strong="H3077"\w* \w sent|strong="H7971"\w* \w and|strong="H3967"\w* \w fetched|strong="H3947"\w* \w the|strong="H7200"\w* \w captains|strong="H8269"\w* \w over|strong="H4428"\w* \w hundreds|strong="H3967"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w Carites|strong="H3746"\w* \w and|strong="H3967"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w guard|strong="H7323"\w*, \w and|strong="H3967"\w* \w brought|strong="H3947"\w* \w them|strong="H1992"\w* \w to|strong="H3068"\w* \w him|strong="H7971"\w* \w into|strong="H3947"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*; \w and|strong="H3967"\w* \w he|strong="H3068"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H1004"\w* \w them|strong="H1992"\w*, \w and|strong="H3967"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H1004"\w* \w them|strong="H1992"\w* \w in|strong="H8141"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3967"\w* \w showed|strong="H7200"\w* \w them|strong="H1992"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w*’s \w son|strong="H1121"\w*. +\v 5 \w He|strong="H6213"\w* \w commanded|strong="H6680"\w* \w them|strong="H6213"\w*, \w saying|strong="H1697"\w*, “\w This|strong="H2088"\w* \w is|strong="H2088"\w* \w what|strong="H1697"\w* \w you|strong="H6680"\w* must \w do|strong="H6213"\w*: \w a|strong="H3068"\w* \w third|strong="H7992"\w* \w of|strong="H4428"\w* \w you|strong="H6680"\w*, \w who|strong="H8104"\w* come \w in|strong="H6213"\w* \w on|strong="H1004"\w* \w the|strong="H6213"\w* \w Sabbath|strong="H7676"\w*, \w shall|strong="H4428"\w* \w be|strong="H1697"\w* \w keepers|strong="H8104"\w* \w of|strong="H4428"\w* \w the|strong="H6213"\w* \w watch|strong="H8104"\w* \w of|strong="H4428"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*; +\v 6 \w a|strong="H3068"\w* \w third|strong="H7992"\w* \w of|strong="H1004"\w* \w you|strong="H8104"\w* \w shall|strong="H1004"\w* \w be|strong="H1004"\w* \w at|strong="H1004"\w* \w the|strong="H8104"\w* \w gate|strong="H8179"\w* \w Sur|strong="H5495"\w*; \w and|strong="H1004"\w* \w a|strong="H3068"\w* \w third|strong="H7992"\w* \w of|strong="H1004"\w* \w you|strong="H8104"\w* \w at|strong="H1004"\w* \w the|strong="H8104"\w* \w gate|strong="H8179"\w* behind \w the|strong="H8104"\w* \w guard|strong="H8104"\w*. \w So|strong="H7323"\w* \w you|strong="H8104"\w* \w shall|strong="H1004"\w* \w keep|strong="H8104"\w* \w the|strong="H8104"\w* \w watch|strong="H8104"\w* \w of|strong="H1004"\w* \w the|strong="H8104"\w* \w house|strong="H1004"\w*, \w and|strong="H1004"\w* \w be|strong="H1004"\w* \w a|strong="H3068"\w* barrier. +\v 7 \w The|strong="H3605"\w* \w two|strong="H8147"\w* companies \w of|strong="H4428"\w* \w you|strong="H3605"\w*, \w even|strong="H3068"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w on|strong="H3027"\w* \w the|strong="H3605"\w* \w Sabbath|strong="H7676"\w*, \w shall|strong="H3068"\w* \w keep|strong="H8104"\w* \w the|strong="H3605"\w* \w watch|strong="H8104"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w around|strong="H3027"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. +\v 8 \w You|strong="H5921"\w* \w shall|strong="H4428"\w* \w surround|strong="H5439"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*, \w every|strong="H5439"\w* \w man|strong="H4191"\w* \w with|strong="H5921"\w* \w his|strong="H5921"\w* \w weapons|strong="H3627"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w hand|strong="H3027"\w*; \w and|strong="H4428"\w* \w he|strong="H3027"\w* \w who|strong="H4428"\w* \w comes|strong="H3318"\w* \w within|strong="H5921"\w* \w the|strong="H5921"\w* \w ranks|strong="H7713"\w*, \w let|strong="H1961"\w* \w him|strong="H5921"\w* \w be|strong="H1961"\w* \w slain|strong="H4191"\w*. \w Be|strong="H1961"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w when|strong="H1961"\w* \w he|strong="H3027"\w* \w goes|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H4428"\w* \w when|strong="H1961"\w* \w he|strong="H3027"\w* \w comes|strong="H3318"\w* \w in|strong="H5921"\w*.” +\p +\v 9 \w The|strong="H3605"\w* \w captains|strong="H8269"\w* \w over|strong="H8269"\w* \w hundreds|strong="H3967"\w* \w did|strong="H6213"\w* according \w to|strong="H3318"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Jehoiada|strong="H3077"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w commanded|strong="H6680"\w*; \w and|strong="H3967"\w* \w they|strong="H6213"\w* \w each|strong="H3605"\w* \w took|strong="H3947"\w* \w his|strong="H3605"\w* \w men|strong="H6213"\w*, \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H8269"\w* \w to|strong="H3318"\w* \w come|strong="H3318"\w* \w in|strong="H6213"\w* \w on|strong="H3318"\w* \w the|strong="H3605"\w* \w Sabbath|strong="H7676"\w* \w with|strong="H5973"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H8269"\w* \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w on|strong="H3318"\w* \w the|strong="H3605"\w* \w Sabbath|strong="H7676"\w*, \w and|strong="H3967"\w* \w came|strong="H3318"\w* \w to|strong="H3318"\w* \w Jehoiada|strong="H3077"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w*. +\v 10 \w The|strong="H5414"\w* \w priest|strong="H3548"\w* \w delivered|strong="H5414"\w* \w to|strong="H3068"\w* \w the|strong="H5414"\w* \w captains|strong="H8269"\w* \w over|strong="H4428"\w* \w hundreds|strong="H3967"\w* \w the|strong="H5414"\w* \w spears|strong="H2595"\w* \w and|strong="H3967"\w* \w shields|strong="H7982"\w* \w that|strong="H3068"\w* \w had|strong="H3068"\w* \w been|strong="H3068"\w* \w King|strong="H4428"\w* \w David|strong="H1732"\w*’s, \w which|strong="H3068"\w* \w were|strong="H1732"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 11 \w The|strong="H5921"\w* \w guard|strong="H7323"\w* \w stood|strong="H5975"\w*, \w every|strong="H5439"\w* man \w with|strong="H1004"\w* \w his|strong="H5921"\w* \w weapons|strong="H3627"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w hand|strong="H3027"\w*, \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w right|strong="H3233"\w* \w side|strong="H3802"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w left|strong="H8042"\w* \w side|strong="H3802"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*, \w along|strong="H5921"\w* \w by|strong="H3027"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w and|strong="H4428"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*, \w around|strong="H5439"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*. +\v 12 \w Then|strong="H3318"\w* \w he|strong="H5414"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w put|strong="H5414"\w* \w the|strong="H5921"\w* \w crown|strong="H5145"\w* \w on|strong="H5921"\w* \w him|strong="H5414"\w*, \w and|strong="H1121"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w the|strong="H5921"\w* covenant; \w and|strong="H1121"\w* \w they|strong="H5921"\w* \w made|strong="H5414"\w* \w him|strong="H5414"\w* \w king|strong="H4428"\w* \w and|strong="H1121"\w* \w anointed|strong="H4886"\w* \w him|strong="H5414"\w*; \w and|strong="H1121"\w* \w they|strong="H5921"\w* \w clapped|strong="H5221"\w* \w their|strong="H5414"\w* \w hands|strong="H3709"\w*, \w and|strong="H1121"\w* \w said|strong="H3318"\w*, “\w Long|strong="H5921"\w* \w live|strong="H2421"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*!” +\p +\v 13 \w When|strong="H8085"\w* \w Athaliah|strong="H6271"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w noise|strong="H6963"\w* \w of|strong="H1004"\w* \w the|strong="H8085"\w* \w guard|strong="H7323"\w* \w and|strong="H3068"\w* \w of|strong="H1004"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w*, she \w came|strong="H3068"\w* \w to|strong="H3068"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w* into \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*; +\v 14 \w and|strong="H4428"\w* \w she|strong="H7121"\w* \w looked|strong="H7200"\w*, \w and|strong="H4428"\w* \w behold|strong="H2009"\w*, \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w stood|strong="H5975"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w pillar|strong="H5982"\w*, \w as|strong="H5971"\w* \w the|strong="H3605"\w* tradition \w was|strong="H4428"\w*, \w with|strong="H5921"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w trumpets|strong="H2689"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*; \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* land \w rejoiced|strong="H8056"\w*, \w and|strong="H4428"\w* \w blew|strong="H8628"\w* \w trumpets|strong="H2689"\w*. \w Then|strong="H2009"\w* \w Athaliah|strong="H6271"\w* \w tore|strong="H7167"\w* \w her|strong="H3605"\w* clothes \w and|strong="H4428"\w* \w cried|strong="H7121"\w*, “\w Treason|strong="H7195"\w*! \w Treason|strong="H7195"\w*!” +\p +\v 15 \w Jehoiada|strong="H3077"\w* \w the|strong="H3588"\w* \w priest|strong="H3548"\w* \w commanded|strong="H6680"\w* \w the|strong="H3588"\w* \w captains|strong="H8269"\w* \w of|strong="H1004"\w* \w hundreds|strong="H3967"\w* \w who|strong="H3068"\w* \w were|strong="H8269"\w* \w set|strong="H6485"\w* \w over|strong="H8269"\w* \w the|strong="H3588"\w* \w army|strong="H2428"\w*, \w and|strong="H3967"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w them|strong="H6680"\w*, “\w Bring|strong="H3318"\w* \w her|strong="H3318"\w* \w out|strong="H3318"\w* between \w the|strong="H3588"\w* \w ranks|strong="H7713"\w*. \w Kill|strong="H4191"\w* \w anyone|strong="H3588"\w* \w who|strong="H3068"\w* follows \w her|strong="H3318"\w* \w with|strong="H1004"\w* \w the|strong="H3588"\w* \w sword|strong="H2719"\w*.” \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w priest|strong="H3548"\w* \w said|strong="H3318"\w*, “Don’t \w let|strong="H6485"\w* \w her|strong="H3318"\w* \w be|strong="H4191"\w* \w slain|strong="H4191"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*.” +\v 16 \w So|strong="H4191"\w* \w they|strong="H8033"\w* \w seized|strong="H7760"\w* \w her|strong="H7760"\w*; \w and|strong="H4428"\w* she \w went|strong="H4428"\w* \w by|strong="H3027"\w* \w the|strong="H7760"\w* \w way|strong="H1870"\w* \w of|strong="H4428"\w* \w the|strong="H7760"\w* \w horses|strong="H5483"\w*’ \w entry|strong="H3996"\w* \w to|strong="H4191"\w* \w the|strong="H7760"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w and|strong="H4428"\w* she \w was|strong="H4428"\w* \w slain|strong="H4191"\w* \w there|strong="H8033"\w*. +\p +\v 17 \w Jehoiada|strong="H3077"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* between \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w*, \w that|strong="H5971"\w* \w they|strong="H3068"\w* \w should|strong="H3068"\w* \w be|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w people|strong="H5971"\w*; \w also|strong="H3068"\w* between \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w*. +\v 18 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w went|strong="H5971"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Baal|strong="H1168"\w*, \w and|strong="H3068"\w* \w broke|strong="H7665"\w* \w it|strong="H7760"\w* \w down|strong="H5422"\w*. \w They|strong="H3068"\w* \w broke|strong="H7665"\w* \w his|strong="H3605"\w* \w altars|strong="H4196"\w* \w and|strong="H3068"\w* \w his|strong="H3605"\w* \w images|strong="H6754"\w* \w in|strong="H5921"\w* \w pieces|strong="H7665"\w* \w thoroughly|strong="H3190"\w*, \w and|strong="H3068"\w* \w killed|strong="H2026"\w* \w Mattan|strong="H4977"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w of|strong="H1004"\w* \w Baal|strong="H1168"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w altars|strong="H4196"\w*. \w The|strong="H3605"\w* \w priest|strong="H3548"\w* \w appointed|strong="H7760"\w* \w officers|strong="H6486"\w* \w over|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 19 \w He|strong="H3068"\w* \w took|strong="H3947"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w over|strong="H5921"\w* \w hundreds|strong="H3967"\w*, \w and|strong="H3967"\w* \w the|strong="H3605"\w* \w Carites|strong="H3746"\w*, \w and|strong="H3967"\w* \w the|strong="H3605"\w* \w guard|strong="H7323"\w*, \w and|strong="H3967"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* land; \w and|strong="H3967"\w* \w they|strong="H3068"\w* \w brought|strong="H3947"\w* \w down|strong="H3381"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w from|strong="H3381"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3967"\w* \w came|strong="H3381"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w guard|strong="H7323"\w* \w to|strong="H3381"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*. \w He|strong="H3068"\w* \w sat|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w throne|strong="H3678"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w*. +\v 20 \w So|strong="H4191"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* land \w rejoiced|strong="H8055"\w*, \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w was|strong="H5892"\w* \w quiet|strong="H8252"\w*. \w They|strong="H5971"\w* \w had|strong="H4428"\w* \w slain|strong="H4191"\w* \w Athaliah|strong="H6271"\w* \w with|strong="H1004"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w* \w at|strong="H1004"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*. +\p +\v 21 Jehoash was seven years old when he began to reign. +\c 12 +\p +\v 1 \w Jehoash|strong="H3060"\w* began \w to|strong="H1121"\w* \w reign|strong="H4427"\w* \w in|strong="H8141"\w* \w the|strong="H3060"\w* \w seventh|strong="H7651"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* Jehu, \w and|strong="H1121"\w* \w he|strong="H8141"\w* \w reigned|strong="H4427"\w* forty \w years|strong="H8141"\w* \w in|strong="H8141"\w* Jerusalem. \w His|strong="H3060"\w* mother’s name \w was|strong="H1121"\w* Zibiah \w of|strong="H1121"\w* Beersheba. +\v 2 \w Jehoash|strong="H3060"\w* \w did|strong="H3389"\w* \w that|strong="H8141"\w* which \w was|strong="H8034"\w* right \w in|strong="H8141"\w* \w Yahweh|strong="H3068"\w*’s eyes all \w his|strong="H3060"\w* \w days|strong="H8141"\w* \w in|strong="H8141"\w* which Jehoiada \w the|strong="H3058"\w* priest instructed \w him|strong="H4427"\w*. +\v 3 However, \w the|strong="H3605"\w* \w high|strong="H6213"\w* \w places|strong="H3605"\w* \w were|strong="H3117"\w* \w not|strong="H6213"\w* \w taken|strong="H6213"\w* \w away|strong="H3605"\w*. \w The|strong="H3605"\w* \w people|strong="H5869"\w* still \w sacrificed|strong="H6213"\w* \w and|strong="H3068"\w* burned incense \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w high|strong="H6213"\w* \w places|strong="H3605"\w*. +\p +\v 4 Jehoash said \w to|strong="H5971"\w* \w the|strong="H5493"\w* \w priests|strong="H3808"\w*, “\w All|strong="H5750"\w* \w the|strong="H5493"\w* money \w of|strong="H5971"\w* \w the|strong="H5493"\w* holy \w things|strong="H3808"\w* \w that|strong="H5971"\w* \w is|strong="H5971"\w* \w brought|strong="H5493"\w* \w into|strong="H5493"\w* \w Yahweh|strong="H3068"\w*’s house, \w in|strong="H5493"\w* current money, \w the|strong="H5493"\w* money \w of|strong="H5971"\w* \w the|strong="H5493"\w* \w people|strong="H5971"\w* \w for|strong="H5971"\w* \w whom|strong="H5971"\w* \w each|strong="H5971"\w* man \w is|strong="H5971"\w* evaluated,\x + \xo 12:4 \xt Exodus 30:12\x* \w and|strong="H5971"\w* \w all|strong="H5750"\w* \w the|strong="H5493"\w* money \w that|strong="H5971"\w* \w it|strong="H3808"\w* comes \w into|strong="H5493"\w* \w any|strong="H5750"\w* man’s heart \w to|strong="H5971"\w* bring \w into|strong="H5493"\w* \w Yahweh|strong="H3068"\w*’s house, +\v 5 \w let|strong="H5315"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w take|strong="H5674"\w* \w it|strong="H5921"\w* \w to|strong="H3068"\w* \w them|strong="H5921"\w*, \w each|strong="H3605"\w* \w man|strong="H5315"\w* \w from|strong="H5921"\w* \w his|strong="H3605"\w* donor; \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w shall|strong="H3548"\w* repair \w the|strong="H3605"\w* damage \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*, \w wherever|strong="H3605"\w* \w any|strong="H3605"\w* damage \w is|strong="H3068"\w* \w found|strong="H3068"\w*.” +\p +\v 6 \w But|strong="H2388"\w* \w it|strong="H8033"\w* \w was|strong="H1004"\w* \w so|strong="H3947"\w*, \w that|strong="H3605"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* twenty-third year \w of|strong="H1004"\w* King Jehoash \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w had|strong="H3548"\w* \w not|strong="H3947"\w* \w repaired|strong="H2388"\w* \w the|strong="H3605"\w* damage \w to|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*. +\v 7 \w Then|strong="H1961"\w* \w King|strong="H4428"\w* \w Jehoash|strong="H3060"\w* called \w for|strong="H1004"\w* Jehoiada \w the|strong="H2388"\w* \w priest|strong="H3548"\w*, \w and|strong="H6242"\w* \w for|strong="H1004"\w* \w the|strong="H2388"\w* other \w priests|strong="H3548"\w*, \w and|strong="H6242"\w* said \w to|strong="H1961"\w* \w them|strong="H1961"\w*, “\w Why|strong="H3808"\w* aren’t \w you|strong="H3808"\w* \w repairing|strong="H2388"\w* \w the|strong="H2388"\w* damage \w to|strong="H1961"\w* \w the|strong="H2388"\w* \w house|strong="H1004"\w*? \w Now|strong="H1961"\w* \w therefore|strong="H1961"\w* \w take|strong="H2388"\w* \w no|strong="H3808"\w* \w more|strong="H3808"\w* money \w from|strong="H1961"\w* \w your|strong="H1961"\w* treasurers, \w but|strong="H3808"\w* deliver \w it|strong="H1961"\w* \w for|strong="H1004"\w* \w repair|strong="H2388"\w* \w of|strong="H4428"\w* \w the|strong="H2388"\w* damage \w to|strong="H1961"\w* \w the|strong="H2388"\w* \w house|strong="H1004"\w*.” +\p +\v 8 \w The|strong="H3588"\w* \w priests|strong="H3548"\w* consented \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w should|strong="H3588"\w* \w take|strong="H3947"\w* \w no|strong="H3947"\w* \w more|strong="H3588"\w* \w money|strong="H3701"\w* \w from|strong="H3947"\w* \w the|strong="H3588"\w* people, \w and|strong="H3701"\w* \w not|strong="H5414"\w* \w repair|strong="H2388"\w* \w the|strong="H3588"\w* damage \w to|strong="H5414"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w*. +\v 9 \w But|strong="H2388"\w* Jehoiada \w the|strong="H3947"\w* \w priest|strong="H3548"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* chest \w and|strong="H3701"\w* bored \w a|strong="H3068"\w* hole \w in|strong="H1004"\w* \w its|strong="H3947"\w* lid, \w and|strong="H3701"\w* set \w it|strong="H3947"\w* \w beside|strong="H1115"\w* \w the|strong="H3947"\w* altar, \w on|strong="H1004"\w* \w the|strong="H3947"\w* right side \w as|strong="H5971"\w* \w one|strong="H1004"\w* comes \w into|strong="H3947"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*; \w and|strong="H3701"\w* \w the|strong="H3947"\w* \w priests|strong="H3548"\w* \w who|strong="H5971"\w* kept \w the|strong="H3947"\w* threshold \w put|strong="H3947"\w* \w all|strong="H3947"\w* \w the|strong="H3947"\w* \w money|strong="H3701"\w* \w that|strong="H5971"\w* \w was|strong="H1004"\w* \w brought|strong="H3947"\w* \w into|strong="H3947"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w into|strong="H3947"\w* \w it|strong="H3947"\w*. +\v 10 \w When|strong="H3068"\w* \w they|strong="H8033"\w* saw \w that|strong="H3605"\w* \w there|strong="H8033"\w* \w was|strong="H3068"\w* \w much|strong="H3605"\w* \w money|strong="H3701"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* chest, \w the|strong="H3605"\w* king’s scribe \w and|strong="H3068"\w* \w the|strong="H3605"\w* high \w priest|strong="H3548"\w* \w came|strong="H3068"\w* \w up|strong="H5414"\w*, \w and|strong="H3068"\w* \w they|strong="H8033"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w in|strong="H3068"\w* bags \w and|strong="H3068"\w* counted \w the|strong="H3605"\w* \w money|strong="H3701"\w* \w that|strong="H3605"\w* \w was|strong="H3068"\w* \w found|strong="H3068"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 11 \w They|strong="H3588"\w* \w gave|strong="H1961"\w* \w the|strong="H7200"\w* \w money|strong="H3701"\w* \w that|strong="H3588"\w* \w was|strong="H3068"\w* weighed \w out|strong="H4672"\w* \w into|strong="H5927"\w* \w the|strong="H7200"\w* hands \w of|strong="H4428"\w* \w those|strong="H1961"\w* \w who|strong="H3068"\w* \w did|strong="H3068"\w* \w the|strong="H7200"\w* work, \w who|strong="H3068"\w* \w had|strong="H3068"\w* \w the|strong="H7200"\w* oversight \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*; \w and|strong="H3068"\w* \w they|strong="H3588"\w* paid \w it|strong="H3588"\w* \w out|strong="H4672"\w* \w to|strong="H3068"\w* \w the|strong="H7200"\w* carpenters \w and|strong="H3068"\w* \w the|strong="H7200"\w* builders \w who|strong="H3068"\w* \w worked|strong="H5927"\w* \w on|strong="H7200"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, +\v 12 \w and|strong="H3068"\w* \w to|strong="H3318"\w* \w the|strong="H5921"\w* \w masons|strong="H2796"\w* \w and|strong="H3068"\w* \w the|strong="H5921"\w* stone cutters, \w and|strong="H3068"\w* \w for|strong="H5921"\w* buying \w timber|strong="H6086"\w* \w and|strong="H3068"\w* cut stone \w to|strong="H3318"\w* repair \w the|strong="H5921"\w* \w damage|strong="H6485"\w* \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w for|strong="H5921"\w* \w all|strong="H6213"\w* \w that|strong="H3068"\w* \w was|strong="H3068"\w* \w laid|strong="H5414"\w* \w out|strong="H3318"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w to|strong="H3318"\w* repair \w it|strong="H5414"\w*. +\v 13 \w But|strong="H2388"\w* \w there|strong="H3605"\w* \w were|strong="H1004"\w* \w not|strong="H3318"\w* \w made|strong="H2388"\w* \w for|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* cups \w of|strong="H1004"\w* silver, snuffers, basins, trumpets, \w any|strong="H3605"\w* vessels \w of|strong="H1004"\w* gold \w or|strong="H1004"\w* vessels \w of|strong="H1004"\w* silver, \w of|strong="H1004"\w* \w the|strong="H3605"\w* money \w that|strong="H3605"\w* \w was|strong="H3068"\w* \w brought|strong="H3318"\w* \w into|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*; +\v 14 \w for|strong="H6213"\w* \w they|strong="H3068"\w* \w gave|strong="H6213"\w* \w that|strong="H3605"\w* \w to|strong="H3068"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w did|strong="H6213"\w* \w the|strong="H3605"\w* \w work|strong="H6213"\w*, \w and|strong="H3068"\w* repaired \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w with|strong="H1004"\w* \w it|strong="H6213"\w*. +\v 15 \w Moreover|strong="H3588"\w* \w they|strong="H3588"\w* didn’t demand \w an|strong="H6213"\w* accounting \w from|strong="H3068"\w* \w the|strong="H3588"\w* \w men|strong="H6213"\w* \w into|strong="H6213"\w* whose \w hand|strong="H5414"\w* \w they|strong="H3588"\w* \w delivered|strong="H5414"\w* \w the|strong="H3588"\w* money \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w to|strong="H3068"\w* \w those|strong="H2388"\w* \w who|strong="H3068"\w* \w did|strong="H6213"\w* \w the|strong="H3588"\w* \w work|strong="H4399"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w dealt|strong="H6213"\w* faithfully. +\v 16 \w The|strong="H5921"\w* \w money|strong="H3701"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* trespass \w offerings|strong="H3588"\w* \w and|strong="H3701"\w* \w the|strong="H5921"\w* \w money|strong="H3701"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* sin \w offerings|strong="H3588"\w* \w was|strong="H3027"\w* \w not|strong="H3808"\w* \w brought|strong="H5414"\w* \w into|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s house. \w It|strong="H5414"\w* \w was|strong="H3027"\w* \w the|strong="H5921"\w* \w priests|strong="H3808"\w*’. +\p +\v 17 \w Then|strong="H1961"\w* Hazael king \w of|strong="H1004"\w* Syria \w went|strong="H3068"\w* \w up|strong="H1961"\w* \w and|strong="H3068"\w* fought \w against|strong="H3068"\w* Gath, \w and|strong="H3068"\w* \w took|strong="H1961"\w* \w it|strong="H1961"\w*; \w and|strong="H3068"\w* Hazael set \w his|strong="H3068"\w* face \w to|strong="H3068"\w* \w go|strong="H1961"\w* \w up|strong="H1961"\w* \w to|strong="H3068"\w* Jerusalem. +\v 18 Jehoash \w king|strong="H4428"\w* \w of|strong="H4428"\w* Judah \w took|strong="H3920"\w* \w all|strong="H5921"\w* \w the|strong="H6440"\w* holy things \w that|strong="H4428"\w* Jehoshaphat \w and|strong="H4428"\w* Jehoram \w and|strong="H4428"\w* Ahaziah, \w his|strong="H7760"\w* fathers, \w kings|strong="H4428"\w* \w of|strong="H4428"\w* Judah, \w had|strong="H4428"\w* dedicated, \w and|strong="H4428"\w* \w his|strong="H7760"\w* \w own|strong="H6440"\w* holy things, \w and|strong="H4428"\w* \w all|strong="H5921"\w* \w the|strong="H6440"\w* gold \w that|strong="H4428"\w* \w was|strong="H4428"\w* found \w in|strong="H5921"\w* \w the|strong="H6440"\w* treasures \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s house, \w and|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s house, \w and|strong="H4428"\w* \w sent|strong="H5927"\w* \w it|strong="H7760"\w* \w to|strong="H5927"\w* \w Hazael|strong="H2371"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria; \w and|strong="H4428"\w* \w he|strong="H3389"\w* \w went|strong="H5927"\w* \w away|strong="H5927"\w* \w from|strong="H6440"\w* \w Jerusalem|strong="H3389"\w*. +\p +\v 19 \w Now|strong="H3947"\w* \w the|strong="H3605"\w* rest \w of|strong="H4428"\w* \w the|strong="H3605"\w* acts \w of|strong="H4428"\w* \w Joash|strong="H3060"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3068"\w* \w did|strong="H3068"\w*, aren’t \w they|strong="H3068"\w* written \w in|strong="H5921"\w* \w the|strong="H3605"\w* book \w of|strong="H4428"\w* \w the|strong="H3605"\w* chronicles \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*? +\v 20 \w His|strong="H3605"\w* servants arose \w and|strong="H3063"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* conspiracy, \w and|strong="H3063"\w* struck \w Joash|strong="H3101"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* house \w of|strong="H4428"\w* Millo, \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w way|strong="H1697"\w* \w that|strong="H3605"\w* goes \w down|strong="H3789"\w* \w to|strong="H5921"\w* Silla. +\v 21 \w For|strong="H1004"\w* Jozacar \w the|strong="H5221"\w* son \w of|strong="H1004"\w* Shimeath, \w and|strong="H6965"\w* Jehozabad \w the|strong="H5221"\w* son \w of|strong="H1004"\w* Shomer, \w his|strong="H5221"\w* \w servants|strong="H5650"\w*, \w struck|strong="H5221"\w* \w him|strong="H5221"\w*, \w and|strong="H6965"\w* \w he|strong="H1004"\w* died; \w and|strong="H6965"\w* \w they|strong="H5221"\w* buried \w him|strong="H5221"\w* \w with|strong="H1004"\w* \w his|strong="H5221"\w* fathers \w in|strong="H1004"\w* David’s city; \w and|strong="H6965"\w* Amaziah \w his|strong="H5221"\w* son reigned \w in|strong="H1004"\w* \w his|strong="H5221"\w* \w place|strong="H1004"\w*. +\c 13 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H5921"\w* \w twenty-third|strong="H6242"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Joash|strong="H3101"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ahaziah|strong="H3059"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w Jehoahaz|strong="H3059"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehu|strong="H3058"\w* \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w in|strong="H8141"\w* \w Samaria|strong="H8111"\w* \w for|strong="H5921"\w* \w seventeen|strong="H7651"\w* \w years|strong="H8141"\w*. +\v 2 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w and|strong="H1121"\w* \w followed|strong="H3212"\w* \w the|strong="H6213"\w* \w sins|strong="H2403"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H6213"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w*, \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w sin|strong="H2403"\w*. \w He|strong="H6213"\w* didn’t \w depart|strong="H5493"\w* \w from|strong="H4480"\w* \w it|strong="H6213"\w*. +\v 3 \w Yahweh|strong="H3068"\w*’s anger \w burned|strong="H2734"\w* \w against|strong="H2734"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w he|strong="H3117"\w* \w delivered|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w Hazael|strong="H2371"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Syria, \w and|strong="H1121"\w* \w into|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* Benhadad \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hazael|strong="H2371"\w*, \w continually|strong="H3605"\w*. +\v 4 \w Jehoahaz|strong="H3059"\w* begged \w Yahweh|strong="H3068"\w*, \w and|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w listened|strong="H8085"\w* \w to|strong="H3478"\w* \w him|strong="H6440"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w saw|strong="H7200"\w* \w the|strong="H6440"\w* \w oppression|strong="H3906"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w how|strong="H3588"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria \w oppressed|strong="H3905"\w* \w them|strong="H6440"\w*. +\v 5 (\w Yahweh|strong="H3068"\w* \w gave|strong="H5414"\w* \w Israel|strong="H3478"\w* \w a|strong="H3068"\w* \w savior|strong="H3467"\w*, \w so|strong="H5414"\w* \w that|strong="H3068"\w* \w they|strong="H3068"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w under|strong="H8478"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* Syrians; \w and|strong="H1121"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w their|strong="H3068"\w* tents \w as|strong="H3068"\w* \w before|strong="H8032"\w*. +\v 6 \w Nevertheless|strong="H1571"\w* \w they|strong="H3808"\w* didn’t \w depart|strong="H5493"\w* \w from|strong="H5493"\w* \w the|strong="H5493"\w* \w sins|strong="H2403"\w* \w of|strong="H1004"\w* \w the|strong="H5493"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jeroboam|strong="H3379"\w*, \w with|strong="H1980"\w* \w which|strong="H1004"\w* \w he|strong="H1004"\w* \w made|strong="H5975"\w* \w Israel|strong="H3478"\w* \w to|strong="H1980"\w* \w sin|strong="H2403"\w*, \w but|strong="H3808"\w* \w walked|strong="H1980"\w* \w in|strong="H1980"\w* \w them|strong="H5975"\w*; \w and|strong="H1980"\w* \w the|strong="H5493"\w* Asherah \w also|strong="H1571"\w* \w remained|strong="H5975"\w* \w in|strong="H1980"\w* \w Samaria|strong="H8111"\w*.) +\v 7 \w For|strong="H3588"\w* \w he|strong="H3588"\w* didn’t \w leave|strong="H7604"\w* \w to|strong="H4428"\w* \w Jehoahaz|strong="H3059"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w any|strong="H3588"\w* \w more|strong="H3808"\w* \w than|strong="H3808"\w* \w fifty|strong="H2572"\w* \w horsemen|strong="H6571"\w*, \w and|strong="H4428"\w* \w ten|strong="H6235"\w* \w chariots|strong="H7393"\w*, \w and|strong="H4428"\w* \w ten|strong="H6235"\w* thousand \w footmen|strong="H7273"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria destroyed \w them|strong="H7760"\w* \w and|strong="H4428"\w* \w made|strong="H7760"\w* \w them|strong="H7760"\w* \w like|strong="H3808"\w* \w the|strong="H3588"\w* \w dust|strong="H6083"\w* \w in|strong="H4428"\w* \w threshing|strong="H1758"\w*. +\v 8 \w Now|strong="H3117"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Jehoahaz|strong="H3059"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, \w and|strong="H3478"\w* \w his|strong="H3605"\w* \w might|strong="H1369"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*? +\v 9 \w Jehoahaz|strong="H3059"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H8478"\w* fathers; \w and|strong="H1121"\w* \w they|strong="H8478"\w* \w buried|strong="H6912"\w* \w him|strong="H4427"\w* \w in|strong="H6912"\w* \w Samaria|strong="H8111"\w*; \w and|strong="H1121"\w* \w Joash|strong="H3101"\w* \w his|strong="H8478"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H6912"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\p +\v 10 \w In|strong="H8141"\w* \w the|strong="H5921"\w* \w thirty-seventh|strong="H7970"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Joash|strong="H3101"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w Jehoash|strong="H3060"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoahaz|strong="H3059"\w* \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w in|strong="H8141"\w* \w Samaria|strong="H8111"\w* \w for|strong="H5921"\w* \w sixteen|strong="H8337"\w* \w years|strong="H8141"\w*. +\v 11 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H1980"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*. \w He|strong="H6213"\w* didn’t \w depart|strong="H5493"\w* \w from|strong="H5493"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w sins|strong="H2403"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w*, \w with|strong="H1980"\w* \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w Israel|strong="H3478"\w* \w to|strong="H1980"\w* \w sin|strong="H2403"\w*; \w but|strong="H3808"\w* \w he|strong="H6213"\w* \w walked|strong="H1980"\w* \w in|strong="H1980"\w* \w them|strong="H6213"\w*. +\v 12 \w Now|strong="H3117"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Joash|strong="H3101"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, \w and|strong="H3063"\w* \w his|strong="H3605"\w* \w might|strong="H1369"\w* \w with|strong="H5973"\w* \w which|strong="H1992"\w* \w he|strong="H3117"\w* \w fought|strong="H3898"\w* \w against|strong="H5921"\w* Amaziah \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*? +\v 13 \w Joash|strong="H3101"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H5921"\w* fathers; \w and|strong="H3478"\w* \w Jeroboam|strong="H3379"\w* \w sat|strong="H3427"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w throne|strong="H3678"\w*. \w Joash|strong="H3101"\w* \w was|strong="H3478"\w* \w buried|strong="H6912"\w* \w in|strong="H3427"\w* \w Samaria|strong="H8111"\w* \w with|strong="H5973"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. +\p +\v 14 \w Now|strong="H3478"\w* Elisha \w became|strong="H2470"\w* \w sick|strong="H2470"\w* \w with|strong="H5921"\w* \w the|strong="H6440"\w* \w illness|strong="H2483"\w* \w of|strong="H4428"\w* \w which|strong="H3478"\w* \w he|strong="H5921"\w* \w died|strong="H4191"\w*; \w and|strong="H3478"\w* \w Joash|strong="H3101"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w came|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w him|strong="H6440"\w*, \w and|strong="H3478"\w* \w wept|strong="H1058"\w* \w over|strong="H5921"\w* \w him|strong="H6440"\w*, \w and|strong="H3478"\w* said, “\w My|strong="H5921"\w* father, \w my|strong="H5921"\w* father, \w the|strong="H6440"\w* \w chariots|strong="H7393"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w and|strong="H3478"\w* \w its|strong="H5921"\w* \w horsemen|strong="H6571"\w*!” +\p +\v 15 Elisha said \w to|strong="H3947"\w* \w him|strong="H3947"\w*, “\w Take|strong="H3947"\w* \w bow|strong="H7198"\w* \w and|strong="H7198"\w* \w arrows|strong="H2671"\w*;” \w and|strong="H7198"\w* \w he|strong="H3947"\w* \w took|strong="H3947"\w* \w bow|strong="H7198"\w* \w and|strong="H7198"\w* \w arrows|strong="H2671"\w* \w for|strong="H3947"\w* himself. +\v 16 \w He|strong="H3027"\w* said \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, “\w Put|strong="H7760"\w* \w your|strong="H5921"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w bow|strong="H7198"\w*;” \w and|strong="H3478"\w* \w he|strong="H3027"\w* \w put|strong="H7760"\w* \w his|strong="H7760"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w it|strong="H7760"\w*. Elisha \w laid|strong="H7760"\w* \w his|strong="H7760"\w* \w hands|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w hands|strong="H3027"\w*. +\v 17 \w He|strong="H5704"\w* said, “\w Open|strong="H6605"\w* \w the|strong="H5221"\w* \w window|strong="H2474"\w* \w eastward|strong="H6924"\w*;” \w and|strong="H3068"\w* \w he|strong="H5704"\w* \w opened|strong="H6605"\w* \w it|strong="H5221"\w*. \w Then|strong="H3068"\w* \w Elisha|strong="H5704"\w* said, “\w Shoot|strong="H3384"\w*!” \w and|strong="H3068"\w* \w he|strong="H5704"\w* \w shot|strong="H3384"\w*. \w He|strong="H5704"\w* said, “\w Yahweh|strong="H3068"\w*’s \w arrow|strong="H2671"\w* \w of|strong="H3068"\w* \w victory|strong="H8668"\w*, \w even|strong="H5704"\w* \w the|strong="H5221"\w* \w arrow|strong="H2671"\w* \w of|strong="H3068"\w* \w victory|strong="H8668"\w* \w over|strong="H3068"\w* Syria; \w for|strong="H5704"\w* \w you|strong="H5704"\w* \w will|strong="H3068"\w* \w strike|strong="H5221"\w* \w the|strong="H5221"\w* Syrians \w in|strong="H3068"\w* Aphek \w until|strong="H5704"\w* \w you|strong="H5704"\w* \w have|strong="H3068"\w* \w consumed|strong="H3615"\w* \w them|strong="H5221"\w*.” +\p +\v 18 \w He|strong="H5221"\w* said, “\w Take|strong="H3947"\w* \w the|strong="H3947"\w* \w arrows|strong="H2678"\w*;” \w and|strong="H3478"\w* \w he|strong="H5221"\w* \w took|strong="H3947"\w* \w them|strong="H5221"\w*. \w He|strong="H5221"\w* said \w to|strong="H3478"\w* \w the|strong="H3947"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, “\w Strike|strong="H5221"\w* \w the|strong="H3947"\w* ground;” \w and|strong="H3478"\w* \w he|strong="H5221"\w* \w struck|strong="H5221"\w* \w three|strong="H7969"\w* \w times|strong="H6471"\w*, \w and|strong="H3478"\w* \w stopped|strong="H5975"\w*. +\v 19 \w The|strong="H5921"\w* man \w of|strong="H5921"\w* God \w was|strong="H5221"\w* \w angry|strong="H7107"\w* \w with|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H2568"\w* said, “\w You|strong="H5921"\w* should \w have|strong="H6258"\w* \w struck|strong="H5221"\w* \w five|strong="H2568"\w* \w or|strong="H5704"\w* \w six|strong="H8337"\w* \w times|strong="H6471"\w*. \w Then|strong="H6258"\w* \w you|strong="H5921"\w* would \w have|strong="H6258"\w* \w struck|strong="H5221"\w* Syria \w until|strong="H5704"\w* \w you|strong="H5921"\w* \w had|strong="H7969"\w* \w consumed|strong="H3615"\w* \w it|strong="H5921"\w*, \w but|strong="H5221"\w* \w now|strong="H6258"\w* \w you|strong="H5921"\w* \w will|strong="H5704"\w* \w strike|strong="H5221"\w* Syria \w just|strong="H6258"\w* \w three|strong="H7969"\w* \w times|strong="H6471"\w*.” +\p +\v 20 Elisha \w died|strong="H4191"\w*, \w and|strong="H8141"\w* \w they|strong="H8141"\w* \w buried|strong="H6912"\w* \w him|strong="H4191"\w*. +\p Now \w the|strong="H4191"\w* \w bands|strong="H1416"\w* \w of|strong="H8141"\w* \w the|strong="H4191"\w* \w Moabites|strong="H4124"\w* invaded \w the|strong="H4191"\w* land \w at|strong="H4191"\w* \w the|strong="H4191"\w* coming \w in|strong="H8141"\w* \w of|strong="H8141"\w* \w the|strong="H4191"\w* \w year|strong="H8141"\w*. +\v 21 \w As|strong="H1961"\w* \w they|strong="H1992"\w* \w were|strong="H1961"\w* \w burying|strong="H6912"\w* \w a|strong="H3068"\w* \w man|strong="H7200"\w*, \w behold|strong="H2009"\w*, \w they|strong="H1992"\w* \w saw|strong="H7200"\w* \w a|strong="H3068"\w* \w band|strong="H1416"\w* \w of|strong="H5921"\w* \w raiders|strong="H1416"\w*; \w and|strong="H6965"\w* \w they|strong="H1992"\w* \w threw|strong="H7993"\w* \w the|strong="H5921"\w* \w man|strong="H7200"\w* \w into|strong="H3212"\w* \w Elisha|strong="H2421"\w*’s \w tomb|strong="H6913"\w*. \w As|strong="H1961"\w* soon \w as|strong="H1961"\w* \w the|strong="H5921"\w* \w man|strong="H7200"\w* \w touched|strong="H5060"\w* \w Elisha|strong="H2421"\w*’s \w bones|strong="H6106"\w*, \w he|strong="H5921"\w* \w revived|strong="H2421"\w*, \w and|strong="H6965"\w* \w stood|strong="H6965"\w* \w up|strong="H6965"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w feet|strong="H7272"\w*. +\p +\v 22 \w Hazael|strong="H2371"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria \w oppressed|strong="H3905"\w* \w Israel|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w Jehoahaz|strong="H3059"\w*. +\v 23 \w But|strong="H3808"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w gracious|strong="H2603"\w* \w to|strong="H5704"\w* \w them|strong="H5921"\w*, \w and|strong="H3068"\w* \w had|strong="H3068"\w* \w compassion|strong="H7355"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, \w and|strong="H3068"\w* favored \w them|strong="H5921"\w* \w because|strong="H5921"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H3068"\w* Abraham, \w Isaac|strong="H3327"\w*, \w and|strong="H3068"\w* \w Jacob|strong="H3290"\w*, \w and|strong="H3068"\w* \w would|strong="H3068"\w* \w not|strong="H3808"\w* \w destroy|strong="H7843"\w* \w them|strong="H5921"\w* \w and|strong="H3068"\w* \w he|strong="H5704"\w* didn’t \w cast|strong="H7993"\w* \w them|strong="H5921"\w* \w from|strong="H6440"\w* \w his|strong="H3068"\w* \w presence|strong="H6440"\w* \w as|strong="H5704"\w* \w yet|strong="H5704"\w*. +\p +\v 24 \w Hazael|strong="H2371"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Syria \w died|strong="H4191"\w*; \w and|strong="H1121"\w* Benhadad \w his|strong="H8478"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H4428"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\v 25 \w Jehoash|strong="H3060"\w* \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoahaz|strong="H3059"\w* \w took|strong="H3947"\w* \w again|strong="H7725"\w* \w out|strong="H3947"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* Benhadad \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hazael|strong="H2371"\w* \w the|strong="H3947"\w* \w cities|strong="H5892"\w* \w which|strong="H5892"\w* \w he|strong="H3027"\w* \w had|strong="H3478"\w* \w taken|strong="H3947"\w* \w out|strong="H3947"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w Jehoahaz|strong="H3059"\w* \w his|strong="H3947"\w* \w father|strong="H1121"\w* \w by|strong="H3027"\w* \w war|strong="H4421"\w*. \w Joash|strong="H3101"\w* \w struck|strong="H5221"\w* \w him|strong="H5221"\w* \w three|strong="H7969"\w* \w times|strong="H6471"\w*, \w and|strong="H1121"\w* \w recovered|strong="H7725"\w* \w the|strong="H3947"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\c 14 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H1121"\w* \w second|strong="H8147"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Joash|strong="H3101"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joahaz|strong="H3099"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, Amaziah \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joash|strong="H3101"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w*. +\v 2 \w He|strong="H2568"\w* \w was|strong="H8034"\w* \w twenty-five|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1961"\w* \w he|strong="H2568"\w* \w began|strong="H1961"\w* \w to|strong="H1961"\w* \w reign|strong="H4427"\w*; \w and|strong="H1121"\w* \w he|strong="H2568"\w* \w reigned|strong="H4427"\w* \w twenty-nine|strong="H6242"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H1961"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Jehoaddin|strong="H3086"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*. +\v 3 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w right|strong="H3477"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*, \w yet|strong="H7535"\w* \w not|strong="H3808"\w* \w like|strong="H3808"\w* \w David|strong="H1732"\w* \w his|strong="H3605"\w* father. \w He|strong="H6213"\w* \w did|strong="H6213"\w* according \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Joash|strong="H3101"\w* \w his|strong="H3605"\w* father \w had|strong="H3068"\w* \w done|strong="H6213"\w*. +\v 4 \w However|strong="H7535"\w* \w the|strong="H5493"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w were|strong="H5971"\w* \w not|strong="H3808"\w* \w taken|strong="H5493"\w* \w away|strong="H5493"\w*. \w The|strong="H5493"\w* \w people|strong="H5971"\w* \w still|strong="H5750"\w* \w sacrificed|strong="H2076"\w* \w and|strong="H5971"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w in|strong="H5493"\w* \w the|strong="H5493"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*. +\v 5 \w As|strong="H1961"\w* soon \w as|strong="H1961"\w* \w the|strong="H5221"\w* \w kingdom|strong="H4467"\w* \w was|strong="H1961"\w* \w established|strong="H2388"\w* \w in|strong="H4428"\w* \w his|strong="H5221"\w* \w hand|strong="H3027"\w*, \w he|strong="H3027"\w* \w killed|strong="H5221"\w* \w his|strong="H5221"\w* \w servants|strong="H5650"\w* \w who|strong="H5650"\w* \w had|strong="H1961"\w* \w slain|strong="H5221"\w* \w the|strong="H5221"\w* \w king|strong="H4428"\w* \w his|strong="H5221"\w* father, +\v 6 \w but|strong="H3588"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w murderers|strong="H5221"\w* \w he|strong="H3588"\w* didn’t \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*, \w according|strong="H5921"\w* \w to|strong="H4191"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w law|strong="H8451"\w* \w of|strong="H1121"\w* \w Moses|strong="H4872"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w*, saying, “\w The|strong="H5921"\w* fathers \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w*, \w nor|strong="H3808"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* fathers; \w but|strong="H3588"\w* \w every|strong="H5221"\w* \w man|strong="H1121"\w* \w shall|strong="H3068"\w* \w die|strong="H4191"\w* \w for|strong="H3588"\w* \w his|strong="H3068"\w* own \w sin|strong="H2399"\w*.” +\p +\v 7 \w He|strong="H1931"\w* \w killed|strong="H5221"\w* \w ten|strong="H6235"\w* thousand Edomites \w in|strong="H3117"\w* \w the|strong="H5221"\w* \w Valley|strong="H1516"\w* \w of|strong="H3117"\w* \w Salt|strong="H4417"\w*, \w and|strong="H3117"\w* \w took|strong="H8610"\w* \w Sela|strong="H5554"\w* \w by|strong="H3117"\w* \w war|strong="H4421"\w*, \w and|strong="H3117"\w* \w called|strong="H7121"\w* \w its|strong="H1516"\w* \w name|strong="H8034"\w* \w Joktheel|strong="H3371"\w*, \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 8 \w Then|strong="H7971"\w* Amaziah \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H3478"\w* \w Jehoash|strong="H3060"\w*, \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoahaz|strong="H3059"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehu|strong="H3058"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, saying, “\w Come|strong="H3212"\w*, \w let|strong="H7971"\w*’s \w look|strong="H7200"\w* \w one|strong="H1121"\w* \w another|strong="H7200"\w* \w in|strong="H3478"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w*.” +\p +\v 9 \w Jehoash|strong="H3060"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w sent|strong="H7971"\w* \w to|strong="H3478"\w* Amaziah \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, saying, “\w The|strong="H5414"\w* \w thistle|strong="H2336"\w* \w that|strong="H3478"\w* \w was|strong="H3478"\w* \w in|strong="H3478"\w* \w Lebanon|strong="H3844"\w* \w sent|strong="H7971"\w* \w to|strong="H3478"\w* \w the|strong="H5414"\w* cedar \w that|strong="H3478"\w* \w was|strong="H3478"\w* \w in|strong="H3478"\w* \w Lebanon|strong="H3844"\w*, saying, ‘\w Give|strong="H5414"\w* \w your|strong="H5414"\w* \w daughter|strong="H1323"\w* \w to|strong="H3478"\w* \w my|strong="H5414"\w* \w son|strong="H1121"\w* \w as|strong="H3063"\w* \w wife|strong="H2416"\w*.’ \w Then|strong="H7971"\w* \w a|strong="H3068"\w* \w wild|strong="H7704"\w* \w animal|strong="H2416"\w* \w that|strong="H3478"\w* \w was|strong="H3478"\w* \w in|strong="H3478"\w* \w Lebanon|strong="H3844"\w* \w passed|strong="H5674"\w* \w by|strong="H5674"\w*, \w and|strong="H1121"\w* \w trampled|strong="H7429"\w* \w down|strong="H7429"\w* \w the|strong="H5414"\w* \w thistle|strong="H2336"\w*. +\v 10 \w You|strong="H5973"\w* \w have|strong="H3063"\w* \w indeed|strong="H5221"\w* \w struck|strong="H5221"\w* Edom, \w and|strong="H3063"\w* \w your|strong="H5375"\w* \w heart|strong="H3820"\w* \w has|strong="H3820"\w* \w lifted|strong="H5375"\w* \w you|strong="H5973"\w* \w up|strong="H5375"\w*. \w Enjoy|strong="H3513"\w* \w the|strong="H5221"\w* \w glory|strong="H3513"\w* \w of|strong="H1004"\w* \w it|strong="H5375"\w*, \w and|strong="H3063"\w* \w stay|strong="H3427"\w* \w at|strong="H3427"\w* \w home|strong="H1004"\w*; \w for|strong="H3427"\w* \w why|strong="H4100"\w* \w should|strong="H4100"\w* \w you|strong="H5973"\w* \w meddle|strong="H1624"\w* \w to|strong="H3820"\w* \w your|strong="H5375"\w* \w harm|strong="H7451"\w*, \w that|strong="H5307"\w* \w you|strong="H5973"\w* \w fall|strong="H5307"\w*, even \w you|strong="H5973"\w*, \w and|strong="H3063"\w* \w Judah|strong="H3063"\w* \w with|strong="H5973"\w* \w you|strong="H5973"\w*?” +\p +\v 11 \w But|strong="H3808"\w* Amaziah \w would|strong="H3478"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w*. \w So|strong="H5927"\w* \w Jehoash|strong="H3060"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w*; \w and|strong="H3063"\w* \w he|strong="H1931"\w* \w and|strong="H3063"\w* Amaziah \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w looked|strong="H7200"\w* \w one|strong="H3808"\w* \w another|strong="H7200"\w* \w in|strong="H3478"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w at|strong="H3478"\w* Beth Shemesh, \w which|strong="H1931"\w* belongs \w to|strong="H3478"\w* \w Judah|strong="H3063"\w*. +\v 12 \w Judah|strong="H3063"\w* \w was|strong="H3478"\w* \w defeated|strong="H5062"\w* \w by|strong="H3478"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3063"\w* each \w man|strong="H6440"\w* \w fled|strong="H5127"\w* \w to|strong="H3478"\w* \w his|strong="H6440"\w* tent. +\v 13 \w Jehoash|strong="H3060"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w took|strong="H8610"\w* Amaziah \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w the|strong="H5704"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoash|strong="H3060"\w* \w the|strong="H5704"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahaziah, \w at|strong="H3478"\w* Beth Shemesh \w and|strong="H3967"\w* \w came|strong="H3478"\w* \w to|strong="H5704"\w* \w Jerusalem|strong="H3389"\w*, \w then|strong="H4428"\w* \w broke|strong="H6555"\w* \w down|strong="H6555"\w* \w the|strong="H5704"\w* \w wall|strong="H2346"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w* \w from|strong="H3478"\w* \w the|strong="H5704"\w* \w gate|strong="H8179"\w* \w of|strong="H1121"\w* Ephraim \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w corner|strong="H6438"\w* \w gate|strong="H8179"\w*, four \w hundred|strong="H3967"\w* cubits.\f + \fr 14:13 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* +\v 14 \w He|strong="H3068"\w* \w took|strong="H3947"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w gold|strong="H2091"\w* \w and|strong="H1121"\w* \w silver|strong="H3701"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w that|strong="H3605"\w* \w were|strong="H1121"\w* \w found|strong="H4672"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w and|strong="H1121"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* treasures \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w the|strong="H3605"\w* \w hostages|strong="H8594"\w* \w also|strong="H3068"\w*, \w and|strong="H1121"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Samaria|strong="H8111"\w*. +\p +\v 15 \w Now|strong="H3117"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Jehoash|strong="H3060"\w* \w which|strong="H1992"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, \w and|strong="H3063"\w* \w his|strong="H5921"\w* \w might|strong="H1369"\w*, \w and|strong="H3063"\w* \w how|strong="H6213"\w* \w he|strong="H3117"\w* \w fought|strong="H3898"\w* \w with|strong="H5973"\w* Amaziah \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*? +\v 16 \w Jehoash|strong="H3060"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H3478"\w* fathers, \w and|strong="H1121"\w* \w was|strong="H3478"\w* \w buried|strong="H6912"\w* \w in|strong="H3478"\w* \w Samaria|strong="H8111"\w* \w with|strong="H5973"\w* \w the|strong="H8478"\w* \w kings|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w and|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w his|strong="H3478"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H3478"\w* \w his|strong="H3478"\w* \w place|strong="H8478"\w*. +\p +\v 17 Amaziah \w the|strong="H3060"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joash|strong="H3101"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w lived|strong="H2421"\w* \w after|strong="H8141"\w* \w the|strong="H3060"\w* \w death|strong="H4194"\w* \w of|strong="H1121"\w* \w Jehoash|strong="H3060"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoahaz|strong="H3059"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w fifteen|strong="H2568"\w* \w years|strong="H8141"\w*. +\v 18 \w Now|strong="H3117"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* Amaziah, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*? +\v 19 \w They|strong="H8033"\w* \w made|strong="H7194"\w* \w a|strong="H3068"\w* \w conspiracy|strong="H7195"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H7971"\w* \w he|strong="H8033"\w* \w fled|strong="H5127"\w* \w to|strong="H4191"\w* \w Lachish|strong="H3923"\w*; \w but|strong="H4191"\w* \w they|strong="H8033"\w* \w sent|strong="H7971"\w* \w after|strong="H5921"\w* \w him|strong="H5921"\w* \w to|strong="H4191"\w* \w Lachish|strong="H3923"\w* \w and|strong="H7971"\w* \w killed|strong="H4191"\w* \w him|strong="H5921"\w* \w there|strong="H8033"\w*. +\v 20 \w They|strong="H5921"\w* \w brought|strong="H5375"\w* \w him|strong="H5921"\w* \w on|strong="H5921"\w* \w horses|strong="H5483"\w*, \w and|strong="H3389"\w* \w he|strong="H1732"\w* \w was|strong="H1732"\w* \w buried|strong="H6912"\w* \w at|strong="H5921"\w* \w Jerusalem|strong="H3389"\w* \w with|strong="H5973"\w* \w his|strong="H5375"\w* fathers \w in|strong="H5921"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*. +\p +\v 21 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w took|strong="H3947"\w* \w Azariah|strong="H5838"\w*, \w who|strong="H3605"\w* \w was|strong="H1931"\w* \w sixteen|strong="H8337"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*, \w and|strong="H1121"\w* \w made|strong="H4427"\w* \w him|strong="H4427"\w* \w king|strong="H4427"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w place|strong="H8478"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w father|strong="H1121"\w* Amaziah. +\v 22 \w He|strong="H1931"\w* \w built|strong="H1129"\w* Elath \w and|strong="H3063"\w* \w restored|strong="H7725"\w* \w it|strong="H1931"\w* \w to|strong="H7725"\w* \w Judah|strong="H3063"\w*. After \w that|strong="H1931"\w* \w the|strong="H7725"\w* \w king|strong="H4428"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H7725"\w* fathers. +\p +\v 23 \w In|strong="H8141"\w* \w the|strong="H3379"\w* \w fifteenth|strong="H2568"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* Amaziah \w the|strong="H3379"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joash|strong="H3101"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w Jeroboam|strong="H3379"\w* \w the|strong="H3379"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joash|strong="H3101"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w* \w in|strong="H8141"\w* \w Samaria|strong="H8111"\w* \w for|strong="H1121"\w* forty-one \w years|strong="H8141"\w*. +\v 24 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*. \w He|strong="H6213"\w* didn’t \w depart|strong="H5493"\w* \w from|strong="H5493"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w sins|strong="H2403"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w*, \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w sin|strong="H2403"\w*. +\v 25 \w He|strong="H1931"\w* \w restored|strong="H7725"\w* \w the|strong="H3068"\w* \w border|strong="H1366"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w from|strong="H7725"\w* \w the|strong="H3068"\w* entrance \w of|strong="H1121"\w* \w Hamath|strong="H2574"\w* \w to|strong="H1696"\w* \w the|strong="H3068"\w* \w sea|strong="H3220"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w Arabah|strong="H6160"\w*, \w according|strong="H3027"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*’s \w word|strong="H1697"\w*, \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w spoke|strong="H1696"\w* \w by|strong="H3027"\w* \w his|strong="H3068"\w* \w servant|strong="H5650"\w* \w Jonah|strong="H3124"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amittai, \w the|strong="H3068"\w* \w prophet|strong="H5030"\w*, \w who|strong="H1931"\w* \w was|strong="H3068"\w* \w from|strong="H7725"\w* Gath Hepher. +\v 26 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w affliction|strong="H6040"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H3068"\w* \w very|strong="H3966"\w* \w bitter|strong="H4784"\w* \w for|strong="H3588"\w* \w all|strong="H7200"\w*, slave \w and|strong="H3478"\w* \w free|strong="H5800"\w*; \w and|strong="H3478"\w* \w there|strong="H3068"\w* \w was|strong="H3068"\w* \w no|strong="H7200"\w* \w helper|strong="H5826"\w* \w for|strong="H3588"\w* \w Israel|strong="H3478"\w*. +\v 27 \w Yahweh|strong="H3068"\w* didn’t \w say|strong="H1696"\w* \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w would|strong="H3068"\w* \w blot|strong="H4229"\w* \w out|strong="H4229"\w* \w the|strong="H3068"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w from|strong="H3478"\w* \w under|strong="H8478"\w* \w the|strong="H3068"\w* \w sky|strong="H8064"\w*; \w but|strong="H3808"\w* \w he|strong="H3068"\w* \w saved|strong="H3467"\w* \w them|strong="H3027"\w* \w by|strong="H3027"\w* \w the|strong="H3068"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joash|strong="H3101"\w*. +\v 28 \w Now|strong="H3117"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Jeroboam|strong="H3379"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, \w and|strong="H3063"\w* \w his|strong="H3605"\w* \w might|strong="H1369"\w*, \w how|strong="H6213"\w* \w he|strong="H3117"\w* \w fought|strong="H3898"\w*, \w and|strong="H3063"\w* \w how|strong="H6213"\w* \w he|strong="H3117"\w* \w recovered|strong="H7725"\w* \w Damascus|strong="H1834"\w*, \w and|strong="H3063"\w* \w Hamath|strong="H2574"\w*, \w which|strong="H1992"\w* \w had|strong="H3478"\w* belonged \w to|strong="H7725"\w* \w Judah|strong="H3063"\w*, \w for|strong="H5921"\w* \w Israel|strong="H3478"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*? +\v 29 \w Jeroboam|strong="H3379"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H3478"\w* fathers, even \w with|strong="H5973"\w* \w the|strong="H8478"\w* \w kings|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w and|strong="H1121"\w* \w Zechariah|strong="H2148"\w* \w his|strong="H3478"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H3478"\w* \w his|strong="H3478"\w* \w place|strong="H8478"\w*. +\c 15 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H3379"\w* \w twenty-seventh|strong="H6242"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w Azariah|strong="H5838"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amaziah \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w*. +\v 2 \w He|strong="H8147"\w* \w was|strong="H8034"\w* \w sixteen|strong="H8337"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1961"\w* \w he|strong="H8147"\w* \w began|strong="H1961"\w* \w to|strong="H1961"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H8147"\w* \w reigned|strong="H4427"\w* \w fifty-two|strong="H2572"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H1961"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Jecoliah|strong="H3203"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*. +\v 3 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w right|strong="H3477"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*, according \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w his|strong="H3605"\w* father Amaziah \w had|strong="H3068"\w* \w done|strong="H6213"\w*. +\v 4 \w However|strong="H7535"\w*, \w the|strong="H5493"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w were|strong="H5971"\w* \w not|strong="H3808"\w* \w taken|strong="H5493"\w* \w away|strong="H5493"\w*. \w The|strong="H5493"\w* \w people|strong="H5971"\w* \w still|strong="H5750"\w* \w sacrificed|strong="H2076"\w* \w and|strong="H5971"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w in|strong="H5493"\w* \w the|strong="H5493"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*. +\v 5 \w Yahweh|strong="H3068"\w* \w struck|strong="H5060"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*, \w so|strong="H1961"\w* \w that|strong="H5971"\w* \w he|strong="H3117"\w* \w was|strong="H3068"\w* \w a|strong="H3068"\w* \w leper|strong="H6879"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w his|strong="H3068"\w* \w death|strong="H4194"\w*, \w and|strong="H1121"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w a|strong="H3068"\w* \w separate|strong="H2669"\w* \w house|strong="H1004"\w*. \w Jotham|strong="H3147"\w*, \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w son|strong="H1121"\w*, \w was|strong="H3068"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w household|strong="H1004"\w*, \w judging|strong="H8199"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* land. +\v 6 \w Now|strong="H3117"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Azariah|strong="H5838"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*? +\v 7 \w Azariah|strong="H5838"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* fathers; \w and|strong="H1121"\w* \w they|strong="H5892"\w* \w buried|strong="H6912"\w* \w him|strong="H4427"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* fathers \w in|strong="H6912"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*; \w and|strong="H1121"\w* \w Jotham|strong="H3147"\w* \w his|strong="H1732"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H6912"\w* \w his|strong="H1732"\w* \w place|strong="H8478"\w*. +\p +\v 8 \w In|strong="H8141"\w* \w the|strong="H5921"\w* \w thirty-eighth|strong="H7970"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Azariah|strong="H5838"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w Zechariah|strong="H2148"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w reigned|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w in|strong="H8141"\w* \w Samaria|strong="H8111"\w* \w six|strong="H8337"\w* \w months|strong="H2320"\w*. +\v 9 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w as|strong="H6213"\w* \w his|strong="H3068"\w* fathers \w had|strong="H3068"\w* \w done|strong="H6213"\w*. \w He|strong="H6213"\w* didn’t \w depart|strong="H5493"\w* \w from|strong="H5493"\w* \w the|strong="H6213"\w* \w sins|strong="H2403"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H6213"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w*, \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w sin|strong="H2403"\w*. +\v 10 \w Shallum|strong="H7967"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jabesh|strong="H3003"\w* \w conspired|strong="H7194"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H1121"\w* \w struck|strong="H5221"\w* \w him|strong="H5921"\w* \w before|strong="H5921"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w and|strong="H1121"\w* \w killed|strong="H5221"\w* \w him|strong="H5921"\w*, \w and|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w place|strong="H8478"\w*. +\v 11 \w Now|strong="H3117"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Zechariah|strong="H2148"\w*, \w behold|strong="H2009"\w*, \w they|strong="H3117"\w* \w are|strong="H3117"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. +\v 12 \w This|strong="H3651"\w* \w was|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Jehu|strong="H3058"\w*, \w saying|strong="H1697"\w*, “\w Your|strong="H3068"\w* \w sons|strong="H1121"\w* \w to|strong="H1696"\w* \w the|strong="H5921"\w* \w fourth|strong="H7243"\w* generation \w shall|strong="H3068"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w throne|strong="H3678"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*.” \w So|strong="H3651"\w* \w it|strong="H1931"\w* \w came|strong="H1961"\w* \w to|strong="H1696"\w* \w pass|strong="H1961"\w*. +\p +\v 13 \w Shallum|strong="H7967"\w* \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jabesh|strong="H3003"\w* \w began|strong="H3063"\w* \w to|strong="H3117"\w* \w reign|strong="H4427"\w* \w in|strong="H8141"\w* \w the|strong="H3117"\w* \w thirty-ninth|strong="H7970"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Uzziah|strong="H5818"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w and|strong="H1121"\w* \w he|strong="H3117"\w* \w reigned|strong="H4427"\w* \w for|strong="H3117"\w* \w a|strong="H3068"\w* \w month|strong="H3391"\w* \w in|strong="H8141"\w* \w Samaria|strong="H8111"\w*. +\v 14 \w Menahem|strong="H4505"\w* \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Gadi|strong="H1424"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5927"\w* \w Tirzah|strong="H8656"\w*, \w came|strong="H5927"\w* \w to|strong="H4191"\w* \w Samaria|strong="H8111"\w*, \w struck|strong="H5221"\w* \w Shallum|strong="H7967"\w* \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jabesh|strong="H3003"\w* \w in|strong="H4191"\w* \w Samaria|strong="H8111"\w*, \w killed|strong="H5221"\w* \w him|strong="H5221"\w*, \w and|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H4191"\w* \w his|strong="H5221"\w* \w place|strong="H8478"\w*. +\v 15 \w Now|strong="H3117"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Shallum|strong="H7967"\w*, \w and|strong="H3478"\w* \w his|strong="H5921"\w* \w conspiracy|strong="H7195"\w* \w which|strong="H1697"\w* \w he|strong="H3117"\w* \w made|strong="H7194"\w*, \w behold|strong="H2009"\w*, \w they|strong="H3117"\w* \w are|strong="H3117"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. +\p +\v 16 \w Then|strong="H3588"\w* \w Menahem|strong="H4505"\w* \w attacked|strong="H5221"\w* \w Tiphsah|strong="H8607"\w* \w and|strong="H5221"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H3605"\w* \w in|strong="H3808"\w* \w it|strong="H3588"\w* \w and|strong="H5221"\w* \w its|strong="H3605"\w* \w border|strong="H1366"\w* areas, \w from|strong="H1366"\w* \w Tirzah|strong="H8656"\w*. \w He|strong="H3588"\w* \w attacked|strong="H5221"\w* \w it|strong="H3588"\w* \w because|strong="H3588"\w* \w they|strong="H3588"\w* didn’t \w open|strong="H6605"\w* \w their|strong="H3605"\w* gates \w to|strong="H3808"\w* \w him|strong="H5221"\w*, \w and|strong="H5221"\w* \w he|strong="H3588"\w* \w ripped|strong="H1234"\w* \w up|strong="H1234"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w women|strong="H2030"\w* \w who|strong="H3605"\w* \w were|strong="H3605"\w* \w with|strong="H3605"\w* \w child|strong="H2030"\w*. +\p +\v 17 \w In|strong="H8141"\w* \w the|strong="H5921"\w* \w thirty|strong="H7970"\w* \w ninth|strong="H8672"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Azariah|strong="H5838"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w Menahem|strong="H4505"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Gadi|strong="H1424"\w* \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w for|strong="H5921"\w* \w ten|strong="H6235"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Samaria|strong="H8111"\w*. +\v 18 \w He|strong="H3117"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*. \w He|strong="H3117"\w* didn’t \w depart|strong="H5493"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w days|strong="H3117"\w* \w from|strong="H5493"\w* \w the|strong="H3605"\w* \w sins|strong="H2403"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w*, \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H3117"\w* \w made|strong="H6213"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w sin|strong="H2403"\w*. +\v 19 \w Pul|strong="H6322"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w came|strong="H1961"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* land, \w and|strong="H3701"\w* \w Menahem|strong="H4505"\w* \w gave|strong="H5414"\w* \w Pul|strong="H6322"\w* \w one|strong="H1961"\w* thousand \w talents|strong="H3603"\w*\f + \fr 15:19 \ft A talent is about 30 kilograms or 66 pounds, so 1000 talents is about 30 metric tons\f* \w of|strong="H4428"\w* \w silver|strong="H3701"\w*, \w that|strong="H5414"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w* \w might|strong="H4467"\w* \w be|strong="H1961"\w* \w with|strong="H5921"\w* \w him|strong="H5414"\w* \w to|strong="H1961"\w* \w confirm|strong="H2388"\w* \w the|strong="H5921"\w* \w kingdom|strong="H4467"\w* \w in|strong="H5921"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w*. +\v 20 \w Menahem|strong="H4505"\w* \w exacted|strong="H3318"\w* \w the|strong="H3605"\w* \w money|strong="H3701"\w* \w from|strong="H7725"\w* \w Israel|strong="H3478"\w*, \w even|strong="H3808"\w* \w from|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H4428"\w* \w wealth|strong="H2428"\w*, \w from|strong="H7725"\w* \w each|strong="H3605"\w* \w man|strong="H1368"\w* \w fifty|strong="H2572"\w* \w shekels|strong="H8255"\w*\f + \fr 15:20 \ft A shekel is about 10 grams or about 0.35 ounces, so 50 shekels was about 0.5 kilograms or 1.1 pounds.\f* \w of|strong="H4428"\w* \w silver|strong="H3701"\w*, \w to|strong="H7725"\w* \w give|strong="H5414"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria. \w So|strong="H5414"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w turned|strong="H7725"\w* \w back|strong="H7725"\w*, \w and|strong="H3478"\w* didn’t \w stay|strong="H5975"\w* \w there|strong="H8033"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* land. +\v 21 \w Now|strong="H3117"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Menahem|strong="H4505"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*? +\v 22 \w Menahem|strong="H4505"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H8478"\w* fathers, \w and|strong="H1121"\w* \w Pekahiah|strong="H6494"\w* \w his|strong="H8478"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H4427"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\p +\v 23 \w In|strong="H8141"\w* \w the|strong="H5921"\w* \w fiftieth|strong="H2572"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Azariah|strong="H5838"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w Pekahiah|strong="H6494"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Menahem|strong="H4505"\w* \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w in|strong="H8141"\w* \w Samaria|strong="H8111"\w* \w for|strong="H5921"\w* \w two|strong="H4427"\w* \w years|strong="H8141"\w*. +\v 24 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*. \w He|strong="H6213"\w* didn’t \w depart|strong="H5493"\w* \w from|strong="H5493"\w* \w the|strong="H6213"\w* \w sins|strong="H2403"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H6213"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w*, \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w sin|strong="H2403"\w*. +\v 25 \w Pekah|strong="H6492"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Remaliah|strong="H7425"\w*, \w his|strong="H5921"\w* \w captain|strong="H7991"\w*, \w conspired|strong="H7194"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w* \w and|strong="H1121"\w* \w attacked|strong="H5221"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w Samaria|strong="H8111"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* fortress \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w with|strong="H5973"\w* Argob \w and|strong="H1121"\w* Arieh; \w and|strong="H1121"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w* \w were|strong="H1121"\w* \w fifty|strong="H2572"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w Gileadites|strong="H1569"\w*. \w He|strong="H1004"\w* \w killed|strong="H5221"\w* \w him|strong="H5921"\w*, \w and|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w place|strong="H8478"\w*. +\v 26 \w Now|strong="H3117"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Pekahiah|strong="H6494"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, \w behold|strong="H2009"\w*, \w they|strong="H3117"\w* \w are|strong="H3117"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. +\p +\v 27 \w In|strong="H8141"\w* \w the|strong="H5921"\w* \w fifty-second|strong="H2572"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Azariah|strong="H5838"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w Pekah|strong="H6492"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Remaliah|strong="H7425"\w* \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w in|strong="H8141"\w* \w Samaria|strong="H8111"\w* \w for|strong="H5921"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w*. +\v 28 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*. \w He|strong="H6213"\w* didn’t \w depart|strong="H5493"\w* \w from|strong="H4480"\w* \w the|strong="H6213"\w* \w sins|strong="H2403"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H6213"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w*, \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w sin|strong="H2403"\w*. +\v 29 \w In|strong="H3478"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w Pekah|strong="H6492"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, Tiglath Pileser \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w came|strong="H3478"\w* \w and|strong="H3478"\w* \w took|strong="H3947"\w* \w Ijon|strong="H5859"\w*, Abel Beth Maacah, \w Janoah|strong="H3239"\w*, \w Kedesh|strong="H6943"\w*, \w Hazor|strong="H2674"\w*, \w Gilead|strong="H1568"\w*, \w and|strong="H3478"\w* \w Galilee|strong="H1551"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H4428"\w* \w Naphtali|strong="H5321"\w*; \w and|strong="H3478"\w* \w he|strong="H3117"\w* \w carried|strong="H1540"\w* \w them|strong="H3947"\w* \w captive|strong="H1540"\w* \w to|strong="H3478"\w* Assyria. +\v 30 \w Hoshea|strong="H1954"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Elah \w made|strong="H4427"\w* \w a|strong="H3068"\w* \w conspiracy|strong="H7195"\w* \w against|strong="H5921"\w* \w Pekah|strong="H6492"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Remaliah|strong="H7425"\w*, \w attacked|strong="H5221"\w* \w him|strong="H5921"\w*, \w killed|strong="H5221"\w* \w him|strong="H5921"\w*, \w and|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H8141"\w* \w his|strong="H5921"\w* \w place|strong="H8478"\w*, \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w twentieth|strong="H6242"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Jotham|strong="H3147"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Uzziah|strong="H5818"\w*. +\v 31 \w Now|strong="H3117"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Pekah|strong="H6492"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, \w behold|strong="H2009"\w*, \w they|strong="H3117"\w* \w are|strong="H3117"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. +\p +\v 32 \w In|strong="H8141"\w* \w the|strong="H1121"\w* \w second|strong="H8147"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Pekah|strong="H6492"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Remaliah|strong="H7425"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w Jotham|strong="H3147"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Uzziah|strong="H5818"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w*. +\v 33 \w He|strong="H2568"\w* \w was|strong="H8034"\w* \w twenty-five|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1961"\w* \w he|strong="H2568"\w* \w began|strong="H1961"\w* \w to|strong="H1961"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H2568"\w* \w reigned|strong="H4427"\w* \w sixteen|strong="H8337"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H1961"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Jerusha|strong="H3388"\w* \w the|strong="H1961"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Zadok|strong="H6659"\w*. +\v 34 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w right|strong="H3477"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*. \w He|strong="H6213"\w* \w did|strong="H6213"\w* according \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w his|strong="H3605"\w* father \w Uzziah|strong="H5818"\w* \w had|strong="H3068"\w* \w done|strong="H6213"\w*. +\v 35 \w However|strong="H7535"\w* \w the|strong="H3068"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w were|strong="H5971"\w* \w not|strong="H3808"\w* \w taken|strong="H5493"\w* \w away|strong="H5493"\w*. \w The|strong="H3068"\w* \w people|strong="H5971"\w* \w still|strong="H5750"\w* \w sacrificed|strong="H2076"\w* \w and|strong="H3068"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*. \w He|strong="H1931"\w* \w built|strong="H1129"\w* \w the|strong="H3068"\w* \w upper|strong="H5945"\w* \w gate|strong="H8179"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 36 \w Now|strong="H3117"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Jotham|strong="H3147"\w*, \w and|strong="H3063"\w* \w all|strong="H6213"\w* \w that|strong="H3117"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*? +\v 37 \w In|strong="H3068"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*, \w Yahweh|strong="H3068"\w* \w began|strong="H2490"\w* \w to|strong="H3068"\w* \w send|strong="H7971"\w* \w Rezin|strong="H7526"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Syria \w and|strong="H1121"\w* \w Pekah|strong="H6492"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Remaliah|strong="H7425"\w* \w against|strong="H3068"\w* \w Judah|strong="H3063"\w*. +\v 38 \w Jotham|strong="H3147"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* fathers, \w and|strong="H1121"\w* \w was|strong="H1732"\w* \w buried|strong="H6912"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* fathers \w in|strong="H6912"\w* \w his|strong="H1732"\w* \w father|strong="H1121"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*; \w and|strong="H1121"\w* Ahaz \w his|strong="H1732"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H6912"\w* \w his|strong="H1732"\w* \w place|strong="H8478"\w*. +\c 16 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H1121"\w* \w seventeenth|strong="H7651"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Pekah|strong="H6492"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Remaliah|strong="H7425"\w*, Ahaz \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jotham|strong="H3147"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w began|strong="H3063"\w* \w to|strong="H1121"\w* \w reign|strong="H4427"\w*. +\v 2 Ahaz \w was|strong="H3068"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H6213"\w* \w he|strong="H6213"\w* began \w to|strong="H3068"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H6213"\w* \w reigned|strong="H4427"\w* \w sixteen|strong="H8337"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w He|strong="H6213"\w* didn’t \w do|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w right|strong="H3477"\w* \w in|strong="H8141"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H3068"\w* \w God|strong="H3068"\w*’s \w eyes|strong="H5869"\w*, \w like|strong="H3808"\w* \w David|strong="H1732"\w* \w his|strong="H3068"\w* \w father|strong="H1121"\w*. +\v 3 \w But|strong="H1571"\w* \w he|strong="H3068"\w* \w walked|strong="H3212"\w* \w in|strong="H3478"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w kings|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w even|strong="H1571"\w* \w made|strong="H3478"\w* \w his|strong="H3068"\w* \w son|strong="H1121"\w* \w to|strong="H3478"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H6440"\w* fire, according \w to|strong="H3478"\w* \w the|strong="H6440"\w* \w abominations|strong="H8441"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w nations|strong="H1471"\w* \w whom|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w cast|strong="H3068"\w* \w out|strong="H3423"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 4 \w He|strong="H3605"\w* \w sacrificed|strong="H2076"\w* \w and|strong="H6086"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*, \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w hills|strong="H1389"\w*, \w and|strong="H6086"\w* \w under|strong="H8478"\w* \w every|strong="H3605"\w* \w green|strong="H7488"\w* \w tree|strong="H6086"\w*. +\p +\v 5 \w Then|strong="H4428"\w* \w Rezin|strong="H7526"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Syria \w and|strong="H1121"\w* \w Pekah|strong="H6492"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Remaliah|strong="H7425"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H3478"\w* \w wage|strong="H4421"\w* \w war|strong="H4421"\w*. \w They|strong="H3808"\w* \w besieged|strong="H6696"\w* Ahaz, \w but|strong="H3808"\w* \w could|strong="H3201"\w* \w not|strong="H3808"\w* \w overcome|strong="H3201"\w* \w him|strong="H5921"\w*. +\v 6 \w At|strong="H3427"\w* \w that|strong="H3117"\w* \w time|strong="H6256"\w* \w Rezin|strong="H7526"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria \w recovered|strong="H7725"\w* Elath \w to|strong="H5704"\w* Syria, \w and|strong="H7725"\w* drove \w the|strong="H3117"\w* \w Jews|strong="H3064"\w* \w from|strong="H7725"\w* Elath; \w and|strong="H7725"\w* \w the|strong="H3117"\w* Syrians \w came|strong="H7725"\w* \w to|strong="H5704"\w* Elath, \w and|strong="H7725"\w* \w lived|strong="H3427"\w* \w there|strong="H8033"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 7 \w So|strong="H7971"\w* Ahaz \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H3478"\w* Tiglath Pileser \w king|strong="H4428"\w* \w of|strong="H1121"\w* Assyria, saying, “\w I|strong="H5921"\w* am \w your|strong="H5921"\w* \w servant|strong="H5650"\w* \w and|strong="H1121"\w* \w your|strong="H5921"\w* \w son|strong="H1121"\w*. \w Come|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H1121"\w* \w save|strong="H3467"\w* \w me|strong="H7971"\w* \w out|strong="H7971"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w hand|strong="H3709"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Syria \w and|strong="H1121"\w* \w out|strong="H7971"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w hand|strong="H3709"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w who|strong="H1121"\w* \w rise|strong="H6965"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w me|strong="H7971"\w*.” +\v 8 Ahaz \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w silver|strong="H3701"\w* \w and|strong="H3068"\w* \w gold|strong="H2091"\w* \w that|strong="H3068"\w* \w was|strong="H3068"\w* \w found|strong="H4672"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3947"\w* treasures \w of|strong="H4428"\w* \w the|strong="H3947"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w sent|strong="H7971"\w* \w it|strong="H7971"\w* \w for|strong="H7971"\w* \w a|strong="H3068"\w* \w present|strong="H4672"\w* \w to|strong="H3068"\w* \w the|strong="H3947"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria. +\v 9 \w The|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w listened|strong="H8085"\w* \w to|strong="H4191"\w* \w him|strong="H4191"\w*; \w and|strong="H4428"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5927"\w* \w Damascus|strong="H1834"\w* \w and|strong="H4428"\w* \w took|strong="H8610"\w* \w it|strong="H5927"\w*, \w and|strong="H4428"\w* \w carried|strong="H1540"\w* \w its|strong="H5927"\w* \w people|strong="H8085"\w* \w captive|strong="H1540"\w* \w to|strong="H4191"\w* \w Kir|strong="H7024"\w*, \w and|strong="H4428"\w* \w killed|strong="H4191"\w* \w Rezin|strong="H7526"\w*. +\p +\v 10 \w King|strong="H4428"\w* Ahaz \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Damascus|strong="H1834"\w* \w to|strong="H3212"\w* \w meet|strong="H7125"\w* Tiglath Pileser \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria, \w and|strong="H7971"\w* \w saw|strong="H7200"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w that|strong="H7200"\w* \w was|strong="H4428"\w* \w at|strong="H4428"\w* \w Damascus|strong="H1834"\w*; \w and|strong="H7971"\w* \w King|strong="H4428"\w* Ahaz \w sent|strong="H7971"\w* \w to|strong="H3212"\w* Urijah \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w a|strong="H3068"\w* drawing \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w and|strong="H7971"\w* plans \w to|strong="H3212"\w* build \w it|strong="H7200"\w*. +\v 11 Urijah \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w built|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w*. According \w to|strong="H5704"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w King|strong="H4428"\w* Ahaz \w had|strong="H4428"\w* \w sent|strong="H7971"\w* \w from|strong="H7971"\w* \w Damascus|strong="H1834"\w*, \w so|strong="H3651"\w* Urijah \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w made|strong="H6213"\w* \w it|strong="H6213"\w* \w for|strong="H5704"\w* \w the|strong="H3605"\w* coming \w of|strong="H4428"\w* \w King|strong="H4428"\w* Ahaz \w from|strong="H7971"\w* \w Damascus|strong="H1834"\w*. +\v 12 \w When|strong="H7200"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w had|strong="H4428"\w* \w come|strong="H5927"\w* \w from|strong="H5921"\w* \w Damascus|strong="H1834"\w*, \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w saw|strong="H7200"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*; \w and|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w came|strong="H5927"\w* \w near|strong="H7126"\w* \w to|strong="H5927"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*, \w and|strong="H4428"\w* \w offered|strong="H5927"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 13 \w He|strong="H5921"\w* \w burned|strong="H6999"\w* \w his|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w* \w and|strong="H4196"\w* \w his|strong="H5921"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w poured|strong="H5258"\w* \w his|strong="H5921"\w* \w drink|strong="H5262"\w* \w offering|strong="H4503"\w*, \w and|strong="H4196"\w* \w sprinkled|strong="H2236"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w of|strong="H4196"\w* \w his|strong="H5921"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*. +\v 14 \w The|strong="H6440"\w* \w bronze|strong="H5178"\w* \w altar|strong="H4196"\w*, \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w he|strong="H3068"\w* \w brought|strong="H7126"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w front|strong="H6440"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w*, \w from|strong="H6440"\w* \w between|strong="H5921"\w* \w his|strong="H5414"\w* \w altar|strong="H4196"\w* \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w north|strong="H6828"\w* \w side|strong="H3409"\w* \w of|strong="H1004"\w* \w his|strong="H5414"\w* \w altar|strong="H4196"\w*. +\v 15 \w King|strong="H4428"\w* Ahaz \w commanded|strong="H6680"\w* Urijah \w the|strong="H3605"\w* \w priest|strong="H3548"\w*, saying, “\w On|strong="H5921"\w* \w the|strong="H3605"\w* \w great|strong="H1419"\w* \w altar|strong="H4196"\w* \w burn|strong="H6999"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, \w the|strong="H3605"\w* \w evening|strong="H6153"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w* \w and|strong="H4428"\w* \w his|strong="H3605"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w with|strong="H5921"\w* \w the|strong="H3605"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* land, \w their|strong="H3605"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w and|strong="H4428"\w* \w their|strong="H3605"\w* \w drink|strong="H5262"\w* \w offerings|strong="H5930"\w*; \w and|strong="H4428"\w* \w sprinkle|strong="H2236"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w blood|strong="H1818"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w blood|strong="H1818"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w sacrifice|strong="H2077"\w*; \w but|strong="H1961"\w* \w the|strong="H3605"\w* \w bronze|strong="H5178"\w* \w altar|strong="H4196"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w for|strong="H5921"\w* \w me|strong="H5921"\w* \w to|strong="H1961"\w* \w inquire|strong="H1239"\w* \w by|strong="H5921"\w*.” +\v 16 Urijah \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w did|strong="H6213"\w* \w so|strong="H6213"\w*, according \w to|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w King|strong="H4428"\w* Ahaz \w commanded|strong="H6680"\w*. +\p +\v 17 \w King|strong="H4428"\w* Ahaz \w cut|strong="H7112"\w* \w off|strong="H7112"\w* \w the|strong="H5921"\w* panels \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w bases|strong="H4350"\w*, \w and|strong="H4428"\w* \w removed|strong="H5493"\w* \w the|strong="H5921"\w* basin \w from|strong="H5493"\w* \w off|strong="H7112"\w* \w them|strong="H5414"\w*, \w and|strong="H4428"\w* \w took|strong="H5493"\w* \w down|strong="H3381"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w from|strong="H5493"\w* \w off|strong="H7112"\w* \w the|strong="H5921"\w* \w bronze|strong="H5178"\w* \w oxen|strong="H1241"\w* \w that|strong="H5414"\w* \w were|strong="H1241"\w* \w under|strong="H8478"\w* \w it|strong="H5414"\w*, \w and|strong="H4428"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w pavement|strong="H4837"\w* \w of|strong="H4428"\w* stone. +\v 18 \w He|strong="H3068"\w* \w removed|strong="H5437"\w* \w the|strong="H6440"\w* covered \w way|strong="H6440"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* \w Sabbath|strong="H7676"\w* \w that|strong="H3068"\w* \w they|strong="H3068"\w* \w had|strong="H3068"\w* \w built|strong="H1129"\w* \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w outer|strong="H2435"\w* \w entrance|strong="H3996"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w because|strong="H6440"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria. +\v 19 \w Now|strong="H3117"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* Ahaz \w which|strong="H1992"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*? +\v 20 Ahaz \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* fathers, \w and|strong="H1121"\w* \w was|strong="H1732"\w* \w buried|strong="H6912"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* fathers \w in|strong="H6912"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*; \w and|strong="H1121"\w* \w Hezekiah|strong="H2396"\w* \w his|strong="H1732"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H6912"\w* \w his|strong="H1732"\w* \w place|strong="H8478"\w*. +\c 17 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H5921"\w* \w twelfth|strong="H8147"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* Ahaz \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w Hoshea|strong="H1954"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Elah \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w* \w in|strong="H8141"\w* \w Samaria|strong="H8111"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w for|strong="H5921"\w* \w nine|strong="H8672"\w* \w years|strong="H8141"\w*. +\v 2 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w yet|strong="H7535"\w* \w not|strong="H3808"\w* \w as|strong="H1961"\w* \w the|strong="H6440"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w who|strong="H3068"\w* \w were|strong="H3478"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 3 \w Shalmaneser|strong="H8022"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w came|strong="H1961"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*; \w and|strong="H7725"\w* \w Hoshea|strong="H1954"\w* \w became|strong="H1961"\w* \w his|strong="H7725"\w* \w servant|strong="H5650"\w*, \w and|strong="H7725"\w* \w brought|strong="H5927"\w* \w him|strong="H5921"\w* \w tribute|strong="H4503"\w*. +\v 4 \w The|strong="H7971"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w discovered|strong="H4672"\w* \w a|strong="H3068"\w* \w conspiracy|strong="H7195"\w* \w in|strong="H8141"\w* \w Hoshea|strong="H1954"\w*; \w for|strong="H7971"\w* \w he|strong="H1004"\w* \w had|strong="H4428"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H7971"\w* \w So|strong="H7971"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H7971"\w* \w offered|strong="H5927"\w* \w no|strong="H3808"\w* \w tribute|strong="H4503"\w* \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria, \w as|strong="H5927"\w* \w he|strong="H1004"\w* \w had|strong="H4428"\w* done \w year|strong="H8141"\w* \w by|strong="H8141"\w* \w year|strong="H8141"\w*. \w Therefore|strong="H7971"\w* \w the|strong="H7971"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria seized \w him|strong="H7971"\w*, \w and|strong="H7971"\w* bound \w him|strong="H7971"\w* \w in|strong="H8141"\w* \w prison|strong="H1004"\w*. +\v 5 \w Then|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land, \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w Samaria|strong="H8111"\w*, \w and|strong="H4428"\w* \w besieged|strong="H6696"\w* \w it|strong="H5921"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w*. +\v 6 \w In|strong="H3427"\w* \w the|strong="H3920"\w* \w ninth|strong="H8671"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w Hoshea|strong="H1954"\w* \w the|strong="H3920"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w took|strong="H3920"\w* \w Samaria|strong="H8111"\w* \w and|strong="H3478"\w* \w carried|strong="H1540"\w* \w Israel|strong="H3478"\w* \w away|strong="H1540"\w* \w to|strong="H3478"\w* Assyria, \w and|strong="H3478"\w* \w placed|strong="H3427"\w* \w them|strong="H1540"\w* \w in|strong="H3427"\w* \w Halah|strong="H2477"\w*, \w and|strong="H3478"\w* \w on|strong="H3427"\w* \w the|strong="H3920"\w* \w Habor|strong="H2249"\w*, \w the|strong="H3920"\w* \w river|strong="H5104"\w* \w of|strong="H4428"\w* \w Gozan|strong="H1470"\w*, \w and|strong="H3478"\w* \w in|strong="H3427"\w* \w the|strong="H3920"\w* \w cities|strong="H5892"\w* \w of|strong="H4428"\w* \w the|strong="H3920"\w* \w Medes|strong="H4074"\w*. +\p +\v 7 \w It|strong="H3588"\w* \w was|strong="H3068"\w* \w so|strong="H1961"\w* \w because|strong="H3588"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w had|strong="H3068"\w* \w sinned|strong="H2398"\w* \w against|strong="H5927"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*, \w who|strong="H3068"\w* \w brought|strong="H5927"\w* \w them|strong="H3027"\w* \w up|strong="H5927"\w* \w out|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w* \w from|strong="H5927"\w* \w under|strong="H8478"\w* \w the|strong="H3588"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w Pharaoh|strong="H6547"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H1121"\w* \w had|strong="H3068"\w* \w feared|strong="H3372"\w* other gods, +\v 8 \w and|strong="H1121"\w* \w walked|strong="H3212"\w* \w in|strong="H3478"\w* \w the|strong="H6440"\w* \w statutes|strong="H2708"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w nations|strong="H1471"\w* \w whom|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w cast|strong="H3068"\w* \w out|strong="H3423"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w kings|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w which|strong="H3068"\w* \w they|strong="H3068"\w* \w made|strong="H6213"\w*. +\v 9 \w The|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w secretly|strong="H2644"\w* \w did|strong="H3478"\w* \w things|strong="H1697"\w* \w that|strong="H3605"\w* \w were|strong="H3478"\w* \w not|strong="H3808"\w* \w right|strong="H3651"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3605"\w* \w God|strong="H3068"\w*; \w and|strong="H1121"\w* \w they|strong="H3651"\w* \w built|strong="H1129"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w for|strong="H5704"\w* \w themselves|strong="H1129"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w cities|strong="H5892"\w*, \w from|strong="H5921"\w* \w the|strong="H3605"\w* \w tower|strong="H4026"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w watchmen|strong="H5341"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w fortified|strong="H4013"\w* \w city|strong="H5892"\w*; +\v 10 \w and|strong="H6086"\w* \w they|strong="H5921"\w* \w set|strong="H5324"\w* \w up|strong="H5324"\w* \w for|strong="H5921"\w* \w themselves|strong="H5921"\w* \w pillars|strong="H4676"\w* \w and|strong="H6086"\w* Asherah poles \w on|strong="H5921"\w* \w every|strong="H3605"\w* \w high|strong="H1364"\w* \w hill|strong="H1389"\w* \w and|strong="H6086"\w* \w under|strong="H8478"\w* \w every|strong="H3605"\w* \w green|strong="H7488"\w* \w tree|strong="H6086"\w*; +\v 11 \w and|strong="H3068"\w* \w there|strong="H8033"\w* \w they|strong="H8033"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*, \w as|strong="H1697"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w whom|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w* \w did|strong="H6213"\w*; \w and|strong="H3068"\w* \w they|strong="H8033"\w* \w did|strong="H6213"\w* \w wicked|strong="H7451"\w* \w things|strong="H1697"\w* \w to|strong="H3068"\w* \w provoke|strong="H3707"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3068"\w* \w anger|strong="H3707"\w*; +\v 12 \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w served|strong="H5647"\w* \w idols|strong="H1544"\w*, \w of|strong="H3068"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w them|strong="H6213"\w*, “\w You|strong="H6213"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w do|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*.” +\v 13 \w Yet|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w testified|strong="H5749"\w* \w to|strong="H7725"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w to|strong="H7725"\w* \w Judah|strong="H3063"\w*, \w by|strong="H3027"\w* \w every|strong="H3605"\w* \w prophet|strong="H5030"\w* \w and|strong="H3063"\w* \w every|strong="H3605"\w* \w seer|strong="H2374"\w*, saying, “\w Turn|strong="H7725"\w* \w from|strong="H7725"\w* \w your|strong="H3068"\w* \w evil|strong="H7451"\w* \w ways|strong="H1870"\w*, \w and|strong="H3063"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w commandments|strong="H4687"\w* \w and|strong="H3063"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w*, \w according|strong="H3027"\w* \w to|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w which|strong="H3068"\w* \w I|strong="H6680"\w* \w commanded|strong="H6680"\w* \w your|strong="H3068"\w* fathers, \w and|strong="H3063"\w* \w which|strong="H3068"\w* \w I|strong="H6680"\w* \w sent|strong="H7971"\w* \w to|strong="H7725"\w* \w you|strong="H6680"\w* \w by|strong="H3027"\w* \w my|strong="H8104"\w* \w servants|strong="H5650"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w*.” +\v 14 Notwithstanding, \w they|strong="H3068"\w* \w would|strong="H3068"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w*, \w but|strong="H3808"\w* \w hardened|strong="H7185"\w* \w their|strong="H3068"\w* \w neck|strong="H6203"\w* \w like|strong="H3808"\w* \w the|strong="H8085"\w* \w neck|strong="H6203"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* fathers \w who|strong="H3068"\w* didn’t believe \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 15 \w They|strong="H3068"\w* \w rejected|strong="H3988"\w* \w his|strong="H3068"\w* \w statutes|strong="H2706"\w* \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w covenant|strong="H1285"\w* \w that|strong="H3068"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w with|strong="H3068"\w* \w their|strong="H3068"\w* fathers, \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w testimonies|strong="H5715"\w* \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w testified|strong="H5749"\w* \w to|strong="H3068"\w* \w them|strong="H6213"\w*; \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w followed|strong="H3212"\w* \w vanity|strong="H1892"\w*, \w and|strong="H3068"\w* \w became|strong="H1891"\w* \w vain|strong="H1892"\w*, \w and|strong="H3068"\w* \w followed|strong="H3212"\w* \w the|strong="H6213"\w* \w nations|strong="H1471"\w* \w that|strong="H3068"\w* \w were|strong="H1471"\w* \w around|strong="H5439"\w* \w them|strong="H6213"\w*, \w concerning|strong="H3068"\w* whom \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w commanded|strong="H6680"\w* \w them|strong="H6213"\w* \w that|strong="H3068"\w* \w they|strong="H3068"\w* \w should|strong="H3068"\w* \w not|strong="H1115"\w* \w do|strong="H6213"\w* \w like|strong="H6213"\w* \w them|strong="H6213"\w*. +\v 16 \w They|strong="H3068"\w* \w abandoned|strong="H5800"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w commandments|strong="H4687"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3605"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w made|strong="H6213"\w* \w molten|strong="H4541"\w* \w images|strong="H4541"\w* \w for|strong="H6213"\w* \w themselves|strong="H7812"\w*, \w even|strong="H6213"\w* \w two|strong="H8147"\w* \w calves|strong="H5695"\w*, \w and|strong="H3068"\w* \w made|strong="H6213"\w* \w an|strong="H6213"\w* Asherah, \w and|strong="H3068"\w* \w worshiped|strong="H7812"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w and|strong="H3068"\w* \w served|strong="H5647"\w* \w Baal|strong="H1168"\w*. +\v 17 \w They|strong="H3068"\w* \w caused|strong="H5674"\w* \w their|strong="H3068"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w their|strong="H3068"\w* \w daughters|strong="H1323"\w* \w to|strong="H3068"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H6213"\w* fire, \w used|strong="H6213"\w* \w divination|strong="H7081"\w* \w and|strong="H1121"\w* \w enchantments|strong="H5172"\w*, \w and|strong="H1121"\w* \w sold|strong="H4376"\w* \w themselves|strong="H6213"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w to|strong="H3068"\w* \w provoke|strong="H3707"\w* \w him|strong="H6213"\w* \w to|strong="H3068"\w* \w anger|strong="H3707"\w*. +\v 18 \w Therefore|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w very|strong="H3966"\w* angry \w with|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3063"\w* \w removed|strong="H5493"\w* \w them|strong="H5921"\w* \w out|strong="H5921"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w sight|strong="H6440"\w*. \w There|strong="H3068"\w* \w was|strong="H3068"\w* \w none|strong="H3808"\w* \w left|strong="H7604"\w* \w but|strong="H7535"\w* \w the|strong="H6440"\w* \w tribe|strong="H7626"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w* \w only|strong="H7535"\w*. +\p +\v 19 \w Also|strong="H1571"\w* \w Judah|strong="H3063"\w* didn’t \w keep|strong="H8104"\w* \w the|strong="H6213"\w* \w commandments|strong="H4687"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*, \w but|strong="H3808"\w* \w walked|strong="H3212"\w* \w in|strong="H3478"\w* \w the|strong="H6213"\w* \w statutes|strong="H2708"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w which|strong="H3068"\w* \w they|strong="H3068"\w* \w made|strong="H6213"\w*. +\v 20 \w Yahweh|strong="H3068"\w* \w rejected|strong="H3988"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w offspring|strong="H2233"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w afflicted|strong="H6031"\w* \w them|strong="H5414"\w*, \w and|strong="H3478"\w* \w delivered|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H3605"\w* \w hands|strong="H3027"\w* \w of|strong="H3068"\w* raiders, \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w had|strong="H3068"\w* \w cast|strong="H7993"\w* \w them|strong="H5414"\w* \w out|strong="H7993"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w sight|strong="H6440"\w*. +\v 21 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w tore|strong="H7167"\w* \w Israel|strong="H3478"\w* \w from|strong="H5921"\w* \w David|strong="H1732"\w*’s \w house|strong="H1004"\w*; \w and|strong="H1121"\w* \w they|strong="H3588"\w* \w made|strong="H4427"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w* \w king|strong="H4427"\w*; \w and|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w drove|strong="H5077"\w* \w Israel|strong="H3478"\w* \w from|strong="H5921"\w* following \w Yahweh|strong="H3068"\w*, \w and|strong="H1121"\w* \w made|strong="H4427"\w* \w them|strong="H5921"\w* \w sin|strong="H2398"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w sin|strong="H2398"\w*. +\v 22 \w The|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w walked|strong="H3212"\w* \w in|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w sins|strong="H2403"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w which|strong="H3478"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w*; \w they|strong="H3808"\w* didn’t \w depart|strong="H5493"\w* \w from|strong="H4480"\w* \w them|strong="H6213"\w* +\v 23 \w until|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w removed|strong="H5493"\w* \w Israel|strong="H3478"\w* \w out|strong="H5921"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w sight|strong="H6440"\w*, \w as|strong="H5704"\w* \w he|strong="H3117"\w* \w said|strong="H1696"\w* \w by|strong="H3027"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w*. \w So|strong="H2088"\w* \w Israel|strong="H3478"\w* \w was|strong="H3068"\w* \w carried|strong="H1540"\w* \w away|strong="H5493"\w* \w out|strong="H5921"\w* \w of|strong="H3068"\w* \w their|strong="H3605"\w* \w own|strong="H3027"\w* \w land|strong="H6440"\w* \w to|strong="H1696"\w* Assyria \w to|strong="H1696"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\p +\v 24 \w The|strong="H8478"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Assyria \w brought|strong="H3478"\w* \w people|strong="H1121"\w* \w from|strong="H3478"\w* Babylon, \w from|strong="H3478"\w* \w Cuthah|strong="H3575"\w*, \w from|strong="H3478"\w* \w Avva|strong="H5755"\w*, \w and|strong="H1121"\w* \w from|strong="H3478"\w* \w Hamath|strong="H2574"\w* \w and|strong="H1121"\w* \w Sepharvaim|strong="H5617"\w*, \w and|strong="H1121"\w* \w placed|strong="H3427"\w* \w them|strong="H3423"\w* \w in|strong="H3427"\w* \w the|strong="H8478"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w Samaria|strong="H8111"\w* \w instead|strong="H8478"\w* \w of|strong="H1121"\w* \w the|strong="H8478"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w and|strong="H1121"\w* \w they|strong="H3478"\w* \w possessed|strong="H3423"\w* \w Samaria|strong="H8111"\w* \w and|strong="H1121"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w its|strong="H8478"\w* \w cities|strong="H5892"\w*. +\v 25 \w So|strong="H7971"\w* \w it|strong="H8033"\w* \w was|strong="H3068"\w*, \w at|strong="H3427"\w* \w the|strong="H3068"\w* \w beginning|strong="H8462"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w dwelling|strong="H3427"\w* \w there|strong="H8033"\w*, \w that|strong="H3068"\w* \w they|strong="H8033"\w* didn’t \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w*. \w Therefore|strong="H7971"\w* \w Yahweh|strong="H3068"\w* \w sent|strong="H7971"\w* lions \w among|strong="H3427"\w* \w them|strong="H7971"\w*, \w which|strong="H3068"\w* \w killed|strong="H2026"\w* \w some|strong="H8033"\w* \w of|strong="H3068"\w* \w them|strong="H7971"\w*. +\v 26 \w Therefore|strong="H7971"\w* \w they|strong="H3808"\w* spoke \w to|strong="H4191"\w* \w the|strong="H3045"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria, saying, “\w The|strong="H3045"\w* \w nations|strong="H1471"\w* \w which|strong="H1471"\w* \w you|strong="H7971"\w* \w have|strong="H3045"\w* \w carried|strong="H1540"\w* \w away|strong="H7971"\w* \w and|strong="H7971"\w* \w placed|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3045"\w* \w cities|strong="H5892"\w* \w of|strong="H4428"\w* \w Samaria|strong="H8111"\w* don’t \w know|strong="H3045"\w* \w the|strong="H3045"\w* \w law|strong="H4941"\w* \w of|strong="H4428"\w* \w the|strong="H3045"\w* \w god|strong="H3808"\w* \w of|strong="H4428"\w* \w the|strong="H3045"\w* land. \w Therefore|strong="H7971"\w* \w he|strong="H3808"\w* \w has|strong="H4428"\w* \w sent|strong="H7971"\w* lions \w among|strong="H3427"\w* \w them|strong="H7971"\w*; \w and|strong="H7971"\w* \w behold|strong="H2009"\w*, \w they|strong="H3808"\w* \w kill|strong="H4191"\w* \w them|strong="H7971"\w*, because \w they|strong="H3808"\w* don’t \w know|strong="H3045"\w* \w the|strong="H3045"\w* \w law|strong="H4941"\w* \w of|strong="H4428"\w* \w the|strong="H3045"\w* \w god|strong="H3808"\w* \w of|strong="H4428"\w* \w the|strong="H3045"\w* land.” +\p +\v 27 \w Then|strong="H4428"\w* \w the|strong="H6680"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w commanded|strong="H6680"\w*, saying, “\w Carry|strong="H3212"\w* \w there|strong="H8033"\w* \w one|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H6680"\w* \w priests|strong="H3548"\w* whom \w you|strong="H6680"\w* \w brought|strong="H3212"\w* \w from|strong="H1540"\w* \w there|strong="H8033"\w*; \w and|strong="H4428"\w* \w let|strong="H1540"\w* \w him|strong="H6680"\w*\f + \fr 17:27 \ft Hebrew: \fq them\f* \w go|strong="H3212"\w* \w and|strong="H4428"\w* \w dwell|strong="H3427"\w* \w there|strong="H8033"\w*, \w and|strong="H4428"\w* \w let|strong="H1540"\w* \w him|strong="H6680"\w* \w teach|strong="H3384"\w* \w them|strong="H6680"\w* \w the|strong="H6680"\w* \w law|strong="H4941"\w* \w of|strong="H4428"\w* \w the|strong="H6680"\w* god \w of|strong="H4428"\w* \w the|strong="H6680"\w* land.” +\p +\v 28 \w So|strong="H1961"\w* \w one|strong="H1961"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w priests|strong="H3548"\w* whom \w they|strong="H3068"\w* \w had|strong="H3068"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w from|strong="H1540"\w* \w Samaria|strong="H8111"\w* \w came|strong="H1961"\w* \w and|strong="H3068"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Bethel|strong="H1008"\w*, \w and|strong="H3068"\w* \w taught|strong="H3384"\w* \w them|strong="H1540"\w* how \w they|strong="H3068"\w* \w should|strong="H3068"\w* \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 29 However \w every|strong="H6213"\w* \w nation|strong="H1471"\w* \w made|strong="H6213"\w* gods \w of|strong="H1004"\w* \w their|strong="H1992"\w* \w own|strong="H1961"\w*, \w and|strong="H1004"\w* \w put|strong="H3240"\w* \w them|strong="H1992"\w* \w in|strong="H3427"\w* \w the|strong="H6213"\w* \w houses|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H6213"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w which|strong="H1471"\w* \w the|strong="H6213"\w* \w Samaritans|strong="H8118"\w* \w had|strong="H1961"\w* \w made|strong="H6213"\w*, \w every|strong="H6213"\w* \w nation|strong="H1471"\w* \w in|strong="H3427"\w* \w their|strong="H1992"\w* \w cities|strong="H5892"\w* \w in|strong="H3427"\w* \w which|strong="H1471"\w* \w they|strong="H1992"\w* \w lived|strong="H3427"\w*. +\v 30 \w The|strong="H6213"\w* \w men|strong="H6213"\w* \w of|strong="H6213"\w* Babylon \w made|strong="H6213"\w* Succoth Benoth, \w and|strong="H6213"\w* \w the|strong="H6213"\w* \w men|strong="H6213"\w* \w of|strong="H6213"\w* \w Cuth|strong="H3575"\w* \w made|strong="H6213"\w* \w Nergal|strong="H5370"\w*, \w and|strong="H6213"\w* \w the|strong="H6213"\w* \w men|strong="H6213"\w* \w of|strong="H6213"\w* \w Hamath|strong="H2574"\w* \w made|strong="H6213"\w* Ashima, +\v 31 \w and|strong="H1121"\w* \w the|strong="H6213"\w* \w Avvites|strong="H5757"\w* \w made|strong="H6213"\w* \w Nibhaz|strong="H5026"\w* \w and|strong="H1121"\w* \w Tartak|strong="H8662"\w*; \w and|strong="H1121"\w* \w the|strong="H6213"\w* \w Sepharvites|strong="H5616"\w* \w burned|strong="H8313"\w* \w their|strong="H8313"\w* \w children|strong="H1121"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* fire \w to|strong="H6213"\w* Adrammelech \w and|strong="H1121"\w* \w Anammelech|strong="H6048"\w*, \w the|strong="H6213"\w* gods \w of|strong="H1121"\w* \w Sepharvaim|strong="H5617"\w*. +\v 32 \w So|strong="H6213"\w* \w they|strong="H1992"\w* \w feared|strong="H3372"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w also|strong="H3068"\w* \w made|strong="H6213"\w* \w from|strong="H3068"\w* \w among|strong="H7098"\w* \w themselves|strong="H1992"\w* \w priests|strong="H3548"\w* \w of|strong="H1004"\w* \w the|strong="H6213"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w for|strong="H6213"\w* \w themselves|strong="H1992"\w*, \w who|strong="H3068"\w* \w sacrificed|strong="H6213"\w* \w for|strong="H6213"\w* \w them|strong="H1992"\w* \w in|strong="H3068"\w* \w the|strong="H6213"\w* \w houses|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H6213"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*. +\v 33 \w They|strong="H8033"\w* \w feared|strong="H3372"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w also|strong="H3068"\w* \w served|strong="H5647"\w* \w their|strong="H3068"\w* \w own|strong="H1961"\w* gods, \w after|strong="H1961"\w* \w the|strong="H5647"\w* ways \w of|strong="H3068"\w* \w the|strong="H5647"\w* \w nations|strong="H1471"\w* \w from|strong="H1540"\w* \w among|strong="H8033"\w* whom \w they|strong="H8033"\w* \w had|strong="H3068"\w* \w been|strong="H1961"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w*. +\v 34 \w To|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w* \w they|strong="H1992"\w* \w do|strong="H6213"\w* \w what|strong="H2088"\w* \w they|strong="H1992"\w* \w did|strong="H6213"\w* \w before|strong="H5704"\w*. \w They|strong="H1992"\w* don’t \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H1121"\w* \w they|strong="H1992"\w* \w do|strong="H6213"\w* \w not|strong="H6213"\w* \w follow|strong="H6213"\w* \w the|strong="H6213"\w* \w statutes|strong="H2708"\w*, \w or|strong="H5704"\w* \w the|strong="H6213"\w* \w ordinances|strong="H4941"\w*, \w or|strong="H5704"\w* \w the|strong="H6213"\w* \w law|strong="H8451"\w*, \w or|strong="H5704"\w* \w the|strong="H6213"\w* \w commandment|strong="H4687"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w the|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Jacob|strong="H3290"\w*, \w whom|strong="H1992"\w* \w he|strong="H3117"\w* \w named|strong="H8034"\w* \w Israel|strong="H3478"\w*; +\v 35 \w with|strong="H3068"\w* whom \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w and|strong="H3068"\w* \w commanded|strong="H6680"\w* \w them|strong="H6680"\w*, saying, “\w You|strong="H6680"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w fear|strong="H3372"\w* other gods, \w nor|strong="H3808"\w* \w bow|strong="H7812"\w* \w yourselves|strong="H3068"\w* \w to|strong="H3068"\w* \w them|strong="H6680"\w*, \w nor|strong="H3808"\w* \w serve|strong="H5647"\w* \w them|strong="H6680"\w*, \w nor|strong="H3808"\w* \w sacrifice|strong="H2076"\w* \w to|strong="H3068"\w* \w them|strong="H6680"\w*; +\v 36 \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H3068"\w* \w brought|strong="H5927"\w* \w you|strong="H3588"\w* \w up|strong="H5927"\w* \w out|strong="H5186"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w* \w with|strong="H3068"\w* \w great|strong="H1419"\w* \w power|strong="H3581"\w* \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w an|strong="H3588"\w* \w outstretched|strong="H5186"\w* \w arm|strong="H2220"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w bow|strong="H7812"\w* \w yourselves|strong="H3068"\w* \w to|strong="H3068"\w* \w him|strong="H5186"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w sacrifice|strong="H2076"\w* \w to|strong="H3068"\w* \w him|strong="H5186"\w*. +\v 37 \w The|strong="H3605"\w* \w statutes|strong="H2706"\w* \w and|strong="H3117"\w* \w the|strong="H3605"\w* \w ordinances|strong="H4941"\w*, \w and|strong="H3117"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w and|strong="H3117"\w* \w the|strong="H3605"\w* \w commandment|strong="H4687"\w* \w which|strong="H3117"\w* \w he|strong="H3117"\w* \w wrote|strong="H3789"\w* \w for|strong="H6213"\w* \w you|strong="H3605"\w*, \w you|strong="H3605"\w* \w shall|strong="H3117"\w* \w observe|strong="H8104"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w forever|strong="H3605"\w* \w more|strong="H3808"\w*. \w You|strong="H3605"\w* \w shall|strong="H3117"\w* \w not|strong="H3808"\w* \w fear|strong="H3372"\w* \w other|strong="H3605"\w* gods. +\v 38 \w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w forget|strong="H7911"\w* \w the|strong="H3772"\w* \w covenant|strong="H1285"\w* \w that|strong="H3808"\w* \w I|strong="H3808"\w* \w have|strong="H3808"\w* \w made|strong="H3772"\w* \w with|strong="H1285"\w* \w you|strong="H3808"\w*. \w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w fear|strong="H3372"\w* other gods. +\v 39 \w But|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w he|strong="H1931"\w* \w will|strong="H3068"\w* \w deliver|strong="H5337"\w* \w you|strong="H3588"\w* \w out|strong="H5337"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w enemies|strong="H3027"\w*.” +\p +\v 40 \w However|strong="H8085"\w* \w they|strong="H1992"\w* didn’t \w listen|strong="H8085"\w*, \w but|strong="H3588"\w* \w they|strong="H1992"\w* \w did|strong="H6213"\w* \w what|strong="H6213"\w* \w they|strong="H1992"\w* \w did|strong="H6213"\w* \w before|strong="H7223"\w*. +\v 41 \w So|strong="H6213"\w* \w these|strong="H2088"\w* \w nations|strong="H1471"\w* \w feared|strong="H3372"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H1121"\w* \w also|strong="H1571"\w* \w served|strong="H5647"\w* \w their|strong="H3068"\w* \w engraved|strong="H6456"\w* \w images|strong="H6456"\w*. \w Their|strong="H3068"\w* \w children|strong="H1121"\w* \w did|strong="H6213"\w* \w likewise|strong="H1571"\w*, \w and|strong="H1121"\w* \w so|strong="H6213"\w* \w did|strong="H6213"\w* \w their|strong="H3068"\w* \w children|strong="H1121"\w*’s \w children|strong="H1121"\w*. \w They|strong="H1992"\w* \w do|strong="H6213"\w* \w as|strong="H5704"\w* \w their|strong="H3068"\w* fathers \w did|strong="H6213"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\c 18 +\p +\v 1 \w Now|strong="H1961"\w* \w in|strong="H8141"\w* \w the|strong="H1961"\w* \w third|strong="H7969"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Hoshea|strong="H1954"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Elah \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w Hezekiah|strong="H2396"\w* \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahaz \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w began|strong="H3063"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w*. +\v 2 \w He|strong="H2568"\w* \w was|strong="H8034"\w* \w twenty-five|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1961"\w* \w he|strong="H2568"\w* \w began|strong="H1961"\w* \w to|strong="H1961"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H2568"\w* \w reigned|strong="H4427"\w* \w twenty-nine|strong="H6242"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H1961"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* Abi \w the|strong="H1961"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Zechariah|strong="H2148"\w*. +\v 3 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w right|strong="H3477"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*, according \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w David|strong="H1732"\w* \w his|strong="H3605"\w* father \w had|strong="H3068"\w* \w done|strong="H6213"\w*. +\v 4 \w He|strong="H1931"\w* \w removed|strong="H5493"\w* \w the|strong="H3588"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*, \w broke|strong="H7665"\w* \w the|strong="H3588"\w* \w pillars|strong="H4676"\w*, \w and|strong="H1121"\w* \w cut|strong="H3772"\w* \w down|strong="H3772"\w* \w the|strong="H3588"\w* Asherah. \w He|strong="H1931"\w* \w also|strong="H6213"\w* \w broke|strong="H7665"\w* \w in|strong="H3478"\w* \w pieces|strong="H7665"\w* \w the|strong="H3588"\w* \w bronze|strong="H5178"\w* \w serpent|strong="H5175"\w* \w that|strong="H3588"\w* \w Moses|strong="H4872"\w* \w had|strong="H1961"\w* \w made|strong="H6213"\w*, \w because|strong="H3588"\w* \w in|strong="H3478"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H5704"\w* \w it|strong="H1931"\w*; \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w called|strong="H7121"\w* \w it|strong="H1931"\w* \w Nehushtan|strong="H5180"\w*. +\v 5 \w He|strong="H3068"\w* trusted \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w so|strong="H1961"\w* \w that|strong="H3605"\w* \w after|strong="H1961"\w* \w him|strong="H6440"\w* \w was|strong="H3068"\w* \w no|strong="H3808"\w* \w one|strong="H3605"\w* \w like|strong="H3644"\w* \w him|strong="H6440"\w* \w among|strong="H3808"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w nor|strong="H3808"\w* \w among|strong="H3808"\w* \w them|strong="H6440"\w* \w that|strong="H3605"\w* \w were|strong="H3478"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 6 \w For|strong="H3068"\w* \w he|strong="H3068"\w* \w joined|strong="H1692"\w* \w with|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w He|strong="H3068"\w* didn’t \w depart|strong="H5493"\w* \w from|strong="H5493"\w* following \w him|strong="H6680"\w*, \w but|strong="H3808"\w* \w kept|strong="H8104"\w* \w his|strong="H8104"\w* \w commandments|strong="H4687"\w*, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w Moses|strong="H4872"\w*. +\v 7 \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*. \w Wherever|strong="H3605"\w* \w he|strong="H3068"\w* \w went|strong="H3318"\w*, \w he|strong="H3068"\w* \w prospered|strong="H7919"\w*. \w He|strong="H3068"\w* \w rebelled|strong="H4775"\w* \w against|strong="H5973"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria, \w and|strong="H3068"\w* didn’t \w serve|strong="H5647"\w* \w him|strong="H5973"\w*. +\v 8 \w He|strong="H1931"\w* \w struck|strong="H5221"\w* \w the|strong="H5221"\w* \w Philistines|strong="H6430"\w* \w to|strong="H5704"\w* \w Gaza|strong="H5804"\w* \w and|strong="H5892"\w* \w its|strong="H5892"\w* \w borders|strong="H1366"\w*, \w from|strong="H5704"\w* \w the|strong="H5221"\w* \w tower|strong="H4026"\w* \w of|strong="H5892"\w* \w the|strong="H5221"\w* \w watchmen|strong="H5341"\w* \w to|strong="H5704"\w* \w the|strong="H5221"\w* \w fortified|strong="H4013"\w* \w city|strong="H5892"\w*. +\p +\v 9 \w In|strong="H8141"\w* \w the|strong="H5921"\w* \w fourth|strong="H7243"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w King|strong="H4428"\w* \w Hezekiah|strong="H2396"\w*, \w which|strong="H1931"\w* \w was|strong="H1961"\w* \w the|strong="H5921"\w* \w seventh|strong="H7637"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Hoshea|strong="H1954"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Elah \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w Shalmaneser|strong="H8022"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Assyria \w came|strong="H1961"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w Samaria|strong="H8111"\w* \w and|strong="H1121"\w* \w besieged|strong="H6696"\w* \w it|strong="H1931"\w*. +\v 10 \w At|strong="H3478"\w* \w the|strong="H3920"\w* \w end|strong="H7097"\w* \w of|strong="H4428"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w* \w they|strong="H8141"\w* \w took|strong="H3920"\w* \w it|strong="H1931"\w*. \w In|strong="H8141"\w* \w the|strong="H3920"\w* \w sixth|strong="H8337"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w Hezekiah|strong="H2396"\w*, \w which|strong="H1931"\w* \w was|strong="H3478"\w* \w the|strong="H3920"\w* \w ninth|strong="H8672"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w Hoshea|strong="H1954"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w Samaria|strong="H8111"\w* \w was|strong="H3478"\w* \w taken|strong="H3920"\w*. +\v 11 \w The|strong="H1540"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w carried|strong="H1540"\w* \w Israel|strong="H3478"\w* \w away|strong="H1540"\w* \w to|strong="H3478"\w* Assyria, \w and|strong="H3478"\w* \w put|strong="H5148"\w* \w them|strong="H1540"\w* \w in|strong="H3478"\w* \w Halah|strong="H2477"\w*, \w and|strong="H3478"\w* \w on|strong="H5892"\w* \w the|strong="H1540"\w* \w Habor|strong="H2249"\w*, \w the|strong="H1540"\w* \w river|strong="H5104"\w* \w of|strong="H4428"\w* \w Gozan|strong="H1470"\w*, \w and|strong="H3478"\w* \w in|strong="H3478"\w* \w the|strong="H1540"\w* \w cities|strong="H5892"\w* \w of|strong="H4428"\w* \w the|strong="H1540"\w* \w Medes|strong="H4074"\w*, +\v 12 \w because|strong="H5921"\w* \w they|strong="H3068"\w* didn’t \w obey|strong="H8085"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3605"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w*, \w but|strong="H3808"\w* \w transgressed|strong="H5674"\w* \w his|strong="H3605"\w* \w covenant|strong="H1285"\w*, \w even|strong="H3808"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Moses|strong="H4872"\w* \w the|strong="H3605"\w* \w servant|strong="H5650"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w*, \w and|strong="H4872"\w* \w would|strong="H3068"\w* \w not|strong="H3808"\w* \w hear|strong="H8085"\w* \w it|strong="H5921"\w* \w or|strong="H3808"\w* \w do|strong="H6213"\w* \w it|strong="H5921"\w*. +\p +\v 13 \w Now|strong="H4428"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w fourteenth|strong="H6240"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* \w Hezekiah|strong="H2396"\w*, \w Sennacherib|strong="H5576"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fortified|strong="H1219"\w* \w cities|strong="H5892"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w took|strong="H8610"\w* \w them|strong="H5921"\w*. +\v 14 \w Hezekiah|strong="H2396"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w sent|strong="H7971"\w* \w to|strong="H7725"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w at|strong="H5921"\w* \w Lachish|strong="H3923"\w*, saying, “\w I|strong="H5414"\w* \w have|strong="H3063"\w* \w offended|strong="H2398"\w* \w you|strong="H5414"\w*. \w Withdraw|strong="H7725"\w* \w from|strong="H7725"\w* \w me|strong="H5414"\w*. \w That|strong="H5414"\w* \w which|strong="H2091"\w* \w you|strong="H5414"\w* \w put|strong="H5414"\w* \w on|strong="H5921"\w* \w me|strong="H5414"\w*, \w I|strong="H5414"\w* \w will|strong="H4428"\w* \w bear|strong="H5375"\w*.” \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w appointed|strong="H5414"\w* \w to|strong="H7725"\w* \w Hezekiah|strong="H2396"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w talents|strong="H3603"\w* \w of|strong="H4428"\w* \w silver|strong="H3701"\w* \w and|strong="H3967"\w* \w thirty|strong="H7970"\w* \w talents|strong="H3603"\w*\f + \fr 18:14 \ft A talent is about 30 kilograms or 66 pounds or 965 Troy ounces\f* \w of|strong="H4428"\w* \w gold|strong="H2091"\w*. +\v 15 \w Hezekiah|strong="H2396"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w silver|strong="H3701"\w* \w that|strong="H3605"\w* \w was|strong="H3068"\w* \w found|strong="H4672"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* treasures \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*. +\v 16 \w At|strong="H3068"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w*, \w Hezekiah|strong="H2396"\w* \w cut|strong="H7112"\w* \w off|strong="H7112"\w* \w the|strong="H5414"\w* gold \w from|strong="H3068"\w* \w the|strong="H5414"\w* \w doors|strong="H1817"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1964"\w*, \w and|strong="H3063"\w* \w from|strong="H3068"\w* \w the|strong="H5414"\w* pillars \w which|strong="H1931"\w* \w Hezekiah|strong="H2396"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w had|strong="H3068"\w* \w overlaid|strong="H6823"\w*, \w and|strong="H3063"\w* \w gave|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3068"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria. +\p +\v 17 \w The|strong="H4480"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w sent|strong="H7971"\w* \w Tartan|strong="H8661"\w*, \w Rabsaris|strong="H7249"\w*, \w and|strong="H7971"\w* \w Rabshakeh|strong="H7262"\w* \w from|strong="H4480"\w* \w Lachish|strong="H3923"\w* \w to|strong="H7971"\w* \w King|strong="H4428"\w* \w Hezekiah|strong="H2396"\w* \w with|strong="H3389"\w* \w a|strong="H3068"\w* \w great|strong="H3515"\w* \w army|strong="H2426"\w* \w to|strong="H7971"\w* \w Jerusalem|strong="H3389"\w*. \w They|strong="H3389"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H7971"\w* \w came|strong="H5927"\w* \w to|strong="H7971"\w* \w Jerusalem|strong="H3389"\w*. \w When|strong="H7971"\w* \w they|strong="H3389"\w* \w had|strong="H4428"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w*, \w they|strong="H3389"\w* \w came|strong="H5927"\w* \w and|strong="H7971"\w* \w stood|strong="H5975"\w* \w by|strong="H5975"\w* \w the|strong="H4480"\w* \w conduit|strong="H8585"\w* \w of|strong="H4428"\w* \w the|strong="H4480"\w* \w upper|strong="H5945"\w* \w pool|strong="H1295"\w*, \w which|strong="H7704"\w* \w is|strong="H4428"\w* \w in|strong="H4428"\w* \w the|strong="H4480"\w* \w highway|strong="H4546"\w* \w of|strong="H4428"\w* \w the|strong="H4480"\w* fuller’s \w field|strong="H7704"\w*. +\v 18 \w When|strong="H3318"\w* \w they|strong="H5921"\w* \w had|strong="H4428"\w* \w called|strong="H7121"\w* \w to|strong="H3318"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*, Eliakim \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hilkiah|strong="H2518"\w*, \w who|strong="H1121"\w* \w was|strong="H4428"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w household|strong="H1004"\w*, \w and|strong="H1121"\w* \w Shebnah|strong="H7644"\w* \w the|strong="H5921"\w* \w scribe|strong="H5608"\w*, \w and|strong="H1121"\w* \w Joah|strong="H3098"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Asaph \w the|strong="H5921"\w* \w recorder|strong="H2142"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w them|strong="H5921"\w*. +\v 19 \w Rabshakeh|strong="H7262"\w* said \w to|strong="H4428"\w* \w them|strong="H2088"\w*, “Say \w now|strong="H4994"\w* \w to|strong="H4428"\w* \w Hezekiah|strong="H2396"\w*, ‘\w The|strong="H3541"\w* \w great|strong="H1419"\w* \w king|strong="H4428"\w*, \w the|strong="H3541"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria, \w says|strong="H3541"\w*, “\w What|strong="H4100"\w* confidence \w is|strong="H2088"\w* \w this|strong="H2088"\w* \w in|strong="H4428"\w* \w which|strong="H4100"\w* \w you|strong="H4100"\w* trust? +\v 20 \w You|strong="H3588"\w* \w say|strong="H1697"\w* (\w but|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H1697"\w* \w but|strong="H3588"\w* \w vain|strong="H8193"\w* \w words|strong="H1697"\w*), ‘\w There|strong="H6258"\w* \w is|strong="H4310"\w* \w counsel|strong="H6098"\w* \w and|strong="H1697"\w* \w strength|strong="H1369"\w* \w for|strong="H3588"\w* \w war|strong="H4421"\w*.’ \w Now|strong="H6258"\w* \w on|strong="H5921"\w* \w whom|strong="H4310"\w* \w do|strong="H1697"\w* \w you|strong="H3588"\w* trust, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1697"\w* \w rebelled|strong="H4775"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*? +\v 21 \w Now|strong="H6258"\w*, \w behold|strong="H2009"\w*, \w you|strong="H3605"\w* trust \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w staff|strong="H4938"\w* \w of|strong="H4428"\w* \w this|strong="H2088"\w* \w bruised|strong="H7533"\w* \w reed|strong="H7070"\w*, \w even|strong="H3651"\w* \w in|strong="H5921"\w* \w Egypt|strong="H4714"\w*. \w If|strong="H2009"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w leans|strong="H5564"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*, \w it|strong="H5921"\w* \w will|strong="H4428"\w* \w go|strong="H4428"\w* \w into|strong="H5921"\w* \w his|strong="H3605"\w* \w hand|strong="H3709"\w* \w and|strong="H4428"\w* \w pierce|strong="H5344"\w* \w it|strong="H5921"\w*. \w So|strong="H3651"\w* \w is|strong="H2088"\w* \w Pharaoh|strong="H6547"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w to|strong="H5921"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* trust \w on|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 22 \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* tell \w me|strong="H6440"\w*, ‘\w We|strong="H3588"\w* trust \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*,’ isn’t \w that|strong="H3588"\w* \w he|strong="H1931"\w* whose \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w and|strong="H3063"\w* whose \w altars|strong="H4196"\w* \w Hezekiah|strong="H2396"\w* \w has|strong="H3068"\w* \w taken|strong="H5493"\w* \w away|strong="H5493"\w*, \w and|strong="H3063"\w* \w has|strong="H3068"\w* said \w to|strong="H3068"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w to|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, ‘\w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w worship|strong="H7812"\w* \w before|strong="H6440"\w* \w this|strong="H2088"\w* \w altar|strong="H4196"\w* \w in|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*’? +\v 23 \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w*, \w please|strong="H4994"\w* \w give|strong="H5414"\w* \w pledges|strong="H6148"\w* \w to|strong="H3201"\w* \w my|strong="H5414"\w* \w master|strong="H5414"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria, \w and|strong="H4428"\w* \w I|strong="H5414"\w* \w will|strong="H4428"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* two thousand \w horses|strong="H5483"\w* if \w you|strong="H5414"\w* \w are|strong="H5483"\w* \w able|strong="H3201"\w* \w on|strong="H5921"\w* \w your|strong="H5414"\w* \w part|strong="H5921"\w* \w to|strong="H3201"\w* \w set|strong="H5414"\w* \w riders|strong="H7392"\w* \w on|strong="H5921"\w* \w them|strong="H5414"\w*. +\v 24 How \w then|strong="H7725"\w* \w can|strong="H5650"\w* \w you|strong="H6440"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H6440"\w* \w one|strong="H6996"\w* \w captain|strong="H6346"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w least|strong="H6996"\w* \w of|strong="H6440"\w* \w my|strong="H5921"\w* master’s \w servants|strong="H5650"\w*, \w and|strong="H7725"\w* \w put|strong="H7725"\w* \w your|strong="H5921"\w* trust \w on|strong="H5921"\w* \w Egypt|strong="H4714"\w* \w for|strong="H5921"\w* \w chariots|strong="H7393"\w* \w and|strong="H7725"\w* \w for|strong="H5921"\w* \w horsemen|strong="H6571"\w*? +\v 25 \w Have|strong="H3068"\w* \w I|strong="H5921"\w* \w now|strong="H6258"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w without|strong="H1107"\w* \w Yahweh|strong="H3068"\w* \w against|strong="H5921"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w* \w to|strong="H3068"\w* \w destroy|strong="H7843"\w* \w it|strong="H5921"\w*? \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w me|strong="H5921"\w*, ‘\w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w this|strong="H2088"\w* \w land|strong="H4725"\w*, \w and|strong="H3068"\w* \w destroy|strong="H7843"\w* \w it|strong="H5921"\w*.’”’” +\p +\v 26 \w Then|strong="H1696"\w* Eliakim \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hilkiah|strong="H2518"\w*, \w Shebnah|strong="H7644"\w*, \w and|strong="H1121"\w* \w Joah|strong="H3098"\w*, \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Rabshakeh|strong="H7262"\w*, “\w Please|strong="H4994"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w your|strong="H5921"\w* \w servants|strong="H5650"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* Syrian \w language|strong="H3066"\w*, \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w understand|strong="H8085"\w* \w it|strong="H5921"\w*. Don’t \w speak|strong="H1696"\w* \w with|strong="H5973"\w* \w us|strong="H4994"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* Jews’ \w language|strong="H3066"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w hearing|strong="H8085"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w are|strong="H5971"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wall|strong="H2346"\w*.” +\p +\v 27 \w But|strong="H3808"\w* \w Rabshakeh|strong="H7262"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H5921"\w*, “\w Has|strong="H1697"\w* \w my|strong="H5921"\w* \w master|strong="H3427"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w* \w to|strong="H1696"\w* \w your|strong="H5921"\w* \w master|strong="H3427"\w* \w and|strong="H7971"\w* \w to|strong="H1696"\w* \w you|strong="H7971"\w*, \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w*? Hasn’t \w he|strong="H3808"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w* \w to|strong="H1696"\w* \w the|strong="H5921"\w* men \w who|strong="H3427"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wall|strong="H2346"\w*, \w to|strong="H1696"\w* eat \w their|strong="H5921"\w* \w own|strong="H5973"\w* dung, \w and|strong="H7971"\w* \w to|strong="H1696"\w* \w drink|strong="H8354"\w* \w their|strong="H5921"\w* \w own|strong="H5973"\w* \w urine|strong="H7890"\w* \w with|strong="H5973"\w* \w you|strong="H7971"\w*?” +\p +\v 28 \w Then|strong="H1696"\w* \w Rabshakeh|strong="H7262"\w* \w stood|strong="H5975"\w* \w and|strong="H4428"\w* \w cried|strong="H7121"\w* \w with|strong="H1696"\w* \w a|strong="H3068"\w* \w loud|strong="H1419"\w* \w voice|strong="H6963"\w* \w in|strong="H4428"\w* \w the|strong="H8085"\w* Jews’ \w language|strong="H3066"\w*, \w and|strong="H4428"\w* \w spoke|strong="H1696"\w*, \w saying|strong="H1697"\w*, “\w Hear|strong="H8085"\w* \w the|strong="H8085"\w* \w word|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H8085"\w* \w great|strong="H1419"\w* \w king|strong="H4428"\w*, \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria. +\v 29 \w The|strong="H3588"\w* \w king|strong="H4428"\w* \w says|strong="H3541"\w*, ‘Don’t \w let|strong="H3808"\w* \w Hezekiah|strong="H2396"\w* \w deceive|strong="H5377"\w* \w you|strong="H3588"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H4428"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w deliver|strong="H5337"\w* \w you|strong="H3588"\w* \w out|strong="H5337"\w* \w of|strong="H4428"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w*. +\v 30 Don’t \w let|strong="H5414"\w* \w Hezekiah|strong="H2396"\w* \w make|strong="H5414"\w* \w you|strong="H5414"\w* trust \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, saying, “\w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w surely|strong="H5414"\w* \w deliver|strong="H5337"\w* \w us|strong="H5414"\w*, \w and|strong="H3068"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w given|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria.” +\v 31 Don’t \w listen|strong="H8085"\w* \w to|strong="H3318"\w* \w Hezekiah|strong="H2396"\w*.’ \w For|strong="H3588"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w says|strong="H3541"\w*, ‘\w Make|strong="H6213"\w* \w your|strong="H8085"\w* \w peace|strong="H1293"\w* \w with|strong="H6213"\w* \w me|strong="H6213"\w*, \w and|strong="H4428"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w me|strong="H6213"\w*; \w and|strong="H4428"\w* everyone \w of|strong="H4428"\w* \w you|strong="H3588"\w* eat \w from|strong="H3318"\w* \w his|strong="H8085"\w* own \w vine|strong="H1612"\w*, \w and|strong="H4428"\w* everyone \w from|strong="H3318"\w* \w his|strong="H8085"\w* own \w fig|strong="H8384"\w* \w tree|strong="H8384"\w*, \w and|strong="H4428"\w* everyone \w drink|strong="H8354"\w* \w water|strong="H4325"\w* \w from|strong="H3318"\w* \w his|strong="H8085"\w* own cistern; +\v 32 \w until|strong="H5704"\w* \w I|strong="H3588"\w* \w come|strong="H2421"\w* \w and|strong="H3068"\w* \w take|strong="H3947"\w* \w you|strong="H3588"\w* \w away|strong="H3947"\w* \w to|strong="H5704"\w* \w a|strong="H3068"\w* land \w like|strong="H3808"\w* \w your|strong="H3068"\w* own land, \w a|strong="H3068"\w* land \w of|strong="H3068"\w* \w grain|strong="H1715"\w* \w and|strong="H3068"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w*, \w a|strong="H3068"\w* land \w of|strong="H3068"\w* \w bread|strong="H3899"\w* \w and|strong="H3068"\w* \w vineyards|strong="H3754"\w*, \w a|strong="H3068"\w* land \w of|strong="H3068"\w* \w olive|strong="H2132"\w* \w trees|strong="H2132"\w* \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w honey|strong="H1706"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H3068"\w* \w live|strong="H2421"\w* \w and|strong="H3068"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*. Don’t \w listen|strong="H8085"\w* \w to|strong="H5704"\w* \w Hezekiah|strong="H2396"\w* \w when|strong="H3588"\w* \w he|strong="H3588"\w* persuades \w you|strong="H3588"\w*, saying, “\w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w deliver|strong="H5337"\w* \w us|strong="H3588"\w*.” +\v 33 \w Has|strong="H4428"\w* any \w of|strong="H4428"\w* \w the|strong="H3027"\w* gods \w of|strong="H4428"\w* \w the|strong="H3027"\w* \w nations|strong="H1471"\w* ever \w delivered|strong="H5337"\w* \w his|strong="H3027"\w* land \w out|strong="H5337"\w* \w of|strong="H4428"\w* \w the|strong="H3027"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H3027"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria? +\v 34 \w Where|strong="H3027"\w* \w are|strong="H3027"\w* \w the|strong="H3588"\w* gods \w of|strong="H3027"\w* \w Hamath|strong="H2574"\w* \w and|strong="H3027"\w* \w of|strong="H3027"\w* Arpad? \w Where|strong="H3027"\w* \w are|strong="H3027"\w* \w the|strong="H3588"\w* gods \w of|strong="H3027"\w* \w Sepharvaim|strong="H5617"\w*, \w of|strong="H3027"\w* \w Hena|strong="H2012"\w*, \w and|strong="H3027"\w* \w Ivvah|strong="H5755"\w*? \w Have|strong="H3027"\w* \w they|strong="H3588"\w* \w delivered|strong="H5337"\w* \w Samaria|strong="H8111"\w* \w out|strong="H5337"\w* \w of|strong="H3027"\w* \w my|strong="H5337"\w* \w hand|strong="H3027"\w*? +\v 35 \w Who|strong="H4310"\w* \w are|strong="H3027"\w* \w they|strong="H3588"\w* \w among|strong="H4310"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* gods \w of|strong="H3068"\w* \w the|strong="H3605"\w* countries, \w that|strong="H3588"\w* \w have|strong="H3068"\w* \w delivered|strong="H5337"\w* \w their|strong="H3605"\w* country \w out|strong="H5337"\w* \w of|strong="H3068"\w* \w my|strong="H3605"\w* \w hand|strong="H3027"\w*, \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w should|strong="H3068"\w* \w deliver|strong="H5337"\w* \w Jerusalem|strong="H3389"\w* \w out|strong="H5337"\w* \w of|strong="H3068"\w* \w my|strong="H3605"\w* \w hand|strong="H3027"\w*?’” +\p +\v 36 \w But|strong="H3588"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* stayed \w quiet|strong="H2790"\w*, \w and|strong="H6030"\w* \w answered|strong="H6030"\w* \w him|strong="H1931"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w word|strong="H1697"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w*’s \w commandment|strong="H4687"\w* \w was|strong="H1931"\w*, “Don’t \w answer|strong="H6030"\w* \w him|strong="H1931"\w*.” +\v 37 \w Then|strong="H1121"\w* Eliakim \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hilkiah|strong="H2518"\w*, \w who|strong="H1121"\w* \w was|strong="H1697"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w household|strong="H1004"\w*, \w came|strong="H1697"\w* \w with|strong="H1004"\w* \w Shebna|strong="H7644"\w* \w the|strong="H5921"\w* \w scribe|strong="H5608"\w* \w and|strong="H1121"\w* \w Joah|strong="H3098"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Asaph \w the|strong="H5921"\w* \w recorder|strong="H2142"\w* \w to|strong="H5921"\w* \w Hezekiah|strong="H2396"\w* \w with|strong="H1004"\w* \w their|strong="H5921"\w* clothes \w torn|strong="H7167"\w*, \w and|strong="H1121"\w* \w told|strong="H5046"\w* \w him|strong="H5921"\w* \w Rabshakeh|strong="H7262"\w*’s \w words|strong="H1697"\w*. +\c 19 +\p +\v 1 \w When|strong="H1961"\w* \w King|strong="H4428"\w* \w Hezekiah|strong="H2396"\w* \w heard|strong="H8085"\w* \w it|strong="H1961"\w*, \w he|strong="H3068"\w* \w tore|strong="H7167"\w* \w his|strong="H3068"\w* clothes, \w covered|strong="H3680"\w* \w himself|strong="H3068"\w* \w with|strong="H1004"\w* \w sackcloth|strong="H8242"\w*, \w and|strong="H3068"\w* \w went|strong="H3068"\w* \w into|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 2 \w He|strong="H1004"\w* \w sent|strong="H7971"\w* Eliakim, \w who|strong="H3548"\w* \w was|strong="H1004"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w household|strong="H1004"\w*, \w Shebna|strong="H7644"\w* \w the|strong="H5921"\w* \w scribe|strong="H5608"\w*, \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w elders|strong="H2205"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w*, \w covered|strong="H3680"\w* \w with|strong="H1004"\w* \w sackcloth|strong="H8242"\w*, \w to|strong="H7971"\w* \w Isaiah|strong="H3470"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amoz. +\v 3 \w They|strong="H3588"\w* said \w to|strong="H5704"\w* \w him|strong="H3205"\w*, “\w Hezekiah|strong="H2396"\w* \w says|strong="H3541"\w*, ‘\w Today|strong="H3117"\w* \w is|strong="H2088"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w trouble|strong="H6869"\w*, \w of|strong="H1121"\w* \w rebuke|strong="H8433"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w rejection|strong="H5007"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w have|strong="H1121"\w* \w come|strong="H3205"\w* \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w point|strong="H5704"\w* \w of|strong="H1121"\w* \w birth|strong="H3205"\w*, \w and|strong="H1121"\w* \w there|strong="H2088"\w* \w is|strong="H2088"\w* no \w strength|strong="H3581"\w* \w to|strong="H5704"\w* \w deliver|strong="H6869"\w* \w them|strong="H5704"\w*. +\v 4 \w It|strong="H5375"\w* \w may|strong="H3068"\w* \w be|strong="H1697"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w hear|strong="H8085"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w Rabshakeh|strong="H7262"\w*, whom \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w his|strong="H3605"\w* master \w has|strong="H3068"\w* \w sent|strong="H7971"\w* \w to|strong="H3068"\w* \w defy|strong="H2778"\w* \w the|strong="H3605"\w* \w living|strong="H2416"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w rebuke|strong="H3198"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w heard|strong="H8085"\w*. \w Therefore|strong="H7971"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H3068"\w* \w prayer|strong="H8605"\w* \w for|strong="H1157"\w* \w the|strong="H3605"\w* \w remnant|strong="H7611"\w* \w that|strong="H3605"\w* \w is|strong="H3068"\w* \w left|strong="H4672"\w*.’” +\p +\v 5 \w So|strong="H5650"\w* \w the|strong="H5650"\w* \w servants|strong="H5650"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* \w Hezekiah|strong="H2396"\w* \w came|strong="H5650"\w* \w to|strong="H4428"\w* \w Isaiah|strong="H3470"\w*. +\v 6 \w Isaiah|strong="H3470"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w them|strong="H6440"\w*, “\w Tell|strong="H8085"\w* \w your|strong="H3068"\w* master \w this|strong="H3541"\w*: ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “Don’t \w be|strong="H1697"\w* \w afraid|strong="H3372"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w words|strong="H1697"\w* \w that|strong="H8085"\w* \w you|strong="H6440"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w*, \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w the|strong="H6440"\w* \w servants|strong="H5288"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w have|strong="H3068"\w* \w blasphemed|strong="H1442"\w* \w me|strong="H6440"\w*. +\v 7 \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H2719"\w* \w put|strong="H5414"\w* \w a|strong="H3068"\w* \w spirit|strong="H7307"\w* \w in|strong="H8085"\w* \w him|strong="H5414"\w*, \w and|strong="H7725"\w* \w he|strong="H5414"\w* \w will|strong="H2719"\w* \w hear|strong="H8085"\w* \w news|strong="H8052"\w*, \w and|strong="H7725"\w* \w will|strong="H2719"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H5414"\w* own land. \w I|strong="H2005"\w* \w will|strong="H2719"\w* \w cause|strong="H5414"\w* \w him|strong="H5414"\w* \w to|strong="H7725"\w* \w fall|strong="H5307"\w* \w by|strong="H5414"\w* \w the|strong="H8085"\w* \w sword|strong="H2719"\w* \w in|strong="H8085"\w* \w his|strong="H5414"\w* own land.”’” +\p +\v 8 \w So|strong="H7725"\w* \w Rabshakeh|strong="H7262"\w* \w returned|strong="H7725"\w* \w and|strong="H7725"\w* \w found|strong="H4672"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w warring|strong="H3898"\w* \w against|strong="H5921"\w* \w Libnah|strong="H3841"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H4428"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H4428"\w* \w departed|strong="H5265"\w* \w from|strong="H5265"\w* \w Lachish|strong="H3923"\w*. +\v 9 \w When|strong="H8085"\w* \w he|strong="H7971"\w* \w heard|strong="H8085"\w* \w it|strong="H7725"\w* \w said|strong="H8085"\w* \w of|strong="H4428"\w* \w Tirhakah|strong="H8640"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Ethiopia|strong="H3568"\w*, “\w Behold|strong="H2009"\w*, \w he|strong="H7971"\w* \w has|strong="H4428"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H7725"\w* \w fight|strong="H3898"\w* \w against|strong="H3898"\w* \w you|strong="H7971"\w*,” \w he|strong="H7971"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w Hezekiah|strong="H2396"\w*, saying, +\v 10 “Tell \w Hezekiah|strong="H2396"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w this|strong="H3541"\w*: ‘Don’t \w let|strong="H5414"\w* \w your|strong="H5414"\w* \w God|strong="H5414"\w* \w in|strong="H4428"\w* whom \w you|strong="H5414"\w* trust \w deceive|strong="H5377"\w* \w you|strong="H5414"\w*, saying, \w Jerusalem|strong="H3389"\w* \w will|strong="H4428"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w given|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria. +\v 11 \w Behold|strong="H2009"\w*, \w you|strong="H3605"\w* \w have|strong="H3605"\w* \w heard|strong="H8085"\w* \w what|strong="H6213"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w have|strong="H3605"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w all|strong="H3605"\w* lands, \w by|strong="H3605"\w* \w destroying|strong="H2763"\w* \w them|strong="H6213"\w* \w utterly|strong="H2763"\w*. \w Will|strong="H4428"\w* \w you|strong="H3605"\w* \w be|strong="H4428"\w* \w delivered|strong="H5337"\w*? +\v 12 \w Have|strong="H1121"\w* \w the|strong="H7843"\w* gods \w of|strong="H1121"\w* \w the|strong="H7843"\w* \w nations|strong="H1471"\w* \w delivered|strong="H5337"\w* \w them|strong="H7843"\w*, \w which|strong="H1471"\w* \w my|strong="H5337"\w* fathers \w have|strong="H1121"\w* \w destroyed|strong="H7843"\w*—\w Gozan|strong="H1470"\w*, \w Haran|strong="H2771"\w*, \w Rezeph|strong="H7530"\w*, \w and|strong="H1121"\w* \w the|strong="H7843"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Eden|strong="H5729"\w* \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w in|strong="H1121"\w* \w Telassar|strong="H8515"\w*? +\v 13 Where \w is|strong="H4428"\w* \w the|strong="H5892"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Hamath|strong="H2574"\w*, \w the|strong="H5892"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Arpad, \w and|strong="H4428"\w* \w the|strong="H5892"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H5892"\w* \w city|strong="H5892"\w* \w of|strong="H4428"\w* \w Sepharvaim|strong="H5617"\w*, \w of|strong="H4428"\w* \w Hena|strong="H2012"\w*, \w and|strong="H4428"\w* \w Ivvah|strong="H5755"\w*?’” +\p +\v 14 \w Hezekiah|strong="H2396"\w* \w received|strong="H3947"\w* \w the|strong="H6440"\w* \w letter|strong="H5612"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w hand|strong="H3027"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w messengers|strong="H4397"\w* \w and|strong="H3068"\w* \w read|strong="H7121"\w* \w it|strong="H7121"\w*. \w Then|strong="H3947"\w* \w Hezekiah|strong="H2396"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w spread|strong="H6566"\w* \w it|strong="H7121"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 15 \w Hezekiah|strong="H2396"\w* \w prayed|strong="H6419"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3478"\w* said, “\w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w who|strong="H3605"\w* \w are|strong="H3478"\w* \w enthroned|strong="H3427"\w* \w above|strong="H6440"\w* \w the|strong="H3605"\w* \w cherubim|strong="H3742"\w*, \w you|strong="H6440"\w* \w are|strong="H3478"\w* \w the|strong="H3605"\w* \w God|strong="H3068"\w*, \w even|strong="H6213"\w* \w you|strong="H6440"\w* \w alone|strong="H1931"\w*, \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*. \w You|strong="H6440"\w* \w have|strong="H3068"\w* \w made|strong="H6213"\w* \w heaven|strong="H8064"\w* \w and|strong="H3478"\w* \w earth|strong="H8064"\w*. +\v 16 \w Incline|strong="H5186"\w* \w your|strong="H3068"\w* \w ear|strong="H8085"\w*, \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w hear|strong="H8085"\w*. \w Open|strong="H6491"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w*, \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w see|strong="H7200"\w*. \w Hear|strong="H8085"\w* \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w Sennacherib|strong="H5576"\w*, \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w sent|strong="H7971"\w* \w to|strong="H3068"\w* \w defy|strong="H2778"\w* \w the|strong="H8085"\w* \w living|strong="H2416"\w* \w God|strong="H3068"\w*. +\v 17 Truly, \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w have|strong="H3068"\w* \w laid|strong="H2717"\w* \w waste|strong="H2717"\w* \w the|strong="H3068"\w* \w nations|strong="H1471"\w* \w and|strong="H3068"\w* \w their|strong="H3068"\w* \w lands|strong="H2717"\w*, +\v 18 \w and|strong="H3027"\w* \w have|strong="H3027"\w* \w cast|strong="H5414"\w* \w their|strong="H5414"\w* gods \w into|strong="H3027"\w* \w the|strong="H3588"\w* fire; \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w were|strong="H1992"\w* \w no|strong="H3808"\w* gods, \w but|strong="H3588"\w* \w the|strong="H3588"\w* \w work|strong="H4639"\w* \w of|strong="H3027"\w* \w men|strong="H1992"\w*’s \w hands|strong="H3027"\w*, \w wood|strong="H6086"\w* \w and|strong="H3027"\w* stone. \w Therefore|strong="H3588"\w* \w they|strong="H1992"\w* \w have|strong="H3027"\w* destroyed \w them|strong="H5414"\w*. +\v 19 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w save|strong="H3467"\w* \w us|strong="H4994"\w*, \w I|strong="H3588"\w* \w beg|strong="H4994"\w* \w you|strong="H3588"\w*, \w out|strong="H3045"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*, \w that|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* earth \w may|strong="H4994"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w are|strong="H3027"\w* \w God|strong="H3068"\w* \w alone|strong="H3045"\w*.” +\p +\v 20 \w Then|strong="H7971"\w* \w Isaiah|strong="H3470"\w* \w the|strong="H8085"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amoz \w sent|strong="H7971"\w* \w to|strong="H3478"\w* \w Hezekiah|strong="H2396"\w*, saying, “\w Yahweh|strong="H3068"\w*, \w the|strong="H8085"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w* ‘\w You|strong="H7971"\w* \w have|strong="H3068"\w* \w prayed|strong="H6419"\w* \w to|strong="H3478"\w* \w me|strong="H7971"\w* \w against|strong="H3068"\w* \w Sennacherib|strong="H5576"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Assyria, \w and|strong="H1121"\w* \w I|strong="H3541"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w you|strong="H7971"\w*. +\v 21 \w This|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H5921"\w* \w word|strong="H1697"\w* \w that|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w concerning|strong="H5921"\w* \w him|strong="H5921"\w*: ‘\w The|strong="H5921"\w* \w virgin|strong="H1330"\w* \w daughter|strong="H1323"\w* \w of|strong="H3068"\w* \w Zion|strong="H6726"\w* \w has|strong="H3068"\w* despised \w you|strong="H5921"\w* \w and|strong="H3068"\w* ridiculed \w you|strong="H5921"\w*. \w The|strong="H5921"\w* \w daughter|strong="H1323"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w* \w has|strong="H3068"\w* \w shaken|strong="H5128"\w* \w her|strong="H5921"\w* \w head|strong="H7218"\w* \w at|strong="H5921"\w* \w you|strong="H5921"\w*. +\v 22 \w Whom|strong="H4310"\w* \w have|strong="H5869"\w* \w you|strong="H5921"\w* \w defied|strong="H2778"\w* \w and|strong="H3478"\w* \w blasphemed|strong="H1442"\w*? \w Against|strong="H5921"\w* \w whom|strong="H4310"\w* \w have|strong="H5869"\w* \w you|strong="H5921"\w* \w exalted|strong="H7311"\w* \w your|strong="H5921"\w* \w voice|strong="H6963"\w* \w and|strong="H3478"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H5921"\w* \w eyes|strong="H5869"\w* \w on|strong="H5921"\w* \w high|strong="H4791"\w*? \w Against|strong="H5921"\w* \w the|strong="H5921"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H6963"\w* \w Israel|strong="H3478"\w*! +\v 23 \w By|strong="H3027"\w* \w your|strong="H3772"\w* \w messengers|strong="H4397"\w*, \w you|strong="H3027"\w* \w have|strong="H3027"\w* \w defied|strong="H2778"\w* \w the|strong="H5927"\w* Lord, \w and|strong="H3027"\w* \w have|strong="H3027"\w* said, “\w With|strong="H3027"\w* \w the|strong="H5927"\w* multitude \w of|strong="H3027"\w* \w my|strong="H5927"\w* \w chariots|strong="H7393"\w*, \w I|strong="H3772"\w* \w have|strong="H3027"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H5927"\w* \w height|strong="H6967"\w* \w of|strong="H3027"\w* \w the|strong="H5927"\w* \w mountains|strong="H2022"\w*, \w to|strong="H5927"\w* \w the|strong="H5927"\w* \w innermost|strong="H3411"\w* \w parts|strong="H3411"\w* \w of|strong="H3027"\w* \w Lebanon|strong="H3844"\w*, \w and|strong="H3027"\w* \w I|strong="H3772"\w* \w will|strong="H3027"\w* \w cut|strong="H3772"\w* \w down|strong="H3772"\w* \w its|strong="H5927"\w* \w tall|strong="H6967"\w* cedars \w and|strong="H3027"\w* \w its|strong="H5927"\w* \w choice|strong="H4005"\w* \w cypress|strong="H1265"\w* \w trees|strong="H1265"\w*; \w and|strong="H3027"\w* \w I|strong="H3772"\w* \w will|strong="H3027"\w* \w enter|strong="H5927"\w* \w into|strong="H5927"\w* \w his|strong="H3027"\w* \w farthest|strong="H7093"\w* \w lodging|strong="H4411"\w* \w place|strong="H3027"\w*, \w the|strong="H5927"\w* \w forest|strong="H3293"\w* \w of|strong="H3027"\w* \w his|strong="H3027"\w* \w fruitful|strong="H3759"\w* \w field|strong="H3759"\w*. +\v 24 \w I|strong="H6471"\w* \w have|strong="H3605"\w* \w dug|strong="H6979"\w* \w and|strong="H8354"\w* \w drunk|strong="H8354"\w* \w strange|strong="H2114"\w* \w waters|strong="H4325"\w*, \w and|strong="H8354"\w* \w I|strong="H6471"\w* \w will|strong="H4325"\w* \w dry|strong="H2717"\w* \w up|strong="H2717"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w rivers|strong="H2975"\w* \w of|strong="H4325"\w* \w Egypt|strong="H4693"\w* \w with|strong="H4325"\w* \w the|strong="H3605"\w* \w sole|strong="H3709"\w* \w of|strong="H4325"\w* \w my|strong="H3605"\w* \w feet|strong="H6471"\w*.” +\v 25 Haven’t \w you|strong="H3117"\w* \w heard|strong="H8085"\w* \w how|strong="H8085"\w* \w I|strong="H3117"\w* \w have|strong="H1961"\w* \w done|strong="H6213"\w* \w it|strong="H6213"\w* \w long|strong="H3117"\w* \w ago|strong="H7350"\w*, \w and|strong="H3117"\w* \w formed|strong="H3335"\w* \w it|strong="H6213"\w* \w of|strong="H3117"\w* \w ancient|strong="H6924"\w* \w times|strong="H3117"\w*? \w Now|strong="H6258"\w* \w I|strong="H3117"\w* \w have|strong="H1961"\w* \w brought|strong="H6213"\w* \w it|strong="H6213"\w* \w to|strong="H1961"\w* \w pass|strong="H1961"\w*, \w that|strong="H3117"\w* \w it|strong="H6213"\w* \w should|strong="H3117"\w* \w be|strong="H1961"\w* yours \w to|strong="H1961"\w* \w lay|strong="H1961"\w* \w waste|strong="H7582"\w* \w fortified|strong="H1219"\w* \w cities|strong="H5892"\w* \w into|strong="H6213"\w* \w ruinous|strong="H5327"\w* \w heaps|strong="H1530"\w*. +\v 26 \w Therefore|strong="H1961"\w* \w their|strong="H6440"\w* \w inhabitants|strong="H3427"\w* \w had|strong="H1961"\w* little \w power|strong="H3027"\w*. \w They|strong="H6440"\w* \w were|strong="H1961"\w* \w dismayed|strong="H2865"\w* \w and|strong="H3027"\w* confounded. \w They|strong="H6440"\w* \w were|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H6440"\w* \w grass|strong="H2682"\w* \w of|strong="H3027"\w* \w the|strong="H6440"\w* \w field|strong="H7704"\w* \w and|strong="H3027"\w* \w like|strong="H1961"\w* \w the|strong="H6440"\w* \w green|strong="H3419"\w* \w herb|strong="H6212"\w*, \w like|strong="H1961"\w* \w the|strong="H6440"\w* \w grass|strong="H2682"\w* \w on|strong="H3427"\w* \w the|strong="H6440"\w* \w housetops|strong="H1406"\w* \w and|strong="H3027"\w* \w like|strong="H1961"\w* \w grain|strong="H7054"\w* \w blasted|strong="H7711"\w* \w before|strong="H6440"\w* \w it|strong="H6440"\w* \w has|strong="H1961"\w* \w grown|strong="H7054"\w* \w up|strong="H7054"\w*. +\v 27 But \w I|strong="H3045"\w* \w know|strong="H3045"\w* \w your|strong="H3045"\w* \w sitting|strong="H3427"\w* \w down|strong="H3427"\w*, \w your|strong="H3045"\w* \w going|strong="H3318"\w* \w out|strong="H3318"\w*, \w your|strong="H3045"\w* \w coming|strong="H3318"\w* \w in|strong="H3427"\w*, \w and|strong="H3318"\w* \w your|strong="H3045"\w* \w raging|strong="H7264"\w* \w against|strong="H3427"\w* \w me|strong="H3318"\w*. +\v 28 \w Because|strong="H3282"\w* \w of|strong="H1870"\w* \w your|strong="H7760"\w* \w raging|strong="H7264"\w* \w against|strong="H5927"\w* \w me|strong="H7725"\w*, \w and|strong="H7725"\w* \w because|strong="H3282"\w* \w your|strong="H7760"\w* \w arrogance|strong="H7600"\w* \w has|strong="H7600"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w into|strong="H7725"\w* \w my|strong="H7760"\w* ears, therefore \w I|strong="H7760"\w* \w will|strong="H7725"\w* \w put|strong="H7760"\w* \w my|strong="H7760"\w* \w hook|strong="H2397"\w* \w in|strong="H7725"\w* \w your|strong="H7760"\w* nose, \w and|strong="H7725"\w* \w my|strong="H7760"\w* \w bridle|strong="H4964"\w* \w in|strong="H7725"\w* \w your|strong="H7760"\w* \w lips|strong="H8193"\w*, \w and|strong="H7725"\w* \w I|strong="H7760"\w* \w will|strong="H7725"\w* \w turn|strong="H7725"\w* \w you|strong="H7725"\w* \w back|strong="H7725"\w* \w by|strong="H1870"\w* \w the|strong="H7725"\w* \w way|strong="H1870"\w* \w by|strong="H1870"\w* which \w you|strong="H7725"\w* \w came|strong="H5927"\w*.’ +\p +\v 29 “\w This|strong="H2088"\w* \w will|strong="H3754"\w* \w be|strong="H8141"\w* \w the|strong="H8141"\w* sign \w to|strong="H8141"\w* \w you|strong="H8141"\w*: \w This|strong="H2088"\w* \w year|strong="H8141"\w*, \w you|strong="H8141"\w* \w will|strong="H3754"\w* eat \w that|strong="H8141"\w* \w which|strong="H2088"\w* \w grows|strong="H5599"\w* \w of|strong="H8141"\w* \w itself|strong="H2088"\w*, \w and|strong="H8141"\w* \w in|strong="H8141"\w* \w the|strong="H8141"\w* \w second|strong="H8145"\w* \w year|strong="H8141"\w* \w that|strong="H8141"\w* \w which|strong="H2088"\w* springs \w from|strong="H2232"\w* \w that|strong="H8141"\w*; \w and|strong="H8141"\w* \w in|strong="H8141"\w* \w the|strong="H8141"\w* \w third|strong="H7992"\w* \w year|strong="H8141"\w* \w sow|strong="H2232"\w* \w and|strong="H8141"\w* \w reap|strong="H7114"\w*, \w and|strong="H8141"\w* \w plant|strong="H5193"\w* \w vineyards|strong="H3754"\w* \w and|strong="H8141"\w* eat \w their|strong="H7114"\w* \w fruit|strong="H6529"\w*. +\v 30 \w The|strong="H6213"\w* \w remnant|strong="H7604"\w* \w that|strong="H3063"\w* \w has|strong="H3063"\w* \w escaped|strong="H6413"\w* \w of|strong="H1004"\w* \w the|strong="H6213"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w will|strong="H1004"\w* \w again|strong="H3254"\w* \w take|strong="H6213"\w* \w root|strong="H8328"\w* \w downward|strong="H4295"\w*, \w and|strong="H3063"\w* \w bear|strong="H6213"\w* \w fruit|strong="H6529"\w* \w upward|strong="H4605"\w*. +\v 31 \w For|strong="H3588"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w* \w a|strong="H3068"\w* \w remnant|strong="H7611"\w* \w will|strong="H3068"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H3068"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w Mount|strong="H2022"\w* \w Zion|strong="H6726"\w* \w those|strong="H3318"\w* \w who|strong="H3068"\w* \w shall|strong="H3068"\w* \w escape|strong="H6413"\w*. \w Yahweh|strong="H3068"\w*’s \w zeal|strong="H7068"\w* \w will|strong="H3068"\w* \w perform|strong="H6213"\w* \w this|strong="H2063"\w*. +\p +\v 32 “\w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria, ‘\w He|strong="H8033"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w come|strong="H6923"\w* \w to|strong="H3068"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w*, \w nor|strong="H3808"\w* \w shoot|strong="H3384"\w* \w an|strong="H8033"\w* \w arrow|strong="H2671"\w* \w there|strong="H8033"\w*. \w He|strong="H8033"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w come|strong="H6923"\w* \w before|strong="H5921"\w* \w it|strong="H5921"\w* \w with|strong="H3068"\w* \w shield|strong="H4043"\w*, \w nor|strong="H3808"\w* \w cast|strong="H8210"\w* \w up|strong="H5921"\w* \w a|strong="H3068"\w* mound \w against|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 33 \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w return|strong="H7725"\w* \w the|strong="H5002"\w* \w same|strong="H2063"\w* \w way|strong="H1870"\w* \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w came|strong="H3068"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w come|strong="H7725"\w* \w to|strong="H7725"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 34 ‘\w For|strong="H4616"\w* \w I|strong="H5650"\w* \w will|strong="H5650"\w* \w defend|strong="H1598"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w to|strong="H1732"\w* \w save|strong="H3467"\w* \w it|strong="H2063"\w*, \w for|strong="H4616"\w* \w my|strong="H1732"\w* own \w sake|strong="H4616"\w* \w and|strong="H5892"\w* \w for|strong="H4616"\w* \w my|strong="H1732"\w* \w servant|strong="H5650"\w* \w David|strong="H1732"\w*’s \w sake|strong="H4616"\w*.’” +\p +\v 35 \w That|strong="H3605"\w* \w night|strong="H3915"\w*, \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H3967"\w* \w struck|strong="H5221"\w* \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* \w eighty-five|strong="H8084"\w* thousand \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* Assyrians. \w When|strong="H1961"\w* \w men|strong="H3605"\w* \w arose|strong="H7925"\w* \w early|strong="H7925"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w*, \w behold|strong="H2009"\w*, \w these|strong="H1931"\w* \w were|strong="H1961"\w* \w all|strong="H3605"\w* \w dead|strong="H4191"\w* \w bodies|strong="H6297"\w*. +\v 36 \w So|strong="H7725"\w* \w Sennacherib|strong="H5576"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w departed|strong="H3212"\w*, \w went|strong="H3212"\w* \w home|strong="H7725"\w*, \w and|strong="H7725"\w* \w lived|strong="H3427"\w* \w at|strong="H3427"\w* \w Nineveh|strong="H5210"\w*. +\v 37 \w As|strong="H1961"\w* \w he|strong="H1931"\w* \w was|strong="H1961"\w* \w worshiping|strong="H7812"\w* \w in|strong="H1004"\w* \w the|strong="H5221"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Nisroch|strong="H5268"\w* \w his|strong="H5221"\w* god, Adrammelech \w and|strong="H1121"\w* \w Sharezer|strong="H8272"\w* \w struck|strong="H5221"\w* \w him|strong="H5221"\w* \w with|strong="H1004"\w* \w the|strong="H5221"\w* \w sword|strong="H2719"\w*; \w and|strong="H1121"\w* \w they|strong="H1992"\w* \w escaped|strong="H4422"\w* \w into|strong="H2719"\w* \w the|strong="H5221"\w* land \w of|strong="H1121"\w* Ararat. Esar Haddon \w his|strong="H5221"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H1004"\w* \w his|strong="H5221"\w* \w place|strong="H8478"\w*. +\c 20 +\p +\v 1 \w In|strong="H3068"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w* \w Hezekiah|strong="H2396"\w* \w was|strong="H3068"\w* \w sick|strong="H2470"\w* \w and|strong="H1121"\w* \w dying|strong="H4191"\w*. \w Isaiah|strong="H3470"\w* \w the|strong="H3588"\w* \w prophet|strong="H5030"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amoz \w came|strong="H3068"\w* \w to|strong="H4191"\w* \w him|strong="H6680"\w*, \w and|strong="H1121"\w* said \w to|strong="H4191"\w* \w him|strong="H6680"\w*, “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w Set|strong="H6680"\w* \w your|strong="H3068"\w* \w house|strong="H1004"\w* \w in|strong="H3068"\w* \w order|strong="H6680"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w die|strong="H4191"\w*, \w and|strong="H1121"\w* \w not|strong="H3808"\w* \w live|strong="H2421"\w*.’” +\p +\v 2 \w Then|strong="H3068"\w* \w he|strong="H3068"\w* \w turned|strong="H5437"\w* \w his|strong="H3068"\w* \w face|strong="H6440"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w wall|strong="H7023"\w*, \w and|strong="H3068"\w* \w prayed|strong="H6419"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, saying, +\v 3 “\w Remember|strong="H2142"\w* \w now|strong="H4994"\w*, \w Yahweh|strong="H3068"\w*, \w I|strong="H1980"\w* \w beg|strong="H4994"\w* \w you|strong="H6440"\w*, \w how|strong="H4994"\w* \w I|strong="H1980"\w* \w have|strong="H3068"\w* \w walked|strong="H1980"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w in|strong="H1980"\w* truth \w and|strong="H1980"\w* \w with|strong="H1980"\w* \w a|strong="H3068"\w* \w perfect|strong="H8003"\w* \w heart|strong="H3824"\w*, \w and|strong="H1980"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w* \w in|strong="H1980"\w* \w your|strong="H3068"\w* \w sight|strong="H5869"\w*.” \w And|strong="H1980"\w* \w Hezekiah|strong="H2396"\w* \w wept|strong="H1058"\w* \w bitterly|strong="H1419"\w*. +\p +\v 4 \w Before|strong="H3808"\w* \w Isaiah|strong="H3470"\w* \w had|strong="H3068"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H3068"\w* \w middle|strong="H8484"\w* part \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w city|strong="H5892"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3318"\w* \w him|strong="H3318"\w*, \w saying|strong="H1697"\w*, +\v 5 “\w Turn|strong="H7725"\w* \w back|strong="H7725"\w*, \w and|strong="H3068"\w* \w tell|strong="H8085"\w* \w Hezekiah|strong="H2396"\w* \w the|strong="H8085"\w* \w prince|strong="H5057"\w* \w of|strong="H1004"\w* \w my|strong="H8085"\w* \w people|strong="H5971"\w*, ‘\w Yahweh|strong="H3068"\w*, \w the|strong="H8085"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w David|strong="H1732"\w* \w your|strong="H3068"\w* father, \w says|strong="H3541"\w*, “\w I|strong="H3117"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w your|strong="H3068"\w* \w prayer|strong="H8605"\w*. \w I|strong="H3117"\w* \w have|strong="H3068"\w* \w seen|strong="H7200"\w* \w your|strong="H3068"\w* \w tears|strong="H1832"\w*. \w Behold|strong="H2005"\w*, \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w heal|strong="H7495"\w* \w you|strong="H3117"\w*. \w On|strong="H3117"\w* \w the|strong="H8085"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*, \w you|strong="H3117"\w* \w will|strong="H3068"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 6 \w I|strong="H3117"\w* \w will|strong="H4428"\w* \w add|strong="H3254"\w* \w to|strong="H5921"\w* \w your|strong="H5921"\w* \w days|strong="H3117"\w* \w fifteen|strong="H2568"\w* \w years|strong="H8141"\w*. \w I|strong="H3117"\w* \w will|strong="H4428"\w* \w deliver|strong="H5337"\w* \w you|strong="H5921"\w* \w and|strong="H4428"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w out|strong="H5921"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w hand|strong="H3709"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria. \w I|strong="H3117"\w* \w will|strong="H4428"\w* \w defend|strong="H1598"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w for|strong="H5921"\w* \w my|strong="H1732"\w* own \w sake|strong="H4616"\w*, \w and|strong="H4428"\w* \w for|strong="H5921"\w* \w my|strong="H1732"\w* \w servant|strong="H5650"\w* \w David|strong="H1732"\w*’s \w sake|strong="H4616"\w*.”’” +\p +\v 7 \w Isaiah|strong="H3470"\w* said, “\w Take|strong="H3947"\w* \w a|strong="H3068"\w* \w cake|strong="H1690"\w* \w of|strong="H5921"\w* \w figs|strong="H8384"\w*.” +\p \w They|strong="H5921"\w* \w took|strong="H3947"\w* \w and|strong="H3947"\w* \w laid|strong="H7760"\w* \w it|strong="H7760"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w boil|strong="H7822"\w*, \w and|strong="H3947"\w* \w he|strong="H5921"\w* \w recovered|strong="H2421"\w*. +\p +\v 8 \w Hezekiah|strong="H2396"\w* said \w to|strong="H3068"\w* \w Isaiah|strong="H3470"\w*, “\w What|strong="H4100"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w the|strong="H3588"\w* sign \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w heal|strong="H7495"\w* \w me|strong="H5927"\w*, \w and|strong="H3068"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w the|strong="H3588"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*?” +\p +\v 9 \w Isaiah|strong="H3470"\w* \w said|strong="H1696"\w*, “\w This|strong="H2088"\w* \w will|strong="H3068"\w* \w be|strong="H1697"\w* \w the|strong="H3588"\w* sign \w to|strong="H1696"\w* \w you|strong="H3588"\w* \w from|strong="H7725"\w* \w Yahweh|strong="H3068"\w*, \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w the|strong="H3588"\w* \w thing|strong="H1697"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w*: \w should|strong="H3068"\w* \w the|strong="H3588"\w* \w shadow|strong="H6738"\w* \w go|strong="H1980"\w* \w forward|strong="H1980"\w* \w ten|strong="H6235"\w* \w steps|strong="H4609"\w*, \w or|strong="H3068"\w* \w go|strong="H1980"\w* \w back|strong="H7725"\w* \w ten|strong="H6235"\w* \w steps|strong="H4609"\w*?” +\p +\v 10 \w Hezekiah|strong="H2396"\w* \w answered|strong="H7725"\w*, “\w It|strong="H3588"\w* \w is|strong="H6738"\w* \w a|strong="H3068"\w* \w light|strong="H7043"\w* \w thing|strong="H7043"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w shadow|strong="H6738"\w* \w to|strong="H7725"\w* \w go|strong="H7725"\w* forward \w ten|strong="H6235"\w* \w steps|strong="H4609"\w*. \w No|strong="H3808"\w*, \w but|strong="H3588"\w* \w let|strong="H5186"\w* \w the|strong="H3588"\w* \w shadow|strong="H6738"\w* \w return|strong="H7725"\w* backward \w ten|strong="H6235"\w* \w steps|strong="H4609"\w*.” +\p +\v 11 \w Isaiah|strong="H3470"\w* \w the|strong="H3068"\w* \w prophet|strong="H5030"\w* \w cried|strong="H7121"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w brought|strong="H7725"\w* \w the|strong="H3068"\w* \w shadow|strong="H6738"\w* \w ten|strong="H6235"\w* \w steps|strong="H4609"\w* backward, \w by|strong="H3068"\w* \w which|strong="H3068"\w* \w it|strong="H7121"\w* \w had|strong="H3068"\w* \w gone|strong="H3381"\w* \w down|strong="H3381"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* sundial \w of|strong="H3068"\w* Ahaz. +\p +\v 12 \w At|strong="H4428"\w* \w that|strong="H3588"\w* \w time|strong="H6256"\w* Berodach \w Baladan|strong="H1081"\w* \w the|strong="H8085"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Baladan|strong="H1081"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon, \w sent|strong="H7971"\w* \w letters|strong="H5612"\w* \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w present|strong="H4503"\w* \w to|strong="H7971"\w* \w Hezekiah|strong="H2396"\w*, \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w had|strong="H4428"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w Hezekiah|strong="H2396"\w* \w had|strong="H4428"\w* \w been|strong="H2470"\w* \w sick|strong="H2470"\w*. +\v 13 \w Hezekiah|strong="H2396"\w* \w listened|strong="H8085"\w* \w to|strong="H1961"\w* \w them|strong="H5921"\w*, \w and|strong="H3701"\w* \w showed|strong="H7200"\w* \w them|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w storehouse|strong="H5238"\w* \w of|strong="H1004"\w* \w his|strong="H3605"\w* \w precious|strong="H2896"\w* \w things|strong="H1697"\w*—\w the|strong="H3605"\w* \w silver|strong="H3701"\w*, \w the|strong="H3605"\w* \w gold|strong="H2091"\w*, \w the|strong="H3605"\w* \w spices|strong="H1314"\w*, \w and|strong="H3701"\w* \w the|strong="H3605"\w* \w precious|strong="H2896"\w* \w oil|strong="H8081"\w*, \w and|strong="H3701"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w his|strong="H3605"\w* \w armor|strong="H3627"\w*, \w and|strong="H3701"\w* \w all|strong="H3605"\w* \w that|strong="H7200"\w* \w was|strong="H1961"\w* \w found|strong="H4672"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* treasures. \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w nothing|strong="H3808"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*, \w or|strong="H3808"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w dominion|strong="H4474"\w*, \w that|strong="H7200"\w* \w Hezekiah|strong="H2396"\w* didn’t \w show|strong="H7200"\w* \w them|strong="H5921"\w*. +\p +\v 14 \w Then|strong="H4428"\w* \w Isaiah|strong="H3470"\w* \w the|strong="H3470"\w* \w prophet|strong="H5030"\w* \w came|strong="H4428"\w* \w to|strong="H4428"\w* \w King|strong="H4428"\w* \w Hezekiah|strong="H2396"\w*, \w and|strong="H4428"\w* said \w to|strong="H4428"\w* \w him|strong="H4428"\w*, “\w What|strong="H4100"\w* \w did|strong="H4100"\w* \w these|strong="H4428"\w* men say? \w From|strong="H7350"\w* \w where|strong="H4100"\w* \w did|strong="H4100"\w* \w they|strong="H4100"\w* \w come|strong="H7350"\w* \w to|strong="H4428"\w* \w you|strong="H4100"\w*?” +\p \w Hezekiah|strong="H2396"\w* said, “\w They|strong="H4100"\w* \w have|strong="H5030"\w* \w come|strong="H7350"\w* \w from|strong="H7350"\w* \w a|strong="H3068"\w* \w far|strong="H7350"\w* country, even \w from|strong="H7350"\w* Babylon.” +\p +\v 15 \w He|strong="H3605"\w* \w said|strong="H1697"\w*, “\w What|strong="H4100"\w* \w have|strong="H1961"\w* \w they|strong="H3808"\w* \w seen|strong="H7200"\w* \w in|strong="H1004"\w* \w your|strong="H3605"\w* \w house|strong="H1004"\w*?” +\p \w Hezekiah|strong="H2396"\w* \w answered|strong="H1697"\w*, “\w They|strong="H3808"\w* \w have|strong="H1961"\w* \w seen|strong="H7200"\w* \w all|strong="H3605"\w* \w that|strong="H7200"\w* \w is|strong="H4100"\w* \w in|strong="H1004"\w* \w my|strong="H3605"\w* \w house|strong="H1004"\w*. \w There|strong="H1961"\w* \w is|strong="H4100"\w* \w nothing|strong="H3808"\w* \w among|strong="H7200"\w* \w my|strong="H3605"\w* treasures \w that|strong="H7200"\w* \w I|strong="H1697"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* \w shown|strong="H7200"\w* \w them|strong="H7200"\w*.” +\p +\v 16 \w Isaiah|strong="H3470"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w Hezekiah|strong="H2396"\w*, “\w Hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*. +\v 17 ‘\w Behold|strong="H2009"\w*, \w the|strong="H3605"\w* \w days|strong="H3117"\w* come \w that|strong="H3605"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w your|strong="H3068"\w* fathers \w have|strong="H3068"\w* \w laid|strong="H5375"\w* \w up|strong="H5375"\w* \w in|strong="H3068"\w* store \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w carried|strong="H5375"\w* \w to|strong="H5704"\w* Babylon. \w Nothing|strong="H3808"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w left|strong="H3498"\w*,’ \w says|strong="H1697"\w* \w Yahweh|strong="H3068"\w*. +\v 18 ‘\w They|strong="H3205"\w* \w will|strong="H1961"\w* \w take|strong="H3947"\w* \w away|strong="H3947"\w* \w some|strong="H4480"\w* \w of|strong="H1121"\w* \w your|strong="H3947"\w* \w sons|strong="H1121"\w* \w who|strong="H1121"\w* \w will|strong="H1961"\w* \w issue|strong="H3318"\w* \w from|strong="H4480"\w* \w you|strong="H3947"\w*, whom \w you|strong="H3947"\w* \w will|strong="H1961"\w* \w father|strong="H3205"\w*; \w and|strong="H1121"\w* \w they|strong="H3205"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w eunuchs|strong="H5631"\w* \w in|strong="H4428"\w* \w the|strong="H3947"\w* \w palace|strong="H1964"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon.’” +\p +\v 19 \w Then|strong="H1961"\w* \w Hezekiah|strong="H2396"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Isaiah|strong="H3470"\w*, “\w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w you|strong="H3117"\w* \w have|strong="H1961"\w* \w spoken|strong="H1696"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w*.” \w He|strong="H3117"\w* \w said|strong="H1696"\w* \w moreover|strong="H1961"\w*, “Isn’t \w it|strong="H1961"\w* \w so|strong="H1961"\w*, \w if|strong="H1961"\w* \w peace|strong="H7965"\w* \w and|strong="H3068"\w* \w truth|strong="H3808"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w in|strong="H3068"\w* \w my|strong="H3068"\w* \w days|strong="H3117"\w*?” +\p +\v 20 \w Now|strong="H3117"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Hezekiah|strong="H2396"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w might|strong="H1369"\w*, \w and|strong="H3063"\w* \w how|strong="H6213"\w* \w he|strong="H3117"\w* \w made|strong="H6213"\w* \w the|strong="H3605"\w* \w pool|strong="H1295"\w*, \w and|strong="H3063"\w* \w the|strong="H3605"\w* \w conduit|strong="H8585"\w*, \w and|strong="H3063"\w* \w brought|strong="H6213"\w* \w water|strong="H4325"\w* \w into|strong="H5921"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*? +\v 21 \w Hezekiah|strong="H2396"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H8478"\w* fathers, \w and|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w his|strong="H8478"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H4427"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\c 21 +\p +\v 1 \w Manasseh|strong="H4519"\w* \w was|strong="H8034"\w* \w twelve|strong="H8147"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H2568"\w* began \w to|strong="H3389"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H2568"\w* \w reigned|strong="H4427"\w* \w fifty-five|strong="H2572"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H4519"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Hephzibah|strong="H2657"\w*. +\v 2 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, after \w the|strong="H6440"\w* \w abominations|strong="H8441"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w nations|strong="H1471"\w* \w whom|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w cast|strong="H3068"\w* \w out|strong="H3423"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 3 \w For|strong="H6213"\w* \w he|strong="H6213"\w* \w built|strong="H1129"\w* \w again|strong="H7725"\w* \w the|strong="H3605"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w which|strong="H1116"\w* \w Hezekiah|strong="H2396"\w* \w his|strong="H3605"\w* father \w had|strong="H3478"\w* destroyed; \w and|strong="H6965"\w* \w he|strong="H6213"\w* \w raised|strong="H6965"\w* \w up|strong="H6965"\w* \w altars|strong="H4196"\w* \w for|strong="H6213"\w* \w Baal|strong="H1168"\w*, \w and|strong="H6965"\w* \w made|strong="H6213"\w* \w an|strong="H1129"\w* Asherah, \w as|strong="H6213"\w* Ahab \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w did|strong="H6213"\w*, \w and|strong="H6965"\w* \w worshiped|strong="H7812"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w and|strong="H6965"\w* \w served|strong="H5647"\w* \w them|strong="H7725"\w*. +\v 4 \w He|strong="H3068"\w* \w built|strong="H1129"\w* \w altars|strong="H4196"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w of|strong="H1004"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* said, “\w I|strong="H7760"\w* \w will|strong="H3068"\w* \w put|strong="H7760"\w* \w my|strong="H3068"\w* \w name|strong="H8034"\w* \w in|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*.” +\v 5 \w He|strong="H3068"\w* \w built|strong="H1129"\w* \w altars|strong="H4196"\w* \w for|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w two|strong="H8147"\w* \w courts|strong="H2691"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 6 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w his|strong="H3068"\w* \w son|strong="H1121"\w* \w to|strong="H3068"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H6213"\w* fire, \w practiced|strong="H6213"\w* sorcery, \w used|strong="H6213"\w* \w enchantments|strong="H5172"\w*, \w and|strong="H1121"\w* \w dealt|strong="H6213"\w* \w with|strong="H3068"\w* \w those|strong="H1121"\w* \w who|strong="H3068"\w* \w had|strong="H3068"\w* familiar spirits \w and|strong="H1121"\w* \w with|strong="H3068"\w* \w wizards|strong="H3049"\w*. \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w much|strong="H7235"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w to|strong="H3068"\w* \w provoke|strong="H3707"\w* \w him|strong="H6213"\w* \w to|strong="H3068"\w* \w anger|strong="H3707"\w*. +\v 7 \w He|strong="H6213"\w* \w set|strong="H7760"\w* \w the|strong="H3605"\w* engraved \w image|strong="H6459"\w* \w of|strong="H1121"\w* Asherah \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w had|strong="H3068"\w* \w made|strong="H6213"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* said \w to|strong="H3478"\w* \w David|strong="H1732"\w* \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w Solomon|strong="H8010"\w* \w his|strong="H3605"\w* \w son|strong="H1121"\w*, “\w In|strong="H3478"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w*, \w and|strong="H1121"\w* \w in|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*, \w which|strong="H3068"\w* \w I|strong="H7760"\w* \w have|strong="H3068"\w* chosen \w out|strong="H6213"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w I|strong="H7760"\w* \w will|strong="H3068"\w* \w put|strong="H7760"\w* \w my|strong="H3605"\w* \w name|strong="H8034"\w* \w forever|strong="H5769"\w*; +\v 8 \w I|strong="H5414"\w* \w will|strong="H3478"\w* \w not|strong="H3808"\w* \w cause|strong="H5414"\w* \w the|strong="H3605"\w* \w feet|strong="H7272"\w* \w of|strong="H5650"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w wander|strong="H5110"\w* \w any|strong="H3605"\w* \w more|strong="H3254"\w* \w out|strong="H4480"\w* \w of|strong="H5650"\w* \w the|strong="H3605"\w* land \w which|strong="H3478"\w* \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w their|strong="H3605"\w* fathers, if \w only|strong="H7535"\w* \w they|strong="H3808"\w* \w will|strong="H3478"\w* \w observe|strong="H8104"\w* \w to|strong="H3478"\w* \w do|strong="H6213"\w* \w according|strong="H4480"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H5414"\w* \w have|strong="H5650"\w* \w commanded|strong="H6680"\w* \w them|strong="H5414"\w*, \w and|strong="H4872"\w* \w according|strong="H4480"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w that|strong="H3605"\w* \w my|strong="H8104"\w* \w servant|strong="H5650"\w* \w Moses|strong="H4872"\w* \w commanded|strong="H6680"\w* \w them|strong="H5414"\w*.” +\v 9 \w But|strong="H3808"\w* \w they|strong="H3068"\w* didn’t \w listen|strong="H8085"\w*, \w and|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w seduced|strong="H8582"\w* \w them|strong="H6440"\w* \w to|strong="H3478"\w* \w do|strong="H6213"\w* \w that|strong="H8085"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w evil|strong="H7451"\w* \w more|strong="H4480"\w* \w than|strong="H4480"\w* \w the|strong="H6440"\w* \w nations|strong="H1471"\w* \w did|strong="H6213"\w* \w whom|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w destroyed|strong="H8045"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\p +\v 10 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w by|strong="H3027"\w* \w his|strong="H3068"\w* \w servants|strong="H5650"\w* \w the|strong="H3068"\w* \w prophets|strong="H5030"\w*, \w saying|strong="H1696"\w*, +\v 11 “\w Because|strong="H6440"\w* \w Manasseh|strong="H4519"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w has|strong="H4428"\w* \w done|strong="H6213"\w* \w these|strong="H6213"\w* \w abominations|strong="H8441"\w*, \w and|strong="H3063"\w* \w has|strong="H4428"\w* \w done|strong="H6213"\w* \w wickedly|strong="H7489"\w* \w above|strong="H6440"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* Amorites \w did|strong="H6213"\w*, \w who|strong="H3605"\w* \w were|strong="H3063"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, \w and|strong="H3063"\w* \w has|strong="H4428"\w* \w also|strong="H1571"\w* \w made|strong="H6213"\w* \w Judah|strong="H3063"\w* \w to|strong="H6213"\w* \w sin|strong="H2398"\w* \w with|strong="H6213"\w* \w his|strong="H3605"\w* \w idols|strong="H1544"\w*; +\v 12 \w therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*, ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w bring|strong="H7451"\w* \w such|strong="H3651"\w* \w evil|strong="H7451"\w* \w on|strong="H5921"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H3063"\w* \w Judah|strong="H3063"\w* \w that|strong="H3605"\w* \w whoever|strong="H3605"\w* \w hears|strong="H8085"\w* \w of|strong="H3068"\w* \w it|strong="H5921"\w*, \w both|strong="H8147"\w* \w his|strong="H3605"\w* ears \w will|strong="H3068"\w* \w tingle|strong="H6750"\w*. +\v 13 \w I|strong="H5921"\w* \w will|strong="H1004"\w* \w stretch|strong="H5186"\w* \w over|strong="H5921"\w* \w Jerusalem|strong="H3389"\w* \w the|strong="H6440"\w* \w line|strong="H6957"\w* \w of|strong="H1004"\w* \w Samaria|strong="H8111"\w*, \w and|strong="H1004"\w* \w the|strong="H6440"\w* plumb \w line|strong="H6957"\w* \w of|strong="H1004"\w* Ahab’s \w house|strong="H1004"\w*; \w and|strong="H1004"\w* \w I|strong="H5921"\w* \w will|strong="H1004"\w* \w wipe|strong="H4229"\w* \w Jerusalem|strong="H3389"\w* \w as|strong="H3389"\w* \w a|strong="H3068"\w* \w man|strong="H6440"\w* \w wipes|strong="H4229"\w* \w a|strong="H3068"\w* \w dish|strong="H6747"\w*, \w wiping|strong="H4229"\w* \w it|strong="H5921"\w* \w and|strong="H1004"\w* \w turning|strong="H2015"\w* \w it|strong="H5921"\w* \w upside|strong="H5921"\w* \w down|strong="H5186"\w*. +\v 14 \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w cast|strong="H5414"\w* \w off|strong="H5203"\w* \w the|strong="H3605"\w* \w remnant|strong="H7611"\w* \w of|strong="H3027"\w* \w my|strong="H5414"\w* \w inheritance|strong="H5159"\w* \w and|strong="H3027"\w* \w deliver|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H3605"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w their|strong="H3605"\w* \w enemies|strong="H3027"\w*. \w They|strong="H3605"\w* \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* prey \w and|strong="H3027"\w* \w a|strong="H3068"\w* \w plunder|strong="H4933"\w* \w to|strong="H1961"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w enemies|strong="H3027"\w*, +\v 15 \w because|strong="H4480"\w* \w they|strong="H3117"\w* \w have|strong="H1961"\w* \w done|strong="H6213"\w* \w that|strong="H3117"\w* \w which|strong="H5869"\w* \w is|strong="H2088"\w* \w evil|strong="H7451"\w* \w in|strong="H6213"\w* \w my|strong="H3318"\w* \w sight|strong="H5869"\w*, \w and|strong="H3117"\w* \w have|strong="H1961"\w* \w provoked|strong="H3707"\w* \w me|strong="H4480"\w* \w to|strong="H5704"\w* \w anger|strong="H3707"\w* \w since|strong="H4480"\w* \w the|strong="H6213"\w* \w day|strong="H3117"\w* \w their|strong="H1961"\w* fathers \w came|strong="H1961"\w* \w out|strong="H3318"\w* \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*.’” +\p +\v 16 \w Moreover|strong="H1571"\w* \w Manasseh|strong="H4519"\w* \w shed|strong="H8210"\w* \w innocent|strong="H5355"\w* \w blood|strong="H1818"\w* \w very|strong="H3966"\w* \w much|strong="H7235"\w*, \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w had|strong="H3068"\w* \w filled|strong="H4390"\w* \w Jerusalem|strong="H3389"\w* \w from|strong="H5704"\w* \w one|strong="H6310"\w* \w end|strong="H6310"\w* \w to|strong="H5704"\w* \w another|strong="H6310"\w*; \w in|strong="H3068"\w* \w addition|strong="H1571"\w* \w to|strong="H5704"\w* \w his|strong="H3068"\w* \w sin|strong="H2403"\w* \w with|strong="H4390"\w* \w which|strong="H3068"\w* \w he|strong="H5704"\w* \w made|strong="H6213"\w* \w Judah|strong="H3063"\w* \w to|strong="H5704"\w* \w sin|strong="H2403"\w*, \w in|strong="H3068"\w* \w doing|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*. +\p +\v 17 \w Now|strong="H3117"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Manasseh|strong="H4519"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, \w and|strong="H3063"\w* \w his|strong="H3605"\w* \w sin|strong="H2403"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w sinned|strong="H2398"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*? +\v 18 \w Manasseh|strong="H4519"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H8478"\w* fathers, \w and|strong="H1121"\w* \w was|strong="H1004"\w* \w buried|strong="H6912"\w* \w in|strong="H1004"\w* \w the|strong="H8478"\w* \w garden|strong="H1588"\w* \w of|strong="H1121"\w* \w his|strong="H8478"\w* \w own|strong="H5973"\w* \w house|strong="H1004"\w*, \w in|strong="H1004"\w* \w the|strong="H8478"\w* \w garden|strong="H1588"\w* \w of|strong="H1121"\w* \w Uzza|strong="H5798"\w*; \w and|strong="H1121"\w* Amon \w his|strong="H8478"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H1004"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\p +\v 19 Amon \w was|strong="H8034"\w* \w twenty-two|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H8147"\w* began \w to|strong="H3389"\w* \w reign|strong="H4427"\w*; \w and|strong="H1121"\w* \w he|strong="H8147"\w* \w reigned|strong="H4427"\w* \w two|strong="H8147"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H4480"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Meshullemeth|strong="H4922"\w* \w the|strong="H4480"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Haruz|strong="H2743"\w* \w of|strong="H1121"\w* \w Jotbah|strong="H3192"\w*. +\v 20 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w as|strong="H6213"\w* \w Manasseh|strong="H4519"\w* \w his|strong="H3068"\w* father \w did|strong="H6213"\w*. +\v 21 \w He|strong="H3605"\w* \w walked|strong="H1980"\w* \w in|strong="H1980"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w ways|strong="H1870"\w* \w that|strong="H3605"\w* \w his|strong="H3605"\w* father \w walked|strong="H1980"\w* \w in|strong="H1980"\w*, \w and|strong="H1980"\w* \w served|strong="H5647"\w* \w the|strong="H3605"\w* \w idols|strong="H1544"\w* \w that|strong="H3605"\w* \w his|strong="H3605"\w* father \w served|strong="H5647"\w*, \w and|strong="H1980"\w* \w worshiped|strong="H7812"\w* \w them|strong="H5647"\w*; +\v 22 \w and|strong="H1980"\w* \w he|strong="H3068"\w* \w abandoned|strong="H5800"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* fathers, \w and|strong="H1980"\w* didn’t \w walk|strong="H1980"\w* \w in|strong="H1980"\w* \w the|strong="H3068"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 23 \w The|strong="H5921"\w* \w servants|strong="H5650"\w* \w of|strong="H4428"\w* Amon \w conspired|strong="H7194"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H4428"\w* \w put|strong="H4191"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* own \w house|strong="H1004"\w*. +\v 24 \w But|strong="H5221"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* land \w killed|strong="H5221"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w had|strong="H4428"\w* \w conspired|strong="H7194"\w* \w against|strong="H5921"\w* \w King|strong="H4428"\w* Amon; \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* land \w made|strong="H4427"\w* \w Josiah|strong="H2977"\w* \w his|strong="H3605"\w* \w son|strong="H1121"\w* \w king|strong="H4428"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w place|strong="H8478"\w*. +\v 25 \w Now|strong="H3117"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* Amon \w which|strong="H1992"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*? +\v 26 \w He|strong="H4427"\w* \w was|strong="H1121"\w* \w buried|strong="H6912"\w* \w in|strong="H6912"\w* \w his|strong="H8478"\w* \w tomb|strong="H6900"\w* \w in|strong="H6912"\w* \w the|strong="H8478"\w* \w garden|strong="H1588"\w* \w of|strong="H1121"\w* \w Uzza|strong="H5798"\w*, \w and|strong="H1121"\w* \w Josiah|strong="H2977"\w* \w his|strong="H8478"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H6912"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\c 22 +\p +\v 1 \w Josiah|strong="H2977"\w* \w was|strong="H8034"\w* \w eight|strong="H8083"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H3389"\w* began \w to|strong="H3389"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H3389"\w* \w reigned|strong="H4427"\w* \w thirty-one|strong="H7970"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H2977"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Jedidah|strong="H3040"\w* \w the|strong="H8034"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Adaiah|strong="H5718"\w* \w of|strong="H1121"\w* \w Bozkath|strong="H1218"\w*. +\v 2 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w right|strong="H3225"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*, \w and|strong="H3068"\w* \w walked|strong="H3212"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w ways|strong="H1870"\w* \w of|strong="H3068"\w* \w David|strong="H1732"\w* \w his|strong="H3605"\w* father, \w and|strong="H3068"\w* didn’t \w turn|strong="H5493"\w* \w away|strong="H5493"\w* \w to|strong="H3212"\w* \w the|strong="H3605"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w or|strong="H3808"\w* \w to|strong="H3212"\w* \w the|strong="H3605"\w* \w left|strong="H8040"\w*. +\p +\v 3 \w In|strong="H8141"\w* \w the|strong="H3068"\w* \w eighteenth|strong="H8083"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w King|strong="H4428"\w* \w Josiah|strong="H2977"\w*, \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w sent|strong="H7971"\w* \w Shaphan|strong="H8227"\w*, \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Azaliah \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Meshullam|strong="H4918"\w*, \w the|strong="H3068"\w* \w scribe|strong="H5608"\w*, \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, saying, +\v 4 “\w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w Hilkiah|strong="H2518"\w* \w the|strong="H8104"\w* \w high|strong="H1419"\w* \w priest|strong="H3548"\w*, \w that|strong="H5971"\w* \w he|strong="H3068"\w* \w may|strong="H3068"\w* \w count|strong="H8552"\w* \w the|strong="H8104"\w* \w money|strong="H3701"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w brought|strong="H5927"\w* \w into|strong="H5927"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w which|strong="H3068"\w* \w the|strong="H8104"\w* \w keepers|strong="H8104"\w* \w of|strong="H1004"\w* \w the|strong="H8104"\w* \w threshold|strong="H5592"\w* \w have|strong="H3068"\w* gathered \w of|strong="H1004"\w* \w the|strong="H8104"\w* \w people|strong="H5971"\w*. +\v 5 \w Let|strong="H5414"\w* \w them|strong="H5414"\w* \w deliver|strong="H5414"\w* \w it|strong="H5414"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w workers|strong="H4399"\w* \w who|strong="H3068"\w* \w have|strong="H3068"\w* \w the|strong="H5921"\w* \w oversight|strong="H6485"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*; \w and|strong="H3068"\w* \w let|strong="H5414"\w* \w them|strong="H5414"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w workers|strong="H4399"\w* \w who|strong="H3068"\w* \w are|strong="H3027"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w to|strong="H3068"\w* \w repair|strong="H2388"\w* \w the|strong="H5921"\w* \w damage|strong="H6485"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*, +\v 6 \w to|strong="H1004"\w* \w the|strong="H1129"\w* \w carpenters|strong="H2796"\w*, \w and|strong="H1004"\w* \w to|strong="H1004"\w* \w the|strong="H1129"\w* \w builders|strong="H1129"\w*, \w and|strong="H1004"\w* \w to|strong="H1004"\w* \w the|strong="H1129"\w* \w masons|strong="H1443"\w*, \w and|strong="H1004"\w* \w for|strong="H1004"\w* \w buying|strong="H7069"\w* \w timber|strong="H6086"\w* \w and|strong="H1004"\w* cut stone \w to|strong="H1004"\w* \w repair|strong="H2388"\w* \w the|strong="H1129"\w* \w house|strong="H1004"\w*. +\v 7 \w However|strong="H3588"\w*, \w no|strong="H3808"\w* \w accounting|strong="H2803"\w* \w shall|strong="H3027"\w* \w be|strong="H3808"\w* asked \w of|strong="H3027"\w* \w them|strong="H5414"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w money|strong="H3701"\w* \w delivered|strong="H5414"\w* \w into|strong="H5921"\w* \w their|strong="H5414"\w* \w hand|strong="H3027"\w*, \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w deal|strong="H6213"\w* faithfully.” +\p +\v 8 \w Hilkiah|strong="H2518"\w* \w the|strong="H5921"\w* \w high|strong="H1419"\w* \w priest|strong="H3548"\w* \w said|strong="H7121"\w* \w to|strong="H3068"\w* \w Shaphan|strong="H8227"\w* \w the|strong="H5921"\w* \w scribe|strong="H5608"\w*, “\w I|strong="H5414"\w* \w have|strong="H3068"\w* \w found|strong="H4672"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w law|strong="H8451"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*.” \w Hilkiah|strong="H2518"\w* \w delivered|strong="H5414"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w to|strong="H3068"\w* \w Shaphan|strong="H8227"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w read|strong="H7121"\w* \w it|strong="H5414"\w*. +\v 9 \w Shaphan|strong="H8227"\w* \w the|strong="H5921"\w* \w scribe|strong="H5608"\w* \w came|strong="H3068"\w* \w to|strong="H7725"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*, \w and|strong="H3068"\w* \w brought|strong="H7725"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w word|strong="H1697"\w* \w again|strong="H7725"\w*, \w and|strong="H3068"\w* \w said|strong="H1697"\w*, “\w Your|strong="H3068"\w* \w servants|strong="H5650"\w* \w have|strong="H3068"\w* \w emptied|strong="H5413"\w* \w out|strong="H4672"\w* \w the|strong="H5921"\w* \w money|strong="H3701"\w* \w that|strong="H3068"\w* \w was|strong="H3068"\w* \w found|strong="H4672"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w delivered|strong="H5414"\w* \w it|strong="H5414"\w* \w into|strong="H7725"\w* \w the|strong="H5921"\w* \w hands|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w workmen|strong="H4399"\w* \w who|strong="H3068"\w* \w have|strong="H3068"\w* \w the|strong="H5921"\w* \w oversight|strong="H6485"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*.” +\v 10 \w Shaphan|strong="H8227"\w* \w the|strong="H6440"\w* \w scribe|strong="H5608"\w* \w told|strong="H5046"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*, saying, “\w Hilkiah|strong="H2518"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w* \w has|strong="H4428"\w* \w delivered|strong="H5414"\w* \w a|strong="H3068"\w* \w book|strong="H5612"\w* \w to|strong="H5414"\w* \w me|strong="H5414"\w*.” \w Then|strong="H5414"\w* \w Shaphan|strong="H8227"\w* \w read|strong="H7121"\w* \w it|strong="H5414"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*. +\p +\v 11 \w When|strong="H1961"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w had|strong="H1961"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H8085"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H8085"\w* \w law|strong="H8451"\w*, \w he|strong="H4428"\w* \w tore|strong="H7167"\w* \w his|strong="H8085"\w* clothes. +\v 12 \w The|strong="H6680"\w* \w king|strong="H4428"\w* \w commanded|strong="H6680"\w* \w Hilkiah|strong="H2518"\w* \w the|strong="H6680"\w* \w priest|strong="H3548"\w*, Ahikam \w the|strong="H6680"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shaphan|strong="H8227"\w*, \w Achbor|strong="H5907"\w* \w the|strong="H6680"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Micaiah|strong="H4320"\w*, \w Shaphan|strong="H8227"\w* \w the|strong="H6680"\w* \w scribe|strong="H5608"\w*, \w and|strong="H1121"\w* \w Asaiah|strong="H6222"\w* \w the|strong="H6680"\w* \w king|strong="H4428"\w*’s \w servant|strong="H5650"\w*, saying, +\v 13 “\w Go|strong="H3212"\w* \w inquire|strong="H1875"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H3588"\w* \w me|strong="H5921"\w*, \w and|strong="H3063"\w* \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w and|strong="H3063"\w* \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w Judah|strong="H3063"\w*, \w concerning|strong="H5921"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w this|strong="H2088"\w* \w book|strong="H5612"\w* \w that|strong="H3588"\w* \w is|strong="H3068"\w* \w found|strong="H4672"\w*; \w for|strong="H3588"\w* \w great|strong="H1419"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w wrath|strong="H2534"\w* \w that|strong="H3588"\w* \w is|strong="H3068"\w* \w kindled|strong="H3341"\w* \w against|strong="H5921"\w* \w us|strong="H5921"\w*, \w because|strong="H3588"\w* \w our|strong="H3068"\w* fathers \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w listened|strong="H8085"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w this|strong="H2088"\w* \w book|strong="H5612"\w*, \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w which|strong="H1931"\w* \w is|strong="H3068"\w* \w written|strong="H3789"\w* \w concerning|strong="H5921"\w* \w us|strong="H5921"\w*.” +\p +\v 14 \w So|strong="H1696"\w* \w Hilkiah|strong="H2518"\w* \w the|strong="H8104"\w* \w priest|strong="H3548"\w*, Ahikam, \w Achbor|strong="H5907"\w*, \w Shaphan|strong="H8227"\w*, \w and|strong="H1121"\w* \w Asaiah|strong="H6222"\w* \w went|strong="H3212"\w* \w to|strong="H1696"\w* \w Huldah|strong="H2468"\w* \w the|strong="H8104"\w* \w prophetess|strong="H5031"\w*, \w the|strong="H8104"\w* \w wife|strong="H1696"\w* \w of|strong="H1121"\w* \w Shallum|strong="H7967"\w* \w the|strong="H8104"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Tikvah|strong="H8616"\w*, \w the|strong="H8104"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Harhas|strong="H2745"\w*, \w keeper|strong="H8104"\w* \w of|strong="H1121"\w* \w the|strong="H8104"\w* wardrobe (\w now|strong="H3212"\w* \w she|strong="H1931"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w* \w in|strong="H3427"\w* \w the|strong="H8104"\w* \w second|strong="H4932"\w* quarter); \w and|strong="H1121"\w* \w they|strong="H1931"\w* \w talked|strong="H1696"\w* \w with|strong="H1696"\w* \w her|strong="H1931"\w*. +\v 15 She said \w to|strong="H3478"\w* \w them|strong="H7971"\w*, “\w Yahweh|strong="H3068"\w* \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*, ‘Tell \w the|strong="H3541"\w* man \w who|strong="H3068"\w* \w sent|strong="H7971"\w* \w you|strong="H7971"\w* \w to|strong="H3478"\w* \w me|strong="H7971"\w*, +\v 16 “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w bring|strong="H7451"\w* \w evil|strong="H7451"\w* \w on|strong="H5921"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w* \w and|strong="H3063"\w* \w on|strong="H5921"\w* \w its|strong="H3605"\w* \w inhabitants|strong="H3427"\w*, \w even|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w which|strong="H3068"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w has|strong="H3068"\w* \w read|strong="H7121"\w*. +\v 17 \w Because|strong="H4616"\w* \w they|strong="H3808"\w* \w have|strong="H3027"\w* \w forsaken|strong="H5800"\w* \w me|strong="H5800"\w* \w and|strong="H3027"\w* \w have|strong="H3027"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H3027"\w* \w other|strong="H2088"\w* gods, \w that|strong="H3605"\w* \w they|strong="H3808"\w* \w might|strong="H4616"\w* \w provoke|strong="H3707"\w* \w me|strong="H5800"\w* \w to|strong="H3027"\w* \w anger|strong="H3707"\w* \w with|strong="H3027"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H3027"\w* \w their|strong="H3605"\w* \w hands|strong="H3027"\w*, \w therefore|strong="H4616"\w* \w my|strong="H3605"\w* \w wrath|strong="H2534"\w* \w shall|strong="H3027"\w* \w be|strong="H3808"\w* \w kindled|strong="H3341"\w* \w against|strong="H3027"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*, \w and|strong="H3027"\w* \w it|strong="H3808"\w* \w will|strong="H3027"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w quenched|strong="H3518"\w*.’” +\v 18 \w But|strong="H8085"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w who|strong="H3068"\w* \w sent|strong="H7971"\w* \w you|strong="H7971"\w* \w to|strong="H3478"\w* \w inquire|strong="H1875"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*, \w tell|strong="H8085"\w* \w him|strong="H7971"\w*, “\w Yahweh|strong="H3068"\w* \w the|strong="H8085"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*, ‘\w Concerning|strong="H1697"\w* \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w which|strong="H3068"\w* \w you|strong="H7971"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w*, +\v 19 \w because|strong="H5921"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w was|strong="H3068"\w* \w tender|strong="H7401"\w*, \w and|strong="H3068"\w* \w you|strong="H6440"\w* \w humbled|strong="H3665"\w* \w yourself|strong="H3665"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w when|strong="H1961"\w* \w you|strong="H6440"\w* \w heard|strong="H8085"\w* \w what|strong="H2088"\w* \w I|strong="H5921"\w* \w spoke|strong="H1696"\w* \w against|strong="H5921"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w* \w and|strong="H3068"\w* \w against|strong="H5921"\w* \w its|strong="H5921"\w* \w inhabitants|strong="H3427"\w*, \w that|strong="H8085"\w* \w they|strong="H3068"\w* \w should|strong="H3068"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w desolation|strong="H8047"\w* \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w curse|strong="H7045"\w*, \w and|strong="H3068"\w* \w have|strong="H1961"\w* \w torn|strong="H7167"\w* \w your|strong="H3068"\w* clothes \w and|strong="H3068"\w* \w wept|strong="H1058"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*, \w I|strong="H5921"\w* \w also|strong="H1571"\w* \w have|strong="H1961"\w* \w heard|strong="H8085"\w* \w you|strong="H6440"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 20 ‘\w Therefore|strong="H3651"\w* \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H4428"\w* gather \w you|strong="H3605"\w* \w to|strong="H7725"\w* \w your|strong="H3605"\w* fathers, \w and|strong="H7725"\w* \w you|strong="H3605"\w* \w will|strong="H4428"\w* \w be|strong="H3808"\w* gathered \w to|strong="H7725"\w* \w your|strong="H3605"\w* \w grave|strong="H6913"\w* \w in|strong="H5921"\w* \w peace|strong="H7965"\w*. \w Your|strong="H3605"\w* \w eyes|strong="H5869"\w* \w will|strong="H4428"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w which|strong="H1697"\w* \w I|strong="H2005"\w* \w will|strong="H4428"\w* \w bring|strong="H7725"\w* \w on|strong="H5921"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*.’”’” \w So|strong="H3651"\w* \w they|strong="H3651"\w* \w brought|strong="H7725"\w* \w this|strong="H2088"\w* \w message|strong="H1697"\w* \w back|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. +\c 23 +\p +\v 1 \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w sent|strong="H7971"\w*, \w and|strong="H3063"\w* \w they|strong="H3605"\w* gathered \w to|strong="H7971"\w* \w him|strong="H7971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*. +\v 2 \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H1419"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w* \w with|strong="H1004"\w* \w him|strong="H7121"\w*—\w with|strong="H1004"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w*, \w the|strong="H3605"\w* \w prophets|strong="H5030"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w both|strong="H3605"\w* \w small|strong="H6996"\w* \w and|strong="H3063"\w* \w great|strong="H1419"\w*; \w and|strong="H3063"\w* \w he|strong="H5704"\w* \w read|strong="H7121"\w* \w in|strong="H3427"\w* \w their|strong="H3605"\w* hearing \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w covenant|strong="H1285"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w found|strong="H4672"\w* \w in|strong="H3427"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 3 \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w stood|strong="H5975"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w pillar|strong="H5982"\w* \w and|strong="H6965"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3068"\w* \w walk|strong="H3212"\w* \w after|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H6965"\w* \w to|strong="H3068"\w* \w keep|strong="H8104"\w* \w his|strong="H3605"\w* \w commandments|strong="H4687"\w*, \w his|strong="H3605"\w* \w testimonies|strong="H5715"\w*, \w and|strong="H6965"\w* \w his|strong="H3605"\w* \w statutes|strong="H2708"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w heart|strong="H3820"\w* \w and|strong="H6965"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w soul|strong="H5315"\w*, \w to|strong="H3068"\w* \w confirm|strong="H6965"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w this|strong="H2088"\w* \w covenant|strong="H1285"\w* \w that|strong="H5971"\w* \w were|strong="H5971"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w this|strong="H2088"\w* \w book|strong="H5612"\w*; \w and|strong="H6965"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w agreed|strong="H5975"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w covenant|strong="H1285"\w*. +\p +\v 4 \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w commanded|strong="H6680"\w* \w Hilkiah|strong="H2518"\w* \w the|strong="H3605"\w* \w high|strong="H1419"\w* \w priest|strong="H3548"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w second|strong="H4932"\w* \w order|strong="H6680"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w keepers|strong="H8104"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w threshold|strong="H5592"\w*, \w to|strong="H3318"\w* \w bring|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1964"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w that|strong="H3605"\w* \w were|strong="H8064"\w* \w made|strong="H6213"\w* \w for|strong="H6213"\w* \w Baal|strong="H1168"\w*, \w for|strong="H6213"\w* \w the|strong="H3605"\w* Asherah, \w and|strong="H3068"\w* \w for|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*; \w and|strong="H3068"\w* \w he|strong="H6213"\w* \w burned|strong="H8313"\w* \w them|strong="H6213"\w* \w outside|strong="H2351"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w fields|strong="H7709"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w Kidron|strong="H6939"\w*, \w and|strong="H3068"\w* \w carried|strong="H5375"\w* \w their|strong="H3605"\w* \w ashes|strong="H6083"\w* \w to|strong="H3318"\w* \w Bethel|strong="H1008"\w*. +\v 5 \w He|strong="H3605"\w* got \w rid|strong="H7673"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w idolatrous|strong="H3649"\w* \w priests|strong="H3649"\w* whom \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w had|strong="H4428"\w* \w ordained|strong="H5414"\w* \w to|strong="H5414"\w* \w burn|strong="H6999"\w* \w incense|strong="H6999"\w* \w in|strong="H4428"\w* \w the|strong="H3605"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w in|strong="H4428"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w in|strong="H4428"\w* \w the|strong="H3605"\w* \w places|strong="H1116"\w* \w around|strong="H4524"\w* \w Jerusalem|strong="H3389"\w*; \w those|strong="H3605"\w* \w also|strong="H4428"\w* \w who|strong="H3605"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H5414"\w* \w Baal|strong="H1168"\w*, \w to|strong="H5414"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*, \w to|strong="H5414"\w* \w the|strong="H3605"\w* \w moon|strong="H3394"\w*, \w to|strong="H5414"\w* \w the|strong="H3605"\w* \w planets|strong="H4208"\w*, \w and|strong="H3063"\w* \w to|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*. +\v 6 \w He|strong="H3068"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w the|strong="H5921"\w* Asherah \w from|strong="H3318"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w outside|strong="H2351"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*, \w to|strong="H3318"\w* \w the|strong="H5921"\w* \w brook|strong="H5158"\w* \w Kidron|strong="H6939"\w*, \w and|strong="H1121"\w* \w burned|strong="H8313"\w* \w it|strong="H5921"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w brook|strong="H5158"\w* \w Kidron|strong="H6939"\w*, \w and|strong="H1121"\w* beat \w it|strong="H5921"\w* \w to|strong="H3318"\w* \w dust|strong="H6083"\w*, \w and|strong="H1121"\w* \w cast|strong="H7993"\w* \w its|strong="H5921"\w* \w dust|strong="H6083"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w graves|strong="H6913"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w common|strong="H1121"\w* \w people|strong="H5971"\w*. +\v 7 \w He|strong="H8033"\w* \w broke|strong="H5422"\w* \w down|strong="H5422"\w* \w the|strong="H3068"\w* \w houses|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w male|strong="H6945"\w* \w shrine|strong="H1004"\w* \w prostitutes|strong="H6945"\w* \w that|strong="H3068"\w* \w were|strong="H1004"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w where|strong="H8033"\w* \w the|strong="H3068"\w* women wove \w hangings|strong="H1004"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* Asherah. +\v 8 \w He|strong="H5704"\w* \w brought|strong="H3548"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w out|strong="H5921"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H8269"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w defiled|strong="H2930"\w* \w the|strong="H3605"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w where|strong="H8033"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w had|strong="H3063"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w*, \w from|strong="H5921"\w* \w Geba|strong="H1387"\w* \w to|strong="H5704"\w* Beersheba; \w and|strong="H3063"\w* \w he|strong="H5704"\w* \w broke|strong="H5422"\w* \w down|strong="H5422"\w* \w the|strong="H3605"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* \w gates|strong="H8179"\w* \w that|strong="H3605"\w* \w were|strong="H3063"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w entrance|strong="H6607"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w* \w of|strong="H8269"\w* \w Joshua|strong="H3091"\w* \w the|strong="H3605"\w* \w governor|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w which|strong="H5892"\w* \w were|strong="H3063"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w*’s \w left|strong="H8040"\w* \w hand|strong="H8040"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*. +\v 9 \w Nevertheless|strong="H3588"\w* \w the|strong="H3588"\w* \w priests|strong="H3548"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* didn’t \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w altar|strong="H4196"\w* \w in|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, \w but|strong="H3588"\w* \w they|strong="H3588"\w* ate \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w* \w among|strong="H8432"\w* \w their|strong="H3068"\w* brothers. +\v 10 \w He|strong="H1121"\w* \w defiled|strong="H2930"\w* \w Topheth|strong="H8612"\w*, \w which|strong="H1323"\w* \w is|strong="H1121"\w* \w in|strong="H1121"\w* \w the|strong="H5674"\w* \w valley|strong="H1516"\w* \w of|strong="H1121"\w* \w the|strong="H5674"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hinnom|strong="H2011"\w*, \w that|strong="H1121"\w* \w no|strong="H1115"\w* \w man|strong="H1121"\w* \w might|strong="H1121"\w* \w make|strong="H2930"\w* \w his|strong="H2930"\w* \w son|strong="H1121"\w* \w or|strong="H1121"\w* \w his|strong="H2930"\w* \w daughter|strong="H1323"\w* \w to|strong="H1121"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H5674"\w* fire \w to|strong="H1121"\w* \w Molech|strong="H4432"\w*. +\v 11 \w He|strong="H3068"\w* \w took|strong="H4428"\w* \w away|strong="H7673"\w* \w the|strong="H5414"\w* \w horses|strong="H5483"\w* \w that|strong="H3068"\w* \w the|strong="H5414"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w had|strong="H3068"\w* \w dedicated|strong="H5414"\w* \w to|strong="H3068"\w* \w the|strong="H5414"\w* \w sun|strong="H8121"\w*, \w at|strong="H3068"\w* \w the|strong="H5414"\w* entrance \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w by|strong="H3068"\w* \w the|strong="H5414"\w* \w room|strong="H1004"\w* \w of|strong="H4428"\w* Nathan Melech \w the|strong="H5414"\w* \w officer|strong="H5631"\w* \w who|strong="H3068"\w* \w was|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H5414"\w* \w court|strong="H1004"\w*; \w and|strong="H3063"\w* \w he|strong="H3068"\w* \w burned|strong="H8313"\w* \w the|strong="H5414"\w* \w chariots|strong="H4818"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w sun|strong="H8121"\w* \w with|strong="H8313"\w* fire. +\v 12 \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w broke|strong="H5422"\w* \w down|strong="H5422"\w* \w the|strong="H5921"\w* \w altars|strong="H4196"\w* \w that|strong="H3068"\w* \w were|strong="H3063"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w roof|strong="H1406"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w upper|strong="H5944"\w* \w room|strong="H1004"\w* \w of|strong="H4428"\w* Ahaz, \w which|strong="H3068"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w had|strong="H3068"\w* \w made|strong="H6213"\w*, \w and|strong="H3063"\w* \w the|strong="H5921"\w* \w altars|strong="H4196"\w* \w which|strong="H3068"\w* \w Manasseh|strong="H4519"\w* \w had|strong="H3068"\w* \w made|strong="H6213"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w courts|strong="H2691"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3063"\w* \w beat|strong="H4428"\w* \w them|strong="H5921"\w* \w down|strong="H5422"\w* \w from|strong="H5921"\w* \w there|strong="H8033"\w*, \w and|strong="H3063"\w* \w cast|strong="H7993"\w* \w their|strong="H3068"\w* \w dust|strong="H6083"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w brook|strong="H5158"\w* \w Kidron|strong="H6939"\w*. +\v 13 \w The|strong="H6440"\w* \w king|strong="H4428"\w* \w defiled|strong="H2930"\w* \w the|strong="H6440"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w that|strong="H3478"\w* \w were|strong="H3478"\w* \w before|strong="H6440"\w* \w Jerusalem|strong="H3389"\w*, \w which|strong="H1116"\w* \w were|strong="H3478"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w mountain|strong="H2022"\w* \w of|strong="H1121"\w* \w corruption|strong="H4889"\w*, \w which|strong="H1116"\w* \w Solomon|strong="H8010"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w had|strong="H3478"\w* \w built|strong="H1129"\w* \w for|strong="H5921"\w* \w Ashtoreth|strong="H6253"\w* \w the|strong="H6440"\w* \w abomination|strong="H8441"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w Sidonians|strong="H6722"\w*, \w and|strong="H1121"\w* \w for|strong="H5921"\w* \w Chemosh|strong="H3645"\w* \w the|strong="H6440"\w* \w abomination|strong="H8441"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w*, \w and|strong="H1121"\w* \w for|strong="H5921"\w* \w Milcom|strong="H4445"\w* \w the|strong="H6440"\w* \w abomination|strong="H8441"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*. +\v 14 He \w broke|strong="H7665"\w* \w in|strong="H7665"\w* \w pieces|strong="H7665"\w* \w the|strong="H7665"\w* \w pillars|strong="H4676"\w*, \w cut|strong="H3772"\w* \w down|strong="H3772"\w* \w the|strong="H7665"\w* Asherah poles, \w and|strong="H4725"\w* \w filled|strong="H4390"\w* \w their|strong="H4390"\w* \w places|strong="H4725"\w* \w with|strong="H4390"\w* \w men|strong="H3772"\w*’s \w bones|strong="H6106"\w*. +\p +\v 15 \w Moreover|strong="H1571"\w* \w the|strong="H6213"\w* \w altar|strong="H4196"\w* \w that|strong="H1931"\w* \w was|strong="H3478"\w* \w at|strong="H3478"\w* \w Bethel|strong="H1008"\w* \w and|strong="H1121"\w* \w the|strong="H6213"\w* \w high|strong="H1116"\w* \w place|strong="H1116"\w* \w which|strong="H1931"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H6213"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w*, \w who|strong="H1931"\w* \w made|strong="H6213"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w sin|strong="H2398"\w*, \w had|strong="H3478"\w* \w made|strong="H6213"\w*, \w even|strong="H1571"\w* \w that|strong="H1931"\w* \w altar|strong="H4196"\w* \w and|strong="H1121"\w* \w the|strong="H6213"\w* \w high|strong="H1116"\w* \w place|strong="H1116"\w* \w he|strong="H1931"\w* \w broke|strong="H5422"\w* \w down|strong="H5422"\w*; \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w burned|strong="H8313"\w* \w the|strong="H6213"\w* \w high|strong="H1116"\w* \w place|strong="H1116"\w* \w and|strong="H1121"\w* beat \w it|strong="H1931"\w* \w to|strong="H3478"\w* \w dust|strong="H6083"\w*, \w and|strong="H1121"\w* \w burned|strong="H8313"\w* \w the|strong="H6213"\w* Asherah. +\v 16 \w As|strong="H1697"\w* \w Josiah|strong="H2977"\w* \w turned|strong="H6437"\w* \w himself|strong="H2930"\w*, \w he|strong="H8033"\w* \w spied|strong="H7200"\w* \w the|strong="H5921"\w* \w tombs|strong="H6913"\w* \w that|strong="H7200"\w* \w were|strong="H1697"\w* \w there|strong="H8033"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w mountain|strong="H2022"\w*; \w and|strong="H3068"\w* \w he|strong="H8033"\w* \w sent|strong="H7971"\w*, \w and|strong="H3068"\w* \w took|strong="H3947"\w* \w the|strong="H5921"\w* \w bones|strong="H6106"\w* \w out|strong="H7971"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w tombs|strong="H6913"\w*, \w and|strong="H3068"\w* \w burned|strong="H8313"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*, \w and|strong="H3068"\w* \w defiled|strong="H2930"\w* \w it|strong="H7121"\w*, \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w the|strong="H5921"\w* \w man|strong="H7200"\w* \w of|strong="H3068"\w* \w God|strong="H3068"\w* \w proclaimed|strong="H7121"\w*, \w who|strong="H3068"\w* \w proclaimed|strong="H7121"\w* \w these|strong="H7121"\w* \w things|strong="H1697"\w*. +\v 17 \w Then|strong="H6213"\w* \w he|strong="H6213"\w* \w said|strong="H1697"\w*, “\w What|strong="H4100"\w* \w monument|strong="H6725"\w* \w is|strong="H4100"\w* \w that|strong="H7200"\w* \w which|strong="H1697"\w* \w I|strong="H5921"\w* \w see|strong="H7200"\w*?” +\p \w The|strong="H5921"\w* \w men|strong="H6213"\w* \w of|strong="H1697"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w told|strong="H1697"\w* \w him|strong="H7121"\w*, “\w It|strong="H7121"\w* \w is|strong="H4100"\w* \w the|strong="H5921"\w* \w tomb|strong="H6913"\w* \w of|strong="H1697"\w* \w the|strong="H5921"\w* \w man|strong="H7200"\w* \w of|strong="H1697"\w* \w God|strong="H1008"\w* \w who|strong="H3063"\w* \w came|strong="H1697"\w* \w from|strong="H5921"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w proclaimed|strong="H7121"\w* \w these|strong="H6213"\w* \w things|strong="H1697"\w* \w that|strong="H7200"\w* \w you|strong="H5921"\w* \w have|strong="H3063"\w* \w done|strong="H6213"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w of|strong="H1697"\w* \w Bethel|strong="H1008"\w*.” +\p +\v 18 He said, “Let \w him|strong="H3240"\w* \w be|strong="H5030"\w*! Let \w no|strong="H5030"\w* \w one|strong="H4422"\w* \w move|strong="H5128"\w* \w his|strong="H4422"\w* \w bones|strong="H6106"\w*.” So they let \w his|strong="H4422"\w* \w bones|strong="H6106"\w* \w alone|strong="H3240"\w*, \w with|strong="H8111"\w* \w the|strong="H5030"\w* \w bones|strong="H6106"\w* \w of|strong="H5030"\w* \w the|strong="H5030"\w* \w prophet|strong="H5030"\w* \w who|strong="H5030"\w* \w came|strong="H5030"\w* \w out|strong="H4422"\w* \w of|strong="H5030"\w* \w Samaria|strong="H8111"\w*. +\v 19 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w houses|strong="H1004"\w* \w also|strong="H1571"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w that|strong="H3605"\w* \w were|strong="H3478"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H4428"\w* \w Samaria|strong="H8111"\w*, \w which|strong="H1992"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w had|strong="H3478"\w* \w made|strong="H6213"\w* \w to|strong="H3478"\w* \w provoke|strong="H3707"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3478"\w* \w anger|strong="H3707"\w*, \w Josiah|strong="H2977"\w* \w took|strong="H5493"\w* \w away|strong="H5493"\w*, \w and|strong="H3478"\w* \w did|strong="H6213"\w* \w to|strong="H3478"\w* \w them|strong="H1992"\w* according \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w acts|strong="H6213"\w* \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w had|strong="H3478"\w* \w done|strong="H6213"\w* \w in|strong="H3478"\w* \w Bethel|strong="H1008"\w*. +\v 20 \w He|strong="H8033"\w* \w killed|strong="H2076"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w of|strong="H4196"\w* \w the|strong="H3605"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w that|strong="H3605"\w* \w were|strong="H5921"\w* \w there|strong="H8033"\w*, \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w altars|strong="H4196"\w*, \w and|strong="H7725"\w* \w burned|strong="H8313"\w* \w men|strong="H3605"\w*’s \w bones|strong="H6106"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*; \w and|strong="H7725"\w* \w he|strong="H8033"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Jerusalem|strong="H3389"\w*. +\p +\v 21 \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w commanded|strong="H6680"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, saying, “\w Keep|strong="H6213"\w* \w the|strong="H3605"\w* \w Passover|strong="H6453"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w as|strong="H6213"\w* \w it|strong="H5921"\w* \w is|strong="H3068"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w this|strong="H2088"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w covenant|strong="H1285"\w*.” +\v 22 \w Surely|strong="H3588"\w* \w there|strong="H2088"\w* \w was|strong="H3478"\w* \w not|strong="H3808"\w* \w kept|strong="H6213"\w* \w such|strong="H2088"\w* \w a|strong="H3068"\w* \w Passover|strong="H6453"\w* \w from|strong="H3478"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w judges|strong="H8199"\w* \w who|strong="H3605"\w* \w judged|strong="H8199"\w* \w Israel|strong="H3478"\w*, \w nor|strong="H3808"\w* \w in|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w nor|strong="H3808"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*; +\v 23 \w but|strong="H3588"\w* \w in|strong="H8141"\w* \w the|strong="H3588"\w* \w eighteenth|strong="H8083"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* \w Josiah|strong="H2977"\w*, \w this|strong="H2088"\w* \w Passover|strong="H6453"\w* \w was|strong="H3068"\w* \w kept|strong="H6213"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. +\p +\v 24 \w Moreover|strong="H1571"\w*, \w Josiah|strong="H2977"\w* \w removed|strong="H1197"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w had|strong="H3068"\w* familiar spirits, \w the|strong="H3605"\w* \w wizards|strong="H3049"\w*, \w and|strong="H3063"\w* \w the|strong="H3605"\w* \w teraphim|strong="H8655"\w*,\f + \fr 23:24 \ft teraphim were household idols.\f* \w and|strong="H3063"\w* \w the|strong="H3605"\w* \w idols|strong="H1544"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w abominations|strong="H8251"\w* \w that|strong="H7200"\w* \w were|strong="H1697"\w* \w seen|strong="H7200"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* land \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w in|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, \w that|strong="H7200"\w* \w he|strong="H3068"\w* \w might|strong="H3068"\w* \w confirm|strong="H6965"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w which|strong="H3068"\w* \w were|strong="H1697"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w that|strong="H7200"\w* \w Hilkiah|strong="H2518"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w found|strong="H4672"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 25 \w There|strong="H1961"\w* \w was|strong="H3068"\w* \w no|strong="H3808"\w* \w king|strong="H4428"\w* \w like|strong="H3644"\w* \w him|strong="H6440"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, \w who|strong="H3605"\w* \w turned|strong="H7725"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w heart|strong="H3824"\w*, \w and|strong="H6965"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w soul|strong="H5315"\w*, \w and|strong="H6965"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w might|strong="H3966"\w*, \w according|strong="H3644"\w* \w to|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w of|strong="H4428"\w* \w Moses|strong="H4872"\w*; \w and|strong="H6965"\w* \w there|strong="H1961"\w* \w was|strong="H3068"\w* \w none|strong="H3808"\w* \w like|strong="H3644"\w* \w him|strong="H6440"\w* \w who|strong="H3605"\w* \w arose|strong="H6965"\w* \w after|strong="H1961"\w* \w him|strong="H6440"\w*. +\v 26 Notwithstanding, \w Yahweh|strong="H3068"\w* didn’t \w turn|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H3605"\w* \w fierceness|strong="H2740"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w great|strong="H1419"\w* \w wrath|strong="H2740"\w*, \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w his|strong="H3605"\w* \w anger|strong="H3707"\w* \w burned|strong="H2734"\w* \w against|strong="H5921"\w* \w Judah|strong="H3063"\w*, \w because|strong="H5921"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w provocation|strong="H3708"\w* \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w Manasseh|strong="H4519"\w* \w had|strong="H3068"\w* \w provoked|strong="H3707"\w* \w him|strong="H5921"\w*. +\v 27 \w Yahweh|strong="H3068"\w* said, “\w I|strong="H5921"\w* \w will|strong="H3068"\w* \w also|strong="H1571"\w* \w remove|strong="H5493"\w* \w Judah|strong="H3063"\w* \w out|strong="H5921"\w* \w of|strong="H1004"\w* \w my|strong="H3068"\w* \w sight|strong="H6440"\w*, \w as|strong="H1961"\w* \w I|strong="H5921"\w* \w have|strong="H1961"\w* \w removed|strong="H5493"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3063"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w cast|strong="H3068"\w* \w off|strong="H5493"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w which|strong="H3068"\w* \w I|strong="H5921"\w* \w have|strong="H1961"\w* chosen, \w even|strong="H1571"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3063"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w which|strong="H3068"\w* \w I|strong="H5921"\w* said, ‘\w My|strong="H3068"\w* \w name|strong="H8034"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w there|strong="H8033"\w*.’” +\p +\v 28 \w Now|strong="H3117"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Josiah|strong="H2977"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*? +\v 29 \w In|strong="H5921"\w* \w his|strong="H5921"\w* \w days|strong="H3117"\w* \w Pharaoh|strong="H6549"\w* Necoh \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w went|strong="H3212"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w to|strong="H4191"\w* \w the|strong="H5921"\w* \w river|strong="H5104"\w* \w Euphrates|strong="H6578"\w*; \w and|strong="H4428"\w* \w King|strong="H4428"\w* \w Josiah|strong="H2977"\w* \w went|strong="H3212"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*, \w but|strong="H7200"\w* \w Pharaoh|strong="H6549"\w* Necoh \w killed|strong="H4191"\w* \w him|strong="H5921"\w* \w at|strong="H5921"\w* \w Megiddo|strong="H4023"\w* \w when|strong="H3117"\w* \w he|strong="H3117"\w* \w saw|strong="H7200"\w* \w him|strong="H5921"\w*. +\v 30 \w His|strong="H3947"\w* \w servants|strong="H5650"\w* \w carried|strong="H7392"\w* \w him|strong="H4427"\w* \w dead|strong="H4191"\w* \w in|strong="H4191"\w* \w a|strong="H3068"\w* \w chariot|strong="H7392"\w* \w from|strong="H1121"\w* \w Megiddo|strong="H4023"\w*, \w brought|strong="H3947"\w* \w him|strong="H4427"\w* \w to|strong="H4191"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H1121"\w* \w buried|strong="H6912"\w* \w him|strong="H4427"\w* \w in|strong="H4191"\w* \w his|strong="H3947"\w* \w own|strong="H5971"\w* \w tomb|strong="H6900"\w*. \w The|strong="H3947"\w* \w people|strong="H5971"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* land \w took|strong="H3947"\w* \w Jehoahaz|strong="H3059"\w* \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w*, \w and|strong="H1121"\w* \w anointed|strong="H4886"\w* \w him|strong="H4427"\w*, \w and|strong="H1121"\w* \w made|strong="H4427"\w* \w him|strong="H4427"\w* \w king|strong="H4427"\w* \w in|strong="H4191"\w* \w his|strong="H3947"\w* \w father|strong="H1121"\w*’s \w place|strong="H8478"\w*. +\p +\v 31 \w Jehoahaz|strong="H3059"\w* \w was|strong="H8034"\w* \w twenty-three|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H3389"\w* began \w to|strong="H3389"\w* \w reign|strong="H4427"\w*; \w and|strong="H1121"\w* \w he|strong="H3389"\w* \w reigned|strong="H4427"\w* \w three|strong="H7969"\w* \w months|strong="H2320"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H3059"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Hamutal|strong="H2537"\w* \w the|strong="H3414"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Jeremiah|strong="H3414"\w* \w of|strong="H1121"\w* \w Libnah|strong="H3841"\w*. +\v 32 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, according \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w his|strong="H3605"\w* fathers \w had|strong="H3068"\w* \w done|strong="H6213"\w*. +\v 33 \w Pharaoh|strong="H6549"\w* Necoh \w put|strong="H5414"\w* \w him|strong="H5414"\w* \w in|strong="H5921"\w* bonds \w at|strong="H5921"\w* \w Riblah|strong="H7247"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H3603"\w* \w Hamath|strong="H2574"\w*, \w that|strong="H5414"\w* \w he|strong="H5414"\w* might \w not|strong="H5414"\w* \w reign|strong="H4427"\w* \w in|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*; \w and|strong="H3967"\w* \w put|strong="H5414"\w* \w the|strong="H5921"\w* land \w to|strong="H5921"\w* \w a|strong="H3068"\w* \w tribute|strong="H6066"\w* \w of|strong="H3603"\w* \w one|strong="H4427"\w* \w hundred|strong="H3967"\w* \w talents|strong="H3603"\w* \w of|strong="H3603"\w* \w silver|strong="H3701"\w* \w and|strong="H3967"\w* \w a|strong="H3068"\w* \w talent|strong="H3603"\w*\f + \fr 23:33 \ft A talent is about 30 kilograms or 66 pounds or 965 Troy ounces\f* \w of|strong="H3603"\w* \w gold|strong="H2091"\w*. +\v 34 \w Pharaoh|strong="H6549"\w* Necoh \w made|strong="H4427"\w* Eliakim \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w* \w king|strong="H4427"\w* \w in|strong="H4191"\w* \w the|strong="H3947"\w* \w place|strong="H8478"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w* \w his|strong="H3947"\w* \w father|strong="H1121"\w*, \w and|strong="H1121"\w* \w changed|strong="H5437"\w* \w his|strong="H3947"\w* \w name|strong="H8034"\w* \w to|strong="H4191"\w* \w Jehoiakim|strong="H3079"\w*; \w but|strong="H3947"\w* \w he|strong="H8033"\w* \w took|strong="H3947"\w* \w Jehoahaz|strong="H3059"\w* \w away|strong="H3947"\w*, \w and|strong="H1121"\w* \w he|strong="H8033"\w* \w came|strong="H4714"\w* \w to|strong="H4191"\w* \w Egypt|strong="H4714"\w* \w and|strong="H1121"\w* \w died|strong="H4191"\w* \w there|strong="H8033"\w*. +\v 35 \w Jehoiakim|strong="H3079"\w* \w gave|strong="H5414"\w* \w the|strong="H5921"\w* \w silver|strong="H3701"\w* \w and|strong="H3701"\w* \w the|strong="H5921"\w* \w gold|strong="H2091"\w* \w to|strong="H5921"\w* \w Pharaoh|strong="H6547"\w*; \w but|strong="H5971"\w* \w he|strong="H5414"\w* \w taxed|strong="H6186"\w* \w the|strong="H5921"\w* land \w to|strong="H5921"\w* \w give|strong="H5414"\w* \w the|strong="H5921"\w* \w money|strong="H3701"\w* \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w commandment|strong="H6310"\w* \w of|strong="H6310"\w* \w Pharaoh|strong="H6547"\w*. \w He|strong="H5414"\w* \w exacted|strong="H5065"\w* \w the|strong="H5921"\w* \w silver|strong="H3701"\w* \w and|strong="H3701"\w* \w the|strong="H5921"\w* \w gold|strong="H2091"\w* \w of|strong="H6310"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w of|strong="H6310"\w* \w the|strong="H5921"\w* land, \w from|strong="H5921"\w* everyone \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w his|strong="H5414"\w* \w assessment|strong="H6187"\w*, \w to|strong="H5921"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H5921"\w* \w Pharaoh|strong="H6547"\w* Necoh. +\v 36 \w Jehoiakim|strong="H3079"\w* \w was|strong="H8034"\w* \w twenty-five|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H2568"\w* began \w to|strong="H3389"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H2568"\w* \w reigned|strong="H4427"\w* \w eleven|strong="H6240"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H4480"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Zebidah|strong="H2080"\w* \w the|strong="H4480"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Pedaiah|strong="H6305"\w* \w of|strong="H1121"\w* \w Rumah|strong="H7316"\w*. +\v 37 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, according \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w his|strong="H3605"\w* fathers \w had|strong="H3068"\w* \w done|strong="H6213"\w*. +\c 24 +\p +\v 1 \w In|strong="H8141"\w* \w his|strong="H7725"\w* \w days|strong="H3117"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w came|strong="H1961"\w* \w up|strong="H5927"\w*, \w and|strong="H7725"\w* \w Jehoiakim|strong="H3079"\w* \w became|strong="H1961"\w* \w his|strong="H7725"\w* \w servant|strong="H5650"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w*. \w Then|strong="H1961"\w* \w he|strong="H3117"\w* \w turned|strong="H7725"\w* \w and|strong="H7725"\w* \w rebelled|strong="H4775"\w* \w against|strong="H5927"\w* \w him|strong="H7725"\w*. +\v 2 \w Yahweh|strong="H3068"\w* \w sent|strong="H7971"\w* \w against|strong="H1696"\w* \w him|strong="H7971"\w* \w bands|strong="H1416"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w Chaldeans|strong="H3778"\w*, \w bands|strong="H1416"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* Syrians, \w bands|strong="H1416"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w Moabites|strong="H4124"\w*, \w and|strong="H1121"\w* \w bands|strong="H1416"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, \w and|strong="H1121"\w* \w sent|strong="H7971"\w* \w them|strong="H7971"\w* \w against|strong="H1696"\w* \w Judah|strong="H3063"\w* \w to|strong="H1696"\w* destroy \w it|strong="H1696"\w*, \w according|strong="H3027"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w spoke|strong="H1696"\w* \w by|strong="H3027"\w* \w his|strong="H3068"\w* \w servants|strong="H5650"\w* \w the|strong="H3068"\w* \w prophets|strong="H5030"\w*. +\v 3 \w Surely|strong="H6213"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w commandment|strong="H6310"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w this|strong="H6213"\w* \w came|strong="H1961"\w* \w on|strong="H5921"\w* \w Judah|strong="H3063"\w*, \w to|strong="H3068"\w* \w remove|strong="H5493"\w* \w them|strong="H5921"\w* \w out|strong="H5921"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w sight|strong="H6440"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w sins|strong="H2403"\w* \w of|strong="H3068"\w* \w Manasseh|strong="H4519"\w*, \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w*, +\v 4 \w and|strong="H3068"\w* \w also|strong="H1571"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w innocent|strong="H5355"\w* \w blood|strong="H1818"\w* \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w shed|strong="H8210"\w*; \w for|strong="H3068"\w* \w he|strong="H3068"\w* \w filled|strong="H4390"\w* \w Jerusalem|strong="H3389"\w* \w with|strong="H4390"\w* \w innocent|strong="H5355"\w* \w blood|strong="H1818"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w would|strong="H3068"\w* \w not|strong="H3808"\w* \w pardon|strong="H5545"\w*. +\v 5 \w Now|strong="H3117"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Jehoiakim|strong="H3079"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w did|strong="H6213"\w*, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*? +\v 6 So \w Jehoiakim|strong="H3079"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H8478"\w* fathers, \w and|strong="H1121"\w* \w Jehoiachin|strong="H3078"\w* \w his|strong="H8478"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H4427"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\p +\v 7 \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* didn’t \w come|strong="H1961"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* land \w any|strong="H3605"\w* \w more|strong="H3254"\w*; \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w had|strong="H1961"\w* \w taken|strong="H3947"\w*, \w from|strong="H3318"\w* \w the|strong="H3605"\w* \w brook|strong="H5158"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w river|strong="H5104"\w* \w Euphrates|strong="H6578"\w*, \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w belonged|strong="H1961"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*. +\p +\v 8 \w Jehoiachin|strong="H3078"\w* \w was|strong="H8034"\w* \w eighteen|strong="H8083"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H3389"\w* began \w to|strong="H3389"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H3389"\w* \w reigned|strong="H4427"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w* \w three|strong="H7969"\w* \w months|strong="H2320"\w*. \w His|strong="H3078"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Nehushta|strong="H5179"\w* \w the|strong="H8034"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* Elnathan \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*. +\v 9 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, according \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w his|strong="H3605"\w* father \w had|strong="H3068"\w* \w done|strong="H6213"\w*. +\v 10 \w At|strong="H4428"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w* \w the|strong="H5927"\w* \w servants|strong="H5650"\w* \w of|strong="H4428"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H4428"\w* \w the|strong="H5927"\w* \w city|strong="H5892"\w* \w was|strong="H1931"\w* \w besieged|strong="H4692"\w*. +\v 11 \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w came|strong="H5650"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w while|strong="H5921"\w* \w his|strong="H5921"\w* \w servants|strong="H5650"\w* \w were|strong="H5650"\w* \w besieging|strong="H6696"\w* \w it|strong="H5921"\w*, +\v 12 \w and|strong="H3063"\w* \w Jehoiachin|strong="H3078"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon—\w he|strong="H1931"\w*, \w his|strong="H3947"\w* mother, \w his|strong="H3947"\w* \w servants|strong="H5650"\w*, \w his|strong="H3947"\w* \w princes|strong="H8269"\w*, \w and|strong="H3063"\w* \w his|strong="H3947"\w* \w officers|strong="H8269"\w*; \w and|strong="H3063"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w captured|strong="H3947"\w* \w him|strong="H5921"\w* \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w eighth|strong="H8083"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w his|strong="H3947"\w* \w reign|strong="H4427"\w*. +\v 13 \w He|strong="H8033"\w* \w carried|strong="H6213"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w there|strong="H8033"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* treasures \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w and|strong="H3478"\w* \w the|strong="H3605"\w* treasures \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3478"\w* \w cut|strong="H7112"\w* \w in|strong="H3478"\w* \w pieces|strong="H7112"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H4428"\w* \w gold|strong="H2091"\w* \w which|strong="H3068"\w* \w Solomon|strong="H8010"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w had|strong="H3068"\w* \w made|strong="H6213"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1004"\w*, \w as|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w said|strong="H1696"\w*. +\v 14 \w He|strong="H3605"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w all|strong="H3605"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w*, \w and|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H8269"\w* \w valor|strong="H2428"\w*, \w even|strong="H3808"\w* \w ten|strong="H6235"\w* thousand \w captives|strong="H1473"\w*, \w and|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w craftsmen|strong="H2796"\w* \w and|strong="H5971"\w* \w the|strong="H3605"\w* \w smiths|strong="H4525"\w*. \w No|strong="H3808"\w* \w one|strong="H3605"\w* \w remained|strong="H7604"\w* \w except|strong="H2108"\w* \w the|strong="H3605"\w* \w poorest|strong="H1803"\w* \w people|strong="H5971"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* land. +\v 15 \w He|strong="H3389"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w Jehoiachin|strong="H3078"\w* \w to|strong="H3212"\w* Babylon, \w with|strong="H3389"\w* \w the|strong="H1540"\w* \w king|strong="H4428"\w*’s mother, \w the|strong="H1540"\w* \w king|strong="H4428"\w*’s wives, \w his|strong="H1540"\w* \w officers|strong="H5631"\w*, \w and|strong="H4428"\w* \w the|strong="H1540"\w* chief men \w of|strong="H4428"\w* \w the|strong="H1540"\w* land. \w He|strong="H3389"\w* \w carried|strong="H1540"\w* \w them|strong="H1540"\w* \w into|strong="H1540"\w* \w captivity|strong="H1473"\w* \w from|strong="H1540"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H3212"\w* Babylon. +\v 16 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H1368"\w* \w of|strong="H4428"\w* \w might|strong="H2428"\w*, \w even|strong="H6213"\w* \w seven|strong="H7651"\w* thousand, \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w craftsmen|strong="H2796"\w* \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w smiths|strong="H4525"\w* \w one|strong="H3605"\w* thousand, \w all|strong="H3605"\w* \w of|strong="H4428"\w* \w them|strong="H6213"\w* \w strong|strong="H2428"\w* \w and|strong="H4428"\w* \w fit|strong="H6213"\w* \w for|strong="H6213"\w* \w war|strong="H4421"\w*, \w even|strong="H6213"\w* \w them|strong="H6213"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w brought|strong="H6213"\w* \w captive|strong="H1473"\w* \w to|strong="H6213"\w* Babylon. +\v 17 \w The|strong="H8478"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w made|strong="H4427"\w* \w Mattaniah|strong="H4983"\w*, Jehoiachin’s father’s brother, \w king|strong="H4428"\w* \w in|strong="H4428"\w* \w his|strong="H5437"\w* \w place|strong="H8478"\w*, \w and|strong="H4428"\w* \w changed|strong="H5437"\w* \w his|strong="H5437"\w* \w name|strong="H8034"\w* \w to|strong="H4428"\w* \w Zedekiah|strong="H6667"\w*. +\p +\v 18 \w Zedekiah|strong="H6667"\w* \w was|strong="H8034"\w* \w twenty-one|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H3389"\w* began \w to|strong="H3389"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H3389"\w* \w reigned|strong="H4427"\w* \w eleven|strong="H6240"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H6667"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Hamutal|strong="H2537"\w* \w the|strong="H3414"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Jeremiah|strong="H3414"\w* \w of|strong="H1121"\w* \w Libnah|strong="H3841"\w*. +\v 19 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, according \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Jehoiakim|strong="H3079"\w* \w had|strong="H3068"\w* \w done|strong="H6213"\w*. +\v 20 \w For|strong="H3588"\w* \w through|strong="H5921"\w* \w the|strong="H6440"\w* \w anger|strong="H6440"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*, \w this|strong="H3588"\w* \w happened|strong="H1961"\w* \w in|strong="H5921"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H3063"\w* \w Judah|strong="H3063"\w*, \w until|strong="H5704"\w* \w he|strong="H3588"\w* \w had|strong="H3068"\w* \w cast|strong="H7993"\w* \w them|strong="H5921"\w* \w out|strong="H7993"\w* \w from|strong="H6440"\w* \w his|strong="H3068"\w* \w presence|strong="H6440"\w*. +\p \w Then|strong="H1961"\w* \w Zedekiah|strong="H6667"\w* \w rebelled|strong="H4775"\w* \w against|strong="H5921"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon. +\c 25 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H3605"\w* \w ninth|strong="H8671"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* \w reign|strong="H4427"\w*, \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w tenth|strong="H6224"\w* \w month|strong="H2320"\w*, \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w tenth|strong="H6224"\w* \w day|strong="H2320"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w month|strong="H2320"\w*, \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w came|strong="H1961"\w*, \w he|strong="H1931"\w* \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w army|strong="H2428"\w*, \w against|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H4428"\w* \w encamped|strong="H2583"\w* \w against|strong="H5921"\w* \w it|strong="H1931"\w*; \w and|strong="H4428"\w* \w they|strong="H5921"\w* \w built|strong="H1129"\w* \w forts|strong="H1785"\w* \w against|strong="H5921"\w* \w it|strong="H1931"\w* \w around|strong="H5439"\w* \w it|strong="H1931"\w*. +\v 2 \w So|strong="H5704"\w* \w the|strong="H5704"\w* \w city|strong="H5892"\w* \w was|strong="H5892"\w* \w besieged|strong="H4692"\w* \w until|strong="H5704"\w* \w the|strong="H5704"\w* \w eleventh|strong="H6249"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* \w Zedekiah|strong="H6667"\w*. +\v 3 \w On|strong="H1961"\w* \w the|strong="H2388"\w* \w ninth|strong="H8672"\w* \w day|strong="H2320"\w* \w of|strong="H5892"\w* \w the|strong="H2388"\w* fourth \w month|strong="H2320"\w*, \w the|strong="H2388"\w* \w famine|strong="H7458"\w* \w was|strong="H1961"\w* \w severe|strong="H2388"\w* \w in|strong="H5892"\w* \w the|strong="H2388"\w* \w city|strong="H5892"\w*, \w so|strong="H1961"\w* \w that|strong="H5971"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w bread|strong="H3899"\w* \w for|strong="H5892"\w* \w the|strong="H2388"\w* \w people|strong="H5971"\w* \w of|strong="H5892"\w* \w the|strong="H2388"\w* land. +\v 4 \w Then|strong="H4428"\w* \w a|strong="H3068"\w* \w breach|strong="H1234"\w* \w was|strong="H5892"\w* \w made|strong="H3605"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H4428"\w* \w war|strong="H4421"\w* fled \w by|strong="H5921"\w* \w night|strong="H3915"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w* \w between|strong="H4421"\w* \w the|strong="H3605"\w* \w two|strong="H2346"\w* \w walls|strong="H2346"\w*, \w which|strong="H5892"\w* \w was|strong="H5892"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w garden|strong="H1588"\w* (\w now|strong="H3212"\w* \w the|strong="H3605"\w* \w Chaldeans|strong="H3778"\w* \w were|strong="H4428"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w around|strong="H5439"\w* \w it|strong="H5921"\w*); \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w went|strong="H3212"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w Arabah|strong="H6160"\w*. +\v 5 \w But|strong="H3605"\w* \w the|strong="H3605"\w* Chaldean \w army|strong="H2428"\w* \w pursued|strong="H7291"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w and|strong="H4428"\w* \w overtook|strong="H5381"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w plains|strong="H6160"\w* \w of|strong="H4428"\w* \w Jericho|strong="H3405"\w*; \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w army|strong="H2428"\w* \w was|strong="H4428"\w* \w scattered|strong="H6327"\w* \w from|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 6 \w Then|strong="H1696"\w* \w they|strong="H4428"\w* \w captured|strong="H8610"\w* \w the|strong="H5927"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w carried|strong="H5927"\w* \w him|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H1696"\w* \w the|strong="H5927"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w to|strong="H1696"\w* \w Riblah|strong="H7247"\w*; \w and|strong="H4428"\w* \w they|strong="H4428"\w* \w passed|strong="H1696"\w* \w judgment|strong="H4941"\w* \w on|strong="H5927"\w* \w him|strong="H5927"\w*. +\v 7 \w They|strong="H5178"\w* \w killed|strong="H7819"\w* \w Zedekiah|strong="H6667"\w*’s \w sons|strong="H1121"\w* \w before|strong="H5869"\w* \w his|strong="H6667"\w* \w eyes|strong="H5869"\w*, \w then|strong="H1121"\w* \w put|strong="H5786"\w* \w out|strong="H5786"\w* \w Zedekiah|strong="H6667"\w*’s \w eyes|strong="H5869"\w*, bound \w him|strong="H5869"\w* \w in|strong="H1121"\w* \w fetters|strong="H5178"\w*, \w and|strong="H1121"\w* carried \w him|strong="H5869"\w* \w to|strong="H1121"\w* Babylon. +\p +\v 8 \w Now|strong="H7227"\w* \w in|strong="H8141"\w* \w the|strong="H5650"\w* \w fifth|strong="H2549"\w* \w month|strong="H2320"\w*, \w on|strong="H3389"\w* \w the|strong="H5650"\w* \w seventh|strong="H7651"\w* \w day|strong="H2320"\w* \w of|strong="H4428"\w* \w the|strong="H5650"\w* \w month|strong="H2320"\w*, \w which|strong="H1931"\w* \w was|strong="H1931"\w* \w the|strong="H5650"\w* \w nineteenth|strong="H8672"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w Nebuzaradan|strong="H5018"\w* \w the|strong="H5650"\w* \w captain|strong="H7227"\w* \w of|strong="H4428"\w* \w the|strong="H5650"\w* \w guard|strong="H2876"\w*, \w a|strong="H3068"\w* \w servant|strong="H5650"\w* \w of|strong="H4428"\w* \w the|strong="H5650"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w came|strong="H5650"\w* \w to|strong="H3389"\w* \w Jerusalem|strong="H3389"\w*. +\v 9 \w He|strong="H3068"\w* \w burned|strong="H8313"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w houses|strong="H1004"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*. \w He|strong="H3068"\w* \w burned|strong="H8313"\w* \w every|strong="H3605"\w* \w great|strong="H1419"\w* \w house|strong="H1004"\w* \w with|strong="H8313"\w* fire. +\v 10 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H2428"\w* \w of|strong="H2346"\w* \w the|strong="H3605"\w* \w Chaldeans|strong="H3778"\w*, \w who|strong="H3605"\w* \w were|strong="H2428"\w* \w with|strong="H3389"\w* \w the|strong="H3605"\w* \w captain|strong="H7227"\w* \w of|strong="H2346"\w* \w the|strong="H3605"\w* \w guard|strong="H2876"\w*, \w broke|strong="H5422"\w* \w down|strong="H5422"\w* \w the|strong="H3605"\w* \w walls|strong="H2346"\w* \w around|strong="H5439"\w* \w Jerusalem|strong="H3389"\w*. +\v 11 \w Nebuzaradan|strong="H5018"\w* \w the|strong="H5921"\w* \w captain|strong="H7227"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w guard|strong="H2876"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w captive|strong="H1540"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w left|strong="H7604"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w and|strong="H4428"\w* \w those|strong="H5921"\w* \w who|strong="H5971"\w* \w had|strong="H4428"\w* \w deserted|strong="H5307"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon—\w all|strong="H5921"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w multitude|strong="H1995"\w*. +\v 12 \w But|strong="H7604"\w* \w the|strong="H7604"\w* \w captain|strong="H7227"\w* \w of|strong="H7227"\w* \w the|strong="H7604"\w* \w guard|strong="H2876"\w* \w left|strong="H7604"\w* \w some|strong="H7227"\w* \w of|strong="H7227"\w* \w the|strong="H7604"\w* \w poorest|strong="H1803"\w* \w of|strong="H7227"\w* \w the|strong="H7604"\w* land \w to|strong="H7227"\w* work \w the|strong="H7604"\w* vineyards \w and|strong="H7227"\w* fields. +\p +\v 13 \w The|strong="H5375"\w* \w Chaldeans|strong="H3778"\w* \w broke|strong="H7665"\w* \w up|strong="H5375"\w* \w the|strong="H5375"\w* \w pillars|strong="H5982"\w* \w of|strong="H1004"\w* \w bronze|strong="H5178"\w* \w that|strong="H3068"\w* \w were|strong="H1004"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w and|strong="H3068"\w* \w the|strong="H5375"\w* \w bases|strong="H4350"\w* \w and|strong="H3068"\w* \w the|strong="H5375"\w* \w bronze|strong="H5178"\w* \w sea|strong="H3220"\w* \w that|strong="H3068"\w* \w were|strong="H1004"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w carried|strong="H5375"\w* \w the|strong="H5375"\w* \w bronze|strong="H5178"\w* \w pieces|strong="H7665"\w* \w to|strong="H3068"\w* Babylon. +\v 14 \w They|strong="H3605"\w* \w took|strong="H3947"\w* \w away|strong="H3947"\w* \w the|strong="H3605"\w* \w pots|strong="H5518"\w*, \w the|strong="H3605"\w* \w shovels|strong="H3257"\w*, \w the|strong="H3605"\w* \w snuffers|strong="H4212"\w*, \w the|strong="H3605"\w* \w spoons|strong="H3709"\w*, \w and|strong="H5178"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H3627"\w* \w bronze|strong="H5178"\w* \w with|strong="H3627"\w* \w which|strong="H3627"\w* \w they|strong="H3605"\w* \w ministered|strong="H8334"\w*. +\v 15 \w The|strong="H3947"\w* \w captain|strong="H7227"\w* \w of|strong="H4219"\w* \w the|strong="H3947"\w* \w guard|strong="H2876"\w* \w took|strong="H3947"\w* \w away|strong="H3947"\w* \w the|strong="H3947"\w* fire pans, \w the|strong="H3947"\w* \w basins|strong="H4219"\w*, \w that|strong="H3701"\w* \w which|strong="H2091"\w* \w was|strong="H2091"\w* \w of|strong="H4219"\w* \w gold|strong="H2091"\w*, \w for|strong="H3701"\w* \w gold|strong="H2091"\w*, \w and|strong="H3701"\w* \w that|strong="H3701"\w* \w which|strong="H2091"\w* \w was|strong="H2091"\w* \w of|strong="H4219"\w* \w silver|strong="H3701"\w*, \w for|strong="H3701"\w* \w silver|strong="H3701"\w*. +\v 16 \w The|strong="H3605"\w* \w two|strong="H8147"\w* \w pillars|strong="H5982"\w*, \w the|strong="H3605"\w* \w one|strong="H3605"\w* \w sea|strong="H3220"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w bases|strong="H4350"\w*, \w which|strong="H3068"\w* \w Solomon|strong="H8010"\w* \w had|strong="H3068"\w* \w made|strong="H6213"\w* \w for|strong="H6213"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w the|strong="H3605"\w* \w bronze|strong="H5178"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* \w vessels|strong="H3627"\w* \w was|strong="H3068"\w* \w not|strong="H3808"\w* \w weighed|strong="H4948"\w*. +\v 17 \w The|strong="H3605"\w* \w height|strong="H6967"\w* \w of|strong="H5982"\w* \w the|strong="H3605"\w* \w one|strong="H3605"\w* \w pillar|strong="H5982"\w* \w was|strong="H6967"\w* \w eighteen|strong="H8083"\w* cubits,\f + \fr 25:17 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w and|strong="H5178"\w* \w a|strong="H3068"\w* \w capital|strong="H3805"\w* \w of|strong="H5982"\w* \w bronze|strong="H5178"\w* \w was|strong="H6967"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*. \w The|strong="H3605"\w* \w height|strong="H6967"\w* \w of|strong="H5982"\w* \w the|strong="H3605"\w* \w capital|strong="H3805"\w* \w was|strong="H6967"\w* \w three|strong="H7969"\w* cubits, \w with|strong="H5921"\w* \w network|strong="H7639"\w* \w and|strong="H5178"\w* \w pomegranates|strong="H7416"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w capital|strong="H3805"\w* \w around|strong="H5439"\w* \w it|strong="H5921"\w*, \w all|strong="H3605"\w* \w of|strong="H5982"\w* \w bronze|strong="H5178"\w*; \w and|strong="H5178"\w* \w the|strong="H3605"\w* \w second|strong="H8145"\w* \w pillar|strong="H5982"\w* \w with|strong="H5921"\w* \w its|strong="H3605"\w* \w network|strong="H7639"\w* \w was|strong="H6967"\w* \w like|strong="H5921"\w* \w these|strong="H3605"\w*. +\p +\v 18 \w The|strong="H3947"\w* \w captain|strong="H7227"\w* \w of|strong="H7218"\w* \w the|strong="H3947"\w* \w guard|strong="H2876"\w* \w took|strong="H3947"\w* \w Seraiah|strong="H8304"\w* \w the|strong="H3947"\w* \w chief|strong="H7218"\w* \w priest|strong="H3548"\w*, \w Zephaniah|strong="H6846"\w* \w the|strong="H3947"\w* \w second|strong="H4932"\w* \w priest|strong="H3548"\w*, \w and|strong="H3548"\w* \w the|strong="H3947"\w* \w three|strong="H7969"\w* \w keepers|strong="H8104"\w* \w of|strong="H7218"\w* \w the|strong="H3947"\w* \w threshold|strong="H5592"\w*; +\v 19 \w and|strong="H4428"\w* \w out|strong="H4672"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w* \w he|strong="H1931"\w* \w took|strong="H3947"\w* \w an|strong="H3947"\w* \w officer|strong="H5631"\w* \w who|strong="H1931"\w* \w was|strong="H1931"\w* \w set|strong="H6496"\w* \w over|strong="H5921"\w* \w the|strong="H6440"\w* \w men|strong="H5971"\w* \w of|strong="H4428"\w* \w war|strong="H4421"\w*; \w and|strong="H4428"\w* \w five|strong="H2568"\w* \w men|strong="H5971"\w* \w of|strong="H4428"\w* \w those|strong="H4480"\w* \w who|strong="H1931"\w* \w saw|strong="H7200"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w face|strong="H6440"\w*, \w who|strong="H1931"\w* \w were|strong="H5971"\w* \w found|strong="H4672"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w*; \w and|strong="H4428"\w* \w the|strong="H6440"\w* \w scribe|strong="H5608"\w*, \w the|strong="H6440"\w* \w captain|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w army|strong="H6635"\w*, \w who|strong="H1931"\w* \w mustered|strong="H6633"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*, \w and|strong="H4428"\w* \w sixty|strong="H8346"\w* \w men|strong="H5971"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w who|strong="H1931"\w* \w were|strong="H5971"\w* \w found|strong="H4672"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w*. +\v 20 \w Nebuzaradan|strong="H5018"\w* \w the|strong="H5921"\w* \w captain|strong="H7227"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w guard|strong="H2876"\w* \w took|strong="H3947"\w* \w them|strong="H5921"\w*, \w and|strong="H4428"\w* \w brought|strong="H3947"\w* \w them|strong="H5921"\w* \w to|strong="H3212"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w to|strong="H3212"\w* \w Riblah|strong="H7247"\w*. +\v 21 \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w attacked|strong="H5221"\w* \w them|strong="H5921"\w* \w and|strong="H3063"\w* \w put|strong="H4191"\w* \w them|strong="H5921"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w* \w at|strong="H5921"\w* \w Riblah|strong="H7247"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H4428"\w* \w Hamath|strong="H2574"\w*. \w So|strong="H4191"\w* \w Judah|strong="H3063"\w* \w was|strong="H4428"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w captive|strong="H1540"\w* \w out|strong="H5921"\w* \w of|strong="H4428"\w* \w his|strong="H5921"\w* land. +\p +\v 22 \w As|strong="H5971"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w left|strong="H7604"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w whom|strong="H5971"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon \w had|strong="H4428"\w* \w left|strong="H7604"\w*, \w even|strong="H5921"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w* \w he|strong="H5921"\w* \w made|strong="H6485"\w* \w Gedaliah|strong="H1436"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahikam, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shaphan|strong="H8227"\w*, \w governor|strong="H6485"\w*. +\v 23 \w Now|strong="H3588"\w* \w when|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w forces|strong="H2428"\w*, \w they|strong="H1992"\w* \w and|strong="H1121"\w* \w their|strong="H3605"\w* \w men|strong="H1121"\w*, \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon \w had|strong="H4428"\w* \w made|strong="H6485"\w* \w Gedaliah|strong="H1436"\w* \w governor|strong="H8269"\w*, \w they|strong="H1992"\w* \w came|strong="H4428"\w* \w to|strong="H8085"\w* \w Gedaliah|strong="H1436"\w* \w to|strong="H8085"\w* \w Mizpah|strong="H4709"\w*, \w even|strong="H3588"\w* \w Ishmael|strong="H3458"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nethaniah|strong="H5418"\w*, \w Johanan|strong="H3110"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kareah|strong="H7143"\w*, \w Seraiah|strong="H8304"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Tanhumeth|strong="H8576"\w* \w the|strong="H3605"\w* \w Netophathite|strong="H5200"\w*, \w and|strong="H1121"\w* \w Jaazaniah|strong="H2970"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w Maacathite|strong="H4602"\w*, \w they|strong="H1992"\w* \w and|strong="H1121"\w* \w their|strong="H3605"\w* \w men|strong="H1121"\w*. +\v 24 \w Gedaliah|strong="H1436"\w* \w swore|strong="H7650"\w* \w to|strong="H4428"\w* \w them|strong="H3190"\w* \w and|strong="H4428"\w* \w to|strong="H4428"\w* \w their|strong="H5647"\w* \w men|strong="H5650"\w*, \w and|strong="H4428"\w* said \w to|strong="H4428"\w* \w them|strong="H3190"\w*, “Don’t \w be|strong="H4428"\w* \w afraid|strong="H3372"\w* \w because|strong="H3372"\w* \w of|strong="H4428"\w* \w the|strong="H5647"\w* \w servants|strong="H5650"\w* \w of|strong="H4428"\w* \w the|strong="H5647"\w* \w Chaldeans|strong="H3778"\w*. \w Dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5647"\w* land \w and|strong="H4428"\w* \w serve|strong="H5647"\w* \w the|strong="H5647"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w and|strong="H4428"\w* \w it|strong="H3190"\w* \w will|strong="H4428"\w* \w be|strong="H4428"\w* \w well|strong="H3190"\w* \w with|strong="H3427"\w* \w you|strong="H5647"\w*.” +\p +\v 25 \w But|strong="H1961"\w* \w in|strong="H4191"\w* \w the|strong="H5221"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w*, \w Ishmael|strong="H3458"\w* \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nethaniah|strong="H5418"\w*, \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Elishama, \w of|strong="H1121"\w* \w the|strong="H5221"\w* \w royal|strong="H4410"\w* \w offspring|strong="H2233"\w* \w came|strong="H1961"\w*, \w and|strong="H1121"\w* \w ten|strong="H6235"\w* \w men|strong="H1121"\w* \w with|strong="H4191"\w* \w him|strong="H5221"\w*, \w and|strong="H1121"\w* \w struck|strong="H5221"\w* \w Gedaliah|strong="H1436"\w* \w so|strong="H1961"\w* \w that|strong="H1121"\w* \w he|strong="H5221"\w* \w died|strong="H4191"\w*, \w with|strong="H4191"\w* \w the|strong="H5221"\w* \w Jews|strong="H3064"\w* \w and|strong="H1121"\w* \w the|strong="H5221"\w* \w Chaldeans|strong="H3778"\w* \w that|strong="H1121"\w* \w were|strong="H1961"\w* \w with|strong="H4191"\w* \w him|strong="H5221"\w* \w at|strong="H2320"\w* \w Mizpah|strong="H4709"\w*. +\v 26 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w both|strong="H3605"\w* \w small|strong="H6996"\w* \w and|strong="H6965"\w* \w great|strong="H1419"\w*, \w and|strong="H6965"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* \w forces|strong="H2428"\w* \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w came|strong="H4714"\w* \w to|strong="H5704"\w* \w Egypt|strong="H4714"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H5971"\w* \w afraid|strong="H3372"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* \w Chaldeans|strong="H3778"\w*. +\v 27 \w In|strong="H8141"\w* \w the|strong="H5375"\w* \w thirty-seventh|strong="H7970"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w the|strong="H5375"\w* \w captivity|strong="H1546"\w* \w of|strong="H4428"\w* \w Jehoiachin|strong="H3078"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w in|strong="H8141"\w* \w the|strong="H5375"\w* \w twelfth|strong="H8147"\w* \w month|strong="H2320"\w*, \w on|strong="H1961"\w* \w the|strong="H5375"\w* \w twenty-seventh|strong="H6242"\w* \w day|strong="H2320"\w* \w of|strong="H4428"\w* \w the|strong="H5375"\w* \w month|strong="H2320"\w*, Evilmerodach \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w in|strong="H8141"\w* \w the|strong="H5375"\w* \w year|strong="H8141"\w* \w that|strong="H4428"\w* \w he|strong="H1004"\w* \w began|strong="H3063"\w* \w to|strong="H1961"\w* \w reign|strong="H4427"\w*, \w released|strong="H5375"\w* \w Jehoiachin|strong="H3078"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w out|strong="H8147"\w* \w of|strong="H4428"\w* \w prison|strong="H1004"\w*, +\v 28 \w and|strong="H4428"\w* \w he|strong="H5414"\w* \w spoke|strong="H1696"\w* \w kindly|strong="H2896"\w* \w to|strong="H1696"\w* \w him|strong="H5414"\w* \w and|strong="H4428"\w* \w set|strong="H5414"\w* \w his|strong="H5414"\w* \w throne|strong="H3678"\w* \w above|strong="H5921"\w* \w the|strong="H5921"\w* \w throne|strong="H3678"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w who|strong="H4428"\w* \w were|strong="H4428"\w* \w with|strong="H1696"\w* \w him|strong="H5414"\w* \w in|strong="H5921"\w* Babylon, +\v 29 \w and|strong="H3117"\w* \w changed|strong="H8132"\w* \w his|strong="H3605"\w* \w prison|strong="H3608"\w* garments. \w Jehoiachin|strong="H8132"\w* ate \w bread|strong="H3899"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w* \w continually|strong="H8548"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w his|strong="H3605"\w* \w life|strong="H2416"\w*; +\v 30 \w and|strong="H4428"\w* \w for|strong="H3117"\w* \w his|strong="H3605"\w* allowance, \w there|strong="H3117"\w* \w was|strong="H1697"\w* \w a|strong="H3068"\w* \w continual|strong="H8548"\w* allowance \w given|strong="H5414"\w* \w him|strong="H5414"\w* \w from|strong="H3117"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w every|strong="H3605"\w* \w day|strong="H3117"\w* \w a|strong="H3068"\w* \w portion|strong="H1697"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* \w life|strong="H2416"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/14-1CHeng-web.usfm b/bibles/eng-web_usfm/14-1CHeng-web.usfm new file mode 100644 index 0000000..3c72718 --- /dev/null +++ b/bibles/eng-web_usfm/14-1CHeng-web.usfm @@ -0,0 +1,1216 @@ +\id 1CH World English Bible (WEB) +\ide UTF-8 +\h 1 Chronicles +\toc1 The First Book of Chronicles +\toc2 1 Chronicles +\toc3 1Ch +\mt1 The First Book of Chronicles +\c 1 +\p +\v 1 Adam, \w Seth|strong="H8352"\w*, Enosh, +\v 2 \w Kenan|strong="H7018"\w*, \w Mahalalel|strong="H4111"\w*, \w Jared|strong="H3382"\w*, +\v 3 \w Enoch|strong="H2585"\w*, \w Methuselah|strong="H4968"\w*, \w Lamech|strong="H3929"\w*, +\v 4 \w Noah|strong="H5146"\w*, \w Shem|strong="H8035"\w*, \w Ham|strong="H2526"\w*, \w and|strong="H8035"\w* \w Japheth|strong="H3315"\w*. +\p +\v 5 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Japheth|strong="H3315"\w*: \w Gomer|strong="H1586"\w*, \w Magog|strong="H4031"\w*, \w Madai|strong="H4074"\w*, \w Javan|strong="H3120"\w*, \w Tubal|strong="H8422"\w*, \w Meshech|strong="H4902"\w*, \w and|strong="H1121"\w* \w Tiras|strong="H8494"\w*. +\v 6 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Gomer|strong="H1586"\w*: Ashkenaz, Diphath, \w and|strong="H1121"\w* \w Togarmah|strong="H8425"\w*. +\v 7 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Javan|strong="H3120"\w*: Elishah, \w Tarshish|strong="H8659"\w*, \w Kittim|strong="H3794"\w*, \w and|strong="H1121"\w* Rodanim. +\p +\v 8 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Ham|strong="H2526"\w*: \w Cush|strong="H3568"\w*, \w Mizraim|strong="H4714"\w*, \w Put|strong="H6316"\w*, \w and|strong="H1121"\w* \w Canaan|strong="H3667"\w*. +\v 9 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Cush|strong="H3568"\w*: \w Seba|strong="H5434"\w*, \w Havilah|strong="H2341"\w*, \w Sabta|strong="H5454"\w*, \w Raama|strong="H7484"\w*, \w Sabteca|strong="H5455"\w*. \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Raamah|strong="H7484"\w*: \w Sheba|strong="H7614"\w* \w and|strong="H1121"\w* \w Dedan|strong="H1719"\w*. +\v 10 \w Cush|strong="H3568"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Nimrod|strong="H5248"\w*. \w He|strong="H1931"\w* \w began|strong="H2490"\w* \w to|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w mighty|strong="H1368"\w* \w one|strong="H1931"\w* \w in|strong="H1368"\w* \w the|strong="H3205"\w* earth. +\v 11 \w Mizraim|strong="H4714"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Ludim|strong="H3866"\w*, \w Anamim|strong="H6047"\w*, \w Lehabim|strong="H3853"\w*, \w Naphtuhim|strong="H5320"\w*, +\v 12 \w Pathrusim|strong="H6625"\w*, \w Casluhim|strong="H3695"\w* (\w where|strong="H8033"\w* \w the|strong="H3318"\w* \w Philistines|strong="H6430"\w* \w came|strong="H3318"\w* \w from|strong="H3318"\w*), \w and|strong="H8033"\w* \w Caphtorim|strong="H3732"\w*. +\v 13 \w Canaan|strong="H3667"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Sidon|strong="H6721"\w* \w his|strong="H3205"\w* \w firstborn|strong="H1060"\w*, \w Heth|strong="H2845"\w*, +\v 14 \w the|strong="H2983"\w* \w Jebusite|strong="H2983"\w*, \w the|strong="H2983"\w* Amorite, \w the|strong="H2983"\w* \w Girgashite|strong="H1622"\w*, +\v 15 \w the|strong="H2340"\w* \w Hivite|strong="H2340"\w*, \w the|strong="H2340"\w* \w Arkite|strong="H6208"\w*, \w the|strong="H2340"\w* \w Sinite|strong="H5513"\w*, +\v 16 the Arvadite, the \w Zemarite|strong="H6786"\w*, and the \w Hamathite|strong="H2577"\w*. +\p +\v 17 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shem|strong="H8035"\w*: \w Elam|strong="H5867"\w*, Asshur, Arpachshad, \w Lud|strong="H3865"\w*, Aram, \w Uz|strong="H5780"\w*, \w Hul|strong="H2343"\w*, \w Gether|strong="H1666"\w*, \w and|strong="H1121"\w* \w Meshech|strong="H4902"\w*. +\v 18 Arpachshad \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Shelah|strong="H7974"\w*, \w and|strong="H3205"\w* \w Shelah|strong="H7974"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Eber|strong="H5677"\w*. +\v 19 \w To|strong="H3117"\w* \w Eber|strong="H5677"\w* \w were|strong="H1121"\w* \w born|strong="H3205"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w*: \w the|strong="H3588"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w one|strong="H1121"\w* \w was|strong="H8034"\w* \w Peleg|strong="H6389"\w*, \w for|strong="H3588"\w* \w in|strong="H3117"\w* \w his|strong="H3588"\w* \w days|strong="H3117"\w* \w the|strong="H3588"\w* earth \w was|strong="H8034"\w* \w divided|strong="H6385"\w*; \w and|strong="H1121"\w* \w his|strong="H3588"\w* brother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Joktan|strong="H3355"\w*. +\v 20 \w Joktan|strong="H3355"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* Almodad, \w Sheleph|strong="H8026"\w*, \w Hazarmaveth|strong="H2700"\w*, \w Jerah|strong="H3392"\w*, +\v 21 \w Hadoram|strong="H1913"\w*, Uzal, \w Diklah|strong="H1853"\w*, +\v 22 \w Ebal|strong="H5858"\w*, Abimael, \w Sheba|strong="H7614"\w*, +\v 23 Ophir, \w Havilah|strong="H2341"\w*, \w and|strong="H1121"\w* \w Jobab|strong="H3103"\w*. \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w were|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Joktan|strong="H3355"\w*. +\v 24 \w Shem|strong="H8035"\w*, Arpachshad, \w Shelah|strong="H7974"\w*, +\v 25 \w Eber|strong="H5677"\w*, \w Peleg|strong="H6389"\w*, \w Reu|strong="H7466"\w*, +\v 26 \w Serug|strong="H8286"\w*, \w Nahor|strong="H5152"\w*, \w Terah|strong="H8646"\w*, +\v 27 Abram (\w also|strong="H1931"\w* called Abraham). +\p +\v 28 \w The|strong="H3458"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Abraham: \w Isaac|strong="H3327"\w* \w and|strong="H1121"\w* \w Ishmael|strong="H3458"\w*. +\v 29 These are their \w generations|strong="H8435"\w*: \w the|strong="H3458"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1060"\w* \w Ishmael|strong="H3458"\w*, \w Nebaioth|strong="H5032"\w*; then \w Kedar|strong="H6938"\w*, Adbeel, \w Mibsam|strong="H4017"\w*, +\v 30 \w Mishma|strong="H4927"\w*, \w Dumah|strong="H1746"\w*, \w Massa|strong="H4854"\w*, \w Hadad|strong="H2301"\w*, \w Tema|strong="H8485"\w*, +\v 31 \w Jetur|strong="H3195"\w*, \w Naphish|strong="H5305"\w*, \w and|strong="H1121"\w* \w Kedemah|strong="H6929"\w*. \w These|strong="H1992"\w* \w are|strong="H1992"\w* \w the|strong="H3458"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Ishmael|strong="H3458"\w*. +\p +\v 32 \w The|strong="H3205"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Keturah|strong="H6989"\w*, Abraham’s \w concubine|strong="H6370"\w*: she \w bore|strong="H3205"\w* \w Zimran|strong="H2175"\w*, \w Jokshan|strong="H3370"\w*, \w Medan|strong="H4091"\w*, \w Midian|strong="H4080"\w*, \w Ishbak|strong="H3435"\w*, \w and|strong="H1121"\w* \w Shuah|strong="H7744"\w*. \w The|strong="H3205"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jokshan|strong="H3370"\w*: \w Sheba|strong="H7614"\w* \w and|strong="H1121"\w* \w Dedan|strong="H1719"\w*. +\v 33 \w The|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Midian|strong="H4080"\w*: \w Ephah|strong="H5891"\w*, \w Epher|strong="H6081"\w*, \w Hanoch|strong="H2585"\w*, Abida, \w and|strong="H1121"\w* Eldaah. \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w were|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Keturah|strong="H6989"\w*. +\p +\v 34 Abraham \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Isaac|strong="H3327"\w*. \w The|strong="H3205"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Isaac|strong="H3327"\w*: \w Esau|strong="H6215"\w* \w and|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 35 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Esau|strong="H6215"\w*: Eliphaz, \w Reuel|strong="H7467"\w*, \w Jeush|strong="H3266"\w*, \w Jalam|strong="H3281"\w*, \w and|strong="H1121"\w* \w Korah|strong="H7141"\w*. +\v 36 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Eliphaz: \w Teman|strong="H8487"\w*, Omar, \w Zephi|strong="H6825"\w*, \w Gatam|strong="H1609"\w*, \w Kenaz|strong="H7073"\w*, \w Timna|strong="H8555"\w*, \w and|strong="H1121"\w* \w Amalek|strong="H6002"\w*. +\v 37 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuel|strong="H7467"\w*: \w Nahath|strong="H5184"\w*, \w Zerah|strong="H2226"\w*, \w Shammah|strong="H8048"\w*, \w and|strong="H1121"\w* \w Mizzah|strong="H4199"\w*. +\p +\v 38 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Seir|strong="H8165"\w*: \w Lotan|strong="H3877"\w*, \w Shobal|strong="H7732"\w*, \w Zibeon|strong="H6649"\w*, \w Anah|strong="H6034"\w*, \w Dishon|strong="H1787"\w*, Ezer, \w and|strong="H1121"\w* \w Dishan|strong="H1789"\w*. +\v 39 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Lotan|strong="H3877"\w*: \w Hori|strong="H2753"\w* \w and|strong="H1121"\w* \w Homam|strong="H1950"\w*; \w and|strong="H1121"\w* \w Timna|strong="H8555"\w* \w was|strong="H1121"\w* \w Lotan|strong="H3877"\w*’s sister. +\v 40 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shobal|strong="H7732"\w*: \w Alian|strong="H5935"\w*, \w Manahath|strong="H4506"\w*, \w Ebal|strong="H5858"\w*, \w Shephi|strong="H8195"\w*, \w and|strong="H1121"\w* Onam. \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Zibeon|strong="H6649"\w*: Aiah \w and|strong="H1121"\w* \w Anah|strong="H6034"\w*. +\v 41 \w The|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Anah|strong="H6034"\w*: \w Dishon|strong="H1787"\w*. \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Dishon|strong="H1787"\w*: \w Hamran|strong="H2566"\w*, Eshban, \w Ithran|strong="H3506"\w*, \w and|strong="H1121"\w* \w Cheran|strong="H3763"\w*. +\v 42 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Ezer: \w Bilhan|strong="H1092"\w*, \w Zaavan|strong="H2190"\w*, \w and|strong="H1121"\w* \w Jaakan|strong="H3292"\w*. \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Dishan|strong="H1787"\w*: \w Uz|strong="H5780"\w* \w and|strong="H1121"\w* Aran. +\p +\v 43 \w Now|strong="H3478"\w* \w these|strong="H6440"\w* \w are|strong="H1121"\w* \w the|strong="H6440"\w* \w kings|strong="H4428"\w* \w who|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H3478"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H1121"\w* Edom, \w before|strong="H6440"\w* \w any|strong="H6440"\w* \w king|strong="H4428"\w* \w reigned|strong="H4427"\w* \w over|strong="H4427"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*: \w Bela|strong="H1106"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Beor|strong="H1160"\w*; \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w his|strong="H6440"\w* \w city|strong="H5892"\w* \w was|strong="H8034"\w* \w Dinhabah|strong="H1838"\w*. +\v 44 \w Bela|strong="H1106"\w* \w died|strong="H4191"\w*, \w and|strong="H1121"\w* \w Jobab|strong="H3103"\w* \w the|strong="H8478"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zerah|strong="H2226"\w* \w of|strong="H1121"\w* \w Bozrah|strong="H1224"\w* \w reigned|strong="H4427"\w* \w in|strong="H4191"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\v 45 \w Jobab|strong="H3103"\w* \w died|strong="H4191"\w*, \w and|strong="H4191"\w* \w Husham|strong="H2367"\w* \w of|strong="H8478"\w* \w the|strong="H8478"\w* land \w of|strong="H8478"\w* \w the|strong="H8478"\w* \w Temanites|strong="H8489"\w* \w reigned|strong="H4427"\w* \w in|strong="H4191"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\v 46 \w Husham|strong="H2367"\w* \w died|strong="H4191"\w*, \w and|strong="H1121"\w* \w Hadad|strong="H1908"\w* \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Bedad, \w who|strong="H1121"\w* \w struck|strong="H5221"\w* \w Midian|strong="H4080"\w* \w in|strong="H4191"\w* \w the|strong="H5221"\w* \w field|strong="H7704"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w*, \w reigned|strong="H4427"\w* \w in|strong="H4191"\w* \w his|strong="H5221"\w* \w place|strong="H8478"\w*; \w and|strong="H1121"\w* \w the|strong="H5221"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w his|strong="H5221"\w* \w city|strong="H5892"\w* \w was|strong="H8034"\w* \w Avith|strong="H5762"\w*. +\v 47 \w Hadad|strong="H1908"\w* \w died|strong="H4191"\w*, \w and|strong="H4191"\w* \w Samlah|strong="H8072"\w* \w of|strong="H8478"\w* \w Masrekah|strong="H4957"\w* \w reigned|strong="H4427"\w* \w in|strong="H4191"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\v 48 \w Samlah|strong="H8072"\w* \w died|strong="H4191"\w*, \w and|strong="H7586"\w* \w Shaul|strong="H7586"\w* \w of|strong="H8478"\w* \w Rehoboth|strong="H7344"\w* \w by|strong="H4191"\w* \w the|strong="H8478"\w* \w River|strong="H5104"\w* \w reigned|strong="H4427"\w* \w in|strong="H4191"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\v 49 \w Shaul|strong="H7586"\w* \w died|strong="H4191"\w*, \w and|strong="H1121"\w* Baal Hanan \w the|strong="H8478"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Achbor|strong="H5907"\w* \w reigned|strong="H4427"\w* \w in|strong="H4191"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\v 50 Baal Hanan \w died|strong="H4191"\w*, \w and|strong="H5892"\w* \w Hadad|strong="H1908"\w* \w reigned|strong="H4427"\w* \w in|strong="H4191"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*; \w and|strong="H5892"\w* \w the|strong="H8478"\w* \w name|strong="H8034"\w* \w of|strong="H1323"\w* \w his|strong="H8478"\w* \w city|strong="H5892"\w* \w was|strong="H8034"\w* \w Pai|strong="H6464"\w*. \w His|strong="H8478"\w* wife’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Mehetabel|strong="H4105"\w*, \w the|strong="H8478"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Matred|strong="H4308"\w*, \w the|strong="H8478"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Mezahab|strong="H4314"\w*. +\v 51 \w Then|strong="H1961"\w* \w Hadad|strong="H1908"\w* \w died|strong="H4191"\w*. \w The|strong="H1961"\w* chiefs \w of|strong="H4191"\w* Edom \w were|strong="H1961"\w*: chief \w Timna|strong="H8555"\w*, chief \w Aliah|strong="H5933"\w*, chief \w Jetheth|strong="H3509"\w*, +\v 52 chief Oholibamah, chief Elah, chief \w Pinon|strong="H6373"\w*, +\v 53 chief \w Kenaz|strong="H7073"\w*, chief \w Teman|strong="H8487"\w*, chief \w Mibzar|strong="H4014"\w*, +\v 54 chief \w Magdiel|strong="H4025"\w*, and chief \w Iram|strong="H5902"\w*. These are the chiefs of Edom. +\c 2 +\p +\v 1 These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*: \w Reuben|strong="H7205"\w*, \w Simeon|strong="H8095"\w*, \w Levi|strong="H3878"\w*, \w Judah|strong="H3063"\w*, \w Issachar|strong="H3485"\w*, \w Zebulun|strong="H2074"\w*, +\v 2 \w Dan|strong="H1835"\w*, \w Joseph|strong="H3130"\w*, \w Benjamin|strong="H1144"\w*, \w Naphtali|strong="H5321"\w*, \w Gad|strong="H1410"\w*, \w and|strong="H1144"\w* Asher. +\p +\v 3 \w The|strong="H3205"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*: \w Er|strong="H6147"\w*, Onan, \w and|strong="H1121"\w* \w Shelah|strong="H7956"\w*, \w which|strong="H3068"\w* \w three|strong="H7969"\w* \w were|strong="H1961"\w* \w born|strong="H3205"\w* \w to|strong="H4191"\w* \w him|strong="H3205"\w* \w of|strong="H1121"\w* \w Shua|strong="H7774"\w*’s \w daughter|strong="H1323"\w* \w the|strong="H3205"\w* \w Canaanitess|strong="H3669"\w*. \w Er|strong="H6147"\w*, \w Judah|strong="H3063"\w*’s \w firstborn|strong="H1060"\w*, \w was|strong="H3068"\w* \w wicked|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s\f + \fr 2:3 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w sight|strong="H5869"\w*; \w and|strong="H1121"\w* \w he|strong="H3068"\w* \w killed|strong="H4191"\w* \w him|strong="H3205"\w*. +\v 4 \w Tamar|strong="H8559"\w* \w his|strong="H3605"\w* \w daughter-in-law|strong="H3618"\w* \w bore|strong="H3205"\w* \w him|strong="H3205"\w* \w Perez|strong="H6557"\w* \w and|strong="H1121"\w* \w Zerah|strong="H2226"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w were|strong="H1121"\w* \w five|strong="H2568"\w*. +\p +\v 5 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Perez|strong="H6557"\w*: \w Hezron|strong="H2696"\w* \w and|strong="H1121"\w* \w Hamul|strong="H2538"\w*. +\v 6 \w The|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Zerah|strong="H2226"\w*: \w Zimri|strong="H2174"\w*, Ethan, \w Heman|strong="H1968"\w*, \w Calcol|strong="H3633"\w*, \w and|strong="H1121"\w* \w Dara|strong="H1873"\w*—\w five|strong="H2568"\w* \w of|strong="H1121"\w* \w them|strong="H1121"\w* \w in|strong="H1121"\w* \w all|strong="H3605"\w*. +\v 7 \w The|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Carmi|strong="H3756"\w*: \w Achar|strong="H5917"\w*, \w the|strong="H1121"\w* \w troubler|strong="H5916"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w who|strong="H1121"\w* \w committed|strong="H4603"\w* \w a|strong="H3068"\w* \w trespass|strong="H4603"\w* \w in|strong="H3478"\w* \w the|strong="H1121"\w* \w devoted|strong="H2764"\w* \w thing|strong="H2764"\w*. +\v 8 \w The|strong="H5838"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ethan: \w Azariah|strong="H5838"\w*. +\p +\v 9 \w The|strong="H3205"\w* \w sons|strong="H1121"\w* \w also|strong="H1121"\w* \w of|strong="H1121"\w* \w Hezron|strong="H2696"\w*, \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w born|strong="H3205"\w* \w to|strong="H3205"\w* \w him|strong="H3205"\w*: \w Jerahmeel|strong="H3396"\w*, \w Ram|strong="H7410"\w*, \w and|strong="H1121"\w* \w Chelubai|strong="H3621"\w*. +\v 10 \w Ram|strong="H7410"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Amminadab|strong="H5992"\w*, \w and|strong="H1121"\w* \w Amminadab|strong="H5992"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Nahshon|strong="H5177"\w*, \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H3205"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*; +\v 11 \w and|strong="H3205"\w* \w Nahshon|strong="H5177"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Salma|strong="H8007"\w*, \w and|strong="H3205"\w* \w Salma|strong="H8007"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Boaz|strong="H1162"\w*, +\v 12 \w and|strong="H3205"\w* \w Boaz|strong="H1162"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Obed|strong="H5744"\w*, \w and|strong="H3205"\w* \w Obed|strong="H5744"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Jesse|strong="H3448"\w*; +\v 13 \w and|strong="H3205"\w* \w Jesse|strong="H3448"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w his|strong="H3205"\w* \w firstborn|strong="H1060"\w* Eliab, Abinadab \w the|strong="H3205"\w* \w second|strong="H8145"\w*, \w Shimea|strong="H8092"\w* \w the|strong="H3205"\w* \w third|strong="H7992"\w*, +\v 14 \w Nethanel|strong="H5417"\w* \w the|strong="H5417"\w* \w fourth|strong="H7243"\w*, \w Raddai|strong="H7288"\w* \w the|strong="H5417"\w* \w fifth|strong="H2549"\w*, +\v 15 Ozem \w the|strong="H1732"\w* \w sixth|strong="H8345"\w*, \w and|strong="H1732"\w* \w David|strong="H1732"\w* \w the|strong="H1732"\w* \w seventh|strong="H7637"\w*; +\v 16 \w and|strong="H1121"\w* their sisters \w were|strong="H1121"\w* \w Zeruiah|strong="H6870"\w* \w and|strong="H1121"\w* Abigail. \w The|strong="H3097"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w*: Abishai, \w Joab|strong="H3097"\w*, \w and|strong="H1121"\w* \w Asahel|strong="H6214"\w*, \w three|strong="H7969"\w*. +\v 17 Abigail \w bore|strong="H3205"\w* \w Amasa|strong="H6021"\w*; \w and|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Amasa|strong="H6021"\w* \w was|strong="H3205"\w* \w Jether|strong="H3500"\w* \w the|strong="H3205"\w* \w Ishmaelite|strong="H3459"\w*. +\p +\v 18 \w Caleb|strong="H3612"\w* \w the|strong="H3205"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hezron|strong="H2696"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w children|strong="H1121"\w* \w by|strong="H3205"\w* \w Azubah|strong="H5806"\w* \w his|strong="H3205"\w* wife, \w and|strong="H1121"\w* \w by|strong="H3205"\w* \w Jerioth|strong="H3408"\w*; \w and|strong="H1121"\w* these \w were|strong="H1121"\w* \w her|strong="H3205"\w* \w sons|strong="H1121"\w*: \w Jesher|strong="H3475"\w*, \w Shobab|strong="H7727"\w*, \w and|strong="H1121"\w* Ardon. +\v 19 \w Azubah|strong="H5806"\w* \w died|strong="H4191"\w*, \w and|strong="H3947"\w* \w Caleb|strong="H3612"\w* \w married|strong="H3947"\w* Ephrath, \w who|strong="H3205"\w* \w bore|strong="H3205"\w* \w him|strong="H3205"\w* \w Hur|strong="H2354"\w*. +\v 20 \w Hur|strong="H2354"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* Uri, \w and|strong="H3205"\w* Uri \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Bezalel|strong="H1212"\w*. +\p +\v 21 Afterward \w Hezron|strong="H2696"\w* \w went|strong="H1121"\w* \w in|strong="H8141"\w* \w to|strong="H3205"\w* \w the|strong="H3947"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Machir|strong="H4353"\w* \w the|strong="H3947"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*, whom \w he|strong="H1931"\w* \w took|strong="H3947"\w* \w as|strong="H8141"\w* wife \w when|strong="H1121"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w sixty|strong="H8346"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*; \w and|strong="H1121"\w* \w she|strong="H1931"\w* \w bore|strong="H3205"\w* \w him|strong="H3205"\w* \w Segub|strong="H7687"\w*. +\v 22 \w Segub|strong="H7687"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H5892"\w* \w Jair|strong="H2971"\w*, \w who|strong="H3205"\w* \w had|strong="H1961"\w* \w twenty-three|strong="H6242"\w* \w cities|strong="H5892"\w* \w in|strong="H5892"\w* \w the|strong="H3205"\w* land \w of|strong="H5892"\w* \w Gilead|strong="H1568"\w*. +\v 23 \w Geshur|strong="H1650"\w* \w and|strong="H1121"\w* Aram \w took|strong="H3947"\w* \w the|strong="H3605"\w* \w towns|strong="H1323"\w* \w of|strong="H1121"\w* \w Jair|strong="H2971"\w* \w from|strong="H1121"\w* \w them|strong="H3947"\w*, \w with|strong="H5892"\w* \w Kenath|strong="H7079"\w*, \w and|strong="H1121"\w* \w its|strong="H3605"\w* \w villages|strong="H1323"\w*, even \w sixty|strong="H8346"\w* \w cities|strong="H5892"\w*. \w All|strong="H3605"\w* \w these|strong="H3947"\w* \w were|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Machir|strong="H4353"\w* \w the|strong="H3605"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*. +\v 24 After \w Hezron|strong="H2696"\w* \w died|strong="H4194"\w* \w in|strong="H3205"\w* \w Caleb|strong="H3613"\w* Ephrathah, Abijah, \w Hezron|strong="H2696"\w*’s wife, \w bore|strong="H3205"\w* \w him|strong="H3205"\w* Ashhur \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Tekoa|strong="H8620"\w*. +\p +\v 25 \w The|strong="H1961"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jerahmeel|strong="H3396"\w* \w the|strong="H1961"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1121"\w* \w Hezron|strong="H2696"\w* \w were|strong="H1961"\w* \w Ram|strong="H7410"\w* \w the|strong="H1961"\w* \w firstborn|strong="H1060"\w*, Bunah, Oren, Ozem, \w and|strong="H1121"\w* Ahijah. +\v 26 \w Jerahmeel|strong="H3396"\w* \w had|strong="H1961"\w* another wife, \w whose|strong="H8034"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Atarah|strong="H5851"\w*. \w She|strong="H1931"\w* \w was|strong="H8034"\w* \w the|strong="H1961"\w* mother \w of|strong="H8034"\w* Onam. +\v 27 \w The|strong="H1961"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Ram|strong="H7410"\w* \w the|strong="H1961"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1121"\w* \w Jerahmeel|strong="H3396"\w* \w were|strong="H1961"\w* \w Maaz|strong="H4619"\w*, \w Jamin|strong="H3226"\w*, \w and|strong="H1121"\w* \w Eker|strong="H6134"\w*. +\v 28 \w The|strong="H1961"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Onam \w were|strong="H1961"\w* \w Shammai|strong="H8060"\w* \w and|strong="H1121"\w* \w Jada|strong="H3047"\w*. \w The|strong="H1961"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shammai|strong="H8060"\w*: \w Nadab|strong="H5070"\w* \w and|strong="H1121"\w* Abishur. +\v 29 \w The|strong="H3205"\w* \w name|strong="H8034"\w* \w of|strong="H3205"\w* \w the|strong="H3205"\w* wife \w of|strong="H3205"\w* Abishur \w was|strong="H8034"\w* Abihail; \w and|strong="H8034"\w* she \w bore|strong="H3205"\w* \w him|strong="H3205"\w* Ahban \w and|strong="H8034"\w* \w Molid|strong="H4140"\w*. +\v 30 \w The|strong="H4191"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Nadab|strong="H5070"\w*: \w Seled|strong="H5540"\w* \w and|strong="H1121"\w* Appaim; \w but|strong="H3808"\w* \w Seled|strong="H5540"\w* \w died|strong="H4191"\w* \w without|strong="H3808"\w* \w children|strong="H1121"\w*. +\v 31 \w The|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Appaim: \w Ishi|strong="H3469"\w*. \w The|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ishi|strong="H3469"\w*: \w Sheshan|strong="H8348"\w*. \w The|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Sheshan|strong="H8348"\w*: Ahlai. +\v 32 \w The|strong="H4191"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jada|strong="H3047"\w* \w the|strong="H4191"\w* brother \w of|strong="H1121"\w* \w Shammai|strong="H8060"\w*: \w Jether|strong="H3500"\w* \w and|strong="H1121"\w* \w Jonathan|strong="H3129"\w*; \w and|strong="H1121"\w* \w Jether|strong="H3500"\w* \w died|strong="H4191"\w* \w without|strong="H3808"\w* \w children|strong="H1121"\w*. +\v 33 \w The|strong="H1961"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jonathan|strong="H3129"\w*: \w Peleth|strong="H6431"\w* \w and|strong="H1121"\w* \w Zaza|strong="H2117"\w*. These \w were|strong="H1961"\w* \w the|strong="H1961"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jerahmeel|strong="H3396"\w*. +\v 34 \w Now|strong="H1961"\w* \w Sheshan|strong="H8348"\w* \w had|strong="H1961"\w* \w no|strong="H3808"\w* \w sons|strong="H1121"\w*, \w but|strong="H3588"\w* \w only|strong="H3588"\w* \w daughters|strong="H1323"\w*. \w Sheshan|strong="H8348"\w* \w had|strong="H1961"\w* \w a|strong="H3068"\w* \w servant|strong="H5650"\w*, \w an|strong="H1961"\w* \w Egyptian|strong="H4713"\w*, \w whose|strong="H1121"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Jarha|strong="H3398"\w*. +\v 35 \w Sheshan|strong="H8348"\w* \w gave|strong="H5414"\w* \w his|strong="H5414"\w* \w daughter|strong="H1323"\w* \w to|strong="H5414"\w* \w Jarha|strong="H3398"\w* \w his|strong="H5414"\w* \w servant|strong="H5650"\w* \w as|strong="H5414"\w* wife; \w and|strong="H5650"\w* she \w bore|strong="H3205"\w* \w him|strong="H5414"\w* \w Attai|strong="H6262"\w*. +\v 36 \w Attai|strong="H6262"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Nathan|strong="H5416"\w*, \w and|strong="H3205"\w* \w Nathan|strong="H5416"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Zabad|strong="H2066"\w*, +\v 37 \w and|strong="H3205"\w* \w Zabad|strong="H2066"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* Ephlal, \w and|strong="H3205"\w* Ephlal \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Obed|strong="H5744"\w*, +\v 38 \w and|strong="H3205"\w* \w Obed|strong="H5744"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Jehu|strong="H3058"\w*, \w and|strong="H3205"\w* \w Jehu|strong="H3058"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Azariah|strong="H5838"\w*, +\v 39 \w and|strong="H3205"\w* \w Azariah|strong="H5838"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Helez|strong="H2503"\w*, \w and|strong="H3205"\w* \w Helez|strong="H2503"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* Eleasah, +\v 40 \w and|strong="H3205"\w* Eleasah \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Sismai|strong="H5581"\w*, \w and|strong="H3205"\w* \w Sismai|strong="H5581"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Shallum|strong="H7967"\w*, +\v 41 \w and|strong="H3205"\w* \w Shallum|strong="H7967"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Jekamiah|strong="H3359"\w*, \w and|strong="H3205"\w* \w Jekamiah|strong="H3359"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* Elishama. +\p +\v 42 \w The|strong="H3612"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Caleb|strong="H3612"\w* \w the|strong="H3612"\w* brother \w of|strong="H1121"\w* \w Jerahmeel|strong="H3396"\w* \w were|strong="H1121"\w* \w Mesha|strong="H4337"\w* \w his|strong="H1931"\w* \w firstborn|strong="H1060"\w*, \w who|strong="H1931"\w* \w was|strong="H1931"\w* \w the|strong="H3612"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* \w Ziph|strong="H2128"\w*, \w and|strong="H1121"\w* \w the|strong="H3612"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Mareshah|strong="H4762"\w* \w the|strong="H3612"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* \w Hebron|strong="H2275"\w*. +\v 43 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Hebron|strong="H2275"\w*: \w Korah|strong="H7141"\w*, \w Tappuah|strong="H8599"\w*, \w Rekem|strong="H7552"\w*, \w and|strong="H1121"\w* \w Shema|strong="H8087"\w*. +\v 44 \w Shema|strong="H8087"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Raham|strong="H7357"\w*, \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Jorkeam|strong="H3421"\w*; \w and|strong="H7552"\w* \w Rekem|strong="H7552"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Shammai|strong="H8060"\w*. +\v 45 \w The|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shammai|strong="H8060"\w* \w was|strong="H1121"\w* \w Maon|strong="H4584"\w*; \w and|strong="H1121"\w* \w Maon|strong="H4584"\w* \w was|strong="H1121"\w* \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Beth Zur. +\v 46 \w Ephah|strong="H5891"\w*, \w Caleb|strong="H3612"\w*’s \w concubine|strong="H6370"\w*, \w bore|strong="H3205"\w* \w Haran|strong="H2771"\w*, \w Moza|strong="H4162"\w*, \w and|strong="H6370"\w* \w Gazez|strong="H1495"\w*; \w and|strong="H6370"\w* \w Haran|strong="H2771"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Gazez|strong="H1495"\w*. +\v 47 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jahdai|strong="H3056"\w*: \w Regem|strong="H7276"\w*, Jothan, \w Geshan|strong="H1529"\w*, \w Pelet|strong="H6404"\w*, \w Ephah|strong="H5891"\w*, \w and|strong="H1121"\w* \w Shaaph|strong="H8174"\w*. +\v 48 \w Maacah|strong="H4601"\w*, \w Caleb|strong="H3612"\w*’s \w concubine|strong="H6370"\w*, \w bore|strong="H3205"\w* \w Sheber|strong="H7669"\w* \w and|strong="H6370"\w* \w Tirhanah|strong="H8647"\w*. +\v 49 She \w bore|strong="H3205"\w* \w also|strong="H3205"\w* \w Shaaph|strong="H8174"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1323"\w* \w Madmannah|strong="H4089"\w*, \w Sheva|strong="H7724"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1323"\w* \w Machbena|strong="H4343"\w* \w and|strong="H1323"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1323"\w* \w Gibea|strong="H1388"\w*; \w and|strong="H1323"\w* \w the|strong="H3205"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Caleb|strong="H3612"\w* \w was|strong="H3205"\w* \w Achsah|strong="H5915"\w*. +\p +\v 50 These \w were|strong="H1961"\w* \w the|strong="H1961"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Caleb|strong="H3612"\w*, \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hur|strong="H2354"\w*, \w the|strong="H1961"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1121"\w* Ephrathah: \w Shobal|strong="H7732"\w* \w the|strong="H1961"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* \w Kiriath|strong="H7157"\w* Jearim, +\v 51 \w Salma|strong="H8007"\w* \w the|strong="H2780"\w* father of \w Bethlehem|strong="H1035"\w*, \w and|strong="H1035"\w* \w Hareph|strong="H2780"\w* \w the|strong="H2780"\w* father of Beth Gader. +\v 52 \w Shobal|strong="H7732"\w* \w the|strong="H1961"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* \w Kiriath|strong="H7157"\w* Jearim \w had|strong="H1961"\w* \w sons|strong="H1121"\w*: \w Haroeh|strong="H7204"\w*, half \w of|strong="H1121"\w* \w the|strong="H1961"\w* Menuhoth. +\v 53 \w The|strong="H3318"\w* \w families|strong="H4940"\w* \w of|strong="H4940"\w* \w Kiriath|strong="H7157"\w* Jearim: \w the|strong="H3318"\w* \w Ithrites|strong="H3505"\w*, \w the|strong="H3318"\w* \w Puthites|strong="H6336"\w*, \w the|strong="H3318"\w* \w Shumathites|strong="H8126"\w*, \w and|strong="H3318"\w* \w the|strong="H3318"\w* \w Mishraites|strong="H4954"\w*; \w from|strong="H3318"\w* \w them|strong="H3318"\w* \w came|strong="H3318"\w* \w the|strong="H3318"\w* \w Zorathites|strong="H6882"\w* \w and|strong="H3318"\w* \w the|strong="H3318"\w* Eshtaolites. +\v 54 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Salma|strong="H8007"\w*: \w Bethlehem|strong="H1035"\w*, \w the|strong="H1121"\w* \w Netophathites|strong="H5200"\w*, Atroth Beth \w Joab|strong="H5854"\w*, \w and|strong="H1121"\w* half \w of|strong="H1121"\w* \w the|strong="H1121"\w* Manahathites, \w the|strong="H1121"\w* \w Zorites|strong="H6882"\w*. +\v 55 \w The|strong="H3427"\w* \w families|strong="H4940"\w* \w of|strong="H1004"\w* \w scribes|strong="H5608"\w* \w who|strong="H3427"\w* \w lived|strong="H3427"\w* \w at|strong="H3427"\w* \w Jabez|strong="H3258"\w*: \w the|strong="H3427"\w* \w Tirathites|strong="H8654"\w*, \w the|strong="H3427"\w* \w Shimeathites|strong="H8101"\w*, \w and|strong="H1004"\w* \w the|strong="H3427"\w* \w Sucathites|strong="H7756"\w*. \w These|strong="H1992"\w* \w are|strong="H1992"\w* \w the|strong="H3427"\w* \w Kenites|strong="H7017"\w* \w who|strong="H3427"\w* came \w from|strong="H3427"\w* \w Hammath|strong="H2575"\w*, \w the|strong="H3427"\w* father \w of|strong="H1004"\w* \w the|strong="H3427"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Rechab|strong="H7394"\w*. +\c 3 +\p +\v 1 \w Now|strong="H1961"\w* \w these|strong="H1732"\w* \w were|strong="H1961"\w* \w the|strong="H3205"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w*, \w who|strong="H1121"\w* \w were|strong="H1961"\w* \w born|strong="H3205"\w* \w to|strong="H1961"\w* \w him|strong="H3205"\w* \w in|strong="H1121"\w* \w Hebron|strong="H2275"\w*: \w the|strong="H3205"\w* \w firstborn|strong="H1060"\w*, Amnon, \w of|strong="H1121"\w* Ahinoam \w the|strong="H3205"\w* \w Jezreelitess|strong="H3159"\w*; \w the|strong="H3205"\w* \w second|strong="H8145"\w*, \w Daniel|strong="H1840"\w*, \w of|strong="H1121"\w* Abigail \w the|strong="H3205"\w* \w Carmelitess|strong="H3762"\w*; +\v 2 \w the|strong="H1121"\w* \w third|strong="H7992"\w*, Absalom \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Maacah|strong="H4601"\w* \w the|strong="H1121"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Talmai|strong="H8526"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Geshur|strong="H1650"\w*; \w the|strong="H1121"\w* \w fourth|strong="H7243"\w*, Adonijah \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Haggith|strong="H2294"\w*; +\v 3 \w the|strong="H8203"\w* \w fifth|strong="H2549"\w*, \w Shephatiah|strong="H8203"\w* \w of|strong="H8203"\w* Abital; \w the|strong="H8203"\w* \w sixth|strong="H8345"\w*, \w Ithream|strong="H3507"\w* \w by|strong="H3507"\w* \w Eglah|strong="H5698"\w* \w his|strong="H5698"\w* wife: +\v 4 \w six|strong="H8337"\w* \w were|strong="H3205"\w* \w born|strong="H3205"\w* \w to|strong="H3389"\w* \w him|strong="H3205"\w* \w in|strong="H8141"\w* \w Hebron|strong="H2275"\w*; \w and|strong="H7970"\w* \w he|strong="H8033"\w* \w reigned|strong="H4427"\w* \w there|strong="H8033"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w* \w and|strong="H7970"\w* \w six|strong="H8337"\w* \w months|strong="H2320"\w*. \w He|strong="H8033"\w* \w reigned|strong="H4427"\w* \w thirty-three|strong="H7970"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*; +\v 5 \w and|strong="H3389"\w* these \w were|strong="H1323"\w* \w born|strong="H3205"\w* \w to|strong="H3389"\w* \w him|strong="H3205"\w* \w in|strong="H8010"\w* \w Jerusalem|strong="H3389"\w*: \w Shimea|strong="H8092"\w*, \w Shobab|strong="H7727"\w*, \w Nathan|strong="H5416"\w*, \w and|strong="H3389"\w* \w Solomon|strong="H8010"\w*, four, \w by|strong="H3205"\w* Bathshua \w the|strong="H3205"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Ammiel|strong="H5988"\w*; +\v 6 and \w Ibhar|strong="H2984"\w*, Elishama, Eliphelet, +\v 7 \w Nogah|strong="H5052"\w*, \w Nepheg|strong="H5298"\w*, \w Japhia|strong="H3309"\w*, +\v 8 Elishama, Eliada, \w and|strong="H8672"\w* Eliphelet, \w nine|strong="H8672"\w*. +\v 9 \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w were|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w*, \w in|strong="H1121"\w* addition \w to|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w concubines|strong="H6370"\w*; \w and|strong="H1121"\w* \w Tamar|strong="H8559"\w* \w was|strong="H1732"\w* \w their|strong="H3605"\w* sister. +\p +\v 10 \w Solomon|strong="H8010"\w*’s \w son|strong="H1121"\w* \w was|strong="H1121"\w* \w Rehoboam|strong="H7346"\w*, Abijah \w his|strong="H8010"\w* \w son|strong="H1121"\w*, Asa \w his|strong="H8010"\w* \w son|strong="H1121"\w*, \w Jehoshaphat|strong="H3092"\w* \w his|strong="H8010"\w* \w son|strong="H1121"\w*, +\v 11 \w Joram|strong="H3141"\w* \w his|strong="H3141"\w* \w son|strong="H1121"\w*, Ahaziah \w his|strong="H3141"\w* \w son|strong="H1121"\w*, \w Joash|strong="H3101"\w* \w his|strong="H3141"\w* \w son|strong="H1121"\w*, +\v 12 Amaziah \w his|strong="H3147"\w* \w son|strong="H1121"\w*, \w Azariah|strong="H5838"\w* \w his|strong="H3147"\w* \w son|strong="H1121"\w*, \w Jotham|strong="H3147"\w* \w his|strong="H3147"\w* \w son|strong="H1121"\w*, +\v 13 Ahaz \w his|strong="H4519"\w* \w son|strong="H1121"\w*, \w Hezekiah|strong="H2396"\w* \w his|strong="H4519"\w* \w son|strong="H1121"\w*, \w Manasseh|strong="H4519"\w* \w his|strong="H4519"\w* \w son|strong="H1121"\w*, +\v 14 Amon \w his|strong="H2977"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w Josiah|strong="H2977"\w* \w his|strong="H2977"\w* \w son|strong="H1121"\w*. +\v 15 \w The|strong="H6667"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w*: \w the|strong="H6667"\w* \w firstborn|strong="H1060"\w* \w Johanan|strong="H3110"\w*, \w the|strong="H6667"\w* \w second|strong="H8145"\w* \w Jehoiakim|strong="H3079"\w*, \w the|strong="H6667"\w* \w third|strong="H7992"\w* \w Zedekiah|strong="H6667"\w*, \w and|strong="H1121"\w* \w the|strong="H6667"\w* \w fourth|strong="H7243"\w* \w Shallum|strong="H7967"\w*. +\v 16 \w The|strong="H6667"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiakim|strong="H3079"\w*: \w Jeconiah|strong="H3204"\w* \w his|strong="H6667"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w Zedekiah|strong="H6667"\w* \w his|strong="H6667"\w* \w son|strong="H1121"\w*. +\v 17 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeconiah|strong="H3204"\w*, \w the|strong="H1121"\w* captive: \w Shealtiel|strong="H7597"\w* \w his|strong="H3204"\w* \w son|strong="H1121"\w*, +\v 18 \w Malchiram|strong="H4443"\w*, \w Pedaiah|strong="H6305"\w*, \w Shenazzar|strong="H8137"\w*, \w Jekamiah|strong="H3359"\w*, \w Hoshama|strong="H1953"\w*, \w and|strong="H1953"\w* \w Nedabiah|strong="H5072"\w*. +\v 19 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Pedaiah|strong="H6305"\w*: \w Zerubbabel|strong="H2216"\w* \w and|strong="H1121"\w* \w Shimei|strong="H8096"\w*. \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Zerubbabel|strong="H2216"\w*: \w Meshullam|strong="H4918"\w* \w and|strong="H1121"\w* \w Hananiah|strong="H2608"\w*; \w and|strong="H1121"\w* \w Shelomith|strong="H8019"\w* \w was|strong="H1121"\w* \w their|strong="H8019"\w* sister; +\v 20 \w and|strong="H2568"\w* \w Hashubah|strong="H2807"\w*, Ohel, \w Berechiah|strong="H1296"\w*, \w Hasadiah|strong="H2619"\w*, \w and|strong="H2568"\w* Jushab Hesed, \w five|strong="H2568"\w*. +\v 21 \w The|strong="H3470"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Hananiah|strong="H2608"\w*: \w Pelatiah|strong="H6410"\w* \w and|strong="H1121"\w* \w Jeshaiah|strong="H3470"\w*; \w the|strong="H3470"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Rephaiah|strong="H7509"\w*, \w the|strong="H3470"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Arnan, \w the|strong="H3470"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Obadiah|strong="H5662"\w*, \w the|strong="H3470"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shecaniah|strong="H7935"\w*. +\v 22 \w The|strong="H8098"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shecaniah|strong="H7935"\w*: \w Shemaiah|strong="H8098"\w*. \w The|strong="H8098"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shemaiah|strong="H8098"\w*: \w Hattush|strong="H2407"\w*, \w Igal|strong="H3008"\w*, \w Bariah|strong="H1282"\w*, \w Neariah|strong="H5294"\w*, \w and|strong="H1121"\w* \w Shaphat|strong="H8202"\w*, \w six|strong="H8337"\w*. +\v 23 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Neariah|strong="H5294"\w*: Elioenai, \w Hizkiah|strong="H2396"\w*, \w and|strong="H1121"\w* \w Azrikam|strong="H5840"\w*, \w three|strong="H7969"\w*. +\v 24 \w The|strong="H3110"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Elioenai: \w Hodaviah|strong="H1939"\w*, Eliashib, \w Pelaiah|strong="H6411"\w*, \w Akkub|strong="H6126"\w*, \w Johanan|strong="H3110"\w*, \w Delaiah|strong="H1806"\w*, \w and|strong="H1121"\w* \w Anani|strong="H6054"\w*, \w seven|strong="H7651"\w*. +\c 4 +\p +\v 1 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*: \w Perez|strong="H6557"\w*, \w Hezron|strong="H2696"\w*, \w Carmi|strong="H3756"\w*, \w Hur|strong="H2354"\w*, \w and|strong="H1121"\w* \w Shobal|strong="H7732"\w*. +\v 2 \w Reaiah|strong="H7211"\w* \w the|strong="H3205"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shobal|strong="H7732"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Jahath|strong="H3189"\w*; \w and|strong="H1121"\w* \w Jahath|strong="H3189"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* Ahumai \w and|strong="H1121"\w* \w Lahad|strong="H3855"\w*. These \w are|strong="H1121"\w* \w the|strong="H3205"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H3205"\w* \w Zorathites|strong="H6882"\w*. +\v 3 These \w were|strong="H8034"\w* \w the|strong="H8034"\w* sons \w of|strong="H8034"\w* \w the|strong="H8034"\w* father \w of|strong="H8034"\w* \w Etam|strong="H5862"\w*: \w Jezreel|strong="H3157"\w*, \w Ishma|strong="H3457"\w*, \w and|strong="H8034"\w* \w Idbash|strong="H3031"\w*. \w The|strong="H8034"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* their sister \w was|strong="H8034"\w* \w Hazzelelponi|strong="H6753"\w*. +\v 4 \w Penuel|strong="H6439"\w* \w was|strong="H1121"\w* \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* \w Gedor|strong="H1446"\w* \w and|strong="H1121"\w* \w Ezer|strong="H5829"\w* \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* \w Hushah|strong="H2364"\w*. These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Hur|strong="H2354"\w*, \w the|strong="H1121"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1121"\w* Ephrathah, \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* \w Bethlehem|strong="H1035"\w*. +\v 5 Ashhur \w the|strong="H1961"\w* father \w of|strong="H8147"\w* \w Tekoa|strong="H8620"\w* \w had|strong="H1961"\w* \w two|strong="H8147"\w* wives, \w Helah|strong="H2458"\w* \w and|strong="H8147"\w* \w Naarah|strong="H5292"\w*. +\v 6 \w Naarah|strong="H5292"\w* \w bore|strong="H3205"\w* \w him|strong="H3205"\w* Ahuzzam, \w Hepher|strong="H2660"\w*, \w Temeni|strong="H8488"\w*, \w and|strong="H1121"\w* Haahashtari. These \w were|strong="H1121"\w* \w the|strong="H3205"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Naarah|strong="H5292"\w*. +\v 7 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Helah|strong="H2458"\w* \w were|strong="H1121"\w* \w Zereth|strong="H6889"\w*, \w Izhar|strong="H3328"\w*, \w and|strong="H1121"\w* Ethnan. +\v 8 \w Hakkoz|strong="H6976"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Anub|strong="H6036"\w*, \w Zobebah|strong="H6637"\w*, \w and|strong="H1121"\w* \w the|strong="H3205"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* Aharhel \w the|strong="H3205"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Harum|strong="H2037"\w*. +\p +\v 9 \w Jabez|strong="H3258"\w* \w was|strong="H8034"\w* \w more|strong="H3588"\w* \w honorable|strong="H3513"\w* \w than|strong="H3588"\w* \w his|strong="H7121"\w* brothers. \w His|strong="H7121"\w* mother \w named|strong="H7121"\w* \w him|strong="H3205"\w* \w Jabez|strong="H3258"\w*,\f + \fr 4:9 \ft “Jabez” sounds similar to the Hebrew word for “pain”.\f* saying, “\w Because|strong="H3588"\w* \w I|strong="H3588"\w* \w bore|strong="H3205"\w* \w him|strong="H3205"\w* \w with|strong="H3513"\w* \w sorrow|strong="H6090"\w*.” +\p +\v 10 \w Jabez|strong="H3258"\w* \w called|strong="H7121"\w* \w on|strong="H3027"\w* \w the|strong="H6213"\w* \w God|strong="H3027"\w*\f + \fr 4:10 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w of|strong="H3027"\w* \w Israel|strong="H3478"\w*, saying, “Oh \w that|strong="H3478"\w* \w you|strong="H6213"\w* \w would|strong="H3478"\w* \w bless|strong="H1288"\w* \w me|strong="H7121"\w* \w indeed|strong="H1288"\w*, \w and|strong="H3478"\w* \w enlarge|strong="H7235"\w* \w my|strong="H1961"\w* \w border|strong="H1366"\w*! \w May|strong="H1961"\w* \w your|strong="H6213"\w* \w hand|strong="H3027"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w me|strong="H7121"\w*, \w and|strong="H3478"\w* \w may|strong="H1961"\w* \w you|strong="H6213"\w* \w keep|strong="H6213"\w* \w me|strong="H7121"\w* \w from|strong="H3478"\w* \w evil|strong="H7451"\w*, \w that|strong="H3478"\w* \w I|strong="H3027"\w* \w may|strong="H1961"\w* \w not|strong="H1115"\w* \w cause|strong="H6213"\w* \w pain|strong="H7451"\w*!” +\p \w God|strong="H3027"\w* \w granted|strong="H6213"\w* \w him|strong="H7121"\w* \w that|strong="H3478"\w* \w which|strong="H7451"\w* \w he|strong="H6213"\w* \w requested|strong="H7592"\w*. +\p +\v 11 \w Chelub|strong="H3620"\w* \w the|strong="H3205"\w* brother \w of|strong="H3205"\w* \w Shuhah|strong="H7746"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Mehir|strong="H4243"\w*, \w who|strong="H1931"\w* \w was|strong="H1931"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* Eshton. +\v 12 Eshton \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* Beth Rapha, \w Paseah|strong="H6454"\w*, \w and|strong="H3205"\w* \w Tehinnah|strong="H8468"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* Ir Nahash. These are \w the|strong="H3205"\w* men \w of|strong="H3205"\w* \w Recah|strong="H7397"\w*. +\v 13 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Kenaz|strong="H7073"\w*: \w Othniel|strong="H6274"\w* \w and|strong="H1121"\w* \w Seraiah|strong="H8304"\w*. \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Othniel|strong="H6274"\w*: \w Hathath|strong="H2867"\w*.\f + \fr 4:13 \ft Greek and Vulgate add “and Meonothai”\f* +\v 14 \w Meonothai|strong="H4587"\w* \w became|strong="H3205"\w* \w the|strong="H3588"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Ophrah|strong="H6084"\w*: \w and|strong="H3097"\w* \w Seraiah|strong="H8304"\w* \w became|strong="H3205"\w* \w the|strong="H3588"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Joab|strong="H3097"\w* \w the|strong="H3588"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* Ge \w Harashim|strong="H2798"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H1961"\w* \w craftsmen|strong="H2796"\w*. +\v 15 \w The|strong="H3612"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Caleb|strong="H3612"\w* \w the|strong="H3612"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jephunneh|strong="H3312"\w*: \w Iru|strong="H5900"\w*, Elah, \w and|strong="H1121"\w* \w Naam|strong="H5277"\w*. \w The|strong="H3612"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Elah: \w Kenaz|strong="H7073"\w*. +\v 16 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehallelel|strong="H3094"\w*: \w Ziph|strong="H2128"\w*, \w Ziphah|strong="H2129"\w*, \w Tiria|strong="H8493"\w*, \w and|strong="H1121"\w* Asarel. +\v 17 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Ezrah|strong="H5834"\w*: \w Jether|strong="H3500"\w*, \w Mered|strong="H4778"\w*, \w Epher|strong="H6081"\w*, \w and|strong="H1121"\w* \w Jalon|strong="H3210"\w*; \w and|strong="H1121"\w* \w Mered|strong="H4778"\w*’s wife bore \w Miriam|strong="H4813"\w*, \w Shammai|strong="H8060"\w*, \w and|strong="H1121"\w* \w Ishbah|strong="H3431"\w* \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Eshtemoa. +\v 18 \w His|strong="H3947"\w* wife \w the|strong="H3947"\w* Jewess \w bore|strong="H3205"\w* \w Jered|strong="H3382"\w* \w the|strong="H3947"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Gedor|strong="H1446"\w*, \w Heber|strong="H2268"\w* \w the|strong="H3947"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Soco|strong="H7755"\w*, \w and|strong="H1121"\w* \w Jekuthiel|strong="H3354"\w* \w the|strong="H3947"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Zanoah|strong="H2182"\w*. \w These|strong="H3947"\w* \w are|strong="H1121"\w* \w the|strong="H3947"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Bithiah|strong="H1332"\w* \w the|strong="H3947"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Pharaoh|strong="H6547"\w*, whom \w Mered|strong="H4778"\w* \w took|strong="H3947"\w*. +\v 19 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* wife \w of|strong="H1121"\w* \w Hodiah|strong="H1940"\w*, \w the|strong="H1121"\w* sister \w of|strong="H1121"\w* \w Naham|strong="H5163"\w*, \w were|strong="H1121"\w* \w the|strong="H1121"\w* fathers \w of|strong="H1121"\w* \w Keilah|strong="H7084"\w* \w the|strong="H1121"\w* \w Garmite|strong="H1636"\w* \w and|strong="H1121"\w* Eshtemoa \w the|strong="H1121"\w* \w Maacathite|strong="H4602"\w*. +\v 20 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shimon|strong="H7889"\w*: Amnon, \w Rinnah|strong="H7441"\w*, Ben Hanan, \w and|strong="H1121"\w* \w Tilon|strong="H8436"\w*. \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Ishi|strong="H3469"\w*: \w Zoheth|strong="H2105"\w*, \w and|strong="H1121"\w* Ben \w Zoheth|strong="H2105"\w*. +\v 21 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shelah|strong="H7956"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*: \w Er|strong="H6147"\w* \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* \w Lecah|strong="H3922"\w*, \w Laadah|strong="H3935"\w* \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* \w Mareshah|strong="H4762"\w*, \w and|strong="H1121"\w* \w the|strong="H1121"\w* \w families|strong="H4940"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w those|strong="H1121"\w* \w who|strong="H1121"\w* worked \w fine|strong="H5656"\w* linen, \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* Ashbea; +\v 22 \w and|strong="H1697"\w* \w Jokim|strong="H3137"\w*, \w and|strong="H1697"\w* \w the|strong="H1697"\w* men \w of|strong="H1697"\w* \w Cozeba|strong="H3578"\w*, \w and|strong="H1697"\w* \w Joash|strong="H3101"\w*, \w and|strong="H1697"\w* \w Saraph|strong="H8315"\w*, who \w had|strong="H1697"\w* \w dominion|strong="H1166"\w* \w in|strong="H1697"\w* \w Moab|strong="H4124"\w*, \w and|strong="H1697"\w* Jashubilehem. These \w records|strong="H1697"\w* \w are|strong="H1697"\w* \w ancient|strong="H6267"\w*. +\v 23 \w These|strong="H1992"\w* \w were|strong="H1992"\w* \w the|strong="H5973"\w* \w potters|strong="H3335"\w*, \w and|strong="H4428"\w* \w the|strong="H5973"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H4428"\w* \w Netaim|strong="H5196"\w* \w and|strong="H4428"\w* \w Gederah|strong="H1448"\w*; \w they|strong="H1992"\w* \w lived|strong="H3427"\w* \w there|strong="H8033"\w* \w with|strong="H5973"\w* \w the|strong="H5973"\w* \w king|strong="H4428"\w* \w for|strong="H3427"\w* \w his|strong="H4428"\w* \w work|strong="H4399"\w*. +\p +\v 24 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Simeon|strong="H8095"\w*: \w Nemuel|strong="H5241"\w*, \w Jamin|strong="H3226"\w*, \w Jarib|strong="H3402"\w*, \w Zerah|strong="H2226"\w*, \w Shaul|strong="H7586"\w*; +\v 25 \w Shallum|strong="H7967"\w* \w his|strong="H4927"\w* \w son|strong="H1121"\w*, \w Mibsam|strong="H4017"\w* \w his|strong="H4927"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w Mishma|strong="H4927"\w* \w his|strong="H4927"\w* \w son|strong="H1121"\w*. +\v 26 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Mishma|strong="H4927"\w*: \w Hammuel|strong="H2536"\w* \w his|strong="H8096"\w* \w son|strong="H1121"\w*, \w Zaccur|strong="H2139"\w* \w his|strong="H8096"\w* \w son|strong="H1121"\w*, \w Shimei|strong="H8096"\w* \w his|strong="H8096"\w* \w son|strong="H1121"\w*. +\v 27 \w Shimei|strong="H8096"\w* \w had|strong="H3063"\w* \w sixteen|strong="H8337"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w six|strong="H8337"\w* \w daughters|strong="H1323"\w*; \w but|strong="H3808"\w* \w his|strong="H3605"\w* \w brothers|strong="H1121"\w* didn’t \w have|strong="H1121"\w* \w many|strong="H7227"\w* \w children|strong="H1121"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w family|strong="H4940"\w* didn’t \w multiply|strong="H7235"\w* \w like|strong="H3808"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*. +\v 28 They \w lived|strong="H3427"\w* \w at|strong="H3427"\w* Beersheba, \w Moladah|strong="H4137"\w*, Hazarshual, +\v 29 at \w Bilhah|strong="H1090"\w*, at \w Ezem|strong="H6107"\w*, at \w Tolad|strong="H8434"\w*, +\v 30 at \w Bethuel|strong="H1328"\w*, at \w Hormah|strong="H2767"\w*, at \w Ziklag|strong="H6860"\w*, +\v 31 \w at|strong="H1732"\w* Beth Marcaboth, Hazar Susim, \w at|strong="H1732"\w* Beth Biri, \w and|strong="H5892"\w* \w at|strong="H1732"\w* \w Shaaraim|strong="H8189"\w*. \w These|strong="H1732"\w* \w were|strong="H1732"\w* \w their|strong="H1732"\w* \w cities|strong="H5892"\w* \w until|strong="H5704"\w* \w David|strong="H1732"\w*’s \w reign|strong="H4427"\w*. +\v 32 Their \w villages|strong="H2691"\w* \w were|strong="H5892"\w* \w Etam|strong="H5862"\w*, \w Ain|strong="H5871"\w*, \w Rimmon|strong="H7417"\w*, \w Tochen|strong="H8507"\w*, \w and|strong="H5892"\w* \w Ashan|strong="H6228"\w*, \w five|strong="H2568"\w* \w cities|strong="H5892"\w*; +\v 33 \w and|strong="H5892"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w villages|strong="H2691"\w* \w that|strong="H3605"\w* \w were|strong="H5892"\w* \w around|strong="H5439"\w* \w the|strong="H3605"\w* \w same|strong="H2063"\w* \w cities|strong="H5892"\w*, \w as|strong="H5704"\w* \w far|strong="H5704"\w* \w as|strong="H5704"\w* \w Baal|strong="H1168"\w*. \w These|strong="H2063"\w* \w were|strong="H5892"\w* \w their|strong="H3605"\w* \w settlements|strong="H4186"\w*, \w and|strong="H5892"\w* \w they|strong="H5704"\w* kept \w their|strong="H3605"\w* \w genealogy|strong="H3187"\w*. +\v 34 \w Meshobab|strong="H4877"\w*, \w Jamlech|strong="H3230"\w*, \w Joshah|strong="H3144"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amaziah, +\v 35 \w Joel|strong="H3100"\w*, \w Jehu|strong="H3058"\w* \w the|strong="H3058"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joshibiah|strong="H3143"\w*, \w the|strong="H3058"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Seraiah|strong="H8304"\w*, \w the|strong="H3058"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Asiel|strong="H6221"\w*, +\v 36 Elioenai, \w Jaakobah|strong="H3291"\w*, \w Jeshohaiah|strong="H3439"\w*, \w Asaiah|strong="H6222"\w*, \w Adiel|strong="H5717"\w*, \w Jesimiel|strong="H3450"\w*, \w Benaiah|strong="H1141"\w*, +\v 37 \w and|strong="H1121"\w* \w Ziza|strong="H2124"\w* \w the|strong="H8098"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shiphi|strong="H8230"\w*, \w the|strong="H8098"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Allon, \w the|strong="H8098"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jedaiah|strong="H3042"\w*, \w the|strong="H8098"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shimri|strong="H8113"\w*, \w the|strong="H8098"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shemaiah|strong="H8098"\w*— +\v 38 \w these|strong="H1004"\w* mentioned \w by|strong="H8034"\w* \w name|strong="H8034"\w* \w were|strong="H4940"\w* \w princes|strong="H5387"\w* \w in|strong="H1004"\w* \w their|strong="H6555"\w* \w families|strong="H4940"\w*. \w Their|strong="H6555"\w* fathers’ \w houses|strong="H1004"\w* \w increased|strong="H6555"\w* \w greatly|strong="H7230"\w*. +\p +\v 39 \w They|strong="H5704"\w* \w went|strong="H3212"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w entrance|strong="H3996"\w* \w of|strong="H1516"\w* \w Gedor|strong="H1446"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w east|strong="H4217"\w* \w side|strong="H4217"\w* \w of|strong="H1516"\w* \w the|strong="H5704"\w* \w valley|strong="H1516"\w*, \w to|strong="H5704"\w* \w seek|strong="H1245"\w* \w pasture|strong="H4829"\w* \w for|strong="H5704"\w* \w their|strong="H1245"\w* \w flocks|strong="H6629"\w*. +\v 40 \w They|strong="H3588"\w* \w found|strong="H4672"\w* \w rich|strong="H8082"\w*, \w good|strong="H2896"\w* \w pasture|strong="H4829"\w*, \w and|strong="H3027"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w was|strong="H3027"\w* \w wide|strong="H7342"\w*, \w and|strong="H3027"\w* \w quiet|strong="H8252"\w*, \w and|strong="H3027"\w* \w peaceful|strong="H7961"\w*, \w for|strong="H3588"\w* \w those|strong="H4480"\w* \w who|strong="H3427"\w* \w lived|strong="H3427"\w* \w there|strong="H8033"\w* \w before|strong="H6440"\w* \w were|strong="H3027"\w* descended \w from|strong="H4480"\w* \w Ham|strong="H2526"\w*. +\v 41 \w These|strong="H2088"\w* \w written|strong="H3789"\w* \w by|strong="H3117"\w* \w name|strong="H8034"\w* \w came|strong="H4672"\w* \w in|strong="H3427"\w* \w the|strong="H3588"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w Hezekiah|strong="H2396"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w struck|strong="H5221"\w* \w their|strong="H3588"\w* tents \w and|strong="H3063"\w* \w the|strong="H3588"\w* \w Meunim|strong="H4586"\w* \w who|strong="H3427"\w* \w were|strong="H3117"\w* \w found|strong="H4672"\w* \w there|strong="H8033"\w*; \w and|strong="H3063"\w* \w they|strong="H3588"\w* \w destroyed|strong="H2763"\w* \w them|strong="H5221"\w* \w utterly|strong="H2763"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, \w and|strong="H3063"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w their|strong="H3588"\w* \w place|strong="H8478"\w*, \w because|strong="H3588"\w* \w there|strong="H8033"\w* \w was|strong="H8034"\w* \w pasture|strong="H4829"\w* \w there|strong="H8033"\w* \w for|strong="H3588"\w* \w their|strong="H3588"\w* \w flocks|strong="H6629"\w*. +\v 42 \w Some|strong="H4480"\w* \w of|strong="H1121"\w* \w them|strong="H1992"\w*, even \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Simeon|strong="H8095"\w*, \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w men|strong="H1121"\w*, \w went|strong="H1980"\w* \w to|strong="H1980"\w* \w Mount|strong="H2022"\w* \w Seir|strong="H8165"\w*, having \w for|strong="H1121"\w* \w their|strong="H1992"\w* \w captains|strong="H7218"\w* \w Pelatiah|strong="H6410"\w*, \w Neariah|strong="H5294"\w*, \w Rephaiah|strong="H7509"\w*, \w and|strong="H3967"\w* \w Uzziel|strong="H5816"\w*, \w the|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Ishi|strong="H3469"\w*. +\v 43 \w They|strong="H3117"\w* \w struck|strong="H5221"\w* \w the|strong="H5221"\w* \w remnant|strong="H7611"\w* \w of|strong="H3117"\w* \w the|strong="H5221"\w* \w Amalekites|strong="H6002"\w* \w who|strong="H3427"\w* \w escaped|strong="H6413"\w*, \w and|strong="H3117"\w* \w have|strong="H3117"\w* \w lived|strong="H3427"\w* \w there|strong="H8033"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\c 5 +\p +\v 1 \w The|strong="H3588"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* \w the|strong="H3588"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* (\w for|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H3478"\w* \w the|strong="H3588"\w* \w firstborn|strong="H1060"\w*, \w but|strong="H3588"\w* \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w defiled|strong="H2490"\w* \w his|strong="H5414"\w* \w father|strong="H1121"\w*’s \w couch|strong="H3326"\w*, \w his|strong="H5414"\w* \w birthright|strong="H1062"\w* \w was|strong="H3478"\w* \w given|strong="H5414"\w* \w to|strong="H3478"\w* \w the|strong="H3588"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w genealogy|strong="H3187"\w* \w is|strong="H1931"\w* \w not|strong="H3808"\w* \w to|strong="H3478"\w* \w be|strong="H3808"\w* \w listed|strong="H3187"\w* according \w to|strong="H3478"\w* \w the|strong="H3588"\w* \w birthright|strong="H1062"\w*. +\v 2 \w For|strong="H3588"\w* \w Judah|strong="H3063"\w* \w prevailed|strong="H1396"\w* \w above|strong="H4480"\w* \w his|strong="H3588"\w* brothers, \w and|strong="H3063"\w* \w from|strong="H4480"\w* \w him|strong="H4480"\w* \w came|strong="H3063"\w* \w the|strong="H3588"\w* \w prince|strong="H5057"\w*; \w but|strong="H3588"\w* \w the|strong="H3588"\w* \w birthright|strong="H1062"\w* \w was|strong="H3063"\w* \w Joseph|strong="H3130"\w*’s)— +\v 3 \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w* \w the|strong="H1121"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*: \w Hanoch|strong="H2585"\w*, \w Pallu|strong="H6396"\w*, \w Hezron|strong="H2696"\w*, \w and|strong="H1121"\w* \w Carmi|strong="H3756"\w*. +\v 4 \w The|strong="H8098"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Joel|strong="H3100"\w*: \w Shemaiah|strong="H8098"\w* \w his|strong="H8096"\w* \w son|strong="H1121"\w*, \w Gog|strong="H1463"\w* \w his|strong="H8096"\w* \w son|strong="H1121"\w*, \w Shimei|strong="H8096"\w* \w his|strong="H8096"\w* \w son|strong="H1121"\w*, +\v 5 \w Micah|strong="H4318"\w* \w his|strong="H4318"\w* \w son|strong="H1121"\w*, \w Reaiah|strong="H7211"\w* \w his|strong="H4318"\w* \w son|strong="H1121"\w*, \w Baal|strong="H1168"\w* \w his|strong="H4318"\w* \w son|strong="H1121"\w*, +\v 6 \w and|strong="H1121"\w* \w Beerah|strong="H5387"\w* \w his|strong="H1540"\w* \w son|strong="H1121"\w*, whom Tilgath Pilneser \w king|strong="H4428"\w* \w of|strong="H1121"\w* Assyria \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w captive|strong="H1540"\w*. \w He|strong="H1931"\w* \w was|strong="H1931"\w* \w prince|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H1540"\w* \w Reubenites|strong="H7206"\w*. +\v 7 \w His|strong="H2148"\w* brothers \w by|strong="H3187"\w* their \w families|strong="H4940"\w*, when \w the|strong="H2148"\w* \w genealogy|strong="H3187"\w* \w of|strong="H7218"\w* their \w generations|strong="H8435"\w* \w was|strong="H7218"\w* \w listed|strong="H3187"\w*: \w the|strong="H2148"\w* \w chief|strong="H7218"\w*, \w Jeiel|strong="H3273"\w*, \w and|strong="H7218"\w* \w Zechariah|strong="H2148"\w*, +\v 8 \w and|strong="H1121"\w* \w Bela|strong="H1106"\w* \w the|strong="H5704"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Azaz|strong="H5811"\w*, \w the|strong="H5704"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shema|strong="H8087"\w*, \w the|strong="H5704"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joel|strong="H3100"\w*, \w who|strong="H1931"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Aroer|strong="H6177"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Nebo|strong="H5015"\w* \w and|strong="H1121"\w* Baal Meon; +\v 9 \w and|strong="H3427"\w* \w he|strong="H3588"\w* \w lived|strong="H3427"\w* \w eastward|strong="H4217"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3588"\w* entrance \w of|strong="H3427"\w* \w the|strong="H3588"\w* \w wilderness|strong="H4057"\w* \w from|strong="H4480"\w* \w the|strong="H3588"\w* \w river|strong="H5104"\w* \w Euphrates|strong="H6578"\w*, \w because|strong="H3588"\w* \w their|strong="H3588"\w* \w livestock|strong="H4735"\w* \w were|strong="H3427"\w* \w multiplied|strong="H7235"\w* \w in|strong="H3427"\w* \w the|strong="H3588"\w* land \w of|strong="H3427"\w* \w Gilead|strong="H1568"\w*. +\p +\v 10 \w In|strong="H3427"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w Saul|strong="H7586"\w*, \w they|strong="H3117"\w* \w made|strong="H6213"\w* \w war|strong="H4421"\w* \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w Hagrites|strong="H1905"\w*, \w who|strong="H3605"\w* \w fell|strong="H5307"\w* \w by|strong="H3027"\w* \w their|strong="H3605"\w* \w hand|strong="H3027"\w*; \w and|strong="H3117"\w* \w they|strong="H3117"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w their|strong="H3605"\w* tents \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w east|strong="H4217"\w* \w of|strong="H3117"\w* \w Gilead|strong="H1568"\w*. +\p +\v 11 \w The|strong="H5704"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Gad|strong="H1410"\w* \w lived|strong="H3427"\w* \w beside|strong="H5704"\w* \w them|strong="H5048"\w* \w in|strong="H3427"\w* \w the|strong="H5704"\w* land \w of|strong="H1121"\w* \w Bashan|strong="H1316"\w* \w to|strong="H5704"\w* \w Salecah|strong="H5548"\w*: +\v 12 \w Joel|strong="H3100"\w* \w the|strong="H3100"\w* \w chief|strong="H7218"\w*, \w Shapham|strong="H8223"\w* \w the|strong="H3100"\w* \w second|strong="H4932"\w*, \w Janai|strong="H3285"\w*, \w and|strong="H7218"\w* \w Shaphat|strong="H8202"\w* \w in|strong="H7218"\w* \w Bashan|strong="H1316"\w*. +\v 13 Their brothers \w of|strong="H1004"\w* their fathers’ \w houses|strong="H1004"\w*: \w Michael|strong="H4317"\w*, \w Meshullam|strong="H4918"\w*, \w Sheba|strong="H7652"\w*, \w Jorai|strong="H3140"\w*, \w Jacan|strong="H3275"\w*, \w Zia|strong="H2127"\w*, \w and|strong="H1004"\w* \w Eber|strong="H5677"\w*, \w seven|strong="H7651"\w*. +\v 14 These \w were|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Abihail, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Huri|strong="H2359"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jaroah|strong="H3386"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Michael|strong="H4317"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeshishai|strong="H3454"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jahdo|strong="H3163"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Buz; +\v 15 Ahi \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Abdiel|strong="H5661"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Guni|strong="H1476"\w*, \w chief|strong="H7218"\w* \w of|strong="H1121"\w* their fathers’ \w houses|strong="H1004"\w*. +\v 16 \w They|strong="H5921"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Gilead|strong="H1568"\w* \w in|strong="H3427"\w* \w Bashan|strong="H1316"\w* \w and|strong="H4054"\w* \w in|strong="H3427"\w* \w its|strong="H3605"\w* \w towns|strong="H1323"\w*, \w and|strong="H4054"\w* \w in|strong="H3427"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w* \w of|strong="H1323"\w* \w Sharon|strong="H8289"\w* \w as|strong="H3427"\w* \w far|strong="H5921"\w* \w as|strong="H3427"\w* \w their|strong="H3605"\w* \w borders|strong="H8444"\w*. +\v 17 \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w were|strong="H3478"\w* \w listed|strong="H3187"\w* \w by|strong="H3117"\w* \w genealogies|strong="H3187"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w Jotham|strong="H3147"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w Jeroboam|strong="H3379"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. +\p +\v 18 \w The|strong="H5375"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuben|strong="H7205"\w*, \w the|strong="H5375"\w* \w Gadites|strong="H1425"\w*, \w and|strong="H3967"\w* \w the|strong="H5375"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*, \w of|strong="H1121"\w* \w valiant|strong="H2428"\w* \w men|strong="H1121"\w*, \w men|strong="H1121"\w* \w able|strong="H2428"\w* \w to|strong="H3318"\w* \w bear|strong="H5375"\w* \w buckler|strong="H4043"\w* \w and|strong="H3967"\w* \w sword|strong="H2719"\w*, \w able|strong="H2428"\w* \w to|strong="H3318"\w* \w shoot|strong="H1869"\w* \w with|strong="H3318"\w* \w bow|strong="H7198"\w*, \w and|strong="H3967"\w* \w skillful|strong="H3925"\w* \w in|strong="H4421"\w* \w war|strong="H4421"\w*, \w were|strong="H1121"\w* forty-four thousand \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w sixty|strong="H8346"\w* \w that|strong="H4480"\w* \w were|strong="H1121"\w* \w able|strong="H2428"\w* \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w war|strong="H4421"\w*. +\v 19 \w They|strong="H6213"\w* \w made|strong="H6213"\w* \w war|strong="H4421"\w* \w with|strong="H5973"\w* \w the|strong="H6213"\w* \w Hagrites|strong="H1905"\w*, \w with|strong="H5973"\w* \w Jetur|strong="H3195"\w*, \w and|strong="H6213"\w* \w Naphish|strong="H5305"\w*, \w and|strong="H6213"\w* \w Nodab|strong="H5114"\w*. +\v 20 \w They|strong="H3588"\w* \w were|strong="H3027"\w* \w helped|strong="H5826"\w* \w against|strong="H5921"\w* \w them|strong="H5414"\w*, \w and|strong="H3027"\w* \w the|strong="H3605"\w* \w Hagrites|strong="H1905"\w* \w were|strong="H3027"\w* \w delivered|strong="H5414"\w* \w into|strong="H5921"\w* \w their|strong="H3605"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H3027"\w* \w with|strong="H5973"\w* \w them|strong="H5414"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w cried|strong="H2199"\w* \w to|strong="H5921"\w* \w God|strong="H5414"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w battle|strong="H4421"\w*, \w and|strong="H3027"\w* \w he|strong="H3588"\w* \w answered|strong="H6279"\w* \w them|strong="H5414"\w* \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w put|strong="H5414"\w* \w their|strong="H3605"\w* trust \w in|strong="H5921"\w* \w him|strong="H5414"\w*. +\v 21 \w They|strong="H5315"\w* \w took|strong="H7617"\w* \w away|strong="H7617"\w* \w their|strong="H7617"\w* \w livestock|strong="H4735"\w*: \w of|strong="H5315"\w* \w their|strong="H7617"\w* \w camels|strong="H1581"\w* \w fifty|strong="H2572"\w* thousand, \w and|strong="H3967"\w* \w of|strong="H5315"\w* \w sheep|strong="H6629"\w* \w two|strong="H2543"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w* thousand, \w and|strong="H3967"\w* \w of|strong="H5315"\w* \w donkeys|strong="H2543"\w* \w two|strong="H2543"\w* thousand, \w and|strong="H3967"\w* \w of|strong="H5315"\w* \w men|strong="H5315"\w* \w one|strong="H5315"\w* \w hundred|strong="H3967"\w* thousand. +\v 22 \w For|strong="H3588"\w* \w many|strong="H7227"\w* \w fell|strong="H5307"\w* \w slain|strong="H2491"\w*, \w because|strong="H3588"\w* \w the|strong="H3588"\w* \w war|strong="H4421"\w* \w was|strong="H4421"\w* \w of|strong="H3427"\w* God. \w They|strong="H3588"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w their|strong="H3588"\w* \w place|strong="H8478"\w* \w until|strong="H5704"\w* \w the|strong="H3588"\w* \w captivity|strong="H1473"\w*. +\p +\v 23 \w The|strong="H5704"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5704"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5704"\w* land. \w They|strong="H1992"\w* \w increased|strong="H7235"\w* \w from|strong="H1121"\w* \w Bashan|strong="H1316"\w* \w to|strong="H5704"\w* Baal \w Hermon|strong="H2768"\w*, \w Senir|strong="H8149"\w*, \w and|strong="H1121"\w* \w Mount|strong="H2022"\w* \w Hermon|strong="H2768"\w*. +\v 24 \w These|strong="H1004"\w* \w were|strong="H2428"\w* \w the|strong="H3414"\w* \w heads|strong="H7218"\w* \w of|strong="H1004"\w* their fathers’ \w houses|strong="H1004"\w*: \w Epher|strong="H6081"\w*, \w Ishi|strong="H3469"\w*, Eliel, \w Azriel|strong="H5837"\w*, \w Jeremiah|strong="H3414"\w*, \w Hodaviah|strong="H1938"\w*, \w and|strong="H1004"\w* \w Jahdiel|strong="H3164"\w*—\w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H1004"\w* \w valor|strong="H2428"\w*, \w famous|strong="H8034"\w* \w men|strong="H1368"\w*, \w heads|strong="H7218"\w* \w of|strong="H1004"\w* their fathers’ \w houses|strong="H1004"\w*. +\v 25 \w They|strong="H5971"\w* \w trespassed|strong="H4603"\w* \w against|strong="H6440"\w* \w the|strong="H6440"\w* God \w of|strong="H6440"\w* \w their|strong="H6440"\w* fathers, \w and|strong="H5971"\w* \w played|strong="H2181"\w* \w the|strong="H6440"\w* \w prostitute|strong="H2181"\w* after \w the|strong="H6440"\w* gods \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w peoples|strong="H5971"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w whom|strong="H6440"\w* God \w destroyed|strong="H8045"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*. +\v 26 \w So|strong="H2088"\w* \w the|strong="H3117"\w* God \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w stirred|strong="H5782"\w* \w up|strong="H5782"\w* \w the|strong="H3117"\w* \w spirit|strong="H7307"\w* \w of|strong="H4428"\w* \w Pul|strong="H6322"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria, \w and|strong="H3478"\w* \w the|strong="H3117"\w* \w spirit|strong="H7307"\w* \w of|strong="H4428"\w* Tilgath Pilneser \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria, \w and|strong="H3478"\w* \w he|strong="H3117"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w the|strong="H3117"\w* \w Reubenites|strong="H7206"\w*, \w the|strong="H3117"\w* \w Gadites|strong="H1425"\w*, \w and|strong="H3478"\w* \w the|strong="H3117"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H4428"\w* \w Manasseh|strong="H4519"\w*, \w and|strong="H3478"\w* \w brought|strong="H3478"\w* \w them|strong="H1540"\w* \w to|strong="H5704"\w* \w Halah|strong="H2477"\w*, \w Habor|strong="H2249"\w*, \w Hara|strong="H2024"\w*, \w and|strong="H3478"\w* \w to|strong="H5704"\w* \w the|strong="H3117"\w* \w river|strong="H5104"\w* \w of|strong="H4428"\w* \w Gozan|strong="H1470"\w*, \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\c 6 +\p +\v 1 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w*: Gershon, \w Kohath|strong="H6955"\w*, \w and|strong="H1121"\w* \w Merari|strong="H4847"\w*. +\v 2 \w The|strong="H8034"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Kohath: Amram, Izhar, Hebron, \w and|strong="H1121"\w* Uzziel. +\v 3 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Amram|strong="H6019"\w*: Aaron, Moses, \w and|strong="H1121"\w* Miriam. \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron: Nadab, Abihu, Eleazar, \w and|strong="H1121"\w* Ithamar. +\v 4 Eleazar became \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Phinehas, Phinehas became \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Abishua, +\v 5 Abishua became \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Bukki. Bukki became \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Uzzi. +\v 6 Uzzi became \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Zerahiah. Zerahiah became \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Meraioth. +\v 7 Meraioth became \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Amariah. Amariah became \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Ahitub. +\v 8 Ahitub became \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Zadok. Zadok became \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Ahimaaz. +\v 9 Ahimaaz \w became|strong="H7586"\w* \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Azariah. Azariah \w became|strong="H7586"\w* \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Johanan. +\v 10 Johanan became \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Azariah, \w who|strong="H1121"\w* executed \w the|strong="H1121"\w* priest’s office \w in|strong="H1121"\w* \w the|strong="H1121"\w* house \w that|strong="H1121"\w* Solomon built \w in|strong="H1121"\w* Jerusalem. +\v 11 Azariah became \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Amariah. Amariah became \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Ahitub. +\v 12 Ahitub became \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Zadok. Zadok became \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Shallum. +\v 13 Shallum became \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Hilkiah. Hilkiah became \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Azariah. +\v 14 Azariah became \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Seraiah. Seraiah became \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* Jehozadak. +\v 15 Jehozadak \w went|strong="H1121"\w* into captivity \w when|strong="H1121"\w* \w Yahweh|strong="H3068"\w* carried Judah \w and|strong="H1121"\w* Jerusalem away \w by|strong="H1121"\w* \w the|strong="H1121"\w* hand \w of|strong="H1121"\w* Nebuchadnezzar. +\p +\v 16 \w The|strong="H5921"\w* sons \w of|strong="H1004"\w* Levi: Gershom, Kohath, \w and|strong="H3068"\w* Merari. +\v 17 \w These|strong="H6440"\w* \w are|strong="H3068"\w* \w the|strong="H6440"\w* names \w of|strong="H1004"\w* \w the|strong="H6440"\w* sons \w of|strong="H1004"\w* Gershom: Libni \w and|strong="H3068"\w* Shimei. +\v 18 \w The|strong="H5975"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Kohath \w were|strong="H1121"\w* Amram, Izhar, Hebron, \w and|strong="H1121"\w* Uzziel. +\v 19 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Merari: Mahli \w and|strong="H1121"\w* Mushi. These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w families|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Levites|strong="H1121"\w* according \w to|strong="H1121"\w* their fathers’ households. +\v 20 \w Of|strong="H1121"\w* Gershom: Libni \w his|strong="H6689"\w* \w son|strong="H1121"\w*, Jahath \w his|strong="H6689"\w* \w son|strong="H1121"\w*, Zimmah \w his|strong="H6689"\w* \w son|strong="H1121"\w*, +\v 21 Joah \w his|strong="H3100"\w* \w son|strong="H1121"\w*, Iddo \w his|strong="H3100"\w* \w son|strong="H1121"\w*, Zerah \w his|strong="H3100"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* Jeatherai \w his|strong="H3100"\w* \w son|strong="H1121"\w*. +\v 22 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Kohath: Amminadab \w his|strong="H8480"\w* \w son|strong="H1121"\w*, \w Korah|strong="H7141"\w* \w his|strong="H8480"\w* \w son|strong="H1121"\w*, Assir \w his|strong="H8480"\w* \w son|strong="H1121"\w*, +\v 23 Elkanah \w his|strong="H3478"\w* \w son|strong="H1121"\w*, Ebiasaph \w his|strong="H3478"\w* \w son|strong="H1121"\w*, Assir \w his|strong="H3478"\w* \w son|strong="H1121"\w*, +\v 24 Tahath \w his|strong="H5921"\w* \w son|strong="H1121"\w*, Uriel \w his|strong="H5921"\w* \w son|strong="H1121"\w*, Uzziah \w his|strong="H5921"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* Shaul \w his|strong="H5921"\w* \w son|strong="H1121"\w*. +\v 25 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Elkanah: Amasai \w and|strong="H1121"\w* Ahimoth. +\v 26 \w As|strong="H1121"\w* \w for|strong="H1121"\w* Elkanah, \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Elkanah: Zophai \w his|strong="H2226"\w* \w son|strong="H1121"\w*, Nahath \w his|strong="H2226"\w* \w son|strong="H1121"\w*, +\v 27 Eliab \w his|strong="H8096"\w* \w son|strong="H1121"\w*, Jeroham \w his|strong="H8096"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* Elkanah \w his|strong="H8096"\w* \w son|strong="H1121"\w*. +\v 28 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Samuel: \w the|strong="H1121"\w* \w firstborn|strong="H1121"\w*, Joel, \w and|strong="H1121"\w* \w the|strong="H1121"\w* second, Abijah. +\v 29 \w The|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w*: Mahli, Libni \w his|strong="H5921"\w* \w son|strong="H1121"\w*, Shimei \w his|strong="H5921"\w* \w son|strong="H1121"\w*, Uzzah \w his|strong="H5921"\w* \w son|strong="H1121"\w*, +\v 30 Shimea \w his|strong="H1121"\w* \w son|strong="H1121"\w*, Haggiah \w his|strong="H1121"\w* \w son|strong="H1121"\w*, Asaiah \w his|strong="H1121"\w* \w son|strong="H1121"\w*. +\p +\v 31 These \w are|strong="H1121"\w* they whom David set over \w the|strong="H1121"\w* service \w of|strong="H1121"\w* song \w in|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s house after \w the|strong="H1121"\w* ark came \w to|strong="H1121"\w* rest there. +\v 32 They ministered \w with|strong="H1121"\w* song before \w the|strong="H1121"\w* tabernacle \w of|strong="H1121"\w* \w the|strong="H1121"\w* Tent \w of|strong="H1121"\w* Meeting until Solomon \w had|strong="H1121"\w* built \w Yahweh|strong="H3068"\w*’s house \w in|strong="H1121"\w* Jerusalem. They performed \w the|strong="H1121"\w* duties \w of|strong="H1121"\w* \w their|strong="H4847"\w* office according \w to|strong="H1121"\w* \w their|strong="H4847"\w* order. +\v 33 \w These|strong="H3605"\w* \w are|strong="H1004"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* served, \w and|strong="H1004"\w* \w their|strong="H3605"\w* sons. \w Of|strong="H1004"\w* \w the|strong="H3605"\w* sons \w of|strong="H1004"\w* \w the|strong="H3605"\w* Kohathites: Heman \w the|strong="H3605"\w* singer, \w the|strong="H3605"\w* son \w of|strong="H1004"\w* Joel, \w the|strong="H3605"\w* son \w of|strong="H1004"\w* Samuel, +\v 34 \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Elkanah, \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Jeroham, \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Eliel, \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Toah, +\v 35 \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Zuph, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Elkanah, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Mahath, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amasai, +\v 36 \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Elkanah, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Joel, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Azariah, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Zephaniah, +\v 37 \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Tahath, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Assir, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ebiasaph, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Korah, +\v 38 \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Izhar, \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Kohath, \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Levi, \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Israel. +\v 39 \w His|strong="H1961"\w* brother Asaph, \w who|strong="H1121"\w* stood \w on|strong="H1961"\w* \w his|strong="H1961"\w* right hand, \w even|strong="H3588"\w* Asaph \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Berechiah, \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Shimea, +\v 40 \w the|strong="H5414"\w* son \w of|strong="H5439"\w* Michael, \w the|strong="H5414"\w* son \w of|strong="H5439"\w* Baaseiah, \w the|strong="H5414"\w* son \w of|strong="H5439"\w* Malchijah, +\v 41 \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ethni, \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Zerah, \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Adaiah, +\v 42 \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ethan, \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Zimmah, \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Shimei, +\v 43 the son \w of|strong="H4054"\w* Jahath, the son \w of|strong="H4054"\w* Gershom, the son \w of|strong="H4054"\w* Levi. +\v 44 On the left hand their brothers the sons \w of|strong="H4054"\w* Merari: Ethan the son \w of|strong="H4054"\w* Kishi, the son \w of|strong="H4054"\w* Abdi, the son \w of|strong="H4054"\w* Malluch, +\v 45 \w the|strong="H3605"\w* son \w of|strong="H4294"\w* Hashabiah, \w the|strong="H3605"\w* son \w of|strong="H4294"\w* Amaziah, \w the|strong="H3605"\w* son \w of|strong="H4294"\w* Hilkiah, +\v 46 \w the|strong="H2677"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amzi, \w the|strong="H2677"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Bani, \w the|strong="H2677"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Shemer, +\v 47 \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Mahli, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Mushi, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Merari, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Levi. +\v 48 \w Their|strong="H8147"\w* \w brothers|strong="H1121"\w* \w the|strong="H1121"\w* \w Levites|strong="H1121"\w* \w were|strong="H1121"\w* \w appointed|strong="H1121"\w* \w for|strong="H1121"\w* all \w the|strong="H1121"\w* service \w of|strong="H1121"\w* \w the|strong="H1121"\w* tabernacle \w of|strong="H1121"\w* God’s house. +\v 49 \w But|strong="H3881"\w* Aaron \w and|strong="H1121"\w* \w his|strong="H5414"\w* \w sons|strong="H1121"\w* \w offered|strong="H5414"\w* \w on|strong="H5892"\w* \w the|strong="H5414"\w* altar \w of|strong="H1121"\w* burnt offering, \w and|strong="H1121"\w* \w on|strong="H5892"\w* \w the|strong="H5414"\w* altar \w of|strong="H1121"\w* incense, \w for|strong="H1121"\w* \w all|strong="H5414"\w* \w the|strong="H5414"\w* \w work|strong="H5414"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* most holy \w place|strong="H5414"\w*, \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w make|strong="H5414"\w* atonement \w for|strong="H1121"\w* \w Israel|strong="H3478"\w*, according \w to|strong="H3478"\w* \w all|strong="H5414"\w* \w that|strong="H3478"\w* \w Moses|strong="H5414"\w* \w the|strong="H5414"\w* servant \w of|strong="H1121"\w* \w God|strong="H5414"\w* \w had|strong="H3478"\w* commanded. +\p +\v 50 \w These|strong="H7121"\w* \w are|strong="H1121"\w* \w the|strong="H5414"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron: Eleazar \w his|strong="H5414"\w* \w son|strong="H1121"\w*, Phinehas \w his|strong="H5414"\w* \w son|strong="H1121"\w*, Abishua \w his|strong="H5414"\w* \w son|strong="H1121"\w*, +\v 51 Bukki \w his|strong="H1961"\w* \w son|strong="H1121"\w*, Uzzi \w his|strong="H1961"\w* \w son|strong="H1121"\w*, Zerahiah \w his|strong="H1961"\w* \w son|strong="H1121"\w*, +\v 52 Meraioth \w his|strong="H5414"\w* son, Amariah \w his|strong="H5414"\w* son, Ahitub \w his|strong="H5414"\w* son, +\v 53 Zadok his son, \w and|strong="H4054"\w* Ahimaaz his son. +\v 54 Now these are their dwelling places according to their encampments \w in|strong="H4054"\w* their borders: to the sons \w of|strong="H4054"\w* Aaron, \w of|strong="H4054"\w* the families \w of|strong="H4054"\w* the Kohathites (for theirs was the first lot), +\v 55 \w to|strong="H1121"\w* \w them|strong="H1121"\w* they gave Hebron \w in|strong="H1121"\w* \w the|strong="H1121"\w* \w land|strong="H4940"\w* \w of|strong="H1121"\w* Judah, \w and|strong="H1121"\w* its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w* around \w it|strong="H1121"\w*; +\v 56 but \w the|strong="H2677"\w* fields \w of|strong="H1121"\w* \w the|strong="H2677"\w* city \w and|strong="H1121"\w* \w its|strong="H2677"\w* villages, they gave \w to|strong="H1121"\w* Caleb \w the|strong="H2677"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Jephunneh. +\v 57 \w To|strong="H4294"\w* \w the|strong="H3485"\w* sons \w of|strong="H4294"\w* Aaron they gave \w the|strong="H3485"\w* cities \w of|strong="H4294"\w* refuge, Hebron, Libnah also \w with|strong="H4294"\w* its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, Jattir, Eshtemoa \w with|strong="H4294"\w* its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, +\v 58 Hilen with its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, Debir with its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, +\v 59 Ashan \w with|strong="H4294"\w* its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w and|strong="H4054"\w* Beth Shemesh \w with|strong="H4294"\w* its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*; +\v 60 \w and|strong="H4054"\w* \w out|strong="H4054"\w* \w of|strong="H4054"\w* the tribe \w of|strong="H4054"\w* Benjamin, Geba with its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, Allemeth with its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w and|strong="H4054"\w* Anathoth with its \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*. All their cities throughout their families were thirteen cities. +\p +\v 61 \w To|strong="H4294"\w* \w the|strong="H4294"\w* rest \w of|strong="H4294"\w* \w the|strong="H4294"\w* sons \w of|strong="H4294"\w* Kohath \w were|strong="H4294"\w* given by lot, \w out|strong="H4054"\w* \w of|strong="H4294"\w* \w the|strong="H4294"\w* family \w of|strong="H4294"\w* \w the|strong="H4294"\w* \w tribe|strong="H4294"\w*, \w out|strong="H4054"\w* \w of|strong="H4294"\w* \w the|strong="H4294"\w* half-tribe, \w the|strong="H4294"\w* half \w of|strong="H4294"\w* Manasseh, ten cities. +\v 62 \w To|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Gershom, according \w to|strong="H1121"\w* \w their|strong="H4847"\w* \w families|strong="H1121"\w*, \w out|strong="H4054"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* Issachar, \w and|strong="H1121"\w* \w out|strong="H4054"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* Asher, \w and|strong="H1121"\w* \w out|strong="H4054"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* Naphtali, \w and|strong="H1121"\w* \w out|strong="H4054"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribe|strong="H4294"\w* \w of|strong="H1121"\w* Manasseh \w in|strong="H1121"\w* Bashan, thirteen cities. +\v 63 \w To|strong="H3383"\w* \w the|strong="H5676"\w* sons \w of|strong="H4294"\w* Merari \w were|strong="H3383"\w* given \w by|strong="H3383"\w* lot, according \w to|strong="H3383"\w* their families, \w out|strong="H4054"\w* \w of|strong="H4294"\w* \w the|strong="H5676"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w Reuben|strong="H7205"\w*, \w and|strong="H4054"\w* \w out|strong="H4054"\w* \w of|strong="H4294"\w* \w the|strong="H5676"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* Gad, \w and|strong="H4054"\w* \w out|strong="H4054"\w* \w of|strong="H4294"\w* \w the|strong="H5676"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* Zebulun, twelve cities. +\v 64 The children \w of|strong="H4054"\w* Israel gave \w to|strong="H6932"\w* the Levites the cities with their \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*. +\v 65 They gave by lot \w out|strong="H4054"\w* \w of|strong="H4294"\w* \w the|strong="H1410"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w the|strong="H1410"\w* children \w of|strong="H4294"\w* Judah, \w and|strong="H4054"\w* \w out|strong="H4054"\w* \w of|strong="H4294"\w* \w the|strong="H1410"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w the|strong="H1410"\w* children \w of|strong="H4294"\w* Simeon, \w and|strong="H4054"\w* \w out|strong="H4054"\w* \w of|strong="H4294"\w* \w the|strong="H1410"\w* \w tribe|strong="H4294"\w* \w of|strong="H4294"\w* \w the|strong="H1410"\w* children \w of|strong="H4294"\w* Benjamin, these cities which \w are|strong="H4294"\w* mentioned by name. +\p +\v 66 Some \w of|strong="H3270"\w* \w the|strong="H3270"\w* families \w of|strong="H3270"\w* \w the|strong="H3270"\w* sons \w of|strong="H3270"\w* Kohath had cities \w of|strong="H3270"\w* their borders \w out|strong="H4054"\w* \w of|strong="H3270"\w* \w the|strong="H3270"\w* tribe \w of|strong="H3270"\w* Ephraim. +\v 67 They gave to them the cities of refuge, Shechem in the hill country of Ephraim with its pasture lands and Gezer with its pasture lands, +\v 68 Jokmeam with its pasture lands, Beth Horon with its pasture lands, +\v 69 Aijalon with its pasture lands, Gath Rimmon with its pasture lands; +\v 70 and out of the half-tribe of Manasseh, Aner with its pasture lands, and Bileam with its pasture lands, for the rest of the family of the sons of Kohath. +\p +\v 71 To the sons of Gershom were given, out of the family of the half-tribe of Manasseh, Golan in Bashan with its pasture lands, and Ashtaroth with its pasture lands; +\v 72 and out of the tribe of Issachar, Kedesh with its pasture lands, Daberath with its pasture lands, +\v 73 Ramoth with its pasture lands, and Anem with its pasture lands; +\v 74 and out of the tribe of Asher, Mashal with its pasture lands, Abdon with its pasture lands, +\v 75 Hukok with its pasture lands, and Rehob with its pasture lands; +\v 76 and out of the tribe of Naphtali, Kedesh in Galilee with its pasture lands, Hammon with its pasture lands, and Kiriathaim with its pasture lands. +\p +\v 77 To the rest of the Levites, the sons of Merari, were given, out of the tribe of Zebulun, Rimmono with its pasture lands, and Tabor with its pasture lands; +\v 78 and beyond the Jordan at Jericho, on the east side of the Jordan, were given them out of the tribe of Reuben: Bezer in the wilderness with its pasture lands, Jahzah with its pasture lands, +\v 79 Kedemoth with its pasture lands, and Mephaath with its pasture lands; +\v 80 and out of the tribe of Gad, Ramoth in Gilead with its pasture lands, Mahanaim with its pasture lands, +\v 81 Heshbon with its pasture lands, and Jazer with its pasture lands. +\c 7 +\p +\v 1 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Issachar|strong="H3485"\w*: \w Tola|strong="H8439"\w*, \w Puah|strong="H6312"\w*, \w Jashub|strong="H3437"\w*, \w and|strong="H1121"\w* \w Shimron|strong="H8110"\w*, four. +\v 2 \w The|strong="H3117"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Tola|strong="H8439"\w*: \w Uzzi|strong="H5813"\w*, \w Rephaiah|strong="H7509"\w*, \w Jeriel|strong="H3400"\w*, \w Jahmai|strong="H3181"\w*, \w Ibsam|strong="H3005"\w*, \w and|strong="H3967"\w* \w Shemuel|strong="H8050"\w*, \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w their|strong="H3117"\w* fathers’ \w houses|strong="H1004"\w*, \w of|strong="H1121"\w* \w Tola|strong="H8439"\w*; \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H1121"\w* \w valor|strong="H2428"\w* \w in|strong="H1004"\w* \w their|strong="H3117"\w* \w generations|strong="H8435"\w*. \w Their|strong="H3117"\w* \w number|strong="H4557"\w* \w in|strong="H1004"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w* \w was|strong="H1732"\w* \w twenty-two|strong="H6242"\w* thousand \w six|strong="H8337"\w* \w hundred|strong="H3967"\w*. +\v 3 \w The|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Uzzi|strong="H5813"\w*: \w Izrahiah|strong="H3156"\w*. \w The|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Izrahiah|strong="H3156"\w*: \w Michael|strong="H4317"\w*, \w Obadiah|strong="H5662"\w*, \w Joel|strong="H3100"\w*, \w and|strong="H1121"\w* \w Isshiah|strong="H3449"\w*, \w five|strong="H2568"\w*; \w all|strong="H3605"\w* \w of|strong="H1121"\w* \w them|strong="H1121"\w* \w chief|strong="H7218"\w* \w men|strong="H1121"\w*. +\v 4 \w With|strong="H1004"\w* \w them|strong="H5921"\w*, \w by|strong="H5921"\w* \w their|strong="H5921"\w* \w generations|strong="H8435"\w*, \w after|strong="H5921"\w* \w their|strong="H5921"\w* fathers’ \w houses|strong="H1004"\w*, \w were|strong="H1121"\w* \w bands|strong="H1416"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w army|strong="H6635"\w* \w for|strong="H3588"\w* \w war|strong="H4421"\w*, \w thirty-six|strong="H7970"\w* thousand; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3588"\w* \w many|strong="H7235"\w* wives \w and|strong="H1121"\w* \w sons|strong="H1121"\w*. +\v 5 \w Their|strong="H3605"\w* brothers \w among|strong="H1368"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w families|strong="H4940"\w* \w of|strong="H1368"\w* \w Issachar|strong="H3485"\w*, \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H1368"\w* \w valor|strong="H2428"\w*, \w listed|strong="H3187"\w* \w in|strong="H1368"\w* \w all|strong="H3605"\w* \w by|strong="H3187"\w* \w genealogy|strong="H3187"\w*, \w were|strong="H4940"\w* \w eighty-seven|strong="H8084"\w* thousand. +\p +\v 6 \w The|strong="H3043"\w* sons \w of|strong="H1144"\w* \w Benjamin|strong="H1144"\w*: \w Bela|strong="H1106"\w*, \w Becher|strong="H1071"\w*, \w and|strong="H1144"\w* \w Jediael|strong="H3043"\w*, \w three|strong="H7969"\w*. +\v 7 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Bela|strong="H1106"\w*: Ezbon, \w Uzzi|strong="H5813"\w*, \w Uzziel|strong="H5816"\w*, \w Jerimoth|strong="H3406"\w*, \w and|strong="H1121"\w* \w Iri|strong="H5901"\w*, \w five|strong="H2568"\w*; \w heads|strong="H7218"\w* \w of|strong="H1121"\w* fathers’ \w houses|strong="H1004"\w*, \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H1121"\w* \w valor|strong="H2428"\w*; \w and|strong="H1121"\w* \w they|strong="H2428"\w* \w were|strong="H1121"\w* \w listed|strong="H3187"\w* \w by|strong="H3187"\w* \w genealogy|strong="H3187"\w* \w twenty-two|strong="H6242"\w* thousand \w thirty-four|strong="H7970"\w*. +\v 8 \w The|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Becher|strong="H1071"\w*: \w Zemirah|strong="H2160"\w*, \w Joash|strong="H3135"\w*, Eliezer, Elioenai, \w Omri|strong="H6018"\w*, \w Jeremoth|strong="H3406"\w*, Abijah, \w Anathoth|strong="H6068"\w*, \w and|strong="H1121"\w* \w Alemeth|strong="H5964"\w*. \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w were|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Becher|strong="H1071"\w*. +\v 9 \w They|strong="H2428"\w* \w were|strong="H2428"\w* \w listed|strong="H3187"\w* \w by|strong="H3187"\w* \w genealogy|strong="H3187"\w*, \w after|strong="H1004"\w* their \w generations|strong="H8435"\w*, \w heads|strong="H7218"\w* \w of|strong="H1004"\w* their fathers’ \w houses|strong="H1004"\w*, \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H1004"\w* \w valor|strong="H2428"\w*, \w twenty|strong="H6242"\w* thousand \w two|strong="H1004"\w* \w hundred|strong="H3967"\w*. +\v 10 \w The|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jediael|strong="H3043"\w*: \w Bilhan|strong="H1092"\w*. \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Bilhan|strong="H1092"\w*: \w Jeush|strong="H3266"\w*, \w Benjamin|strong="H1144"\w*, Ehud, \w Chenaanah|strong="H3668"\w*, \w Zethan|strong="H2133"\w*, \w Tarshish|strong="H8659"\w*, \w and|strong="H1121"\w* Ahishahar. +\v 11 \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w were|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jediael|strong="H3043"\w*, according \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w their|strong="H3605"\w* fathers’ households, \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H1121"\w* \w valor|strong="H2428"\w*, \w seventeen|strong="H7651"\w* thousand \w two|strong="H3967"\w* \w hundred|strong="H3967"\w*, \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w able|strong="H2428"\w* \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w in|strong="H4421"\w* \w the|strong="H3605"\w* \w army|strong="H2428"\w* \w for|strong="H1121"\w* \w war|strong="H4421"\w*. +\v 12 So \w were|strong="H1121"\w* \w Shuppim|strong="H8206"\w*, \w Huppim|strong="H2650"\w*, \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Ir|strong="H5893"\w*, \w Hushim|strong="H2366"\w*, \w and|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aher. +\p +\v 13 \w The|strong="H7967"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Naphtali|strong="H5321"\w*: \w Jahziel|strong="H3185"\w*, \w Guni|strong="H1476"\w*, \w Jezer|strong="H3337"\w*, \w Shallum|strong="H7967"\w*, \w and|strong="H1121"\w* \w the|strong="H7967"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Bilhah|strong="H1090"\w*. +\p +\v 14 \w The|strong="H3205"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*: Asriel, whom \w his|strong="H4519"\w* \w concubine|strong="H6370"\w* \w the|strong="H3205"\w* Aramitess \w bore|strong="H3205"\w*. She \w bore|strong="H3205"\w* \w Machir|strong="H4353"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*. +\v 15 \w Machir|strong="H4353"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* wife \w of|strong="H1323"\w* \w Huppim|strong="H2650"\w* \w and|strong="H1323"\w* \w Shuppim|strong="H8206"\w*, \w whose|strong="H8034"\w* sister’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Maacah|strong="H4601"\w*. \w The|strong="H3947"\w* \w name|strong="H8034"\w* \w of|strong="H1323"\w* \w the|strong="H3947"\w* \w second|strong="H8145"\w* \w was|strong="H8034"\w* \w Zelophehad|strong="H6765"\w*; \w and|strong="H1323"\w* \w Zelophehad|strong="H6765"\w* \w had|strong="H1961"\w* \w daughters|strong="H1323"\w*. +\v 16 \w Maacah|strong="H4601"\w* \w the|strong="H3205"\w* wife \w of|strong="H1121"\w* \w Machir|strong="H4353"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w she|strong="H7121"\w* \w named|strong="H7121"\w* \w him|strong="H3205"\w* \w Peresh|strong="H6570"\w*. \w The|strong="H3205"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w his|strong="H7121"\w* brother \w was|strong="H8034"\w* \w Sheresh|strong="H8329"\w*; \w and|strong="H1121"\w* \w his|strong="H7121"\w* \w sons|strong="H1121"\w* \w were|strong="H1121"\w* Ulam \w and|strong="H1121"\w* \w Rakem|strong="H7552"\w*. +\v 17 \w The|strong="H4353"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Ulam: Bedan. These \w were|strong="H1121"\w* \w the|strong="H4353"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w* \w the|strong="H4353"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Machir|strong="H4353"\w*, \w the|strong="H4353"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*. +\v 18 \w His|strong="H3205"\w* sister \w Hammolecheth|strong="H4447"\w* \w bore|strong="H3205"\w* Ishhod, Abiezer, \w and|strong="H3205"\w* \w Mahlah|strong="H4244"\w*. +\v 19 \w The|strong="H1961"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shemida|strong="H8061"\w* \w were|strong="H1961"\w* Ahian, \w Shechem|strong="H7928"\w*, \w Likhi|strong="H3949"\w*, \w and|strong="H1121"\w* Aniam. +\p +\v 20 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Ephraim: \w Shuthelah|strong="H7803"\w*, \w Bered|strong="H1260"\w* \w his|strong="H8480"\w* \w son|strong="H1121"\w*, \w Tahath|strong="H8480"\w* \w his|strong="H8480"\w* \w son|strong="H1121"\w*, Eleadah \w his|strong="H8480"\w* \w son|strong="H1121"\w*, \w Tahath|strong="H8480"\w* \w his|strong="H8480"\w* \w son|strong="H1121"\w*, +\v 21 \w Zabad|strong="H2066"\w* \w his|strong="H3947"\w* \w son|strong="H1121"\w*, \w Shuthelah|strong="H7803"\w* \w his|strong="H3947"\w* \w son|strong="H1121"\w*, \w Ezer|strong="H5827"\w*, \w and|strong="H1121"\w* Elead, \w whom|strong="H3588"\w* \w the|strong="H3588"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Gath|strong="H1661"\w* \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w born|strong="H3205"\w* \w in|strong="H1121"\w* \w the|strong="H3588"\w* land \w killed|strong="H2026"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w came|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w take|strong="H3947"\w* \w away|strong="H3947"\w* \w their|strong="H3947"\w* \w livestock|strong="H4735"\w*. +\v 22 Ephraim \w their|strong="H3117"\w* father mourned \w many|strong="H7227"\w* \w days|strong="H3117"\w*, \w and|strong="H3117"\w* \w his|strong="H5162"\w* brothers came \w to|strong="H3117"\w* \w comfort|strong="H5162"\w* \w him|strong="H5162"\w*. +\v 23 \w He|strong="H3588"\w* \w went|strong="H1121"\w* \w in|strong="H1004"\w* \w to|strong="H1961"\w* \w his|strong="H7121"\w* wife, \w and|strong="H1121"\w* \w she|strong="H3588"\w* \w conceived|strong="H2029"\w* \w and|strong="H1121"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w he|strong="H3588"\w* \w named|strong="H7121"\w* \w him|strong="H3205"\w* \w Beriah|strong="H1283"\w*,\f + \fr 7:23 \ft “Beriah” is similar to the Hebrew word for “misfortune”.\f* \w because|strong="H3588"\w* \w there|strong="H1961"\w* \w was|strong="H8034"\w* \w trouble|strong="H7451"\w* \w with|strong="H1004"\w* \w his|strong="H7121"\w* \w house|strong="H1004"\w*. +\v 24 \w His|strong="H1129"\w* \w daughter|strong="H1323"\w* \w was|strong="H1323"\w* \w Sheerah|strong="H7609"\w*, \w who|strong="H1323"\w* \w built|strong="H1129"\w* Beth Horon \w the|strong="H1129"\w* \w lower|strong="H8481"\w* \w and|strong="H1323"\w* \w the|strong="H1129"\w* \w upper|strong="H5945"\w*, \w and|strong="H1323"\w* Uzzen \w Sheerah|strong="H7609"\w*. +\v 25 \w Rephah|strong="H7506"\w* \w was|strong="H1121"\w* \w his|strong="H8520"\w* \w son|strong="H1121"\w*, \w Resheph|strong="H7566"\w* \w his|strong="H8520"\w* \w son|strong="H1121"\w*, \w Telah|strong="H8520"\w* \w his|strong="H8520"\w* \w son|strong="H1121"\w*, \w Tahan|strong="H8465"\w* \w his|strong="H8520"\w* \w son|strong="H1121"\w*, +\v 26 \w Ladan|strong="H3936"\w* \w his|strong="H3936"\w* \w son|strong="H1121"\w*, \w Ammihud|strong="H5989"\w* \w his|strong="H3936"\w* \w son|strong="H1121"\w*, Elishama \w his|strong="H3936"\w* \w son|strong="H1121"\w*, +\v 27 \w Nun|strong="H5126"\w* \w his|strong="H3091"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w Joshua|strong="H3091"\w* \w his|strong="H3091"\w* \w son|strong="H1121"\w*. +\v 28 \w Their|strong="H1008"\w* possessions \w and|strong="H1008"\w* \w settlements|strong="H4186"\w* \w were|strong="H1323"\w* \w Bethel|strong="H1008"\w* \w and|strong="H1008"\w* \w its|strong="H5704"\w* \w towns|strong="H1323"\w*, \w and|strong="H1008"\w* \w eastward|strong="H4217"\w* \w Naaran|strong="H5295"\w*, \w and|strong="H1008"\w* \w westward|strong="H4628"\w* \w Gezer|strong="H1507"\w* with \w its|strong="H5704"\w* \w towns|strong="H1323"\w*; \w Shechem|strong="H7927"\w* \w also|strong="H5804"\w* \w and|strong="H1008"\w* \w its|strong="H5704"\w* \w towns|strong="H1323"\w*, \w to|strong="H5704"\w* \w Azzah|strong="H5804"\w* \w and|strong="H1008"\w* \w its|strong="H5704"\w* \w towns|strong="H1323"\w*; +\v 29 \w and|strong="H1121"\w* \w by|strong="H3027"\w* \w the|strong="H5921"\w* \w borders|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*, Beth Shean \w and|strong="H1121"\w* \w its|strong="H5921"\w* \w towns|strong="H1323"\w*, \w Taanach|strong="H8590"\w* \w and|strong="H1121"\w* \w its|strong="H5921"\w* \w towns|strong="H1323"\w*, \w Megiddo|strong="H4023"\w* \w and|strong="H1121"\w* \w its|strong="H5921"\w* \w towns|strong="H1323"\w*, \w and|strong="H1121"\w* \w Dor|strong="H1756"\w* \w and|strong="H1121"\w* \w its|strong="H5921"\w* \w towns|strong="H1323"\w*. \w The|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Joseph|strong="H3130"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* these. +\p +\v 30 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Asher: \w Imnah|strong="H3232"\w*, \w Ishvah|strong="H3438"\w*, \w Ishvi|strong="H3440"\w*, \w and|strong="H1121"\w* \w Beriah|strong="H1283"\w*. \w Serah|strong="H8294"\w* \w was|strong="H1121"\w* \w their|strong="H8294"\w* sister. +\v 31 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Beriah|strong="H1283"\w*: \w Heber|strong="H2268"\w* \w and|strong="H1121"\w* \w Malchiel|strong="H4439"\w*, \w who|strong="H1931"\w* \w was|strong="H1931"\w* \w the|strong="H1121"\w* \w father|strong="H1121"\w* \w of|strong="H1121"\w* \w Birzaith|strong="H1269"\w*. +\v 32 \w Heber|strong="H2268"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Japhlet|strong="H3310"\w*, \w Shomer|strong="H7763"\w*, \w Hotham|strong="H2369"\w*, \w and|strong="H3205"\w* \w Shua|strong="H7774"\w* \w their|strong="H7774"\w* sister. +\v 33 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Japhlet|strong="H3310"\w*: \w Pasach|strong="H6457"\w*, \w Bimhal|strong="H1118"\w*, \w and|strong="H1121"\w* \w Ashvath|strong="H6220"\w*. These \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Japhlet|strong="H3310"\w*. +\v 34 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shemer|strong="H8106"\w*: Ahi, \w Rohgah|strong="H7303"\w*, \w Jehubbah|strong="H3160"\w*, \w and|strong="H1121"\w* Aram. +\v 35 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Helem|strong="H1987"\w* \w his|strong="H1121"\w* brother: \w Zophah|strong="H6690"\w*, \w Imna|strong="H3234"\w*, \w Shelesh|strong="H8028"\w*, \w and|strong="H1121"\w* \w Amal|strong="H6000"\w*. +\v 36 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Zophah|strong="H6690"\w*: \w Suah|strong="H5477"\w*, \w Harnepher|strong="H2774"\w*, \w Shual|strong="H7777"\w*, \w Beri|strong="H1275"\w*, \w Imrah|strong="H3236"\w*, +\v 37 \w Bezer|strong="H1221"\w*, \w Hod|strong="H1936"\w*, \w Shamma|strong="H8037"\w*, \w Shilshah|strong="H8030"\w*, \w Ithran|strong="H3506"\w*, \w and|strong="H3506"\w* Beera. +\v 38 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jether|strong="H3500"\w*: \w Jephunneh|strong="H3312"\w*, \w Pispa|strong="H6462"\w*, \w and|strong="H1121"\w* Ara. +\v 39 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Ulla|strong="H5925"\w*: Arah, \w Hanniel|strong="H2592"\w*, \w and|strong="H1121"\w* \w Rizia|strong="H7525"\w*. +\v 40 \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w were|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Asher, \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, \w choice|strong="H1305"\w* \w and|strong="H1121"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H1121"\w* \w valor|strong="H2428"\w*, \w chief|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w princes|strong="H5387"\w*. \w The|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w them|strong="H1121"\w* \w listed|strong="H3187"\w* \w by|strong="H3187"\w* \w genealogy|strong="H3187"\w* \w for|strong="H1004"\w* \w service|strong="H6635"\w* \w in|strong="H1004"\w* \w war|strong="H4421"\w* \w was|strong="H1004"\w* \w twenty-six|strong="H8337"\w* thousand \w men|strong="H1368"\w*. +\c 8 +\p +\v 1 \w Benjamin|strong="H1144"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Bela|strong="H1106"\w* \w his|strong="H3205"\w* \w firstborn|strong="H1060"\w*, Ashbel \w the|strong="H3205"\w* \w second|strong="H8145"\w*, Aharah \w the|strong="H3205"\w* \w third|strong="H7992"\w*, +\v 2 \w Nohah|strong="H5119"\w* \w the|strong="H7243"\w* \w fourth|strong="H7243"\w*, \w and|strong="H2549"\w* \w Rapha|strong="H7498"\w* \w the|strong="H7243"\w* \w fifth|strong="H2549"\w*. +\v 3 \w Bela|strong="H1106"\w* \w had|strong="H1961"\w* \w sons|strong="H1121"\w*: Addar, \w Gera|strong="H1617"\w*, Abihud, +\v 4 Abishua, \w Naaman|strong="H5283"\w*, Ahoah, +\v 5 \w Gera|strong="H1617"\w*, \w Shephuphan|strong="H8197"\w*, \w and|strong="H8197"\w* \w Huram|strong="H2361"\w*. +\v 6 \w These|strong="H1992"\w* \w are|strong="H1992"\w* \w the|strong="H1540"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Ehud. \w These|strong="H1992"\w* \w are|strong="H1992"\w* \w the|strong="H1540"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* fathers’ households \w of|strong="H1121"\w* \w the|strong="H1540"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1121"\w* \w Geba|strong="H1387"\w*, \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w carried|strong="H1540"\w* \w captive|strong="H1540"\w* \w to|strong="H1121"\w* \w Manahath|strong="H4506"\w*: +\v 7 \w Naaman|strong="H5283"\w*, Ahijah, \w and|strong="H5798"\w* \w Gera|strong="H1617"\w*, \w who|strong="H1931"\w* \w carried|strong="H1540"\w* \w them|strong="H1540"\w* \w captive|strong="H1540"\w*; \w and|strong="H5798"\w* \w he|strong="H1931"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Uzza|strong="H5798"\w* \w and|strong="H5798"\w* Ahihud. +\p +\v 8 \w Shaharaim|strong="H7842"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w children|strong="H3205"\w* \w in|strong="H7971"\w* \w the|strong="H3205"\w* \w field|strong="H7704"\w* \w of|strong="H3205"\w* \w Moab|strong="H4124"\w*, \w after|strong="H4480"\w* \w he|strong="H4480"\w* \w had|strong="H3205"\w* \w sent|strong="H7971"\w* \w them|strong="H7971"\w* \w away|strong="H7971"\w*. \w Hushim|strong="H2366"\w* \w and|strong="H7971"\w* \w Baara|strong="H1199"\w* \w were|strong="H3205"\w* \w his|strong="H7971"\w* wives. +\v 9 \w By|strong="H3205"\w* \w Hodesh|strong="H2321"\w* \w his|strong="H4480"\w* wife, \w he|strong="H4480"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Jobab|strong="H3103"\w*, \w Zibia|strong="H6644"\w*, \w Mesha|strong="H4331"\w*, \w Malcam|strong="H4445"\w*, +\v 10 \w Jeuz|strong="H3263"\w*, \w Shachia|strong="H7634"\w*, \w and|strong="H1121"\w* \w Mirmah|strong="H4821"\w*. These \w were|strong="H1121"\w* \w his|strong="H1121"\w* \w sons|strong="H1121"\w*, \w heads|strong="H7218"\w* \w of|strong="H1121"\w* fathers’ households. +\v 11 \w By|strong="H3205"\w* \w Hushim|strong="H2366"\w*, \w he|strong="H2366"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* Abitub \w and|strong="H3205"\w* Elpaal. +\v 12 \w The|strong="H1129"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Elpaal: \w Eber|strong="H5677"\w*, \w Misham|strong="H4936"\w*, \w and|strong="H1121"\w* \w Shemed|strong="H8106"\w*, \w who|strong="H1931"\w* \w built|strong="H1129"\w* Ono \w and|strong="H1121"\w* \w Lod|strong="H3850"\w*, \w with|strong="H1121"\w* its \w towns|strong="H1323"\w*; +\v 13 \w and|strong="H7218"\w* \w Beriah|strong="H1283"\w* \w and|strong="H7218"\w* \w Shema|strong="H8087"\w*, \w who|strong="H3427"\w* \w were|strong="H1992"\w* \w heads|strong="H7218"\w* \w of|strong="H3427"\w* fathers’ households \w of|strong="H3427"\w* \w the|strong="H3427"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* Aijalon, \w who|strong="H3427"\w* \w put|strong="H1272"\w* \w to|strong="H3427"\w* \w flight|strong="H1272"\w* \w the|strong="H3427"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Gath|strong="H1661"\w*; +\v 14 \w and|strong="H3406"\w* Ahio, \w Shashak|strong="H8349"\w*, \w Jeremoth|strong="H3406"\w*, +\v 15 \w Zebadiah|strong="H2069"\w*, \w Arad|strong="H6166"\w*, \w Eder|strong="H5738"\w*, +\v 16 \w Michael|strong="H4317"\w*, \w Ishpah|strong="H3472"\w*, \w Joha|strong="H3109"\w*, \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Beriah|strong="H1283"\w*, +\v 17 \w Zebadiah|strong="H2069"\w*, \w Meshullam|strong="H4918"\w*, \w Hizki|strong="H2395"\w*, \w Heber|strong="H2268"\w*, +\v 18 \w Ishmerai|strong="H3461"\w*, \w Izliah|strong="H3152"\w*, \w Jobab|strong="H3103"\w*, \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Elpaal, +\v 19 \w Jakim|strong="H3356"\w*, \w Zichri|strong="H2147"\w*, \w Zabdi|strong="H2067"\w*, +\v 20 Elienai, \w Zillethai|strong="H6769"\w*, Eliel, +\v 21 \w Adaiah|strong="H5718"\w*, \w Beraiah|strong="H1256"\w*, \w Shimrath|strong="H8119"\w*, \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shimei|strong="H8096"\w*, +\v 22 \w Ishpan|strong="H3473"\w*, \w Eber|strong="H5677"\w*, Eliel, +\v 23 \w Abdon|strong="H5658"\w*, \w Zichri|strong="H2147"\w*, \w Hanan|strong="H2605"\w*, +\v 24 \w Hananiah|strong="H2608"\w*, \w Elam|strong="H5867"\w*, \w Anthothijah|strong="H6070"\w*, +\v 25 \w Iphdeiah|strong="H3301"\w*, \w Penuel|strong="H6439"\w*, \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shashak|strong="H8349"\w*, +\v 26 \w Shamsherai|strong="H8125"\w*, \w Shehariah|strong="H7841"\w*, \w Athaliah|strong="H6271"\w*, +\v 27 \w Jaareshiah|strong="H3298"\w*, Elijah, \w Zichri|strong="H2147"\w*, \w and|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeroham|strong="H3395"\w*. +\v 28 These \w were|strong="H7218"\w* \w heads|strong="H7218"\w* \w of|strong="H3427"\w* fathers’ households throughout \w their|strong="H3427"\w* \w generations|strong="H8435"\w*, \w chief|strong="H7218"\w* \w men|strong="H7218"\w*. These \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*. +\p +\v 29 \w The|strong="H3427"\w* father \w of|strong="H3427"\w* \w Gibeon|strong="H1391"\w*, \w whose|strong="H8034"\w* wife’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Maacah|strong="H4601"\w*, \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Gibeon|strong="H1391"\w* +\v 30 \w with|strong="H1121"\w* \w his|strong="H7027"\w* \w firstborn|strong="H1060"\w* \w son|strong="H1121"\w* \w Abdon|strong="H5658"\w*, \w Zur|strong="H6698"\w*, \w Kish|strong="H7027"\w*, \w Baal|strong="H1168"\w*, \w Nadab|strong="H5070"\w*, +\v 31 \w Gedor|strong="H1446"\w*, Ahio, \w Zecher|strong="H2144"\w*, +\v 32 \w and|strong="H3389"\w* \w Mikloth|strong="H4732"\w*, \w who|strong="H3427"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3427"\w* \w Shimeah|strong="H8039"\w*. \w They|strong="H1992"\w* \w also|strong="H3205"\w* \w lived|strong="H3427"\w* \w with|strong="H5973"\w* \w their|strong="H1992"\w* families \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*, \w near|strong="H5973"\w* \w their|strong="H1992"\w* relatives. +\v 33 \w Ner|strong="H5369"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Kish|strong="H7027"\w*. \w Kish|strong="H7027"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Saul|strong="H7586"\w*. \w Saul|strong="H7586"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Jonathan|strong="H3083"\w*, Malchishua, Abinadab, \w and|strong="H7586"\w* Eshbaal. +\v 34 \w The|strong="H3205"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jonathan|strong="H3083"\w* \w was|strong="H1121"\w* \w Merib-baal|strong="H4807"\w*. \w Merib-baal|strong="H4807"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Micah|strong="H4318"\w*. +\v 35 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Micah|strong="H4318"\w*: \w Pithon|strong="H6377"\w*, \w Melech|strong="H4429"\w*, \w Tarea|strong="H8390"\w*, \w and|strong="H1121"\w* Ahaz. +\v 36 Ahaz \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Jehoaddah|strong="H3085"\w*. \w Jehoaddah|strong="H3085"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Alemeth|strong="H5964"\w*, \w Azmaveth|strong="H5820"\w*, \w and|strong="H3205"\w* \w Zimri|strong="H2174"\w*. \w Zimri|strong="H2174"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Moza|strong="H4162"\w*. +\v 37 \w Moza|strong="H4162"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Binea|strong="H1150"\w*. Raphah \w was|strong="H1121"\w* \w his|strong="H3205"\w* \w son|strong="H1121"\w*, Eleasah \w his|strong="H3205"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* Azel \w his|strong="H3205"\w* \w son|strong="H1121"\w*. +\v 38 Azel \w had|strong="H1121"\w* \w six|strong="H8337"\w* \w sons|strong="H1121"\w*, \w whose|strong="H1121"\w* \w names|strong="H8034"\w* \w are|strong="H1121"\w* \w these|strong="H3605"\w*: \w Azrikam|strong="H5840"\w*, \w Bocheru|strong="H1074"\w*, \w Ishmael|strong="H3458"\w*, \w Sheariah|strong="H8187"\w*, \w Obadiah|strong="H5662"\w*, \w and|strong="H1121"\w* \w Hanan|strong="H2605"\w*. \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w were|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Azel. +\v 39 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Eshek|strong="H6232"\w* \w his|strong="H6232"\w* brother: Ulam \w his|strong="H6232"\w* \w firstborn|strong="H1060"\w*, \w Jeush|strong="H3266"\w* \w the|strong="H1121"\w* \w second|strong="H8145"\w*, \w and|strong="H1121"\w* Eliphelet \w the|strong="H1121"\w* \w third|strong="H7992"\w*. +\v 40 \w The|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Ulam \w were|strong="H1961"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H1121"\w* \w valor|strong="H2428"\w*, \w archers|strong="H7198"\w*, \w and|strong="H3967"\w* \w had|strong="H1961"\w* \w many|strong="H7235"\w* \w sons|strong="H1121"\w*, \w and|strong="H3967"\w* \w grandsons|strong="H1121"\w*, \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w*. \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w were|strong="H1961"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*. +\c 9 +\p +\v 1 \w So|strong="H5921"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w listed|strong="H3187"\w* \w by|strong="H5921"\w* \w genealogies|strong="H3187"\w*; \w and|strong="H3063"\w* \w behold|strong="H2009"\w*,\f + \fr 9:1 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w they|strong="H5921"\w* \w are|strong="H3478"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. \w Judah|strong="H3063"\w* \w was|strong="H3478"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w captive|strong="H1540"\w* \w to|strong="H3478"\w* Babylon \w for|strong="H5921"\w* \w their|strong="H3605"\w* disobedience. +\v 2 \w Now|strong="H3478"\w* \w the|strong="H3548"\w* \w first|strong="H7223"\w* \w inhabitants|strong="H3427"\w* \w who|strong="H3548"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w their|strong="H3427"\w* possessions \w in|strong="H3427"\w* \w their|strong="H3427"\w* \w cities|strong="H5892"\w* \w were|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w the|strong="H3548"\w* \w priests|strong="H3548"\w*, \w the|strong="H3548"\w* \w Levites|strong="H3881"\w*, \w and|strong="H3478"\w* \w the|strong="H3548"\w* \w temple|strong="H5411"\w* \w servants|strong="H5411"\w*. +\v 3 \w In|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*, \w there|strong="H3427"\w* \w lived|strong="H3427"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Ephraim \w and|strong="H1121"\w* \w Manasseh|strong="H4519"\w*: +\v 4 \w Uthai|strong="H5793"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammihud|strong="H5989"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Omri|strong="H6018"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Imri, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Bani|strong="H1137"\w*, \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Perez|strong="H6557"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*. +\v 5 \w Of|strong="H1121"\w* \w the|strong="H4480"\w* \w Shilonites|strong="H7888"\w*: \w Asaiah|strong="H6222"\w* \w the|strong="H4480"\w* \w firstborn|strong="H1060"\w* \w and|strong="H1121"\w* \w his|strong="H4480"\w* \w sons|strong="H1121"\w*. +\v 6 \w Of|strong="H1121"\w* \w the|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Zerah|strong="H2226"\w*: \w Jeuel|strong="H3262"\w* \w and|strong="H3967"\w* \w their|strong="H4480"\w* \w brothers|strong="H1121"\w*, \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w ninety|strong="H8673"\w*. +\v 7 \w Of|strong="H1121"\w* \w the|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*: \w Sallu|strong="H5543"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Meshullam|strong="H4918"\w*, \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hodaviah|strong="H1938"\w*, \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hassenuah|strong="H5574"\w*; +\v 8 \w and|strong="H1121"\w* \w Ibneiah|strong="H2997"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeroham|strong="H3395"\w*, \w and|strong="H1121"\w* Elah \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Uzzi|strong="H5813"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Michri|strong="H4381"\w*; \w and|strong="H1121"\w* \w Meshullam|strong="H4918"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shephatiah|strong="H8203"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Reuel|strong="H7467"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ibnijah|strong="H2998"\w*; +\v 9 \w and|strong="H3967"\w* \w their|strong="H3605"\w* brothers, according \w to|strong="H1004"\w* \w their|strong="H3605"\w* \w generations|strong="H8435"\w*, \w nine|strong="H8672"\w* \w hundred|strong="H3967"\w* fifty-six. \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w men|strong="H7218"\w* \w were|strong="H7218"\w* \w heads|strong="H7218"\w* \w of|strong="H1004"\w* fathers’ \w households|strong="H1004"\w* \w by|strong="H3605"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*. +\p +\v 10 \w Of|strong="H4480"\w* \w the|strong="H4480"\w* \w priests|strong="H3548"\w*: \w Jedaiah|strong="H3048"\w*, \w Jehoiarib|strong="H3080"\w*, \w Jachin|strong="H3199"\w*, +\v 11 \w and|strong="H1121"\w* \w Azariah|strong="H5838"\w* \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hilkiah|strong="H2518"\w*, \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Meshullam|strong="H4918"\w*, \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zadok|strong="H6659"\w*, \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Meraioth|strong="H4812"\w*, \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahitub, \w the|strong="H6659"\w* \w ruler|strong="H5057"\w* \w of|strong="H1121"\w* God’s \w house|strong="H1004"\w*; +\v 12 \w and|strong="H1121"\w* \w Adaiah|strong="H5718"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeroham|strong="H3395"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Pashhur|strong="H6583"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Malchijah|strong="H4441"\w*; \w and|strong="H1121"\w* \w Maasai|strong="H4640"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Adiel|strong="H5717"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jahzerah|strong="H3170"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Meshullam|strong="H4918"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Meshillemith|strong="H4921"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Immer; +\v 13 \w and|strong="H3967"\w* \w their|strong="H4399"\w* brothers, \w heads|strong="H7218"\w* \w of|strong="H1004"\w* \w their|strong="H4399"\w* fathers’ \w houses|strong="H1004"\w*, \w one|strong="H1368"\w* thousand \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w sixty|strong="H8346"\w*; \w they|strong="H4399"\w* \w were|strong="H2428"\w* \w very|strong="H2428"\w* \w able|strong="H2428"\w* \w men|strong="H1368"\w* \w for|strong="H1004"\w* \w the|strong="H1004"\w* \w work|strong="H4399"\w* \w of|strong="H1004"\w* \w the|strong="H1004"\w* \w service|strong="H5656"\w* \w of|strong="H1004"\w* God’s \w house|strong="H1004"\w*. +\p +\v 14 \w Of|strong="H1121"\w* \w the|strong="H4480"\w* \w Levites|strong="H3881"\w*: \w Shemaiah|strong="H8098"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hasshub|strong="H2815"\w*, \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Azrikam|strong="H5840"\w*, \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hashabiah|strong="H2811"\w*, \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w*; +\v 15 \w and|strong="H1121"\w* \w Bakbakkar|strong="H1230"\w*, \w Heresh|strong="H2792"\w*, \w Galal|strong="H1559"\w*, \w and|strong="H1121"\w* \w Mattaniah|strong="H4983"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Mica|strong="H4316"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zichri|strong="H2147"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Asaph, +\v 16 \w and|strong="H1121"\w* \w Obadiah|strong="H5662"\w* \w the|strong="H8098"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shemaiah|strong="H8098"\w*, \w the|strong="H8098"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Galal|strong="H1559"\w*, \w the|strong="H8098"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeduthun|strong="H3038"\w*; \w and|strong="H1121"\w* \w Berechiah|strong="H1296"\w* \w the|strong="H8098"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Asa, \w the|strong="H8098"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Elkanah, \w who|strong="H1121"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H8098"\w* \w villages|strong="H2691"\w* \w of|strong="H1121"\w* \w the|strong="H8098"\w* \w Netophathites|strong="H5200"\w*. +\p +\v 17 \w The|strong="H7967"\w* \w gatekeepers|strong="H7778"\w*: \w Shallum|strong="H7967"\w*, \w Akkub|strong="H6126"\w*, \w Talmon|strong="H2929"\w*, Ahiman, \w and|strong="H7218"\w* their brothers (\w Shallum|strong="H7967"\w* \w was|strong="H7218"\w* \w the|strong="H7967"\w* \w chief|strong="H7218"\w*), +\v 18 \w who|strong="H1121"\w* previously served \w in|strong="H4428"\w* \w the|strong="H5704"\w* \w king|strong="H4428"\w*’s \w gate|strong="H8179"\w* \w eastward|strong="H4217"\w*. \w They|strong="H1992"\w* \w were|strong="H1121"\w* \w the|strong="H5704"\w* \w gatekeepers|strong="H7778"\w* \w for|strong="H5704"\w* \w the|strong="H5704"\w* \w camp|strong="H4264"\w* \w of|strong="H1121"\w* \w the|strong="H5704"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w*. +\v 19 \w Shallum|strong="H7967"\w* \w was|strong="H3068"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kore|strong="H6981"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ebiasaph, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Korah|strong="H7141"\w*, \w and|strong="H1121"\w* \w his|strong="H8104"\w* \w brothers|strong="H1121"\w*, \w of|strong="H1121"\w* \w his|strong="H8104"\w* \w father|strong="H1121"\w*’s \w house|strong="H1004"\w*, \w the|strong="H5921"\w* \w Korahites|strong="H7145"\w*, \w were|strong="H1121"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w work|strong="H4399"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w service|strong="H5656"\w*, \w keepers|strong="H8104"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w thresholds|strong="H5592"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* tent. \w Their|strong="H3068"\w* fathers \w had|strong="H3068"\w* \w been|strong="H3068"\w* \w over|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w camp|strong="H4264"\w*, \w keepers|strong="H8104"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w entry|strong="H3996"\w*. +\v 20 \w Phinehas|strong="H6372"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Eleazar \w was|strong="H3068"\w* \w ruler|strong="H5057"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w time|strong="H6440"\w* \w past|strong="H6440"\w*, \w and|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w with|strong="H5973"\w* \w him|strong="H6440"\w*. +\v 21 \w Zechariah|strong="H2148"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Meshelemiah|strong="H4920"\w* \w was|strong="H1121"\w* \w gatekeeper|strong="H7778"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w door|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*. +\v 22 \w All|strong="H3605"\w* \w these|strong="H1992"\w* \w who|strong="H3605"\w* \w were|strong="H1992"\w* \w chosen|strong="H1305"\w* \w to|strong="H1732"\w* \w be|strong="H1732"\w* \w gatekeepers|strong="H7778"\w* \w in|strong="H1732"\w* \w the|strong="H3605"\w* \w thresholds|strong="H5592"\w* \w were|strong="H1992"\w* \w two|strong="H8147"\w* \w hundred|strong="H3967"\w* \w twelve|strong="H8147"\w*. \w These|strong="H1992"\w* \w were|strong="H1992"\w* \w listed|strong="H3187"\w* \w by|strong="H3187"\w* \w genealogy|strong="H3187"\w* \w in|strong="H1732"\w* \w their|strong="H3605"\w* \w villages|strong="H2691"\w*, \w whom|strong="H1992"\w* \w David|strong="H1732"\w* \w and|strong="H3967"\w* \w Samuel|strong="H8050"\w* \w the|strong="H3605"\w* \w seer|strong="H7200"\w* \w ordained|strong="H3245"\w* \w in|strong="H1732"\w* \w their|strong="H3605"\w* office \w of|strong="H3605"\w* trust. +\v 23 \w So|strong="H1992"\w* \w they|strong="H1992"\w* \w and|strong="H1121"\w* \w their|strong="H3068"\w* \w children|strong="H1121"\w* \w had|strong="H3068"\w* \w the|strong="H5921"\w* oversight \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w gates|strong="H8179"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w even|strong="H3068"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* tent, \w as|strong="H3068"\w* \w guards|strong="H4931"\w*. +\v 24 \w On|strong="H1961"\w* \w the|strong="H1961"\w* four \w sides|strong="H7307"\w* \w were|strong="H1961"\w* \w the|strong="H1961"\w* \w gatekeepers|strong="H7778"\w*, toward \w the|strong="H1961"\w* \w east|strong="H4217"\w*, \w west|strong="H3220"\w*, \w north|strong="H6828"\w*, \w and|strong="H3220"\w* \w south|strong="H5045"\w*. +\v 25 \w Their|strong="H3117"\w* brothers, \w in|strong="H3117"\w* \w their|strong="H3117"\w* \w villages|strong="H2691"\w*, \w were|strong="H3117"\w* \w to|strong="H6256"\w* come \w in|strong="H3117"\w* \w every|strong="H3117"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w* \w from|strong="H3117"\w* \w time|strong="H6256"\w* \w to|strong="H6256"\w* \w time|strong="H6256"\w* \w to|strong="H6256"\w* \w be|strong="H3117"\w* \w with|strong="H5973"\w* \w them|strong="H3117"\w*, +\v 26 \w for|strong="H3588"\w* \w the|strong="H5921"\w* four \w chief|strong="H1368"\w* \w gatekeepers|strong="H7778"\w*, \w who|strong="H1992"\w* \w were|strong="H1961"\w* \w Levites|strong="H3881"\w*, \w were|strong="H1961"\w* \w in|strong="H5921"\w* \w an|strong="H1961"\w* office \w of|strong="H1004"\w* trust, \w and|strong="H1004"\w* \w were|strong="H1961"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w rooms|strong="H3957"\w* \w and|strong="H1004"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* treasuries \w in|strong="H5921"\w* God’s \w house|strong="H1004"\w*. +\v 27 \w They|strong="H1992"\w* \w stayed|strong="H3885"\w* \w around|strong="H5439"\w* God’s \w house|strong="H1004"\w*, \w because|strong="H3588"\w* \w that|strong="H3588"\w* \w was|strong="H1004"\w* \w their|strong="H1992"\w* \w duty|strong="H4931"\w*; \w and|strong="H1004"\w* \w it|strong="H5921"\w* \w was|strong="H1004"\w* \w their|strong="H1992"\w* \w duty|strong="H4931"\w* \w to|strong="H5921"\w* open \w it|strong="H5921"\w* \w morning|strong="H1242"\w* \w by|strong="H5921"\w* \w morning|strong="H1242"\w*. +\p +\v 28 Certain \w of|strong="H3627"\w* \w them|strong="H1992"\w* \w were|strong="H1992"\w* \w in|strong="H5921"\w* \w charge|strong="H5921"\w* \w of|strong="H3627"\w* \w the|strong="H5921"\w* \w vessels|strong="H3627"\w* \w of|strong="H3627"\w* \w service|strong="H5656"\w*, \w for|strong="H3588"\w* \w these|strong="H1992"\w* \w were|strong="H1992"\w* \w brought|strong="H3318"\w* \w in|strong="H5921"\w* \w by|strong="H5921"\w* \w count|strong="H4557"\w*, \w and|strong="H3318"\w* \w these|strong="H1992"\w* \w were|strong="H1992"\w* \w taken|strong="H3318"\w* \w out|strong="H3318"\w* \w by|strong="H5921"\w* \w count|strong="H4557"\w*. +\v 29 \w Some|strong="H1992"\w* \w of|strong="H3627"\w* \w them|strong="H1992"\w* \w also|strong="H1992"\w* \w were|strong="H1992"\w* \w appointed|strong="H4487"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w furniture|strong="H3627"\w*, \w and|strong="H8081"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w*, \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w*, \w the|strong="H3605"\w* \w wine|strong="H3196"\w*, \w the|strong="H3605"\w* \w oil|strong="H8081"\w*, \w the|strong="H3605"\w* \w frankincense|strong="H3828"\w*, \w and|strong="H8081"\w* \w the|strong="H3605"\w* \w spices|strong="H1314"\w*. +\p +\v 30 \w Some|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w priests|strong="H3548"\w* \w prepared|strong="H7543"\w* \w the|strong="H4480"\w* \w mixing|strong="H4842"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w spices|strong="H1314"\w*. +\v 31 \w Mattithiah|strong="H4993"\w*, \w one|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w*, \w who|strong="H1931"\w* \w was|strong="H1931"\w* \w the|strong="H5921"\w* \w firstborn|strong="H1060"\w* \w of|strong="H4480"\w* \w Shallum|strong="H7967"\w* \w the|strong="H5921"\w* \w Korahite|strong="H7145"\w*, \w had|strong="H1931"\w* \w the|strong="H5921"\w* office \w of|strong="H4480"\w* trust \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w things|strong="H4639"\w* \w that|strong="H1931"\w* \w were|strong="H3881"\w* \w baked|strong="H2281"\w* \w in|strong="H5921"\w* \w pans|strong="H2281"\w*. +\v 32 \w Some|strong="H4480"\w* \w of|strong="H1121"\w* \w their|strong="H5921"\w* \w brothers|strong="H1121"\w*, \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w Kohathites|strong="H6956"\w*, \w were|strong="H1121"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* show \w bread|strong="H3899"\w*, \w to|strong="H5921"\w* \w prepare|strong="H3559"\w* \w it|strong="H5921"\w* \w every|strong="H7676"\w* \w Sabbath|strong="H7676"\w*. +\p +\v 33 \w These|strong="H3881"\w* \w are|strong="H3915"\w* \w the|strong="H5921"\w* \w singers|strong="H7891"\w*, \w heads|strong="H7218"\w* \w of|strong="H7218"\w* fathers’ \w households|strong="H3881"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w*, \w who|strong="H3881"\w* lived \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w rooms|strong="H3957"\w* \w and|strong="H7218"\w* \w were|strong="H3881"\w* free \w from|strong="H5921"\w* other \w service|strong="H4399"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H3881"\w* employed \w in|strong="H5921"\w* \w their|strong="H5921"\w* \w work|strong="H4399"\w* \w day|strong="H3119"\w* \w and|strong="H7218"\w* \w night|strong="H3915"\w*. +\v 34 \w These|strong="H3881"\w* \w were|strong="H3881"\w* \w heads|strong="H7218"\w* \w of|strong="H3427"\w* fathers’ \w households|strong="H3881"\w* \w of|strong="H3427"\w* \w the|strong="H3427"\w* \w Levites|strong="H3881"\w*, throughout \w their|strong="H3427"\w* \w generations|strong="H8435"\w*, \w chief|strong="H7218"\w* \w men|strong="H7218"\w*. \w They|strong="H3389"\w* \w lived|strong="H3427"\w* \w at|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*. +\p +\v 35 \w Jeiel|strong="H3273"\w* \w the|strong="H3427"\w* father \w of|strong="H3427"\w* \w Gibeon|strong="H1391"\w*, \w whose|strong="H8034"\w* wife’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Maacah|strong="H4601"\w*, \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Gibeon|strong="H1391"\w*. +\v 36 \w His|strong="H7027"\w* \w firstborn|strong="H1060"\w* \w son|strong="H1121"\w* \w was|strong="H1121"\w* \w Abdon|strong="H5658"\w*, \w then|strong="H1121"\w* \w Zur|strong="H6698"\w*, \w Kish|strong="H7027"\w*, \w Baal|strong="H1168"\w*, \w Ner|strong="H5369"\w*, \w Nadab|strong="H5070"\w*, +\v 37 \w Gedor|strong="H1446"\w*, Ahio, \w Zechariah|strong="H2148"\w*, \w and|strong="H2148"\w* \w Mikloth|strong="H4732"\w*. +\v 38 \w Mikloth|strong="H4732"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3427"\w* \w Shimeam|strong="H8043"\w*. \w They|strong="H1992"\w* \w also|strong="H3205"\w* \w lived|strong="H3427"\w* \w with|strong="H5973"\w* \w their|strong="H1992"\w* relatives \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*, \w near|strong="H5973"\w* \w their|strong="H1992"\w* relatives. +\v 39 \w Ner|strong="H5369"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Kish|strong="H7027"\w*. \w Kish|strong="H7027"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Saul|strong="H7586"\w*. \w Saul|strong="H7586"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Jonathan|strong="H3083"\w*, Malchishua, Abinadab, \w and|strong="H7586"\w* Eshbaal. +\v 40 \w The|strong="H3205"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jonathan|strong="H3083"\w* \w was|strong="H1121"\w* \w Merib-baal|strong="H4807"\w*. \w Merib-baal|strong="H4807"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Micah|strong="H4318"\w*. +\v 41 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Micah|strong="H4318"\w*: \w Pithon|strong="H6377"\w*, \w Melech|strong="H4429"\w*, \w Tahrea|strong="H8475"\w*, \w and|strong="H1121"\w* Ahaz. +\v 42 Ahaz \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Jarah|strong="H3294"\w*. \w Jarah|strong="H3294"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Alemeth|strong="H5964"\w*, \w Azmaveth|strong="H5820"\w*, \w and|strong="H3205"\w* \w Zimri|strong="H2174"\w*. \w Zimri|strong="H2174"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Moza|strong="H4162"\w*. +\v 43 \w Moza|strong="H4162"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w Binea|strong="H1150"\w*, \w Rephaiah|strong="H7509"\w* \w his|strong="H3205"\w* \w son|strong="H1121"\w*, Eleasah \w his|strong="H3205"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* Azel \w his|strong="H3205"\w* \w son|strong="H1121"\w*. +\v 44 Azel \w had|strong="H1121"\w* \w six|strong="H8337"\w* \w sons|strong="H1121"\w*, \w whose|strong="H1121"\w* \w names|strong="H8034"\w* \w are|strong="H1121"\w* \w Azrikam|strong="H5840"\w*, \w Bocheru|strong="H1074"\w*, \w Ishmael|strong="H3458"\w*, \w Sheariah|strong="H8187"\w*, \w Obadiah|strong="H5662"\w*, \w and|strong="H1121"\w* \w Hanan|strong="H2605"\w*. These \w were|strong="H1121"\w* \w the|strong="H3458"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Azel. +\c 10 +\p +\v 1 \w Now|strong="H3478"\w* \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w* \w fought|strong="H3898"\w* \w against|strong="H3898"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w the|strong="H6440"\w* \w men|strong="H3478"\w* \w of|strong="H2022"\w* \w Israel|strong="H3478"\w* \w fled|strong="H5127"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H3478"\w* \w fell|strong="H5307"\w* \w down|strong="H5307"\w* \w slain|strong="H2491"\w* \w on|strong="H5307"\w* \w Mount|strong="H2022"\w* \w Gilboa|strong="H1533"\w*. +\v 2 \w The|strong="H5221"\w* \w Philistines|strong="H6430"\w* \w followed|strong="H6430"\w* \w hard|strong="H1692"\w* \w after|strong="H6430"\w* \w Saul|strong="H7586"\w* \w and|strong="H1121"\w* \w after|strong="H6430"\w* \w his|strong="H5221"\w* \w sons|strong="H1121"\w*; \w and|strong="H1121"\w* \w the|strong="H5221"\w* \w Philistines|strong="H6430"\w* \w killed|strong="H5221"\w* \w Jonathan|strong="H3129"\w*, Abinadab, \w and|strong="H1121"\w* Malchishua, \w the|strong="H5221"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w*. +\v 3 \w The|strong="H5921"\w* \w battle|strong="H4421"\w* \w went|strong="H7586"\w* hard \w against|strong="H5921"\w* \w Saul|strong="H7586"\w*, \w and|strong="H7586"\w* \w the|strong="H5921"\w* \w archers|strong="H3384"\w* \w overtook|strong="H4672"\w* \w him|strong="H5921"\w*; \w and|strong="H7586"\w* \w he|strong="H4480"\w* \w was|strong="H7586"\w* distressed \w by|strong="H5921"\w* \w reason|strong="H5921"\w* \w of|strong="H4480"\w* \w the|strong="H5921"\w* \w archers|strong="H3384"\w*. +\v 4 \w Then|strong="H3947"\w* \w Saul|strong="H7586"\w* said \w to|strong="H5921"\w* \w his|strong="H5375"\w* \w armor|strong="H3627"\w* \w bearer|strong="H5375"\w*, “\w Draw|strong="H8025"\w* \w your|strong="H3947"\w* \w sword|strong="H2719"\w*, \w and|strong="H2719"\w* \w thrust|strong="H1856"\w* \w me|strong="H5921"\w* \w through|strong="H1856"\w* \w with|strong="H5921"\w* \w it|strong="H5921"\w*, \w lest|strong="H6435"\w* \w these|strong="H3947"\w* \w uncircumcised|strong="H6189"\w* \w come|strong="H5307"\w* \w and|strong="H2719"\w* \w abuse|strong="H5953"\w* \w me|strong="H5921"\w*.” +\p \w But|strong="H3588"\w* \w his|strong="H5375"\w* \w armor|strong="H3627"\w* \w bearer|strong="H5375"\w* would \w not|strong="H3808"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w was|strong="H7586"\w* \w terrified|strong="H3966"\w*. \w Therefore|strong="H5921"\w* \w Saul|strong="H7586"\w* \w took|strong="H3947"\w* \w his|strong="H5375"\w* \w sword|strong="H2719"\w* \w and|strong="H2719"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 5 \w When|strong="H3588"\w* \w his|strong="H5375"\w* \w armor|strong="H3627"\w* \w bearer|strong="H5375"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w Saul|strong="H7586"\w* \w was|strong="H7586"\w* \w dead|strong="H4191"\w*, \w he|strong="H1931"\w* \w likewise|strong="H1571"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w his|strong="H5375"\w* \w sword|strong="H2719"\w* \w and|strong="H2719"\w* \w died|strong="H4191"\w*. +\v 6 \w So|strong="H4191"\w* \w Saul|strong="H7586"\w* \w died|strong="H4191"\w* \w with|strong="H1004"\w* \w his|strong="H3605"\w* \w three|strong="H7969"\w* \w sons|strong="H1121"\w*; \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w* \w died|strong="H4191"\w* \w together|strong="H3162"\w*. +\v 7 \w When|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w valley|strong="H6010"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w fled|strong="H5127"\w*, \w and|strong="H1121"\w* \w that|strong="H3588"\w* \w Saul|strong="H7586"\w* \w and|strong="H1121"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w* \w were|strong="H3478"\w* \w dead|strong="H4191"\w*, \w they|strong="H3588"\w* \w abandoned|strong="H5800"\w* \w their|strong="H3605"\w* \w cities|strong="H5892"\w*, \w and|strong="H1121"\w* \w fled|strong="H5127"\w*; \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w came|strong="H3478"\w* \w and|strong="H1121"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w them|strong="H7200"\w*. +\p +\v 8 \w On|strong="H5307"\w* \w the|strong="H1961"\w* \w next|strong="H4283"\w* \w day|strong="H4283"\w*, \w when|strong="H1961"\w* \w the|strong="H1961"\w* \w Philistines|strong="H6430"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w strip|strong="H6584"\w* \w the|strong="H1961"\w* \w slain|strong="H2491"\w*, \w they|strong="H7586"\w* \w found|strong="H4672"\w* \w Saul|strong="H7586"\w* \w and|strong="H1121"\w* \w his|strong="H1961"\w* \w sons|strong="H1121"\w* \w fallen|strong="H5307"\w* \w on|strong="H5307"\w* \w Mount|strong="H2022"\w* \w Gilboa|strong="H1533"\w*. +\v 9 \w They|strong="H5971"\w* \w stripped|strong="H6584"\w* \w him|strong="H7971"\w* \w and|strong="H7971"\w* \w took|strong="H5375"\w* \w his|strong="H5375"\w* \w head|strong="H7218"\w* \w and|strong="H7971"\w* \w his|strong="H5375"\w* \w armor|strong="H3627"\w*, \w then|strong="H7971"\w* \w sent|strong="H7971"\w* \w into|strong="H5375"\w* \w the|strong="H5375"\w* land \w of|strong="H3627"\w* \w the|strong="H5375"\w* \w Philistines|strong="H6430"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w* \w to|strong="H7971"\w* \w carry|strong="H5375"\w* \w the|strong="H5375"\w* \w news|strong="H1319"\w* \w to|strong="H7971"\w* \w their|strong="H5375"\w* \w idols|strong="H6091"\w* \w and|strong="H7971"\w* \w to|strong="H7971"\w* \w the|strong="H5375"\w* \w people|strong="H5971"\w*. +\v 10 \w They|strong="H7760"\w* \w put|strong="H7760"\w* \w his|strong="H7760"\w* \w armor|strong="H3627"\w* \w in|strong="H1004"\w* \w the|strong="H7760"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w their|strong="H7760"\w* gods, \w and|strong="H1004"\w* \w fastened|strong="H8628"\w* \w his|strong="H7760"\w* \w head|strong="H1538"\w* \w in|strong="H1004"\w* \w the|strong="H7760"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Dagon|strong="H1712"\w*. +\v 11 \w When|strong="H8085"\w* \w all|strong="H3605"\w* \w Jabesh|strong="H3003"\w* \w Gilead|strong="H1568"\w* \w heard|strong="H8085"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w had|strong="H7586"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w Saul|strong="H7586"\w*, +\v 12 \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w valiant|strong="H2428"\w* \w men|strong="H1121"\w* \w arose|strong="H6965"\w* \w and|strong="H1121"\w* \w took|strong="H5375"\w* \w away|strong="H5375"\w* \w the|strong="H3605"\w* \w body|strong="H6106"\w* \w of|strong="H1121"\w* \w Saul|strong="H7586"\w* \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w bodies|strong="H1480"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w brought|strong="H5375"\w* \w them|strong="H5375"\w* \w to|strong="H3117"\w* \w Jabesh|strong="H3003"\w*, \w and|strong="H1121"\w* \w buried|strong="H6912"\w* \w their|strong="H3605"\w* \w bones|strong="H6106"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* oak \w in|strong="H3117"\w* \w Jabesh|strong="H3003"\w*, \w and|strong="H1121"\w* \w fasted|strong="H6684"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. +\p +\v 13 \w So|strong="H3808"\w* \w Saul|strong="H7586"\w* \w died|strong="H4191"\w* \w for|strong="H5921"\w* \w his|strong="H8104"\w* \w trespass|strong="H4604"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w committed|strong="H4603"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w because|strong="H5921"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w which|strong="H3068"\w* \w he|strong="H3068"\w* didn’t \w keep|strong="H8104"\w*, \w and|strong="H3068"\w* \w also|strong="H1571"\w* \w because|strong="H5921"\w* \w he|strong="H3068"\w* \w asked|strong="H7592"\w* \w counsel|strong="H1697"\w* \w of|strong="H3068"\w* \w one|strong="H3808"\w* \w who|strong="H3068"\w* \w had|strong="H3068"\w* \w a|strong="H3068"\w* familiar spirit, \w to|strong="H4191"\w* \w inquire|strong="H1875"\w*, +\v 14 \w and|strong="H1121"\w* didn’t \w inquire|strong="H1875"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*. \w Therefore|strong="H1732"\w* \w he|strong="H3068"\w* \w killed|strong="H4191"\w* \w him|strong="H4191"\w*, \w and|strong="H1121"\w* \w turned|strong="H5437"\w* \w the|strong="H3068"\w* \w kingdom|strong="H4410"\w* \w over|strong="H3068"\w* \w to|strong="H4191"\w* \w David|strong="H1732"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jesse|strong="H3448"\w*. +\c 11 +\p +\v 1 \w Then|strong="H2009"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w gathered|strong="H6908"\w* \w themselves|strong="H6908"\w* \w to|strong="H3478"\w* \w David|strong="H1732"\w* \w to|strong="H3478"\w* \w Hebron|strong="H2275"\w*, saying, “\w Behold|strong="H2009"\w*, \w we|strong="H3068"\w* \w are|strong="H6106"\w* \w your|strong="H3605"\w* \w bone|strong="H6106"\w* \w and|strong="H3478"\w* \w your|strong="H3605"\w* \w flesh|strong="H1320"\w*. +\v 2 \w In|strong="H5921"\w* \w times|strong="H8543"\w* \w past|strong="H8032"\w*, \w even|strong="H1571"\w* \w when|strong="H1961"\w* \w Saul|strong="H7586"\w* \w was|strong="H3068"\w* \w king|strong="H4428"\w*, \w it|strong="H5921"\w* \w was|strong="H3068"\w* \w you|strong="H5921"\w* \w who|strong="H5971"\w* \w led|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H3478"\w* \w brought|strong="H3318"\w* \w in|strong="H5921"\w* \w Israel|strong="H3478"\w*. \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w you|strong="H5921"\w*, ‘\w You|strong="H5921"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w shepherd|strong="H7462"\w* \w of|strong="H4428"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w you|strong="H5921"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w prince|strong="H5057"\w* \w over|strong="H5921"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*.’” +\p +\v 3 \w So|strong="H1697"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w to|strong="H3478"\w* \w Hebron|strong="H2275"\w*; \w and|strong="H3478"\w* \w David|strong="H1732"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H3068"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w Hebron|strong="H2275"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. \w They|strong="H3068"\w* \w anointed|strong="H4886"\w* \w David|strong="H1732"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*, \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w by|strong="H3027"\w* \w Samuel|strong="H8050"\w*. +\p +\v 4 \w David|strong="H1732"\w* \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w went|strong="H3212"\w* \w to|strong="H3478"\w* \w Jerusalem|strong="H3389"\w* (\w also|strong="H1732"\w* \w called|strong="H8033"\w* \w Jebus|strong="H2982"\w*); \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w Jebusites|strong="H2983"\w*, \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* land, \w were|strong="H3478"\w* \w there|strong="H8033"\w*. +\v 5 \w The|strong="H3920"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Jebus|strong="H2982"\w* said \w to|strong="H1732"\w* \w David|strong="H1732"\w*, “\w You|strong="H3808"\w* \w will|strong="H5892"\w* \w not|strong="H3808"\w* \w come|strong="H5892"\w* \w in|strong="H3427"\w* \w here|strong="H2008"\w*!” Nevertheless \w David|strong="H1732"\w* \w took|strong="H3920"\w* \w the|strong="H3920"\w* \w stronghold|strong="H4686"\w* \w of|strong="H3427"\w* \w Zion|strong="H6726"\w*. \w The|strong="H3920"\w* \w same|strong="H1931"\w* \w is|strong="H1931"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*. +\v 6 \w David|strong="H1732"\w* \w had|strong="H1961"\w* said, “\w Whoever|strong="H3605"\w* \w strikes|strong="H5221"\w* \w the|strong="H3605"\w* \w Jebusites|strong="H2983"\w* \w first|strong="H7223"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w chief|strong="H7218"\w* \w and|strong="H1121"\w* \w captain|strong="H8269"\w*.” \w Joab|strong="H3097"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w first|strong="H7223"\w*, \w and|strong="H1121"\w* \w was|strong="H1961"\w* \w made|strong="H1961"\w* \w chief|strong="H7218"\w*. +\v 7 \w David|strong="H1732"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w stronghold|strong="H4679"\w*; \w therefore|strong="H3651"\w* \w they|strong="H3651"\w* \w called|strong="H7121"\w* \w it|strong="H7121"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*. +\v 8 \w He|strong="H5704"\w* \w built|strong="H1129"\w* \w the|strong="H4480"\w* \w city|strong="H5892"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*, \w from|strong="H4480"\w* \w Millo|strong="H4407"\w* \w even|strong="H5704"\w* \w around|strong="H5439"\w*; \w and|strong="H5892"\w* \w Joab|strong="H3097"\w* \w repaired|strong="H1129"\w* \w the|strong="H4480"\w* \w rest|strong="H7605"\w* \w of|strong="H5892"\w* \w the|strong="H4480"\w* \w city|strong="H5892"\w*. +\v 9 \w David|strong="H1732"\w* \w grew|strong="H1980"\w* \w greater|strong="H1419"\w* \w and|strong="H1980"\w* \w greater|strong="H1419"\w*, \w for|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w was|strong="H3068"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*. +\p +\v 10 \w Now|strong="H3478"\w* \w these|strong="H3605"\w* \w are|strong="H3478"\w* \w the|strong="H3605"\w* \w chief|strong="H7218"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w whom|strong="H1368"\w* \w David|strong="H1732"\w* \w had|strong="H3068"\w*, \w who|strong="H3605"\w* showed \w themselves|strong="H2388"\w* \w strong|strong="H2388"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w kingdom|strong="H4438"\w*, \w together|strong="H5973"\w* \w with|strong="H5973"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w make|strong="H4427"\w* \w him|strong="H5921"\w* \w king|strong="H4427"\w*, \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w concerning|strong="H5921"\w* \w Israel|strong="H3478"\w*. +\p +\v 11 \w This|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H5921"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w whom|strong="H1368"\w* \w David|strong="H1732"\w* \w had|strong="H1732"\w*: \w Jashobeam|strong="H3434"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w Hachmonite|strong="H2453"\w*, \w the|strong="H5921"\w* \w chief|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w thirty|strong="H7970"\w*; \w he|strong="H1931"\w* \w lifted|strong="H1732"\w* \w up|strong="H5782"\w* \w his|strong="H1732"\w* \w spear|strong="H2595"\w* \w against|strong="H5921"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w and|strong="H3967"\w* \w killed|strong="H2491"\w* \w them|strong="H5921"\w* \w at|strong="H5921"\w* \w one|strong="H1931"\w* \w time|strong="H6471"\w*. +\v 12 After \w him|strong="H1931"\w* \w was|strong="H1931"\w* Eleazar \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Dodo|strong="H1734"\w*, \w the|strong="H1121"\w* Ahohite, \w who|strong="H1931"\w* \w was|strong="H1931"\w* \w one|strong="H1931"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w three|strong="H7969"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w*. +\v 13 \w He|strong="H1931"\w* \w was|strong="H1961"\w* \w with|strong="H5973"\w* \w David|strong="H1732"\w* \w at|strong="H4421"\w* \w Pasdammim|strong="H6450"\w*, \w and|strong="H5971"\w* \w there|strong="H8033"\w* \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w* \w were|strong="H1961"\w* \w gathered|strong="H6430"\w* \w together|strong="H5973"\w* \w to|strong="H1961"\w* \w battle|strong="H4421"\w*, \w where|strong="H8033"\w* \w there|strong="H8033"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w plot|strong="H2513"\w* \w of|strong="H6440"\w* \w ground|strong="H7704"\w* \w full|strong="H4392"\w* \w of|strong="H6440"\w* \w barley|strong="H8184"\w*; \w and|strong="H5971"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w fled|strong="H5127"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w*. +\v 14 \w They|strong="H3068"\w* \w stood|strong="H3320"\w* \w in|strong="H3068"\w* \w the|strong="H5221"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H5221"\w* \w plot|strong="H2513"\w*, \w defended|strong="H5337"\w* \w it|strong="H8432"\w*, \w and|strong="H3068"\w* \w killed|strong="H5221"\w* \w the|strong="H5221"\w* \w Philistines|strong="H6430"\w*; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w saved|strong="H3467"\w* \w them|strong="H5221"\w* \w by|strong="H3068"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w victory|strong="H8668"\w*. +\p +\v 15 \w Three|strong="H7969"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w thirty|strong="H7970"\w* \w chief|strong="H7218"\w* \w men|strong="H7218"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H5921"\w* \w rock|strong="H6697"\w* \w to|strong="H3381"\w* \w David|strong="H1732"\w*, \w into|strong="H3381"\w* \w the|strong="H5921"\w* \w cave|strong="H4631"\w* \w of|strong="H7218"\w* \w Adullam|strong="H5725"\w*; \w and|strong="H7970"\w* \w the|strong="H5921"\w* \w army|strong="H4264"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w Philistines|strong="H6430"\w* \w were|strong="H6430"\w* \w encamped|strong="H2583"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w valley|strong="H6010"\w* \w of|strong="H7218"\w* \w Rephaim|strong="H7497"\w*. +\v 16 \w David|strong="H1732"\w* \w was|strong="H1732"\w* \w then|strong="H1732"\w* \w in|strong="H1035"\w* \w the|strong="H1732"\w* \w stronghold|strong="H4686"\w*, \w and|strong="H1732"\w* \w the|strong="H1732"\w* \w garrison|strong="H5333"\w* \w of|strong="H5333"\w* \w the|strong="H1732"\w* \w Philistines|strong="H6430"\w* \w was|strong="H1732"\w* \w in|strong="H1035"\w* \w Bethlehem|strong="H1035"\w* \w at|strong="H1732"\w* \w that|strong="H1732"\w* time. +\v 17 \w David|strong="H1732"\w* longed, \w and|strong="H1732"\w* said, “\w Oh|strong="H4310"\w*, \w that|strong="H4325"\w* \w someone|strong="H4310"\w* \w would|strong="H4310"\w* \w give|strong="H8248"\w* \w me|strong="H8248"\w* \w water|strong="H4325"\w* \w to|strong="H1732"\w* \w drink|strong="H8248"\w* \w from|strong="H4325"\w* \w the|strong="H1732"\w* well \w of|strong="H8179"\w* \w Bethlehem|strong="H1035"\w*, \w which|strong="H4310"\w* \w is|strong="H4310"\w* \w by|strong="H4325"\w* \w the|strong="H1732"\w* \w gate|strong="H8179"\w*!” +\p +\v 18 \w The|strong="H5375"\w* \w three|strong="H7969"\w* \w broke|strong="H1234"\w* \w through|strong="H1234"\w* \w the|strong="H5375"\w* \w army|strong="H4264"\w* \w of|strong="H3068"\w* \w the|strong="H5375"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H3068"\w* \w drew|strong="H7579"\w* \w water|strong="H4325"\w* \w out|strong="H5258"\w* \w of|strong="H3068"\w* \w the|strong="H5375"\w* well \w of|strong="H3068"\w* \w Bethlehem|strong="H1035"\w* \w that|strong="H3068"\w* \w was|strong="H3068"\w* \w by|strong="H3068"\w* \w the|strong="H5375"\w* \w gate|strong="H8179"\w*, \w took|strong="H5375"\w* \w it|strong="H5375"\w*, \w and|strong="H3068"\w* \w brought|strong="H5375"\w* \w it|strong="H5375"\w* \w to|strong="H3068"\w* \w David|strong="H1732"\w*; \w but|strong="H3808"\w* \w David|strong="H1732"\w* \w would|strong="H3068"\w* \w not|strong="H3808"\w* \w drink|strong="H8354"\w* \w any|strong="H5375"\w* \w of|strong="H3068"\w* \w it|strong="H5375"\w*, \w but|strong="H3808"\w* \w poured|strong="H5258"\w* \w it|strong="H5375"\w* \w out|strong="H5258"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\v 19 \w and|strong="H1818"\w* said, “\w My|strong="H6213"\w* \w God|strong="H3808"\w* \w forbid|strong="H2486"\w* \w me|strong="H5315"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w should|strong="H3588"\w* \w do|strong="H6213"\w* \w this|strong="H2063"\w*! \w Shall|strong="H5315"\w* \w I|strong="H3588"\w* \w drink|strong="H8354"\w* \w the|strong="H3588"\w* \w blood|strong="H1818"\w* \w of|strong="H1368"\w* \w these|strong="H2063"\w* \w men|strong="H1368"\w* \w who|strong="H5315"\w* \w have|strong="H3588"\w* \w put|strong="H6213"\w* \w their|strong="H3588"\w* \w lives|strong="H5315"\w* \w in|strong="H6213"\w* \w jeopardy|strong="H5315"\w*?” \w For|strong="H3588"\w* \w they|strong="H3588"\w* risked \w their|strong="H3588"\w* \w lives|strong="H5315"\w* \w to|strong="H6213"\w* \w bring|strong="H6213"\w* \w it|strong="H3588"\w*. \w Therefore|strong="H3588"\w* \w he|strong="H3588"\w* \w would|strong="H6213"\w* \w not|strong="H3808"\w* \w drink|strong="H8354"\w* \w it|strong="H3588"\w*. \w The|strong="H3588"\w* \w three|strong="H7969"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w did|strong="H6213"\w* \w these|strong="H2063"\w* \w things|strong="H7969"\w*. +\p +\v 20 Abishai, \w the|strong="H5921"\w* brother \w of|strong="H7218"\w* \w Joab|strong="H3097"\w*, \w was|strong="H8034"\w* \w chief|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w three|strong="H7969"\w*; \w for|strong="H5921"\w* \w he|strong="H1931"\w* \w lifted|strong="H5782"\w* \w up|strong="H5782"\w* \w his|strong="H5921"\w* \w spear|strong="H2595"\w* \w against|strong="H5921"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w and|strong="H3967"\w* \w killed|strong="H2490"\w* \w them|strong="H5921"\w*, \w and|strong="H3967"\w* \w had|strong="H1961"\w* \w a|strong="H3068"\w* \w name|strong="H8034"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w three|strong="H7969"\w*. +\v 21 \w Of|strong="H8269"\w* \w the|strong="H4480"\w* \w three|strong="H7969"\w*, \w he|strong="H5704"\w* \w was|strong="H1961"\w* \w more|strong="H4480"\w* \w honorable|strong="H3513"\w* \w than|strong="H4480"\w* \w the|strong="H4480"\w* \w two|strong="H8147"\w*, \w and|strong="H8147"\w* \w was|strong="H1961"\w* \w made|strong="H3513"\w* \w their|strong="H1961"\w* \w captain|strong="H8269"\w*; however \w he|strong="H5704"\w* wasn’t \w included|strong="H1961"\w* \w in|strong="H3808"\w* \w the|strong="H4480"\w* \w three|strong="H7969"\w*. +\p +\v 22 \w Benaiah|strong="H1141"\w* \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w*, \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w valiant|strong="H2428"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w Kabzeel|strong="H6909"\w*, \w who|strong="H1931"\w* \w had|strong="H1121"\w* \w done|strong="H6467"\w* \w mighty|strong="H7227"\w* \w deeds|strong="H6467"\w*, \w killed|strong="H5221"\w* \w the|strong="H5221"\w* \w two|strong="H8147"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Ariel \w of|strong="H1121"\w* \w Moab|strong="H4124"\w*. \w He|strong="H1931"\w* \w also|strong="H1121"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w and|strong="H1121"\w* \w killed|strong="H5221"\w* \w a|strong="H3068"\w* lion \w in|strong="H3117"\w* \w the|strong="H5221"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* pit \w on|strong="H3117"\w* \w a|strong="H3068"\w* \w snowy|strong="H7950"\w* \w day|strong="H3117"\w*. +\v 23 \w He|strong="H1931"\w* \w killed|strong="H2026"\w* \w an|strong="H5221"\w* \w Egyptian|strong="H4713"\w*, \w a|strong="H3068"\w* man \w of|strong="H3027"\w* great \w stature|strong="H4060"\w*, \w five|strong="H2568"\w* \w cubits|strong="H2568"\w*\f + \fr 11:23 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. Therefore this Egyptian was about 7 feet and 6 inches or 2.28 meters tall.\f* high. \w In|strong="H3027"\w* \w the|strong="H5221"\w* \w Egyptian|strong="H4713"\w*’s \w hand|strong="H3027"\w* \w was|strong="H1931"\w* \w a|strong="H3068"\w* \w spear|strong="H2595"\w* \w like|strong="H3381"\w* \w a|strong="H3068"\w* weaver’s \w beam|strong="H4500"\w*; \w and|strong="H3027"\w* \w he|strong="H1931"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w him|strong="H5221"\w* \w with|strong="H3381"\w* \w a|strong="H3068"\w* \w staff|strong="H7626"\w*, \w plucked|strong="H1497"\w* \w the|strong="H5221"\w* \w spear|strong="H2595"\w* \w out|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5221"\w* \w Egyptian|strong="H4713"\w*’s \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w killed|strong="H2026"\w* \w him|strong="H5221"\w* \w with|strong="H3381"\w* \w his|strong="H5221"\w* \w own|strong="H3027"\w* \w spear|strong="H2595"\w*. +\v 24 \w Benaiah|strong="H1141"\w* \w the|strong="H6213"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w* \w did|strong="H6213"\w* \w these|strong="H6213"\w* \w things|strong="H7969"\w* \w and|strong="H1121"\w* \w had|strong="H1121"\w* \w a|strong="H3068"\w* \w name|strong="H8034"\w* \w among|strong="H8034"\w* \w the|strong="H6213"\w* \w three|strong="H7969"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w*. +\v 25 \w Behold|strong="H2005"\w*, \w he|strong="H1931"\w* \w was|strong="H1732"\w* \w more|strong="H4480"\w* \w honorable|strong="H3513"\w* \w than|strong="H4480"\w* \w the|strong="H5921"\w* \w thirty|strong="H7970"\w*, \w but|strong="H3808"\w* \w he|strong="H1931"\w* didn’t attain \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w three|strong="H7969"\w*; \w and|strong="H7970"\w* \w David|strong="H1732"\w* \w set|strong="H7760"\w* \w him|strong="H5921"\w* \w over|strong="H5921"\w* \w his|strong="H7760"\w* \w guard|strong="H4928"\w*. +\p +\v 26 \w The|strong="H3097"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H1121"\w* \w the|strong="H3097"\w* \w armies|strong="H2428"\w* \w also|strong="H1121"\w* include \w Asahel|strong="H6214"\w* \w the|strong="H3097"\w* brother \w of|strong="H1121"\w* \w Joab|strong="H3097"\w*, Elhanan \w the|strong="H3097"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Dodo|strong="H1734"\w* \w of|strong="H1121"\w* \w Bethlehem|strong="H1035"\w*, +\v 27 \w Shammoth|strong="H8054"\w* \w the|strong="H2503"\w* \w Harorite|strong="H2033"\w*, \w Helez|strong="H2503"\w* \w the|strong="H2503"\w* \w Pelonite|strong="H6397"\w*, +\v 28 \w Ira|strong="H5896"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ikkesh|strong="H6142"\w* \w the|strong="H1121"\w* \w Tekoite|strong="H8621"\w*, Abiezer \w the|strong="H1121"\w* \w Anathothite|strong="H6069"\w*, +\v 29 \w Sibbecai|strong="H5444"\w* \w the|strong="H5444"\w* \w Hushathite|strong="H2843"\w*, \w Ilai|strong="H5866"\w* \w the|strong="H5444"\w* Ahohite, +\v 30 \w Maharai|strong="H4121"\w* \w the|strong="H1121"\w* \w Netophathite|strong="H5200"\w*, \w Heled|strong="H2466"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Baanah|strong="H1196"\w* \w the|strong="H1121"\w* \w Netophathite|strong="H5200"\w*, +\v 31 Ithai \w the|strong="H1141"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ribai|strong="H7380"\w* \w of|strong="H1121"\w* \w Gibeah|strong="H1390"\w* \w of|strong="H1121"\w* \w the|strong="H1141"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*, \w Benaiah|strong="H1141"\w* \w the|strong="H1141"\w* \w Pirathonite|strong="H6553"\w*, +\v 32 \w Hurai|strong="H2360"\w* \w of|strong="H5158"\w* the \w brooks|strong="H5158"\w* \w of|strong="H5158"\w* \w Gaash|strong="H1608"\w*, Abiel the \w Arbathite|strong="H6164"\w*, +\v 33 \w Azmaveth|strong="H5820"\w* \w the|strong="H5820"\w* Baharumite, Eliahba \w the|strong="H5820"\w* \w Shaalbonite|strong="H8170"\w*, +\v 34 \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Hashem|strong="H2044"\w* \w the|strong="H1121"\w* \w Gizonite|strong="H1493"\w*, \w Jonathan|strong="H3129"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shagee|strong="H7681"\w* \w the|strong="H1121"\w* \w Hararite|strong="H2043"\w*, +\v 35 Ahiam \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Sacar|strong="H7940"\w* \w the|strong="H1121"\w* \w Hararite|strong="H2043"\w*, Eliphal \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ur, +\v 36 \w Hepher|strong="H2660"\w* \w the|strong="H2660"\w* \w Mecherathite|strong="H4382"\w*, Ahijah \w the|strong="H2660"\w* \w Pelonite|strong="H6397"\w*, +\v 37 \w Hezro|strong="H2695"\w* \w the|strong="H1121"\w* \w Carmelite|strong="H3761"\w*, \w Naarai|strong="H5293"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ezbai, +\v 38 \w Joel|strong="H3100"\w* \w the|strong="H5416"\w* brother \w of|strong="H1121"\w* \w Nathan|strong="H5416"\w*, \w Mibhar|strong="H4006"\w* \w the|strong="H5416"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hagri|strong="H1905"\w*, +\v 39 \w Zelek|strong="H6768"\w* \w the|strong="H5375"\w* \w Ammonite|strong="H5984"\w*, \w Naharai|strong="H5171"\w* \w the|strong="H5375"\w* \w Berothite|strong="H1307"\w* (\w the|strong="H5375"\w* \w armor|strong="H3627"\w* \w bearer|strong="H5375"\w* \w of|strong="H1121"\w* \w Joab|strong="H3097"\w* \w the|strong="H5375"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w*), +\v 40 \w Ira|strong="H5896"\w* \w the|strong="H5896"\w* \w Ithrite|strong="H3505"\w*, \w Gareb|strong="H1619"\w* \w the|strong="H5896"\w* \w Ithrite|strong="H3505"\w*, +\v 41 Uriah \w the|strong="H1121"\w* \w Hittite|strong="H2850"\w*, \w Zabad|strong="H2066"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahlai, +\v 42 \w Adina|strong="H5721"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shiza|strong="H7877"\w* \w the|strong="H5921"\w* \w Reubenite|strong="H7206"\w* (\w a|strong="H3068"\w* \w chief|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w Reubenites|strong="H7206"\w*), \w and|strong="H1121"\w* \w thirty|strong="H7970"\w* \w with|strong="H5921"\w* \w him|strong="H5921"\w*, +\v 43 \w Hanan|strong="H2605"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Maacah|strong="H4601"\w*, \w Joshaphat|strong="H3146"\w* \w the|strong="H1121"\w* \w Mithnite|strong="H4981"\w*, +\v 44 \w Uzzia|strong="H5814"\w* \w the|strong="H1121"\w* \w Ashterathite|strong="H6254"\w*, \w Shama|strong="H8091"\w* \w and|strong="H1121"\w* \w Jeiel|strong="H3273"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Hotham|strong="H2369"\w* \w the|strong="H1121"\w* \w Aroerite|strong="H6200"\w*, +\v 45 \w Jediael|strong="H3043"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shimri|strong="H8113"\w*, \w and|strong="H1121"\w* \w Joha|strong="H3109"\w* \w his|strong="H3109"\w* brother, \w the|strong="H1121"\w* \w Tizite|strong="H8491"\w*, +\v 46 Eliel \w the|strong="H1121"\w* \w Mahavite|strong="H4233"\w*, \w and|strong="H1121"\w* \w Jeribai|strong="H3403"\w*, \w and|strong="H1121"\w* \w Joshaviah|strong="H3145"\w*, \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Elnaam, \w and|strong="H1121"\w* \w Ithmah|strong="H3495"\w* \w the|strong="H1121"\w* \w Moabite|strong="H4125"\w*, +\v 47 Eliel, \w Obed|strong="H5744"\w*, \w and|strong="H5744"\w* \w Jaasiel|strong="H3300"\w* \w the|strong="H3300"\w* \w Mezobaite|strong="H4677"\w*. +\c 12 +\p +\v 1 Now \w these|strong="H1992"\w* \w are|strong="H1992"\w* \w those|strong="H1992"\w* \w who|strong="H1121"\w* \w came|strong="H7586"\w* \w to|strong="H6440"\w* \w David|strong="H1732"\w* \w to|strong="H6440"\w* \w Ziklag|strong="H6860"\w* \w while|strong="H5750"\w* \w he|strong="H1732"\w* \w was|strong="H1732"\w* \w a|strong="H3068"\w* fugitive \w from|strong="H6440"\w* \w Saul|strong="H7586"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kish|strong="H7027"\w*. \w They|strong="H1992"\w* \w were|strong="H1121"\w* \w among|strong="H1368"\w* \w the|strong="H6440"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w*, \w his|strong="H1732"\w* \w helpers|strong="H5826"\w* \w in|strong="H4421"\w* \w war|strong="H4421"\w*. +\v 2 \w They|strong="H7586"\w* \w were|strong="H1144"\w* \w armed|strong="H5401"\w* \w with|strong="H5401"\w* \w bows|strong="H7198"\w*, \w and|strong="H7586"\w* could use both \w the|strong="H7586"\w* \w right|strong="H3231"\w* \w hand|strong="H3231"\w* \w and|strong="H7586"\w* \w the|strong="H7586"\w* \w left|strong="H8041"\w* \w in|strong="H7586"\w* slinging stones \w and|strong="H7586"\w* \w in|strong="H7586"\w* shooting \w arrows|strong="H2671"\w* \w from|strong="H3231"\w* \w the|strong="H7586"\w* \w bow|strong="H7198"\w*. \w They|strong="H7586"\w* \w were|strong="H1144"\w* \w of|strong="H7198"\w* \w Saul|strong="H7586"\w*’s relatives \w of|strong="H7198"\w* \w the|strong="H7586"\w* tribe \w of|strong="H7198"\w* \w Benjamin|strong="H1144"\w*. +\v 3 \w The|strong="H3058"\w* \w chief|strong="H7218"\w* \w was|strong="H1121"\w* Ahiezer, \w then|strong="H1121"\w* \w Joash|strong="H3101"\w*, \w the|strong="H3058"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shemaah|strong="H8094"\w* \w the|strong="H3058"\w* \w Gibeathite|strong="H1395"\w*; \w Jeziel|strong="H3149"\w* \w and|strong="H1121"\w* \w Pelet|strong="H6404"\w*, \w the|strong="H3058"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Azmaveth|strong="H5820"\w*; \w Beracah|strong="H1294"\w*; \w Jehu|strong="H3058"\w* \w the|strong="H3058"\w* \w Anathothite|strong="H6069"\w*; +\v 4 \w Ishmaiah|strong="H3460"\w* \w the|strong="H5921"\w* \w Gibeonite|strong="H1393"\w*, \w a|strong="H3068"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w thirty|strong="H7970"\w* \w and|strong="H7970"\w* \w a|strong="H3068"\w* leader \w of|strong="H1368"\w* \w the|strong="H5921"\w* \w thirty|strong="H7970"\w*; Jeremiah; Jahaziel; Johanan; Jozabad \w the|strong="H5921"\w* Gederathite; +\v 5 Eluzai; Jerimoth; Bealiah; Shemariah; Shephatiah \w the|strong="H3414"\w* Haruphite; +\v 6 Elkanah, Isshiah, Azarel, Joezer, \w and|strong="H3406"\w* Jashobeam, \w the|strong="H8203"\w* Korahites; +\v 7 and Joelah and Zebadiah, \w the|strong="H3449"\w* sons of Jeroham of Gedor. +\p +\v 8 \w Some|strong="H4480"\w* Gadites joined David \w in|strong="H1121"\w* \w the|strong="H4480"\w* stronghold \w in|strong="H1121"\w* \w the|strong="H4480"\w* wilderness, \w mighty|strong="H1121"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* valor, \w men|strong="H1121"\w* trained \w for|strong="H1121"\w* war, \w who|strong="H1121"\w* could handle shield \w and|strong="H1121"\w* spear; \w whose|strong="H1121"\w* faces \w were|strong="H1121"\w* \w like|strong="H1121"\w* \w the|strong="H4480"\w* faces \w of|strong="H1121"\w* lions, \w and|strong="H1121"\w* they \w were|strong="H1121"\w* \w as|strong="H1121"\w* swift \w as|strong="H1121"\w* \w the|strong="H4480"\w* gazelles \w on|strong="H4480"\w* \w the|strong="H4480"\w* mountains: +\v 9 Ezer \w the|strong="H6440"\w* \w chief|strong="H1368"\w*, Obadiah \w the|strong="H6440"\w* second, Eliab \w the|strong="H6440"\w* third, +\v 10 Mishmannah \w the|strong="H5662"\w* fourth, Jeremiah \w the|strong="H5662"\w* fifth, +\v 11 Attai \w the|strong="H3414"\w* sixth, Eliel \w the|strong="H3414"\w* seventh, +\v 12 Johanan \w the|strong="H6262"\w* eighth, Elzabad \w the|strong="H6262"\w* ninth, +\v 13 Jeremiah \w the|strong="H3076"\w* tenth, \w and|strong="H3076"\w* Machbannai \w the|strong="H3076"\w* eleventh. +\v 14 These \w of|strong="H3414"\w* \w the|strong="H3414"\w* sons \w of|strong="H3414"\w* Gad were captains \w of|strong="H3414"\w* \w the|strong="H3414"\w* army. \w He|strong="H3414"\w* who \w was|strong="H3414"\w* least \w was|strong="H3414"\w* equal \w to|strong="H6224"\w* one hundred, \w and|strong="H3414"\w* \w the|strong="H3414"\w* greatest \w to|strong="H6224"\w* one thousand. +\v 15 These \w are|strong="H1121"\w* \w those|strong="H1121"\w* \w who|strong="H1121"\w* \w went|strong="H1121"\w* \w over|strong="H7218"\w* \w the|strong="H1121"\w* Jordan \w in|strong="H1419"\w* \w the|strong="H1121"\w* \w first|strong="H1121"\w* month, \w when|strong="H1121"\w* \w it|strong="H7218"\w* \w had|strong="H6635"\w* overflowed \w all|strong="H1419"\w* its banks; \w and|strong="H3967"\w* they put \w to|strong="H1121"\w* flight \w all|strong="H1419"\w* \w who|strong="H1121"\w* lived \w in|strong="H1419"\w* \w the|strong="H1121"\w* valleys, both \w toward|strong="H7218"\w* \w the|strong="H1121"\w* east \w and|strong="H3967"\w* \w toward|strong="H7218"\w* \w the|strong="H1121"\w* west. +\p +\v 16 \w Some|strong="H1992"\w* \w of|strong="H6010"\w* \w the|strong="H3605"\w* children \w of|strong="H6010"\w* Benjamin \w and|strong="H5674"\w* Judah \w came|strong="H5674"\w* \w to|strong="H5921"\w* \w the|strong="H3605"\w* stronghold \w to|strong="H5921"\w* David. +\v 17 \w David|strong="H1732"\w* \w went|strong="H1732"\w* \w out|strong="H4480"\w* \w to|strong="H5704"\w* \w meet|strong="H1121"\w* \w them|strong="H4480"\w*, \w and|strong="H1121"\w* answered \w them|strong="H4480"\w*, “\w If|strong="H1121"\w* \w you|strong="H5704"\w* \w have|strong="H1121"\w* \w come|strong="H3063"\w* peaceably \w to|strong="H5704"\w* \w me|strong="H4480"\w* \w to|strong="H5704"\w* \w help|strong="H4480"\w* \w me|strong="H4480"\w*, \w my|strong="H1732"\w* heart \w will|strong="H1121"\w* \w be|strong="H1121"\w* united \w with|strong="H1732"\w* \w you|strong="H5704"\w*; but \w if|strong="H1121"\w* \w you|strong="H5704"\w* \w have|strong="H1121"\w* \w come|strong="H3063"\w* \w to|strong="H5704"\w* betray \w me|strong="H4480"\w* \w to|strong="H5704"\w* \w my|strong="H1732"\w* adversaries, \w since|strong="H4480"\w* \w there|strong="H4480"\w* \w is|strong="H1121"\w* \w no|strong="H4480"\w* wrong \w in|strong="H1121"\w* \w my|strong="H1732"\w* hands, \w may|strong="H1121"\w* \w the|strong="H4480"\w* God \w of|strong="H1121"\w* \w our|strong="H4480"\w* fathers see \w this|strong="H1732"\w* \w and|strong="H1121"\w* rebuke \w it|strong="H5704"\w*.” +\v 18 \w Then|strong="H6030"\w* \w the|strong="H6440"\w* Spirit \w came|strong="H1961"\w* \w on|strong="H5921"\w* Amasai, \w who|strong="H6862"\w* \w was|strong="H1961"\w* chief \w of|strong="H6440"\w* \w the|strong="H6440"\w* thirty, \w and|strong="H6030"\w* \w he|strong="H1732"\w* \w said|strong="H6030"\w*, “\w We|strong="H7200"\w* \w are|strong="H1961"\w* yours, \w David|strong="H1732"\w*, \w and|strong="H6030"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* side, \w you|strong="H6440"\w* son \w of|strong="H6440"\w* Jesse. \w Peace|strong="H7965"\w*, \w peace|strong="H7965"\w* \w be|strong="H1961"\w* \w to|strong="H3318"\w* \w you|strong="H6440"\w*, \w and|strong="H6030"\w* \w peace|strong="H7965"\w* \w be|strong="H1961"\w* \w to|strong="H3318"\w* \w your|strong="H5921"\w* \w helpers|strong="H5826"\w*; \w for|strong="H5921"\w* \w your|strong="H5921"\w* \w God|strong="H3808"\w* \w helps|strong="H5826"\w* \w you|strong="H6440"\w*.” \w Then|strong="H6030"\w* \w David|strong="H1732"\w* \w received|strong="H1961"\w* \w them|strong="H5921"\w* \w and|strong="H6030"\w* \w made|strong="H1961"\w* \w them|strong="H5921"\w* captains \w of|strong="H6440"\w* \w the|strong="H6440"\w* band. +\p +\v 19 Some \w of|strong="H1121"\w* Manasseh \w also|strong="H1732"\w* joined \w David|strong="H1732"\w* \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w came|strong="H3847"\w* \w with|strong="H5973"\w* \w the|strong="H3588"\w* Philistines \w against|strong="H5973"\w* Saul \w to|strong="H5414"\w* battle, \w but|strong="H3588"\w* \w they|strong="H3588"\w* didn’t \w help|strong="H5826"\w* \w them|strong="H5414"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* lords \w of|strong="H1121"\w* \w the|strong="H3588"\w* Philistines \w sent|strong="H5414"\w* \w him|strong="H5414"\w* \w away|strong="H5973"\w* \w after|strong="H3588"\w* consultation, saying, “\w He|strong="H3588"\w* \w will|strong="H1121"\w* desert \w to|strong="H5414"\w* \w his|strong="H5414"\w* \w master|strong="H5414"\w* Saul \w to|strong="H5414"\w* \w the|strong="H3588"\w* jeopardy \w of|strong="H1121"\w* \w our|strong="H5414"\w* \w heads|strong="H7218"\w*.” +\p +\v 20 \w As|strong="H3588"\w* \w he|strong="H3588"\w* \w went|strong="H1732"\w* \w to|strong="H7971"\w* Ziklag, \w some|strong="H4480"\w* \w from|strong="H4480"\w* \w Manasseh|strong="H4519"\w* \w joined|strong="H5307"\w* \w him|strong="H5921"\w*: Adnah, Jozabad, Jediael, Michael, Jozabad, Elihu, \w and|strong="H7971"\w* Zillethai, \w captains|strong="H7218"\w* \w of|strong="H7218"\w* thousands \w who|strong="H4421"\w* \w were|strong="H6430"\w* \w of|strong="H7218"\w* \w Manasseh|strong="H4519"\w*. +\v 21 \w They|strong="H5921"\w* helped David \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w band|strong="H7218"\w* \w of|strong="H7218"\w* raiders, \w for|strong="H5921"\w* \w they|strong="H5921"\w* \w were|strong="H7218"\w* \w all|strong="H3212"\w* mighty \w men|strong="H7218"\w* \w of|strong="H7218"\w* valor \w and|strong="H3212"\w* \w were|strong="H7218"\w* \w captains|strong="H7218"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* army. +\v 22 \w For|strong="H3588"\w* \w from|strong="H5921"\w* day \w to|strong="H1961"\w* day \w men|strong="H1368"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w David|strong="H1732"\w* \w to|strong="H1961"\w* \w help|strong="H5826"\w* \w him|strong="H5921"\w*, \w until|strong="H3588"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w great|strong="H1368"\w* \w army|strong="H2428"\w*, \w like|strong="H1961"\w* God’s \w army|strong="H2428"\w*. +\p +\v 23 \w These|strong="H1732"\w* \w are|strong="H3117"\w* \w the|strong="H5921"\w* numbers \w of|strong="H3117"\w* \w the|strong="H5921"\w* heads \w of|strong="H3117"\w* \w those|strong="H5921"\w* \w who|strong="H3588"\w* \w were|strong="H3117"\w* armed \w for|strong="H3588"\w* war, \w who|strong="H3588"\w* \w came|strong="H1732"\w* \w to|strong="H5704"\w* \w David|strong="H1732"\w* \w to|strong="H5704"\w* Hebron \w to|strong="H5704"\w* turn \w the|strong="H5921"\w* kingdom \w of|strong="H3117"\w* Saul \w to|strong="H5704"\w* \w him|strong="H5921"\w*, \w according|strong="H5921"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w*’s word. +\v 24 \w The|strong="H5921"\w* children \w of|strong="H3068"\w* Judah \w who|strong="H3068"\w* bore shield \w and|strong="H3068"\w* spear \w were|strong="H1732"\w* six thousand eight hundred, \w armed|strong="H2502"\w* \w for|strong="H5921"\w* \w war|strong="H6635"\w*. +\v 25 \w Of|strong="H1121"\w* \w the|strong="H5375"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Simeon, \w mighty|strong="H1121"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* valor \w for|strong="H1121"\w* \w the|strong="H5375"\w* \w war|strong="H6635"\w*: seven thousand \w one|strong="H1121"\w* \w hundred|strong="H3967"\w*. +\v 26 \w Of|strong="H1121"\w* \w the|strong="H4480"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Levi: four thousand six \w hundred|strong="H3967"\w*. +\v 27 Jehoiada \w was|strong="H1121"\w* \w the|strong="H4480"\w* leader \w of|strong="H1121"\w* \w the|strong="H4480"\w* household \w of|strong="H1121"\w* Aaron; \w and|strong="H3967"\w* \w with|strong="H4480"\w* \w him|strong="H4480"\w* \w were|strong="H1121"\w* three thousand seven \w hundred|strong="H3967"\w*, +\v 28 \w and|strong="H3967"\w* Zadok, \w a|strong="H3068"\w* young man \w mighty|strong="H7969"\w* \w of|strong="H5057"\w* valor, \w and|strong="H3967"\w* \w of|strong="H5057"\w* \w his|strong="H5973"\w* father’s house twenty-two \w captains|strong="H5057"\w*. +\v 29 \w Of|strong="H1004"\w* \w the|strong="H6659"\w* \w children|strong="H5288"\w* \w of|strong="H1004"\w* Benjamin, Saul’s relatives: three thousand, \w for|strong="H1004"\w* until then, \w the|strong="H6659"\w* greatest part \w of|strong="H1004"\w* \w them|strong="H8147"\w* \w had|strong="H8269"\w* kept \w their|strong="H8147"\w* allegiance \w to|strong="H1004"\w* Saul’s \w house|strong="H1004"\w*. +\v 30 \w Of|strong="H1121"\w* \w the|strong="H8104"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Ephraim: twenty thousand eight hundred, \w mighty|strong="H7969"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* valor, famous \w men|strong="H1121"\w* \w in|strong="H1004"\w* \w their|strong="H8104"\w* fathers’ \w houses|strong="H1004"\w*. +\v 31 \w Of|strong="H1121"\w* \w the|strong="H4480"\w* half-tribe \w of|strong="H1121"\w* Manasseh: \w eighteen|strong="H8083"\w* thousand, \w who|strong="H1121"\w* \w were|strong="H1121"\w* mentioned \w by|strong="H8034"\w* \w name|strong="H8034"\w*, \w to|strong="H1121"\w* \w come|strong="H1368"\w* \w and|strong="H3967"\w* \w make|strong="H8034"\w* David king. +\v 32 \w Of|strong="H4294"\w* \w the|strong="H1732"\w* children \w of|strong="H4294"\w* Issachar, \w men|strong="H8034"\w* who \w had|strong="H1732"\w* understanding \w of|strong="H4294"\w* \w the|strong="H1732"\w* times, \w to|strong="H1732"\w* know \w what|strong="H1732"\w* Israel ought \w to|strong="H1732"\w* do, \w their|strong="H1732"\w* heads \w were|strong="H1732"\w* \w two|strong="H4427"\w* hundred; \w and|strong="H1732"\w* all \w their|strong="H1732"\w* brothers \w were|strong="H1732"\w* \w at|strong="H1732"\w* \w their|strong="H1732"\w* command. +\v 33 \w Of|strong="H1121"\w* Zebulun, \w such|strong="H6213"\w* \w as|strong="H6213"\w* \w were|strong="H3478"\w* able \w to|strong="H3478"\w* \w go|strong="H3478"\w* \w out|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* army, \w who|strong="H3605"\w* \w could|strong="H3045"\w* \w set|strong="H6213"\w* \w the|strong="H3605"\w* battle \w in|strong="H5921"\w* array \w with|strong="H6213"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H1121"\w* instruments \w of|strong="H1121"\w* war: fifty thousand \w who|strong="H3605"\w* \w could|strong="H3045"\w* \w command|strong="H6310"\w* \w and|strong="H3967"\w* \w were|strong="H3478"\w* \w not|strong="H3045"\w* \w of|strong="H1121"\w* double heart. +\v 34 \w Of|strong="H3627"\w* Naphtali: \w one|strong="H3605"\w* thousand captains, \w and|strong="H2572"\w* \w with|strong="H3318"\w* \w them|strong="H3318"\w* \w with|strong="H3318"\w* shield \w and|strong="H2572"\w* spear thirty-seven thousand. +\v 35 \w Of|strong="H8269"\w* \w the|strong="H5973"\w* Danites \w who|strong="H8269"\w* could set \w the|strong="H5973"\w* battle \w in|strong="H5973"\w* array: twenty-eight thousand six hundred. +\v 36 \w Of|strong="H4480"\w* Asher, such \w as|strong="H6186"\w* \w were|strong="H4421"\w* able \w to|strong="H4480"\w* go \w out|strong="H4480"\w* \w in|strong="H4421"\w* \w the|strong="H4480"\w* \w army|strong="H4421"\w*, \w who|strong="H4421"\w* could \w set|strong="H6186"\w* \w the|strong="H4480"\w* \w battle|strong="H4421"\w* \w in|strong="H4421"\w* \w array|strong="H6186"\w*: forty thousand. +\v 37 \w On|strong="H3318"\w* \w the|strong="H3318"\w* other side \w of|strong="H6635"\w* \w the|strong="H3318"\w* Jordan, \w of|strong="H6635"\w* \w the|strong="H3318"\w* Reubenites, \w the|strong="H3318"\w* Gadites, \w and|strong="H3318"\w* \w of|strong="H6635"\w* \w the|strong="H3318"\w* half-tribe \w of|strong="H6635"\w* Manasseh, \w with|strong="H3318"\w* \w all|strong="H3318"\w* kinds \w of|strong="H6635"\w* instruments \w of|strong="H6635"\w* \w war|strong="H4421"\w* \w for|strong="H6635"\w* \w the|strong="H3318"\w* \w battle|strong="H4421"\w*: one hundred twenty thousand. +\p +\v 38 \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w were|strong="H3627"\w* \w men|strong="H3605"\w* \w of|strong="H7626"\w* \w war|strong="H4421"\w* \w who|strong="H3605"\w* could order \w the|strong="H3605"\w* \w battle|strong="H4421"\w* \w array|strong="H6635"\w*, \w and|strong="H3967"\w* \w came|strong="H6635"\w* \w with|strong="H3627"\w* \w a|strong="H3068"\w* perfect heart \w to|strong="H4480"\w* Hebron \w to|strong="H4480"\w* make David king \w over|strong="H4480"\w* \w all|strong="H3605"\w* \w Israel|strong="H4421"\w*; \w and|strong="H3967"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* rest \w also|strong="H4519"\w* \w of|strong="H7626"\w* \w Israel|strong="H4421"\w* \w were|strong="H3627"\w* \w of|strong="H7626"\w* \w one|strong="H3605"\w* heart \w to|strong="H4480"\w* make David king. +\v 39 \w They|strong="H5921"\w* \w were|strong="H3478"\w* \w there|strong="H3605"\w* \w with|strong="H5921"\w* \w David|strong="H1732"\w* three days, eating \w and|strong="H3478"\w* drinking; \w for|strong="H5921"\w* \w their|strong="H3605"\w* brothers \w had|strong="H3478"\w* supplied provisions \w for|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 40 \w Moreover|strong="H1961"\w* \w those|strong="H1961"\w* \w who|strong="H3588"\w* \w were|strong="H1961"\w* \w near|strong="H5973"\w* \w to|strong="H1961"\w* \w them|strong="H1961"\w*, \w as|strong="H3117"\w* far \w as|strong="H3117"\w* Issachar, Zebulun, \w and|strong="H3117"\w* Naphtali, \w brought|strong="H1961"\w* bread \w on|strong="H3117"\w* donkeys, \w on|strong="H3117"\w* camels, \w on|strong="H3117"\w* mules, \w and|strong="H3117"\w* \w on|strong="H3117"\w* oxen: supplies \w of|strong="H3117"\w* flour, cakes \w of|strong="H3117"\w* figs, clusters \w of|strong="H3117"\w* raisins, wine, oil, cattle, \w and|strong="H3117"\w* sheep \w in|strong="H3117"\w* abundance; \w for|strong="H3588"\w* \w there|strong="H8033"\w* \w was|strong="H1961"\w* joy \w in|strong="H3117"\w* Israel. +\c 13 +\p +\v 1 \w David|strong="H1732"\w* \w consulted|strong="H3289"\w* \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H8269"\w* thousands \w and|strong="H3967"\w* \w of|strong="H8269"\w* \w hundreds|strong="H3967"\w*, even \w with|strong="H5973"\w* \w every|strong="H3605"\w* \w leader|strong="H5057"\w*. +\v 2 \w David|strong="H1732"\w* said \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, “If \w it|strong="H5921"\w* \w seems|strong="H3605"\w* \w good|strong="H2895"\w* \w to|strong="H3478"\w* \w you|strong="H3605"\w*, \w and|strong="H3478"\w* if \w it|strong="H5921"\w* \w is|strong="H3068"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w let|strong="H7971"\w*’s \w send|strong="H7971"\w* word \w everywhere|strong="H3605"\w* \w to|strong="H3478"\w* \w our|strong="H3068"\w* brothers \w who|strong="H3605"\w* \w are|strong="H3478"\w* \w left|strong="H7604"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w with|strong="H5973"\w* whom \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H3478"\w* \w Levites|strong="H3881"\w* \w are|strong="H3478"\w* \w in|strong="H5921"\w* \w their|strong="H3605"\w* \w cities|strong="H5892"\w* \w that|strong="H3605"\w* \w have|strong="H3068"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*, \w that|strong="H3605"\w* \w they|strong="H3068"\w* \w may|strong="H3068"\w* \w gather|strong="H6908"\w* \w themselves|strong="H6908"\w* \w to|strong="H3478"\w* \w us|strong="H5921"\w*. +\v 3 \w Also|strong="H7586"\w*, \w let|strong="H3808"\w*’s \w bring|strong="H5437"\w* \w the|strong="H3588"\w* ark \w of|strong="H3117"\w* \w our|strong="H3588"\w* \w God|strong="H3808"\w* \w back|strong="H5437"\w* \w to|strong="H3117"\w* \w us|strong="H3588"\w* \w again|strong="H5437"\w*, \w for|strong="H3588"\w* \w we|strong="H3068"\w* didn’t \w seek|strong="H1875"\w* \w it|strong="H3588"\w* \w in|strong="H3117"\w* \w the|strong="H3588"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w Saul|strong="H7586"\w*.” +\p +\v 4 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w said|strong="H1697"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w would|strong="H5971"\w* \w do|strong="H6213"\w* \w so|strong="H3651"\w*, \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w thing|strong="H1697"\w* \w was|strong="H1697"\w* \w right|strong="H3474"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w eyes|strong="H5869"\w* \w of|strong="H1697"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*. +\v 5 \w So|strong="H4480"\w* \w David|strong="H1732"\w* \w assembled|strong="H6950"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w together|strong="H6950"\w*, \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w Shihor|strong="H7883"\w* \w River|strong="H5704"\w* \w of|strong="H4480"\w* \w Egypt|strong="H4714"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* entrance \w of|strong="H4480"\w* \w Hamath|strong="H2574"\w*, \w to|strong="H5704"\w* \w bring|strong="H1732"\w* God’s ark \w from|strong="H4480"\w* \w Kiriath|strong="H7157"\w* Jearim. +\p +\v 6 \w David|strong="H1732"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w Baalah|strong="H1173"\w*, \w that|strong="H3605"\w* \w is|strong="H3068"\w*, \w to|strong="H3478"\w* \w Kiriath|strong="H7157"\w* Jearim, \w which|strong="H3068"\w* \w belonged|strong="H5927"\w* \w to|strong="H3478"\w* \w Judah|strong="H3063"\w*, \w to|strong="H3478"\w* \w bring|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5927"\w* \w there|strong="H8033"\w* \w God|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s ark \w that|strong="H3605"\w* \w sits|strong="H3427"\w* above \w the|strong="H3605"\w* \w cherubim|strong="H3742"\w*, \w that|strong="H3605"\w* \w is|strong="H3068"\w* \w called|strong="H7121"\w* \w by|strong="H3068"\w* \w the|strong="H3605"\w* \w Name|strong="H8034"\w*. +\v 7 \w They|strong="H5921"\w* \w carried|strong="H7392"\w* God’s ark \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w cart|strong="H5699"\w*, \w and|strong="H1004"\w* \w brought|strong="H5090"\w* \w it|strong="H5921"\w* \w out|strong="H5921"\w* \w of|strong="H1004"\w* Abinadab’s \w house|strong="H1004"\w*; \w and|strong="H1004"\w* \w Uzza|strong="H5798"\w* \w and|strong="H1004"\w* Ahio \w drove|strong="H5090"\w* \w the|strong="H5921"\w* \w cart|strong="H5699"\w*. +\v 8 \w David|strong="H1732"\w* \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w played|strong="H7832"\w* \w before|strong="H6440"\w* God \w with|strong="H6440"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w might|strong="H5797"\w*, even \w with|strong="H6440"\w* \w songs|strong="H7892"\w*, \w with|strong="H6440"\w* \w harps|strong="H3658"\w*, \w with|strong="H6440"\w* stringed \w instruments|strong="H7892"\w*, \w with|strong="H6440"\w* \w tambourines|strong="H8596"\w*, \w with|strong="H6440"\w* \w cymbals|strong="H4700"\w*, \w and|strong="H3478"\w* \w with|strong="H6440"\w* \w trumpets|strong="H2689"\w*. +\p +\v 9 \w When|strong="H3588"\w* \w they|strong="H3588"\w* came \w to|strong="H5704"\w* \w Chidon|strong="H3592"\w*’s \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w*, \w Uzza|strong="H5798"\w* \w put|strong="H7971"\w* \w out|strong="H7971"\w* \w his|strong="H7971"\w* \w hand|strong="H3027"\w* \w to|strong="H5704"\w* hold \w the|strong="H3588"\w* ark, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w oxen|strong="H1241"\w* \w stumbled|strong="H8058"\w*. +\v 10 \w Yahweh|strong="H3068"\w*’s \w anger|strong="H6440"\w* \w burned|strong="H2734"\w* \w against|strong="H5921"\w* \w Uzza|strong="H5798"\w*, \w and|strong="H3068"\w* \w he|strong="H8033"\w* \w struck|strong="H5221"\w* \w him|strong="H6440"\w* \w because|strong="H5921"\w* \w he|strong="H8033"\w* \w put|strong="H4191"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* ark; \w and|strong="H3068"\w* \w he|strong="H8033"\w* \w died|strong="H4191"\w* \w there|strong="H8033"\w* \w before|strong="H6440"\w* \w God|strong="H3068"\w*. +\v 11 \w David|strong="H1732"\w* \w was|strong="H3068"\w* \w displeased|strong="H2734"\w*, \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w broken|strong="H6555"\w* \w out|strong="H6555"\w* \w against|strong="H2734"\w* \w Uzza|strong="H5798"\w*. \w He|strong="H1931"\w* \w called|strong="H7121"\w* \w that|strong="H3588"\w* \w place|strong="H4725"\w* Perez \w Uzza|strong="H5798"\w*, \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 12 \w David|strong="H1732"\w* \w was|strong="H1732"\w* \w afraid|strong="H3372"\w* \w of|strong="H3117"\w* God \w that|strong="H3117"\w* \w day|strong="H3117"\w*, saying, “\w How|strong="H1963"\w* can \w I|strong="H3117"\w* \w bring|strong="H1732"\w* God’s ark home \w to|strong="H3117"\w* \w me|strong="H3372"\w*?” +\v 13 \w So|strong="H3808"\w* \w David|strong="H1732"\w* didn’t \w move|strong="H5493"\w* \w the|strong="H5493"\w* ark \w with|strong="H1004"\w* \w him|strong="H5186"\w* \w into|strong="H5892"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*, \w but|strong="H3808"\w* carried \w it|strong="H5186"\w* \w aside|strong="H5493"\w* \w into|strong="H5892"\w* \w Obed-Edom|strong="H5654"\w* \w the|strong="H5493"\w* \w Gittite|strong="H1663"\w*’s \w house|strong="H1004"\w*. +\v 14 \w God|strong="H3068"\w*’s ark \w remained|strong="H3427"\w* \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w family|strong="H1004"\w* \w of|strong="H1004"\w* \w Obed-Edom|strong="H5654"\w* \w in|strong="H3427"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w* \w three|strong="H7969"\w* \w months|strong="H2320"\w*; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w blessed|strong="H1288"\w* \w Obed-Edom|strong="H5654"\w*’s \w house|strong="H1004"\w* \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w*. +\c 14 +\p +\v 1 \w Hiram|strong="H2438"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Tyre|strong="H6865"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H7971"\w* \w David|strong="H1732"\w* \w with|strong="H1004"\w* cedar \w trees|strong="H6086"\w*, \w masons|strong="H7023"\w*, \w and|strong="H7971"\w* \w carpenters|strong="H2796"\w*, \w to|strong="H7971"\w* \w build|strong="H1129"\w* \w him|strong="H7971"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w*. +\v 2 \w David|strong="H1732"\w* \w perceived|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w established|strong="H3559"\w* \w him|strong="H5921"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*, \w for|strong="H3588"\w* \w his|strong="H5375"\w* \w kingdom|strong="H4438"\w* \w was|strong="H3068"\w* \w highly|strong="H4605"\w* \w exalted|strong="H5375"\w*, \w for|strong="H3588"\w* \w his|strong="H5375"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*’s \w sake|strong="H5668"\w*. +\p +\v 3 \w David|strong="H1732"\w* \w took|strong="H3947"\w* \w more|strong="H5750"\w* wives \w in|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H1121"\w* \w David|strong="H1732"\w* \w became|strong="H3205"\w* \w the|strong="H3947"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w more|strong="H5750"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w daughters|strong="H1323"\w*. +\v 4 These \w are|strong="H1961"\w* \w the|strong="H3205"\w* \w names|strong="H8034"\w* \w of|strong="H3205"\w* \w the|strong="H3205"\w* \w children|strong="H3205"\w* whom \w he|strong="H3389"\w* \w had|strong="H1961"\w* \w in|strong="H8034"\w* \w Jerusalem|strong="H3389"\w*: \w Shammua|strong="H8051"\w*, \w Shobab|strong="H7727"\w*, \w Nathan|strong="H5416"\w*, \w Solomon|strong="H8010"\w*, +\v 5 \w Ibhar|strong="H2984"\w*, Elishua, Elpelet, +\v 6 \w Nogah|strong="H5052"\w*, \w Nepheg|strong="H5298"\w*, \w Japhia|strong="H3309"\w*, +\v 7 Elishama, \w Beeliada|strong="H1182"\w*, \w and|strong="H1182"\w* Eliphelet. +\p +\v 8 \w When|strong="H3588"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w David|strong="H1732"\w* \w was|strong="H1732"\w* \w anointed|strong="H4886"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w* \w went|strong="H3318"\w* \w up|strong="H5927"\w* \w to|strong="H3318"\w* \w seek|strong="H1245"\w* \w David|strong="H1732"\w*; \w and|strong="H3478"\w* \w David|strong="H1732"\w* \w heard|strong="H8085"\w* \w of|strong="H4428"\w* \w it|strong="H5921"\w*, \w and|strong="H3478"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 9 Now \w the|strong="H6584"\w* \w Philistines|strong="H6430"\w* \w had|strong="H6430"\w* come \w and|strong="H6430"\w* \w made|strong="H6584"\w* \w a|strong="H3068"\w* \w raid|strong="H6584"\w* \w in|strong="H6430"\w* \w the|strong="H6584"\w* \w valley|strong="H6010"\w* \w of|strong="H6010"\w* \w Rephaim|strong="H7497"\w*. +\v 10 \w David|strong="H1732"\w* \w inquired|strong="H7592"\w* \w of|strong="H3068"\w* \w God|strong="H3068"\w*, saying, “\w Shall|strong="H3068"\w* \w I|strong="H5414"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w Philistines|strong="H6430"\w*? \w Will|strong="H3068"\w* \w you|strong="H5414"\w* \w deliver|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H5927"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w*?” +\p \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w him|strong="H5414"\w*, “\w Go|strong="H5927"\w* \w up|strong="H5927"\w*; \w for|strong="H5921"\w* \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w deliver|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H5927"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*.” +\p +\v 11 \w So|strong="H3651"\w* \w they|strong="H3651"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* Baal Perazim, \w and|strong="H3027"\w* \w David|strong="H1732"\w* \w defeated|strong="H5221"\w* \w them|strong="H5921"\w* \w there|strong="H8033"\w*. \w David|strong="H1732"\w* \w said|strong="H7121"\w*, \w God|strong="H3027"\w* \w has|strong="H3027"\w* \w broken|strong="H6555"\w* \w my|strong="H1732"\w* \w enemies|strong="H3027"\w* \w by|strong="H3027"\w* \w my|strong="H1732"\w* \w hand|strong="H3027"\w*, \w like|strong="H3651"\w* \w waters|strong="H4325"\w* \w breaking|strong="H5927"\w* \w out|strong="H5921"\w*. \w Therefore|strong="H3651"\w* \w they|strong="H3651"\w* \w called|strong="H7121"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H3027"\w* \w that|strong="H1931"\w* \w place|strong="H4725"\w* Baal Perazim.\f + \fr 14:11 \ft “Baal Perazim” means “The Lord who breaks out”.\f* +\v 12 \w They|strong="H8033"\w* \w left|strong="H5800"\w* \w their|strong="H8313"\w* gods \w there|strong="H8033"\w*; \w and|strong="H1732"\w* \w David|strong="H1732"\w* gave \w a|strong="H3068"\w* command, \w and|strong="H1732"\w* \w they|strong="H8033"\w* \w were|strong="H1732"\w* \w burned|strong="H8313"\w* \w with|strong="H8313"\w* fire. +\p +\v 13 \w The|strong="H3254"\w* \w Philistines|strong="H6430"\w* \w made|strong="H6584"\w* \w another|strong="H5750"\w* \w raid|strong="H6584"\w* \w in|strong="H5750"\w* \w the|strong="H3254"\w* \w valley|strong="H6010"\w*. +\v 14 \w David|strong="H1732"\w* \w inquired|strong="H7592"\w* \w again|strong="H5750"\w* \w of|strong="H5921"\w* \w God|strong="H3808"\w*; \w and|strong="H1732"\w* \w God|strong="H3808"\w* said \w to|strong="H5927"\w* \w him|strong="H5921"\w*, “\w You|strong="H5921"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w after|strong="H5921"\w* \w them|strong="H1992"\w*. \w Turn|strong="H5437"\w* \w away|strong="H5927"\w* \w from|strong="H5921"\w* \w them|strong="H1992"\w*, \w and|strong="H1732"\w* \w come|strong="H5927"\w* \w on|strong="H5921"\w* \w them|strong="H1992"\w* \w opposite|strong="H4136"\w* \w the|strong="H5921"\w* mulberry \w trees|strong="H1057"\w*. +\v 15 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w hear|strong="H8085"\w* \w the|strong="H6440"\w* \w sound|strong="H6963"\w* \w of|strong="H7218"\w* \w marching|strong="H6807"\w* \w in|strong="H8085"\w* \w the|strong="H6440"\w* \w tops|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H6440"\w* mulberry \w trees|strong="H1057"\w*, \w then|strong="H1961"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w battle|strong="H4421"\w*; \w for|strong="H3588"\w* God \w has|strong="H1961"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w* \w to|strong="H3318"\w* \w strike|strong="H5221"\w* \w the|strong="H6440"\w* \w army|strong="H4264"\w* \w of|strong="H7218"\w* \w the|strong="H6440"\w* \w Philistines|strong="H6430"\w*.” +\p +\v 16 \w David|strong="H1732"\w* \w did|strong="H6213"\w* \w as|strong="H5704"\w* God \w commanded|strong="H6680"\w* \w him|strong="H5221"\w*; \w and|strong="H1732"\w* \w they|strong="H5704"\w* \w attacked|strong="H5221"\w* \w the|strong="H5221"\w* \w army|strong="H4264"\w* \w of|strong="H4264"\w* \w the|strong="H5221"\w* \w Philistines|strong="H6430"\w* \w from|strong="H5704"\w* \w Gibeon|strong="H1391"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Gezer|strong="H1507"\w*. +\v 17 \w The|strong="H3605"\w* \w fame|strong="H8034"\w* \w of|strong="H3068"\w* \w David|strong="H1732"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H5921"\w* \w all|strong="H3605"\w* lands; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w brought|strong="H3318"\w* \w the|strong="H3605"\w* \w fear|strong="H6343"\w* \w of|strong="H3068"\w* \w him|strong="H5414"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w nations|strong="H1471"\w*. +\c 15 +\p +\v 1 \w David|strong="H1732"\w* \w made|strong="H6213"\w* \w himself|strong="H6213"\w* \w houses|strong="H1004"\w* \w in|strong="H6213"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*; \w and|strong="H1004"\w* \w he|strong="H6213"\w* \w prepared|strong="H3559"\w* \w a|strong="H3068"\w* \w place|strong="H4725"\w* \w for|strong="H6213"\w* God’s ark, \w and|strong="H1004"\w* \w pitched|strong="H5186"\w* \w a|strong="H3068"\w* tent \w for|strong="H6213"\w* \w it|strong="H6213"\w*. +\v 2 \w Then|strong="H5375"\w* \w David|strong="H1732"\w* said, “\w No|strong="H3808"\w* \w one|strong="H3808"\w* ought \w to|strong="H5704"\w* \w carry|strong="H5375"\w* \w God|strong="H3068"\w*’s ark \w but|strong="H3588"\w* \w the|strong="H3588"\w* \w Levites|strong="H3881"\w*. \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* chosen \w them|strong="H5375"\w* \w to|strong="H5704"\w* \w carry|strong="H5375"\w* \w God|strong="H3068"\w*’s ark, \w and|strong="H3068"\w* \w to|strong="H5704"\w* \w minister|strong="H8334"\w* \w to|strong="H5704"\w* \w him|strong="H1732"\w* \w forever|strong="H5769"\w*.” +\p +\v 3 \w David|strong="H1732"\w* \w assembled|strong="H6950"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w at|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*, \w to|strong="H3478"\w* \w bring|strong="H5927"\w* \w up|strong="H5927"\w* \w Yahweh|strong="H3068"\w*’s ark \w to|strong="H3478"\w* \w its|strong="H3605"\w* \w place|strong="H4725"\w*, \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w* \w prepared|strong="H3559"\w* \w for|strong="H3068"\w* \w it|strong="H3559"\w*. +\v 4 \w David|strong="H1732"\w* \w gathered|strong="H1732"\w* together \w the|strong="H1732"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w and|strong="H1121"\w* \w the|strong="H1732"\w* \w Levites|strong="H3881"\w*: +\v 5 \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Kohath|strong="H6955"\w*, Uriel \w the|strong="H1121"\w* \w chief|strong="H8269"\w*, \w and|strong="H3967"\w* \w his|strong="H8269"\w* \w brothers|strong="H1121"\w* \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* \w twenty|strong="H6242"\w*; +\v 6 \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w*, \w Asaiah|strong="H6222"\w* \w the|strong="H1121"\w* \w chief|strong="H8269"\w*, \w and|strong="H3967"\w* \w his|strong="H6222"\w* \w brothers|strong="H1121"\w* \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* \w twenty|strong="H6242"\w*; +\v 7 \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Gershom, \w Joel|strong="H3100"\w* \w the|strong="H1121"\w* \w chief|strong="H8269"\w*, \w and|strong="H3967"\w* \w his|strong="H3100"\w* \w brothers|strong="H1121"\w* \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w*; +\v 8 \w of|strong="H1121"\w* \w the|strong="H8098"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Elizaphan, \w Shemaiah|strong="H8098"\w* \w the|strong="H8098"\w* \w chief|strong="H8269"\w*, \w and|strong="H3967"\w* \w his|strong="H8098"\w* \w brothers|strong="H1121"\w* \w two|strong="H3967"\w* \w hundred|strong="H3967"\w*; +\v 9 \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Hebron|strong="H2275"\w*, Eliel \w the|strong="H1121"\w* \w chief|strong="H8269"\w*, \w and|strong="H1121"\w* \w his|strong="H8269"\w* \w brothers|strong="H1121"\w* \w eighty|strong="H8084"\w*; +\v 10 \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Uzziel|strong="H5816"\w*, \w Amminadab|strong="H5992"\w* \w the|strong="H1121"\w* \w chief|strong="H8269"\w*, \w and|strong="H3967"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w* \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* \w twelve|strong="H8147"\w*. +\p +\v 11 \w David|strong="H1732"\w* \w called|strong="H7121"\w* \w for|strong="H7121"\w* \w Zadok|strong="H6659"\w* \w and|strong="H3548"\w* Abiathar \w the|strong="H7121"\w* \w priests|strong="H3548"\w*, \w and|strong="H3548"\w* \w for|strong="H7121"\w* \w the|strong="H7121"\w* \w Levites|strong="H3881"\w*: \w for|strong="H7121"\w* Uriel, \w Asaiah|strong="H6222"\w*, \w Joel|strong="H3100"\w*, \w Shemaiah|strong="H8098"\w*, Eliel, \w and|strong="H3548"\w* \w Amminadab|strong="H5992"\w*, +\v 12 \w and|strong="H3478"\w* said \w to|strong="H3478"\w* \w them|strong="H5927"\w*, “\w You|strong="H3559"\w* \w are|strong="H3478"\w* \w the|strong="H3068"\w* \w heads|strong="H7218"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* fathers’ \w households|strong="H3881"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w Levites|strong="H3881"\w*. \w Sanctify|strong="H6942"\w* \w yourselves|strong="H6942"\w*, both \w you|strong="H3559"\w* \w and|strong="H3478"\w* \w your|strong="H3068"\w* brothers, \w that|strong="H3068"\w* \w you|strong="H3559"\w* \w may|strong="H3068"\w* \w bring|strong="H5927"\w* \w the|strong="H3068"\w* ark \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w the|strong="H3068"\w* \w place|strong="H7218"\w* \w that|strong="H3068"\w* \w I|strong="H3559"\w* \w have|strong="H3068"\w* \w prepared|strong="H3559"\w* \w for|strong="H3068"\w* \w it|strong="H3559"\w*. +\v 13 \w For|strong="H3588"\w* \w because|strong="H3588"\w* \w you|strong="H3588"\w* didn’t carry \w it|strong="H3588"\w* \w at|strong="H3068"\w* \w first|strong="H7223"\w*, \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w broke|strong="H6555"\w* \w out|strong="H6555"\w* \w in|strong="H3068"\w* anger \w against|strong="H6555"\w* \w us|strong="H3588"\w*, \w because|strong="H3588"\w* \w we|strong="H3068"\w* didn’t \w seek|strong="H1875"\w* \w him|strong="H3588"\w* \w according|strong="H4941"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w ordinance|strong="H4941"\w*.” +\p +\v 14 \w So|strong="H5927"\w* \w the|strong="H3068"\w* \w priests|strong="H3548"\w* \w and|strong="H3478"\w* \w the|strong="H3068"\w* \w Levites|strong="H3881"\w* \w sanctified|strong="H6942"\w* \w themselves|strong="H6942"\w* \w to|strong="H3478"\w* \w bring|strong="H5927"\w* \w up|strong="H5927"\w* \w the|strong="H3068"\w* ark \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\v 15 \w The|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w* \w bore|strong="H5375"\w* \w God|strong="H3068"\w*’s ark \w on|strong="H5921"\w* \w their|strong="H3068"\w* \w shoulders|strong="H3802"\w* \w with|strong="H3068"\w* \w its|strong="H5921"\w* \w poles|strong="H4133"\w*, \w as|strong="H1697"\w* \w Moses|strong="H4872"\w* \w commanded|strong="H6680"\w* \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*. +\p +\v 16 \w David|strong="H1732"\w* spoke \w to|strong="H8085"\w* \w the|strong="H8085"\w* \w chief|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H8085"\w* \w Levites|strong="H3881"\w* \w to|strong="H8085"\w* \w appoint|strong="H5975"\w* \w their|strong="H8085"\w* brothers \w as|strong="H3881"\w* \w singers|strong="H7891"\w* \w with|strong="H1732"\w* \w instruments|strong="H3627"\w* \w of|strong="H8269"\w* \w music|strong="H7892"\w*, stringed \w instruments|strong="H3627"\w*, \w harps|strong="H3658"\w*, \w and|strong="H6963"\w* \w cymbals|strong="H4700"\w*, \w sounding|strong="H8085"\w* \w aloud|strong="H7311"\w* \w and|strong="H6963"\w* \w lifting|strong="H7311"\w* \w up|strong="H7311"\w* \w their|strong="H8085"\w* \w voices|strong="H6963"\w* \w with|strong="H1732"\w* \w joy|strong="H8057"\w*. +\v 17 \w So|strong="H4480"\w* \w the|strong="H4480"\w* \w Levites|strong="H3881"\w* \w appointed|strong="H5975"\w* \w Heman|strong="H1968"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joel|strong="H3100"\w*; \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w his|strong="H4480"\w* \w brothers|strong="H1121"\w*, Asaph \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Berechiah|strong="H1296"\w*; \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w* \w their|strong="H5975"\w* \w brothers|strong="H1121"\w*, Ethan \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kushaiah|strong="H6984"\w*; +\v 18 \w and|strong="H2148"\w* \w with|strong="H5973"\w* them \w their|strong="H5973"\w* brothers \w of|strong="H4932"\w* \w the|strong="H1141"\w* \w second|strong="H4932"\w* \w rank|strong="H4932"\w*: \w Zechariah|strong="H2148"\w*, \w Ben|strong="H1122"\w*, \w Jaaziel|strong="H3268"\w*, \w Shemiramoth|strong="H8070"\w*, \w Jehiel|strong="H3171"\w*, \w Unni|strong="H6042"\w*, Eliab, \w Benaiah|strong="H1141"\w*, \w Maaseiah|strong="H4641"\w*, \w Mattithiah|strong="H4993"\w*, Eliphelehu, \w Mikneiah|strong="H4737"\w*, \w Obed-Edom|strong="H5654"\w*, \w and|strong="H2148"\w* \w Jeiel|strong="H3273"\w*, \w the|strong="H1141"\w* \w doorkeepers|strong="H7778"\w*. +\v 19 \w So|strong="H8085"\w* \w the|strong="H8085"\w* \w singers|strong="H7891"\w*, \w Heman|strong="H1968"\w*, Asaph, \w and|strong="H8085"\w* Ethan, \w were|strong="H7891"\w* \w given|strong="H8085"\w* \w cymbals|strong="H4700"\w* \w of|strong="H8085"\w* \w bronze|strong="H5178"\w* \w to|strong="H8085"\w* \w sound|strong="H8085"\w* \w aloud|strong="H8085"\w*; +\v 20 \w and|strong="H5035"\w* \w Zechariah|strong="H2148"\w*, \w Aziel|strong="H5815"\w*, \w Shemiramoth|strong="H8070"\w*, \w Jehiel|strong="H3171"\w*, \w Unni|strong="H6042"\w*, Eliab, \w Maaseiah|strong="H4641"\w*, \w and|strong="H5035"\w* \w Benaiah|strong="H1141"\w*, \w with|strong="H5921"\w* stringed instruments set \w to|strong="H5921"\w* \w Alamoth|strong="H5961"\w*; +\v 21 \w and|strong="H3658"\w* \w Mattithiah|strong="H4993"\w*, Eliphelehu, \w Mikneiah|strong="H4737"\w*, \w Obed-Edom|strong="H5654"\w*, \w Jeiel|strong="H3273"\w*, \w and|strong="H3658"\w* \w Azaziah|strong="H5812"\w*, \w with|strong="H5921"\w* \w harps|strong="H3658"\w* tuned \w to|strong="H5921"\w* \w the|strong="H5921"\w* eight-stringed \w lyre|strong="H3658"\w*, \w to|strong="H5921"\w* \w lead|strong="H5329"\w*. +\v 22 \w Chenaniah|strong="H3663"\w*, \w chief|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H3588"\w* \w Levites|strong="H3881"\w*, \w was|strong="H1931"\w* \w over|strong="H8269"\w* \w the|strong="H3588"\w* \w singing|strong="H4853"\w*. \w He|strong="H1931"\w* \w taught|strong="H3256"\w* \w the|strong="H3588"\w* singers, \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* skillful. +\v 23 \w Berechiah|strong="H1296"\w* \w and|strong="H1296"\w* Elkanah \w were|strong="H7778"\w* \w doorkeepers|strong="H7778"\w* for \w the|strong="H1296"\w* ark. +\v 24 \w Shebaniah|strong="H7645"\w*, \w Joshaphat|strong="H3146"\w*, \w Nethanel|strong="H5417"\w*, \w Amasai|strong="H6022"\w*, \w Zechariah|strong="H2148"\w*, \w Benaiah|strong="H1141"\w*, \w and|strong="H3548"\w* Eliezer, \w the|strong="H6440"\w* \w priests|strong="H3548"\w*, \w blew|strong="H2690"\w* \w the|strong="H6440"\w* \w trumpets|strong="H2689"\w* \w before|strong="H6440"\w* God’s ark; \w and|strong="H3548"\w* \w Obed-Edom|strong="H5654"\w* \w and|strong="H3548"\w* \w Jehiah|strong="H3174"\w* \w were|strong="H2690"\w* \w doorkeepers|strong="H7778"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* ark. +\p +\v 25 \w So|strong="H1980"\w* \w David|strong="H1732"\w*, \w the|strong="H3068"\w* \w elders|strong="H2205"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1980"\w* \w the|strong="H3068"\w* \w captains|strong="H8269"\w* \w over|strong="H8269"\w* thousands \w went|strong="H1980"\w* \w to|strong="H1980"\w* \w bring|strong="H5927"\w* \w the|strong="H3068"\w* ark \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w* \w up|strong="H5927"\w* \w out|strong="H4480"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Obed-Edom|strong="H5654"\w* \w with|strong="H1980"\w* \w joy|strong="H8057"\w*. +\v 26 \w When|strong="H1961"\w* \w God|strong="H3068"\w* \w helped|strong="H5826"\w* \w the|strong="H5375"\w* \w Levites|strong="H3881"\w* \w who|strong="H3068"\w* \w bore|strong="H5375"\w* \w the|strong="H5375"\w* ark \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w*, \w they|strong="H3068"\w* \w sacrificed|strong="H2076"\w* \w seven|strong="H7651"\w* \w bulls|strong="H6499"\w* \w and|strong="H3068"\w* \w seven|strong="H7651"\w* rams. +\v 27 \w David|strong="H1732"\w* \w was|strong="H1732"\w* \w clothed|strong="H3736"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w robe|strong="H4598"\w* \w of|strong="H8269"\w* fine linen, \w as|strong="H3605"\w* \w were|strong="H3881"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w who|strong="H3605"\w* \w bore|strong="H5375"\w* \w the|strong="H3605"\w* ark, \w the|strong="H3605"\w* \w singers|strong="H7891"\w*, \w and|strong="H1732"\w* \w Chenaniah|strong="H3663"\w* \w the|strong="H3605"\w* choir \w master|strong="H8269"\w* \w with|strong="H5921"\w* \w the|strong="H3605"\w* \w singers|strong="H7891"\w*; \w and|strong="H1732"\w* \w David|strong="H1732"\w* \w had|strong="H1732"\w* \w an|strong="H5375"\w* ephod \w of|strong="H8269"\w* linen \w on|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 28 \w Thus|strong="H8085"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w brought|strong="H5927"\w* \w the|strong="H3605"\w* ark \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w* \w up|strong="H5927"\w* \w with|strong="H3068"\w* \w shouting|strong="H8643"\w*, \w with|strong="H3068"\w* \w sound|strong="H6963"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w cornet|strong="H7782"\w*, \w with|strong="H3068"\w* \w trumpets|strong="H2689"\w*, \w and|strong="H3478"\w* \w with|strong="H3068"\w* \w cymbals|strong="H4700"\w*, \w sounding|strong="H8643"\w* \w aloud|strong="H6963"\w* \w with|strong="H3068"\w* stringed instruments \w and|strong="H3478"\w* \w harps|strong="H3658"\w*. +\v 29 \w As|strong="H5704"\w* \w the|strong="H7200"\w* ark \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w* \w came|strong="H1961"\w* \w to|strong="H5704"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*, \w Michal|strong="H4324"\w* \w the|strong="H7200"\w* \w daughter|strong="H1323"\w* \w of|strong="H4428"\w* \w Saul|strong="H7586"\w* \w looked|strong="H7200"\w* \w out|strong="H8259"\w* \w at|strong="H3068"\w* \w the|strong="H7200"\w* \w window|strong="H2474"\w*, \w and|strong="H3068"\w* \w saw|strong="H7200"\w* \w king|strong="H4428"\w* \w David|strong="H1732"\w* \w dancing|strong="H7540"\w* \w and|strong="H3068"\w* \w playing|strong="H7832"\w*; \w and|strong="H3068"\w* \w she|strong="H3820"\w* despised \w him|strong="H7200"\w* \w in|strong="H3068"\w* \w her|strong="H7200"\w* \w heart|strong="H3820"\w*. +\c 16 +\p +\v 1 \w They|strong="H6440"\w* \w brought|strong="H7126"\w* \w in|strong="H8432"\w* God’s ark, \w and|strong="H1732"\w* \w set|strong="H3322"\w* \w it|strong="H7126"\w* \w in|strong="H8432"\w* \w the|strong="H6440"\w* \w middle|strong="H8432"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* tent \w that|strong="H1732"\w* \w David|strong="H1732"\w* \w had|strong="H1732"\w* \w pitched|strong="H5186"\w* \w for|strong="H6440"\w* \w it|strong="H7126"\w*; \w and|strong="H1732"\w* \w they|strong="H6440"\w* \w offered|strong="H7126"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w* \w and|strong="H1732"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w before|strong="H6440"\w* God. +\v 2 \w When|strong="H3615"\w* \w David|strong="H1732"\w* \w had|strong="H3068"\w* \w finished|strong="H3615"\w* \w offering|strong="H5930"\w* \w the|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w he|strong="H3068"\w* \w blessed|strong="H1288"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*. +\v 3 \w He|strong="H5704"\w* gave \w to|strong="H5704"\w* \w everyone|strong="H3605"\w* \w of|strong="H3603"\w* \w Israel|strong="H3478"\w*, \w both|strong="H3605"\w* \w man|strong="H3605"\w* \w and|strong="H3478"\w* \w woman|strong="H2505"\w*, \w to|strong="H5704"\w* \w everyone|strong="H3605"\w* \w a|strong="H3068"\w* \w loaf|strong="H3603"\w* \w of|strong="H3603"\w* \w bread|strong="H3899"\w*, \w a|strong="H3068"\w* \w portion|strong="H2505"\w* \w of|strong="H3603"\w* \w meat|strong="H3899"\w*, \w and|strong="H3478"\w* \w a|strong="H3068"\w* \w cake|strong="H3603"\w* \w of|strong="H3603"\w* raisins. +\p +\v 4 \w He|strong="H3068"\w* \w appointed|strong="H5414"\w* \w some|strong="H4480"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w Levites|strong="H3881"\w* \w to|strong="H3478"\w* \w minister|strong="H8334"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*’s ark, \w and|strong="H3478"\w* \w to|strong="H3478"\w* commemorate, \w to|strong="H3478"\w* \w thank|strong="H3034"\w*, \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w praise|strong="H1984"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*: +\v 5 Asaph \w the|strong="H8085"\w* \w chief|strong="H7218"\w*, \w and|strong="H7218"\w* \w second|strong="H4932"\w* \w to|strong="H8085"\w* \w him|strong="H8085"\w* \w Zechariah|strong="H2148"\w*, \w then|strong="H8085"\w* \w Jeiel|strong="H3273"\w*, \w Shemiramoth|strong="H8070"\w*, \w Jehiel|strong="H3171"\w*, \w Mattithiah|strong="H4993"\w*, Eliab, \w Benaiah|strong="H1141"\w*, \w Obed-Edom|strong="H5654"\w*, \w and|strong="H7218"\w* \w Jeiel|strong="H3273"\w*, \w with|strong="H3627"\w* stringed \w instruments|strong="H3627"\w* \w and|strong="H7218"\w* \w with|strong="H3627"\w* \w harps|strong="H3658"\w*; \w and|strong="H7218"\w* Asaph \w with|strong="H3627"\w* \w cymbals|strong="H4700"\w*, \w sounding|strong="H8085"\w* \w aloud|strong="H8085"\w*; +\v 6 \w with|strong="H1285"\w* \w Benaiah|strong="H1141"\w* \w and|strong="H3548"\w* \w Jahaziel|strong="H3166"\w* \w the|strong="H6440"\w* \w priests|strong="H3548"\w* \w with|strong="H1285"\w* \w trumpets|strong="H2689"\w* \w continually|strong="H8548"\w*, \w before|strong="H6440"\w* \w the|strong="H6440"\w* ark \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w covenant|strong="H1285"\w* \w of|strong="H6440"\w* God. +\p +\v 7 \w Then|strong="H5414"\w* \w on|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w David|strong="H1732"\w* \w first|strong="H7218"\w* \w ordained|strong="H5414"\w* \w giving|strong="H5414"\w* \w of|strong="H3068"\w* \w thanks|strong="H3034"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w by|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* Asaph \w and|strong="H3068"\w* \w his|strong="H5414"\w* brothers. +\q1 +\v 8 Oh \w give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w Call|strong="H7121"\w* \w on|strong="H3068"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w*. +\q2 \w Make|strong="H3045"\w* \w what|strong="H3045"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w done|strong="H5949"\w* \w known|strong="H3045"\w* \w among|strong="H8034"\w* \w the|strong="H3068"\w* \w peoples|strong="H5971"\w*. +\q1 +\v 9 \w Sing|strong="H7891"\w* \w to|strong="H2167"\w* \w him|strong="H3605"\w*. +\q2 \w Sing|strong="H7891"\w* \w praises|strong="H2167"\w* \w to|strong="H2167"\w* \w him|strong="H3605"\w*. +\q2 \w Tell|strong="H3605"\w* \w of|strong="H3605"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w marvelous|strong="H6381"\w* \w works|strong="H6381"\w*. +\q1 +\v 10 \w Glory|strong="H1984"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w holy|strong="H6944"\w* \w name|strong="H8034"\w*. +\q2 \w Let|strong="H8055"\w* \w the|strong="H3068"\w* \w heart|strong="H3820"\w* \w of|strong="H3068"\w* those \w who|strong="H3068"\w* \w seek|strong="H1245"\w* \w Yahweh|strong="H3068"\w* \w rejoice|strong="H8055"\w*. +\q1 +\v 11 \w Seek|strong="H1245"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w strength|strong="H5797"\w*. +\q2 \w Seek|strong="H1245"\w* \w his|strong="H3068"\w* \w face|strong="H6440"\w* forever more. +\q1 +\v 12 \w Remember|strong="H2142"\w* \w his|strong="H2142"\w* \w marvelous|strong="H6381"\w* \w works|strong="H6381"\w* \w that|strong="H6213"\w* \w he|strong="H6213"\w* \w has|strong="H6213"\w* \w done|strong="H6213"\w*, +\q2 \w his|strong="H2142"\w* \w wonders|strong="H4159"\w*, \w and|strong="H4941"\w* \w the|strong="H6213"\w* \w judgments|strong="H4941"\w* \w of|strong="H6310"\w* \w his|strong="H2142"\w* \w mouth|strong="H6310"\w*, +\q1 +\v 13 \w you|strong="H3478"\w* \w offspring|strong="H2233"\w*\f + \fr 16:13 \ft or, seed\f* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w his|strong="H3478"\w* \w servant|strong="H5650"\w*, +\q2 \w you|strong="H3478"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Jacob|strong="H3290"\w*, \w his|strong="H3478"\w* chosen \w ones|strong="H1121"\w*. +\b +\q1 +\v 14 \w He|strong="H1931"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*. +\q2 \w His|strong="H3605"\w* \w judgments|strong="H4941"\w* \w are|strong="H3068"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth. +\q1 +\v 15 \w Remember|strong="H2142"\w* \w his|strong="H6680"\w* \w covenant|strong="H1285"\w* \w forever|strong="H5769"\w*, +\q2 \w the|strong="H6680"\w* \w word|strong="H1697"\w* \w which|strong="H1697"\w* \w he|strong="H1285"\w* \w commanded|strong="H6680"\w* \w to|strong="H1697"\w* \w a|strong="H3068"\w* thousand \w generations|strong="H1755"\w*, +\q2 +\v 16 \w the|strong="H3772"\w* covenant which \w he|strong="H3327"\w* \w made|strong="H3772"\w* \w with|strong="H3772"\w* Abraham, +\q2 \w his|strong="H3327"\w* \w oath|strong="H7621"\w* \w to|strong="H7621"\w* \w Isaac|strong="H3327"\w*. +\q1 +\v 17 \w He|strong="H3478"\w* \w confirmed|strong="H5975"\w* \w it|strong="H5975"\w* \w to|strong="H3478"\w* \w Jacob|strong="H3290"\w* \w for|strong="H2706"\w* \w a|strong="H3068"\w* \w statute|strong="H2706"\w*, +\q2 \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w* \w for|strong="H2706"\w* \w an|strong="H3478"\w* \w everlasting|strong="H5769"\w* \w covenant|strong="H1285"\w*, +\q1 +\v 18 saying, “\w I|strong="H5414"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w the|strong="H5414"\w* \w land|strong="H5159"\w* \w of|strong="H5159"\w* \w Canaan|strong="H3667"\w*, +\q2 \w The|strong="H5414"\w* \w lot|strong="H2256"\w* \w of|strong="H5159"\w* \w your|strong="H5414"\w* \w inheritance|strong="H5159"\w*,” +\q2 +\v 19 \w when|strong="H1961"\w* \w you|strong="H1961"\w* \w were|strong="H1961"\w* \w but|strong="H1961"\w* \w a|strong="H3068"\w* \w few|strong="H4592"\w* \w men|strong="H4962"\w* \w in|strong="H4962"\w* \w number|strong="H4557"\w*, +\q2 yes, \w very|strong="H4592"\w* \w few|strong="H4592"\w*, \w and|strong="H1961"\w* \w foreigners|strong="H1481"\w* \w in|strong="H4962"\w* \w it|strong="H1961"\w*. +\q1 +\v 20 \w They|strong="H5971"\w* \w went|strong="H1980"\w* \w about|strong="H1980"\w* \w from|strong="H1980"\w* \w nation|strong="H1471"\w* \w to|strong="H1980"\w* \w nation|strong="H1471"\w*, +\q2 \w from|strong="H1980"\w* one \w kingdom|strong="H4467"\w* \w to|strong="H1980"\w* another \w people|strong="H5971"\w*. +\q1 +\v 21 \w He|strong="H3808"\w* allowed \w no|strong="H3808"\w* man \w to|strong="H5921"\w* do \w them|strong="H5921"\w* \w wrong|strong="H6231"\w*. +\q2 Yes, \w he|strong="H3808"\w* \w reproved|strong="H3198"\w* \w kings|strong="H4428"\w* \w for|strong="H5921"\w* \w their|strong="H5921"\w* \w sakes|strong="H5921"\w*, +\q1 +\v 22 “Don’t \w touch|strong="H5060"\w* \w my|strong="H5060"\w* \w anointed|strong="H4899"\w* \w ones|strong="H4899"\w*! +\q2 \w Do|strong="H7489"\w* \w my|strong="H5060"\w* \w prophets|strong="H5030"\w* \w no|strong="H5060"\w* \w harm|strong="H7489"\w*!” +\b +\q1 +\v 23 \w Sing|strong="H7891"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth! +\q2 Display \w his|strong="H3605"\w* \w salvation|strong="H3444"\w* \w from|strong="H3117"\w* \w day|strong="H3117"\w* \w to|strong="H3068"\w* \w day|strong="H3117"\w*. +\q1 +\v 24 \w Declare|strong="H5608"\w* \w his|strong="H3605"\w* \w glory|strong="H3519"\w* \w among|strong="H6381"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*, +\q2 \w and|strong="H5971"\w* \w his|strong="H3605"\w* \w marvelous|strong="H6381"\w* \w works|strong="H6381"\w* \w among|strong="H6381"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w*. +\q1 +\v 25 \w For|strong="H3588"\w* \w great|strong="H1419"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w greatly|strong="H3966"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w praised|strong="H1984"\w*. +\q2 \w He|strong="H1931"\w* \w also|strong="H3068"\w* \w is|strong="H3068"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w feared|strong="H3372"\w* \w above|strong="H5921"\w* \w all|strong="H3605"\w* gods. +\q1 +\v 26 \w For|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* gods \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w are|strong="H5971"\w* idols, +\q2 \w but|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H6213"\w* \w the|strong="H3605"\w* \w heavens|strong="H8064"\w*. +\q1 +\v 27 \w Honor|strong="H1935"\w* \w and|strong="H6440"\w* \w majesty|strong="H1926"\w* \w are|strong="H6440"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\q2 \w Strength|strong="H5797"\w* \w and|strong="H6440"\w* \w gladness|strong="H2304"\w* \w are|strong="H6440"\w* \w in|strong="H6440"\w* \w his|strong="H6440"\w* \w place|strong="H4725"\w*. +\b +\q1 +\v 28 \w Ascribe|strong="H3051"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w you|strong="H5971"\w* \w families|strong="H4940"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w peoples|strong="H5971"\w*, +\q2 \w ascribe|strong="H3051"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w glory|strong="H3519"\w* \w and|strong="H3068"\w* \w strength|strong="H5797"\w*! +\q1 +\v 29 \w Ascribe|strong="H3051"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w the|strong="H6440"\w* \w glory|strong="H3519"\w* \w due|strong="H6440"\w* \w to|strong="H3068"\w* \w his|strong="H5375"\w* \w name|strong="H8034"\w*. +\q2 \w Bring|strong="H5375"\w* \w an|strong="H5375"\w* \w offering|strong="H4503"\w*, \w and|strong="H3068"\w* \w come|strong="H3051"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\q2 \w Worship|strong="H7812"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w holy|strong="H6944"\w* \w array|strong="H1927"\w*. +\q1 +\v 30 \w Tremble|strong="H2342"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth. +\q2 \w The|strong="H3605"\w* \w world|strong="H8398"\w* also \w is|strong="H3605"\w* \w established|strong="H3559"\w* \w that|strong="H3605"\w* \w it|strong="H3559"\w* can’t \w be|strong="H6440"\w* \w moved|strong="H4131"\w*. +\q1 +\v 31 \w Let|strong="H1523"\w* \w the|strong="H3068"\w* \w heavens|strong="H8064"\w* \w be|strong="H3068"\w* \w glad|strong="H1523"\w*, +\q2 \w and|strong="H3068"\w* \w let|strong="H1523"\w* \w the|strong="H3068"\w* \w earth|strong="H8064"\w* \w rejoice|strong="H1523"\w*! +\q2 \w Let|strong="H1523"\w* \w them|strong="H3068"\w* say among \w the|strong="H3068"\w* \w nations|strong="H1471"\w*, “\w Yahweh|strong="H3068"\w* \w reigns|strong="H4427"\w*!” +\q1 +\v 32 \w Let|strong="H7481"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w* \w roar|strong="H7481"\w*, \w and|strong="H7704"\w* \w its|strong="H3605"\w* \w fullness|strong="H4393"\w*! +\q2 \w Let|strong="H7481"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w exult|strong="H5970"\w*, \w and|strong="H7704"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w in|strong="H3220"\w* \w it|strong="H4393"\w*! +\q1 +\v 33 \w Then|strong="H3588"\w* \w the|strong="H6440"\w* \w trees|strong="H6086"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w forest|strong="H3293"\w* \w will|strong="H3068"\w* \w sing|strong="H7442"\w* \w for|strong="H3588"\w* \w joy|strong="H7442"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w comes|strong="H6440"\w* \w to|strong="H3068"\w* \w judge|strong="H8199"\w* \w the|strong="H6440"\w* earth. +\q1 +\v 34 Oh \w give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3068"\w* \w loving|strong="H2896"\w* \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*. +\q1 +\v 35 Say, “\w Save|strong="H3467"\w* \w us|strong="H5337"\w*, God \w of|strong="H8034"\w* \w our|strong="H5337"\w* \w salvation|strong="H3468"\w*! +\q2 \w Gather|strong="H6908"\w* \w us|strong="H5337"\w* \w together|strong="H6908"\w* \w and|strong="H1471"\w* \w deliver|strong="H5337"\w* \w us|strong="H5337"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w nations|strong="H1471"\w*, +\q2 \w to|strong="H1471"\w* \w give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H1471"\w* \w your|strong="H4480"\w* \w holy|strong="H6944"\w* \w name|strong="H8034"\w*, +\q2 \w to|strong="H1471"\w* \w triumph|strong="H7623"\w* \w in|strong="H8034"\w* \w your|strong="H4480"\w* \w praise|strong="H8416"\w*.” +\q1 +\v 36 \w Blessed|strong="H1288"\w* \w be|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, +\q2 \w from|strong="H4480"\w* \w everlasting|strong="H5769"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w everlasting|strong="H5769"\w*. +\p \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* said, “Amen,” \w and|strong="H3478"\w* \w praised|strong="H1984"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 37 \w So|strong="H1697"\w* \w he|strong="H3117"\w* \w left|strong="H5800"\w* Asaph \w and|strong="H3068"\w* \w his|strong="H3068"\w* brothers \w there|strong="H8033"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* ark \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w*, \w to|strong="H3068"\w* \w minister|strong="H8334"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* ark \w continually|strong="H8548"\w*, \w as|strong="H1697"\w* \w every|strong="H3117"\w* \w day|strong="H3117"\w*’s \w work|strong="H1697"\w* \w required|strong="H3117"\w*; +\v 38 \w and|strong="H1121"\w* \w Obed-Edom|strong="H5654"\w* \w with|strong="H5654"\w* their sixty-eight \w relatives|strong="H1121"\w*; \w Obed-Edom|strong="H5654"\w* \w also|strong="H1121"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeduthun|strong="H3038"\w* \w and|strong="H1121"\w* \w Hosah|strong="H2621"\w* \w to|strong="H1121"\w* \w be|strong="H1121"\w* \w doorkeepers|strong="H7778"\w*; +\v 39 \w and|strong="H3068"\w* \w Zadok|strong="H6659"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w* \w and|strong="H3068"\w* \w his|strong="H3068"\w* brothers \w the|strong="H6440"\w* \w priests|strong="H3548"\w*, \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*’s \w tabernacle|strong="H4908"\w* \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w high|strong="H1116"\w* \w place|strong="H1116"\w* \w that|strong="H3068"\w* \w was|strong="H3068"\w* \w at|strong="H3068"\w* \w Gibeon|strong="H1391"\w*, +\v 40 \w to|strong="H3478"\w* \w offer|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w of|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w continually|strong="H8548"\w* \w morning|strong="H1242"\w* \w and|strong="H3478"\w* \w evening|strong="H6153"\w*, \w even|strong="H6153"\w* \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3068"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w law|strong="H8451"\w*, \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w commanded|strong="H6680"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w*; +\v 41 \w and|strong="H3068"\w* \w with|strong="H5973"\w* \w them|strong="H3588"\w* \w Heman|strong="H1968"\w* \w and|strong="H3068"\w* \w Jeduthun|strong="H3038"\w* \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w rest|strong="H7605"\w* \w who|strong="H3068"\w* \w were|strong="H3068"\w* \w chosen|strong="H1305"\w*, \w who|strong="H3068"\w* \w were|strong="H3068"\w* mentioned \w by|strong="H3068"\w* \w name|strong="H8034"\w*, \w to|strong="H3068"\w* \w give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w because|strong="H3588"\w* \w his|strong="H3068"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\v 42 \w and|strong="H1121"\w* \w with|strong="H5973"\w* \w them|strong="H8085"\w* \w Heman|strong="H1968"\w* \w and|strong="H1121"\w* \w Jeduthun|strong="H3038"\w* \w with|strong="H5973"\w* \w trumpets|strong="H2689"\w* \w and|strong="H1121"\w* \w cymbals|strong="H4700"\w* \w for|strong="H1121"\w* \w those|strong="H8085"\w* \w that|strong="H8085"\w* should \w sound|strong="H8085"\w* \w aloud|strong="H8085"\w*, \w and|strong="H1121"\w* \w with|strong="H5973"\w* \w instruments|strong="H3627"\w* \w for|strong="H1121"\w* \w the|strong="H8085"\w* \w songs|strong="H7892"\w* \w of|strong="H1121"\w* God, \w and|strong="H1121"\w* \w the|strong="H8085"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeduthun|strong="H3038"\w* \w to|strong="H8085"\w* \w be|strong="H1121"\w* \w at|strong="H1121"\w* \w the|strong="H8085"\w* \w gate|strong="H8179"\w*. +\v 43 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w departed|strong="H3212"\w*, \w each|strong="H3605"\w* \w man|strong="H3605"\w* \w to|strong="H3212"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*; \w and|strong="H1004"\w* \w David|strong="H1732"\w* \w returned|strong="H5437"\w* \w to|strong="H3212"\w* \w bless|strong="H1288"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*. +\c 17 +\p +\v 1 \w When|strong="H1961"\w* \w David|strong="H1732"\w* \w was|strong="H3068"\w* \w living|strong="H3427"\w* \w in|strong="H3427"\w* \w his|strong="H3068"\w* \w house|strong="H1004"\w*, \w David|strong="H1732"\w* said \w to|strong="H3068"\w* \w Nathan|strong="H5416"\w* \w the|strong="H3068"\w* \w prophet|strong="H5030"\w*, “\w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w live|strong="H3427"\w* \w in|strong="H3427"\w* \w a|strong="H3068"\w* cedar \w house|strong="H1004"\w*, \w but|strong="H1961"\w* \w the|strong="H3068"\w* ark \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w* \w is|strong="H3068"\w* \w in|strong="H3427"\w* \w a|strong="H3068"\w* \w tent|strong="H3407"\w*.” +\p +\v 2 \w Nathan|strong="H5416"\w* said \w to|strong="H6213"\w* \w David|strong="H1732"\w*, “\w Do|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w is|strong="H3605"\w* \w in|strong="H6213"\w* \w your|strong="H3605"\w* \w heart|strong="H3824"\w*; \w for|strong="H3588"\w* God \w is|strong="H3605"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*.” +\p +\v 3 \w That|strong="H1931"\w* \w same|strong="H1931"\w* \w night|strong="H3915"\w*, \w the|strong="H1697"\w* \w word|strong="H1697"\w* \w of|strong="H1697"\w* God \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w Nathan|strong="H5416"\w*, \w saying|strong="H1697"\w*, +\v 4 “\w Go|strong="H3212"\w* \w and|strong="H3068"\w* tell \w David|strong="H1732"\w* \w my|strong="H3068"\w* \w servant|strong="H5650"\w*, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w You|strong="H3808"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w build|strong="H1129"\w* \w me|strong="H5650"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w to|strong="H3212"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w*; +\v 5 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w since|strong="H3588"\w* \w the|strong="H3588"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w Israel|strong="H3478"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, \w but|strong="H3588"\w* \w have|strong="H1961"\w* \w gone|strong="H5927"\w* \w from|strong="H4480"\w* tent \w to|strong="H5704"\w* tent, \w and|strong="H3478"\w* \w from|strong="H4480"\w* \w one|strong="H2088"\w* tent \w to|strong="H5704"\w* \w another|strong="H2088"\w*. +\v 6 \w In|strong="H1980"\w* \w all|strong="H3605"\w* \w places|strong="H1004"\w* \w in|strong="H1980"\w* \w which|strong="H1697"\w* \w I|strong="H1697"\w* \w have|strong="H5971"\w* \w walked|strong="H1980"\w* \w with|strong="H1980"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w did|strong="H4100"\w* \w I|strong="H1697"\w* \w speak|strong="H1696"\w* \w a|strong="H3068"\w* \w word|strong="H1697"\w* \w with|strong="H1980"\w* \w any|strong="H3605"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w judges|strong="H8199"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w whom|strong="H5971"\w* \w I|strong="H1697"\w* \w commanded|strong="H6680"\w* \w to|strong="H1696"\w* \w be|strong="H3808"\w* \w shepherd|strong="H7462"\w* \w of|strong="H1004"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w*, \w saying|strong="H1697"\w*, ‘\w Why|strong="H4100"\w* \w have|strong="H5971"\w* \w you|strong="H6680"\w* \w not|strong="H3808"\w* \w built|strong="H1129"\w* \w me|strong="H1696"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* cedar?’”’ +\p +\v 7 “\w Now|strong="H6258"\w* \w therefore|strong="H5921"\w*, \w you|strong="H5921"\w* \w shall|strong="H3068"\w* tell \w my|strong="H3068"\w* \w servant|strong="H5650"\w* \w David|strong="H1732"\w*, ‘\w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*, “\w I|strong="H3541"\w* \w took|strong="H3947"\w* \w you|strong="H5921"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* \w sheep|strong="H6629"\w* pen, \w from|strong="H4480"\w* following \w the|strong="H5921"\w* \w sheep|strong="H6629"\w*, \w to|strong="H3478"\w* \w be|strong="H1961"\w* \w prince|strong="H5057"\w* \w over|strong="H5921"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*. +\v 8 \w I|strong="H1980"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H6440"\w* \w wherever|strong="H3605"\w* \w you|strong="H6440"\w* \w have|strong="H1961"\w* \w gone|strong="H1980"\w*, \w and|strong="H1980"\w* \w have|strong="H1961"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* enemies \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*. \w I|strong="H1980"\w* \w will|strong="H1961"\w* \w make|strong="H6213"\w* \w you|strong="H6440"\w* \w a|strong="H3068"\w* \w name|strong="H8034"\w* \w like|strong="H1961"\w* \w the|strong="H3605"\w* \w name|strong="H8034"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w great|strong="H1419"\w* \w ones|strong="H1419"\w* \w who|strong="H3605"\w* \w are|strong="H6213"\w* \w in|strong="H1980"\w* \w the|strong="H3605"\w* earth. +\v 9 \w I|strong="H7760"\w* \w will|strong="H5971"\w* \w appoint|strong="H7760"\w* \w a|strong="H3068"\w* \w place|strong="H4725"\w* \w for|strong="H8478"\w* \w my|strong="H7760"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w will|strong="H5971"\w* \w plant|strong="H5193"\w* \w them|strong="H7760"\w*, \w that|strong="H5971"\w* \w they|strong="H3808"\w* \w may|strong="H5971"\w* \w dwell|strong="H7931"\w* \w in|strong="H3478"\w* \w their|strong="H7760"\w* \w own|strong="H5971"\w* \w place|strong="H4725"\w*, \w and|strong="H1121"\w* \w be|strong="H3808"\w* \w moved|strong="H7264"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w*. \w The|strong="H7760"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w wickedness|strong="H5766"\w* \w will|strong="H5971"\w* \w not|strong="H3808"\w* \w waste|strong="H1086"\w* \w them|strong="H7760"\w* \w any|strong="H5750"\w* \w more|strong="H3254"\w*, \w as|strong="H5971"\w* \w at|strong="H3478"\w* \w the|strong="H7760"\w* \w first|strong="H7223"\w*, +\v 10 \w and|strong="H3478"\w* \w from|strong="H5921"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H5971"\w* \w I|strong="H3117"\w* \w commanded|strong="H6680"\w* \w judges|strong="H8199"\w* \w to|strong="H3478"\w* \w be|strong="H3068"\w* \w over|strong="H5921"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*. \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w subdue|strong="H3665"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* enemies. Moreover \w I|strong="H3117"\w* \w tell|strong="H5046"\w* \w you|strong="H6680"\w* \w that|strong="H5971"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w build|strong="H1129"\w* \w you|strong="H6680"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w*. +\v 11 \w It|strong="H3588"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w*, \w when|strong="H3588"\w* \w your|strong="H3588"\w* \w days|strong="H3117"\w* \w are|strong="H3117"\w* \w fulfilled|strong="H4390"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w must|strong="H1121"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w your|strong="H3588"\w* fathers, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w set|strong="H6965"\w* \w up|strong="H6965"\w* \w your|strong="H3588"\w* \w offspring|strong="H2233"\w* \w after|strong="H2233"\w* \w you|strong="H3588"\w*, \w who|strong="H1121"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w of|strong="H1121"\w* \w your|strong="H3588"\w* \w sons|strong="H1121"\w*; \w and|strong="H1121"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w establish|strong="H6965"\w* \w his|strong="H3559"\w* \w kingdom|strong="H4438"\w*. +\v 12 \w He|strong="H1931"\w* \w will|strong="H1004"\w* \w build|strong="H1129"\w* \w me|strong="H3559"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w*, \w and|strong="H1004"\w* \w I|strong="H5704"\w* \w will|strong="H1004"\w* \w establish|strong="H3559"\w* \w his|strong="H3559"\w* \w throne|strong="H3678"\w* \w forever|strong="H5769"\w*. +\v 13 \w I|strong="H3808"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w his|strong="H6440"\w* \w father|strong="H1121"\w*, \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w my|strong="H1961"\w* \w son|strong="H1121"\w*. \w I|strong="H3808"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w take|strong="H5493"\w* \w my|strong="H1961"\w* loving \w kindness|strong="H2617"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* \w him|strong="H6440"\w*, \w as|strong="H1961"\w* \w I|strong="H3808"\w* \w took|strong="H5493"\w* \w it|strong="H1931"\w* \w from|strong="H5493"\w* \w him|strong="H6440"\w* \w who|strong="H1931"\w* \w was|strong="H1961"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*; +\v 14 \w but|strong="H1961"\w* \w I|strong="H5704"\w* \w will|strong="H1961"\w* \w settle|strong="H5975"\w* \w him|strong="H5975"\w* \w in|strong="H1004"\w* \w my|strong="H1961"\w* \w house|strong="H1004"\w* \w and|strong="H1004"\w* \w in|strong="H1004"\w* \w my|strong="H1961"\w* \w kingdom|strong="H4438"\w* \w forever|strong="H5769"\w*. \w His|strong="H3559"\w* \w throne|strong="H3678"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w established|strong="H3559"\w* \w forever|strong="H5769"\w*.”’” +\v 15 According \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w these|strong="H2088"\w* \w words|strong="H1697"\w*, \w and|strong="H1732"\w* according \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w this|strong="H2088"\w* \w vision|strong="H2377"\w*, \w so|strong="H3651"\w* \w Nathan|strong="H5416"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w David|strong="H1732"\w*. +\p +\v 16 \w Then|strong="H4428"\w* \w David|strong="H1732"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w went|strong="H1732"\w* \w in|strong="H3427"\w* \w and|strong="H3068"\w* \w sat|strong="H3427"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H3068"\w* \w he|strong="H3588"\w* said, “\w Who|strong="H4310"\w* \w am|strong="H3068"\w* \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w what|strong="H4310"\w* \w is|strong="H3068"\w* \w my|strong="H3068"\w* \w house|strong="H1004"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w brought|strong="H3068"\w* \w me|strong="H6440"\w* \w this|strong="H3588"\w* \w far|strong="H5704"\w*? +\v 17 \w This|strong="H2063"\w* \w was|strong="H3068"\w* \w a|strong="H3068"\w* \w small|strong="H6994"\w* \w thing|strong="H6994"\w* \w in|strong="H5921"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w*, \w O|strong="H3068"\w* \w God|strong="H3068"\w*, \w but|strong="H7200"\w* \w you|strong="H5921"\w* \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w of|strong="H1004"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w*’s \w house|strong="H1004"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w great|strong="H7350"\w* \w while|strong="H5921"\w* \w to|strong="H1696"\w* \w come|strong="H7350"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w respected|strong="H5869"\w* \w me|strong="H7200"\w* \w according|strong="H5921"\w* \w to|strong="H1696"\w* \w the|strong="H5921"\w* standard \w of|strong="H1004"\w* \w a|strong="H3068"\w* \w man|strong="H7200"\w* \w of|strong="H1004"\w* \w high|strong="H4609"\w* \w degree|strong="H4609"\w*, \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 18 \w What|strong="H4100"\w* \w can|strong="H4100"\w* \w David|strong="H1732"\w* \w say|strong="H3254"\w* \w yet|strong="H5750"\w* \w more|strong="H3254"\w* \w to|strong="H1732"\w* \w you|strong="H3045"\w* concerning \w the|strong="H3045"\w* \w honor|strong="H3519"\w* \w which|strong="H4100"\w* \w is|strong="H4100"\w* \w done|strong="H3254"\w* \w to|strong="H1732"\w* \w your|strong="H3045"\w* \w servant|strong="H5650"\w*? \w For|strong="H5650"\w* \w you|strong="H3045"\w* \w know|strong="H3045"\w* \w your|strong="H3045"\w* \w servant|strong="H5650"\w*. +\v 19 \w Yahweh|strong="H3068"\w*, \w for|strong="H6213"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w*’s \w sake|strong="H5668"\w*, \w and|strong="H3068"\w* according \w to|strong="H3068"\w* \w your|strong="H3068"\w* own \w heart|strong="H3820"\w*, \w you|strong="H3605"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w greatness|strong="H1420"\w*, \w to|strong="H3068"\w* \w make|strong="H6213"\w* \w known|strong="H3045"\w* \w all|strong="H3605"\w* \w these|strong="H2063"\w* \w great|strong="H6213"\w* \w things|strong="H3605"\w*. +\v 20 \w Yahweh|strong="H3068"\w*, \w there|strong="H3605"\w* \w is|strong="H3068"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w like|strong="H3644"\w* \w you|strong="H3605"\w*, neither \w is|strong="H3068"\w* \w there|strong="H3605"\w* \w any|strong="H3605"\w* \w God|strong="H3068"\w* \w besides|strong="H2108"\w* \w you|strong="H3605"\w*, \w according|strong="H3644"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w with|strong="H3068"\w* \w our|strong="H3068"\w* ears. +\v 21 \w What|strong="H4310"\w* \w one|strong="H4310"\w* \w nation|strong="H1471"\w* \w in|strong="H1980"\w* \w the|strong="H6440"\w* earth \w is|strong="H4310"\w* \w like|strong="H3478"\w* \w your|strong="H7760"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w whom|strong="H4310"\w* \w God|strong="H4310"\w* \w went|strong="H1980"\w* \w to|strong="H1980"\w* \w redeem|strong="H6299"\w* \w to|strong="H1980"\w* \w himself|strong="H6440"\w* \w for|strong="H6440"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w*, \w to|strong="H1980"\w* \w make|strong="H7760"\w* \w you|strong="H6440"\w* \w a|strong="H3068"\w* \w name|strong="H8034"\w* \w by|strong="H3478"\w* \w great|strong="H1420"\w* \w and|strong="H1980"\w* \w awesome|strong="H3372"\w* \w things|strong="H3372"\w*, \w in|strong="H1980"\w* \w driving|strong="H1644"\w* \w out|strong="H1644"\w* \w nations|strong="H1471"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w your|strong="H7760"\w* \w people|strong="H5971"\w* \w whom|strong="H4310"\w* \w you|strong="H6440"\w* \w redeemed|strong="H6299"\w* \w out|strong="H1644"\w* \w of|strong="H6440"\w* \w Egypt|strong="H4714"\w*? +\v 22 \w For|strong="H5704"\w* \w you|strong="H5414"\w* \w made|strong="H5414"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w* \w your|strong="H3068"\w* \w own|strong="H1961"\w* \w people|strong="H5971"\w* \w forever|strong="H5769"\w*; \w and|strong="H3478"\w* \w you|strong="H5414"\w*, \w Yahweh|strong="H3068"\w*, \w became|strong="H1961"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 23 \w Now|strong="H6258"\w*, \w Yahweh|strong="H3068"\w*, \w let|strong="H6258"\w* \w the|strong="H5921"\w* \w word|strong="H1697"\w* \w that|strong="H3068"\w* \w you|strong="H5921"\w* \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w concerning|strong="H5921"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w*, \w and|strong="H3068"\w* \w concerning|strong="H5921"\w* \w his|strong="H3068"\w* \w house|strong="H1004"\w*, \w be|strong="H1697"\w* \w established|strong="H6213"\w* \w forever|strong="H5769"\w*, \w and|strong="H3068"\w* \w do|strong="H6213"\w* \w as|strong="H5704"\w* \w you|strong="H5921"\w* \w have|strong="H3068"\w* \w spoken|strong="H1696"\w*. +\v 24 Let \w your|strong="H3068"\w* \w name|strong="H8034"\w* \w be|strong="H3068"\w* \w established|strong="H3559"\w* \w and|strong="H3478"\w* \w magnified|strong="H1431"\w* \w forever|strong="H5769"\w*, saying, ‘\w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w* \w is|strong="H3068"\w* \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w even|strong="H5704"\w* \w a|strong="H3068"\w* \w God|strong="H3068"\w* \w to|strong="H5704"\w* \w Israel|strong="H3478"\w*. \w The|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w David|strong="H1732"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w is|strong="H3068"\w* \w established|strong="H3559"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*.’ +\v 25 \w For|strong="H3588"\w* \w you|strong="H3588"\w*, \w my|strong="H5921"\w* God, \w have|strong="H5650"\w* \w revealed|strong="H1540"\w* \w to|strong="H5921"\w* \w your|strong="H5921"\w* \w servant|strong="H5650"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H5650"\w* \w build|strong="H1129"\w* \w him|strong="H6440"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w*. \w Therefore|strong="H3651"\w* \w your|strong="H5921"\w* \w servant|strong="H5650"\w* \w has|strong="H5650"\w* \w found|strong="H4672"\w* courage \w to|strong="H5921"\w* \w pray|strong="H6419"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*. +\v 26 \w Now|strong="H6258"\w*, \w Yahweh|strong="H3068"\w*, \w you|strong="H5921"\w* \w are|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w promised|strong="H1696"\w* \w this|strong="H2063"\w* \w good|strong="H2896"\w* \w thing|strong="H2063"\w* \w to|strong="H1696"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w*. +\v 27 \w Now|strong="H6258"\w* \w it|strong="H3588"\w* \w has|strong="H3068"\w* \w pleased|strong="H2974"\w* \w you|strong="H3588"\w* \w to|strong="H3068"\w* \w bless|strong="H1288"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w*, \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w may|strong="H1961"\w* \w continue|strong="H1961"\w* \w forever|strong="H5769"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H1961"\w* \w blessed|strong="H1288"\w*, \w and|strong="H3068"\w* \w it|strong="H3588"\w* \w is|strong="H3068"\w* \w blessed|strong="H1288"\w* \w forever|strong="H5769"\w*.” +\c 18 +\p +\v 1 \w After|strong="H1961"\w* \w this|strong="H3651"\w*, \w David|strong="H1732"\w* \w defeated|strong="H5221"\w* \w the|strong="H3947"\w* \w Philistines|strong="H6430"\w* \w and|strong="H3027"\w* \w subdued|strong="H3665"\w* \w them|strong="H5221"\w*, \w and|strong="H3027"\w* \w took|strong="H3947"\w* \w Gath|strong="H1661"\w* \w and|strong="H3027"\w* \w its|strong="H1961"\w* \w towns|strong="H1323"\w* \w out|strong="H3947"\w* \w of|strong="H1323"\w* \w the|strong="H3947"\w* \w hand|strong="H3027"\w* \w of|strong="H1323"\w* \w the|strong="H3947"\w* \w Philistines|strong="H6430"\w*. +\v 2 \w He|strong="H1732"\w* \w defeated|strong="H5221"\w* \w Moab|strong="H4124"\w*; \w and|strong="H5650"\w* \w the|strong="H5221"\w* \w Moabites|strong="H4124"\w* \w became|strong="H1961"\w* \w servants|strong="H5650"\w* \w to|strong="H1961"\w* \w David|strong="H1732"\w* \w and|strong="H5650"\w* \w brought|strong="H5375"\w* \w tribute|strong="H4503"\w*. +\p +\v 3 \w David|strong="H1732"\w* \w defeated|strong="H5221"\w* \w Hadadezer|strong="H1909"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Zobah|strong="H6678"\w*, \w toward|strong="H3027"\w* \w Hamath|strong="H2574"\w*, \w as|strong="H2574"\w* \w he|strong="H1732"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w establish|strong="H5324"\w* \w his|strong="H1732"\w* \w dominion|strong="H3027"\w* \w by|strong="H3027"\w* \w the|strong="H5221"\w* \w river|strong="H5104"\w* \w Euphrates|strong="H6578"\w*. +\v 4 \w David|strong="H1732"\w* \w took|strong="H3920"\w* \w from|strong="H4480"\w* \w him|strong="H3605"\w* \w one|strong="H3605"\w* thousand \w chariots|strong="H7393"\w*, \w seven|strong="H7651"\w* thousand \w horsemen|strong="H6571"\w*, \w and|strong="H3967"\w* \w twenty|strong="H6242"\w* thousand \w footmen|strong="H7273"\w*; \w and|strong="H3967"\w* \w David|strong="H1732"\w* hamstrung \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w chariot|strong="H7393"\w* \w horses|strong="H6571"\w*, \w but|strong="H3498"\w* \w reserved|strong="H3498"\w* \w of|strong="H4480"\w* \w them|strong="H4480"\w* \w enough|strong="H3605"\w* \w for|strong="H3605"\w* \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* \w chariots|strong="H7393"\w*. +\v 5 When \w the|strong="H5221"\w* Syrians \w of|strong="H4428"\w* \w Damascus|strong="H1834"\w* \w came|strong="H4428"\w* \w to|strong="H4428"\w* \w help|strong="H5826"\w* \w Hadadezer|strong="H1909"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Zobah|strong="H6678"\w*, \w David|strong="H1732"\w* \w struck|strong="H5221"\w* \w twenty-two|strong="H6242"\w* thousand \w men|strong="H8147"\w* \w of|strong="H4428"\w* \w the|strong="H5221"\w* Syrians. +\v 6 \w Then|strong="H1961"\w* \w David|strong="H1732"\w* \w put|strong="H7760"\w* garrisons \w in|strong="H1980"\w* Syria \w of|strong="H3068"\w* \w Damascus|strong="H1834"\w*; \w and|strong="H1980"\w* \w the|strong="H3605"\w* Syrians \w became|strong="H1961"\w* \w servants|strong="H5650"\w* \w to|strong="H1980"\w* \w David|strong="H1732"\w* \w and|strong="H1980"\w* \w brought|strong="H5375"\w* \w tribute|strong="H4503"\w*. \w Yahweh|strong="H3068"\w* \w gave|strong="H7760"\w* \w victory|strong="H3467"\w* \w to|strong="H1980"\w* \w David|strong="H1732"\w* \w wherever|strong="H3605"\w* \w he|strong="H3068"\w* \w went|strong="H1980"\w*. +\v 7 \w David|strong="H1732"\w* \w took|strong="H3947"\w* \w the|strong="H5921"\w* \w shields|strong="H7982"\w* \w of|strong="H5650"\w* \w gold|strong="H2091"\w* \w that|strong="H1732"\w* \w were|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w servants|strong="H5650"\w* \w of|strong="H5650"\w* \w Hadadezer|strong="H1909"\w*, \w and|strong="H2091"\w* \w brought|strong="H3947"\w* \w them|strong="H5921"\w* \w to|strong="H1961"\w* \w Jerusalem|strong="H3389"\w*. +\v 8 \w From|strong="H3947"\w* \w Tibhath|strong="H2880"\w* \w and|strong="H5892"\w* \w from|strong="H3947"\w* \w Cun|strong="H3560"\w*, \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w Hadadezer|strong="H1909"\w*, \w David|strong="H1732"\w* \w took|strong="H3947"\w* \w very|strong="H3966"\w* \w much|strong="H7227"\w* \w bronze|strong="H5178"\w*, \w with|strong="H6213"\w* \w which|strong="H5892"\w* \w Solomon|strong="H8010"\w* \w made|strong="H6213"\w* \w the|strong="H3947"\w* \w bronze|strong="H5178"\w* \w sea|strong="H3220"\w*, \w the|strong="H3947"\w* \w pillars|strong="H5982"\w*, \w and|strong="H5892"\w* \w the|strong="H3947"\w* \w vessels|strong="H3627"\w* \w of|strong="H5892"\w* \w bronze|strong="H5178"\w*. +\p +\v 9 \w When|strong="H3588"\w* \w Tou|strong="H8583"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Hamath|strong="H2574"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w David|strong="H1732"\w* \w had|strong="H1732"\w* \w struck|strong="H5221"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H2426"\w* \w of|strong="H4428"\w* \w Hadadezer|strong="H1909"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Zobah|strong="H6678"\w*, +\v 10 \w he|strong="H3588"\w* \w sent|strong="H7971"\w* \w Hadoram|strong="H1913"\w* \w his|strong="H3605"\w* \w son|strong="H1121"\w* \w to|strong="H7971"\w* \w King|strong="H4428"\w* \w David|strong="H1732"\w* \w to|strong="H7971"\w* \w greet|strong="H7592"\w* \w him|strong="H5921"\w* \w and|strong="H1121"\w* \w to|strong="H7971"\w* \w bless|strong="H1288"\w* \w him|strong="H5921"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H1961"\w* \w fought|strong="H3898"\w* \w against|strong="H5921"\w* \w Hadadezer|strong="H1909"\w* \w and|strong="H1121"\w* \w struck|strong="H5221"\w* \w him|strong="H5921"\w* (\w for|strong="H3588"\w* \w Hadadezer|strong="H1909"\w* \w had|strong="H1961"\w* \w wars|strong="H4421"\w* \w with|strong="H5921"\w* \w Tou|strong="H8583"\w*); \w and|strong="H1121"\w* \w he|strong="H3588"\w* \w had|strong="H1961"\w* \w with|strong="H5921"\w* \w him|strong="H5921"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H1121"\w* \w vessels|strong="H3627"\w* \w of|strong="H1121"\w* \w gold|strong="H2091"\w* \w and|strong="H1121"\w* \w silver|strong="H3701"\w* \w and|strong="H1121"\w* \w bronze|strong="H5178"\w*. +\v 11 \w King|strong="H4428"\w* \w David|strong="H1732"\w* \w also|strong="H1571"\w* \w dedicated|strong="H6942"\w* \w these|strong="H3605"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w silver|strong="H3701"\w* \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w gold|strong="H2091"\w* \w that|strong="H3605"\w* \w he|strong="H3068"\w* \w carried|strong="H5375"\w* \w away|strong="H5375"\w* \w from|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*: \w from|strong="H1121"\w* Edom, \w from|strong="H1121"\w* \w Moab|strong="H4124"\w*, \w from|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, \w from|strong="H1121"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H1121"\w* \w from|strong="H1121"\w* \w Amalek|strong="H6002"\w*. +\p +\v 12 Moreover Abishai \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w* \w struck|strong="H5221"\w* \w eighteen|strong="H8083"\w* thousand \w of|strong="H1121"\w* \w the|strong="H5221"\w* Edomites \w in|strong="H1121"\w* \w the|strong="H5221"\w* \w Valley|strong="H1516"\w* \w of|strong="H1121"\w* \w Salt|strong="H4417"\w*. +\v 13 \w He|strong="H3068"\w* \w put|strong="H7760"\w* \w garrisons|strong="H5333"\w* \w in|strong="H1980"\w* Edom; \w and|strong="H1980"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* Edomites \w became|strong="H1961"\w* \w servants|strong="H5650"\w* \w to|strong="H1980"\w* \w David|strong="H1732"\w*. \w Yahweh|strong="H3068"\w* \w gave|strong="H7760"\w* \w victory|strong="H3467"\w* \w to|strong="H1980"\w* \w David|strong="H1732"\w* \w wherever|strong="H3605"\w* \w he|strong="H3068"\w* \w went|strong="H1980"\w*. +\p +\v 14 \w David|strong="H1732"\w* \w reigned|strong="H4427"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w he|strong="H6213"\w* \w executed|strong="H6213"\w* \w justice|strong="H4941"\w* \w and|strong="H3478"\w* \w righteousness|strong="H6666"\w* \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*. +\v 15 \w Joab|strong="H3097"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w* \w was|strong="H1121"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w army|strong="H6635"\w*; \w Jehoshaphat|strong="H3092"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahilud \w was|strong="H1121"\w* \w recorder|strong="H2142"\w*; +\v 16 \w Zadok|strong="H6659"\w* \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahitub \w and|strong="H1121"\w* Abimelech \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Abiathar \w were|strong="H1121"\w* \w priests|strong="H3548"\w*; \w Shavsha|strong="H7798"\w* \w was|strong="H1121"\w* \w scribe|strong="H5608"\w*; +\v 17 \w and|strong="H1121"\w* \w Benaiah|strong="H1141"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w* \w was|strong="H1732"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w Cherethites|strong="H3774"\w* \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w Pelethites|strong="H6432"\w*; \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w* \w were|strong="H1121"\w* \w chief|strong="H7223"\w* officials serving \w the|strong="H5921"\w* \w king|strong="H4428"\w*. +\c 19 +\p +\v 1 \w After|strong="H1961"\w* \w this|strong="H3651"\w*, \w Nahash|strong="H5176"\w* \w the|strong="H8478"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H8478"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w died|strong="H4191"\w*, \w and|strong="H1121"\w* \w his|strong="H1961"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H4428"\w* \w his|strong="H1961"\w* \w place|strong="H8478"\w*. +\v 2 \w David|strong="H1732"\w* said, “\w I|strong="H3588"\w* \w will|strong="H5650"\w* \w show|strong="H6213"\w* \w kindness|strong="H2617"\w* \w to|strong="H7971"\w* \w Hanun|strong="H2586"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nahash|strong="H5176"\w*, \w because|strong="H3588"\w* \w his|strong="H7971"\w* \w father|strong="H1121"\w* \w showed|strong="H6213"\w* \w kindness|strong="H2617"\w* \w to|strong="H7971"\w* \w me|strong="H7971"\w*.” +\p \w So|strong="H6213"\w* \w David|strong="H1732"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H7971"\w* \w comfort|strong="H5162"\w* \w him|strong="H5921"\w* \w concerning|strong="H5921"\w* \w his|strong="H7971"\w* \w father|strong="H1121"\w*. \w David|strong="H1732"\w*’s \w servants|strong="H5650"\w* \w came|strong="H5983"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w to|strong="H7971"\w* \w Hanun|strong="H2586"\w* \w to|strong="H7971"\w* \w comfort|strong="H5162"\w* \w him|strong="H5921"\w*. +\v 3 \w But|strong="H3588"\w* \w the|strong="H3588"\w* \w princes|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* said \w to|strong="H7971"\w* \w Hanun|strong="H2586"\w*, “\w Do|strong="H5869"\w* \w you|strong="H3588"\w* \w think|strong="H5869"\w* \w that|strong="H3588"\w* \w David|strong="H1732"\w* \w honors|strong="H3513"\w* \w your|strong="H3588"\w* \w father|strong="H1121"\w*, \w in|strong="H1121"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H5650"\w* \w sent|strong="H7971"\w* \w comforters|strong="H5162"\w* \w to|strong="H7971"\w* \w you|strong="H3588"\w*? Haven’t \w his|strong="H7971"\w* \w servants|strong="H5650"\w* \w come|strong="H2015"\w* \w to|strong="H7971"\w* \w you|strong="H3588"\w* \w to|strong="H7971"\w* \w search|strong="H2713"\w*, \w to|strong="H7971"\w* \w overthrow|strong="H2015"\w*, \w and|strong="H1121"\w* \w to|strong="H7971"\w* \w spy|strong="H7270"\w* \w out|strong="H7971"\w* \w the|strong="H3588"\w* land?” +\v 4 \w So|strong="H3947"\w* \w Hanun|strong="H2586"\w* \w took|strong="H3947"\w* \w David|strong="H1732"\w*’s \w servants|strong="H5650"\w*, \w shaved|strong="H1548"\w* \w them|strong="H7971"\w*, \w and|strong="H7971"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w their|strong="H3947"\w* \w garments|strong="H4063"\w* \w in|strong="H5650"\w* \w the|strong="H3947"\w* \w middle|strong="H2677"\w* \w at|strong="H1732"\w* \w their|strong="H3947"\w* \w buttocks|strong="H4667"\w*, \w and|strong="H7971"\w* \w sent|strong="H7971"\w* \w them|strong="H7971"\w* \w away|strong="H7971"\w*. +\v 5 \w Then|strong="H1961"\w* some \w people|strong="H3427"\w* \w went|strong="H3212"\w* \w and|strong="H7971"\w* \w told|strong="H5046"\w* \w David|strong="H1732"\w* \w how|strong="H3588"\w* \w the|strong="H5921"\w* men \w were|strong="H1961"\w* treated. \w He|strong="H3588"\w* \w sent|strong="H7971"\w* \w to|strong="H5704"\w* \w meet|strong="H7125"\w* \w them|strong="H5921"\w*; \w for|strong="H3588"\w* \w the|strong="H5921"\w* men \w were|strong="H1961"\w* \w greatly|strong="H3966"\w* \w humiliated|strong="H3637"\w*. \w The|strong="H5921"\w* \w king|strong="H4428"\w* said, “\w Stay|strong="H3427"\w* \w at|strong="H3427"\w* \w Jericho|strong="H3405"\w* \w until|strong="H5704"\w* \w your|strong="H5921"\w* \w beards|strong="H2206"\w* \w have|strong="H1961"\w* \w grown|strong="H6779"\w*, \w and|strong="H7971"\w* \w then|strong="H1961"\w* \w return|strong="H7725"\w*.” +\p +\v 6 \w When|strong="H3588"\w* \w the|strong="H7200"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H1732"\w* \w made|strong="H5983"\w* themselves odious \w to|strong="H7971"\w* \w David|strong="H1732"\w*, \w Hanun|strong="H2586"\w* \w and|strong="H1121"\w* \w the|strong="H7200"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w sent|strong="H7971"\w* \w one|strong="H4480"\w* thousand \w talents|strong="H3603"\w*\f + \fr 19:6 \ft A talent is about 30 kilograms or 66 pounds, so 1000 talents is about 30 metric tons\f* \w of|strong="H1121"\w* \w silver|strong="H3701"\w* \w to|strong="H7971"\w* \w hire|strong="H7936"\w* \w chariots|strong="H7393"\w* \w and|strong="H1121"\w* \w horsemen|strong="H6571"\w* \w out|strong="H7971"\w* \w of|strong="H1121"\w* Mesopotamia, \w out|strong="H7971"\w* \w of|strong="H1121"\w* Aram-maacah, \w and|strong="H1121"\w* \w out|strong="H7971"\w* \w of|strong="H1121"\w* \w Zobah|strong="H6678"\w*. +\v 7 \w So|strong="H7936"\w* \w they|strong="H5971"\w* \w hired|strong="H7936"\w* \w for|strong="H6440"\w* \w themselves|strong="H6440"\w* \w thirty-two|strong="H7970"\w* thousand \w chariots|strong="H7393"\w*, \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Maacah|strong="H4601"\w* \w with|strong="H6440"\w* \w his|strong="H6440"\w* \w people|strong="H5971"\w*, \w who|strong="H5971"\w* \w came|strong="H5971"\w* \w and|strong="H1121"\w* \w encamped|strong="H2583"\w* \w near|strong="H6440"\w* \w Medeba|strong="H4311"\w*. \w The|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* gathered \w themselves|strong="H6440"\w* \w together|strong="H8147"\w* \w from|strong="H6440"\w* \w their|strong="H6440"\w* \w cities|strong="H5892"\w*, \w and|strong="H1121"\w* \w came|strong="H5971"\w* \w to|strong="H6440"\w* \w battle|strong="H4421"\w*. +\v 8 \w When|strong="H8085"\w* \w David|strong="H1732"\w* \w heard|strong="H8085"\w* \w of|strong="H6635"\w* \w it|strong="H7971"\w*, \w he|strong="H3605"\w* \w sent|strong="H7971"\w* \w Joab|strong="H3097"\w* \w with|strong="H1732"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w* \w of|strong="H6635"\w* \w the|strong="H3605"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w*. +\v 9 \w The|strong="H3318"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H1121"\w* \w put|strong="H3318"\w* \w the|strong="H3318"\w* \w battle|strong="H4421"\w* \w in|strong="H4428"\w* \w array|strong="H6186"\w* \w at|strong="H4421"\w* \w the|strong="H3318"\w* \w gate|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H3318"\w* \w city|strong="H5892"\w*; \w and|strong="H1121"\w* \w the|strong="H3318"\w* \w kings|strong="H4428"\w* \w who|strong="H1121"\w* \w had|strong="H4428"\w* \w come|strong="H3318"\w* \w were|strong="H1121"\w* \w by|strong="H3318"\w* \w themselves|strong="H6186"\w* \w in|strong="H4428"\w* \w the|strong="H3318"\w* \w field|strong="H7704"\w*. +\p +\v 10 \w Now|strong="H1961"\w* \w when|strong="H3588"\w* \w Joab|strong="H3097"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w battle|strong="H4421"\w* \w was|strong="H1961"\w* \w set|strong="H6186"\w* \w against|strong="H7125"\w* \w him|strong="H6440"\w* \w before|strong="H6440"\w* \w and|strong="H3478"\w* behind, \w he|strong="H3588"\w* chose \w some|strong="H3605"\w* \w of|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w choice|strong="H7200"\w* \w men|strong="H3605"\w* \w of|strong="H6440"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w put|strong="H6186"\w* \w them|strong="H6440"\w* \w in|strong="H3478"\w* \w array|strong="H6186"\w* \w against|strong="H7125"\w* \w the|strong="H3605"\w* Syrians. +\v 11 \w The|strong="H5414"\w* \w rest|strong="H3499"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w* \w he|strong="H3027"\w* \w committed|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* Abishai \w his|strong="H5414"\w* brother; \w and|strong="H1121"\w* \w they|strong="H5971"\w* \w put|strong="H5414"\w* \w themselves|strong="H6186"\w* \w in|strong="H1121"\w* \w array|strong="H6186"\w* \w against|strong="H7125"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*. +\v 12 \w He|strong="H4480"\w* said, “\w If|strong="H1961"\w* \w the|strong="H4480"\w* Syrians \w are|strong="H1121"\w* \w too|strong="H4480"\w* \w strong|strong="H2388"\w* \w for|strong="H1121"\w* \w me|strong="H4480"\w*, \w then|strong="H1961"\w* \w you|strong="H4480"\w* \w are|strong="H1121"\w* \w to|strong="H1961"\w* \w help|strong="H3467"\w* \w me|strong="H4480"\w*; \w but|strong="H1961"\w* \w if|strong="H1961"\w* \w the|strong="H4480"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w are|strong="H1121"\w* \w too|strong="H4480"\w* \w strong|strong="H2388"\w* \w for|strong="H1121"\w* \w you|strong="H4480"\w*, \w then|strong="H1961"\w* \w I|strong="H1121"\w* \w will|strong="H1961"\w* \w help|strong="H3467"\w* \w you|strong="H4480"\w*. +\v 13 \w Be|strong="H3068"\w* \w courageous|strong="H2388"\w*, \w and|strong="H3068"\w* let’s \w be|strong="H3068"\w* \w strong|strong="H2388"\w* \w for|strong="H6213"\w* \w our|strong="H3068"\w* \w people|strong="H5971"\w* \w and|strong="H3068"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*. \w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w do|strong="H6213"\w* \w that|strong="H5971"\w* \w which|strong="H3068"\w* \w seems|strong="H2896"\w* \w good|strong="H2896"\w* \w to|strong="H3068"\w* \w him|strong="H6213"\w*.” +\p +\v 14 \w So|strong="H5066"\w* \w Joab|strong="H3097"\w* \w and|strong="H5971"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w with|strong="H5973"\w* \w him|strong="H6440"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w front|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* Syrians \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w battle|strong="H4421"\w*; \w and|strong="H5971"\w* \w they|strong="H5971"\w* \w fled|strong="H5127"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 15 \w When|strong="H3588"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H6440"\w* Syrians \w had|strong="H3588"\w* \w fled|strong="H5127"\w*, \w they|strong="H1992"\w* \w likewise|strong="H1571"\w* \w fled|strong="H5127"\w* \w before|strong="H6440"\w* Abishai \w his|strong="H6440"\w* brother, \w and|strong="H1121"\w* entered \w into|strong="H5892"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w*. \w Then|strong="H1571"\w* \w Joab|strong="H3097"\w* \w came|strong="H5983"\w* \w to|strong="H6440"\w* \w Jerusalem|strong="H3389"\w*. +\p +\v 16 \w When|strong="H3588"\w* \w the|strong="H6440"\w* Syrians \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H3478"\w* \w defeated|strong="H5062"\w* \w by|strong="H3318"\w* \w Israel|strong="H3478"\w*, \w they|strong="H3588"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w and|strong="H3478"\w* called \w out|strong="H3318"\w* \w the|strong="H6440"\w* Syrians \w who|strong="H3478"\w* \w were|strong="H3478"\w* \w beyond|strong="H5676"\w* \w the|strong="H6440"\w* \w River|strong="H5104"\w*,\f + \fr 19:16 \ft or, the Euphrates River\f* \w with|strong="H6440"\w* \w Shophach|strong="H7780"\w* \w the|strong="H6440"\w* \w captain|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H6440"\w* \w army|strong="H6635"\w* \w of|strong="H8269"\w* \w Hadadezer|strong="H1909"\w* \w leading|strong="H8269"\w* \w them|strong="H7971"\w*. +\v 17 \w David|strong="H1732"\w* \w was|strong="H1732"\w* \w told|strong="H5046"\w* \w that|strong="H3605"\w*, \w so|strong="H5674"\w* \w he|strong="H3605"\w* \w gathered|strong="H1732"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w together|strong="H5973"\w*, \w passed|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w*, \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w them|strong="H5674"\w*, \w and|strong="H3478"\w* \w set|strong="H6186"\w* \w the|strong="H3605"\w* \w battle|strong="H4421"\w* \w in|strong="H3478"\w* \w array|strong="H6186"\w* \w against|strong="H5973"\w* \w them|strong="H5674"\w*. \w So|strong="H5674"\w* \w when|strong="H5674"\w* \w David|strong="H1732"\w* \w had|strong="H3478"\w* \w put|strong="H5674"\w* \w the|strong="H3605"\w* \w battle|strong="H4421"\w* \w in|strong="H3478"\w* \w array|strong="H6186"\w* \w against|strong="H5973"\w* \w the|strong="H3605"\w* Syrians, \w they|strong="H3478"\w* \w fought|strong="H3898"\w* \w with|strong="H5973"\w* \w him|strong="H5046"\w*. +\v 18 \w The|strong="H6440"\w* Syrians \w fled|strong="H5127"\w* \w before|strong="H6440"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w David|strong="H1732"\w* \w killed|strong="H2026"\w* \w of|strong="H8269"\w* \w the|strong="H6440"\w* Syrian \w men|strong="H7651"\w* \w seven|strong="H7651"\w* thousand \w charioteers|strong="H7393"\w* \w and|strong="H3478"\w* forty thousand \w footmen|strong="H7273"\w*, \w and|strong="H3478"\w* \w also|strong="H1732"\w* \w killed|strong="H2026"\w* \w Shophach|strong="H7780"\w* \w the|strong="H6440"\w* \w captain|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H6440"\w* \w army|strong="H6635"\w*. +\v 19 \w When|strong="H3588"\w* \w the|strong="H6440"\w* \w servants|strong="H5650"\w* \w of|strong="H1121"\w* \w Hadadezer|strong="H1909"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H3478"\w* \w defeated|strong="H5062"\w* \w by|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w they|strong="H3588"\w* \w made|strong="H7999"\w* \w peace|strong="H7999"\w* \w with|strong="H5973"\w* \w David|strong="H1732"\w* \w and|strong="H1121"\w* \w served|strong="H5647"\w* \w him|strong="H6440"\w*. \w The|strong="H6440"\w* Syrians \w would|strong="H3478"\w* \w not|strong="H3808"\w* \w help|strong="H3467"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*. +\c 20 +\p +\v 1 \w At|strong="H3427"\w* \w the|strong="H5221"\w* \w time|strong="H6256"\w* \w of|strong="H1121"\w* \w the|strong="H5221"\w* \w return|strong="H8666"\w* \w of|strong="H1121"\w* \w the|strong="H5221"\w* \w year|strong="H8141"\w*, \w at|strong="H3427"\w* \w the|strong="H5221"\w* \w time|strong="H6256"\w* \w when|strong="H1961"\w* \w kings|strong="H4428"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*, \w Joab|strong="H3097"\w* \w led|strong="H5090"\w* \w out|strong="H3318"\w* \w the|strong="H5221"\w* \w army|strong="H6635"\w* \w and|strong="H1121"\w* \w wasted|strong="H7843"\w* \w the|strong="H5221"\w* country \w of|strong="H1121"\w* \w the|strong="H5221"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, \w and|strong="H1121"\w* \w came|strong="H1961"\w* \w and|strong="H1121"\w* \w besieged|strong="H6696"\w* \w Rabbah|strong="H7237"\w*. \w But|strong="H1961"\w* \w David|strong="H1732"\w* \w stayed|strong="H3427"\w* \w at|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*. \w Joab|strong="H3097"\w* \w struck|strong="H5221"\w* \w Rabbah|strong="H7237"\w*, \w and|strong="H1121"\w* \w overthrew|strong="H2040"\w* \w it|strong="H5221"\w*. +\v 2 \w David|strong="H1732"\w* \w took|strong="H3947"\w* \w the|strong="H5921"\w* \w crown|strong="H5850"\w* \w of|strong="H4428"\w* \w their|strong="H3947"\w* \w king|strong="H4428"\w* \w from|strong="H3318"\w* \w off|strong="H5921"\w* \w his|strong="H3947"\w* \w head|strong="H7218"\w*, \w and|strong="H4428"\w* \w found|strong="H4672"\w* \w it|strong="H5921"\w* \w to|strong="H3318"\w* \w weigh|strong="H4948"\w* \w a|strong="H3068"\w* \w talent|strong="H3603"\w* \w of|strong="H4428"\w* \w gold|strong="H2091"\w*,\f + \fr 20:2 \ft A talent is about 30 kilograms or 66 pounds or 965 Troy ounces\f* \w and|strong="H4428"\w* \w there|strong="H1961"\w* \w were|strong="H1961"\w* \w precious|strong="H3368"\w* stones \w in|strong="H5921"\w* \w it|strong="H5921"\w*. \w It|strong="H5921"\w* \w was|strong="H1961"\w* \w set|strong="H3318"\w* \w on|strong="H5921"\w* \w David|strong="H1732"\w*’s \w head|strong="H7218"\w*, \w and|strong="H4428"\w* \w he|strong="H1732"\w* \w brought|strong="H3318"\w* \w very|strong="H3966"\w* \w much|strong="H7235"\w* \w plunder|strong="H7998"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*. +\v 3 \w He|strong="H3651"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w in|strong="H6213"\w* \w it|strong="H6213"\w*, \w and|strong="H1121"\w* \w had|strong="H1732"\w* \w them|strong="H7725"\w* \w cut|strong="H7787"\w* \w with|strong="H6213"\w* \w saws|strong="H4050"\w*, \w with|strong="H6213"\w* \w iron|strong="H1270"\w* \w picks|strong="H2757"\w*, \w and|strong="H1121"\w* \w with|strong="H6213"\w* \w axes|strong="H4050"\w*. \w David|strong="H1732"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w* \w to|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*. \w Then|strong="H3318"\w* \w David|strong="H1732"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Jerusalem|strong="H3389"\w*. +\p +\v 4 \w After|strong="H1961"\w* \w this|strong="H5975"\w*, \w war|strong="H4421"\w* \w arose|strong="H5975"\w* \w at|strong="H4421"\w* \w Gezer|strong="H1507"\w* \w with|strong="H5973"\w* \w the|strong="H5221"\w* \w Philistines|strong="H6430"\w*. \w Then|strong="H1961"\w* \w Sibbecai|strong="H5444"\w* \w the|strong="H5221"\w* \w Hushathite|strong="H2843"\w* \w killed|strong="H5221"\w* \w Sippai|strong="H5598"\w*, \w of|strong="H5221"\w* \w the|strong="H5221"\w* \w sons|strong="H3211"\w* \w of|strong="H5221"\w* \w the|strong="H5221"\w* \w giant|strong="H7497"\w*; \w and|strong="H5975"\w* \w they|strong="H5221"\w* \w were|strong="H1961"\w* \w subdued|strong="H3665"\w*. +\p +\v 5 \w Again|strong="H5750"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w war|strong="H4421"\w* \w with|strong="H4421"\w* \w the|strong="H5221"\w* \w Philistines|strong="H6430"\w*; \w and|strong="H1121"\w* Elhanan \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jair|strong="H3265"\w* \w killed|strong="H5221"\w* \w Lahmi|strong="H3902"\w* \w the|strong="H5221"\w* brother \w of|strong="H1121"\w* \w Goliath|strong="H1555"\w* \w the|strong="H5221"\w* \w Gittite|strong="H1663"\w*, \w the|strong="H5221"\w* \w staff|strong="H6086"\w* \w of|strong="H1121"\w* \w whose|strong="H1121"\w* \w spear|strong="H2595"\w* \w was|strong="H1961"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* weaver’s \w beam|strong="H4500"\w*. +\v 6 \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w again|strong="H5750"\w* \w war|strong="H4421"\w* \w at|strong="H4421"\w* \w Gath|strong="H1661"\w*, where \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* man \w of|strong="H3205"\w* great \w stature|strong="H4060"\w*, \w who|strong="H1931"\w* \w had|strong="H1961"\w* \w twenty-four|strong="H6242"\w* fingers \w and|strong="H6242"\w* toes, \w six|strong="H8337"\w* \w on|strong="H1961"\w* each hand \w and|strong="H6242"\w* \w six|strong="H8337"\w* \w on|strong="H1961"\w* each foot; \w and|strong="H6242"\w* \w he|strong="H1931"\w* \w also|strong="H1571"\w* \w was|strong="H1961"\w* \w born|strong="H3205"\w* \w to|strong="H1961"\w* \w the|strong="H3205"\w* \w giant|strong="H7497"\w*. +\v 7 \w When|strong="H1121"\w* \w he|strong="H1732"\w* \w defied|strong="H2778"\w* \w Israel|strong="H3478"\w*, \w Jonathan|strong="H3083"\w* \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shimea|strong="H8092"\w*, \w David|strong="H1732"\w*’s brother, \w killed|strong="H5221"\w* \w him|strong="H5221"\w*. +\v 8 \w These|strong="H1732"\w* \w were|strong="H3027"\w* \w born|strong="H3205"\w* \w to|strong="H3027"\w* \w the|strong="H3205"\w* \w giant|strong="H7497"\w* \w in|strong="H5650"\w* \w Gath|strong="H1661"\w*; \w and|strong="H3027"\w* \w they|strong="H3027"\w* \w fell|strong="H5307"\w* \w by|strong="H3027"\w* \w the|strong="H3205"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w David|strong="H1732"\w* \w and|strong="H3027"\w* \w by|strong="H3027"\w* \w the|strong="H3205"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w his|strong="H1732"\w* \w servants|strong="H5650"\w*. +\c 21 +\p +\v 1 \w Satan|strong="H7854"\w* \w stood|strong="H5975"\w* \w up|strong="H5975"\w* \w against|strong="H5921"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w moved|strong="H5496"\w* \w David|strong="H1732"\w* \w to|strong="H3478"\w* \w take|strong="H5975"\w* \w a|strong="H3068"\w* census \w of|strong="H5921"\w* \w Israel|strong="H3478"\w*. +\v 2 \w David|strong="H1732"\w* said \w to|strong="H5704"\w* \w Joab|strong="H3097"\w* \w and|strong="H3478"\w* \w to|strong="H5704"\w* \w the|strong="H3045"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H3045"\w* \w people|strong="H5971"\w*, “\w Go|strong="H3212"\w*, \w count|strong="H5608"\w* \w Israel|strong="H3478"\w* \w from|strong="H3478"\w* Beersheba \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Dan|strong="H1835"\w*; \w and|strong="H3478"\w* \w bring|strong="H3212"\w* \w me|strong="H3045"\w* word, \w that|strong="H3045"\w* \w I|strong="H5704"\w* \w may|strong="H5971"\w* \w know|strong="H3045"\w* \w how|strong="H3045"\w* \w many|strong="H5704"\w* \w there|strong="H3045"\w* \w are|strong="H5971"\w*.” +\p +\v 3 \w Joab|strong="H3097"\w* said, “\w May|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w make|strong="H3254"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w* \w a|strong="H3068"\w* \w hundred|strong="H3967"\w* \w times|strong="H6471"\w* \w as|strong="H1961"\w* \w many|strong="H4100"\w* \w as|strong="H1961"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w*. \w But|strong="H3808"\w*, \w my|strong="H3605"\w* \w lord|strong="H3068"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, aren’t \w they|strong="H1992"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w lord|strong="H3068"\w*’s \w servants|strong="H5650"\w*? \w Why|strong="H4100"\w* \w does|strong="H4100"\w* \w my|strong="H3605"\w* \w lord|strong="H3068"\w* \w require|strong="H1245"\w* \w this|strong="H2063"\w* \w thing|strong="H2063"\w*? \w Why|strong="H4100"\w* \w will|strong="H3068"\w* \w he|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w cause|strong="H5971"\w* \w of|strong="H4428"\w* guilt \w to|strong="H3478"\w* \w Israel|strong="H3478"\w*?” +\p +\v 4 Nevertheless \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w word|strong="H1697"\w* \w prevailed|strong="H2388"\w* \w against|strong="H5921"\w* \w Joab|strong="H3097"\w*. \w Therefore|strong="H5921"\w* \w Joab|strong="H3097"\w* \w departed|strong="H1980"\w* \w and|strong="H1980"\w* \w went|strong="H1980"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w then|strong="H1980"\w* \w came|strong="H3318"\w* \w to|strong="H1980"\w* \w Jerusalem|strong="H3389"\w*. +\v 5 \w Joab|strong="H3097"\w* \w gave|strong="H5414"\w* \w the|strong="H3605"\w* \w sum|strong="H4557"\w* \w of|strong="H4557"\w* \w the|strong="H3605"\w* \w census|strong="H4662"\w* \w of|strong="H4557"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w to|strong="H3478"\w* \w David|strong="H1732"\w*. \w All|strong="H3605"\w* \w those|strong="H3605"\w* \w of|strong="H4557"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w one|strong="H3605"\w* million \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* thousand \w men|strong="H5971"\w* \w who|strong="H3605"\w* \w drew|strong="H8025"\w* \w a|strong="H3068"\w* \w sword|strong="H2719"\w*; \w and|strong="H3967"\w* \w in|strong="H3478"\w* \w Judah|strong="H3063"\w* \w were|strong="H3478"\w* four \w hundred|strong="H3967"\w* \w seventy|strong="H7657"\w* thousand \w men|strong="H5971"\w* \w who|strong="H3605"\w* \w drew|strong="H8025"\w* \w a|strong="H3068"\w* \w sword|strong="H2719"\w*. +\v 6 \w But|strong="H3588"\w* \w he|strong="H3588"\w* didn’t count \w Levi|strong="H3878"\w* \w and|strong="H4428"\w* \w Benjamin|strong="H1144"\w* \w among|strong="H8432"\w* \w them|strong="H8432"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w*’s \w word|strong="H1697"\w* \w was|strong="H1697"\w* \w abominable|strong="H8581"\w* \w to|strong="H4428"\w* \w Joab|strong="H3097"\w*. +\p +\v 7 God \w was|strong="H3478"\w* \w displeased|strong="H7489"\w* \w with|strong="H5921"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*; \w therefore|strong="H5921"\w* \w he|strong="H5921"\w* \w struck|strong="H5221"\w* \w Israel|strong="H3478"\w*. +\v 8 \w David|strong="H1732"\w* \w said|strong="H1697"\w* \w to|strong="H6213"\w* God, “\w I|strong="H3588"\w* \w have|strong="H5650"\w* \w sinned|strong="H2398"\w* \w greatly|strong="H3966"\w*, \w in|strong="H6213"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H5650"\w* \w done|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*. \w But|strong="H3588"\w* \w now|strong="H6258"\w* \w put|strong="H6213"\w* \w away|strong="H5674"\w*, \w I|strong="H3588"\w* \w beg|strong="H4994"\w* \w you|strong="H3588"\w*, \w the|strong="H3588"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1697"\w* \w your|strong="H6213"\w* \w servant|strong="H5650"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H5650"\w* \w done|strong="H6213"\w* \w very|strong="H3966"\w* \w foolishly|strong="H5528"\w*.” +\p +\v 9 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Gad|strong="H1410"\w*, \w David|strong="H1732"\w*’s \w seer|strong="H2374"\w*, \w saying|strong="H1696"\w*, +\v 10 “\w Go|strong="H3212"\w* \w and|strong="H3068"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w David|strong="H1732"\w*, \w saying|strong="H1696"\w*, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w I|strong="H3541"\w* \w offer|strong="H6213"\w* \w you|strong="H5921"\w* \w three|strong="H7969"\w* \w things|strong="H7969"\w*. Choose \w one|strong="H6213"\w* \w of|strong="H3068"\w* \w them|strong="H5921"\w*, \w that|strong="H3068"\w* \w I|strong="H3541"\w* \w may|strong="H3068"\w* \w do|strong="H6213"\w* \w it|strong="H5921"\w* \w to|strong="H1696"\w* \w you|strong="H5921"\w*.”’” +\p +\v 11 \w So|strong="H3541"\w* \w Gad|strong="H1410"\w* \w came|strong="H3068"\w* \w to|strong="H3068"\w* \w David|strong="H1732"\w* \w and|strong="H3068"\w* said \w to|strong="H3068"\w* \w him|strong="H1732"\w*, “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w Take|strong="H6901"\w* \w your|strong="H3068"\w* choice: +\v 12 \w either|strong="H1697"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w* \w of|strong="H3068"\w* \w famine|strong="H7458"\w*; \w or|strong="H3117"\w* \w three|strong="H7969"\w* \w months|strong="H2320"\w* \w to|strong="H7725"\w* \w be|strong="H1697"\w* \w consumed|strong="H5595"\w* \w before|strong="H6440"\w* \w your|strong="H3068"\w* \w foes|strong="H6862"\w*, \w while|strong="H3117"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w enemies|strong="H6862"\w* \w overtakes|strong="H5381"\w* \w you|strong="H6440"\w*; \w or|strong="H3117"\w* \w else|strong="H3605"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w even|strong="H3068"\w* \w pestilence|strong="H1698"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w*, \w and|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w destroying|strong="H7843"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w borders|strong="H1366"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w consider|strong="H7200"\w* \w what|strong="H4100"\w* \w answer|strong="H7725"\w* \w I|strong="H3117"\w* \w shall|strong="H3068"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w him|strong="H6440"\w* \w who|strong="H3605"\w* \w sent|strong="H7971"\w* \w me|strong="H6440"\w*.’” +\p +\v 13 \w David|strong="H1732"\w* said \w to|strong="H3068"\w* \w Gad|strong="H1410"\w*, “\w I|strong="H3588"\w* \w am|strong="H3068"\w* \w in|strong="H3068"\w* \w distress|strong="H6862"\w*. \w Let|strong="H4994"\w* \w me|strong="H4994"\w* \w fall|strong="H5307"\w*, \w I|strong="H3588"\w* \w pray|strong="H4994"\w*, \w into|strong="H5307"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w*, \w for|strong="H3588"\w* \w his|strong="H3068"\w* \w mercies|strong="H7356"\w* \w are|strong="H3027"\w* \w very|strong="H3966"\w* \w great|strong="H7227"\w*. Don’t \w let|strong="H4994"\w* \w me|strong="H4994"\w* \w fall|strong="H5307"\w* \w into|strong="H5307"\w* \w man|strong="H5307"\w*’s \w hand|strong="H3027"\w*.” +\p +\v 14 \w So|strong="H5414"\w* \w Yahweh|strong="H3068"\w* \w sent|strong="H5414"\w* \w a|strong="H3068"\w* \w pestilence|strong="H1698"\w* \w on|strong="H5307"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w seventy|strong="H7657"\w* thousand \w men|strong="H3478"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w fell|strong="H5307"\w*. +\v 15 \w God|strong="H3068"\w* \w sent|strong="H7971"\w* \w an|strong="H7200"\w* \w angel|strong="H4397"\w* \w to|strong="H3068"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H3068"\w* \w destroy|strong="H7843"\w* \w it|strong="H5921"\w*. \w As|strong="H3068"\w* \w he|strong="H3068"\w* \w was|strong="H3068"\w* \w about|strong="H5921"\w* \w to|strong="H3068"\w* \w destroy|strong="H7843"\w*, \w Yahweh|strong="H3068"\w* \w saw|strong="H7200"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w relented|strong="H5162"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w disaster|strong="H7451"\w*, \w and|strong="H3068"\w* said \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w destroying|strong="H7843"\w* \w angel|strong="H4397"\w*, “\w It|strong="H5921"\w* \w is|strong="H3068"\w* \w enough|strong="H7227"\w*. \w Now|strong="H6258"\w* withdraw \w your|strong="H3068"\w* \w hand|strong="H3027"\w*.” \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w was|strong="H3068"\w* \w standing|strong="H5975"\w* \w by|strong="H3027"\w* \w the|strong="H5921"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w* \w of|strong="H3068"\w* Ornan \w the|strong="H5921"\w* \w Jebusite|strong="H2983"\w*. +\v 16 \w David|strong="H1732"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w eyes|strong="H5869"\w*, \w and|strong="H3068"\w* \w saw|strong="H7200"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w standing|strong="H5975"\w* \w between|strong="H5921"\w* \w earth|strong="H8064"\w* \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w sky|strong="H8064"\w*, having \w a|strong="H3068"\w* \w drawn|strong="H8025"\w* \w sword|strong="H2719"\w* \w in|strong="H5921"\w* \w his|strong="H5375"\w* \w hand|strong="H3027"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w over|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*. +\p \w Then|strong="H5375"\w* \w David|strong="H1732"\w* \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w elders|strong="H2205"\w*, \w clothed|strong="H3680"\w* \w in|strong="H5921"\w* \w sackcloth|strong="H8242"\w*, \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w their|strong="H3068"\w* \w faces|strong="H6440"\w*. +\v 17 \w David|strong="H1732"\w* said \w to|strong="H3068"\w* \w God|strong="H3068"\w*, “Isn’t \w it|strong="H1931"\w* \w I|strong="H3808"\w* \w who|strong="H1931"\w* commanded \w the|strong="H6213"\w* \w people|strong="H5971"\w* \w to|strong="H3068"\w* \w be|strong="H1961"\w* \w counted|strong="H4487"\w*? \w It|strong="H1931"\w* \w is|strong="H3068"\w* \w even|strong="H3808"\w* \w I|strong="H3808"\w* \w who|strong="H1931"\w* \w have|strong="H1961"\w* \w sinned|strong="H2398"\w* \w and|strong="H3068"\w* \w done|strong="H6213"\w* \w very|strong="H6213"\w* \w wickedly|strong="H7489"\w*; \w but|strong="H3808"\w* \w these|strong="H6213"\w* \w sheep|strong="H6629"\w*, \w what|strong="H4100"\w* \w have|strong="H1961"\w* \w they|strong="H3068"\w* \w done|strong="H6213"\w*? \w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*, \w O|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*, \w be|strong="H1961"\w* \w against|strong="H2398"\w* \w me|strong="H4994"\w* \w and|strong="H3068"\w* \w against|strong="H2398"\w* \w my|strong="H3068"\w* father’s \w house|strong="H1004"\w*; \w but|strong="H3808"\w* \w not|strong="H3808"\w* \w against|strong="H2398"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w*, \w that|strong="H5971"\w* \w they|strong="H3068"\w* \w should|strong="H3068"\w* \w be|strong="H1961"\w* \w plagued|strong="H4046"\w*.” +\p +\v 18 \w Then|strong="H6965"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* commanded \w Gad|strong="H1410"\w* \w to|strong="H3068"\w* tell \w David|strong="H1732"\w* \w that|strong="H3588"\w* \w David|strong="H1732"\w* \w should|strong="H3068"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H6965"\w* \w raise|strong="H6965"\w* \w an|strong="H6965"\w* \w altar|strong="H4196"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w on|strong="H3068"\w* \w the|strong="H3588"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w* \w of|strong="H3068"\w* Ornan \w the|strong="H3588"\w* \w Jebusite|strong="H2983"\w*. +\v 19 \w David|strong="H1732"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w at|strong="H3068"\w* \w the|strong="H3068"\w* \w saying|strong="H1697"\w* \w of|strong="H3068"\w* \w Gad|strong="H1410"\w*, \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w spoke|strong="H1696"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*. +\p +\v 20 Ornan \w turned|strong="H7725"\w* \w back|strong="H7725"\w* \w and|strong="H1121"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w angel|strong="H4397"\w*; \w and|strong="H1121"\w* \w his|strong="H7725"\w* four \w sons|strong="H1121"\w* \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w with|strong="H5973"\w* \w him|strong="H7725"\w* \w hid|strong="H2244"\w* \w themselves|strong="H2244"\w*. Now Ornan \w was|strong="H1121"\w* \w threshing|strong="H1758"\w* \w wheat|strong="H2406"\w*. +\v 21 \w As|strong="H5704"\w* \w David|strong="H1732"\w* \w came|strong="H3318"\w* \w to|strong="H5704"\w* Ornan, Ornan \w looked|strong="H7200"\w* \w and|strong="H1732"\w* \w saw|strong="H7200"\w* \w David|strong="H1732"\w*, \w and|strong="H1732"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4480"\w* \w the|strong="H7200"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w*, \w and|strong="H1732"\w* \w bowed|strong="H7812"\w* \w himself|strong="H7812"\w* \w to|strong="H5704"\w* \w David|strong="H1732"\w* \w with|strong="H3318"\w* \w his|strong="H1732"\w* \w face|strong="H7200"\w* \w to|strong="H5704"\w* \w the|strong="H7200"\w* ground. +\p +\v 22 \w Then|strong="H5414"\w* \w David|strong="H1732"\w* said \w to|strong="H3068"\w* Ornan, “\w Sell|strong="H5414"\w* \w me|strong="H5414"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w of|strong="H3068"\w* \w this|strong="H5414"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w*, \w that|strong="H5971"\w* \w I|strong="H5414"\w* \w may|strong="H3068"\w* \w build|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w*. \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w sell|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3068"\w* \w me|strong="H5414"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w full|strong="H4392"\w* \w price|strong="H3701"\w*, \w that|strong="H5971"\w* \w the|strong="H5921"\w* \w plague|strong="H4046"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w stopped|strong="H6113"\w* \w from|strong="H5921"\w* afflicting \w the|strong="H5921"\w* \w people|strong="H5971"\w*.” +\p +\v 23 Ornan said \w to|strong="H6213"\w* \w David|strong="H1732"\w*, “\w Take|strong="H3947"\w* \w it|strong="H5414"\w* \w for|strong="H6213"\w* \w yourself|strong="H6213"\w*, \w and|strong="H4428"\w* \w let|strong="H5414"\w* \w my|strong="H5414"\w* lord \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w do|strong="H6213"\w* \w that|strong="H7200"\w* \w which|strong="H5869"\w* \w is|strong="H2896"\w* \w good|strong="H2896"\w* \w in|strong="H6213"\w* \w his|strong="H3605"\w* \w eyes|strong="H5869"\w*. \w Behold|strong="H7200"\w*, \w I|strong="H5414"\w* \w give|strong="H5414"\w* \w the|strong="H3605"\w* \w oxen|strong="H1241"\w* \w for|strong="H6213"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w*, \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w threshing|strong="H4173"\w* \w instruments|strong="H4173"\w* \w for|strong="H6213"\w* \w wood|strong="H6086"\w*, \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w wheat|strong="H2406"\w* \w for|strong="H6213"\w* \w the|strong="H3605"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*. \w I|strong="H5414"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w all|strong="H3605"\w*.” +\p +\v 24 \w King|strong="H4428"\w* \w David|strong="H1732"\w* said \w to|strong="H3068"\w* Ornan, “\w No|strong="H3808"\w*, \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w most|strong="H3068"\w* \w certainly|strong="H3588"\w* \w buy|strong="H7069"\w* \w it|strong="H3588"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w full|strong="H4392"\w* \w price|strong="H3701"\w*. \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w take|strong="H5375"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* yours \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, \w nor|strong="H3808"\w* \w offer|strong="H5927"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w that|strong="H3588"\w* \w costs|strong="H2600"\w* \w me|strong="H2600"\w* \w nothing|strong="H3808"\w*.” +\p +\v 25 \w So|strong="H5414"\w* \w David|strong="H1732"\w* \w gave|strong="H5414"\w* \w to|strong="H5414"\w* Ornan \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w shekels|strong="H8255"\w*\f + \fr 21:25 \ft A shekel is about 10 grams or about 0.32 Troy ounces, so 600 shekels was about 6 kilograms or about 192 Troy ounces.\f* \w of|strong="H8255"\w* \w gold|strong="H2091"\w* \w by|strong="H2091"\w* \w weight|strong="H4948"\w* \w for|strong="H5414"\w* \w the|strong="H5414"\w* \w place|strong="H4725"\w*. +\v 26 \w David|strong="H1732"\w* \w built|strong="H1129"\w* \w an|strong="H1129"\w* \w altar|strong="H4196"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w there|strong="H8033"\w*, \w and|strong="H3068"\w* \w offered|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w* \w and|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w and|strong="H3068"\w* \w called|strong="H7121"\w* \w on|strong="H5921"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H3068"\w* \w he|strong="H8033"\w* \w answered|strong="H6030"\w* \w him|strong="H7121"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* \w sky|strong="H8064"\w* \w by|strong="H5921"\w* fire \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w of|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*. +\p +\v 27 \w Then|strong="H7725"\w* \w Yahweh|strong="H3068"\w* commanded \w the|strong="H3068"\w* \w angel|strong="H4397"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w put|strong="H7725"\w* \w his|strong="H3068"\w* \w sword|strong="H2719"\w* \w back|strong="H7725"\w* \w into|strong="H7725"\w* \w its|strong="H7725"\w* \w sheath|strong="H5084"\w*. +\p +\v 28 \w At|strong="H3068"\w* \w that|strong="H3588"\w* \w time|strong="H6256"\w*, \w when|strong="H3588"\w* \w David|strong="H1732"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w answered|strong="H6030"\w* \w him|strong="H7200"\w* \w in|strong="H3068"\w* \w the|strong="H7200"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w* \w of|strong="H3068"\w* Ornan \w the|strong="H7200"\w* \w Jebusite|strong="H2983"\w*, \w then|strong="H6030"\w* \w he|strong="H1931"\w* \w sacrificed|strong="H2076"\w* \w there|strong="H8033"\w*. +\v 29 \w For|strong="H6213"\w* \w Yahweh|strong="H3068"\w*’s \w tabernacle|strong="H4908"\w*, \w which|strong="H1931"\w* \w Moses|strong="H4872"\w* \w made|strong="H6213"\w* \w in|strong="H3068"\w* \w the|strong="H6213"\w* \w wilderness|strong="H4057"\w*, \w and|strong="H4872"\w* \w the|strong="H6213"\w* \w altar|strong="H4196"\w* \w of|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w were|strong="H4057"\w* \w at|strong="H3068"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w* \w in|strong="H3068"\w* \w the|strong="H6213"\w* \w high|strong="H1116"\w* \w place|strong="H1116"\w* \w at|strong="H3068"\w* \w Gibeon|strong="H1391"\w*. +\v 30 \w But|strong="H3588"\w* \w David|strong="H1732"\w* couldn’t \w go|strong="H3212"\w* \w before|strong="H6440"\w* \w it|strong="H3588"\w* \w to|strong="H3201"\w* \w inquire|strong="H1875"\w* \w of|strong="H3068"\w* \w God|strong="H3068"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w was|strong="H3068"\w* \w afraid|strong="H1204"\w* \w because|strong="H3588"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w*. +\c 22 +\p +\v 1 \w Then|strong="H2088"\w* \w David|strong="H1732"\w* said, “\w This|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3478"\w* \w this|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w altar|strong="H4196"\w* \w of|strong="H1004"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w for|strong="H3068"\w* \w Israel|strong="H3478"\w*.” +\p +\v 2 \w David|strong="H1732"\w* gave orders \w to|strong="H3478"\w* \w gather|strong="H3664"\w* \w together|strong="H3664"\w* \w the|strong="H1129"\w* \w foreigners|strong="H1616"\w* \w who|strong="H1616"\w* \w were|strong="H3478"\w* \w in|strong="H3478"\w* \w the|strong="H1129"\w* land \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w he|strong="H1004"\w* \w set|strong="H5975"\w* \w masons|strong="H2672"\w* \w to|strong="H3478"\w* \w cut|strong="H1496"\w* dressed \w stones|strong="H1496"\w* \w to|strong="H3478"\w* \w build|strong="H1129"\w* God’s \w house|strong="H1004"\w*. +\v 3 \w David|strong="H1732"\w* \w prepared|strong="H3559"\w* \w iron|strong="H1270"\w* \w in|strong="H1732"\w* \w abundance|strong="H7230"\w* \w for|strong="H3559"\w* \w the|strong="H1732"\w* \w nails|strong="H4548"\w* \w for|strong="H3559"\w* \w the|strong="H1732"\w* \w doors|strong="H1817"\w* \w of|strong="H8179"\w* \w the|strong="H1732"\w* \w gates|strong="H8179"\w* \w and|strong="H1732"\w* \w for|strong="H3559"\w* \w the|strong="H1732"\w* \w couplings|strong="H4226"\w*, \w and|strong="H1732"\w* \w bronze|strong="H5178"\w* \w in|strong="H1732"\w* \w abundance|strong="H7230"\w* \w without|strong="H7230"\w* \w weight|strong="H4948"\w*, +\v 4 \w and|strong="H6086"\w* cedar \w trees|strong="H6086"\w* \w without|strong="H3588"\w* \w number|strong="H4557"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w Sidonians|strong="H6722"\w* \w and|strong="H6086"\w* \w the|strong="H3588"\w* people \w of|strong="H4557"\w* \w Tyre|strong="H6876"\w* \w brought|strong="H1732"\w* cedar \w trees|strong="H6086"\w* \w in|strong="H6086"\w* \w abundance|strong="H7230"\w* \w to|strong="H1732"\w* \w David|strong="H1732"\w*. +\v 5 \w David|strong="H1732"\w* said, “\w Solomon|strong="H8010"\w* \w my|strong="H3605"\w* \w son|strong="H1121"\w* \w is|strong="H3068"\w* \w young|strong="H5288"\w* \w and|strong="H1121"\w* \w tender|strong="H7390"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w that|strong="H3605"\w* \w is|strong="H3068"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w built|strong="H1129"\w* \w for|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w must|strong="H1121"\w* \w be|strong="H3068"\w* \w exceedingly|strong="H4605"\w* \w magnificent|strong="H1431"\w*, \w of|strong="H1121"\w* \w fame|strong="H8034"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w glory|strong="H8597"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* countries. \w I|strong="H5288"\w* \w will|strong="H3068"\w* \w therefore|strong="H1732"\w* \w make|strong="H1431"\w* \w preparation|strong="H3559"\w* \w for|strong="H6440"\w* \w it|strong="H8034"\w*.” \w So|strong="H1431"\w* \w David|strong="H1732"\w* \w prepared|strong="H3559"\w* \w abundantly|strong="H7230"\w* \w before|strong="H6440"\w* \w his|strong="H3605"\w* \w death|strong="H4194"\w*. +\v 6 \w Then|strong="H6680"\w* \w he|strong="H3068"\w* \w called|strong="H7121"\w* \w for|strong="H7121"\w* \w Solomon|strong="H8010"\w* \w his|strong="H3068"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w commanded|strong="H6680"\w* \w him|strong="H7121"\w* \w to|strong="H3478"\w* \w build|strong="H1129"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w for|strong="H7121"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 7 \w David|strong="H1732"\w* said \w to|strong="H3068"\w* \w Solomon|strong="H8010"\w* \w his|strong="H3068"\w* \w son|strong="H1121"\w*, “\w As|strong="H1961"\w* \w for|strong="H8034"\w* \w me|strong="H5973"\w*, \w it|strong="H8034"\w* \w was|strong="H3068"\w* \w in|strong="H3068"\w* \w my|strong="H3068"\w* \w heart|strong="H3824"\w* \w to|strong="H3068"\w* \w build|strong="H1129"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 8 \w But|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H6440"\w*, \w saying|strong="H1697"\w*, ‘\w You|strong="H3588"\w* \w have|strong="H1961"\w* \w shed|strong="H8210"\w* \w blood|strong="H1818"\w* \w abundantly|strong="H7230"\w* \w and|strong="H3068"\w* \w have|strong="H1961"\w* \w made|strong="H6213"\w* \w great|strong="H1419"\w* \w wars|strong="H4421"\w*. \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w build|strong="H1129"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w to|strong="H3068"\w* \w my|strong="H3068"\w* \w name|strong="H8034"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w shed|strong="H8210"\w* \w much|strong="H7227"\w* \w blood|strong="H1818"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* earth \w in|strong="H5921"\w* \w my|strong="H3068"\w* \w sight|strong="H6440"\w*. +\v 9 \w Behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w born|strong="H3205"\w* \w to|strong="H3478"\w* \w you|strong="H3588"\w*, \w who|strong="H3605"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w peace|strong="H7965"\w*. \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w him|strong="H5414"\w* \w rest|strong="H5117"\w* \w from|strong="H5921"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* enemies \w all|strong="H3605"\w* \w around|strong="H5439"\w*; \w for|strong="H3588"\w* \w his|strong="H3605"\w* \w name|strong="H8034"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w Solomon|strong="H8010"\w*, \w and|strong="H1121"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w peace|strong="H7965"\w* \w and|strong="H1121"\w* \w quietness|strong="H8253"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w days|strong="H3117"\w*. +\v 10 \w He|strong="H1931"\w* \w shall|strong="H1121"\w* \w build|strong="H1129"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w for|strong="H5704"\w* \w my|strong="H5921"\w* \w name|strong="H8034"\w*; \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w my|strong="H5921"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w I|strong="H5704"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w his|strong="H5921"\w* \w father|strong="H1121"\w*; \w and|strong="H1121"\w* \w I|strong="H5704"\w* \w will|strong="H1961"\w* \w establish|strong="H3559"\w* \w the|strong="H5921"\w* \w throne|strong="H3678"\w* \w of|strong="H1121"\w* \w his|strong="H5921"\w* \w kingdom|strong="H4438"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w forever|strong="H5769"\w*.’ +\v 11 \w Now|strong="H6258"\w*, \w my|strong="H3068"\w* \w son|strong="H1121"\w*, \w may|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H5921"\w* \w and|strong="H1121"\w* \w prosper|strong="H6743"\w* \w you|strong="H5921"\w*, \w and|strong="H1121"\w* \w build|strong="H1129"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w as|strong="H1961"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w concerning|strong="H5921"\w* \w you|strong="H5921"\w*. +\v 12 \w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w discretion|strong="H7922"\w* \w and|strong="H3478"\w* \w understanding|strong="H7922"\w*, \w and|strong="H3478"\w* \w put|strong="H5414"\w* \w you|strong="H5414"\w* \w in|strong="H5921"\w* \w charge|strong="H5921"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w so|strong="H5414"\w* \w that|strong="H3068"\w* \w you|strong="H5414"\w* \w may|strong="H3068"\w* \w keep|strong="H8104"\w* \w the|strong="H5921"\w* \w law|strong="H8451"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 13 \w Then|strong="H6213"\w* \w you|strong="H6680"\w* \w will|strong="H3068"\w* \w prosper|strong="H6743"\w*, if \w you|strong="H6680"\w* \w observe|strong="H8104"\w* \w to|strong="H3478"\w* \w do|strong="H6213"\w* \w the|strong="H5921"\w* \w statutes|strong="H2706"\w* \w and|strong="H4872"\w* \w the|strong="H5921"\w* \w ordinances|strong="H4941"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w gave|strong="H6680"\w* \w Moses|strong="H4872"\w* \w concerning|strong="H5921"\w* \w Israel|strong="H3478"\w*. \w Be|strong="H3068"\w* \w strong|strong="H2388"\w* \w and|strong="H4872"\w* \w courageous|strong="H2388"\w*. Don’t \w be|strong="H3068"\w* \w afraid|strong="H3372"\w* \w and|strong="H4872"\w* don’t \w be|strong="H3068"\w* \w dismayed|strong="H2865"\w*. +\v 14 \w Now|strong="H1961"\w*, \w behold|strong="H2009"\w*, \w in|strong="H5921"\w* \w my|strong="H3068"\w* \w affliction|strong="H6040"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w prepared|strong="H3559"\w* \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w one|strong="H1961"\w* \w hundred|strong="H3967"\w* thousand \w talents|strong="H3603"\w*\f + \fr 22:14 \ft A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 100,000 talents is about 3 metric tons\f* \w of|strong="H1004"\w* \w gold|strong="H2091"\w*, \w one|strong="H1961"\w* million \w talents|strong="H3603"\w*\f + \fr 22:14 \ft about 30,000 metric tons\f* \w of|strong="H1004"\w* \w silver|strong="H3701"\w*, \w and|strong="H3967"\w* \w bronze|strong="H5178"\w* \w and|strong="H3967"\w* \w iron|strong="H1270"\w* \w without|strong="H1004"\w* \w weight|strong="H4948"\w*; \w for|strong="H3588"\w* \w it|strong="H5921"\w* \w is|strong="H3068"\w* \w in|strong="H5921"\w* \w abundance|strong="H7230"\w*. \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w also|strong="H3068"\w* \w prepared|strong="H3559"\w* \w timber|strong="H6086"\w* \w and|strong="H3967"\w* stone; \w and|strong="H3967"\w* \w you|strong="H3588"\w* \w may|strong="H1961"\w* \w add|strong="H3254"\w* \w to|strong="H3068"\w* \w them|strong="H5921"\w*. +\v 15 \w There|strong="H3605"\w* \w are|strong="H2450"\w* \w also|strong="H6213"\w* \w workmen|strong="H4399"\w* \w with|strong="H5973"\w* \w you|strong="H3605"\w* \w in|strong="H6213"\w* \w abundance|strong="H7230"\w*—cutters \w and|strong="H6086"\w* \w workers|strong="H4399"\w* \w of|strong="H7230"\w* stone \w and|strong="H6086"\w* \w timber|strong="H6086"\w*, \w and|strong="H6086"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H7230"\w* \w men|strong="H2450"\w* \w who|strong="H3605"\w* \w are|strong="H2450"\w* \w skillful|strong="H2450"\w* \w in|strong="H6213"\w* \w every|strong="H3605"\w* kind \w of|strong="H7230"\w* \w work|strong="H4399"\w*; +\v 16 \w of|strong="H3068"\w* \w the|strong="H6213"\w* \w gold|strong="H2091"\w*, \w the|strong="H6213"\w* \w silver|strong="H3701"\w*, \w the|strong="H6213"\w* \w bronze|strong="H5178"\w*, \w and|strong="H6965"\w* \w the|strong="H6213"\w* \w iron|strong="H1270"\w*, \w there|strong="H1961"\w* \w is|strong="H3068"\w* \w no|strong="H6213"\w* \w number|strong="H4557"\w*. \w Arise|strong="H6965"\w* \w and|strong="H6965"\w* \w be|strong="H1961"\w* \w doing|strong="H6213"\w*, \w and|strong="H6965"\w* \w may|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w you|strong="H6213"\w*.” +\p +\v 17 \w David|strong="H1732"\w* \w also|strong="H1732"\w* \w commanded|strong="H6680"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w help|strong="H5826"\w* \w Solomon|strong="H8010"\w* \w his|strong="H3605"\w* \w son|strong="H1121"\w*, saying, +\v 18 “Isn’t \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*? Hasn’t \w he|strong="H3588"\w* \w given|strong="H5414"\w* \w you|strong="H3588"\w* \w rest|strong="H5117"\w* \w on|strong="H3427"\w* \w every|strong="H5439"\w* \w side|strong="H5439"\w*? \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w delivered|strong="H5414"\w* \w the|strong="H6440"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w into|strong="H3027"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w*; \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w is|strong="H3068"\w* \w subdued|strong="H3533"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w before|strong="H6440"\w* \w his|strong="H5414"\w* \w people|strong="H5971"\w*. +\v 19 \w Now|strong="H6258"\w* \w set|strong="H5414"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w and|strong="H6965"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w* \w to|strong="H3068"\w* \w follow|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \w Arise|strong="H6965"\w* \w therefore|strong="H6258"\w*, \w and|strong="H6965"\w* \w build|strong="H1129"\w* \w the|strong="H5414"\w* \w sanctuary|strong="H6944"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w*, \w to|strong="H3068"\w* \w bring|strong="H5414"\w* \w the|strong="H5414"\w* ark \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w* \w and|strong="H6965"\w* \w the|strong="H5414"\w* \w holy|strong="H6944"\w* \w vessels|strong="H3627"\w* \w of|strong="H1004"\w* \w God|strong="H3068"\w* \w into|strong="H5414"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w* \w that|strong="H5315"\w* \w is|strong="H3068"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w built|strong="H1129"\w* \w for|strong="H8034"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*.” +\c 23 +\p +\v 1 \w Now|strong="H3117"\w* \w David|strong="H1732"\w* \w was|strong="H1732"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w full|strong="H7646"\w* \w of|strong="H1121"\w* \w days|strong="H3117"\w*; \w and|strong="H1121"\w* \w he|strong="H3117"\w* \w made|strong="H4427"\w* \w Solomon|strong="H8010"\w* \w his|strong="H1732"\w* \w son|strong="H1121"\w* \w king|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*. +\v 2 \w He|strong="H3605"\w* \w gathered|strong="H3478"\w* together \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w Israel|strong="H3478"\w*, \w with|strong="H3548"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*. +\v 3 \w The|strong="H1961"\w* \w Levites|strong="H3881"\w* \w were|strong="H1961"\w* \w counted|strong="H5608"\w* \w from|strong="H1121"\w* \w thirty|strong="H7970"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*; \w and|strong="H1121"\w* \w their|strong="H1961"\w* \w number|strong="H4557"\w* \w by|strong="H8141"\w* \w their|strong="H1961"\w* \w polls|strong="H1538"\w*, \w man|strong="H1397"\w* \w by|strong="H8141"\w* \w man|strong="H1397"\w*, \w was|strong="H1961"\w* \w thirty-eight|strong="H7970"\w* thousand. +\v 4 David said, “\w Of|strong="H1004"\w* \w these|strong="H1004"\w*, \w twenty-four|strong="H6242"\w* thousand \w were|strong="H1004"\w* \w to|strong="H3068"\w* \w oversee|strong="H5329"\w* \w the|strong="H5921"\w* \w work|strong="H4399"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w six|strong="H8337"\w* thousand \w were|strong="H1004"\w* \w officers|strong="H7860"\w* \w and|strong="H3068"\w* \w judges|strong="H8199"\w*, +\v 5 four thousand \w were|strong="H3627"\w* \w doorkeepers|strong="H7778"\w*, \w and|strong="H3068"\w* four thousand \w praised|strong="H1984"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w the|strong="H6213"\w* \w instruments|strong="H3627"\w* \w which|strong="H3068"\w* \w I|strong="H3068"\w* \w made|strong="H6213"\w* \w for|strong="H6213"\w* \w giving|strong="H1984"\w* \w praise|strong="H1984"\w*.” +\p +\v 6 \w David|strong="H1732"\w* \w divided|strong="H2505"\w* \w them|strong="H1121"\w* \w into|strong="H2505"\w* \w divisions|strong="H4256"\w* according \w to|strong="H1121"\w* \w the|strong="H1732"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w*: Gershon, \w Kohath|strong="H6955"\w*, \w and|strong="H1121"\w* \w Merari|strong="H4847"\w*. +\p +\v 7 Of \w the|strong="H8096"\w* \w Gershonites|strong="H1649"\w*: \w Ladan|strong="H3936"\w* \w and|strong="H8096"\w* \w Shimei|strong="H8096"\w*. +\v 8 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Ladan|strong="H3936"\w*: \w Jehiel|strong="H3171"\w* \w the|strong="H1121"\w* \w chief|strong="H7218"\w*, \w Zetham|strong="H2241"\w*, \w and|strong="H1121"\w* \w Joel|strong="H3100"\w*, \w three|strong="H7969"\w*. +\v 9 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shimei|strong="H8096"\w*: \w Shelomoth|strong="H8013"\w*, \w Haziel|strong="H2381"\w*, \w and|strong="H1121"\w* \w Haran|strong="H2039"\w*, \w three|strong="H7969"\w*. These \w were|strong="H1121"\w* \w the|strong="H1121"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* fathers’ households \w of|strong="H1121"\w* \w Ladan|strong="H3936"\w*. +\v 10 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shimei|strong="H8096"\w*: \w Jahath|strong="H3189"\w*, \w Zina|strong="H2126"\w*, \w Jeush|strong="H3266"\w*, \w and|strong="H1121"\w* \w Beriah|strong="H1283"\w*. These four \w were|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shimei|strong="H8096"\w*. +\v 11 \w Jahath|strong="H3189"\w* \w was|strong="H1961"\w* \w the|strong="H1961"\w* \w chief|strong="H7218"\w*, \w and|strong="H1121"\w* \w Zizah|strong="H2125"\w* \w the|strong="H1961"\w* \w second|strong="H8145"\w*; \w but|strong="H3808"\w* \w Jeush|strong="H3266"\w* \w and|strong="H1121"\w* \w Beriah|strong="H1283"\w* didn’t \w have|strong="H1961"\w* \w many|strong="H7235"\w* \w sons|strong="H1121"\w*; \w therefore|strong="H1961"\w* \w they|strong="H3808"\w* \w became|strong="H1961"\w* \w a|strong="H3068"\w* fathers’ \w house|strong="H1004"\w* \w in|strong="H1004"\w* \w one|strong="H3808"\w* \w reckoning|strong="H6486"\w*. +\p +\v 12 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Kohath|strong="H6955"\w*: \w Amram|strong="H6019"\w*, \w Izhar|strong="H3324"\w*, \w Hebron|strong="H2275"\w*, \w and|strong="H1121"\w* \w Uzziel|strong="H5816"\w*, four. +\v 13 \w The|strong="H6440"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Amram|strong="H6019"\w*: Aaron \w and|strong="H1121"\w* \w Moses|strong="H4872"\w*; \w and|strong="H1121"\w* Aaron \w was|strong="H3068"\w* separated \w that|strong="H1931"\w* \w he|strong="H1931"\w* \w should|strong="H3068"\w* \w sanctify|strong="H6942"\w* \w the|strong="H6440"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w*, \w he|strong="H1931"\w* \w and|strong="H1121"\w* \w his|strong="H3068"\w* \w sons|strong="H1121"\w* \w forever|strong="H5769"\w*, \w to|strong="H5704"\w* \w burn|strong="H6999"\w* \w incense|strong="H6999"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w to|strong="H5704"\w* \w minister|strong="H8334"\w* \w to|strong="H5704"\w* \w him|strong="H6440"\w*, \w and|strong="H1121"\w* \w to|strong="H5704"\w* \w bless|strong="H1288"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w* \w forever|strong="H5769"\w*. +\v 14 \w But|strong="H5921"\w* \w as|strong="H1121"\w* \w for|strong="H5921"\w* \w Moses|strong="H4872"\w* \w the|strong="H5921"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* God, \w his|strong="H7121"\w* \w sons|strong="H1121"\w* \w were|strong="H1121"\w* \w named|strong="H7121"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w tribe|strong="H7626"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w*. +\v 15 \w The|strong="H4872"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Moses|strong="H4872"\w*: \w Gershom|strong="H1647"\w* \w and|strong="H1121"\w* Eliezer. +\v 16 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Gershom|strong="H1647"\w*: \w Shebuel|strong="H7619"\w* \w the|strong="H1121"\w* \w chief|strong="H7218"\w*. +\v 17 \w The|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Eliezer \w was|strong="H1961"\w* \w Rehabiah|strong="H7345"\w* \w the|strong="H1961"\w* \w chief|strong="H7218"\w*; \w and|strong="H1121"\w* Eliezer \w had|strong="H1961"\w* \w no|strong="H3808"\w* other \w sons|strong="H1121"\w*, \w but|strong="H3808"\w* \w the|strong="H1961"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Rehabiah|strong="H7345"\w* \w were|strong="H1961"\w* \w very|strong="H4605"\w* \w many|strong="H7235"\w*. +\v 18 \w The|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Izhar|strong="H3324"\w*: \w Shelomith|strong="H8019"\w* \w the|strong="H1121"\w* \w chief|strong="H7218"\w*. +\v 19 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Hebron|strong="H2275"\w*: \w Jeriah|strong="H3404"\w* \w the|strong="H1121"\w* \w chief|strong="H7218"\w*, Amariah \w the|strong="H1121"\w* \w second|strong="H8145"\w*, \w Jahaziel|strong="H3166"\w* \w the|strong="H1121"\w* \w third|strong="H7992"\w*, \w and|strong="H1121"\w* \w Jekameam|strong="H3360"\w* \w the|strong="H1121"\w* \w fourth|strong="H7243"\w*. +\v 20 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Uzziel|strong="H5816"\w*: \w Micah|strong="H4318"\w* \w the|strong="H1121"\w* \w chief|strong="H7218"\w*, \w and|strong="H1121"\w* \w Isshiah|strong="H3449"\w* \w the|strong="H1121"\w* \w second|strong="H8145"\w*. +\p +\v 21 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w*: \w Mahli|strong="H4249"\w* \w and|strong="H1121"\w* \w Mushi|strong="H4187"\w*. \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Mahli|strong="H4249"\w*: Eleazar \w and|strong="H1121"\w* \w Kish|strong="H7027"\w*. +\v 22 Eleazar \w died|strong="H4191"\w*, \w and|strong="H1121"\w* \w had|strong="H1961"\w* \w no|strong="H3808"\w* \w sons|strong="H1121"\w*, \w but|strong="H3588"\w* \w daughters|strong="H1323"\w* \w only|strong="H3588"\w*; \w and|strong="H1121"\w* \w their|strong="H5375"\w* \w relatives|strong="H1121"\w*, \w the|strong="H3588"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Kish|strong="H7027"\w*, \w took|strong="H5375"\w* \w them|strong="H5375"\w* \w as|strong="H1961"\w* wives. +\v 23 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Mushi|strong="H4187"\w*: \w Mahli|strong="H4249"\w*, \w Eder|strong="H5740"\w*, \w and|strong="H1121"\w* \w Jeremoth|strong="H3406"\w*, \w three|strong="H7969"\w*. +\p +\v 24 \w These|strong="H6213"\w* \w were|strong="H1121"\w* \w the|strong="H6213"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w* \w after|strong="H1004"\w* \w their|strong="H3068"\w* fathers’ \w houses|strong="H1004"\w*, \w even|strong="H6213"\w* \w the|strong="H6213"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* fathers’ \w houses|strong="H1004"\w* \w of|strong="H1121"\w* \w those|strong="H1121"\w* \w who|strong="H3068"\w* \w were|strong="H1121"\w* \w counted|strong="H6485"\w* \w individually|strong="H1538"\w*, \w in|strong="H8141"\w* \w the|strong="H6213"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w names|strong="H8034"\w* \w by|strong="H8141"\w* \w their|strong="H3068"\w* \w polls|strong="H1538"\w*, \w who|strong="H3068"\w* \w did|strong="H6213"\w* \w the|strong="H6213"\w* \w work|strong="H4399"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w from|strong="H1121"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*. +\v 25 \w For|strong="H3588"\w* \w David|strong="H1732"\w* said, “\w Yahweh|strong="H3068"\w*, \w the|strong="H3588"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w has|strong="H3068"\w* \w given|strong="H5117"\w* \w rest|strong="H5117"\w* \w to|strong="H5704"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*; \w and|strong="H3478"\w* \w he|strong="H3588"\w* \w dwells|strong="H7931"\w* \w in|strong="H3478"\w* \w Jerusalem|strong="H3389"\w* \w forever|strong="H5769"\w*. +\v 26 \w Also|strong="H1571"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w will|strong="H1571"\w* \w no|strong="H3605"\w* longer need \w to|strong="H5375"\w* \w carry|strong="H5375"\w* \w the|strong="H3605"\w* \w tabernacle|strong="H4908"\w* \w and|strong="H3881"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w vessels|strong="H3627"\w* \w for|strong="H3627"\w* \w its|strong="H3605"\w* \w service|strong="H5656"\w*.” +\v 27 \w For|strong="H3588"\w* \w by|strong="H8141"\w* \w the|strong="H3588"\w* \w last|strong="H3588"\w* \w words|strong="H1697"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w* \w the|strong="H3588"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3881"\w* \w were|strong="H1121"\w* \w counted|strong="H4557"\w*, \w from|strong="H1121"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*. +\v 28 \w For|strong="H3588"\w* \w their|strong="H3605"\w* \w duty|strong="H5921"\w* \w was|strong="H3068"\w* \w to|strong="H3068"\w* \w wait|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*—\w in|strong="H5921"\w* \w the|strong="H3605"\w* \w courts|strong="H2691"\w*, \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w rooms|strong="H3957"\w*, \w and|strong="H1121"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w purifying|strong="H2893"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w*, \w even|strong="H3588"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w God|strong="H3068"\w*’s \w house|strong="H1004"\w*; +\v 29 \w for|strong="H3605"\w* \w the|strong="H3605"\w* show \w bread|strong="H3899"\w* \w also|strong="H3899"\w*, \w and|strong="H3899"\w* \w for|strong="H3605"\w* \w the|strong="H3605"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w* \w for|strong="H3605"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, whether \w of|strong="H3605"\w* \w unleavened|strong="H4682"\w* \w wafers|strong="H7550"\w*, \w or|strong="H3899"\w* \w of|strong="H3605"\w* \w that|strong="H3605"\w* \w which|strong="H3899"\w* \w is|strong="H3605"\w* baked \w in|strong="H3899"\w* \w the|strong="H3605"\w* \w pan|strong="H4227"\w*, \w or|strong="H3899"\w* \w of|strong="H3605"\w* \w that|strong="H3605"\w* \w which|strong="H3899"\w* \w is|strong="H3605"\w* soaked, \w and|strong="H3899"\w* \w for|strong="H3605"\w* \w all|strong="H3605"\w* \w measurements|strong="H4060"\w* \w of|strong="H3605"\w* quantity \w and|strong="H3899"\w* \w size|strong="H4060"\w*; +\v 30 \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w stand|strong="H5975"\w* \w every|strong="H1242"\w* \w morning|strong="H1242"\w* \w to|strong="H3068"\w* \w thank|strong="H3034"\w* \w and|strong="H3068"\w* \w praise|strong="H1984"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w likewise|strong="H3651"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w evening|strong="H6153"\w*; +\v 31 \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w offer|strong="H5927"\w* \w all|strong="H3605"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w Sabbaths|strong="H7676"\w*, \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w new|strong="H2320"\w* \w moons|strong="H2320"\w*, \w and|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w set|strong="H5927"\w* \w feasts|strong="H4150"\w*, \w in|strong="H5921"\w* \w number|strong="H4557"\w* \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w ordinance|strong="H4941"\w* \w concerning|strong="H5921"\w* \w them|strong="H5921"\w*, \w continually|strong="H8548"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*; +\v 32 \w and|strong="H1121"\w* \w that|strong="H3068"\w* \w they|strong="H3068"\w* \w should|strong="H3068"\w* \w keep|strong="H8104"\w* \w the|strong="H8104"\w* \w duty|strong="H4931"\w* \w of|strong="H1121"\w* \w the|strong="H8104"\w* Tent \w of|strong="H1121"\w* \w Meeting|strong="H4150"\w*, \w the|strong="H8104"\w* \w duty|strong="H4931"\w* \w of|strong="H1121"\w* \w the|strong="H8104"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w*, \w and|strong="H1121"\w* \w the|strong="H8104"\w* \w duty|strong="H4931"\w* \w of|strong="H1121"\w* \w the|strong="H8104"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w their|strong="H3068"\w* \w brothers|strong="H1121"\w* \w for|strong="H3068"\w* \w the|strong="H8104"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\c 24 +\p +\v 1 These \w were|strong="H1121"\w* \w the|strong="H1121"\w* \w divisions|strong="H4256"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron. \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron: \w Nadab|strong="H5070"\w*, Abihu, Eleazar, \w and|strong="H1121"\w* Ithamar. +\v 2 \w But|strong="H3808"\w* \w Nadab|strong="H5070"\w* \w and|strong="H1121"\w* Abihu \w died|strong="H4191"\w* \w before|strong="H6440"\w* \w their|strong="H6440"\w* \w father|strong="H1121"\w*, \w and|strong="H1121"\w* \w had|strong="H1961"\w* \w no|strong="H3808"\w* \w children|strong="H1121"\w*; \w therefore|strong="H1961"\w* Eleazar \w and|strong="H1121"\w* Ithamar \w served|strong="H3547"\w* \w as|strong="H3547"\w* \w priests|strong="H3547"\w*. +\v 3 \w David|strong="H1732"\w*, \w with|strong="H1732"\w* \w Zadok|strong="H6659"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Eleazar \w and|strong="H1121"\w* Ahimelech \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Ithamar, \w divided|strong="H2505"\w* \w them|strong="H1121"\w* \w according|strong="H4480"\w* \w to|strong="H1121"\w* \w their|strong="H1732"\w* ordering \w in|strong="H1121"\w* \w their|strong="H1732"\w* \w service|strong="H5656"\w*. +\v 4 \w There|strong="H4672"\w* \w were|strong="H1121"\w* \w more|strong="H4480"\w* \w chief|strong="H7218"\w* \w men|strong="H1121"\w* \w found|strong="H4672"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Eleazar \w than|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Ithamar; \w and|strong="H1121"\w* they \w were|strong="H1121"\w* \w divided|strong="H2505"\w* \w like|strong="H1004"\w* \w this|strong="H1004"\w*: \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Eleazar \w there|strong="H4672"\w* \w were|strong="H1121"\w* \w sixteen|strong="H8337"\w*, \w heads|strong="H7218"\w* \w of|strong="H1121"\w* fathers’ \w houses|strong="H1004"\w*; \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Ithamar, \w according|strong="H4480"\w* \w to|strong="H1121"\w* \w their|strong="H4480"\w* fathers’ \w houses|strong="H1004"\w*, \w eight|strong="H8083"\w*. +\v 5 \w Thus|strong="H1961"\w* \w they|strong="H3588"\w* \w were|strong="H1961"\w* \w divided|strong="H2505"\w* impartially \w by|strong="H1961"\w* drawing \w lots|strong="H1486"\w*; \w for|strong="H3588"\w* \w there|strong="H1961"\w* \w were|strong="H1961"\w* \w princes|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w sanctuary|strong="H6944"\w* \w and|strong="H1121"\w* \w princes|strong="H8269"\w* \w of|strong="H1121"\w* God, both \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Eleazar, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Ithamar. +\v 6 \w Shemaiah|strong="H8098"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nethanel|strong="H5417"\w* \w the|strong="H6440"\w* \w scribe|strong="H5608"\w*, \w who|strong="H3548"\w* \w was|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w Levites|strong="H3881"\w*, \w wrote|strong="H3789"\w* \w them|strong="H6440"\w* \w in|strong="H1004"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*, \w the|strong="H6440"\w* \w princes|strong="H8269"\w*, \w Zadok|strong="H6659"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w*, Ahimelech \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Abiathar, \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* fathers’ \w households|strong="H1004"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w priests|strong="H3548"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w Levites|strong="H3881"\w*; \w one|strong="H4480"\w* fathers’ \w house|strong="H1004"\w* \w being|strong="H1004"\w* \w taken|strong="H5608"\w* \w for|strong="H6440"\w* Eleazar, \w and|strong="H1121"\w* \w one|strong="H4480"\w* \w taken|strong="H5608"\w* \w for|strong="H6440"\w* Ithamar. +\p +\v 7 Now \w the|strong="H3318"\w* \w first|strong="H7223"\w* \w lot|strong="H1486"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w Jehoiarib|strong="H3080"\w*, \w the|strong="H3318"\w* \w second|strong="H8145"\w* \w to|strong="H3318"\w* \w Jedaiah|strong="H3048"\w*, +\v 8 \w the|strong="H7243"\w* \w third|strong="H7992"\w* \w to|strong="H7243"\w* \w Harim|strong="H2766"\w*, \w the|strong="H7243"\w* \w fourth|strong="H7243"\w* \w to|strong="H7243"\w* \w Seorim|strong="H8188"\w*, +\v 9 \w the|strong="H4441"\w* \w fifth|strong="H2549"\w* \w to|strong="H2549"\w* \w Malchijah|strong="H4441"\w*, \w the|strong="H4441"\w* \w sixth|strong="H8345"\w* \w to|strong="H2549"\w* \w Mijamin|strong="H4326"\w*, +\v 10 the \w seventh|strong="H7637"\w* \w to|strong="H8066"\w* \w Hakkoz|strong="H6976"\w*, the \w eighth|strong="H8066"\w* \w to|strong="H8066"\w* Abijah, +\v 11 \w the|strong="H3442"\w* \w ninth|strong="H8671"\w* \w to|strong="H6224"\w* \w Jeshua|strong="H3442"\w*, \w the|strong="H3442"\w* \w tenth|strong="H6224"\w* \w to|strong="H6224"\w* \w Shecaniah|strong="H7935"\w*, +\v 12 \w the|strong="H8147"\w* \w eleventh|strong="H6249"\w* \w to|strong="H6249"\w* Eliashib, \w the|strong="H8147"\w* \w twelfth|strong="H8147"\w* \w to|strong="H6249"\w* \w Jakim|strong="H3356"\w*, +\v 13 \w the|strong="H6240"\w* \w thirteenth|strong="H7969"\w* \w to|strong="H7969"\w* \w Huppah|strong="H2647"\w*, \w the|strong="H6240"\w* \w fourteenth|strong="H6240"\w* \w to|strong="H7969"\w* \w Jeshebeab|strong="H3428"\w*, +\v 14 \w the|strong="H6240"\w* \w fifteenth|strong="H2568"\w* \w to|strong="H2568"\w* \w Bilgah|strong="H1083"\w*, \w the|strong="H6240"\w* \w sixteenth|strong="H8337"\w* \w to|strong="H2568"\w* Immer, +\v 15 \w the|strong="H6240"\w* \w seventeenth|strong="H7651"\w* \w to|strong="H7651"\w* \w Hezir|strong="H2387"\w*, \w the|strong="H6240"\w* \w eighteenth|strong="H8083"\w* \w to|strong="H7651"\w* \w Happizzez|strong="H6483"\w*, +\v 16 \w the|strong="H6611"\w* \w nineteenth|strong="H8672"\w* \w to|strong="H6242"\w* \w Pethahiah|strong="H6611"\w*, \w the|strong="H6611"\w* \w twentieth|strong="H6242"\w* \w to|strong="H6242"\w* \w Jehezkel|strong="H3168"\w*, +\v 17 \w the|strong="H8147"\w* \w twenty-first|strong="H6242"\w* \w to|strong="H6242"\w* \w Jachin|strong="H3199"\w*, \w the|strong="H8147"\w* \w twenty-second|strong="H6242"\w* \w to|strong="H6242"\w* \w Gamul|strong="H1577"\w*, +\v 18 \w the|strong="H1806"\w* \w twenty-third|strong="H6242"\w* \w to|strong="H6242"\w* \w Delaiah|strong="H1806"\w*, \w and|strong="H6242"\w* \w the|strong="H1806"\w* \w twenty-fourth|strong="H6242"\w* \w to|strong="H6242"\w* \w Maaziah|strong="H4590"\w*. +\v 19 \w This|strong="H3068"\w* \w was|strong="H3068"\w* \w their|strong="H3068"\w* ordering \w in|strong="H3478"\w* \w their|strong="H3068"\w* \w service|strong="H5656"\w*, \w to|strong="H3478"\w* \w come|strong="H3478"\w* \w into|strong="H4941"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w according|strong="H4941"\w* \w to|strong="H3478"\w* \w the|strong="H3068"\w* \w ordinance|strong="H4941"\w* \w given|strong="H6680"\w* \w to|strong="H3478"\w* \w them|strong="H3027"\w* \w by|strong="H3027"\w* Aaron \w their|strong="H3068"\w* father, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w had|strong="H3068"\w* \w commanded|strong="H6680"\w* \w him|strong="H3027"\w*. +\p +\v 20 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w rest|strong="H3498"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w*: \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Amram|strong="H6019"\w*, \w Shubael|strong="H7619"\w*; \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shubael|strong="H7619"\w*, \w Jehdeiah|strong="H3165"\w*. +\v 21 \w Of|strong="H1121"\w* \w Rehabiah|strong="H7345"\w*: \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Rehabiah|strong="H7345"\w*, \w Isshiah|strong="H3449"\w* \w the|strong="H1121"\w* \w chief|strong="H7218"\w*. +\v 22 \w Of|strong="H1121"\w* \w the|strong="H1121"\w* \w Izharites|strong="H3325"\w*, \w Shelomoth|strong="H8013"\w*; \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shelomoth|strong="H8013"\w*, \w Jahath|strong="H3189"\w*. +\v 23 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Hebron: \w Jeriah|strong="H3404"\w*, Amariah \w the|strong="H1121"\w* \w second|strong="H8145"\w*, \w Jahaziel|strong="H3166"\w* \w the|strong="H1121"\w* \w third|strong="H7992"\w*, \w and|strong="H1121"\w* \w Jekameam|strong="H3360"\w* \w the|strong="H1121"\w* \w fourth|strong="H7243"\w*. +\v 24 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Uzziel|strong="H5816"\w*: \w Micah|strong="H4318"\w*; \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Micah|strong="H4318"\w*, \w Shamir|strong="H8053"\w*. +\v 25 \w The|strong="H1121"\w* brother \w of|strong="H1121"\w* \w Micah|strong="H4318"\w*: \w Isshiah|strong="H3449"\w*; \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Isshiah|strong="H3449"\w*, \w Zechariah|strong="H2148"\w*. +\v 26 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w*: \w Mahli|strong="H4249"\w* \w and|strong="H1121"\w* \w Mushi|strong="H4187"\w*. \w The|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jaaziah|strong="H3269"\w*: \w Beno|strong="H1121"\w*. +\v 27 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w* \w by|strong="H4847"\w* \w Jaaziah|strong="H3269"\w*: \w Beno|strong="H1121"\w*, \w Shoham|strong="H7719"\w*, \w Zaccur|strong="H2139"\w*, \w and|strong="H1121"\w* \w Ibri|strong="H5681"\w*. +\v 28 \w Of|strong="H1121"\w* \w Mahli|strong="H4249"\w*: Eleazar, \w who|strong="H1121"\w* \w had|strong="H1961"\w* \w no|strong="H3808"\w* \w sons|strong="H1121"\w*. +\v 29 \w Of|strong="H1121"\w* \w Kish|strong="H7027"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kish|strong="H7027"\w*: \w Jerahmeel|strong="H3396"\w*. +\v 30 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Mushi|strong="H4187"\w*: \w Mahli|strong="H4249"\w*, \w Eder|strong="H5740"\w*, \w and|strong="H1121"\w* \w Jerimoth|strong="H3406"\w*. \w These|strong="H3881"\w* \w were|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Levites|strong="H3881"\w* \w after|strong="H1004"\w* \w their|strong="H3881"\w* fathers’ \w houses|strong="H1004"\w*. +\v 31 \w These|strong="H1992"\w* \w likewise|strong="H1571"\w* \w cast|strong="H5307"\w* \w lots|strong="H1486"\w* \w even|strong="H1571"\w* \w as|strong="H1571"\w* \w their|strong="H6440"\w* \w brothers|strong="H1121"\w* \w the|strong="H6440"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w in|strong="H4428"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*, \w Zadok|strong="H6659"\w*, Ahimelech, \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* fathers’ \w households|strong="H3881"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w priests|strong="H3548"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w Levites|strong="H3881"\w*, \w the|strong="H6440"\w* fathers’ \w households|strong="H3881"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w chief|strong="H7218"\w* \w even|strong="H1571"\w* \w as|strong="H1571"\w* \w those|strong="H1992"\w* \w of|strong="H1121"\w* \w his|strong="H1732"\w* \w younger|strong="H6996"\w* brother. +\c 25 +\p +\v 1 \w Moreover|strong="H1961"\w*, \w David|strong="H1732"\w* \w and|strong="H1121"\w* \w the|strong="H1961"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w army|strong="H6635"\w* set apart \w for|strong="H1121"\w* \w the|strong="H1961"\w* \w service|strong="H5656"\w* certain \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Asaph, \w of|strong="H1121"\w* \w Heman|strong="H1968"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeduthun|strong="H3038"\w*, \w who|strong="H1121"\w* \w were|strong="H1961"\w* \w to|strong="H1961"\w* \w prophesy|strong="H5030"\w* \w with|strong="H1732"\w* \w harps|strong="H3658"\w*, \w with|strong="H1732"\w* stringed instruments, \w and|strong="H1121"\w* \w with|strong="H1732"\w* \w cymbals|strong="H4700"\w*. \w The|strong="H1961"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w those|strong="H1121"\w* \w who|strong="H1121"\w* \w did|strong="H1732"\w* \w the|strong="H1961"\w* \w work|strong="H4399"\w* according \w to|strong="H1961"\w* \w their|strong="H1961"\w* \w service|strong="H5656"\w* \w was|strong="H1961"\w*: +\v 2 \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Asaph: \w Zaccur|strong="H2139"\w*, \w Joseph|strong="H3130"\w*, \w Nethaniah|strong="H5418"\w*, \w and|strong="H1121"\w* Asharelah. \w The|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Asaph \w were|strong="H1121"\w* \w under|strong="H5921"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* Asaph, \w who|strong="H1121"\w* \w prophesied|strong="H5012"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w order|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*. +\v 3 \w Of|strong="H1121"\w* \w Jeduthun|strong="H3038"\w*, \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeduthun|strong="H3038"\w*: \w Gedaliah|strong="H1436"\w*, \w Zeri|strong="H6874"\w*, \w Jeshaiah|strong="H3470"\w*, Shimei, \w Hashabiah|strong="H2811"\w*, \w and|strong="H1121"\w* \w Mattithiah|strong="H4993"\w*, \w six|strong="H8337"\w*, \w under|strong="H5921"\w* \w the|strong="H5921"\w* \w hands|strong="H3027"\w* \w of|strong="H1121"\w* \w their|strong="H3068"\w* \w father|strong="H1121"\w* \w Jeduthun|strong="H3038"\w*, \w who|strong="H3068"\w* \w prophesied|strong="H5012"\w* \w in|strong="H5921"\w* \w giving|strong="H3034"\w* \w thanks|strong="H3034"\w* \w and|strong="H1121"\w* \w praising|strong="H1984"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w the|strong="H5921"\w* \w harp|strong="H3658"\w*. +\v 4 \w Of|strong="H1121"\w* \w Heman|strong="H1968"\w*, \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Heman|strong="H1968"\w*: \w Bukkiah|strong="H1232"\w*, \w Mattaniah|strong="H4983"\w*, \w Uzziel|strong="H5816"\w*, \w Shebuel|strong="H7619"\w*, \w Jerimoth|strong="H3406"\w*, \w Hananiah|strong="H2608"\w*, \w Hanani|strong="H2607"\w*, Eliathah, \w Giddalti|strong="H1437"\w*, \w Romamti-Ezer|strong="H7320"\w*, \w Joshbekashah|strong="H3436"\w*, \w Mallothi|strong="H4413"\w*, \w Hothir|strong="H1956"\w*, \w and|strong="H1121"\w* \w Mahazioth|strong="H4238"\w*. +\v 5 \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w were|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Heman|strong="H1968"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w seer|strong="H2374"\w* \w in|strong="H4428"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H1121"\w* \w God|strong="H5414"\w*, \w to|strong="H5414"\w* \w lift|strong="H7311"\w* \w up|strong="H7311"\w* \w the|strong="H3605"\w* \w horn|strong="H7161"\w*. \w God|strong="H5414"\w* \w gave|strong="H5414"\w* \w to|strong="H5414"\w* \w Heman|strong="H1968"\w* \w fourteen|strong="H6240"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w three|strong="H7969"\w* \w daughters|strong="H1323"\w*. +\v 6 \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w were|strong="H3027"\w* \w under|strong="H5921"\w* \w the|strong="H3605"\w* \w hands|strong="H3027"\w* \w of|strong="H4428"\w* \w their|strong="H3605"\w* father \w for|strong="H5921"\w* \w song|strong="H7892"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w with|strong="H1004"\w* \w cymbals|strong="H4700"\w*, stringed \w instruments|strong="H7892"\w*, \w and|strong="H3068"\w* \w harps|strong="H3658"\w*, \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w of|strong="H4428"\w* \w God|strong="H3068"\w*’s \w house|strong="H1004"\w*: Asaph, \w Jeduthun|strong="H3038"\w*, \w and|strong="H3068"\w* \w Heman|strong="H1968"\w* \w being|strong="H1004"\w* \w under|strong="H5921"\w* \w the|strong="H3605"\w* \w order|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. +\v 7 \w The|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H3068"\w* \w them|strong="H1961"\w*, \w with|strong="H5973"\w* \w their|strong="H3605"\w* brothers \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w instructed|strong="H3925"\w* \w in|strong="H3068"\w* \w singing|strong="H7892"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w even|strong="H3068"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w skillful|strong="H3925"\w*, \w was|strong="H3068"\w* \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* \w eighty-eight|strong="H8084"\w*. +\v 8 They \w cast|strong="H5307"\w* \w lots|strong="H1486"\w* \w for|strong="H5973"\w* \w their|strong="H5307"\w* \w offices|strong="H4931"\w*, \w all|strong="H1419"\w* \w alike|strong="H5973"\w*, \w the|strong="H5973"\w* \w small|strong="H6996"\w* \w as|strong="H5973"\w* \w well|strong="H5980"\w* \w as|strong="H5973"\w* \w the|strong="H5973"\w* \w great|strong="H1419"\w*, \w the|strong="H5973"\w* teacher \w as|strong="H5973"\w* \w well|strong="H5980"\w* \w as|strong="H5973"\w* \w the|strong="H5973"\w* student. +\p +\v 9 Now \w the|strong="H3318"\w* \w first|strong="H7223"\w* \w lot|strong="H1486"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w for|strong="H1121"\w* Asaph \w to|strong="H3318"\w* \w Joseph|strong="H3130"\w*; \w the|strong="H3318"\w* \w second|strong="H8145"\w* \w to|strong="H3318"\w* \w Gedaliah|strong="H1436"\w*, \w he|strong="H1931"\w* \w and|strong="H1121"\w* \w his|strong="H3318"\w* \w brothers|strong="H1121"\w* \w and|strong="H1121"\w* \w sons|strong="H1121"\w* \w were|strong="H1121"\w* \w twelve|strong="H8147"\w*; +\v 10 \w the|strong="H1121"\w* \w third|strong="H7992"\w* \w to|strong="H1121"\w* \w Zaccur|strong="H2139"\w*, \w his|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*; +\v 11 \w the|strong="H1121"\w* \w fourth|strong="H7243"\w* \w to|strong="H1121"\w* \w Izri|strong="H3339"\w*, \w his|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*; +\v 12 \w the|strong="H1121"\w* \w fifth|strong="H2549"\w* \w to|strong="H1121"\w* \w Nethaniah|strong="H5418"\w*, \w his|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*; +\v 13 \w the|strong="H1121"\w* \w sixth|strong="H8345"\w* \w to|strong="H1121"\w* \w Bukkiah|strong="H1232"\w*, \w his|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*; +\v 14 \w the|strong="H1121"\w* \w seventh|strong="H7637"\w* \w to|strong="H1121"\w* \w Jesharelah|strong="H3480"\w*, \w his|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*; +\v 15 \w the|strong="H3470"\w* \w eighth|strong="H8066"\w* \w to|strong="H1121"\w* \w Jeshaiah|strong="H3470"\w*, \w his|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*; +\v 16 \w the|strong="H1121"\w* \w ninth|strong="H8671"\w* \w to|strong="H1121"\w* \w Mattaniah|strong="H4983"\w*, \w his|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*; +\v 17 \w the|strong="H1121"\w* \w tenth|strong="H6224"\w* \w to|strong="H1121"\w* \w Shimei|strong="H8096"\w*, \w his|strong="H8096"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8096"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*; +\v 18 \w the|strong="H1121"\w* \w eleventh|strong="H6249"\w* \w to|strong="H1121"\w* \w Azarel|strong="H5832"\w*, \w his|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*; +\v 19 \w the|strong="H1121"\w* \w twelfth|strong="H8147"\w* \w to|strong="H1121"\w* \w Hashabiah|strong="H2811"\w*, \w his|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*; +\v 20 \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w thirteenth|strong="H7969"\w*, \w Shubael|strong="H7619"\w*, \w his|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*; +\v 21 \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w fourteenth|strong="H6240"\w*, \w Mattithiah|strong="H4993"\w*, \w his|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*; +\v 22 \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w fifteenth|strong="H2568"\w* \w to|strong="H1121"\w* \w Jeremoth|strong="H3406"\w*, \w his|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*; +\v 23 \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w sixteenth|strong="H8337"\w* \w to|strong="H1121"\w* \w Hananiah|strong="H2608"\w*, \w his|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*; +\v 24 \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w seventeenth|strong="H7651"\w* \w to|strong="H1121"\w* \w Joshbekashah|strong="H3436"\w*, \w his|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*; +\v 25 \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w eighteenth|strong="H8083"\w* \w to|strong="H1121"\w* \w Hanani|strong="H2607"\w*, \w his|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*; +\v 26 \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w nineteenth|strong="H8672"\w* \w to|strong="H1121"\w* \w Mallothi|strong="H4413"\w*, \w his|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*; +\v 27 \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w twentieth|strong="H6242"\w* \w to|strong="H1121"\w* Eliathah, \w his|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*; +\v 28 \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w twenty-first|strong="H6242"\w* \w to|strong="H1121"\w* \w Hothir|strong="H1956"\w*, \w his|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*; +\v 29 \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w twenty-second|strong="H6242"\w* \w to|strong="H1121"\w* \w Giddalti|strong="H1437"\w*, \w his|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*; +\v 30 \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w twenty-third|strong="H6242"\w* \w to|strong="H1121"\w* \w Mahazioth|strong="H4238"\w*, \w his|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*; +\v 31 \w for|strong="H1121"\w* \w the|strong="H1121"\w* \w twenty-fourth|strong="H6242"\w* \w to|strong="H1121"\w* \w Romamti-Ezer|strong="H7320"\w*, \w his|strong="H8147"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w twelve|strong="H8147"\w*. +\c 26 +\p +\v 1 \w For|strong="H1121"\w* \w the|strong="H4480"\w* \w divisions|strong="H4256"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w doorkeepers|strong="H7778"\w*: \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w Korahites|strong="H7145"\w*, \w Meshelemiah|strong="H4920"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kore|strong="H6981"\w*, \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Asaph. +\v 2 \w Meshelemiah|strong="H4920"\w* \w had|strong="H1121"\w* \w sons|strong="H1121"\w*: \w Zechariah|strong="H2148"\w* \w the|strong="H1121"\w* \w firstborn|strong="H1060"\w*, \w Jediael|strong="H3043"\w* \w the|strong="H1121"\w* \w second|strong="H8145"\w*, \w Zebadiah|strong="H2069"\w* \w the|strong="H1121"\w* \w third|strong="H7992"\w*, \w Jathniel|strong="H3496"\w* \w the|strong="H1121"\w* \w fourth|strong="H7243"\w*, +\v 3 \w Elam|strong="H5867"\w* \w the|strong="H3076"\w* \w fifth|strong="H2549"\w*, \w Jehohanan|strong="H3076"\w* \w the|strong="H3076"\w* \w sixth|strong="H8345"\w*, \w and|strong="H5867"\w* Eliehoenai \w the|strong="H3076"\w* \w seventh|strong="H7637"\w*. +\v 4 \w Obed-Edom|strong="H5654"\w* \w had|strong="H1121"\w* \w sons|strong="H1121"\w*: \w Shemaiah|strong="H8098"\w* \w the|strong="H8098"\w* \w firstborn|strong="H1060"\w*, \w Jehozabad|strong="H3075"\w* \w the|strong="H8098"\w* \w second|strong="H8145"\w*, \w Joah|strong="H3098"\w* \w the|strong="H8098"\w* \w third|strong="H7992"\w*, \w Sacar|strong="H7940"\w* \w the|strong="H8098"\w* \w fourth|strong="H7243"\w*, \w Nethanel|strong="H5417"\w* \w the|strong="H8098"\w* \w fifth|strong="H2549"\w*, +\v 5 \w Ammiel|strong="H5988"\w* \w the|strong="H3588"\w* \w sixth|strong="H8345"\w*, \w Issachar|strong="H3485"\w* \w the|strong="H3588"\w* \w seventh|strong="H7637"\w*, \w and|strong="H3485"\w* \w Peullethai|strong="H6469"\w* \w the|strong="H3588"\w* \w eighth|strong="H8066"\w*; \w for|strong="H3588"\w* God \w blessed|strong="H1288"\w* \w him|strong="H1288"\w*. +\v 6 \w Sons|strong="H1121"\w* \w were|strong="H1121"\w* \w also|strong="H1121"\w* \w born|strong="H3205"\w* \w to|strong="H3205"\w* \w Shemaiah|strong="H8098"\w* \w his|strong="H3588"\w* \w son|strong="H1121"\w*, \w who|strong="H1121"\w* \w ruled|strong="H4474"\w* over \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w their|strong="H1992"\w* \w father|strong="H3205"\w*; \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w were|strong="H1121"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H1121"\w* \w valor|strong="H2428"\w*. +\v 7 \w The|strong="H8098"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Shemaiah|strong="H8098"\w*: \w Othni|strong="H6273"\w*, \w Rephael|strong="H7501"\w*, \w Obed|strong="H5744"\w*, \w and|strong="H1121"\w* Elzabad, \w whose|strong="H1121"\w* \w relatives|strong="H1121"\w* \w were|strong="H1121"\w* \w valiant|strong="H2428"\w* \w men|strong="H1121"\w*, Elihu, \w and|strong="H1121"\w* \w Semachiah|strong="H5565"\w*. +\v 8 \w All|strong="H3605"\w* \w these|strong="H1992"\w* \w were|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Obed-Edom|strong="H5654"\w* \w with|strong="H3605"\w* \w their|strong="H3605"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w their|strong="H3605"\w* \w brothers|strong="H1121"\w*, \w able|strong="H2428"\w* \w men|strong="H1121"\w* \w in|strong="H1121"\w* \w strength|strong="H3581"\w* \w for|strong="H1121"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w*: \w sixty-two|strong="H8346"\w* \w of|strong="H1121"\w* \w Obed-Edom|strong="H5654"\w*. +\v 9 \w Meshelemiah|strong="H4920"\w* \w had|strong="H1121"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w brothers|strong="H1121"\w*, \w eighteen|strong="H8083"\w* \w valiant|strong="H2428"\w* \w men|strong="H1121"\w*. +\v 10 \w Also|strong="H1121"\w* \w Hosah|strong="H2621"\w*, \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w*, \w had|strong="H1961"\w* \w sons|strong="H1121"\w*: \w Shimri|strong="H8113"\w* \w the|strong="H3588"\w* \w chief|strong="H7218"\w* (\w for|strong="H3588"\w* \w though|strong="H3588"\w* \w he|strong="H3588"\w* \w was|strong="H1961"\w* \w not|strong="H3808"\w* \w the|strong="H3588"\w* \w firstborn|strong="H1060"\w*, \w yet|strong="H3588"\w* \w his|strong="H7760"\w* \w father|strong="H1121"\w* \w made|strong="H7760"\w* \w him|strong="H7760"\w* \w chief|strong="H7218"\w*), +\v 11 \w Hilkiah|strong="H2518"\w* \w the|strong="H3605"\w* \w second|strong="H8145"\w*, \w Tebaliah|strong="H2882"\w* \w the|strong="H3605"\w* \w third|strong="H7992"\w*, \w and|strong="H1121"\w* \w Zechariah|strong="H2148"\w* \w the|strong="H3605"\w* \w fourth|strong="H7243"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w brothers|strong="H1121"\w* \w of|strong="H1121"\w* \w Hosah|strong="H2621"\w* \w were|strong="H1121"\w* \w thirteen|strong="H7969"\w*. +\p +\v 12 \w Of|strong="H1004"\w* \w these|strong="H1004"\w* \w were|strong="H7218"\w* \w the|strong="H3068"\w* \w divisions|strong="H4256"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w doorkeepers|strong="H7778"\w*, \w even|strong="H3068"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w chief|strong="H7218"\w* \w men|strong="H1397"\w*, having \w offices|strong="H4931"\w* \w like|strong="H1004"\w* \w their|strong="H3068"\w* brothers, \w to|strong="H3068"\w* \w minister|strong="H8334"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 13 \w They|strong="H8179"\w* \w cast|strong="H5307"\w* \w lots|strong="H1486"\w*, \w the|strong="H1004"\w* \w small|strong="H6996"\w* \w as|strong="H1004"\w* well \w as|strong="H1004"\w* \w the|strong="H1004"\w* \w great|strong="H1419"\w*, according \w to|strong="H1004"\w* \w their|strong="H5307"\w* fathers’ \w houses|strong="H1004"\w*, \w for|strong="H1004"\w* \w every|strong="H8179"\w* \w gate|strong="H8179"\w*. +\v 14 \w The|strong="H3318"\w* \w lot|strong="H1486"\w* \w eastward|strong="H4217"\w* \w fell|strong="H5307"\w* \w to|strong="H3318"\w* \w Shelemiah|strong="H8018"\w*. \w Then|strong="H3318"\w* \w for|strong="H1121"\w* \w Zechariah|strong="H2148"\w* \w his|strong="H3318"\w* \w son|strong="H1121"\w*, \w a|strong="H3068"\w* \w wise|strong="H7922"\w* \w counselor|strong="H3289"\w*, \w they|strong="H3289"\w* \w cast|strong="H5307"\w* \w lots|strong="H1486"\w*; \w and|strong="H1121"\w* \w his|strong="H3318"\w* \w lot|strong="H1486"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w northward|strong="H6828"\w*. +\v 15 \w To|strong="H1121"\w* \w Obed-Edom|strong="H5654"\w* \w southward|strong="H5045"\w*; \w and|strong="H1121"\w* \w to|strong="H1121"\w* \w his|strong="H1121"\w* \w sons|strong="H1121"\w* \w the|strong="H1121"\w* storehouse. +\v 16 \w To|strong="H5927"\w* \w Shuppim|strong="H8206"\w* \w and|strong="H5927"\w* \w Hosah|strong="H2621"\w* \w westward|strong="H4628"\w*, \w by|strong="H5973"\w* \w the|strong="H5927"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* \w Shallecheth|strong="H7996"\w*, \w at|strong="H5927"\w* \w the|strong="H5927"\w* \w causeway|strong="H4546"\w* \w that|strong="H8179"\w* \w goes|strong="H5927"\w* \w up|strong="H5927"\w*, watchman opposite watchman. +\v 17 \w Eastward|strong="H4217"\w* \w were|strong="H3881"\w* \w six|strong="H8337"\w* \w Levites|strong="H3881"\w*, \w northward|strong="H6828"\w* four \w a|strong="H3068"\w* \w day|strong="H3117"\w*, \w southward|strong="H5045"\w* four \w a|strong="H3068"\w* \w day|strong="H3117"\w*, \w and|strong="H3117"\w* \w for|strong="H3117"\w* \w the|strong="H3117"\w* storehouse \w two|strong="H8147"\w* \w and|strong="H3117"\w* \w two|strong="H8147"\w*. +\v 18 \w For|strong="H8147"\w* \w Parbar|strong="H6503"\w* \w westward|strong="H4628"\w*, four \w at|strong="H8147"\w* \w the|strong="H8147"\w* \w causeway|strong="H4546"\w*, \w and|strong="H8147"\w* \w two|strong="H8147"\w* \w at|strong="H8147"\w* \w Parbar|strong="H6503"\w*. +\v 19 These \w were|strong="H1121"\w* \w the|strong="H1121"\w* \w divisions|strong="H4256"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w doorkeepers|strong="H7778"\w*; \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Korahites|strong="H7145"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w*. +\p +\v 20 \w Of|strong="H1004"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w*, Ahijah \w was|strong="H1004"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* treasures \w of|strong="H1004"\w* God’s \w house|strong="H1004"\w* \w and|strong="H1004"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* treasures \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w dedicated|strong="H6944"\w* \w things|strong="H6944"\w*. +\v 21 \w The|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Ladan|strong="H3936"\w*, \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w Gershonites|strong="H1649"\w* belonging \w to|strong="H1121"\w* \w Ladan|strong="H3936"\w*, \w the|strong="H1121"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* fathers’ households belonging \w to|strong="H1121"\w* \w Ladan|strong="H3936"\w* \w the|strong="H1121"\w* \w Gershonite|strong="H1649"\w*: \w Jehieli|strong="H3172"\w*. +\v 22 \w The|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehieli|strong="H3172"\w*: \w Zetham|strong="H2241"\w*, \w and|strong="H1121"\w* \w Joel|strong="H3100"\w* \w his|strong="H3068"\w* brother, \w over|strong="H5921"\w* \w the|strong="H5921"\w* treasures \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 23 Of the \w Amramites|strong="H6020"\w*, of the \w Izharites|strong="H3325"\w*, of the \w Hebronites|strong="H2276"\w*, of the \w Uzzielites|strong="H5817"\w*: +\v 24 \w Shebuel|strong="H7619"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Gershom|strong="H1647"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Moses|strong="H4872"\w*, \w was|strong="H4872"\w* \w ruler|strong="H5057"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* treasuries. +\v 25 \w His|strong="H3141"\w* \w brothers|strong="H1121"\w*: \w of|strong="H1121"\w* Eliezer, \w Rehabiah|strong="H7345"\w* \w his|strong="H3141"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w Jeshaiah|strong="H3470"\w* \w his|strong="H3141"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w Joram|strong="H3141"\w* \w his|strong="H3141"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w Zichri|strong="H2147"\w* \w his|strong="H3141"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w Shelomoth|strong="H8013"\w* \w his|strong="H3141"\w* \w son|strong="H1121"\w*. +\v 26 \w This|strong="H1931"\w* \w Shelomoth|strong="H8013"\w* \w and|strong="H3967"\w* \w his|strong="H3605"\w* brothers \w were|strong="H1732"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* treasuries \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w dedicated|strong="H6942"\w* \w things|strong="H6944"\w*, \w which|strong="H1931"\w* \w David|strong="H1732"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w and|strong="H3967"\w* \w the|strong="H3605"\w* \w heads|strong="H7218"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* fathers’ households, \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w over|strong="H5921"\w* thousands \w and|strong="H3967"\w* \w hundreds|strong="H3967"\w*, \w and|strong="H3967"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w*, \w had|strong="H1732"\w* \w dedicated|strong="H6942"\w*. +\v 27 \w They|strong="H3068"\w* \w dedicated|strong="H6942"\w* \w some|strong="H4480"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w plunder|strong="H7998"\w* won \w in|strong="H3068"\w* \w battles|strong="H4421"\w* \w to|strong="H3068"\w* \w repair|strong="H2388"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 28 \w All|strong="H3605"\w* \w that|strong="H7200"\w* \w Samuel|strong="H8050"\w* \w the|strong="H3605"\w* \w seer|strong="H7200"\w*, \w Saul|strong="H7586"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kish|strong="H7027"\w*, Abner \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ner|strong="H5369"\w*, \w and|strong="H1121"\w* \w Joab|strong="H3097"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w* \w had|strong="H7586"\w* \w dedicated|strong="H6942"\w*, \w whoever|strong="H3605"\w* \w had|strong="H7586"\w* \w dedicated|strong="H6942"\w* \w anything|strong="H3605"\w*, \w it|strong="H5921"\w* \w was|strong="H7586"\w* \w under|strong="H5921"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w Shelomoth|strong="H8019"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w brothers|strong="H1121"\w*. +\p +\v 29 \w Of|strong="H1121"\w* \w the|strong="H5921"\w* \w Izharites|strong="H3325"\w*, \w Chenaniah|strong="H3663"\w* \w and|strong="H1121"\w* \w his|strong="H5921"\w* \w sons|strong="H1121"\w* \w were|strong="H3478"\w* \w appointed|strong="H1121"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w outward|strong="H2435"\w* \w business|strong="H4399"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*, \w for|strong="H5921"\w* \w officers|strong="H7860"\w* \w and|strong="H1121"\w* \w judges|strong="H8199"\w*. +\v 30 \w Of|strong="H1121"\w* \w the|strong="H3605"\w* \w Hebronites|strong="H2276"\w*, \w Hashabiah|strong="H2811"\w* \w and|strong="H3967"\w* \w his|strong="H3605"\w* \w brothers|strong="H1121"\w*, \w one|strong="H3605"\w* thousand \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w valor|strong="H2428"\w*, \w had|strong="H3068"\w* \w the|strong="H3605"\w* \w oversight|strong="H6486"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w beyond|strong="H5676"\w* \w the|strong="H3605"\w* \w Jordan|strong="H3383"\w* \w westward|strong="H4628"\w*, \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w business|strong="H4399"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3967"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. +\v 31 \w Of|strong="H8141"\w* \w the|strong="H1875"\w* \w Hebronites|strong="H2276"\w*, \w Jerijah|strong="H3404"\w* \w was|strong="H1732"\w* \w the|strong="H1875"\w* \w chief|strong="H7218"\w* \w of|strong="H8141"\w* \w the|strong="H1875"\w* \w Hebronites|strong="H2276"\w*, according \w to|strong="H1732"\w* \w their|strong="H1875"\w* \w generations|strong="H8435"\w* \w by|strong="H8141"\w* fathers’ households. \w They|strong="H8141"\w* \w were|strong="H1732"\w* \w sought|strong="H1875"\w* \w for|strong="H2428"\w* \w in|strong="H8141"\w* \w the|strong="H1875"\w* fortieth \w year|strong="H8141"\w* \w of|strong="H8141"\w* \w the|strong="H1875"\w* \w reign|strong="H4438"\w* \w of|strong="H8141"\w* \w David|strong="H1732"\w*, \w and|strong="H1732"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H8141"\w* \w valor|strong="H2428"\w* \w were|strong="H1732"\w* \w found|strong="H4672"\w* \w among|strong="H4672"\w* \w them|strong="H4672"\w* \w at|strong="H1732"\w* \w Jazer|strong="H3270"\w* \w of|strong="H8141"\w* \w Gilead|strong="H1568"\w*. +\v 32 \w His|strong="H3605"\w* \w relatives|strong="H1121"\w*, \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w valor|strong="H2428"\w*, \w were|strong="H1121"\w* \w two|strong="H2677"\w* thousand \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w*, \w heads|strong="H7218"\w* \w of|strong="H1121"\w* fathers’ households, whom \w King|strong="H4428"\w* \w David|strong="H1732"\w* \w made|strong="H6485"\w* \w overseers|strong="H6485"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w Reubenites|strong="H7206"\w*, \w the|strong="H3605"\w* \w Gadites|strong="H1425"\w*, \w and|strong="H3967"\w* \w the|strong="H3605"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w Manassites|strong="H4520"\w*, \w for|strong="H5921"\w* \w every|strong="H3605"\w* \w matter|strong="H1697"\w* \w pertaining|strong="H5921"\w* \w to|strong="H5921"\w* God \w and|strong="H3967"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w affairs|strong="H1697"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. +\c 27 +\p +\v 1 \w Now|strong="H3478"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w after|strong="H3318"\w* \w their|strong="H3605"\w* \w number|strong="H4557"\w*, \w the|strong="H3605"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* fathers’ households \w and|strong="H3967"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* thousands \w and|strong="H3967"\w* \w of|strong="H1121"\w* \w hundreds|strong="H3967"\w*, \w and|strong="H3967"\w* \w their|strong="H3605"\w* \w officers|strong="H7860"\w* \w who|strong="H3605"\w* \w served|strong="H8334"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w in|strong="H8141"\w* \w any|strong="H3605"\w* \w matter|strong="H1697"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w divisions|strong="H4256"\w* \w which|strong="H1697"\w* \w came|strong="H3318"\w* \w in|strong="H8141"\w* \w and|strong="H3967"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w month|strong="H2320"\w* \w by|strong="H8141"\w* \w month|strong="H2320"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w months|strong="H2320"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w year|strong="H8141"\w*—\w of|strong="H1121"\w* \w every|strong="H3605"\w* \w division|strong="H4256"\w* \w were|strong="H3478"\w* \w twenty-four|strong="H6242"\w* thousand. +\p +\v 2 \w Over|strong="H5921"\w* \w the|strong="H5921"\w* \w first|strong="H7223"\w* \w division|strong="H4256"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w* \w was|strong="H1121"\w* \w Jashobeam|strong="H3434"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zabdiel|strong="H2068"\w*. \w In|strong="H5921"\w* \w his|strong="H5921"\w* \w division|strong="H4256"\w* \w were|strong="H1121"\w* \w twenty-four|strong="H6242"\w* thousand. +\v 3 \w He|strong="H3605"\w* \w was|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Perez|strong="H6557"\w*, \w the|strong="H3605"\w* \w chief|strong="H7218"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w* \w for|strong="H1121"\w* \w the|strong="H3605"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*. +\v 4 \w Over|strong="H5921"\w* \w the|strong="H5921"\w* \w division|strong="H4256"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w second|strong="H8145"\w* \w month|strong="H2320"\w* \w was|strong="H2320"\w* \w Dodai|strong="H1737"\w* \w the|strong="H5921"\w* Ahohite \w and|strong="H6242"\w* \w his|strong="H5921"\w* \w division|strong="H4256"\w*, \w and|strong="H6242"\w* \w Mikloth|strong="H4732"\w* \w the|strong="H5921"\w* \w ruler|strong="H5057"\w*; \w and|strong="H6242"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w division|strong="H4256"\w* \w were|strong="H5921"\w* \w twenty-four|strong="H6242"\w* thousand. +\v 5 \w The|strong="H5921"\w* \w third|strong="H7992"\w* \w captain|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w army|strong="H6635"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w third|strong="H7992"\w* \w month|strong="H2320"\w* \w was|strong="H1121"\w* \w Benaiah|strong="H1141"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w* \w the|strong="H5921"\w* \w chief|strong="H7218"\w* \w priest|strong="H3548"\w*. \w In|strong="H5921"\w* \w his|strong="H5921"\w* \w division|strong="H4256"\w* \w were|strong="H1121"\w* \w twenty-four|strong="H6242"\w* thousand. +\v 6 \w This|strong="H1931"\w* \w is|strong="H1931"\w* \w that|strong="H1931"\w* \w Benaiah|strong="H1141"\w* \w who|strong="H1931"\w* \w was|strong="H1931"\w* \w the|strong="H5921"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w thirty|strong="H7970"\w* \w and|strong="H1121"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w thirty|strong="H7970"\w*. \w Of|strong="H1121"\w* \w his|strong="H5921"\w* \w division|strong="H4256"\w* \w was|strong="H1931"\w* \w Ammizabad|strong="H5990"\w* \w his|strong="H5921"\w* \w son|strong="H1121"\w*. +\v 7 \w The|strong="H5921"\w* \w fourth|strong="H7243"\w* captain \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w fourth|strong="H7243"\w* \w month|strong="H2320"\w* \w was|strong="H1121"\w* \w Asahel|strong="H6214"\w* \w the|strong="H5921"\w* brother \w of|strong="H1121"\w* \w Joab|strong="H3097"\w*, \w and|strong="H1121"\w* \w Zebadiah|strong="H2069"\w* \w his|strong="H5921"\w* \w son|strong="H1121"\w* \w after|strong="H5921"\w* \w him|strong="H5921"\w*. \w In|strong="H5921"\w* \w his|strong="H5921"\w* \w division|strong="H4256"\w* \w were|strong="H1121"\w* \w twenty-four|strong="H6242"\w* thousand. +\v 8 \w The|strong="H5921"\w* \w fifth|strong="H2549"\w* \w captain|strong="H8269"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w fifth|strong="H2549"\w* \w month|strong="H2320"\w* \w was|strong="H2320"\w* \w Shamhuth|strong="H8049"\w* \w the|strong="H5921"\w* \w Izrahite|strong="H3155"\w*. \w In|strong="H5921"\w* \w his|strong="H5921"\w* \w division|strong="H4256"\w* \w were|strong="H8269"\w* \w twenty-four|strong="H6242"\w* thousand. +\v 9 \w The|strong="H5921"\w* \w sixth|strong="H8345"\w* captain \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w sixth|strong="H8345"\w* \w month|strong="H2320"\w* \w was|strong="H1121"\w* \w Ira|strong="H5896"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ikkesh|strong="H6142"\w* \w the|strong="H5921"\w* \w Tekoite|strong="H8621"\w*. \w In|strong="H5921"\w* \w his|strong="H5921"\w* \w division|strong="H4256"\w* \w were|strong="H1121"\w* \w twenty-four|strong="H6242"\w* thousand. +\v 10 \w The|strong="H5921"\w* \w seventh|strong="H7637"\w* captain \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w* \w was|strong="H1121"\w* \w Helez|strong="H2503"\w* \w the|strong="H5921"\w* \w Pelonite|strong="H6397"\w*, \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Ephraim. \w In|strong="H5921"\w* \w his|strong="H5921"\w* \w division|strong="H4256"\w* \w were|strong="H1121"\w* \w twenty-four|strong="H6242"\w* thousand. +\v 11 \w The|strong="H5921"\w* \w eighth|strong="H8066"\w* captain \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w eighth|strong="H8066"\w* \w month|strong="H2320"\w* \w was|strong="H4256"\w* \w Sibbecai|strong="H5444"\w* \w the|strong="H5921"\w* \w Hushathite|strong="H2843"\w*, \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w Zerahites|strong="H2227"\w*. \w In|strong="H5921"\w* \w his|strong="H5921"\w* \w division|strong="H4256"\w* \w were|strong="H5921"\w* \w twenty-four|strong="H6242"\w* thousand. +\v 12 \w The|strong="H5921"\w* \w ninth|strong="H8671"\w* captain \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w ninth|strong="H8671"\w* \w month|strong="H2320"\w* \w was|strong="H4256"\w* Abiezer \w the|strong="H5921"\w* \w Anathothite|strong="H6069"\w*, \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w Benjamites|strong="H1145"\w*. \w In|strong="H5921"\w* \w his|strong="H5921"\w* \w division|strong="H4256"\w* \w were|strong="H5921"\w* \w twenty-four|strong="H6242"\w* thousand. +\v 13 \w The|strong="H5921"\w* \w tenth|strong="H6224"\w* captain \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w tenth|strong="H6224"\w* \w month|strong="H2320"\w* \w was|strong="H4256"\w* \w Maharai|strong="H4121"\w* \w the|strong="H5921"\w* \w Netophathite|strong="H5200"\w*, \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w Zerahites|strong="H2227"\w*. \w In|strong="H5921"\w* \w his|strong="H5921"\w* \w division|strong="H4256"\w* \w were|strong="H5921"\w* \w twenty-four|strong="H6242"\w* thousand. +\v 14 \w The|strong="H5921"\w* \w eleventh|strong="H6249"\w* captain \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w eleventh|strong="H6249"\w* \w month|strong="H2320"\w* \w was|strong="H1121"\w* \w Benaiah|strong="H1141"\w* \w the|strong="H5921"\w* \w Pirathonite|strong="H6553"\w*, \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Ephraim. \w In|strong="H5921"\w* \w his|strong="H5921"\w* \w division|strong="H4256"\w* \w were|strong="H1121"\w* \w twenty-four|strong="H6242"\w* thousand. +\v 15 \w The|strong="H5921"\w* \w twelfth|strong="H8147"\w* captain \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w twelfth|strong="H8147"\w* \w month|strong="H2320"\w* \w was|strong="H2320"\w* \w Heldai|strong="H2469"\w* \w the|strong="H5921"\w* \w Netophathite|strong="H5200"\w*, \w of|strong="H5921"\w* \w Othniel|strong="H6274"\w*. \w In|strong="H5921"\w* \w his|strong="H5921"\w* \w division|strong="H4256"\w* \w were|strong="H8147"\w* \w twenty-four|strong="H6242"\w* thousand. +\p +\v 16 Furthermore \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w tribes|strong="H7626"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*: \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w Reubenites|strong="H7206"\w*, Eliezer \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zichri|strong="H2147"\w* \w was|strong="H3478"\w* \w the|strong="H5921"\w* \w ruler|strong="H5057"\w*; \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w Simeonites|strong="H8099"\w*, \w Shephatiah|strong="H8203"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Maacah|strong="H4601"\w*; +\v 17 \w of|strong="H1121"\w* \w Levi|strong="H3881"\w*, \w Hashabiah|strong="H2811"\w* \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kemuel|strong="H7055"\w*; \w of|strong="H1121"\w* Aaron, \w Zadok|strong="H6659"\w*; +\v 18 \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, Elihu, \w one|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H1732"\w* \w brothers|strong="H1121"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w*; \w of|strong="H1121"\w* \w Issachar|strong="H3485"\w*, \w Omri|strong="H6018"\w* \w the|strong="H1732"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Michael|strong="H4317"\w*; +\v 19 \w of|strong="H1121"\w* \w Zebulun|strong="H2074"\w*, \w Ishmaiah|strong="H3460"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Obadiah|strong="H5662"\w*; \w of|strong="H1121"\w* \w Naphtali|strong="H5321"\w*, \w Jeremoth|strong="H3406"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Azriel|strong="H5837"\w*; +\v 20 \w of|strong="H1121"\w* \w the|strong="H2677"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Ephraim, \w Hoshea|strong="H1954"\w* \w the|strong="H2677"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Azaziah|strong="H5812"\w*; \w of|strong="H1121"\w* \w the|strong="H2677"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*, \w Joel|strong="H3100"\w* \w the|strong="H2677"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Pedaiah|strong="H6305"\w*; +\v 21 \w of|strong="H1121"\w* \w the|strong="H2677"\w* \w half-tribe|strong="H2677"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w* \w in|strong="H1121"\w* \w Gilead|strong="H1568"\w*, \w Iddo|strong="H3035"\w* \w the|strong="H2677"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zechariah|strong="H2148"\w*; \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*, \w Jaasiel|strong="H3300"\w* \w the|strong="H2677"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Abner; +\v 22 \w of|strong="H1121"\w* \w Dan|strong="H1835"\w*, \w Azarel|strong="H5832"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeroham|strong="H3395"\w*. These \w were|strong="H3478"\w* \w the|strong="H1121"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w tribes|strong="H7626"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 23 \w But|strong="H3588"\w* \w David|strong="H1732"\w* didn’t \w take|strong="H5375"\w* \w the|strong="H3588"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w them|strong="H5375"\w* \w from|strong="H3478"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w under|strong="H4295"\w*, \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* said \w he|strong="H3588"\w* \w would|strong="H3068"\w* \w increase|strong="H7235"\w* \w Israel|strong="H3478"\w* \w like|strong="H3478"\w* \w the|strong="H3588"\w* \w stars|strong="H3556"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w sky|strong="H8064"\w*. +\v 24 \w Joab|strong="H3097"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zeruiah|strong="H6870"\w* \w began|strong="H2490"\w* \w to|strong="H3478"\w* \w take|strong="H1961"\w* \w a|strong="H3068"\w* census, \w but|strong="H3808"\w* didn’t \w finish|strong="H3615"\w*; \w and|strong="H1121"\w* \w wrath|strong="H7110"\w* \w came|strong="H1961"\w* \w on|strong="H5921"\w* \w Israel|strong="H3478"\w* \w for|strong="H5921"\w* \w this|strong="H2063"\w*. \w The|strong="H5921"\w* \w number|strong="H4557"\w* wasn’t \w put|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H5921"\w* \w account|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w chronicles|strong="H1697"\w* \w of|strong="H1121"\w* \w King|strong="H4428"\w* \w David|strong="H1732"\w*. +\p +\v 25 \w Over|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s treasures \w was|strong="H5892"\w* \w Azmaveth|strong="H5820"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Adiel|strong="H5717"\w*. \w Over|strong="H5921"\w* \w the|strong="H5921"\w* treasures \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w fields|strong="H7704"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w cities|strong="H5892"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w villages|strong="H3723"\w*, \w and|strong="H1121"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w towers|strong="H4026"\w* \w was|strong="H5892"\w* \w Jonathan|strong="H3083"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Uzziah|strong="H5818"\w*; +\v 26 \w Over|strong="H5921"\w* \w those|strong="H5921"\w* \w who|strong="H1121"\w* \w did|strong="H6213"\w* \w the|strong="H5921"\w* \w work|strong="H4399"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w field|strong="H7704"\w* \w for|strong="H5921"\w* \w tillage|strong="H5656"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w ground|strong="H7704"\w* \w was|strong="H1121"\w* \w Ezri|strong="H5836"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Chelub|strong="H3620"\w*. +\v 27 \w Over|strong="H5921"\w* \w the|strong="H5921"\w* \w vineyards|strong="H3754"\w* \w was|strong="H2067"\w* \w Shimei|strong="H8096"\w* \w the|strong="H5921"\w* \w Ramathite|strong="H7435"\w*. \w Over|strong="H5921"\w* \w the|strong="H5921"\w* increase \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w vineyards|strong="H3754"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w wine|strong="H3196"\w* cellars \w was|strong="H2067"\w* \w Zabdi|strong="H2067"\w* \w the|strong="H5921"\w* \w Shiphmite|strong="H8225"\w*. +\v 28 \w Over|strong="H5921"\w* \w the|strong="H5921"\w* \w olive|strong="H2132"\w* \w trees|strong="H2132"\w* \w and|strong="H8081"\w* \w the|strong="H5921"\w* \w sycamore|strong="H8256"\w* \w trees|strong="H2132"\w* \w that|strong="H8081"\w* \w were|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w lowland|strong="H8219"\w* \w was|strong="H8081"\w* Baal Hanan \w the|strong="H5921"\w* \w Gederite|strong="H1451"\w*. \w Over|strong="H5921"\w* \w the|strong="H5921"\w* cellars \w of|strong="H5921"\w* \w oil|strong="H8081"\w* \w was|strong="H8081"\w* \w Joash|strong="H3135"\w*. +\v 29 \w Over|strong="H5921"\w* \w the|strong="H5921"\w* \w herds|strong="H1241"\w* \w that|strong="H1121"\w* \w fed|strong="H7462"\w* \w in|strong="H5921"\w* \w Sharon|strong="H8289"\w* \w was|strong="H1121"\w* \w Shitrai|strong="H7861"\w* \w the|strong="H5921"\w* \w Sharonite|strong="H8290"\w*. \w Over|strong="H5921"\w* \w the|strong="H5921"\w* \w herds|strong="H1241"\w* \w that|strong="H1121"\w* \w were|strong="H1121"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w valleys|strong="H6010"\w* \w was|strong="H1121"\w* \w Shaphat|strong="H8202"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Adlai|strong="H5724"\w*. +\v 30 \w Over|strong="H5921"\w* \w the|strong="H5921"\w* \w camels|strong="H1581"\w* \w was|strong="H3459"\w* Obil \w the|strong="H5921"\w* \w Ishmaelite|strong="H3459"\w*. \w Over|strong="H5921"\w* \w the|strong="H5921"\w* donkeys \w was|strong="H3459"\w* \w Jehdeiah|strong="H3165"\w* \w the|strong="H5921"\w* \w Meronothite|strong="H4824"\w*. \w Over|strong="H5921"\w* \w the|strong="H5921"\w* flocks \w was|strong="H3459"\w* Jaziz \w the|strong="H5921"\w* Hagrite. +\v 31 \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w were|strong="H1732"\w* \w the|strong="H3605"\w* \w rulers|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w property|strong="H7399"\w* \w which|strong="H8269"\w* \w was|strong="H1732"\w* \w King|strong="H4428"\w* \w David|strong="H1732"\w*’s. +\p +\v 32 \w Also|strong="H1732"\w* \w Jonathan|strong="H3083"\w*, \w David|strong="H1732"\w*’s \w uncle|strong="H1730"\w*, \w was|strong="H1732"\w* \w a|strong="H3068"\w* \w counselor|strong="H3289"\w*, \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* understanding, \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w scribe|strong="H5608"\w*. \w Jehiel|strong="H3171"\w* \w the|strong="H5973"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hachmoni|strong="H2453"\w* \w was|strong="H1732"\w* \w with|strong="H5973"\w* \w the|strong="H5973"\w* \w king|strong="H4428"\w*’s \w sons|strong="H1121"\w*. +\v 33 Ahithophel \w was|strong="H4428"\w* \w the|strong="H2365"\w* \w king|strong="H4428"\w*’s \w counselor|strong="H3289"\w*. \w Hushai|strong="H2365"\w* \w the|strong="H2365"\w* Archite \w was|strong="H4428"\w* \w the|strong="H2365"\w* \w king|strong="H4428"\w*’s \w friend|strong="H7453"\w*. +\v 34 After Ahithophel \w was|strong="H4428"\w* \w Jehoiada|strong="H3077"\w* \w the|strong="H1141"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Benaiah|strong="H1141"\w*, \w and|strong="H1121"\w* Abiathar. \w Joab|strong="H3097"\w* \w was|strong="H4428"\w* \w the|strong="H1141"\w* \w captain|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H1141"\w* \w king|strong="H4428"\w*’s \w army|strong="H6635"\w*. +\c 28 +\p +\v 1 \w David|strong="H1732"\w* \w assembled|strong="H6950"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w*, \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w companies|strong="H4256"\w* \w who|strong="H3605"\w* \w served|strong="H8334"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w by|strong="H3478"\w* \w division|strong="H4256"\w*, \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* thousands, \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* \w hundreds|strong="H3967"\w*, \w and|strong="H3967"\w* \w the|strong="H3605"\w* \w rulers|strong="H8269"\w* \w over|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w substance|strong="H7399"\w* \w and|strong="H3967"\w* \w possessions|strong="H7399"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w and|strong="H3967"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w*, \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w officers|strong="H8269"\w* \w and|strong="H3967"\w* \w the|strong="H3605"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w*, even \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H1121"\w* \w valor|strong="H2428"\w*, \w to|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*. +\v 2 \w Then|strong="H6965"\w* \w David|strong="H1732"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w stood|strong="H6965"\w* \w up|strong="H6965"\w* \w on|strong="H5921"\w* \w his|strong="H3068"\w* \w feet|strong="H7272"\w* \w and|strong="H6965"\w* \w said|strong="H8085"\w*, “\w Hear|strong="H8085"\w* \w me|strong="H5921"\w*, \w my|strong="H8085"\w* brothers \w and|strong="H6965"\w* \w my|strong="H8085"\w* \w people|strong="H5971"\w*! \w As|strong="H3824"\w* \w for|strong="H5921"\w* \w me|strong="H5921"\w*, \w it|strong="H5921"\w* \w was|strong="H3068"\w* \w in|strong="H5921"\w* \w my|strong="H8085"\w* \w heart|strong="H3824"\w* \w to|strong="H3068"\w* \w build|strong="H1129"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w rest|strong="H4496"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* ark \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w*, \w and|strong="H6965"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w footstool|strong="H1916"\w* \w of|strong="H4428"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*; \w and|strong="H6965"\w* \w I|strong="H5921"\w* \w had|strong="H3068"\w* \w prepared|strong="H3559"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w building|strong="H1129"\w*. +\v 3 \w But|strong="H3588"\w* \w God|strong="H3808"\w* said \w to|strong="H1004"\w* \w me|strong="H3808"\w*, ‘\w You|strong="H3588"\w* \w shall|strong="H1004"\w* \w not|strong="H3808"\w* \w build|strong="H1129"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w for|strong="H3588"\w* \w my|strong="H8210"\w* \w name|strong="H8034"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H1004"\w* \w a|strong="H3068"\w* man \w of|strong="H1004"\w* \w war|strong="H4421"\w* \w and|strong="H1004"\w* \w have|strong="H1129"\w* \w shed|strong="H8210"\w* \w blood|strong="H1818"\w*.’ +\v 4 \w However|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, chose \w me|strong="H5921"\w* \w out|strong="H5921"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w my|strong="H3605"\w* \w father|strong="H1121"\w* \w to|strong="H3478"\w* \w be|strong="H1961"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w forever|strong="H5769"\w*. \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* chosen \w Judah|strong="H3063"\w* \w to|strong="H3478"\w* \w be|strong="H1961"\w* \w prince|strong="H5057"\w*; \w and|strong="H1121"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w my|strong="H3605"\w* \w father|strong="H1121"\w*; \w and|strong="H1121"\w* \w among|strong="H5921"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w my|strong="H3605"\w* \w father|strong="H1121"\w* \w he|strong="H3588"\w* \w took|strong="H1961"\w* \w pleasure|strong="H7521"\w* \w in|strong="H5921"\w* \w me|strong="H5921"\w* \w to|strong="H3478"\w* \w make|strong="H4427"\w* \w me|strong="H5921"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*. +\v 5 \w Of|strong="H1121"\w* \w all|strong="H3605"\w* \w my|strong="H5414"\w* \w sons|strong="H1121"\w* (\w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w me|strong="H5414"\w* \w many|strong="H7227"\w* \w sons|strong="H1121"\w*), \w he|strong="H3588"\w* \w has|strong="H3068"\w* chosen \w Solomon|strong="H8010"\w* \w my|strong="H5414"\w* \w son|strong="H1121"\w* \w to|strong="H3478"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w throne|strong="H3678"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w kingdom|strong="H4438"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*. +\v 6 \w He|strong="H1931"\w* said \w to|strong="H1961"\w* \w me|strong="H1961"\w*, ‘\w Solomon|strong="H8010"\w*, \w your|strong="H3588"\w* \w son|strong="H1121"\w*, \w shall|strong="H1121"\w* \w build|strong="H1129"\w* \w my|strong="H1961"\w* \w house|strong="H1004"\w* \w and|strong="H1121"\w* \w my|strong="H1961"\w* \w courts|strong="H2691"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* chosen \w him|strong="H1931"\w* \w to|strong="H1961"\w* \w be|strong="H1961"\w* \w my|strong="H1961"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w his|strong="H1961"\w* \w father|strong="H1121"\w*. +\v 7 \w I|strong="H3117"\w* \w will|strong="H3117"\w* \w establish|strong="H3559"\w* \w his|strong="H3559"\w* \w kingdom|strong="H4438"\w* \w forever|strong="H5769"\w* if \w he|strong="H3117"\w* continues \w to|strong="H5704"\w* \w do|strong="H6213"\w* \w my|strong="H6213"\w* \w commandments|strong="H4687"\w* \w and|strong="H3117"\w* \w my|strong="H6213"\w* \w ordinances|strong="H4941"\w*, \w as|strong="H5704"\w* \w it|strong="H6213"\w* \w is|strong="H2088"\w* \w today|strong="H3117"\w*.’ +\p +\v 8 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w Yahweh|strong="H3068"\w*’s \w assembly|strong="H6951"\w*, \w and|strong="H1121"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* audience \w of|strong="H1121"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w observe|strong="H8104"\w* \w and|strong="H1121"\w* \w seek|strong="H1875"\w* \w out|strong="H3423"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w commandments|strong="H4687"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w may|strong="H3068"\w* \w possess|strong="H3423"\w* \w this|strong="H6258"\w* \w good|strong="H2896"\w* land, \w and|strong="H1121"\w* \w leave|strong="H4616"\w* \w it|strong="H3423"\w* \w for|strong="H5704"\w* \w an|strong="H5157"\w* \w inheritance|strong="H5157"\w* \w to|strong="H5704"\w* \w your|strong="H3068"\w* \w children|strong="H1121"\w* \w after|strong="H1875"\w* \w you|strong="H3605"\w* \w forever|strong="H5769"\w*. +\p +\v 9 \w You|strong="H3588"\w*, \w Solomon|strong="H8010"\w* \w my|strong="H3605"\w* \w son|strong="H1121"\w*, \w know|strong="H3045"\w* \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* \w father|strong="H1121"\w*, \w and|strong="H1121"\w* \w serve|strong="H5647"\w* \w him|strong="H4672"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w perfect|strong="H8003"\w* \w heart|strong="H3820"\w* \w and|strong="H1121"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w willing|strong="H2655"\w* \w mind|strong="H3820"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w searches|strong="H1875"\w* \w all|strong="H3605"\w* \w hearts|strong="H3820"\w*, \w and|strong="H1121"\w* \w understands|strong="H3045"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w imaginations|strong="H4284"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w thoughts|strong="H4284"\w*. \w If|strong="H3588"\w* \w you|strong="H3588"\w* \w seek|strong="H1875"\w* \w him|strong="H4672"\w*, \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w found|strong="H4672"\w* \w by|strong="H3068"\w* \w you|strong="H3588"\w*; \w but|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w forsake|strong="H5800"\w* \w him|strong="H4672"\w*, \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w cast|strong="H3068"\w* \w you|strong="H3588"\w* \w off|strong="H2186"\w* \w forever|strong="H5703"\w*. +\v 10 \w Take|strong="H2388"\w* \w heed|strong="H7200"\w* \w now|strong="H6258"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* chosen \w you|strong="H3588"\w* \w to|strong="H3068"\w* \w build|strong="H1129"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w for|strong="H3588"\w* \w the|strong="H7200"\w* \w sanctuary|strong="H4720"\w*. \w Be|strong="H3068"\w* \w strong|strong="H2388"\w*, \w and|strong="H3068"\w* \w do|strong="H6213"\w* \w it|strong="H3588"\w*.” +\p +\v 11 \w Then|strong="H5414"\w* \w David|strong="H1732"\w* \w gave|strong="H5414"\w* \w to|strong="H5414"\w* \w Solomon|strong="H8010"\w* \w his|strong="H5414"\w* \w son|strong="H1121"\w* \w the|strong="H5414"\w* plans \w for|strong="H1004"\w* \w the|strong="H5414"\w* porch \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w temple|strong="H1004"\w*, \w for|strong="H1004"\w* \w its|strong="H5414"\w* \w houses|strong="H1004"\w*, \w for|strong="H1004"\w* \w its|strong="H5414"\w* \w treasuries|strong="H1597"\w*, \w for|strong="H1004"\w* \w its|strong="H5414"\w* \w upper|strong="H5944"\w* \w rooms|strong="H2315"\w*, \w for|strong="H1004"\w* \w its|strong="H5414"\w* \w inner|strong="H6442"\w* \w rooms|strong="H2315"\w*, \w for|strong="H1004"\w* \w the|strong="H5414"\w* \w place|strong="H5414"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w mercy|strong="H3727"\w* \w seat|strong="H3727"\w*; +\v 12 \w and|strong="H3068"\w* \w the|strong="H3605"\w* plans \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w* \w by|strong="H3068"\w* \w the|strong="H3605"\w* \w Spirit|strong="H7307"\w*, \w for|strong="H3068"\w* \w the|strong="H3605"\w* \w courts|strong="H2691"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w for|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w surrounding|strong="H5439"\w* \w rooms|strong="H3957"\w*, \w for|strong="H3068"\w* \w the|strong="H3605"\w* treasuries \w of|strong="H1004"\w* \w God|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w for|strong="H3068"\w* \w the|strong="H3605"\w* treasuries \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w dedicated|strong="H6944"\w* \w things|strong="H6944"\w*; +\v 13 \w also|strong="H3068"\w* \w for|strong="H3068"\w* \w the|strong="H3605"\w* \w divisions|strong="H4256"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*, \w for|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w for|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H1004"\w* \w service|strong="H5656"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*— +\v 14 \w of|strong="H3627"\w* \w gold|strong="H2091"\w* \w by|strong="H2091"\w* \w weight|strong="H4948"\w* \w for|strong="H3627"\w* \w the|strong="H3605"\w* \w gold|strong="H2091"\w* \w for|strong="H3627"\w* \w all|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H3627"\w* \w every|strong="H3605"\w* \w kind|strong="H5656"\w* \w of|strong="H3627"\w* \w service|strong="H5656"\w*, \w for|strong="H3627"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H3627"\w* \w silver|strong="H3701"\w* \w by|strong="H2091"\w* \w weight|strong="H4948"\w*, \w for|strong="H3627"\w* \w all|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H3627"\w* \w every|strong="H3605"\w* \w kind|strong="H5656"\w* \w of|strong="H3627"\w* \w service|strong="H5656"\w*; +\v 15 \w by|strong="H2091"\w* \w weight|strong="H4948"\w* also \w for|strong="H3701"\w* \w the|strong="H5656"\w* \w lamp|strong="H5216"\w* stands \w of|strong="H2091"\w* \w gold|strong="H2091"\w*, \w and|strong="H3701"\w* \w for|strong="H3701"\w* its \w lamps|strong="H5216"\w*, \w of|strong="H2091"\w* \w gold|strong="H2091"\w*, \w by|strong="H2091"\w* \w weight|strong="H4948"\w* \w for|strong="H3701"\w* every \w lamp|strong="H5216"\w* stand \w and|strong="H3701"\w* \w for|strong="H3701"\w* its \w lamps|strong="H5216"\w*; \w and|strong="H3701"\w* \w for|strong="H3701"\w* \w the|strong="H5656"\w* \w lamp|strong="H5216"\w* stands \w of|strong="H2091"\w* \w silver|strong="H3701"\w*, \w by|strong="H2091"\w* \w weight|strong="H4948"\w* \w for|strong="H3701"\w* every \w lamp|strong="H5216"\w* stand \w and|strong="H3701"\w* \w for|strong="H3701"\w* its \w lamps|strong="H5216"\w*, \w according|strong="H3701"\w* \w to|strong="H3701"\w* \w the|strong="H5656"\w* \w use|strong="H5656"\w* \w of|strong="H2091"\w* every \w lamp|strong="H5216"\w* stand; +\v 16 \w and|strong="H3701"\w* the \w gold|strong="H2091"\w* \w by|strong="H2091"\w* \w weight|strong="H4948"\w* \w for|strong="H3701"\w* the \w tables|strong="H7979"\w* \w of|strong="H2091"\w* show bread, \w for|strong="H3701"\w* every \w table|strong="H7979"\w*; \w and|strong="H3701"\w* \w silver|strong="H3701"\w* \w for|strong="H3701"\w* the \w tables|strong="H7979"\w* \w of|strong="H2091"\w* \w silver|strong="H3701"\w*; +\v 17 \w and|strong="H3701"\w* the \w forks|strong="H4207"\w*, the \w basins|strong="H4219"\w*, \w and|strong="H3701"\w* the \w cups|strong="H7184"\w*, \w of|strong="H4219"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*; \w and|strong="H3701"\w* \w for|strong="H3701"\w* the \w golden|strong="H2091"\w* \w bowls|strong="H4219"\w* \w by|strong="H2091"\w* \w weight|strong="H4948"\w* \w for|strong="H3701"\w* every \w bowl|strong="H4219"\w*; \w and|strong="H3701"\w* \w for|strong="H3701"\w* the \w silver|strong="H3701"\w* \w bowls|strong="H4219"\w* \w by|strong="H2091"\w* \w weight|strong="H4948"\w* \w for|strong="H3701"\w* every \w bowl|strong="H4219"\w*; +\v 18 \w and|strong="H3068"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w of|strong="H3068"\w* \w incense|strong="H7004"\w*, \w refined|strong="H2212"\w* \w gold|strong="H2091"\w* \w by|strong="H5921"\w* \w weight|strong="H4948"\w*; \w and|strong="H3068"\w* \w gold|strong="H2091"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* plans \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w chariot|strong="H4818"\w*, \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w cherubim|strong="H3742"\w* \w that|strong="H3068"\w* \w spread|strong="H6566"\w* \w out|strong="H6566"\w* \w and|strong="H3068"\w* \w cover|strong="H5526"\w* \w the|strong="H5921"\w* ark \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w*. +\v 19 “\w All|strong="H3605"\w* \w this|strong="H3068"\w*”, \w David|strong="H3027"\w* said, “\w I|strong="H5921"\w* \w have|strong="H3068"\w* \w been|strong="H3605"\w* \w made|strong="H4399"\w* \w to|strong="H3068"\w* \w understand|strong="H7919"\w* \w in|strong="H5921"\w* \w writing|strong="H3791"\w* \w from|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w*, \w even|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w works|strong="H4399"\w* \w of|strong="H3068"\w* \w this|strong="H3068"\w* \w pattern|strong="H8403"\w*.” +\p +\v 20 \w David|strong="H1732"\w* said \w to|strong="H5704"\w* \w Solomon|strong="H8010"\w* \w his|strong="H3605"\w* \w son|strong="H1121"\w*, “\w Be|strong="H3808"\w* \w strong|strong="H2388"\w* \w and|strong="H1121"\w* \w courageous|strong="H2388"\w*, \w and|strong="H1121"\w* \w do|strong="H6213"\w* \w it|strong="H3588"\w*. Don’t \w be|strong="H3808"\w* \w afraid|strong="H3372"\w*, \w nor|strong="H3808"\w* \w be|strong="H3808"\w* \w dismayed|strong="H2865"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w*, \w even|strong="H5704"\w* \w my|strong="H3605"\w* \w God|strong="H3068"\w*, \w is|strong="H3068"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*. \w He|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w fail|strong="H3615"\w* \w you|strong="H3588"\w* \w nor|strong="H3808"\w* \w forsake|strong="H5800"\w* \w you|strong="H3588"\w*, \w until|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w is|strong="H3068"\w* \w finished|strong="H3615"\w*. +\v 21 \w Behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w are|strong="H5971"\w* \w the|strong="H3605"\w* \w divisions|strong="H4256"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H1004"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w for|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w of|strong="H1004"\w* \w God|strong="H2451"\w*’s \w house|strong="H1004"\w*. \w Every|strong="H3605"\w* \w willing|strong="H5081"\w* \w man|strong="H5081"\w* \w who|strong="H3605"\w* \w has|strong="H1697"\w* \w skill|strong="H2451"\w* \w for|strong="H1004"\w* \w any|strong="H3605"\w* \w kind|strong="H5656"\w* \w of|strong="H1004"\w* \w service|strong="H5656"\w* \w shall|strong="H3548"\w* \w be|strong="H1697"\w* \w with|strong="H5973"\w* \w you|strong="H3605"\w* \w in|strong="H1004"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H1004"\w* \w work|strong="H4399"\w*. \w Also|strong="H5971"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w and|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w will|strong="H5971"\w* \w be|strong="H1697"\w* \w entirely|strong="H3605"\w* \w at|strong="H1004"\w* \w your|strong="H3605"\w* \w command|strong="H1697"\w*.” +\c 29 +\p +\v 1 \w David|strong="H1732"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* said \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w*, “\w Solomon|strong="H8010"\w* \w my|strong="H3605"\w* \w son|strong="H1121"\w*, \w whom|strong="H3588"\w* alone \w God|strong="H3068"\w* \w has|strong="H3068"\w* chosen, \w is|strong="H3068"\w* \w yet|strong="H3588"\w* \w young|strong="H5288"\w* \w and|strong="H1121"\w* \w tender|strong="H7390"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w is|strong="H3068"\w* \w great|strong="H1419"\w*; \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w palace|strong="H1002"\w* \w is|strong="H3068"\w* \w not|strong="H3808"\w* \w for|strong="H3588"\w* \w man|strong="H5288"\w*, \w but|strong="H3588"\w* \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 2 Now \w I|strong="H3559"\w* \w have|strong="H3605"\w* \w prepared|strong="H3559"\w* \w with|strong="H1004"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w might|strong="H3581"\w* \w for|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w my|strong="H3605"\w* God \w the|strong="H3605"\w* \w gold|strong="H2091"\w* \w for|strong="H1004"\w* \w the|strong="H3605"\w* \w things|strong="H3605"\w* \w of|strong="H1004"\w* \w gold|strong="H2091"\w*, \w the|strong="H3605"\w* \w silver|strong="H3701"\w* \w for|strong="H1004"\w* \w the|strong="H3605"\w* \w things|strong="H3605"\w* \w of|strong="H1004"\w* \w silver|strong="H3701"\w*, \w the|strong="H3605"\w* \w bronze|strong="H5178"\w* \w for|strong="H1004"\w* \w the|strong="H3605"\w* \w things|strong="H3605"\w* \w of|strong="H1004"\w* \w bronze|strong="H5178"\w*, \w iron|strong="H1270"\w* \w for|strong="H1004"\w* \w the|strong="H3605"\w* \w things|strong="H3605"\w* \w of|strong="H1004"\w* \w iron|strong="H1270"\w*, \w and|strong="H3701"\w* \w wood|strong="H6086"\w* \w for|strong="H1004"\w* \w the|strong="H3605"\w* \w things|strong="H3605"\w* \w of|strong="H1004"\w* \w wood|strong="H6086"\w*, also \w onyx|strong="H7718"\w* \w stones|strong="H7553"\w*, \w stones|strong="H7553"\w* \w to|strong="H1004"\w* \w be|strong="H6086"\w* \w set|strong="H3559"\w*, \w stones|strong="H7553"\w* \w for|strong="H1004"\w* \w inlaid|strong="H4394"\w* \w work|strong="H7553"\w* \w of|strong="H1004"\w* \w various|strong="H7553"\w* \w colors|strong="H7553"\w*, \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H1004"\w* \w precious|strong="H3368"\w* \w stones|strong="H7553"\w*, \w and|strong="H3701"\w* \w marble|strong="H7893"\w* \w stones|strong="H7553"\w* \w in|strong="H1004"\w* \w abundance|strong="H7230"\w*. +\v 3 \w In|strong="H1004"\w* addition, \w because|strong="H3605"\w* \w I|strong="H5414"\w* \w have|strong="H3426"\w* \w set|strong="H5414"\w* \w my|strong="H5414"\w* \w affection|strong="H7521"\w* \w on|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w my|strong="H5414"\w* \w God|strong="H5414"\w*, \w since|strong="H5750"\w* \w I|strong="H5414"\w* \w have|strong="H3426"\w* \w a|strong="H3068"\w* \w treasure|strong="H5459"\w* \w of|strong="H1004"\w* \w my|strong="H5414"\w* own \w of|strong="H1004"\w* \w gold|strong="H2091"\w* \w and|strong="H3701"\w* \w silver|strong="H3701"\w*, \w I|strong="H5414"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w my|strong="H5414"\w* \w God|strong="H5414"\w*, \w over|strong="H5414"\w* \w and|strong="H3701"\w* \w above|strong="H4605"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H5414"\w* \w have|strong="H3426"\w* \w prepared|strong="H3559"\w* \w for|strong="H1004"\w* \w the|strong="H3605"\w* \w holy|strong="H6944"\w* \w house|strong="H1004"\w*: +\v 4 \w even|strong="H7651"\w* \w three|strong="H7969"\w* thousand \w talents|strong="H3603"\w* \w of|strong="H1004"\w* \w gold|strong="H2091"\w*,\f + \fr 29:4 \ft A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 3000 talents is about 90 metric tons\f* \w of|strong="H1004"\w* \w the|strong="H1004"\w* \w gold|strong="H2091"\w* \w of|strong="H1004"\w* Ophir, \w and|strong="H3701"\w* \w seven|strong="H7651"\w* thousand \w talents|strong="H3603"\w*\f + \fr 29:4 \ft about 210 metric tons\f* \w of|strong="H1004"\w* \w refined|strong="H2212"\w* \w silver|strong="H3701"\w*, \w with|strong="H1004"\w* \w which|strong="H1004"\w* \w to|strong="H1004"\w* \w overlay|strong="H2902"\w* \w the|strong="H1004"\w* \w walls|strong="H7023"\w* \w of|strong="H1004"\w* \w the|strong="H1004"\w* \w houses|strong="H1004"\w*; +\v 5 \w of|strong="H3068"\w* \w gold|strong="H2091"\w* \w for|strong="H3027"\w* \w the|strong="H3605"\w* \w things|strong="H3605"\w* \w of|strong="H3068"\w* \w gold|strong="H2091"\w*, \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w silver|strong="H3701"\w* \w for|strong="H3027"\w* \w the|strong="H3605"\w* \w things|strong="H3605"\w* \w of|strong="H3068"\w* \w silver|strong="H3701"\w*, \w and|strong="H3068"\w* \w for|strong="H3027"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H3068"\w* \w work|strong="H4399"\w* \w to|strong="H3068"\w* \w be|strong="H3027"\w* \w made|strong="H4399"\w* \w by|strong="H3027"\w* \w the|strong="H3605"\w* \w hands|strong="H3027"\w* \w of|strong="H3068"\w* artisans. \w Who|strong="H4310"\w* \w then|strong="H3068"\w* offers \w willingly|strong="H5068"\w* \w to|strong="H3068"\w* \w consecrate|strong="H4390"\w* \w himself|strong="H3027"\w* \w today|strong="H3117"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*?” +\p +\v 6 \w Then|strong="H4428"\w* \w the|strong="H3478"\w* \w princes|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H3478"\w* fathers’ households, \w and|strong="H3967"\w* \w the|strong="H3478"\w* \w princes|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H3478"\w* \w tribes|strong="H7626"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3967"\w* \w the|strong="H3478"\w* \w captains|strong="H8269"\w* \w of|strong="H4428"\w* thousands \w and|strong="H3967"\w* \w of|strong="H4428"\w* \w hundreds|strong="H3967"\w*, \w with|strong="H4428"\w* \w the|strong="H3478"\w* \w rulers|strong="H8269"\w* \w over|strong="H4428"\w* \w the|strong="H3478"\w* \w king|strong="H4428"\w*’s \w work|strong="H4399"\w*, \w offered|strong="H5068"\w* \w willingly|strong="H5068"\w*; +\v 7 \w and|strong="H3967"\w* \w they|strong="H5414"\w* \w gave|strong="H5414"\w* \w for|strong="H1004"\w* \w the|strong="H5414"\w* \w service|strong="H5656"\w* \w of|strong="H1004"\w* \w God|strong="H5414"\w*’s \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w gold|strong="H2091"\w* \w five|strong="H2568"\w* \w thousand|strong="H7239"\w* \w talents|strong="H3603"\w*\f + \fr 29:7 \ft A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 5000 talents is about 150 metric tons\f* \w and|strong="H3967"\w* \w ten|strong="H6235"\w* \w thousand|strong="H7239"\w* darics,\f + \fr 29:7 \ft a daric was a gold coin issued by a Persian king, weighing about 8.4 grams or about 0.27 troy ounces each.\f* \w of|strong="H1004"\w* \w silver|strong="H3701"\w* \w ten|strong="H6235"\w* \w thousand|strong="H7239"\w* \w talents|strong="H3603"\w*, \w of|strong="H1004"\w* \w bronze|strong="H5178"\w* \w eighteen|strong="H8083"\w* \w thousand|strong="H7239"\w* \w talents|strong="H3603"\w*, \w and|strong="H3967"\w* \w of|strong="H1004"\w* \w iron|strong="H1270"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w thousand|strong="H7239"\w* \w talents|strong="H3603"\w*. +\v 8 People \w with|strong="H1004"\w* whom precious stones \w were|strong="H3027"\w* \w found|strong="H4672"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* treasure \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w under|strong="H5921"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H1004"\w* \w Jehiel|strong="H3171"\w* \w the|strong="H5921"\w* \w Gershonite|strong="H1649"\w*. +\v 9 \w Then|strong="H1571"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w rejoiced|strong="H8055"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w offered|strong="H5068"\w* \w willingly|strong="H5068"\w*, \w because|strong="H3588"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w perfect|strong="H8003"\w* \w heart|strong="H3820"\w* \w they|strong="H3588"\w* \w offered|strong="H5068"\w* \w willingly|strong="H5068"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H3068"\w* \w David|strong="H1732"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w also|strong="H1571"\w* \w rejoiced|strong="H8055"\w* \w with|strong="H3068"\w* \w great|strong="H1419"\w* \w joy|strong="H8057"\w*. +\p +\v 10 \w Therefore|strong="H1732"\w* \w David|strong="H1732"\w* \w blessed|strong="H1288"\w* \w Yahweh|strong="H3068"\w* \w before|strong="H5869"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w*; \w and|strong="H3478"\w* \w David|strong="H1732"\w* said, “\w You|strong="H3605"\w* \w are|strong="H3478"\w* \w blessed|strong="H1288"\w*, \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w our|strong="H3068"\w* father, \w forever|strong="H5769"\w* \w and|strong="H3478"\w* \w ever|strong="H5769"\w*. +\v 11 Yours, \w Yahweh|strong="H3068"\w*, \w is|strong="H3068"\w* \w the|strong="H3605"\w* \w greatness|strong="H1420"\w*, \w the|strong="H3605"\w* \w power|strong="H1369"\w*, \w the|strong="H3605"\w* \w glory|strong="H8597"\w*, \w the|strong="H3605"\w* \w victory|strong="H5331"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w majesty|strong="H1935"\w*! \w For|strong="H3588"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w heavens|strong="H8064"\w* \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w* \w is|strong="H3068"\w* yours. Yours \w is|strong="H3068"\w* \w the|strong="H3605"\w* \w kingdom|strong="H4467"\w*, \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w are|strong="H8064"\w* \w exalted|strong="H4984"\w* \w as|strong="H3068"\w* \w head|strong="H7218"\w* above \w all|strong="H3605"\w*. +\v 12 \w Both|strong="H3605"\w* \w riches|strong="H6239"\w* \w and|strong="H3027"\w* \w honor|strong="H3519"\w* come \w from|strong="H6440"\w* \w you|strong="H6440"\w*, \w and|strong="H3027"\w* \w you|strong="H6440"\w* \w rule|strong="H4910"\w* \w over|strong="H3027"\w* \w all|strong="H3605"\w*! \w In|strong="H6440"\w* \w your|strong="H3605"\w* \w hand|strong="H3027"\w* \w is|strong="H3027"\w* \w power|strong="H3027"\w* \w and|strong="H3027"\w* \w might|strong="H1369"\w*! \w It|strong="H6440"\w* \w is|strong="H3027"\w* \w in|strong="H6440"\w* \w your|strong="H3605"\w* \w hand|strong="H3027"\w* \w to|strong="H6440"\w* \w make|strong="H1431"\w* \w great|strong="H1431"\w*, \w and|strong="H3027"\w* \w to|strong="H6440"\w* give \w strength|strong="H3581"\w* \w to|strong="H6440"\w* \w all|strong="H3605"\w*! +\v 13 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, our God, \w we|strong="H3068"\w* \w thank|strong="H3034"\w* \w you|strong="H3034"\w* \w and|strong="H3034"\w* \w praise|strong="H1984"\w* \w your|strong="H3034"\w* \w glorious|strong="H8597"\w* \w name|strong="H8034"\w*. +\v 14 \w But|strong="H3588"\w* \w who|strong="H4310"\w* am \w I|strong="H3588"\w*, \w and|strong="H3027"\w* \w what|strong="H4310"\w* \w is|strong="H4310"\w* \w my|strong="H5414"\w* \w people|strong="H5971"\w*, \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w should|strong="H3588"\w* \w be|strong="H3027"\w* \w able|strong="H3027"\w* \w to|strong="H5414"\w* \w offer|strong="H5414"\w* \w so|strong="H4480"\w* \w willingly|strong="H5068"\w* \w as|strong="H3588"\w* \w this|strong="H2063"\w*? \w For|strong="H3588"\w* \w all|strong="H3605"\w* \w things|strong="H3605"\w* \w come|strong="H5971"\w* \w from|strong="H4480"\w* \w you|strong="H3588"\w*, \w and|strong="H3027"\w* \w we|strong="H3068"\w* \w have|strong="H5971"\w* \w given|strong="H5414"\w* \w you|strong="H3588"\w* \w of|strong="H3027"\w* \w your|strong="H3605"\w* \w own|strong="H5971"\w*. +\v 15 \w For|strong="H3588"\w* \w we|strong="H3068"\w* \w are|strong="H3117"\w* \w strangers|strong="H1616"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w* \w and|strong="H3117"\w* \w foreigners|strong="H1616"\w*, \w as|strong="H3117"\w* \w all|strong="H3605"\w* \w our|strong="H3605"\w* fathers \w were|strong="H3117"\w*. \w Our|strong="H3605"\w* \w days|strong="H3117"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth \w are|strong="H3117"\w* \w as|strong="H3117"\w* \w a|strong="H3068"\w* \w shadow|strong="H6738"\w*, \w and|strong="H3117"\w* \w there|strong="H3117"\w* \w is|strong="H3117"\w* \w no|strong="H3605"\w* remaining. +\v 16 \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w all|strong="H3605"\w* \w this|strong="H2088"\w* \w store|strong="H1995"\w* \w that|strong="H3605"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w prepared|strong="H3559"\w* \w to|strong="H3068"\w* \w build|strong="H1129"\w* \w you|strong="H3605"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w for|strong="H3027"\w* \w your|strong="H3068"\w* \w holy|strong="H6944"\w* \w name|strong="H8034"\w* comes \w from|strong="H3027"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*, \w and|strong="H3068"\w* \w is|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w own|strong="H3027"\w*. +\v 17 \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w also|strong="H5971"\w*, \w my|strong="H3605"\w* God, \w that|strong="H3588"\w* \w you|strong="H3588"\w* try \w the|strong="H3605"\w* \w heart|strong="H3824"\w* \w and|strong="H5971"\w* \w have|strong="H5971"\w* \w pleasure|strong="H7521"\w* \w in|strong="H4672"\w* \w uprightness|strong="H3476"\w*. \w As|strong="H3824"\w* \w for|strong="H3588"\w* \w me|strong="H7200"\w*, \w in|strong="H4672"\w* \w the|strong="H3605"\w* \w uprightness|strong="H3476"\w* \w of|strong="H5971"\w* \w my|strong="H3605"\w* \w heart|strong="H3824"\w* \w I|strong="H3588"\w* \w have|strong="H5971"\w* \w willingly|strong="H5068"\w* \w offered|strong="H5068"\w* \w all|strong="H3605"\w* \w these|strong="H3605"\w* \w things|strong="H3605"\w*. \w Now|strong="H6258"\w* \w I|strong="H3588"\w* \w have|strong="H5971"\w* \w seen|strong="H7200"\w* \w with|strong="H3045"\w* \w joy|strong="H8057"\w* \w your|strong="H3605"\w* \w people|strong="H5971"\w*, \w who|strong="H3605"\w* \w are|strong="H5971"\w* \w present|strong="H4672"\w* \w here|strong="H6311"\w*, \w offer|strong="H5068"\w* \w willingly|strong="H5068"\w* \w to|strong="H3824"\w* \w you|strong="H3588"\w*. +\v 18 \w Yahweh|strong="H3068"\w*, \w the|strong="H8104"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* Abraham, \w of|strong="H3068"\w* \w Isaac|strong="H3327"\w*, \w and|strong="H3478"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w our|strong="H3068"\w* fathers, \w keep|strong="H8104"\w* \w this|strong="H2063"\w* \w desire|strong="H3824"\w* \w forever|strong="H5769"\w* \w in|strong="H3478"\w* \w the|strong="H8104"\w* \w thoughts|strong="H4284"\w* \w of|strong="H3068"\w* \w the|strong="H8104"\w* \w heart|strong="H3824"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w*, \w and|strong="H3478"\w* \w prepare|strong="H3559"\w* \w their|strong="H3068"\w* \w heart|strong="H3824"\w* \w for|strong="H3068"\w* \w you|strong="H8104"\w*; +\v 19 \w and|strong="H1121"\w* \w give|strong="H5414"\w* \w to|strong="H6213"\w* \w Solomon|strong="H8010"\w* \w my|strong="H8104"\w* \w son|strong="H1121"\w* \w a|strong="H3068"\w* \w perfect|strong="H8003"\w* \w heart|strong="H3824"\w*, \w to|strong="H6213"\w* \w keep|strong="H8104"\w* \w your|strong="H3605"\w* \w commandments|strong="H4687"\w*, \w your|strong="H3605"\w* \w testimonies|strong="H5715"\w*, \w and|strong="H1121"\w* \w your|strong="H3605"\w* \w statutes|strong="H2708"\w*, \w and|strong="H1121"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* \w things|strong="H3605"\w*, \w and|strong="H1121"\w* \w to|strong="H6213"\w* \w build|strong="H1129"\w* \w the|strong="H3605"\w* \w palace|strong="H1002"\w*, \w for|strong="H6213"\w* \w which|strong="H1002"\w* \w I|strong="H5414"\w* \w have|strong="H1121"\w* \w made|strong="H6213"\w* \w provision|strong="H3559"\w*.” +\p +\v 20 \w Then|strong="H4428"\w* \w David|strong="H1732"\w* said \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w*, “\w Now|strong="H4994"\w* \w bless|strong="H1288"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*!” +\p \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w blessed|strong="H1288"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w their|strong="H3605"\w* fathers, \w and|strong="H3068"\w* \w bowed|strong="H7812"\w* \w down|strong="H7812"\w* \w their|strong="H3605"\w* \w heads|strong="H6915"\w* \w and|strong="H3068"\w* \w prostrated|strong="H7812"\w* \w themselves|strong="H7812"\w* before \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. +\v 21 \w They|strong="H3117"\w* \w sacrificed|strong="H2076"\w* \w sacrifices|strong="H2077"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3478"\w* \w offered|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w next|strong="H4283"\w* \w day|strong="H3117"\w* \w after|strong="H4283"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w*, \w even|strong="H3068"\w* \w one|strong="H3532"\w* thousand \w bulls|strong="H6499"\w*, \w one|strong="H3532"\w* thousand rams, \w and|strong="H3478"\w* \w one|strong="H3532"\w* thousand \w lambs|strong="H3532"\w*, \w with|strong="H3068"\w* \w their|strong="H3605"\w* \w drink|strong="H5262"\w* \w offerings|strong="H5930"\w* \w and|strong="H3478"\w* \w sacrifices|strong="H2077"\w* \w in|strong="H3478"\w* \w abundance|strong="H7230"\w* \w for|strong="H3068"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, +\v 22 \w and|strong="H1121"\w* ate \w and|strong="H1121"\w* \w drank|strong="H8354"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w on|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w with|strong="H3068"\w* \w great|strong="H1419"\w* \w gladness|strong="H8057"\w*. \w They|strong="H3117"\w* \w made|strong="H4427"\w* \w Solomon|strong="H8010"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w* \w king|strong="H4427"\w* \w the|strong="H6440"\w* \w second|strong="H8145"\w* \w time|strong="H3117"\w*, \w and|strong="H1121"\w* \w anointed|strong="H4886"\w* \w him|strong="H6440"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w prince|strong="H5057"\w*, \w and|strong="H1121"\w* \w Zadok|strong="H6659"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w priest|strong="H3548"\w*. +\p +\v 23 \w Then|strong="H8085"\w* \w Solomon|strong="H8010"\w* \w sat|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w throne|strong="H3678"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w* \w as|strong="H3068"\w* \w king|strong="H4428"\w* \w instead|strong="H8478"\w* \w of|strong="H4428"\w* \w David|strong="H1732"\w* \w his|strong="H3605"\w* father, \w and|strong="H3478"\w* \w prospered|strong="H6743"\w*; \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w obeyed|strong="H8085"\w* \w him|strong="H5921"\w*. +\v 24 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w*, \w the|strong="H3605"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w*, \w and|strong="H1121"\w* \w also|strong="H1571"\w* \w all|strong="H3605"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w King|strong="H4428"\w* \w David|strong="H1732"\w* \w submitted|strong="H5414"\w* \w themselves|strong="H5414"\w* \w to|strong="H5414"\w* \w Solomon|strong="H8010"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. +\v 25 \w Yahweh|strong="H3068"\w* \w magnified|strong="H1431"\w* \w Solomon|strong="H8010"\w* \w exceedingly|strong="H4605"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w gave|strong="H5414"\w* \w to|strong="H3478"\w* \w him|strong="H5414"\w* \w such|strong="H1961"\w* \w royal|strong="H4438"\w* \w majesty|strong="H1935"\w* \w as|strong="H1961"\w* \w had|strong="H3068"\w* \w not|strong="H3808"\w* \w been|strong="H1961"\w* \w on|strong="H5921"\w* \w any|strong="H3605"\w* \w king|strong="H4428"\w* \w before|strong="H6440"\w* \w him|strong="H5414"\w* \w in|strong="H5921"\w* \w Israel|strong="H3478"\w*. +\p +\v 26 \w Now|strong="H3478"\w* \w David|strong="H1732"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jesse|strong="H3448"\w* \w reigned|strong="H4427"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*. +\v 27 \w The|strong="H5921"\w* \w time|strong="H3117"\w* \w that|strong="H3117"\w* \w he|strong="H3117"\w* \w reigned|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w was|strong="H3478"\w* forty \w years|strong="H8141"\w*; \w he|strong="H3117"\w* \w reigned|strong="H4427"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Hebron|strong="H2275"\w*, \w and|strong="H3478"\w* \w he|strong="H3117"\w* \w reigned|strong="H4427"\w* \w thirty-three|strong="H7970"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. +\v 28 \w He|strong="H3117"\w* \w died|strong="H4191"\w* \w at|strong="H3117"\w* \w a|strong="H3068"\w* \w good|strong="H2896"\w* \w old|strong="H1121"\w* \w age|strong="H3117"\w*, \w full|strong="H3117"\w* \w of|strong="H1121"\w* \w days|strong="H3117"\w*, \w riches|strong="H6239"\w*, \w and|strong="H1121"\w* \w honor|strong="H3519"\w*; \w and|strong="H1121"\w* \w Solomon|strong="H8010"\w* \w his|strong="H8010"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H4191"\w* \w his|strong="H8010"\w* \w place|strong="H8478"\w*. +\v 29 \w Now|strong="H2009"\w* \w the|strong="H5921"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w David|strong="H1732"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*, \w first|strong="H7223"\w* \w and|strong="H4428"\w* last, \w behold|strong="H2009"\w*, \w they|strong="H5921"\w* \w are|strong="H1697"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* history \w of|strong="H4428"\w* \w Samuel|strong="H8050"\w* \w the|strong="H5921"\w* \w seer|strong="H2374"\w*, \w and|strong="H4428"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* history \w of|strong="H4428"\w* \w Nathan|strong="H5416"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w*, \w and|strong="H4428"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* history \w of|strong="H4428"\w* \w Gad|strong="H1410"\w* \w the|strong="H5921"\w* \w seer|strong="H2374"\w*, +\v 30 \w with|strong="H5973"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w reign|strong="H4438"\w* \w and|strong="H3478"\w* \w his|strong="H3605"\w* \w might|strong="H1369"\w*, \w and|strong="H3478"\w* \w the|strong="H3605"\w* events \w that|strong="H3605"\w* involved \w him|strong="H5921"\w*, \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H5921"\w* \w the|strong="H3605"\w* lands. \ No newline at end of file diff --git a/bibles/eng-web_usfm/15-2CHeng-web.usfm b/bibles/eng-web_usfm/15-2CHeng-web.usfm new file mode 100644 index 0000000..dd21423 --- /dev/null +++ b/bibles/eng-web_usfm/15-2CHeng-web.usfm @@ -0,0 +1,1127 @@ +\id 2CH World English Bible (WEB) +\ide UTF-8 +\h 2 Chronicles +\toc1 The Second Book of Chronicles +\toc2 2 Chronicles +\toc3 2Ch +\mt1 The Second Book of Chronicles +\c 1 +\p +\v 1 \w Solomon|strong="H8010"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w* \w was|strong="H3068"\w* \w firmly|strong="H2388"\w* \w established|strong="H2388"\w* \w in|strong="H5921"\w* \w his|strong="H3068"\w* \w kingdom|strong="H4438"\w*, \w and|strong="H1121"\w* \w Yahweh|strong="H3068"\w*\f + \fr 1:1 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w his|strong="H3068"\w* \w God|strong="H3068"\w*\f + \fr 1:1 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w was|strong="H3068"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w*, \w and|strong="H1121"\w* \w made|strong="H2388"\w* \w him|strong="H5921"\w* \w exceedingly|strong="H4605"\w* \w great|strong="H1431"\w*. +\p +\v 2 \w Solomon|strong="H8010"\w* spoke \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H8269"\w* thousands \w and|strong="H3967"\w* \w of|strong="H8269"\w* \w hundreds|strong="H3967"\w*, \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w judges|strong="H8199"\w*, \w and|strong="H3967"\w* \w to|strong="H3478"\w* \w every|strong="H3605"\w* \w prince|strong="H5387"\w* \w in|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w the|strong="H3605"\w* \w heads|strong="H7218"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* fathers’ households. +\v 3 \w Then|strong="H1961"\w* \w Solomon|strong="H8010"\w*, \w and|strong="H4872"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w with|strong="H5973"\w* \w him|strong="H6213"\w*, \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H3605"\w* \w high|strong="H1116"\w* \w place|strong="H1116"\w* \w that|strong="H3588"\w* \w was|strong="H3068"\w* \w at|strong="H3068"\w* \w Gibeon|strong="H1391"\w*; \w for|strong="H3588"\w* \w God|strong="H3068"\w*’s Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w* \w was|strong="H3068"\w* \w there|strong="H8033"\w*, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w servant|strong="H5650"\w* \w Moses|strong="H4872"\w* \w had|strong="H3068"\w* \w made|strong="H6213"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w*. +\v 4 \w But|strong="H3588"\w* \w David|strong="H1732"\w* \w had|strong="H1732"\w* \w brought|strong="H5927"\w* God’s ark \w up|strong="H5927"\w* \w from|strong="H5927"\w* \w Kiriath|strong="H7157"\w* Jearim \w to|strong="H5927"\w* \w the|strong="H3588"\w* \w place|strong="H3559"\w* \w that|strong="H3588"\w* \w David|strong="H1732"\w* \w had|strong="H1732"\w* \w prepared|strong="H3559"\w* \w for|strong="H3588"\w* \w it|strong="H3588"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H1732"\w* \w pitched|strong="H5186"\w* \w a|strong="H3068"\w* tent \w for|strong="H3588"\w* \w it|strong="H3588"\w* \w at|strong="H1732"\w* \w Jerusalem|strong="H3389"\w*. +\v 5 Moreover \w the|strong="H6440"\w* \w bronze|strong="H5178"\w* \w altar|strong="H4196"\w* \w that|strong="H3068"\w* \w Bezalel|strong="H1212"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Uri, \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hur|strong="H2354"\w*, \w had|strong="H3068"\w* \w made|strong="H6213"\w* \w was|strong="H3068"\w* \w there|strong="H3068"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*’s \w tabernacle|strong="H4908"\w*; \w and|strong="H1121"\w* \w Solomon|strong="H8010"\w* \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w assembly|strong="H6951"\w* \w were|strong="H1121"\w* \w seeking|strong="H1875"\w* counsel \w there|strong="H3068"\w*. +\v 6 \w Solomon|strong="H8010"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w there|strong="H8033"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w bronze|strong="H5178"\w* \w altar|strong="H4196"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w at|strong="H5921"\w* \w the|strong="H6440"\w* Tent \w of|strong="H3068"\w* \w Meeting|strong="H4150"\w*, \w and|strong="H3068"\w* \w offered|strong="H5927"\w* \w one|strong="H3068"\w* thousand \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*. +\p +\v 7 \w That|strong="H7200"\w* \w night|strong="H3915"\w*, \w God|strong="H5414"\w* \w appeared|strong="H7200"\w* \w to|strong="H5414"\w* \w Solomon|strong="H8010"\w* \w and|strong="H3915"\w* said \w to|strong="H5414"\w* \w him|strong="H5414"\w*, “\w Ask|strong="H7592"\w* \w for|strong="H7592"\w* \w what|strong="H4100"\w* \w you|strong="H5414"\w* want \w me|strong="H5414"\w* \w to|strong="H5414"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w*.” +\p +\v 8 \w Solomon|strong="H8010"\w* said \w to|strong="H6213"\w* God, “\w You|strong="H6213"\w* \w have|strong="H5973"\w* \w shown|strong="H6213"\w* \w great|strong="H1419"\w* loving \w kindness|strong="H2617"\w* \w to|strong="H6213"\w* \w David|strong="H1732"\w* \w my|strong="H1732"\w* father, \w and|strong="H1419"\w* \w have|strong="H5973"\w* \w made|strong="H6213"\w* \w me|strong="H6213"\w* \w king|strong="H4427"\w* \w in|strong="H6213"\w* \w his|strong="H1732"\w* \w place|strong="H8478"\w*. +\v 9 \w Now|strong="H6258"\w*, \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w*, \w let|strong="H6258"\w* \w your|strong="H3068"\w* \w promise|strong="H1697"\w* \w to|strong="H3068"\w* \w David|strong="H1732"\w* \w my|strong="H3068"\w* father \w be|strong="H1697"\w* established; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w made|strong="H4427"\w* \w me|strong="H5921"\w* \w king|strong="H4427"\w* \w over|strong="H5921"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w like|strong="H5973"\w* \w the|strong="H5921"\w* \w dust|strong="H6083"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w earth|strong="H6083"\w* \w in|strong="H5921"\w* \w multitude|strong="H7227"\w*. +\v 10 \w Now|strong="H6258"\w* \w give|strong="H5414"\w* \w me|strong="H5414"\w* \w wisdom|strong="H2451"\w* \w and|strong="H1419"\w* \w knowledge|strong="H4093"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H5971"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H1419"\w* \w come|strong="H3318"\w* \w in|strong="H6440"\w* \w before|strong="H6440"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*; \w for|strong="H3588"\w* \w who|strong="H4310"\w* \w can|strong="H4310"\w* \w judge|strong="H8199"\w* \w this|strong="H2088"\w* \w great|strong="H1419"\w* \w people|strong="H5971"\w* \w of|strong="H6440"\w* \w yours|strong="H5414"\w*?” +\p +\v 11 \w God|strong="H3808"\w* said \w to|strong="H1961"\w* \w Solomon|strong="H8010"\w*, “\w Because|strong="H5921"\w* \w this|strong="H2063"\w* \w was|strong="H1961"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w heart|strong="H3824"\w*, \w and|strong="H3117"\w* \w you|strong="H5921"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* \w asked|strong="H7592"\w* \w riches|strong="H6239"\w*, \w wealth|strong="H6239"\w*, \w honor|strong="H3519"\w*, \w or|strong="H3808"\w* \w the|strong="H5921"\w* \w life|strong="H5315"\w* \w of|strong="H3117"\w* \w those|strong="H5921"\w* \w who|strong="H5971"\w* \w hate|strong="H8130"\w* \w you|strong="H5921"\w*, \w nor|strong="H3808"\w* \w yet|strong="H1571"\w* \w have|strong="H1961"\w* \w you|strong="H5921"\w* \w asked|strong="H7592"\w* \w for|strong="H5921"\w* \w long|strong="H3117"\w* \w life|strong="H5315"\w*; \w but|strong="H3808"\w* \w have|strong="H1961"\w* \w asked|strong="H7592"\w* \w for|strong="H5921"\w* \w wisdom|strong="H2451"\w* \w and|strong="H3117"\w* \w knowledge|strong="H4093"\w* \w for|strong="H5921"\w* \w yourself|strong="H5315"\w*, \w that|strong="H5971"\w* \w you|strong="H5921"\w* \w may|strong="H1961"\w* \w judge|strong="H8199"\w* \w my|strong="H5921"\w* \w people|strong="H5971"\w*, \w over|strong="H5921"\w* \w whom|strong="H5971"\w* \w I|strong="H3117"\w* \w have|strong="H1961"\w* \w made|strong="H4427"\w* \w you|strong="H5921"\w* \w king|strong="H4427"\w*, +\v 12 \w therefore|strong="H3651"\w* \w wisdom|strong="H2451"\w* \w and|strong="H4428"\w* \w knowledge|strong="H4093"\w* \w is|strong="H3651"\w* \w granted|strong="H5414"\w* \w to|strong="H1961"\w* \w you|strong="H5414"\w*. \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w riches|strong="H6239"\w*, \w wealth|strong="H6239"\w*, \w and|strong="H4428"\w* \w honor|strong="H3519"\w*, \w such|strong="H3651"\w* \w as|strong="H1961"\w* \w none|strong="H3808"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w kings|strong="H4428"\w* \w have|strong="H1961"\w* \w had|strong="H1961"\w* \w who|strong="H4428"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w*, \w and|strong="H4428"\w* \w none|strong="H3808"\w* \w after|strong="H1961"\w* \w you|strong="H5414"\w* \w will|strong="H1961"\w* \w have|strong="H1961"\w*.” +\p +\v 13 \w So|strong="H5921"\w* \w Solomon|strong="H8010"\w* \w came|strong="H3478"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w high|strong="H1116"\w* \w place|strong="H1116"\w* \w that|strong="H3478"\w* \w was|strong="H3478"\w* \w at|strong="H5921"\w* \w Gibeon|strong="H1391"\w*, \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* Tent \w of|strong="H6440"\w* \w Meeting|strong="H4150"\w*, \w to|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*; \w and|strong="H3478"\w* \w he|strong="H3389"\w* \w reigned|strong="H4427"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w*. +\p +\v 14 \w Solomon|strong="H8010"\w* \w gathered|strong="H8010"\w* \w chariots|strong="H7393"\w* \w and|strong="H3967"\w* \w horsemen|strong="H6571"\w*. \w He|strong="H8147"\w* \w had|strong="H1961"\w* \w one|strong="H1961"\w* thousand four \w hundred|strong="H3967"\w* \w chariots|strong="H7393"\w* \w and|strong="H3967"\w* \w twelve|strong="H8147"\w* thousand \w horsemen|strong="H6571"\w* \w that|strong="H4428"\w* \w he|strong="H8147"\w* \w placed|strong="H3240"\w* \w in|strong="H4428"\w* \w the|strong="H1961"\w* \w chariot|strong="H7393"\w* \w cities|strong="H5892"\w*, \w and|strong="H3967"\w* \w with|strong="H5973"\w* \w the|strong="H1961"\w* \w king|strong="H4428"\w* \w at|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*. +\v 15 \w The|strong="H5414"\w* \w king|strong="H4428"\w* \w made|strong="H5414"\w* \w silver|strong="H3701"\w* \w and|strong="H3701"\w* \w gold|strong="H2091"\w* \w to|strong="H5414"\w* \w be|strong="H5414"\w* \w as|strong="H7230"\w* \w common|strong="H7230"\w* \w as|strong="H7230"\w* stones \w in|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3701"\w* \w he|strong="H5414"\w* \w made|strong="H5414"\w* cedars \w to|strong="H5414"\w* \w be|strong="H5414"\w* \w as|strong="H7230"\w* \w common|strong="H7230"\w* \w as|strong="H7230"\w* \w the|strong="H5414"\w* \w sycamore|strong="H8256"\w* \w trees|strong="H8256"\w* \w that|strong="H5414"\w* \w are|strong="H4428"\w* \w in|strong="H4428"\w* \w the|strong="H5414"\w* \w lowland|strong="H8219"\w*. +\v 16 \w The|strong="H3947"\w* \w horses|strong="H5483"\w* \w which|strong="H5483"\w* \w Solomon|strong="H8010"\w* \w had|strong="H8010"\w* \w were|strong="H4714"\w* \w brought|strong="H3947"\w* \w out|strong="H4161"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w and|strong="H4428"\w* \w from|strong="H3947"\w* Kue. \w The|strong="H3947"\w* \w king|strong="H4428"\w*’s \w merchants|strong="H5503"\w* purchased \w them|strong="H3947"\w* \w from|strong="H3947"\w* Kue. +\v 17 \w They|strong="H3651"\w* \w imported|strong="H5927"\w* \w from|strong="H3318"\w* \w Egypt|strong="H4714"\w* \w then|strong="H3318"\w* \w exported|strong="H3318"\w* \w a|strong="H3068"\w* \w chariot|strong="H4818"\w* \w for|strong="H3027"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* pieces \w of|strong="H4428"\w* \w silver|strong="H3701"\w* \w and|strong="H3967"\w* \w a|strong="H3068"\w* \w horse|strong="H5483"\w* \w for|strong="H3027"\w* \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w*.\f + \fr 1:17 \ft The pieces of silver were probably shekels, so 600 pieces would be about 13.2 pounds or 6 kilograms of silver, and 150 would be about 3.3 pounds or 1.5 kilograms of silver.\f* \w They|strong="H3651"\w* \w also|strong="H3027"\w* \w exported|strong="H3318"\w* \w them|strong="H3027"\w* \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w Hittite|strong="H2850"\w* \w kings|strong="H4428"\w* \w and|strong="H3967"\w* \w the|strong="H3605"\w* Syrian\f + \fr 1:17 \ft or, Aramean\f* \w kings|strong="H4428"\w*. +\c 2 +\p +\v 1 \w Now|strong="H5921"\w* \w Solomon|strong="H8010"\w* decided \w to|strong="H5921"\w* build \w a|strong="H3068"\w* house \w for|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s name, \w and|strong="H3967"\w* \w a|strong="H3068"\w* house \w for|strong="H5921"\w* \w his|strong="H5921"\w* kingdom. +\v 2 \w Solomon|strong="H8010"\w* counted \w out|strong="H7971"\w* seventy thousand \w men|strong="H6213"\w* \w to|strong="H7971"\w* \w bear|strong="H6213"\w* burdens, eighty thousand \w men|strong="H6213"\w* \w who|strong="H3427"\w* \w were|strong="H1732"\w* stone cutters \w in|strong="H3427"\w* \w the|strong="H6213"\w* mountains, \w and|strong="H7971"\w* three thousand six hundred \w to|strong="H7971"\w* oversee \w them|strong="H7971"\w*. +\p +\v 3 Solomon \w sent|strong="H3068"\w* \w to|strong="H3478"\w* Huram \w the|strong="H6440"\w* \w king|strong="H5921"\w* \w of|strong="H1004"\w* Tyre, saying, “\w As|strong="H3068"\w* \w you|strong="H6440"\w* dealt \w with|strong="H1004"\w* David \w my|strong="H3068"\w* father, \w and|strong="H3478"\w* \w sent|strong="H3068"\w* \w him|strong="H6440"\w* cedars \w to|strong="H3478"\w* \w build|strong="H1129"\w* \w him|strong="H6440"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w in|strong="H5921"\w* \w which|strong="H3068"\w* \w to|strong="H3478"\w* dwell, \w so|strong="H2063"\w* deal \w with|strong="H1004"\w* \w me|strong="H6440"\w*. +\v 4 Behold,\f + \fr 2:4 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w I|strong="H3588"\w* am \w about|strong="H3605"\w* \w to|strong="H1004"\w* \w build|strong="H1129"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w for|strong="H3588"\w* \w the|strong="H3605"\w* name \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w* \w my|strong="H3605"\w* God, \w to|strong="H1004"\w* dedicate \w it|strong="H3588"\w* \w to|strong="H1004"\w* \w him|strong="H3605"\w*, \w to|strong="H1004"\w* burn before \w him|strong="H3605"\w* incense \w of|strong="H1004"\w* sweet spices, \w for|strong="H3588"\w* \w the|strong="H3605"\w* continual show bread, \w and|strong="H1419"\w* \w for|strong="H3588"\w* \w the|strong="H3605"\w* burnt \w offerings|strong="H3588"\w* morning \w and|strong="H1419"\w* evening, \w on|strong="H1004"\w* \w the|strong="H3605"\w* Sabbaths, \w on|strong="H1004"\w* \w the|strong="H3605"\w* new moons, \w and|strong="H1419"\w* \w on|strong="H1004"\w* \w the|strong="H3605"\w* \w set|strong="H1129"\w* feasts \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3605"\w* God. \w This|strong="H3588"\w* \w is|strong="H3605"\w* \w an|strong="H1129"\w* ordinance \w forever|strong="H3605"\w* \w to|strong="H1004"\w* Israel. +\p +\v 5 “\w The|strong="H6440"\w* \w house|strong="H1004"\w* \w which|strong="H4310"\w* \w I|strong="H3588"\w* am \w building|strong="H1129"\w* \w will|strong="H4310"\w* \w be|strong="H3808"\w* \w great|strong="H6440"\w*, \w for|strong="H3588"\w* \w our|strong="H3588"\w* \w God|strong="H3808"\w* \w is|strong="H4310"\w* greater \w than|strong="H3808"\w* \w all|strong="H6440"\w* gods. +\v 6 \w But|strong="H6258"\w* \w who|strong="H3063"\w* \w is|strong="H3701"\w* able \w to|strong="H7971"\w* \w build|strong="H6213"\w* \w him|strong="H7971"\w* \w a|strong="H3068"\w* house, \w since|strong="H6258"\w* heaven \w and|strong="H3063"\w* \w the|strong="H6213"\w* heaven \w of|strong="H6213"\w* heavens \w can|strong="H6213"\w*’t contain \w him|strong="H7971"\w*? \w Who|strong="H3063"\w* am \w I|strong="H6258"\w* \w then|strong="H6258"\w*, \w that|strong="H3045"\w* \w I|strong="H6258"\w* \w should|strong="H6213"\w* \w build|strong="H6213"\w* \w him|strong="H7971"\w* \w a|strong="H3068"\w* house, except \w just|strong="H6213"\w* \w to|strong="H7971"\w* burn incense \w before|strong="H5973"\w* \w him|strong="H7971"\w*? +\p +\v 7 “\w Now|strong="H2009"\w* \w therefore|strong="H3588"\w* \w send|strong="H7971"\w* \w me|strong="H7971"\w* \w a|strong="H3068"\w* \w man|strong="H3045"\w* \w skillful|strong="H3045"\w* \w to|strong="H7971"\w* work \w in|strong="H5650"\w* gold, \w in|strong="H5650"\w* silver, \w in|strong="H5650"\w* bronze, \w in|strong="H5650"\w* iron, \w and|strong="H7971"\w* \w in|strong="H5650"\w* purple, crimson, \w and|strong="H7971"\w* blue, \w and|strong="H7971"\w* \w who|strong="H5650"\w* \w knows|strong="H3045"\w* \w how|strong="H3588"\w* \w to|strong="H7971"\w* engrave engravings, \w to|strong="H7971"\w* \w be|strong="H6086"\w* \w with|strong="H5973"\w* \w the|strong="H3588"\w* \w skillful|strong="H3045"\w* \w men|strong="H5650"\w* \w who|strong="H5650"\w* \w are|strong="H5650"\w* \w with|strong="H5973"\w* \w me|strong="H7971"\w* \w in|strong="H5650"\w* Judah \w and|strong="H7971"\w* \w in|strong="H5650"\w* Jerusalem, \w whom|strong="H3588"\w* \w David|strong="H5973"\w* \w my|strong="H3045"\w* father \w provided|strong="H3045"\w*. +\p +\v 8 “Send \w me|strong="H3559"\w* \w also|strong="H3588"\w* cedar \w trees|strong="H6086"\w*, cypress \w trees|strong="H6086"\w*, \w and|strong="H1419"\w* algum \w trees|strong="H6086"\w* \w out|strong="H1419"\w* \w of|strong="H1004"\w* Lebanon, \w for|strong="H3588"\w* \w I|strong="H3588"\w* know \w that|strong="H3588"\w* \w your|strong="H3588"\w* servants know \w how|strong="H3588"\w* \w to|strong="H1004"\w* cut \w timber|strong="H6086"\w* \w in|strong="H1004"\w* Lebanon. Behold, \w my|strong="H3588"\w* servants \w will|strong="H1004"\w* \w be|strong="H6086"\w* \w with|strong="H1004"\w* \w your|strong="H3588"\w* servants, +\v 9 even \w to|strong="H5414"\w* prepare \w me|strong="H5414"\w* \w timber|strong="H6086"\w* \w in|strong="H5650"\w* abundance; \w for|strong="H6086"\w* \w the|strong="H5414"\w* house \w which|strong="H6086"\w* \w I|strong="H5414"\w* am \w about|strong="H2009"\w* \w to|strong="H5414"\w* build \w will|strong="H5650"\w* \w be|strong="H5414"\w* great \w and|strong="H6242"\w* wonderful. +\v 10 Behold, \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* servants, \w the|strong="H5921"\w* cutters \w who|strong="H5971"\w* cut timber, twenty thousand cors\f + \fr 2:10 \ft 1 cor is the same as a homer, or about 55.9 U. S. gallons (liquid) or 211 liters or 6 bushels, so 20,000 cors of wheat would weigh about 545 metric tons\f* \w of|strong="H4428"\w* beaten wheat, twenty thousand baths\f + \fr 2:10 \ft 1 bath is one tenth of a cor, or about 5.6 U. S. gallons or 21 liters or 2.4 pecks. 20,000 baths of barley would weigh about 262 metric tons.\f* \w of|strong="H4428"\w* barley, twenty thousand baths \w of|strong="H4428"\w* wine, \w and|strong="H3068"\w* twenty thousand baths \w of|strong="H4428"\w* oil.” +\p +\v 11 \w Then|strong="H5414"\w* \w Huram|strong="H2361"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Tyre answered \w in|strong="H3478"\w* \w writing|strong="H6213"\w*, \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w sent|strong="H5414"\w* \w to|strong="H3478"\w* Solomon, “\w Because|strong="H3068"\w* \w Yahweh|strong="H3068"\w* loves \w his|strong="H5414"\w* \w people|strong="H1121"\w*, \w he|strong="H6213"\w* \w has|strong="H3068"\w* \w made|strong="H6213"\w* \w you|strong="H5414"\w* \w king|strong="H4428"\w* \w over|strong="H4428"\w* \w them|strong="H5414"\w*.” +\v 12 \w Huram|strong="H2361"\w* continued, “Blessed \w be|strong="H6258"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3045"\w* \w God|strong="H7971"\w* \w of|strong="H3045"\w* Israel, \w who|strong="H3045"\w* \w made|strong="H3045"\w* heaven \w and|strong="H7971"\w* earth, \w who|strong="H3045"\w* \w has|strong="H3045"\w* given \w to|strong="H7971"\w* \w David|strong="H7971"\w* \w the|strong="H3045"\w* king \w a|strong="H3068"\w* \w wise|strong="H2450"\w* \w son|strong="H2450"\w*, \w endowed|strong="H3045"\w* \w with|strong="H3045"\w* discretion \w and|strong="H7971"\w* understanding, \w who|strong="H3045"\w* would build \w a|strong="H3068"\w* house \w for|strong="H7971"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H7971"\w* \w a|strong="H3068"\w* house \w for|strong="H7971"\w* \w his|strong="H7971"\w* kingdom. +\p +\v 13 \w Now|strong="H5414"\w* \w I|strong="H5414"\w* \w have|strong="H3045"\w* \w sent|strong="H5414"\w* \w a|strong="H3068"\w* \w skillful|strong="H2803"\w* \w man|strong="H2450"\w*, \w endowed|strong="H3045"\w* \w with|strong="H5973"\w* understanding, Huram-abi,\f + \fr 2:13 \ft or, Huram, my father\f* +\v 14 \w the|strong="H7971"\w* son \w of|strong="H5650"\w* \w a|strong="H3068"\w* woman \w of|strong="H5650"\w* \w the|strong="H7971"\w* daughters \w of|strong="H5650"\w* Dan; \w and|strong="H7971"\w* \w his|strong="H7971"\w* father \w was|strong="H5650"\w* \w a|strong="H3068"\w* man \w of|strong="H5650"\w* Tyre. \w He|strong="H7971"\w* \w is|strong="H5650"\w* skillful \w to|strong="H7971"\w* work \w in|strong="H5650"\w* gold, \w in|strong="H5650"\w* silver, \w in|strong="H5650"\w* bronze, \w in|strong="H5650"\w* iron, \w in|strong="H5650"\w* stone, \w in|strong="H5650"\w* timber, \w in|strong="H5650"\w* purple, \w in|strong="H5650"\w* blue, \w in|strong="H5650"\w* fine linen, \w and|strong="H7971"\w* \w in|strong="H5650"\w* crimson, also \w to|strong="H7971"\w* engrave any kind \w of|strong="H5650"\w* engraving \w and|strong="H7971"\w* \w to|strong="H7971"\w* devise any device, \w that|strong="H8081"\w* \w there|strong="H6258"\w* \w may|strong="H3196"\w* \w be|strong="H5650"\w* \w a|strong="H3068"\w* place appointed \w to|strong="H7971"\w* \w him|strong="H7971"\w* \w with|strong="H7971"\w* \w your|strong="H7971"\w* skillful \w men|strong="H5650"\w*, \w and|strong="H7971"\w* \w with|strong="H7971"\w* \w the|strong="H7971"\w* skillful \w men|strong="H5650"\w* \w of|strong="H5650"\w* \w my|strong="H7971"\w* lord \w David|strong="H7971"\w* \w your|strong="H7971"\w* father. +\p +\v 15 “\w Now|strong="H5921"\w* \w therefore|strong="H5921"\w*, \w the|strong="H3605"\w* wheat, \w the|strong="H3605"\w* barley, \w the|strong="H3605"\w* oil, \w and|strong="H6086"\w* \w the|strong="H3605"\w* wine \w which|strong="H6086"\w* \w my|strong="H3605"\w* lord \w has|strong="H3389"\w* spoken \w of|strong="H4480"\w*, let \w him|strong="H5921"\w* \w send|strong="H5927"\w* \w to|strong="H5927"\w* \w his|strong="H3605"\w* servants; +\v 16 \w and|strong="H3967"\w* \w we|strong="H3068"\w* \w will|strong="H3478"\w* \w cut|strong="H3478"\w* wood \w out|strong="H4672"\w* \w of|strong="H3605"\w* Lebanon, \w as|strong="H3605"\w* \w much|strong="H3605"\w* \w as|strong="H3605"\w* \w you|strong="H3605"\w* need. \w We|strong="H3605"\w* \w will|strong="H3478"\w* \w bring|strong="H1732"\w* \w it|strong="H4672"\w* \w to|strong="H3478"\w* \w you|strong="H3605"\w* \w in|strong="H3478"\w* rafts \w by|strong="H3478"\w* sea \w to|strong="H3478"\w* Joppa; \w then|strong="H1732"\w* \w you|strong="H3605"\w* \w shall|strong="H3478"\w* carry \w it|strong="H4672"\w* \w up|strong="H3605"\w* \w to|strong="H3478"\w* Jerusalem.” +\p +\v 17 Solomon counted \w all|strong="H6213"\w* \w the|strong="H6213"\w* foreigners \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* land \w of|strong="H2022"\w* \w Israel|strong="H5971"\w*, \w after|strong="H1992"\w* \w the|strong="H6213"\w* census \w with|strong="H6213"\w* \w which|strong="H1992"\w* David \w his|strong="H6213"\w* father \w had|strong="H5971"\w* counted \w them|strong="H1992"\w*; \w and|strong="H3967"\w* \w they|strong="H1992"\w* found \w one|strong="H6213"\w* \w hundred|strong="H3967"\w* fifty-three thousand \w six|strong="H8337"\w* \w hundred|strong="H3967"\w*. +\v 18 He set seventy thousand of them to bear burdens, eighty thousand who were stone cutters in the mountains, and three thousand six hundred overseers to assign the people their work. +\c 3 +\p +\v 1 \w Then|strong="H7200"\w* \w Solomon|strong="H8010"\w* \w began|strong="H2490"\w* \w to|strong="H3068"\w* \w build|strong="H1129"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w at|strong="H3068"\w* \w Jerusalem|strong="H3389"\w* \w on|strong="H7200"\w* \w Mount|strong="H2022"\w* \w Moriah|strong="H4179"\w*, \w where|strong="H4725"\w* \w Yahweh|strong="H3068"\w* \w appeared|strong="H7200"\w* \w to|strong="H3068"\w* \w David|strong="H1732"\w* \w his|strong="H3068"\w* father, \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w prepared|strong="H3559"\w* \w in|strong="H3068"\w* \w the|strong="H7200"\w* \w place|strong="H4725"\w* \w that|strong="H7200"\w* \w David|strong="H1732"\w* \w had|strong="H3068"\w* \w appointed|strong="H3559"\w*, \w on|strong="H7200"\w* \w the|strong="H7200"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w* \w of|strong="H1004"\w* Ornan \w the|strong="H7200"\w* \w Jebusite|strong="H2983"\w*. +\v 2 \w He|strong="H8141"\w* \w began|strong="H2490"\w* \w to|strong="H2490"\w* \w build|strong="H1129"\w* \w in|strong="H8141"\w* \w the|strong="H1129"\w* \w second|strong="H8145"\w* \w day|strong="H2320"\w* \w of|strong="H8141"\w* \w the|strong="H1129"\w* \w second|strong="H8145"\w* \w month|strong="H2320"\w*, \w in|strong="H8141"\w* \w the|strong="H1129"\w* fourth \w year|strong="H8141"\w* \w of|strong="H8141"\w* \w his|strong="H1129"\w* \w reign|strong="H4438"\w*. +\v 3 Now \w these|strong="H1004"\w* \w are|strong="H1004"\w* \w the|strong="H1129"\w* \w foundations|strong="H3245"\w* \w which|strong="H1004"\w* \w Solomon|strong="H8010"\w* \w laid|strong="H3245"\w* \w for|strong="H1004"\w* \w the|strong="H1129"\w* \w building|strong="H1129"\w* \w of|strong="H1004"\w* God’s \w house|strong="H1004"\w*: \w the|strong="H1129"\w* length \w by|strong="H8010"\w* cubits\f + \fr 3:3 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w after|strong="H1004"\w* \w the|strong="H1129"\w* \w first|strong="H7223"\w* \w measure|strong="H4060"\w* \w was|strong="H1004"\w* \w sixty|strong="H8346"\w* cubits, \w and|strong="H6242"\w* \w the|strong="H1129"\w* \w width|strong="H7341"\w* \w twenty|strong="H6242"\w* cubits. +\v 4 \w The|strong="H6440"\w* porch \w that|strong="H1004"\w* \w was|strong="H1004"\w* \w in|strong="H5921"\w* \w front|strong="H6440"\w*, \w its|strong="H5921"\w* \w length|strong="H5921"\w*, \w across|strong="H5921"\w* \w the|strong="H6440"\w* \w width|strong="H7341"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w*, \w was|strong="H1004"\w* \w twenty|strong="H6242"\w* cubits, \w and|strong="H3967"\w* \w the|strong="H6440"\w* \w height|strong="H1363"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w twenty|strong="H6242"\w*; \w and|strong="H3967"\w* \w he|strong="H1004"\w* \w overlaid|strong="H6823"\w* \w it|strong="H5921"\w* \w within|strong="H1004"\w* \w with|strong="H1004"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*. +\v 5 \w He|strong="H1004"\w* \w made|strong="H5927"\w* \w the|strong="H5921"\w* \w larger|strong="H1419"\w* \w room|strong="H1004"\w* \w with|strong="H1004"\w* \w a|strong="H3068"\w* ceiling \w of|strong="H1004"\w* \w cypress|strong="H1265"\w* \w wood|strong="H6086"\w*, \w which|strong="H1004"\w* \w he|strong="H1004"\w* \w overlaid|strong="H2645"\w* \w with|strong="H1004"\w* \w fine|strong="H2896"\w* \w gold|strong="H2091"\w*, \w and|strong="H1419"\w* \w ornamented|strong="H5927"\w* \w it|strong="H5921"\w* \w with|strong="H1004"\w* \w palm|strong="H8561"\w* \w trees|strong="H6086"\w* \w and|strong="H1419"\w* \w chains|strong="H8333"\w*. +\v 6 \w He|strong="H1004"\w* decorated \w the|strong="H6823"\w* \w house|strong="H1004"\w* \w with|strong="H1004"\w* \w precious|strong="H3368"\w* stones \w for|strong="H1004"\w* \w beauty|strong="H8597"\w*. \w The|strong="H6823"\w* \w gold|strong="H2091"\w* \w was|strong="H1004"\w* \w gold|strong="H2091"\w* \w from|strong="H2091"\w* \w Parvaim|strong="H6516"\w*. +\v 7 \w He|strong="H1004"\w* \w also|strong="H1817"\w* \w overlaid|strong="H2645"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*, \w the|strong="H5921"\w* \w beams|strong="H6982"\w*, \w the|strong="H5921"\w* \w thresholds|strong="H5592"\w*, \w its|strong="H5921"\w* \w walls|strong="H7023"\w*, \w and|strong="H1004"\w* \w its|strong="H5921"\w* \w doors|strong="H1817"\w* \w with|strong="H1004"\w* \w gold|strong="H2091"\w*, \w and|strong="H1004"\w* \w engraved|strong="H6605"\w* \w cherubim|strong="H3742"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w walls|strong="H7023"\w*. +\p +\v 8 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6440"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w*. \w Its|strong="H5921"\w* \w length|strong="H5921"\w*, \w according|strong="H5921"\w* \w to|strong="H6213"\w* \w the|strong="H6440"\w* \w width|strong="H7341"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w*, \w was|strong="H1004"\w* \w twenty|strong="H6242"\w* cubits, \w and|strong="H3967"\w* \w its|strong="H5921"\w* \w width|strong="H7341"\w* \w twenty|strong="H6242"\w* cubits; \w and|strong="H3967"\w* \w he|strong="H6213"\w* \w overlaid|strong="H2645"\w* \w it|strong="H5921"\w* \w with|strong="H1004"\w* \w fine|strong="H2896"\w* \w gold|strong="H2091"\w*, amounting \w to|strong="H6213"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w talents|strong="H3603"\w*.\f + \fr 3:8 \ft A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 600 talents is about 18 metric tons\f* +\v 9 \w The|strong="H2645"\w* \w weight|strong="H4948"\w* \w of|strong="H8255"\w* \w the|strong="H2645"\w* \w nails|strong="H4548"\w* \w was|strong="H4948"\w* \w fifty|strong="H2572"\w* \w shekels|strong="H8255"\w*\f + \fr 3:9 \ft A shekel is about 10 grams or about 0.32 Troy ounces, so 50 shekels was about 0.5 kilograms or about 16 Troy ounces.\f* \w of|strong="H8255"\w* \w gold|strong="H2091"\w*. He \w overlaid|strong="H2645"\w* \w the|strong="H2645"\w* \w upper|strong="H5944"\w* \w rooms|strong="H5944"\w* \w with|strong="H2645"\w* \w gold|strong="H2091"\w*. +\p +\v 10 \w In|strong="H6213"\w* \w the|strong="H6213"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w two|strong="H8147"\w* \w cherubim|strong="H3742"\w* \w by|strong="H2091"\w* carving, \w and|strong="H1004"\w* \w they|strong="H6213"\w* \w overlaid|strong="H6823"\w* \w them|strong="H6213"\w* \w with|strong="H1004"\w* \w gold|strong="H2091"\w*. +\v 11 \w The|strong="H5060"\w* \w wings|strong="H3671"\w* \w of|strong="H1004"\w* \w the|strong="H5060"\w* \w cherubim|strong="H3742"\w* \w were|strong="H3742"\w* \w twenty|strong="H6242"\w* \w cubits|strong="H2568"\w* long: \w the|strong="H5060"\w* \w wing|strong="H3671"\w* \w of|strong="H1004"\w* \w the|strong="H5060"\w* \w one|strong="H3671"\w* \w was|strong="H1004"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w*, \w reaching|strong="H5060"\w* \w to|strong="H1004"\w* \w the|strong="H5060"\w* \w wall|strong="H7023"\w* \w of|strong="H1004"\w* \w the|strong="H5060"\w* \w house|strong="H1004"\w*; \w and|strong="H6242"\w* \w the|strong="H5060"\w* \w other|strong="H3671"\w* \w wing|strong="H3671"\w* \w was|strong="H1004"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w*, \w reaching|strong="H5060"\w* \w to|strong="H1004"\w* \w the|strong="H5060"\w* \w wing|strong="H3671"\w* \w of|strong="H1004"\w* \w the|strong="H5060"\w* \w other|strong="H3671"\w* \w cherub|strong="H3742"\w*. +\v 12 \w The|strong="H5060"\w* \w wing|strong="H3671"\w* \w of|strong="H1004"\w* \w the|strong="H5060"\w* \w other|strong="H3671"\w* \w cherub|strong="H3742"\w* \w was|strong="H1004"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w*, \w reaching|strong="H5060"\w* \w to|strong="H1004"\w* \w the|strong="H5060"\w* \w wall|strong="H7023"\w* \w of|strong="H1004"\w* \w the|strong="H5060"\w* \w house|strong="H1004"\w*; \w and|strong="H1004"\w* \w the|strong="H5060"\w* \w other|strong="H3671"\w* \w wing|strong="H3671"\w* \w was|strong="H1004"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w*, \w joining|strong="H1695"\w* \w to|strong="H1004"\w* \w the|strong="H5060"\w* \w wing|strong="H3671"\w* \w of|strong="H1004"\w* \w the|strong="H5060"\w* \w other|strong="H3671"\w* \w cherub|strong="H3742"\w*. +\v 13 \w The|strong="H6440"\w* \w wings|strong="H3671"\w* \w of|strong="H1004"\w* \w these|strong="H1992"\w* \w cherubim|strong="H3742"\w* \w spread|strong="H6566"\w* \w themselves|strong="H1992"\w* \w out|strong="H6566"\w* \w twenty|strong="H6242"\w* cubits. \w They|strong="H1992"\w* \w stood|strong="H5975"\w* \w on|strong="H5921"\w* \w their|strong="H6440"\w* \w feet|strong="H7272"\w*, \w and|strong="H6242"\w* \w their|strong="H6440"\w* \w faces|strong="H6440"\w* \w were|strong="H1992"\w* \w toward|strong="H5921"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w*. +\v 14 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H5921"\w* \w veil|strong="H6532"\w* \w of|strong="H5921"\w* \w blue|strong="H8504"\w*, \w purple|strong="H8504"\w*, \w crimson|strong="H3758"\w*, \w and|strong="H8504"\w* \w fine|strong="H6213"\w* linen, \w and|strong="H8504"\w* \w ornamented|strong="H5927"\w* \w it|strong="H5921"\w* \w with|strong="H6213"\w* \w cherubim|strong="H3742"\w*. +\p +\v 15 \w Also|strong="H6213"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w two|strong="H8147"\w* \w pillars|strong="H5982"\w* \w thirty-five|strong="H7970"\w* \w cubits|strong="H2568"\w* \w high|strong="H7218"\w*, \w and|strong="H1004"\w* \w the|strong="H6440"\w* \w capital|strong="H6858"\w* \w that|strong="H6213"\w* \w was|strong="H1004"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w top|strong="H7218"\w* \w of|strong="H1004"\w* \w each|strong="H8147"\w* \w of|strong="H1004"\w* \w them|strong="H5921"\w* \w was|strong="H1004"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w*. +\v 16 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w chains|strong="H8333"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w inner|strong="H1687"\w* \w sanctuary|strong="H1687"\w*, \w and|strong="H3967"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tops|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w pillars|strong="H5982"\w*; \w and|strong="H3967"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w one|strong="H6213"\w* \w hundred|strong="H3967"\w* \w pomegranates|strong="H7416"\w*, \w and|strong="H3967"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w chains|strong="H8333"\w*. +\v 17 \w He|strong="H5921"\w* \w set|strong="H6965"\w* \w up|strong="H6965"\w* \w the|strong="H6440"\w* \w pillars|strong="H5982"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w temple|strong="H1964"\w*, \w one|strong="H3225"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w and|strong="H6965"\w* \w the|strong="H6440"\w* \w other|strong="H7121"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w left|strong="H8040"\w*; \w and|strong="H6965"\w* \w called|strong="H7121"\w* \w the|strong="H6440"\w* \w name|strong="H8034"\w* \w of|strong="H6440"\w* \w that|strong="H7121"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w Jachin|strong="H3199"\w*, \w and|strong="H6965"\w* \w the|strong="H6440"\w* \w name|strong="H8034"\w* \w of|strong="H6440"\w* \w that|strong="H7121"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w left|strong="H8040"\w* \w Boaz|strong="H1162"\w*. +\c 4 +\p +\v 1 \w Then|strong="H6213"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w an|strong="H6213"\w* \w altar|strong="H4196"\w* \w of|strong="H4196"\w* \w bronze|strong="H5178"\w*, \w twenty|strong="H6242"\w* cubits\f + \fr 4:1 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* long, \w twenty|strong="H6242"\w* cubits \w wide|strong="H7341"\w*, \w and|strong="H6242"\w* \w ten|strong="H6235"\w* cubits \w high|strong="H6967"\w*. +\v 2 \w Also|strong="H6213"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w molten|strong="H3332"\w* \w sea|strong="H3220"\w*\f + \fr 4:2 \ft or, pool, or, reservoir\f* \w of|strong="H8193"\w* \w ten|strong="H6235"\w* \w cubits|strong="H2568"\w* \w from|strong="H5437"\w* \w brim|strong="H8193"\w* \w to|strong="H6213"\w* \w brim|strong="H8193"\w*. \w It|strong="H6213"\w* \w was|strong="H6967"\w* \w round|strong="H5439"\w*, \w five|strong="H2568"\w* \w cubits|strong="H2568"\w* \w high|strong="H6967"\w*, \w and|strong="H7970"\w* \w thirty|strong="H7970"\w* \w cubits|strong="H2568"\w* \w in|strong="H6213"\w* \w circumference|strong="H5437"\w*. +\v 3 \w Under|strong="H8478"\w* \w it|strong="H5439"\w* \w was|strong="H3220"\w* \w the|strong="H8478"\w* \w likeness|strong="H1823"\w* \w of|strong="H8478"\w* \w oxen|strong="H1241"\w*, \w which|strong="H1823"\w* \w encircled|strong="H5437"\w* \w it|strong="H5439"\w*, \w for|strong="H8478"\w* \w ten|strong="H6235"\w* cubits, \w encircling|strong="H5437"\w* \w the|strong="H8478"\w* \w sea|strong="H3220"\w*. \w The|strong="H8478"\w* \w oxen|strong="H1241"\w* \w were|strong="H1241"\w* \w in|strong="H3220"\w* \w two|strong="H8147"\w* \w rows|strong="H2905"\w*, \w cast|strong="H3332"\w* when \w it|strong="H5439"\w* \w was|strong="H3220"\w* \w cast|strong="H3332"\w*. +\v 4 \w It|strong="H5921"\w* \w stood|strong="H5975"\w* \w on|strong="H5921"\w* \w twelve|strong="H8147"\w* \w oxen|strong="H1241"\w*, \w three|strong="H7969"\w* \w looking|strong="H6437"\w* \w toward|strong="H5921"\w* \w the|strong="H3605"\w* \w north|strong="H6828"\w*, \w three|strong="H7969"\w* \w looking|strong="H6437"\w* \w toward|strong="H5921"\w* \w the|strong="H3605"\w* \w west|strong="H3220"\w*, \w three|strong="H7969"\w* \w looking|strong="H6437"\w* \w toward|strong="H5921"\w* \w the|strong="H3605"\w* \w south|strong="H5045"\w*, \w and|strong="H1004"\w* \w three|strong="H7969"\w* \w looking|strong="H6437"\w* \w toward|strong="H5921"\w* \w the|strong="H3605"\w* \w east|strong="H4217"\w*; \w and|strong="H1004"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w* \w was|strong="H1004"\w* \w set|strong="H5975"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w above|strong="H4605"\w*, \w and|strong="H1004"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* hindquarters \w were|strong="H1241"\w* \w inward|strong="H1004"\w*. +\v 5 \w It|strong="H2388"\w* \w was|strong="H8193"\w* \w a|strong="H3068"\w* \w handbreadth|strong="H2947"\w* \w thick|strong="H5672"\w*. Its \w brim|strong="H8193"\w* \w was|strong="H8193"\w* \w made|strong="H2388"\w* \w like|strong="H7799"\w* \w the|strong="H2388"\w* \w brim|strong="H8193"\w* \w of|strong="H4639"\w* \w a|strong="H3068"\w* \w cup|strong="H3563"\w*, \w like|strong="H7799"\w* \w the|strong="H2388"\w* \w flower|strong="H6525"\w* \w of|strong="H4639"\w* \w a|strong="H3068"\w* \w lily|strong="H7799"\w*. \w It|strong="H2388"\w* \w received|strong="H2388"\w* \w and|strong="H2388"\w* \w held|strong="H2388"\w* \w three|strong="H7969"\w* thousand \w baths|strong="H1324"\w*.\f + \fr 4:5 \ft A bath is about 5.6 U. S. gallons or 21.1 liters, so 3,000 baths is about 16,800 gallons or 63.3 kiloliters.\f* +\v 6 \w He|strong="H6213"\w* \w also|strong="H6213"\w* \w made|strong="H6213"\w* \w ten|strong="H6235"\w* \w basins|strong="H3595"\w*, \w and|strong="H3548"\w* \w put|strong="H5414"\w* \w five|strong="H2568"\w* \w on|strong="H6213"\w* \w the|strong="H5414"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w and|strong="H3548"\w* \w five|strong="H2568"\w* \w on|strong="H6213"\w* \w the|strong="H5414"\w* \w left|strong="H8040"\w*, \w to|strong="H6213"\w* \w wash|strong="H7364"\w* \w in|strong="H6213"\w* \w them|strong="H5414"\w*. \w The|strong="H5414"\w* \w things|strong="H4639"\w* \w that|strong="H5414"\w* belonged \w to|strong="H6213"\w* \w the|strong="H5414"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w were|strong="H5414"\w* \w washed|strong="H7364"\w* \w in|strong="H6213"\w* \w them|strong="H5414"\w*, \w but|strong="H3225"\w* \w the|strong="H5414"\w* \w sea|strong="H3220"\w* \w was|strong="H5414"\w* \w for|strong="H6213"\w* \w the|strong="H5414"\w* \w priests|strong="H3548"\w* \w to|strong="H6213"\w* \w wash|strong="H7364"\w* \w in|strong="H6213"\w*. +\p +\v 7 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H5414"\w* \w ten|strong="H6235"\w* lamp stands \w of|strong="H4941"\w* \w gold|strong="H2091"\w* \w according|strong="H4941"\w* \w to|strong="H6213"\w* \w the|strong="H5414"\w* \w ordinance|strong="H4941"\w* concerning \w them|strong="H5414"\w*; \w and|strong="H4941"\w* \w he|strong="H6213"\w* \w set|strong="H5414"\w* \w them|strong="H5414"\w* \w in|strong="H6213"\w* \w the|strong="H5414"\w* \w temple|strong="H1964"\w*, \w five|strong="H2568"\w* \w on|strong="H2091"\w* \w the|strong="H5414"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w and|strong="H4941"\w* \w five|strong="H2568"\w* \w on|strong="H2091"\w* \w the|strong="H5414"\w* \w left|strong="H8040"\w*. +\v 8 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w also|strong="H6213"\w* \w ten|strong="H6235"\w* \w tables|strong="H7979"\w*, \w and|strong="H3967"\w* \w placed|strong="H3240"\w* \w them|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w temple|strong="H1964"\w*, \w five|strong="H2568"\w* \w on|strong="H2091"\w* \w the|strong="H6213"\w* \w right|strong="H3225"\w* \w side|strong="H3225"\w* \w and|strong="H3967"\w* \w five|strong="H2568"\w* \w on|strong="H2091"\w* \w the|strong="H6213"\w* \w left|strong="H8040"\w*. \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w one|strong="H6213"\w* \w hundred|strong="H3967"\w* \w basins|strong="H4219"\w* \w of|strong="H4219"\w* \w gold|strong="H2091"\w*. +\v 9 Furthermore \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w court|strong="H2691"\w* \w of|strong="H3548"\w* \w the|strong="H6213"\w* \w priests|strong="H3548"\w*, \w the|strong="H6213"\w* \w great|strong="H1419"\w* \w court|strong="H2691"\w*, \w and|strong="H1419"\w* \w doors|strong="H1817"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w court|strong="H2691"\w*, \w and|strong="H1419"\w* \w overlaid|strong="H6823"\w* \w their|strong="H6213"\w* \w doors|strong="H1817"\w* \w with|strong="H6213"\w* \w bronze|strong="H5178"\w*. +\v 10 \w He|strong="H5414"\w* \w set|strong="H5414"\w* \w the|strong="H5414"\w* \w sea|strong="H3220"\w* \w on|strong="H3220"\w* \w the|strong="H5414"\w* \w right|strong="H3233"\w* \w side|strong="H3802"\w* \w of|strong="H5045"\w* \w the|strong="H5414"\w* house \w eastward|strong="H6924"\w*, \w toward|strong="H4136"\w* \w the|strong="H5414"\w* \w south|strong="H5045"\w*. +\p +\v 11 \w Huram|strong="H2361"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w pots|strong="H5518"\w*, \w the|strong="H6213"\w* \w shovels|strong="H3257"\w*, \w and|strong="H4428"\w* \w the|strong="H6213"\w* \w basins|strong="H4219"\w*. +\p \w So|strong="H6213"\w* \w Huram|strong="H2361"\w* \w finished|strong="H3615"\w* \w doing|strong="H6213"\w* \w the|strong="H6213"\w* \w work|strong="H4399"\w* \w that|strong="H4428"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w* \w for|strong="H6213"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w in|strong="H6213"\w* God’s \w house|strong="H1004"\w*: +\v 12 \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w pillars|strong="H5982"\w*, \w the|strong="H5921"\w* \w bowls|strong="H1543"\w*, \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w capitals|strong="H3805"\w* \w which|strong="H3805"\w* \w were|strong="H7218"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w top|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w pillars|strong="H5982"\w*, \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w networks|strong="H7639"\w* \w to|strong="H5921"\w* \w cover|strong="H3680"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w bowls|strong="H1543"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w capitals|strong="H3805"\w* \w that|strong="H3805"\w* \w were|strong="H7218"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w top|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w pillars|strong="H5982"\w*, +\v 13 \w and|strong="H3967"\w* \w the|strong="H6440"\w* four \w hundred|strong="H3967"\w* \w pomegranates|strong="H7416"\w* \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w two|strong="H8147"\w* \w networks|strong="H7639"\w*—\w two|strong="H8147"\w* \w rows|strong="H2905"\w* \w of|strong="H6440"\w* \w pomegranates|strong="H7416"\w* \w for|strong="H5921"\w* \w each|strong="H8147"\w* \w network|strong="H7639"\w*, \w to|strong="H5921"\w* \w cover|strong="H3680"\w* \w the|strong="H6440"\w* \w two|strong="H8147"\w* \w bowls|strong="H1543"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w capitals|strong="H3805"\w* \w that|strong="H3805"\w* \w were|strong="H8147"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w pillars|strong="H5982"\w*. +\v 14 \w He|strong="H6213"\w* \w also|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H5921"\w* \w bases|strong="H4350"\w*, \w and|strong="H6213"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H5921"\w* \w basins|strong="H3595"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w bases|strong="H4350"\w*— +\v 15 \w one|strong="H8147"\w* \w sea|strong="H3220"\w*, \w and|strong="H1241"\w* \w the|strong="H8478"\w* \w twelve|strong="H8147"\w* \w oxen|strong="H1241"\w* \w under|strong="H8478"\w* \w it|strong="H8478"\w*. +\v 16 \w Huram-abi|strong="H2361"\w*\f + \fr 4:16 \ft “abi” means “his father”\f* \w also|strong="H3068"\w* \w made|strong="H6213"\w* \w the|strong="H3605"\w* \w pots|strong="H5518"\w*, \w the|strong="H3605"\w* \w shovels|strong="H3257"\w*, \w the|strong="H3605"\w* \w forks|strong="H4207"\w*, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w vessels|strong="H3627"\w* \w for|strong="H6213"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w*, \w for|strong="H6213"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w of|strong="H4428"\w* \w bright|strong="H4838"\w* \w bronze|strong="H5178"\w*. +\v 17 \w The|strong="H3332"\w* \w king|strong="H4428"\w* \w cast|strong="H3332"\w* them \w in|strong="H4428"\w* \w the|strong="H3332"\w* \w plain|strong="H3603"\w* \w of|strong="H4428"\w* \w the|strong="H3332"\w* \w Jordan|strong="H3383"\w*, \w in|strong="H4428"\w* \w the|strong="H3332"\w* \w clay|strong="H5645"\w* ground between \w Succoth|strong="H5523"\w* \w and|strong="H4428"\w* \w Zeredah|strong="H6868"\w*. +\v 18 \w Thus|strong="H3808"\w* \w Solomon|strong="H8010"\w* \w made|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* \w vessels|strong="H3627"\w* \w in|strong="H6213"\w* \w great|strong="H3966"\w* \w abundance|strong="H7230"\w*, \w so|strong="H6213"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w weight|strong="H4948"\w* \w of|strong="H3627"\w* \w the|strong="H3605"\w* \w bronze|strong="H5178"\w* could \w not|strong="H3808"\w* \w be|strong="H3808"\w* determined. +\p +\v 19 \w Solomon|strong="H8010"\w* \w made|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w that|strong="H3605"\w* \w were|strong="H3627"\w* \w in|strong="H5921"\w* God’s \w house|strong="H1004"\w*: \w the|strong="H3605"\w* \w golden|strong="H2091"\w* \w altar|strong="H4196"\w*, \w the|strong="H3605"\w* \w tables|strong="H7979"\w* \w with|strong="H1004"\w* \w the|strong="H3605"\w* \w show|strong="H6213"\w* \w bread|strong="H3899"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, +\v 20 \w and|strong="H4941"\w* \w the|strong="H6440"\w* \w lamp|strong="H5216"\w* stands \w with|strong="H6440"\w* \w their|strong="H6440"\w* \w lamps|strong="H5216"\w* \w to|strong="H6440"\w* \w burn|strong="H1197"\w* \w according|strong="H4941"\w* \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w ordinance|strong="H4941"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w inner|strong="H1687"\w* \w sanctuary|strong="H1687"\w*, \w of|strong="H6440"\w* \w pure|strong="H5462"\w* \w gold|strong="H2091"\w*; +\v 21 \w and|strong="H2091"\w* \w the|strong="H1931"\w* \w flowers|strong="H6525"\w*, \w the|strong="H1931"\w* \w lamps|strong="H5216"\w*, \w and|strong="H2091"\w* \w the|strong="H1931"\w* \w tongs|strong="H4457"\w* \w of|strong="H2091"\w* \w gold|strong="H2091"\w* \w that|strong="H1931"\w* \w was|strong="H1931"\w* \w purest|strong="H4357"\w* \w gold|strong="H2091"\w*; +\v 22 \w and|strong="H1004"\w* \w the|strong="H5462"\w* \w snuffers|strong="H4212"\w*, \w the|strong="H5462"\w* \w basins|strong="H4219"\w*, \w the|strong="H5462"\w* \w spoons|strong="H3709"\w*, \w and|strong="H1004"\w* \w the|strong="H5462"\w* fire \w pans|strong="H3709"\w* \w of|strong="H1004"\w* \w pure|strong="H5462"\w* \w gold|strong="H2091"\w*. \w As|strong="H1004"\w* \w for|strong="H1004"\w* \w the|strong="H5462"\w* \w entry|strong="H6607"\w* \w of|strong="H1004"\w* \w the|strong="H5462"\w* \w house|strong="H1004"\w*, its \w inner|strong="H6442"\w* \w doors|strong="H1817"\w* \w for|strong="H1004"\w* \w the|strong="H5462"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w* \w and|strong="H1004"\w* \w the|strong="H5462"\w* \w doors|strong="H1817"\w* \w of|strong="H1004"\w* \w the|strong="H5462"\w* main \w hall|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H5462"\w* \w temple|strong="H1004"\w* \w were|strong="H3709"\w* \w of|strong="H1004"\w* \w gold|strong="H2091"\w*. +\c 5 +\p +\v 1 Thus \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w that|strong="H3605"\w* \w Solomon|strong="H8010"\w* \w did|strong="H6213"\w* \w for|strong="H6213"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w was|strong="H3068"\w* \w finished|strong="H7999"\w*. \w Solomon|strong="H8010"\w* \w brought|strong="H5414"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w things|strong="H6944"\w* \w that|strong="H3605"\w* \w David|strong="H1732"\w* \w his|strong="H3605"\w* father \w had|strong="H3068"\w* \w dedicated|strong="H6944"\w*, \w even|strong="H6213"\w* \w the|strong="H3605"\w* \w silver|strong="H3701"\w*, \w the|strong="H3605"\w* \w gold|strong="H2091"\w*, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w*, \w and|strong="H3068"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* treasuries \w of|strong="H1004"\w* \w God|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\p +\v 2 \w Then|strong="H5927"\w* \w Solomon|strong="H8010"\w* \w assembled|strong="H6950"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w tribes|strong="H4294"\w*, \w the|strong="H3605"\w* \w princes|strong="H5387"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* fathers’ households \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*, \w to|strong="H3478"\w* \w bring|strong="H5927"\w* \w up|strong="H5927"\w* \w the|strong="H3605"\w* ark \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w* \w out|strong="H3605"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*, \w which|strong="H1931"\w* \w is|strong="H3068"\w* \w Zion|strong="H6726"\w*. +\v 3 \w So|strong="H1931"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w assembled|strong="H6950"\w* \w themselves|strong="H6950"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w at|strong="H3478"\w* \w the|strong="H3605"\w* \w feast|strong="H2282"\w*, \w which|strong="H1931"\w* \w was|strong="H3478"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w*. +\v 4 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H2205"\w* \w Israel|strong="H3478"\w* \w came|strong="H3478"\w*. \w The|strong="H3605"\w* \w Levites|strong="H3881"\w* \w took|strong="H5375"\w* \w up|strong="H5375"\w* \w the|strong="H3605"\w* ark. +\v 5 \w They|strong="H3605"\w* \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w the|strong="H3605"\w* ark, \w the|strong="H3605"\w* Tent \w of|strong="H3627"\w* \w Meeting|strong="H4150"\w*, \w and|strong="H3548"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w holy|strong="H6944"\w* \w vessels|strong="H3627"\w* \w that|strong="H3605"\w* \w were|strong="H3881"\w* \w in|strong="H5927"\w* \w the|strong="H3605"\w* Tent. \w The|strong="H3605"\w* \w Levitical|strong="H3881"\w* \w priests|strong="H3548"\w* \w brought|strong="H5927"\w* \w these|strong="H3605"\w* \w up|strong="H5927"\w*. +\v 6 \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w assembled|strong="H3259"\w* \w to|strong="H3478"\w* \w him|strong="H6440"\w* \w were|strong="H3478"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* ark, \w sacrificing|strong="H2076"\w* \w sheep|strong="H6629"\w* \w and|strong="H3478"\w* \w cattle|strong="H1241"\w* \w that|strong="H3605"\w* could \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w counted|strong="H5608"\w* \w or|strong="H3808"\w* \w numbered|strong="H5608"\w* \w for|strong="H5921"\w* \w multitude|strong="H7230"\w*. +\v 7 \w The|strong="H3068"\w* \w priests|strong="H3548"\w* \w brought|strong="H3548"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* ark \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w* \w to|strong="H3068"\w* \w its|strong="H8478"\w* \w place|strong="H4725"\w*, into \w the|strong="H3068"\w* \w inner|strong="H1687"\w* \w sanctuary|strong="H6944"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w*, \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w place|strong="H4725"\w*, \w even|strong="H3068"\w* \w under|strong="H8478"\w* \w the|strong="H3068"\w* \w wings|strong="H3671"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w cherubim|strong="H3742"\w*. +\v 8 \w For|strong="H5921"\w* \w the|strong="H5921"\w* \w cherubim|strong="H3742"\w* \w spread|strong="H6566"\w* \w out|strong="H6566"\w* \w their|strong="H5921"\w* \w wings|strong="H3671"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* ark, \w and|strong="H4725"\w* \w the|strong="H5921"\w* \w cherubim|strong="H3742"\w* \w covered|strong="H3680"\w* \w the|strong="H5921"\w* ark \w and|strong="H4725"\w* \w its|strong="H5921"\w* poles \w above|strong="H4605"\w*. +\v 9 \w The|strong="H6440"\w* poles \w were|strong="H1961"\w* \w so|strong="H4480"\w* \w long|strong="H5704"\w* \w that|strong="H7200"\w* \w the|strong="H6440"\w* \w ends|strong="H7218"\w* \w of|strong="H3117"\w* \w the|strong="H6440"\w* poles \w were|strong="H1961"\w* \w seen|strong="H7200"\w* \w from|strong="H4480"\w* \w the|strong="H6440"\w* ark \w in|strong="H5921"\w* \w front|strong="H6440"\w* \w of|strong="H3117"\w* \w the|strong="H6440"\w* \w inner|strong="H1687"\w* \w sanctuary|strong="H1687"\w*, \w but|strong="H3808"\w* \w they|strong="H3117"\w* \w were|strong="H1961"\w* \w not|strong="H3808"\w* \w seen|strong="H7200"\w* \w outside|strong="H2351"\w*; \w and|strong="H3117"\w* \w it|strong="H5921"\w* \w is|strong="H2088"\w* \w there|strong="H8033"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 10 \w There|strong="H3068"\w* \w was|strong="H3068"\w* nothing \w in|strong="H3478"\w* \w the|strong="H5414"\w* ark \w except|strong="H7535"\w* \w the|strong="H5414"\w* \w two|strong="H8147"\w* \w tablets|strong="H3871"\w* \w which|strong="H3068"\w* \w Moses|strong="H4872"\w* \w put|strong="H5414"\w* \w there|strong="H3068"\w* \w at|strong="H3478"\w* \w Horeb|strong="H2722"\w*, \w when|strong="H3318"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* covenant \w with|strong="H5973"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w when|strong="H3318"\w* \w they|strong="H3068"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*. +\p +\v 11 \w When|strong="H3588"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w had|strong="H1961"\w* \w come|strong="H1961"\w* \w out|strong="H3318"\w* \w of|strong="H4480"\w* \w the|strong="H3605"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w* (\w for|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w present|strong="H4672"\w* \w had|strong="H1961"\w* \w sanctified|strong="H6942"\w* \w themselves|strong="H6942"\w*, \w and|strong="H3548"\w* didn’t \w keep|strong="H8104"\w* \w their|strong="H3605"\w* \w divisions|strong="H4256"\w*; +\v 12 \w also|strong="H1121"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w the|strong="H3605"\w* \w singers|strong="H7891"\w*, \w all|strong="H3605"\w* \w of|strong="H1121"\w* \w them|strong="H5975"\w*, even Asaph, \w Heman|strong="H1968"\w*, \w Jeduthun|strong="H3038"\w*, \w and|strong="H3967"\w* \w their|strong="H3605"\w* \w sons|strong="H1121"\w* \w and|strong="H3967"\w* \w their|strong="H3605"\w* \w brothers|strong="H1121"\w*, \w arrayed|strong="H3847"\w* \w in|strong="H3847"\w* fine linen, \w with|strong="H5973"\w* \w cymbals|strong="H4700"\w* \w and|strong="H3967"\w* stringed instruments \w and|strong="H3967"\w* \w harps|strong="H3658"\w*, \w stood|strong="H5975"\w* \w at|strong="H5975"\w* \w the|strong="H3605"\w* \w east|strong="H4217"\w* \w end|strong="H4217"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*, \w and|strong="H3967"\w* \w with|strong="H5973"\w* \w them|strong="H5975"\w* \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* \w twenty|strong="H6242"\w* \w priests|strong="H3548"\w* \w sounding|strong="H2690"\w* \w with|strong="H5973"\w* \w trumpets|strong="H2689"\w*); +\v 13 \w when|strong="H3588"\w* \w the|strong="H8085"\w* \w trumpeters|strong="H2689"\w* \w and|strong="H3068"\w* \w singers|strong="H7891"\w* \w were|strong="H1961"\w* \w as|strong="H1961"\w* \w one|strong="H2896"\w*, \w to|strong="H3068"\w* \w make|strong="H8085"\w* \w one|strong="H2896"\w* \w sound|strong="H6963"\w* \w to|strong="H3068"\w* \w be|strong="H1961"\w* \w heard|strong="H8085"\w* \w in|strong="H3068"\w* \w praising|strong="H1984"\w* \w and|strong="H3068"\w* \w thanking|strong="H3034"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H3068"\w* \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w lifted|strong="H7311"\w* \w up|strong="H7311"\w* \w their|strong="H3068"\w* \w voice|strong="H6963"\w* \w with|strong="H4390"\w* \w the|strong="H8085"\w* \w trumpets|strong="H2689"\w* \w and|strong="H3068"\w* \w cymbals|strong="H4700"\w* \w and|strong="H3068"\w* \w instruments|strong="H3627"\w* \w of|strong="H1004"\w* \w music|strong="H7892"\w*, \w and|strong="H3068"\w* \w praised|strong="H1984"\w* \w Yahweh|strong="H3068"\w*, \w saying|strong="H6963"\w*, +\q1 “\w For|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3068"\w* \w loving|strong="H2896"\w* \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*!” +\m \w then|strong="H1961"\w* \w the|strong="H8085"\w* \w house|strong="H1004"\w* \w was|strong="H3068"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w a|strong="H3068"\w* \w cloud|strong="H6051"\w*, \w even|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, +\v 14 \w so|strong="H3808"\w* \w that|strong="H3588"\w* \w the|strong="H6440"\w* \w priests|strong="H3548"\w* \w could|strong="H3201"\w* \w not|strong="H3808"\w* \w stand|strong="H5975"\w* \w to|strong="H3201"\w* \w minister|strong="H8334"\w* \w by|strong="H3068"\w* \w reason|strong="H6440"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w cloud|strong="H6051"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w filled|strong="H4390"\w* \w God|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\c 6 +\p +\v 1 \w Then|strong="H3068"\w* \w Solomon|strong="H8010"\w* said, “\w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* said \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w would|strong="H3068"\w* \w dwell|strong="H7931"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w thick|strong="H6205"\w* \w darkness|strong="H6205"\w*. +\v 2 But \w I|strong="H1004"\w* \w have|strong="H1129"\w* \w built|strong="H1129"\w* \w you|strong="H1129"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w and|strong="H1004"\w* \w home|strong="H1004"\w*, \w a|strong="H3068"\w* \w place|strong="H4349"\w* \w for|strong="H3427"\w* \w you|strong="H1129"\w* \w to|strong="H1004"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w forever|strong="H5769"\w*.” +\p +\v 3 \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w turned|strong="H5437"\w* \w his|strong="H3605"\w* \w face|strong="H6440"\w*, \w and|strong="H3478"\w* \w blessed|strong="H1288"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w stood|strong="H5975"\w*. +\p +\v 4 \w He|strong="H3068"\w* \w said|strong="H1696"\w*, “\w Blessed|strong="H1288"\w* \w be|strong="H3027"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w who|strong="H3068"\w* \w spoke|strong="H1696"\w* \w with|strong="H4390"\w* \w his|strong="H3068"\w* \w mouth|strong="H6310"\w* \w to|strong="H1696"\w* \w David|strong="H1732"\w* \w my|strong="H3068"\w* father, \w and|strong="H3478"\w* \w has|strong="H3068"\w* \w with|strong="H4390"\w* \w his|strong="H3068"\w* \w hands|strong="H3027"\w* \w fulfilled|strong="H4390"\w* \w it|strong="H1696"\w*, \w saying|strong="H1696"\w*, +\v 5 ‘\w Since|strong="H4480"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H5971"\w* \w I|strong="H3117"\w* \w brought|strong="H3318"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* land \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*, \w I|strong="H3117"\w* chose \w no|strong="H3808"\w* \w city|strong="H5892"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w to|strong="H3318"\w* \w build|strong="H1129"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w in|strong="H5921"\w*, \w that|strong="H5971"\w* \w my|strong="H3605"\w* \w name|strong="H8034"\w* \w might|strong="H3478"\w* \w be|strong="H1961"\w* \w there|strong="H8033"\w*, \w and|strong="H3478"\w* \w I|strong="H3117"\w* chose \w no|strong="H3808"\w* \w man|strong="H3605"\w* \w to|strong="H3318"\w* \w be|strong="H1961"\w* \w prince|strong="H5057"\w* \w over|strong="H5921"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*; +\v 6 \w but|strong="H1961"\w* \w now|strong="H1961"\w* \w I|strong="H5921"\w* \w have|strong="H1961"\w* chosen \w Jerusalem|strong="H3389"\w*, \w that|strong="H5971"\w* \w my|strong="H1732"\w* \w name|strong="H8034"\w* \w might|strong="H3478"\w* \w be|strong="H1961"\w* \w there|strong="H8033"\w*; \w and|strong="H3478"\w* \w I|strong="H5921"\w* \w have|strong="H1961"\w* chosen \w David|strong="H1732"\w* \w to|strong="H3478"\w* \w be|strong="H1961"\w* \w over|strong="H5921"\w* \w my|strong="H1732"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*.’ +\v 7 \w Now|strong="H1961"\w* \w it|strong="H8034"\w* \w was|strong="H3068"\w* \w in|strong="H3478"\w* \w the|strong="H3068"\w* \w heart|strong="H3824"\w* \w of|strong="H1004"\w* \w David|strong="H1732"\w* \w my|strong="H3068"\w* father \w to|strong="H3478"\w* \w build|strong="H1129"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w for|strong="H8034"\w* \w the|strong="H3068"\w* \w name|strong="H8034"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. +\v 8 \w But|strong="H3588"\w* \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w David|strong="H1732"\w* \w my|strong="H3068"\w* father, ‘\w Whereas|strong="H3282"\w* \w it|strong="H3588"\w* \w was|strong="H3068"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w to|strong="H3068"\w* \w build|strong="H1129"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w for|strong="H3588"\w* \w my|strong="H3068"\w* \w name|strong="H8034"\w*, \w you|strong="H3588"\w* \w did|strong="H3068"\w* \w well|strong="H2895"\w* \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H3068"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w*; +\v 9 \w nevertheless|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w build|strong="H1129"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w*, \w but|strong="H3588"\w* \w your|strong="H3588"\w* \w son|strong="H1121"\w* \w who|strong="H1931"\w* \w will|strong="H1121"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w your|strong="H3588"\w* body, \w he|strong="H1931"\w* \w shall|strong="H1121"\w* \w build|strong="H1129"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w for|strong="H3588"\w* \w my|strong="H3318"\w* \w name|strong="H8034"\w*.’ +\p +\v 10 “\w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w performed|strong="H6965"\w* \w his|strong="H3068"\w* \w word|strong="H1697"\w* \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w spoke|strong="H1696"\w*; \w for|strong="H5921"\w* \w I|strong="H5921"\w* \w have|strong="H3068"\w* \w risen|strong="H6965"\w* \w up|strong="H6965"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w place|strong="H8478"\w* \w of|strong="H1004"\w* \w David|strong="H1732"\w* \w my|strong="H3068"\w* father, \w and|strong="H6965"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w throne|strong="H3678"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w as|strong="H1697"\w* \w Yahweh|strong="H3068"\w* \w promised|strong="H1696"\w*, \w and|strong="H6965"\w* \w have|strong="H3068"\w* \w built|strong="H1129"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. +\v 11 \w There|strong="H8033"\w* \w I|strong="H7760"\w* \w have|strong="H3068"\w* \w set|strong="H7760"\w* \w the|strong="H3068"\w* ark, \w in|strong="H3478"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w*, \w which|strong="H3068"\w* \w he|strong="H8033"\w* \w made|strong="H3772"\w* \w with|strong="H5973"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*.” +\p +\v 12 \w He|strong="H3068"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*’s \w altar|strong="H4196"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w presence|strong="H6440"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w spread|strong="H6566"\w* \w out|strong="H6566"\w* \w his|strong="H3605"\w* \w hands|strong="H3709"\w* +\v 13 (\w for|strong="H3588"\w* \w Solomon|strong="H8010"\w* \w had|strong="H3478"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w bronze|strong="H5178"\w* \w platform|strong="H3595"\w*, \w five|strong="H2568"\w* \w cubits|strong="H2568"\w*\f + \fr 6:13 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w long|strong="H3605"\w*, \w five|strong="H2568"\w* \w cubits|strong="H2568"\w* \w wide|strong="H7341"\w*, \w and|strong="H3478"\w* \w three|strong="H7969"\w* \w cubits|strong="H2568"\w* \w high|strong="H6967"\w*, \w and|strong="H3478"\w* \w had|strong="H3478"\w* \w set|strong="H5414"\w* \w it|strong="H5414"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w the|strong="H3605"\w* \w court|strong="H5835"\w*; \w and|strong="H3478"\w* \w he|strong="H3588"\w* \w stood|strong="H5975"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w*, \w and|strong="H3478"\w* \w knelt|strong="H1288"\w* \w down|strong="H1288"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w knees|strong="H1290"\w* \w before|strong="H5048"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w of|strong="H8432"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w spread|strong="H6566"\w* \w out|strong="H6566"\w* \w his|strong="H3605"\w* \w hands|strong="H3709"\w* \w toward|strong="H5921"\w* \w heaven|strong="H8064"\w*). +\v 14 \w Then|strong="H1980"\w* \w he|strong="H3068"\w* said, “\w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w there|strong="H3605"\w* \w is|strong="H3068"\w* \w no|strong="H3605"\w* \w God|strong="H3068"\w* \w like|strong="H3644"\w* \w you|strong="H6440"\w* \w in|strong="H1980"\w* \w heaven|strong="H8064"\w* \w or|strong="H3068"\w* \w on|strong="H1980"\w* \w earth|strong="H8064"\w*—\w you|strong="H6440"\w* \w who|strong="H3605"\w* \w keep|strong="H8104"\w* \w covenant|strong="H1285"\w* \w and|strong="H1980"\w* loving \w kindness|strong="H2617"\w* \w with|strong="H1980"\w* \w your|strong="H3068"\w* \w servants|strong="H5650"\w* \w who|strong="H3605"\w* \w walk|strong="H1980"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w with|strong="H1980"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w heart|strong="H3820"\w*; +\v 15 \w who|strong="H5650"\w* \w have|strong="H5650"\w* \w kept|strong="H8104"\w* \w with|strong="H4390"\w* \w your|strong="H8104"\w* \w servant|strong="H5650"\w* \w David|strong="H1732"\w* \w my|strong="H8104"\w* father \w that|strong="H3117"\w* \w which|strong="H2088"\w* \w you|strong="H3117"\w* \w promised|strong="H1696"\w* \w him|strong="H3027"\w*. Yes, \w you|strong="H3117"\w* \w spoke|strong="H1696"\w* \w with|strong="H4390"\w* \w your|strong="H8104"\w* \w mouth|strong="H6310"\w*, \w and|strong="H3117"\w* \w have|strong="H5650"\w* \w fulfilled|strong="H4390"\w* \w it|strong="H1696"\w* \w with|strong="H4390"\w* \w your|strong="H8104"\w* \w hand|strong="H3027"\w*, \w as|strong="H3117"\w* \w it|strong="H1696"\w* \w is|strong="H2088"\w* \w today|strong="H3117"\w*. +\p +\v 16 “\w Now|strong="H6258"\w* \w therefore|strong="H5921"\w*, \w Yahweh|strong="H3068"\w*, \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w keep|strong="H8104"\w* \w with|strong="H1980"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w David|strong="H1732"\w* \w my|strong="H8104"\w* \w father|strong="H1121"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w you|strong="H6440"\w* \w have|strong="H3068"\w* \w promised|strong="H1696"\w* \w him|strong="H6440"\w*, \w saying|strong="H1696"\w*, ‘\w There|strong="H3427"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w fail|strong="H3772"\w* \w you|strong="H6440"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w in|strong="H3427"\w* \w my|strong="H8104"\w* \w sight|strong="H6440"\w* \w to|strong="H1696"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w throne|strong="H3678"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w if|strong="H1121"\w* \w only|strong="H7535"\w* \w your|strong="H3068"\w* \w children|strong="H1121"\w* \w take|strong="H8104"\w* \w heed|strong="H8104"\w* \w to|strong="H1696"\w* \w their|strong="H3068"\w* \w way|strong="H1870"\w*, \w to|strong="H1696"\w* \w walk|strong="H1980"\w* \w in|strong="H3427"\w* \w my|strong="H8104"\w* \w law|strong="H8451"\w* \w as|strong="H3068"\w* \w you|strong="H6440"\w* \w have|strong="H3068"\w* \w walked|strong="H1980"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*.’ +\v 17 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w let|strong="H6258"\w* \w your|strong="H3068"\w* \w word|strong="H1697"\w* \w be|strong="H1697"\w* verified, \w which|strong="H3068"\w* \w you|strong="H1696"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w David|strong="H1732"\w*. +\p +\v 18 “\w But|strong="H3588"\w* \w will|strong="H1004"\w* \w God|strong="H3808"\w* \w indeed|strong="H3588"\w* \w dwell|strong="H3427"\w* \w with|strong="H1004"\w* men \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w earth|strong="H8064"\w*? \w Behold|strong="H2009"\w*, \w heaven|strong="H8064"\w* \w and|strong="H8064"\w* \w the|strong="H5921"\w* \w heaven|strong="H8064"\w* \w of|strong="H1004"\w* \w heavens|strong="H8064"\w* \w can|strong="H3808"\w*’t \w contain|strong="H3557"\w* \w you|strong="H3588"\w*; \w how|strong="H3588"\w* \w much|strong="H5921"\w* \w less|strong="H3588"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w* \w which|strong="H1004"\w* \w I|strong="H3588"\w* \w have|strong="H1129"\w* \w built|strong="H1129"\w*! +\v 19 \w Yet|strong="H3068"\w* \w have|strong="H3068"\w* \w respect|strong="H6437"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* \w prayer|strong="H8605"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w supplication|strong="H8467"\w*, \w Yahweh|strong="H3068"\w* \w my|strong="H8085"\w* \w God|strong="H3068"\w*, \w to|strong="H3068"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w cry|strong="H7440"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w prayer|strong="H8605"\w* \w which|strong="H3068"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w prays|strong="H6419"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*; +\v 20 \w that|strong="H8085"\w* \w your|strong="H7760"\w* \w eyes|strong="H5869"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w open|strong="H6605"\w* toward \w this|strong="H2088"\w* \w house|strong="H1004"\w* \w day|strong="H3119"\w* \w and|strong="H1004"\w* \w night|strong="H3915"\w*, \w even|strong="H5869"\w* toward \w the|strong="H8085"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w you|strong="H7760"\w* \w have|strong="H1961"\w* \w said|strong="H8085"\w* \w that|strong="H8085"\w* \w you|strong="H7760"\w* \w would|strong="H5650"\w* \w put|strong="H7760"\w* \w your|strong="H7760"\w* \w name|strong="H8034"\w*, \w to|strong="H1961"\w* \w listen|strong="H8085"\w* \w to|strong="H1961"\w* \w the|strong="H8085"\w* \w prayer|strong="H8605"\w* \w which|strong="H1004"\w* \w your|strong="H7760"\w* \w servant|strong="H5650"\w* \w will|strong="H1961"\w* \w pray|strong="H6419"\w* toward \w this|strong="H2088"\w* \w place|strong="H4725"\w*. +\v 21 \w Listen|strong="H8085"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* petitions \w of|strong="H3427"\w* \w your|strong="H8085"\w* \w servant|strong="H5650"\w* \w and|strong="H3478"\w* \w of|strong="H3427"\w* \w your|strong="H8085"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w when|strong="H8085"\w* \w they|strong="H5971"\w* \w pray|strong="H6419"\w* \w toward|strong="H4480"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*. Yes, \w hear|strong="H8085"\w* \w from|strong="H4480"\w* \w your|strong="H8085"\w* \w dwelling|strong="H3427"\w* \w place|strong="H4725"\w*, even \w from|strong="H4480"\w* \w heaven|strong="H8064"\w*; \w and|strong="H3478"\w* \w when|strong="H8085"\w* \w you|strong="H4480"\w* \w hear|strong="H8085"\w*, \w forgive|strong="H5545"\w*. +\p +\v 22 “\w If|strong="H2398"\w* \w a|strong="H3068"\w* \w man|strong="H5375"\w* \w sins|strong="H2398"\w* \w against|strong="H6440"\w* \w his|strong="H5375"\w* \w neighbor|strong="H7453"\w*, \w and|strong="H1004"\w* \w an|strong="H5375"\w* oath \w is|strong="H2088"\w* \w laid|strong="H5375"\w* \w on|strong="H1004"\w* \w him|strong="H6440"\w* \w to|strong="H6440"\w* cause \w him|strong="H6440"\w* \w to|strong="H6440"\w* \w swear|strong="H5375"\w*, \w and|strong="H1004"\w* \w he|strong="H1004"\w* \w comes|strong="H6440"\w* \w and|strong="H1004"\w* swears \w before|strong="H6440"\w* \w your|strong="H5375"\w* \w altar|strong="H4196"\w* \w in|strong="H1004"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w*, +\v 23 \w then|strong="H5414"\w* \w hear|strong="H8085"\w* \w from|strong="H4480"\w* \w heaven|strong="H8064"\w*, \w act|strong="H6213"\w*, \w and|strong="H7725"\w* \w judge|strong="H8199"\w* \w your|strong="H5414"\w* \w servants|strong="H5650"\w*, \w bringing|strong="H7725"\w* retribution \w to|strong="H7725"\w* \w the|strong="H8085"\w* \w wicked|strong="H7563"\w*, \w to|strong="H7725"\w* \w bring|strong="H7725"\w* \w his|strong="H5414"\w* \w way|strong="H1870"\w* \w on|strong="H1870"\w* \w his|strong="H5414"\w* own \w head|strong="H7218"\w*; \w and|strong="H7725"\w* \w justifying|strong="H6663"\w* \w the|strong="H8085"\w* \w righteous|strong="H6662"\w*, \w to|strong="H7725"\w* \w give|strong="H5414"\w* \w him|strong="H5414"\w* \w according|strong="H4480"\w* \w to|strong="H7725"\w* \w his|strong="H5414"\w* \w righteousness|strong="H6666"\w*. +\p +\v 24 “\w If|strong="H3588"\w* \w your|strong="H6440"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w* \w are|strong="H5971"\w* \w struck|strong="H5062"\w* \w down|strong="H5062"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* enemy \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H5971"\w* \w sinned|strong="H2398"\w* \w against|strong="H6440"\w* \w you|strong="H3588"\w*, \w and|strong="H3478"\w* \w they|strong="H3588"\w* \w turn|strong="H7725"\w* \w again|strong="H7725"\w* \w and|strong="H3478"\w* \w confess|strong="H3034"\w* \w your|strong="H6440"\w* \w name|strong="H8034"\w*, \w and|strong="H3478"\w* \w pray|strong="H6419"\w* \w and|strong="H3478"\w* \w make|strong="H2603"\w* \w supplication|strong="H2603"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w* \w in|strong="H3478"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w*, +\v 25 \w then|strong="H5414"\w* \w hear|strong="H8085"\w* \w from|strong="H4480"\w* \w heaven|strong="H8064"\w*, \w and|strong="H3478"\w* \w forgive|strong="H5545"\w* \w the|strong="H8085"\w* \w sin|strong="H2403"\w* \w of|strong="H4480"\w* \w your|strong="H5414"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w bring|strong="H7725"\w* \w them|strong="H5414"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H8085"\w* \w land|strong="H8064"\w* \w which|strong="H1992"\w* \w you|strong="H5414"\w* \w gave|strong="H5414"\w* \w to|strong="H7725"\w* \w them|strong="H5414"\w* \w and|strong="H3478"\w* \w to|strong="H7725"\w* \w their|strong="H5414"\w* fathers. +\p +\v 26 “\w When|strong="H3588"\w* \w the|strong="H3588"\w* \w sky|strong="H8064"\w* \w is|strong="H2088"\w* \w shut|strong="H6113"\w* \w up|strong="H6113"\w* \w and|strong="H7725"\w* \w there|strong="H1961"\w* \w is|strong="H2088"\w* \w no|strong="H3808"\w* \w rain|strong="H4306"\w* \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H1961"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w you|strong="H3588"\w*, \w if|strong="H3588"\w* \w they|strong="H3588"\w* \w pray|strong="H6419"\w* \w toward|strong="H7725"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w* \w and|strong="H7725"\w* \w confess|strong="H3034"\w* \w your|strong="H7725"\w* \w name|strong="H8034"\w*, \w and|strong="H7725"\w* \w turn|strong="H7725"\w* \w from|strong="H7725"\w* \w their|strong="H7725"\w* \w sin|strong="H2403"\w* \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w afflict|strong="H6031"\w* \w them|strong="H7725"\w*, +\v 27 \w then|strong="H5414"\w* \w hear|strong="H8085"\w* \w in|strong="H5921"\w* \w heaven|strong="H8064"\w*, \w and|strong="H3478"\w* \w forgive|strong="H5545"\w* \w the|strong="H5921"\w* \w sin|strong="H2403"\w* \w of|strong="H1870"\w* \w your|strong="H5414"\w* \w servants|strong="H5650"\w*, \w your|strong="H5414"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w teach|strong="H3384"\w* \w them|strong="H5414"\w* \w the|strong="H5921"\w* \w good|strong="H2896"\w* \w way|strong="H1870"\w* \w in|strong="H5921"\w* \w which|strong="H5971"\w* \w they|strong="H3588"\w* \w should|strong="H3588"\w* \w walk|strong="H3212"\w*, \w and|strong="H3478"\w* \w send|strong="H5414"\w* \w rain|strong="H4306"\w* \w on|strong="H5921"\w* \w your|strong="H5414"\w* \w land|strong="H5159"\w*, \w which|strong="H5971"\w* \w you|strong="H3588"\w* \w have|strong="H5971"\w* \w given|strong="H5414"\w* \w to|strong="H3478"\w* \w your|strong="H5414"\w* \w people|strong="H5971"\w* \w for|strong="H3588"\w* \w an|strong="H5414"\w* \w inheritance|strong="H5159"\w*. +\p +\v 28 “\w If|strong="H3588"\w* \w there|strong="H1961"\w* \w is|strong="H3605"\w* \w famine|strong="H7458"\w* \w in|strong="H7458"\w* \w the|strong="H3605"\w* land, \w if|strong="H3588"\w* \w there|strong="H1961"\w* \w is|strong="H3605"\w* \w pestilence|strong="H1698"\w*, \w if|strong="H3588"\w* \w there|strong="H1961"\w* \w is|strong="H3605"\w* \w blight|strong="H7711"\w* \w or|strong="H5061"\w* \w mildew|strong="H3420"\w*, \w locust|strong="H2625"\w* \w or|strong="H5061"\w* \w caterpillar|strong="H2625"\w*; \w if|strong="H3588"\w* \w their|strong="H3605"\w* enemies \w besiege|strong="H6696"\w* \w them|strong="H1961"\w* \w in|strong="H7458"\w* \w the|strong="H3605"\w* land \w of|strong="H8179"\w* \w their|strong="H3605"\w* \w cities|strong="H8179"\w*; \w whatever|strong="H3605"\w* \w plague|strong="H5061"\w* \w or|strong="H5061"\w* \w whatever|strong="H3605"\w* \w sickness|strong="H4245"\w* \w there|strong="H1961"\w* \w is|strong="H3605"\w*— +\v 29 \w whatever|strong="H3605"\w* \w prayer|strong="H8605"\w* \w and|strong="H3478"\w* \w supplication|strong="H8467"\w* \w is|strong="H2088"\w* \w made|strong="H3045"\w* \w by|strong="H3478"\w* \w any|strong="H3605"\w* \w man|strong="H3605"\w*, \w or|strong="H1004"\w* \w by|strong="H3478"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w who|strong="H3605"\w* \w will|strong="H1961"\w* \w each|strong="H3605"\w* \w know|strong="H3045"\w* \w his|strong="H3605"\w* \w own|strong="H1961"\w* \w plague|strong="H5061"\w* \w and|strong="H3478"\w* \w his|strong="H3605"\w* \w own|strong="H1961"\w* \w sorrow|strong="H4341"\w*, \w and|strong="H3478"\w* \w shall|strong="H5971"\w* \w spread|strong="H6566"\w* \w out|strong="H6566"\w* \w his|strong="H3605"\w* \w hands|strong="H3709"\w* \w toward|strong="H3709"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w*, +\v 30 \w then|strong="H5414"\w* \w hear|strong="H8085"\w* \w from|strong="H4480"\w* \w heaven|strong="H8064"\w* \w your|strong="H3605"\w* \w dwelling|strong="H3427"\w* \w place|strong="H4349"\w* \w and|strong="H1121"\w* \w forgive|strong="H5545"\w*, \w and|strong="H1121"\w* \w give|strong="H5414"\w* \w to|strong="H5414"\w* \w every|strong="H3605"\w* \w man|strong="H1121"\w* \w according|strong="H4480"\w* \w to|strong="H5414"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w ways|strong="H1870"\w*, \w whose|strong="H1121"\w* \w heart|strong="H3824"\w* \w you|strong="H3588"\w* \w know|strong="H3045"\w* (\w for|strong="H3588"\w* \w you|strong="H3588"\w*, \w even|strong="H3588"\w* \w you|strong="H3588"\w* \w only|strong="H3588"\w*, \w know|strong="H3045"\w* \w the|strong="H3605"\w* \w hearts|strong="H3824"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*), +\v 31 \w that|strong="H3605"\w* \w they|strong="H1992"\w* \w may|strong="H5414"\w* \w fear|strong="H3372"\w* \w you|strong="H5414"\w*, \w to|strong="H3212"\w* \w walk|strong="H3212"\w* \w in|strong="H5921"\w* \w your|strong="H3605"\w* \w ways|strong="H1870"\w* \w as|strong="H3117"\w* \w long|strong="H3117"\w* \w as|strong="H3117"\w* \w they|strong="H1992"\w* \w live|strong="H2416"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w which|strong="H1992"\w* \w you|strong="H5414"\w* \w gave|strong="H5414"\w* \w to|strong="H3212"\w* \w our|strong="H3605"\w* fathers. +\p +\v 32 “\w Moreover|strong="H1571"\w*, \w concerning|strong="H3478"\w* \w the|strong="H3027"\w* \w foreigner|strong="H5237"\w*, \w who|strong="H1931"\w* \w is|strong="H2088"\w* \w not|strong="H3808"\w* \w of|strong="H1004"\w* \w your|strong="H5186"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w when|strong="H1571"\w* \w he|strong="H1931"\w* comes \w from|strong="H3478"\w* \w a|strong="H3068"\w* \w far|strong="H7350"\w* country \w for|strong="H3027"\w* \w your|strong="H5186"\w* \w great|strong="H1419"\w* \w name|strong="H8034"\w*’s \w sake|strong="H4616"\w* \w and|strong="H3478"\w* \w your|strong="H5186"\w* \w mighty|strong="H2389"\w* \w hand|strong="H3027"\w* \w and|strong="H3478"\w* \w your|strong="H5186"\w* \w outstretched|strong="H5186"\w* \w arm|strong="H2220"\w*, \w when|strong="H1571"\w* \w they|strong="H3808"\w* \w come|strong="H7350"\w* \w and|strong="H3478"\w* \w pray|strong="H6419"\w* \w toward|strong="H3027"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w*, +\v 33 \w then|strong="H2088"\w* \w hear|strong="H8085"\w* \w from|strong="H4480"\w* \w heaven|strong="H8064"\w*, \w even|strong="H3588"\w* \w from|strong="H4480"\w* \w your|strong="H3605"\w* \w dwelling|strong="H3427"\w* \w place|strong="H4349"\w*, \w and|strong="H3478"\w* \w do|strong="H6213"\w* \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w foreigner|strong="H5237"\w* \w calls|strong="H7121"\w* \w to|strong="H3478"\w* \w you|strong="H3588"\w* \w for|strong="H3588"\w*; \w that|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w* \w may|strong="H5971"\w* \w know|strong="H3045"\w* \w your|strong="H3605"\w* \w name|strong="H8034"\w* \w and|strong="H3478"\w* \w fear|strong="H3372"\w* \w you|strong="H3588"\w*, \w as|strong="H6213"\w* \w do|strong="H6213"\w* \w your|strong="H3605"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w may|strong="H5971"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w* \w which|strong="H1004"\w* \w I|strong="H3588"\w* \w have|strong="H5971"\w* \w built|strong="H1129"\w* \w is|strong="H2088"\w* \w called|strong="H7121"\w* \w by|strong="H5921"\w* \w your|strong="H3605"\w* \w name|strong="H8034"\w*. +\p +\v 34 “\w If|strong="H3588"\w* \w your|strong="H5921"\w* \w people|strong="H5971"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w battle|strong="H4421"\w* \w against|strong="H5921"\w* \w their|strong="H5921"\w* enemies, \w by|strong="H5921"\w* whatever \w way|strong="H1870"\w* \w you|strong="H3588"\w* \w send|strong="H7971"\w* \w them|strong="H5921"\w*, \w and|strong="H7971"\w* \w they|strong="H3588"\w* \w pray|strong="H6419"\w* \w to|strong="H3318"\w* \w you|strong="H3588"\w* \w toward|strong="H1870"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w which|strong="H1004"\w* \w you|strong="H3588"\w* \w have|strong="H5971"\w* chosen, \w and|strong="H7971"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w which|strong="H1004"\w* \w I|strong="H3588"\w* \w have|strong="H5971"\w* \w built|strong="H1129"\w* \w for|strong="H3588"\w* \w your|strong="H5921"\w* \w name|strong="H8034"\w*; +\v 35 \w then|strong="H6213"\w* \w hear|strong="H8085"\w* \w from|strong="H4480"\w* \w heaven|strong="H8064"\w* \w their|strong="H8085"\w* \w prayer|strong="H8605"\w* \w and|strong="H8064"\w* \w their|strong="H8085"\w* \w supplication|strong="H8467"\w*, \w and|strong="H8064"\w* \w maintain|strong="H6213"\w* \w their|strong="H8085"\w* \w cause|strong="H4941"\w*. +\p +\v 36 “\w If|strong="H3588"\w* \w they|strong="H3588"\w* \w sin|strong="H2398"\w* \w against|strong="H6440"\w* \w you|strong="H3588"\w* (\w for|strong="H3588"\w* \w there|strong="H6440"\w* \w is|strong="H6440"\w* \w no|strong="H3808"\w* \w man|strong="H6440"\w* \w who|strong="H7350"\w* doesn’t \w sin|strong="H2398"\w*), \w and|strong="H6440"\w* \w you|strong="H3588"\w* \w are|strong="H7350"\w* angry \w with|strong="H6440"\w* \w them|strong="H5414"\w* \w and|strong="H6440"\w* \w deliver|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H6440"\w* enemy, \w so|strong="H5414"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* carry \w them|strong="H5414"\w* \w away|strong="H7617"\w* \w captive|strong="H7617"\w* \w to|strong="H5414"\w* \w a|strong="H3068"\w* \w land|strong="H6440"\w* \w far|strong="H7350"\w* \w off|strong="H7350"\w* \w or|strong="H3808"\w* \w near|strong="H7138"\w*; +\v 37 \w yet|strong="H2398"\w* \w if|strong="H2603"\w* \w they|strong="H8033"\w* \w come|strong="H7725"\w* \w to|strong="H7725"\w* \w their|strong="H7725"\w* senses \w in|strong="H7725"\w* \w the|strong="H7725"\w* land \w where|strong="H8033"\w* \w they|strong="H8033"\w* \w are|strong="H3824"\w* \w carried|strong="H7617"\w* \w captive|strong="H7617"\w*, \w and|strong="H7725"\w* \w turn|strong="H7725"\w* \w again|strong="H7725"\w*, \w and|strong="H7725"\w* \w make|strong="H2603"\w* \w supplication|strong="H2603"\w* \w to|strong="H7725"\w* \w you|strong="H7725"\w* \w in|strong="H7725"\w* \w the|strong="H7725"\w* land \w of|strong="H3824"\w* \w their|strong="H7725"\w* \w captivity|strong="H7633"\w*, saying, ‘\w We|strong="H8033"\w* \w have|strong="H7617"\w* \w sinned|strong="H2398"\w*, \w we|strong="H3068"\w* \w have|strong="H7617"\w* \w done|strong="H2398"\w* \w perversely|strong="H5753"\w*, \w and|strong="H7725"\w* \w have|strong="H7617"\w* \w dealt|strong="H2603"\w* \w wickedly|strong="H7561"\w*;’ +\v 38 if \w they|strong="H5315"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w you|strong="H5414"\w* \w with|strong="H1004"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w heart|strong="H3820"\w* \w and|strong="H7725"\w* \w with|strong="H1004"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w soul|strong="H5315"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* land \w of|strong="H1004"\w* \w their|strong="H3605"\w* \w captivity|strong="H7633"\w*, \w where|strong="H1004"\w* \w they|strong="H5315"\w* \w have|strong="H5414"\w* \w been|strong="H3605"\w* \w taken|strong="H7617"\w* \w captive|strong="H7617"\w*, \w and|strong="H7725"\w* \w pray|strong="H6419"\w* \w toward|strong="H1870"\w* \w their|strong="H3605"\w* land \w which|strong="H1004"\w* \w you|strong="H5414"\w* \w gave|strong="H5414"\w* \w to|strong="H7725"\w* \w their|strong="H3605"\w* fathers, \w and|strong="H7725"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w which|strong="H1004"\w* \w you|strong="H5414"\w* \w have|strong="H5414"\w* chosen, \w and|strong="H7725"\w* \w toward|strong="H1870"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w which|strong="H1004"\w* \w I|strong="H5414"\w* \w have|strong="H5414"\w* \w built|strong="H1129"\w* \w for|strong="H8034"\w* \w your|strong="H3605"\w* \w name|strong="H8034"\w*; +\v 39 \w then|strong="H6213"\w* \w hear|strong="H8085"\w* \w from|strong="H4480"\w* \w heaven|strong="H8064"\w*, \w even|strong="H6213"\w* \w from|strong="H4480"\w* \w your|strong="H8085"\w* \w dwelling|strong="H3427"\w* \w place|strong="H4349"\w*, \w their|strong="H8085"\w* \w prayer|strong="H8605"\w* \w and|strong="H8064"\w* \w their|strong="H8085"\w* petitions, \w and|strong="H8064"\w* \w maintain|strong="H6213"\w* \w their|strong="H8085"\w* \w cause|strong="H4941"\w*, \w and|strong="H8064"\w* \w forgive|strong="H5545"\w* \w your|strong="H8085"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w have|strong="H5971"\w* \w sinned|strong="H2398"\w* \w against|strong="H4480"\w* \w you|strong="H6213"\w*. +\p +\v 40 “\w Now|strong="H6258"\w*, \w my|strong="H1961"\w* God, \w let|strong="H4994"\w*, \w I|strong="H6258"\w* \w beg|strong="H4994"\w* \w you|strong="H5869"\w*, \w your|strong="H1961"\w* \w eyes|strong="H5869"\w* \w be|strong="H1961"\w* \w open|strong="H6605"\w*, \w and|strong="H5869"\w* \w let|strong="H4994"\w* \w your|strong="H1961"\w* ears \w be|strong="H1961"\w* \w attentive|strong="H7183"\w* \w to|strong="H1961"\w* \w the|strong="H1961"\w* \w prayer|strong="H8605"\w* \w that|strong="H2088"\w* \w is|strong="H2088"\w* \w made|strong="H1961"\w* \w in|strong="H4725"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*. +\p +\v 41 “\w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w arise|strong="H6965"\w*, \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w*, \w into|strong="H5797"\w* \w your|strong="H3068"\w* \w resting|strong="H5118"\w* place, \w you|strong="H2623"\w*, \w and|strong="H6965"\w* \w the|strong="H3068"\w* ark \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w strength|strong="H5797"\w*. \w Let|strong="H8055"\w* \w your|strong="H3068"\w* \w priests|strong="H3548"\w*, \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w*, \w be|strong="H3068"\w* \w clothed|strong="H3847"\w* \w with|strong="H3847"\w* \w salvation|strong="H8668"\w*, \w and|strong="H6965"\w* \w let|strong="H8055"\w* \w your|strong="H3068"\w* \w saints|strong="H2623"\w* \w rejoice|strong="H8055"\w* \w in|strong="H3068"\w* \w goodness|strong="H2896"\w*. +\p +\v 42 “\w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w*, don’t \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w anointed|strong="H4899"\w*. \w Remember|strong="H2142"\w* \w your|strong="H3068"\w* loving \w kindnesses|strong="H2617"\w* \w to|strong="H7725"\w* \w David|strong="H1732"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w*.” +\c 7 +\p +\v 1 \w Now|strong="H3519"\w* \w when|strong="H3615"\w* \w Solomon|strong="H8010"\w* \w had|strong="H3068"\w* \w finished|strong="H3615"\w* \w praying|strong="H6419"\w*, fire \w came|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H3381"\w* \w heaven|strong="H8064"\w* \w and|strong="H3068"\w* \w consumed|strong="H3615"\w* \w the|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w sacrifices|strong="H2077"\w*; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w filled|strong="H4390"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w*. +\v 2 \w The|strong="H3588"\w* \w priests|strong="H3548"\w* \w could|strong="H3201"\w* \w not|strong="H3808"\w* enter \w into|strong="H3519"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w filled|strong="H4390"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 3 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w looked|strong="H7200"\w* \w on|strong="H5921"\w*, \w when|strong="H3588"\w* \w the|strong="H3605"\w* fire \w came|strong="H3381"\w* \w down|strong="H3381"\w*, \w and|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w was|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*. \w They|strong="H3588"\w* \w bowed|strong="H7812"\w* \w themselves|strong="H7812"\w* \w with|strong="H1004"\w* \w their|strong="H3605"\w* \w faces|strong="H5921"\w* \w to|strong="H3381"\w* \w the|strong="H3605"\w* ground \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w pavement|strong="H7531"\w*, \w worshiped|strong="H7812"\w*, \w and|strong="H1121"\w* \w gave|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3381"\w* \w Yahweh|strong="H3068"\w*, saying, +\q1 “\w For|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3605"\w* \w loving|strong="H2896"\w* \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*!” +\p +\v 4 \w Then|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w offered|strong="H2076"\w* \w sacrifices|strong="H2077"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 5 \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w offered|strong="H2076"\w* \w a|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H4428"\w* \w twenty-two|strong="H6242"\w* thousand head \w of|strong="H4428"\w* \w cattle|strong="H1241"\w* \w and|strong="H3967"\w* \w a|strong="H3068"\w* \w hundred|strong="H3967"\w* \w twenty|strong="H6242"\w* thousand \w sheep|strong="H6629"\w*. So \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w and|strong="H3967"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w dedicated|strong="H2596"\w* God’s \w house|strong="H1004"\w*. +\v 6 \w The|strong="H3605"\w* \w priests|strong="H3548"\w* \w stood|strong="H5975"\w*, \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w their|strong="H3605"\w* positions; \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w also|strong="H3068"\w* \w with|strong="H3068"\w* \w instruments|strong="H3627"\w* \w of|strong="H4428"\w* \w music|strong="H7892"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*, \w which|strong="H3068"\w* \w David|strong="H1732"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w had|strong="H3068"\w* \w made|strong="H6213"\w* \w to|strong="H3478"\w* \w give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w when|strong="H3588"\w* \w David|strong="H1732"\w* \w praised|strong="H1984"\w* \w by|strong="H3027"\w* \w their|strong="H3605"\w* \w ministry|strong="H3027"\w*, saying “\w For|strong="H3588"\w* \w his|strong="H3605"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*.” \w The|strong="H3605"\w* \w priests|strong="H3548"\w* \w sounded|strong="H2690"\w* \w trumpets|strong="H2690"\w* \w before|strong="H5048"\w* \w them|strong="H5921"\w*; \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w stood|strong="H5975"\w*. +\p +\v 7 \w Moreover|strong="H3588"\w* \w Solomon|strong="H8010"\w* \w made|strong="H6213"\w* \w the|strong="H6440"\w* \w middle|strong="H8432"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w court|strong="H2691"\w* \w that|strong="H3588"\w* \w was|strong="H3068"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w holy|strong="H6942"\w*; \w for|strong="H3588"\w* \w there|strong="H8033"\w* \w he|strong="H3588"\w* \w offered|strong="H6213"\w* \w the|strong="H6440"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w* \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w fat|strong="H2459"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w because|strong="H3588"\w* \w the|strong="H6440"\w* \w bronze|strong="H5178"\w* \w altar|strong="H4196"\w* \w which|strong="H3068"\w* \w Solomon|strong="H8010"\w* \w had|strong="H3068"\w* \w made|strong="H6213"\w* \w was|strong="H3068"\w* \w not|strong="H3808"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w receive|strong="H3557"\w* \w the|strong="H6440"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, \w the|strong="H6440"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w fat|strong="H2459"\w*. +\p +\v 8 \w So|strong="H6213"\w* \w Solomon|strong="H8010"\w* \w held|strong="H6213"\w* \w the|strong="H3605"\w* \w feast|strong="H2282"\w* \w at|strong="H3478"\w* \w that|strong="H3605"\w* \w time|strong="H6256"\w* \w for|strong="H5704"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w with|strong="H5973"\w* \w him|strong="H6213"\w*, \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H1419"\w* \w assembly|strong="H6951"\w*, \w from|strong="H3478"\w* \w the|strong="H3605"\w* entrance \w of|strong="H3117"\w* \w Hamath|strong="H2574"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w brook|strong="H5158"\w* \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w*. +\p +\v 9 \w On|strong="H3117"\w* \w the|strong="H3588"\w* \w eighth|strong="H8066"\w* \w day|strong="H3117"\w*, \w they|strong="H3588"\w* \w held|strong="H6213"\w* \w a|strong="H3068"\w* \w solemn|strong="H6116"\w* \w assembly|strong="H6116"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w kept|strong="H6213"\w* \w the|strong="H3588"\w* \w dedication|strong="H2598"\w* \w of|strong="H3117"\w* \w the|strong="H3588"\w* \w altar|strong="H4196"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w and|strong="H3117"\w* \w the|strong="H3588"\w* \w feast|strong="H2282"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. +\v 10 \w On|strong="H5921"\w* \w the|strong="H5921"\w* \w twenty-third|strong="H6242"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w*, \w he|strong="H3117"\w* \w sent|strong="H7971"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w away|strong="H7971"\w* \w to|strong="H3478"\w* \w their|strong="H3068"\w* tents, \w joyful|strong="H8056"\w* \w and|strong="H3478"\w* \w glad|strong="H8056"\w* \w of|strong="H3068"\w* \w heart|strong="H3820"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w goodness|strong="H2896"\w* \w that|strong="H5971"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w shown|strong="H6213"\w* \w to|strong="H3478"\w* \w David|strong="H1732"\w*, \w to|strong="H3478"\w* \w Solomon|strong="H8010"\w*, \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*. +\p +\v 11 Thus \w Solomon|strong="H8010"\w* \w finished|strong="H3615"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*; \w and|strong="H3068"\w* \w he|strong="H6213"\w* \w successfully|strong="H6743"\w* \w completed|strong="H3615"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w came|strong="H3068"\w* \w into|strong="H5921"\w* \w Solomon|strong="H8010"\w*’s \w heart|strong="H3820"\w* \w to|strong="H3068"\w* \w make|strong="H6213"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w and|strong="H3068"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* own \w house|strong="H1004"\w*. +\p +\v 12 \w Then|strong="H2088"\w* \w Yahweh|strong="H3068"\w* \w appeared|strong="H7200"\w* \w to|strong="H3068"\w* \w Solomon|strong="H8010"\w* \w by|strong="H3068"\w* \w night|strong="H3915"\w*, \w and|strong="H3068"\w* \w said|strong="H8085"\w* \w to|strong="H3068"\w* \w him|strong="H7200"\w*, “\w I|strong="H7200"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w your|strong="H3068"\w* \w prayer|strong="H8605"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* chosen \w this|strong="H2088"\w* \w place|strong="H4725"\w* \w for|strong="H3068"\w* myself \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w sacrifice|strong="H2077"\w*. +\p +\v 13 “\w If|strong="H2005"\w* \w I|strong="H2005"\w* \w shut|strong="H6113"\w* \w up|strong="H6113"\w* \w the|strong="H5921"\w* \w sky|strong="H8064"\w* \w so|strong="H7971"\w* \w that|strong="H5971"\w* \w there|strong="H1961"\w* \w is|strong="H1961"\w* \w no|strong="H3808"\w* \w rain|strong="H4306"\w*, \w or|strong="H3808"\w* \w if|strong="H2005"\w* \w I|strong="H2005"\w* \w command|strong="H6680"\w* \w the|strong="H5921"\w* \w locust|strong="H2284"\w* \w to|strong="H7971"\w* devour \w the|strong="H5921"\w* \w land|strong="H8064"\w*, \w or|strong="H3808"\w* \w if|strong="H2005"\w* \w I|strong="H2005"\w* \w send|strong="H7971"\w* \w pestilence|strong="H1698"\w* \w among|strong="H5921"\w* \w my|strong="H5921"\w* \w people|strong="H5971"\w*, +\v 14 if \w my|strong="H8085"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w are|strong="H5971"\w* \w called|strong="H7121"\w* \w by|strong="H5921"\w* \w my|strong="H8085"\w* \w name|strong="H8034"\w* \w will|strong="H5971"\w* \w humble|strong="H3665"\w* \w themselves|strong="H6440"\w*, \w pray|strong="H6419"\w*, \w seek|strong="H1245"\w* \w my|strong="H8085"\w* \w face|strong="H6440"\w*, \w and|strong="H7725"\w* \w turn|strong="H7725"\w* \w from|strong="H4480"\w* \w their|strong="H6440"\w* \w wicked|strong="H7451"\w* \w ways|strong="H1870"\w*, \w then|strong="H7725"\w* \w I|strong="H5921"\w* \w will|strong="H5971"\w* \w hear|strong="H8085"\w* \w from|strong="H4480"\w* \w heaven|strong="H8064"\w*, \w will|strong="H5971"\w* \w forgive|strong="H5545"\w* \w their|strong="H6440"\w* \w sin|strong="H2403"\w*, \w and|strong="H7725"\w* \w will|strong="H5971"\w* \w heal|strong="H7495"\w* \w their|strong="H6440"\w* \w land|strong="H6440"\w*. +\v 15 \w Now|strong="H6258"\w* \w my|strong="H1961"\w* \w eyes|strong="H5869"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w open|strong="H6605"\w* \w and|strong="H5869"\w* \w my|strong="H1961"\w* ears \w attentive|strong="H7183"\w* \w to|strong="H1961"\w* \w prayer|strong="H8605"\w* \w that|strong="H2088"\w* \w is|strong="H2088"\w* \w made|strong="H1961"\w* \w in|strong="H4725"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*. +\v 16 \w For|strong="H5704"\w* \w now|strong="H6258"\w* \w I|strong="H3117"\w* \w have|strong="H1961"\w* chosen \w and|strong="H3117"\w* \w made|strong="H1961"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w* \w holy|strong="H6942"\w*, \w that|strong="H3605"\w* \w my|strong="H3605"\w* \w name|strong="H8034"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w there|strong="H8033"\w* \w forever|strong="H5769"\w*; \w and|strong="H3117"\w* \w my|strong="H3605"\w* \w eyes|strong="H5869"\w* \w and|strong="H3117"\w* \w my|strong="H3605"\w* \w heart|strong="H3820"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w there|strong="H8033"\w* \w perpetually|strong="H3605"\w*. +\p +\v 17 “\w As|strong="H6213"\w* \w for|strong="H6213"\w* \w you|strong="H6440"\w*, if \w you|strong="H6440"\w* \w will|strong="H6213"\w* \w walk|strong="H1980"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w as|strong="H6213"\w* \w David|strong="H1732"\w* \w your|strong="H3605"\w* father \w walked|strong="H1980"\w*, \w and|strong="H1980"\w* \w do|strong="H6213"\w* \w according|strong="H4941"\w* \w to|strong="H1980"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H6680"\w* \w have|strong="H3605"\w* \w commanded|strong="H6680"\w* \w you|strong="H6440"\w*, \w and|strong="H1980"\w* \w will|strong="H6213"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w statutes|strong="H2706"\w* \w and|strong="H1980"\w* \w my|strong="H8104"\w* \w ordinances|strong="H4941"\w*, +\v 18 \w then|strong="H6965"\w* \w I|strong="H3808"\w* \w will|strong="H3478"\w* \w establish|strong="H6965"\w* \w the|strong="H3772"\w* \w throne|strong="H3678"\w* \w of|strong="H3678"\w* \w your|strong="H3808"\w* \w kingdom|strong="H4438"\w*, according \w as|strong="H6965"\w* \w I|strong="H3808"\w* \w covenanted|strong="H3772"\w* \w with|strong="H1732"\w* \w David|strong="H1732"\w* \w your|strong="H3808"\w* father, saying, ‘\w There|strong="H6965"\w* \w shall|strong="H3478"\w* \w not|strong="H3808"\w* \w fail|strong="H3772"\w* \w you|strong="H3808"\w* \w a|strong="H3068"\w* man \w to|strong="H3478"\w* \w be|strong="H3808"\w* \w ruler|strong="H4910"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*.’ +\p +\v 19 \w But|strong="H5800"\w* if \w you|strong="H5414"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w and|strong="H1980"\w* \w forsake|strong="H5800"\w* \w my|strong="H5414"\w* \w statutes|strong="H2708"\w* \w and|strong="H1980"\w* \w my|strong="H5414"\w* \w commandments|strong="H4687"\w* \w which|strong="H2708"\w* \w I|strong="H5414"\w* \w have|strong="H5414"\w* \w set|strong="H5414"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w*, \w and|strong="H1980"\w* \w go|strong="H1980"\w* \w and|strong="H1980"\w* \w serve|strong="H5647"\w* other \w gods|strong="H1980"\w* \w and|strong="H1980"\w* \w worship|strong="H7812"\w* \w them|strong="H5414"\w*, +\v 20 \w then|strong="H2088"\w* \w I|strong="H5414"\w* \w will|strong="H5971"\w* \w pluck|strong="H5428"\w* \w them|strong="H5414"\w* \w up|strong="H5414"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w roots|strong="H5428"\w* \w out|strong="H7993"\w* \w of|strong="H1004"\w* \w my|strong="H5414"\w* \w land|strong="H6440"\w* \w which|strong="H1004"\w* \w I|strong="H5414"\w* \w have|strong="H5971"\w* \w given|strong="H5414"\w* \w them|strong="H5414"\w*; \w and|strong="H1004"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w*, \w which|strong="H1004"\w* \w I|strong="H5414"\w* \w have|strong="H5971"\w* \w made|strong="H5414"\w* \w holy|strong="H6942"\w* \w for|strong="H5921"\w* \w my|strong="H5414"\w* \w name|strong="H8034"\w*, \w I|strong="H5414"\w* \w will|strong="H5971"\w* \w cast|strong="H7993"\w* \w out|strong="H7993"\w* \w of|strong="H1004"\w* \w my|strong="H5414"\w* \w sight|strong="H6440"\w*, \w and|strong="H1004"\w* \w I|strong="H5414"\w* \w will|strong="H5971"\w* \w make|strong="H5414"\w* \w it|strong="H5414"\w* \w a|strong="H3068"\w* \w proverb|strong="H4912"\w* \w and|strong="H1004"\w* \w a|strong="H3068"\w* \w byword|strong="H8148"\w* \w among|strong="H5921"\w* \w all|strong="H3605"\w* \w peoples|strong="H5971"\w*. +\v 21 \w This|strong="H2088"\w* \w house|strong="H1004"\w*, \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w so|strong="H6213"\w* \w high|strong="H5945"\w*, \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w passes|strong="H5674"\w* \w by|strong="H5921"\w* \w it|strong="H5921"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w astonished|strong="H8074"\w* \w and|strong="H3068"\w* say, ‘\w Why|strong="H4100"\w* \w has|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w done|strong="H6213"\w* \w this|strong="H2088"\w* \w to|strong="H3068"\w* \w this|strong="H2088"\w* land \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w*?’ +\v 22 \w They|strong="H3651"\w* \w shall|strong="H3068"\w* answer, ‘\w Because|strong="H5921"\w* \w they|strong="H3651"\w* \w abandoned|strong="H5800"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w their|strong="H3605"\w* fathers, \w who|strong="H3605"\w* \w brought|strong="H3318"\w* \w them|strong="H5921"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H3068"\w* \w took|strong="H2388"\w* \w other|strong="H3605"\w* gods, \w worshiped|strong="H7812"\w* \w them|strong="H5921"\w*, \w and|strong="H3068"\w* \w served|strong="H5647"\w* \w them|strong="H5921"\w*. \w Therefore|strong="H3651"\w* \w he|strong="H3651"\w* \w has|strong="H3068"\w* \w brought|strong="H3318"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w evil|strong="H7451"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*.’” +\c 8 +\p +\v 1 \w At|strong="H3068"\w* \w the|strong="H3068"\w* \w end|strong="H7093"\w* \w of|strong="H1004"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w*, \w in|strong="H8141"\w* \w which|strong="H3068"\w* \w Solomon|strong="H8010"\w* \w had|strong="H3068"\w* \w built|strong="H1129"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w own|strong="H1961"\w* \w house|strong="H1004"\w*, +\v 2 \w Solomon|strong="H8010"\w* \w built|strong="H1129"\w* \w the|strong="H5414"\w* \w cities|strong="H5892"\w* \w which|strong="H5892"\w* \w Huram|strong="H2361"\w* \w had|strong="H3478"\w* \w given|strong="H5414"\w* \w to|strong="H3478"\w* \w Solomon|strong="H8010"\w*, \w and|strong="H1121"\w* \w caused|strong="H5414"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w dwell|strong="H3427"\w* \w there|strong="H8033"\w*. +\p +\v 3 \w Solomon|strong="H8010"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* Hamath Zobah, \w and|strong="H3212"\w* \w prevailed|strong="H2388"\w* \w against|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 4 \w He|strong="H3605"\w* \w built|strong="H1129"\w* \w Tadmor|strong="H8412"\w* \w in|strong="H5892"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w*, \w and|strong="H5892"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w storage|strong="H4543"\w* \w cities|strong="H5892"\w*, \w which|strong="H5892"\w* \w he|strong="H3605"\w* \w built|strong="H1129"\w* \w in|strong="H5892"\w* \w Hamath|strong="H2574"\w*. +\v 5 \w Also|strong="H1817"\w* \w he|strong="H5892"\w* \w built|strong="H1129"\w* Beth Horon \w the|strong="H1129"\w* \w upper|strong="H5945"\w* \w and|strong="H5892"\w* Beth Horon \w the|strong="H1129"\w* \w lower|strong="H8481"\w*, \w fortified|strong="H1129"\w* \w cities|strong="H5892"\w* \w with|strong="H5892"\w* \w walls|strong="H2346"\w*, \w gates|strong="H1817"\w*, \w and|strong="H5892"\w* \w bars|strong="H1280"\w*; +\v 6 \w and|strong="H5892"\w* \w Baalath|strong="H1191"\w*, \w and|strong="H5892"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w storage|strong="H4543"\w* \w cities|strong="H5892"\w* \w that|strong="H3605"\w* \w Solomon|strong="H8010"\w* \w had|strong="H1961"\w*, \w and|strong="H5892"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w for|strong="H3389"\w* \w his|strong="H3605"\w* \w chariots|strong="H7393"\w*, \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w for|strong="H3389"\w* \w his|strong="H3605"\w* \w horsemen|strong="H6571"\w*, \w and|strong="H5892"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Solomon|strong="H8010"\w* \w desired|strong="H2836"\w* \w to|strong="H1961"\w* \w build|strong="H1129"\w* \w for|strong="H3389"\w* \w his|strong="H3605"\w* \w pleasure|strong="H2837"\w* \w in|strong="H5892"\w* \w Jerusalem|strong="H3389"\w*, \w in|strong="H5892"\w* \w Lebanon|strong="H3844"\w*, \w and|strong="H5892"\w* \w in|strong="H5892"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H5892"\w* \w his|strong="H3605"\w* \w dominion|strong="H4474"\w*. +\p +\v 7 \w As|strong="H5971"\w* \w for|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w left|strong="H3498"\w* \w of|strong="H4480"\w* \w the|strong="H3605"\w* \w Hittites|strong="H2850"\w*, \w the|strong="H3605"\w* Amorites, \w the|strong="H3605"\w* \w Perizzites|strong="H6522"\w*, \w the|strong="H3605"\w* \w Hivites|strong="H2340"\w*, \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w Jebusites|strong="H2983"\w*, \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w not|strong="H3808"\w* \w of|strong="H4480"\w* \w Israel|strong="H3478"\w*— +\v 8 \w of|strong="H1121"\w* \w their|strong="H3117"\w* \w children|strong="H1121"\w* \w who|strong="H1121"\w* \w were|strong="H3478"\w* \w left|strong="H3498"\w* \w after|strong="H4480"\w* \w them|strong="H3615"\w* \w in|strong="H3478"\w* \w the|strong="H4480"\w* land, whom \w the|strong="H4480"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* didn’t \w consume|strong="H3615"\w*—\w of|strong="H1121"\w* \w them|strong="H3615"\w* \w Solomon|strong="H8010"\w* \w conscripted|strong="H5927"\w* \w forced|strong="H4522"\w* \w labor|strong="H4522"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 9 \w But|strong="H3588"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w Solomon|strong="H8010"\w* \w made|strong="H5414"\w* \w no|strong="H3808"\w* \w servants|strong="H5650"\w* \w for|strong="H3588"\w* \w his|strong="H5414"\w* \w work|strong="H4399"\w*, \w but|strong="H3588"\w* \w they|strong="H1992"\w* \w were|strong="H3478"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w war|strong="H4421"\w*, \w chief|strong="H8269"\w* \w of|strong="H1121"\w* \w his|strong="H5414"\w* \w captains|strong="H8269"\w*, \w and|strong="H1121"\w* \w rulers|strong="H8269"\w* \w of|strong="H1121"\w* \w his|strong="H5414"\w* \w chariots|strong="H7393"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w his|strong="H5414"\w* \w horsemen|strong="H6571"\w*. +\v 10 \w These|strong="H5971"\w* \w were|strong="H5971"\w* \w the|strong="H8010"\w* \w chief|strong="H8269"\w* \w officers|strong="H8269"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w*, even two-hundred \w fifty|strong="H2572"\w*, \w who|strong="H5971"\w* \w ruled|strong="H7287"\w* \w over|strong="H4428"\w* \w the|strong="H8010"\w* \w people|strong="H5971"\w*. +\p +\v 11 \w Solomon|strong="H8010"\w* \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w Pharaoh|strong="H6547"\w*’s \w daughter|strong="H1323"\w* \w out|strong="H3427"\w* \w of|strong="H4428"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w* \w to|strong="H3478"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H3068"\w* \w built|strong="H1129"\w* \w for|strong="H3588"\w* \w her|strong="H1129"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* said, “\w My|strong="H3068"\w* wife \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w David|strong="H1732"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w because|strong="H3588"\w* \w the|strong="H3588"\w* \w places|strong="H1004"\w* \w where|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s ark \w has|strong="H3068"\w* \w come|strong="H5927"\w* \w are|strong="H1992"\w* \w holy|strong="H6944"\w*.” +\p +\v 12 \w Then|strong="H5927"\w* \w Solomon|strong="H8010"\w* \w offered|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w on|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w altar|strong="H4196"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w* \w built|strong="H1129"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* porch, +\v 13 even \w as|strong="H1697"\w* \w the|strong="H3117"\w* \w duty|strong="H1697"\w* \w of|strong="H3117"\w* \w every|strong="H3117"\w* \w day|strong="H3117"\w* \w required|strong="H3117"\w*, \w offering|strong="H5927"\w* according \w to|strong="H5927"\w* \w the|strong="H3117"\w* \w commandment|strong="H4687"\w* \w of|strong="H3117"\w* \w Moses|strong="H4872"\w* \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w Sabbaths|strong="H7676"\w*, \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w new|strong="H2320"\w* \w moons|strong="H2320"\w*, \w and|strong="H4872"\w* \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w set|strong="H5927"\w* \w feasts|strong="H4150"\w*, \w three|strong="H7969"\w* \w times|strong="H6471"\w* per \w year|strong="H8141"\w*, \w during|strong="H3117"\w* \w the|strong="H3117"\w* \w feast|strong="H2282"\w* \w of|strong="H3117"\w* \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w*, \w during|strong="H3117"\w* \w the|strong="H3117"\w* \w feast|strong="H2282"\w* \w of|strong="H3117"\w* \w weeks|strong="H7620"\w*, \w and|strong="H4872"\w* \w during|strong="H3117"\w* \w the|strong="H3117"\w* \w feast|strong="H2282"\w* \w of|strong="H3117"\w* \w booths|strong="H5521"\w*.\f + \fr 8:13 \ft or, feast of tents (Sukkot)\f* +\p +\v 14 \w He|strong="H3588"\w* \w appointed|strong="H5975"\w*, \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w ordinance|strong="H4941"\w* \w of|strong="H3117"\w* \w David|strong="H1732"\w* \w his|strong="H1732"\w* father, \w the|strong="H5921"\w* \w divisions|strong="H4256"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w* \w to|strong="H5921"\w* \w their|strong="H5921"\w* \w service|strong="H5656"\w*, \w and|strong="H3117"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w* \w to|strong="H5921"\w* \w their|strong="H5921"\w* \w offices|strong="H4931"\w*, \w to|strong="H5921"\w* \w praise|strong="H1984"\w* \w and|strong="H3117"\w* \w to|strong="H5921"\w* \w minister|strong="H8334"\w* \w before|strong="H5048"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w*, \w as|strong="H1697"\w* \w the|strong="H5921"\w* \w duty|strong="H1697"\w* \w of|strong="H3117"\w* \w every|strong="H3117"\w* \w day|strong="H3117"\w* \w required|strong="H3117"\w*, \w the|strong="H5921"\w* \w doorkeepers|strong="H7778"\w* \w also|strong="H1732"\w* \w by|strong="H5921"\w* \w their|strong="H5921"\w* \w divisions|strong="H4256"\w* \w at|strong="H5921"\w* \w every|strong="H3117"\w* \w gate|strong="H8179"\w*, \w for|strong="H3588"\w* \w David|strong="H1732"\w* \w the|strong="H5921"\w* \w man|strong="H8179"\w* \w of|strong="H3117"\w* God \w had|strong="H1732"\w* \w so|strong="H3651"\w* \w commanded|strong="H4687"\w*. +\v 15 \w They|strong="H3808"\w* didn’t \w depart|strong="H5493"\w* \w from|strong="H5493"\w* \w the|strong="H3605"\w* \w commandment|strong="H4687"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H4428"\w* \w Levites|strong="H3881"\w* \w concerning|strong="H5921"\w* \w any|strong="H3605"\w* \w matter|strong="H1697"\w* \w or|strong="H3808"\w* \w concerning|strong="H5921"\w* \w the|strong="H3605"\w* treasures. +\p +\v 16 \w Now|strong="H3117"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w of|strong="H1004"\w* \w Solomon|strong="H8010"\w* \w was|strong="H3068"\w* \w accomplished|strong="H3615"\w* \w from|strong="H3117"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w foundation|strong="H4143"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w until|strong="H5704"\w* \w it|strong="H3559"\w* \w was|strong="H3068"\w* \w finished|strong="H3615"\w*. \w So|strong="H5704"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w was|strong="H3068"\w* \w completed|strong="H3615"\w*. +\p +\v 17 \w Then|strong="H1980"\w* \w Solomon|strong="H8010"\w* \w went|strong="H1980"\w* \w to|strong="H1980"\w* Ezion Geber \w and|strong="H1980"\w* \w to|strong="H1980"\w* Eloth, \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w seashore|strong="H3220"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H5921"\w* Edom. +\v 18 \w Huram|strong="H2361"\w* \w sent|strong="H7971"\w* \w him|strong="H7971"\w* ships \w and|strong="H3967"\w* \w servants|strong="H5650"\w* \w who|strong="H5650"\w* \w had|strong="H8010"\w* \w knowledge|strong="H3045"\w* \w of|strong="H4428"\w* \w the|strong="H3947"\w* \w sea|strong="H3220"\w* \w by|strong="H3027"\w* \w the|strong="H3947"\w* \w hands|strong="H3027"\w* \w of|strong="H4428"\w* \w his|strong="H7971"\w* \w servants|strong="H5650"\w*; \w and|strong="H3967"\w* \w they|strong="H8033"\w* \w came|strong="H5650"\w* \w with|strong="H5973"\w* \w the|strong="H3947"\w* \w servants|strong="H5650"\w* \w of|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w to|strong="H7971"\w* Ophir, \w and|strong="H3967"\w* \w brought|strong="H3947"\w* \w from|strong="H3027"\w* \w there|strong="H8033"\w* four \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w* \w talents|strong="H3603"\w*\f + \fr 8:18 \ft A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 450 talents is about 13.5 metric tons\f* \w of|strong="H4428"\w* \w gold|strong="H2091"\w*, \w and|strong="H3967"\w* \w brought|strong="H3947"\w* \w them|strong="H7971"\w* \w to|strong="H7971"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w*. +\c 9 +\p +\v 1 \w When|strong="H1961"\w* \w the|strong="H3605"\w* \w queen|strong="H4436"\w* \w of|strong="H7230"\w* \w Sheba|strong="H7614"\w* \w heard|strong="H8085"\w* \w of|strong="H7230"\w* \w the|strong="H3605"\w* \w fame|strong="H8088"\w* \w of|strong="H7230"\w* \w Solomon|strong="H8010"\w*, \w she|strong="H5973"\w* \w came|strong="H1961"\w* \w to|strong="H1696"\w* \w test|strong="H5254"\w* \w Solomon|strong="H8010"\w* \w with|strong="H5973"\w* \w hard|strong="H3515"\w* \w questions|strong="H2420"\w* \w at|strong="H1961"\w* \w Jerusalem|strong="H3389"\w*, \w with|strong="H5973"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H3966"\w* caravan, \w including|strong="H3605"\w* \w camels|strong="H1581"\w* \w that|strong="H3605"\w* \w bore|strong="H5375"\w* \w spices|strong="H1314"\w*, \w gold|strong="H2091"\w* \w in|strong="H8085"\w* \w abundance|strong="H7230"\w*, \w and|strong="H2091"\w* \w precious|strong="H3368"\w* stones. \w When|strong="H1961"\w* \w she|strong="H5973"\w* \w had|strong="H1961"\w* \w come|strong="H1961"\w* \w to|strong="H1696"\w* \w Solomon|strong="H8010"\w*, \w she|strong="H5973"\w* \w talked|strong="H1696"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w* \w about|strong="H1961"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w was|strong="H1961"\w* \w in|strong="H8085"\w* \w her|strong="H3605"\w* \w heart|strong="H3824"\w*. +\v 2 \w Solomon|strong="H8010"\w* \w answered|strong="H5046"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w questions|strong="H1697"\w*. \w There|strong="H3605"\w* wasn’t \w anything|strong="H3605"\w* \w hidden|strong="H5956"\w* \w from|strong="H1697"\w* \w Solomon|strong="H8010"\w* \w which|strong="H1697"\w* \w he|strong="H3605"\w* didn’t \w tell|strong="H5046"\w* \w her|strong="H3605"\w*. +\v 3 \w When|strong="H7200"\w* \w the|strong="H7200"\w* \w queen|strong="H4436"\w* \w of|strong="H1004"\w* \w Sheba|strong="H7614"\w* \w had|strong="H8010"\w* \w seen|strong="H7200"\w* \w the|strong="H7200"\w* \w wisdom|strong="H2451"\w* \w of|strong="H1004"\w* \w Solomon|strong="H8010"\w*, \w the|strong="H7200"\w* \w house|strong="H1004"\w* \w that|strong="H7200"\w* \w he|strong="H1004"\w* \w had|strong="H8010"\w* \w built|strong="H1129"\w*, +\v 4 \w the|strong="H3068"\w* \w food|strong="H3978"\w* \w of|strong="H1004"\w* \w his|strong="H3068"\w* \w table|strong="H7979"\w*, \w the|strong="H3068"\w* \w seating|strong="H4186"\w* \w of|strong="H1004"\w* \w his|strong="H3068"\w* \w servants|strong="H5650"\w*, \w the|strong="H3068"\w* \w attendance|strong="H4612"\w* \w of|strong="H1004"\w* \w his|strong="H3068"\w* \w ministers|strong="H8334"\w*, \w their|strong="H3068"\w* clothing, \w his|strong="H3068"\w* cup bearers \w and|strong="H3068"\w* \w their|strong="H3068"\w* clothing, \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w ascent|strong="H5927"\w* \w by|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w there|strong="H1961"\w* \w was|strong="H3068"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w spirit|strong="H7307"\w* \w in|strong="H3068"\w* \w her|strong="H1961"\w*.\f + \fr 9:4 \ft or, she was breathless.\f* +\p +\v 5 \w She|strong="H5921"\w* \w said|strong="H1697"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*, “\w It|strong="H5921"\w* \w was|strong="H1697"\w* \w a|strong="H3068"\w* true \w report|strong="H1697"\w* \w that|strong="H8085"\w* \w I|strong="H5921"\w* \w heard|strong="H8085"\w* \w in|strong="H5921"\w* \w my|strong="H8085"\w* own land \w of|strong="H4428"\w* \w your|strong="H5921"\w* \w acts|strong="H1697"\w* \w and|strong="H4428"\w* \w of|strong="H4428"\w* \w your|strong="H5921"\w* \w wisdom|strong="H2451"\w*. +\v 6 \w However|strong="H8085"\w* \w I|strong="H5704"\w* didn’t believe \w their|strong="H8085"\w* \w words|strong="H1697"\w* \w until|strong="H5704"\w* \w I|strong="H5704"\w* \w came|strong="H1697"\w*, \w and|strong="H5869"\w* \w my|strong="H8085"\w* \w eyes|strong="H5869"\w* \w had|strong="H5869"\w* \w seen|strong="H7200"\w* \w it|strong="H5921"\w*; \w and|strong="H5869"\w* \w behold|strong="H2009"\w* \w half|strong="H2677"\w* \w of|strong="H1697"\w* \w the|strong="H5921"\w* \w greatness|strong="H4768"\w* \w of|strong="H1697"\w* \w your|strong="H5921"\w* \w wisdom|strong="H2451"\w* wasn’t \w told|strong="H5046"\w* \w me|strong="H7200"\w*. \w You|strong="H5921"\w* \w exceed|strong="H3254"\w* \w the|strong="H5921"\w* \w fame|strong="H8052"\w* \w that|strong="H7200"\w* \w I|strong="H5704"\w* \w heard|strong="H8085"\w*! +\v 7 Happy \w are|strong="H5650"\w* \w your|strong="H6440"\w* \w men|strong="H5650"\w*, \w and|strong="H5650"\w* happy \w are|strong="H5650"\w* \w these|strong="H8085"\w* \w your|strong="H6440"\w* \w servants|strong="H5650"\w*, \w who|strong="H5650"\w* \w stand|strong="H5975"\w* \w continually|strong="H8548"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w and|strong="H5650"\w* \w hear|strong="H8085"\w* \w your|strong="H6440"\w* \w wisdom|strong="H2451"\w*. +\v 8 \w Blessed|strong="H1288"\w* \w be|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w who|strong="H3068"\w* \w delighted|strong="H2654"\w* \w in|strong="H5921"\w* \w you|strong="H5414"\w* \w and|strong="H3478"\w* \w set|strong="H5414"\w* \w you|strong="H5414"\w* \w on|strong="H5921"\w* \w his|strong="H5414"\w* \w throne|strong="H3678"\w* \w to|strong="H3478"\w* \w be|strong="H1961"\w* \w king|strong="H4428"\w* \w for|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w because|strong="H5921"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* loved \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w establish|strong="H5975"\w* \w them|strong="H5414"\w* \w forever|strong="H5769"\w*. \w Therefore|strong="H5921"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w you|strong="H5414"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w them|strong="H5414"\w*, \w to|strong="H3478"\w* \w do|strong="H6213"\w* \w justice|strong="H4941"\w* \w and|strong="H3478"\w* \w righteousness|strong="H6666"\w*.” +\p +\v 9 \w She|strong="H1931"\w* \w gave|strong="H5414"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w one|strong="H3808"\w* \w hundred|strong="H3967"\w* \w and|strong="H3967"\w* \w twenty|strong="H6242"\w* \w talents|strong="H3603"\w*\f + \fr 9:9 \ft A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 120 talents is about 3.6 metric tons\f* \w of|strong="H4428"\w* \w gold|strong="H2091"\w*, \w spices|strong="H1314"\w* \w in|strong="H4428"\w* \w great|strong="H3966"\w* \w abundance|strong="H7230"\w*, \w and|strong="H3967"\w* \w precious|strong="H3368"\w* stones. \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w never|strong="H3808"\w* \w before|strong="H3808"\w* \w such|strong="H1931"\w* \w spice|strong="H1314"\w* \w as|strong="H1961"\w* \w the|strong="H5414"\w* \w queen|strong="H4436"\w* \w of|strong="H4428"\w* \w Sheba|strong="H7614"\w* \w gave|strong="H5414"\w* \w to|strong="H1961"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w*. +\p +\v 10 \w The|strong="H1571"\w* \w servants|strong="H5650"\w* \w of|strong="H5650"\w* Huram \w and|strong="H6086"\w* \w the|strong="H1571"\w* \w servants|strong="H5650"\w* \w of|strong="H5650"\w* \w Solomon|strong="H8010"\w*, \w who|strong="H5650"\w* \w brought|strong="H8010"\w* \w gold|strong="H2091"\w* \w from|strong="H2091"\w* Ophir, \w also|strong="H1571"\w* \w brought|strong="H8010"\w* algum \w trees|strong="H6086"\w*\f + \fr 9:10 \ft possibly Indian sandalwood, which has nice grain and a pleasant scent and is good for woodworking\f* \w and|strong="H6086"\w* \w precious|strong="H3368"\w* stones. +\v 11 \w The|strong="H6440"\w* \w king|strong="H4428"\w* \w used|strong="H6213"\w* algum \w tree|strong="H6086"\w* \w wood|strong="H6086"\w* \w to|strong="H3068"\w* \w make|strong="H6213"\w* \w terraces|strong="H4546"\w* \w for|strong="H6213"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w and|strong="H3063"\w* \w for|strong="H6213"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3063"\w* \w harps|strong="H3658"\w* \w and|strong="H3063"\w* stringed instruments \w for|strong="H6213"\w* \w the|strong="H6440"\w* \w singers|strong="H7891"\w*. \w There|strong="H1992"\w* \w were|strong="H1992"\w* \w none|strong="H3808"\w* \w like|strong="H1004"\w* \w these|strong="H1992"\w* \w seen|strong="H7200"\w* \w before|strong="H6440"\w* \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*. +\v 12 \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w gave|strong="H5414"\w* \w to|strong="H3212"\w* \w the|strong="H3605"\w* \w queen|strong="H4436"\w* \w of|strong="H4428"\w* \w Sheba|strong="H7614"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w desire|strong="H2656"\w*, \w whatever|strong="H3605"\w* \w she|strong="H1931"\w* \w asked|strong="H7592"\w*, more \w than|strong="H4428"\w* \w that|strong="H3605"\w* \w which|strong="H1931"\w* \w she|strong="H1931"\w* \w had|strong="H8010"\w* \w brought|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. \w So|strong="H5414"\w* \w she|strong="H1931"\w* \w turned|strong="H2015"\w* \w and|strong="H4428"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w her|strong="H3605"\w* own land, \w she|strong="H1931"\w* \w and|strong="H4428"\w* \w her|strong="H3605"\w* \w servants|strong="H5650"\w*. +\p +\v 13 \w Now|strong="H1961"\w* \w the|strong="H1961"\w* \w weight|strong="H4948"\w* \w of|strong="H8141"\w* \w gold|strong="H2091"\w* \w that|strong="H8141"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w Solomon|strong="H8010"\w* \w in|strong="H8141"\w* \w one|strong="H1961"\w* \w year|strong="H8141"\w* \w was|strong="H1961"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w sixty-six|strong="H8346"\w* \w talents|strong="H3603"\w*\f + \fr 9:13 \ft A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 666 talents is about 20 metric tons\f* \w of|strong="H8141"\w* \w gold|strong="H2091"\w*, +\v 14 \w in|strong="H4428"\w* addition \w to|strong="H4428"\w* \w that|strong="H3605"\w* \w which|strong="H2091"\w* \w the|strong="H3605"\w* \w traders|strong="H5503"\w* \w and|strong="H3701"\w* \w merchants|strong="H5503"\w* \w brought|strong="H8010"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Arabia|strong="H6152"\w* \w and|strong="H3701"\w* \w the|strong="H3605"\w* \w governors|strong="H6346"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* country \w brought|strong="H8010"\w* \w gold|strong="H2091"\w* \w and|strong="H3701"\w* \w silver|strong="H3701"\w* \w to|strong="H4428"\w* \w Solomon|strong="H8010"\w*. +\v 15 \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w made|strong="H6213"\w* \w two|strong="H6213"\w* \w hundred|strong="H3967"\w* \w large|strong="H6793"\w* \w shields|strong="H6793"\w* \w of|strong="H4428"\w* \w beaten|strong="H7820"\w* \w gold|strong="H2091"\w*. \w Six|strong="H8337"\w* \w hundred|strong="H3967"\w* shekels\f + \fr 9:15 \ft A shekel is about 10 grams or about 0.32 Troy ounces, so 600 shekels was about 6 kilograms or about 192 Troy ounces.\f* \w of|strong="H4428"\w* \w beaten|strong="H7820"\w* \w gold|strong="H2091"\w* \w went|strong="H5927"\w* \w to|strong="H5927"\w* \w one|strong="H6213"\w* \w large|strong="H6793"\w* \w shield|strong="H6793"\w*. +\v 16 \w He|strong="H1004"\w* \w made|strong="H5414"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w shields|strong="H4043"\w* \w of|strong="H4428"\w* \w beaten|strong="H7820"\w* \w gold|strong="H2091"\w*. \w Three|strong="H7969"\w* \w hundred|strong="H3967"\w* shekels\f + \fr 9:16 \ft A shekel is about 10 grams or about 0.32 Troy ounces, so 300 shekels was about 3 kilograms or about 96 Troy ounces.\f* \w of|strong="H4428"\w* \w gold|strong="H2091"\w* \w went|strong="H5927"\w* \w to|strong="H5927"\w* \w one|strong="H3967"\w* \w shield|strong="H4043"\w*. \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w House|strong="H1004"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w Forest|strong="H3293"\w* \w of|strong="H4428"\w* \w Lebanon|strong="H3844"\w*. +\v 17 Moreover \w the|strong="H6213"\w* \w king|strong="H4428"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w throne|strong="H3678"\w* \w of|strong="H4428"\w* \w ivory|strong="H8127"\w*, \w and|strong="H4428"\w* \w overlaid|strong="H6823"\w* \w it|strong="H6213"\w* \w with|strong="H6213"\w* \w pure|strong="H2889"\w* \w gold|strong="H2091"\w*. +\v 18 \w There|strong="H3427"\w* \w were|strong="H3027"\w* \w six|strong="H8337"\w* \w steps|strong="H4609"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w throne|strong="H3678"\w*, \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w footstool|strong="H3534"\w* \w of|strong="H3027"\w* \w gold|strong="H2091"\w*, \w which|strong="H2091"\w* \w were|strong="H3027"\w* fastened \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w throne|strong="H3678"\w*, \w and|strong="H3027"\w* armrests \w on|strong="H5921"\w* \w either|strong="H2088"\w* \w side|strong="H2088"\w* \w by|strong="H3027"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w seat|strong="H3678"\w*, \w and|strong="H3027"\w* \w two|strong="H8147"\w* lions \w standing|strong="H5975"\w* \w beside|strong="H5921"\w* \w the|strong="H5921"\w* armrests. +\v 19 \w Twelve|strong="H8147"\w* lions \w stood|strong="H5975"\w* \w there|strong="H8033"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w one|strong="H2088"\w* \w side|strong="H2088"\w* \w and|strong="H8033"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w other|strong="H2088"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w six|strong="H8337"\w* \w steps|strong="H4609"\w*. \w There|strong="H8033"\w* \w was|strong="H4467"\w* \w nothing|strong="H3808"\w* \w like|strong="H3651"\w* \w it|strong="H5921"\w* \w made|strong="H6213"\w* \w in|strong="H5921"\w* \w any|strong="H3605"\w* \w other|strong="H2088"\w* \w kingdom|strong="H4467"\w*. +\v 20 \w All|strong="H3605"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w*’s \w drinking|strong="H4945"\w* \w vessels|strong="H3627"\w* \w were|strong="H3117"\w* \w of|strong="H4428"\w* \w gold|strong="H2091"\w*, \w and|strong="H3701"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w House|strong="H1004"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w Forest|strong="H3293"\w* \w of|strong="H4428"\w* \w Lebanon|strong="H3844"\w* \w were|strong="H3117"\w* \w of|strong="H4428"\w* \w pure|strong="H5462"\w* \w gold|strong="H2091"\w*. \w Silver|strong="H3701"\w* \w was|strong="H3117"\w* \w not|strong="H2803"\w* \w considered|strong="H2803"\w* \w valuable|strong="H3972"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w Solomon|strong="H8010"\w*. +\v 21 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w had|strong="H4428"\w* ships \w that|strong="H3588"\w* \w went|strong="H1980"\w* \w to|strong="H1980"\w* \w Tarshish|strong="H8659"\w* \w with|strong="H5973"\w* \w Huram|strong="H2361"\w*’s \w servants|strong="H5650"\w*. \w Once|strong="H1980"\w* \w every|strong="H1980"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w*, \w the|strong="H3588"\w* ships \w of|strong="H4428"\w* \w Tarshish|strong="H8659"\w* \w came|strong="H1980"\w* \w bringing|strong="H5375"\w* \w gold|strong="H2091"\w*, \w silver|strong="H3701"\w*, \w ivory|strong="H8143"\w*, \w apes|strong="H6971"\w*, \w and|strong="H1980"\w* \w peacocks|strong="H8500"\w*. +\p +\v 22 \w So|strong="H1431"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w exceeded|strong="H1431"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* earth \w in|strong="H4428"\w* \w riches|strong="H6239"\w* \w and|strong="H4428"\w* \w wisdom|strong="H2451"\w*. +\v 23 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* earth \w sought|strong="H1245"\w* \w the|strong="H3605"\w* \w presence|strong="H6440"\w* \w of|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w to|strong="H5414"\w* \w hear|strong="H8085"\w* \w his|strong="H3605"\w* \w wisdom|strong="H2451"\w*, \w which|strong="H4428"\w* \w God|strong="H5414"\w* \w had|strong="H8010"\w* \w put|strong="H5414"\w* \w in|strong="H4428"\w* \w his|strong="H3605"\w* \w heart|strong="H3820"\w*. +\v 24 \w They|strong="H1992"\w* each brought \w tribute|strong="H4503"\w*: \w vessels|strong="H3627"\w* \w of|strong="H1697"\w* \w silver|strong="H3701"\w*, \w vessels|strong="H3627"\w* \w of|strong="H1697"\w* \w gold|strong="H2091"\w*, \w clothing|strong="H3627"\w*, \w armor|strong="H3627"\w*, \w spices|strong="H1314"\w*, \w horses|strong="H5483"\w*, \w and|strong="H3701"\w* \w mules|strong="H6505"\w* \w every|strong="H1697"\w* \w year|strong="H8141"\w*. +\v 25 \w Solomon|strong="H8010"\w* \w had|strong="H1961"\w* four thousand stalls \w for|strong="H3389"\w* \w horses|strong="H5483"\w* \w and|strong="H4428"\w* \w chariots|strong="H7393"\w*, \w and|strong="H4428"\w* \w twelve|strong="H8147"\w* thousand \w horsemen|strong="H6571"\w* \w that|strong="H4428"\w* \w he|strong="H8147"\w* stationed \w in|strong="H4428"\w* \w the|strong="H1961"\w* \w chariot|strong="H7393"\w* \w cities|strong="H5892"\w* \w and|strong="H4428"\w* \w with|strong="H5973"\w* \w the|strong="H1961"\w* \w king|strong="H4428"\w* \w at|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*. +\v 26 \w He|strong="H5704"\w* \w ruled|strong="H4910"\w* \w over|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w River|strong="H5104"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w land|strong="H1366"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H4428"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w border|strong="H1366"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*. +\v 27 \w The|strong="H5414"\w* \w king|strong="H4428"\w* \w made|strong="H5414"\w* \w silver|strong="H3701"\w* \w as|strong="H7230"\w* \w common|strong="H7230"\w* \w in|strong="H4428"\w* \w Jerusalem|strong="H3389"\w* \w as|strong="H7230"\w* stones, \w and|strong="H3701"\w* \w he|strong="H5414"\w* \w made|strong="H5414"\w* cedars \w to|strong="H5414"\w* \w be|strong="H5414"\w* \w as|strong="H7230"\w* \w abundant|strong="H7230"\w* \w as|strong="H7230"\w* \w the|strong="H5414"\w* \w sycamore|strong="H8256"\w* \w trees|strong="H8256"\w* \w that|strong="H5414"\w* \w are|strong="H4428"\w* \w in|strong="H4428"\w* \w the|strong="H5414"\w* \w lowland|strong="H8219"\w*. +\v 28 \w They|strong="H3605"\w* \w brought|strong="H3318"\w* \w horses|strong="H5483"\w* \w for|strong="H4714"\w* \w Solomon|strong="H8010"\w* \w out|strong="H3318"\w* \w of|strong="H3605"\w* \w Egypt|strong="H4714"\w* \w and|strong="H4714"\w* \w out|strong="H3318"\w* \w of|strong="H3605"\w* \w all|strong="H3605"\w* lands. +\p +\v 29 \w Now|strong="H5921"\w* \w the|strong="H5921"\w* \w rest|strong="H7605"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w acts|strong="H1697"\w* \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w*, \w first|strong="H7223"\w* \w and|strong="H1121"\w* last, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* history \w of|strong="H1121"\w* \w Nathan|strong="H5416"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w*, \w and|strong="H1121"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w prophecy|strong="H5016"\w* \w of|strong="H1121"\w* Ahijah \w the|strong="H5921"\w* \w Shilonite|strong="H7888"\w*, \w and|strong="H1121"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w visions|strong="H2378"\w* \w of|strong="H1121"\w* \w Iddo|strong="H3260"\w* \w the|strong="H5921"\w* \w seer|strong="H2374"\w* \w concerning|strong="H5921"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w*? +\v 30 \w Solomon|strong="H8010"\w* \w reigned|strong="H4427"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* forty \w years|strong="H8141"\w*. +\v 31 \w Solomon|strong="H8010"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* fathers, \w and|strong="H1121"\w* \w he|strong="H1732"\w* \w was|strong="H1732"\w* \w buried|strong="H6912"\w* \w in|strong="H6912"\w* \w his|strong="H1732"\w* \w father|strong="H1121"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*; \w and|strong="H1121"\w* \w Rehoboam|strong="H7346"\w* \w his|strong="H1732"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H6912"\w* \w his|strong="H1732"\w* \w place|strong="H8478"\w*. +\c 10 +\p +\v 1 \w Rehoboam|strong="H7346"\w* \w went|strong="H3212"\w* \w to|strong="H3478"\w* \w Shechem|strong="H7927"\w*, \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w had|strong="H3478"\w* \w come|strong="H3212"\w* \w to|strong="H3478"\w* \w Shechem|strong="H7927"\w* \w to|strong="H3478"\w* \w make|strong="H4427"\w* \w him|strong="H4427"\w* \w king|strong="H4427"\w*. +\v 2 \w When|strong="H1961"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w* \w heard|strong="H8085"\w* \w of|strong="H1121"\w* \w it|strong="H1931"\w* (\w for|strong="H6440"\w* \w he|strong="H1931"\w* \w was|strong="H1961"\w* \w in|strong="H4428"\w* \w Egypt|strong="H4714"\w*, where \w he|strong="H1931"\w* \w had|strong="H1961"\w* \w fled|strong="H1272"\w* \w from|strong="H7725"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H1121"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w*), \w Jeroboam|strong="H3379"\w* \w returned|strong="H7725"\w* \w out|strong="H6440"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*. +\v 3 \w They|strong="H3478"\w* \w sent|strong="H7971"\w* \w and|strong="H3478"\w* \w called|strong="H7121"\w* \w him|strong="H7121"\w*; \w and|strong="H3478"\w* \w Jeroboam|strong="H3379"\w* \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w came|strong="H3478"\w*, \w and|strong="H3478"\w* \w they|strong="H3478"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Rehoboam|strong="H7346"\w*, \w saying|strong="H1696"\w*, +\v 4 “\w Your|strong="H5414"\w* father \w made|strong="H5414"\w* \w our|strong="H5414"\w* \w yoke|strong="H5923"\w* \w grievous|strong="H3515"\w*. \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* \w make|strong="H5414"\w* \w the|strong="H5921"\w* \w grievous|strong="H3515"\w* \w service|strong="H5656"\w* \w of|strong="H5921"\w* \w your|strong="H5414"\w* father \w and|strong="H5647"\w* \w his|strong="H5414"\w* \w heavy|strong="H3515"\w* \w yoke|strong="H5923"\w* which \w he|strong="H5414"\w* \w put|strong="H5414"\w* \w on|strong="H5921"\w* \w us|strong="H5414"\w*, \w lighter|strong="H7043"\w*, \w and|strong="H5647"\w* \w we|strong="H3068"\w* \w will|strong="H5414"\w* \w serve|strong="H5647"\w* \w you|strong="H5414"\w*.” +\p +\v 5 \w He|strong="H3117"\w* said \w to|strong="H7725"\w* \w them|strong="H7725"\w*, “\w Come|strong="H3212"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w me|strong="H7725"\w* \w after|strong="H3117"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*.” +\p \w So|strong="H7725"\w* \w the|strong="H7725"\w* \w people|strong="H5971"\w* \w departed|strong="H3212"\w*. +\p +\v 6 \w King|strong="H4428"\w* \w Rehoboam|strong="H7346"\w* \w took|strong="H1961"\w* \w counsel|strong="H3289"\w* \w with|strong="H1697"\w* \w the|strong="H6440"\w* \w old|strong="H2205"\w* \w men|strong="H2205"\w*, \w who|strong="H5971"\w* \w had|strong="H1961"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w Solomon|strong="H8010"\w* \w his|strong="H7725"\w* father \w while|strong="H1961"\w* \w he|strong="H8010"\w* \w yet|strong="H5975"\w* \w lived|strong="H2416"\w*, \w saying|strong="H1697"\w*, “\w What|strong="H1697"\w* \w counsel|strong="H3289"\w* \w do|strong="H1697"\w* \w you|strong="H6440"\w* \w give|strong="H3289"\w* \w me|strong="H6440"\w* \w about|strong="H1961"\w* how \w to|strong="H7725"\w* \w answer|strong="H7725"\w* \w these|strong="H2088"\w* \w people|strong="H5971"\w*?” +\p +\v 7 \w They|strong="H3117"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H3605"\w*, \w saying|strong="H1697"\w*, “\w If|strong="H1961"\w* \w you|strong="H3605"\w* \w are|strong="H3117"\w* \w kind|strong="H2896"\w* \w to|strong="H1696"\w* \w these|strong="H2088"\w* \w people|strong="H5971"\w*, \w please|strong="H7521"\w* \w them|strong="H1961"\w*, \w and|strong="H3117"\w* \w speak|strong="H1696"\w* \w good|strong="H2896"\w* \w words|strong="H1697"\w* \w to|strong="H1696"\w* \w them|strong="H1961"\w*, \w then|strong="H1961"\w* \w they|strong="H3117"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w your|strong="H3605"\w* \w servants|strong="H5650"\w* \w forever|strong="H3605"\w*.” +\p +\v 8 \w But|strong="H5800"\w* \w he|strong="H6440"\w* \w abandoned|strong="H5800"\w* \w the|strong="H6440"\w* \w counsel|strong="H6098"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w old|strong="H2205"\w* \w men|strong="H2205"\w* \w which|strong="H3206"\w* \w they|strong="H3289"\w* had \w given|strong="H3289"\w* \w him|strong="H6440"\w*, \w and|strong="H6440"\w* \w took|strong="H5975"\w* \w counsel|strong="H6098"\w* \w with|strong="H6440"\w* \w the|strong="H6440"\w* \w young|strong="H3206"\w* \w men|strong="H2205"\w* \w who|strong="H5975"\w* had \w grown|strong="H1431"\w* \w up|strong="H5975"\w* \w with|strong="H6440"\w* \w him|strong="H6440"\w*, \w who|strong="H5975"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 9 \w He|strong="H5414"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H5414"\w*, “\w What|strong="H4100"\w* \w counsel|strong="H3289"\w* \w do|strong="H4100"\w* \w you|strong="H5414"\w* \w give|strong="H5414"\w*, \w that|strong="H5971"\w* \w we|strong="H3068"\w* \w may|strong="H5971"\w* \w give|strong="H5414"\w* \w an|strong="H5414"\w* \w answer|strong="H7725"\w* \w to|strong="H1696"\w* \w these|strong="H2088"\w* \w people|strong="H5971"\w*, \w who|strong="H5971"\w* \w have|strong="H5971"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H5414"\w*, \w saying|strong="H1697"\w*, ‘\w Make|strong="H5414"\w* \w the|strong="H5921"\w* \w yoke|strong="H5923"\w* \w that|strong="H5971"\w* \w your|strong="H5414"\w* father \w put|strong="H5414"\w* \w on|strong="H5921"\w* \w us|strong="H5414"\w* \w lighter|strong="H7043"\w*’?” +\p +\v 10 \w The|strong="H5921"\w* \w young|strong="H3206"\w* \w men|strong="H3206"\w* \w who|strong="H5971"\w* \w had|strong="H5971"\w* \w grown|strong="H1431"\w* \w up|strong="H1431"\w* \w with|strong="H1696"\w* \w him|strong="H5921"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5921"\w*, \w saying|strong="H1696"\w*, “\w Thus|strong="H3541"\w* \w you|strong="H5921"\w* \w shall|strong="H5971"\w* \w tell|strong="H1696"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H5921"\w*, \w saying|strong="H1696"\w*, ‘\w Your|strong="H5921"\w* father \w made|strong="H3513"\w* \w our|strong="H5921"\w* \w yoke|strong="H5923"\w* \w heavy|strong="H3513"\w*, \w but|strong="H1696"\w* \w make|strong="H1431"\w* \w it|strong="H5921"\w* \w lighter|strong="H7043"\w* \w on|strong="H5921"\w* \w us|strong="H5921"\w*;’ \w thus|strong="H3541"\w* \w you|strong="H5921"\w* \w shall|strong="H5971"\w* \w say|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H5921"\w*, ‘\w My|strong="H5921"\w* \w little|strong="H6995"\w* \w finger|strong="H6995"\w* \w is|strong="H3206"\w* \w thicker|strong="H5666"\w* \w than|strong="H5921"\w* \w my|strong="H5921"\w* father’s \w waist|strong="H4975"\w*. +\v 11 \w Now|strong="H6258"\w* \w whereas|strong="H6258"\w* \w my|strong="H5921"\w* father burdened \w you|strong="H5921"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w heavy|strong="H3515"\w* \w yoke|strong="H5923"\w*, \w I|strong="H5921"\w* \w will|strong="H3254"\w* \w add|strong="H3254"\w* \w to|strong="H5921"\w* \w your|strong="H5921"\w* \w yoke|strong="H5923"\w*. \w My|strong="H5921"\w* father \w chastised|strong="H3256"\w* \w you|strong="H5921"\w* \w with|strong="H5921"\w* \w whips|strong="H7752"\w*, \w but|strong="H6258"\w* \w I|strong="H5921"\w* \w will|strong="H3254"\w* \w chastise|strong="H3256"\w* \w you|strong="H5921"\w* \w with|strong="H5921"\w* \w scorpions|strong="H6137"\w*.’” +\p +\v 12 \w So|strong="H7725"\w* \w Jeroboam|strong="H3379"\w* \w and|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w came|strong="H5971"\w* \w to|strong="H1696"\w* \w Rehoboam|strong="H7346"\w* \w the|strong="H3605"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*, \w as|strong="H3117"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w asked|strong="H1696"\w*, \w saying|strong="H1696"\w*, “\w Come|strong="H7725"\w* \w to|strong="H1696"\w* \w me|strong="H7725"\w* \w again|strong="H7725"\w* \w the|strong="H3605"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*.” +\v 13 \w The|strong="H5800"\w* \w king|strong="H4428"\w* \w answered|strong="H6030"\w* \w them|strong="H6030"\w* \w roughly|strong="H7186"\w*; \w and|strong="H6030"\w* \w King|strong="H4428"\w* \w Rehoboam|strong="H7346"\w* \w abandoned|strong="H5800"\w* \w the|strong="H5800"\w* \w counsel|strong="H6098"\w* \w of|strong="H4428"\w* \w the|strong="H5800"\w* \w old|strong="H2205"\w* \w men|strong="H2205"\w*, +\v 14 \w and|strong="H6098"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H5921"\w* \w after|strong="H5921"\w* \w the|strong="H5921"\w* \w counsel|strong="H6098"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w young|strong="H3206"\w* \w men|strong="H3206"\w*, \w saying|strong="H1696"\w*, “\w My|strong="H5921"\w* father \w made|strong="H3513"\w* \w your|strong="H5921"\w* \w yoke|strong="H5923"\w* \w heavy|strong="H3513"\w*, \w but|strong="H1696"\w* \w I|strong="H5921"\w* \w will|strong="H3206"\w* \w add|strong="H3254"\w* \w to|strong="H1696"\w* \w it|strong="H5921"\w*. \w My|strong="H5921"\w* father \w chastised|strong="H3256"\w* \w you|strong="H5921"\w* \w with|strong="H1696"\w* \w whips|strong="H7752"\w*, \w but|strong="H1696"\w* \w I|strong="H5921"\w* \w will|strong="H3206"\w* \w chastise|strong="H3256"\w* \w you|strong="H5921"\w* \w with|strong="H1696"\w* \w scorpions|strong="H6137"\w*.” +\p +\v 15 \w So|strong="H4616"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H1696"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w*; \w for|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H3068"\w* \w brought|strong="H1961"\w* \w about|strong="H1961"\w* \w by|strong="H3027"\w* \w God|strong="H3068"\w*, \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w might|strong="H3068"\w* \w establish|strong="H6965"\w* \w his|strong="H3068"\w* \w word|strong="H1697"\w*, \w which|strong="H3068"\w* \w he|strong="H3588"\w* \w spoke|strong="H1696"\w* \w by|strong="H3027"\w* Ahijah \w the|strong="H8085"\w* \w Shilonite|strong="H7888"\w* \w to|strong="H1696"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H8085"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w*. +\p +\v 16 \w When|strong="H3588"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H7725"\w* \w them|strong="H1992"\w*, \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w answered|strong="H7725"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, saying, “\w What|strong="H4100"\w* \w portion|strong="H2506"\w* \w do|strong="H4100"\w* \w we|strong="H3068"\w* \w have|strong="H5971"\w* \w in|strong="H3478"\w* \w David|strong="H1732"\w*? \w We|strong="H3588"\w* don’t \w have|strong="H5971"\w* \w an|strong="H7200"\w* \w inheritance|strong="H5159"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jesse|strong="H3448"\w*! \w Every|strong="H3605"\w* \w man|strong="H1121"\w* \w to|strong="H7725"\w* \w your|strong="H3605"\w* tents, \w Israel|strong="H3478"\w*! \w Now|strong="H6258"\w* \w see|strong="H7200"\w* \w to|strong="H7725"\w* \w your|strong="H3605"\w* \w own|strong="H5971"\w* \w house|strong="H1004"\w*, \w David|strong="H1732"\w*.” \w So|strong="H3808"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w departed|strong="H3212"\w* \w to|strong="H7725"\w* \w their|strong="H3605"\w* tents. +\p +\v 17 \w But|strong="H5921"\w* \w as|strong="H4427"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w who|strong="H1121"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w Rehoboam|strong="H7346"\w* \w reigned|strong="H4427"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 18 \w Then|strong="H7971"\w* \w King|strong="H4428"\w* \w Rehoboam|strong="H7346"\w* \w sent|strong="H7971"\w* \w Hadoram|strong="H1913"\w*, \w who|strong="H1121"\w* \w was|strong="H3478"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w men|strong="H1121"\w* subject \w to|strong="H3478"\w* \w forced|strong="H4522"\w* \w labor|strong="H4522"\w*; \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w stoned|strong="H7275"\w* \w him|strong="H5921"\w* \w to|strong="H3478"\w* \w death|strong="H4191"\w* \w with|strong="H5921"\w* stones. \w King|strong="H4428"\w* \w Rehoboam|strong="H7346"\w* \w hurried|strong="H5127"\w* \w to|strong="H3478"\w* \w get|strong="H5927"\w* himself \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w his|strong="H7971"\w* \w chariot|strong="H4818"\w*, \w to|strong="H3478"\w* \w flee|strong="H5127"\w* \w to|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*. +\v 19 \w So|strong="H2088"\w* \w Israel|strong="H3478"\w* \w rebelled|strong="H6586"\w* \w against|strong="H6586"\w* \w David|strong="H1732"\w*’s \w house|strong="H1004"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\c 11 +\p +\v 1 \w When|strong="H7725"\w* \w Rehoboam|strong="H7346"\w* \w had|strong="H3478"\w* \w come|strong="H7725"\w* \w to|strong="H7725"\w* \w Jerusalem|strong="H3389"\w*, \w he|strong="H6213"\w* \w assembled|strong="H6950"\w* \w the|strong="H6213"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w and|strong="H3967"\w* \w Benjamin|strong="H1144"\w*, \w one|strong="H6213"\w* \w hundred|strong="H3967"\w* \w eighty|strong="H8084"\w* thousand chosen \w men|strong="H6213"\w* \w who|strong="H3478"\w* \w were|strong="H3478"\w* \w warriors|strong="H4421"\w*, \w to|strong="H7725"\w* \w fight|strong="H3898"\w* \w against|strong="H5973"\w* \w Israel|strong="H3478"\w*, \w to|strong="H7725"\w* \w bring|strong="H7725"\w* \w the|strong="H6213"\w* \w kingdom|strong="H4467"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w Rehoboam|strong="H7346"\w*. +\v 2 \w But|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Shemaiah|strong="H8098"\w* \w the|strong="H3068"\w* man \w of|strong="H3068"\w* \w God|strong="H3068"\w*, \w saying|strong="H1697"\w*, +\v 3 “Speak \w to|strong="H3478"\w* \w Rehoboam|strong="H7346"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w in|strong="H3478"\w* \w Judah|strong="H3063"\w* \w and|strong="H1121"\w* \w Benjamin|strong="H1144"\w*, saying, +\v 4 ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w go|strong="H3212"\w* \w up|strong="H5927"\w*, \w nor|strong="H3808"\w* \w fight|strong="H3898"\w* \w against|strong="H5973"\w* \w your|strong="H3068"\w* brothers! \w Every|strong="H3212"\w* \w man|strong="H2088"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H3068"\w* \w house|strong="H1004"\w*; \w for|strong="H3588"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w is|strong="H3068"\w* \w of|strong="H1004"\w* \w me|strong="H7725"\w*.”’” \w So|strong="H3541"\w* \w they|strong="H3588"\w* \w listened|strong="H8085"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*’s \w words|strong="H1697"\w*, \w and|strong="H3068"\w* \w returned|strong="H7725"\w* \w from|strong="H7725"\w* \w going|strong="H5927"\w* \w against|strong="H5973"\w* \w Jeroboam|strong="H3379"\w*. +\p +\v 5 \w Rehoboam|strong="H7346"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3063"\w* \w built|strong="H1129"\w* \w cities|strong="H5892"\w* \w for|strong="H3427"\w* \w defense|strong="H4692"\w* \w in|strong="H3427"\w* \w Judah|strong="H3063"\w*. +\v 6 \w He|strong="H1129"\w* \w built|strong="H1129"\w* \w Bethlehem|strong="H1035"\w*, \w Etam|strong="H5862"\w*, \w Tekoa|strong="H8620"\w*, +\v 7 Beth Zur, \w Soco|strong="H7755"\w*, \w Adullam|strong="H5725"\w*, +\v 8 \w Gath|strong="H1661"\w*, \w Mareshah|strong="H4762"\w*, \w Ziph|strong="H2128"\w*, +\v 9 Adoraim, \w Lachish|strong="H3923"\w*, \w Azekah|strong="H5825"\w*, +\v 10 \w Zorah|strong="H6881"\w*, Aijalon, \w and|strong="H3063"\w* \w Hebron|strong="H2275"\w*, \w which|strong="H5892"\w* \w are|strong="H5892"\w* \w fortified|strong="H4694"\w* \w cities|strong="H5892"\w* \w in|strong="H5892"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w in|strong="H5892"\w* \w Benjamin|strong="H1144"\w*. +\v 11 \w He|strong="H5414"\w* \w fortified|strong="H4694"\w* \w the|strong="H5414"\w* strongholds \w and|strong="H2388"\w* \w put|strong="H5414"\w* \w captains|strong="H5057"\w* \w in|strong="H5414"\w* \w them|strong="H5414"\w* \w with|strong="H8081"\w* stores \w of|strong="H8081"\w* \w food|strong="H3978"\w*, \w oil|strong="H8081"\w* \w and|strong="H2388"\w* \w wine|strong="H3196"\w*. +\v 12 \w He|strong="H3605"\w* \w put|strong="H2388"\w* \w shields|strong="H6793"\w* \w and|strong="H3063"\w* \w spears|strong="H7420"\w* \w in|strong="H5892"\w* \w every|strong="H3605"\w* \w city|strong="H5892"\w*, \w and|strong="H3063"\w* \w made|strong="H2388"\w* \w them|strong="H1961"\w* \w exceedingly|strong="H3966"\w* \w strong|strong="H2388"\w*. \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Benjamin|strong="H1144"\w* \w belonged|strong="H1961"\w* \w to|strong="H1961"\w* \w him|strong="H3605"\w*. +\p +\v 13 \w The|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w stood|strong="H3320"\w* \w with|strong="H5921"\w* \w him|strong="H5921"\w* \w out|strong="H5921"\w* \w of|strong="H1366"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w territory|strong="H1366"\w*. +\v 14 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w Levites|strong="H3881"\w* \w left|strong="H5800"\w* \w their|strong="H3068"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w* \w and|strong="H1121"\w* \w their|strong="H3068"\w* possessions, \w and|strong="H1121"\w* \w came|strong="H3068"\w* \w to|strong="H3068"\w* \w Judah|strong="H3063"\w* \w and|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*; \w for|strong="H3588"\w* \w Jeroboam|strong="H3379"\w* \w and|strong="H1121"\w* \w his|strong="H3068"\w* \w sons|strong="H1121"\w* \w cast|strong="H3068"\w* \w them|strong="H1121"\w* \w off|strong="H2186"\w*, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w should|strong="H3068"\w* \w not|strong="H3588"\w* execute \w the|strong="H3588"\w* \w priest|strong="H3547"\w*’s office \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 15 \w He|strong="H6213"\w* \w himself|strong="H6213"\w* \w appointed|strong="H5975"\w* \w priests|strong="H3548"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*, \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w male|strong="H8163"\w* \w goat|strong="H8163"\w* \w and|strong="H3548"\w* \w calf|strong="H5695"\w* idols \w which|strong="H1116"\w* \w he|strong="H6213"\w* \w had|strong="H3548"\w* \w made|strong="H6213"\w*. +\v 16 \w After|strong="H1245"\w* \w them|strong="H5414"\w*, \w out|strong="H5414"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w set|strong="H5414"\w* \w their|strong="H3605"\w* \w hearts|strong="H3824"\w* \w to|strong="H3478"\w* \w seek|strong="H1245"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H3478"\w* \w sacrifice|strong="H2076"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w their|strong="H3605"\w* fathers. +\v 17 \w So|strong="H1980"\w* \w they|strong="H3588"\w* \w strengthened|strong="H2388"\w* \w the|strong="H3588"\w* \w kingdom|strong="H4438"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w and|strong="H1121"\w* \w made|strong="H2388"\w* \w Rehoboam|strong="H7346"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w* \w strong|strong="H2388"\w* \w for|strong="H3588"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w walked|strong="H1980"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w* \w and|strong="H1121"\w* \w Solomon|strong="H8010"\w*. +\p +\v 18 \w Rehoboam|strong="H7346"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* wife \w for|strong="H1121"\w* himself, \w Mahalath|strong="H4258"\w* \w the|strong="H3947"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* Jerimoth \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* Abihail \w the|strong="H3947"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* Eliab \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jesse|strong="H3448"\w*. +\v 19 She \w bore|strong="H3205"\w* \w him|strong="H3205"\w* \w sons|strong="H1121"\w*: \w Jeush|strong="H3266"\w*, \w Shemariah|strong="H8114"\w*, \w and|strong="H1121"\w* \w Zaham|strong="H2093"\w*. +\v 20 After \w her|strong="H3947"\w*, \w he|strong="H3947"\w* \w took|strong="H3947"\w* \w Maacah|strong="H4601"\w* \w the|strong="H3947"\w* \w granddaughter|strong="H1323"\w* \w of|strong="H1323"\w* Absalom; \w and|strong="H1323"\w* she \w bore|strong="H3205"\w* \w him|strong="H3205"\w* Abijah, \w Attai|strong="H6262"\w*, \w Ziza|strong="H2124"\w*, \w and|strong="H1323"\w* \w Shelomith|strong="H8019"\w*. +\v 21 \w Rehoboam|strong="H7346"\w* loved \w Maacah|strong="H4601"\w* \w the|strong="H3605"\w* \w granddaughter|strong="H1323"\w* \w of|strong="H1121"\w* Absalom above \w all|strong="H3605"\w* \w his|strong="H3605"\w* wives \w and|strong="H1121"\w* \w his|strong="H3605"\w* \w concubines|strong="H6370"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w took|strong="H5375"\w* \w eighteen|strong="H8083"\w* wives \w and|strong="H1121"\w* \w sixty|strong="H8346"\w* \w concubines|strong="H6370"\w*, \w and|strong="H1121"\w* \w became|strong="H3205"\w* \w the|strong="H3605"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w twenty-eight|strong="H6242"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w sixty|strong="H8346"\w* \w daughters|strong="H1323"\w*. +\v 22 \w Rehoboam|strong="H7346"\w* \w appointed|strong="H5975"\w* Abijah \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Maacah|strong="H4601"\w* \w to|strong="H1121"\w* \w be|strong="H1121"\w* \w chief|strong="H7218"\w*, \w the|strong="H3588"\w* \w prince|strong="H5057"\w* \w among|strong="H7218"\w* \w his|strong="H3588"\w* \w brothers|strong="H1121"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* intended \w to|strong="H1121"\w* \w make|strong="H4427"\w* \w him|strong="H4427"\w* \w king|strong="H4427"\w*. +\v 23 \w He|strong="H3605"\w* dealt wisely, \w and|strong="H1121"\w* \w dispersed|strong="H6555"\w* \w some|strong="H3605"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* lands \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w and|strong="H1121"\w* \w Benjamin|strong="H1144"\w*, \w to|strong="H5414"\w* \w every|strong="H3605"\w* \w fortified|strong="H4694"\w* \w city|strong="H5892"\w*. \w He|strong="H3605"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w food|strong="H4202"\w* \w in|strong="H5892"\w* \w abundance|strong="H7230"\w*; \w and|strong="H1121"\w* \w he|strong="H3605"\w* \w sought|strong="H7592"\w* \w many|strong="H7230"\w* wives \w for|strong="H1121"\w* \w them|strong="H5414"\w*. +\c 12 +\p +\v 1 \w When|strong="H1961"\w* \w the|strong="H3605"\w* \w kingdom|strong="H4438"\w* \w of|strong="H3068"\w* \w Rehoboam|strong="H7346"\w* \w was|strong="H3068"\w* \w established|strong="H3559"\w* \w and|strong="H3478"\w* \w he|strong="H3068"\w* \w was|strong="H3068"\w* \w strong|strong="H2393"\w*, \w he|strong="H3068"\w* \w abandoned|strong="H5800"\w* \w Yahweh|strong="H3068"\w*’s \w law|strong="H8451"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*. +\v 2 \w In|strong="H8141"\w* \w the|strong="H5921"\w* \w fifth|strong="H2549"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* \w Rehoboam|strong="H7346"\w*, \w Shishak|strong="H7895"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w came|strong="H1961"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3068"\w* \w trespassed|strong="H4603"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, +\v 3 \w with|strong="H5973"\w* twelve \w hundred|strong="H3967"\w* \w chariots|strong="H7393"\w* \w and|strong="H3967"\w* \w sixty|strong="H8346"\w* thousand \w horsemen|strong="H6571"\w*. \w The|strong="H5973"\w* \w people|strong="H5971"\w* \w were|strong="H5971"\w* without \w number|strong="H4557"\w* \w who|strong="H5971"\w* \w came|strong="H4714"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w* out \w of|strong="H4557"\w* \w Egypt|strong="H4714"\w*: \w the|strong="H5973"\w* \w Lubim|strong="H3864"\w*, \w the|strong="H5973"\w* \w Sukkiim|strong="H5525"\w*, \w and|strong="H3967"\w* \w the|strong="H5973"\w* \w Ethiopians|strong="H3569"\w*. +\v 4 \w He|strong="H5704"\w* \w took|strong="H3920"\w* \w the|strong="H5704"\w* \w fortified|strong="H4694"\w* \w cities|strong="H5892"\w* \w which|strong="H5892"\w* belonged \w to|strong="H5704"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w came|strong="H3063"\w* \w to|strong="H5704"\w* \w Jerusalem|strong="H3389"\w*. +\v 5 \w Now|strong="H3541"\w* \w Shemaiah|strong="H8098"\w* \w the|strong="H6440"\w* \w prophet|strong="H5030"\w* \w came|strong="H3068"\w* \w to|strong="H3068"\w* \w Rehoboam|strong="H7346"\w* \w and|strong="H3063"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w princes|strong="H8269"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w*, \w who|strong="H3068"\w* \w were|strong="H3063"\w* gathered together \w to|strong="H3068"\w* \w Jerusalem|strong="H3389"\w* \w because|strong="H6440"\w* \w of|strong="H3068"\w* \w Shishak|strong="H7895"\w*, \w and|strong="H3063"\w* said \w to|strong="H3068"\w* \w them|strong="H6440"\w*, “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w You|strong="H6440"\w* \w have|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w me|strong="H6440"\w*, \w therefore|strong="H3068"\w* \w I|strong="H3541"\w* \w have|strong="H3068"\w* \w also|strong="H3068"\w* \w left|strong="H5800"\w* \w you|strong="H6440"\w* \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w Shishak|strong="H7895"\w*.’” +\p +\v 6 \w Then|strong="H4428"\w* \w the|strong="H3068"\w* \w princes|strong="H8269"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w and|strong="H3478"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w humbled|strong="H3665"\w* \w themselves|strong="H3665"\w*; \w and|strong="H3478"\w* \w they|strong="H3068"\w* said, “\w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w righteous|strong="H6662"\w*.” +\p +\v 7 \w When|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w they|strong="H1992"\w* \w humbled|strong="H3665"\w* \w themselves|strong="H1992"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Shemaiah|strong="H8098"\w*, \w saying|strong="H1697"\w*, “\w They|strong="H1992"\w* \w have|strong="H1961"\w* \w humbled|strong="H3665"\w* \w themselves|strong="H1992"\w*. \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w destroy|strong="H7843"\w* \w them|strong="H5414"\w*, \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w grant|strong="H5414"\w* \w them|strong="H5414"\w* \w some|strong="H4592"\w* \w deliverance|strong="H6413"\w*, \w and|strong="H3068"\w* \w my|strong="H5414"\w* \w wrath|strong="H2534"\w* won’t \w be|strong="H1961"\w* \w poured|strong="H5413"\w* \w out|strong="H5414"\w* \w on|strong="H7200"\w* \w Jerusalem|strong="H3389"\w* \w by|strong="H3027"\w* \w the|strong="H7200"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w Shishak|strong="H7895"\w*. +\v 8 \w Nevertheless|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w his|strong="H3045"\w* \w servants|strong="H5650"\w*, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w may|strong="H1961"\w* \w know|strong="H3045"\w* \w my|strong="H3045"\w* \w service|strong="H5656"\w*, \w and|strong="H5650"\w* \w the|strong="H3588"\w* \w service|strong="H5656"\w* \w of|strong="H5650"\w* \w the|strong="H3588"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H5650"\w* \w the|strong="H3588"\w* countries.” +\p +\v 9 \w So|strong="H6213"\w* \w Shishak|strong="H7895"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H3068"\w* \w took|strong="H3947"\w* \w away|strong="H3947"\w* \w the|strong="H3605"\w* treasures \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* treasures \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*. \w He|strong="H6213"\w* \w took|strong="H3947"\w* \w it|strong="H5921"\w* \w all|strong="H3605"\w* \w away|strong="H3947"\w*. \w He|strong="H6213"\w* \w also|strong="H3068"\w* \w took|strong="H3947"\w* \w away|strong="H3947"\w* \w the|strong="H3605"\w* \w shields|strong="H4043"\w* \w of|strong="H4428"\w* \w gold|strong="H2091"\w* \w which|strong="H3068"\w* \w Solomon|strong="H8010"\w* \w had|strong="H3068"\w* \w made|strong="H6213"\w*. +\v 10 \w King|strong="H4428"\w* \w Rehoboam|strong="H7346"\w* \w made|strong="H6213"\w* \w shields|strong="H4043"\w* \w of|strong="H4428"\w* \w bronze|strong="H5178"\w* \w in|strong="H5921"\w* \w their|strong="H5921"\w* \w place|strong="H8478"\w*, \w and|strong="H4428"\w* \w committed|strong="H6213"\w* \w them|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w hands|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w captains|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w guard|strong="H8104"\w*, \w who|strong="H8104"\w* \w kept|strong="H8104"\w* \w the|strong="H5921"\w* \w door|strong="H6607"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*. +\v 11 \w As|strong="H1961"\w* \w often|strong="H1767"\w* \w as|strong="H1961"\w* \w the|strong="H5375"\w* \w king|strong="H4428"\w* entered \w into|strong="H7725"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w the|strong="H5375"\w* \w guard|strong="H7323"\w* \w came|strong="H1961"\w* \w and|strong="H3068"\w* \w bore|strong="H5375"\w* \w them|strong="H7725"\w*, \w then|strong="H1961"\w* \w brought|strong="H7725"\w* \w them|strong="H7725"\w* \w back|strong="H7725"\w* \w into|strong="H7725"\w* \w the|strong="H5375"\w* \w guard|strong="H7323"\w* \w room|strong="H1004"\w*. +\v 12 \w When|strong="H1961"\w* \w he|strong="H3068"\w* \w humbled|strong="H3665"\w* \w himself|strong="H3665"\w*, \w Yahweh|strong="H3068"\w*’s wrath \w turned|strong="H7725"\w* \w from|strong="H4480"\w* \w him|strong="H7725"\w*, \w so|strong="H4480"\w* \w as|strong="H1697"\w* \w not|strong="H3808"\w* \w to|strong="H7725"\w* \w destroy|strong="H7843"\w* \w him|strong="H7725"\w* \w altogether|strong="H3617"\w*. \w Moreover|strong="H1571"\w*, \w there|strong="H1961"\w* \w were|strong="H1961"\w* \w good|strong="H2896"\w* \w things|strong="H1697"\w* \w found|strong="H1571"\w* \w in|strong="H3068"\w* \w Judah|strong="H3063"\w*. +\p +\v 13 \w So|strong="H7760"\w* \w King|strong="H4428"\w* \w Rehoboam|strong="H7346"\w* \w strengthened|strong="H2388"\w* \w himself|strong="H2388"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H1121"\w* \w reigned|strong="H4427"\w*; \w for|strong="H3588"\w* \w Rehoboam|strong="H7346"\w* \w was|strong="H3068"\w* forty-one \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w began|strong="H3478"\w* \w to|strong="H3478"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H3588"\w* \w reigned|strong="H4427"\w* \w seventeen|strong="H7651"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*, \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* chosen \w out|strong="H2388"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w put|strong="H7760"\w* \w his|strong="H3605"\w* \w name|strong="H8034"\w* \w there|strong="H8033"\w*. \w His|strong="H3605"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H3068"\w* \w Naamah|strong="H5279"\w* \w the|strong="H3605"\w* \w Ammonitess|strong="H5985"\w*. +\v 14 \w He|strong="H3588"\w* \w did|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* didn’t \w set|strong="H3559"\w* \w his|strong="H3068"\w* \w heart|strong="H3820"\w* \w to|strong="H3068"\w* \w seek|strong="H1875"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 15 \w Now|strong="H3117"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H3117"\w* \w Rehoboam|strong="H7346"\w*, \w first|strong="H7223"\w* \w and|strong="H3117"\w* last, aren’t \w they|strong="H1992"\w* \w written|strong="H3789"\w* \w in|strong="H3117"\w* \w the|strong="H3605"\w* histories \w of|strong="H3117"\w* \w Shemaiah|strong="H8098"\w* \w the|strong="H3605"\w* \w prophet|strong="H5030"\w* \w and|strong="H3117"\w* \w of|strong="H3117"\w* \w Iddo|strong="H5714"\w* \w the|strong="H3605"\w* \w seer|strong="H2374"\w*, \w in|strong="H3117"\w* \w the|strong="H3605"\w* \w genealogies|strong="H3187"\w*? \w There|strong="H1992"\w* \w were|strong="H3117"\w* \w wars|strong="H4421"\w* \w between|strong="H4421"\w* \w Rehoboam|strong="H7346"\w* \w and|strong="H3117"\w* \w Jeroboam|strong="H3379"\w* \w continually|strong="H3605"\w*. +\v 16 \w Rehoboam|strong="H7346"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* fathers, \w and|strong="H1121"\w* \w was|strong="H1732"\w* \w buried|strong="H6912"\w* \w in|strong="H6912"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*; \w and|strong="H1121"\w* Abijah \w his|strong="H1732"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H6912"\w* \w his|strong="H1732"\w* \w place|strong="H8478"\w*. +\c 13 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H5921"\w* \w eighteenth|strong="H8083"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* \w Jeroboam|strong="H3379"\w*, Abijah \w began|strong="H3063"\w* \w to|strong="H5921"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w Judah|strong="H3063"\w*. +\v 2 \w He|strong="H4480"\w* \w reigned|strong="H4427"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H1961"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Micaiah|strong="H4322"\w* \w the|strong="H4480"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* Uriel \w of|strong="H1323"\w* \w Gibeah|strong="H1390"\w*. \w There|strong="H1961"\w* \w was|strong="H8034"\w* \w war|strong="H4421"\w* \w between|strong="H4421"\w* Abijah \w and|strong="H3389"\w* \w Jeroboam|strong="H3379"\w*. +\v 3 Abijah \w joined|strong="H6186"\w* \w battle|strong="H4421"\w* \w with|strong="H5973"\w* an \w army|strong="H2428"\w* \w of|strong="H1368"\w* \w valiant|strong="H2428"\w* \w men|strong="H1368"\w* \w of|strong="H1368"\w* \w war|strong="H4421"\w*, even four \w hundred|strong="H3967"\w* thousand chosen \w men|strong="H1368"\w*; \w and|strong="H3967"\w* \w Jeroboam|strong="H3379"\w* \w set|strong="H6186"\w* \w the|strong="H3379"\w* \w battle|strong="H4421"\w* \w in|strong="H4421"\w* \w array|strong="H6186"\w* \w against|strong="H5973"\w* \w him|strong="H5973"\w* \w with|strong="H5973"\w* \w eight|strong="H8083"\w* \w hundred|strong="H3967"\w* thousand chosen \w men|strong="H1368"\w*, \w who|strong="H1368"\w* \w were|strong="H2428"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H1368"\w* \w valor|strong="H2428"\w*. +\v 4 Abijah \w stood|strong="H6965"\w* \w up|strong="H6965"\w* \w on|strong="H5921"\w* \w Mount|strong="H2022"\w* \w Zemaraim|strong="H6787"\w*, \w which|strong="H3478"\w* \w is|strong="H3478"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H2022"\w* Ephraim, \w and|strong="H6965"\w* \w said|strong="H8085"\w*, “\w Hear|strong="H8085"\w* \w me|strong="H5921"\w*, \w Jeroboam|strong="H3379"\w* \w and|strong="H6965"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*: +\v 5 Ought \w you|strong="H3588"\w* \w not|strong="H3808"\w* \w to|strong="H3478"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w gave|strong="H5414"\w* \w the|strong="H5921"\w* \w kingdom|strong="H4467"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w David|strong="H1732"\w* \w forever|strong="H5769"\w*, \w even|strong="H3588"\w* \w to|strong="H3478"\w* \w him|strong="H5414"\w* \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w his|strong="H5414"\w* \w sons|strong="H1121"\w* \w by|strong="H5921"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w of|strong="H1121"\w* \w salt|strong="H4417"\w*? +\v 6 \w Yet|strong="H5921"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebat|strong="H5028"\w*, \w the|strong="H5921"\w* \w servant|strong="H5650"\w* \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w*, \w rose|strong="H6965"\w* \w up|strong="H6965"\w*, \w and|strong="H1121"\w* \w rebelled|strong="H4775"\w* \w against|strong="H5921"\w* \w his|strong="H1732"\w* lord. +\v 7 \w Worthless|strong="H1100"\w* \w men|strong="H5288"\w* \w were|strong="H1961"\w* \w gathered|strong="H6908"\w* \w to|strong="H1961"\w* \w him|strong="H6440"\w*, \w wicked|strong="H1100"\w* \w fellows|strong="H1121"\w* \w who|strong="H1121"\w* \w strengthened|strong="H2388"\w* \w themselves|strong="H6908"\w* \w against|strong="H5921"\w* \w Rehoboam|strong="H7346"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w*, \w when|strong="H1961"\w* \w Rehoboam|strong="H7346"\w* \w was|strong="H1961"\w* \w young|strong="H5288"\w* \w and|strong="H1121"\w* \w tender|strong="H7390"\w* hearted, \w and|strong="H1121"\w* \w could|strong="H3824"\w* \w not|strong="H3808"\w* \w withstand|strong="H2388"\w* \w them|strong="H5921"\w*. +\p +\v 8 “\w Now|strong="H6258"\w* \w you|strong="H6440"\w* intend \w to|strong="H3068"\w* \w withstand|strong="H2388"\w* \w the|strong="H6440"\w* \w kingdom|strong="H4467"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w*. \w You|strong="H6440"\w* \w are|strong="H1121"\w* \w a|strong="H3068"\w* \w great|strong="H7227"\w* \w multitude|strong="H1995"\w*, \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w golden|strong="H2091"\w* \w calves|strong="H5695"\w* \w which|strong="H3068"\w* \w Jeroboam|strong="H3379"\w* \w made|strong="H6213"\w* \w you|strong="H6440"\w* \w for|strong="H6213"\w* gods \w are|strong="H1121"\w* \w with|strong="H5973"\w* \w you|strong="H6440"\w*. +\v 9 Haven’t \w you|strong="H3605"\w* \w driven|strong="H5080"\w* \w out|strong="H5080"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*, \w and|strong="H1121"\w* \w made|strong="H6213"\w* \w priests|strong="H3548"\w* \w for|strong="H6213"\w* \w yourselves|strong="H3027"\w* \w according|strong="H3027"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* ways \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w of|strong="H1121"\w* \w other|strong="H3605"\w* lands? \w Whoever|strong="H3605"\w* \w comes|strong="H1961"\w* \w to|strong="H3068"\w* \w consecrate|strong="H4390"\w* \w himself|strong="H3027"\w* \w with|strong="H4390"\w* \w a|strong="H3068"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w* \w and|strong="H1121"\w* \w seven|strong="H7651"\w* rams \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w priest|strong="H3548"\w* \w of|strong="H1121"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H5971"\w* \w no|strong="H3808"\w* gods. +\p +\v 10 “\w But|strong="H3808"\w* \w as|strong="H3068"\w* \w for|strong="H3068"\w* \w us|strong="H5800"\w*, \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H1121"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w forsaken|strong="H5800"\w* \w him|strong="H5800"\w*. We \w have|strong="H3068"\w* \w priests|strong="H3548"\w* \w serving|strong="H8334"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron, \w and|strong="H1121"\w* \w the|strong="H3068"\w* \w Levites|strong="H3881"\w* \w in|strong="H3068"\w* \w their|strong="H3068"\w* \w work|strong="H4399"\w*. +\v 11 \w They|strong="H3588"\w* \w burn|strong="H6999"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w every|strong="H1242"\w* \w morning|strong="H1242"\w* \w and|strong="H3068"\w* \w every|strong="H1242"\w* \w evening|strong="H6153"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w and|strong="H3068"\w* \w sweet|strong="H5561"\w* \w incense|strong="H7004"\w*. \w They|strong="H3588"\w* \w also|strong="H3068"\w* \w set|strong="H1197"\w* \w the|strong="H5921"\w* show \w bread|strong="H3899"\w* \w in|strong="H5921"\w* order \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w pure|strong="H2889"\w* \w table|strong="H7979"\w*, \w and|strong="H3068"\w* \w care|strong="H4931"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w gold|strong="H2091"\w* \w lamp|strong="H5216"\w* stand \w with|strong="H3068"\w* \w its|strong="H5921"\w* \w lamps|strong="H5216"\w*, \w to|strong="H3068"\w* \w burn|strong="H6999"\w* \w every|strong="H1242"\w* \w evening|strong="H6153"\w*; \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w keep|strong="H8104"\w* \w the|strong="H5921"\w* instruction \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w him|strong="H5921"\w*. +\v 12 \w Behold|strong="H2009"\w*, \w God|strong="H3068"\w* \w is|strong="H3068"\w* \w with|strong="H5973"\w* \w us|strong="H5921"\w* \w at|strong="H5921"\w* \w our|strong="H3068"\w* \w head|strong="H7218"\w*, \w and|strong="H1121"\w* \w his|strong="H3068"\w* \w priests|strong="H3548"\w* \w with|strong="H5973"\w* \w the|strong="H5921"\w* \w trumpets|strong="H2689"\w* \w of|strong="H1121"\w* \w alarm|strong="H8643"\w* \w to|strong="H3478"\w* \w sound|strong="H7321"\w* \w an|strong="H3588"\w* \w alarm|strong="H8643"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w*. \w Children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, don’t \w fight|strong="H3898"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* fathers; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w prosper|strong="H6743"\w*.” +\p +\v 13 \w But|strong="H1961"\w* \w Jeroboam|strong="H3379"\w* \w caused|strong="H1961"\w* \w an|strong="H1961"\w* \w ambush|strong="H3993"\w* \w to|strong="H1961"\w* \w come|strong="H1961"\w* \w about|strong="H5437"\w* behind \w them|strong="H6440"\w*; \w so|strong="H1961"\w* \w they|strong="H6440"\w* \w were|strong="H1961"\w* \w before|strong="H6440"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w the|strong="H6440"\w* \w ambush|strong="H3993"\w* \w was|strong="H1961"\w* behind \w them|strong="H6440"\w*. +\v 14 \w When|strong="H3068"\w* \w Judah|strong="H3063"\w* \w looked|strong="H6437"\w* \w back|strong="H6437"\w*, \w behold|strong="H2009"\w*, \w the|strong="H6440"\w* \w battle|strong="H4421"\w* \w was|strong="H3068"\w* \w before|strong="H6440"\w* \w and|strong="H3063"\w* behind \w them|strong="H6440"\w*; \w and|strong="H3063"\w* \w they|strong="H3068"\w* \w cried|strong="H6817"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3063"\w* \w the|strong="H6440"\w* \w priests|strong="H3548"\w* \w sounded|strong="H2690"\w* \w with|strong="H3068"\w* \w the|strong="H6440"\w* \w trumpets|strong="H2689"\w*. +\v 15 \w Then|strong="H1961"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H6440"\w* \w Judah|strong="H3063"\w* \w gave|strong="H7321"\w* \w a|strong="H3068"\w* \w shout|strong="H7321"\w*. \w As|strong="H1961"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H6440"\w* \w Judah|strong="H3063"\w* \w shouted|strong="H7321"\w*, God \w struck|strong="H5062"\w* \w Jeroboam|strong="H3379"\w* \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w before|strong="H6440"\w* Abijah \w and|strong="H3063"\w* \w Judah|strong="H3063"\w*. +\v 16 \w The|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w fled|strong="H5127"\w* \w before|strong="H6440"\w* \w Judah|strong="H3063"\w*, \w and|strong="H1121"\w* \w God|strong="H5414"\w* \w delivered|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w their|strong="H5414"\w* \w hand|strong="H3027"\w*. +\v 17 Abijah \w and|strong="H3967"\w* \w his|strong="H5221"\w* \w people|strong="H5971"\w* \w killed|strong="H5221"\w* \w them|strong="H5221"\w* \w with|strong="H5971"\w* \w a|strong="H3068"\w* \w great|strong="H7227"\w* \w slaughter|strong="H4347"\w*, so \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* thousand chosen \w men|strong="H5971"\w* \w of|strong="H5971"\w* \w Israel|strong="H3478"\w* \w fell|strong="H5307"\w* \w down|strong="H5307"\w* \w slain|strong="H2491"\w*. +\v 18 Thus \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w brought|strong="H3478"\w* \w under|strong="H5921"\w* \w at|strong="H5921"\w* \w that|strong="H3588"\w* \w time|strong="H6256"\w*, \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* prevailed, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w relied|strong="H8172"\w* \w on|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w their|strong="H3068"\w* fathers. +\v 19 Abijah \w pursued|strong="H7291"\w* \w Jeroboam|strong="H3379"\w*, \w and|strong="H5892"\w* \w took|strong="H3920"\w* \w cities|strong="H5892"\w* \w from|strong="H4480"\w* \w him|strong="H7291"\w*: \w Bethel|strong="H1008"\w* \w with|strong="H5892"\w* \w its|strong="H3920"\w* \w villages|strong="H1323"\w*, \w Jeshanah|strong="H3466"\w* \w with|strong="H5892"\w* \w its|strong="H3920"\w* \w villages|strong="H1323"\w*, \w and|strong="H5892"\w* \w Ephron|strong="H6085"\w* \w with|strong="H5892"\w* \w its|strong="H3920"\w* \w villages|strong="H1323"\w*. +\p +\v 20 \w Jeroboam|strong="H3379"\w* didn’t \w recover|strong="H6113"\w* \w strength|strong="H3581"\w* \w again|strong="H5750"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* Abijah. \w Yahweh|strong="H3068"\w* \w struck|strong="H5062"\w* \w him|strong="H4191"\w*, \w and|strong="H3068"\w* \w he|strong="H3117"\w* \w died|strong="H4191"\w*. +\v 21 \w But|strong="H2388"\w* Abijah \w grew|strong="H1121"\w* \w mighty|strong="H2388"\w* \w and|strong="H1121"\w* \w took|strong="H5375"\w* \w for|strong="H1121"\w* \w himself|strong="H2388"\w* \w fourteen|strong="H6240"\w* wives, \w and|strong="H1121"\w* \w became|strong="H3205"\w* \w the|strong="H5375"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w twenty-two|strong="H6242"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w sixteen|strong="H8337"\w* \w daughters|strong="H1323"\w*. +\v 22 \w The|strong="H1870"\w* \w rest|strong="H3499"\w* \w of|strong="H1697"\w* \w the|strong="H1870"\w* \w acts|strong="H1697"\w* \w of|strong="H1697"\w* Abijah, \w his|strong="H5714"\w* \w ways|strong="H1870"\w*, \w and|strong="H1870"\w* \w his|strong="H5714"\w* \w sayings|strong="H1697"\w* \w are|strong="H1697"\w* \w written|strong="H3789"\w* \w in|strong="H3789"\w* \w the|strong="H1870"\w* commentary \w of|strong="H1697"\w* \w the|strong="H1870"\w* \w prophet|strong="H5030"\w* \w Iddo|strong="H5714"\w*. +\c 14 +\p +\v 1 \w So|strong="H6213"\w* Abijah slept \w with|strong="H3068"\w* \w his|strong="H3068"\w* fathers, \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w buried|strong="H6213"\w* \w him|strong="H6213"\w* \w in|strong="H3068"\w* David’s city; \w and|strong="H3068"\w* Asa \w his|strong="H3068"\w* son reigned \w in|strong="H3068"\w* \w his|strong="H3068"\w* place. \w In|strong="H3068"\w* \w his|strong="H3068"\w* days, \w the|strong="H6213"\w* land \w was|strong="H3068"\w* quiet ten years. +\v 2 Asa did \w that|strong="H4196"\w* \w which|strong="H1116"\w* was good \w and|strong="H4196"\w* right \w in|strong="H5493"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H5493"\w* God’s eyes, +\v 3 \w for|strong="H6213"\w* \w he|strong="H6213"\w* \w took|strong="H3063"\w* away \w the|strong="H6213"\w* foreign altars \w and|strong="H3063"\w* \w the|strong="H6213"\w* \w high|strong="H6213"\w* places, broke down \w the|strong="H6213"\w* pillars, cut down \w the|strong="H6213"\w* Asherah poles, +\v 4 \w and|strong="H3063"\w* commanded \w Judah|strong="H3063"\w* \w to|strong="H6440"\w* seek \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* God \w of|strong="H5892"\w* \w their|strong="H3605"\w* fathers, \w and|strong="H3063"\w* \w to|strong="H6440"\w* obey \w his|strong="H3605"\w* law \w and|strong="H3063"\w* command. +\v 5 \w Also|strong="H3068"\w* \w he|strong="H3588"\w* \w took|strong="H3063"\w* \w away|strong="H5973"\w* out \w of|strong="H3068"\w* \w all|strong="H5973"\w* \w the|strong="H3588"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w* \w the|strong="H3588"\w* \w high|strong="H1129"\w* places \w and|strong="H3063"\w* \w the|strong="H3588"\w* sun images; \w and|strong="H3063"\w* \w the|strong="H3588"\w* kingdom \w was|strong="H3068"\w* \w quiet|strong="H8252"\w* \w before|strong="H5973"\w* \w him|strong="H5973"\w*. +\v 6 \w He|strong="H3588"\w* \w built|strong="H1129"\w* \w fortified|strong="H1129"\w* \w cities|strong="H5892"\w* \w in|strong="H3068"\w* \w Judah|strong="H3063"\w*; \w for|strong="H3588"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w was|strong="H3068"\w* \w quiet|strong="H5117"\w*, \w and|strong="H3063"\w* \w he|strong="H3588"\w* \w had|strong="H3068"\w* \w no|strong="H6440"\w* war \w in|strong="H3068"\w* \w those|strong="H5437"\w* years, \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w given|strong="H5117"\w* \w him|strong="H6440"\w* \w rest|strong="H5117"\w*. +\v 7 \w For|strong="H3605"\w* \w he|strong="H3605"\w* said \w to|strong="H1961"\w* \w Judah|strong="H3063"\w*, “\w Let|strong="H1961"\w*’s build \w these|strong="H3605"\w* cities \w and|strong="H3967"\w* \w make|strong="H5375"\w* walls around \w them|strong="H5375"\w*, \w with|strong="H3605"\w* \w towers|strong="H5375"\w*, gates, \w and|strong="H3967"\w* bars. \w The|strong="H3605"\w* land \w is|strong="H3605"\w* \w yet|strong="H3605"\w* \w before|strong="H1961"\w* \w us|strong="H1961"\w*, \w because|strong="H3605"\w* \w we|strong="H3068"\w* \w have|strong="H1961"\w* sought \w Yahweh|strong="H3068"\w* \w our|strong="H3605"\w* God. \w We|strong="H3605"\w* \w have|strong="H1961"\w* sought \w him|strong="H3605"\w*, \w and|strong="H3967"\w* \w he|strong="H3605"\w* \w has|strong="H1961"\w* \w given|strong="H5375"\w* \w us|strong="H1961"\w* \w rest|strong="H1961"\w* \w on|strong="H1961"\w* \w every|strong="H3605"\w* side.” \w So|strong="H1961"\w* \w they|strong="H3605"\w* built \w and|strong="H3967"\w* prospered. +\p +\v 8 Asa \w had|strong="H2428"\w* \w an|strong="H3318"\w* \w army|strong="H2428"\w* \w of|strong="H3318"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* thousand \w out|strong="H3318"\w* \w of|strong="H3318"\w* Judah who bore bucklers \w and|strong="H3967"\w* spears, \w and|strong="H3967"\w* \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* eighty thousand \w out|strong="H3318"\w* \w of|strong="H3318"\w* Benjamin who bore shields \w and|strong="H3967"\w* drew bows. \w All|strong="H5704"\w* these \w were|strong="H2428"\w* \w mighty|strong="H7969"\w* \w men|strong="H2428"\w* \w of|strong="H3318"\w* \w valor|strong="H2428"\w*. +\p +\v 9 Zerah \w the|strong="H6440"\w* Ethiopian \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w against|strong="H6440"\w* \w them|strong="H6440"\w* \w with|strong="H6440"\w* \w an|strong="H6440"\w* \w army|strong="H4421"\w* \w of|strong="H6440"\w* \w a|strong="H3068"\w* million troops \w and|strong="H6440"\w* three hundred chariots, \w and|strong="H6440"\w* \w he|strong="H6440"\w* \w came|strong="H3318"\w* \w to|strong="H3318"\w* \w Mareshah|strong="H4762"\w*. +\v 10 \w Then|strong="H2088"\w* Asa \w went|strong="H3068"\w* \w out|strong="H5921"\w* \w to|strong="H3068"\w* meet \w him|strong="H7121"\w*, \w and|strong="H3068"\w* \w they|strong="H3588"\w* set \w the|strong="H5921"\w* battle \w in|strong="H5921"\w* array \w in|strong="H5921"\w* \w the|strong="H5921"\w* valley \w of|strong="H3068"\w* Zephathah \w at|strong="H5921"\w* Mareshah. +\v 11 Asa cried \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3063"\w* said, “\w Yahweh|strong="H3068"\w*, \w there|strong="H3068"\w* \w is|strong="H3068"\w* \w no|strong="H6440"\w* \w one|strong="H3068"\w* besides \w you|strong="H6440"\w* \w to|strong="H3068"\w* help, between \w the|strong="H6440"\w* mighty \w and|strong="H3063"\w* \w him|strong="H6440"\w* \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w no|strong="H6440"\w* strength. Help \w us|strong="H6440"\w*, \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*; \w for|strong="H6440"\w* \w we|strong="H3068"\w* rely \w on|strong="H3068"\w* \w you|strong="H6440"\w*, \w and|strong="H3063"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* name \w are|strong="H3068"\w* \w we|strong="H3068"\w* \w come|strong="H3063"\w* \w against|strong="H6440"\w* \w this|strong="H6440"\w* multitude. \w Yahweh|strong="H3068"\w*, \w you|strong="H6440"\w* \w are|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*. Don’t let \w man|strong="H6440"\w* prevail \w against|strong="H6440"\w* \w you|strong="H6440"\w*.” +\p +\v 12 \w So|strong="H5375"\w* \w Yahweh|strong="H3068"\w* \w struck|strong="H5307"\w* \w the|strong="H6440"\w* \w Ethiopians|strong="H3569"\w* \w before|strong="H6440"\w* Asa \w and|strong="H3068"\w* \w before|strong="H6440"\w* Judah; \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w Ethiopians|strong="H3569"\w* fled. +\v 13 Asa \w and|strong="H3068"\w* \w the|strong="H3605"\w* people \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w with|strong="H3068"\w* \w him|strong="H5921"\w* pursued \w them|strong="H5921"\w* \w to|strong="H3068"\w* \w Gerar|strong="H1642"\w*. \w So|strong="H1961"\w* \w many|strong="H7227"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* Ethiopians \w fell|strong="H1961"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* could \w not|strong="H1961"\w* recover \w themselves|strong="H5921"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H1961"\w* \w destroyed|strong="H5221"\w* \w before|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w before|strong="H5921"\w* \w his|strong="H3605"\w* army. Judah’s army \w carried|strong="H3068"\w* \w away|strong="H3605"\w* \w very|strong="H7227"\w* \w much|strong="H7227"\w* booty. +\v 14 \w They|strong="H5221"\w* \w struck|strong="H5221"\w* \w all|strong="H7725"\w* \w the|strong="H5221"\w* cities \w around|strong="H7725"\w* Gerar, \w for|strong="H3389"\w* \w the|strong="H5221"\w* fear \w of|strong="H7230"\w* \w Yahweh|strong="H3068"\w* \w came|strong="H7725"\w* \w on|strong="H3389"\w* \w them|strong="H7725"\w*. \w They|strong="H5221"\w* plundered \w all|strong="H7725"\w* \w the|strong="H5221"\w* cities, \w for|strong="H3389"\w* \w there|strong="H7725"\w* \w was|strong="H3389"\w* \w much|strong="H7230"\w* plunder \w in|strong="H7725"\w* \w them|strong="H7725"\w*. +\v 15 They also struck the tents of those who had livestock, and carried away sheep and camels in abundance, then returned to Jerusalem. +\c 15 +\p +\v 1 \w The|strong="H5921"\w* \w Spirit|strong="H7307"\w* \w of|strong="H1121"\w* God \w came|strong="H1961"\w* \w on|strong="H5921"\w* \w Azariah|strong="H5838"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Oded|strong="H5752"\w*. +\v 2 \w He|strong="H3068"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w meet|strong="H6440"\w* Asa, \w and|strong="H3063"\w* \w said|strong="H8085"\w* \w to|strong="H3318"\w* \w him|strong="H6440"\w*, “\w Hear|strong="H8085"\w* \w me|strong="H6440"\w*, Asa, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Benjamin|strong="H1144"\w*! \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w with|strong="H5973"\w* \w you|strong="H6440"\w* \w while|strong="H1961"\w* \w you|strong="H6440"\w* \w are|strong="H3068"\w* \w with|strong="H5973"\w* \w him|strong="H6440"\w*; \w and|strong="H3063"\w* \w if|strong="H1961"\w* \w you|strong="H6440"\w* \w seek|strong="H1875"\w* \w him|strong="H6440"\w*, \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w found|strong="H4672"\w* \w by|strong="H3068"\w* \w you|strong="H6440"\w*; \w but|strong="H1961"\w* \w if|strong="H1961"\w* \w you|strong="H6440"\w* \w forsake|strong="H5800"\w* \w him|strong="H6440"\w*, \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w forsake|strong="H5800"\w* \w you|strong="H6440"\w*. +\v 3 \w Now|strong="H3117"\w* \w for|strong="H3117"\w* \w a|strong="H3068"\w* \w long|strong="H3117"\w* \w time|strong="H3117"\w* \w Israel|strong="H3478"\w* \w was|strong="H3478"\w* \w without|strong="H3808"\w* \w the|strong="H3117"\w* true \w God|strong="H3808"\w*, \w without|strong="H3808"\w* \w a|strong="H3068"\w* \w teaching|strong="H8451"\w* \w priest|strong="H3548"\w*, \w and|strong="H3478"\w* \w without|strong="H3808"\w* \w law|strong="H8451"\w*. +\v 4 \w But|strong="H7725"\w* \w when|strong="H7725"\w* \w in|strong="H5921"\w* \w their|strong="H3068"\w* \w distress|strong="H6862"\w* \w they|strong="H3068"\w* \w turned|strong="H7725"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w sought|strong="H1245"\w* \w him|strong="H5921"\w*, \w he|strong="H3068"\w* \w was|strong="H3068"\w* \w found|strong="H4672"\w* \w by|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 5 \w In|strong="H3427"\w* \w those|strong="H1992"\w* \w times|strong="H7227"\w* \w there|strong="H3427"\w* \w was|strong="H3605"\w* \w no|strong="H3605"\w* \w peace|strong="H7965"\w* \w to|strong="H3318"\w* \w him|strong="H5921"\w* \w who|strong="H3605"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*, \w nor|strong="H3588"\w* \w to|strong="H3318"\w* \w him|strong="H5921"\w* \w who|strong="H3605"\w* \w came|strong="H3318"\w* \w in|strong="H3427"\w*; \w but|strong="H3588"\w* \w great|strong="H7227"\w* troubles \w were|strong="H1992"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* lands. +\v 6 \w They|strong="H3588"\w* \w were|strong="H1471"\w* \w broken|strong="H3807"\w* \w in|strong="H5892"\w* \w pieces|strong="H3807"\w*, \w nation|strong="H1471"\w* \w against|strong="H1471"\w* \w nation|strong="H1471"\w*, \w and|strong="H5892"\w* \w city|strong="H5892"\w* \w against|strong="H1471"\w* \w city|strong="H5892"\w*; \w for|strong="H3588"\w* God \w troubled|strong="H2000"\w* \w them|strong="H2000"\w* \w with|strong="H5892"\w* \w all|strong="H3605"\w* \w adversity|strong="H6869"\w*. +\v 7 \w But|strong="H3588"\w* \w you|strong="H3588"\w* \w be|strong="H3426"\w* \w strong|strong="H2388"\w*! Don’t \w let|strong="H7503"\w* \w your|strong="H3588"\w* \w hands|strong="H3027"\w* \w be|strong="H3426"\w* \w slack|strong="H7503"\w*, \w for|strong="H3588"\w* \w your|strong="H3588"\w* \w work|strong="H6468"\w* \w will|strong="H3027"\w* \w be|strong="H3426"\w* \w rewarded|strong="H7939"\w*.” +\p +\v 8 \w When|strong="H8085"\w* Asa \w heard|strong="H8085"\w* \w these|strong="H8085"\w* \w words|strong="H1697"\w* \w and|strong="H3063"\w* \w the|strong="H3605"\w* \w prophecy|strong="H5016"\w* \w of|strong="H3068"\w* \w Oded|strong="H5752"\w* \w the|strong="H3605"\w* \w prophet|strong="H5030"\w*, \w he|strong="H3068"\w* \w took|strong="H3920"\w* \w courage|strong="H2388"\w*, \w and|strong="H3063"\w* \w put|strong="H3068"\w* \w away|strong="H5674"\w* \w the|strong="H3605"\w* \w abominations|strong="H8251"\w* \w out|strong="H4480"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Benjamin|strong="H1144"\w*, \w and|strong="H3063"\w* \w out|strong="H4480"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w* \w taken|strong="H3920"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H3068"\w* Ephraim; \w and|strong="H3063"\w* \w he|strong="H3068"\w* \w renewed|strong="H2318"\w* \w Yahweh|strong="H3068"\w*’s \w altar|strong="H4196"\w* \w that|strong="H3605"\w* \w was|strong="H3068"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*’s porch. +\v 9 \w He|strong="H3588"\w* \w gathered|strong="H6908"\w* \w all|strong="H3605"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Benjamin|strong="H1144"\w*, \w and|strong="H3063"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w lived|strong="H1481"\w* \w with|strong="H5973"\w* \w them|strong="H5921"\w* \w out|strong="H7200"\w* \w of|strong="H3068"\w* Ephraim, \w Manasseh|strong="H4519"\w*, \w and|strong="H3063"\w* \w Simeon|strong="H8095"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w him|strong="H5921"\w* \w out|strong="H7200"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w in|strong="H5921"\w* \w abundance|strong="H7230"\w* \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H3605"\w* \w God|strong="H3068"\w* \w was|strong="H3068"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w*. +\v 10 So \w they|strong="H8141"\w* \w gathered|strong="H6908"\w* \w themselves|strong="H6908"\w* \w together|strong="H6908"\w* \w at|strong="H2320"\w* \w Jerusalem|strong="H3389"\w* \w in|strong="H8141"\w* \w the|strong="H6908"\w* \w third|strong="H7992"\w* \w month|strong="H2320"\w*, \w in|strong="H8141"\w* \w the|strong="H6908"\w* \w fifteenth|strong="H2568"\w* \w year|strong="H8141"\w* \w of|strong="H8141"\w* Asa’s \w reign|strong="H4438"\w*. +\v 11 \w They|strong="H3117"\w* \w sacrificed|strong="H2076"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w plunder|strong="H7998"\w* \w which|strong="H1931"\w* \w they|strong="H3117"\w* \w had|strong="H3068"\w* \w brought|strong="H3068"\w*, \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* head \w of|strong="H3068"\w* \w cattle|strong="H1241"\w* \w and|strong="H3967"\w* \w seven|strong="H7651"\w* thousand \w sheep|strong="H6629"\w*. +\v 12 \w They|strong="H3068"\w* entered into \w the|strong="H3605"\w* \w covenant|strong="H1285"\w* \w to|strong="H3068"\w* \w seek|strong="H1875"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w their|strong="H3605"\w* fathers, \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w heart|strong="H3824"\w* \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w soul|strong="H5315"\w*; +\v 13 \w and|strong="H3478"\w* \w that|strong="H3605"\w* \w whoever|strong="H3605"\w* \w would|strong="H3068"\w* \w not|strong="H3808"\w* \w seek|strong="H1875"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w should|strong="H3068"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H5704"\w* \w death|strong="H4191"\w*, \w whether|strong="H4480"\w* \w small|strong="H6996"\w* \w or|strong="H3808"\w* \w great|strong="H1419"\w*, \w whether|strong="H4480"\w* \w man|strong="H4191"\w* \w or|strong="H3808"\w* woman. +\v 14 \w They|strong="H3068"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w loud|strong="H1419"\w* \w voice|strong="H6963"\w*, \w with|strong="H3068"\w* \w shouting|strong="H8643"\w*, \w with|strong="H3068"\w* \w trumpets|strong="H2689"\w*, \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w cornets|strong="H7782"\w*. +\v 15 \w All|strong="H3605"\w* \w Judah|strong="H3063"\w* \w rejoiced|strong="H8055"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w oath|strong="H7621"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3068"\w* \w sworn|strong="H7650"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w heart|strong="H3824"\w* \w and|strong="H3063"\w* \w sought|strong="H1245"\w* \w him|strong="H5921"\w* \w with|strong="H3068"\w* \w their|strong="H3605"\w* \w whole|strong="H3605"\w* \w desire|strong="H7522"\w*; \w and|strong="H3063"\w* \w he|strong="H3588"\w* \w was|strong="H3068"\w* \w found|strong="H4672"\w* \w by|strong="H5921"\w* \w them|strong="H5921"\w*. \w Then|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w gave|strong="H5117"\w* \w them|strong="H5921"\w* \w rest|strong="H5117"\w* \w all|strong="H3605"\w* \w around|strong="H5439"\w*. +\p +\v 16 \w Also|strong="H1571"\w* \w Maacah|strong="H4601"\w*, \w the|strong="H6213"\w* \w mother|strong="H1377"\w* \w of|strong="H4428"\w* Asa \w the|strong="H6213"\w* \w king|strong="H4428"\w*, \w he|strong="H6213"\w* \w removed|strong="H5493"\w* \w from|strong="H5493"\w* \w being|strong="H3772"\w* \w queen|strong="H1377"\w* \w mother|strong="H1377"\w*, because \w she|strong="H1571"\w* \w had|strong="H4428"\w* \w made|strong="H6213"\w* \w an|strong="H6213"\w* abominable \w image|strong="H4656"\w* \w for|strong="H6213"\w* \w an|strong="H6213"\w* Asherah; \w so|strong="H6213"\w* Asa \w cut|strong="H3772"\w* \w down|strong="H3772"\w* \w her|strong="H3772"\w* \w image|strong="H4656"\w*, \w ground|strong="H1854"\w* \w it|strong="H6213"\w* \w into|strong="H6213"\w* \w dust|strong="H1854"\w*, \w and|strong="H4428"\w* \w burned|strong="H8313"\w* \w it|strong="H6213"\w* \w at|strong="H4428"\w* \w the|strong="H6213"\w* \w brook|strong="H5158"\w* \w Kidron|strong="H6939"\w*. +\v 17 \w But|strong="H7535"\w* \w the|strong="H3605"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w were|strong="H3478"\w* \w not|strong="H3808"\w* \w taken|strong="H5493"\w* \w away|strong="H5493"\w* \w out|strong="H3605"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w*; \w nevertheless|strong="H7535"\w* \w the|strong="H3605"\w* \w heart|strong="H3824"\w* \w of|strong="H3117"\w* Asa \w was|strong="H1961"\w* \w perfect|strong="H8003"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w days|strong="H3117"\w*. +\v 18 \w He|strong="H1004"\w* brought \w the|strong="H6942"\w* \w things|strong="H6944"\w* \w that|strong="H3627"\w* \w his|strong="H6942"\w* father \w had|strong="H6944"\w* \w dedicated|strong="H6942"\w* \w and|strong="H3701"\w* \w that|strong="H3627"\w* \w he|strong="H1004"\w* \w himself|strong="H6942"\w* \w had|strong="H6944"\w* \w dedicated|strong="H6942"\w*, \w silver|strong="H3701"\w*, \w gold|strong="H2091"\w*, \w and|strong="H3701"\w* \w vessels|strong="H3627"\w* \w into|strong="H3701"\w* God’s \w house|strong="H1004"\w*. +\v 19 \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w more|strong="H3808"\w* \w war|strong="H4421"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w thirty-fifth|strong="H7970"\w* \w year|strong="H8141"\w* \w of|strong="H8141"\w* Asa’s \w reign|strong="H4438"\w*. +\c 16 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H5921"\w* \w thirty-sixth|strong="H7970"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* Asa’s \w reign|strong="H4438"\w*, \w Baasha|strong="H1201"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w went|strong="H3318"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w built|strong="H1129"\w* \w Ramah|strong="H7414"\w*, \w that|strong="H3478"\w* \w he|strong="H5414"\w* \w might|strong="H3478"\w* \w not|strong="H1115"\w* \w allow|strong="H5414"\w* anyone \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w or|strong="H1115"\w* \w come|strong="H5927"\w* \w in|strong="H8141"\w* \w to|strong="H3318"\w* Asa \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*. +\v 2 \w Then|strong="H3318"\w* Asa \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w silver|strong="H3701"\w* \w and|strong="H3068"\w* \w gold|strong="H2091"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w the|strong="H3068"\w* treasures \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w and|strong="H3068"\w* \w of|strong="H4428"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w sent|strong="H7971"\w* \w to|strong="H3318"\w* Ben Hadad \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria, \w who|strong="H3068"\w* \w lived|strong="H3427"\w* \w at|strong="H3427"\w* \w Damascus|strong="H1834"\w*, saying, +\v 3 “\w Let|strong="H7971"\w* \w there|strong="H2009"\w* \w be|strong="H3478"\w* \w a|strong="H3068"\w* \w treaty|strong="H1285"\w* \w between|strong="H5921"\w* \w me|strong="H7971"\w* \w and|strong="H3478"\w* \w you|strong="H7971"\w*, \w as|strong="H5927"\w* \w there|strong="H2009"\w* \w was|strong="H3478"\w* \w between|strong="H5921"\w* \w my|strong="H5921"\w* father \w and|strong="H3478"\w* \w your|strong="H5921"\w* father. \w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w have|strong="H3478"\w* \w sent|strong="H7971"\w* \w you|strong="H7971"\w* \w silver|strong="H3701"\w* \w and|strong="H3478"\w* \w gold|strong="H2091"\w*. \w Go|strong="H3212"\w*, \w break|strong="H6565"\w* \w your|strong="H5921"\w* \w treaty|strong="H1285"\w* \w with|strong="H1285"\w* \w Baasha|strong="H1201"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w that|strong="H3478"\w* \w he|strong="H5921"\w* \w may|strong="H3478"\w* \w depart|strong="H3212"\w* \w from|strong="H5921"\w* \w me|strong="H7971"\w*.” +\p +\v 4 Ben Hadad \w listened|strong="H8085"\w* \w to|strong="H3478"\w* \w King|strong="H4428"\w* Asa, \w and|strong="H3478"\w* \w sent|strong="H7971"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* \w armies|strong="H2428"\w* \w against|strong="H7971"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w they|strong="H3478"\w* \w struck|strong="H5221"\w* \w Ijon|strong="H5859"\w*, \w Dan|strong="H1835"\w*, Abel Maim, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w storage|strong="H4543"\w* \w cities|strong="H5892"\w* \w of|strong="H4428"\w* \w Naphtali|strong="H5321"\w*. +\v 5 \w When|strong="H1961"\w* \w Baasha|strong="H1201"\w* \w heard|strong="H8085"\w* \w of|strong="H8085"\w* \w it|strong="H1961"\w*, \w he|strong="H1129"\w* \w stopped|strong="H2308"\w* \w building|strong="H1129"\w* \w Ramah|strong="H7414"\w*, \w and|strong="H8085"\w* \w let|strong="H2308"\w* \w his|strong="H8085"\w* \w work|strong="H4399"\w* \w cease|strong="H7673"\w*. +\v 6 \w Then|strong="H3947"\w* Asa \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w took|strong="H3947"\w* \w all|strong="H3605"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w they|strong="H3605"\w* \w carried|strong="H5375"\w* \w away|strong="H3947"\w* \w the|strong="H3605"\w* stones \w and|strong="H3063"\w* \w timber|strong="H6086"\w* \w of|strong="H4428"\w* \w Ramah|strong="H7414"\w*, \w with|strong="H4428"\w* \w which|strong="H6086"\w* \w Baasha|strong="H1201"\w* \w had|strong="H4428"\w* \w built|strong="H1129"\w*; \w and|strong="H3063"\w* \w he|strong="H3605"\w* \w built|strong="H1129"\w* \w Geba|strong="H1387"\w* \w and|strong="H3063"\w* \w Mizpah|strong="H4709"\w* \w with|strong="H4428"\w* \w them|strong="H3947"\w*. +\p +\v 7 \w At|strong="H5921"\w* \w that|strong="H7200"\w* \w time|strong="H6256"\w* \w Hanani|strong="H2607"\w* \w the|strong="H5921"\w* \w seer|strong="H7200"\w* \w came|strong="H3068"\w* \w to|strong="H3068"\w* Asa \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w said|strong="H3651"\w* \w to|strong="H3068"\w* \w him|strong="H5921"\w*, “\w Because|strong="H5921"\w* \w you|strong="H5921"\w* \w have|strong="H3068"\w* \w relied|strong="H8172"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria, \w and|strong="H3063"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w relied|strong="H8172"\w* \w on|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w army|strong="H2426"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria \w has|strong="H3068"\w* \w escaped|strong="H4422"\w* \w out|strong="H7200"\w* \w of|strong="H4428"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*. +\v 8 Weren’t \w the|strong="H5921"\w* \w Ethiopians|strong="H3569"\w* \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w Lubim|strong="H3864"\w* \w a|strong="H3068"\w* \w huge|strong="H7230"\w* \w army|strong="H2428"\w*, \w with|strong="H3068"\w* \w chariots|strong="H7393"\w* \w and|strong="H3068"\w* \w exceedingly|strong="H3966"\w* \w many|strong="H7230"\w* \w horsemen|strong="H6571"\w*? \w Yet|strong="H3068"\w*, \w because|strong="H5921"\w* \w you|strong="H5414"\w* \w relied|strong="H8172"\w* \w on|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w he|strong="H3068"\w* \w delivered|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H5921"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*. +\v 9 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w* \w run|strong="H5869"\w* \w back|strong="H7751"\w* \w and|strong="H3068"\w* \w forth|strong="H7751"\w* \w throughout|strong="H3605"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* earth, \w to|strong="H3068"\w* \w show|strong="H2388"\w* \w himself|strong="H3824"\w* \w strong|strong="H2388"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w behalf|strong="H5921"\w* \w of|strong="H3068"\w* \w them|strong="H5921"\w* \w whose|strong="H3605"\w* \w heart|strong="H3824"\w* \w is|strong="H3068"\w* \w perfect|strong="H8003"\w* \w toward|strong="H5921"\w* \w him|strong="H5921"\w*. \w You|strong="H3588"\w* \w have|strong="H3426"\w* \w done|strong="H5528"\w* \w foolishly|strong="H5528"\w* \w in|strong="H5921"\w* \w this|strong="H2063"\w*; \w for|strong="H3588"\w* \w from|strong="H5921"\w* \w now|strong="H6258"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w have|strong="H3426"\w* \w wars|strong="H4421"\w*.” +\p +\v 10 \w Then|strong="H5414"\w* Asa \w was|strong="H1931"\w* \w angry|strong="H3707"\w* \w with|strong="H5973"\w* \w the|strong="H5921"\w* \w seer|strong="H7200"\w*, \w and|strong="H1004"\w* \w put|strong="H5414"\w* \w him|strong="H5414"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w prison|strong="H1004"\w*; \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w rage|strong="H2197"\w* \w with|strong="H5973"\w* \w him|strong="H5414"\w* \w because|strong="H3588"\w* \w of|strong="H1004"\w* \w this|strong="H2063"\w* \w thing|strong="H2063"\w*. Asa \w oppressed|strong="H7533"\w* \w some|strong="H4480"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w same|strong="H1931"\w* \w time|strong="H6256"\w*. +\p +\v 11 \w Behold|strong="H2009"\w*, \w the|strong="H5921"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* Asa, \w first|strong="H7223"\w* \w and|strong="H3063"\w* last, \w behold|strong="H2009"\w*, \w they|strong="H5921"\w* \w are|strong="H3478"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Israel|strong="H3478"\w*. +\v 12 \w In|strong="H8141"\w* \w the|strong="H3588"\w* \w thirty-ninth|strong="H7970"\w* \w year|strong="H8141"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w reign|strong="H4438"\w*, Asa \w was|strong="H3068"\w* \w diseased|strong="H2456"\w* \w in|strong="H8141"\w* \w his|strong="H3068"\w* \w feet|strong="H7272"\w*. \w His|strong="H3068"\w* \w disease|strong="H2483"\w* \w was|strong="H3068"\w* \w exceedingly|strong="H4605"\w* great; \w yet|strong="H3588"\w* \w in|strong="H8141"\w* \w his|strong="H3068"\w* \w disease|strong="H2483"\w* \w he|strong="H3588"\w* didn’t \w seek|strong="H1875"\w* \w Yahweh|strong="H3068"\w*, \w but|strong="H3588"\w* \w just|strong="H1571"\w* \w the|strong="H3588"\w* \w physicians|strong="H7495"\w*. +\v 13 Asa \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H4191"\w* fathers, \w and|strong="H8141"\w* \w died|strong="H4191"\w* \w in|strong="H8141"\w* \w the|strong="H5973"\w* forty-first \w year|strong="H8141"\w* \w of|strong="H8141"\w* \w his|strong="H4191"\w* \w reign|strong="H4427"\w*. +\v 14 \w They|strong="H5704"\w* \w buried|strong="H6912"\w* \w him|strong="H6912"\w* \w in|strong="H6912"\w* \w his|strong="H1732"\w* own \w tomb|strong="H6913"\w*, \w which|strong="H5892"\w* \w he|strong="H5704"\w* \w had|strong="H1732"\w* \w dug|strong="H3738"\w* \w out|strong="H5704"\w* \w for|strong="H5704"\w* himself \w in|strong="H6912"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*, \w and|strong="H1419"\w* \w laid|strong="H7901"\w* \w him|strong="H6912"\w* \w in|strong="H6912"\w* \w the|strong="H5704"\w* \w bed|strong="H4904"\w* \w which|strong="H5892"\w* \w was|strong="H1732"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w sweet|strong="H1314"\w* odors \w and|strong="H1419"\w* various \w kinds|strong="H2177"\w* \w of|strong="H5892"\w* \w spices|strong="H1314"\w* \w prepared|strong="H3738"\w* \w by|strong="H5892"\w* \w the|strong="H5704"\w* perfumers’ \w art|strong="H4639"\w*; \w and|strong="H1419"\w* \w they|strong="H5704"\w* \w made|strong="H4639"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H1419"\w* \w fire|strong="H8316"\w* \w for|strong="H5704"\w* \w him|strong="H6912"\w*. +\c 17 +\p +\v 1 \w Jehoshaphat|strong="H3092"\w* \w his|strong="H5921"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w place|strong="H8478"\w*, \w and|strong="H1121"\w* \w strengthened|strong="H2388"\w* \w himself|strong="H2388"\w* \w against|strong="H5921"\w* \w Israel|strong="H3478"\w*. +\v 2 \w He|strong="H3605"\w* \w placed|strong="H5414"\w* \w forces|strong="H2428"\w* \w in|strong="H5892"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fortified|strong="H1219"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w set|strong="H5414"\w* \w garrisons|strong="H5333"\w* \w in|strong="H5892"\w* \w the|strong="H3605"\w* land \w of|strong="H5892"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w in|strong="H5892"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* Ephraim, \w which|strong="H5892"\w* Asa \w his|strong="H3605"\w* father \w had|strong="H3063"\w* \w taken|strong="H3920"\w*. +\v 3 \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w with|strong="H5973"\w* \w Jehoshaphat|strong="H3092"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w walked|strong="H1980"\w* \w in|strong="H1980"\w* \w the|strong="H3588"\w* \w first|strong="H7223"\w* \w ways|strong="H1870"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* father \w David|strong="H1732"\w*, \w and|strong="H1980"\w* didn’t \w seek|strong="H1875"\w* \w the|strong="H3588"\w* \w Baals|strong="H1168"\w*, +\v 4 \w but|strong="H3588"\w* \w sought|strong="H1875"\w* \w the|strong="H3588"\w* \w God|strong="H3808"\w* \w of|strong="H4639"\w* \w his|strong="H3478"\w* father, \w and|strong="H1980"\w* \w walked|strong="H1980"\w* \w in|strong="H1980"\w* \w his|strong="H3478"\w* \w commandments|strong="H4687"\w*, \w and|strong="H1980"\w* \w not|strong="H3808"\w* \w in|strong="H1980"\w* \w the|strong="H3588"\w* ways \w of|strong="H4639"\w* \w Israel|strong="H3478"\w*. +\v 5 \w Therefore|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w established|strong="H3559"\w* \w the|strong="H3605"\w* \w kingdom|strong="H4467"\w* \w in|strong="H3068"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*. \w All|strong="H3605"\w* \w Judah|strong="H3063"\w* \w brought|strong="H5414"\w* \w tribute|strong="H4503"\w* \w to|strong="H3068"\w* \w Jehoshaphat|strong="H3092"\w*, \w and|strong="H3063"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w* \w riches|strong="H6239"\w* \w and|strong="H3063"\w* \w honor|strong="H3519"\w* \w in|strong="H3068"\w* \w abundance|strong="H7230"\w*. +\v 6 \w His|strong="H3068"\w* \w heart|strong="H3820"\w* \w was|strong="H3068"\w* \w lifted|strong="H1361"\w* \w up|strong="H1361"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w ways|strong="H1870"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w Furthermore|strong="H5750"\w*, \w he|strong="H3068"\w* \w took|strong="H5493"\w* \w away|strong="H5493"\w* \w the|strong="H3068"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w and|strong="H3063"\w* \w the|strong="H3068"\w* Asherah poles \w out|strong="H5493"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w*. +\p +\v 7 \w Also|strong="H3063"\w* \w in|strong="H8141"\w* \w the|strong="H7971"\w* \w third|strong="H7969"\w* \w year|strong="H8141"\w* \w of|strong="H8141"\w* \w his|strong="H7971"\w* \w reign|strong="H4427"\w* \w he|strong="H8141"\w* \w sent|strong="H7971"\w* \w his|strong="H7971"\w* \w princes|strong="H8269"\w*, even Ben Hail, \w Obadiah|strong="H5662"\w*, \w Zechariah|strong="H2148"\w*, \w Nethanel|strong="H5417"\w*, \w and|strong="H3063"\w* \w Micaiah|strong="H4322"\w*, \w to|strong="H7971"\w* \w teach|strong="H3925"\w* \w in|strong="H8141"\w* \w the|strong="H7971"\w* \w cities|strong="H5892"\w* \w of|strong="H8141"\w* \w Judah|strong="H3063"\w*; +\v 8 \w and|strong="H3548"\w* \w with|strong="H5973"\w* them \w Levites|strong="H3881"\w*, even \w Shemaiah|strong="H8098"\w*, \w Nethaniah|strong="H5418"\w*, \w Zebadiah|strong="H2069"\w*, \w Asahel|strong="H6214"\w*, \w Shemiramoth|strong="H8070"\w*, \w Jehonathan|strong="H3083"\w*, Adonijah, \w Tobijah|strong="H2900"\w*, \w and|strong="H3548"\w* \w Tobadonijah|strong="H2899"\w*, \w the|strong="H5973"\w* \w Levites|strong="H3881"\w*; \w and|strong="H3548"\w* \w with|strong="H5973"\w* them Elishama \w and|strong="H3548"\w* \w Jehoram|strong="H3088"\w*, \w the|strong="H5973"\w* \w priests|strong="H3548"\w*. +\v 9 \w They|strong="H3068"\w* \w taught|strong="H3925"\w* \w in|strong="H3068"\w* \w Judah|strong="H3063"\w*, having \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w law|strong="H8451"\w* \w with|strong="H5973"\w* \w them|strong="H3925"\w*. \w They|strong="H3068"\w* \w went|strong="H3063"\w* \w about|strong="H5437"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w taught|strong="H3925"\w* \w among|strong="H5973"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*. +\p +\v 10 \w The|strong="H3605"\w* \w fear|strong="H6343"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w fell|strong="H1961"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* lands \w that|strong="H3605"\w* \w were|strong="H1961"\w* \w around|strong="H5439"\w* \w Judah|strong="H3063"\w*, \w so|strong="H1961"\w* \w that|strong="H3605"\w* \w they|strong="H3068"\w* \w made|strong="H1961"\w* \w no|strong="H3808"\w* \w war|strong="H3898"\w* \w against|strong="H5921"\w* \w Jehoshaphat|strong="H3092"\w*. +\v 11 \w Some|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w Philistines|strong="H6430"\w* \w brought|strong="H6430"\w* \w Jehoshaphat|strong="H3092"\w* \w presents|strong="H4503"\w* \w and|strong="H3967"\w* \w silver|strong="H3701"\w* \w for|strong="H3701"\w* \w tribute|strong="H4503"\w*. \w The|strong="H4480"\w* \w Arabians|strong="H6163"\w* \w also|strong="H1571"\w* \w brought|strong="H6430"\w* \w him|strong="H4480"\w* \w flocks|strong="H6629"\w*: \w seven|strong="H7651"\w* thousand \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* rams \w and|strong="H3967"\w* \w seven|strong="H7651"\w* thousand \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w male|strong="H8495"\w* \w goats|strong="H8495"\w*. +\v 12 \w Jehoshaphat|strong="H3092"\w* \w grew|strong="H1980"\w* \w great|strong="H1432"\w* \w exceedingly|strong="H4605"\w*; \w and|strong="H1980"\w* \w he|strong="H5704"\w* \w built|strong="H1129"\w* \w fortresses|strong="H1003"\w* \w and|strong="H1980"\w* \w store|strong="H4543"\w* \w cities|strong="H5892"\w* \w in|strong="H1980"\w* \w Judah|strong="H3063"\w*. +\v 13 \w He|strong="H3389"\w* \w had|strong="H1961"\w* \w many|strong="H7227"\w* \w works|strong="H4399"\w* \w in|strong="H5892"\w* \w the|strong="H1961"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w Judah|strong="H3063"\w*; \w and|strong="H3063"\w* \w men|strong="H1368"\w* \w of|strong="H5892"\w* \w war|strong="H4421"\w*, \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H5892"\w* \w valor|strong="H2428"\w*, \w in|strong="H5892"\w* \w Jerusalem|strong="H3389"\w*. +\v 14 \w This|strong="H1004"\w* \w was|strong="H1004"\w* \w the|strong="H5973"\w* numbering \w of|strong="H1004"\w* them according \w to|strong="H1004"\w* \w their|strong="H5973"\w* fathers’ \w houses|strong="H1004"\w*: \w From|strong="H5973"\w* \w Judah|strong="H3063"\w*, \w the|strong="H5973"\w* \w captains|strong="H8269"\w* \w of|strong="H1004"\w* thousands: \w Adnah|strong="H5734"\w* \w the|strong="H5973"\w* \w captain|strong="H8269"\w*, \w and|strong="H3967"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* thousand \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H1004"\w* \w valor|strong="H2428"\w*; +\v 15 \w and|strong="H3967"\w* \w next|strong="H5921"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w* \w Jehohanan|strong="H3076"\w* \w the|strong="H5921"\w* \w captain|strong="H8269"\w*, \w and|strong="H3967"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w* \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* \w eighty|strong="H8084"\w* thousand; +\v 16 \w and|strong="H3967"\w* \w next|strong="H5921"\w* \w to|strong="H3068"\w* \w him|strong="H5921"\w* \w Amasiah|strong="H6007"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zichri|strong="H2147"\w*, \w who|strong="H3068"\w* \w willingly|strong="H5068"\w* \w offered|strong="H5068"\w* \w himself|strong="H3027"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3967"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w* \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* thousand \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H1121"\w* \w valor|strong="H2428"\w*. +\v 17 \w From|strong="H4480"\w* \w Benjamin|strong="H1144"\w*: Eliada, \w a|strong="H3068"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w* \w of|strong="H4480"\w* \w valor|strong="H2428"\w*, \w and|strong="H3967"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w* \w two|strong="H4480"\w* \w hundred|strong="H3967"\w* thousand \w armed|strong="H4043"\w* \w with|strong="H5973"\w* \w bow|strong="H7198"\w* \w and|strong="H3967"\w* \w shield|strong="H4043"\w*; +\v 18 \w and|strong="H3967"\w* \w next|strong="H5921"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w* \w Jehozabad|strong="H3075"\w*, \w and|strong="H3967"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w eighty|strong="H8084"\w* thousand ready \w and|strong="H3967"\w* \w prepared|strong="H2502"\w* \w for|strong="H5921"\w* \w war|strong="H6635"\w*. +\v 19 \w These|strong="H3605"\w* \w were|strong="H3063"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w waited|strong="H8334"\w* \w on|strong="H5892"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w in|strong="H4428"\w* addition \w to|strong="H5414"\w* \w those|strong="H3605"\w* whom \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w put|strong="H5414"\w* \w in|strong="H4428"\w* \w the|strong="H3605"\w* \w fortified|strong="H4013"\w* \w cities|strong="H5892"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w Judah|strong="H3063"\w*. +\c 18 +\p +\v 1 \w Now|strong="H1961"\w* \w Jehoshaphat|strong="H3092"\w* \w had|strong="H1961"\w* \w riches|strong="H6239"\w* \w and|strong="H6239"\w* \w honor|strong="H3519"\w* \w in|strong="H1961"\w* \w abundance|strong="H7230"\w*; \w and|strong="H6239"\w* he \w allied|strong="H2859"\w* himself \w with|strong="H2859"\w* Ahab. +\v 2 \w After|strong="H7093"\w* \w some|strong="H7093"\w* \w years|strong="H8141"\w*, \w he|strong="H8141"\w* \w went|strong="H5927"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* Ahab \w to|strong="H3381"\w* \w Samaria|strong="H8111"\w*. Ahab \w killed|strong="H2076"\w* \w sheep|strong="H6629"\w* \w and|strong="H5971"\w* \w cattle|strong="H1241"\w* \w for|strong="H5971"\w* \w him|strong="H5973"\w* \w in|strong="H8141"\w* \w abundance|strong="H7230"\w*, \w and|strong="H5971"\w* \w for|strong="H5971"\w* \w the|strong="H5927"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*, \w and|strong="H5971"\w* \w moved|strong="H5496"\w* \w him|strong="H5973"\w* \w to|strong="H3381"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w* \w to|strong="H3381"\w* \w Ramoth|strong="H7433"\w* \w Gilead|strong="H1568"\w*. +\v 3 Ahab \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* said \w to|strong="H3478"\w* \w Jehoshaphat|strong="H3092"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, “\w Will|strong="H4428"\w* \w you|strong="H5973"\w* \w go|strong="H3212"\w* \w with|strong="H5973"\w* \w me|strong="H5973"\w* \w to|strong="H3478"\w* \w Ramoth|strong="H7433"\w* \w Gilead|strong="H1568"\w*?” +\p \w He|strong="H3478"\w* answered \w him|strong="H5973"\w*, “\w I|strong="H3478"\w* am \w as|strong="H3644"\w* \w you|strong="H5973"\w* \w are|strong="H5971"\w*, \w and|strong="H3063"\w* \w my|strong="H3478"\w* \w people|strong="H5971"\w* \w as|strong="H3644"\w* \w your|strong="H3478"\w* \w people|strong="H5971"\w*. We \w will|strong="H4428"\w* \w be|strong="H3478"\w* \w with|strong="H5973"\w* \w you|strong="H5973"\w* \w in|strong="H3478"\w* \w the|strong="H5973"\w* \w war|strong="H4421"\w*.” +\v 4 \w Jehoshaphat|strong="H3092"\w* \w said|strong="H1697"\w* \w to|strong="H3478"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, “\w Please|strong="H4994"\w* \w inquire|strong="H1875"\w* \w first|strong="H3117"\w* \w for|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*.” +\p +\v 5 \w Then|strong="H5414"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w gathered|strong="H6908"\w* \w the|strong="H5414"\w* \w prophets|strong="H5030"\w* \w together|strong="H6908"\w*, four \w hundred|strong="H3967"\w* \w men|strong="H3478"\w*, \w and|strong="H3967"\w* said \w to|strong="H3478"\w* \w them|strong="H5414"\w*, “\w Shall|strong="H3478"\w* \w we|strong="H3068"\w* \w go|strong="H3212"\w* \w to|strong="H3478"\w* \w Ramoth|strong="H7433"\w* \w Gilead|strong="H1568"\w* \w to|strong="H3478"\w* \w battle|strong="H4421"\w*, \w or|strong="H3027"\w* \w shall|strong="H3478"\w* \w I|strong="H5414"\w* \w forbear|strong="H2308"\w*?” +\p \w They|strong="H3478"\w* said, “\w Go|strong="H3212"\w* \w up|strong="H5927"\w*, \w for|strong="H3027"\w* \w God|strong="H5414"\w* \w will|strong="H4428"\w* \w deliver|strong="H5414"\w* \w it|strong="H5414"\w* \w into|strong="H5927"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w*.” +\p +\v 6 \w But|strong="H3068"\w* \w Jehoshaphat|strong="H3092"\w* said, “Isn’t \w there|strong="H3068"\w* \w here|strong="H6311"\w* \w a|strong="H3068"\w* \w prophet|strong="H5030"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w besides|strong="H5750"\w*, \w that|strong="H3068"\w* \w we|strong="H3068"\w* \w may|strong="H3068"\w* \w inquire|strong="H1875"\w* \w of|strong="H3068"\w* \w him|strong="H1875"\w*?” +\p +\v 7 \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w said|strong="H3651"\w* \w to|strong="H3478"\w* \w Jehoshaphat|strong="H3092"\w*, “\w There|strong="H3117"\w* \w is|strong="H3068"\w* \w yet|strong="H5750"\w* \w one|strong="H3605"\w* \w man|strong="H1121"\w* \w by|strong="H5921"\w* \w whom|strong="H3588"\w* \w we|strong="H3068"\w* \w may|strong="H3068"\w* \w inquire|strong="H1875"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*; \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w hate|strong="H8130"\w* \w him|strong="H5921"\w*, \w for|strong="H3588"\w* \w he|strong="H1931"\w* never \w prophesies|strong="H5012"\w* \w good|strong="H2896"\w* \w concerning|strong="H5921"\w* \w me|strong="H8130"\w*, \w but|strong="H3588"\w* \w always|strong="H3605"\w* \w evil|strong="H7451"\w*. \w He|strong="H1931"\w* \w is|strong="H3068"\w* \w Micaiah|strong="H4321"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Imla|strong="H3229"\w*.” +\p \w Jehoshaphat|strong="H3092"\w* \w said|strong="H3651"\w*, “Don’t \w let|strong="H3651"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w say|strong="H3478"\w* \w so|strong="H3651"\w*.” +\p +\v 8 \w Then|strong="H4428"\w* \w the|strong="H7121"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w called|strong="H7121"\w* \w an|strong="H7121"\w* \w officer|strong="H5631"\w*, \w and|strong="H1121"\w* \w said|strong="H7121"\w*, “Get \w Micaiah|strong="H4318"\w* \w the|strong="H7121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Imla|strong="H3229"\w* \w quickly|strong="H4116"\w*.” +\p +\v 9 \w Now|strong="H3478"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w Jehoshaphat|strong="H3092"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w each|strong="H3605"\w* \w sat|strong="H3427"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w throne|strong="H3678"\w*, \w arrayed|strong="H3847"\w* \w in|strong="H3427"\w* \w their|strong="H3605"\w* robes, \w and|strong="H3063"\w* \w they|strong="H5921"\w* \w were|strong="H3478"\w* \w sitting|strong="H3427"\w* \w in|strong="H3427"\w* \w an|strong="H6440"\w* \w open|strong="H6440"\w* \w place|strong="H1637"\w* \w at|strong="H3427"\w* \w the|strong="H3605"\w* \w entrance|strong="H6607"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w* \w of|strong="H4428"\w* \w Samaria|strong="H8111"\w*; \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w* \w were|strong="H3478"\w* \w prophesying|strong="H5012"\w* \w before|strong="H6440"\w* \w them|strong="H5921"\w*. +\v 10 \w Zedekiah|strong="H6667"\w* \w the|strong="H3541"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Chenaanah|strong="H3668"\w* \w made|strong="H6213"\w* \w himself|strong="H6213"\w* \w horns|strong="H7161"\w* \w of|strong="H1121"\w* \w iron|strong="H1270"\w* \w and|strong="H1121"\w* said, “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w With|strong="H3068"\w* \w these|strong="H6213"\w* \w you|strong="H5704"\w* \w shall|strong="H3068"\w* \w push|strong="H5055"\w* \w the|strong="H3541"\w* Syrians, \w until|strong="H5704"\w* \w they|strong="H3068"\w* \w are|strong="H1121"\w* \w consumed|strong="H3615"\w*.’” +\p +\v 11 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w* \w prophesied|strong="H5012"\w* \w so|strong="H3651"\w*, saying, “\w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w Ramoth|strong="H7433"\w* \w Gilead|strong="H1568"\w*, \w and|strong="H3068"\w* \w prosper|strong="H6743"\w*; \w for|strong="H3027"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w deliver|strong="H5414"\w* \w it|strong="H5414"\w* \w into|strong="H5927"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*.” +\p +\v 12 \w The|strong="H7121"\w* \w messenger|strong="H4397"\w* \w who|strong="H5030"\w* \w went|strong="H1980"\w* \w to|strong="H1696"\w* \w call|strong="H7121"\w* \w Micaiah|strong="H4321"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H7121"\w*, \w saying|strong="H1697"\w*, “\w Behold|strong="H2009"\w*, \w the|strong="H7121"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H7121"\w* \w prophets|strong="H5030"\w* \w declare|strong="H1696"\w* \w good|strong="H2896"\w* \w to|strong="H1696"\w* \w the|strong="H7121"\w* \w king|strong="H4428"\w* \w with|strong="H1980"\w* \w one|strong="H2896"\w* \w mouth|strong="H6310"\w*. \w Let|strong="H4994"\w* \w your|strong="H1961"\w* \w word|strong="H1697"\w* \w therefore|strong="H1961"\w*, \w please|strong="H4994"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w one|strong="H2896"\w* \w of|strong="H4428"\w* \w theirs|strong="H1992"\w*, \w and|strong="H1980"\w* \w speak|strong="H1696"\w* \w good|strong="H2896"\w*.” +\p +\v 13 \w Micaiah|strong="H4321"\w* \w said|strong="H1696"\w*, “\w As|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w say|strong="H1696"\w* \w what|strong="H1696"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w* \w says|strong="H1696"\w*.” +\p +\v 14 \w When|strong="H5927"\w* \w he|strong="H5414"\w* \w had|strong="H4428"\w* \w come|strong="H5927"\w* \w to|strong="H3212"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w*, \w the|strong="H5414"\w* \w king|strong="H4428"\w* said \w to|strong="H3212"\w* \w him|strong="H5414"\w*, “\w Micaiah|strong="H4318"\w*, \w shall|strong="H4428"\w* \w we|strong="H3068"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w Ramoth|strong="H7433"\w* \w Gilead|strong="H1568"\w* \w to|strong="H3212"\w* \w battle|strong="H4421"\w*, \w or|strong="H3027"\w* \w shall|strong="H4428"\w* \w I|strong="H5414"\w* \w forbear|strong="H2308"\w*?” +\p \w He|strong="H5414"\w* said, “\w Go|strong="H3212"\w* \w up|strong="H5927"\w*, \w and|strong="H4428"\w* \w prosper|strong="H6743"\w*. \w They|strong="H3027"\w* \w shall|strong="H4428"\w* \w be|strong="H3027"\w* \w delivered|strong="H5414"\w* \w into|strong="H5927"\w* \w your|strong="H5414"\w* \w hand|strong="H3027"\w*.” +\p +\v 15 \w The|strong="H3068"\w* \w king|strong="H4428"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H4428"\w*, “\w How|strong="H4100"\w* \w many|strong="H4100"\w* \w times|strong="H6471"\w* \w shall|strong="H3068"\w* \w I|strong="H5704"\w* \w adjure|strong="H7650"\w* \w you|strong="H5704"\w* \w that|strong="H3068"\w* \w you|strong="H5704"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w* \w nothing|strong="H3808"\w* \w but|strong="H7535"\w* \w the|strong="H3068"\w* \w truth|strong="H3808"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*?” +\p +\v 16 \w He|strong="H3068"\w* said, “\w I|strong="H5921"\w* \w saw|strong="H7200"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w scattered|strong="H6327"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w*, \w as|strong="H3068"\w* \w sheep|strong="H6629"\w* \w that|strong="H7200"\w* \w have|strong="H3068"\w* \w no|strong="H3808"\w* \w shepherd|strong="H7462"\w*. \w Yahweh|strong="H3068"\w* said, ‘\w These|strong="H3605"\w* \w have|strong="H3068"\w* \w no|strong="H3808"\w* master. \w Let|strong="H3808"\w* \w them|strong="H5921"\w* \w each|strong="H3605"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w* \w in|strong="H5921"\w* \w peace|strong="H7965"\w*.’” +\p +\v 17 \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* said \w to|strong="H3478"\w* \w Jehoshaphat|strong="H3092"\w*, “Didn’t \w I|strong="H3588"\w* tell \w you|strong="H3588"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w would|strong="H3478"\w* \w not|strong="H3808"\w* \w prophesy|strong="H5012"\w* \w good|strong="H2896"\w* \w concerning|strong="H5921"\w* \w me|strong="H5921"\w*, \w but|strong="H3588"\w* \w evil|strong="H7451"\w*?” +\p +\v 18 Micaiah \w said|strong="H1697"\w*, “\w Therefore|strong="H3651"\w* \w hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*: \w I|strong="H5921"\w* \w saw|strong="H7200"\w* \w Yahweh|strong="H3068"\w* \w sitting|strong="H3427"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w throne|strong="H3678"\w*, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w* \w of|strong="H3068"\w* \w heaven|strong="H8064"\w* \w standing|strong="H5975"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w and|strong="H3068"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w left|strong="H8040"\w*. +\v 19 \w Yahweh|strong="H3068"\w* said, ‘\w Who|strong="H4310"\w* \w will|strong="H3068"\w* \w entice|strong="H6601"\w* Ahab \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w may|strong="H3068"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H3478"\w* \w fall|strong="H5307"\w* \w at|strong="H3478"\w* \w Ramoth|strong="H7433"\w* \w Gilead|strong="H1568"\w*?’ \w One|strong="H2088"\w* spoke saying \w in|strong="H3478"\w* \w this|strong="H2088"\w* \w way|strong="H2088"\w*, \w and|strong="H3478"\w* \w another|strong="H2088"\w* saying \w in|strong="H3478"\w* \w that|strong="H3068"\w* \w way|strong="H2088"\w*. +\v 20 \w A|strong="H3068"\w* \w spirit|strong="H7307"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w*, \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w said|strong="H3318"\w*, ‘\w I|strong="H4100"\w* \w will|strong="H3068"\w* \w entice|strong="H6601"\w* \w him|strong="H6440"\w*.’ +\p “\w Yahweh|strong="H3068"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H6440"\w*, ‘\w How|strong="H4100"\w*?’ +\p +\v 21 “\w He|strong="H3651"\w* \w said|strong="H3651"\w*, ‘\w I|strong="H3651"\w* \w will|strong="H1961"\w* \w go|strong="H3318"\w*, \w and|strong="H6213"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w lying|strong="H8267"\w* \w spirit|strong="H7307"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w mouth|strong="H6310"\w* \w of|strong="H7307"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w prophets|strong="H5030"\w*.’ +\p “\w He|strong="H3651"\w* \w said|strong="H3651"\w*, ‘\w You|strong="H3605"\w* \w will|strong="H1961"\w* \w entice|strong="H6601"\w* \w him|strong="H6213"\w*, \w and|strong="H6213"\w* \w will|strong="H1961"\w* \w prevail|strong="H3201"\w* \w also|strong="H1571"\w*. \w Go|strong="H3318"\w* \w and|strong="H6213"\w* \w do|strong="H6213"\w* \w so|strong="H3651"\w*.’ +\p +\v 22 “\w Now|strong="H6258"\w* \w therefore|strong="H5921"\w*, \w behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w put|strong="H5414"\w* \w a|strong="H3068"\w* \w lying|strong="H8267"\w* \w spirit|strong="H7307"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w mouth|strong="H6310"\w* \w of|strong="H3068"\w* \w these|strong="H1696"\w* \w your|strong="H3068"\w* \w prophets|strong="H5030"\w*; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w evil|strong="H7451"\w* \w concerning|strong="H5921"\w* \w you|strong="H5414"\w*.” +\p +\v 23 \w Then|strong="H1696"\w* \w Zedekiah|strong="H6667"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Chenaanah|strong="H3668"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w*, \w and|strong="H1121"\w* \w struck|strong="H5221"\w* \w Micaiah|strong="H4321"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w cheek|strong="H3895"\w*, \w and|strong="H1121"\w* \w said|strong="H1696"\w*, “\w Which|strong="H3068"\w* \w way|strong="H1870"\w* \w did|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w* \w go|strong="H5674"\w* \w from|strong="H5921"\w* \w me|strong="H5921"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H5921"\w*?” +\p +\v 24 \w Micaiah|strong="H4321"\w* said, “\w Behold|strong="H2005"\w*, \w you|strong="H3117"\w* \w shall|strong="H3117"\w* \w see|strong="H7200"\w* \w on|strong="H3117"\w* \w that|strong="H7200"\w* \w day|strong="H3117"\w*, \w when|strong="H3117"\w* \w you|strong="H3117"\w* go \w into|strong="H7200"\w* \w an|strong="H7200"\w* \w inner|strong="H2315"\w* \w room|strong="H2315"\w* \w to|strong="H3117"\w* \w hide|strong="H2244"\w* yourself.” +\p +\v 25 \w The|strong="H3947"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* said, “\w Take|strong="H3947"\w* \w Micaiah|strong="H4321"\w*, \w and|strong="H1121"\w* \w carry|strong="H3947"\w* \w him|strong="H7725"\w* \w back|strong="H7725"\w* \w to|strong="H7725"\w* Amon \w the|strong="H3947"\w* \w governor|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w city|strong="H5892"\w*, \w and|strong="H1121"\w* \w to|strong="H7725"\w* \w Joash|strong="H3101"\w* \w the|strong="H3947"\w* \w king|strong="H4428"\w*’s \w son|strong="H1121"\w*; +\v 26 \w and|strong="H7725"\w* \w say|strong="H7725"\w*, ‘\w The|strong="H3541"\w* \w king|strong="H4428"\w* \w says|strong="H3541"\w*, “\w Put|strong="H7760"\w* \w this|strong="H2088"\w* fellow \w in|strong="H1004"\w* \w the|strong="H3541"\w* \w prison|strong="H1004"\w*, \w and|strong="H7725"\w* feed \w him|strong="H7725"\w* \w with|strong="H1004"\w* \w bread|strong="H3899"\w* \w of|strong="H4428"\w* \w affliction|strong="H3906"\w* \w and|strong="H7725"\w* \w with|strong="H1004"\w* \w water|strong="H4325"\w* \w of|strong="H4428"\w* \w affliction|strong="H3906"\w*, \w until|strong="H5704"\w* \w I|strong="H5704"\w* \w return|strong="H7725"\w* \w in|strong="H1004"\w* \w peace|strong="H7965"\w*.”’” +\p +\v 27 \w Micaiah|strong="H4321"\w* \w said|strong="H1696"\w*, “If \w you|strong="H3605"\w* \w return|strong="H7725"\w* \w at|strong="H3068"\w* \w all|strong="H3605"\w* \w in|strong="H3068"\w* \w peace|strong="H7965"\w*, \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w spoken|strong="H1696"\w* \w by|strong="H3068"\w* \w me|strong="H7725"\w*.” \w He|strong="H3068"\w* \w said|strong="H1696"\w*, “\w Listen|strong="H8085"\w*, \w you|strong="H3605"\w* \w people|strong="H5971"\w*, \w all|strong="H3605"\w* \w of|strong="H3068"\w* \w you|strong="H3605"\w*!” +\p +\v 28 \w So|strong="H5927"\w* \w the|strong="H5927"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w Jehoshaphat|strong="H3092"\w* \w the|strong="H5927"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w Ramoth|strong="H7433"\w* \w Gilead|strong="H1568"\w*. +\v 29 \w The|strong="H3092"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* said \w to|strong="H3478"\w* \w Jehoshaphat|strong="H3092"\w*, “\w I|strong="H3478"\w* \w will|strong="H4428"\w* \w disguise|strong="H2664"\w* myself, \w and|strong="H3478"\w* \w go|strong="H4428"\w* into \w the|strong="H3092"\w* \w battle|strong="H4421"\w*; \w but|strong="H4428"\w* \w you|strong="H3847"\w* \w put|strong="H3847"\w* \w on|strong="H3847"\w* \w your|strong="H3478"\w* robes.” So \w the|strong="H3092"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w disguised|strong="H2664"\w* himself; \w and|strong="H3478"\w* \w they|strong="H3478"\w* \w went|strong="H3478"\w* into \w the|strong="H3092"\w* \w battle|strong="H4421"\w*. +\v 30 \w Now|strong="H3588"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria \w had|strong="H3478"\w* \w commanded|strong="H6680"\w* \w the|strong="H3588"\w* \w captains|strong="H8269"\w* \w of|strong="H4428"\w* \w his|strong="H6680"\w* \w chariots|strong="H7393"\w*, saying, “Don’t \w fight|strong="H3898"\w* \w with|strong="H3898"\w* \w small|strong="H6996"\w* \w nor|strong="H3808"\w* \w great|strong="H1419"\w*, \w except|strong="H3588"\w* \w only|strong="H3588"\w* \w with|strong="H3898"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*.” +\p +\v 31 \w When|strong="H1961"\w* \w the|strong="H5921"\w* \w captains|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w chariots|strong="H7393"\w* \w saw|strong="H7200"\w* \w Jehoshaphat|strong="H3092"\w*, \w they|strong="H1992"\w* said, “\w It|strong="H1931"\w* \w is|strong="H3068"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*!” \w Therefore|strong="H5921"\w* \w they|strong="H1992"\w* \w turned|strong="H5437"\w* \w around|strong="H5437"\w* \w to|strong="H3478"\w* \w fight|strong="H3898"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*. \w But|strong="H1961"\w* \w Jehoshaphat|strong="H3092"\w* \w cried|strong="H2199"\w* \w out|strong="H2199"\w*, \w and|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w helped|strong="H5826"\w* \w him|strong="H5921"\w*; \w and|strong="H3478"\w* \w God|strong="H3068"\w* \w moved|strong="H5496"\w* \w them|strong="H1992"\w* \w to|strong="H3478"\w* depart \w from|strong="H4480"\w* \w him|strong="H5921"\w*. +\v 32 \w When|strong="H3588"\w* \w the|strong="H7200"\w* \w captains|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H7200"\w* \w chariots|strong="H7393"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H1961"\w* \w not|strong="H3808"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w they|strong="H3588"\w* \w turned|strong="H7725"\w* \w back|strong="H7725"\w* \w from|strong="H7725"\w* pursuing \w him|strong="H7725"\w*. +\v 33 \w A|strong="H3068"\w* certain man \w drew|strong="H4900"\w* \w his|strong="H5221"\w* \w bow|strong="H7198"\w* \w at|strong="H3478"\w* \w random|strong="H8537"\w*, \w and|strong="H3478"\w* \w struck|strong="H5221"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w between|strong="H4480"\w* \w the|strong="H3588"\w* \w joints|strong="H1694"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w armor|strong="H8302"\w*. \w Therefore|strong="H3588"\w* \w he|strong="H3588"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3588"\w* \w driver|strong="H7395"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w chariot|strong="H7395"\w*, “\w Turn|strong="H2015"\w* \w around|strong="H3027"\w* \w and|strong="H3478"\w* \w carry|strong="H3318"\w* \w me|strong="H4480"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w battle|strong="H4264"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H2470"\w* \w severely|strong="H2470"\w* \w wounded|strong="H5221"\w*.” +\v 34 \w The|strong="H3117"\w* \w battle|strong="H4421"\w* \w increased|strong="H5927"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*. However, \w the|strong="H3117"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w propped|strong="H5975"\w* \w himself|strong="H1931"\w* \w up|strong="H5927"\w* \w in|strong="H3478"\w* \w his|strong="H3478"\w* \w chariot|strong="H4818"\w* \w against|strong="H5927"\w* \w the|strong="H3117"\w* Syrians \w until|strong="H5704"\w* \w the|strong="H3117"\w* \w evening|strong="H6153"\w*; \w and|strong="H3478"\w* \w at|strong="H3478"\w* \w about|strong="H1961"\w* \w sunset|strong="H8121"\w*, \w he|strong="H1931"\w* \w died|strong="H4191"\w*. +\c 19 +\p +\v 1 \w Jehoshaphat|strong="H3092"\w* \w the|strong="H7725"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w house|strong="H1004"\w* \w in|strong="H1004"\w* \w peace|strong="H7965"\w* \w to|strong="H7725"\w* \w Jerusalem|strong="H3389"\w*. +\v 2 \w Jehu|strong="H3058"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hanani|strong="H2607"\w* \w the|strong="H6440"\w* \w seer|strong="H2374"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w meet|strong="H6440"\w* \w him|strong="H6440"\w*, \w and|strong="H1121"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w King|strong="H4428"\w* \w Jehoshaphat|strong="H3092"\w*, “\w Should|strong="H3068"\w* \w you|strong="H6440"\w* \w help|strong="H5826"\w* \w the|strong="H6440"\w* \w wicked|strong="H7563"\w*, \w and|strong="H1121"\w* love \w those|strong="H5921"\w* \w who|strong="H3068"\w* \w hate|strong="H8130"\w* \w Yahweh|strong="H3068"\w*? \w Because|strong="H5921"\w* \w of|strong="H1121"\w* \w this|strong="H2063"\w*, \w wrath|strong="H7110"\w* \w is|strong="H3068"\w* \w on|strong="H5921"\w* \w you|strong="H6440"\w* \w from|strong="H3318"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 3 \w Nevertheless|strong="H3588"\w* \w there|strong="H4672"\w* \w are|strong="H1697"\w* \w good|strong="H2896"\w* \w things|strong="H1697"\w* \w found|strong="H4672"\w* \w in|strong="H4672"\w* \w you|strong="H3588"\w*, \w in|strong="H4672"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H4672"\w* \w put|strong="H1197"\w* \w away|strong="H1197"\w* \w the|strong="H3588"\w* Asheroth \w out|strong="H4672"\w* \w of|strong="H1697"\w* \w the|strong="H3588"\w* land, \w and|strong="H1697"\w* \w have|strong="H4672"\w* \w set|strong="H3559"\w* \w your|strong="H3588"\w* \w heart|strong="H3824"\w* \w to|strong="H1697"\w* \w seek|strong="H1875"\w* God.” +\p +\v 4 \w Jehoshaphat|strong="H3092"\w* \w lived|strong="H3427"\w* \w at|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*; \w and|strong="H3068"\w* \w he|strong="H5704"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w again|strong="H7725"\w* \w among|strong="H3427"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w* \w from|strong="H7725"\w* Beersheba \w to|strong="H5704"\w* \w the|strong="H3068"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H3068"\w* Ephraim, \w and|strong="H3068"\w* \w brought|strong="H3318"\w* \w them|strong="H7725"\w* \w back|strong="H7725"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* fathers. +\v 5 \w He|strong="H3605"\w* \w set|strong="H5975"\w* \w judges|strong="H8199"\w* \w in|strong="H5892"\w* \w the|strong="H3605"\w* land \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fortified|strong="H1219"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w Judah|strong="H3063"\w*, \w city|strong="H5892"\w* \w by|strong="H5975"\w* \w city|strong="H5892"\w*, +\v 6 \w and|strong="H3068"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w the|strong="H7200"\w* \w judges|strong="H8199"\w*, “\w Consider|strong="H7200"\w* \w what|strong="H4100"\w* \w you|strong="H3588"\w* \w do|strong="H6213"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* don’t \w judge|strong="H8199"\w* \w for|strong="H3588"\w* \w man|strong="H7200"\w*, \w but|strong="H3588"\w* \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H3068"\w* \w he|strong="H3588"\w* \w is|strong="H3068"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w* \w in|strong="H3068"\w* \w the|strong="H7200"\w* \w judgment|strong="H4941"\w*. +\v 7 \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* \w let|strong="H6258"\w* \w the|strong="H6440"\w* \w fear|strong="H6343"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*. \w Take|strong="H8104"\w* \w heed|strong="H8104"\w* \w and|strong="H3068"\w* \w do|strong="H6213"\w* \w it|strong="H5921"\w*; \w for|strong="H3588"\w* \w there|strong="H1961"\w* \w is|strong="H3068"\w* \w no|strong="H6213"\w* \w iniquity|strong="H5766"\w* \w with|strong="H5973"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w nor|strong="H3588"\w* \w respect|strong="H4856"\w* \w of|strong="H3068"\w* \w persons|strong="H6440"\w*, \w nor|strong="H3588"\w* \w taking|strong="H4727"\w* \w of|strong="H3068"\w* \w bribes|strong="H7810"\w*.” +\p +\v 8 \w Moreover|strong="H1571"\w* \w in|strong="H3478"\w* \w Jerusalem|strong="H3389"\w* \w Jehoshaphat|strong="H3092"\w* \w appointed|strong="H5975"\w* certain \w Levites|strong="H3881"\w*, \w priests|strong="H3548"\w*, \w and|strong="H3478"\w* \w heads|strong="H7218"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* fathers’ \w households|strong="H3881"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w to|strong="H7725"\w* \w give|strong="H7725"\w* \w judgment|strong="H4941"\w* \w for|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3478"\w* \w for|strong="H3068"\w* \w controversies|strong="H7379"\w*. \w They|strong="H3068"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Jerusalem|strong="H3389"\w*. +\v 9 \w He|strong="H6213"\w* \w commanded|strong="H6680"\w* \w them|strong="H5921"\w*, saying, “\w You|strong="H6680"\w* \w shall|strong="H3068"\w* \w do|strong="H6213"\w* \w this|strong="H6213"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w fear|strong="H3374"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, faithfully, \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w perfect|strong="H8003"\w* \w heart|strong="H3824"\w*. +\v 10 \w Whenever|strong="H3605"\w* \w any|strong="H3605"\w* \w controversy|strong="H7379"\w* \w comes|strong="H1961"\w* \w to|strong="H3068"\w* \w you|strong="H3605"\w* \w from|strong="H5921"\w* \w your|strong="H3068"\w* brothers \w who|strong="H3605"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w their|strong="H3605"\w* \w cities|strong="H5892"\w*, \w between|strong="H3427"\w* \w blood|strong="H1818"\w* \w and|strong="H3068"\w* \w blood|strong="H1818"\w*, \w between|strong="H3427"\w* \w law|strong="H8451"\w* \w and|strong="H3068"\w* \w commandment|strong="H4687"\w*, \w statutes|strong="H2706"\w* \w and|strong="H3068"\w* \w ordinances|strong="H4941"\w*, \w you|strong="H3605"\w* \w must|strong="H1818"\w* \w warn|strong="H2094"\w* \w them|strong="H5921"\w*, \w that|strong="H3605"\w* \w they|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* guilty \w toward|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w so|strong="H6213"\w* \w wrath|strong="H7110"\w* \w come|strong="H1961"\w* \w on|strong="H5921"\w* \w you|strong="H3605"\w* \w and|strong="H3068"\w* \w on|strong="H5921"\w* \w your|strong="H3068"\w* brothers. \w Do|strong="H6213"\w* \w this|strong="H6213"\w*, \w and|strong="H3068"\w* \w you|strong="H3605"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* guilty. +\v 11 \w Behold|strong="H2009"\w*, Amariah \w the|strong="H3605"\w* \w chief|strong="H7218"\w* \w priest|strong="H3548"\w* \w is|strong="H3068"\w* \w over|strong="H5921"\w* \w you|strong="H6440"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w matters|strong="H1697"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H1121"\w* \w Zebadiah|strong="H2069"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ishmael|strong="H3458"\w*, \w the|strong="H3605"\w* \w ruler|strong="H5057"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w matters|strong="H1697"\w*. \w Also|strong="H3068"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w officers|strong="H7860"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*. \w Deal|strong="H6213"\w* \w courageously|strong="H2388"\w*, \w and|strong="H1121"\w* \w may|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w good|strong="H2896"\w*.” +\c 20 +\p +\v 1 \w After|strong="H5921"\w* \w this|strong="H5973"\w*, \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w*, \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, \w and|strong="H1121"\w* \w with|strong="H5973"\w* \w them|strong="H5921"\w* some \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w Ammonites|strong="H5984"\w*, \w came|strong="H1961"\w* \w against|strong="H5921"\w* \w Jehoshaphat|strong="H3092"\w* \w to|strong="H1961"\w* \w battle|strong="H4421"\w*. +\v 2 \w Then|strong="H2009"\w* \w some|strong="H7227"\w* came \w who|strong="H1931"\w* \w told|strong="H5046"\w* \w Jehoshaphat|strong="H3092"\w*, saying, “\w A|strong="H3068"\w* \w great|strong="H7227"\w* \w multitude|strong="H1995"\w* \w is|strong="H1931"\w* \w coming|strong="H2009"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w* \w from|strong="H5921"\w* \w beyond|strong="H5676"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w from|strong="H5921"\w* Syria. \w Behold|strong="H2009"\w*, \w they|strong="H5921"\w* \w are|strong="H7227"\w* \w in|strong="H5921"\w* Hazazon Tamar” (\w that|strong="H1931"\w* \w is|strong="H1931"\w*, En Gedi). +\v 3 \w Jehoshaphat|strong="H3092"\w* \w was|strong="H3068"\w* alarmed, \w and|strong="H3063"\w* \w set|strong="H5414"\w* \w himself|strong="H6440"\w* \w to|strong="H3068"\w* \w seek|strong="H1875"\w* \w Yahweh|strong="H3068"\w*. \w He|strong="H3068"\w* \w proclaimed|strong="H7121"\w* \w a|strong="H3068"\w* \w fast|strong="H6685"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w Judah|strong="H3063"\w*. +\v 4 \w Judah|strong="H3063"\w* \w gathered|strong="H6908"\w* \w themselves|strong="H6908"\w* \w together|strong="H6908"\w* \w to|strong="H3068"\w* \w seek|strong="H1245"\w* help \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w They|strong="H3068"\w* \w came|strong="H3068"\w* \w out|strong="H1245"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w* \w to|strong="H3068"\w* \w seek|strong="H1245"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 5 \w Jehoshaphat|strong="H3092"\w* \w stood|strong="H5975"\w* \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w assembly|strong="H6951"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w*, \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w new|strong="H2319"\w* \w court|strong="H2691"\w*; +\v 6 \w and|strong="H3068"\w* \w he|strong="H1931"\w* said, “\w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w our|strong="H3068"\w* fathers, aren’t \w you|strong="H3605"\w* \w God|strong="H3068"\w* \w in|strong="H3068"\w* \w heaven|strong="H8064"\w*? Aren’t \w you|strong="H3605"\w* \w ruler|strong="H4910"\w* \w over|strong="H3027"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*? \w Power|strong="H3027"\w* \w and|strong="H3068"\w* \w might|strong="H1369"\w* \w are|strong="H1471"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*, \w so|strong="H3808"\w* \w that|strong="H3605"\w* \w no|strong="H3808"\w* \w one|strong="H3605"\w* \w is|strong="H3068"\w* \w able|strong="H3027"\w* \w to|strong="H3068"\w* \w withstand|strong="H3320"\w* \w you|strong="H3605"\w*. +\v 7 Didn’t \w you|strong="H5414"\w*, \w our|strong="H5414"\w* \w God|strong="H5414"\w*, \w drive|strong="H3423"\w* \w out|strong="H3423"\w* \w the|strong="H6440"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w this|strong="H2063"\w* \w land|strong="H6440"\w* \w before|strong="H6440"\w* \w your|strong="H5414"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3478"\w* \w the|strong="H6440"\w* \w offspring|strong="H2233"\w*\f + \fr 20:7 \ft or, seed\f* \w of|strong="H3427"\w* Abraham \w your|strong="H5414"\w* friend \w forever|strong="H5769"\w*? +\v 8 \w They|strong="H8034"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w it|strong="H8034"\w*, \w and|strong="H3427"\w* \w have|strong="H1129"\w* \w built|strong="H1129"\w* \w you|strong="H1129"\w* \w a|strong="H3068"\w* \w sanctuary|strong="H4720"\w* \w in|strong="H3427"\w* \w it|strong="H8034"\w* \w for|strong="H3427"\w* \w your|strong="H1129"\w* \w name|strong="H8034"\w*, saying, +\v 9 ‘\w If|strong="H3588"\w* \w evil|strong="H7451"\w* \w comes|strong="H6440"\w* \w on|strong="H5921"\w* \w us|strong="H5921"\w*—\w the|strong="H6440"\w* \w sword|strong="H2719"\w*, \w judgment|strong="H8196"\w*, \w pestilence|strong="H1698"\w*, \w or|strong="H8085"\w* \w famine|strong="H7458"\w*—\w we|strong="H3068"\w* \w will|strong="H2719"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w*, \w and|strong="H1004"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w* (\w for|strong="H3588"\w* \w your|strong="H5921"\w* \w name|strong="H8034"\w* \w is|strong="H2088"\w* \w in|strong="H5921"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w*), \w and|strong="H1004"\w* \w cry|strong="H2199"\w* \w to|strong="H5921"\w* \w you|strong="H3588"\w* \w in|strong="H5921"\w* \w our|strong="H5921"\w* \w affliction|strong="H6869"\w*, \w and|strong="H1004"\w* \w you|strong="H3588"\w* \w will|strong="H2719"\w* \w hear|strong="H8085"\w* \w and|strong="H1004"\w* \w save|strong="H3467"\w*.’ +\v 10 \w Now|strong="H6258"\w*, \w behold|strong="H2009"\w*, \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w and|strong="H1121"\w* \w Moab|strong="H4124"\w* \w and|strong="H1121"\w* \w Mount|strong="H2022"\w* \w Seir|strong="H8165"\w*, \w whom|strong="H3588"\w* \w you|strong="H3588"\w* \w would|strong="H3478"\w* \w not|strong="H3808"\w* \w let|strong="H5414"\w* \w Israel|strong="H3478"\w* invade \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w came|strong="H3478"\w* \w out|strong="H5414"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w but|strong="H3588"\w* \w they|strong="H3588"\w* \w turned|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* \w them|strong="H5414"\w*, \w and|strong="H1121"\w* didn’t \w destroy|strong="H8045"\w* \w them|strong="H5414"\w*; +\v 11 \w behold|strong="H2009"\w*, \w how|strong="H2009"\w* \w they|strong="H1992"\w* \w reward|strong="H1580"\w* \w us|strong="H5921"\w*, \w to|strong="H5921"\w* \w come|strong="H3423"\w* \w to|strong="H5921"\w* \w cast|strong="H3423"\w* \w us|strong="H5921"\w* \w out|strong="H3423"\w* \w of|strong="H5921"\w* \w your|strong="H5921"\w* \w possession|strong="H3423"\w*, \w which|strong="H1992"\w* \w you|strong="H5921"\w* \w have|strong="H3423"\w* \w given|strong="H3423"\w* \w us|strong="H5921"\w* \w to|strong="H5921"\w* \w inherit|strong="H3423"\w*. +\v 12 \w Our|strong="H5921"\w* \w God|strong="H3808"\w*, \w will|strong="H5869"\w* \w you|strong="H3588"\w* \w not|strong="H3808"\w* \w judge|strong="H8199"\w* \w them|strong="H5921"\w*? \w For|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H5869"\w* \w no|strong="H3808"\w* \w might|strong="H3581"\w* \w against|strong="H5921"\w* \w this|strong="H2088"\w* \w great|strong="H7227"\w* \w company|strong="H1995"\w* \w that|strong="H3588"\w* \w comes|strong="H6440"\w* \w against|strong="H5921"\w* \w us|strong="H5921"\w*. \w We|strong="H3588"\w* don’t \w know|strong="H3045"\w* \w what|strong="H4100"\w* \w to|strong="H5921"\w* \w do|strong="H6213"\w*, \w but|strong="H3588"\w* \w our|strong="H5921"\w* \w eyes|strong="H5869"\w* \w are|strong="H5869"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*.” +\p +\v 13 \w All|strong="H3605"\w* \w Judah|strong="H3063"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w with|strong="H3068"\w* \w their|strong="H3605"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*, \w their|strong="H3605"\w* wives, \w and|strong="H1121"\w* \w their|strong="H3605"\w* \w children|strong="H1121"\w*. +\p +\v 14 \w Then|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w* \w came|strong="H1961"\w* \w on|strong="H5921"\w* \w Jahaziel|strong="H3166"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zechariah|strong="H2148"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Benaiah|strong="H1141"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeiel|strong="H3273"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Mattaniah|strong="H4983"\w*, \w the|strong="H5921"\w* \w Levite|strong="H3881"\w*, \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Asaph, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w assembly|strong="H6951"\w*; +\v 15 \w and|strong="H3063"\w* \w he|strong="H3588"\w* said, “\w Listen|strong="H7181"\w*, \w all|strong="H3605"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w you|strong="H3588"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3063"\w* \w you|strong="H3588"\w*, \w King|strong="H4428"\w* \w Jehoshaphat|strong="H3092"\w*. \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w*, ‘Don’t \w be|strong="H3808"\w* \w afraid|strong="H3372"\w*, \w and|strong="H3063"\w* don’t \w be|strong="H3808"\w* \w dismayed|strong="H2865"\w* \w because|strong="H3588"\w* \w of|strong="H4428"\w* \w this|strong="H2088"\w* \w great|strong="H7227"\w* \w multitude|strong="H1995"\w*; \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w battle|strong="H4421"\w* \w is|strong="H3068"\w* \w not|strong="H3808"\w* yours, \w but|strong="H3588"\w* \w God|strong="H3068"\w*’s. +\v 16 \w Tomorrow|strong="H4279"\w*, \w go|strong="H5927"\w* \w down|strong="H3381"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w*. \w Behold|strong="H2005"\w*, \w they|strong="H5921"\w* \w are|strong="H6440"\w* \w coming|strong="H5927"\w* \w up|strong="H5927"\w* \w by|strong="H5921"\w* \w the|strong="H6440"\w* \w ascent|strong="H4608"\w* \w of|strong="H6440"\w* \w Ziz|strong="H6732"\w*. \w You|strong="H6440"\w* \w will|strong="H5158"\w* \w find|strong="H4672"\w* \w them|strong="H5921"\w* \w at|strong="H5921"\w* \w the|strong="H6440"\w* \w end|strong="H5490"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w valley|strong="H5158"\w*, \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w wilderness|strong="H4057"\w* \w of|strong="H6440"\w* \w Jeruel|strong="H3385"\w*. +\v 17 \w You|strong="H6440"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* need \w to|strong="H3318"\w* \w fight|strong="H3898"\w* \w this|strong="H2063"\w* \w battle|strong="H3898"\w*. \w Set|strong="H5975"\w* \w yourselves|strong="H3320"\w*, \w stand|strong="H5975"\w* \w still|strong="H5975"\w*, \w and|strong="H3063"\w* \w see|strong="H7200"\w* \w the|strong="H6440"\w* \w salvation|strong="H3444"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H5973"\w* \w you|strong="H6440"\w*, \w O|strong="H3068"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w*. Don’t \w be|strong="H3808"\w* \w afraid|strong="H3372"\w*, \w nor|strong="H3808"\w* \w be|strong="H3808"\w* \w dismayed|strong="H2865"\w*. \w Go|strong="H3318"\w* \w out|strong="H3318"\w* \w against|strong="H5973"\w* \w them|strong="H6440"\w* \w tomorrow|strong="H4279"\w*, \w for|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w with|strong="H5973"\w* \w you|strong="H6440"\w*.’” +\p +\v 18 \w Jehoshaphat|strong="H3092"\w* \w bowed|strong="H7812"\w* \w his|strong="H3605"\w* \w head|strong="H6915"\w* \w with|strong="H3068"\w* \w his|strong="H3605"\w* \w face|strong="H6440"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w ground|strong="H6440"\w*; \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w* \w fell|strong="H5307"\w* \w down|strong="H5307"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w worshiping|strong="H7812"\w* \w Yahweh|strong="H3068"\w*. +\v 19 \w The|strong="H3068"\w* \w Levites|strong="H3881"\w*, \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w Kohathites|strong="H6956"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w Korahites|strong="H7145"\w*, \w stood|strong="H6965"\w* \w up|strong="H6965"\w* \w to|strong="H3478"\w* \w praise|strong="H1984"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w with|strong="H3068"\w* \w an|strong="H6965"\w* \w exceedingly|strong="H4605"\w* \w loud|strong="H1419"\w* \w voice|strong="H6963"\w*. +\p +\v 20 \w They|strong="H3068"\w* \w rose|strong="H7925"\w* \w early|strong="H7925"\w* \w in|strong="H3427"\w* \w the|strong="H8085"\w* \w morning|strong="H1242"\w* \w and|strong="H3063"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H8085"\w* \w wilderness|strong="H4057"\w* \w of|strong="H3068"\w* \w Tekoa|strong="H8620"\w*. \w As|strong="H3068"\w* \w they|strong="H3068"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*, \w Jehoshaphat|strong="H3092"\w* \w stood|strong="H5975"\w* \w and|strong="H3063"\w* \w said|strong="H8085"\w*, “\w Listen|strong="H8085"\w* \w to|strong="H3318"\w* \w me|strong="H3318"\w*, \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w you|strong="H3318"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*! Believe \w in|strong="H3427"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w so|strong="H3318"\w* \w you|strong="H3318"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w established|strong="H5975"\w*! Believe \w his|strong="H3068"\w* \w prophets|strong="H5030"\w*, \w so|strong="H3318"\w* \w you|strong="H3318"\w* \w will|strong="H3068"\w* \w prosper|strong="H6743"\w*.” +\p +\v 21 \w When|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H3068"\w* \w taken|strong="H3289"\w* \w counsel|strong="H3289"\w* \w with|strong="H3068"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*, \w he|strong="H3588"\w* \w appointed|strong="H5975"\w* \w those|strong="H3318"\w* \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w to|strong="H3318"\w* \w sing|strong="H7891"\w* \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w give|strong="H3034"\w* \w praise|strong="H1984"\w* \w in|strong="H3068"\w* \w holy|strong="H6944"\w* \w array|strong="H1927"\w* \w as|strong="H3068"\w* \w they|strong="H3588"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w army|strong="H5971"\w*, \w and|strong="H3068"\w* say, “\w Give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w*, \w for|strong="H3588"\w* \w his|strong="H3068"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*.” +\v 22 \w When|strong="H6256"\w* \w they|strong="H3068"\w* \w began|strong="H2490"\w* \w to|strong="H3068"\w* \w sing|strong="H5414"\w* \w and|strong="H1121"\w* \w to|strong="H3068"\w* \w praise|strong="H8416"\w*, \w Yahweh|strong="H3068"\w* \w set|strong="H5414"\w* ambushers \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, \w Moab|strong="H4124"\w*, \w and|strong="H1121"\w* \w Mount|strong="H2022"\w* \w Seir|strong="H8165"\w*, \w who|strong="H3068"\w* \w had|strong="H3068"\w* \w come|strong="H3063"\w* \w against|strong="H5921"\w* \w Judah|strong="H3063"\w*; \w and|strong="H1121"\w* \w they|strong="H3068"\w* \w were|strong="H1121"\w* \w struck|strong="H5062"\w*. +\v 23 \w For|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w and|strong="H1121"\w* \w Moab|strong="H4124"\w* \w stood|strong="H5975"\w* \w up|strong="H5975"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1121"\w* \w Mount|strong="H2022"\w* \w Seir|strong="H8165"\w* \w to|strong="H5921"\w* \w utterly|strong="H2763"\w* kill \w and|strong="H1121"\w* \w destroy|strong="H8045"\w* \w them|strong="H5921"\w*. \w When|strong="H3615"\w* \w they|strong="H5921"\w* \w had|strong="H1121"\w* \w finished|strong="H3615"\w* \w the|strong="H5921"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1121"\w* \w Seir|strong="H8165"\w*, everyone \w helped|strong="H5826"\w* \w to|strong="H5921"\w* \w destroy|strong="H8045"\w* each \w other|strong="H7453"\w*. +\p +\v 24 \w When|strong="H5307"\w* \w Judah|strong="H3063"\w* \w came|strong="H3063"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* place \w overlooking|strong="H2005"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*, \w they|strong="H5921"\w* \w looked|strong="H6437"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w multitude|strong="H1995"\w*; \w and|strong="H3063"\w* \w behold|strong="H2005"\w*, \w they|strong="H5921"\w* \w were|strong="H3063"\w* \w dead|strong="H6297"\w* \w bodies|strong="H6297"\w* \w fallen|strong="H5307"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* earth, \w and|strong="H3063"\w* there \w were|strong="H3063"\w* none \w who|strong="H3063"\w* \w escaped|strong="H6413"\w*. +\v 25 \w When|strong="H3588"\w* \w Jehoshaphat|strong="H3092"\w* \w and|strong="H3117"\w* \w his|strong="H1961"\w* \w people|strong="H5971"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w take|strong="H1961"\w* \w their|strong="H3588"\w* \w plunder|strong="H7998"\w*, \w they|strong="H3588"\w* \w found|strong="H4672"\w* \w among|strong="H4672"\w* \w them|strong="H4672"\w* \w in|strong="H3117"\w* \w abundance|strong="H7230"\w* \w both|strong="H7230"\w* \w riches|strong="H7399"\w* \w and|strong="H3117"\w* \w dead|strong="H6297"\w* \w bodies|strong="H6297"\w* \w with|strong="H3117"\w* \w precious|strong="H2530"\w* \w jewels|strong="H3627"\w*, \w which|strong="H1931"\w* \w they|strong="H3588"\w* \w stripped|strong="H5337"\w* \w off|strong="H5337"\w* \w for|strong="H3588"\w* themselves, \w more|strong="H7227"\w* \w than|strong="H3588"\w* \w they|strong="H3588"\w* \w could|strong="H5337"\w* \w carry|strong="H4853"\w* \w away|strong="H5337"\w*. \w They|strong="H3588"\w* \w took|strong="H1961"\w* \w plunder|strong="H7998"\w* \w for|strong="H3588"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*, \w it|strong="H1931"\w* \w was|strong="H1961"\w* \w so|strong="H1961"\w* \w much|strong="H7227"\w*. +\v 26 \w On|strong="H5921"\w* \w the|strong="H5921"\w* \w fourth|strong="H7243"\w* \w day|strong="H3117"\w*, \w they|strong="H3588"\w* \w assembled|strong="H6950"\w* \w themselves|strong="H7121"\w* \w in|strong="H5921"\w* \w Beracah|strong="H1294"\w*\f + \fr 20:26 \ft “Beracah” means “blessing”.\f* \w Valley|strong="H6010"\w*, \w for|strong="H3588"\w* \w there|strong="H8033"\w* \w they|strong="H3588"\w* \w blessed|strong="H1288"\w* \w Yahweh|strong="H3068"\w*. \w Therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w that|strong="H3588"\w* \w place|strong="H4725"\w* \w was|strong="H3068"\w* \w called|strong="H7121"\w* “\w Beracah|strong="H1294"\w* \w Valley|strong="H6010"\w*” \w to|strong="H5704"\w* \w this|strong="H3651"\w* \w day|strong="H3117"\w*. +\v 27 \w Then|strong="H7725"\w* \w they|strong="H3588"\w* \w returned|strong="H7725"\w*, \w every|strong="H3605"\w* \w man|strong="H3605"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w*, \w with|strong="H3068"\w* \w Jehoshaphat|strong="H3092"\w* \w in|strong="H3068"\w* front \w of|strong="H3068"\w* \w them|strong="H7725"\w*, \w to|strong="H7725"\w* \w go|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w Jerusalem|strong="H3389"\w* \w with|strong="H3068"\w* \w joy|strong="H8057"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w made|strong="H7725"\w* \w them|strong="H7725"\w* \w to|strong="H7725"\w* \w rejoice|strong="H8055"\w* \w over|strong="H7218"\w* \w their|strong="H3605"\w* \w enemies|strong="H3389"\w*. +\v 28 \w They|strong="H3068"\w* \w came|strong="H3068"\w* \w to|strong="H3068"\w* \w Jerusalem|strong="H3389"\w* \w with|strong="H1004"\w* stringed instruments, \w harps|strong="H3658"\w*, \w and|strong="H3068"\w* \w trumpets|strong="H2689"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 29 \w The|strong="H3605"\w* \w fear|strong="H6343"\w* \w of|strong="H3068"\w* \w God|strong="H3068"\w* \w was|strong="H3068"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* countries \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w fought|strong="H3898"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* enemies \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\v 30 So \w the|strong="H5439"\w* \w realm|strong="H4438"\w* \w of|strong="H4438"\w* \w Jehoshaphat|strong="H3092"\w* \w was|strong="H4438"\w* \w quiet|strong="H8252"\w*, \w for|strong="H8252"\w* \w his|strong="H3092"\w* God \w gave|strong="H5117"\w* \w him|strong="H5117"\w* \w rest|strong="H5117"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*. +\p +\v 31 \w So|strong="H5921"\w* \w Jehoshaphat|strong="H3092"\w* \w reigned|strong="H4427"\w* \w over|strong="H5921"\w* \w Judah|strong="H3063"\w*. \w He|strong="H2568"\w* \w was|strong="H8034"\w* \w thirty-five|strong="H7970"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H2568"\w* \w began|strong="H3063"\w* \w to|strong="H5921"\w* \w reign|strong="H4427"\w*. \w He|strong="H2568"\w* \w reigned|strong="H4427"\w* \w twenty-five|strong="H6242"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H5921"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Azubah|strong="H5806"\w* \w the|strong="H5921"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Shilhi|strong="H7977"\w*. +\v 32 \w He|strong="H6213"\w* \w walked|strong="H3212"\w* \w in|strong="H3068"\w* \w the|strong="H6213"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* Asa \w his|strong="H3068"\w* father, \w and|strong="H3068"\w* didn’t \w turn|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H4480"\w* \w it|strong="H6213"\w*, \w doing|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w right|strong="H3477"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*. +\v 33 However \w the|strong="H5493"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w were|strong="H5971"\w* \w not|strong="H3808"\w* \w taken|strong="H5493"\w* \w away|strong="H5493"\w*, \w and|strong="H5971"\w* \w the|strong="H5493"\w* \w people|strong="H5971"\w* \w had|strong="H5971"\w* \w still|strong="H5750"\w* \w not|strong="H3808"\w* \w set|strong="H3559"\w* \w their|strong="H3559"\w* \w hearts|strong="H3824"\w* \w on|strong="H3824"\w* \w the|strong="H5493"\w* \w God|strong="H3808"\w* \w of|strong="H5971"\w* \w their|strong="H3559"\w* fathers. +\p +\v 34 \w Now|strong="H2005"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w acts|strong="H1697"\w* \w of|strong="H1121"\w* \w Jehoshaphat|strong="H3092"\w*, \w first|strong="H7223"\w* \w and|strong="H1121"\w* last, \w behold|strong="H2005"\w*, \w they|strong="H5921"\w* \w are|strong="H1121"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* history \w of|strong="H1121"\w* \w Jehu|strong="H3058"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hanani|strong="H2607"\w*, \w which|strong="H1697"\w* \w is|strong="H1697"\w* \w included|strong="H5927"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\p +\v 35 After \w this|strong="H6213"\w*, \w Jehoshaphat|strong="H3092"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w joined|strong="H2266"\w* \w himself|strong="H1931"\w* \w with|strong="H5973"\w* Ahaziah \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. \w The|strong="H6213"\w* \w same|strong="H1931"\w* \w did|strong="H6213"\w* \w very|strong="H6213"\w* \w wickedly|strong="H7561"\w*. +\v 36 \w He|strong="H6213"\w* \w joined|strong="H2266"\w* \w himself|strong="H6213"\w* \w with|strong="H5973"\w* \w him|strong="H6213"\w* \w to|strong="H3212"\w* \w make|strong="H6213"\w* ships \w to|strong="H3212"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w Tarshish|strong="H8659"\w*. \w They|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* ships \w in|strong="H6213"\w* Ezion Geber. +\v 37 \w Then|strong="H3068"\w* Eliezer \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Dodavahu|strong="H1735"\w* \w of|strong="H1121"\w* \w Mareshah|strong="H4762"\w* \w prophesied|strong="H5012"\w* \w against|strong="H5921"\w* \w Jehoshaphat|strong="H3092"\w*, saying, “\w Because|strong="H5921"\w* \w you|strong="H5921"\w* \w have|strong="H3068"\w* \w joined|strong="H2266"\w* \w yourself|strong="H5921"\w* \w with|strong="H5973"\w* Ahaziah, \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w destroyed|strong="H7665"\w* \w your|strong="H3068"\w* \w works|strong="H4639"\w*.” \w The|strong="H5921"\w* ships \w were|strong="H1121"\w* wrecked, \w so|strong="H3808"\w* \w that|strong="H3068"\w* \w they|strong="H3068"\w* \w were|strong="H1121"\w* \w not|strong="H3808"\w* \w able|strong="H6113"\w* \w to|strong="H3068"\w* \w go|strong="H3212"\w* \w to|strong="H3068"\w* \w Tarshish|strong="H8659"\w*. +\c 21 +\p +\v 1 \w Jehoshaphat|strong="H3092"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* fathers, \w and|strong="H1121"\w* \w was|strong="H1732"\w* \w buried|strong="H6912"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* fathers \w in|strong="H6912"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*; \w and|strong="H1121"\w* \w Jehoram|strong="H3088"\w* \w his|strong="H1732"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H6912"\w* \w his|strong="H1732"\w* \w place|strong="H8478"\w*. +\v 2 \w He|strong="H3605"\w* \w had|strong="H3478"\w* \w brothers|strong="H1121"\w*, \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoshaphat|strong="H3092"\w*: \w Azariah|strong="H5838"\w*, \w Jehiel|strong="H3171"\w*, \w Zechariah|strong="H2148"\w*, \w Azariah|strong="H5838"\w*, \w Michael|strong="H4317"\w*, \w and|strong="H1121"\w* \w Shephatiah|strong="H8203"\w*. \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w were|strong="H3478"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoshaphat|strong="H3092"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 3 \w Their|strong="H5414"\w* father \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w great|strong="H7227"\w* \w gifts|strong="H4979"\w* \w of|strong="H5892"\w* \w silver|strong="H3701"\w*, \w of|strong="H5892"\w* \w gold|strong="H2091"\w*, \w and|strong="H3063"\w* \w of|strong="H5892"\w* \w precious|strong="H4030"\w* \w things|strong="H4030"\w*, \w with|strong="H5973"\w* \w fortified|strong="H4694"\w* \w cities|strong="H5892"\w* \w in|strong="H5892"\w* \w Judah|strong="H3063"\w*; \w but|strong="H3588"\w* \w he|strong="H1931"\w* \w gave|strong="H5414"\w* \w the|strong="H3588"\w* \w kingdom|strong="H4467"\w* \w to|strong="H5414"\w* \w Jehoram|strong="H3088"\w*, \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w the|strong="H3588"\w* \w firstborn|strong="H1060"\w*. +\v 4 \w Now|strong="H1571"\w* \w when|strong="H2026"\w* \w Jehoram|strong="H3088"\w* \w had|strong="H3478"\w* \w risen|strong="H6965"\w* \w up|strong="H6965"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w kingdom|strong="H4467"\w* \w of|strong="H8269"\w* \w his|strong="H3605"\w* father, \w and|strong="H6965"\w* \w had|strong="H3478"\w* \w strengthened|strong="H2388"\w* \w himself|strong="H2388"\w*, \w he|strong="H3605"\w* \w killed|strong="H2026"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* brothers \w with|strong="H5921"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w and|strong="H6965"\w* \w also|strong="H1571"\w* \w some|strong="H3605"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w Israel|strong="H3478"\w*. +\v 5 \w Jehoram|strong="H3088"\w* \w was|strong="H1121"\w* \w thirty-two|strong="H7970"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H8147"\w* began \w to|strong="H3389"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H8147"\w* \w reigned|strong="H4427"\w* \w eight|strong="H8083"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. +\v 6 \w He|strong="H3588"\w* \w walked|strong="H3212"\w* \w in|strong="H3478"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w as|strong="H1961"\w* \w did|strong="H6213"\w* Ahab’s \w house|strong="H1004"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H3068"\w* Ahab’s \w daughter|strong="H1323"\w* \w as|strong="H1961"\w* \w his|strong="H3068"\w* wife. \w He|strong="H3588"\w* \w did|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*. +\v 7 However \w Yahweh|strong="H3068"\w* \w would|strong="H3068"\w* \w not|strong="H3808"\w* \w destroy|strong="H7843"\w* \w David|strong="H1732"\w*’s \w house|strong="H1004"\w*, \w because|strong="H4616"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w covenant|strong="H1285"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w had|strong="H3068"\w* \w made|strong="H3772"\w* \w with|strong="H1004"\w* \w David|strong="H1732"\w*, \w and|strong="H1121"\w* \w as|strong="H3117"\w* \w he|strong="H3117"\w* \w promised|strong="H5414"\w* \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w a|strong="H3068"\w* \w lamp|strong="H5216"\w* \w to|strong="H3068"\w* \w him|strong="H5414"\w* \w and|strong="H1121"\w* \w to|strong="H3068"\w* \w his|strong="H3605"\w* \w children|strong="H1121"\w* \w always|strong="H3605"\w*. +\p +\v 8 \w In|strong="H5921"\w* \w his|strong="H5921"\w* \w days|strong="H3117"\w* Edom \w revolted|strong="H6586"\w* \w from|strong="H5921"\w* \w under|strong="H8478"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w made|strong="H4427"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w themselves|strong="H5921"\w*. +\v 9 \w Then|strong="H1961"\w* \w Jehoram|strong="H3088"\w* \w went|strong="H5674"\w* \w there|strong="H1961"\w* \w with|strong="H5973"\w* \w his|strong="H3605"\w* \w captains|strong="H8269"\w* \w and|strong="H6965"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w chariots|strong="H7393"\w* \w with|strong="H5973"\w* \w him|strong="H5221"\w*. \w He|strong="H3605"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w by|strong="H5674"\w* \w night|strong="H3915"\w* \w and|strong="H6965"\w* \w struck|strong="H5221"\w* \w the|strong="H3605"\w* Edomites \w who|strong="H3605"\w* \w surrounded|strong="H5437"\w* \w him|strong="H5221"\w*, \w along|strong="H5973"\w* \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* \w chariots|strong="H7393"\w*. +\v 10 \w So|strong="H2088"\w* Edom \w has|strong="H3068"\w* \w been|strong="H6586"\w* \w in|strong="H3068"\w* \w revolt|strong="H6586"\w* \w from|strong="H3027"\w* \w under|strong="H8478"\w* \w the|strong="H3588"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. \w Then|strong="H2088"\w* \w Libnah|strong="H3841"\w* \w revolted|strong="H6586"\w* \w at|strong="H3068"\w* \w the|strong="H3588"\w* \w same|strong="H1931"\w* \w time|strong="H6256"\w* \w from|strong="H3027"\w* \w under|strong="H8478"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w*, \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w had|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3588"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* fathers. +\p +\v 11 \w Moreover|strong="H1571"\w* \w he|strong="H1931"\w* \w made|strong="H6213"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w in|strong="H3427"\w* \w the|strong="H6213"\w* \w mountains|strong="H2022"\w* \w of|strong="H3427"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Jerusalem|strong="H3389"\w* \w play|strong="H2181"\w* \w the|strong="H6213"\w* \w prostitute|strong="H2181"\w*, \w and|strong="H3063"\w* \w led|strong="H5080"\w* \w Judah|strong="H3063"\w* \w astray|strong="H5080"\w*. +\v 12 \w A|strong="H3068"\w* \w letter|strong="H4385"\w* \w came|strong="H1980"\w* \w to|strong="H1980"\w* \w him|strong="H8478"\w* \w from|strong="H1980"\w* Elijah \w the|strong="H3541"\w* \w prophet|strong="H5030"\w*, saying, “\w Yahweh|strong="H3068"\w*, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w David|strong="H1732"\w* \w your|strong="H3068"\w* father, \w says|strong="H3541"\w*, ‘\w Because|strong="H8478"\w* \w you|strong="H3808"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w walked|strong="H1980"\w* \w in|strong="H1980"\w* \w the|strong="H3541"\w* \w ways|strong="H1870"\w* \w of|strong="H4428"\w* \w Jehoshaphat|strong="H3092"\w* \w your|strong="H3068"\w* father, \w nor|strong="H3808"\w* \w in|strong="H1980"\w* \w the|strong="H3541"\w* \w ways|strong="H1870"\w* \w of|strong="H4428"\w* Asa \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, +\v 13 \w but|strong="H1571"\w* \w have|strong="H1571"\w* \w walked|strong="H3212"\w* \w in|strong="H3427"\w* \w the|strong="H4480"\w* \w way|strong="H1870"\w* \w of|strong="H4428"\w* \w the|strong="H4480"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3063"\w* \w have|strong="H1571"\w* \w made|strong="H3478"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w the|strong="H4480"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H3478"\w* \w play|strong="H2181"\w* \w the|strong="H4480"\w* \w prostitute|strong="H2181"\w* \w like|strong="H1004"\w* Ahab’s \w house|strong="H1004"\w* \w did|strong="H3478"\w*, \w and|strong="H3063"\w* \w also|strong="H1571"\w* \w have|strong="H1571"\w* \w slain|strong="H2026"\w* \w your|strong="H4480"\w* brothers \w of|strong="H4428"\w* \w your|strong="H4480"\w* father’s \w house|strong="H1004"\w*, \w who|strong="H3478"\w* \w were|strong="H3478"\w* \w better|strong="H2896"\w* \w than|strong="H4480"\w* yourself, +\v 14 \w behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w strike|strong="H5062"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w plague|strong="H4046"\w*, \w including|strong="H3605"\w* \w your|strong="H3068"\w* \w children|strong="H1121"\w*, \w your|strong="H3068"\w* wives, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w possessions|strong="H7399"\w*; +\v 15 \w and|strong="H3117"\w* \w you|strong="H5921"\w* \w will|strong="H7227"\w* \w have|strong="H3117"\w* \w great|strong="H7227"\w* \w sickness|strong="H2483"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w disease|strong="H2483"\w* \w of|strong="H3117"\w* \w your|strong="H5921"\w* \w bowels|strong="H4578"\w*, \w until|strong="H5704"\w* \w your|strong="H5921"\w* \w bowels|strong="H4578"\w* \w fall|strong="H4578"\w* \w out|strong="H3318"\w* \w by|strong="H5921"\w* \w reason|strong="H5921"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w sickness|strong="H2483"\w*, \w day|strong="H3117"\w* \w by|strong="H5921"\w* \w day|strong="H3117"\w*.’” +\p +\v 16 \w Yahweh|strong="H3068"\w* \w stirred|strong="H5782"\w* \w up|strong="H5782"\w* \w against|strong="H5921"\w* \w Jehoram|strong="H3088"\w* \w the|strong="H5921"\w* \w spirit|strong="H7307"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w Philistines|strong="H6430"\w* \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w Arabians|strong="H6163"\w* \w who|strong="H3068"\w* \w are|strong="H3027"\w* \w beside|strong="H5921"\w* \w the|strong="H5921"\w* \w Ethiopians|strong="H3569"\w*; +\v 17 \w and|strong="H1121"\w* \w they|strong="H3588"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5927"\w* \w Judah|strong="H3063"\w*, \w broke|strong="H1234"\w* \w into|strong="H5927"\w* \w it|strong="H3588"\w*, \w and|strong="H1121"\w* \w carried|strong="H7617"\w* \w away|strong="H7617"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w possessions|strong="H7399"\w* \w that|strong="H3588"\w* \w were|strong="H1121"\w* \w found|strong="H4672"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w including|strong="H3605"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H3605"\w* wives, \w so|strong="H5927"\w* \w that|strong="H3588"\w* \w there|strong="H5927"\w* \w was|strong="H4428"\w* \w no|strong="H3808"\w* \w son|strong="H1121"\w* \w left|strong="H7604"\w* \w to|strong="H5927"\w* \w him|strong="H4672"\w* \w except|strong="H3588"\w* \w Jehoahaz|strong="H3059"\w*, \w the|strong="H3605"\w* \w youngest|strong="H6996"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w*. +\p +\v 18 After \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w Yahweh|strong="H3068"\w* \w struck|strong="H5062"\w* \w him|strong="H3605"\w* \w in|strong="H3068"\w* \w his|strong="H3605"\w* \w bowels|strong="H4578"\w* \w with|strong="H3068"\w* \w an|strong="H3068"\w* incurable \w disease|strong="H2483"\w*. +\v 19 \w In|strong="H6213"\w* \w process|strong="H7093"\w* \w of|strong="H3117"\w* \w time|strong="H6256"\w*, \w at|strong="H3117"\w* \w the|strong="H6213"\w* \w end|strong="H7093"\w* \w of|strong="H3117"\w* \w two|strong="H8147"\w* \w years|strong="H3117"\w*, \w his|strong="H1961"\w* \w bowels|strong="H4578"\w* \w fell|strong="H3318"\w* \w out|strong="H3318"\w* \w by|strong="H3117"\w* \w reason|strong="H5973"\w* \w of|strong="H3117"\w* \w his|strong="H1961"\w* \w sickness|strong="H2483"\w*, \w and|strong="H3117"\w* \w he|strong="H3117"\w* \w died|strong="H4191"\w* \w of|strong="H3117"\w* \w severe|strong="H7451"\w* \w diseases|strong="H8463"\w*. \w His|strong="H1961"\w* \w people|strong="H5971"\w* \w made|strong="H6213"\w* \w no|strong="H3808"\w* \w burning|strong="H8316"\w* \w for|strong="H6213"\w* \w him|strong="H6213"\w*, \w like|strong="H1961"\w* \w the|strong="H6213"\w* \w burning|strong="H8316"\w* \w of|strong="H3117"\w* \w his|strong="H1961"\w* fathers. +\v 20 \w He|strong="H1732"\w* \w was|strong="H1961"\w* \w thirty-two|strong="H7970"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1961"\w* \w he|strong="H1732"\w* \w began|strong="H1961"\w* \w to|strong="H3212"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H1732"\w* \w reigned|strong="H4427"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w* \w eight|strong="H8083"\w* \w years|strong="H8141"\w*. \w He|strong="H1732"\w* \w departed|strong="H3212"\w* \w with|strong="H3389"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w*’s \w regret|strong="H2532"\w*. \w They|strong="H3808"\w* \w buried|strong="H6912"\w* \w him|strong="H4427"\w* \w in|strong="H8141"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*, \w but|strong="H3808"\w* \w not|strong="H3808"\w* \w in|strong="H8141"\w* \w the|strong="H1961"\w* \w tombs|strong="H6913"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w kings|strong="H4428"\w*. +\c 22 +\p +\v 1 \w The|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w* \w made|strong="H4427"\w* Ahaziah \w his|strong="H3605"\w* \w youngest|strong="H6996"\w* \w son|strong="H1121"\w* \w king|strong="H4428"\w* \w in|strong="H3427"\w* \w his|strong="H3605"\w* \w place|strong="H8478"\w*, \w because|strong="H3588"\w* \w the|strong="H3605"\w* \w band|strong="H1416"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w* \w who|strong="H3605"\w* \w came|strong="H3063"\w* \w with|strong="H3427"\w* \w the|strong="H3605"\w* \w Arabians|strong="H6163"\w* \w to|strong="H3389"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w had|strong="H4428"\w* \w slain|strong="H2026"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* oldest. \w So|strong="H3588"\w* Ahaziah \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoram|strong="H3088"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w reigned|strong="H4427"\w*. +\v 2 Ahaziah \w was|strong="H8034"\w* \w forty-two|strong="H8147"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H8147"\w* began \w to|strong="H3389"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H8147"\w* \w reigned|strong="H4427"\w* \w one|strong="H1121"\w* \w year|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H8147"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Athaliah|strong="H6271"\w* \w the|strong="H8034"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Omri|strong="H6018"\w*. +\v 3 \w He|strong="H1931"\w* \w also|strong="H1571"\w* \w walked|strong="H1980"\w* \w in|strong="H1980"\w* \w the|strong="H3588"\w* \w ways|strong="H1870"\w* \w of|strong="H1004"\w* Ahab’s \w house|strong="H1004"\w*, \w because|strong="H3588"\w* \w his|strong="H1961"\w* mother \w was|strong="H1961"\w* \w his|strong="H1961"\w* \w counselor|strong="H3289"\w* \w in|strong="H1980"\w* \w acting|strong="H1980"\w* \w wickedly|strong="H7561"\w*. +\v 4 \w He|strong="H3588"\w* \w did|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w as|strong="H1961"\w* \w did|strong="H6213"\w* Ahab’s \w house|strong="H1004"\w*, \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w were|strong="H1961"\w* \w his|strong="H3068"\w* \w counselors|strong="H3289"\w* \w after|strong="H1961"\w* \w the|strong="H3588"\w* \w death|strong="H4194"\w* \w of|strong="H1004"\w* \w his|strong="H3068"\w* father, \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w destruction|strong="H4889"\w*. +\v 5 \w He|strong="H5921"\w* \w also|strong="H1571"\w* \w followed|strong="H1980"\w* \w their|strong="H5921"\w* \w counsel|strong="H6098"\w*, \w and|strong="H1121"\w* \w went|strong="H1980"\w* \w with|strong="H1980"\w* \w Jehoram|strong="H3088"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahab \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w to|strong="H1980"\w* \w war|strong="H4421"\w* \w against|strong="H5921"\w* \w Hazael|strong="H2371"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Syria \w at|strong="H5921"\w* \w Ramoth|strong="H7433"\w* \w Gilead|strong="H1568"\w*; \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w Syrians|strong="H7421"\w* \w wounded|strong="H5221"\w* \w Joram|strong="H3141"\w*. +\v 6 \w He|strong="H1931"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w be|strong="H1121"\w* \w healed|strong="H7495"\w* \w in|strong="H4428"\w* \w Jezreel|strong="H3157"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w wounds|strong="H4347"\w* \w which|strong="H1931"\w* \w they|strong="H3588"\w* \w had|strong="H4428"\w* \w given|strong="H5221"\w* \w him|strong="H5221"\w* \w at|strong="H4428"\w* \w Ramah|strong="H7414"\w*, \w when|strong="H3588"\w* \w he|strong="H1931"\w* \w fought|strong="H3898"\w* \w against|strong="H3898"\w* \w Hazael|strong="H2371"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Syria. \w Azariah|strong="H5838"\w* \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoram|strong="H3088"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H7725"\w* \w see|strong="H7200"\w* \w Jehoram|strong="H3088"\w* \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahab \w in|strong="H4428"\w* \w Jezreel|strong="H3157"\w*, \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w sick|strong="H2470"\w*. +\p +\v 7 \w Now|strong="H1961"\w* \w the|strong="H3068"\w* \w destruction|strong="H8395"\w* \w of|strong="H1121"\w* Ahaziah \w was|strong="H3068"\w* \w of|strong="H1121"\w* \w God|strong="H3068"\w*, \w in|strong="H3068"\w* \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w went|strong="H3318"\w* \w to|strong="H3318"\w* \w Joram|strong="H3141"\w*; \w for|strong="H3068"\w* \w when|strong="H1961"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w* \w come|strong="H1961"\w*, \w he|strong="H3068"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w with|strong="H5973"\w* \w Jehoram|strong="H3088"\w* \w against|strong="H5973"\w* \w Jehu|strong="H3058"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nimshi|strong="H5250"\w*, whom \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w anointed|strong="H4886"\w* \w to|strong="H3318"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* Ahab’s \w house|strong="H1004"\w*. +\v 8 \w When|strong="H1961"\w* \w Jehu|strong="H3058"\w* \w was|strong="H1961"\w* \w executing|strong="H8199"\w* \w judgment|strong="H8199"\w* \w on|strong="H1961"\w* Ahab’s \w house|strong="H1004"\w*, \w he|strong="H1004"\w* \w found|strong="H4672"\w* \w the|strong="H8199"\w* \w princes|strong="H8269"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w and|strong="H1121"\w* \w the|strong="H8199"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H8199"\w* \w brothers|strong="H1121"\w* \w of|strong="H1121"\w* Ahaziah \w serving|strong="H8334"\w* Ahaziah, \w and|strong="H1121"\w* \w killed|strong="H2026"\w* \w them|strong="H4672"\w*. +\v 9 \w He|strong="H1931"\w* \w sought|strong="H1245"\w* Ahaziah, \w and|strong="H1121"\w* \w they|strong="H3588"\w* \w caught|strong="H3920"\w* \w him|strong="H4191"\w* (\w now|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H3068"\w* \w hiding|strong="H2244"\w* \w in|strong="H3068"\w* \w Samaria|strong="H8111"\w*), \w and|strong="H1121"\w* \w they|strong="H3588"\w* \w brought|strong="H3068"\w* \w him|strong="H4191"\w* \w to|strong="H4191"\w* \w Jehu|strong="H3058"\w* \w and|strong="H1121"\w* \w killed|strong="H4191"\w* \w him|strong="H4191"\w*; \w and|strong="H1121"\w* \w they|strong="H3588"\w* \w buried|strong="H6912"\w* \w him|strong="H4191"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* said, “\w He|strong="H1931"\w* \w is|strong="H3068"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoshaphat|strong="H3092"\w*, \w who|strong="H3605"\w* \w sought|strong="H1245"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H1004"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w heart|strong="H3824"\w*.” \w The|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* Ahaziah \w had|strong="H3068"\w* \w no|strong="H3605"\w* \w power|strong="H3581"\w* \w to|strong="H4191"\w* \w hold|strong="H1004"\w* \w the|strong="H3605"\w* \w kingdom|strong="H4467"\w*. +\p +\v 10 \w Now|strong="H3588"\w* \w when|strong="H3588"\w* \w Athaliah|strong="H6271"\w* \w the|strong="H3605"\w* mother \w of|strong="H1121"\w* Ahaziah \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w her|strong="H3605"\w* \w son|strong="H1121"\w* \w was|strong="H1004"\w* \w dead|strong="H4191"\w*, \w she|strong="H3588"\w* \w arose|strong="H6965"\w* \w and|strong="H1121"\w* \w destroyed|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w royal|strong="H4467"\w* \w offspring|strong="H2233"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*. +\v 11 \w But|strong="H3588"\w* \w Jehoshabeath|strong="H3090"\w*, \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w daughter|strong="H1323"\w*, \w took|strong="H3947"\w* \w Joash|strong="H3101"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahaziah, \w and|strong="H1121"\w* \w stealthily|strong="H1589"\w* rescued \w him|strong="H5414"\w* \w from|strong="H6440"\w* \w among|strong="H8432"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w sons|strong="H1121"\w* \w who|strong="H1931"\w* \w were|strong="H1961"\w* \w slain|strong="H4191"\w*, \w and|strong="H1121"\w* \w put|strong="H5414"\w* \w him|strong="H5414"\w* \w and|strong="H1121"\w* \w his|strong="H5414"\w* \w nurse|strong="H3243"\w* \w in|strong="H4428"\w* \w the|strong="H6440"\w* \w bedroom|strong="H2315"\w*. \w So|strong="H3947"\w* \w Jehoshabeath|strong="H3090"\w*, \w the|strong="H6440"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w King|strong="H4428"\w* \w Jehoram|strong="H3088"\w*, \w the|strong="H6440"\w* wife \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w* (\w for|strong="H3588"\w* \w she|strong="H1931"\w* \w was|strong="H1961"\w* \w the|strong="H6440"\w* sister \w of|strong="H1121"\w* Ahaziah), \w hid|strong="H5641"\w* \w him|strong="H5414"\w* \w from|strong="H6440"\w* \w Athaliah|strong="H6271"\w*, \w so|strong="H3947"\w* \w that|strong="H3588"\w* \w she|strong="H1931"\w* didn’t \w kill|strong="H4191"\w* \w him|strong="H5414"\w*. +\v 12 \w He|strong="H1004"\w* \w was|strong="H1961"\w* \w with|strong="H1004"\w* \w them|strong="H5921"\w* \w hidden|strong="H2244"\w* \w in|strong="H8141"\w* God’s \w house|strong="H1004"\w* \w six|strong="H8337"\w* \w years|strong="H8141"\w* \w while|strong="H1961"\w* \w Athaliah|strong="H6271"\w* \w reigned|strong="H4427"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* land. +\c 23 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H3947"\w* \w seventh|strong="H7637"\w* \w year|strong="H8141"\w*, \w Jehoiada|strong="H3077"\w* \w strengthened|strong="H2388"\w* \w himself|strong="H2388"\w*, \w and|strong="H3967"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* \w hundreds|strong="H3967"\w*—\w Azariah|strong="H5838"\w* \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeroham|strong="H3395"\w*, \w Ishmael|strong="H3458"\w* \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehohanan|strong="H3076"\w*, \w Azariah|strong="H5838"\w* \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Obed|strong="H5744"\w*, \w Maaseiah|strong="H4641"\w* \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Adaiah|strong="H5718"\w*, \w and|strong="H3967"\w* Elishaphat \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zichri|strong="H2147"\w*—\w into|strong="H3947"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*. +\v 2 \w They|strong="H3478"\w* \w went|strong="H3478"\w* \w around|strong="H5437"\w* \w in|strong="H3478"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w gathered|strong="H6908"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w out|strong="H3605"\w* \w of|strong="H5892"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w the|strong="H3605"\w* \w heads|strong="H7218"\w* \w of|strong="H5892"\w* fathers’ \w households|strong="H3881"\w* \w of|strong="H5892"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3063"\w* \w they|strong="H3478"\w* \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*. +\v 3 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w in|strong="H5921"\w* \w God|strong="H3068"\w*’s \w house|strong="H1004"\w*. Jehoiada\f + \fr 23:3 \ft Hebrew \fq He\f* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H1992"\w*, “\w Behold|strong="H2009"\w*, \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w son|strong="H1121"\w* \w must|strong="H1121"\w* \w reign|strong="H4427"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w concerning|strong="H5921"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w*. +\v 4 \w This|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H6213"\w* \w thing|strong="H1697"\w* \w that|strong="H1697"\w* \w you|strong="H6213"\w* must \w do|strong="H6213"\w*: \w a|strong="H3068"\w* \w third|strong="H7992"\w* \w part|strong="H7992"\w* \w of|strong="H1697"\w* \w you|strong="H6213"\w*, \w who|strong="H3548"\w* come \w in|strong="H6213"\w* \w on|strong="H6213"\w* \w the|strong="H6213"\w* \w Sabbath|strong="H7676"\w*, \w of|strong="H1697"\w* \w the|strong="H6213"\w* \w priests|strong="H3548"\w* \w and|strong="H3548"\w* \w of|strong="H1697"\w* \w the|strong="H6213"\w* \w Levites|strong="H3881"\w*, \w shall|strong="H3548"\w* \w be|strong="H1697"\w* \w gatekeepers|strong="H7778"\w* \w of|strong="H1697"\w* \w the|strong="H6213"\w* \w thresholds|strong="H5592"\w*. +\v 5 \w A|strong="H3068"\w* \w third|strong="H7992"\w* \w part|strong="H7992"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w at|strong="H3068"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*; \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w third|strong="H7992"\w* \w part|strong="H7992"\w* \w at|strong="H3068"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w foundation|strong="H3247"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w courts|strong="H2691"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 6 \w But|strong="H3588"\w* let \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w come|strong="H5971"\w* into \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w except|strong="H3588"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H3068"\w* \w those|strong="H1992"\w* \w who|strong="H3605"\w* \w minister|strong="H8334"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*. \w They|strong="H1992"\w* \w shall|strong="H3548"\w* \w come|strong="H5971"\w* \w in|strong="H3068"\w*, \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w holy|strong="H6944"\w*, \w but|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w shall|strong="H3548"\w* \w follow|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w instructions|strong="H8104"\w*. +\v 7 \w The|strong="H3318"\w* \w Levites|strong="H3881"\w* \w shall|strong="H4428"\w* \w surround|strong="H5439"\w* \w the|strong="H3318"\w* \w king|strong="H4428"\w*, \w every|strong="H5439"\w* \w man|strong="H4191"\w* \w with|strong="H1004"\w* \w his|strong="H3027"\w* \w weapons|strong="H3627"\w* \w in|strong="H1004"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w*. \w Whoever|strong="H4191"\w* \w comes|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H3318"\w* \w house|strong="H1004"\w*, \w let|strong="H1961"\w* \w him|strong="H3027"\w* \w be|strong="H1961"\w* \w slain|strong="H4191"\w*. \w Be|strong="H1961"\w* \w with|strong="H1004"\w* \w the|strong="H3318"\w* \w king|strong="H4428"\w* \w when|strong="H1961"\w* \w he|strong="H1004"\w* \w comes|strong="H3318"\w* \w in|strong="H1004"\w* \w and|strong="H4428"\w* \w when|strong="H1961"\w* \w he|strong="H1004"\w* \w goes|strong="H3318"\w* \w out|strong="H3318"\w*.” +\p +\v 8 \w So|strong="H6213"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w Judah|strong="H3063"\w* \w did|strong="H6213"\w* according \w to|strong="H3318"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w Jehoiada|strong="H3077"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w commanded|strong="H6680"\w*. \w They|strong="H3588"\w* \w each|strong="H3605"\w* \w took|strong="H3947"\w* \w his|strong="H3605"\w* \w men|strong="H6213"\w*, \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H3881"\w* \w to|strong="H3318"\w* \w come|strong="H3318"\w* \w in|strong="H6213"\w* \w on|strong="H3318"\w* \w the|strong="H3605"\w* \w Sabbath|strong="H7676"\w*, \w with|strong="H5973"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H3881"\w* \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w on|strong="H3318"\w* \w the|strong="H3605"\w* \w Sabbath|strong="H7676"\w*, \w for|strong="H3588"\w* \w Jehoiada|strong="H3077"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w* didn’t \w dismiss|strong="H6362"\w* \w the|strong="H3605"\w* shift. +\v 9 \w Jehoiada|strong="H3077"\w* \w the|strong="H5414"\w* \w priest|strong="H3548"\w* \w delivered|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w captains|strong="H8269"\w* \w of|strong="H4428"\w* \w hundreds|strong="H3967"\w* \w the|strong="H5414"\w* \w spears|strong="H2595"\w*, \w bucklers|strong="H4043"\w*, \w and|strong="H3967"\w* \w shields|strong="H4043"\w* \w that|strong="H5414"\w* \w had|strong="H1732"\w* been \w king|strong="H4428"\w* \w David|strong="H1732"\w*’s, \w which|strong="H1004"\w* \w were|strong="H1732"\w* \w in|strong="H1004"\w* \w God|strong="H5414"\w*’s \w house|strong="H1004"\w*. +\v 10 \w He|strong="H5704"\w* \w set|strong="H5975"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w every|strong="H3605"\w* \w man|strong="H3605"\w* \w with|strong="H1004"\w* \w his|strong="H3605"\w* \w weapon|strong="H7973"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*, \w from|strong="H5921"\w* \w the|strong="H3605"\w* \w right|strong="H3233"\w* \w side|strong="H3802"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w left|strong="H8042"\w* \w side|strong="H3802"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*, \w near|strong="H5921"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*, \w around|strong="H5439"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. +\v 11 \w Then|strong="H3318"\w* \w they|strong="H5921"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w son|strong="H1121"\w*, \w put|strong="H5414"\w* \w the|strong="H5921"\w* \w crown|strong="H5145"\w* \w on|strong="H5921"\w* \w him|strong="H5414"\w*, \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w the|strong="H5921"\w* covenant, \w and|strong="H1121"\w* \w made|strong="H5414"\w* \w him|strong="H5414"\w* \w king|strong="H4428"\w*. \w Jehoiada|strong="H3077"\w* \w and|strong="H1121"\w* \w his|strong="H5414"\w* \w sons|strong="H1121"\w* \w anointed|strong="H4886"\w* \w him|strong="H5414"\w*, \w and|strong="H1121"\w* \w they|strong="H5921"\w* \w said|strong="H3318"\w*, “\w Long|strong="H5921"\w* \w live|strong="H2421"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*!” +\p +\v 12 \w When|strong="H8085"\w* \w Athaliah|strong="H6271"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w noise|strong="H6963"\w* \w of|strong="H4428"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w* \w running|strong="H7323"\w* \w and|strong="H3068"\w* \w praising|strong="H1984"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w*, she \w came|strong="H3068"\w* \w to|strong="H3068"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w* into \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 13 \w Then|strong="H2009"\w* \w she|strong="H5921"\w* \w looked|strong="H7200"\w*, \w and|strong="H4428"\w* \w behold|strong="H2009"\w*, \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w stood|strong="H5975"\w* \w by|strong="H5921"\w* \w his|strong="H3605"\w* \w pillar|strong="H5982"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w entrance|strong="H3996"\w*, \w with|strong="H5921"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w trumpeters|strong="H2689"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* land \w rejoiced|strong="H8055"\w* \w and|strong="H4428"\w* \w blew|strong="H8628"\w* \w trumpets|strong="H2689"\w*. \w The|strong="H3605"\w* \w singers|strong="H7891"\w* \w also|strong="H4428"\w* played \w musical|strong="H7892"\w* \w instruments|strong="H3627"\w*, \w and|strong="H4428"\w* led \w the|strong="H3605"\w* \w singing|strong="H7891"\w* \w of|strong="H4428"\w* \w praise|strong="H1984"\w*. \w Then|strong="H2009"\w* \w Athaliah|strong="H6271"\w* \w tore|strong="H7167"\w* \w her|strong="H3605"\w* clothes, \w and|strong="H4428"\w* said, “\w Treason|strong="H7195"\w*! \w treason|strong="H7195"\w*!” +\p +\v 14 \w Jehoiada|strong="H3077"\w* \w the|strong="H3588"\w* \w priest|strong="H3548"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w the|strong="H3588"\w* \w captains|strong="H8269"\w* \w of|strong="H1004"\w* \w hundreds|strong="H3967"\w* \w who|strong="H3068"\w* \w were|strong="H8269"\w* \w set|strong="H6485"\w* \w over|strong="H8269"\w* \w the|strong="H3588"\w* \w army|strong="H2428"\w*, \w and|strong="H3967"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w them|strong="H3318"\w*, “\w Bring|strong="H3318"\w* \w her|strong="H3318"\w* \w out|strong="H3318"\w* between \w the|strong="H3588"\w* \w ranks|strong="H7713"\w*; \w and|strong="H3967"\w* \w whoever|strong="H4191"\w* follows \w her|strong="H3318"\w*, \w let|strong="H6485"\w* \w him|strong="H3318"\w* \w be|strong="H4191"\w* \w slain|strong="H4191"\w* \w with|strong="H1004"\w* \w the|strong="H3588"\w* \w sword|strong="H2719"\w*.” \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w priest|strong="H3548"\w* \w said|strong="H3318"\w*, “Don’t \w kill|strong="H4191"\w* \w her|strong="H3318"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*.” +\v 15 \w So|strong="H4191"\w* \w they|strong="H8033"\w* \w made|strong="H7760"\w* way \w for|strong="H3027"\w* \w her|strong="H7760"\w*. She \w went|strong="H4428"\w* \w to|strong="H4191"\w* \w the|strong="H7760"\w* \w entrance|strong="H3996"\w* \w of|strong="H4428"\w* \w the|strong="H7760"\w* \w horse|strong="H5483"\w* \w gate|strong="H8179"\w* \w to|strong="H4191"\w* \w the|strong="H7760"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*; \w and|strong="H4428"\w* \w they|strong="H8033"\w* \w killed|strong="H4191"\w* \w her|strong="H7760"\w* \w there|strong="H8033"\w*. +\p +\v 16 \w Jehoiada|strong="H3077"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* between \w himself|strong="H3068"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w that|strong="H5971"\w* \w they|strong="H3068"\w* \w should|strong="H3068"\w* \w be|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w people|strong="H5971"\w*. +\v 17 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w went|strong="H5971"\w* \w to|strong="H6440"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Baal|strong="H1168"\w*, \w broke|strong="H7665"\w* \w it|strong="H6440"\w* \w down|strong="H5422"\w*, \w broke|strong="H7665"\w* \w his|strong="H3605"\w* \w altars|strong="H4196"\w* \w and|strong="H1004"\w* \w his|strong="H3605"\w* \w images|strong="H6754"\w* \w in|strong="H1004"\w* \w pieces|strong="H7665"\w*, \w and|strong="H1004"\w* \w killed|strong="H2026"\w* \w Mattan|strong="H4977"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w of|strong="H1004"\w* \w Baal|strong="H1168"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w altars|strong="H4196"\w*. +\v 18 \w Jehoiada|strong="H3077"\w* \w appointed|strong="H7760"\w* \w the|strong="H5921"\w* \w officers|strong="H6486"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w under|strong="H5921"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w Levitical|strong="H3881"\w* \w priests|strong="H3548"\w*, whom \w David|strong="H1732"\w* \w had|strong="H3068"\w* \w distributed|strong="H2505"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w to|strong="H3068"\w* \w offer|strong="H5927"\w* \w the|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*, \w as|strong="H3068"\w* \w it|strong="H7760"\w* \w is|strong="H3068"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w law|strong="H8451"\w* \w of|strong="H1004"\w* \w Moses|strong="H4872"\w*, \w with|strong="H1004"\w* \w rejoicing|strong="H8057"\w* \w and|strong="H4872"\w* \w with|strong="H1004"\w* \w singing|strong="H7892"\w*, \w as|strong="H3068"\w* \w David|strong="H1732"\w* \w had|strong="H3068"\w* ordered. +\v 19 \w He|strong="H3068"\w* \w set|strong="H5975"\w* \w the|strong="H3605"\w* \w gatekeepers|strong="H7778"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w gates|strong="H8179"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w that|strong="H3605"\w* \w no|strong="H3808"\w* \w one|strong="H3605"\w* \w who|strong="H3605"\w* \w was|strong="H3068"\w* \w unclean|strong="H2931"\w* \w in|strong="H5921"\w* \w anything|strong="H3605"\w* \w should|strong="H3068"\w* \w enter|strong="H5975"\w* \w in|strong="H5921"\w*. +\v 20 \w He|strong="H3068"\w* \w took|strong="H3947"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H4428"\w* \w hundreds|strong="H3967"\w*, \w the|strong="H3605"\w* nobles, \w the|strong="H3605"\w* \w governors|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w and|strong="H3967"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* land, \w and|strong="H3967"\w* \w brought|strong="H3947"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w down|strong="H3381"\w* \w from|strong="H3381"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. \w They|strong="H3068"\w* \w came|strong="H3381"\w* \w through|strong="H8432"\w* \w the|strong="H3605"\w* \w upper|strong="H5945"\w* \w gate|strong="H8179"\w* \w to|strong="H3381"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3967"\w* \w set|strong="H3427"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w throne|strong="H3678"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kingdom|strong="H4467"\w*. +\v 21 \w So|strong="H4191"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* land \w rejoiced|strong="H8055"\w*, \w and|strong="H5971"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w was|strong="H5892"\w* \w quiet|strong="H8252"\w*. \w They|strong="H5971"\w* \w had|strong="H5971"\w* \w slain|strong="H4191"\w* \w Athaliah|strong="H6271"\w* \w with|strong="H5971"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*. +\c 24 +\p +\v 1 \w Joash|strong="H3101"\w* \w was|strong="H8034"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H3389"\w* began \w to|strong="H3389"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H3389"\w* \w reigned|strong="H4427"\w* forty \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H3101"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Zibiah|strong="H6645"\w*, \w of|strong="H1121"\w* Beersheba. +\v 2 \w Joash|strong="H3101"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w right|strong="H3477"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w Jehoiada|strong="H3077"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w*. +\v 3 \w Jehoiada|strong="H3077"\w* \w took|strong="H5375"\w* \w for|strong="H1121"\w* \w him|strong="H3205"\w* \w two|strong="H8147"\w* wives, \w and|strong="H1121"\w* \w he|strong="H8147"\w* \w became|strong="H3205"\w* \w the|strong="H5375"\w* \w father|strong="H3205"\w* \w of|strong="H1121"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w daughters|strong="H1323"\w*. +\p +\v 4 \w After|strong="H1961"\w* \w this|strong="H3068"\w*, \w Joash|strong="H3101"\w* intended \w to|strong="H3068"\w* \w restore|strong="H2318"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 5 \w He|strong="H3605"\w* \w gathered|strong="H6908"\w* \w together|strong="H6908"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H3063"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*, \w and|strong="H3063"\w* \w said|strong="H1697"\w* \w to|strong="H3318"\w* \w them|strong="H3318"\w*, “\w Go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w gather|strong="H6908"\w* \w money|strong="H3701"\w* \w to|strong="H3318"\w* \w repair|strong="H2388"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w your|strong="H3605"\w* \w God|strong="H3808"\w* \w from|strong="H3318"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w from|strong="H3318"\w* \w year|strong="H8141"\w* \w to|strong="H3318"\w* \w year|strong="H8141"\w*. See \w that|strong="H3605"\w* \w you|strong="H3605"\w* expedite \w this|strong="H1697"\w* \w matter|strong="H1697"\w*.” However \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* didn’t \w do|strong="H3318"\w* \w it|strong="H3808"\w* \w right|strong="H3478"\w* \w away|strong="H3318"\w*. +\v 6 \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w called|strong="H7121"\w* \w for|strong="H5921"\w* \w Jehoiada|strong="H3077"\w* \w the|strong="H5921"\w* \w chief|strong="H7218"\w*, \w and|strong="H3063"\w* \w said|strong="H7121"\w* \w to|strong="H3478"\w* \w him|strong="H7121"\w*, “\w Why|strong="H4069"\w* haven’t \w you|strong="H5921"\w* \w required|strong="H1875"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w* \w to|strong="H3478"\w* \w bring|strong="H3881"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w tax|strong="H4864"\w* \w of|strong="H4428"\w* \w Moses|strong="H4872"\w* \w the|strong="H5921"\w* \w servant|strong="H5650"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3063"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w assembly|strong="H6951"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w out|strong="H5921"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w out|strong="H5921"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*, \w for|strong="H5921"\w* \w the|strong="H5921"\w* Tent \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w Testimony|strong="H5715"\w*?” +\v 7 \w For|strong="H3588"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Athaliah|strong="H6271"\w*, \w that|strong="H3588"\w* \w wicked|strong="H4849"\w* \w woman|strong="H1004"\w*, \w had|strong="H3068"\w* \w broken|strong="H6555"\w* \w up|strong="H6555"\w* \w God|strong="H3068"\w*’s \w house|strong="H1004"\w*; \w and|strong="H1121"\w* \w they|strong="H3588"\w* \w also|strong="H1571"\w* \w gave|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w dedicated|strong="H6944"\w* \w things|strong="H6944"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w Baals|strong="H1168"\w*. +\p +\v 8 \w So|strong="H6213"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* commanded, \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* chest, \w and|strong="H3068"\w* \w set|strong="H5414"\w* \w it|strong="H5414"\w* \w outside|strong="H2351"\w* \w at|strong="H3068"\w* \w the|strong="H5414"\w* \w gate|strong="H8179"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 9 \w They|strong="H3068"\w* \w made|strong="H5414"\w* \w a|strong="H3068"\w* \w proclamation|strong="H6963"\w* \w through|strong="H5921"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w*, \w to|strong="H3478"\w* \w bring|strong="H5414"\w* \w in|strong="H5921"\w* \w for|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w the|strong="H5921"\w* \w tax|strong="H4864"\w* \w that|strong="H3068"\w* \w Moses|strong="H4872"\w* \w the|strong="H5921"\w* \w servant|strong="H5650"\w* \w of|strong="H3068"\w* \w God|strong="H3068"\w* \w laid|strong="H5414"\w* \w on|strong="H5921"\w* \w Israel|strong="H3478"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*. +\v 10 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w and|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w rejoiced|strong="H8055"\w*, \w and|strong="H5971"\w* \w brought|strong="H3615"\w* \w in|strong="H8055"\w*, \w and|strong="H5971"\w* \w cast|strong="H7993"\w* \w into|strong="H7993"\w* \w the|strong="H3605"\w* chest, \w until|strong="H5704"\w* \w they|strong="H5704"\w* \w had|strong="H5971"\w* filled \w it|strong="H7993"\w*. +\v 11 \w Whenever|strong="H1961"\w* \w the|strong="H7200"\w* chest \w was|strong="H1961"\w* \w brought|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w*’s \w officers|strong="H6496"\w* \w by|strong="H3027"\w* \w the|strong="H7200"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H7200"\w* \w Levites|strong="H3881"\w*, \w and|strong="H3701"\w* \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w much|strong="H7227"\w* \w money|strong="H3701"\w*, \w the|strong="H7200"\w* \w king|strong="H4428"\w*’s \w scribe|strong="H5608"\w* \w and|strong="H3701"\w* \w the|strong="H7200"\w* \w chief|strong="H7218"\w* \w priest|strong="H3548"\w*’s \w officer|strong="H6496"\w* \w came|strong="H1961"\w* \w and|strong="H3701"\w* \w emptied|strong="H6168"\w* \w the|strong="H7200"\w* chest, \w and|strong="H3701"\w* \w took|strong="H5375"\w* \w it|strong="H3588"\w*, \w and|strong="H3701"\w* \w carried|strong="H5375"\w* \w it|strong="H3588"\w* \w to|strong="H7725"\w* \w its|strong="H7725"\w* \w place|strong="H4725"\w* \w again|strong="H7725"\w*. \w Thus|strong="H3541"\w* \w they|strong="H3588"\w* \w did|strong="H6213"\w* \w day|strong="H3117"\w* \w by|strong="H3027"\w* \w day|strong="H3117"\w*, \w and|strong="H3701"\w* \w gathered|strong="H6213"\w* \w money|strong="H3701"\w* \w in|strong="H6213"\w* \w abundance|strong="H7230"\w*. +\v 12 \w The|strong="H5414"\w* \w king|strong="H4428"\w* \w and|strong="H3068"\w* \w Jehoiada|strong="H3077"\w* \w gave|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3068"\w* \w those|strong="H2388"\w* \w who|strong="H3068"\w* \w did|strong="H6213"\w* \w the|strong="H5414"\w* \w work|strong="H4399"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w service|strong="H5656"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. \w They|strong="H3068"\w* \w hired|strong="H7936"\w* \w masons|strong="H2672"\w* \w and|strong="H3068"\w* \w carpenters|strong="H2796"\w* \w to|strong="H3068"\w* \w restore|strong="H2318"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w also|strong="H1571"\w* \w those|strong="H2388"\w* \w who|strong="H3068"\w* \w worked|strong="H2388"\w* \w iron|strong="H1270"\w* \w and|strong="H3068"\w* \w bronze|strong="H5178"\w* \w to|strong="H3068"\w* \w repair|strong="H2388"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 13 \w So|strong="H6213"\w* \w the|strong="H5921"\w* \w workmen|strong="H4399"\w* \w worked|strong="H6213"\w*, \w and|strong="H3027"\w* \w the|strong="H5921"\w* \w work|strong="H4399"\w* \w of|strong="H1004"\w* repairing \w went|strong="H5927"\w* forward \w in|strong="H5921"\w* \w their|strong="H5921"\w* \w hands|strong="H3027"\w*. \w They|strong="H5921"\w* \w set|strong="H5975"\w* \w up|strong="H5927"\w* \w God|strong="H3027"\w*’s \w house|strong="H1004"\w* \w as|strong="H6213"\w* \w it|strong="H5921"\w* \w was|strong="H1004"\w* designed, \w and|strong="H3027"\w* strengthened \w it|strong="H5921"\w*. +\v 14 \w When|strong="H1961"\w* \w they|strong="H3117"\w* \w had|strong="H3068"\w* \w finished|strong="H3615"\w*, \w they|strong="H3117"\w* \w brought|strong="H5927"\w* \w the|strong="H3605"\w* \w rest|strong="H7605"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w money|strong="H3701"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w and|strong="H3068"\w* \w Jehoiada|strong="H3077"\w*, \w from|strong="H6440"\w* \w which|strong="H3068"\w* \w were|strong="H1961"\w* \w made|strong="H6213"\w* \w vessels|strong="H3627"\w* \w for|strong="H6213"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w even|strong="H6213"\w* \w vessels|strong="H3627"\w* \w with|strong="H1004"\w* \w which|strong="H3068"\w* \w to|strong="H3068"\w* \w minister|strong="H8335"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w offer|strong="H5927"\w*, \w including|strong="H3605"\w* \w spoons|strong="H3709"\w* \w and|strong="H3068"\w* \w vessels|strong="H3627"\w* \w of|strong="H4428"\w* \w gold|strong="H2091"\w* \w and|strong="H3068"\w* \w silver|strong="H3701"\w*. \w They|strong="H3117"\w* \w offered|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w continually|strong="H8548"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w Jehoiada|strong="H3077"\w*. +\p +\v 15 \w But|strong="H4191"\w* \w Jehoiada|strong="H3077"\w* \w grew|strong="H7646"\w* \w old|strong="H1121"\w* \w and|strong="H3967"\w* \w was|strong="H3117"\w* \w full|strong="H7646"\w* \w of|strong="H1121"\w* \w days|strong="H3117"\w*, \w and|strong="H3967"\w* \w he|strong="H3117"\w* \w died|strong="H4191"\w*. \w He|strong="H3117"\w* \w was|strong="H3117"\w* \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H3117"\w* \w he|strong="H3117"\w* \w died|strong="H4191"\w*. +\v 16 \w They|strong="H3588"\w* \w buried|strong="H6912"\w* \w him|strong="H6213"\w* \w in|strong="H3478"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w* \w among|strong="H5973"\w* \w the|strong="H3588"\w* \w kings|strong="H4428"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H3478"\w* \w done|strong="H6213"\w* \w good|strong="H2896"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w toward|strong="H5973"\w* God \w and|strong="H3478"\w* \w his|strong="H1732"\w* \w house|strong="H1004"\w*. +\p +\v 17 \w Now|strong="H8085"\w* after \w the|strong="H8085"\w* \w death|strong="H4194"\w* \w of|strong="H4428"\w* \w Jehoiada|strong="H3077"\w*, \w the|strong="H8085"\w* \w princes|strong="H8269"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w came|strong="H3063"\w* \w and|strong="H3063"\w* \w bowed|strong="H7812"\w* \w down|strong="H7812"\w* \w to|strong="H8085"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w*. \w Then|strong="H8085"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w listened|strong="H8085"\w* \w to|strong="H8085"\w* \w them|strong="H8085"\w*. +\v 18 \w They|strong="H3068"\w* \w abandoned|strong="H5800"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w their|strong="H3068"\w* fathers, \w and|strong="H3063"\w* \w served|strong="H5647"\w* \w the|strong="H5921"\w* Asherah poles \w and|strong="H3063"\w* \w the|strong="H5921"\w* \w idols|strong="H6091"\w*, \w so|strong="H1961"\w* \w wrath|strong="H7110"\w* \w came|strong="H1961"\w* \w on|strong="H5921"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w* \w for|strong="H5921"\w* \w this|strong="H2063"\w* \w their|strong="H3068"\w* guiltiness. +\v 19 \w Yet|strong="H3068"\w* \w he|strong="H3068"\w* \w sent|strong="H7971"\w* \w prophets|strong="H5030"\w* \w to|strong="H7725"\w* \w them|strong="H7725"\w* \w to|strong="H7725"\w* \w bring|strong="H7725"\w* \w them|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w testified|strong="H5749"\w* \w against|strong="H5749"\w* \w them|strong="H7725"\w*; \w but|strong="H3808"\w* \w they|strong="H3068"\w* \w would|strong="H3068"\w* \w not|strong="H3808"\w* listen. +\p +\v 20 \w The|strong="H5921"\w* \w Spirit|strong="H7307"\w* \w of|strong="H1121"\w* \w God|strong="H3068"\w* \w came|strong="H3068"\w* \w on|strong="H5921"\w* \w Zechariah|strong="H2148"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w*; \w and|strong="H1121"\w* \w he|strong="H3588"\w* \w stood|strong="H5975"\w* \w above|strong="H5921"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w*, \w and|strong="H1121"\w* said \w to|strong="H3068"\w* \w them|strong="H5921"\w*, “\w God|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w Why|strong="H4100"\w* \w do|strong="H3068"\w* \w you|strong="H3588"\w* disobey \w Yahweh|strong="H3068"\w*’s \w commandments|strong="H4687"\w*, \w so|strong="H3541"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w can|strong="H4100"\w*’t \w prosper|strong="H6743"\w*? \w Because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w Yahweh|strong="H3068"\w*, \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w also|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w you|strong="H3588"\w*.’” +\p +\v 21 \w They|strong="H3068"\w* \w conspired|strong="H7194"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H3068"\w* \w stoned|strong="H7275"\w* \w him|strong="H5921"\w* \w with|strong="H1004"\w* stones \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w commandment|strong="H4687"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w court|strong="H2691"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 22 \w Thus|strong="H3808"\w* \w Joash|strong="H3101"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w* didn’t \w remember|strong="H2142"\w* \w the|strong="H7200"\w* \w kindness|strong="H2617"\w* \w which|strong="H3068"\w* \w Jehoiada|strong="H3077"\w* \w his|strong="H3068"\w* \w father|strong="H1121"\w* \w had|strong="H3068"\w* \w done|strong="H6213"\w* \w to|strong="H4191"\w* \w him|strong="H6213"\w*, \w but|strong="H3808"\w* \w killed|strong="H2026"\w* \w his|strong="H3068"\w* \w son|strong="H1121"\w*. \w When|strong="H7200"\w* \w he|strong="H6213"\w* \w died|strong="H4191"\w*, \w he|strong="H6213"\w* said, “\w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w look|strong="H7200"\w* \w at|strong="H3068"\w* \w it|strong="H6213"\w*, \w and|strong="H1121"\w* repay \w it|strong="H6213"\w*.” +\p +\v 23 \w At|strong="H5921"\w* \w the|strong="H3605"\w* \w end|strong="H8622"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w year|strong="H8141"\w*, \w the|strong="H3605"\w* \w army|strong="H5971"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* Syrians \w came|strong="H1961"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*. \w They|strong="H5921"\w* \w came|strong="H1961"\w* \w to|strong="H7971"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3063"\w* \w destroyed|strong="H7843"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w from|strong="H5921"\w* \w among|strong="H5921"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w and|strong="H3063"\w* \w sent|strong="H7971"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w plunder|strong="H7998"\w* \w to|strong="H7971"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Damascus|strong="H1834"\w*. +\v 24 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w army|strong="H2428"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* Syrians \w came|strong="H3068"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w small|strong="H4705"\w* \w company|strong="H2428"\w* \w of|strong="H3068"\w* \w men|strong="H2428"\w*; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w delivered|strong="H5414"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H3966"\w* \w army|strong="H2428"\w* \w into|strong="H6213"\w* \w their|strong="H3068"\w* \w hand|strong="H3027"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3588"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* fathers. \w So|strong="H6213"\w* \w they|strong="H3588"\w* \w executed|strong="H6213"\w* \w judgment|strong="H8201"\w* \w on|strong="H3027"\w* \w Joash|strong="H3101"\w*. +\p +\v 25 \w When|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H1732"\w* \w departed|strong="H3212"\w* \w from|strong="H4480"\w* \w him|strong="H5921"\w* (\w for|strong="H3588"\w* \w they|strong="H3588"\w* \w left|strong="H5800"\w* \w him|strong="H5921"\w* seriously wounded), \w his|strong="H1732"\w* \w own|strong="H3548"\w* \w servants|strong="H5650"\w* \w conspired|strong="H7194"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiada|strong="H3077"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w*, \w and|strong="H1121"\w* \w killed|strong="H2026"\w* \w him|strong="H5921"\w* \w on|strong="H5921"\w* \w his|strong="H1732"\w* \w bed|strong="H4296"\w*, \w and|strong="H1121"\w* \w he|strong="H3588"\w* \w died|strong="H4191"\w*. \w They|strong="H3588"\w* \w buried|strong="H6912"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*, \w but|strong="H3588"\w* \w they|strong="H3588"\w* didn’t \w bury|strong="H6912"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w tombs|strong="H6913"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w*. +\v 26 These \w are|strong="H1121"\w* \w those|strong="H5921"\w* \w who|strong="H1121"\w* \w conspired|strong="H7194"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*: \w Zabad|strong="H2066"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shimeath|strong="H8100"\w* \w the|strong="H5921"\w* \w Ammonitess|strong="H5985"\w* \w and|strong="H1121"\w* \w Jehozabad|strong="H3075"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shimrith|strong="H8116"\w* \w the|strong="H5921"\w* \w Moabitess|strong="H4125"\w*. +\v 27 \w Now|strong="H2005"\w* \w concerning|strong="H5921"\w* \w his|strong="H5921"\w* \w sons|strong="H1121"\w*, \w the|strong="H5921"\w* \w greatness|strong="H7230"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w burdens|strong="H4853"\w* laid \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H1121"\w* \w the|strong="H5921"\w* rebuilding \w of|strong="H1121"\w* God’s \w house|strong="H1004"\w*, \w behold|strong="H2005"\w*, \w they|strong="H5921"\w* \w are|strong="H1121"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* commentary \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w*. Amaziah \w his|strong="H5921"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w place|strong="H8478"\w*. +\c 25 +\p +\v 1 Amaziah \w was|strong="H8034"\w* \w twenty-five|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H2568"\w* began \w to|strong="H3389"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H2568"\w* \w reigned|strong="H4427"\w* \w twenty-nine|strong="H6242"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H4427"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Jehoaddan|strong="H3086"\w*, \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*. +\v 2 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w right|strong="H3477"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*, \w but|strong="H7535"\w* \w not|strong="H3808"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w perfect|strong="H8003"\w* \w heart|strong="H3824"\w*. +\v 3 \w Now|strong="H1961"\w* \w when|strong="H1961"\w* \w the|strong="H5921"\w* \w kingdom|strong="H4467"\w* \w was|strong="H1961"\w* \w established|strong="H2388"\w* \w to|strong="H1961"\w* \w him|strong="H5921"\w*, \w he|strong="H5921"\w* \w killed|strong="H2026"\w* \w his|strong="H5921"\w* \w servants|strong="H5650"\w* \w who|strong="H5650"\w* \w had|strong="H1961"\w* \w killed|strong="H2026"\w* \w his|strong="H5921"\w* father \w the|strong="H5921"\w* \w king|strong="H4428"\w*. +\v 4 \w But|strong="H3588"\w* \w he|strong="H3588"\w* didn’t \w put|strong="H4191"\w* \w their|strong="H3068"\w* \w children|strong="H1121"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*, \w but|strong="H3588"\w* \w did|strong="H3068"\w* \w according|strong="H5921"\w* \w to|strong="H4191"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w law|strong="H8451"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H1121"\w* \w Moses|strong="H4872"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w*, saying, “\w The|strong="H5921"\w* fathers \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w*, \w neither|strong="H3808"\w* \w shall|strong="H3068"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w die|strong="H4191"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* fathers; \w but|strong="H3588"\w* \w every|strong="H3068"\w* \w man|strong="H1121"\w* \w shall|strong="H3068"\w* \w die|strong="H4191"\w* \w for|strong="H3588"\w* \w his|strong="H3068"\w* own \w sin|strong="H2399"\w*.” +\p +\v 5 Moreover Amaziah \w gathered|strong="H6908"\w* \w Judah|strong="H3063"\w* \w together|strong="H6908"\w* \w and|strong="H3967"\w* \w ordered|strong="H6485"\w* \w them|strong="H5975"\w* according \w to|strong="H3318"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, \w under|strong="H6485"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* thousands \w and|strong="H3967"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* \w hundreds|strong="H3967"\w*, even \w all|strong="H3605"\w* \w Judah|strong="H3063"\w* \w and|strong="H3967"\w* \w Benjamin|strong="H1144"\w*. \w He|strong="H3605"\w* \w counted|strong="H6485"\w* \w them|strong="H5975"\w* \w from|strong="H3318"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H3967"\w* \w upward|strong="H4605"\w*, \w and|strong="H3967"\w* \w found|strong="H4672"\w* \w that|strong="H3605"\w* \w there|strong="H5975"\w* \w were|strong="H1121"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* thousand chosen \w men|strong="H1121"\w*, able \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w war|strong="H6635"\w*, \w who|strong="H3605"\w* could handle \w spear|strong="H7420"\w* \w and|strong="H3967"\w* \w shield|strong="H6793"\w*. +\v 6 \w He|strong="H3478"\w* \w also|strong="H3478"\w* \w hired|strong="H7936"\w* \w one|strong="H1368"\w* \w hundred|strong="H3967"\w* thousand \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H3603"\w* \w valor|strong="H2428"\w* \w out|strong="H7936"\w* \w of|strong="H3603"\w* \w Israel|strong="H3478"\w* \w for|strong="H3478"\w* \w one|strong="H1368"\w* \w hundred|strong="H3967"\w* \w talents|strong="H3603"\w*\f + \fr 25:6 \ft A talent is about 30 kilograms or 66 pounds\f* \w of|strong="H3603"\w* \w silver|strong="H3701"\w*. +\v 7 \w A|strong="H3068"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w God|strong="H3068"\w* \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w him|strong="H5973"\w*, saying, “\w O|strong="H3068"\w* \w king|strong="H4428"\w*, don’t let \w the|strong="H3605"\w* \w army|strong="H6635"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w go|strong="H3068"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w not|strong="H3588"\w* \w with|strong="H5973"\w* \w Israel|strong="H3478"\w*, \w with|strong="H5973"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Ephraim. +\v 8 \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H5826"\w* go, \w take|strong="H2388"\w* \w action|strong="H6213"\w*, \w and|strong="H6440"\w* \w be|strong="H3426"\w* \w strong|strong="H2388"\w* \w for|strong="H3588"\w* \w the|strong="H6440"\w* \w battle|strong="H4421"\w*. God \w will|strong="H5826"\w* overthrow \w you|strong="H3588"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* enemy; \w for|strong="H3588"\w* God \w has|strong="H3588"\w* \w power|strong="H3581"\w* \w to|strong="H6213"\w* \w help|strong="H5826"\w*, \w and|strong="H6440"\w* \w to|strong="H6213"\w* overthrow.” +\p +\v 9 Amaziah said \w to|strong="H3478"\w* \w the|strong="H5414"\w* \w man|strong="H2088"\w* \w of|strong="H3068"\w* \w God|strong="H3068"\w*, “\w But|strong="H3068"\w* \w what|strong="H4100"\w* \w shall|strong="H3068"\w* \w we|strong="H3068"\w* \w do|strong="H6213"\w* \w for|strong="H6213"\w* \w the|strong="H5414"\w* \w hundred|strong="H3967"\w* \w talents|strong="H3603"\w*\f + \fr 25:9 \ft A talent is about 30 kilograms or 66 pounds\f* \w which|strong="H3068"\w* \w I|strong="H5414"\w* \w have|strong="H3426"\w* \w given|strong="H5414"\w* \w to|strong="H3478"\w* \w the|strong="H5414"\w* \w army|strong="H1416"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*?” +\p \w The|strong="H5414"\w* \w man|strong="H2088"\w* \w of|strong="H3068"\w* \w God|strong="H3068"\w* answered, “\w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* able \w to|strong="H3478"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w much|strong="H7235"\w* \w more|strong="H7235"\w* \w than|strong="H7235"\w* \w this|strong="H2088"\w*.” +\p +\v 10 \w Then|strong="H7725"\w* Amaziah separated \w them|strong="H7725"\w*, \w the|strong="H7725"\w* \w army|strong="H1416"\w* \w that|strong="H3063"\w* \w had|strong="H3063"\w* \w come|strong="H3212"\w* \w to|strong="H7725"\w* \w him|strong="H7725"\w* \w out|strong="H3212"\w* \w of|strong="H4725"\w* Ephraim, \w to|strong="H7725"\w* \w go|strong="H3212"\w* \w home|strong="H4725"\w* \w again|strong="H7725"\w*. Therefore \w their|strong="H7725"\w* anger \w was|strong="H3063"\w* \w greatly|strong="H3966"\w* \w kindled|strong="H2734"\w* \w against|strong="H2734"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w they|strong="H3063"\w* \w returned|strong="H7725"\w* \w home|strong="H4725"\w* \w in|strong="H3212"\w* \w fierce|strong="H2750"\w* anger. +\p +\v 11 Amaziah \w took|strong="H2388"\w* \w courage|strong="H2388"\w*, \w and|strong="H1121"\w* \w led|strong="H3212"\w* \w his|strong="H5221"\w* \w people|strong="H5971"\w* \w out|strong="H2388"\w* \w and|strong="H1121"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H5221"\w* \w Valley|strong="H1516"\w* \w of|strong="H1121"\w* \w Salt|strong="H4417"\w*, \w and|strong="H1121"\w* \w struck|strong="H5221"\w* \w ten|strong="H6235"\w* thousand \w of|strong="H1121"\w* \w the|strong="H5221"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Seir|strong="H8165"\w*. +\v 12 \w The|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w carried|strong="H7617"\w* \w away|strong="H7993"\w* \w ten|strong="H6235"\w* thousand \w alive|strong="H2416"\w*, \w and|strong="H1121"\w* brought \w them|strong="H7617"\w* \w to|strong="H1121"\w* \w the|strong="H3605"\w* \w top|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w rock|strong="H5553"\w*, \w and|strong="H1121"\w* \w threw|strong="H7993"\w* \w them|strong="H7617"\w* \w down|strong="H7993"\w* \w from|strong="H1121"\w* \w the|strong="H3605"\w* \w top|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w rock|strong="H5553"\w*, so \w that|strong="H3605"\w* \w they|strong="H3605"\w* \w all|strong="H3605"\w* \w were|strong="H1121"\w* \w broken|strong="H1234"\w* \w in|strong="H1121"\w* \w pieces|strong="H1234"\w*. +\v 13 \w But|strong="H1992"\w* \w the|strong="H5221"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5221"\w* \w army|strong="H1416"\w* \w whom|strong="H1992"\w* Amaziah \w sent|strong="H7725"\w* \w back|strong="H7725"\w*, \w that|strong="H5892"\w* \w they|strong="H1992"\w* \w should|strong="H4421"\w* \w not|strong="H7725"\w* \w go|strong="H3212"\w* \w with|strong="H5973"\w* \w him|strong="H5221"\w* \w to|strong="H5704"\w* \w battle|strong="H4421"\w*, \w fell|strong="H6584"\w* \w on|strong="H3212"\w* \w the|strong="H5221"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w from|strong="H7725"\w* \w Samaria|strong="H8111"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* Beth Horon, \w and|strong="H1121"\w* \w struck|strong="H5221"\w* \w of|strong="H1121"\w* \w them|strong="H1992"\w* \w three|strong="H7969"\w* thousand, \w and|strong="H1121"\w* \w took|strong="H7725"\w* \w much|strong="H7227"\w* plunder. +\p +\v 14 \w Now|strong="H1961"\w* \w after|strong="H1961"\w* Amaziah \w had|strong="H1961"\w* \w come|strong="H1961"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w slaughter|strong="H5221"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w Edomites|strong="H8165"\w*, \w he|strong="H5221"\w* \w brought|strong="H1961"\w* \w the|strong="H6440"\w* gods \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Seir|strong="H8165"\w*, \w and|strong="H1121"\w* \w set|strong="H5975"\w* \w them|strong="H6440"\w* \w up|strong="H5975"\w* \w to|strong="H1961"\w* \w be|strong="H1961"\w* \w his|strong="H6440"\w* gods, \w and|strong="H1121"\w* \w bowed|strong="H7812"\w* \w down|strong="H7812"\w* \w himself|strong="H7812"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w* \w and|strong="H1121"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H1961"\w* \w them|strong="H6440"\w*. +\v 15 \w Therefore|strong="H7971"\w* \w Yahweh|strong="H3068"\w*’s anger \w burned|strong="H2734"\w* \w against|strong="H2734"\w* Amaziah, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w sent|strong="H7971"\w* \w to|strong="H3068"\w* \w him|strong="H7971"\w* \w a|strong="H3068"\w* \w prophet|strong="H5030"\w* \w who|strong="H5971"\w* said \w to|strong="H3068"\w* \w him|strong="H7971"\w*, “\w Why|strong="H4100"\w* \w have|strong="H3068"\w* \w you|strong="H7971"\w* \w sought|strong="H1875"\w* \w after|strong="H1875"\w* \w the|strong="H3068"\w* gods \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w*, \w which|strong="H3068"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w delivered|strong="H5337"\w* \w their|strong="H3068"\w* \w own|strong="H5971"\w* \w people|strong="H5971"\w* \w out|strong="H7971"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*?” +\p +\v 16 \w As|strong="H1961"\w* \w he|strong="H3588"\w* \w talked|strong="H1696"\w* \w with|strong="H6213"\w* \w him|strong="H5414"\w*, \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5414"\w*, “\w Have|strong="H1961"\w* \w we|strong="H3068"\w* \w made|strong="H6213"\w* \w you|strong="H3588"\w* \w one|strong="H3808"\w* \w of|strong="H4428"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w*’s \w counselors|strong="H3289"\w*? \w Stop|strong="H2308"\w*! \w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w you|strong="H3588"\w* \w be|strong="H1961"\w* \w struck|strong="H5221"\w* \w down|strong="H5221"\w*?” +\p \w Then|strong="H1961"\w* \w the|strong="H8085"\w* \w prophet|strong="H5030"\w* \w stopped|strong="H2308"\w*, \w and|strong="H4428"\w* \w said|strong="H1696"\w*, “\w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w God|strong="H5414"\w* \w has|strong="H1961"\w* \w determined|strong="H3289"\w* \w to|strong="H1696"\w* \w destroy|strong="H7843"\w* \w you|strong="H3588"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w done|strong="H6213"\w* \w this|strong="H2063"\w* \w and|strong="H4428"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* \w listened|strong="H8085"\w* \w to|strong="H1696"\w* \w my|strong="H8085"\w* \w counsel|strong="H6098"\w*.” +\p +\v 17 \w Then|strong="H1980"\w* \w Amaziah|strong="H3289"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w consulted|strong="H3289"\w* \w his|strong="H7971"\w* \w advisers|strong="H3289"\w*, \w and|strong="H1121"\w* \w sent|strong="H7971"\w* \w to|strong="H1980"\w* \w Joash|strong="H3101"\w*, \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoahaz|strong="H3059"\w*, \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehu|strong="H3058"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, saying, “\w Come|strong="H1980"\w*! \w Let|strong="H7971"\w*’s \w look|strong="H7200"\w* \w one|strong="H1121"\w* \w another|strong="H7200"\w* \w in|strong="H1980"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w*.” +\p +\v 18 \w Joash|strong="H3101"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w sent|strong="H7971"\w* \w to|strong="H3478"\w* Amaziah \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, saying, “\w The|strong="H5414"\w* \w thistle|strong="H2336"\w* \w that|strong="H3478"\w* \w was|strong="H3478"\w* \w in|strong="H3478"\w* \w Lebanon|strong="H3844"\w* \w sent|strong="H7971"\w* \w to|strong="H3478"\w* \w the|strong="H5414"\w* cedar \w that|strong="H3478"\w* \w was|strong="H3478"\w* \w in|strong="H3478"\w* \w Lebanon|strong="H3844"\w*, saying, ‘\w Give|strong="H5414"\w* \w your|strong="H5414"\w* \w daughter|strong="H1323"\w* \w to|strong="H3478"\w* \w my|strong="H5414"\w* \w son|strong="H1121"\w* \w as|strong="H3063"\w* \w his|strong="H5414"\w* \w wife|strong="H2416"\w*. \w Then|strong="H7971"\w* \w a|strong="H3068"\w* \w wild|strong="H7704"\w* \w animal|strong="H2416"\w* \w that|strong="H3478"\w* \w was|strong="H3478"\w* \w in|strong="H3478"\w* \w Lebanon|strong="H3844"\w* \w passed|strong="H5674"\w* \w by|strong="H5674"\w* \w and|strong="H1121"\w* \w trampled|strong="H7429"\w* \w down|strong="H7429"\w* \w the|strong="H5414"\w* \w thistle|strong="H2336"\w*. +\v 19 \w You|strong="H5973"\w* say \w to|strong="H3820"\w* \w yourself|strong="H5307"\w* \w that|strong="H5307"\w* \w you|strong="H5973"\w* \w have|strong="H3063"\w* \w struck|strong="H5221"\w* Edom; \w and|strong="H3063"\w* \w your|strong="H5375"\w* \w heart|strong="H3820"\w* \w lifts|strong="H5375"\w* \w you|strong="H5973"\w* \w up|strong="H5375"\w* \w to|strong="H3820"\w* \w boast|strong="H3513"\w*. \w Now|strong="H6258"\w* \w stay|strong="H3427"\w* \w at|strong="H3427"\w* \w home|strong="H1004"\w*. \w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w you|strong="H5973"\w* \w meddle|strong="H1624"\w* \w with|strong="H5973"\w* \w trouble|strong="H7451"\w*, \w that|strong="H5307"\w* \w you|strong="H5973"\w* \w should|strong="H4100"\w* \w fall|strong="H5307"\w*, even \w you|strong="H5973"\w* \w and|strong="H3063"\w* \w Judah|strong="H3063"\w* \w with|strong="H5973"\w* \w you|strong="H5973"\w*?’” +\p +\v 20 \w But|strong="H3588"\w* Amaziah would \w not|strong="H3808"\w* \w listen|strong="H8085"\w*; \w for|strong="H3588"\w* \w it|strong="H5414"\w* \w was|strong="H1931"\w* \w of|strong="H3027"\w* \w God|strong="H5414"\w*, \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w might|strong="H4616"\w* \w deliver|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H8085"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w their|strong="H5414"\w* \w enemies|strong="H3027"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3588"\w* \w sought|strong="H1875"\w* \w after|strong="H3588"\w* \w the|strong="H8085"\w* gods \w of|strong="H3027"\w* Edom. +\v 21 \w So|strong="H5927"\w* \w Joash|strong="H3101"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w*, \w and|strong="H3063"\w* \w he|strong="H1931"\w* \w and|strong="H3063"\w* Amaziah \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w looked|strong="H7200"\w* \w one|strong="H1931"\w* \w another|strong="H7200"\w* \w in|strong="H3478"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w at|strong="H3478"\w* Beth Shemesh, \w which|strong="H1931"\w* belongs \w to|strong="H3478"\w* \w Judah|strong="H3063"\w*. +\v 22 \w Judah|strong="H3063"\w* \w was|strong="H3478"\w* \w defeated|strong="H5062"\w* \w by|strong="H3478"\w* \w Israel|strong="H3478"\w*; \w so|strong="H6440"\w* \w every|strong="H5127"\w* \w man|strong="H6440"\w* \w fled|strong="H5127"\w* \w to|strong="H3478"\w* \w his|strong="H6440"\w* tent. +\p +\v 23 \w Joash|strong="H3101"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w took|strong="H8610"\w* Amaziah \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w the|strong="H5704"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joash|strong="H3101"\w* \w the|strong="H5704"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoahaz|strong="H3059"\w*, \w at|strong="H3478"\w* Beth Shemesh \w and|strong="H3967"\w* \w brought|strong="H3478"\w* \w him|strong="H4428"\w* \w to|strong="H5704"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3967"\w* \w broke|strong="H6555"\w* \w down|strong="H6555"\w* \w the|strong="H5704"\w* \w wall|strong="H2346"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w* \w from|strong="H3478"\w* \w the|strong="H5704"\w* \w gate|strong="H8179"\w* \w of|strong="H1121"\w* Ephraim \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w corner|strong="H6437"\w* \w gate|strong="H8179"\w*, four \w hundred|strong="H3967"\w* cubits.\f + \fr 25:23 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters, so 400 cubits is about 200 yards or 184 meters.\f* +\v 24 \w He|strong="H3605"\w* \w took|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w gold|strong="H2091"\w* \w and|strong="H1121"\w* \w silver|strong="H3701"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w that|strong="H3605"\w* \w were|strong="H1121"\w* \w found|strong="H4672"\w* \w in|strong="H1004"\w* God’s \w house|strong="H1004"\w* \w with|strong="H5973"\w* \w Obed-Edom|strong="H5654"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* treasures \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w hostages|strong="H8594"\w*, \w and|strong="H1121"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Samaria|strong="H8111"\w*. +\p +\v 25 Amaziah \w the|strong="H4191"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joash|strong="H3101"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w lived|strong="H2421"\w* \w for|strong="H1121"\w* \w fifteen|strong="H2568"\w* \w years|strong="H8141"\w* \w after|strong="H8141"\w* \w the|strong="H4191"\w* \w death|strong="H4191"\w* \w of|strong="H1121"\w* \w Joash|strong="H3101"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoahaz|strong="H3059"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 26 \w Now|strong="H2005"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* Amaziah, \w first|strong="H7223"\w* \w and|strong="H3063"\w* last, \w behold|strong="H2005"\w*, aren’t \w they|strong="H3808"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Israel|strong="H3478"\w*? +\v 27 \w Now|strong="H6256"\w* \w from|strong="H5493"\w* \w the|strong="H5921"\w* \w time|strong="H6256"\w* \w that|strong="H3068"\w* Amaziah \w turned|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* following \w Yahweh|strong="H3068"\w*, \w they|strong="H8033"\w* \w made|strong="H7194"\w* \w a|strong="H3068"\w* \w conspiracy|strong="H7195"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*. \w He|strong="H8033"\w* \w fled|strong="H5127"\w* \w to|strong="H4191"\w* \w Lachish|strong="H3923"\w*, \w but|strong="H3068"\w* \w they|strong="H8033"\w* \w sent|strong="H7971"\w* \w after|strong="H5921"\w* \w him|strong="H5921"\w* \w to|strong="H4191"\w* \w Lachish|strong="H3923"\w* \w and|strong="H3068"\w* \w killed|strong="H4191"\w* \w him|strong="H5921"\w* \w there|strong="H8033"\w*. +\v 28 \w They|strong="H5921"\w* \w brought|strong="H5375"\w* \w him|strong="H5921"\w* \w on|strong="H5921"\w* \w horses|strong="H5483"\w* \w and|strong="H3063"\w* \w buried|strong="H6912"\w* \w him|strong="H5921"\w* \w with|strong="H5973"\w* \w his|strong="H5375"\w* fathers \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w City|strong="H5892"\w* \w of|strong="H5892"\w* \w Judah|strong="H3063"\w*. +\c 26 +\p +\v 1 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w took|strong="H3947"\w* \w Uzziah|strong="H5818"\w*, \w who|strong="H3605"\w* \w was|strong="H1931"\w* \w sixteen|strong="H8337"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*, \w and|strong="H1121"\w* \w made|strong="H4427"\w* \w him|strong="H4427"\w* \w king|strong="H4427"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w place|strong="H8478"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w father|strong="H1121"\w* Amaziah. +\v 2 \w He|strong="H1931"\w* \w built|strong="H1129"\w* Eloth \w and|strong="H3063"\w* \w restored|strong="H7725"\w* \w it|strong="H1931"\w* \w to|strong="H7725"\w* \w Judah|strong="H3063"\w*. After \w that|strong="H1931"\w* \w the|strong="H7725"\w* \w king|strong="H4428"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H7725"\w* fathers. +\v 3 \w Uzziah|strong="H5818"\w* \w was|strong="H8034"\w* \w sixteen|strong="H8337"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H8147"\w* began \w to|strong="H3389"\w* \w reign|strong="H4427"\w*; \w and|strong="H1121"\w* \w he|strong="H8147"\w* \w reigned|strong="H4427"\w* \w fifty-two|strong="H2572"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H4480"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Jechiliah|strong="H3203"\w*, \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*. +\v 4 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w right|strong="H3477"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*, according \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w his|strong="H3605"\w* father Amaziah \w had|strong="H3068"\w* \w done|strong="H6213"\w*. +\v 5 \w He|strong="H3117"\w* set \w himself|strong="H3068"\w* \w to|strong="H3068"\w* \w seek|strong="H1875"\w* \w God|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H7200"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w Zechariah|strong="H2148"\w*, \w who|strong="H3068"\w* \w had|strong="H3068"\w* understanding \w in|strong="H3068"\w* \w the|strong="H7200"\w* \w vision|strong="H7200"\w* \w of|strong="H3068"\w* \w God|strong="H3068"\w*; \w and|strong="H3068"\w* \w as|strong="H3117"\w* \w long|strong="H3117"\w* \w as|strong="H3117"\w* \w he|strong="H3117"\w* \w sought|strong="H1875"\w* \w Yahweh|strong="H3068"\w*, \w God|strong="H3068"\w* \w made|strong="H1961"\w* \w him|strong="H7200"\w* \w prosper|strong="H6743"\w*. +\p +\v 6 \w He|strong="H3318"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H5892"\w* \w fought|strong="H3898"\w* \w against|strong="H3898"\w* \w the|strong="H1129"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H5892"\w* \w broke|strong="H6555"\w* \w down|strong="H6555"\w* \w the|strong="H1129"\w* \w wall|strong="H2346"\w* \w of|strong="H5892"\w* \w Gath|strong="H1661"\w*, \w the|strong="H1129"\w* \w wall|strong="H2346"\w* \w of|strong="H5892"\w* \w Jabneh|strong="H2996"\w*, \w and|strong="H5892"\w* \w the|strong="H1129"\w* \w wall|strong="H2346"\w* \w of|strong="H5892"\w* Ashdod; \w and|strong="H5892"\w* \w he|strong="H3318"\w* \w built|strong="H1129"\w* \w cities|strong="H5892"\w* \w in|strong="H5892"\w* \w the|strong="H1129"\w* country \w of|strong="H5892"\w* Ashdod, \w and|strong="H5892"\w* among \w the|strong="H1129"\w* \w Philistines|strong="H6430"\w*. +\v 7 God \w helped|strong="H5826"\w* \w him|strong="H5921"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H6430"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w Arabians|strong="H6163"\w* \w who|strong="H3427"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* Gur Baal, \w and|strong="H6430"\w* \w the|strong="H5921"\w* \w Meunim|strong="H4586"\w*. +\v 8 \w The|strong="H3588"\w* \w Ammonites|strong="H5984"\w* \w gave|strong="H5414"\w* \w tribute|strong="H4503"\w* \w to|strong="H5704"\w* \w Uzziah|strong="H5818"\w*. \w His|strong="H5414"\w* \w name|strong="H8034"\w* \w spread|strong="H5414"\w* \w abroad|strong="H3212"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3588"\w* entrance \w of|strong="H8034"\w* \w Egypt|strong="H4714"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* grew \w exceedingly|strong="H4605"\w* \w strong|strong="H2388"\w*. +\v 9 Moreover \w Uzziah|strong="H5818"\w* \w built|strong="H1129"\w* \w towers|strong="H4026"\w* \w in|strong="H5921"\w* \w Jerusalem|strong="H3389"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w corner|strong="H6438"\w* \w gate|strong="H8179"\w*, \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w valley|strong="H1516"\w* \w gate|strong="H8179"\w*, \w and|strong="H3389"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w turning|strong="H4740"\w* \w of|strong="H8179"\w* \w the|strong="H5921"\w* wall, \w and|strong="H3389"\w* \w fortified|strong="H2388"\w* \w them|strong="H5921"\w*. +\v 10 \w He|strong="H3588"\w* \w built|strong="H1129"\w* \w towers|strong="H4026"\w* \w in|strong="H7227"\w* \w the|strong="H3588"\w* \w wilderness|strong="H4057"\w*, \w and|strong="H2022"\w* dug \w out|strong="H2672"\w* \w many|strong="H7227"\w* cisterns, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H1961"\w* \w much|strong="H7227"\w* \w livestock|strong="H4735"\w*, both \w in|strong="H7227"\w* \w the|strong="H3588"\w* lowlands \w and|strong="H2022"\w* \w in|strong="H7227"\w* \w the|strong="H3588"\w* \w plains|strong="H4334"\w*. \w He|strong="H3588"\w* \w had|strong="H1961"\w* farmers \w and|strong="H2022"\w* vineyard keepers \w in|strong="H7227"\w* \w the|strong="H3588"\w* \w mountains|strong="H2022"\w* \w and|strong="H2022"\w* \w in|strong="H7227"\w* \w the|strong="H3588"\w* fruitful fields, \w for|strong="H3588"\w* \w he|strong="H3588"\w* loved farming. +\v 11 \w Moreover|strong="H1961"\w* \w Uzziah|strong="H5818"\w* \w had|strong="H1961"\w* \w an|strong="H6213"\w* \w army|strong="H2428"\w* \w of|strong="H4428"\w* \w fighting|strong="H4421"\w* \w men|strong="H2428"\w* \w who|strong="H4428"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w war|strong="H4421"\w* \w by|strong="H3027"\w* \w bands|strong="H1416"\w*, \w according|strong="H5921"\w* \w to|strong="H3318"\w* \w the|strong="H5921"\w* \w number|strong="H4557"\w* \w of|strong="H4428"\w* \w their|strong="H5921"\w* \w reckoning|strong="H6486"\w* \w made|strong="H6213"\w* \w by|strong="H3027"\w* \w Jeiel|strong="H3273"\w* \w the|strong="H5921"\w* \w scribe|strong="H5608"\w* \w and|strong="H4428"\w* \w Maaseiah|strong="H4641"\w* \w the|strong="H5921"\w* \w officer|strong="H7860"\w*, \w under|strong="H5921"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w Hananiah|strong="H2608"\w*, \w one|strong="H1961"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w captains|strong="H8269"\w*. +\v 12 \w The|strong="H3605"\w* \w whole|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H7218"\w* \w the|strong="H3605"\w* \w heads|strong="H7218"\w* \w of|strong="H7218"\w* fathers’ households, even \w the|strong="H3605"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H7218"\w* \w valor|strong="H2428"\w*, \w was|strong="H7218"\w* \w two|strong="H3967"\w* thousand \w six|strong="H8337"\w* \w hundred|strong="H3967"\w*. +\v 13 \w Under|strong="H5921"\w* \w their|strong="H5921"\w* \w hand|strong="H3027"\w* \w was|strong="H4428"\w* \w an|strong="H6213"\w* \w army|strong="H2428"\w*, \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w seven|strong="H7651"\w* thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w*, \w who|strong="H4428"\w* \w made|strong="H6213"\w* \w war|strong="H4421"\w* \w with|strong="H6213"\w* \w mighty|strong="H7969"\w* \w power|strong="H3027"\w*, \w to|strong="H6213"\w* \w help|strong="H5826"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* enemy. +\v 14 \w Uzziah|strong="H5818"\w* \w prepared|strong="H3559"\w* \w for|strong="H3559"\w* \w them|strong="H1992"\w*, even \w for|strong="H3559"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w*, \w shields|strong="H4043"\w*, \w spears|strong="H7420"\w*, \w helmets|strong="H3553"\w*, coats \w of|strong="H6635"\w* \w mail|strong="H8302"\w*, \w bows|strong="H7198"\w*, \w and|strong="H4043"\w* stones \w for|strong="H3559"\w* slinging. +\v 15 \w In|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, \w he|strong="H3588"\w* \w made|strong="H6213"\w* \w devices|strong="H4284"\w*, \w invented|strong="H4284"\w* \w by|strong="H5921"\w* \w skillful|strong="H2803"\w* \w men|strong="H1419"\w*, \w to|strong="H5704"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w towers|strong="H4026"\w* \w and|strong="H1419"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* battlements, \w with|strong="H6213"\w* \w which|strong="H3588"\w* \w to|strong="H5704"\w* \w shoot|strong="H3384"\w* \w arrows|strong="H2678"\w* \w and|strong="H1419"\w* \w great|strong="H1419"\w* stones. \w His|strong="H5921"\w* \w name|strong="H8034"\w* \w spread|strong="H3318"\w* \w far|strong="H5704"\w* \w abroad|strong="H7350"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w was|strong="H8034"\w* \w marvelously|strong="H6381"\w* \w helped|strong="H5826"\w* \w until|strong="H5704"\w* \w he|strong="H3588"\w* \w was|strong="H8034"\w* \w strong|strong="H2388"\w*. +\p +\v 16 \w But|strong="H3068"\w* \w when|strong="H5704"\w* \w he|strong="H5704"\w* \w was|strong="H3068"\w* \w strong|strong="H2393"\w*, \w his|strong="H3068"\w* \w heart|strong="H3820"\w* \w was|strong="H3068"\w* \w lifted|strong="H1361"\w* \w up|strong="H1361"\w*, \w so|strong="H5921"\w* \w that|strong="H3068"\w* \w he|strong="H5704"\w* \w did|strong="H3068"\w* \w corruptly|strong="H7843"\w* \w and|strong="H3068"\w* \w he|strong="H5704"\w* \w trespassed|strong="H4603"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H3068"\w* \w God|strong="H3068"\w*, \w for|strong="H5704"\w* \w he|strong="H5704"\w* \w went|strong="H3068"\w* \w into|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1964"\w* \w to|strong="H5704"\w* \w burn|strong="H6999"\w* \w incense|strong="H7004"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w of|strong="H3068"\w* \w incense|strong="H7004"\w*. +\v 17 \w Azariah|strong="H5838"\w* \w the|strong="H3068"\w* \w priest|strong="H3548"\w* \w went|strong="H3068"\w* \w in|strong="H3068"\w* after \w him|strong="H5973"\w*, \w and|strong="H1121"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w* \w eighty|strong="H8084"\w* \w priests|strong="H3548"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H3068"\w* \w were|strong="H1121"\w* \w valiant|strong="H2428"\w* \w men|strong="H1121"\w*. +\v 18 \w They|strong="H3588"\w* resisted \w Uzziah|strong="H5818"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*, \w and|strong="H1121"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H5921"\w*, “\w It|strong="H5921"\w* isn’t \w for|strong="H3588"\w* \w you|strong="H3588"\w*, \w Uzziah|strong="H5818"\w*, \w to|strong="H3318"\w* \w burn|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w*, \w but|strong="H3588"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron, \w who|strong="H3068"\w* \w are|strong="H1121"\w* \w consecrated|strong="H6942"\w* \w to|strong="H3318"\w* \w burn|strong="H6999"\w* \w incense|strong="H6999"\w*. \w Go|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sanctuary|strong="H4720"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w trespassed|strong="H4603"\w*. \w It|strong="H5921"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w for|strong="H3588"\w* \w your|strong="H3068"\w* \w honor|strong="H3519"\w* \w from|strong="H4480"\w* \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w*.” +\p +\v 19 \w Then|strong="H3068"\w* \w Uzziah|strong="H5818"\w* \w was|strong="H3068"\w* angry. \w He|strong="H3068"\w* \w had|strong="H3068"\w* \w a|strong="H3068"\w* \w censer|strong="H4730"\w* \w in|strong="H5921"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w* \w to|strong="H3068"\w* \w burn|strong="H6999"\w* \w incense|strong="H7004"\w*, \w and|strong="H3068"\w* \w while|strong="H5973"\w* \w he|strong="H3068"\w* \w was|strong="H3068"\w* angry \w with|strong="H5973"\w* \w the|strong="H6440"\w* \w priests|strong="H3548"\w*, \w the|strong="H6440"\w* \w leprosy|strong="H6883"\w* \w broke|strong="H2224"\w* \w out|strong="H5921"\w* \w on|strong="H5921"\w* \w his|strong="H3068"\w* \w forehead|strong="H4696"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w priests|strong="H3548"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w beside|strong="H5921"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w* \w of|strong="H1004"\w* \w incense|strong="H7004"\w*. +\v 20 \w Azariah|strong="H5838"\w* \w the|strong="H3605"\w* \w chief|strong="H7218"\w* \w priest|strong="H3548"\w* \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w looked|strong="H6437"\w* \w at|strong="H3068"\w* \w him|strong="H3318"\w*, \w and|strong="H3068"\w* \w behold|strong="H2009"\w*, \w he|strong="H1931"\w* \w was|strong="H3068"\w* \w leprous|strong="H6879"\w* \w in|strong="H3068"\w* \w his|strong="H3605"\w* \w forehead|strong="H4696"\w*; \w and|strong="H3068"\w* \w they|strong="H3588"\w* thrust \w him|strong="H3318"\w* \w out|strong="H3318"\w* \w quickly|strong="H1765"\w* \w from|strong="H3318"\w* \w there|strong="H8033"\w*. \w Indeed|strong="H3588"\w*, \w he|strong="H1931"\w* \w himself|strong="H1931"\w* \w also|strong="H1571"\w* \w hurried|strong="H1765"\w* \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*, \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w struck|strong="H5060"\w* \w him|strong="H3318"\w*. +\v 21 \w Uzziah|strong="H5818"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w was|strong="H3068"\w* \w a|strong="H3068"\w* \w leper|strong="H6879"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w his|strong="H3068"\w* \w death|strong="H4194"\w*, \w and|strong="H1121"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w a|strong="H3068"\w* \w separate|strong="H2669"\w* \w house|strong="H1004"\w*, \w being|strong="H1961"\w* \w a|strong="H3068"\w* \w leper|strong="H6879"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w was|strong="H3068"\w* \w cut|strong="H1504"\w* \w off|strong="H1504"\w* \w from|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. \w Jotham|strong="H3147"\w* \w his|strong="H3068"\w* \w son|strong="H1121"\w* \w was|strong="H3068"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w judging|strong="H8199"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* land. +\p +\v 22 Now \w the|strong="H1697"\w* \w rest|strong="H3499"\w* \w of|strong="H1121"\w* \w the|strong="H1697"\w* \w acts|strong="H1697"\w* \w of|strong="H1121"\w* \w Uzziah|strong="H5818"\w*, \w first|strong="H7223"\w* \w and|strong="H1121"\w* last, \w Isaiah|strong="H3470"\w* \w the|strong="H1697"\w* \w prophet|strong="H5030"\w*, \w the|strong="H1697"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amoz, \w wrote|strong="H3789"\w*. +\v 23 \w So|strong="H3588"\w* \w Uzziah|strong="H5818"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H3588"\w* fathers; \w and|strong="H1121"\w* \w they|strong="H3588"\w* \w buried|strong="H6912"\w* \w him|strong="H4427"\w* \w with|strong="H5973"\w* \w his|strong="H3588"\w* fathers \w in|strong="H4428"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w* \w of|strong="H1121"\w* \w burial|strong="H6900"\w* \w which|strong="H1931"\w* belonged \w to|strong="H1121"\w* \w the|strong="H3588"\w* \w kings|strong="H4428"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* said, “\w He|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w leper|strong="H6879"\w*.” \w Jotham|strong="H3147"\w* \w his|strong="H3588"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H4428"\w* \w his|strong="H3588"\w* \w place|strong="H8478"\w*. +\c 27 +\p +\v 1 \w Jotham|strong="H3147"\w* \w was|strong="H8034"\w* \w twenty-five|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H2568"\w* began \w to|strong="H3389"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H2568"\w* \w reigned|strong="H4427"\w* \w sixteen|strong="H8337"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H3147"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Jerushah|strong="H3388"\w* \w the|strong="H6659"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Zadok|strong="H6659"\w*. +\v 2 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H5971"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w right|strong="H3477"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*, according \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H5971"\w* \w his|strong="H3605"\w* father \w Uzziah|strong="H5818"\w* \w had|strong="H3068"\w* \w done|strong="H6213"\w*. \w However|strong="H7535"\w* \w he|strong="H6213"\w* didn’t enter \w into|strong="H6213"\w* \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1964"\w*. \w The|strong="H3605"\w* \w people|strong="H5971"\w* \w still|strong="H5750"\w* \w acted|strong="H6213"\w* \w corruptly|strong="H7843"\w*. +\v 3 \w He|strong="H1931"\w* \w built|strong="H1129"\w* \w the|strong="H3068"\w* \w upper|strong="H5945"\w* \w gate|strong="H8179"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w he|strong="H1931"\w* \w built|strong="H1129"\w* \w much|strong="H7230"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w wall|strong="H2346"\w* \w of|strong="H1004"\w* \w Ophel|strong="H6077"\w*. +\v 4 Moreover \w he|strong="H3063"\w* \w built|strong="H1129"\w* \w cities|strong="H5892"\w* \w in|strong="H5892"\w* \w the|strong="H1129"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w* \w of|strong="H5892"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w in|strong="H5892"\w* \w the|strong="H1129"\w* \w forests|strong="H2793"\w* \w he|strong="H3063"\w* \w built|strong="H1129"\w* \w fortresses|strong="H1003"\w* \w and|strong="H3063"\w* \w towers|strong="H4026"\w*. +\v 5 \w He|strong="H1931"\w* \w also|strong="H4428"\w* \w fought|strong="H3898"\w* \w with|strong="H5973"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, \w and|strong="H3967"\w* \w prevailed|strong="H2388"\w* \w against|strong="H5921"\w* \w them|strong="H5414"\w*. \w The|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w the|strong="H5921"\w* \w same|strong="H1931"\w* \w year|strong="H8141"\w* \w one|strong="H7992"\w* \w hundred|strong="H3967"\w* \w talents|strong="H3603"\w*\f + \fr 27:5 \ft A talent is about 30 kilograms or 66 pounds\f* \w of|strong="H1121"\w* \w silver|strong="H3701"\w*, \w ten|strong="H6235"\w* thousand \w cors|strong="H3734"\w*\f + \fr 27:5 \ft 1 cor is the same as a homer, or about 55.9 U. S. gallons (liquid) or 211 liters or 6 bushels. 10,000 cors of wheat would weigh about 1,640 metric tons.\f* \w of|strong="H1121"\w* \w wheat|strong="H2406"\w*, \w and|strong="H3967"\w* \w ten|strong="H6235"\w* thousand \w cors|strong="H3734"\w* \w of|strong="H1121"\w* \w barley|strong="H8184"\w*.\f + \fr 27:5 \ft 10,000 cors of barley would weigh about 1,310 metric tons.\f* \w The|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w also|strong="H4428"\w* \w gave|strong="H5414"\w* \w that|strong="H1931"\w* \w much|strong="H5921"\w* \w to|strong="H7725"\w* \w him|strong="H5414"\w* \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w second|strong="H8145"\w* \w year|strong="H8141"\w*, \w and|strong="H3967"\w* \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w third|strong="H7992"\w*. +\v 6 \w So|strong="H3588"\w* \w Jotham|strong="H3147"\w* \w became|strong="H2388"\w* \w mighty|strong="H2388"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w ordered|strong="H3559"\w* \w his|strong="H3068"\w* \w ways|strong="H1870"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 7 \w Now|strong="H2005"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Jotham|strong="H3147"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w wars|strong="H4421"\w* \w and|strong="H3063"\w* \w his|strong="H3605"\w* \w ways|strong="H1870"\w*, \w behold|strong="H2005"\w*, \w they|strong="H5921"\w* \w are|strong="H3478"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w Judah|strong="H3063"\w*. +\v 8 \w He|strong="H2568"\w* \w was|strong="H1961"\w* \w twenty-five|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1961"\w* \w he|strong="H2568"\w* \w began|strong="H1961"\w* \w to|strong="H1961"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w reigned|strong="H4427"\w* \w sixteen|strong="H8337"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. +\v 9 \w Jotham|strong="H3147"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H1732"\w* fathers, \w and|strong="H1121"\w* \w they|strong="H5892"\w* \w buried|strong="H6912"\w* \w him|strong="H4427"\w* \w in|strong="H6912"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*; \w and|strong="H1121"\w* Ahaz \w his|strong="H1732"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H6912"\w* \w his|strong="H1732"\w* \w place|strong="H8478"\w*. +\c 28 +\p +\v 1 Ahaz \w was|strong="H3068"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H6213"\w* \w he|strong="H6213"\w* began \w to|strong="H3068"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H6213"\w* \w reigned|strong="H4427"\w* \w sixteen|strong="H8337"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w He|strong="H6213"\w* didn’t \w do|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w right|strong="H3477"\w* \w in|strong="H8141"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*, \w like|strong="H3808"\w* \w David|strong="H1732"\w* \w his|strong="H3068"\w* \w father|strong="H1121"\w*, +\v 2 \w but|strong="H1571"\w* \w he|strong="H6213"\w* \w walked|strong="H3212"\w* \w in|strong="H3478"\w* \w the|strong="H6213"\w* \w ways|strong="H1870"\w* \w of|strong="H4428"\w* \w the|strong="H6213"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w also|strong="H1571"\w* \w made|strong="H6213"\w* \w molten|strong="H4541"\w* \w images|strong="H4541"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w Baals|strong="H1168"\w*. +\v 3 Moreover \w he|strong="H1931"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w in|strong="H3478"\w* \w the|strong="H6440"\w* \w valley|strong="H1516"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hinnom|strong="H2011"\w*, \w and|strong="H1121"\w* \w burned|strong="H6999"\w* \w his|strong="H6440"\w* \w children|strong="H1121"\w* \w in|strong="H3478"\w* \w the|strong="H6440"\w* fire, according \w to|strong="H3478"\w* \w the|strong="H6440"\w* \w abominations|strong="H8441"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w nations|strong="H1471"\w* \w whom|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w cast|strong="H3423"\w* \w out|strong="H3423"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 4 \w He|strong="H3605"\w* \w sacrificed|strong="H2076"\w* \w and|strong="H6086"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*, \w and|strong="H6086"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w hills|strong="H1389"\w*, \w and|strong="H6086"\w* \w under|strong="H8478"\w* \w every|strong="H3605"\w* \w green|strong="H7488"\w* \w tree|strong="H6086"\w*. +\p +\v 5 \w Therefore|strong="H1571"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H5414"\w* \w God|strong="H3068"\w* \w delivered|strong="H5414"\w* \w him|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Syria. \w They|strong="H3068"\w* \w struck|strong="H5221"\w* \w him|strong="H5414"\w*, \w and|strong="H3478"\w* \w carried|strong="H7617"\w* \w away|strong="H7617"\w* \w from|strong="H4480"\w* \w him|strong="H5414"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w multitude|strong="H1419"\w* \w of|strong="H4428"\w* \w captives|strong="H7617"\w*, \w and|strong="H3478"\w* \w brought|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H3478"\w* \w Damascus|strong="H1834"\w*. \w He|strong="H3068"\w* \w was|strong="H3068"\w* \w also|strong="H1571"\w* \w delivered|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w who|strong="H3068"\w* \w struck|strong="H5221"\w* \w him|strong="H5414"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w slaughter|strong="H4347"\w*. +\v 6 \w For|strong="H3068"\w* \w Pekah|strong="H6492"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Remaliah|strong="H7425"\w* \w killed|strong="H2026"\w* \w in|strong="H3068"\w* \w Judah|strong="H3063"\w* \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* \w twenty|strong="H6242"\w* thousand \w in|strong="H3068"\w* \w one|strong="H3605"\w* \w day|strong="H3117"\w*, \w all|strong="H3605"\w* \w of|strong="H1121"\w* \w them|strong="H2026"\w* \w valiant|strong="H2428"\w* \w men|strong="H1121"\w*, \w because|strong="H3117"\w* \w they|strong="H3117"\w* \w had|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w their|strong="H3605"\w* fathers. +\v 7 \w Zichri|strong="H2147"\w*, \w a|strong="H3068"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w* \w of|strong="H1121"\w* Ephraim, \w killed|strong="H2026"\w* \w Maaseiah|strong="H4641"\w* \w the|strong="H2026"\w* \w king|strong="H4428"\w*’s \w son|strong="H1121"\w*, \w Azrikam|strong="H5840"\w* \w the|strong="H2026"\w* \w ruler|strong="H5057"\w* \w of|strong="H1121"\w* \w the|strong="H2026"\w* \w house|strong="H1004"\w*, \w and|strong="H1121"\w* Elkanah \w who|strong="H1121"\w* \w was|strong="H4428"\w* \w next|strong="H4932"\w* \w to|strong="H1121"\w* \w the|strong="H2026"\w* \w king|strong="H4428"\w*. +\v 8 \w The|strong="H1571"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w carried|strong="H7617"\w* \w away|strong="H7617"\w* \w captive|strong="H7617"\w* \w of|strong="H1121"\w* \w their|strong="H1992"\w* \w brothers|strong="H1121"\w* \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* thousand \w women|strong="H1323"\w*, \w sons|strong="H1121"\w*, \w and|strong="H3967"\w* \w daughters|strong="H1323"\w*, \w and|strong="H3967"\w* \w also|strong="H1571"\w* \w took|strong="H7617"\w* \w away|strong="H7617"\w* \w much|strong="H7227"\w* \w plunder|strong="H7998"\w* \w from|strong="H3478"\w* \w them|strong="H1992"\w*, \w and|strong="H3967"\w* \w brought|strong="H3478"\w* \w the|strong="H1571"\w* \w plunder|strong="H7998"\w* \w to|strong="H3478"\w* \w Samaria|strong="H8111"\w*. +\v 9 \w But|strong="H1961"\w* \w a|strong="H3068"\w* \w prophet|strong="H5030"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w there|strong="H8033"\w*, \w whose|strong="H8034"\w* \w name|strong="H8034"\w* \w was|strong="H3068"\w* \w Oded|strong="H5752"\w*; \w and|strong="H3063"\w* \w he|strong="H5704"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H5704"\w* \w meet|strong="H6440"\w* \w the|strong="H6440"\w* \w army|strong="H6635"\w* \w that|strong="H3068"\w* \w came|strong="H1961"\w* \w to|strong="H5704"\w* \w Samaria|strong="H8111"\w*, \w and|strong="H3063"\w* \w said|strong="H3318"\w* \w to|strong="H5704"\w* \w them|strong="H5414"\w*, “\w Behold|strong="H2009"\w*, \w because|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* fathers, \w was|strong="H3068"\w* \w angry|strong="H2534"\w* \w with|strong="H3068"\w* \w Judah|strong="H3063"\w*, \w he|strong="H5704"\w* \w has|strong="H3068"\w* \w delivered|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H5921"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*, \w and|strong="H3063"\w* \w you|strong="H5414"\w* \w have|strong="H1961"\w* \w slain|strong="H2026"\w* \w them|strong="H5414"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w rage|strong="H2534"\w* \w which|strong="H3068"\w* \w has|strong="H3068"\w* \w reached|strong="H5060"\w* \w up|strong="H5414"\w* \w to|strong="H5704"\w* \w heaven|strong="H8064"\w*. +\v 10 \w Now|strong="H6258"\w* \w you|strong="H5973"\w* intend \w to|strong="H3068"\w* degrade \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w and|strong="H1121"\w* \w Jerusalem|strong="H3389"\w* \w as|strong="H3068"\w* \w male|strong="H5650"\w* \w and|strong="H1121"\w* \w female|strong="H8198"\w* \w slaves|strong="H5650"\w* \w for|strong="H3068"\w* \w yourselves|strong="H3068"\w*. Aren’t \w there|strong="H6258"\w* \w even|strong="H3808"\w* \w with|strong="H5973"\w* \w you|strong="H5973"\w* trespasses \w of|strong="H1121"\w* \w your|strong="H3068"\w* \w own|strong="H5973"\w* \w against|strong="H5973"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*? +\v 11 \w Now|strong="H6258"\w* \w hear|strong="H8085"\w* \w me|strong="H7725"\w* \w therefore|strong="H5921"\w*, \w and|strong="H3068"\w* send \w back|strong="H7725"\w* \w the|strong="H5921"\w* \w captives|strong="H7617"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w taken|strong="H7617"\w* \w captive|strong="H7617"\w* \w from|strong="H7725"\w* \w your|strong="H3068"\w* brothers, \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w fierce|strong="H2740"\w* \w wrath|strong="H2740"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*.” +\v 12 \w Then|strong="H6965"\w* \w some|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w heads|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Ephraim, \w Azariah|strong="H5838"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Johanan|strong="H3076"\w*, \w Berechiah|strong="H1296"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Meshillemoth|strong="H4919"\w*, \w Jehizkiah|strong="H3169"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shallum|strong="H7967"\w*, \w and|strong="H1121"\w* \w Amasa|strong="H6021"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hadlai|strong="H2311"\w*, \w stood|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H5921"\w* \w those|strong="H4480"\w* \w who|strong="H1121"\w* \w came|strong="H6635"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* \w war|strong="H6635"\w*, +\v 13 \w and|strong="H3478"\w* said \w to|strong="H3478"\w* \w them|strong="H5921"\w*, “\w You|strong="H3588"\w* \w must|strong="H3478"\w* \w not|strong="H3808"\w* \w bring|strong="H3254"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w captives|strong="H7633"\w* \w here|strong="H2008"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* intend \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w will|strong="H3068"\w* \w bring|strong="H3254"\w* \w on|strong="H5921"\w* \w us|strong="H5921"\w* \w a|strong="H3068"\w* trespass \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w to|strong="H3478"\w* \w add|strong="H3254"\w* \w to|strong="H3478"\w* \w our|strong="H3068"\w* \w sins|strong="H2403"\w* \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w our|strong="H3068"\w* guilt; \w for|strong="H3588"\w* \w our|strong="H3068"\w* guilt \w is|strong="H3068"\w* \w great|strong="H7227"\w*, \w and|strong="H3478"\w* \w there|strong="H2008"\w* \w is|strong="H3068"\w* \w fierce|strong="H2740"\w* \w wrath|strong="H2740"\w* \w against|strong="H5921"\w* \w Israel|strong="H3478"\w*.” +\p +\v 14 \w So|strong="H5800"\w* \w the|strong="H3605"\w* \w armed|strong="H2502"\w* \w men|strong="H2502"\w* \w left|strong="H5800"\w* \w the|strong="H3605"\w* \w captives|strong="H7633"\w* \w and|strong="H6440"\w* \w the|strong="H3605"\w* plunder \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w and|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w*. +\v 15 \w The|strong="H3605"\w* \w men|strong="H3605"\w* \w who|strong="H3605"\w* \w have|strong="H3605"\w* \w been|strong="H3605"\w* mentioned \w by|strong="H6965"\w* \w name|strong="H8034"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H6965"\w* \w took|strong="H2388"\w* \w the|strong="H3605"\w* \w captives|strong="H7633"\w*, \w and|strong="H6965"\w* \w with|strong="H3847"\w* \w the|strong="H3605"\w* \w plunder|strong="H7998"\w* \w clothed|strong="H3847"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H5892"\w* \w naked|strong="H4636"\w* \w among|strong="H4480"\w* \w them|strong="H7725"\w*, \w dressed|strong="H3847"\w* \w them|strong="H7725"\w*, \w gave|strong="H8248"\w* \w them|strong="H7725"\w* \w sandals|strong="H5274"\w*, \w gave|strong="H8248"\w* \w them|strong="H7725"\w* \w something|strong="H3605"\w* \w to|strong="H7725"\w* eat \w and|strong="H6965"\w* \w to|strong="H7725"\w* \w drink|strong="H8248"\w*, \w anointed|strong="H5480"\w* \w them|strong="H7725"\w*, \w carried|strong="H2388"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w feeble|strong="H3782"\w* \w of|strong="H5892"\w* \w them|strong="H7725"\w* \w on|strong="H3847"\w* \w donkeys|strong="H2543"\w*, \w and|strong="H6965"\w* \w brought|strong="H7725"\w* \w them|strong="H7725"\w* \w to|strong="H7725"\w* \w Jericho|strong="H3405"\w*, \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w of|strong="H5892"\w* \w palm|strong="H8558"\w* \w trees|strong="H8558"\w*, \w to|strong="H7725"\w* \w their|strong="H3605"\w* brothers. \w Then|strong="H6965"\w* \w they|strong="H3605"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Samaria|strong="H8111"\w*. +\p +\v 16 \w At|strong="H5921"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w* \w King|strong="H4428"\w* Ahaz \w sent|strong="H7971"\w* \w to|strong="H7971"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w to|strong="H7971"\w* \w help|strong="H5826"\w* \w him|strong="H5921"\w*. +\v 17 \w For|strong="H7628"\w* \w again|strong="H5750"\w* \w the|strong="H5221"\w* Edomites \w had|strong="H3063"\w* \w come|strong="H3063"\w* \w and|strong="H3063"\w* \w struck|strong="H5221"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w carried|strong="H7617"\w* \w away|strong="H7617"\w* \w captives|strong="H7617"\w*. +\v 18 \w The|strong="H8033"\w* \w Philistines|strong="H6430"\w* \w also|strong="H6430"\w* \w had|strong="H3063"\w* \w invaded|strong="H6584"\w* \w the|strong="H8033"\w* \w cities|strong="H5892"\w* \w of|strong="H1323"\w* \w the|strong="H8033"\w* \w lowland|strong="H8219"\w* \w and|strong="H3063"\w* \w of|strong="H1323"\w* \w the|strong="H8033"\w* \w South|strong="H5045"\w* \w of|strong="H1323"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w had|strong="H3063"\w* \w taken|strong="H3920"\w* Beth Shemesh, Aijalon, \w Gederoth|strong="H1450"\w*, \w Soco|strong="H7755"\w* \w with|strong="H3427"\w* \w its|strong="H3920"\w* \w villages|strong="H1323"\w*, \w Timnah|strong="H8553"\w* \w with|strong="H3427"\w* \w its|strong="H3920"\w* \w villages|strong="H1323"\w*, \w and|strong="H3063"\w* \w also|strong="H6430"\w* \w Gimzo|strong="H1579"\w* \w and|strong="H3063"\w* \w its|strong="H3920"\w* \w villages|strong="H1323"\w*; \w and|strong="H3063"\w* \w they|strong="H8033"\w* \w lived|strong="H3427"\w* \w there|strong="H8033"\w*. +\v 19 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w brought|strong="H3478"\w* \w Judah|strong="H3063"\w* \w low|strong="H3665"\w* \w because|strong="H3588"\w* \w of|strong="H4428"\w* Ahaz \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w acted|strong="H4603"\w* \w without|strong="H3588"\w* \w restraint|strong="H6544"\w* \w in|strong="H3478"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w trespassed|strong="H4603"\w* severely \w against|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 20 \w Tilgath-pilneser|strong="H8407"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w came|strong="H4428"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w* \w and|strong="H4428"\w* \w gave|strong="H2388"\w* \w him|strong="H5921"\w* trouble, \w but|strong="H3808"\w* didn’t \w strengthen|strong="H2388"\w* \w him|strong="H5921"\w*. +\v 21 \w For|strong="H3588"\w* Ahaz \w took|strong="H4428"\w* \w away|strong="H5414"\w* \w a|strong="H3068"\w* \w portion|strong="H2505"\w* \w out|strong="H5414"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w out|strong="H5414"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w and|strong="H3068"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w princes|strong="H8269"\w*, \w and|strong="H3068"\w* \w gave|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria; \w but|strong="H3588"\w* \w it|strong="H5414"\w* didn’t \w help|strong="H5833"\w* \w him|strong="H5414"\w*. +\p +\v 22 \w In|strong="H3068"\w* \w the|strong="H3068"\w* \w time|strong="H6256"\w* \w of|strong="H4428"\w* \w his|strong="H3068"\w* \w distress|strong="H6887"\w*, \w he|strong="H1931"\w* \w trespassed|strong="H4603"\w* \w yet|strong="H3254"\w* \w more|strong="H3254"\w* \w against|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w this|strong="H1931"\w* \w same|strong="H1931"\w* \w King|strong="H4428"\w* Ahaz. +\v 23 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w sacrificed|strong="H2076"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* gods \w of|strong="H4428"\w* \w Damascus|strong="H1834"\w* \w which|strong="H1992"\w* \w had|strong="H1961"\w* \w defeated|strong="H5221"\w* \w him|strong="H5221"\w*. \w He|strong="H3588"\w* said, “\w Because|strong="H3588"\w* \w the|strong="H3605"\w* gods \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* Syria \w helped|strong="H5826"\w* \w them|strong="H1992"\w*, \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w sacrifice|strong="H2076"\w* \w to|strong="H3478"\w* \w them|strong="H1992"\w*, \w that|strong="H3588"\w* \w they|strong="H1992"\w* \w may|strong="H1961"\w* \w help|strong="H5826"\w* \w me|strong="H5221"\w*.” \w But|strong="H3588"\w* \w they|strong="H1992"\w* \w were|strong="H3478"\w* \w the|strong="H3605"\w* \w ruin|strong="H3782"\w* \w of|strong="H4428"\w* \w him|strong="H5221"\w* \w and|strong="H3478"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*. +\v 24 Ahaz \w gathered|strong="H6213"\w* \w together|strong="H5462"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H1004"\w* \w God|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w cut|strong="H7112"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H1004"\w* \w God|strong="H3068"\w*’s \w house|strong="H1004"\w* \w in|strong="H3068"\w* \w pieces|strong="H7112"\w*, \w and|strong="H3068"\w* \w shut|strong="H5462"\w* \w up|strong="H5462"\w* \w the|strong="H3605"\w* \w doors|strong="H1817"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*; \w and|strong="H3068"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w himself|strong="H6213"\w* \w altars|strong="H4196"\w* \w in|strong="H3068"\w* \w every|strong="H3605"\w* \w corner|strong="H6438"\w* \w of|strong="H1004"\w* \w Jerusalem|strong="H3389"\w*. +\v 25 \w In|strong="H3068"\w* \w every|strong="H3605"\w* \w city|strong="H5892"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w to|strong="H3068"\w* \w burn|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H3068"\w* \w other|strong="H3605"\w* gods, \w and|strong="H3063"\w* \w provoked|strong="H3707"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* fathers, \w to|strong="H3068"\w* \w anger|strong="H3707"\w*. +\p +\v 26 \w Now|strong="H2005"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* \w acts|strong="H1697"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w ways|strong="H1870"\w*, \w first|strong="H7223"\w* \w and|strong="H3063"\w* last, \w behold|strong="H2005"\w*, \w they|strong="H5921"\w* \w are|strong="H3478"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Israel|strong="H3478"\w*. +\v 27 Ahaz \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H3478"\w* fathers, \w and|strong="H1121"\w* \w they|strong="H3588"\w* \w buried|strong="H6912"\w* \w him|strong="H4427"\w* \w in|strong="H3478"\w* \w the|strong="H3588"\w* \w city|strong="H5892"\w*, \w even|strong="H3588"\w* \w in|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* didn’t bring \w him|strong="H4427"\w* \w into|strong="H5892"\w* \w the|strong="H3588"\w* \w tombs|strong="H6913"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w kings|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w and|strong="H1121"\w* \w Hezekiah|strong="H2396"\w* \w his|strong="H3478"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H3478"\w* \w his|strong="H3478"\w* \w place|strong="H8478"\w*. +\c 29 +\p +\v 1 \w Hezekiah|strong="H2396"\w* began \w to|strong="H3389"\w* \w reign|strong="H4427"\w* \w when|strong="H1121"\w* \w he|strong="H2568"\w* \w was|strong="H8034"\w* \w twenty-five|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*, \w and|strong="H1121"\w* \w he|strong="H2568"\w* \w reigned|strong="H4427"\w* \w twenty-nine|strong="H6242"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H2396"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* Abijah, \w the|strong="H8034"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Zechariah|strong="H2148"\w*. +\v 2 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w right|strong="H3477"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*, according \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w David|strong="H1732"\w* \w his|strong="H3605"\w* father \w had|strong="H3068"\w* \w done|strong="H6213"\w*. +\v 3 \w In|strong="H8141"\w* \w the|strong="H3068"\w* \w first|strong="H7223"\w* \w year|strong="H8141"\w* \w of|strong="H1004"\w* \w his|strong="H3068"\w* \w reign|strong="H4427"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*, \w he|strong="H1931"\w* \w opened|strong="H6605"\w* \w the|strong="H3068"\w* \w doors|strong="H1817"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w and|strong="H3068"\w* \w repaired|strong="H2388"\w* \w them|strong="H2388"\w*. +\v 4 \w He|strong="H4217"\w* \w brought|strong="H3548"\w* \w in|strong="H3881"\w* \w the|strong="H3548"\w* \w priests|strong="H3548"\w* \w and|strong="H3548"\w* \w the|strong="H3548"\w* \w Levites|strong="H3881"\w* \w and|strong="H3548"\w* gathered them together \w into|strong="H4217"\w* \w the|strong="H3548"\w* wide place on \w the|strong="H3548"\w* \w east|strong="H4217"\w*, +\v 5 \w and|strong="H3068"\w* \w said|strong="H8085"\w* \w to|strong="H3318"\w* \w them|strong="H3318"\w*, “\w Listen|strong="H8085"\w* \w to|strong="H3318"\w* \w me|strong="H4480"\w*, \w you|strong="H4480"\w* \w Levites|strong="H3881"\w*! \w Now|strong="H6258"\w* \w sanctify|strong="H6942"\w* \w yourselves|strong="H6942"\w*, \w and|strong="H3068"\w* \w sanctify|strong="H6942"\w* \w the|strong="H8085"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H8085"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w your|strong="H3068"\w* fathers, \w and|strong="H3068"\w* \w carry|strong="H3318"\w* \w the|strong="H8085"\w* \w filthiness|strong="H5079"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H8085"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w*. +\v 6 \w For|strong="H3588"\w* \w our|strong="H3068"\w* fathers \w were|strong="H5869"\w* \w unfaithful|strong="H4603"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w him|strong="H5414"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w turned|strong="H5437"\w* \w away|strong="H5437"\w* \w their|strong="H3068"\w* \w faces|strong="H6440"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w habitation|strong="H4908"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w turned|strong="H5437"\w* \w their|strong="H3068"\w* \w backs|strong="H6203"\w*. +\v 7 \w Also|strong="H1571"\w* \w they|strong="H3808"\w* \w have|strong="H1571"\w* \w shut|strong="H5462"\w* \w up|strong="H5927"\w* \w the|strong="H5927"\w* \w doors|strong="H1817"\w* \w of|strong="H1817"\w* \w the|strong="H5927"\w* porch, \w and|strong="H3478"\w* \w put|strong="H5927"\w* \w out|strong="H3518"\w* \w the|strong="H5927"\w* \w lamps|strong="H5216"\w*, \w and|strong="H3478"\w* \w have|strong="H1571"\w* \w not|strong="H3808"\w* \w burned|strong="H6999"\w* \w incense|strong="H7004"\w* \w nor|strong="H3808"\w* \w offered|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w in|strong="H3478"\w* \w the|strong="H5927"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w* \w to|strong="H3478"\w* \w the|strong="H5927"\w* \w God|strong="H3808"\w* \w of|strong="H1817"\w* \w Israel|strong="H3478"\w*. +\v 8 \w Therefore|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w wrath|strong="H7110"\w* \w was|strong="H3068"\w* \w on|strong="H5921"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3063"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w delivered|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H3068"\w* \w be|strong="H1961"\w* tossed back \w and|strong="H3063"\w* \w forth|strong="H5414"\w*, \w to|strong="H3068"\w* \w be|strong="H1961"\w* \w an|strong="H1961"\w* \w astonishment|strong="H8047"\w* \w and|strong="H3063"\w* \w a|strong="H3068"\w* \w hissing|strong="H8322"\w*, \w as|strong="H1961"\w* \w you|strong="H5414"\w* \w see|strong="H7200"\w* \w with|strong="H3068"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w*. +\v 9 \w For|strong="H5921"\w* \w behold|strong="H2009"\w*, \w our|strong="H5921"\w* fathers \w have|strong="H1121"\w* \w fallen|strong="H5307"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w*, \w and|strong="H1121"\w* \w our|strong="H5921"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w our|strong="H5921"\w* \w daughters|strong="H1323"\w* \w and|strong="H1121"\w* \w our|strong="H5921"\w* wives \w are|strong="H1121"\w* \w in|strong="H5921"\w* \w captivity|strong="H7628"\w* \w for|strong="H5921"\w* \w this|strong="H2063"\w*. +\v 10 \w Now|strong="H6258"\w* \w it|strong="H7725"\w* \w is|strong="H3068"\w* \w in|strong="H3478"\w* \w my|strong="H3068"\w* \w heart|strong="H3824"\w* \w to|strong="H7725"\w* \w make|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H5973"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w that|strong="H3068"\w* \w his|strong="H3068"\w* \w fierce|strong="H2740"\w* \w anger|strong="H2740"\w* \w may|strong="H3068"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w from|strong="H4480"\w* \w us|strong="H7725"\w*. +\v 11 \w My|strong="H3068"\w* \w sons|strong="H1121"\w*, don’t \w be|strong="H1961"\w* \w negligent|strong="H7952"\w* \w now|strong="H6258"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* chosen \w you|strong="H3588"\w* \w to|strong="H3068"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, \w to|strong="H3068"\w* \w minister|strong="H8334"\w* \w to|strong="H3068"\w* \w him|strong="H6440"\w*, \w and|strong="H1121"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w should|strong="H3068"\w* \w be|strong="H1961"\w* \w his|strong="H3068"\w* \w ministers|strong="H8334"\w* \w and|strong="H1121"\w* \w burn|strong="H6999"\w* \w incense|strong="H6999"\w*.” +\p +\v 12 \w Then|strong="H6965"\w* \w the|strong="H4480"\w* \w Levites|strong="H3881"\w* \w arose|strong="H6965"\w*: \w Mahath|strong="H4287"\w*, \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Amasai|strong="H6022"\w*, \w and|strong="H1121"\w* \w Joel|strong="H3100"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Azariah|strong="H5838"\w*, \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w Kohathites|strong="H6956"\w*; \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w*, \w Kish|strong="H7027"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Abdi|strong="H5660"\w*, \w and|strong="H1121"\w* \w Azariah|strong="H5838"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehallelel|strong="H3094"\w*; \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w Gershonites|strong="H1649"\w*, \w Joah|strong="H3098"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zimmah|strong="H2155"\w*, \w and|strong="H1121"\w* \w Eden|strong="H5731"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joah|strong="H3098"\w*; +\v 13 \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Elizaphan, \w Shimri|strong="H8113"\w* \w and|strong="H1121"\w* \w Jeuel|strong="H3273"\w*; \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Asaph, \w Zechariah|strong="H2148"\w* \w and|strong="H1121"\w* \w Mattaniah|strong="H4983"\w*; +\v 14 \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Heman|strong="H1968"\w*, Jehuel \w and|strong="H1121"\w* \w Shimei|strong="H8096"\w*; \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeduthun|strong="H3038"\w*, \w Shemaiah|strong="H8098"\w* \w and|strong="H1121"\w* \w Uzziel|strong="H5816"\w*. +\v 15 \w They|strong="H3068"\w* gathered \w their|strong="H3068"\w* brothers, \w sanctified|strong="H6942"\w* \w themselves|strong="H6942"\w*, \w and|strong="H3068"\w* \w went|strong="H3068"\w* \w in|strong="H3068"\w*, according \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w commandment|strong="H4687"\w* \w of|strong="H4428"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w words|strong="H1697"\w*, \w to|strong="H3068"\w* \w cleanse|strong="H2891"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 16 \w The|strong="H3605"\w* \w priests|strong="H3548"\w* \w went|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H3605"\w* \w inner|strong="H6441"\w* \w part|strong="H6441"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w to|strong="H3318"\w* \w cleanse|strong="H2891"\w* \w it|strong="H4672"\w*, \w and|strong="H3068"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w uncleanness|strong="H2932"\w* \w that|strong="H3605"\w* \w they|strong="H3068"\w* \w found|strong="H4672"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1004"\w* \w into|strong="H3318"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. \w The|strong="H3605"\w* \w Levites|strong="H3881"\w* \w took|strong="H3318"\w* \w it|strong="H4672"\w* \w from|strong="H3318"\w* \w there|strong="H4672"\w* \w to|strong="H3318"\w* \w carry|strong="H3318"\w* \w it|strong="H4672"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w brook|strong="H5158"\w* \w Kidron|strong="H6939"\w*. +\v 17 \w Now|strong="H3117"\w* \w they|strong="H3117"\w* \w began|strong="H2490"\w* \w on|strong="H3117"\w* \w the|strong="H3068"\w* \w first|strong="H7223"\w* \w day|strong="H3117"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w* \w to|strong="H3068"\w* \w sanctify|strong="H6942"\w*, \w and|strong="H3068"\w* \w on|strong="H3117"\w* \w the|strong="H3068"\w* \w eighth|strong="H8083"\w* \w day|strong="H3117"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w month|strong="H2320"\w* \w they|strong="H3117"\w* \w came|strong="H3068"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s porch. \w They|strong="H3117"\w* \w sanctified|strong="H6942"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w in|strong="H3068"\w* \w eight|strong="H8083"\w* \w days|strong="H3117"\w*, \w and|strong="H3068"\w* \w on|strong="H3117"\w* \w the|strong="H3068"\w* \w sixteenth|strong="H8337"\w* \w day|strong="H3117"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w* \w they|strong="H3117"\w* \w finished|strong="H3615"\w*. +\v 18 \w Then|strong="H4428"\w* \w they|strong="H3068"\w* \w went|strong="H3068"\w* \w in|strong="H3068"\w* \w to|strong="H3068"\w* \w Hezekiah|strong="H2396"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w within|strong="H1004"\w* \w the|strong="H3605"\w* \w palace|strong="H1004"\w* \w and|strong="H3068"\w* said, “\w We|strong="H3605"\w* \w have|strong="H3068"\w* \w cleansed|strong="H2891"\w* \w all|strong="H3605"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w including|strong="H3605"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w of|strong="H4428"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w with|strong="H1004"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w vessels|strong="H3627"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w table|strong="H7979"\w* \w of|strong="H4428"\w* show bread \w with|strong="H1004"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w vessels|strong="H3627"\w*. +\v 19 Moreover, \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w prepared|strong="H3559"\w* \w and|strong="H3068"\w* \w sanctified|strong="H6942"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w which|strong="H3068"\w* \w King|strong="H4428"\w* Ahaz threw \w away|strong="H3605"\w* \w in|strong="H3068"\w* \w his|strong="H3605"\w* \w reign|strong="H4438"\w* \w when|strong="H3068"\w* \w he|strong="H3068"\w* \w was|strong="H3068"\w* \w unfaithful|strong="H4604"\w*. \w Behold|strong="H2005"\w*, \w they|strong="H3068"\w* \w are|strong="H3068"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*’s \w altar|strong="H4196"\w*.” +\p +\v 20 \w Then|strong="H4428"\w* \w Hezekiah|strong="H2396"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w arose|strong="H7925"\w* \w early|strong="H7925"\w*, gathered \w the|strong="H3068"\w* \w princes|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H3068"\w* \w city|strong="H5892"\w*, \w and|strong="H3068"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 21 \w They|strong="H3068"\w* \w brought|strong="H5927"\w* \w seven|strong="H7651"\w* \w bulls|strong="H6499"\w*, \w seven|strong="H7651"\w* rams, \w seven|strong="H7651"\w* \w lambs|strong="H3532"\w*, \w and|strong="H1121"\w* \w seven|strong="H7651"\w* \w male|strong="H3532"\w* \w goats|strong="H5795"\w*, \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w kingdom|strong="H4467"\w*, \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w sanctuary|strong="H4720"\w*, \w and|strong="H1121"\w* \w for|strong="H5921"\w* \w Judah|strong="H3063"\w*. \w He|strong="H3068"\w* commanded \w the|strong="H5921"\w* \w priests|strong="H3548"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w to|strong="H3068"\w* \w offer|strong="H5927"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w altar|strong="H4196"\w*. +\v 22 So \w they|strong="H4196"\w* \w killed|strong="H7819"\w* \w the|strong="H7819"\w* \w bulls|strong="H1241"\w*, \w and|strong="H3548"\w* \w the|strong="H7819"\w* \w priests|strong="H3548"\w* \w received|strong="H6901"\w* \w the|strong="H7819"\w* \w blood|strong="H1818"\w* \w and|strong="H3548"\w* \w sprinkled|strong="H2236"\w* \w it|strong="H7819"\w* \w on|strong="H4196"\w* \w the|strong="H7819"\w* \w altar|strong="H4196"\w*. \w They|strong="H4196"\w* \w killed|strong="H7819"\w* \w the|strong="H7819"\w* rams \w and|strong="H3548"\w* \w sprinkled|strong="H2236"\w* \w the|strong="H7819"\w* \w blood|strong="H1818"\w* \w on|strong="H4196"\w* \w the|strong="H7819"\w* \w altar|strong="H4196"\w*. \w They|strong="H4196"\w* \w also|strong="H6901"\w* \w killed|strong="H7819"\w* \w the|strong="H7819"\w* \w lambs|strong="H3532"\w* \w and|strong="H3548"\w* \w sprinkled|strong="H2236"\w* \w the|strong="H7819"\w* \w blood|strong="H1818"\w* \w on|strong="H4196"\w* \w the|strong="H7819"\w* \w altar|strong="H4196"\w*. +\v 23 \w They|strong="H5921"\w* \w brought|strong="H5066"\w* \w near|strong="H5066"\w* \w the|strong="H6440"\w* \w male|strong="H8163"\w* \w goats|strong="H8163"\w* \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w the|strong="H6440"\w* \w assembly|strong="H6951"\w*; \w and|strong="H4428"\w* \w they|strong="H5921"\w* \w laid|strong="H5564"\w* \w their|strong="H5564"\w* \w hands|strong="H3027"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 24 \w Then|strong="H4428"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w killed|strong="H7819"\w* \w them|strong="H5921"\w*, \w and|strong="H3478"\w* \w they|strong="H3588"\w* \w made|strong="H3722"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w* \w with|strong="H5921"\w* \w their|strong="H3605"\w* \w blood|strong="H1818"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*, \w to|strong="H3478"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*; \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* commanded \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w* \w should|strong="H3588"\w* \w be|strong="H3478"\w* \w made|strong="H3722"\w* \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*. +\p +\v 25 \w He|strong="H3588"\w* \w set|strong="H5975"\w* \w the|strong="H3588"\w* \w Levites|strong="H3881"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w with|strong="H1004"\w* \w cymbals|strong="H4700"\w*, \w with|strong="H1004"\w* stringed instruments, \w and|strong="H3068"\w* \w with|strong="H1004"\w* \w harps|strong="H3658"\w*, \w according|strong="H3027"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w commandment|strong="H4687"\w* \w of|strong="H4428"\w* \w David|strong="H1732"\w*, \w of|strong="H4428"\w* \w Gad|strong="H1410"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w*’s \w seer|strong="H2374"\w*, \w and|strong="H3068"\w* \w Nathan|strong="H5416"\w* \w the|strong="H3588"\w* \w prophet|strong="H5030"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w commandment|strong="H4687"\w* \w was|strong="H3068"\w* \w from|strong="H3027"\w* \w Yahweh|strong="H3068"\w* \w by|strong="H3027"\w* \w his|strong="H3068"\w* \w prophets|strong="H5030"\w*. +\v 26 \w The|strong="H5975"\w* \w Levites|strong="H3881"\w* \w stood|strong="H5975"\w* \w with|strong="H3548"\w* \w David|strong="H1732"\w*’s \w instruments|strong="H3627"\w*, \w and|strong="H3548"\w* \w the|strong="H5975"\w* \w priests|strong="H3548"\w* \w with|strong="H3548"\w* \w the|strong="H5975"\w* \w trumpets|strong="H2689"\w*. +\v 27 \w Hezekiah|strong="H2396"\w* commanded \w them|strong="H5921"\w* \w to|strong="H3478"\w* \w offer|strong="H5927"\w* \w the|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*. \w When|strong="H6256"\w* \w the|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w began|strong="H2490"\w*, \w Yahweh|strong="H3068"\w*’s \w song|strong="H7892"\w* \w also|strong="H3068"\w* \w began|strong="H2490"\w*, \w along|strong="H5921"\w* \w with|strong="H3068"\w* \w the|strong="H5921"\w* \w trumpets|strong="H2689"\w* \w and|strong="H3478"\w* \w instruments|strong="H3627"\w* \w of|strong="H4428"\w* \w David|strong="H1732"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. +\v 28 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w worshiped|strong="H7812"\w*, \w the|strong="H3605"\w* \w singers|strong="H7891"\w* \w sang|strong="H7891"\w*, \w and|strong="H5930"\w* \w the|strong="H3605"\w* \w trumpeters|strong="H2689"\w* \w sounded|strong="H2690"\w*. \w All|strong="H3605"\w* \w this|strong="H3605"\w* continued \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w was|strong="H3605"\w* \w finished|strong="H3615"\w*. +\p +\v 29 \w When|strong="H3615"\w* \w they|strong="H3605"\w* \w had|strong="H4428"\w* \w finished|strong="H3615"\w* \w offering|strong="H5927"\w*, \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H4428"\w* \w present|strong="H4672"\w* \w with|strong="H5927"\w* \w him|strong="H4672"\w* \w bowed|strong="H7812"\w* \w themselves|strong="H7812"\w* \w and|strong="H4428"\w* \w worshiped|strong="H7812"\w*. +\v 30 Moreover \w Hezekiah|strong="H2396"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w princes|strong="H8269"\w* commanded \w the|strong="H3068"\w* \w Levites|strong="H3881"\w* \w to|strong="H5704"\w* \w sing|strong="H1984"\w* \w praises|strong="H1984"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w the|strong="H3068"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w David|strong="H1732"\w*, \w and|strong="H3068"\w* \w of|strong="H4428"\w* Asaph \w the|strong="H3068"\w* \w seer|strong="H2374"\w*. \w They|strong="H3068"\w* \w sang|strong="H1984"\w* \w praises|strong="H1984"\w* \w with|strong="H3068"\w* \w gladness|strong="H8057"\w*, \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w bowed|strong="H7812"\w* \w their|strong="H3068"\w* \w heads|strong="H6915"\w* \w and|strong="H3068"\w* \w worshiped|strong="H7812"\w*. +\p +\v 31 \w Then|strong="H6030"\w* \w Hezekiah|strong="H2396"\w* \w answered|strong="H6030"\w*, “\w Now|strong="H6258"\w* \w you|strong="H3605"\w* \w have|strong="H3068"\w* \w consecrated|strong="H4390"\w* \w yourselves|strong="H3027"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w Come|strong="H5066"\w* \w near|strong="H5066"\w* \w and|strong="H3068"\w* \w bring|strong="H5066"\w* \w sacrifices|strong="H2077"\w* \w and|strong="H3068"\w* \w thank|strong="H8426"\w* \w offerings|strong="H5930"\w* \w into|strong="H3027"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*.” \w The|strong="H3605"\w* \w assembly|strong="H6951"\w* \w brought|strong="H5066"\w* \w in|strong="H3068"\w* \w sacrifices|strong="H2077"\w* \w and|strong="H3068"\w* \w thank|strong="H8426"\w* \w offerings|strong="H5930"\w*, \w and|strong="H3068"\w* \w as|strong="H3068"\w* many \w as|strong="H3068"\w* \w were|strong="H3027"\w* \w of|strong="H1004"\w* \w a|strong="H3068"\w* \w willing|strong="H5081"\w* \w heart|strong="H3820"\w* \w brought|strong="H5066"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w*. +\v 32 \w The|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w which|strong="H3068"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w brought|strong="H1961"\w* \w was|strong="H3068"\w* \w seventy|strong="H7657"\w* \w bulls|strong="H1241"\w*, \w one|strong="H3532"\w* \w hundred|strong="H3967"\w* rams, \w and|strong="H3967"\w* \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* \w lambs|strong="H3532"\w*. \w All|strong="H3605"\w* \w these|strong="H3605"\w* \w were|strong="H1961"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 33 \w The|strong="H6942"\w* \w consecrated|strong="H6942"\w* \w things|strong="H7969"\w* \w were|strong="H6629"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* head \w of|strong="H6629"\w* \w cattle|strong="H1241"\w* \w and|strong="H3967"\w* \w three|strong="H7969"\w* thousand \w sheep|strong="H6629"\w*. +\v 34 \w But|strong="H3588"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w were|strong="H1961"\w* \w too|strong="H1961"\w* \w few|strong="H4592"\w*, \w so|strong="H1961"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w could|strong="H3201"\w* \w not|strong="H3808"\w* \w skin|strong="H6584"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w*. \w Therefore|strong="H3588"\w* \w their|strong="H3605"\w* brothers \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w helped|strong="H2388"\w* \w them|strong="H3615"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w was|strong="H1961"\w* \w ended|strong="H1961"\w*, \w and|strong="H3548"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w had|strong="H1961"\w* \w sanctified|strong="H6942"\w* \w themselves|strong="H6942"\w*, \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w were|strong="H1961"\w* \w more|strong="H3808"\w* \w upright|strong="H3477"\w* \w in|strong="H3477"\w* \w heart|strong="H3824"\w* \w to|strong="H5704"\w* \w sanctify|strong="H6942"\w* \w themselves|strong="H6942"\w* \w than|strong="H3808"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w*. +\v 35 \w Also|strong="H1571"\w* \w the|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w* \w were|strong="H1004"\w* \w in|strong="H3068"\w* \w abundance|strong="H7230"\w*, \w with|strong="H1004"\w* \w the|strong="H3068"\w* \w fat|strong="H2459"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w and|strong="H3068"\w* \w with|strong="H1004"\w* \w the|strong="H3068"\w* \w drink|strong="H5262"\w* \w offerings|strong="H8002"\w* \w for|strong="H3068"\w* \w every|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*. \w So|strong="H1571"\w* \w the|strong="H3068"\w* \w service|strong="H5656"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w was|strong="H3068"\w* \w set|strong="H3559"\w* \w in|strong="H3068"\w* \w order|strong="H3559"\w*. +\v 36 \w Hezekiah|strong="H2396"\w* \w and|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w rejoiced|strong="H8055"\w* \w because|strong="H3588"\w* \w of|strong="H1697"\w* \w that|strong="H3588"\w* \w which|strong="H1697"\w* God \w had|strong="H1961"\w* \w prepared|strong="H3559"\w* \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*; \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w thing|strong="H1697"\w* \w was|strong="H1961"\w* \w done|strong="H1961"\w* \w suddenly|strong="H6597"\w*. +\c 30 +\p +\v 1 \w Hezekiah|strong="H2396"\w* \w sent|strong="H7971"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w wrote|strong="H3789"\w* letters \w also|strong="H1571"\w* \w to|strong="H3478"\w* Ephraim \w and|strong="H3063"\w* \w Manasseh|strong="H4519"\w*, \w that|strong="H3605"\w* \w they|strong="H3068"\w* \w should|strong="H3068"\w* \w come|strong="H3478"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w at|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, \w to|strong="H3478"\w* \w keep|strong="H6213"\w* \w the|strong="H3605"\w* \w Passover|strong="H6453"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. +\v 2 \w For|strong="H6213"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w had|strong="H4428"\w* \w taken|strong="H3289"\w* \w counsel|strong="H3289"\w* \w with|strong="H6213"\w* \w his|strong="H3605"\w* \w princes|strong="H8269"\w* \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w in|strong="H6213"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H6213"\w* \w keep|strong="H6213"\w* \w the|strong="H3605"\w* \w Passover|strong="H6453"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w second|strong="H8145"\w* \w month|strong="H2320"\w*. +\v 3 \w For|strong="H3588"\w* \w they|strong="H3588"\w* \w could|strong="H3201"\w* \w not|strong="H3808"\w* \w keep|strong="H6213"\w* \w it|strong="H1931"\w* \w at|strong="H6213"\w* \w that|strong="H3588"\w* \w time|strong="H6256"\w*, \w because|strong="H3588"\w* \w the|strong="H3588"\w* \w priests|strong="H3548"\w* \w had|strong="H3588"\w* \w not|strong="H3808"\w* \w sanctified|strong="H6942"\w* \w themselves|strong="H6942"\w* \w in|strong="H6213"\w* sufficient number, \w and|strong="H3548"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w had|strong="H3588"\w* \w not|strong="H3808"\w* \w gathered|strong="H6213"\w* \w themselves|strong="H6942"\w* \w together|strong="H5971"\w* \w to|strong="H3201"\w* \w Jerusalem|strong="H3389"\w*. +\v 4 \w The|strong="H3605"\w* \w thing|strong="H1697"\w* \w was|strong="H1697"\w* \w right|strong="H3474"\w* \w in|strong="H4428"\w* \w the|strong="H3605"\w* \w eyes|strong="H5869"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w*. +\v 5 \w So|strong="H6213"\w* \w they|strong="H3588"\w* \w established|strong="H5975"\w* \w a|strong="H3068"\w* \w decree|strong="H1697"\w* \w to|strong="H5704"\w* \w make|strong="H6213"\w* \w proclamation|strong="H6963"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w from|strong="H3478"\w* Beersheba \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Dan|strong="H1835"\w*, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w should|strong="H3068"\w* \w come|strong="H5674"\w* \w to|strong="H5704"\w* \w keep|strong="H6213"\w* \w the|strong="H3605"\w* \w Passover|strong="H6453"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w at|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3068"\w* \w not|strong="H3808"\w* \w kept|strong="H6213"\w* \w it|strong="H3588"\w* \w in|strong="H3478"\w* \w great|strong="H7230"\w* \w numbers|strong="H7230"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w way|strong="H1697"\w* \w it|strong="H3588"\w* \w is|strong="H3068"\w* \w written|strong="H3789"\w*. +\p +\v 6 \w So|strong="H7725"\w* \w the|strong="H3605"\w* \w couriers|strong="H7323"\w* \w went|strong="H3212"\w* \w with|strong="H3068"\w* \w the|strong="H3605"\w* letters \w from|strong="H7725"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w and|strong="H1121"\w* \w his|strong="H3605"\w* \w princes|strong="H8269"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w and|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w according|strong="H3027"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w commandment|strong="H4687"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, saying, “\w You|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w turn|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* Abraham, \w Isaac|strong="H3327"\w*, \w and|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w that|strong="H3605"\w* \w he|strong="H3068"\w* \w may|strong="H3068"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w remnant|strong="H7604"\w* \w of|strong="H1121"\w* \w you|strong="H3605"\w* \w that|strong="H3605"\w* \w have|strong="H3068"\w* \w escaped|strong="H6413"\w* \w out|strong="H3212"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H1121"\w* Assyria. +\v 7 Don’t \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w your|strong="H3068"\w* fathers \w and|strong="H3068"\w* \w like|strong="H1961"\w* \w your|strong="H3068"\w* brothers, \w who|strong="H3068"\w* \w trespassed|strong="H4603"\w* \w against|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H7200"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* fathers, \w so|strong="H1961"\w* \w that|strong="H7200"\w* \w he|strong="H3068"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w up|strong="H5414"\w* \w to|strong="H3068"\w* \w desolation|strong="H8047"\w*, \w as|strong="H1961"\w* \w you|strong="H5414"\w* \w see|strong="H7200"\w*. +\v 8 \w Now|strong="H6258"\w* don’t \w be|strong="H3027"\w* stiff-necked, \w as|strong="H3068"\w* \w your|strong="H3068"\w* fathers \w were|strong="H3027"\w*, \w but|strong="H6258"\w* \w yield|strong="H5414"\w* \w yourselves|strong="H3027"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* enter \w into|strong="H7725"\w* \w his|strong="H5414"\w* \w sanctuary|strong="H4720"\w*, \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w sanctified|strong="H6942"\w* \w forever|strong="H5769"\w*, \w and|strong="H3068"\w* \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w that|strong="H3068"\w* \w his|strong="H5414"\w* \w fierce|strong="H2740"\w* \w anger|strong="H2740"\w* \w may|strong="H3068"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w from|strong="H4480"\w* \w you|strong="H5414"\w*. +\v 9 \w For|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w turn|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*, \w your|strong="H3068"\w* \w brothers|strong="H1121"\w* \w and|strong="H1121"\w* \w your|strong="H3068"\w* \w children|strong="H1121"\w* \w will|strong="H3068"\w* find \w compassion|strong="H7356"\w* \w with|strong="H3068"\w* \w those|strong="H4480"\w* \w who|strong="H3068"\w* \w led|strong="H6440"\w* \w them|strong="H5921"\w* \w captive|strong="H7617"\w*, \w and|strong="H1121"\w* \w will|strong="H3068"\w* \w come|strong="H7725"\w* \w again|strong="H7725"\w* \w into|strong="H7725"\w* \w this|strong="H2063"\w* \w land|strong="H6440"\w*, \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w is|strong="H3068"\w* \w gracious|strong="H2587"\w* \w and|strong="H1121"\w* \w merciful|strong="H7349"\w*, \w and|strong="H1121"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w turn|strong="H7725"\w* \w away|strong="H5493"\w* \w his|strong="H3068"\w* \w face|strong="H6440"\w* \w from|strong="H4480"\w* \w you|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w him|strong="H6440"\w*.” +\p +\v 10 \w So|strong="H1961"\w* \w the|strong="H5921"\w* \w couriers|strong="H7323"\w* \w passed|strong="H5674"\w* \w from|strong="H5921"\w* \w city|strong="H5892"\w* \w to|strong="H5704"\w* \w city|strong="H5892"\w* \w through|strong="H5674"\w* \w the|strong="H5921"\w* country \w of|strong="H5892"\w* Ephraim \w and|strong="H5892"\w* \w Manasseh|strong="H4519"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Zebulun|strong="H2074"\w*, \w but|strong="H1961"\w* people ridiculed \w them|strong="H5921"\w* \w and|strong="H5892"\w* \w mocked|strong="H3932"\w* \w them|strong="H5921"\w*. +\v 11 Nevertheless some men \w of|strong="H3389"\w* Asher, \w Manasseh|strong="H4519"\w*, \w and|strong="H3389"\w* \w Zebulun|strong="H2074"\w* \w humbled|strong="H3665"\w* \w themselves|strong="H3665"\w* \w and|strong="H3389"\w* came \w to|strong="H3389"\w* \w Jerusalem|strong="H3389"\w*. +\v 12 \w Also|strong="H1571"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w God|strong="H3068"\w* \w came|strong="H1961"\w* \w on|strong="H3027"\w* \w Judah|strong="H3063"\w* \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w one|strong="H1961"\w* \w heart|strong="H3820"\w*, \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w the|strong="H5414"\w* \w commandment|strong="H4687"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w and|strong="H3063"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w princes|strong="H8269"\w* \w by|strong="H3027"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*. +\p +\v 13 \w Many|strong="H7227"\w* \w people|strong="H5971"\w* \w assembled|strong="H6951"\w* \w at|strong="H2320"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H6213"\w* \w keep|strong="H6213"\w* \w the|strong="H6213"\w* \w feast|strong="H2282"\w* \w of|strong="H6951"\w* \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w second|strong="H8145"\w* \w month|strong="H2320"\w*, \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H7227"\w* \w assembly|strong="H6951"\w*. +\v 14 \w They|strong="H3605"\w* \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w took|strong="H5493"\w* \w away|strong="H5493"\w* \w the|strong="H3605"\w* \w altars|strong="H4196"\w* \w that|strong="H3605"\w* \w were|strong="H3605"\w* \w in|strong="H5493"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H6965"\w* \w they|strong="H3605"\w* \w took|strong="H5493"\w* \w away|strong="H5493"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w altars|strong="H4196"\w* \w for|strong="H4196"\w* \w incense|strong="H6999"\w* \w and|strong="H6965"\w* \w threw|strong="H7993"\w* \w them|strong="H7993"\w* \w into|strong="H7993"\w* \w the|strong="H3605"\w* \w brook|strong="H5158"\w* \w Kidron|strong="H6939"\w*. +\v 15 \w Then|strong="H3068"\w* \w they|strong="H3068"\w* \w killed|strong="H7819"\w* \w the|strong="H3068"\w* \w Passover|strong="H6453"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w fourteenth|strong="H6240"\w* \w day|strong="H2320"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w second|strong="H8145"\w* \w month|strong="H2320"\w*. \w The|strong="H3068"\w* \w priests|strong="H3548"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w Levites|strong="H3881"\w* \w were|strong="H3881"\w* \w ashamed|strong="H3637"\w*, \w and|strong="H3068"\w* \w sanctified|strong="H6942"\w* \w themselves|strong="H6942"\w*, \w and|strong="H3068"\w* \w brought|strong="H3548"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* into \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 16 \w They|strong="H5921"\w* \w stood|strong="H5975"\w* \w in|strong="H5921"\w* \w their|strong="H5921"\w* \w place|strong="H3027"\w* \w after|strong="H5921"\w* \w their|strong="H5921"\w* \w order|strong="H4941"\w*, \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w law|strong="H8451"\w* \w of|strong="H3027"\w* \w Moses|strong="H4872"\w* \w the|strong="H5921"\w* man \w of|strong="H3027"\w* \w God|strong="H3027"\w*. \w The|strong="H5921"\w* \w priests|strong="H3548"\w* \w sprinkled|strong="H2236"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w which|strong="H3548"\w* \w they|strong="H5921"\w* \w received|strong="H5921"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w*. +\v 17 \w For|strong="H3588"\w* \w there|strong="H3605"\w* \w were|strong="H3881"\w* \w many|strong="H7227"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w who|strong="H3605"\w* \w had|strong="H3068"\w* \w not|strong="H3808"\w* \w sanctified|strong="H6942"\w* \w themselves|strong="H6942"\w*; \w therefore|strong="H5921"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w were|strong="H3881"\w* \w in|strong="H5921"\w* \w charge|strong="H5921"\w* \w of|strong="H3068"\w* \w killing|strong="H7821"\w* \w the|strong="H3605"\w* \w Passovers|strong="H6453"\w* \w for|strong="H3588"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w was|strong="H3068"\w* \w not|strong="H3808"\w* \w clean|strong="H2889"\w*, \w to|strong="H3068"\w* \w sanctify|strong="H6942"\w* \w them|strong="H5921"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 18 \w For|strong="H3588"\w* \w a|strong="H3068"\w* \w multitude|strong="H7227"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w*, \w even|strong="H3588"\w* \w many|strong="H7227"\w* \w of|strong="H3068"\w* Ephraim, \w Manasseh|strong="H4519"\w*, \w Issachar|strong="H3485"\w*, \w and|strong="H3068"\w* \w Zebulun|strong="H2074"\w*, \w had|strong="H3068"\w* \w not|strong="H3808"\w* \w cleansed|strong="H2891"\w* \w themselves|strong="H2896"\w*, \w yet|strong="H3588"\w* \w they|strong="H3588"\w* ate \w the|strong="H5921"\w* \w Passover|strong="H6453"\w* other \w than|strong="H2896"\w* \w the|strong="H5921"\w* \w way|strong="H5921"\w* \w it|strong="H5921"\w* \w is|strong="H3068"\w* \w written|strong="H3789"\w*. \w For|strong="H3588"\w* \w Hezekiah|strong="H2396"\w* \w had|strong="H3068"\w* \w prayed|strong="H6419"\w* \w for|strong="H3588"\w* \w them|strong="H5921"\w*, saying, “\w May|strong="H3068"\w* \w the|strong="H5921"\w* \w good|strong="H2896"\w* \w Yahweh|strong="H3068"\w* \w pardon|strong="H3722"\w* everyone +\v 19 \w who|strong="H3605"\w* sets \w his|strong="H3605"\w* \w heart|strong="H3824"\w* \w to|strong="H3068"\w* \w seek|strong="H1875"\w* \w God|strong="H3068"\w*, \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* fathers, \w even|strong="H3808"\w* if \w they|strong="H3068"\w* aren’t \w clean|strong="H2893"\w* according \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w purification|strong="H2893"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w*.” +\p +\v 20 \w Yahweh|strong="H3068"\w* \w listened|strong="H8085"\w* \w to|strong="H3068"\w* \w Hezekiah|strong="H2396"\w*, \w and|strong="H3068"\w* \w healed|strong="H7495"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w*. +\v 21 \w The|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w who|strong="H3068"\w* \w were|strong="H3478"\w* \w present|strong="H4672"\w* \w at|strong="H3478"\w* \w Jerusalem|strong="H3389"\w* \w kept|strong="H6213"\w* \w the|strong="H6213"\w* \w feast|strong="H2282"\w* \w of|strong="H1121"\w* \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w* \w with|strong="H3068"\w* \w great|strong="H1419"\w* \w gladness|strong="H8057"\w*. \w The|strong="H6213"\w* \w Levites|strong="H3881"\w* \w and|strong="H1121"\w* \w the|strong="H6213"\w* \w priests|strong="H3548"\w* \w praised|strong="H1984"\w* \w Yahweh|strong="H3068"\w* \w day|strong="H3117"\w* \w by|strong="H3117"\w* \w day|strong="H3117"\w*, singing \w with|strong="H3068"\w* \w loud|strong="H1419"\w* \w instruments|strong="H3627"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*. +\v 22 \w Hezekiah|strong="H2396"\w* \w spoke|strong="H1696"\w* \w encouragingly|strong="H5921"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w who|strong="H3605"\w* \w had|strong="H3068"\w* \w good|strong="H2896"\w* \w understanding|strong="H3820"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* service \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w So|strong="H1696"\w* \w they|strong="H3117"\w* ate \w throughout|strong="H3605"\w* \w the|strong="H3605"\w* \w feast|strong="H4150"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w offering|strong="H8002"\w* \w sacrifices|strong="H2077"\w* \w of|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w and|strong="H3068"\w* \w making|strong="H3605"\w* \w confession|strong="H3034"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w their|strong="H3605"\w* fathers. +\p +\v 23 \w The|strong="H3605"\w* \w whole|strong="H3605"\w* \w assembly|strong="H6951"\w* \w took|strong="H6951"\w* \w counsel|strong="H3289"\w* \w to|strong="H6213"\w* \w keep|strong="H6213"\w* another \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w and|strong="H3117"\w* \w they|strong="H3117"\w* \w kept|strong="H6213"\w* another \w seven|strong="H7651"\w* \w days|strong="H3117"\w* \w with|strong="H6213"\w* \w gladness|strong="H8057"\w*. +\v 24 \w For|strong="H3588"\w* \w Hezekiah|strong="H2396"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w gave|strong="H7311"\w* \w to|strong="H4428"\w* \w the|strong="H3588"\w* \w assembly|strong="H6951"\w* \w for|strong="H3588"\w* \w offerings|strong="H3588"\w* \w one|strong="H3588"\w* thousand \w bulls|strong="H6499"\w* \w and|strong="H3063"\w* \w seven|strong="H7651"\w* thousand \w sheep|strong="H6629"\w*; \w and|strong="H3063"\w* \w the|strong="H3588"\w* \w princes|strong="H8269"\w* \w gave|strong="H7311"\w* \w to|strong="H4428"\w* \w the|strong="H3588"\w* \w assembly|strong="H6951"\w* \w a|strong="H3068"\w* thousand \w bulls|strong="H6499"\w* \w and|strong="H3063"\w* \w ten|strong="H6235"\w* thousand \w sheep|strong="H6629"\w*; \w and|strong="H3063"\w* \w a|strong="H3068"\w* \w great|strong="H7230"\w* \w number|strong="H7230"\w* \w of|strong="H4428"\w* \w priests|strong="H3548"\w* \w sanctified|strong="H6942"\w* \w themselves|strong="H6942"\w*. +\v 25 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w of|strong="H3427"\w* \w Judah|strong="H3063"\w*, \w with|strong="H3427"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H3063"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w who|strong="H3605"\w* \w came|strong="H3478"\w* \w out|strong="H3605"\w* \w of|strong="H3427"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3063"\w* \w the|strong="H3605"\w* \w foreigners|strong="H1616"\w* \w who|strong="H3605"\w* \w came|strong="H3478"\w* \w out|strong="H3605"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* land \w of|strong="H3427"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w who|strong="H3605"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Judah|strong="H3063"\w*, \w rejoiced|strong="H8055"\w*. +\v 26 \w So|strong="H1961"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w great|strong="H1419"\w* \w joy|strong="H8057"\w* \w in|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*; \w for|strong="H3588"\w* \w since|strong="H3588"\w* \w the|strong="H3588"\w* \w time|strong="H3117"\w* \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w nothing|strong="H3808"\w* \w like|strong="H1961"\w* \w this|strong="H2063"\w* \w in|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*. +\v 27 \w Then|strong="H6965"\w* \w the|strong="H8085"\w* \w Levitical|strong="H3881"\w* \w priests|strong="H3548"\w* \w arose|strong="H6965"\w* \w and|strong="H6965"\w* \w blessed|strong="H1288"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w*. \w Their|strong="H8085"\w* \w voice|strong="H6963"\w* \w was|strong="H6963"\w* \w heard|strong="H8085"\w*, \w and|strong="H6965"\w* \w their|strong="H8085"\w* \w prayer|strong="H8605"\w* \w came|strong="H5971"\w* \w up|strong="H6965"\w* \w to|strong="H8085"\w* \w his|strong="H8085"\w* \w holy|strong="H6944"\w* \w habitation|strong="H4583"\w*, even \w to|strong="H8085"\w* \w heaven|strong="H8064"\w*. +\c 31 +\p +\v 1 \w Now|strong="H3478"\w* \w when|strong="H3615"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w was|strong="H3478"\w* \w finished|strong="H3615"\w*, \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w present|strong="H4672"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w and|strong="H1121"\w* \w broke|strong="H7665"\w* \w the|strong="H3605"\w* \w pillars|strong="H4676"\w* \w in|strong="H3478"\w* \w pieces|strong="H7665"\w*, \w cut|strong="H1438"\w* \w down|strong="H5422"\w* \w the|strong="H3605"\w* Asherah poles, \w and|strong="H1121"\w* \w broke|strong="H7665"\w* \w down|strong="H5422"\w* \w the|strong="H3605"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w altars|strong="H4196"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w Judah|strong="H3063"\w* \w and|strong="H1121"\w* \w Benjamin|strong="H1144"\w*, \w also|strong="H3478"\w* \w in|strong="H3478"\w* Ephraim \w and|strong="H1121"\w* \w Manasseh|strong="H4519"\w*, \w until|strong="H5704"\w* \w they|strong="H5704"\w* \w had|strong="H3478"\w* \w destroyed|strong="H7665"\w* \w them|strong="H7725"\w* \w all|strong="H3605"\w*. \w Then|strong="H3318"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w returned|strong="H7725"\w*, \w every|strong="H3605"\w* \w man|strong="H1121"\w* \w to|strong="H5704"\w* \w his|strong="H3605"\w* possession, \w into|strong="H7725"\w* \w their|strong="H3605"\w* own \w cities|strong="H5892"\w*. +\p +\v 2 \w Hezekiah|strong="H2396"\w* \w appointed|strong="H5975"\w* \w the|strong="H5921"\w* \w divisions|strong="H4256"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w* \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w* \w after|strong="H5921"\w* \w their|strong="H3068"\w* \w divisions|strong="H4256"\w*, \w every|strong="H5975"\w* \w man|strong="H8179"\w* \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w service|strong="H5656"\w*, \w both|strong="H5921"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w* \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w*, \w for|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w* \w and|strong="H3068"\w* \w for|strong="H5921"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w to|strong="H3068"\w* \w minister|strong="H8334"\w*, \w to|strong="H3068"\w* \w give|strong="H3034"\w* \w thanks|strong="H3034"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w praise|strong="H1984"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w gates|strong="H8179"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w camp|strong="H4264"\w*. +\v 3 \w He|strong="H3068"\w* \w also|strong="H3068"\w* \w appointed|strong="H4150"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w*’s \w portion|strong="H4521"\w* \w of|strong="H4428"\w* \w his|strong="H3068"\w* \w possessions|strong="H7399"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w*: \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w morning|strong="H1242"\w* \w and|strong="H3068"\w* \w evening|strong="H6153"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w*, \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w Sabbaths|strong="H7676"\w*, \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w new|strong="H2320"\w* \w moons|strong="H2320"\w*, \w and|strong="H3068"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w set|strong="H4150"\w* \w feasts|strong="H4150"\w*, \w as|strong="H3068"\w* \w it|strong="H1242"\w* \w is|strong="H3068"\w* \w written|strong="H3789"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w law|strong="H8451"\w*. +\v 4 Moreover \w he|strong="H3068"\w* commanded \w the|strong="H5414"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w the|strong="H5414"\w* \w portion|strong="H4521"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* \w priests|strong="H3548"\w* \w and|strong="H3068"\w* \w the|strong="H5414"\w* \w Levites|strong="H3881"\w*, \w that|strong="H5971"\w* \w they|strong="H3068"\w* \w might|strong="H3068"\w* \w give|strong="H5414"\w* \w themselves|strong="H2388"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w law|strong="H8451"\w*. +\v 5 \w As|strong="H1697"\w* soon \w as|strong="H1697"\w* \w the|strong="H3605"\w* \w commandment|strong="H1697"\w* \w went|strong="H3478"\w* \w out|strong="H6555"\w*, \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w gave|strong="H7235"\w* \w in|strong="H3478"\w* \w abundance|strong="H7230"\w* \w the|strong="H3605"\w* \w first|strong="H1121"\w* \w fruits|strong="H7225"\w* \w of|strong="H1121"\w* \w grain|strong="H1715"\w*, \w new|strong="H8492"\w* \w wine|strong="H8492"\w*, \w oil|strong="H3323"\w*, \w honey|strong="H1706"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w increase|strong="H8393"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*; \w and|strong="H1121"\w* \w they|strong="H1697"\w* \w brought|strong="H3478"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w tithe|strong="H4643"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w things|strong="H1697"\w* \w abundantly|strong="H7230"\w*. +\v 6 \w The|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w and|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w who|strong="H3068"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5414"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w also|strong="H1571"\w* \w brought|strong="H5414"\w* \w in|strong="H3427"\w* \w the|strong="H5414"\w* \w tithe|strong="H4643"\w* \w of|strong="H1121"\w* \w cattle|strong="H1241"\w* \w and|strong="H1121"\w* \w sheep|strong="H6629"\w*, \w and|strong="H1121"\w* \w the|strong="H5414"\w* \w tithe|strong="H4643"\w* \w of|strong="H1121"\w* \w dedicated|strong="H6942"\w* \w things|strong="H6944"\w* \w which|strong="H3068"\w* \w were|strong="H3478"\w* \w consecrated|strong="H6942"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H1121"\w* \w laid|strong="H5414"\w* \w them|strong="H5414"\w* \w in|strong="H3427"\w* \w heaps|strong="H6194"\w*. +\p +\v 7 \w In|strong="H2320"\w* \w the|strong="H3615"\w* \w third|strong="H7992"\w* \w month|strong="H2320"\w*, \w they|strong="H2320"\w* \w began|strong="H2490"\w* \w to|strong="H2490"\w* \w lay|strong="H3245"\w* \w the|strong="H3615"\w* \w foundation|strong="H3245"\w* \w of|strong="H3615"\w* \w the|strong="H3615"\w* \w heaps|strong="H6194"\w*, \w and|strong="H2320"\w* \w finished|strong="H3615"\w* \w them|strong="H3615"\w* \w in|strong="H2320"\w* \w the|strong="H3615"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w*. +\v 8 \w When|strong="H7200"\w* \w Hezekiah|strong="H2396"\w* \w and|strong="H3478"\w* \w the|strong="H7200"\w* \w princes|strong="H8269"\w* \w came|strong="H3478"\w* \w and|strong="H3478"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w heaps|strong="H6194"\w*, \w they|strong="H3068"\w* \w blessed|strong="H1288"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3478"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*. +\v 9 \w Then|strong="H3548"\w* \w Hezekiah|strong="H2396"\w* \w questioned|strong="H1875"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w* \w and|strong="H3548"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w* \w about|strong="H5921"\w* \w the|strong="H5921"\w* \w heaps|strong="H6194"\w*. +\v 10 \w Azariah|strong="H5838"\w* \w the|strong="H3588"\w* \w chief|strong="H7218"\w* \w priest|strong="H3548"\w*, \w of|strong="H1004"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Zadok|strong="H6659"\w*, answered \w him|strong="H1288"\w* \w and|strong="H3068"\w* said, “\w Since|strong="H3588"\w* \w people|strong="H5971"\w* \w began|strong="H2490"\w* \w to|strong="H5704"\w* bring \w the|strong="H3588"\w* \w offerings|strong="H8641"\w* \w into|strong="H5704"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w eaten|strong="H2490"\w* \w and|strong="H3068"\w* \w had|strong="H3068"\w* \w enough|strong="H7646"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w plenty|strong="H7646"\w* \w left|strong="H3498"\w* \w over|strong="H3498"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w blessed|strong="H1288"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*; \w and|strong="H3068"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w left|strong="H3498"\w* \w is|strong="H3068"\w* \w this|strong="H2088"\w* \w great|strong="H7230"\w* \w store|strong="H1995"\w*.” +\p +\v 11 \w Then|strong="H3068"\w* \w Hezekiah|strong="H2396"\w* commanded \w them|strong="H3068"\w* \w to|strong="H3068"\w* \w prepare|strong="H3559"\w* \w rooms|strong="H3957"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w prepared|strong="H3559"\w* \w them|strong="H3068"\w*. +\v 12 \w They|strong="H5921"\w* brought \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w offerings|strong="H8641"\w*, \w the|strong="H5921"\w* \w tithes|strong="H4643"\w*, \w and|strong="H6944"\w* \w the|strong="H5921"\w* \w dedicated|strong="H6944"\w* \w things|strong="H6944"\w* faithfully. \w Conaniah|strong="H3562"\w* \w the|strong="H5921"\w* \w Levite|strong="H3881"\w* \w was|strong="H3881"\w* \w ruler|strong="H5057"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w*, \w and|strong="H6944"\w* \w Shimei|strong="H8096"\w* \w his|strong="H5921"\w* brother \w was|strong="H3881"\w* \w second|strong="H4932"\w*. +\v 13 \w Jehiel|strong="H3171"\w*, \w Azaziah|strong="H5812"\w*, \w Nahath|strong="H5184"\w*, \w Asahel|strong="H6214"\w*, \w Jerimoth|strong="H3406"\w*, \w Jozabad|strong="H3107"\w*, Eliel, \w Ismachiah|strong="H3253"\w*, \w Mahath|strong="H4287"\w*, \w and|strong="H4428"\w* \w Benaiah|strong="H1141"\w* \w were|strong="H3027"\w* \w overseers|strong="H6496"\w* \w under|strong="H3027"\w* \w the|strong="H3027"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w Conaniah|strong="H3562"\w* \w and|strong="H4428"\w* \w Shimei|strong="H8096"\w* \w his|strong="H3027"\w* brother, \w by|strong="H3027"\w* \w the|strong="H3027"\w* \w appointment|strong="H4662"\w* \w of|strong="H4428"\w* \w Hezekiah|strong="H2396"\w* \w the|strong="H3027"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w Azariah|strong="H5838"\w* \w the|strong="H3027"\w* \w ruler|strong="H5057"\w* \w of|strong="H4428"\w* \w God|strong="H3027"\w*’s \w house|strong="H1004"\w*. +\v 14 \w Kore|strong="H6981"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Imnah|strong="H3232"\w* \w the|strong="H5921"\w* \w Levite|strong="H3881"\w*, \w the|strong="H5921"\w* \w gatekeeper|strong="H7778"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w east|strong="H4217"\w* gate, \w was|strong="H3068"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* free \w will|strong="H3068"\w* \w offerings|strong="H5071"\w* \w of|strong="H1121"\w* \w God|strong="H3068"\w*, \w to|strong="H3068"\w* \w distribute|strong="H5414"\w* \w Yahweh|strong="H3068"\w*’s \w offerings|strong="H5071"\w* \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w*. +\v 15 \w Under|strong="H5921"\w* \w him|strong="H5414"\w* \w were|strong="H3027"\w* \w Eden|strong="H5731"\w*, \w Miniamin|strong="H4509"\w*, \w Jeshua|strong="H3442"\w*, \w Shemaiah|strong="H8098"\w*, Amariah, \w and|strong="H1419"\w* \w Shecaniah|strong="H7935"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w cities|strong="H5892"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w*, \w in|strong="H5921"\w* \w their|strong="H5414"\w* office \w of|strong="H3027"\w* trust, \w to|strong="H5921"\w* \w give|strong="H5414"\w* \w to|strong="H5921"\w* \w their|strong="H5414"\w* brothers \w by|strong="H3027"\w* \w divisions|strong="H4256"\w*, \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w great|strong="H1419"\w* \w as|strong="H5892"\w* well \w as|strong="H5892"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w small|strong="H6996"\w*; +\v 16 \w in|strong="H8141"\w* addition \w to|strong="H3068"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w listed|strong="H3187"\w* \w by|strong="H8141"\w* \w genealogy|strong="H3187"\w* \w of|strong="H1121"\w* \w males|strong="H2145"\w*, \w from|strong="H1121"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w even|strong="H3068"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* entered \w into|strong="H1697"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w as|strong="H1697"\w* \w the|strong="H3605"\w* \w duty|strong="H1697"\w* \w of|strong="H1121"\w* \w every|strong="H3605"\w* \w day|strong="H3117"\w* \w required|strong="H3117"\w*, \w for|strong="H3068"\w* \w their|strong="H3605"\w* \w service|strong="H5656"\w* \w in|strong="H8141"\w* \w their|strong="H3605"\w* \w offices|strong="H4931"\w* according \w to|strong="H3068"\w* \w their|strong="H3605"\w* \w divisions|strong="H4256"\w*; +\v 17 \w and|strong="H1121"\w* \w those|strong="H1121"\w* \w who|strong="H3548"\w* \w were|strong="H1121"\w* \w listed|strong="H1004"\w* \w by|strong="H8141"\w* \w genealogy|strong="H3188"\w* \w of|strong="H1121"\w* \w the|strong="H3548"\w* \w priests|strong="H3548"\w* \w by|strong="H8141"\w* \w their|strong="H3548"\w* fathers’ \w houses|strong="H1004"\w*, \w and|strong="H1121"\w* \w the|strong="H3548"\w* \w Levites|strong="H3881"\w* \w from|strong="H1121"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w in|strong="H8141"\w* \w their|strong="H3548"\w* \w offices|strong="H4931"\w* \w by|strong="H8141"\w* \w their|strong="H3548"\w* \w divisions|strong="H4256"\w*; +\v 18 \w and|strong="H1121"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* listed \w by|strong="H3605"\w* \w genealogy|strong="H3188"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*, \w their|strong="H3605"\w* wives, \w their|strong="H3605"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w their|strong="H3605"\w* \w daughters|strong="H1323"\w*, \w through|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w congregation|strong="H6951"\w*; \w for|strong="H3588"\w* \w in|strong="H1121"\w* \w their|strong="H3605"\w* office \w of|strong="H1121"\w* trust \w they|strong="H3588"\w* \w sanctified|strong="H6942"\w* \w themselves|strong="H6942"\w* \w in|strong="H1121"\w* \w holiness|strong="H6944"\w*. +\v 19 \w Also|strong="H8034"\w* \w for|strong="H8034"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w the|strong="H3605"\w* \w priests|strong="H3548"\w*, \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w in|strong="H5892"\w* \w the|strong="H3605"\w* \w fields|strong="H7704"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w* \w of|strong="H1121"\w* \w their|strong="H3605"\w* \w cities|strong="H5892"\w*, \w in|strong="H5892"\w* \w every|strong="H3605"\w* \w city|strong="H5892"\w*, \w there|strong="H3605"\w* \w were|strong="H1121"\w* \w men|strong="H1121"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* mentioned \w by|strong="H3187"\w* \w name|strong="H8034"\w* \w to|strong="H5414"\w* \w give|strong="H5414"\w* \w portions|strong="H4490"\w* \w to|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w males|strong="H2145"\w* \w among|strong="H8034"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H1121"\w* \w to|strong="H5414"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w listed|strong="H3187"\w* \w by|strong="H3187"\w* \w genealogy|strong="H3187"\w* \w among|strong="H8034"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*. +\p +\v 20 \w Hezekiah|strong="H2396"\w* \w did|strong="H6213"\w* \w so|strong="H6213"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w Judah|strong="H3063"\w*; \w and|strong="H3063"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w good|strong="H2896"\w*, \w right|strong="H3477"\w*, \w and|strong="H3063"\w* \w faithful|strong="H2896"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H3605"\w* \w God|strong="H3068"\w*. +\v 21 \w In|strong="H6213"\w* \w every|strong="H3605"\w* \w work|strong="H4639"\w* \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w began|strong="H2490"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w of|strong="H1004"\w* God’s \w house|strong="H1004"\w*, \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w*, \w and|strong="H1004"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w commandments|strong="H4687"\w*, \w to|strong="H6213"\w* \w seek|strong="H1875"\w* \w his|strong="H3605"\w* God, \w he|strong="H6213"\w* \w did|strong="H6213"\w* \w it|strong="H6213"\w* \w with|strong="H1004"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w heart|strong="H3824"\w* \w and|strong="H1004"\w* \w prospered|strong="H6743"\w*. +\c 32 +\p +\v 1 \w After|strong="H5921"\w* \w these|strong="H4428"\w* \w things|strong="H1697"\w* \w and|strong="H3063"\w* \w this|strong="H1697"\w* faithfulness, \w Sennacherib|strong="H5576"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w came|strong="H1697"\w*, entered \w into|strong="H5921"\w* \w Judah|strong="H3063"\w*, \w encamped|strong="H2583"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w fortified|strong="H1219"\w* \w cities|strong="H5892"\w*, \w and|strong="H3063"\w* intended \w to|strong="H5921"\w* \w win|strong="H1234"\w* \w them|strong="H5921"\w* \w for|strong="H5921"\w* himself. +\v 2 \w When|strong="H3588"\w* \w Hezekiah|strong="H2396"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w Sennacherib|strong="H5576"\w* \w had|strong="H3588"\w* come, \w and|strong="H3389"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w was|strong="H3389"\w* planning \w to|strong="H5921"\w* \w fight|strong="H4421"\w* \w against|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, +\v 3 \w he|strong="H5892"\w* \w took|strong="H3289"\w* \w counsel|strong="H3289"\w* \w with|strong="H5973"\w* \w his|strong="H5973"\w* \w princes|strong="H8269"\w* \w and|strong="H5892"\w* \w his|strong="H5973"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w to|strong="H4325"\w* \w stop|strong="H5640"\w* \w the|strong="H2351"\w* \w waters|strong="H4325"\w* \w of|strong="H8269"\w* \w the|strong="H2351"\w* springs \w which|strong="H5869"\w* \w were|strong="H4325"\w* \w outside|strong="H2351"\w* \w of|strong="H8269"\w* \w the|strong="H2351"\w* \w city|strong="H5892"\w*, \w and|strong="H5892"\w* \w they|strong="H3289"\w* \w helped|strong="H5826"\w* \w him|strong="H5973"\w*. +\v 4 \w Then|strong="H4428"\w* \w many|strong="H7227"\w* \w people|strong="H5971"\w* \w gathered|strong="H6908"\w* \w together|strong="H6908"\w* \w and|strong="H4428"\w* \w they|strong="H4100"\w* \w stopped|strong="H5640"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w springs|strong="H4599"\w* \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w brook|strong="H5158"\w* \w that|strong="H5971"\w* \w flowed|strong="H7857"\w* \w through|strong="H8432"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* land, saying, “\w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w come|strong="H4672"\w*, \w and|strong="H4428"\w* \w find|strong="H4672"\w* \w abundant|strong="H7227"\w* \w water|strong="H4325"\w*?” +\p +\v 5 \w He|strong="H6213"\w* \w took|strong="H2388"\w* \w courage|strong="H2388"\w*, \w built|strong="H1129"\w* \w up|strong="H5927"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w wall|strong="H2346"\w* \w that|strong="H3605"\w* \w was|strong="H1732"\w* \w broken|strong="H6555"\w* \w down|strong="H6555"\w*, \w and|strong="H5892"\w* \w raised|strong="H5927"\w* \w it|strong="H5921"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H3605"\w* \w towers|strong="H4026"\w*, \w with|strong="H6213"\w* \w the|strong="H3605"\w* \w other|strong="H3605"\w* \w wall|strong="H2346"\w* \w outside|strong="H2351"\w*, \w and|strong="H5892"\w* \w strengthened|strong="H2388"\w* \w Millo|strong="H4407"\w* \w in|strong="H5921"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*, \w and|strong="H5892"\w* \w made|strong="H6213"\w* \w weapons|strong="H7973"\w* \w and|strong="H5892"\w* \w shields|strong="H4043"\w* \w in|strong="H5921"\w* \w abundance|strong="H7230"\w*. +\v 6 \w He|strong="H5414"\w* \w set|strong="H5414"\w* \w captains|strong="H8269"\w* \w of|strong="H8269"\w* \w war|strong="H4421"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w*, \w gathered|strong="H6908"\w* \w them|strong="H5414"\w* \w together|strong="H6908"\w* \w to|strong="H1696"\w* \w him|strong="H5414"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* wide \w place|strong="H5414"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w gate|strong="H8179"\w* \w of|strong="H8269"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*, \w and|strong="H5971"\w* \w spoke|strong="H1696"\w* \w encouragingly|strong="H5921"\w* \w to|strong="H1696"\w* \w them|strong="H5414"\w*, \w saying|strong="H1696"\w*, +\v 7 “\w Be|strong="H4428"\w* \w strong|strong="H2388"\w* \w and|strong="H4428"\w* \w courageous|strong="H2388"\w*. Don’t \w be|strong="H4428"\w* \w afraid|strong="H3372"\w* \w or|strong="H4428"\w* \w dismayed|strong="H2865"\w* \w because|strong="H3588"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria, \w nor|strong="H3372"\w* \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w multitude|strong="H1995"\w* \w who|strong="H3605"\w* \w is|strong="H3605"\w* \w with|strong="H5973"\w* \w him|strong="H6440"\w*; \w for|strong="H3588"\w* \w there|strong="H3605"\w* \w is|strong="H3605"\w* \w a|strong="H3068"\w* \w greater|strong="H7227"\w* \w one|strong="H3605"\w* \w with|strong="H5973"\w* \w us|strong="H6440"\w* \w than|strong="H3588"\w* \w with|strong="H5973"\w* \w him|strong="H6440"\w*. +\v 8 \w An|strong="H3068"\w* \w arm|strong="H2220"\w* \w of|strong="H4428"\w* \w flesh|strong="H1320"\w* \w is|strong="H3068"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w*, \w but|strong="H5971"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w is|strong="H3068"\w* \w with|strong="H5973"\w* \w us|strong="H5921"\w* \w to|strong="H3068"\w* \w help|strong="H5826"\w* \w us|strong="H5921"\w* \w and|strong="H3063"\w* \w to|strong="H3068"\w* \w fight|strong="H3898"\w* \w our|strong="H3068"\w* \w battles|strong="H4421"\w*.” \w The|strong="H5921"\w* \w people|strong="H5971"\w* \w rested|strong="H5564"\w* \w themselves|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w Hezekiah|strong="H2396"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*. +\p +\v 9 \w After|strong="H5921"\w* \w this|strong="H2088"\w*, \w Sennacherib|strong="H5576"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w sent|strong="H7971"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w* \w to|strong="H7971"\w* \w Jerusalem|strong="H3389"\w*, (\w now|strong="H2088"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* attacking \w Lachish|strong="H3923"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w forces|strong="H4475"\w* \w were|strong="H3063"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w*), \w to|strong="H7971"\w* \w Hezekiah|strong="H2396"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w to|strong="H7971"\w* \w all|strong="H3605"\w* \w Judah|strong="H3063"\w* \w who|strong="H3605"\w* \w were|strong="H3063"\w* \w at|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, saying, +\v 10 \w Sennacherib|strong="H5576"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w says|strong="H3541"\w*, “\w In|strong="H3427"\w* whom \w do|strong="H4100"\w* \w you|strong="H5921"\w* trust, \w that|strong="H4428"\w* \w you|strong="H5921"\w* \w remain|strong="H3427"\w* \w under|strong="H5921"\w* \w siege|strong="H4692"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*? +\v 11 Doesn’t \w Hezekiah|strong="H2396"\w* \w persuade|strong="H5496"\w* \w you|strong="H5414"\w* \w to|strong="H4191"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w over|strong="H4428"\w* \w to|strong="H4191"\w* \w die|strong="H4191"\w* \w by|strong="H3068"\w* \w famine|strong="H7458"\w* \w and|strong="H3068"\w* \w by|strong="H3068"\w* \w thirst|strong="H6772"\w*, saying, ‘\w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w deliver|strong="H5337"\w* \w us|strong="H5414"\w* \w out|strong="H5414"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w hand|strong="H3709"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria’? +\v 12 Hasn’t \w the|strong="H6440"\w* \w same|strong="H1931"\w* \w Hezekiah|strong="H2396"\w* \w taken|strong="H5493"\w* \w away|strong="H5493"\w* \w his|strong="H6440"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w and|strong="H3063"\w* \w his|strong="H6440"\w* \w altars|strong="H4196"\w*, \w and|strong="H3063"\w* commanded \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w*, saying, ‘\w You|strong="H6440"\w* \w shall|strong="H3063"\w* \w worship|strong="H7812"\w* \w before|strong="H6440"\w* \w one|strong="H3808"\w* \w altar|strong="H4196"\w*, \w and|strong="H3063"\w* \w you|strong="H6440"\w* \w shall|strong="H3063"\w* \w burn|strong="H6999"\w* \w incense|strong="H6999"\w* \w on|strong="H5921"\w* \w it|strong="H1931"\w*’? +\v 13 Don’t \w you|strong="H3605"\w* \w know|strong="H3045"\w* \w what|strong="H4100"\w* \w I|strong="H3045"\w* \w and|strong="H3027"\w* \w my|strong="H3605"\w* fathers \w have|strong="H5971"\w* \w done|strong="H6213"\w* \w to|strong="H3201"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* lands? \w Were|strong="H5971"\w* \w the|strong="H3605"\w* gods \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w of|strong="H3027"\w* \w those|strong="H3605"\w* lands \w in|strong="H6213"\w* \w any|strong="H3605"\w* \w way|strong="H3201"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w deliver|strong="H5337"\w* \w their|strong="H3605"\w* land \w out|strong="H6213"\w* \w of|strong="H3027"\w* \w my|strong="H3605"\w* \w hand|strong="H3027"\w*? +\v 14 \w Who|strong="H4310"\w* \w was|strong="H3027"\w* \w there|strong="H3605"\w* \w among|strong="H4310"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* gods \w of|strong="H3027"\w* \w those|strong="H3605"\w* \w nations|strong="H1471"\w* \w which|strong="H4310"\w* \w my|strong="H3605"\w* fathers \w utterly|strong="H2763"\w* \w destroyed|strong="H2763"\w* \w that|strong="H3588"\w* \w could|strong="H3201"\w* \w deliver|strong="H5337"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w* \w out|strong="H5337"\w* \w of|strong="H3027"\w* \w my|strong="H3605"\w* \w hand|strong="H3027"\w*, \w that|strong="H3588"\w* \w your|strong="H3605"\w* \w God|strong="H4310"\w* \w should|strong="H3588"\w* \w be|strong="H3027"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w deliver|strong="H5337"\w* \w you|strong="H3588"\w* \w out|strong="H5337"\w* \w of|strong="H3027"\w* \w my|strong="H3605"\w* \w hand|strong="H3027"\w*? +\v 15 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* don’t \w let|strong="H6258"\w* \w Hezekiah|strong="H2396"\w* \w deceive|strong="H5377"\w* \w you|strong="H3588"\w* \w nor|strong="H3808"\w* \w persuade|strong="H5496"\w* \w you|strong="H3588"\w* \w in|strong="H3027"\w* \w this|strong="H2063"\w* \w way|strong="H2063"\w*. Don’t believe \w him|strong="H3027"\w*, \w for|strong="H3588"\w* \w no|strong="H3808"\w* \w god|strong="H3808"\w* \w of|strong="H3027"\w* \w any|strong="H3605"\w* \w nation|strong="H1471"\w* \w or|strong="H3808"\w* \w kingdom|strong="H4467"\w* \w was|strong="H4467"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w deliver|strong="H5337"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w* \w out|strong="H5337"\w* \w of|strong="H3027"\w* \w my|strong="H3605"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w out|strong="H5337"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w my|strong="H3605"\w* fathers. \w How|strong="H3588"\w* \w much|strong="H3027"\w* \w less|strong="H3588"\w* \w will|strong="H1471"\w* \w your|strong="H3605"\w* \w God|strong="H3808"\w* \w deliver|strong="H5337"\w* \w you|strong="H3588"\w* \w out|strong="H5337"\w* \w of|strong="H3027"\w* \w my|strong="H3605"\w* \w hand|strong="H3027"\w*?” +\p +\v 16 \w His|strong="H3068"\w* \w servants|strong="H5650"\w* \w spoke|strong="H1696"\w* \w yet|strong="H5750"\w* \w more|strong="H5750"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w* \w and|strong="H3068"\w* \w against|strong="H5921"\w* \w his|strong="H3068"\w* \w servant|strong="H5650"\w* \w Hezekiah|strong="H2396"\w*. +\v 17 \w He|strong="H3651"\w* \w also|strong="H3068"\w* \w wrote|strong="H3789"\w* \w letters|strong="H5612"\w* insulting \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* speaking \w against|strong="H5921"\w* \w him|strong="H5921"\w*, saying, “\w As|strong="H3651"\w* \w the|strong="H5921"\w* gods \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* lands, \w which|strong="H3068"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w delivered|strong="H5337"\w* \w their|strong="H3068"\w* \w people|strong="H5971"\w* \w out|strong="H5921"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w hand|strong="H3027"\w*, \w so|strong="H3651"\w* \w shall|strong="H3068"\w* \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Hezekiah|strong="H2396"\w* \w not|strong="H3808"\w* \w deliver|strong="H5337"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w* \w out|strong="H5921"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w hand|strong="H3027"\w*.” +\v 18 \w They|strong="H5921"\w* \w called|strong="H7121"\w* \w out|strong="H5921"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w loud|strong="H1419"\w* \w voice|strong="H6963"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* Jews’ \w language|strong="H3066"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w of|strong="H5892"\w* \w Jerusalem|strong="H3389"\w* \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wall|strong="H2346"\w*, \w to|strong="H5921"\w* \w frighten|strong="H3372"\w* \w them|strong="H5921"\w* \w and|strong="H1419"\w* \w to|strong="H5921"\w* trouble \w them|strong="H5921"\w*, \w that|strong="H5971"\w* \w they|strong="H5921"\w* \w might|strong="H4616"\w* \w take|strong="H3920"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*. +\v 19 \w They|strong="H5921"\w* \w spoke|strong="H1696"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w God|strong="H3027"\w* \w of|strong="H3027"\w* \w Jerusalem|strong="H3389"\w* \w as|strong="H3389"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* gods \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w peoples|strong="H5971"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* earth, \w which|strong="H5971"\w* \w are|strong="H5971"\w* \w the|strong="H5921"\w* \w work|strong="H4639"\w* \w of|strong="H3027"\w* \w men|strong="H5971"\w*’s \w hands|strong="H3027"\w*. +\p +\v 20 \w Hezekiah|strong="H2396"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w and|strong="H1121"\w* \w Isaiah|strong="H3470"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amoz, \w prayed|strong="H6419"\w* \w because|strong="H5921"\w* \w of|strong="H1121"\w* \w this|strong="H2063"\w*, \w and|strong="H1121"\w* \w cried|strong="H2199"\w* \w to|strong="H5921"\w* \w heaven|strong="H8064"\w*. +\p +\v 21 \w Yahweh|strong="H3068"\w* \w sent|strong="H7971"\w* \w an|strong="H7971"\w* \w angel|strong="H4397"\w*, \w who|strong="H3605"\w* \w cut|strong="H3582"\w* \w off|strong="H3582"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H4428"\w* \w valor|strong="H2428"\w*, \w the|strong="H3605"\w* \w leaders|strong="H8269"\w*, \w and|strong="H3068"\w* \w captains|strong="H8269"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria. \w So|strong="H7971"\w* \w he|strong="H8033"\w* \w returned|strong="H7725"\w* \w with|strong="H1004"\w* \w shame|strong="H1322"\w* \w of|strong="H4428"\w* \w face|strong="H6440"\w* \w to|strong="H7725"\w* \w his|strong="H3605"\w* \w own|strong="H4578"\w* \w land|strong="H6440"\w*. \w When|strong="H7725"\w* \w he|strong="H8033"\w* \w had|strong="H3068"\w* \w come|strong="H7725"\w* \w into|strong="H7725"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* \w god|strong="H3068"\w*, \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w came|strong="H3068"\w* \w out|strong="H7971"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* \w own|strong="H4578"\w* \w body|strong="H4578"\w*\f + \fr 32:21 \ft i.e., his own sons\f* \w killed|strong="H2719"\w* \w him|strong="H6440"\w* \w there|strong="H8033"\w* \w with|strong="H1004"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*. +\v 22 Thus \w Yahweh|strong="H3068"\w* \w saved|strong="H3467"\w* \w Hezekiah|strong="H2396"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w* \w from|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w Sennacherib|strong="H5576"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w and|strong="H3068"\w* \w from|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* others, \w and|strong="H3068"\w* \w guided|strong="H5095"\w* \w them|strong="H3027"\w* \w on|strong="H3427"\w* \w every|strong="H3605"\w* \w side|strong="H5439"\w*. +\v 23 \w Many|strong="H7227"\w* \w brought|strong="H5375"\w* \w gifts|strong="H4503"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3063"\w* \w precious|strong="H4030"\w* \w things|strong="H3605"\w* \w to|strong="H3068"\w* \w Hezekiah|strong="H2396"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w so|strong="H3651"\w* \w that|strong="H3605"\w* \w he|strong="H3651"\w* \w was|strong="H3068"\w* \w exalted|strong="H5375"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w nations|strong="H1471"\w* \w from|strong="H1471"\w* \w then|strong="H3651"\w* \w on|strong="H3068"\w*. +\p +\v 24 \w In|strong="H3068"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w* \w Hezekiah|strong="H2396"\w* \w was|strong="H3068"\w* terminally \w ill|strong="H2470"\w*, \w and|strong="H3068"\w* \w he|strong="H3117"\w* \w prayed|strong="H6419"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w*; \w and|strong="H3068"\w* \w he|strong="H3117"\w* spoke \w to|strong="H5704"\w* \w him|strong="H5414"\w*, \w and|strong="H3068"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w a|strong="H3068"\w* \w sign|strong="H4159"\w*. +\v 25 \w But|strong="H3588"\w* \w Hezekiah|strong="H2396"\w* didn’t reciprocate appropriate \w to|strong="H7725"\w* \w the|strong="H5921"\w* \w benefit|strong="H1576"\w* \w done|strong="H1961"\w* \w for|strong="H3588"\w* \w him|strong="H5921"\w*, \w because|strong="H3588"\w* \w his|strong="H7725"\w* \w heart|strong="H3820"\w* \w was|strong="H1961"\w* \w lifted|strong="H1361"\w* \w up|strong="H1361"\w*. \w Therefore|strong="H5921"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w wrath|strong="H7110"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w*. +\v 26 However, \w Hezekiah|strong="H2396"\w* \w humbled|strong="H3665"\w* \w himself|strong="H1931"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w pride|strong="H1363"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w heart|strong="H3820"\w*, \w both|strong="H5921"\w* \w he|strong="H1931"\w* \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, \w so|strong="H3808"\w* \w that|strong="H3117"\w* \w Yahweh|strong="H3068"\w*’s \w wrath|strong="H7110"\w* didn’t come \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w Hezekiah|strong="H2396"\w*. +\p +\v 27 \w Hezekiah|strong="H2396"\w* \w had|strong="H1961"\w* \w exceedingly|strong="H3966"\w* \w great|strong="H3966"\w* \w riches|strong="H6239"\w* \w and|strong="H3701"\w* \w honor|strong="H3519"\w*. \w He|strong="H6213"\w* \w provided|strong="H6213"\w* \w himself|strong="H6213"\w* \w with|strong="H6213"\w* treasuries \w for|strong="H6213"\w* \w silver|strong="H3701"\w*, \w for|strong="H6213"\w* \w gold|strong="H2091"\w*, \w for|strong="H6213"\w* \w precious|strong="H3368"\w* stones, \w for|strong="H6213"\w* \w spices|strong="H1314"\w*, \w for|strong="H6213"\w* \w shields|strong="H4043"\w*, \w and|strong="H3701"\w* \w for|strong="H6213"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H3627"\w* \w valuable|strong="H3368"\w* \w vessels|strong="H3627"\w*; +\v 28 also \w storehouses|strong="H4543"\w* \w for|strong="H3605"\w* \w the|strong="H3605"\w* \w increase|strong="H8393"\w* \w of|strong="H3605"\w* \w grain|strong="H1715"\w*, \w new|strong="H8492"\w* \w wine|strong="H8492"\w*, \w and|strong="H1715"\w* \w oil|strong="H3323"\w*; \w and|strong="H1715"\w* stalls \w for|strong="H3605"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H3605"\w* animals, \w and|strong="H1715"\w* \w flocks|strong="H5739"\w* \w in|strong="H3605"\w* folds. +\v 29 \w Moreover|strong="H3588"\w* \w he|strong="H3588"\w* \w provided|strong="H5414"\w* \w for|strong="H3588"\w* \w himself|strong="H6213"\w* \w cities|strong="H5892"\w*, \w and|strong="H5892"\w* \w possessions|strong="H7399"\w* \w of|strong="H5892"\w* \w flocks|strong="H6629"\w* \w and|strong="H5892"\w* \w herds|strong="H1241"\w* \w in|strong="H6213"\w* \w abundance|strong="H7230"\w*; \w for|strong="H3588"\w* \w God|strong="H5414"\w* \w had|strong="H3588"\w* \w given|strong="H5414"\w* \w him|strong="H5414"\w* \w abundant|strong="H7227"\w* \w possessions|strong="H7399"\w*. +\v 30 \w This|strong="H1931"\w* \w same|strong="H1931"\w* \w Hezekiah|strong="H2396"\w* \w also|strong="H1732"\w* \w stopped|strong="H5640"\w* \w the|strong="H3605"\w* \w upper|strong="H5945"\w* \w spring|strong="H4161"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w of|strong="H5892"\w* \w Gihon|strong="H1521"\w*, \w and|strong="H5892"\w* \w brought|strong="H4161"\w* \w them|strong="H5640"\w* \w straight|strong="H3474"\w* \w down|strong="H4295"\w* \w on|strong="H5892"\w* \w the|strong="H3605"\w* \w west|strong="H4628"\w* \w side|strong="H4628"\w* \w of|strong="H5892"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*. \w Hezekiah|strong="H2396"\w* \w prospered|strong="H6743"\w* \w in|strong="H5892"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w works|strong="H4639"\w*. +\p +\v 31 However, \w concerning|strong="H5921"\w* \w the|strong="H3605"\w* \w ambassadors|strong="H3887"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* Babylon, \w who|strong="H3605"\w* \w sent|strong="H7971"\w* \w to|strong="H7971"\w* \w him|strong="H5921"\w* \w to|strong="H7971"\w* \w inquire|strong="H1875"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* \w wonder|strong="H4159"\w* \w that|strong="H3045"\w* \w was|strong="H1961"\w* \w done|strong="H1961"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* land, \w God|strong="H7971"\w* \w left|strong="H5800"\w* \w him|strong="H5921"\w* \w to|strong="H7971"\w* \w test|strong="H5254"\w* \w him|strong="H5921"\w*, \w that|strong="H3045"\w* \w he|strong="H3651"\w* might \w know|strong="H3045"\w* \w all|strong="H3605"\w* \w that|strong="H3045"\w* \w was|strong="H1961"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w heart|strong="H3824"\w*. +\p +\v 32 \w Now|strong="H2005"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w acts|strong="H1697"\w* \w of|strong="H1121"\w* \w Hezekiah|strong="H2396"\w* \w and|strong="H1121"\w* \w his|strong="H5921"\w* \w good|strong="H2005"\w* \w deeds|strong="H1697"\w*, \w behold|strong="H2005"\w*, \w they|strong="H5921"\w* \w are|strong="H1121"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w vision|strong="H2377"\w* \w of|strong="H1121"\w* \w Isaiah|strong="H3470"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amoz, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w and|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 33 \w Hezekiah|strong="H2396"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H3605"\w* fathers, \w and|strong="H1121"\w* \w they|strong="H6213"\w* \w buried|strong="H6912"\w* \w him|strong="H6213"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w ascent|strong="H4608"\w* \w to|strong="H6213"\w* \w the|strong="H3605"\w* \w tombs|strong="H6913"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w*. \w All|strong="H3605"\w* \w Judah|strong="H3063"\w* \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w* \w honored|strong="H3519"\w* \w him|strong="H6213"\w* \w at|strong="H3427"\w* \w his|strong="H3605"\w* \w death|strong="H4194"\w*. \w Manasseh|strong="H4519"\w* \w his|strong="H3605"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H3427"\w* \w his|strong="H3605"\w* \w place|strong="H8478"\w*. +\c 33 +\p +\v 1 \w Manasseh|strong="H4519"\w* \w was|strong="H1121"\w* \w twelve|strong="H8147"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H2568"\w* began \w to|strong="H3389"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H2568"\w* \w reigned|strong="H4427"\w* \w fifty-five|strong="H2572"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. +\v 2 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, after \w the|strong="H6440"\w* \w abominations|strong="H8441"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w nations|strong="H1471"\w* \w whom|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w cast|strong="H3068"\w* \w out|strong="H3423"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 3 \w For|strong="H6213"\w* \w he|strong="H6213"\w* \w built|strong="H1129"\w* \w again|strong="H7725"\w* \w the|strong="H3605"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w which|strong="H1116"\w* \w Hezekiah|strong="H2396"\w* \w his|strong="H3605"\w* father \w had|strong="H6635"\w* \w broken|strong="H5422"\w* \w down|strong="H5422"\w*; \w and|strong="H6965"\w* \w he|strong="H6213"\w* \w raised|strong="H6965"\w* \w up|strong="H6965"\w* \w altars|strong="H4196"\w* \w for|strong="H6213"\w* \w the|strong="H3605"\w* \w Baals|strong="H1168"\w*, \w made|strong="H6213"\w* Asheroth, \w and|strong="H6965"\w* \w worshiped|strong="H7812"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w* \w of|strong="H4196"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w and|strong="H6965"\w* \w served|strong="H5647"\w* \w them|strong="H7725"\w*. +\v 4 \w He|strong="H3068"\w* \w built|strong="H1129"\w* \w altars|strong="H4196"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w of|strong="H1004"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* said, “\w My|strong="H3068"\w* \w name|strong="H8034"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w in|strong="H3068"\w* \w Jerusalem|strong="H3389"\w* \w forever|strong="H5769"\w*.” +\v 5 \w He|strong="H3068"\w* \w built|strong="H1129"\w* \w altars|strong="H4196"\w* \w for|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w two|strong="H8147"\w* \w courts|strong="H2691"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 6 \w He|strong="H1931"\w* \w also|strong="H3068"\w* \w made|strong="H6213"\w* \w his|strong="H3068"\w* \w children|strong="H1121"\w* \w to|strong="H3068"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H6213"\w* fire \w in|strong="H3068"\w* \w the|strong="H6213"\w* \w valley|strong="H1516"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hinnom|strong="H2011"\w*. \w He|strong="H1931"\w* \w practiced|strong="H6213"\w* \w sorcery|strong="H3784"\w*, \w divination|strong="H5172"\w*, \w and|strong="H1121"\w* \w witchcraft|strong="H6049"\w*, \w and|strong="H1121"\w* \w dealt|strong="H6213"\w* \w with|strong="H3068"\w* \w those|strong="H1121"\w* \w who|strong="H1931"\w* \w had|strong="H3068"\w* familiar spirits \w and|strong="H1121"\w* \w with|strong="H3068"\w* \w wizards|strong="H3049"\w*. \w He|strong="H1931"\w* \w did|strong="H6213"\w* \w much|strong="H7235"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w to|strong="H3068"\w* \w provoke|strong="H3707"\w* \w him|strong="H6213"\w* \w to|strong="H3068"\w* \w anger|strong="H3707"\w*. +\v 7 \w He|strong="H6213"\w* \w set|strong="H7760"\w* \w the|strong="H3605"\w* engraved \w image|strong="H6459"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w idol|strong="H6459"\w*, \w which|strong="H1004"\w* \w he|strong="H6213"\w* \w had|strong="H3478"\w* \w made|strong="H6213"\w*, \w in|strong="H3478"\w* God’s \w house|strong="H1004"\w*, \w of|strong="H1121"\w* \w which|strong="H1004"\w* God said \w to|strong="H3478"\w* \w David|strong="H1732"\w* \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w Solomon|strong="H8010"\w* \w his|strong="H3605"\w* \w son|strong="H1121"\w*, “\w In|strong="H3478"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w*, \w and|strong="H1121"\w* \w in|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*, \w which|strong="H1004"\w* \w I|strong="H7760"\w* \w have|strong="H1121"\w* chosen \w out|strong="H6213"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w I|strong="H7760"\w* \w will|strong="H3478"\w* \w put|strong="H7760"\w* \w my|strong="H3605"\w* \w name|strong="H8034"\w* \w forever|strong="H3605"\w*. +\v 8 \w I|strong="H5921"\w* \w will|strong="H3478"\w* \w not|strong="H3808"\w* \w any|strong="H3605"\w* \w more|strong="H3254"\w* \w remove|strong="H5493"\w* \w the|strong="H3605"\w* \w foot|strong="H7272"\w* \w of|strong="H3027"\w* \w Israel|strong="H3478"\w* \w from|strong="H5493"\w* \w off|strong="H5493"\w* \w the|strong="H3605"\w* land \w which|strong="H3478"\w* \w I|strong="H5921"\w* \w have|strong="H3478"\w* \w appointed|strong="H5975"\w* \w for|strong="H5921"\w* \w your|strong="H3605"\w* fathers, if \w only|strong="H7535"\w* \w they|strong="H3808"\w* \w will|strong="H3478"\w* \w observe|strong="H8104"\w* \w to|strong="H3478"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H5921"\w* \w have|strong="H3478"\w* \w commanded|strong="H6680"\w* \w them|strong="H5921"\w*, \w even|strong="H3808"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w*, \w the|strong="H3605"\w* \w statutes|strong="H2706"\w*, \w and|strong="H4872"\w* \w the|strong="H3605"\w* \w ordinances|strong="H4941"\w* \w given|strong="H6680"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w*.” +\v 9 \w Manasseh|strong="H4519"\w* \w seduced|strong="H8582"\w* \w Judah|strong="H3063"\w* \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*, \w so|strong="H6213"\w* \w that|strong="H3068"\w* \w they|strong="H3068"\w* \w did|strong="H6213"\w* \w more|strong="H4480"\w* \w evil|strong="H7451"\w* \w than|strong="H4480"\w* \w did|strong="H6213"\w* \w the|strong="H6440"\w* \w nations|strong="H1471"\w* \w whom|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w destroyed|strong="H8045"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\p +\v 10 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Manasseh|strong="H4519"\w* \w and|strong="H3068"\w* \w to|strong="H1696"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*, \w but|strong="H3808"\w* \w they|strong="H3068"\w* didn’t \w listen|strong="H7181"\w*. +\v 11 \w Therefore|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w brought|strong="H3212"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w the|strong="H5921"\w* \w captains|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w army|strong="H6635"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria, \w who|strong="H3068"\w* \w took|strong="H3920"\w* \w Manasseh|strong="H4519"\w* \w in|strong="H5921"\w* \w chains|strong="H5178"\w*, bound \w him|strong="H5921"\w* \w with|strong="H3068"\w* \w fetters|strong="H5178"\w*, \w and|strong="H3068"\w* \w carried|strong="H3212"\w* \w him|strong="H5921"\w* \w to|strong="H3068"\w* Babylon. +\p +\v 12 \w When|strong="H3068"\w* \w he|strong="H3068"\w* \w was|strong="H3068"\w* \w in|strong="H3068"\w* \w distress|strong="H6887"\w*, \w he|strong="H3068"\w* begged \w Yahweh|strong="H3068"\w* \w his|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w humbled|strong="H3665"\w* \w himself|strong="H3665"\w* \w greatly|strong="H3966"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* fathers. +\v 13 \w He|strong="H1931"\w* \w prayed|strong="H6419"\w* \w to|strong="H7725"\w* \w him|strong="H7725"\w*; \w and|strong="H3068"\w* \w he|strong="H1931"\w* \w was|strong="H3068"\w* \w entreated|strong="H6279"\w* \w by|strong="H3068"\w* \w him|strong="H7725"\w*, \w and|strong="H3068"\w* \w heard|strong="H8085"\w* \w his|strong="H3068"\w* \w supplication|strong="H8467"\w*, \w and|strong="H3068"\w* \w brought|strong="H7725"\w* \w him|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w Jerusalem|strong="H3389"\w* \w into|strong="H7725"\w* \w his|strong="H3068"\w* \w kingdom|strong="H4438"\w*. \w Then|strong="H7725"\w* \w Manasseh|strong="H4519"\w* \w knew|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w God|strong="H3068"\w*. +\p +\v 14 \w Now|strong="H7760"\w* after \w this|strong="H3651"\w*, \w he|strong="H3651"\w* \w built|strong="H1129"\w* \w an|strong="H1129"\w* \w outer|strong="H2435"\w* \w wall|strong="H2346"\w* \w to|strong="H1732"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w* \w on|strong="H7760"\w* \w the|strong="H3605"\w* \w west|strong="H4628"\w* \w side|strong="H4628"\w* \w of|strong="H8269"\w* \w Gihon|strong="H1521"\w*, \w in|strong="H5892"\w* \w the|strong="H3605"\w* \w valley|strong="H5158"\w*, \w even|strong="H3651"\w* \w to|strong="H1732"\w* \w the|strong="H3605"\w* \w entrance|strong="H8179"\w* \w at|strong="H1732"\w* \w the|strong="H3605"\w* \w fish|strong="H1709"\w* \w gate|strong="H8179"\w*. \w He|strong="H3651"\w* \w encircled|strong="H5437"\w* \w Ophel|strong="H6077"\w* \w with|strong="H5892"\w* \w it|strong="H7760"\w*, \w and|strong="H3063"\w* \w raised|strong="H1361"\w* \w it|strong="H7760"\w* \w up|strong="H1129"\w* \w to|strong="H1732"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H3966"\w* \w height|strong="H3966"\w*; \w and|strong="H3063"\w* \w he|strong="H3651"\w* \w put|strong="H7760"\w* \w valiant|strong="H2428"\w* \w captains|strong="H8269"\w* \w in|strong="H5892"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fortified|strong="H1219"\w* \w cities|strong="H5892"\w* \w of|strong="H8269"\w* \w Judah|strong="H3063"\w*. +\v 15 \w He|strong="H3068"\w* \w took|strong="H5493"\w* \w away|strong="H5493"\w* \w the|strong="H3605"\w* \w foreign|strong="H5236"\w* gods \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w idol|strong="H5566"\w* \w out|strong="H2351"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w altars|strong="H4196"\w* \w that|strong="H3605"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w* \w built|strong="H1129"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w mountain|strong="H2022"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3068"\w* \w cast|strong="H7993"\w* \w them|strong="H7993"\w* \w out|strong="H2351"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*. +\v 16 \w He|strong="H3068"\w* built \w up|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w altar|strong="H4196"\w*, \w and|strong="H3063"\w* \w offered|strong="H2076"\w* \w sacrifices|strong="H2077"\w* \w of|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w and|strong="H3063"\w* \w of|strong="H3068"\w* \w thanksgiving|strong="H8426"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*, \w and|strong="H3063"\w* commanded \w Judah|strong="H3063"\w* \w to|strong="H3478"\w* \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\v 17 \w Nevertheless|strong="H7535"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w* \w still|strong="H5750"\w* \w sacrificed|strong="H2076"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*, \w but|strong="H7535"\w* \w only|strong="H7535"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*. +\p +\v 18 \w Now|strong="H2005"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w Manasseh|strong="H4519"\w*, \w and|strong="H3478"\w* \w his|strong="H3068"\w* \w prayer|strong="H8605"\w* \w to|strong="H1696"\w* \w his|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3478"\w* \w the|strong="H5921"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w seers|strong="H2374"\w* \w who|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w behold|strong="H2005"\w*, \w they|strong="H3068"\w* \w are|strong="H3478"\w* written \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. +\v 19 \w His|strong="H3605"\w* \w prayer|strong="H8605"\w* \w also|strong="H3789"\w*, \w and|strong="H6440"\w* how God \w listened|strong="H6279"\w* \w to|strong="H5921"\w* \w his|strong="H3605"\w* \w request|strong="H1697"\w*, \w and|strong="H6440"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w sin|strong="H2403"\w* \w and|strong="H6440"\w* \w his|strong="H3605"\w* \w trespass|strong="H4604"\w*, \w and|strong="H6440"\w* \w the|strong="H3605"\w* \w places|strong="H1116"\w* \w in|strong="H5921"\w* \w which|strong="H1697"\w* \w he|strong="H3605"\w* \w built|strong="H1129"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w and|strong="H6440"\w* \w set|strong="H5975"\w* \w up|strong="H5975"\w* \w the|strong="H3605"\w* Asherah poles \w and|strong="H6440"\w* \w the|strong="H3605"\w* \w engraved|strong="H6456"\w* \w images|strong="H6456"\w* \w before|strong="H6440"\w* \w he|strong="H3605"\w* \w humbled|strong="H3665"\w* \w himself|strong="H3665"\w*: \w behold|strong="H2005"\w*, \w they|strong="H5921"\w* \w are|strong="H1697"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* history \w of|strong="H1697"\w* \w Hozai|strong="H2335"\w*.\f + \fr 33:19 \ft or, the seers\f* +\v 20 So \w Manasseh|strong="H4519"\w* \w slept|strong="H7901"\w* \w with|strong="H5973"\w* \w his|strong="H8478"\w* fathers, \w and|strong="H1121"\w* \w they|strong="H8478"\w* \w buried|strong="H6912"\w* \w him|strong="H4427"\w* \w in|strong="H1004"\w* \w his|strong="H8478"\w* \w own|strong="H5973"\w* \w house|strong="H1004"\w*; \w and|strong="H1121"\w* Amon \w his|strong="H8478"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H1004"\w* \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\p +\v 21 Amon \w was|strong="H1121"\w* \w twenty-two|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H8147"\w* began \w to|strong="H3389"\w* \w reign|strong="H4427"\w*; \w and|strong="H1121"\w* \w he|strong="H8147"\w* \w reigned|strong="H4427"\w* \w two|strong="H8147"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. +\v 22 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w as|strong="H6213"\w* \w did|strong="H6213"\w* \w Manasseh|strong="H4519"\w* \w his|strong="H3605"\w* father; \w and|strong="H3068"\w* Amon \w sacrificed|strong="H2076"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w engraved|strong="H6456"\w* \w images|strong="H6456"\w* \w which|strong="H3068"\w* \w Manasseh|strong="H4519"\w* \w his|strong="H3605"\w* father \w had|strong="H3068"\w* \w made|strong="H6213"\w*, \w and|strong="H3068"\w* \w served|strong="H5647"\w* \w them|strong="H6213"\w*. +\v 23 \w He|strong="H1931"\w* didn’t \w humble|strong="H3665"\w* \w himself|strong="H1931"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w as|strong="H3068"\w* \w Manasseh|strong="H4519"\w* \w his|strong="H3068"\w* father \w had|strong="H3068"\w* \w humbled|strong="H3665"\w* \w himself|strong="H1931"\w*; \w but|strong="H3588"\w* \w this|strong="H1931"\w* \w same|strong="H1931"\w* Amon trespassed \w more|strong="H7235"\w* \w and|strong="H3068"\w* \w more|strong="H7235"\w*. +\v 24 \w His|strong="H5921"\w* \w servants|strong="H5650"\w* \w conspired|strong="H7194"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H1004"\w* \w put|strong="H4191"\w* \w him|strong="H5921"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* own \w house|strong="H1004"\w*. +\v 25 \w But|strong="H5221"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* land \w killed|strong="H5221"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w had|strong="H4428"\w* \w conspired|strong="H7194"\w* \w against|strong="H5921"\w* \w King|strong="H4428"\w* Amon; \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* land \w made|strong="H4427"\w* \w Josiah|strong="H2977"\w* \w his|strong="H3605"\w* \w son|strong="H1121"\w* \w king|strong="H4428"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w place|strong="H8478"\w*. +\c 34 +\p +\v 1 \w Josiah|strong="H2977"\w* \w was|strong="H1121"\w* \w eight|strong="H8083"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H3389"\w* began \w to|strong="H3389"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H3389"\w* \w reigned|strong="H4427"\w* \w thirty-one|strong="H7970"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. +\v 2 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w right|strong="H3225"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*, \w and|strong="H3068"\w* \w walked|strong="H3212"\w* \w in|strong="H3068"\w* \w the|strong="H6213"\w* \w ways|strong="H1870"\w* \w of|strong="H3068"\w* \w David|strong="H1732"\w* \w his|strong="H3068"\w* father, \w and|strong="H3068"\w* didn’t \w turn|strong="H5493"\w* \w away|strong="H5493"\w* \w to|strong="H3212"\w* \w the|strong="H6213"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w or|strong="H3808"\w* \w to|strong="H3212"\w* \w the|strong="H6213"\w* \w left|strong="H8040"\w*. +\v 3 \w For|strong="H3389"\w* \w in|strong="H8141"\w* \w the|strong="H4480"\w* \w eighth|strong="H8083"\w* \w year|strong="H8141"\w* \w of|strong="H8141"\w* \w his|strong="H1732"\w* \w reign|strong="H4427"\w*, \w while|strong="H5750"\w* \w he|strong="H1931"\w* \w was|strong="H1732"\w* \w yet|strong="H5750"\w* \w young|strong="H5288"\w*, \w he|strong="H1931"\w* \w began|strong="H2490"\w* \w to|strong="H3389"\w* \w seek|strong="H1875"\w* \w after|strong="H4480"\w* \w the|strong="H4480"\w* God \w of|strong="H8141"\w* \w David|strong="H1732"\w* \w his|strong="H1732"\w* father; \w and|strong="H3063"\w* \w in|strong="H8141"\w* \w the|strong="H4480"\w* \w twelfth|strong="H8147"\w* \w year|strong="H8141"\w* \w he|strong="H1931"\w* \w began|strong="H2490"\w* \w to|strong="H3389"\w* \w purge|strong="H2891"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*, \w the|strong="H4480"\w* Asherah poles, \w the|strong="H4480"\w* \w engraved|strong="H6456"\w* \w images|strong="H6456"\w*, \w and|strong="H3063"\w* \w the|strong="H4480"\w* \w molten|strong="H4541"\w* \w images|strong="H6456"\w*. +\v 4 \w They|strong="H5921"\w* \w broke|strong="H7665"\w* \w down|strong="H5422"\w* \w the|strong="H6440"\w* \w altars|strong="H4196"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w Baals|strong="H1168"\w* \w in|strong="H5921"\w* \w his|strong="H6440"\w* \w presence|strong="H6440"\w*; \w and|strong="H6440"\w* \w he|strong="H5921"\w* \w cut|strong="H1438"\w* \w down|strong="H5422"\w* \w the|strong="H6440"\w* \w incense|strong="H2553"\w* \w altars|strong="H4196"\w* \w that|strong="H4196"\w* \w were|strong="H5921"\w* \w on|strong="H5921"\w* \w high|strong="H4605"\w* \w above|strong="H4605"\w* \w them|strong="H5921"\w*. \w He|strong="H5921"\w* \w broke|strong="H7665"\w* \w the|strong="H6440"\w* Asherah poles, \w the|strong="H6440"\w* \w engraved|strong="H6456"\w* \w images|strong="H6456"\w*, \w and|strong="H6440"\w* \w the|strong="H6440"\w* \w molten|strong="H4541"\w* \w images|strong="H6456"\w* \w in|strong="H5921"\w* \w pieces|strong="H7665"\w*, \w made|strong="H2076"\w* \w dust|strong="H1854"\w* \w of|strong="H6440"\w* \w them|strong="H5921"\w*, \w and|strong="H6440"\w* \w scattered|strong="H2236"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w graves|strong="H6913"\w* \w of|strong="H6440"\w* \w those|strong="H5921"\w* \w who|strong="H4605"\w* had \w sacrificed|strong="H2076"\w* \w to|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 5 \w He|strong="H3389"\w* \w burned|strong="H8313"\w* \w the|strong="H5921"\w* \w bones|strong="H6106"\w* \w of|strong="H4196"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w* \w on|strong="H5921"\w* \w their|strong="H8313"\w* \w altars|strong="H4196"\w*, \w and|strong="H3063"\w* \w purged|strong="H2891"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w*. +\v 6 \w He|strong="H5704"\w* \w did|strong="H2022"\w* \w this|strong="H1004"\w* \w in|strong="H1004"\w* \w the|strong="H5704"\w* \w cities|strong="H5892"\w* \w of|strong="H1004"\w* \w Manasseh|strong="H4519"\w*, Ephraim, \w and|strong="H1004"\w* \w Simeon|strong="H8095"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Naphtali|strong="H5321"\w*, \w around|strong="H5439"\w* \w in|strong="H1004"\w* \w their|strong="H5439"\w* \w ruins|strong="H5892"\w*. +\v 7 \w He|strong="H3605"\w* \w broke|strong="H5422"\w* \w down|strong="H5422"\w* \w the|strong="H3605"\w* \w altars|strong="H4196"\w*, \w beat|strong="H3807"\w* \w the|strong="H3605"\w* Asherah poles \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w engraved|strong="H6456"\w* \w images|strong="H6456"\w* \w into|strong="H7725"\w* \w powder|strong="H1854"\w*, \w and|strong="H3478"\w* \w cut|strong="H1438"\w* \w down|strong="H5422"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w incense|strong="H2553"\w* \w altars|strong="H4196"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H4196"\w* \w Israel|strong="H3478"\w*, \w then|strong="H7725"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Jerusalem|strong="H3389"\w*. +\p +\v 8 \w Now|strong="H7971"\w* \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w eighteenth|strong="H8083"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w his|strong="H3068"\w* \w reign|strong="H4427"\w*, \w when|strong="H7971"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w* \w purged|strong="H2891"\w* \w the|strong="H3068"\w* land \w and|strong="H1121"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w*, \w he|strong="H3068"\w* \w sent|strong="H7971"\w* \w Shaphan|strong="H8227"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Azaliah, \w Maaseiah|strong="H4641"\w* \w the|strong="H3068"\w* \w governor|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w city|strong="H5892"\w*, \w and|strong="H1121"\w* \w Joah|strong="H3098"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joahaz|strong="H3099"\w* \w the|strong="H3068"\w* \w recorder|strong="H2142"\w* \w to|strong="H3068"\w* \w repair|strong="H2388"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 9 \w They|strong="H3478"\w* \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w Hilkiah|strong="H2518"\w* \w the|strong="H3605"\w* \w high|strong="H1419"\w* \w priest|strong="H3548"\w* \w and|strong="H3063"\w* \w delivered|strong="H5414"\w* \w the|strong="H3605"\w* \w money|strong="H3701"\w* \w that|strong="H3605"\w* \w was|strong="H3478"\w* \w brought|strong="H5414"\w* \w into|strong="H3027"\w* \w God|strong="H5414"\w*’s \w house|strong="H1004"\w*, \w which|strong="H1004"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*, \w the|strong="H3605"\w* \w keepers|strong="H8104"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w threshold|strong="H5592"\w*, \w had|strong="H3478"\w* \w gathered|strong="H3478"\w* \w from|strong="H3478"\w* \w the|strong="H3605"\w* \w hands|strong="H3027"\w* \w of|strong="H1004"\w* \w Manasseh|strong="H4519"\w*, Ephraim, \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w remnant|strong="H7611"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Benjamin|strong="H1144"\w*, \w and|strong="H3063"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1004"\w* \w Jerusalem|strong="H3389"\w*. +\v 10 \w They|strong="H3068"\w* \w delivered|strong="H5414"\w* \w it|strong="H5414"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w hands|strong="H3027"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w workmen|strong="H4399"\w* \w who|strong="H3068"\w* \w had|strong="H3068"\w* \w the|strong="H5921"\w* \w oversight|strong="H6485"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*; \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w workmen|strong="H4399"\w* \w who|strong="H3068"\w* \w labored|strong="H6213"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w gave|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H3068"\w* \w mend|strong="H2388"\w* \w and|strong="H3068"\w* \w repair|strong="H2388"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*. +\v 11 \w They|strong="H5414"\w* \w gave|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w carpenters|strong="H2796"\w* \w and|strong="H3063"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w builders|strong="H1129"\w* \w to|strong="H5414"\w* \w buy|strong="H7069"\w* cut stone \w and|strong="H3063"\w* \w timber|strong="H6086"\w* \w for|strong="H1004"\w* \w couplings|strong="H4226"\w*, \w and|strong="H3063"\w* \w to|strong="H5414"\w* \w make|strong="H5414"\w* \w beams|strong="H7136"\w* \w for|strong="H1004"\w* \w the|strong="H5414"\w* \w houses|strong="H1004"\w* \w which|strong="H1004"\w* \w the|strong="H5414"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w had|strong="H4428"\w* \w destroyed|strong="H7843"\w*. +\v 12 \w The|strong="H3605"\w* \w men|strong="H1121"\w* \w did|strong="H6213"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* faithfully. \w Their|strong="H3605"\w* \w overseers|strong="H5329"\w* \w were|strong="H1121"\w* \w Jahath|strong="H3189"\w* \w and|strong="H1121"\w* \w Obadiah|strong="H5662"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*, \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w*; \w and|strong="H1121"\w* \w Zechariah|strong="H2148"\w* \w and|strong="H1121"\w* \w Meshullam|strong="H4918"\w*, \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w Kohathites|strong="H6956"\w*, \w to|strong="H6213"\w* \w give|strong="H6213"\w* direction; \w and|strong="H1121"\w* others \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*, \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w all|strong="H3605"\w* skillful \w with|strong="H6213"\w* \w musical|strong="H7892"\w* \w instruments|strong="H3627"\w*. +\v 13 \w Also|strong="H6213"\w* \w they|strong="H5921"\w* \w were|strong="H3881"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w bearers|strong="H5449"\w* \w of|strong="H5921"\w* \w burdens|strong="H5449"\w*, \w and|strong="H6213"\w* directed \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w did|strong="H6213"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w in|strong="H5921"\w* \w every|strong="H3605"\w* \w kind|strong="H5656"\w* \w of|strong="H5921"\w* \w service|strong="H5656"\w*. \w Of|strong="H5921"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*, \w there|strong="H3605"\w* \w were|strong="H3881"\w* \w scribes|strong="H5608"\w*, \w officials|strong="H7860"\w*, \w and|strong="H6213"\w* \w gatekeepers|strong="H7778"\w*. +\p +\v 14 \w When|strong="H3318"\w* \w they|strong="H3068"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w the|strong="H3068"\w* \w money|strong="H3701"\w* \w that|strong="H3068"\w* \w was|strong="H3068"\w* \w brought|strong="H3318"\w* \w into|strong="H3318"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w Hilkiah|strong="H2518"\w* \w the|strong="H3068"\w* \w priest|strong="H3548"\w* \w found|strong="H4672"\w* \w the|strong="H3068"\w* \w book|strong="H5612"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w law|strong="H8451"\w* \w given|strong="H3027"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w*. +\v 15 \w Hilkiah|strong="H2518"\w* \w answered|strong="H6030"\w* \w Shaphan|strong="H8227"\w* \w the|strong="H5414"\w* \w scribe|strong="H5608"\w*, “\w I|strong="H5414"\w* \w have|strong="H3068"\w* \w found|strong="H4672"\w* \w the|strong="H5414"\w* \w book|strong="H5612"\w* \w of|strong="H1004"\w* \w the|strong="H5414"\w* \w law|strong="H8451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*.” \w So|strong="H5414"\w* \w Hilkiah|strong="H2518"\w* \w delivered|strong="H5414"\w* \w the|strong="H5414"\w* \w book|strong="H5612"\w* \w to|strong="H3068"\w* \w Shaphan|strong="H8227"\w*. +\p +\v 16 \w Shaphan|strong="H8227"\w* \w carried|strong="H6213"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w and|strong="H7725"\w* \w moreover|strong="H5750"\w* \w brought|strong="H7725"\w* \w back|strong="H7725"\w* \w word|strong="H1697"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w saying|strong="H1697"\w*, “\w All|strong="H3605"\w* \w that|strong="H3605"\w* \w was|strong="H1697"\w* \w committed|strong="H6213"\w* \w to|strong="H7725"\w* \w your|strong="H3605"\w* \w servants|strong="H5650"\w*, \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w doing|strong="H6213"\w*. +\v 17 \w They|strong="H3068"\w* \w have|strong="H3068"\w* \w emptied|strong="H5413"\w* \w out|strong="H4672"\w* \w the|strong="H5921"\w* \w money|strong="H3701"\w* \w that|strong="H3068"\w* \w was|strong="H3068"\w* \w found|strong="H4672"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w delivered|strong="H5414"\w* \w it|strong="H5414"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w overseers|strong="H6485"\w* \w and|strong="H3068"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w workmen|strong="H4399"\w*.” +\v 18 \w Shaphan|strong="H8227"\w* \w the|strong="H6440"\w* \w scribe|strong="H5608"\w* \w told|strong="H5046"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*, saying, “\w Hilkiah|strong="H2518"\w* \w the|strong="H6440"\w* \w priest|strong="H3548"\w* \w has|strong="H4428"\w* \w delivered|strong="H5414"\w* \w me|strong="H5414"\w* \w a|strong="H3068"\w* \w book|strong="H5612"\w*.” \w Shaphan|strong="H8227"\w* \w read|strong="H7121"\w* \w from|strong="H6440"\w* \w it|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*. +\p +\v 19 \w When|strong="H1961"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w had|strong="H1961"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H8085"\w* \w law|strong="H8451"\w*, \w he|strong="H4428"\w* \w tore|strong="H7167"\w* \w his|strong="H8085"\w* clothes. +\v 20 \w The|strong="H6680"\w* \w king|strong="H4428"\w* \w commanded|strong="H6680"\w* \w Hilkiah|strong="H2518"\w*, Ahikam \w the|strong="H6680"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shaphan|strong="H8227"\w*, \w Abdon|strong="H5658"\w* \w the|strong="H6680"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Micah|strong="H4318"\w*, \w Shaphan|strong="H8227"\w* \w the|strong="H6680"\w* \w scribe|strong="H5608"\w*, \w and|strong="H1121"\w* \w Asaiah|strong="H6222"\w* \w the|strong="H6680"\w* \w king|strong="H4428"\w*’s \w servant|strong="H5650"\w*, saying, +\v 21 “\w Go|strong="H3212"\w* \w inquire|strong="H1875"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H3588"\w* \w me|strong="H5921"\w*, \w and|strong="H3063"\w* \w for|strong="H3588"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H3478"\w* \w left|strong="H7604"\w* \w in|strong="H5921"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w in|strong="H5921"\w* \w Judah|strong="H3063"\w*, \w concerning|strong="H5921"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w that|strong="H3588"\w* \w is|strong="H3068"\w* \w found|strong="H4672"\w*; \w for|strong="H3588"\w* \w great|strong="H1419"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w wrath|strong="H2534"\w* \w that|strong="H3588"\w* \w is|strong="H3068"\w* \w poured|strong="H5413"\w* \w out|strong="H4672"\w* \w on|strong="H5921"\w* \w us|strong="H5921"\w*, \w because|strong="H3588"\w* \w our|strong="H3068"\w* fathers \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w kept|strong="H8104"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w to|strong="H3478"\w* \w do|strong="H6213"\w* \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w is|strong="H3068"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w this|strong="H2088"\w* \w book|strong="H5612"\w*.” +\p +\v 22 \w So|strong="H2063"\w* \w Hilkiah|strong="H2518"\w* \w and|strong="H1121"\w* \w those|strong="H1121"\w* whom \w the|strong="H8104"\w* \w king|strong="H4428"\w* \w had|strong="H4428"\w* \w commanded|strong="H1696"\w* \w went|strong="H3212"\w* \w to|strong="H1696"\w* \w Huldah|strong="H2468"\w* \w the|strong="H8104"\w* \w prophetess|strong="H5031"\w*, \w the|strong="H8104"\w* \w wife|strong="H1696"\w* \w of|strong="H1121"\w* \w Shallum|strong="H7967"\w* \w the|strong="H8104"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Tokhath|strong="H8445"\w*, \w the|strong="H8104"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hasrah|strong="H2641"\w*, \w keeper|strong="H8104"\w* \w of|strong="H1121"\w* \w the|strong="H8104"\w* wardrobe (\w now|strong="H3212"\w* \w she|strong="H1931"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w* \w in|strong="H3427"\w* \w the|strong="H8104"\w* \w second|strong="H4932"\w* quarter), \w and|strong="H1121"\w* \w they|strong="H1931"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w her|strong="H1931"\w* \w to|strong="H1696"\w* \w that|strong="H1931"\w* effect. +\p +\v 23 She said \w to|strong="H3478"\w* \w them|strong="H7971"\w*, “\w Yahweh|strong="H3068"\w*, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*: ‘Tell \w the|strong="H3541"\w* man \w who|strong="H3068"\w* \w sent|strong="H7971"\w* \w you|strong="H7971"\w* \w to|strong="H3478"\w* \w me|strong="H7971"\w*, +\v 24 “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w bring|strong="H7451"\w* \w evil|strong="H7451"\w* \w on|strong="H5921"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w* \w and|strong="H3063"\w* \w on|strong="H5921"\w* \w its|strong="H3605"\w* \w inhabitants|strong="H3427"\w*, \w even|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* curses \w that|strong="H3605"\w* \w are|strong="H3068"\w* \w written|strong="H3789"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w which|strong="H3068"\w* \w they|strong="H3068"\w* \w have|strong="H3068"\w* \w read|strong="H7121"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*. +\v 25 \w Because|strong="H4616"\w* \w they|strong="H3808"\w* \w have|strong="H3027"\w* \w forsaken|strong="H5800"\w* \w me|strong="H5800"\w*, \w and|strong="H3027"\w* \w have|strong="H3027"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H3027"\w* \w other|strong="H2088"\w* gods, \w that|strong="H3605"\w* \w they|strong="H3808"\w* \w might|strong="H4616"\w* \w provoke|strong="H3707"\w* \w me|strong="H5800"\w* \w to|strong="H3027"\w* \w anger|strong="H3707"\w* \w with|strong="H3027"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w works|strong="H4639"\w* \w of|strong="H3027"\w* \w their|strong="H3605"\w* \w hands|strong="H3027"\w*, \w therefore|strong="H4616"\w* \w my|strong="H3605"\w* \w wrath|strong="H2534"\w* \w is|strong="H2088"\w* \w poured|strong="H5413"\w* \w out|strong="H5413"\w* \w on|strong="H3027"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*, \w and|strong="H3027"\w* \w it|strong="H3808"\w* \w will|strong="H3027"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w quenched|strong="H3518"\w*.’”’ +\v 26 \w But|strong="H8085"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w who|strong="H3068"\w* \w sent|strong="H7971"\w* \w you|strong="H7971"\w* \w to|strong="H3478"\w* \w inquire|strong="H1875"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*, \w you|strong="H7971"\w* \w shall|strong="H3068"\w* \w tell|strong="H8085"\w* \w him|strong="H7971"\w* \w this|strong="H3541"\w*, ‘\w Yahweh|strong="H3068"\w*, \w the|strong="H8085"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*: “\w About|strong="H1697"\w* \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w which|strong="H3068"\w* \w you|strong="H7971"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w*, +\v 27 \w because|strong="H5921"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w was|strong="H3068"\w* \w tender|strong="H7401"\w*, \w and|strong="H3068"\w* \w you|strong="H6440"\w* \w humbled|strong="H3665"\w* \w yourself|strong="H3665"\w* \w before|strong="H6440"\w* \w God|strong="H3068"\w* \w when|strong="H8085"\w* \w you|strong="H6440"\w* \w heard|strong="H8085"\w* \w his|strong="H3068"\w* \w words|strong="H1697"\w* \w against|strong="H5921"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w* \w and|strong="H3068"\w* \w against|strong="H5921"\w* \w its|strong="H5921"\w* \w inhabitants|strong="H3427"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w humbled|strong="H3665"\w* \w yourself|strong="H3665"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w torn|strong="H7167"\w* \w your|strong="H3068"\w* clothes \w and|strong="H3068"\w* \w wept|strong="H1058"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*, \w I|strong="H5921"\w* \w also|strong="H1571"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w you|strong="H6440"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 28 “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H4428"\w* gather \w you|strong="H3605"\w* \w to|strong="H7725"\w* \w your|strong="H3605"\w* fathers, \w and|strong="H7725"\w* \w you|strong="H3605"\w* \w will|strong="H4428"\w* \w be|strong="H3808"\w* gathered \w to|strong="H7725"\w* \w your|strong="H3605"\w* \w grave|strong="H6913"\w* \w in|strong="H3427"\w* \w peace|strong="H7965"\w*. \w Your|strong="H3605"\w* \w eyes|strong="H5869"\w* won’t \w see|strong="H7200"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w that|strong="H7200"\w* \w I|strong="H2005"\w* \w will|strong="H4428"\w* \w bring|strong="H7725"\w* \w on|strong="H5921"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w* \w and|strong="H7725"\w* \w on|strong="H5921"\w* \w its|strong="H3605"\w* \w inhabitants|strong="H3427"\w*.”’” +\p \w They|strong="H3808"\w* \w brought|strong="H7725"\w* \w back|strong="H7725"\w* \w this|strong="H2088"\w* \w message|strong="H1697"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. +\p +\v 29 \w Then|strong="H7971"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w sent|strong="H7971"\w* \w and|strong="H3063"\w* gathered together \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w*. +\v 30 \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w with|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H1419"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*—\w the|strong="H3605"\w* \w priests|strong="H3548"\w*, \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w both|strong="H3605"\w* \w great|strong="H1419"\w* \w and|strong="H3063"\w* \w small|strong="H6996"\w*—\w and|strong="H3063"\w* \w he|strong="H5704"\w* \w read|strong="H7121"\w* \w in|strong="H3427"\w* \w their|strong="H3605"\w* hearing \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w covenant|strong="H1285"\w* \w that|strong="H5971"\w* \w was|strong="H3068"\w* \w found|strong="H4672"\w* \w in|strong="H3427"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 31 \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w stood|strong="H5975"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w place|strong="H5977"\w* \w and|strong="H3068"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w to|strong="H3068"\w* \w walk|strong="H3212"\w* \w after|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w keep|strong="H8104"\w* \w his|strong="H3605"\w* \w commandments|strong="H4687"\w*, \w his|strong="H3605"\w* \w testimonies|strong="H5715"\w*, \w and|strong="H3068"\w* \w his|strong="H3605"\w* \w statutes|strong="H2706"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w heart|strong="H3824"\w* \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w soul|strong="H5315"\w*, \w to|strong="H3068"\w* \w perform|strong="H6213"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w covenant|strong="H1285"\w* \w that|strong="H3605"\w* \w were|strong="H1697"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w this|strong="H2088"\w* \w book|strong="H5612"\w*. +\v 32 \w He|strong="H6213"\w* \w caused|strong="H6213"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1144"\w* \w found|strong="H4672"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H3389"\w* \w Benjamin|strong="H1144"\w* \w to|strong="H6213"\w* \w stand|strong="H5975"\w*. \w The|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Jerusalem|strong="H3389"\w* \w did|strong="H6213"\w* according \w to|strong="H6213"\w* \w the|strong="H3605"\w* \w covenant|strong="H1285"\w* \w of|strong="H3427"\w* God, \w the|strong="H3605"\w* God \w of|strong="H3427"\w* \w their|strong="H3605"\w* fathers. +\v 33 \w Josiah|strong="H2977"\w* \w took|strong="H5493"\w* \w away|strong="H5493"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w abominations|strong="H8441"\w* \w out|strong="H4672"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* countries \w that|strong="H3605"\w* belonged \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w made|strong="H5647"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w found|strong="H4672"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w serve|strong="H5647"\w*, \w even|strong="H3808"\w* \w to|strong="H3478"\w* \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3605"\w* \w God|strong="H3068"\w*. \w All|strong="H3605"\w* \w his|strong="H3605"\w* \w days|strong="H3117"\w* \w they|strong="H3117"\w* didn’t \w depart|strong="H5493"\w* \w from|strong="H5493"\w* following \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w their|strong="H3605"\w* fathers. +\c 35 +\p +\v 1 \w Josiah|strong="H2977"\w* \w kept|strong="H6213"\w* \w a|strong="H3068"\w* \w Passover|strong="H6453"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*. \w They|strong="H3068"\w* \w killed|strong="H7819"\w* \w the|strong="H6213"\w* \w Passover|strong="H6453"\w* \w on|strong="H3068"\w* \w the|strong="H6213"\w* \w fourteenth|strong="H6240"\w* \w day|strong="H2320"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*. +\v 2 \w He|strong="H3068"\w* \w set|strong="H5975"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w* \w in|strong="H5921"\w* \w their|strong="H3068"\w* \w offices|strong="H4931"\w* \w and|strong="H3068"\w* \w encouraged|strong="H2388"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w service|strong="H5656"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 3 \w He|strong="H3068"\w* said \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w who|strong="H3605"\w* taught \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w holy|strong="H6944"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, “\w Put|strong="H5414"\w* \w the|strong="H3605"\w* \w holy|strong="H6944"\w* ark \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w which|strong="H3068"\w* \w Solomon|strong="H8010"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w built|strong="H1129"\w*. \w It|strong="H5414"\w* \w will|strong="H3068"\w* \w no|strong="H3605"\w* longer \w be|strong="H3068"\w* \w a|strong="H3068"\w* \w burden|strong="H4853"\w* \w on|strong="H3068"\w* \w your|strong="H3068"\w* \w shoulders|strong="H3802"\w*. \w Now|strong="H6258"\w* \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w and|strong="H1121"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*. +\v 4 \w Prepare|strong="H3559"\w* yourselves \w after|strong="H1004"\w* \w your|strong="H3559"\w* fathers’ \w houses|strong="H1004"\w* \w by|strong="H3478"\w* \w your|strong="H3559"\w* \w divisions|strong="H4256"\w*, according \w to|strong="H3478"\w* \w the|strong="H3559"\w* \w writing|strong="H3791"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* according \w to|strong="H3478"\w* \w the|strong="H3559"\w* \w writing|strong="H3791"\w* \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w* \w his|strong="H1732"\w* \w son|strong="H1121"\w*. +\v 5 \w Stand|strong="H5975"\w* \w in|strong="H1004"\w* \w the|strong="H5975"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w* according \w to|strong="H1121"\w* \w the|strong="H5975"\w* \w divisions|strong="H2515"\w* \w of|strong="H1121"\w* \w the|strong="H5975"\w* fathers’ \w houses|strong="H1004"\w* \w of|strong="H1121"\w* \w your|strong="H1121"\w* \w brothers|strong="H1121"\w* \w the|strong="H5975"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5975"\w* \w people|strong="H5971"\w*, \w and|strong="H1121"\w* let \w there|strong="H5975"\w* \w be|strong="H1121"\w* \w for|strong="H1004"\w* \w each|strong="H5971"\w* \w a|strong="H3068"\w* \w portion|strong="H6944"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* fathers’ \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w the|strong="H5975"\w* \w Levites|strong="H3881"\w*. +\v 6 \w Kill|strong="H7819"\w* \w the|strong="H6213"\w* \w Passover|strong="H6453"\w* lamb, \w sanctify|strong="H6942"\w* \w yourselves|strong="H3027"\w*, \w and|strong="H4872"\w* \w prepare|strong="H3559"\w* \w for|strong="H6213"\w* \w your|strong="H3068"\w* brothers, \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w according|strong="H3027"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w*.” +\p +\v 7 \w Josiah|strong="H2977"\w* \w gave|strong="H7311"\w* \w to|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w flock|strong="H6629"\w*, \w lambs|strong="H3532"\w* \w and|strong="H1121"\w* \w young|strong="H1121"\w* \w goats|strong="H5795"\w*, \w all|strong="H3605"\w* \w of|strong="H1121"\w* \w them|strong="H4672"\w* \w for|strong="H1121"\w* \w the|strong="H3605"\w* \w Passover|strong="H6453"\w* \w offerings|strong="H6453"\w*, \w to|strong="H1121"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w present|strong="H4672"\w*, \w to|strong="H1121"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w thirty|strong="H7970"\w* thousand, \w and|strong="H1121"\w* \w three|strong="H7969"\w* thousand \w bulls|strong="H1241"\w*. \w These|strong="H3605"\w* \w were|strong="H5971"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w substance|strong="H7399"\w*. +\v 8 \w His|strong="H5414"\w* \w princes|strong="H8269"\w* \w gave|strong="H5414"\w* \w a|strong="H3068"\w* free \w will|strong="H5971"\w* \w offering|strong="H5071"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w*, \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w priests|strong="H3548"\w*, \w and|strong="H3967"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w Levites|strong="H3881"\w*. \w Hilkiah|strong="H2518"\w*, \w Zechariah|strong="H2148"\w*, \w and|strong="H3967"\w* \w Jehiel|strong="H3171"\w*, \w the|strong="H5414"\w* \w rulers|strong="H8269"\w* \w of|strong="H1004"\w* \w God|strong="H5414"\w*’s \w house|strong="H1004"\w*, \w gave|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w priests|strong="H3548"\w* \w for|strong="H1004"\w* \w the|strong="H5414"\w* \w Passover|strong="H6453"\w* \w offerings|strong="H5071"\w* \w two|strong="H1004"\w* thousand \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* small livestock, \w and|strong="H3967"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w head|strong="H8269"\w* \w of|strong="H1004"\w* \w cattle|strong="H1241"\w*. +\v 9 \w Conaniah|strong="H3562"\w* \w also|strong="H8269"\w*, \w and|strong="H3967"\w* \w Shemaiah|strong="H8098"\w* \w and|strong="H3967"\w* \w Nethanel|strong="H5417"\w*, \w his|strong="H7311"\w* brothers, \w and|strong="H3967"\w* \w Hashabiah|strong="H2811"\w*, \w Jeiel|strong="H3273"\w*, \w and|strong="H3967"\w* \w Jozabad|strong="H3107"\w*, \w the|strong="H7311"\w* \w chiefs|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H7311"\w* \w Levites|strong="H3881"\w*, \w gave|strong="H7311"\w* \w to|strong="H3881"\w* \w the|strong="H7311"\w* \w Levites|strong="H3881"\w* \w for|strong="H1241"\w* \w the|strong="H7311"\w* \w Passover|strong="H6453"\w* \w offerings|strong="H6453"\w* \w five|strong="H2568"\w* thousand small livestock \w and|strong="H3967"\w* \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w head|strong="H8269"\w* \w of|strong="H8269"\w* \w cattle|strong="H1241"\w*. +\p +\v 10 \w So|strong="H5975"\w* \w the|strong="H5921"\w* \w service|strong="H5656"\w* \w was|strong="H4428"\w* \w prepared|strong="H3559"\w*, \w and|strong="H4428"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w* \w stood|strong="H5975"\w* \w in|strong="H5921"\w* \w their|strong="H5921"\w* \w place|strong="H5975"\w*, \w and|strong="H4428"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w* \w by|strong="H5921"\w* \w their|strong="H5921"\w* \w divisions|strong="H4256"\w*, \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w commandment|strong="H4687"\w*. +\v 11 \w They|strong="H3027"\w* \w killed|strong="H7819"\w* \w the|strong="H7819"\w* \w Passover|strong="H6453"\w* lambs, \w and|strong="H3027"\w* \w the|strong="H7819"\w* \w priests|strong="H3548"\w* \w sprinkled|strong="H2236"\w* \w the|strong="H7819"\w* blood \w which|strong="H3548"\w* \w they|strong="H3027"\w* received \w from|strong="H3027"\w* \w their|strong="H6584"\w* \w hands|strong="H3027"\w*, \w and|strong="H3027"\w* \w the|strong="H7819"\w* \w Levites|strong="H3881"\w* \w skinned|strong="H6584"\w* \w them|strong="H3027"\w*. +\v 12 \w They|strong="H3651"\w* \w removed|strong="H5493"\w* \w the|strong="H5414"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w*, \w that|strong="H5971"\w* \w they|strong="H3651"\w* \w might|strong="H3068"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* according \w to|strong="H3068"\w* \w the|strong="H5414"\w* \w divisions|strong="H4653"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* fathers’ \w houses|strong="H1004"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w*, \w to|strong="H3068"\w* \w offer|strong="H7126"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w as|strong="H3651"\w* \w it|strong="H5414"\w* \w is|strong="H3068"\w* \w written|strong="H3789"\w* \w in|strong="H3068"\w* \w the|strong="H5414"\w* \w book|strong="H5612"\w* \w of|strong="H1121"\w* \w Moses|strong="H4872"\w*. \w They|strong="H3651"\w* \w did|strong="H5971"\w* \w the|strong="H5414"\w* \w same|strong="H3651"\w* \w with|strong="H1004"\w* \w the|strong="H5414"\w* \w cattle|strong="H1241"\w*. +\v 13 \w They|strong="H7323"\w* \w roasted|strong="H1310"\w* \w the|strong="H3605"\w* \w Passover|strong="H6453"\w* \w with|strong="H5971"\w* fire \w according|strong="H4941"\w* \w to|strong="H1121"\w* \w the|strong="H3605"\w* \w ordinance|strong="H4941"\w*. \w They|strong="H7323"\w* \w boiled|strong="H1310"\w* \w the|strong="H3605"\w* \w holy|strong="H6944"\w* \w offerings|strong="H6453"\w* \w in|strong="H1121"\w* \w pots|strong="H5518"\w*, \w in|strong="H1121"\w* cauldrons, \w and|strong="H1121"\w* \w in|strong="H1121"\w* \w pans|strong="H6745"\w*, \w and|strong="H1121"\w* \w carried|strong="H7323"\w* \w them|strong="H7323"\w* \w quickly|strong="H7323"\w* \w to|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*. +\v 14 Afterward \w they|strong="H1992"\w* \w prepared|strong="H3559"\w* \w for|strong="H3588"\w* \w themselves|strong="H1992"\w* \w and|strong="H1121"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w priests|strong="H3548"\w*, \w because|strong="H3588"\w* \w the|strong="H3588"\w* \w priests|strong="H3548"\w* \w the|strong="H3588"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w were|strong="H1121"\w* busy \w with|strong="H3548"\w* \w offering|strong="H5930"\w* \w the|strong="H3588"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w fat|strong="H2459"\w* \w until|strong="H5704"\w* \w night|strong="H3915"\w*. \w Therefore|strong="H3588"\w* \w the|strong="H3588"\w* \w Levites|strong="H3881"\w* \w prepared|strong="H3559"\w* \w for|strong="H3588"\w* \w themselves|strong="H1992"\w* \w and|strong="H1121"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w priests|strong="H3548"\w* \w the|strong="H3588"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron. +\v 15 \w The|strong="H5921"\w* \w singers|strong="H7891"\w*, \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Asaph, \w were|strong="H1121"\w* \w in|strong="H5921"\w* \w their|strong="H5921"\w* \w place|strong="H4612"\w*, \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w commandment|strong="H4687"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w*, Asaph, \w Heman|strong="H1968"\w*, \w and|strong="H1121"\w* \w Jeduthun|strong="H3038"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w seer|strong="H2374"\w*; \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w gatekeepers|strong="H7778"\w* \w were|strong="H1121"\w* \w at|strong="H5921"\w* \w every|strong="H8179"\w* \w gate|strong="H8179"\w*. \w They|strong="H3588"\w* didn’t need \w to|strong="H5921"\w* \w depart|strong="H5493"\w* \w from|strong="H5493"\w* \w their|strong="H5921"\w* \w service|strong="H5656"\w*, \w because|strong="H3588"\w* \w their|strong="H5921"\w* \w brothers|strong="H1121"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w* \w prepared|strong="H3559"\w* \w for|strong="H3588"\w* \w them|strong="H5921"\w*. +\p +\v 16 \w So|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w prepared|strong="H3559"\w* \w the|strong="H3605"\w* \w same|strong="H1931"\w* \w day|strong="H3117"\w*, \w to|strong="H3068"\w* \w keep|strong="H6213"\w* \w the|strong="H3605"\w* \w Passover|strong="H6453"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w offer|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w on|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w altar|strong="H4196"\w*, \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w commandment|strong="H4687"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* \w Josiah|strong="H2977"\w*. +\v 17 \w The|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w who|strong="H1931"\w* \w were|strong="H3478"\w* \w present|strong="H4672"\w* \w kept|strong="H6213"\w* \w the|strong="H6213"\w* \w Passover|strong="H6453"\w* \w at|strong="H3478"\w* \w that|strong="H3117"\w* \w time|strong="H6256"\w*, \w and|strong="H1121"\w* \w the|strong="H6213"\w* \w feast|strong="H2282"\w* \w of|strong="H1121"\w* \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. +\v 18 \w There|strong="H3427"\w* \w was|strong="H3478"\w* \w no|strong="H3808"\w* \w Passover|strong="H6453"\w* \w like|strong="H3644"\w* \w that|strong="H3605"\w* \w kept|strong="H6213"\w* \w in|strong="H3427"\w* \w Israel|strong="H3478"\w* \w from|strong="H3478"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w Samuel|strong="H8050"\w* \w the|strong="H3605"\w* \w prophet|strong="H5030"\w*, \w nor|strong="H3808"\w* \w did|strong="H6213"\w* \w any|strong="H3605"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w keep|strong="H6213"\w* \w such|strong="H3644"\w* \w a|strong="H3068"\w* \w Passover|strong="H6453"\w* \w as|strong="H3117"\w* \w Josiah|strong="H2977"\w* \w kept|strong="H6213"\w*—\w with|strong="H6213"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w*, \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Israel|strong="H3478"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w present|strong="H4672"\w*, \w and|strong="H3063"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*. +\v 19 \w This|strong="H2088"\w* \w Passover|strong="H6453"\w* \w was|strong="H8141"\w* \w kept|strong="H6213"\w* \w in|strong="H8141"\w* \w the|strong="H6213"\w* \w eighteenth|strong="H8083"\w* \w year|strong="H8141"\w* \w of|strong="H8141"\w* \w the|strong="H6213"\w* \w reign|strong="H4438"\w* \w of|strong="H8141"\w* \w Josiah|strong="H2977"\w*. +\p +\v 20 \w After|strong="H5921"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w*, \w when|strong="H3318"\w* \w Josiah|strong="H2977"\w* \w had|strong="H4428"\w* \w prepared|strong="H3559"\w* \w the|strong="H3605"\w* \w temple|strong="H1004"\w*, \w Neco|strong="H5224"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w went|strong="H3318"\w* \w up|strong="H5927"\w* \w to|strong="H3318"\w* \w fight|strong="H3898"\w* \w against|strong="H5921"\w* \w Carchemish|strong="H3751"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w Euphrates|strong="H6578"\w*, \w and|strong="H4428"\w* \w Josiah|strong="H2977"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 21 \w But|strong="H3588"\w* \w he|strong="H3588"\w* \w sent|strong="H7971"\w* \w ambassadors|strong="H4397"\w* \w to|strong="H7971"\w* \w him|strong="H5921"\w*, saying, “\w What|strong="H4100"\w* \w have|strong="H3063"\w* \w I|strong="H3588"\w* \w to|strong="H7971"\w* \w do|strong="H4100"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*, \w you|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*? \w I|strong="H3588"\w* \w come|strong="H3063"\w* \w not|strong="H3808"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w* \w today|strong="H3117"\w*, \w but|strong="H3588"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w with|strong="H5973"\w* \w which|strong="H1004"\w* \w I|strong="H3588"\w* \w have|strong="H3063"\w* \w war|strong="H4421"\w*. \w God|strong="H3808"\w* \w has|strong="H4428"\w* commanded \w me|strong="H7971"\w* \w to|strong="H7971"\w* \w make|strong="H3588"\w* haste. Beware \w that|strong="H3588"\w* \w it|strong="H5921"\w* \w is|strong="H4100"\w* \w God|strong="H3808"\w* \w who|strong="H3063"\w* \w is|strong="H4100"\w* \w with|strong="H5973"\w* \w me|strong="H7971"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w not|strong="H3808"\w* \w destroy|strong="H7843"\w* \w you|strong="H3588"\w*.” +\p +\v 22 \w Nevertheless|strong="H3588"\w* \w Josiah|strong="H2977"\w* \w would|strong="H1697"\w* \w not|strong="H3808"\w* \w turn|strong="H5437"\w* \w his|strong="H8085"\w* \w face|strong="H6440"\w* \w from|strong="H4480"\w* \w him|strong="H6440"\w*, \w but|strong="H3588"\w* \w disguised|strong="H2664"\w* \w himself|strong="H6440"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* might \w fight|strong="H3898"\w* \w with|strong="H3898"\w* \w him|strong="H6440"\w*, \w and|strong="H6440"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w Neco|strong="H5224"\w* \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w mouth|strong="H6310"\w* \w of|strong="H1697"\w* \w God|strong="H3808"\w*, \w and|strong="H6440"\w* \w came|strong="H1697"\w* \w to|strong="H6440"\w* \w fight|strong="H3898"\w* \w in|strong="H8085"\w* \w the|strong="H6440"\w* \w valley|strong="H1237"\w* \w of|strong="H1697"\w* \w Megiddo|strong="H4023"\w*. +\v 23 \w The|strong="H3588"\w* \w archers|strong="H3384"\w* \w shot|strong="H3384"\w* \w at|strong="H4428"\w* \w King|strong="H4428"\w* \w Josiah|strong="H2977"\w*; \w and|strong="H4428"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* said \w to|strong="H4428"\w* \w his|strong="H3588"\w* \w servants|strong="H5650"\w*, “\w Take|strong="H5674"\w* \w me|strong="H5674"\w* \w away|strong="H5674"\w*, \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H2470"\w* seriously \w wounded|strong="H2470"\w*!” +\p +\v 24 \w So|strong="H4480"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w* \w took|strong="H7392"\w* \w him|strong="H5921"\w* \w out|strong="H4480"\w* \w of|strong="H5650"\w* \w the|strong="H3605"\w* \w chariot|strong="H7393"\w*, \w and|strong="H3063"\w* \w put|strong="H4191"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w second|strong="H4932"\w* \w chariot|strong="H7393"\w* \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w had|strong="H3063"\w*, \w and|strong="H3063"\w* \w brought|strong="H3212"\w* \w him|strong="H5921"\w* \w to|strong="H4191"\w* \w Jerusalem|strong="H3389"\w*; \w and|strong="H3063"\w* \w he|strong="H3605"\w* \w died|strong="H4191"\w*, \w and|strong="H3063"\w* \w was|strong="H3063"\w* \w buried|strong="H6912"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w tombs|strong="H6913"\w* \w of|strong="H5650"\w* \w his|strong="H3605"\w* fathers. \w All|strong="H3605"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w* mourned \w for|strong="H5921"\w* \w Josiah|strong="H2977"\w*. +\v 25 \w Jeremiah|strong="H3414"\w* \w lamented|strong="H6969"\w* \w for|strong="H5704"\w* \w Josiah|strong="H2977"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w singing|strong="H7891"\w* \w men|strong="H7891"\w* \w and|strong="H3478"\w* \w singing|strong="H7891"\w* \w women|strong="H7891"\w* spoke \w of|strong="H3117"\w* \w Josiah|strong="H2977"\w* \w in|strong="H5921"\w* \w their|strong="H3605"\w* \w lamentations|strong="H7015"\w* \w to|strong="H5704"\w* \w this|strong="H5414"\w* \w day|strong="H3117"\w*; \w and|strong="H3478"\w* \w they|strong="H3117"\w* \w made|strong="H5414"\w* \w them|strong="H5414"\w* \w an|strong="H5414"\w* \w ordinance|strong="H2706"\w* \w in|strong="H5921"\w* \w Israel|strong="H3478"\w*. \w Behold|strong="H2005"\w*, \w they|strong="H3117"\w* \w are|strong="H3117"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w lamentations|strong="H7015"\w*. +\v 26 Now \w the|strong="H3068"\w* \w rest|strong="H3499"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w acts|strong="H1697"\w* \w of|strong="H3068"\w* \w Josiah|strong="H2977"\w* \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w good|strong="H2617"\w* \w deeds|strong="H1697"\w*, according \w to|strong="H3068"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w written|strong="H3789"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w law|strong="H8451"\w*, +\v 27 \w and|strong="H3063"\w* \w his|strong="H5921"\w* \w acts|strong="H1697"\w*, \w first|strong="H7223"\w* \w and|strong="H3063"\w* last, \w behold|strong="H2005"\w*, \w they|strong="H5921"\w* \w are|strong="H3478"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w Judah|strong="H3063"\w*. +\c 36 +\p +\v 1 \w Then|strong="H3947"\w* \w the|strong="H3947"\w* \w people|strong="H5971"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* land \w took|strong="H3947"\w* \w Jehoahaz|strong="H3059"\w* \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w*, \w and|strong="H1121"\w* \w made|strong="H4427"\w* \w him|strong="H4427"\w* \w king|strong="H4427"\w* \w in|strong="H4427"\w* \w his|strong="H3947"\w* \w father|strong="H1121"\w*’s \w place|strong="H8478"\w* \w in|strong="H4427"\w* \w Jerusalem|strong="H3389"\w*. +\v 2 \w Joahaz|strong="H3099"\w* \w was|strong="H1121"\w* \w twenty-three|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H3389"\w* began \w to|strong="H3389"\w* \w reign|strong="H4427"\w*; \w and|strong="H1121"\w* \w he|strong="H3389"\w* \w reigned|strong="H4427"\w* \w three|strong="H7969"\w* \w months|strong="H2320"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. +\v 3 \w The|strong="H5493"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w removed|strong="H5493"\w* \w him|strong="H4428"\w* \w from|strong="H5493"\w* office \w at|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3967"\w* \w fined|strong="H6064"\w* \w the|strong="H5493"\w* land \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w talents|strong="H3603"\w* \w of|strong="H4428"\w* \w silver|strong="H3701"\w* \w and|strong="H3967"\w* \w a|strong="H3068"\w* \w talent|strong="H3603"\w*\f + \fr 36:3 \ft A talent is about 30 kilograms or 66 pounds or 965 Troy ounces\f* \w of|strong="H4428"\w* \w gold|strong="H2091"\w*. +\v 4 \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w made|strong="H4427"\w* Eliakim \w his|strong="H3947"\w* brother \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3063"\w* \w changed|strong="H5437"\w* \w his|strong="H3947"\w* \w name|strong="H8034"\w* \w to|strong="H5921"\w* \w Jehoiakim|strong="H3079"\w*. \w Neco|strong="H5224"\w* \w took|strong="H3947"\w* \w Joahaz|strong="H3099"\w* \w his|strong="H3947"\w* brother, \w and|strong="H3063"\w* \w carried|strong="H5437"\w* \w him|strong="H5921"\w* \w to|strong="H5921"\w* \w Egypt|strong="H4714"\w*. +\p +\v 5 \w Jehoiakim|strong="H3079"\w* \w was|strong="H3068"\w* \w twenty-five|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H6213"\w* \w he|strong="H6213"\w* began \w to|strong="H3068"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H6213"\w* \w reigned|strong="H4427"\w* \w eleven|strong="H6240"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H8141"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H3068"\w* \w God|strong="H3068"\w*’s \w sight|strong="H5869"\w*. +\v 6 \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H4428"\w* bound \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w fetters|strong="H5178"\w* \w to|strong="H3212"\w* \w carry|strong="H5927"\w* \w him|strong="H5921"\w* \w to|strong="H3212"\w* Babylon. +\v 7 \w Nebuchadnezzar|strong="H5019"\w* \w also|strong="H3068"\w* \w carried|strong="H3068"\w* some \w of|strong="H1004"\w* \w the|strong="H5414"\w* \w vessels|strong="H3627"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w to|strong="H3068"\w* Babylon, \w and|strong="H3068"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w in|strong="H3068"\w* \w his|strong="H5414"\w* \w temple|strong="H1004"\w* \w at|strong="H3068"\w* Babylon. +\v 8 \w Now|strong="H2005"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w acts|strong="H1697"\w* \w of|strong="H1121"\w* \w Jehoiakim|strong="H3079"\w*, \w and|strong="H1121"\w* \w his|strong="H5921"\w* \w abominations|strong="H8441"\w* \w which|strong="H1697"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w*, \w and|strong="H1121"\w* \w that|strong="H1697"\w* \w which|strong="H1697"\w* \w was|strong="H3478"\w* \w found|strong="H4672"\w* \w in|strong="H5921"\w* \w him|strong="H5921"\w*, \w behold|strong="H2005"\w*, \w they|strong="H5921"\w* \w are|strong="H1121"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w and|strong="H1121"\w* \w Judah|strong="H3063"\w*; \w and|strong="H1121"\w* \w Jehoiachin|strong="H3078"\w* \w his|strong="H5921"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w place|strong="H8478"\w*. +\p +\v 9 \w Jehoiachin|strong="H3078"\w* \w was|strong="H3068"\w* \w eight|strong="H8083"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H3117"\w* \w he|strong="H3117"\w* began \w to|strong="H3068"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H3117"\w* \w reigned|strong="H4427"\w* \w three|strong="H7969"\w* \w months|strong="H2320"\w* \w and|strong="H1121"\w* \w ten|strong="H6235"\w* \w days|strong="H3117"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w He|strong="H3117"\w* \w did|strong="H6213"\w* \w that|strong="H3117"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H8141"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*. +\v 10 \w At|strong="H5921"\w* \w the|strong="H5921"\w* \w return|strong="H8666"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w year|strong="H8141"\w*, \w King|strong="H4428"\w* \w Nebuchadnezzar|strong="H5019"\w* \w sent|strong="H7971"\w* \w and|strong="H3063"\w* \w brought|strong="H3068"\w* \w him|strong="H5921"\w* \w to|strong="H3068"\w* Babylon, \w with|strong="H5973"\w* \w the|strong="H5921"\w* \w valuable|strong="H2532"\w* \w vessels|strong="H3627"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3063"\w* \w made|strong="H4427"\w* \w Zedekiah|strong="H6667"\w* \w his|strong="H3068"\w* brother \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w*. +\p +\v 11 \w Zedekiah|strong="H6667"\w* \w was|strong="H1121"\w* \w twenty-one|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H3389"\w* began \w to|strong="H3389"\w* \w reign|strong="H4427"\w*, \w and|strong="H1121"\w* \w he|strong="H3389"\w* \w reigned|strong="H4427"\w* \w eleven|strong="H6240"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. +\v 12 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H3068"\w* \w God|strong="H3068"\w*’s \w sight|strong="H5869"\w*. \w He|strong="H6213"\w* didn’t \w humble|strong="H3665"\w* \w himself|strong="H3665"\w* \w before|strong="H6440"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H6440"\w* \w prophet|strong="H5030"\w* speaking \w from|strong="H6440"\w* \w Yahweh|strong="H3068"\w*’s \w mouth|strong="H6310"\w*. +\v 13 \w He|strong="H3068"\w* \w also|strong="H1571"\w* \w rebelled|strong="H4775"\w* \w against|strong="H4775"\w* \w King|strong="H4428"\w* \w Nebuchadnezzar|strong="H5019"\w*, \w who|strong="H3068"\w* \w had|strong="H3068"\w* \w made|strong="H7185"\w* \w him|strong="H7725"\w* \w swear|strong="H7650"\w* \w by|strong="H7650"\w* \w God|strong="H3068"\w*; \w but|strong="H1571"\w* \w he|strong="H3068"\w* \w stiffened|strong="H7185"\w* \w his|strong="H3068"\w* \w neck|strong="H6203"\w*, \w and|strong="H3478"\w* \w hardened|strong="H7185"\w* \w his|strong="H3068"\w* \w heart|strong="H3824"\w* \w against|strong="H4775"\w* \w turning|strong="H7725"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. +\v 14 \w Moreover|strong="H1571"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w chiefs|strong="H8269"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w trespassed|strong="H4603"\w* \w very|strong="H7235"\w* \w greatly|strong="H7235"\w* \w after|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w abominations|strong="H8441"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*; \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w polluted|strong="H2930"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w* \w made|strong="H7235"\w* \w holy|strong="H6942"\w* \w in|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*. +\p +\v 15 \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* fathers, \w sent|strong="H7971"\w* \w to|strong="H3068"\w* \w them|strong="H5921"\w* \w by|strong="H3027"\w* \w his|strong="H3068"\w* \w messengers|strong="H4397"\w*, \w rising|strong="H7925"\w* \w up|strong="H7925"\w* \w early|strong="H7925"\w* \w and|strong="H3068"\w* \w sending|strong="H7971"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H3068"\w* \w compassion|strong="H2550"\w* \w on|strong="H5921"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w* \w and|strong="H3068"\w* \w on|strong="H5921"\w* \w his|strong="H3068"\w* \w dwelling|strong="H4583"\w* \w place|strong="H3027"\w*; +\v 16 \w but|strong="H1961"\w* \w they|strong="H3068"\w* \w mocked|strong="H3931"\w* \w the|strong="H3068"\w* \w messengers|strong="H4397"\w* \w of|strong="H3068"\w* \w God|strong="H3068"\w*, despised \w his|strong="H3068"\w* \w words|strong="H1697"\w*, \w and|strong="H3068"\w* \w scoffed|strong="H8591"\w* \w at|strong="H3068"\w* \w his|strong="H3068"\w* \w prophets|strong="H5030"\w*, \w until|strong="H5704"\w* \w Yahweh|strong="H3068"\w*’s \w wrath|strong="H2534"\w* \w arose|strong="H5927"\w* \w against|strong="H5927"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*, \w until|strong="H5704"\w* \w there|strong="H1961"\w* \w was|strong="H3068"\w* \w no|strong="H5927"\w* \w remedy|strong="H4832"\w*. +\p +\v 17 \w Therefore|strong="H5921"\w* \w he|strong="H3605"\w* \w brought|strong="H5927"\w* \w on|strong="H5921"\w* \w them|strong="H5414"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w Chaldeans|strong="H3778"\w*, \w who|strong="H3605"\w* \w killed|strong="H2026"\w* \w their|strong="H3605"\w* young \w men|strong="H2205"\w* \w with|strong="H1004"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w their|strong="H3605"\w* \w sanctuary|strong="H4720"\w*, \w and|strong="H4428"\w* \w had|strong="H4428"\w* \w no|strong="H3808"\w* \w compassion|strong="H2550"\w* \w on|strong="H5921"\w* young \w man|strong="H2205"\w* \w or|strong="H3808"\w* \w virgin|strong="H1330"\w*, \w old|strong="H2205"\w* \w man|strong="H2205"\w* \w or|strong="H3808"\w* \w infirm|strong="H3486"\w*. \w He|strong="H3605"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w all|strong="H3605"\w* \w into|strong="H5927"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*. +\v 18 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H4428"\w* \w God|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w great|strong="H1419"\w* \w and|strong="H3068"\w* \w small|strong="H6996"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* treasures \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* treasures \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w and|strong="H3068"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* \w princes|strong="H8269"\w*, \w all|strong="H3605"\w* \w these|strong="H3605"\w* \w he|strong="H3068"\w* \w brought|strong="H3068"\w* \w to|strong="H3068"\w* Babylon. +\v 19 \w They|strong="H3605"\w* \w burned|strong="H8313"\w* God’s \w house|strong="H1004"\w*, \w broke|strong="H5422"\w* \w down|strong="H5422"\w* \w the|strong="H3605"\w* \w wall|strong="H2346"\w* \w of|strong="H1004"\w* \w Jerusalem|strong="H3389"\w*, \w burned|strong="H8313"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* palaces \w with|strong="H8313"\w* fire, \w and|strong="H1004"\w* \w destroyed|strong="H7843"\w* \w all|strong="H3605"\w* \w of|strong="H1004"\w* \w its|strong="H3605"\w* \w valuable|strong="H4261"\w* \w vessels|strong="H3627"\w*. +\v 20 \w He|strong="H5704"\w* \w carried|strong="H1540"\w* \w those|strong="H4480"\w* \w who|strong="H1121"\w* \w had|strong="H1961"\w* \w escaped|strong="H7611"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w sword|strong="H2719"\w* \w away|strong="H1540"\w* \w to|strong="H5704"\w* Babylon, \w and|strong="H1121"\w* \w they|strong="H5704"\w* \w were|strong="H1961"\w* \w servants|strong="H5650"\w* \w to|strong="H5704"\w* \w him|strong="H4427"\w* \w and|strong="H1121"\w* \w his|strong="H1540"\w* \w sons|strong="H1121"\w* \w until|strong="H5704"\w* \w the|strong="H4480"\w* \w reign|strong="H4427"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w kingdom|strong="H4438"\w* \w of|strong="H1121"\w* \w Persia|strong="H6539"\w*, +\v 21 \w to|strong="H5704"\w* \w fulfill|strong="H4390"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w by|strong="H8141"\w* \w Jeremiah|strong="H3414"\w*’s \w mouth|strong="H6310"\w*, \w until|strong="H5704"\w* \w the|strong="H3605"\w* land \w had|strong="H3068"\w* \w enjoyed|strong="H7521"\w* \w its|strong="H3605"\w* \w Sabbaths|strong="H7676"\w*. \w As|strong="H5704"\w* \w long|strong="H5704"\w* \w as|strong="H5704"\w* \w it|strong="H5704"\w* lay \w desolate|strong="H8074"\w*, \w it|strong="H5704"\w* \w kept|strong="H7673"\w* \w Sabbath|strong="H7676"\w*, \w to|strong="H5704"\w* \w fulfill|strong="H4390"\w* \w seventy|strong="H7657"\w* \w years|strong="H8141"\w*. +\p +\v 22 \w Now|strong="H1571"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* first \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w Cyrus|strong="H3566"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Persia|strong="H6539"\w*, \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w by|strong="H5674"\w* \w the|strong="H3605"\w* \w mouth|strong="H6310"\w* \w of|strong="H4428"\w* \w Jeremiah|strong="H3414"\w* \w might|strong="H3068"\w* \w be|strong="H1697"\w* \w accomplished|strong="H3615"\w*, \w Yahweh|strong="H3068"\w* \w stirred|strong="H5782"\w* \w up|strong="H5782"\w* \w the|strong="H3605"\w* \w spirit|strong="H7307"\w* \w of|strong="H4428"\w* \w Cyrus|strong="H3566"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Persia|strong="H6539"\w*, \w so|strong="H1571"\w* \w that|strong="H3605"\w* \w he|strong="H3068"\w* \w made|strong="H8141"\w* \w a|strong="H3068"\w* \w proclamation|strong="H6963"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w kingdom|strong="H4438"\w*, \w and|strong="H3068"\w* \w put|strong="H3068"\w* \w it|strong="H3615"\w* \w also|strong="H1571"\w* \w in|strong="H8141"\w* \w writing|strong="H4385"\w*, \w saying|strong="H1697"\w*, +\v 23 “\w Cyrus|strong="H3566"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Persia|strong="H6539"\w* \w says|strong="H3541"\w*, ‘\w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w heaven|strong="H8064"\w*, \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w earth|strong="H5927"\w* \w to|strong="H3068"\w* \w me|strong="H5414"\w*; \w and|strong="H3063"\w* \w he|strong="H1931"\w* \w has|strong="H3068"\w* commanded \w me|strong="H5414"\w* \w to|strong="H3068"\w* \w build|strong="H1129"\w* \w him|strong="H5414"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w in|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, \w which|strong="H1931"\w* \w is|strong="H3068"\w* \w in|strong="H5921"\w* \w Judah|strong="H3063"\w*. \w Whoever|strong="H3605"\w* \w there|strong="H5927"\w* \w is|strong="H3068"\w* \w among|strong="H5973"\w* \w you|strong="H5414"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*, \w Yahweh|strong="H3068"\w* \w his|strong="H3605"\w* \w God|strong="H3068"\w* \w be|strong="H3068"\w* \w with|strong="H5973"\w* \w him|strong="H5414"\w*, \w and|strong="H3063"\w* \w let|strong="H5414"\w* \w him|strong="H5414"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w*.’” \ No newline at end of file diff --git a/bibles/eng-web_usfm/16-EZReng-web.usfm b/bibles/eng-web_usfm/16-EZReng-web.usfm new file mode 100644 index 0000000..5c53bc6 --- /dev/null +++ b/bibles/eng-web_usfm/16-EZReng-web.usfm @@ -0,0 +1,411 @@ +\id EZR World English Bible (WEB) +\ide UTF-8 +\h Ezra +\toc1 The Book of Ezra +\toc2 Ezra +\toc3 Ezr +\mt2 The Book of +\mt1 Ezra +\c 1 +\p +\v 1 \w Now|strong="H1571"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* first \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w Cyrus|strong="H3566"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Persia|strong="H6539"\w*, \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w*’s\f + \fr 1:1 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w word|strong="H1697"\w* \w by|strong="H5674"\w* \w Jeremiah|strong="H3414"\w*’s \w mouth|strong="H6310"\w* \w might|strong="H3068"\w* \w be|strong="H1697"\w* \w accomplished|strong="H3615"\w*, \w Yahweh|strong="H3068"\w* \w stirred|strong="H5782"\w* \w up|strong="H5782"\w* \w the|strong="H3605"\w* \w spirit|strong="H7307"\w* \w of|strong="H4428"\w* \w Cyrus|strong="H3566"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Persia|strong="H6539"\w*, \w so|strong="H1571"\w* \w that|strong="H3605"\w* \w he|strong="H3068"\w* \w made|strong="H8141"\w* \w a|strong="H3068"\w* \w proclamation|strong="H6963"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w kingdom|strong="H4438"\w*, \w and|strong="H3068"\w* \w put|strong="H3068"\w* \w it|strong="H3615"\w* \w also|strong="H1571"\w* \w in|strong="H8141"\w* \w writing|strong="H4385"\w*, \w saying|strong="H1697"\w*, +\mi +\v 2 “\w Cyrus|strong="H3566"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Persia|strong="H6539"\w* \w says|strong="H3541"\w*, ‘\w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w*\f + \fr 1:2 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w of|strong="H4428"\w* \w heaven|strong="H8064"\w*, \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w me|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*; \w and|strong="H3063"\w* \w he|strong="H1931"\w* \w has|strong="H3068"\w* commanded \w me|strong="H5414"\w* \w to|strong="H3068"\w* \w build|strong="H1129"\w* \w him|strong="H5414"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w in|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, \w which|strong="H1931"\w* \w is|strong="H3068"\w* \w in|strong="H5921"\w* \w Judah|strong="H3063"\w*. +\v 3 \w Whoever|strong="H3605"\w* \w there|strong="H1961"\w* \w is|strong="H3068"\w* \w among|strong="H5973"\w* \w you|strong="H3605"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*, \w may|strong="H1961"\w* \w his|strong="H3605"\w* \w God|strong="H3068"\w* \w be|strong="H1961"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*, \w and|strong="H3063"\w* \w let|strong="H1961"\w* \w him|strong="H5973"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*, \w which|strong="H1931"\w* \w is|strong="H3068"\w* \w in|strong="H3478"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w build|strong="H1129"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* (\w he|strong="H1931"\w* \w is|strong="H3068"\w* \w God|strong="H3068"\w*), \w which|strong="H1931"\w* \w is|strong="H3068"\w* \w in|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*. +\v 4 \w Whoever|strong="H3605"\w* \w is|strong="H1931"\w* \w left|strong="H7604"\w*, \w in|strong="H1004"\w* \w any|strong="H3605"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w he|strong="H1931"\w* \w lives|strong="H1481"\w*, \w let|strong="H7604"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H1004"\w* \w his|strong="H3605"\w* \w place|strong="H4725"\w* \w help|strong="H5375"\w* \w him|strong="H5973"\w* \w with|strong="H5973"\w* \w silver|strong="H3701"\w*, \w with|strong="H5973"\w* \w gold|strong="H2091"\w*, \w with|strong="H5973"\w* \w goods|strong="H7399"\w*, \w and|strong="H3701"\w* \w with|strong="H5973"\w* animals, \w in|strong="H1004"\w* addition \w to|strong="H3389"\w* \w the|strong="H3605"\w* \w free|strong="H5973"\w* \w will|strong="H1004"\w* \w offering|strong="H5071"\w* \w for|strong="H1004"\w* God’s \w house|strong="H1004"\w* \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w in|strong="H1004"\w* \w Jerusalem|strong="H3389"\w*.’” +\p +\v 5 \w Then|strong="H6965"\w* \w the|strong="H3605"\w* \w heads|strong="H7218"\w* \w of|strong="H1004"\w* fathers’ \w households|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Benjamin|strong="H1144"\w*, \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H3063"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*, \w all|strong="H3605"\w* \w whose|strong="H1144"\w* \w spirit|strong="H7307"\w* \w God|strong="H3068"\w* \w had|strong="H3068"\w* \w stirred|strong="H5782"\w* \w to|strong="H3068"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w*, \w rose|strong="H6965"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w build|strong="H1129"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*. +\v 6 \w All|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H3027"\w* \w around|strong="H5439"\w* \w them|strong="H5921"\w* \w strengthened|strong="H2388"\w* \w their|strong="H3605"\w* \w hands|strong="H3027"\w* \w with|strong="H5921"\w* \w vessels|strong="H3627"\w* \w of|strong="H3027"\w* \w silver|strong="H3701"\w*, \w with|strong="H5921"\w* \w gold|strong="H2091"\w*, \w with|strong="H5921"\w* \w goods|strong="H7399"\w*, \w with|strong="H5921"\w* animals, \w and|strong="H3701"\w* \w with|strong="H5921"\w* \w precious|strong="H4030"\w* \w things|strong="H3605"\w*, \w in|strong="H5921"\w* \w addition|strong="H5921"\w* \w to|strong="H5921"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w was|strong="H3027"\w* \w willingly|strong="H5068"\w* \w offered|strong="H5068"\w*. +\v 7 \w Also|strong="H3068"\w* \w Cyrus|strong="H3566"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w the|strong="H5414"\w* \w vessels|strong="H3627"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w which|strong="H3068"\w* \w Nebuchadnezzar|strong="H5019"\w* \w had|strong="H3068"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3068"\w* \w had|strong="H3068"\w* \w put|strong="H5414"\w* \w in|strong="H3068"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w his|strong="H5414"\w* gods; +\v 8 \w even|strong="H5921"\w* \w those|strong="H5921"\w*, \w Cyrus|strong="H3566"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Persia|strong="H6539"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w by|strong="H3027"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w Mithredath|strong="H4990"\w* \w the|strong="H5921"\w* \w treasurer|strong="H1489"\w*, \w and|strong="H3063"\w* \w counted|strong="H5608"\w* \w them|strong="H5921"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w Sheshbazzar|strong="H8339"\w* \w the|strong="H5921"\w* \w prince|strong="H5387"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*. +\v 9 This \w is|strong="H3701"\w* \w the|strong="H4557"\w* \w number|strong="H4557"\w* \w of|strong="H4557"\w* them: \w thirty|strong="H7970"\w* platters \w of|strong="H4557"\w* \w gold|strong="H2091"\w*, one thousand platters \w of|strong="H4557"\w* \w silver|strong="H3701"\w*, \w twenty-nine|strong="H6242"\w* \w knives|strong="H4252"\w*, +\v 10 \w thirty|strong="H7970"\w* \w bowls|strong="H3713"\w* \w of|strong="H3627"\w* \w gold|strong="H2091"\w*, four \w hundred|strong="H3967"\w* \w ten|strong="H6235"\w* \w silver|strong="H3701"\w* \w bowls|strong="H3713"\w* \w of|strong="H3627"\w* \w a|strong="H3068"\w* \w second|strong="H4932"\w* kind, \w and|strong="H3967"\w* \w one|strong="H3967"\w* thousand \w other|strong="H4932"\w* \w vessels|strong="H3627"\w*. +\v 11 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H3627"\w* \w gold|strong="H2091"\w* \w and|strong="H3967"\w* \w of|strong="H3627"\w* \w silver|strong="H3701"\w* \w were|strong="H3627"\w* \w five|strong="H2568"\w* thousand four \w hundred|strong="H3967"\w*. \w Sheshbazzar|strong="H8339"\w* \w brought|strong="H5927"\w* \w all|strong="H3605"\w* \w these|strong="H3605"\w* \w up|strong="H5927"\w* \w when|strong="H5927"\w* \w the|strong="H3605"\w* \w captives|strong="H1473"\w* \w were|strong="H3627"\w* \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5927"\w* Babylon \w to|strong="H5927"\w* \w Jerusalem|strong="H3389"\w*. +\c 2 +\p +\v 1 \w Now|strong="H4428"\w* \w these|strong="H4428"\w* \w are|strong="H1121"\w* \w the|strong="H7725"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H7725"\w* \w province|strong="H4082"\w* \w who|strong="H1121"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H7725"\w* \w of|strong="H1121"\w* \w the|strong="H7725"\w* \w captivity|strong="H7628"\w* \w of|strong="H1121"\w* \w those|strong="H1121"\w* \w who|strong="H1121"\w* \w had|strong="H4428"\w* \w been|strong="H5927"\w* \w carried|strong="H1540"\w* \w away|strong="H7725"\w*, whom \w Nebuchadnezzar|strong="H5020"\w* \w the|strong="H7725"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon \w had|strong="H4428"\w* \w carried|strong="H1540"\w* \w away|strong="H7725"\w* \w to|strong="H7725"\w* Babylon, \w and|strong="H1121"\w* \w who|strong="H1121"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H1121"\w* \w Judah|strong="H3063"\w*, everyone \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w city|strong="H5892"\w*; +\v 2 \w who|strong="H5971"\w* \w came|strong="H3478"\w* \w with|strong="H5973"\w* \w Zerubbabel|strong="H2216"\w*, \w Jeshua|strong="H3442"\w*, \w Nehemiah|strong="H5166"\w*, \w Seraiah|strong="H8304"\w*, \w Reelaiah|strong="H7480"\w*, \w Mordecai|strong="H4782"\w*, \w Bilshan|strong="H1114"\w*, \w Mispar|strong="H4558"\w*, Bigvai, \w Rehum|strong="H7348"\w*, \w and|strong="H3478"\w* \w Baanah|strong="H1196"\w*. +\p \w The|strong="H5973"\w* \w number|strong="H4557"\w* \w of|strong="H4557"\w* \w the|strong="H5973"\w* \w men|strong="H5971"\w* \w of|strong="H4557"\w* \w the|strong="H5973"\w* \w people|strong="H5971"\w* \w of|strong="H4557"\w* \w Israel|strong="H3478"\w*: +\v 3 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Parosh|strong="H6551"\w*, \w two|strong="H8147"\w* thousand \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* seventy-two. +\v 4 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Shephatiah|strong="H8203"\w*, \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* seventy-two. +\v 5 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Arah, \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w seventy-five|strong="H7657"\w*. +\v 6 \w The|strong="H3097"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Pahathmoab, \w of|strong="H1121"\w* \w the|strong="H3097"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeshua|strong="H3442"\w* \w and|strong="H3967"\w* \w Joab|strong="H3097"\w*, \w two|strong="H8147"\w* thousand \w eight|strong="H8083"\w* \w hundred|strong="H3967"\w* \w twelve|strong="H8147"\w*. +\v 7 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Elam|strong="H5867"\w*, \w one|strong="H1121"\w* thousand \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* fifty-four. +\v 8 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Zattu|strong="H2240"\w*, \w nine|strong="H8672"\w* \w hundred|strong="H3967"\w* forty-five. +\v 9 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Zaccai|strong="H2140"\w*, \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w sixty|strong="H8346"\w*. +\v 10 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Bani|strong="H1137"\w*, \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w forty-two|strong="H8147"\w*. +\v 11 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Bebai, \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w twenty-three|strong="H6242"\w*. +\v 12 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Azgad|strong="H5803"\w*, \w one|strong="H1121"\w* thousand \w two|strong="H8147"\w* \w hundred|strong="H3967"\w* \w twenty-two|strong="H6242"\w*. +\v 13 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Adonikam, \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w sixty-six|strong="H8346"\w*. +\v 14 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Bigvai, two thousand fifty-six. +\v 15 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Adin|strong="H5720"\w*, four \w hundred|strong="H3967"\w* fifty-four. +\v 16 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Ater, \w of|strong="H1121"\w* \w Hezekiah|strong="H2396"\w*, \w ninety-eight|strong="H8673"\w*. +\v 17 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Bezai|strong="H1209"\w*, \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w twenty-three|strong="H6242"\w*. +\v 18 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Jorah|strong="H3139"\w*, \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* \w twelve|strong="H8147"\w*. +\v 19 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hashum|strong="H2828"\w*, \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* \w twenty-three|strong="H6242"\w*. +\v 20 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gibbar|strong="H1402"\w*, \w ninety-five|strong="H8673"\w*. +\v 21 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Bethlehem|strong="H1035"\w*, \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* \w twenty-three|strong="H6242"\w*. +\v 22 The men of \w Netophah|strong="H5199"\w*, fifty-six. +\v 23 \w The|strong="H3967"\w* men \w of|strong="H3967"\w* \w Anathoth|strong="H6068"\w*, \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w twenty-eight|strong="H6242"\w*. +\v 24 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Azmaveth|strong="H5820"\w*, \w forty-two|strong="H8147"\w*. +\v 25 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Kiriath|strong="H7157"\w* Arim, \w Chephirah|strong="H3716"\w*, \w and|strong="H3967"\w* Beeroth, \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* forty-three. +\v 26 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ramah|strong="H7414"\w* \w and|strong="H3967"\w* \w Geba|strong="H1387"\w*, \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w twenty-one|strong="H6242"\w*. +\v 27 \w The|strong="H8147"\w* \w men|strong="H8147"\w* \w of|strong="H8147"\w* \w Michmas|strong="H4363"\w*, \w one|strong="H8147"\w* \w hundred|strong="H3967"\w* \w twenty-two|strong="H6242"\w*. +\v 28 \w The|strong="H3967"\w* men \w of|strong="H3967"\w* \w Bethel|strong="H1008"\w* \w and|strong="H3967"\w* \w Ai|strong="H5857"\w*, \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* \w twenty-three|strong="H6242"\w*. +\v 29 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Nebo|strong="H5015"\w*, \w fifty-two|strong="H2572"\w*. +\v 30 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Magbish|strong="H4019"\w*, \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* fifty-six. +\v 31 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H1121"\w* other \w Elam|strong="H5867"\w*, \w one|strong="H1121"\w* thousand \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* fifty-four. +\v 32 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Harim|strong="H2766"\w*, \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w twenty|strong="H6242"\w*. +\v 33 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Lod|strong="H3850"\w*, \w Hadid|strong="H2307"\w*, \w and|strong="H3967"\w* Ono, \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w twenty-five|strong="H6242"\w*. +\v 34 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Jericho|strong="H3405"\w*, \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* forty-five. +\v 35 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Senaah|strong="H5570"\w*, \w three|strong="H7969"\w* thousand \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w thirty|strong="H7970"\w*. +\p +\v 36 \w The|strong="H3548"\w* \w priests|strong="H3548"\w*: \w the|strong="H3548"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Jedaiah|strong="H3048"\w*, \w of|strong="H1121"\w* \w the|strong="H3548"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Jeshua|strong="H3442"\w*, \w nine|strong="H8672"\w* \w hundred|strong="H3967"\w* seventy-three. +\v 37 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Immer, \w one|strong="H1121"\w* thousand \w fifty-two|strong="H2572"\w*. +\v 38 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Pashhur|strong="H6583"\w*, \w one|strong="H1121"\w* thousand \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* forty-seven. +\v 39 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Harim|strong="H2766"\w*, \w one|strong="H1121"\w* thousand \w seventeen|strong="H7651"\w*. +\p +\v 40 \w The|strong="H1121"\w* \w Levites|strong="H3881"\w*: \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeshua|strong="H3442"\w* \w and|strong="H1121"\w* \w Kadmiel|strong="H6934"\w*, \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hodaviah|strong="H1938"\w*, seventy-four. +\v 41 \w The|strong="H1121"\w* \w singers|strong="H7891"\w*: \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Asaph, \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* \w twenty-eight|strong="H6242"\w*. +\v 42 \w The|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w gatekeepers|strong="H7778"\w*: \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Shallum|strong="H7967"\w*, \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Ater, \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Talmon|strong="H2929"\w*, \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Akkub|strong="H6126"\w*, \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hatita|strong="H2410"\w*, \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Shobai|strong="H7630"\w*, \w in|strong="H1121"\w* \w all|strong="H3605"\w* \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* thirty-nine. +\p +\v 43 \w The|strong="H1121"\w* \w temple|strong="H5411"\w* \w servants|strong="H5411"\w*: \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ziha|strong="H6727"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hasupha|strong="H2817"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Tabbaoth|strong="H2884"\w*, +\v 44 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Keros|strong="H7026"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Siaha|strong="H5517"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Padon|strong="H6303"\w*, +\v 45 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Lebanah|strong="H3838"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hagabah|strong="H2286"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Akkub|strong="H6126"\w*, +\v 46 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hagab|strong="H2285"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Shamlai, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hanan|strong="H2605"\w*, +\v 47 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Giddel|strong="H1435"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gahar|strong="H1515"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reaiah|strong="H7211"\w*, +\v 48 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Rezin|strong="H7526"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Nekoda|strong="H5353"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gazzam|strong="H1502"\w*, +\v 49 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Uzza|strong="H5798"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Paseah|strong="H6454"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Besai|strong="H1153"\w*, +\v 50 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Asnah, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Meunim|strong="H4586"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Nephisim|strong="H5304"\w*, +\v 51 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Bakbuk|strong="H1227"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hakupha|strong="H2709"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Harhur|strong="H2744"\w*, +\v 52 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Bazluth|strong="H1213"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Mehida|strong="H4240"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Harsha|strong="H2797"\w*, +\v 53 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Barkos|strong="H1302"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Sisera|strong="H5516"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Temah|strong="H8547"\w*, +\v 54 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Neziah|strong="H5335"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hatipha|strong="H2412"\w*. +\p +\v 55 \w The|strong="H5650"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w*’s \w servants|strong="H5650"\w*: \w the|strong="H5650"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Sotai|strong="H5479"\w*, \w the|strong="H5650"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hassophereth|strong="H5618"\w*, \w the|strong="H5650"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Peruda|strong="H6514"\w*, +\v 56 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Jaalah|strong="H3279"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Darkon|strong="H1874"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Giddel|strong="H1435"\w*, +\v 57 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Shephatiah|strong="H8203"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hattil|strong="H2411"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Pochereth Hazzebaim, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Ami. +\v 58 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w temple|strong="H5411"\w* \w servants|strong="H5650"\w*, \w and|strong="H3967"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w*’s \w servants|strong="H5650"\w*, \w were|strong="H1121"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* ninety-two. +\p +\v 59 \w These|strong="H1992"\w* \w were|strong="H3478"\w* \w those|strong="H1992"\w* \w who|strong="H3478"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5927"\w* Tel Melah, Tel Harsha, \w Cherub|strong="H3743"\w*, Addan, \w and|strong="H3478"\w* Immer; \w but|strong="H3808"\w* \w they|strong="H1992"\w* \w could|strong="H3201"\w* \w not|strong="H3808"\w* \w show|strong="H5046"\w* \w their|strong="H1992"\w* fathers’ \w houses|strong="H1004"\w* \w and|strong="H3478"\w* \w their|strong="H1992"\w* \w offspring|strong="H2233"\w*,\f + \fr 2:59 \ft or, seed\f* whether \w they|strong="H1992"\w* \w were|strong="H3478"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*: +\v 60 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Delaiah|strong="H1806"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Tobiah|strong="H2900"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Nekoda|strong="H5353"\w*, \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w fifty-two|strong="H2572"\w*. +\v 61 \w Of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w*: \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Habaiah|strong="H2252"\w*, \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hakkoz|strong="H6976"\w*, \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Barzillai|strong="H1271"\w*, \w who|strong="H3548"\w* \w took|strong="H3947"\w* \w a|strong="H3068"\w* wife \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w daughters|strong="H1323"\w* \w of|strong="H1121"\w* \w Barzillai|strong="H1271"\w* \w the|strong="H5921"\w* \w Gileadite|strong="H1569"\w*, \w and|strong="H1121"\w* \w was|strong="H8034"\w* \w called|strong="H7121"\w* \w after|strong="H5921"\w* \w their|strong="H3947"\w* \w name|strong="H8034"\w*. +\v 62 These \w sought|strong="H1245"\w* \w their|strong="H1245"\w* place \w among|strong="H4480"\w* \w those|strong="H4480"\w* \w who|strong="H4672"\w* \w were|strong="H4672"\w* registered \w by|strong="H3187"\w* \w genealogy|strong="H3187"\w*, \w but|strong="H3808"\w* \w they|strong="H3808"\w* \w were|strong="H4672"\w* \w not|strong="H3808"\w* \w found|strong="H4672"\w*; therefore \w they|strong="H3808"\w* \w were|strong="H4672"\w* deemed disqualified \w and|strong="H4480"\w* \w removed|strong="H4480"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w priesthood|strong="H3550"\w*. +\v 63 \w The|strong="H5704"\w* \w governor|strong="H8660"\w* told \w them|strong="H5975"\w* \w that|strong="H3548"\w* \w they|strong="H3808"\w* \w should|strong="H3548"\w* \w not|strong="H3808"\w* eat \w of|strong="H3548"\w* \w the|strong="H5704"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w* \w until|strong="H5704"\w* \w a|strong="H3068"\w* \w priest|strong="H3548"\w* \w stood|strong="H5975"\w* \w up|strong="H5975"\w* \w to|strong="H5704"\w* \w serve|strong="H5975"\w* \w with|strong="H3548"\w* Urim \w and|strong="H3548"\w* \w with|strong="H3548"\w* \w Thummim|strong="H8550"\w*. +\p +\v 64 \w The|strong="H3605"\w* \w whole|strong="H3605"\w* \w assembly|strong="H6951"\w* \w together|strong="H6951"\w* \w was|strong="H3605"\w* forty-two \w thousand|strong="H7239"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w sixty|strong="H8346"\w*, +\v 65 \w in|strong="H5650"\w* addition \w to|strong="H5650"\w* their \w male|strong="H5650"\w* \w servants|strong="H5650"\w* \w and|strong="H3967"\w* their female \w servants|strong="H5650"\w*, \w of|strong="H5650"\w* whom there \w were|strong="H5650"\w* \w seven|strong="H7651"\w* thousand \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w thirty-seven|strong="H7970"\w*; \w and|strong="H3967"\w* they \w had|strong="H7891"\w* \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* \w singing|strong="H7891"\w* \w men|strong="H5650"\w* \w and|strong="H3967"\w* \w singing|strong="H7891"\w* \w women|strong="H7891"\w*. +\v 66 \w Their|strong="H5483"\w* \w horses|strong="H5483"\w* \w were|strong="H5483"\w* \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w thirty-six|strong="H7970"\w*; \w their|strong="H5483"\w* \w mules|strong="H6505"\w*, \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* forty-five; +\v 67 their \w camels|strong="H1581"\w*, four \w hundred|strong="H3967"\w* \w thirty-five|strong="H7970"\w*; their \w donkeys|strong="H2543"\w*, \w six|strong="H8337"\w* thousand \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w twenty|strong="H6242"\w*. +\p +\v 68 Some \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w heads|strong="H7218"\w* \w of|strong="H1004"\w* fathers’ \w households|strong="H1004"\w*, \w when|strong="H3068"\w* \w they|strong="H3068"\w* \w came|strong="H3068"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w in|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, \w offered|strong="H5068"\w* \w willingly|strong="H5068"\w* \w for|strong="H5921"\w* \w God|strong="H3068"\w*’s \w house|strong="H1004"\w* \w to|strong="H3068"\w* \w set|strong="H5975"\w* \w it|strong="H5921"\w* \w up|strong="H5975"\w* \w in|strong="H5921"\w* \w its|strong="H5921"\w* \w place|strong="H4349"\w*. +\v 69 \w They|strong="H5414"\w* \w gave|strong="H5414"\w* \w according|strong="H3701"\w* \w to|strong="H5414"\w* \w their|strong="H5414"\w* \w ability|strong="H3581"\w* \w into|strong="H3701"\w* \w the|strong="H5414"\w* treasury \w of|strong="H3548"\w* \w the|strong="H5414"\w* \w work|strong="H4399"\w* sixty-one \w thousand|strong="H7239"\w* darics \w of|strong="H3548"\w* \w gold|strong="H2091"\w*,\f + \fr 2:69 \ft a daric was a gold coin issued by a Persian king, weighing about 8.4 grams or about 0.27 troy ounces each.\f* \w five|strong="H2568"\w* \w thousand|strong="H7239"\w* \w minas|strong="H4488"\w*\f + \fr 2:69 \ft A mina is about 600 grams or 1.3 U. S. pounds, so 5,000 minas is about 3 metric tons.\f* \w of|strong="H3548"\w* \w silver|strong="H3701"\w*, \w and|strong="H3967"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w priests|strong="H3548"\w*’ \w garments|strong="H3801"\w*. +\p +\v 70 \w So|strong="H4480"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*, \w with|strong="H3427"\w* \w some|strong="H4480"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w the|strong="H3605"\w* \w singers|strong="H7891"\w*, \w the|strong="H3605"\w* \w gatekeepers|strong="H7778"\w*, \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w temple|strong="H5411"\w* \w servants|strong="H5411"\w*, \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w their|strong="H3605"\w* \w cities|strong="H5892"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w in|strong="H3427"\w* \w their|strong="H3605"\w* \w cities|strong="H5892"\w*. +\c 3 +\p +\v 1 \w When|strong="H1121"\w* \w the|strong="H5060"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w* \w had|strong="H3478"\w* \w come|strong="H5060"\w*, \w and|strong="H1121"\w* \w the|strong="H5060"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w in|strong="H3478"\w* \w the|strong="H5060"\w* \w cities|strong="H5892"\w*, \w the|strong="H5060"\w* \w people|strong="H5971"\w* \w gathered|strong="H3478"\w* themselves \w together|strong="H5971"\w* \w as|strong="H3389"\w* \w one|strong="H1121"\w* \w man|strong="H1121"\w* \w to|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*. +\v 2 \w Then|strong="H6965"\w* \w Jeshua|strong="H3442"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jozadak|strong="H3136"\w* \w stood|strong="H6965"\w* \w up|strong="H5927"\w* \w with|strong="H5921"\w* \w his|strong="H5921"\w* \w brothers|strong="H1121"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w* \w and|strong="H1121"\w* \w Zerubbabel|strong="H2216"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shealtiel|strong="H7597"\w* \w and|strong="H1121"\w* \w his|strong="H5921"\w* \w relatives|strong="H1121"\w*, \w and|strong="H1121"\w* \w built|strong="H1129"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* God \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w offer|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*, \w as|strong="H5927"\w* \w it|strong="H5921"\w* \w is|strong="H3478"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w law|strong="H8451"\w* \w of|strong="H1121"\w* \w Moses|strong="H4872"\w* \w the|strong="H5921"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* God. +\v 3 \w In|strong="H5921"\w* \w spite|strong="H5921"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* fear \w because|strong="H3588"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w peoples|strong="H5971"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* surrounding lands, \w they|strong="H3588"\w* \w set|strong="H3559"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w on|strong="H5921"\w* \w its|strong="H5921"\w* \w base|strong="H4350"\w*; \w and|strong="H3068"\w* \w they|strong="H3588"\w* \w offered|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w even|strong="H6153"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w morning|strong="H1242"\w* \w and|strong="H3068"\w* \w evening|strong="H6153"\w*. +\v 4 \w They|strong="H3117"\w* \w kept|strong="H6213"\w* \w the|strong="H6213"\w* \w feast|strong="H2282"\w* \w of|strong="H3117"\w* \w booths|strong="H5521"\w*, \w as|strong="H1697"\w* \w it|strong="H6213"\w* \w is|strong="H3117"\w* \w written|strong="H3789"\w*, \w and|strong="H3117"\w* \w offered|strong="H6213"\w* \w the|strong="H6213"\w* \w daily|strong="H3117"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w by|strong="H3117"\w* \w number|strong="H4557"\w*, \w according|strong="H4941"\w* \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w ordinance|strong="H4941"\w*, \w as|strong="H1697"\w* \w the|strong="H6213"\w* \w duty|strong="H1697"\w* \w of|strong="H3117"\w* \w every|strong="H3117"\w* \w day|strong="H3117"\w* \w required|strong="H3117"\w*; +\v 5 \w and|strong="H3068"\w* afterward \w the|strong="H3605"\w* \w continual|strong="H8548"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w the|strong="H3605"\w* \w offerings|strong="H5930"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w new|strong="H2320"\w* \w moons|strong="H2320"\w*, \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w set|strong="H6942"\w* \w feasts|strong="H4150"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w that|strong="H3605"\w* \w were|strong="H3068"\w* \w consecrated|strong="H6942"\w*, \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w willingly|strong="H5068"\w* \w offered|strong="H5068"\w* \w a|strong="H3068"\w* free \w will|strong="H3068"\w* \w offering|strong="H5930"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 6 \w From|strong="H5927"\w* \w the|strong="H3068"\w* \w first|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w*, \w they|strong="H3117"\w* \w began|strong="H2490"\w* \w to|strong="H3068"\w* \w offer|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*; \w but|strong="H3808"\w* \w the|strong="H3068"\w* \w foundation|strong="H3245"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1964"\w* \w was|strong="H3068"\w* \w not|strong="H3808"\w* \w yet|strong="H3068"\w* \w laid|strong="H3245"\w*. +\v 7 \w They|strong="H5921"\w* \w also|strong="H4428"\w* \w gave|strong="H5414"\w* \w money|strong="H3701"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w masons|strong="H2672"\w* \w and|strong="H3701"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w carpenters|strong="H2796"\w*. \w They|strong="H5921"\w* \w also|strong="H4428"\w* \w gave|strong="H5414"\w* \w food|strong="H3978"\w*, \w drink|strong="H4960"\w*, \w and|strong="H3701"\w* \w oil|strong="H8081"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* people \w of|strong="H4428"\w* Sidon \w and|strong="H3701"\w* \w Tyre|strong="H6876"\w* \w to|strong="H5921"\w* \w bring|strong="H5414"\w* cedar \w trees|strong="H6086"\w* \w from|strong="H4480"\w* \w Lebanon|strong="H3844"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*, \w to|strong="H5921"\w* \w Joppa|strong="H3305"\w*, \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w grant|strong="H5414"\w* \w that|strong="H5414"\w* \w they|strong="H5921"\w* \w had|strong="H4428"\w* \w from|strong="H4480"\w* \w Cyrus|strong="H3566"\w* \w King|strong="H4428"\w* \w of|strong="H4428"\w* \w Persia|strong="H6539"\w*. +\p +\v 8 \w Now|strong="H5921"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w second|strong="H8145"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w their|strong="H3605"\w* coming \w to|strong="H3068"\w* \w God|strong="H3068"\w*’s \w house|strong="H1004"\w* \w at|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w second|strong="H8145"\w* \w month|strong="H2320"\w*, \w Zerubbabel|strong="H2216"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shealtiel|strong="H7597"\w*, \w Jeshua|strong="H3442"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jozadak|strong="H3136"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w rest|strong="H7605"\w* \w of|strong="H1121"\w* \w their|strong="H3605"\w* \w brothers|strong="H1121"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w had|strong="H3068"\w* come \w out|strong="H5921"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w captivity|strong="H7628"\w* \w to|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, \w began|strong="H2490"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w and|strong="H1121"\w* \w appointed|strong="H5975"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*, \w from|strong="H5921"\w* \w twenty|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w and|strong="H1121"\w* \w upward|strong="H4605"\w*, \w to|strong="H3068"\w* \w have|strong="H3068"\w* \w the|strong="H3605"\w* oversight \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 9 \w Then|strong="H6213"\w* \w Jeshua|strong="H3442"\w* \w stood|strong="H5975"\w* \w with|strong="H1004"\w* \w his|strong="H5921"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H5921"\w* \w brothers|strong="H1121"\w*, \w Kadmiel|strong="H6934"\w* \w and|strong="H1121"\w* \w his|strong="H5921"\w* \w sons|strong="H1121"\w*, \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w together|strong="H5921"\w* \w to|strong="H6213"\w* \w have|strong="H1121"\w* \w the|strong="H5921"\w* oversight \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w workmen|strong="H4399"\w* \w in|strong="H5921"\w* God’s \w house|strong="H1004"\w*: \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Henadad|strong="H2582"\w*, \w with|strong="H1004"\w* \w their|strong="H5921"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w their|strong="H5921"\w* \w brothers|strong="H1121"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w*. +\p +\v 10 \w When|strong="H3068"\w* \w the|strong="H5921"\w* \w builders|strong="H1129"\w* \w laid|strong="H3245"\w* \w the|strong="H5921"\w* \w foundation|strong="H3245"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1964"\w*, \w they|strong="H3068"\w* \w set|strong="H5975"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w* \w in|strong="H5921"\w* \w their|strong="H3068"\w* vestments \w with|strong="H3847"\w* \w trumpets|strong="H2689"\w*, \w with|strong="H3847"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Asaph \w with|strong="H3847"\w* \w cymbals|strong="H4700"\w*, \w to|strong="H3478"\w* \w praise|strong="H1984"\w* \w Yahweh|strong="H3068"\w*, \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w directions|strong="H3027"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 11 \w They|strong="H3588"\w* \w sang|strong="H1984"\w* \w to|strong="H3478"\w* \w one|strong="H3605"\w* another \w in|strong="H5921"\w* \w praising|strong="H1984"\w* \w and|strong="H3478"\w* \w giving|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, “\w For|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w*, \w for|strong="H3588"\w* \w his|strong="H3605"\w* \w loving|strong="H2896"\w* \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w* \w toward|strong="H5921"\w* \w Israel|strong="H3478"\w*.” \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w shouted|strong="H7321"\w* \w with|strong="H1004"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w shout|strong="H7321"\w*, \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w praised|strong="H1984"\w* \w Yahweh|strong="H3068"\w*, \w because|strong="H3588"\w* \w the|strong="H3605"\w* \w foundation|strong="H3245"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w had|strong="H3068"\w* \w been|strong="H5769"\w* \w laid|strong="H3245"\w*. +\p +\v 12 \w But|strong="H7200"\w* \w many|strong="H7227"\w* \w of|strong="H1004"\w* \w the|strong="H7200"\w* \w priests|strong="H3548"\w* \w and|strong="H1419"\w* \w Levites|strong="H3881"\w* \w and|strong="H1419"\w* \w heads|strong="H7218"\w* \w of|strong="H1004"\w* fathers’ \w households|strong="H1004"\w*, \w the|strong="H7200"\w* \w old|strong="H2205"\w* \w men|strong="H2205"\w* \w who|strong="H3548"\w* \w had|strong="H5869"\w* \w seen|strong="H7200"\w* \w the|strong="H7200"\w* \w first|strong="H7223"\w* \w house|strong="H1004"\w*, \w when|strong="H7200"\w* \w the|strong="H7200"\w* \w foundation|strong="H3245"\w* \w of|strong="H1004"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w* \w was|strong="H1004"\w* \w laid|strong="H3245"\w* \w before|strong="H5869"\w* \w their|strong="H7200"\w* \w eyes|strong="H5869"\w*, \w wept|strong="H1058"\w* \w with|strong="H1004"\w* \w a|strong="H3068"\w* \w loud|strong="H1419"\w* \w voice|strong="H6963"\w*. \w Many|strong="H7227"\w* \w also|strong="H2088"\w* \w shouted|strong="H8643"\w* \w aloud|strong="H7311"\w* \w for|strong="H1004"\w* \w joy|strong="H8057"\w*, +\v 13 \w so|strong="H3588"\w* \w that|strong="H3588"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w* \w could|strong="H5234"\w* \w not|strong="H3588"\w* \w discern|strong="H5234"\w* \w the|strong="H8085"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w shout|strong="H7321"\w* \w of|strong="H6963"\w* \w joy|strong="H8057"\w* \w from|strong="H8085"\w* \w the|strong="H8085"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w weeping|strong="H1065"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w*; \w for|strong="H3588"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w* \w shouted|strong="H7321"\w* \w with|strong="H5971"\w* \w a|strong="H3068"\w* \w loud|strong="H1419"\w* \w shout|strong="H7321"\w*, \w and|strong="H1419"\w* \w the|strong="H8085"\w* \w noise|strong="H6963"\w* \w was|strong="H6963"\w* \w heard|strong="H8085"\w* \w far|strong="H5704"\w* \w away|strong="H7350"\w*. +\c 4 +\p +\v 1 \w Now|strong="H3588"\w* \w when|strong="H3588"\w* \w the|strong="H8085"\w* \w adversaries|strong="H6862"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w and|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* \w captivity|strong="H1473"\w* \w were|strong="H3478"\w* \w building|strong="H1129"\w* \w a|strong="H3068"\w* \w temple|strong="H1964"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H8085"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, +\v 2 \w they|strong="H1992"\w* \w came|strong="H5927"\w* \w near|strong="H5066"\w* \w to|strong="H5927"\w* \w Zerubbabel|strong="H2216"\w*, \w and|strong="H4428"\w* \w to|strong="H5927"\w* \w the|strong="H3588"\w* \w heads|strong="H7218"\w* \w of|strong="H4428"\w* fathers’ households, \w and|strong="H4428"\w* said \w to|strong="H5927"\w* \w them|strong="H1992"\w*, “\w Let|strong="H3808"\w* \w us|strong="H3588"\w* \w build|strong="H1129"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*, \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w seek|strong="H1875"\w* \w your|strong="H3588"\w* \w God|strong="H3808"\w* \w as|strong="H3117"\w* \w you|strong="H3588"\w* do; \w and|strong="H4428"\w* \w we|strong="H3068"\w* \w have|strong="H3117"\w* \w been|strong="H3808"\w* \w sacrificing|strong="H2076"\w* \w to|strong="H5927"\w* \w him|strong="H5973"\w* \w since|strong="H3588"\w* \w the|strong="H3588"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* Esar Haddon \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria, \w who|strong="H1992"\w* \w brought|strong="H5927"\w* \w us|strong="H3588"\w* \w up|strong="H5927"\w* \w here|strong="H6311"\w*.” +\p +\v 3 \w But|strong="H3588"\w* \w Zerubbabel|strong="H2216"\w*, \w Jeshua|strong="H3442"\w*, \w and|strong="H3478"\w* \w the|strong="H3588"\w* \w rest|strong="H7605"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w heads|strong="H7218"\w* \w of|strong="H4428"\w* fathers’ \w households|strong="H1004"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* said \w to|strong="H3478"\w* \w them|strong="H6680"\w*, “\w You|strong="H3588"\w* \w have|strong="H3068"\w* \w nothing|strong="H3808"\w* \w to|strong="H3478"\w* \w do|strong="H3068"\w* \w with|strong="H1004"\w* \w us|strong="H3588"\w* \w in|strong="H3478"\w* \w building|strong="H1129"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w to|strong="H3478"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*; \w but|strong="H3588"\w* \w we|strong="H3068"\w* \w ourselves|strong="H1129"\w* \w together|strong="H3162"\w* \w will|strong="H3068"\w* \w build|strong="H1129"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3588"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w as|strong="H3068"\w* \w King|strong="H4428"\w* \w Cyrus|strong="H3566"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Persia|strong="H6539"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w* \w us|strong="H3588"\w*.” +\p +\v 4 \w Then|strong="H1961"\w* \w the|strong="H1129"\w* \w people|strong="H5971"\w* \w of|strong="H3027"\w* \w the|strong="H1129"\w* land \w weakened|strong="H7503"\w* \w the|strong="H1129"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H1129"\w* \w people|strong="H5971"\w* \w of|strong="H3027"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* troubled \w them|strong="H3027"\w* \w in|strong="H1129"\w* \w building|strong="H1129"\w*. +\v 5 \w They|strong="H3117"\w* \w hired|strong="H7936"\w* \w counselors|strong="H3289"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w* \w to|strong="H5704"\w* \w frustrate|strong="H6565"\w* \w their|strong="H3605"\w* \w purpose|strong="H6098"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w Cyrus|strong="H3566"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Persia|strong="H6539"\w*, \w even|strong="H5704"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w reign|strong="H4438"\w* \w of|strong="H4428"\w* \w Darius|strong="H1867"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Persia|strong="H6539"\w*. +\v 6 \w In|strong="H3427"\w* \w the|strong="H5921"\w* \w reign|strong="H4438"\w* \w of|strong="H3427"\w* Ahasuerus, \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w beginning|strong="H8462"\w* \w of|strong="H3427"\w* \w his|strong="H5921"\w* \w reign|strong="H4438"\w*, \w they|strong="H5921"\w* \w wrote|strong="H3789"\w* \w an|strong="H3427"\w* \w accusation|strong="H7855"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w*. +\p +\v 7 \w In|strong="H5921"\w* \w the|strong="H5921"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* Artaxerxes, \w Bishlam|strong="H1312"\w*, \w Mithredath|strong="H4990"\w*, \w Tabeel|strong="H2870"\w*, \w and|strong="H4428"\w* \w the|strong="H5921"\w* \w rest|strong="H7605"\w* \w of|strong="H4428"\w* \w his|strong="H5921"\w* \w companions|strong="H3674"\w* \w wrote|strong="H3789"\w* \w to|strong="H5921"\w* Artaxerxes \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Persia|strong="H6539"\w*; \w and|strong="H4428"\w* \w the|strong="H5921"\w* \w writing|strong="H3791"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w letter|strong="H5406"\w* \w was|strong="H3117"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* Syrian \w and|strong="H4428"\w* delivered \w in|strong="H5921"\w* \w the|strong="H5921"\w* Syrian language. +\v 8 \w Rehum|strong="H7348"\w* \w the|strong="H5922"\w* \w chancellor|strong="H1169"\w* \w and|strong="H4430"\w* \w Shimshai|strong="H8124"\w* \w the|strong="H5922"\w* \w scribe|strong="H5613"\w* \w wrote|strong="H3790"\w* \w a|strong="H3068"\w* letter \w against|strong="H5922"\w* \w Jerusalem|strong="H3390"\w* \w to|strong="H5922"\w* Artaxerxes \w the|strong="H5922"\w* \w king|strong="H4430"\w* as \w follows|strong="H3660"\w*. +\v 9 \w Then|strong="H1768"\w* \w Rehum|strong="H7348"\w* \w the|strong="H1768"\w* \w chancellor|strong="H1169"\w*, \w Shimshai|strong="H8124"\w* \w the|strong="H1768"\w* \w scribe|strong="H5613"\w*, \w and|strong="H5613"\w* \w the|strong="H1768"\w* \w rest|strong="H7606"\w* \w of|strong="H1768"\w* their \w companions|strong="H3675"\w*, \w the|strong="H1768"\w* \w Dinaites|strong="H1784"\w*, \w and|strong="H5613"\w* \w the|strong="H1768"\w* Apharsathchites, \w the|strong="H1768"\w* \w Tarpelites|strong="H2967"\w*, \w the|strong="H1768"\w* Apharsites, \w the|strong="H1768"\w* Archevites, \w the|strong="H1768"\w* Babylonians, \w the|strong="H1768"\w* Shushanchites, \w the|strong="H1768"\w* Dehaites, \w the|strong="H1768"\w* \w Elamites|strong="H5962"\w*, +\v 10 \w and|strong="H7229"\w* \w the|strong="H5675"\w* \w rest|strong="H7606"\w* \w of|strong="H1768"\w* \w the|strong="H5675"\w* nations \w whom|strong="H1768"\w* \w the|strong="H5675"\w* \w great|strong="H7229"\w* \w and|strong="H7229"\w* \w noble|strong="H3358"\w* Osnappar brought \w over|strong="H1541"\w* \w and|strong="H7229"\w* \w settled|strong="H3488"\w* \w in|strong="H3488"\w* \w the|strong="H5675"\w* \w city|strong="H7149"\w* \w of|strong="H1768"\w* \w Samaria|strong="H8115"\w*, \w and|strong="H7229"\w* \w in|strong="H3488"\w* \w the|strong="H5675"\w* \w rest|strong="H7606"\w* \w of|strong="H1768"\w* \w the|strong="H5675"\w* country \w beyond|strong="H5675"\w* \w the|strong="H5675"\w* \w River|strong="H5103"\w*, \w and|strong="H7229"\w* \w so|strong="H1768"\w* forth, wrote. +\p +\v 11 \w This|strong="H1836"\w* \w is|strong="H1768"\w* \w the|strong="H5922"\w* \w copy|strong="H6573"\w* \w of|strong="H4430"\w* \w the|strong="H5922"\w* letter \w that|strong="H1768"\w* \w they|strong="H1768"\w* \w sent|strong="H7972"\w*: +\b +\mi \w To|strong="H5922"\w* \w King|strong="H4430"\w* Artaxerxes, \w from|strong="H1768"\w* \w your|strong="H5922"\w* \w servants|strong="H5649"\w*, \w the|strong="H5922"\w* people \w beyond|strong="H5675"\w* \w the|strong="H5922"\w* \w River|strong="H5103"\w*. +\pi1 +\v 12 \w Be|strong="H1934"\w* \w it|strong="H5922"\w* \w known|strong="H3046"\w* \w to|strong="H5922"\w* \w the|strong="H5922"\w* \w king|strong="H4430"\w* \w that|strong="H1768"\w* \w the|strong="H5922"\w* \w Jews|strong="H3062"\w* \w who|strong="H1768"\w* \w came|strong="H5559"\w* \w up|strong="H3635"\w* \w from|strong="H4481"\w* \w you|strong="H1768"\w* \w have|strong="H1934"\w* come \w to|strong="H5922"\w* \w us|strong="H5922"\w* \w to|strong="H5922"\w* \w Jerusalem|strong="H3390"\w*. \w They|strong="H1768"\w* \w are|strong="H1768"\w* \w building|strong="H1124"\w* \w the|strong="H5922"\w* \w rebellious|strong="H4779"\w* \w and|strong="H4430"\w* bad \w city|strong="H7149"\w*, \w and|strong="H4430"\w* \w have|strong="H1934"\w* \w finished|strong="H3635"\w* \w the|strong="H5922"\w* \w walls|strong="H7792"\w* \w and|strong="H4430"\w* repaired \w the|strong="H5922"\w* foundations. +\v 13 \w Be|strong="H1934"\w* \w it|strong="H1934"\w* \w known|strong="H3046"\w* \w now|strong="H3705"\w* \w to|strong="H3046"\w* \w the|strong="H3046"\w* \w king|strong="H4430"\w* \w that|strong="H1768"\w* \w if|strong="H2006"\w* \w this|strong="H1791"\w* \w city|strong="H7149"\w* \w is|strong="H1768"\w* \w built|strong="H1124"\w* \w and|strong="H4430"\w* \w the|strong="H3046"\w* \w walls|strong="H7792"\w* \w finished|strong="H3635"\w*, \w they|strong="H1768"\w* \w will|strong="H1768"\w* \w not|strong="H3809"\w* \w pay|strong="H5415"\w* \w tribute|strong="H4061"\w*, \w custom|strong="H1093"\w*, \w or|strong="H2006"\w* \w toll|strong="H1983"\w*, \w and|strong="H4430"\w* \w in|strong="H4430"\w* \w the|strong="H3046"\w* end \w it|strong="H1934"\w* \w will|strong="H1768"\w* \w be|strong="H1934"\w* \w hurtful|strong="H5142"\w* \w to|strong="H3046"\w* \w the|strong="H3046"\w* \w kings|strong="H4430"\w*. +\v 14 \w Now|strong="H3705"\w* \w because|strong="H6903"\w* \w we|strong="H3068"\w* eat \w the|strong="H3606"\w* \w salt|strong="H4416"\w* \w of|strong="H4430"\w* \w the|strong="H3606"\w* \w palace|strong="H1965"\w* \w and|strong="H4430"\w* \w it|strong="H5922"\w* \w is|strong="H1768"\w* \w not|strong="H3809"\w* appropriate \w for|strong="H5922"\w* \w us|strong="H5922"\w* \w to|strong="H5922"\w* \w see|strong="H2370"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w*’s \w dishonor|strong="H6173"\w*, \w therefore|strong="H3606"\w* \w we|strong="H3068"\w* \w have|strong="H1768"\w* \w sent|strong="H7972"\w* \w and|strong="H4430"\w* \w informed|strong="H3046"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w*, +\v 15 \w that|strong="H1768"\w* \w search|strong="H1240"\w* may \w be|strong="H7149"\w* \w made|strong="H5648"\w* \w in|strong="H5922"\w* \w the|strong="H5922"\w* \w book|strong="H5609"\w* \w of|strong="H4481"\w* \w the|strong="H5922"\w* \w records|strong="H1799"\w* \w of|strong="H4481"\w* \w your|strong="H1768"\w* fathers. \w You|strong="H1768"\w* \w will|strong="H1768"\w* see \w in|strong="H5922"\w* \w the|strong="H5922"\w* \w book|strong="H5609"\w* \w of|strong="H4481"\w* \w the|strong="H5922"\w* \w records|strong="H1799"\w*, \w and|strong="H4430"\w* \w know|strong="H3046"\w* \w that|strong="H1768"\w* \w this|strong="H1836"\w* \w city|strong="H7149"\w* \w is|strong="H1768"\w* \w a|strong="H3068"\w* \w rebellious|strong="H4779"\w* \w city|strong="H7149"\w*, \w and|strong="H4430"\w* \w hurtful|strong="H5142"\w* \w to|strong="H5922"\w* \w kings|strong="H4430"\w* \w and|strong="H4430"\w* \w provinces|strong="H4083"\w*, \w and|strong="H4430"\w* \w that|strong="H1768"\w* \w they|strong="H1768"\w* \w have|strong="H1768"\w* started rebellions \w within|strong="H1459"\w* \w it|strong="H5922"\w* \w in|strong="H5922"\w* \w the|strong="H5922"\w* \w past|strong="H5957"\w*. \w That|strong="H1768"\w* \w is|strong="H1768"\w* why \w this|strong="H1836"\w* \w city|strong="H7149"\w* \w was|strong="H4430"\w* \w destroyed|strong="H2718"\w*. +\v 16 \w We|strong="H1768"\w* \w inform|strong="H3046"\w* \w the|strong="H5675"\w* \w king|strong="H4430"\w* \w that|strong="H1768"\w* \w if|strong="H2006"\w* \w this|strong="H1836"\w* \w city|strong="H7149"\w* \w is|strong="H1768"\w* \w built|strong="H1124"\w* \w and|strong="H4430"\w* \w the|strong="H5675"\w* \w walls|strong="H7792"\w* \w finished|strong="H3635"\w*, \w then|strong="H6903"\w* \w you|strong="H1768"\w* \w will|strong="H1768"\w* \w have|strong="H1768"\w* \w no|strong="H3809"\w* \w possession|strong="H2508"\w* \w beyond|strong="H5675"\w* \w the|strong="H5675"\w* \w River|strong="H5103"\w*. +\b +\p +\v 17 \w Then|strong="H1768"\w* \w the|strong="H5922"\w* \w king|strong="H4430"\w* \w sent|strong="H7972"\w* \w an|strong="H4430"\w* \w answer|strong="H6600"\w* \w to|strong="H5922"\w* \w Rehum|strong="H7348"\w* \w the|strong="H5922"\w* \w chancellor|strong="H1169"\w*, \w and|strong="H4430"\w* \w to|strong="H5922"\w* \w Shimshai|strong="H8124"\w* \w the|strong="H5922"\w* \w scribe|strong="H5613"\w*, \w and|strong="H4430"\w* \w to|strong="H5922"\w* \w the|strong="H5922"\w* \w rest|strong="H7606"\w* \w of|strong="H4430"\w* their \w companions|strong="H3675"\w* \w who|strong="H1768"\w* \w live|strong="H3488"\w* \w in|strong="H5922"\w* \w Samaria|strong="H8115"\w*, \w and|strong="H4430"\w* \w in|strong="H5922"\w* \w the|strong="H5922"\w* \w rest|strong="H7606"\w* \w of|strong="H4430"\w* \w the|strong="H5922"\w* country \w beyond|strong="H5675"\w* \w the|strong="H5922"\w* \w River|strong="H5103"\w*: +\b +\mi \w Peace|strong="H8001"\w*. +\b +\pi1 +\v 18 \w The|strong="H5922"\w* \w letter|strong="H5407"\w* \w which|strong="H1768"\w* \w you|strong="H1768"\w* \w sent|strong="H7972"\w* \w to|strong="H5922"\w* \w us|strong="H5922"\w* \w has|strong="H1768"\w* been \w plainly|strong="H6568"\w* \w read|strong="H7123"\w* \w before|strong="H6925"\w* \w me|strong="H5922"\w*. +\v 19 \w I|strong="H4481"\w* decreed, \w and|strong="H4430"\w* \w search|strong="H1240"\w* \w has|strong="H1768"\w* been \w made|strong="H5648"\w*, \w and|strong="H4430"\w* \w it|strong="H5922"\w* \w was|strong="H4430"\w* \w found|strong="H7912"\w* \w that|strong="H1768"\w* \w this|strong="H1791"\w* \w city|strong="H7149"\w* \w has|strong="H1768"\w* \w made|strong="H5648"\w* \w insurrection|strong="H5376"\w* \w against|strong="H5922"\w* \w kings|strong="H4430"\w* \w in|strong="H5922"\w* \w the|strong="H5922"\w* \w past|strong="H5957"\w*, \w and|strong="H4430"\w* \w that|strong="H1768"\w* \w rebellion|strong="H4776"\w* \w and|strong="H4430"\w* revolts \w have|strong="H7761"\w* been \w made|strong="H5648"\w* \w in|strong="H5922"\w* \w it|strong="H5922"\w*. +\v 20 There \w have|strong="H1934"\w* \w also|strong="H4430"\w* \w been|strong="H1934"\w* \w mighty|strong="H8624"\w* \w kings|strong="H4430"\w* \w over|strong="H5922"\w* \w Jerusalem|strong="H3390"\w* who \w have|strong="H1934"\w* \w ruled|strong="H7990"\w* \w over|strong="H5922"\w* \w all|strong="H3606"\w* \w the|strong="H3606"\w* country \w beyond|strong="H5675"\w* \w the|strong="H3606"\w* \w River|strong="H5103"\w*; \w and|strong="H4430"\w* \w tribute|strong="H4061"\w*, \w custom|strong="H1093"\w*, \w and|strong="H4430"\w* \w toll|strong="H1983"\w* \w was|strong="H1934"\w* \w paid|strong="H3052"\w* \w to|strong="H5922"\w* \w them|strong="H5922"\w*. +\v 21 \w Make|strong="H7761"\w* \w a|strong="H3068"\w* \w decree|strong="H2942"\w* \w now|strong="H3705"\w* \w to|strong="H2942"\w* cause \w these|strong="H4481"\w* \w men|strong="H1400"\w* \w to|strong="H2942"\w* cease, \w and|strong="H7149"\w* \w that|strong="H2942"\w* \w this|strong="H1791"\w* \w city|strong="H7149"\w* \w not|strong="H3809"\w* \w be|strong="H3809"\w* \w built|strong="H1124"\w* \w until|strong="H5705"\w* \w a|strong="H3068"\w* \w decree|strong="H2942"\w* \w is|strong="H7149"\w* \w made|strong="H7761"\w* \w by|strong="H4481"\w* \w me|strong="H4481"\w*. +\v 22 \w Be|strong="H1934"\w* careful \w that|strong="H5922"\w* \w you|strong="H5922"\w* not \w be|strong="H1934"\w* slack \w doing|strong="H5648"\w* so. \w Why|strong="H4101"\w* \w should|strong="H4101"\w* \w damage|strong="H5142"\w* \w grow|strong="H7680"\w* \w to|strong="H5922"\w* \w the|strong="H5922"\w* \w hurt|strong="H2257"\w* \w of|strong="H4430"\w* \w the|strong="H5922"\w* \w kings|strong="H4430"\w*? +\b +\p +\v 23 \w Then|strong="H1768"\w* \w when|strong="H1768"\w* \w the|strong="H5922"\w* \w copy|strong="H6573"\w* \w of|strong="H4481"\w* \w King|strong="H4430"\w* Artaxerxes’ \w letter|strong="H5407"\w* \w was|strong="H4430"\w* \w read|strong="H7123"\w* \w before|strong="H6925"\w* \w Rehum|strong="H7348"\w*, \w Shimshai|strong="H8124"\w* \w the|strong="H5922"\w* \w scribe|strong="H5613"\w*, \w and|strong="H4430"\w* their \w companions|strong="H3675"\w*, \w they|strong="H1768"\w* \w went|strong="H5613"\w* \w in|strong="H5922"\w* haste \w to|strong="H5922"\w* \w Jerusalem|strong="H3390"\w* \w to|strong="H5922"\w* \w the|strong="H5922"\w* \w Jews|strong="H3062"\w*, \w and|strong="H4430"\w* \w made|strong="H7123"\w* \w them|strong="H1994"\w* \w to|strong="H5922"\w* cease \w by|strong="H6925"\w* force \w of|strong="H4481"\w* \w arms|strong="H2429"\w*. +\v 24 \w Then|strong="H1768"\w* \w work|strong="H5673"\w* stopped \w on|strong="H5705"\w* God’s \w house|strong="H1005"\w* \w which|strong="H1768"\w* \w is|strong="H1768"\w* \w at|strong="H5705"\w* \w Jerusalem|strong="H3390"\w*. \w It|strong="H1934"\w* stopped \w until|strong="H5705"\w* \w the|strong="H1768"\w* \w second|strong="H8648"\w* \w year|strong="H8140"\w* \w of|strong="H1005"\w* \w the|strong="H1768"\w* \w reign|strong="H4437"\w* \w of|strong="H1005"\w* \w Darius|strong="H1868"\w* \w king|strong="H4430"\w* \w of|strong="H1005"\w* \w Persia|strong="H6540"\w*. +\c 5 +\p +\v 1 Now \w the|strong="H5922"\w* prophets, \w Haggai|strong="H2292"\w* \w the|strong="H5922"\w* prophet \w and|strong="H2148"\w* \w Zechariah|strong="H2148"\w* \w the|strong="H5922"\w* \w son|strong="H1247"\w* \w of|strong="H1247"\w* \w Iddo|strong="H5714"\w*, \w prophesied|strong="H5013"\w* \w to|strong="H5922"\w* \w the|strong="H5922"\w* \w Jews|strong="H3062"\w* \w who|strong="H1768"\w* \w were|strong="H1768"\w* \w in|strong="H5922"\w* \w Judah|strong="H3061"\w* \w and|strong="H2148"\w* \w Jerusalem|strong="H3390"\w*. \w They|strong="H1768"\w* \w prophesied|strong="H5013"\w* \w to|strong="H5922"\w* \w them|strong="H5922"\w* \w in|strong="H5922"\w* \w the|strong="H5922"\w* \w name|strong="H8036"\w* \w of|strong="H1247"\w* \w the|strong="H5922"\w* God \w of|strong="H1247"\w* \w Israel|strong="H3479"\w*. +\v 2 \w Then|strong="H1768"\w* \w Zerubbabel|strong="H2217"\w* \w the|strong="H1768"\w* \w son|strong="H1247"\w* \w of|strong="H1005"\w* \w Shealtiel|strong="H7598"\w*, \w and|strong="H1005"\w* \w Jeshua|strong="H3443"\w* \w the|strong="H1768"\w* \w son|strong="H1247"\w* \w of|strong="H1005"\w* \w Jozadak|strong="H3136"\w* rose \w up|strong="H6966"\w* \w and|strong="H1005"\w* \w began|strong="H8271"\w* \w to|strong="H5974"\w* \w build|strong="H1124"\w* God’s \w house|strong="H1005"\w* \w which|strong="H1768"\w* \w is|strong="H1768"\w* \w at|strong="H6966"\w* \w Jerusalem|strong="H3390"\w*; \w and|strong="H1005"\w* \w with|strong="H5974"\w* \w them|strong="H5974"\w* \w were|strong="H1768"\w* \w the|strong="H1768"\w* \w prophets|strong="H5029"\w* \w of|strong="H1005"\w* God, \w helping|strong="H5583"\w* \w them|strong="H5974"\w*. +\p +\v 3 At \w the|strong="H5922"\w* same \w time|strong="H2166"\w* \w Tattenai|strong="H8674"\w*, \w the|strong="H5922"\w* \w governor|strong="H6347"\w* \w beyond|strong="H5675"\w* \w the|strong="H5922"\w* \w River|strong="H5103"\w*, came \w to|strong="H5922"\w* \w them|strong="H5922"\w*, \w with|strong="H1124"\w* Shetharbozenai \w and|strong="H1005"\w* their \w companions|strong="H3675"\w*, \w and|strong="H1005"\w* asked \w them|strong="H5922"\w*, “\w Who|strong="H4479"\w* \w gave|strong="H7761"\w* \w you|strong="H5922"\w* \w a|strong="H3068"\w* \w decree|strong="H2942"\w* \w to|strong="H5922"\w* \w build|strong="H1124"\w* \w this|strong="H1836"\w* \w house|strong="H1005"\w* \w and|strong="H1005"\w* \w to|strong="H5922"\w* \w finish|strong="H3635"\w* \w this|strong="H1836"\w* wall?” +\v 4 \w They|strong="H3660"\w* \w also|strong="H3660"\w* asked \w for|strong="H1768"\w* \w the|strong="H1768"\w* \w names|strong="H8036"\w* \w of|strong="H1768"\w* \w the|strong="H1768"\w* \w men|strong="H1400"\w* \w who|strong="H1768"\w* \w were|strong="H1400"\w* making \w this|strong="H1836"\w* \w building|strong="H1124"\w*. +\v 5 But \w the|strong="H5922"\w* \w eye|strong="H5870"\w* \w of|strong="H5922"\w* their God \w was|strong="H1934"\w* \w on|strong="H5922"\w* \w the|strong="H5922"\w* \w elders|strong="H7868"\w* \w of|strong="H5922"\w* \w the|strong="H5922"\w* \w Jews|strong="H3062"\w*, \w and|strong="H1934"\w* \w they|strong="H3809"\w* didn’t \w make|strong="H3809"\w* \w them|strong="H1994"\w* cease \w until|strong="H5705"\w* \w the|strong="H5922"\w* \w matter|strong="H2941"\w* should come \w to|strong="H5922"\w* \w Darius|strong="H1868"\w*, \w and|strong="H1934"\w* \w an|strong="H5705"\w* \w answer|strong="H8421"\w* should \w be|strong="H1934"\w* \w returned|strong="H8421"\w* \w by|strong="H8421"\w* \w letter|strong="H5407"\w* \w concerning|strong="H5922"\w* \w it|strong="H5922"\w*. +\p +\v 6 \w The|strong="H5922"\w* \w copy|strong="H6573"\w* \w of|strong="H4430"\w* \w the|strong="H5922"\w* letter \w that|strong="H1768"\w* \w Tattenai|strong="H8674"\w*, \w the|strong="H5922"\w* \w governor|strong="H6347"\w* \w beyond|strong="H5675"\w* \w the|strong="H5922"\w* \w River|strong="H5103"\w*, \w and|strong="H4430"\w* Shetharbozenai, \w and|strong="H4430"\w* \w his|strong="H5922"\w* \w companions|strong="H3675"\w* \w the|strong="H5922"\w* Apharsachites \w who|strong="H1768"\w* \w were|strong="H1768"\w* \w beyond|strong="H5675"\w* \w the|strong="H5922"\w* \w River|strong="H5103"\w*, \w sent|strong="H7972"\w* \w to|strong="H5922"\w* \w Darius|strong="H1868"\w* \w the|strong="H5922"\w* \w king|strong="H4430"\w* follows. +\v 7 \w They|strong="H3606"\w* \w sent|strong="H7972"\w* \w a|strong="H3068"\w* \w letter|strong="H6600"\w* \w to|strong="H5922"\w* \w him|strong="H5922"\w*, \w in|strong="H5922"\w* \w which|strong="H1836"\w* \w was|strong="H4430"\w* \w written|strong="H3790"\w*: +\b +\mi \w To|strong="H5922"\w* \w Darius|strong="H1868"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w*, \w all|strong="H3606"\w* \w peace|strong="H8001"\w*. +\pi1 +\v 8 \w Be|strong="H1934"\w* \w it|strong="H1934"\w* \w known|strong="H3046"\w* \w to|strong="H3046"\w* \w the|strong="H1768"\w* \w king|strong="H4430"\w* \w that|strong="H1768"\w* \w we|strong="H3068"\w* went into \w the|strong="H1768"\w* \w province|strong="H4083"\w* \w of|strong="H1005"\w* \w Judah|strong="H3061"\w*, \w to|strong="H3046"\w* \w the|strong="H1768"\w* \w house|strong="H1005"\w* \w of|strong="H1005"\w* \w the|strong="H1768"\w* \w great|strong="H7229"\w* God, \w which|strong="H1768"\w* \w is|strong="H1768"\w* being \w built|strong="H1124"\w* \w with|strong="H1124"\w* \w great|strong="H7229"\w* stones \w and|strong="H4430"\w* timber \w is|strong="H1768"\w* \w laid|strong="H7761"\w* \w in|strong="H4430"\w* \w the|strong="H1768"\w* \w walls|strong="H3797"\w*. \w This|strong="H1791"\w* \w work|strong="H5673"\w* goes on \w with|strong="H1124"\w* diligence \w and|strong="H4430"\w* prospers \w in|strong="H4430"\w* their \w hands|strong="H3028"\w*. +\v 9 Then \w we|strong="H3068"\w* \w asked|strong="H7593"\w* those \w elders|strong="H7868"\w*, \w and|strong="H1005"\w* said \w to|strong="H2942"\w* them \w thus|strong="H1836"\w*, “\w Who|strong="H4479"\w* \w gave|strong="H7761"\w* you \w a|strong="H3068"\w* \w decree|strong="H2942"\w* \w to|strong="H2942"\w* \w build|strong="H1124"\w* \w this|strong="H1836"\w* \w house|strong="H1005"\w*, \w and|strong="H1005"\w* \w to|strong="H2942"\w* \w finish|strong="H3635"\w* \w this|strong="H1836"\w* wall?” +\v 10 \w We|strong="H1768"\w* \w asked|strong="H7593"\w* them \w their|strong="H7593"\w* \w names|strong="H8036"\w* also, \w to|strong="H3046"\w* \w inform|strong="H3046"\w* \w you|strong="H1768"\w* \w that|strong="H1768"\w* \w we|strong="H3068"\w* might \w write|strong="H3790"\w* \w the|strong="H1768"\w* \w names|strong="H8036"\w* \w of|strong="H1768"\w* \w the|strong="H1768"\w* \w men|strong="H1400"\w* \w who|strong="H1768"\w* \w were|strong="H1400"\w* at \w their|strong="H7593"\w* \w head|strong="H7217"\w*. +\v 11 \w Thus|strong="H1836"\w* \w they|strong="H3660"\w* \w returned|strong="H8421"\w* \w us|strong="H8421"\w* \w answer|strong="H6600"\w*, saying, “\w We|strong="H1768"\w* \w are|strong="H1768"\w* \w the|strong="H1768"\w* \w servants|strong="H5649"\w* \w of|strong="H1005"\w* \w the|strong="H1768"\w* God \w of|strong="H1005"\w* \w heaven|strong="H8065"\w* \w and|strong="H4430"\w* earth \w and|strong="H4430"\w* \w are|strong="H1768"\w* \w building|strong="H1124"\w* \w the|strong="H1768"\w* \w house|strong="H1005"\w* \w that|strong="H1768"\w* \w was|strong="H1934"\w* \w built|strong="H1124"\w* \w these|strong="H1836"\w* \w many|strong="H7690"\w* \w years|strong="H8140"\w* \w ago|strong="H6928"\w*, \w which|strong="H1768"\w* \w a|strong="H3068"\w* \w great|strong="H7229"\w* \w king|strong="H4430"\w* \w of|strong="H1005"\w* \w Israel|strong="H3479"\w* \w built|strong="H1124"\w* \w and|strong="H4430"\w* \w finished|strong="H3635"\w*. +\v 12 \w But|strong="H3861"\w* \w after|strong="H4481"\w* \w our|strong="H4481"\w* fathers \w had|strong="H4430"\w* \w provoked|strong="H7265"\w* \w the|strong="H4481"\w* God \w of|strong="H4481"\w* \w heaven|strong="H8065"\w* \w to|strong="H1994"\w* \w wrath|strong="H7265"\w*, \w he|strong="H1768"\w* \w gave|strong="H3052"\w* \w them|strong="H1994"\w* \w into|strong="H1541"\w* \w the|strong="H4481"\w* \w hand|strong="H3028"\w* \w of|strong="H4481"\w* \w Nebuchadnezzar|strong="H5020"\w* \w king|strong="H4430"\w* \w of|strong="H4481"\w* Babylon, \w the|strong="H4481"\w* \w Chaldean|strong="H3679"\w*, \w who|strong="H1768"\w* \w destroyed|strong="H5642"\w* \w this|strong="H1836"\w* \w house|strong="H1005"\w* \w and|strong="H4430"\w* \w carried|strong="H1541"\w* \w the|strong="H4481"\w* \w people|strong="H5972"\w* \w away|strong="H1541"\w* \w into|strong="H1541"\w* Babylon. +\v 13 \w But|strong="H1297"\w* \w in|strong="H4430"\w* \w the|strong="H1768"\w* \w first|strong="H2298"\w* \w year|strong="H8140"\w* \w of|strong="H1005"\w* \w Cyrus|strong="H3567"\w* \w king|strong="H4430"\w* \w of|strong="H1005"\w* Babylon, \w Cyrus|strong="H3567"\w* \w the|strong="H1768"\w* \w king|strong="H4430"\w* \w made|strong="H7761"\w* \w a|strong="H3068"\w* \w decree|strong="H2942"\w* \w to|strong="H2942"\w* \w build|strong="H1124"\w* \w this|strong="H1836"\w* \w house|strong="H1005"\w* \w of|strong="H1005"\w* God. +\v 14 \w The|strong="H4481"\w* \w gold|strong="H1722"\w* \w and|strong="H4430"\w* \w silver|strong="H3702"\w* \w vessels|strong="H3984"\w* \w of|strong="H4481"\w* God’s \w house|strong="H1005"\w*, \w which|strong="H1768"\w* \w Nebuchadnezzar|strong="H5020"\w* \w took|strong="H5312"\w* \w out|strong="H5312"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w temple|strong="H1005"\w* \w that|strong="H1768"\w* \w was|strong="H4430"\w* \w in|strong="H4430"\w* \w Jerusalem|strong="H3390"\w* \w and|strong="H4430"\w* \w brought|strong="H2987"\w* into \w the|strong="H4481"\w* \w temple|strong="H1005"\w* \w of|strong="H4481"\w* Babylon, \w those|strong="H1994"\w* \w Cyrus|strong="H3567"\w* \w the|strong="H4481"\w* \w king|strong="H4430"\w* \w also|strong="H4430"\w* \w took|strong="H5312"\w* \w out|strong="H5312"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w temple|strong="H1005"\w* \w of|strong="H4481"\w* Babylon, \w and|strong="H4430"\w* \w they|strong="H1768"\w* \w were|strong="H1768"\w* \w delivered|strong="H3052"\w* \w to|strong="H1994"\w* one \w whose|strong="H1768"\w* \w name|strong="H8036"\w* \w was|strong="H4430"\w* \w Sheshbazzar|strong="H8340"\w*, \w whom|strong="H1768"\w* \w he|strong="H1768"\w* \w had|strong="H4430"\w* \w made|strong="H7761"\w* \w governor|strong="H6347"\w*. +\v 15 \w He|strong="H1768"\w* said \w to|strong="H5922"\w* \w him|strong="H5922"\w*, ‘\w Take|strong="H5376"\w* \w these|strong="H1994"\w* \w vessels|strong="H3984"\w*, go, \w put|strong="H5182"\w* \w them|strong="H1994"\w* \w in|strong="H5922"\w* \w the|strong="H5922"\w* \w temple|strong="H1005"\w* \w that|strong="H1768"\w* \w is|strong="H1768"\w* \w in|strong="H5922"\w* \w Jerusalem|strong="H3390"\w*, \w and|strong="H1005"\w* let God’s \w house|strong="H1005"\w* \w be|strong="H1005"\w* \w built|strong="H1124"\w* \w in|strong="H5922"\w* its \w place|strong="H5182"\w*.’ +\v 16 \w Then|strong="H1768"\w* \w the|strong="H4481"\w* \w same|strong="H1791"\w* \w Sheshbazzar|strong="H8340"\w* \w came|strong="H1768"\w* \w and|strong="H1005"\w* \w laid|strong="H3052"\w* \w the|strong="H4481"\w* foundations \w of|strong="H4481"\w* God’s \w house|strong="H1005"\w* \w which|strong="H1768"\w* \w is|strong="H1768"\w* \w in|strong="H8000"\w* \w Jerusalem|strong="H3390"\w*. \w Since|strong="H1768"\w* \w that|strong="H1768"\w* time \w even|strong="H1768"\w* \w until|strong="H5705"\w* \w now|strong="H3705"\w* \w it|strong="H4481"\w* \w has|strong="H1768"\w* been being \w built|strong="H1124"\w*, \w and|strong="H1005"\w* yet \w it|strong="H4481"\w* \w is|strong="H1768"\w* \w not|strong="H3809"\w* \w completed|strong="H8000"\w*. +\pi1 +\v 17 \w Now|strong="H3705"\w* \w therefore|strong="H5922"\w*, \w if|strong="H2006"\w* \w it|strong="H5922"\w* seems \w good|strong="H2869"\w* \w to|strong="H5922"\w* \w the|strong="H5922"\w* \w king|strong="H4430"\w*, \w let|strong="H3705"\w* \w a|strong="H3068"\w* \w search|strong="H1240"\w* \w be|strong="H1005"\w* \w made|strong="H7761"\w* \w in|strong="H5922"\w* \w the|strong="H5922"\w* \w king|strong="H4430"\w*’s \w treasure|strong="H1596"\w* \w house|strong="H1005"\w*, \w which|strong="H1768"\w* \w is|strong="H1768"\w* \w there|strong="H8536"\w* \w at|strong="H8536"\w* Babylon, \w whether|strong="H2006"\w* \w it|strong="H5922"\w* \w is|strong="H1768"\w* \w so|strong="H1768"\w* \w that|strong="H1768"\w* \w a|strong="H3068"\w* \w decree|strong="H2942"\w* \w was|strong="H4430"\w* \w made|strong="H7761"\w* \w by|strong="H4481"\w* \w Cyrus|strong="H3567"\w* \w the|strong="H5922"\w* \w king|strong="H4430"\w* \w to|strong="H5922"\w* \w build|strong="H1124"\w* \w this|strong="H1836"\w* \w house|strong="H1005"\w* \w of|strong="H4481"\w* God \w at|strong="H8536"\w* \w Jerusalem|strong="H3390"\w*; \w and|strong="H4430"\w* \w let|strong="H3705"\w* \w the|strong="H5922"\w* \w king|strong="H4430"\w* \w send|strong="H7972"\w* \w his|strong="H5922"\w* \w pleasure|strong="H7470"\w* \w to|strong="H5922"\w* \w us|strong="H5922"\w* \w concerning|strong="H5922"\w* \w this|strong="H1836"\w* \w matter|strong="H1836"\w*.” +\c 6 +\p +\v 1 \w Then|strong="H1768"\w* \w Darius|strong="H1868"\w* \w the|strong="H1768"\w* \w king|strong="H4430"\w* \w made|strong="H7761"\w* \w a|strong="H3068"\w* \w decree|strong="H2942"\w*, \w and|strong="H4430"\w* \w the|strong="H1768"\w* \w house|strong="H1005"\w* \w of|strong="H1005"\w* \w the|strong="H1768"\w* \w archives|strong="H1005"\w*, \w where|strong="H1768"\w* \w the|strong="H1768"\w* \w treasures|strong="H1596"\w* \w were|strong="H1768"\w* \w laid|strong="H7761"\w* \w up|strong="H5182"\w* \w in|strong="H4430"\w* Babylon, \w was|strong="H4430"\w* searched. +\v 2 \w A|strong="H3068"\w* \w scroll|strong="H4040"\w* \w was|strong="H1459"\w* \w found|strong="H7912"\w* \w at|strong="H7912"\w* Achmetha, \w in|strong="H7912"\w* \w the|strong="H1768"\w* \w palace|strong="H1001"\w* \w that|strong="H1768"\w* \w is|strong="H1768"\w* \w in|strong="H7912"\w* \w the|strong="H1768"\w* \w province|strong="H4083"\w* \w of|strong="H4083"\w* \w Media|strong="H4076"\w*, \w and|strong="H4076"\w* \w in|strong="H7912"\w* it this \w was|strong="H1459"\w* \w written|strong="H3790"\w* \w for|strong="H1768"\w* \w a|strong="H3068"\w* \w record|strong="H1799"\w*: +\b +\pi1 +\v 3 \w In|strong="H4430"\w* \w the|strong="H1768"\w* \w first|strong="H2298"\w* \w year|strong="H8140"\w* \w of|strong="H1005"\w* \w Cyrus|strong="H3567"\w* \w the|strong="H1768"\w* \w king|strong="H4430"\w*, \w Cyrus|strong="H3567"\w* \w the|strong="H1768"\w* \w king|strong="H4430"\w* \w made|strong="H7761"\w* \w a|strong="H3068"\w* \w decree|strong="H2942"\w*: \w Concerning|strong="H2942"\w* God’s \w house|strong="H1005"\w* at \w Jerusalem|strong="H3390"\w*, let \w the|strong="H1768"\w* \w house|strong="H1005"\w* \w be|strong="H1005"\w* \w built|strong="H1124"\w*, \w the|strong="H1768"\w* place \w where|strong="H1768"\w* \w they|strong="H1768"\w* offer \w sacrifices|strong="H1685"\w*, \w and|strong="H4430"\w* let its foundations \w be|strong="H1005"\w* strongly \w laid|strong="H7761"\w*, \w with|strong="H1124"\w* its \w height|strong="H7314"\w* \w sixty|strong="H8361"\w* cubits\f + \fr 6:3 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w and|strong="H4430"\w* its \w width|strong="H6613"\w* \w sixty|strong="H8361"\w* cubits; +\v 4 with \w three|strong="H8532"\w* courses \w of|strong="H4481"\w* \w great|strong="H1560"\w* stones \w and|strong="H4430"\w* \w a|strong="H3068"\w* course \w of|strong="H4481"\w* \w new|strong="H2323"\w* timber. Let \w the|strong="H4481"\w* \w expenses|strong="H5313"\w* \w be|strong="H1005"\w* \w given|strong="H3052"\w* \w out|strong="H3052"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w king|strong="H4430"\w*’s \w house|strong="H1005"\w*. +\v 5 \w Also|strong="H4481"\w* let \w the|strong="H4481"\w* \w gold|strong="H1722"\w* \w and|strong="H1722"\w* \w silver|strong="H3702"\w* \w vessels|strong="H3984"\w* \w of|strong="H4481"\w* God’s \w house|strong="H1005"\w*, \w which|strong="H1768"\w* \w Nebuchadnezzar|strong="H5020"\w* \w took|strong="H5312"\w* \w out|strong="H5312"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w temple|strong="H1005"\w* \w which|strong="H1768"\w* \w is|strong="H1768"\w* at \w Jerusalem|strong="H3390"\w* \w and|strong="H1722"\w* \w brought|strong="H2987"\w* \w to|strong="H3390"\w* Babylon, \w be|strong="H1005"\w* \w restored|strong="H8421"\w* \w and|strong="H1722"\w* \w brought|strong="H2987"\w* \w again|strong="H1946"\w* \w to|strong="H3390"\w* \w the|strong="H4481"\w* \w temple|strong="H1005"\w* \w which|strong="H1768"\w* \w is|strong="H1768"\w* at \w Jerusalem|strong="H3390"\w*, everything \w to|strong="H3390"\w* \w its|strong="H4481"\w* \w place|strong="H5182"\w*. \w You|strong="H1768"\w* shall \w put|strong="H5182"\w* them \w in|strong="H5182"\w* God’s \w house|strong="H1005"\w*. +\pi1 +\v 6 \w Now|strong="H3705"\w* \w therefore|strong="H4481"\w*, \w Tattenai|strong="H8674"\w*, \w governor|strong="H6347"\w* \w beyond|strong="H5675"\w* \w the|strong="H4481"\w* \w River|strong="H5103"\w*, Shetharbozenai, \w and|strong="H1934"\w* \w your|strong="H1768"\w* \w companions|strong="H3675"\w* \w the|strong="H4481"\w* Apharsachites, \w who|strong="H1768"\w* \w are|strong="H1768"\w* \w beyond|strong="H5675"\w* \w the|strong="H4481"\w* \w River|strong="H5103"\w*, \w you|strong="H1768"\w* must stay \w far|strong="H7352"\w* \w from|strong="H4481"\w* \w there|strong="H8536"\w*. +\v 7 \w Leave|strong="H7662"\w* \w the|strong="H5922"\w* \w work|strong="H5673"\w* \w of|strong="H1005"\w* \w this|strong="H1791"\w* \w house|strong="H1005"\w* \w of|strong="H1005"\w* God \w alone|strong="H7662"\w*; let \w the|strong="H5922"\w* \w governor|strong="H6347"\w* \w of|strong="H1005"\w* \w the|strong="H5922"\w* \w Jews|strong="H3062"\w* \w and|strong="H1005"\w* \w the|strong="H5922"\w* \w elders|strong="H7868"\w* \w of|strong="H1005"\w* \w the|strong="H5922"\w* \w Jews|strong="H3062"\w* \w build|strong="H1124"\w* \w this|strong="H1791"\w* \w house|strong="H1005"\w* \w of|strong="H1005"\w* God \w in|strong="H5922"\w* its place. +\v 8 Moreover \w I|strong="H4481"\w* \w make|strong="H7761"\w* \w a|strong="H3068"\w* \w decree|strong="H2942"\w* regarding \w what|strong="H1768"\w* \w you|strong="H1768"\w* \w shall|strong="H1934"\w* \w do|strong="H5648"\w* \w for|strong="H1768"\w* \w these|strong="H4481"\w* \w elders|strong="H7868"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w Jews|strong="H3062"\w* \w for|strong="H1768"\w* \w the|strong="H4481"\w* \w building|strong="H1124"\w* \w of|strong="H4481"\w* \w this|strong="H1791"\w* \w house|strong="H1005"\w* \w of|strong="H4481"\w* God: \w that|strong="H1768"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w king|strong="H4430"\w*’s \w goods|strong="H5232"\w*, \w even|strong="H1768"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w tribute|strong="H4061"\w* \w beyond|strong="H5675"\w* \w the|strong="H4481"\w* \w River|strong="H5103"\w*, \w expenses|strong="H5313"\w* must \w be|strong="H1934"\w* \w given|strong="H3052"\w* \w with|strong="H5974"\w* all diligence \w to|strong="H2942"\w* \w these|strong="H4481"\w* \w men|strong="H1400"\w*, \w that|strong="H1768"\w* \w they|strong="H1768"\w* \w not|strong="H3809"\w* \w be|strong="H1934"\w* hindered. +\v 9 \w That|strong="H1768"\w* \w which|strong="H1768"\w* \w they|strong="H1768"\w* \w have|strong="H1934"\w* \w need|strong="H2818"\w* \w of|strong="H1123"\w*, including \w young|strong="H1123"\w* \w bulls|strong="H8450"\w*, \w rams|strong="H1798"\w*, \w and|strong="H8065"\w* lambs, \w for|strong="H1768"\w* \w burnt|strong="H5928"\w* \w offerings|strong="H5928"\w* \w to|strong="H3390"\w* \w the|strong="H1768"\w* God \w of|strong="H1123"\w* \w heaven|strong="H8065"\w*; also \w wheat|strong="H2591"\w*, \w salt|strong="H4416"\w*, \w wine|strong="H2562"\w*, \w and|strong="H8065"\w* \w oil|strong="H4887"\w*, according \w to|strong="H3390"\w* \w the|strong="H1768"\w* \w word|strong="H3983"\w* \w of|strong="H1123"\w* \w the|strong="H1768"\w* \w priests|strong="H3549"\w* \w who|strong="H1768"\w* \w are|strong="H1768"\w* \w at|strong="H1934"\w* \w Jerusalem|strong="H3390"\w*, let \w it|strong="H1934"\w* \w be|strong="H1934"\w* \w given|strong="H3052"\w* \w them|strong="H3052"\w* \w day|strong="H3118"\w* \w by|strong="H3549"\w* \w day|strong="H3118"\w* \w without|strong="H3809"\w* \w fail|strong="H7960"\w*, +\v 10 \w that|strong="H1768"\w* \w they|strong="H1768"\w* \w may|strong="H2417"\w* \w offer|strong="H7127"\w* \w sacrifices|strong="H5208"\w* \w of|strong="H4430"\w* pleasant aroma \w to|strong="H4430"\w* \w the|strong="H1768"\w* God \w of|strong="H4430"\w* \w heaven|strong="H8065"\w*, \w and|strong="H4430"\w* \w pray|strong="H6739"\w* \w for|strong="H1768"\w* \w the|strong="H1768"\w* \w life|strong="H2417"\w* \w of|strong="H4430"\w* \w the|strong="H1768"\w* \w king|strong="H4430"\w* \w and|strong="H4430"\w* \w of|strong="H4430"\w* \w his|strong="H1768"\w* \w sons|strong="H1123"\w*. +\v 11 \w I|strong="H4481"\w* \w have|strong="H7761"\w* \w also|strong="H4481"\w* \w made|strong="H5648"\w* \w a|strong="H3068"\w* \w decree|strong="H2942"\w* \w that|strong="H1768"\w* whoever alters \w this|strong="H1836"\w* message, let \w a|strong="H3068"\w* beam \w be|strong="H1005"\w* pulled \w out|strong="H5648"\w* \w from|strong="H4481"\w* \w his|strong="H5922"\w* \w house|strong="H1005"\w*, \w and|strong="H1005"\w* let \w him|strong="H5922"\w* \w be|strong="H1005"\w* lifted \w up|strong="H2211"\w* \w and|strong="H1005"\w* fastened \w on|strong="H5922"\w* \w it|strong="H5922"\w*; \w and|strong="H1005"\w* let \w his|strong="H5922"\w* \w house|strong="H1005"\w* \w be|strong="H1005"\w* \w made|strong="H5648"\w* \w a|strong="H3068"\w* \w dunghill|strong="H5122"\w* \w for|strong="H5922"\w* \w this|strong="H1836"\w*. +\v 12 May \w the|strong="H3606"\w* God \w who|strong="H1768"\w* \w has|strong="H1768"\w* caused \w his|strong="H7972"\w* \w name|strong="H8036"\w* \w to|strong="H2942"\w* \w dwell|strong="H7932"\w* \w there|strong="H8536"\w* \w overthrow|strong="H4049"\w* \w all|strong="H3606"\w* \w kings|strong="H4430"\w* \w and|strong="H4430"\w* \w peoples|strong="H5972"\w* \w who|strong="H1768"\w* stretch \w out|strong="H5648"\w* \w their|strong="H3606"\w* \w hand|strong="H3028"\w* \w to|strong="H2942"\w* \w alter|strong="H8133"\w* \w this|strong="H1791"\w*, \w to|strong="H2942"\w* \w destroy|strong="H2255"\w* \w this|strong="H1791"\w* \w house|strong="H1005"\w* \w of|strong="H1005"\w* God \w which|strong="H1768"\w* \w is|strong="H1768"\w* \w at|strong="H8536"\w* \w Jerusalem|strong="H3390"\w*. \w I|strong="H1768"\w* \w Darius|strong="H1868"\w* \w have|strong="H7761"\w* \w made|strong="H5648"\w* \w a|strong="H3068"\w* \w decree|strong="H2942"\w*. Let it \w be|strong="H1005"\w* \w done|strong="H5648"\w* \w with|strong="H5648"\w* \w all|strong="H3606"\w* diligence. +\b +\p +\v 13 \w Then|strong="H6903"\w* \w Tattenai|strong="H8674"\w*, \w the|strong="H5675"\w* \w governor|strong="H6347"\w* \w beyond|strong="H5675"\w* \w the|strong="H5675"\w* \w River|strong="H5103"\w*, Shetharbozenai, \w and|strong="H4430"\w* their \w companions|strong="H3675"\w* \w did|strong="H5648"\w* \w accordingly|strong="H3660"\w* \w with|strong="H5648"\w* all diligence, \w because|strong="H6903"\w* \w Darius|strong="H1868"\w* \w the|strong="H5675"\w* \w king|strong="H4430"\w* \w had|strong="H4430"\w* \w sent|strong="H7972"\w* \w a|strong="H3068"\w* decree. +\p +\v 14 \w The|strong="H4481"\w* \w elders|strong="H7868"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w Jews|strong="H3062"\w* \w built|strong="H1124"\w* \w and|strong="H4430"\w* \w prospered|strong="H6744"\w*, through \w the|strong="H4481"\w* \w prophesying|strong="H5017"\w* \w of|strong="H4481"\w* \w Haggai|strong="H2292"\w* \w the|strong="H4481"\w* \w prophet|strong="H5029"\w* \w and|strong="H4430"\w* \w Zechariah|strong="H2148"\w* \w the|strong="H4481"\w* \w son|strong="H1247"\w* \w of|strong="H4481"\w* \w Iddo|strong="H5714"\w*. They \w built|strong="H1124"\w* \w and|strong="H4430"\w* \w finished|strong="H3635"\w* \w it|strong="H4481"\w*, \w according|strong="H4481"\w* \w to|strong="H2942"\w* \w the|strong="H4481"\w* \w commandment|strong="H2941"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* God \w of|strong="H4481"\w* \w Israel|strong="H3479"\w*, \w and|strong="H4430"\w* \w according|strong="H4481"\w* \w to|strong="H2942"\w* \w the|strong="H4481"\w* \w decree|strong="H2942"\w* \w of|strong="H4481"\w* \w Cyrus|strong="H3567"\w*, \w Darius|strong="H1868"\w*, \w and|strong="H4430"\w* Artaxerxes \w king|strong="H4430"\w* \w of|strong="H4481"\w* \w Persia|strong="H6540"\w*. +\v 15 \w This|strong="H1836"\w* \w house|strong="H1005"\w* \w was|strong="H4430"\w* \w finished|strong="H3319"\w* \w on|strong="H5705"\w* \w the|strong="H1768"\w* \w third|strong="H8532"\w* \w day|strong="H3118"\w* \w of|strong="H1005"\w* \w the|strong="H1768"\w* \w month|strong="H3393"\w* Adar, \w which|strong="H1768"\w* \w was|strong="H4430"\w* \w in|strong="H4430"\w* \w the|strong="H1768"\w* \w sixth|strong="H8353"\w* \w year|strong="H8140"\w* \w of|strong="H1005"\w* \w the|strong="H1768"\w* \w reign|strong="H4437"\w* \w of|strong="H1005"\w* \w Darius|strong="H1868"\w* \w the|strong="H1768"\w* \w king|strong="H4430"\w*. +\p +\v 16 \w The|strong="H5648"\w* \w children|strong="H1123"\w* \w of|strong="H1005"\w* \w Israel|strong="H3479"\w*, \w the|strong="H5648"\w* \w priests|strong="H3549"\w*, \w the|strong="H5648"\w* \w Levites|strong="H3879"\w*, \w and|strong="H1005"\w* \w the|strong="H5648"\w* \w rest|strong="H7606"\w* \w of|strong="H1005"\w* \w the|strong="H5648"\w* \w children|strong="H1123"\w* \w of|strong="H1005"\w* \w the|strong="H5648"\w* \w captivity|strong="H1547"\w*, \w kept|strong="H5648"\w* \w the|strong="H5648"\w* \w dedication|strong="H2597"\w* \w of|strong="H1005"\w* \w this|strong="H1836"\w* \w house|strong="H1005"\w* \w of|strong="H1005"\w* God \w with|strong="H5648"\w* \w joy|strong="H2305"\w*. +\v 17 \w They|strong="H3606"\w* \w offered|strong="H7127"\w* at \w the|strong="H3606"\w* \w dedication|strong="H2597"\w* \w of|strong="H1005"\w* \w this|strong="H1836"\w* \w house|strong="H1005"\w* \w of|strong="H1005"\w* God \w one|strong="H1836"\w* \w hundred|strong="H3969"\w* \w bulls|strong="H8450"\w*, \w two|strong="H8648"\w* \w hundred|strong="H3969"\w* \w rams|strong="H1798"\w*, four \w hundred|strong="H3969"\w* lambs; \w and|strong="H1005"\w* \w for|strong="H5922"\w* \w a|strong="H3068"\w* \w sin|strong="H2409"\w* \w offering|strong="H7127"\w* \w for|strong="H5922"\w* \w all|strong="H3606"\w* \w Israel|strong="H3479"\w*, \w twelve|strong="H8648"\w* \w male|strong="H6841"\w* \w goats|strong="H5796"\w*, according \w to|strong="H5922"\w* \w the|strong="H3606"\w* \w number|strong="H4510"\w* \w of|strong="H1005"\w* \w the|strong="H3606"\w* \w tribes|strong="H7625"\w* \w of|strong="H1005"\w* \w Israel|strong="H3479"\w*. +\v 18 \w They|strong="H1768"\w* \w set|strong="H6966"\w* \w the|strong="H5922"\w* \w priests|strong="H3549"\w* \w in|strong="H5922"\w* their \w divisions|strong="H6392"\w* \w and|strong="H3792"\w* \w the|strong="H5922"\w* \w Levites|strong="H3879"\w* \w in|strong="H5922"\w* their \w courses|strong="H4255"\w*, \w for|strong="H5922"\w* \w the|strong="H5922"\w* \w service|strong="H5673"\w* \w of|strong="H5922"\w* God \w which|strong="H1768"\w* \w is|strong="H1768"\w* \w at|strong="H6966"\w* \w Jerusalem|strong="H3390"\w*, \w as|strong="H1768"\w* \w it|strong="H5922"\w* \w is|strong="H1768"\w* \w written|strong="H3792"\w* \w in|strong="H5922"\w* \w the|strong="H5922"\w* \w book|strong="H5609"\w* \w of|strong="H5922"\w* \w Moses|strong="H4873"\w*. +\p +\v 19 \w The|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w captivity|strong="H1473"\w* \w kept|strong="H6213"\w* \w the|strong="H6213"\w* \w Passover|strong="H6453"\w* \w on|strong="H6213"\w* \w the|strong="H6213"\w* \w fourteenth|strong="H6240"\w* \w day|strong="H2320"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*. +\v 20 \w Because|strong="H3588"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w had|strong="H3588"\w* \w purified|strong="H2891"\w* \w themselves|strong="H1992"\w* together, \w all|strong="H3605"\w* \w of|strong="H1121"\w* \w them|strong="H1992"\w* \w were|strong="H1121"\w* \w pure|strong="H2889"\w*. \w They|strong="H1992"\w* \w killed|strong="H7819"\w* \w the|strong="H3605"\w* \w Passover|strong="H6453"\w* \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w captivity|strong="H1473"\w*, \w for|strong="H3588"\w* \w their|strong="H3605"\w* \w brothers|strong="H1121"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w*, \w and|strong="H1121"\w* \w for|strong="H3588"\w* \w themselves|strong="H1992"\w*. +\v 21 \w The|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w who|strong="H3605"\w* \w had|strong="H3068"\w* \w returned|strong="H7725"\w* \w out|strong="H1875"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w captivity|strong="H1473"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w had|strong="H3068"\w* separated themselves \w to|strong="H7725"\w* \w them|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H3605"\w* \w filthiness|strong="H2932"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* land \w to|strong="H7725"\w* \w seek|strong="H1875"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, ate, +\v 22 \w and|strong="H3478"\w* \w kept|strong="H6213"\w* \w the|strong="H5921"\w* \w feast|strong="H2282"\w* \w of|strong="H4428"\w* \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w* \w with|strong="H1004"\w* \w joy|strong="H8057"\w*; \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w made|strong="H6213"\w* \w them|strong="H5921"\w* \w joyful|strong="H8055"\w*, \w and|strong="H3478"\w* \w had|strong="H3068"\w* \w turned|strong="H5437"\w* \w the|strong="H5921"\w* \w heart|strong="H3820"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w to|strong="H3478"\w* \w them|strong="H5921"\w*, \w to|strong="H3478"\w* \w strengthen|strong="H2388"\w* \w their|strong="H3068"\w* \w hands|strong="H3027"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w work|strong="H4399"\w* \w of|strong="H4428"\w* \w God|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*’s \w house|strong="H1004"\w*. +\c 7 +\p +\v 1 \w Now|strong="H4428"\w* after \w these|strong="H4428"\w* \w things|strong="H1697"\w*, \w in|strong="H4428"\w* \w the|strong="H1697"\w* \w reign|strong="H4438"\w* \w of|strong="H1121"\w* Artaxerxes \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Persia|strong="H6539"\w*, \w Ezra|strong="H5830"\w* \w the|strong="H1697"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Seraiah|strong="H8304"\w*, \w the|strong="H1697"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Azariah|strong="H5838"\w*, \w the|strong="H1697"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hilkiah|strong="H2518"\w*, +\v 2 \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shallum|strong="H7967"\w*, \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zadok|strong="H6659"\w*, \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahitub, +\v 3 \w the|strong="H5838"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amariah, \w the|strong="H5838"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Azariah|strong="H5838"\w*, \w the|strong="H5838"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Meraioth|strong="H4812"\w*, +\v 4 \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zerahiah|strong="H2228"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Uzzi|strong="H5813"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Bukki|strong="H1231"\w*, +\v 5 \w the|strong="H3548"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Abishua, \w the|strong="H3548"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Phinehas|strong="H6372"\w*, \w the|strong="H3548"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Eleazar, \w the|strong="H3548"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Aaron \w the|strong="H3548"\w* \w chief|strong="H7218"\w* \w priest|strong="H3548"\w*— +\v 6 \w this|strong="H1931"\w* \w Ezra|strong="H5830"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5921"\w* Babylon. \w He|strong="H1931"\w* \w was|strong="H3068"\w* \w a|strong="H3068"\w* \w skilled|strong="H4106"\w* \w scribe|strong="H5608"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w of|strong="H4428"\w* \w Moses|strong="H4872"\w*, \w which|strong="H1931"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w had|strong="H3068"\w* \w given|strong="H5414"\w*; \w and|strong="H4872"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w granted|strong="H5414"\w* \w him|strong="H5414"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w request|strong="H1246"\w*, \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H3605"\w* \w God|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w him|strong="H5414"\w*. +\v 7 \w Some|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w including|strong="H4428"\w* \w some|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w priests|strong="H3548"\w*, \w the|strong="H4480"\w* \w Levites|strong="H3881"\w*, \w the|strong="H4480"\w* \w singers|strong="H7891"\w*, \w the|strong="H4480"\w* \w gatekeepers|strong="H7778"\w*, \w and|strong="H1121"\w* \w the|strong="H4480"\w* \w temple|strong="H5411"\w* \w servants|strong="H5411"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w Jerusalem|strong="H3389"\w* \w in|strong="H8141"\w* \w the|strong="H4480"\w* \w seventh|strong="H7651"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* Artaxerxes \w the|strong="H4480"\w* \w king|strong="H4428"\w*. +\v 8 \w He|strong="H1931"\w* \w came|strong="H4428"\w* \w to|strong="H3389"\w* \w Jerusalem|strong="H3389"\w* \w in|strong="H8141"\w* \w the|strong="H8141"\w* \w fifth|strong="H2549"\w* \w month|strong="H2320"\w*, \w which|strong="H1931"\w* \w was|strong="H1931"\w* \w in|strong="H8141"\w* \w the|strong="H8141"\w* \w seventh|strong="H7637"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w the|strong="H8141"\w* \w king|strong="H4428"\w*. +\v 9 \w For|strong="H3588"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w first|strong="H7223"\w* \w day|strong="H2320"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w* \w he|strong="H1931"\w* \w began|strong="H3246"\w* \w to|strong="H5921"\w* \w go|strong="H4609"\w* \w up|strong="H5921"\w* \w from|strong="H5921"\w* Babylon; \w and|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w first|strong="H7223"\w* \w day|strong="H2320"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w fifth|strong="H2549"\w* \w month|strong="H2320"\w* \w he|strong="H1931"\w* \w came|strong="H7223"\w* \w to|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w good|strong="H2896"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w his|strong="H5921"\w* \w God|strong="H3027"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 10 \w For|strong="H3588"\w* \w Ezra|strong="H5830"\w* \w had|strong="H3068"\w* \w set|strong="H3559"\w* \w his|strong="H3068"\w* \w heart|strong="H3824"\w* \w to|strong="H3478"\w* \w seek|strong="H1875"\w* \w Yahweh|strong="H3068"\w*’s \w law|strong="H8451"\w*, \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w do|strong="H6213"\w* \w it|strong="H3588"\w*, \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w teach|strong="H3925"\w* \w statutes|strong="H2706"\w* \w and|strong="H3478"\w* \w ordinances|strong="H4941"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\p +\v 11 \w Now|strong="H2088"\w* \w this|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H5921"\w* \w copy|strong="H6572"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w letter|strong="H5406"\w* \w that|strong="H3068"\w* \w King|strong="H4428"\w* Artaxerxes \w gave|strong="H5414"\w* \w to|strong="H3478"\w* \w Ezra|strong="H5830"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w*, \w the|strong="H5921"\w* \w scribe|strong="H5608"\w*, \w even|strong="H3068"\w* \w the|strong="H5921"\w* \w scribe|strong="H5608"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w commandments|strong="H4687"\w*, \w and|strong="H3478"\w* \w of|strong="H4428"\w* \w his|strong="H5414"\w* \w statutes|strong="H2706"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w*: +\b +\mi +\v 12 Artaxerxes, \w king|strong="H4430"\w* \w of|strong="H4430"\w* \w kings|strong="H4430"\w*, +\mi \w To|strong="H4430"\w* \w Ezra|strong="H5831"\w* \w the|strong="H1768"\w* \w priest|strong="H3549"\w*, \w the|strong="H1768"\w* \w scribe|strong="H5613"\w* \w of|strong="H4430"\w* \w the|strong="H1768"\w* \w law|strong="H1882"\w* \w of|strong="H4430"\w* \w the|strong="H1768"\w* \w perfect|strong="H1585"\w* God \w of|strong="H4430"\w* \w heaven|strong="H8065"\w*. +\pi1 \w Now|strong="H3706"\w* +\v 13 \w I|strong="H4481"\w* \w make|strong="H7761"\w* \w a|strong="H3068"\w* \w decree|strong="H2942"\w* \w that|strong="H1768"\w* \w all|strong="H3606"\w* \w those|strong="H1768"\w* \w of|strong="H4481"\w* \w the|strong="H3606"\w* \w people|strong="H5972"\w* \w of|strong="H4481"\w* \w Israel|strong="H3479"\w* \w and|strong="H4437"\w* \w their|strong="H3606"\w* \w priests|strong="H3549"\w* \w and|strong="H4437"\w* \w the|strong="H3606"\w* \w Levites|strong="H3879"\w* \w in|strong="H4437"\w* \w my|strong="H4481"\w* \w realm|strong="H4437"\w*, \w who|strong="H1768"\w* intend \w of|strong="H4481"\w* \w their|strong="H3606"\w* own free \w will|strong="H1768"\w* \w to|strong="H2942"\w* \w go|strong="H1946"\w* \w to|strong="H2942"\w* \w Jerusalem|strong="H3390"\w*, \w go|strong="H1946"\w* \w with|strong="H5974"\w* \w you|strong="H1768"\w*. +\v 14 \w Because|strong="H6903"\w* \w you|strong="H1768"\w* \w are|strong="H1768"\w* \w sent|strong="H7972"\w* \w by|strong="H6925"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w* \w and|strong="H4430"\w* \w his|strong="H5922"\w* \w seven|strong="H7655"\w* \w counselors|strong="H3272"\w* \w to|strong="H5922"\w* \w inquire|strong="H1240"\w* \w concerning|strong="H5922"\w* \w Judah|strong="H3061"\w* \w and|strong="H4430"\w* \w Jerusalem|strong="H3390"\w*, \w according|strong="H4481"\w* \w to|strong="H5922"\w* \w the|strong="H3606"\w* \w law|strong="H1882"\w* \w of|strong="H4481"\w* \w your|strong="H5922"\w* God \w which|strong="H1768"\w* \w is|strong="H1768"\w* \w in|strong="H5922"\w* \w your|strong="H5922"\w* \w hand|strong="H3028"\w*, +\v 15 \w and|strong="H4430"\w* \w to|strong="H4430"\w* \w carry|strong="H2987"\w* \w the|strong="H1768"\w* \w silver|strong="H3702"\w* \w and|strong="H4430"\w* \w gold|strong="H1722"\w*, \w which|strong="H1768"\w* \w the|strong="H1768"\w* \w king|strong="H4430"\w* \w and|strong="H4430"\w* \w his|strong="H1768"\w* \w counselors|strong="H3272"\w* \w have|strong="H1768"\w* \w freely|strong="H5069"\w* \w offered|strong="H5069"\w* \w to|strong="H4430"\w* \w the|strong="H1768"\w* God \w of|strong="H4430"\w* \w Israel|strong="H3479"\w*, \w whose|strong="H1768"\w* \w habitation|strong="H4907"\w* \w is|strong="H1768"\w* \w in|strong="H4430"\w* \w Jerusalem|strong="H3390"\w*, +\v 16 \w and|strong="H1722"\w* \w all|strong="H3606"\w* \w the|strong="H3606"\w* \w silver|strong="H3702"\w* \w and|strong="H1722"\w* \w gold|strong="H1722"\w* \w that|strong="H1768"\w* \w you|strong="H1768"\w* \w will|strong="H1768"\w* \w find|strong="H7912"\w* \w in|strong="H7912"\w* \w all|strong="H3606"\w* \w the|strong="H3606"\w* \w province|strong="H4083"\w* \w of|strong="H1005"\w* Babylon, \w with|strong="H5974"\w* \w the|strong="H3606"\w* free \w will|strong="H1768"\w* \w offering|strong="H5069"\w* \w of|strong="H1005"\w* \w the|strong="H3606"\w* \w people|strong="H5972"\w* \w and|strong="H1722"\w* \w of|strong="H1005"\w* \w the|strong="H3606"\w* \w priests|strong="H3549"\w*, \w offering|strong="H5069"\w* \w willingly|strong="H5069"\w* \w for|strong="H1768"\w* \w the|strong="H3606"\w* \w house|strong="H1005"\w* \w of|strong="H1005"\w* \w their|strong="H3606"\w* God \w which|strong="H1768"\w* \w is|strong="H1768"\w* \w in|strong="H7912"\w* \w Jerusalem|strong="H3390"\w*. +\v 17 \w Therefore|strong="H3606"\w* \w you|strong="H1768"\w* \w shall|strong="H3606"\w* \w with|strong="H5922"\w* \w all|strong="H3606"\w* diligence \w buy|strong="H7066"\w* \w with|strong="H5922"\w* \w this|strong="H1836"\w* \w money|strong="H3702"\w* \w bulls|strong="H8450"\w*, \w rams|strong="H1798"\w*, \w and|strong="H3702"\w* lambs \w with|strong="H5922"\w* \w their|strong="H3606"\w* meal \w offerings|strong="H5261"\w* \w and|strong="H3702"\w* \w their|strong="H3606"\w* \w drink|strong="H5261"\w* \w offerings|strong="H5261"\w*, \w and|strong="H3702"\w* \w shall|strong="H3606"\w* \w offer|strong="H7127"\w* \w them|strong="H1994"\w* \w on|strong="H5922"\w* \w the|strong="H3606"\w* \w altar|strong="H4056"\w* \w of|strong="H1005"\w* \w the|strong="H3606"\w* \w house|strong="H1005"\w* \w of|strong="H1005"\w* \w your|strong="H1768"\w* God \w which|strong="H1768"\w* \w is|strong="H1768"\w* \w in|strong="H5922"\w* \w Jerusalem|strong="H3390"\w*. +\v 18 \w Whatever|strong="H4101"\w* seems \w good|strong="H3191"\w* \w to|strong="H5921"\w* \w you|strong="H5921"\w* \w and|strong="H1722"\w* \w to|strong="H5921"\w* \w your|strong="H5921"\w* brothers \w to|strong="H5921"\w* \w do|strong="H5648"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w rest|strong="H7606"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w silver|strong="H3702"\w* \w and|strong="H1722"\w* \w the|strong="H5921"\w* \w gold|strong="H1722"\w*, \w do|strong="H5648"\w* \w that|strong="H1768"\w* \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w will|strong="H4101"\w* \w of|strong="H5921"\w* \w your|strong="H5921"\w* God. +\v 19 \w The|strong="H6925"\w* \w vessels|strong="H3984"\w* \w that|strong="H1768"\w* \w are|strong="H1768"\w* \w given|strong="H3052"\w* \w to|strong="H6925"\w* \w you|strong="H1768"\w* \w for|strong="H1768"\w* \w the|strong="H6925"\w* \w service|strong="H6402"\w* \w of|strong="H1005"\w* \w the|strong="H6925"\w* \w house|strong="H1005"\w* \w of|strong="H1005"\w* \w your|strong="H3052"\w* God, \w deliver|strong="H8000"\w* \w before|strong="H6925"\w* \w the|strong="H6925"\w* God \w of|strong="H1005"\w* \w Jerusalem|strong="H3390"\w*. +\v 20 Whatever \w more|strong="H4481"\w* \w will|strong="H1768"\w* \w be|strong="H1005"\w* \w needed|strong="H2819"\w* \w for|strong="H1768"\w* \w the|strong="H4481"\w* \w house|strong="H1005"\w* \w of|strong="H4481"\w* \w your|strong="H1768"\w* God, \w which|strong="H1768"\w* \w you|strong="H1768"\w* may \w have|strong="H1768"\w* \w occasion|strong="H5308"\w* \w to|strong="H4481"\w* \w give|strong="H5415"\w*, \w give|strong="H5415"\w* \w it|strong="H4481"\w* out \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w king|strong="H4430"\w*’s \w treasure|strong="H1596"\w* \w house|strong="H1005"\w*. +\pi1 +\v 21 \w I|strong="H4481"\w*, \w even|strong="H1768"\w* \w I|strong="H4481"\w*, Artaxerxes \w the|strong="H3606"\w* \w king|strong="H4430"\w*, \w make|strong="H7761"\w* \w a|strong="H3068"\w* \w decree|strong="H2942"\w* \w to|strong="H2942"\w* \w all|strong="H3606"\w* \w the|strong="H3606"\w* \w treasurers|strong="H1490"\w* \w who|strong="H1768"\w* \w are|strong="H1768"\w* \w beyond|strong="H5675"\w* \w the|strong="H3606"\w* \w River|strong="H5103"\w*, \w that|strong="H1768"\w* \w whatever|strong="H3606"\w* \w Ezra|strong="H5831"\w* \w the|strong="H3606"\w* \w priest|strong="H3549"\w*, \w the|strong="H3606"\w* \w scribe|strong="H5613"\w* \w of|strong="H4481"\w* \w the|strong="H3606"\w* \w law|strong="H1882"\w* \w of|strong="H4481"\w* \w the|strong="H3606"\w* God \w of|strong="H4481"\w* \w heaven|strong="H8065"\w*, requires \w of|strong="H4481"\w* \w you|strong="H1768"\w*, \w it|strong="H4481"\w* \w shall|strong="H3606"\w* be \w done|strong="H5648"\w* \w with|strong="H5648"\w* \w all|strong="H3606"\w* diligence, +\v 22 up \w to|strong="H5705"\w* one \w hundred|strong="H3969"\w* \w talents|strong="H3604"\w*\f + \fr 7:22 \ft A talent is about 30 kilograms or 66 pounds or 965 Troy ounces\f* \w of|strong="H3734"\w* \w silver|strong="H3702"\w*, \w and|strong="H3702"\w* \w to|strong="H5705"\w* one \w hundred|strong="H3969"\w* \w cors|strong="H3734"\w*\f + \fr 7:22 \ft 1 cor is the same as a homer, or about 55.9 U. S. gallons (liquid) or 211 liters or 6 bushels.\f* \w of|strong="H3734"\w* \w wheat|strong="H2591"\w*, \w and|strong="H3702"\w* \w to|strong="H5705"\w* one \w hundred|strong="H3969"\w* \w baths|strong="H1325"\w*\f + \fr 7:22 \ft 1 bath is one tenth of a cor, or about 5.6 U. S. gallons or 21 liters or 2.4 pecks. 100 baths would be about 2,100 liters.\f* \w of|strong="H3734"\w* \w wine|strong="H2562"\w*, \w and|strong="H3702"\w* \w to|strong="H5705"\w* one \w hundred|strong="H3969"\w* \w baths|strong="H1325"\w* \w of|strong="H3734"\w* \w oil|strong="H4887"\w*, \w and|strong="H3702"\w* \w salt|strong="H4416"\w* \w without|strong="H3809"\w* \w prescribing|strong="H3792"\w* how much. +\v 23 \w Whatever|strong="H4101"\w* \w is|strong="H1768"\w* \w commanded|strong="H4481"\w* \w by|strong="H4481"\w* \w the|strong="H3606"\w* God \w of|strong="H4481"\w* \w heaven|strong="H8065"\w*, let \w it|strong="H5922"\w* \w be|strong="H1934"\w* \w done|strong="H5648"\w* exactly \w for|strong="H5922"\w* \w the|strong="H3606"\w* \w house|strong="H1005"\w* \w of|strong="H4481"\w* \w the|strong="H3606"\w* God \w of|strong="H4481"\w* \w heaven|strong="H8065"\w*; \w for|strong="H5922"\w* \w why|strong="H4101"\w* \w should|strong="H4101"\w* \w there|strong="H1768"\w* \w be|strong="H1934"\w* \w wrath|strong="H7109"\w* \w against|strong="H5922"\w* \w the|strong="H3606"\w* \w realm|strong="H4437"\w* \w of|strong="H4481"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w* \w and|strong="H4430"\w* \w his|strong="H5922"\w* \w sons|strong="H1123"\w*? +\pi1 +\v 24 Also \w we|strong="H3068"\w* \w inform|strong="H3046"\w* \w you|strong="H1768"\w* \w that|strong="H1768"\w* \w it|strong="H5922"\w* \w shall|strong="H3606"\w* \w not|strong="H3809"\w* \w be|strong="H3809"\w* \w lawful|strong="H7990"\w* \w to|strong="H5922"\w* \w impose|strong="H7412"\w* \w tribute|strong="H4061"\w*, \w custom|strong="H1093"\w*, \w or|strong="H3809"\w* \w toll|strong="H1983"\w* \w on|strong="H5922"\w* \w any|strong="H3606"\w* \w of|strong="H1005"\w* \w the|strong="H3606"\w* \w priests|strong="H3549"\w*, \w Levites|strong="H3879"\w*, \w singers|strong="H2171"\w*, gatekeepers, \w temple|strong="H1005"\w* \w servants|strong="H6399"\w*, \w or|strong="H3809"\w* laborers \w of|strong="H1005"\w* \w this|strong="H1836"\w* \w house|strong="H1005"\w* \w of|strong="H1005"\w* God. +\pi1 +\v 25 \w You|strong="H1768"\w*, \w Ezra|strong="H5831"\w*, according \w to|strong="H3046"\w* \w the|strong="H3606"\w* \w wisdom|strong="H2452"\w* \w of|strong="H1768"\w* \w your|strong="H1768"\w* God \w that|strong="H1768"\w* \w is|strong="H1768"\w* \w in|strong="H1768"\w* \w your|strong="H1768"\w* \w hand|strong="H3028"\w*, \w appoint|strong="H4483"\w* \w magistrates|strong="H8200"\w* \w and|strong="H2452"\w* \w judges|strong="H1782"\w* \w who|strong="H1768"\w* may \w judge|strong="H1934"\w* \w all|strong="H3606"\w* \w the|strong="H3606"\w* \w people|strong="H5972"\w* \w who|strong="H1768"\w* \w are|strong="H1768"\w* \w beyond|strong="H5675"\w* \w the|strong="H3606"\w* \w River|strong="H5103"\w*, \w who|strong="H1768"\w* \w all|strong="H3606"\w* \w know|strong="H3046"\w* \w the|strong="H3606"\w* \w laws|strong="H1882"\w* \w of|strong="H1768"\w* \w your|strong="H1768"\w* God; \w and|strong="H2452"\w* \w teach|strong="H3046"\w* him \w who|strong="H1768"\w* doesn’t \w know|strong="H3046"\w* them. +\v 26 Whoever \w will|strong="H1768"\w* \w not|strong="H3809"\w* \w do|strong="H5648"\w* \w the|strong="H3606"\w* \w law|strong="H1882"\w* \w of|strong="H4481"\w* \w your|strong="H1768"\w* God \w and|strong="H4430"\w* \w the|strong="H3606"\w* \w law|strong="H1882"\w* \w of|strong="H4481"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w*, let \w judgment|strong="H1780"\w* \w be|strong="H1934"\w* \w executed|strong="H5648"\w* on \w him|strong="H4481"\w* \w with|strong="H5648"\w* \w all|strong="H3606"\w* diligence, \w whether|strong="H2006"\w* \w it|strong="H1934"\w* \w is|strong="H1768"\w* \w to|strong="H4430"\w* \w death|strong="H4193"\w*, \w or|strong="H2006"\w* \w to|strong="H4430"\w* \w banishment|strong="H8332"\w*, \w or|strong="H2006"\w* \w to|strong="H4430"\w* \w confiscation|strong="H6065"\w* \w of|strong="H4481"\w* \w goods|strong="H5232"\w*, \w or|strong="H2006"\w* \w to|strong="H4430"\w* imprisonment. +\b +\p +\v 27 \w Blessed|strong="H1288"\w* \w be|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5414"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w our|strong="H3068"\w* fathers, \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w put|strong="H5414"\w* \w such|strong="H2063"\w* \w a|strong="H3068"\w* \w thing|strong="H2063"\w* \w as|strong="H3068"\w* \w this|strong="H2063"\w* \w in|strong="H3068"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w*’s \w heart|strong="H3820"\w*, \w to|strong="H3068"\w* \w beautify|strong="H6286"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*; +\v 28 \w and|strong="H3478"\w* \w has|strong="H3068"\w* \w extended|strong="H5186"\w* loving \w kindness|strong="H2617"\w* \w to|strong="H3478"\w* \w me|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w and|strong="H3478"\w* \w his|strong="H3605"\w* \w counselors|strong="H3289"\w*, \w and|strong="H3478"\w* \w before|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w mighty|strong="H1368"\w* \w princes|strong="H8269"\w*. \w I|strong="H5921"\w* \w was|strong="H3068"\w* \w strengthened|strong="H2388"\w* \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w my|strong="H3605"\w* \w God|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w me|strong="H6440"\w*, \w and|strong="H3478"\w* \w I|strong="H5921"\w* \w gathered|strong="H6908"\w* \w together|strong="H6908"\w* \w chief|strong="H7218"\w* \w men|strong="H1368"\w* \w out|strong="H5186"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w with|strong="H5973"\w* \w me|strong="H6440"\w*. +\c 8 +\p +\v 1 \w Now|strong="H4428"\w* \w these|strong="H4428"\w* \w are|strong="H4428"\w* \w the|strong="H5927"\w* \w heads|strong="H7218"\w* \w of|strong="H4428"\w* \w their|strong="H5973"\w* fathers’ households, \w and|strong="H4428"\w* \w this|strong="H5927"\w* \w is|strong="H4428"\w* \w the|strong="H5927"\w* \w genealogy|strong="H3187"\w* \w of|strong="H4428"\w* \w those|strong="H5973"\w* \w who|strong="H4428"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w with|strong="H5973"\w* \w me|strong="H5973"\w* \w from|strong="H5927"\w* Babylon, \w in|strong="H4428"\w* \w the|strong="H5927"\w* \w reign|strong="H4438"\w* \w of|strong="H4428"\w* Artaxerxes \w the|strong="H5927"\w* \w king|strong="H4428"\w*: +\li1 +\v 2 Of the sons of Phinehas, Gershom. +\li1 Of the sons of Ithamar, Daniel. +\li1 Of the sons of David, Hattush. +\li1 +\v 3 Of the sons of Shecaniah, of the sons of Parosh, Zechariah; and with him were listed by genealogy of the males one hundred fifty. +\li1 +\v 4 Of the sons of Pahathmoab, Eliehoenai the son of Zerahiah; and with him two hundred males. +\li1 +\v 5 Of the sons of Shecaniah, the son of Jahaziel; and with him three hundred males. +\li1 +\v 6 Of the sons of Adin, Ebed the son of Jonathan; and with him fifty males. +\li1 +\v 7 Of the sons of Elam, Jeshaiah the son of Athaliah; and with him seventy males. +\li1 +\v 8 Of the sons of Shephatiah, Zebadiah the son of Michael; and with him eighty males. +\li1 +\v 9 Of the sons of Joab, Obadiah the son of Jehiel; and with him two hundred eighteen males. +\li1 +\v 10 Of the sons of Shelomith, the son of Josiphiah; and with him one hundred sixty males. +\li1 +\v 11 Of the sons of Bebai, Zechariah the son of Bebai; and with him twenty-eight males. +\li1 +\v 12 Of the sons of Azgad, Johanan the son of Hakkatan; and with him one hundred ten males. +\li1 +\v 13 Of the sons of Adonikam, who were the last, their names are: Eliphelet, Jeuel, and Shemaiah; and with them sixty males. +\li1 +\v 14 Of the sons of Bigvai, Uthai and Zabbud; and with them seventy males. +\p +\v 15 \w I|strong="H3117"\w* \w gathered|strong="H6908"\w* \w them|strong="H4672"\w* \w together|strong="H6908"\w* \w to|strong="H3117"\w* \w the|strong="H3117"\w* \w river|strong="H5104"\w* \w that|strong="H5971"\w* runs \w to|strong="H3117"\w* Ahava; \w and|strong="H1121"\w* \w there|strong="H8033"\w* \w we|strong="H3068"\w* \w encamped|strong="H2583"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*. \w Then|strong="H3808"\w* \w I|strong="H3117"\w* looked around \w at|strong="H2583"\w* \w the|strong="H3117"\w* \w people|strong="H5971"\w* \w and|strong="H1121"\w* \w the|strong="H3117"\w* \w priests|strong="H3548"\w*, \w and|strong="H1121"\w* \w found|strong="H4672"\w* \w there|strong="H8033"\w* \w were|strong="H5971"\w* \w none|strong="H3808"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w*. +\v 16 \w Then|strong="H7971"\w* \w I|strong="H7971"\w* \w sent|strong="H7971"\w* \w for|strong="H7971"\w* Eliezer, \w for|strong="H7971"\w* Ariel, \w for|strong="H7971"\w* \w Shemaiah|strong="H8098"\w*, \w for|strong="H7971"\w* Elnathan, \w for|strong="H7971"\w* \w Jarib|strong="H3402"\w*, \w for|strong="H7971"\w* Elnathan, \w for|strong="H7971"\w* \w Nathan|strong="H5416"\w*, \w for|strong="H7971"\w* \w Zechariah|strong="H2148"\w*, \w and|strong="H7971"\w* \w for|strong="H7971"\w* \w Meshullam|strong="H4918"\w*, \w chief|strong="H7218"\w* \w men|strong="H7218"\w*; also \w for|strong="H7971"\w* \w Joiarib|strong="H3114"\w* \w and|strong="H7971"\w* \w for|strong="H7971"\w* Elnathan, who \w were|strong="H7218"\w* teachers. +\v 17 \w I|strong="H5921"\w* \w sent|strong="H3318"\w* \w them|strong="H5921"\w* \w out|strong="H3318"\w* \w to|strong="H1696"\w* Iddo \w the|strong="H5921"\w* \w chief|strong="H7218"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w Casiphia|strong="H3703"\w*; \w and|strong="H1004"\w* \w I|strong="H5921"\w* \w told|strong="H1696"\w* \w them|strong="H5921"\w* \w what|strong="H1697"\w* \w they|strong="H5921"\w* \w should|strong="H4725"\w* \w tell|strong="H1696"\w* Iddo \w and|strong="H1004"\w* \w his|strong="H7760"\w* brothers \w the|strong="H5921"\w* \w temple|strong="H1004"\w* \w servants|strong="H5411"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w Casiphia|strong="H3703"\w*, \w that|strong="H1697"\w* \w they|strong="H5921"\w* \w should|strong="H4725"\w* \w bring|strong="H3318"\w* \w to|strong="H1696"\w* \w us|strong="H5921"\w* \w ministers|strong="H8334"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w our|strong="H5921"\w* God. +\v 18 \w According|strong="H5921"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w good|strong="H2896"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w our|strong="H5921"\w* \w God|strong="H3027"\w* \w on|strong="H5921"\w* \w us|strong="H5921"\w* \w they|strong="H5921"\w* \w brought|strong="H3478"\w* \w us|strong="H5921"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w discretion|strong="H7922"\w*, \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Mahli|strong="H4249"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, namely \w Sherebiah|strong="H8274"\w*, \w with|strong="H5921"\w* \w his|strong="H5921"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H5921"\w* \w brothers|strong="H1121"\w*, \w eighteen|strong="H8083"\w*; +\v 19 \w and|strong="H1121"\w* \w Hashabiah|strong="H2811"\w*, \w and|strong="H1121"\w* \w with|strong="H6242"\w* \w him|strong="H1121"\w* \w Jeshaiah|strong="H3470"\w* \w of|strong="H1121"\w* \w the|strong="H3470"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Merari|strong="H4847"\w*, \w his|strong="H3470"\w* \w brothers|strong="H1121"\w* \w and|strong="H1121"\w* \w their|strong="H4847"\w* \w sons|strong="H1121"\w*, \w twenty|strong="H6242"\w*; +\v 20 \w and|strong="H3967"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* \w temple|strong="H5411"\w* \w servants|strong="H5411"\w*, whom \w David|strong="H1732"\w* \w and|strong="H3967"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w had|strong="H1732"\w* \w given|strong="H5414"\w* \w for|strong="H8034"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*, \w two|strong="H4480"\w* \w hundred|strong="H3967"\w* \w twenty|strong="H6242"\w* \w temple|strong="H5411"\w* \w servants|strong="H5411"\w*. \w All|strong="H3605"\w* \w of|strong="H8269"\w* \w them|strong="H5414"\w* \w were|strong="H3881"\w* mentioned \w by|strong="H5344"\w* \w name|strong="H8034"\w*. +\p +\v 21 \w Then|strong="H7121"\w* \w I|strong="H5921"\w* \w proclaimed|strong="H7121"\w* \w a|strong="H3068"\w* \w fast|strong="H6685"\w* \w there|strong="H8033"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w river|strong="H5104"\w* Ahava, \w that|strong="H3605"\w* \w we|strong="H3068"\w* \w might|strong="H3477"\w* \w humble|strong="H6031"\w* \w ourselves|strong="H6031"\w* \w before|strong="H6440"\w* \w our|strong="H3605"\w* God, \w to|strong="H5921"\w* \w seek|strong="H1245"\w* \w from|strong="H4480"\w* \w him|strong="H6440"\w* \w a|strong="H3068"\w* \w straight|strong="H3477"\w* \w way|strong="H1870"\w* \w for|strong="H5921"\w* \w us|strong="H5921"\w*, \w for|strong="H5921"\w* \w our|strong="H3605"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w*, \w and|strong="H6440"\w* \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w our|strong="H3605"\w* \w possessions|strong="H7399"\w*. +\v 22 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w was|strong="H4428"\w* ashamed \w to|strong="H5921"\w* \w ask|strong="H7592"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w a|strong="H3068"\w* band \w of|strong="H4428"\w* \w soldiers|strong="H2428"\w* \w and|strong="H4428"\w* \w horsemen|strong="H6571"\w* \w to|strong="H5921"\w* \w help|strong="H5826"\w* \w us|strong="H5921"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* enemy \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w*, \w because|strong="H3588"\w* \w we|strong="H3068"\w* \w had|strong="H4428"\w* spoken \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, saying, “\w The|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w our|strong="H3605"\w* \w God|strong="H3027"\w* \w is|strong="H3027"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w seek|strong="H1245"\w* \w him|strong="H5921"\w*, \w for|strong="H3588"\w* \w good|strong="H2896"\w*; \w but|strong="H3588"\w* \w his|strong="H3605"\w* \w power|strong="H3027"\w* \w and|strong="H4428"\w* \w his|strong="H3605"\w* wrath \w is|strong="H3027"\w* \w against|strong="H5921"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w forsake|strong="H5800"\w* \w him|strong="H5921"\w*.” +\v 23 \w So|strong="H2063"\w* \w we|strong="H3068"\w* \w fasted|strong="H6684"\w* \w and|strong="H6684"\w* begged \w our|strong="H5921"\w* God \w for|strong="H5921"\w* \w this|strong="H2063"\w*, \w and|strong="H6684"\w* \w he|strong="H5921"\w* granted \w our|strong="H5921"\w* \w request|strong="H1245"\w*. +\p +\v 24 \w Then|strong="H3548"\w* \w I|strong="H8147"\w* set apart \w twelve|strong="H8147"\w* \w of|strong="H8269"\w* \w the|strong="H5973"\w* \w chiefs|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H5973"\w* \w priests|strong="H3548"\w*, even \w Sherebiah|strong="H8274"\w*, \w Hashabiah|strong="H2811"\w*, \w and|strong="H3548"\w* \w ten|strong="H6235"\w* \w of|strong="H8269"\w* \w their|strong="H8147"\w* brothers \w with|strong="H5973"\w* \w them|strong="H8147"\w*, +\v 25 \w and|strong="H3478"\w* \w weighed|strong="H8254"\w* \w to|strong="H3478"\w* \w them|strong="H1992"\w* \w the|strong="H3605"\w* \w silver|strong="H3701"\w*, \w the|strong="H3605"\w* \w gold|strong="H2091"\w*, \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w*, even \w the|strong="H3605"\w* \w offering|strong="H8641"\w* \w for|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w our|strong="H3605"\w* God, \w which|strong="H1992"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w his|strong="H3605"\w* \w counselors|strong="H3289"\w*, \w his|strong="H3605"\w* \w princes|strong="H8269"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w there|strong="H1992"\w* \w present|strong="H4672"\w*, \w had|strong="H3478"\w* \w offered|strong="H7311"\w*. +\v 26 \w I|strong="H5921"\w* \w weighed|strong="H8254"\w* \w into|strong="H5921"\w* \w their|strong="H5921"\w* \w hand|strong="H3027"\w* \w six|strong="H8337"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w* \w talents|strong="H3603"\w* \w of|strong="H3027"\w* \w silver|strong="H3701"\w*,\f + \fr 8:26 \ft A talent is about 30 kilograms or 66 pounds or 965 Troy ounces\f* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w talents|strong="H3603"\w* \w of|strong="H3027"\w* \w silver|strong="H3701"\w* \w vessels|strong="H3627"\w*, \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* \w talents|strong="H3603"\w* \w of|strong="H3027"\w* \w gold|strong="H2091"\w*, +\v 27 \w twenty|strong="H6242"\w* \w bowls|strong="H3713"\w* \w of|strong="H3627"\w* \w gold|strong="H2091"\w* weighing \w one|strong="H2896"\w* thousand darics,\f + \fr 8:27 \ft a daric was a gold coin issued by a Persian king, weighing about 8.4 grams or about 0.27 troy ounces each.\f* \w and|strong="H6242"\w* \w two|strong="H8147"\w* \w vessels|strong="H3627"\w* \w of|strong="H3627"\w* \w fine|strong="H2896"\w* bright \w bronze|strong="H5178"\w*, \w precious|strong="H2532"\w* \w as|strong="H2532"\w* \w gold|strong="H2091"\w*. +\v 28 \w I|strong="H3068"\w* said \w to|strong="H3068"\w* \w them|strong="H3068"\w*, “You \w are|strong="H3068"\w* \w holy|strong="H6944"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w vessels|strong="H3627"\w* \w are|strong="H3068"\w* \w holy|strong="H6944"\w*. \w The|strong="H3068"\w* \w silver|strong="H3701"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w gold|strong="H2091"\w* \w are|strong="H3068"\w* \w a|strong="H3068"\w* free \w will|strong="H3068"\w* \w offering|strong="H5071"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* fathers. +\v 29 \w Watch|strong="H8104"\w* \w and|strong="H3478"\w* \w keep|strong="H8104"\w* \w them|strong="H6440"\w* \w until|strong="H5704"\w* \w you|strong="H6440"\w* \w weigh|strong="H8254"\w* \w them|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w chiefs|strong="H8269"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w priests|strong="H3548"\w*, \w the|strong="H6440"\w* \w Levites|strong="H3881"\w*, \w and|strong="H3478"\w* \w the|strong="H6440"\w* \w princes|strong="H8269"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* fathers’ \w households|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w at|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*, \w in|strong="H3478"\w* \w the|strong="H6440"\w* \w rooms|strong="H3957"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*.” +\p +\v 30 So \w the|strong="H3548"\w* \w priests|strong="H3548"\w* \w and|strong="H3701"\w* \w the|strong="H3548"\w* \w Levites|strong="H3881"\w* \w received|strong="H6901"\w* \w the|strong="H3548"\w* \w weight|strong="H4948"\w* \w of|strong="H1004"\w* \w the|strong="H3548"\w* \w silver|strong="H3701"\w*, \w the|strong="H3548"\w* \w gold|strong="H2091"\w*, \w and|strong="H3701"\w* \w the|strong="H3548"\w* \w vessels|strong="H3627"\w*, \w to|strong="H3389"\w* \w bring|strong="H3881"\w* them \w to|strong="H3389"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H3389"\w* \w the|strong="H3548"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* our God. +\p +\v 31 \w Then|strong="H1961"\w* \w we|strong="H3068"\w* \w departed|strong="H3212"\w* \w from|strong="H5265"\w* \w the|strong="H5921"\w* \w river|strong="H5104"\w* Ahava \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w twelfth|strong="H8147"\w* \w day|strong="H2320"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*, \w to|strong="H3212"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w Jerusalem|strong="H3389"\w*. \w The|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w our|strong="H5921"\w* \w God|strong="H3027"\w* \w was|strong="H1961"\w* \w on|strong="H5921"\w* \w us|strong="H5921"\w*, \w and|strong="H3027"\w* \w he|strong="H8147"\w* \w delivered|strong="H5337"\w* \w us|strong="H5921"\w* \w from|strong="H5265"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* enemy \w and|strong="H3027"\w* \w the|strong="H5921"\w* bandits \w by|strong="H3027"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w*. +\v 32 \w We|strong="H3117"\w* \w came|strong="H7969"\w* \w to|strong="H3117"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3117"\w* \w stayed|strong="H3427"\w* \w there|strong="H8033"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*. +\v 33 \w On|strong="H5921"\w* \w the|strong="H5921"\w* \w fourth|strong="H7243"\w* \w day|strong="H3117"\w* \w the|strong="H5921"\w* \w silver|strong="H3701"\w* \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w gold|strong="H2091"\w* \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w vessels|strong="H3627"\w* \w were|strong="H1121"\w* \w weighed|strong="H8254"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w our|strong="H5921"\w* \w God|strong="H3027"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w Meremoth|strong="H4822"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Uriah \w the|strong="H5921"\w* \w priest|strong="H3548"\w*; \w and|strong="H1121"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w* \w was|strong="H3117"\w* Eleazar \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Phinehas|strong="H6372"\w*; \w and|strong="H1121"\w* \w with|strong="H5973"\w* \w them|strong="H5921"\w* \w were|strong="H1121"\w* \w Jozabad|strong="H3107"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeshua|strong="H3442"\w*, \w and|strong="H1121"\w* \w Noadiah|strong="H5129"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Binnui|strong="H1131"\w*, \w the|strong="H5921"\w* \w Levites|strong="H3881"\w*. +\v 34 \w Everything|strong="H3605"\w* \w was|strong="H1931"\w* \w counted|strong="H4557"\w* \w and|strong="H6256"\w* \w weighed|strong="H4948"\w*; \w and|strong="H6256"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w weight|strong="H4948"\w* \w was|strong="H1931"\w* \w written|strong="H3789"\w* \w at|strong="H3605"\w* \w that|strong="H3605"\w* \w time|strong="H6256"\w*. +\p +\v 35 \w The|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w captivity|strong="H7628"\w*, \w who|strong="H3605"\w* \w had|strong="H3068"\w* \w come|strong="H7126"\w* \w out|strong="H5921"\w* \w of|strong="H1121"\w* \w exile|strong="H1473"\w*, \w offered|strong="H7126"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*: \w twelve|strong="H8147"\w* \w bulls|strong="H6499"\w* \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w ninety-six|strong="H8337"\w* rams, \w seventy-seven|strong="H7657"\w* \w lambs|strong="H3532"\w*, \w and|strong="H1121"\w* \w twelve|strong="H8147"\w* \w male|strong="H3532"\w* \w goats|strong="H6842"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w*. \w All|strong="H3605"\w* \w this|strong="H3068"\w* \w was|strong="H3068"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*. +\v 36 \w They|strong="H5971"\w* \w delivered|strong="H5414"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w*’s \w commissions|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w*’s local \w governors|strong="H6346"\w* \w and|strong="H4428"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w governors|strong="H6346"\w* \w beyond|strong="H5676"\w* \w the|strong="H5414"\w* \w River|strong="H5104"\w*. \w So|strong="H5414"\w* \w they|strong="H5971"\w* \w supported|strong="H5375"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w* \w and|strong="H4428"\w* \w God|strong="H5414"\w*’s \w house|strong="H1004"\w*. +\c 9 +\p +\v 1 \w Now|strong="H3478"\w* \w when|strong="H3615"\w* \w these|strong="H5971"\w* \w things|strong="H8441"\w* \w were|strong="H3478"\w* \w done|strong="H3615"\w*, \w the|strong="H3548"\w* \w princes|strong="H8269"\w* \w came|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H3478"\w* \w me|strong="H5066"\w*, saying, “\w The|strong="H3548"\w* \w people|strong="H5971"\w* \w of|strong="H8269"\w* \w Israel|strong="H3478"\w*, \w the|strong="H3548"\w* \w priests|strong="H3548"\w*, \w and|strong="H3478"\w* \w the|strong="H3548"\w* \w Levites|strong="H3881"\w* \w have|strong="H5971"\w* \w not|strong="H3808"\w* separated themselves \w from|strong="H3478"\w* \w the|strong="H3548"\w* \w peoples|strong="H5971"\w* \w of|strong="H8269"\w* \w the|strong="H3548"\w* lands, following \w their|strong="H3808"\w* \w abominations|strong="H8441"\w*, \w even|strong="H3808"\w* those \w of|strong="H8269"\w* \w the|strong="H3548"\w* \w Canaanites|strong="H3669"\w*, \w the|strong="H3548"\w* \w Hittites|strong="H2850"\w*, \w the|strong="H3548"\w* \w Perizzites|strong="H6522"\w*, \w the|strong="H3548"\w* \w Jebusites|strong="H2983"\w*, \w the|strong="H3548"\w* \w Ammonites|strong="H5984"\w*, \w the|strong="H3548"\w* \w Moabites|strong="H4125"\w*, \w the|strong="H3548"\w* \w Egyptians|strong="H4713"\w*, \w and|strong="H3478"\w* \w the|strong="H3548"\w* Amorites. +\v 2 \w For|strong="H3588"\w* \w they|strong="H1992"\w* \w have|strong="H1961"\w* \w taken|strong="H5375"\w* \w of|strong="H1121"\w* \w their|strong="H5375"\w* \w daughters|strong="H1323"\w* \w for|strong="H3588"\w* \w themselves|strong="H1992"\w* \w and|strong="H1121"\w* \w for|strong="H3588"\w* \w their|strong="H5375"\w* \w sons|strong="H1121"\w*, \w so|strong="H1961"\w* \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w holy|strong="H6944"\w* \w offspring|strong="H2233"\w* \w have|strong="H1961"\w* mixed \w themselves|strong="H1992"\w* \w with|strong="H5971"\w* \w the|strong="H3588"\w* \w peoples|strong="H5971"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* lands. \w Yes|strong="H3588"\w*, \w the|strong="H3588"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w princes|strong="H8269"\w* \w and|strong="H1121"\w* \w rulers|strong="H8269"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w chief|strong="H8269"\w* \w in|strong="H1121"\w* \w this|strong="H2088"\w* \w trespass|strong="H4604"\w*.” +\p +\v 3 \w When|strong="H8085"\w* \w I|strong="H1697"\w* \w heard|strong="H8085"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*, \w I|strong="H1697"\w* \w tore|strong="H7167"\w* \w my|strong="H8085"\w* garment \w and|strong="H7218"\w* \w my|strong="H8085"\w* \w robe|strong="H4598"\w*, \w and|strong="H7218"\w* \w pulled|strong="H4803"\w* \w the|strong="H8085"\w* \w hair|strong="H8181"\w* \w out|strong="H3427"\w* \w of|strong="H1697"\w* \w my|strong="H8085"\w* \w head|strong="H7218"\w* \w and|strong="H7218"\w* \w of|strong="H1697"\w* \w my|strong="H8085"\w* \w beard|strong="H2206"\w*, \w and|strong="H7218"\w* \w sat|strong="H3427"\w* \w down|strong="H3427"\w* confounded. +\v 4 \w Then|strong="H3605"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w trembled|strong="H2730"\w* \w at|strong="H3427"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* God \w of|strong="H1697"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w assembled|strong="H3478"\w* \w to|strong="H5704"\w* \w me|strong="H5921"\w* \w because|strong="H5921"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w trespass|strong="H4604"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w exiles|strong="H1473"\w*; \w and|strong="H3478"\w* \w I|strong="H5704"\w* \w sat|strong="H3427"\w* confounded \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w evening|strong="H6153"\w* \w offering|strong="H4503"\w*. +\p +\v 5 \w At|strong="H5921"\w* \w the|strong="H5921"\w* \w evening|strong="H6153"\w* \w offering|strong="H4503"\w* \w I|strong="H5921"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w from|strong="H5921"\w* \w my|strong="H3068"\w* \w humiliation|strong="H8589"\w*, \w even|strong="H6153"\w* \w with|strong="H3068"\w* \w my|strong="H3068"\w* garment \w and|strong="H6965"\w* \w my|strong="H3068"\w* \w robe|strong="H4598"\w* \w torn|strong="H7167"\w*; \w and|strong="H6965"\w* \w I|strong="H5921"\w* \w fell|strong="H3766"\w* \w on|strong="H5921"\w* \w my|strong="H3068"\w* \w knees|strong="H1290"\w*, \w and|strong="H6965"\w* \w spread|strong="H6566"\w* \w out|strong="H6566"\w* \w my|strong="H3068"\w* \w hands|strong="H3709"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*; +\v 6 \w and|strong="H8064"\w* \w I|strong="H3588"\w* said, “\w My|strong="H7311"\w* \w God|strong="H8064"\w*, \w I|strong="H3588"\w* am \w ashamed|strong="H3637"\w* \w and|strong="H8064"\w* \w blush|strong="H3637"\w* \w to|strong="H5704"\w* \w lift|strong="H7311"\w* \w up|strong="H7311"\w* \w my|strong="H7311"\w* \w face|strong="H6440"\w* \w to|strong="H5704"\w* \w you|strong="H3588"\w*, \w my|strong="H7311"\w* \w God|strong="H8064"\w*, \w for|strong="H3588"\w* \w our|strong="H3588"\w* \w iniquities|strong="H5771"\w* \w have|strong="H5771"\w* \w increased|strong="H7235"\w* \w over|strong="H4605"\w* \w our|strong="H3588"\w* \w head|strong="H7218"\w*, \w and|strong="H8064"\w* \w our|strong="H3588"\w* guiltiness \w has|strong="H3588"\w* \w grown|strong="H1431"\w* \w up|strong="H7311"\w* \w to|strong="H5704"\w* \w the|strong="H6440"\w* \w heavens|strong="H8064"\w*. +\v 7 \w Since|strong="H3117"\w* \w the|strong="H6440"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w our|strong="H5414"\w* fathers \w we|strong="H3068"\w* \w have|strong="H3027"\w* been \w exceedingly|strong="H1419"\w* \w guilty|strong="H5771"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*; \w and|strong="H4428"\w* \w for|strong="H5704"\w* \w our|strong="H5414"\w* \w iniquities|strong="H5771"\w* \w we|strong="H3068"\w*, \w our|strong="H5414"\w* \w kings|strong="H4428"\w*, \w and|strong="H4428"\w* \w our|strong="H5414"\w* \w priests|strong="H3548"\w* \w have|strong="H3027"\w* been \w delivered|strong="H5414"\w* \w into|strong="H2719"\w* \w the|strong="H6440"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* lands, \w to|strong="H5704"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w*, \w to|strong="H5704"\w* \w captivity|strong="H7628"\w*, \w to|strong="H5704"\w* plunder, \w and|strong="H4428"\w* \w to|strong="H5704"\w* \w confusion|strong="H1322"\w* \w of|strong="H4428"\w* \w face|strong="H6440"\w*, \w as|strong="H5704"\w* \w it|strong="H5414"\w* \w is|strong="H2088"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 8 \w Now|strong="H6258"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w moment|strong="H7281"\w* \w grace|strong="H8467"\w* \w has|strong="H3068"\w* \w been|strong="H1961"\w* shown \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w to|strong="H3068"\w* \w leave|strong="H7604"\w* \w us|strong="H5414"\w* \w a|strong="H3068"\w* \w remnant|strong="H7604"\w* \w to|strong="H3068"\w* \w escape|strong="H6413"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w us|strong="H5414"\w* \w a|strong="H3068"\w* stake \w in|strong="H3068"\w* \w his|strong="H5414"\w* \w holy|strong="H6944"\w* \w place|strong="H4725"\w*, \w that|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w may|strong="H1961"\w* lighten \w our|strong="H3068"\w* \w eyes|strong="H5869"\w*, \w and|strong="H3068"\w* revive \w us|strong="H5414"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w in|strong="H3068"\w* \w our|strong="H3068"\w* \w bondage|strong="H5659"\w*. +\v 9 \w For|strong="H3588"\w* \w we|strong="H3068"\w* \w are|strong="H5650"\w* bondservants; \w yet|strong="H3588"\w* \w our|strong="H5414"\w* \w God|strong="H5414"\w* \w has|strong="H4428"\w* \w not|strong="H3808"\w* \w forsaken|strong="H5800"\w* \w us|strong="H5414"\w* \w in|strong="H5921"\w* \w our|strong="H5414"\w* \w bondage|strong="H5650"\w*, \w but|strong="H3588"\w* \w has|strong="H4428"\w* \w extended|strong="H5186"\w* loving \w kindness|strong="H2617"\w* \w to|strong="H5921"\w* \w us|strong="H5414"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w sight|strong="H6440"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Persia|strong="H6539"\w*, \w to|strong="H5921"\w* revive \w us|strong="H5414"\w*, \w to|strong="H5921"\w* \w set|strong="H5414"\w* \w up|strong="H7311"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w our|strong="H5414"\w* \w God|strong="H5414"\w*, \w and|strong="H3063"\w* \w to|strong="H5921"\w* \w repair|strong="H5975"\w* \w its|strong="H5414"\w* \w ruins|strong="H2723"\w*, \w and|strong="H3063"\w* \w to|strong="H5921"\w* \w give|strong="H5414"\w* \w us|strong="H5414"\w* \w a|strong="H3068"\w* \w wall|strong="H1447"\w* \w in|strong="H5921"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w in|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*. +\p +\v 10 “\w Now|strong="H6258"\w*, \w our|strong="H3588"\w* God, \w what|strong="H4100"\w* \w shall|strong="H2063"\w* \w we|strong="H3068"\w* say \w after|strong="H3588"\w* \w this|strong="H2063"\w*? \w For|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H6258"\w* \w forsaken|strong="H5800"\w* \w your|strong="H3588"\w* \w commandments|strong="H4687"\w*, +\v 11 \w which|strong="H1931"\w* \w you|strong="H6680"\w* \w have|strong="H5971"\w* \w commanded|strong="H6680"\w* \w by|strong="H3027"\w* \w your|strong="H6680"\w* \w servants|strong="H5650"\w* \w the|strong="H3423"\w* \w prophets|strong="H5030"\w*, \w saying|strong="H6310"\w*, ‘\w The|strong="H3423"\w* land \w to|strong="H3027"\w* \w which|strong="H1931"\w* \w you|strong="H6680"\w* \w go|strong="H5971"\w* \w to|strong="H3027"\w* \w possess|strong="H3423"\w* \w is|strong="H1931"\w* \w an|strong="H5971"\w* \w unclean|strong="H2932"\w* land \w through|strong="H3027"\w* \w the|strong="H3423"\w* \w uncleanness|strong="H2932"\w* \w of|strong="H3027"\w* \w the|strong="H3423"\w* \w peoples|strong="H5971"\w* \w of|strong="H3027"\w* \w the|strong="H3423"\w* lands, \w through|strong="H3027"\w* \w their|strong="H4390"\w* \w abominations|strong="H8441"\w*, \w which|strong="H1931"\w* \w have|strong="H5971"\w* \w filled|strong="H4390"\w* \w it|strong="H1931"\w* \w from|strong="H3027"\w* \w one|strong="H1931"\w* \w end|strong="H6310"\w* \w to|strong="H3027"\w* \w another|strong="H6310"\w* \w with|strong="H4390"\w* \w their|strong="H4390"\w* \w filthiness|strong="H2932"\w*. +\v 12 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* don’t \w give|strong="H5414"\w* \w your|strong="H5414"\w* \w daughters|strong="H1323"\w* \w to|strong="H5704"\w* \w their|strong="H5375"\w* \w sons|strong="H1121"\w*. Don’t \w take|strong="H5375"\w* \w their|strong="H5375"\w* \w daughters|strong="H1323"\w* \w to|strong="H5704"\w* \w your|strong="H5414"\w* \w sons|strong="H1121"\w*, \w nor|strong="H3808"\w* \w seek|strong="H1875"\w* \w their|strong="H5375"\w* \w peace|strong="H7965"\w* \w or|strong="H3808"\w* \w their|strong="H5375"\w* \w prosperity|strong="H7965"\w* \w forever|strong="H5769"\w*, \w that|strong="H4616"\w* \w you|strong="H5414"\w* \w may|strong="H1121"\w* \w be|strong="H3808"\w* \w strong|strong="H2388"\w* \w and|strong="H1121"\w* eat \w the|strong="H5414"\w* \w good|strong="H2896"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* land, \w and|strong="H1121"\w* \w leave|strong="H5414"\w* \w it|strong="H5414"\w* \w for|strong="H5704"\w* \w an|strong="H5414"\w* \w inheritance|strong="H3423"\w* \w to|strong="H5704"\w* \w your|strong="H5414"\w* \w children|strong="H1121"\w* \w forever|strong="H5769"\w*.’ +\p +\v 13 “\w After|strong="H5921"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w has|strong="H3588"\w* come \w on|strong="H5921"\w* \w us|strong="H5414"\w* \w for|strong="H3588"\w* \w our|strong="H3605"\w* \w evil|strong="H7451"\w* \w deeds|strong="H4639"\w* \w and|strong="H1419"\w* \w for|strong="H3588"\w* \w our|strong="H3605"\w* \w great|strong="H1419"\w* \w guilt|strong="H5771"\w*, \w since|strong="H3588"\w* \w you|strong="H3588"\w*, \w our|strong="H3605"\w* \w God|strong="H5414"\w*, \w have|strong="H5771"\w* \w punished|strong="H2820"\w* \w us|strong="H5414"\w* \w less|strong="H3588"\w* \w than|strong="H5921"\w* \w our|strong="H3605"\w* \w iniquities|strong="H5771"\w* deserve, \w and|strong="H1419"\w* \w have|strong="H5771"\w* \w given|strong="H5414"\w* \w us|strong="H5414"\w* \w such|strong="H2063"\w* \w a|strong="H3068"\w* \w remnant|strong="H6413"\w*, +\v 14 \w shall|strong="H5971"\w* \w we|strong="H3068"\w* \w again|strong="H7725"\w* \w break|strong="H6565"\w* \w your|strong="H7725"\w* \w commandments|strong="H4687"\w*, \w and|strong="H7725"\w* join ourselves \w with|strong="H5971"\w* \w the|strong="H7725"\w* \w peoples|strong="H5971"\w* \w that|strong="H5971"\w* \w do|strong="H6565"\w* \w these|strong="H5971"\w* \w abominations|strong="H8441"\w*? Wouldn’t \w you|strong="H5704"\w* \w be|strong="H3808"\w* angry \w with|strong="H5971"\w* \w us|strong="H7725"\w* \w until|strong="H5704"\w* \w you|strong="H5704"\w* \w had|strong="H5971"\w* \w consumed|strong="H3615"\w* \w us|strong="H7725"\w*, \w so|strong="H3808"\w* \w that|strong="H5971"\w* \w there|strong="H7725"\w* \w would|strong="H5971"\w* \w be|strong="H3808"\w* \w no|strong="H3808"\w* \w remnant|strong="H7611"\w*, \w nor|strong="H3808"\w* \w any|strong="H3808"\w* \w to|strong="H5704"\w* \w escape|strong="H6413"\w*? +\v 15 \w Yahweh|strong="H3068"\w*, \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w you|strong="H3588"\w* \w are|strong="H3117"\w* \w righteous|strong="H6662"\w*; \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w are|strong="H3117"\w* \w left|strong="H7604"\w* \w a|strong="H3068"\w* \w remnant|strong="H7604"\w* \w that|strong="H3588"\w* \w has|strong="H3068"\w* \w escaped|strong="H6413"\w*, \w as|strong="H3117"\w* \w it|strong="H5921"\w* \w is|strong="H3068"\w* \w today|strong="H3117"\w*. \w Behold|strong="H2005"\w*,\f + \fr 9:15 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w we|strong="H3068"\w* \w are|strong="H3117"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w* \w in|strong="H5921"\w* \w our|strong="H3068"\w* guiltiness; \w for|strong="H3588"\w* \w no|strong="H5975"\w* \w one|strong="H2088"\w* \w can|strong="H5975"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w* \w because|strong="H3588"\w* \w of|strong="H3068"\w* \w this|strong="H2088"\w*.” +\c 10 +\p +\v 1 \w Now|strong="H3588"\w* \w while|strong="H3588"\w* \w Ezra|strong="H5830"\w* \w prayed|strong="H6419"\w* \w and|strong="H3478"\w* \w made|strong="H7235"\w* \w confession|strong="H3034"\w*, \w weeping|strong="H1058"\w* \w and|strong="H3478"\w* casting \w himself|strong="H6440"\w* \w down|strong="H5307"\w* \w before|strong="H6440"\w* God’s \w house|strong="H1004"\w*, \w there|strong="H6440"\w* \w was|strong="H3478"\w* \w gathered|strong="H6908"\w* \w together|strong="H6908"\w* \w to|strong="H3478"\w* \w him|strong="H6440"\w* \w out|strong="H6440"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H7227"\w* \w assembly|strong="H6951"\w* \w of|strong="H1004"\w* \w men|strong="H3206"\w* \w and|strong="H3478"\w* women \w and|strong="H3478"\w* \w children|strong="H3206"\w*; \w for|strong="H3588"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w wept|strong="H1058"\w* \w very|strong="H3966"\w* \w bitterly|strong="H1058"\w*. +\v 2 \w Shecaniah|strong="H7935"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehiel|strong="H3171"\w*, \w one|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Elam|strong="H5867"\w*, \w answered|strong="H6030"\w* \w Ezra|strong="H5830"\w*, “\w We|strong="H6258"\w* \w have|strong="H3426"\w* \w trespassed|strong="H4603"\w* \w against|strong="H5921"\w* \w our|strong="H5921"\w* God, \w and|strong="H1121"\w* \w have|strong="H3426"\w* \w married|strong="H3427"\w* \w foreign|strong="H5237"\w* women \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w peoples|strong="H5971"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* land. \w Yet|strong="H6258"\w* \w now|strong="H6258"\w* \w there|strong="H3426"\w* \w is|strong="H3426"\w* \w hope|strong="H4723"\w* \w for|strong="H5921"\w* \w Israel|strong="H3478"\w* \w concerning|strong="H5921"\w* \w this|strong="H2063"\w* \w thing|strong="H2063"\w*. +\v 3 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w let|strong="H6258"\w*’s \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w our|strong="H3605"\w* God \w to|strong="H3318"\w* \w put|strong="H6213"\w* \w away|strong="H3318"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* wives \w and|strong="H6213"\w* \w those|strong="H1992"\w* \w who|strong="H3605"\w* \w are|strong="H1992"\w* \w born|strong="H3205"\w* \w of|strong="H3205"\w* \w them|strong="H1992"\w*, according \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w counsel|strong="H6098"\w* \w of|strong="H3205"\w* \w my|strong="H3605"\w* lord \w and|strong="H6213"\w* \w of|strong="H3205"\w* \w those|strong="H1992"\w* \w who|strong="H3605"\w* \w tremble|strong="H2730"\w* \w at|strong="H6213"\w* \w the|strong="H3605"\w* \w commandment|strong="H4687"\w* \w of|strong="H3205"\w* \w our|strong="H3605"\w* God. \w Let|strong="H6258"\w* \w it|strong="H6213"\w* \w be|strong="H1285"\w* \w done|strong="H6213"\w* according \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w*. +\v 4 \w Arise|strong="H6965"\w*, \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w matter|strong="H1697"\w* belongs \w to|strong="H6213"\w* \w you|strong="H3588"\w* \w and|strong="H6965"\w* \w we|strong="H3068"\w* \w are|strong="H1697"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*. \w Be|strong="H1697"\w* \w courageous|strong="H2388"\w*, \w and|strong="H6965"\w* \w do|strong="H6213"\w* \w it|strong="H5921"\w*.” +\p +\v 5 \w Then|strong="H6965"\w* \w Ezra|strong="H5830"\w* \w arose|strong="H6965"\w*, \w and|strong="H6965"\w* \w made|strong="H6213"\w* \w the|strong="H3605"\w* \w chiefs|strong="H8269"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w*, \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*, \w and|strong="H6965"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w swear|strong="H7650"\w* \w that|strong="H3605"\w* \w they|strong="H6213"\w* \w would|strong="H3478"\w* \w do|strong="H6213"\w* according \w to|strong="H3478"\w* \w this|strong="H2088"\w* \w word|strong="H1697"\w*. \w So|strong="H6213"\w* \w they|strong="H6213"\w* \w swore|strong="H7650"\w*. +\v 6 \w Then|strong="H6965"\w* \w Ezra|strong="H5830"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w God|strong="H3808"\w*’s \w house|strong="H1004"\w*, \w and|strong="H1121"\w* \w went|strong="H3212"\w* \w into|strong="H3212"\w* \w the|strong="H6440"\w* \w room|strong="H1004"\w* \w of|strong="H1121"\w* \w Jehohanan|strong="H3076"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Eliashib. \w When|strong="H3588"\w* \w he|strong="H3588"\w* \w came|strong="H3212"\w* \w there|strong="H8033"\w*, \w he|strong="H3588"\w* didn’t \w eat|strong="H3899"\w* \w bread|strong="H3899"\w* \w or|strong="H3808"\w* \w drink|strong="H8354"\w* \w water|strong="H4325"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* mourned \w because|strong="H3588"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w trespass|strong="H4604"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w exiles|strong="H1473"\w*. +\v 7 \w They|strong="H3605"\w* \w made|strong="H5674"\w* \w a|strong="H3068"\w* \w proclamation|strong="H6963"\w* \w throughout|strong="H3605"\w* \w Judah|strong="H3063"\w* \w and|strong="H1121"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H3389"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w captivity|strong="H1473"\w*, \w that|strong="H3605"\w* \w they|strong="H3605"\w* should \w gather|strong="H6908"\w* \w themselves|strong="H6908"\w* \w together|strong="H6908"\w* \w to|strong="H3389"\w* \w Jerusalem|strong="H3389"\w*; +\v 8 \w and|strong="H3117"\w* \w that|strong="H3605"\w* \w whoever|strong="H3605"\w* didn’t come within \w three|strong="H7969"\w* \w days|strong="H3117"\w*, according \w to|strong="H3117"\w* \w the|strong="H3605"\w* \w counsel|strong="H6098"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w and|strong="H3117"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w*, \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w possessions|strong="H7399"\w* \w should|strong="H3117"\w* \w be|strong="H3808"\w* \w forfeited|strong="H2763"\w*, \w and|strong="H3117"\w* \w he|strong="H1931"\w* \w himself|strong="H1931"\w* separated \w from|strong="H3117"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w captivity|strong="H1473"\w*. +\p +\v 9 \w Then|strong="H6908"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H5971"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Benjamin|strong="H1144"\w* \w gathered|strong="H6908"\w* \w themselves|strong="H6908"\w* \w together|strong="H6908"\w* \w to|strong="H5921"\w* \w Jerusalem|strong="H3389"\w* \w within|strong="H1004"\w* \w the|strong="H3605"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*. \w It|strong="H1931"\w* \w was|strong="H1931"\w* \w the|strong="H3605"\w* \w ninth|strong="H8671"\w* \w month|strong="H2320"\w*, \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w twentieth|strong="H6242"\w* \w day|strong="H3117"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w month|strong="H2320"\w*; \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w sat|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* wide \w place|strong="H1004"\w* \w in|strong="H3427"\w* front \w of|strong="H1004"\w* God’s \w house|strong="H1004"\w*, \w trembling|strong="H7460"\w* \w because|strong="H5921"\w* \w of|strong="H1004"\w* \w this|strong="H1931"\w* \w matter|strong="H1697"\w*, \w and|strong="H3063"\w* \w because|strong="H5921"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* great \w rain|strong="H1653"\w*. +\p +\v 10 \w Ezra|strong="H5830"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w* \w stood|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H6965"\w* said \w to|strong="H3478"\w* \w them|strong="H5921"\w*, “\w You|strong="H5921"\w* \w have|strong="H3478"\w* \w trespassed|strong="H4603"\w*, \w and|strong="H6965"\w* \w have|strong="H3478"\w* \w married|strong="H3427"\w* \w foreign|strong="H5237"\w* women, \w increasing|strong="H3254"\w* \w the|strong="H5921"\w* guilt \w of|strong="H3427"\w* \w Israel|strong="H3478"\w*. +\v 11 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w make|strong="H6213"\w* \w confession|strong="H8426"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5414"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* fathers \w and|strong="H3068"\w* \w do|strong="H6213"\w* \w his|strong="H5414"\w* \w pleasure|strong="H7522"\w*. Separate \w yourselves|strong="H3068"\w* \w from|strong="H4480"\w* \w the|strong="H5414"\w* \w peoples|strong="H5971"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* land \w and|strong="H3068"\w* \w from|strong="H4480"\w* \w the|strong="H5414"\w* \w foreign|strong="H5237"\w* women.” +\p +\v 12 \w Then|strong="H6030"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w answered|strong="H6030"\w* \w with|strong="H6213"\w* \w a|strong="H3068"\w* \w loud|strong="H1419"\w* \w voice|strong="H6963"\w*, “\w We|strong="H6213"\w* must \w do|strong="H6213"\w* \w as|strong="H1697"\w* \w you|strong="H3605"\w* \w have|strong="H1697"\w* \w said|strong="H1697"\w* \w concerning|strong="H5921"\w* \w us|strong="H5921"\w*. +\v 13 \w But|strong="H3588"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w are|strong="H3117"\w* \w many|strong="H7227"\w*, \w and|strong="H3117"\w* \w it|strong="H3588"\w* \w is|strong="H2088"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w of|strong="H3117"\w* \w much|strong="H7227"\w* \w rain|strong="H1653"\w*, \w and|strong="H3117"\w* \w we|strong="H3068"\w* \w are|strong="H3117"\w* \w not|strong="H3808"\w* \w able|strong="H3581"\w* \w to|strong="H6256"\w* \w stand|strong="H5975"\w* \w outside|strong="H2351"\w*. \w This|strong="H2088"\w* \w is|strong="H2088"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w work|strong="H4399"\w* \w of|strong="H3117"\w* \w one|strong="H2088"\w* \w day|strong="H3117"\w* \w or|strong="H3808"\w* \w two|strong="H8147"\w*, \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H5971"\w* \w greatly|strong="H7227"\w* \w transgressed|strong="H6586"\w* \w in|strong="H3117"\w* \w this|strong="H2088"\w* \w matter|strong="H1697"\w*. +\v 14 \w Now|strong="H4994"\w* \w let|strong="H4994"\w* \w our|strong="H3605"\w* \w princes|strong="H8269"\w* \w be|strong="H1697"\w* \w appointed|strong="H5975"\w* \w for|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w*, \w and|strong="H7725"\w* \w let|strong="H4994"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H1697"\w* \w in|strong="H3427"\w* \w our|strong="H3605"\w* \w cities|strong="H5892"\w* \w who|strong="H3605"\w* \w have|strong="H1697"\w* \w married|strong="H3427"\w* \w foreign|strong="H5237"\w* \w women|strong="H2205"\w* \w come|strong="H7725"\w* \w at|strong="H3427"\w* \w appointed|strong="H5975"\w* \w times|strong="H6256"\w*, \w and|strong="H7725"\w* \w with|strong="H5973"\w* \w them|strong="H7725"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H1697"\w* \w every|strong="H3605"\w* \w city|strong="H5892"\w* \w and|strong="H7725"\w* \w its|strong="H3605"\w* \w judges|strong="H8199"\w*, \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w fierce|strong="H2740"\w* \w wrath|strong="H2740"\w* \w of|strong="H1697"\w* \w our|strong="H3605"\w* God \w is|strong="H2088"\w* \w turned|strong="H7725"\w* \w from|strong="H4480"\w* \w us|strong="H4994"\w*, \w until|strong="H5704"\w* \w this|strong="H2088"\w* \w matter|strong="H1697"\w* \w is|strong="H2088"\w* resolved.” +\p +\v 15 Only \w Jonathan|strong="H3129"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Asahel|strong="H6214"\w* \w and|strong="H1121"\w* \w Jahzeiah|strong="H3167"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Tikvah|strong="H8616"\w* \w stood|strong="H5975"\w* \w up|strong="H5975"\w* \w against|strong="H5921"\w* \w this|strong="H2063"\w*; \w and|strong="H1121"\w* \w Meshullam|strong="H4918"\w* \w and|strong="H1121"\w* \w Shabbethai|strong="H7678"\w* \w the|strong="H5921"\w* \w Levite|strong="H3881"\w* \w helped|strong="H5826"\w* \w them|strong="H5921"\w*. +\p +\v 16 \w The|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w captivity|strong="H1473"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*. \w Ezra|strong="H5830"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w*, \w with|strong="H1004"\w* certain \w heads|strong="H7218"\w* \w of|strong="H1121"\w* fathers’ \w households|strong="H1004"\w*, \w after|strong="H3117"\w* \w their|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w of|strong="H1121"\w* \w them|strong="H6213"\w* \w by|strong="H3117"\w* \w their|strong="H3605"\w* \w names|strong="H8034"\w*, \w were|strong="H1121"\w* \w set|strong="H3427"\w* apart; \w and|strong="H1121"\w* \w they|strong="H3117"\w* \w sat|strong="H3427"\w* \w down|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w first|strong="H1121"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w tenth|strong="H6224"\w* \w month|strong="H2320"\w* \w to|strong="H6213"\w* \w examine|strong="H1875"\w* \w the|strong="H3605"\w* \w matter|strong="H1697"\w*. +\v 17 \w They|strong="H3117"\w* \w finished|strong="H3615"\w* \w with|strong="H3427"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w who|strong="H3605"\w* \w had|strong="H3427"\w* \w married|strong="H3427"\w* \w foreign|strong="H5237"\w* women \w by|strong="H3117"\w* \w the|strong="H3605"\w* \w first|strong="H7223"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*. +\p +\v 18 \w Among|strong="H3427"\w* \w the|strong="H4672"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H4672"\w* \w priests|strong="H3548"\w* \w there|strong="H3427"\w* \w were|strong="H1121"\w* \w found|strong="H4672"\w* \w who|strong="H3548"\w* \w had|strong="H3548"\w* \w married|strong="H3427"\w* \w foreign|strong="H5237"\w* women: +\li1 of the sons of Jeshua, the son of Jozadak, and his brothers: Maaseiah, Eliezer, Jarib, and Gedaliah. +\v 19 They gave their hand that they would put away their wives; and being guilty, they offered a ram of the flock for their guilt. +\li1 +\v 20 Of the sons of Immer: Hanani and Zebadiah. +\li1 +\v 21 Of the sons of Harim: Maaseiah, Elijah, Shemaiah, Jehiel, and Uzziah. +\li1 +\v 22 Of the sons of Pashhur: Elioenai, Maaseiah, Ishmael, Nethanel, Jozabad, and Elasah. +\li1 +\v 23 Of the Levites: Jozabad, Shimei, Kelaiah (also called Kelita), Pethahiah, Judah, and Eliezer. +\li1 +\v 24 Of the singers: Eliashib. +\li1 Of the gatekeepers: Shallum, Telem, and Uri. +\li1 +\v 25 Of Israel: Of the sons of Parosh: Ramiah, Izziah, Malchijah, Mijamin, Eleazar, Malchijah, and Benaiah. +\li1 +\v 26 Of the sons of Elam: Mattaniah, Zechariah, Jehiel, Abdi, Jeremoth, and Elijah. +\li1 +\v 27 Of the sons of Zattu: Elioenai, Eliashib, Mattaniah, Jeremoth, Zabad, and Aziza. +\li1 +\v 28 Of the sons of Bebai: Jehohanan, Hananiah, Zabbai, and Athlai. +\li1 +\v 29 Of the sons of Bani: Meshullam, Malluch, Adaiah, Jashub, Sheal, and Jeremoth. +\li1 +\v 30 Of the sons of Pahathmoab: Adna, Chelal, Benaiah, Maaseiah, Mattaniah, Bezalel, Binnui, and Manasseh. +\li1 +\v 31 Of the sons of Harim: Eliezer, Isshijah, Malchijah, Shemaiah, Shimeon, +\v 32 Benjamin, Malluch, and Shemariah. +\li1 +\v 33 Of the sons of Hashum: Mattenai, Mattattah, Zabad, Eliphelet, Jeremai, Manasseh, and Shimei. +\li1 +\v 34 Of the sons of Bani: Maadai, Amram, Uel, +\v 35 Benaiah, Bedeiah, Cheluhi, +\v 36 Vaniah, Meremoth, Eliashib, +\v 37 Mattaniah, Mattenai, Jaasu, +\v 38 Bani, Binnui, Shimei, +\v 39 Shelemiah, Nathan, Adaiah, +\v 40 Machnadebai, Shashai, Sharai, +\v 41 Azarel, Shelemiah, Shemariah, +\v 42 Shallum, Amariah, and Joseph. +\li1 +\v 43 Of the sons of Nebo: Jeiel, Mattithiah, Zabad, Zebina, Iddo, Joel, and Benaiah. +\p +\v 44 \w All|strong="H3605"\w* \w these|strong="H1992"\w* \w had|strong="H3426"\w* \w taken|strong="H5375"\w* \w foreign|strong="H5237"\w* wives. \w Some|strong="H1992"\w* \w of|strong="H1121"\w* \w them|strong="H1992"\w* \w had|strong="H3426"\w* wives \w by|strong="H3605"\w* \w whom|strong="H1992"\w* \w they|strong="H1992"\w* \w had|strong="H3426"\w* \w children|strong="H1121"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/17-NEHeng-web.usfm b/bibles/eng-web_usfm/17-NEHeng-web.usfm new file mode 100644 index 0000000..bffbc59 --- /dev/null +++ b/bibles/eng-web_usfm/17-NEHeng-web.usfm @@ -0,0 +1,576 @@ +\id NEH World English Bible (WEB) +\ide UTF-8 +\h Nehemiah +\toc1 The Book of Nehemiah +\toc2 Nehemiah +\toc3 Neh +\mt2 The Book of +\mt1 Nehemiah +\c 1 +\p +\v 1 \w The|strong="H1697"\w* \w words|strong="H1697"\w* \w of|strong="H1121"\w* \w Nehemiah|strong="H5166"\w* \w the|strong="H1697"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hacaliah|strong="H2446"\w*. +\p \w Now|strong="H1961"\w* \w in|strong="H8141"\w* \w the|strong="H1697"\w* \w month|strong="H2320"\w* \w Chislev|strong="H3691"\w*, \w in|strong="H8141"\w* \w the|strong="H1697"\w* \w twentieth|strong="H6242"\w* \w year|strong="H8141"\w*, \w as|strong="H1697"\w* \w I|strong="H1697"\w* \w was|strong="H1961"\w* \w in|strong="H8141"\w* \w Susa|strong="H7800"\w* \w the|strong="H1697"\w* \w palace|strong="H1002"\w*, +\v 2 \w Hanani|strong="H2607"\w*, \w one|strong="H4480"\w* \w of|strong="H4480"\w* \w my|strong="H5921"\w* brothers, \w came|strong="H3063"\w*, \w he|strong="H1931"\w* \w and|strong="H3063"\w* certain men \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w Judah|strong="H3063"\w*; \w and|strong="H3063"\w* \w I|strong="H5921"\w* \w asked|strong="H7592"\w* \w them|strong="H5921"\w* \w about|strong="H5921"\w* \w the|strong="H5921"\w* \w Jews|strong="H3064"\w* \w who|strong="H1931"\w* \w had|strong="H3063"\w* \w escaped|strong="H6413"\w*, \w who|strong="H1931"\w* \w were|strong="H3063"\w* \w left|strong="H7604"\w* \w of|strong="H4480"\w* \w the|strong="H5921"\w* \w captivity|strong="H7628"\w*, \w and|strong="H3063"\w* \w concerning|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*. +\v 3 \w They|strong="H8033"\w* said \w to|strong="H3389"\w* \w me|strong="H4480"\w*, “\w The|strong="H4480"\w* \w remnant|strong="H7604"\w* \w who|strong="H7604"\w* \w are|strong="H8179"\w* \w left|strong="H7604"\w* \w of|strong="H8179"\w* \w the|strong="H4480"\w* \w captivity|strong="H7628"\w* \w there|strong="H8033"\w* \w in|strong="H7604"\w* \w the|strong="H4480"\w* \w province|strong="H4082"\w* \w are|strong="H8179"\w* \w in|strong="H7604"\w* \w great|strong="H1419"\w* \w affliction|strong="H7451"\w* \w and|strong="H1419"\w* \w reproach|strong="H2781"\w*. \w The|strong="H4480"\w* \w wall|strong="H2346"\w* \w of|strong="H8179"\w* \w Jerusalem|strong="H3389"\w* \w is|strong="H7451"\w* \w also|strong="H3389"\w* \w broken|strong="H6555"\w* \w down|strong="H6555"\w*, \w and|strong="H1419"\w* \w its|strong="H6555"\w* \w gates|strong="H8179"\w* \w are|strong="H8179"\w* \w burned|strong="H3341"\w* \w with|strong="H3389"\w* \w fire|strong="H3341"\w*.” +\p +\v 4 \w When|strong="H1961"\w* \w I|strong="H3117"\w* \w heard|strong="H8085"\w* \w these|strong="H8085"\w* \w words|strong="H1697"\w*, \w I|strong="H3117"\w* \w sat|strong="H3427"\w* \w down|strong="H3427"\w* \w and|strong="H3117"\w* \w wept|strong="H1058"\w*, \w and|strong="H3117"\w* \w mourned|strong="H1058"\w* several \w days|strong="H3117"\w*; \w and|strong="H3117"\w* \w I|strong="H3117"\w* \w fasted|strong="H6684"\w* \w and|strong="H3117"\w* \w prayed|strong="H6419"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w God|strong="H8064"\w*\f + \fr 1:4 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w of|strong="H3117"\w* \w heaven|strong="H8064"\w*, +\v 5 \w and|strong="H3068"\w* said, “\w I|strong="H3068"\w* beg \w you|strong="H3372"\w*, \w Yahweh|strong="H3068"\w*,\f + \fr 1:5 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w the|strong="H8104"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w heaven|strong="H8064"\w*, \w the|strong="H8104"\w* \w great|strong="H1419"\w* \w and|strong="H3068"\w* \w awesome|strong="H3372"\w* \w God|strong="H3068"\w* \w who|strong="H3068"\w* \w keeps|strong="H8104"\w* \w covenant|strong="H1285"\w* \w and|strong="H3068"\w* loving \w kindness|strong="H2617"\w* \w with|strong="H3068"\w* those \w who|strong="H3068"\w* \w love|strong="H2617"\w* \w him|strong="H8104"\w* \w and|strong="H3068"\w* \w keep|strong="H8104"\w* \w his|strong="H8104"\w* \w commandments|strong="H4687"\w*, +\v 6 \w let|strong="H4994"\w* \w your|strong="H5921"\w* \w ear|strong="H8085"\w* \w now|strong="H4994"\w* \w be|strong="H1961"\w* \w attentive|strong="H7183"\w* \w and|strong="H1121"\w* \w your|strong="H5921"\w* \w eyes|strong="H5869"\w* \w open|strong="H6605"\w*, \w that|strong="H3117"\w* \w you|strong="H6440"\w* \w may|strong="H1961"\w* \w listen|strong="H8085"\w* \w to|strong="H3478"\w* \w the|strong="H6440"\w* \w prayer|strong="H8605"\w* \w of|strong="H1121"\w* \w your|strong="H5921"\w* \w servant|strong="H5650"\w* \w which|strong="H1004"\w* \w I|strong="H3117"\w* \w pray|strong="H6419"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w at|strong="H5921"\w* \w this|strong="H6440"\w* \w time|strong="H3117"\w*, \w day|strong="H3117"\w* \w and|strong="H1121"\w* \w night|strong="H3915"\w*, \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w your|strong="H5921"\w* \w servants|strong="H5650"\w*, \w while|strong="H1961"\w* \w I|strong="H3117"\w* \w confess|strong="H3034"\w* \w the|strong="H6440"\w* \w sins|strong="H2403"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w which|strong="H1004"\w* \w we|strong="H3068"\w* \w have|strong="H1961"\w* \w sinned|strong="H2398"\w* \w against|strong="H5921"\w* \w you|strong="H6440"\w*. Yes, \w I|strong="H3117"\w* \w and|strong="H1121"\w* \w my|strong="H8085"\w* \w father|strong="H1121"\w*’s \w house|strong="H1004"\w* \w have|strong="H1961"\w* \w sinned|strong="H2398"\w*. +\v 7 We \w have|strong="H5650"\w* dealt \w very|strong="H2254"\w* \w corruptly|strong="H2254"\w* \w against|strong="H6680"\w* \w you|strong="H6680"\w*, \w and|strong="H4872"\w* \w have|strong="H5650"\w* \w not|strong="H3808"\w* \w kept|strong="H8104"\w* \w the|strong="H8104"\w* \w commandments|strong="H4687"\w*, \w nor|strong="H3808"\w* \w the|strong="H8104"\w* \w statutes|strong="H2706"\w*, \w nor|strong="H3808"\w* \w the|strong="H8104"\w* \w ordinances|strong="H4941"\w*, \w which|strong="H2706"\w* \w you|strong="H6680"\w* \w commanded|strong="H6680"\w* \w your|strong="H8104"\w* \w servant|strong="H5650"\w* \w Moses|strong="H4872"\w*. +\p +\v 8 “\w Remember|strong="H2142"\w*, \w I|strong="H1697"\w* \w beg|strong="H4994"\w* \w you|strong="H6680"\w*, \w the|strong="H6680"\w* \w word|strong="H1697"\w* \w that|strong="H5971"\w* \w you|strong="H6680"\w* \w commanded|strong="H6680"\w* \w your|strong="H6680"\w* \w servant|strong="H5650"\w* \w Moses|strong="H4872"\w*, \w saying|strong="H1697"\w*, ‘If \w you|strong="H6680"\w* \w trespass|strong="H4603"\w*, \w I|strong="H1697"\w* \w will|strong="H5971"\w* \w scatter|strong="H6327"\w* \w you|strong="H6680"\w* \w among|strong="H5971"\w* \w the|strong="H6680"\w* \w peoples|strong="H5971"\w*; +\v 9 \w but|strong="H1961"\w* \w if|strong="H1961"\w* \w you|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w me|strong="H7725"\w*, \w and|strong="H7725"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w commandments|strong="H4687"\w* \w and|strong="H7725"\w* \w do|strong="H6213"\w* \w them|strong="H7725"\w*, though \w your|strong="H8104"\w* \w outcasts|strong="H5080"\w* \w were|strong="H1961"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w uttermost|strong="H7097"\w* \w part|strong="H7097"\w* \w of|strong="H8034"\w* \w the|strong="H6213"\w* \w heavens|strong="H8064"\w*, yet \w I|strong="H6213"\w* \w will|strong="H1961"\w* \w gather|strong="H6908"\w* \w them|strong="H7725"\w* \w from|strong="H7725"\w* \w there|strong="H8033"\w*, \w and|strong="H7725"\w* \w will|strong="H1961"\w* \w bring|strong="H7725"\w* \w them|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H6213"\w* \w place|strong="H4725"\w* \w that|strong="H6213"\w* \w I|strong="H6213"\w* \w have|strong="H1961"\w* chosen, \w to|strong="H7725"\w* \w cause|strong="H6213"\w* \w my|strong="H8104"\w* \w name|strong="H8034"\w* \w to|strong="H7725"\w* \w dwell|strong="H7931"\w* \w there|strong="H8033"\w*.’ +\p +\v 10 “\w Now|strong="H1419"\w* \w these|strong="H1992"\w* \w are|strong="H1992"\w* \w your|strong="H3027"\w* \w servants|strong="H5650"\w* \w and|strong="H1419"\w* \w your|strong="H3027"\w* \w people|strong="H5971"\w*, \w whom|strong="H1992"\w* \w you|strong="H3027"\w* \w have|strong="H5971"\w* \w redeemed|strong="H6299"\w* \w by|strong="H3027"\w* \w your|strong="H3027"\w* \w great|strong="H1419"\w* \w power|strong="H3027"\w* \w and|strong="H1419"\w* \w by|strong="H3027"\w* \w your|strong="H3027"\w* \w strong|strong="H2389"\w* \w hand|strong="H3027"\w*. +\v 11 Lord,\f + \fr 1:11 \ft The word translated “Lord” is “Adonai.”\f* \w I|strong="H3117"\w* \w beg|strong="H4994"\w* \w you|strong="H5414"\w*, \w let|strong="H4994"\w* \w your|strong="H5414"\w* ear \w be|strong="H1961"\w* \w attentive|strong="H7183"\w* \w now|strong="H4994"\w* \w to|strong="H1961"\w* \w the|strong="H6440"\w* \w prayer|strong="H8605"\w* \w of|strong="H4428"\w* \w your|strong="H5414"\w* \w servant|strong="H5650"\w*, \w and|strong="H4428"\w* \w to|strong="H1961"\w* \w the|strong="H6440"\w* \w prayer|strong="H8605"\w* \w of|strong="H4428"\w* \w your|strong="H5414"\w* \w servants|strong="H5650"\w* \w who|strong="H5650"\w* \w delight|strong="H2655"\w* \w to|strong="H1961"\w* \w fear|strong="H3372"\w* \w your|strong="H5414"\w* \w name|strong="H8034"\w*; \w and|strong="H4428"\w* \w please|strong="H4994"\w* \w prosper|strong="H6743"\w* \w your|strong="H5414"\w* \w servant|strong="H5650"\w* \w today|strong="H3117"\w*, \w and|strong="H4428"\w* \w grant|strong="H5414"\w* \w him|strong="H5414"\w* \w mercy|strong="H7356"\w* \w in|strong="H4428"\w* \w the|strong="H6440"\w* \w sight|strong="H6440"\w* \w of|strong="H4428"\w* \w this|strong="H2088"\w* \w man|strong="H2088"\w*.” +\p \w Now|strong="H4994"\w* \w I|strong="H3117"\w* \w was|strong="H8034"\w* cup bearer \w to|strong="H1961"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*. +\c 2 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H6440"\w* \w month|strong="H2320"\w* \w Nisan|strong="H5212"\w*, \w in|strong="H8141"\w* \w the|strong="H6440"\w* \w twentieth|strong="H6242"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* Artaxerxes \w the|strong="H6440"\w* \w king|strong="H4428"\w*, \w when|strong="H1961"\w* \w wine|strong="H3196"\w* \w was|strong="H1961"\w* \w before|strong="H6440"\w* \w him|strong="H5414"\w*, \w I|strong="H5414"\w* \w picked|strong="H5375"\w* \w up|strong="H5375"\w* \w the|strong="H6440"\w* \w wine|strong="H3196"\w*, \w and|strong="H6242"\w* \w gave|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H1961"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*. \w Now|strong="H1961"\w* \w I|strong="H5414"\w* \w had|strong="H1961"\w* \w not|strong="H3808"\w* \w been|strong="H1961"\w* \w sad|strong="H7451"\w* \w before|strong="H6440"\w* \w in|strong="H8141"\w* \w his|strong="H5375"\w* \w presence|strong="H6440"\w*. +\v 2 \w The|strong="H6440"\w* \w king|strong="H4428"\w* said \w to|strong="H3820"\w* \w me|strong="H6440"\w*, “\w Why|strong="H4069"\w* \w is|strong="H2088"\w* \w your|strong="H6440"\w* \w face|strong="H6440"\w* \w sad|strong="H7451"\w*, \w since|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H4428"\w* \w not|strong="H2088"\w* \w sick|strong="H2470"\w*? \w This|strong="H2088"\w* \w is|strong="H2088"\w* nothing \w else|strong="H3588"\w* \w but|strong="H3588"\w* \w sorrow|strong="H7451"\w* \w of|strong="H4428"\w* \w heart|strong="H3820"\w*.” +\p \w Then|strong="H2088"\w* \w I|strong="H3588"\w* \w was|strong="H3820"\w* \w very|strong="H3966"\w* \w much|strong="H7235"\w* \w afraid|strong="H3372"\w*. +\v 3 \w I|strong="H3808"\w* said \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*, “\w Let|strong="H3808"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w live|strong="H2421"\w* \w forever|strong="H5769"\w*! \w Why|strong="H4069"\w* shouldn’t \w my|strong="H6440"\w* \w face|strong="H6440"\w* \w be|strong="H3808"\w* \w sad|strong="H7489"\w*, \w when|strong="H2421"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w*, \w the|strong="H6440"\w* \w place|strong="H1004"\w* \w of|strong="H4428"\w* \w my|strong="H6440"\w* fathers’ \w tombs|strong="H6913"\w*, lies \w waste|strong="H2717"\w*, \w and|strong="H4428"\w* \w its|strong="H5892"\w* \w gates|strong="H8179"\w* \w have|strong="H5892"\w* \w been|strong="H5769"\w* consumed \w with|strong="H1004"\w* fire?” +\p +\v 4 \w Then|strong="H2088"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* said \w to|strong="H5921"\w* \w me|strong="H5921"\w*, “\w What|strong="H4100"\w* \w is|strong="H2088"\w* \w your|strong="H5921"\w* \w request|strong="H1245"\w*?” +\p \w So|strong="H2088"\w* \w I|strong="H5921"\w* \w prayed|strong="H6419"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w God|strong="H8064"\w* \w of|strong="H4428"\w* \w heaven|strong="H8064"\w*. +\v 5 \w I|strong="H5921"\w* said \w to|strong="H7971"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*, “If \w it|strong="H5921"\w* \w pleases|strong="H2895"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*, \w and|strong="H3063"\w* if \w your|strong="H5921"\w* \w servant|strong="H5650"\w* \w has|strong="H4428"\w* \w found|strong="H3190"\w* \w favor|strong="H6440"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w sight|strong="H6440"\w*, \w I|strong="H5921"\w* \w ask|strong="H4428"\w* \w that|strong="H4428"\w* \w you|strong="H6440"\w* \w would|strong="H5650"\w* \w send|strong="H7971"\w* \w me|strong="H6440"\w* \w to|strong="H7971"\w* \w Judah|strong="H3063"\w*, \w to|strong="H7971"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w* \w of|strong="H4428"\w* \w my|strong="H5921"\w* fathers’ \w tombs|strong="H6913"\w*, \w that|strong="H4428"\w* \w I|strong="H5921"\w* \w may|strong="H4428"\w* \w build|strong="H1129"\w* \w it|strong="H5921"\w*.” +\p +\v 6 \w The|strong="H6440"\w* \w king|strong="H4428"\w* said \w to|strong="H5704"\w* \w me|strong="H5414"\w* (\w the|strong="H6440"\w* \w queen|strong="H7694"\w* \w was|strong="H1961"\w* \w also|strong="H4428"\w* \w sitting|strong="H3427"\w* \w by|strong="H5414"\w* \w him|strong="H5414"\w*), “\w How|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H1961"\w* \w your|strong="H5414"\w* \w journey|strong="H4109"\w* \w be|strong="H1961"\w*? \w When|strong="H1961"\w* \w will|strong="H1961"\w* \w you|strong="H5414"\w* \w return|strong="H7725"\w*?” +\p \w So|strong="H7971"\w* \w it|strong="H5414"\w* \w pleased|strong="H3190"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w to|strong="H5704"\w* \w send|strong="H7971"\w* \w me|strong="H5414"\w*, \w and|strong="H7971"\w* \w I|strong="H5414"\w* \w set|strong="H5414"\w* \w a|strong="H3068"\w* \w time|strong="H2165"\w* \w for|strong="H5704"\w* \w him|strong="H5414"\w*. +\v 7 Moreover \w I|strong="H5414"\w* said \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*, “If \w it|strong="H5414"\w* \w pleases|strong="H2895"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*, \w let|strong="H5414"\w* letters \w be|strong="H5414"\w* \w given|strong="H5414"\w* \w me|strong="H5414"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w governors|strong="H6346"\w* \w beyond|strong="H5676"\w* \w the|strong="H5921"\w* \w River|strong="H5104"\w*, \w that|strong="H5414"\w* \w they|strong="H5921"\w* \w may|strong="H4428"\w* \w let|strong="H5414"\w* \w me|strong="H5414"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w until|strong="H5704"\w* \w I|strong="H5414"\w* \w come|strong="H5674"\w* \w to|strong="H5704"\w* \w Judah|strong="H3063"\w*; +\v 8 \w and|strong="H4428"\w* \w a|strong="H3068"\w* letter \w to|strong="H5921"\w* Asaph \w the|strong="H5921"\w* \w keeper|strong="H8104"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w forest|strong="H6508"\w*, \w that|strong="H5414"\w* \w he|strong="H1004"\w* \w may|strong="H4428"\w* \w give|strong="H5414"\w* \w me|strong="H5414"\w* \w timber|strong="H6086"\w* \w to|strong="H5921"\w* \w make|strong="H5414"\w* \w beams|strong="H7136"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w gates|strong="H8179"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w citadel|strong="H1002"\w* \w by|strong="H3027"\w* \w the|strong="H5921"\w* \w temple|strong="H1004"\w*, \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w wall|strong="H2346"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*, \w and|strong="H4428"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w that|strong="H5414"\w* \w I|strong="H5414"\w* \w will|strong="H4428"\w* occupy.” +\p \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w granted|strong="H5414"\w* \w my|strong="H8104"\w* requests, \w because|strong="H5921"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w good|strong="H2896"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w my|strong="H8104"\w* \w God|strong="H5414"\w* \w on|strong="H5921"\w* \w me|strong="H5414"\w*. +\v 9 \w Then|strong="H7971"\w* \w I|strong="H5414"\w* \w came|strong="H4428"\w* \w to|strong="H7971"\w* \w the|strong="H5414"\w* \w governors|strong="H6346"\w* \w beyond|strong="H5676"\w* \w the|strong="H5414"\w* \w River|strong="H5104"\w*, \w and|strong="H7971"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w*’s letters. \w Now|strong="H5414"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w had|strong="H4428"\w* \w sent|strong="H7971"\w* \w captains|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w army|strong="H2428"\w* \w and|strong="H7971"\w* \w horsemen|strong="H6571"\w* \w with|strong="H5973"\w* \w me|strong="H5414"\w*. +\v 10 \w When|strong="H8085"\w* \w Sanballat|strong="H5571"\w* \w the|strong="H8085"\w* \w Horonite|strong="H2772"\w* \w and|strong="H1121"\w* \w Tobiah|strong="H2900"\w* \w the|strong="H8085"\w* \w Ammonite|strong="H5984"\w* \w servant|strong="H5650"\w* \w heard|strong="H8085"\w* \w of|strong="H1121"\w* \w it|strong="H2896"\w*, \w it|strong="H2896"\w* \w grieved|strong="H7489"\w* \w them|strong="H1992"\w* \w exceedingly|strong="H1419"\w*, because \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w had|strong="H3478"\w* \w come|strong="H3478"\w* \w to|strong="H3478"\w* \w seek|strong="H1245"\w* \w the|strong="H8085"\w* \w welfare|strong="H2896"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\p +\v 11 \w So|strong="H1961"\w* \w I|strong="H3117"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3117"\w* \w was|strong="H1961"\w* \w there|strong="H8033"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*. +\v 12 \w I|strong="H3588"\w* \w arose|strong="H6965"\w* \w in|strong="H6213"\w* \w the|strong="H3588"\w* \w night|strong="H3915"\w*, \w I|strong="H3588"\w* \w and|strong="H6965"\w* \w a|strong="H3068"\w* \w few|strong="H4592"\w* \w men|strong="H6213"\w* \w with|strong="H5973"\w* \w me|strong="H5414"\w*. \w I|strong="H3588"\w* didn’t \w tell|strong="H5046"\w* \w anyone|strong="H3588"\w* \w what|strong="H4100"\w* \w my|strong="H5414"\w* \w God|strong="H5414"\w* \w put|strong="H5414"\w* \w into|strong="H6213"\w* \w my|strong="H5414"\w* \w heart|strong="H3820"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w for|strong="H3588"\w* \w Jerusalem|strong="H3389"\w*. \w There|strong="H6965"\w* wasn’t \w any|strong="H6213"\w* animal \w with|strong="H5973"\w* \w me|strong="H5414"\w* \w except|strong="H3588"\w* \w the|strong="H3588"\w* animal \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w rode|strong="H7392"\w* \w on|strong="H7392"\w*. +\v 13 \w I|strong="H6440"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w by|strong="H3318"\w* \w night|strong="H3915"\w* \w by|strong="H3318"\w* \w the|strong="H6440"\w* \w valley|strong="H1516"\w* \w gate|strong="H8179"\w* \w toward|strong="H6440"\w* \w the|strong="H6440"\w* jackal’s \w well|strong="H5869"\w*, \w then|strong="H1961"\w* \w to|strong="H3318"\w* \w the|strong="H6440"\w* dung \w gate|strong="H8179"\w*; \w and|strong="H5869"\w* \w I|strong="H6440"\w* \w inspected|strong="H7663"\w* \w the|strong="H6440"\w* \w walls|strong="H2346"\w* \w of|strong="H6440"\w* \w Jerusalem|strong="H3389"\w*, \w which|strong="H5869"\w* \w were|strong="H1961"\w* \w broken|strong="H6555"\w* \w down|strong="H6555"\w*, \w and|strong="H5869"\w* \w its|strong="H6555"\w* \w gates|strong="H8179"\w* \w were|strong="H1961"\w* consumed \w with|strong="H3389"\w* fire. +\v 14 \w Then|strong="H5674"\w* \w I|strong="H8478"\w* \w went|strong="H5674"\w* \w on|strong="H5674"\w* \w to|strong="H4428"\w* \w the|strong="H8478"\w* \w spring|strong="H5869"\w* \w gate|strong="H8179"\w* \w and|strong="H4428"\w* \w to|strong="H4428"\w* \w the|strong="H8478"\w* \w king|strong="H4428"\w*’s \w pool|strong="H1295"\w*, \w but|strong="H4428"\w* \w there|strong="H8478"\w* \w was|strong="H4428"\w* no \w place|strong="H4725"\w* \w for|strong="H8478"\w* \w the|strong="H8478"\w* animal \w that|strong="H4428"\w* \w was|strong="H4428"\w* \w under|strong="H8478"\w* \w me|strong="H5674"\w* \w to|strong="H4428"\w* \w pass|strong="H5674"\w*. +\v 15 \w Then|strong="H1961"\w* \w I|strong="H1961"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w in|strong="H7725"\w* \w the|strong="H7725"\w* \w night|strong="H3915"\w* \w by|strong="H1961"\w* \w the|strong="H7725"\w* \w brook|strong="H5158"\w* \w and|strong="H7725"\w* \w inspected|strong="H7663"\w* \w the|strong="H7725"\w* \w wall|strong="H2346"\w*; \w and|strong="H7725"\w* \w I|strong="H1961"\w* \w turned|strong="H7725"\w* \w back|strong="H7725"\w*, \w and|strong="H7725"\w* \w entered|strong="H5927"\w* \w by|strong="H1961"\w* \w the|strong="H7725"\w* \w valley|strong="H1516"\w* \w gate|strong="H8179"\w*, \w and|strong="H7725"\w* \w so|strong="H1961"\w* \w returned|strong="H7725"\w*. +\v 16 \w The|strong="H6213"\w* \w rulers|strong="H5461"\w* didn’t \w know|strong="H3045"\w* \w where|strong="H4100"\w* \w I|strong="H5704"\w* \w went|strong="H1980"\w*, \w or|strong="H3808"\w* \w what|strong="H4100"\w* \w I|strong="H5704"\w* \w did|strong="H6213"\w*. \w I|strong="H5704"\w* \w had|strong="H3045"\w* \w not|strong="H3808"\w* \w as|strong="H5704"\w* \w yet|strong="H5704"\w* \w told|strong="H5046"\w* \w it|strong="H6213"\w* \w to|strong="H5704"\w* \w the|strong="H6213"\w* \w Jews|strong="H3064"\w*, \w nor|strong="H3808"\w* \w to|strong="H5704"\w* \w the|strong="H6213"\w* \w priests|strong="H3548"\w*, \w nor|strong="H3808"\w* \w to|strong="H5704"\w* \w the|strong="H6213"\w* \w nobles|strong="H2715"\w*, \w nor|strong="H3808"\w* \w to|strong="H5704"\w* \w the|strong="H6213"\w* \w rulers|strong="H5461"\w*, \w nor|strong="H3808"\w* \w to|strong="H5704"\w* \w the|strong="H6213"\w* \w rest|strong="H3499"\w* \w who|strong="H3548"\w* \w did|strong="H6213"\w* \w the|strong="H6213"\w* \w work|strong="H4399"\w*. +\p +\v 17 \w Then|strong="H1961"\w* \w I|strong="H7200"\w* said \w to|strong="H3212"\w* \w them|strong="H7200"\w*, “\w You|strong="H3808"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w bad|strong="H7451"\w* situation \w that|strong="H7200"\w* \w we|strong="H3068"\w* \w are|strong="H8179"\w* \w in|strong="H3212"\w*, how \w Jerusalem|strong="H3389"\w* \w lies|strong="H1961"\w* \w waste|strong="H2717"\w*, \w and|strong="H3212"\w* \w its|strong="H1961"\w* \w gates|strong="H8179"\w* \w are|strong="H8179"\w* \w burned|strong="H3341"\w* \w with|strong="H3389"\w* \w fire|strong="H3341"\w*. \w Come|strong="H1961"\w*, \w let|strong="H3808"\w*’s \w build|strong="H1129"\w* \w up|strong="H1129"\w* \w the|strong="H7200"\w* \w wall|strong="H2346"\w* \w of|strong="H8179"\w* \w Jerusalem|strong="H3389"\w*, \w that|strong="H7200"\w* \w we|strong="H3068"\w* won’t \w be|strong="H1961"\w* disgraced.” +\v 18 \w I|strong="H5921"\w* \w told|strong="H5046"\w* \w them|strong="H5921"\w* \w about|strong="H5921"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w my|strong="H5921"\w* \w God|strong="H3027"\w* \w which|strong="H1931"\w* \w was|strong="H1931"\w* \w good|strong="H2896"\w* \w on|strong="H5921"\w* \w me|strong="H5046"\w*, \w and|strong="H6965"\w* \w also|strong="H3027"\w* \w about|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w words|strong="H1697"\w* \w that|strong="H1931"\w* \w he|strong="H1931"\w* \w had|strong="H4428"\w* \w spoken|strong="H1697"\w* \w to|strong="H5921"\w* \w me|strong="H5046"\w*. +\p \w They|strong="H5921"\w* \w said|strong="H1697"\w*, “\w Let|strong="H5046"\w*’s \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H6965"\w* \w build|strong="H1129"\w*.” \w So|strong="H6965"\w* \w they|strong="H5921"\w* \w strengthened|strong="H2388"\w* \w their|strong="H5921"\w* \w hands|strong="H3027"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w good|strong="H2896"\w* \w work|strong="H1697"\w*. +\p +\v 19 \w But|strong="H8085"\w* \w when|strong="H8085"\w* \w Sanballat|strong="H5571"\w* \w the|strong="H5921"\w* \w Horonite|strong="H2772"\w*, \w Tobiah|strong="H2900"\w* \w the|strong="H5921"\w* \w Ammonite|strong="H5984"\w* \w servant|strong="H5650"\w*, \w and|strong="H4428"\w* \w Geshem|strong="H1654"\w* \w the|strong="H5921"\w* \w Arabian|strong="H6163"\w*, \w heard|strong="H8085"\w* \w it|strong="H5921"\w*, \w they|strong="H5921"\w* ridiculed \w us|strong="H5921"\w* \w and|strong="H4428"\w* despised \w us|strong="H5921"\w*, \w and|strong="H4428"\w* \w said|strong="H1697"\w*, “\w What|strong="H4100"\w* \w is|strong="H2088"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w that|strong="H8085"\w* \w you|strong="H5921"\w* \w are|strong="H4100"\w* \w doing|strong="H6213"\w*? \w Will|strong="H4428"\w* \w you|strong="H5921"\w* \w rebel|strong="H4775"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*?” +\p +\v 20 \w Then|strong="H6965"\w* \w I|strong="H1697"\w* \w answered|strong="H7725"\w* \w them|strong="H7725"\w*, \w and|strong="H6965"\w* \w said|strong="H1697"\w* \w to|strong="H7725"\w* \w them|strong="H7725"\w*, “\w The|strong="H7725"\w* \w God|strong="H8064"\w* \w of|strong="H1697"\w* \w heaven|strong="H8064"\w* \w will|strong="H5650"\w* \w prosper|strong="H6743"\w* \w us|strong="H7725"\w*. \w Therefore|strong="H5650"\w* \w we|strong="H3068"\w*, \w his|strong="H7725"\w* \w servants|strong="H5650"\w*, \w will|strong="H5650"\w* \w arise|strong="H6965"\w* \w and|strong="H6965"\w* \w build|strong="H1129"\w*; \w but|strong="H1931"\w* \w you|strong="H7725"\w* \w have|strong="H5650"\w* \w no|strong="H2506"\w* \w portion|strong="H2506"\w*, \w nor|strong="H2506"\w* \w right|strong="H6666"\w*, \w nor|strong="H2506"\w* \w memorial|strong="H2146"\w* \w in|strong="H7725"\w* \w Jerusalem|strong="H3389"\w*.” +\c 3 +\p +\v 1 \w Then|strong="H6965"\w* Eliashib \w the|strong="H1129"\w* \w high|strong="H1419"\w* \w priest|strong="H3548"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w with|strong="H3548"\w* \w his|strong="H6965"\w* brothers \w the|strong="H1129"\w* \w priests|strong="H3548"\w*, \w and|strong="H6965"\w* \w they|strong="H1992"\w* \w built|strong="H1129"\w* \w the|strong="H1129"\w* \w sheep|strong="H6629"\w* \w gate|strong="H8179"\w*. \w They|strong="H1992"\w* \w sanctified|strong="H6942"\w* \w it|strong="H5704"\w*, \w and|strong="H6965"\w* \w set|strong="H5975"\w* \w up|strong="H6965"\w* \w its|strong="H5975"\w* \w doors|strong="H1817"\w*. \w They|strong="H1992"\w* \w sanctified|strong="H6942"\w* \w it|strong="H5704"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H1129"\w* \w tower|strong="H4026"\w* \w of|strong="H8179"\w* Hammeah, \w to|strong="H5704"\w* \w the|strong="H1129"\w* \w tower|strong="H4026"\w* \w of|strong="H8179"\w* \w Hananel|strong="H2606"\w*. +\v 2 \w Next|strong="H5921"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w* \w the|strong="H5921"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Jericho|strong="H3405"\w* \w built|strong="H1129"\w*. \w Next|strong="H5921"\w* \w to|strong="H5921"\w* \w them|strong="H5921"\w* \w Zaccur|strong="H2139"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Imri \w built|strong="H1129"\w*. +\p +\v 3 \w The|strong="H1129"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Hassenaah|strong="H5570"\w* \w built|strong="H1129"\w* \w the|strong="H1129"\w* \w fish|strong="H1709"\w* \w gate|strong="H8179"\w*. \w They|strong="H1992"\w* \w laid|strong="H7136"\w* \w its|strong="H5975"\w* \w beams|strong="H7136"\w*, \w and|strong="H1121"\w* \w set|strong="H5975"\w* \w up|strong="H5975"\w* \w its|strong="H5975"\w* \w doors|strong="H1817"\w*, \w its|strong="H5975"\w* \w bolts|strong="H4514"\w*, \w and|strong="H1121"\w* \w its|strong="H5975"\w* \w bars|strong="H1280"\w*. +\v 4 \w Next|strong="H5921"\w* \w to|strong="H5921"\w* \w them|strong="H5921"\w*, \w Meremoth|strong="H4822"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Uriah, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hakkoz|strong="H6976"\w* \w made|strong="H2388"\w* \w repairs|strong="H2388"\w*. \w Next|strong="H5921"\w* \w to|strong="H5921"\w* \w them|strong="H5921"\w*, \w Meshullam|strong="H4918"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Berechiah|strong="H1296"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Meshezabel|strong="H4898"\w* \w made|strong="H2388"\w* \w repairs|strong="H2388"\w*. \w Next|strong="H5921"\w* \w to|strong="H5921"\w* \w them|strong="H5921"\w*, \w Zadok|strong="H6659"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Baana|strong="H1195"\w* \w made|strong="H2388"\w* \w repairs|strong="H2388"\w*. +\v 5 \w Next|strong="H5921"\w* \w to|strong="H5921"\w* \w them|strong="H5921"\w*, \w the|strong="H5921"\w* \w Tekoites|strong="H8621"\w* \w made|strong="H2388"\w* \w repairs|strong="H2388"\w*; \w but|strong="H3808"\w* \w their|strong="H5921"\w* nobles didn’t \w put|strong="H2388"\w* \w their|strong="H5921"\w* \w necks|strong="H6677"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* Lord’s \w work|strong="H5656"\w*. +\p +\v 6 \w Joiada|strong="H3111"\w* \w the|strong="H2388"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Paseah|strong="H6454"\w* \w and|strong="H1121"\w* \w Meshullam|strong="H4918"\w* \w the|strong="H2388"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Besodeiah|strong="H1152"\w* \w repaired|strong="H2388"\w* \w the|strong="H2388"\w* \w old|strong="H1121"\w* \w gate|strong="H8179"\w*. \w They|strong="H1992"\w* \w laid|strong="H7136"\w* \w its|strong="H5975"\w* \w beams|strong="H7136"\w* \w and|strong="H1121"\w* \w set|strong="H5975"\w* \w up|strong="H5975"\w* \w its|strong="H5975"\w* \w doors|strong="H1817"\w*, \w its|strong="H5975"\w* \w bolts|strong="H4514"\w*, \w and|strong="H1121"\w* \w its|strong="H5975"\w* \w bars|strong="H1280"\w*. +\v 7 \w Next|strong="H5921"\w* \w to|strong="H5921"\w* \w them|strong="H5921"\w*, \w Melatiah|strong="H4424"\w* \w the|strong="H5921"\w* \w Gibeonite|strong="H1393"\w* \w and|strong="H3027"\w* \w Jadon|strong="H3036"\w* \w the|strong="H5921"\w* \w Meronothite|strong="H4824"\w*, \w the|strong="H5921"\w* \w men|strong="H2388"\w* \w of|strong="H3027"\w* \w Gibeon|strong="H1391"\w* \w and|strong="H3027"\w* \w of|strong="H3027"\w* \w Mizpah|strong="H4709"\w*, \w repaired|strong="H2388"\w* \w the|strong="H5921"\w* residence \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w governor|strong="H6346"\w* \w beyond|strong="H5676"\w* \w the|strong="H5921"\w* \w River|strong="H5104"\w*. +\v 8 \w Next|strong="H5921"\w* \w to|strong="H5704"\w* \w him|strong="H5921"\w*, \w Uzziel|strong="H5816"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Harhaiah|strong="H2736"\w*, \w goldsmiths|strong="H6884"\w*, \w made|strong="H2388"\w* \w repairs|strong="H2388"\w*. \w Next|strong="H5921"\w* \w to|strong="H5704"\w* \w him|strong="H5921"\w*, \w Hananiah|strong="H2608"\w*, \w one|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w perfumers|strong="H7546"\w*, \w made|strong="H2388"\w* \w repairs|strong="H2388"\w*, \w and|strong="H1121"\w* \w they|strong="H5921"\w* \w fortified|strong="H2388"\w* \w Jerusalem|strong="H3389"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w wide|strong="H7342"\w* \w wall|strong="H2346"\w*. +\v 9 \w Next|strong="H5921"\w* \w to|strong="H5921"\w* \w them|strong="H5921"\w*, \w Rephaiah|strong="H7509"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hur|strong="H2354"\w*, \w the|strong="H5921"\w* \w ruler|strong="H8269"\w* \w of|strong="H1121"\w* \w half|strong="H2677"\w* \w the|strong="H5921"\w* \w district|strong="H6418"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*, \w made|strong="H2388"\w* \w repairs|strong="H2388"\w*. +\v 10 \w Next|strong="H5921"\w* \w to|strong="H5921"\w* \w them|strong="H5921"\w*, \w Jedaiah|strong="H3042"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Harumaph|strong="H2739"\w* \w made|strong="H2388"\w* \w repairs|strong="H2388"\w* \w across|strong="H5921"\w* \w from|strong="H5921"\w* \w his|strong="H5921"\w* \w house|strong="H1004"\w*. \w Next|strong="H5921"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w*, \w Hattush|strong="H2407"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hashabneiah|strong="H2813"\w* \w made|strong="H2388"\w* \w repairs|strong="H2388"\w*. +\v 11 \w Malchijah|strong="H4441"\w* \w the|strong="H2388"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Harim|strong="H2766"\w* \w and|strong="H1121"\w* \w Hasshub|strong="H2815"\w* \w the|strong="H2388"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Pahathmoab \w repaired|strong="H2388"\w* \w another|strong="H8145"\w* portion \w and|strong="H1121"\w* \w the|strong="H2388"\w* \w tower|strong="H4026"\w* \w of|strong="H1121"\w* \w the|strong="H2388"\w* \w furnaces|strong="H8574"\w*. +\v 12 \w Next|strong="H5921"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w*, \w Shallum|strong="H7967"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hallohesh|strong="H3873"\w*, \w the|strong="H5921"\w* \w ruler|strong="H8269"\w* \w of|strong="H1121"\w* \w half|strong="H2677"\w* \w the|strong="H5921"\w* \w district|strong="H6418"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*, \w he|strong="H1931"\w* \w and|strong="H1121"\w* \w his|strong="H5921"\w* \w daughters|strong="H1323"\w* \w made|strong="H2388"\w* \w repairs|strong="H2388"\w*. +\p +\v 13 \w Hanun|strong="H2586"\w* \w and|strong="H2388"\w* \w the|strong="H1129"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Zanoah|strong="H2182"\w* \w repaired|strong="H2388"\w* \w the|strong="H1129"\w* \w valley|strong="H1516"\w* \w gate|strong="H8179"\w*. \w They|strong="H1992"\w* \w built|strong="H1129"\w* \w it|strong="H5704"\w*, \w and|strong="H2388"\w* \w set|strong="H5975"\w* \w up|strong="H5975"\w* \w its|strong="H5975"\w* \w doors|strong="H1817"\w*, \w its|strong="H5975"\w* \w bolts|strong="H4514"\w*, \w and|strong="H2388"\w* \w its|strong="H5975"\w* \w bars|strong="H1280"\w*, \w and|strong="H2388"\w* one thousand cubits\f + \fr 3:13 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w of|strong="H3427"\w* \w the|strong="H1129"\w* \w wall|strong="H2346"\w* \w to|strong="H5704"\w* \w the|strong="H1129"\w* dung \w gate|strong="H8179"\w*. +\p +\v 14 \w Malchijah|strong="H4441"\w* \w the|strong="H1129"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Rechab|strong="H7394"\w*, \w the|strong="H1129"\w* \w ruler|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H1129"\w* \w district|strong="H6418"\w* \w of|strong="H1121"\w* Beth Haccherem, \w repaired|strong="H2388"\w* \w the|strong="H1129"\w* dung \w gate|strong="H8179"\w*. \w He|strong="H1931"\w* \w built|strong="H1129"\w* \w it|strong="H1931"\w*, \w and|strong="H1121"\w* \w set|strong="H5975"\w* \w up|strong="H5975"\w* \w its|strong="H5975"\w* \w doors|strong="H1817"\w*, \w its|strong="H5975"\w* \w bolts|strong="H4514"\w*, \w and|strong="H1121"\w* \w its|strong="H5975"\w* \w bars|strong="H1280"\w*. +\p +\v 15 \w Shallun|strong="H7968"\w* \w the|strong="H1129"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Colhozeh, \w the|strong="H1129"\w* \w ruler|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H1129"\w* \w district|strong="H6418"\w* \w of|strong="H1121"\w* \w Mizpah|strong="H4709"\w*, \w repaired|strong="H2388"\w* \w the|strong="H1129"\w* \w spring|strong="H5869"\w* \w gate|strong="H8179"\w*. \w He|strong="H1931"\w* \w built|strong="H1129"\w* \w it|strong="H1931"\w*, \w covered|strong="H2926"\w* \w it|strong="H1931"\w*, \w and|strong="H1121"\w* \w set|strong="H5975"\w* \w up|strong="H5975"\w* \w its|strong="H5975"\w* \w doors|strong="H1817"\w*, \w its|strong="H5975"\w* \w bolts|strong="H4514"\w*, \w and|strong="H1121"\w* \w its|strong="H5975"\w* \w bars|strong="H1280"\w*; \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w repaired|strong="H2388"\w* \w the|strong="H1129"\w* \w wall|strong="H2346"\w* \w of|strong="H1121"\w* \w the|strong="H1129"\w* \w pool|strong="H1295"\w* \w of|strong="H1121"\w* \w Shelah|strong="H7975"\w* \w by|strong="H5975"\w* \w the|strong="H1129"\w* \w king|strong="H4428"\w*’s \w garden|strong="H1588"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H1129"\w* \w stairs|strong="H4609"\w* \w that|strong="H1931"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H3381"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*. +\v 16 \w After|strong="H1004"\w* \w him|strong="H6213"\w*, \w Nehemiah|strong="H5166"\w* \w the|strong="H6213"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Azbuk|strong="H5802"\w*, \w the|strong="H6213"\w* \w ruler|strong="H8269"\w* \w of|strong="H1121"\w* \w half|strong="H2677"\w* \w the|strong="H6213"\w* \w district|strong="H6418"\w* \w of|strong="H1121"\w* \w Beth|strong="H1004"\w* Zur, \w made|strong="H6213"\w* \w repairs|strong="H2388"\w* \w to|strong="H5704"\w* \w the|strong="H6213"\w* \w place|strong="H1004"\w* \w opposite|strong="H5048"\w* \w the|strong="H6213"\w* \w tombs|strong="H6913"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w*, \w and|strong="H1121"\w* \w to|strong="H5704"\w* \w the|strong="H6213"\w* \w pool|strong="H1295"\w* \w that|strong="H1121"\w* \w was|strong="H1732"\w* \w made|strong="H6213"\w*, \w and|strong="H1121"\w* \w to|strong="H5704"\w* \w the|strong="H6213"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w*. +\v 17 \w After|strong="H5921"\w* \w him|strong="H5921"\w*, \w the|strong="H5921"\w* \w Levites|strong="H3881"\w*—\w Rehum|strong="H7348"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Bani|strong="H1137"\w* \w made|strong="H2388"\w* \w repairs|strong="H2388"\w*. \w Next|strong="H5921"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w*, \w Hashabiah|strong="H2811"\w*, \w the|strong="H5921"\w* \w ruler|strong="H8269"\w* \w of|strong="H1121"\w* \w half|strong="H2677"\w* \w the|strong="H5921"\w* \w district|strong="H6418"\w* \w of|strong="H1121"\w* \w Keilah|strong="H7084"\w*, \w made|strong="H2388"\w* \w repairs|strong="H2388"\w* \w for|strong="H5921"\w* \w his|strong="H5921"\w* \w district|strong="H6418"\w*. +\v 18 After \w him|strong="H2388"\w*, \w their|strong="H2388"\w* \w brothers|strong="H1121"\w*, Bavvai \w the|strong="H2388"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Henadad|strong="H2582"\w*, \w the|strong="H2388"\w* \w ruler|strong="H8269"\w* \w of|strong="H1121"\w* \w half|strong="H2677"\w* \w the|strong="H2388"\w* \w district|strong="H6418"\w* \w of|strong="H1121"\w* \w Keilah|strong="H7084"\w* \w made|strong="H2388"\w* \w repairs|strong="H2388"\w*. +\v 19 \w Next|strong="H5921"\w* \w to|strong="H5927"\w* \w him|strong="H5921"\w*, \w Ezer|strong="H5829"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeshua|strong="H3442"\w*, \w the|strong="H5921"\w* \w ruler|strong="H8269"\w* \w of|strong="H1121"\w* \w Mizpah|strong="H4709"\w*, \w repaired|strong="H2388"\w* \w another|strong="H8145"\w* portion \w across|strong="H5921"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w ascent|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H5921"\w* \w armory|strong="H5402"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w turning|strong="H4740"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* wall. +\v 20 \w After|strong="H4480"\w* \w him|strong="H4480"\w*, \w Baruch|strong="H1263"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zabbai|strong="H2079"\w* \w earnestly|strong="H2734"\w* \w repaired|strong="H2388"\w* \w another|strong="H8145"\w* \w portion|strong="H4480"\w*, \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w turning|strong="H4740"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* wall \w to|strong="H5704"\w* \w the|strong="H4480"\w* \w door|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* Eliashib \w the|strong="H4480"\w* \w high|strong="H1419"\w* \w priest|strong="H3548"\w*. +\v 21 \w After|strong="H8145"\w* \w him|strong="H5704"\w*, \w Meremoth|strong="H4822"\w* \w the|strong="H5704"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Uriah \w the|strong="H5704"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hakkoz|strong="H6976"\w* \w repaired|strong="H2388"\w* \w another|strong="H8145"\w* portion, \w from|strong="H1121"\w* \w the|strong="H5704"\w* \w door|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H5704"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* Eliashib \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w end|strong="H8503"\w* \w of|strong="H1121"\w* \w the|strong="H5704"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* Eliashib. +\v 22 After \w him|strong="H2388"\w*, \w the|strong="H2388"\w* \w priests|strong="H3548"\w*, \w the|strong="H2388"\w* \w men|strong="H2388"\w* \w of|strong="H3603"\w* \w the|strong="H2388"\w* surrounding area \w made|strong="H2388"\w* \w repairs|strong="H2388"\w*. +\v 23 \w After|strong="H1004"\w* \w them|strong="H2388"\w*, \w Benjamin|strong="H1144"\w* \w and|strong="H1121"\w* \w Hasshub|strong="H2815"\w* \w made|strong="H2388"\w* \w repairs|strong="H2388"\w* across \w from|strong="H1121"\w* \w their|strong="H2388"\w* \w house|strong="H1004"\w*. \w After|strong="H1004"\w* \w them|strong="H2388"\w*, \w Azariah|strong="H5838"\w* \w the|strong="H2388"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Maaseiah|strong="H4641"\w* \w the|strong="H2388"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Ananiah|strong="H6055"\w* \w made|strong="H2388"\w* \w repairs|strong="H2388"\w* beside \w his|strong="H2388"\w* \w own|strong="H2388"\w* \w house|strong="H1004"\w*. +\v 24 \w After|strong="H8145"\w* \w him|strong="H5704"\w*, \w Binnui|strong="H1131"\w* \w the|strong="H5704"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Henadad|strong="H2582"\w* \w repaired|strong="H2388"\w* \w another|strong="H8145"\w* portion, \w from|strong="H1121"\w* \w the|strong="H5704"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Azariah|strong="H5838"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w turning|strong="H4740"\w* \w of|strong="H1121"\w* \w the|strong="H5704"\w* wall, \w and|strong="H1121"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w corner|strong="H6438"\w*. +\v 25 \w Palal|strong="H6420"\w* \w the|strong="H3318"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Uzai made repairs \w opposite|strong="H5048"\w* \w the|strong="H3318"\w* \w turning|strong="H4740"\w* \w of|strong="H1121"\w* \w the|strong="H3318"\w* wall, \w and|strong="H1121"\w* \w the|strong="H3318"\w* \w tower|strong="H4026"\w* \w that|strong="H4428"\w* stands \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w the|strong="H3318"\w* \w upper|strong="H5945"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w the|strong="H3318"\w* \w king|strong="H4428"\w*, \w which|strong="H1004"\w* \w is|strong="H4428"\w* \w by|strong="H3318"\w* \w the|strong="H3318"\w* \w court|strong="H2691"\w* \w of|strong="H1121"\w* \w the|strong="H3318"\w* \w guard|strong="H4307"\w*. \w After|strong="H3318"\w* \w him|strong="H3318"\w* \w Pedaiah|strong="H6305"\w* \w the|strong="H3318"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Parosh|strong="H6551"\w* made repairs. +\v 26 (\w Now|strong="H1961"\w* \w the|strong="H5704"\w* \w temple|strong="H5411"\w* \w servants|strong="H5411"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Ophel|strong="H6077"\w*, \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w place|strong="H1961"\w* \w opposite|strong="H5048"\w* \w the|strong="H5704"\w* \w water|strong="H4325"\w* \w gate|strong="H8179"\w* \w toward|strong="H5704"\w* \w the|strong="H5704"\w* \w east|strong="H4217"\w*, \w and|strong="H3318"\w* \w the|strong="H5704"\w* \w tower|strong="H4026"\w* \w that|strong="H4325"\w* stands \w out|strong="H3318"\w*.) +\v 27 \w After|strong="H3318"\w* \w him|strong="H3318"\w* \w the|strong="H5704"\w* \w Tekoites|strong="H8621"\w* \w repaired|strong="H2388"\w* \w another|strong="H8145"\w* portion, \w opposite|strong="H5048"\w* \w the|strong="H5704"\w* \w great|strong="H1419"\w* \w tower|strong="H4026"\w* \w that|strong="H5704"\w* \w stands|strong="H2388"\w* \w out|strong="H3318"\w*, \w and|strong="H1419"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w wall|strong="H2346"\w* \w of|strong="H2346"\w* \w Ophel|strong="H6077"\w*. +\p +\v 28 \w Above|strong="H5921"\w* \w the|strong="H5921"\w* \w horse|strong="H5483"\w* \w gate|strong="H8179"\w*, \w the|strong="H5921"\w* \w priests|strong="H3548"\w* \w made|strong="H2388"\w* \w repairs|strong="H2388"\w*, everyone \w across|strong="H5921"\w* \w from|strong="H5921"\w* \w his|strong="H5921"\w* \w own|strong="H3548"\w* \w house|strong="H1004"\w*. +\v 29 \w After|strong="H1004"\w* \w them|strong="H2388"\w*, \w Zadok|strong="H6659"\w* \w the|strong="H8104"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Immer \w made|strong="H2388"\w* \w repairs|strong="H2388"\w* across \w from|strong="H1121"\w* \w his|strong="H8104"\w* \w own|strong="H2388"\w* \w house|strong="H1004"\w*. \w After|strong="H1004"\w* \w him|strong="H5048"\w*, \w Shemaiah|strong="H8098"\w* \w the|strong="H8104"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shecaniah|strong="H7935"\w*, \w the|strong="H8104"\w* \w keeper|strong="H8104"\w* \w of|strong="H1121"\w* \w the|strong="H8104"\w* \w east|strong="H4217"\w* \w gate|strong="H8179"\w*, \w made|strong="H2388"\w* \w repairs|strong="H2388"\w*. +\v 30 \w After|strong="H8145"\w* \w him|strong="H5048"\w*, \w Hananiah|strong="H2608"\w* \w the|strong="H2388"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shelemiah|strong="H8018"\w*, \w and|strong="H1121"\w* \w Hanun|strong="H2586"\w*, \w the|strong="H2388"\w* \w sixth|strong="H8345"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zalaph|strong="H6764"\w*, \w repaired|strong="H2388"\w* \w another|strong="H8145"\w* portion. \w After|strong="H8145"\w* \w him|strong="H5048"\w*, \w Meshullam|strong="H4918"\w* \w the|strong="H2388"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Berechiah|strong="H1296"\w* \w made|strong="H2388"\w* \w repairs|strong="H2388"\w* across \w from|strong="H1121"\w* \w his|strong="H2388"\w* \w room|strong="H5393"\w*. +\v 31 \w After|strong="H1004"\w* \w him|strong="H5048"\w*, \w Malchijah|strong="H4441"\w*, \w one|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5704"\w* \w goldsmiths|strong="H6885"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w the|strong="H5704"\w* \w temple|strong="H1004"\w* \w servants|strong="H5411"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5704"\w* \w merchants|strong="H7402"\w*, \w made|strong="H2388"\w* \w repairs|strong="H2388"\w* \w opposite|strong="H5048"\w* \w the|strong="H5704"\w* \w gate|strong="H8179"\w* \w of|strong="H1121"\w* Hammiphkad \w and|strong="H1121"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w ascent|strong="H5944"\w* \w of|strong="H1121"\w* \w the|strong="H5704"\w* \w corner|strong="H6438"\w*. +\v 32 Between \w the|strong="H2388"\w* \w ascent|strong="H5944"\w* \w of|strong="H8179"\w* \w the|strong="H2388"\w* \w corner|strong="H6438"\w* \w and|strong="H6629"\w* \w the|strong="H2388"\w* \w sheep|strong="H6629"\w* \w gate|strong="H8179"\w*, \w the|strong="H2388"\w* \w goldsmiths|strong="H6884"\w* \w and|strong="H6629"\w* \w the|strong="H2388"\w* \w merchants|strong="H7402"\w* \w made|strong="H2388"\w* \w repairs|strong="H2388"\w*. +\c 4 +\p +\v 1 \w But|strong="H3588"\w* \w when|strong="H3588"\w* \w Sanballat|strong="H5571"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w were|strong="H1961"\w* building \w the|strong="H8085"\w* \w wall|strong="H2346"\w*, \w he|strong="H3588"\w* \w was|strong="H1961"\w* \w angry|strong="H2734"\w*, \w and|strong="H3389"\w* \w was|strong="H1961"\w* \w very|strong="H3966"\w* indignant, \w and|strong="H3389"\w* mocked \w the|strong="H8085"\w* Jews. +\v 2 \w He|strong="H6213"\w* spoke before \w his|strong="H3605"\w* brothers \w and|strong="H3389"\w* \w the|strong="H3605"\w* \w army|strong="H3389"\w* \w of|strong="H3605"\w* Samaria, \w and|strong="H3389"\w* said, “\w What|strong="H6213"\w* \w are|strong="H6213"\w* \w these|strong="H6213"\w* feeble Jews \w doing|strong="H6213"\w*? \w Will|strong="H3389"\w* \w they|strong="H6213"\w* fortify \w themselves|strong="H6213"\w*? \w Will|strong="H3389"\w* \w they|strong="H6213"\w* \w sacrifice|strong="H6213"\w*? \w Will|strong="H3389"\w* \w they|strong="H6213"\w* finish \w in|strong="H6213"\w* \w a|strong="H3068"\w* day? \w Will|strong="H3389"\w* \w they|strong="H6213"\w* revive \w the|strong="H3605"\w* stones \w out|strong="H6213"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* heaps \w of|strong="H3605"\w* rubbish, since \w they|strong="H6213"\w* \w are|strong="H6213"\w* burned?” +\p +\v 3 \w Now|strong="H5921"\w* Tobiah \w the|strong="H6440"\w* Ammonite \w was|strong="H6440"\w* \w by|strong="H5921"\w* \w him|strong="H6440"\w*, \w and|strong="H3119"\w* \w he|strong="H5921"\w* said, “\w What|strong="H5921"\w* \w they|strong="H5921"\w* \w are|strong="H6440"\w* building, if \w a|strong="H3068"\w* fox climbed \w up|strong="H5975"\w* \w it|strong="H5921"\w*, \w he|strong="H5921"\w* would break \w down|strong="H6440"\w* \w their|strong="H6440"\w* stone wall.” +\p +\v 4 “Hear, our \w God|strong="H3808"\w*, \w for|strong="H1129"\w* \w we|strong="H3068"\w* \w are|strong="H3782"\w* despised. Turn back \w their|strong="H3808"\w* reproach \w on|strong="H7235"\w* \w their|strong="H3808"\w* own head. \w Give|strong="H7235"\w* \w them|strong="H1129"\w* \w up|strong="H1129"\w* \w for|strong="H1129"\w* \w a|strong="H3068"\w* plunder \w in|strong="H1129"\w* \w a|strong="H3068"\w* land \w of|strong="H2346"\w* captivity. +\v 5 Don’t cover \w their|strong="H7200"\w* iniquity. Don’t \w let|strong="H3808"\w* \w their|strong="H7200"\w* sin \w be|strong="H3808"\w* blotted \w out|strong="H7200"\w* \w from|strong="H5704"\w* \w before|strong="H5704"\w* \w you|strong="H5704"\w*; \w for|strong="H5704"\w* \w they|strong="H3808"\w* \w have|strong="H3045"\w* insulted \w the|strong="H7200"\w* builders.” +\p +\v 6 \w So|strong="H1961"\w* \w we|strong="H3068"\w* built \w the|strong="H3605"\w* wall; \w and|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* wall \w was|strong="H1961"\w* joined \w together|strong="H5921"\w* \w to|strong="H7725"\w* half \w its|strong="H3605"\w* height, \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w people|strong="H3427"\w* \w had|strong="H1961"\w* \w a|strong="H3068"\w* mind \w to|strong="H7725"\w* work. +\p +\v 7 \w But|strong="H5971"\w* \w when|strong="H5975"\w* Sanballat, Tobiah, \w the|strong="H5975"\w* Arabians, \w the|strong="H5975"\w* Ammonites, \w and|strong="H5971"\w* \w the|strong="H5975"\w* Ashdodites heard \w that|strong="H5971"\w* \w the|strong="H5975"\w* repairing \w of|strong="H2346"\w* \w the|strong="H5975"\w* \w walls|strong="H2346"\w* \w of|strong="H2346"\w* Jerusalem \w went|strong="H5971"\w* forward, \w and|strong="H5971"\w* \w that|strong="H5971"\w* \w the|strong="H5975"\w* breaches began \w to|strong="H5971"\w* \w be|strong="H5971"\w* filled, \w they|strong="H5971"\w* \w were|strong="H5971"\w* very angry; +\v 8 \w and|strong="H1121"\w* \w they|strong="H5921"\w* \w all|strong="H7200"\w* conspired \w together|strong="H5921"\w* \w to|strong="H5921"\w* \w come|strong="H5971"\w* \w and|strong="H1121"\w* \w fight|strong="H3898"\w* \w against|strong="H5921"\w* Jerusalem, \w and|strong="H1121"\w* \w to|strong="H5921"\w* \w cause|strong="H5971"\w* confusion \w among|strong="H5921"\w* \w us|strong="H5921"\w*. +\v 9 \w But|strong="H3588"\w* \w we|strong="H3068"\w* \w made|strong="H3045"\w* \w our|strong="H3605"\w* prayer \w to|strong="H7725"\w* \w our|strong="H3605"\w* God, \w and|strong="H7725"\w* \w set|strong="H7725"\w* \w a|strong="H3068"\w* \w watch|strong="H3045"\w* \w against|strong="H8085"\w* \w them|strong="H7725"\w* day \w and|strong="H7725"\w* night \w because|strong="H3588"\w* \w of|strong="H2346"\w* \w them|strong="H7725"\w*. +\p +\v 10 \w Judah|strong="H3063"\w* said, “\w The|strong="H3605"\w* \w strength|strong="H2388"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* bearers \w of|strong="H1004"\w* burdens \w is|strong="H1931"\w* fading \w and|strong="H3063"\w* \w there|strong="H1961"\w* \w is|strong="H1931"\w* \w much|strong="H6213"\w* rubble, \w so|strong="H6213"\w* \w that|strong="H3605"\w* \w we|strong="H3068"\w* \w are|strong="H3117"\w* \w not|strong="H6213"\w* able \w to|strong="H1961"\w* \w build|strong="H6213"\w* \w the|strong="H3605"\w* wall.” +\v 11 \w Our|strong="H6213"\w* adversaries said, “\w They|strong="H6213"\w* \w will|strong="H3027"\w* \w not|strong="H6213"\w* know \w or|strong="H3027"\w* see, until \w we|strong="H3068"\w* \w come|strong="H2346"\w* \w in|strong="H6213"\w* among \w them|strong="H3027"\w* \w and|strong="H3027"\w* kill \w them|strong="H3027"\w*, \w and|strong="H3027"\w* \w cause|strong="H6213"\w* \w the|strong="H5375"\w* \w work|strong="H4399"\w* \w to|strong="H6213"\w* cease.” +\p +\v 12 \w When|strong="H8628"\w* \w the|strong="H5921"\w* Jews \w who|strong="H1129"\w* lived \w by|strong="H5921"\w* \w them|strong="H5921"\w* came, \w they|strong="H5921"\w* said \w to|strong="H5921"\w* \w us|strong="H5921"\w* ten times \w from|strong="H5921"\w* \w all|strong="H5921"\w* places, “\w Wherever|strong="H5921"\w* \w you|strong="H5921"\w* turn, \w they|strong="H5921"\w* \w will|strong="H2719"\w* attack \w us|strong="H5921"\w*.” +\p +\v 13 \w Therefore|strong="H5921"\w* \w I|strong="H5921"\w* set guards \w in|strong="H5921"\w* \w the|strong="H5921"\w* lowest \w parts|strong="H6504"\w* \w of|strong="H2346"\w* \w the|strong="H5921"\w* \w space|strong="H7350"\w* \w behind|strong="H5921"\w* \w the|strong="H5921"\w* \w wall|strong="H2346"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* open places. \w I|strong="H5921"\w* set \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w by|strong="H5921"\w* family groups \w with|strong="H5921"\w* \w their|strong="H5921"\w* swords, \w their|strong="H5921"\w* spears, \w and|strong="H5971"\w* \w their|strong="H5921"\w* bows. +\v 14 \w I|strong="H8085"\w* looked, \w and|strong="H6963"\w* rose \w up|strong="H6908"\w*, \w and|strong="H6963"\w* \w said|strong="H8085"\w* \w to|strong="H8085"\w* \w the|strong="H8085"\w* nobles, \w to|strong="H8085"\w* \w the|strong="H8085"\w* rulers, \w and|strong="H6963"\w* \w to|strong="H8085"\w* \w the|strong="H8085"\w* rest \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w people|strong="H6908"\w*, “Don’t \w be|strong="H6963"\w* afraid \w of|strong="H6963"\w* \w them|strong="H8085"\w*! Remember \w the|strong="H8085"\w* Lord, who \w is|strong="H4725"\w* great \w and|strong="H6963"\w* awesome, \w and|strong="H6963"\w* \w fight|strong="H3898"\w* \w for|strong="H4725"\w* \w your|strong="H8085"\w* brothers, \w your|strong="H8085"\w* sons, \w your|strong="H8085"\w* daughters, \w your|strong="H8085"\w* wives, \w and|strong="H6963"\w* \w your|strong="H8085"\w* houses.” +\p +\v 15 \w When|strong="H3318"\w* \w our|strong="H3318"\w* enemies heard \w that|strong="H6213"\w* \w it|strong="H6213"\w* \w was|strong="H4399"\w* \w known|strong="H3318"\w* \w to|strong="H5704"\w* \w us|strong="H6213"\w*, \w and|strong="H2388"\w* God \w had|strong="H4399"\w* \w brought|strong="H3318"\w* \w their|strong="H2388"\w* counsel \w to|strong="H5704"\w* nothing, \w all|strong="H5704"\w* \w of|strong="H3318"\w* \w us|strong="H6213"\w* \w returned|strong="H5927"\w* \w to|strong="H5704"\w* \w the|strong="H6213"\w* wall, everyone \w to|strong="H5704"\w* \w his|strong="H6213"\w* \w work|strong="H4399"\w*. +\v 16 \w From|strong="H3117"\w* \w that|strong="H5971"\w* \w time|strong="H6256"\w* \w forth|strong="H6256"\w*, \w half|strong="H8432"\w* \w of|strong="H3117"\w* \w my|strong="H1961"\w* \w servants|strong="H5288"\w* \w did|strong="H5971"\w* \w the|strong="H8432"\w* \w work|strong="H4399"\w*, \w and|strong="H3117"\w* \w half|strong="H8432"\w* \w of|strong="H3117"\w* \w them|strong="H8432"\w* \w held|strong="H1961"\w* \w the|strong="H8432"\w* spears, \w the|strong="H8432"\w* shields, \w the|strong="H8432"\w* bows, \w and|strong="H3117"\w* \w the|strong="H8432"\w* coats \w of|strong="H3117"\w* mail; \w and|strong="H3117"\w* \w the|strong="H8432"\w* rulers \w were|strong="H1961"\w* behind \w all|strong="H3885"\w* \w the|strong="H8432"\w* house \w of|strong="H3117"\w* Judah. +\v 17 Those \w who|strong="H5288"\w* built \w the|strong="H6584"\w* wall, \w and|strong="H5288"\w* those \w who|strong="H5288"\w* bore burdens loaded themselves; everyone \w with|strong="H4325"\w* one \w of|strong="H4325"\w* \w his|strong="H6584"\w* hands \w did|strong="H5288"\w* \w the|strong="H6584"\w* work, \w and|strong="H5288"\w* \w with|strong="H4325"\w* \w the|strong="H6584"\w* other held \w his|strong="H6584"\w* \w weapon|strong="H7973"\w*. +\v 18 Among the builders, everyone wore his sword at his side, and so built. He who sounded the trumpet was by me. +\v 19 I said to the nobles, and to the rulers and to the rest of the people, “The work is great and widely spread out, and \w we|strong="H3068"\w* are separated on the wall, far from one another. +\v 20 Wherever you hear the sound of the trumpet, rally there to us. Our God will fight for us.” +\p +\v 21 So \w we|strong="H3068"\w* did the work. Half of the people held the spears from the rising of the morning until the stars appeared. +\v 22 Likewise at the same time I said to the people, “Let everyone with his servant lodge within Jerusalem, that in the night they may be \w a|strong="H3068"\w* guard to us, and may labor in the day.” +\v 23 So neither I, nor my brothers, nor my servants, nor the men of the guard who followed me took off our clothes. Everyone took his weapon to the water. +\c 5 +\p +\v 1 \w Then|strong="H1961"\w* \w there|strong="H1961"\w* \w arose|strong="H1419"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w cry|strong="H6818"\w* \w of|strong="H5971"\w* \w the|strong="H1961"\w* \w people|strong="H5971"\w* \w and|strong="H1419"\w* \w of|strong="H5971"\w* \w their|strong="H1961"\w* wives against \w their|strong="H1961"\w* brothers \w the|strong="H1961"\w* \w Jews|strong="H3064"\w*. +\v 2 \w For|strong="H1121"\w* \w there|strong="H3426"\w* \w were|strong="H1121"\w* \w some|strong="H7227"\w* \w who|strong="H1121"\w* said, “We, \w our|strong="H3947"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w our|strong="H3947"\w* \w daughters|strong="H1323"\w*, \w are|strong="H1121"\w* \w many|strong="H7227"\w*. Let \w us|strong="H2421"\w* \w get|strong="H3947"\w* \w grain|strong="H1715"\w*, \w that|strong="H1121"\w* \w we|strong="H3068"\w* \w may|strong="H1121"\w* eat \w and|strong="H1121"\w* \w live|strong="H2421"\w*.” +\v 3 \w There|strong="H3426"\w* \w were|strong="H3426"\w* also some \w who|strong="H3426"\w* said, “We \w are|strong="H3426"\w* \w mortgaging|strong="H6148"\w* \w our|strong="H3947"\w* \w fields|strong="H7704"\w*, \w our|strong="H3947"\w* \w vineyards|strong="H3754"\w*, \w and|strong="H1004"\w* \w our|strong="H3947"\w* \w houses|strong="H1004"\w*. Let \w us|strong="H7704"\w* \w get|strong="H3947"\w* \w grain|strong="H1715"\w*, because \w of|strong="H1004"\w* \w the|strong="H3947"\w* \w famine|strong="H7458"\w*.” +\v 4 \w There|strong="H3426"\w* \w were|strong="H3426"\w* \w also|strong="H4428"\w* some \w who|strong="H4428"\w* said, “We \w have|strong="H3426"\w* \w borrowed|strong="H3867"\w* \w money|strong="H3701"\w* \w for|strong="H4428"\w* \w the|strong="H3426"\w* \w king|strong="H4428"\w*’s \w tribute|strong="H4060"\w* using \w our|strong="H3426"\w* \w fields|strong="H7704"\w* \w and|strong="H3701"\w* \w our|strong="H3426"\w* \w vineyards|strong="H3754"\w* \w as|strong="H4428"\w* collateral. +\v 5 \w Yet|strong="H6258"\w* \w now|strong="H6258"\w* \w our|strong="H5650"\w* \w flesh|strong="H1320"\w* \w is|strong="H3426"\w* \w as|strong="H1121"\w* \w the|strong="H3027"\w* \w flesh|strong="H1320"\w* \w of|strong="H1121"\w* \w our|strong="H5650"\w* \w brothers|strong="H1121"\w*, \w our|strong="H5650"\w* \w children|strong="H1121"\w* \w as|strong="H1121"\w* \w their|strong="H6258"\w* \w children|strong="H1121"\w*. \w Behold|strong="H2009"\w*,\f + \fr 5:5 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w we|strong="H3068"\w* \w bring|strong="H1323"\w* \w our|strong="H5650"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w our|strong="H5650"\w* \w daughters|strong="H1323"\w* \w into|strong="H3027"\w* \w bondage|strong="H5650"\w* \w to|strong="H3027"\w* \w be|strong="H3426"\w* \w servants|strong="H5650"\w*, \w and|strong="H1121"\w* \w some|strong="H3027"\w* \w of|strong="H1121"\w* \w our|strong="H5650"\w* \w daughters|strong="H1323"\w* \w have|strong="H3426"\w* \w been|strong="H3426"\w* \w brought|strong="H3533"\w* \w into|strong="H3027"\w* \w bondage|strong="H5650"\w*. \w It|strong="H3533"\w* \w is|strong="H3426"\w* \w also|strong="H3027"\w* \w not|strong="H1121"\w* \w in|strong="H1320"\w* \w our|strong="H5650"\w* \w power|strong="H3027"\w* \w to|strong="H3027"\w* \w help|strong="H1323"\w* \w it|strong="H3533"\w*, \w because|strong="H3027"\w* other \w men|strong="H1121"\w* \w have|strong="H3426"\w* \w our|strong="H5650"\w* \w fields|strong="H7704"\w* \w and|strong="H1121"\w* \w our|strong="H5650"\w* \w vineyards|strong="H3754"\w*.” +\p +\v 6 \w I|strong="H1697"\w* \w was|strong="H1697"\w* \w very|strong="H3966"\w* \w angry|strong="H2734"\w* \w when|strong="H8085"\w* \w I|strong="H1697"\w* \w heard|strong="H8085"\w* \w their|strong="H8085"\w* \w cry|strong="H2201"\w* \w and|strong="H8085"\w* \w these|strong="H8085"\w* \w words|strong="H1697"\w*. +\v 7 \w Then|strong="H5414"\w* \w I|strong="H5414"\w* \w consulted|strong="H4427"\w* \w with|strong="H5921"\w* \w myself|strong="H3820"\w*, \w and|strong="H1419"\w* \w contended|strong="H7378"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w nobles|strong="H2715"\w* \w and|strong="H1419"\w* \w the|strong="H5921"\w* \w rulers|strong="H5461"\w*, \w and|strong="H1419"\w* said \w to|strong="H5921"\w* \w them|strong="H5414"\w*, “\w You|strong="H5414"\w* \w exact|strong="H5383"\w* \w usury|strong="H4855"\w*, everyone \w of|strong="H5921"\w* \w his|strong="H5414"\w* brother.” \w I|strong="H5414"\w* \w held|strong="H5414"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w assembly|strong="H6952"\w* \w against|strong="H5921"\w* \w them|strong="H5414"\w*. +\v 8 \w I|strong="H1697"\w* \w said|strong="H1697"\w* \w to|strong="H1697"\w* \w them|strong="H4672"\w*, “\w We|strong="H1697"\w*, \w after|strong="H1767"\w* \w our|strong="H7069"\w* \w ability|strong="H1767"\w*, \w have|strong="H1571"\w* \w redeemed|strong="H7069"\w* \w our|strong="H7069"\w* brothers \w the|strong="H1697"\w* \w Jews|strong="H3064"\w* \w that|strong="H1471"\w* \w were|strong="H1697"\w* \w sold|strong="H4376"\w* \w to|strong="H1697"\w* \w the|strong="H1697"\w* \w nations|strong="H1471"\w*; \w and|strong="H1471"\w* \w would|strong="H1697"\w* \w you|strong="H3808"\w* \w even|strong="H1571"\w* \w sell|strong="H4376"\w* \w your|strong="H3808"\w* brothers, \w and|strong="H1471"\w* should \w they|strong="H3808"\w* \w be|strong="H3808"\w* \w sold|strong="H4376"\w* \w to|strong="H1697"\w* \w us|strong="H4672"\w*?” \w Then|strong="H1571"\w* \w they|strong="H3808"\w* held \w their|strong="H3808"\w* \w peace|strong="H2790"\w*, \w and|strong="H1471"\w* \w found|strong="H4672"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w word|strong="H1697"\w* \w to|strong="H1697"\w* \w say|strong="H1697"\w*. +\v 9 \w Also|strong="H6213"\w* \w I|strong="H1697"\w* \w said|strong="H1697"\w*, “\w The|strong="H6213"\w* \w thing|strong="H1697"\w* \w that|strong="H1471"\w* \w you|strong="H6213"\w* \w do|strong="H6213"\w* \w is|strong="H1697"\w* \w not|strong="H3808"\w* \w good|strong="H2896"\w*. Shouldn’t \w you|strong="H6213"\w* \w walk|strong="H3212"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w fear|strong="H3374"\w* \w of|strong="H1697"\w* \w our|strong="H6213"\w* \w God|strong="H3808"\w* \w because|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H6213"\w* \w reproach|strong="H2781"\w* \w of|strong="H1697"\w* \w the|strong="H6213"\w* \w nations|strong="H1471"\w*, \w our|strong="H6213"\w* enemies? +\v 10 \w I|strong="H2088"\w* \w likewise|strong="H1571"\w*, \w my|strong="H5800"\w* brothers \w and|strong="H3701"\w* \w my|strong="H5800"\w* \w servants|strong="H5288"\w*, \w lend|strong="H5383"\w* \w them|strong="H5800"\w* \w money|strong="H3701"\w* \w and|strong="H3701"\w* \w grain|strong="H1715"\w*. \w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w us|strong="H4994"\w* stop \w this|strong="H2088"\w* \w usury|strong="H4855"\w*. +\v 11 \w Please|strong="H4994"\w* \w restore|strong="H7725"\w* \w to|strong="H7725"\w* \w them|strong="H7725"\w*, even \w today|strong="H3117"\w*, \w their|strong="H7725"\w* \w fields|strong="H7704"\w*, \w their|strong="H7725"\w* \w vineyards|strong="H3754"\w*, \w their|strong="H7725"\w* \w olive|strong="H2132"\w* \w groves|strong="H2132"\w*, \w and|strong="H3967"\w* \w their|strong="H7725"\w* \w houses|strong="H1004"\w*, \w also|strong="H3117"\w* \w the|strong="H3117"\w* \w hundredth|strong="H3967"\w* part \w of|strong="H1004"\w* \w the|strong="H3117"\w* \w money|strong="H3701"\w*, \w and|strong="H3967"\w* \w of|strong="H1004"\w* \w the|strong="H3117"\w* \w grain|strong="H1715"\w*, \w the|strong="H3117"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w*, \w and|strong="H3967"\w* \w the|strong="H3117"\w* \w oil|strong="H3323"\w*, \w that|strong="H3117"\w* \w you|strong="H3117"\w* \w are|strong="H3117"\w* charging \w them|strong="H7725"\w*.” +\p +\v 12 \w Then|strong="H2088"\w* \w they|strong="H1992"\w* \w said|strong="H1697"\w*, “\w We|strong="H6213"\w* \w will|strong="H1697"\w* \w restore|strong="H7725"\w* \w them|strong="H1992"\w*, \w and|strong="H7725"\w* \w will|strong="H1697"\w* \w require|strong="H1245"\w* \w nothing|strong="H3808"\w* \w of|strong="H1697"\w* \w them|strong="H1992"\w*. \w We|strong="H6213"\w* \w will|strong="H1697"\w* \w do|strong="H6213"\w* \w so|strong="H3651"\w*, \w even|strong="H3651"\w* \w as|strong="H1697"\w* \w you|strong="H7725"\w* \w say|strong="H7725"\w*.” +\p \w Then|strong="H2088"\w* \w I|strong="H1697"\w* \w called|strong="H7121"\w* \w the|strong="H6213"\w* \w priests|strong="H3548"\w*, \w and|strong="H7725"\w* \w took|strong="H7650"\w* \w an|strong="H6213"\w* \w oath|strong="H7650"\w* \w of|strong="H1697"\w* \w them|strong="H1992"\w*, \w that|strong="H1697"\w* \w they|strong="H1992"\w* \w would|strong="H1697"\w* \w do|strong="H6213"\w* according \w to|strong="H7725"\w* \w this|strong="H2088"\w* \w promise|strong="H1697"\w*. +\v 13 \w Also|strong="H1571"\w* \w I|strong="H1697"\w* \w shook|strong="H5287"\w* \w out|strong="H6213"\w* \w my|strong="H3605"\w* \w lap|strong="H2684"\w*, \w and|strong="H6965"\w* \w said|strong="H1697"\w*, “\w So|strong="H6213"\w* \w may|strong="H1961"\w* \w God|strong="H3068"\w* \w shake|strong="H5287"\w* \w out|strong="H6213"\w* \w every|strong="H3605"\w* \w man|strong="H3605"\w* \w from|strong="H6965"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*, \w and|strong="H6965"\w* \w from|strong="H6965"\w* \w his|strong="H3605"\w* \w labor|strong="H3018"\w*, \w that|strong="H5971"\w* doesn’t \w perform|strong="H6213"\w* \w this|strong="H2088"\w* \w promise|strong="H1697"\w*; \w even|strong="H1571"\w* \w may|strong="H1961"\w* \w he|strong="H6213"\w* \w be|strong="H1961"\w* \w shaken|strong="H5287"\w* \w out|strong="H6213"\w* \w and|strong="H6965"\w* \w emptied|strong="H7386"\w* \w like|strong="H1961"\w* \w this|strong="H2088"\w*.” +\p \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w said|strong="H1697"\w*, “Amen,” \w and|strong="H6965"\w* \w praised|strong="H1984"\w* \w Yahweh|strong="H3068"\w*. \w The|strong="H3605"\w* \w people|strong="H5971"\w* \w did|strong="H6213"\w* \w according|strong="H3602"\w* \w to|strong="H3068"\w* \w this|strong="H2088"\w* \w promise|strong="H1697"\w*. +\p +\v 14 \w Moreover|strong="H1571"\w* \w from|strong="H3117"\w* \w the|strong="H3117"\w* \w time|strong="H3117"\w* \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w was|strong="H1961"\w* \w appointed|strong="H6680"\w* \w to|strong="H5704"\w* \w be|strong="H1961"\w* \w their|strong="H1961"\w* \w governor|strong="H6346"\w* \w in|strong="H8141"\w* \w the|strong="H3117"\w* land \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w from|strong="H3117"\w* \w the|strong="H3117"\w* \w twentieth|strong="H6242"\w* \w year|strong="H8141"\w* \w even|strong="H1571"\w* \w to|strong="H5704"\w* \w the|strong="H3117"\w* \w thirty-second|strong="H7970"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* Artaxerxes \w the|strong="H3117"\w* \w king|strong="H4428"\w*, \w that|strong="H3117"\w* \w is|strong="H3117"\w*, \w twelve|strong="H8147"\w* \w years|strong="H8141"\w*, \w I|strong="H3117"\w* \w and|strong="H3063"\w* \w my|strong="H1961"\w* brothers \w have|strong="H1961"\w* \w not|strong="H3808"\w* eaten \w the|strong="H3117"\w* \w bread|strong="H3899"\w* \w of|strong="H4428"\w* \w the|strong="H3117"\w* \w governor|strong="H6346"\w*. +\v 15 \w But|strong="H3808"\w* \w the|strong="H6440"\w* \w former|strong="H7223"\w* \w governors|strong="H6346"\w* \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w were|strong="H5971"\w* \w supported|strong="H3651"\w* \w by|strong="H5921"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*, \w and|strong="H3701"\w* \w took|strong="H3947"\w* \w bread|strong="H3899"\w* \w and|strong="H3701"\w* \w wine|strong="H3196"\w* \w from|strong="H6440"\w* \w them|strong="H1992"\w*, plus forty \w shekels|strong="H8255"\w*\f + \fr 5:15 \ft A shekel is about 10 grams or about 0.35 ounces.\f* \w of|strong="H6440"\w* \w silver|strong="H3701"\w*; \w yes|strong="H1571"\w*, \w even|strong="H1571"\w* \w their|strong="H3947"\w* \w servants|strong="H5288"\w* ruled \w over|strong="H5921"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*, \w but|strong="H3808"\w* \w I|strong="H5921"\w* didn’t \w do|strong="H6213"\w* \w so|strong="H3651"\w*, \w because|strong="H5921"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w fear|strong="H3374"\w* \w of|strong="H6440"\w* \w God|strong="H3808"\w*. +\v 16 \w Yes|strong="H1571"\w*, \w I|strong="H5921"\w* \w also|strong="H1571"\w* \w continued|strong="H2388"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w* \w of|strong="H7704"\w* \w this|strong="H2063"\w* \w wall|strong="H2346"\w*. \w We|strong="H8033"\w* didn’t \w buy|strong="H7069"\w* \w any|strong="H3605"\w* \w land|strong="H7704"\w*. \w All|strong="H3605"\w* \w my|strong="H3605"\w* \w servants|strong="H5288"\w* \w were|strong="H5288"\w* \w gathered|strong="H6908"\w* \w there|strong="H8033"\w* \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w*. +\v 17 Moreover \w there|strong="H4480"\w* \w were|strong="H1471"\w* \w at|strong="H5921"\w* \w my|strong="H5921"\w* \w table|strong="H7979"\w*, \w of|strong="H4480"\w* \w the|strong="H5921"\w* \w Jews|strong="H3064"\w* \w and|strong="H3967"\w* \w the|strong="H5921"\w* \w rulers|strong="H5461"\w*, \w one|strong="H4480"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w* men, \w in|strong="H5921"\w* \w addition|strong="H5921"\w* \w to|strong="H5921"\w* \w those|strong="H4480"\w* \w who|strong="H1471"\w* came \w to|strong="H5921"\w* \w us|strong="H5921"\w* \w from|strong="H4480"\w* \w among|strong="H4480"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w* \w that|strong="H1471"\w* \w were|strong="H1471"\w* \w around|strong="H5439"\w* \w us|strong="H5921"\w*. +\v 18 \w Now|strong="H1961"\w* \w that|strong="H3588"\w* \w which|strong="H5971"\w* \w was|strong="H1961"\w* \w prepared|strong="H6213"\w* \w for|strong="H3588"\w* \w one|strong="H2088"\w* \w day|strong="H3117"\w* \w was|strong="H1961"\w* \w one|strong="H2088"\w* \w ox|strong="H7794"\w* \w and|strong="H3117"\w* \w six|strong="H8337"\w* \w choice|strong="H1305"\w* \w sheep|strong="H6629"\w*. \w Also|strong="H6213"\w* \w fowls|strong="H6833"\w* \w were|strong="H1961"\w* \w prepared|strong="H6213"\w* \w for|strong="H3588"\w* \w me|strong="H5921"\w*, \w and|strong="H3117"\w* \w once|strong="H3117"\w* \w in|strong="H5921"\w* \w ten|strong="H6235"\w* \w days|strong="H3117"\w* \w a|strong="H3068"\w* \w store|strong="H7235"\w* \w of|strong="H3117"\w* \w all|strong="H3605"\w* sorts \w of|strong="H3117"\w* \w wine|strong="H3196"\w*. \w Yet|strong="H3588"\w* \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w this|strong="H2088"\w*, \w I|strong="H3588"\w* didn’t \w demand|strong="H1245"\w* \w the|strong="H3605"\w* \w governor|strong="H6346"\w*’s \w pay|strong="H7235"\w*, \w because|strong="H3588"\w* \w the|strong="H3605"\w* \w bondage|strong="H5656"\w* \w was|strong="H1961"\w* \w heavy|strong="H3513"\w* \w on|strong="H5921"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*. +\v 19 \w Remember|strong="H2142"\w* \w me|strong="H5921"\w*, \w my|strong="H3605"\w* God, \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w good|strong="H2896"\w* \w that|strong="H5971"\w* \w I|strong="H5921"\w* \w have|strong="H5971"\w* \w done|strong="H6213"\w* \w for|strong="H5921"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*. +\c 6 +\p +\v 1 \w Now|strong="H1961"\w* \w when|strong="H3588"\w* \w it|strong="H1931"\w* \w was|strong="H1961"\w* \w reported|strong="H8085"\w* \w to|strong="H5704"\w* \w Sanballat|strong="H5571"\w*, \w Tobiah|strong="H2900"\w*, \w Geshem|strong="H1654"\w* \w the|strong="H8085"\w* \w Arabian|strong="H6163"\w*, \w and|strong="H8085"\w* \w to|strong="H5704"\w* \w the|strong="H8085"\w* \w rest|strong="H3499"\w* \w of|strong="H8179"\w* \w our|strong="H8085"\w* enemies \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w had|strong="H1961"\w* \w built|strong="H1129"\w* \w the|strong="H8085"\w* \w wall|strong="H2346"\w*, \w and|strong="H8085"\w* \w that|strong="H3588"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w breach|strong="H6556"\w* \w left|strong="H3498"\w* \w in|strong="H8085"\w* \w it|strong="H1931"\w* (\w though|strong="H3588"\w* \w even|strong="H1571"\w* \w to|strong="H5704"\w* \w that|strong="H3588"\w* \w time|strong="H6256"\w* \w I|strong="H3588"\w* \w had|strong="H1961"\w* \w not|strong="H3808"\w* \w set|strong="H5975"\w* \w up|strong="H5975"\w* \w the|strong="H8085"\w* \w doors|strong="H1817"\w* \w in|strong="H8085"\w* \w the|strong="H8085"\w* \w gates|strong="H8179"\w*), +\v 2 \w Sanballat|strong="H5571"\w* \w and|strong="H7971"\w* \w Geshem|strong="H1654"\w* \w sent|strong="H7971"\w* \w to|strong="H3212"\w* \w me|strong="H7971"\w*, saying, “\w Come|strong="H3212"\w*! \w Let|strong="H7971"\w*’s \w meet|strong="H3259"\w* \w together|strong="H3162"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w villages|strong="H3715"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w plain|strong="H1237"\w* \w of|strong="H1237"\w* Ono.” \w But|strong="H1992"\w* \w they|strong="H1992"\w* \w intended|strong="H2803"\w* \w to|strong="H3212"\w* \w harm|strong="H7451"\w* \w me|strong="H7971"\w*. +\p +\v 3 \w I|strong="H5921"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H3381"\w* \w them|strong="H5921"\w*, saying, “\w I|strong="H5921"\w* am \w doing|strong="H6213"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w work|strong="H4399"\w*, \w so|strong="H6213"\w* \w that|strong="H4397"\w* \w I|strong="H5921"\w* \w can|strong="H3201"\w*’t \w come|strong="H3381"\w* \w down|strong="H3381"\w*. \w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w the|strong="H5921"\w* \w work|strong="H4399"\w* \w cease|strong="H7673"\w* \w while|strong="H5921"\w* \w I|strong="H5921"\w* \w leave|strong="H7503"\w* \w it|strong="H5921"\w* \w and|strong="H7971"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w you|strong="H7971"\w*?” +\p +\v 4 \w They|strong="H1697"\w* \w sent|strong="H7971"\w* \w to|strong="H7725"\w* \w me|strong="H7971"\w* four \w times|strong="H6471"\w* \w like|strong="H1697"\w* \w this|strong="H2088"\w*; \w and|strong="H7971"\w* \w I|strong="H1697"\w* \w answered|strong="H7725"\w* \w them|strong="H7725"\w* \w the|strong="H7725"\w* \w same|strong="H2088"\w* \w way|strong="H1697"\w*. +\v 5 \w Then|strong="H2088"\w* \w Sanballat|strong="H5571"\w* \w sent|strong="H7971"\w* \w his|strong="H7971"\w* \w servant|strong="H5288"\w* \w to|strong="H7971"\w* \w me|strong="H7971"\w* \w the|strong="H7971"\w* \w same|strong="H2088"\w* \w way|strong="H1697"\w* \w the|strong="H7971"\w* \w fifth|strong="H2549"\w* \w time|strong="H6471"\w* \w with|strong="H1697"\w* \w an|strong="H7971"\w* \w open|strong="H6605"\w* letter \w in|strong="H1697"\w* \w his|strong="H7971"\w* \w hand|strong="H3027"\w*, +\v 6 \w in|strong="H5921"\w* \w which|strong="H1471"\w* \w was|strong="H1697"\w* \w written|strong="H3789"\w*, “\w It|strong="H5921"\w* \w is|strong="H1697"\w* \w reported|strong="H8085"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*, \w and|strong="H4428"\w* \w Gashmu|strong="H1654"\w* \w says|strong="H1697"\w* \w it|strong="H5921"\w*, \w that|strong="H8085"\w* \w you|strong="H5921"\w* \w and|strong="H4428"\w* \w the|strong="H5921"\w* \w Jews|strong="H3064"\w* \w intend|strong="H2803"\w* \w to|strong="H5921"\w* \w rebel|strong="H4775"\w*. \w Because|strong="H5921"\w* \w of|strong="H4428"\w* \w that|strong="H8085"\w*, \w you|strong="H5921"\w* \w are|strong="H1471"\w* \w building|strong="H1129"\w* \w the|strong="H5921"\w* \w wall|strong="H2346"\w*. \w You|strong="H5921"\w* \w would|strong="H1697"\w* \w be|strong="H1697"\w* \w their|strong="H8085"\w* \w king|strong="H4428"\w*, \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w these|strong="H8085"\w* \w words|strong="H1697"\w*. +\v 7 \w You|strong="H5921"\w* \w have|strong="H1571"\w* \w also|strong="H1571"\w* \w appointed|strong="H5975"\w* \w prophets|strong="H5030"\w* \w to|strong="H3212"\w* \w proclaim|strong="H7121"\w* \w of|strong="H4428"\w* \w you|strong="H5921"\w* \w at|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, \w saying|strong="H1697"\w*, ‘\w There|strong="H5975"\w* \w is|strong="H1571"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w in|strong="H5921"\w* \w Judah|strong="H3063"\w*!’ \w Now|strong="H6258"\w* \w it|strong="H7121"\w* \w will|strong="H4428"\w* \w be|strong="H1697"\w* \w reported|strong="H8085"\w* \w to|strong="H3212"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w according|strong="H5921"\w* \w to|strong="H3212"\w* \w these|strong="H7121"\w* \w words|strong="H1697"\w*. \w Come|strong="H3212"\w* \w now|strong="H6258"\w* \w therefore|strong="H5921"\w*, \w and|strong="H3063"\w* \w let|strong="H6258"\w*’s \w take|strong="H5975"\w* \w counsel|strong="H3289"\w* \w together|strong="H3162"\w*.” +\p +\v 8 \w Then|strong="H1961"\w* \w I|strong="H3588"\w* \w sent|strong="H7971"\w* \w to|strong="H7971"\w* \w him|strong="H7971"\w*, \w saying|strong="H1697"\w*, “\w There|strong="H1961"\w* \w are|strong="H1697"\w* \w no|strong="H3808"\w* \w such|strong="H1697"\w* \w things|strong="H1697"\w* \w done|strong="H1961"\w* \w as|strong="H1697"\w* \w you|strong="H3588"\w* \w say|strong="H1697"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* imagine \w them|strong="H7971"\w* \w out|strong="H7971"\w* \w of|strong="H1697"\w* \w your|strong="H3588"\w* \w own|strong="H1961"\w* \w heart|strong="H3820"\w*.” +\v 9 \w For|strong="H3588"\w* \w they|strong="H3588"\w* \w all|strong="H3605"\w* \w would|strong="H6213"\w* \w have|strong="H3027"\w* \w made|strong="H6213"\w* \w us|strong="H6213"\w* \w afraid|strong="H3372"\w*, saying, “\w Their|strong="H3605"\w* \w hands|strong="H3027"\w* \w will|strong="H3027"\w* \w be|strong="H3808"\w* \w weakened|strong="H7503"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w work|strong="H4399"\w*, \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w done|strong="H6213"\w*.” \w But|strong="H3588"\w* \w now|strong="H6258"\w*, \w strengthen|strong="H2388"\w* \w my|strong="H3605"\w* \w hands|strong="H3027"\w*. +\p +\v 10 \w I|strong="H3588"\w* \w went|strong="H1121"\w* \w to|strong="H1121"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Shemaiah|strong="H8098"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Delaiah|strong="H1806"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Mehetabel|strong="H4105"\w*, \w who|strong="H1931"\w* \w was|strong="H1931"\w* \w shut|strong="H5462"\w* \w in|strong="H1004"\w* \w at|strong="H1004"\w* \w his|strong="H3588"\w* \w home|strong="H1004"\w*; \w and|strong="H1121"\w* \w he|strong="H1931"\w* said, “Let \w us|strong="H3588"\w* \w meet|strong="H3259"\w* \w together|strong="H3259"\w* \w in|strong="H1004"\w* God’s \w house|strong="H1004"\w*, \w within|strong="H8432"\w* \w the|strong="H3588"\w* \w temple|strong="H1004"\w*, \w and|strong="H1121"\w* let’s \w shut|strong="H5462"\w* \w the|strong="H3588"\w* \w doors|strong="H1817"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w temple|strong="H1004"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H1121"\w* come \w to|strong="H1121"\w* \w kill|strong="H2026"\w* \w you|strong="H3588"\w*. \w Yes|strong="H3588"\w*, \w in|strong="H1004"\w* \w the|strong="H3588"\w* \w night|strong="H3915"\w* \w they|strong="H3588"\w* \w will|strong="H1121"\w* come \w to|strong="H1121"\w* \w kill|strong="H2026"\w* \w you|strong="H3588"\w*.” +\p +\v 11 \w I|strong="H3808"\w* said, “\w Should|strong="H4310"\w* \w a|strong="H3068"\w* man \w like|strong="H3644"\w* \w me|strong="H3808"\w* \w flee|strong="H1272"\w*? \w Who|strong="H4310"\w* \w is|strong="H4310"\w* there \w that|strong="H3808"\w*, being \w such|strong="H3644"\w* \w as|strong="H3644"\w* \w I|strong="H3808"\w*, \w would|strong="H4310"\w* go \w into|strong="H1272"\w* \w the|strong="H3808"\w* \w temple|strong="H1964"\w* \w to|strong="H1272"\w* save \w his|strong="H3808"\w* \w life|strong="H2425"\w*? \w I|strong="H3808"\w* \w will|strong="H4310"\w* \w not|strong="H3808"\w* go \w in|strong="H3808"\w*.” +\v 12 \w I|strong="H3588"\w* \w discerned|strong="H5234"\w*, \w and|strong="H7971"\w* \w behold|strong="H2009"\w*, \w God|strong="H3808"\w* \w had|strong="H3588"\w* \w not|strong="H3808"\w* \w sent|strong="H7971"\w* \w him|strong="H5921"\w*, \w but|strong="H3588"\w* \w he|strong="H3588"\w* \w pronounced|strong="H1696"\w* \w this|strong="H1696"\w* \w prophecy|strong="H5016"\w* \w against|strong="H5921"\w* \w me|strong="H7971"\w*. \w Tobiah|strong="H2900"\w* \w and|strong="H7971"\w* \w Sanballat|strong="H5571"\w* \w had|strong="H3588"\w* \w hired|strong="H7936"\w* \w him|strong="H5921"\w*. +\v 13 \w He|strong="H1931"\w* \w was|strong="H8034"\w* \w hired|strong="H7936"\w* \w so|strong="H3651"\w* \w that|strong="H1931"\w* \w I|strong="H3651"\w* \w would|strong="H6213"\w* \w be|strong="H1961"\w* \w afraid|strong="H3372"\w*, \w do|strong="H6213"\w* \w so|strong="H3651"\w*, \w and|strong="H6213"\w* \w sin|strong="H2398"\w*, \w and|strong="H6213"\w* \w that|strong="H1931"\w* \w they|strong="H1992"\w* \w might|strong="H4616"\w* \w have|strong="H1961"\w* material \w for|strong="H6213"\w* \w an|strong="H6213"\w* \w evil|strong="H7451"\w* \w report|strong="H8034"\w*, \w that|strong="H1931"\w* \w they|strong="H1992"\w* \w might|strong="H4616"\w* \w reproach|strong="H2778"\w* \w me|strong="H6213"\w*. +\v 14 “\w Remember|strong="H2142"\w*, \w my|strong="H1961"\w* God, \w Tobiah|strong="H2900"\w* \w and|strong="H3372"\w* \w Sanballat|strong="H5571"\w* according \w to|strong="H1961"\w* \w these|strong="H2142"\w* \w their|strong="H2142"\w* \w works|strong="H4639"\w*, \w and|strong="H3372"\w* \w also|strong="H1571"\w* \w the|strong="H2142"\w* \w prophetess|strong="H5031"\w* \w Noadiah|strong="H5129"\w* \w and|strong="H3372"\w* \w the|strong="H2142"\w* \w rest|strong="H3499"\w* \w of|strong="H4639"\w* \w the|strong="H2142"\w* \w prophets|strong="H5030"\w* \w that|strong="H5030"\w* \w would|strong="H4639"\w* \w have|strong="H1961"\w* \w put|strong="H2142"\w* \w me|strong="H3372"\w* \w in|strong="H1961"\w* \w fear|strong="H3372"\w*.” +\p +\v 15 So \w the|strong="H3117"\w* \w wall|strong="H2346"\w* \w was|strong="H3117"\w* \w finished|strong="H7999"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w twenty-fifth|strong="H6242"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* Elul, \w in|strong="H3117"\w* \w fifty-two|strong="H2572"\w* \w days|strong="H3117"\w*. +\v 16 \w When|strong="H3588"\w* \w all|strong="H3605"\w* \w our|strong="H3605"\w* enemies \w heard|strong="H8085"\w* \w of|strong="H5869"\w* \w it|strong="H3588"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w that|strong="H3588"\w* \w were|strong="H1961"\w* \w around|strong="H5439"\w* \w us|strong="H6213"\w* \w were|strong="H1961"\w* afraid, \w and|strong="H5869"\w* \w they|strong="H3588"\w* \w lost|strong="H5307"\w* \w their|strong="H3605"\w* \w confidence|strong="H5869"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w perceived|strong="H3045"\w* \w that|strong="H3588"\w* \w this|strong="H2063"\w* \w work|strong="H4399"\w* \w was|strong="H1961"\w* \w done|strong="H6213"\w* \w by|strong="H1961"\w* \w our|strong="H3605"\w* God. +\v 17 \w Moreover|strong="H1571"\w* \w in|strong="H5921"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w* \w the|strong="H5921"\w* \w nobles|strong="H2715"\w* \w of|strong="H3117"\w* \w Judah|strong="H3063"\w* \w sent|strong="H1980"\w* \w many|strong="H7235"\w* letters \w to|strong="H1980"\w* \w Tobiah|strong="H2900"\w*, \w and|strong="H1980"\w* \w Tobiah|strong="H2900"\w*’s letters \w came|strong="H1980"\w* \w to|strong="H1980"\w* \w them|strong="H1992"\w*. +\v 18 \w For|strong="H3588"\w* there \w were|strong="H1121"\w* \w many|strong="H7227"\w* \w in|strong="H7227"\w* \w Judah|strong="H3063"\w* \w sworn|strong="H7621"\w* \w to|strong="H1121"\w* \w him|strong="H3947"\w* \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w the|strong="H3588"\w* \w son-in-law|strong="H2860"\w* \w of|strong="H1121"\w* \w Shecaniah|strong="H7935"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Arah; \w and|strong="H1121"\w* \w his|strong="H3947"\w* \w son|strong="H1121"\w* \w Jehohanan|strong="H3076"\w* \w had|strong="H3063"\w* \w taken|strong="H3947"\w* \w the|strong="H3588"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Meshullam|strong="H4918"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Berechiah|strong="H1296"\w* \w as|strong="H3588"\w* wife. +\v 19 \w Also|strong="H1571"\w* \w they|strong="H1697"\w* \w spoke|strong="H1697"\w* \w of|strong="H1697"\w* \w his|strong="H7971"\w* \w good|strong="H2896"\w* \w deeds|strong="H1697"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*, \w and|strong="H7971"\w* \w reported|strong="H3318"\w* \w my|strong="H7971"\w* \w words|strong="H1697"\w* \w to|strong="H3318"\w* \w him|strong="H6440"\w*. \w Tobiah|strong="H2900"\w* \w sent|strong="H7971"\w* letters \w to|strong="H3318"\w* \w put|strong="H7971"\w* \w me|strong="H6440"\w* \w in|strong="H6440"\w* \w fear|strong="H3372"\w*. +\c 7 +\p +\v 1 \w Now|strong="H1961"\w* \w when|strong="H1961"\w* \w the|strong="H1129"\w* \w wall|strong="H2346"\w* \w was|strong="H1961"\w* \w built|strong="H1129"\w* \w and|strong="H5975"\w* \w I|strong="H7891"\w* \w had|strong="H1961"\w* \w set|strong="H5975"\w* \w up|strong="H5975"\w* \w the|strong="H1129"\w* \w doors|strong="H1817"\w*, \w and|strong="H5975"\w* \w the|strong="H1129"\w* \w gatekeepers|strong="H7778"\w* \w and|strong="H5975"\w* \w the|strong="H1129"\w* \w singers|strong="H7891"\w* \w and|strong="H5975"\w* \w the|strong="H1129"\w* \w Levites|strong="H3881"\w* \w were|strong="H1961"\w* \w appointed|strong="H5975"\w*, +\v 2 \w I|strong="H3588"\w* \w put|strong="H6680"\w* \w my|strong="H5921"\w* brother \w Hanani|strong="H2607"\w*, \w and|strong="H3389"\w* \w Hananiah|strong="H2608"\w* \w the|strong="H5921"\w* \w governor|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H5921"\w* \w fortress|strong="H1002"\w*, \w in|strong="H5921"\w* \w charge|strong="H5921"\w* \w of|strong="H8269"\w* \w Jerusalem|strong="H3389"\w*; \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w a|strong="H3068"\w* faithful man \w and|strong="H3389"\w* \w feared|strong="H3372"\w* God \w above|strong="H5921"\w* \w many|strong="H7227"\w*. +\v 3 \w I|strong="H5704"\w* said \w to|strong="H5704"\w* \w them|strong="H1992"\w*, “Don’t \w let|strong="H3808"\w* \w the|strong="H5704"\w* \w gates|strong="H8179"\w* \w of|strong="H1004"\w* \w Jerusalem|strong="H3389"\w* \w be|strong="H3808"\w* \w opened|strong="H6605"\w* \w until|strong="H5704"\w* \w the|strong="H5704"\w* \w sun|strong="H8121"\w* \w is|strong="H1004"\w* \w hot|strong="H2527"\w*; \w and|strong="H1004"\w* \w while|strong="H5704"\w* \w they|strong="H1992"\w* \w stand|strong="H5975"\w* \w guard|strong="H4929"\w*, \w let|strong="H3808"\w* \w them|strong="H1992"\w* \w shut|strong="H1479"\w* \w the|strong="H5704"\w* \w doors|strong="H1817"\w*, \w and|strong="H1004"\w* \w you|strong="H5704"\w* bar \w them|strong="H1992"\w*; \w and|strong="H1004"\w* \w appoint|strong="H5975"\w* \w watches|strong="H4931"\w* \w of|strong="H1004"\w* \w the|strong="H5704"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1004"\w* \w Jerusalem|strong="H3389"\w*, everyone \w in|strong="H3427"\w* \w his|strong="H6605"\w* \w watch|strong="H4931"\w*, \w with|strong="H1004"\w* everyone \w near|strong="H5048"\w* \w his|strong="H6605"\w* \w house|strong="H1004"\w*.” +\p +\v 4 \w Now|strong="H1419"\w* \w the|strong="H8432"\w* \w city|strong="H5892"\w* \w was|strong="H5892"\w* \w wide|strong="H7342"\w* \w and|strong="H1419"\w* \w large|strong="H1419"\w*; \w but|strong="H5971"\w* \w the|strong="H8432"\w* \w people|strong="H5971"\w* \w were|strong="H5971"\w* \w few|strong="H4592"\w* \w therein|strong="H8432"\w*, \w and|strong="H1419"\w* \w the|strong="H8432"\w* \w houses|strong="H1004"\w* \w were|strong="H5971"\w* \w not|strong="H5971"\w* \w built|strong="H1129"\w*. +\p +\v 5 \w My|strong="H5414"\w* \w God|strong="H5414"\w* \w put|strong="H5414"\w* \w into|strong="H5927"\w* \w my|strong="H5414"\w* \w heart|strong="H3820"\w* \w to|strong="H5927"\w* \w gather|strong="H6908"\w* \w together|strong="H6908"\w* \w the|strong="H5414"\w* \w nobles|strong="H2715"\w*, \w and|strong="H5971"\w* \w the|strong="H5414"\w* \w rulers|strong="H5461"\w*, \w and|strong="H5971"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w*, \w that|strong="H5971"\w* \w they|strong="H5971"\w* \w might|strong="H5971"\w* \w be|strong="H3820"\w* \w listed|strong="H3187"\w* \w by|strong="H3187"\w* \w genealogy|strong="H3187"\w*. \w I|strong="H5414"\w* \w found|strong="H4672"\w* \w the|strong="H5414"\w* \w book|strong="H5612"\w* \w of|strong="H5971"\w* \w the|strong="H5414"\w* \w genealogy|strong="H3187"\w* \w of|strong="H5971"\w* those \w who|strong="H5971"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w at|strong="H6908"\w* \w the|strong="H5414"\w* \w first|strong="H7223"\w*, \w and|strong="H5971"\w* \w I|strong="H5414"\w* \w found|strong="H4672"\w* \w this|strong="H5414"\w* \w written|strong="H3789"\w* \w in|strong="H3789"\w* \w it|strong="H5414"\w*: +\p +\v 6 \w These|strong="H4428"\w* \w are|strong="H1121"\w* \w the|strong="H7725"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H7725"\w* \w province|strong="H4082"\w* \w who|strong="H1121"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H7725"\w* \w of|strong="H1121"\w* \w the|strong="H7725"\w* \w captivity|strong="H7628"\w* \w of|strong="H1121"\w* \w those|strong="H1121"\w* \w who|strong="H1121"\w* \w had|strong="H4428"\w* \w been|strong="H5927"\w* \w carried|strong="H1540"\w* \w away|strong="H7725"\w*, whom \w Nebuchadnezzar|strong="H5019"\w* \w the|strong="H7725"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon \w had|strong="H4428"\w* \w carried|strong="H1540"\w* \w away|strong="H7725"\w*, \w and|strong="H1121"\w* \w who|strong="H1121"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H1121"\w* \w to|strong="H7725"\w* \w Judah|strong="H3063"\w*, everyone \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w city|strong="H5892"\w*, +\v 7 \w who|strong="H5971"\w* \w came|strong="H3478"\w* \w with|strong="H5973"\w* \w Zerubbabel|strong="H2216"\w*, \w Jeshua|strong="H3442"\w*, \w Nehemiah|strong="H5166"\w*, \w Azariah|strong="H5838"\w*, \w Raamiah|strong="H7485"\w*, \w Nahamani|strong="H5167"\w*, \w Mordecai|strong="H4782"\w*, \w Bilshan|strong="H1114"\w*, \w Mispereth|strong="H4559"\w*, Bigvai, \w Nehum|strong="H5149"\w*, \w and|strong="H3478"\w* \w Baanah|strong="H1196"\w*. +\p \w The|strong="H5973"\w* \w number|strong="H4557"\w* \w of|strong="H4557"\w* \w the|strong="H5973"\w* \w men|strong="H5971"\w* \w of|strong="H4557"\w* \w the|strong="H5973"\w* \w people|strong="H5971"\w* \w of|strong="H4557"\w* \w Israel|strong="H3478"\w*: +\li1 +\v 8 The children of Parosh: two thousand one hundred seventy-two. +\li1 +\v 9 The children of Shephatiah: three hundred seventy-two. +\li1 +\v 10 The children of Arah: six hundred fifty-two. +\li1 +\v 11 The children of Pahathmoab, of the children of Jeshua and Joab: two thousand eight hundred eighteen. +\li1 +\v 12 The children of Elam: one thousand two hundred fifty-four. +\li1 +\v 13 The children of Zattu: eight hundred forty-five. +\li1 +\v 14 The children of Zaccai: seven hundred sixty. +\li1 +\v 15 The children of Binnui: six hundred forty-eight. +\li1 +\v 16 The children of Bebai: six hundred twenty-eight. +\li1 +\v 17 The children of Azgad: two thousand three hundred twenty-two. +\li1 +\v 18 The children of Adonikam: six hundred sixty-seven. +\li1 +\v 19 The children of Bigvai: two thousand sixty-seven. +\li1 +\v 20 The children of Adin: six hundred fifty-five. +\li1 +\v 21 The children of Ater: of Hezekiah, ninety-eight. +\li1 +\v 22 The children of Hashum: three hundred twenty-eight. +\li1 +\v 23 The children of Bezai: three hundred twenty-four. +\li1 +\v 24 The children of Hariph: one hundred twelve. +\li1 +\v 25 The children of Gibeon: ninety-five. +\li1 +\v 26 The men of Bethlehem and Netophah: one hundred eighty-eight. +\li1 +\v 27 The men of Anathoth: one hundred twenty-eight. +\li1 +\v 28 The men of Beth Azmaveth: forty-two. +\li1 +\v 29 The men of Kiriath Jearim, Chephirah, and Beeroth: seven hundred forty-three. +\li1 +\v 30 The men of Ramah and Geba: six hundred twenty-one. +\li1 +\v 31 The men of Michmas: one hundred twenty-two. +\li1 +\v 32 The men of Bethel and Ai: one hundred twenty-three. +\li1 +\v 33 The men of the other Nebo: fifty-two. +\li1 +\v 34 The children of the other Elam: one thousand two hundred fifty-four. +\li1 +\v 35 The children of Harim: three hundred twenty. +\li1 +\v 36 The children of Jericho: three hundred forty-five. +\li1 +\v 37 The children of Lod, Hadid, and Ono: seven hundred twenty-one. +\li1 +\v 38 The children of Senaah: three thousand nine hundred thirty. +\b +\li1 +\v 39 The priests: The children of Jedaiah, of the house of Jeshua: nine hundred seventy-three. +\li1 +\v 40 The children of Immer: one thousand fifty-two. +\li1 +\v 41 The children of Pashhur: one thousand two hundred forty-seven. +\li1 +\v 42 The children of Harim: one thousand seventeen. +\b +\li1 +\v 43 The Levites: the children of Jeshua, of Kadmiel, of the children of Hodevah: seventy-four. +\li1 +\v 44 The singers: the children of Asaph: one hundred forty-eight. +\li1 +\v 45 The gatekeepers: the children of Shallum, the children of Ater, the children of Talmon, the children of Akkub, the children of Hatita, the children of Shobai: one hundred thirty-eight. +\p +\v 46 \w The|strong="H1121"\w* \w temple|strong="H5411"\w* \w servants|strong="H5411"\w*: \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ziha|strong="H6727"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hasupha|strong="H2817"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Tabbaoth|strong="H2884"\w*, +\v 47 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Keros|strong="H7026"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Sia|strong="H5517"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Padon|strong="H6303"\w*, +\v 48 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Lebana|strong="H3838"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hagaba|strong="H2286"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Salmai, +\v 49 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hanan|strong="H2605"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Giddel|strong="H1435"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gahar|strong="H1515"\w*, +\v 50 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Reaiah|strong="H7211"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Rezin|strong="H7526"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Nekoda|strong="H5353"\w*, +\v 51 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Gazzam|strong="H1502"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Uzza|strong="H5798"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Paseah|strong="H6454"\w*, +\v 52 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Besai|strong="H1153"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Meunim|strong="H4586"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Nephushesim, +\v 53 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Bakbuk|strong="H1227"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hakupha|strong="H2709"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Harhur|strong="H2744"\w*, +\v 54 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Bazlith|strong="H1213"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Mehida|strong="H4240"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Harsha|strong="H2797"\w*, +\v 55 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Barkos|strong="H1302"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Sisera|strong="H5516"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Temah|strong="H8547"\w*, +\v 56 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Neziah|strong="H5335"\w*, \w and|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hatipha|strong="H2412"\w*. +\p +\v 57 \w The|strong="H5650"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w*’s \w servants|strong="H5650"\w*: \w the|strong="H5650"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Sotai|strong="H5479"\w*, \w the|strong="H5650"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Sophereth|strong="H5618"\w*, \w the|strong="H5650"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Perida|strong="H6514"\w*, +\v 58 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Jaala|strong="H3279"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Darkon|strong="H1874"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Giddel|strong="H1435"\w*, +\v 59 \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Shephatiah|strong="H8203"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Hattil|strong="H2411"\w*, \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Pochereth Hazzebaim, \w and|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Amon. +\v 60 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w temple|strong="H5411"\w* \w servants|strong="H5650"\w* \w and|strong="H3967"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w*’s \w servants|strong="H5650"\w* \w were|strong="H1121"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* ninety-two. +\p +\v 61 \w These|strong="H1992"\w* \w were|strong="H3478"\w* \w those|strong="H1992"\w* \w who|strong="H3478"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5927"\w* Tel Melah, Tel Harsha, \w Cherub|strong="H3743"\w*, Addon, \w and|strong="H3478"\w* Immer; \w but|strong="H3808"\w* \w they|strong="H1992"\w* \w could|strong="H3201"\w* \w not|strong="H3808"\w* \w show|strong="H5046"\w* \w their|strong="H1992"\w* fathers’ \w houses|strong="H1004"\w*, \w nor|strong="H3808"\w* \w their|strong="H1992"\w* \w offspring|strong="H2233"\w*,\f + \fr 7:61 \ft or, seed\f* whether \w they|strong="H1992"\w* \w were|strong="H3478"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*: +\li1 +\v 62 The children of Delaiah, the children of Tobiah, the children of Nekoda: six hundred forty-two. +\li1 +\v 63 Of the priests: the children of Hobaiah, the children of Hakkoz, the children of Barzillai, who took a wife of the daughters of Barzillai the Gileadite, and was called after their name. +\p +\v 64 These \w searched|strong="H1245"\w* \w for|strong="H1245"\w* \w their|strong="H1245"\w* \w genealogical|strong="H3187"\w* records, \w but|strong="H3808"\w* couldn’t \w find|strong="H4672"\w* \w them|strong="H4672"\w*. Therefore \w they|strong="H3808"\w* \w were|strong="H4672"\w* deemed disqualified \w and|strong="H4480"\w* \w removed|strong="H4480"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w priesthood|strong="H3550"\w*. +\v 65 \w The|strong="H5704"\w* \w governor|strong="H8660"\w* told \w them|strong="H5975"\w* \w not|strong="H3808"\w* \w to|strong="H5704"\w* eat \w of|strong="H3548"\w* \w the|strong="H5704"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w* \w until|strong="H5704"\w* \w a|strong="H3068"\w* \w priest|strong="H3548"\w* \w stood|strong="H5975"\w* \w up|strong="H5975"\w* \w to|strong="H5704"\w* minister \w with|strong="H3548"\w* Urim \w and|strong="H3548"\w* \w Thummim|strong="H8550"\w*. +\p +\v 66 \w The|strong="H3605"\w* \w whole|strong="H3605"\w* \w assembly|strong="H6951"\w* \w together|strong="H6951"\w* \w was|strong="H3605"\w* forty-two \w thousand|strong="H7239"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w sixty|strong="H8346"\w*, +\v 67 \w in|strong="H5650"\w* addition \w to|strong="H5650"\w* their \w male|strong="H5650"\w* \w servants|strong="H5650"\w* \w and|strong="H3967"\w* their female \w servants|strong="H5650"\w*, \w of|strong="H5650"\w* whom there \w were|strong="H5650"\w* \w seven|strong="H7651"\w* thousand \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w thirty-seven|strong="H7970"\w*. They \w had|strong="H7891"\w* \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* forty-five \w singing|strong="H7891"\w* \w men|strong="H5650"\w* \w and|strong="H3967"\w* \w singing|strong="H7891"\w* \w women|strong="H7891"\w*. +\v 68 Their horses \w were|strong="H1581"\w* \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* \w thirty-six|strong="H7970"\w*; their mules, \w two|strong="H2543"\w* \w hundred|strong="H3967"\w* forty-five; +\v 69 \w their|strong="H5414"\w* camels, four \w hundred|strong="H3967"\w* \w thirty-five|strong="H7970"\w*; \w their|strong="H5414"\w* donkeys, six thousand seven \w hundred|strong="H3967"\w* twenty. +\p +\v 70 Some \w from|strong="H2091"\w* \w among|strong="H7218"\w* \w the|strong="H5414"\w* \w heads|strong="H7218"\w* \w of|strong="H7218"\w* fathers’ households \w gave|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w work|strong="H4399"\w*. \w The|strong="H5414"\w* governor \w gave|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* treasury \w one|strong="H3967"\w* \w thousand|strong="H7239"\w* darics \w of|strong="H7218"\w* \w gold|strong="H2091"\w*,\f + \fr 7:70 \ft a daric was a gold coin issued by a Persian king, weighing about 8.4 grams or about 0.27 troy ounces each.\f* fifty basins, \w and|strong="H3967"\w* five \w hundred|strong="H3967"\w* thirty priests’ garments. +\v 71 \w Some|strong="H5971"\w* \w of|strong="H7611"\w* \w the|strong="H5414"\w* heads \w of|strong="H7611"\w* fathers’ households \w gave|strong="H5414"\w* \w into|strong="H3701"\w* \w the|strong="H5414"\w* treasury \w of|strong="H7611"\w* \w the|strong="H5414"\w* \w work|strong="H5414"\w* \w twenty|strong="H8147"\w* \w thousand|strong="H7239"\w* darics \w of|strong="H7611"\w* \w gold|strong="H2091"\w*, \w and|strong="H3701"\w* \w two|strong="H8147"\w* \w thousand|strong="H7239"\w* \w two|strong="H8147"\w* hundred \w minas|strong="H4488"\w*\f + \fr 7:71 \ft A mina is about 600 grams or 1.3 U. S. pounds, so 2,200 minas is about 1.3 metric tons.\f* \w of|strong="H7611"\w* \w silver|strong="H3701"\w*. +\v 72 \w That|strong="H5971"\w* \w which|strong="H5971"\w* \w the|strong="H3605"\w* rest \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* gave \w was|strong="H3478"\w* twenty thousand darics \w of|strong="H1121"\w* gold, plus \w two|strong="H4480"\w* thousand minas \w of|strong="H1121"\w* silver, \w and|strong="H1121"\w* sixty-seven \w priests|strong="H3548"\w*’ garments. +\p +\v 73 So the priests, the Levites, the gatekeepers, the singers, some of the people, the temple servants, and all Israel lived in their cities. +\p When the seventh month had come, the children of Israel were in their cities. +\c 8 +\p +\v 1 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w gathered|strong="H3478"\w* \w themselves|strong="H6440"\w* \w together|strong="H5971"\w* \w as|strong="H3068"\w* \w one|strong="H3605"\w* \w man|strong="H3605"\w* \w into|strong="H4325"\w* \w the|strong="H3605"\w* wide \w place|strong="H3605"\w* \w that|strong="H5971"\w* \w was|strong="H3068"\w* \w in|strong="H3478"\w* \w front|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w water|strong="H4325"\w* \w gate|strong="H8179"\w*; \w and|strong="H4872"\w* \w they|strong="H3068"\w* spoke \w to|strong="H3478"\w* \w Ezra|strong="H5830"\w* \w the|strong="H3605"\w* \w scribe|strong="H5608"\w* \w to|strong="H3478"\w* bring \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w of|strong="H3068"\w* \w Moses|strong="H4872"\w*, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w commanded|strong="H6680"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\v 2 \w Ezra|strong="H5830"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w brought|strong="H3548"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w*, \w both|strong="H3605"\w* \w men|strong="H3605"\w* \w and|strong="H3117"\w* women, \w and|strong="H3117"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* could \w hear|strong="H8085"\w* \w with|strong="H6440"\w* \w understanding|strong="H8085"\w*, \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w first|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w*. +\v 3 \w He|strong="H3117"\w* \w read|strong="H7121"\w* \w from|strong="H4480"\w* \w it|strong="H7121"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* wide \w place|strong="H3605"\w* \w that|strong="H5971"\w* \w was|strong="H3117"\w* \w in|strong="H3117"\w* \w front|strong="H6440"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w water|strong="H4325"\w* \w gate|strong="H8179"\w* \w from|strong="H4480"\w* early morning \w until|strong="H5704"\w* \w midday|strong="H4276"\w*, \w in|strong="H3117"\w* \w the|strong="H3605"\w* \w presence|strong="H6440"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w men|strong="H5971"\w* \w and|strong="H3117"\w* \w the|strong="H3605"\w* women, \w and|strong="H3117"\w* \w of|strong="H3117"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w could|strong="H5971"\w* understand. \w The|strong="H3605"\w* ears \w of|strong="H3117"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w were|strong="H5971"\w* attentive \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w*. +\v 4 \w Ezra|strong="H5830"\w* \w the|strong="H5921"\w* \w scribe|strong="H5608"\w* \w stood|strong="H5975"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w pulpit|strong="H4026"\w* \w of|strong="H1697"\w* \w wood|strong="H6086"\w*, \w which|strong="H1697"\w* \w they|strong="H5921"\w* \w had|strong="H5830"\w* \w made|strong="H6213"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w purpose|strong="H1697"\w*; \w and|strong="H6086"\w* \w beside|strong="H5921"\w* \w him|strong="H5921"\w* \w stood|strong="H5975"\w* \w Mattithiah|strong="H4993"\w*, \w Shema|strong="H8087"\w*, \w Anaiah|strong="H6043"\w*, Uriah, \w Hilkiah|strong="H2518"\w*, \w and|strong="H6086"\w* \w Maaseiah|strong="H4641"\w*, \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w*; \w and|strong="H6086"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w left|strong="H8040"\w* \w hand|strong="H3225"\w*, \w Pedaiah|strong="H6305"\w*, \w Mishael|strong="H4332"\w*, \w Malchijah|strong="H4441"\w*, \w Hashum|strong="H2828"\w*, \w Hashbaddanah|strong="H2806"\w*, \w Zechariah|strong="H2148"\w*, \w and|strong="H6086"\w* \w Meshullam|strong="H4918"\w*. +\v 5 \w Ezra|strong="H5830"\w* \w opened|strong="H6605"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H5869"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* (\w for|strong="H3588"\w* \w he|strong="H3588"\w* \w was|strong="H1961"\w* \w above|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*), \w and|strong="H5971"\w* \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w opened|strong="H6605"\w* \w it|strong="H5921"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w stood|strong="H5975"\w* \w up|strong="H5975"\w*. +\v 6 \w Then|strong="H6030"\w* \w Ezra|strong="H5830"\w* \w blessed|strong="H1288"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w great|strong="H1419"\w* \w God|strong="H3068"\w*. +\p \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w answered|strong="H6030"\w*, “Amen, Amen,” \w with|strong="H3068"\w* \w the|strong="H3605"\w* \w lifting|strong="H4607"\w* \w up|strong="H6030"\w* \w of|strong="H3068"\w* \w their|strong="H3605"\w* \w hands|strong="H3027"\w*. \w They|strong="H3068"\w* \w bowed|strong="H7812"\w* \w their|strong="H3605"\w* \w heads|strong="H6915"\w*, \w and|strong="H3068"\w* \w worshiped|strong="H7812"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w their|strong="H3605"\w* faces \w to|strong="H3068"\w* \w the|strong="H3605"\w* ground. +\v 7 \w Also|strong="H5971"\w* \w Jeshua|strong="H3442"\w*, \w Bani|strong="H1137"\w*, \w Sherebiah|strong="H8274"\w*, \w Jamin|strong="H3226"\w*, \w Akkub|strong="H6126"\w*, \w Shabbethai|strong="H7678"\w*, \w Hodiah|strong="H1941"\w*, \w Maaseiah|strong="H4641"\w*, \w Kelita|strong="H7042"\w*, \w Azariah|strong="H5838"\w*, \w Jozabad|strong="H3107"\w*, \w Hanan|strong="H2605"\w*, \w Pelaiah|strong="H6411"\w*, \w and|strong="H5971"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w*, caused \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w to|strong="H5921"\w* understand \w the|strong="H5921"\w* \w law|strong="H8451"\w*; \w and|strong="H5971"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* stayed \w in|strong="H5921"\w* \w their|strong="H5921"\w* \w place|strong="H5977"\w*. +\v 8 \w They|strong="H7760"\w* \w read|strong="H7121"\w* \w in|strong="H7121"\w* \w the|strong="H7760"\w* \w book|strong="H5612"\w*, \w in|strong="H7121"\w* \w the|strong="H7760"\w* \w law|strong="H8451"\w* \w of|strong="H8451"\w* God, \w distinctly|strong="H6567"\w*; \w and|strong="H8451"\w* \w they|strong="H7760"\w* \w gave|strong="H7121"\w* \w the|strong="H7760"\w* \w sense|strong="H7922"\w*, \w so|strong="H7121"\w* \w that|strong="H7121"\w* \w they|strong="H7760"\w* understood \w the|strong="H7760"\w* \w reading|strong="H7121"\w*. +\p +\v 9 \w Nehemiah|strong="H5166"\w*, \w who|strong="H3605"\w* \w was|strong="H3068"\w* \w the|strong="H3605"\w* \w governor|strong="H8660"\w*, \w Ezra|strong="H5830"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w and|strong="H3068"\w* \w scribe|strong="H5608"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w who|strong="H3605"\w* taught \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, “\w Today|strong="H3117"\w* \w is|strong="H3068"\w* \w holy|strong="H6918"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. Don’t \w mourn|strong="H1058"\w*, \w nor|strong="H3117"\w* \w weep|strong="H1058"\w*.” \w For|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w wept|strong="H1058"\w* \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w heard|strong="H8085"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w*. +\v 10 \w Then|strong="H7971"\w* \w he|strong="H1931"\w* said \w to|strong="H3068"\w* \w them|strong="H7971"\w*, “\w Go|strong="H3212"\w* \w your|strong="H3068"\w* \w way|strong="H3212"\w*. Eat \w the|strong="H3588"\w* \w fat|strong="H4924"\w*, \w drink|strong="H8354"\w* \w the|strong="H3588"\w* \w sweet|strong="H4477"\w*, \w and|strong="H3068"\w* \w send|strong="H7971"\w* \w portions|strong="H4490"\w* \w to|strong="H3068"\w* \w him|strong="H7971"\w* \w for|strong="H3588"\w* \w whom|strong="H3588"\w* nothing \w is|strong="H3068"\w* \w prepared|strong="H3559"\w*, \w for|strong="H3588"\w* \w today|strong="H3117"\w* \w is|strong="H3068"\w* \w holy|strong="H6918"\w* \w to|strong="H3068"\w* \w our|strong="H3068"\w* \w Lord|strong="H3068"\w*. Don’t \w be|strong="H3068"\w* \w grieved|strong="H6087"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w joy|strong="H2304"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w your|strong="H3068"\w* \w strength|strong="H4581"\w*.” +\p +\v 11 \w So|strong="H3588"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w calmed|strong="H2814"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, saying, “Hold \w your|strong="H3605"\w* \w peace|strong="H2814"\w*, \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w is|strong="H3117"\w* \w holy|strong="H6918"\w*. Don’t \w be|strong="H3117"\w* \w grieved|strong="H6087"\w*.” +\p +\v 12 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w went|strong="H3212"\w* \w their|strong="H3605"\w* \w way|strong="H3212"\w* \w to|strong="H3212"\w* eat, \w to|strong="H3212"\w* \w drink|strong="H8354"\w*, \w to|strong="H3212"\w* \w send|strong="H7971"\w* \w portions|strong="H4490"\w*, \w and|strong="H7971"\w* \w to|strong="H3212"\w* \w celebrate|strong="H6213"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3588"\w* \w understood|strong="H3045"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w that|strong="H3588"\w* \w were|strong="H5971"\w* \w declared|strong="H3045"\w* \w to|strong="H3212"\w* \w them|strong="H7971"\w*. +\p +\v 13 \w On|strong="H3117"\w* \w the|strong="H3605"\w* \w second|strong="H8145"\w* \w day|strong="H3117"\w*, \w the|strong="H3605"\w* \w heads|strong="H7218"\w* \w of|strong="H3117"\w* fathers’ \w households|strong="H3881"\w* \w of|strong="H3117"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w the|strong="H3605"\w* \w priests|strong="H3548"\w*, \w and|strong="H3117"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w were|strong="H5971"\w* gathered \w together|strong="H5971"\w* \w to|strong="H3117"\w* \w Ezra|strong="H5830"\w* \w the|strong="H3605"\w* \w scribe|strong="H5608"\w*, \w to|strong="H3117"\w* study \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w*. +\v 14 \w They|strong="H3068"\w* \w found|strong="H4672"\w* \w written|strong="H3789"\w* \w in|strong="H3427"\w* \w the|strong="H3068"\w* \w law|strong="H8451"\w* how \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w commanded|strong="H6680"\w* \w by|strong="H3027"\w* \w Moses|strong="H4872"\w* \w that|strong="H3068"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w should|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w booths|strong="H5521"\w* \w in|strong="H3427"\w* \w the|strong="H3068"\w* \w feast|strong="H2282"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w*; +\v 15 \w and|strong="H6086"\w* \w that|strong="H3605"\w* \w they|strong="H6213"\w* \w should|strong="H6213"\w* \w publish|strong="H8085"\w* \w and|strong="H6086"\w* \w proclaim|strong="H8085"\w* \w in|strong="H6213"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w cities|strong="H5892"\w* \w and|strong="H6086"\w* \w in|strong="H6213"\w* \w Jerusalem|strong="H3389"\w*, \w saying|strong="H6963"\w*, “\w Go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w mountain|strong="H2022"\w*, \w and|strong="H6086"\w* \w get|strong="H3318"\w* \w olive|strong="H2132"\w* \w branches|strong="H5929"\w*, \w branches|strong="H5929"\w* \w of|strong="H5892"\w* \w wild|strong="H6213"\w* \w olive|strong="H2132"\w*, \w myrtle|strong="H1918"\w* \w branches|strong="H5929"\w*, \w palm|strong="H8558"\w* \w branches|strong="H5929"\w*, \w and|strong="H6086"\w* \w branches|strong="H5929"\w* \w of|strong="H5892"\w* \w thick|strong="H5687"\w* \w trees|strong="H6086"\w*, \w to|strong="H3318"\w* \w make|strong="H6213"\w* \w temporary|strong="H5521"\w* \w shelters|strong="H5521"\w*,\f + \fr 8:15 \ft or, booths\f* \w as|strong="H6213"\w* \w it|strong="H6213"\w* \w is|strong="H3605"\w* \w written|strong="H3789"\w*.” +\p +\v 16 \w So|strong="H6213"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H1004"\w* \w brought|strong="H3318"\w* \w them|strong="H1992"\w*, \w and|strong="H1004"\w* \w made|strong="H6213"\w* \w themselves|strong="H1992"\w* \w temporary|strong="H5521"\w* \w shelters|strong="H5521"\w*,\f + \fr 8:16 \ft or, booths\f* everyone \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w roof|strong="H1406"\w* \w of|strong="H1004"\w* \w his|strong="H5921"\w* \w house|strong="H1004"\w*, \w in|strong="H5921"\w* \w their|strong="H1992"\w* \w courts|strong="H2691"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w courts|strong="H2691"\w* \w of|strong="H1004"\w* God’s \w house|strong="H1004"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* wide \w place|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w water|strong="H4325"\w* \w gate|strong="H8179"\w*, \w and|strong="H1004"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* wide \w place|strong="H1004"\w* \w of|strong="H1004"\w* Ephraim’s \w gate|strong="H8179"\w*. +\v 17 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w of|strong="H1121"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w had|strong="H1961"\w* \w come|strong="H1961"\w* \w back|strong="H7725"\w* \w out|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w captivity|strong="H7628"\w* \w made|strong="H6213"\w* \w temporary|strong="H5521"\w* \w shelters|strong="H5521"\w*\f + \fr 8:17 \ft or, booths\f* \w and|strong="H1121"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w temporary|strong="H5521"\w* \w shelters|strong="H5521"\w*, \w for|strong="H3588"\w* \w since|strong="H3588"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* Joshua \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nun|strong="H5126"\w* \w to|strong="H5704"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w had|strong="H1961"\w* \w not|strong="H3808"\w* \w done|strong="H6213"\w* \w so|strong="H3651"\w*. \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w very|strong="H3966"\w* \w great|strong="H1419"\w* \w gladness|strong="H8057"\w*. +\v 18 \w Also|strong="H6213"\w* \w day|strong="H3117"\w* \w by|strong="H3117"\w* \w day|strong="H3117"\w*, \w from|strong="H4480"\w* \w the|strong="H6213"\w* \w first|strong="H7223"\w* \w day|strong="H3117"\w* \w to|strong="H5704"\w* \w the|strong="H6213"\w* last \w day|strong="H3117"\w*, \w he|strong="H3117"\w* \w read|strong="H7121"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w book|strong="H5612"\w* \w of|strong="H3117"\w* \w the|strong="H6213"\w* \w law|strong="H8451"\w* \w of|strong="H3117"\w* God. \w They|strong="H3117"\w* \w kept|strong="H6213"\w* \w the|strong="H6213"\w* \w feast|strong="H2282"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*; \w and|strong="H3117"\w* \w on|strong="H3117"\w* \w the|strong="H6213"\w* \w eighth|strong="H8066"\w* \w day|strong="H3117"\w* \w was|strong="H3117"\w* \w a|strong="H3068"\w* \w solemn|strong="H6116"\w* \w assembly|strong="H6116"\w*, \w according|strong="H4941"\w* \w to|strong="H5704"\w* \w the|strong="H6213"\w* \w ordinance|strong="H4941"\w*. +\c 9 +\p +\v 1 \w Now|strong="H3117"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w twenty-fourth|strong="H6242"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w this|strong="H2088"\w* \w month|strong="H2320"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w assembled|strong="H3478"\w* \w with|strong="H5921"\w* \w fasting|strong="H6685"\w*, \w with|strong="H5921"\w* \w sackcloth|strong="H8242"\w*, \w and|strong="H1121"\w* dirt \w on|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 2 \w The|strong="H3605"\w* \w offspring|strong="H2233"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* separated \w themselves|strong="H5921"\w* \w from|strong="H5921"\w* \w all|strong="H3605"\w* \w foreigners|strong="H1121"\w* \w and|strong="H1121"\w* \w stood|strong="H5975"\w* \w and|strong="H1121"\w* \w confessed|strong="H3034"\w* \w their|strong="H3605"\w* \w sins|strong="H2403"\w* \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w iniquities|strong="H5771"\w* \w of|strong="H1121"\w* \w their|strong="H3605"\w* fathers. +\v 3 \w They|strong="H3117"\w* \w stood|strong="H6965"\w* \w up|strong="H6965"\w* \w in|strong="H5921"\w* \w their|strong="H3068"\w* \w place|strong="H5977"\w*, \w and|strong="H6965"\w* \w read|strong="H7121"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w law|strong="H8451"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w* \w a|strong="H3068"\w* \w fourth|strong="H7243"\w* \w part|strong="H7243"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w*; \w and|strong="H6965"\w* \w a|strong="H3068"\w* \w fourth|strong="H7243"\w* \w part|strong="H7243"\w* \w they|strong="H3117"\w* \w confessed|strong="H3034"\w* \w and|strong="H6965"\w* \w worshiped|strong="H7812"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 4 \w Then|strong="H6965"\w* \w Jeshua|strong="H3442"\w*, \w Bani|strong="H1137"\w*, \w Kadmiel|strong="H6934"\w*, \w Shebaniah|strong="H7645"\w*, \w Bunni|strong="H1138"\w*, \w Sherebiah|strong="H8274"\w*, \w Bani|strong="H1137"\w*, \w and|strong="H6965"\w* \w Chenani|strong="H3662"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w* \w stood|strong="H6965"\w* \w up|strong="H6965"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w stairs|strong="H4608"\w*, \w and|strong="H6965"\w* \w cried|strong="H2199"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w loud|strong="H1419"\w* \w voice|strong="H6963"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*. +\p +\v 5 \w Then|strong="H6965"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*, \w Jeshua|strong="H3442"\w*, \w and|strong="H6965"\w* \w Kadmiel|strong="H6934"\w*, \w Bani|strong="H1137"\w*, \w Hashabneiah|strong="H2813"\w*, \w Sherebiah|strong="H8274"\w*, \w Hodiah|strong="H1941"\w*, \w Shebaniah|strong="H7645"\w*, \w and|strong="H6965"\w* \w Pethahiah|strong="H6611"\w*, said, “\w Stand|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H6965"\w* \w bless|strong="H1288"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w from|strong="H4480"\w* \w everlasting|strong="H5769"\w* \w to|strong="H5704"\w* \w everlasting|strong="H5769"\w*! \w Blessed|strong="H1288"\w* \w be|strong="H3068"\w* \w your|strong="H3068"\w* \w glorious|strong="H3519"\w* \w name|strong="H8034"\w*, \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w exalted|strong="H7311"\w* \w above|strong="H5921"\w* \w all|strong="H3605"\w* \w blessing|strong="H1293"\w* \w and|strong="H6965"\w* \w praise|strong="H8416"\w*! +\v 6 \w You|strong="H3605"\w* \w are|strong="H8064"\w* \w Yahweh|strong="H3068"\w*, \w even|strong="H6213"\w* \w you|strong="H3605"\w* \w alone|strong="H1931"\w*. \w You|strong="H3605"\w* \w have|strong="H3068"\w* \w made|strong="H6213"\w* \w heaven|strong="H8064"\w*, \w the|strong="H3605"\w* \w heaven|strong="H8064"\w* \w of|strong="H3068"\w* \w heavens|strong="H8064"\w*, \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w army|strong="H6635"\w*, \w the|strong="H3605"\w* \w earth|strong="H8064"\w* \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w things|strong="H3605"\w* \w that|strong="H3605"\w* \w are|strong="H8064"\w* \w on|strong="H5921"\w* \w it|strong="H1931"\w*, \w the|strong="H3605"\w* \w seas|strong="H3220"\w* \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3068"\w* \w in|strong="H5921"\w* \w them|strong="H5921"\w*, \w and|strong="H3068"\w* \w you|strong="H3605"\w* \w preserve|strong="H2421"\w* \w them|strong="H5921"\w* \w all|strong="H3605"\w*. \w The|strong="H3605"\w* \w army|strong="H6635"\w* \w of|strong="H3068"\w* \w heaven|strong="H8064"\w* \w worships|strong="H7812"\w* \w you|strong="H3605"\w*. +\v 7 \w You|strong="H7760"\w* \w are|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w who|strong="H1931"\w* chose Abram, \w brought|strong="H3318"\w* \w him|strong="H7760"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* Ur \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w Chaldees|strong="H3778"\w*, \w gave|strong="H7760"\w* \w him|strong="H7760"\w* \w the|strong="H3068"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* Abraham, +\v 8 \w found|strong="H4672"\w* \w his|strong="H5414"\w* \w heart|strong="H3824"\w* faithful \w before|strong="H6440"\w* \w you|strong="H3588"\w*, \w and|strong="H6965"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H5973"\w* \w him|strong="H5414"\w* \w to|strong="H5414"\w* \w give|strong="H5414"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H1697"\w* \w the|strong="H6440"\w* \w Canaanite|strong="H3669"\w*, \w the|strong="H6440"\w* \w Hittite|strong="H2850"\w*, \w the|strong="H6440"\w* Amorite, \w the|strong="H6440"\w* \w Perizzite|strong="H6522"\w*, \w the|strong="H6440"\w* \w Jebusite|strong="H2983"\w*, \w and|strong="H6965"\w* \w the|strong="H6440"\w* \w Girgashite|strong="H1622"\w*, \w to|strong="H5414"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H5414"\w* \w his|strong="H5414"\w* \w offspring|strong="H2233"\w*, \w and|strong="H6965"\w* \w have|strong="H4672"\w* \w performed|strong="H6965"\w* \w your|strong="H5414"\w* \w words|strong="H1697"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H1697"\w* \w righteous|strong="H6662"\w*. +\p +\v 9 “\w You|strong="H5921"\w* \w saw|strong="H7200"\w* \w the|strong="H5921"\w* \w affliction|strong="H6040"\w* \w of|strong="H5921"\w* \w our|strong="H7200"\w* fathers \w in|strong="H5921"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H4714"\w* \w heard|strong="H8085"\w* \w their|strong="H8085"\w* \w cry|strong="H2201"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w*, +\v 10 \w and|strong="H3117"\w* \w showed|strong="H6213"\w* signs \w and|strong="H3117"\w* \w wonders|strong="H4159"\w* \w against|strong="H5921"\w* \w Pharaoh|strong="H6547"\w*, \w against|strong="H5921"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w*, \w and|strong="H3117"\w* \w against|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H3117"\w* \w his|strong="H3605"\w* land, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w knew|strong="H3045"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w dealt|strong="H6213"\w* \w proudly|strong="H2102"\w* \w against|strong="H5921"\w* \w them|strong="H5414"\w*, \w and|strong="H3117"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w name|strong="H8034"\w* \w for|strong="H3588"\w* \w yourself|strong="H6213"\w*, \w as|strong="H3117"\w* \w it|strong="H5414"\w* \w is|strong="H2088"\w* \w today|strong="H3117"\w*. +\v 11 \w You|strong="H6440"\w* \w divided|strong="H1234"\w* \w the|strong="H6440"\w* \w sea|strong="H3220"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*, \w so|strong="H3644"\w* \w that|strong="H4325"\w* \w they|strong="H6440"\w* \w went|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H6440"\w* \w middle|strong="H8432"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w sea|strong="H3220"\w* \w on|strong="H5674"\w* \w the|strong="H6440"\w* \w dry|strong="H3004"\w* \w land|strong="H3004"\w*; \w and|strong="H6440"\w* \w you|strong="H6440"\w* \w cast|strong="H7993"\w* \w their|strong="H6440"\w* \w pursuers|strong="H7291"\w* \w into|strong="H8432"\w* \w the|strong="H6440"\w* \w depths|strong="H4688"\w*, \w as|strong="H3644"\w* \w a|strong="H3068"\w* stone \w into|strong="H8432"\w* \w the|strong="H6440"\w* \w mighty|strong="H5794"\w* \w waters|strong="H4325"\w*. +\v 12 Moreover, \w in|strong="H3212"\w* \w a|strong="H3068"\w* \w pillar|strong="H5982"\w* \w of|strong="H1870"\w* \w cloud|strong="H6051"\w* \w you|strong="H3915"\w* \w led|strong="H3212"\w* \w them|strong="H1992"\w* \w by|strong="H1870"\w* \w day|strong="H3119"\w*; \w and|strong="H3212"\w* \w in|strong="H3212"\w* \w a|strong="H3068"\w* \w pillar|strong="H5982"\w* \w of|strong="H1870"\w* fire \w by|strong="H1870"\w* \w night|strong="H3915"\w*, \w to|strong="H3212"\w* give \w them|strong="H1992"\w* light \w in|strong="H3212"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w in|strong="H3212"\w* \w which|strong="H1992"\w* \w they|strong="H1992"\w* should \w go|strong="H3212"\w*. +\p +\v 13 “\w You|strong="H5414"\w* \w also|strong="H8064"\w* \w came|strong="H3381"\w* \w down|strong="H3381"\w* \w on|strong="H5921"\w* \w Mount|strong="H2022"\w* \w Sinai|strong="H5514"\w*, \w and|strong="H8064"\w* \w spoke|strong="H1696"\w* \w with|strong="H5973"\w* \w them|strong="H5414"\w* \w from|strong="H3381"\w* \w heaven|strong="H8064"\w*, \w and|strong="H8064"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w right|strong="H3477"\w* \w ordinances|strong="H4941"\w* \w and|strong="H8064"\w* true \w laws|strong="H8451"\w*, \w good|strong="H2896"\w* \w statutes|strong="H2706"\w* \w and|strong="H8064"\w* \w commandments|strong="H4687"\w*, +\v 14 \w and|strong="H4872"\w* \w made|strong="H3045"\w* \w known|strong="H3045"\w* \w to|strong="H3027"\w* \w them|strong="H3027"\w* \w your|strong="H3045"\w* \w holy|strong="H6944"\w* \w Sabbath|strong="H7676"\w*, \w and|strong="H4872"\w* \w commanded|strong="H6680"\w* \w them|strong="H3027"\w* \w commandments|strong="H4687"\w*, \w statutes|strong="H2706"\w*, \w and|strong="H4872"\w* \w a|strong="H3068"\w* \w law|strong="H8451"\w*, \w by|strong="H3027"\w* \w Moses|strong="H4872"\w* \w your|strong="H3045"\w* \w servant|strong="H5650"\w*, +\v 15 \w and|strong="H8064"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w bread|strong="H3899"\w* \w from|strong="H3318"\w* \w the|strong="H5414"\w* \w sky|strong="H8064"\w* \w for|strong="H3027"\w* \w their|strong="H5375"\w* \w hunger|strong="H7458"\w*, \w and|strong="H8064"\w* \w brought|strong="H3318"\w* \w water|strong="H4325"\w* \w out|strong="H3318"\w* \w of|strong="H3027"\w* \w the|strong="H5414"\w* \w rock|strong="H5553"\w* \w for|strong="H3027"\w* \w them|strong="H5414"\w* \w for|strong="H3027"\w* \w their|strong="H5375"\w* \w thirst|strong="H6772"\w*, \w and|strong="H8064"\w* commanded \w them|strong="H5414"\w* \w that|strong="H5414"\w* \w they|strong="H5375"\w* \w should|strong="H3899"\w* \w go|strong="H3318"\w* \w in|strong="H3899"\w* \w to|strong="H3318"\w* \w possess|strong="H3423"\w* \w the|strong="H5414"\w* \w land|strong="H8064"\w* \w which|strong="H4325"\w* \w you|strong="H5414"\w* \w had|strong="H5414"\w* \w sworn|strong="H3027"\w* \w to|strong="H3318"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w*. +\p +\v 16 “\w But|strong="H3808"\w* \w they|strong="H1992"\w* \w and|strong="H8085"\w* \w our|strong="H8085"\w* fathers behaved \w proudly|strong="H2102"\w*, \w hardened|strong="H7185"\w* \w their|strong="H8085"\w* \w neck|strong="H6203"\w*, didn’t \w listen|strong="H8085"\w* \w to|strong="H8085"\w* \w your|strong="H8085"\w* \w commandments|strong="H4687"\w*, +\v 17 \w and|strong="H7725"\w* \w refused|strong="H3985"\w* \w to|strong="H7725"\w* \w obey|strong="H8085"\w*. \w They|strong="H3808"\w* weren’t \w mindful|strong="H2142"\w* \w of|strong="H7218"\w* \w your|strong="H5414"\w* \w wonders|strong="H6381"\w* \w that|strong="H8085"\w* \w you|strong="H5414"\w* \w did|strong="H6213"\w* \w among|strong="H5973"\w* \w them|strong="H5414"\w*, \w but|strong="H3808"\w* \w hardened|strong="H7185"\w* \w their|strong="H5414"\w* \w neck|strong="H6203"\w*, \w and|strong="H7725"\w* \w in|strong="H6213"\w* \w their|strong="H5414"\w* \w rebellion|strong="H4805"\w* \w appointed|strong="H5414"\w* \w a|strong="H3068"\w* \w captain|strong="H7227"\w* \w to|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w their|strong="H5414"\w* \w bondage|strong="H5659"\w*. \w But|strong="H3808"\w* \w you|strong="H5414"\w* \w are|strong="H7227"\w* \w a|strong="H3068"\w* \w God|strong="H5414"\w* \w ready|strong="H6213"\w* \w to|strong="H7725"\w* \w pardon|strong="H5547"\w*, \w gracious|strong="H2587"\w* \w and|strong="H7725"\w* \w merciful|strong="H7349"\w*, slow \w to|strong="H7725"\w* anger, \w and|strong="H7725"\w* \w abundant|strong="H7227"\w* \w in|strong="H6213"\w* loving \w kindness|strong="H2617"\w*, \w and|strong="H7725"\w* didn’t \w forsake|strong="H5800"\w* \w them|strong="H5414"\w*. +\v 18 \w Yes|strong="H3588"\w*, \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3588"\w* \w made|strong="H6213"\w* \w themselves|strong="H6213"\w* \w a|strong="H3068"\w* molded \w calf|strong="H5695"\w*, \w and|strong="H1419"\w* said, ‘\w This|strong="H2088"\w* \w is|strong="H2088"\w* \w your|strong="H6213"\w* God \w who|strong="H2088"\w* \w brought|strong="H5927"\w* \w you|strong="H3588"\w* \w up|strong="H5927"\w* \w out|strong="H6213"\w* \w of|strong="H6213"\w* \w Egypt|strong="H4714"\w*,’ \w and|strong="H1419"\w* \w had|strong="H3588"\w* \w committed|strong="H6213"\w* awful \w blasphemies|strong="H5007"\w*, +\v 19 \w yet|strong="H3808"\w* \w you|strong="H5921"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w manifold|strong="H7227"\w* \w mercies|strong="H7356"\w* didn’t \w forsake|strong="H5800"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*. \w The|strong="H5921"\w* \w pillar|strong="H5982"\w* \w of|strong="H1870"\w* \w cloud|strong="H6051"\w* didn’t \w depart|strong="H5493"\w* \w from|strong="H5493"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w* \w by|strong="H5921"\w* \w day|strong="H3119"\w*, \w to|strong="H3212"\w* \w lead|strong="H5148"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w*; \w neither|strong="H3808"\w* \w did|strong="H3808"\w* \w the|strong="H5921"\w* \w pillar|strong="H5982"\w* \w of|strong="H1870"\w* fire \w by|strong="H5921"\w* \w night|strong="H3915"\w*, \w to|strong="H3212"\w* \w show|strong="H7356"\w* \w them|strong="H5921"\w* light, \w and|strong="H3212"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w* \w in|strong="H5921"\w* \w which|strong="H4057"\w* \w they|strong="H3808"\w* should \w go|strong="H3212"\w*. +\v 20 \w You|strong="H5414"\w* \w gave|strong="H5414"\w* also \w your|strong="H5414"\w* \w good|strong="H2896"\w* \w Spirit|strong="H7307"\w* \w to|strong="H5414"\w* \w instruct|strong="H7919"\w* \w them|strong="H5414"\w*, \w and|strong="H2896"\w* didn’t \w withhold|strong="H4513"\w* \w your|strong="H5414"\w* \w manna|strong="H4478"\w* \w from|strong="H7307"\w* \w their|strong="H5414"\w* \w mouth|strong="H6310"\w*, \w and|strong="H2896"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w water|strong="H4325"\w* \w for|strong="H4325"\w* \w their|strong="H5414"\w* \w thirst|strong="H6772"\w*. +\p +\v 21 “Yes, forty \w years|strong="H8141"\w* \w you|strong="H3808"\w* \w sustained|strong="H3557"\w* \w them|strong="H1086"\w* \w in|strong="H8141"\w* \w the|strong="H3808"\w* \w wilderness|strong="H4057"\w*. \w They|strong="H3808"\w* \w lacked|strong="H2637"\w* \w nothing|strong="H3808"\w*. \w Their|strong="H3808"\w* \w clothes|strong="H8008"\w* didn’t grow \w old|strong="H1086"\w*, \w and|strong="H8141"\w* \w their|strong="H3808"\w* \w feet|strong="H7272"\w* didn’t \w swell|strong="H1216"\w*. +\v 22 Moreover \w you|strong="H5414"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w kingdoms|strong="H4467"\w* \w and|strong="H4428"\w* \w peoples|strong="H5971"\w*, \w which|strong="H5971"\w* \w you|strong="H5414"\w* \w allotted|strong="H2505"\w* according \w to|strong="H5414"\w* \w their|strong="H5414"\w* portions. \w So|strong="H5414"\w* \w they|strong="H5971"\w* \w possessed|strong="H3423"\w* \w the|strong="H5414"\w* land \w of|strong="H4428"\w* \w Sihon|strong="H5511"\w*, even \w the|strong="H5414"\w* land \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Heshbon|strong="H2809"\w*, \w and|strong="H4428"\w* \w the|strong="H5414"\w* land \w of|strong="H4428"\w* \w Og|strong="H5747"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Bashan|strong="H1316"\w*. +\v 23 \w You|strong="H7235"\w* \w also|strong="H1121"\w* \w multiplied|strong="H7235"\w* \w their|strong="H3423"\w* \w children|strong="H1121"\w* \w as|strong="H1121"\w* \w the|strong="H3423"\w* \w stars|strong="H3556"\w* \w of|strong="H1121"\w* \w the|strong="H3423"\w* \w sky|strong="H8064"\w*, \w and|strong="H1121"\w* brought \w them|strong="H3423"\w* \w into|strong="H3423"\w* \w the|strong="H3423"\w* \w land|strong="H8064"\w* concerning which \w you|strong="H7235"\w* said \w to|strong="H1121"\w* \w their|strong="H3423"\w* fathers \w that|strong="H1121"\w* \w they|strong="H3423"\w* should go \w in|strong="H1121"\w* \w to|strong="H1121"\w* \w possess|strong="H3423"\w* \w it|strong="H3423"\w*. +\p +\v 24 “\w So|strong="H6213"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w went|strong="H5971"\w* \w in|strong="H3427"\w* \w and|strong="H1121"\w* \w possessed|strong="H3423"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*; \w and|strong="H1121"\w* \w you|strong="H5414"\w* \w subdued|strong="H3665"\w* \w before|strong="H6440"\w* \w them|strong="H5414"\w* \w the|strong="H6440"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*, \w the|strong="H6440"\w* \w Canaanites|strong="H3669"\w*, \w and|strong="H1121"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H6213"\w* \w their|strong="H5414"\w* \w hands|strong="H3027"\w*, \w with|strong="H6213"\w* \w their|strong="H5414"\w* \w kings|strong="H4428"\w* \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w peoples|strong="H5971"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*, \w that|strong="H5971"\w* \w they|strong="H6213"\w* \w might|strong="H1121"\w* \w do|strong="H6213"\w* \w with|strong="H6213"\w* \w them|strong="H5414"\w* \w as|strong="H6213"\w* \w they|strong="H6213"\w* \w pleased|strong="H7522"\w*. +\v 25 \w They|strong="H3920"\w* \w took|strong="H3920"\w* \w fortified|strong="H1219"\w* \w cities|strong="H5892"\w* \w and|strong="H1419"\w* \w a|strong="H3068"\w* \w rich|strong="H8082"\w* land, \w and|strong="H1419"\w* \w possessed|strong="H3423"\w* \w houses|strong="H1004"\w* \w full|strong="H4392"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w good|strong="H2898"\w* \w things|strong="H1419"\w*, cisterns dug \w out|strong="H3423"\w*, \w vineyards|strong="H3754"\w*, \w olive|strong="H2132"\w* \w groves|strong="H2132"\w*, \w and|strong="H1419"\w* \w fruit|strong="H3978"\w* \w trees|strong="H6086"\w* \w in|strong="H1004"\w* \w abundance|strong="H7230"\w*. \w So|strong="H7230"\w* \w they|strong="H3920"\w* ate, \w were|strong="H1419"\w* \w filled|strong="H7646"\w*, \w became|strong="H7646"\w* \w fat|strong="H8080"\w*, \w and|strong="H1419"\w* \w delighted|strong="H5727"\w* themselves \w in|strong="H1004"\w* \w your|strong="H3605"\w* \w great|strong="H1419"\w* \w goodness|strong="H2898"\w*. +\p +\v 26 “Nevertheless \w they|strong="H6213"\w* \w were|strong="H5030"\w* \w disobedient|strong="H4784"\w* \w and|strong="H7725"\w* \w rebelled|strong="H4784"\w* \w against|strong="H4784"\w* \w you|strong="H7725"\w*, \w cast|strong="H7993"\w* \w your|strong="H7725"\w* \w law|strong="H8451"\w* behind \w their|strong="H7725"\w* \w back|strong="H7725"\w*, \w killed|strong="H2026"\w* \w your|strong="H7725"\w* \w prophets|strong="H5030"\w* \w that|strong="H5030"\w* \w testified|strong="H5749"\w* \w against|strong="H4784"\w* \w them|strong="H7725"\w* \w to|strong="H7725"\w* \w turn|strong="H7725"\w* \w them|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w you|strong="H7725"\w*, \w and|strong="H7725"\w* \w they|strong="H6213"\w* \w committed|strong="H6213"\w* awful \w blasphemies|strong="H5007"\w*. +\v 27 Therefore \w you|strong="H5414"\w* \w delivered|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H8085"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w their|strong="H5414"\w* \w adversaries|strong="H6862"\w*, \w who|strong="H7227"\w* \w distressed|strong="H3334"\w* \w them|strong="H5414"\w*. \w In|strong="H8085"\w* \w the|strong="H8085"\w* \w time|strong="H6256"\w* \w of|strong="H3027"\w* \w their|strong="H5414"\w* \w trouble|strong="H6869"\w*, \w when|strong="H6256"\w* \w they|strong="H6256"\w* \w cried|strong="H6817"\w* \w to|strong="H6256"\w* \w you|strong="H5414"\w*, \w you|strong="H5414"\w* \w heard|strong="H8085"\w* \w from|strong="H3027"\w* \w heaven|strong="H8064"\w*; \w and|strong="H8064"\w* \w according|strong="H3027"\w* \w to|strong="H6256"\w* \w your|strong="H5414"\w* \w manifold|strong="H7227"\w* \w mercies|strong="H7356"\w* \w you|strong="H5414"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* saviors \w who|strong="H7227"\w* \w saved|strong="H3467"\w* \w them|strong="H5414"\w* \w out|strong="H5414"\w* \w of|strong="H3027"\w* \w the|strong="H8085"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w their|strong="H5414"\w* \w adversaries|strong="H6862"\w*. +\v 28 \w But|strong="H5800"\w* \w after|strong="H6256"\w* \w they|strong="H6256"\w* \w had|strong="H3027"\w* \w rest|strong="H5117"\w*, \w they|strong="H6256"\w* \w did|strong="H6213"\w* \w evil|strong="H7451"\w* \w again|strong="H7725"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*; \w therefore|strong="H6213"\w* \w you|strong="H6440"\w* \w left|strong="H5800"\w* \w them|strong="H7725"\w* \w in|strong="H6213"\w* \w the|strong="H6440"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w their|strong="H6440"\w* \w enemies|strong="H3027"\w*, \w so|strong="H6213"\w* \w that|strong="H8085"\w* \w they|strong="H6256"\w* \w had|strong="H3027"\w* \w the|strong="H6440"\w* \w dominion|strong="H7287"\w* \w over|strong="H3027"\w* \w them|strong="H7725"\w*; \w yet|strong="H6256"\w* \w when|strong="H6256"\w* \w they|strong="H6256"\w* \w returned|strong="H7725"\w* \w and|strong="H7725"\w* \w cried|strong="H2199"\w* \w to|strong="H7725"\w* \w you|strong="H6440"\w*, \w you|strong="H6440"\w* \w heard|strong="H8085"\w* \w from|strong="H7725"\w* \w heaven|strong="H8064"\w*; \w and|strong="H7725"\w* \w many|strong="H7227"\w* \w times|strong="H6256"\w* \w you|strong="H6440"\w* \w delivered|strong="H5337"\w* \w them|strong="H7725"\w* \w according|strong="H3027"\w* \w to|strong="H7725"\w* \w your|strong="H6440"\w* \w mercies|strong="H7356"\w*, +\v 29 \w and|strong="H7725"\w* \w testified|strong="H5749"\w* \w against|strong="H2398"\w* \w them|strong="H5414"\w*, \w that|strong="H8085"\w* \w you|strong="H5414"\w* \w might|strong="H4941"\w* \w bring|strong="H7725"\w* \w them|strong="H5414"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w your|strong="H5414"\w* \w law|strong="H8451"\w*. \w Yet|strong="H3808"\w* \w they|strong="H1992"\w* \w were|strong="H1992"\w* \w arrogant|strong="H2102"\w*, \w and|strong="H7725"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H7725"\w* \w your|strong="H5414"\w* \w commandments|strong="H4687"\w*, \w but|strong="H3808"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w your|strong="H5414"\w* \w ordinances|strong="H4941"\w* (\w which|strong="H1992"\w* \w if|strong="H2398"\w* \w a|strong="H3068"\w* man \w does|strong="H6213"\w*, \w he|strong="H6213"\w* \w shall|strong="H3808"\w* \w live|strong="H2421"\w* \w in|strong="H6213"\w* \w them|strong="H5414"\w*), \w turned|strong="H7725"\w* \w their|strong="H5414"\w* \w backs|strong="H6203"\w*, \w stiffened|strong="H7185"\w* \w their|strong="H5414"\w* \w neck|strong="H6203"\w*, \w and|strong="H7725"\w* \w would|strong="H6213"\w* \w not|strong="H3808"\w* \w hear|strong="H8085"\w*. +\v 30 \w Yet|strong="H3808"\w* \w many|strong="H7227"\w* \w years|strong="H8141"\w* \w you|strong="H5414"\w* \w put|strong="H5414"\w* \w up|strong="H5414"\w* \w with|strong="H5921"\w* \w them|strong="H5414"\w*, \w and|strong="H3027"\w* \w testified|strong="H5749"\w* \w against|strong="H5921"\w* \w them|strong="H5414"\w* \w by|strong="H3027"\w* \w your|strong="H5414"\w* \w Spirit|strong="H7307"\w* \w through|strong="H3027"\w* \w your|strong="H5414"\w* \w prophets|strong="H5030"\w*. \w Yet|strong="H3808"\w* \w they|strong="H3808"\w* \w would|strong="H5971"\w* \w not|strong="H3808"\w* listen. \w Therefore|strong="H5921"\w* \w you|strong="H5414"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w peoples|strong="H5971"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* lands. +\p +\v 31 “\w Nevertheless|strong="H3588"\w* \w in|strong="H6213"\w* \w your|strong="H6213"\w* \w manifold|strong="H7227"\w* \w mercies|strong="H7356"\w* \w you|strong="H3588"\w* didn’t \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w full|strong="H7227"\w* \w end|strong="H3617"\w* \w of|strong="H6213"\w* \w them|strong="H6213"\w*, \w nor|strong="H3808"\w* \w forsake|strong="H5800"\w* \w them|strong="H6213"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H7227"\w* \w a|strong="H3068"\w* \w gracious|strong="H2587"\w* \w and|strong="H6213"\w* \w merciful|strong="H7349"\w* \w God|strong="H3808"\w*. +\p +\v 32 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w our|strong="H3605"\w* God, \w the|strong="H3605"\w* \w great|strong="H1419"\w*, \w the|strong="H3605"\w* \w mighty|strong="H1368"\w*, \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w awesome|strong="H3372"\w* God, \w who|strong="H3605"\w* \w keeps|strong="H8104"\w* \w covenant|strong="H1285"\w* \w and|strong="H4428"\w* loving \w kindness|strong="H2617"\w*, don’t \w let|strong="H6258"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w travail|strong="H8513"\w* \w seem|strong="H8513"\w* \w little|strong="H4591"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w that|strong="H5971"\w* \w has|strong="H4428"\w* \w come|strong="H4672"\w* \w on|strong="H3117"\w* \w us|strong="H6440"\w*, \w on|strong="H3117"\w* \w our|strong="H3605"\w* \w kings|strong="H4428"\w*, \w on|strong="H3117"\w* \w our|strong="H3605"\w* \w princes|strong="H8269"\w*, \w on|strong="H3117"\w* \w our|strong="H3605"\w* \w priests|strong="H3548"\w*, \w on|strong="H3117"\w* \w our|strong="H3605"\w* \w prophets|strong="H5030"\w*, \w on|strong="H3117"\w* \w our|strong="H3605"\w* fathers, \w and|strong="H4428"\w* \w on|strong="H3117"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w people|strong="H5971"\w*, \w since|strong="H3117"\w* \w the|strong="H3605"\w* \w time|strong="H3117"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 33 \w However|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H6662"\w* \w just|strong="H6662"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w has|strong="H3588"\w* come \w on|strong="H5921"\w* \w us|strong="H5921"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3605"\w* \w dealt|strong="H6213"\w* \w truly|strong="H3588"\w*, \w but|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3605"\w* \w done|strong="H6213"\w* \w wickedly|strong="H7561"\w*. +\v 34 \w Also|strong="H6213"\w* \w our|strong="H6213"\w* \w kings|strong="H4428"\w*, \w our|strong="H6213"\w* \w princes|strong="H8269"\w*, \w our|strong="H6213"\w* \w priests|strong="H3548"\w*, \w and|strong="H4428"\w* \w our|strong="H6213"\w* fathers \w have|strong="H3548"\w* \w not|strong="H3808"\w* \w kept|strong="H6213"\w* \w your|strong="H6213"\w* \w law|strong="H8451"\w*, \w nor|strong="H3808"\w* \w listened|strong="H7181"\w* \w to|strong="H6213"\w* \w your|strong="H6213"\w* \w commandments|strong="H4687"\w* \w and|strong="H4428"\w* \w your|strong="H6213"\w* \w testimonies|strong="H5715"\w* \w with|strong="H6213"\w* \w which|strong="H3548"\w* \w you|strong="H6213"\w* \w testified|strong="H5749"\w* \w against|strong="H5749"\w* \w them|strong="H6213"\w*. +\v 35 \w For|strong="H6440"\w* \w they|strong="H1992"\w* \w have|strong="H5414"\w* \w not|strong="H3808"\w* \w served|strong="H5647"\w* \w you|strong="H5414"\w* \w in|strong="H7227"\w* \w their|strong="H5414"\w* \w kingdom|strong="H4438"\w*, \w and|strong="H7725"\w* \w in|strong="H7227"\w* \w your|strong="H5414"\w* \w great|strong="H7227"\w* \w goodness|strong="H2898"\w* \w that|strong="H5414"\w* \w you|strong="H5414"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w*, \w and|strong="H7725"\w* \w in|strong="H7227"\w* \w the|strong="H6440"\w* \w large|strong="H7342"\w* \w and|strong="H7725"\w* \w rich|strong="H8082"\w* \w land|strong="H6440"\w* \w which|strong="H1992"\w* \w you|strong="H5414"\w* \w gave|strong="H5414"\w* \w before|strong="H6440"\w* \w them|strong="H5414"\w*. \w They|strong="H1992"\w* didn’t \w turn|strong="H7725"\w* \w from|strong="H7725"\w* \w their|strong="H5414"\w* \w wicked|strong="H7451"\w* \w works|strong="H4611"\w*. +\p +\v 36 “\w Behold|strong="H2009"\w*, \w we|strong="H3068"\w* \w are|strong="H3117"\w* \w servants|strong="H5650"\w* \w today|strong="H3117"\w*, \w and|strong="H3117"\w* \w as|strong="H3117"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* land \w that|strong="H3117"\w* \w you|strong="H5414"\w* \w gave|strong="H5414"\w* \w to|strong="H5921"\w* \w our|strong="H5414"\w* fathers \w to|strong="H5921"\w* eat \w its|strong="H5414"\w* \w fruit|strong="H6529"\w* \w and|strong="H3117"\w* \w its|strong="H5414"\w* \w good|strong="H2898"\w*, \w behold|strong="H2009"\w*, \w we|strong="H3068"\w* \w are|strong="H3117"\w* \w servants|strong="H5650"\w* \w in|strong="H5921"\w* \w it|strong="H5414"\w*. +\v 37 \w It|strong="H5414"\w* \w yields|strong="H5414"\w* \w much|strong="H7235"\w* \w increase|strong="H8393"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* whom \w you|strong="H5414"\w* \w have|strong="H5414"\w* \w set|strong="H5414"\w* \w over|strong="H5921"\w* \w us|strong="H5414"\w* \w because|strong="H5921"\w* \w of|strong="H4428"\w* \w our|strong="H5414"\w* \w sins|strong="H2403"\w*. \w Also|strong="H4428"\w* \w they|strong="H5921"\w* \w have|strong="H5414"\w* \w power|strong="H4910"\w* \w over|strong="H5921"\w* \w our|strong="H5414"\w* \w bodies|strong="H1472"\w* \w and|strong="H4428"\w* \w over|strong="H5921"\w* \w our|strong="H5414"\w* livestock, \w at|strong="H5921"\w* \w their|strong="H5414"\w* \w pleasure|strong="H7522"\w*, \w and|strong="H4428"\w* \w we|strong="H3068"\w* \w are|strong="H4428"\w* \w in|strong="H5921"\w* \w great|strong="H1419"\w* \w distress|strong="H6869"\w*. +\v 38 Yet for all this, \w we|strong="H3068"\w* make \w a|strong="H3068"\w* sure covenant, and write it; and our princes, our Levites, and our priests, seal it.” +\c 10 +\p +\v 1 \w Now|strong="H5921"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w sealed|strong="H2856"\w* \w were|strong="H3881"\w*: Nehemiah \w the|strong="H3605"\w* \w governor|strong="H8269"\w*, \w the|strong="H3605"\w* son \w of|strong="H8269"\w* Hacaliah, \w and|strong="H3548"\w* Zedekiah, +\v 2 Seraiah, Azariah, Jeremiah, +\v 3 Pashhur, Amariah, Malchijah, +\v 4 Hattush, Shebaniah, Malluch, +\v 5 Harim, Meremoth, Obadiah, +\v 6 Daniel, Ginnethon, Baruch, +\v 7 Meshullam, Abijah, Mijamin, +\v 8 Maaziah, Bilgai, \w and|strong="H4918"\w* Shemaiah. These were \w the|strong="H4918"\w* priests. +\v 9 \w The|strong="H3548"\w* Levites: Jeshua \w the|strong="H3548"\w* son \w of|strong="H3548"\w* Azaniah, Binnui \w of|strong="H3548"\w* \w the|strong="H3548"\w* sons \w of|strong="H3548"\w* Henadad, Kadmiel; +\v 10 \w and|strong="H1121"\w* \w their|strong="H3881"\w* \w brothers|strong="H1121"\w*, Shebaniah, Hodiah, Kelita, Pelaiah, Hanan, +\v 11 Mica, Rehob, Hashabiah, +\v 12 Zaccur, Sherebiah, Shebaniah, +\v 13 Hodiah, Bani, \w and|strong="H8274"\w* Beninu. +\v 14 \w The|strong="H1137"\w* chiefs of \w the|strong="H1137"\w* people: Parosh, Pahathmoab, Elam, Zattu, \w Bani|strong="H1137"\w*, +\v 15 Bunni, Azgad, Bebai, +\v 16 Adonijah, Bigvai, Adin, +\v 17 Ater, Hezekiah, Azzur, +\v 18 Hodiah, Hashum, Bezai, +\v 19 Hariph, Anathoth, Nobai, +\v 20 Magpiash, Meshullam, Hezir, +\v 21 Meshezabel, Zadok, Jaddua, +\v 22 Pelatiah, Hanan, Anaiah, +\v 23 Hoshea, Hananiah, Hasshub, +\v 24 Hallohesh, Pilha, Shobek, +\v 25 Rehum, Hashabnah, Maaseiah, +\v 26 Ahiah, Hanan, Anan, +\v 27 Malluch, Harim, and Baanah. +\p +\v 28 \w The|strong="H1196"\w* rest of \w the|strong="H1196"\w* people, \w the|strong="H1196"\w* priests, \w the|strong="H1196"\w* Levites, \w the|strong="H1196"\w* gatekeepers, \w the|strong="H1196"\w* singers, \w the|strong="H1196"\w* temple servants, \w and|strong="H2766"\w* all those who had separated themselves from \w the|strong="H1196"\w* peoples of \w the|strong="H1196"\w* lands to \w the|strong="H1196"\w* law of God, their wives, their sons, \w and|strong="H2766"\w* their daughters—everyone who had knowledge \w and|strong="H2766"\w* understanding— +\v 29 joined \w with|strong="H3045"\w* \w their|strong="H3605"\w* \w brothers|strong="H1121"\w*, \w their|strong="H3605"\w* nobles, \w and|strong="H1121"\w* entered \w into|strong="H1323"\w* \w a|strong="H3068"\w* curse \w and|strong="H1121"\w* \w into|strong="H1323"\w* \w an|strong="H5971"\w* oath, \w to|strong="H1121"\w* walk \w in|strong="H1121"\w* God’s \w law|strong="H8451"\w*, \w which|strong="H5971"\w* \w was|strong="H1121"\w* given \w by|strong="H3605"\w* Moses \w the|strong="H3605"\w* servant \w of|strong="H1121"\w* God, \w and|strong="H1121"\w* \w to|strong="H1121"\w* \w observe|strong="H3045"\w* \w and|strong="H1121"\w* \w do|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* commandments \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3605"\w* Lord, \w and|strong="H1121"\w* \w his|strong="H3605"\w* ordinances \w and|strong="H1121"\w* \w his|strong="H3605"\w* statutes; +\v 30 \w and|strong="H4872"\w* \w that|strong="H3605"\w* \w we|strong="H3068"\w* \w would|strong="H3068"\w* \w not|strong="H6213"\w* \w give|strong="H5414"\w* \w our|strong="H3068"\w* daughters \w to|strong="H3068"\w* \w the|strong="H3605"\w* peoples \w of|strong="H3068"\w* \w the|strong="H3605"\w* land, nor \w take|strong="H2388"\w* \w their|strong="H3605"\w* daughters \w for|strong="H5921"\w* \w our|strong="H3068"\w* sons; +\v 31 \w and|strong="H1121"\w* \w if|strong="H1121"\w* \w the|strong="H5414"\w* \w peoples|strong="H5971"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* land \w bring|strong="H3947"\w* wares \w or|strong="H3808"\w* \w any|strong="H5414"\w* grain \w on|strong="H5414"\w* \w the|strong="H5414"\w* Sabbath day \w to|strong="H5414"\w* \w sell|strong="H5414"\w*, \w that|strong="H5971"\w* \w we|strong="H3068"\w* \w would|strong="H5971"\w* \w not|strong="H3808"\w* \w buy|strong="H3947"\w* \w from|strong="H1121"\w* \w them|strong="H5414"\w* \w on|strong="H5414"\w* \w the|strong="H5414"\w* Sabbath, \w or|strong="H3808"\w* \w on|strong="H5414"\w* \w a|strong="H3068"\w* holy day; \w and|strong="H1121"\w* \w that|strong="H5971"\w* \w we|strong="H3068"\w* \w would|strong="H5971"\w* forego \w the|strong="H5414"\w* seventh \w year|strong="H1121"\w* crops \w and|strong="H1121"\w* \w the|strong="H5414"\w* exaction \w of|strong="H1121"\w* \w every|strong="H3947"\w* debt. +\p +\v 32 \w Also|strong="H3027"\w* \w we|strong="H3068"\w* \w made|strong="H8141"\w* ordinances \w for|strong="H3027"\w* ourselves, \w to|strong="H3027"\w* \w charge|strong="H3027"\w* ourselves \w yearly|strong="H3117"\w* \w with|strong="H3117"\w* \w the|strong="H3605"\w* third \w part|strong="H1992"\w* \w of|strong="H3117"\w* \w a|strong="H3068"\w* shekel\f + \fr 10:32 \ft A shekel is about 10 grams or about 0.35 ounces.\f* \w for|strong="H3027"\w* \w the|strong="H3605"\w* \w service|strong="H3027"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* house \w of|strong="H3117"\w* \w our|strong="H3605"\w* \w God|strong="H3808"\w*: +\v 33 \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w show|strong="H5414"\w* bread, \w for|strong="H5921"\w* \w the|strong="H5921"\w* continual meal offering, \w for|strong="H5921"\w* \w the|strong="H5921"\w* continual burnt offering, \w for|strong="H5921"\w* \w the|strong="H5921"\w* Sabbaths, \w for|strong="H5921"\w* \w the|strong="H5921"\w* new moons, \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w set|strong="H5414"\w* feasts, \w for|strong="H5921"\w* \w the|strong="H5921"\w* holy \w things|strong="H4687"\w*, \w for|strong="H5921"\w* \w the|strong="H5921"\w* sin offerings \w to|strong="H5921"\w* \w make|strong="H5414"\w* atonement \w for|strong="H5921"\w* Israel, \w and|strong="H1004"\w* \w for|strong="H5921"\w* \w all|strong="H5414"\w* \w the|strong="H5921"\w* \w work|strong="H5656"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w our|strong="H5414"\w* \w God|strong="H5414"\w*. +\v 34 \w We|strong="H3605"\w*, \w the|strong="H3605"\w* priests, \w the|strong="H3605"\w* Levites, \w and|strong="H3478"\w* \w the|strong="H3605"\w* people, cast lots \w for|strong="H5921"\w* \w the|strong="H3605"\w* wood \w offering|strong="H4503"\w*, \w to|strong="H3478"\w* bring \w it|strong="H5921"\w* \w into|strong="H5921"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w our|strong="H3605"\w* God, \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w our|strong="H3605"\w* fathers’ \w houses|strong="H1004"\w*, \w at|strong="H5921"\w* \w times|strong="H4150"\w* \w appointed|strong="H4150"\w* year \w by|strong="H5921"\w* year, \w to|strong="H3478"\w* burn \w on|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3605"\w* God’s altar, \w as|strong="H1004"\w* \w it|strong="H5921"\w* \w is|strong="H3478"\w* written \w in|strong="H5921"\w* \w the|strong="H3605"\w* law; +\v 35 \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w bring|strong="H3881"\w* \w the|strong="H5921"\w* first fruits \w of|strong="H1004"\w* \w our|strong="H3068"\w* ground \w and|strong="H3068"\w* \w the|strong="H5921"\w* first fruits \w of|strong="H1004"\w* \w all|strong="H5921"\w* \w fruit|strong="H6086"\w* \w of|strong="H1004"\w* \w all|strong="H5921"\w* kinds \w of|strong="H1004"\w* \w trees|strong="H6086"\w*, \w year|strong="H8141"\w* \w by|strong="H5921"\w* \w year|strong="H8141"\w*, \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*; +\v 36 \w also|strong="H3068"\w* \w the|strong="H3605"\w* firstborn \w of|strong="H1004"\w* \w our|strong="H3068"\w* sons \w and|strong="H3068"\w* \w of|strong="H1004"\w* \w our|strong="H3068"\w* livestock, \w as|strong="H3068"\w* \w it|strong="H3068"\w* \w is|strong="H3068"\w* written \w in|strong="H8141"\w* \w the|strong="H3605"\w* law, \w and|strong="H3068"\w* \w the|strong="H3605"\w* firstborn \w of|strong="H1004"\w* \w our|strong="H3068"\w* herds \w and|strong="H3068"\w* \w of|strong="H1004"\w* \w our|strong="H3068"\w* flocks, \w to|strong="H3068"\w* bring \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w to|strong="H3068"\w* \w the|strong="H3605"\w* priests \w who|strong="H3605"\w* minister \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*; +\v 37 \w and|strong="H1121"\w* \w that|strong="H3548"\w* \w we|strong="H3068"\w* \w should|strong="H3548"\w* bring \w the|strong="H3548"\w* \w first|strong="H1121"\w* fruits \w of|strong="H1121"\w* our dough, our wave offerings, \w the|strong="H3548"\w* fruit \w of|strong="H1121"\w* all kinds \w of|strong="H1121"\w* trees, \w and|strong="H1121"\w* \w the|strong="H3548"\w* new wine \w and|strong="H1121"\w* \w the|strong="H3548"\w* oil, \w to|strong="H1121"\w* \w the|strong="H3548"\w* \w priests|strong="H3548"\w*, \w to|strong="H1121"\w* \w the|strong="H3548"\w* \w rooms|strong="H1004"\w* \w of|strong="H1121"\w* \w the|strong="H3548"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* our God; \w and|strong="H1121"\w* \w the|strong="H3548"\w* tithes \w of|strong="H1121"\w* our ground \w to|strong="H1121"\w* \w the|strong="H3548"\w* \w Levites|strong="H1121"\w*; \w for|strong="H1004"\w* \w they|strong="H3789"\w*, \w the|strong="H3548"\w* \w Levites|strong="H1121"\w*, \w take|strong="H1121"\w* \w the|strong="H3548"\w* tithes \w in|strong="H1004"\w* all our farming villages. +\v 38 \w The|strong="H3605"\w* \w priest|strong="H3548"\w*, \w the|strong="H3605"\w* descendent \w of|strong="H1004"\w* Aaron, \w shall|strong="H3548"\w* \w be|strong="H6086"\w* \w with|strong="H1004"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w when|strong="H5656"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w take|strong="H6237"\w* \w tithes|strong="H4643"\w*. \w The|strong="H3605"\w* \w Levites|strong="H3881"\w* \w shall|strong="H3548"\w* \w bring|strong="H3881"\w* \w up|strong="H3605"\w* \w the|strong="H3605"\w* \w tithe|strong="H4643"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w tithes|strong="H4643"\w* \w to|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w our|strong="H3605"\w* God, \w to|strong="H1004"\w* \w the|strong="H3605"\w* \w rooms|strong="H3957"\w*, \w into|strong="H5892"\w* \w the|strong="H3605"\w* treasure \w house|strong="H1004"\w*. +\v 39 \w For|strong="H1004"\w* \w the|strong="H5927"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Israel \w and|strong="H1121"\w* \w the|strong="H5927"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3881"\w* \w shall|strong="H3548"\w* \w bring|strong="H5927"\w* \w the|strong="H5927"\w* wave \w offering|strong="H5927"\w* \w of|strong="H1121"\w* \w the|strong="H5927"\w* grain, \w of|strong="H1121"\w* \w the|strong="H5927"\w* new wine, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5927"\w* oil, \w to|strong="H5927"\w* \w the|strong="H5927"\w* \w rooms|strong="H3957"\w* \w where|strong="H1004"\w* \w the|strong="H5927"\w* vessels \w of|strong="H1121"\w* \w the|strong="H5927"\w* \w sanctuary|strong="H1004"\w* \w are|strong="H1121"\w*, \w and|strong="H1121"\w* \w the|strong="H5927"\w* \w priests|strong="H3548"\w* \w who|strong="H3548"\w* minister, \w with|strong="H5973"\w* \w the|strong="H5927"\w* gatekeepers \w and|strong="H1121"\w* \w the|strong="H5927"\w* singers. We \w will|strong="H1961"\w* \w not|strong="H1961"\w* forsake \w the|strong="H5927"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w our|strong="H1961"\w* God. +\c 11 +\p +\v 1 \w The|strong="H4480"\w* \w princes|strong="H8269"\w* \w of|strong="H3027"\w* \w the|strong="H4480"\w* \w people|strong="H5971"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*. \w The|strong="H4480"\w* \w rest|strong="H7605"\w* \w of|strong="H3027"\w* \w the|strong="H4480"\w* \w people|strong="H5971"\w* \w also|strong="H3027"\w* \w cast|strong="H5307"\w* \w lots|strong="H1486"\w* \w to|strong="H3027"\w* \w bring|strong="H5307"\w* \w one|strong="H4480"\w* \w of|strong="H3027"\w* \w ten|strong="H6235"\w* \w to|strong="H3027"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*, \w the|strong="H4480"\w* \w holy|strong="H6944"\w* \w city|strong="H5892"\w*, \w and|strong="H3027"\w* \w nine|strong="H8672"\w* \w parts|strong="H3027"\w* \w in|strong="H3427"\w* \w the|strong="H4480"\w* \w other|strong="H7605"\w* \w cities|strong="H5892"\w*. +\v 2 \w The|strong="H3605"\w* \w people|strong="H5971"\w* \w blessed|strong="H1288"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H5971"\w* \w who|strong="H3605"\w* \w willingly|strong="H5068"\w* \w offered|strong="H5068"\w* themselves \w to|strong="H3389"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*. +\p +\v 3 \w Now|strong="H3478"\w* \w these|strong="H3881"\w* \w are|strong="H1121"\w* \w the|strong="H5650"\w* \w chiefs|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H5650"\w* \w province|strong="H4082"\w* \w who|strong="H3548"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*; \w but|strong="H3881"\w* \w in|strong="H3427"\w* \w the|strong="H5650"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, everyone \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w his|strong="H3478"\w* possession \w in|strong="H3427"\w* \w their|strong="H3427"\w* \w cities|strong="H5892"\w*—\w Israel|strong="H3478"\w*, \w the|strong="H5650"\w* \w priests|strong="H3548"\w*, \w the|strong="H5650"\w* \w Levites|strong="H3881"\w*, \w the|strong="H5650"\w* \w temple|strong="H5411"\w* \w servants|strong="H5650"\w*, \w and|strong="H1121"\w* \w the|strong="H5650"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w*’s \w servants|strong="H5650"\w*. +\v 4 Some \w of|strong="H1121"\w* \w the|strong="H3427"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3427"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*. \w Of|strong="H1121"\w* \w the|strong="H3427"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*: \w Athaiah|strong="H6265"\w* \w the|strong="H3427"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Uzziah|strong="H5818"\w*, \w the|strong="H3427"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zechariah|strong="H2148"\w*, \w the|strong="H3427"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amariah, \w the|strong="H3427"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shephatiah|strong="H8203"\w*, \w the|strong="H3427"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Mahalalel|strong="H4111"\w*, \w of|strong="H1121"\w* \w the|strong="H3427"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Perez|strong="H6557"\w*; +\v 5 \w and|strong="H1121"\w* \w Maaseiah|strong="H4641"\w* \w the|strong="H1263"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Baruch|strong="H1263"\w*, \w the|strong="H1263"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Colhozeh, \w the|strong="H1263"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hazaiah|strong="H2382"\w*, \w the|strong="H1263"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Adaiah|strong="H5718"\w*, \w the|strong="H1263"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joiarib|strong="H3114"\w*, \w the|strong="H1263"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zechariah|strong="H2148"\w*, \w the|strong="H1263"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H1263"\w* Shilonite. +\v 6 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Perez|strong="H6557"\w* \w who|strong="H3605"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w* \w were|strong="H1121"\w* four \w hundred|strong="H3967"\w* sixty-eight \w valiant|strong="H2428"\w* \w men|strong="H1121"\w*. +\p +\v 7 These \w are|strong="H1121"\w* \w the|strong="H3470"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*: \w Sallu|strong="H5543"\w* \w the|strong="H3470"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Meshullam|strong="H4918"\w*, \w the|strong="H3470"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joed|strong="H3133"\w*, \w the|strong="H3470"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Pedaiah|strong="H6305"\w*, \w the|strong="H3470"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kolaiah|strong="H6964"\w*, \w the|strong="H3470"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Maaseiah|strong="H4641"\w*, \w the|strong="H3470"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ithiel, \w the|strong="H3470"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeshaiah|strong="H3470"\w*. +\v 8 After him \w Gabbai|strong="H1373"\w* \w and|strong="H3967"\w* \w Sallai|strong="H5543"\w*, \w nine|strong="H8672"\w* \w hundred|strong="H3967"\w* \w twenty-eight|strong="H6242"\w*. +\v 9 \w Joel|strong="H3100"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zichri|strong="H2147"\w* \w was|strong="H5892"\w* \w their|strong="H5921"\w* \w overseer|strong="H6496"\w*; \w and|strong="H1121"\w* \w Judah|strong="H3063"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hassenuah|strong="H5574"\w* \w was|strong="H5892"\w* \w second|strong="H4932"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*. +\p +\v 10 \w Of|strong="H1121"\w* \w the|strong="H4480"\w* \w priests|strong="H3548"\w*: \w Jedaiah|strong="H3048"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joiarib|strong="H3114"\w*, \w Jachin|strong="H3199"\w*, +\v 11 \w Seraiah|strong="H8304"\w* \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hilkiah|strong="H2518"\w*, \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Meshullam|strong="H4918"\w*, \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zadok|strong="H6659"\w*, \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Meraioth|strong="H4812"\w*, \w the|strong="H6659"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahitub, \w the|strong="H6659"\w* \w ruler|strong="H5057"\w* \w of|strong="H1121"\w* God’s \w house|strong="H1004"\w*, +\v 12 \w and|strong="H3967"\w* \w their|strong="H6213"\w* \w brothers|strong="H1121"\w* \w who|strong="H1121"\w* \w did|strong="H6213"\w* \w the|strong="H6213"\w* \w work|strong="H4399"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w house|strong="H1004"\w*, \w eight|strong="H8083"\w* \w hundred|strong="H3967"\w* \w twenty-two|strong="H6242"\w*; \w and|strong="H3967"\w* \w Adaiah|strong="H5718"\w* \w the|strong="H6213"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeroham|strong="H3395"\w*, \w the|strong="H6213"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Pelaliah|strong="H6421"\w*, \w the|strong="H6213"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amzi, \w the|strong="H6213"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zechariah|strong="H2148"\w*, \w the|strong="H6213"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Pashhur|strong="H6583"\w*, \w the|strong="H6213"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Malchijah|strong="H4441"\w*, +\v 13 \w and|strong="H3967"\w* \w his|strong="H8147"\w* \w brothers|strong="H1121"\w*, \w chiefs|strong="H7218"\w* \w of|strong="H1121"\w* fathers’ households, \w two|strong="H8147"\w* \w hundred|strong="H3967"\w* \w forty-two|strong="H8147"\w*; \w and|strong="H3967"\w* \w Amashsai|strong="H6023"\w* \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Azarel|strong="H5832"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahzai, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Meshillemoth|strong="H4919"\w*, \w the|strong="H1121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Immer, +\v 14 \w and|strong="H3967"\w* \w their|strong="H5921"\w* \w brothers|strong="H1121"\w*, \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H1121"\w* \w valor|strong="H2428"\w*, \w one|strong="H1121"\w* \w hundred|strong="H3967"\w* \w twenty-eight|strong="H6242"\w*; \w and|strong="H3967"\w* \w their|strong="H5921"\w* \w overseer|strong="H6496"\w* \w was|strong="H1121"\w* \w Zabdiel|strong="H2068"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Haggedolim. +\p +\v 15 \w Of|strong="H1121"\w* \w the|strong="H4480"\w* \w Levites|strong="H3881"\w*: \w Shemaiah|strong="H8098"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hasshub|strong="H2815"\w*, \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Azrikam|strong="H5840"\w*, \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hashabiah|strong="H2811"\w*, \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Bunni|strong="H1138"\w*; +\v 16 \w and|strong="H1004"\w* \w Shabbethai|strong="H7678"\w* \w and|strong="H1004"\w* \w Jozabad|strong="H3107"\w*, \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w chiefs|strong="H7218"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w*, \w who|strong="H3881"\w* \w had|strong="H3881"\w* \w the|strong="H5921"\w* oversight \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w outward|strong="H2435"\w* \w business|strong="H4399"\w* \w of|strong="H1004"\w* God’s \w house|strong="H1004"\w*; +\v 17 \w and|strong="H1121"\w* \w Mattaniah|strong="H4983"\w* \w the|strong="H3034"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Mica, \w the|strong="H3034"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zabdi|strong="H2067"\w*, \w the|strong="H3034"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Asaph, \w who|strong="H1121"\w* \w was|strong="H1121"\w* \w the|strong="H3034"\w* \w chief|strong="H7218"\w* \w to|strong="H1121"\w* \w begin|strong="H8462"\w* \w the|strong="H3034"\w* \w thanksgiving|strong="H3034"\w* \w in|strong="H1121"\w* \w prayer|strong="H8605"\w*, \w and|strong="H1121"\w* \w Bakbukiah|strong="H1229"\w*, \w the|strong="H3034"\w* \w second|strong="H4932"\w* \w among|strong="H7218"\w* \w his|strong="H4318"\w* \w brothers|strong="H1121"\w*; \w and|strong="H1121"\w* \w Abda|strong="H5653"\w* \w the|strong="H3034"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shammua|strong="H8051"\w*, \w the|strong="H3034"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Galal|strong="H1559"\w*, \w the|strong="H3034"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeduthun|strong="H3038"\w*. +\v 18 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w in|strong="H5892"\w* \w the|strong="H3605"\w* \w holy|strong="H6944"\w* \w city|strong="H5892"\w* \w were|strong="H3881"\w* \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* eighty-four. +\p +\v 19 Moreover \w the|strong="H8104"\w* \w gatekeepers|strong="H7778"\w*, \w Akkub|strong="H6126"\w*, \w Talmon|strong="H2929"\w*, \w and|strong="H3967"\w* \w their|strong="H8104"\w* brothers, \w who|strong="H8104"\w* \w kept|strong="H8104"\w* \w watch|strong="H8104"\w* \w at|strong="H8147"\w* \w the|strong="H8104"\w* \w gates|strong="H8179"\w*, \w were|strong="H8147"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* seventy-two. +\v 20 \w The|strong="H3605"\w* \w residue|strong="H7605"\w* \w of|strong="H5892"\w* \w Israel|strong="H3478"\w*, \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w*, \w and|strong="H3063"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w were|strong="H3478"\w* \w in|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w Judah|strong="H3063"\w*, \w everyone|strong="H3605"\w* \w in|strong="H3478"\w* \w his|strong="H3605"\w* \w inheritance|strong="H5159"\w*. +\v 21 \w But|strong="H5921"\w* \w the|strong="H5921"\w* \w temple|strong="H5411"\w* \w servants|strong="H5411"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Ophel|strong="H6077"\w*; \w and|strong="H3427"\w* \w Ziha|strong="H6727"\w* \w and|strong="H3427"\w* \w Gishpa|strong="H1658"\w* \w were|strong="H3427"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w temple|strong="H5411"\w* \w servants|strong="H5411"\w*. +\p +\v 22 \w The|strong="H5048"\w* \w overseer|strong="H6496"\w* \w also|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5048"\w* \w Levites|strong="H3881"\w* \w at|strong="H1004"\w* \w Jerusalem|strong="H3389"\w* \w was|strong="H1004"\w* \w Uzzi|strong="H5813"\w* \w the|strong="H5048"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Bani|strong="H1137"\w*, \w the|strong="H5048"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hashabiah|strong="H2811"\w*, \w the|strong="H5048"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Mattaniah|strong="H4983"\w*, \w the|strong="H5048"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Mica|strong="H4316"\w*, \w of|strong="H1121"\w* \w the|strong="H5048"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Asaph, \w the|strong="H5048"\w* \w singers|strong="H7891"\w* \w responsible|strong="H5048"\w* \w for|strong="H1004"\w* \w the|strong="H5048"\w* \w service|strong="H4399"\w* \w of|strong="H1121"\w* God’s \w house|strong="H1004"\w*. +\v 23 \w For|strong="H3588"\w* \w there|strong="H3117"\w* \w was|strong="H1697"\w* \w a|strong="H3068"\w* \w commandment|strong="H4687"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w concerning|strong="H5921"\w* \w them|strong="H5921"\w*, \w and|strong="H4428"\w* \w a|strong="H3068"\w* \w settled|strong="H5921"\w* \w provision|strong="H1697"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w singers|strong="H7891"\w*, \w as|strong="H1697"\w* \w every|strong="H3117"\w* \w day|strong="H3117"\w* \w required|strong="H3117"\w*. +\v 24 \w Pethahiah|strong="H6611"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Meshezabel|strong="H4898"\w*, \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Zerah|strong="H2226"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w was|strong="H1697"\w* \w at|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w hand|strong="H3027"\w* \w in|strong="H4428"\w* \w all|strong="H3605"\w* \w matters|strong="H1697"\w* \w concerning|strong="H1697"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*. +\p +\v 25 \w As|strong="H3427"\w* \w for|strong="H3427"\w* \w the|strong="H3427"\w* \w villages|strong="H2691"\w* \w with|strong="H3427"\w* \w their|strong="H3427"\w* \w fields|strong="H7704"\w*, some \w of|strong="H1121"\w* \w the|strong="H3427"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* Kiriath Arba \w and|strong="H1121"\w* its \w towns|strong="H1323"\w*, \w in|strong="H3427"\w* \w Dibon|strong="H1769"\w* \w and|strong="H1121"\w* its \w towns|strong="H1323"\w*, \w in|strong="H3427"\w* \w Jekabzeel|strong="H3343"\w* \w and|strong="H1121"\w* its \w villages|strong="H2691"\w*, +\v 26 in \w Jeshua|strong="H3442"\w*, in \w Moladah|strong="H4137"\w*, Beth Pelet, +\v 27 \w in|strong="H1323"\w* Hazar Shual, \w in|strong="H1323"\w* Beersheba \w and|strong="H1323"\w* its \w towns|strong="H1323"\w*, +\v 28 \w in|strong="H1323"\w* \w Ziklag|strong="H6860"\w*, \w in|strong="H1323"\w* \w Meconah|strong="H4368"\w* \w and|strong="H1323"\w* \w in|strong="H1323"\w* its \w towns|strong="H1323"\w*, +\v 29 in En Rimmon, in \w Zorah|strong="H6881"\w*, in \w Jarmuth|strong="H3412"\w*, +\v 30 \w Zanoah|strong="H2182"\w*, \w Adullam|strong="H5725"\w*, \w and|strong="H7704"\w* \w their|strong="H5704"\w* \w villages|strong="H2691"\w*, \w Lachish|strong="H3923"\w* \w and|strong="H7704"\w* \w its|strong="H1516"\w* \w fields|strong="H7704"\w*, \w and|strong="H7704"\w* \w Azekah|strong="H5825"\w* \w and|strong="H7704"\w* \w its|strong="H1516"\w* \w towns|strong="H1323"\w*. \w So|strong="H5704"\w* \w they|strong="H5704"\w* \w encamped|strong="H2583"\w* \w from|strong="H5704"\w* Beersheba \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w valley|strong="H1516"\w* \w of|strong="H1323"\w* \w Hinnom|strong="H2011"\w*. +\v 31 \w The|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w* \w also|strong="H1121"\w* lived \w from|strong="H1121"\w* \w Geba|strong="H1387"\w* onward, \w at|strong="H1121"\w* \w Michmash|strong="H4363"\w* \w and|strong="H1121"\w* \w Aija|strong="H5857"\w*, \w and|strong="H1121"\w* \w at|strong="H1121"\w* \w Bethel|strong="H1008"\w* \w and|strong="H1121"\w* its \w towns|strong="H1323"\w*, +\v 32 at \w Anathoth|strong="H6068"\w*, \w Nob|strong="H5011"\w*, \w Ananiah|strong="H6055"\w*, +\v 33 \w Hazor|strong="H2674"\w*, \w Ramah|strong="H7414"\w*, \w Gittaim|strong="H1664"\w*, +\v 34 \w Hadid|strong="H2307"\w*, \w Zeboim|strong="H6650"\w*, \w Neballat|strong="H5041"\w*, +\v 35 \w Lod|strong="H3850"\w*, \w and|strong="H1516"\w* Ono, the \w valley|strong="H1516"\w* \w of|strong="H1516"\w* \w craftsmen|strong="H2791"\w*. +\v 36 \w Of|strong="H4480"\w* \w the|strong="H4480"\w* \w Levites|strong="H3881"\w*, certain \w divisions|strong="H4256"\w* \w in|strong="H3063"\w* \w Judah|strong="H3063"\w* settled \w in|strong="H3063"\w* \w Benjamin|strong="H1144"\w*’s territory. +\c 12 +\p +\v 1 Now \w these|strong="H3881"\w* \w are|strong="H1121"\w* \w the|strong="H5927"\w* \w priests|strong="H3548"\w* \w and|strong="H1121"\w* \w the|strong="H5927"\w* \w Levites|strong="H3881"\w* \w who|strong="H3548"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w with|strong="H5973"\w* \w Zerubbabel|strong="H2216"\w* \w the|strong="H5927"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shealtiel|strong="H7597"\w*, \w and|strong="H1121"\w* \w Jeshua|strong="H3442"\w*: \w Seraiah|strong="H8304"\w*, \w Jeremiah|strong="H3414"\w*, \w Ezra|strong="H5830"\w*, +\v 2 Amariah, \w Malluch|strong="H4409"\w*, \w Hattush|strong="H2407"\w*, +\v 3 \w Shecaniah|strong="H7935"\w*, \w Rehum|strong="H7348"\w*, \w Meremoth|strong="H4822"\w*, +\v 4 \w Iddo|strong="H5714"\w*, \w Ginnethoi|strong="H1599"\w*, Abijah, +\v 5 \w Mijamin|strong="H4326"\w*, \w Maadiah|strong="H4573"\w*, \w Bilgah|strong="H1083"\w*, +\v 6 \w Shemaiah|strong="H8098"\w*, \w Joiarib|strong="H3114"\w*, \w Jedaiah|strong="H3048"\w*, +\v 7 \w Sallu|strong="H5543"\w*, \w Amok|strong="H5987"\w*, \w Hilkiah|strong="H2518"\w*, \w and|strong="H3117"\w* \w Jedaiah|strong="H3048"\w*. \w These|strong="H3117"\w* \w were|strong="H3117"\w* \w the|strong="H3117"\w* \w chiefs|strong="H7218"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w priests|strong="H3548"\w* \w and|strong="H3117"\w* \w of|strong="H3117"\w* \w their|strong="H3117"\w* brothers \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w Jeshua|strong="H3442"\w*. +\p +\v 8 Moreover \w the|strong="H5921"\w* \w Levites|strong="H3881"\w* \w were|strong="H3881"\w* \w Jeshua|strong="H3442"\w*, \w Binnui|strong="H1131"\w*, \w Kadmiel|strong="H6934"\w*, \w Sherebiah|strong="H8274"\w*, \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w Mattaniah|strong="H4983"\w*, \w who|strong="H1931"\w* \w was|strong="H1931"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w thanksgiving|strong="H1960"\w* \w songs|strong="H1960"\w*, \w he|strong="H1931"\w* \w and|strong="H3063"\w* \w his|strong="H5921"\w* brothers. +\v 9 Also \w Bakbukiah|strong="H1229"\w* \w and|strong="H4931"\w* Unno, \w their|strong="H5048"\w* brothers, were close to \w them|strong="H5048"\w* according to \w their|strong="H5048"\w* \w offices|strong="H4931"\w*. +\v 10 \w Jeshua|strong="H3442"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Joiakim|strong="H3113"\w*, \w and|strong="H3205"\w* \w Joiakim|strong="H3113"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* Eliashib, \w and|strong="H3205"\w* Eliashib \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Joiada|strong="H3111"\w*, +\v 11 \w and|strong="H3205"\w* \w Joiada|strong="H3111"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Jonathan|strong="H3129"\w*, \w and|strong="H3205"\w* \w Jonathan|strong="H3129"\w* \w became|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w Jaddua|strong="H3037"\w*. +\p +\v 12 \w In|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w Joiakim|strong="H3113"\w* \w were|strong="H1961"\w* \w priests|strong="H3548"\w*, \w heads|strong="H7218"\w* \w of|strong="H3117"\w* fathers’ households: \w of|strong="H3117"\w* \w Seraiah|strong="H8304"\w*, \w Meraiah|strong="H4811"\w*; \w of|strong="H3117"\w* \w Jeremiah|strong="H3414"\w*, \w Hananiah|strong="H2608"\w*; +\v 13 of \w Ezra|strong="H5830"\w*, \w Meshullam|strong="H4918"\w*; of Amariah, \w Jehohanan|strong="H3076"\w*; +\v 14 \w of|strong="H3130"\w* Malluchi, \w Jonathan|strong="H3129"\w*; \w of|strong="H3130"\w* \w Shebaniah|strong="H7645"\w*, \w Joseph|strong="H3130"\w*; +\v 15 of \w Harim|strong="H2766"\w*, \w Adna|strong="H5733"\w*; of \w Meraioth|strong="H4812"\w*, \w Helkai|strong="H2517"\w*; +\v 16 \w of|strong="H2148"\w* \w Iddo|strong="H5714"\w*, \w Zechariah|strong="H2148"\w*; \w of|strong="H2148"\w* \w Ginnethon|strong="H1599"\w*, \w Meshullam|strong="H4918"\w*; +\v 17 of Abijah, \w Zichri|strong="H2147"\w*; of \w Miniamin|strong="H4509"\w*, of \w Moadiah|strong="H4153"\w*, \w Piltai|strong="H6408"\w*; +\v 18 \w of|strong="H8098"\w* \w Bilgah|strong="H1083"\w*, \w Shammua|strong="H8051"\w*; \w of|strong="H8098"\w* \w Shemaiah|strong="H8098"\w*, \w Jehonathan|strong="H3083"\w*; +\v 19 of \w Joiarib|strong="H3114"\w*, \w Mattenai|strong="H4982"\w*; of \w Jedaiah|strong="H3048"\w*, \w Uzzi|strong="H5813"\w*; +\v 20 of \w Sallai|strong="H5543"\w*, \w Kallai|strong="H7040"\w*; of \w Amok|strong="H5987"\w*, \w Eber|strong="H5677"\w*; +\v 21 of \w Hilkiah|strong="H2518"\w*, \w Hashabiah|strong="H2811"\w*; of \w Jedaiah|strong="H3048"\w*, \w Nethanel|strong="H5417"\w*. +\p +\v 22 \w As|strong="H3117"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* Eliashib, \w Joiada|strong="H3111"\w*, \w Johanan|strong="H3110"\w*, \w and|strong="H3117"\w* \w Jaddua|strong="H3037"\w*, \w there|strong="H3117"\w* \w were|strong="H3881"\w* \w recorded|strong="H3789"\w* \w the|strong="H5921"\w* \w heads|strong="H7218"\w* \w of|strong="H3117"\w* fathers’ \w households|strong="H3881"\w*; \w also|strong="H3117"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w reign|strong="H4438"\w* \w of|strong="H3117"\w* \w Darius|strong="H1867"\w* \w the|strong="H5921"\w* \w Persian|strong="H6542"\w*. +\v 23 \w The|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w*, \w heads|strong="H7218"\w* \w of|strong="H1121"\w* fathers’ households, \w were|strong="H1121"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w chronicles|strong="H1697"\w*, \w even|strong="H5704"\w* \w until|strong="H5704"\w* \w the|strong="H5921"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w Johanan|strong="H3110"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Eliashib. +\v 24 \w The|strong="H1984"\w* \w chiefs|strong="H7218"\w* \w of|strong="H1121"\w* \w the|strong="H1984"\w* \w Levites|strong="H3881"\w*: \w Hashabiah|strong="H2811"\w*, \w Sherebiah|strong="H8274"\w*, \w and|strong="H1121"\w* \w Jeshua|strong="H3442"\w* \w the|strong="H1984"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kadmiel|strong="H6934"\w*, \w with|strong="H1732"\w* \w their|strong="H5980"\w* \w brothers|strong="H1121"\w* \w close|strong="H5980"\w* \w to|strong="H1121"\w* \w them|strong="H1121"\w*, \w to|strong="H1121"\w* \w praise|strong="H1984"\w* \w and|strong="H1121"\w* \w give|strong="H3034"\w* \w thanks|strong="H3034"\w* according \w to|strong="H1121"\w* \w the|strong="H1984"\w* \w commandment|strong="H4687"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w* \w the|strong="H1984"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* God, section next \w to|strong="H1121"\w* section. +\v 25 \w Mattaniah|strong="H4983"\w*, \w Bakbukiah|strong="H1229"\w*, \w Obadiah|strong="H5662"\w*, \w Meshullam|strong="H4918"\w*, \w Talmon|strong="H2929"\w*, \w and|strong="H8104"\w* \w Akkub|strong="H6126"\w* \w were|strong="H7778"\w* \w gatekeepers|strong="H7778"\w* \w keeping|strong="H8104"\w* \w the|strong="H8104"\w* \w watch|strong="H8104"\w* \w at|strong="H7778"\w* \w the|strong="H8104"\w* storehouses \w of|strong="H8179"\w* \w the|strong="H8104"\w* \w gates|strong="H8179"\w*. +\v 26 \w These|strong="H3117"\w* \w were|strong="H1121"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w Joiakim|strong="H3113"\w* \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeshua|strong="H3442"\w*, \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jozadak|strong="H3136"\w*, \w and|strong="H1121"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w Nehemiah|strong="H5166"\w* \w the|strong="H3117"\w* \w governor|strong="H6346"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w Ezra|strong="H5830"\w* \w the|strong="H3117"\w* \w priest|strong="H3548"\w* \w and|strong="H1121"\w* \w scribe|strong="H5608"\w*. +\p +\v 27 \w At|strong="H6213"\w* \w the|strong="H3605"\w* \w dedication|strong="H2598"\w* \w of|strong="H2346"\w* \w the|strong="H3605"\w* \w wall|strong="H2346"\w* \w of|strong="H2346"\w* \w Jerusalem|strong="H3389"\w*, \w they|strong="H6213"\w* \w sought|strong="H1245"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w out|strong="H1245"\w* \w of|strong="H2346"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w places|strong="H4725"\w*, \w to|strong="H6213"\w* \w bring|strong="H6213"\w* \w them|strong="H6213"\w* \w to|strong="H6213"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H6213"\w* \w keep|strong="H6213"\w* \w the|strong="H3605"\w* \w dedication|strong="H2598"\w* \w with|strong="H6213"\w* \w gladness|strong="H8057"\w*, \w both|strong="H3605"\w* \w with|strong="H6213"\w* giving \w thanks|strong="H8426"\w* \w and|strong="H3389"\w* \w with|strong="H6213"\w* \w singing|strong="H7892"\w*, \w with|strong="H6213"\w* \w cymbals|strong="H4700"\w*, stringed \w instruments|strong="H7892"\w*, \w and|strong="H3389"\w* \w with|strong="H6213"\w* \w harps|strong="H3658"\w*. +\v 28 \w The|strong="H4480"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w singers|strong="H7891"\w* gathered themselves together, \w both|strong="H4480"\w* \w out|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w plain|strong="H3603"\w* \w around|strong="H5439"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H1121"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w villages|strong="H2691"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w Netophathites|strong="H5200"\w*; +\v 29 \w also|strong="H3389"\w* \w from|strong="H3389"\w* \w Beth|strong="H1004"\w* \w Gilgal|strong="H1537"\w* \w and|strong="H1004"\w* out \w of|strong="H1004"\w* \w the|strong="H3588"\w* \w fields|strong="H7704"\w* \w of|strong="H1004"\w* \w Geba|strong="H1387"\w* \w and|strong="H1004"\w* \w Azmaveth|strong="H5820"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w singers|strong="H7891"\w* \w had|strong="H3588"\w* \w built|strong="H1129"\w* \w themselves|strong="H1992"\w* \w villages|strong="H2691"\w* \w around|strong="H5439"\w* \w Jerusalem|strong="H3389"\w*. +\v 30 \w The|strong="H3548"\w* \w priests|strong="H3548"\w* \w and|strong="H3548"\w* \w the|strong="H3548"\w* \w Levites|strong="H3881"\w* \w purified|strong="H2891"\w* \w themselves|strong="H2891"\w*; \w and|strong="H3548"\w* \w they|strong="H5971"\w* \w purified|strong="H2891"\w* \w the|strong="H3548"\w* \w people|strong="H5971"\w*, \w the|strong="H3548"\w* \w gates|strong="H8179"\w*, \w and|strong="H3548"\w* \w the|strong="H3548"\w* \w wall|strong="H2346"\w*. +\p +\v 31 \w Then|strong="H5975"\w* \w I|strong="H5921"\w* \w brought|strong="H5927"\w* \w the|strong="H5921"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w Judah|strong="H3063"\w* \w up|strong="H5927"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wall|strong="H2346"\w*, \w and|strong="H3063"\w* \w appointed|strong="H5975"\w* \w two|strong="H8147"\w* \w great|strong="H1419"\w* companies \w who|strong="H3063"\w* gave \w thanks|strong="H8426"\w* \w and|strong="H3063"\w* \w went|strong="H5927"\w* \w in|strong="H5921"\w* procession. \w One|strong="H8147"\w* \w went|strong="H5927"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wall|strong="H2346"\w* \w toward|strong="H5921"\w* \w the|strong="H5921"\w* dung \w gate|strong="H8179"\w*; +\v 32 \w and|strong="H3063"\w* after them \w went|strong="H3212"\w* \w Hoshaiah|strong="H1955"\w*, \w with|strong="H3212"\w* \w half|strong="H2677"\w* \w of|strong="H8269"\w* \w the|strong="H2677"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w Judah|strong="H3063"\w*, +\v 33 \w and|strong="H4918"\w* \w Azariah|strong="H5838"\w*, \w Ezra|strong="H5830"\w*, \w and|strong="H4918"\w* \w Meshullam|strong="H4918"\w*, +\v 34 \w Judah|strong="H3063"\w*, \w Benjamin|strong="H1144"\w*, \w Shemaiah|strong="H8098"\w*, \w Jeremiah|strong="H3414"\w*, +\v 35 \w and|strong="H1121"\w* some \w of|strong="H1121"\w* \w the|strong="H3548"\w* \w priests|strong="H3548"\w*’ \w sons|strong="H1121"\w* \w with|strong="H3548"\w* \w trumpets|strong="H2689"\w*: \w Zechariah|strong="H2148"\w* \w the|strong="H3548"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jonathan|strong="H3129"\w*, \w the|strong="H3548"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shemaiah|strong="H8098"\w*, \w the|strong="H3548"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Mattaniah|strong="H4983"\w*, \w the|strong="H3548"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Micaiah|strong="H4320"\w*, \w the|strong="H3548"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zaccur|strong="H2139"\w*, \w the|strong="H3548"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Asaph; +\v 36 \w and|strong="H3063"\w* \w his|strong="H1732"\w* brothers, \w Shemaiah|strong="H8098"\w*, \w Azarel|strong="H5832"\w*, \w Milalai|strong="H4450"\w*, \w Gilalai|strong="H1562"\w*, \w Maai|strong="H4597"\w*, \w Nethanel|strong="H5417"\w*, \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w Hanani|strong="H2607"\w*, \w with|strong="H6440"\w* \w the|strong="H6440"\w* \w musical|strong="H7892"\w* \w instruments|strong="H3627"\w* \w of|strong="H3627"\w* \w David|strong="H1732"\w* \w the|strong="H6440"\w* \w man|strong="H6440"\w* \w of|strong="H3627"\w* God; \w and|strong="H3063"\w* \w Ezra|strong="H5830"\w* \w the|strong="H6440"\w* \w scribe|strong="H5608"\w* \w was|strong="H1732"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*. +\v 37 \w By|strong="H5921"\w* \w the|strong="H5921"\w* \w spring|strong="H5927"\w* \w gate|strong="H8179"\w*, \w and|strong="H1004"\w* \w straight|strong="H5048"\w* \w before|strong="H5048"\w* \w them|strong="H5921"\w*, \w they|strong="H5921"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w stairs|strong="H4609"\w* \w of|strong="H1004"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*, \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w ascent|strong="H4608"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w wall|strong="H2346"\w*, \w above|strong="H5921"\w* \w David|strong="H1732"\w*’s \w house|strong="H1004"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w water|strong="H4325"\w* \w gate|strong="H8179"\w* \w eastward|strong="H4217"\w*. +\p +\v 38 \w The|strong="H5921"\w* \w other|strong="H8145"\w* company \w of|strong="H2346"\w* \w those|strong="H5921"\w* \w who|strong="H5971"\w* gave \w thanks|strong="H8426"\w* \w went|strong="H1980"\w* \w to|strong="H5704"\w* \w meet|strong="H1980"\w* \w them|strong="H5921"\w*, \w and|strong="H1980"\w* \w I|strong="H5704"\w* \w after|strong="H5921"\w* \w them|strong="H5921"\w*, \w with|strong="H1980"\w* \w the|strong="H5921"\w* \w half|strong="H2677"\w* \w of|strong="H2346"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wall|strong="H2346"\w* \w above|strong="H5921"\w* \w the|strong="H5921"\w* \w tower|strong="H4026"\w* \w of|strong="H2346"\w* \w the|strong="H5921"\w* \w furnaces|strong="H8574"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w wide|strong="H7342"\w* \w wall|strong="H2346"\w*, +\v 39 \w and|strong="H6629"\w* \w above|strong="H5921"\w* \w the|strong="H5921"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* Ephraim, \w and|strong="H6629"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w old|strong="H5975"\w* \w gate|strong="H8179"\w*, \w and|strong="H6629"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w fish|strong="H1709"\w* \w gate|strong="H8179"\w*, \w the|strong="H5921"\w* \w tower|strong="H4026"\w* \w of|strong="H8179"\w* \w Hananel|strong="H2606"\w*, \w and|strong="H6629"\w* \w the|strong="H5921"\w* \w tower|strong="H4026"\w* \w of|strong="H8179"\w* Hammeah, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w sheep|strong="H6629"\w* \w gate|strong="H8179"\w*; \w and|strong="H6629"\w* \w they|strong="H5921"\w* \w stood|strong="H5975"\w* \w still|strong="H5975"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* \w the|strong="H5921"\w* \w guard|strong="H4307"\w*. +\v 40 \w So|strong="H5975"\w* \w the|strong="H5975"\w* \w two|strong="H8147"\w* companies \w of|strong="H1004"\w* \w those|strong="H5973"\w* \w who|strong="H5975"\w* gave \w thanks|strong="H8426"\w* \w in|strong="H1004"\w* God’s \w house|strong="H1004"\w* \w stood|strong="H5975"\w*, \w and|strong="H1004"\w* \w I|strong="H1004"\w* \w and|strong="H1004"\w* \w the|strong="H5975"\w* \w half|strong="H2677"\w* \w of|strong="H1004"\w* \w the|strong="H5975"\w* \w rulers|strong="H5461"\w* \w with|strong="H5973"\w* \w me|strong="H5973"\w*; +\v 41 \w and|strong="H3548"\w* \w the|strong="H3548"\w* \w priests|strong="H3548"\w*, Eliakim, \w Maaseiah|strong="H4641"\w*, \w Miniamin|strong="H4509"\w*, \w Micaiah|strong="H4320"\w*, Elioenai, \w Zechariah|strong="H2148"\w*, \w and|strong="H3548"\w* \w Hananiah|strong="H2608"\w*, \w with|strong="H3548"\w* \w trumpets|strong="H2689"\w*; +\v 42 \w and|strong="H8085"\w* \w Maaseiah|strong="H4641"\w*, \w Shemaiah|strong="H8098"\w*, Eleazar, \w Uzzi|strong="H5813"\w*, \w Jehohanan|strong="H3076"\w*, \w Malchijah|strong="H4441"\w*, \w Elam|strong="H5867"\w*, \w and|strong="H8085"\w* \w Ezer|strong="H5829"\w*. \w The|strong="H8085"\w* \w singers|strong="H7891"\w* \w sang|strong="H7891"\w* \w loud|strong="H8085"\w*, \w with|strong="H8085"\w* \w Jezrahiah|strong="H3156"\w* \w their|strong="H8085"\w* \w overseer|strong="H6496"\w*. +\v 43 \w They|strong="H3588"\w* \w offered|strong="H2076"\w* \w great|strong="H1419"\w* \w sacrifices|strong="H2077"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w*, \w and|strong="H3117"\w* \w rejoiced|strong="H8055"\w*, \w for|strong="H3588"\w* God \w had|strong="H3588"\w* \w made|strong="H8055"\w* \w them|strong="H8055"\w* \w rejoice|strong="H8055"\w* \w with|strong="H3389"\w* \w great|strong="H1419"\w* \w joy|strong="H8057"\w*; \w and|strong="H3117"\w* \w the|strong="H8085"\w* women \w and|strong="H3117"\w* \w the|strong="H8085"\w* \w children|strong="H3206"\w* \w also|strong="H1571"\w* \w rejoiced|strong="H8055"\w*, \w so|strong="H1571"\w* \w that|strong="H3588"\w* \w the|strong="H8085"\w* \w joy|strong="H8057"\w* \w of|strong="H3117"\w* \w Jerusalem|strong="H3389"\w* \w was|strong="H1931"\w* \w heard|strong="H8085"\w* \w even|strong="H1571"\w* \w far|strong="H7350"\w* \w away|strong="H7350"\w*. +\p +\v 44 \w On|strong="H5921"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w*, \w men|strong="H6485"\w* \w were|strong="H3881"\w* \w appointed|strong="H5975"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* rooms \w for|strong="H3588"\w* \w the|strong="H5921"\w* treasures, \w for|strong="H3588"\w* \w the|strong="H5921"\w* wave \w offerings|strong="H8641"\w*, \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w first|strong="H7225"\w* \w fruits|strong="H7225"\w*, \w and|strong="H3063"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w tithes|strong="H4643"\w*, \w to|strong="H5921"\w* \w gather|strong="H3664"\w* \w into|strong="H5921"\w* \w them|strong="H5921"\w* \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w fields|strong="H7704"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w cities|strong="H5892"\w* \w the|strong="H5921"\w* \w portions|strong="H4521"\w* \w appointed|strong="H5975"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w law|strong="H8451"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w* \w and|strong="H3063"\w* \w Levites|strong="H3881"\w*; \w for|strong="H3588"\w* \w Judah|strong="H3063"\w* \w rejoiced|strong="H8057"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w* \w and|strong="H3063"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w* \w who|strong="H1931"\w* \w served|strong="H5975"\w*. +\v 45 They \w performed|strong="H8104"\w* \w the|strong="H8104"\w* \w duty|strong="H4931"\w* \w of|strong="H1121"\w* \w their|strong="H8104"\w* God \w and|strong="H1121"\w* \w the|strong="H8104"\w* \w duty|strong="H4931"\w* \w of|strong="H1121"\w* \w the|strong="H8104"\w* \w purification|strong="H2893"\w*, \w and|strong="H1121"\w* so \w did|strong="H1732"\w* \w the|strong="H8104"\w* \w singers|strong="H7891"\w* \w and|strong="H1121"\w* \w the|strong="H8104"\w* \w gatekeepers|strong="H7778"\w*, according \w to|strong="H8104"\w* \w the|strong="H8104"\w* \w commandment|strong="H4687"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w* \w his|strong="H8104"\w* \w son|strong="H1121"\w*. +\v 46 \w For|strong="H3588"\w* \w in|strong="H3117"\w* \w the|strong="H3588"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w David|strong="H1732"\w* \w and|strong="H3117"\w* Asaph \w of|strong="H3117"\w* \w old|strong="H6924"\w* \w there|strong="H3117"\w* \w was|strong="H1732"\w* \w a|strong="H3068"\w* \w chief|strong="H7218"\w* \w of|strong="H3117"\w* \w the|strong="H3588"\w* \w singers|strong="H7891"\w*, \w and|strong="H3117"\w* \w songs|strong="H7892"\w* \w of|strong="H3117"\w* \w praise|strong="H8416"\w* \w and|strong="H3117"\w* \w thanksgiving|strong="H3034"\w* \w to|strong="H3117"\w* God. +\v 47 \w All|strong="H3605"\w* \w Israel|strong="H3478"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w Zerubbabel|strong="H2216"\w* \w and|strong="H1121"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w Nehemiah|strong="H5166"\w* \w gave|strong="H5414"\w* \w the|strong="H3605"\w* \w portions|strong="H4521"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w singers|strong="H7891"\w* \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w gatekeepers|strong="H7778"\w*, \w as|strong="H1697"\w* \w every|strong="H3605"\w* \w day|strong="H3117"\w* \w required|strong="H3117"\w*; \w and|strong="H1121"\w* \w they|strong="H3117"\w* \w set|strong="H5414"\w* \w apart|strong="H6942"\w* \w that|strong="H3605"\w* \w which|strong="H1697"\w* \w was|strong="H3478"\w* \w for|strong="H3117"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*; \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w set|strong="H5414"\w* \w apart|strong="H6942"\w* \w that|strong="H3605"\w* \w which|strong="H1697"\w* \w was|strong="H3478"\w* \w for|strong="H3117"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* Aaron. +\c 13 +\p +\v 1 \w On|strong="H3117"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w* \w they|strong="H3117"\w* \w read|strong="H7121"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w book|strong="H5612"\w* \w of|strong="H3117"\w* \w Moses|strong="H4872"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* hearing \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w people|strong="H5971"\w*; \w and|strong="H4872"\w* \w it|strong="H1931"\w* \w was|strong="H1931"\w* \w found|strong="H4672"\w* \w written|strong="H3789"\w* \w in|strong="H3117"\w* \w it|strong="H1931"\w* \w that|strong="H5971"\w* \w an|strong="H4672"\w* \w Ammonite|strong="H5984"\w* \w and|strong="H4872"\w* \w a|strong="H3068"\w* \w Moabite|strong="H4125"\w* \w should|strong="H3117"\w* \w not|strong="H3808"\w* enter \w into|strong="H5704"\w* \w the|strong="H3117"\w* \w assembly|strong="H6951"\w* \w of|strong="H3117"\w* \w God|strong="H3808"\w* \w forever|strong="H5769"\w*, +\v 2 \w because|strong="H3588"\w* \w they|strong="H3588"\w* didn’t \w meet|strong="H6923"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w with|strong="H5921"\w* \w bread|strong="H3899"\w* \w and|strong="H1121"\w* \w with|strong="H5921"\w* \w water|strong="H4325"\w*, \w but|strong="H3588"\w* \w hired|strong="H7936"\w* \w Balaam|strong="H1109"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w* \w to|strong="H3478"\w* \w curse|strong="H7045"\w* \w them|strong="H5921"\w*; \w however|strong="H3588"\w*, \w our|strong="H5921"\w* \w God|strong="H3808"\w* \w turned|strong="H2015"\w* \w the|strong="H5921"\w* \w curse|strong="H7045"\w* \w into|strong="H2015"\w* \w a|strong="H3068"\w* \w blessing|strong="H1293"\w*. +\v 3 \w It|strong="H1961"\w* \w came|strong="H1961"\w* \w to|strong="H3478"\w* \w pass|strong="H1961"\w*, \w when|strong="H1961"\w* \w they|strong="H3605"\w* \w had|strong="H1961"\w* \w heard|strong="H8085"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w*, \w that|strong="H3605"\w* \w they|strong="H3605"\w* separated \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w mixed|strong="H6154"\w* \w multitude|strong="H6154"\w* \w from|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\p +\v 4 \w Now|strong="H2088"\w* \w before|strong="H6440"\w* \w this|strong="H2088"\w*, Eliashib \w the|strong="H6440"\w* \w priest|strong="H3548"\w*, \w who|strong="H3548"\w* \w was|strong="H1004"\w* \w appointed|strong="H5414"\w* \w over|strong="H5414"\w* \w the|strong="H6440"\w* \w rooms|strong="H3957"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w our|strong="H5414"\w* \w God|strong="H5414"\w*, \w being|strong="H1004"\w* \w allied|strong="H7138"\w* \w to|strong="H5414"\w* \w Tobiah|strong="H2900"\w*, +\v 5 \w had|strong="H1961"\w* \w prepared|strong="H6213"\w* \w for|strong="H6213"\w* \w him|strong="H5414"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w room|strong="H3957"\w*, \w where|strong="H8033"\w* \w before|strong="H6440"\w* \w they|strong="H8033"\w* \w laid|strong="H5414"\w* \w the|strong="H6440"\w* \w meal|strong="H4503"\w* \w offerings|strong="H4503"\w*, \w the|strong="H6440"\w* \w frankincense|strong="H3828"\w*, \w the|strong="H6440"\w* \w vessels|strong="H3627"\w*, \w and|strong="H1419"\w* \w the|strong="H6440"\w* \w tithes|strong="H4643"\w* \w of|strong="H3627"\w* \w the|strong="H6440"\w* \w grain|strong="H1715"\w*, \w the|strong="H6440"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w*, \w and|strong="H1419"\w* \w the|strong="H6440"\w* \w oil|strong="H3323"\w*, \w which|strong="H8033"\w* \w were|strong="H1961"\w* \w given|strong="H5414"\w* \w by|strong="H5414"\w* \w commandment|strong="H4687"\w* \w to|strong="H1961"\w* \w the|strong="H6440"\w* \w Levites|strong="H3881"\w*, \w the|strong="H6440"\w* \w singers|strong="H7891"\w*, \w and|strong="H1419"\w* \w the|strong="H6440"\w* \w gatekeepers|strong="H7778"\w*; \w and|strong="H1419"\w* \w the|strong="H6440"\w* wave \w offerings|strong="H4503"\w* \w for|strong="H6213"\w* \w the|strong="H6440"\w* \w priests|strong="H3548"\w*. +\v 6 \w But|strong="H3588"\w* \w in|strong="H8141"\w* \w all|strong="H3605"\w* \w this|strong="H2088"\w*, \w I|strong="H3588"\w* \w was|strong="H1961"\w* \w not|strong="H3808"\w* \w at|strong="H3117"\w* \w Jerusalem|strong="H3389"\w*; \w for|strong="H3588"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w thirty-second|strong="H7970"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* Artaxerxes \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w I|strong="H3588"\w* \w went|strong="H4428"\w* \w to|strong="H1961"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*; \w and|strong="H4428"\w* \w after|strong="H7093"\w* \w some|strong="H4480"\w* \w days|strong="H3117"\w* \w I|strong="H3588"\w* \w asked|strong="H7592"\w* \w leave|strong="H4480"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, +\v 7 \w and|strong="H1004"\w* \w I|strong="H1004"\w* \w came|strong="H7451"\w* \w to|strong="H6213"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H1004"\w* understood \w the|strong="H6213"\w* \w evil|strong="H7451"\w* \w that|strong="H2691"\w* Eliashib \w had|strong="H3389"\w* \w done|strong="H6213"\w* \w for|strong="H6213"\w* \w Tobiah|strong="H2900"\w*, \w in|strong="H6213"\w* \w preparing|strong="H6213"\w* \w him|strong="H6213"\w* \w a|strong="H3068"\w* \w room|strong="H1004"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w courts|strong="H2691"\w* \w of|strong="H1004"\w* God’s \w house|strong="H1004"\w*. +\v 8 \w It|strong="H7993"\w* \w grieved|strong="H7489"\w* \w me|strong="H4480"\w* \w severely|strong="H3966"\w*. Therefore \w I|strong="H4480"\w* \w threw|strong="H7993"\w* \w all|strong="H3605"\w* \w Tobiah|strong="H2900"\w*’s \w household|strong="H1004"\w* \w stuff|strong="H3627"\w* \w out|strong="H2351"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w room|strong="H1004"\w*. +\v 9 \w Then|strong="H7725"\w* \w I|strong="H1004"\w* commanded, \w and|strong="H7725"\w* \w they|strong="H8033"\w* \w cleansed|strong="H2891"\w* \w the|strong="H7725"\w* \w rooms|strong="H3957"\w*. \w I|strong="H1004"\w* \w brought|strong="H7725"\w* \w into|strong="H7725"\w* \w them|strong="H7725"\w* \w the|strong="H7725"\w* \w vessels|strong="H3627"\w* \w of|strong="H1004"\w* God’s \w house|strong="H1004"\w*, \w with|strong="H1004"\w* \w the|strong="H7725"\w* \w meal|strong="H4503"\w* \w offerings|strong="H4503"\w* \w and|strong="H7725"\w* \w the|strong="H7725"\w* \w frankincense|strong="H3828"\w* \w again|strong="H7725"\w*. +\p +\v 10 \w I|strong="H3588"\w* \w perceived|strong="H3045"\w* \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w portions|strong="H4521"\w* \w of|strong="H7704"\w* \w the|strong="H3588"\w* \w Levites|strong="H3881"\w* \w had|strong="H3588"\w* \w not|strong="H3808"\w* \w been|strong="H3808"\w* \w given|strong="H5414"\w* \w them|strong="H5414"\w*, \w so|strong="H6213"\w* \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w Levites|strong="H3881"\w* \w and|strong="H7704"\w* \w the|strong="H3588"\w* \w singers|strong="H7891"\w*, \w who|strong="H3881"\w* \w did|strong="H6213"\w* \w the|strong="H3588"\w* \w work|strong="H4399"\w*, \w had|strong="H3588"\w* \w each|strong="H5414"\w* \w fled|strong="H1272"\w* \w to|strong="H6213"\w* \w his|strong="H5414"\w* \w field|strong="H7704"\w*. +\v 11 \w Then|strong="H5975"\w* \w I|strong="H5921"\w* \w contended|strong="H7378"\w* \w with|strong="H1004"\w* \w the|strong="H5921"\w* \w rulers|strong="H5461"\w*, \w and|strong="H1004"\w* said, “\w Why|strong="H4069"\w* \w is|strong="H1004"\w* God’s \w house|strong="H1004"\w* \w forsaken|strong="H5800"\w*?” \w I|strong="H5921"\w* \w gathered|strong="H6908"\w* \w them|strong="H5921"\w* \w together|strong="H6908"\w*, \w and|strong="H1004"\w* \w set|strong="H5975"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w their|strong="H5921"\w* \w place|strong="H1004"\w*. +\v 12 \w Then|strong="H3063"\w* \w all|strong="H3605"\w* \w Judah|strong="H3063"\w* brought \w the|strong="H3605"\w* \w tithe|strong="H4643"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w grain|strong="H1715"\w*, \w the|strong="H3605"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w*, \w and|strong="H3063"\w* \w the|strong="H3605"\w* \w oil|strong="H3323"\w* \w to|strong="H3063"\w* \w the|strong="H3605"\w* treasuries. +\v 13 \w I|strong="H3588"\w* \w made|strong="H2803"\w* treasurers \w over|strong="H5921"\w* \w the|strong="H5921"\w* treasuries, \w Shelemiah|strong="H8018"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w*, \w and|strong="H1121"\w* \w Zadok|strong="H6659"\w* \w the|strong="H5921"\w* \w scribe|strong="H5608"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w*, \w Pedaiah|strong="H6305"\w*: \w and|strong="H1121"\w* \w next|strong="H5921"\w* \w to|strong="H5921"\w* \w them|strong="H5921"\w* \w was|strong="H1121"\w* \w Hanan|strong="H2605"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zaccur|strong="H2139"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Mattaniah|strong="H4983"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H1121"\w* \w counted|strong="H2803"\w* faithful, \w and|strong="H1121"\w* \w their|strong="H5921"\w* business \w was|strong="H1121"\w* \w to|strong="H5921"\w* \w distribute|strong="H2505"\w* \w to|strong="H5921"\w* \w their|strong="H5921"\w* \w brothers|strong="H1121"\w*. +\p +\v 14 \w Remember|strong="H2142"\w* \w me|strong="H5921"\w*, \w my|strong="H5921"\w* God, \w concerning|strong="H5921"\w* \w this|strong="H2063"\w*, \w and|strong="H1004"\w* don’t \w wipe|strong="H4229"\w* \w out|strong="H4229"\w* \w my|strong="H5921"\w* \w good|strong="H2617"\w* \w deeds|strong="H2617"\w* \w that|strong="H6213"\w* \w I|strong="H5921"\w* \w have|strong="H1004"\w* \w done|strong="H6213"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w my|strong="H5921"\w* God, \w and|strong="H1004"\w* \w for|strong="H5921"\w* \w its|strong="H5921"\w* observances. +\p +\v 15 \w In|strong="H5921"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w* \w I|strong="H3117"\w* \w saw|strong="H7200"\w* \w some|strong="H1992"\w* \w men|strong="H3605"\w* \w treading|strong="H1869"\w* \w wine|strong="H3196"\w* \w presses|strong="H1660"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w Sabbath|strong="H7676"\w* \w in|strong="H5921"\w* \w Judah|strong="H3063"\w*, bringing \w in|strong="H5921"\w* \w sheaves|strong="H6194"\w*, \w and|strong="H3063"\w* \w loading|strong="H6006"\w* \w donkeys|strong="H2543"\w* \w with|strong="H5921"\w* \w wine|strong="H3196"\w*, \w grapes|strong="H6025"\w*, \w figs|strong="H8384"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H3117"\w* \w burdens|strong="H4853"\w* \w which|strong="H1992"\w* \w they|strong="H1992"\w* brought \w into|strong="H5921"\w* \w Jerusalem|strong="H3389"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w*; \w and|strong="H3063"\w* \w I|strong="H3117"\w* \w testified|strong="H5749"\w* \w against|strong="H5921"\w* \w them|strong="H1992"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w in|strong="H5921"\w* \w which|strong="H1992"\w* \w they|strong="H1992"\w* \w sold|strong="H4376"\w* \w food|strong="H6718"\w*. +\v 16 \w Some|strong="H3605"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Tyre|strong="H6876"\w* \w also|strong="H1121"\w* \w lived|strong="H3427"\w* \w there|strong="H3427"\w*, \w who|strong="H3605"\w* brought \w in|strong="H3427"\w* \w fish|strong="H1709"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H1121"\w* wares, \w and|strong="H1121"\w* \w sold|strong="H4376"\w* \w on|strong="H3427"\w* \w the|strong="H3605"\w* \w Sabbath|strong="H7676"\w* \w to|strong="H3389"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w and|strong="H1121"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*. +\v 17 \w Then|strong="H2088"\w* \w I|strong="H3117"\w* \w contended|strong="H7378"\w* \w with|strong="H6213"\w* \w the|strong="H6213"\w* \w nobles|strong="H2715"\w* \w of|strong="H3117"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w said|strong="H1697"\w* \w to|strong="H6213"\w* \w them|strong="H6213"\w*, “\w What|strong="H4100"\w* \w evil|strong="H7451"\w* \w thing|strong="H1697"\w* \w is|strong="H2088"\w* \w this|strong="H2088"\w* \w that|strong="H3117"\w* \w you|strong="H3117"\w* \w do|strong="H6213"\w*, \w and|strong="H3063"\w* \w profane|strong="H2490"\w* \w the|strong="H6213"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w*? +\v 18 Didn’t \w your|strong="H3605"\w* fathers \w do|strong="H6213"\w* \w this|strong="H2063"\w*, \w and|strong="H3478"\w* didn’t \w our|strong="H3605"\w* \w God|strong="H3808"\w* \w bring|strong="H6213"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w evil|strong="H7451"\w* \w on|strong="H5921"\w* \w us|strong="H5921"\w* \w and|strong="H3478"\w* \w on|strong="H5921"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w*? \w Yet|strong="H3808"\w* \w you|strong="H3605"\w* \w bring|strong="H6213"\w* \w more|strong="H3808"\w* \w wrath|strong="H2740"\w* \w on|strong="H5921"\w* \w Israel|strong="H3478"\w* \w by|strong="H5921"\w* \w profaning|strong="H2490"\w* \w the|strong="H3605"\w* \w Sabbath|strong="H7676"\w*.” +\p +\v 19 \w It|strong="H5921"\w* \w came|strong="H1961"\w* \w to|strong="H5704"\w* \w pass|strong="H1961"\w* \w that|strong="H3117"\w* \w when|strong="H1961"\w* \w the|strong="H6440"\w* \w gates|strong="H8179"\w* \w of|strong="H3117"\w* \w Jerusalem|strong="H3389"\w* \w began|strong="H1961"\w* \w to|strong="H5704"\w* \w be|strong="H1961"\w* \w dark|strong="H6751"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w Sabbath|strong="H7676"\w*, \w I|strong="H3117"\w* commanded \w that|strong="H3117"\w* \w the|strong="H6440"\w* \w doors|strong="H1817"\w* \w should|strong="H3117"\w* \w be|strong="H1961"\w* \w shut|strong="H5462"\w*, \w and|strong="H3117"\w* commanded \w that|strong="H3117"\w* \w they|strong="H3117"\w* \w should|strong="H3117"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w opened|strong="H6605"\w* \w until|strong="H5704"\w* \w after|strong="H5921"\w* \w the|strong="H6440"\w* \w Sabbath|strong="H7676"\w*. \w I|strong="H3117"\w* \w set|strong="H5975"\w* \w some|strong="H3117"\w* \w of|strong="H3117"\w* \w my|strong="H5921"\w* \w servants|strong="H5288"\w* \w over|strong="H5921"\w* \w the|strong="H6440"\w* \w gates|strong="H8179"\w*, \w so|strong="H1961"\w* \w that|strong="H3117"\w* \w no|strong="H3808"\w* \w burden|strong="H4853"\w* \w should|strong="H3117"\w* \w be|strong="H1961"\w* \w brought|strong="H1961"\w* \w in|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w*. +\v 20 So \w the|strong="H3605"\w* \w merchants|strong="H7402"\w* \w and|strong="H3389"\w* \w sellers|strong="H4376"\w* \w of|strong="H3605"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H3605"\w* wares camped \w outside|strong="H2351"\w* \w of|strong="H3605"\w* \w Jerusalem|strong="H3389"\w* \w once|strong="H6471"\w* \w or|strong="H4376"\w* \w twice|strong="H6471"\w*. +\v 21 \w Then|strong="H7971"\w* \w I|strong="H6256"\w* \w testified|strong="H5749"\w* \w against|strong="H4480"\w* \w them|strong="H7971"\w*, \w and|strong="H7971"\w* said \w to|strong="H7971"\w* \w them|strong="H7971"\w*, “\w Why|strong="H4069"\w* \w do|strong="H8138"\w* \w you|strong="H7971"\w* \w stay|strong="H3885"\w* \w around|strong="H3027"\w* \w the|strong="H4480"\w* \w wall|strong="H2346"\w*? \w If|strong="H1931"\w* \w you|strong="H7971"\w* \w do|strong="H8138"\w* \w so|strong="H4480"\w* \w again|strong="H7971"\w*, \w I|strong="H6256"\w* \w will|strong="H3027"\w* \w lay|strong="H7971"\w* \w hands|strong="H3027"\w* \w on|strong="H3027"\w* \w you|strong="H7971"\w*.” \w From|strong="H4480"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w* \w on|strong="H3027"\w*, \w they|strong="H3808"\w* didn’t \w come|strong="H2346"\w* \w on|strong="H3027"\w* \w the|strong="H4480"\w* \w Sabbath|strong="H7676"\w*. +\v 22 \w I|strong="H3117"\w* \w commanded|strong="H1571"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w* \w that|strong="H3117"\w* \w they|strong="H3117"\w* \w should|strong="H3117"\w* \w purify|strong="H2891"\w* \w themselves|strong="H6942"\w*, \w and|strong="H3117"\w* \w that|strong="H3117"\w* \w they|strong="H3117"\w* \w should|strong="H3117"\w* \w come|strong="H1961"\w* \w and|strong="H3117"\w* \w keep|strong="H8104"\w* \w the|strong="H5921"\w* \w gates|strong="H8179"\w*, \w to|strong="H1961"\w* \w sanctify|strong="H6942"\w* \w the|strong="H5921"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w*. \w Remember|strong="H2142"\w* \w me|strong="H5921"\w* \w for|strong="H5921"\w* \w this|strong="H2063"\w* \w also|strong="H1571"\w*, \w my|strong="H8104"\w* God, \w and|strong="H3117"\w* \w spare|strong="H2347"\w* \w me|strong="H5921"\w* \w according|strong="H5921"\w* \w to|strong="H1961"\w* \w the|strong="H5921"\w* \w greatness|strong="H7230"\w* \w of|strong="H3117"\w* \w your|strong="H5921"\w* loving \w kindness|strong="H2617"\w*. +\p +\v 23 \w In|strong="H3427"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w* \w I|strong="H3117"\w* \w also|strong="H1571"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w Jews|strong="H3064"\w* \w who|strong="H3427"\w* \w had|strong="H3064"\w* \w married|strong="H3427"\w* \w women|strong="H1992"\w* \w of|strong="H3117"\w* Ashdod, \w of|strong="H3117"\w* \w Ammon|strong="H4125"\w*, \w and|strong="H3117"\w* \w of|strong="H3117"\w* \w Moab|strong="H4125"\w*; +\v 24 \w and|strong="H1121"\w* \w their|strong="H5234"\w* \w children|strong="H1121"\w* \w spoke|strong="H1696"\w* \w half|strong="H2677"\w* \w in|strong="H1696"\w* \w the|strong="H1696"\w* \w speech|strong="H3956"\w* \w of|strong="H1121"\w* Ashdod, \w and|strong="H1121"\w* \w could|strong="H5234"\w* \w not|strong="H1696"\w* \w speak|strong="H1696"\w* \w in|strong="H1696"\w* \w the|strong="H1696"\w* Jews’ \w language|strong="H3956"\w*, \w but|strong="H1696"\w* according \w to|strong="H1696"\w* \w the|strong="H1696"\w* \w language|strong="H3956"\w* \w of|strong="H1121"\w* \w each|strong="H5971"\w* \w people|strong="H5971"\w*. +\v 25 \w I|strong="H5414"\w* \w contended|strong="H7378"\w* \w with|strong="H5973"\w* \w them|strong="H5414"\w*, \w cursed|strong="H7043"\w* \w them|strong="H5414"\w*, \w struck|strong="H5221"\w* certain \w of|strong="H1121"\w* \w them|strong="H5414"\w*, plucked \w off|strong="H5375"\w* \w their|strong="H5375"\w* \w hair|strong="H4803"\w*, \w and|strong="H1121"\w* \w made|strong="H5414"\w* \w them|strong="H5414"\w* \w swear|strong="H7650"\w* \w by|strong="H7650"\w* \w God|strong="H5414"\w*, “\w You|strong="H5414"\w* \w shall|strong="H1121"\w* \w not|strong="H5414"\w* \w give|strong="H5414"\w* \w your|strong="H5414"\w* \w daughters|strong="H1323"\w* \w to|strong="H5414"\w* \w their|strong="H5375"\w* \w sons|strong="H1121"\w*, \w nor|strong="H1121"\w* \w take|strong="H5375"\w* \w their|strong="H5375"\w* \w daughters|strong="H1323"\w* \w for|strong="H1121"\w* \w your|strong="H5414"\w* \w sons|strong="H1121"\w*, \w or|strong="H1121"\w* \w for|strong="H1121"\w* \w yourselves|strong="H5375"\w*. +\v 26 Didn’t \w Solomon|strong="H8010"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w sin|strong="H2398"\w* \w by|strong="H5921"\w* \w these|strong="H3605"\w* \w things|strong="H3605"\w*? \w Yet|strong="H1571"\w* \w among|strong="H5921"\w* \w many|strong="H7227"\w* \w nations|strong="H1471"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w king|strong="H4428"\w* \w like|strong="H3644"\w* \w him|strong="H5414"\w*, \w and|strong="H3478"\w* \w he|strong="H3605"\w* \w was|strong="H1961"\w* loved \w by|strong="H5921"\w* \w his|strong="H3605"\w* \w God|strong="H5414"\w*, \w and|strong="H3478"\w* \w God|strong="H5414"\w* \w made|strong="H5414"\w* \w him|strong="H5414"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*. \w Nevertheless|strong="H1571"\w* \w foreign|strong="H5237"\w* women \w caused|strong="H5414"\w* \w even|strong="H1571"\w* \w him|strong="H5414"\w* \w to|strong="H3478"\w* \w sin|strong="H2398"\w*. +\v 27 \w Shall|strong="H7451"\w* \w we|strong="H3068"\w* \w then|strong="H6213"\w* \w listen|strong="H8085"\w* \w to|strong="H6213"\w* \w you|strong="H3605"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w great|strong="H1419"\w* \w evil|strong="H7451"\w*, \w to|strong="H6213"\w* \w trespass|strong="H4603"\w* \w against|strong="H2063"\w* \w our|strong="H3605"\w* God \w in|strong="H3427"\w* \w marrying|strong="H3427"\w* \w foreign|strong="H5237"\w* \w women|strong="H7451"\w*?” +\p +\v 28 \w One|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Joiada|strong="H3111"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Eliashib \w the|strong="H5921"\w* \w high|strong="H1419"\w* \w priest|strong="H3548"\w*, \w was|strong="H1121"\w* \w son-in-law|strong="H2860"\w* \w to|strong="H5921"\w* \w Sanballat|strong="H5571"\w* \w the|strong="H5921"\w* \w Horonite|strong="H2772"\w*; \w therefore|strong="H5921"\w* \w I|strong="H5921"\w* \w chased|strong="H1272"\w* \w him|strong="H5921"\w* \w from|strong="H5921"\w* \w me|strong="H5921"\w*. +\v 29 \w Remember|strong="H2142"\w* \w them|strong="H1992"\w*, \w my|strong="H5921"\w* God, \w because|strong="H5921"\w* \w they|strong="H1992"\w* \w have|strong="H1992"\w* \w defiled|strong="H1352"\w* \w the|strong="H5921"\w* \w priesthood|strong="H3550"\w* \w and|strong="H1285"\w* \w the|strong="H5921"\w* \w covenant|strong="H1285"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w priesthood|strong="H3550"\w* \w and|strong="H1285"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w*. +\p +\v 30 Thus \w I|strong="H3605"\w* \w cleansed|strong="H2891"\w* \w them|strong="H5975"\w* \w from|strong="H3881"\w* \w all|strong="H3605"\w* \w foreigners|strong="H5236"\w* \w and|strong="H3548"\w* \w appointed|strong="H5975"\w* \w duties|strong="H4931"\w* \w for|strong="H5975"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H3548"\w* \w for|strong="H5975"\w* \w the|strong="H3605"\w* \w Levites|strong="H3881"\w*, \w everyone|strong="H3605"\w* \w in|strong="H5975"\w* \w his|strong="H3605"\w* \w work|strong="H4399"\w*; +\v 31 \w and|strong="H6086"\w* \w for|strong="H6086"\w* \w the|strong="H2142"\w* \w wood|strong="H6086"\w* \w offering|strong="H7133"\w*, \w at|strong="H2896"\w* \w appointed|strong="H2163"\w* \w times|strong="H6256"\w*, \w and|strong="H6086"\w* \w for|strong="H6086"\w* \w the|strong="H2142"\w* \w first|strong="H1061"\w* \w fruits|strong="H1061"\w*. \w Remember|strong="H2142"\w* \w me|strong="H2142"\w*, \w my|strong="H2142"\w* God, \w for|strong="H6086"\w* \w good|strong="H2896"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/18-ESTeng-web.usfm b/bibles/eng-web_usfm/18-ESTeng-web.usfm new file mode 100644 index 0000000..913627a --- /dev/null +++ b/bibles/eng-web_usfm/18-ESTeng-web.usfm @@ -0,0 +1,251 @@ +\id EST World English Bible (WEB) +\ide UTF-8 +\h Esther +\toc1 The Book of Esther +\toc2 Esther +\toc3 Est +\mt2 The Book of +\mt1 Esther +\c 1 +\p +\v 1 \w Now|strong="H1961"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* Ahasuerus (\w this|strong="H1931"\w* \w is|strong="H1931"\w* Ahasuerus \w who|strong="H1931"\w* \w reigned|strong="H4427"\w* \w from|strong="H3117"\w* \w India|strong="H1912"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Ethiopia|strong="H3568"\w*, \w over|strong="H4427"\w* \w one|strong="H1931"\w* \w hundred|strong="H3967"\w* \w twenty-seven|strong="H6242"\w* \w provinces|strong="H4082"\w*), +\v 2 \w in|strong="H5921"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*, \w when|strong="H3117"\w* \w the|strong="H5921"\w* \w King|strong="H4428"\w* Ahasuerus \w sat|strong="H7675"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w throne|strong="H3678"\w* \w of|strong="H4428"\w* \w his|strong="H5921"\w* \w kingdom|strong="H4438"\w*, \w which|strong="H1992"\w* \w was|strong="H3117"\w* \w in|strong="H5921"\w* \w Susa|strong="H7800"\w* \w the|strong="H5921"\w* \w palace|strong="H1002"\w*, +\v 3 \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w third|strong="H7969"\w* \w year|strong="H8141"\w* \w of|strong="H8141"\w* \w his|strong="H3605"\w* \w reign|strong="H4427"\w*, \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w feast|strong="H4960"\w* \w for|strong="H6213"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w princes|strong="H8269"\w* \w and|strong="H5650"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w*; \w the|strong="H3605"\w* \w army|strong="H2426"\w* \w of|strong="H8141"\w* \w Persia|strong="H6539"\w* \w and|strong="H5650"\w* \w Media|strong="H4074"\w*, \w the|strong="H3605"\w* \w nobles|strong="H6579"\w* \w and|strong="H5650"\w* \w princes|strong="H8269"\w* \w of|strong="H8141"\w* \w the|strong="H3605"\w* \w provinces|strong="H4082"\w* \w being|strong="H4427"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 4 \w He|strong="H3117"\w* \w displayed|strong="H7200"\w* \w the|strong="H7200"\w* \w riches|strong="H6239"\w* \w of|strong="H3117"\w* \w his|strong="H7200"\w* \w glorious|strong="H8597"\w* \w kingdom|strong="H4438"\w* \w and|strong="H3967"\w* \w the|strong="H7200"\w* \w honor|strong="H3519"\w* \w of|strong="H3117"\w* \w his|strong="H7200"\w* \w excellent|strong="H8597"\w* \w majesty|strong="H1420"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w*, even \w one|strong="H7200"\w* \w hundred|strong="H3967"\w* \w eighty|strong="H8084"\w* \w days|strong="H3117"\w*. +\p +\v 5 \w When|strong="H3117"\w* \w these|strong="H6213"\w* \w days|strong="H3117"\w* \w were|strong="H5971"\w* \w fulfilled|strong="H4390"\w*, \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w seven|strong="H7651"\w* \w day|strong="H3117"\w* \w feast|strong="H4960"\w* \w for|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w present|strong="H4672"\w* \w in|strong="H6213"\w* \w Susa|strong="H7800"\w* \w the|strong="H3605"\w* \w palace|strong="H1002"\w*, \w both|strong="H3605"\w* \w great|strong="H1419"\w* \w and|strong="H4428"\w* \w small|strong="H6996"\w*, \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w garden|strong="H1594"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w palace|strong="H1002"\w*. +\v 6 There \w were|strong="H5921"\w* hangings \w of|strong="H5982"\w* \w white|strong="H2353"\w* \w and|strong="H3701"\w* \w blue|strong="H8504"\w* material, fastened \w with|strong="H5921"\w* \w cords|strong="H2256"\w* \w of|strong="H5982"\w* \w fine|strong="H8336"\w* \w linen|strong="H8336"\w* \w and|strong="H3701"\w* \w purple|strong="H8504"\w* \w to|strong="H5921"\w* \w silver|strong="H3701"\w* \w rings|strong="H1550"\w* \w and|strong="H3701"\w* \w marble|strong="H8336"\w* \w pillars|strong="H5982"\w*. \w The|strong="H5921"\w* \w couches|strong="H4296"\w* \w were|strong="H5921"\w* \w of|strong="H5982"\w* \w gold|strong="H2091"\w* \w and|strong="H3701"\w* \w silver|strong="H3701"\w*, \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w pavement|strong="H7531"\w* \w of|strong="H5982"\w* red, \w white|strong="H2353"\w*, yellow, \w and|strong="H3701"\w* \w black|strong="H5508"\w* \w marble|strong="H8336"\w*. +\v 7 \w They|strong="H3027"\w* \w gave|strong="H8248"\w* \w them|strong="H3027"\w* \w drinks|strong="H8248"\w* \w in|strong="H4428"\w* \w golden|strong="H2091"\w* \w vessels|strong="H3627"\w* \w of|strong="H4428"\w* various \w kinds|strong="H3627"\w*, \w including|strong="H4428"\w* \w royal|strong="H4438"\w* \w wine|strong="H3196"\w* \w in|strong="H4428"\w* \w abundance|strong="H7227"\w*, \w according|strong="H3027"\w* \w to|strong="H3027"\w* \w the|strong="H3027"\w* \w bounty|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H3027"\w* \w king|strong="H4428"\w*. +\v 8 \w In|strong="H5921"\w* \w accordance|strong="H5921"\w* \w with|strong="H1004"\w* \w the|strong="H3605"\w* \w law|strong="H1881"\w*, \w the|strong="H3605"\w* \w drinking|strong="H8360"\w* \w was|strong="H4428"\w* \w not|strong="H6213"\w* compulsory; \w for|strong="H3588"\w* \w so|strong="H3651"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w had|strong="H4428"\w* \w instructed|strong="H3245"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* officials \w of|strong="H4428"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w should|strong="H3588"\w* \w do|strong="H6213"\w* \w according|strong="H5921"\w* \w to|strong="H6213"\w* \w every|strong="H3605"\w* \w man|strong="H3605"\w*’s \w pleasure|strong="H7522"\w*. +\p +\v 9 \w Also|strong="H1571"\w* \w Vashti|strong="H2060"\w* \w the|strong="H6213"\w* \w queen|strong="H4436"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w feast|strong="H4960"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* women \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w royal|strong="H4438"\w* \w house|strong="H1004"\w* \w which|strong="H1004"\w* belonged \w to|strong="H6213"\w* \w King|strong="H4428"\w* Ahasuerus. +\p +\v 10 \w On|strong="H3117"\w* \w the|strong="H6440"\w* \w seventh|strong="H7637"\w* \w day|strong="H3117"\w*, \w when|strong="H3117"\w* \w the|strong="H6440"\w* \w heart|strong="H3820"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w was|strong="H3820"\w* \w merry|strong="H2896"\w* \w with|strong="H6440"\w* \w wine|strong="H3196"\w*, \w he|strong="H3117"\w* commanded \w Mehuman|strong="H4104"\w*, Biztha, \w Harbona|strong="H2726"\w*, Bigtha, \w and|strong="H4428"\w* Abagtha, \w Zethar|strong="H2242"\w*, \w and|strong="H4428"\w* Carcass, \w the|strong="H6440"\w* \w seven|strong="H7651"\w* \w eunuchs|strong="H5631"\w* \w who|strong="H4428"\w* \w served|strong="H8334"\w* \w in|strong="H4428"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H4428"\w* Ahasuerus \w the|strong="H6440"\w* \w king|strong="H4428"\w*, +\v 11 \w to|strong="H6440"\w* bring \w Vashti|strong="H2060"\w* \w the|strong="H6440"\w* \w queen|strong="H4436"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* wearing \w the|strong="H6440"\w* \w royal|strong="H4438"\w* \w crown|strong="H3804"\w*, \w to|strong="H6440"\w* \w show|strong="H7200"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w and|strong="H4428"\w* \w the|strong="H6440"\w* \w princes|strong="H8269"\w* \w her|strong="H7200"\w* \w beauty|strong="H3308"\w*; \w for|strong="H3588"\w* \w she|strong="H1931"\w* \w was|strong="H1931"\w* \w beautiful|strong="H2896"\w*. +\v 12 \w But|strong="H4428"\w* \w the|strong="H1697"\w* \w queen|strong="H4436"\w* \w Vashti|strong="H2060"\w* \w refused|strong="H3985"\w* \w to|strong="H3027"\w* \w come|strong="H2534"\w* \w at|strong="H4428"\w* \w the|strong="H1697"\w* \w king|strong="H4428"\w*’s \w commandment|strong="H1697"\w* \w by|strong="H3027"\w* \w the|strong="H1697"\w* \w eunuchs|strong="H5631"\w*. Therefore \w the|strong="H1697"\w* \w king|strong="H4428"\w* \w was|strong="H1697"\w* \w very|strong="H3966"\w* \w angry|strong="H7107"\w*, \w and|strong="H4428"\w* \w his|strong="H3027"\w* \w anger|strong="H2534"\w* \w burned|strong="H1197"\w* \w in|strong="H4428"\w* \w him|strong="H3027"\w*. +\p +\v 13 \w Then|strong="H3651"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w said|strong="H1697"\w* \w to|strong="H6256"\w* \w the|strong="H3605"\w* \w wise|strong="H2450"\w* \w men|strong="H2450"\w*, \w who|strong="H3605"\w* \w knew|strong="H3045"\w* \w the|strong="H3605"\w* \w times|strong="H6256"\w* (\w for|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H1697"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w custom|strong="H3651"\w* \w to|strong="H6256"\w* consult \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w knew|strong="H3045"\w* \w law|strong="H1881"\w* \w and|strong="H4428"\w* \w judgment|strong="H1779"\w*; +\v 14 \w and|strong="H4428"\w* \w next|strong="H7138"\w* \w to|strong="H6440"\w* \w him|strong="H6440"\w* \w were|strong="H8269"\w* \w Carshena|strong="H3771"\w*, \w Shethar|strong="H8369"\w*, Admatha, \w Tarshish|strong="H8659"\w*, \w Meres|strong="H4825"\w*, \w Marsena|strong="H4826"\w*, \w and|strong="H4428"\w* \w Memucan|strong="H4462"\w*, \w the|strong="H6440"\w* \w seven|strong="H7651"\w* \w princes|strong="H8269"\w* \w of|strong="H4428"\w* \w Persia|strong="H6539"\w* \w and|strong="H4428"\w* \w Media|strong="H4074"\w*, \w who|strong="H3427"\w* \w saw|strong="H7200"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w face|strong="H6440"\w*, \w and|strong="H4428"\w* \w sat|strong="H3427"\w* \w first|strong="H7223"\w* \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w kingdom|strong="H4438"\w*), +\v 15 “\w What|strong="H4100"\w* \w shall|strong="H4428"\w* \w we|strong="H3068"\w* \w do|strong="H6213"\w* \w to|strong="H6213"\w* \w Queen|strong="H4436"\w* \w Vashti|strong="H2060"\w* \w according|strong="H5921"\w* \w to|strong="H6213"\w* \w law|strong="H1881"\w*, \w because|strong="H5921"\w* \w she|strong="H5921"\w* \w has|strong="H4428"\w* \w not|strong="H3808"\w* \w done|strong="H6213"\w* \w the|strong="H5921"\w* bidding \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w King|strong="H4428"\w* Ahasuerus \w by|strong="H3027"\w* \w the|strong="H5921"\w* \w eunuchs|strong="H5631"\w*?” +\p +\v 16 \w Memucan|strong="H4462"\w* answered \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w*, “\w Vashti|strong="H2060"\w* \w the|strong="H3605"\w* \w queen|strong="H4436"\w* \w has|strong="H4428"\w* \w not|strong="H3808"\w* \w done|strong="H3605"\w* \w wrong|strong="H5753"\w* \w to|strong="H5921"\w* \w just|strong="H3605"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w but|strong="H3588"\w* \w also|strong="H4428"\w* \w to|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w*, \w and|strong="H4428"\w* \w to|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w are|strong="H5971"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w provinces|strong="H4082"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w King|strong="H4428"\w* Ahasuerus. +\v 17 \w For|strong="H3588"\w* \w this|strong="H1697"\w* \w deed|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w queen|strong="H4436"\w* \w will|strong="H4428"\w* \w become|strong="H3318"\w* \w known|strong="H3808"\w* \w to|strong="H3318"\w* \w all|strong="H3605"\w* women, causing \w them|strong="H5921"\w* \w to|strong="H3318"\w* show contempt \w for|strong="H3588"\w* \w their|strong="H3605"\w* \w husbands|strong="H1167"\w* \w when|strong="H3588"\w* \w it|strong="H5921"\w* \w is|strong="H1697"\w* \w reported|strong="H3318"\w*, ‘\w King|strong="H4428"\w* Ahasuerus commanded \w Vashti|strong="H2060"\w* \w the|strong="H3605"\w* \w queen|strong="H4436"\w* \w to|strong="H3318"\w* \w be|strong="H3808"\w* \w brought|strong="H3318"\w* \w in|strong="H5921"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, \w but|strong="H3588"\w* \w she|strong="H3588"\w* didn’t \w come|strong="H3318"\w*.’ +\v 18 \w Today|strong="H3117"\w*, \w the|strong="H3605"\w* \w princesses|strong="H8282"\w* \w of|strong="H4428"\w* \w Persia|strong="H6539"\w* \w and|strong="H4428"\w* \w Media|strong="H4074"\w* \w who|strong="H3605"\w* \w have|strong="H1697"\w* \w heard|strong="H8085"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w queen|strong="H4436"\w*’s \w deed|strong="H1697"\w* \w will|strong="H4428"\w* \w tell|strong="H8085"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w princes|strong="H8269"\w*. \w This|strong="H2088"\w* \w will|strong="H4428"\w* \w cause|strong="H1697"\w* \w much|strong="H1697"\w* contempt \w and|strong="H4428"\w* \w wrath|strong="H7110"\w*. +\p +\v 19 “If \w it|strong="H5414"\w* \w pleases|strong="H2895"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*, \w let|strong="H5414"\w* \w a|strong="H3068"\w* \w royal|strong="H4438"\w* \w commandment|strong="H1697"\w* \w go|strong="H3318"\w* \w from|strong="H4480"\w* \w him|strong="H5414"\w*, \w and|strong="H4428"\w* \w let|strong="H5414"\w* \w it|strong="H5414"\w* \w be|strong="H3808"\w* \w written|strong="H3789"\w* \w among|strong="H4480"\w* \w the|strong="H6440"\w* \w laws|strong="H1881"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w Persians|strong="H6539"\w* \w and|strong="H4428"\w* \w the|strong="H6440"\w* \w Medes|strong="H4074"\w*, \w so|strong="H4480"\w* \w that|strong="H1697"\w* \w it|strong="H5414"\w* \w cannot|strong="H3808"\w* \w be|strong="H3808"\w* \w altered|strong="H5674"\w*, \w that|strong="H1697"\w* \w Vashti|strong="H2060"\w* \w may|strong="H4428"\w* \w never|strong="H3808"\w* \w again|strong="H6440"\w* \w come|strong="H3318"\w* \w before|strong="H6440"\w* \w King|strong="H4428"\w* Ahasuerus; \w and|strong="H4428"\w* \w let|strong="H5414"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w give|strong="H5414"\w* \w her|strong="H5414"\w* \w royal|strong="H4438"\w* \w estate|strong="H4438"\w* \w to|strong="H3318"\w* \w another|strong="H7468"\w* \w who|strong="H4428"\w* \w is|strong="H1697"\w* \w better|strong="H2896"\w* \w than|strong="H4480"\w* \w she|strong="H5921"\w*. +\v 20 \w When|strong="H3588"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w decree|strong="H6599"\w* \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w shall|strong="H4428"\w* \w make|strong="H6213"\w* \w is|strong="H1931"\w* \w published|strong="H8085"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w kingdom|strong="H4438"\w* (\w for|strong="H3588"\w* \w it|strong="H5414"\w* \w is|strong="H1931"\w* \w great|strong="H1419"\w*), \w all|strong="H3605"\w* \w the|strong="H3605"\w* wives \w will|strong="H4428"\w* \w give|strong="H5414"\w* \w their|strong="H3605"\w* \w husbands|strong="H1167"\w* \w honor|strong="H3366"\w*, \w both|strong="H3605"\w* \w great|strong="H1419"\w* \w and|strong="H4428"\w* \w small|strong="H6996"\w*.” +\p +\v 21 \w This|strong="H6213"\w* \w advice|strong="H1697"\w* \w pleased|strong="H3190"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w the|strong="H6213"\w* \w princes|strong="H8269"\w*, \w and|strong="H4428"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w* \w did|strong="H6213"\w* according \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w word|strong="H1697"\w* \w of|strong="H4428"\w* \w Memucan|strong="H4462"\w*: +\v 22 \w for|strong="H7971"\w* \w he|strong="H3605"\w* \w sent|strong="H7971"\w* \w letters|strong="H5612"\w* \w into|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w provinces|strong="H4082"\w*, \w into|strong="H1961"\w* \w every|strong="H3605"\w* \w province|strong="H4082"\w* according \w to|strong="H1696"\w* \w its|strong="H3605"\w* \w writing|strong="H3791"\w*, \w and|strong="H7971"\w* \w to|strong="H1696"\w* \w every|strong="H3605"\w* \w people|strong="H5971"\w* \w in|strong="H1004"\w* \w their|strong="H3605"\w* \w language|strong="H3956"\w*, \w that|strong="H5971"\w* \w every|strong="H3605"\w* \w man|strong="H3605"\w* \w should|strong="H4428"\w* \w rule|strong="H8323"\w* \w his|strong="H3605"\w* \w own|strong="H1961"\w* \w house|strong="H1004"\w*, \w speaking|strong="H1696"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* \w language|strong="H3956"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* \w own|strong="H1961"\w* \w people|strong="H5971"\w*. +\c 2 +\p +\v 1 \w After|strong="H5921"\w* \w these|strong="H6213"\w* \w things|strong="H1697"\w*, \w when|strong="H6213"\w* \w the|strong="H5921"\w* \w wrath|strong="H2534"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* Ahasuerus \w was|strong="H1697"\w* \w pacified|strong="H7918"\w*, \w he|strong="H6213"\w* \w remembered|strong="H2142"\w* \w Vashti|strong="H2060"\w*, \w and|strong="H4428"\w* \w what|strong="H1697"\w* \w she|strong="H5921"\w* \w had|strong="H4428"\w* \w done|strong="H6213"\w*, \w and|strong="H4428"\w* \w what|strong="H1697"\w* \w was|strong="H1697"\w* \w decreed|strong="H1504"\w* \w against|strong="H5921"\w* \w her|strong="H5921"\w*. +\v 2 \w Then|strong="H4428"\w* \w the|strong="H1245"\w* \w king|strong="H4428"\w*’s \w servants|strong="H5288"\w* \w who|strong="H5288"\w* \w served|strong="H8334"\w* \w him|strong="H1245"\w* said, “Let \w beautiful|strong="H2896"\w* \w young|strong="H5288"\w* \w virgins|strong="H1330"\w* \w be|strong="H4428"\w* \w sought|strong="H1245"\w* \w for|strong="H4428"\w* \w the|strong="H1245"\w* \w king|strong="H4428"\w*. +\v 3 \w Let|strong="H5414"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w appoint|strong="H6485"\w* \w officers|strong="H5631"\w* \w in|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w provinces|strong="H4082"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* \w kingdom|strong="H4438"\w*, \w that|strong="H3605"\w* \w they|strong="H3605"\w* \w may|strong="H4428"\w* \w gather|strong="H6908"\w* \w together|strong="H6908"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w beautiful|strong="H2896"\w* \w young|strong="H5291"\w* \w virgins|strong="H1330"\w* \w to|strong="H5414"\w* \w the|strong="H3605"\w* \w citadel|strong="H1002"\w* \w of|strong="H4428"\w* \w Susa|strong="H7800"\w*, \w to|strong="H5414"\w* \w the|strong="H3605"\w* \w women|strong="H1330"\w*’s \w house|strong="H1004"\w*, \w to|strong="H5414"\w* \w the|strong="H3605"\w* \w custody|strong="H3027"\w* \w of|strong="H4428"\w* \w Hegai|strong="H1896"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w eunuch|strong="H5631"\w*, \w keeper|strong="H8104"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w women|strong="H1330"\w*. \w Let|strong="H5414"\w* \w cosmetics|strong="H8562"\w* \w be|strong="H3027"\w* \w given|strong="H5414"\w* \w them|strong="H5414"\w*; +\v 4 \w and|strong="H4428"\w* \w let|strong="H3651"\w* \w the|strong="H6213"\w* \w maiden|strong="H5291"\w* \w who|strong="H4428"\w* \w pleases|strong="H5869"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w* \w be|strong="H1697"\w* \w queen|strong="H4427"\w* \w instead|strong="H8478"\w* \w of|strong="H4428"\w* \w Vashti|strong="H2060"\w*.” \w The|strong="H6213"\w* \w thing|strong="H1697"\w* \w pleased|strong="H3190"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w*, \w and|strong="H4428"\w* \w he|strong="H3651"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*. +\p +\v 5 \w There|strong="H1961"\w* \w was|strong="H8034"\w* \w a|strong="H3068"\w* certain \w Jew|strong="H3064"\w* \w in|strong="H1121"\w* \w the|strong="H1961"\w* \w citadel|strong="H1002"\w* \w of|strong="H1121"\w* \w Susa|strong="H7800"\w* \w whose|strong="H1121"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Mordecai|strong="H4782"\w*, \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jair|strong="H2971"\w*, \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shimei|strong="H8096"\w*, \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kish|strong="H7027"\w*, \w a|strong="H3068"\w* \w Benjamite|strong="H1145"\w*, +\v 6 \w who|strong="H3063"\w* \w had|strong="H4428"\w* been \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w from|strong="H1540"\w* \w Jerusalem|strong="H3389"\w* \w with|strong="H5973"\w* \w the|strong="H5973"\w* \w captives|strong="H1473"\w* \w who|strong="H3063"\w* \w had|strong="H4428"\w* been \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w with|strong="H5973"\w* \w Jeconiah|strong="H3204"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, whom \w Nebuchadnezzar|strong="H5019"\w* \w the|strong="H5973"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w had|strong="H4428"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w*. +\v 7 \w He|strong="H1931"\w* \w brought|strong="H3947"\w* \w up|strong="H3947"\w* \w Hadassah|strong="H1919"\w*, \w that|strong="H3588"\w* \w is|strong="H1931"\w*, Esther, \w his|strong="H3947"\w* \w uncle|strong="H1730"\w*’s \w daughter|strong="H1323"\w*; \w for|strong="H3588"\w* \w she|strong="H1931"\w* \w had|strong="H1961"\w* neither father \w nor|strong="H8389"\w* mother. \w The|strong="H3588"\w* \w maiden|strong="H5291"\w* \w was|strong="H1961"\w* \w fair|strong="H3303"\w* \w and|strong="H2896"\w* \w beautiful|strong="H3303"\w*; \w and|strong="H2896"\w* \w when|strong="H3588"\w* \w her|strong="H3947"\w* father \w and|strong="H2896"\w* mother \w were|strong="H1961"\w* \w dead|strong="H4194"\w*, \w Mordecai|strong="H4782"\w* \w took|strong="H3947"\w* \w her|strong="H3947"\w* \w for|strong="H3588"\w* \w his|strong="H3947"\w* \w own|strong="H1961"\w* \w daughter|strong="H1323"\w*. +\p +\v 8 \w So|strong="H3947"\w*, \w when|strong="H1961"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w*’s \w commandment|strong="H1697"\w* \w and|strong="H4428"\w* \w his|strong="H8104"\w* \w decree|strong="H1881"\w* \w was|strong="H1961"\w* \w heard|strong="H8085"\w*, \w and|strong="H4428"\w* \w when|strong="H1961"\w* \w many|strong="H7227"\w* \w maidens|strong="H5291"\w* \w were|strong="H1961"\w* \w gathered|strong="H6908"\w* \w together|strong="H6908"\w* \w to|strong="H1961"\w* \w the|strong="H8085"\w* \w citadel|strong="H1002"\w* \w of|strong="H4428"\w* \w Susa|strong="H7800"\w*, \w to|strong="H1961"\w* \w the|strong="H8085"\w* \w custody|strong="H3027"\w* \w of|strong="H4428"\w* \w Hegai|strong="H1896"\w*, Esther \w was|strong="H1961"\w* \w taken|strong="H3947"\w* \w into|strong="H3027"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w to|strong="H1961"\w* \w the|strong="H8085"\w* \w custody|strong="H3027"\w* \w of|strong="H4428"\w* \w Hegai|strong="H1896"\w*, \w keeper|strong="H8104"\w* \w of|strong="H4428"\w* \w the|strong="H8085"\w* \w women|strong="H5291"\w*. +\v 9 \w The|strong="H6440"\w* \w maiden|strong="H5291"\w* \w pleased|strong="H3190"\w* \w him|strong="H5414"\w*, \w and|strong="H4428"\w* \w she|strong="H6440"\w* \w obtained|strong="H5375"\w* \w kindness|strong="H2617"\w* \w from|strong="H6440"\w* \w him|strong="H5414"\w*. \w He|strong="H1004"\w* quickly \w gave|strong="H5414"\w* \w her|strong="H5414"\w* \w cosmetics|strong="H8562"\w* \w and|strong="H4428"\w* \w her|strong="H5414"\w* \w portions|strong="H4490"\w* \w of|strong="H4428"\w* \w food|strong="H1004"\w*, \w and|strong="H4428"\w* \w the|strong="H6440"\w* \w seven|strong="H7651"\w* \w choice|strong="H2896"\w* \w maidens|strong="H5291"\w* \w who|strong="H4428"\w* \w were|strong="H5869"\w* \w to|strong="H5414"\w* \w be|strong="H5414"\w* \w given|strong="H5414"\w* \w her|strong="H5414"\w* \w out|strong="H5414"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*. \w He|strong="H1004"\w* moved \w her|strong="H5414"\w* \w and|strong="H4428"\w* \w her|strong="H5414"\w* \w maidens|strong="H5291"\w* \w to|strong="H5414"\w* \w the|strong="H6440"\w* \w best|strong="H2896"\w* \w place|strong="H5414"\w* \w in|strong="H1004"\w* \w the|strong="H6440"\w* \w women|strong="H5291"\w*’s \w house|strong="H1004"\w*. +\v 10 Esther \w had|strong="H3588"\w* \w not|strong="H3808"\w* \w made|strong="H5046"\w* \w known|strong="H5046"\w* \w her|strong="H5046"\w* \w people|strong="H5971"\w* \w nor|strong="H3808"\w* \w her|strong="H5046"\w* \w relatives|strong="H4138"\w*, \w because|strong="H3588"\w* \w Mordecai|strong="H4782"\w* \w had|strong="H3588"\w* \w instructed|strong="H6680"\w* \w her|strong="H5046"\w* \w that|strong="H3588"\w* \w she|strong="H3588"\w* \w should|strong="H3588"\w* \w not|strong="H3808"\w* \w make|strong="H5046"\w* \w it|strong="H5921"\w* \w known|strong="H5046"\w*. +\v 11 \w Mordecai|strong="H4782"\w* \w walked|strong="H1980"\w* \w every|strong="H3605"\w* \w day|strong="H3117"\w* \w in|strong="H1980"\w* \w front|strong="H6440"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* women’s \w house|strong="H1004"\w*, \w to|strong="H1980"\w* \w find|strong="H3045"\w* \w out|strong="H6213"\w* \w how|strong="H4100"\w* Esther \w was|strong="H3117"\w* \w doing|strong="H6213"\w*, \w and|strong="H1980"\w* \w what|strong="H4100"\w* \w would|strong="H6213"\w* \w become|strong="H6213"\w* \w of|strong="H1004"\w* \w her|strong="H3605"\w*. +\p +\v 12 \w Each|strong="H3117"\w* \w young|strong="H5291"\w* \w woman|strong="H5291"\w*’s \w turn|strong="H8447"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w go|strong="H1961"\w* \w in|strong="H4428"\w* \w to|strong="H1961"\w* \w King|strong="H4428"\w* Ahasuerus \w after|strong="H7093"\w* \w her|strong="H4390"\w* \w purification|strong="H8562"\w* \w for|strong="H3588"\w* \w twelve|strong="H8147"\w* \w months|strong="H2320"\w* (\w for|strong="H3588"\w* \w so|strong="H3651"\w* \w were|strong="H1961"\w* \w the|strong="H3588"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w their|strong="H4390"\w* \w purification|strong="H8562"\w* \w accomplished|strong="H4390"\w*, \w six|strong="H8337"\w* \w months|strong="H2320"\w* \w with|strong="H4390"\w* \w oil|strong="H8081"\w* \w of|strong="H4428"\w* \w myrrh|strong="H4753"\w*, \w and|strong="H4428"\w* \w six|strong="H8337"\w* \w months|strong="H2320"\w* \w with|strong="H4390"\w* \w sweet|strong="H1314"\w* fragrances \w and|strong="H4428"\w* \w with|strong="H4390"\w* preparations \w for|strong="H3588"\w* beautifying \w women|strong="H5291"\w*). +\v 13 \w The|strong="H3605"\w* \w young|strong="H5291"\w* \w woman|strong="H5291"\w* \w then|strong="H2088"\w* \w came|strong="H4428"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w like|strong="H5973"\w* \w this|strong="H2088"\w*: \w whatever|strong="H3605"\w* \w she|strong="H5704"\w* desired \w was|strong="H4428"\w* \w given|strong="H5414"\w* \w her|strong="H3605"\w* \w to|strong="H5704"\w* \w go|strong="H4428"\w* \w with|strong="H5973"\w* \w her|strong="H3605"\w* \w out|strong="H5414"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w women|strong="H5291"\w*’s \w house|strong="H1004"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*. +\v 14 \w In|strong="H1004"\w* \w the|strong="H3588"\w* \w evening|strong="H6153"\w* \w she|strong="H1931"\w* \w went|strong="H4428"\w*, \w and|strong="H7725"\w* \w on|strong="H3027"\w* \w the|strong="H3588"\w* \w next|strong="H3027"\w* \w day|strong="H1242"\w* \w she|strong="H1931"\w* \w returned|strong="H7725"\w* \w into|strong="H7725"\w* \w the|strong="H3588"\w* \w second|strong="H8145"\w* women’s \w house|strong="H1004"\w*, \w to|strong="H7725"\w* \w the|strong="H3588"\w* \w custody|strong="H3027"\w* \w of|strong="H4428"\w* \w Shaashgaz|strong="H8190"\w*, \w the|strong="H3588"\w* \w king|strong="H4428"\w*’s \w eunuch|strong="H5631"\w*, \w who|strong="H1931"\w* \w kept|strong="H8104"\w* \w the|strong="H3588"\w* \w concubines|strong="H6370"\w*. \w She|strong="H1931"\w* \w came|strong="H7725"\w* \w in|strong="H1004"\w* \w to|strong="H7725"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w*, \w unless|strong="H3588"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w delighted|strong="H2654"\w* \w in|strong="H1004"\w* \w her|strong="H7121"\w*, \w and|strong="H7725"\w* \w she|strong="H1931"\w* \w was|strong="H8034"\w* \w called|strong="H7121"\w* \w by|strong="H3027"\w* \w name|strong="H8034"\w*. +\p +\v 15 \w Now|strong="H1961"\w* \w when|strong="H3588"\w* \w the|strong="H3605"\w* \w turn|strong="H8447"\w* \w of|strong="H4428"\w* Esther, \w the|strong="H3605"\w* \w daughter|strong="H1323"\w* \w of|strong="H4428"\w* Abihail \w the|strong="H3605"\w* \w uncle|strong="H1730"\w* \w of|strong="H4428"\w* \w Mordecai|strong="H4782"\w*, \w who|strong="H3605"\w* \w had|strong="H1961"\w* \w taken|strong="H3947"\w* \w her|strong="H3605"\w* \w for|strong="H3588"\w* \w his|strong="H3605"\w* \w daughter|strong="H1323"\w*, \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w go|strong="H1961"\w* \w in|strong="H4428"\w* \w to|strong="H1961"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w she|strong="H3588"\w* \w required|strong="H1245"\w* \w nothing|strong="H3808"\w* \w but|strong="H3588"\w* \w what|strong="H1697"\w* \w Hegai|strong="H1896"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w eunuch|strong="H5631"\w*, \w the|strong="H3605"\w* \w keeper|strong="H8104"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w women|strong="H1323"\w*, advised. Esther \w obtained|strong="H5375"\w* \w favor|strong="H2580"\w* \w in|strong="H4428"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w looked|strong="H7200"\w* \w at|strong="H4428"\w* \w her|strong="H3605"\w*. +\p +\v 16 \w So|strong="H3947"\w* Esther \w was|strong="H1931"\w* \w taken|strong="H3947"\w* \w to|strong="H4428"\w* \w King|strong="H4428"\w* Ahasuerus \w into|strong="H3947"\w* \w his|strong="H3947"\w* \w royal|strong="H4438"\w* \w house|strong="H1004"\w* \w in|strong="H8141"\w* \w the|strong="H3947"\w* \w tenth|strong="H6224"\w* \w month|strong="H2320"\w*, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H3947"\w* \w month|strong="H2320"\w* \w Tebeth|strong="H2887"\w*, \w in|strong="H8141"\w* \w the|strong="H3947"\w* \w seventh|strong="H7651"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w his|strong="H3947"\w* \w reign|strong="H4438"\w*. +\v 17 \w The|strong="H3605"\w* \w king|strong="H4428"\w* loved Esther more \w than|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w women|strong="H1330"\w*, \w and|strong="H4428"\w* \w she|strong="H6440"\w* \w obtained|strong="H5375"\w* \w favor|strong="H2580"\w* \w and|strong="H4428"\w* \w kindness|strong="H2617"\w* \w in|strong="H4428"\w* \w his|strong="H3605"\w* \w sight|strong="H6440"\w* more \w than|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w virgins|strong="H1330"\w*; \w so|strong="H5375"\w* \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w set|strong="H7760"\w* \w the|strong="H3605"\w* \w royal|strong="H4438"\w* \w crown|strong="H3804"\w* \w on|strong="H7760"\w* \w her|strong="H3605"\w* \w head|strong="H7218"\w*, \w and|strong="H4428"\w* \w made|strong="H7760"\w* \w her|strong="H3605"\w* \w queen|strong="H4427"\w* \w instead|strong="H8478"\w* \w of|strong="H4428"\w* \w Vashti|strong="H2060"\w*. +\p +\v 18 \w Then|strong="H5414"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w feast|strong="H4960"\w* \w for|strong="H6213"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w princes|strong="H8269"\w* \w and|strong="H4428"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w*, \w even|strong="H6213"\w* Esther’s \w feast|strong="H4960"\w*; \w and|strong="H4428"\w* \w he|strong="H6213"\w* proclaimed \w a|strong="H3068"\w* \w holiday|strong="H2010"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w provinces|strong="H4082"\w*, \w and|strong="H4428"\w* \w gave|strong="H5414"\w* \w gifts|strong="H4864"\w* \w according|strong="H3027"\w* \w to|strong="H6213"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w bounty|strong="H3027"\w*. +\p +\v 19 \w When|strong="H3427"\w* \w the|strong="H6908"\w* \w virgins|strong="H1330"\w* \w were|strong="H4428"\w* \w gathered|strong="H6908"\w* \w together|strong="H6908"\w* \w the|strong="H6908"\w* \w second|strong="H8145"\w* \w time|strong="H8145"\w*, \w Mordecai|strong="H4782"\w* \w was|strong="H4428"\w* \w sitting|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H6908"\w* \w king|strong="H4428"\w*’s \w gate|strong="H8179"\w*. +\v 20 Esther \w had|strong="H1961"\w* \w not|strong="H6213"\w* \w yet|strong="H5921"\w* \w made|strong="H6213"\w* \w known|strong="H5046"\w* \w her|strong="H5046"\w* \w relatives|strong="H4138"\w* nor \w her|strong="H5046"\w* \w people|strong="H5971"\w*, \w as|strong="H1961"\w* \w Mordecai|strong="H4782"\w* \w had|strong="H1961"\w* \w commanded|strong="H6680"\w* \w her|strong="H5046"\w*; \w for|strong="H5921"\w* Esther obeyed \w Mordecai|strong="H4782"\w*, \w like|strong="H1961"\w* \w she|strong="H5921"\w* \w did|strong="H6213"\w* \w when|strong="H1961"\w* \w she|strong="H5921"\w* \w was|strong="H1961"\w* \w brought|strong="H6213"\w* \w up|strong="H5921"\w* \w by|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 21 \w In|strong="H3427"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*, \w while|strong="H3117"\w* \w Mordecai|strong="H4782"\w* \w was|strong="H3117"\w* \w sitting|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H8104"\w* \w king|strong="H4428"\w*’s \w gate|strong="H8179"\w*, \w two|strong="H8147"\w* \w of|strong="H4428"\w* \w the|strong="H8104"\w* \w king|strong="H4428"\w*’s \w eunuchs|strong="H5631"\w*, Bigthan \w and|strong="H7971"\w* \w Teresh|strong="H8657"\w*, \w who|strong="H3427"\w* \w were|strong="H3117"\w* \w doorkeepers|strong="H8104"\w*, \w were|strong="H3117"\w* \w angry|strong="H7107"\w*, \w and|strong="H7971"\w* \w sought|strong="H1245"\w* \w to|strong="H7971"\w* \w lay|strong="H7971"\w* \w hands|strong="H3027"\w* \w on|strong="H3117"\w* \w the|strong="H8104"\w* \w King|strong="H4428"\w* Ahasuerus. +\v 22 \w This|strong="H1697"\w* \w thing|strong="H1697"\w* \w became|strong="H1697"\w* \w known|strong="H3045"\w* \w to|strong="H4428"\w* \w Mordecai|strong="H4782"\w*, \w who|strong="H4428"\w* \w informed|strong="H3045"\w* Esther \w the|strong="H3045"\w* \w queen|strong="H4436"\w*; \w and|strong="H4428"\w* Esther \w informed|strong="H3045"\w* \w the|strong="H3045"\w* \w king|strong="H4428"\w* \w in|strong="H4428"\w* \w Mordecai|strong="H4782"\w*’s \w name|strong="H8034"\w*. +\v 23 \w When|strong="H3117"\w* \w this|strong="H1697"\w* \w matter|strong="H1697"\w* \w was|strong="H1697"\w* \w investigated|strong="H1245"\w*, \w and|strong="H4428"\w* \w it|strong="H5921"\w* \w was|strong="H1697"\w* \w found|strong="H4672"\w* \w to|strong="H5921"\w* \w be|strong="H1697"\w* \w so|strong="H1697"\w*, \w they|strong="H3117"\w* \w were|strong="H3117"\w* \w both|strong="H8147"\w* \w hanged|strong="H8518"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w gallows|strong="H6086"\w*; \w and|strong="H4428"\w* \w it|strong="H5921"\w* \w was|strong="H1697"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w chronicles|strong="H1697"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w presence|strong="H6440"\w*. +\c 3 +\p +\v 1 \w After|strong="H5921"\w* \w these|strong="H7760"\w* \w things|strong="H1697"\w* \w King|strong="H4428"\w* Ahasuerus \w promoted|strong="H1431"\w* \w Haman|strong="H2001"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hammedatha|strong="H4099"\w* \w the|strong="H3605"\w* Agagite, \w and|strong="H1121"\w* \w advanced|strong="H5375"\w* \w him|strong="H5921"\w*, \w and|strong="H1121"\w* \w set|strong="H7760"\w* \w his|strong="H3605"\w* \w seat|strong="H3678"\w* \w above|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w with|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 2 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w servants|strong="H5650"\w* \w who|strong="H3605"\w* \w were|strong="H5650"\w* \w in|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w gate|strong="H8179"\w* \w bowed|strong="H7812"\w* \w down|strong="H7812"\w* \w and|strong="H4428"\w* \w paid|strong="H7812"\w* \w homage|strong="H7812"\w* \w to|strong="H4428"\w* \w Haman|strong="H2001"\w*, \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w had|strong="H4428"\w* \w so|strong="H3651"\w* \w commanded|strong="H6680"\w* \w concerning|strong="H6680"\w* \w him|strong="H6680"\w*. \w But|strong="H3588"\w* \w Mordecai|strong="H4782"\w* didn’t \w bow|strong="H7812"\w* \w down|strong="H7812"\w* \w or|strong="H3808"\w* pay \w him|strong="H6680"\w* \w homage|strong="H7812"\w*. +\v 3 \w Then|strong="H5674"\w* \w the|strong="H5674"\w* \w king|strong="H4428"\w*’s \w servants|strong="H5650"\w* \w who|strong="H5650"\w* \w were|strong="H5650"\w* \w in|strong="H4428"\w* \w the|strong="H5674"\w* \w king|strong="H4428"\w*’s \w gate|strong="H8179"\w* said \w to|strong="H4428"\w* \w Mordecai|strong="H4782"\w*, “\w Why|strong="H4069"\w* do \w you|strong="H4428"\w* disobey \w the|strong="H5674"\w* \w king|strong="H4428"\w*’s \w commandment|strong="H4687"\w*?” +\v 4 \w Now|strong="H1961"\w* \w it|strong="H1931"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w pass|strong="H1961"\w*, \w when|strong="H3588"\w* \w they|strong="H1992"\w* \w spoke|strong="H1697"\w* \w daily|strong="H3117"\w* \w to|strong="H1961"\w* \w him|strong="H5046"\w*, \w and|strong="H3117"\w* \w he|strong="H1931"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H1961"\w* \w them|strong="H1992"\w*, \w that|strong="H3588"\w* \w they|strong="H1992"\w* \w told|strong="H5046"\w* \w Haman|strong="H2001"\w*, \w to|strong="H1961"\w* \w see|strong="H7200"\w* \w whether|strong="H7200"\w* \w Mordecai|strong="H4782"\w*’s \w reason|strong="H1697"\w* \w would|strong="H1697"\w* \w stand|strong="H5975"\w*; \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w had|strong="H1961"\w* \w told|strong="H5046"\w* \w them|strong="H1992"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w Jew|strong="H3064"\w*. +\v 5 \w When|strong="H3588"\w* \w Haman|strong="H2001"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w Mordecai|strong="H4782"\w* didn’t \w bow|strong="H7812"\w* \w down|strong="H7812"\w* \w nor|strong="H3588"\w* pay \w him|strong="H7200"\w* \w homage|strong="H7812"\w*, \w Haman|strong="H2001"\w* \w was|strong="H2001"\w* \w full|strong="H4390"\w* \w of|strong="H4390"\w* \w wrath|strong="H2534"\w*. +\v 6 \w But|strong="H3588"\w* \w he|strong="H3588"\w* scorned \w the|strong="H3605"\w* \w thought|strong="H5869"\w* \w of|strong="H3027"\w* laying \w hands|strong="H3027"\w* \w on|strong="H3027"\w* \w Mordecai|strong="H4782"\w* alone, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3588"\w* \w made|strong="H3605"\w* \w known|strong="H5046"\w* \w to|strong="H7971"\w* \w him|strong="H7971"\w* \w Mordecai|strong="H4782"\w*’s \w people|strong="H5971"\w*. \w Therefore|strong="H3588"\w* \w Haman|strong="H2001"\w* \w sought|strong="H1245"\w* \w to|strong="H7971"\w* \w destroy|strong="H8045"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w throughout|strong="H3605"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w kingdom|strong="H4438"\w* \w of|strong="H3027"\w* Ahasuerus, \w even|strong="H3588"\w* \w Mordecai|strong="H4782"\w*’s \w people|strong="H5971"\w*. +\p +\v 7 \w In|strong="H8141"\w* \w the|strong="H6440"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H6440"\w* \w month|strong="H2320"\w* \w Nisan|strong="H5212"\w*, \w in|strong="H8141"\w* \w the|strong="H6440"\w* \w twelfth|strong="H8147"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* Ahasuerus, \w they|strong="H3117"\w* \w cast|strong="H5307"\w* \w Pur|strong="H6332"\w*, \w that|strong="H3117"\w* \w is|strong="H1931"\w*, \w the|strong="H6440"\w* \w lot|strong="H1486"\w*, \w before|strong="H6440"\w* \w Haman|strong="H2001"\w* \w from|strong="H6440"\w* \w day|strong="H3117"\w* \w to|strong="H6440"\w* \w day|strong="H3117"\w*, \w and|strong="H4428"\w* \w from|strong="H6440"\w* \w month|strong="H2320"\w* \w to|strong="H6440"\w* \w month|strong="H2320"\w*, \w and|strong="H4428"\w* chose \w the|strong="H6440"\w* \w twelfth|strong="H8147"\w* \w month|strong="H2320"\w*, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H6440"\w* \w month|strong="H2320"\w* Adar. +\v 8 \w Haman|strong="H2001"\w* said \w to|strong="H6213"\w* \w King|strong="H4428"\w* Ahasuerus, “\w There|strong="H3426"\w* \w is|strong="H3426"\w* \w a|strong="H3068"\w* certain \w people|strong="H5971"\w* \w scattered|strong="H6340"\w* \w abroad|strong="H6504"\w* \w and|strong="H4428"\w* \w dispersed|strong="H6504"\w* \w among|strong="H5971"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w in|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w provinces|strong="H4082"\w* \w of|strong="H4428"\w* \w your|strong="H3605"\w* \w kingdom|strong="H4438"\w*, \w and|strong="H4428"\w* \w their|strong="H3605"\w* \w laws|strong="H1881"\w* \w are|strong="H5971"\w* different \w from|strong="H5971"\w* \w other|strong="H3605"\w* \w people|strong="H5971"\w*’s. \w They|strong="H6213"\w* don’t \w keep|strong="H6213"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w laws|strong="H1881"\w*. \w Therefore|strong="H5971"\w* \w it|strong="H6213"\w* \w is|strong="H3426"\w* \w not|strong="H6213"\w* \w for|strong="H6213"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w profit|strong="H7737"\w* \w to|strong="H6213"\w* \w allow|strong="H3240"\w* \w them|strong="H6213"\w* \w to|strong="H6213"\w* remain. +\v 9 If \w it|strong="H5921"\w* \w pleases|strong="H2895"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*, let \w it|strong="H5921"\w* \w be|strong="H3027"\w* \w written|strong="H3789"\w* \w that|strong="H4428"\w* \w they|strong="H5921"\w* \w be|strong="H3027"\w* destroyed; \w and|strong="H3701"\w* \w I|strong="H5921"\w* \w will|strong="H4428"\w* \w pay|strong="H8254"\w* \w ten|strong="H6235"\w* thousand \w talents|strong="H3603"\w*\f + \fr 3:9 \ft A talent is about 30 kilograms or 66 pounds or 965 Troy ounces\f* \w of|strong="H4428"\w* \w silver|strong="H3701"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w hands|strong="H3027"\w* \w of|strong="H4428"\w* \w those|strong="H5921"\w* \w who|strong="H4428"\w* \w are|strong="H3027"\w* \w in|strong="H5921"\w* \w charge|strong="H5921"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w business|strong="H4399"\w*, \w to|strong="H6213"\w* \w bring|strong="H6213"\w* \w it|strong="H5921"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w treasuries|strong="H1595"\w*.” +\p +\v 10 \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w took|strong="H5493"\w* \w his|strong="H5414"\w* \w ring|strong="H2885"\w* \w from|strong="H5493"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w*, \w and|strong="H1121"\w* \w gave|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H5921"\w* \w Haman|strong="H2001"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hammedatha|strong="H4099"\w* \w the|strong="H5921"\w* Agagite, \w the|strong="H5921"\w* \w Jews|strong="H3064"\w*’ \w enemy|strong="H6887"\w*. +\v 11 \w The|strong="H5414"\w* \w king|strong="H4428"\w* said \w to|strong="H6213"\w* \w Haman|strong="H2001"\w*, “\w The|strong="H5414"\w* \w silver|strong="H3701"\w* \w is|strong="H2896"\w* \w given|strong="H5414"\w* \w to|strong="H6213"\w* \w you|strong="H5414"\w*, \w the|strong="H5414"\w* \w people|strong="H5971"\w* \w also|strong="H6213"\w*, \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w with|strong="H6213"\w* \w them|strong="H5414"\w* \w as|strong="H6213"\w* \w it|strong="H5414"\w* \w seems|strong="H2896"\w* \w good|strong="H2896"\w* \w to|strong="H6213"\w* \w you|strong="H5414"\w*.” +\p +\v 12 \w Then|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w scribes|strong="H5608"\w* \w were|strong="H5971"\w* \w called|strong="H7121"\w* \w in|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*, \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w thirteenth|strong="H7969"\w* \w day|strong="H3117"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w month|strong="H2320"\w*; \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w that|strong="H5971"\w* \w Haman|strong="H2001"\w* \w commanded|strong="H6680"\w* \w was|strong="H8034"\w* \w written|strong="H3789"\w* \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s local \w governors|strong="H6346"\w*, \w and|strong="H4428"\w* \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w governors|strong="H6346"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w over|strong="H5921"\w* \w every|strong="H3605"\w* \w province|strong="H4082"\w*, \w and|strong="H4428"\w* \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w of|strong="H4428"\w* \w every|strong="H3605"\w* \w people|strong="H5971"\w*, \w to|strong="H5921"\w* \w every|strong="H3605"\w* \w province|strong="H4082"\w* \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w its|strong="H3605"\w* \w writing|strong="H3791"\w*, \w and|strong="H4428"\w* \w to|strong="H5921"\w* \w every|strong="H3605"\w* \w people|strong="H5971"\w* \w in|strong="H5921"\w* \w their|strong="H3605"\w* \w language|strong="H3956"\w*. \w It|strong="H7121"\w* \w was|strong="H8034"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w name|strong="H8034"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* Ahasuerus, \w and|strong="H4428"\w* \w it|strong="H7121"\w* \w was|strong="H8034"\w* \w sealed|strong="H2856"\w* \w with|strong="H5921"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w ring|strong="H2885"\w*. +\v 13 \w Letters|strong="H5612"\w* \w were|strong="H3117"\w* \w sent|strong="H7971"\w* \w by|strong="H3027"\w* \w couriers|strong="H7323"\w* \w into|strong="H3027"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w provinces|strong="H4082"\w*, \w to|strong="H5704"\w* \w destroy|strong="H8045"\w*, \w to|strong="H5704"\w* \w kill|strong="H2026"\w*, \w and|strong="H7971"\w* \w to|strong="H5704"\w* cause \w to|strong="H5704"\w* perish, \w all|strong="H3605"\w* \w Jews|strong="H3064"\w*, \w both|strong="H8147"\w* \w young|strong="H5288"\w* \w and|strong="H7971"\w* \w old|strong="H2205"\w*, \w little|strong="H2945"\w* \w children|strong="H2945"\w* \w and|strong="H7971"\w* \w women|strong="H2205"\w*, \w in|strong="H4428"\w* \w one|strong="H3605"\w* \w day|strong="H3117"\w*, \w even|strong="H5704"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w thirteenth|strong="H7969"\w* \w day|strong="H3117"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w twelfth|strong="H8147"\w* \w month|strong="H2320"\w*, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H3605"\w* \w month|strong="H2320"\w* Adar, \w and|strong="H7971"\w* \w to|strong="H5704"\w* \w plunder|strong="H7998"\w* \w their|strong="H3605"\w* \w possessions|strong="H7998"\w*. +\v 14 \w A|strong="H3068"\w* \w copy|strong="H6572"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w letter|strong="H3791"\w*, \w that|strong="H5971"\w* \w the|strong="H3605"\w* \w decree|strong="H1881"\w* \w should|strong="H3117"\w* \w be|strong="H1961"\w* \w given|strong="H5414"\w* \w out|strong="H5414"\w* \w in|strong="H3117"\w* \w every|strong="H3605"\w* \w province|strong="H4082"\w*, \w was|strong="H1961"\w* \w published|strong="H1540"\w* \w to|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w*, \w that|strong="H5971"\w* \w they|strong="H3117"\w* \w should|strong="H3117"\w* \w be|strong="H1961"\w* \w ready|strong="H6264"\w* \w against|strong="H3605"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w*. +\v 15 \w The|strong="H5414"\w* \w couriers|strong="H7323"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w in|strong="H3427"\w* haste \w by|strong="H3318"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w*’s \w commandment|strong="H1697"\w*, \w and|strong="H4428"\w* \w the|strong="H5414"\w* \w decree|strong="H1881"\w* \w was|strong="H1697"\w* \w given|strong="H5414"\w* \w out|strong="H3318"\w* \w in|strong="H3427"\w* \w the|strong="H5414"\w* \w citadel|strong="H1002"\w* \w of|strong="H4428"\w* \w Susa|strong="H7800"\w*. \w The|strong="H5414"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w Haman|strong="H2001"\w* \w sat|strong="H3427"\w* \w down|strong="H3427"\w* \w to|strong="H3318"\w* \w drink|strong="H8354"\w*; \w but|strong="H4428"\w* \w the|strong="H5414"\w* \w city|strong="H5892"\w* \w of|strong="H4428"\w* \w Susa|strong="H7800"\w* \w was|strong="H1697"\w* perplexed. +\c 4 +\p +\v 1 \w Now|strong="H3847"\w* \w when|strong="H3318"\w* \w Mordecai|strong="H4782"\w* \w found|strong="H3045"\w* \w out|strong="H3318"\w* \w all|strong="H3605"\w* \w that|strong="H3045"\w* \w was|strong="H5892"\w* \w done|strong="H6213"\w*, \w Mordecai|strong="H4782"\w* \w tore|strong="H7167"\w* \w his|strong="H3605"\w* \w clothes|strong="H3847"\w* \w and|strong="H1419"\w* \w put|strong="H3847"\w* \w on|strong="H3847"\w* \w sackcloth|strong="H8242"\w* \w with|strong="H3847"\w* ashes, \w and|strong="H1419"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H8432"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w and|strong="H1419"\w* \w wailed|strong="H2199"\w* \w loudly|strong="H1419"\w* \w and|strong="H1419"\w* \w bitterly|strong="H4751"\w*. +\v 2 \w He|strong="H3588"\w* \w came|strong="H4428"\w* \w even|strong="H5704"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w gate|strong="H8179"\w*, \w for|strong="H3588"\w* \w no|strong="H6440"\w* \w one|strong="H3588"\w* \w is|strong="H4428"\w* allowed \w inside|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w gate|strong="H8179"\w* \w clothed|strong="H3830"\w* \w with|strong="H6440"\w* \w sackcloth|strong="H8242"\w*. +\v 3 \w In|strong="H4428"\w* \w every|strong="H3605"\w* \w province|strong="H4082"\w*, \w wherever|strong="H3605"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w commandment|strong="H1697"\w* \w and|strong="H4428"\w* \w his|strong="H3605"\w* \w decree|strong="H1881"\w* \w came|strong="H5060"\w*, \w there|strong="H3605"\w* \w was|strong="H1697"\w* \w great|strong="H1419"\w* \w mourning|strong="H4553"\w* \w among|strong="H7227"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w*, \w and|strong="H4428"\w* \w fasting|strong="H6685"\w*, \w and|strong="H4428"\w* \w weeping|strong="H1065"\w*, \w and|strong="H4428"\w* \w wailing|strong="H4553"\w*; \w and|strong="H4428"\w* \w many|strong="H7227"\w* \w lay|strong="H3331"\w* \w in|strong="H4428"\w* \w sackcloth|strong="H8242"\w* \w and|strong="H4428"\w* ashes. +\p +\v 4 Esther’s \w maidens|strong="H5291"\w* \w and|strong="H7971"\w* \w her|strong="H7971"\w* \w eunuchs|strong="H5631"\w* \w came|strong="H3847"\w* \w and|strong="H7971"\w* \w told|strong="H5046"\w* \w her|strong="H7971"\w* \w this|strong="H5046"\w*, \w and|strong="H7971"\w* \w the|strong="H5921"\w* \w queen|strong="H4436"\w* \w was|strong="H3966"\w* \w exceedingly|strong="H3966"\w* \w grieved|strong="H2342"\w*. \w She|strong="H5921"\w* \w sent|strong="H7971"\w* \w clothing|strong="H3847"\w* \w to|strong="H7971"\w* \w Mordecai|strong="H4782"\w*, \w to|strong="H7971"\w* replace \w his|strong="H7971"\w* \w sackcloth|strong="H8242"\w*, \w but|strong="H3808"\w* \w he|strong="H3808"\w* didn’t \w receive|strong="H6901"\w* \w it|strong="H5921"\w*. +\v 5 \w Then|strong="H2088"\w* Esther \w called|strong="H7121"\w* \w for|strong="H5921"\w* \w Hathach|strong="H2047"\w*, \w one|strong="H2088"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w eunuchs|strong="H5631"\w*, \w whom|strong="H6440"\w* \w he|strong="H5921"\w* \w had|strong="H4428"\w* \w appointed|strong="H5975"\w* \w to|strong="H5921"\w* \w attend|strong="H6440"\w* \w her|strong="H5921"\w*, \w and|strong="H4428"\w* \w commanded|strong="H6680"\w* \w him|strong="H6440"\w* \w to|strong="H5921"\w* \w go|strong="H4428"\w* \w to|strong="H5921"\w* \w Mordecai|strong="H4782"\w*, \w to|strong="H5921"\w* \w find|strong="H3045"\w* \w out|strong="H5921"\w* \w what|strong="H4100"\w* \w this|strong="H2088"\w* \w was|strong="H4428"\w*, \w and|strong="H4428"\w* \w why|strong="H4100"\w* \w it|strong="H7121"\w* \w was|strong="H4428"\w*. +\v 6 \w So|strong="H3318"\w* \w Hathach|strong="H2047"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w Mordecai|strong="H4782"\w*, \w to|strong="H3318"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w* \w square|strong="H7339"\w* \w which|strong="H5892"\w* \w was|strong="H5892"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w gate|strong="H8179"\w*. +\v 7 \w Mordecai|strong="H4782"\w* \w told|strong="H5046"\w* \w him|strong="H5921"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w had|strong="H4428"\w* \w happened|strong="H7136"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H3701"\w* \w the|strong="H3605"\w* \w exact|strong="H6575"\w* \w sum|strong="H6575"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w money|strong="H3701"\w* \w that|strong="H3605"\w* \w Haman|strong="H2001"\w* \w had|strong="H4428"\w* promised \w to|strong="H5921"\w* \w pay|strong="H8254"\w* \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w treasuries|strong="H1595"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* destruction \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w*. +\v 8 \w He|strong="H5414"\w* \w also|strong="H4428"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w the|strong="H6440"\w* \w copy|strong="H6572"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w writing|strong="H3791"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w decree|strong="H1881"\w* \w that|strong="H5971"\w* \w was|strong="H4428"\w* \w given|strong="H5414"\w* \w out|strong="H5414"\w* \w in|strong="H5921"\w* \w Susa|strong="H7800"\w* \w to|strong="H5921"\w* \w destroy|strong="H8045"\w* \w them|strong="H5414"\w*, \w to|strong="H5921"\w* \w show|strong="H7200"\w* \w it|strong="H5414"\w* \w to|strong="H5921"\w* Esther, \w and|strong="H4428"\w* \w to|strong="H5921"\w* \w declare|strong="H5046"\w* \w it|strong="H5414"\w* \w to|strong="H5921"\w* \w her|strong="H5414"\w*, \w and|strong="H4428"\w* \w to|strong="H5921"\w* urge \w her|strong="H5414"\w* \w to|strong="H5921"\w* \w go|strong="H5971"\w* \w in|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w to|strong="H5921"\w* \w make|strong="H5414"\w* \w supplication|strong="H2603"\w* \w to|strong="H5921"\w* \w him|strong="H5414"\w*, \w and|strong="H4428"\w* \w to|strong="H5921"\w* \w make|strong="H5414"\w* \w request|strong="H1245"\w* \w before|strong="H6440"\w* \w him|strong="H5414"\w* \w for|strong="H5921"\w* \w her|strong="H5414"\w* \w people|strong="H5971"\w*. +\p +\v 9 \w Hathach|strong="H2047"\w* \w came|strong="H1697"\w* \w and|strong="H1697"\w* \w told|strong="H5046"\w* Esther \w the|strong="H1697"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w Mordecai|strong="H4782"\w*. +\v 10 \w Then|strong="H6680"\w* Esther spoke \w to|strong="H6680"\w* \w Hathach|strong="H2047"\w*, \w and|strong="H6680"\w* \w gave|strong="H6680"\w* \w him|strong="H6680"\w* \w a|strong="H3068"\w* message \w to|strong="H6680"\w* \w Mordecai|strong="H4782"\w*: +\v 11 “\w All|strong="H3605"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w servants|strong="H5650"\w* \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w provinces|strong="H4082"\w* \w know|strong="H3045"\w* \w that|strong="H3045"\w* \w whoever|strong="H3605"\w*, \w whether|strong="H3045"\w* \w man|strong="H4191"\w* \w or|strong="H3808"\w* \w woman|strong="H2088"\w*, \w comes|strong="H3117"\w* \w to|strong="H4191"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w into|strong="H3045"\w* \w the|strong="H3605"\w* \w inner|strong="H6442"\w* \w court|strong="H2691"\w* \w without|strong="H3808"\w* \w being|strong="H5971"\w* \w called|strong="H7121"\w*, \w there|strong="H2088"\w* \w is|strong="H2088"\w* \w one|strong="H2088"\w* \w law|strong="H1881"\w* \w for|strong="H7121"\w* \w him|strong="H7121"\w*, \w that|strong="H3045"\w* \w he|strong="H3117"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*, \w except|strong="H3808"\w* \w those|strong="H3605"\w* \w to|strong="H4191"\w* \w whom|strong="H5971"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w might|strong="H5971"\w* hold \w out|strong="H3447"\w* \w the|strong="H3605"\w* \w golden|strong="H2091"\w* \w scepter|strong="H8275"\w*, \w that|strong="H3045"\w* \w he|strong="H3117"\w* \w may|strong="H5971"\w* \w live|strong="H2421"\w*. \w I|strong="H3117"\w* \w have|strong="H5971"\w* \w not|strong="H3808"\w* \w been|strong="H5971"\w* \w called|strong="H7121"\w* \w to|strong="H4191"\w* \w come|strong="H2421"\w* \w in|strong="H4428"\w* \w to|strong="H4191"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w these|strong="H2088"\w* \w thirty|strong="H7970"\w* \w days|strong="H3117"\w*.” +\p +\v 12 \w They|strong="H1697"\w* \w told|strong="H5046"\w* Esther’s \w words|strong="H1697"\w* \w to|strong="H1697"\w* \w Mordecai|strong="H4782"\w*. +\v 13 \w Then|strong="H7725"\w* \w Mordecai|strong="H4782"\w* asked \w them|strong="H7725"\w* \w to|strong="H7725"\w* \w return|strong="H7725"\w* \w this|strong="H7725"\w* \w answer|strong="H7725"\w* \w to|strong="H7725"\w* Esther: “Don’t \w think|strong="H1819"\w* \w to|strong="H7725"\w* \w yourself|strong="H5315"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w will|strong="H4428"\w* \w escape|strong="H4422"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w* \w any|strong="H3605"\w* \w more|strong="H7725"\w* \w than|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w*. +\v 14 \w For|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w remain|strong="H5975"\w* \w silent|strong="H2790"\w* \w now|strong="H3588"\w*, \w then|strong="H5975"\w* \w relief|strong="H7305"\w* \w and|strong="H1004"\w* \w deliverance|strong="H2020"\w* \w will|strong="H4310"\w* \w come|strong="H5060"\w* \w to|strong="H6256"\w* \w the|strong="H3588"\w* \w Jews|strong="H3064"\w* \w from|strong="H3064"\w* another \w place|strong="H4725"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w and|strong="H1004"\w* \w your|strong="H3045"\w* father’s \w house|strong="H1004"\w* \w will|strong="H4310"\w* perish. \w Who|strong="H4310"\w* \w knows|strong="H3045"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* haven’t \w come|strong="H5060"\w* \w to|strong="H6256"\w* \w the|strong="H3588"\w* \w kingdom|strong="H4438"\w* \w for|strong="H3588"\w* \w such|strong="H2063"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w as|strong="H3588"\w* \w this|strong="H2063"\w*?” +\p +\v 15 \w Then|strong="H7725"\w* Esther asked \w them|strong="H7725"\w* \w to|strong="H7725"\w* \w answer|strong="H7725"\w* \w Mordecai|strong="H4782"\w*, +\v 16 “\w Go|strong="H3212"\w*, \w gather|strong="H3664"\w* \w together|strong="H3664"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w* \w who|strong="H3605"\w* \w are|strong="H3117"\w* \w present|strong="H4672"\w* \w in|strong="H5921"\w* \w Susa|strong="H7800"\w*, \w and|strong="H4428"\w* \w fast|strong="H6684"\w* \w for|strong="H5921"\w* \w me|strong="H5921"\w*, \w and|strong="H4428"\w* \w neither|strong="H3808"\w* eat \w nor|strong="H3808"\w* \w drink|strong="H8354"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*, \w night|strong="H3915"\w* \w or|strong="H3808"\w* \w day|strong="H3117"\w*. \w I|strong="H3117"\w* \w and|strong="H4428"\w* \w my|strong="H3605"\w* \w maidens|strong="H5291"\w* \w will|strong="H4428"\w* \w also|strong="H1571"\w* \w fast|strong="H6684"\w* \w the|strong="H3605"\w* \w same|strong="H3651"\w* \w way|strong="H3212"\w*. \w Then|strong="H3651"\w* \w I|strong="H3117"\w* \w will|strong="H4428"\w* \w go|strong="H3212"\w* \w in|strong="H5921"\w* \w to|strong="H3212"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w which|strong="H3064"\w* \w is|strong="H3117"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* \w law|strong="H1881"\w*; \w and|strong="H4428"\w* \w if|strong="H3651"\w* \w I|strong="H3117"\w* perish, \w I|strong="H3117"\w* perish.” +\v 17 \w So|strong="H6213"\w* \w Mordecai|strong="H4782"\w* \w went|strong="H5674"\w* \w his|strong="H3605"\w* \w way|strong="H5674"\w*, \w and|strong="H6213"\w* \w did|strong="H6213"\w* \w according|strong="H5921"\w* \w to|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* Esther \w had|strong="H4782"\w* \w commanded|strong="H6680"\w* \w him|strong="H5921"\w*. +\c 5 +\p +\v 1 \w Now|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w*, Esther \w put|strong="H3847"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w* \w royal|strong="H4438"\w* \w clothing|strong="H3847"\w* \w and|strong="H4428"\w* \w stood|strong="H5975"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w inner|strong="H6442"\w* \w court|strong="H2691"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w next|strong="H5921"\w* \w to|strong="H1961"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*. \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w sat|strong="H3427"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w royal|strong="H4438"\w* \w throne|strong="H3678"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w royal|strong="H4438"\w* \w house|strong="H1004"\w*, \w next|strong="H5921"\w* \w to|strong="H1961"\w* \w the|strong="H5921"\w* \w entrance|strong="H6607"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*. +\v 2 \w When|strong="H1961"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w* \w saw|strong="H7200"\w* Esther \w the|strong="H7200"\w* \w queen|strong="H4436"\w* \w standing|strong="H5975"\w* \w in|strong="H4428"\w* \w the|strong="H7200"\w* \w court|strong="H2691"\w*, she \w obtained|strong="H5375"\w* \w favor|strong="H2580"\w* \w in|strong="H4428"\w* \w his|strong="H5375"\w* \w sight|strong="H5869"\w*; \w and|strong="H4428"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w* \w held|strong="H4428"\w* \w out|strong="H7200"\w* \w to|strong="H1961"\w* Esther \w the|strong="H7200"\w* \w golden|strong="H2091"\w* \w scepter|strong="H8275"\w* \w that|strong="H7200"\w* \w was|strong="H1961"\w* \w in|strong="H4428"\w* \w his|strong="H5375"\w* \w hand|strong="H3027"\w*. \w So|strong="H1961"\w* Esther \w came|strong="H1961"\w* \w near|strong="H7126"\w* \w and|strong="H4428"\w* \w touched|strong="H5060"\w* \w the|strong="H7200"\w* \w top|strong="H7218"\w* \w of|strong="H4428"\w* \w the|strong="H7200"\w* \w scepter|strong="H8275"\w*. +\p +\v 3 \w Then|strong="H5414"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w asked|strong="H4100"\w* \w her|strong="H5414"\w*, “\w What|strong="H4100"\w* \w would|strong="H4100"\w* \w you|strong="H5414"\w* \w like|strong="H5704"\w*, \w queen|strong="H4436"\w* Esther? \w What|strong="H4100"\w* \w is|strong="H4100"\w* \w your|strong="H5414"\w* \w request|strong="H1246"\w*? \w It|strong="H5414"\w* \w shall|strong="H4428"\w* \w be|strong="H5414"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5414"\w* \w half|strong="H2677"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w kingdom|strong="H4438"\w*.” +\p +\v 4 Esther said, “If \w it|strong="H5921"\w* seems \w good|strong="H2895"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*, let \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w Haman|strong="H2001"\w* come \w today|strong="H3117"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w banquet|strong="H4960"\w* \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w have|strong="H3117"\w* \w prepared|strong="H6213"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w*.” +\p +\v 5 \w Then|strong="H6213"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w* \w said|strong="H1697"\w*, “\w Bring|strong="H6213"\w* \w Haman|strong="H2001"\w* \w quickly|strong="H4116"\w*, \w so|strong="H6213"\w* \w that|strong="H1697"\w* \w it|strong="H6213"\w* \w may|strong="H4428"\w* \w be|strong="H1697"\w* \w done|strong="H6213"\w* \w as|strong="H1697"\w* Esther \w has|strong="H4428"\w* \w said|strong="H1697"\w*.” \w So|strong="H6213"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w Haman|strong="H2001"\w* \w came|strong="H1697"\w* \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w banquet|strong="H4960"\w* \w that|strong="H1697"\w* Esther \w had|strong="H4428"\w* \w prepared|strong="H6213"\w*. +\p +\v 6 \w The|strong="H5414"\w* \w king|strong="H4428"\w* said \w to|strong="H5704"\w* Esther \w at|strong="H4428"\w* \w the|strong="H5414"\w* \w banquet|strong="H4960"\w* \w of|strong="H4428"\w* \w wine|strong="H3196"\w*, “\w What|strong="H4100"\w* \w is|strong="H4100"\w* \w your|strong="H5414"\w* \w petition|strong="H7596"\w*? \w It|strong="H5414"\w* \w shall|strong="H4428"\w* \w be|strong="H5414"\w* \w granted|strong="H5414"\w* \w you|strong="H5414"\w*. \w What|strong="H4100"\w* \w is|strong="H4100"\w* \w your|strong="H5414"\w* \w request|strong="H1246"\w*? \w Even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5414"\w* \w half|strong="H2677"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w kingdom|strong="H4438"\w* \w it|strong="H5414"\w* \w shall|strong="H4428"\w* \w be|strong="H5414"\w* \w performed|strong="H6213"\w*.” +\p +\v 7 \w Then|strong="H6030"\w* Esther \w answered|strong="H6030"\w* \w and|strong="H6030"\w* \w said|strong="H6030"\w*, “\w My|strong="H6030"\w* \w petition|strong="H7596"\w* \w and|strong="H6030"\w* \w my|strong="H6030"\w* \w request|strong="H1246"\w* is this. +\v 8 If \w I|strong="H5414"\w* \w have|strong="H5869"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w sight|strong="H5869"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*, \w and|strong="H4428"\w* if \w it|strong="H5414"\w* \w pleases|strong="H2895"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w to|strong="H6213"\w* \w grant|strong="H5414"\w* \w my|strong="H5414"\w* \w petition|strong="H7596"\w* \w and|strong="H4428"\w* \w to|strong="H6213"\w* \w perform|strong="H6213"\w* \w my|strong="H5414"\w* \w request|strong="H1246"\w*, \w let|strong="H5414"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w Haman|strong="H2001"\w* \w come|strong="H4279"\w* \w to|strong="H6213"\w* \w the|strong="H5921"\w* \w banquet|strong="H4960"\w* \w that|strong="H1697"\w* \w I|strong="H5414"\w* \w will|strong="H4428"\w* \w prepare|strong="H6213"\w* \w for|strong="H5921"\w* \w them|strong="H5414"\w*, \w and|strong="H4428"\w* \w I|strong="H5414"\w* \w will|strong="H4428"\w* \w do|strong="H6213"\w* \w tomorrow|strong="H4279"\w* \w as|strong="H1697"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w has|strong="H4428"\w* \w said|strong="H1697"\w*.” +\p +\v 9 \w Then|strong="H6965"\w* \w Haman|strong="H2001"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w that|strong="H7200"\w* \w day|strong="H3117"\w* \w joyful|strong="H8056"\w* \w and|strong="H6965"\w* \w glad|strong="H8056"\w* \w of|strong="H4428"\w* \w heart|strong="H3820"\w*, \w but|strong="H3808"\w* \w when|strong="H3117"\w* \w Haman|strong="H2001"\w* \w saw|strong="H7200"\w* \w Mordecai|strong="H4782"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w gate|strong="H8179"\w*, \w that|strong="H7200"\w* \w he|strong="H1931"\w* didn’t \w stand|strong="H6965"\w* \w up|strong="H6965"\w* \w nor|strong="H3808"\w* move \w for|strong="H5921"\w* \w him|strong="H5921"\w*, \w he|strong="H1931"\w* \w was|strong="H3820"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w wrath|strong="H2534"\w* \w against|strong="H5921"\w* \w Mordecai|strong="H4782"\w*. +\v 10 Nevertheless \w Haman|strong="H2001"\w* restrained himself, \w and|strong="H7971"\w* \w went|strong="H1004"\w* \w home|strong="H1004"\w*. There, \w he|strong="H1004"\w* \w sent|strong="H7971"\w* \w and|strong="H7971"\w* called \w for|strong="H7971"\w* \w his|strong="H7971"\w* friends \w and|strong="H7971"\w* \w Zeresh|strong="H2238"\w* \w his|strong="H7971"\w* wife. +\v 11 \w Haman|strong="H2001"\w* \w recounted|strong="H5608"\w* \w to|strong="H5921"\w* \w them|strong="H1992"\w* \w the|strong="H3605"\w* \w glory|strong="H3519"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w riches|strong="H6239"\w*, \w the|strong="H3605"\w* \w multitude|strong="H7230"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w children|strong="H1121"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w things|strong="H3605"\w* \w in|strong="H5921"\w* \w which|strong="H1992"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w had|strong="H4428"\w* \w promoted|strong="H1431"\w* \w him|strong="H5921"\w*, \w and|strong="H1121"\w* \w how|strong="H1431"\w* \w he|strong="H3605"\w* \w had|strong="H4428"\w* \w advanced|strong="H5375"\w* \w him|strong="H5921"\w* \w above|strong="H5921"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w and|strong="H1121"\w* \w servants|strong="H5650"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. +\p +\v 12 \w Haman|strong="H2001"\w* \w also|strong="H1571"\w* \w said|strong="H7121"\w*, “\w Yes|strong="H3588"\w*, Esther \w the|strong="H3588"\w* \w queen|strong="H4436"\w* \w let|strong="H3808"\w* \w no|strong="H3808"\w* man \w come|strong="H4279"\w* \w in|strong="H6213"\w* \w with|strong="H5973"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w to|strong="H6213"\w* \w the|strong="H3588"\w* \w banquet|strong="H4960"\w* \w that|strong="H3588"\w* \w she|strong="H3588"\w* \w had|strong="H4428"\w* \w prepared|strong="H6213"\w* \w but|strong="H3588"\w* \w myself|strong="H1571"\w*; \w and|strong="H4428"\w* \w tomorrow|strong="H4279"\w* \w I|strong="H3588"\w* am \w also|strong="H1571"\w* \w invited|strong="H7121"\w* \w by|strong="H7121"\w* \w her|strong="H7121"\w* \w together|strong="H5973"\w* \w with|strong="H5973"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w*. +\v 13 \w Yet|strong="H3605"\w* \w all|strong="H3605"\w* \w this|strong="H2088"\w* avails \w me|strong="H7200"\w* \w nothing|strong="H3605"\w*, \w so|strong="H2088"\w* \w long|strong="H3605"\w* \w as|strong="H3427"\w* \w I|strong="H7200"\w* \w see|strong="H7200"\w* \w Mordecai|strong="H4782"\w* \w the|strong="H3605"\w* \w Jew|strong="H3064"\w* \w sitting|strong="H3427"\w* \w at|strong="H3427"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w gate|strong="H8179"\w*.” +\p +\v 14 \w Then|strong="H6213"\w* \w Zeresh|strong="H2238"\w* \w his|strong="H3605"\w* wife \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* friends \w said|strong="H1697"\w* \w to|strong="H6213"\w* \w him|strong="H6440"\w*, “\w Let|strong="H8056"\w* \w a|strong="H3068"\w* \w gallows|strong="H6086"\w* \w be|strong="H1697"\w* \w made|strong="H6213"\w* \w fifty|strong="H2572"\w* cubits\f + \fr 5:14 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w high|strong="H1364"\w*, \w and|strong="H4428"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w* \w speak|strong="H1697"\w* \w to|strong="H6213"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w about|strong="H5921"\w* \w hanging|strong="H8518"\w* \w Mordecai|strong="H4782"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*. \w Then|strong="H6213"\w* \w go|strong="H3190"\w* \w in|strong="H5921"\w* \w merrily|strong="H8056"\w* \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w to|strong="H6213"\w* \w the|strong="H3605"\w* \w banquet|strong="H4960"\w*.” \w This|strong="H6213"\w* \w pleased|strong="H3190"\w* \w Haman|strong="H2001"\w*, \w so|strong="H6213"\w* \w he|strong="H6213"\w* \w had|strong="H4428"\w* \w the|strong="H3605"\w* \w gallows|strong="H6086"\w* \w made|strong="H6213"\w*. +\c 6 +\p +\v 1 \w On|strong="H3117"\w* \w that|strong="H3117"\w* \w night|strong="H3915"\w*, \w the|strong="H6440"\w* \w king|strong="H4428"\w* couldn’t \w sleep|strong="H8142"\w*. \w He|strong="H1931"\w* commanded \w the|strong="H6440"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w records|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w chronicles|strong="H1697"\w* \w to|strong="H1961"\w* \w be|strong="H1961"\w* \w brought|strong="H1961"\w*, \w and|strong="H4428"\w* \w they|strong="H3117"\w* \w were|strong="H1961"\w* \w read|strong="H7121"\w* \w to|strong="H1961"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*. +\v 2 \w It|strong="H5921"\w* \w was|strong="H4428"\w* \w found|strong="H4672"\w* \w written|strong="H3789"\w* \w that|strong="H4428"\w* \w Mordecai|strong="H4782"\w* \w had|strong="H4428"\w* \w told|strong="H5046"\w* \w of|strong="H4428"\w* Bigthana \w and|strong="H7971"\w* \w Teresh|strong="H8657"\w*, \w two|strong="H8147"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w eunuchs|strong="H5631"\w*, \w who|strong="H8104"\w* \w were|strong="H3027"\w* \w doorkeepers|strong="H8104"\w*, \w who|strong="H8104"\w* \w had|strong="H4428"\w* \w tried|strong="H1245"\w* \w to|strong="H7971"\w* \w lay|strong="H7971"\w* \w hands|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w King|strong="H4428"\w* Ahasuerus. +\v 3 \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w said|strong="H1697"\w*, “\w What|strong="H4100"\w* \w honor|strong="H3366"\w* \w and|strong="H4428"\w* \w dignity|strong="H1420"\w* \w has|strong="H4428"\w* \w been|strong="H3808"\w* \w given|strong="H6213"\w* \w to|strong="H5921"\w* \w Mordecai|strong="H4782"\w* \w for|strong="H5921"\w* \w this|strong="H2088"\w*?” +\p \w Then|strong="H2088"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w servants|strong="H5288"\w* \w who|strong="H5288"\w* \w attended|strong="H8334"\w* \w him|strong="H5921"\w* \w said|strong="H1697"\w*, “\w Nothing|strong="H3808"\w* \w has|strong="H4428"\w* \w been|strong="H3808"\w* \w done|strong="H6213"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w*.” +\p +\v 4 \w The|strong="H5921"\w* \w king|strong="H4428"\w* said, “\w Who|strong="H4310"\w* \w is|strong="H4310"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w court|strong="H2691"\w*?” \w Now|strong="H4428"\w* \w Haman|strong="H2001"\w* \w had|strong="H4428"\w* come \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w outer|strong="H2435"\w* \w court|strong="H2691"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w to|strong="H5921"\w* speak \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w about|strong="H5921"\w* \w hanging|strong="H8518"\w* \w Mordecai|strong="H4782"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w gallows|strong="H6086"\w* \w that|strong="H4428"\w* \w he|strong="H1004"\w* \w had|strong="H4428"\w* \w prepared|strong="H3559"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w*. +\p +\v 5 \w The|strong="H5975"\w* \w king|strong="H4428"\w*’s \w servants|strong="H5288"\w* said \w to|strong="H4428"\w* \w him|strong="H5975"\w*, “\w Behold|strong="H2009"\w*,\f + \fr 6:5 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w Haman|strong="H2001"\w* \w stands|strong="H5975"\w* \w in|strong="H4428"\w* \w the|strong="H5975"\w* \w court|strong="H2691"\w*.” +\p \w The|strong="H5975"\w* \w king|strong="H4428"\w* said, “Let \w him|strong="H5975"\w* \w come|strong="H5288"\w* \w in|strong="H4428"\w*.” +\v 6 \w So|strong="H6213"\w* \w Haman|strong="H2001"\w* \w came|strong="H4428"\w* \w in|strong="H6213"\w*. \w The|strong="H6213"\w* \w king|strong="H4428"\w* said \w to|strong="H6213"\w* \w him|strong="H6213"\w*, “\w What|strong="H4100"\w* \w shall|strong="H4428"\w* \w be|strong="H3820"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w man|strong="H3820"\w* \w whom|strong="H4310"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w* \w delights|strong="H2654"\w* \w to|strong="H6213"\w* \w honor|strong="H3366"\w*?” +\p \w Now|strong="H4428"\w* \w Haman|strong="H2001"\w* said \w in|strong="H6213"\w* \w his|strong="H6213"\w* \w heart|strong="H3820"\w*, “\w Who|strong="H4310"\w* \w would|strong="H4310"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w* \w delight|strong="H2654"\w* \w to|strong="H6213"\w* \w honor|strong="H3366"\w* \w more|strong="H4480"\w* \w than|strong="H4480"\w* \w myself|strong="H3820"\w*?” +\v 7 \w Haman|strong="H2001"\w* said \w to|strong="H4428"\w* \w the|strong="H2001"\w* \w king|strong="H4428"\w*, “\w For|strong="H4428"\w* \w the|strong="H2001"\w* man whom \w the|strong="H2001"\w* \w king|strong="H4428"\w* \w delights|strong="H2654"\w* \w to|strong="H4428"\w* \w honor|strong="H3366"\w*, +\v 8 \w let|strong="H5414"\w* \w royal|strong="H4438"\w* \w clothing|strong="H3830"\w* \w be|strong="H5414"\w* \w brought|strong="H5414"\w* \w which|strong="H5483"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* uses \w to|strong="H5921"\w* \w wear|strong="H3847"\w*, \w and|strong="H4428"\w* \w the|strong="H5921"\w* \w horse|strong="H5483"\w* \w that|strong="H5414"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w rides|strong="H7392"\w* \w on|strong="H5921"\w*, \w and|strong="H4428"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H4428"\w* \w which|strong="H5483"\w* \w a|strong="H3068"\w* \w royal|strong="H4438"\w* \w crown|strong="H3804"\w* \w is|strong="H4428"\w* \w set|strong="H5414"\w*. +\v 9 \w Let|strong="H5414"\w* \w the|strong="H6440"\w* \w clothing|strong="H3830"\w* \w and|strong="H4428"\w* \w the|strong="H6440"\w* \w horse|strong="H5483"\w* \w be|strong="H3027"\w* \w delivered|strong="H5414"\w* \w to|strong="H6213"\w* \w the|strong="H6440"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w one|strong="H6213"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w most|strong="H4428"\w* \w noble|strong="H6579"\w* \w princes|strong="H8269"\w*, \w that|strong="H5414"\w* \w they|strong="H5921"\w* \w may|strong="H4428"\w* \w array|strong="H3847"\w* \w the|strong="H6440"\w* \w man|strong="H6440"\w* \w whom|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w delights|strong="H2654"\w* \w to|strong="H6213"\w* \w honor|strong="H3366"\w* \w with|strong="H3847"\w* \w them|strong="H5414"\w*, \w and|strong="H4428"\w* \w have|strong="H3027"\w* \w him|strong="H5414"\w* \w ride|strong="H7392"\w* \w on|strong="H5921"\w* \w horseback|strong="H5483"\w* \w through|strong="H3027"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w* \w square|strong="H7339"\w*, \w and|strong="H4428"\w* \w proclaim|strong="H7121"\w* \w before|strong="H6440"\w* \w him|strong="H5414"\w*, ‘\w Thus|strong="H3602"\w* \w it|strong="H5414"\w* \w shall|strong="H4428"\w* \w be|strong="H3027"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w the|strong="H6440"\w* \w man|strong="H6440"\w* \w whom|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w delights|strong="H2654"\w* \w to|strong="H6213"\w* \w honor|strong="H3366"\w*!’” +\p +\v 10 \w Then|strong="H1696"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Haman|strong="H2001"\w*, “\w Hurry|strong="H4116"\w* \w and|strong="H4428"\w* \w take|strong="H3947"\w* \w the|strong="H3605"\w* \w clothing|strong="H3830"\w* \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w horse|strong="H5483"\w*, \w as|strong="H1697"\w* \w you|strong="H3605"\w* \w have|strong="H1697"\w* \w said|strong="H1696"\w*, \w and|strong="H4428"\w* \w do|strong="H6213"\w* \w this|strong="H3651"\w* \w for|strong="H6213"\w* \w Mordecai|strong="H4782"\w* \w the|strong="H3605"\w* \w Jew|strong="H3064"\w*, \w who|strong="H3605"\w* \w sits|strong="H3427"\w* \w at|strong="H3427"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w gate|strong="H8179"\w*. \w Let|strong="H3651"\w* \w nothing|strong="H1697"\w* \w fail|strong="H5307"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w have|strong="H1697"\w* \w spoken|strong="H1696"\w*.” +\p +\v 11 \w Then|strong="H3947"\w* \w Haman|strong="H2001"\w* \w took|strong="H3947"\w* \w the|strong="H6440"\w* \w clothing|strong="H3830"\w* \w and|strong="H4428"\w* \w the|strong="H6440"\w* \w horse|strong="H5483"\w*, \w and|strong="H4428"\w* \w arrayed|strong="H3847"\w* \w Mordecai|strong="H4782"\w*, \w and|strong="H4428"\w* \w had|strong="H4428"\w* \w him|strong="H6440"\w* \w ride|strong="H7392"\w* \w through|strong="H6213"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w* \w square|strong="H7339"\w*, \w and|strong="H4428"\w* \w proclaimed|strong="H7121"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, “\w Thus|strong="H3602"\w* \w it|strong="H7121"\w* \w shall|strong="H4428"\w* \w be|strong="H5892"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w the|strong="H6440"\w* \w man|strong="H6440"\w* \w whom|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w delights|strong="H2654"\w* \w to|strong="H6213"\w* \w honor|strong="H3366"\w*!” +\p +\v 12 \w Mordecai|strong="H4782"\w* \w came|strong="H7725"\w* \w back|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H7725"\w* \w king|strong="H4428"\w*’s \w gate|strong="H8179"\w*, \w but|strong="H7725"\w* \w Haman|strong="H2001"\w* \w hurried|strong="H1765"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w house|strong="H1004"\w*, mourning \w and|strong="H7725"\w* \w having|strong="H4428"\w* \w his|strong="H7725"\w* \w head|strong="H7218"\w* \w covered|strong="H2645"\w*. +\v 13 \w Haman|strong="H2001"\w* \w recounted|strong="H5608"\w* \w to|strong="H3201"\w* \w Zeresh|strong="H2238"\w* \w his|strong="H3605"\w* wife \w and|strong="H6440"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* friends \w everything|strong="H3605"\w* \w that|strong="H3588"\w* \w had|strong="H3588"\w* \w happened|strong="H7136"\w* \w to|strong="H3201"\w* \w him|strong="H6440"\w*. \w Then|strong="H5307"\w* \w his|strong="H3605"\w* \w wise|strong="H2450"\w* \w men|strong="H2450"\w* \w and|strong="H6440"\w* \w Zeresh|strong="H2238"\w* \w his|strong="H3605"\w* wife said \w to|strong="H3201"\w* \w him|strong="H6440"\w*, “\w If|strong="H3588"\w* \w Mordecai|strong="H4782"\w*, \w before|strong="H6440"\w* \w whom|strong="H6440"\w* \w you|strong="H3588"\w* \w have|strong="H3605"\w* \w begun|strong="H2490"\w* \w to|strong="H3201"\w* \w fall|strong="H5307"\w*, \w is|strong="H3605"\w* \w of|strong="H6440"\w* \w Jewish|strong="H3064"\w* \w descent|strong="H2233"\w*, \w you|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w prevail|strong="H3201"\w* \w against|strong="H6440"\w* \w him|strong="H6440"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3808"\w* \w surely|strong="H3588"\w* \w fall|strong="H5307"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*.” +\v 14 \w While|strong="H5750"\w* \w they|strong="H6213"\w* \w were|strong="H4428"\w* \w yet|strong="H5750"\w* \w talking|strong="H1696"\w* \w with|strong="H5973"\w* \w him|strong="H6213"\w*, \w the|strong="H6213"\w* \w king|strong="H4428"\w*’s \w eunuchs|strong="H5631"\w* \w came|strong="H5060"\w*, \w and|strong="H4428"\w* hurried \w to|strong="H1696"\w* \w bring|strong="H6213"\w* \w Haman|strong="H2001"\w* \w to|strong="H1696"\w* \w the|strong="H6213"\w* \w banquet|strong="H4960"\w* \w that|strong="H4428"\w* Esther \w had|strong="H4428"\w* \w prepared|strong="H6213"\w*. +\c 7 +\p +\v 1 So \w the|strong="H5973"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w Haman|strong="H2001"\w* \w came|strong="H4428"\w* \w to|strong="H4428"\w* \w banquet|strong="H8354"\w* \w with|strong="H5973"\w* Esther \w the|strong="H5973"\w* \w queen|strong="H4436"\w*. +\v 2 \w The|strong="H5414"\w* \w king|strong="H4428"\w* said \w again|strong="H8145"\w* \w to|strong="H5704"\w* Esther \w on|strong="H3117"\w* \w the|strong="H5414"\w* \w second|strong="H8145"\w* \w day|strong="H3117"\w* \w at|strong="H3117"\w* \w the|strong="H5414"\w* \w banquet|strong="H4960"\w* \w of|strong="H4428"\w* \w wine|strong="H3196"\w*, “\w What|strong="H4100"\w* \w is|strong="H4100"\w* \w your|strong="H5414"\w* \w petition|strong="H7596"\w*, \w queen|strong="H4436"\w* Esther? \w It|strong="H5414"\w* \w shall|strong="H4428"\w* \w be|strong="H1571"\w* \w granted|strong="H5414"\w* \w you|strong="H5414"\w*. \w What|strong="H4100"\w* \w is|strong="H4100"\w* \w your|strong="H5414"\w* \w request|strong="H1246"\w*? \w Even|strong="H1571"\w* \w to|strong="H5704"\w* \w the|strong="H5414"\w* \w half|strong="H2677"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w kingdom|strong="H4438"\w* \w it|strong="H5414"\w* \w shall|strong="H4428"\w* \w be|strong="H1571"\w* \w performed|strong="H6213"\w*.” +\p +\v 3 \w Then|strong="H6030"\w* Esther \w the|strong="H5921"\w* \w queen|strong="H4436"\w* \w answered|strong="H6030"\w*, “If \w I|strong="H5414"\w* \w have|strong="H5869"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H5921"\w* \w your|strong="H5414"\w* \w sight|strong="H5869"\w*, \w O|strong="H3068"\w* \w king|strong="H4428"\w*, \w and|strong="H6030"\w* if \w it|strong="H5414"\w* \w pleases|strong="H2895"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*, \w let|strong="H5414"\w* \w my|strong="H5414"\w* \w life|strong="H5315"\w* \w be|strong="H5315"\w* \w given|strong="H5414"\w* \w me|strong="H5414"\w* \w at|strong="H5921"\w* \w my|strong="H5414"\w* \w petition|strong="H7596"\w*, \w and|strong="H6030"\w* \w my|strong="H5414"\w* \w people|strong="H5971"\w* \w at|strong="H5921"\w* \w my|strong="H5414"\w* \w request|strong="H1246"\w*. +\v 4 \w For|strong="H3588"\w* \w we|strong="H3068"\w* \w are|strong="H5971"\w* \w sold|strong="H4376"\w*, \w I|strong="H3588"\w* \w and|strong="H4428"\w* \w my|strong="H3588"\w* \w people|strong="H5971"\w*, \w to|strong="H4428"\w* \w be|strong="H4428"\w* \w destroyed|strong="H8045"\w*, \w to|strong="H4428"\w* \w be|strong="H4428"\w* \w slain|strong="H2026"\w*, \w and|strong="H4428"\w* \w to|strong="H4428"\w* perish. \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w we|strong="H3068"\w* \w had|strong="H4428"\w* \w been|strong="H5971"\w* \w sold|strong="H4376"\w* \w for|strong="H3588"\w* \w male|strong="H5650"\w* \w and|strong="H4428"\w* \w female|strong="H8198"\w* \w slaves|strong="H5650"\w*, \w I|strong="H3588"\w* \w would|strong="H5971"\w* \w have|strong="H5971"\w* \w held|strong="H4428"\w* \w my|strong="H3588"\w* \w peace|strong="H2790"\w*, \w although|strong="H3588"\w* \w the|strong="H3588"\w* \w adversary|strong="H6862"\w* \w could|strong="H5971"\w* \w not|strong="H3588"\w* \w have|strong="H5971"\w* compensated \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w*’s loss.” +\p +\v 5 \w Then|strong="H2088"\w* \w King|strong="H4428"\w* Ahasuerus \w said|strong="H3651"\w* \w to|strong="H6213"\w* Esther \w the|strong="H6213"\w* \w queen|strong="H4436"\w*, “\w Who|strong="H4310"\w* \w is|strong="H2088"\w* \w he|strong="H1931"\w*, \w and|strong="H4428"\w* \w where|strong="H2088"\w* \w is|strong="H2088"\w* \w he|strong="H1931"\w* \w who|strong="H4310"\w* dared \w presume|strong="H4390"\w* \w in|strong="H6213"\w* \w his|strong="H6213"\w* \w heart|strong="H3820"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w so|strong="H3651"\w*?” +\p +\v 6 Esther said, “\w An|strong="H6440"\w* \w adversary|strong="H6862"\w* \w and|strong="H4428"\w* \w an|strong="H6440"\w* \w enemy|strong="H6862"\w*, even \w this|strong="H2088"\w* \w wicked|strong="H7451"\w* \w Haman|strong="H2001"\w*!” +\p \w Then|strong="H2088"\w* \w Haman|strong="H2001"\w* \w was|strong="H4428"\w* \w afraid|strong="H1204"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w the|strong="H6440"\w* \w queen|strong="H4436"\w*. +\v 7 \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w arose|strong="H6965"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w wrath|strong="H2534"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w banquet|strong="H4960"\w* \w of|strong="H4428"\w* \w wine|strong="H3196"\w* \w and|strong="H6965"\w* \w went|strong="H4428"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w palace|strong="H1055"\w* \w garden|strong="H1594"\w*. \w Haman|strong="H2001"\w* \w stood|strong="H5975"\w* \w up|strong="H6965"\w* \w to|strong="H5921"\w* \w make|strong="H7200"\w* \w request|strong="H1245"\w* \w for|strong="H3588"\w* \w his|strong="H5921"\w* \w life|strong="H5315"\w* \w to|strong="H5921"\w* Esther \w the|strong="H5921"\w* \w queen|strong="H4436"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w there|strong="H5975"\w* \w was|strong="H4428"\w* \w evil|strong="H7451"\w* \w determined|strong="H3615"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*. +\v 8 \w Then|strong="H3318"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w returned|strong="H7725"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w palace|strong="H1004"\w* \w garden|strong="H1594"\w* \w into|strong="H7725"\w* \w the|strong="H6440"\w* \w place|strong="H1004"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w banquet|strong="H4960"\w* \w of|strong="H4428"\w* \w wine|strong="H3196"\w*; \w and|strong="H7725"\w* \w Haman|strong="H2001"\w* \w had|strong="H4428"\w* \w fallen|strong="H5307"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w couch|strong="H4296"\w* \w where|strong="H1004"\w* Esther \w was|strong="H1697"\w*. \w Then|strong="H3318"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w said|strong="H1697"\w*, “\w Will|strong="H4428"\w* \w he|strong="H1004"\w* \w even|strong="H1571"\w* \w assault|strong="H3533"\w* \w the|strong="H6440"\w* \w queen|strong="H4436"\w* \w in|strong="H5921"\w* \w front|strong="H6440"\w* \w of|strong="H4428"\w* \w me|strong="H6440"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w*?” \w As|strong="H1697"\w* \w the|strong="H6440"\w* \w word|strong="H1697"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w mouth|strong="H6310"\w*, \w they|strong="H5921"\w* \w covered|strong="H2645"\w* \w Haman|strong="H2001"\w*’s \w face|strong="H6440"\w*. +\p +\v 9 \w Then|strong="H1696"\w* \w Harbonah|strong="H2726"\w*, \w one|strong="H4480"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w eunuchs|strong="H5631"\w* \w who|strong="H4428"\w* \w were|strong="H4428"\w* \w with|strong="H1004"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*, \w said|strong="H1696"\w*, “\w Behold|strong="H2009"\w*, \w the|strong="H6440"\w* \w gallows|strong="H6086"\w* \w fifty|strong="H2572"\w* cubits\f + \fr 7:9 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w high|strong="H1364"\w*, \w which|strong="H1004"\w* \w Haman|strong="H2001"\w* \w has|strong="H4428"\w* \w made|strong="H6213"\w* \w for|strong="H5921"\w* \w Mordecai|strong="H4782"\w*, \w who|strong="H4428"\w* \w spoke|strong="H1696"\w* \w good|strong="H2896"\w* \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*, \w is|strong="H1571"\w* \w standing|strong="H5975"\w* \w at|strong="H5921"\w* \w Haman|strong="H2001"\w*’s \w house|strong="H1004"\w*.” +\p \w The|strong="H6440"\w* \w king|strong="H4428"\w* \w said|strong="H1696"\w*, “\w Hang|strong="H8518"\w* \w him|strong="H6440"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*!” +\p +\v 10 \w So|strong="H5921"\w* \w they|strong="H5921"\w* \w hanged|strong="H8518"\w* \w Haman|strong="H2001"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w gallows|strong="H6086"\w* \w that|strong="H4428"\w* \w he|strong="H5921"\w* \w had|strong="H4428"\w* \w prepared|strong="H3559"\w* \w for|strong="H5921"\w* \w Mordecai|strong="H4782"\w*. \w Then|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w wrath|strong="H2534"\w* \w was|strong="H4428"\w* \w pacified|strong="H7918"\w*. +\c 8 +\p +\v 1 \w On|strong="H3117"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w*, \w King|strong="H4428"\w* Ahasuerus \w gave|strong="H5414"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w Haman|strong="H2001"\w*, \w the|strong="H6440"\w* \w Jews|strong="H3064"\w*’ \w enemy|strong="H6887"\w*, \w to|strong="H5414"\w* Esther \w the|strong="H6440"\w* \w queen|strong="H4436"\w*. \w Mordecai|strong="H4782"\w* \w came|strong="H4428"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*; \w for|strong="H3588"\w* Esther \w had|strong="H4428"\w* \w told|strong="H5046"\w* \w what|strong="H4100"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w to|strong="H5414"\w* \w her|strong="H5414"\w*. +\v 2 \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w took|strong="H5493"\w* \w off|strong="H5493"\w* \w his|strong="H5414"\w* \w ring|strong="H2885"\w*, \w which|strong="H1004"\w* \w he|strong="H1004"\w* \w had|strong="H4428"\w* \w taken|strong="H5493"\w* \w from|strong="H5493"\w* \w Haman|strong="H2001"\w*, \w and|strong="H4428"\w* \w gave|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H5921"\w* \w Mordecai|strong="H4782"\w*. Esther \w set|strong="H7760"\w* \w Mordecai|strong="H4782"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w Haman|strong="H2001"\w*. +\p +\v 3 Esther \w spoke|strong="H1696"\w* \w yet|strong="H3254"\w* \w again|strong="H3254"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*, \w and|strong="H4428"\w* \w fell|strong="H5307"\w* \w down|strong="H5307"\w* \w at|strong="H5921"\w* \w his|strong="H6440"\w* \w feet|strong="H7272"\w* \w and|strong="H4428"\w* \w begged|strong="H2603"\w* \w him|strong="H6440"\w* \w with|strong="H1696"\w* \w tears|strong="H1058"\w* \w to|strong="H1696"\w* \w put|strong="H3254"\w* \w away|strong="H5674"\w* \w the|strong="H6440"\w* \w mischief|strong="H7451"\w* \w of|strong="H4428"\w* \w Haman|strong="H2001"\w* \w the|strong="H6440"\w* Agagite, \w and|strong="H4428"\w* \w his|strong="H6440"\w* \w plan|strong="H2803"\w* \w that|strong="H4428"\w* \w he|strong="H5921"\w* \w had|strong="H4428"\w* \w planned|strong="H2803"\w* \w against|strong="H5921"\w* \w the|strong="H6440"\w* \w Jews|strong="H3064"\w*. +\v 4 \w Then|strong="H6965"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w held|strong="H4428"\w* \w out|strong="H3447"\w* \w to|strong="H6440"\w* Esther \w the|strong="H6440"\w* \w golden|strong="H2091"\w* \w scepter|strong="H8275"\w*. \w So|strong="H6965"\w* Esther \w arose|strong="H6965"\w*, \w and|strong="H6965"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*. +\v 5 \w She|strong="H5921"\w* \w said|strong="H1697"\w*, “\w If|strong="H1121"\w* \w it|strong="H5921"\w* \w pleases|strong="H5921"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w and|strong="H1121"\w* \w if|strong="H1121"\w* \w I|strong="H5921"\w* \w have|strong="H5869"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w sight|strong="H5869"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w thing|strong="H1697"\w* \w seems|strong="H3605"\w* \w right|strong="H3787"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w and|strong="H1121"\w* \w I|strong="H5921"\w* am \w pleasing|strong="H2896"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w eyes|strong="H5869"\w*, \w let|strong="H7725"\w* \w it|strong="H5921"\w* \w be|strong="H1697"\w* \w written|strong="H3789"\w* \w to|strong="H7725"\w* \w reverse|strong="H7725"\w* \w the|strong="H3605"\w* \w letters|strong="H5612"\w* \w devised|strong="H4284"\w* \w by|strong="H5921"\w* \w Haman|strong="H2001"\w*, \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hammedatha|strong="H4099"\w* \w the|strong="H3605"\w* Agagite, \w which|strong="H1697"\w* \w he|strong="H3605"\w* \w wrote|strong="H3789"\w* \w to|strong="H7725"\w* \w destroy|strong="H3605"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w* \w who|strong="H3605"\w* \w are|strong="H1121"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w provinces|strong="H4082"\w*. +\v 6 \w For|strong="H3588"\w* \w how|strong="H3588"\w* \w can|strong="H3201"\w* \w I|strong="H3588"\w* \w endure|strong="H3201"\w* \w to|strong="H3201"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w evil|strong="H7451"\w* \w that|strong="H3588"\w* \w would|strong="H5971"\w* \w come|strong="H4672"\w* \w to|strong="H3201"\w* \w my|strong="H7200"\w* \w people|strong="H5971"\w*? \w How|strong="H3588"\w* \w can|strong="H3201"\w* \w I|strong="H3588"\w* \w endure|strong="H3201"\w* \w to|strong="H3201"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w destruction|strong="H7451"\w* \w of|strong="H5971"\w* \w my|strong="H7200"\w* \w relatives|strong="H4138"\w*?” +\p +\v 7 \w Then|strong="H2009"\w* \w King|strong="H4428"\w* Ahasuerus said \w to|strong="H7971"\w* Esther \w the|strong="H5921"\w* \w queen|strong="H4436"\w* \w and|strong="H7971"\w* \w to|strong="H7971"\w* \w Mordecai|strong="H4782"\w* \w the|strong="H5921"\w* \w Jew|strong="H3064"\w*, “\w See|strong="H2009"\w*, \w I|strong="H5414"\w* \w have|strong="H3027"\w* \w given|strong="H5414"\w* Esther \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w Haman|strong="H2001"\w*, \w and|strong="H7971"\w* \w they|strong="H5921"\w* \w have|strong="H3027"\w* \w hanged|strong="H8518"\w* \w him|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w gallows|strong="H6086"\w* \w because|strong="H5921"\w* \w he|strong="H1004"\w* \w laid|strong="H5414"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w Jews|strong="H3064"\w*. +\v 8 \w Write|strong="H3789"\w* \w also|strong="H8034"\w* \w to|strong="H7725"\w* \w the|strong="H5921"\w* \w Jews|strong="H3064"\w* \w as|strong="H3588"\w* \w it|strong="H5921"\w* \w pleases|strong="H5921"\w* \w you|strong="H3588"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w name|strong="H8034"\w*, \w and|strong="H7725"\w* \w seal|strong="H2856"\w* \w it|strong="H5921"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w ring|strong="H2885"\w*; \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w writing|strong="H3791"\w* \w which|strong="H3064"\w* \w is|strong="H8034"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w name|strong="H8034"\w*, \w and|strong="H7725"\w* \w sealed|strong="H2856"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w ring|strong="H2885"\w*, \w may|strong="H4428"\w* \w not|strong="H3588"\w* \w be|strong="H8034"\w* reversed \w by|strong="H5921"\w* \w any|strong="H3588"\w* \w man|strong="H2896"\w*.” +\p +\v 9 \w Then|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w scribes|strong="H5608"\w* \w were|strong="H5971"\w* \w called|strong="H7121"\w* \w at|strong="H2320"\w* \w that|strong="H5971"\w* \w time|strong="H6256"\w*, \w in|strong="H4428"\w* \w the|strong="H3605"\w* \w third|strong="H7992"\w* \w month|strong="H2320"\w*, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H3605"\w* \w month|strong="H2320"\w* \w Sivan|strong="H5510"\w*, \w on|strong="H7121"\w* \w the|strong="H3605"\w* \w twenty-third|strong="H6242"\w* \w day|strong="H2320"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w month|strong="H2320"\w*; \w and|strong="H3967"\w* \w it|strong="H1931"\w* \w was|strong="H1931"\w* \w written|strong="H3789"\w* according \w to|strong="H5704"\w* \w all|strong="H3605"\w* \w that|strong="H5971"\w* \w Mordecai|strong="H4782"\w* \w commanded|strong="H6680"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w*, \w and|strong="H3967"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* local \w governors|strong="H6346"\w*, \w and|strong="H3967"\w* \w the|strong="H3605"\w* \w governors|strong="H6346"\w* \w and|strong="H3967"\w* \w princes|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w provinces|strong="H4082"\w* \w which|strong="H1931"\w* \w are|strong="H5971"\w* \w from|strong="H5704"\w* \w India|strong="H1912"\w* \w to|strong="H5704"\w* \w Ethiopia|strong="H3568"\w*, \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* \w twenty-seven|strong="H6242"\w* \w provinces|strong="H4082"\w*, \w to|strong="H5704"\w* \w every|strong="H3605"\w* \w province|strong="H4082"\w* according \w to|strong="H5704"\w* \w its|strong="H3605"\w* \w writing|strong="H3789"\w*, \w and|strong="H3967"\w* \w to|strong="H5704"\w* \w every|strong="H3605"\w* \w people|strong="H5971"\w* \w in|strong="H4428"\w* \w their|strong="H3605"\w* \w language|strong="H3956"\w*, \w and|strong="H3967"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w* \w in|strong="H4428"\w* \w their|strong="H3605"\w* \w writing|strong="H3789"\w*, \w and|strong="H3967"\w* \w in|strong="H4428"\w* \w their|strong="H3605"\w* \w language|strong="H3956"\w*. +\v 10 \w He|strong="H3027"\w* \w wrote|strong="H3789"\w* \w in|strong="H4428"\w* \w the|strong="H7971"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w King|strong="H4428"\w* Ahasuerus, \w and|strong="H1121"\w* \w sealed|strong="H2856"\w* \w it|strong="H8034"\w* \w with|strong="H3027"\w* \w the|strong="H7971"\w* \w king|strong="H4428"\w*’s \w ring|strong="H2885"\w*, \w and|strong="H1121"\w* \w sent|strong="H7971"\w* \w letters|strong="H5612"\w* \w by|strong="H3027"\w* \w courier|strong="H7323"\w* \w on|strong="H7392"\w* \w horseback|strong="H5483"\w*, \w riding|strong="H7392"\w* \w on|strong="H7392"\w* \w royal|strong="H4428"\w* \w horses|strong="H5483"\w* \w that|strong="H4428"\w* \w were|strong="H1121"\w* bred \w from|strong="H3027"\w* \w swift|strong="H7409"\w* \w steeds|strong="H7409"\w*. +\v 11 \w In|strong="H5921"\w* \w those|strong="H3605"\w* letters, \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w granted|strong="H5414"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w in|strong="H5921"\w* \w every|strong="H3605"\w* \w city|strong="H5892"\w* \w to|strong="H5921"\w* \w gather|strong="H6950"\w* \w themselves|strong="H5315"\w* \w together|strong="H6950"\w* \w and|strong="H4428"\w* \w to|strong="H5921"\w* \w defend|strong="H5975"\w* \w their|strong="H3605"\w* \w lives|strong="H5315"\w*—\w to|strong="H5921"\w* \w destroy|strong="H8045"\w*, \w to|strong="H5921"\w* \w kill|strong="H2026"\w*, \w and|strong="H4428"\w* \w to|strong="H5921"\w* \w cause|strong="H5414"\w* \w to|strong="H5921"\w* perish \w all|strong="H3605"\w* \w the|strong="H3605"\w* power \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w and|strong="H4428"\w* \w province|strong="H4082"\w* \w that|strong="H5971"\w* \w would|strong="H5971"\w* \w assault|strong="H6696"\w* \w them|strong="H5414"\w*, \w their|strong="H3605"\w* \w little|strong="H2945"\w* \w ones|strong="H2945"\w* \w and|strong="H4428"\w* women, \w and|strong="H4428"\w* \w to|strong="H5921"\w* \w plunder|strong="H7998"\w* \w their|strong="H3605"\w* \w possessions|strong="H7998"\w*, +\v 12 \w on|strong="H3117"\w* \w one|strong="H3605"\w* \w day|strong="H3117"\w* \w in|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w provinces|strong="H4082"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* Ahasuerus, \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w thirteenth|strong="H7969"\w* \w day|strong="H3117"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w twelfth|strong="H8147"\w* \w month|strong="H2320"\w*, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H3605"\w* \w month|strong="H2320"\w* Adar. +\v 13 \w A|strong="H3068"\w* \w copy|strong="H6572"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w letter|strong="H3791"\w*, \w that|strong="H5971"\w* \w the|strong="H3605"\w* \w decree|strong="H1881"\w* \w should|strong="H3117"\w* \w be|strong="H1961"\w* \w given|strong="H5414"\w* \w out|strong="H5414"\w* \w in|strong="H3117"\w* \w every|strong="H3605"\w* \w province|strong="H4082"\w*, \w was|strong="H1961"\w* \w published|strong="H1540"\w* \w to|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w*, \w that|strong="H5971"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w* \w should|strong="H3117"\w* \w be|strong="H1961"\w* ready \w for|strong="H3117"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w* \w to|strong="H1961"\w* \w avenge|strong="H5358"\w* \w themselves|strong="H5414"\w* \w on|strong="H3117"\w* \w their|strong="H3605"\w* enemies. +\v 14 \w So|strong="H5414"\w* \w the|strong="H5414"\w* \w couriers|strong="H7323"\w* \w who|strong="H4428"\w* \w rode|strong="H7392"\w* \w on|strong="H7392"\w* \w royal|strong="H4428"\w* \w horses|strong="H7409"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*, \w hastened|strong="H1765"\w* \w and|strong="H4428"\w* pressed \w on|strong="H7392"\w* \w by|strong="H3318"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w*’s \w commandment|strong="H1697"\w*. \w The|strong="H5414"\w* \w decree|strong="H1881"\w* \w was|strong="H1697"\w* \w given|strong="H5414"\w* \w out|strong="H3318"\w* \w in|strong="H4428"\w* \w the|strong="H5414"\w* \w citadel|strong="H1002"\w* \w of|strong="H4428"\w* \w Susa|strong="H7800"\w*. +\p +\v 15 \w Mordecai|strong="H4782"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w in|strong="H4428"\w* \w royal|strong="H4438"\w* \w clothing|strong="H3830"\w* \w of|strong="H4428"\w* \w blue|strong="H8504"\w* \w and|strong="H4428"\w* \w white|strong="H2353"\w*, \w and|strong="H4428"\w* \w with|strong="H6440"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w crown|strong="H5850"\w* \w of|strong="H4428"\w* \w gold|strong="H2091"\w*, \w and|strong="H4428"\w* \w with|strong="H6440"\w* \w a|strong="H3068"\w* \w robe|strong="H3830"\w* \w of|strong="H4428"\w* fine linen \w and|strong="H4428"\w* \w purple|strong="H8504"\w*; \w and|strong="H4428"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w* \w of|strong="H4428"\w* \w Susa|strong="H7800"\w* \w shouted|strong="H6670"\w* \w and|strong="H4428"\w* \w was|strong="H5892"\w* \w glad|strong="H8055"\w*. +\v 16 \w The|strong="H1961"\w* \w Jews|strong="H3064"\w* \w had|strong="H1961"\w* light, \w gladness|strong="H8057"\w*, \w joy|strong="H8057"\w*, \w and|strong="H8057"\w* \w honor|strong="H3366"\w*. +\v 17 \w In|strong="H5921"\w* \w every|strong="H3605"\w* \w province|strong="H4082"\w* \w and|strong="H4428"\w* \w in|strong="H5921"\w* \w every|strong="H3605"\w* \w city|strong="H5892"\w*, \w wherever|strong="H3605"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w commandment|strong="H1697"\w* \w and|strong="H4428"\w* \w his|strong="H3605"\w* \w decree|strong="H1881"\w* \w came|strong="H5060"\w*, \w the|strong="H3605"\w* \w Jews|strong="H3064"\w* \w had|strong="H4428"\w* \w gladness|strong="H8057"\w*, \w joy|strong="H8057"\w*, \w a|strong="H3068"\w* \w feast|strong="H4960"\w* \w and|strong="H4428"\w* \w a|strong="H3068"\w* \w holiday|strong="H2896"\w*. \w Many|strong="H7227"\w* \w from|strong="H5921"\w* \w among|strong="H5921"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w land|strong="H4725"\w* \w became|strong="H1697"\w* \w Jews|strong="H3064"\w*, \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w fear|strong="H6343"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w* \w had|strong="H4428"\w* \w fallen|strong="H5307"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*. +\c 9 +\p +\v 1 \w Now|strong="H3117"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w twelfth|strong="H8147"\w* \w month|strong="H2320"\w*, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H6213"\w* \w month|strong="H2320"\w* Adar, \w on|strong="H3117"\w* \w the|strong="H6213"\w* \w thirteenth|strong="H7969"\w* \w day|strong="H3117"\w* \w of|strong="H4428"\w* \w the|strong="H6213"\w* \w month|strong="H2320"\w*, \w when|strong="H3117"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w*’s \w commandment|strong="H1697"\w* \w and|strong="H4428"\w* \w his|strong="H6213"\w* \w decree|strong="H1881"\w* \w came|strong="H5060"\w* \w near|strong="H5060"\w* \w to|strong="H6213"\w* \w be|strong="H1697"\w* \w put|strong="H6213"\w* \w in|strong="H6213"\w* \w execution|strong="H6213"\w*, \w on|strong="H3117"\w* \w the|strong="H6213"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w the|strong="H6213"\w* \w enemies|strong="H8130"\w* \w of|strong="H4428"\w* \w the|strong="H6213"\w* \w Jews|strong="H3064"\w* \w hoped|strong="H7663"\w* \w to|strong="H6213"\w* conquer \w them|strong="H1992"\w*, (\w but|strong="H1992"\w* \w it|strong="H1931"\w* \w turned|strong="H2015"\w* \w out|strong="H6213"\w* \w that|strong="H3117"\w* \w the|strong="H6213"\w* \w opposite|strong="H8147"\w* \w happened|strong="H1697"\w*, \w that|strong="H3117"\w* \w the|strong="H6213"\w* \w Jews|strong="H3064"\w* conquered \w those|strong="H1992"\w* \w who|strong="H1931"\w* \w hated|strong="H8130"\w* \w them|strong="H1992"\w*), +\v 2 \w the|strong="H3605"\w* \w Jews|strong="H3064"\w* \w gathered|strong="H6950"\w* \w themselves|strong="H6440"\w* \w together|strong="H6950"\w* \w in|strong="H5921"\w* \w their|strong="H3605"\w* \w cities|strong="H5892"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w provinces|strong="H4082"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w King|strong="H4428"\w* Ahasuerus, \w to|strong="H7971"\w* \w lay|strong="H7971"\w* \w hands|strong="H3027"\w* \w on|strong="H5921"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w wanted|strong="H1245"\w* \w to|strong="H7971"\w* \w harm|strong="H7451"\w* \w them|strong="H5921"\w*. \w No|strong="H3808"\w* \w one|strong="H3605"\w* \w could|strong="H5971"\w* \w withstand|strong="H5975"\w* \w them|strong="H5921"\w*, \w because|strong="H3588"\w* \w the|strong="H3605"\w* \w fear|strong="H6343"\w* \w of|strong="H4428"\w* \w them|strong="H5921"\w* \w had|strong="H4428"\w* \w fallen|strong="H5307"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*. +\v 3 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w provinces|strong="H4082"\w*, \w the|strong="H3605"\w* local \w governors|strong="H6346"\w*, \w the|strong="H3605"\w* \w governors|strong="H6346"\w*, \w and|strong="H4428"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w did|strong="H6213"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w business|strong="H4399"\w* \w helped|strong="H5375"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w*, \w because|strong="H3588"\w* \w the|strong="H3605"\w* \w fear|strong="H6343"\w* \w of|strong="H4428"\w* \w Mordecai|strong="H4782"\w* \w had|strong="H4428"\w* \w fallen|strong="H5307"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 4 \w For|strong="H3588"\w* \w Mordecai|strong="H4782"\w* \w was|strong="H4428"\w* \w great|strong="H1419"\w* \w in|strong="H1980"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w and|strong="H1980"\w* \w his|strong="H3605"\w* \w fame|strong="H8089"\w* \w went|strong="H1980"\w* \w out|strong="H1980"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w provinces|strong="H4082"\w*, \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w man|strong="H1419"\w* \w Mordecai|strong="H4782"\w* \w grew|strong="H1980"\w* \w greater|strong="H1419"\w* \w and|strong="H1980"\w* \w greater|strong="H1419"\w*. +\v 5 \w The|strong="H3605"\w* \w Jews|strong="H3064"\w* \w struck|strong="H5221"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w enemies|strong="H8130"\w* \w with|strong="H6213"\w* \w the|strong="H3605"\w* \w stroke|strong="H4347"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w and|strong="H2719"\w* \w with|strong="H6213"\w* \w slaughter|strong="H4347"\w* \w and|strong="H2719"\w* destruction, \w and|strong="H2719"\w* \w did|strong="H6213"\w* \w what|strong="H6213"\w* \w they|strong="H6213"\w* wanted \w to|strong="H6213"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w hated|strong="H8130"\w* \w them|strong="H5221"\w*. +\v 6 \w In|strong="H1002"\w* \w the|strong="H2026"\w* \w citadel|strong="H1002"\w* \w of|strong="H1002"\w* \w Susa|strong="H7800"\w*, \w the|strong="H2026"\w* \w Jews|strong="H3064"\w* \w killed|strong="H2026"\w* \w and|strong="H3967"\w* \w destroyed|strong="H2026"\w* \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* men. +\v 7 They killed \w Parshandatha|strong="H6577"\w*, \w Dalphon|strong="H1813"\w*, Aspatha, +\v 8 \w Poratha|strong="H6334"\w*, Adalia, Aridatha, +\v 9 \w Parmashta|strong="H6534"\w*, Arisai, Aridai, and \w Vaizatha|strong="H2055"\w*, +\v 10 \w the|strong="H7971"\w* \w ten|strong="H6235"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Haman|strong="H2001"\w* \w the|strong="H7971"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hammedatha|strong="H4099"\w*, \w the|strong="H7971"\w* \w Jews|strong="H3064"\w*’ \w enemy|strong="H6887"\w*, \w but|strong="H3808"\w* \w they|strong="H3808"\w* didn’t \w lay|strong="H7971"\w* \w their|strong="H7971"\w* \w hand|strong="H3027"\w* \w on|strong="H3027"\w* \w the|strong="H7971"\w* plunder. +\p +\v 11 \w On|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w the|strong="H6440"\w* \w number|strong="H4557"\w* \w of|strong="H4428"\w* \w those|strong="H1931"\w* \w who|strong="H1931"\w* \w were|strong="H3117"\w* \w slain|strong="H2026"\w* \w in|strong="H4428"\w* \w the|strong="H6440"\w* \w citadel|strong="H1002"\w* \w of|strong="H4428"\w* \w Susa|strong="H7800"\w* \w was|strong="H1931"\w* \w brought|strong="H4428"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*. +\v 12 \w The|strong="H5414"\w* \w king|strong="H4428"\w* said \w to|strong="H6213"\w* Esther \w the|strong="H5414"\w* \w queen|strong="H4436"\w*, “\w The|strong="H5414"\w* \w Jews|strong="H3064"\w* \w have|strong="H1121"\w* \w slain|strong="H2026"\w* \w and|strong="H3967"\w* \w destroyed|strong="H2026"\w* \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w men|strong="H1121"\w* \w in|strong="H6213"\w* \w the|strong="H5414"\w* \w citadel|strong="H1002"\w* \w of|strong="H1121"\w* \w Susa|strong="H7800"\w*, \w including|strong="H4428"\w* \w the|strong="H5414"\w* \w ten|strong="H6235"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Haman|strong="H2001"\w*; \w what|strong="H4100"\w* \w then|strong="H5414"\w* \w have|strong="H1121"\w* \w they|strong="H4100"\w* \w done|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H5414"\w* \w rest|strong="H7605"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w*’s \w provinces|strong="H4082"\w*! \w Now|strong="H5414"\w* \w what|strong="H4100"\w* \w is|strong="H4100"\w* \w your|strong="H5414"\w* \w petition|strong="H7596"\w*? \w It|strong="H5414"\w* \w shall|strong="H1121"\w* \w be|strong="H5750"\w* \w granted|strong="H5414"\w* \w you|strong="H5414"\w*. \w What|strong="H4100"\w* \w is|strong="H4100"\w* \w your|strong="H5414"\w* \w further|strong="H5750"\w* \w request|strong="H1246"\w*? \w It|strong="H5414"\w* \w shall|strong="H1121"\w* \w be|strong="H5750"\w* \w done|strong="H6213"\w*.” +\p +\v 13 \w Then|strong="H1571"\w* Esther said, “\w If|strong="H1121"\w* \w it|strong="H5414"\w* \w pleases|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*, \w let|strong="H5414"\w* \w it|strong="H5414"\w* \w be|strong="H1121"\w* \w granted|strong="H5414"\w* \w to|strong="H6213"\w* \w the|strong="H5921"\w* \w Jews|strong="H3064"\w* \w who|strong="H1121"\w* \w are|strong="H3117"\w* \w in|strong="H5921"\w* \w Susa|strong="H7800"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w tomorrow|strong="H4279"\w* \w also|strong="H1571"\w* \w according|strong="H5921"\w* \w to|strong="H6213"\w* \w today|strong="H3117"\w*’s \w decree|strong="H1881"\w*, \w and|strong="H1121"\w* \w let|strong="H5414"\w* \w Haman|strong="H2001"\w*’s \w ten|strong="H6235"\w* \w sons|strong="H1121"\w* \w be|strong="H1121"\w* \w hanged|strong="H8518"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w gallows|strong="H6086"\w*.” +\p +\v 14 \w The|strong="H5414"\w* \w king|strong="H4428"\w* commanded \w this|strong="H3651"\w* \w to|strong="H6213"\w* \w be|strong="H1121"\w* \w done|strong="H6213"\w*. \w A|strong="H3068"\w* \w decree|strong="H1881"\w* \w was|strong="H4428"\w* \w given|strong="H5414"\w* \w out|strong="H5414"\w* \w in|strong="H6213"\w* \w Susa|strong="H7800"\w*; \w and|strong="H1121"\w* \w they|strong="H3651"\w* \w hanged|strong="H8518"\w* \w Haman|strong="H2001"\w*’s \w ten|strong="H6235"\w* \w sons|strong="H1121"\w*. +\v 15 \w The|strong="H3117"\w* \w Jews|strong="H3064"\w* \w who|strong="H3808"\w* \w were|strong="H3117"\w* \w in|strong="H3117"\w* \w Susa|strong="H7800"\w* \w gathered|strong="H6950"\w* \w themselves|strong="H6950"\w* \w together|strong="H6950"\w* \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w fourteenth|strong="H6240"\w* \w day|strong="H3117"\w* \w also|strong="H1571"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w month|strong="H2320"\w* Adar, \w and|strong="H3967"\w* \w killed|strong="H2026"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* men \w in|strong="H3117"\w* \w Susa|strong="H7800"\w*; \w but|strong="H3808"\w* \w they|strong="H3117"\w* didn’t \w lay|strong="H7971"\w* \w their|strong="H7971"\w* \w hand|strong="H3027"\w* \w on|strong="H3117"\w* \w the|strong="H3117"\w* plunder. +\p +\v 16 \w The|strong="H5921"\w* \w other|strong="H7605"\w* \w Jews|strong="H3064"\w* \w who|strong="H5315"\w* \w were|strong="H3027"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w provinces|strong="H4082"\w* \w gathered|strong="H6950"\w* \w themselves|strong="H5315"\w* \w together|strong="H6950"\w*, defended \w their|strong="H5921"\w* \w lives|strong="H5315"\w*, \w had|strong="H4428"\w* \w rest|strong="H7605"\w* \w from|strong="H5921"\w* \w their|strong="H5921"\w* \w enemies|strong="H8130"\w*, \w and|strong="H7971"\w* \w killed|strong="H2026"\w* \w seventy-five|strong="H7657"\w* thousand \w of|strong="H4428"\w* \w those|strong="H5921"\w* \w who|strong="H5315"\w* \w hated|strong="H8130"\w* \w them|strong="H5921"\w*; \w but|strong="H3808"\w* \w they|strong="H3808"\w* didn’t \w lay|strong="H7971"\w* \w their|strong="H5921"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* plunder. +\v 17 \w This|strong="H6213"\w* \w was|strong="H3117"\w* \w done|strong="H6213"\w* \w on|strong="H3117"\w* \w the|strong="H6213"\w* \w thirteenth|strong="H7969"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H6213"\w* \w month|strong="H2320"\w* Adar; \w and|strong="H3117"\w* \w on|strong="H3117"\w* \w the|strong="H6213"\w* \w fourteenth|strong="H6240"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w that|strong="H3117"\w* \w month|strong="H2320"\w* \w they|strong="H3117"\w* \w rested|strong="H5117"\w* \w and|strong="H3117"\w* \w made|strong="H6213"\w* \w it|strong="H6213"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w feasting|strong="H4960"\w* \w and|strong="H3117"\w* \w gladness|strong="H8057"\w*. +\p +\v 18 \w But|strong="H3117"\w* \w the|strong="H6213"\w* \w Jews|strong="H3064"\w* \w who|strong="H6213"\w* \w were|strong="H3117"\w* \w in|strong="H6213"\w* \w Susa|strong="H7800"\w* \w assembled|strong="H6950"\w* \w together|strong="H6950"\w* \w on|strong="H3117"\w* \w the|strong="H6213"\w* \w thirteenth|strong="H7969"\w* \w and|strong="H3117"\w* \w on|strong="H3117"\w* \w the|strong="H6213"\w* \w fourteenth|strong="H6240"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H6213"\w* month; \w and|strong="H3117"\w* \w on|strong="H3117"\w* \w the|strong="H6213"\w* \w fifteenth|strong="H2568"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w that|strong="H3117"\w* month, \w they|strong="H3117"\w* \w rested|strong="H5117"\w*, \w and|strong="H3117"\w* \w made|strong="H6213"\w* \w it|strong="H6213"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w feasting|strong="H4960"\w* \w and|strong="H3117"\w* \w gladness|strong="H8057"\w*. +\v 19 \w Therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w Jews|strong="H3064"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w villages|strong="H6519"\w*, \w who|strong="H3427"\w* \w live|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w unwalled|strong="H6521"\w* \w towns|strong="H5892"\w*, \w make|strong="H6213"\w* \w the|strong="H5921"\w* \w fourteenth|strong="H6240"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w month|strong="H2320"\w* Adar \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w gladness|strong="H8057"\w* \w and|strong="H3117"\w* \w feasting|strong="H4960"\w*, \w a|strong="H3068"\w* \w holiday|strong="H2896"\w*, \w and|strong="H3117"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w sending|strong="H4916"\w* presents \w of|strong="H3117"\w* \w food|strong="H4490"\w* \w to|strong="H6213"\w* \w one|strong="H2896"\w* \w another|strong="H7453"\w*. +\p +\v 20 \w Mordecai|strong="H4782"\w* \w wrote|strong="H3789"\w* \w these|strong="H3789"\w* \w things|strong="H1697"\w*, \w and|strong="H7971"\w* \w sent|strong="H7971"\w* \w letters|strong="H5612"\w* \w to|strong="H7971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w* \w who|strong="H3605"\w* \w were|strong="H1697"\w* \w in|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w provinces|strong="H4082"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w King|strong="H4428"\w* Ahasuerus, \w both|strong="H3605"\w* \w near|strong="H7138"\w* \w and|strong="H7971"\w* \w far|strong="H7350"\w*, +\v 21 \w to|strong="H1961"\w* enjoin \w them|strong="H5921"\w* \w that|strong="H3605"\w* \w they|strong="H3117"\w* \w should|strong="H8141"\w* \w keep|strong="H6213"\w* \w the|strong="H3605"\w* \w fourteenth|strong="H6240"\w* \w and|strong="H6965"\w* \w fifteenth|strong="H2568"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w month|strong="H2320"\w* Adar \w yearly|strong="H3117"\w*, +\v 22 \w as|strong="H3117"\w* \w the|strong="H6213"\w* \w days|strong="H3117"\w* \w in|strong="H6213"\w* \w which|strong="H1992"\w* \w the|strong="H6213"\w* \w Jews|strong="H3064"\w* \w had|strong="H3064"\w* \w rest|strong="H5117"\w* \w from|strong="H3117"\w* \w their|strong="H1992"\w* enemies, \w and|strong="H3117"\w* \w the|strong="H6213"\w* \w month|strong="H2320"\w* \w which|strong="H1992"\w* \w was|strong="H3117"\w* \w turned|strong="H2015"\w* \w to|strong="H6213"\w* \w them|strong="H1992"\w* \w from|strong="H3117"\w* \w sorrow|strong="H3015"\w* \w to|strong="H6213"\w* \w gladness|strong="H8057"\w*, \w and|strong="H3117"\w* \w from|strong="H3117"\w* mourning \w into|strong="H2015"\w* \w a|strong="H3068"\w* \w holiday|strong="H2896"\w*; \w that|strong="H3117"\w* \w they|strong="H1992"\w* \w should|strong="H3117"\w* \w make|strong="H6213"\w* \w them|strong="H1992"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w feasting|strong="H4960"\w* \w and|strong="H3117"\w* \w gladness|strong="H8057"\w*, \w and|strong="H3117"\w* \w of|strong="H3117"\w* \w sending|strong="H4916"\w* \w presents|strong="H4979"\w* \w of|strong="H3117"\w* \w food|strong="H4490"\w* \w to|strong="H6213"\w* \w one|strong="H2896"\w* \w another|strong="H7453"\w*, \w and|strong="H3117"\w* \w gifts|strong="H4979"\w* \w to|strong="H6213"\w* \w the|strong="H6213"\w* needy. +\v 23 \w The|strong="H6213"\w* \w Jews|strong="H3064"\w* \w accepted|strong="H6901"\w* \w the|strong="H6213"\w* \w custom|strong="H6901"\w* \w that|strong="H3064"\w* \w they|strong="H6213"\w* \w had|strong="H4782"\w* \w begun|strong="H2490"\w*, \w as|strong="H6213"\w* \w Mordecai|strong="H4782"\w* \w had|strong="H4782"\w* \w written|strong="H3789"\w* \w to|strong="H6213"\w* \w them|strong="H6213"\w*, +\v 24 \w because|strong="H3588"\w* \w Haman|strong="H2001"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hammedatha|strong="H4099"\w*, \w the|strong="H3605"\w* Agagite, \w the|strong="H3605"\w* \w enemy|strong="H6887"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w*, \w had|strong="H3588"\w* \w plotted|strong="H2803"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w* \w to|strong="H5921"\w* \w destroy|strong="H2000"\w* \w them|strong="H5921"\w*, \w and|strong="H1121"\w* \w had|strong="H3588"\w* \w cast|strong="H5307"\w* “\w Pur|strong="H6332"\w*”, \w that|strong="H3588"\w* \w is|strong="H1931"\w* \w the|strong="H3605"\w* \w lot|strong="H1486"\w*, \w to|strong="H5921"\w* \w consume|strong="H2000"\w* \w them|strong="H5921"\w* \w and|strong="H1121"\w* \w to|strong="H5921"\w* \w destroy|strong="H2000"\w* \w them|strong="H5921"\w*; +\v 25 \w but|strong="H7725"\w* \w when|strong="H7725"\w* \w this|strong="H6440"\w* \w became|strong="H7725"\w* known \w to|strong="H7725"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*, \w he|strong="H5921"\w* commanded \w by|strong="H5921"\w* \w letters|strong="H5612"\w* \w that|strong="H4428"\w* \w his|strong="H7725"\w* \w wicked|strong="H7451"\w* \w plan|strong="H2803"\w*, \w which|strong="H3064"\w* \w he|strong="H5921"\w* \w had|strong="H4428"\w* \w planned|strong="H2803"\w* \w against|strong="H5921"\w* \w the|strong="H6440"\w* \w Jews|strong="H3064"\w*, \w should|strong="H4428"\w* \w return|strong="H7725"\w* \w on|strong="H5921"\w* \w his|strong="H7725"\w* \w own|strong="H5973"\w* \w head|strong="H7218"\w*, \w and|strong="H1121"\w* \w that|strong="H4428"\w* \w he|strong="H5921"\w* \w and|strong="H1121"\w* \w his|strong="H7725"\w* \w sons|strong="H1121"\w* \w should|strong="H4428"\w* \w be|strong="H1121"\w* \w hanged|strong="H8518"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w gallows|strong="H6086"\w*. +\p +\v 26 \w Therefore|strong="H3651"\w* \w they|strong="H3117"\w* \w called|strong="H7121"\w* \w these|strong="H2063"\w* \w days|strong="H3117"\w* “\w Purim|strong="H6332"\w*”,\f + \fr 9:26 \ft Purim is the Hebrew plural for pur, which means lot.\f* \w from|strong="H5921"\w* \w the|strong="H3605"\w* \w word|strong="H1697"\w* “\w Pur|strong="H6332"\w*.” \w Therefore|strong="H3651"\w* \w because|strong="H5921"\w* \w of|strong="H3117"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H3117"\w* \w this|strong="H2063"\w* letter, \w and|strong="H3117"\w* \w of|strong="H3117"\w* \w that|strong="H7200"\w* \w which|strong="H1697"\w* \w they|strong="H3117"\w* \w had|strong="H4100"\w* \w seen|strong="H7200"\w* \w concerning|strong="H5921"\w* \w this|strong="H2063"\w* \w matter|strong="H1697"\w*, \w and|strong="H3117"\w* \w that|strong="H7200"\w* \w which|strong="H1697"\w* \w had|strong="H4100"\w* \w come|strong="H5060"\w* \w to|strong="H5921"\w* \w them|strong="H5921"\w*, +\v 27 \w the|strong="H3605"\w* \w Jews|strong="H3064"\w* \w established|strong="H6965"\w* \w and|strong="H6965"\w* imposed \w on|strong="H5921"\w* \w themselves|strong="H6213"\w*, \w on|strong="H5921"\w* \w their|strong="H3605"\w* \w descendants|strong="H2233"\w*, \w and|strong="H6965"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w joined|strong="H3867"\w* \w themselves|strong="H6213"\w* \w to|strong="H1961"\w* \w them|strong="H5921"\w*, \w so|strong="H6213"\w* \w that|strong="H3605"\w* \w it|strong="H5921"\w* \w should|strong="H8141"\w* \w not|strong="H3808"\w* \w fail|strong="H5674"\w* \w that|strong="H3605"\w* \w they|strong="H3117"\w* \w would|strong="H6213"\w* \w keep|strong="H6213"\w* \w these|strong="H6213"\w* \w two|strong="H8147"\w* \w days|strong="H3117"\w* \w according|strong="H5921"\w* \w to|strong="H1961"\w* \w what|strong="H6213"\w* \w was|strong="H1961"\w* written \w and|strong="H6965"\w* \w according|strong="H5921"\w* \w to|strong="H1961"\w* \w its|strong="H3605"\w* \w appointed|strong="H6213"\w* \w time|strong="H3117"\w* \w every|strong="H3605"\w* \w year|strong="H8141"\w*; +\v 28 \w and|strong="H3117"\w* \w that|strong="H3605"\w* \w these|strong="H6213"\w* \w days|strong="H3117"\w* \w should|strong="H3117"\w* \w be|strong="H3808"\w* \w remembered|strong="H2142"\w* \w and|strong="H3117"\w* \w kept|strong="H6213"\w* \w throughout|strong="H3605"\w* \w every|strong="H3605"\w* \w generation|strong="H1755"\w*, \w every|strong="H3605"\w* \w family|strong="H4940"\w*, \w every|strong="H3605"\w* \w province|strong="H4082"\w*, \w and|strong="H3117"\w* \w every|strong="H3605"\w* \w city|strong="H5892"\w*; \w and|strong="H3117"\w* \w that|strong="H3605"\w* \w these|strong="H6213"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w Purim|strong="H6332"\w* \w should|strong="H3117"\w* \w not|strong="H3808"\w* \w fail|strong="H5674"\w* \w from|strong="H3117"\w* \w among|strong="H8432"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w*, \w nor|strong="H3808"\w* \w their|strong="H3605"\w* \w memory|strong="H2143"\w* \w perish|strong="H5674"\w* \w from|strong="H3117"\w* \w their|strong="H3605"\w* \w offspring|strong="H2233"\w*.\f + \fr 9:28 \ft or, seed\f* +\p +\v 29 \w Then|strong="H6965"\w* Esther \w the|strong="H3605"\w* \w queen|strong="H4436"\w*, \w the|strong="H3605"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* Abihail, \w and|strong="H6965"\w* \w Mordecai|strong="H4782"\w* \w the|strong="H3605"\w* \w Jew|strong="H3064"\w* \w wrote|strong="H3789"\w* \w with|strong="H3605"\w* \w all|strong="H3605"\w* \w authority|strong="H8633"\w* \w to|strong="H6965"\w* \w confirm|strong="H6965"\w* \w this|strong="H2063"\w* \w second|strong="H8145"\w* letter \w of|strong="H1323"\w* \w Purim|strong="H6332"\w*. +\v 30 \w He|strong="H3605"\w* \w sent|strong="H7971"\w* \w letters|strong="H5612"\w* \w to|strong="H7971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w* \w in|strong="H1697"\w* \w the|strong="H3605"\w* \w hundred|strong="H3967"\w* \w twenty-seven|strong="H6242"\w* \w provinces|strong="H4082"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w kingdom|strong="H4438"\w* \w of|strong="H1697"\w* Ahasuerus \w with|strong="H1697"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w peace|strong="H7965"\w* \w and|strong="H3967"\w* truth, +\v 31 \w to|strong="H5921"\w* \w confirm|strong="H6965"\w* \w these|strong="H6965"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w Purim|strong="H6332"\w* \w in|strong="H5921"\w* \w their|strong="H5921"\w* \w appointed|strong="H2165"\w* \w times|strong="H3117"\w*, \w as|strong="H1697"\w* \w Mordecai|strong="H4782"\w* \w the|strong="H5921"\w* \w Jew|strong="H3064"\w* \w and|strong="H6965"\w* Esther \w the|strong="H5921"\w* \w queen|strong="H4436"\w* \w had|strong="H4782"\w* \w decreed|strong="H6965"\w*, \w and|strong="H6965"\w* \w as|strong="H1697"\w* \w they|strong="H3117"\w* \w had|strong="H4782"\w* imposed \w upon|strong="H5921"\w* \w themselves|strong="H5315"\w* \w and|strong="H6965"\w* \w their|strong="H5921"\w* \w descendants|strong="H2233"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w matter|strong="H1697"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w fastings|strong="H6685"\w* \w and|strong="H6965"\w* \w their|strong="H5921"\w* mourning. +\v 32 \w The|strong="H6965"\w* \w commandment|strong="H1697"\w* \w of|strong="H1697"\w* Esther \w confirmed|strong="H6965"\w* \w these|strong="H3789"\w* \w matters|strong="H1697"\w* \w of|strong="H1697"\w* \w Purim|strong="H6332"\w*; \w and|strong="H6965"\w* \w it|strong="H3789"\w* \w was|strong="H1697"\w* \w written|strong="H3789"\w* \w in|strong="H3789"\w* \w the|strong="H6965"\w* \w book|strong="H5612"\w*. +\c 10 +\p +\v 1 \w King|strong="H4428"\w* Ahasuerus \w laid|strong="H7760"\w* \w a|strong="H3068"\w* \w tribute|strong="H4522"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* land \w and|strong="H4428"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* islands \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*. +\v 2 Aren’t \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w acts|strong="H1697"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* \w power|strong="H1369"\w* \w and|strong="H4428"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* \w might|strong="H1369"\w*, \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w full|strong="H3117"\w* \w account|strong="H5921"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w greatness|strong="H1420"\w* \w of|strong="H4428"\w* \w Mordecai|strong="H4782"\w*, \w to|strong="H5921"\w* \w which|strong="H1992"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w advanced|strong="H1431"\w* \w him|strong="H5921"\w*, \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w chronicles|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Media|strong="H4074"\w* \w and|strong="H4428"\w* \w Persia|strong="H6539"\w*? +\v 3 \w For|strong="H3588"\w* \w Mordecai|strong="H4782"\w* \w the|strong="H3605"\w* \w Jew|strong="H3064"\w* \w was|strong="H4428"\w* \w next|strong="H4932"\w* \w to|strong="H1696"\w* \w King|strong="H4428"\w* Ahasuerus, \w and|strong="H4428"\w* \w great|strong="H1419"\w* \w among|strong="H5971"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w* \w and|strong="H4428"\w* \w accepted|strong="H7521"\w* \w by|strong="H3605"\w* \w the|strong="H3605"\w* \w multitude|strong="H7230"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* brothers, \w seeking|strong="H1875"\w* \w the|strong="H3605"\w* \w good|strong="H2896"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w* \w and|strong="H4428"\w* \w speaking|strong="H1696"\w* \w peace|strong="H7965"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w descendants|strong="H2233"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/19-JOBeng-web.usfm b/bibles/eng-web_usfm/19-JOBeng-web.usfm new file mode 100644 index 0000000..0c1d46e --- /dev/null +++ b/bibles/eng-web_usfm/19-JOBeng-web.usfm @@ -0,0 +1,3406 @@ +\id JOB World English Bible (WEB) +\ide UTF-8 +\h Job +\toc1 The Book of Job +\toc2 Job +\toc3 Job +\mt2 The Book of +\mt1 Job +\c 1 +\p +\v 1 \w There|strong="H1961"\w* \w was|strong="H8034"\w* \w a|strong="H3068"\w* \w man|strong="H7451"\w* \w in|strong="H3477"\w* \w the|strong="H5493"\w* land \w of|strong="H8034"\w* \w Uz|strong="H5780"\w*, \w whose|strong="H8034"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* Job. \w That|strong="H1931"\w* \w man|strong="H7451"\w* \w was|strong="H8034"\w* \w blameless|strong="H8535"\w* \w and|strong="H8034"\w* \w upright|strong="H3477"\w*, \w and|strong="H8034"\w* \w one|strong="H1931"\w* \w who|strong="H1931"\w* \w feared|strong="H3373"\w* God,\f + \fr 1:1 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w and|strong="H8034"\w* \w turned|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* \w evil|strong="H7451"\w*. +\v 2 There \w were|strong="H1121"\w* \w born|strong="H3205"\w* \w to|strong="H3205"\w* \w him|strong="H3205"\w* \w seven|strong="H7651"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w three|strong="H7969"\w* \w daughters|strong="H1323"\w*. +\v 3 \w His|strong="H3605"\w* \w possessions|strong="H4735"\w* \w also|strong="H1121"\w* \w were|strong="H1961"\w* \w seven|strong="H7651"\w* thousand \w sheep|strong="H6629"\w*, \w three|strong="H7969"\w* thousand \w camels|strong="H1581"\w*, \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w yoke|strong="H6776"\w* \w of|strong="H1121"\w* \w oxen|strong="H1241"\w*, \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* female donkeys, \w and|strong="H3967"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H1419"\w* \w household|strong="H5657"\w*; \w so|strong="H1961"\w* \w that|strong="H3605"\w* \w this|strong="H1931"\w* \w man|strong="H1121"\w* \w was|strong="H1961"\w* \w the|strong="H3605"\w* \w greatest|strong="H1419"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w east|strong="H6924"\w*. +\v 4 \w His|strong="H7121"\w* \w sons|strong="H1121"\w* \w went|strong="H1980"\w* \w and|strong="H1121"\w* \w held|strong="H6213"\w* \w a|strong="H3068"\w* \w feast|strong="H4960"\w* \w in|strong="H1980"\w* \w the|strong="H6213"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w each|strong="H3117"\w* \w one|strong="H1121"\w* \w on|strong="H3117"\w* \w his|strong="H7121"\w* \w birthday|strong="H3117"\w*; \w and|strong="H1121"\w* \w they|strong="H3117"\w* \w sent|strong="H7971"\w* \w and|strong="H1121"\w* \w called|strong="H7121"\w* \w for|strong="H7121"\w* \w their|strong="H7971"\w* \w three|strong="H7969"\w* sisters \w to|strong="H1980"\w* eat \w and|strong="H1121"\w* \w to|strong="H1980"\w* \w drink|strong="H8354"\w* \w with|strong="H5973"\w* \w them|strong="H7971"\w*. +\v 5 \w It|strong="H3588"\w* \w was|strong="H1961"\w* \w so|strong="H6213"\w*, \w when|strong="H3588"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w their|strong="H3605"\w* \w feasting|strong="H4960"\w* \w had|strong="H1961"\w* run \w their|strong="H3605"\w* course, \w that|strong="H3588"\w* Job \w sent|strong="H7971"\w* \w and|strong="H1121"\w* \w sanctified|strong="H6942"\w* \w them|strong="H7971"\w*, \w and|strong="H1121"\w* \w rose|strong="H7925"\w* \w up|strong="H5927"\w* \w early|strong="H7925"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w*, \w and|strong="H1121"\w* \w offered|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w according|strong="H3602"\w* \w to|strong="H7971"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w them|strong="H7971"\w* \w all|strong="H3605"\w*. \w For|strong="H3588"\w* Job said, “\w It|strong="H3588"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w that|strong="H3588"\w* \w my|strong="H3605"\w* \w sons|strong="H1121"\w* \w have|strong="H1961"\w* \w sinned|strong="H2398"\w*, \w and|strong="H1121"\w* renounced \w God|strong="H7971"\w* \w in|strong="H6213"\w* \w their|strong="H3605"\w* \w hearts|strong="H3824"\w*.” Job \w did|strong="H6213"\w* \w so|strong="H6213"\w* \w continually|strong="H3605"\w*. +\p +\v 6 \w Now|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w when|strong="H1961"\w* \w God|strong="H3068"\w*’s \w sons|strong="H1121"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w present|strong="H3320"\w* \w themselves|strong="H3320"\w* \w before|strong="H5921"\w* \w Yahweh|strong="H3068"\w*,\f + \fr 1:6 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w Satan|strong="H7854"\w* \w also|strong="H1571"\w* \w came|strong="H1961"\w* \w among|strong="H8432"\w* \w them|strong="H5921"\w*. +\v 7 \w Yahweh|strong="H3068"\w* \w said|strong="H6030"\w* \w to|strong="H1980"\w* \w Satan|strong="H7854"\w*, “Where \w have|strong="H3068"\w* \w you|strong="H6030"\w* \w come|strong="H1980"\w* \w from|strong="H1980"\w*?” +\p \w Then|strong="H6030"\w* \w Satan|strong="H7854"\w* \w answered|strong="H6030"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H1980"\w* \w said|strong="H6030"\w*, “\w From|strong="H1980"\w* \w going|strong="H1980"\w* \w back|strong="H1980"\w* \w and|strong="H1980"\w* \w forth|strong="H1980"\w* \w in|strong="H1980"\w* \w the|strong="H3068"\w* earth, \w and|strong="H1980"\w* \w from|strong="H1980"\w* \w walking|strong="H1980"\w* \w up|strong="H6030"\w* \w and|strong="H1980"\w* \w down|strong="H1980"\w* \w in|strong="H1980"\w* \w it|strong="H1980"\w*.” +\p +\v 8 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Satan|strong="H7854"\w*, “\w Have|strong="H3068"\w* \w you|strong="H3588"\w* \w considered|strong="H7760"\w* \w my|strong="H3068"\w* \w servant|strong="H5650"\w*, Job? \w For|strong="H3588"\w* \w there|strong="H3068"\w* \w is|strong="H3068"\w* \w no|strong="H7760"\w* \w one|strong="H3588"\w* \w like|strong="H3644"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* earth, \w a|strong="H3068"\w* \w blameless|strong="H8535"\w* \w and|strong="H3068"\w* \w an|strong="H7760"\w* \w upright|strong="H3477"\w* \w man|strong="H7451"\w*, \w one|strong="H3588"\w* \w who|strong="H3068"\w* \w fears|strong="H3373"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w turns|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* \w evil|strong="H7451"\w*.” +\p +\v 9 \w Then|strong="H6030"\w* \w Satan|strong="H7854"\w* \w answered|strong="H6030"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w said|strong="H6030"\w*, “\w Does|strong="H3068"\w* Job \w fear|strong="H3372"\w* \w God|strong="H3068"\w* \w for|strong="H3068"\w* \w nothing|strong="H2600"\w*? +\v 10 Haven’t \w you|strong="H3605"\w* \w made|strong="H4639"\w* \w a|strong="H3068"\w* \w hedge|strong="H7753"\w* \w around|strong="H5439"\w* \w him|strong="H3027"\w*, \w and|strong="H3027"\w* \w around|strong="H5439"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*, \w and|strong="H3027"\w* \w around|strong="H5439"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w has|strong="H3027"\w*, \w on|strong="H3027"\w* \w every|strong="H3605"\w* \w side|strong="H5439"\w*? \w You|strong="H3605"\w* \w have|strong="H3027"\w* \w blessed|strong="H1288"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H1004"\w* \w his|strong="H3605"\w* \w hands|strong="H3027"\w*, \w and|strong="H3027"\w* \w his|strong="H3605"\w* \w substance|strong="H4735"\w* \w is|strong="H3027"\w* \w increased|strong="H6555"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* land. +\v 11 \w But|strong="H3808"\w* \w stretch|strong="H7971"\w* \w out|strong="H7971"\w* \w your|strong="H3605"\w* \w hand|strong="H3027"\w* \w now|strong="H4994"\w*, \w and|strong="H7971"\w* \w touch|strong="H5060"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w has|strong="H3027"\w*, \w and|strong="H7971"\w* \w he|strong="H3605"\w* \w will|strong="H3027"\w* renounce \w you|strong="H6440"\w* \w to|strong="H7971"\w* \w your|strong="H3605"\w* \w face|strong="H6440"\w*.” +\p +\v 12 \w Yahweh|strong="H3068"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w Satan|strong="H7854"\w*, “\w Behold|strong="H2009"\w*,\f + \fr 1:12 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w power|strong="H3027"\w*. \w Only|strong="H7535"\w* \w on|strong="H3027"\w* \w himself|strong="H3027"\w* don’t \w stretch|strong="H7971"\w* \w out|strong="H3318"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*.” +\p \w So|strong="H7971"\w* \w Satan|strong="H7854"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w the|strong="H3605"\w* \w presence|strong="H6440"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 13 \w It|strong="H1961"\w* \w fell|strong="H1961"\w* \w on|strong="H3117"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w when|strong="H1961"\w* \w his|strong="H1961"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w his|strong="H1961"\w* \w daughters|strong="H1323"\w* \w were|strong="H1961"\w* eating \w and|strong="H1121"\w* \w drinking|strong="H8354"\w* \w wine|strong="H3196"\w* \w in|strong="H1004"\w* \w their|strong="H1961"\w* \w oldest|strong="H1060"\w* brother’s \w house|strong="H1004"\w*, +\v 14 \w that|strong="H4397"\w* \w a|strong="H3068"\w* \w messenger|strong="H4397"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* Job, \w and|strong="H3027"\w* \w said|strong="H2790"\w*, “\w The|strong="H5921"\w* \w oxen|strong="H1241"\w* \w were|strong="H1961"\w* \w plowing|strong="H2790"\w*, \w and|strong="H3027"\w* \w the|strong="H5921"\w* donkeys \w feeding|strong="H7462"\w* \w beside|strong="H5921"\w* \w them|strong="H5921"\w*, +\v 15 \w and|strong="H2719"\w* \w the|strong="H3947"\w* \w Sabeans|strong="H7614"\w* \w attacked|strong="H5221"\w*, \w and|strong="H2719"\w* \w took|strong="H3947"\w* \w them|strong="H5221"\w* \w away|strong="H3947"\w*. Yes, \w they|strong="H6310"\w* \w have|strong="H5288"\w* \w killed|strong="H5221"\w* \w the|strong="H3947"\w* \w servants|strong="H5288"\w* \w with|strong="H6310"\w* \w the|strong="H3947"\w* \w edge|strong="H6310"\w* \w of|strong="H6310"\w* \w the|strong="H3947"\w* \w sword|strong="H2719"\w*, \w and|strong="H2719"\w* \w I|strong="H5288"\w* \w alone|strong="H4422"\w* \w have|strong="H5288"\w* \w escaped|strong="H4422"\w* \w to|strong="H6310"\w* \w tell|strong="H5046"\w* \w you|strong="H3947"\w*.” +\p +\v 16 \w While|strong="H5750"\w* \w he|strong="H4480"\w* \w was|strong="H5288"\w* \w still|strong="H5750"\w* \w speaking|strong="H1696"\w*, \w another|strong="H2088"\w* \w also|strong="H5750"\w* \w came|strong="H5307"\w* \w and|strong="H8064"\w* \w said|strong="H1696"\w*, “\w The|strong="H4480"\w* fire \w of|strong="H4480"\w* \w God|strong="H8064"\w* \w has|strong="H2088"\w* \w fallen|strong="H5307"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w sky|strong="H8064"\w*, \w and|strong="H8064"\w* \w has|strong="H2088"\w* \w burned|strong="H1197"\w* \w up|strong="H1197"\w* \w the|strong="H4480"\w* \w sheep|strong="H6629"\w* \w and|strong="H8064"\w* \w the|strong="H4480"\w* \w servants|strong="H5288"\w*, \w and|strong="H8064"\w* \w consumed|strong="H1197"\w* \w them|strong="H5307"\w*, \w and|strong="H8064"\w* \w I|strong="H2088"\w* \w alone|strong="H4480"\w* \w have|strong="H5288"\w* \w escaped|strong="H4422"\w* \w to|strong="H1696"\w* \w tell|strong="H5046"\w* \w you|strong="H5046"\w*.” +\p +\v 17 \w While|strong="H5750"\w* \w he|strong="H5921"\w* \w was|strong="H5288"\w* \w still|strong="H5750"\w* \w speaking|strong="H1696"\w*, \w another|strong="H2088"\w* \w also|strong="H5750"\w* \w came|strong="H7969"\w* \w and|strong="H7218"\w* \w said|strong="H1696"\w*, “\w The|strong="H5921"\w* \w Chaldeans|strong="H3778"\w* \w made|strong="H7760"\w* \w three|strong="H7969"\w* \w bands|strong="H7218"\w*, \w and|strong="H7218"\w* swept \w down|strong="H5221"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w camels|strong="H1581"\w*, \w and|strong="H7218"\w* \w have|strong="H5288"\w* \w taken|strong="H3947"\w* \w them|strong="H5921"\w* \w away|strong="H3947"\w*, yes, \w and|strong="H7218"\w* \w killed|strong="H5221"\w* \w the|strong="H5921"\w* \w servants|strong="H5288"\w* \w with|strong="H1696"\w* \w the|strong="H5921"\w* \w edge|strong="H6310"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w*; \w and|strong="H7218"\w* \w I|strong="H5921"\w* \w alone|strong="H4422"\w* \w have|strong="H5288"\w* \w escaped|strong="H4422"\w* \w to|strong="H1696"\w* \w tell|strong="H5046"\w* \w you|strong="H5921"\w*.” +\p +\v 18 \w While|strong="H5704"\w* \w he|strong="H5704"\w* \w was|strong="H1004"\w* \w still|strong="H5704"\w* \w speaking|strong="H1696"\w*, \w there|strong="H2088"\w* \w came|strong="H1323"\w* \w also|strong="H2088"\w* \w another|strong="H2088"\w*, \w and|strong="H1121"\w* \w said|strong="H1696"\w*, “\w Your|strong="H5704"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w your|strong="H5704"\w* \w daughters|strong="H1323"\w* \w were|strong="H1121"\w* eating \w and|strong="H1121"\w* \w drinking|strong="H8354"\w* \w wine|strong="H3196"\w* \w in|strong="H1004"\w* \w their|strong="H8354"\w* \w oldest|strong="H1060"\w* brother’s \w house|strong="H1004"\w*, +\v 19 \w and|strong="H1419"\w* \w behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w came|strong="H5060"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w wind|strong="H7307"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*, \w and|strong="H1419"\w* \w struck|strong="H5060"\w* \w the|strong="H5921"\w* four \w corners|strong="H6438"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*, \w and|strong="H1419"\w* \w it|strong="H5921"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w*, \w and|strong="H1419"\w* \w they|strong="H5921"\w* \w are|strong="H1004"\w* \w dead|strong="H4191"\w*. \w I|strong="H2009"\w* \w alone|strong="H4422"\w* \w have|strong="H5288"\w* \w escaped|strong="H4422"\w* \w to|strong="H4191"\w* \w tell|strong="H5046"\w* \w you|strong="H5921"\w*.” +\p +\v 20 \w Then|strong="H6965"\w* Job \w arose|strong="H6965"\w*, \w and|strong="H6965"\w* \w tore|strong="H7167"\w* \w his|strong="H7167"\w* \w robe|strong="H4598"\w*, \w and|strong="H6965"\w* \w shaved|strong="H1494"\w* \w his|strong="H7167"\w* \w head|strong="H7218"\w*, \w and|strong="H6965"\w* \w fell|strong="H5307"\w* \w down|strong="H5307"\w* \w on|strong="H5307"\w* \w the|strong="H6965"\w* ground, \w and|strong="H6965"\w* \w worshiped|strong="H7812"\w*. +\v 21 \w He|strong="H8033"\w* \w said|strong="H3318"\w*, “\w Naked|strong="H6174"\w* \w I|strong="H5414"\w* \w came|strong="H1961"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w my|strong="H5414"\w* mother’s womb, \w and|strong="H3068"\w* \w naked|strong="H6174"\w* \w will|strong="H3068"\w* \w I|strong="H5414"\w* \w return|strong="H7725"\w* \w there|strong="H8033"\w*. \w Yahweh|strong="H3068"\w* \w gave|strong="H5414"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w taken|strong="H3947"\w* \w away|strong="H7725"\w*. \w Blessed|strong="H1288"\w* \w be|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*.” +\v 22 \w In|strong="H5414"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w*, \w Job|strong="H3808"\w* didn’t \w sin|strong="H2398"\w*, \w nor|strong="H3808"\w* \w charge|strong="H5414"\w* \w God|strong="H5414"\w* \w with|strong="H3605"\w* wrongdoing. +\c 2 +\p +\v 1 \w Again|strong="H1961"\w*, \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w when|strong="H1961"\w* \w God|strong="H3068"\w*’s \w sons|strong="H1121"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w present|strong="H3320"\w* \w themselves|strong="H3320"\w* \w before|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w Satan|strong="H7854"\w* \w came|strong="H1961"\w* \w also|strong="H1571"\w* \w among|strong="H8432"\w* \w them|strong="H5921"\w* \w to|strong="H3068"\w* \w present|strong="H3320"\w* \w himself|strong="H3320"\w* \w before|strong="H5921"\w* \w Yahweh|strong="H3068"\w*. +\v 2 \w Yahweh|strong="H3068"\w* \w said|strong="H6030"\w* \w to|strong="H1980"\w* \w Satan|strong="H7854"\w*, “\w Where|strong="H2088"\w* \w have|strong="H3068"\w* \w you|strong="H6030"\w* \w come|strong="H1980"\w* \w from|strong="H1980"\w*?” +\p \w Satan|strong="H7854"\w* \w answered|strong="H6030"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H1980"\w* \w said|strong="H6030"\w*, “\w From|strong="H1980"\w* \w going|strong="H1980"\w* \w back|strong="H1980"\w* \w and|strong="H1980"\w* \w forth|strong="H1980"\w* \w in|strong="H1980"\w* \w the|strong="H3068"\w* earth, \w and|strong="H1980"\w* \w from|strong="H1980"\w* \w walking|strong="H1980"\w* \w up|strong="H6030"\w* \w and|strong="H1980"\w* \w down|strong="H1980"\w* \w in|strong="H1980"\w* \w it|strong="H1980"\w*.” +\p +\v 3 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Satan|strong="H7854"\w*, “\w Have|strong="H3068"\w* \w you|strong="H3588"\w* \w considered|strong="H7760"\w* \w my|strong="H3068"\w* \w servant|strong="H5650"\w* Job? \w For|strong="H3588"\w* \w there|strong="H3068"\w* \w is|strong="H3068"\w* \w no|strong="H7760"\w* \w one|strong="H3588"\w* \w like|strong="H3644"\w* \w him|strong="H7760"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* earth, \w a|strong="H3068"\w* \w blameless|strong="H8535"\w* \w and|strong="H3068"\w* \w an|strong="H7760"\w* \w upright|strong="H3477"\w* \w man|strong="H7451"\w*, \w one|strong="H3588"\w* \w who|strong="H3068"\w* \w fears|strong="H3373"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w turns|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* \w evil|strong="H7451"\w*. \w He|strong="H3588"\w* \w still|strong="H5750"\w* maintains \w his|strong="H7760"\w* \w integrity|strong="H8538"\w*, \w although|strong="H3588"\w* \w you|strong="H3588"\w* \w incited|strong="H5496"\w* \w me|strong="H7760"\w* \w against|strong="H2388"\w* \w him|strong="H7760"\w*, \w to|strong="H3068"\w* \w ruin|strong="H7451"\w* \w him|strong="H7760"\w* \w without|strong="H2600"\w* \w cause|strong="H2600"\w*.” +\p +\v 4 \w Satan|strong="H7854"\w* \w answered|strong="H6030"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w said|strong="H6030"\w*, “\w Skin|strong="H5785"\w* \w for|strong="H1157"\w* \w skin|strong="H5785"\w*. Yes, \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w a|strong="H3068"\w* \w man|strong="H5315"\w* \w has|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w for|strong="H1157"\w* \w his|strong="H3605"\w* \w life|strong="H5315"\w*. +\v 5 \w But|strong="H3808"\w* \w stretch|strong="H7971"\w* \w out|strong="H7971"\w* \w your|strong="H6440"\w* \w hand|strong="H3027"\w* \w now|strong="H4994"\w*, \w and|strong="H7971"\w* \w touch|strong="H5060"\w* \w his|strong="H7971"\w* \w bone|strong="H6106"\w* \w and|strong="H7971"\w* \w his|strong="H7971"\w* \w flesh|strong="H1320"\w*, \w and|strong="H7971"\w* \w he|strong="H3027"\w* \w will|strong="H1320"\w* renounce \w you|strong="H6440"\w* \w to|strong="H7971"\w* \w your|strong="H6440"\w* \w face|strong="H6440"\w*.” +\p +\v 6 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Satan|strong="H7854"\w*, “\w Behold|strong="H2005"\w*, \w he|strong="H3068"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*. Only \w spare|strong="H8104"\w* \w his|strong="H8104"\w* \w life|strong="H5315"\w*.” +\p +\v 7 \w So|strong="H3318"\w* \w Satan|strong="H7854"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w struck|strong="H5221"\w* \w Job|strong="H6440"\w* \w with|strong="H3068"\w* painful sores \w from|strong="H3318"\w* \w the|strong="H6440"\w* \w sole|strong="H3709"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w foot|strong="H7272"\w* \w to|strong="H5704"\w* \w his|strong="H3068"\w* \w head|strong="H6936"\w*. +\v 8 \w He|strong="H1931"\w* \w took|strong="H3947"\w* \w for|strong="H3427"\w* \w himself|strong="H1931"\w* \w a|strong="H3068"\w* \w potsherd|strong="H2789"\w* \w to|strong="H3427"\w* \w scrape|strong="H1623"\w* \w himself|strong="H1931"\w* \w with|strong="H3427"\w*, \w and|strong="H3427"\w* \w he|strong="H1931"\w* \w sat|strong="H3427"\w* \w among|strong="H8432"\w* \w the|strong="H3947"\w* ashes. +\v 9 \w Then|strong="H4191"\w* \w his|strong="H1288"\w* wife said \w to|strong="H4191"\w* \w him|strong="H4191"\w*, “Do \w you|strong="H1288"\w* \w still|strong="H5750"\w* \w maintain|strong="H2388"\w* \w your|strong="H2388"\w* \w integrity|strong="H8538"\w*? Renounce God, \w and|strong="H2388"\w* \w die|strong="H4191"\w*.” +\p +\v 10 \w But|strong="H3808"\w* \w he|strong="H3605"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w her|strong="H3605"\w*, “\w You|strong="H3605"\w* \w speak|strong="H1696"\w* \w as|strong="H1571"\w* \w one|strong="H3605"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w foolish|strong="H5036"\w* \w women|strong="H5036"\w* \w would|strong="H7451"\w* \w speak|strong="H1696"\w*. \w What|strong="H2896"\w*? \w Shall|strong="H3808"\w* \w we|strong="H3068"\w* \w receive|strong="H6901"\w* \w good|strong="H2896"\w* \w at|strong="H3808"\w* \w the|strong="H3605"\w* hand \w of|strong="H3605"\w* \w God|strong="H3808"\w*, \w and|strong="H2896"\w* \w shall|strong="H3808"\w* \w we|strong="H3068"\w* \w not|strong="H3808"\w* \w receive|strong="H6901"\w* \w evil|strong="H7451"\w*?” +\p \w In|strong="H1696"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w Job|strong="H3808"\w* didn’t \w sin|strong="H2398"\w* \w with|strong="H1696"\w* \w his|strong="H3605"\w* \w lips|strong="H8193"\w*. +\v 11 \w Now|strong="H8085"\w* \w when|strong="H8085"\w* Job’s \w three|strong="H7969"\w* \w friends|strong="H7453"\w* \w heard|strong="H8085"\w* \w of|strong="H5921"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w evil|strong="H7451"\w* \w that|strong="H3605"\w* \w had|strong="H7969"\w* come \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w they|strong="H5921"\w* \w each|strong="H3605"\w* \w came|strong="H7451"\w* \w from|strong="H5921"\w* \w his|strong="H3605"\w* own \w place|strong="H4725"\w*: Eliphaz \w the|strong="H3605"\w* \w Temanite|strong="H8489"\w*, \w Bildad|strong="H1085"\w* \w the|strong="H3605"\w* \w Shuhite|strong="H7747"\w*, \w and|strong="H8085"\w* \w Zophar|strong="H6691"\w* \w the|strong="H3605"\w* \w Naamathite|strong="H5284"\w*; \w and|strong="H8085"\w* \w they|strong="H5921"\w* \w made|strong="H3259"\w* \w an|strong="H3259"\w* \w appointment|strong="H3259"\w* \w together|strong="H3162"\w* \w to|strong="H5921"\w* come \w to|strong="H5921"\w* \w sympathize|strong="H5110"\w* \w with|strong="H5921"\w* \w him|strong="H5921"\w* \w and|strong="H8085"\w* \w to|strong="H5921"\w* \w comfort|strong="H5162"\w* \w him|strong="H5921"\w*. +\v 12 \w When|strong="H5375"\w* \w they|strong="H3808"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w their|strong="H5375"\w* \w eyes|strong="H5869"\w* \w from|strong="H5921"\w* \w a|strong="H3068"\w* \w distance|strong="H7350"\w*, \w and|strong="H8064"\w* didn’t \w recognize|strong="H5234"\w* \w him|strong="H5921"\w*, \w they|strong="H3808"\w* \w raised|strong="H5375"\w* \w their|strong="H5375"\w* \w voices|strong="H6963"\w*, \w and|strong="H8064"\w* \w wept|strong="H1058"\w*; \w and|strong="H8064"\w* \w they|strong="H3808"\w* each \w tore|strong="H7167"\w* \w his|strong="H5375"\w* \w robe|strong="H4598"\w*, \w and|strong="H8064"\w* \w sprinkled|strong="H2236"\w* \w dust|strong="H6083"\w* \w on|strong="H5921"\w* \w their|strong="H5375"\w* \w heads|strong="H7218"\w* \w toward|strong="H5921"\w* \w the|strong="H5921"\w* \w sky|strong="H8064"\w*. +\v 13 \w So|strong="H3966"\w* \w they|strong="H3588"\w* \w sat|strong="H3427"\w* \w down|strong="H3427"\w* \w with|strong="H1696"\w* \w him|strong="H7200"\w* \w on|strong="H3117"\w* \w the|strong="H7200"\w* ground \w seven|strong="H7651"\w* \w days|strong="H3117"\w* \w and|strong="H3117"\w* \w seven|strong="H7651"\w* \w nights|strong="H3915"\w*, \w and|strong="H3117"\w* \w no|strong="H7200"\w* \w one|strong="H3588"\w* \w spoke|strong="H1696"\w* \w a|strong="H3068"\w* \w word|strong="H1697"\w* \w to|strong="H1696"\w* \w him|strong="H7200"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w his|strong="H7200"\w* \w grief|strong="H3511"\w* \w was|strong="H1697"\w* \w very|strong="H3966"\w* \w great|strong="H1431"\w*. +\c 3 +\p +\v 1 \w After|strong="H3117"\w* \w this|strong="H3651"\w* Job \w opened|strong="H6605"\w* \w his|strong="H7043"\w* \w mouth|strong="H6310"\w*, \w and|strong="H3117"\w* \w cursed|strong="H7043"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w his|strong="H7043"\w* birth. +\v 2 Job \w answered|strong="H6030"\w*: +\q1 +\v 3 “Let \w the|strong="H3205"\w* \w day|strong="H3117"\w* perish \w in|strong="H3117"\w* \w which|strong="H3117"\w* \w I|strong="H3117"\w* \w was|strong="H3117"\w* \w born|strong="H3205"\w*, +\q2 \w the|strong="H3205"\w* \w night|strong="H3915"\w* \w which|strong="H3117"\w* said, ‘\w There|strong="H3117"\w* \w is|strong="H3117"\w* \w a|strong="H3068"\w* \w boy|strong="H1397"\w* conceived.’ +\q1 +\v 4 \w Let|strong="H1961"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w be|strong="H1961"\w* \w darkness|strong="H2822"\w*. +\q2 Don’t \w let|strong="H1961"\w* God \w from|strong="H5921"\w* \w above|strong="H4605"\w* \w seek|strong="H1875"\w* \w for|strong="H5921"\w* \w it|strong="H1931"\w*, +\q2 neither \w let|strong="H1961"\w* \w the|strong="H5921"\w* \w light|strong="H5105"\w* \w shine|strong="H3313"\w* \w on|strong="H5921"\w* \w it|strong="H1931"\w*. +\q1 +\v 5 \w Let|strong="H1350"\w* \w darkness|strong="H2822"\w* \w and|strong="H3117"\w* \w the|strong="H5921"\w* \w shadow|strong="H6757"\w* \w of|strong="H3117"\w* \w death|strong="H6757"\w* \w claim|strong="H1350"\w* \w it|strong="H5921"\w* \w for|strong="H5921"\w* \w their|strong="H5921"\w* own. +\q2 \w Let|strong="H1350"\w* \w a|strong="H3068"\w* \w cloud|strong="H6053"\w* \w dwell|strong="H7931"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*. +\q2 \w Let|strong="H1350"\w* \w all|strong="H5921"\w* \w that|strong="H3117"\w* makes \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w black|strong="H6757"\w* \w terrify|strong="H1204"\w* \w it|strong="H5921"\w*. +\q1 +\v 6 \w As|strong="H3117"\w* \w for|strong="H3117"\w* \w that|strong="H3117"\w* \w night|strong="H3915"\w*, let thick darkness \w seize|strong="H3947"\w* \w on|strong="H3117"\w* \w it|strong="H1931"\w*. +\q2 Let \w it|strong="H1931"\w* \w not|strong="H3947"\w* \w rejoice|strong="H2302"\w* among \w the|strong="H3947"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3947"\w* \w year|strong="H8141"\w*. +\q2 Let \w it|strong="H1931"\w* \w not|strong="H3947"\w* come \w into|strong="H3947"\w* \w the|strong="H3947"\w* \w number|strong="H4557"\w* \w of|strong="H3117"\w* \w the|strong="H3947"\w* \w months|strong="H3391"\w*. +\q1 +\v 7 \w Behold|strong="H2009"\w*, \w let|strong="H1961"\w* \w that|strong="H1931"\w* \w night|strong="H3915"\w* \w be|strong="H1961"\w* \w barren|strong="H1565"\w*. +\q2 \w Let|strong="H1961"\w* \w no|strong="H1961"\w* \w joyful|strong="H7445"\w* \w voice|strong="H7445"\w* \w come|strong="H1961"\w* therein. +\q1 +\v 8 Let \w them|strong="H3117"\w* \w curse|strong="H5344"\w* \w it|strong="H3117"\w* who \w curse|strong="H5344"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w*, +\q2 who \w are|strong="H3117"\w* \w ready|strong="H6264"\w* \w to|strong="H3117"\w* \w rouse|strong="H5782"\w* \w up|strong="H5782"\w* \w leviathan|strong="H3882"\w*. +\q1 +\v 9 \w Let|strong="H6079"\w* \w the|strong="H7200"\w* \w stars|strong="H3556"\w* \w of|strong="H3556"\w* its \w twilight|strong="H5399"\w* \w be|strong="H6079"\w* \w dark|strong="H2821"\w*. +\q2 \w Let|strong="H6079"\w* \w it|strong="H7200"\w* \w look|strong="H7200"\w* \w for|strong="H6960"\w* \w light|strong="H7837"\w*, \w but|strong="H7200"\w* \w have|strong="H7200"\w* none, +\q2 neither \w let|strong="H6079"\w* \w it|strong="H7200"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w eyelids|strong="H6079"\w* \w of|strong="H3556"\w* \w the|strong="H7200"\w* \w morning|strong="H7837"\w*, +\q1 +\v 10 \w because|strong="H3588"\w* \w it|strong="H3588"\w* didn’t \w shut|strong="H5462"\w* \w up|strong="H5462"\w* \w the|strong="H3588"\w* \w doors|strong="H1817"\w* \w of|strong="H5869"\w* \w my|strong="H5641"\w* mother’s womb, +\q2 \w nor|strong="H3808"\w* \w did|strong="H3808"\w* \w it|strong="H3588"\w* \w hide|strong="H5641"\w* \w trouble|strong="H5999"\w* \w from|strong="H5869"\w* \w my|strong="H5641"\w* \w eyes|strong="H5869"\w*. +\b +\q1 +\v 11 “\w Why|strong="H4100"\w* didn’t \w I|strong="H3808"\w* \w die|strong="H4191"\w* \w from|strong="H3318"\w* \w the|strong="H3318"\w* \w womb|strong="H7358"\w*? +\q2 \w Why|strong="H4100"\w* didn’t \w I|strong="H3808"\w* give \w up|strong="H3318"\w* \w the|strong="H3318"\w* spirit \w when|strong="H3318"\w* \w my|strong="H3318"\w* \w mother|strong="H7358"\w* bore \w me|strong="H3318"\w*? +\q1 +\v 12 \w Why|strong="H4100"\w* \w did|strong="H4100"\w* \w the|strong="H3588"\w* \w knees|strong="H1290"\w* \w receive|strong="H6923"\w* \w me|strong="H6923"\w*? +\q2 \w Or|strong="H3588"\w* \w why|strong="H4100"\w* \w the|strong="H3588"\w* \w breast|strong="H7699"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w should|strong="H4100"\w* \w nurse|strong="H3243"\w*? +\q1 +\v 13 \w For|strong="H3588"\w* \w now|strong="H6258"\w* \w I|strong="H3588"\w* \w should|strong="H3588"\w* \w have|strong="H6258"\w* \w lain|strong="H7901"\w* \w down|strong="H7901"\w* \w and|strong="H8252"\w* \w been|strong="H8252"\w* \w quiet|strong="H8252"\w*. +\q2 \w I|strong="H3588"\w* \w should|strong="H3588"\w* \w have|strong="H6258"\w* \w slept|strong="H7901"\w*, \w then|strong="H6258"\w* \w I|strong="H3588"\w* would \w have|strong="H6258"\w* \w been|strong="H8252"\w* \w at|strong="H5117"\w* \w rest|strong="H5117"\w*, +\q1 +\v 14 \w with|strong="H5973"\w* \w kings|strong="H4428"\w* \w and|strong="H4428"\w* \w counselors|strong="H3289"\w* \w of|strong="H4428"\w* \w the|strong="H1129"\w* earth, +\q2 \w who|strong="H4428"\w* \w built|strong="H1129"\w* \w up|strong="H1129"\w* \w waste|strong="H2723"\w* \w places|strong="H2723"\w* \w for|strong="H4428"\w* \w themselves|strong="H1129"\w*; +\q1 +\v 15 \w or|strong="H3701"\w* \w with|strong="H5973"\w* \w princes|strong="H8269"\w* \w who|strong="H1992"\w* \w had|strong="H8269"\w* \w gold|strong="H2091"\w*, +\q2 \w who|strong="H1992"\w* \w filled|strong="H4390"\w* \w their|strong="H1992"\w* \w houses|strong="H1004"\w* \w with|strong="H5973"\w* \w silver|strong="H3701"\w*; +\q1 +\v 16 \w or|strong="H3808"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w hidden|strong="H2934"\w* \w untimely|strong="H2934"\w* \w birth|strong="H5309"\w* \w I|strong="H7200"\w* \w had|strong="H1961"\w* \w not|strong="H3808"\w* \w been|strong="H1961"\w*, +\q2 \w as|strong="H1961"\w* \w infants|strong="H5768"\w* \w who|strong="H3808"\w* \w never|strong="H3808"\w* \w saw|strong="H7200"\w* light. +\q1 +\v 17 \w There|strong="H8033"\w* \w the|strong="H8033"\w* \w wicked|strong="H7563"\w* \w cease|strong="H2308"\w* \w from|strong="H5117"\w* \w troubling|strong="H7267"\w*. +\q2 \w There|strong="H8033"\w* \w the|strong="H8033"\w* \w weary|strong="H3019"\w* \w are|strong="H7563"\w* \w at|strong="H8033"\w* \w rest|strong="H5117"\w*. +\q1 +\v 18 There \w the|strong="H8085"\w* prisoners \w are|strong="H3808"\w* \w at|strong="H3808"\w* \w ease|strong="H7599"\w* \w together|strong="H3162"\w*. +\q2 \w They|strong="H3808"\w* don’t \w hear|strong="H8085"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w taskmaster|strong="H5065"\w*. +\q1 +\v 19 \w The|strong="H5650"\w* \w small|strong="H6996"\w* \w and|strong="H1419"\w* \w the|strong="H5650"\w* \w great|strong="H1419"\w* \w are|strong="H5650"\w* \w there|strong="H8033"\w*. +\q2 \w The|strong="H5650"\w* \w servant|strong="H5650"\w* \w is|strong="H1931"\w* \w free|strong="H2670"\w* \w from|strong="H5650"\w* \w his|strong="H1931"\w* master. +\b +\q1 +\v 20 “\w Why|strong="H4100"\w* \w is|strong="H4100"\w* light \w given|strong="H5414"\w* \w to|strong="H5414"\w* \w him|strong="H5414"\w* \w who|strong="H5315"\w* \w is|strong="H4100"\w* \w in|strong="H5315"\w* \w misery|strong="H6001"\w*, +\q2 \w life|strong="H5315"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w bitter|strong="H4751"\w* \w in|strong="H5315"\w* \w soul|strong="H5315"\w*, +\q1 +\v 21 who \w long|strong="H2442"\w* \w for|strong="H2442"\w* \w death|strong="H4194"\w*, but \w it|strong="H4301"\w* doesn’t come; +\q2 \w and|strong="H4194"\w* \w dig|strong="H2658"\w* \w for|strong="H2442"\w* \w it|strong="H4301"\w* more than \w for|strong="H2442"\w* \w hidden|strong="H4301"\w* \w treasures|strong="H4301"\w*, +\q1 +\v 22 \w who|strong="H4672"\w* \w rejoice|strong="H8055"\w* \w exceedingly|strong="H1524"\w*, +\q2 \w and|strong="H8055"\w* \w are|strong="H6913"\w* \w glad|strong="H8055"\w*, \w when|strong="H3588"\w* \w they|strong="H3588"\w* can \w find|strong="H4672"\w* \w the|strong="H3588"\w* \w grave|strong="H6913"\w*? +\q1 +\v 23 Why \w is|strong="H1870"\w* light given \w to|strong="H1870"\w* \w a|strong="H3068"\w* \w man|strong="H1397"\w* \w whose|strong="H1397"\w* \w way|strong="H1870"\w* \w is|strong="H1870"\w* \w hidden|strong="H5641"\w*, +\q2 \w whom|strong="H1397"\w* God \w has|strong="H1157"\w* \w hedged|strong="H5526"\w* \w in|strong="H1870"\w*? +\q1 +\v 24 \w For|strong="H3588"\w* \w my|strong="H3588"\w* sighing \w comes|strong="H6440"\w* \w before|strong="H6440"\w* \w I|strong="H3588"\w* \w eat|strong="H3899"\w*. +\q2 \w My|strong="H3588"\w* groanings \w are|strong="H4325"\w* \w poured|strong="H5413"\w* \w out|strong="H5413"\w* \w like|strong="H5413"\w* \w water|strong="H4325"\w*. +\q1 +\v 25 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w thing|strong="H3588"\w* \w which|strong="H3588"\w* \w I|strong="H3588"\w* \w fear|strong="H6343"\w* comes on \w me|strong="H3588"\w*, +\q2 \w that|strong="H3588"\w* \w which|strong="H3588"\w* \w I|strong="H3588"\w* am \w afraid|strong="H6342"\w* \w of|strong="H6343"\w* comes \w to|strong="H3588"\w* \w me|strong="H3588"\w*. +\q1 +\v 26 \w I|strong="H3808"\w* am \w not|strong="H3808"\w* \w at|strong="H3808"\w* \w ease|strong="H7951"\w*, \w neither|strong="H3808"\w* am \w I|strong="H3808"\w* \w quiet|strong="H8252"\w*, \w neither|strong="H3808"\w* do \w I|strong="H3808"\w* \w have|strong="H3808"\w* \w rest|strong="H5117"\w*; +\q2 \w but|strong="H3808"\w* \w trouble|strong="H7267"\w* comes.” +\c 4 +\p +\v 1 \w Then|strong="H6030"\w* Eliphaz \w the|strong="H6030"\w* \w Temanite|strong="H8489"\w* \w answered|strong="H6030"\w*, +\q1 +\v 2 “If \w someone|strong="H4310"\w* \w ventures|strong="H5254"\w* \w to|strong="H3201"\w* \w talk|strong="H1697"\w* \w with|strong="H1697"\w* \w you|strong="H4310"\w*, \w will|strong="H4310"\w* \w you|strong="H4310"\w* \w be|strong="H1697"\w* \w grieved|strong="H3811"\w*? +\q2 But \w who|strong="H4310"\w* \w can|strong="H4310"\w* \w withhold|strong="H6113"\w* himself \w from|strong="H1697"\w* \w speaking|strong="H4405"\w*? +\q1 +\v 3 \w Behold|strong="H2009"\w*, \w you|strong="H3256"\w* \w have|strong="H3027"\w* \w instructed|strong="H3256"\w* \w many|strong="H7227"\w*, +\q2 \w you|strong="H3256"\w* \w have|strong="H3027"\w* \w strengthened|strong="H2388"\w* \w the|strong="H2388"\w* \w weak|strong="H7504"\w* \w hands|strong="H3027"\w*. +\q1 +\v 4 \w Your|strong="H6965"\w* \w words|strong="H4405"\w* \w have|strong="H4405"\w* supported \w him|strong="H3766"\w* who was \w falling|strong="H3782"\w*, +\q2 \w you|strong="H6965"\w* \w have|strong="H4405"\w* made \w the|strong="H6965"\w* \w feeble|strong="H3782"\w* \w knees|strong="H1290"\w* firm. +\q1 +\v 5 \w But|strong="H3588"\w* \w now|strong="H6258"\w* \w it|strong="H3588"\w* \w has|strong="H3588"\w* \w come|strong="H5060"\w* \w to|strong="H5704"\w* \w you|strong="H3588"\w*, \w and|strong="H6258"\w* \w you|strong="H3588"\w* faint. +\q2 \w It|strong="H3588"\w* \w touches|strong="H5060"\w* \w you|strong="H3588"\w*, \w and|strong="H6258"\w* \w you|strong="H3588"\w* are troubled. +\q1 +\v 6 Isn’t \w your|strong="H3808"\w* piety \w your|strong="H3808"\w* \w confidence|strong="H3690"\w*? +\q2 Isn’t \w the|strong="H1870"\w* \w integrity|strong="H8537"\w* \w of|strong="H1870"\w* \w your|strong="H3808"\w* \w ways|strong="H1870"\w* \w your|strong="H3808"\w* \w hope|strong="H8615"\w*? +\b +\q1 +\v 7 “\w Remember|strong="H2142"\w*, \w now|strong="H4994"\w*, \w who|strong="H4310"\w* \w ever|strong="H4310"\w* perished, being \w innocent|strong="H5355"\w*? +\q2 \w Or|strong="H4310"\w* where were \w the|strong="H2142"\w* \w upright|strong="H3477"\w* \w cut|strong="H3582"\w* \w off|strong="H3582"\w*? +\q1 +\v 8 According \w to|strong="H7200"\w* \w what|strong="H7200"\w* \w I|strong="H7200"\w* \w have|strong="H7200"\w* \w seen|strong="H7200"\w*, those who \w plow|strong="H2790"\w* \w iniquity|strong="H5999"\w* +\q2 \w and|strong="H7200"\w* \w sow|strong="H2232"\w* \w trouble|strong="H5999"\w*, \w reap|strong="H7114"\w* \w the|strong="H7200"\w* same. +\q1 +\v 9 \w By|strong="H3615"\w* \w the|strong="H3615"\w* \w breath|strong="H7307"\w* \w of|strong="H7307"\w* God they \w perish|strong="H3615"\w*. +\q2 \w By|strong="H3615"\w* \w the|strong="H3615"\w* \w blast|strong="H7307"\w* \w of|strong="H7307"\w* \w his|strong="H3615"\w* \w anger|strong="H7307"\w* are they \w consumed|strong="H3615"\w*. +\q1 +\v 10 \w The|strong="H6963"\w* \w roaring|strong="H7581"\w* \w of|strong="H6963"\w* \w the|strong="H6963"\w* \w lion|strong="H3715"\w*, +\q2 \w and|strong="H6963"\w* \w the|strong="H6963"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H6963"\w* fierce \w lion|strong="H3715"\w*, +\q2 \w the|strong="H6963"\w* \w teeth|strong="H8127"\w* \w of|strong="H6963"\w* \w the|strong="H6963"\w* \w young|strong="H3715"\w* \w lions|strong="H3715"\w*, \w are|strong="H8127"\w* \w broken|strong="H5421"\w*. +\q1 +\v 11 \w The|strong="H1121"\w* \w old|strong="H1121"\w* \w lion|strong="H3833"\w* perishes \w for|strong="H1121"\w* \w lack|strong="H1097"\w* \w of|strong="H1121"\w* \w prey|strong="H2964"\w*. +\q2 \w The|strong="H1121"\w* cubs \w of|strong="H1121"\w* \w the|strong="H1121"\w* \w lioness|strong="H3833"\w* \w are|strong="H1121"\w* \w scattered|strong="H6504"\w* \w abroad|strong="H6504"\w*. +\b +\q1 +\v 12 “\w Now|strong="H3947"\w* \w a|strong="H3068"\w* \w thing|strong="H1697"\w* \w was|strong="H1697"\w* secretly \w brought|strong="H3947"\w* \w to|strong="H1697"\w* \w me|strong="H4480"\w*. +\q2 \w My|strong="H3947"\w* ear \w received|strong="H3947"\w* \w a|strong="H3068"\w* \w whisper|strong="H8102"\w* \w of|strong="H1697"\w* \w it|strong="H3947"\w*. +\q1 +\v 13 \w In|strong="H5921"\w* \w thoughts|strong="H5587"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w visions|strong="H2384"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w night|strong="H3915"\w*, +\q2 \w when|strong="H5307"\w* \w deep|strong="H8639"\w* \w sleep|strong="H8639"\w* \w falls|strong="H5307"\w* \w on|strong="H5921"\w* men, +\q1 +\v 14 \w fear|strong="H6343"\w* \w came|strong="H7122"\w* on me, \w and|strong="H6106"\w* \w trembling|strong="H7460"\w*, +\q2 which made \w all|strong="H7230"\w* \w my|strong="H7230"\w* \w bones|strong="H6106"\w* \w shake|strong="H6342"\w*. +\q1 +\v 15 \w Then|strong="H7307"\w* \w a|strong="H3068"\w* \w spirit|strong="H7307"\w* \w passed|strong="H2498"\w* \w before|strong="H6440"\w* \w my|strong="H5921"\w* \w face|strong="H6440"\w*. +\q2 \w The|strong="H6440"\w* \w hair|strong="H8185"\w* \w of|strong="H6440"\w* \w my|strong="H5921"\w* \w flesh|strong="H1320"\w* \w stood|strong="H1320"\w* \w up|strong="H5921"\w*. +\q1 +\v 16 \w It|strong="H3808"\w* \w stood|strong="H5975"\w* \w still|strong="H5975"\w*, \w but|strong="H3808"\w* \w I|strong="H3808"\w* couldn’t \w discern|strong="H5234"\w* \w its|strong="H5975"\w* \w appearance|strong="H4758"\w*. +\q2 \w A|strong="H3068"\w* \w form|strong="H8544"\w* \w was|strong="H6963"\w* \w before|strong="H5048"\w* \w my|strong="H8085"\w* \w eyes|strong="H5869"\w*. +\q2 \w Silence|strong="H1827"\w*, \w then|strong="H5975"\w* \w I|strong="H3808"\w* \w heard|strong="H8085"\w* \w a|strong="H3068"\w* \w voice|strong="H6963"\w*, \w saying|strong="H6963"\w*, +\q1 +\v 17 ‘\w Shall|strong="H2891"\w* mortal \w man|strong="H1397"\w* \w be|strong="H1397"\w* \w more|strong="H6213"\w* \w just|strong="H6663"\w* \w than|strong="H6663"\w* God? +\q2 \w Shall|strong="H2891"\w* \w a|strong="H3068"\w* \w man|strong="H1397"\w* \w be|strong="H1397"\w* \w more|strong="H6213"\w* \w pure|strong="H2891"\w* \w than|strong="H6663"\w* \w his|strong="H6213"\w* \w Maker|strong="H6213"\w*? +\q1 +\v 18 \w Behold|strong="H2005"\w*, \w he|strong="H3808"\w* \w puts|strong="H7760"\w* \w no|strong="H3808"\w* trust \w in|strong="H5650"\w* \w his|strong="H7760"\w* \w servants|strong="H5650"\w*. +\q2 \w He|strong="H3808"\w* \w charges|strong="H7760"\w* \w his|strong="H7760"\w* \w angels|strong="H4397"\w* \w with|strong="H7760"\w* \w error|strong="H8417"\w*. +\q1 +\v 19 How much more those who \w dwell|strong="H7931"\w* \w in|strong="H1004"\w* \w houses|strong="H1004"\w* \w of|strong="H1004"\w* \w clay|strong="H2563"\w*, +\q2 whose \w foundation|strong="H3247"\w* \w is|strong="H1004"\w* \w in|strong="H1004"\w* \w the|strong="H6440"\w* \w dust|strong="H6083"\w*, +\q2 who \w are|strong="H1004"\w* \w crushed|strong="H1792"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w moth|strong="H6211"\w*! +\q1 +\v 20 Between \w morning|strong="H1242"\w* \w and|strong="H1242"\w* \w evening|strong="H6153"\w* \w they|strong="H7760"\w* are \w destroyed|strong="H3807"\w*. +\q2 \w They|strong="H7760"\w* perish \w forever|strong="H5331"\w* \w without|strong="H1097"\w* \w any|strong="H7760"\w* \w regarding|strong="H7760"\w* \w it|strong="H7760"\w*. +\q1 +\v 21 Isn’t \w their|strong="H3808"\w* tent \w cord|strong="H3499"\w* \w plucked|strong="H5265"\w* up within \w them|strong="H4191"\w*? +\q2 \w They|strong="H3808"\w* \w die|strong="H4191"\w*, \w and|strong="H2451"\w* \w that|strong="H3808"\w* \w without|strong="H3808"\w* \w wisdom|strong="H2451"\w*.’ +\c 5 +\b +\q1 +\v 1 “\w Call|strong="H7121"\w* \w now|strong="H4994"\w*; \w is|strong="H3426"\w* \w there|strong="H3426"\w* \w any|strong="H3426"\w* \w who|strong="H4310"\w* \w will|strong="H4310"\w* \w answer|strong="H6030"\w* \w you|strong="H6030"\w*? +\q2 \w To|strong="H7121"\w* \w which|strong="H4310"\w* \w of|strong="H6918"\w* \w the|strong="H7121"\w* \w holy|strong="H6918"\w* \w ones|strong="H6918"\w* \w will|strong="H4310"\w* \w you|strong="H6030"\w* \w turn|strong="H6437"\w*? +\q1 +\v 2 \w For|strong="H3588"\w* resentment \w kills|strong="H4191"\w* \w the|strong="H3588"\w* foolish \w man|strong="H4191"\w*, +\q2 \w and|strong="H4191"\w* \w jealousy|strong="H7068"\w* \w kills|strong="H4191"\w* \w the|strong="H3588"\w* \w simple|strong="H6601"\w*. +\q1 +\v 3 \w I|strong="H7200"\w* \w have|strong="H7200"\w* \w seen|strong="H7200"\w* \w the|strong="H7200"\w* foolish \w taking|strong="H8327"\w* \w root|strong="H8327"\w*, +\q2 \w but|strong="H7200"\w* \w suddenly|strong="H6597"\w* \w I|strong="H7200"\w* \w cursed|strong="H5344"\w* \w his|strong="H7200"\w* \w habitation|strong="H5116"\w*. +\q1 +\v 4 \w His|strong="H5337"\w* \w children|strong="H1121"\w* \w are|strong="H1121"\w* \w far|strong="H7368"\w* \w from|strong="H1121"\w* \w safety|strong="H3468"\w*. +\q2 \w They|strong="H8179"\w* \w are|strong="H1121"\w* \w crushed|strong="H1792"\w* \w in|strong="H1121"\w* \w the|strong="H5337"\w* \w gate|strong="H8179"\w*. +\q2 \w Neither|strong="H5337"\w* \w is|strong="H1121"\w* there any \w to|strong="H1121"\w* \w deliver|strong="H5337"\w* \w them|strong="H1121"\w*, +\q1 +\v 5 whose \w harvest|strong="H7105"\w* \w the|strong="H3947"\w* \w hungry|strong="H7456"\w* eat \w up|strong="H7602"\w*, +\q2 \w and|strong="H2428"\w* \w take|strong="H3947"\w* \w it|strong="H3947"\w* even \w out|strong="H3947"\w* \w of|strong="H2428"\w* \w the|strong="H3947"\w* \w thorns|strong="H6791"\w*. +\q2 \w The|strong="H3947"\w* snare gapes \w for|strong="H2428"\w* \w their|strong="H3947"\w* \w substance|strong="H2428"\w*. +\q1 +\v 6 \w For|strong="H3588"\w* affliction doesn’t \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w the|strong="H3588"\w* \w dust|strong="H6083"\w*, +\q2 \w neither|strong="H3808"\w* \w does|strong="H3808"\w* \w trouble|strong="H5999"\w* \w spring|strong="H6779"\w* \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w the|strong="H3588"\w* \w ground|strong="H6083"\w*; +\q1 +\v 7 \w but|strong="H3588"\w* \w man|strong="H1121"\w* \w is|strong="H1121"\w* \w born|strong="H3205"\w* \w to|strong="H3205"\w* \w trouble|strong="H5999"\w*, +\q2 \w as|strong="H3588"\w* \w the|strong="H3588"\w* \w sparks|strong="H1121"\w* \w fly|strong="H5774"\w* \w upward|strong="H1361"\w*. +\b +\q1 +\v 8 “But \w as|strong="H7760"\w* \w for|strong="H1875"\w* \w me|strong="H7760"\w*, \w I|strong="H7760"\w* would \w seek|strong="H1875"\w* God. +\q2 \w I|strong="H7760"\w* would \w commit|strong="H7760"\w* \w my|strong="H7760"\w* \w cause|strong="H1700"\w* \w to|strong="H1875"\w* God, +\q1 +\v 9 \w who|strong="H6213"\w* \w does|strong="H6213"\w* \w great|strong="H1419"\w* \w things|strong="H1419"\w* \w that|strong="H6213"\w* \w can|strong="H6213"\w*’t be fathomed, +\q2 \w marvelous|strong="H6381"\w* \w things|strong="H1419"\w* \w without|strong="H6381"\w* \w number|strong="H4557"\w*; +\q1 +\v 10 who \w gives|strong="H5414"\w* \w rain|strong="H4306"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* earth, +\q2 \w and|strong="H7971"\w* \w sends|strong="H7971"\w* \w waters|strong="H4325"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w fields|strong="H2351"\w*; +\q1 +\v 11 \w so|strong="H7760"\w* \w that|strong="H7760"\w* \w he|strong="H7760"\w* \w sets|strong="H7760"\w* \w up|strong="H7760"\w* \w on|strong="H7760"\w* \w high|strong="H4791"\w* those who \w are|strong="H6937"\w* \w low|strong="H8217"\w*, +\q2 those who \w mourn|strong="H6937"\w* \w are|strong="H6937"\w* \w exalted|strong="H7682"\w* \w to|strong="H7682"\w* \w safety|strong="H3468"\w*. +\q1 +\v 12 \w He|strong="H6213"\w* \w frustrates|strong="H6565"\w* \w the|strong="H6213"\w* \w plans|strong="H4284"\w* \w of|strong="H3027"\w* \w the|strong="H6213"\w* \w crafty|strong="H6175"\w*, +\q2 \w so|strong="H6213"\w* \w that|strong="H3027"\w* \w their|strong="H6213"\w* \w hands|strong="H3027"\w* \w can|strong="H6213"\w*’t \w perform|strong="H6213"\w* \w their|strong="H6213"\w* \w enterprise|strong="H8454"\w*. +\q1 +\v 13 He \w takes|strong="H3920"\w* \w the|strong="H3920"\w* \w wise|strong="H2450"\w* \w in|strong="H2450"\w* their own \w craftiness|strong="H6193"\w*; +\q2 \w the|strong="H3920"\w* \w counsel|strong="H6098"\w* \w of|strong="H6098"\w* \w the|strong="H3920"\w* \w cunning|strong="H2450"\w* \w is|strong="H2450"\w* carried \w headlong|strong="H4116"\w*. +\q1 +\v 14 \w They|strong="H3915"\w* \w meet|strong="H6298"\w* \w with|strong="H2822"\w* \w darkness|strong="H2822"\w* \w in|strong="H4959"\w* \w the|strong="H3915"\w* \w day|strong="H3119"\w* \w time|strong="H3119"\w*, +\q2 \w and|strong="H3119"\w* \w grope|strong="H4959"\w* \w at|strong="H4959"\w* \w noonday|strong="H6672"\w* as \w in|strong="H4959"\w* \w the|strong="H3915"\w* \w night|strong="H3915"\w*. +\q1 +\v 15 But \w he|strong="H3027"\w* \w saves|strong="H3467"\w* \w from|strong="H3027"\w* \w the|strong="H3027"\w* \w sword|strong="H2719"\w* \w of|strong="H3027"\w* \w their|strong="H3027"\w* \w mouth|strong="H6310"\w*, +\q2 even \w the|strong="H3027"\w* needy \w from|strong="H3027"\w* \w the|strong="H3027"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w mighty|strong="H2389"\w*. +\q1 +\v 16 \w So|strong="H1961"\w* \w the|strong="H1961"\w* \w poor|strong="H1800"\w* \w has|strong="H1961"\w* \w hope|strong="H8615"\w*, +\q2 \w and|strong="H6310"\w* \w injustice|strong="H5766"\w* \w shuts|strong="H7092"\w* \w her|strong="H7092"\w* \w mouth|strong="H6310"\w*. +\b +\q1 +\v 17 “\w Behold|strong="H2009"\w*, happy \w is|strong="H2009"\w* \w the|strong="H2009"\w* man whom God \w corrects|strong="H3198"\w*. +\q2 Therefore do \w not|strong="H3988"\w* \w despise|strong="H3988"\w* \w the|strong="H2009"\w* \w chastening|strong="H4148"\w* \w of|strong="H4148"\w* \w the|strong="H2009"\w* \w Almighty|strong="H7706"\w*. +\q1 +\v 18 \w For|strong="H3588"\w* \w he|strong="H1931"\w* \w wounds|strong="H4272"\w* \w and|strong="H3027"\w* \w binds|strong="H2280"\w* \w up|strong="H2280"\w*. +\q2 \w He|strong="H1931"\w* injures \w and|strong="H3027"\w* \w his|strong="H3027"\w* \w hands|strong="H3027"\w* \w make|strong="H3027"\w* \w whole|strong="H7495"\w*. +\q1 +\v 19 \w He|strong="H3808"\w* \w will|strong="H3808"\w* \w deliver|strong="H5337"\w* \w you|strong="H3808"\w* \w in|strong="H3808"\w* \w six|strong="H8337"\w* \w troubles|strong="H6869"\w*; +\q2 yes, \w in|strong="H3808"\w* \w seven|strong="H7651"\w* \w no|strong="H3808"\w* \w evil|strong="H7451"\w* \w will|strong="H3808"\w* \w touch|strong="H5060"\w* \w you|strong="H3808"\w*. +\q1 +\v 20 \w In|strong="H4421"\w* \w famine|strong="H7458"\w* \w he|strong="H3027"\w* \w will|strong="H2719"\w* \w redeem|strong="H6299"\w* \w you|strong="H3027"\w* \w from|strong="H3027"\w* \w death|strong="H4194"\w*; +\q2 \w in|strong="H4421"\w* \w war|strong="H4421"\w*, \w from|strong="H3027"\w* \w the|strong="H3027"\w* \w power|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w sword|strong="H2719"\w*. +\q1 +\v 21 \w You|strong="H3588"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w hidden|strong="H2244"\w* \w from|strong="H3956"\w* \w the|strong="H3588"\w* \w scourge|strong="H7752"\w* \w of|strong="H3372"\w* \w the|strong="H3588"\w* \w tongue|strong="H3956"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H3808"\w* \w you|strong="H3588"\w* \w be|strong="H3808"\w* \w afraid|strong="H3372"\w* \w of|strong="H3372"\w* \w destruction|strong="H7701"\w* \w when|strong="H3588"\w* \w it|strong="H3588"\w* comes. +\q1 +\v 22 \w You|strong="H3372"\w* \w will|strong="H2416"\w* \w laugh|strong="H7832"\w* \w at|strong="H7832"\w* \w destruction|strong="H7701"\w* \w and|strong="H3372"\w* \w famine|strong="H3720"\w*, +\q2 neither \w will|strong="H2416"\w* \w you|strong="H3372"\w* \w be|strong="H3372"\w* \w afraid|strong="H3372"\w* \w of|strong="H3372"\w* \w the|strong="H3372"\w* \w animals|strong="H2416"\w* \w of|strong="H3372"\w* \w the|strong="H3372"\w* earth. +\q1 +\v 23 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H7704"\w* \w be|strong="H2416"\w* \w allied|strong="H1285"\w* \w with|strong="H5973"\w* \w the|strong="H3588"\w* stones \w of|strong="H7704"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w*. +\q2 \w The|strong="H3588"\w* \w animals|strong="H2416"\w* \w of|strong="H7704"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w* \w will|strong="H7704"\w* \w be|strong="H2416"\w* \w at|strong="H7704"\w* \w peace|strong="H7999"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*. +\q1 +\v 24 \w You|strong="H3588"\w* \w will|strong="H3808"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w your|strong="H3045"\w* tent \w is|strong="H2398"\w* \w in|strong="H3808"\w* \w peace|strong="H7965"\w*. +\q2 \w You|strong="H3588"\w* \w will|strong="H3808"\w* \w visit|strong="H6485"\w* \w your|strong="H3045"\w* \w fold|strong="H5116"\w*, \w and|strong="H3045"\w* \w will|strong="H3808"\w* \w miss|strong="H6485"\w* \w nothing|strong="H3808"\w*. +\q1 +\v 25 \w You|strong="H3588"\w* \w will|strong="H7227"\w* \w know|strong="H3045"\w* \w also|strong="H3588"\w* \w that|strong="H3588"\w* \w your|strong="H3045"\w* \w offspring|strong="H2233"\w*\f + \fr 5:25 \ft or, seed\f* \w will|strong="H7227"\w* \w be|strong="H3588"\w* \w great|strong="H7227"\w*, +\q2 \w your|strong="H3045"\w* \w offspring|strong="H2233"\w* \w as|strong="H3588"\w* \w the|strong="H3588"\w* \w grass|strong="H6212"\w* \w of|strong="H2233"\w* \w the|strong="H3588"\w* earth. +\q1 +\v 26 \w You|strong="H6256"\w* \w will|strong="H6256"\w* \w come|strong="H5927"\w* \w to|strong="H5927"\w* \w your|strong="H5927"\w* \w grave|strong="H6913"\w* \w in|strong="H6913"\w* \w a|strong="H3068"\w* \w full|strong="H3624"\w* \w age|strong="H3624"\w*, +\q2 \w like|strong="H5927"\w* \w a|strong="H3068"\w* shock \w of|strong="H6256"\w* \w grain|strong="H1430"\w* \w comes|strong="H5927"\w* \w in|strong="H6913"\w* \w its|strong="H5927"\w* \w season|strong="H6256"\w*. +\q1 +\v 27 \w Behold|strong="H2009"\w*, \w we|strong="H3068"\w* \w have|strong="H3045"\w* researched \w it|strong="H1931"\w*. \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w so|strong="H3651"\w*. +\q2 \w Hear|strong="H8085"\w* \w it|strong="H1931"\w*, \w and|strong="H8085"\w* \w know|strong="H3045"\w* \w it|strong="H1931"\w* \w for|strong="H3045"\w* \w your|strong="H8085"\w* good.” +\b +\c 6 +\p +\v 1 \w Then|strong="H6030"\w* Job \w answered|strong="H6030"\w*, +\q1 +\v 2 “\w Oh|strong="H3863"\w* \w that|strong="H3863"\w* \w my|strong="H5375"\w* anguish \w were|strong="H3708"\w* \w weighed|strong="H8254"\w*, +\q2 \w and|strong="H5375"\w* \w all|strong="H3162"\w* \w my|strong="H5375"\w* calamity \w laid|strong="H5375"\w* \w in|strong="H3162"\w* \w the|strong="H5375"\w* \w balances|strong="H3976"\w*! +\q1 +\v 3 \w For|strong="H3588"\w* \w now|strong="H6258"\w* \w it|strong="H5921"\w* \w would|strong="H1697"\w* \w be|strong="H1697"\w* \w heavier|strong="H3513"\w* \w than|strong="H5921"\w* \w the|strong="H5921"\w* \w sand|strong="H2344"\w* \w of|strong="H1697"\w* \w the|strong="H5921"\w* \w seas|strong="H3220"\w*, +\q2 \w therefore|strong="H3651"\w* \w my|strong="H5921"\w* \w words|strong="H1697"\w* \w have|strong="H1697"\w* \w been|strong="H3886"\w* \w rash|strong="H3886"\w*. +\q1 +\v 4 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w arrows|strong="H2671"\w* \w of|strong="H7307"\w* \w the|strong="H3588"\w* \w Almighty|strong="H7706"\w* \w are|strong="H2671"\w* \w within|strong="H5978"\w* \w me|strong="H5978"\w*. +\q2 \w My|strong="H3588"\w* \w spirit|strong="H7307"\w* \w drinks|strong="H8354"\w* \w up|strong="H8354"\w* \w their|strong="H3588"\w* \w poison|strong="H2534"\w*. +\q1 \w The|strong="H3588"\w* \w terrors|strong="H1161"\w* \w of|strong="H7307"\w* God \w set|strong="H6186"\w* \w themselves|strong="H6186"\w* \w in|strong="H7307"\w* \w array|strong="H6186"\w* \w against|strong="H6186"\w* \w me|strong="H5978"\w*. +\q2 +\v 5 Does \w the|strong="H5921"\w* \w wild|strong="H6501"\w* \w donkey|strong="H6501"\w* \w bray|strong="H5101"\w* \w when|strong="H5921"\w* \w he|strong="H5921"\w* has \w grass|strong="H1877"\w*? +\q1 \w Or|strong="H7794"\w* does \w the|strong="H5921"\w* \w ox|strong="H7794"\w* \w low|strong="H1600"\w* \w over|strong="H5921"\w* \w his|strong="H5921"\w* \w fodder|strong="H1098"\w*? +\q2 +\v 6 \w Can|strong="H3426"\w* \w that|strong="H3426"\w* \w which|strong="H3426"\w* \w has|strong="H3426"\w* \w no|strong="H1097"\w* \w flavor|strong="H2940"\w* \w be|strong="H3426"\w* eaten \w without|strong="H1097"\w* \w salt|strong="H4417"\w*? +\q1 Or \w is|strong="H3426"\w* \w there|strong="H3426"\w* \w any|strong="H3426"\w* \w taste|strong="H2940"\w* \w in|strong="H3426"\w* \w the|strong="H3426"\w* \w white|strong="H2495"\w* \w of|strong="H1097"\w* \w an|strong="H3426"\w* \w egg|strong="H2495"\w*? +\q2 +\v 7 \w My|strong="H5060"\w* \w soul|strong="H5315"\w* \w refuses|strong="H3985"\w* \w to|strong="H3985"\w* \w touch|strong="H5060"\w* \w them|strong="H1992"\w*. +\q1 \w They|strong="H1992"\w* \w are|strong="H1992"\w* \w as|strong="H5315"\w* \w loathsome|strong="H1741"\w* \w food|strong="H3899"\w* \w to|strong="H3985"\w* \w me|strong="H5315"\w*. +\b +\q1 +\v 8 “\w Oh|strong="H4310"\w* \w that|strong="H5414"\w* \w I|strong="H5414"\w* \w might|strong="H7596"\w* \w have|strong="H5414"\w* \w my|strong="H5414"\w* \w request|strong="H7596"\w*, +\q2 \w that|strong="H5414"\w* \w God|strong="H5414"\w* \w would|strong="H4310"\w* \w grant|strong="H5414"\w* \w the|strong="H5414"\w* \w thing|strong="H7596"\w* \w that|strong="H5414"\w* \w I|strong="H5414"\w* long \w for|strong="H5414"\w*, +\q1 +\v 9 even \w that|strong="H3027"\w* \w it|strong="H1214"\w* \w would|strong="H2974"\w* \w please|strong="H2974"\w* \w God|strong="H3027"\w* \w to|strong="H3027"\w* \w crush|strong="H1792"\w* \w me|strong="H1792"\w*; +\q2 \w that|strong="H3027"\w* \w he|strong="H3027"\w* \w would|strong="H2974"\w* let \w loose|strong="H5425"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w cut|strong="H1214"\w* \w me|strong="H1792"\w* \w off|strong="H1214"\w*! +\q1 +\v 10 \w Let|strong="H3808"\w* \w it|strong="H3588"\w* \w still|strong="H5750"\w* \w be|strong="H1961"\w* \w my|strong="H1961"\w* \w consolation|strong="H5165"\w*, +\q2 \w yes|strong="H3588"\w*, \w let|strong="H3808"\w* \w me|strong="H1961"\w* exult \w in|strong="H5750"\w* \w pain|strong="H2427"\w* \w that|strong="H3588"\w* doesn’t \w spare|strong="H2550"\w*, +\q2 \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* \w denied|strong="H3582"\w* \w the|strong="H3588"\w* words \w of|strong="H6918"\w* \w the|strong="H3588"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w*. +\q1 +\v 11 \w What|strong="H4100"\w* \w is|strong="H4100"\w* \w my|strong="H3588"\w* \w strength|strong="H3581"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w should|strong="H4100"\w* \w wait|strong="H3176"\w*? +\q2 \w What|strong="H4100"\w* \w is|strong="H4100"\w* \w my|strong="H3588"\w* \w end|strong="H7093"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w should|strong="H4100"\w* \w be|strong="H5315"\w* patient? +\q1 +\v 12 \w Is|strong="H1320"\w* \w my|strong="H1320"\w* \w strength|strong="H3581"\w* \w the|strong="H3581"\w* \w strength|strong="H3581"\w* \w of|strong="H1320"\w* stones? +\q2 \w Or|strong="H1320"\w* \w is|strong="H1320"\w* \w my|strong="H1320"\w* \w flesh|strong="H1320"\w* \w of|strong="H1320"\w* \w bronze|strong="H5153"\w*? +\q1 +\v 13 Isn’t it \w that|strong="H4480"\w* \w I|strong="H4480"\w* have \w no|strong="H4480"\w* \w help|strong="H5833"\w* \w in|strong="H4480"\w* \w me|strong="H4480"\w*, +\q2 \w that|strong="H4480"\w* \w wisdom|strong="H8454"\w* \w is|strong="H8454"\w* \w driven|strong="H5080"\w* \w away|strong="H5080"\w* \w from|strong="H4480"\w* \w me|strong="H4480"\w*? +\b +\q1 +\v 14 “\w To|strong="H2617"\w* \w him|strong="H5800"\w* \w who|strong="H7706"\w* \w is|strong="H2617"\w* ready \w to|strong="H2617"\w* faint, \w kindness|strong="H2617"\w* should \w be|strong="H2617"\w* \w shown|strong="H5800"\w* from \w his|strong="H5800"\w* \w friend|strong="H7453"\w*; +\q2 \w even|strong="H7453"\w* \w to|strong="H2617"\w* \w him|strong="H5800"\w* \w who|strong="H7706"\w* \w forsakes|strong="H5800"\w* \w the|strong="H5800"\w* \w fear|strong="H3374"\w* \w of|strong="H3374"\w* \w the|strong="H5800"\w* \w Almighty|strong="H7706"\w*. +\q1 +\v 15 \w My|strong="H5674"\w* brothers have dealt deceitfully \w as|strong="H3644"\w* \w a|strong="H3068"\w* \w brook|strong="H5158"\w*, +\q2 \w as|strong="H3644"\w* \w the|strong="H5674"\w* channel \w of|strong="H5158"\w* \w brooks|strong="H5158"\w* \w that|strong="H5158"\w* \w pass|strong="H5674"\w* \w away|strong="H5674"\w*; +\q1 +\v 16 which \w are|strong="H6937"\w* \w black|strong="H6937"\w* \w by|strong="H5921"\w* \w reason|strong="H5921"\w* \w of|strong="H4480"\w* \w the|strong="H5921"\w* \w ice|strong="H7140"\w*, +\q2 \w in|strong="H5921"\w* which \w the|strong="H5921"\w* \w snow|strong="H7950"\w* \w hides|strong="H5956"\w* itself. +\q1 +\v 17 \w In|strong="H4725"\w* \w the|strong="H6256"\w* dry \w season|strong="H6256"\w*, \w they|strong="H6256"\w* \w vanish|strong="H1846"\w*. +\q2 \w When|strong="H6256"\w* \w it|strong="H4725"\w* \w is|strong="H4725"\w* \w hot|strong="H2527"\w*, \w they|strong="H6256"\w* are \w consumed|strong="H6789"\w* \w out|strong="H1846"\w* \w of|strong="H6256"\w* \w their|strong="H6256"\w* \w place|strong="H4725"\w*. +\q1 +\v 18 \w The|strong="H5927"\w* caravans \w that|strong="H5927"\w* travel beside \w them|strong="H5927"\w* turn \w away|strong="H5927"\w*. +\q2 \w They|strong="H5927"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H5927"\w* \w waste|strong="H8414"\w*, \w and|strong="H1870"\w* perish. +\q1 +\v 19 \w The|strong="H5027"\w* caravans \w of|strong="H1979"\w* \w Tema|strong="H8485"\w* \w looked|strong="H5027"\w*. +\q2 \w The|strong="H5027"\w* \w companies|strong="H1979"\w* \w of|strong="H1979"\w* \w Sheba|strong="H7614"\w* \w waited|strong="H6960"\w* \w for|strong="H6960"\w* them. +\q1 +\v 20 \w They|strong="H3588"\w* were distressed \w because|strong="H3588"\w* \w they|strong="H3588"\w* were confident. +\q2 \w They|strong="H3588"\w* came \w there|strong="H5704"\w*, \w and|strong="H5704"\w* were \w confounded|strong="H2659"\w*. +\q1 +\v 21 \w For|strong="H3588"\w* \w now|strong="H6258"\w* \w you|strong="H3588"\w* \w are|strong="H1961"\w* \w nothing|strong="H3808"\w*. +\q2 \w You|strong="H3588"\w* \w see|strong="H7200"\w* \w a|strong="H3068"\w* \w terror|strong="H2866"\w*, \w and|strong="H7200"\w* \w are|strong="H1961"\w* \w afraid|strong="H3372"\w*. +\q1 +\v 22 Did \w I|strong="H3588"\w* ever say, ‘\w Give|strong="H3051"\w* \w to|strong="H3581"\w* \w me|strong="H1157"\w*’? +\q2 \w or|strong="H3588"\w*, ‘\w Offer|strong="H7809"\w* \w a|strong="H3068"\w* present \w for|strong="H3588"\w* \w me|strong="H1157"\w* \w from|strong="H3581"\w* \w your|strong="H3588"\w* \w substance|strong="H3581"\w*’? +\q1 +\v 23 \w or|strong="H3027"\w*, ‘\w Deliver|strong="H4422"\w* \w me|strong="H3027"\w* \w from|strong="H3027"\w* \w the|strong="H3027"\w* \w adversary|strong="H6862"\w*’s \w hand|strong="H3027"\w*’? +\q2 \w or|strong="H3027"\w*, ‘\w Redeem|strong="H6299"\w* \w me|strong="H3027"\w* \w from|strong="H3027"\w* \w the|strong="H3027"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w oppressors|strong="H6862"\w*’? +\b +\q1 +\v 24 “\w Teach|strong="H3384"\w* \w me|strong="H4100"\w*, \w and|strong="H2790"\w* \w I|strong="H4100"\w* \w will|strong="H4100"\w* hold \w my|strong="H4100"\w* \w peace|strong="H2790"\w*. +\q2 Cause \w me|strong="H4100"\w* \w to|strong="H4100"\w* understand \w my|strong="H4100"\w* \w error|strong="H7686"\w*. +\q1 +\v 25 \w How|strong="H4100"\w* \w forcible|strong="H4834"\w* \w are|strong="H4100"\w* words \w of|strong="H4480"\w* \w uprightness|strong="H3476"\w*! +\q2 \w But|strong="H3198"\w* \w your|strong="H4480"\w* \w reproof|strong="H3198"\w*, \w what|strong="H4100"\w* \w does|strong="H4100"\w* \w it|strong="H4100"\w* \w reprove|strong="H3198"\w*? +\q1 +\v 26 Do \w you|strong="H3198"\w* \w intend|strong="H2803"\w* \w to|strong="H2803"\w* \w reprove|strong="H3198"\w* \w words|strong="H4405"\w*, +\q2 since \w the|strong="H2803"\w* \w speeches|strong="H4405"\w* \w of|strong="H7307"\w* one \w who|strong="H3198"\w* \w is|strong="H7307"\w* \w desperate|strong="H2976"\w* are \w as|strong="H2803"\w* \w wind|strong="H7307"\w*? +\q1 +\v 27 Yes, \w you|strong="H5921"\w* would \w even|strong="H5921"\w* \w cast|strong="H5307"\w* lots \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w fatherless|strong="H3490"\w*, +\q2 \w and|strong="H5307"\w* make merchandise \w of|strong="H5921"\w* \w your|strong="H5921"\w* \w friend|strong="H7453"\w*. +\q1 +\v 28 \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* \w be|strong="H6440"\w* \w pleased|strong="H2974"\w* \w to|strong="H5921"\w* \w look|strong="H6437"\w* \w at|strong="H5921"\w* \w me|strong="H6440"\w*, +\q2 \w for|strong="H5921"\w* surely \w I|strong="H5921"\w* \w will|strong="H6440"\w* \w not|strong="H6440"\w* \w lie|strong="H3576"\w* \w to|strong="H5921"\w* \w your|strong="H5921"\w* \w face|strong="H6440"\w*. +\q1 +\v 29 \w Please|strong="H4994"\w* \w return|strong="H7725"\w*. +\q2 \w Let|strong="H4994"\w* \w there|strong="H1961"\w* \w be|strong="H1961"\w* \w no|strong="H1961"\w* \w injustice|strong="H5766"\w*. +\q2 Yes, \w return|strong="H7725"\w* \w again|strong="H7725"\w*. +\q2 \w My|strong="H7725"\w* \w cause|strong="H6664"\w* \w is|strong="H1961"\w* \w righteous|strong="H6664"\w*. +\q1 +\v 30 \w Is|strong="H3426"\w* \w there|strong="H3426"\w* \w injustice|strong="H5766"\w* \w on|strong="H3808"\w* \w my|strong="H3808"\w* \w tongue|strong="H3956"\w*? +\q2 \w Can|strong="H3426"\w*’t \w my|strong="H3808"\w* \w taste|strong="H2441"\w* discern \w mischievous|strong="H1942"\w* \w things|strong="H1942"\w*? +\c 7 +\b +\q1 +\v 1 “Isn’t \w a|strong="H3068"\w* \w man|strong="H7916"\w* \w forced|strong="H6635"\w* \w to|strong="H5921"\w* \w labor|strong="H6635"\w* \w on|strong="H5921"\w* earth? +\q2 Aren’t \w his|strong="H5921"\w* \w days|strong="H3117"\w* \w like|strong="H3808"\w* \w the|strong="H5921"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w a|strong="H3068"\w* \w hired|strong="H7916"\w* hand? +\q1 +\v 2 \w As|strong="H5650"\w* \w a|strong="H3068"\w* \w servant|strong="H5650"\w* \w who|strong="H5650"\w* \w earnestly|strong="H5650"\w* desires \w the|strong="H5650"\w* \w shadow|strong="H6738"\w*, +\q2 \w as|strong="H5650"\w* \w a|strong="H3068"\w* \w hireling|strong="H7916"\w* \w who|strong="H5650"\w* looks \w for|strong="H6960"\w* \w his|strong="H5650"\w* \w wages|strong="H6467"\w*, +\q1 +\v 3 \w so|strong="H3651"\w* \w I|strong="H3651"\w* am made \w to|strong="H3915"\w* \w possess|strong="H5157"\w* \w months|strong="H3391"\w* \w of|strong="H5999"\w* \w misery|strong="H5999"\w*, +\q2 \w wearisome|strong="H5999"\w* \w nights|strong="H3915"\w* \w are|strong="H3915"\w* \w appointed|strong="H4487"\w* \w to|strong="H3915"\w* me. +\q1 +\v 4 \w When|strong="H4970"\w* \w I|strong="H5704"\w* \w lie|strong="H7901"\w* \w down|strong="H7901"\w*, \w I|strong="H5704"\w* say, +\q2 ‘\w When|strong="H4970"\w* \w will|strong="H5704"\w* \w I|strong="H5704"\w* \w arise|strong="H6965"\w*, \w and|strong="H6965"\w* \w the|strong="H5704"\w* \w night|strong="H6153"\w* \w be|strong="H5399"\w* \w gone|strong="H4059"\w*?’ +\q2 \w I|strong="H5704"\w* toss \w and|strong="H6965"\w* turn \w until|strong="H5704"\w* \w the|strong="H5704"\w* dawning \w of|strong="H7646"\w* \w the|strong="H5704"\w* \w day|strong="H5399"\w*. +\q1 +\v 5 \w My|strong="H3988"\w* \w flesh|strong="H1320"\w* \w is|strong="H1320"\w* \w clothed|strong="H3847"\w* \w with|strong="H3847"\w* \w worms|strong="H7415"\w* \w and|strong="H6083"\w* \w clods|strong="H1487"\w* \w of|strong="H1320"\w* \w dust|strong="H6083"\w*. +\q2 \w My|strong="H3988"\w* \w skin|strong="H5785"\w* closes up, \w and|strong="H6083"\w* breaks \w out|strong="H5785"\w* afresh. +\q1 +\v 6 \w My|strong="H3615"\w* \w days|strong="H3117"\w* \w are|strong="H3117"\w* \w swifter|strong="H7043"\w* \w than|strong="H4480"\w* \w a|strong="H3068"\w* weaver’s shuttle, +\q2 \w and|strong="H3117"\w* \w are|strong="H3117"\w* \w spent|strong="H3615"\w* \w without|strong="H4480"\w* \w hope|strong="H8615"\w*. +\q1 +\v 7 Oh \w remember|strong="H2142"\w* \w that|strong="H3588"\w* \w my|strong="H7200"\w* \w life|strong="H2416"\w* \w is|strong="H2896"\w* \w a|strong="H3068"\w* \w breath|strong="H7307"\w*. +\q2 \w My|strong="H7200"\w* \w eye|strong="H5869"\w* \w will|strong="H5869"\w* \w no|strong="H3808"\w* \w more|strong="H3808"\w* \w see|strong="H7200"\w* \w good|strong="H2896"\w*. +\q1 +\v 8 \w The|strong="H3808"\w* \w eye|strong="H5869"\w* \w of|strong="H5869"\w* \w him|strong="H5869"\w* \w who|strong="H7210"\w* \w sees|strong="H7210"\w* \w me|strong="H5869"\w* \w will|strong="H5869"\w* \w see|strong="H5869"\w* \w me|strong="H5869"\w* \w no|strong="H3808"\w* \w more|strong="H3808"\w*. +\q2 \w Your|strong="H3808"\w* \w eyes|strong="H5869"\w* \w will|strong="H5869"\w* \w be|strong="H3808"\w* \w on|strong="H5869"\w* \w me|strong="H5869"\w*, \w but|strong="H3808"\w* \w I|strong="H3808"\w* \w will|strong="H5869"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w*. +\q1 +\v 9 \w As|strong="H3651"\w* \w the|strong="H5927"\w* \w cloud|strong="H6051"\w* \w is|strong="H3651"\w* \w consumed|strong="H3615"\w* \w and|strong="H3212"\w* \w vanishes|strong="H3615"\w* \w away|strong="H3212"\w*, +\q2 \w so|strong="H3651"\w* \w he|strong="H3651"\w* \w who|strong="H3808"\w* \w goes|strong="H5927"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w Sheol|strong="H7585"\w*\f + \fr 7:9 \ft Sheol is the place of the dead.\f* \w will|strong="H3808"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w no|strong="H3808"\w* \w more|strong="H3651"\w*. +\q1 +\v 10 \w He|strong="H1004"\w* \w will|strong="H1004"\w* \w return|strong="H7725"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w house|strong="H1004"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H1004"\w* \w his|strong="H7725"\w* \w place|strong="H4725"\w* \w know|strong="H5234"\w* \w him|strong="H7725"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*. +\b +\q1 +\v 11 “\w Therefore|strong="H1571"\w* \w I|strong="H5315"\w* \w will|strong="H1571"\w* \w not|strong="H3808"\w* \w keep|strong="H2820"\w* \w silent|strong="H6310"\w*. +\q2 \w I|strong="H5315"\w* \w will|strong="H1571"\w* \w speak|strong="H1696"\w* \w in|strong="H5315"\w* \w the|strong="H1696"\w* \w anguish|strong="H6862"\w* \w of|strong="H7307"\w* \w my|strong="H1696"\w* \w spirit|strong="H7307"\w*. +\q2 \w I|strong="H5315"\w* \w will|strong="H1571"\w* \w complain|strong="H7878"\w* \w in|strong="H5315"\w* \w the|strong="H1696"\w* \w bitterness|strong="H4751"\w* \w of|strong="H7307"\w* \w my|strong="H1696"\w* \w soul|strong="H5315"\w*. +\q1 +\v 12 Am \w I|strong="H3588"\w* \w a|strong="H3068"\w* \w sea|strong="H3220"\w*, \w or|strong="H3588"\w* \w a|strong="H3068"\w* \w sea|strong="H3220"\w* \w monster|strong="H8577"\w*, +\q2 \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w put|strong="H7760"\w* \w a|strong="H3068"\w* \w guard|strong="H4929"\w* \w over|strong="H5921"\w* \w me|strong="H5921"\w*? +\q1 +\v 13 \w When|strong="H3588"\w* \w I|strong="H3588"\w* say, ‘\w My|strong="H5375"\w* \w bed|strong="H4904"\w* \w will|strong="H6210"\w* \w comfort|strong="H5162"\w* \w me|strong="H3588"\w*. +\q2 \w My|strong="H5375"\w* \w couch|strong="H6210"\w* \w will|strong="H6210"\w* \w ease|strong="H5375"\w* \w my|strong="H5375"\w* complaint,’ +\q1 +\v 14 then \w you|strong="H2865"\w* scare \w me|strong="H2472"\w* with \w dreams|strong="H2472"\w* +\q2 \w and|strong="H2865"\w* \w terrify|strong="H1204"\w* \w me|strong="H2472"\w* through \w visions|strong="H2384"\w*, +\q1 +\v 15 so \w that|strong="H5315"\w* \w my|strong="H6106"\w* \w soul|strong="H5315"\w* chooses \w strangling|strong="H4267"\w*, +\q2 \w death|strong="H4194"\w* rather \w than|strong="H6106"\w* \w my|strong="H6106"\w* \w bones|strong="H6106"\w*. +\q1 +\v 16 \w I|strong="H3588"\w* \w loathe|strong="H3988"\w* \w my|strong="H3588"\w* \w life|strong="H3117"\w*. +\q2 \w I|strong="H3588"\w* don’t \w want|strong="H3808"\w* \w to|strong="H3117"\w* \w live|strong="H2421"\w* \w forever|strong="H5769"\w*. +\q2 \w Leave|strong="H2308"\w* \w me|strong="H4480"\w* \w alone|strong="H2308"\w*, \w for|strong="H3588"\w* \w my|strong="H3588"\w* \w days|strong="H3117"\w* \w are|strong="H3117"\w* \w but|strong="H3588"\w* \w a|strong="H3068"\w* \w breath|strong="H1892"\w*. +\q1 +\v 17 \w What|strong="H4100"\w* \w is|strong="H3820"\w* \w man|strong="H3820"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w should|strong="H4100"\w* \w magnify|strong="H1431"\w* \w him|strong="H7896"\w*, +\q2 \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w should|strong="H4100"\w* \w set|strong="H7896"\w* \w your|strong="H3588"\w* \w mind|strong="H3820"\w* \w on|strong="H4100"\w* \w him|strong="H7896"\w*, +\q1 +\v 18 \w that|strong="H6485"\w* \w you|strong="H6485"\w* should \w visit|strong="H6485"\w* \w him|strong="H6485"\w* \w every|strong="H1242"\w* \w morning|strong="H1242"\w*, +\q2 \w and|strong="H1242"\w* test \w him|strong="H6485"\w* \w every|strong="H1242"\w* \w moment|strong="H7281"\w*? +\q1 +\v 19 \w How|strong="H4100"\w* \w long|strong="H5704"\w* \w will|strong="H3808"\w* \w you|strong="H5704"\w* \w not|strong="H3808"\w* \w look|strong="H8159"\w* \w away|strong="H4480"\w* \w from|strong="H4480"\w* \w me|strong="H4480"\w*, +\q2 \w nor|strong="H3808"\w* \w leave|strong="H4480"\w* \w me|strong="H4480"\w* \w alone|strong="H7503"\w* \w until|strong="H5704"\w* \w I|strong="H5704"\w* \w swallow|strong="H1104"\w* \w down|strong="H1104"\w* \w my|strong="H4480"\w* \w spittle|strong="H7536"\w*? +\q1 +\v 20 \w If|strong="H1961"\w* \w I|strong="H5921"\w* \w have|strong="H1961"\w* \w sinned|strong="H2398"\w*, \w what|strong="H4100"\w* \w do|strong="H6466"\w* \w I|strong="H5921"\w* \w do|strong="H6466"\w* \w to|strong="H1961"\w* \w you|strong="H5921"\w*, \w you|strong="H5921"\w* \w watcher|strong="H5341"\w* \w of|strong="H5921"\w* men? +\q2 \w Why|strong="H4100"\w* \w have|strong="H1961"\w* \w you|strong="H5921"\w* \w set|strong="H7760"\w* \w me|strong="H5921"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w mark|strong="H7760"\w* \w for|strong="H5921"\w* \w you|strong="H5921"\w*, +\q2 \w so|strong="H1961"\w* \w that|strong="H1961"\w* \w I|strong="H5921"\w* \w am|strong="H1961"\w* \w a|strong="H3068"\w* \w burden|strong="H4853"\w* \w to|strong="H1961"\w* myself? +\q1 +\v 21 \w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H3588"\w* \w not|strong="H3808"\w* \w pardon|strong="H5375"\w* \w my|strong="H5375"\w* disobedience, \w and|strong="H5674"\w* \w take|strong="H5375"\w* \w away|strong="H5375"\w* \w my|strong="H5375"\w* \w iniquity|strong="H5771"\w*? +\q2 \w For|strong="H3588"\w* \w now|strong="H6258"\w* \w will|strong="H3808"\w* \w I|strong="H3588"\w* \w lie|strong="H7901"\w* \w down|strong="H7901"\w* \w in|strong="H7901"\w* \w the|strong="H3588"\w* \w dust|strong="H6083"\w*. +\q2 \w You|strong="H3588"\w* \w will|strong="H3808"\w* \w seek|strong="H7836"\w* \w me|strong="H5674"\w* \w diligently|strong="H7836"\w*, \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w*.” +\c 8 +\p +\v 1 \w Then|strong="H6030"\w* \w Bildad|strong="H1085"\w* \w the|strong="H6030"\w* \w Shuhite|strong="H7747"\w* \w answered|strong="H6030"\w*, +\q1 +\v 2 “\w How|strong="H5704"\w* \w long|strong="H5704"\w* \w will|strong="H7307"\w* \w you|strong="H5704"\w* \w speak|strong="H4448"\w* \w these|strong="H4448"\w* things? +\q2 \w Shall|strong="H6310"\w* \w the|strong="H5704"\w* \w words|strong="H6310"\w* \w of|strong="H7307"\w* \w your|strong="H5704"\w* \w mouth|strong="H6310"\w* \w be|strong="H7307"\w* \w a|strong="H3068"\w* \w mighty|strong="H3524"\w* \w wind|strong="H7307"\w*? +\q1 +\v 3 Does God \w pervert|strong="H5791"\w* \w justice|strong="H4941"\w*? +\q2 \w Or|strong="H4941"\w* does \w the|strong="H4941"\w* \w Almighty|strong="H7706"\w* \w pervert|strong="H5791"\w* \w righteousness|strong="H6664"\w*? +\q1 +\v 4 \w If|strong="H2398"\w* \w your|strong="H7971"\w* \w children|strong="H1121"\w* \w have|strong="H1121"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w him|strong="H7971"\w*, +\q2 \w he|strong="H3027"\w* \w has|strong="H3027"\w* \w delivered|strong="H3027"\w* \w them|strong="H7971"\w* \w into|strong="H3027"\w* \w the|strong="H7971"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w their|strong="H7971"\w* disobedience. +\q1 +\v 5 \w If|strong="H2603"\w* \w you|strong="H7836"\w* want \w to|strong="H2603"\w* \w seek|strong="H7836"\w* God \w diligently|strong="H7836"\w*, +\q2 \w make|strong="H2603"\w* \w your|strong="H2603"\w* \w supplication|strong="H2603"\w* \w to|strong="H2603"\w* \w the|strong="H2603"\w* \w Almighty|strong="H7706"\w*. +\q1 +\v 6 \w If|strong="H3588"\w* \w you|strong="H3588"\w* \w were|strong="H5921"\w* \w pure|strong="H2134"\w* \w and|strong="H6664"\w* \w upright|strong="H3477"\w*, +\q2 \w surely|strong="H3588"\w* \w now|strong="H6258"\w* \w he|strong="H3588"\w* \w would|strong="H3477"\w* \w awaken|strong="H5782"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*, +\q1 \w and|strong="H6664"\w* \w make|strong="H7999"\w* \w the|strong="H5921"\w* \w habitation|strong="H5116"\w* \w of|strong="H5921"\w* \w your|strong="H5921"\w* \w righteousness|strong="H6664"\w* \w prosperous|strong="H7999"\w*. +\q2 +\v 7 Though \w your|strong="H1961"\w* \w beginning|strong="H7225"\w* \w was|strong="H1961"\w* \w small|strong="H4705"\w*, +\q1 yet \w your|strong="H1961"\w* latter end would \w greatly|strong="H3966"\w* \w increase|strong="H7685"\w*. +\b +\q1 +\v 8 “\w Please|strong="H4994"\w* \w inquire|strong="H7592"\w* \w of|strong="H7592"\w* \w past|strong="H7223"\w* \w generations|strong="H1755"\w*. +\q2 \w Find|strong="H2714"\w* \w out|strong="H2714"\w* about \w the|strong="H3588"\w* learning \w of|strong="H7592"\w* \w their|strong="H3588"\w* fathers. +\q1 +\v 9 (\w For|strong="H3588"\w* \w we|strong="H3068"\w* \w are|strong="H3117"\w* \w but|strong="H3588"\w* \w of|strong="H3117"\w* \w yesterday|strong="H8543"\w*, \w and|strong="H3117"\w* \w know|strong="H3045"\w* \w nothing|strong="H3808"\w*, +\q2 \w because|strong="H3588"\w* \w our|strong="H5921"\w* \w days|strong="H3117"\w* \w on|strong="H5921"\w* earth \w are|strong="H3117"\w* \w a|strong="H3068"\w* \w shadow|strong="H6738"\w*.) +\q1 +\v 10 \w Shall|strong="H3820"\w* \w they|strong="H1992"\w* \w not|strong="H3808"\w* \w teach|strong="H3384"\w* \w you|strong="H3808"\w*, tell \w you|strong="H3808"\w*, +\q2 \w and|strong="H3318"\w* \w utter|strong="H3318"\w* \w words|strong="H4405"\w* \w out|strong="H3318"\w* \w of|strong="H3820"\w* \w their|strong="H1992"\w* \w heart|strong="H3820"\w*? +\b +\q1 +\v 11 “\w Can|strong="H7685"\w* \w the|strong="H3808"\w* \w papyrus|strong="H1573"\w* \w grow|strong="H7685"\w* \w up|strong="H1342"\w* \w without|strong="H3808"\w* \w mire|strong="H1207"\w*? +\q2 \w Can|strong="H7685"\w* \w the|strong="H3808"\w* \w rushes|strong="H1573"\w* \w grow|strong="H7685"\w* \w without|strong="H3808"\w* \w water|strong="H4325"\w*? +\q1 +\v 12 \w While|strong="H5750"\w* \w it|strong="H6440"\w* \w is|strong="H3605"\w* \w yet|strong="H5750"\w* \w in|strong="H6440"\w* \w its|strong="H3605"\w* greenness, \w not|strong="H3808"\w* \w cut|strong="H6998"\w* \w down|strong="H6440"\w*, +\q2 \w it|strong="H6440"\w* \w withers|strong="H3001"\w* \w before|strong="H6440"\w* \w any|strong="H3605"\w* \w other|strong="H5750"\w* reed. +\q1 +\v 13 \w So|strong="H3651"\w* are \w the|strong="H3605"\w* paths \w of|strong="H3605"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w forget|strong="H7911"\w* God. +\q2 \w The|strong="H3605"\w* \w hope|strong="H8615"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w godless|strong="H2611"\w* \w man|strong="H2611"\w* \w will|strong="H8615"\w* perish, +\q1 +\v 14 whose \w confidence|strong="H4009"\w* \w will|strong="H1004"\w* break apart, +\q2 whose \w trust|strong="H4009"\w* \w is|strong="H1004"\w* \w a|strong="H3068"\w* spider’s \w web|strong="H1004"\w*. +\q1 +\v 15 \w He|strong="H1004"\w* \w will|strong="H1004"\w* \w lean|strong="H8172"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w house|strong="H1004"\w*, \w but|strong="H3808"\w* \w it|strong="H5921"\w* \w will|strong="H1004"\w* \w not|strong="H3808"\w* \w stand|strong="H5975"\w*. +\q2 \w He|strong="H1004"\w* \w will|strong="H1004"\w* cling \w to|strong="H5921"\w* \w it|strong="H5921"\w*, \w but|strong="H3808"\w* \w it|strong="H5921"\w* \w will|strong="H1004"\w* \w not|strong="H3808"\w* \w endure|strong="H5975"\w*. +\q1 +\v 16 \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w green|strong="H7373"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w sun|strong="H8121"\w*. +\q2 \w His|strong="H6440"\w* \w shoots|strong="H3127"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w along|strong="H5921"\w* \w his|strong="H6440"\w* \w garden|strong="H1593"\w*. +\q1 +\v 17 \w His|strong="H5921"\w* \w roots|strong="H8328"\w* \w are|strong="H1004"\w* wrapped \w around|strong="H5921"\w* \w the|strong="H5921"\w* \w rock|strong="H1530"\w* \w pile|strong="H1530"\w*. +\q2 \w He|strong="H1004"\w* \w sees|strong="H2372"\w* \w the|strong="H5921"\w* \w place|strong="H1004"\w* \w of|strong="H1004"\w* stones. +\q1 +\v 18 \w If|strong="H7200"\w* \w he|strong="H3808"\w* \w is|strong="H4725"\w* \w destroyed|strong="H1104"\w* \w from|strong="H7200"\w* \w his|strong="H7200"\w* \w place|strong="H4725"\w*, +\q2 \w then|strong="H7200"\w* \w it|strong="H7200"\w* \w will|strong="H3808"\w* \w deny|strong="H3584"\w* \w him|strong="H7200"\w*, saying, ‘\w I|strong="H7200"\w* \w have|strong="H7200"\w* \w not|strong="H3808"\w* \w seen|strong="H7200"\w* \w you|strong="H3808"\w*.’ +\q1 +\v 19 \w Behold|strong="H2005"\w*, \w this|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H1870"\w* \w joy|strong="H4885"\w* \w of|strong="H1870"\w* \w his|strong="H1931"\w* \w way|strong="H1870"\w*. +\q2 \w Out|strong="H6779"\w* \w of|strong="H1870"\w* \w the|strong="H1870"\w* \w earth|strong="H6083"\w*, others \w will|strong="H1931"\w* \w spring|strong="H6779"\w*. +\b +\q1 +\v 20 “\w Behold|strong="H2005"\w*, \w God|strong="H3808"\w* \w will|strong="H3027"\w* \w not|strong="H3808"\w* \w cast|strong="H3988"\w* \w away|strong="H3988"\w* \w a|strong="H3068"\w* \w blameless|strong="H8535"\w* \w man|strong="H8535"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H3027"\w* \w he|strong="H3027"\w* uphold \w the|strong="H2388"\w* \w evildoers|strong="H7489"\w*. +\q1 +\v 21 \w He|strong="H5704"\w* \w will|strong="H5704"\w* \w still|strong="H5704"\w* \w fill|strong="H4390"\w* \w your|strong="H5704"\w* \w mouth|strong="H6310"\w* \w with|strong="H4390"\w* \w laughter|strong="H7814"\w*, +\q2 \w your|strong="H5704"\w* \w lips|strong="H8193"\w* \w with|strong="H4390"\w* \w shouting|strong="H8643"\w*. +\q1 +\v 22 \w Those|strong="H8130"\w* \w who|strong="H7563"\w* \w hate|strong="H8130"\w* \w you|strong="H3847"\w* \w will|strong="H7563"\w* \w be|strong="H7563"\w* \w clothed|strong="H3847"\w* \w with|strong="H3847"\w* \w shame|strong="H1322"\w*. +\q2 \w The|strong="H8130"\w* tent \w of|strong="H1322"\w* \w the|strong="H8130"\w* \w wicked|strong="H7563"\w* \w will|strong="H7563"\w* \w be|strong="H7563"\w* \w no|strong="H7563"\w* \w more|strong="H7563"\w*.” +\c 9 +\p +\v 1 \w Then|strong="H6030"\w* Job \w answered|strong="H6030"\w*, +\q1 +\v 2 “\w Truly|strong="H3588"\w* \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H4100"\w* \w so|strong="H3651"\w*, +\q2 \w but|strong="H3588"\w* \w how|strong="H4100"\w* \w can|strong="H4100"\w* \w man|strong="H3045"\w* \w be|strong="H3588"\w* \w just|strong="H6663"\w* \w with|strong="H5973"\w* God? +\q1 +\v 3 If \w he|strong="H4480"\w* \w is|strong="H3808"\w* \w pleased|strong="H2654"\w* \w to|strong="H2654"\w* \w contend|strong="H7378"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*, +\q2 \w he|strong="H4480"\w* \w can|strong="H3808"\w*’t \w answer|strong="H6030"\w* \w him|strong="H5973"\w* \w one|strong="H3808"\w* time \w in|strong="H2654"\w* \w a|strong="H3068"\w* thousand. +\q1 +\v 4 \w God|strong="H4310"\w* \w is|strong="H4310"\w* \w wise|strong="H2450"\w* \w in|strong="H2450"\w* \w heart|strong="H3824"\w*, \w and|strong="H3824"\w* \w mighty|strong="H3581"\w* \w in|strong="H2450"\w* \w strength|strong="H3581"\w*. +\q2 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* \w hardened|strong="H7185"\w* \w himself|strong="H3824"\w* \w against|strong="H3824"\w* \w him|strong="H7999"\w* \w and|strong="H3824"\w* \w prospered|strong="H7999"\w*? +\q1 +\v 5 \w He|strong="H3808"\w* \w removes|strong="H6275"\w* \w the|strong="H3045"\w* \w mountains|strong="H2022"\w*, \w and|strong="H2022"\w* \w they|strong="H3808"\w* don’t \w know|strong="H3045"\w* \w it|strong="H3045"\w*, +\q2 \w when|strong="H3045"\w* \w he|strong="H3808"\w* \w overturns|strong="H2015"\w* \w them|strong="H3045"\w* \w in|strong="H3808"\w* \w his|strong="H3045"\w* anger. +\q1 +\v 6 He \w shakes|strong="H7264"\w* \w the|strong="H4725"\w* earth \w out|strong="H4725"\w* \w of|strong="H5982"\w* its \w place|strong="H4725"\w*. +\q2 Its \w pillars|strong="H5982"\w* \w tremble|strong="H7264"\w*. +\q1 +\v 7 \w He|strong="H3808"\w* commands \w the|strong="H3808"\w* \w sun|strong="H2775"\w* \w and|strong="H3808"\w* \w it|strong="H3808"\w* doesn’t \w rise|strong="H2224"\w*, +\q2 \w and|strong="H3808"\w* \w seals|strong="H2856"\w* \w up|strong="H2856"\w* \w the|strong="H3808"\w* \w stars|strong="H3556"\w*. +\q1 +\v 8 \w He|strong="H5921"\w* alone \w stretches|strong="H5186"\w* \w out|strong="H5186"\w* \w the|strong="H5921"\w* \w heavens|strong="H8064"\w*, +\q2 \w and|strong="H8064"\w* \w treads|strong="H1869"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w waves|strong="H1116"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*. +\q1 +\v 9 \w He|strong="H6213"\w* \w makes|strong="H6213"\w* \w the|strong="H6213"\w* \w Bear|strong="H6213"\w*, \w Orion|strong="H3685"\w*, \w and|strong="H6213"\w* \w the|strong="H6213"\w* \w Pleiades|strong="H3598"\w*, +\q2 \w and|strong="H6213"\w* \w the|strong="H6213"\w* \w rooms|strong="H2315"\w* \w of|strong="H6213"\w* \w the|strong="H6213"\w* \w south|strong="H8486"\w*. +\q1 +\v 10 \w He|strong="H5704"\w* \w does|strong="H6213"\w* \w great|strong="H1419"\w* \w things|strong="H1419"\w* past finding \w out|strong="H6213"\w*; +\q2 yes, \w marvelous|strong="H6381"\w* \w things|strong="H1419"\w* \w without|strong="H6381"\w* \w number|strong="H4557"\w*. +\q1 +\v 11 \w Behold|strong="H2005"\w*, \w he|strong="H3808"\w* \w goes|strong="H5674"\w* \w by|strong="H5921"\w* \w me|strong="H7200"\w*, \w and|strong="H7200"\w* \w I|strong="H2005"\w* don’t \w see|strong="H7200"\w* \w him|strong="H5921"\w*. +\q2 \w He|strong="H3808"\w* \w passes|strong="H5674"\w* \w on|strong="H5921"\w* also, \w but|strong="H3808"\w* \w I|strong="H2005"\w* don’t \w perceive|strong="H7200"\w* \w him|strong="H5921"\w*. +\q1 +\v 12 \w Behold|strong="H2005"\w*, \w he|strong="H6213"\w* snatches \w away|strong="H7725"\w*. +\q2 \w Who|strong="H4310"\w* \w can|strong="H4310"\w* \w hinder|strong="H7725"\w* \w him|strong="H6213"\w*? +\q2 \w Who|strong="H4310"\w* \w will|strong="H4310"\w* ask \w him|strong="H6213"\w*, ‘\w What|strong="H4100"\w* \w are|strong="H4100"\w* \w you|strong="H7725"\w* \w doing|strong="H6213"\w*?’ +\b +\q1 +\v 13 “\w God|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w withdraw|strong="H7725"\w* \w his|strong="H7725"\w* anger. +\q2 \w The|strong="H7725"\w* \w helpers|strong="H5826"\w* \w of|strong="H8478"\w* \w Rahab|strong="H7293"\w* \w stoop|strong="H7817"\w* \w under|strong="H8478"\w* \w him|strong="H7725"\w*. +\q1 +\v 14 \w How|strong="H3588"\w* \w much|strong="H1697"\w* \w less|strong="H3588"\w* \w will|strong="H1697"\w* \w I|strong="H3588"\w* \w answer|strong="H6030"\w* \w him|strong="H5973"\w*, +\q2 \w and|strong="H6030"\w* choose \w my|strong="H3588"\w* \w words|strong="H1697"\w* \w to|strong="H1697"\w* argue \w with|strong="H5973"\w* \w him|strong="H5973"\w*? +\q1 +\v 15 Though \w I|strong="H3808"\w* \w were|strong="H8199"\w* \w righteous|strong="H6663"\w*, \w yet|strong="H3808"\w* \w I|strong="H3808"\w* wouldn’t \w answer|strong="H6030"\w* \w him|strong="H6030"\w*. +\q2 \w I|strong="H3808"\w* would \w make|strong="H2603"\w* \w supplication|strong="H2603"\w* \w to|strong="H6030"\w* \w my|strong="H3808"\w* \w judge|strong="H8199"\w*. +\q1 +\v 16 \w If|strong="H3588"\w* \w I|strong="H3588"\w* \w had|strong="H3588"\w* \w called|strong="H7121"\w*, \w and|strong="H6030"\w* \w he|strong="H3588"\w* \w had|strong="H3588"\w* \w answered|strong="H6030"\w* \w me|strong="H6963"\w*, +\q2 \w yet|strong="H3588"\w* \w I|strong="H3588"\w* wouldn’t believe \w that|strong="H3588"\w* \w he|strong="H3588"\w* listened \w to|strong="H7121"\w* \w my|strong="H3588"\w* \w voice|strong="H6963"\w*. +\q1 +\v 17 \w For|strong="H6482"\w* \w he|strong="H7235"\w* breaks \w me|strong="H2600"\w* \w with|strong="H7235"\w* \w a|strong="H3068"\w* \w storm|strong="H8183"\w*, +\q2 \w and|strong="H7235"\w* \w multiplies|strong="H7235"\w* \w my|strong="H7235"\w* \w wounds|strong="H6482"\w* \w without|strong="H2600"\w* \w cause|strong="H2600"\w*. +\q1 +\v 18 \w He|strong="H3588"\w* \w will|strong="H7307"\w* \w not|strong="H3808"\w* \w allow|strong="H5414"\w* \w me|strong="H5414"\w* \w to|strong="H7725"\w* catch \w my|strong="H5414"\w* \w breath|strong="H7307"\w*, +\q2 \w but|strong="H3588"\w* fills \w me|strong="H5414"\w* \w with|strong="H7646"\w* \w bitterness|strong="H4472"\w*. +\q1 +\v 19 \w If|strong="H2009"\w* \w it|strong="H4941"\w* \w is|strong="H4310"\w* \w a|strong="H3068"\w* matter \w of|strong="H4941"\w* \w strength|strong="H3581"\w*, \w behold|strong="H2009"\w*, \w he|strong="H4310"\w* \w is|strong="H4310"\w* \w mighty|strong="H3581"\w*! +\q2 \w If|strong="H2009"\w* \w of|strong="H4941"\w* \w justice|strong="H4941"\w*, ‘\w Who|strong="H4310"\w*,’ says \w he|strong="H4310"\w*, ‘\w will|strong="H4310"\w* \w summon|strong="H3259"\w* \w me|strong="H3259"\w*?’ +\q1 +\v 20 Though I am \w righteous|strong="H6663"\w*, \w my|strong="H6310"\w* own \w mouth|strong="H6310"\w* \w will|strong="H6310"\w* \w condemn|strong="H7561"\w* \w me|strong="H7561"\w*. +\q2 Though I am \w blameless|strong="H8535"\w*, it \w will|strong="H6310"\w* prove \w me|strong="H7561"\w* \w perverse|strong="H6140"\w*. +\q1 +\v 21 \w I|strong="H3045"\w* am \w blameless|strong="H8535"\w*. +\q2 \w I|strong="H3045"\w* don’t \w respect|strong="H3045"\w* \w myself|strong="H5315"\w*. +\q2 \w I|strong="H3045"\w* \w despise|strong="H3988"\w* \w my|strong="H3045"\w* \w life|strong="H5315"\w*. +\b +\q1 +\v 22 “\w It|strong="H1931"\w* \w is|strong="H1931"\w* \w all|strong="H5921"\w* \w the|strong="H5921"\w* \w same|strong="H1931"\w*. +\q2 \w Therefore|strong="H3651"\w* \w I|strong="H5921"\w* say \w he|strong="H1931"\w* \w destroys|strong="H3615"\w* \w the|strong="H5921"\w* \w blameless|strong="H8535"\w* \w and|strong="H3651"\w* \w the|strong="H5921"\w* \w wicked|strong="H7563"\w*. +\q1 +\v 23 If \w the|strong="H4191"\w* \w scourge|strong="H7752"\w* \w kills|strong="H4191"\w* \w suddenly|strong="H6597"\w*, +\q2 \w he|strong="H6597"\w* \w will|strong="H5355"\w* \w mock|strong="H3932"\w* \w at|strong="H4191"\w* \w the|strong="H4191"\w* \w trial|strong="H4531"\w* \w of|strong="H4191"\w* \w the|strong="H4191"\w* \w innocent|strong="H5355"\w*. +\q1 +\v 24 \w The|strong="H6440"\w* earth \w is|strong="H1931"\w* \w given|strong="H5414"\w* \w into|strong="H8199"\w* \w the|strong="H6440"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H6440"\w* \w wicked|strong="H7563"\w*. +\q2 \w He|strong="H1931"\w* \w covers|strong="H3680"\w* \w the|strong="H6440"\w* \w faces|strong="H6440"\w* \w of|strong="H3027"\w* \w its|strong="H5414"\w* \w judges|strong="H8199"\w*. +\q2 \w If|strong="H1931"\w* \w not|strong="H3808"\w* \w he|strong="H1931"\w*, \w then|strong="H5414"\w* \w who|strong="H4310"\w* \w is|strong="H1931"\w* \w it|strong="H5414"\w*? +\b +\q1 +\v 25 “\w Now|strong="H3117"\w* \w my|strong="H7200"\w* \w days|strong="H3117"\w* \w are|strong="H3117"\w* \w swifter|strong="H7043"\w* \w than|strong="H4480"\w* \w a|strong="H3068"\w* \w runner|strong="H7323"\w*. +\q2 \w They|strong="H3117"\w* \w flee|strong="H1272"\w* \w away|strong="H1272"\w*. \w They|strong="H3117"\w* \w see|strong="H7200"\w* \w no|strong="H3808"\w* \w good|strong="H2896"\w*. +\q1 +\v 26 \w They|strong="H5921"\w* \w have|strong="H5921"\w* \w passed|strong="H2498"\w* \w away|strong="H5973"\w* \w as|strong="H5973"\w* \w the|strong="H5921"\w* swift ships, +\q2 \w as|strong="H5973"\w* \w the|strong="H5921"\w* \w eagle|strong="H5404"\w* \w that|strong="H5404"\w* \w swoops|strong="H2907"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* prey. +\q1 +\v 27 If \w I|strong="H6440"\w* say, ‘\w I|strong="H6440"\w* \w will|strong="H6440"\w* \w forget|strong="H7911"\w* \w my|strong="H5800"\w* \w complaint|strong="H7879"\w*, +\q2 \w I|strong="H6440"\w* \w will|strong="H6440"\w* put \w off|strong="H5800"\w* \w my|strong="H5800"\w* sad \w face|strong="H6440"\w*, \w and|strong="H6440"\w* \w cheer|strong="H1082"\w* up,’ +\q1 +\v 28 \w I|strong="H3588"\w* am \w afraid|strong="H3025"\w* \w of|strong="H3605"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w sorrows|strong="H6094"\w*. +\q2 \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* hold \w me|strong="H3808"\w* \w innocent|strong="H5352"\w*. +\q1 +\v 29 \w I|strong="H2088"\w* \w will|strong="H4100"\w* be \w condemned|strong="H7561"\w*. +\q2 \w Why|strong="H4100"\w* \w then|strong="H2088"\w* \w do|strong="H4100"\w* \w I|strong="H2088"\w* \w labor|strong="H3021"\w* \w in|strong="H3021"\w* \w vain|strong="H1892"\w*? +\q1 +\v 30 If I \w wash|strong="H7364"\w* \w myself|strong="H7364"\w* \w with|strong="H7364"\w* \w snow|strong="H7950"\w*, +\q2 \w and|strong="H3709"\w* \w cleanse|strong="H2141"\w* \w my|strong="H7364"\w* \w hands|strong="H3709"\w* \w with|strong="H7364"\w* \w lye|strong="H1253"\w*, +\q1 +\v 31 yet \w you|strong="H8581"\w* \w will|strong="H7845"\w* \w plunge|strong="H2881"\w* \w me|strong="H8581"\w* \w in|strong="H8581"\w* \w the|strong="H2881"\w* \w ditch|strong="H7845"\w*. +\q2 My own \w clothes|strong="H8008"\w* \w will|strong="H7845"\w* \w abhor|strong="H8581"\w* \w me|strong="H8581"\w*. +\q1 +\v 32 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H4941"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w man|strong="H6030"\w*, \w as|strong="H3644"\w* \w I|strong="H3588"\w* am, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w should|strong="H3588"\w* \w answer|strong="H6030"\w* \w him|strong="H6030"\w*, +\q2 \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w should|strong="H3588"\w* \w come|strong="H4941"\w* \w together|strong="H3162"\w* \w in|strong="H3808"\w* \w judgment|strong="H4941"\w*. +\q1 +\v 33 \w There|strong="H3426"\w* \w is|strong="H3426"\w* \w no|strong="H3426"\w* \w umpire|strong="H3198"\w* \w between|strong="H5921"\w* \w us|strong="H5921"\w*, +\q2 \w that|strong="H3863"\w* \w might|strong="H3863"\w* \w lay|strong="H7896"\w* \w his|strong="H5921"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w us|strong="H5921"\w* \w both|strong="H8147"\w*. +\q1 +\v 34 Let \w him|strong="H5921"\w* \w take|strong="H5493"\w* \w his|strong="H5921"\w* \w rod|strong="H7626"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* \w me|strong="H5921"\w*. +\q2 Let \w his|strong="H5921"\w* terror not make \w me|strong="H5921"\w* \w afraid|strong="H1204"\w*; +\q1 +\v 35 \w then|strong="H1696"\w* \w I|strong="H3588"\w* \w would|strong="H5978"\w* \w speak|strong="H1696"\w*, \w and|strong="H3372"\w* \w not|strong="H3808"\w* \w fear|strong="H3372"\w* \w him|strong="H3588"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* am \w not|strong="H3808"\w* \w so|strong="H3651"\w* \w in|strong="H1696"\w* myself. +\b +\c 10 +\b +\q1 +\v 1 “\w My|strong="H5921"\w* \w soul|strong="H5315"\w* \w is|strong="H5315"\w* \w weary|strong="H5354"\w* \w of|strong="H5921"\w* \w my|strong="H5921"\w* \w life|strong="H5315"\w*. +\q2 \w I|strong="H5921"\w* \w will|strong="H5315"\w* \w give|strong="H1696"\w* \w free|strong="H5800"\w* course \w to|strong="H1696"\w* \w my|strong="H5921"\w* \w complaint|strong="H7879"\w*. +\q2 \w I|strong="H5921"\w* \w will|strong="H5315"\w* \w speak|strong="H1696"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w bitterness|strong="H4751"\w* \w of|strong="H5921"\w* \w my|strong="H5921"\w* \w soul|strong="H5315"\w*. +\q1 +\v 2 \w I|strong="H5921"\w* \w will|strong="H4100"\w* \w tell|strong="H3045"\w* God, ‘\w Do|strong="H4100"\w* \w not|strong="H3045"\w* \w condemn|strong="H7561"\w* \w me|strong="H5921"\w*. +\q2 \w Show|strong="H3045"\w* \w me|strong="H5921"\w* \w why|strong="H4100"\w* \w you|strong="H5921"\w* \w contend|strong="H7378"\w* \w with|strong="H5921"\w* \w me|strong="H5921"\w*. +\q1 +\v 3 \w Is|strong="H2896"\w* \w it|strong="H5921"\w* \w good|strong="H2896"\w* \w to|strong="H5921"\w* \w you|strong="H3588"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w should|strong="H3588"\w* \w oppress|strong="H6231"\w*, +\q2 \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w should|strong="H3588"\w* \w despise|strong="H3988"\w* \w the|strong="H5921"\w* \w work|strong="H3018"\w* \w of|strong="H3709"\w* \w your|strong="H5921"\w* \w hands|strong="H3709"\w*, +\q2 \w and|strong="H2896"\w* smile \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w counsel|strong="H6098"\w* \w of|strong="H3709"\w* \w the|strong="H5921"\w* \w wicked|strong="H7563"\w*? +\q1 +\v 4 \w Do|strong="H5869"\w* \w you|strong="H7200"\w* \w have|strong="H5869"\w* \w eyes|strong="H5869"\w* \w of|strong="H5869"\w* \w flesh|strong="H1320"\w*? +\q2 \w Or|strong="H7200"\w* \w do|strong="H5869"\w* \w you|strong="H7200"\w* \w see|strong="H7200"\w* \w as|strong="H5869"\w* \w man|strong="H7200"\w* \w sees|strong="H7200"\w*? +\q1 +\v 5 \w Are|strong="H3117"\w* \w your|strong="H3117"\w* \w days|strong="H3117"\w* \w as|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* mortals, +\q2 \w or|strong="H3117"\w* \w your|strong="H3117"\w* \w years|strong="H8141"\w* \w as|strong="H3117"\w* \w man|strong="H1397"\w*’s \w years|strong="H8141"\w*, +\q1 +\v 6 \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w inquire|strong="H1875"\w* \w after|strong="H3588"\w* \w my|strong="H1245"\w* \w iniquity|strong="H5771"\w*, +\q2 \w and|strong="H2403"\w* \w search|strong="H1875"\w* \w after|strong="H3588"\w* \w my|strong="H1245"\w* \w sin|strong="H2403"\w*? +\q1 +\v 7 \w Although|strong="H3588"\w* \w you|strong="H3588"\w* \w know|strong="H1847"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* am \w not|strong="H3808"\w* \w wicked|strong="H7561"\w*, +\q2 there \w is|strong="H3027"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w who|strong="H3588"\w* \w can|strong="H3808"\w* \w deliver|strong="H5337"\w* \w out|strong="H5921"\w* \w of|strong="H3027"\w* \w your|strong="H5921"\w* \w hand|strong="H3027"\w*. +\b +\q1 +\v 8 “‘\w Your|strong="H6213"\w* \w hands|strong="H3027"\w* \w have|strong="H3027"\w* framed \w me|strong="H6213"\w* \w and|strong="H3027"\w* \w fashioned|strong="H6213"\w* \w me|strong="H6213"\w* \w altogether|strong="H3162"\w*, +\q2 yet \w you|strong="H6213"\w* \w destroy|strong="H1104"\w* \w me|strong="H6213"\w*. +\q1 +\v 9 \w Remember|strong="H2142"\w*, \w I|strong="H3588"\w* \w beg|strong="H4994"\w* \w you|strong="H3588"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* \w fashioned|strong="H6213"\w* \w me|strong="H4994"\w* \w as|strong="H6213"\w* \w clay|strong="H2563"\w*. +\q2 \w Will|strong="H7725"\w* \w you|strong="H3588"\w* \w bring|strong="H7725"\w* \w me|strong="H4994"\w* \w into|strong="H7725"\w* \w dust|strong="H6083"\w* \w again|strong="H7725"\w*? +\q1 +\v 10 Haven’t \w you|strong="H3808"\w* \w poured|strong="H5413"\w* \w me|strong="H3808"\w* \w out|strong="H5413"\w* \w like|strong="H3808"\w* \w milk|strong="H2461"\w*, +\q2 \w and|strong="H2461"\w* \w curdled|strong="H7087"\w* \w me|strong="H3808"\w* \w like|strong="H3808"\w* \w cheese|strong="H1385"\w*? +\q1 +\v 11 \w You|strong="H3847"\w* have \w clothed|strong="H3847"\w* \w me|strong="H5526"\w* \w with|strong="H3847"\w* \w skin|strong="H5785"\w* \w and|strong="H1320"\w* \w flesh|strong="H1320"\w*, +\q2 \w and|strong="H1320"\w* \w knit|strong="H5526"\w* \w me|strong="H5526"\w* \w together|strong="H5526"\w* \w with|strong="H3847"\w* \w bones|strong="H6106"\w* \w and|strong="H1320"\w* \w sinews|strong="H1517"\w*. +\q1 +\v 12 \w You|strong="H6213"\w* \w have|strong="H8104"\w* \w granted|strong="H6213"\w* \w me|strong="H5978"\w* \w life|strong="H2416"\w* \w and|strong="H2617"\w* loving \w kindness|strong="H2617"\w*. +\q2 \w Your|strong="H8104"\w* \w visitation|strong="H6486"\w* \w has|strong="H7307"\w* \w preserved|strong="H8104"\w* \w my|strong="H8104"\w* \w spirit|strong="H7307"\w*. +\q1 +\v 13 \w Yet|strong="H3588"\w* \w you|strong="H3588"\w* \w hid|strong="H6845"\w* \w these|strong="H2063"\w* \w things|strong="H5973"\w* \w in|strong="H3045"\w* \w your|strong="H3045"\w* \w heart|strong="H3824"\w*. +\q2 \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w this|strong="H2063"\w* \w is|strong="H3824"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*: +\q1 +\v 14 \w if|strong="H2398"\w* \w I|strong="H3808"\w* \w sin|strong="H2398"\w*, \w then|strong="H3808"\w* \w you|strong="H3808"\w* \w mark|strong="H8104"\w* \w me|strong="H8104"\w*. +\q2 \w You|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w acquit|strong="H5352"\w* \w me|strong="H8104"\w* \w from|strong="H5352"\w* \w my|strong="H8104"\w* \w iniquity|strong="H5771"\w*. +\q1 +\v 15 If \w I|strong="H3808"\w* am \w wicked|strong="H7561"\w*, woe \w to|strong="H3808"\w* \w me|strong="H3808"\w*. +\q2 If \w I|strong="H3808"\w* am \w righteous|strong="H6663"\w*, \w I|strong="H3808"\w* still \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w my|strong="H5375"\w* \w head|strong="H7218"\w*, +\q2 \w being|strong="H7646"\w* \w filled|strong="H7646"\w* \w with|strong="H7646"\w* \w disgrace|strong="H7036"\w*, +\q2 \w and|strong="H7218"\w* \w conscious|strong="H7202"\w* \w of|strong="H7218"\w* \w my|strong="H5375"\w* \w affliction|strong="H6040"\w*. +\q1 +\v 16 \w If|strong="H1342"\w* \w my|strong="H7725"\w* head \w is|strong="H6381"\w* held \w high|strong="H6381"\w*, \w you|strong="H7725"\w* \w hunt|strong="H6679"\w* \w me|strong="H7725"\w* \w like|strong="H7725"\w* \w a|strong="H3068"\w* \w lion|strong="H7826"\w*. +\q2 \w Again|strong="H7725"\w* \w you|strong="H7725"\w* \w show|strong="H6381"\w* yourself powerful \w to|strong="H7725"\w* \w me|strong="H7725"\w*. +\q1 +\v 17 \w You|strong="H5973"\w* \w renew|strong="H2318"\w* \w your|strong="H7235"\w* \w witnesses|strong="H5707"\w* \w against|strong="H5973"\w* \w me|strong="H5978"\w*, +\q2 \w and|strong="H7235"\w* \w increase|strong="H7235"\w* \w your|strong="H7235"\w* \w indignation|strong="H3708"\w* \w on|strong="H5973"\w* \w me|strong="H5978"\w*. +\q2 \w Changes|strong="H2487"\w* \w and|strong="H7235"\w* \w warfare|strong="H6635"\w* \w are|strong="H5973"\w* \w with|strong="H5973"\w* \w me|strong="H5978"\w*. +\b +\q1 +\v 18 “‘\w Why|strong="H4100"\w*, \w then|strong="H3318"\w*, \w have|strong="H5869"\w* \w you|strong="H3808"\w* \w brought|strong="H3318"\w* \w me|strong="H7200"\w* \w out|strong="H3318"\w* \w of|strong="H5869"\w* \w the|strong="H7200"\w* \w womb|strong="H7358"\w*? +\q2 \w I|strong="H7200"\w* wish \w I|strong="H7200"\w* \w had|strong="H5869"\w* given \w up|strong="H7200"\w* \w the|strong="H7200"\w* spirit, \w and|strong="H5869"\w* \w no|strong="H3808"\w* \w eye|strong="H5869"\w* \w had|strong="H5869"\w* \w seen|strong="H7200"\w* \w me|strong="H7200"\w*. +\q1 +\v 19 \w I|strong="H3808"\w* should \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w as|strong="H1961"\w* though \w I|strong="H3808"\w* \w had|strong="H1961"\w* \w not|strong="H3808"\w* \w been|strong="H1961"\w*. +\q2 \w I|strong="H3808"\w* should \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w carried|strong="H2986"\w* \w from|strong="H1961"\w* \w the|strong="H1961"\w* womb \w to|strong="H1961"\w* \w the|strong="H1961"\w* \w grave|strong="H6913"\w*. +\q1 +\v 20 Aren’t \w my|strong="H4480"\w* \w days|strong="H3117"\w* \w few|strong="H4592"\w*? +\q2 \w Stop|strong="H2308"\w*! +\q1 \w Leave|strong="H2308"\w* \w me|strong="H4480"\w* \w alone|strong="H2308"\w*, \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w may|strong="H3117"\w* find \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w comfort|strong="H1082"\w*, +\q2 +\v 21 \w before|strong="H2962"\w* \w I|strong="H2962"\w* \w go|strong="H3212"\w* \w where|strong="H3808"\w* \w I|strong="H2962"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w return|strong="H7725"\w* \w from|strong="H7725"\w*, +\q2 \w to|strong="H7725"\w* \w the|strong="H7725"\w* land \w of|strong="H3808"\w* \w darkness|strong="H2822"\w* \w and|strong="H7725"\w* \w of|strong="H3808"\w* \w the|strong="H7725"\w* \w shadow|strong="H6757"\w* \w of|strong="H3808"\w* \w death|strong="H6757"\w*; +\q1 +\v 22 \w the|strong="H3808"\w* land \w dark|strong="H6757"\w* \w as|strong="H3644"\w* midnight, +\q2 \w of|strong="H3808"\w* \w the|strong="H3808"\w* \w shadow|strong="H6757"\w* \w of|strong="H3808"\w* \w death|strong="H6757"\w*, +\q2 \w without|strong="H3808"\w* \w any|strong="H3808"\w* \w order|strong="H5468"\w*, +\q2 \w where|strong="H3808"\w* \w the|strong="H3808"\w* \w light|strong="H3313"\w* \w is|strong="H3808"\w* \w as|strong="H3644"\w* midnight.’” +\c 11 +\p +\v 1 \w Then|strong="H6030"\w* \w Zophar|strong="H6691"\w*, \w the|strong="H6030"\w* \w Naamathite|strong="H5284"\w*, \w answered|strong="H6030"\w*, +\q1 +\v 2 “Shouldn’t \w the|strong="H1697"\w* \w multitude|strong="H7230"\w* \w of|strong="H1697"\w* \w words|strong="H1697"\w* \w be|strong="H3808"\w* \w answered|strong="H6030"\w*? +\q2 \w Should|strong="H8193"\w* \w a|strong="H3068"\w* \w man|strong="H6030"\w* full \w of|strong="H1697"\w* \w talk|strong="H1697"\w* \w be|strong="H3808"\w* \w justified|strong="H6663"\w*? +\q1 +\v 3 Should \w your|strong="H4962"\w* boastings \w make|strong="H2790"\w* \w men|strong="H4962"\w* hold \w their|strong="H4962"\w* \w peace|strong="H2790"\w*? +\q2 When you \w mock|strong="H3932"\w*, \w will|strong="H2790"\w* no man \w make|strong="H2790"\w* you \w ashamed|strong="H3637"\w*? +\q1 +\v 4 \w For|strong="H5869"\w* \w you|strong="H5869"\w* say, ‘\w My|strong="H1961"\w* \w doctrine|strong="H3948"\w* \w is|strong="H1961"\w* \w pure|strong="H2134"\w*. +\q2 \w I|strong="H5869"\w* \w am|strong="H1961"\w* \w clean|strong="H1249"\w* \w in|strong="H5869"\w* \w your|strong="H1961"\w* \w eyes|strong="H5869"\w*.’ +\q1 +\v 5 \w But|strong="H1696"\w* \w oh|strong="H4310"\w* \w that|strong="H5414"\w* \w God|strong="H5414"\w* \w would|strong="H4310"\w* \w speak|strong="H1696"\w*, +\q2 \w and|strong="H1696"\w* \w open|strong="H6605"\w* \w his|strong="H5414"\w* \w lips|strong="H8193"\w* \w against|strong="H5973"\w* \w you|strong="H5414"\w*, +\q1 +\v 6 \w that|strong="H3588"\w* \w he|strong="H3588"\w* would \w show|strong="H3045"\w* \w you|strong="H3588"\w* \w the|strong="H3588"\w* \w secrets|strong="H8587"\w* \w of|strong="H5771"\w* \w wisdom|strong="H2451"\w*! +\q2 \w For|strong="H3588"\w* true \w wisdom|strong="H2451"\w* \w has|strong="H3588"\w* \w two|strong="H3718"\w* \w sides|strong="H3718"\w*. +\q2 \w Know|strong="H3045"\w* \w therefore|strong="H3588"\w* \w that|strong="H3588"\w* \w God|strong="H2451"\w* exacts \w of|strong="H5771"\w* \w you|strong="H3588"\w* \w less|strong="H3588"\w* \w than|strong="H3588"\w* \w your|strong="H3045"\w* \w iniquity|strong="H5771"\w* deserves. +\b +\q1 +\v 7 “Can \w you|strong="H5704"\w* fathom \w the|strong="H5704"\w* mystery \w of|strong="H2714"\w* God? +\q2 \w Or|strong="H5704"\w* can \w you|strong="H5704"\w* probe \w the|strong="H5704"\w* \w limits|strong="H8503"\w* \w of|strong="H2714"\w* \w the|strong="H5704"\w* \w Almighty|strong="H7706"\w*? +\q1 +\v 8 \w They|strong="H4100"\w* \w are|strong="H4100"\w* \w high|strong="H1363"\w* \w as|strong="H1363"\w* \w heaven|strong="H8064"\w*. \w What|strong="H4100"\w* \w can|strong="H4100"\w* \w you|strong="H3045"\w* \w do|strong="H6466"\w*? +\q2 \w They|strong="H4100"\w* \w are|strong="H4100"\w* \w deeper|strong="H6013"\w* \w than|strong="H6013"\w* \w Sheol|strong="H7585"\w*.\f + \fr 11:8 \ft Sheol is the place of the dead.\f* \w What|strong="H4100"\w* \w can|strong="H4100"\w* \w you|strong="H3045"\w* \w know|strong="H3045"\w*? +\q1 +\v 9 \w Its|strong="H3220"\w* \w measure|strong="H4055"\w* \w is|strong="H4480"\w* longer \w than|strong="H4480"\w* \w the|strong="H4480"\w* earth, +\q2 \w and|strong="H3220"\w* \w broader|strong="H7342"\w* \w than|strong="H4480"\w* \w the|strong="H4480"\w* \w sea|strong="H3220"\w*. +\q1 +\v 10 \w If|strong="H2498"\w* \w he|strong="H7725"\w* \w passes|strong="H2498"\w* \w by|strong="H7725"\w*, \w or|strong="H4310"\w* confines, +\q2 \w or|strong="H4310"\w* convenes \w a|strong="H3068"\w* court, \w then|strong="H7725"\w* \w who|strong="H4310"\w* \w can|strong="H4310"\w* oppose \w him|strong="H7725"\w*? +\q1 +\v 11 \w For|strong="H3588"\w* \w he|strong="H1931"\w* \w knows|strong="H3045"\w* \w false|strong="H7723"\w* \w men|strong="H4962"\w*. +\q2 \w He|strong="H1931"\w* \w sees|strong="H7200"\w* iniquity \w also|strong="H3588"\w*, \w even|strong="H3588"\w* \w though|strong="H3588"\w* \w he|strong="H1931"\w* doesn’t \w consider|strong="H7200"\w* \w it|strong="H1931"\w*. +\q1 +\v 12 \w An|strong="H3205"\w* empty-headed man becomes \w wise|strong="H3823"\w* +\q2 when \w a|strong="H3068"\w* man \w is|strong="H6501"\w* \w born|strong="H3205"\w* as \w a|strong="H3068"\w* \w wild|strong="H6501"\w* \w donkey|strong="H6501"\w*’s \w colt|strong="H5895"\w*. +\b +\q1 +\v 13 “If \w you|strong="H3820"\w* \w set|strong="H3559"\w* \w your|strong="H3559"\w* \w heart|strong="H3820"\w* \w aright|strong="H3559"\w*, +\q2 \w stretch|strong="H6566"\w* \w out|strong="H6566"\w* \w your|strong="H3559"\w* \w hands|strong="H3709"\w* \w toward|strong="H3709"\w* \w him|strong="H3559"\w*. +\q1 +\v 14 If \w iniquity|strong="H5766"\w* \w is|strong="H3027"\w* \w in|strong="H7931"\w* \w your|strong="H3027"\w* \w hand|strong="H3027"\w*, \w put|strong="H7368"\w* \w it|strong="H7368"\w* \w far|strong="H7368"\w* \w away|strong="H7368"\w*. +\q2 Don’t let \w unrighteousness|strong="H5766"\w* \w dwell|strong="H7931"\w* \w in|strong="H7931"\w* \w your|strong="H3027"\w* tents. +\q1 +\v 15 \w Surely|strong="H3588"\w* \w then|strong="H1961"\w* \w you|strong="H3588"\w* \w will|strong="H1961"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H5375"\w* \w face|strong="H6440"\w* \w without|strong="H3808"\w* \w spot|strong="H3971"\w*. +\q2 \w Yes|strong="H3588"\w*, \w you|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w steadfast|strong="H3332"\w*, \w and|strong="H6440"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w fear|strong="H3372"\w*, +\q2 +\v 16 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H4325"\w* \w forget|strong="H7911"\w* \w your|strong="H3588"\w* \w misery|strong="H5999"\w*. +\q2 \w You|strong="H3588"\w* \w will|strong="H4325"\w* \w remember|strong="H2142"\w* \w it|strong="H3588"\w* like \w waters|strong="H4325"\w* \w that|strong="H3588"\w* \w have|strong="H3588"\w* \w passed|strong="H5674"\w* \w away|strong="H5674"\w*. +\q1 +\v 17 \w Life|strong="H2465"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w clearer|strong="H6965"\w* than \w the|strong="H6965"\w* \w noonday|strong="H6672"\w*. +\q2 Though \w there|strong="H1961"\w* \w is|strong="H1961"\w* darkness, \w it|strong="H1242"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w the|strong="H6965"\w* \w morning|strong="H1242"\w*. +\q1 +\v 18 \w You|strong="H3588"\w* \w will|strong="H3426"\w* \w be|strong="H3426"\w* secure, \w because|strong="H3588"\w* \w there|strong="H3426"\w* \w is|strong="H3426"\w* \w hope|strong="H8615"\w*. +\q2 \w Yes|strong="H3588"\w*, \w you|strong="H3588"\w* \w will|strong="H3426"\w* \w search|strong="H2658"\w*, \w and|strong="H7901"\w* \w will|strong="H3426"\w* \w take|strong="H7901"\w* \w your|strong="H3588"\w* \w rest|strong="H7901"\w* \w in|strong="H7901"\w* safety. +\q1 +\v 19 Also \w you|strong="H6440"\w* \w will|strong="H7227"\w* \w lie|strong="H7257"\w* \w down|strong="H7257"\w*, \w and|strong="H6440"\w* \w no|strong="H6440"\w* \w one|strong="H7227"\w* \w will|strong="H7227"\w* \w make|strong="H2729"\w* \w you|strong="H6440"\w* \w afraid|strong="H2729"\w*. +\q2 Yes, \w many|strong="H7227"\w* \w will|strong="H7227"\w* court \w your|strong="H6440"\w* \w favor|strong="H6440"\w*. +\q1 +\v 20 \w But|strong="H7563"\w* \w the|strong="H4480"\w* \w eyes|strong="H5869"\w* \w of|strong="H5869"\w* \w the|strong="H4480"\w* \w wicked|strong="H7563"\w* \w will|strong="H5869"\w* \w fail|strong="H3615"\w*. +\q2 \w They|strong="H5315"\w* \w will|strong="H5869"\w* \w have|strong="H5869"\w* \w no|strong="H4480"\w* \w way|strong="H4498"\w* \w to|strong="H5315"\w* flee. +\q2 \w Their|strong="H3615"\w* \w hope|strong="H8615"\w* \w will|strong="H5869"\w* \w be|strong="H5315"\w* \w the|strong="H4480"\w* giving \w up|strong="H4480"\w* \w of|strong="H5869"\w* \w the|strong="H4480"\w* \w spirit|strong="H5315"\w*.” +\c 12 +\p +\v 1 \w Then|strong="H6030"\w* Job \w answered|strong="H6030"\w*, +\q1 +\v 2 “No doubt, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H5971"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w*, +\q2 \w and|strong="H5971"\w* \w wisdom|strong="H2451"\w* \w will|strong="H5971"\w* \w die|strong="H4191"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*. +\q1 +\v 3 \w But|strong="H3808"\w* \w I|strong="H3808"\w* \w have|strong="H1571"\w* \w understanding|strong="H3824"\w* \w as|strong="H3644"\w* \w well|strong="H1571"\w* \w as|strong="H3644"\w* \w you|strong="H3808"\w*; +\q2 \w I|strong="H3808"\w* am \w not|strong="H3808"\w* \w inferior|strong="H5307"\w* \w to|strong="H3824"\w* \w you|strong="H3808"\w*. +\q2 \w Yes|strong="H1571"\w*, \w who|strong="H4310"\w* doesn’t know \w such|strong="H3644"\w* \w things|strong="H3644"\w* \w as|strong="H3644"\w* these? +\q1 +\v 4 \w I|strong="H7121"\w* \w am|strong="H1961"\w* \w like|strong="H1961"\w* \w one|strong="H6662"\w* \w who|strong="H6662"\w* \w is|strong="H6662"\w* \w a|strong="H3068"\w* \w joke|strong="H7814"\w* \w to|strong="H1961"\w* \w his|strong="H7121"\w* \w neighbor|strong="H7453"\w*, +\q2 \w I|strong="H7121"\w*, \w who|strong="H6662"\w* \w called|strong="H7121"\w* \w on|strong="H1961"\w* God, \w and|strong="H6030"\w* \w he|strong="H7121"\w* \w answered|strong="H6030"\w*. +\q2 \w The|strong="H7121"\w* \w just|strong="H6662"\w*, \w the|strong="H7121"\w* \w blameless|strong="H8549"\w* \w man|strong="H6662"\w* \w is|strong="H6662"\w* \w a|strong="H3068"\w* \w joke|strong="H7814"\w*. +\q1 +\v 5 \w In|strong="H3559"\w* \w the|strong="H3559"\w* \w thought|strong="H6248"\w* \w of|strong="H7272"\w* \w him|strong="H3559"\w* \w who|strong="H7600"\w* is at \w ease|strong="H7600"\w* there is contempt \w for|strong="H3559"\w* misfortune. +\q2 \w It|strong="H3559"\w* is \w ready|strong="H3559"\w* \w for|strong="H3559"\w* \w them|strong="H3559"\w* whose \w foot|strong="H7272"\w* slips. +\q1 +\v 6 \w The|strong="H3027"\w* tents \w of|strong="H3027"\w* \w robbers|strong="H7703"\w* \w prosper|strong="H7951"\w*. +\q2 Those \w who|strong="H7951"\w* \w provoke|strong="H7264"\w* \w God|strong="H3027"\w* \w are|strong="H3027"\w* secure, +\q2 \w who|strong="H7951"\w* carry \w their|strong="H7703"\w* \w god|strong="H3027"\w* \w in|strong="H3027"\w* \w their|strong="H7703"\w* \w hands|strong="H3027"\w*. +\b +\q1 +\v 7 “But \w ask|strong="H7592"\w* \w the|strong="H5046"\w* animals \w now|strong="H4994"\w*, \w and|strong="H8064"\w* they \w will|strong="H8064"\w* \w teach|strong="H3384"\w* \w you|strong="H5046"\w*; +\q2 \w the|strong="H5046"\w* \w birds|strong="H5775"\w* \w of|strong="H7592"\w* \w the|strong="H5046"\w* \w sky|strong="H8064"\w*, \w and|strong="H8064"\w* they \w will|strong="H8064"\w* \w tell|strong="H5046"\w* \w you|strong="H5046"\w*. +\q1 +\v 8 \w Or|strong="H5608"\w* \w speak|strong="H7878"\w* \w to|strong="H3220"\w* \w the|strong="H5608"\w* earth, \w and|strong="H3220"\w* it \w will|strong="H3220"\w* \w teach|strong="H3384"\w* \w you|strong="H3384"\w*. +\q2 \w The|strong="H5608"\w* \w fish|strong="H1709"\w* \w of|strong="H3220"\w* \w the|strong="H5608"\w* \w sea|strong="H3220"\w* \w will|strong="H3220"\w* \w declare|strong="H5608"\w* \w to|strong="H3220"\w* \w you|strong="H3384"\w*. +\q1 +\v 9 \w Who|strong="H4310"\w* doesn’t \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w these|strong="H2063"\w*, +\q2 \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w* \w this|strong="H2063"\w*, +\q1 +\v 10 \w in|strong="H5315"\w* \w whose|strong="H3605"\w* \w hand|strong="H3027"\w* \w is|strong="H5315"\w* \w the|strong="H3605"\w* \w life|strong="H5315"\w* \w of|strong="H3027"\w* \w every|strong="H3605"\w* \w living|strong="H2416"\w* \w thing|strong="H2416"\w*, +\q2 \w and|strong="H3027"\w* \w the|strong="H3605"\w* \w breath|strong="H7307"\w* \w of|strong="H3027"\w* \w all|strong="H3605"\w* \w mankind|strong="H1320"\w*? +\q1 +\v 11 Doesn’t \w the|strong="H3808"\w* ear try \w words|strong="H4405"\w*, +\q2 \w even|strong="H3808"\w* \w as|strong="H2441"\w* \w the|strong="H3808"\w* \w palate|strong="H2441"\w* \w tastes|strong="H2938"\w* \w its|strong="H4405"\w* food? +\q1 +\v 12 \w With|strong="H3117"\w* \w aged|strong="H3453"\w* \w men|strong="H3453"\w* \w is|strong="H3117"\w* \w wisdom|strong="H2451"\w*, +\q2 \w in|strong="H3117"\w* \w length|strong="H3117"\w* \w of|strong="H3117"\w* \w days|strong="H3117"\w* \w understanding|strong="H8394"\w*. +\b +\q1 +\v 13 “\w With|strong="H5973"\w* \w God|strong="H2451"\w* \w is|strong="H2451"\w* \w wisdom|strong="H2451"\w* \w and|strong="H2451"\w* \w might|strong="H1369"\w*. +\q2 \w He|strong="H8394"\w* \w has|strong="H2451"\w* \w counsel|strong="H6098"\w* \w and|strong="H2451"\w* \w understanding|strong="H8394"\w*. +\q1 +\v 14 \w Behold|strong="H2005"\w*, \w he|strong="H3808"\w* breaks \w down|strong="H2040"\w*, \w and|strong="H1129"\w* \w it|strong="H5921"\w* \w can|strong="H3808"\w*’t \w be|strong="H3808"\w* \w built|strong="H1129"\w* \w again|strong="H1129"\w*. +\q2 \w He|strong="H3808"\w* \w imprisons|strong="H5462"\w* \w a|strong="H3068"\w* man, \w and|strong="H1129"\w* there \w can|strong="H3808"\w* \w be|strong="H3808"\w* \w no|strong="H3808"\w* \w release|strong="H6605"\w*. +\q1 +\v 15 \w Behold|strong="H2005"\w*, \w he|strong="H7971"\w* withholds \w the|strong="H7971"\w* \w waters|strong="H4325"\w*, \w and|strong="H7971"\w* they \w dry|strong="H3001"\w* \w up|strong="H3001"\w*. +\q2 \w Again|strong="H7971"\w*, \w he|strong="H7971"\w* \w sends|strong="H7971"\w* \w them|strong="H7971"\w* \w out|strong="H7971"\w*, \w and|strong="H7971"\w* they \w overturn|strong="H2015"\w* \w the|strong="H7971"\w* earth. +\q1 +\v 16 \w With|strong="H5973"\w* \w him|strong="H5973"\w* \w is|strong="H8454"\w* \w strength|strong="H5797"\w* \w and|strong="H5797"\w* \w wisdom|strong="H8454"\w*. +\q2 \w The|strong="H5973"\w* \w deceived|strong="H7683"\w* \w and|strong="H5797"\w* \w the|strong="H5973"\w* \w deceiver|strong="H7686"\w* \w are|strong="H5973"\w* \w his|strong="H5973"\w*. +\q1 +\v 17 \w He|strong="H8199"\w* leads \w counselors|strong="H3289"\w* \w away|strong="H3212"\w* \w stripped|strong="H7758"\w*. +\q2 \w He|strong="H8199"\w* \w makes|strong="H1984"\w* \w judges|strong="H8199"\w* \w fools|strong="H1984"\w*. +\q1 +\v 18 \w He|strong="H4428"\w* \w loosens|strong="H6605"\w* \w the|strong="H6605"\w* \w bond|strong="H4148"\w* \w of|strong="H4428"\w* \w kings|strong="H4428"\w*. +\q2 \w He|strong="H4428"\w* binds their \w waist|strong="H4975"\w* \w with|strong="H4428"\w* \w a|strong="H3068"\w* belt. +\q1 +\v 19 \w He|strong="H3212"\w* leads \w priests|strong="H3548"\w* \w away|strong="H3212"\w* \w stripped|strong="H7758"\w*, +\q2 \w and|strong="H3212"\w* \w overthrows|strong="H5557"\w* \w the|strong="H3548"\w* mighty. +\q1 +\v 20 \w He|strong="H2205"\w* removes \w the|strong="H3947"\w* \w speech|strong="H8193"\w* \w of|strong="H2205"\w* those \w who|strong="H5493"\w* \w are|strong="H8193"\w* trusted, +\q2 \w and|strong="H2205"\w* \w takes|strong="H3947"\w* \w away|strong="H5493"\w* \w the|strong="H3947"\w* \w understanding|strong="H2940"\w* \w of|strong="H2205"\w* \w the|strong="H3947"\w* \w elders|strong="H2205"\w*. +\q1 +\v 21 \w He|strong="H5921"\w* \w pours|strong="H8210"\w* contempt \w on|strong="H5921"\w* \w princes|strong="H5081"\w*, +\q2 \w and|strong="H5921"\w* \w loosens|strong="H7503"\w* \w the|strong="H5921"\w* \w belt|strong="H4206"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* strong. +\q1 +\v 22 \w He|strong="H4480"\w* \w uncovers|strong="H1540"\w* \w deep|strong="H6013"\w* \w things|strong="H1540"\w* \w out|strong="H3318"\w* \w of|strong="H4480"\w* \w darkness|strong="H2822"\w*, +\q2 \w and|strong="H3318"\w* \w brings|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* light \w the|strong="H4480"\w* \w shadow|strong="H6757"\w* \w of|strong="H4480"\w* \w death|strong="H6757"\w*. +\q1 +\v 23 He increases \w the|strong="H5148"\w* \w nations|strong="H1471"\w*, \w and|strong="H1471"\w* he destroys \w them|strong="H5148"\w*. +\q2 He \w enlarges|strong="H7849"\w* \w the|strong="H5148"\w* \w nations|strong="H1471"\w*, \w and|strong="H1471"\w* he \w leads|strong="H5148"\w* \w them|strong="H5148"\w* captive. +\q1 +\v 24 \w He|strong="H3808"\w* \w takes|strong="H5493"\w* \w away|strong="H5493"\w* \w understanding|strong="H3820"\w* \w from|strong="H5493"\w* \w the|strong="H5493"\w* \w chiefs|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H5493"\w* \w people|strong="H5971"\w* \w of|strong="H7218"\w* \w the|strong="H5493"\w* earth, +\q2 \w and|strong="H5971"\w* causes \w them|strong="H8582"\w* \w to|strong="H3820"\w* \w wander|strong="H8582"\w* \w in|strong="H5493"\w* \w a|strong="H3068"\w* \w wilderness|strong="H8414"\w* \w where|strong="H3808"\w* there \w is|strong="H3820"\w* \w no|strong="H3808"\w* \w way|strong="H1870"\w*. +\q1 +\v 25 \w They|strong="H3808"\w* \w grope|strong="H4959"\w* \w in|strong="H3808"\w* \w the|strong="H3808"\w* \w dark|strong="H2822"\w* \w without|strong="H3808"\w* light. +\q2 \w He|strong="H3808"\w* makes \w them|strong="H8582"\w* \w stagger|strong="H8582"\w* \w like|strong="H3808"\w* \w a|strong="H3068"\w* \w drunken|strong="H7910"\w* \w man|strong="H7910"\w*. +\b +\c 13 +\b +\q1 +\v 1 “\w Behold|strong="H2005"\w*, \w my|strong="H8085"\w* \w eye|strong="H5869"\w* \w has|strong="H5869"\w* \w seen|strong="H7200"\w* \w all|strong="H3605"\w* \w this|strong="H7200"\w*. +\q2 \w My|strong="H8085"\w* \w ear|strong="H8085"\w* \w has|strong="H5869"\w* \w heard|strong="H8085"\w* \w and|strong="H5869"\w* \w understood|strong="H8085"\w* \w it|strong="H7200"\w*. +\q1 +\v 2 \w What|strong="H3045"\w* \w you|strong="H3045"\w* \w know|strong="H3045"\w*, \w I|strong="H3045"\w* \w know|strong="H3045"\w* \w also|strong="H1571"\w*. +\q2 \w I|strong="H3045"\w* am \w not|strong="H3808"\w* \w inferior|strong="H5307"\w* \w to|strong="H3045"\w* \w you|strong="H3045"\w*. +\b +\q1 +\v 3 “\w Surely|strong="H3198"\w* I \w would|strong="H7706"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H1696"\w* \w Almighty|strong="H7706"\w*. +\q2 I \w desire|strong="H2654"\w* \w to|strong="H1696"\w* \w reason|strong="H3198"\w* \w with|strong="H1696"\w* God. +\q1 +\v 4 \w But|strong="H3605"\w* \w you|strong="H3605"\w* \w are|strong="H8267"\w* \w forgers|strong="H2950"\w* \w of|strong="H3605"\w* \w lies|strong="H8267"\w*. +\q2 \w You|strong="H3605"\w* \w are|strong="H8267"\w* \w all|strong="H3605"\w* \w physicians|strong="H7495"\w* \w of|strong="H3605"\w* \w no|strong="H3605"\w* value. +\q1 +\v 5 \w Oh|strong="H4310"\w* \w that|strong="H5414"\w* \w you|strong="H5414"\w* \w would|strong="H4310"\w* \w be|strong="H1961"\w* \w completely|strong="H2790"\w* \w silent|strong="H2790"\w*! +\q2 \w Then|strong="H1961"\w* \w you|strong="H5414"\w* \w would|strong="H4310"\w* \w be|strong="H1961"\w* \w wise|strong="H2451"\w*. +\q1 +\v 6 \w Hear|strong="H8085"\w* \w now|strong="H4994"\w* \w my|strong="H8085"\w* \w reasoning|strong="H8433"\w*. +\q2 \w Listen|strong="H8085"\w* \w to|strong="H8085"\w* \w the|strong="H8085"\w* \w pleadings|strong="H7379"\w* \w of|strong="H8193"\w* \w my|strong="H8085"\w* \w lips|strong="H8193"\w*. +\q1 +\v 7 Will \w you|strong="H1696"\w* \w speak|strong="H1696"\w* \w unrighteously|strong="H5766"\w* \w for|strong="H5766"\w* God, +\q2 \w and|strong="H1696"\w* \w talk|strong="H1696"\w* \w deceitfully|strong="H7423"\w* \w for|strong="H5766"\w* \w him|strong="H1696"\w*? +\q1 +\v 8 \w Will|strong="H6440"\w* \w you|strong="H6440"\w* \w show|strong="H5375"\w* \w partiality|strong="H5375"\w* \w to|strong="H6440"\w* \w him|strong="H6440"\w*? +\q2 \w Will|strong="H6440"\w* \w you|strong="H6440"\w* \w contend|strong="H7378"\w* \w for|strong="H6440"\w* God? +\q1 +\v 9 \w Is|strong="H2896"\w* \w it|strong="H3588"\w* \w good|strong="H2896"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w should|strong="H3588"\w* \w search|strong="H2713"\w* \w you|strong="H3588"\w* \w out|strong="H2713"\w*? +\q2 \w Or|strong="H2896"\w* \w as|strong="H3588"\w* \w one|strong="H2896"\w* \w deceives|strong="H2048"\w* \w a|strong="H3068"\w* \w man|strong="H2896"\w*, \w will|strong="H3588"\w* \w you|strong="H3588"\w* \w deceive|strong="H2048"\w* \w him|strong="H2896"\w*? +\q1 +\v 10 \w He|strong="H6440"\w* \w will|strong="H6440"\w* \w surely|strong="H3198"\w* \w reprove|strong="H3198"\w* \w you|strong="H6440"\w* +\q2 if \w you|strong="H6440"\w* \w secretly|strong="H5643"\w* \w show|strong="H5375"\w* \w partiality|strong="H5375"\w*. +\q1 +\v 11 Won’t \w his|strong="H5921"\w* \w majesty|strong="H7613"\w* make \w you|strong="H5921"\w* \w afraid|strong="H1204"\w* +\q2 \w and|strong="H5307"\w* \w his|strong="H5921"\w* \w dread|strong="H6343"\w* \w fall|strong="H5307"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*? +\q1 +\v 12 Your \w memorable|strong="H2146"\w* \w sayings|strong="H2146"\w* \w are|strong="H1354"\w* \w proverbs|strong="H4911"\w* \w of|strong="H2563"\w* ashes. +\q2 Your \w defenses|strong="H1354"\w* \w are|strong="H1354"\w* \w defenses|strong="H1354"\w* \w of|strong="H2563"\w* \w clay|strong="H2563"\w*. +\b +\q1 +\v 13 “\w Be|strong="H4480"\w* \w silent|strong="H2790"\w*! +\q2 \w Leave|strong="H4480"\w* \w me|strong="H5921"\w* \w alone|strong="H4480"\w*, \w that|strong="H4480"\w* \w I|strong="H5921"\w* \w may|strong="H4480"\w* \w speak|strong="H1696"\w*. +\q2 Let \w come|strong="H5674"\w* \w on|strong="H5921"\w* \w me|strong="H5921"\w* \w what|strong="H4100"\w* \w will|strong="H4100"\w*. +\q1 +\v 14 \w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w I|strong="H5921"\w* \w take|strong="H5375"\w* \w my|strong="H7760"\w* \w flesh|strong="H1320"\w* \w in|strong="H5921"\w* \w my|strong="H7760"\w* \w teeth|strong="H8127"\w*, +\q2 \w and|strong="H5315"\w* \w put|strong="H7760"\w* \w my|strong="H7760"\w* \w life|strong="H5315"\w* \w in|strong="H5921"\w* \w my|strong="H7760"\w* \w hand|strong="H3709"\w*? +\q1 +\v 15 \w Behold|strong="H2005"\w*, \w he|strong="H3808"\w* \w will|strong="H3808"\w* kill \w me|strong="H6440"\w*. +\q2 \w I|strong="H2005"\w* \w have|strong="H3176"\w* \w no|strong="H3808"\w* \w hope|strong="H3176"\w*. +\q2 Nevertheless, \w I|strong="H2005"\w* \w will|strong="H3808"\w* \w maintain|strong="H3198"\w* \w my|strong="H6440"\w* \w ways|strong="H1870"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\q1 +\v 16 \w This|strong="H1931"\w* \w also|strong="H1571"\w* \w will|strong="H1571"\w* \w be|strong="H3808"\w* \w my|strong="H3588"\w* \w salvation|strong="H3444"\w*, +\q2 \w that|strong="H3588"\w* \w a|strong="H3068"\w* \w godless|strong="H2611"\w* \w man|strong="H2611"\w* \w will|strong="H1571"\w* \w not|strong="H3808"\w* come \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\q1 +\v 17 \w Listen|strong="H8085"\w* \w carefully|strong="H8085"\w* \w to|strong="H8085"\w* \w my|strong="H8085"\w* \w speech|strong="H4405"\w*. +\q2 Let \w my|strong="H8085"\w* declaration be \w in|strong="H8085"\w* \w your|strong="H8085"\w* ears. +\q1 +\v 18 \w See|strong="H2009"\w* \w now|strong="H4994"\w*, \w I|strong="H3588"\w* \w have|strong="H3045"\w* \w set|strong="H6186"\w* \w my|strong="H3045"\w* \w cause|strong="H4941"\w* \w in|strong="H3045"\w* \w order|strong="H6186"\w*. +\q2 \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* am \w righteous|strong="H6663"\w*. +\q1 +\v 19 \w Who|strong="H4310"\w* \w is|strong="H1931"\w* \w he|strong="H1931"\w* \w who|strong="H4310"\w* \w will|strong="H4310"\w* \w contend|strong="H7378"\w* \w with|strong="H7378"\w* \w me|strong="H5978"\w*? +\q2 \w For|strong="H3588"\w* \w then|strong="H6258"\w* \w I|strong="H3588"\w* \w would|strong="H4310"\w* hold \w my|strong="H7378"\w* \w peace|strong="H2790"\w* \w and|strong="H1478"\w* give up \w the|strong="H3588"\w* spirit. +\b +\q1 +\v 20 “Only don’t \w do|strong="H6213"\w* \w two|strong="H8147"\w* \w things|strong="H8147"\w* \w to|strong="H6213"\w* \w me|strong="H6440"\w*, +\q2 \w then|strong="H6213"\w* \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w hide|strong="H5641"\w* myself \w from|strong="H6440"\w* \w your|strong="H6440"\w* \w face|strong="H6440"\w*: +\q1 +\v 21 \w withdraw|strong="H7368"\w* \w your|strong="H5921"\w* \w hand|strong="H3709"\w* \w far|strong="H7368"\w* \w from|strong="H5921"\w* \w me|strong="H5921"\w*, +\q2 \w and|strong="H3709"\w* don’t let \w your|strong="H5921"\w* terror make \w me|strong="H5921"\w* \w afraid|strong="H1204"\w*. +\q1 +\v 22 \w Then|strong="H6030"\w* \w call|strong="H7121"\w*, \w and|strong="H6030"\w* \w I|strong="H7121"\w* \w will|strong="H7725"\w* \w answer|strong="H6030"\w*, +\q2 \w or|strong="H6030"\w* \w let|strong="H7725"\w* \w me|strong="H7725"\w* \w speak|strong="H1696"\w*, \w and|strong="H6030"\w* \w you|strong="H7725"\w* \w answer|strong="H6030"\w* \w me|strong="H7725"\w*. +\q1 +\v 23 \w How|strong="H4100"\w* \w many|strong="H4100"\w* \w are|strong="H4100"\w* \w my|strong="H3045"\w* \w iniquities|strong="H5771"\w* \w and|strong="H3045"\w* \w sins|strong="H2403"\w*? +\q2 \w Make|strong="H3045"\w* \w me|strong="H3045"\w* \w know|strong="H3045"\w* \w my|strong="H3045"\w* disobedience \w and|strong="H3045"\w* \w my|strong="H3045"\w* \w sin|strong="H2403"\w*. +\q1 +\v 24 \w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H6440"\w* \w hide|strong="H5641"\w* \w your|strong="H6440"\w* \w face|strong="H6440"\w*, +\q2 \w and|strong="H6440"\w* \w consider|strong="H2803"\w* \w me|strong="H6440"\w* \w your|strong="H6440"\w* enemy? +\q1 +\v 25 \w Will|strong="H5929"\w* \w you|strong="H7291"\w* harass \w a|strong="H3068"\w* \w driven|strong="H5086"\w* \w leaf|strong="H5929"\w*? +\q2 \w Will|strong="H5929"\w* \w you|strong="H7291"\w* \w pursue|strong="H7291"\w* \w the|strong="H7291"\w* \w dry|strong="H3002"\w* \w stubble|strong="H7179"\w*? +\q1 +\v 26 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w write|strong="H3789"\w* \w bitter|strong="H4846"\w* \w things|strong="H4846"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*, +\q2 \w and|strong="H5771"\w* \w make|strong="H3588"\w* \w me|strong="H5921"\w* \w inherit|strong="H3423"\w* \w the|strong="H5921"\w* \w iniquities|strong="H5771"\w* \w of|strong="H5921"\w* \w my|strong="H5921"\w* \w youth|strong="H5271"\w*. +\q1 +\v 27 \w You|strong="H3605"\w* also \w put|strong="H7760"\w* \w my|strong="H8104"\w* \w feet|strong="H7272"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w stocks|strong="H5465"\w*, +\q2 \w and|strong="H8104"\w* \w mark|strong="H8104"\w* \w all|strong="H3605"\w* \w my|strong="H8104"\w* paths. +\q2 \w You|strong="H3605"\w* \w set|strong="H7760"\w* \w a|strong="H3068"\w* bound \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w soles|strong="H8328"\w* \w of|strong="H5921"\w* \w my|strong="H8104"\w* \w feet|strong="H7272"\w*, +\q1 +\v 28 \w though|strong="H1931"\w* I am \w decaying|strong="H1086"\w* \w like|strong="H6211"\w* \w a|strong="H3068"\w* \w rotten|strong="H7538"\w* \w thing|strong="H7538"\w*, +\q2 \w like|strong="H6211"\w* \w a|strong="H3068"\w* garment \w that|strong="H1931"\w* \w is|strong="H1931"\w* \w moth-eaten|strong="H6211"\w*. +\b +\c 14 +\b +\q1 +\v 1 “\w Man|strong="H7116"\w*, \w who|strong="H3205"\w* \w is|strong="H3117"\w* \w born|strong="H3205"\w* \w of|strong="H3117"\w* \w a|strong="H3068"\w* \w woman|strong="H3205"\w*, +\q2 \w is|strong="H3117"\w* \w of|strong="H3117"\w* \w few|strong="H7116"\w* \w days|strong="H3117"\w*, \w and|strong="H3117"\w* \w full|strong="H7646"\w* \w of|strong="H3117"\w* \w trouble|strong="H7267"\w*. +\q1 +\v 2 \w He|strong="H3808"\w* \w grows|strong="H3318"\w* \w up|strong="H5975"\w* \w like|strong="H3318"\w* \w a|strong="H3068"\w* \w flower|strong="H6731"\w*, \w and|strong="H5975"\w* \w is|strong="H5975"\w* cut \w down|strong="H5243"\w*. +\q2 \w He|strong="H3808"\w* \w also|strong="H3318"\w* \w flees|strong="H1272"\w* \w like|strong="H3318"\w* \w a|strong="H3068"\w* \w shadow|strong="H6738"\w*, \w and|strong="H5975"\w* doesn’t \w continue|strong="H5975"\w*. +\q1 +\v 3 \w Do|strong="H5869"\w* \w you|strong="H5921"\w* \w open|strong="H6491"\w* \w your|strong="H5921"\w* \w eyes|strong="H5869"\w* \w on|strong="H5921"\w* \w such|strong="H2088"\w* \w a|strong="H3068"\w* \w one|strong="H2088"\w*, +\q2 \w and|strong="H4941"\w* bring \w me|strong="H5921"\w* \w into|strong="H5921"\w* \w judgment|strong="H4941"\w* \w with|strong="H5973"\w* \w you|strong="H5921"\w*? +\q1 +\v 4 \w Who|strong="H4310"\w* \w can|strong="H4310"\w* \w bring|strong="H5414"\w* \w a|strong="H3068"\w* \w clean|strong="H2889"\w* \w thing|strong="H2931"\w* \w out|strong="H5414"\w* \w of|strong="H3808"\w* \w an|strong="H5414"\w* \w unclean|strong="H2931"\w*? +\q2 \w Not|strong="H3808"\w* \w one|strong="H3808"\w*. +\q2 +\v 5 Seeing \w his|strong="H6213"\w* \w days|strong="H3117"\w* \w are|strong="H3117"\w* \w determined|strong="H2782"\w*, +\q2 \w the|strong="H6213"\w* \w number|strong="H4557"\w* \w of|strong="H3117"\w* \w his|strong="H6213"\w* \w months|strong="H2320"\w* \w is|strong="H3117"\w* \w with|strong="H6213"\w* \w you|strong="H3117"\w*, +\q2 \w and|strong="H3117"\w* \w you|strong="H3117"\w* \w have|strong="H3117"\w* \w appointed|strong="H6213"\w* \w his|strong="H6213"\w* \w bounds|strong="H2706"\w* \w that|strong="H3117"\w* \w he|strong="H3117"\w* \w can|strong="H6213"\w*’t \w pass|strong="H5674"\w*. +\q1 +\v 6 \w Look|strong="H8159"\w* \w away|strong="H8159"\w* \w from|strong="H5921"\w* \w him|strong="H5921"\w*, \w that|strong="H3117"\w* \w he|strong="H3117"\w* \w may|strong="H3117"\w* \w rest|strong="H2308"\w*, +\q2 \w until|strong="H5704"\w* \w he|strong="H3117"\w* accomplishes, \w as|strong="H5704"\w* \w a|strong="H3068"\w* \w hireling|strong="H7916"\w*, \w his|strong="H5921"\w* \w day|strong="H3117"\w*. +\b +\q1 +\v 7 “\w For|strong="H3588"\w* \w there|strong="H3426"\w* \w is|strong="H3426"\w* \w hope|strong="H8615"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w tree|strong="H6086"\w* \w if|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H3426"\w* \w cut|strong="H3772"\w* \w down|strong="H3772"\w*, +\q2 \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w will|strong="H3808"\w* \w sprout|strong="H2498"\w* \w again|strong="H5750"\w*, +\q2 \w that|strong="H3588"\w* \w the|strong="H3588"\w* tender \w branch|strong="H6086"\w* \w of|strong="H6086"\w* \w it|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w cease|strong="H2308"\w*. +\q1 +\v 8 Though its \w root|strong="H8328"\w* grows \w old|strong="H2204"\w* \w in|strong="H4191"\w* \w the|strong="H4191"\w* \w earth|strong="H6083"\w*, +\q2 \w and|strong="H4191"\w* its \w stock|strong="H1503"\w* \w dies|strong="H4191"\w* \w in|strong="H4191"\w* \w the|strong="H4191"\w* \w ground|strong="H6083"\w*, +\q1 +\v 9 yet \w through|strong="H6213"\w* \w the|strong="H6213"\w* \w scent|strong="H7381"\w* \w of|strong="H4325"\w* \w water|strong="H4325"\w* \w it|strong="H6213"\w* \w will|strong="H4325"\w* \w bud|strong="H6524"\w*, +\q2 \w and|strong="H6213"\w* \w sprout|strong="H6524"\w* \w boughs|strong="H7105"\w* \w like|strong="H3644"\w* \w a|strong="H3068"\w* \w plant|strong="H5194"\w*. +\q1 +\v 10 \w But|strong="H4191"\w* \w man|strong="H1397"\w* \w dies|strong="H4191"\w*, \w and|strong="H4191"\w* \w is|strong="H1397"\w* laid low. +\q2 Yes, \w man|strong="H1397"\w* gives up \w the|strong="H4191"\w* spirit, \w and|strong="H4191"\w* where \w is|strong="H1397"\w* he? +\q1 +\v 11 \w As|strong="H4325"\w* \w the|strong="H4480"\w* \w waters|strong="H4325"\w* fail \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w sea|strong="H3220"\w*, +\q2 \w and|strong="H4325"\w* \w the|strong="H4480"\w* \w river|strong="H5104"\w* wastes \w and|strong="H4325"\w* \w dries|strong="H3001"\w* \w up|strong="H3001"\w*, +\q1 +\v 12 \w so|strong="H3808"\w* man \w lies|strong="H7901"\w* \w down|strong="H7901"\w* \w and|strong="H6965"\w* doesn’t \w rise|strong="H6965"\w*. +\q2 \w Until|strong="H5704"\w* \w the|strong="H5704"\w* \w heavens|strong="H8064"\w* \w are|strong="H8064"\w* \w no|strong="H3808"\w* \w more|strong="H3808"\w*, \w they|strong="H3808"\w* \w will|strong="H8064"\w* \w not|strong="H3808"\w* \w awake|strong="H5782"\w*, +\q2 \w nor|strong="H3808"\w* \w be|strong="H3808"\w* \w roused|strong="H5782"\w* \w out|strong="H5704"\w* \w of|strong="H8064"\w* \w their|strong="H3808"\w* \w sleep|strong="H8142"\w*. +\b +\q1 +\v 13 “\w Oh|strong="H4310"\w* \w that|strong="H5414"\w* \w you|strong="H5414"\w* \w would|strong="H4310"\w* \w hide|strong="H5641"\w* \w me|strong="H5414"\w* \w in|strong="H7725"\w* \w Sheol|strong="H7585"\w*,\f + \fr 14:13 \ft Sheol is the place of the dead.\f* +\q2 \w that|strong="H5414"\w* \w you|strong="H5414"\w* \w would|strong="H4310"\w* \w keep|strong="H6845"\w* \w me|strong="H5414"\w* \w secret|strong="H5641"\w* \w until|strong="H5704"\w* \w your|strong="H5414"\w* wrath \w is|strong="H4310"\w* \w past|strong="H7725"\w*, +\q2 \w that|strong="H5414"\w* \w you|strong="H5414"\w* \w would|strong="H4310"\w* \w appoint|strong="H5414"\w* \w me|strong="H5414"\w* \w a|strong="H3068"\w* \w set|strong="H5414"\w* \w time|strong="H5704"\w* \w and|strong="H7725"\w* \w remember|strong="H2142"\w* \w me|strong="H5414"\w*! +\q1 +\v 14 If \w a|strong="H3068"\w* \w man|strong="H1397"\w* \w dies|strong="H4191"\w*, \w will|strong="H6635"\w* \w he|strong="H3117"\w* \w live|strong="H2421"\w* again? +\q2 \w I|strong="H3117"\w* \w would|strong="H2421"\w* \w wait|strong="H3176"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w my|strong="H3605"\w* \w warfare|strong="H6635"\w*, +\q2 \w until|strong="H5704"\w* \w my|strong="H3605"\w* release \w should|strong="H3117"\w* \w come|strong="H2421"\w*. +\q1 +\v 15 \w You|strong="H3027"\w* \w would|strong="H4639"\w* \w call|strong="H7121"\w*, \w and|strong="H6030"\w* \w I|strong="H3027"\w* \w would|strong="H4639"\w* \w answer|strong="H6030"\w* \w you|strong="H3027"\w*. +\q2 \w You|strong="H3027"\w* \w would|strong="H4639"\w* \w have|strong="H3027"\w* \w a|strong="H3068"\w* \w desire|strong="H3700"\w* \w for|strong="H7121"\w* \w the|strong="H7121"\w* \w work|strong="H4639"\w* \w of|strong="H3027"\w* \w your|strong="H3027"\w* \w hands|strong="H3027"\w*. +\q1 +\v 16 \w But|strong="H3588"\w* \w now|strong="H6258"\w* \w you|strong="H3588"\w* \w count|strong="H5608"\w* \w my|strong="H8104"\w* \w steps|strong="H6806"\w*. +\q2 Don’t \w you|strong="H3588"\w* \w watch|strong="H8104"\w* \w over|strong="H5921"\w* \w my|strong="H8104"\w* \w sin|strong="H2403"\w*? +\q1 +\v 17 \w My|strong="H5921"\w* disobedience \w is|strong="H5771"\w* \w sealed|strong="H2856"\w* \w up|strong="H2856"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w bag|strong="H6872"\w*. +\q2 \w You|strong="H5921"\w* fasten \w up|strong="H2856"\w* \w my|strong="H5921"\w* \w iniquity|strong="H5771"\w*. +\b +\q1 +\v 18 “But \w the|strong="H4725"\w* \w mountain|strong="H2022"\w* \w falling|strong="H5307"\w* comes \w to|strong="H4725"\w* nothing. +\q2 \w The|strong="H4725"\w* \w rock|strong="H6697"\w* \w is|strong="H4725"\w* \w removed|strong="H6275"\w* \w out|strong="H5307"\w* \w of|strong="H2022"\w* its \w place|strong="H4725"\w*. +\q1 +\v 19 \w The|strong="H7857"\w* \w waters|strong="H4325"\w* \w wear|strong="H7833"\w* \w the|strong="H7857"\w* stones. +\q2 \w The|strong="H7857"\w* \w torrents|strong="H5599"\w* \w of|strong="H4325"\w* \w it|strong="H4325"\w* \w wash|strong="H7857"\w* \w away|strong="H7857"\w* \w the|strong="H7857"\w* \w dust|strong="H6083"\w* \w of|strong="H4325"\w* \w the|strong="H7857"\w* \w earth|strong="H6083"\w*. +\q2 So \w you|strong="H4325"\w* destroy \w the|strong="H7857"\w* \w hope|strong="H8615"\w* \w of|strong="H4325"\w* man. +\q1 +\v 20 \w You|strong="H6440"\w* \w forever|strong="H5331"\w* \w prevail|strong="H8630"\w* \w against|strong="H6440"\w* \w him|strong="H6440"\w*, \w and|strong="H1980"\w* \w he|strong="H1980"\w* \w departs|strong="H1980"\w*. +\q2 \w You|strong="H6440"\w* \w change|strong="H8138"\w* \w his|strong="H7971"\w* \w face|strong="H6440"\w*, \w and|strong="H1980"\w* \w send|strong="H7971"\w* \w him|strong="H6440"\w* \w away|strong="H7971"\w*. +\q1 +\v 21 \w His|strong="H3045"\w* \w sons|strong="H1121"\w* \w come|strong="H3045"\w* \w to|strong="H1121"\w* \w honor|strong="H3513"\w*, \w and|strong="H1121"\w* \w he|strong="H3808"\w* doesn’t \w know|strong="H3045"\w* \w it|strong="H3045"\w*. +\q2 \w They|strong="H3808"\w* \w are|strong="H1121"\w* brought \w low|strong="H1121"\w*, \w but|strong="H3808"\w* \w he|strong="H3808"\w* doesn’t \w perceive|strong="H3045"\w* \w it|strong="H3045"\w* \w of|strong="H1121"\w* \w them|strong="H1121"\w*. +\q1 +\v 22 \w But|strong="H5921"\w* \w his|strong="H5921"\w* \w flesh|strong="H1320"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w* \w has|strong="H5315"\w* \w pain|strong="H3510"\w*, +\q2 \w and|strong="H5315"\w* \w his|strong="H5921"\w* \w soul|strong="H5315"\w* \w within|strong="H5921"\w* \w him|strong="H5921"\w* mourns.” +\b +\c 15 +\p +\v 1 \w Then|strong="H6030"\w* Eliphaz \w the|strong="H6030"\w* \w Temanite|strong="H8489"\w* \w answered|strong="H6030"\w*, +\q1 +\v 2 “\w Should|strong="H2450"\w* \w a|strong="H3068"\w* \w wise|strong="H2450"\w* \w man|strong="H2450"\w* \w answer|strong="H6030"\w* \w with|strong="H4390"\w* \w vain|strong="H7307"\w* \w knowledge|strong="H1847"\w*, +\q2 \w and|strong="H6030"\w* \w fill|strong="H4390"\w* himself \w with|strong="H4390"\w* \w the|strong="H4390"\w* \w east|strong="H6921"\w* \w wind|strong="H7307"\w*? +\q1 +\v 3 Should \w he|strong="H3808"\w* \w reason|strong="H1697"\w* \w with|strong="H1697"\w* \w unprofitable|strong="H5532"\w* \w talk|strong="H1697"\w*, +\q2 \w or|strong="H3808"\w* \w with|strong="H1697"\w* \w speeches|strong="H4405"\w* \w with|strong="H1697"\w* \w which|strong="H1697"\w* \w he|strong="H3808"\w* \w can|strong="H3808"\w* \w do|strong="H1697"\w* \w no|strong="H3808"\w* \w good|strong="H3276"\w*? +\q1 +\v 4 Yes, \w you|strong="H6440"\w* \w do|strong="H6565"\w* \w away|strong="H1639"\w* \w with|strong="H6440"\w* \w fear|strong="H3374"\w*, +\q2 \w and|strong="H6440"\w* \w hinder|strong="H1639"\w* devotion \w before|strong="H6440"\w* God. +\q1 +\v 5 \w For|strong="H3588"\w* \w your|strong="H3588"\w* \w iniquity|strong="H5771"\w* teaches \w your|strong="H3588"\w* \w mouth|strong="H6310"\w*, +\q2 \w and|strong="H6310"\w* \w you|strong="H3588"\w* choose \w the|strong="H3588"\w* \w language|strong="H3956"\w* \w of|strong="H6310"\w* \w the|strong="H3588"\w* \w crafty|strong="H6175"\w*. +\q1 +\v 6 \w Your|strong="H3808"\w* own \w mouth|strong="H6310"\w* \w condemns|strong="H7561"\w* \w you|strong="H3808"\w*, \w and|strong="H6030"\w* \w not|strong="H3808"\w* \w I|strong="H3808"\w*. +\q2 Yes, \w your|strong="H3808"\w* own \w lips|strong="H8193"\w* \w testify|strong="H6030"\w* against \w you|strong="H3808"\w*. +\b +\q1 +\v 7 “\w Are|strong="H6440"\w* \w you|strong="H6440"\w* \w the|strong="H6440"\w* \w first|strong="H7223"\w* \w man|strong="H6440"\w* \w who|strong="H3205"\w* \w was|strong="H3205"\w* \w born|strong="H3205"\w*? +\q2 Or \w were|strong="H3205"\w* \w you|strong="H6440"\w* \w brought|strong="H3205"\w* \w out|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w hills|strong="H1389"\w*? +\q1 +\v 8 \w Have|strong="H8085"\w* \w you|strong="H8085"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w secret|strong="H5475"\w* \w counsel|strong="H5475"\w* \w of|strong="H2451"\w* \w God|strong="H2451"\w*? +\q2 \w Do|strong="H8085"\w* \w you|strong="H8085"\w* \w limit|strong="H1639"\w* \w wisdom|strong="H2451"\w* \w to|strong="H8085"\w* yourself? +\q1 +\v 9 \w What|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H3045"\w* \w know|strong="H3045"\w* \w that|strong="H3045"\w* \w we|strong="H3068"\w* don’t \w know|strong="H3045"\w*? +\q2 \w What|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H3045"\w* \w understand|strong="H3045"\w* \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w not|strong="H3808"\w* \w in|strong="H3808"\w* \w us|strong="H3045"\w*? +\q1 +\v 10 \w With|strong="H3117"\w* \w us|strong="H3117"\w* \w are|strong="H3117"\w* \w both|strong="H1571"\w* \w the|strong="H3117"\w* gray-headed \w and|strong="H3117"\w* \w the|strong="H3117"\w* \w very|strong="H1571"\w* \w aged|strong="H3453"\w* \w men|strong="H3453"\w*, +\q2 \w much|strong="H3524"\w* \w older|strong="H3524"\w* \w than|strong="H1571"\w* \w your|strong="H1571"\w* father. +\q1 +\v 11 \w Are|strong="H1697"\w* \w the|strong="H4480"\w* \w consolations|strong="H8575"\w* \w of|strong="H1697"\w* God \w too|strong="H4480"\w* \w small|strong="H4592"\w* \w for|strong="H1697"\w* \w you|strong="H5973"\w*, +\q2 even \w the|strong="H4480"\w* \w word|strong="H1697"\w* \w that|strong="H1697"\w* \w is|strong="H1697"\w* gentle \w toward|strong="H4480"\w* \w you|strong="H5973"\w*? +\q1 +\v 12 \w Why|strong="H4100"\w* \w does|strong="H4100"\w* \w your|strong="H3947"\w* \w heart|strong="H3820"\w* \w carry|strong="H3947"\w* \w you|strong="H3947"\w* \w away|strong="H3947"\w*? +\q2 \w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w your|strong="H3947"\w* \w eyes|strong="H5869"\w* \w flash|strong="H7335"\w*, +\q1 +\v 13 \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w turn|strong="H7725"\w* \w your|strong="H7725"\w* \w spirit|strong="H7307"\w* \w against|strong="H7307"\w* God, +\q2 \w and|strong="H7725"\w* \w let|strong="H7725"\w* such \w words|strong="H4405"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H7307"\w* \w your|strong="H7725"\w* \w mouth|strong="H6310"\w*? +\q1 +\v 14 \w What|strong="H4100"\w* \w is|strong="H4100"\w* man, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w should|strong="H4100"\w* \w be|strong="H3588"\w* \w clean|strong="H2135"\w*? +\q2 \w What|strong="H4100"\w* \w is|strong="H4100"\w* \w he|strong="H3588"\w* \w who|strong="H3588"\w* \w is|strong="H4100"\w* \w born|strong="H3205"\w* \w of|strong="H3205"\w* \w a|strong="H3068"\w* \w woman|strong="H3205"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w should|strong="H4100"\w* \w be|strong="H3588"\w* \w righteous|strong="H6663"\w*? +\q1 +\v 15 \w Behold|strong="H2005"\w*, \w he|strong="H3808"\w* puts \w no|strong="H3808"\w* trust \w in|strong="H3808"\w* \w his|strong="H3808"\w* \w holy|strong="H6918"\w* \w ones|strong="H6918"\w*. +\q2 \w Yes|strong="H2005"\w*, \w the|strong="H3808"\w* \w heavens|strong="H8064"\w* \w are|strong="H5869"\w* \w not|strong="H3808"\w* \w clean|strong="H2141"\w* \w in|strong="H3808"\w* \w his|strong="H3808"\w* \w sight|strong="H5869"\w*; +\q1 +\v 16 \w how|strong="H3588"\w* much \w less|strong="H3588"\w* \w one|strong="H3588"\w* \w who|strong="H3588"\w* \w is|strong="H4325"\w* \w abominable|strong="H8581"\w* \w and|strong="H4325"\w* corrupt, +\q2 \w a|strong="H3068"\w* man \w who|strong="H3588"\w* \w drinks|strong="H8354"\w* \w iniquity|strong="H5766"\w* \w like|strong="H5766"\w* \w water|strong="H4325"\w*! +\b +\q1 +\v 17 “\w I|strong="H2088"\w* \w will|strong="H2088"\w* \w show|strong="H2331"\w* \w you|strong="H2331"\w*, \w listen|strong="H8085"\w* \w to|strong="H8085"\w* \w me|strong="H5608"\w*; +\q2 \w that|strong="H8085"\w* \w which|strong="H2088"\w* \w I|strong="H2088"\w* \w have|strong="H2088"\w* \w seen|strong="H2372"\w* \w I|strong="H2088"\w* \w will|strong="H2088"\w* \w declare|strong="H5608"\w* +\q1 +\v 18 (which \w wise|strong="H2450"\w* \w men|strong="H2450"\w* \w have|strong="H3808"\w* \w told|strong="H5046"\w* \w by|strong="H3808"\w* \w their|strong="H3808"\w* fathers, +\q2 \w and|strong="H2450"\w* \w have|strong="H3808"\w* \w not|strong="H3808"\w* \w hidden|strong="H3582"\w* \w it|strong="H3808"\w*; +\q1 +\v 19 \w to|strong="H5414"\w* whom alone \w the|strong="H5414"\w* land \w was|strong="H5414"\w* \w given|strong="H5414"\w*, +\q2 \w and|strong="H5674"\w* \w no|strong="H3808"\w* \w stranger|strong="H2114"\w* \w passed|strong="H5674"\w* \w among|strong="H8432"\w* \w them|strong="H5414"\w*): +\q1 +\v 20 \w the|strong="H3605"\w* \w wicked|strong="H7563"\w* \w man|strong="H7563"\w* \w writhes|strong="H2342"\w* \w in|strong="H8141"\w* \w pain|strong="H2342"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w days|strong="H3117"\w*, +\q2 even \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H3117"\w* \w years|strong="H8141"\w* \w that|strong="H3605"\w* \w are|strong="H3117"\w* laid \w up|strong="H6845"\w* \w for|strong="H3117"\w* \w the|strong="H3605"\w* \w oppressor|strong="H6184"\w*. +\q1 +\v 21 \w A|strong="H3068"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w terrors|strong="H6343"\w* \w is|strong="H6963"\w* \w in|strong="H6963"\w* \w his|strong="H7703"\w* ears. +\q2 \w In|strong="H6963"\w* \w prosperity|strong="H7965"\w* \w the|strong="H6963"\w* \w destroyer|strong="H7703"\w* \w will|strong="H7703"\w* come \w on|strong="H7965"\w* \w him|strong="H6963"\w*. +\q1 +\v 22 \w He|strong="H1931"\w* doesn’t believe \w that|strong="H1931"\w* \w he|strong="H1931"\w* \w will|strong="H2719"\w* \w return|strong="H7725"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w darkness|strong="H2822"\w*. +\q2 \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w waited|strong="H6822"\w* \w for|strong="H3808"\w* \w by|strong="H3808"\w* \w the|strong="H4480"\w* \w sword|strong="H2719"\w*. +\q1 +\v 23 \w He|strong="H1931"\w* \w wanders|strong="H5074"\w* \w abroad|strong="H5074"\w* \w for|strong="H3588"\w* \w bread|strong="H3899"\w*, saying, ‘\w Where|strong="H3027"\w* \w is|strong="H1931"\w* \w it|strong="H1931"\w*?’ +\q2 \w He|strong="H1931"\w* \w knows|strong="H3045"\w* \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w darkness|strong="H2822"\w* \w is|strong="H1931"\w* \w ready|strong="H3559"\w* \w at|strong="H3117"\w* \w his|strong="H3045"\w* \w hand|strong="H3027"\w*. +\q1 +\v 24 \w Distress|strong="H6862"\w* \w and|strong="H4428"\w* \w anguish|strong="H4691"\w* make \w him|strong="H4428"\w* \w afraid|strong="H1204"\w*. +\q2 \w They|strong="H4428"\w* \w prevail|strong="H8630"\w* \w against|strong="H6862"\w* \w him|strong="H4428"\w*, \w as|strong="H4428"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w ready|strong="H6264"\w* \w to|strong="H4428"\w* \w the|strong="H4428"\w* \w battle|strong="H3593"\w*. +\q1 +\v 25 \w Because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w his|strong="H5186"\w* \w hand|strong="H3027"\w* \w against|strong="H3027"\w* \w God|strong="H3027"\w*, +\q2 \w and|strong="H3027"\w* behaves \w himself|strong="H3027"\w* proudly \w against|strong="H3027"\w* \w the|strong="H3588"\w* \w Almighty|strong="H7706"\w*, +\q1 +\v 26 he \w runs|strong="H7323"\w* at him \w with|strong="H6677"\w* \w a|strong="H3068"\w* stiff \w neck|strong="H6677"\w*, +\q2 \w with|strong="H6677"\w* \w the|strong="H7323"\w* \w thick|strong="H5672"\w* \w shields|strong="H4043"\w* \w of|strong="H4043"\w* \w his|strong="H7323"\w* \w bucklers|strong="H4043"\w*, +\q1 +\v 27 \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w covered|strong="H3680"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w* \w with|strong="H6213"\w* \w his|strong="H6440"\w* \w fatness|strong="H2459"\w*, +\q2 \w and|strong="H6440"\w* \w gathered|strong="H6213"\w* \w fat|strong="H2459"\w* \w on|strong="H5921"\w* \w his|strong="H6440"\w* \w thighs|strong="H3689"\w*. +\q1 +\v 28 \w He|strong="H1004"\w* \w has|strong="H1004"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w desolate|strong="H3582"\w* \w cities|strong="H5892"\w*, +\q2 \w in|strong="H3427"\w* \w houses|strong="H1004"\w* \w which|strong="H1004"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w inhabited|strong="H3427"\w*, +\q2 \w which|strong="H1004"\w* \w were|strong="H3427"\w* \w ready|strong="H6257"\w* \w to|strong="H1004"\w* become \w heaps|strong="H1530"\w*. +\q1 +\v 29 \w He|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w rich|strong="H6238"\w*, \w neither|strong="H3808"\w* \w will|strong="H3808"\w* \w his|strong="H5186"\w* \w substance|strong="H2428"\w* \w continue|strong="H6965"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H3808"\w* \w their|strong="H5186"\w* possessions \w be|strong="H3808"\w* \w extended|strong="H5186"\w* \w on|strong="H6965"\w* \w the|strong="H6965"\w* earth. +\q1 +\v 30 \w He|strong="H4480"\w* \w will|strong="H7307"\w* \w not|strong="H3808"\w* \w depart|strong="H5493"\w* \w out|strong="H4480"\w* \w of|strong="H7307"\w* \w darkness|strong="H2822"\w*. +\q2 \w The|strong="H4480"\w* \w flame|strong="H7957"\w* \w will|strong="H7307"\w* \w dry|strong="H3001"\w* \w up|strong="H3001"\w* \w his|strong="H5493"\w* \w branches|strong="H3127"\w*. +\q2 \w He|strong="H4480"\w* \w will|strong="H7307"\w* \w go|strong="H5493"\w* \w away|strong="H5493"\w* \w by|strong="H3808"\w* \w the|strong="H4480"\w* \w breath|strong="H7307"\w* \w of|strong="H7307"\w* \w God|strong="H3808"\w*’s \w mouth|strong="H6310"\w*. +\q1 +\v 31 \w Let|strong="H1961"\w* \w him|strong="H3588"\w* \w not|strong="H1961"\w* trust \w in|strong="H1961"\w* \w emptiness|strong="H7723"\w*, \w deceiving|strong="H8582"\w* himself, +\q2 \w for|strong="H3588"\w* \w emptiness|strong="H7723"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w his|strong="H1961"\w* \w reward|strong="H8545"\w*. +\q1 +\v 32 \w It|strong="H3117"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w accomplished|strong="H4390"\w* \w before|strong="H3808"\w* \w his|strong="H4390"\w* \w time|strong="H3117"\w*. +\q2 \w His|strong="H4390"\w* \w branch|strong="H3712"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w green|strong="H7488"\w*. +\q1 +\v 33 He \w will|strong="H2132"\w* shake \w off|strong="H7993"\w* \w his|strong="H7993"\w* unripe \w grape|strong="H1154"\w* as \w the|strong="H7993"\w* \w vine|strong="H1612"\w*, +\q2 \w and|strong="H1612"\w* \w will|strong="H2132"\w* \w cast|strong="H7993"\w* \w off|strong="H7993"\w* \w his|strong="H7993"\w* \w flower|strong="H5328"\w* as \w the|strong="H7993"\w* \w olive|strong="H2132"\w* \w tree|strong="H2132"\w*. +\q1 +\v 34 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w company|strong="H5712"\w* \w of|strong="H5712"\w* \w the|strong="H3588"\w* \w godless|strong="H2611"\w* \w will|strong="H2611"\w* \w be|strong="H3588"\w* \w barren|strong="H1565"\w*, +\q2 \w and|strong="H5712"\w* fire \w will|strong="H2611"\w* consume \w the|strong="H3588"\w* tents \w of|strong="H5712"\w* \w bribery|strong="H7810"\w*. +\q1 +\v 35 \w They|strong="H4820"\w* \w conceive|strong="H2029"\w* \w mischief|strong="H5999"\w* \w and|strong="H5999"\w* produce \w iniquity|strong="H5999"\w*. +\q2 \w Their|strong="H3559"\w* heart \w prepares|strong="H3559"\w* \w deceit|strong="H4820"\w*.” +\b +\c 16 +\p +\v 1 \w Then|strong="H6030"\w* Job \w answered|strong="H6030"\w*, +\q1 +\v 2 “\w I|strong="H8085"\w* \w have|strong="H3605"\w* \w heard|strong="H8085"\w* \w many|strong="H7227"\w* \w such|strong="H3605"\w* \w things|strong="H3605"\w*. +\q2 \w You|strong="H3605"\w* \w are|strong="H7227"\w* \w all|strong="H3605"\w* \w miserable|strong="H5999"\w* \w comforters|strong="H5162"\w*! +\q1 +\v 3 \w Shall|strong="H7307"\w* \w vain|strong="H7307"\w* \w words|strong="H1697"\w* \w have|strong="H1697"\w* \w an|strong="H3588"\w* \w end|strong="H7093"\w*? +\q2 \w Or|strong="H6030"\w* \w what|strong="H4100"\w* \w provokes|strong="H4834"\w* \w you|strong="H3588"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w answer|strong="H6030"\w*? +\q1 +\v 4 \w I|strong="H5921"\w* \w also|strong="H1571"\w* \w could|strong="H1571"\w* \w speak|strong="H1696"\w* \w as|strong="H1571"\w* \w you|strong="H5921"\w* \w do|strong="H3426"\w*. +\q2 \w If|strong="H3863"\w* \w your|strong="H5921"\w* \w soul|strong="H5315"\w* \w were|strong="H3426"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* \w soul|strong="H5315"\w*’s \w place|strong="H8478"\w*, +\q2 \w I|strong="H5921"\w* \w could|strong="H1571"\w* \w join|strong="H2266"\w* \w words|strong="H4405"\w* \w together|strong="H2266"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w*, +\q2 \w and|strong="H7218"\w* \w shake|strong="H5128"\w* \w my|strong="H5921"\w* \w head|strong="H7218"\w* \w at|strong="H5921"\w* \w you|strong="H5921"\w*, +\q1 +\v 5 \w but|strong="H8193"\w* I would strengthen \w you|strong="H6310"\w* \w with|strong="H6310"\w* \w my|strong="H2820"\w* \w mouth|strong="H6310"\w*. +\q2 \w The|strong="H6310"\w* \w solace|strong="H5205"\w* \w of|strong="H6310"\w* \w my|strong="H2820"\w* \w lips|strong="H8193"\w* would relieve \w you|strong="H6310"\w*. +\b +\q1 +\v 6 “Though \w I|strong="H3808"\w* \w speak|strong="H1696"\w*, \w my|strong="H1696"\w* \w grief|strong="H3511"\w* \w is|strong="H4100"\w* \w not|strong="H3808"\w* subsided. +\q2 Though \w I|strong="H3808"\w* \w forbear|strong="H2308"\w*, \w what|strong="H4100"\w* \w am|strong="H1980"\w* \w I|strong="H3808"\w* \w eased|strong="H1980"\w*? +\q1 +\v 7 \w But|strong="H6258"\w* \w now|strong="H6258"\w*, God, \w you|strong="H3605"\w* \w have|strong="H3605"\w* surely worn \w me|strong="H8074"\w* \w out|strong="H3605"\w*. +\q2 \w You|strong="H3605"\w* \w have|strong="H3605"\w* \w made|strong="H8074"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w company|strong="H5712"\w* \w desolate|strong="H8074"\w*. +\q1 +\v 8 \w You|strong="H6440"\w* \w have|strong="H1961"\w* \w shriveled|strong="H7059"\w* \w me|strong="H6440"\w* \w up|strong="H6965"\w*. \w This|strong="H6440"\w* \w is|strong="H1961"\w* \w a|strong="H3068"\w* \w witness|strong="H5707"\w* \w against|strong="H6440"\w* \w me|strong="H6440"\w*. +\q2 \w My|strong="H6965"\w* \w leanness|strong="H3585"\w* \w rises|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H6440"\w* \w me|strong="H6440"\w*. +\q2 \w It|strong="H6440"\w* \w testifies|strong="H6030"\w* \w to|strong="H1961"\w* \w my|strong="H6965"\w* \w face|strong="H6440"\w*. +\q1 +\v 9 \w He|strong="H5921"\w* \w has|strong="H5869"\w* \w torn|strong="H2963"\w* \w me|strong="H5921"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* wrath \w and|strong="H5869"\w* persecuted \w me|strong="H5921"\w*. +\q2 \w He|strong="H5921"\w* \w has|strong="H5869"\w* \w gnashed|strong="H2786"\w* \w on|strong="H5921"\w* \w me|strong="H5921"\w* \w with|strong="H5921"\w* \w his|strong="H5921"\w* \w teeth|strong="H8127"\w*. +\q2 \w My|strong="H5921"\w* \w adversary|strong="H6862"\w* sharpens \w his|strong="H5921"\w* \w eyes|strong="H5869"\w* \w on|strong="H5921"\w* \w me|strong="H5921"\w*. +\q1 +\v 10 \w They|strong="H5921"\w* \w have|strong="H5921"\w* \w gaped|strong="H6473"\w* \w on|strong="H5921"\w* \w me|strong="H5921"\w* \w with|strong="H4390"\w* \w their|strong="H4390"\w* \w mouth|strong="H6310"\w*. +\q2 \w They|strong="H5921"\w* \w have|strong="H5921"\w* \w struck|strong="H5221"\w* \w me|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w cheek|strong="H3895"\w* \w reproachfully|strong="H2781"\w*. +\q2 \w They|strong="H5921"\w* \w gather|strong="H4390"\w* \w themselves|strong="H4390"\w* \w together|strong="H3162"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*. +\q1 +\v 11 \w God|strong="H3027"\w* delivers \w me|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w ungodly|strong="H7563"\w*, +\q2 \w and|strong="H3027"\w* casts \w me|strong="H5921"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w wicked|strong="H7563"\w*. +\q1 +\v 12 \w I|strong="H6965"\w* \w was|strong="H1961"\w* \w at|strong="H1961"\w* \w ease|strong="H7961"\w*, \w and|strong="H6965"\w* he \w broke|strong="H6565"\w* \w me|strong="H1961"\w* apart. +\q2 Yes, he \w has|strong="H1961"\w* \w taken|strong="H1961"\w* \w me|strong="H1961"\w* \w by|strong="H6965"\w* \w the|strong="H6965"\w* \w neck|strong="H6203"\w*, \w and|strong="H6965"\w* dashed \w me|strong="H1961"\w* \w to|strong="H1961"\w* \w pieces|strong="H6327"\w*. +\q2 He \w has|strong="H1961"\w* also \w set|strong="H6965"\w* \w me|strong="H1961"\w* \w up|strong="H6965"\w* \w for|strong="H1961"\w* \w his|strong="H1961"\w* \w target|strong="H4307"\w*. +\q1 +\v 13 \w His|strong="H5921"\w* \w archers|strong="H7228"\w* \w surround|strong="H5437"\w* \w me|strong="H5921"\w*. +\q2 \w He|strong="H3808"\w* \w splits|strong="H6398"\w* \w my|strong="H5921"\w* \w kidneys|strong="H3629"\w* apart, \w and|strong="H5437"\w* \w does|strong="H3808"\w* \w not|strong="H3808"\w* \w spare|strong="H2550"\w*. +\q2 \w He|strong="H3808"\w* \w pours|strong="H8210"\w* \w out|strong="H8210"\w* \w my|strong="H5921"\w* bile \w on|strong="H5921"\w* \w the|strong="H5921"\w* ground. +\q1 +\v 14 \w He|strong="H5921"\w* \w breaks|strong="H6555"\w* \w me|strong="H6440"\w* \w with|strong="H5921"\w* \w breach|strong="H6556"\w* \w on|strong="H5921"\w* \w breach|strong="H6556"\w*. +\q2 \w He|strong="H5921"\w* \w runs|strong="H7323"\w* \w at|strong="H5921"\w* \w me|strong="H6440"\w* \w like|strong="H7323"\w* \w a|strong="H3068"\w* \w giant|strong="H1368"\w*. +\q1 +\v 15 \w I|strong="H5921"\w* \w have|strong="H5921"\w* \w sewed|strong="H8609"\w* \w sackcloth|strong="H8242"\w* \w on|strong="H5921"\w* \w my|strong="H5921"\w* \w skin|strong="H1539"\w*, +\q2 \w and|strong="H8242"\w* \w have|strong="H5921"\w* \w thrust|strong="H5953"\w* \w my|strong="H5921"\w* \w horn|strong="H7161"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w dust|strong="H6083"\w*. +\q1 +\v 16 \w My|strong="H5921"\w* \w face|strong="H6440"\w* \w is|strong="H6440"\w* \w red|strong="H2560"\w* \w with|strong="H5921"\w* \w weeping|strong="H1065"\w*. +\q2 \w Deep|strong="H6757"\w* \w darkness|strong="H6757"\w* \w is|strong="H6440"\w* \w on|strong="H5921"\w* \w my|strong="H5921"\w* \w eyelids|strong="H6079"\w*, +\q1 +\v 17 \w although|strong="H3808"\w* there \w is|strong="H3808"\w* \w no|strong="H3808"\w* \w violence|strong="H2555"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* \w hands|strong="H3709"\w*, +\q2 \w and|strong="H2555"\w* \w my|strong="H5921"\w* \w prayer|strong="H8605"\w* \w is|strong="H3808"\w* \w pure|strong="H2134"\w*. +\b +\q1 +\v 18 “Earth, don’t \w cover|strong="H3680"\w* \w my|strong="H1961"\w* \w blood|strong="H1818"\w*. +\q2 \w Let|strong="H1961"\w* \w my|strong="H1961"\w* \w cry|strong="H2201"\w* \w have|strong="H1961"\w* \w no|strong="H1961"\w* \w place|strong="H4725"\w* \w to|strong="H1961"\w* \w rest|strong="H1961"\w*. +\q1 +\v 19 \w Even|strong="H1571"\w* \w now|strong="H6258"\w*, \w behold|strong="H2009"\w*, \w my|strong="H6258"\w* \w witness|strong="H5707"\w* \w is|strong="H1571"\w* \w in|strong="H8064"\w* \w heaven|strong="H8064"\w*. +\q2 \w He|strong="H2009"\w* \w who|strong="H5707"\w* vouches \w for|strong="H8064"\w* \w me|strong="H1571"\w* \w is|strong="H1571"\w* \w on|strong="H6258"\w* \w high|strong="H4791"\w*. +\q1 +\v 20 My \w friends|strong="H7453"\w* scoff \w at|strong="H5869"\w* \w me|strong="H5869"\w*. +\q2 My \w eyes|strong="H5869"\w* pour \w out|strong="H1811"\w* tears \w to|strong="H5869"\w* God, +\q1 +\v 21 \w that|strong="H1121"\w* \w he|strong="H1121"\w* would \w maintain|strong="H3198"\w* \w the|strong="H5973"\w* right \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w man|strong="H1397"\w* \w with|strong="H5973"\w* God, +\q2 \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1397"\w* \w with|strong="H5973"\w* \w his|strong="H5973"\w* \w neighbor|strong="H7453"\w*! +\q1 +\v 22 \w For|strong="H3588"\w* \w when|strong="H3588"\w* \w a|strong="H3068"\w* \w few|strong="H4557"\w* \w years|strong="H8141"\w* \w have|strong="H3588"\w* \w come|strong="H1980"\w*, +\q2 \w I|strong="H3588"\w* \w will|strong="H3808"\w* \w go|strong="H1980"\w* \w the|strong="H3588"\w* \w way|strong="H1980"\w* \w of|strong="H8141"\w* \w no|strong="H3808"\w* \w return|strong="H7725"\w*. +\b +\c 17 +\q1 +\v 1 “\w My|strong="H3117"\w* \w spirit|strong="H7307"\w* \w is|strong="H3117"\w* consumed. +\q2 \w My|strong="H3117"\w* \w days|strong="H3117"\w* \w are|strong="H3117"\w* \w extinct|strong="H2193"\w* +\q2 \w and|strong="H3117"\w* \w the|strong="H3117"\w* \w grave|strong="H6913"\w* \w is|strong="H3117"\w* ready \w for|strong="H3117"\w* \w me|strong="H6913"\w*. +\q1 +\v 2 \w Surely|strong="H3808"\w* \w there|strong="H3885"\w* \w are|strong="H5869"\w* \w mockers|strong="H2049"\w* \w with|strong="H5869"\w* \w me|strong="H5978"\w*. +\q2 \w My|strong="H3808"\w* \w eye|strong="H5869"\w* dwells \w on|strong="H5869"\w* \w their|strong="H3808"\w* \w provocation|strong="H4784"\w*. +\b +\q1 +\v 3 “\w Now|strong="H4994"\w* \w give|strong="H7760"\w* \w a|strong="H3068"\w* pledge. \w Be|strong="H3027"\w* \w collateral|strong="H6148"\w* \w for|strong="H3027"\w* \w me|strong="H4994"\w* \w with|strong="H5973"\w* \w yourself|strong="H5973"\w*. +\q2 \w Who|strong="H4310"\w* \w is|strong="H1931"\w* there \w who|strong="H4310"\w* \w will|strong="H4310"\w* \w strike|strong="H8628"\w* \w hands|strong="H3027"\w* \w with|strong="H5973"\w* \w me|strong="H4994"\w*? +\q1 +\v 4 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* \w hidden|strong="H6845"\w* \w their|strong="H5921"\w* \w heart|strong="H3820"\w* \w from|strong="H5921"\w* \w understanding|strong="H3820"\w*, +\q2 \w therefore|strong="H3651"\w* \w you|strong="H3588"\w* \w will|strong="H3820"\w* \w not|strong="H3808"\w* \w exalt|strong="H7311"\w* \w them|strong="H5921"\w*. +\q1 +\v 5 \w He|strong="H1121"\w* \w who|strong="H1121"\w* \w denounces|strong="H5046"\w* \w his|strong="H5046"\w* \w friends|strong="H7453"\w* \w for|strong="H1121"\w* plunder, +\q2 \w even|strong="H5869"\w* \w the|strong="H5046"\w* \w eyes|strong="H5869"\w* \w of|strong="H1121"\w* \w his|strong="H5046"\w* \w children|strong="H1121"\w* \w will|strong="H5869"\w* \w fail|strong="H3615"\w*. +\b +\q1 +\v 6 “\w But|strong="H1961"\w* \w he|strong="H5971"\w* \w has|strong="H1961"\w* \w made|strong="H3322"\w* \w me|strong="H6440"\w* \w a|strong="H3068"\w* \w byword|strong="H4914"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*. +\q2 \w They|strong="H5971"\w* \w spit|strong="H8611"\w* \w in|strong="H6440"\w* \w my|strong="H1961"\w* \w face|strong="H6440"\w*. +\q1 +\v 7 \w My|strong="H3605"\w* \w eye|strong="H5869"\w* \w also|strong="H5869"\w* \w is|strong="H3605"\w* \w dim|strong="H3543"\w* \w by|strong="H3605"\w* reason \w of|strong="H5869"\w* \w sorrow|strong="H3708"\w*. +\q2 \w All|strong="H3605"\w* \w my|strong="H3605"\w* \w members|strong="H3338"\w* \w are|strong="H5869"\w* \w as|strong="H3605"\w* \w a|strong="H3068"\w* \w shadow|strong="H6738"\w*. +\q1 +\v 8 \w Upright|strong="H3477"\w* men \w will|strong="H3477"\w* be \w astonished|strong="H8074"\w* \w at|strong="H5921"\w* \w this|strong="H2063"\w*. +\q2 \w The|strong="H5921"\w* \w innocent|strong="H5355"\w* \w will|strong="H3477"\w* \w stir|strong="H5782"\w* himself \w up|strong="H5782"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w godless|strong="H2611"\w*. +\q1 +\v 9 \w Yet|strong="H3254"\w* \w the|strong="H1870"\w* \w righteous|strong="H6662"\w* \w will|strong="H6662"\w* hold \w to|strong="H3027"\w* \w his|strong="H3027"\w* \w way|strong="H1870"\w*. +\q2 \w He|strong="H3027"\w* \w who|strong="H6662"\w* \w has|strong="H3027"\w* \w clean|strong="H2891"\w* \w hands|strong="H3027"\w* \w will|strong="H6662"\w* \w grow|strong="H3254"\w* stronger \w and|strong="H3027"\w* stronger. +\q1 +\v 10 \w But|strong="H3808"\w* \w as|strong="H3605"\w* \w for|strong="H3605"\w* \w you|strong="H3605"\w* \w all|strong="H3605"\w*, \w come|strong="H4672"\w* \w back|strong="H7725"\w*. +\q2 \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w find|strong="H4672"\w* \w a|strong="H3068"\w* \w wise|strong="H2450"\w* \w man|strong="H2450"\w* \w among|strong="H4672"\w* \w you|strong="H3605"\w*. +\q1 +\v 11 \w My|strong="H5674"\w* \w days|strong="H3117"\w* \w are|strong="H3117"\w* \w past|strong="H5674"\w*. +\q2 \w My|strong="H5674"\w* \w plans|strong="H2154"\w* \w are|strong="H3117"\w* \w broken|strong="H5423"\w* \w off|strong="H5423"\w*, +\q2 \w as|strong="H3117"\w* \w are|strong="H3117"\w* \w the|strong="H3117"\w* \w thoughts|strong="H4180"\w* \w of|strong="H3117"\w* \w my|strong="H5674"\w* \w heart|strong="H3824"\w*. +\q1 +\v 12 \w They|strong="H3117"\w* \w change|strong="H7760"\w* \w the|strong="H6440"\w* \w night|strong="H3915"\w* \w into|strong="H3915"\w* \w day|strong="H3117"\w*, +\q2 saying ‘\w The|strong="H6440"\w* \w light|strong="H7760"\w* \w is|strong="H3117"\w* \w near|strong="H7138"\w*’ \w in|strong="H3117"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H3117"\w* \w darkness|strong="H2822"\w*. +\q1 +\v 13 If \w I|strong="H1004"\w* \w look|strong="H6960"\w* \w for|strong="H6960"\w* \w Sheol|strong="H7585"\w*\f + \fr 17:13 \ft Sheol is the place of the dead.\f* \w as|strong="H1004"\w* \w my|strong="H7502"\w* \w house|strong="H1004"\w*, +\q2 if \w I|strong="H1004"\w* \w have|strong="H1004"\w* spread \w my|strong="H7502"\w* \w couch|strong="H3326"\w* \w in|strong="H1004"\w* \w the|strong="H1004"\w* \w darkness|strong="H2822"\w*, +\q1 +\v 14 if \w I|strong="H7121"\w* have \w said|strong="H7121"\w* \w to|strong="H7121"\w* \w corruption|strong="H7845"\w*, ‘\w You|strong="H7121"\w* \w are|strong="H7415"\w* \w my|strong="H7121"\w* father,’ +\q2 \w and|strong="H7121"\w* \w to|strong="H7121"\w* \w the|strong="H7121"\w* \w worm|strong="H7415"\w*, ‘\w My|strong="H7121"\w* mother,’ \w and|strong="H7121"\w* ‘\w My|strong="H7121"\w* sister,’ +\q1 +\v 15 where then \w is|strong="H4310"\w* \w my|strong="H7789"\w* \w hope|strong="H8615"\w*? +\q2 As \w for|strong="H4310"\w* \w my|strong="H7789"\w* \w hope|strong="H8615"\w*, \w who|strong="H4310"\w* \w will|strong="H4310"\w* \w see|strong="H7789"\w* it? +\q1 +\v 16 \w Shall|strong="H6083"\w* \w it|strong="H5921"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w with|strong="H5921"\w* \w me|strong="H5921"\w* \w to|strong="H3381"\w* \w the|strong="H5921"\w* gates \w of|strong="H5921"\w* \w Sheol|strong="H7585"\w*,\f + \fr 17:16 \ft Sheol is the place of the dead.\f* +\q2 or \w descend|strong="H3381"\w* \w together|strong="H3162"\w* \w into|strong="H3381"\w* \w the|strong="H5921"\w* \w dust|strong="H6083"\w*?” +\b +\c 18 +\p +\v 1 \w Then|strong="H6030"\w* \w Bildad|strong="H1085"\w* \w the|strong="H6030"\w* \w Shuhite|strong="H7747"\w* \w answered|strong="H6030"\w*, +\q1 +\v 2 “\w How|strong="H5704"\w* \w long|strong="H5704"\w* \w will|strong="H5704"\w* \w you|strong="H5704"\w* \w hunt|strong="H7760"\w* \w for|strong="H5704"\w* \w words|strong="H4405"\w*? +\q2 \w Consider|strong="H7760"\w*, \w and|strong="H1696"\w* afterwards \w we|strong="H3068"\w* \w will|strong="H5704"\w* \w speak|strong="H1696"\w*. +\q1 +\v 3 \w Why|strong="H4069"\w* \w are|strong="H5869"\w* \w we|strong="H3068"\w* \w counted|strong="H2803"\w* \w as|strong="H2803"\w* animals, +\q2 \w which|strong="H5869"\w* \w have|strong="H5869"\w* become \w unclean|strong="H2933"\w* \w in|strong="H5869"\w* \w your|strong="H5869"\w* \w sight|strong="H5869"\w*? +\q1 +\v 4 \w You|strong="H5800"\w* \w who|strong="H5315"\w* \w tear|strong="H2963"\w* \w yourself|strong="H5315"\w* \w in|strong="H5315"\w* \w your|strong="H5800"\w* anger, +\q2 \w will|strong="H5315"\w* \w the|strong="H5800"\w* earth \w be|strong="H5315"\w* \w forsaken|strong="H5800"\w* \w for|strong="H4616"\w* \w you|strong="H5800"\w*? +\q2 Or \w will|strong="H5315"\w* \w the|strong="H5800"\w* \w rock|strong="H6697"\w* \w be|strong="H5315"\w* \w removed|strong="H6275"\w* \w out|strong="H4725"\w* \w of|strong="H4725"\w* its \w place|strong="H4725"\w*? +\b +\q1 +\v 5 “\w Yes|strong="H1571"\w*, \w the|strong="H1571"\w* \w light|strong="H5050"\w* \w of|strong="H3808"\w* \w the|strong="H1571"\w* \w wicked|strong="H7563"\w* \w will|strong="H1571"\w* \w be|strong="H3808"\w* \w put|strong="H1846"\w* \w out|strong="H1846"\w*. +\q2 \w The|strong="H1571"\w* \w spark|strong="H7632"\w* \w of|strong="H3808"\w* \w his|strong="H3808"\w* fire won’t \w shine|strong="H5050"\w*. +\q1 +\v 6 \w The|strong="H5921"\w* \w light|strong="H5216"\w* \w will|strong="H5216"\w* be \w dark|strong="H2821"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* tent. +\q2 \w His|strong="H5921"\w* \w lamp|strong="H5216"\w* \w above|strong="H5921"\w* \w him|strong="H5921"\w* \w will|strong="H5216"\w* be \w put|strong="H1846"\w* \w out|strong="H1846"\w*. +\q1 +\v 7 \w The|strong="H7993"\w* \w steps|strong="H6806"\w* \w of|strong="H6098"\w* \w his|strong="H7993"\w* strength will be shortened. +\q2 \w His|strong="H7993"\w* own \w counsel|strong="H6098"\w* will \w cast|strong="H7993"\w* \w him|strong="H7993"\w* \w down|strong="H7993"\w*. +\q1 +\v 8 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H7971"\w* \w cast|strong="H7971"\w* \w into|strong="H1980"\w* \w a|strong="H3068"\w* \w net|strong="H7568"\w* \w by|strong="H5921"\w* \w his|strong="H7971"\w* own \w feet|strong="H7272"\w*, +\q2 \w and|strong="H1980"\w* \w he|strong="H3588"\w* wanders \w into|strong="H1980"\w* \w its|strong="H5921"\w* mesh. +\q1 +\v 9 \w A|strong="H3068"\w* \w snare|strong="H6341"\w* will \w take|strong="H2388"\w* \w him|strong="H5921"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w heel|strong="H6119"\w*. +\q2 \w A|strong="H3068"\w* \w trap|strong="H6341"\w* will catch \w him|strong="H5921"\w*. +\q1 +\v 10 \w A|strong="H3068"\w* \w noose|strong="H2256"\w* \w is|strong="H2256"\w* \w hidden|strong="H2934"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* ground, +\q2 \w a|strong="H3068"\w* \w trap|strong="H4434"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w path|strong="H5410"\w*. +\q1 +\v 11 \w Terrors|strong="H1091"\w* \w will|strong="H7272"\w* \w make|strong="H7272"\w* \w him|strong="H5439"\w* \w afraid|strong="H1204"\w* \w on|strong="H7272"\w* \w every|strong="H5439"\w* \w side|strong="H5439"\w*, +\q2 \w and|strong="H7272"\w* \w will|strong="H7272"\w* chase \w him|strong="H5439"\w* at \w his|strong="H5439"\w* \w heels|strong="H7272"\w*. +\q1 +\v 12 \w His|strong="H3559"\w* strength \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w famished|strong="H7457"\w*. +\q2 Calamity \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w ready|strong="H3559"\w* \w at|strong="H1961"\w* \w his|strong="H3559"\w* \w side|strong="H6763"\w*. +\q1 +\v 13 \w The|strong="H4194"\w* members \w of|strong="H1060"\w* his \w body|strong="H5785"\w* will be devoured. +\q2 \w The|strong="H4194"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1060"\w* \w death|strong="H4194"\w* will devour his members. +\q1 +\v 14 \w He|strong="H4428"\w* \w will|strong="H4428"\w* \w be|strong="H4428"\w* rooted \w out|strong="H5423"\w* \w of|strong="H4428"\w* \w the|strong="H5423"\w* \w security|strong="H4009"\w* \w of|strong="H4428"\w* \w his|strong="H4428"\w* tent. +\q2 \w He|strong="H4428"\w* \w will|strong="H4428"\w* \w be|strong="H4428"\w* \w brought|strong="H4428"\w* \w to|strong="H4428"\w* \w the|strong="H5423"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w terrors|strong="H1091"\w*. +\q1 +\v 15 \w There|strong="H1097"\w* will \w dwell|strong="H7931"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* tent \w that|strong="H1097"\w* which \w is|strong="H1614"\w* \w none|strong="H1097"\w* \w of|strong="H5921"\w* \w his|strong="H5921"\w*. +\q2 \w Sulfur|strong="H1614"\w* will be \w scattered|strong="H2219"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w habitation|strong="H5116"\w*. +\q1 +\v 16 \w His|strong="H8478"\w* \w roots|strong="H8328"\w* \w will|strong="H8328"\w* \w be|strong="H4605"\w* \w dried|strong="H3001"\w* \w up|strong="H3001"\w* \w beneath|strong="H8478"\w*. +\q2 \w His|strong="H8478"\w* \w branch|strong="H7105"\w* \w will|strong="H8328"\w* \w be|strong="H4605"\w* cut \w off|strong="H5243"\w* \w above|strong="H4605"\w*. +\q1 +\v 17 \w His|strong="H6440"\w* \w memory|strong="H2143"\w* \w will|strong="H3808"\w* perish \w from|strong="H4480"\w* \w the|strong="H6440"\w* earth. +\q2 \w He|strong="H4480"\w* \w will|strong="H3808"\w* \w have|strong="H3808"\w* \w no|strong="H3808"\w* \w name|strong="H8034"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w street|strong="H2351"\w*. +\q1 +\v 18 \w He|strong="H2822"\w* \w will|strong="H2822"\w* \w be|strong="H2822"\w* \w driven|strong="H1920"\w* \w from|strong="H1920"\w* light into \w darkness|strong="H2822"\w*, +\q2 \w and|strong="H2822"\w* \w chased|strong="H5074"\w* \w out|strong="H1920"\w* of \w the|strong="H1920"\w* \w world|strong="H8398"\w*. +\q1 +\v 19 \w He|strong="H3808"\w* \w will|strong="H5971"\w* \w have|strong="H5971"\w* \w neither|strong="H3808"\w* \w son|strong="H5209"\w* \w nor|strong="H3808"\w* grandson \w among|strong="H5971"\w* \w his|strong="H3808"\w* \w people|strong="H5971"\w*, +\q2 \w nor|strong="H3808"\w* \w any|strong="H3808"\w* \w remaining|strong="H8300"\w* \w where|strong="H4033"\w* \w he|strong="H3808"\w* lived. +\q1 +\v 20 \w Those|strong="H5921"\w* who come \w after|strong="H5921"\w* \w will|strong="H3117"\w* \w be|strong="H3117"\w* \w astonished|strong="H8074"\w* \w at|strong="H5921"\w* \w his|strong="H5921"\w* \w day|strong="H3117"\w*, +\q2 \w as|strong="H3117"\w* \w those|strong="H5921"\w* who went \w before|strong="H5921"\w* \w were|strong="H3117"\w* frightened. +\q1 +\v 21 \w Surely|strong="H3808"\w* \w such|strong="H2088"\w* \w are|strong="H3045"\w* \w the|strong="H3045"\w* \w dwellings|strong="H4908"\w* \w of|strong="H4725"\w* \w the|strong="H3045"\w* \w unrighteous|strong="H5767"\w*. +\q2 \w This|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H3045"\w* \w place|strong="H4725"\w* \w of|strong="H4725"\w* \w him|strong="H3045"\w* \w who|strong="H2088"\w* doesn’t \w know|strong="H3045"\w* \w God|strong="H3808"\w*.” +\c 19 +\p +\v 1 \w Then|strong="H6030"\w* Job \w answered|strong="H6030"\w*, +\q1 +\v 2 “\w How|strong="H5704"\w* \w long|strong="H5704"\w* \w will|strong="H5315"\w* \w you|strong="H5704"\w* \w torment|strong="H3013"\w* \w me|strong="H5315"\w*, +\q2 \w and|strong="H5315"\w* \w crush|strong="H1792"\w* \w me|strong="H5315"\w* \w with|strong="H5315"\w* \w words|strong="H4405"\w*? +\q1 +\v 3 \w You|strong="H3808"\w* \w have|strong="H3808"\w* \w reproached|strong="H3637"\w* \w me|strong="H3808"\w* \w ten|strong="H6235"\w* \w times|strong="H6471"\w*. +\q2 \w You|strong="H3808"\w* aren’t \w ashamed|strong="H3637"\w* \w that|strong="H2088"\w* \w you|strong="H3808"\w* attack \w me|strong="H3808"\w*. +\q1 +\v 4 If it is true \w that|strong="H3885"\w* I have \w erred|strong="H7686"\w*, +\q2 my \w error|strong="H7686"\w* \w remains|strong="H3885"\w* \w with|strong="H7686"\w* myself. +\q1 +\v 5 If indeed \w you|strong="H5921"\w* will \w magnify|strong="H1431"\w* \w yourselves|strong="H1431"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*, +\q2 \w and|strong="H1431"\w* \w plead|strong="H3198"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w* \w my|strong="H5921"\w* \w reproach|strong="H2781"\w*, +\q1 +\v 6 \w know|strong="H3045"\w* \w now|strong="H3588"\w* \w that|strong="H3588"\w* God \w has|strong="H3588"\w* subverted \w me|strong="H5921"\w*, +\q2 \w and|strong="H3045"\w* \w has|strong="H3588"\w* \w surrounded|strong="H5362"\w* \w me|strong="H5921"\w* \w with|strong="H5921"\w* \w his|strong="H5921"\w* \w net|strong="H4686"\w*. +\b +\q1 +\v 7 “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w cry|strong="H6817"\w* \w out|strong="H6817"\w* \w of|strong="H4941"\w* \w wrong|strong="H2555"\w*, \w but|strong="H3808"\w* \w I|strong="H2005"\w* \w am|strong="H2005"\w* \w not|strong="H3808"\w* \w heard|strong="H6030"\w*. +\q2 \w I|strong="H2005"\w* \w cry|strong="H6817"\w* \w for|strong="H7768"\w* \w help|strong="H7768"\w*, \w but|strong="H3808"\w* there \w is|strong="H4941"\w* \w no|strong="H3808"\w* \w justice|strong="H4941"\w*. +\q1 +\v 8 \w He|strong="H3808"\w* \w has|strong="H5674"\w* \w walled|strong="H1443"\w* \w up|strong="H7760"\w* \w my|strong="H7760"\w* \w way|strong="H5410"\w* \w so|strong="H3808"\w* \w that|strong="H3808"\w* \w I|strong="H5921"\w* \w can|strong="H3808"\w*’t \w pass|strong="H5674"\w*, +\q2 \w and|strong="H5674"\w* \w has|strong="H5674"\w* \w set|strong="H7760"\w* \w darkness|strong="H2822"\w* \w in|strong="H5921"\w* \w my|strong="H7760"\w* \w paths|strong="H5410"\w*. +\q1 +\v 9 \w He|strong="H5921"\w* \w has|strong="H3519"\w* \w stripped|strong="H6584"\w* \w me|strong="H5921"\w* \w of|strong="H7218"\w* \w my|strong="H5921"\w* \w glory|strong="H3519"\w*, +\q2 \w and|strong="H7218"\w* \w taken|strong="H5493"\w* \w the|strong="H5921"\w* \w crown|strong="H5850"\w* \w from|strong="H5493"\w* \w my|strong="H5921"\w* \w head|strong="H7218"\w*. +\q1 +\v 10 \w He|strong="H3212"\w* \w has|strong="H6086"\w* \w broken|strong="H5422"\w* \w me|strong="H3212"\w* \w down|strong="H5422"\w* \w on|strong="H3212"\w* \w every|strong="H5439"\w* \w side|strong="H5439"\w*, \w and|strong="H3212"\w* \w I|strong="H3212"\w* am \w gone|strong="H3212"\w*. +\q2 \w He|strong="H3212"\w* \w has|strong="H6086"\w* \w plucked|strong="H5265"\w* \w my|strong="H5439"\w* \w hope|strong="H8615"\w* \w up|strong="H3212"\w* \w like|strong="H6086"\w* \w a|strong="H3068"\w* \w tree|strong="H6086"\w*. +\q1 +\v 11 \w He|strong="H5921"\w* \w has|strong="H6862"\w* also \w kindled|strong="H2734"\w* \w his|strong="H5921"\w* wrath \w against|strong="H5921"\w* \w me|strong="H5921"\w*. +\q2 \w He|strong="H5921"\w* \w counts|strong="H2803"\w* \w me|strong="H5921"\w* \w among|strong="H5921"\w* \w his|strong="H5921"\w* \w adversaries|strong="H6862"\w*. +\q1 +\v 12 \w His|strong="H5921"\w* \w troops|strong="H1416"\w* come \w on|strong="H5921"\w* \w together|strong="H3162"\w*, +\q2 \w build|strong="H5549"\w* \w a|strong="H3068"\w* siege ramp \w against|strong="H5921"\w* \w me|strong="H5921"\w*, +\q2 \w and|strong="H1870"\w* \w encamp|strong="H2583"\w* \w around|strong="H5439"\w* \w my|strong="H5921"\w* \w tent|strong="H2583"\w*. +\b +\q1 +\v 13 “\w He|strong="H4480"\w* \w has|strong="H3045"\w* \w put|strong="H7368"\w* \w my|strong="H5921"\w* brothers \w far|strong="H7368"\w* \w from|strong="H4480"\w* \w me|strong="H5921"\w*. +\q2 \w My|strong="H5921"\w* \w acquaintances|strong="H3045"\w* \w are|strong="H3045"\w* wholly \w estranged|strong="H2114"\w* \w from|strong="H4480"\w* \w me|strong="H5921"\w*. +\q1 +\v 14 \w My|strong="H3045"\w* \w relatives|strong="H7138"\w* \w have|strong="H3045"\w* gone away. +\q2 \w My|strong="H3045"\w* \w familiar|strong="H3045"\w* \w friends|strong="H3045"\w* \w have|strong="H3045"\w* \w forgotten|strong="H7911"\w* \w me|strong="H7911"\w*. +\q1 +\v 15 \w Those|strong="H1961"\w* \w who|strong="H2114"\w* \w dwell|strong="H1481"\w* \w in|strong="H1004"\w* \w my|strong="H1961"\w* \w house|strong="H1004"\w* \w and|strong="H1004"\w* \w my|strong="H1961"\w* maids \w consider|strong="H2803"\w* \w me|strong="H1961"\w* \w a|strong="H3068"\w* \w stranger|strong="H2114"\w*. +\q2 \w I|strong="H1004"\w* \w am|strong="H1961"\w* \w an|strong="H1961"\w* \w alien|strong="H5237"\w* \w in|strong="H1004"\w* \w their|strong="H1961"\w* \w sight|strong="H5869"\w*. +\q1 +\v 16 \w I|strong="H5650"\w* \w call|strong="H7121"\w* \w to|strong="H5650"\w* \w my|strong="H5650"\w* \w servant|strong="H5650"\w*, \w and|strong="H6030"\w* \w he|strong="H3808"\w* \w gives|strong="H7121"\w* \w me|strong="H7121"\w* \w no|strong="H3808"\w* \w answer|strong="H6030"\w*. +\q2 \w I|strong="H5650"\w* beg \w him|strong="H7121"\w* \w with|strong="H6310"\w* \w my|strong="H5650"\w* \w mouth|strong="H6310"\w*. +\q1 +\v 17 My \w breath|strong="H7307"\w* \w is|strong="H7307"\w* \w offensive|strong="H2114"\w* \w to|strong="H1121"\w* my wife. +\q2 \w I|strong="H1121"\w* am \w loathsome|strong="H2603"\w* \w to|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* my own mother. +\q1 +\v 18 \w Even|strong="H1571"\w* \w young|strong="H5759"\w* \w children|strong="H5759"\w* \w despise|strong="H3988"\w* \w me|strong="H1696"\w*. +\q2 If \w I|strong="H1571"\w* \w arise|strong="H6965"\w*, \w they|strong="H1571"\w* \w speak|strong="H1696"\w* \w against|strong="H1696"\w* \w me|strong="H1696"\w*. +\q1 +\v 19 \w All|strong="H3605"\w* \w my|strong="H3605"\w* familiar \w friends|strong="H4962"\w* \w abhor|strong="H8581"\w* \w me|strong="H8581"\w*. +\q2 \w They|strong="H3605"\w* whom \w I|strong="H2088"\w* loved \w have|strong="H3605"\w* \w turned|strong="H2015"\w* \w against|strong="H3605"\w* \w me|strong="H8581"\w*. +\q1 +\v 20 \w My|strong="H6106"\w* \w bones|strong="H6106"\w* \w stick|strong="H1692"\w* \w to|strong="H1320"\w* \w my|strong="H6106"\w* \w skin|strong="H5785"\w* \w and|strong="H1320"\w* \w to|strong="H1320"\w* \w my|strong="H6106"\w* \w flesh|strong="H1320"\w*. +\q2 \w I|strong="H1320"\w* have \w escaped|strong="H4422"\w* by \w the|strong="H4422"\w* \w skin|strong="H5785"\w* \w of|strong="H6106"\w* \w my|strong="H6106"\w* \w teeth|strong="H8127"\w*. +\b +\q1 +\v 21 “\w Have|strong="H3027"\w* \w pity|strong="H2603"\w* \w on|strong="H3027"\w* \w me|strong="H5060"\w*. \w Have|strong="H3027"\w* \w pity|strong="H2603"\w* \w on|strong="H3027"\w* \w me|strong="H5060"\w*, \w you|strong="H3588"\w* \w my|strong="H3588"\w* \w friends|strong="H7453"\w*, +\q2 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w God|strong="H3027"\w* \w has|strong="H3588"\w* \w touched|strong="H5060"\w* \w me|strong="H5060"\w*. +\q1 +\v 22 \w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H3808"\w* \w persecute|strong="H7291"\w* \w me|strong="H7291"\w* \w as|strong="H3644"\w* \w God|strong="H3808"\w*, +\q2 \w and|strong="H1320"\w* \w are|strong="H4100"\w* \w not|strong="H3808"\w* \w satisfied|strong="H7646"\w* \w with|strong="H7646"\w* \w my|strong="H7291"\w* \w flesh|strong="H1320"\w*? +\b +\q1 +\v 23 “\w Oh|strong="H4310"\w* \w that|strong="H5414"\w* \w my|strong="H5414"\w* \w words|strong="H4405"\w* \w were|strong="H5612"\w* \w now|strong="H5414"\w* \w written|strong="H3789"\w*! +\q2 \w Oh|strong="H4310"\w* \w that|strong="H5414"\w* \w they|strong="H3789"\w* \w were|strong="H5612"\w* \w inscribed|strong="H2710"\w* \w in|strong="H3789"\w* \w a|strong="H3068"\w* \w book|strong="H5612"\w*! +\q1 +\v 24 That with an \w iron|strong="H1270"\w* \w pen|strong="H5842"\w* \w and|strong="H1270"\w* \w lead|strong="H5777"\w* +\q2 \w they|strong="H5777"\w* were \w engraved|strong="H2672"\w* \w in|strong="H1270"\w* \w the|strong="H2672"\w* \w rock|strong="H6697"\w* \w forever|strong="H5703"\w*! +\q1 +\v 25 \w But|strong="H1350"\w* \w as|strong="H6965"\w* \w for|strong="H5921"\w* \w me|strong="H5921"\w*, \w I|strong="H5921"\w* \w know|strong="H3045"\w* \w that|strong="H3045"\w* \w my|strong="H5921"\w* \w Redeemer|strong="H1350"\w* \w lives|strong="H2416"\w*. +\q2 \w In|strong="H5921"\w* \w the|strong="H5921"\w* end, \w he|strong="H5921"\w* \w will|strong="H1350"\w* \w stand|strong="H6965"\w* \w upon|strong="H5921"\w* \w the|strong="H5921"\w* \w earth|strong="H6083"\w*. +\q1 +\v 26 After \w my|strong="H1320"\w* \w skin|strong="H5785"\w* \w is|strong="H1320"\w* \w destroyed|strong="H5362"\w*, +\q2 then \w I|strong="H1320"\w* \w will|strong="H1320"\w* \w see|strong="H2372"\w* God \w in|strong="H1320"\w* \w my|strong="H1320"\w* \w flesh|strong="H1320"\w*, +\q1 +\v 27 \w whom|strong="H5869"\w* \w I|strong="H7200"\w*, \w even|strong="H3808"\w* \w I|strong="H7200"\w*, \w will|strong="H5869"\w* \w see|strong="H7200"\w* \w on|strong="H7200"\w* \w my|strong="H7200"\w* side. +\q2 \w My|strong="H7200"\w* \w eyes|strong="H5869"\w* \w will|strong="H5869"\w* \w see|strong="H7200"\w*, \w and|strong="H5869"\w* \w not|strong="H3808"\w* \w as|strong="H5869"\w* \w a|strong="H3068"\w* \w stranger|strong="H2114"\w*. +\b +\q1 “\w My|strong="H7200"\w* \w heart|strong="H3629"\w* \w is|strong="H5869"\w* \w consumed|strong="H3615"\w* \w within|strong="H2436"\w* \w me|strong="H7200"\w*. +\q1 +\v 28 \w If|strong="H3588"\w* \w you|strong="H3588"\w* \w say|strong="H1697"\w*, ‘\w How|strong="H4100"\w* \w we|strong="H3068"\w* \w will|strong="H1697"\w* \w persecute|strong="H7291"\w* \w him|strong="H4672"\w*!’ +\q2 \w because|strong="H3588"\w* \w the|strong="H3588"\w* \w root|strong="H8328"\w* \w of|strong="H1697"\w* \w the|strong="H3588"\w* \w matter|strong="H1697"\w* \w is|strong="H4100"\w* \w found|strong="H4672"\w* \w in|strong="H4672"\w* \w me|strong="H7291"\w*, +\q1 +\v 29 \w be|strong="H6440"\w* \w afraid|strong="H1481"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w*, +\q2 \w for|strong="H3588"\w* \w wrath|strong="H2534"\w* brings \w the|strong="H6440"\w* \w punishments|strong="H5771"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w*, +\q2 \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H2719"\w* \w know|strong="H3045"\w* \w there|strong="H3045"\w* \w is|strong="H5771"\w* \w a|strong="H3068"\w* \w judgment|strong="H1779"\w*.” +\c 20 +\p +\v 1 \w Then|strong="H6030"\w* \w Zophar|strong="H6691"\w* \w the|strong="H6030"\w* \w Naamathite|strong="H5284"\w* \w answered|strong="H6030"\w*, +\q1 +\v 2 “\w Therefore|strong="H3651"\w* \w my|strong="H7725"\w* \w thoughts|strong="H5587"\w* \w answer|strong="H7725"\w* \w me|strong="H7725"\w*, +\q2 \w even|strong="H3651"\w* \w by|strong="H7725"\w* \w reason|strong="H3651"\w* \w of|strong="H5668"\w* \w my|strong="H7725"\w* \w haste|strong="H2363"\w* \w that|strong="H3651"\w* \w is|strong="H3651"\w* \w in|strong="H7725"\w* \w me|strong="H7725"\w*. +\q1 +\v 3 \w I|strong="H8085"\w* \w have|strong="H6030"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w reproof|strong="H4148"\w* \w which|strong="H7307"\w* puts \w me|strong="H6030"\w* \w to|strong="H8085"\w* \w shame|strong="H3639"\w*. +\q2 \w The|strong="H8085"\w* \w spirit|strong="H7307"\w* \w of|strong="H7307"\w* \w my|strong="H8085"\w* \w understanding|strong="H8085"\w* \w answers|strong="H6030"\w* \w me|strong="H6030"\w*. +\q1 +\v 4 Don’t \w you|strong="H5921"\w* \w know|strong="H3045"\w* \w this|strong="H2063"\w* \w from|strong="H4480"\w* \w old|strong="H5703"\w* \w time|strong="H5921"\w*, +\q2 \w since|strong="H4480"\w* \w man|strong="H3045"\w* \w was|strong="H2063"\w* \w placed|strong="H7760"\w* \w on|strong="H5921"\w* earth, +\q1 +\v 5 \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w triumphing|strong="H7445"\w* \w of|strong="H8057"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w* \w is|strong="H7563"\w* \w short|strong="H7138"\w*, +\q2 \w the|strong="H3588"\w* \w joy|strong="H8057"\w* \w of|strong="H8057"\w* \w the|strong="H3588"\w* \w godless|strong="H2611"\w* \w but|strong="H3588"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w moment|strong="H7281"\w*? +\q1 +\v 6 Though \w his|strong="H5927"\w* \w height|strong="H7218"\w* \w mount|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H5927"\w* \w heavens|strong="H8064"\w*, +\q2 \w and|strong="H8064"\w* \w his|strong="H5927"\w* \w head|strong="H7218"\w* \w reach|strong="H5060"\w* \w to|strong="H5927"\w* \w the|strong="H5927"\w* \w clouds|strong="H5645"\w*, +\q1 +\v 7 yet \w he|strong="H7200"\w* will perish \w forever|strong="H5331"\w* like \w his|strong="H7200"\w* own \w dung|strong="H1561"\w*. +\q2 Those who \w have|strong="H7200"\w* \w seen|strong="H7200"\w* \w him|strong="H7200"\w* will say, ‘Where is \w he|strong="H7200"\w*?’ +\q1 +\v 8 \w He|strong="H3808"\w* \w will|strong="H3808"\w* \w fly|strong="H5774"\w* \w away|strong="H5074"\w* as \w a|strong="H3068"\w* \w dream|strong="H2472"\w*, \w and|strong="H3915"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w found|strong="H4672"\w*. +\q2 Yes, \w he|strong="H3808"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w chased|strong="H5074"\w* \w away|strong="H5074"\w* \w like|strong="H3808"\w* \w a|strong="H3068"\w* \w vision|strong="H2384"\w* \w of|strong="H3808"\w* \w the|strong="H4672"\w* \w night|strong="H3915"\w*. +\q1 +\v 9 \w The|strong="H3254"\w* \w eye|strong="H5869"\w* \w which|strong="H5869"\w* \w saw|strong="H7805"\w* \w him|strong="H5869"\w* \w will|strong="H5869"\w* \w see|strong="H5869"\w* \w him|strong="H5869"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H5869"\w* \w his|strong="H3808"\w* \w place|strong="H4725"\w* \w see|strong="H5869"\w* \w him|strong="H5869"\w* \w any|strong="H5750"\w* \w more|strong="H3254"\w*. +\q1 +\v 10 \w His|strong="H7725"\w* \w children|strong="H1121"\w* \w will|strong="H1121"\w* seek \w the|strong="H7725"\w* \w favor|strong="H7521"\w* \w of|strong="H1121"\w* \w the|strong="H7725"\w* \w poor|strong="H1800"\w*. +\q2 \w His|strong="H7725"\w* \w hands|strong="H3027"\w* \w will|strong="H1121"\w* \w give|strong="H7725"\w* \w back|strong="H7725"\w* \w his|strong="H7725"\w* wealth. +\q1 +\v 11 \w His|strong="H5921"\w* \w bones|strong="H6106"\w* \w are|strong="H6106"\w* \w full|strong="H4390"\w* \w of|strong="H4390"\w* \w his|strong="H5921"\w* \w youth|strong="H5934"\w*, +\q2 \w but|strong="H5921"\w* \w youth|strong="H5934"\w* \w will|strong="H6083"\w* \w lie|strong="H7901"\w* \w down|strong="H7901"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w dust|strong="H6083"\w*. +\b +\q1 +\v 12 “Though \w wickedness|strong="H7451"\w* \w is|strong="H7451"\w* \w sweet|strong="H4985"\w* \w in|strong="H6310"\w* \w his|strong="H8478"\w* \w mouth|strong="H6310"\w*, +\q2 though \w he|strong="H8478"\w* \w hide|strong="H3582"\w* \w it|strong="H3582"\w* \w under|strong="H8478"\w* \w his|strong="H8478"\w* \w tongue|strong="H3956"\w*, +\q1 +\v 13 though \w he|strong="H3808"\w* \w spare|strong="H2550"\w* \w it|strong="H5921"\w*, \w and|strong="H5800"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w let|strong="H5800"\w* \w it|strong="H5921"\w* \w go|strong="H5800"\w*, +\q2 \w but|strong="H3808"\w* \w keep|strong="H4513"\w* \w it|strong="H5921"\w* \w still|strong="H4513"\w* \w within|strong="H8432"\w* \w his|strong="H5921"\w* \w mouth|strong="H2441"\w*, +\q1 +\v 14 yet \w his|strong="H7130"\w* \w food|strong="H3899"\w* \w in|strong="H7130"\w* \w his|strong="H7130"\w* \w bowels|strong="H4578"\w* \w is|strong="H4578"\w* \w turned|strong="H2015"\w*. +\q2 \w It|strong="H7130"\w* \w is|strong="H4578"\w* \w cobra|strong="H6620"\w* \w venom|strong="H4846"\w* \w within|strong="H7130"\w* \w him|strong="H7130"\w*. +\q1 +\v 15 \w He|strong="H3423"\w* has \w swallowed|strong="H1104"\w* \w down|strong="H1104"\w* \w riches|strong="H2428"\w*, \w and|strong="H2428"\w* \w he|strong="H3423"\w* \w will|strong="H2428"\w* \w vomit|strong="H6958"\w* \w them|strong="H3423"\w* \w up|strong="H1104"\w* \w again|strong="H6958"\w*. +\q2 God \w will|strong="H2428"\w* \w cast|strong="H3423"\w* \w them|strong="H3423"\w* \w out|strong="H3423"\w* \w of|strong="H2428"\w* \w his|strong="H3423"\w* belly. +\q1 +\v 16 He \w will|strong="H3956"\w* \w suck|strong="H3243"\w* \w cobra|strong="H6620"\w* \w venom|strong="H7219"\w*. +\q2 \w The|strong="H2026"\w* viper’s \w tongue|strong="H3956"\w* \w will|strong="H3956"\w* \w kill|strong="H2026"\w* \w him|strong="H2026"\w*. +\q1 +\v 17 \w He|strong="H7200"\w* \w will|strong="H5158"\w* \w not|strong="H7200"\w* \w look|strong="H7200"\w* \w at|strong="H7200"\w* \w the|strong="H7200"\w* \w rivers|strong="H5104"\w*, +\q2 \w the|strong="H7200"\w* \w flowing|strong="H5158"\w* \w streams|strong="H5158"\w* \w of|strong="H5158"\w* \w honey|strong="H1706"\w* \w and|strong="H7200"\w* \w butter|strong="H2529"\w*. +\q1 +\v 18 \w He|strong="H3808"\w* \w will|strong="H3808"\w* \w restore|strong="H7725"\w* \w that|strong="H3808"\w* \w for|strong="H2428"\w* \w which|strong="H2428"\w* \w he|strong="H3808"\w* labored, \w and|strong="H7725"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w swallow|strong="H1104"\w* \w it|strong="H7725"\w* \w down|strong="H1104"\w*. +\q2 \w He|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w rejoice|strong="H5965"\w* according \w to|strong="H7725"\w* \w the|strong="H7725"\w* \w substance|strong="H2428"\w* \w that|strong="H3808"\w* \w he|strong="H3808"\w* has gotten. +\q1 +\v 19 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w oppressed|strong="H7533"\w* \w and|strong="H1004"\w* \w forsaken|strong="H5800"\w* \w the|strong="H3588"\w* \w poor|strong="H1800"\w*. +\q2 \w He|strong="H3588"\w* \w has|strong="H3588"\w* violently \w taken|strong="H1497"\w* \w away|strong="H1497"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w*, \w and|strong="H1004"\w* \w he|strong="H3588"\w* \w will|strong="H1004"\w* \w not|strong="H3808"\w* \w build|strong="H1129"\w* \w it|strong="H3588"\w* \w up|strong="H1129"\w*. +\b +\q1 +\v 20 “\w Because|strong="H3588"\w* \w he|strong="H3588"\w* \w knew|strong="H3045"\w* \w no|strong="H3808"\w* \w quietness|strong="H7961"\w* within \w him|strong="H3045"\w*, +\q2 \w he|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w save|strong="H4422"\w* \w anything|strong="H3808"\w* \w of|strong="H3045"\w* \w that|strong="H3588"\w* \w in|strong="H3808"\w* \w which|strong="H3588"\w* \w he|strong="H3588"\w* delights. +\q1 +\v 21 There \w was|strong="H3808"\w* \w nothing|strong="H3808"\w* \w left|strong="H8300"\w* \w that|strong="H3651"\w* \w he|strong="H3651"\w* didn’t devour, +\q2 \w therefore|strong="H3651"\w* \w his|strong="H5921"\w* \w prosperity|strong="H2898"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w endure|strong="H2342"\w*. +\q1 +\v 22 \w In|strong="H3027"\w* \w the|strong="H3605"\w* \w fullness|strong="H4390"\w* \w of|strong="H3027"\w* \w his|strong="H3605"\w* \w sufficiency|strong="H5607"\w*, \w distress|strong="H3027"\w* \w will|strong="H3027"\w* overtake \w him|strong="H3027"\w*. +\q2 \w The|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3027"\w* \w in|strong="H3027"\w* \w misery|strong="H6001"\w* \w will|strong="H3027"\w* \w come|strong="H4390"\w* \w on|strong="H3027"\w* \w him|strong="H3027"\w*. +\q1 +\v 23 \w When|strong="H1961"\w* \w he|strong="H5921"\w* \w is|strong="H1961"\w* \w about|strong="H1961"\w* \w to|strong="H7971"\w* \w fill|strong="H4390"\w* \w his|strong="H7971"\w* belly, \w God|strong="H7971"\w* \w will|strong="H1961"\w* \w cast|strong="H7971"\w* \w the|strong="H5921"\w* \w fierceness|strong="H2740"\w* \w of|strong="H4390"\w* \w his|strong="H7971"\w* \w wrath|strong="H2740"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*. +\q2 \w It|strong="H5921"\w* \w will|strong="H1961"\w* \w rain|strong="H4305"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w* \w while|strong="H1961"\w* \w he|strong="H5921"\w* \w is|strong="H1961"\w* \w eating|strong="H3894"\w*. +\q1 +\v 24 He \w will|strong="H7198"\w* \w flee|strong="H1272"\w* \w from|strong="H1272"\w* \w the|strong="H1272"\w* \w iron|strong="H1270"\w* \w weapon|strong="H5402"\w*. +\q2 \w The|strong="H1272"\w* \w bronze|strong="H5154"\w* arrow \w will|strong="H7198"\w* strike \w him|strong="H1272"\w* \w through|strong="H2498"\w*. +\q1 +\v 25 \w He|strong="H5921"\w* draws \w it|strong="H5921"\w* \w out|strong="H3318"\w*, \w and|strong="H1980"\w* \w it|strong="H5921"\w* \w comes|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H5921"\w* \w his|strong="H5921"\w* \w body|strong="H1465"\w*. +\q2 Yes, \w the|strong="H5921"\w* \w glittering|strong="H1300"\w* \w point|strong="H1465"\w* \w comes|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H5921"\w* \w his|strong="H5921"\w* liver. +\q2 Terrors are \w on|strong="H5921"\w* \w him|strong="H5921"\w*. +\q1 +\v 26 \w All|strong="H3605"\w* \w darkness|strong="H2822"\w* \w is|strong="H3605"\w* \w laid|strong="H2934"\w* \w up|strong="H6845"\w* \w for|strong="H3605"\w* \w his|strong="H3605"\w* \w treasures|strong="H6845"\w*. +\q2 An \w unfanned|strong="H5301"\w* fire \w will|strong="H3808"\w* devour \w him|strong="H3605"\w*. +\q2 \w It|strong="H5301"\w* \w will|strong="H3808"\w* consume \w that|strong="H3605"\w* \w which|strong="H3605"\w* \w is|strong="H3605"\w* \w left|strong="H8300"\w* \w in|strong="H3808"\w* \w his|strong="H3605"\w* tent. +\q1 +\v 27 \w The|strong="H6965"\w* \w heavens|strong="H8064"\w* \w will|strong="H8064"\w* \w reveal|strong="H1540"\w* \w his|strong="H1540"\w* \w iniquity|strong="H5771"\w*. +\q2 \w The|strong="H6965"\w* \w earth|strong="H8064"\w* \w will|strong="H8064"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H6965"\w* \w him|strong="H1540"\w*. +\q1 +\v 28 \w The|strong="H3117"\w* \w increase|strong="H2981"\w* \w of|strong="H1004"\w* \w his|strong="H1540"\w* \w house|strong="H1004"\w* \w will|strong="H1004"\w* \w depart|strong="H1540"\w*. +\q2 \w They|strong="H3117"\w* \w will|strong="H1004"\w* rush \w away|strong="H1540"\w* \w in|strong="H1004"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H1004"\w* \w his|strong="H1540"\w* wrath. +\q1 +\v 29 \w This|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H2088"\w* \w portion|strong="H2506"\w* \w of|strong="H5159"\w* \w a|strong="H3068"\w* \w wicked|strong="H7563"\w* \w man|strong="H7563"\w* \w from|strong="H2506"\w* God, +\q2 \w the|strong="H2088"\w* \w heritage|strong="H5159"\w* appointed \w to|strong="H5159"\w* \w him|strong="H2088"\w* \w by|strong="H5159"\w* God.” +\c 21 +\p +\v 1 \w Then|strong="H6030"\w* Job \w answered|strong="H6030"\w*, +\q1 +\v 2 “\w Listen|strong="H8085"\w* \w diligently|strong="H8085"\w* \w to|strong="H1961"\w* \w my|strong="H8085"\w* \w speech|strong="H4405"\w*. +\q2 \w Let|strong="H1961"\w* \w this|strong="H2063"\w* \w be|strong="H1961"\w* \w your|strong="H8085"\w* \w consolation|strong="H8575"\w*. +\q1 +\v 3 Allow \w me|strong="H1696"\w*, \w and|strong="H1696"\w* I also will \w speak|strong="H1696"\w*. +\q2 After I \w have|strong="H1696"\w* \w spoken|strong="H1696"\w*, \w mock|strong="H3932"\w* \w on|strong="H1696"\w*. +\q1 +\v 4 As \w for|strong="H3808"\w* \w me|strong="H3808"\w*, \w is|strong="H7307"\w* \w my|strong="H3808"\w* \w complaint|strong="H7879"\w* \w to|strong="H7307"\w* man? +\q2 \w Why|strong="H4069"\w* shouldn’t \w I|strong="H3808"\w* \w be|strong="H3808"\w* \w impatient|strong="H7114"\w*? +\q1 +\v 5 \w Look|strong="H6437"\w* \w at|strong="H5921"\w* \w me|strong="H5921"\w*, \w and|strong="H3027"\w* \w be|strong="H3027"\w* \w astonished|strong="H8074"\w*. +\q2 \w Lay|strong="H7760"\w* \w your|strong="H5921"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w mouth|strong="H6310"\w*. +\q1 +\v 6 \w When|strong="H2142"\w* \w I|strong="H2142"\w* \w remember|strong="H2142"\w*, \w I|strong="H2142"\w* am troubled. +\q2 \w Horror|strong="H6427"\w* takes \w hold|strong="H2142"\w* \w of|strong="H1320"\w* \w my|strong="H2142"\w* \w flesh|strong="H1320"\w*. +\b +\q1 +\v 7 “\w Why|strong="H4069"\w* do \w the|strong="H1571"\w* \w wicked|strong="H7563"\w* \w live|strong="H2421"\w*, +\q2 \w become|strong="H6275"\w* \w old|strong="H6275"\w*, \w yes|strong="H1571"\w*, \w and|strong="H2428"\w* \w grow|strong="H6275"\w* \w mighty|strong="H2428"\w* \w in|strong="H1571"\w* \w power|strong="H2428"\w*? +\q1 +\v 8 \w Their|strong="H6440"\w* \w child|strong="H2233"\w* \w is|strong="H6440"\w* \w established|strong="H3559"\w* \w with|strong="H5973"\w* \w them|strong="H6440"\w* \w in|strong="H6440"\w* \w their|strong="H6440"\w* \w sight|strong="H5869"\w*, +\q2 \w their|strong="H6440"\w* \w offspring|strong="H2233"\w* \w before|strong="H6440"\w* \w their|strong="H6440"\w* \w eyes|strong="H5869"\w*. +\q1 +\v 9 \w Their|strong="H5921"\w* \w houses|strong="H1004"\w* \w are|strong="H1004"\w* \w safe|strong="H7965"\w* \w from|strong="H5921"\w* \w fear|strong="H6343"\w*, +\q2 \w neither|strong="H3808"\w* \w is|strong="H1004"\w* \w the|strong="H5921"\w* \w rod|strong="H7626"\w* \w of|strong="H1004"\w* \w God|strong="H3808"\w* \w upon|strong="H5921"\w* \w them|strong="H5921"\w*. +\q1 +\v 10 \w Their|strong="H3808"\w* \w bulls|strong="H7794"\w* \w breed|strong="H1602"\w* \w without|strong="H3808"\w* \w fail|strong="H5674"\w*. +\q2 \w Their|strong="H3808"\w* \w cows|strong="H6510"\w* \w calve|strong="H6403"\w*, \w and|strong="H7794"\w* don’t \w miscarry|strong="H7921"\w*. +\q1 +\v 11 They \w send|strong="H7971"\w* \w out|strong="H7971"\w* \w their|strong="H7971"\w* \w little|strong="H5759"\w* \w ones|strong="H3206"\w* \w like|strong="H7540"\w* \w a|strong="H3068"\w* \w flock|strong="H6629"\w*. +\q2 \w Their|strong="H7971"\w* \w children|strong="H3206"\w* \w dance|strong="H7540"\w*. +\q1 +\v 12 \w They|strong="H5375"\w* \w sing|strong="H5375"\w* \w to|strong="H5375"\w* \w the|strong="H5375"\w* \w tambourine|strong="H8596"\w* \w and|strong="H6963"\w* \w harp|strong="H3658"\w*, +\q2 \w and|strong="H6963"\w* \w rejoice|strong="H8055"\w* \w at|strong="H5375"\w* \w the|strong="H5375"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H5375"\w* \w pipe|strong="H5748"\w*. +\q1 +\v 13 \w They|strong="H3117"\w* \w spend|strong="H1086"\w* \w their|strong="H3117"\w* \w days|strong="H3117"\w* \w in|strong="H3117"\w* \w prosperity|strong="H2896"\w*. +\q2 \w In|strong="H3117"\w* an \w instant|strong="H7281"\w* \w they|strong="H3117"\w* \w go|strong="H7281"\w* \w down|strong="H5181"\w* \w to|strong="H3117"\w* \w Sheol|strong="H7585"\w*.\f + \fr 21:13 \ft Sheol is the place of the dead. \f* +\q1 +\v 14 \w They|strong="H3808"\w* tell \w God|strong="H3808"\w*, ‘\w Depart|strong="H5493"\w* \w from|strong="H4480"\w* \w us|strong="H4480"\w*, +\q2 \w for|strong="H3808"\w* \w we|strong="H3068"\w* don’t \w want|strong="H2654"\w* \w to|strong="H1870"\w* \w know|strong="H1847"\w* \w about|strong="H4480"\w* \w your|strong="H4480"\w* \w ways|strong="H1870"\w*. +\q1 +\v 15 \w What|strong="H4100"\w* \w is|strong="H4100"\w* \w the|strong="H3588"\w* \w Almighty|strong="H7706"\w*, \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w should|strong="H4100"\w* \w serve|strong="H5647"\w* \w him|strong="H5647"\w*? +\q2 \w What|strong="H4100"\w* \w profit|strong="H3276"\w* \w should|strong="H4100"\w* \w we|strong="H3068"\w* \w have|strong="H3588"\w*, \w if|strong="H3588"\w* \w we|strong="H3068"\w* \w pray|strong="H6293"\w* \w to|strong="H6293"\w* \w him|strong="H5647"\w*?’ +\q1 +\v 16 \w Behold|strong="H2005"\w*, \w their|strong="H3808"\w* \w prosperity|strong="H2898"\w* \w is|strong="H3027"\w* \w not|strong="H3808"\w* \w in|strong="H3027"\w* \w their|strong="H3808"\w* \w hand|strong="H3027"\w*. +\q2 \w The|strong="H4480"\w* \w counsel|strong="H6098"\w* \w of|strong="H3027"\w* \w the|strong="H4480"\w* \w wicked|strong="H7563"\w* \w is|strong="H3027"\w* \w far|strong="H7368"\w* \w from|strong="H4480"\w* \w me|strong="H4480"\w*. +\b +\q1 +\v 17 “\w How|strong="H4100"\w* \w often|strong="H4100"\w* \w is|strong="H4100"\w* \w it|strong="H5921"\w* \w that|strong="H7563"\w* \w the|strong="H5921"\w* \w lamp|strong="H5216"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w wicked|strong="H7563"\w* \w is|strong="H4100"\w* \w put|strong="H1846"\w* \w out|strong="H1846"\w*, +\q2 \w that|strong="H7563"\w* \w their|strong="H5921"\w* calamity comes \w on|strong="H5921"\w* \w them|strong="H5921"\w*, +\q2 \w that|strong="H7563"\w* God distributes \w sorrows|strong="H2256"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* anger? +\q1 +\v 18 How often \w is|strong="H7307"\w* \w it|strong="H6440"\w* \w that|strong="H1961"\w* \w they|strong="H6440"\w* \w are|strong="H1961"\w* \w as|strong="H1961"\w* \w stubble|strong="H8401"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w wind|strong="H7307"\w*, +\q2 \w as|strong="H1961"\w* \w chaff|strong="H4671"\w* \w that|strong="H1961"\w* \w the|strong="H6440"\w* \w storm|strong="H5492"\w* \w carries|strong="H1589"\w* \w away|strong="H1589"\w*? +\q1 +\v 19 \w You|strong="H3045"\w* say, ‘\w God|strong="H7999"\w* lays \w up|strong="H6845"\w* \w his|strong="H3045"\w* iniquity \w for|strong="H1121"\w* \w his|strong="H3045"\w* \w children|strong="H1121"\w*.’ +\q2 Let \w him|strong="H3045"\w* \w recompense|strong="H7999"\w* \w it|strong="H3045"\w* \w to|strong="H1121"\w* \w himself|strong="H3045"\w*, \w that|strong="H3045"\w* \w he|strong="H3045"\w* \w may|strong="H1121"\w* \w know|strong="H3045"\w* \w it|strong="H3045"\w*. +\q1 +\v 20 Let \w his|strong="H7200"\w* \w own|strong="H5869"\w* \w eyes|strong="H5869"\w* \w see|strong="H7200"\w* \w his|strong="H7200"\w* \w destruction|strong="H3589"\w*. +\q2 Let \w him|strong="H7200"\w* \w drink|strong="H8354"\w* \w of|strong="H5869"\w* \w the|strong="H7200"\w* \w wrath|strong="H2534"\w* \w of|strong="H5869"\w* \w the|strong="H7200"\w* \w Almighty|strong="H7706"\w*. +\q1 +\v 21 \w For|strong="H3588"\w* \w what|strong="H4100"\w* \w does|strong="H4100"\w* \w he|strong="H3588"\w* \w care|strong="H2656"\w* \w for|strong="H3588"\w* \w his|strong="H3588"\w* \w house|strong="H1004"\w* \w after|strong="H3588"\w* \w him|strong="H3588"\w*, +\q2 \w when|strong="H3588"\w* \w the|strong="H3588"\w* \w number|strong="H4557"\w* \w of|strong="H1004"\w* \w his|strong="H3588"\w* \w months|strong="H2320"\w* \w is|strong="H4100"\w* \w cut|strong="H2686"\w* \w off|strong="H2686"\w*? +\b +\q1 +\v 22 “\w Shall|strong="H1931"\w* any \w teach|strong="H3925"\w* God \w knowledge|strong="H1847"\w*, +\q2 \w since|strong="H8199"\w* \w he|strong="H1931"\w* \w judges|strong="H8199"\w* \w those|strong="H1931"\w* \w who|strong="H1931"\w* \w are|strong="H8199"\w* \w high|strong="H7311"\w*? +\q1 +\v 23 \w One|strong="H2088"\w* \w dies|strong="H4191"\w* \w in|strong="H4191"\w* \w his|strong="H3605"\w* \w full|strong="H3605"\w* \w strength|strong="H6106"\w*, +\q2 being \w wholly|strong="H3605"\w* \w at|strong="H4191"\w* \w ease|strong="H7961"\w* \w and|strong="H4191"\w* \w quiet|strong="H7961"\w*. +\q1 +\v 24 \w His|strong="H4390"\w* pails \w are|strong="H6106"\w* \w full|strong="H4390"\w* \w of|strong="H4390"\w* \w milk|strong="H2461"\w*. +\q2 \w The|strong="H4390"\w* \w marrow|strong="H4221"\w* \w of|strong="H4390"\w* \w his|strong="H4390"\w* \w bones|strong="H6106"\w* \w is|strong="H6106"\w* \w moistened|strong="H8248"\w*. +\q1 +\v 25 \w Another|strong="H2088"\w* \w dies|strong="H4191"\w* \w in|strong="H4191"\w* \w bitterness|strong="H4751"\w* \w of|strong="H5315"\w* \w soul|strong="H5315"\w*, +\q2 \w and|strong="H2896"\w* \w never|strong="H3808"\w* tastes \w of|strong="H5315"\w* \w good|strong="H2896"\w*. +\q1 +\v 26 \w They|strong="H5921"\w* \w lie|strong="H7901"\w* \w down|strong="H7901"\w* \w alike|strong="H3162"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w dust|strong="H6083"\w*. +\q2 \w The|strong="H5921"\w* \w worm|strong="H7415"\w* \w covers|strong="H3680"\w* \w them|strong="H5921"\w*. +\b +\q1 +\v 27 “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w know|strong="H3045"\w* \w your|strong="H5921"\w* \w thoughts|strong="H4284"\w*, +\q2 \w the|strong="H5921"\w* \w plans|strong="H4284"\w* \w with|strong="H5921"\w* which \w you|strong="H5921"\w* would \w wrong|strong="H2554"\w* \w me|strong="H5921"\w*. +\q1 +\v 28 \w For|strong="H3588"\w* \w you|strong="H3588"\w* say, ‘\w Where|strong="H1004"\w* \w is|strong="H7563"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H3588"\w* \w prince|strong="H5081"\w*? +\q2 \w Where|strong="H1004"\w* \w is|strong="H7563"\w* \w the|strong="H3588"\w* tent \w in|strong="H1004"\w* \w which|strong="H1004"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w* \w lived|strong="H4908"\w*?’ +\q1 +\v 29 Haven’t \w you|strong="H3808"\w* \w asked|strong="H7592"\w* \w wayfaring|strong="H5674"\w* men? +\q2 Don’t \w you|strong="H3808"\w* \w know|strong="H5234"\w* \w their|strong="H3808"\w* evidences, +\q1 +\v 30 \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w evil|strong="H7451"\w* \w man|strong="H7451"\w* \w is|strong="H3117"\w* \w reserved|strong="H2820"\w* \w to|strong="H3117"\w* \w the|strong="H3588"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w calamity|strong="H7451"\w*, +\q2 \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H3117"\w* \w led|strong="H2986"\w* \w out|strong="H7451"\w* \w to|strong="H3117"\w* \w the|strong="H3588"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w wrath|strong="H5678"\w*? +\q1 +\v 31 \w Who|strong="H4310"\w* \w will|strong="H4310"\w* \w declare|strong="H5046"\w* \w his|strong="H6440"\w* \w way|strong="H1870"\w* \w to|strong="H6213"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w*? +\q2 \w Who|strong="H4310"\w* \w will|strong="H4310"\w* \w repay|strong="H7999"\w* \w him|strong="H6440"\w* \w what|strong="H4310"\w* \w he|strong="H1931"\w* \w has|strong="H4310"\w* \w done|strong="H6213"\w*? +\q1 +\v 32 \w Yet|strong="H5921"\w* \w he|strong="H1931"\w* \w will|strong="H1931"\w* \w be|strong="H1931"\w* borne \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w grave|strong="H6913"\w*. +\q2 Men \w will|strong="H1931"\w* \w keep|strong="H8245"\w* \w watch|strong="H8245"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w tomb|strong="H6913"\w*. +\q1 +\v 33 \w The|strong="H3605"\w* \w clods|strong="H7263"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w valley|strong="H5158"\w* \w will|strong="H5158"\w* \w be|strong="H6440"\w* \w sweet|strong="H4985"\w* \w to|strong="H6440"\w* \w him|strong="H6440"\w*. +\q2 \w All|strong="H3605"\w* \w men|strong="H3605"\w* \w will|strong="H5158"\w* \w draw|strong="H4900"\w* after \w him|strong="H6440"\w*, +\q2 \w as|strong="H6440"\w* \w there|strong="H5158"\w* \w were|strong="H3605"\w* \w innumerable|strong="H4557"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\q1 +\v 34 So how can \w you|strong="H7604"\w* \w comfort|strong="H5162"\w* \w me|strong="H5162"\w* with nonsense, +\q2 because \w in|strong="H7604"\w* \w your|strong="H5162"\w* \w answers|strong="H8666"\w* \w there|strong="H7604"\w* \w remains|strong="H7604"\w* only \w falsehood|strong="H4604"\w*?” +\c 22 +\p +\v 1 \w Then|strong="H6030"\w* Eliphaz \w the|strong="H6030"\w* \w Temanite|strong="H8489"\w* \w answered|strong="H6030"\w*, +\q1 +\v 2 “\w Can|strong="H1397"\w* \w a|strong="H3068"\w* \w man|strong="H1397"\w* \w be|strong="H1397"\w* \w profitable|strong="H5532"\w* \w to|strong="H5921"\w* God? +\q2 \w Surely|strong="H3588"\w* \w he|strong="H3588"\w* \w who|strong="H1397"\w* \w is|strong="H1397"\w* \w wise|strong="H7919"\w* \w is|strong="H1397"\w* \w profitable|strong="H5532"\w* \w to|strong="H5921"\w* \w himself|strong="H7919"\w*. +\q1 +\v 3 \w Is|strong="H1870"\w* \w it|strong="H3588"\w* \w any|strong="H3588"\w* \w pleasure|strong="H2656"\w* \w to|strong="H1870"\w* \w the|strong="H3588"\w* \w Almighty|strong="H7706"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H1870"\w* \w righteous|strong="H6663"\w*? +\q2 \w Or|strong="H1870"\w* does \w it|strong="H3588"\w* benefit \w him|strong="H3588"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w make|strong="H8552"\w* \w your|strong="H3588"\w* \w ways|strong="H1870"\w* \w perfect|strong="H8552"\w*? +\q1 +\v 4 \w Is|strong="H4941"\w* \w it|strong="H4941"\w* \w for|strong="H4941"\w* \w your|strong="H5973"\w* \w piety|strong="H3374"\w* that he \w reproves|strong="H3198"\w* \w you|strong="H5973"\w*, +\q2 that he enters \w with|strong="H5973"\w* \w you|strong="H5973"\w* \w into|strong="H4941"\w* \w judgment|strong="H4941"\w*? +\q1 +\v 5 Isn’t \w your|strong="H3808"\w* \w wickedness|strong="H7451"\w* \w great|strong="H7227"\w*? +\q2 \w Neither|strong="H3808"\w* \w is|strong="H5771"\w* there \w any|strong="H3808"\w* \w end|strong="H7093"\w* \w to|strong="H3808"\w* \w your|strong="H3808"\w* \w iniquities|strong="H5771"\w*. +\q1 +\v 6 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* \w taken|strong="H2254"\w* \w pledges|strong="H2254"\w* from \w your|strong="H3588"\w* brother \w for|strong="H3588"\w* \w nothing|strong="H2600"\w*, +\q2 \w and|strong="H6174"\w* \w stripped|strong="H6584"\w* \w the|strong="H3588"\w* \w naked|strong="H6174"\w* of \w their|strong="H3588"\w* clothing. +\q1 +\v 7 \w You|strong="H3808"\w* haven’t \w given|strong="H8248"\w* \w water|strong="H4325"\w* \w to|strong="H4325"\w* \w the|strong="H8248"\w* \w weary|strong="H5889"\w* \w to|strong="H4325"\w* \w drink|strong="H8248"\w*, +\q2 \w and|strong="H3899"\w* \w you|strong="H3808"\w* \w have|strong="H3808"\w* \w withheld|strong="H4513"\w* \w bread|strong="H3899"\w* \w from|strong="H3899"\w* \w the|strong="H8248"\w* \w hungry|strong="H7456"\w*. +\q1 +\v 8 But \w as|strong="H6440"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* \w mighty|strong="H2220"\w* \w man|strong="H5375"\w*, \w he|strong="H6440"\w* \w had|strong="H3427"\w* \w the|strong="H6440"\w* earth. +\q2 \w The|strong="H6440"\w* \w honorable|strong="H5375"\w* \w man|strong="H5375"\w*, \w he|strong="H6440"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w it|strong="H5375"\w*. +\q1 +\v 9 \w You|strong="H7971"\w* \w have|strong="H2220"\w* \w sent|strong="H7971"\w* widows \w away|strong="H7971"\w* \w empty|strong="H7387"\w*, +\q2 \w and|strong="H7971"\w* \w the|strong="H7971"\w* \w arms|strong="H2220"\w* \w of|strong="H2220"\w* \w the|strong="H7971"\w* \w fatherless|strong="H3490"\w* \w have|strong="H2220"\w* been \w broken|strong="H1792"\w*. +\q1 +\v 10 \w Therefore|strong="H3651"\w* \w snares|strong="H6341"\w* \w are|strong="H6341"\w* \w around|strong="H5439"\w* \w you|strong="H5921"\w*. +\q2 \w Sudden|strong="H6597"\w* \w fear|strong="H6343"\w* troubles \w you|strong="H5921"\w*, +\q1 +\v 11 \w or|strong="H3808"\w* \w darkness|strong="H2822"\w*, \w so|strong="H3808"\w* \w that|strong="H7200"\w* \w you|strong="H3808"\w* \w can|strong="H7200"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w*, +\q2 \w and|strong="H7200"\w* floods \w of|strong="H4325"\w* \w waters|strong="H4325"\w* \w cover|strong="H3680"\w* \w you|strong="H3808"\w*. +\b +\q1 +\v 12 “Isn’t \w God|strong="H3808"\w* \w in|strong="H8064"\w* \w the|strong="H7200"\w* \w heights|strong="H7311"\w* \w of|strong="H7218"\w* \w heaven|strong="H8064"\w*? +\q2 \w See|strong="H7200"\w* \w the|strong="H7200"\w* \w height|strong="H1363"\w* \w of|strong="H7218"\w* \w the|strong="H7200"\w* \w stars|strong="H3556"\w*, \w how|strong="H3588"\w* \w high|strong="H7311"\w* \w they|strong="H3588"\w* \w are|strong="H8064"\w*! +\q1 +\v 13 \w You|strong="H3045"\w* say, ‘\w What|strong="H4100"\w* \w does|strong="H4100"\w* God \w know|strong="H3045"\w*? +\q2 \w Can|strong="H4100"\w* \w he|strong="H3045"\w* \w judge|strong="H8199"\w* \w through|strong="H1157"\w* \w the|strong="H3045"\w* \w thick|strong="H6205"\w* \w darkness|strong="H6205"\w*? +\q1 +\v 14 \w Thick|strong="H5645"\w* \w clouds|strong="H5645"\w* \w are|strong="H8064"\w* \w a|strong="H3068"\w* \w covering|strong="H5643"\w* \w to|strong="H1980"\w* \w him|strong="H7200"\w*, \w so|strong="H1980"\w* \w that|strong="H7200"\w* \w he|strong="H3808"\w* doesn’t \w see|strong="H7200"\w*. +\q2 \w He|strong="H3808"\w* \w walks|strong="H1980"\w* \w on|strong="H1980"\w* \w the|strong="H7200"\w* \w vault|strong="H2329"\w* \w of|strong="H8064"\w* \w the|strong="H7200"\w* \w sky|strong="H8064"\w*.’ +\q1 +\v 15 \w Will|strong="H4962"\w* \w you|strong="H8104"\w* \w keep|strong="H8104"\w* \w the|strong="H8104"\w* \w old|strong="H5769"\w* way, +\q2 which wicked \w men|strong="H4962"\w* \w have|strong="H4962"\w* \w trodden|strong="H1869"\w*, +\q1 +\v 16 \w who|strong="H3808"\w* \w were|strong="H3247"\w* \w snatched|strong="H7059"\w* \w away|strong="H3332"\w* \w before|strong="H3808"\w* \w their|strong="H3808"\w* \w time|strong="H6256"\w*, +\q2 \w whose|strong="H5104"\w* \w foundation|strong="H3247"\w* \w was|strong="H3808"\w* \w poured|strong="H3332"\w* \w out|strong="H3332"\w* \w as|strong="H6256"\w* \w a|strong="H3068"\w* \w stream|strong="H5104"\w*, +\q1 +\v 17 \w who|strong="H4100"\w* said \w to|strong="H4480"\w* God, ‘\w Depart|strong="H5493"\w* \w from|strong="H4480"\w* \w us|strong="H4480"\w*!’ +\q2 \w and|strong="H5493"\w*, ‘\w What|strong="H4100"\w* \w can|strong="H4100"\w* \w the|strong="H4480"\w* \w Almighty|strong="H7706"\w* \w do|strong="H6466"\w* \w for|strong="H4480"\w* \w us|strong="H4480"\w*?’ +\q1 +\v 18 Yet \w he|strong="H1931"\w* \w filled|strong="H4390"\w* \w their|strong="H4390"\w* \w houses|strong="H1004"\w* \w with|strong="H4390"\w* \w good|strong="H2896"\w* \w things|strong="H2896"\w*, +\q2 \w but|strong="H7563"\w* \w the|strong="H4480"\w* \w counsel|strong="H6098"\w* \w of|strong="H1004"\w* \w the|strong="H4480"\w* \w wicked|strong="H7563"\w* \w is|strong="H1931"\w* \w far|strong="H7368"\w* \w from|strong="H4480"\w* \w me|strong="H4480"\w*. +\q1 +\v 19 \w The|strong="H7200"\w* \w righteous|strong="H6662"\w* \w see|strong="H7200"\w* \w it|strong="H7200"\w*, \w and|strong="H7200"\w* \w are|strong="H6662"\w* \w glad|strong="H8055"\w*. +\q2 \w The|strong="H7200"\w* \w innocent|strong="H5355"\w* ridicule \w them|strong="H7200"\w*, +\q1 +\v 20 saying, ‘\w Surely|strong="H3808"\w* those \w who|strong="H3808"\w* rose up against us \w are|strong="H7009"\w* \w cut|strong="H3582"\w* \w off|strong="H3582"\w*. +\q2 \w The|strong="H3808"\w* fire has consumed \w their|strong="H3808"\w* \w remnant|strong="H3499"\w*.’ +\b +\q1 +\v 21 “\w Acquaint|strong="H5532"\w* \w yourself|strong="H5973"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w* \w now|strong="H4994"\w*, \w and|strong="H2896"\w* \w be|strong="H4994"\w* \w at|strong="H5973"\w* \w peace|strong="H7999"\w*. +\q2 \w By|strong="H5973"\w* \w it|strong="H7999"\w*, \w good|strong="H2896"\w* \w will|strong="H2896"\w* \w come|strong="H4994"\w* \w to|strong="H5973"\w* \w you|strong="H5973"\w*. +\q1 +\v 22 \w Please|strong="H4994"\w* \w receive|strong="H3947"\w* \w instruction|strong="H8451"\w* \w from|strong="H3947"\w* \w his|strong="H7760"\w* \w mouth|strong="H6310"\w*, +\q2 \w and|strong="H6310"\w* \w lay|strong="H7760"\w* \w up|strong="H7760"\w* \w his|strong="H7760"\w* \w words|strong="H6310"\w* \w in|strong="H6310"\w* \w your|strong="H3947"\w* \w heart|strong="H3824"\w*. +\q1 +\v 23 If \w you|strong="H5704"\w* \w return|strong="H7725"\w* \w to|strong="H5704"\w* \w the|strong="H7725"\w* \w Almighty|strong="H7706"\w*, \w you|strong="H5704"\w* \w will|strong="H5704"\w* \w be|strong="H7725"\w* \w built|strong="H1129"\w* \w up|strong="H1129"\w*, +\q2 if \w you|strong="H5704"\w* \w put|strong="H7725"\w* \w away|strong="H7725"\w* \w unrighteousness|strong="H5766"\w* \w far|strong="H5704"\w* \w from|strong="H7725"\w* \w your|strong="H7725"\w* tents. +\q1 +\v 24 \w Lay|strong="H7896"\w* \w your|strong="H5921"\w* treasure \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w dust|strong="H6083"\w*, +\q2 \w the|strong="H5921"\w* \w gold|strong="H1220"\w* \w of|strong="H5921"\w* Ophir \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w stones|strong="H6697"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w brooks|strong="H5158"\w*. +\q1 +\v 25 \w The|strong="H1961"\w* \w Almighty|strong="H7706"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w your|strong="H1961"\w* treasure, +\q2 \w and|strong="H3701"\w* precious \w silver|strong="H3701"\w* \w to|strong="H1961"\w* \w you|strong="H1961"\w*. +\q1 +\v 26 \w For|strong="H3588"\w* \w then|strong="H5375"\w* \w you|strong="H3588"\w* \w will|strong="H3588"\w* \w delight|strong="H6026"\w* \w yourself|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w Almighty|strong="H7706"\w*, +\q2 \w and|strong="H6440"\w* \w will|strong="H3588"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H5921"\w* \w face|strong="H6440"\w* \w to|strong="H5921"\w* God. +\q1 +\v 27 \w You|strong="H7999"\w* \w will|strong="H8085"\w* \w make|strong="H7999"\w* \w your|strong="H8085"\w* \w prayer|strong="H6279"\w* \w to|strong="H8085"\w* \w him|strong="H8085"\w*, \w and|strong="H8085"\w* he \w will|strong="H8085"\w* \w hear|strong="H8085"\w* \w you|strong="H7999"\w*. +\q2 \w You|strong="H7999"\w* \w will|strong="H8085"\w* \w pay|strong="H7999"\w* \w your|strong="H8085"\w* \w vows|strong="H5088"\w*. +\q1 +\v 28 \w You|strong="H5921"\w* \w will|strong="H1870"\w* also \w decree|strong="H1504"\w* \w a|strong="H3068"\w* thing, \w and|strong="H6965"\w* \w it|strong="H5921"\w* \w will|strong="H1870"\w* \w be|strong="H1870"\w* \w established|strong="H6965"\w* \w to|strong="H5921"\w* \w you|strong="H5921"\w*. +\q2 \w Light|strong="H5050"\w* \w will|strong="H1870"\w* \w shine|strong="H5050"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w ways|strong="H1870"\w*. +\q1 +\v 29 \w When|strong="H3588"\w* \w they|strong="H3588"\w* \w cast|strong="H8213"\w* \w down|strong="H8213"\w*, \w you|strong="H3588"\w* \w will|strong="H5869"\w* say, ‘\w be|strong="H5869"\w* lifted \w up|strong="H1466"\w*.’ +\q2 \w He|strong="H3588"\w* \w will|strong="H5869"\w* \w save|strong="H3467"\w* \w the|strong="H3588"\w* \w humble|strong="H7807"\w* \w person|strong="H5869"\w*. +\q1 +\v 30 \w He|strong="H3709"\w* \w will|strong="H5355"\w* even \w deliver|strong="H4422"\w* \w him|strong="H4422"\w* who \w is|strong="H3709"\w* not \w innocent|strong="H5355"\w*. +\q2 Yes, \w he|strong="H3709"\w* \w will|strong="H5355"\w* be \w delivered|strong="H4422"\w* through \w the|strong="H4422"\w* \w cleanness|strong="H1252"\w* \w of|strong="H3709"\w* \w your|strong="H4422"\w* \w hands|strong="H3709"\w*.” +\c 23 +\p +\v 1 \w Then|strong="H6030"\w* Job \w answered|strong="H6030"\w*, +\q1 +\v 2 “\w Even|strong="H1571"\w* \w today|strong="H3117"\w* \w my|strong="H5921"\w* \w complaint|strong="H7879"\w* \w is|strong="H3117"\w* \w rebellious|strong="H4805"\w*. +\q2 \w His|strong="H5921"\w* \w hand|strong="H3027"\w* \w is|strong="H3117"\w* \w heavy|strong="H3513"\w* \w in|strong="H5921"\w* \w spite|strong="H5921"\w* \w of|strong="H3117"\w* \w my|strong="H5921"\w* groaning. +\q1 +\v 3 \w Oh|strong="H4310"\w* \w that|strong="H3045"\w* \w I|strong="H5414"\w* \w knew|strong="H3045"\w* where \w I|strong="H5414"\w* might \w find|strong="H4672"\w* \w him|strong="H5414"\w*! +\q2 \w That|strong="H3045"\w* \w I|strong="H5414"\w* might \w come|strong="H4672"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w his|strong="H5414"\w* \w seat|strong="H8499"\w*! +\q1 +\v 4 \w I|strong="H6440"\w* would \w set|strong="H4390"\w* \w my|strong="H6440"\w* \w cause|strong="H4941"\w* \w in|strong="H6440"\w* \w order|strong="H6186"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, +\q2 \w and|strong="H4941"\w* \w fill|strong="H4390"\w* \w my|strong="H6440"\w* \w mouth|strong="H6310"\w* \w with|strong="H4390"\w* \w arguments|strong="H8433"\w*. +\q1 +\v 5 \w I|strong="H3045"\w* \w would|strong="H4100"\w* \w know|strong="H3045"\w* \w the|strong="H3045"\w* \w words|strong="H4405"\w* \w which|strong="H4100"\w* \w he|strong="H4100"\w* \w would|strong="H4100"\w* \w answer|strong="H6030"\w* \w me|strong="H6030"\w*, +\q2 \w and|strong="H6030"\w* \w understand|strong="H3045"\w* \w what|strong="H4100"\w* \w he|strong="H4100"\w* \w would|strong="H4100"\w* \w tell|strong="H3045"\w* \w me|strong="H6030"\w*. +\q1 +\v 6 \w Would|strong="H5978"\w* \w he|strong="H1931"\w* \w contend|strong="H7378"\w* \w with|strong="H7378"\w* \w me|strong="H5978"\w* \w in|strong="H7227"\w* \w the|strong="H7760"\w* greatness \w of|strong="H7227"\w* \w his|strong="H7760"\w* \w power|strong="H3581"\w*? +\q2 \w No|strong="H3808"\w*, \w but|strong="H3808"\w* \w he|strong="H1931"\w* \w would|strong="H5978"\w* listen \w to|strong="H3808"\w* \w me|strong="H5978"\w*. +\q1 +\v 7 \w There|strong="H8033"\w* \w the|strong="H8199"\w* \w upright|strong="H3477"\w* \w might|strong="H3477"\w* \w reason|strong="H3198"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*, +\q2 \w so|strong="H8033"\w* \w I|strong="H8033"\w* should \w be|strong="H5331"\w* \w delivered|strong="H6403"\w* \w forever|strong="H5331"\w* \w from|strong="H5973"\w* \w my|strong="H5973"\w* \w judge|strong="H8199"\w*. +\b +\q1 +\v 8 “\w If|strong="H2005"\w* \w I|strong="H2005"\w* \w go|strong="H1980"\w* \w east|strong="H6924"\w*, \w he|strong="H3808"\w* \w is|strong="H3808"\w* \w not|strong="H3808"\w* \w there|strong="H6924"\w*. +\q2 \w If|strong="H2005"\w* \w I|strong="H2005"\w* \w go|strong="H1980"\w* west, \w I|strong="H2005"\w* \w can|strong="H1980"\w*’t find \w him|strong="H1980"\w*. +\q1 +\v 9 \w He|strong="H6213"\w* \w works|strong="H6213"\w* \w to|strong="H6213"\w* \w the|strong="H7200"\w* \w north|strong="H8040"\w*, \w but|strong="H3808"\w* \w I|strong="H7200"\w* \w can|strong="H6213"\w*’t \w see|strong="H7200"\w* \w him|strong="H6213"\w*. +\q2 \w He|strong="H6213"\w* \w turns|strong="H5848"\w* \w south|strong="H3225"\w*, \w but|strong="H3808"\w* \w I|strong="H7200"\w* \w can|strong="H6213"\w*’t catch \w a|strong="H3068"\w* glimpse \w of|strong="H6213"\w* \w him|strong="H6213"\w*. +\b +\q1 +\v 10 \w But|strong="H3588"\w* \w he|strong="H3588"\w* \w knows|strong="H3045"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w take|strong="H3318"\w*. +\q2 \w When|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* tried \w me|strong="H5978"\w*, \w I|strong="H3588"\w* \w will|strong="H3045"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w like|strong="H3318"\w* \w gold|strong="H2091"\w*. +\q1 +\v 11 \w My|strong="H8104"\w* \w foot|strong="H7272"\w* \w has|strong="H7272"\w* \w held|strong="H5186"\w* fast \w to|strong="H8104"\w* \w his|strong="H8104"\w* \w steps|strong="H7272"\w*. +\q2 \w I|strong="H3808"\w* \w have|strong="H3808"\w* \w kept|strong="H8104"\w* \w his|strong="H8104"\w* \w way|strong="H1870"\w*, \w and|strong="H1870"\w* \w not|strong="H3808"\w* \w turned|strong="H5186"\w* \w away|strong="H5186"\w*. +\q1 +\v 12 \w I|strong="H3808"\w* haven’t \w gone|strong="H3808"\w* \w back|strong="H4185"\w* \w from|strong="H4185"\w* \w the|strong="H3808"\w* \w commandment|strong="H4687"\w* \w of|strong="H6310"\w* \w his|strong="H3808"\w* \w lips|strong="H8193"\w*. +\q2 \w I|strong="H3808"\w* \w have|strong="H8193"\w* \w treasured|strong="H6845"\w* \w up|strong="H6845"\w* \w the|strong="H3808"\w* \w words|strong="H8193"\w* \w of|strong="H6310"\w* \w his|strong="H3808"\w* \w mouth|strong="H6310"\w* \w more|strong="H3808"\w* \w than|strong="H3808"\w* \w my|strong="H6845"\w* \w necessary|strong="H2706"\w* \w food|strong="H2706"\w*. +\q1 +\v 13 \w But|strong="H1931"\w* \w he|strong="H1931"\w* stands \w alone|strong="H1931"\w*, \w and|strong="H7725"\w* \w who|strong="H4310"\w* \w can|strong="H4310"\w* oppose \w him|strong="H7725"\w*? +\q2 \w What|strong="H4310"\w* \w his|strong="H7725"\w* \w soul|strong="H5315"\w* desires, \w even|strong="H6213"\w* \w that|strong="H1931"\w* \w he|strong="H1931"\w* \w does|strong="H6213"\w*. +\q1 +\v 14 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w performs|strong="H7999"\w* \w that|strong="H3588"\w* \w which|strong="H2706"\w* \w is|strong="H2706"\w* \w appointed|strong="H2706"\w* \w for|strong="H3588"\w* \w me|strong="H5973"\w*. +\q2 \w Many|strong="H7227"\w* \w such|strong="H2007"\w* \w things|strong="H2007"\w* \w are|strong="H7227"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*. +\q1 +\v 15 \w Therefore|strong="H3651"\w* \w I|strong="H5921"\w* am \w terrified|strong="H6342"\w* \w at|strong="H5921"\w* \w his|strong="H6440"\w* \w presence|strong="H6440"\w*. +\q2 \w When|strong="H4480"\w* \w I|strong="H5921"\w* consider, \w I|strong="H5921"\w* am \w afraid|strong="H6342"\w* \w of|strong="H6440"\w* \w him|strong="H6440"\w*. +\q1 +\v 16 \w For|strong="H3820"\w* God \w has|strong="H3820"\w* made \w my|strong="H3820"\w* \w heart|strong="H3820"\w* \w faint|strong="H7401"\w*. +\q2 \w The|strong="H3820"\w* \w Almighty|strong="H7706"\w* \w has|strong="H3820"\w* terrified \w me|strong="H3820"\w*. +\q1 +\v 17 \w Because|strong="H3588"\w* \w I|strong="H3588"\w* \w was|strong="H6440"\w* \w not|strong="H3808"\w* \w cut|strong="H6789"\w* \w off|strong="H6789"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w darkness|strong="H2822"\w*, +\q2 \w neither|strong="H3808"\w* \w did|strong="H3808"\w* \w he|strong="H3588"\w* \w cover|strong="H3680"\w* \w the|strong="H6440"\w* thick \w darkness|strong="H2822"\w* \w from|strong="H6440"\w* \w my|strong="H3588"\w* \w face|strong="H6440"\w*. +\b +\c 24 +\b +\q1 +\v 1 “\w Why|strong="H4069"\w* aren’t \w times|strong="H6256"\w* laid \w up|strong="H6845"\w* \w by|strong="H3117"\w* \w the|strong="H3117"\w* \w Almighty|strong="H7706"\w*? +\q2 \w Why|strong="H4069"\w* don’t those \w who|strong="H3045"\w* \w know|strong="H3045"\w* \w him|strong="H3045"\w* \w see|strong="H2372"\w* \w his|strong="H3045"\w* \w days|strong="H3117"\w*? +\q1 +\v 2 There \w are|strong="H7462"\w* people \w who|strong="H7462"\w* \w remove|strong="H5381"\w* \w the|strong="H7462"\w* \w landmarks|strong="H1367"\w*. +\q2 They violently \w take|strong="H1497"\w* \w away|strong="H1497"\w* \w flocks|strong="H5739"\w*, \w and|strong="H7462"\w* \w feed|strong="H7462"\w* \w them|strong="H7462"\w*. +\q1 +\v 3 \w They|strong="H2254"\w* \w drive|strong="H5090"\w* \w away|strong="H5090"\w* \w the|strong="H5090"\w* \w donkey|strong="H2543"\w* \w of|strong="H2543"\w* \w the|strong="H5090"\w* \w fatherless|strong="H3490"\w*, +\q2 \w and|strong="H7794"\w* \w they|strong="H2254"\w* \w take|strong="H2254"\w* \w the|strong="H5090"\w* widow’s \w ox|strong="H7794"\w* \w for|strong="H7794"\w* \w a|strong="H3068"\w* \w pledge|strong="H2254"\w*. +\q1 +\v 4 \w They|strong="H3162"\w* \w turn|strong="H5186"\w* \w the|strong="H1870"\w* needy \w out|strong="H5186"\w* \w of|strong="H1870"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w*. +\q2 \w The|strong="H1870"\w* \w poor|strong="H6035"\w* \w of|strong="H1870"\w* \w the|strong="H1870"\w* earth \w all|strong="H3162"\w* \w hide|strong="H2244"\w* \w themselves|strong="H2244"\w*. +\q1 +\v 5 \w Behold|strong="H2005"\w*, \w as|strong="H3318"\w* \w wild|strong="H6501"\w* \w donkeys|strong="H6501"\w* \w in|strong="H3899"\w* \w the|strong="H3318"\w* \w desert|strong="H6160"\w*, +\q2 \w they|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w their|strong="H3318"\w* \w work|strong="H6467"\w*, \w seeking|strong="H7836"\w* \w diligently|strong="H7836"\w* \w for|strong="H3318"\w* \w food|strong="H3899"\w*. +\q1 \w The|strong="H3318"\w* \w wilderness|strong="H4057"\w* yields \w them|strong="H3318"\w* \w bread|strong="H3899"\w* \w for|strong="H3318"\w* \w their|strong="H3318"\w* \w children|strong="H5288"\w*. +\q2 +\v 6 They cut \w their|strong="H7114"\w* food \w in|strong="H7114"\w* \w the|strong="H7114"\w* \w field|strong="H7704"\w*. +\q1 They \w glean|strong="H3953"\w* \w the|strong="H7114"\w* \w vineyard|strong="H3754"\w* \w of|strong="H7704"\w* \w the|strong="H7114"\w* \w wicked|strong="H7563"\w*. +\q2 +\v 7 \w They|strong="H3830"\w* \w lie|strong="H3885"\w* \w all|strong="H3885"\w* \w night|strong="H3885"\w* \w naked|strong="H6174"\w* \w without|strong="H1097"\w* \w clothing|strong="H3830"\w*, +\q1 \w and|strong="H6174"\w* have \w no|strong="H1097"\w* \w covering|strong="H3682"\w* \w in|strong="H3885"\w* \w the|strong="H3885"\w* \w cold|strong="H7135"\w*. +\q2 +\v 8 They \w are|strong="H2022"\w* \w wet|strong="H7372"\w* \w with|strong="H2022"\w* \w the|strong="H2022"\w* \w showers|strong="H2230"\w* \w of|strong="H2022"\w* \w the|strong="H2022"\w* \w mountains|strong="H2022"\w*, +\q1 \w and|strong="H2022"\w* \w embrace|strong="H2263"\w* \w the|strong="H2022"\w* \w rock|strong="H6697"\w* \w for|strong="H6697"\w* \w lack|strong="H1097"\w* \w of|strong="H2022"\w* \w a|strong="H3068"\w* \w shelter|strong="H4268"\w*. +\q2 +\v 9 There \w are|strong="H7699"\w* those \w who|strong="H6041"\w* \w pluck|strong="H1497"\w* \w the|strong="H1497"\w* \w fatherless|strong="H3490"\w* from \w the|strong="H1497"\w* \w breast|strong="H7699"\w*, +\q1 \w and|strong="H6041"\w* \w take|strong="H2254"\w* \w a|strong="H3068"\w* \w pledge|strong="H2254"\w* \w of|strong="H7699"\w* \w the|strong="H1497"\w* \w poor|strong="H6041"\w*, +\q2 +\v 10 \w so|strong="H1980"\w* \w that|strong="H1097"\w* \w they|strong="H5375"\w* \w go|strong="H1980"\w* \w around|strong="H1980"\w* \w naked|strong="H6174"\w* \w without|strong="H1097"\w* \w clothing|strong="H3830"\w*. +\q2 Being \w hungry|strong="H7456"\w*, \w they|strong="H5375"\w* \w carry|strong="H5375"\w* \w the|strong="H5375"\w* \w sheaves|strong="H6016"\w*. +\q1 +\v 11 \w They|strong="H7791"\w* make \w oil|strong="H6671"\w* within \w the|strong="H1869"\w* \w walls|strong="H7791"\w* \w of|strong="H1869"\w* these men. +\q2 \w They|strong="H7791"\w* \w tread|strong="H1869"\w* \w wine|strong="H3342"\w* \w presses|strong="H3342"\w*, and suffer \w thirst|strong="H6770"\w*. +\q1 +\v 12 \w From|strong="H5315"\w* \w out|strong="H7768"\w* \w of|strong="H5892"\w* \w the|strong="H7760"\w* populous \w city|strong="H5892"\w*, \w men|strong="H4962"\w* \w groan|strong="H5008"\w*. +\q2 \w The|strong="H7760"\w* \w soul|strong="H5315"\w* \w of|strong="H5892"\w* \w the|strong="H7760"\w* \w wounded|strong="H2491"\w* \w cries|strong="H7768"\w* \w out|strong="H7768"\w*, +\q2 \w yet|strong="H3808"\w* \w God|strong="H3808"\w* doesn’t \w regard|strong="H7760"\w* \w the|strong="H7760"\w* \w folly|strong="H8604"\w*. +\b +\q1 +\v 13 “\w These|strong="H1992"\w* \w are|strong="H1992"\w* \w of|strong="H3427"\w* \w those|strong="H1992"\w* \w who|strong="H3427"\w* \w rebel|strong="H4775"\w* \w against|strong="H4775"\w* \w the|strong="H1870"\w* light. +\q2 \w They|strong="H1992"\w* don’t \w know|strong="H5234"\w* \w its|strong="H5234"\w* \w ways|strong="H1870"\w*, +\q2 \w nor|strong="H3808"\w* \w stay|strong="H3427"\w* \w in|strong="H3427"\w* \w its|strong="H5234"\w* \w paths|strong="H5410"\w*. +\q1 +\v 14 \w The|strong="H6965"\w* \w murderer|strong="H7523"\w* \w rises|strong="H6965"\w* \w with|strong="H6041"\w* \w the|strong="H6965"\w* light. +\q2 He \w kills|strong="H7523"\w* \w the|strong="H6965"\w* \w poor|strong="H6041"\w* \w and|strong="H6965"\w* \w needy|strong="H6041"\w*. +\q2 \w In|strong="H6965"\w* \w the|strong="H6965"\w* \w night|strong="H3915"\w* he \w is|strong="H1961"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w thief|strong="H1590"\w*. +\q1 +\v 15 \w The|strong="H6440"\w* \w eye|strong="H5869"\w* \w also|strong="H5869"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w adulterer|strong="H5003"\w* \w waits|strong="H8104"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* \w twilight|strong="H5399"\w*, +\q2 saying, ‘\w No|strong="H3808"\w* \w eye|strong="H5869"\w* \w will|strong="H5869"\w* \w see|strong="H5869"\w* \w me|strong="H6440"\w*.’ +\q2 \w He|strong="H3808"\w* \w disguises|strong="H7760"\w* \w his|strong="H8104"\w* \w face|strong="H6440"\w*. +\q1 +\v 16 \w In|strong="H1004"\w* \w the|strong="H3045"\w* \w dark|strong="H2822"\w* \w they|strong="H3808"\w* \w dig|strong="H2864"\w* \w through|strong="H2864"\w* \w houses|strong="H1004"\w*. +\q2 \w They|strong="H3808"\w* \w shut|strong="H2856"\w* \w themselves|strong="H3045"\w* \w up|strong="H2856"\w* \w in|strong="H1004"\w* \w the|strong="H3045"\w* \w daytime|strong="H3119"\w*. +\q2 \w They|strong="H3808"\w* don’t \w know|strong="H3045"\w* \w the|strong="H3045"\w* light. +\q1 +\v 17 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w morning|strong="H1242"\w* \w is|strong="H1242"\w* \w to|strong="H1242"\w* \w all|strong="H3162"\w* \w of|strong="H6757"\w* \w them|strong="H3588"\w* \w like|strong="H3162"\w* \w thick|strong="H6757"\w* \w darkness|strong="H6757"\w*, +\q2 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w know|strong="H5234"\w* \w the|strong="H3588"\w* \w terrors|strong="H1091"\w* \w of|strong="H6757"\w* \w the|strong="H3588"\w* \w thick|strong="H6757"\w* \w darkness|strong="H6757"\w*. +\b +\q1 +\v 18 “\w They|strong="H3808"\w* \w are|strong="H1870"\w* \w foam|strong="H7031"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w waters|strong="H4325"\w*. +\q2 \w Their|strong="H6440"\w* \w portion|strong="H2513"\w* \w is|strong="H1931"\w* \w cursed|strong="H7043"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* earth. +\q2 \w They|strong="H3808"\w* don’t \w turn|strong="H6437"\w* \w into|strong="H5921"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w vineyards|strong="H3754"\w*. +\q1 +\v 19 \w Drought|strong="H6723"\w* \w and|strong="H4325"\w* \w heat|strong="H2527"\w* \w consume|strong="H1497"\w* \w the|strong="H1571"\w* \w snow|strong="H7950"\w* \w waters|strong="H4325"\w*, +\q2 \w so|strong="H1571"\w* \w does|strong="H1571"\w* \w Sheol|strong="H7585"\w*\f + \fr 24:19 \ft Sheol is the place of the dead.\f* those who \w have|strong="H1571"\w* \w sinned|strong="H2398"\w*. +\q1 +\v 20 \w The|strong="H7665"\w* \w womb|strong="H7358"\w* \w will|strong="H3808"\w* \w forget|strong="H7911"\w* \w him|strong="H2142"\w*. +\q2 \w The|strong="H7665"\w* \w worm|strong="H7415"\w* \w will|strong="H3808"\w* feed \w sweetly|strong="H4988"\w* \w on|strong="H3808"\w* \w him|strong="H2142"\w*. +\q2 \w He|strong="H3808"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w remembered|strong="H2142"\w*. +\q2 \w Unrighteousness|strong="H5766"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w broken|strong="H7665"\w* \w as|strong="H5750"\w* \w a|strong="H3068"\w* \w tree|strong="H6086"\w*. +\q1 +\v 21 \w He|strong="H3808"\w* devours \w the|strong="H3205"\w* \w barren|strong="H6135"\w* \w who|strong="H7462"\w* don’t \w bear|strong="H3205"\w*. +\q2 \w He|strong="H3808"\w* shows \w no|strong="H3808"\w* kindness \w to|strong="H3205"\w* \w the|strong="H3205"\w* widow. +\q1 +\v 22 \w Yet|strong="H3808"\w* \w God|strong="H3808"\w* preserves \w the|strong="H6965"\w* \w mighty|strong="H3581"\w* \w by|strong="H6965"\w* \w his|strong="H6965"\w* \w power|strong="H3581"\w*. +\q2 \w He|strong="H3808"\w* \w rises|strong="H6965"\w* \w up|strong="H6965"\w* \w who|strong="H2416"\w* \w has|strong="H3581"\w* \w no|strong="H3808"\w* assurance \w of|strong="H2416"\w* \w life|strong="H2416"\w*. +\q1 +\v 23 \w God|strong="H5414"\w* \w gives|strong="H5414"\w* \w them|strong="H5414"\w* security, \w and|strong="H5869"\w* \w they|strong="H5921"\w* \w rest|strong="H8172"\w* \w in|strong="H5921"\w* \w it|strong="H5414"\w*. +\q2 \w His|strong="H5414"\w* \w eyes|strong="H5869"\w* \w are|strong="H5869"\w* \w on|strong="H5921"\w* \w their|strong="H5414"\w* \w ways|strong="H1870"\w*. +\q1 +\v 24 \w They|strong="H3605"\w* \w are|strong="H7641"\w* \w exalted|strong="H7426"\w*; \w yet|strong="H3605"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w while|strong="H4592"\w*, \w and|strong="H7218"\w* \w they|strong="H3605"\w* \w are|strong="H7641"\w* gone. +\q2 Yes, \w they|strong="H3605"\w* \w are|strong="H7641"\w* \w brought|strong="H4355"\w* \w low|strong="H4355"\w*, \w they|strong="H3605"\w* \w are|strong="H7641"\w* taken \w out|strong="H3605"\w* \w of|strong="H7218"\w* \w the|strong="H3605"\w* \w way|strong="H4592"\w* \w as|strong="H3605"\w* \w all|strong="H3605"\w* others, +\q2 \w and|strong="H7218"\w* \w are|strong="H7641"\w* cut \w off|strong="H5243"\w* \w as|strong="H3605"\w* \w the|strong="H3605"\w* \w tops|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H3605"\w* \w ears|strong="H7641"\w* \w of|strong="H7218"\w* \w grain|strong="H7641"\w*. +\q1 +\v 25 \w If|strong="H7760"\w* \w it|strong="H7760"\w* isn’t \w so|strong="H3808"\w* \w now|strong="H7760"\w*, \w who|strong="H4310"\w* \w will|strong="H4310"\w* \w prove|strong="H3576"\w* \w me|strong="H7760"\w* \w a|strong="H3068"\w* \w liar|strong="H3576"\w*, +\q2 \w and|strong="H3808"\w* \w make|strong="H7760"\w* \w my|strong="H7760"\w* \w speech|strong="H4405"\w* worth \w nothing|strong="H3808"\w*?” +\b +\c 25 +\p +\v 1 \w Then|strong="H6030"\w* \w Bildad|strong="H1085"\w* \w the|strong="H6030"\w* \w Shuhite|strong="H7747"\w* \w answered|strong="H6030"\w*, +\q1 +\v 2 “\w Dominion|strong="H4910"\w* \w and|strong="H6213"\w* \w fear|strong="H6343"\w* \w are|strong="H6213"\w* \w with|strong="H5973"\w* \w him|strong="H6213"\w*. +\q2 \w He|strong="H6213"\w* \w makes|strong="H6213"\w* \w peace|strong="H7965"\w* \w in|strong="H6213"\w* \w his|strong="H6213"\w* \w high|strong="H4791"\w* \w places|strong="H4791"\w*. +\q1 +\v 3 \w Can|strong="H4310"\w* \w his|strong="H5921"\w* \w armies|strong="H3808"\w* \w be|strong="H3426"\w* \w counted|strong="H4557"\w*? +\q2 \w On|strong="H5921"\w* \w whom|strong="H4310"\w* \w does|strong="H3808"\w* \w his|strong="H5921"\w* light \w not|strong="H3808"\w* \w arise|strong="H6965"\w*? +\q1 +\v 4 \w How|strong="H4100"\w* \w then|strong="H4100"\w* \w can|strong="H4100"\w* man be \w just|strong="H6663"\w* \w with|strong="H5973"\w* God? +\q2 Or \w how|strong="H4100"\w* \w can|strong="H4100"\w* \w he|strong="H4100"\w* \w who|strong="H4100"\w* \w is|strong="H4100"\w* \w born|strong="H3205"\w* \w of|strong="H3205"\w* \w a|strong="H3068"\w* \w woman|strong="H3205"\w* be \w clean|strong="H2135"\w*? +\q1 +\v 5 \w Behold|strong="H2005"\w*, \w even|strong="H5704"\w* \w the|strong="H5704"\w* \w moon|strong="H3394"\w* \w has|strong="H5869"\w* \w no|strong="H3808"\w* brightness, +\q2 \w and|strong="H5869"\w* \w the|strong="H5704"\w* \w stars|strong="H3556"\w* \w are|strong="H5869"\w* \w not|strong="H3808"\w* \w pure|strong="H2141"\w* \w in|strong="H3808"\w* \w his|strong="H3808"\w* \w sight|strong="H5869"\w*; +\q1 +\v 6 \w How|strong="H3588"\w* much \w less|strong="H3588"\w* \w man|strong="H1121"\w*, \w who|strong="H1121"\w* \w is|strong="H1121"\w* \w a|strong="H3068"\w* \w worm|strong="H7415"\w*, +\q2 \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w who|strong="H1121"\w* \w is|strong="H1121"\w* \w a|strong="H3068"\w* \w worm|strong="H7415"\w*!” +\c 26 +\p +\v 1 \w Then|strong="H6030"\w* Job \w answered|strong="H6030"\w*, +\q1 +\v 2 “\w How|strong="H4100"\w* \w have|strong="H3808"\w* \w you|strong="H3808"\w* \w helped|strong="H5826"\w* \w him|strong="H5826"\w* \w who|strong="H4100"\w* \w is|strong="H4100"\w* \w without|strong="H3808"\w* \w power|strong="H3581"\w*! +\q2 \w How|strong="H4100"\w* \w have|strong="H3808"\w* \w you|strong="H3808"\w* \w saved|strong="H3467"\w* \w the|strong="H3808"\w* \w arm|strong="H2220"\w* \w that|strong="H3808"\w* \w has|strong="H4100"\w* \w no|strong="H3808"\w* \w strength|strong="H5797"\w*! +\q1 +\v 3 \w How|strong="H4100"\w* \w have|strong="H3045"\w* \w you|strong="H3045"\w* \w counseled|strong="H3289"\w* \w him|strong="H3045"\w* \w who|strong="H3045"\w* \w has|strong="H4100"\w* \w no|strong="H3808"\w* \w wisdom|strong="H2451"\w*, +\q2 \w and|strong="H2451"\w* \w plentifully|strong="H7230"\w* \w declared|strong="H3045"\w* \w sound|strong="H8454"\w* \w knowledge|strong="H3045"\w*! +\q1 +\v 4 \w To|strong="H3318"\w* \w whom|strong="H4310"\w* \w have|strong="H4405"\w* \w you|strong="H5046"\w* \w uttered|strong="H5046"\w* \w words|strong="H4405"\w*? +\q2 \w Whose|strong="H4310"\w* \w spirit|strong="H5397"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4480"\w* \w you|strong="H5046"\w*? +\b +\q1 +\v 5 “\w The|strong="H8478"\w* \w departed|strong="H7496"\w* \w spirits|strong="H7496"\w* \w tremble|strong="H2342"\w*, +\q2 those \w beneath|strong="H8478"\w* \w the|strong="H8478"\w* \w waters|strong="H4325"\w* \w and|strong="H4325"\w* \w all|strong="H7931"\w* \w that|strong="H4325"\w* \w live|strong="H7931"\w* \w in|strong="H7931"\w* \w them|strong="H8478"\w*. +\q1 +\v 6 \w Sheol|strong="H7585"\w*\f + \fr 26:6 \ft Sheol is the place of the dead.\f* \w is|strong="H6174"\w* \w naked|strong="H6174"\w* \w before|strong="H5048"\w* God, +\q2 \w and|strong="H6174"\w* Abaddon\f + \fr 26:6 \ft Abaddon means Destroyer.\f* \w has|strong="H7585"\w* no \w covering|strong="H3682"\w*. +\q1 +\v 7 \w He|strong="H5921"\w* \w stretches|strong="H5186"\w* \w out|strong="H5186"\w* \w the|strong="H5921"\w* \w north|strong="H6828"\w* \w over|strong="H5921"\w* \w empty|strong="H8414"\w* \w space|strong="H8414"\w*, +\q2 \w and|strong="H6828"\w* \w hangs|strong="H8518"\w* \w the|strong="H5921"\w* earth \w on|strong="H5921"\w* \w nothing|strong="H8414"\w*. +\q1 +\v 8 \w He|strong="H3808"\w* \w binds|strong="H6887"\w* \w up|strong="H1234"\w* \w the|strong="H8478"\w* \w waters|strong="H4325"\w* \w in|strong="H3808"\w* \w his|strong="H8478"\w* \w thick|strong="H5645"\w* \w clouds|strong="H5645"\w*, +\q2 \w and|strong="H4325"\w* \w the|strong="H8478"\w* \w cloud|strong="H6051"\w* \w is|strong="H4325"\w* \w not|strong="H3808"\w* \w burst|strong="H1234"\w* \w under|strong="H8478"\w* \w them|strong="H8478"\w*. +\q1 +\v 9 \w He|strong="H5921"\w* encloses \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H6440"\w* \w his|strong="H6440"\w* \w throne|strong="H3678"\w*, +\q2 \w and|strong="H6440"\w* \w spreads|strong="H6576"\w* \w his|strong="H6440"\w* \w cloud|strong="H6051"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*. +\q1 +\v 10 \w He|strong="H5704"\w* \w has|strong="H5973"\w* described \w a|strong="H3068"\w* \w boundary|strong="H2706"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w waters|strong="H4325"\w*, +\q2 \w and|strong="H6440"\w* \w to|strong="H5704"\w* \w the|strong="H6440"\w* confines \w of|strong="H6440"\w* light \w and|strong="H6440"\w* \w darkness|strong="H2822"\w*. +\q1 +\v 11 \w The|strong="H8064"\w* \w pillars|strong="H5982"\w* \w of|strong="H5982"\w* \w heaven|strong="H8064"\w* \w tremble|strong="H7322"\w* +\q2 \w and|strong="H8064"\w* \w are|strong="H8064"\w* \w astonished|strong="H8539"\w* \w at|strong="H1606"\w* his \w rebuke|strong="H1606"\w*. +\q1 +\v 12 \w He|strong="H8394"\w* \w stirs|strong="H7280"\w* \w up|strong="H3220"\w* \w the|strong="H4272"\w* \w sea|strong="H3220"\w* \w with|strong="H3220"\w* \w his|strong="H3220"\w* \w power|strong="H3581"\w*, +\q2 \w and|strong="H3220"\w* by \w his|strong="H3220"\w* \w understanding|strong="H8394"\w* \w he|strong="H8394"\w* \w strikes|strong="H4272"\w* \w through|strong="H4272"\w* \w Rahab|strong="H7293"\w*. +\q1 +\v 13 \w By|strong="H3027"\w* \w his|strong="H3027"\w* \w Spirit|strong="H7307"\w* \w the|strong="H3027"\w* \w heavens|strong="H8064"\w* \w are|strong="H3027"\w* \w garnished|strong="H8235"\w*. +\q2 \w His|strong="H3027"\w* \w hand|strong="H3027"\w* \w has|strong="H3027"\w* \w pierced|strong="H2490"\w* \w the|strong="H3027"\w* swift \w serpent|strong="H5175"\w*. +\q1 +\v 14 \w Behold|strong="H2005"\w*, \w these|strong="H8085"\w* \w are|strong="H4100"\w* \w but|strong="H8085"\w* \w the|strong="H8085"\w* outskirts \w of|strong="H1697"\w* \w his|strong="H8085"\w* \w ways|strong="H1870"\w*. +\q2 \w How|strong="H4100"\w* small \w a|strong="H3068"\w* \w whisper|strong="H8102"\w* \w do|strong="H4100"\w* \w we|strong="H3068"\w* \w hear|strong="H8085"\w* \w of|strong="H1697"\w* \w him|strong="H8085"\w*! +\q2 \w But|strong="H8085"\w* \w the|strong="H8085"\w* \w thunder|strong="H7482"\w* \w of|strong="H1697"\w* \w his|strong="H8085"\w* \w power|strong="H1369"\w* \w who|strong="H4310"\w* \w can|strong="H4310"\w* \w understand|strong="H8085"\w*?” +\c 27 +\p +\v 1 Job \w again|strong="H3254"\w* \w took|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w parable|strong="H4912"\w*, \w and|strong="H3254"\w* said, +\q1 +\v 2 “\w As|strong="H5315"\w* God \w lives|strong="H5315"\w*, \w who|strong="H5315"\w* \w has|strong="H5315"\w* \w taken|strong="H5493"\w* \w away|strong="H5493"\w* \w my|strong="H5493"\w* \w right|strong="H4941"\w*, +\q2 \w the|strong="H5493"\w* \w Almighty|strong="H7706"\w*, \w who|strong="H5315"\w* \w has|strong="H5315"\w* \w made|strong="H4843"\w* \w my|strong="H5493"\w* \w soul|strong="H5315"\w* \w bitter|strong="H4843"\w* +\q1 +\v 3 (\w for|strong="H3588"\w* \w the|strong="H3605"\w* length \w of|strong="H7307"\w* \w my|strong="H3605"\w* \w life|strong="H5750"\w* \w is|strong="H3605"\w* \w still|strong="H5750"\w* \w in|strong="H5750"\w* \w me|strong="H3588"\w*, +\q2 \w and|strong="H7307"\w* \w the|strong="H3605"\w* \w spirit|strong="H7307"\w* \w of|strong="H7307"\w* God \w is|strong="H3605"\w* \w in|strong="H5750"\w* \w my|strong="H3605"\w* nostrils); +\q1 +\v 4 surely \w my|strong="H1696"\w* \w lips|strong="H8193"\w* \w will|strong="H3956"\w* \w not|strong="H1696"\w* \w speak|strong="H1696"\w* \w unrighteousness|strong="H5766"\w*, +\q2 neither \w will|strong="H3956"\w* \w my|strong="H1696"\w* \w tongue|strong="H3956"\w* \w utter|strong="H1696"\w* \w deceit|strong="H7423"\w*. +\q1 +\v 5 \w Far|strong="H5704"\w* \w be|strong="H3808"\w* \w it|strong="H2486"\w* \w from|strong="H4480"\w* \w me|strong="H4480"\w* \w that|strong="H4480"\w* \w I|strong="H5704"\w* should \w justify|strong="H6663"\w* \w you|strong="H5704"\w*. +\q2 \w Until|strong="H5704"\w* \w I|strong="H5704"\w* \w die|strong="H1478"\w* \w I|strong="H5704"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w put|strong="H5493"\w* \w away|strong="H5493"\w* \w my|strong="H5493"\w* \w integrity|strong="H8538"\w* \w from|strong="H4480"\w* \w me|strong="H4480"\w*. +\q1 +\v 6 \w I|strong="H3117"\w* \w hold|strong="H2388"\w* \w fast|strong="H2388"\w* \w to|strong="H3117"\w* \w my|strong="H2388"\w* \w righteousness|strong="H6666"\w*, \w and|strong="H3117"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w let|strong="H7503"\w* \w it|strong="H3117"\w* \w go|strong="H7503"\w*. +\q2 \w My|strong="H2388"\w* \w heart|strong="H3824"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w reproach|strong="H2778"\w* \w me|strong="H2388"\w* \w so|strong="H3808"\w* \w long|strong="H3117"\w* \w as|strong="H3117"\w* \w I|strong="H3117"\w* \w live|strong="H3117"\w*. +\b +\q1 +\v 7 “\w Let|strong="H1961"\w* \w my|strong="H6965"\w* enemy \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w the|strong="H6965"\w* \w wicked|strong="H7563"\w*. +\q2 \w Let|strong="H1961"\w* \w him|strong="H1961"\w* \w who|strong="H7563"\w* \w rises|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H6965"\w* \w me|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w the|strong="H6965"\w* \w unrighteous|strong="H5767"\w*. +\b +\q1 +\v 8 \w For|strong="H3588"\w* \w what|strong="H4100"\w* \w is|strong="H4100"\w* \w the|strong="H3588"\w* \w hope|strong="H8615"\w* \w of|strong="H5315"\w* \w the|strong="H3588"\w* \w godless|strong="H2611"\w*, \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H4100"\w* \w cut|strong="H1214"\w* \w off|strong="H1214"\w*, +\q2 \w when|strong="H3588"\w* God \w takes|strong="H1214"\w* \w away|strong="H7953"\w* \w his|strong="H3588"\w* \w life|strong="H5315"\w*? +\q1 +\v 9 \w Will|strong="H8085"\w* God \w hear|strong="H8085"\w* \w his|strong="H8085"\w* \w cry|strong="H6818"\w* \w when|strong="H3588"\w* \w trouble|strong="H6869"\w* comes \w on|strong="H5921"\w* \w him|strong="H5921"\w*? +\q1 +\v 10 \w Will|strong="H7121"\w* \w he|strong="H3605"\w* \w delight|strong="H6026"\w* \w himself|strong="H7121"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w Almighty|strong="H7706"\w*, +\q2 \w and|strong="H6256"\w* \w call|strong="H7121"\w* \w on|strong="H5921"\w* God \w at|strong="H5921"\w* \w all|strong="H3605"\w* \w times|strong="H6256"\w*? +\q1 +\v 11 \w I|strong="H3808"\w* \w will|strong="H3027"\w* \w teach|strong="H3384"\w* \w you|strong="H5973"\w* \w about|strong="H3027"\w* \w the|strong="H3027"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w God|strong="H3808"\w*. +\q2 \w I|strong="H3808"\w* \w will|strong="H3027"\w* \w not|strong="H3808"\w* \w conceal|strong="H3582"\w* \w that|strong="H3027"\w* which \w is|strong="H3027"\w* \w with|strong="H5973"\w* \w the|strong="H3027"\w* \w Almighty|strong="H7706"\w*. +\q1 +\v 12 \w Behold|strong="H2005"\w*, \w all|strong="H3605"\w* \w of|strong="H3605"\w* \w you|strong="H3605"\w* \w have|strong="H3605"\w* \w seen|strong="H2372"\w* \w it|strong="H2088"\w* \w yourselves|strong="H3605"\w*; +\q2 \w why|strong="H4100"\w* \w then|strong="H2088"\w* \w have|strong="H3605"\w* \w you|strong="H3605"\w* become \w altogether|strong="H3605"\w* \w vain|strong="H1892"\w*? +\b +\q1 +\v 13 “\w This|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H3947"\w* \w portion|strong="H2506"\w* \w of|strong="H5159"\w* \w a|strong="H3068"\w* \w wicked|strong="H7563"\w* \w man|strong="H7563"\w* \w with|strong="H5973"\w* God, +\q2 \w the|strong="H3947"\w* \w heritage|strong="H5159"\w* \w of|strong="H5159"\w* \w oppressors|strong="H6184"\w*, \w which|strong="H2088"\w* \w they|strong="H3947"\w* \w receive|strong="H3947"\w* \w from|strong="H3947"\w* \w the|strong="H3947"\w* \w Almighty|strong="H7706"\w*. +\q1 +\v 14 \w If|strong="H1121"\w* \w his|strong="H3808"\w* \w children|strong="H1121"\w* \w are|strong="H1121"\w* \w multiplied|strong="H7235"\w*, \w it|strong="H3808"\w* \w is|strong="H1121"\w* \w for|strong="H1121"\w* \w the|strong="H3808"\w* \w sword|strong="H2719"\w*. +\q2 \w His|strong="H3808"\w* \w offspring|strong="H6631"\w* \w will|strong="H2719"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w satisfied|strong="H7646"\w* \w with|strong="H7646"\w* \w bread|strong="H3899"\w*. +\q1 +\v 15 Those \w who|strong="H8300"\w* \w remain|strong="H8300"\w* \w of|strong="H4194"\w* \w him|strong="H6912"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w buried|strong="H6912"\w* \w in|strong="H6912"\w* \w death|strong="H4194"\w*. +\q2 \w His|strong="H3808"\w* widows \w will|strong="H3808"\w* make \w no|strong="H3808"\w* \w lamentation|strong="H1058"\w*. +\q1 +\v 16 Though \w he|strong="H3701"\w* \w heap|strong="H6651"\w* \w up|strong="H6651"\w* \w silver|strong="H3701"\w* \w as|strong="H3701"\w* \w the|strong="H3559"\w* \w dust|strong="H6083"\w*, +\q2 \w and|strong="H3701"\w* \w prepare|strong="H3559"\w* clothing \w as|strong="H3701"\w* \w the|strong="H3559"\w* \w clay|strong="H2563"\w*; +\q1 +\v 17 \w he|strong="H3701"\w* may \w prepare|strong="H3559"\w* \w it|strong="H3559"\w*, \w but|strong="H6662"\w* \w the|strong="H3559"\w* \w just|strong="H6662"\w* \w will|strong="H6662"\w* \w put|strong="H3847"\w* \w it|strong="H3559"\w* \w on|strong="H3847"\w*, +\q2 \w and|strong="H3701"\w* \w the|strong="H3559"\w* \w innocent|strong="H5355"\w* \w will|strong="H6662"\w* \w divide|strong="H2505"\w* \w the|strong="H3559"\w* \w silver|strong="H3701"\w*. +\q1 +\v 18 \w He|strong="H6213"\w* \w builds|strong="H1129"\w* \w his|strong="H6213"\w* \w house|strong="H1004"\w* \w as|strong="H6213"\w* \w the|strong="H6213"\w* \w moth|strong="H6211"\w*, +\q2 \w as|strong="H6213"\w* \w a|strong="H3068"\w* \w booth|strong="H5521"\w* \w which|strong="H1004"\w* \w the|strong="H6213"\w* \w watchman|strong="H5341"\w* \w makes|strong="H6213"\w*. +\q1 +\v 19 \w He|strong="H3808"\w* \w lies|strong="H7901"\w* \w down|strong="H7901"\w* \w rich|strong="H6223"\w*, \w but|strong="H3808"\w* \w he|strong="H3808"\w* \w will|strong="H5869"\w* \w not|strong="H3808"\w* \w do|strong="H5869"\w* \w so|strong="H3808"\w* again. +\q2 \w He|strong="H3808"\w* \w opens|strong="H6491"\w* \w his|strong="H3808"\w* \w eyes|strong="H5869"\w*, \w and|strong="H5869"\w* \w he|strong="H3808"\w* \w is|strong="H5869"\w* \w not|strong="H3808"\w*. +\q1 +\v 20 \w Terrors|strong="H1091"\w* \w overtake|strong="H5381"\w* \w him|strong="H1589"\w* like \w waters|strong="H4325"\w*. +\q2 \w A|strong="H3068"\w* \w storm|strong="H5492"\w* \w steals|strong="H1589"\w* \w him|strong="H1589"\w* \w away|strong="H1589"\w* \w in|strong="H4325"\w* \w the|strong="H3915"\w* \w night|strong="H3915"\w*. +\q1 +\v 21 \w The|strong="H5375"\w* \w east|strong="H6921"\w* \w wind|strong="H6921"\w* \w carries|strong="H5375"\w* \w him|strong="H5375"\w* \w away|strong="H5375"\w*, \w and|strong="H3212"\w* \w he|strong="H8175"\w* departs. +\q2 \w It|strong="H5375"\w* sweeps \w him|strong="H5375"\w* \w out|strong="H3212"\w* \w of|strong="H4725"\w* \w his|strong="H5375"\w* \w place|strong="H4725"\w*. +\q1 +\v 22 \w For|strong="H5921"\w* \w it|strong="H5921"\w* hurls \w at|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H3027"\w* \w does|strong="H3808"\w* \w not|strong="H3808"\w* \w spare|strong="H2550"\w*, +\q2 \w as|strong="H5921"\w* \w he|strong="H3027"\w* \w flees|strong="H1272"\w* \w away|strong="H7993"\w* \w from|strong="H5921"\w* \w his|strong="H5921"\w* \w hand|strong="H3027"\w*. +\q1 +\v 23 Men \w will|strong="H4725"\w* \w clap|strong="H5606"\w* \w their|strong="H5921"\w* \w hands|strong="H3709"\w* \w at|strong="H5921"\w* \w him|strong="H5921"\w*, +\q2 \w and|strong="H4725"\w* \w will|strong="H4725"\w* \w hiss|strong="H8319"\w* \w him|strong="H5921"\w* \w out|strong="H5921"\w* \w of|strong="H3709"\w* \w his|strong="H5921"\w* \w place|strong="H4725"\w*. +\b +\c 28 +\b +\q1 +\v 1 “\w Surely|strong="H3588"\w* \w there|strong="H3426"\w* \w is|strong="H3426"\w* \w a|strong="H3068"\w* \w mine|strong="H4161"\w* \w for|strong="H3588"\w* \w silver|strong="H3701"\w*, +\q2 \w and|strong="H3701"\w* \w a|strong="H3068"\w* \w place|strong="H4725"\w* \w for|strong="H3588"\w* \w gold|strong="H2091"\w* \w which|strong="H2091"\w* \w they|strong="H3588"\w* \w refine|strong="H2212"\w*. +\q1 +\v 2 \w Iron|strong="H1270"\w* \w is|strong="H1270"\w* \w taken|strong="H3947"\w* \w out|strong="H3947"\w* \w of|strong="H6083"\w* \w the|strong="H3947"\w* \w earth|strong="H6083"\w*, +\q2 \w and|strong="H3947"\w* \w copper|strong="H5154"\w* \w is|strong="H1270"\w* \w smelted|strong="H6694"\w* \w out|strong="H3947"\w* \w of|strong="H6083"\w* \w the|strong="H3947"\w* ore. +\q1 +\v 3 \w Man|strong="H3605"\w* \w sets|strong="H7760"\w* \w an|strong="H7760"\w* \w end|strong="H7093"\w* \w to|strong="H7093"\w* \w darkness|strong="H2822"\w*, +\q2 \w and|strong="H2822"\w* \w searches|strong="H2713"\w* \w out|strong="H2713"\w*, \w to|strong="H7093"\w* \w the|strong="H3605"\w* furthest bound, +\q2 \w the|strong="H3605"\w* stones \w of|strong="H7093"\w* \w obscurity|strong="H2822"\w* \w and|strong="H2822"\w* \w of|strong="H7093"\w* \w thick|strong="H6757"\w* \w darkness|strong="H2822"\w*. +\q1 +\v 4 \w He|strong="H4480"\w* \w breaks|strong="H6555"\w* \w open|strong="H6555"\w* \w a|strong="H3068"\w* \w shaft|strong="H5158"\w* \w away|strong="H4480"\w* \w from|strong="H4480"\w* \w where|strong="H4480"\w* \w people|strong="H5128"\w* \w live|strong="H1481"\w*. +\q2 \w They|strong="H7272"\w* \w are|strong="H7272"\w* \w forgotten|strong="H7911"\w* \w by|strong="H5973"\w* \w the|strong="H4480"\w* \w foot|strong="H7272"\w*. +\q2 \w They|strong="H7272"\w* \w hang|strong="H1809"\w* \w far|strong="H4480"\w* \w from|strong="H4480"\w* men, \w they|strong="H7272"\w* \w swing|strong="H5128"\w* back \w and|strong="H7272"\w* \w forth|strong="H6555"\w*. +\q1 +\v 5 \w As|strong="H3644"\w* \w for|strong="H8478"\w* \w the|strong="H4480"\w* earth, \w out|strong="H3318"\w* \w of|strong="H4480"\w* \w it|strong="H2015"\w* \w comes|strong="H3318"\w* \w bread|strong="H3899"\w*. +\q2 \w Underneath|strong="H8478"\w* \w it|strong="H2015"\w* \w is|strong="H3899"\w* \w turned|strong="H2015"\w* \w up|strong="H3318"\w* \w as|strong="H3644"\w* \w it|strong="H2015"\w* \w were|strong="H3644"\w* \w by|strong="H3318"\w* fire. +\q1 +\v 6 \w Sapphires|strong="H5601"\w* come \w from|strong="H2091"\w* its rocks. +\q2 \w It|strong="H2091"\w* \w has|strong="H2091"\w* \w dust|strong="H6083"\w* \w of|strong="H4725"\w* \w gold|strong="H2091"\w*. +\q1 +\v 7 \w That|strong="H3045"\w* \w path|strong="H5410"\w* \w no|strong="H3808"\w* \w bird|strong="H5861"\w* \w of|strong="H5869"\w* \w prey|strong="H5861"\w* \w knows|strong="H3045"\w*, +\q2 \w neither|strong="H3808"\w* \w has|strong="H5869"\w* \w the|strong="H3045"\w* falcon’s \w eye|strong="H5869"\w* \w seen|strong="H5869"\w* \w it|strong="H3045"\w*. +\q1 +\v 8 \w The|strong="H5921"\w* \w proud|strong="H7830"\w* animals \w have|strong="H1121"\w* \w not|strong="H3808"\w* \w trodden|strong="H1869"\w* \w it|strong="H5921"\w*, +\q2 \w nor|strong="H3808"\w* \w has|strong="H1121"\w* \w the|strong="H5921"\w* fierce \w lion|strong="H7826"\w* \w passed|strong="H5710"\w* \w by|strong="H5921"\w* there. +\q1 +\v 9 \w He|strong="H3027"\w* \w puts|strong="H7971"\w* \w his|strong="H7971"\w* \w hand|strong="H3027"\w* \w on|strong="H3027"\w* \w the|strong="H7971"\w* \w flinty|strong="H2496"\w* \w rock|strong="H2496"\w*, +\q2 \w and|strong="H7971"\w* \w he|strong="H3027"\w* \w overturns|strong="H2015"\w* \w the|strong="H7971"\w* \w mountains|strong="H2022"\w* \w by|strong="H3027"\w* \w the|strong="H7971"\w* \w roots|strong="H8328"\w*. +\q1 +\v 10 \w He|strong="H3605"\w* cuts \w out|strong="H7200"\w* \w channels|strong="H2975"\w* \w among|strong="H7200"\w* \w the|strong="H3605"\w* \w rocks|strong="H6697"\w*. +\q2 \w His|strong="H3605"\w* \w eye|strong="H5869"\w* \w sees|strong="H7200"\w* \w every|strong="H3605"\w* \w precious|strong="H3366"\w* \w thing|strong="H3605"\w*. +\q1 +\v 11 \w He|strong="H3318"\w* \w binds|strong="H2280"\w* \w the|strong="H3318"\w* \w streams|strong="H5104"\w* \w that|strong="H3318"\w* \w they|strong="H3318"\w* don’t trickle. +\q2 \w The|strong="H3318"\w* thing \w that|strong="H3318"\w* \w is|strong="H5104"\w* \w hidden|strong="H8587"\w* \w he|strong="H3318"\w* \w brings|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* light. +\b +\q1 +\v 12 “But \w where|strong="H4725"\w* \w will|strong="H2088"\w* \w wisdom|strong="H2451"\w* \w be|strong="H2451"\w* \w found|strong="H4672"\w*? +\q2 \w Where|strong="H4725"\w* \w is|strong="H2088"\w* \w the|strong="H4672"\w* \w place|strong="H4725"\w* \w of|strong="H4725"\w* understanding? +\q1 +\v 13 \w Man|strong="H3045"\w* doesn’t \w know|strong="H3045"\w* \w its|strong="H3045"\w* \w price|strong="H6187"\w*, +\q2 \w and|strong="H3045"\w* \w it|strong="H3045"\w* isn’t \w found|strong="H4672"\w* \w in|strong="H4672"\w* \w the|strong="H3045"\w* land \w of|strong="H3045"\w* \w the|strong="H3045"\w* \w living|strong="H2416"\w*. +\q1 +\v 14 \w The|strong="H3808"\w* \w deep|strong="H8415"\w* says, ‘\w It|strong="H1931"\w* isn’t \w in|strong="H3220"\w* \w me|strong="H5978"\w*.’ +\q2 \w The|strong="H3808"\w* \w sea|strong="H3220"\w* says, ‘\w It|strong="H1931"\w* isn’t \w with|strong="H3220"\w* \w me|strong="H5978"\w*.’ +\q1 +\v 15 \w It|strong="H5414"\w* \w can|strong="H3808"\w*’t \w be|strong="H3808"\w* \w gotten|strong="H5414"\w* \w for|strong="H8478"\w* \w gold|strong="H5458"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H5414"\w* \w silver|strong="H3701"\w* \w be|strong="H3808"\w* \w weighed|strong="H8254"\w* \w for|strong="H8478"\w* \w its|strong="H5414"\w* \w price|strong="H4242"\w*. +\q1 +\v 16 \w It|strong="H3808"\w* \w can|strong="H3808"\w*’t \w be|strong="H3808"\w* \w valued|strong="H5541"\w* \w with|strong="H5541"\w* \w the|strong="H3808"\w* \w gold|strong="H3800"\w* \w of|strong="H3800"\w* Ophir, +\q2 \w with|strong="H5541"\w* \w the|strong="H3808"\w* \w precious|strong="H3368"\w* \w onyx|strong="H7718"\w*, \w or|strong="H3808"\w* \w the|strong="H3808"\w* \w sapphire|strong="H5601"\w*.\f + \fr 28:16 \ft or, lapis lazuli\f* +\q1 +\v 17 \w Gold|strong="H2091"\w* \w and|strong="H2091"\w* \w glass|strong="H2137"\w* \w can|strong="H3808"\w*’t \w equal|strong="H6186"\w* \w it|strong="H3808"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H3808"\w* \w it|strong="H3808"\w* \w be|strong="H3808"\w* \w exchanged|strong="H8545"\w* \w for|strong="H3627"\w* \w jewels|strong="H3627"\w* \w of|strong="H3627"\w* \w fine|strong="H6337"\w* \w gold|strong="H2091"\w*. +\q1 +\v 18 \w No|strong="H3808"\w* \w mention|strong="H2142"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* made \w of|strong="H2451"\w* \w coral|strong="H7215"\w* \w or|strong="H3808"\w* \w of|strong="H2451"\w* \w crystal|strong="H1378"\w*. +\q2 Yes, \w the|strong="H2142"\w* \w price|strong="H4901"\w* \w of|strong="H2451"\w* \w wisdom|strong="H2451"\w* \w is|strong="H2451"\w* above \w rubies|strong="H6443"\w*. +\q1 +\v 19 \w The|strong="H3808"\w* \w topaz|strong="H6357"\w* \w of|strong="H3800"\w* \w Ethiopia|strong="H3568"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w equal|strong="H6186"\w* \w it|strong="H3808"\w*. +\q2 \w It|strong="H3808"\w* won’t \w be|strong="H3808"\w* \w valued|strong="H5541"\w* \w with|strong="H5541"\w* \w pure|strong="H2889"\w* \w gold|strong="H3800"\w*. +\q1 +\v 20 \w Where|strong="H4725"\w* \w then|strong="H2088"\w* \w does|strong="H2088"\w* \w wisdom|strong="H2451"\w* come \w from|strong="H4725"\w*? +\q2 \w Where|strong="H4725"\w* \w is|strong="H2088"\w* \w the|strong="H4725"\w* \w place|strong="H4725"\w* \w of|strong="H4725"\w* understanding? +\q1 +\v 21 Seeing \w it|strong="H5869"\w* \w is|strong="H3605"\w* \w hidden|strong="H5641"\w* \w from|strong="H5869"\w* \w the|strong="H3605"\w* \w eyes|strong="H5869"\w* \w of|strong="H5869"\w* \w all|strong="H3605"\w* \w living|strong="H2416"\w*, +\q2 \w and|strong="H8064"\w* kept \w close|strong="H5641"\w* \w from|strong="H5869"\w* \w the|strong="H3605"\w* \w birds|strong="H5775"\w* \w of|strong="H5869"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*. +\q1 +\v 22 Destruction \w and|strong="H8085"\w* \w Death|strong="H4194"\w* say, +\q2 ‘\w We|strong="H8085"\w* \w have|strong="H8085"\w* \w heard|strong="H8085"\w* \w a|strong="H3068"\w* rumor \w of|strong="H4194"\w* it \w with|strong="H8085"\w* \w our|strong="H8085"\w* ears.’ +\b +\q1 +\v 23 “God \w understands|strong="H3045"\w* \w its|strong="H3045"\w* \w way|strong="H1870"\w*, +\q2 \w and|strong="H1870"\w* \w he|strong="H1931"\w* \w knows|strong="H3045"\w* \w its|strong="H3045"\w* \w place|strong="H4725"\w*. +\q1 +\v 24 \w For|strong="H3588"\w* \w he|strong="H1931"\w* \w looks|strong="H7200"\w* \w to|strong="H7200"\w* \w the|strong="H3605"\w* \w ends|strong="H7098"\w* \w of|strong="H8478"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*, +\q2 \w and|strong="H8064"\w* \w sees|strong="H7200"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w sky|strong="H8064"\w*. +\q1 +\v 25 \w He|strong="H6213"\w* \w establishes|strong="H6213"\w* \w the|strong="H6213"\w* force \w of|strong="H7307"\w* \w the|strong="H6213"\w* \w wind|strong="H7307"\w*. +\q2 Yes, \w he|strong="H6213"\w* \w measures|strong="H4060"\w* \w out|strong="H6213"\w* \w the|strong="H6213"\w* \w waters|strong="H4325"\w* \w by|strong="H4325"\w* \w measure|strong="H4060"\w*. +\q1 +\v 26 \w When|strong="H6213"\w* \w he|strong="H6213"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w decree|strong="H2706"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w rain|strong="H4306"\w*, +\q2 \w and|strong="H6963"\w* \w a|strong="H3068"\w* \w way|strong="H1870"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w lightning|strong="H2385"\w* \w of|strong="H6963"\w* \w the|strong="H6213"\w* \w thunder|strong="H6963"\w*, +\q1 +\v 27 \w then|strong="H1571"\w* \w he|strong="H1571"\w* \w saw|strong="H7200"\w* \w it|strong="H7200"\w*, \w and|strong="H7200"\w* \w declared|strong="H5608"\w* \w it|strong="H7200"\w*. +\q2 \w He|strong="H1571"\w* \w established|strong="H3559"\w* \w it|strong="H7200"\w*, \w yes|strong="H1571"\w*, \w and|strong="H7200"\w* \w searched|strong="H2713"\w* \w it|strong="H7200"\w* \w out|strong="H2713"\w*. +\q1 +\v 28 \w To|strong="H5493"\w* \w man|strong="H7451"\w* \w he|strong="H1931"\w* said, +\q2 ‘\w Behold|strong="H2005"\w*, \w the|strong="H5493"\w* \w fear|strong="H3374"\w* \w of|strong="H2451"\w* \w the|strong="H5493"\w* Lord,\f + \fr 28:28 \ft The word translated “Lord” is “Adonai.” \f* \w that|strong="H1931"\w* \w is|strong="H1931"\w* \w wisdom|strong="H2451"\w*. +\q2 \w To|strong="H5493"\w* \w depart|strong="H5493"\w* \w from|strong="H5493"\w* \w evil|strong="H7451"\w* \w is|strong="H1931"\w* understanding.’” +\b +\c 29 +\p +\v 1 Job \w again|strong="H3254"\w* \w took|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w parable|strong="H4912"\w*, \w and|strong="H3254"\w* said, +\q1 +\v 2 “\w Oh|strong="H4310"\w* \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w were|strong="H3117"\w* \w as|strong="H3117"\w* \w in|strong="H3117"\w* \w the|strong="H5414"\w* \w months|strong="H3391"\w* \w of|strong="H3117"\w* \w old|strong="H6924"\w*, +\q2 \w as|strong="H3117"\w* \w in|strong="H3117"\w* \w the|strong="H5414"\w* \w days|strong="H3117"\w* \w when|strong="H3117"\w* \w God|strong="H5414"\w* \w watched|strong="H8104"\w* \w over|strong="H5414"\w* \w me|strong="H5414"\w*; +\q1 +\v 3 \w when|strong="H5921"\w* \w his|strong="H5921"\w* \w lamp|strong="H5216"\w* \w shone|strong="H1984"\w* \w on|strong="H5921"\w* \w my|strong="H5921"\w* \w head|strong="H7218"\w*, +\q2 \w and|strong="H3212"\w* \w by|strong="H5921"\w* \w his|strong="H5921"\w* \w light|strong="H5216"\w* \w I|strong="H5921"\w* \w walked|strong="H3212"\w* \w through|strong="H5921"\w* \w darkness|strong="H2822"\w*, +\q1 +\v 4 \w as|strong="H3117"\w* \w I|strong="H3117"\w* \w was|strong="H1961"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* \w prime|strong="H2779"\w*, +\q2 \w when|strong="H1961"\w* \w the|strong="H5921"\w* \w friendship|strong="H5475"\w* \w of|strong="H3117"\w* God \w was|strong="H1961"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* tent, +\q1 +\v 5 \w when|strong="H5750"\w* \w the|strong="H5439"\w* \w Almighty|strong="H7706"\w* \w was|strong="H5288"\w* \w yet|strong="H5750"\w* \w with|strong="H5978"\w* \w me|strong="H5978"\w*, +\q2 \w and|strong="H5288"\w* \w my|strong="H5439"\w* \w children|strong="H5288"\w* \w were|strong="H5288"\w* \w around|strong="H5439"\w* \w me|strong="H5978"\w*, +\q1 +\v 6 when \w my|strong="H7364"\w* \w steps|strong="H1978"\w* \w were|strong="H1978"\w* \w washed|strong="H7364"\w* \w with|strong="H7364"\w* \w butter|strong="H2529"\w*, +\q2 \w and|strong="H8081"\w* \w the|strong="H7364"\w* \w rock|strong="H6697"\w* \w poured|strong="H6694"\w* \w out|strong="H6694"\w* \w streams|strong="H6388"\w* \w of|strong="H6388"\w* \w oil|strong="H8081"\w* \w for|strong="H8081"\w* \w me|strong="H5978"\w*, +\q1 +\v 7 \w when|strong="H3318"\w* \w I|strong="H5921"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H5921"\w* \w city|strong="H7176"\w* \w gate|strong="H8179"\w*, +\q2 \w when|strong="H3318"\w* \w I|strong="H5921"\w* \w prepared|strong="H3559"\w* \w my|strong="H5921"\w* \w seat|strong="H4186"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w street|strong="H7339"\w*. +\q1 +\v 8 \w The|strong="H7200"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w saw|strong="H7200"\w* \w me|strong="H7200"\w* \w and|strong="H6965"\w* \w hid|strong="H2244"\w* \w themselves|strong="H2244"\w*. +\q2 \w The|strong="H7200"\w* \w aged|strong="H3453"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H6965"\w* \w stood|strong="H5975"\w*. +\q1 +\v 9 \w The|strong="H7760"\w* \w princes|strong="H8269"\w* \w refrained|strong="H6113"\w* \w from|strong="H6113"\w* \w talking|strong="H4405"\w*, +\q2 \w and|strong="H6310"\w* \w laid|strong="H7760"\w* \w their|strong="H7760"\w* \w hand|strong="H3709"\w* \w on|strong="H7760"\w* \w their|strong="H7760"\w* \w mouth|strong="H6310"\w*. +\q1 +\v 10 \w The|strong="H6963"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H6963"\w* \w nobles|strong="H5057"\w* \w was|strong="H6963"\w* \w hushed|strong="H2244"\w*, +\q2 \w and|strong="H6963"\w* \w their|strong="H3956"\w* \w tongue|strong="H3956"\w* \w stuck|strong="H1692"\w* \w to|strong="H3956"\w* \w the|strong="H6963"\w* \w roof|strong="H2441"\w* \w of|strong="H6963"\w* \w their|strong="H3956"\w* \w mouth|strong="H2441"\w*. +\q1 +\v 11 \w For|strong="H3588"\w* \w when|strong="H3588"\w* \w the|strong="H8085"\w* \w ear|strong="H8085"\w* \w heard|strong="H8085"\w* \w me|strong="H7200"\w*, \w then|strong="H8085"\w* \w it|strong="H3588"\w* blessed \w me|strong="H7200"\w*, +\q2 \w and|strong="H5869"\w* \w when|strong="H3588"\w* \w the|strong="H8085"\w* \w eye|strong="H5869"\w* \w saw|strong="H7200"\w* \w me|strong="H7200"\w*, \w it|strong="H3588"\w* commended \w me|strong="H7200"\w*, +\q1 +\v 12 \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w delivered|strong="H4422"\w* \w the|strong="H3588"\w* \w poor|strong="H6041"\w* \w who|strong="H6041"\w* \w cried|strong="H7768"\w*, +\q2 \w and|strong="H6041"\w* \w the|strong="H3588"\w* \w fatherless|strong="H3490"\w* \w also|strong="H3588"\w*, \w who|strong="H6041"\w* \w had|strong="H3588"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w to|strong="H3808"\w* \w help|strong="H5826"\w* \w him|strong="H5826"\w*, +\q1 +\v 13 \w the|strong="H5921"\w* \w blessing|strong="H1293"\w* \w of|strong="H5921"\w* \w him|strong="H5921"\w* who \w was|strong="H3820"\w* ready \w to|strong="H5921"\w* perish came \w on|strong="H5921"\w* \w me|strong="H5921"\w*, +\q2 \w and|strong="H3820"\w* \w I|strong="H5921"\w* caused \w the|strong="H5921"\w* widow’s \w heart|strong="H3820"\w* \w to|strong="H5921"\w* \w sing|strong="H7442"\w* \w for|strong="H5921"\w* \w joy|strong="H7442"\w*. +\q1 +\v 14 I \w put|strong="H3847"\w* \w on|strong="H3847"\w* \w righteousness|strong="H6664"\w*, \w and|strong="H4941"\w* \w it|strong="H4941"\w* \w clothed|strong="H3847"\w* \w me|strong="H4941"\w*. +\q2 \w My|strong="H4941"\w* \w justice|strong="H4941"\w* \w was|strong="H4598"\w* \w as|strong="H4941"\w* \w a|strong="H3068"\w* \w robe|strong="H4598"\w* \w and|strong="H4941"\w* \w a|strong="H3068"\w* \w diadem|strong="H6797"\w*. +\q1 +\v 15 \w I|strong="H5869"\w* \w was|strong="H1961"\w* \w eyes|strong="H5869"\w* \w to|strong="H1961"\w* \w the|strong="H1961"\w* \w blind|strong="H5787"\w*, +\q2 \w and|strong="H5869"\w* \w feet|strong="H7272"\w* \w to|strong="H1961"\w* \w the|strong="H1961"\w* \w lame|strong="H6455"\w*. +\q1 +\v 16 \w I|strong="H3045"\w* \w was|strong="H3808"\w* \w a|strong="H3068"\w* father \w to|strong="H3045"\w* \w the|strong="H3045"\w* needy. +\q2 \w I|strong="H3045"\w* researched \w the|strong="H3045"\w* \w cause|strong="H7379"\w* \w of|strong="H3045"\w* \w him|strong="H3045"\w* whom \w I|strong="H3045"\w* didn’t \w know|strong="H3045"\w*. +\q1 +\v 17 \w I|strong="H7665"\w* \w broke|strong="H7665"\w* \w the|strong="H7665"\w* \w jaws|strong="H4973"\w* \w of|strong="H8127"\w* \w the|strong="H7665"\w* \w unrighteous|strong="H5767"\w* +\q2 \w and|strong="H7665"\w* \w plucked|strong="H7993"\w* \w the|strong="H7665"\w* \w prey|strong="H2964"\w* \w out|strong="H7993"\w* \w of|strong="H8127"\w* \w his|strong="H7993"\w* \w teeth|strong="H8127"\w*. +\q1 +\v 18 \w Then|strong="H3117"\w* \w I|strong="H3117"\w* said, ‘\w I|strong="H3117"\w* \w will|strong="H3117"\w* \w die|strong="H1478"\w* \w in|strong="H3117"\w* \w my|strong="H7235"\w* \w own|strong="H5973"\w* house, +\q2 \w I|strong="H3117"\w* \w will|strong="H3117"\w* count \w my|strong="H7235"\w* \w days|strong="H3117"\w* \w as|strong="H3117"\w* \w the|strong="H3117"\w* \w sand|strong="H2344"\w*. +\q1 +\v 19 \w My|strong="H6605"\w* \w root|strong="H8328"\w* \w is|strong="H4325"\w* \w spread|strong="H6605"\w* \w out|strong="H6605"\w* \w to|strong="H4325"\w* \w the|strong="H3885"\w* \w waters|strong="H4325"\w*. +\q2 \w The|strong="H3885"\w* \w dew|strong="H2919"\w* \w lies|strong="H3885"\w* \w all|strong="H3885"\w* \w night|strong="H3885"\w* \w on|strong="H2919"\w* \w my|strong="H6605"\w* \w branch|strong="H7105"\w*. +\q1 +\v 20 \w My|strong="H3027"\w* \w glory|strong="H3519"\w* \w is|strong="H3027"\w* \w fresh|strong="H2319"\w* \w in|strong="H3027"\w* \w me|strong="H5978"\w*. +\q2 \w My|strong="H3027"\w* \w bow|strong="H7198"\w* \w is|strong="H3027"\w* \w renewed|strong="H2498"\w* \w in|strong="H3027"\w* \w my|strong="H3027"\w* \w hand|strong="H3027"\w*.’ +\b +\q1 +\v 21 “Men \w listened|strong="H8085"\w* \w to|strong="H8085"\w* \w me|strong="H8085"\w*, \w waited|strong="H3176"\w*, +\q2 \w and|strong="H8085"\w* \w kept|strong="H1826"\w* \w silence|strong="H1826"\w* \w for|strong="H3176"\w* \w my|strong="H8085"\w* \w counsel|strong="H6098"\w*. +\q1 +\v 22 \w After|strong="H5921"\w* \w my|strong="H5921"\w* \w words|strong="H1697"\w* \w they|strong="H3808"\w* didn’t \w speak|strong="H5197"\w* \w again|strong="H8138"\w*. +\q2 \w My|strong="H5921"\w* \w speech|strong="H1697"\w* \w fell|strong="H5921"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*. +\q1 +\v 23 \w They|strong="H6310"\w* \w waited|strong="H3176"\w* \w for|strong="H3176"\w* me \w as|strong="H6310"\w* \w for|strong="H3176"\w* \w the|strong="H6310"\w* \w rain|strong="H4306"\w*. +\q2 \w Their|strong="H6473"\w* \w mouths|strong="H6310"\w* drank \w as|strong="H6310"\w* \w with|strong="H6310"\w* \w the|strong="H6310"\w* \w spring|strong="H4456"\w* \w rain|strong="H4306"\w*. +\q1 +\v 24 \w I|strong="H3808"\w* \w smiled|strong="H7832"\w* \w on|strong="H5307"\w* \w them|strong="H6440"\w* \w when|strong="H5307"\w* \w they|strong="H3808"\w* \w had|strong="H3808"\w* \w no|strong="H3808"\w* confidence. +\q2 \w They|strong="H3808"\w* didn’t reject \w the|strong="H6440"\w* light \w of|strong="H6440"\w* \w my|strong="H6440"\w* \w face|strong="H6440"\w*. +\q1 +\v 25 \w I|strong="H1870"\w* chose \w out|strong="H3427"\w* \w their|strong="H1870"\w* \w way|strong="H1870"\w*, \w and|strong="H4428"\w* \w sat|strong="H3427"\w* \w as|strong="H3427"\w* \w chief|strong="H7218"\w*. +\q2 \w I|strong="H1870"\w* \w lived|strong="H3427"\w* \w as|strong="H3427"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w in|strong="H3427"\w* \w the|strong="H1870"\w* \w army|strong="H1416"\w*, +\q2 \w as|strong="H3427"\w* \w one|strong="H4428"\w* \w who|strong="H3427"\w* \w comforts|strong="H5162"\w* \w the|strong="H1870"\w* mourners. +\b +\c 30 +\b +\q1 +\v 1 “\w But|strong="H6258"\w* \w now|strong="H6258"\w* \w those|strong="H4480"\w* who \w are|strong="H3117"\w* \w younger|strong="H6810"\w* \w than|strong="H4480"\w* \w I|strong="H3117"\w* \w have|strong="H3117"\w* \w me|strong="H5921"\w* \w in|strong="H5921"\w* \w derision|strong="H7832"\w*, +\q2 whose fathers \w I|strong="H3117"\w* considered unworthy \w to|strong="H5921"\w* \w put|strong="H7896"\w* \w with|strong="H5973"\w* \w my|strong="H5921"\w* \w sheep|strong="H6629"\w* \w dogs|strong="H3611"\w*. +\q1 +\v 2 \w Of|strong="H3027"\w* \w what|strong="H4100"\w* use \w is|strong="H4100"\w* \w the|strong="H5921"\w* \w strength|strong="H3581"\w* \w of|strong="H3027"\w* \w their|strong="H5921"\w* \w hands|strong="H3027"\w* \w to|strong="H5921"\w* \w me|strong="H5921"\w*, +\q2 men \w in|strong="H5921"\w* whom ripe \w age|strong="H3624"\w* \w has|strong="H4100"\w* perished? +\q1 +\v 3 \w They|strong="H7722"\w* are \w gaunt|strong="H1565"\w* from lack \w and|strong="H6723"\w* \w famine|strong="H3720"\w*. +\q2 \w They|strong="H7722"\w* \w gnaw|strong="H6207"\w* \w the|strong="H6207"\w* \w dry|strong="H6723"\w* ground, in \w the|strong="H6207"\w* gloom of \w waste|strong="H4875"\w* \w and|strong="H6723"\w* \w desolation|strong="H7722"\w*. +\q1 +\v 4 \w They|strong="H5921"\w* \w pluck|strong="H6998"\w* salt \w herbs|strong="H4408"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w bushes|strong="H7880"\w*. +\q2 \w The|strong="H5921"\w* \w roots|strong="H8328"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w broom|strong="H7574"\w* \w tree|strong="H7574"\w* \w are|strong="H8328"\w* \w their|strong="H5921"\w* \w food|strong="H3899"\w*. +\q1 +\v 5 \w They|strong="H5921"\w* \w are|strong="H4480"\w* \w driven|strong="H1644"\w* \w out|strong="H1644"\w* \w from|strong="H4480"\w* \w among|strong="H4480"\w* men. +\q2 \w They|strong="H5921"\w* \w cry|strong="H7321"\w* \w after|strong="H4480"\w* \w them|strong="H5921"\w* \w as|strong="H5921"\w* \w after|strong="H4480"\w* \w a|strong="H3068"\w* \w thief|strong="H1590"\w*, +\q1 +\v 6 so \w that|strong="H5158"\w* they \w live|strong="H7931"\w* \w in|strong="H7931"\w* frightful \w valleys|strong="H5158"\w*, +\q2 \w and|strong="H6083"\w* \w in|strong="H7931"\w* \w holes|strong="H2356"\w* \w of|strong="H5158"\w* \w the|strong="H7931"\w* \w earth|strong="H6083"\w* \w and|strong="H6083"\w* \w of|strong="H5158"\w* \w the|strong="H7931"\w* \w rocks|strong="H3710"\w*. +\q1 +\v 7 \w They|strong="H7880"\w* \w bray|strong="H5101"\w* \w among|strong="H8478"\w* \w the|strong="H8478"\w* \w bushes|strong="H7880"\w*. +\q2 \w They|strong="H7880"\w* \w are|strong="H8478"\w* \w gathered|strong="H5596"\w* \w together|strong="H5596"\w* \w under|strong="H8478"\w* \w the|strong="H8478"\w* \w nettles|strong="H2738"\w*. +\q1 +\v 8 \w They|strong="H1571"\w* \w are|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w fools|strong="H5036"\w*, \w yes|strong="H1571"\w*, \w children|strong="H1121"\w* \w of|strong="H1121"\w* wicked \w men|strong="H1121"\w*. +\q2 \w They|strong="H1571"\w* \w were|strong="H1121"\w* flogged \w out|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* land. +\b +\q1 +\v 9 “\w Now|strong="H6258"\w* \w I|strong="H6258"\w* \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w their|strong="H1992"\w* \w song|strong="H5058"\w*. +\q2 Yes, \w I|strong="H6258"\w* \w am|strong="H1961"\w* \w a|strong="H3068"\w* \w byword|strong="H4405"\w* \w to|strong="H1961"\w* \w them|strong="H1992"\w*. +\q1 +\v 10 \w They|strong="H3808"\w* \w abhor|strong="H8581"\w* \w me|strong="H6440"\w*, \w they|strong="H3808"\w* \w stand|strong="H7368"\w* \w aloof|strong="H4480"\w* \w from|strong="H4480"\w* \w me|strong="H6440"\w*, +\q2 \w and|strong="H6440"\w* don’t \w hesitate|strong="H2820"\w* \w to|strong="H6440"\w* \w spit|strong="H7536"\w* \w in|strong="H6440"\w* \w my|strong="H4480"\w* \w face|strong="H6440"\w*. +\q1 +\v 11 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* untied \w his|strong="H7971"\w* \w cord|strong="H3499"\w*, \w and|strong="H7971"\w* \w afflicted|strong="H6031"\w* \w me|strong="H6440"\w*; +\q2 \w and|strong="H7971"\w* \w they|strong="H3588"\w* \w have|strong="H3588"\w* \w thrown|strong="H7971"\w* \w off|strong="H6605"\w* restraint \w before|strong="H6440"\w* \w me|strong="H6440"\w*. +\q1 +\v 12 \w On|strong="H5921"\w* \w my|strong="H5921"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w rise|strong="H6965"\w* \w the|strong="H5921"\w* rabble. +\q2 \w They|strong="H5921"\w* \w thrust|strong="H7971"\w* aside \w my|strong="H5921"\w* \w feet|strong="H7272"\w*. +\q2 \w They|strong="H5921"\w* \w cast|strong="H7971"\w* \w their|strong="H5921"\w* ways \w of|strong="H5921"\w* destruction \w up|strong="H6965"\w* \w against|strong="H5921"\w* \w me|strong="H7971"\w*. +\q1 +\v 13 \w They|strong="H3808"\w* \w mar|strong="H5420"\w* \w my|strong="H3808"\w* \w path|strong="H5410"\w*. +\q2 \w They|strong="H3808"\w* promote \w my|strong="H3808"\w* \w destruction|strong="H1942"\w* +\q2 \w without|strong="H3808"\w* anyone’s \w help|strong="H5826"\w*. +\q1 +\v 14 \w As|strong="H8478"\w* through \w a|strong="H3068"\w* \w wide|strong="H7342"\w* \w breach|strong="H6556"\w* \w they|strong="H8478"\w* come. +\q2 \w They|strong="H8478"\w* \w roll|strong="H1556"\w* \w themselves|strong="H1556"\w* \w in|strong="H8478"\w* \w amid|strong="H8478"\w* \w the|strong="H8478"\w* ruin. +\q1 +\v 15 \w Terrors|strong="H1091"\w* \w have|strong="H5921"\w* \w turned|strong="H2015"\w* \w on|strong="H5921"\w* \w me|strong="H5921"\w*. +\q2 \w They|strong="H5921"\w* \w chase|strong="H7291"\w* \w my|strong="H5921"\w* \w honor|strong="H5082"\w* \w as|strong="H2015"\w* \w the|strong="H5921"\w* \w wind|strong="H7307"\w*. +\q2 \w My|strong="H5921"\w* \w welfare|strong="H3444"\w* \w has|strong="H7307"\w* \w passed|strong="H5674"\w* \w away|strong="H5674"\w* \w as|strong="H2015"\w* \w a|strong="H3068"\w* \w cloud|strong="H5645"\w*. +\b +\q1 +\v 16 “\w Now|strong="H6258"\w* \w my|strong="H5921"\w* \w soul|strong="H5315"\w* \w is|strong="H5315"\w* \w poured|strong="H8210"\w* \w out|strong="H8210"\w* \w within|strong="H5921"\w* \w me|strong="H5315"\w*. +\q2 \w Days|strong="H3117"\w* \w of|strong="H3117"\w* \w affliction|strong="H6040"\w* \w have|strong="H3117"\w* taken hold \w of|strong="H3117"\w* \w me|strong="H5315"\w*. +\q1 +\v 17 \w In|strong="H5921"\w* \w the|strong="H5921"\w* \w night|strong="H3915"\w* \w season|strong="H3915"\w* \w my|strong="H5921"\w* \w bones|strong="H6106"\w* \w are|strong="H6106"\w* \w pierced|strong="H5365"\w* \w in|strong="H5921"\w* \w me|strong="H5921"\w*, +\q2 \w and|strong="H3915"\w* \w the|strong="H5921"\w* \w pains|strong="H3808"\w* \w that|strong="H3808"\w* \w gnaw|strong="H6207"\w* \w me|strong="H5921"\w* \w take|strong="H7901"\w* \w no|strong="H3808"\w* \w rest|strong="H7901"\w*. +\q1 +\v 18 \w My|strong="H6310"\w* \w garment|strong="H3830"\w* \w is|strong="H6310"\w* disfigured by \w great|strong="H7227"\w* \w force|strong="H3581"\w*. +\q2 \w It|strong="H3830"\w* binds me about \w as|strong="H6310"\w* \w the|strong="H6310"\w* \w collar|strong="H6310"\w* \w of|strong="H6310"\w* \w my|strong="H6310"\w* \w tunic|strong="H3801"\w*. +\q1 +\v 19 \w He|strong="H3384"\w* has \w cast|strong="H3384"\w* me \w into|strong="H6083"\w* \w the|strong="H3384"\w* \w mire|strong="H2563"\w*. +\q2 I have \w become|strong="H4911"\w* \w like|strong="H4911"\w* \w dust|strong="H6083"\w* \w and|strong="H6083"\w* \w ashes|strong="H6083"\w*. +\q1 +\v 20 \w I|strong="H3808"\w* \w cry|strong="H7768"\w* \w to|strong="H6030"\w* \w you|strong="H3808"\w*, \w and|strong="H6030"\w* \w you|strong="H3808"\w* do \w not|strong="H3808"\w* \w answer|strong="H6030"\w* \w me|strong="H6030"\w*. +\q2 \w I|strong="H3808"\w* \w stand|strong="H5975"\w* \w up|strong="H5975"\w*, \w and|strong="H6030"\w* \w you|strong="H3808"\w* gaze \w at|strong="H5975"\w* \w me|strong="H6030"\w*. +\q1 +\v 21 \w You|strong="H3027"\w* \w have|strong="H3027"\w* \w turned|strong="H2015"\w* \w to|strong="H3027"\w* \w be|strong="H3027"\w* cruel \w to|strong="H3027"\w* \w me|strong="H7852"\w*. +\q2 \w With|strong="H3027"\w* \w the|strong="H3027"\w* \w might|strong="H6108"\w* \w of|strong="H3027"\w* \w your|strong="H3027"\w* \w hand|strong="H3027"\w* \w you|strong="H3027"\w* \w persecute|strong="H7852"\w* \w me|strong="H7852"\w*. +\q1 +\v 22 \w You|strong="H5375"\w* \w lift|strong="H5375"\w* me \w up|strong="H5375"\w* \w to|strong="H7307"\w* \w the|strong="H5375"\w* \w wind|strong="H7307"\w*, \w and|strong="H7307"\w* drive me \w with|strong="H5375"\w* \w it|strong="H5375"\w*. +\q2 \w You|strong="H5375"\w* \w dissolve|strong="H4127"\w* me \w in|strong="H7392"\w* \w the|strong="H5375"\w* storm. +\q1 +\v 23 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H1004"\w* \w bring|strong="H7725"\w* \w me|strong="H7725"\w* \w to|strong="H7725"\w* \w death|strong="H4194"\w*, +\q2 \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w appointed|strong="H4150"\w* \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w living|strong="H2416"\w*. +\b +\q1 +\v 24 “However doesn’t \w one|strong="H3808"\w* \w stretch|strong="H7971"\w* \w out|strong="H7971"\w* \w a|strong="H3068"\w* \w hand|strong="H3027"\w* \w in|strong="H3027"\w* \w his|strong="H7971"\w* fall? +\q2 \w Or|strong="H3808"\w* \w in|strong="H3027"\w* \w his|strong="H7971"\w* \w calamity|strong="H6365"\w* \w therefore|strong="H3861"\w* \w cry|strong="H7769"\w* \w for|strong="H3027"\w* \w help|strong="H7769"\w*? +\q1 +\v 25 Didn’t \w I|strong="H3117"\w* \w weep|strong="H1058"\w* \w for|strong="H3117"\w* \w him|strong="H5315"\w* \w who|strong="H5315"\w* \w was|strong="H3117"\w* \w in|strong="H3117"\w* \w trouble|strong="H7186"\w*? +\q2 Wasn’t \w my|strong="H3808"\w* \w soul|strong="H5315"\w* \w grieved|strong="H5701"\w* \w for|strong="H3117"\w* \w the|strong="H3117"\w* needy? +\q1 +\v 26 \w When|strong="H3588"\w* \w I|strong="H3588"\w* \w looked|strong="H6960"\w* \w for|strong="H3588"\w* \w good|strong="H2896"\w*, \w then|strong="H3588"\w* \w evil|strong="H7451"\w* \w came|strong="H7451"\w*. +\q2 \w When|strong="H3588"\w* \w I|strong="H3588"\w* \w waited|strong="H3176"\w* \w for|strong="H3588"\w* light, darkness \w came|strong="H7451"\w*. +\q1 +\v 27 \w My|strong="H3808"\w* \w heart|strong="H4578"\w* \w is|strong="H3117"\w* troubled, \w and|strong="H3117"\w* doesn’t \w rest|strong="H1826"\w*. +\q2 \w Days|strong="H3117"\w* \w of|strong="H3117"\w* \w affliction|strong="H6040"\w* \w have|strong="H3117"\w* \w come|strong="H6923"\w* \w on|strong="H3117"\w* \w me|strong="H3808"\w*. +\q1 +\v 28 \w I|strong="H3808"\w* \w go|strong="H1980"\w* \w mourning|strong="H6937"\w* \w without|strong="H3808"\w* \w the|strong="H6965"\w* \w sun|strong="H2535"\w*. +\q2 \w I|strong="H3808"\w* \w stand|strong="H6965"\w* \w up|strong="H6965"\w* \w in|strong="H1980"\w* \w the|strong="H6965"\w* \w assembly|strong="H6951"\w*, \w and|strong="H1980"\w* \w cry|strong="H7768"\w* \w for|strong="H7768"\w* \w help|strong="H7768"\w*. +\q1 +\v 29 \w I|strong="H1961"\w* \w am|strong="H1961"\w* \w a|strong="H3068"\w* \w brother|strong="H7453"\w* \w to|strong="H1961"\w* \w jackals|strong="H8577"\w*, +\q2 \w and|strong="H1323"\w* \w a|strong="H3068"\w* \w companion|strong="H7453"\w* \w to|strong="H1961"\w* \w ostriches|strong="H3284"\w*. +\q1 +\v 30 \w My|strong="H5921"\w* \w skin|strong="H5785"\w* grows \w black|strong="H7835"\w* \w and|strong="H5785"\w* peels \w from|strong="H4480"\w* \w me|strong="H5921"\w*. +\q2 \w My|strong="H5921"\w* \w bones|strong="H6106"\w* \w are|strong="H6106"\w* \w burned|strong="H2787"\w* \w with|strong="H5921"\w* \w heat|strong="H2721"\w*. +\q1 +\v 31 \w Therefore|strong="H1961"\w* \w my|strong="H1961"\w* \w harp|strong="H3658"\w* \w has|strong="H1961"\w* \w turned|strong="H1961"\w* \w to|strong="H1961"\w* mourning, +\q2 \w and|strong="H6963"\w* \w my|strong="H1961"\w* \w pipe|strong="H5748"\w* \w into|strong="H1961"\w* \w the|strong="H1961"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w those|strong="H1961"\w* who \w weep|strong="H1058"\w*. +\b +\c 31 +\b +\q1 +\v 1 “\w I|strong="H5921"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w my|strong="H5921"\w* \w eyes|strong="H5869"\w*; +\q2 \w how|strong="H4100"\w* \w then|strong="H4100"\w* \w should|strong="H4100"\w* \w I|strong="H5921"\w* \w look|strong="H5869"\w* lustfully \w at|strong="H5921"\w* \w a|strong="H3068"\w* young woman? +\q1 +\v 2 \w For|strong="H2506"\w* \w what|strong="H4100"\w* \w is|strong="H4100"\w* \w the|strong="H4100"\w* \w portion|strong="H2506"\w* \w from|strong="H2506"\w* God \w above|strong="H4605"\w*, +\q2 \w and|strong="H4605"\w* \w the|strong="H4100"\w* \w heritage|strong="H5159"\w* \w from|strong="H2506"\w* \w the|strong="H4100"\w* \w Almighty|strong="H7706"\w* \w on|strong="H4100"\w* \w high|strong="H4791"\w*? +\q1 +\v 3 \w Is|strong="H3808"\w* \w it|strong="H3808"\w* \w not|strong="H3808"\w* calamity \w to|strong="H3808"\w* \w the|strong="H3808"\w* \w unrighteous|strong="H5767"\w*, +\q2 \w and|strong="H6466"\w* \w disaster|strong="H5235"\w* \w to|strong="H3808"\w* \w the|strong="H3808"\w* \w workers|strong="H6466"\w* \w of|strong="H6466"\w* \w iniquity|strong="H5767"\w*? +\q1 +\v 4 Doesn’t \w he|strong="H1931"\w* \w see|strong="H7200"\w* \w my|strong="H3605"\w* \w ways|strong="H1870"\w*, +\q2 \w and|strong="H1870"\w* \w count|strong="H5608"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w steps|strong="H6806"\w*? +\b +\q1 +\v 5 “If \w I|strong="H5921"\w* \w have|strong="H7272"\w* \w walked|strong="H1980"\w* \w with|strong="H5973"\w* \w falsehood|strong="H7723"\w*, +\q2 \w and|strong="H1980"\w* \w my|strong="H5921"\w* \w foot|strong="H7272"\w* \w has|strong="H7272"\w* \w hurried|strong="H2363"\w* \w to|strong="H1980"\w* \w deceit|strong="H4820"\w* +\q1 +\v 6 (let \w me|strong="H3045"\w* be \w weighed|strong="H8254"\w* \w in|strong="H3045"\w* an \w even|strong="H6664"\w* \w balance|strong="H3976"\w*, +\q2 \w that|strong="H3045"\w* God may \w know|strong="H3045"\w* \w my|strong="H3045"\w* \w integrity|strong="H8538"\w*); +\q1 +\v 7 if \w my|strong="H5186"\w* step \w has|strong="H3820"\w* \w turned|strong="H5186"\w* \w out|strong="H5186"\w* \w of|strong="H1870"\w* \w the|strong="H4480"\w* \w way|strong="H1870"\w*, +\q2 if \w my|strong="H5186"\w* \w heart|strong="H3820"\w* \w walked|strong="H1980"\w* \w after|strong="H4480"\w* \w my|strong="H5186"\w* \w eyes|strong="H5869"\w*, +\q2 if \w any|strong="H4480"\w* defilement \w has|strong="H3820"\w* \w stuck|strong="H1692"\w* \w to|strong="H1980"\w* \w my|strong="H5186"\w* \w hands|strong="H3709"\w*, +\q1 +\v 8 then let me \w sow|strong="H2232"\w*, \w and|strong="H2232"\w* let another eat. +\q2 Yes, let \w the|strong="H2232"\w* produce of my field \w be|strong="H6631"\w* rooted \w out|strong="H8327"\w*. +\b +\q1 +\v 9 “If \w my|strong="H5921"\w* \w heart|strong="H3820"\w* \w has|strong="H3820"\w* been \w enticed|strong="H6601"\w* \w to|strong="H5921"\w* \w a|strong="H3068"\w* woman, +\q2 \w and|strong="H3820"\w* \w I|strong="H5921"\w* \w have|strong="H5921"\w* laid wait \w at|strong="H5921"\w* \w my|strong="H5921"\w* \w neighbor|strong="H7453"\w*’s \w door|strong="H6607"\w*, +\q1 +\v 10 then let \w my|strong="H5921"\w* wife \w grind|strong="H2912"\w* \w for|strong="H5921"\w* another, +\q2 \w and|strong="H3766"\w* let others sleep \w with|strong="H5921"\w* \w her|strong="H5921"\w*. +\q1 +\v 11 \w For|strong="H3588"\w* \w that|strong="H3588"\w* would \w be|strong="H3588"\w* \w a|strong="H3068"\w* \w heinous|strong="H2154"\w* \w crime|strong="H2154"\w*. +\q2 \w Yes|strong="H3588"\w*, \w it|strong="H1931"\w* would \w be|strong="H3588"\w* \w an|strong="H3588"\w* \w iniquity|strong="H5771"\w* \w to|strong="H5771"\w* \w be|strong="H3588"\w* punished \w by|strong="H3588"\w* \w the|strong="H3588"\w* \w judges|strong="H6414"\w*, +\q1 +\v 12 \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* fire \w that|strong="H3588"\w* consumes \w to|strong="H5704"\w* destruction, +\q2 \w and|strong="H3605"\w* \w would|strong="H3605"\w* \w root|strong="H8327"\w* \w out|strong="H8327"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w increase|strong="H8393"\w*. +\q1 +\v 13 “If \w I|strong="H5650"\w* \w have|strong="H5650"\w* \w despised|strong="H3988"\w* \w the|strong="H5650"\w* \w cause|strong="H4941"\w* \w of|strong="H5650"\w* \w my|strong="H7378"\w* \w male|strong="H5650"\w* \w servant|strong="H5650"\w* +\q2 \w or|strong="H4941"\w* \w of|strong="H5650"\w* \w my|strong="H7378"\w* female \w servant|strong="H5650"\w*, +\q2 \w when|strong="H7378"\w* \w they|strong="H3988"\w* \w contended|strong="H7378"\w* \w with|strong="H7378"\w* \w me|strong="H5978"\w*, +\q1 +\v 14 \w what|strong="H4100"\w* \w then|strong="H6965"\w* \w will|strong="H4100"\w* \w I|strong="H3588"\w* \w do|strong="H6213"\w* \w when|strong="H3588"\w* God \w rises|strong="H6965"\w* \w up|strong="H6965"\w*? +\q2 \w When|strong="H3588"\w* \w he|strong="H3588"\w* visits, \w what|strong="H4100"\w* \w will|strong="H4100"\w* \w I|strong="H3588"\w* \w answer|strong="H7725"\w* \w him|strong="H6213"\w*? +\q1 +\v 15 Didn’t \w he|strong="H6213"\w* \w who|strong="H6213"\w* \w made|strong="H6213"\w* \w me|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w womb|strong="H7358"\w* \w make|strong="H6213"\w* \w him|strong="H6213"\w*? +\q2 Didn’t \w one|strong="H3808"\w* \w fashion|strong="H3559"\w* \w us|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w womb|strong="H7358"\w*? +\q1 +\v 16 “If \w I|strong="H5869"\w* \w have|strong="H5869"\w* \w withheld|strong="H4513"\w* \w the|strong="H3615"\w* \w poor|strong="H1800"\w* \w from|strong="H5869"\w* \w their|strong="H3615"\w* \w desire|strong="H2656"\w*, +\q2 \w or|strong="H1800"\w* \w have|strong="H5869"\w* caused \w the|strong="H3615"\w* \w eyes|strong="H5869"\w* \w of|strong="H5869"\w* \w the|strong="H3615"\w* widow \w to|strong="H5869"\w* \w fail|strong="H3615"\w*, +\q1 +\v 17 \w or|strong="H3808"\w* \w have|strong="H3808"\w* eaten \w my|strong="H4480"\w* \w morsel|strong="H6595"\w* \w alone|strong="H4480"\w*, +\q2 \w and|strong="H3490"\w* \w the|strong="H4480"\w* \w fatherless|strong="H3490"\w* has \w not|strong="H3808"\w* eaten \w of|strong="H4480"\w* \w it|strong="H3808"\w* +\q1 +\v 18 (no, from \w my|strong="H3588"\w* \w youth|strong="H5271"\w* \w he|strong="H3588"\w* \w grew|strong="H1431"\w* \w up|strong="H1431"\w* \w with|strong="H3588"\w* \w me|strong="H5148"\w* \w as|strong="H3588"\w* \w with|strong="H3588"\w* \w a|strong="H3068"\w* father, +\q2 \w I|strong="H3588"\w* \w have|strong="H3588"\w* \w guided|strong="H5148"\w* \w her|strong="H3588"\w* from \w my|strong="H3588"\w* mother’s womb); +\q1 +\v 19 \w if|strong="H7200"\w* \w I|strong="H7200"\w* \w have|strong="H7200"\w* \w seen|strong="H7200"\w* \w any|strong="H7200"\w* perish \w for|strong="H7200"\w* \w want|strong="H1097"\w* \w of|strong="H1097"\w* \w clothing|strong="H3830"\w*, +\q2 \w or|strong="H7200"\w* \w that|strong="H7200"\w* \w the|strong="H7200"\w* needy had \w no|strong="H1097"\w* \w covering|strong="H3682"\w*; +\q1 +\v 20 \w if|strong="H1288"\w* \w his|strong="H1288"\w* heart hasn’t \w blessed|strong="H1288"\w* \w me|strong="H1288"\w*, +\q2 \w if|strong="H1288"\w* \w he|strong="H3808"\w* hasn’t \w been|strong="H3808"\w* \w warmed|strong="H2552"\w* \w with|strong="H1288"\w* \w my|strong="H3808"\w* \w sheep|strong="H3532"\w*’s \w fleece|strong="H1488"\w*; +\q1 +\v 21 \w if|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3027"\w* \w lifted|strong="H5130"\w* \w up|strong="H7200"\w* \w my|strong="H7200"\w* \w hand|strong="H3027"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w fatherless|strong="H3490"\w*, +\q2 \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w saw|strong="H7200"\w* \w my|strong="H7200"\w* \w help|strong="H5833"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w gate|strong="H8179"\w*; +\q1 +\v 22 \w then|strong="H5307"\w* let \w my|strong="H7665"\w* \w shoulder|strong="H3802"\w* \w fall|strong="H5307"\w* \w from|strong="H5307"\w* \w the|strong="H7665"\w* \w shoulder|strong="H3802"\w* \w blade|strong="H7929"\w*, +\q2 \w and|strong="H5307"\w* \w my|strong="H7665"\w* \w arm|strong="H3802"\w* \w be|strong="H7665"\w* \w broken|strong="H7665"\w* \w from|strong="H5307"\w* \w the|strong="H7665"\w* \w bone|strong="H7070"\w*. +\q1 +\v 23 \w For|strong="H3588"\w* calamity \w from|strong="H3808"\w* \w God|strong="H3808"\w* \w is|strong="H3808"\w* \w a|strong="H3068"\w* \w terror|strong="H6343"\w* \w to|strong="H3201"\w* \w me|strong="H3808"\w*. +\q2 \w Because|strong="H3588"\w* \w of|strong="H6343"\w* \w his|strong="H3588"\w* \w majesty|strong="H7613"\w*, \w I|strong="H3588"\w* \w can|strong="H3201"\w* \w do|strong="H3201"\w* \w nothing|strong="H3808"\w*. +\q1 +\v 24 “\w If|strong="H7760"\w* \w I|strong="H7760"\w* have \w made|strong="H7760"\w* \w gold|strong="H2091"\w* \w my|strong="H7760"\w* \w hope|strong="H3689"\w*, +\q2 \w and|strong="H2091"\w* have said \w to|strong="H2091"\w* \w the|strong="H7760"\w* \w fine|strong="H3800"\w* \w gold|strong="H2091"\w*, ‘\w You|strong="H7760"\w* \w are|strong="H3689"\w* \w my|strong="H7760"\w* \w confidence|strong="H4009"\w*;’ +\q1 +\v 25 \w If|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3027"\w* \w rejoiced|strong="H8055"\w* \w because|strong="H3588"\w* \w my|strong="H3588"\w* \w wealth|strong="H2428"\w* \w was|strong="H3027"\w* \w great|strong="H7227"\w*, +\q2 \w and|strong="H3027"\w* \w because|strong="H3588"\w* \w my|strong="H3588"\w* \w hand|strong="H3027"\w* \w had|strong="H3588"\w* \w gotten|strong="H4672"\w* \w much|strong="H7227"\w*; +\q1 +\v 26 \w if|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H7200"\w* \w seen|strong="H7200"\w* \w the|strong="H7200"\w* sun \w when|strong="H3588"\w* \w it|strong="H3588"\w* \w shined|strong="H1984"\w*, +\q2 \w or|strong="H7200"\w* \w the|strong="H7200"\w* \w moon|strong="H3394"\w* \w moving|strong="H1980"\w* \w in|strong="H1980"\w* \w splendor|strong="H3368"\w*, +\q1 +\v 27 \w and|strong="H3027"\w* \w my|strong="H3027"\w* \w heart|strong="H3820"\w* \w has|strong="H3820"\w* been \w secretly|strong="H5643"\w* \w enticed|strong="H6601"\w*, +\q2 \w and|strong="H3027"\w* \w my|strong="H3027"\w* \w hand|strong="H3027"\w* \w threw|strong="H5401"\w* \w a|strong="H3068"\w* \w kiss|strong="H5401"\w* \w from|strong="H3027"\w* \w my|strong="H3027"\w* \w mouth|strong="H6310"\w*; +\q1 +\v 28 \w this|strong="H1931"\w* \w also|strong="H1571"\w* would \w be|strong="H1571"\w* \w an|strong="H3588"\w* \w iniquity|strong="H5771"\w* \w to|strong="H5771"\w* \w be|strong="H1571"\w* punished \w by|strong="H1571"\w* \w the|strong="H3588"\w* judges, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* would \w have|strong="H1571"\w* \w denied|strong="H3584"\w* \w the|strong="H3588"\w* God \w who|strong="H1931"\w* \w is|strong="H1931"\w* \w above|strong="H4605"\w*. +\q1 +\v 29 “\w If|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H4672"\w* \w rejoiced|strong="H8055"\w* \w at|strong="H4672"\w* \w the|strong="H3588"\w* \w destruction|strong="H6365"\w* \w of|strong="H7451"\w* \w him|strong="H4672"\w* \w who|strong="H4672"\w* \w hated|strong="H8130"\w* \w me|strong="H8130"\w*, +\q2 \w or|strong="H5782"\w* \w lifted|strong="H5782"\w* \w up|strong="H5782"\w* myself \w when|strong="H3588"\w* \w evil|strong="H7451"\w* \w found|strong="H4672"\w* \w him|strong="H4672"\w* +\q1 +\v 30 (\w I|strong="H5414"\w* \w have|strong="H5414"\w* \w certainly|strong="H3808"\w* \w not|strong="H3808"\w* \w allowed|strong="H5414"\w* \w my|strong="H5414"\w* \w mouth|strong="H2441"\w* \w to|strong="H5414"\w* \w sin|strong="H2398"\w* +\q2 \w by|strong="H5414"\w* \w asking|strong="H7592"\w* \w his|strong="H5414"\w* \w life|strong="H5315"\w* \w with|strong="H5315"\w* \w a|strong="H3068"\w* curse); +\q1 +\v 31 if \w the|strong="H5414"\w* \w men|strong="H4962"\w* \w of|strong="H1320"\w* \w my|strong="H5414"\w* tent \w have|strong="H7646"\w* \w not|strong="H3808"\w* said, +\q2 ‘\w Who|strong="H4310"\w* \w can|strong="H4310"\w* \w find|strong="H5414"\w* \w one|strong="H3808"\w* \w who|strong="H4310"\w* \w has|strong="H4310"\w* \w not|strong="H3808"\w* \w been|strong="H3808"\w* \w filled|strong="H7646"\w* \w with|strong="H7646"\w* \w his|strong="H5414"\w* \w meat|strong="H1320"\w*?’ +\q1 +\v 32 (\w the|strong="H2351"\w* \w foreigner|strong="H1616"\w* has \w not|strong="H3808"\w* camped \w in|strong="H3885"\w* \w the|strong="H2351"\w* \w street|strong="H2351"\w*, +\q2 \w but|strong="H3808"\w* \w I|strong="H3808"\w* \w have|strong="H3808"\w* \w opened|strong="H6605"\w* \w my|strong="H6605"\w* \w doors|strong="H1817"\w* \w to|strong="H3808"\w* \w the|strong="H2351"\w* traveler); +\q1 +\v 33 if \w like|strong="H6588"\w* Adam \w I|strong="H6588"\w* \w have|strong="H5771"\w* \w covered|strong="H3680"\w* \w my|strong="H3680"\w* \w transgressions|strong="H6588"\w*, +\q2 \w by|strong="H5771"\w* \w hiding|strong="H2934"\w* \w my|strong="H3680"\w* \w iniquity|strong="H5771"\w* \w in|strong="H6588"\w* \w my|strong="H3680"\w* heart, +\q1 +\v 34 \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w feared|strong="H6206"\w* \w the|strong="H3588"\w* \w great|strong="H7227"\w* \w multitude|strong="H1995"\w*, +\q2 \w and|strong="H3318"\w* \w the|strong="H3588"\w* contempt \w of|strong="H4940"\w* \w families|strong="H4940"\w* \w terrified|strong="H2865"\w* \w me|strong="H3318"\w*, +\q2 \w so|strong="H3808"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w kept|strong="H1826"\w* \w silence|strong="H1826"\w*, \w and|strong="H3318"\w* didn’t \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4940"\w* \w the|strong="H3588"\w* \w door|strong="H6607"\w*— +\q1 +\v 35 \w oh|strong="H4310"\w* \w that|strong="H8085"\w* \w I|strong="H2005"\w* \w had|strong="H5414"\w* \w one|strong="H4310"\w* \w to|strong="H5414"\w* \w hear|strong="H8085"\w* \w me|strong="H5414"\w*! +\q2 \w Behold|strong="H2005"\w*, \w here|strong="H2005"\w* \w is|strong="H4310"\w* \w my|strong="H8085"\w* \w signature|strong="H8420"\w*! \w Let|strong="H5414"\w* \w the|strong="H8085"\w* \w Almighty|strong="H7706"\w* \w answer|strong="H6030"\w* \w me|strong="H5414"\w*! +\q2 \w Let|strong="H5414"\w* \w the|strong="H8085"\w* accuser \w write|strong="H3789"\w* \w my|strong="H8085"\w* \w indictment|strong="H5612"\w*! +\q1 +\v 36 \w Surely|strong="H3808"\w* \w I|strong="H5921"\w* would \w carry|strong="H5375"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w my|strong="H5921"\w* \w shoulder|strong="H7926"\w*, +\q2 \w and|strong="H7926"\w* \w I|strong="H5921"\w* would \w bind|strong="H6029"\w* \w it|strong="H5921"\w* \w to|strong="H5921"\w* \w me|strong="H5921"\w* \w as|strong="H5921"\w* \w a|strong="H3068"\w* \w crown|strong="H5850"\w*. +\q1 +\v 37 \w I|strong="H3644"\w* would \w declare|strong="H5046"\w* \w to|strong="H5046"\w* \w him|strong="H5046"\w* \w the|strong="H7126"\w* \w number|strong="H4557"\w* \w of|strong="H4557"\w* \w my|strong="H5046"\w* \w steps|strong="H6806"\w*. +\q2 \w I|strong="H3644"\w* would \w go|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H5046"\w* \w him|strong="H5046"\w* \w like|strong="H3644"\w* \w a|strong="H3068"\w* \w prince|strong="H5057"\w*. +\q1 +\v 38 If \w my|strong="H5921"\w* land \w cries|strong="H2199"\w* \w out|strong="H2199"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*, +\q2 \w and|strong="H1058"\w* \w its|strong="H5921"\w* \w furrows|strong="H8525"\w* \w weep|strong="H1058"\w* \w together|strong="H3162"\w*; +\q1 +\v 39 if \w I|strong="H5315"\w* \w have|strong="H1167"\w* eaten \w its|strong="H1167"\w* \w fruits|strong="H3581"\w* \w without|strong="H1097"\w* \w money|strong="H3701"\w*, +\q2 \w or|strong="H3701"\w* \w have|strong="H1167"\w* caused \w its|strong="H1167"\w* \w owners|strong="H1167"\w* \w to|strong="H5315"\w* \w lose|strong="H5301"\w* \w their|strong="H5301"\w* \w life|strong="H5315"\w*, +\q1 +\v 40 let briers \w grow|strong="H3318"\w* \w instead|strong="H8478"\w* \w of|strong="H1697"\w* \w wheat|strong="H2406"\w*, +\q2 \w and|strong="H1697"\w* stinkweed \w instead|strong="H8478"\w* \w of|strong="H1697"\w* \w barley|strong="H8184"\w*.” +\b +\p \w The|strong="H8478"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* Job \w are|strong="H1697"\w* \w ended|strong="H8552"\w*. +\c 32 +\p +\v 1 \w So|strong="H3588"\w* \w these|strong="H1931"\w* \w three|strong="H7969"\w* \w men|strong="H6662"\w* \w ceased|strong="H7673"\w* \w to|strong="H5869"\w* \w answer|strong="H6030"\w* Job, \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w righteous|strong="H6662"\w* \w in|strong="H5869"\w* \w his|strong="H3588"\w* \w own|strong="H5869"\w* \w eyes|strong="H5869"\w*. +\v 2 \w Then|strong="H1121"\w* \w the|strong="H5921"\w* wrath \w of|strong="H1121"\w* Elihu \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Barachel|strong="H1292"\w*, \w the|strong="H5921"\w* Buzite, \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w family|strong="H4940"\w* \w of|strong="H1121"\w* \w Ram|strong="H7410"\w*, \w was|strong="H5315"\w* \w kindled|strong="H2734"\w* \w against|strong="H5921"\w* Job. \w His|strong="H5921"\w* wrath \w was|strong="H5315"\w* \w kindled|strong="H2734"\w* \w because|strong="H5921"\w* \w he|strong="H5921"\w* \w justified|strong="H6663"\w* \w himself|strong="H5315"\w* rather \w than|strong="H5921"\w* God. +\v 3 Also \w his|strong="H5921"\w* wrath \w was|strong="H3808"\w* \w kindled|strong="H2734"\w* \w against|strong="H5921"\w* \w his|strong="H5921"\w* \w three|strong="H7969"\w* \w friends|strong="H7453"\w*, \w because|strong="H5921"\w* \w they|strong="H3808"\w* \w had|strong="H4672"\w* \w found|strong="H4672"\w* \w no|strong="H3808"\w* \w answer|strong="H4617"\w*, \w and|strong="H7969"\w* \w yet|strong="H3808"\w* \w had|strong="H4672"\w* \w condemned|strong="H7561"\w* \w Job|strong="H3808"\w*. +\v 4 \w Now|strong="H3117"\w* Elihu \w had|strong="H3588"\w* \w waited|strong="H2442"\w* \w to|strong="H3117"\w* \w speak|strong="H1697"\w* \w to|strong="H3117"\w* Job, \w because|strong="H3588"\w* \w they|strong="H1992"\w* \w were|strong="H3117"\w* \w older|strong="H2205"\w* \w than|strong="H4480"\w* \w he|strong="H3588"\w*. +\v 5 \w When|strong="H3588"\w* Elihu \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w there|strong="H7200"\w* \w was|strong="H6310"\w* \w no|strong="H7200"\w* \w answer|strong="H4617"\w* \w in|strong="H6310"\w* \w the|strong="H7200"\w* \w mouth|strong="H6310"\w* \w of|strong="H6310"\w* these \w three|strong="H7969"\w* men, \w his|strong="H7200"\w* wrath \w was|strong="H6310"\w* \w kindled|strong="H2734"\w*. +\b +\p +\v 6 Elihu \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Barachel|strong="H1292"\w* \w the|strong="H5921"\w* Buzite \w answered|strong="H6030"\w*, +\q1 “\w I|strong="H3117"\w* am \w young|strong="H1121"\w*, \w and|strong="H1121"\w* \w you|strong="H5921"\w* \w are|strong="H3117"\w* \w very|strong="H3651"\w* \w old|strong="H1121"\w*. +\q2 \w Therefore|strong="H3651"\w* \w I|strong="H3117"\w* held back, \w and|strong="H1121"\w* didn’t dare \w show|strong="H2331"\w* \w you|strong="H5921"\w* \w my|strong="H5921"\w* \w opinion|strong="H1843"\w*. +\q1 +\v 7 \w I|strong="H3117"\w* \w said|strong="H1696"\w*, ‘\w Days|strong="H3117"\w* \w should|strong="H8141"\w* \w speak|strong="H1696"\w*, +\q2 \w and|strong="H3117"\w* \w multitude|strong="H7230"\w* \w of|strong="H3117"\w* \w years|strong="H8141"\w* \w should|strong="H8141"\w* \w teach|strong="H3045"\w* \w wisdom|strong="H2451"\w*.’ +\q1 +\v 8 \w But|strong="H1931"\w* there \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w spirit|strong="H7307"\w* \w in|strong="H7307"\w* man, +\q2 \w and|strong="H7307"\w* \w the|strong="H1931"\w* \w Spirit|strong="H7307"\w*\f + \fr 32:8 \ft or, breath\f* \w of|strong="H7307"\w* \w the|strong="H1931"\w* \w Almighty|strong="H7706"\w* gives \w them|strong="H1931"\w* understanding. +\q1 +\v 9 \w It|strong="H3808"\w* \w is|strong="H4941"\w* \w not|strong="H3808"\w* \w the|strong="H3808"\w* \w great|strong="H7227"\w* \w who|strong="H7227"\w* \w are|strong="H7227"\w* \w wise|strong="H2449"\w*, +\q2 \w nor|strong="H3808"\w* \w the|strong="H3808"\w* \w aged|strong="H2205"\w* \w who|strong="H7227"\w* understand \w justice|strong="H4941"\w*. +\q1 +\v 10 \w Therefore|strong="H3651"\w* \w I|strong="H3651"\w* \w said|strong="H8085"\w*, ‘\w Listen|strong="H8085"\w* \w to|strong="H8085"\w* \w me|strong="H8085"\w*; +\q2 \w I|strong="H3651"\w* \w also|strong="H8085"\w* \w will|strong="H8085"\w* \w show|strong="H2331"\w* \w my|strong="H8085"\w* \w opinion|strong="H1843"\w*.’ +\b +\q1 +\v 11 “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w waited|strong="H3176"\w* \w for|strong="H5704"\w* \w your|strong="H5704"\w* \w words|strong="H1697"\w*, +\q2 \w and|strong="H1697"\w* \w I|strong="H2005"\w* listened \w for|strong="H5704"\w* \w your|strong="H5704"\w* reasoning, +\q2 \w while|strong="H5704"\w* \w you|strong="H5704"\w* \w searched|strong="H2713"\w* \w out|strong="H2713"\w* \w what|strong="H1697"\w* \w to|strong="H5704"\w* \w say|strong="H4405"\w*. +\q1 +\v 12 \w Yes|strong="H2009"\w*, \w I|strong="H5704"\w* gave \w you|strong="H5704"\w* \w my|strong="H4480"\w* full attention, +\q2 \w but|strong="H6030"\w* \w there|strong="H2009"\w* was \w no|strong="H4480"\w* \w one|strong="H4480"\w* \w who|strong="H3198"\w* \w convinced|strong="H3198"\w* Job, +\q2 \w or|strong="H5704"\w* \w who|strong="H3198"\w* \w answered|strong="H6030"\w* \w his|strong="H4480"\w* words, \w among|strong="H4480"\w* \w you|strong="H5704"\w*. +\q1 +\v 13 \w Beware|strong="H6435"\w* \w lest|strong="H6435"\w* \w you|strong="H3808"\w* say, ‘\w We|strong="H6435"\w* \w have|strong="H4672"\w* \w found|strong="H4672"\w* \w wisdom|strong="H2451"\w*. +\q2 \w God|strong="H3808"\w* \w may|strong="H3808"\w* refute \w him|strong="H4672"\w*, \w not|strong="H3808"\w* \w man|strong="H2451"\w*;’ +\q1 +\v 14 \w for|strong="H6186"\w* \w he|strong="H3808"\w* has \w not|strong="H3808"\w* \w directed|strong="H6186"\w* \w his|strong="H7725"\w* \w words|strong="H4405"\w* \w against|strong="H6186"\w* \w me|strong="H7725"\w*; +\q2 \w neither|strong="H3808"\w* \w will|strong="H3808"\w* \w I|strong="H3808"\w* \w answer|strong="H7725"\w* \w him|strong="H7725"\w* \w with|strong="H7725"\w* \w your|strong="H7725"\w* \w speeches|strong="H4405"\w*. +\b +\q1 +\v 15 “\w They|strong="H1992"\w* \w are|strong="H1992"\w* \w amazed|strong="H2865"\w*. \w They|strong="H1992"\w* \w answer|strong="H6030"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w*. +\q2 \w They|strong="H1992"\w* don’t \w have|strong="H4405"\w* \w a|strong="H3068"\w* \w word|strong="H4405"\w* \w to|strong="H6030"\w* \w say|strong="H4405"\w*. +\q1 +\v 16 \w Shall|strong="H3808"\w* \w I|strong="H3588"\w* \w wait|strong="H3176"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* don’t \w speak|strong="H1696"\w*, +\q2 \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w stand|strong="H5975"\w* \w still|strong="H5750"\w*, \w and|strong="H6030"\w* \w answer|strong="H6030"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w*? +\q1 +\v 17 \w I|strong="H1843"\w* also will \w answer|strong="H6030"\w* \w my|strong="H6030"\w* \w part|strong="H2506"\w*, +\q2 \w and|strong="H6030"\w* \w I|strong="H1843"\w* also will \w show|strong="H2331"\w* \w my|strong="H6030"\w* \w opinion|strong="H1843"\w*. +\q1 +\v 18 \w For|strong="H3588"\w* \w I|strong="H3588"\w* am \w full|strong="H4390"\w* \w of|strong="H7307"\w* \w words|strong="H4405"\w*. +\q2 \w The|strong="H3588"\w* \w spirit|strong="H7307"\w* within \w me|strong="H3588"\w* \w constrains|strong="H6693"\w* \w me|strong="H3588"\w*. +\q1 +\v 19 \w Behold|strong="H2009"\w*, \w my|strong="H6605"\w* breast \w is|strong="H2009"\w* as \w wine|strong="H3196"\w* \w which|strong="H3196"\w* \w has|strong="H2009"\w* \w no|strong="H3808"\w* \w vent|strong="H6605"\w*; +\q2 \w like|strong="H3808"\w* \w new|strong="H2319"\w* \w wineskins|strong="H3196"\w* \w it|strong="H3808"\w* \w is|strong="H2009"\w* ready \w to|strong="H3808"\w* \w burst|strong="H1234"\w*. +\q1 +\v 20 I \w will|strong="H8193"\w* \w speak|strong="H1696"\w*, \w that|strong="H8193"\w* I \w may|strong="H8193"\w* \w be|strong="H8193"\w* \w refreshed|strong="H7304"\w*. +\q2 I \w will|strong="H8193"\w* \w open|strong="H6605"\w* \w my|strong="H6605"\w* \w lips|strong="H8193"\w* \w and|strong="H6030"\w* \w answer|strong="H6030"\w*. +\q1 +\v 21 \w Please|strong="H4994"\w* don’t \w let|strong="H4994"\w* \w me|strong="H6440"\w* \w respect|strong="H5375"\w* \w any|strong="H5375"\w* \w man|strong="H5375"\w*’s \w person|strong="H6440"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H3808"\w* \w I|strong="H3808"\w* \w give|strong="H5375"\w* flattering \w titles|strong="H3655"\w* \w to|strong="H6440"\w* \w any|strong="H5375"\w* \w man|strong="H5375"\w*. +\q1 +\v 22 \w For|strong="H3588"\w* \w I|strong="H3588"\w* don’t \w know|strong="H3045"\w* \w how|strong="H3588"\w* \w to|strong="H6213"\w* \w give|strong="H5375"\w* flattering \w titles|strong="H3655"\w*, +\q2 \w or|strong="H3808"\w* \w else|strong="H3808"\w* \w my|strong="H3045"\w* \w Maker|strong="H6213"\w* \w would|strong="H6213"\w* \w soon|strong="H4592"\w* \w take|strong="H5375"\w* \w me|strong="H6213"\w* \w away|strong="H5375"\w*. +\b +\c 33 +\b +\q1 +\v 1 “\w However|strong="H8085"\w*, Job, \w please|strong="H4994"\w* \w hear|strong="H8085"\w* \w my|strong="H8085"\w* \w speech|strong="H1697"\w*, +\q2 \w and|strong="H8085"\w* \w listen|strong="H8085"\w* \w to|strong="H8085"\w* \w all|strong="H3605"\w* \w my|strong="H8085"\w* \w words|strong="H1697"\w*. +\q1 +\v 2 \w See|strong="H2009"\w* \w now|strong="H4994"\w*, \w I|strong="H2009"\w* \w have|strong="H1696"\w* \w opened|strong="H6605"\w* \w my|strong="H6605"\w* \w mouth|strong="H6310"\w*. +\q2 \w My|strong="H6605"\w* \w tongue|strong="H3956"\w* \w has|strong="H2009"\w* \w spoken|strong="H1696"\w* \w in|strong="H1696"\w* \w my|strong="H6605"\w* \w mouth|strong="H6310"\w*. +\q1 +\v 3 \w My|strong="H1847"\w* \w words|strong="H8193"\w* \w will|strong="H3820"\w* \w utter|strong="H4448"\w* \w the|strong="H1847"\w* \w uprightness|strong="H3476"\w* \w of|strong="H3820"\w* \w my|strong="H1847"\w* \w heart|strong="H3820"\w*. +\q2 \w That|strong="H3820"\w* which \w my|strong="H1847"\w* \w lips|strong="H8193"\w* \w know|strong="H1847"\w* \w they|strong="H3820"\w* \w will|strong="H3820"\w* \w speak|strong="H4448"\w* \w sincerely|strong="H1305"\w*. +\q1 +\v 4 \w The|strong="H6213"\w* \w Spirit|strong="H7307"\w* \w of|strong="H7307"\w* God \w has|strong="H7307"\w* \w made|strong="H6213"\w* \w me|strong="H6213"\w*, +\q2 \w and|strong="H6213"\w* \w the|strong="H6213"\w* \w breath|strong="H7307"\w* \w of|strong="H7307"\w* \w the|strong="H6213"\w* \w Almighty|strong="H7706"\w* \w gives|strong="H2421"\w* \w me|strong="H6213"\w* \w life|strong="H2421"\w*. +\q1 +\v 5 If \w you|strong="H6440"\w* \w can|strong="H3201"\w*, \w answer|strong="H7725"\w* \w me|strong="H6440"\w*. +\q2 \w Set|strong="H6186"\w* \w your|strong="H6440"\w* words \w in|strong="H6440"\w* \w order|strong="H6186"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*, \w and|strong="H7725"\w* \w stand|strong="H3320"\w* \w up|strong="H6186"\w*. +\q1 +\v 6 \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H2005"\w* toward God \w even|strong="H1571"\w* \w as|strong="H1571"\w* \w you|strong="H1571"\w* \w are|strong="H6310"\w*. +\q2 \w I|strong="H2005"\w* \w am|strong="H2005"\w* \w also|strong="H1571"\w* \w formed|strong="H7169"\w* out \w of|strong="H6310"\w* \w the|strong="H1571"\w* \w clay|strong="H2563"\w*. +\q1 +\v 7 \w Behold|strong="H2009"\w*, \w my|strong="H5921"\w* terror \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w make|strong="H3513"\w* \w you|strong="H5921"\w* \w afraid|strong="H1204"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H3808"\w* \w my|strong="H5921"\w* pressure \w be|strong="H3808"\w* \w heavy|strong="H3513"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*. +\b +\q1 +\v 8 “\w Surely|strong="H8085"\w* \w you|strong="H6963"\w* \w have|strong="H4405"\w* \w spoken|strong="H8085"\w* \w in|strong="H8085"\w* \w my|strong="H8085"\w* \w hearing|strong="H8085"\w*, +\q2 \w I|strong="H8085"\w* \w have|strong="H4405"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w your|strong="H8085"\w* \w words|strong="H4405"\w*, \w saying|strong="H6963"\w*, +\q1 +\v 9 ‘\w I|strong="H3808"\w* am \w clean|strong="H2134"\w*, \w without|strong="H3808"\w* disobedience. +\q2 \w I|strong="H3808"\w* am \w innocent|strong="H2643"\w*, \w neither|strong="H3808"\w* \w is|strong="H5771"\w* \w there|strong="H1097"\w* \w iniquity|strong="H5771"\w* \w in|strong="H3808"\w* \w me|strong="H3808"\w*. +\q1 +\v 10 \w Behold|strong="H2005"\w*, \w he|strong="H5921"\w* \w finds|strong="H4672"\w* \w occasions|strong="H8569"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*. +\q2 \w He|strong="H5921"\w* \w counts|strong="H2803"\w* \w me|strong="H5921"\w* \w for|strong="H5921"\w* \w his|strong="H5921"\w* enemy. +\q1 +\v 11 \w He|strong="H3605"\w* \w puts|strong="H7760"\w* \w my|strong="H8104"\w* \w feet|strong="H7272"\w* \w in|strong="H7272"\w* \w the|strong="H3605"\w* \w stocks|strong="H5465"\w*. +\q2 \w He|strong="H3605"\w* marks \w all|strong="H3605"\w* \w my|strong="H8104"\w* paths.’ +\b +\q1 +\v 12 “\w Behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H3808"\w* \w answer|strong="H6030"\w* \w you|strong="H3588"\w*. \w In|strong="H3808"\w* \w this|strong="H2063"\w* \w you|strong="H3588"\w* \w are|strong="H3808"\w* \w not|strong="H3808"\w* \w just|strong="H6663"\w*, +\q2 \w for|strong="H3588"\w* \w God|strong="H3808"\w* \w is|strong="H3808"\w* \w greater|strong="H7235"\w* \w than|strong="H7235"\w* \w man|strong="H6030"\w*. +\q1 +\v 13 \w Why|strong="H4069"\w* \w do|strong="H1697"\w* \w you|strong="H3588"\w* \w strive|strong="H7378"\w* \w against|strong="H7378"\w* \w him|strong="H3605"\w*, +\q2 \w because|strong="H3588"\w* \w he|strong="H3588"\w* doesn’t \w give|strong="H6030"\w* \w account|strong="H1697"\w* \w of|strong="H1697"\w* \w any|strong="H3605"\w* \w of|strong="H1697"\w* \w his|strong="H3605"\w* \w matters|strong="H1697"\w*? +\q1 +\v 14 \w For|strong="H3588"\w* \w God|strong="H3808"\w* \w speaks|strong="H1696"\w* once, +\q2 \w yes|strong="H3588"\w* \w twice|strong="H8147"\w*, \w though|strong="H3588"\w* man pays \w no|strong="H3808"\w* attention. +\q1 +\v 15 \w In|strong="H5921"\w* \w a|strong="H3068"\w* \w dream|strong="H2472"\w*, \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w vision|strong="H2384"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w night|strong="H3915"\w*, +\q2 \w when|strong="H5307"\w* \w deep|strong="H8639"\w* \w sleep|strong="H8639"\w* \w falls|strong="H5307"\w* \w on|strong="H5921"\w* men, +\q2 \w in|strong="H5921"\w* slumbering \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w bed|strong="H4904"\w*, +\q1 +\v 16 then he \w opens|strong="H1540"\w* \w the|strong="H1540"\w* ears \w of|strong="H1540"\w* men, +\q2 and \w seals|strong="H2856"\w* \w their|strong="H1540"\w* \w instruction|strong="H4561"\w*, +\q1 +\v 17 \w that|strong="H1397"\w* he may \w withdraw|strong="H5493"\w* \w man|strong="H1397"\w* \w from|strong="H5493"\w* \w his|strong="H5493"\w* \w purpose|strong="H4639"\w*, +\q2 \w and|strong="H5493"\w* \w hide|strong="H3680"\w* \w pride|strong="H1466"\w* \w from|strong="H5493"\w* \w man|strong="H1397"\w*. +\q1 +\v 18 \w He|strong="H4480"\w* \w keeps|strong="H2820"\w* \w back|strong="H2820"\w* \w his|strong="H4480"\w* \w soul|strong="H5315"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w pit|strong="H7845"\w*, +\q2 \w and|strong="H5315"\w* \w his|strong="H4480"\w* \w life|strong="H5315"\w* \w from|strong="H4480"\w* \w perishing|strong="H5674"\w* \w by|strong="H5674"\w* \w the|strong="H4480"\w* \w sword|strong="H7973"\w*. +\b +\q1 +\v 19 “\w He|strong="H5921"\w* \w is|strong="H4341"\w* \w chastened|strong="H3198"\w* also \w with|strong="H5921"\w* \w pain|strong="H4341"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w bed|strong="H4904"\w*, +\q2 \w with|strong="H5921"\w* continual \w strife|strong="H7379"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w bones|strong="H6106"\w*, +\q1 +\v 20 so \w that|strong="H5315"\w* his \w life|strong="H5315"\w* abhors \w bread|strong="H3899"\w*, +\q2 \w and|strong="H3899"\w* his \w soul|strong="H5315"\w* \w dainty|strong="H8378"\w* \w food|strong="H3899"\w*. +\q1 +\v 21 \w His|strong="H7200"\w* \w flesh|strong="H1320"\w* \w is|strong="H1320"\w* \w so|strong="H3808"\w* \w consumed|strong="H3615"\w* \w away|strong="H3615"\w* \w that|strong="H7200"\w* \w it|strong="H7200"\w* \w can|strong="H7200"\w*’t \w be|strong="H3808"\w* \w seen|strong="H7200"\w*. +\q2 \w His|strong="H7200"\w* \w bones|strong="H6106"\w* \w that|strong="H7200"\w* \w were|strong="H7200"\w* \w not|strong="H3808"\w* \w seen|strong="H7200"\w* \w stick|strong="H7200"\w* \w out|strong="H7200"\w*. +\q1 +\v 22 Yes, \w his|strong="H7126"\w* \w soul|strong="H5315"\w* \w draws|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H4191"\w* \w the|strong="H7126"\w* \w pit|strong="H7845"\w*, +\q2 \w and|strong="H7126"\w* \w his|strong="H7126"\w* \w life|strong="H5315"\w* \w to|strong="H4191"\w* \w the|strong="H7126"\w* \w destroyers|strong="H4191"\w*. +\b +\q1 +\v 23 “\w If|strong="H3426"\w* \w there|strong="H3426"\w* \w is|strong="H3426"\w* \w beside|strong="H5921"\w* \w him|strong="H5921"\w* \w an|strong="H4480"\w* \w angel|strong="H4397"\w*, +\q2 \w an|strong="H4480"\w* \w interpreter|strong="H3887"\w*, \w one|strong="H4480"\w* \w among|strong="H4480"\w* \w a|strong="H3068"\w* thousand, +\q2 \w to|strong="H5921"\w* \w show|strong="H5046"\w* \w to|strong="H5921"\w* man \w what|strong="H3476"\w* \w is|strong="H3426"\w* \w right|strong="H3476"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w*, +\q1 +\v 24 \w then|strong="H3381"\w* God \w is|strong="H4672"\w* \w gracious|strong="H2603"\w* \w to|strong="H3381"\w* \w him|strong="H4672"\w*, \w and|strong="H3381"\w* says, +\q2 ‘\w Deliver|strong="H6308"\w* \w him|strong="H4672"\w* \w from|strong="H3381"\w* \w going|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H4672"\w* \w pit|strong="H7845"\w*, +\q2 \w I|strong="H4672"\w* \w have|strong="H4672"\w* \w found|strong="H4672"\w* \w a|strong="H3068"\w* \w ransom|strong="H3724"\w*.’ +\q1 +\v 25 \w His|strong="H7725"\w* \w flesh|strong="H1320"\w* \w will|strong="H1320"\w* \w be|strong="H3117"\w* \w fresher|strong="H7375"\w* than \w a|strong="H3068"\w* \w child|strong="H5290"\w*’s. +\q2 \w He|strong="H3117"\w* \w returns|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H7725"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w his|strong="H7725"\w* \w youth|strong="H5934"\w*. +\q1 +\v 26 \w He|strong="H6440"\w* prays \w to|strong="H7725"\w* God, \w and|strong="H7725"\w* \w he|strong="H6440"\w* \w is|strong="H6440"\w* \w favorable|strong="H7521"\w* \w to|strong="H7725"\w* \w him|strong="H6440"\w*, +\q2 \w so|strong="H7725"\w* \w that|strong="H7200"\w* \w he|strong="H6440"\w* \w sees|strong="H7200"\w* \w his|strong="H7725"\w* \w face|strong="H6440"\w* \w with|strong="H6440"\w* \w joy|strong="H8643"\w*. +\q2 \w He|strong="H6440"\w* \w restores|strong="H7725"\w* \w to|strong="H7725"\w* \w man|strong="H6440"\w* \w his|strong="H7725"\w* \w righteousness|strong="H6666"\w*. +\q1 +\v 27 \w He|strong="H3808"\w* sings \w before|strong="H5921"\w* men, \w and|strong="H2398"\w* says, +\q2 ‘\w I|strong="H5921"\w* \w have|strong="H3808"\w* \w sinned|strong="H2398"\w*, \w and|strong="H2398"\w* \w perverted|strong="H5753"\w* \w that|strong="H3808"\w* \w which|strong="H3477"\w* \w was|strong="H3477"\w* \w right|strong="H3477"\w*, +\q2 \w and|strong="H2398"\w* \w it|strong="H5921"\w* didn’t \w profit|strong="H7737"\w* \w me|strong="H5921"\w*. +\q1 +\v 28 \w He|strong="H5315"\w* \w has|strong="H5315"\w* \w redeemed|strong="H6299"\w* \w my|strong="H7200"\w* \w soul|strong="H5315"\w* \w from|strong="H5315"\w* \w going|strong="H5674"\w* \w into|strong="H2416"\w* \w the|strong="H7200"\w* \w pit|strong="H7845"\w*. +\q2 \w My|strong="H7200"\w* \w life|strong="H5315"\w* \w will|strong="H5315"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* light.’ +\b +\q1 +\v 29 “\w Behold|strong="H2005"\w*, God \w does|strong="H6466"\w* \w all|strong="H3605"\w* \w these|strong="H3605"\w* \w things|strong="H3605"\w*, +\q2 \w twice|strong="H6471"\w*, \w yes|strong="H2005"\w* \w three|strong="H7969"\w* \w times|strong="H6471"\w*, \w with|strong="H5973"\w* \w a|strong="H3068"\w* \w man|strong="H1397"\w*, +\q1 +\v 30 \w to|strong="H7725"\w* \w bring|strong="H7725"\w* \w back|strong="H7725"\w* \w his|strong="H7725"\w* \w soul|strong="H5315"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w pit|strong="H7845"\w*, +\q2 \w that|strong="H5315"\w* \w he|strong="H4480"\w* \w may|strong="H5315"\w* \w be|strong="H5315"\w* enlightened \w with|strong="H5315"\w* \w the|strong="H4480"\w* light \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w living|strong="H2416"\w*. +\q1 +\v 31 Mark \w well|strong="H7181"\w*, Job, \w and|strong="H8085"\w* \w listen|strong="H8085"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w*. +\q2 Hold \w your|strong="H8085"\w* \w peace|strong="H2790"\w*, \w and|strong="H8085"\w* \w I|strong="H8085"\w* \w will|strong="H8085"\w* \w speak|strong="H1696"\w*. +\q1 +\v 32 \w If|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3426"\w* \w anything|strong="H4405"\w* \w to|strong="H1696"\w* \w say|strong="H1696"\w*, \w answer|strong="H7725"\w* \w me|strong="H7725"\w*. +\q2 \w Speak|strong="H1696"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w desire|strong="H2654"\w* \w to|strong="H1696"\w* \w justify|strong="H6663"\w* \w you|strong="H3588"\w*. +\q1 +\v 33 If \w not|strong="H8085"\w*, \w listen|strong="H8085"\w* \w to|strong="H8085"\w* \w me|strong="H2451"\w*. +\q2 Hold \w your|strong="H8085"\w* \w peace|strong="H2790"\w*, \w and|strong="H2451"\w* \w I|strong="H8085"\w* \w will|strong="H8085"\w* teach \w you|strong="H8085"\w* \w wisdom|strong="H2451"\w*.” +\b +\c 34 +\p +\v 1 Moreover Elihu \w answered|strong="H6030"\w*, +\q1 +\v 2 “\w Hear|strong="H8085"\w* \w my|strong="H8085"\w* \w words|strong="H4405"\w*, \w you|strong="H3045"\w* \w wise|strong="H2450"\w* \w men|strong="H2450"\w*. +\q2 \w Give|strong="H8085"\w* \w ear|strong="H8085"\w* \w to|strong="H8085"\w* \w me|strong="H3045"\w*, \w you|strong="H3045"\w* \w who|strong="H3045"\w* \w have|strong="H3045"\w* \w knowledge|strong="H3045"\w*. +\q1 +\v 3 \w For|strong="H3588"\w* \w the|strong="H3588"\w* ear tries \w words|strong="H4405"\w*, +\q2 \w as|strong="H3588"\w* \w the|strong="H3588"\w* \w palate|strong="H2441"\w* \w tastes|strong="H2938"\w* food. +\q1 +\v 4 Let \w us|strong="H3045"\w* choose \w for|strong="H4941"\w* \w us|strong="H3045"\w* \w that|strong="H3045"\w* \w which|strong="H4100"\w* \w is|strong="H4100"\w* \w right|strong="H4941"\w*. +\q2 Let \w us|strong="H3045"\w* \w know|strong="H3045"\w* among ourselves \w what|strong="H4100"\w* \w is|strong="H4100"\w* \w good|strong="H2896"\w*. +\q1 +\v 5 \w For|strong="H3588"\w* Job \w has|strong="H3588"\w* said, ‘\w I|strong="H3588"\w* am \w righteous|strong="H6663"\w*, +\q2 God \w has|strong="H3588"\w* \w taken|strong="H5493"\w* \w away|strong="H5493"\w* \w my|strong="H5493"\w* \w right|strong="H4941"\w*. +\q1 +\v 6 Notwithstanding \w my|strong="H5921"\w* \w right|strong="H4941"\w* \w I|strong="H5921"\w* am considered \w a|strong="H3068"\w* \w liar|strong="H3576"\w*. +\q2 \w My|strong="H5921"\w* \w wound|strong="H2671"\w* \w is|strong="H4941"\w* incurable, though \w I|strong="H5921"\w* am \w without|strong="H1097"\w* disobedience.’ +\q1 +\v 7 \w What|strong="H4310"\w* \w man|strong="H1397"\w* \w is|strong="H4310"\w* \w like|strong="H3933"\w* Job, +\q2 \w who|strong="H4310"\w* \w drinks|strong="H8354"\w* \w scorn|strong="H3933"\w* \w like|strong="H3933"\w* \w water|strong="H4325"\w*, +\q1 +\v 8 who goes \w in|strong="H3212"\w* \w company|strong="H2274"\w* \w with|strong="H5973"\w* \w the|strong="H5973"\w* \w workers|strong="H6466"\w* \w of|strong="H6466"\w* \w iniquity|strong="H7562"\w*, +\q2 \w and|strong="H3212"\w* walks \w with|strong="H5973"\w* \w wicked|strong="H7562"\w* men? +\q1 +\v 9 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* said, ‘\w It|strong="H3588"\w* \w profits|strong="H5532"\w* \w a|strong="H3068"\w* \w man|strong="H1397"\w* \w nothing|strong="H3808"\w* +\q2 \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w should|strong="H3588"\w* \w delight|strong="H7521"\w* \w himself|strong="H7521"\w* \w with|strong="H5973"\w* \w God|strong="H3808"\w*.’ +\b +\q1 +\v 10 “\w Therefore|strong="H3651"\w* \w listen|strong="H8085"\w* \w to|strong="H8085"\w* \w me|strong="H2486"\w*, \w you|strong="H3651"\w* men \w of|strong="H3824"\w* \w understanding|strong="H3824"\w*: +\q2 \w far|strong="H2486"\w* \w be|strong="H3824"\w* \w it|strong="H3651"\w* \w from|strong="H8085"\w* God, \w that|strong="H8085"\w* \w he|strong="H3651"\w* should \w do|strong="H8085"\w* \w wickedness|strong="H7562"\w*, +\q2 \w from|strong="H8085"\w* \w the|strong="H8085"\w* \w Almighty|strong="H7706"\w*, \w that|strong="H8085"\w* \w he|strong="H3651"\w* should commit \w iniquity|strong="H5766"\w*. +\q1 +\v 11 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w work|strong="H6467"\w* \w of|strong="H6467"\w* \w a|strong="H3068"\w* man \w he|strong="H3588"\w* \w will|strong="H7999"\w* give \w to|strong="H3588"\w* \w him|strong="H4672"\w*, +\q2 \w and|strong="H4672"\w* cause \w every|strong="H3588"\w* man \w to|strong="H3588"\w* \w find|strong="H4672"\w* according \w to|strong="H3588"\w* \w his|strong="H3588"\w* ways. +\q1 +\v 12 Yes \w surely|strong="H3808"\w*, \w God|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w do|strong="H7561"\w* \w wickedly|strong="H7561"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H3808"\w* \w the|strong="H3808"\w* \w Almighty|strong="H7706"\w* \w pervert|strong="H5791"\w* \w justice|strong="H4941"\w*. +\q1 +\v 13 \w Who|strong="H4310"\w* \w put|strong="H7760"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w charge|strong="H5921"\w* \w of|strong="H5921"\w* \w the|strong="H3605"\w* earth? +\q2 \w Or|strong="H4310"\w* \w who|strong="H4310"\w* \w has|strong="H4310"\w* \w appointed|strong="H6485"\w* \w him|strong="H5921"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w world|strong="H8398"\w*? +\q1 +\v 14 \w If|strong="H7760"\w* \w he|strong="H7760"\w* \w set|strong="H7760"\w* \w his|strong="H7760"\w* \w heart|strong="H3820"\w* \w on|strong="H7760"\w* \w himself|strong="H3820"\w*, +\q2 \w if|strong="H7760"\w* \w he|strong="H7760"\w* gathered \w to|strong="H3820"\w* \w himself|strong="H3820"\w* \w his|strong="H7760"\w* \w spirit|strong="H7307"\w* \w and|strong="H3820"\w* \w his|strong="H7760"\w* \w breath|strong="H7307"\w*, +\q1 +\v 15 \w all|strong="H3605"\w* \w flesh|strong="H1320"\w* \w would|strong="H3162"\w* \w perish|strong="H1478"\w* \w together|strong="H3162"\w*, +\q2 \w and|strong="H7725"\w* \w man|strong="H3605"\w* \w would|strong="H3162"\w* \w turn|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w dust|strong="H6083"\w*. +\b +\q1 +\v 16 “If \w now|strong="H8085"\w* \w you|strong="H6963"\w* \w have|strong="H4405"\w* \w understanding|strong="H8085"\w*, \w hear|strong="H8085"\w* \w this|strong="H2063"\w*. +\q2 \w Listen|strong="H8085"\w* \w to|strong="H8085"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w my|strong="H8085"\w* \w words|strong="H4405"\w*. +\q1 +\v 17 Should even \w one|strong="H6662"\w* \w who|strong="H6662"\w* \w hates|strong="H8130"\w* \w justice|strong="H4941"\w* \w govern|strong="H2280"\w*? +\q2 \w Will|strong="H6662"\w* \w you|strong="H8130"\w* \w condemn|strong="H7561"\w* \w him|strong="H8130"\w* \w who|strong="H6662"\w* \w is|strong="H6662"\w* \w righteous|strong="H6662"\w* \w and|strong="H4941"\w* \w mighty|strong="H3524"\w*, +\q1 +\v 18 \w who|strong="H4428"\w* says \w to|strong="H4428"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w*, ‘Vile!’ +\q2 \w or|strong="H4428"\w* \w to|strong="H4428"\w* \w nobles|strong="H5081"\w*, ‘\w Wicked|strong="H7563"\w*!’? +\q1 +\v 19 \w He|strong="H3588"\w* doesn’t \w respect|strong="H5234"\w* \w the|strong="H3605"\w* \w persons|strong="H6440"\w* \w of|strong="H3027"\w* \w princes|strong="H8269"\w*, +\q2 \w nor|strong="H3808"\w* \w respect|strong="H5234"\w* \w the|strong="H3605"\w* \w rich|strong="H7771"\w* \w more|strong="H3808"\w* \w than|strong="H3808"\w* \w the|strong="H3605"\w* \w poor|strong="H1800"\w*, +\q2 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w all|strong="H3605"\w* \w are|strong="H3027"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H3027"\w* \w his|strong="H3605"\w* \w hands|strong="H3027"\w*. +\q1 +\v 20 \w In|strong="H4191"\w* \w a|strong="H3068"\w* \w moment|strong="H7281"\w* \w they|strong="H3808"\w* \w die|strong="H4191"\w*, \w even|strong="H3808"\w* \w at|strong="H4191"\w* \w midnight|strong="H2676"\w*. +\q2 \w The|strong="H5674"\w* \w people|strong="H5971"\w* \w are|strong="H5971"\w* \w shaken|strong="H1607"\w* \w and|strong="H3027"\w* \w pass|strong="H5674"\w* \w away|strong="H5493"\w*. +\q2 \w The|strong="H5674"\w* mighty \w are|strong="H5971"\w* \w taken|strong="H5493"\w* \w away|strong="H5493"\w* \w without|strong="H3808"\w* \w a|strong="H3068"\w* \w hand|strong="H3027"\w*. +\b +\q1 +\v 21 “\w For|strong="H3588"\w* \w his|strong="H3605"\w* \w eyes|strong="H5869"\w* \w are|strong="H5869"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w ways|strong="H1870"\w* \w of|strong="H1870"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w*. +\q2 \w He|strong="H3588"\w* \w sees|strong="H7200"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w goings|strong="H6806"\w*. +\q1 +\v 22 \w There|strong="H8033"\w* \w is|strong="H8033"\w* \w no|strong="H6466"\w* \w darkness|strong="H2822"\w*, nor \w thick|strong="H6757"\w* \w gloom|strong="H6757"\w*, +\q2 \w where|strong="H8033"\w* \w the|strong="H8033"\w* \w workers|strong="H6466"\w* \w of|strong="H6466"\w* iniquity may \w hide|strong="H5641"\w* \w themselves|strong="H5641"\w*. +\q1 +\v 23 \w For|strong="H3588"\w* \w he|strong="H3588"\w* doesn’t need \w to|strong="H1980"\w* \w consider|strong="H7760"\w* \w a|strong="H3068"\w* man \w further|strong="H5750"\w*, +\q2 \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w should|strong="H1980"\w* \w go|strong="H1980"\w* \w before|strong="H5921"\w* \w God|strong="H3808"\w* \w in|strong="H5921"\w* \w judgment|strong="H4941"\w*. +\q1 +\v 24 \w He|strong="H3808"\w* \w breaks|strong="H7489"\w* \w mighty|strong="H3524"\w* \w men|strong="H3524"\w* \w in|strong="H5975"\w* \w pieces|strong="H7489"\w* \w in|strong="H5975"\w* ways past finding \w out|strong="H2714"\w*, +\q2 \w and|strong="H5975"\w* \w sets|strong="H5975"\w* others \w in|strong="H5975"\w* \w their|strong="H8478"\w* \w place|strong="H8478"\w*. +\q1 +\v 25 \w Therefore|strong="H3651"\w* \w he|strong="H3651"\w* takes \w knowledge|strong="H5234"\w* \w of|strong="H5234"\w* \w their|strong="H2015"\w* \w works|strong="H4566"\w*. +\q2 \w He|strong="H3651"\w* \w overturns|strong="H2015"\w* \w them|strong="H3915"\w* \w in|strong="H5234"\w* \w the|strong="H3651"\w* \w night|strong="H3915"\w*, \w so|strong="H3651"\w* \w that|strong="H3651"\w* \w they|strong="H3651"\w* \w are|strong="H3915"\w* \w destroyed|strong="H2015"\w*. +\q1 +\v 26 \w He|strong="H8478"\w* \w strikes|strong="H5606"\w* \w them|strong="H7200"\w* \w as|strong="H8478"\w* \w wicked|strong="H7563"\w* \w men|strong="H7563"\w* +\q2 \w in|strong="H4725"\w* \w the|strong="H7200"\w* \w open|strong="H4725"\w* \w sight|strong="H7200"\w* \w of|strong="H8478"\w* others; +\q1 +\v 27 \w because|strong="H5921"\w* \w they|strong="H3651"\w* \w turned|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* \w following|strong="H1870"\w* \w him|strong="H5921"\w*, +\q2 \w and|strong="H1870"\w* wouldn’t pay \w attention|strong="H7919"\w* \w to|strong="H5921"\w* \w any|strong="H3605"\w* \w of|strong="H1870"\w* \w his|strong="H3605"\w* \w ways|strong="H1870"\w*, +\q1 +\v 28 \w so|strong="H8085"\w* \w that|strong="H8085"\w* \w they|strong="H5921"\w* caused \w the|strong="H5921"\w* \w cry|strong="H6818"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w poor|strong="H6041"\w* \w to|strong="H5921"\w* come \w to|strong="H5921"\w* \w him|strong="H5921"\w*. +\q2 \w He|strong="H5921"\w* \w heard|strong="H8085"\w* \w the|strong="H5921"\w* \w cry|strong="H6818"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w afflicted|strong="H6041"\w*. +\q1 +\v 29 \w When|strong="H5921"\w* \w he|strong="H1931"\w* gives \w quietness|strong="H8252"\w*, \w who|strong="H4310"\w* then \w can|strong="H4310"\w* \w condemn|strong="H7561"\w*? +\q2 \w When|strong="H5921"\w* \w he|strong="H1931"\w* \w hides|strong="H5641"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w*, \w who|strong="H4310"\w* then \w can|strong="H4310"\w* \w see|strong="H7789"\w* \w him|strong="H6440"\w*? +\q2 \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w over|strong="H5921"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w or|strong="H1471"\w* \w a|strong="H3068"\w* \w man|strong="H6440"\w* \w alike|strong="H3162"\w*, +\q1 +\v 30 \w that|strong="H5971"\w* \w the|strong="H5971"\w* \w godless|strong="H2611"\w* \w man|strong="H2611"\w* \w may|strong="H5971"\w* \w not|strong="H5971"\w* \w reign|strong="H4427"\w*, +\q2 \w that|strong="H5971"\w* there \w be|strong="H5971"\w* no \w one|strong="H4427"\w* \w to|strong="H5971"\w* ensnare \w the|strong="H5971"\w* \w people|strong="H5971"\w*. +\b +\q1 +\v 31 “\w For|strong="H3588"\w* \w has|strong="H3588"\w* \w any|strong="H5375"\w* said \w to|strong="H3808"\w* \w God|strong="H3808"\w*, +\q2 ‘\w I|strong="H3588"\w* am guilty, \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w offend|strong="H2254"\w* \w any|strong="H5375"\w* \w more|strong="H3808"\w*. +\q1 +\v 32 \w Teach|strong="H3384"\w* \w me|strong="H3254"\w* \w that|strong="H3808"\w* which \w I|strong="H3808"\w* don’t \w see|strong="H2372"\w*. +\q2 If \w I|strong="H3808"\w* \w have|strong="H3808"\w* \w done|strong="H6466"\w* \w iniquity|strong="H5766"\w*, \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w do|strong="H6466"\w* \w it|strong="H3254"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w*’? +\q1 +\v 33 \w Shall|strong="H3808"\w* \w his|strong="H3045"\w* \w recompense|strong="H7999"\w* \w be|strong="H3808"\w* \w as|strong="H3588"\w* \w you|strong="H3588"\w* desire, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w refuse|strong="H3808"\w* \w it|strong="H3588"\w*? +\q2 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w must|strong="H3808"\w* choose, \w and|strong="H3045"\w* \w not|strong="H3808"\w* \w I|strong="H3588"\w*. +\q2 \w Therefore|strong="H3588"\w* \w speak|strong="H1696"\w* \w what|strong="H4100"\w* \w you|strong="H3588"\w* \w know|strong="H3045"\w*. +\q1 +\v 34 \w Men|strong="H2450"\w* \w of|strong="H3824"\w* \w understanding|strong="H3824"\w* \w will|strong="H3824"\w* \w tell|strong="H8085"\w* \w me|strong="H8085"\w*, +\q2 yes, every \w wise|strong="H2450"\w* \w man|strong="H1397"\w* \w who|strong="H1397"\w* \w hears|strong="H8085"\w* \w me|strong="H8085"\w*: +\q1 +\v 35 ‘\w Job|strong="H3808"\w* \w speaks|strong="H1696"\w* \w without|strong="H3808"\w* \w knowledge|strong="H1847"\w*. +\q2 \w His|strong="H3808"\w* \w words|strong="H1697"\w* \w are|strong="H1697"\w* \w without|strong="H3808"\w* \w wisdom|strong="H7919"\w*.’ +\q1 +\v 36 \w I|strong="H5704"\w* wish \w that|strong="H5704"\w* Job \w were|strong="H5921"\w* tried \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w end|strong="H5331"\w*, +\q2 \w because|strong="H5921"\w* \w of|strong="H5921"\w* \w his|strong="H5921"\w* answering \w like|strong="H5704"\w* wicked men. +\q1 +\v 37 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w adds|strong="H3254"\w* \w rebellion|strong="H6588"\w* \w to|strong="H5921"\w* \w his|strong="H5921"\w* \w sin|strong="H2403"\w*. +\q2 \w He|strong="H3588"\w* \w claps|strong="H5606"\w* \w his|strong="H5921"\w* hands \w among|strong="H5921"\w* \w us|strong="H5921"\w*, +\q2 \w and|strong="H2403"\w* \w multiplies|strong="H7235"\w* \w his|strong="H5921"\w* words \w against|strong="H5921"\w* God.” +\b +\c 35 +\p +\v 1 Moreover Elihu \w answered|strong="H6030"\w*, +\q1 +\v 2 “Do \w you|strong="H6664"\w* \w think|strong="H2803"\w* \w this|strong="H2063"\w* \w to|strong="H2803"\w* be your \w right|strong="H4941"\w*, +\q2 \w or|strong="H4941"\w* do \w you|strong="H6664"\w* say, ‘\w My|strong="H2803"\w* \w righteousness|strong="H6664"\w* \w is|strong="H4941"\w* more than God’s,’ +\q1 +\v 3 \w that|strong="H3588"\w* \w you|strong="H3588"\w* ask, ‘\w What|strong="H4100"\w* \w advantage|strong="H5532"\w* \w will|strong="H4100"\w* \w it|strong="H3588"\w* \w be|strong="H3588"\w* \w to|strong="H3588"\w* \w you|strong="H3588"\w*? +\q2 \w What|strong="H4100"\w* \w profit|strong="H3276"\w* \w will|strong="H4100"\w* \w I|strong="H3588"\w* \w have|strong="H2403"\w*, \w more|strong="H3588"\w* \w than|strong="H3588"\w* \w if|strong="H3588"\w* \w I|strong="H3588"\w* \w had|strong="H3588"\w* \w sinned|strong="H2403"\w*?’ +\q1 +\v 4 I \w will|strong="H7453"\w* \w answer|strong="H7725"\w* \w you|strong="H7725"\w*, +\q2 \w and|strong="H7725"\w* \w your|strong="H7725"\w* \w companions|strong="H7453"\w* \w with|strong="H5973"\w* \w you|strong="H7725"\w*. +\q1 +\v 5 \w Look|strong="H7200"\w* \w to|strong="H7200"\w* \w the|strong="H7200"\w* \w skies|strong="H7834"\w*, \w and|strong="H8064"\w* \w see|strong="H7200"\w*. +\q2 \w See|strong="H7200"\w* \w the|strong="H7200"\w* \w skies|strong="H7834"\w*, which \w are|strong="H8064"\w* \w higher|strong="H1361"\w* \w than|strong="H4480"\w* \w you|strong="H4480"\w*. +\q1 +\v 6 \w If|strong="H2398"\w* \w you|strong="H6213"\w* have \w sinned|strong="H2398"\w*, \w what|strong="H4100"\w* \w effect|strong="H6213"\w* \w do|strong="H6213"\w* \w you|strong="H6213"\w* have \w against|strong="H2398"\w* \w him|strong="H6213"\w*? +\q2 \w If|strong="H2398"\w* \w your|strong="H6213"\w* \w transgressions|strong="H6588"\w* \w are|strong="H4100"\w* \w multiplied|strong="H7231"\w*, \w what|strong="H4100"\w* \w do|strong="H6213"\w* \w you|strong="H6213"\w* \w do|strong="H6213"\w* \w to|strong="H6213"\w* \w him|strong="H6213"\w*? +\q1 +\v 7 If \w you|strong="H5414"\w* \w are|strong="H3027"\w* \w righteous|strong="H6663"\w*, \w what|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H5414"\w* \w give|strong="H5414"\w* \w him|strong="H5414"\w*? +\q2 \w Or|strong="H3027"\w* \w what|strong="H4100"\w* \w does|strong="H4100"\w* \w he|strong="H5414"\w* \w receive|strong="H3947"\w* \w from|strong="H3027"\w* \w your|strong="H5414"\w* \w hand|strong="H3027"\w*? +\q1 +\v 8 \w Your|strong="H6666"\w* \w wickedness|strong="H7562"\w* \w may|strong="H1121"\w* hurt \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w as|strong="H3644"\w* \w you|strong="H3644"\w* \w are|strong="H1121"\w*, +\q2 \w and|strong="H1121"\w* \w your|strong="H6666"\w* \w righteousness|strong="H6666"\w* \w may|strong="H1121"\w* profit \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*. +\b +\q1 +\v 9 “\w By|strong="H7230"\w* reason \w of|strong="H7230"\w* \w the|strong="H2220"\w* \w multitude|strong="H7230"\w* \w of|strong="H7230"\w* \w oppressions|strong="H6217"\w* \w they|strong="H6217"\w* \w cry|strong="H2199"\w* \w out|strong="H2199"\w*. +\q2 \w They|strong="H6217"\w* \w cry|strong="H2199"\w* \w for|strong="H7768"\w* \w help|strong="H7768"\w* \w by|strong="H7230"\w* reason \w of|strong="H7230"\w* \w the|strong="H2220"\w* \w arm|strong="H2220"\w* \w of|strong="H7230"\w* \w the|strong="H2220"\w* \w mighty|strong="H7227"\w*. +\q1 +\v 10 \w But|strong="H3808"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* says, ‘\w Where|strong="H3808"\w* \w is|strong="H6213"\w* \w God|strong="H5414"\w* \w my|strong="H5414"\w* \w Maker|strong="H6213"\w*, +\q2 \w who|strong="H6213"\w* \w gives|strong="H5414"\w* \w songs|strong="H2158"\w* \w in|strong="H6213"\w* \w the|strong="H5414"\w* \w night|strong="H3915"\w*, +\q1 +\v 11 who teaches \w us|strong="H2449"\w* more than \w the|strong="H8064"\w* animals \w of|strong="H8064"\w* \w the|strong="H8064"\w* \w earth|strong="H8064"\w*, +\q2 \w and|strong="H8064"\w* \w makes|strong="H2449"\w* \w us|strong="H2449"\w* \w wiser|strong="H2449"\w* than \w the|strong="H8064"\w* \w birds|strong="H5775"\w* \w of|strong="H8064"\w* \w the|strong="H8064"\w* \w sky|strong="H8064"\w*?’ +\q1 +\v 12 \w There|strong="H8033"\w* \w they|strong="H8033"\w* \w cry|strong="H6817"\w*, \w but|strong="H3808"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w answers|strong="H6030"\w*, +\q2 \w because|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w pride|strong="H1347"\w* \w of|strong="H6440"\w* \w evil|strong="H7451"\w* \w men|strong="H7451"\w*. +\q1 +\v 13 \w Surely|strong="H8085"\w* \w God|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w hear|strong="H8085"\w* \w an|strong="H8085"\w* \w empty|strong="H7723"\w* cry, +\q2 \w neither|strong="H3808"\w* \w will|strong="H3808"\w* \w the|strong="H8085"\w* \w Almighty|strong="H7706"\w* \w regard|strong="H7789"\w* \w it|strong="H3808"\w*. +\q1 +\v 14 \w How|strong="H3588"\w* much \w less|strong="H3588"\w* \w when|strong="H3588"\w* \w you|strong="H3588"\w* say \w you|strong="H3588"\w* don’t \w see|strong="H7789"\w* \w him|strong="H6440"\w*. +\q2 \w The|strong="H6440"\w* \w cause|strong="H1779"\w* \w is|strong="H6440"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, \w and|strong="H6440"\w* \w you|strong="H3588"\w* \w wait|strong="H7789"\w* \w for|strong="H3588"\w* \w him|strong="H6440"\w*! +\q1 +\v 15 \w But|strong="H3588"\w* \w now|strong="H6258"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w not|strong="H3808"\w* \w visited|strong="H6485"\w* \w in|strong="H3808"\w* \w his|strong="H3045"\w* anger, +\q2 \w neither|strong="H3808"\w* \w does|strong="H3808"\w* \w he|strong="H3588"\w* \w greatly|strong="H3966"\w* \w regard|strong="H3045"\w* arrogance, +\q1 +\v 16 therefore Job \w opens|strong="H6475"\w* \w his|strong="H6310"\w* \w mouth|strong="H6310"\w* \w with|strong="H6310"\w* empty \w talk|strong="H6310"\w*, +\q2 \w and|strong="H1892"\w* \w he|strong="H6310"\w* \w multiplies|strong="H3527"\w* \w words|strong="H4405"\w* \w without|strong="H1097"\w* \w knowledge|strong="H1847"\w*.” +\b +\c 36 +\p +\v 1 Elihu \w also|strong="H3254"\w* \w continued|strong="H3254"\w*, \w and|strong="H3254"\w* said, +\q1 +\v 2 “Bear \w with|strong="H3803"\w* \w me|strong="H3588"\w* \w a|strong="H3068"\w* \w little|strong="H2191"\w*, \w and|strong="H5750"\w* \w I|strong="H3588"\w* \w will|strong="H5750"\w* \w show|strong="H2331"\w* \w you|strong="H3588"\w*; +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w still|strong="H5750"\w* \w have|strong="H4405"\w* something \w to|strong="H3588"\w* \w say|strong="H4405"\w* \w on|strong="H4405"\w* God’s behalf. +\q1 +\v 3 \w I|strong="H5414"\w* \w will|strong="H5414"\w* get \w my|strong="H5414"\w* \w knowledge|strong="H1843"\w* \w from|strong="H7350"\w* \w afar|strong="H7350"\w*, +\q2 \w and|strong="H6664"\w* \w will|strong="H5414"\w* \w ascribe|strong="H5414"\w* \w righteousness|strong="H6664"\w* \w to|strong="H5414"\w* \w my|strong="H5414"\w* \w Maker|strong="H6466"\w*. +\q1 +\v 4 \w For|strong="H3588"\w* \w truly|strong="H3588"\w* \w my|strong="H3588"\w* \w words|strong="H4405"\w* \w are|strong="H5973"\w* \w not|strong="H3808"\w* \w false|strong="H8267"\w*. +\q2 \w One|strong="H3808"\w* \w who|strong="H3588"\w* \w is|strong="H3808"\w* \w perfect|strong="H8549"\w* \w in|strong="H8549"\w* \w knowledge|strong="H1844"\w* \w is|strong="H3808"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*. +\b +\q1 +\v 5 “\w Behold|strong="H2005"\w*, \w God|strong="H3808"\w* \w is|strong="H3820"\w* \w mighty|strong="H3524"\w*, \w and|strong="H3820"\w* doesn’t \w despise|strong="H3988"\w* \w anyone|strong="H2005"\w*. +\q2 \w He|strong="H3808"\w* \w is|strong="H3820"\w* \w mighty|strong="H3524"\w* \w in|strong="H3808"\w* \w strength|strong="H3581"\w* \w of|strong="H3820"\w* \w understanding|strong="H3820"\w*. +\q1 +\v 6 \w He|strong="H5414"\w* doesn’t \w preserve|strong="H2421"\w* \w the|strong="H5414"\w* \w life|strong="H2421"\w* \w of|strong="H4941"\w* \w the|strong="H5414"\w* \w wicked|strong="H7563"\w*, +\q2 \w but|strong="H3808"\w* \w gives|strong="H5414"\w* \w justice|strong="H4941"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w afflicted|strong="H6041"\w*. +\q1 +\v 7 \w He|strong="H3808"\w* doesn’t \w withdraw|strong="H1639"\w* \w his|strong="H3808"\w* \w eyes|strong="H5869"\w* \w from|strong="H5869"\w* \w the|strong="H3808"\w* \w righteous|strong="H6662"\w*, +\q2 \w but|strong="H3808"\w* \w with|strong="H3427"\w* \w kings|strong="H4428"\w* \w on|strong="H3427"\w* \w the|strong="H3808"\w* \w throne|strong="H3678"\w*, +\q2 \w he|strong="H3808"\w* sets \w them|strong="H3427"\w* \w forever|strong="H5331"\w*, \w and|strong="H4428"\w* \w they|strong="H3808"\w* \w are|strong="H5869"\w* \w exalted|strong="H1361"\w*. +\q1 +\v 8 If \w they|strong="H3920"\w* \w are|strong="H2256"\w* bound \w in|strong="H3920"\w* \w fetters|strong="H2131"\w*, +\q2 \w and|strong="H6040"\w* \w are|strong="H2256"\w* \w taken|strong="H3920"\w* \w in|strong="H3920"\w* \w the|strong="H3920"\w* \w cords|strong="H2256"\w* \w of|strong="H2256"\w* afflictions, +\q1 +\v 9 \w then|strong="H3588"\w* \w he|strong="H3588"\w* shows \w them|strong="H1992"\w* \w their|strong="H1992"\w* \w work|strong="H6467"\w*, +\q2 \w and|strong="H5046"\w* \w their|strong="H1992"\w* \w transgressions|strong="H6588"\w*, \w that|strong="H3588"\w* \w they|strong="H1992"\w* \w have|strong="H3588"\w* behaved \w themselves|strong="H1992"\w* proudly. +\q1 +\v 10 \w He|strong="H3588"\w* \w also|strong="H3588"\w* \w opens|strong="H1540"\w* \w their|strong="H7725"\w* ears \w to|strong="H7725"\w* \w instruction|strong="H4148"\w*, +\q2 \w and|strong="H7725"\w* commands \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w return|strong="H7725"\w* \w from|strong="H7725"\w* iniquity. +\q1 +\v 11 If \w they|strong="H3117"\w* \w listen|strong="H8085"\w* \w and|strong="H3117"\w* \w serve|strong="H5647"\w* \w him|strong="H5647"\w*, +\q2 \w they|strong="H3117"\w* \w will|strong="H3117"\w* \w spend|strong="H3615"\w* \w their|strong="H8085"\w* \w days|strong="H3117"\w* \w in|strong="H8141"\w* \w prosperity|strong="H2896"\w*, +\q2 \w and|strong="H3117"\w* \w their|strong="H8085"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w pleasures|strong="H5273"\w*. +\q1 +\v 12 \w But|strong="H3808"\w* if \w they|strong="H3808"\w* don’t \w listen|strong="H8085"\w*, \w they|strong="H3808"\w* \w will|strong="H3808"\w* \w perish|strong="H1478"\w* \w by|strong="H5674"\w* \w the|strong="H8085"\w* \w sword|strong="H7973"\w*; +\q2 \w they|strong="H3808"\w* \w will|strong="H3808"\w* \w die|strong="H1478"\w* \w without|strong="H3808"\w* \w knowledge|strong="H1847"\w*. +\b +\q1 +\v 13 “\w But|strong="H3588"\w* \w those|strong="H3588"\w* \w who|strong="H3588"\w* \w are|strong="H3820"\w* \w godless|strong="H2611"\w* \w in|strong="H3808"\w* \w heart|strong="H3820"\w* \w lay|strong="H7760"\w* \w up|strong="H7760"\w* anger. +\q2 \w They|strong="H3588"\w* don’t \w cry|strong="H7768"\w* \w for|strong="H3588"\w* \w help|strong="H7768"\w* \w when|strong="H3588"\w* \w he|strong="H3588"\w* binds \w them|strong="H7760"\w*. +\q1 +\v 14 \w They|strong="H5315"\w* \w die|strong="H4191"\w* \w in|strong="H4191"\w* \w youth|strong="H5290"\w*. +\q2 \w Their|strong="H4191"\w* \w life|strong="H5315"\w* perishes among \w the|strong="H4191"\w* \w unclean|strong="H6945"\w*. +\q1 +\v 15 He \w delivers|strong="H2502"\w* \w the|strong="H1540"\w* \w afflicted|strong="H6041"\w* \w by|strong="H1540"\w* \w their|strong="H1540"\w* \w affliction|strong="H6040"\w*, +\q2 \w and|strong="H6041"\w* \w opens|strong="H1540"\w* \w their|strong="H1540"\w* ear \w in|strong="H6041"\w* \w oppression|strong="H3906"\w*. +\q1 +\v 16 Yes, \w he|strong="H3808"\w* \w would|strong="H6862"\w* \w have|strong="H6862"\w* allured \w you|strong="H3808"\w* \w out|strong="H3808"\w* \w of|strong="H4390"\w* \w distress|strong="H6862"\w*, +\q2 into \w a|strong="H3068"\w* \w wide|strong="H6310"\w* \w place|strong="H8478"\w*, \w where|strong="H8478"\w* \w there|strong="H8478"\w* \w is|strong="H6310"\w* \w no|strong="H3808"\w* restriction. +\q2 \w That|strong="H3808"\w* \w which|strong="H5183"\w* \w is|strong="H6310"\w* \w set|strong="H4390"\w* \w on|strong="H8478"\w* \w your|strong="H3808"\w* \w table|strong="H7979"\w* \w would|strong="H6862"\w* \w be|strong="H3808"\w* \w full|strong="H4390"\w* \w of|strong="H4390"\w* \w fatness|strong="H1880"\w*. +\b +\q1 +\v 17 “\w But|strong="H7563"\w* you \w are|strong="H7563"\w* \w full|strong="H4390"\w* \w of|strong="H4390"\w* \w the|strong="H4390"\w* \w judgment|strong="H4941"\w* \w of|strong="H4390"\w* \w the|strong="H4390"\w* \w wicked|strong="H7563"\w*. +\q2 \w Judgment|strong="H4941"\w* \w and|strong="H4941"\w* \w justice|strong="H4941"\w* \w take|strong="H8551"\w* \w hold|strong="H8551"\w* \w of|strong="H4390"\w* you. +\q1 +\v 18 Don’t \w let|strong="H5186"\w* riches \w entice|strong="H5496"\w* \w you|strong="H3588"\w* \w to|strong="H2534"\w* \w wrath|strong="H2534"\w*, +\q2 neither \w let|strong="H5186"\w* \w the|strong="H3588"\w* \w great|strong="H7227"\w* size \w of|strong="H2534"\w* \w a|strong="H3068"\w* \w bribe|strong="H3724"\w* \w turn|strong="H5186"\w* \w you|strong="H3588"\w* \w aside|strong="H5186"\w*. +\q1 +\v 19 \w Would|strong="H3605"\w* \w your|strong="H3605"\w* \w wealth|strong="H3808"\w* \w sustain|strong="H6186"\w* \w you|strong="H3605"\w* \w in|strong="H3808"\w* distress, +\q2 \w or|strong="H3808"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w might|strong="H3581"\w* \w of|strong="H3605"\w* \w your|strong="H3605"\w* \w strength|strong="H3581"\w*? +\q1 +\v 20 Don’t \w desire|strong="H7602"\w* \w the|strong="H8478"\w* \w night|strong="H3915"\w*, +\q2 \w when|strong="H5927"\w* \w people|strong="H5971"\w* \w are|strong="H5971"\w* cut \w off|strong="H5927"\w* \w in|strong="H5971"\w* \w their|strong="H8478"\w* \w place|strong="H8478"\w*. +\q1 +\v 21 \w Take|strong="H8104"\w* \w heed|strong="H8104"\w*, don’t \w regard|strong="H6437"\w* iniquity; +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* chosen \w this|strong="H2088"\w* \w rather|strong="H3588"\w* \w than|strong="H5921"\w* \w affliction|strong="H6040"\w*. +\q1 +\v 22 \w Behold|strong="H2005"\w*, \w God|strong="H4310"\w* \w is|strong="H4310"\w* \w exalted|strong="H7682"\w* \w in|strong="H3384"\w* \w his|strong="H3384"\w* \w power|strong="H3581"\w*. +\q2 \w Who|strong="H4310"\w* \w is|strong="H4310"\w* \w a|strong="H3068"\w* \w teacher|strong="H3384"\w* \w like|strong="H3644"\w* \w him|strong="H3384"\w*? +\q1 +\v 23 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* prescribed \w his|strong="H5921"\w* \w way|strong="H1870"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w*? +\q2 \w Or|strong="H1870"\w* \w who|strong="H4310"\w* \w can|strong="H4310"\w* say, ‘\w You|strong="H5921"\w* \w have|strong="H5921"\w* \w committed|strong="H6485"\w* \w unrighteousness|strong="H5766"\w*’? +\b +\q1 +\v 24 “\w Remember|strong="H2142"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w magnify|strong="H7679"\w* \w his|strong="H2142"\w* \w work|strong="H6467"\w*, +\q2 about \w which|strong="H3588"\w* \w men|strong="H7891"\w* \w have|strong="H3588"\w* \w sung|strong="H7891"\w*. +\q1 +\v 25 \w All|strong="H3605"\w* \w men|strong="H3605"\w* \w have|strong="H3605"\w* \w looked|strong="H5027"\w* \w on|strong="H5027"\w* \w it|strong="H3605"\w*. +\q2 \w Man|strong="H3605"\w* \w sees|strong="H2372"\w* \w it|strong="H3605"\w* \w afar|strong="H7350"\w* \w off|strong="H7350"\w*. +\q1 +\v 26 \w Behold|strong="H2005"\w*, \w God|strong="H3808"\w* \w is|strong="H8141"\w* \w great|strong="H7689"\w*, \w and|strong="H8141"\w* \w we|strong="H3068"\w* don’t \w know|strong="H3045"\w* \w him|strong="H3045"\w*. +\q2 \w The|strong="H3045"\w* \w number|strong="H4557"\w* \w of|strong="H8141"\w* \w his|strong="H3045"\w* \w years|strong="H8141"\w* \w is|strong="H8141"\w* \w unsearchable|strong="H2714"\w*. +\q1 +\v 27 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w draws|strong="H1639"\w* up \w the|strong="H3588"\w* \w drops|strong="H5198"\w* \w of|strong="H4325"\w* \w water|strong="H4325"\w*, +\q2 \w which|strong="H4325"\w* \w distill|strong="H2212"\w* \w in|strong="H4306"\w* \w rain|strong="H4306"\w* \w from|strong="H4325"\w* \w his|strong="H3588"\w* vapor, +\q1 +\v 28 \w which|strong="H7227"\w* \w the|strong="H5921"\w* \w skies|strong="H7834"\w* \w pour|strong="H5140"\w* \w down|strong="H7491"\w* +\q2 \w and|strong="H7227"\w* \w which|strong="H7227"\w* \w drop|strong="H7491"\w* \w on|strong="H5921"\w* man \w abundantly|strong="H7227"\w*. +\q1 +\v 29 Indeed, can anyone understand the \w spreading|strong="H4666"\w* \w of|strong="H5521"\w* the \w clouds|strong="H5645"\w* +\q2 \w and|strong="H5645"\w* the thunderings \w of|strong="H5521"\w* \w his|strong="H5645"\w* \w pavilion|strong="H5521"\w*? +\q1 +\v 30 \w Behold|strong="H2005"\w*, \w he|strong="H5921"\w* \w spreads|strong="H6566"\w* \w his|strong="H5921"\w* light \w around|strong="H5921"\w* \w him|strong="H5921"\w*. +\q2 \w He|strong="H5921"\w* \w covers|strong="H3680"\w* \w the|strong="H5921"\w* \w bottom|strong="H8328"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*. +\q1 +\v 31 \w For|strong="H3588"\w* \w by|strong="H5414"\w* \w these|strong="H5971"\w* \w he|strong="H3588"\w* \w judges|strong="H1777"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w*. +\q2 \w He|strong="H3588"\w* \w gives|strong="H5414"\w* food \w in|strong="H5414"\w* \w abundance|strong="H4342"\w*. +\q1 +\v 32 \w He|strong="H5921"\w* \w covers|strong="H3680"\w* \w his|strong="H5921"\w* \w hands|strong="H3709"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* lightning, +\q2 \w and|strong="H3709"\w* \w commands|strong="H6680"\w* \w it|strong="H5921"\w* \w to|strong="H5921"\w* \w strike|strong="H6293"\w* \w the|strong="H5921"\w* \w mark|strong="H6293"\w*. +\q1 +\v 33 \w Its|strong="H5921"\w* \w noise|strong="H7452"\w* \w tells|strong="H5046"\w* \w about|strong="H5921"\w* \w him|strong="H5921"\w*, +\q2 \w and|strong="H5927"\w* \w the|strong="H5921"\w* \w livestock|strong="H4735"\w* also, \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* storm \w that|strong="H5927"\w* \w comes|strong="H5927"\w* \w up|strong="H5927"\w*. +\b +\c 37 +\q1 +\v 1 “Yes, \w at|strong="H2729"\w* \w this|strong="H2063"\w* \w my|strong="H5425"\w* \w heart|strong="H3820"\w* \w trembles|strong="H2729"\w*, +\q2 \w and|strong="H4725"\w* \w is|strong="H3820"\w* \w moved|strong="H2063"\w* \w out|strong="H4725"\w* \w of|strong="H3820"\w* its \w place|strong="H4725"\w*. +\q1 +\v 2 \w Hear|strong="H8085"\w*, oh, \w hear|strong="H8085"\w* \w the|strong="H8085"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w his|strong="H8085"\w* \w voice|strong="H6963"\w*, +\q2 \w the|strong="H8085"\w* \w sound|strong="H6963"\w* \w that|strong="H8085"\w* \w goes|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H6963"\w* \w his|strong="H8085"\w* \w mouth|strong="H6310"\w*. +\q1 +\v 3 \w He|strong="H3605"\w* sends \w it|strong="H5921"\w* \w out|strong="H5921"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w sky|strong="H8064"\w*, +\q2 \w and|strong="H8064"\w* \w his|strong="H3605"\w* lightning \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w ends|strong="H3671"\w* \w of|strong="H5921"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*. +\q1 +\v 4 \w After|strong="H3588"\w* \w it|strong="H3588"\w* \w a|strong="H3068"\w* \w voice|strong="H6963"\w* \w roars|strong="H7580"\w*. +\q2 \w He|strong="H3588"\w* \w thunders|strong="H7481"\w* \w with|strong="H8085"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w his|strong="H8085"\w* \w majesty|strong="H1347"\w*. +\q2 \w He|strong="H3588"\w* doesn’t hold back \w anything|strong="H3808"\w* \w when|strong="H3588"\w* \w his|strong="H8085"\w* \w voice|strong="H6963"\w* \w is|strong="H6963"\w* \w heard|strong="H8085"\w*. +\q1 +\v 5 \w God|strong="H3808"\w* \w thunders|strong="H7481"\w* \w marvelously|strong="H6381"\w* \w with|strong="H6213"\w* \w his|strong="H3045"\w* \w voice|strong="H6963"\w*. +\q2 \w He|strong="H6213"\w* \w does|strong="H6213"\w* \w great|strong="H1419"\w* \w things|strong="H1419"\w*, which \w we|strong="H3068"\w* \w can|strong="H6213"\w*’t \w comprehend|strong="H3045"\w*. +\q1 +\v 6 \w For|strong="H3588"\w* \w he|strong="H3588"\w* says \w to|strong="H3588"\w* \w the|strong="H3588"\w* \w snow|strong="H7950"\w*, ‘\w Fall|strong="H1933"\w* on \w the|strong="H3588"\w* earth,’ +\q2 likewise \w to|strong="H3588"\w* \w the|strong="H3588"\w* \w shower|strong="H1653"\w* \w of|strong="H1653"\w* \w rain|strong="H4306"\w*, +\q2 \w and|strong="H5797"\w* \w to|strong="H3588"\w* \w the|strong="H3588"\w* \w showers|strong="H1653"\w* \w of|strong="H1653"\w* \w his|strong="H3588"\w* \w mighty|strong="H5797"\w* \w rain|strong="H4306"\w*. +\q1 +\v 7 \w He|strong="H3605"\w* \w seals|strong="H2856"\w* \w up|strong="H2856"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w every|strong="H3605"\w* \w man|strong="H3605"\w*, +\q2 \w that|strong="H3045"\w* \w all|strong="H3605"\w* \w men|strong="H3605"\w* whom \w he|strong="H3605"\w* \w has|strong="H3027"\w* \w made|strong="H3045"\w* may \w know|strong="H3045"\w* \w it|strong="H3045"\w*. +\q1 +\v 8 Then \w the|strong="H1119"\w* \w animals|strong="H2416"\w* take cover, +\q2 \w and|strong="H2416"\w* \w remain|strong="H7931"\w* \w in|strong="H7931"\w* their \w dens|strong="H4585"\w*. +\q1 +\v 9 \w Out|strong="H4480"\w* \w of|strong="H4480"\w* \w its|strong="H4480"\w* \w room|strong="H2315"\w* comes \w the|strong="H4480"\w* \w storm|strong="H5492"\w*, +\q2 \w and|strong="H4480"\w* \w cold|strong="H7135"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w north|strong="H4215"\w*. +\q1 +\v 10 \w By|strong="H5414"\w* \w the|strong="H5414"\w* \w breath|strong="H5397"\w* \w of|strong="H4325"\w* \w God|strong="H5414"\w*, \w ice|strong="H7140"\w* \w is|strong="H4325"\w* \w given|strong="H5414"\w*, +\q2 \w and|strong="H4325"\w* \w the|strong="H5414"\w* \w width|strong="H7341"\w* \w of|strong="H4325"\w* \w the|strong="H5414"\w* \w waters|strong="H4325"\w* \w is|strong="H4325"\w* \w frozen|strong="H4164"\w*. +\q1 +\v 11 Yes, \w he|strong="H7377"\w* \w loads|strong="H2959"\w* \w the|strong="H6327"\w* \w thick|strong="H5645"\w* \w cloud|strong="H6051"\w* \w with|strong="H6051"\w* \w moisture|strong="H7377"\w*. +\q2 \w He|strong="H7377"\w* spreads \w abroad|strong="H6327"\w* \w the|strong="H6327"\w* \w cloud|strong="H6051"\w* \w of|strong="H6051"\w* \w his|strong="H5645"\w* lightning. +\q1 +\v 12 \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w turned|strong="H2015"\w* \w around|strong="H5921"\w* \w by|strong="H5921"\w* \w his|strong="H3605"\w* \w guidance|strong="H8458"\w*, +\q2 \w that|strong="H3605"\w* \w they|strong="H5921"\w* \w may|strong="H1931"\w* \w do|strong="H6680"\w* \w whatever|strong="H3605"\w* \w he|strong="H1931"\w* \w commands|strong="H6680"\w* \w them|strong="H5921"\w* +\q2 \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* habitable \w world|strong="H8398"\w*, +\q1 +\v 13 whether \w it|strong="H4672"\w* \w is|strong="H2617"\w* \w for|strong="H2617"\w* \w correction|strong="H7626"\w*, or \w for|strong="H2617"\w* \w his|strong="H4672"\w* land, +\q2 or \w for|strong="H2617"\w* loving \w kindness|strong="H2617"\w*, \w that|strong="H7626"\w* he causes \w it|strong="H4672"\w* \w to|strong="H2617"\w* \w come|strong="H4672"\w*. +\b +\q1 +\v 14 “Listen \w to|strong="H5975"\w* \w this|strong="H2063"\w*, Job. +\q2 \w Stand|strong="H5975"\w* \w still|strong="H5975"\w*, \w and|strong="H5975"\w* consider \w the|strong="H5975"\w* \w wondrous|strong="H6381"\w* \w works|strong="H6381"\w* \w of|strong="H6381"\w* God. +\q1 +\v 15 Do \w you|strong="H5921"\w* \w know|strong="H3045"\w* \w how|strong="H3045"\w* God controls \w them|strong="H5921"\w*, +\q2 \w and|strong="H3045"\w* causes \w the|strong="H5921"\w* lightning \w of|strong="H5921"\w* \w his|strong="H7760"\w* \w cloud|strong="H6051"\w* \w to|strong="H5921"\w* \w shine|strong="H3313"\w*? +\q1 +\v 16 Do \w you|strong="H5921"\w* \w know|strong="H3045"\w* \w the|strong="H5921"\w* workings \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w clouds|strong="H5645"\w*, +\q2 \w the|strong="H5921"\w* wondrous \w works|strong="H4652"\w* \w of|strong="H5921"\w* \w him|strong="H5921"\w* \w who|strong="H3045"\w* \w is|strong="H8549"\w* \w perfect|strong="H8549"\w* \w in|strong="H5921"\w* \w knowledge|strong="H3045"\w*? +\q1 +\v 17 You whose clothing is \w warm|strong="H2525"\w* +\q2 when \w the|strong="H8252"\w* earth is \w still|strong="H8252"\w* by reason of \w the|strong="H8252"\w* \w south|strong="H1864"\w* wind? +\q1 +\v 18 Can \w you|strong="H5973"\w*, \w with|strong="H5973"\w* \w him|strong="H5973"\w*, \w spread|strong="H7554"\w* \w out|strong="H3332"\w* \w the|strong="H5973"\w* \w sky|strong="H7834"\w*, +\q2 which \w is|strong="H7834"\w* \w strong|strong="H2389"\w* \w as|strong="H5973"\w* \w a|strong="H3068"\w* \w cast|strong="H3332"\w* metal \w mirror|strong="H7209"\w*? +\q1 +\v 19 \w Teach|strong="H3045"\w* \w us|strong="H6440"\w* \w what|strong="H4100"\w* \w we|strong="H3068"\w* \w will|strong="H3808"\w* \w tell|strong="H3045"\w* \w him|strong="H6440"\w*, +\q2 \w for|strong="H6440"\w* \w we|strong="H3068"\w* \w can|strong="H4100"\w*’t \w make|strong="H3045"\w* \w our|strong="H3045"\w* case \w by|strong="H3808"\w* \w reason|strong="H6440"\w* \w of|strong="H6440"\w* \w darkness|strong="H2822"\w*. +\q1 +\v 20 \w Will|strong="H3588"\w* \w it|strong="H3588"\w* \w be|strong="H3588"\w* \w told|strong="H1696"\w* \w him|strong="H3588"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* would \w speak|strong="H1696"\w*? +\q2 \w Or|strong="H5608"\w* \w should|strong="H3588"\w* \w a|strong="H3068"\w* man wish \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w were|strong="H1696"\w* \w swallowed|strong="H1104"\w* \w up|strong="H1104"\w*? +\b +\q1 +\v 21 \w Now|strong="H6258"\w* men don’t \w see|strong="H7200"\w* \w the|strong="H7200"\w* light \w which|strong="H1931"\w* \w is|strong="H1931"\w* bright \w in|strong="H7200"\w* \w the|strong="H7200"\w* \w skies|strong="H7834"\w*, +\q2 \w but|strong="H3808"\w* \w the|strong="H7200"\w* \w wind|strong="H7307"\w* \w passes|strong="H5674"\w*, \w and|strong="H7200"\w* clears \w them|strong="H7200"\w*. +\q1 +\v 22 \w Out|strong="H5921"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w north|strong="H6828"\w* comes \w golden|strong="H2091"\w* \w splendor|strong="H1935"\w*. +\q2 \w With|strong="H5921"\w* God \w is|strong="H2091"\w* \w awesome|strong="H3372"\w* \w majesty|strong="H1935"\w*. +\q1 +\v 23 \w We|strong="H4672"\w* \w can|strong="H3808"\w*’t reach \w the|strong="H4672"\w* \w Almighty|strong="H7706"\w*. +\q2 \w He|strong="H3808"\w* \w is|strong="H4941"\w* \w exalted|strong="H7689"\w* \w in|strong="H4672"\w* \w power|strong="H3581"\w*. +\q2 \w In|strong="H4672"\w* \w justice|strong="H4941"\w* \w and|strong="H4941"\w* \w great|strong="H7230"\w* \w righteousness|strong="H6666"\w*, \w he|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w oppress|strong="H6031"\w*. +\q1 +\v 24 \w Therefore|strong="H3651"\w* \w men|strong="H2450"\w* \w revere|strong="H3372"\w* \w him|strong="H7200"\w*. +\q2 \w He|strong="H3651"\w* doesn’t \w regard|strong="H7200"\w* \w any|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H2450"\w* \w wise|strong="H2450"\w* \w of|strong="H3820"\w* \w heart|strong="H3820"\w*.” +\b +\c 38 +\p +\v 1 \w Then|strong="H6030"\w* \w Yahweh|strong="H3068"\w* \w answered|strong="H6030"\w* Job \w out|strong="H4480"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w whirlwind|strong="H5591"\w*, +\q1 +\v 2 “\w Who|strong="H4310"\w* \w is|strong="H2088"\w* \w this|strong="H2088"\w* \w who|strong="H4310"\w* \w darkens|strong="H2821"\w* \w counsel|strong="H6098"\w* +\q2 \w by|strong="H6098"\w* \w words|strong="H4405"\w* \w without|strong="H1097"\w* \w knowledge|strong="H1847"\w*? +\q1 +\v 3 Brace \w yourself|strong="H3045"\w* like \w a|strong="H3068"\w* \w man|strong="H1397"\w*, +\q2 \w for|strong="H7592"\w* \w I|strong="H3045"\w* \w will|strong="H1397"\w* \w question|strong="H7592"\w* \w you|strong="H3045"\w*, \w then|strong="H3045"\w* \w you|strong="H3045"\w* \w answer|strong="H3045"\w* \w me|strong="H4994"\w*! +\b +\q1 +\v 4 “Where \w were|strong="H1961"\w* \w you|strong="H3045"\w* \w when|strong="H1961"\w* \w I|strong="H3045"\w* \w laid|strong="H3245"\w* \w the|strong="H3045"\w* \w foundations|strong="H3245"\w* \w of|strong="H3045"\w* \w the|strong="H3045"\w* earth? +\q2 \w Declare|strong="H5046"\w*, \w if|strong="H1961"\w* \w you|strong="H3045"\w* \w have|strong="H1961"\w* understanding. +\q1 +\v 5 \w Who|strong="H4310"\w* \w determined|strong="H7760"\w* \w its|strong="H5921"\w* \w measures|strong="H4461"\w*, \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w know|strong="H3045"\w*? +\q2 \w Or|strong="H4310"\w* \w who|strong="H4310"\w* \w stretched|strong="H5186"\w* \w the|strong="H5921"\w* \w line|strong="H6957"\w* \w on|strong="H5921"\w* \w it|strong="H7760"\w*? +\q1 +\v 6 \w What|strong="H4100"\w* \w were|strong="H5921"\w* \w its|strong="H5921"\w* foundations \w fastened|strong="H2883"\w* \w on|strong="H5921"\w*? +\q2 \w Or|strong="H4310"\w* \w who|strong="H4310"\w* \w laid|strong="H3384"\w* \w its|strong="H5921"\w* \w cornerstone|strong="H6438"\w*, +\q1 +\v 7 \w when|strong="H1121"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w* \w stars|strong="H3556"\w* \w sang|strong="H7442"\w* \w together|strong="H3162"\w*, +\q2 \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* God \w shouted|strong="H7321"\w* \w for|strong="H7442"\w* \w joy|strong="H7442"\w*? +\b +\q1 +\v 8 “\w Or|strong="H1817"\w* who shut \w up|strong="H3318"\w* \w the|strong="H3318"\w* \w sea|strong="H3220"\w* \w with|strong="H3318"\w* \w doors|strong="H1817"\w*, +\q2 \w when|strong="H3318"\w* \w it|strong="H3318"\w* \w broke|strong="H1518"\w* \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w the|strong="H3318"\w* \w womb|strong="H7358"\w*, +\q1 +\v 9 \w when|strong="H6051"\w* \w I|strong="H7760"\w* \w made|strong="H7760"\w* \w clouds|strong="H6051"\w* \w its|strong="H7760"\w* \w garment|strong="H3830"\w*, +\q2 \w and|strong="H6051"\w* wrapped \w it|strong="H7760"\w* \w in|strong="H7760"\w* \w thick|strong="H6205"\w* \w darkness|strong="H6205"\w*, +\q1 +\v 10 marked \w out|strong="H5921"\w* \w for|strong="H5921"\w* \w it|strong="H7760"\w* \w my|strong="H7760"\w* bound, +\q2 \w set|strong="H7760"\w* \w bars|strong="H1280"\w* \w and|strong="H2706"\w* \w doors|strong="H1817"\w*, +\q1 +\v 11 \w and|strong="H3254"\w* said, ‘\w You|strong="H5704"\w* \w may|strong="H3254"\w* come \w here|strong="H6311"\w*, \w but|strong="H3808"\w* \w no|strong="H3808"\w* \w further|strong="H3254"\w*. +\q2 \w Your|strong="H3808"\w* \w proud|strong="H1347"\w* \w waves|strong="H1530"\w* \w shall|strong="H3808"\w* \w be|strong="H3808"\w* stopped \w here|strong="H6311"\w*’? +\b +\q1 +\v 12 “\w Have|strong="H3045"\w* \w you|strong="H6680"\w* \w commanded|strong="H6680"\w* \w the|strong="H3117"\w* \w morning|strong="H1242"\w* \w in|strong="H3117"\w* \w your|strong="H3045"\w* \w days|strong="H3117"\w*, +\q2 \w and|strong="H3117"\w* caused \w the|strong="H3117"\w* \w dawn|strong="H7837"\w* \w to|strong="H3117"\w* \w know|strong="H3045"\w* \w its|strong="H3045"\w* \w place|strong="H4725"\w*, +\q1 +\v 13 \w that|strong="H4480"\w* it might take hold \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w ends|strong="H3671"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* earth, +\q2 \w and|strong="H3671"\w* \w shake|strong="H5287"\w* \w the|strong="H4480"\w* wicked \w out|strong="H4480"\w* \w of|strong="H4480"\w* it? +\q1 +\v 14 \w It|strong="H2015"\w* \w is|strong="H3830"\w* \w changed|strong="H2015"\w* \w as|strong="H3644"\w* \w clay|strong="H2563"\w* under \w the|strong="H2015"\w* \w seal|strong="H2368"\w*, +\q2 \w and|strong="H3320"\w* \w presented|strong="H3320"\w* \w as|strong="H3644"\w* \w a|strong="H3068"\w* \w garment|strong="H3830"\w*. +\q1 +\v 15 \w From|strong="H4513"\w* \w the|strong="H7665"\w* wicked, \w their|strong="H7665"\w* light \w is|strong="H2220"\w* \w withheld|strong="H4513"\w*. +\q2 \w The|strong="H7665"\w* \w high|strong="H7311"\w* \w arm|strong="H2220"\w* \w is|strong="H2220"\w* \w broken|strong="H7665"\w*. +\b +\q1 +\v 16 “\w Have|strong="H8415"\w* \w you|strong="H5704"\w* \w entered|strong="H5704"\w* \w into|strong="H1980"\w* \w the|strong="H5704"\w* \w springs|strong="H8415"\w* \w of|strong="H3220"\w* \w the|strong="H5704"\w* \w sea|strong="H3220"\w*? +\q2 \w Or|strong="H5704"\w* \w have|strong="H8415"\w* \w you|strong="H5704"\w* \w walked|strong="H1980"\w* \w in|strong="H1980"\w* \w the|strong="H5704"\w* \w recesses|strong="H2714"\w* \w of|strong="H3220"\w* \w the|strong="H5704"\w* \w deep|strong="H8415"\w*? +\q1 +\v 17 \w Have|strong="H7200"\w* \w the|strong="H7200"\w* \w gates|strong="H8179"\w* \w of|strong="H8179"\w* \w death|strong="H4194"\w* \w been|strong="H4194"\w* \w revealed|strong="H1540"\w* \w to|strong="H7200"\w* \w you|strong="H7200"\w*? +\q2 \w Or|strong="H4194"\w* \w have|strong="H7200"\w* \w you|strong="H7200"\w* \w seen|strong="H7200"\w* \w the|strong="H7200"\w* \w gates|strong="H8179"\w* \w of|strong="H8179"\w* \w the|strong="H7200"\w* \w shadow|strong="H6757"\w* \w of|strong="H8179"\w* \w death|strong="H4194"\w*? +\q1 +\v 18 \w Have|strong="H3045"\w* \w you|strong="H3605"\w* comprehended \w the|strong="H3605"\w* earth \w in|strong="H5046"\w* \w its|strong="H3605"\w* width? +\q2 \w Declare|strong="H5046"\w*, if \w you|strong="H3605"\w* \w know|strong="H3045"\w* \w it|strong="H3045"\w* \w all|strong="H3605"\w*. +\b +\q1 +\v 19 “\w What|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w to|strong="H1870"\w* \w the|strong="H1870"\w* \w dwelling|strong="H7931"\w* \w of|strong="H1870"\w* light? +\q2 \w As|strong="H2088"\w* \w for|strong="H4725"\w* \w darkness|strong="H2822"\w*, \w where|strong="H4725"\w* \w is|strong="H2088"\w* its \w place|strong="H4725"\w*, +\q1 +\v 20 \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w should|strong="H3588"\w* \w take|strong="H3947"\w* \w it|strong="H3588"\w* \w to|strong="H1004"\w* \w its|strong="H3588"\w* \w bound|strong="H1366"\w*, +\q2 \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w should|strong="H3588"\w* discern \w the|strong="H3588"\w* \w paths|strong="H5410"\w* \w to|strong="H1004"\w* \w its|strong="H3588"\w* \w house|strong="H1004"\w*? +\q1 +\v 21 \w Surely|strong="H3588"\w* \w you|strong="H3588"\w* \w know|strong="H3045"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w were|strong="H3117"\w* \w born|strong="H3205"\w* \w then|strong="H3588"\w*, +\q2 \w and|strong="H3117"\w* \w the|strong="H3588"\w* \w number|strong="H4557"\w* \w of|strong="H3117"\w* \w your|strong="H3045"\w* \w days|strong="H3117"\w* \w is|strong="H3117"\w* \w great|strong="H7227"\w*! +\q1 +\v 22 \w Have|strong="H7200"\w* \w you|strong="H7200"\w* entered \w the|strong="H7200"\w* storehouses \w of|strong="H7200"\w* \w the|strong="H7200"\w* \w snow|strong="H7950"\w*, +\q2 \w or|strong="H7200"\w* \w have|strong="H7200"\w* \w you|strong="H7200"\w* \w seen|strong="H7200"\w* \w the|strong="H7200"\w* storehouses \w of|strong="H7200"\w* \w the|strong="H7200"\w* \w hail|strong="H1259"\w*, +\q1 +\v 23 \w which|strong="H4421"\w* \w I|strong="H3117"\w* \w have|strong="H6862"\w* \w reserved|strong="H2820"\w* \w against|strong="H4421"\w* \w the|strong="H3117"\w* \w time|strong="H6256"\w* \w of|strong="H3117"\w* \w trouble|strong="H6862"\w*, +\q2 \w against|strong="H4421"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w battle|strong="H4421"\w* \w and|strong="H3117"\w* \w war|strong="H4421"\w*? +\q1 +\v 24 \w By|strong="H5921"\w* \w what|strong="H2088"\w* \w way|strong="H1870"\w* \w is|strong="H2088"\w* \w the|strong="H5921"\w* lightning \w distributed|strong="H2505"\w*, +\q2 \w or|strong="H1870"\w* \w the|strong="H5921"\w* \w east|strong="H6921"\w* \w wind|strong="H6921"\w* \w scattered|strong="H6327"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* earth? +\b +\q1 +\v 25 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* cut \w a|strong="H3068"\w* \w channel|strong="H8585"\w* \w for|strong="H6963"\w* \w the|strong="H1870"\w* \w flood|strong="H7858"\w* water, +\q2 \w or|strong="H1870"\w* \w the|strong="H1870"\w* \w path|strong="H1870"\w* \w for|strong="H6963"\w* \w the|strong="H1870"\w* thunderstorm, +\q1 +\v 26 \w to|strong="H5921"\w* cause \w it|strong="H5921"\w* \w to|strong="H5921"\w* \w rain|strong="H4305"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* land \w where|strong="H5921"\w* there \w is|strong="H3808"\w* \w no|strong="H3808"\w* man, +\q2 \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*, \w in|strong="H5921"\w* \w which|strong="H4057"\w* there \w is|strong="H3808"\w* \w no|strong="H3808"\w* man, +\q1 +\v 27 \w to|strong="H7646"\w* \w satisfy|strong="H7646"\w* \w the|strong="H7646"\w* \w waste|strong="H4875"\w* \w and|strong="H7646"\w* \w desolate|strong="H7722"\w* ground, +\q2 \w to|strong="H7646"\w* \w cause|strong="H6779"\w* \w the|strong="H7646"\w* \w tender|strong="H1877"\w* \w grass|strong="H1877"\w* \w to|strong="H7646"\w* \w grow|strong="H6779"\w*? +\q1 +\v 28 \w Does|strong="H3426"\w* \w the|strong="H3205"\w* \w rain|strong="H4306"\w* \w have|strong="H3426"\w* \w a|strong="H3068"\w* \w father|strong="H3205"\w*? +\q2 \w Or|strong="H4310"\w* \w who|strong="H4310"\w* \w fathers|strong="H3205"\w* \w the|strong="H3205"\w* drops \w of|strong="H3205"\w* \w dew|strong="H2919"\w*? +\q1 +\v 29 \w Whose|strong="H4310"\w* womb did \w the|strong="H3205"\w* \w ice|strong="H7140"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3205"\w*? +\q2 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* \w given|strong="H3205"\w* \w birth|strong="H3205"\w* \w to|strong="H3318"\w* \w the|strong="H3205"\w* gray \w frost|strong="H7140"\w* \w of|strong="H3205"\w* \w the|strong="H3205"\w* \w sky|strong="H8064"\w*? +\q1 +\v 30 \w The|strong="H6440"\w* \w waters|strong="H4325"\w* become \w hard|strong="H2244"\w* \w like|strong="H6440"\w* stone, +\q2 when \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w deep|strong="H8415"\w* \w is|strong="H6440"\w* \w frozen|strong="H3920"\w*. +\b +\q1 +\v 31 “Can \w you|strong="H6605"\w* \w bind|strong="H7194"\w* \w the|strong="H6605"\w* cluster \w of|strong="H4189"\w* \w the|strong="H6605"\w* \w Pleiades|strong="H3598"\w*, +\q2 or \w loosen|strong="H6605"\w* \w the|strong="H6605"\w* \w cords|strong="H4189"\w* \w of|strong="H4189"\w* \w Orion|strong="H3685"\w*? +\q1 +\v 32 \w Can|strong="H1121"\w* \w you|strong="H5921"\w* \w lead|strong="H5148"\w* \w the|strong="H5921"\w* constellations \w out|strong="H3318"\w* \w in|strong="H5921"\w* \w their|strong="H5921"\w* \w season|strong="H6256"\w*? +\q2 \w Or|strong="H1121"\w* \w can|strong="H1121"\w* \w you|strong="H5921"\w* \w guide|strong="H5148"\w* \w the|strong="H5921"\w* \w Bear|strong="H5906"\w* \w with|strong="H5921"\w* \w her|strong="H5921"\w* cubs? +\q1 +\v 33 Do \w you|strong="H7760"\w* \w know|strong="H3045"\w* \w the|strong="H7760"\w* laws \w of|strong="H2708"\w* \w the|strong="H7760"\w* \w heavens|strong="H8064"\w*? +\q2 \w Can|strong="H3045"\w* \w you|strong="H7760"\w* \w establish|strong="H7760"\w* \w its|strong="H7760"\w* \w dominion|strong="H4896"\w* \w over|strong="H3045"\w* \w the|strong="H7760"\w* \w earth|strong="H8064"\w*? +\b +\q1 +\v 34 “Can \w you|strong="H6963"\w* \w lift|strong="H7311"\w* \w up|strong="H7311"\w* \w your|strong="H7311"\w* \w voice|strong="H6963"\w* \w to|strong="H4325"\w* \w the|strong="H3680"\w* \w clouds|strong="H5645"\w*, +\q2 \w that|strong="H4325"\w* \w abundance|strong="H8229"\w* \w of|strong="H6963"\w* \w waters|strong="H4325"\w* \w may|strong="H4325"\w* \w cover|strong="H3680"\w* \w you|strong="H6963"\w*? +\q1 +\v 35 Can \w you|strong="H7971"\w* \w send|strong="H7971"\w* \w out|strong="H7971"\w* \w lightnings|strong="H1300"\w*, \w that|strong="H3212"\w* they may \w go|strong="H3212"\w*? +\q2 Do they report \w to|strong="H3212"\w* \w you|strong="H7971"\w*, ‘\w Here|strong="H2005"\w* \w we|strong="H3068"\w* are’? +\q1 +\v 36 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* \w put|strong="H5414"\w* \w wisdom|strong="H2451"\w* \w in|strong="H5414"\w* \w the|strong="H5414"\w* inward \w parts|strong="H2910"\w*? +\q2 \w Or|strong="H4310"\w* \w who|strong="H4310"\w* \w has|strong="H4310"\w* \w given|strong="H5414"\w* understanding \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w mind|strong="H7907"\w*? +\q1 +\v 37 \w Who|strong="H4310"\w* \w can|strong="H4310"\w* \w count|strong="H5608"\w* \w the|strong="H5608"\w* \w clouds|strong="H7834"\w* \w by|strong="H8064"\w* \w wisdom|strong="H2451"\w*? +\q2 \w Or|strong="H5608"\w* \w who|strong="H4310"\w* \w can|strong="H4310"\w* \w pour|strong="H7834"\w* \w out|strong="H7834"\w* \w the|strong="H5608"\w* \w containers|strong="H5035"\w* \w of|strong="H2451"\w* \w the|strong="H5608"\w* \w sky|strong="H8064"\w*, +\q1 +\v 38 when \w the|strong="H3332"\w* \w dust|strong="H6083"\w* runs \w into|strong="H3332"\w* \w a|strong="H3068"\w* \w mass|strong="H4165"\w*, +\q2 \w and|strong="H6083"\w* \w the|strong="H3332"\w* \w clods|strong="H7263"\w* \w of|strong="H6083"\w* \w earth|strong="H6083"\w* \w stick|strong="H1692"\w* \w together|strong="H1692"\w*? +\b +\q1 +\v 39 “Can you \w hunt|strong="H6679"\w* \w the|strong="H4390"\w* \w prey|strong="H2964"\w* \w for|strong="H2416"\w* \w the|strong="H4390"\w* \w lioness|strong="H3833"\w*, +\q2 \w or|strong="H2416"\w* \w satisfy|strong="H4390"\w* \w the|strong="H4390"\w* \w appetite|strong="H2416"\w* \w of|strong="H4390"\w* \w the|strong="H4390"\w* \w young|strong="H3715"\w* \w lions|strong="H3715"\w*, +\q1 +\v 40 \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w crouch|strong="H7817"\w* \w in|strong="H3427"\w* \w their|strong="H3588"\w* \w dens|strong="H4585"\w*, +\q2 \w and|strong="H3427"\w* lie \w in|strong="H3427"\w* \w wait|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3588"\w* thicket? +\q1 +\v 41 \w Who|strong="H4310"\w* \w provides|strong="H3559"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w raven|strong="H6158"\w* \w his|strong="H3559"\w* \w prey|strong="H6718"\w*, +\q2 \w when|strong="H3588"\w* \w his|strong="H3559"\w* \w young|strong="H3206"\w* \w ones|strong="H3206"\w* \w cry|strong="H7768"\w* \w to|strong="H3559"\w* \w God|strong="H4310"\w*, +\q2 \w and|strong="H3206"\w* \w wander|strong="H8582"\w* \w for|strong="H3588"\w* \w lack|strong="H1097"\w* \w of|strong="H3206"\w* \w food|strong="H6718"\w*? +\b +\c 39 +\q1 +\v 1 “\w Do|strong="H8104"\w* \w you|strong="H3045"\w* \w know|strong="H3045"\w* \w the|strong="H8104"\w* \w time|strong="H6256"\w* \w when|strong="H6256"\w* \w the|strong="H8104"\w* \w mountain|strong="H3277"\w* \w goats|strong="H3277"\w* \w give|strong="H3205"\w* \w birth|strong="H3205"\w*? +\q2 \w Do|strong="H8104"\w* \w you|strong="H3045"\w* \w watch|strong="H8104"\w* \w when|strong="H6256"\w* \w the|strong="H8104"\w* doe \w bears|strong="H3205"\w* fawns? +\q1 +\v 2 \w Can|strong="H3045"\w* \w you|strong="H3045"\w* \w count|strong="H5608"\w* \w the|strong="H3205"\w* \w months|strong="H3391"\w* \w that|strong="H3045"\w* \w they|strong="H6256"\w* \w fulfill|strong="H4390"\w*? +\q2 \w Or|strong="H5608"\w* do \w you|strong="H3045"\w* \w know|strong="H3045"\w* \w the|strong="H3205"\w* \w time|strong="H6256"\w* \w when|strong="H6256"\w* \w they|strong="H6256"\w* \w give|strong="H3205"\w* \w birth|strong="H3205"\w*? +\q1 +\v 3 They \w bow|strong="H3766"\w* themselves. They bear \w their|strong="H7971"\w* \w young|strong="H3206"\w*. +\q2 They end \w their|strong="H7971"\w* \w labor|strong="H2256"\w* \w pains|strong="H2256"\w*. +\q1 +\v 4 \w Their|strong="H7725"\w* \w young|strong="H1121"\w* \w ones|strong="H1121"\w* \w become|strong="H7725"\w* \w strong|strong="H2492"\w*. +\q2 \w They|strong="H3808"\w* \w grow|strong="H3318"\w* \w up|strong="H3318"\w* \w in|strong="H1121"\w* \w the|strong="H7725"\w* open field. +\q2 \w They|strong="H3808"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H1121"\w* don’t \w return|strong="H7725"\w* \w again|strong="H7725"\w*. +\b +\q1 +\v 5 “\w Who|strong="H4310"\w* \w has|strong="H4310"\w* \w set|strong="H7971"\w* \w the|strong="H7971"\w* \w wild|strong="H6501"\w* \w donkey|strong="H6501"\w* \w free|strong="H2670"\w*? +\q2 \w Or|strong="H4310"\w* \w who|strong="H4310"\w* \w has|strong="H4310"\w* loosened \w the|strong="H7971"\w* \w bonds|strong="H4147"\w* \w of|strong="H4147"\w* \w the|strong="H7971"\w* \w swift|strong="H6171"\w* \w donkey|strong="H6501"\w*, +\q1 +\v 6 whose \w home|strong="H1004"\w* \w I|strong="H7760"\w* \w have|strong="H1004"\w* \w made|strong="H7760"\w* \w the|strong="H7760"\w* \w wilderness|strong="H6160"\w*, +\q2 \w and|strong="H1004"\w* \w the|strong="H7760"\w* \w salt|strong="H4420"\w* \w land|strong="H4420"\w* \w his|strong="H7760"\w* \w dwelling|strong="H4908"\w* \w place|strong="H7760"\w*? +\q1 +\v 7 \w He|strong="H3808"\w* \w scorns|strong="H7832"\w* \w the|strong="H8085"\w* \w tumult|strong="H1995"\w* \w of|strong="H1995"\w* \w the|strong="H8085"\w* \w city|strong="H7151"\w*, +\q2 \w neither|strong="H3808"\w* \w does|strong="H3808"\w* \w he|strong="H3808"\w* \w hear|strong="H8085"\w* \w the|strong="H8085"\w* shouting \w of|strong="H1995"\w* \w the|strong="H8085"\w* \w driver|strong="H5065"\w*. +\q1 +\v 8 \w The|strong="H3605"\w* \w range|strong="H3491"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w* \w is|strong="H3605"\w* \w his|strong="H3605"\w* \w pasture|strong="H4829"\w*. +\q2 \w He|strong="H3605"\w* \w searches|strong="H1875"\w* \w after|strong="H1875"\w* \w every|strong="H3605"\w* \w green|strong="H3387"\w* \w thing|strong="H3387"\w*. +\b +\q1 +\v 9 “\w Will|strong="H5647"\w* \w the|strong="H5921"\w* \w wild|strong="H7214"\w* \w ox|strong="H7214"\w* \w be|strong="H7214"\w* content \w to|strong="H5921"\w* \w serve|strong="H5647"\w* \w you|strong="H5921"\w*? +\q2 \w Or|strong="H5647"\w* \w will|strong="H5647"\w* \w he|strong="H5921"\w* \w stay|strong="H3885"\w* \w by|strong="H5921"\w* \w your|strong="H5921"\w* feeding trough? +\q1 +\v 10 Can \w you|strong="H7214"\w* hold \w the|strong="H7194"\w* \w wild|strong="H7214"\w* \w ox|strong="H7214"\w* \w in|strong="H6010"\w* \w the|strong="H7194"\w* \w furrow|strong="H8525"\w* \w with|strong="H7194"\w* his harness? +\q2 Or will he till \w the|strong="H7194"\w* \w valleys|strong="H6010"\w* after \w you|strong="H7214"\w*? +\q1 +\v 11 \w Will|strong="H7227"\w* \w you|strong="H3588"\w* trust \w him|strong="H5800"\w*, \w because|strong="H3588"\w* \w his|strong="H3588"\w* \w strength|strong="H3581"\w* \w is|strong="H3581"\w* \w great|strong="H7227"\w*? +\q2 \w Or|strong="H3588"\w* \w will|strong="H7227"\w* \w you|strong="H3588"\w* \w leave|strong="H5800"\w* \w to|strong="H3581"\w* \w him|strong="H5800"\w* \w your|strong="H3588"\w* \w labor|strong="H3018"\w*? +\q1 +\v 12 \w Will|strong="H2233"\w* \w you|strong="H3588"\w* confide \w in|strong="H7725"\w* \w him|strong="H7725"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H2233"\w* \w bring|strong="H7725"\w* \w home|strong="H7725"\w* \w your|strong="H7725"\w* \w seed|strong="H2233"\w*, +\q2 \w and|strong="H7725"\w* gather \w the|strong="H3588"\w* \w grain|strong="H2233"\w* \w of|strong="H2233"\w* \w your|strong="H7725"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w*? +\b +\q1 +\v 13 “The \w wings|strong="H3671"\w* \w of|strong="H3671"\w* the \w ostrich|strong="H5133"\w* wave proudly, +\q2 but are they the \w feathers|strong="H5133"\w* \w and|strong="H3671"\w* \w plumage|strong="H5133"\w* \w of|strong="H3671"\w* love? +\q1 +\v 14 \w For|strong="H3588"\w* \w she|strong="H3588"\w* \w leaves|strong="H5800"\w* \w her|strong="H5921"\w* \w eggs|strong="H1000"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w earth|strong="H6083"\w*, +\q2 \w warms|strong="H2552"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w dust|strong="H6083"\w*, +\q1 +\v 15 \w and|strong="H7704"\w* \w forgets|strong="H7911"\w* \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w foot|strong="H7272"\w* \w may|strong="H7272"\w* \w crush|strong="H2115"\w* \w them|strong="H3588"\w*, +\q2 \w or|strong="H7704"\w* \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w wild|strong="H7704"\w* \w animal|strong="H2416"\w* \w may|strong="H7272"\w* \w trample|strong="H1758"\w* \w them|strong="H3588"\w*. +\q1 +\v 16 \w She|strong="H3808"\w* deals harshly \w with|strong="H1121"\w* \w her|strong="H7188"\w* \w young|strong="H1121"\w* \w ones|strong="H1121"\w*, \w as|strong="H1121"\w* \w if|strong="H1121"\w* \w they|strong="H3808"\w* \w were|strong="H1121"\w* \w not|strong="H3808"\w* hers. +\q2 Though \w her|strong="H7188"\w* \w labor|strong="H3018"\w* \w is|strong="H1121"\w* \w in|strong="H1121"\w* \w vain|strong="H7385"\w*, \w she|strong="H3808"\w* \w is|strong="H1121"\w* \w without|strong="H3808"\w* \w fear|strong="H6343"\w*, +\q1 +\v 17 \w because|strong="H3588"\w* \w God|strong="H3808"\w* \w has|strong="H3588"\w* \w deprived|strong="H5382"\w* \w her|strong="H3588"\w* \w of|strong="H2451"\w* \w wisdom|strong="H2451"\w*, +\q2 \w neither|strong="H3808"\w* \w has|strong="H3588"\w* \w he|strong="H3588"\w* \w imparted|strong="H2505"\w* \w to|strong="H3808"\w* \w her|strong="H3588"\w* understanding. +\q1 +\v 18 \w When|strong="H6256"\w* \w she|strong="H6256"\w* \w lifts|strong="H4754"\w* \w up|strong="H4754"\w* \w herself|strong="H4754"\w* \w on|strong="H7392"\w* \w high|strong="H4791"\w*, +\q2 \w she|strong="H6256"\w* \w scorns|strong="H7832"\w* \w the|strong="H6256"\w* \w horse|strong="H5483"\w* \w and|strong="H5483"\w* \w his|strong="H7392"\w* \w rider|strong="H7392"\w*. +\b +\q1 +\v 19 “\w Have|strong="H5414"\w* \w you|strong="H5414"\w* \w given|strong="H5414"\w* \w the|strong="H5414"\w* \w horse|strong="H5483"\w* \w might|strong="H1369"\w*? +\q2 \w Have|strong="H5414"\w* \w you|strong="H5414"\w* \w clothed|strong="H3847"\w* \w his|strong="H5414"\w* \w neck|strong="H6677"\w* \w with|strong="H3847"\w* \w a|strong="H3068"\w* quivering \w mane|strong="H7483"\w*? +\q1 +\v 20 Have you made him \w to|strong="H1935"\w* \w leap|strong="H7493"\w* as \w a|strong="H3068"\w* locust? +\q2 \w The|strong="H7493"\w* \w glory|strong="H1935"\w* \w of|strong="H1935"\w* his \w snorting|strong="H5170"\w* \w is|strong="H5170"\w* awesome. +\q1 +\v 21 \w He|strong="H3318"\w* \w paws|strong="H2658"\w* \w in|strong="H3318"\w* \w the|strong="H3318"\w* \w valley|strong="H6010"\w*, \w and|strong="H3318"\w* \w rejoices|strong="H7797"\w* \w in|strong="H3318"\w* \w his|strong="H3318"\w* \w strength|strong="H3581"\w*. +\q2 \w He|strong="H3318"\w* \w goes|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w meet|strong="H7125"\w* \w the|strong="H3318"\w* armed \w men|strong="H5402"\w*. +\q1 +\v 22 \w He|strong="H3808"\w* mocks \w at|strong="H7725"\w* \w fear|strong="H6343"\w*, \w and|strong="H7725"\w* \w is|strong="H2719"\w* \w not|strong="H3808"\w* \w dismayed|strong="H2865"\w*, +\q2 \w neither|strong="H3808"\w* \w does|strong="H3808"\w* \w he|strong="H3808"\w* \w turn|strong="H7725"\w* \w back|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w*. +\q1 +\v 23 \w The|strong="H5921"\w* quiver \w rattles|strong="H7439"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*, +\q2 \w the|strong="H5921"\w* \w flashing|strong="H3851"\w* \w spear|strong="H2595"\w* \w and|strong="H2595"\w* \w the|strong="H5921"\w* \w javelin|strong="H3591"\w*. +\q1 +\v 24 \w He|strong="H3588"\w* eats up \w the|strong="H3588"\w* ground \w with|strong="H6963"\w* \w fierceness|strong="H7494"\w* \w and|strong="H6963"\w* \w rage|strong="H7267"\w*, +\q2 \w neither|strong="H3808"\w* \w does|strong="H3808"\w* \w he|strong="H3588"\w* stand \w still|strong="H3588"\w* \w at|strong="H3808"\w* \w the|strong="H3588"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H3588"\w* \w trumpet|strong="H7782"\w*. +\q1 +\v 25 \w As|strong="H1767"\w* \w often|strong="H1767"\w* \w as|strong="H1767"\w* \w the|strong="H7306"\w* \w trumpet|strong="H7782"\w* sounds he snorts, ‘\w Aha|strong="H1889"\w*!’ +\q2 He smells \w the|strong="H7306"\w* \w battle|strong="H4421"\w* \w afar|strong="H7350"\w* \w off|strong="H7350"\w*, +\q2 \w the|strong="H7306"\w* \w thunder|strong="H7482"\w* \w of|strong="H8269"\w* \w the|strong="H7306"\w* \w captains|strong="H8269"\w*, \w and|strong="H8269"\w* \w the|strong="H7306"\w* \w shouting|strong="H8643"\w*. +\b +\q1 +\v 26 “\w Is|strong="H3671"\w* \w it|strong="H6566"\w* by \w your|strong="H6566"\w* wisdom that \w the|strong="H6566"\w* \w hawk|strong="H5322"\w* soars, +\q2 \w and|strong="H3671"\w* \w stretches|strong="H6566"\w* \w her|strong="H6566"\w* \w wings|strong="H3671"\w* \w toward|strong="H6566"\w* \w the|strong="H6566"\w* \w south|strong="H8486"\w*? +\q1 +\v 27 \w Is|strong="H6310"\w* \w it|strong="H5921"\w* \w at|strong="H5921"\w* \w your|strong="H5921"\w* \w command|strong="H6310"\w* \w that|strong="H3588"\w* \w the|strong="H5921"\w* \w eagle|strong="H5404"\w* \w mounts|strong="H1361"\w* \w up|strong="H7311"\w*, +\q2 \w and|strong="H6310"\w* \w makes|strong="H7311"\w* \w his|strong="H5921"\w* \w nest|strong="H7064"\w* \w on|strong="H5921"\w* \w high|strong="H7311"\w*? +\q1 +\v 28 \w On|strong="H5921"\w* \w the|strong="H5921"\w* \w cliff|strong="H5553"\w* \w he|strong="H5921"\w* \w dwells|strong="H7931"\w* \w and|strong="H8127"\w* makes \w his|strong="H5921"\w* home, +\q2 \w on|strong="H5921"\w* \w the|strong="H5921"\w* point \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w cliff|strong="H5553"\w* \w and|strong="H8127"\w* \w the|strong="H5921"\w* \w stronghold|strong="H4686"\w*. +\q1 +\v 29 \w From|strong="H7350"\w* \w there|strong="H8033"\w* \w he|strong="H8033"\w* \w spies|strong="H2658"\w* \w out|strong="H2658"\w* \w the|strong="H8033"\w* prey. +\q2 \w His|strong="H5869"\w* \w eyes|strong="H5869"\w* \w see|strong="H5027"\w* \w it|strong="H8033"\w* \w afar|strong="H7350"\w* \w off|strong="H7350"\w*. +\q1 +\v 30 \w His|strong="H1931"\w* young ones \w also|strong="H1931"\w* \w suck|strong="H5966"\w* \w up|strong="H5966"\w* \w blood|strong="H1818"\w*. +\q2 \w Where|strong="H8033"\w* \w the|strong="H8033"\w* \w slain|strong="H2491"\w* \w are|strong="H2491"\w*, \w there|strong="H8033"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w*.” +\b +\c 40 +\p +\v 1 Moreover \w Yahweh|strong="H3068"\w* \w answered|strong="H6030"\w* Job, +\q1 +\v 2 “Shall he \w who|strong="H7706"\w* argues \w contend|strong="H7378"\w* \w with|strong="H5973"\w* \w the|strong="H5973"\w* \w Almighty|strong="H7706"\w*? +\q2 He \w who|strong="H7706"\w* argues \w with|strong="H5973"\w* God, let \w him|strong="H5973"\w* \w answer|strong="H6030"\w* \w it|strong="H5973"\w*.” +\b +\p +\v 3 \w Then|strong="H6030"\w* Job \w answered|strong="H6030"\w* \w Yahweh|strong="H3068"\w*, +\q1 +\v 4 “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H2005"\w* \w of|strong="H3027"\w* \w small|strong="H7043"\w* account. \w What|strong="H4100"\w* \w will|strong="H3027"\w* \w I|strong="H2005"\w* \w answer|strong="H7725"\w* \w you|strong="H7725"\w*? +\q2 \w I|strong="H2005"\w* \w lay|strong="H7760"\w* \w my|strong="H7760"\w* \w hand|strong="H3027"\w* \w on|strong="H7760"\w* \w my|strong="H7760"\w* \w mouth|strong="H6310"\w*. +\q1 +\v 5 \w I|strong="H3808"\w* \w have|strong="H3808"\w* \w spoken|strong="H1696"\w* \w once|strong="H3254"\w*, \w and|strong="H6030"\w* \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w answer|strong="H6030"\w*; +\q2 Yes, \w twice|strong="H8147"\w*, \w but|strong="H3808"\w* \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w proceed|strong="H3254"\w* \w no|strong="H3808"\w* \w further|strong="H3254"\w*.” +\b +\p +\v 6 \w Then|strong="H6030"\w* \w Yahweh|strong="H3068"\w* \w answered|strong="H6030"\w* Job \w out|strong="H4480"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w whirlwind|strong="H5591"\w*: +\q1 +\v 7 “\w Now|strong="H4994"\w* brace \w yourself|strong="H3045"\w* like \w a|strong="H3068"\w* \w man|strong="H1397"\w*. +\q2 \w I|strong="H3045"\w* \w will|strong="H1397"\w* \w question|strong="H7592"\w* \w you|strong="H3045"\w*, \w and|strong="H3045"\w* \w you|strong="H3045"\w* \w will|strong="H1397"\w* \w answer|strong="H3045"\w* \w me|strong="H4994"\w*. +\q1 +\v 8 \w Will|strong="H4616"\w* \w you|strong="H6663"\w* even \w annul|strong="H6565"\w* \w my|strong="H6565"\w* \w judgment|strong="H4941"\w*? +\q2 \w Will|strong="H4616"\w* \w you|strong="H6663"\w* \w condemn|strong="H7561"\w* \w me|strong="H7561"\w*, \w that|strong="H4616"\w* \w you|strong="H6663"\w* \w may|strong="H4616"\w* be \w justified|strong="H6663"\w*? +\q1 +\v 9 \w Or|strong="H2220"\w* do \w you|strong="H3644"\w* \w have|strong="H2220"\w* \w an|strong="H3644"\w* \w arm|strong="H2220"\w* \w like|strong="H3644"\w* God? +\q2 \w Can|strong="H2220"\w* \w you|strong="H3644"\w* \w thunder|strong="H6963"\w* \w with|strong="H6963"\w* \w a|strong="H3068"\w* \w voice|strong="H6963"\w* \w like|strong="H3644"\w* \w him|strong="H6963"\w*? +\b +\q1 +\v 10 “\w Now|strong="H4994"\w* \w deck|strong="H5710"\w* \w yourself|strong="H3847"\w* \w with|strong="H3847"\w* \w excellency|strong="H1347"\w* \w and|strong="H1935"\w* \w dignity|strong="H1363"\w*. +\q2 \w Array|strong="H3847"\w* \w yourself|strong="H3847"\w* \w with|strong="H3847"\w* \w honor|strong="H1935"\w* \w and|strong="H1935"\w* \w majesty|strong="H1926"\w*. +\q1 +\v 11 \w Pour|strong="H6327"\w* \w out|strong="H7200"\w* \w the|strong="H3605"\w* \w fury|strong="H5678"\w* \w of|strong="H3605"\w* \w your|strong="H3605"\w* \w anger|strong="H5678"\w*. +\q2 \w Look|strong="H7200"\w* \w at|strong="H7200"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3605"\w* \w proud|strong="H1343"\w*, \w and|strong="H7200"\w* \w bring|strong="H8213"\w* \w him|strong="H7200"\w* \w low|strong="H8213"\w*. +\q1 +\v 12 \w Look|strong="H7200"\w* \w at|strong="H7200"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H7563"\w* \w proud|strong="H1343"\w*, \w and|strong="H7200"\w* \w humble|strong="H3665"\w* \w him|strong="H7200"\w*. +\q2 \w Crush|strong="H1915"\w* \w the|strong="H3605"\w* \w wicked|strong="H7563"\w* \w in|strong="H7200"\w* \w their|strong="H3605"\w* \w place|strong="H8478"\w*. +\q1 +\v 13 \w Hide|strong="H2934"\w* \w them|strong="H6440"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w dust|strong="H6083"\w* \w together|strong="H3162"\w*. +\q2 \w Bind|strong="H2280"\w* \w their|strong="H6440"\w* \w faces|strong="H6440"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w hidden|strong="H2934"\w* place. +\q1 +\v 14 \w Then|strong="H1571"\w* \w I|strong="H3588"\w* \w will|strong="H1571"\w* \w also|strong="H1571"\w* admit \w to|strong="H3588"\w* \w you|strong="H3588"\w* +\q2 \w that|strong="H3588"\w* \w your|strong="H3588"\w* own \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w can|strong="H3225"\w* \w save|strong="H3467"\w* \w you|strong="H3588"\w*. +\b +\q1 +\v 15 “\w See|strong="H2009"\w* \w now|strong="H4994"\w* behemoth, \w which|strong="H2682"\w* \w I|strong="H2009"\w* \w made|strong="H6213"\w* \w as|strong="H6213"\w* \w well|strong="H5973"\w* \w as|strong="H6213"\w* \w you|strong="H6213"\w*. +\q2 \w He|strong="H6213"\w* eats \w grass|strong="H2682"\w* \w as|strong="H6213"\w* \w an|strong="H6213"\w* \w ox|strong="H1241"\w*. +\q1 +\v 16 \w Look|strong="H2009"\w* \w now|strong="H4994"\w*, \w his|strong="H2009"\w* \w strength|strong="H3581"\w* \w is|strong="H2009"\w* \w in|strong="H4994"\w* \w his|strong="H2009"\w* thighs. +\q2 \w His|strong="H2009"\w* \w force|strong="H3581"\w* \w is|strong="H2009"\w* \w in|strong="H4994"\w* \w the|strong="H2009"\w* \w muscles|strong="H8306"\w* \w of|strong="H3581"\w* \w his|strong="H2009"\w* belly. +\q1 +\v 17 \w He|strong="H2654"\w* moves \w his|strong="H2654"\w* \w tail|strong="H2180"\w* \w like|strong="H3644"\w* \w a|strong="H3068"\w* cedar. +\q2 \w The|strong="H3644"\w* \w sinews|strong="H1517"\w* \w of|strong="H3644"\w* \w his|strong="H2654"\w* \w thighs|strong="H6344"\w* \w are|strong="H6344"\w* \w knit|strong="H8276"\w* \w together|strong="H8276"\w*. +\q1 +\v 18 His \w bones|strong="H6106"\w* \w are|strong="H6106"\w* like tubes \w of|strong="H6106"\w* \w bronze|strong="H5154"\w*. +\q2 His \w limbs|strong="H1634"\w* \w are|strong="H6106"\w* like \w bars|strong="H4300"\w* \w of|strong="H6106"\w* \w iron|strong="H1270"\w*. +\b +\q1 +\v 19 \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H6213"\w* \w chief|strong="H7225"\w* \w of|strong="H1870"\w* \w the|strong="H6213"\w* \w ways|strong="H1870"\w* \w of|strong="H1870"\w* God. +\q2 \w He|strong="H1931"\w* \w who|strong="H1931"\w* \w made|strong="H6213"\w* \w him|strong="H6213"\w* gives \w him|strong="H6213"\w* \w his|strong="H6213"\w* \w sword|strong="H2719"\w*. +\q1 +\v 20 \w Surely|strong="H3588"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w* produce food \w for|strong="H3588"\w* \w him|strong="H3605"\w*, +\q2 \w where|strong="H8033"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w animals|strong="H2416"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w play|strong="H7832"\w*. +\q1 +\v 21 \w He|strong="H8478"\w* \w lies|strong="H7901"\w* \w under|strong="H8478"\w* \w the|strong="H8478"\w* \w lotus|strong="H6628"\w* \w trees|strong="H6628"\w*, +\q2 \w in|strong="H7901"\w* \w the|strong="H8478"\w* \w covert|strong="H5643"\w* \w of|strong="H8478"\w* \w the|strong="H8478"\w* \w reed|strong="H7070"\w*, \w and|strong="H7901"\w* \w the|strong="H8478"\w* \w marsh|strong="H1207"\w*. +\q1 +\v 22 \w The|strong="H5437"\w* lotuses \w cover|strong="H5526"\w* \w him|strong="H5526"\w* \w with|strong="H5526"\w* \w their|strong="H5437"\w* shade. +\q2 \w The|strong="H5437"\w* \w willows|strong="H6155"\w* \w of|strong="H5158"\w* \w the|strong="H5437"\w* \w brook|strong="H5158"\w* \w surround|strong="H5437"\w* \w him|strong="H5526"\w*. +\q1 +\v 23 \w Behold|strong="H2005"\w*, \w if|strong="H3588"\w* \w a|strong="H3068"\w* \w river|strong="H5104"\w* overflows, \w he|strong="H3588"\w* doesn’t \w tremble|strong="H2648"\w*. +\q2 \w He|strong="H3588"\w* \w is|strong="H6310"\w* confident, \w though|strong="H3588"\w* \w the|strong="H3588"\w* \w Jordan|strong="H3383"\w* swells \w even|strong="H3588"\w* \w to|strong="H6310"\w* \w his|strong="H3588"\w* \w mouth|strong="H6310"\w*. +\q1 +\v 24 \w Shall|strong="H5869"\w* \w any|strong="H3947"\w* \w take|strong="H3947"\w* \w him|strong="H3947"\w* when \w he|strong="H3947"\w* \w is|strong="H5869"\w* \w on|strong="H5869"\w* \w the|strong="H3947"\w* \w watch|strong="H5869"\w*, +\q2 or \w pierce|strong="H5344"\w* \w through|strong="H5344"\w* \w his|strong="H3947"\w* nose \w with|strong="H3947"\w* \w a|strong="H3068"\w* \w snare|strong="H4170"\w*? +\b +\c 41 +\b +\q1 +\v 1 “\w Can|strong="H4758"\w* \w you|strong="H1571"\w* draw \w out|strong="H2904"\w* Leviathan\f + \fr 41:1 \ft Leviathan is a name for a crocodile or similar creature.\f* \w with|strong="H1571"\w* \w a|strong="H3068"\w* fish hook, +\q2 \w or|strong="H1571"\w* press \w down|strong="H2904"\w* \w his|strong="H1571"\w* tongue \w with|strong="H1571"\w* \w a|strong="H3068"\w* cord? +\q1 +\v 2 \w Can|strong="H4310"\w* \w you|strong="H3588"\w* put \w a|strong="H3068"\w* rope into \w his|strong="H6440"\w* nose, +\q2 \w or|strong="H3808"\w* pierce \w his|strong="H6440"\w* jaw \w through|strong="H3588"\w* \w with|strong="H6440"\w* \w a|strong="H3068"\w* hook? +\q1 +\v 3 \w Will|strong="H4310"\w* \w he|strong="H1931"\w* \w make|strong="H7999"\w* many petitions \w to|strong="H8064"\w* \w you|strong="H3605"\w*, +\q2 \w or|strong="H4310"\w* \w will|strong="H4310"\w* \w he|strong="H1931"\w* speak soft words \w to|strong="H8064"\w* \w you|strong="H3605"\w*? +\q1 +\v 4 \w Will|strong="H1697"\w* \w he|strong="H3808"\w* \w make|strong="H2790"\w* \w a|strong="H3068"\w* covenant \w with|strong="H1697"\w* \w you|strong="H3808"\w*, +\q2 \w that|strong="H1697"\w* \w you|strong="H3808"\w* should take \w him|strong="H1697"\w* \w for|strong="H3808"\w* \w a|strong="H3068"\w* servant forever? +\q1 +\v 5 \w Will|strong="H4310"\w* \w you|strong="H6440"\w* play \w with|strong="H6440"\w* \w him|strong="H6440"\w* \w as|strong="H6440"\w* \w with|strong="H6440"\w* \w a|strong="H3068"\w* bird? +\q2 \w Or|strong="H4310"\w* \w will|strong="H4310"\w* \w you|strong="H6440"\w* bind \w him|strong="H6440"\w* \w for|strong="H6440"\w* \w your|strong="H6440"\w* girls? +\q1 +\v 6 \w Will|strong="H4310"\w* traders barter \w for|strong="H6440"\w* \w him|strong="H6440"\w*? +\q2 \w Will|strong="H4310"\w* \w they|strong="H6440"\w* part \w him|strong="H6440"\w* \w among|strong="H4310"\w* \w the|strong="H6440"\w* merchants? +\q1 +\v 7 Can you fill \w his|strong="H5462"\w* skin with barbed irons, +\q2 \w or|strong="H4043"\w* \w his|strong="H5462"\w* head with fish spears? +\q1 +\v 8 Lay \w your|strong="H3808"\w* hand \w on|strong="H3808"\w* him. +\q2 Remember \w the|strong="H5066"\w* battle, \w and|strong="H5066"\w* do \w so|strong="H3808"\w* \w no|strong="H3808"\w* \w more|strong="H3808"\w*. +\q1 +\v 9 \w Behold|strong="H3808"\w*, \w the|strong="H3920"\w* hope \w of|strong="H3808"\w* \w him|strong="H1692"\w* \w is|strong="H3808"\w* \w in|strong="H3808"\w* vain. +\q2 Won’t \w one|strong="H3808"\w* \w be|strong="H3808"\w* cast down \w even|strong="H3808"\w* \w at|strong="H3808"\w* \w the|strong="H3920"\w* sight \w of|strong="H3808"\w* \w him|strong="H1692"\w*? +\b +\q1 +\v 10 None \w is|strong="H5869"\w* so fierce \w that|strong="H5869"\w* he dare stir \w him|strong="H5869"\w* up. +\q2 Who then \w is|strong="H5869"\w* he who \w can|strong="H5869"\w* \w stand|strong="H5869"\w* \w before|strong="H5869"\w* \w me|strong="H5869"\w*? +\q1 +\v 11 \w Who|strong="H1980"\w* \w has|strong="H6310"\w* first given \w to|strong="H1980"\w* \w me|strong="H1980"\w*, \w that|strong="H4422"\w* \w I|strong="H1980"\w* \w should|strong="H1980"\w* repay \w him|strong="H4422"\w*? +\q2 Everything under \w the|strong="H1980"\w* heavens \w is|strong="H6310"\w* mine. +\b +\q1 +\v 12 “\w I|strong="H3318"\w* \w will|strong="H6227"\w* \w not|strong="H3318"\w* keep silence concerning \w his|strong="H3318"\w* limbs, +\q2 nor \w his|strong="H3318"\w* mighty strength, nor \w his|strong="H3318"\w* goodly frame. +\q1 +\v 13 \w Who|strong="H5315"\w* can strip \w off|strong="H3318"\w* \w his|strong="H3318"\w* outer garment? +\q2 \w Who|strong="H5315"\w* \w will|strong="H5315"\w* \w come|strong="H3318"\w* within \w his|strong="H3318"\w* \w jaws|strong="H6310"\w*? +\q1 +\v 14 Who can \w open|strong="H6440"\w* \w the|strong="H6440"\w* doors \w of|strong="H6440"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w*? +\q2 \w Around|strong="H6440"\w* \w his|strong="H6440"\w* teeth \w is|strong="H6440"\w* terror. +\q1 +\v 15 \w Strong|strong="H4651"\w* scales \w are|strong="H1077"\w* \w his|strong="H5921"\w* pride, +\q2 shut \w up|strong="H5921"\w* \w together|strong="H1692"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w close|strong="H1692"\w* seal. +\b +\q1 +\v 16 One \w is|strong="H3820"\w* \w so|strong="H3644"\w* near \w to|strong="H3820"\w* another, +\q2 \w that|strong="H3820"\w* \w no|strong="H3332"\w* air can come between them. +\q1 +\v 17 \w They|strong="H7667"\w* are joined \w to|strong="H1481"\w* one another. +\q2 \w They|strong="H7667"\w* stick \w together|strong="H1481"\w*, so that \w they|strong="H7667"\w* can’t be pulled apart. +\q1 +\v 18 \w His|strong="H6965"\w* sneezing flashes \w out|strong="H6965"\w* light. +\q2 \w His|strong="H6965"\w* eyes \w are|strong="H2719"\w* like \w the|strong="H6965"\w* eyelids \w of|strong="H2719"\w* \w the|strong="H6965"\w* morning. +\q1 +\v 19 \w Out|strong="H2803"\w* \w of|strong="H6086"\w* \w his|strong="H2803"\w* mouth go burning torches. +\q2 Sparks \w of|strong="H6086"\w* fire leap \w out|strong="H2803"\w*. +\q1 +\v 20 \w Out|strong="H3808"\w* \w of|strong="H1121"\w* \w his|strong="H3808"\w* nostrils \w a|strong="H3068"\w* smoke goes, +\q2 \w as|strong="H1121"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* boiling pot \w over|strong="H2015"\w* \w a|strong="H3068"\w* fire \w of|strong="H1121"\w* reeds. +\q1 +\v 21 \w His|strong="H2803"\w* breath kindles coals. +\q2 \w A|strong="H3068"\w* flame goes \w out|strong="H2803"\w* \w of|strong="H2803"\w* \w his|strong="H2803"\w* mouth. +\q1 +\v 22 \w There|strong="H8478"\w* \w is|strong="H2742"\w* strength \w in|strong="H5921"\w* \w his|strong="H5921"\w* neck. +\q2 Terror dances \w before|strong="H5921"\w* \w him|strong="H5921"\w*. +\q1 +\v 23 \w The|strong="H7760"\w* flakes \w of|strong="H3220"\w* \w his|strong="H7760"\w* flesh are joined \w together|strong="H3220"\w*. +\q2 \w They|strong="H7760"\w* are firm \w on|strong="H7760"\w* \w him|strong="H7760"\w*. +\q2 \w They|strong="H7760"\w* \w can|strong="H5518"\w*’t \w be|strong="H3220"\w* moved. +\q1 +\v 24 \w His|strong="H2803"\w* heart \w is|strong="H8415"\w* \w as|strong="H2803"\w* firm \w as|strong="H2803"\w* \w a|strong="H3068"\w* stone, +\q2 yes, firm \w as|strong="H2803"\w* \w the|strong="H2803"\w* lower millstone. +\q1 +\v 25 \w When|strong="H6213"\w* \w he|strong="H6213"\w* raises \w himself|strong="H6213"\w* \w up|strong="H5921"\w*, \w the|strong="H5921"\w* mighty \w are|strong="H6213"\w* afraid. +\q2 \w They|strong="H5921"\w* retreat \w before|strong="H5921"\w* \w his|strong="H5921"\w* thrashing. +\q1 +\v 26 \w If|strong="H7200"\w* \w one|strong="H3605"\w* attacks \w him|strong="H5921"\w* \w with|strong="H5921"\w* \w the|strong="H3605"\w* sword, \w it|strong="H1931"\w* \w can|strong="H7200"\w*’t prevail; +\q2 \w nor|strong="H1121"\w* \w the|strong="H3605"\w* spear, \w the|strong="H3605"\w* dart, \w nor|strong="H1121"\w* \w the|strong="H3605"\w* pointed shaft. +\q1 +\v 27 He counts iron as straw, +\q2 and bronze as rotten wood. +\q1 +\v 28 The arrow can’t make him flee. +\q2 Sling stones are like chaff to him. +\q1 +\v 29 Clubs are counted as stubble. +\q2 He laughs at the rushing of the javelin. +\q1 +\v 30 His undersides are like sharp potsherds, +\q2 leaving \w a|strong="H3068"\w* trail in the mud like \w a|strong="H3068"\w* threshing sledge. +\q1 +\v 31 He makes the deep to boil like \w a|strong="H3068"\w* pot. +\q2 He makes the sea like \w a|strong="H3068"\w* pot of ointment. +\q1 +\v 32 He makes \w a|strong="H3068"\w* path shine after him. +\q2 One would think the deep had white hair. +\q1 +\v 33 On earth there is not his equal, +\q2 that is made without fear. +\q1 +\v 34 He sees everything that is high. +\q2 He is king over all the sons of pride.” +\b +\c 42 +\p +\v 1 \w Then|strong="H6030"\w* Job \w answered|strong="H6030"\w* \w Yahweh|strong="H3068"\w*: +\q1 +\v 2 “\w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w can|strong="H3201"\w* \w do|strong="H3201"\w* \w all|strong="H3605"\w* \w things|strong="H3605"\w*, +\q2 \w and|strong="H3045"\w* \w that|strong="H3588"\w* \w no|strong="H3808"\w* \w purpose|strong="H4209"\w* \w of|strong="H4480"\w* yours \w can|strong="H3201"\w* \w be|strong="H3808"\w* \w restrained|strong="H1219"\w*. +\q1 +\v 3 \w You|strong="H3045"\w* asked, ‘\w Who|strong="H4310"\w* \w is|strong="H2088"\w* \w this|strong="H2088"\w* \w who|strong="H4310"\w* \w hides|strong="H5956"\w* \w counsel|strong="H6098"\w* \w without|strong="H3808"\w* \w knowledge|strong="H1847"\w*?’ +\q2 \w therefore|strong="H3651"\w* \w I|strong="H3651"\w* \w have|strong="H3045"\w* \w uttered|strong="H5046"\w* \w that|strong="H3045"\w* \w which|strong="H4310"\w* \w I|strong="H3651"\w* didn’t \w understand|strong="H3045"\w*, +\q2 \w things|strong="H6381"\w* \w too|strong="H4480"\w* \w wonderful|strong="H6381"\w* \w for|strong="H3045"\w* \w me|strong="H5046"\w*, \w which|strong="H4310"\w* \w I|strong="H3651"\w* didn’t \w know|strong="H3045"\w*. +\q1 +\v 4 \w You|strong="H3045"\w* \w said|strong="H1696"\w*, ‘\w Listen|strong="H8085"\w*, \w now|strong="H4994"\w*, \w and|strong="H8085"\w* \w I|strong="H3045"\w* \w will|strong="H8085"\w* \w speak|strong="H1696"\w*; +\q2 \w I|strong="H3045"\w* \w will|strong="H8085"\w* \w question|strong="H7592"\w* \w you|strong="H3045"\w*, \w and|strong="H8085"\w* \w you|strong="H3045"\w* \w will|strong="H8085"\w* \w answer|strong="H3045"\w* \w me|strong="H4994"\w*.’ +\q1 +\v 5 \w I|strong="H6258"\w* \w had|strong="H5869"\w* \w heard|strong="H8085"\w* \w of|strong="H5869"\w* \w you|strong="H7200"\w* \w by|strong="H7200"\w* \w the|strong="H8085"\w* \w hearing|strong="H8085"\w* \w of|strong="H5869"\w* \w the|strong="H8085"\w* \w ear|strong="H8085"\w*, +\q2 \w but|strong="H7200"\w* \w now|strong="H6258"\w* \w my|strong="H8085"\w* \w eye|strong="H5869"\w* \w sees|strong="H7200"\w* \w you|strong="H7200"\w*. +\q1 +\v 6 \w Therefore|strong="H3651"\w* \w I|strong="H5921"\w* \w abhor|strong="H3988"\w* \w myself|strong="H5162"\w*, +\q2 \w and|strong="H6083"\w* \w repent|strong="H5162"\w* \w in|strong="H5921"\w* \w dust|strong="H6083"\w* \w and|strong="H6083"\w* \w ashes|strong="H6083"\w*.” +\b +\p +\v 7 \w It|strong="H3588"\w* \w was|strong="H3068"\w* \w so|strong="H1961"\w*, \w that|strong="H3588"\w* \w after|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w spoken|strong="H1696"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w* \w to|strong="H1696"\w* \w Job|strong="H3808"\w*, \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* Eliphaz \w the|strong="H3588"\w* \w Temanite|strong="H8489"\w*, “\w My|strong="H3068"\w* wrath \w is|strong="H3068"\w* \w kindled|strong="H2734"\w* \w against|strong="H2734"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w against|strong="H2734"\w* \w your|strong="H3068"\w* \w two|strong="H8147"\w* \w friends|strong="H7453"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* \w spoken|strong="H1696"\w* \w of|strong="H3068"\w* \w me|strong="H1696"\w* \w the|strong="H3588"\w* \w thing|strong="H1697"\w* \w that|strong="H3588"\w* \w is|strong="H3068"\w* \w right|strong="H3559"\w*, \w as|strong="H1697"\w* \w my|strong="H3068"\w* \w servant|strong="H5650"\w* \w Job|strong="H3808"\w* \w has|strong="H3068"\w*. +\v 8 \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w*, \w take|strong="H3947"\w* \w to|strong="H1696"\w* \w yourselves|strong="H5921"\w* \w seven|strong="H7651"\w* \w bulls|strong="H6499"\w* \w and|strong="H3212"\w* \w seven|strong="H7651"\w* rams, \w and|strong="H3212"\w* \w go|strong="H3212"\w* \w to|strong="H1696"\w* \w my|strong="H3947"\w* \w servant|strong="H5650"\w* \w Job|strong="H3808"\w*, \w and|strong="H3212"\w* \w offer|strong="H5927"\w* \w up|strong="H5927"\w* \w for|strong="H3588"\w* \w yourselves|strong="H5921"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*; \w and|strong="H3212"\w* \w my|strong="H3947"\w* \w servant|strong="H5650"\w* \w Job|strong="H3808"\w* \w shall|strong="H5650"\w* \w pray|strong="H6419"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H5650"\w* \w accept|strong="H3947"\w* \w him|strong="H6440"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w not|strong="H3808"\w* \w deal|strong="H6213"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w* \w according|strong="H5921"\w* \w to|strong="H1696"\w* \w your|strong="H3947"\w* \w folly|strong="H5039"\w*. \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H5650"\w* \w not|strong="H3808"\w* \w spoken|strong="H1696"\w* \w of|strong="H6440"\w* \w me|strong="H6440"\w* \w the|strong="H6440"\w* \w thing|strong="H5039"\w* \w that|strong="H3588"\w* \w is|strong="H5650"\w* \w right|strong="H3559"\w*, \w as|strong="H6213"\w* \w my|strong="H3947"\w* \w servant|strong="H5650"\w* \w Job|strong="H3808"\w* \w has|strong="H5650"\w*.” +\p +\v 9 \w So|strong="H6213"\w* Eliphaz \w the|strong="H6440"\w* \w Temanite|strong="H8489"\w* \w and|strong="H3068"\w* \w Bildad|strong="H1085"\w* \w the|strong="H6440"\w* \w Shuhite|strong="H7747"\w* \w and|strong="H3068"\w* \w Zophar|strong="H6691"\w* \w the|strong="H6440"\w* \w Naamathite|strong="H5284"\w* \w went|strong="H3212"\w* \w and|strong="H3068"\w* \w did|strong="H6213"\w* \w what|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H1696"\w* \w them|strong="H6440"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w accepted|strong="H5375"\w* \w Job|strong="H6440"\w*. +\p +\v 10 \w Yahweh|strong="H3068"\w* \w restored|strong="H7725"\w* Job’s prosperity \w when|strong="H7725"\w* \w he|strong="H3068"\w* \w prayed|strong="H6419"\w* \w for|strong="H1157"\w* \w his|strong="H3605"\w* \w friends|strong="H7453"\w*. \w Yahweh|strong="H3068"\w* \w gave|strong="H7725"\w* Job \w twice|strong="H4932"\w* \w as|strong="H3068"\w* \w much|strong="H4932"\w* \w as|strong="H3068"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w* before. +\v 11 \w Then|strong="H5414"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* brothers, \w all|strong="H3605"\w* \w his|strong="H3605"\w* sisters, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w had|strong="H3068"\w* \w been|strong="H3605"\w* \w of|strong="H1004"\w* \w his|strong="H3605"\w* \w acquaintance|strong="H3045"\w* \w before|strong="H6440"\w*, \w came|strong="H3068"\w* \w to|strong="H3068"\w* \w him|strong="H5414"\w* \w and|strong="H3068"\w* ate \w bread|strong="H3899"\w* \w with|strong="H5973"\w* \w him|strong="H5414"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*. \w They|strong="H3068"\w* \w comforted|strong="H5162"\w* \w him|strong="H5414"\w*, \w and|strong="H3068"\w* \w consoled|strong="H5110"\w* \w him|strong="H5414"\w* \w concerning|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w that|strong="H3045"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w brought|strong="H5414"\w* \w on|strong="H5921"\w* \w him|strong="H5414"\w*. \w Everyone|strong="H3605"\w* \w also|strong="H3068"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w a|strong="H3068"\w* \w piece|strong="H7192"\w* \w of|strong="H1004"\w* \w money|strong="H7192"\w*,\f + \fr 42:11 \ft literally, kesitah, a unit of money, probably silver\f* \w and|strong="H3068"\w* \w everyone|strong="H3605"\w* \w a|strong="H3068"\w* \w ring|strong="H5141"\w* \w of|strong="H1004"\w* \w gold|strong="H2091"\w*. +\p +\v 12 \w So|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w blessed|strong="H1288"\w* \w the|strong="H3068"\w* latter end \w of|strong="H3068"\w* Job \w more|strong="H1961"\w* \w than|strong="H3068"\w* \w his|strong="H3068"\w* \w beginning|strong="H7225"\w*. \w He|strong="H3068"\w* \w had|strong="H3068"\w* \w fourteen|strong="H6240"\w* thousand \w sheep|strong="H6629"\w*, \w six|strong="H8337"\w* thousand \w camels|strong="H1581"\w*, \w one|strong="H1961"\w* thousand \w yoke|strong="H6776"\w* \w of|strong="H3068"\w* \w oxen|strong="H1241"\w*, \w and|strong="H3068"\w* \w a|strong="H3068"\w* thousand female donkeys. +\v 13 \w He|strong="H1121"\w* \w had|strong="H1961"\w* \w also|strong="H1121"\w* \w seven|strong="H7658"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w three|strong="H7969"\w* \w daughters|strong="H1323"\w*. +\v 14 \w He|strong="H7121"\w* \w called|strong="H7121"\w* \w the|strong="H7121"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w the|strong="H7121"\w* first, \w Jemimah|strong="H3224"\w*; \w and|strong="H8034"\w* \w the|strong="H7121"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w the|strong="H7121"\w* \w second|strong="H8145"\w*, \w Keziah|strong="H7103"\w*; \w and|strong="H8034"\w* \w the|strong="H7121"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w the|strong="H7121"\w* \w third|strong="H7992"\w*, Keren Happuch. +\v 15 \w In|strong="H8432"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H5159"\w* \w were|strong="H1992"\w* \w no|strong="H3808"\w* \w women|strong="H1323"\w* \w found|strong="H4672"\w* \w so|strong="H5414"\w* \w beautiful|strong="H3303"\w* \w as|strong="H3303"\w* \w the|strong="H3605"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w Job|strong="H3808"\w*. \w Their|strong="H3605"\w* father \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w an|strong="H5414"\w* \w inheritance|strong="H5159"\w* \w among|strong="H8432"\w* \w their|strong="H3605"\w* brothers. +\v 16 \w After|strong="H7200"\w* \w this|strong="H2063"\w* Job \w lived|strong="H2421"\w* \w one|strong="H2421"\w* \w hundred|strong="H3967"\w* forty \w years|strong="H8141"\w*, \w and|strong="H3967"\w* \w saw|strong="H7200"\w* \w his|strong="H7200"\w* \w sons|strong="H1121"\w*, \w and|strong="H3967"\w* \w his|strong="H7200"\w* \w sons|strong="H1121"\w*’ \w sons|strong="H1121"\w*, \w to|strong="H1121"\w* four \w generations|strong="H1755"\w*. +\v 17 \w So|strong="H4191"\w* Job \w died|strong="H4191"\w*, being \w old|strong="H2205"\w* \w and|strong="H3117"\w* \w full|strong="H3117"\w* \w of|strong="H3117"\w* \w days|strong="H3117"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/20-PSAeng-web.usfm b/bibles/eng-web_usfm/20-PSAeng-web.usfm new file mode 100644 index 0000000..a486a19 --- /dev/null +++ b/bibles/eng-web_usfm/20-PSAeng-web.usfm @@ -0,0 +1,8334 @@ +\id PSA World English Bible (WEB) +\ide UTF-8 +\h Psalms +\toc1 The Psalms +\toc2 Psalms +\toc3 Psa +\mt1 The Psalms +\cl Psalm +\c 1 +\ms1 BOOK 1 +\q1 +\v 1 Blessed \w is|strong="H1870"\w* \w the|strong="H1870"\w* \w man|strong="H7563"\w* \w who|strong="H3427"\w* doesn’t \w walk|strong="H1980"\w* \w in|strong="H3427"\w* \w the|strong="H1870"\w* \w counsel|strong="H6098"\w* \w of|strong="H3427"\w* \w the|strong="H1870"\w* \w wicked|strong="H7563"\w*, +\q2 \w nor|strong="H3808"\w* \w stand|strong="H5975"\w* \w on|strong="H1980"\w* \w the|strong="H1870"\w* \w path|strong="H1870"\w* \w of|strong="H3427"\w* \w sinners|strong="H2400"\w*, +\q2 \w nor|strong="H3808"\w* \w sit|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H1870"\w* \w seat|strong="H4186"\w* \w of|strong="H3427"\w* scoffers; +\q1 +\v 2 \w but|strong="H3588"\w* \w his|strong="H3068"\w* \w delight|strong="H2656"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s\f + \fr 1:2 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w law|strong="H8451"\w*. +\q2 \w On|strong="H3068"\w* \w his|strong="H3068"\w* \w law|strong="H8451"\w* \w he|strong="H3588"\w* \w meditates|strong="H1897"\w* \w day|strong="H3119"\w* \w and|strong="H3068"\w* \w night|strong="H3915"\w*. +\q1 +\v 3 \w He|strong="H6213"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w tree|strong="H6086"\w* \w planted|strong="H8362"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w streams|strong="H6388"\w* \w of|strong="H4325"\w* \w water|strong="H4325"\w*, +\q2 \w that|strong="H3605"\w* \w produces|strong="H5414"\w* \w its|strong="H3605"\w* \w fruit|strong="H6529"\w* \w in|strong="H5921"\w* \w its|strong="H3605"\w* \w season|strong="H6256"\w*, +\q2 \w whose|strong="H3605"\w* \w leaf|strong="H5929"\w* \w also|strong="H6213"\w* \w does|strong="H6213"\w* \w not|strong="H3808"\w* \w wither|strong="H5034"\w*. +\q2 \w Whatever|strong="H3605"\w* \w he|strong="H6213"\w* \w does|strong="H6213"\w* \w shall|strong="H3808"\w* \w prosper|strong="H6743"\w*. +\q1 +\v 4 \w The|strong="H3588"\w* \w wicked|strong="H7563"\w* \w are|strong="H7563"\w* \w not|strong="H3808"\w* \w so|strong="H3651"\w*, +\q2 \w but|strong="H3588"\w* \w are|strong="H7563"\w* \w like|strong="H3651"\w* \w the|strong="H3588"\w* \w chaff|strong="H4671"\w* \w which|strong="H7307"\w* \w the|strong="H3588"\w* \w wind|strong="H7307"\w* \w drives|strong="H5086"\w* \w away|strong="H5086"\w*. +\q1 +\v 5 \w Therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w wicked|strong="H7563"\w* \w shall|strong="H5712"\w* \w not|strong="H3808"\w* \w stand|strong="H6965"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w judgment|strong="H4941"\w*, +\q2 \w nor|strong="H3808"\w* \w sinners|strong="H2400"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w congregation|strong="H5712"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w righteous|strong="H6662"\w*. +\q1 +\v 6 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w knows|strong="H3045"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w righteous|strong="H6662"\w*, +\q2 \w but|strong="H3588"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w* \w shall|strong="H3068"\w* perish. +\c 2 +\q1 +\v 1 \w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w the|strong="H4100"\w* \w nations|strong="H1471"\w* \w rage|strong="H7283"\w*, +\q2 \w and|strong="H1471"\w* \w the|strong="H4100"\w* \w peoples|strong="H3816"\w* plot \w a|strong="H3068"\w* \w vain|strong="H7385"\w* \w thing|strong="H7385"\w*? +\q1 +\v 2 \w The|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* earth \w take|strong="H3320"\w* \w a|strong="H3068"\w* \w stand|strong="H3320"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w rulers|strong="H7336"\w* \w take|strong="H3320"\w* \w counsel|strong="H3245"\w* \w together|strong="H3162"\w*, +\q2 \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w against|strong="H5921"\w* \w his|strong="H3068"\w* \w Anointed|strong="H4899"\w*,\f + \fr 2:2 \ft The word “Anointed” is the same as the word for “Messiah” or “Christ”\f* saying, +\q1 +\v 3 “Let’s \w break|strong="H5423"\w* \w their|strong="H7993"\w* \w bonds|strong="H4147"\w* \w apart|strong="H5423"\w*, +\q2 \w and|strong="H4480"\w* \w cast|strong="H7993"\w* \w their|strong="H7993"\w* \w cords|strong="H5688"\w* \w from|strong="H4480"\w* \w us|strong="H4480"\w*.” +\q1 +\v 4 \w He|strong="H8064"\w* \w who|strong="H3427"\w* \w sits|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3427"\w* \w heavens|strong="H8064"\w* \w will|strong="H8064"\w* \w laugh|strong="H7832"\w*. +\q2 \w The|strong="H3427"\w* Lord\f + \fr 2:4 \ft The word translated “Lord” is “Adonai.”\f* \w will|strong="H8064"\w* have \w them|strong="H3427"\w* \w in|strong="H3427"\w* \w derision|strong="H3932"\w*. +\q1 +\v 5 \w Then|strong="H1696"\w* \w he|strong="H1696"\w* will \w speak|strong="H1696"\w* \w to|strong="H1696"\w* them \w in|strong="H1696"\w* \w his|strong="H1696"\w* \w anger|strong="H2740"\w*, +\q2 \w and|strong="H1696"\w* terrify them \w in|strong="H1696"\w* \w his|strong="H1696"\w* \w wrath|strong="H2740"\w*: +\q1 +\v 6 “\w Yet|strong="H5921"\w* \w I|strong="H5921"\w* \w have|strong="H4428"\w* \w set|strong="H5258"\w* \w my|strong="H5921"\w* \w King|strong="H4428"\w* \w on|strong="H5921"\w* \w my|strong="H5921"\w* \w holy|strong="H6944"\w* \w hill|strong="H2022"\w* \w of|strong="H4428"\w* \w Zion|strong="H6726"\w*.” +\q2 +\v 7 \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w tell|strong="H5608"\w* \w of|strong="H1121"\w* \w the|strong="H3205"\w* \w decree|strong="H2706"\w*: +\q1 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w me|strong="H3205"\w*, “\w You|strong="H3117"\w* \w are|strong="H3117"\w* \w my|strong="H3068"\w* \w son|strong="H1121"\w*. +\q2 \w Today|strong="H3117"\w* \w I|strong="H3117"\w* \w have|strong="H3068"\w* \w become|strong="H3205"\w* \w your|strong="H3068"\w* \w father|strong="H3205"\w*. +\q1 +\v 8 \w Ask|strong="H7592"\w* \w of|strong="H4480"\w* \w me|strong="H5414"\w*, \w and|strong="H1471"\w* \w I|strong="H5414"\w* \w will|strong="H1471"\w* \w give|strong="H5414"\w* \w the|strong="H5414"\w* \w nations|strong="H1471"\w* \w for|strong="H7592"\w* \w your|strong="H5414"\w* \w inheritance|strong="H5159"\w*, +\q2 \w the|strong="H5414"\w* uttermost parts \w of|strong="H4480"\w* \w the|strong="H5414"\w* earth \w for|strong="H7592"\w* \w your|strong="H5414"\w* \w possession|strong="H5159"\w*. +\q1 +\v 9 \w You|strong="H7489"\w* \w shall|strong="H7626"\w* \w break|strong="H7489"\w* \w them|strong="H1270"\w* \w with|strong="H3627"\w* \w a|strong="H3068"\w* \w rod|strong="H7626"\w* \w of|strong="H7626"\w* \w iron|strong="H1270"\w*. +\q2 \w You|strong="H7489"\w* \w shall|strong="H7626"\w* \w dash|strong="H5310"\w* \w them|strong="H1270"\w* \w in|strong="H7489"\w* \w pieces|strong="H5310"\w* like \w a|strong="H3068"\w* \w potter|strong="H3335"\w*’s \w vessel|strong="H3627"\w*.” +\q1 +\v 10 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w be|strong="H4428"\w* \w wise|strong="H7919"\w*, \w you|strong="H3256"\w* \w kings|strong="H4428"\w*. +\q2 \w Be|strong="H4428"\w* \w instructed|strong="H3256"\w*, \w you|strong="H3256"\w* \w judges|strong="H8199"\w* \w of|strong="H4428"\w* \w the|strong="H8199"\w* earth. +\q1 +\v 11 \w Serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w fear|strong="H3374"\w*, +\q2 \w and|strong="H3068"\w* \w rejoice|strong="H1523"\w* \w with|strong="H3068"\w* \w trembling|strong="H7461"\w*. +\q1 +\v 12 Give sincere \w homage|strong="H5401"\w* \w to|strong="H1870"\w* \w the|strong="H3605"\w* \w Son|strong="H1248"\w*,\f + \fr 2:12 \ft or, Kiss the son\f* \w lest|strong="H6435"\w* \w he|strong="H3588"\w* \w be|strong="H1870"\w* angry, \w and|strong="H1870"\w* \w you|strong="H3588"\w* perish \w on|strong="H1870"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3605"\w* wrath \w will|strong="H3588"\w* \w soon|strong="H4592"\w* \w be|strong="H1870"\w* \w kindled|strong="H1197"\w*. +\q2 Blessed \w are|strong="H1870"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w take|strong="H2620"\w* \w refuge|strong="H2620"\w* \w in|strong="H1870"\w* \w him|strong="H3605"\w*. +\c 3 +\d A Psalm by David, when he fled from Absalom his son. +\q1 +\v 1 \w Yahweh|strong="H3068"\w*, how \w my|strong="H1732"\w* adversaries \w have|strong="H1121"\w* increased! +\q2 Many \w are|strong="H1121"\w* \w those|strong="H1121"\w* \w who|strong="H1121"\w* rise \w up|strong="H1121"\w* \w against|strong="H6440"\w* \w me|strong="H6440"\w*. +\q1 +\v 2 \w Many|strong="H7227"\w* \w there|strong="H3068"\w* \w are|strong="H4100"\w* \w who|strong="H3068"\w* say \w of|strong="H3068"\w* \w my|strong="H3068"\w* soul, +\q2 “\w There|strong="H3068"\w* \w is|strong="H3068"\w* \w no|strong="H6965"\w* \w help|strong="H6965"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w* \w in|strong="H5921"\w* \w God|strong="H3068"\w*.”\f + \fr 3:2 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \qs Selah.\qs* +\q1 +\v 3 \w But|strong="H7227"\w* \w you|strong="H5315"\w*, \w Yahweh|strong="H3068"\w*, \w are|strong="H7227"\w* \w a|strong="H3068"\w* shield around \w me|strong="H5315"\w*, +\q2 \w my|strong="H5315"\w* glory, \w and|strong="H5315"\w* \w the|strong="H3444"\w* \w one|strong="H7227"\w* \w who|strong="H5315"\w* lifts up \w my|strong="H5315"\w* head. +\q1 +\v 4 \w I|strong="H3068"\w* cry \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w my|strong="H3068"\w* voice, +\q2 \w and|strong="H3068"\w* \w he|strong="H3068"\w* answers \w me|strong="H7311"\w* out \w of|strong="H3068"\w* \w his|strong="H3068"\w* holy hill. \qs Selah.\qs* +\q1 +\v 5 \w I|strong="H3068"\w* laid myself \w down|strong="H7121"\w* \w and|strong="H3068"\w* slept. +\q2 \w I|strong="H3068"\w* awakened, \w for|strong="H7121"\w* \w Yahweh|strong="H3068"\w* sustains \w me|strong="H6963"\w*. +\q1 +\v 6 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3588"\w* \w be|strong="H3068"\w* afraid \w of|strong="H3068"\w* tens \w of|strong="H3068"\w* thousands \w of|strong="H3068"\w* people +\q2 \w who|strong="H3068"\w* \w have|strong="H3068"\w* \w set|strong="H5564"\w* themselves \w against|strong="H3068"\w* \w me|strong="H5564"\w* \w on|strong="H3068"\w* \w every|strong="H3068"\w* side. +\q1 +\v 7 Arise, \w Yahweh|strong="H3068"\w*! +\q2 Save \w me|strong="H5921"\w*, \w my|strong="H5921"\w* \w God|strong="H3808"\w*! +\q1 \w For|strong="H5921"\w* \w you|strong="H5921"\w* \w have|strong="H5971"\w* struck \w all|strong="H5439"\w* \w of|strong="H5971"\w* \w my|strong="H5921"\w* enemies \w on|strong="H5921"\w* \w the|strong="H5921"\w* cheek bone. +\q2 \w You|strong="H5921"\w* \w have|strong="H5971"\w* broken \w the|strong="H5921"\w* teeth \w of|strong="H5971"\w* \w the|strong="H5921"\w* wicked. +\q1 +\v 8 \w Salvation|strong="H3467"\w* belongs \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w May|strong="H3068"\w* \w your|strong="H3068"\w* blessing \w be|strong="H3068"\w* \w on|strong="H3068"\w* \w your|strong="H3068"\w* \w people|strong="H7563"\w*. \qs Selah.\qs* +\c 4 +\d For the Chief Musician; on stringed instruments. A Psalm by David. +\q1 +\v 1 Answer me when I call, God \w of|strong="H4210"\w* \w my|strong="H1732"\w* righteousness. +\q2 Give me relief from \w my|strong="H1732"\w* distress. +\q2 \w Have|strong="H1732"\w* mercy \w on|strong="H5329"\w* me, \w and|strong="H1732"\w* hear \w my|strong="H1732"\w* prayer. +\q1 +\v 2 \w You|strong="H7121"\w* sons \w of|strong="H8085"\w* \w men|strong="H7121"\w*, \w how|strong="H8085"\w* \w long|strong="H8085"\w* \w shall|strong="H6664"\w* \w my|strong="H8085"\w* glory \w be|strong="H2603"\w* turned into dishonor? +\q2 \w Will|strong="H8085"\w* \w you|strong="H7121"\w* love vanity \w and|strong="H6030"\w* seek \w after|strong="H7121"\w* falsehood? \qs Selah.\qs* +\q1 +\v 3 \w But|strong="H4100"\w* know \w that|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H4100"\w* \w set|strong="H1245"\w* apart \w for|strong="H5704"\w* \w himself|strong="H1245"\w* \w him|strong="H1245"\w* \w who|strong="H1121"\w* \w is|strong="H4100"\w* godly; +\q2 \w Yahweh|strong="H3068"\w* \w will|strong="H1121"\w* hear \w when|strong="H5704"\w* \w I|strong="H5704"\w* call \w to|strong="H5704"\w* \w him|strong="H1245"\w*. +\q1 +\v 4 Stand \w in|strong="H3068"\w* awe, \w and|strong="H3068"\w* don’t sin. +\q2 Search \w your|strong="H3068"\w* own \w heart|strong="H8085"\w* \w on|strong="H3068"\w* \w your|strong="H3068"\w* bed, \w and|strong="H3068"\w* \w be|strong="H3068"\w* \w still|strong="H3588"\w*. \qs Selah.\qs* +\q1 +\v 5 Offer \w the|strong="H5921"\w* sacrifices \w of|strong="H5921"\w* righteousness. +\q2 Put \w your|strong="H5921"\w* trust \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 6 Many say, “\w Who|strong="H3068"\w* \w will|strong="H3068"\w* show us any good?” +\q2 \w Yahweh|strong="H3068"\w*, let \w the|strong="H3068"\w* light \w of|strong="H3068"\w* \w your|strong="H3068"\w* face shine \w on|strong="H3068"\w* us. +\q1 +\v 7 \w You|strong="H6440"\w* \w have|strong="H3068"\w* \w put|strong="H3068"\w* gladness \w in|strong="H5921"\w* \w my|strong="H3068"\w* heart, +\q2 \w more|strong="H7227"\w* \w than|strong="H2896"\w* \w when|strong="H7200"\w* \w their|strong="H3068"\w* grain \w and|strong="H3068"\w* \w their|strong="H3068"\w* new wine \w are|strong="H3068"\w* \w increased|strong="H7227"\w*. +\q1 +\v 8 \w In|strong="H5414"\w* peace \w I|strong="H5414"\w* \w will|strong="H3820"\w* both \w lay|strong="H5414"\w* \w myself|strong="H3820"\w* \w down|strong="H5414"\w* \w and|strong="H8057"\w* sleep, +\q2 \w for|strong="H6256"\w* \w you|strong="H5414"\w* alone, \w Yahweh|strong="H3068"\w*, \w make|strong="H5414"\w* \w me|strong="H5414"\w* live \w in|strong="H5414"\w* safety. +\c 5 +\d For the Chief Musician, with the flutes. A Psalm by David. +\q1 +\v 1 Give ear \w to|strong="H1732"\w* \w my|strong="H1732"\w* words, \w Yahweh|strong="H3068"\w*. +\q2 Consider \w my|strong="H1732"\w* meditation. +\q1 +\v 2 Listen \w to|strong="H3068"\w* \w the|strong="H3068"\w* voice \w of|strong="H3068"\w* \w my|strong="H3068"\w* cry, \w my|strong="H3068"\w* King \w and|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 \w for|strong="H3068"\w* \w I|strong="H3068"\w* pray \w to|strong="H3068"\w* you. +\q1 +\v 3 \w Yahweh|strong="H3068"\w*, \w in|strong="H4428"\w* \w the|strong="H3588"\w* morning \w you|strong="H3588"\w* \w will|strong="H4428"\w* \w hear|strong="H7181"\w* \w my|strong="H3588"\w* \w voice|strong="H6963"\w*. +\q2 \w In|strong="H4428"\w* \w the|strong="H3588"\w* morning \w I|strong="H3588"\w* \w will|strong="H4428"\w* lay \w my|strong="H3588"\w* requests before \w you|strong="H3588"\w*, \w and|strong="H4428"\w* \w will|strong="H4428"\w* watch expectantly. +\q1 +\v 4 \w For|strong="H3068"\w* \w you|strong="H6963"\w* \w are|strong="H3068"\w* \w not|strong="H8085"\w* \w a|strong="H3068"\w* \w God|strong="H3068"\w* \w who|strong="H3068"\w* \w has|strong="H3068"\w* pleasure \w in|strong="H3068"\w* wickedness. +\q2 Evil can’t live \w with|strong="H3068"\w* \w you|strong="H6963"\w*. +\q1 +\v 5 \w The|strong="H3588"\w* arrogant \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w stand|strong="H1481"\w* \w in|strong="H1481"\w* \w your|strong="H3588"\w* sight. +\q2 \w You|strong="H3588"\w* hate all workers \w of|strong="H7451"\w* \w iniquity|strong="H7562"\w*. +\q1 +\v 6 \w You|strong="H3605"\w* \w will|strong="H5869"\w* \w destroy|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* speak lies. +\q2 \w Yahweh|strong="H3068"\w* abhors \w the|strong="H3605"\w* bloodthirsty \w and|strong="H5869"\w* deceitful \w man|strong="H3605"\w*. +\q1 +\v 7 \w But|strong="H1696"\w* \w as|strong="H3068"\w* \w for|strong="H3068"\w* \w me|strong="H1696"\w*, \w in|strong="H3068"\w* \w the|strong="H3068"\w* abundance \w of|strong="H3068"\w* \w your|strong="H3068"\w* loving kindness \w I|strong="H3068"\w* \w will|strong="H3068"\w* come into \w your|strong="H3068"\w* house. +\q2 \w I|strong="H3068"\w* \w will|strong="H3068"\w* bow \w toward|strong="H3068"\w* \w your|strong="H3068"\w* holy temple \w in|strong="H3068"\w* reverence \w of|strong="H3068"\w* \w you|strong="H1696"\w*. +\q1 +\v 8 Lead \w me|strong="H1004"\w*, \w Yahweh|strong="H3068"\w*, \w in|strong="H1004"\w* \w your|strong="H1004"\w* \w righteousness|strong="H2617"\w* \w because|strong="H7230"\w* \w of|strong="H1004"\w* \w my|strong="H7230"\w* enemies. +\q2 Make \w your|strong="H1004"\w* way straight before \w my|strong="H7230"\w* face. +\q1 +\v 9 \w For|strong="H6440"\w* \w there|strong="H3068"\w* \w is|strong="H3068"\w* \w no|strong="H6440"\w* faithfulness \w in|strong="H3068"\w* \w their|strong="H3068"\w* \w mouth|strong="H6440"\w*. +\q2 \w Their|strong="H3068"\w* heart \w is|strong="H3068"\w* destruction. +\q2 \w Their|strong="H3068"\w* throat \w is|strong="H3068"\w* \w an|strong="H6440"\w* \w open|strong="H6440"\w* tomb. +\q2 \w They|strong="H3068"\w* flatter \w with|strong="H3068"\w* \w their|strong="H3068"\w* tongue. +\q1 +\v 10 Hold \w them|strong="H3588"\w* guilty, God. +\q2 Let \w them|strong="H3588"\w* fall \w by|strong="H3559"\w* \w their|strong="H3588"\w* own counsels. +\q1 Thrust \w them|strong="H3588"\w* \w out|strong="H2505"\w* \w in|strong="H7130"\w* \w the|strong="H3588"\w* multitude \w of|strong="H6310"\w* \w their|strong="H3588"\w* transgressions, +\q2 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3588"\w* rebelled \w against|strong="H3956"\w* \w you|strong="H3588"\w*. +\q1 +\v 11 \w But|strong="H3588"\w* let \w all|strong="H7230"\w* \w those|strong="H3588"\w* \w who|strong="H3588"\w* take refuge \w in|strong="H5307"\w* \w you|strong="H3588"\w* rejoice. +\q2 Let \w them|strong="H5307"\w* always shout \w for|strong="H3588"\w* joy, \w because|strong="H3588"\w* \w you|strong="H3588"\w* defend \w them|strong="H5307"\w*. +\q1 Let \w them|strong="H5307"\w* \w also|strong="H3588"\w* \w who|strong="H3588"\w* love \w your|strong="H3588"\w* name \w be|strong="H3588"\w* joyful \w in|strong="H5307"\w* \w you|strong="H3588"\w*. +\q2 +\v 12 \w For|strong="H5921"\w* \w you|strong="H3605"\w* \w will|strong="H8034"\w* bless \w the|strong="H3605"\w* righteous. +\q1 \w Yahweh|strong="H3068"\w*, \w you|strong="H3605"\w* \w will|strong="H8034"\w* surround \w him|strong="H5921"\w* \w with|strong="H5921"\w* favor \w as|strong="H3605"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* shield. +\c 6 +\d For the Chief Musician; on stringed instruments, upon the eight-stringed lyre. A Psalm by David. +\q1 +\v 1 \w Yahweh|strong="H3068"\w*, don’t rebuke \w me|strong="H5921"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* anger, +\q2 neither discipline \w me|strong="H5921"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* wrath. +\q1 +\v 2 \w Have|strong="H3068"\w* \w mercy|strong="H3068"\w* \w on|strong="H3068"\w* \w me|strong="H3256"\w*, \w Yahweh|strong="H3068"\w*, \w for|strong="H3068"\w* \w I|strong="H3068"\w* \w am|strong="H3068"\w* faint. +\q2 \w Yahweh|strong="H3068"\w*, heal \w me|strong="H3256"\w*, \w for|strong="H3068"\w* \w my|strong="H3068"\w* bones \w are|strong="H3068"\w* troubled. +\q1 +\v 3 \w My|strong="H3068"\w* soul \w is|strong="H3068"\w* \w also|strong="H3068"\w* \w in|strong="H3068"\w* great anguish. +\q2 \w But|strong="H3588"\w* \w you|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*—\w how|strong="H3588"\w* long? +\q1 +\v 4 Return, \w Yahweh|strong="H3068"\w*. Deliver \w my|strong="H3068"\w* \w soul|strong="H5315"\w*, +\q2 \w and|strong="H3068"\w* \w save|strong="H5315"\w* \w me|strong="H5315"\w* \w for|strong="H5704"\w* \w your|strong="H3068"\w* loving kindness’ sake. +\q1 +\v 5 \w For|strong="H3068"\w* \w in|strong="H3068"\w* \w death|strong="H5315"\w* \w there|strong="H7725"\w* \w is|strong="H3068"\w* no memory \w of|strong="H3068"\w* \w you|strong="H7725"\w*. +\q2 \w In|strong="H3068"\w* Sheol,\f + \fr 6:5 \ft Sheol is the place of the dead.\f* \w who|strong="H3068"\w* \w shall|strong="H3068"\w* \w give|strong="H7725"\w* \w you|strong="H7725"\w* thanks? +\q1 +\v 6 \w I|strong="H3588"\w* am weary \w with|strong="H7585"\w* \w my|strong="H3588"\w* groaning. +\q2 \w Every|strong="H3588"\w* night \w I|strong="H3588"\w* flood \w my|strong="H3588"\w* bed. +\q2 \w I|strong="H3588"\w* drench \w my|strong="H3588"\w* couch \w with|strong="H7585"\w* \w my|strong="H3588"\w* tears. +\q1 +\v 7 \w My|strong="H3605"\w* eye wastes \w away|strong="H3605"\w* \w because|strong="H3605"\w* \w of|strong="H3605"\w* grief. +\q2 \w It|strong="H3915"\w* grows old \w because|strong="H3605"\w* \w of|strong="H3605"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* adversaries. +\q1 +\v 8 Depart \w from|strong="H5869"\w* \w me|strong="H5869"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* workers \w of|strong="H5869"\w* iniquity, +\q2 \w for|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H5869"\w* heard \w the|strong="H3605"\w* voice \w of|strong="H5869"\w* \w my|strong="H3605"\w* weeping. +\q1 +\v 9 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w heard|strong="H8085"\w* \w my|strong="H8085"\w* supplication. +\q2 \w Yahweh|strong="H3068"\w* accepts \w my|strong="H8085"\w* prayer. +\q1 +\v 10 \w May|strong="H3068"\w* \w all|strong="H3947"\w* \w my|strong="H8085"\w* enemies \w be|strong="H3068"\w* ashamed \w and|strong="H3068"\w* dismayed. +\q2 \w They|strong="H3068"\w* \w shall|strong="H3068"\w* turn \w back|strong="H3947"\w*, \w they|strong="H3068"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* disgraced suddenly. +\c 7 +\d A meditation by David, which he sang to Yahweh, concerning the words of Cush, the Benjamite. +\q1 +\v 1 \w Yahweh|strong="H3068"\w*, \w my|strong="H3068"\w* \w God|strong="H3068"\w*, \w I|strong="H5921"\w* take refuge \w in|strong="H5921"\w* \w you|strong="H5921"\w*. +\q2 Save \w me|strong="H5921"\w* \w from|strong="H5921"\w* \w all|strong="H1697"\w* \w those|strong="H5921"\w* \w who|strong="H3068"\w* pursue \w me|strong="H5921"\w*, \w and|strong="H3068"\w* deliver \w me|strong="H5921"\w*, +\q1 +\v 2 lest \w they|strong="H3068"\w* tear apart \w my|strong="H3605"\w* soul \w like|strong="H3068"\w* \w a|strong="H3068"\w* lion, +\q2 ripping \w it|strong="H3068"\w* \w in|strong="H3068"\w* pieces, while \w there|strong="H3605"\w* \w is|strong="H3068"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w to|strong="H3068"\w* \w deliver|strong="H5337"\w*. +\q1 +\v 3 \w Yahweh|strong="H3068"\w*, \w my|strong="H5337"\w* God, \w if|strong="H6435"\w* \w I|strong="H5315"\w* \w have|strong="H5337"\w* done this, +\q2 \w if|strong="H6435"\w* there \w is|strong="H5315"\w* iniquity \w in|strong="H5315"\w* \w my|strong="H5337"\w* hands, +\q1 +\v 4 \w if|strong="H3426"\w* \w I|strong="H3068"\w* \w have|strong="H3426"\w* rewarded \w evil|strong="H6213"\w* \w to|strong="H3068"\w* \w him|strong="H6213"\w* \w who|strong="H3068"\w* \w was|strong="H3068"\w* \w at|strong="H3068"\w* \w peace|strong="H6213"\w* \w with|strong="H3068"\w* \w me|strong="H6213"\w* +\q2 (yes, \w I|strong="H3068"\w* \w have|strong="H3426"\w* plundered \w him|strong="H6213"\w* \w who|strong="H3068"\w* \w without|strong="H6213"\w* \w cause|strong="H6213"\w* \w was|strong="H3068"\w* \w my|strong="H3068"\w* adversary), +\q2 +\v 5 let \w the|strong="H7999"\w* \w enemy|strong="H6887"\w* pursue \w my|strong="H7999"\w* soul, \w and|strong="H7451"\w* overtake \w it|strong="H7999"\w*; +\q1 yes, let \w him|strong="H1580"\w* tread \w my|strong="H7999"\w* life down \w to|strong="H7451"\w* \w the|strong="H7999"\w* earth, +\q2 \w and|strong="H7451"\w* lay \w my|strong="H7999"\w* glory \w in|strong="H7451"\w* \w the|strong="H7999"\w* dust. \qs Selah.\qs* +\q1 +\v 6 Arise, \w Yahweh|strong="H3068"\w*, \w in|strong="H7931"\w* \w your|strong="H7291"\w* anger. +\q2 Lift \w up|strong="H7931"\w* \w yourself|strong="H5315"\w* against \w the|strong="H7291"\w* rage \w of|strong="H5315"\w* \w my|strong="H7291"\w* adversaries. +\q1 Awake \w for|strong="H5315"\w* \w me|strong="H5315"\w*. \w You|strong="H5315"\w* \w have|strong="H7429"\w* commanded judgment. +\q2 +\v 7 Let \w the|strong="H5375"\w* congregation \w of|strong="H3068"\w* \w the|strong="H5375"\w* peoples surround \w you|strong="H6680"\w*. +\q2 \w Rule|strong="H4941"\w* \w over|strong="H3068"\w* \w them|strong="H6680"\w* \w on|strong="H3068"\w* \w high|strong="H5375"\w*. +\q1 +\v 8 \w Yahweh|strong="H3068"\w* administers judgment \w to|strong="H7725"\w* \w the|strong="H5921"\w* \w peoples|strong="H3816"\w*. +\q2 Judge \w me|strong="H7725"\w*, \w Yahweh|strong="H3068"\w*, \w according|strong="H5921"\w* \w to|strong="H7725"\w* \w my|strong="H5921"\w* righteousness, +\q2 \w and|strong="H7725"\w* \w to|strong="H7725"\w* \w my|strong="H5921"\w* integrity \w that|strong="H7725"\w* \w is|strong="H4791"\w* \w in|strong="H5921"\w* \w me|strong="H7725"\w*. +\q1 +\v 9 Oh let \w the|strong="H5921"\w* wickedness \w of|strong="H3068"\w* \w the|strong="H5921"\w* wicked \w come|strong="H5971"\w* \w to|strong="H3068"\w* \w an|strong="H3068"\w* end, +\q2 \w but|strong="H5971"\w* establish \w the|strong="H5921"\w* \w righteous|strong="H6664"\w*; +\q2 \w their|strong="H3068"\w* minds \w and|strong="H3068"\w* hearts \w are|strong="H5971"\w* searched \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w righteous|strong="H6664"\w* \w God|strong="H3068"\w*. +\q1 +\v 10 \w My|strong="H3559"\w* shield \w is|strong="H7563"\w* \w with|strong="H6662"\w* God, +\q2 \w who|strong="H6662"\w* saves \w the|strong="H3559"\w* upright \w in|strong="H3559"\w* \w heart|strong="H3826"\w*. +\q1 +\v 11 God \w is|strong="H3820"\w* \w a|strong="H3068"\w* \w righteous|strong="H3477"\w* judge, +\q2 yes, \w a|strong="H3068"\w* God \w who|strong="H3477"\w* \w has|strong="H3820"\w* indignation every day. +\q1 +\v 12 If \w a|strong="H3068"\w* \w man|strong="H6662"\w* doesn’t repent, \w he|strong="H3117"\w* \w will|strong="H6662"\w* sharpen \w his|strong="H3605"\w* sword; +\q2 \w he|strong="H3117"\w* \w has|strong="H3117"\w* bent \w and|strong="H3117"\w* strung \w his|strong="H3605"\w* bow. +\q1 +\v 13 \w He|strong="H3808"\w* \w has|strong="H2719"\w* also \w prepared|strong="H3559"\w* \w for|strong="H3559"\w* \w himself|strong="H3808"\w* \w the|strong="H7725"\w* instruments \w of|strong="H2719"\w* death. +\q2 \w He|strong="H3808"\w* \w makes|strong="H3559"\w* \w ready|strong="H3559"\w* \w his|strong="H7725"\w* flaming \w arrows|strong="H7198"\w*. +\q1 +\v 14 Behold,\f + \fr 7:14 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w he|strong="H4194"\w* travails \w with|strong="H3627"\w* iniquity. +\q2 Yes, \w he|strong="H4194"\w* \w has|strong="H4194"\w* conceived mischief, +\q2 \w and|strong="H3627"\w* brought \w out|strong="H3559"\w* falsehood. +\q1 +\v 15 \w He|strong="H2009"\w* \w has|strong="H2009"\w* dug \w a|strong="H3068"\w* hole, +\q2 \w and|strong="H5999"\w* \w has|strong="H2009"\w* fallen into \w the|strong="H3205"\w* pit which \w he|strong="H2009"\w* made. +\q1 +\v 16 \w The|strong="H5307"\w* trouble he causes \w shall|strong="H7845"\w* return \w to|strong="H5307"\w* \w his|strong="H6466"\w* own \w head|strong="H5307"\w*. +\q2 \w His|strong="H6466"\w* violence \w shall|strong="H7845"\w* \w come|strong="H5307"\w* \w down|strong="H5307"\w* \w on|strong="H5307"\w* \w the|strong="H5307"\w* crown \w of|strong="H6466"\w* \w his|strong="H6466"\w* own \w head|strong="H5307"\w*. +\q1 +\v 17 \w I|strong="H5921"\w* \w will|strong="H7725"\w* \w give|strong="H7725"\w* thanks \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w* \w according|strong="H5921"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* righteousness, +\q2 \w and|strong="H7725"\w* \w will|strong="H7725"\w* sing praise \w to|strong="H7725"\w* \w the|strong="H5921"\w* name \w of|strong="H7218"\w* \w Yahweh|strong="H3068"\w* Most \w High|strong="H7218"\w*. +\c 8 +\d For the Chief Musician; on an instrument of Gath. A Psalm by David. +\q1 +\v 1 \w Yahweh|strong="H3068"\w*, \w our|strong="H5921"\w* Lord, how majestic \w is|strong="H1732"\w* \w your|strong="H5921"\w* name \w in|strong="H5921"\w* \w all|strong="H5921"\w* \w the|strong="H5921"\w* earth! +\q2 \w You|strong="H5921"\w* \w have|strong="H1732"\w* set \w your|strong="H5921"\w* glory \w above|strong="H5921"\w* \w the|strong="H5921"\w* heavens! +\q1 +\v 2 \w From|strong="H5921"\w* \w the|strong="H3605"\w* lips \w of|strong="H3068"\w* babes \w and|strong="H3068"\w* infants \w you|strong="H5414"\w* \w have|strong="H3068"\w* \w established|strong="H5414"\w* strength, +\q2 \w because|strong="H5921"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* adversaries, \w that|strong="H3605"\w* \w you|strong="H5414"\w* \w might|strong="H3068"\w* silence \w the|strong="H3605"\w* enemy \w and|strong="H3068"\w* \w the|strong="H3605"\w* avenger. +\q1 +\v 3 \w When|strong="H6310"\w* I consider \w your|strong="H7673"\w* heavens, \w the|strong="H3245"\w* \w work|strong="H3245"\w* \w of|strong="H6310"\w* \w your|strong="H7673"\w* fingers, +\q2 \w the|strong="H3245"\w* moon \w and|strong="H6310"\w* \w the|strong="H3245"\w* stars, \w which|strong="H3245"\w* \w you|strong="H6310"\w* \w have|strong="H6887"\w* \w ordained|strong="H3245"\w*, +\q1 +\v 4 \w what|strong="H4639"\w* \w is|strong="H4639"\w* \w man|strong="H7200"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w think|strong="H7200"\w* \w of|strong="H4639"\w* \w him|strong="H7200"\w*? +\q2 \w What|strong="H4639"\w* \w is|strong="H4639"\w* \w the|strong="H7200"\w* son \w of|strong="H4639"\w* \w man|strong="H7200"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* care \w for|strong="H3588"\w* \w him|strong="H7200"\w*? +\q1 +\v 5 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1121"\w* \w made|strong="H6485"\w* \w him|strong="H6485"\w* \w a|strong="H3068"\w* little lower \w than|strong="H3588"\w* \w the|strong="H3588"\w* angels,\f + \fr 8:5 \ft Hebrew: Elohim. The word Elohim, used here, usually means “God”, but can also mean “gods”, “princes”, or “angels”. The Septuagint reads “angels” here. See also the quote from the Septuagint in Hebrews 2:7.\f* +\q2 \w and|strong="H1121"\w* crowned \w him|strong="H6485"\w* \w with|strong="H1121"\w* glory \w and|strong="H1121"\w* honor. +\q1 +\v 6 \w You|strong="H1926"\w* make \w him|strong="H5849"\w* ruler over \w the|strong="H3519"\w* works \w of|strong="H3519"\w* your hands. +\q2 \w You|strong="H1926"\w* \w have|strong="H4592"\w* put \w all|strong="H2637"\w* things under \w his|strong="H1926"\w* feet: +\q1 +\v 7 \w All|strong="H3605"\w* sheep \w and|strong="H3027"\w* cattle, +\q2 yes, \w and|strong="H3027"\w* \w the|strong="H3605"\w* animals \w of|strong="H3027"\w* \w the|strong="H3605"\w* field, +\q2 +\v 8 \w the|strong="H3605"\w* birds \w of|strong="H7704"\w* \w the|strong="H3605"\w* sky, \w the|strong="H3605"\w* fish \w of|strong="H7704"\w* \w the|strong="H3605"\w* sea, +\q2 \w and|strong="H7704"\w* \w whatever|strong="H3605"\w* passes \w through|strong="H3605"\w* \w the|strong="H3605"\w* paths \w of|strong="H7704"\w* \w the|strong="H3605"\w* seas. +\q1 +\v 9 \w Yahweh|strong="H3068"\w*, \w our|strong="H5674"\w* Lord, +\q2 how majestic is \w your|strong="H5674"\w* name \w in|strong="H3220"\w* \w all|strong="H5674"\w* \w the|strong="H5674"\w* \w earth|strong="H8064"\w*! +\c 9 +\d For the Chief Musician. Set to “The Death of the Son.” A Psalm by David. +\q1 +\v 1 I will give thanks \w to|strong="H1732"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H1732"\w* \w my|strong="H1732"\w* whole heart. +\q2 I will tell \w of|strong="H4210"\w* all \w your|strong="H1732"\w* marvelous works. +\q1 +\v 2 \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* glad \w and|strong="H3068"\w* rejoice \w in|strong="H3068"\w* \w you|strong="H3605"\w*. +\q2 \w I|strong="H3068"\w* \w will|strong="H3068"\w* sing \w praise|strong="H3034"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* name, \w O|strong="H3068"\w* \w Most|strong="H3068"\w* \w High|strong="H6381"\w*. +\q1 +\v 3 When \w my|strong="H8034"\w* enemies turn back, +\q2 \w they|strong="H8034"\w* stumble \w and|strong="H8034"\w* perish \w in|strong="H8034"\w* \w your|strong="H2167"\w* presence. +\q1 +\v 4 \w For|strong="H6440"\w* \w you|strong="H6440"\w* have maintained \w my|strong="H7725"\w* just \w cause|strong="H7725"\w*. +\q2 \w You|strong="H6440"\w* sit \w on|strong="H6440"\w* \w the|strong="H6440"\w* throne judging righteously. +\q1 +\v 5 \w You|strong="H3588"\w* \w have|strong="H3588"\w* rebuked \w the|strong="H3588"\w* nations. +\q2 \w You|strong="H3588"\w* \w have|strong="H3588"\w* destroyed \w the|strong="H3588"\w* \w wicked|strong="H6213"\w*. +\q2 \w You|strong="H3588"\w* \w have|strong="H3588"\w* blotted \w out|strong="H6213"\w* \w their|strong="H3588"\w* name \w forever|strong="H3427"\w* \w and|strong="H4941"\w* ever. +\q1 +\v 6 \w The|strong="H8034"\w* enemy \w is|strong="H8034"\w* overtaken \w by|strong="H8034"\w* endless ruin. +\q2 \w The|strong="H8034"\w* very \w memory|strong="H8034"\w* \w of|strong="H8034"\w* \w the|strong="H8034"\w* cities \w which|strong="H1471"\w* \w you|strong="H5769"\w* \w have|strong="H1471"\w* overthrown \w has|strong="H1471"\w* perished. +\q1 +\v 7 \w But|strong="H1992"\w* \w Yahweh|strong="H3068"\w* reigns \w forever|strong="H5331"\w*. +\q2 \w He|strong="H5892"\w* \w has|strong="H5892"\w* prepared \w his|strong="H1992"\w* throne \w for|strong="H5892"\w* judgment. +\q1 +\v 8 \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w judge|strong="H4941"\w* \w the|strong="H3068"\w* \w world|strong="H5769"\w* \w in|strong="H3427"\w* righteousness. +\q2 \w He|strong="H3068"\w* \w will|strong="H3068"\w* administer \w judgment|strong="H4941"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* peoples \w in|strong="H3427"\w* uprightness. +\q1 +\v 9 \w Yahweh|strong="H3068"\w* \w will|strong="H1931"\w* \w also|strong="H1931"\w* \w be|strong="H3816"\w* \w a|strong="H3068"\w* high tower \w for|strong="H8199"\w* \w the|strong="H8199"\w* oppressed; +\q2 \w a|strong="H3068"\w* high tower \w in|strong="H8398"\w* times \w of|strong="H8199"\w* trouble. +\q1 +\v 10 \w Those|strong="H1961"\w* \w who|strong="H3068"\w* know \w your|strong="H3068"\w* name \w will|strong="H3068"\w* \w put|strong="H3068"\w* \w their|strong="H3068"\w* trust \w in|strong="H3068"\w* \w you|strong="H6256"\w*, +\q2 \w for|strong="H3068"\w* \w you|strong="H6256"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H1961"\w* \w not|strong="H1961"\w* forsaken \w those|strong="H1961"\w* \w who|strong="H3068"\w* seek \w you|strong="H6256"\w*. +\q1 +\v 11 Sing \w praises|strong="H3068"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H3068"\w* dwells \w in|strong="H3068"\w* Zion, +\q2 \w and|strong="H3068"\w* \w declare|strong="H3045"\w* \w among|strong="H8034"\w* \w the|strong="H3588"\w* \w people|strong="H3808"\w* \w what|strong="H3045"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* done. +\q1 +\v 12 \w For|strong="H3427"\w* \w he|strong="H3068"\w* \w who|strong="H5971"\w* avenges blood remembers \w them|strong="H5046"\w*. +\q2 \w He|strong="H3068"\w* doesn’t forget \w the|strong="H3068"\w* cry \w of|strong="H3068"\w* \w the|strong="H3068"\w* afflicted. +\q1 +\v 13 \w Have|strong="H3588"\w* mercy \w on|strong="H3808"\w* \w me|strong="H7911"\w*, \w Yahweh|strong="H3068"\w*. +\q2 See \w my|strong="H2142"\w* affliction \w by|strong="H3808"\w* \w those|strong="H3588"\w* \w who|strong="H6041"\w* hate \w me|strong="H7911"\w*, +\q1 \w and|strong="H6041"\w* lift \w me|strong="H7911"\w* up \w from|strong="H1818"\w* \w the|strong="H3588"\w* gates \w of|strong="H1818"\w* \w death|strong="H1818"\w*, +\q2 +\v 14 \w that|strong="H7200"\w* \w I|strong="H7200"\w* \w may|strong="H3068"\w* \w show|strong="H7200"\w* \w all|strong="H7200"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w praise|strong="H7311"\w*. +\q2 \w I|strong="H7200"\w* \w will|strong="H3068"\w* rejoice \w in|strong="H3068"\w* \w your|strong="H3068"\w* salvation \w in|strong="H3068"\w* \w the|strong="H7200"\w* \w gates|strong="H8179"\w* \w of|strong="H3068"\w* \w the|strong="H7200"\w* daughter \w of|strong="H3068"\w* Zion. +\q1 +\v 15 \w The|strong="H3605"\w* nations \w have|strong="H1323"\w* sunk down \w in|strong="H8416"\w* \w the|strong="H3605"\w* pit \w that|strong="H3605"\w* \w they|strong="H3605"\w* \w made|strong="H3605"\w*. +\q2 \w In|strong="H8416"\w* \w the|strong="H3605"\w* net \w which|strong="H5608"\w* \w they|strong="H3605"\w* hid, \w their|strong="H3605"\w* own foot \w is|strong="H3605"\w* \w taken|strong="H5608"\w*. +\q1 +\v 16 \w Yahweh|strong="H3068"\w* \w has|strong="H1471"\w* \w made|strong="H6213"\w* \w himself|strong="H6213"\w* known. +\q2 \w He|strong="H6213"\w* \w has|strong="H1471"\w* \w executed|strong="H6213"\w* \w judgment|strong="H1471"\w*. +\q2 \w The|strong="H6213"\w* \w wicked|strong="H6213"\w* \w is|strong="H6213"\w* snared \w by|strong="H6213"\w* \w the|strong="H6213"\w* \w work|strong="H6213"\w* \w of|strong="H6213"\w* \w his|strong="H6213"\w* own hands. \qs Meditation. Selah.\qs* +\q1 +\v 17 \w The|strong="H6213"\w* \w wicked|strong="H7563"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w turned|strong="H3068"\w* \w back|strong="H3045"\w* \w to|strong="H3068"\w* Sheol,\f + \fr 9:17 \ft Sheol is the place of the dead.\f* +\q2 \w even|strong="H6213"\w* \w all|strong="H3045"\w* \w the|strong="H6213"\w* nations \w that|strong="H3045"\w* forget \w God|strong="H3068"\w*. +\q1 +\v 18 \w For|strong="H3605"\w* \w the|strong="H3605"\w* needy \w shall|strong="H1471"\w* \w not|strong="H7725"\w* \w always|strong="H3605"\w* \w be|strong="H1471"\w* forgotten, +\q2 nor \w the|strong="H3605"\w* hope \w of|strong="H3605"\w* \w the|strong="H3605"\w* poor perish \w forever|strong="H3605"\w*. +\q1 +\v 19 Arise, \w Yahweh|strong="H3068"\w*! Don’t \w let|strong="H3808"\w* man prevail. +\q2 \w Let|strong="H3808"\w* \w the|strong="H3588"\w* nations \w be|strong="H3808"\w* judged \w in|strong="H3808"\w* \w your|strong="H3588"\w* sight. +\q1 +\v 20 \w Put|strong="H3068"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w fear|strong="H6440"\w*, \w Yahweh|strong="H3068"\w*. +\q2 Let \w the|strong="H6440"\w* \w nations|strong="H1471"\w* know \w that|strong="H3068"\w* \w they|strong="H3068"\w* \w are|strong="H1471"\w* only men. \qs Selah.\qs* +\c 10 +\q1 +\v 1 \w Why|strong="H4100"\w* \w do|strong="H3068"\w* \w you|strong="H4100"\w* \w stand|strong="H5975"\w* \w far|strong="H7350"\w* \w off|strong="H7350"\w*, \w Yahweh|strong="H3068"\w*? +\q2 \w Why|strong="H4100"\w* \w do|strong="H3068"\w* \w you|strong="H4100"\w* \w hide|strong="H5956"\w* yourself \w in|strong="H3068"\w* \w times|strong="H6256"\w* \w of|strong="H3068"\w* \w trouble|strong="H6869"\w*? +\q1 +\v 2 \w In|strong="H6041"\w* \w arrogance|strong="H1346"\w*, \w the|strong="H8610"\w* \w wicked|strong="H7563"\w* hunt down \w the|strong="H8610"\w* weak. +\q2 \w They|strong="H2098"\w* \w are|strong="H7563"\w* \w caught|strong="H8610"\w* \w in|strong="H6041"\w* \w the|strong="H8610"\w* \w schemes|strong="H4209"\w* \w that|strong="H2098"\w* \w they|strong="H2098"\w* \w devise|strong="H2803"\w*. +\q1 +\v 3 \w For|strong="H3588"\w* \w the|strong="H5921"\w* \w wicked|strong="H7563"\w* \w boasts|strong="H1984"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w heart|strong="H5315"\w*’s cravings. +\q2 \w He|strong="H3588"\w* \w blesses|strong="H1288"\w* \w the|strong="H5921"\w* \w greedy|strong="H1214"\w* \w and|strong="H3068"\w* condemns \w Yahweh|strong="H3068"\w*. +\q1 +\v 4 \w The|strong="H3605"\w* \w wicked|strong="H7563"\w*, \w in|strong="H3605"\w* \w the|strong="H3605"\w* \w pride|strong="H1363"\w* \w of|strong="H3605"\w* \w his|strong="H3605"\w* face, +\q2 \w has|strong="H3605"\w* \w no|strong="H3605"\w* room \w in|strong="H3605"\w* \w his|strong="H3605"\w* \w thoughts|strong="H4209"\w* \w for|strong="H3605"\w* God. +\q1 +\v 5 \w His|strong="H3605"\w* \w ways|strong="H1870"\w* \w are|strong="H1870"\w* prosperous \w at|strong="H4941"\w* \w all|strong="H3605"\w* \w times|strong="H6256"\w*. +\q2 \w He|strong="H3605"\w* \w is|strong="H1870"\w* arrogant, \w and|strong="H4941"\w* \w your|strong="H3605"\w* laws \w are|strong="H1870"\w* \w far|strong="H5048"\w* \w from|strong="H5048"\w* \w his|strong="H3605"\w* \w sight|strong="H5048"\w*. +\q1 \w As|strong="H6256"\w* \w for|strong="H4941"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w adversaries|strong="H6887"\w*, \w he|strong="H3605"\w* sneers \w at|strong="H4941"\w* \w them|strong="H5048"\w*. +\q2 +\v 6 \w He|strong="H3808"\w* says \w in|strong="H3808"\w* \w his|strong="H3808"\w* \w heart|strong="H3820"\w*, “\w I|strong="H3808"\w* \w shall|strong="H3820"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w shaken|strong="H4131"\w*. +\q2 \w For|strong="H7451"\w* \w generations|strong="H1755"\w* \w I|strong="H3808"\w* \w shall|strong="H3820"\w* \w have|strong="H3808"\w* \w no|strong="H3808"\w* \w trouble|strong="H7451"\w*.” +\q1 +\v 7 \w His|strong="H4390"\w* \w mouth|strong="H6310"\w* \w is|strong="H6310"\w* \w full|strong="H4390"\w* \w of|strong="H4390"\w* cursing, \w deceit|strong="H4820"\w*, \w and|strong="H6310"\w* \w oppression|strong="H8496"\w*. +\q2 \w Under|strong="H8478"\w* \w his|strong="H4390"\w* \w tongue|strong="H3956"\w* \w is|strong="H6310"\w* \w mischief|strong="H5999"\w* \w and|strong="H6310"\w* \w iniquity|strong="H5999"\w*. +\q1 +\v 8 \w He|strong="H4565"\w* lies \w in|strong="H3427"\w* \w wait|strong="H3427"\w* near \w the|strong="H2026"\w* \w villages|strong="H2691"\w*. +\q2 \w From|strong="H5869"\w* ambushes, \w he|strong="H4565"\w* murders \w the|strong="H2026"\w* \w innocent|strong="H5355"\w*. +\q1 \w His|strong="H2026"\w* \w eyes|strong="H5869"\w* \w are|strong="H5869"\w* \w secretly|strong="H4565"\w* \w set|strong="H3427"\w* \w against|strong="H5869"\w* \w the|strong="H2026"\w* helpless. +\q1 +\v 9 \w He|strong="H4565"\w* lurks \w in|strong="H6041"\w* \w secret|strong="H4565"\w* \w as|strong="H4565"\w* \w a|strong="H3068"\w* lion \w in|strong="H6041"\w* \w his|strong="H4900"\w* ambush. +\q2 \w He|strong="H4565"\w* lies \w in|strong="H6041"\w* wait \w to|strong="H4900"\w* \w catch|strong="H2414"\w* \w the|strong="H4900"\w* helpless. +\q2 \w He|strong="H4565"\w* \w catches|strong="H2414"\w* \w the|strong="H4900"\w* helpless when \w he|strong="H4565"\w* \w draws|strong="H4900"\w* \w him|strong="H4900"\w* \w in|strong="H6041"\w* \w his|strong="H4900"\w* \w net|strong="H7568"\w*. +\q1 +\v 10 \w The|strong="H5307"\w* helpless \w are|strong="H6099"\w* \w crushed|strong="H1794"\w*. +\q2 They \w collapse|strong="H5307"\w*. +\q2 They \w fall|strong="H5307"\w* under his strength. +\q1 +\v 11 \w He|strong="H6440"\w* says \w in|strong="H6440"\w* \w his|strong="H6440"\w* \w heart|strong="H3820"\w*, “God \w has|strong="H3820"\w* \w forgotten|strong="H7911"\w*. +\q2 \w He|strong="H6440"\w* \w hides|strong="H5641"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w*. +\q2 \w He|strong="H6440"\w* \w will|strong="H3820"\w* \w never|strong="H5331"\w* \w see|strong="H7200"\w* \w it|strong="H7200"\w*.” +\b +\q1 +\v 12 \w Arise|strong="H6965"\w*, \w Yahweh|strong="H3068"\w*! +\q2 \w God|strong="H3068"\w*, \w lift|strong="H5375"\w* \w up|strong="H6965"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*! +\q2 Don’t \w forget|strong="H7911"\w* \w the|strong="H5375"\w* helpless. +\q1 +\v 13 \w Why|strong="H4100"\w* \w does|strong="H4100"\w* \w the|strong="H5921"\w* \w wicked|strong="H7563"\w* \w person|strong="H3820"\w* condemn \w God|strong="H3808"\w*, +\q2 \w and|strong="H3820"\w* say \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w heart|strong="H3820"\w*, “\w God|strong="H3808"\w* won’t call \w me|strong="H5921"\w* \w into|strong="H5921"\w* \w account|strong="H5921"\w*”? +\q1 +\v 14 \w But|strong="H3588"\w* \w you|strong="H3588"\w* \w do|strong="H5826"\w* \w see|strong="H7200"\w* \w trouble|strong="H5999"\w* \w and|strong="H3027"\w* \w grief|strong="H3708"\w*. +\q2 \w You|strong="H3588"\w* \w consider|strong="H7200"\w* \w it|strong="H5414"\w* \w to|strong="H1961"\w* \w take|strong="H1961"\w* \w it|strong="H5414"\w* \w into|strong="H5921"\w* \w your|strong="H5414"\w* \w hand|strong="H3027"\w*. +\q2 \w You|strong="H3588"\w* \w help|strong="H5826"\w* \w the|strong="H5921"\w* victim \w and|strong="H3027"\w* \w the|strong="H5921"\w* \w fatherless|strong="H3490"\w*. +\q1 +\v 15 \w Break|strong="H7665"\w* \w the|strong="H7665"\w* \w arm|strong="H2220"\w* \w of|strong="H1875"\w* \w the|strong="H7665"\w* \w wicked|strong="H7563"\w*. +\q2 \w As|strong="H7451"\w* \w for|strong="H7451"\w* \w the|strong="H7665"\w* \w evil|strong="H7451"\w* \w man|strong="H7563"\w*, \w seek|strong="H1875"\w* \w out|strong="H4672"\w* \w his|strong="H7665"\w* \w wickedness|strong="H7451"\w* until \w you|strong="H4672"\w* \w find|strong="H4672"\w* \w none|strong="H1077"\w*. +\q1 +\v 16 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w King|strong="H4428"\w* \w forever|strong="H5769"\w* \w and|strong="H3068"\w* \w ever|strong="H5769"\w*! +\q2 \w The|strong="H3068"\w* \w nations|strong="H1471"\w* \w will|strong="H3068"\w* perish \w out|strong="H1471"\w* \w of|strong="H4428"\w* \w his|strong="H3068"\w* land. +\q1 +\v 17 \w Yahweh|strong="H3068"\w*, \w you|strong="H3559"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w desire|strong="H8378"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* \w humble|strong="H6035"\w*. +\q2 \w You|strong="H3559"\w* \w will|strong="H3068"\w* \w prepare|strong="H3559"\w* \w their|strong="H3068"\w* \w heart|strong="H3820"\w*. +\q2 \w You|strong="H3559"\w* \w will|strong="H3068"\w* cause \w your|strong="H3068"\w* \w ear|strong="H8085"\w* \w to|strong="H3068"\w* \w hear|strong="H8085"\w*, +\q2 +\v 18 \w to|strong="H3254"\w* \w judge|strong="H8199"\w* \w the|strong="H4480"\w* \w fatherless|strong="H3490"\w* \w and|strong="H3254"\w* \w the|strong="H4480"\w* \w oppressed|strong="H1790"\w*, +\q2 \w that|strong="H4480"\w* man who \w is|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* earth \w may|strong="H3254"\w* terrify \w no|strong="H4480"\w* \w more|strong="H3254"\w*. +\c 11 +\d For the Chief Musician. By David. +\q1 +\v 1 \w In|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w I|strong="H5315"\w* \w take|strong="H2620"\w* \w refuge|strong="H2620"\w*. +\q2 How can \w you|strong="H5315"\w* say \w to|strong="H3068"\w* \w my|strong="H3068"\w* \w soul|strong="H5315"\w*, “\w Flee|strong="H5110"\w* \w as|strong="H5315"\w* \w a|strong="H3068"\w* \w bird|strong="H6833"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w mountain|strong="H2022"\w*”? +\q1 +\v 2 \w For|strong="H3588"\w*, \w behold|strong="H2009"\w*, \w the|strong="H5921"\w* \w wicked|strong="H7563"\w* \w bend|strong="H1869"\w* \w their|strong="H5921"\w* \w bows|strong="H7198"\w*. +\q2 \w They|strong="H3588"\w* \w set|strong="H3559"\w* \w their|strong="H5921"\w* \w arrows|strong="H2671"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* strings, +\q2 \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w may|strong="H3820"\w* \w shoot|strong="H3384"\w* \w in|strong="H5921"\w* darkness \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w upright|strong="H3477"\w* \w in|strong="H5921"\w* \w heart|strong="H3820"\w*. +\q1 +\v 3 \w If|strong="H3588"\w* \w the|strong="H3588"\w* \w foundations|strong="H8356"\w* \w are|strong="H4100"\w* \w destroyed|strong="H2040"\w*, +\q2 \w what|strong="H4100"\w* \w can|strong="H4100"\w* \w the|strong="H3588"\w* \w righteous|strong="H6662"\w* \w do|strong="H6466"\w*? +\q1 +\v 4 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w holy|strong="H6944"\w* \w temple|strong="H1964"\w*. +\q2 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w on|strong="H3068"\w* \w his|strong="H3068"\w* \w throne|strong="H3678"\w* \w in|strong="H3068"\w* \w heaven|strong="H8064"\w*. +\q1 \w His|strong="H3068"\w* \w eyes|strong="H5869"\w* observe. +\q2 \w His|strong="H3068"\w* \w eyes|strong="H5869"\w* examine \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*. +\q1 +\v 5 \w Yahweh|strong="H3068"\w* examines \w the|strong="H3068"\w* \w righteous|strong="H6662"\w*, +\q2 \w but|strong="H7563"\w* \w his|strong="H3068"\w* \w soul|strong="H5315"\w* \w hates|strong="H8130"\w* \w the|strong="H3068"\w* \w wicked|strong="H7563"\w* \w and|strong="H3068"\w* \w him|strong="H8130"\w* \w who|strong="H3068"\w* loves \w violence|strong="H2555"\w*. +\q1 +\v 6 \w On|strong="H5921"\w* \w the|strong="H5921"\w* \w wicked|strong="H7563"\w* \w he|strong="H5921"\w* \w will|strong="H7563"\w* \w rain|strong="H4305"\w* blazing coals; +\q2 fire, \w sulfur|strong="H1614"\w*, \w and|strong="H7307"\w* scorching \w wind|strong="H7307"\w* \w shall|strong="H7563"\w* \w be|strong="H7563"\w* \w the|strong="H5921"\w* \w portion|strong="H4521"\w* \w of|strong="H7307"\w* \w their|strong="H5921"\w* \w cup|strong="H3563"\w*. +\q1 +\v 7 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w righteous|strong="H6662"\w*. +\q2 \w He|strong="H3588"\w* loves \w righteousness|strong="H6666"\w*. +\q2 \w The|strong="H6440"\w* \w upright|strong="H3477"\w* \w shall|strong="H3068"\w* \w see|strong="H2372"\w* \w his|strong="H3068"\w* \w face|strong="H6440"\w*. +\c 12 +\d For the Chief Musician; upon an eight-stringed lyre. A Psalm of David. +\q1 +\v 1 Help, \w Yahweh|strong="H3068"\w*; \w for|strong="H5921"\w* \w the|strong="H5921"\w* godly man ceases. +\q2 \w For|strong="H5921"\w* \w the|strong="H5921"\w* faithful fail \w from|strong="H5921"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* children \w of|strong="H4210"\w* men. +\q1 +\v 2 Everyone lies \w to|strong="H3068"\w* \w his|strong="H3068"\w* neighbor. +\q2 \w They|strong="H3588"\w* speak \w with|strong="H3068"\w* flattering lips, \w and|strong="H1121"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* double heart. +\q1 +\v 3 \w May|strong="H3820"\w* \w Yahweh|strong="H3068"\w* cut \w off|strong="H7453"\w* all \w flattering|strong="H2513"\w* \w lips|strong="H8193"\w*, +\q2 \w and|strong="H3820"\w* \w the|strong="H1696"\w* tongue \w that|strong="H3820"\w* boasts, +\q1 +\v 4 \w who|strong="H3605"\w* \w have|strong="H3068"\w* \w said|strong="H1696"\w*, “\w With|strong="H3068"\w* \w our|strong="H3068"\w* \w tongue|strong="H3956"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* prevail. +\q2 \w Our|strong="H3068"\w* \w lips|strong="H8193"\w* \w are|strong="H3068"\w* \w our|strong="H3068"\w* own. +\q2 \w Who|strong="H3605"\w* \w is|strong="H3068"\w* \w lord|strong="H3068"\w* \w over|strong="H3068"\w* us?” +\q1 +\v 5 “Because \w of|strong="H8193"\w* \w the|strong="H1396"\w* oppression \w of|strong="H8193"\w* \w the|strong="H1396"\w* weak \w and|strong="H8193"\w* because \w of|strong="H8193"\w* \w the|strong="H1396"\w* groaning \w of|strong="H8193"\w* \w the|strong="H1396"\w* needy, +\q2 I \w will|strong="H4310"\w* now arise,” says \w Yahweh|strong="H3068"\w*; +\q1 “I \w will|strong="H4310"\w* set him \w in|strong="H8193"\w* safety \w from|strong="H8193"\w* those \w who|strong="H4310"\w* malign him.” +\q1 +\v 6 \w Yahweh|strong="H3068"\w*’s words \w are|strong="H3068"\w* flawless words, +\q2 \w as|strong="H3068"\w* silver refined \w in|strong="H3068"\w* \w a|strong="H3068"\w* clay furnace, purified seven times. +\q1 +\v 7 You \w will|strong="H3068"\w* keep \w them|strong="H3068"\w*, \w Yahweh|strong="H3068"\w*. +\q2 You \w will|strong="H3068"\w* preserve \w them|strong="H3068"\w* \w from|strong="H3068"\w* \w this|strong="H3068"\w* generation forever. +\q1 +\v 8 \w The|strong="H8104"\w* wicked walk \w on|strong="H3068"\w* \w every|strong="H1755"\w* side, +\q2 \w when|strong="H3068"\w* what \w is|strong="H3068"\w* vile \w is|strong="H3068"\w* exalted \w among|strong="H4480"\w* \w the|strong="H8104"\w* sons \w of|strong="H3068"\w* men. +\c 13 +\d For the Chief Musician. A Psalm by David. +\q1 +\v 1 How long, \w Yahweh|strong="H3068"\w*? +\q2 Will you forget me forever? +\q2 How long will you hide \w your|strong="H1732"\w* face from me? +\q1 +\v 2 \w How|strong="H5704"\w* \w long|strong="H5704"\w* \w shall|strong="H3068"\w* \w I|strong="H5704"\w* take counsel \w in|strong="H3068"\w* \w my|strong="H3068"\w* soul, +\q2 having sorrow \w in|strong="H3068"\w* \w my|strong="H3068"\w* heart \w every|strong="H3068"\w* day? +\q2 \w How|strong="H5704"\w* \w long|strong="H5704"\w* \w shall|strong="H3068"\w* \w my|strong="H3068"\w* enemy triumph \w over|strong="H4480"\w* \w me|strong="H6440"\w*? +\q1 +\v 3 Behold, \w and|strong="H3119"\w* answer \w me|strong="H5315"\w*, \w Yahweh|strong="H3068"\w*, \w my|strong="H5921"\w* God. +\q2 \w Give|strong="H7311"\w* light \w to|strong="H5704"\w* \w my|strong="H5921"\w* eyes, lest \w I|strong="H5704"\w* sleep \w in|strong="H5921"\w* \w death|strong="H5315"\w*; +\q2 +\v 4 \w lest|strong="H6435"\w* \w my|strong="H3068"\w* enemy say, “\w I|strong="H3068"\w* \w have|strong="H3068"\w* prevailed \w against|strong="H3068"\w* \w him|strong="H6030"\w*;” +\q2 \w lest|strong="H6435"\w* \w my|strong="H3068"\w* adversaries rejoice \w when|strong="H3068"\w* \w I|strong="H3068"\w* fall. +\b +\q1 +\v 5 \w But|strong="H3588"\w* \w I|strong="H3588"\w* trust \w in|strong="H1523"\w* \w your|strong="H3588"\w* loving kindness. +\q2 \w My|strong="H3588"\w* heart \w rejoices|strong="H1523"\w* \w in|strong="H1523"\w* \w your|strong="H3588"\w* salvation. +\q1 +\v 6 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w sing|strong="H7891"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w been|strong="H3068"\w* \w good|strong="H1580"\w* \w to|strong="H3068"\w* \w me|strong="H5921"\w*. +\c 14 +\d For the Chief Musician. By David. +\q1 +\v 1 \w The|strong="H6213"\w* \w fool|strong="H5036"\w* \w has|strong="H3820"\w* said \w in|strong="H6213"\w* \w his|strong="H1732"\w* \w heart|strong="H3820"\w*, “There \w is|strong="H3820"\w* \w no|strong="H6213"\w* God.” +\q2 \w They|strong="H6213"\w* \w are|strong="H6213"\w* \w corrupt|strong="H7843"\w*. +\q2 \w They|strong="H6213"\w* \w have|strong="H1732"\w* \w done|strong="H6213"\w* \w abominable|strong="H8581"\w* \w deeds|strong="H5949"\w*. +\q2 There \w is|strong="H3820"\w* \w no|strong="H6213"\w* \w one|strong="H2896"\w* \w who|strong="H2896"\w* \w does|strong="H6213"\w* \w good|strong="H2896"\w*. +\q1 +\v 2 \w Yahweh|strong="H3068"\w* \w looked|strong="H7200"\w* \w down|strong="H8259"\w* \w from|strong="H5921"\w* \w heaven|strong="H8064"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*, +\q2 \w to|strong="H3068"\w* \w see|strong="H7200"\w* \w if|strong="H7200"\w* \w there|strong="H3426"\w* \w were|strong="H1121"\w* \w any|strong="H3426"\w* \w who|strong="H3068"\w* \w understood|strong="H7919"\w*, +\q2 \w who|strong="H3068"\w* \w sought|strong="H1875"\w* \w after|strong="H5921"\w* \w God|strong="H3068"\w*. +\q1 +\v 3 \w They|strong="H6213"\w* \w have|strong="H1571"\w* \w all|strong="H3605"\w* \w gone|strong="H5493"\w* \w aside|strong="H5493"\w*. +\q2 \w They|strong="H6213"\w* \w have|strong="H1571"\w* \w together|strong="H3162"\w* \w become|strong="H3162"\w* corrupt. +\q2 \w There|strong="H3605"\w* \w is|strong="H1571"\w* \w no|strong="H6213"\w* \w one|strong="H3605"\w* \w who|strong="H3605"\w* \w does|strong="H6213"\w* \w good|strong="H2896"\w*, \w no|strong="H6213"\w*, \w not|strong="H6213"\w* \w one|strong="H3605"\w*. +\q1 +\v 4 \w Have|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w workers|strong="H6466"\w* \w of|strong="H3068"\w* iniquity \w no|strong="H3808"\w* \w knowledge|strong="H3045"\w*, +\q2 \w who|strong="H3605"\w* \w eat|strong="H3899"\w* \w up|strong="H3605"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w* \w as|strong="H3068"\w* \w they|strong="H3068"\w* \w eat|strong="H3899"\w* \w bread|strong="H3899"\w*, +\q2 \w and|strong="H3068"\w* don’t \w call|strong="H7121"\w* \w on|strong="H3068"\w* \w Yahweh|strong="H3068"\w*? +\q1 +\v 5 \w There|strong="H8033"\w* \w they|strong="H3588"\w* \w were|strong="H6343"\w* \w in|strong="H8033"\w* \w great|strong="H6343"\w* \w fear|strong="H6343"\w*, +\q2 \w for|strong="H3588"\w* God \w is|strong="H6662"\w* \w in|strong="H8033"\w* \w the|strong="H3588"\w* \w generation|strong="H1755"\w* \w of|strong="H6343"\w* \w the|strong="H3588"\w* \w righteous|strong="H6662"\w*. +\q1 +\v 6 \w You|strong="H3588"\w* frustrate \w the|strong="H3588"\w* \w plan|strong="H6098"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w poor|strong="H6041"\w*, +\q2 \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w his|strong="H3068"\w* \w refuge|strong="H4268"\w*. +\q1 +\v 7 \w Oh|strong="H4310"\w* \w that|strong="H5971"\w* \w the|strong="H5414"\w* \w salvation|strong="H3444"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w would|strong="H4310"\w* \w come|strong="H7725"\w* \w out|strong="H5414"\w* \w of|strong="H3068"\w* \w Zion|strong="H6726"\w*! +\q2 \w When|strong="H7725"\w* \w Yahweh|strong="H3068"\w* \w restores|strong="H7725"\w* \w the|strong="H5414"\w* \w fortunes|strong="H7622"\w* \w of|strong="H3068"\w* \w his|strong="H5414"\w* \w people|strong="H5971"\w*, +\q2 \w then|strong="H5414"\w* \w Jacob|strong="H3290"\w* \w shall|strong="H3068"\w* \w rejoice|strong="H8055"\w*, \w and|strong="H3478"\w* \w Israel|strong="H3478"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w glad|strong="H8055"\w*. +\c 15 +\d A Psalm by David. +\q1 +\v 1 \w Yahweh|strong="H3068"\w*, \w who|strong="H4310"\w* \w shall|strong="H3068"\w* \w dwell|strong="H7931"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w sanctuary|strong="H6944"\w*? +\q2 \w Who|strong="H4310"\w* \w shall|strong="H3068"\w* \w live|strong="H7931"\w* \w on|strong="H3068"\w* \w your|strong="H3068"\w* \w holy|strong="H6944"\w* \w hill|strong="H2022"\w*? +\q1 +\v 2 \w He|strong="H1980"\w* \w who|strong="H6664"\w* \w walks|strong="H1980"\w* \w blamelessly|strong="H8549"\w* \w and|strong="H1980"\w* \w does|strong="H6466"\w* \w what|strong="H6664"\w* \w is|strong="H6664"\w* \w right|strong="H6664"\w*, +\q2 \w and|strong="H1980"\w* \w speaks|strong="H1696"\w* truth \w in|strong="H1980"\w* \w his|strong="H1980"\w* \w heart|strong="H3824"\w*; +\q1 +\v 3 \w he|strong="H6213"\w* \w who|strong="H7138"\w* doesn’t \w slander|strong="H7270"\w* \w with|strong="H6213"\w* \w his|strong="H5375"\w* \w tongue|strong="H3956"\w*, +\q2 \w nor|strong="H3808"\w* \w does|strong="H6213"\w* \w evil|strong="H7451"\w* \w to|strong="H6213"\w* \w his|strong="H5375"\w* \w friend|strong="H7453"\w*, +\q2 \w nor|strong="H3808"\w* casts slurs \w against|strong="H5921"\w* \w his|strong="H5375"\w* \w fellow|strong="H7453"\w* \w man|strong="H7451"\w*; +\q1 +\v 4 \w in|strong="H3068"\w* whose \w eyes|strong="H5869"\w* \w a|strong="H3068"\w* vile man \w is|strong="H3068"\w* \w despised|strong="H3988"\w*, +\q2 \w but|strong="H3808"\w* \w who|strong="H3068"\w* \w honors|strong="H3513"\w* those \w who|strong="H3068"\w* \w fear|strong="H3373"\w* \w Yahweh|strong="H3068"\w*; +\q2 \w he|strong="H3068"\w* \w who|strong="H3068"\w* keeps \w an|strong="H7650"\w* \w oath|strong="H7650"\w* \w even|strong="H3808"\w* \w when|strong="H3068"\w* \w it|strong="H3808"\w* hurts, \w and|strong="H3068"\w* doesn’t \w change|strong="H4171"\w*; +\q1 +\v 5 \w he|strong="H6213"\w* \w who|strong="H6213"\w* doesn’t \w lend|strong="H5414"\w* \w out|strong="H5414"\w* \w his|strong="H5414"\w* \w money|strong="H3701"\w* \w for|strong="H5921"\w* \w usury|strong="H5392"\w*, +\q2 \w nor|strong="H3808"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w bribe|strong="H7810"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w innocent|strong="H5355"\w*. +\b +\q1 \w He|strong="H6213"\w* \w who|strong="H6213"\w* \w does|strong="H6213"\w* \w these|strong="H6213"\w* \w things|strong="H3808"\w* \w shall|strong="H3808"\w* \w never|strong="H3808"\w* \w be|strong="H3808"\w* \w shaken|strong="H4131"\w*. +\c 16 +\d A Poem by David. +\q1 +\v 1 \w Preserve|strong="H8104"\w* \w me|strong="H8104"\w*, God, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w take|strong="H2620"\w* \w refuge|strong="H2620"\w* \w in|strong="H1732"\w* \w you|strong="H3588"\w*. +\q1 +\v 2 \w My|strong="H3068"\w* soul, \w you|strong="H5921"\w* \w have|strong="H3068"\w* said \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, “\w You|strong="H5921"\w* \w are|strong="H3068"\w* \w my|strong="H3068"\w* \w Lord|strong="H3068"\w*. +\q2 Apart \w from|strong="H5921"\w* \w you|strong="H5921"\w* \w I|strong="H5921"\w* \w have|strong="H3068"\w* \w no|strong="H1077"\w* \w good|strong="H2896"\w* \w thing|strong="H2896"\w*.” +\q1 +\v 3 \w As|strong="H1992"\w* \w for|strong="H3605"\w* \w the|strong="H3605"\w* \w saints|strong="H6918"\w* \w who|strong="H3605"\w* \w are|strong="H1992"\w* \w in|strong="H2656"\w* \w the|strong="H3605"\w* earth, +\q2 \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w the|strong="H3605"\w* excellent \w ones|strong="H6918"\w* \w in|strong="H2656"\w* \w whom|strong="H1992"\w* \w is|strong="H3605"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w delight|strong="H2656"\w*. +\b +\q1 +\v 4 \w Their|strong="H5375"\w* \w sorrows|strong="H6094"\w* \w shall|strong="H8193"\w* \w be|strong="H8034"\w* \w multiplied|strong="H7235"\w* who \w give|strong="H7235"\w* gifts \w to|strong="H5921"\w* \w another|strong="H1818"\w* god. +\q2 \w Their|strong="H5375"\w* \w drink|strong="H5262"\w* \w offerings|strong="H5262"\w* \w of|strong="H8034"\w* \w blood|strong="H1818"\w* \w I|strong="H5921"\w* \w will|strong="H8034"\w* \w not|strong="H1077"\w* \w offer|strong="H5375"\w*, +\q2 \w nor|strong="H1077"\w* \w take|strong="H5375"\w* \w their|strong="H5375"\w* \w names|strong="H8034"\w* \w on|strong="H5921"\w* \w my|strong="H5921"\w* \w lips|strong="H8193"\w*. +\q1 +\v 5 \w Yahweh|strong="H3068"\w* assigned \w my|strong="H3068"\w* \w portion|strong="H2506"\w* \w and|strong="H3068"\w* \w my|strong="H3068"\w* \w cup|strong="H3563"\w*. +\q2 You \w made|strong="H3068"\w* \w my|strong="H3068"\w* \w lot|strong="H1486"\w* secure. +\b +\q1 +\v 6 \w The|strong="H5921"\w* \w lines|strong="H2256"\w* \w have|strong="H5307"\w* \w fallen|strong="H5307"\w* \w to|strong="H5921"\w* \w me|strong="H5921"\w* \w in|strong="H5921"\w* \w pleasant|strong="H5273"\w* places. +\q2 Yes, \w I|strong="H5921"\w* \w have|strong="H5307"\w* \w a|strong="H3068"\w* good \w inheritance|strong="H5159"\w*. +\q1 +\v 7 \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w bless|strong="H1288"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H3289"\w* \w me|strong="H1288"\w* \w counsel|strong="H3289"\w*. +\q2 Yes, \w my|strong="H3068"\w* \w heart|strong="H3629"\w* \w instructs|strong="H3256"\w* \w me|strong="H1288"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w night|strong="H3915"\w* \w seasons|strong="H3915"\w*. +\q1 +\v 8 \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w set|strong="H7737"\w* \w Yahweh|strong="H3068"\w* \w always|strong="H8548"\w* \w before|strong="H5048"\w* \w me|strong="H5048"\w*. +\q2 \w Because|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H3068"\w* \w at|strong="H3068"\w* \w my|strong="H3068"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w*, \w I|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H1077"\w* \w be|strong="H3068"\w* \w moved|strong="H4131"\w*. +\q1 +\v 9 \w Therefore|strong="H3651"\w* \w my|strong="H3651"\w* \w heart|strong="H3820"\w* \w is|strong="H3820"\w* \w glad|strong="H8055"\w*, \w and|strong="H3820"\w* \w my|strong="H3651"\w* tongue \w rejoices|strong="H8055"\w*. +\q2 \w My|strong="H3651"\w* \w body|strong="H1320"\w* \w shall|strong="H3820"\w* \w also|strong="H3820"\w* \w dwell|strong="H7931"\w* \w in|strong="H7931"\w* safety. +\q1 +\v 10 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H5315"\w* \w not|strong="H3808"\w* \w leave|strong="H5800"\w* \w my|strong="H5414"\w* \w soul|strong="H5315"\w* \w in|strong="H5315"\w* \w Sheol|strong="H7585"\w*,\f + \fr 16:10 \ft Sheol is the place of the dead.\f* +\q2 \w neither|strong="H3808"\w* \w will|strong="H5315"\w* \w you|strong="H3588"\w* \w allow|strong="H5414"\w* \w your|strong="H5414"\w* \w holy|strong="H2623"\w* \w one|strong="H3808"\w* \w to|strong="H5414"\w* \w see|strong="H7200"\w* \w corruption|strong="H7845"\w*. +\q1 +\v 11 \w You|strong="H6440"\w* \w will|strong="H3225"\w* \w show|strong="H3045"\w* \w me|strong="H6440"\w* \w the|strong="H6440"\w* path \w of|strong="H6440"\w* \w life|strong="H2416"\w*. +\q2 \w In|strong="H6440"\w* \w your|strong="H6440"\w* \w presence|strong="H6440"\w* \w is|strong="H6440"\w* \w fullness|strong="H7648"\w* \w of|strong="H6440"\w* \w joy|strong="H8057"\w*. +\q1 \w In|strong="H6440"\w* \w your|strong="H6440"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w there|strong="H3045"\w* \w are|strong="H6440"\w* \w pleasures|strong="H5273"\w* \w forever|strong="H5331"\w* more. +\c 17 +\d A Prayer by David. +\q1 +\v 1 \w Hear|strong="H8085"\w*, \w Yahweh|strong="H3068"\w*, \w my|strong="H8085"\w* \w righteous|strong="H6664"\w* plea. +\q2 \w Give|strong="H7181"\w* \w ear|strong="H8085"\w* \w to|strong="H3068"\w* \w my|strong="H8085"\w* \w prayer|strong="H8605"\w* \w that|strong="H8085"\w* doesn’t \w go|strong="H3068"\w* \w out|strong="H3808"\w* \w of|strong="H3068"\w* \w deceitful|strong="H4820"\w* \w lips|strong="H8193"\w*. +\q1 +\v 2 Let \w my|strong="H3318"\w* \w sentence|strong="H4941"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H6440"\w* \w your|strong="H6440"\w* \w presence|strong="H6440"\w*. +\q2 Let \w your|strong="H6440"\w* \w eyes|strong="H5869"\w* \w look|strong="H5869"\w* \w on|strong="H3318"\w* \w equity|strong="H4339"\w*. +\q1 +\v 3 \w You|strong="H6485"\w* \w have|strong="H4672"\w* \w proved|strong="H6884"\w* \w my|strong="H5674"\w* \w heart|strong="H3820"\w*. +\q2 \w You|strong="H6485"\w* \w have|strong="H4672"\w* \w visited|strong="H6485"\w* \w me|strong="H5674"\w* \w in|strong="H4672"\w* \w the|strong="H5674"\w* \w night|strong="H3915"\w*. +\q2 \w You|strong="H6485"\w* \w have|strong="H4672"\w* \w tried|strong="H6884"\w* \w me|strong="H5674"\w*, \w and|strong="H3915"\w* \w found|strong="H4672"\w* \w nothing|strong="H1077"\w*. +\q2 \w I|strong="H4672"\w* \w have|strong="H4672"\w* resolved \w that|strong="H6485"\w* \w my|strong="H5674"\w* \w mouth|strong="H6310"\w* \w shall|strong="H3820"\w* \w not|strong="H1077"\w* disobey. +\q1 +\v 4 \w As|strong="H1697"\w* \w for|strong="H1697"\w* \w the|strong="H8104"\w* \w deeds|strong="H1697"\w* \w of|strong="H1697"\w* men, \w by|strong="H8193"\w* \w the|strong="H8104"\w* \w word|strong="H1697"\w* \w of|strong="H1697"\w* \w your|strong="H8104"\w* \w lips|strong="H8193"\w*, +\q2 \w I|strong="H1697"\w* \w have|strong="H1697"\w* \w kept|strong="H8104"\w* myself \w from|strong="H1697"\w* \w the|strong="H8104"\w* \w ways|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H8104"\w* \w violent|strong="H6530"\w*. +\q1 +\v 5 \w My|strong="H8551"\w* \w steps|strong="H6471"\w* have \w held|strong="H8551"\w* \w fast|strong="H8551"\w* \w to|strong="H4131"\w* your \w paths|strong="H4570"\w*. +\q2 \w My|strong="H8551"\w* \w feet|strong="H6471"\w* have \w not|strong="H1077"\w* \w slipped|strong="H4131"\w*. +\q1 +\v 6 \w I|strong="H3588"\w* \w have|strong="H3588"\w* \w called|strong="H7121"\w* \w on|strong="H7121"\w* \w you|strong="H3588"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H8085"\w* \w answer|strong="H6030"\w* \w me|strong="H7121"\w*, God. +\q2 \w Turn|strong="H5186"\w* \w your|strong="H5186"\w* \w ear|strong="H8085"\w* \w to|strong="H8085"\w* \w me|strong="H7121"\w*. +\q2 \w Hear|strong="H8085"\w* \w my|strong="H8085"\w* speech. +\q1 +\v 7 \w Show|strong="H6395"\w* \w your|strong="H6965"\w* marvelous loving \w kindness|strong="H2617"\w*, +\q2 \w you|strong="H3467"\w* \w who|strong="H3467"\w* \w save|strong="H3467"\w* \w those|strong="H3467"\w* \w who|strong="H3467"\w* \w take|strong="H2620"\w* \w refuge|strong="H2620"\w* \w by|strong="H6965"\w* \w your|strong="H6965"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w from|strong="H6965"\w* \w their|strong="H3225"\w* \w enemies|strong="H6965"\w*. +\q1 +\v 8 \w Keep|strong="H8104"\w* \w me|strong="H8104"\w* \w as|strong="H5869"\w* \w the|strong="H8104"\w* \w apple|strong="H1323"\w* \w of|strong="H1323"\w* \w your|strong="H8104"\w* \w eye|strong="H5869"\w*. +\q2 \w Hide|strong="H5641"\w* \w me|strong="H8104"\w* under \w the|strong="H8104"\w* \w shadow|strong="H6738"\w* \w of|strong="H1323"\w* \w your|strong="H8104"\w* \w wings|strong="H3671"\w*, +\q1 +\v 9 \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w wicked|strong="H7563"\w* \w who|strong="H5315"\w* \w oppress|strong="H7703"\w* \w me|strong="H6440"\w*, +\q2 \w my|strong="H5921"\w* \w deadly|strong="H5315"\w* enemies, \w who|strong="H5315"\w* \w surround|strong="H5362"\w* \w me|strong="H6440"\w*. +\q1 +\v 10 \w They|strong="H6310"\w* \w close|strong="H5462"\w* \w up|strong="H5462"\w* \w their|strong="H5462"\w* callous hearts. +\q2 \w With|strong="H1696"\w* \w their|strong="H5462"\w* \w mouth|strong="H6310"\w* \w they|strong="H6310"\w* \w speak|strong="H1696"\w* \w proudly|strong="H1348"\w*. +\q1 +\v 11 \w They|strong="H6258"\w* \w have|strong="H5869"\w* \w now|strong="H6258"\w* \w surrounded|strong="H5437"\w* \w us|strong="H5869"\w* \w in|strong="H5869"\w* \w our|strong="H7896"\w* steps. +\q2 \w They|strong="H6258"\w* \w set|strong="H7896"\w* \w their|strong="H5186"\w* \w eyes|strong="H5869"\w* \w to|strong="H5869"\w* \w cast|strong="H7896"\w* \w us|strong="H5869"\w* \w down|strong="H5186"\w* \w to|strong="H5869"\w* \w the|strong="H5437"\w* earth. +\q1 +\v 12 \w He|strong="H3427"\w* \w is|strong="H3427"\w* \w like|strong="H1825"\w* \w a|strong="H3068"\w* \w lion|strong="H3715"\w* \w that|strong="H3427"\w* \w is|strong="H3427"\w* \w greedy|strong="H3700"\w* \w of|strong="H3427"\w* \w his|strong="H3427"\w* \w prey|strong="H2963"\w*, +\q2 \w as|strong="H3427"\w* it \w were|strong="H3427"\w* \w a|strong="H3068"\w* \w young|strong="H3715"\w* \w lion|strong="H3715"\w* \w lurking|strong="H3427"\w* \w in|strong="H3427"\w* \w secret|strong="H4565"\w* \w places|strong="H4565"\w*. +\q1 +\v 13 \w Arise|strong="H6965"\w*, \w Yahweh|strong="H3068"\w*, \w confront|strong="H6923"\w* \w him|strong="H6440"\w*. +\q2 \w Cast|strong="H3068"\w* \w him|strong="H6440"\w* \w down|strong="H3766"\w*. +\q1 \w Deliver|strong="H6403"\w* \w my|strong="H3068"\w* \w soul|strong="H5315"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w wicked|strong="H7563"\w* \w by|strong="H3068"\w* \w your|strong="H3068"\w* \w sword|strong="H2719"\w*, +\q2 +\v 14 \w from|strong="H3027"\w* \w men|strong="H1121"\w* \w by|strong="H3027"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*, \w Yahweh|strong="H3068"\w*, +\q2 \w from|strong="H3027"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w world|strong="H2465"\w*, \w whose|strong="H1121"\w* \w portion|strong="H2506"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w this|strong="H3068"\w* \w life|strong="H2416"\w*. +\q1 \w You|strong="H3027"\w* \w fill|strong="H4390"\w* \w the|strong="H3068"\w* belly \w of|strong="H1121"\w* \w your|strong="H3068"\w* cherished \w ones|strong="H5768"\w*. +\q2 \w Your|strong="H3068"\w* \w sons|strong="H1121"\w* \w have|strong="H3068"\w* \w plenty|strong="H7646"\w*, +\q2 \w and|strong="H1121"\w* \w they|strong="H3068"\w* store \w up|strong="H3240"\w* wealth \w for|strong="H3027"\w* \w their|strong="H3068"\w* \w children|strong="H1121"\w*. +\q1 +\v 15 \w As|strong="H6440"\w* \w for|strong="H6440"\w* \w me|strong="H6440"\w*, \w I|strong="H6440"\w* \w shall|strong="H6440"\w* \w see|strong="H2372"\w* \w your|strong="H6440"\w* \w face|strong="H6440"\w* \w in|strong="H6440"\w* \w righteousness|strong="H6664"\w*. +\q2 \w I|strong="H6440"\w* \w shall|strong="H6440"\w* \w be|strong="H6440"\w* \w satisfied|strong="H7646"\w*, \w when|strong="H2372"\w* \w I|strong="H6440"\w* \w awake|strong="H6974"\w*, \w with|strong="H7646"\w* \w seeing|strong="H2372"\w* \w your|strong="H6440"\w* \w form|strong="H8544"\w*. +\c 18 +\d For the Chief Musician. By David the servant of Yahweh, who spoke to Yahweh the words of this song in the day that Yahweh delivered him from the hand of all his enemies, and from the hand of Saul. He said, +\q1 +\v 1 \w I|strong="H3117"\w* love \w you|strong="H3605"\w*, \w Yahweh|strong="H3068"\w*, \w my|strong="H3605"\w* \w strength|strong="H3027"\w*. +\q1 +\v 2 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w my|strong="H3068"\w* rock, \w my|strong="H3068"\w* fortress, \w and|strong="H3068"\w* \w my|strong="H3068"\w* deliverer; +\q2 \w my|strong="H3068"\w* \w God|strong="H3068"\w*, \w my|strong="H3068"\w* rock, \w in|strong="H3068"\w* whom \w I|strong="H3068"\w* take refuge; +\q2 \w my|strong="H3068"\w* shield, \w and|strong="H3068"\w* \w the|strong="H3068"\w* horn \w of|strong="H3068"\w* \w my|strong="H3068"\w* salvation, \w my|strong="H3068"\w* high tower. +\q1 +\v 3 \w I|strong="H3068"\w* call \w on|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H3068"\w* \w is|strong="H3068"\w* worthy \w to|strong="H3068"\w* \w be|strong="H3068"\w* praised; +\q2 \w and|strong="H3068"\w* \w I|strong="H3068"\w* \w am|strong="H3068"\w* saved \w from|strong="H3068"\w* \w my|strong="H3068"\w* enemies. +\q1 +\v 4 \w The|strong="H3068"\w* cords \w of|strong="H3068"\w* death surrounded \w me|strong="H7121"\w*. +\q2 \w The|strong="H3068"\w* floods \w of|strong="H3068"\w* ungodliness \w made|strong="H7121"\w* \w me|strong="H7121"\w* afraid. +\q1 +\v 5 \w The|strong="H4194"\w* \w cords|strong="H2256"\w* \w of|strong="H5158"\w* Sheol\f + \fr 18:5 \ft Sheol is the place of the dead.\f* \w were|strong="H4194"\w* around me. +\q2 \w The|strong="H4194"\w* snares \w of|strong="H5158"\w* \w death|strong="H4194"\w* came \w on|strong="H4194"\w* me. +\q1 +\v 6 \w In|strong="H7585"\w* \w my|strong="H5437"\w* distress \w I|strong="H4194"\w* called \w on|strong="H4194"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H5437"\w* cried \w to|strong="H5437"\w* \w my|strong="H5437"\w* God. +\q1 \w He|strong="H4194"\w* heard \w my|strong="H5437"\w* voice \w out|strong="H5437"\w* \w of|strong="H4194"\w* \w his|strong="H5437"\w* temple. +\q2 \w My|strong="H5437"\w* cry \w before|strong="H6923"\w* \w him|strong="H7585"\w* came into \w his|strong="H5437"\w* ears. +\q1 +\v 7 \w Then|strong="H8085"\w* \w the|strong="H6440"\w* earth shook \w and|strong="H3068"\w* trembled. +\q2 \w The|strong="H6440"\w* foundations \w also|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* mountains quaked \w and|strong="H3068"\w* \w were|strong="H3068"\w* shaken, +\q2 \w because|strong="H6440"\w* \w he|strong="H3068"\w* \w was|strong="H3068"\w* angry. +\q1 +\v 8 Smoke went \w out|strong="H7264"\w* \w of|strong="H2022"\w* \w his|strong="H3588"\w* nostrils. +\q2 Consuming fire came \w out|strong="H7264"\w* \w of|strong="H2022"\w* \w his|strong="H3588"\w* mouth. +\q2 Coals \w were|strong="H2022"\w* \w kindled|strong="H2734"\w* \w by|strong="H3588"\w* \w it|strong="H3588"\w*. +\q1 +\v 9 \w He|strong="H4480"\w* bowed \w the|strong="H4480"\w* heavens also, \w and|strong="H5927"\w* \w came|strong="H5927"\w* down. +\q2 Thick darkness \w was|strong="H6310"\w* \w under|strong="H4480"\w* \w his|strong="H4480"\w* feet. +\q1 +\v 10 \w He|strong="H7272"\w* rode \w on|strong="H8478"\w* \w a|strong="H3068"\w* cherub, \w and|strong="H8064"\w* flew. +\q2 Yes, \w he|strong="H7272"\w* soared \w on|strong="H8478"\w* \w the|strong="H8478"\w* wings \w of|strong="H8478"\w* \w the|strong="H8478"\w* wind. +\q1 +\v 11 \w He|strong="H5921"\w* \w made|strong="H7307"\w* darkness \w his|strong="H5921"\w* hiding place, \w his|strong="H5921"\w* pavilion \w around|strong="H5921"\w* \w him|strong="H5921"\w*, +\q2 darkness \w of|strong="H7307"\w* waters, thick clouds \w of|strong="H7307"\w* \w the|strong="H5921"\w* \w skies|strong="H5921"\w*. +\q1 +\v 12 \w At|strong="H4325"\w* \w the|strong="H5439"\w* brightness before \w him|strong="H7896"\w* \w his|strong="H7896"\w* \w thick|strong="H5645"\w* \w clouds|strong="H5645"\w* \w passed|strong="H4325"\w*, +\q2 hailstones \w and|strong="H4325"\w* coals \w of|strong="H4325"\w* fire. +\q1 +\v 13 \w Yahweh|strong="H3068"\w* \w also|strong="H1259"\w* thundered \w in|strong="H5674"\w* \w the|strong="H5674"\w* sky. +\q2 \w The|strong="H5674"\w* Most High uttered \w his|strong="H5674"\w* voice: +\q2 \w hailstones|strong="H1259"\w* \w and|strong="H5674"\w* \w coals|strong="H1513"\w* \w of|strong="H1513"\w* \w fire|strong="H1513"\w*. +\q1 +\v 14 \w He|strong="H3068"\w* \w sent|strong="H5414"\w* \w out|strong="H5414"\w* \w his|strong="H5414"\w* arrows, \w and|strong="H3068"\w* scattered \w them|strong="H5414"\w*. +\q2 \w He|strong="H3068"\w* routed \w them|strong="H5414"\w* \w with|strong="H3068"\w* great lightning bolts. +\q1 +\v 15 \w Then|strong="H7971"\w* \w the|strong="H7971"\w* channels \w of|strong="H2671"\w* waters appeared. +\q2 \w The|strong="H7971"\w* foundations \w of|strong="H2671"\w* \w the|strong="H7971"\w* world were \w laid|strong="H7971"\w* bare \w at|strong="H7971"\w* \w your|strong="H7971"\w* rebuke, \w Yahweh|strong="H3068"\w*, +\q2 \w at|strong="H7971"\w* \w the|strong="H7971"\w* blast \w of|strong="H2671"\w* \w the|strong="H7971"\w* breath \w of|strong="H2671"\w* \w your|strong="H7971"\w* nostrils. +\q1 +\v 16 \w He|strong="H3068"\w* \w sent|strong="H1540"\w* \w from|strong="H1540"\w* \w on|strong="H7200"\w* high. +\q2 \w He|strong="H3068"\w* took \w me|strong="H7200"\w*. +\q2 \w He|strong="H3068"\w* drew \w me|strong="H7200"\w* \w out|strong="H7200"\w* \w of|strong="H3068"\w* \w many|strong="H7200"\w* \w waters|strong="H4325"\w*. +\q1 +\v 17 \w He|strong="H7971"\w* \w delivered|strong="H7971"\w* \w me|strong="H7971"\w* \w from|strong="H7971"\w* \w my|strong="H3947"\w* strong enemy, +\q2 \w from|strong="H7971"\w* those \w who|strong="H7227"\w* hated \w me|strong="H7971"\w*; \w for|strong="H7971"\w* \w they|strong="H3947"\w* \w were|strong="H4325"\w* \w too|strong="H7227"\w* \w mighty|strong="H7227"\w* \w for|strong="H7971"\w* \w me|strong="H7971"\w*. +\q1 +\v 18 \w They|strong="H3588"\w* \w came|strong="H5794"\w* \w on|strong="H4480"\w* \w me|strong="H8130"\w* \w in|strong="H4480"\w* \w the|strong="H3588"\w* day \w of|strong="H4480"\w* \w my|strong="H5337"\w* calamity, +\q2 \w but|strong="H3588"\w* \w Yahweh|strong="H3068"\w* was \w my|strong="H5337"\w* support. +\q1 +\v 19 \w He|strong="H3117"\w* \w brought|strong="H1961"\w* \w me|strong="H1961"\w* out \w also|strong="H3068"\w* \w into|strong="H1961"\w* \w a|strong="H3068"\w* large \w place|strong="H1961"\w*. +\q2 \w He|strong="H3117"\w* \w delivered|strong="H3068"\w* \w me|strong="H1961"\w*, \w because|strong="H3117"\w* \w he|strong="H3117"\w* delighted \w in|strong="H3068"\w* \w me|strong="H1961"\w*. +\q1 +\v 20 \w Yahweh|strong="H3068"\w* \w has|strong="H3588"\w* rewarded \w me|strong="H3318"\w* according \w to|strong="H3318"\w* \w my|strong="H3318"\w* righteousness. +\q2 According \w to|strong="H3318"\w* \w the|strong="H3588"\w* cleanness \w of|strong="H3318"\w* \w my|strong="H3318"\w* hands, \w he|strong="H3588"\w* \w has|strong="H3588"\w* recompensed \w me|strong="H3318"\w*. +\q1 +\v 21 \w For|strong="H3027"\w* \w I|strong="H3027"\w* \w have|strong="H3068"\w* kept \w the|strong="H3068"\w* ways \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w not|strong="H7725"\w* wickedly departed \w from|strong="H7725"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*. +\q1 +\v 22 \w For|strong="H3588"\w* \w all|strong="H3068"\w* \w his|strong="H8104"\w* ordinances \w were|strong="H1870"\w* \w before|strong="H3808"\w* \w me|strong="H8104"\w*. +\q2 \w I|strong="H3588"\w* didn’t \w put|strong="H3068"\w* \w away|strong="H1870"\w* \w his|strong="H8104"\w* statutes \w from|strong="H3068"\w* \w me|strong="H8104"\w*. +\q1 +\v 23 \w I|strong="H3588"\w* \w was|strong="H3605"\w* \w also|strong="H3588"\w* blameless \w with|strong="H4941"\w* \w him|strong="H3605"\w*. +\q2 \w I|strong="H3588"\w* kept myself \w from|strong="H4480"\w* \w my|strong="H3605"\w* iniquity. +\q1 +\v 24 \w Therefore|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H1961"\w* rewarded \w me|strong="H5973"\w* according \w to|strong="H1961"\w* \w my|strong="H8104"\w* righteousness, +\q2 according \w to|strong="H1961"\w* \w the|strong="H8104"\w* cleanness \w of|strong="H5771"\w* \w my|strong="H8104"\w* hands \w in|strong="H8549"\w* \w his|strong="H8104"\w* eyesight. +\q1 +\v 25 \w With|strong="H3068"\w* \w the|strong="H3068"\w* merciful \w you|strong="H7725"\w* \w will|strong="H3068"\w* show yourself merciful. +\q2 \w With|strong="H3068"\w* \w the|strong="H3068"\w* perfect man, \w you|strong="H7725"\w* \w will|strong="H3068"\w* show yourself perfect. +\q1 +\v 26 \w With|strong="H5973"\w* \w the|strong="H5973"\w* pure, \w you|strong="H5973"\w* \w will|strong="H8549"\w* \w show|strong="H8552"\w* \w yourself|strong="H2616"\w* pure. +\q2 \w With|strong="H5973"\w* \w the|strong="H5973"\w* crooked \w you|strong="H5973"\w* \w will|strong="H8549"\w* \w show|strong="H8552"\w* \w yourself|strong="H2616"\w* shrewd. +\q1 +\v 27 \w For|strong="H5973"\w* \w you|strong="H5973"\w* will save \w the|strong="H5973"\w* afflicted people, +\q2 \w but|strong="H6617"\w* \w the|strong="H5973"\w* arrogant eyes \w you|strong="H5973"\w* will bring down. +\q1 +\v 28 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H5971"\w* light \w my|strong="H7311"\w* lamp, \w Yahweh|strong="H3068"\w*. +\q2 \w My|strong="H7311"\w* God \w will|strong="H5971"\w* light \w up|strong="H7311"\w* \w my|strong="H7311"\w* darkness. +\q1 +\v 29 \w For|strong="H3588"\w* \w by|strong="H3068"\w* \w you|strong="H3588"\w*, \w I|strong="H3588"\w* advance \w through|strong="H3588"\w* \w a|strong="H3068"\w* troop. +\q2 \w By|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*, \w I|strong="H3588"\w* leap \w over|strong="H3068"\w* \w a|strong="H3068"\w* wall. +\q1 +\v 30 \w As|strong="H3588"\w* \w for|strong="H3588"\w* God, \w his|strong="H3588"\w* way \w is|strong="H3588"\w* perfect. +\q2 \w Yahweh|strong="H3068"\w*’s word \w is|strong="H3588"\w* tried. +\q2 \w He|strong="H3588"\w* \w is|strong="H3588"\w* \w a|strong="H3068"\w* shield \w to|strong="H7323"\w* all \w those|strong="H3588"\w* \w who|strong="H3588"\w* take refuge \w in|strong="H3588"\w* \w him|strong="H3588"\w*. +\q1 +\v 31 \w For|strong="H3068"\w* \w who|strong="H3605"\w* \w is|strong="H3068"\w* \w God|strong="H3068"\w*, except \w Yahweh|strong="H3068"\w*? +\q2 \w Who|strong="H3605"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* rock, besides \w our|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 +\v 32 \w the|strong="H3588"\w* \w God|strong="H3068"\w* \w who|strong="H4310"\w* arms \w me|strong="H1107"\w* \w with|strong="H3068"\w* \w strength|strong="H6697"\w*, \w and|strong="H3068"\w* \w makes|strong="H3068"\w* \w my|strong="H3068"\w* way perfect? +\q1 +\v 33 \w He|strong="H5414"\w* \w makes|strong="H5414"\w* \w my|strong="H5414"\w* feet \w like|strong="H1870"\w* deer’s feet, +\q2 \w and|strong="H1870"\w* sets \w me|strong="H5414"\w* \w on|strong="H1870"\w* \w my|strong="H5414"\w* high places. +\q1 +\v 34 \w He|strong="H5921"\w* teaches \w my|strong="H5921"\w* hands \w to|strong="H5921"\w* war, +\q2 \w so|strong="H5975"\w* \w that|strong="H1116"\w* \w my|strong="H5921"\w* arms bend \w a|strong="H3068"\w* bow \w of|strong="H5921"\w* bronze. +\q1 +\v 35 \w You|strong="H3925"\w* \w have|strong="H3027"\w* \w also|strong="H3027"\w* \w given|strong="H3027"\w* \w me|strong="H3925"\w* \w the|strong="H3027"\w* shield \w of|strong="H3027"\w* \w your|strong="H3027"\w* salvation. +\q2 \w Your|strong="H3027"\w* right \w hand|strong="H3027"\w* sustains \w me|strong="H3925"\w*. +\q2 \w Your|strong="H3027"\w* gentleness \w has|strong="H3027"\w* made \w me|strong="H3925"\w* great. +\q1 +\v 36 \w You|strong="H5414"\w* \w have|strong="H5414"\w* enlarged \w my|strong="H5414"\w* steps \w under|strong="H5414"\w* \w me|strong="H5414"\w*, +\q2 \w My|strong="H5414"\w* feet \w have|strong="H5414"\w* \w not|strong="H5414"\w* slipped. +\q1 +\v 37 \w I|strong="H3808"\w* \w will|strong="H3808"\w* pursue \w my|strong="H8478"\w* enemies, \w and|strong="H8478"\w* overtake \w them|strong="H8478"\w*. +\q2 \w I|strong="H3808"\w* won’t turn away until \w they|strong="H3808"\w* \w are|strong="H8478"\w* consumed. +\q1 +\v 38 \w I|strong="H5704"\w* \w will|strong="H3808"\w* strike \w them|strong="H7725"\w* through, \w so|strong="H3808"\w* \w that|strong="H5704"\w* \w they|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w able|strong="H5381"\w* \w to|strong="H5704"\w* rise. +\q2 \w They|strong="H3808"\w* \w shall|strong="H3808"\w* fall under \w my|strong="H7725"\w* feet. +\q1 +\v 39 \w For|strong="H8478"\w* \w you|strong="H3808"\w* \w have|strong="H7272"\w* armed \w me|strong="H3808"\w* \w with|strong="H6965"\w* strength \w to|strong="H3201"\w* \w the|strong="H8478"\w* battle. +\q2 \w You|strong="H3808"\w* \w have|strong="H7272"\w* subdued \w under|strong="H8478"\w* \w me|strong="H3808"\w* those \w who|strong="H3808"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H6965"\w* \w me|strong="H3808"\w*. +\q1 +\v 40 \w You|strong="H8478"\w* \w have|strong="H2428"\w* also made \w my|strong="H6965"\w* \w enemies|strong="H6965"\w* turn \w their|strong="H8478"\w* backs \w to|strong="H6965"\w* \w me|strong="H3766"\w*, +\q2 \w that|strong="H4421"\w* \w I|strong="H6965"\w* \w might|strong="H2428"\w* cut off those \w who|strong="H4421"\w* hate \w me|strong="H3766"\w*. +\q1 +\v 41 \w They|strong="H5414"\w* \w cried|strong="H5414"\w*, but there \w was|strong="H5414"\w* \w no|strong="H5414"\w* one \w to|strong="H5414"\w* save; +\q2 even \w to|strong="H5414"\w* \w Yahweh|strong="H3068"\w*, but \w he|strong="H5414"\w* didn’t answer \w them|strong="H5414"\w*. +\q1 +\v 42 \w Then|strong="H6030"\w* \w I|strong="H5921"\w* beat \w them|strong="H5921"\w* small \w as|strong="H3068"\w* \w the|strong="H5921"\w* dust \w before|strong="H5921"\w* \w the|strong="H5921"\w* wind. +\q2 \w I|strong="H5921"\w* \w cast|strong="H3068"\w* \w them|strong="H5921"\w* \w out|strong="H5921"\w* \w as|strong="H3068"\w* \w the|strong="H5921"\w* mire \w of|strong="H3068"\w* \w the|strong="H5921"\w* streets. +\q1 +\v 43 \w You|strong="H6440"\w* \w have|strong="H5921"\w* delivered \w me|strong="H6440"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* strivings \w of|strong="H6440"\w* \w the|strong="H6440"\w* people. +\q2 \w You|strong="H6440"\w* \w have|strong="H5921"\w* \w made|strong="H7307"\w* \w me|strong="H6440"\w* \w the|strong="H6440"\w* \w head|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w nations|strong="H6440"\w*. +\q1 \w A|strong="H3068"\w* people \w whom|strong="H6440"\w* \w I|strong="H5921"\w* \w have|strong="H5921"\w* \w not|strong="H6440"\w* known \w shall|strong="H7307"\w* \w serve|strong="H6440"\w* \w me|strong="H6440"\w*. +\q2 +\v 44 \w As|strong="H5971"\w* soon \w as|strong="H5971"\w* \w they|strong="H3808"\w* hear \w of|strong="H7218"\w* \w me|strong="H7760"\w* \w they|strong="H3808"\w* \w shall|strong="H5971"\w* \w obey|strong="H3045"\w* \w me|strong="H7760"\w*. +\q2 \w The|strong="H5647"\w* \w foreigners|strong="H1471"\w* \w shall|strong="H5971"\w* submit \w themselves|strong="H7760"\w* \w to|strong="H5971"\w* \w me|strong="H7760"\w*. +\q1 +\v 45 \w The|strong="H8085"\w* \w foreigners|strong="H1121"\w* \w shall|strong="H1121"\w* fade away, +\q2 \w and|strong="H1121"\w* \w shall|strong="H1121"\w* come trembling out \w of|strong="H1121"\w* \w their|strong="H8085"\w* strongholds. +\q1 +\v 46 \w Yahweh|strong="H3068"\w* lives! Blessed \w be|strong="H1121"\w* my rock. +\q2 Exalted \w be|strong="H1121"\w* \w the|strong="H1121"\w* God \w of|strong="H1121"\w* my salvation, +\q1 +\v 47 \w even|strong="H3068"\w* \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w who|strong="H3068"\w* executes vengeance \w for|strong="H3068"\w* \w me|strong="H7311"\w*, +\q2 \w and|strong="H3068"\w* subdues peoples under \w me|strong="H7311"\w*. +\q1 +\v 48 \w He|strong="H5414"\w* rescues \w me|strong="H5414"\w* \w from|strong="H8478"\w* \w my|strong="H5414"\w* enemies. +\q2 Yes, \w you|strong="H5414"\w* \w lift|strong="H5414"\w* \w me|strong="H5414"\w* \w up|strong="H5414"\w* above \w those|strong="H1696"\w* \w who|strong="H5971"\w* rise \w up|strong="H5414"\w* \w against|strong="H1696"\w* \w me|strong="H5414"\w*. +\q2 \w You|strong="H5414"\w* \w deliver|strong="H5414"\w* \w me|strong="H5414"\w* \w from|strong="H8478"\w* \w the|strong="H5414"\w* violent man. +\q1 +\v 49 Therefore \w I|strong="H6965"\w* \w will|strong="H2555"\w* \w give|strong="H7311"\w* thanks \w to|strong="H6965"\w* \w you|strong="H4480"\w*, \w Yahweh|strong="H3068"\w*, \w among|strong="H4480"\w* \w the|strong="H4480"\w* nations, +\q2 \w and|strong="H6965"\w* \w will|strong="H2555"\w* sing praises \w to|strong="H6965"\w* \w your|strong="H4480"\w* name. +\q1 +\v 50 \w He|strong="H3651"\w* gives great deliverance \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w king|strong="H5921"\w*, +\q2 \w and|strong="H3068"\w* shows loving kindness \w to|strong="H3068"\w* \w his|strong="H3068"\w* anointed, +\q2 \w to|strong="H3068"\w* David \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* offspring,\f + \fr 18:50 \ft or, seed\f* forever \w more|strong="H3651"\w*. +\c 19 +\d For the Chief Musician. A Psalm by David. +\q1 +\v 1 \w The|strong="H1732"\w* heavens declare \w the|strong="H1732"\w* glory \w of|strong="H4210"\w* God. +\q2 \w The|strong="H1732"\w* expanse shows \w his|strong="H1732"\w* handiwork. +\q1 +\v 2 Day after day \w they|strong="H3027"\w* pour \w out|strong="H3027"\w* speech, +\q2 \w and|strong="H8064"\w* night after night \w they|strong="H3027"\w* \w display|strong="H5046"\w* knowledge. +\q1 +\v 3 \w There|strong="H3117"\w* \w is|strong="H3117"\w* no speech \w nor|strong="H3117"\w* language +\q2 where \w their|strong="H3117"\w* voice \w is|strong="H3117"\w* not heard. +\q1 +\v 4 \w Their|strong="H8085"\w* \w voice|strong="H6963"\w* \w has|strong="H1697"\w* gone out \w through|strong="H6963"\w* \w all|strong="H1697"\w* \w the|strong="H8085"\w* earth, +\q2 \w their|strong="H8085"\w* \w words|strong="H1697"\w* \w to|strong="H8085"\w* \w the|strong="H8085"\w* end \w of|strong="H1697"\w* \w the|strong="H8085"\w* world. +\q1 \w In|strong="H8085"\w* \w them|strong="H8085"\w* \w he|strong="H1697"\w* \w has|strong="H1697"\w* set \w a|strong="H3068"\w* tent \w for|strong="H1697"\w* \w the|strong="H8085"\w* sun, +\q2 +\v 5 \w which|strong="H3605"\w* \w is|strong="H3605"\w* \w as|strong="H3318"\w* \w a|strong="H3068"\w* bridegroom \w coming|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3605"\w* \w his|strong="H3605"\w* room, +\q2 \w like|strong="H3318"\w* \w a|strong="H3068"\w* strong \w man|strong="H3605"\w* rejoicing \w to|strong="H3318"\w* \w run|strong="H7097"\w* \w his|strong="H3605"\w* course. +\q1 +\v 6 \w His|strong="H3318"\w* \w going|strong="H3318"\w* \w out|strong="H3318"\w* \w is|strong="H1931"\w* \w from|strong="H3318"\w* \w the|strong="H3318"\w* \w end|strong="H3318"\w* \w of|strong="H1368"\w* \w the|strong="H3318"\w* heavens, +\q2 \w his|strong="H3318"\w* circuit \w to|strong="H3318"\w* \w its|strong="H3318"\w* ends. +\q2 There \w is|strong="H1931"\w* nothing hidden \w from|strong="H3318"\w* \w its|strong="H3318"\w* heat. +\b +\q1 +\v 7 \w Yahweh|strong="H3068"\w*’s law \w is|strong="H4161"\w* perfect, restoring \w the|strong="H5921"\w* soul. +\q2 \w Yahweh|strong="H3068"\w*’s covenant \w is|strong="H4161"\w* sure, making wise \w the|strong="H5921"\w* simple. +\q1 +\v 8 \w Yahweh|strong="H3068"\w*’s precepts \w are|strong="H3068"\w* \w right|strong="H3068"\w*, rejoicing \w the|strong="H3068"\w* \w heart|strong="H5315"\w*. +\q2 \w Yahweh|strong="H3068"\w*’s commandment \w is|strong="H3068"\w* pure, enlightening \w the|strong="H3068"\w* eyes. +\q1 +\v 9 \w The|strong="H3068"\w* fear \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w clean|strong="H1249"\w*, enduring forever. +\q2 \w Yahweh|strong="H3068"\w*’s \w ordinances|strong="H4687"\w* \w are|strong="H5869"\w* \w true|strong="H3068"\w*, \w and|strong="H3068"\w* \w righteous|strong="H3477"\w* altogether. +\q1 +\v 10 \w They|strong="H3068"\w* \w are|strong="H3068"\w* more \w to|strong="H3068"\w* \w be|strong="H3068"\w* desired \w than|strong="H3068"\w* gold, yes, \w than|strong="H3068"\w* much fine gold, +\q2 sweeter \w also|strong="H3068"\w* \w than|strong="H3068"\w* honey \w and|strong="H3068"\w* \w the|strong="H3068"\w* extract \w of|strong="H3068"\w* \w the|strong="H3068"\w* honeycomb. +\q1 +\v 11 Moreover \w your|strong="H2530"\w* servant \w is|strong="H2091"\w* warned \w by|strong="H2091"\w* them. +\q2 \w In|strong="H7227"\w* keeping them there \w is|strong="H2091"\w* \w great|strong="H7227"\w* reward. +\q1 +\v 12 \w Who|strong="H5650"\w* \w can|strong="H5650"\w* discern \w his|strong="H8104"\w* errors? +\q2 Forgive \w me|strong="H8104"\w* \w from|strong="H5650"\w* hidden errors. +\b +\q1 +\v 13 Keep back \w your|strong="H5641"\w* servant also \w from|strong="H5352"\w* presumptuous sins. +\q2 Let them not have dominion over \w me|strong="H5641"\w*. +\q1 Then I \w will|strong="H4310"\w* be upright. +\q2 I \w will|strong="H4310"\w* be \w blameless|strong="H5352"\w* \w and|strong="H5352"\w* \w innocent|strong="H5352"\w* \w of|strong="H5352"\w* great transgression. +\q1 +\v 14 Let \w the|strong="H1571"\w* words \w of|strong="H5650"\w* \w my|strong="H5650"\w* mouth \w and|strong="H5650"\w* \w the|strong="H1571"\w* meditation \w of|strong="H5650"\w* \w my|strong="H5650"\w* heart +\q2 \w be|strong="H1571"\w* acceptable \w in|strong="H7227"\w* \w your|strong="H1571"\w* sight, +\q2 \w Yahweh|strong="H3068"\w*, \w my|strong="H5650"\w* rock, \w and|strong="H5650"\w* \w my|strong="H5650"\w* redeemer. +\c 20 +\d For the Chief Musician. A Psalm by David. +\q1 +\v 1 \w May|strong="H1732"\w* \w Yahweh|strong="H3068"\w* answer you \w in|strong="H1732"\w* \w the|strong="H1732"\w* day \w of|strong="H4210"\w* trouble. +\q2 \w May|strong="H1732"\w* \w the|strong="H1732"\w* name \w of|strong="H4210"\w* \w the|strong="H1732"\w* God \w of|strong="H4210"\w* Jacob set you up \w on|strong="H5329"\w* high, +\q2 +\v 2 send \w you|strong="H3117"\w* \w help|strong="H6030"\w* \w from|strong="H3117"\w* \w the|strong="H3068"\w* sanctuary, +\q2 \w grant|strong="H6030"\w* \w you|strong="H3117"\w* support \w from|strong="H3117"\w* Zion, +\q2 +\v 3 remember \w all|strong="H7971"\w* \w your|strong="H7971"\w* offerings, +\q2 \w and|strong="H7971"\w* accept \w your|strong="H7971"\w* \w burned|strong="H7971"\w* sacrifice. \qs Selah.\qs* +\q1 +\v 4 \w May|strong="H2142"\w* \w he|strong="H3605"\w* grant \w you|strong="H3605"\w* \w your|strong="H3605"\w* heart’s desire, +\q2 \w and|strong="H5930"\w* fulfill \w all|strong="H3605"\w* \w your|strong="H3605"\w* counsel. +\q1 +\v 5 \w We|strong="H3605"\w* \w will|strong="H5414"\w* triumph \w in|strong="H5414"\w* \w your|strong="H3605"\w* salvation. +\q2 \w In|strong="H5414"\w* \w the|strong="H3605"\w* name \w of|strong="H4390"\w* \w our|strong="H3605"\w* \w God|strong="H5414"\w*, \w we|strong="H3068"\w* \w will|strong="H5414"\w* \w set|strong="H5414"\w* \w up|strong="H5414"\w* \w our|strong="H3605"\w* banners. +\q2 \w May|strong="H5414"\w* \w Yahweh|strong="H3068"\w* \w grant|strong="H5414"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* requests. +\q1 +\v 6 Now \w I|strong="H3068"\w* know \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* saves \w his|strong="H3605"\w* anointed. +\q2 \w He|strong="H3068"\w* \w will|strong="H3068"\w* answer \w him|strong="H3605"\w* \w from|strong="H3068"\w* \w his|strong="H3605"\w* holy heaven, +\q2 \w with|strong="H4390"\w* \w the|strong="H3605"\w* \w saving|strong="H3444"\w* strength \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w right|strong="H3068"\w* hand. +\q1 +\v 7 Some trust \w in|strong="H3068"\w* chariots, \w and|strong="H3068"\w* some \w in|strong="H3068"\w* horses, +\q2 \w but|strong="H3588"\w* \w we|strong="H3068"\w* trust \w in|strong="H3068"\w* \w the|strong="H3588"\w* name \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*. +\q1 +\v 8 \w They|strong="H3068"\w* \w are|strong="H3068"\w* bowed down \w and|strong="H3068"\w* fallen, +\q2 \w but|strong="H3068"\w* \w we|strong="H3068"\w* rise up, \w and|strong="H3068"\w* stand upright. +\q1 +\v 9 Save, \w Yahweh|strong="H3068"\w*! +\q2 Let \w the|strong="H6965"\w* King answer us \w when|strong="H5307"\w* \w we|strong="H3068"\w* \w call|strong="H5749"\w*! +\c 21 +\d For the Chief Musician. A Psalm by David. +\q1 +\v 1 \w The|strong="H1732"\w* king rejoices \w in|strong="H1732"\w* \w your|strong="H1732"\w* strength, \w Yahweh|strong="H3068"\w*! +\q2 How greatly \w he|strong="H1732"\w* rejoices \w in|strong="H1732"\w* \w your|strong="H1732"\w* salvation! +\q1 +\v 2 \w You|strong="H4100"\w* \w have|strong="H3068"\w* \w given|strong="H8055"\w* \w him|strong="H8055"\w* \w his|strong="H3068"\w* heart’s desire, +\q2 \w and|strong="H3068"\w* \w have|strong="H3068"\w* not withheld \w the|strong="H3068"\w* request \w of|strong="H4428"\w* \w his|strong="H3068"\w* lips. \qs Selah.\qs* +\q1 +\v 3 \w For|strong="H5414"\w* \w you|strong="H5414"\w* meet \w him|strong="H5414"\w* \w with|strong="H3820"\w* \w the|strong="H5414"\w* blessings \w of|strong="H3820"\w* goodness. +\q2 \w You|strong="H5414"\w* \w set|strong="H5414"\w* \w a|strong="H3068"\w* crown \w of|strong="H3820"\w* fine gold \w on|strong="H5414"\w* \w his|strong="H5414"\w* head. +\q1 +\v 4 \w He|strong="H3588"\w* asked life \w of|strong="H7218"\w* \w you|strong="H3588"\w* \w and|strong="H7218"\w* \w you|strong="H3588"\w* gave \w it|strong="H3588"\w* \w to|strong="H2896"\w* \w him|strong="H7896"\w*, +\q2 \w even|strong="H3588"\w* length \w of|strong="H7218"\w* days forever \w and|strong="H7218"\w* ever. +\q1 +\v 5 \w His|strong="H5414"\w* glory \w is|strong="H3117"\w* great \w in|strong="H3117"\w* \w your|strong="H5414"\w* salvation. +\q2 \w You|strong="H5414"\w* \w lay|strong="H5414"\w* honor \w and|strong="H3117"\w* majesty \w on|strong="H3117"\w* \w him|strong="H5414"\w*. +\q1 +\v 6 \w For|strong="H5921"\w* \w you|strong="H5921"\w* \w make|strong="H7737"\w* \w him|strong="H5921"\w* most blessed forever. +\q2 \w You|strong="H5921"\w* \w make|strong="H7737"\w* \w him|strong="H5921"\w* glad \w with|strong="H5921"\w* \w joy|strong="H5921"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w presence|strong="H5921"\w*. +\q1 +\v 7 \w For|strong="H3588"\w* \w the|strong="H6440"\w* \w king|strong="H6440"\w* trusts \w in|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w Through|strong="H3588"\w* \w the|strong="H6440"\w* loving kindness \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w Most|strong="H1293"\w* High, \w he|strong="H3588"\w* \w shall|strong="H6440"\w* \w not|strong="H3588"\w* \w be|strong="H6440"\w* moved. +\q1 +\v 8 \w Your|strong="H3068"\w* hand \w will|strong="H3068"\w* find out \w all|strong="H3068"\w* \w of|strong="H4428"\w* \w your|strong="H3068"\w* enemies. +\q2 \w Your|strong="H3068"\w* \w right|strong="H3068"\w* hand \w will|strong="H3068"\w* find out \w those|strong="H3588"\w* \w who|strong="H3068"\w* hate \w you|strong="H3588"\w*. +\q1 +\v 9 \w You|strong="H3605"\w* \w will|strong="H3027"\w* \w make|strong="H3027"\w* \w them|strong="H3027"\w* \w as|strong="H3605"\w* \w a|strong="H3068"\w* fiery furnace \w in|strong="H4672"\w* \w the|strong="H3605"\w* time \w of|strong="H3027"\w* \w your|strong="H3605"\w* anger. +\q2 \w Yahweh|strong="H3068"\w* \w will|strong="H3027"\w* swallow \w them|strong="H3027"\w* \w up|strong="H3605"\w* \w in|strong="H4672"\w* \w his|strong="H3605"\w* wrath. +\q2 \w The|strong="H3605"\w* fire \w shall|strong="H3027"\w* devour \w them|strong="H3027"\w*. +\q1 +\v 10 \w You|strong="H6440"\w* \w will|strong="H3068"\w* \w destroy|strong="H1104"\w* \w their|strong="H3068"\w* descendants \w from|strong="H6440"\w* \w the|strong="H6440"\w* earth, +\q2 \w their|strong="H3068"\w* posterity \w from|strong="H6440"\w* among \w the|strong="H6440"\w* children \w of|strong="H3068"\w* men. +\q1 +\v 11 \w For|strong="H1121"\w* they intended evil against \w you|strong="H2233"\w*. +\q2 They plotted evil against \w you|strong="H2233"\w* which cannot succeed. +\q1 +\v 12 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H7451"\w* \w make|strong="H2803"\w* \w them|strong="H5921"\w* \w turn|strong="H5186"\w* \w their|strong="H5921"\w* \w back|strong="H5186"\w*, +\q2 \w when|strong="H3588"\w* \w you|strong="H3588"\w* aim drawn bows \w at|strong="H5921"\w* \w their|strong="H5921"\w* face. +\q1 +\v 13 \w Be|strong="H6440"\w* exalted, \w Yahweh|strong="H3068"\w*, \w in|strong="H5921"\w* \w your|strong="H5921"\w* strength, +\q2 \w so|strong="H3588"\w* \w we|strong="H3068"\w* \w will|strong="H6440"\w* sing \w and|strong="H6440"\w* \w praise|strong="H3588"\w* \w your|strong="H5921"\w* \w power|strong="H3559"\w*. +\c 22 +\d For the Chief Musician; set to “The Doe of the Morning.” A Psalm by David. +\q1 +\v 1 \w My|strong="H1732"\w* God, \w my|strong="H1732"\w* God, \w why|strong="H5921"\w* \w have|strong="H1732"\w* \w you|strong="H5921"\w* forsaken \w me|strong="H5921"\w*? +\q2 \w Why|strong="H5921"\w* are \w you|strong="H5921"\w* \w so|strong="H5921"\w* \w far|strong="H5921"\w* \w from|strong="H5921"\w* helping \w me|strong="H5921"\w*, \w and|strong="H1732"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* words \w of|strong="H4210"\w* \w my|strong="H1732"\w* groaning? +\q1 +\v 2 \w My|strong="H5800"\w* God, \w I|strong="H1697"\w* cry \w in|strong="H1697"\w* \w the|strong="H1697"\w* daytime, \w but|strong="H5800"\w* \w you|strong="H4100"\w* don’t \w answer|strong="H1697"\w*; +\q2 \w in|strong="H1697"\w* \w the|strong="H1697"\w* night season, \w and|strong="H1697"\w* am not silent. +\q1 +\v 3 \w But|strong="H3808"\w* \w you|strong="H3808"\w* \w are|strong="H3915"\w* holy, +\q2 \w you|strong="H3808"\w* \w who|strong="H3808"\w* inhabit \w the|strong="H7121"\w* praises \w of|strong="H7121"\w* Israel. +\q1 +\v 4 \w Our|strong="H3478"\w* fathers trusted \w in|strong="H3427"\w* \w you|strong="H8416"\w*. +\q2 \w They|strong="H3478"\w* trusted, \w and|strong="H3478"\w* \w you|strong="H8416"\w* delivered \w them|strong="H3427"\w*. +\q1 +\v 5 They cried to you, and were \w delivered|strong="H6403"\w*. +\q2 They trusted in you, and were not disappointed. +\q1 +\v 6 \w But|strong="H3808"\w* \w I|strong="H3808"\w* am \w a|strong="H3068"\w* worm, \w and|strong="H2199"\w* \w no|strong="H3808"\w* man; +\q2 \w a|strong="H3068"\w* reproach \w of|strong="H3808"\w* men, \w and|strong="H2199"\w* despised \w by|strong="H3808"\w* \w the|strong="H3808"\w* \w people|strong="H3808"\w*. +\q1 +\v 7 All those \w who|strong="H5971"\w* see \w me|strong="H2781"\w* mock \w me|strong="H2781"\w*. +\q2 \w They|strong="H3808"\w* \w insult|strong="H2781"\w* \w me|strong="H2781"\w* \w with|strong="H5971"\w* \w their|strong="H3808"\w* lips. \w They|strong="H3808"\w* shake \w their|strong="H3808"\w* heads, saying, +\q2 +\v 8 “\w He|strong="H3605"\w* trusts \w in|strong="H7200"\w* \w Yahweh|strong="H3068"\w*. +\q2 Let \w him|strong="H7200"\w* deliver \w him|strong="H7200"\w*. +\q2 Let \w him|strong="H7200"\w* rescue \w him|strong="H7200"\w*, since \w he|strong="H3605"\w* delights \w in|strong="H7200"\w* \w him|strong="H7200"\w*.” +\q1 +\v 9 \w But|strong="H3588"\w* \w you|strong="H3588"\w* \w brought|strong="H3068"\w* \w me|strong="H5337"\w* \w out|strong="H5337"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* womb. +\q2 \w You|strong="H3588"\w* \w made|strong="H3068"\w* \w me|strong="H5337"\w* trust \w while|strong="H3588"\w* \w at|strong="H3068"\w* \w my|strong="H3068"\w* mother’s breasts. +\q1 +\v 10 \w I|strong="H3588"\w* was thrown \w on|strong="H5921"\w* \w you|strong="H3588"\w* \w from|strong="H5921"\w* \w my|strong="H5921"\w* mother’s womb. +\q2 \w You|strong="H3588"\w* \w are|strong="H7699"\w* \w my|strong="H5921"\w* God \w since|strong="H3588"\w* \w my|strong="H5921"\w* mother bore \w me|strong="H5921"\w*. +\q1 +\v 11 Don’t be \w far|strong="H5921"\w* \w from|strong="H5921"\w* \w me|strong="H5921"\w*, \w for|strong="H5921"\w* trouble is \w near|strong="H5921"\w*. +\q2 \w For|strong="H5921"\w* there is no one \w to|strong="H5921"\w* help. +\q1 +\v 12 Many bulls \w have|strong="H3588"\w* surrounded \w me|strong="H4480"\w*. +\q2 Strong bulls \w of|strong="H4480"\w* Bashan \w have|strong="H3588"\w* encircled \w me|strong="H4480"\w*. +\q1 +\v 13 They open \w their|strong="H5437"\w* mouths wide against \w me|strong="H5437"\w*, +\q2 lions tearing prey \w and|strong="H6499"\w* roaring. +\q1 +\v 14 \w I|strong="H5921"\w* am poured \w out|strong="H5921"\w* \w like|strong="H5921"\w* water. +\q2 \w All|strong="H5921"\w* \w my|strong="H5921"\w* bones \w are|strong="H6310"\w* \w out|strong="H5921"\w* \w of|strong="H6310"\w* joint. +\q1 \w My|strong="H5921"\w* heart \w is|strong="H6310"\w* \w like|strong="H5921"\w* wax. +\q2 \w It|strong="H5921"\w* \w is|strong="H6310"\w* melted \w within|strong="H5921"\w* \w me|strong="H5921"\w*. +\q1 +\v 15 \w My|strong="H3605"\w* \w strength|strong="H6106"\w* \w is|strong="H3820"\w* dried \w up|strong="H8210"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* potsherd. +\q2 \w My|strong="H3605"\w* tongue sticks \w to|strong="H1961"\w* \w the|strong="H3605"\w* roof \w of|strong="H4325"\w* \w my|strong="H3605"\w* mouth. +\q1 \w You|strong="H3605"\w* \w have|strong="H1961"\w* \w brought|strong="H1961"\w* \w me|strong="H1961"\w* \w into|strong="H8432"\w* \w the|strong="H3605"\w* dust \w of|strong="H4325"\w* death. +\q1 +\v 16 \w For|strong="H6083"\w* dogs \w have|strong="H4194"\w* surrounded \w me|strong="H8239"\w*. +\q2 \w A|strong="H3068"\w* company \w of|strong="H4194"\w* evildoers \w have|strong="H4194"\w* enclosed \w me|strong="H8239"\w*. +\q2 \w They|strong="H3581"\w* \w have|strong="H4194"\w* pierced \w my|strong="H3581"\w* hands \w and|strong="H6083"\w* feet.\f + \fr 22:16 \ft So Dead Sea Scrolls. Masoretic Text reads, “Like a lion, they pin my hands and feet.”\f* +\q1 +\v 17 \w I|strong="H3588"\w* can count \w all|strong="H5437"\w* \w of|strong="H3027"\w* \w my|strong="H3588"\w* bones. +\q1 \w They|strong="H3588"\w* look \w and|strong="H3027"\w* stare \w at|strong="H3027"\w* \w me|strong="H5437"\w*. +\q1 +\v 18 \w They|strong="H1992"\w* divide \w my|strong="H3605"\w* garments \w among|strong="H7200"\w* \w them|strong="H1992"\w*. +\q2 \w They|strong="H1992"\w* cast lots \w for|strong="H3605"\w* \w my|strong="H3605"\w* clothing. +\b +\q1 +\v 19 \w But|strong="H1992"\w* don’t \w be|strong="H3830"\w* \w far|strong="H5921"\w* \w off|strong="H5921"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w You|strong="H5921"\w* \w are|strong="H1992"\w* \w my|strong="H5921"\w* help. Hurry \w to|strong="H5921"\w* help \w me|strong="H5921"\w*! +\q1 +\v 20 Deliver \w my|strong="H3068"\w* soul \w from|strong="H3068"\w* \w the|strong="H3068"\w* sword, +\q2 \w my|strong="H3068"\w* precious life \w from|strong="H3068"\w* \w the|strong="H3068"\w* power \w of|strong="H3068"\w* \w the|strong="H3068"\w* dog. +\q1 +\v 21 \w Save|strong="H5337"\w* \w me|strong="H5315"\w* \w from|strong="H5315"\w* \w the|strong="H3027"\w* lion’s \w mouth|strong="H5315"\w*! +\q2 Yes, \w you|strong="H3027"\w* \w have|strong="H3027"\w* \w rescued|strong="H5337"\w* \w me|strong="H5315"\w* \w from|strong="H5315"\w* \w the|strong="H3027"\w* horns \w of|strong="H3027"\w* \w the|strong="H3027"\w* wild oxen. +\b +\q1 +\v 22 I \w will|strong="H6310"\w* \w declare|strong="H6030"\w* \w your|strong="H3467"\w* name \w to|strong="H6310"\w* \w my|strong="H3467"\w* brothers. +\q2 Among \w the|strong="H6030"\w* assembly, I \w will|strong="H6310"\w* praise \w you|strong="H3467"\w*. +\q1 +\v 23 \w You|strong="H8432"\w* who fear \w Yahweh|strong="H3068"\w*, \w praise|strong="H1984"\w* \w him|strong="H8034"\w*! +\q2 All \w you|strong="H8432"\w* descendants \w of|strong="H8034"\w* \w Jacob|strong="H5608"\w*, glorify \w him|strong="H8034"\w*! +\q2 Stand \w in|strong="H8432"\w* awe \w of|strong="H8034"\w* \w him|strong="H8034"\w*, all \w you|strong="H8432"\w* descendants \w of|strong="H8034"\w* Israel! +\q1 +\v 24 \w For|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3373"\w* despised \w nor|strong="H4480"\w* abhorred \w the|strong="H3605"\w* affliction \w of|strong="H3068"\w* \w the|strong="H3605"\w* afflicted, +\q2 \w neither|strong="H4480"\w* \w has|strong="H3068"\w* \w he|strong="H3068"\w* hidden \w his|strong="H3605"\w* face \w from|strong="H4480"\w* \w him|strong="H3605"\w*; +\q2 \w but|strong="H3513"\w* \w when|strong="H3068"\w* \w he|strong="H3068"\w* \w cried|strong="H3478"\w* \w to|strong="H3478"\w* \w him|strong="H3605"\w*, \w he|strong="H3068"\w* heard. +\b +\q1 +\v 25 \w My|strong="H8085"\w* \w praise|strong="H3588"\w* \w of|strong="H6440"\w* \w you|strong="H3588"\w* \w comes|strong="H6440"\w* \w in|strong="H8085"\w* \w the|strong="H6440"\w* \w great|strong="H6440"\w* assembly. +\q2 \w I|strong="H3588"\w* \w will|strong="H3808"\w* \w pay|strong="H8085"\w* \w my|strong="H8085"\w* vows \w before|strong="H6440"\w* \w those|strong="H4480"\w* \w who|strong="H6041"\w* \w fear|strong="H6440"\w* \w him|strong="H6440"\w*. +\q1 +\v 26 \w The|strong="H3373"\w* humble \w shall|strong="H5088"\w* eat \w and|strong="H8416"\w* \w be|strong="H5088"\w* satisfied. +\q2 They \w shall|strong="H5088"\w* \w praise|strong="H8416"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H7227"\w* seek after \w him|strong="H5048"\w*. +\q2 Let \w your|strong="H7999"\w* hearts live forever. +\q1 +\v 27 \w All|strong="H1875"\w* \w the|strong="H3068"\w* ends \w of|strong="H3068"\w* \w the|strong="H3068"\w* earth \w shall|strong="H3068"\w* remember \w and|strong="H3068"\w* \w turn|strong="H3824"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w All|strong="H1875"\w* \w the|strong="H3068"\w* relatives \w of|strong="H3068"\w* \w the|strong="H3068"\w* nations \w shall|strong="H3068"\w* worship \w before|strong="H2421"\w* \w you|strong="H3824"\w*. +\q1 +\v 28 \w For|strong="H6440"\w* \w the|strong="H3605"\w* \w kingdom|strong="H6440"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s. +\q2 \w He|strong="H3068"\w* \w is|strong="H3068"\w* \w the|strong="H3605"\w* ruler \w over|strong="H6440"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*. +\q1 +\v 29 \w All|strong="H3068"\w* \w the|strong="H3588"\w* rich ones \w of|strong="H3068"\w* \w the|strong="H3588"\w* earth \w shall|strong="H3068"\w* eat \w and|strong="H3068"\w* worship. +\q2 \w All|strong="H3068"\w* \w those|strong="H3588"\w* \w who|strong="H3068"\w* \w go|strong="H3068"\w* \w down|strong="H3588"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* dust \w shall|strong="H3068"\w* bow before \w him|strong="H3068"\w*, +\q2 \w even|strong="H3588"\w* \w he|strong="H3588"\w* \w who|strong="H3068"\w* can’t keep \w his|strong="H3068"\w* soul alive. +\q1 +\v 30 Posterity \w shall|strong="H5315"\w* \w serve|strong="H6440"\w* \w him|strong="H6440"\w*. +\q2 Future generations \w shall|strong="H5315"\w* \w be|strong="H3808"\w* told \w about|strong="H3605"\w* \w the|strong="H3605"\w* Lord. +\q1 +\v 31 \w They|strong="H5608"\w* \w shall|strong="H2233"\w* come \w and|strong="H5647"\w* \w shall|strong="H2233"\w* \w declare|strong="H5608"\w* \w his|strong="H5647"\w* righteousness \w to|strong="H1755"\w* \w a|strong="H3068"\w* people \w that|strong="H1755"\w* \w shall|strong="H2233"\w* \w be|strong="H5647"\w* born, +\q2 \w for|strong="H2233"\w* \w he|strong="H2233"\w* \w has|strong="H2233"\w* \w done|strong="H5647"\w* it. +\c 23 +\d A Psalm by David. +\q1 +\v 1 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w my|strong="H3068"\w* \w shepherd|strong="H7462"\w*; +\q2 \w I|strong="H3808"\w* \w shall|strong="H3068"\w* \w lack|strong="H2637"\w* \w nothing|strong="H3808"\w*. +\q1 +\v 2 \w He|strong="H5921"\w* makes \w me|strong="H5921"\w* \w lie|strong="H7257"\w* \w down|strong="H7257"\w* \w in|strong="H5921"\w* \w green|strong="H1877"\w* \w pastures|strong="H4999"\w*. +\q2 \w He|strong="H5921"\w* \w leads|strong="H5095"\w* \w me|strong="H5921"\w* \w beside|strong="H5921"\w* \w still|strong="H4496"\w* \w waters|strong="H4325"\w*. +\q1 +\v 3 \w He|strong="H7725"\w* \w restores|strong="H7725"\w* \w my|strong="H7725"\w* \w soul|strong="H5315"\w*. +\q2 \w He|strong="H7725"\w* \w guides|strong="H5148"\w* \w me|strong="H5315"\w* \w in|strong="H5315"\w* \w the|strong="H7725"\w* \w paths|strong="H4570"\w* \w of|strong="H8034"\w* \w righteousness|strong="H6664"\w* \w for|strong="H4616"\w* \w his|strong="H7725"\w* \w name|strong="H8034"\w*’s \w sake|strong="H4616"\w*. +\q1 +\v 4 \w Even|strong="H1571"\w* \w though|strong="H3588"\w* \w I|strong="H3588"\w* \w walk|strong="H3212"\w* \w through|strong="H3212"\w* \w the|strong="H3588"\w* \w valley|strong="H1516"\w* \w of|strong="H7626"\w* \w the|strong="H3588"\w* \w shadow|strong="H6757"\w* \w of|strong="H7626"\w* \w death|strong="H6757"\w*, +\q2 \w I|strong="H3588"\w* \w will|strong="H1571"\w* \w fear|strong="H3372"\w* \w no|strong="H3808"\w* \w evil|strong="H7451"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H1992"\w* \w with|strong="H3212"\w* \w me|strong="H5978"\w*. +\q1 \w Your|strong="H3588"\w* \w rod|strong="H7626"\w* \w and|strong="H3212"\w* \w your|strong="H3588"\w* \w staff|strong="H4938"\w*, +\q2 \w they|strong="H1992"\w* \w comfort|strong="H5162"\w* \w me|strong="H5978"\w*. +\q1 +\v 5 \w You|strong="H6440"\w* \w prepare|strong="H6186"\w* \w a|strong="H3068"\w* \w table|strong="H7979"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* +\q2 \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H7218"\w* \w my|strong="H6440"\w* \w enemies|strong="H6887"\w*. +\q1 \w You|strong="H6440"\w* anoint \w my|strong="H6440"\w* \w head|strong="H7218"\w* \w with|strong="H6440"\w* \w oil|strong="H8081"\w*. +\q2 \w My|strong="H6440"\w* \w cup|strong="H3563"\w* runs \w over|strong="H6440"\w*. +\q1 +\v 6 Surely \w goodness|strong="H2896"\w* \w and|strong="H3068"\w* \w loving|strong="H2896"\w* \w kindness|strong="H2617"\w* \w shall|strong="H3068"\w* \w follow|strong="H7291"\w* \w me|strong="H7291"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H1004"\w* \w my|strong="H3605"\w* \w life|strong="H2416"\w*, +\q2 \w and|strong="H3068"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w forever|strong="H3605"\w*. +\c 24 +\d A Psalm by David. +\q1 +\v 1 \w The|strong="H3068"\w* earth \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s, \w with|strong="H3068"\w* \w its|strong="H4393"\w* \w fullness|strong="H4393"\w*; +\q2 \w the|strong="H3068"\w* \w world|strong="H8398"\w*, \w and|strong="H3068"\w* \w those|strong="H3427"\w* \w who|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w it|strong="H4393"\w*. +\q1 +\v 2 \w For|strong="H3588"\w* \w he|strong="H1931"\w* \w has|strong="H3588"\w* \w founded|strong="H3245"\w* \w it|strong="H1931"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w seas|strong="H3220"\w*, +\q2 \w and|strong="H3220"\w* \w established|strong="H3559"\w* \w it|strong="H1931"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w floods|strong="H5104"\w*. +\b +\q1 +\v 3 \w Who|strong="H4310"\w* \w may|strong="H3068"\w* \w ascend|strong="H5927"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w hill|strong="H2022"\w*? +\q2 \w Who|strong="H4310"\w* \w may|strong="H3068"\w* \w stand|strong="H6965"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w holy|strong="H6944"\w* \w place|strong="H4725"\w*? +\q1 +\v 4 \w He|strong="H3808"\w* \w who|strong="H5315"\w* \w has|strong="H5315"\w* \w clean|strong="H1249"\w* \w hands|strong="H3709"\w* \w and|strong="H5315"\w* \w a|strong="H3068"\w* \w pure|strong="H1249"\w* \w heart|strong="H3824"\w*; +\q2 \w who|strong="H5315"\w* \w has|strong="H5315"\w* \w not|strong="H3808"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w soul|strong="H5315"\w* \w to|strong="H3824"\w* \w falsehood|strong="H7723"\w*, +\q2 \w and|strong="H5315"\w* \w has|strong="H5315"\w* \w not|strong="H3808"\w* \w sworn|strong="H7650"\w* \w deceitfully|strong="H4820"\w*. +\q1 +\v 5 \w He|strong="H3068"\w* \w shall|strong="H3068"\w* \w receive|strong="H5375"\w* \w a|strong="H3068"\w* \w blessing|strong="H1293"\w* \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w righteousness|strong="H6666"\w* \w from|strong="H3068"\w* \w the|strong="H5375"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w his|strong="H5375"\w* \w salvation|strong="H3468"\w*. +\q1 +\v 6 \w This|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H6440"\w* \w generation|strong="H1755"\w* \w of|strong="H6440"\w* \w those|strong="H2088"\w* \w who|strong="H2088"\w* \w seek|strong="H1245"\w* \w Him|strong="H6440"\w*, +\q2 \w who|strong="H2088"\w* \w seek|strong="H1245"\w* \w your|strong="H6440"\w* \w face|strong="H6440"\w*—even \w Jacob|strong="H3290"\w*. \qs \+w Selah|strong="H5542"\+w*.\qs* +\b +\q1 +\v 7 \w Lift|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H5375"\w* \w heads|strong="H7218"\w*, \w you|strong="H5375"\w* \w gates|strong="H8179"\w*! +\q2 \w Be|strong="H5769"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w*, \w you|strong="H5375"\w* \w everlasting|strong="H5769"\w* \w doors|strong="H6607"\w*, +\q2 \w and|strong="H4428"\w* \w the|strong="H5375"\w* \w King|strong="H4428"\w* \w of|strong="H4428"\w* \w glory|strong="H3519"\w* \w will|strong="H4428"\w* come \w in|strong="H4428"\w*. +\q1 +\v 8 \w Who|strong="H4310"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w King|strong="H4428"\w* \w of|strong="H4428"\w* \w glory|strong="H3519"\w*? +\q2 \w Yahweh|strong="H3068"\w* \w strong|strong="H1368"\w* \w and|strong="H3068"\w* \w mighty|strong="H1368"\w*, +\q2 \w Yahweh|strong="H3068"\w* \w mighty|strong="H1368"\w* \w in|strong="H3068"\w* \w battle|strong="H4421"\w*. +\q1 +\v 9 \w Lift|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H5375"\w* \w heads|strong="H7218"\w*, \w you|strong="H5375"\w* \w gates|strong="H8179"\w*; +\q2 yes, \w lift|strong="H5375"\w* \w them|strong="H5375"\w* \w up|strong="H5375"\w*, \w you|strong="H5375"\w* \w everlasting|strong="H5769"\w* \w doors|strong="H6607"\w*, +\q2 \w and|strong="H4428"\w* \w the|strong="H5375"\w* \w King|strong="H4428"\w* \w of|strong="H4428"\w* \w glory|strong="H3519"\w* \w will|strong="H4428"\w* come \w in|strong="H4428"\w*. +\q1 +\v 10 \w Who|strong="H4310"\w* \w is|strong="H3068"\w* \w this|strong="H2088"\w* \w King|strong="H4428"\w* \w of|strong="H4428"\w* \w glory|strong="H3519"\w*? +\q2 \w Yahweh|strong="H3068"\w* \w of|strong="H4428"\w* \w Armies|strong="H6635"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w King|strong="H4428"\w* \w of|strong="H4428"\w* \w glory|strong="H3519"\w*! \qs \+w Selah|strong="H5542"\+w*.\qs* +\c 25 +\d By David. +\q1 +\v 1 \w To|strong="H3068"\w* \w you|strong="H5375"\w*, \w Yahweh|strong="H3068"\w*, \w I|strong="H5315"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w my|strong="H3068"\w* \w soul|strong="H5315"\w*. +\q1 +\v 2 My God, I have trusted in you. +\q2 Don’t \w let|strong="H5970"\w* me be shamed. +\q2 Don’t \w let|strong="H5970"\w* my enemies \w triumph|strong="H5970"\w* over me. +\q1 +\v 3 \w Yes|strong="H1571"\w*, \w no|strong="H3808"\w* \w one|strong="H3605"\w* \w who|strong="H3605"\w* \w waits|strong="H6960"\w* \w for|strong="H6960"\w* \w you|strong="H3605"\w* \w will|strong="H1571"\w* \w be|strong="H3808"\w* shamed. +\q2 \w They|strong="H3808"\w* \w will|strong="H1571"\w* \w be|strong="H3808"\w* shamed \w who|strong="H3605"\w* deal treacherously \w without|strong="H3808"\w* \w cause|strong="H7387"\w*. +\b +\q1 +\v 4 \w Show|strong="H3045"\w* \w me|strong="H3925"\w* \w your|strong="H3068"\w* \w ways|strong="H1870"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w Teach|strong="H3925"\w* \w me|strong="H3925"\w* \w your|strong="H3068"\w* \w paths|strong="H1870"\w*. +\q1 +\v 5 \w Guide|strong="H1869"\w* \w me|strong="H3925"\w* \w in|strong="H3117"\w* \w your|strong="H3605"\w* truth, \w and|strong="H3117"\w* \w teach|strong="H3925"\w* \w me|strong="H3925"\w*, +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H3117"\w* \w the|strong="H3605"\w* God \w of|strong="H3117"\w* \w my|strong="H3605"\w* \w salvation|strong="H3468"\w*. +\q2 \w I|strong="H3588"\w* \w wait|strong="H6960"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w* \w long|strong="H3117"\w*. +\q1 +\v 6 \w Yahweh|strong="H3068"\w*, \w remember|strong="H2142"\w* \w your|strong="H3068"\w* tender \w mercies|strong="H7356"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* loving \w kindness|strong="H2617"\w*, +\q2 \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w from|strong="H3068"\w* \w old|strong="H5769"\w* \w times|strong="H5769"\w*. +\q1 +\v 7 Don’t \w remember|strong="H2142"\w* \w the|strong="H3068"\w* \w sins|strong="H2403"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w youth|strong="H5271"\w*, nor \w my|strong="H3068"\w* \w transgressions|strong="H6588"\w*. +\q2 \w Remember|strong="H2142"\w* \w me|strong="H5271"\w* according \w to|strong="H3068"\w* \w your|strong="H3068"\w* loving \w kindness|strong="H2617"\w*, +\q2 \w for|strong="H3068"\w* \w your|strong="H3068"\w* \w goodness|strong="H2898"\w*’ \w sake|strong="H4616"\w*, \w Yahweh|strong="H3068"\w*. +\q1 +\v 8 \w Good|strong="H2896"\w* \w and|strong="H3068"\w* \w upright|strong="H3477"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w therefore|strong="H3651"\w* \w he|strong="H3651"\w* \w will|strong="H3068"\w* \w instruct|strong="H3384"\w* \w sinners|strong="H2400"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w*. +\q1 +\v 9 He \w will|strong="H6035"\w* \w guide|strong="H1869"\w* \w the|strong="H1870"\w* \w humble|strong="H6035"\w* \w in|strong="H1870"\w* \w justice|strong="H4941"\w*. +\q2 He \w will|strong="H6035"\w* \w teach|strong="H3925"\w* \w the|strong="H1870"\w* \w humble|strong="H6035"\w* \w his|strong="H1869"\w* \w way|strong="H1870"\w*. +\q1 +\v 10 \w All|strong="H3605"\w* \w the|strong="H3605"\w* paths \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w are|strong="H3068"\w* loving \w kindness|strong="H2617"\w* \w and|strong="H3068"\w* truth +\q2 \w to|strong="H3068"\w* \w such|strong="H3605"\w* \w as|strong="H3068"\w* \w keep|strong="H5341"\w* \w his|strong="H3605"\w* \w covenant|strong="H1285"\w* \w and|strong="H3068"\w* \w his|strong="H3605"\w* \w testimonies|strong="H5713"\w*. +\q1 +\v 11 \w For|strong="H3588"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w*’s \w sake|strong="H4616"\w*, \w Yahweh|strong="H3068"\w*, +\q2 \w pardon|strong="H5545"\w* \w my|strong="H3068"\w* \w iniquity|strong="H5771"\w*, \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w great|strong="H7227"\w*. +\q1 +\v 12 \w What|strong="H4310"\w* \w man|strong="H2088"\w* \w is|strong="H3068"\w* \w he|strong="H3068"\w* \w who|strong="H4310"\w* \w fears|strong="H3373"\w* \w Yahweh|strong="H3068"\w*? +\q2 \w He|strong="H3068"\w* \w shall|strong="H3068"\w* \w instruct|strong="H3384"\w* \w him|strong="H3384"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w way|strong="H1870"\w* \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w shall|strong="H3068"\w* choose. +\q1 +\v 13 \w His|strong="H3423"\w* \w soul|strong="H5315"\w* \w will|strong="H5315"\w* \w dwell|strong="H3885"\w* \w at|strong="H5315"\w* \w ease|strong="H2896"\w*. +\q2 \w His|strong="H3423"\w* \w offspring|strong="H2233"\w* \w will|strong="H5315"\w* \w inherit|strong="H3423"\w* \w the|strong="H3423"\w* land. +\q1 +\v 14 \w The|strong="H3068"\w* \w friendship|strong="H5475"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w with|strong="H3068"\w* those \w who|strong="H3068"\w* \w fear|strong="H3373"\w* \w him|strong="H3045"\w*. +\q2 \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w show|strong="H3045"\w* \w them|strong="H3045"\w* \w his|strong="H3068"\w* \w covenant|strong="H1285"\w*. +\b +\q1 +\v 15 \w My|strong="H3068"\w* \w eyes|strong="H5869"\w* \w are|strong="H5869"\w* \w ever|strong="H8548"\w* \w on|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w will|strong="H3068"\w* \w pluck|strong="H3318"\w* \w my|strong="H3068"\w* \w feet|strong="H7272"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w net|strong="H7568"\w*. +\q1 +\v 16 \w Turn|strong="H6437"\w* \w to|strong="H6437"\w* \w me|strong="H2603"\w*, \w and|strong="H6041"\w* \w have|strong="H3588"\w* \w mercy|strong="H2603"\w* \w on|strong="H6437"\w* \w me|strong="H2603"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* am \w desolate|strong="H3173"\w* \w and|strong="H6041"\w* \w afflicted|strong="H6041"\w*. +\q1 +\v 17 \w The|strong="H3318"\w* \w troubles|strong="H6869"\w* \w of|strong="H3318"\w* \w my|strong="H3318"\w* \w heart|strong="H3824"\w* \w are|strong="H6869"\w* \w enlarged|strong="H7337"\w*. +\q2 Oh \w bring|strong="H3318"\w* \w me|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w my|strong="H3318"\w* \w distresses|strong="H4691"\w*. +\q1 +\v 18 \w Consider|strong="H7200"\w* \w my|strong="H3605"\w* \w affliction|strong="H6040"\w* \w and|strong="H7200"\w* \w my|strong="H3605"\w* \w travail|strong="H5999"\w*. +\q2 \w Forgive|strong="H5375"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w sins|strong="H2403"\w*. +\q1 +\v 19 \w Consider|strong="H7200"\w* \w my|strong="H7200"\w* \w enemies|strong="H8130"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H2555"\w* \w many|strong="H7231"\w*. +\q2 \w They|strong="H3588"\w* \w hate|strong="H8130"\w* \w me|strong="H7200"\w* \w with|strong="H7200"\w* \w cruel|strong="H2555"\w* \w hatred|strong="H8135"\w*. +\q1 +\v 20 Oh \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w soul|strong="H5315"\w*, \w and|strong="H8104"\w* \w deliver|strong="H5337"\w* \w me|strong="H5315"\w*. +\q2 \w Let|strong="H5315"\w* \w me|strong="H5315"\w* \w not|strong="H3588"\w* \w be|strong="H5315"\w* disappointed, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w take|strong="H2620"\w* \w refuge|strong="H2620"\w* \w in|strong="H5315"\w* \w you|strong="H3588"\w*. +\q1 +\v 21 Let \w integrity|strong="H8537"\w* \w and|strong="H8537"\w* \w uprightness|strong="H3476"\w* \w preserve|strong="H5341"\w* \w me|strong="H3588"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w wait|strong="H6960"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*. +\q1 +\v 22 God, \w redeem|strong="H6299"\w* \w Israel|strong="H3478"\w* +\q2 \w out|strong="H3605"\w* \w of|strong="H3605"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w troubles|strong="H6869"\w*. +\c 26 +\d By David. +\q1 +\v 1 \w Judge|strong="H8199"\w* \w me|strong="H3808"\w*, \w Yahweh|strong="H3068"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w walked|strong="H1980"\w* \w in|strong="H1980"\w* \w my|strong="H3068"\w* \w integrity|strong="H8537"\w*. +\q2 \w I|strong="H3588"\w* \w have|strong="H3068"\w* trusted \w also|strong="H3068"\w* \w in|strong="H1980"\w* \w Yahweh|strong="H3068"\w* \w without|strong="H3808"\w* \w wavering|strong="H4571"\w*. +\q1 +\v 2 Examine \w me|strong="H3820"\w*, \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w prove|strong="H5254"\w* \w me|strong="H3820"\w*. +\q2 \w Try|strong="H6884"\w* \w my|strong="H3068"\w* \w heart|strong="H3820"\w* \w and|strong="H3068"\w* \w my|strong="H3068"\w* \w mind|strong="H3820"\w*. +\q1 +\v 3 \w For|strong="H3588"\w* \w your|strong="H3588"\w* loving \w kindness|strong="H2617"\w* \w is|strong="H2617"\w* \w before|strong="H5048"\w* \w my|strong="H3588"\w* \w eyes|strong="H5869"\w*. +\q2 \w I|strong="H3588"\w* \w have|strong="H5869"\w* \w walked|strong="H1980"\w* \w in|strong="H1980"\w* \w your|strong="H3588"\w* truth. +\q1 +\v 4 \w I|strong="H3808"\w* \w have|strong="H3808"\w* \w not|strong="H3808"\w* \w sat|strong="H3427"\w* \w with|strong="H5973"\w* \w deceitful|strong="H7723"\w* \w men|strong="H4962"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H3808"\w* \w I|strong="H3808"\w* go \w in|strong="H3427"\w* \w with|strong="H5973"\w* hypocrites. +\q1 +\v 5 \w I|strong="H3808"\w* \w hate|strong="H8130"\w* \w the|strong="H5973"\w* \w assembly|strong="H6951"\w* \w of|strong="H3427"\w* \w evildoers|strong="H7489"\w*, +\q2 \w and|strong="H3427"\w* \w will|strong="H7563"\w* \w not|strong="H3808"\w* \w sit|strong="H3427"\w* \w with|strong="H5973"\w* \w the|strong="H5973"\w* \w wicked|strong="H7563"\w*. +\q1 +\v 6 \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w wash|strong="H7364"\w* \w my|strong="H3068"\w* \w hands|strong="H3709"\w* \w in|strong="H3068"\w* \w innocence|strong="H5356"\w*, +\q2 \w so|strong="H5437"\w* \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w go|strong="H5437"\w* \w about|strong="H5437"\w* \w your|strong="H3068"\w* \w altar|strong="H4196"\w*, \w Yahweh|strong="H3068"\w*, +\q2 +\v 7 \w that|strong="H3605"\w* \w I|strong="H8085"\w* \w may|strong="H8085"\w* \w make|strong="H8085"\w* \w the|strong="H3605"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w thanksgiving|strong="H8426"\w* \w to|strong="H8085"\w* \w be|strong="H6963"\w* \w heard|strong="H8085"\w* +\q2 \w and|strong="H6963"\w* \w tell|strong="H5608"\w* \w of|strong="H6963"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w wondrous|strong="H6381"\w* \w deeds|strong="H6381"\w*. +\q1 +\v 8 \w Yahweh|strong="H3068"\w*, \w I|strong="H3068"\w* love \w the|strong="H3068"\w* \w habitation|strong="H4583"\w* \w of|strong="H1004"\w* \w your|strong="H3068"\w* \w house|strong="H1004"\w*, +\q2 \w the|strong="H3068"\w* \w place|strong="H4725"\w* \w where|strong="H4725"\w* \w your|strong="H3068"\w* \w glory|strong="H3519"\w* \w dwells|strong="H4908"\w*. +\q1 +\v 9 Don’t gather \w my|strong="H5973"\w* \w soul|strong="H5315"\w* \w with|strong="H5973"\w* \w sinners|strong="H2400"\w*, +\q2 nor \w my|strong="H5973"\w* \w life|strong="H5315"\w* \w with|strong="H5973"\w* bloodthirsty \w men|strong="H5315"\w* +\q2 +\v 10 \w in|strong="H3027"\w* whose \w hands|strong="H3027"\w* \w is|strong="H3027"\w* \w wickedness|strong="H2154"\w*; +\q2 \w their|strong="H4390"\w* \w right|strong="H3225"\w* \w hand|strong="H3027"\w* \w is|strong="H3027"\w* \w full|strong="H4390"\w* \w of|strong="H3027"\w* \w bribes|strong="H7810"\w*. +\b +\q1 +\v 11 But as \w for|strong="H3212"\w* \w me|strong="H2603"\w*, \w I|strong="H3212"\w* will \w walk|strong="H3212"\w* \w in|strong="H3212"\w* \w my|strong="H6299"\w* \w integrity|strong="H8537"\w*. +\q2 \w Redeem|strong="H6299"\w* \w me|strong="H2603"\w*, \w and|strong="H3212"\w* \w be|strong="H2603"\w* \w merciful|strong="H2603"\w* \w to|strong="H3212"\w* \w me|strong="H2603"\w*. +\q1 +\v 12 \w My|strong="H3068"\w* \w foot|strong="H7272"\w* \w stands|strong="H5975"\w* \w in|strong="H3068"\w* \w an|strong="H3068"\w* \w even|strong="H3068"\w* \w place|strong="H4334"\w*. +\q2 \w In|strong="H3068"\w* \w the|strong="H3068"\w* \w congregations|strong="H4721"\w* \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w bless|strong="H1288"\w* \w Yahweh|strong="H3068"\w*. +\c 27 +\d By David. +\q1 +\v 1 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w my|strong="H3068"\w* light \w and|strong="H3068"\w* \w my|strong="H3068"\w* \w salvation|strong="H3468"\w*. +\q2 \w Whom|strong="H4310"\w* \w shall|strong="H3068"\w* \w I|strong="H3068"\w* \w fear|strong="H3372"\w*? +\q1 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w strength|strong="H4581"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w life|strong="H2416"\w*. +\q2 \w Of|strong="H3068"\w* \w whom|strong="H4310"\w* \w shall|strong="H3068"\w* \w I|strong="H3068"\w* \w be|strong="H3068"\w* \w afraid|strong="H3372"\w*? +\q1 +\v 2 \w When|strong="H5307"\w* \w evildoers|strong="H7489"\w* \w came|strong="H7126"\w* \w at|strong="H5921"\w* \w me|strong="H5921"\w* \w to|strong="H5921"\w* eat \w up|strong="H5921"\w* \w my|strong="H5921"\w* \w flesh|strong="H1320"\w*, +\q2 \w even|strong="H5921"\w* \w my|strong="H5921"\w* \w adversaries|strong="H6862"\w* \w and|strong="H7126"\w* \w my|strong="H5921"\w* \w foes|strong="H6862"\w*, \w they|strong="H1992"\w* \w stumbled|strong="H3782"\w* \w and|strong="H7126"\w* \w fell|strong="H5307"\w*. +\q1 +\v 3 Though \w an|strong="H6965"\w* \w army|strong="H4264"\w* \w should|strong="H4264"\w* \w encamp|strong="H2583"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*, +\q2 \w my|strong="H5921"\w* \w heart|strong="H3820"\w* \w shall|strong="H3820"\w* \w not|strong="H3808"\w* \w fear|strong="H3372"\w*. +\q1 Though \w war|strong="H4421"\w* \w should|strong="H4264"\w* \w rise|strong="H6965"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*, +\q2 \w even|strong="H3808"\w* \w then|strong="H6965"\w* \w I|strong="H5921"\w* \w will|strong="H3820"\w* \w be|strong="H3808"\w* confident. +\q1 +\v 4 \w One|strong="H3605"\w* \w thing|strong="H2416"\w* \w I|strong="H3117"\w* \w have|strong="H3068"\w* \w asked|strong="H7592"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*, \w that|strong="H3605"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w seek|strong="H1245"\w* \w after|strong="H3117"\w*: +\q2 \w that|strong="H3605"\w* \w I|strong="H3117"\w* \w may|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H1004"\w* \w my|strong="H3605"\w* \w life|strong="H2416"\w*, +\q2 \w to|strong="H3068"\w* \w see|strong="H2372"\w* \w Yahweh|strong="H3068"\w*’s \w beauty|strong="H5278"\w*, +\q2 \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w inquire|strong="H7592"\w* \w in|strong="H3427"\w* \w his|strong="H3605"\w* \w temple|strong="H1004"\w*. +\q1 +\v 5 \w For|strong="H3588"\w* \w in|strong="H3117"\w* \w the|strong="H3588"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w trouble|strong="H7451"\w*, \w he|strong="H3588"\w* \w will|strong="H3117"\w* \w keep|strong="H6845"\w* \w me|strong="H7311"\w* \w secretly|strong="H5643"\w* \w in|strong="H3117"\w* \w his|strong="H3588"\w* \w pavilion|strong="H5520"\w*. +\q2 \w In|strong="H3117"\w* \w the|strong="H3588"\w* \w secret|strong="H5643"\w* \w place|strong="H5643"\w* \w of|strong="H3117"\w* \w his|strong="H3588"\w* \w tabernacle|strong="H5520"\w*, \w he|strong="H3588"\w* \w will|strong="H3117"\w* \w hide|strong="H5641"\w* \w me|strong="H7311"\w*. +\q2 \w He|strong="H3588"\w* \w will|strong="H3117"\w* \w lift|strong="H7311"\w* \w me|strong="H7311"\w* \w up|strong="H7311"\w* \w on|strong="H3117"\w* \w a|strong="H3068"\w* \w rock|strong="H6697"\w*. +\q1 +\v 6 \w Now|strong="H6258"\w* \w my|strong="H3068"\w* \w head|strong="H7218"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w lifted|strong="H7311"\w* \w up|strong="H7311"\w* \w above|strong="H5921"\w* \w my|strong="H3068"\w* enemies \w around|strong="H5439"\w* \w me|strong="H5921"\w*. +\q1 \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w offer|strong="H2076"\w* \w sacrifices|strong="H2077"\w* \w of|strong="H3068"\w* \w joy|strong="H8643"\w* \w in|strong="H5921"\w* \w his|strong="H3068"\w* tent. +\q2 \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w sing|strong="H7891"\w*, yes, \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w sing|strong="H7891"\w* \w praises|strong="H2167"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\b +\q1 +\v 7 \w Hear|strong="H8085"\w*, \w Yahweh|strong="H3068"\w*, \w when|strong="H8085"\w* \w I|strong="H8085"\w* \w cry|strong="H7121"\w* \w with|strong="H3068"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*. +\q2 \w Have|strong="H3068"\w* \w mercy|strong="H2603"\w* \w also|strong="H3068"\w* \w on|strong="H3068"\w* \w me|strong="H6963"\w*, \w and|strong="H3068"\w* \w answer|strong="H6030"\w* \w me|strong="H6963"\w*. +\q1 +\v 8 \w When|strong="H3068"\w* \w you|strong="H6440"\w* said, “\w Seek|strong="H1245"\w* \w my|strong="H3068"\w* \w face|strong="H6440"\w*,” +\q2 \w my|strong="H3068"\w* \w heart|strong="H3820"\w* said \w to|strong="H3068"\w* \w you|strong="H6440"\w*, “\w I|strong="H6440"\w* \w will|strong="H3068"\w* \w seek|strong="H1245"\w* \w your|strong="H3068"\w* \w face|strong="H6440"\w*, \w Yahweh|strong="H3068"\w*.” +\q1 +\v 9 Don’t \w hide|strong="H5641"\w* \w your|strong="H5186"\w* \w face|strong="H6440"\w* \w from|strong="H4480"\w* \w me|strong="H6440"\w*. +\q2 Don’t \w put|strong="H5186"\w* \w your|strong="H5186"\w* \w servant|strong="H5650"\w* \w away|strong="H5186"\w* \w in|strong="H6440"\w* \w anger|strong="H6440"\w*. +\q1 \w You|strong="H6440"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w my|strong="H1961"\w* \w help|strong="H5833"\w*. +\q2 Don’t \w abandon|strong="H5800"\w* \w me|strong="H6440"\w*, +\q2 \w neither|strong="H4480"\w* \w forsake|strong="H5800"\w* \w me|strong="H6440"\w*, God \w of|strong="H6440"\w* \w my|strong="H1961"\w* \w salvation|strong="H3468"\w*. +\q1 +\v 10 \w When|strong="H3588"\w* \w my|strong="H3068"\w* father \w and|strong="H3068"\w* \w my|strong="H3068"\w* mother \w forsake|strong="H5800"\w* \w me|strong="H5800"\w*, +\q2 \w then|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* take \w me|strong="H5800"\w* up. +\q1 +\v 11 \w Teach|strong="H3384"\w* \w me|strong="H5148"\w* \w your|strong="H3068"\w* \w way|strong="H1870"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w Lead|strong="H5148"\w* \w me|strong="H5148"\w* \w in|strong="H3068"\w* \w a|strong="H3068"\w* \w straight|strong="H4334"\w* \w path|strong="H1870"\w*, \w because|strong="H4616"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w enemies|strong="H8324"\w*. +\q1 +\v 12 Don’t \w deliver|strong="H5414"\w* \w me|strong="H5414"\w* \w over|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H3588"\w* \w desire|strong="H5315"\w* \w of|strong="H5315"\w* \w my|strong="H5414"\w* \w adversaries|strong="H6862"\w*, +\q2 \w for|strong="H3588"\w* \w false|strong="H8267"\w* \w witnesses|strong="H5707"\w* \w have|strong="H6862"\w* \w risen|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H6965"\w* \w me|strong="H5414"\w*, +\q2 \w such|strong="H5315"\w* \w as|strong="H5315"\w* \w breathe|strong="H3307"\w* \w out|strong="H5414"\w* \w cruelty|strong="H2555"\w*. +\q1 +\v 13 \w I|strong="H7200"\w* \w am|strong="H3068"\w* still confident \w of|strong="H3068"\w* \w this|strong="H7200"\w*: +\q2 \w I|strong="H7200"\w* \w will|strong="H3068"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w goodness|strong="H2898"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H7200"\w* land \w of|strong="H3068"\w* \w the|strong="H7200"\w* \w living|strong="H2416"\w*. +\q1 +\v 14 \w Wait|strong="H6960"\w* \w for|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w Be|strong="H3068"\w* \w strong|strong="H2388"\w*, \w and|strong="H3068"\w* let \w your|strong="H3068"\w* \w heart|strong="H3820"\w* \w take|strong="H2388"\w* \w courage|strong="H2388"\w*. +\q1 Yes, \w wait|strong="H6960"\w* \w for|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\c 28 +\d By David. +\q1 +\v 1 \w To|strong="H3381"\w* \w you|strong="H5973"\w*, \w Yahweh|strong="H3068"\w*, \w I|strong="H3068"\w* \w call|strong="H7121"\w*. +\q2 \w My|strong="H3068"\w* \w rock|strong="H6697"\w*, don’t \w be|strong="H3068"\w* \w deaf|strong="H2790"\w* \w to|strong="H3381"\w* \w me|strong="H7121"\w*, +\q2 \w lest|strong="H6435"\w*, \w if|strong="H6435"\w* \w you|strong="H5973"\w* \w are|strong="H3068"\w* \w silent|strong="H2790"\w* \w to|strong="H3381"\w* \w me|strong="H7121"\w*, +\q2 \w I|strong="H3068"\w* \w would|strong="H3068"\w* \w become|strong="H4911"\w* \w like|strong="H4911"\w* \w those|strong="H4480"\w* \w who|strong="H3068"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w the|strong="H3068"\w* pit. +\q1 +\v 2 \w Hear|strong="H8085"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H3027"\w* \w my|strong="H8085"\w* petitions, \w when|strong="H8085"\w* \w I|strong="H8085"\w* \w cry|strong="H7768"\w* \w to|strong="H3027"\w* \w you|strong="H3027"\w*, +\q2 \w when|strong="H8085"\w* \w I|strong="H8085"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w my|strong="H8085"\w* \w hands|strong="H3027"\w* \w toward|strong="H3027"\w* \w your|strong="H5375"\w* \w Most|strong="H6944"\w* \w Holy|strong="H6944"\w* \w Place|strong="H3027"\w*. +\q1 +\v 3 Don’t \w draw|strong="H4900"\w* \w me|strong="H1696"\w* \w away|strong="H5973"\w* \w with|strong="H5973"\w* \w the|strong="H1696"\w* \w wicked|strong="H7563"\w*, +\q2 \w with|strong="H5973"\w* \w the|strong="H1696"\w* \w workers|strong="H6466"\w* \w of|strong="H6466"\w* iniquity \w who|strong="H7563"\w* \w speak|strong="H1696"\w* \w peace|strong="H7965"\w* \w with|strong="H5973"\w* \w their|strong="H7563"\w* \w neighbors|strong="H7453"\w*, +\q2 \w but|strong="H7563"\w* \w mischief|strong="H7451"\w* \w is|strong="H7563"\w* \w in|strong="H1696"\w* \w their|strong="H7563"\w* \w hearts|strong="H3824"\w*. +\q1 +\v 4 \w Give|strong="H5414"\w* \w them|strong="H5414"\w* \w according|strong="H3027"\w* \w to|strong="H7725"\w* \w their|strong="H5414"\w* \w work|strong="H4639"\w*, \w and|strong="H7725"\w* \w according|strong="H3027"\w* \w to|strong="H7725"\w* \w the|strong="H5414"\w* \w wickedness|strong="H7455"\w* \w of|strong="H3027"\w* \w their|strong="H5414"\w* \w doings|strong="H4611"\w*. +\q2 \w Give|strong="H5414"\w* \w them|strong="H5414"\w* \w according|strong="H3027"\w* \w to|strong="H7725"\w* \w the|strong="H5414"\w* \w operation|strong="H4639"\w* \w of|strong="H3027"\w* \w their|strong="H5414"\w* \w hands|strong="H3027"\w*. +\q2 \w Bring|strong="H7725"\w* \w back|strong="H7725"\w* \w on|strong="H3027"\w* \w them|strong="H5414"\w* \w what|strong="H4639"\w* \w they|strong="H1992"\w* deserve. +\q1 +\v 5 \w Because|strong="H3588"\w* \w they|strong="H3588"\w* don’t respect \w the|strong="H3588"\w* \w works|strong="H4639"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w nor|strong="H3808"\w* \w the|strong="H3588"\w* \w operation|strong="H4639"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w hands|strong="H3027"\w*, +\q2 \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w break|strong="H2040"\w* \w them|strong="H3027"\w* \w down|strong="H2040"\w* \w and|strong="H3068"\w* \w not|strong="H3808"\w* \w build|strong="H1129"\w* \w them|strong="H3027"\w* \w up|strong="H1129"\w*. +\b +\q1 +\v 6 \w Blessed|strong="H1288"\w* \w be|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w my|strong="H8085"\w* petitions. +\q1 +\v 7 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w my|strong="H3068"\w* \w strength|strong="H5797"\w* \w and|strong="H3068"\w* \w my|strong="H3068"\w* \w shield|strong="H4043"\w*. +\q2 \w My|strong="H3068"\w* \w heart|strong="H3820"\w* \w has|strong="H3068"\w* trusted \w in|strong="H3068"\w* \w him|strong="H5826"\w*, \w and|strong="H3068"\w* \w I|strong="H3068"\w* \w am|strong="H3068"\w* \w helped|strong="H5826"\w*. +\q1 \w Therefore|strong="H3068"\w* \w my|strong="H3068"\w* \w heart|strong="H3820"\w* \w greatly|strong="H3820"\w* rejoices. +\q2 \w With|strong="H3068"\w* \w my|strong="H3068"\w* \w song|strong="H7892"\w* \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w thank|strong="H3034"\w* \w him|strong="H5826"\w*. +\q1 +\v 8 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w their|strong="H3068"\w* \w strength|strong="H5797"\w*. +\q2 \w He|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w stronghold|strong="H4581"\w* \w of|strong="H3068"\w* \w salvation|strong="H3444"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w anointed|strong="H4899"\w*. +\q1 +\v 9 \w Save|strong="H3467"\w* \w your|strong="H5375"\w* \w people|strong="H5971"\w*, +\q2 \w and|strong="H5971"\w* \w bless|strong="H1288"\w* \w your|strong="H5375"\w* \w inheritance|strong="H5159"\w*. +\q1 \w Be|strong="H5769"\w* \w their|strong="H5375"\w* \w shepherd|strong="H7462"\w* \w also|strong="H5971"\w*, +\q2 \w and|strong="H5971"\w* \w bear|strong="H5375"\w* \w them|strong="H5375"\w* \w up|strong="H5375"\w* \w forever|strong="H5769"\w*. +\c 29 +\d A Psalm by David. +\q1 +\v 1 \w Ascribe|strong="H3051"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w you|strong="H3051"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w mighty|strong="H5797"\w*, +\q2 \w ascribe|strong="H3051"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w glory|strong="H3519"\w* \w and|strong="H1121"\w* \w strength|strong="H5797"\w*. +\q1 +\v 2 \w Ascribe|strong="H3051"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w the|strong="H3068"\w* \w glory|strong="H3519"\w* due \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w*. +\q2 \w Worship|strong="H7812"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w holy|strong="H6944"\w* \w array|strong="H1927"\w*. +\b +\q1 +\v 3 \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w* \w is|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w*. +\q2 \w The|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w glory|strong="H3519"\w* \w thunders|strong="H7481"\w*, \w even|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w on|strong="H5921"\w* \w many|strong="H7227"\w* \w waters|strong="H4325"\w*. +\q1 +\v 4 \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w* \w is|strong="H3068"\w* \w powerful|strong="H3581"\w*. +\q2 \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w* \w is|strong="H3068"\w* full \w of|strong="H3068"\w* \w majesty|strong="H1926"\w*. +\q1 +\v 5 \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w* \w breaks|strong="H7665"\w* \w the|strong="H3068"\w* cedars. +\q2 Yes, \w Yahweh|strong="H3068"\w* \w breaks|strong="H7665"\w* \w in|strong="H3068"\w* \w pieces|strong="H7665"\w* \w the|strong="H3068"\w* cedars \w of|strong="H3068"\w* \w Lebanon|strong="H3844"\w*. +\q1 +\v 6 \w He|strong="H1121"\w* makes \w them|strong="H1121"\w* \w also|strong="H1121"\w* \w to|strong="H1121"\w* \w skip|strong="H7540"\w* \w like|strong="H3644"\w* \w a|strong="H3068"\w* \w calf|strong="H5695"\w*; +\q2 \w Lebanon|strong="H3844"\w* \w and|strong="H1121"\w* \w Sirion|strong="H8303"\w* \w like|strong="H3644"\w* \w a|strong="H3068"\w* \w young|strong="H1121"\w*, \w wild|strong="H7214"\w* \w ox|strong="H7214"\w*. +\q1 +\v 7 \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w* strikes \w with|strong="H3068"\w* flashes \w of|strong="H3068"\w* lightning. +\q2 +\v 8 \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w* \w shakes|strong="H2342"\w* \w the|strong="H3068"\w* \w wilderness|strong="H4057"\w*. +\q2 \w Yahweh|strong="H3068"\w* \w shakes|strong="H2342"\w* \w the|strong="H3068"\w* \w wilderness|strong="H4057"\w* \w of|strong="H3068"\w* \w Kadesh|strong="H6946"\w*. +\q1 +\v 9 \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w* \w makes|strong="H3068"\w* \w the|strong="H3605"\w* deer \w calve|strong="H2342"\w*, +\q2 \w and|strong="H3068"\w* \w strips|strong="H2834"\w* \w the|strong="H3605"\w* \w forests|strong="H3293"\w* \w bare|strong="H2834"\w*. +\q2 \w In|strong="H3068"\w* \w his|strong="H3605"\w* \w temple|strong="H1964"\w* \w everything|strong="H3605"\w* says, “\w Glory|strong="H3519"\w*!” +\b +\q1 +\v 10 \w Yahweh|strong="H3068"\w* \w sat|strong="H3427"\w* \w enthroned|strong="H3427"\w* \w at|strong="H3427"\w* \w the|strong="H3068"\w* \w Flood|strong="H3999"\w*. +\q2 Yes, \w Yahweh|strong="H3068"\w* \w sits|strong="H3427"\w* \w as|strong="H3068"\w* \w King|strong="H4428"\w* \w forever|strong="H5769"\w*. +\q1 +\v 11 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w strength|strong="H5797"\w* \w to|strong="H3068"\w* \w his|strong="H5414"\w* \w people|strong="H5971"\w*. +\q2 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w bless|strong="H1288"\w* \w his|strong="H5414"\w* \w people|strong="H5971"\w* \w with|strong="H3068"\w* \w peace|strong="H7965"\w*. +\c 30 +\d A Psalm. A Song for the Dedication of the Temple. By David. +\q1 +\v 1 \w I|strong="H1004"\w* \w will|strong="H1004"\w* extol \w you|strong="H1004"\w*, \w Yahweh|strong="H3068"\w*, \w for|strong="H1004"\w* \w you|strong="H1004"\w* \w have|strong="H1004"\w* raised \w me|strong="H1004"\w* up, +\q2 \w and|strong="H1004"\w* \w have|strong="H1004"\w* \w not|strong="H1732"\w* \w made|strong="H1732"\w* \w my|strong="H1732"\w* foes \w to|strong="H1004"\w* rejoice \w over|strong="H1732"\w* \w me|strong="H1004"\w*. +\q1 +\v 2 \w Yahweh|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*, \w I|strong="H3588"\w* cried \w to|strong="H3068"\w* \w you|strong="H3588"\w*, +\q2 \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* healed \w me|strong="H7311"\w*. +\q1 +\v 3 \w Yahweh|strong="H3068"\w*, you \w have|strong="H3068"\w* \w brought|strong="H3068"\w* up \w my|strong="H3068"\w* soul \w from|strong="H3068"\w* Sheol.\f + \fr 30:3 \ft Sheol is the place of the dead.\f* +\q2 You \w have|strong="H3068"\w* kept me alive, \w that|strong="H3068"\w* \w I|strong="H3068"\w* \w should|strong="H3068"\w* not \w go|strong="H3068"\w* down \w to|strong="H3068"\w* \w the|strong="H3068"\w* pit. +\q1 +\v 4 Sing praise \w to|strong="H3381"\w* \w Yahweh|strong="H3068"\w*, \w you|strong="H4480"\w* saints \w of|strong="H3068"\w* \w his|strong="H3068"\w*. +\q2 \w Give|strong="H2421"\w* thanks \w to|strong="H3381"\w* \w his|strong="H3068"\w* holy name. +\q1 +\v 5 \w For|strong="H3068"\w* \w his|strong="H3068"\w* anger \w is|strong="H3068"\w* \w but|strong="H3068"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* moment. +\q2 \w His|strong="H3068"\w* \w favor|strong="H3068"\w* \w is|strong="H3068"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* lifetime. +\q1 Weeping \w may|strong="H3068"\w* stay \w for|strong="H3068"\w* \w the|strong="H3068"\w* night, +\q2 \w but|strong="H3068"\w* joy comes \w in|strong="H3068"\w* \w the|strong="H3068"\w* morning. +\q1 +\v 6 \w As|strong="H3588"\w* \w for|strong="H3588"\w* \w me|strong="H3588"\w*, \w I|strong="H3588"\w* said \w in|strong="H3885"\w* \w my|strong="H3588"\w* prosperity, +\q2 “\w I|strong="H3588"\w* \w shall|strong="H2416"\w* never \w be|strong="H2416"\w* moved.” +\q1 +\v 7 \w You|strong="H5769"\w*, \w Yahweh|strong="H3068"\w*, when \w you|strong="H5769"\w* favored \w me|strong="H5769"\w*, made my mountain stand strong; +\q2 \w but|strong="H4131"\w* when \w you|strong="H5769"\w* hid \w your|strong="H5769"\w* face, \w I|strong="H7959"\w* was troubled. +\q1 +\v 8 \w I|strong="H6440"\w* cried \w to|strong="H3068"\w* \w you|strong="H6440"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w I|strong="H6440"\w* \w made|strong="H1961"\w* supplication \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w Lord|strong="H3068"\w*: +\q1 +\v 9 “What profit \w is|strong="H3068"\w* \w there|strong="H3068"\w* \w in|strong="H3068"\w* \w my|strong="H3068"\w* destruction, \w if|strong="H2603"\w* \w I|strong="H3068"\w* \w go|strong="H3068"\w* \w down|strong="H7121"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* pit? +\q2 \w Shall|strong="H3068"\w* \w the|strong="H3068"\w* dust praise \w you|strong="H7121"\w*? +\q2 \w Shall|strong="H3068"\w* \w it|strong="H7121"\w* declare \w your|strong="H3068"\w* truth? +\q1 +\v 10 \w Hear|strong="H5046"\w*, \w Yahweh|strong="H3068"\w*, \w and|strong="H1818"\w* have mercy \w on|strong="H3381"\w* \w me|strong="H5046"\w*. +\q2 \w Yahweh|strong="H3068"\w*, \w be|strong="H1818"\w* \w my|strong="H5046"\w* helper.” +\q1 +\v 11 \w You|strong="H1961"\w* \w have|strong="H1961"\w* \w turned|strong="H1961"\w* \w my|strong="H8085"\w* mourning \w into|strong="H1961"\w* dancing \w for|strong="H3068"\w* \w me|strong="H1961"\w*. +\q2 \w You|strong="H1961"\w* \w have|strong="H1961"\w* removed \w my|strong="H8085"\w* sackcloth, \w and|strong="H3068"\w* clothed \w me|strong="H1961"\w* \w with|strong="H3068"\w* gladness, +\q2 +\v 12 \w to|strong="H2015"\w* \w the|strong="H6605"\w* end that \w my|strong="H6605"\w* heart may sing praise \w to|strong="H2015"\w* \w you|strong="H8057"\w*, \w and|strong="H8242"\w* \w not|strong="H6605"\w* be silent. +\q1 \w Yahweh|strong="H3068"\w* \w my|strong="H6605"\w* God, I will \w give|strong="H2015"\w* thanks \w to|strong="H2015"\w* \w you|strong="H8057"\w* forever! +\c 31 +\d For the Chief Musician. A Psalm by David. +\q1 +\v 1 \w In|strong="H1732"\w* you, \w Yahweh|strong="H3068"\w*, I take refuge. +\q2 Let me never \w be|strong="H1732"\w* disappointed. +\q2 Deliver me \w in|strong="H1732"\w* \w your|strong="H1732"\w* righteousness. +\q1 +\v 2 Bow down \w your|strong="H3068"\w* ear \w to|strong="H3068"\w* \w me|strong="H5769"\w*. +\q2 \w Deliver|strong="H6403"\w* \w me|strong="H5769"\w* speedily. +\q1 \w Be|strong="H3068"\w* \w to|strong="H3068"\w* \w me|strong="H5769"\w* \w a|strong="H3068"\w* strong rock, +\q2 \w a|strong="H3068"\w* house \w of|strong="H3068"\w* defense \w to|strong="H3068"\w* save \w me|strong="H5769"\w*. +\q1 +\v 3 \w For|strong="H1004"\w* \w you|strong="H3467"\w* \w are|strong="H1004"\w* \w my|strong="H1961"\w* \w rock|strong="H6697"\w* \w and|strong="H1004"\w* \w my|strong="H1961"\w* \w fortress|strong="H4581"\w*, +\q2 \w therefore|strong="H1961"\w* \w for|strong="H1004"\w* \w your|strong="H5186"\w* name’s sake lead \w me|strong="H5337"\w* \w and|strong="H1004"\w* guide \w me|strong="H5337"\w*. +\q1 +\v 4 Pluck \w me|strong="H5148"\w* out \w of|strong="H8034"\w* \w the|strong="H3588"\w* \w net|strong="H4686"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3588"\w* laid secretly \w for|strong="H3588"\w* \w me|strong="H5148"\w*, +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H8034"\w* \w my|strong="H3588"\w* \w stronghold|strong="H4686"\w*. +\q1 +\v 5 \w Into|strong="H3318"\w* \w your|strong="H3588"\w* hand \w I|strong="H3588"\w* commend \w my|strong="H3318"\w* spirit. +\q2 \w You|strong="H3588"\w* redeem \w me|strong="H3318"\w*, \w Yahweh|strong="H3068"\w*, God \w of|strong="H3318"\w* truth. +\q1 +\v 6 \w I|strong="H3027"\w* hate those \w who|strong="H3068"\w* regard lying vanities, +\q2 \w but|strong="H3068"\w* \w I|strong="H3027"\w* trust \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 7 \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* glad \w and|strong="H3068"\w* rejoice \w in|strong="H3068"\w* \w your|strong="H3068"\w* loving kindness, +\q2 \w for|strong="H3068"\w* \w you|strong="H8104"\w* \w have|strong="H3068"\w* seen \w my|strong="H8104"\w* affliction. +\q2 \w You|strong="H8104"\w* \w have|strong="H3068"\w* known \w my|strong="H8104"\w* soul \w in|strong="H3068"\w* adversities. +\q1 +\v 8 \w You|strong="H3045"\w* \w have|strong="H3045"\w* \w not|strong="H3045"\w* shut \w me|strong="H5315"\w* \w up|strong="H7200"\w* \w into|strong="H3045"\w* \w the|strong="H7200"\w* hand \w of|strong="H5315"\w* \w the|strong="H7200"\w* enemy. +\q2 \w You|strong="H3045"\w* \w have|strong="H3045"\w* set \w my|strong="H7200"\w* feet \w in|strong="H5315"\w* \w a|strong="H3068"\w* large place. +\q1 +\v 9 \w Have|strong="H3027"\w* mercy \w on|strong="H3027"\w* \w me|strong="H5975"\w*, \w Yahweh|strong="H3068"\w*, \w for|strong="H3027"\w* \w I|strong="H3808"\w* am \w in|strong="H5975"\w* \w distress|strong="H3027"\w*. +\q2 \w My|strong="H3027"\w* eye, \w my|strong="H3027"\w* soul, \w and|strong="H3027"\w* \w my|strong="H3027"\w* body waste away \w with|strong="H3027"\w* grief. +\q1 +\v 10 \w For|strong="H3588"\w* \w my|strong="H3068"\w* \w life|strong="H5315"\w* \w is|strong="H3068"\w* spent \w with|strong="H3068"\w* \w sorrow|strong="H3708"\w*, +\q2 \w my|strong="H3068"\w* years \w with|strong="H3068"\w* sighing. +\q1 \w My|strong="H3068"\w* \w strength|strong="H5315"\w* fails \w because|strong="H3588"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* iniquity. +\q2 \w My|strong="H3068"\w* bones \w are|strong="H5869"\w* \w wasted|strong="H6244"\w* \w away|strong="H6244"\w*. +\q1 +\v 11 \w Because|strong="H3588"\w* \w of|strong="H8141"\w* \w all|strong="H3615"\w* \w my|strong="H3615"\w* adversaries \w I|strong="H3588"\w* \w have|strong="H5771"\w* become \w utterly|strong="H3782"\w* contemptible \w to|strong="H8141"\w* \w my|strong="H3615"\w* neighbors, +\q2 \w a|strong="H3068"\w* horror \w to|strong="H8141"\w* \w my|strong="H3615"\w* acquaintances. +\q2 \w Those|strong="H3782"\w* \w who|strong="H3588"\w* saw \w me|strong="H3588"\w* \w on|strong="H3615"\w* \w the|strong="H3588"\w* street fled \w from|strong="H2416"\w* \w me|strong="H3588"\w*. +\q1 +\v 12 \w I|strong="H3045"\w* \w am|strong="H1961"\w* forgotten \w from|strong="H4480"\w* \w their|strong="H3605"\w* hearts \w like|strong="H1961"\w* \w a|strong="H3068"\w* dead \w man|strong="H3605"\w*. +\q2 \w I|strong="H3045"\w* \w am|strong="H1961"\w* \w like|strong="H1961"\w* broken pottery. +\q1 +\v 13 \w For|strong="H4191"\w* \w I|strong="H3820"\w* \w have|strong="H1961"\w* heard \w the|strong="H1961"\w* slander \w of|strong="H3627"\w* many, terror \w on|strong="H1961"\w* every side, +\q2 \w while|strong="H1961"\w* \w they|strong="H3820"\w* conspire together against \w me|strong="H7911"\w*, +\q2 \w they|strong="H3820"\w* plot \w to|strong="H4191"\w* \w take|strong="H1961"\w* away \w my|strong="H1961"\w* \w life|strong="H4191"\w*. +\q1 +\v 14 \w But|strong="H3588"\w* \w I|strong="H3588"\w* trust \w in|strong="H5921"\w* \w you|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w I|strong="H3588"\w* \w said|strong="H8085"\w*, “\w You|strong="H3588"\w* \w are|strong="H7227"\w* \w my|strong="H8085"\w* God.” +\q1 +\v 15 \w My|strong="H3068"\w* times \w are|strong="H3068"\w* \w in|strong="H5921"\w* \w your|strong="H3068"\w* hand. +\q2 Deliver \w me|strong="H5921"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* hand \w of|strong="H3068"\w* \w my|strong="H3068"\w* enemies, \w and|strong="H3068"\w* \w from|strong="H5921"\w* \w those|strong="H5921"\w* \w who|strong="H3068"\w* persecute \w me|strong="H5921"\w*. +\q1 +\v 16 \w Make|strong="H3027"\w* \w your|strong="H3027"\w* face \w to|strong="H6256"\w* shine \w on|strong="H3027"\w* \w your|strong="H3027"\w* servant. +\q2 \w Save|strong="H5337"\w* \w me|strong="H7291"\w* \w in|strong="H3027"\w* \w your|strong="H3027"\w* loving kindness. +\q1 +\v 17 Let \w me|strong="H6440"\w* \w not|strong="H6440"\w* \w be|strong="H5650"\w* disappointed, \w Yahweh|strong="H3068"\w*, \w for|strong="H5921"\w* \w I|strong="H5921"\w* \w have|strong="H5650"\w* called \w on|strong="H5921"\w* \w you|strong="H6440"\w*. +\q2 Let \w the|strong="H6440"\w* wicked \w be|strong="H5650"\w* disappointed. +\q2 Let \w them|strong="H5921"\w* \w be|strong="H5650"\w* silent \w in|strong="H5921"\w* Sheol.\f + \fr 31:17 \ft Sheol is the place of the dead.\f* +\q1 +\v 18 Let \w the|strong="H3588"\w* lying lips \w be|strong="H3068"\w* mute, +\q2 \w which|strong="H3068"\w* speak \w against|strong="H3068"\w* \w the|strong="H3588"\w* righteous insolently, \w with|strong="H3068"\w* pride \w and|strong="H3068"\w* contempt. +\q1 +\v 19 Oh how great \w is|strong="H6662"\w* \w your|strong="H5921"\w* goodness, +\q2 which \w you|strong="H5921"\w* \w have|strong="H8193"\w* laid \w up|strong="H5921"\w* \w for|strong="H5921"\w* \w those|strong="H5921"\w* \w who|strong="H6662"\w* fear \w you|strong="H5921"\w*, +\q2 which \w you|strong="H5921"\w* \w have|strong="H8193"\w* worked \w for|strong="H5921"\w* \w those|strong="H5921"\w* \w who|strong="H6662"\w* take refuge \w in|strong="H5921"\w* \w you|strong="H5921"\w*, +\q2 \w before|strong="H5921"\w* \w the|strong="H5921"\w* sons \w of|strong="H5921"\w* \w men|strong="H6662"\w*! +\q1 +\v 20 \w In|strong="H7227"\w* \w the|strong="H3373"\w* \w shelter|strong="H2620"\w* \w of|strong="H1121"\w* \w your|strong="H4100"\w* \w presence|strong="H5048"\w* \w you|strong="H4100"\w* \w will|strong="H1121"\w* \w hide|strong="H6845"\w* \w them|strong="H1121"\w* \w from|strong="H1121"\w* \w the|strong="H3373"\w* plotting \w of|strong="H1121"\w* \w man|strong="H1121"\w*. +\q2 \w You|strong="H4100"\w* \w will|strong="H1121"\w* \w keep|strong="H6845"\w* \w them|strong="H1121"\w* \w secretly|strong="H6845"\w* \w in|strong="H7227"\w* \w a|strong="H3068"\w* dwelling \w away|strong="H5048"\w* \w from|strong="H1121"\w* \w the|strong="H3373"\w* strife \w of|strong="H1121"\w* tongues. +\q1 +\v 21 Praise \w be|strong="H6440"\w* \w to|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w for|strong="H6440"\w* \w he|strong="H6440"\w* \w has|strong="H7379"\w* shown \w me|strong="H6440"\w* \w his|strong="H6440"\w* marvelous loving kindness \w in|strong="H6440"\w* \w a|strong="H3068"\w* strong city. +\q1 +\v 22 \w As|strong="H3068"\w* \w for|strong="H3588"\w* \w me|strong="H1288"\w*, \w I|strong="H3588"\w* said \w in|strong="H3068"\w* \w my|strong="H3068"\w* haste, “\w I|strong="H3588"\w* \w am|strong="H3068"\w* \w cut|strong="H2617"\w* off \w from|strong="H3068"\w* before \w your|strong="H3068"\w* eyes.” +\q2 \w Nevertheless|strong="H3588"\w* \w you|strong="H3588"\w* \w heard|strong="H3588"\w* \w the|strong="H3588"\w* voice \w of|strong="H3068"\w* \w my|strong="H3068"\w* petitions \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w cried|strong="H5892"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w*. +\q1 +\v 23 Oh love \w Yahweh|strong="H3068"\w*, all \w you|strong="H5869"\w* \w his|strong="H8085"\w* saints! +\q2 \w Yahweh|strong="H3068"\w* preserves \w the|strong="H8085"\w* faithful, +\q1 \w and|strong="H6963"\w* fully recompenses \w him|strong="H6963"\w* who behaves arrogantly. +\q1 +\v 24 \w Be|strong="H3068"\w* strong, \w and|strong="H3068"\w* let \w your|strong="H3068"\w* heart \w take|strong="H6213"\w* courage, +\q2 \w all|strong="H3605"\w* \w you|strong="H3605"\w* \w who|strong="H3605"\w* hope \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*. +\c 32 +\d By David. A contemplative psalm. +\q1 +\v 1 Blessed \w is|strong="H6588"\w* \w he|strong="H1732"\w* whose disobedience \w is|strong="H6588"\w* \w forgiven|strong="H5375"\w*, +\q2 whose \w sin|strong="H2401"\w* \w is|strong="H6588"\w* \w covered|strong="H3680"\w*. +\q1 +\v 2 Blessed \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w man|strong="H7423"\w* \w to|strong="H3068"\w* whom \w Yahweh|strong="H3068"\w* doesn’t \w impute|strong="H2803"\w* \w iniquity|strong="H5771"\w*, +\q2 \w in|strong="H3068"\w* whose \w spirit|strong="H7307"\w* \w there|strong="H3068"\w* \w is|strong="H3068"\w* \w no|strong="H3808"\w* \w deceit|strong="H7423"\w*. +\q1 +\v 3 \w When|strong="H3588"\w* \w I|strong="H3588"\w* \w kept|strong="H2790"\w* \w silence|strong="H2790"\w*, \w my|strong="H3605"\w* \w bones|strong="H6106"\w* \w wasted|strong="H1086"\w* \w away|strong="H3605"\w* \w through|strong="H3605"\w* \w my|strong="H3605"\w* \w groaning|strong="H7581"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w* \w long|strong="H3117"\w*. +\q1 +\v 4 \w For|strong="H3588"\w* \w day|strong="H3119"\w* \w and|strong="H3027"\w* \w night|strong="H3915"\w* \w your|strong="H5921"\w* \w hand|strong="H3027"\w* \w was|strong="H3027"\w* \w heavy|strong="H3513"\w* \w on|strong="H5921"\w* \w me|strong="H5921"\w*. +\q2 \w My|strong="H5921"\w* \w strength|strong="H3027"\w* \w was|strong="H3027"\w* sapped \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w heat|strong="H2725"\w* \w of|strong="H3027"\w* \w summer|strong="H7019"\w*. \qs \+w Selah|strong="H5542"\+w*.\qs* +\q1 +\v 5 \w I|strong="H5921"\w* \w acknowledged|strong="H3045"\w* \w my|strong="H3068"\w* \w sin|strong="H2403"\w* \w to|strong="H3068"\w* \w you|strong="H5921"\w*. +\q2 \w I|strong="H5921"\w* didn’t \w hide|strong="H3680"\w* \w my|strong="H3068"\w* \w iniquity|strong="H5771"\w*. +\q1 \w I|strong="H5921"\w* said, \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w confess|strong="H3034"\w* \w my|strong="H3068"\w* \w transgressions|strong="H6588"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* \w you|strong="H5921"\w* \w forgave|strong="H5375"\w* \w the|strong="H5921"\w* \w iniquity|strong="H5771"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w sin|strong="H2403"\w*. \qs \+w Selah|strong="H5542"\+w*.\qs* +\q1 +\v 6 \w For|strong="H5921"\w* \w this|strong="H2063"\w*, \w let|strong="H3808"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3605"\w* \w godly|strong="H2623"\w* \w pray|strong="H6419"\w* \w to|strong="H5921"\w* \w you|strong="H3605"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w when|strong="H6256"\w* \w you|strong="H3605"\w* \w may|strong="H4325"\w* \w be|strong="H3808"\w* \w found|strong="H4672"\w*. +\q2 \w Surely|strong="H2063"\w* \w when|strong="H6256"\w* \w the|strong="H3605"\w* \w great|strong="H7227"\w* \w waters|strong="H4325"\w* overflow, \w they|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w reach|strong="H5060"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w*. +\q1 +\v 7 You are \w my|strong="H5341"\w* \w hiding|strong="H5643"\w* \w place|strong="H5643"\w*. +\q2 You \w will|strong="H6862"\w* \w preserve|strong="H5341"\w* \w me|strong="H5437"\w* \w from|strong="H5437"\w* \w trouble|strong="H6862"\w*. +\q2 You \w will|strong="H6862"\w* \w surround|strong="H5437"\w* \w me|strong="H5437"\w* with \w songs|strong="H7438"\w* \w of|strong="H5341"\w* \w deliverance|strong="H6405"\w*. \qs \+w Selah|strong="H5542"\+w*.\qs* +\q1 +\v 8 \w I|strong="H5921"\w* \w will|strong="H5869"\w* \w instruct|strong="H3384"\w* \w you|strong="H5921"\w* \w and|strong="H3212"\w* \w teach|strong="H3384"\w* \w you|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w* \w which|strong="H2098"\w* \w you|strong="H5921"\w* \w shall|strong="H5869"\w* \w go|strong="H3212"\w*. +\q2 \w I|strong="H5921"\w* \w will|strong="H5869"\w* \w counsel|strong="H3289"\w* \w you|strong="H5921"\w* \w with|strong="H5921"\w* \w my|strong="H5921"\w* \w eye|strong="H5869"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*. +\q1 +\v 9 Don’t \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H7126"\w* \w horse|strong="H5483"\w*, \w or|strong="H5483"\w* \w like|strong="H1961"\w* \w the|strong="H7126"\w* \w mule|strong="H6505"\w*, \w which|strong="H5483"\w* \w have|strong="H1961"\w* \w no|strong="H1077"\w* understanding, +\q2 who \w are|strong="H5483"\w* controlled \w by|strong="H1961"\w* \w bit|strong="H4964"\w* \w and|strong="H5483"\w* \w bridle|strong="H7448"\w*, \w or|strong="H5483"\w* else \w they|strong="H1077"\w* \w will|strong="H1961"\w* \w not|strong="H1077"\w* \w come|strong="H1961"\w* \w near|strong="H7126"\w* \w to|strong="H1961"\w* \w you|strong="H7126"\w*. +\q1 +\v 10 \w Many|strong="H7227"\w* \w sorrows|strong="H4341"\w* \w come|strong="H5437"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w wicked|strong="H7563"\w*, +\q2 \w but|strong="H7563"\w* loving \w kindness|strong="H2617"\w* \w shall|strong="H3068"\w* \w surround|strong="H5437"\w* \w him|strong="H3068"\w* \w who|strong="H3068"\w* trusts \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 11 \w Be|strong="H3068"\w* \w glad|strong="H8055"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w rejoice|strong="H8055"\w*, \w you|strong="H3605"\w* \w righteous|strong="H6662"\w*! +\q2 \w Shout|strong="H7442"\w* \w for|strong="H7442"\w* \w joy|strong="H7442"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H3068"\w* \w upright|strong="H3477"\w* \w in|strong="H3068"\w* \w heart|strong="H3820"\w*! +\c 33 +\q1 +\v 1 \w Rejoice|strong="H7442"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w you|strong="H8416"\w* \w righteous|strong="H6662"\w*! +\q2 \w Praise|strong="H8416"\w* \w is|strong="H3068"\w* \w fitting|strong="H5000"\w* \w for|strong="H7442"\w* \w the|strong="H3068"\w* \w upright|strong="H3477"\w*. +\q1 +\v 2 \w Give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w the|strong="H3068"\w* \w lyre|strong="H3658"\w*. +\q2 \w Sing|strong="H2167"\w* \w praises|strong="H2167"\w* \w to|strong="H3068"\w* \w him|strong="H3068"\w* \w with|strong="H3068"\w* \w the|strong="H3068"\w* \w harp|strong="H3658"\w* \w of|strong="H3068"\w* \w ten|strong="H6218"\w* \w strings|strong="H6218"\w*. +\q1 +\v 3 \w Sing|strong="H7891"\w* \w to|strong="H3190"\w* him \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w song|strong="H7892"\w*. +\q2 \w Play|strong="H5059"\w* \w skillfully|strong="H3190"\w* \w with|strong="H7891"\w* \w a|strong="H3068"\w* \w shout|strong="H8643"\w* \w of|strong="H7892"\w* \w joy|strong="H8643"\w*! +\q1 +\v 4 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w is|strong="H3068"\w* \w right|strong="H3477"\w*. +\q2 \w All|strong="H3605"\w* \w his|strong="H3605"\w* \w work|strong="H4639"\w* \w is|strong="H3068"\w* \w done|strong="H4639"\w* \w in|strong="H3068"\w* faithfulness. +\q1 +\v 5 \w He|strong="H3068"\w* loves \w righteousness|strong="H6666"\w* \w and|strong="H3068"\w* \w justice|strong="H4941"\w*. +\q2 \w The|strong="H3068"\w* earth \w is|strong="H3068"\w* \w full|strong="H4390"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* loving \w kindness|strong="H2617"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 6 \w By|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w the|strong="H3605"\w* \w heavens|strong="H8064"\w* \w were|strong="H8064"\w* \w made|strong="H6213"\w*: +\q2 \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w army|strong="H6635"\w* \w by|strong="H3068"\w* \w the|strong="H3605"\w* \w breath|strong="H7307"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w mouth|strong="H6310"\w*. +\q1 +\v 7 \w He|strong="H5414"\w* \w gathers|strong="H3664"\w* \w the|strong="H5414"\w* \w waters|strong="H4325"\w* \w of|strong="H4325"\w* \w the|strong="H5414"\w* \w sea|strong="H3220"\w* \w together|strong="H3664"\w* \w as|strong="H5414"\w* \w a|strong="H3068"\w* \w heap|strong="H5067"\w*. +\q2 \w He|strong="H5414"\w* \w lays|strong="H5414"\w* \w up|strong="H5414"\w* \w the|strong="H5414"\w* \w deeps|strong="H8415"\w* \w in|strong="H5414"\w* storehouses. +\q1 +\v 8 Let \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w*. +\q2 Let \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w world|strong="H8398"\w* \w stand|strong="H1481"\w* \w in|strong="H3427"\w* \w awe|strong="H1481"\w* \w of|strong="H3068"\w* \w him|strong="H3605"\w*. +\q1 +\v 9 \w For|strong="H3588"\w* \w he|strong="H1931"\w* spoke, \w and|strong="H5975"\w* \w it|strong="H1931"\w* \w was|strong="H1961"\w* \w done|strong="H1961"\w*. +\q2 \w He|strong="H1931"\w* \w commanded|strong="H6680"\w*, \w and|strong="H5975"\w* \w it|strong="H1931"\w* \w stood|strong="H5975"\w* \w firm|strong="H5975"\w*. +\q1 +\v 10 \w Yahweh|strong="H3068"\w* brings \w the|strong="H3068"\w* \w counsel|strong="H6098"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w nations|strong="H1471"\w* \w to|strong="H3068"\w* nothing. +\q2 \w He|strong="H3068"\w* \w makes|strong="H3068"\w* \w the|strong="H3068"\w* \w thoughts|strong="H4284"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w peoples|strong="H5971"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w of|strong="H3068"\w* no \w effect|strong="H5106"\w*. +\q1 +\v 11 \w The|strong="H3068"\w* \w counsel|strong="H6098"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w stands|strong="H5975"\w* \w fast|strong="H5975"\w* \w forever|strong="H5769"\w*, +\q2 \w the|strong="H3068"\w* \w thoughts|strong="H4284"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w heart|strong="H3820"\w* \w to|strong="H3068"\w* \w all|strong="H1755"\w* \w generations|strong="H1755"\w*. +\q1 +\v 12 Blessed \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w nation|strong="H1471"\w* \w whose|strong="H1471"\w* \w God|strong="H3068"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w the|strong="H3068"\w* \w people|strong="H5971"\w* \w whom|strong="H5971"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* chosen \w for|strong="H3068"\w* \w his|strong="H3068"\w* \w own|strong="H5971"\w* \w inheritance|strong="H5159"\w*. +\q1 +\v 13 \w Yahweh|strong="H3068"\w* \w looks|strong="H7200"\w* \w from|strong="H1121"\w* \w heaven|strong="H8064"\w*. +\q2 \w He|strong="H3068"\w* \w sees|strong="H7200"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*. +\q1 +\v 14 \w From|strong="H3427"\w* \w the|strong="H3605"\w* \w place|strong="H4349"\w* \w of|strong="H3427"\w* \w his|strong="H3605"\w* \w habitation|strong="H3427"\w* \w he|strong="H3605"\w* \w looks|strong="H7688"\w* \w out|strong="H3605"\w* \w on|strong="H3427"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* earth, +\q2 +\v 15 \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w fashions|strong="H3335"\w* \w all|strong="H3605"\w* \w of|strong="H3820"\w* \w their|strong="H3605"\w* \w hearts|strong="H3820"\w*; +\q2 \w and|strong="H3820"\w* \w he|strong="H3605"\w* considers \w all|strong="H3605"\w* \w of|strong="H3820"\w* \w their|strong="H3605"\w* \w works|strong="H4639"\w*. +\q1 +\v 16 \w There|strong="H7230"\w* \w is|strong="H4428"\w* \w no|strong="H3808"\w* \w king|strong="H4428"\w* \w saved|strong="H3467"\w* \w by|strong="H3808"\w* \w the|strong="H3808"\w* \w multitude|strong="H7230"\w* \w of|strong="H4428"\w* \w an|strong="H3467"\w* \w army|strong="H2428"\w*. +\q2 \w A|strong="H3068"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w* \w is|strong="H4428"\w* \w not|strong="H3808"\w* \w delivered|strong="H5337"\w* \w by|strong="H3808"\w* \w great|strong="H7230"\w* \w strength|strong="H3581"\w*. +\q1 +\v 17 \w A|strong="H3068"\w* \w horse|strong="H5483"\w* \w is|strong="H5483"\w* \w a|strong="H3068"\w* \w vain|strong="H8267"\w* \w thing|strong="H8267"\w* \w for|strong="H2428"\w* \w safety|strong="H8668"\w*, +\q2 \w neither|strong="H3808"\w* \w does|strong="H3808"\w* \w he|strong="H3808"\w* \w deliver|strong="H4422"\w* \w any|strong="H3808"\w* \w by|strong="H3808"\w* \w his|strong="H3808"\w* \w great|strong="H7230"\w* \w power|strong="H2428"\w*. +\q1 +\v 18 \w Behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w*’s \w eye|strong="H5869"\w* \w is|strong="H3068"\w* \w on|strong="H3068"\w* those \w who|strong="H3068"\w* \w fear|strong="H3373"\w* \w him|strong="H5869"\w*, +\q2 \w on|strong="H3068"\w* those \w who|strong="H3068"\w* \w hope|strong="H3176"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* loving \w kindness|strong="H2617"\w*, +\q2 +\v 19 \w to|strong="H5315"\w* \w deliver|strong="H5337"\w* \w their|strong="H5337"\w* \w soul|strong="H5315"\w* \w from|strong="H5315"\w* \w death|strong="H4194"\w*, +\q2 \w to|strong="H5315"\w* \w keep|strong="H2421"\w* \w them|strong="H2421"\w* \w alive|strong="H2421"\w* \w in|strong="H5315"\w* \w famine|strong="H7458"\w*. +\q1 +\v 20 \w Our|strong="H3068"\w* \w soul|strong="H5315"\w* \w has|strong="H3068"\w* \w waited|strong="H2442"\w* \w for|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w He|strong="H1931"\w* \w is|strong="H3068"\w* \w our|strong="H3068"\w* \w help|strong="H5828"\w* \w and|strong="H3068"\w* \w our|strong="H3068"\w* \w shield|strong="H4043"\w*. +\q1 +\v 21 \w For|strong="H3588"\w* \w our|strong="H3588"\w* \w heart|strong="H3820"\w* \w rejoices|strong="H8055"\w* \w in|strong="H8034"\w* \w him|strong="H8055"\w*, +\q2 \w because|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3588"\w* trusted \w in|strong="H8034"\w* \w his|strong="H3588"\w* \w holy|strong="H6944"\w* \w name|strong="H8034"\w*. +\q1 +\v 22 \w Let|strong="H1961"\w* \w your|strong="H3068"\w* loving \w kindness|strong="H2617"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w us|strong="H5921"\w*, \w Yahweh|strong="H3068"\w*, +\q2 since \w we|strong="H3068"\w* \w have|strong="H1961"\w* \w hoped|strong="H3176"\w* \w in|strong="H5921"\w* \w you|strong="H5921"\w*. +\c 34 +\d By David; when he pretended to be insane before Abimelech, who drove him away, and he departed. +\q1 +\v 1 \f + \fr 34:1 \ft Psalm 34 is an acrostic poem, with each verse starting with a letter of the alphabet (ordered from Alef to Tav).\f*\w I|strong="H1980"\w* \w will|strong="H6440"\w* bless \w Yahweh|strong="H3068"\w* \w at|strong="H1732"\w* \w all|strong="H6440"\w* \w times|strong="H6440"\w*. +\q2 \w His|strong="H1732"\w* praise \w will|strong="H6440"\w* always \w be|strong="H6440"\w* \w in|strong="H1980"\w* \w my|strong="H1732"\w* \w mouth|strong="H6440"\w*. +\q1 +\v 2 \w My|strong="H3605"\w* soul \w shall|strong="H3068"\w* \w boast|strong="H1288"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w The|strong="H3605"\w* humble \w shall|strong="H3068"\w* hear \w of|strong="H3068"\w* \w it|strong="H3068"\w* \w and|strong="H3068"\w* \w be|strong="H3068"\w* glad. +\q1 +\v 3 Oh magnify \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w me|strong="H5315"\w*. +\q2 \w Let|strong="H8055"\w*’s exalt \w his|strong="H3068"\w* name \w together|strong="H8085"\w*. +\q1 +\v 4 \w I|strong="H3068"\w* sought \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* answered \w me|strong="H7311"\w*, +\q2 \w and|strong="H3068"\w* \w delivered|strong="H3068"\w* \w me|strong="H7311"\w* \w from|strong="H3068"\w* \w all|strong="H3162"\w* \w my|strong="H3068"\w* fears. +\q1 +\v 5 \w They|strong="H3068"\w* \w looked|strong="H3068"\w* \w to|strong="H3068"\w* \w him|strong="H3605"\w*, \w and|strong="H3068"\w* \w were|strong="H3068"\w* radiant. +\q2 \w Their|strong="H3605"\w* faces \w shall|strong="H3068"\w* never \w be|strong="H3068"\w* covered \w with|strong="H3068"\w* shame. +\q1 +\v 6 \w This|strong="H6440"\w* poor \w man|strong="H6440"\w* cried, \w and|strong="H6440"\w* \w Yahweh|strong="H3068"\w* heard \w him|strong="H6440"\w*, +\q2 \w and|strong="H6440"\w* saved \w him|strong="H6440"\w* \w out|strong="H6440"\w* \w of|strong="H6440"\w* \w all|strong="H6440"\w* \w his|strong="H6440"\w* troubles. +\q1 +\v 7 \w Yahweh|strong="H3068"\w*’s angel encamps around \w those|strong="H3605"\w* \w who|strong="H3605"\w* fear \w him|strong="H7121"\w*, +\q2 \w and|strong="H3068"\w* \w delivers|strong="H3467"\w* \w them|strong="H7121"\w*. +\q1 +\v 8 Oh taste \w and|strong="H3068"\w* see \w that|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* good. +\q2 Blessed \w is|strong="H3068"\w* \w the|strong="H3068"\w* man \w who|strong="H3068"\w* takes refuge \w in|strong="H2583"\w* \w him|strong="H5439"\w*. +\q1 +\v 9 Oh fear \w Yahweh|strong="H3068"\w*, \w you|strong="H3588"\w* \w his|strong="H3068"\w* saints, +\q2 \w for|strong="H3588"\w* \w there|strong="H3068"\w* \w is|strong="H3068"\w* \w no|strong="H7200"\w* lack \w with|strong="H3068"\w* \w those|strong="H3588"\w* \w who|strong="H3068"\w* fear \w him|strong="H7200"\w*. +\q1 +\v 10 \w The|strong="H3588"\w* young lions \w do|strong="H3068"\w* \w lack|strong="H4270"\w*, \w and|strong="H3068"\w* suffer hunger, +\q2 \w but|strong="H3588"\w* \w those|strong="H3588"\w* \w who|strong="H3068"\w* seek \w Yahweh|strong="H3068"\w* \w shall|strong="H3068"\w* \w not|strong="H3588"\w* \w lack|strong="H4270"\w* \w any|strong="H3588"\w* good \w thing|strong="H3588"\w*. +\b +\q1 +\v 11 Come, \w you|strong="H3605"\w* children, \w listen|strong="H3605"\w* \w to|strong="H3068"\w* \w me|strong="H1875"\w*. +\q2 \w I|strong="H3808"\w* \w will|strong="H3068"\w* teach \w you|strong="H3605"\w* \w the|strong="H3605"\w* fear \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 12 \w Who|strong="H3068"\w* \w is|strong="H3068"\w* someone \w who|strong="H3068"\w* desires life, +\q2 \w and|strong="H1121"\w* loves many days, \w that|strong="H8085"\w* \w he|strong="H3068"\w* \w may|strong="H3068"\w* see good? +\q1 +\v 13 \w Keep|strong="H7200"\w* \w your|strong="H7200"\w* tongue \w from|strong="H3117"\w* evil, +\q2 \w and|strong="H3117"\w* \w your|strong="H7200"\w* lips \w from|strong="H3117"\w* speaking lies. +\q1 +\v 14 Depart \w from|strong="H7451"\w* \w evil|strong="H7451"\w*, \w and|strong="H1696"\w* \w do|strong="H8193"\w* good. +\q2 Seek peace, \w and|strong="H1696"\w* pursue \w it|strong="H1696"\w*. +\q1 +\v 15 \w Yahweh|strong="H3068"\w*’s eyes \w are|strong="H6213"\w* \w toward|strong="H6213"\w* \w the|strong="H6213"\w* righteous. +\q2 \w His|strong="H5493"\w* ears listen \w to|strong="H6213"\w* \w their|strong="H1245"\w* cry. +\q1 +\v 16 \w Yahweh|strong="H3068"\w*’s \w face|strong="H5869"\w* \w is|strong="H3068"\w* \w against|strong="H3068"\w* those \w who|strong="H3068"\w* \w do|strong="H3068"\w* evil, +\q2 \w to|strong="H3068"\w* cut off \w their|strong="H3068"\w* memory \w from|strong="H3068"\w* \w the|strong="H3068"\w* earth. +\q1 +\v 17 \w The|strong="H6440"\w* righteous cry, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* hears, +\q2 \w and|strong="H3068"\w* delivers \w them|strong="H6440"\w* \w out|strong="H6213"\w* \w of|strong="H3068"\w* \w all|strong="H6213"\w* \w their|strong="H3068"\w* \w troubles|strong="H7451"\w*. +\q1 +\v 18 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* near \w to|strong="H3068"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w have|strong="H3068"\w* \w a|strong="H3068"\w* broken \w heart|strong="H8085"\w*, +\q2 \w and|strong="H3068"\w* \w saves|strong="H5337"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w have|strong="H3068"\w* \w a|strong="H3068"\w* crushed spirit. +\q1 +\v 19 Many \w are|strong="H3068"\w* \w the|strong="H3068"\w* afflictions \w of|strong="H3068"\w* \w the|strong="H3068"\w* righteous, +\q2 \w but|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w delivers|strong="H3467"\w* \w him|strong="H3068"\w* out \w of|strong="H3068"\w* \w them|strong="H7665"\w* \w all|strong="H3467"\w*. +\q1 +\v 20 \w He|strong="H3068"\w* protects \w all|strong="H3605"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* bones. +\q2 \w Not|strong="H7451"\w* \w one|strong="H3605"\w* \w of|strong="H3068"\w* \w them|strong="H3068"\w* \w is|strong="H3068"\w* broken. +\q1 +\v 21 Evil \w shall|strong="H3808"\w* kill \w the|strong="H3605"\w* wicked. +\q2 \w Those|strong="H3605"\w* \w who|strong="H3605"\w* hate \w the|strong="H3605"\w* righteous \w shall|strong="H3808"\w* \w be|strong="H3808"\w* condemned. +\q1 +\v 22 \w Yahweh|strong="H3068"\w* redeems \w the|strong="H4191"\w* soul \w of|strong="H4191"\w* \w his|strong="H8130"\w* servants. +\q2 None \w of|strong="H4191"\w* \w those|strong="H8130"\w* \w who|strong="H6662"\w* take refuge \w in|strong="H4191"\w* \w him|strong="H8130"\w* \w shall|strong="H7563"\w* \w be|strong="H4191"\w* \w condemned|strong="H7563"\w*. +\c 35 +\d By David. +\q1 +\v 1 \w Contend|strong="H7378"\w*, \w Yahweh|strong="H3068"\w*, \w with|strong="H3068"\w* those \w who|strong="H3068"\w* \w contend|strong="H7378"\w* \w with|strong="H3068"\w* me. +\q2 \w Fight|strong="H3898"\w* \w against|strong="H3898"\w* those \w who|strong="H3068"\w* \w fight|strong="H3898"\w* \w against|strong="H3898"\w* me. +\q1 +\v 2 \w Take|strong="H2388"\w* \w hold|strong="H2388"\w* \w of|strong="H4043"\w* \w shield|strong="H4043"\w* \w and|strong="H6965"\w* \w buckler|strong="H4043"\w*, +\q2 \w and|strong="H6965"\w* \w stand|strong="H6965"\w* \w up|strong="H6965"\w* \w for|strong="H6965"\w* \w my|strong="H6965"\w* \w help|strong="H5833"\w*. +\q1 +\v 3 Brandish \w the|strong="H5462"\w* \w spear|strong="H2595"\w* \w and|strong="H5315"\w* block \w those|strong="H5315"\w* \w who|strong="H5315"\w* \w pursue|strong="H7291"\w* \w me|strong="H5315"\w*. +\q2 Tell \w my|strong="H7291"\w* \w soul|strong="H5315"\w*, “\w I|strong="H5315"\w* am \w your|strong="H7291"\w* \w salvation|strong="H3444"\w*.” +\q1 +\v 4 \w Let|strong="H5315"\w* \w those|strong="H5315"\w* \w who|strong="H5315"\w* \w seek|strong="H1245"\w* \w after|strong="H1245"\w* \w my|strong="H1245"\w* \w soul|strong="H5315"\w* \w be|strong="H5315"\w* disappointed \w and|strong="H5315"\w* \w brought|strong="H3637"\w* \w to|strong="H1245"\w* \w dishonor|strong="H3637"\w*. +\q2 \w Let|strong="H5315"\w* \w those|strong="H5315"\w* \w who|strong="H5315"\w* \w plot|strong="H2803"\w* \w my|strong="H1245"\w* \w ruin|strong="H7451"\w* \w be|strong="H5315"\w* \w turned|strong="H5472"\w* \w back|strong="H5472"\w* \w and|strong="H5315"\w* \w confounded|strong="H3637"\w*. +\q1 +\v 5 \w Let|strong="H1961"\w* \w them|strong="H6440"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w chaff|strong="H4671"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w wind|strong="H7307"\w*, +\q2 \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w driving|strong="H1760"\w* \w them|strong="H6440"\w* \w on|strong="H3068"\w*. +\q1 +\v 6 \w Let|strong="H1961"\w* \w their|strong="H3068"\w* \w way|strong="H1870"\w* \w be|strong="H1961"\w* \w dark|strong="H2822"\w* \w and|strong="H3068"\w* \w slippery|strong="H2519"\w*, +\q2 \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w pursuing|strong="H7291"\w* \w them|strong="H7291"\w*. +\q1 +\v 7 \w For|strong="H3588"\w* \w without|strong="H2600"\w* \w cause|strong="H2600"\w* \w they|strong="H3588"\w* \w have|strong="H3588"\w* \w hidden|strong="H2934"\w* \w their|strong="H3588"\w* \w net|strong="H7568"\w* \w in|strong="H5315"\w* \w a|strong="H3068"\w* \w pit|strong="H7845"\w* \w for|strong="H3588"\w* \w me|strong="H5315"\w*. +\q2 \w Without|strong="H2600"\w* \w cause|strong="H2600"\w* \w they|strong="H3588"\w* \w have|strong="H3588"\w* \w dug|strong="H2658"\w* \w a|strong="H3068"\w* \w pit|strong="H7845"\w* \w for|strong="H3588"\w* \w my|strong="H3588"\w* \w soul|strong="H5315"\w*. +\q1 +\v 8 \w Let|strong="H3808"\w* \w destruction|strong="H7722"\w* \w come|strong="H5307"\w* \w on|strong="H5307"\w* \w him|strong="H3045"\w* \w unawares|strong="H3045"\w*. +\q2 \w Let|strong="H3808"\w* \w his|strong="H3045"\w* \w net|strong="H7568"\w* \w that|strong="H3045"\w* \w he|strong="H3808"\w* \w has|strong="H3045"\w* \w hidden|strong="H2934"\w* \w catch|strong="H3920"\w* \w himself|strong="H3045"\w*. +\q2 \w Let|strong="H3808"\w* \w him|strong="H3045"\w* \w fall|strong="H5307"\w* \w into|strong="H5307"\w* \w that|strong="H3045"\w* \w destruction|strong="H7722"\w*. +\b +\q1 +\v 9 \w My|strong="H3068"\w* \w soul|strong="H5315"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w joyful|strong="H1523"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w It|strong="H3068"\w* \w shall|strong="H3068"\w* \w rejoice|strong="H1523"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w salvation|strong="H3444"\w*. +\q1 +\v 10 \w All|strong="H3605"\w* \w my|strong="H3605"\w* \w bones|strong="H6106"\w* \w shall|strong="H3068"\w* say, “\w Yahweh|strong="H3068"\w*, \w who|strong="H4310"\w* \w is|strong="H3068"\w* \w like|strong="H3644"\w* \w you|strong="H3605"\w*, +\q2 \w who|strong="H4310"\w* \w delivers|strong="H5337"\w* \w the|strong="H3605"\w* \w poor|strong="H6041"\w* \w from|strong="H4480"\w* \w him|strong="H3605"\w* \w who|strong="H4310"\w* \w is|strong="H3068"\w* \w too|strong="H4480"\w* \w strong|strong="H2389"\w* \w for|strong="H3068"\w* \w him|strong="H3605"\w*; +\q2 yes, \w the|strong="H3605"\w* \w poor|strong="H6041"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w needy|strong="H6041"\w* \w from|strong="H4480"\w* \w him|strong="H3605"\w* \w who|strong="H4310"\w* \w robs|strong="H1497"\w* \w him|strong="H3605"\w*?” +\q1 +\v 11 \w Unrighteous|strong="H2555"\w* \w witnesses|strong="H5707"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w*. +\q2 \w They|strong="H3808"\w* \w ask|strong="H7592"\w* \w me|strong="H7592"\w* \w about|strong="H3045"\w* \w things|strong="H7592"\w* \w that|strong="H3045"\w* \w I|strong="H3045"\w* don’t \w know|strong="H3045"\w* \w about|strong="H3045"\w*. +\q1 +\v 12 \w They|strong="H5315"\w* \w reward|strong="H7999"\w* \w me|strong="H5315"\w* \w evil|strong="H7451"\w* \w for|strong="H8478"\w* \w good|strong="H2896"\w*, +\q2 \w to|strong="H5315"\w* \w the|strong="H8478"\w* bereaving \w of|strong="H8478"\w* \w my|strong="H8478"\w* \w soul|strong="H5315"\w*. +\b +\q1 +\v 13 \w But|strong="H7725"\w* \w as|strong="H5315"\w* \w for|strong="H5921"\w* \w me|strong="H5315"\w*, \w when|strong="H7725"\w* \w they|strong="H5921"\w* \w were|strong="H5315"\w* \w sick|strong="H2470"\w*, \w my|strong="H5921"\w* \w clothing|strong="H3830"\w* \w was|strong="H5315"\w* \w sackcloth|strong="H8242"\w*. +\q2 \w I|strong="H5921"\w* \w afflicted|strong="H6031"\w* \w my|strong="H5921"\w* \w soul|strong="H5315"\w* \w with|strong="H5921"\w* \w fasting|strong="H6685"\w*. +\q2 \w My|strong="H5921"\w* \w prayer|strong="H8605"\w* \w returned|strong="H7725"\w* \w into|strong="H7725"\w* \w my|strong="H5921"\w* \w own|strong="H5315"\w* \w bosom|strong="H2436"\w*. +\q1 +\v 14 \w I|strong="H1980"\w* \w behaved|strong="H1980"\w* \w myself|strong="H1980"\w* \w as|strong="H1980"\w* though \w it|strong="H1980"\w* had \w been|strong="H7817"\w* \w my|strong="H1980"\w* \w friend|strong="H7453"\w* \w or|strong="H7453"\w* \w my|strong="H1980"\w* \w brother|strong="H7453"\w*. +\q2 \w I|strong="H1980"\w* \w bowed|strong="H7817"\w* \w down|strong="H7817"\w* \w mourning|strong="H6937"\w*, \w as|strong="H1980"\w* \w one|strong="H7453"\w* \w who|strong="H1980"\w* mourns \w his|strong="H1980"\w* mother. +\q1 +\v 15 \w But|strong="H3808"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* \w adversity|strong="H6761"\w*, \w they|strong="H3808"\w* \w rejoiced|strong="H8055"\w*, \w and|strong="H3045"\w* gathered \w themselves|strong="H3045"\w* \w together|strong="H5921"\w*. +\q2 \w The|strong="H5921"\w* attackers gathered \w themselves|strong="H3045"\w* \w together|strong="H5921"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*, \w and|strong="H3045"\w* \w I|strong="H5921"\w* didn’t \w know|strong="H3045"\w* \w it|strong="H5921"\w*. +\q2 \w They|strong="H3808"\w* \w tore|strong="H7167"\w* \w at|strong="H5921"\w* \w me|strong="H5921"\w*, \w and|strong="H3045"\w* didn’t \w cease|strong="H1826"\w*. +\q1 +\v 16 \w Like|strong="H5921"\w* \w the|strong="H5921"\w* profane \w mockers|strong="H3934"\w* \w in|strong="H5921"\w* \w feasts|strong="H4580"\w*, +\q2 \w they|strong="H5921"\w* \w gnashed|strong="H2786"\w* \w their|strong="H5921"\w* \w teeth|strong="H8127"\w* \w at|strong="H5921"\w* \w me|strong="H5921"\w*. +\q1 +\v 17 Lord, \w how|strong="H4100"\w* \w long|strong="H4100"\w* \w will|strong="H5315"\w* \w you|strong="H7725"\w* \w look|strong="H7200"\w* \w on|strong="H7200"\w*? +\q2 \w Rescue|strong="H7725"\w* \w my|strong="H7200"\w* \w soul|strong="H5315"\w* \w from|strong="H7725"\w* \w their|strong="H7725"\w* \w destruction|strong="H7722"\w*, +\q2 \w my|strong="H7200"\w* precious \w life|strong="H5315"\w* \w from|strong="H7725"\w* \w the|strong="H7200"\w* \w lions|strong="H3715"\w*. +\q1 +\v 18 \w I|strong="H1984"\w* \w will|strong="H5971"\w* \w give|strong="H3034"\w* \w you|strong="H3034"\w* \w thanks|strong="H3034"\w* \w in|strong="H7227"\w* \w the|strong="H1984"\w* \w great|strong="H7227"\w* \w assembly|strong="H6951"\w*. +\q2 \w I|strong="H1984"\w* \w will|strong="H5971"\w* \w praise|strong="H1984"\w* \w you|strong="H3034"\w* \w among|strong="H5971"\w* \w many|strong="H7227"\w* \w people|strong="H5971"\w*. +\q1 +\v 19 Don’t \w let|strong="H8055"\w* \w those|strong="H8130"\w* \w who|strong="H8130"\w* \w are|strong="H5869"\w* \w my|strong="H8267"\w* \w enemies|strong="H8130"\w* \w wrongfully|strong="H8267"\w* \w rejoice|strong="H8055"\w* \w over|strong="H5869"\w* \w me|strong="H8130"\w*; +\q2 neither \w let|strong="H8055"\w* \w those|strong="H8130"\w* \w who|strong="H8130"\w* \w hate|strong="H8130"\w* \w me|strong="H8130"\w* \w without|strong="H2600"\w* \w a|strong="H3068"\w* \w cause|strong="H2600"\w* \w wink|strong="H7169"\w* their \w eyes|strong="H5869"\w*. +\q1 +\v 20 \w For|strong="H3588"\w* \w they|strong="H3588"\w* don’t \w speak|strong="H1696"\w* \w peace|strong="H7965"\w*, +\q2 \w but|strong="H3588"\w* \w they|strong="H3588"\w* \w devise|strong="H2803"\w* \w deceitful|strong="H4820"\w* \w words|strong="H1697"\w* \w against|strong="H5921"\w* \w those|strong="H5921"\w* \w who|strong="H3588"\w* \w are|strong="H1697"\w* \w quiet|strong="H7282"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land. +\q1 +\v 21 \w Yes|strong="H7200"\w*, \w they|strong="H5921"\w* \w opened|strong="H7337"\w* \w their|strong="H7200"\w* \w mouth|strong="H6310"\w* \w wide|strong="H7337"\w* \w against|strong="H5921"\w* \w me|strong="H7200"\w*. +\q2 \w They|strong="H5921"\w* \w said|strong="H6310"\w*, “\w Aha|strong="H1889"\w*! \w Aha|strong="H1889"\w*! \w Our|strong="H7200"\w* \w eye|strong="H5869"\w* \w has|strong="H5869"\w* \w seen|strong="H7200"\w* \w it|strong="H5921"\w*!” +\q1 +\v 22 \w You|strong="H4480"\w* \w have|strong="H3068"\w* \w seen|strong="H7200"\w* \w it|strong="H7200"\w*, \w Yahweh|strong="H3068"\w*. Don’t \w keep|strong="H2790"\w* \w silent|strong="H2790"\w*. +\q2 \w Lord|strong="H3068"\w*, don’t \w be|strong="H3068"\w* \w far|strong="H7368"\w* \w from|strong="H4480"\w* \w me|strong="H7200"\w*. +\q1 +\v 23 \w Wake|strong="H6974"\w* \w up|strong="H5782"\w*! Rise \w up|strong="H5782"\w* \w to|strong="H4941"\w* \w defend|strong="H7379"\w* \w me|strong="H7379"\w*, \w my|strong="H4941"\w* God! +\q2 \w My|strong="H4941"\w* Lord, \w contend|strong="H7379"\w* \w for|strong="H4941"\w* \w me|strong="H7379"\w*! +\q1 +\v 24 \w Vindicate|strong="H8199"\w* \w me|strong="H8055"\w*, \w Yahweh|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*, according \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w righteousness|strong="H6664"\w*. +\q2 Don’t \w let|strong="H8055"\w* \w them|strong="H8055"\w* \w gloat|strong="H8055"\w* \w over|strong="H3068"\w* \w me|strong="H8055"\w*. +\q1 +\v 25 Don’t \w let|strong="H5315"\w* \w them|strong="H1104"\w* say \w in|strong="H5315"\w* \w their|strong="H1104"\w* \w heart|strong="H3820"\w*, “\w Aha|strong="H1889"\w*! \w That|strong="H5315"\w*’s \w the|strong="H1104"\w* way \w we|strong="H3068"\w* \w want|strong="H5315"\w* \w it|strong="H5315"\w*!” +\q2 Don’t \w let|strong="H5315"\w* \w them|strong="H1104"\w* say, “\w We|strong="H5315"\w* have \w swallowed|strong="H1104"\w* \w him|strong="H5315"\w* \w up|strong="H1104"\w*!” +\q1 +\v 26 \w Let|strong="H8056"\w* \w them|strong="H5921"\w* \w be|strong="H7451"\w* disappointed \w and|strong="H1431"\w* \w confounded|strong="H2659"\w* \w together|strong="H3162"\w* \w who|strong="H3639"\w* \w rejoice|strong="H8056"\w* \w at|strong="H5921"\w* \w my|strong="H5921"\w* \w calamity|strong="H7451"\w*. +\q2 \w Let|strong="H8056"\w* \w them|strong="H5921"\w* \w be|strong="H7451"\w* \w clothed|strong="H3847"\w* \w with|strong="H3847"\w* \w shame|strong="H1322"\w* \w and|strong="H1431"\w* \w dishonor|strong="H3639"\w* \w who|strong="H3639"\w* \w magnify|strong="H1431"\w* \w themselves|strong="H1431"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*. +\b +\q1 +\v 27 \w Let|strong="H8055"\w* those \w who|strong="H3068"\w* \w favor|strong="H7965"\w* \w my|strong="H3068"\w* \w righteous|strong="H6664"\w* \w cause|strong="H6664"\w* \w shout|strong="H7442"\w* \w for|strong="H7442"\w* \w joy|strong="H7442"\w* \w and|strong="H3068"\w* \w be|strong="H3068"\w* \w glad|strong="H8055"\w*. +\q2 Yes, \w let|strong="H8055"\w* \w them|strong="H8055"\w* say \w continually|strong="H8548"\w*, “\w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w be|strong="H3068"\w* \w magnified|strong="H1431"\w*, +\q2 \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w pleasure|strong="H2655"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w prosperity|strong="H7965"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w servant|strong="H5650"\w*!” +\q1 +\v 28 \w My|strong="H3605"\w* \w tongue|strong="H3956"\w* \w shall|strong="H3117"\w* \w talk|strong="H1897"\w* \w about|strong="H3117"\w* \w your|strong="H3605"\w* \w righteousness|strong="H6664"\w* \w and|strong="H3117"\w* \w about|strong="H3117"\w* \w your|strong="H3605"\w* \w praise|strong="H8416"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w* \w long|strong="H3117"\w*. +\c 36 +\d For the Chief Musician. By David, the servant of Yahweh. +\q1 +\v 1 \w A|strong="H3068"\w* revelation \w is|strong="H3068"\w* within \w my|strong="H3068"\w* heart \w about|strong="H1732"\w* \w the|strong="H3068"\w* disobedience \w of|strong="H3068"\w* \w the|strong="H3068"\w* wicked: +\q2 \w There|strong="H3068"\w* \w is|strong="H3068"\w* no fear \w of|strong="H3068"\w* \w God|strong="H3068"\w* before \w his|strong="H3068"\w* eyes. +\q1 +\v 2 \w For|strong="H5869"\w* \w he|strong="H7130"\w* flatters \w himself|strong="H3820"\w* \w in|strong="H7130"\w* \w his|strong="H7130"\w* \w own|strong="H5869"\w* \w eyes|strong="H5869"\w*, +\q2 too much \w to|strong="H3820"\w* detect \w and|strong="H5869"\w* hate \w his|strong="H7130"\w* \w sin|strong="H6588"\w*. +\q1 +\v 3 \w The|strong="H3588"\w* words \w of|strong="H5869"\w* \w his|strong="H3588"\w* mouth \w are|strong="H5869"\w* \w iniquity|strong="H5771"\w* \w and|strong="H5869"\w* deceit. +\q2 \w He|strong="H3588"\w* \w has|strong="H3588"\w* ceased \w to|strong="H5869"\w* \w be|strong="H5869"\w* wise \w and|strong="H5869"\w* \w to|strong="H5869"\w* \w do|strong="H5869"\w* \w good|strong="H5869"\w*. +\q1 +\v 4 \w He|strong="H6310"\w* plots iniquity \w on|strong="H1697"\w* \w his|strong="H6310"\w* bed. +\q2 \w He|strong="H6310"\w* sets \w himself|strong="H7919"\w* \w in|strong="H1697"\w* \w a|strong="H3068"\w* \w way|strong="H1697"\w* \w that|strong="H1697"\w* \w is|strong="H1697"\w* \w not|strong="H2308"\w* \w good|strong="H3190"\w*. +\q2 \w He|strong="H6310"\w* doesn’t abhor evil. +\b +\q1 +\v 5 \w Your|strong="H5921"\w* \w loving|strong="H2896"\w* \w kindness|strong="H2896"\w*, \w Yahweh|strong="H3068"\w*, \w is|strong="H2896"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* heavens. +\q2 \w Your|strong="H5921"\w* faithfulness reaches \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w skies|strong="H5921"\w*. +\q1 +\v 6 \w Your|strong="H3068"\w* \w righteousness|strong="H2617"\w* \w is|strong="H3068"\w* \w like|strong="H5704"\w* \w the|strong="H3068"\w* mountains \w of|strong="H3068"\w* \w God|strong="H3068"\w*. +\q2 \w Your|strong="H3068"\w* judgments \w are|strong="H8064"\w* \w like|strong="H5704"\w* \w a|strong="H3068"\w* great deep. +\q2 \w Yahweh|strong="H3068"\w*, \w you|strong="H5704"\w* preserve man \w and|strong="H3068"\w* animal. +\q1 +\v 7 How precious \w is|strong="H3068"\w* \w your|strong="H3068"\w* loving kindness, \w God|strong="H3068"\w*! +\q2 \w The|strong="H3068"\w* children \w of|strong="H3068"\w* \w men|strong="H7227"\w* \w take|strong="H4941"\w* refuge under \w the|strong="H3068"\w* shadow \w of|strong="H3068"\w* \w your|strong="H3068"\w* wings. +\q1 +\v 8 \w They|strong="H4100"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* abundantly satisfied \w with|strong="H1121"\w* \w the|strong="H1121"\w* abundance \w of|strong="H1121"\w* \w your|strong="H4100"\w* house. +\q2 \w You|strong="H4100"\w* \w will|strong="H1121"\w* make \w them|strong="H1121"\w* drink \w of|strong="H1121"\w* \w the|strong="H1121"\w* river \w of|strong="H1121"\w* \w your|strong="H4100"\w* pleasures. +\q1 +\v 9 \w For|strong="H1004"\w* \w with|strong="H1004"\w* \w you|strong="H8248"\w* \w is|strong="H1004"\w* \w the|strong="H8248"\w* spring \w of|strong="H1004"\w* life. +\q2 \w In|strong="H1004"\w* \w your|strong="H8248"\w* light \w we|strong="H3068"\w* \w will|strong="H1004"\w* see light. +\q1 +\v 10 Oh continue \w your|strong="H7200"\w* loving kindness \w to|strong="H7200"\w* \w those|strong="H5973"\w* \w who|strong="H3588"\w* know \w you|strong="H3588"\w*, +\q2 \w your|strong="H7200"\w* righteousness \w to|strong="H7200"\w* \w the|strong="H7200"\w* upright \w in|strong="H7200"\w* heart. +\q1 +\v 11 Don’t let \w the|strong="H3045"\w* foot \w of|strong="H3820"\w* pride \w come|strong="H3045"\w* against \w me|strong="H4900"\w*. +\q2 Don’t let \w the|strong="H3045"\w* hand \w of|strong="H3820"\w* \w the|strong="H3045"\w* wicked drive \w me|strong="H4900"\w* \w away|strong="H4900"\w*. +\q1 +\v 12 There \w the|strong="H3027"\w* workers \w of|strong="H3027"\w* iniquity \w are|strong="H7563"\w* fallen. +\q2 \w They|strong="H7272"\w* \w are|strong="H7563"\w* thrust \w down|strong="H3027"\w*, \w and|strong="H3027"\w* \w shall|strong="H7563"\w* not \w be|strong="H3027"\w* \w able|strong="H3027"\w* \w to|strong="H3027"\w* rise. +\c 37 +\d By David. +\q1 +\v 1 Don’t \w fret|strong="H2734"\w* because \w of|strong="H6213"\w* \w evildoers|strong="H7489"\w*, +\q2 neither \w be|strong="H1732"\w* \w envious|strong="H7065"\w* \w against|strong="H2734"\w* \w those|strong="H6213"\w* \w who|strong="H6213"\w* \w work|strong="H6213"\w* \w unrighteousness|strong="H5766"\w*. +\q1 +\v 2 \w For|strong="H3588"\w* \w they|strong="H3588"\w* shall \w soon|strong="H4120"\w* \w be|strong="H3588"\w* cut \w down|strong="H5243"\w* like \w the|strong="H3588"\w* \w grass|strong="H2682"\w*, +\q2 \w and|strong="H4120"\w* \w wither|strong="H5034"\w* like \w the|strong="H3588"\w* \w green|strong="H3418"\w* \w herb|strong="H1877"\w*. +\q1 +\v 3 Trust \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w do|strong="H6213"\w* \w good|strong="H2896"\w*. +\q2 \w Dwell|strong="H7931"\w* \w in|strong="H3068"\w* \w the|strong="H6213"\w* land, \w and|strong="H3068"\w* enjoy safe \w pasture|strong="H7462"\w*. +\q1 +\v 4 \w Also|strong="H3068"\w* \w delight|strong="H6026"\w* \w yourself|strong="H5921"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w the|strong="H5921"\w* \w desires|strong="H4862"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w heart|strong="H3820"\w*. +\q1 +\v 5 \w Commit|strong="H6213"\w* \w your|strong="H3068"\w* \w way|strong="H1870"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 Trust \w also|strong="H3068"\w* \w in|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H3068"\w* \w he|strong="H1931"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w this|strong="H6213"\w*: +\q1 +\v 6 \w he|strong="H3318"\w* \w will|strong="H6664"\w* \w make|strong="H4941"\w* \w your|strong="H3318"\w* \w righteousness|strong="H6664"\w* shine \w out|strong="H3318"\w* \w like|strong="H3318"\w* light, +\q2 \w and|strong="H4941"\w* \w your|strong="H3318"\w* \w justice|strong="H4941"\w* \w as|strong="H3318"\w* \w the|strong="H3318"\w* \w noon|strong="H6672"\w* \w day|strong="H6672"\w* sun. +\q1 +\v 7 \w Rest|strong="H1826"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w wait|strong="H2342"\w* \w patiently|strong="H2342"\w* \w for|strong="H6213"\w* \w him|strong="H6213"\w*. +\q2 Don’t \w fret|strong="H2734"\w* \w because|strong="H1870"\w* \w of|strong="H3068"\w* \w him|strong="H6213"\w* \w who|strong="H3068"\w* \w prospers|strong="H6743"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w way|strong="H1870"\w*, +\q2 \w because|strong="H1870"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* man \w who|strong="H3068"\w* \w makes|strong="H6213"\w* \w wicked|strong="H4209"\w* \w plots|strong="H4209"\w* \w happen|strong="H6213"\w*. +\q1 +\v 8 \w Cease|strong="H7503"\w* \w from|strong="H2534"\w* \w anger|strong="H2534"\w*, \w and|strong="H2534"\w* \w forsake|strong="H5800"\w* \w wrath|strong="H2534"\w*. +\q2 Don’t \w fret|strong="H2734"\w*; \w it|strong="H7503"\w* leads only \w to|strong="H2534"\w* \w evildoing|strong="H7489"\w*. +\q1 +\v 9 \w For|strong="H3588"\w* \w evildoers|strong="H7489"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*, +\q2 \w but|strong="H3588"\w* \w those|strong="H1992"\w* \w who|strong="H3068"\w* \w wait|strong="H6960"\w* \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w shall|strong="H3068"\w* \w inherit|strong="H3423"\w* \w the|strong="H3588"\w* land. +\q1 +\v 10 \w For|strong="H5921"\w* \w yet|strong="H5750"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w while|strong="H5750"\w*, \w and|strong="H4725"\w* \w the|strong="H5921"\w* \w wicked|strong="H7563"\w* \w will|strong="H7563"\w* \w be|strong="H5750"\w* \w no|strong="H7563"\w* \w more|strong="H5750"\w*. +\q2 Yes, though \w you|strong="H5921"\w* look \w for|strong="H5921"\w* \w his|strong="H5921"\w* \w place|strong="H4725"\w*, \w he|strong="H5921"\w* isn’t there. +\q1 +\v 11 \w But|strong="H5921"\w* \w the|strong="H5921"\w* \w humble|strong="H6035"\w* \w shall|strong="H6035"\w* \w inherit|strong="H3423"\w* \w the|strong="H5921"\w* land, +\q2 \w and|strong="H7965"\w* \w shall|strong="H6035"\w* \w delight|strong="H6026"\w* \w themselves|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w abundance|strong="H7230"\w* \w of|strong="H7230"\w* \w peace|strong="H7965"\w*. +\q1 +\v 12 \w The|strong="H5921"\w* \w wicked|strong="H7563"\w* \w plots|strong="H2161"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w just|strong="H6662"\w*, +\q2 \w and|strong="H6662"\w* \w gnashes|strong="H2786"\w* \w at|strong="H5921"\w* \w him|strong="H5921"\w* \w with|strong="H5921"\w* \w his|strong="H5921"\w* \w teeth|strong="H8127"\w*. +\q1 +\v 13 \w The|strong="H7200"\w* Lord \w will|strong="H3117"\w* \w laugh|strong="H7832"\w* \w at|strong="H3117"\w* \w him|strong="H7200"\w*, +\q2 \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w sees|strong="H7200"\w* \w that|strong="H3588"\w* \w his|strong="H7200"\w* \w day|strong="H3117"\w* \w is|strong="H3117"\w* coming. +\q1 +\v 14 \w The|strong="H1870"\w* \w wicked|strong="H7563"\w* \w have|strong="H7563"\w* \w drawn|strong="H6605"\w* \w out|strong="H1869"\w* \w the|strong="H1870"\w* \w sword|strong="H2719"\w*, \w and|strong="H6041"\w* \w have|strong="H7563"\w* \w bent|strong="H1869"\w* \w their|strong="H5307"\w* \w bow|strong="H7198"\w*, +\q2 \w to|strong="H1870"\w* \w cast|strong="H5307"\w* \w down|strong="H5307"\w* \w the|strong="H1870"\w* \w poor|strong="H6041"\w* \w and|strong="H6041"\w* \w needy|strong="H6041"\w*, +\q2 \w to|strong="H1870"\w* \w kill|strong="H2873"\w* \w those|strong="H2873"\w* \w who|strong="H6041"\w* \w are|strong="H7563"\w* \w upright|strong="H3477"\w* \w on|strong="H1870"\w* \w the|strong="H1870"\w* \w path|strong="H1870"\w*. +\q1 +\v 15 \w Their|strong="H7665"\w* \w sword|strong="H2719"\w* \w shall|strong="H3820"\w* enter \w into|strong="H2719"\w* \w their|strong="H7665"\w* own \w heart|strong="H3820"\w*. +\q2 \w Their|strong="H7665"\w* \w bows|strong="H7198"\w* \w shall|strong="H3820"\w* \w be|strong="H3820"\w* \w broken|strong="H7665"\w*. +\q1 +\v 16 \w Better|strong="H2896"\w* \w is|strong="H7563"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w that|strong="H2896"\w* \w the|strong="H2896"\w* \w righteous|strong="H6662"\w* has, +\q2 \w than|strong="H2896"\w* \w the|strong="H2896"\w* \w abundance|strong="H1995"\w* \w of|strong="H1995"\w* \w many|strong="H7227"\w* \w wicked|strong="H7563"\w*. +\q1 +\v 17 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w arms|strong="H2220"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w broken|strong="H7665"\w*, +\q2 \w but|strong="H3588"\w* \w Yahweh|strong="H3068"\w* upholds \w the|strong="H3588"\w* \w righteous|strong="H6662"\w*. +\q1 +\v 18 \w Yahweh|strong="H3068"\w* \w knows|strong="H3045"\w* \w the|strong="H3068"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w perfect|strong="H8549"\w*. +\q2 \w Their|strong="H3068"\w* \w inheritance|strong="H5159"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w forever|strong="H5769"\w*. +\q1 +\v 19 \w They|strong="H3117"\w* \w shall|strong="H3117"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* disappointed \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w time|strong="H6256"\w* \w of|strong="H3117"\w* \w evil|strong="H7451"\w*. +\q2 \w In|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w famine|strong="H7459"\w* \w they|strong="H3117"\w* \w shall|strong="H3117"\w* \w be|strong="H3808"\w* \w satisfied|strong="H7646"\w*. +\b +\q1 +\v 20 \w But|strong="H3588"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w* \w shall|strong="H3068"\w* \w perish|strong="H3615"\w*. +\q2 \w The|strong="H3588"\w* enemies \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w like|strong="H3615"\w* \w the|strong="H3588"\w* beauty \w of|strong="H3068"\w* \w the|strong="H3588"\w* fields. +\q2 \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w vanish|strong="H3615"\w*— +\q2 \w vanish|strong="H3615"\w* \w like|strong="H3615"\w* \w smoke|strong="H6227"\w*. +\q1 +\v 21 \w The|strong="H5414"\w* \w wicked|strong="H7563"\w* \w borrow|strong="H3867"\w*, \w and|strong="H6662"\w* don’t \w pay|strong="H7999"\w* \w back|strong="H7999"\w*, +\q2 \w but|strong="H3808"\w* \w the|strong="H5414"\w* \w righteous|strong="H6662"\w* \w give|strong="H5414"\w* \w generously|strong="H5414"\w*. +\q1 +\v 22 \w For|strong="H3588"\w* such \w as|strong="H3588"\w* \w are|strong="H3772"\w* \w blessed|strong="H1288"\w* \w by|strong="H3588"\w* \w him|strong="H3772"\w* \w shall|strong="H3772"\w* \w inherit|strong="H3423"\w* \w the|strong="H3588"\w* land. +\q2 \w Those|strong="H3588"\w* \w who|strong="H3588"\w* \w are|strong="H3772"\w* \w cursed|strong="H7043"\w* \w by|strong="H3588"\w* \w him|strong="H3772"\w* \w shall|strong="H3772"\w* \w be|strong="H1288"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*. +\q1 +\v 23 \w A|strong="H3068"\w* \w man|strong="H1397"\w*’s \w steps|strong="H4703"\w* \w are|strong="H3068"\w* \w established|strong="H3559"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w He|strong="H3068"\w* \w delights|strong="H2654"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w way|strong="H1870"\w*. +\q1 +\v 24 \w Though|strong="H3588"\w* \w he|strong="H3588"\w* stumble, \w he|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w fall|strong="H5307"\w*, +\q2 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w holds|strong="H5564"\w* \w him|strong="H3027"\w* \w up|strong="H5564"\w* \w with|strong="H3068"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w*. +\q1 +\v 25 \w I|strong="H7200"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w young|strong="H5288"\w*, \w and|strong="H3899"\w* \w now|strong="H1961"\w* \w am|strong="H1961"\w* \w old|strong="H2204"\w*, +\q2 \w yet|strong="H1571"\w* \w I|strong="H7200"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* \w seen|strong="H7200"\w* \w the|strong="H7200"\w* \w righteous|strong="H6662"\w* \w forsaken|strong="H5800"\w*, +\q2 \w nor|strong="H3808"\w* \w his|strong="H7200"\w* \w children|strong="H5288"\w* \w begging|strong="H1245"\w* \w for|strong="H1245"\w* \w bread|strong="H3899"\w*. +\q1 +\v 26 \w All|strong="H3605"\w* \w day|strong="H3117"\w* \w long|strong="H3117"\w* \w he|strong="H3117"\w* deals \w graciously|strong="H2603"\w*, \w and|strong="H3117"\w* \w lends|strong="H3867"\w*. +\q2 \w His|strong="H3605"\w* \w offspring|strong="H2233"\w* \w is|strong="H3117"\w* \w blessed|strong="H1293"\w*. +\q1 +\v 27 \w Depart|strong="H5493"\w* \w from|strong="H5493"\w* \w evil|strong="H7451"\w*, \w and|strong="H5769"\w* \w do|strong="H6213"\w* \w good|strong="H2896"\w*. +\q2 \w Live|strong="H7931"\w* securely \w forever|strong="H5769"\w*. +\q1 +\v 28 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* loves \w justice|strong="H4941"\w*, +\q2 \w and|strong="H3068"\w* doesn’t \w forsake|strong="H5800"\w* \w his|strong="H8104"\w* \w saints|strong="H2623"\w*. +\q2 \w They|strong="H3588"\w* \w are|strong="H7563"\w* \w preserved|strong="H8104"\w* \w forever|strong="H5769"\w*, +\q2 \w but|strong="H3588"\w* \w the|strong="H3588"\w* \w children|strong="H2233"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w* \w shall|strong="H3068"\w* \w be|strong="H3808"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*. +\q1 +\v 29 \w The|strong="H5921"\w* \w righteous|strong="H6662"\w* \w shall|strong="H6662"\w* \w inherit|strong="H3423"\w* \w the|strong="H5921"\w* land, +\q2 \w and|strong="H6662"\w* \w live|strong="H7931"\w* \w in|strong="H5921"\w* \w it|strong="H5921"\w* \w forever|strong="H5703"\w*. +\b +\q1 +\v 30 \w The|strong="H1696"\w* \w mouth|strong="H6310"\w* \w of|strong="H6310"\w* \w the|strong="H1696"\w* \w righteous|strong="H6662"\w* talks \w of|strong="H6310"\w* \w wisdom|strong="H2451"\w*. +\q2 \w His|strong="H1696"\w* \w tongue|strong="H3956"\w* \w speaks|strong="H1696"\w* \w justice|strong="H4941"\w*. +\q1 +\v 31 \w The|strong="H3808"\w* \w law|strong="H8451"\w* \w of|strong="H8451"\w* \w his|strong="H3808"\w* \w God|strong="H3808"\w* \w is|strong="H3820"\w* \w in|strong="H3808"\w* \w his|strong="H3808"\w* \w heart|strong="H3820"\w*. +\q2 \w None|strong="H3808"\w* \w of|strong="H8451"\w* \w his|strong="H3808"\w* steps \w shall|strong="H3820"\w* \w slide|strong="H4571"\w*. +\q1 +\v 32 \w The|strong="H1245"\w* \w wicked|strong="H7563"\w* \w watch|strong="H6822"\w* \w the|strong="H1245"\w* \w righteous|strong="H6662"\w*, +\q2 \w and|strong="H4191"\w* \w seek|strong="H1245"\w* \w to|strong="H4191"\w* \w kill|strong="H4191"\w* \w him|strong="H4191"\w*. +\q1 +\v 33 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w leave|strong="H5800"\w* \w him|strong="H3027"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w*, +\q2 \w nor|strong="H3808"\w* \w condemn|strong="H7561"\w* \w him|strong="H3027"\w* \w when|strong="H3068"\w* \w he|strong="H3068"\w* \w is|strong="H3068"\w* \w judged|strong="H8199"\w*. +\q1 +\v 34 \w Wait|strong="H6960"\w* \w for|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w keep|strong="H8104"\w* \w his|strong="H8104"\w* \w way|strong="H1870"\w*, +\q2 \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w exalt|strong="H7311"\w* \w you|strong="H7200"\w* \w to|strong="H3068"\w* \w inherit|strong="H3423"\w* \w the|strong="H7200"\w* land. +\q2 \w When|strong="H7200"\w* \w the|strong="H7200"\w* \w wicked|strong="H7563"\w* \w are|strong="H7563"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*, \w you|strong="H7200"\w* \w shall|strong="H3068"\w* \w see|strong="H7200"\w* \w it|strong="H7200"\w*. +\b +\q1 +\v 35 \w I|strong="H7200"\w* \w have|strong="H7563"\w* \w seen|strong="H7200"\w* \w the|strong="H7200"\w* \w wicked|strong="H7563"\w* \w in|strong="H7200"\w* great \w power|strong="H6184"\w*, +\q2 \w spreading|strong="H6168"\w* himself \w like|strong="H7488"\w* \w a|strong="H3068"\w* \w green|strong="H7488"\w* tree \w in|strong="H7200"\w* its native soil. +\q1 +\v 36 \w But|strong="H3808"\w* \w he|strong="H3808"\w* \w passed|strong="H5674"\w* \w away|strong="H5674"\w*, \w and|strong="H5674"\w* \w behold|strong="H2009"\w*, \w he|strong="H3808"\w* \w was|strong="H3808"\w* \w not|strong="H3808"\w*. +\q2 \w Yes|strong="H2009"\w*, \w I|strong="H2009"\w* \w sought|strong="H1245"\w* \w him|strong="H4672"\w*, \w but|strong="H3808"\w* \w he|strong="H3808"\w* could \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w found|strong="H4672"\w*. +\q1 +\v 37 \w Mark|strong="H8104"\w* \w the|strong="H7200"\w* \w perfect|strong="H8535"\w* \w man|strong="H7200"\w*, \w and|strong="H7200"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w upright|strong="H3477"\w*, +\q2 \w for|strong="H3588"\w* \w there|strong="H7965"\w* \w is|strong="H3477"\w* \w a|strong="H3068"\w* future \w for|strong="H3588"\w* \w the|strong="H7200"\w* \w man|strong="H7200"\w* \w of|strong="H7200"\w* \w peace|strong="H7965"\w*. +\q1 +\v 38 \w As|strong="H3162"\w* \w for|strong="H3162"\w* \w transgressors|strong="H6586"\w*, \w they|strong="H3772"\w* \w shall|strong="H7563"\w* \w be|strong="H7563"\w* \w destroyed|strong="H8045"\w* \w together|strong="H3162"\w*. +\q2 \w The|strong="H3772"\w* future \w of|strong="H7563"\w* \w the|strong="H3772"\w* \w wicked|strong="H7563"\w* \w shall|strong="H7563"\w* \w be|strong="H7563"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*. +\q1 +\v 39 \w But|strong="H6662"\w* \w the|strong="H3068"\w* \w salvation|strong="H8668"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w righteous|strong="H6662"\w* \w is|strong="H3068"\w* \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w He|strong="H3068"\w* \w is|strong="H3068"\w* \w their|strong="H3068"\w* \w stronghold|strong="H4581"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w time|strong="H6256"\w* \w of|strong="H3068"\w* \w trouble|strong="H6869"\w*. +\q1 +\v 40 \w Yahweh|strong="H3068"\w* \w helps|strong="H5826"\w* \w them|strong="H3588"\w* \w and|strong="H3068"\w* \w rescues|strong="H5826"\w* \w them|strong="H3588"\w*. +\q2 \w He|strong="H3588"\w* \w rescues|strong="H5826"\w* \w them|strong="H3588"\w* \w from|strong="H3068"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w* \w and|strong="H3068"\w* \w saves|strong="H3467"\w* \w them|strong="H3588"\w*, +\q2 \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3068"\w* \w taken|strong="H2620"\w* \w refuge|strong="H2620"\w* \w in|strong="H3068"\w* \w him|strong="H5826"\w*. +\c 38 +\d A Psalm by David, for a memorial. +\q1 +\v 1 \w Yahweh|strong="H3068"\w*, don’t rebuke \w me|strong="H2142"\w* \w in|strong="H1732"\w* \w your|strong="H2142"\w* wrath, +\q2 neither chasten \w me|strong="H2142"\w* \w in|strong="H1732"\w* \w your|strong="H2142"\w* hot displeasure. +\q1 +\v 2 \w For|strong="H3068"\w* \w your|strong="H3068"\w* arrows \w have|strong="H3068"\w* pierced \w me|strong="H3256"\w*, +\q2 \w your|strong="H3068"\w* hand presses hard \w on|strong="H3068"\w* \w me|strong="H3256"\w*. +\q1 +\v 3 There \w is|strong="H3027"\w* no soundness \w in|strong="H5921"\w* \w my|strong="H5921"\w* flesh \w because|strong="H3588"\w* \w of|strong="H3027"\w* \w your|strong="H5921"\w* indignation, +\q2 neither \w is|strong="H3027"\w* there \w any|strong="H3588"\w* health \w in|strong="H5921"\w* \w my|strong="H5921"\w* bones \w because|strong="H3588"\w* \w of|strong="H3027"\w* \w my|strong="H5921"\w* sin. +\q1 +\v 4 \w For|strong="H6440"\w* \w my|strong="H6440"\w* iniquities \w have|strong="H7965"\w* gone \w over|strong="H6440"\w* \w my|strong="H6440"\w* \w head|strong="H6440"\w*. +\q2 \w As|strong="H6440"\w* \w a|strong="H3068"\w* heavy burden, \w they|strong="H6440"\w* \w are|strong="H6106"\w* too heavy \w for|strong="H6440"\w* \w me|strong="H6440"\w*. +\q1 +\v 5 \w My|strong="H3588"\w* wounds \w are|strong="H5771"\w* loathsome \w and|strong="H7218"\w* corrupt +\q2 \w because|strong="H3588"\w* \w of|strong="H7218"\w* \w my|strong="H3588"\w* foolishness. +\q1 +\v 6 \w I|strong="H6440"\w* am \w in|strong="H6440"\w* pain \w and|strong="H6440"\w* bowed \w down|strong="H6440"\w* greatly. +\q2 \w I|strong="H6440"\w* go mourning \w all|strong="H6440"\w* day \w long|strong="H6440"\w*. +\q1 +\v 7 \w For|strong="H5704"\w* \w my|strong="H3605"\w* waist \w is|strong="H3117"\w* filled \w with|strong="H1980"\w* \w burning|strong="H1980"\w*. +\q2 \w There|strong="H3117"\w* \w is|strong="H3117"\w* \w no|strong="H3605"\w* soundness \w in|strong="H1980"\w* \w my|strong="H3605"\w* flesh. +\q1 +\v 8 \w I|strong="H3588"\w* am faint \w and|strong="H1320"\w* severely bruised. +\q2 \w I|strong="H3588"\w* \w have|strong="H3588"\w* groaned \w by|strong="H3588"\w* reason \w of|strong="H4390"\w* \w the|strong="H3588"\w* anguish \w of|strong="H4390"\w* \w my|strong="H3588"\w* heart. +\q1 +\v 9 Lord, \w all|strong="H5704"\w* \w my|strong="H5704"\w* desire \w is|strong="H3820"\w* \w before|strong="H5704"\w* \w you|strong="H5704"\w*. +\q2 \w My|strong="H5704"\w* groaning \w is|strong="H3820"\w* \w not|strong="H5704"\w* hidden \w from|strong="H5704"\w* \w you|strong="H5704"\w*. +\q1 +\v 10 \w My|strong="H3605"\w* heart throbs. +\q2 \w My|strong="H3605"\w* strength fails \w me|strong="H4480"\w*. +\q2 \w As|strong="H3605"\w* \w for|strong="H3605"\w* \w the|strong="H3605"\w* light \w of|strong="H4480"\w* \w my|strong="H3605"\w* eyes, \w it|strong="H3808"\w* \w has|strong="H3605"\w* also \w left|strong="H4480"\w* \w me|strong="H4480"\w*. +\q1 +\v 11 \w My|strong="H5800"\w* lovers \w and|strong="H5869"\w* \w my|strong="H5800"\w* friends \w stand|strong="H5869"\w* aloof \w from|strong="H5869"\w* \w my|strong="H5800"\w* plague. +\q2 \w My|strong="H5800"\w* kinsmen \w stand|strong="H5869"\w* far away. +\q1 +\v 12 \w They|strong="H5975"\w* also \w who|strong="H7350"\w* seek \w after|strong="H7453"\w* \w my|strong="H5048"\w* life lay snares. +\q2 Those \w who|strong="H7350"\w* seek \w my|strong="H5048"\w* hurt speak mischievous things, +\q2 \w and|strong="H5975"\w* meditate deceits all day \w long|strong="H7350"\w*. +\q1 +\v 13 \w But|strong="H1696"\w* \w I|strong="H3117"\w*, \w as|strong="H3117"\w* \w a|strong="H3068"\w* deaf \w man|strong="H5315"\w*, don’t hear. +\q2 \w I|strong="H3117"\w* am \w as|strong="H3117"\w* \w a|strong="H3068"\w* mute \w man|strong="H5315"\w* \w who|strong="H3605"\w* doesn’t open \w his|strong="H3605"\w* \w mouth|strong="H5315"\w*. +\q1 +\v 14 Yes, \w I|strong="H3808"\w* am \w as|strong="H6310"\w* \w a|strong="H3068"\w* \w man|strong="H2795"\w* \w who|strong="H3808"\w* doesn’t \w hear|strong="H8085"\w*, +\q2 \w in|strong="H8085"\w* whose \w mouth|strong="H6310"\w* \w are|strong="H6310"\w* \w no|strong="H3808"\w* reproofs. +\q1 +\v 15 \w For|strong="H1961"\w* \w I|strong="H3808"\w* hope \w in|strong="H8085"\w* \w you|strong="H3808"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w You|strong="H3808"\w* \w will|strong="H1961"\w* answer, Lord \w my|strong="H8085"\w* \w God|strong="H3808"\w*. +\q1 +\v 16 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w said|strong="H6030"\w*, “Don’t let \w them|strong="H6030"\w* gloat \w over|strong="H3068"\w* \w me|strong="H6030"\w*, +\q2 \w or|strong="H3068"\w* exalt themselves \w over|strong="H3068"\w* \w me|strong="H6030"\w* \w when|strong="H3588"\w* \w my|strong="H3068"\w* foot slips.” +\q1 +\v 17 \w For|strong="H3588"\w* \w I|strong="H3588"\w* am \w ready|strong="H4131"\w* \w to|strong="H5921"\w* \w fall|strong="H4131"\w*. +\q2 \w My|strong="H5921"\w* pain \w is|strong="H3588"\w* continually \w before|strong="H5921"\w* \w me|strong="H5921"\w*. +\q1 +\v 18 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3588"\w* declare \w my|strong="H3588"\w* iniquity. +\q2 \w I|strong="H3588"\w* \w will|strong="H3588"\w* \w be|strong="H3588"\w* sorry \w for|strong="H3588"\w* \w my|strong="H3588"\w* sin. +\q1 +\v 19 \w But|strong="H3588"\w* \w my|strong="H5046"\w* enemies \w are|strong="H2403"\w* vigorous \w and|strong="H2403"\w* many. +\q2 \w Those|strong="H3588"\w* \w who|strong="H3588"\w* hate \w me|strong="H5046"\w* \w without|strong="H3588"\w* reason \w are|strong="H2403"\w* numerous. +\q1 +\v 20 They \w who|strong="H2416"\w* \w give|strong="H2416"\w* evil \w for|strong="H2416"\w* good \w are|strong="H8267"\w* also adversaries \w to|strong="H2416"\w* \w me|strong="H8130"\w*, +\q2 because I follow what \w is|strong="H2416"\w* good. +\q1 +\v 21 Don’t forsake \w me|strong="H7291"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w My|strong="H8478"\w* \w God|strong="H7999"\w*, don’t \w be|strong="H7451"\w* far \w from|strong="H8478"\w* \w me|strong="H7291"\w*. +\q1 +\v 22 Hurry \w to|strong="H3068"\w* \w help|strong="H5800"\w* \w me|strong="H4480"\w*, +\q2 \w Lord|strong="H3068"\w*, \w my|strong="H3068"\w* salvation. +\c 39 +\d For the Chief Musician. For Jeduthun. A Psalm by David. +\q1 +\v 1 I said, “I will watch \w my|strong="H1732"\w* ways, so \w that|strong="H1732"\w* I don’t sin \w with|strong="H1732"\w* \w my|strong="H1732"\w* tongue. +\q2 I will keep \w my|strong="H1732"\w* mouth \w with|strong="H1732"\w* \w a|strong="H3068"\w* bridle while \w the|strong="H1732"\w* wicked \w is|strong="H1732"\w* before me.” +\q1 +\v 2 \w I|strong="H5704"\w* \w was|strong="H6310"\w* mute \w with|strong="H6310"\w* silence. +\q2 \w I|strong="H5704"\w* held \w my|strong="H8104"\w* peace, \w even|strong="H5704"\w* \w from|strong="H5704"\w* good. +\q2 \w My|strong="H8104"\w* sorrow \w was|strong="H6310"\w* stirred. +\q1 +\v 3 My heart \w was|strong="H3511"\w* hot within me. +\q2 While I meditated, \w the|strong="H2896"\w* fire burned. +\q1 I spoke \w with|strong="H2896"\w* my tongue: +\q2 +\v 4 “\w Yahweh|strong="H3068"\w*, show \w me|strong="H1696"\w* \w my|strong="H1696"\w* end, +\q2 \w what|strong="H1696"\w* \w is|strong="H3820"\w* \w the|strong="H1696"\w* measure \w of|strong="H3820"\w* \w my|strong="H1696"\w* days. +\q2 Let \w me|strong="H1696"\w* know how frail \w I|strong="H3820"\w* am. +\q1 +\v 5 Behold, \w you|strong="H3117"\w* \w have|strong="H3068"\w* \w made|strong="H3045"\w* \w my|strong="H3068"\w* \w days|strong="H3117"\w* hand widths. +\q2 \w My|strong="H3068"\w* \w lifetime|strong="H3117"\w* \w is|strong="H3068"\w* \w as|strong="H3117"\w* \w nothing|strong="H4100"\w* \w before|strong="H3117"\w* \w you|strong="H3117"\w*. +\q1 Surely \w every|strong="H3117"\w* \w man|strong="H3045"\w* stands \w as|strong="H3117"\w* \w a|strong="H3068"\w* breath.” \qs Selah.\qs* +\q1 +\v 6 “\w Surely|strong="H5414"\w* \w every|strong="H3605"\w* \w man|strong="H3605"\w* walks \w like|strong="H3117"\w* \w a|strong="H3068"\w* shadow. +\q2 \w Surely|strong="H5414"\w* \w they|strong="H3117"\w* busy \w themselves|strong="H5414"\w* \w in|strong="H3117"\w* \w vain|strong="H1892"\w*. +\q2 \w He|strong="H3117"\w* heaps \w up|strong="H5414"\w*, \w and|strong="H3117"\w* doesn’t \w know|strong="H5048"\w* \w who|strong="H3605"\w* \w shall|strong="H3117"\w* gather. +\q1 +\v 7 \w Now|strong="H1980"\w*, Lord, \w what|strong="H4310"\w* \w do|strong="H4310"\w* \w I|strong="H3045"\w* wait \w for|strong="H3045"\w*? +\q2 \w My|strong="H3045"\w* hope \w is|strong="H4310"\w* \w in|strong="H1980"\w* \w you|strong="H3045"\w*. +\q1 +\v 8 Deliver \w me|strong="H4100"\w* from all \w my|strong="H6258"\w* transgressions. +\q2 Don’t make \w me|strong="H4100"\w* \w the|strong="H6258"\w* reproach \w of|strong="H8431"\w* \w the|strong="H6258"\w* foolish. +\q1 +\v 9 \w I|strong="H7760"\w* \w was|strong="H3605"\w* mute. +\q2 \w I|strong="H7760"\w* didn’t open \w my|strong="H3605"\w* mouth, +\q2 \w because|strong="H3605"\w* \w you|strong="H3605"\w* did \w it|strong="H7760"\w*. +\q1 +\v 10 \w Remove|strong="H6605"\w* \w your|strong="H6213"\w* scourge away \w from|strong="H6213"\w* \w me|strong="H6213"\w*. +\q2 \w I|strong="H3588"\w* am overcome \w by|strong="H3808"\w* \w the|strong="H3588"\w* blow \w of|strong="H6310"\w* \w your|strong="H6213"\w* hand. +\q1 +\v 11 \w When|strong="H3615"\w* \w you|strong="H5921"\w* rebuke \w and|strong="H3027"\w* correct man \w for|strong="H5921"\w* iniquity, +\q2 \w you|strong="H5921"\w* \w consume|strong="H3615"\w* \w his|strong="H5921"\w* wealth \w like|strong="H5921"\w* \w a|strong="H3068"\w* moth. +\q1 Surely every man \w is|strong="H3027"\w* \w but|strong="H5921"\w* \w a|strong="H3068"\w* breath.” \qs Selah.\qs* +\q1 +\v 12 “Hear \w my|strong="H3605"\w* prayer, \w Yahweh|strong="H3068"\w*, \w and|strong="H1892"\w* give ear \w to|strong="H5921"\w* \w my|strong="H3605"\w* cry. +\q2 Don’t \w be|strong="H3605"\w* silent \w at|strong="H5921"\w* \w my|strong="H3605"\w* tears. +\q1 \w For|strong="H5921"\w* \w I|strong="H5921"\w* am \w a|strong="H3068"\w* stranger \w with|strong="H5921"\w* \w you|strong="H3605"\w*, +\q2 \w a|strong="H3068"\w* foreigner, \w as|strong="H6211"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* fathers \w were|strong="H5921"\w*. +\q1 +\v 13 Oh spare \w me|strong="H5973"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H3068"\w* recover strength, +\q2 \w before|strong="H5973"\w* \w I|strong="H3588"\w* \w go|strong="H3068"\w* \w away|strong="H5973"\w* \w and|strong="H3068"\w* exist \w no|strong="H3605"\w* \w more|strong="H3588"\w*.” +\c 40 +\d For the Chief Musician. A Psalm by David. +\q1 +\v 1 I waited patiently \w for|strong="H1732"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w He|strong="H1732"\w* turned \w to|strong="H1732"\w* me, \w and|strong="H1732"\w* heard \w my|strong="H1732"\w* cry. +\q1 +\v 2 \w He|strong="H3068"\w* \w brought|strong="H3068"\w* \w me|strong="H8085"\w* up \w also|strong="H3068"\w* \w out|strong="H5186"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* horrible pit, +\q2 \w out|strong="H5186"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* miry clay. +\q1 \w He|strong="H3068"\w* set \w my|strong="H8085"\w* feet \w on|strong="H3068"\w* \w a|strong="H3068"\w* rock, +\q2 \w and|strong="H3068"\w* \w gave|strong="H8085"\w* \w me|strong="H8085"\w* \w a|strong="H3068"\w* firm place \w to|strong="H3068"\w* stand. +\q1 +\v 3 \w He|strong="H5921"\w* \w has|strong="H7272"\w* \w put|strong="H5927"\w* \w a|strong="H3068"\w* new song \w in|strong="H5921"\w* \w my|strong="H5921"\w* mouth, \w even|strong="H5921"\w* praise \w to|strong="H5927"\w* \w our|strong="H5921"\w* God. +\q2 Many \w shall|strong="H7272"\w* see \w it|strong="H5921"\w*, \w and|strong="H6965"\w* fear, \w and|strong="H6965"\w* \w shall|strong="H7272"\w* trust \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 4 Blessed \w is|strong="H3068"\w* \w the|strong="H7200"\w* \w man|strong="H7200"\w* \w who|strong="H3068"\w* \w makes|strong="H5414"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H5414"\w* trust, +\q2 \w and|strong="H3068"\w* doesn’t \w respect|strong="H7200"\w* \w the|strong="H7200"\w* proud, \w nor|strong="H3372"\w* such \w as|strong="H3068"\w* \w turn|strong="H5414"\w* \w away|strong="H5414"\w* \w to|strong="H3068"\w* \w lies|strong="H5414"\w*. +\q1 +\v 5 \w Many|strong="H3808"\w*, \w Yahweh|strong="H3068"\w*, \w my|strong="H3068"\w* \w God|strong="H3068"\w*, \w are|strong="H3068"\w* \w the|strong="H3068"\w* wonderful works \w which|strong="H3068"\w* \w you|strong="H7760"\w* \w have|strong="H3068"\w* \w done|strong="H7760"\w*, +\q2 \w and|strong="H3068"\w* \w your|strong="H3068"\w* thoughts \w which|strong="H3068"\w* \w are|strong="H3068"\w* \w toward|strong="H6437"\w* \w us|strong="H7760"\w*. +\q1 \w They|strong="H3068"\w* \w can|strong="H3808"\w*’t \w be|strong="H3808"\w* declared \w back|strong="H6437"\w* \w to|strong="H3068"\w* \w you|strong="H7760"\w*. +\q2 \w If|strong="H7760"\w* \w I|strong="H7760"\w* \w would|strong="H3068"\w* declare \w and|strong="H3068"\w* speak \w of|strong="H3068"\w* \w them|strong="H7760"\w*, \w they|strong="H3068"\w* \w are|strong="H3068"\w* \w more|strong="H3808"\w* \w than|strong="H3808"\w* \w can|strong="H3808"\w* \w be|strong="H3808"\w* counted. +\q1 +\v 6 \w Sacrifice|strong="H6213"\w* \w and|strong="H3068"\w* \w offering|strong="H3068"\w* \w you|strong="H6213"\w* didn’t desire. +\q2 \w You|strong="H6213"\w* \w have|strong="H3068"\w* opened \w my|strong="H3068"\w* ears. +\q2 \w You|strong="H6213"\w* \w have|strong="H3068"\w* \w not|strong="H6213"\w* required \w burnt|strong="H6213"\w* \w offering|strong="H3068"\w* \w and|strong="H3068"\w* sin \w offering|strong="H3068"\w*. +\q1 +\v 7 \w Then|strong="H3808"\w* \w I|strong="H3808"\w* said, “\w Behold|strong="H3808"\w*, \w I|strong="H3808"\w* \w have|strong="H2654"\w* come. +\q2 \w It|strong="H3808"\w* \w is|strong="H5930"\w* written about \w me|strong="H7592"\w* \w in|strong="H2654"\w* \w the|strong="H3808"\w* book \w in|strong="H2654"\w* \w the|strong="H3808"\w* scroll. +\q1 +\v 8 \w I|strong="H2009"\w* delight \w to|strong="H5921"\w* do \w your|strong="H5921"\w* \w will|strong="H5612"\w*, \w my|strong="H5921"\w* God. +\q2 \w Yes|strong="H2009"\w*, \w your|strong="H5921"\w* law \w is|strong="H2009"\w* \w within|strong="H5921"\w* \w my|strong="H5921"\w* heart.” +\q1 +\v 9 \w I|strong="H8432"\w* \w have|strong="H2654"\w* proclaimed glad news \w of|strong="H8432"\w* righteousness \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w great|strong="H6213"\w* assembly. +\q2 Behold, \w I|strong="H8432"\w* \w will|strong="H7522"\w* \w not|strong="H6213"\w* seal \w my|strong="H6213"\w* lips, \w Yahweh|strong="H3068"\w*, \w you|strong="H6213"\w* know. +\q1 +\v 10 \w I|strong="H2009"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* hidden \w your|strong="H3068"\w* \w righteousness|strong="H6664"\w* within \w my|strong="H3068"\w* \w heart|strong="H8193"\w*. +\q2 \w I|strong="H2009"\w* \w have|strong="H3068"\w* \w declared|strong="H3045"\w* \w your|strong="H3068"\w* faithfulness \w and|strong="H3068"\w* \w your|strong="H3068"\w* salvation. +\q2 \w I|strong="H2009"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* concealed \w your|strong="H3068"\w* loving kindness \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w truth|strong="H3808"\w* \w from|strong="H3068"\w* \w the|strong="H3068"\w* \w great|strong="H7227"\w* \w assembly|strong="H6951"\w*. +\q1 +\v 11 Don’t withhold \w your|strong="H3808"\w* tender \w mercies|strong="H2617"\w* \w from|strong="H3820"\w* \w me|strong="H3808"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w Let|strong="H3808"\w* \w your|strong="H3808"\w* loving \w kindness|strong="H2617"\w* \w and|strong="H2617"\w* \w your|strong="H3808"\w* \w truth|strong="H3808"\w* \w continually|strong="H3820"\w* preserve \w me|strong="H3808"\w*. +\q1 +\v 12 \w For|strong="H3068"\w* innumerable evils \w have|strong="H3068"\w* surrounded \w me|strong="H4480"\w*. +\q2 \w My|strong="H3068"\w* iniquities \w have|strong="H3068"\w* overtaken \w me|strong="H4480"\w*, \w so|strong="H4480"\w* \w that|strong="H3068"\w* \w I|strong="H3808"\w* \w am|strong="H3068"\w* \w not|strong="H3808"\w* able \w to|strong="H3068"\w* \w look|strong="H3068"\w* \w up|strong="H3607"\w*. +\q1 \w They|strong="H3068"\w* \w are|strong="H3068"\w* \w more|strong="H4480"\w* \w than|strong="H4480"\w* \w the|strong="H3068"\w* hairs \w of|strong="H3068"\w* \w my|strong="H3068"\w* head. +\q2 \w My|strong="H3068"\w* heart \w has|strong="H3068"\w* \w failed|strong="H3808"\w* \w me|strong="H4480"\w*. +\q1 +\v 13 \w Be|strong="H3808"\w* pleased, \w Yahweh|strong="H3068"\w*, \w to|strong="H5704"\w* deliver \w me|strong="H7200"\w*. +\q2 Hurry \w to|strong="H5704"\w* \w help|strong="H5800"\w* \w me|strong="H7200"\w*, \w Yahweh|strong="H3068"\w*. +\q1 +\v 14 Let \w them|strong="H5337"\w* \w be|strong="H3068"\w* disappointed \w and|strong="H3068"\w* confounded together \w who|strong="H3068"\w* seek after \w my|strong="H3068"\w* soul \w to|strong="H3068"\w* destroy \w it|strong="H3068"\w*. +\q2 Let \w them|strong="H5337"\w* \w be|strong="H3068"\w* \w turned|strong="H3068"\w* backward \w and|strong="H3068"\w* \w brought|strong="H3068"\w* \w to|strong="H3068"\w* dishonor \w who|strong="H3068"\w* \w delight|strong="H7521"\w* \w in|strong="H3068"\w* \w my|strong="H3068"\w* hurt. +\q1 +\v 15 \w Let|strong="H5315"\w* \w them|strong="H3162"\w* \w be|strong="H5315"\w* desolate \w by|strong="H7451"\w* reason \w of|strong="H5315"\w* \w their|strong="H1245"\w* \w shame|strong="H3637"\w* \w that|strong="H5315"\w* tell \w me|strong="H5315"\w*, “Aha! Aha!” +\q1 +\v 16 Let \w all|strong="H5921"\w* \w those|strong="H5921"\w* who seek \w you|strong="H5921"\w* rejoice \w and|strong="H8074"\w* be glad \w in|strong="H5921"\w* \w you|strong="H5921"\w*. +\q2 Let such \w as|strong="H5921"\w* love \w your|strong="H5921"\w* salvation say continually, “Let \w Yahweh|strong="H3068"\w* be exalted!” +\q1 +\v 17 \w But|strong="H3605"\w* \w I|strong="H3068"\w* \w am|strong="H3068"\w* poor \w and|strong="H3068"\w* needy. +\q2 \w May|strong="H3068"\w* \w the|strong="H3605"\w* \w Lord|strong="H3068"\w* think \w about|strong="H3605"\w* \w me|strong="H1245"\w*. +\q1 \w You|strong="H3605"\w* \w are|strong="H3068"\w* \w my|strong="H3605"\w* \w help|strong="H8668"\w* \w and|strong="H3068"\w* \w my|strong="H3605"\w* deliverer. +\q2 Don’t delay, \w my|strong="H3605"\w* \w God|strong="H3068"\w*. +\c 41 +\d For the Chief Musician. A Psalm by David. +\q1 +\v 1 Blessed \w is|strong="H1732"\w* \w he|strong="H1732"\w* who considers \w the|strong="H1732"\w* poor. +\q2 \w Yahweh|strong="H3068"\w* will deliver \w him|strong="H1732"\w* \w in|strong="H1732"\w* \w the|strong="H1732"\w* day \w of|strong="H4210"\w* evil. +\q1 +\v 2 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w preserve|strong="H4422"\w* \w him|strong="H4422"\w*, \w and|strong="H3068"\w* keep \w him|strong="H4422"\w* alive. +\q2 \w He|strong="H3117"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* blessed \w on|strong="H3117"\w* \w the|strong="H3068"\w* earth, +\q2 \w and|strong="H3068"\w* \w he|strong="H3117"\w* \w will|strong="H3068"\w* \w not|strong="H7451"\w* surrender \w him|strong="H4422"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w will|strong="H3068"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* enemies. +\q1 +\v 3 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* sustain \w him|strong="H5414"\w* \w on|strong="H3068"\w* \w his|strong="H5414"\w* sickbed, +\q2 \w and|strong="H3068"\w* restore \w him|strong="H5414"\w* \w from|strong="H5315"\w* \w his|strong="H5414"\w* bed \w of|strong="H3068"\w* illness. +\q1 +\v 4 \w I|strong="H5921"\w* said, “\w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w mercy|strong="H3068"\w* \w on|strong="H5921"\w* \w me|strong="H5921"\w*! +\q2 \w Heal|strong="H2015"\w* \w me|strong="H5921"\w*, \w for|strong="H5921"\w* \w I|strong="H5921"\w* \w have|strong="H3068"\w* sinned \w against|strong="H5921"\w* \w you|strong="H3605"\w*.” +\q1 +\v 5 \w My|strong="H3068"\w* enemies speak evil \w against|strong="H2398"\w* \w me|strong="H5315"\w*: +\q2 “\w When|strong="H3588"\w* \w will|strong="H3068"\w* \w he|strong="H3588"\w* die, \w and|strong="H3068"\w* \w his|strong="H3068"\w* name perish?” +\q1 +\v 6 If \w he|strong="H8034"\w* comes \w to|strong="H4191"\w* see \w me|strong="H4191"\w*, \w he|strong="H8034"\w* speaks falsehood. +\q2 \w His|strong="H4191"\w* heart gathers iniquity \w to|strong="H4191"\w* itself. +\q2 \w When|strong="H4970"\w* \w he|strong="H8034"\w* goes abroad, \w he|strong="H8034"\w* tells \w it|strong="H8034"\w*. +\q1 +\v 7 \w All|strong="H7200"\w* \w who|strong="H7723"\w* hate \w me|strong="H7200"\w* whisper \w together|strong="H6908"\w* \w against|strong="H1696"\w* \w me|strong="H7200"\w*. +\q2 \w They|strong="H2351"\w* imagine \w the|strong="H7200"\w* worst \w for|strong="H3318"\w* \w me|strong="H7200"\w*. +\q1 +\v 8 “\w An|strong="H2803"\w* \w evil|strong="H7451"\w* disease”, \w they|strong="H5921"\w* say, “\w has|strong="H3605"\w* \w afflicted|strong="H5921"\w* \w him|strong="H5921"\w*. +\q2 \w Now|strong="H5921"\w* \w that|strong="H3605"\w* \w he|strong="H3605"\w* lies \w he|strong="H3605"\w* \w shall|strong="H7451"\w* rise \w up|strong="H5921"\w* \w no|strong="H3605"\w* \w more|strong="H5921"\w*.” +\q1 +\v 9 Yes, \w my|strong="H6965"\w* own familiar friend, \w in|strong="H7901"\w* whom \w I|strong="H1697"\w* trusted, +\q2 \w who|strong="H3808"\w* ate bread \w with|strong="H1697"\w* \w me|strong="H3254"\w*, +\q2 \w has|strong="H1697"\w* lifted \w up|strong="H6965"\w* \w his|strong="H6965"\w* heel \w against|strong="H6965"\w* \w me|strong="H3254"\w*. +\b +\q1 +\v 10 \w But|strong="H1571"\w* \w you|strong="H5921"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H1571"\w* mercy \w on|strong="H5921"\w* \w me|strong="H5921"\w*, \w and|strong="H3899"\w* raise \w me|strong="H5921"\w* \w up|strong="H1431"\w*, +\q2 \w that|strong="H3899"\w* \w I|strong="H5921"\w* \w may|strong="H1571"\w* repay \w them|strong="H5921"\w*. +\q1 +\v 11 \w By|strong="H3068"\w* \w this|strong="H3068"\w* \w I|strong="H6965"\w* know \w that|strong="H3068"\w* \w you|strong="H6965"\w* delight \w in|strong="H3068"\w* \w me|strong="H2603"\w*, +\q2 \w because|strong="H3068"\w* \w my|strong="H3068"\w* enemy doesn’t triumph \w over|strong="H3068"\w* \w me|strong="H2603"\w*. +\q1 +\v 12 \w As|strong="H3588"\w* \w for|strong="H3588"\w* \w me|strong="H5921"\w*, \w you|strong="H3588"\w* uphold \w me|strong="H5921"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* integrity, +\q2 \w and|strong="H3045"\w* set \w me|strong="H5921"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w presence|strong="H5921"\w* forever. +\b +\q1 +\v 13 Blessed \w be|strong="H5769"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H6440"\w* God \w of|strong="H6440"\w* Israel, +\q2 \w from|strong="H6440"\w* \w everlasting|strong="H5769"\w* \w and|strong="H5769"\w* \w to|strong="H6440"\w* \w everlasting|strong="H5769"\w*! +\q1 Amen \w and|strong="H5769"\w* amen. +\c 42 +\ms1 BOOK 2 +\d For the Chief Musician. A contemplation by the sons of Korah. +\q1 +\v 1 \w As|strong="H1121"\w* \w the|strong="H1121"\w* deer pants \w for|strong="H1121"\w* \w the|strong="H1121"\w* water brooks, +\q2 so my soul pants after you, God.\f + \fr 42:1 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* +\q1 +\v 2 \w My|strong="H5921"\w* \w soul|strong="H5315"\w* thirsts \w for|strong="H5921"\w* God, \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w living|strong="H5315"\w* God. +\q2 \w When|strong="H5921"\w* \w shall|strong="H5315"\w* \w I|strong="H5921"\w* come \w and|strong="H4325"\w* appear \w before|strong="H5921"\w* God? +\q1 +\v 3 \w My|strong="H7200"\w* tears \w have|strong="H7200"\w* been \w my|strong="H7200"\w* food day \w and|strong="H6440"\w* night, +\q2 \w while|strong="H7200"\w* \w they|strong="H5315"\w* continually ask \w me|strong="H6440"\w*, “Where \w is|strong="H5315"\w* \w your|strong="H6440"\w* God?” +\q1 +\v 4 \w These|strong="H3605"\w* \w things|strong="H3605"\w* \w I|strong="H3117"\w* remember, \w and|strong="H3117"\w* pour \w out|strong="H3605"\w* \w my|strong="H3605"\w* soul within \w me|strong="H1961"\w*, +\q2 how \w I|strong="H3117"\w* \w used|strong="H1961"\w* \w to|strong="H1961"\w* \w go|strong="H1961"\w* \w with|strong="H3117"\w* \w the|strong="H3605"\w* crowd, \w and|strong="H3117"\w* led \w them|strong="H1961"\w* \w to|strong="H1961"\w* God’s house, +\q2 \w with|strong="H3117"\w* \w the|strong="H3605"\w* voice \w of|strong="H3117"\w* joy \w and|strong="H3117"\w* praise, \w a|strong="H3068"\w* multitude keeping \w a|strong="H3068"\w* holy \w day|strong="H3117"\w*. +\q1 +\v 5 \w Why|strong="H5921"\w* \w are|strong="H1004"\w* \w you|strong="H3588"\w* \w in|strong="H5921"\w* despair, \w my|strong="H5921"\w* \w soul|strong="H5315"\w*? +\q2 \w Why|strong="H5921"\w* \w are|strong="H1004"\w* \w you|strong="H3588"\w* disturbed \w within|strong="H1004"\w* \w me|strong="H5315"\w*? +\q1 Hope \w in|strong="H5921"\w* God! +\q2 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w shall|strong="H1004"\w* \w still|strong="H2142"\w* \w praise|strong="H8426"\w* \w him|strong="H5921"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* saving help \w of|strong="H1004"\w* \w his|strong="H5921"\w* \w presence|strong="H5921"\w*. +\q1 +\v 6 \w My|strong="H5921"\w* God, \w my|strong="H5921"\w* \w soul|strong="H5315"\w* \w is|strong="H4100"\w* \w in|strong="H5921"\w* \w despair|strong="H7817"\w* \w within|strong="H5921"\w* \w me|strong="H6440"\w*. +\q2 \w Therefore|strong="H5921"\w* \w I|strong="H3588"\w* remember \w you|strong="H3588"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* Jordan, +\q2 \w the|strong="H6440"\w* heights \w of|strong="H6440"\w* Hermon, \w from|strong="H6440"\w* \w the|strong="H6440"\w* hill Mizar. +\q1 +\v 7 Deep calls \w to|strong="H5921"\w* deep \w at|strong="H5921"\w* \w the|strong="H5921"\w* noise \w of|strong="H2022"\w* \w your|strong="H5921"\w* waterfalls. +\q2 \w All|strong="H5921"\w* \w your|strong="H5921"\w* waves \w and|strong="H2022"\w* \w your|strong="H5921"\w* billows \w have|strong="H2022"\w* swept \w over|strong="H5921"\w* \w me|strong="H5315"\w*. +\b +\q1 +\v 8 \w Yahweh|strong="H3068"\w*\f + \fr 42:8 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w will|strong="H6963"\w* \w command|strong="H5921"\w* \w his|strong="H3605"\w* loving kindness \w in|strong="H5921"\w* \w the|strong="H3605"\w* daytime. +\q2 \w In|strong="H5921"\w* \w the|strong="H3605"\w* night \w his|strong="H3605"\w* song \w shall|strong="H6963"\w* \w be|strong="H6963"\w* \w with|strong="H5921"\w* \w me|strong="H5921"\w*: +\q2 \w a|strong="H3068"\w* prayer \w to|strong="H5921"\w* \w the|strong="H3605"\w* God \w of|strong="H6963"\w* \w my|strong="H3605"\w* \w life|strong="H3605"\w*. +\q1 +\v 9 \w I|strong="H6680"\w* \w will|strong="H3068"\w* ask \w God|strong="H3068"\w*, \w my|strong="H3068"\w* rock, “Why \w have|strong="H3068"\w* \w you|strong="H6680"\w* forgotten \w me|strong="H5973"\w*? +\q2 Why \w do|strong="H3068"\w* \w I|strong="H6680"\w* \w go|strong="H3068"\w* mourning \w because|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* oppression \w of|strong="H3068"\w* \w the|strong="H3068"\w* enemy?” +\q1 +\v 10 As \w with|strong="H3212"\w* \w a|strong="H3068"\w* sword \w in|strong="H3212"\w* \w my|strong="H7911"\w* bones, \w my|strong="H7911"\w* adversaries reproach \w me|strong="H7911"\w*, +\q2 while \w they|strong="H4100"\w* continually ask \w me|strong="H7911"\w*, “\w Where|strong="H4100"\w* \w is|strong="H4100"\w* \w your|strong="H7911"\w* God?” +\q1 +\v 11 Why \w are|strong="H3117"\w* \w you|strong="H3605"\w* \w in|strong="H3117"\w* despair, \w my|strong="H3605"\w* soul? +\q2 Why \w are|strong="H3117"\w* \w you|strong="H3605"\w* disturbed within \w me|strong="H3117"\w*? +\q1 Hope \w in|strong="H3117"\w* God! \w For|strong="H3117"\w* \w I|strong="H3117"\w* \w shall|strong="H3117"\w* still praise \w him|strong="H3605"\w*, +\q2 \w the|strong="H3605"\w* saving help \w of|strong="H3117"\w* \w my|strong="H3605"\w* countenance, \w and|strong="H3117"\w* \w my|strong="H3605"\w* God. +\c 43 +\q1 +\v 1 \w Vindicate|strong="H8199"\w* \w me|strong="H3808"\w*, \w God|strong="H3808"\w*, \w and|strong="H1471"\w* \w plead|strong="H7378"\w* \w my|strong="H7378"\w* \w cause|strong="H7379"\w* \w against|strong="H7378"\w* an \w ungodly|strong="H3808"\w* \w nation|strong="H1471"\w*. +\q2 Oh, \w deliver|strong="H6403"\w* \w me|strong="H3808"\w* \w from|strong="H1471"\w* \w deceitful|strong="H4820"\w* \w and|strong="H1471"\w* \w wicked|strong="H5766"\w* men. +\q1 +\v 2 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H4100"\w* \w the|strong="H3588"\w* God \w of|strong="H4581"\w* \w my|strong="H3588"\w* \w strength|strong="H4581"\w*. \w Why|strong="H4100"\w* \w have|strong="H3588"\w* \w you|strong="H3588"\w* \w rejected|strong="H2186"\w* \w me|strong="H3588"\w*? +\q2 \w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w I|strong="H3588"\w* \w go|strong="H1980"\w* \w mourning|strong="H6937"\w* \w because|strong="H3588"\w* \w of|strong="H4581"\w* \w the|strong="H3588"\w* \w oppression|strong="H3906"\w* \w of|strong="H4581"\w* \w the|strong="H3588"\w* enemy? +\q1 +\v 3 Oh, \w send|strong="H7971"\w* \w out|strong="H7971"\w* \w your|strong="H7971"\w* light \w and|strong="H7971"\w* \w your|strong="H7971"\w* truth. +\q2 \w Let|strong="H7971"\w* \w them|strong="H1992"\w* \w lead|strong="H5148"\w* \w me|strong="H7971"\w*. +\q2 \w Let|strong="H7971"\w* \w them|strong="H1992"\w* bring \w me|strong="H7971"\w* \w to|strong="H7971"\w* \w your|strong="H7971"\w* \w holy|strong="H6944"\w* \w hill|strong="H2022"\w*, +\q2 \w to|strong="H7971"\w* \w your|strong="H7971"\w* \w tents|strong="H4908"\w*. +\q1 +\v 4 Then I \w will|strong="H4196"\w* go \w to|strong="H4196"\w* \w the|strong="H3034"\w* \w altar|strong="H4196"\w* \w of|strong="H4196"\w* God, +\q2 \w to|strong="H4196"\w* God, \w my|strong="H3034"\w* \w exceeding|strong="H8057"\w* \w joy|strong="H8057"\w*. +\q1 I \w will|strong="H4196"\w* \w praise|strong="H3034"\w* \w you|strong="H3034"\w* \w on|strong="H4196"\w* \w the|strong="H3034"\w* \w harp|strong="H3658"\w*, God, \w my|strong="H3034"\w* God. +\q1 +\v 5 \w Why|strong="H4100"\w* \w are|strong="H4100"\w* \w you|strong="H3588"\w* \w in|strong="H5921"\w* \w despair|strong="H7817"\w*, \w my|strong="H5921"\w* \w soul|strong="H5315"\w*? +\q2 \w Why|strong="H4100"\w* \w are|strong="H4100"\w* \w you|strong="H3588"\w* \w disturbed|strong="H1993"\w* \w within|strong="H5921"\w* \w me|strong="H6440"\w*? +\q1 \w Hope|strong="H3176"\w* \w in|strong="H5921"\w* God! +\q2 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w shall|strong="H5315"\w* \w still|strong="H5750"\w* \w praise|strong="H3034"\w* \w him|strong="H6440"\w*: +\q2 \w my|strong="H5921"\w* Savior, \w my|strong="H5921"\w* helper, \w and|strong="H6440"\w* \w my|strong="H5921"\w* God. +\c 44 +\d For the Chief Musician. By the sons of Korah. A contemplative psalm. +\q1 +\v 1 We \w have|strong="H1121"\w* heard \w with|strong="H1121"\w* our ears, God; +\q2 our fathers \w have|strong="H1121"\w* told us what work you did \w in|strong="H1121"\w* their days, +\q2 \w in|strong="H1121"\w* \w the|strong="H1121"\w* days \w of|strong="H1121"\w* \w old|strong="H1121"\w*. +\q1 +\v 2 \w You|strong="H3117"\w* drove \w out|strong="H6466"\w* \w the|strong="H8085"\w* nations \w with|strong="H3117"\w* \w your|strong="H8085"\w* hand, +\q2 \w but|strong="H8085"\w* \w you|strong="H3117"\w* planted \w them|strong="H8085"\w*. +\q1 \w You|strong="H3117"\w* afflicted \w the|strong="H8085"\w* peoples, +\q2 \w but|strong="H8085"\w* \w you|strong="H3117"\w* spread \w them|strong="H8085"\w* abroad. +\q1 +\v 3 \w For|strong="H3027"\w* \w they|strong="H3027"\w* didn’t \w get|strong="H3027"\w* \w the|strong="H3423"\w* land \w in|strong="H3027"\w* \w possession|strong="H3423"\w* \w by|strong="H3027"\w* \w their|strong="H3423"\w* \w own|strong="H3027"\w* \w sword|strong="H3027"\w*, +\q2 neither did \w their|strong="H3423"\w* \w own|strong="H3027"\w* \w arm|strong="H3027"\w* save \w them|strong="H7971"\w*; +\q1 \w but|strong="H7489"\w* \w your|strong="H7971"\w* right \w hand|strong="H3027"\w*, \w your|strong="H7971"\w* \w arm|strong="H3027"\w*, \w and|strong="H7971"\w* \w the|strong="H3423"\w* light \w of|strong="H3027"\w* \w your|strong="H7971"\w* face, +\q2 \w because|strong="H3027"\w* \w you|strong="H7971"\w* \w were|strong="H3027"\w* favorable \w to|strong="H7971"\w* \w them|strong="H7971"\w*. +\q1 +\v 4 \w God|strong="H3808"\w*, \w you|strong="H3588"\w* \w are|strong="H6440"\w* \w my|strong="H3588"\w* \w King|strong="H6440"\w*. +\q2 Command victories \w for|strong="H3588"\w* Jacob! +\q1 +\v 5 Through \w you|strong="H6680"\w*, \w we|strong="H3068"\w* \w will|strong="H4428"\w* push \w down|strong="H6680"\w* \w our|strong="H6680"\w* adversaries. +\q2 Through \w your|strong="H6680"\w* name, \w we|strong="H3068"\w* \w will|strong="H4428"\w* tread \w down|strong="H6680"\w* \w those|strong="H1931"\w* \w who|strong="H1931"\w* rise \w up|strong="H4428"\w* \w against|strong="H6680"\w* us. +\q1 +\v 6 \w For|strong="H8034"\w* \w I|strong="H6862"\w* \w will|strong="H8034"\w* \w not|strong="H6965"\w* trust \w in|strong="H8034"\w* \w my|strong="H6965"\w* bow, +\q2 neither \w will|strong="H8034"\w* \w my|strong="H6965"\w* sword save \w me|strong="H8034"\w*. +\q1 +\v 7 \w But|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3808"\w* \w saved|strong="H3467"\w* \w us|strong="H3588"\w* \w from|strong="H2719"\w* \w our|strong="H3588"\w* adversaries, +\q2 \w and|strong="H2719"\w* \w have|strong="H3808"\w* shamed \w those|strong="H3467"\w* \w who|strong="H3588"\w* hate \w us|strong="H3588"\w*. +\q1 +\v 8 \w In|strong="H3588"\w* God \w we|strong="H3068"\w* \w have|strong="H6862"\w* made \w our|strong="H3588"\w* boast \w all|strong="H3467"\w* day long. +\q2 \w We|strong="H3588"\w* \w will|strong="H3467"\w* give thanks \w to|strong="H3588"\w* \w your|strong="H3588"\w* name forever. \qs Selah.\qs* +\b +\q1 +\v 9 \w But|strong="H3605"\w* \w now|strong="H3117"\w* \w you|strong="H3605"\w* rejected \w us|strong="H3117"\w*, \w and|strong="H3117"\w* brought \w us|strong="H3117"\w* \w to|strong="H3117"\w* dishonor, +\q2 \w and|strong="H3117"\w* don’t \w go|strong="H1984"\w* \w out|strong="H3605"\w* \w with|strong="H3117"\w* \w our|strong="H3605"\w* armies. +\q1 +\v 10 \w You|strong="H3808"\w* make \w us|strong="H2186"\w* \w turn|strong="H2186"\w* \w back|strong="H3318"\w* \w from|strong="H3318"\w* \w the|strong="H3318"\w* adversary. +\q2 \w Those|strong="H3318"\w* \w who|strong="H6635"\w* hate \w us|strong="H2186"\w* \w take|strong="H3318"\w* plunder \w for|strong="H6635"\w* themselves. +\q1 +\v 11 \w You|strong="H7725"\w* \w have|strong="H6862"\w* \w made|strong="H7725"\w* \w us|strong="H7725"\w* \w like|strong="H7725"\w* \w sheep|strong="H4480"\w* \w for|strong="H4480"\w* food, +\q2 \w and|strong="H7725"\w* \w have|strong="H6862"\w* scattered \w us|strong="H7725"\w* \w among|strong="H4480"\w* \w the|strong="H4480"\w* nations. +\q1 +\v 12 \w You|strong="H5414"\w* \w sell|strong="H5414"\w* \w your|strong="H5414"\w* \w people|strong="H1471"\w* \w for|strong="H5414"\w* nothing, +\q2 \w and|strong="H6629"\w* \w have|strong="H1471"\w* gained nothing \w from|strong="H1471"\w* \w their|strong="H5414"\w* sale. +\q1 +\v 13 \w You|strong="H3808"\w* \w make|strong="H7235"\w* \w us|strong="H5971"\w* \w a|strong="H3068"\w* reproach \w to|strong="H5971"\w* \w our|strong="H5971"\w* neighbors, +\q2 \w a|strong="H3068"\w* scoffing \w and|strong="H5971"\w* \w a|strong="H3068"\w* derision \w to|strong="H5971"\w* those \w who|strong="H5971"\w* \w are|strong="H5971"\w* around \w us|strong="H5971"\w*. +\q1 +\v 14 \w You|strong="H7760"\w* \w make|strong="H7760"\w* \w us|strong="H5439"\w* \w a|strong="H3068"\w* byword \w among|strong="H2781"\w* \w the|strong="H7760"\w* nations, +\q2 \w a|strong="H3068"\w* shaking \w of|strong="H2781"\w* \w the|strong="H7760"\w* head \w among|strong="H2781"\w* \w the|strong="H7760"\w* peoples. +\q1 +\v 15 All day long \w my|strong="H7760"\w* dishonor \w is|strong="H7218"\w* before \w me|strong="H7760"\w*, +\q2 \w and|strong="H7218"\w* shame \w covers|strong="H3816"\w* \w my|strong="H7760"\w* face, +\q2 +\v 16 \w at|strong="H3117"\w* \w the|strong="H3605"\w* taunt \w of|strong="H3117"\w* \w one|strong="H3605"\w* \w who|strong="H3605"\w* \w reproaches|strong="H3639"\w* \w and|strong="H3117"\w* verbally abuses, +\q2 \w because|strong="H6440"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* enemy \w and|strong="H3117"\w* \w the|strong="H3605"\w* avenger. +\q1 +\v 17 \w All|strong="H6440"\w* \w this|strong="H6440"\w* has come \w on|strong="H6440"\w* \w us|strong="H6440"\w*, +\q2 yet \w we|strong="H3068"\w* haven’t forgotten \w you|strong="H6440"\w*. +\q2 We haven’t been false \w to|strong="H6440"\w* \w your|strong="H6440"\w* covenant. +\q1 +\v 18 \w Our|strong="H3605"\w* heart \w has|strong="H3605"\w* \w not|strong="H3808"\w* turned back, +\q2 \w neither|strong="H3808"\w* \w have|strong="H3605"\w* \w our|strong="H3605"\w* steps strayed \w from|strong="H3605"\w* \w your|strong="H3605"\w* path, +\q2 +\v 19 though \w you|strong="H3808"\w* \w have|strong="H3808"\w* crushed \w us|strong="H4480"\w* \w in|strong="H3808"\w* \w the|strong="H4480"\w* haunt \w of|strong="H4480"\w* jackals, +\q2 \w and|strong="H3820"\w* covered \w us|strong="H4480"\w* \w with|strong="H3820"\w* \w the|strong="H4480"\w* shadow \w of|strong="H4480"\w* death. +\q1 +\v 20 \w If|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3588"\w* forgotten \w the|strong="H5921"\w* name \w of|strong="H5921"\w* \w our|strong="H5921"\w* God, +\q2 \w or|strong="H3588"\w* spread \w out|strong="H5921"\w* \w our|strong="H5921"\w* hands \w to|strong="H5921"\w* \w a|strong="H3068"\w* strange god, +\q2 +\v 21 won’t God search this \w out|strong="H6566"\w*? +\q2 \w For|strong="H8034"\w* \w he|strong="H3709"\w* knows \w the|strong="H7911"\w* secrets \w of|strong="H8034"\w* \w the|strong="H7911"\w* heart. +\q1 +\v 22 \w Yes|strong="H3588"\w*, \w for|strong="H3588"\w* \w your|strong="H3045"\w* sake \w we|strong="H3068"\w* \w are|strong="H3045"\w* killed \w all|strong="H3045"\w* day long. +\q2 \w We|strong="H3588"\w* \w are|strong="H3045"\w* regarded \w as|strong="H3588"\w* sheep \w for|strong="H3588"\w* \w the|strong="H3588"\w* slaughter. +\q1 +\v 23 Wake \w up|strong="H5921"\w*! +\q2 \w Why|strong="H5921"\w* \w do|strong="H3605"\w* \w you|strong="H3588"\w* sleep, Lord?\f + \fr 44:23 \ft The word translated “Lord” is “Adonai.” \f* +\q1 Arise! +\q2 Don’t reject \w us|strong="H5921"\w* \w forever|strong="H3605"\w*. +\q1 +\v 24 \w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H4100"\w* hide \w your|strong="H4100"\w* face, +\q2 \w and|strong="H3462"\w* forget our affliction \w and|strong="H3462"\w* our oppression? +\q1 +\v 25 \w For|strong="H6440"\w* \w our|strong="H6440"\w* soul \w is|strong="H4100"\w* bowed \w down|strong="H6440"\w* \w to|strong="H6440"\w* \w the|strong="H6440"\w* dust. +\q2 \w Our|strong="H6440"\w* body clings \w to|strong="H6440"\w* \w the|strong="H6440"\w* earth. +\q1 +\v 26 Rise up \w to|strong="H5315"\w* help \w us|strong="H3588"\w*. +\q2 Redeem \w us|strong="H3588"\w* \w for|strong="H3588"\w* \w your|strong="H3588"\w* loving kindness’ sake. +\c 45 +\d For the Chief Musician. Set to “The Lilies.” A contemplation by the sons of Korah. A wedding song. +\q1 +\v 1 \w My|strong="H5921"\w* heart overflows \w with|strong="H5921"\w* \w a|strong="H3068"\w* noble theme. +\q2 \w I|strong="H5921"\w* recite \w my|strong="H5921"\w* verses \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H5921"\w*. +\q2 \w My|strong="H5921"\w* tongue \w is|strong="H1121"\w* \w like|strong="H1121"\w* \w the|strong="H5921"\w* pen \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w skillful|strong="H4905"\w* writer. +\q1 +\v 2 \w You|strong="H3820"\w* \w are|strong="H1697"\w* \w the|strong="H1697"\w* \w most|strong="H4428"\w* excellent \w of|strong="H4428"\w* \w the|strong="H1697"\w* sons \w of|strong="H4428"\w* \w men|strong="H2896"\w*. +\q2 Grace \w has|strong="H4428"\w* anointed \w your|strong="H1697"\w* lips, +\q2 therefore God \w has|strong="H4428"\w* blessed \w you|strong="H3820"\w* forever. +\q1 +\v 3 Strap \w your|strong="H5921"\w* sword \w on|strong="H5921"\w* \w your|strong="H5921"\w* thigh, \w O|strong="H3068"\w* \w mighty|strong="H1121"\w* \w one|strong="H1121"\w*, +\q2 \w in|strong="H5921"\w* \w your|strong="H5921"\w* splendor \w and|strong="H1121"\w* \w your|strong="H5921"\w* majesty. +\q1 +\v 4 \w In|strong="H5921"\w* \w your|strong="H5921"\w* \w majesty|strong="H1926"\w* ride \w on|strong="H5921"\w* victoriously \w on|strong="H5921"\w* \w behalf|strong="H5921"\w* \w of|strong="H1368"\w* truth, humility, \w and|strong="H2719"\w* righteousness. +\q2 Let \w your|strong="H5921"\w* right hand display awesome deeds. +\q1 +\v 5 \w Your|strong="H5921"\w* arrows \w are|strong="H1697"\w* sharp. +\q2 \w The|strong="H5921"\w* nations fall \w under|strong="H5921"\w* \w you|strong="H5921"\w*, \w with|strong="H5921"\w* arrows \w in|strong="H5921"\w* \w the|strong="H5921"\w* heart \w of|strong="H1697"\w* \w the|strong="H5921"\w* \w king|strong="H5921"\w*’s enemies. +\q1 +\v 6 \w Your|strong="H5307"\w* throne, God, \w is|strong="H3820"\w* forever \w and|strong="H4428"\w* ever. +\q2 \w A|strong="H3068"\w* scepter \w of|strong="H4428"\w* equity \w is|strong="H3820"\w* \w the|strong="H8478"\w* scepter \w of|strong="H4428"\w* \w your|strong="H5307"\w* \w kingdom|strong="H4428"\w*. +\q1 +\v 7 \w You|strong="H5703"\w* have loved righteousness, \w and|strong="H5769"\w* hated wickedness. +\q2 Therefore God, \w your|strong="H5769"\w* God, has anointed \w you|strong="H5703"\w* \w with|strong="H7626"\w* \w the|strong="H7626"\w* oil \w of|strong="H7626"\w* gladness above \w your|strong="H5769"\w* fellows. +\q1 +\v 8 \w All|strong="H5921"\w* \w your|strong="H5921"\w* garments smell \w like|strong="H3651"\w* myrrh, aloes, \w and|strong="H8081"\w* cassia. +\q2 \w Out|strong="H5921"\w* \w of|strong="H5921"\w* ivory palaces stringed instruments \w have|strong="H8130"\w* made \w you|strong="H5921"\w* glad. +\q1 +\v 9 Kings’ daughters \w are|strong="H8127"\w* \w among|strong="H4480"\w* \w your|strong="H3605"\w* honorable women. +\q2 \w At|strong="H1964"\w* \w your|strong="H3605"\w* right hand \w the|strong="H3605"\w* queen stands \w in|strong="H8055"\w* gold \w of|strong="H4480"\w* Ophir. +\q1 +\v 10 Listen, \w daughter|strong="H1323"\w*, consider, \w and|strong="H4428"\w* turn \w your|strong="H4428"\w* ear. +\q2 Forget \w your|strong="H4428"\w* own people, \w and|strong="H4428"\w* \w also|strong="H4428"\w* \w your|strong="H4428"\w* father’s house. +\q2 +\v 11 \w So|strong="H7200"\w* \w the|strong="H8085"\w* king \w will|strong="H5971"\w* desire \w your|strong="H5186"\w* beauty, +\q2 honor \w him|strong="H7200"\w*, \w for|strong="H1004"\w* \w he|strong="H1004"\w* \w is|strong="H1004"\w* \w your|strong="H5186"\w* lord. +\q1 +\v 12 \w The|strong="H3588"\w* daughter \w of|strong="H4428"\w* Tyre comes \w with|strong="H4428"\w* \w a|strong="H3068"\w* gift. +\q2 \w The|strong="H3588"\w* rich among \w the|strong="H3588"\w* \w people|strong="H1931"\w* entreat \w your|strong="H3588"\w* \w favor|strong="H4428"\w*. +\q1 +\v 13 \w The|strong="H6440"\w* princess \w inside|strong="H6440"\w* \w is|strong="H6440"\w* \w all|strong="H6440"\w* glorious. +\q2 \w Her|strong="H1323"\w* clothing \w is|strong="H6440"\w* interwoven \w with|strong="H6440"\w* gold. +\q1 +\v 14 She \w shall|strong="H4428"\w* \w be|strong="H4428"\w* led \w to|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w in|strong="H4428"\w* embroidered work. +\q2 \w The|strong="H3605"\w* virgins, \w her|strong="H3605"\w* companions \w who|strong="H3605"\w* follow \w her|strong="H3605"\w*, \w shall|strong="H4428"\w* \w be|strong="H4428"\w* \w brought|strong="H4428"\w* \w to|strong="H4428"\w* \w you|strong="H3605"\w*. +\q1 +\v 15 \w With|strong="H4428"\w* gladness \w and|strong="H4428"\w* rejoicing \w they|strong="H4428"\w* \w shall|strong="H4428"\w* \w be|strong="H4428"\w* \w led|strong="H2986"\w*. +\q2 \w They|strong="H4428"\w* \w shall|strong="H4428"\w* enter \w into|strong="H2986"\w* \w the|strong="H1330"\w* \w king|strong="H4428"\w*’s palace. +\q1 +\v 16 \w Your|strong="H4428"\w* sons \w will|strong="H4428"\w* take \w the|strong="H4428"\w* place \w of|strong="H4428"\w* \w your|strong="H4428"\w* fathers. +\q2 \w You|strong="H4428"\w* \w shall|strong="H4428"\w* make them princes \w in|strong="H4428"\w* all \w the|strong="H4428"\w* earth. +\q1 +\v 17 \w I|strong="H1121"\w* \w will|strong="H1961"\w* \w make|strong="H7896"\w* \w your|strong="H3605"\w* name \w to|strong="H1961"\w* \w be|strong="H1961"\w* remembered \w in|strong="H1121"\w* \w all|strong="H3605"\w* generations. +\q2 \w Therefore|strong="H1961"\w* \w the|strong="H3605"\w* peoples \w shall|strong="H1121"\w* \w give|strong="H1961"\w* \w you|strong="H3605"\w* thanks \w forever|strong="H3605"\w* \w and|strong="H1121"\w* ever. +\c 46 +\d For the Chief Musician. By the sons of Korah. According to Alamoth.\f + \fr 46:0 \ft Alamoth is a musical term.\f* +\q1 +\v 1 God \w is|strong="H1121"\w* \w our|strong="H5921"\w* refuge \w and|strong="H1121"\w* strength, +\q2 \w a|strong="H3068"\w* very present help \w in|strong="H5921"\w* trouble. +\q1 +\v 2 Therefore \w we|strong="H3068"\w* won’t be afraid, though \w the|strong="H4672"\w* earth changes, +\q2 though \w the|strong="H4672"\w* mountains \w are|strong="H6869"\w* shaken \w into|strong="H5797"\w* \w the|strong="H4672"\w* heart \w of|strong="H4672"\w* \w the|strong="H4672"\w* seas; +\q2 +\v 3 though \w its|strong="H5921"\w* waters roar \w and|strong="H2022"\w* \w are|strong="H2022"\w* troubled, +\q2 though \w the|strong="H5921"\w* \w mountains|strong="H2022"\w* tremble \w with|strong="H5921"\w* \w their|strong="H5921"\w* swelling. \qs Selah.\qs* +\b +\q1 +\v 4 \w There|strong="H2022"\w* \w is|strong="H4325"\w* \w a|strong="H3068"\w* river, \w the|strong="H7493"\w* streams \w of|strong="H2022"\w* \w which|strong="H4325"\w* \w make|strong="H1993"\w* \w the|strong="H7493"\w* city \w of|strong="H2022"\w* God glad, +\q2 \w the|strong="H7493"\w* holy place \w of|strong="H2022"\w* \w the|strong="H7493"\w* tents \w of|strong="H2022"\w* \w the|strong="H7493"\w* Most High. +\q1 +\v 5 God \w is|strong="H5892"\w* within her. \w She|strong="H5892"\w* \w shall|strong="H5892"\w* \w not|strong="H5892"\w* \w be|strong="H5892"\w* moved. +\q2 God \w will|strong="H5892"\w* help her \w at|strong="H5892"\w* dawn. +\q1 +\v 6 \w The|strong="H7130"\w* nations raged. \w The|strong="H7130"\w* kingdoms \w were|strong="H1077"\w* \w moved|strong="H4131"\w*. +\q2 \w He|strong="H1242"\w* lifted \w his|strong="H7130"\w* voice \w and|strong="H1242"\w* \w the|strong="H7130"\w* earth melted. +\q1 +\v 7 \w Yahweh|strong="H3068"\w* \w of|strong="H6963"\w* Armies \w is|strong="H6963"\w* \w with|strong="H6963"\w* \w us|strong="H5414"\w*. +\q2 \w The|strong="H5414"\w* \w God|strong="H5414"\w* \w of|strong="H6963"\w* Jacob \w is|strong="H6963"\w* \w our|strong="H5414"\w* refuge. \qs Selah.\qs* +\b +\q1 +\v 8 \w Come|strong="H6635"\w*, see \w Yahweh|strong="H3068"\w*’s works, +\q2 what desolations \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w made|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* earth. +\q1 +\v 9 \w He|strong="H3068"\w* \w makes|strong="H7760"\w* wars cease \w to|strong="H3068"\w* \w the|strong="H3068"\w* end \w of|strong="H3068"\w* \w the|strong="H3068"\w* earth. +\q2 \w He|strong="H3068"\w* breaks \w the|strong="H3068"\w* bow, \w and|strong="H3068"\w* shatters \w the|strong="H3068"\w* spear. +\q2 \w He|strong="H3068"\w* burns \w the|strong="H3068"\w* chariots \w in|strong="H3068"\w* \w the|strong="H3068"\w* fire. +\q1 +\v 10 “\w Be|strong="H7665"\w* \w still|strong="H7673"\w*, \w and|strong="H7198"\w* know \w that|strong="H4421"\w* \w I|strong="H5704"\w* am God. +\q2 \w I|strong="H5704"\w* \w will|strong="H5704"\w* \w be|strong="H7665"\w* exalted \w among|strong="H7097"\w* \w the|strong="H5704"\w* nations. +\q2 \w I|strong="H5704"\w* \w will|strong="H5704"\w* \w be|strong="H7665"\w* exalted \w in|strong="H4421"\w* \w the|strong="H5704"\w* earth.” +\q1 +\v 11 \w Yahweh|strong="H3068"\w* \w of|strong="H3045"\w* Armies \w is|strong="H3588"\w* \w with|strong="H3045"\w* \w us|strong="H3045"\w*. +\q2 \w The|strong="H3588"\w* God \w of|strong="H3045"\w* Jacob \w is|strong="H3588"\w* \w our|strong="H3588"\w* refuge. \qs Selah.\qs* +\b +\c 47 +\d For the Chief Musician. A Psalm by the sons of Korah. +\q1 +\v 1 Oh clap \w your|strong="H1121"\w* hands, all you nations. +\q2 Shout \w to|strong="H1121"\w* God \w with|strong="H1121"\w* \w the|strong="H1121"\w* voice \w of|strong="H1121"\w* triumph! +\q1 +\v 2 \w For|strong="H3605"\w* \w Yahweh|strong="H3068"\w* Most High \w is|strong="H3605"\w* awesome. +\q2 \w He|strong="H3605"\w* \w is|strong="H3605"\w* \w a|strong="H3068"\w* great King \w over|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth. +\q1 +\v 3 \w He|strong="H3588"\w* subdues nations \w under|strong="H5921"\w* \w us|strong="H5921"\w*, +\q2 \w and|strong="H3068"\w* peoples \w under|strong="H5921"\w* \w our|strong="H3068"\w* feet. +\q1 +\v 4 \w He|strong="H7272"\w* chooses \w our|strong="H5971"\w* inheritance \w for|strong="H8478"\w* \w us|strong="H3816"\w*, +\q2 \w the|strong="H8478"\w* glory \w of|strong="H5971"\w* Jacob \w whom|strong="H5971"\w* \w he|strong="H7272"\w* loved. \qs Selah.\qs* +\q1 +\v 5 God \w has|strong="H5159"\w* gone up \w with|strong="H5159"\w* \w a|strong="H3068"\w* shout, +\q2 \w Yahweh|strong="H3068"\w* \w with|strong="H5159"\w* \w the|strong="H3290"\w* sound \w of|strong="H1347"\w* \w a|strong="H3068"\w* trumpet. +\q1 +\v 6 Sing \w praises|strong="H3068"\w* \w to|strong="H3068"\w* \w God|strong="H3068"\w*! Sing \w praises|strong="H3068"\w*! +\q2 Sing \w praises|strong="H3068"\w* \w to|strong="H3068"\w* \w our|strong="H3068"\w* King! Sing \w praises|strong="H3068"\w*! +\q1 +\v 7 \w For|strong="H4428"\w* God \w is|strong="H4428"\w* \w the|strong="H2167"\w* \w King|strong="H4428"\w* \w of|strong="H4428"\w* all \w the|strong="H2167"\w* earth. +\q2 \w Sing|strong="H2167"\w* \w praises|strong="H2167"\w* \w with|strong="H4428"\w* understanding. +\q1 +\v 8 God reigns \w over|strong="H4428"\w* \w the|strong="H3605"\w* nations. +\q2 God sits \w on|strong="H3605"\w* \w his|strong="H3605"\w* holy throne. +\q1 +\v 9 \w The|strong="H5921"\w* princes \w of|strong="H3427"\w* \w the|strong="H5921"\w* peoples \w are|strong="H1471"\w* \w gathered|strong="H1471"\w* \w together|strong="H5921"\w*, +\q1 \w the|strong="H5921"\w* \w people|strong="H1471"\w* \w of|strong="H3427"\w* \w the|strong="H5921"\w* God \w of|strong="H3427"\w* Abraham. +\q2 \w For|strong="H5921"\w* \w the|strong="H5921"\w* shields \w of|strong="H3427"\w* \w the|strong="H5921"\w* earth belong \w to|strong="H5921"\w* God. +\q2 \w He|strong="H5921"\w* \w is|strong="H3678"\w* greatly exalted! +\c 48 +\d A Song. A Psalm by the sons of Korah. +\q1 +\v 1 Great \w is|strong="H1121"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H1121"\w* greatly \w to|strong="H1121"\w* \w be|strong="H1121"\w* praised, +\q2 \w in|strong="H1121"\w* \w the|strong="H1121"\w* city \w of|strong="H1121"\w* our God, \w in|strong="H1121"\w* \w his|strong="H7141"\w* holy mountain. +\q1 +\v 2 Beautiful \w in|strong="H3068"\w* elevation, \w the|strong="H3068"\w* joy \w of|strong="H3068"\w* \w the|strong="H3068"\w* whole earth, +\q2 \w is|strong="H3068"\w* \w Mount|strong="H2022"\w* Zion, \w on|strong="H3068"\w* \w the|strong="H3068"\w* north sides, +\q2 \w the|strong="H3068"\w* \w city|strong="H5892"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w great|strong="H1419"\w* King. +\q1 +\v 3 God \w has|strong="H4428"\w* shown himself \w in|strong="H4428"\w* \w her|strong="H3605"\w* citadels \w as|strong="H3303"\w* \w a|strong="H3068"\w* refuge. +\q1 +\v 4 \w For|strong="H3045"\w*, behold, \w the|strong="H3045"\w* kings assembled \w themselves|strong="H3045"\w*, +\q2 \w they|strong="H3045"\w* passed by together. +\q1 +\v 5 \w They|strong="H3588"\w* \w saw|strong="H2009"\w* \w it|strong="H3588"\w*, \w then|strong="H2009"\w* \w they|strong="H3588"\w* \w were|strong="H4428"\w* amazed. +\q2 \w They|strong="H3588"\w* \w were|strong="H4428"\w* dismayed. +\q2 \w They|strong="H3588"\w* hurried \w away|strong="H5674"\w*. +\q1 +\v 6 Trembling took hold \w of|strong="H7200"\w* \w them|strong="H1992"\w* \w there|strong="H1992"\w*, +\q2 pain, \w as|strong="H3651"\w* \w of|strong="H7200"\w* \w a|strong="H3068"\w* woman \w in|strong="H7200"\w* travail. +\q1 +\v 7 \w With|strong="H8033"\w* \w the|strong="H3205"\w* east wind, \w you|strong="H3205"\w* break \w the|strong="H3205"\w* ships \w of|strong="H3205"\w* Tarshish. +\q1 +\v 8 As \w we|strong="H3068"\w* have heard, \w so|strong="H7307"\w* \w we|strong="H3068"\w* have seen, +\q2 \w in|strong="H7665"\w* \w the|strong="H7665"\w* city \w of|strong="H7307"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H7307"\w* Armies, \w in|strong="H7665"\w* \w the|strong="H7665"\w* city \w of|strong="H7307"\w* our God. +\q1 God \w will|strong="H7307"\w* establish \w it|strong="H7665"\w* forever. \qs Selah.\qs* +\q1 +\v 9 \w We|strong="H5704"\w* \w have|strong="H3068"\w* thought \w about|strong="H8085"\w* \w your|strong="H3068"\w* loving kindness, \w God|strong="H3068"\w*, +\q2 \w in|strong="H3068"\w* \w the|strong="H8085"\w* middle \w of|strong="H3068"\w* \w your|strong="H3068"\w* temple. +\q1 +\v 10 \w As|strong="H2617"\w* \w is|strong="H2617"\w* \w your|strong="H7130"\w* name, God, +\q2 so \w is|strong="H2617"\w* \w your|strong="H7130"\w* praise \w to|strong="H2617"\w* \w the|strong="H7130"\w* ends \w of|strong="H7130"\w* \w the|strong="H7130"\w* earth. +\q2 \w Your|strong="H7130"\w* right hand \w is|strong="H2617"\w* full \w of|strong="H7130"\w* \w righteousness|strong="H2617"\w*. +\q1 +\v 11 \w Let|strong="H3651"\w* \w Mount|strong="H4390"\w* Zion \w be|strong="H8034"\w* glad! +\q2 \w Let|strong="H3651"\w* \w the|strong="H5921"\w* daughters \w of|strong="H8034"\w* Judah rejoice \w because|strong="H5921"\w* \w of|strong="H8034"\w* \w your|strong="H5921"\w* judgments. +\q1 +\v 12 Walk \w about|strong="H2022"\w* \w Zion|strong="H6726"\w*, \w and|strong="H3063"\w* go around \w her|strong="H1323"\w*. +\q2 Number its towers. +\q1 +\v 13 Notice \w her|strong="H5608"\w* bulwarks. +\q2 Consider \w her|strong="H5608"\w* palaces, +\q2 that \w you|strong="H6726"\w* may \w tell|strong="H5608"\w* \w it|strong="H5437"\w* \w to|strong="H5437"\w* \w the|strong="H5437"\w* next generation. +\q1 +\v 14 \w For|strong="H4616"\w* \w this|strong="H4616"\w* God \w is|strong="H3820"\w* \w our|strong="H7896"\w* God \w forever|strong="H1755"\w* \w and|strong="H3820"\w* ever. +\q2 \w He|strong="H3820"\w* \w will|strong="H3820"\w* \w be|strong="H3820"\w* \w our|strong="H7896"\w* guide even \w to|strong="H3820"\w* death. +\c 49 +\d For the Chief Musician. A Psalm by the sons of Korah. +\q1 +\v 1 Hear \w this|strong="H1121"\w*, all you peoples. +\q2 Listen, all you inhabitants \w of|strong="H1121"\w* \w the|strong="H1121"\w* world, +\q2 +\v 2 \w both|strong="H3605"\w* low \w and|strong="H5971"\w* high, +\q2 rich \w and|strong="H5971"\w* poor \w together|strong="H8085"\w*. +\q1 +\v 3 \w My|strong="H1571"\w* mouth \w will|strong="H1571"\w* speak words \w of|strong="H1121"\w* wisdom. +\q2 \w My|strong="H1571"\w* heart \w will|strong="H1571"\w* utter understanding. +\q1 +\v 4 \w I|strong="H3820"\w* \w will|strong="H3820"\w* incline \w my|strong="H1696"\w* ear \w to|strong="H1696"\w* \w a|strong="H3068"\w* proverb. +\q2 \w I|strong="H3820"\w* \w will|strong="H3820"\w* solve \w my|strong="H1696"\w* riddle \w on|strong="H1696"\w* \w the|strong="H1696"\w* harp. +\q1 +\v 5 Why should I fear \w in|strong="H4912"\w* \w the|strong="H5186"\w* days \w of|strong="H4912"\w* evil, +\q2 when iniquity \w at|strong="H2420"\w* \w my|strong="H6605"\w* heels surrounds me? +\q1 +\v 6 \w Those|strong="H5437"\w* \w who|strong="H4100"\w* trust \w in|strong="H3117"\w* \w their|strong="H3117"\w* wealth, +\q2 \w and|strong="H3117"\w* boast \w in|strong="H3117"\w* \w the|strong="H3117"\w* multitude \w of|strong="H3117"\w* \w their|strong="H3117"\w* riches— +\q2 +\v 7 none \w of|strong="H7230"\w* \w them|strong="H5921"\w* can \w by|strong="H5921"\w* any means redeem \w his|strong="H5921"\w* brother, +\q2 nor \w give|strong="H1984"\w* God \w a|strong="H3068"\w* ransom \w for|strong="H5921"\w* \w him|strong="H5921"\w*. +\q1 +\v 8 \w For|strong="H5414"\w* \w the|strong="H5414"\w* \w redemption|strong="H6299"\w* \w of|strong="H3808"\w* \w their|strong="H5414"\w* life \w is|strong="H3808"\w* costly, +\q2 \w no|strong="H3808"\w* payment \w is|strong="H3808"\w* \w ever|strong="H3808"\w* enough, +\q2 +\v 9 \w that|strong="H5315"\w* \w he|strong="H5315"\w* should live on \w forever|strong="H5769"\w*, +\q2 \w that|strong="H5315"\w* \w he|strong="H5315"\w* should \w not|strong="H2308"\w* see corruption. +\q1 +\v 10 \w For|strong="H2421"\w* \w he|strong="H3808"\w* \w sees|strong="H7200"\w* \w that|strong="H7200"\w* wise men die; +\q2 likewise \w the|strong="H7200"\w* fool \w and|strong="H7200"\w* \w the|strong="H7200"\w* senseless perish, +\q2 \w and|strong="H7200"\w* \w leave|strong="H2421"\w* \w their|strong="H7200"\w* \w wealth|strong="H3808"\w* \w to|strong="H7200"\w* others. +\q1 +\v 11 \w Their|strong="H7200"\w* inward thought \w is|strong="H3684"\w* \w that|strong="H3588"\w* \w their|strong="H7200"\w* houses \w will|strong="H2450"\w* endure forever, +\q2 \w and|strong="H7200"\w* \w their|strong="H7200"\w* dwelling places \w to|strong="H4191"\w* \w all|strong="H3162"\w* generations. +\q2 \w They|strong="H3588"\w* name \w their|strong="H7200"\w* lands \w after|strong="H3588"\w* themselves. +\q1 +\v 12 \w But|strong="H5921"\w* man, \w despite|strong="H5921"\w* \w his|strong="H7121"\w* riches, doesn’t \w endure|strong="H5769"\w*. +\q2 \w He|strong="H1004"\w* \w is|strong="H8034"\w* \w like|strong="H1004"\w* \w the|strong="H5921"\w* animals \w that|strong="H7121"\w* perish. +\b +\q1 +\v 13 \w This|strong="H3885"\w* is \w the|strong="H3885"\w* destiny of those who \w are|strong="H1077"\w* foolish, +\q2 \w and|strong="H3366"\w* of those who approve their sayings. \qs Selah.\qs* +\q1 +\v 14 \w They|strong="H6310"\w* \w are|strong="H1870"\w* appointed \w as|strong="H6310"\w* \w a|strong="H3068"\w* flock \w for|strong="H2088"\w* Sheol.\f + \fr 49:14 \ft Sheol is the place of the dead.\f* +\q2 Death \w shall|strong="H6310"\w* \w be|strong="H1870"\w* \w their|strong="H1870"\w* shepherd. +\q1 \w The|strong="H1870"\w* upright \w shall|strong="H6310"\w* \w have|strong="H2088"\w* dominion over \w them|strong="H2088"\w* \w in|strong="H1870"\w* \w the|strong="H1870"\w* \w morning|strong="H2088"\w*. +\q2 \w Their|strong="H1870"\w* beauty \w shall|strong="H6310"\w* decay \w in|strong="H1870"\w* Sheol,\f + \fr 49:14 \ft Sheol is the place of the dead. \f* +\q2 far from \w their|strong="H1870"\w* mansion. +\q1 +\v 15 But God \w will|strong="H3477"\w* redeem \w my|strong="H7462"\w* soul \w from|strong="H3477"\w* \w the|strong="H7462"\w* power \w of|strong="H4194"\w* \w Sheol|strong="H7585"\w*,\f + \fr 49:15 \ft Sheol is the place of the dead.\f* +\q2 \w for|strong="H6629"\w* \w he|strong="H1242"\w* \w will|strong="H3477"\w* receive me. \qs Selah.\qs* +\q1 +\v 16 Don’t \w be|strong="H3027"\w* afraid \w when|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H5315"\w* \w is|strong="H5315"\w* \w made|strong="H3947"\w* rich, +\q2 \w when|strong="H3588"\w* \w the|strong="H3588"\w* glory \w of|strong="H3027"\w* \w his|strong="H3947"\w* house \w is|strong="H5315"\w* increased; +\q1 +\v 17 \w for|strong="H3588"\w* \w when|strong="H3588"\w* \w he|strong="H3588"\w* dies \w he|strong="H3588"\w* \w will|strong="H1004"\w* carry nothing away. +\q2 \w His|strong="H3588"\w* \w glory|strong="H3519"\w* won’t descend \w after|strong="H3588"\w* \w him|strong="H7235"\w*. +\q1 +\v 18 \w Though|strong="H3588"\w* \w while|strong="H3588"\w* \w he|strong="H3588"\w* lived \w he|strong="H3588"\w* blessed \w his|strong="H3605"\w* \w soul|strong="H3519"\w*— +\q2 \w and|strong="H3381"\w* \w men|strong="H3605"\w* \w praise|strong="H3588"\w* \w you|strong="H3588"\w* \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w do|strong="H3605"\w* well \w for|strong="H3588"\w* yourself— +\q2 +\v 19 \w he|strong="H3588"\w* \w shall|strong="H5315"\w* \w go|strong="H3190"\w* \w to|strong="H5315"\w* \w the|strong="H3588"\w* generation \w of|strong="H5315"\w* \w his|strong="H1288"\w* fathers. +\q2 \w They|strong="H3588"\w* \w shall|strong="H5315"\w* never see \w the|strong="H3588"\w* light. +\q1 +\v 20 \w A|strong="H3068"\w* \w man|strong="H7200"\w* \w who|strong="H3808"\w* \w has|strong="H5331"\w* riches \w without|strong="H3808"\w* understanding, +\q2 \w is|strong="H1755"\w* \w like|strong="H3808"\w* \w the|strong="H7200"\w* animals \w that|strong="H7200"\w* perish. +\c 50 +\d A Psalm by Asaph. +\q1 +\v 1 \w The|strong="H3068"\w* Mighty \w One|strong="H3068"\w*, \w God|strong="H3068"\w*, \w Yahweh|strong="H3068"\w*, \w speaks|strong="H1696"\w*, +\q2 \w and|strong="H3068"\w* \w calls|strong="H7121"\w* \w the|strong="H3068"\w* \w earth|strong="H8121"\w* \w from|strong="H5704"\w* \w sunrise|strong="H4217"\w* \w to|strong="H1696"\w* \w sunset|strong="H8121"\w*. +\q1 +\v 2 Out \w of|strong="H4359"\w* \w Zion|strong="H6726"\w*, \w the|strong="H6726"\w* \w perfection|strong="H4359"\w* \w of|strong="H4359"\w* \w beauty|strong="H3308"\w*, +\q2 God \w shines|strong="H3313"\w* out. +\q1 +\v 3 \w Our|strong="H6440"\w* God \w comes|strong="H6440"\w*, \w and|strong="H6440"\w* \w does|strong="H6440"\w* \w not|strong="H6440"\w* \w keep|strong="H2790"\w* \w silent|strong="H2790"\w*. +\q2 \w A|strong="H3068"\w* fire devours \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\q2 \w It|strong="H5439"\w* \w is|strong="H6440"\w* \w very|strong="H3966"\w* stormy \w around|strong="H5439"\w* \w him|strong="H6440"\w*. +\q1 +\v 4 \w He|strong="H7121"\w* \w calls|strong="H7121"\w* \w to|strong="H7121"\w* \w the|strong="H7121"\w* \w heavens|strong="H8064"\w* \w above|strong="H5920"\w*, +\q2 \w to|strong="H7121"\w* \w the|strong="H7121"\w* \w earth|strong="H8064"\w*, \w that|strong="H5971"\w* \w he|strong="H7121"\w* \w may|strong="H5971"\w* \w judge|strong="H1777"\w* \w his|strong="H7121"\w* \w people|strong="H5971"\w*: +\q1 +\v 5 “Gather \w my|strong="H5921"\w* \w saints|strong="H2623"\w* \w together|strong="H5921"\w* \w to|strong="H5921"\w* \w me|strong="H5921"\w*, +\q2 \w those|strong="H5921"\w* who \w have|strong="H1285"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w me|strong="H5921"\w* \w by|strong="H5921"\w* \w sacrifice|strong="H2077"\w*.” +\q1 +\v 6 \w The|strong="H3588"\w* \w heavens|strong="H8064"\w* \w shall|strong="H8064"\w* \w declare|strong="H5046"\w* \w his|strong="H5046"\w* \w righteousness|strong="H6664"\w*, +\q2 \w for|strong="H3588"\w* \w God|strong="H8064"\w* \w himself|strong="H1931"\w* \w is|strong="H1931"\w* \w judge|strong="H8199"\w*. \qs \+w Selah|strong="H5542"\+w*.\qs* +\q1 +\v 7 “\w Hear|strong="H8085"\w*, \w my|strong="H8085"\w* \w people|strong="H5971"\w*, \w and|strong="H3478"\w* \w I|strong="H8085"\w* \w will|strong="H5971"\w* \w speak|strong="H1696"\w*. +\q2 \w Israel|strong="H3478"\w*, \w I|strong="H8085"\w* \w will|strong="H5971"\w* \w testify|strong="H5749"\w* \w against|strong="H1696"\w* \w you|strong="H1696"\w*. +\q1 \w I|strong="H8085"\w* am God, \w your|strong="H8085"\w* God. +\q1 +\v 8 \w I|strong="H5921"\w* don’t \w rebuke|strong="H3198"\w* \w you|strong="H5921"\w* \w for|strong="H5921"\w* \w your|strong="H5921"\w* \w sacrifices|strong="H2077"\w*. +\q2 \w Your|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w are|strong="H5930"\w* \w continually|strong="H8548"\w* \w before|strong="H5048"\w* \w me|strong="H5921"\w*. +\q1 +\v 9 \w I|strong="H3808"\w* \w have|strong="H6499"\w* \w no|strong="H3808"\w* need \w for|strong="H1004"\w* \w a|strong="H3068"\w* \w bull|strong="H6499"\w* \w from|strong="H3947"\w* \w your|strong="H3947"\w* stall, +\q2 \w nor|strong="H3808"\w* \w male|strong="H6260"\w* \w goats|strong="H6260"\w* \w from|strong="H3947"\w* \w your|strong="H3947"\w* pens. +\q1 +\v 10 \w For|strong="H3588"\w* \w every|strong="H3605"\w* \w animal|strong="H2416"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w forest|strong="H3293"\w* \w is|strong="H3605"\w* mine, +\q2 \w and|strong="H2416"\w* \w the|strong="H3605"\w* livestock \w on|strong="H3605"\w* \w a|strong="H3068"\w* thousand \w hills|strong="H2042"\w*. +\q1 +\v 11 \w I|strong="H3045"\w* \w know|strong="H3045"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w birds|strong="H5775"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w*. +\q2 \w The|strong="H3605"\w* \w wild|strong="H7704"\w* animals \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w are|strong="H2022"\w* \w mine|strong="H3045"\w*. +\q1 +\v 12 \w If|strong="H3588"\w* \w I|strong="H3588"\w* \w were|strong="H8398"\w* \w hungry|strong="H7456"\w*, \w I|strong="H3588"\w* would \w not|strong="H3808"\w* tell \w you|strong="H3588"\w*, +\q2 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w world|strong="H8398"\w* \w is|strong="H8398"\w* mine, \w and|strong="H8398"\w* \w all|strong="H4393"\w* \w that|strong="H3588"\w* \w is|strong="H8398"\w* \w in|strong="H3808"\w* \w it|strong="H3588"\w*. +\q1 +\v 13 \w Will|strong="H1320"\w* \w I|strong="H1320"\w* eat \w the|strong="H8354"\w* \w meat|strong="H1320"\w* \w of|strong="H1818"\w* bulls, +\q2 \w or|strong="H1320"\w* \w drink|strong="H8354"\w* \w the|strong="H8354"\w* \w blood|strong="H1818"\w* \w of|strong="H1818"\w* \w goats|strong="H6260"\w*? +\q1 +\v 14 \w Offer|strong="H2076"\w* \w to|strong="H2076"\w* \w God|strong="H7999"\w* \w the|strong="H2076"\w* \w sacrifice|strong="H2076"\w* \w of|strong="H8426"\w* \w thanksgiving|strong="H8426"\w*. +\q2 \w Pay|strong="H7999"\w* \w your|strong="H7999"\w* \w vows|strong="H5088"\w* \w to|strong="H2076"\w* \w the|strong="H2076"\w* \w Most|strong="H5945"\w* \w High|strong="H5945"\w*. +\q1 +\v 15 \w Call|strong="H7121"\w* \w on|strong="H3117"\w* \w me|strong="H7121"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w trouble|strong="H6869"\w*. +\q2 \w I|strong="H3117"\w* \w will|strong="H3117"\w* \w deliver|strong="H2502"\w* \w you|strong="H3117"\w*, \w and|strong="H3117"\w* \w you|strong="H3117"\w* \w will|strong="H3117"\w* \w honor|strong="H3513"\w* \w me|strong="H7121"\w*.” +\b +\q1 +\v 16 \w But|strong="H7563"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w wicked|strong="H7563"\w* God \w says|strong="H6310"\w*, +\q2 “\w What|strong="H4100"\w* right \w do|strong="H4100"\w* \w you|strong="H5921"\w* \w have|strong="H7563"\w* \w to|strong="H5921"\w* \w declare|strong="H5608"\w* \w my|strong="H5921"\w* \w statutes|strong="H2706"\w*, +\q2 \w that|strong="H6310"\w* \w you|strong="H5921"\w* \w have|strong="H7563"\w* \w taken|strong="H5375"\w* \w my|strong="H5921"\w* \w covenant|strong="H1285"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w lips|strong="H6310"\w*, +\q2 +\v 17 since \w you|strong="H8130"\w* \w hate|strong="H8130"\w* \w instruction|strong="H4148"\w*, +\q2 \w and|strong="H1697"\w* \w throw|strong="H7993"\w* \w my|strong="H7993"\w* \w words|strong="H1697"\w* behind \w you|strong="H8130"\w*? +\q1 +\v 18 \w When|strong="H7200"\w* \w you|strong="H5973"\w* \w saw|strong="H7200"\w* \w a|strong="H3068"\w* \w thief|strong="H1590"\w*, \w you|strong="H5973"\w* consented \w with|strong="H5973"\w* \w him|strong="H7200"\w*, +\q2 \w and|strong="H7200"\w* \w have|strong="H7200"\w* participated \w with|strong="H5973"\w* \w adulterers|strong="H5003"\w*. +\b +\q1 +\v 19 “\w You|strong="H7971"\w* give \w your|strong="H7971"\w* \w mouth|strong="H6310"\w* \w to|strong="H7971"\w* \w evil|strong="H7451"\w*. +\q2 \w Your|strong="H7971"\w* \w tongue|strong="H3956"\w* \w frames|strong="H6775"\w* \w deceit|strong="H4820"\w*. +\q1 +\v 20 \w You|strong="H5414"\w* \w sit|strong="H3427"\w* \w and|strong="H1121"\w* \w speak|strong="H1696"\w* \w against|strong="H1696"\w* \w your|strong="H5414"\w* brother. +\q2 \w You|strong="H5414"\w* \w slander|strong="H5414"\w* \w your|strong="H5414"\w* own mother’s \w son|strong="H1121"\w*. +\q1 +\v 21 \w You|strong="H6213"\w* \w have|strong="H1961"\w* \w done|strong="H6213"\w* \w these|strong="H6213"\w* \w things|strong="H1961"\w*, \w and|strong="H5869"\w* \w I|strong="H3644"\w* \w kept|strong="H6213"\w* \w silent|strong="H2790"\w*. +\q2 \w You|strong="H6213"\w* \w thought|strong="H1819"\w* \w that|strong="H6213"\w* \w I|strong="H3644"\w* \w was|strong="H1961"\w* \w just|strong="H6213"\w* \w like|strong="H3644"\w* \w you|strong="H6213"\w*. +\q2 \w I|strong="H3644"\w* \w will|strong="H1961"\w* \w rebuke|strong="H3198"\w* \w you|strong="H6213"\w*, \w and|strong="H5869"\w* accuse \w you|strong="H6213"\w* \w in|strong="H6213"\w* front \w of|strong="H5869"\w* \w your|strong="H6213"\w* \w eyes|strong="H5869"\w*. +\b +\q1 +\v 22 “\w Now|strong="H4994"\w* consider \w this|strong="H2063"\w*, \w you|strong="H6435"\w* \w who|strong="H7911"\w* \w forget|strong="H7911"\w* God, +\q2 \w lest|strong="H6435"\w* I \w tear|strong="H2963"\w* \w you|strong="H6435"\w* into \w pieces|strong="H2963"\w*, \w and|strong="H4994"\w* \w there|strong="H2063"\w* \w be|strong="H4994"\w* \w no|strong="H6435"\w* \w one|strong="H2063"\w* \w to|strong="H4994"\w* \w deliver|strong="H5337"\w*. +\q1 +\v 23 Whoever \w offers|strong="H2076"\w* \w the|strong="H7200"\w* \w sacrifice|strong="H2076"\w* \w of|strong="H1870"\w* \w thanksgiving|strong="H8426"\w* glorifies \w me|strong="H7200"\w*, +\q2 \w and|strong="H1870"\w* prepares \w his|strong="H7760"\w* \w way|strong="H1870"\w* \w so|strong="H7760"\w* \w that|strong="H7200"\w* \w I|strong="H7760"\w* \w will|strong="H1870"\w* \w show|strong="H7200"\w* God’s \w salvation|strong="H3468"\w* \w to|strong="H1870"\w* \w him|strong="H7200"\w*.” +\c 51 +\d For the Chief Musician. A Psalm by David, when Nathan the prophet came to him, after he had gone in to Bathsheba. +\q1 +\v 1 \w Have|strong="H1732"\w* mercy \w on|strong="H5329"\w* me, God, according \w to|strong="H1732"\w* \w your|strong="H1732"\w* loving kindness. +\q2 According \w to|strong="H1732"\w* \w the|strong="H1732"\w* multitude \w of|strong="H4210"\w* \w your|strong="H1732"\w* tender mercies, blot out \w my|strong="H1732"\w* transgressions. +\q1 +\v 2 Wash me thoroughly \w from|strong="H5030"\w* my iniquity. +\q2 Cleanse me \w from|strong="H5030"\w* my sin. +\q1 +\v 3 \w For|strong="H2617"\w* \w I|strong="H6588"\w* know \w my|strong="H4229"\w* \w transgressions|strong="H6588"\w*. +\q2 \w My|strong="H4229"\w* \w sin|strong="H6588"\w* \w is|strong="H2617"\w* constantly before \w me|strong="H2603"\w*. +\q1 +\v 4 Against \w you|strong="H7235"\w*, \w and|strong="H2403"\w* \w you|strong="H7235"\w* \w only|strong="H7235"\w*, \w I|strong="H5771"\w* \w have|strong="H5771"\w* \w sinned|strong="H2403"\w*, +\q2 \w and|strong="H2403"\w* done \w that|strong="H2403"\w* \w which|strong="H2403"\w* \w is|strong="H5771"\w* \w evil|strong="H5771"\w* \w in|strong="H7235"\w* \w your|strong="H7235"\w* sight, +\q1 \w so|strong="H7235"\w* \w you|strong="H7235"\w* may \w be|strong="H2403"\w* proved right \w when|strong="H7235"\w* \w you|strong="H7235"\w* speak, +\q2 \w and|strong="H2403"\w* justified \w when|strong="H7235"\w* \w you|strong="H7235"\w* judge. +\q1 +\v 5 Behold, \w I|strong="H3588"\w* was born \w in|strong="H3045"\w* iniquity. +\q2 \w My|strong="H3045"\w* mother conceived \w me|strong="H5048"\w* \w in|strong="H3045"\w* \w sin|strong="H2403"\w*. +\q1 +\v 6 Behold, \w you|strong="H6213"\w* desire truth \w in|strong="H6213"\w* \w the|strong="H6213"\w* inward parts. +\q2 \w You|strong="H6213"\w* teach \w me|strong="H6213"\w* wisdom \w in|strong="H6213"\w* \w the|strong="H6213"\w* inmost place. +\q1 +\v 7 Purify me \w with|strong="H5771"\w* hyssop, \w and|strong="H5771"\w* \w I|strong="H2005"\w* \w will|strong="H5771"\w* \w be|strong="H5771"\w* clean. +\q2 Wash me, \w and|strong="H5771"\w* \w I|strong="H2005"\w* \w will|strong="H5771"\w* \w be|strong="H5771"\w* whiter than snow. +\q1 +\v 8 Let \w me|strong="H3045"\w* hear joy \w and|strong="H2451"\w* gladness, +\q2 \w that|strong="H3045"\w* \w the|strong="H3045"\w* bones which \w you|strong="H3045"\w* \w have|strong="H3045"\w* broken may rejoice. +\q1 +\v 9 Hide \w your|strong="H3526"\w* face \w from|strong="H2891"\w* my \w sins|strong="H2398"\w*, +\q2 \w and|strong="H2398"\w* blot out \w all|strong="H2398"\w* \w of|strong="H2891"\w* my iniquities. +\q1 +\v 10 Create \w in|strong="H8085"\w* \w me|strong="H8085"\w* \w a|strong="H3068"\w* clean \w heart|strong="H8085"\w*, \w O|strong="H3068"\w* God. +\q2 Renew \w a|strong="H3068"\w* right spirit within \w me|strong="H8085"\w*. +\q1 +\v 11 Don’t throw \w me|strong="H6440"\w* \w from|strong="H6440"\w* \w your|strong="H3605"\w* \w presence|strong="H6440"\w*, +\q2 \w and|strong="H6440"\w* don’t take \w your|strong="H3605"\w* Holy Spirit \w from|strong="H6440"\w* \w me|strong="H6440"\w*. +\q1 +\v 12 \w Restore|strong="H2318"\w* \w to|strong="H3820"\w* \w me|strong="H3559"\w* \w the|strong="H3559"\w* joy \w of|strong="H7307"\w* \w your|strong="H3559"\w* salvation. +\q2 Uphold \w me|strong="H3559"\w* \w with|strong="H3820"\w* \w a|strong="H3068"\w* willing \w spirit|strong="H7307"\w*. +\q1 +\v 13 \w Then|strong="H3947"\w* \w I|strong="H6440"\w* \w will|strong="H7307"\w* teach transgressors \w your|strong="H3947"\w* ways. +\q2 Sinners \w will|strong="H7307"\w* \w be|strong="H7307"\w* converted \w to|strong="H6440"\w* \w you|strong="H6440"\w*. +\q1 +\v 14 \w Deliver|strong="H7725"\w* \w me|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H7725"\w* guilt \w of|strong="H7307"\w* bloodshed, \w O|strong="H3068"\w* God, \w the|strong="H7725"\w* God \w of|strong="H7307"\w* \w my|strong="H7725"\w* \w salvation|strong="H3468"\w*. +\q2 \w My|strong="H7725"\w* tongue \w will|strong="H7307"\w* sing aloud \w of|strong="H7307"\w* \w your|strong="H7725"\w* righteousness. +\q1 +\v 15 Lord, open \w my|strong="H7725"\w* lips. +\q2 \w My|strong="H7725"\w* mouth \w will|strong="H7725"\w* declare \w your|strong="H7725"\w* praise. +\q1 +\v 16 \w For|strong="H7442"\w* \w you|strong="H5337"\w* don’t delight \w in|strong="H8668"\w* sacrifice, \w or|strong="H1818"\w* else \w I|strong="H6666"\w* would give \w it|strong="H6666"\w*. +\q2 \w You|strong="H5337"\w* \w have|strong="H5337"\w* no pleasure \w in|strong="H8668"\w* burnt offering. +\q1 +\v 17 \w The|strong="H5046"\w* sacrifices \w of|strong="H6310"\w* God \w are|strong="H8193"\w* \w a|strong="H3068"\w* broken spirit. +\q2 \w O|strong="H3068"\w* God, \w you|strong="H5046"\w* \w will|strong="H6310"\w* \w not|strong="H6605"\w* despise \w a|strong="H3068"\w* broken \w and|strong="H6310"\w* contrite \w heart|strong="H8193"\w*. +\b +\q1 +\v 18 Do well \w in|strong="H2654"\w* \w your|strong="H5414"\w* good \w pleasure|strong="H7521"\w* \w to|strong="H5414"\w* Zion. +\q2 Build \w the|strong="H3588"\w* walls \w of|strong="H2077"\w* Jerusalem. +\q1 +\v 19 \w Then|strong="H3808"\w* \w you|strong="H3808"\w* \w will|strong="H3820"\w* delight \w in|strong="H7665"\w* \w the|strong="H7665"\w* \w sacrifices|strong="H2077"\w* \w of|strong="H7307"\w* righteousness, +\q2 \w in|strong="H7665"\w* \w burnt|strong="H3820"\w* \w offerings|strong="H2077"\w* \w and|strong="H2077"\w* \w in|strong="H7665"\w* whole \w burnt|strong="H3820"\w* \w offerings|strong="H2077"\w*. +\q1 \w Then|strong="H3808"\w* \w they|strong="H3808"\w* \w will|strong="H3820"\w* \w offer|strong="H2077"\w* bulls \w on|strong="H3808"\w* \w your|strong="H3808"\w* altar. +\c 52 +\d For the Chief Musician. A contemplation by David, when Doeg the Edomite came and told Saul, “David has come to Ahimelech’s house.” +\q1 +\v 1 Why do you boast \w of|strong="H4905"\w* mischief, mighty man? +\q2 God’s loving kindness endures continually. +\q1 +\v 2 \w Your|strong="H5046"\w* tongue plots destruction, +\q2 \w like|strong="H1004"\w* \w a|strong="H3068"\w* sharp razor, working deceitfully. +\q1 +\v 3 \w You|strong="H3605"\w* \w love|strong="H2617"\w* \w evil|strong="H7451"\w* more \w than|strong="H3605"\w* \w good|strong="H2617"\w*, +\q2 lying rather \w than|strong="H3605"\w* speaking \w the|strong="H3605"\w* truth. \qs Selah.\qs* +\q1 +\v 4 \w You|strong="H6213"\w* love \w all|strong="H6213"\w* devouring words, +\q2 \w you|strong="H6213"\w* \w deceitful|strong="H7423"\w* \w tongue|strong="H3956"\w*. +\q1 +\v 5 God \w will|strong="H6664"\w* likewise destroy \w you|strong="H1696"\w* forever. +\q2 \w He|strong="H1696"\w* \w will|strong="H6664"\w* take \w you|strong="H1696"\w* up, \w and|strong="H2896"\w* pluck \w you|strong="H1696"\w* \w out|strong="H7451"\w* \w of|strong="H1696"\w* \w your|strong="H1696"\w* tent, +\q2 \w and|strong="H2896"\w* root \w you|strong="H1696"\w* \w out|strong="H7451"\w* \w of|strong="H1696"\w* \w the|strong="H1696"\w* land \w of|strong="H1696"\w* \w the|strong="H1696"\w* living. \qs \+w Selah|strong="H5542"\+w*.\qs* +\q1 +\v 6 \w The|strong="H3605"\w* righteous also \w will|strong="H1697"\w* see \w it|strong="H3605"\w*, \w and|strong="H1697"\w* fear, +\q2 \w and|strong="H1697"\w* laugh \w at|strong="H3605"\w* \w him|strong="H3605"\w*, \w saying|strong="H1697"\w*, +\q1 +\v 7 “Behold, \w this|strong="H1571"\w* \w is|strong="H1571"\w* \w the|strong="H1571"\w* \w man|strong="H2416"\w* \w who|strong="H2416"\w* didn’t make God \w his|strong="H5422"\w* \w strength|strong="H5331"\w*, +\q2 \w but|strong="H1571"\w* trusted \w in|strong="H1571"\w* \w the|strong="H1571"\w* abundance \w of|strong="H2416"\w* \w his|strong="H5422"\w* riches, +\q2 \w and|strong="H1571"\w* strengthened himself \w in|strong="H1571"\w* \w his|strong="H5422"\w* wickedness.” +\q1 +\v 8 \w But|strong="H7200"\w* \w as|strong="H6662"\w* \w for|strong="H5921"\w* \w me|strong="H7200"\w*, \w I|strong="H5921"\w* am \w like|strong="H5921"\w* \w a|strong="H3068"\w* green olive tree \w in|strong="H5921"\w* God’s house. +\q2 \w I|strong="H5921"\w* trust \w in|strong="H5921"\w* God’s loving kindness forever \w and|strong="H7200"\w* ever. +\q1 +\v 9 \w I|strong="H2009"\w* \w will|strong="H3808"\w* \w give|strong="H7760"\w* \w you|strong="H7760"\w* thanks forever, \w because|strong="H7230"\w* \w you|strong="H7760"\w* \w have|strong="H3808"\w* \w done|strong="H7760"\w* \w it|strong="H7760"\w*. +\q2 \w I|strong="H2009"\w* \w will|strong="H3808"\w* hope \w in|strong="H3808"\w* \w your|strong="H7760"\w* name, \w for|strong="H3808"\w* \w it|strong="H7760"\w* \w is|strong="H2009"\w* good, +\q2 \w in|strong="H3808"\w* \w the|strong="H7760"\w* presence \w of|strong="H7230"\w* \w your|strong="H7760"\w* saints. +\c 53 +\d For the Chief Musician. To the tune of “Mahalath.” A contemplation by David. +\q1 +\v 1 \w The|strong="H5921"\w* fool \w has|strong="H1732"\w* said \w in|strong="H5921"\w* \w his|strong="H1732"\w* heart, “There \w is|strong="H1732"\w* no God.” +\q2 \w They|strong="H5921"\w* are corrupt, \w and|strong="H1732"\w* \w have|strong="H1732"\w* done abominable iniquity. +\q2 There \w is|strong="H1732"\w* no one who does good. +\q1 +\v 2 God looks \w down|strong="H7843"\w* \w from|strong="H3820"\w* heaven \w on|strong="H6213"\w* \w the|strong="H6213"\w* children \w of|strong="H3820"\w* \w men|strong="H6213"\w*, +\q2 \w to|strong="H6213"\w* see if there \w are|strong="H6213"\w* \w any|strong="H6213"\w* \w who|strong="H2896"\w* understood, +\q2 \w who|strong="H2896"\w* seek after God. +\q1 +\v 3 \w Every|strong="H7200"\w* \w one|strong="H1121"\w* \w of|strong="H1121"\w* \w them|strong="H5921"\w* \w has|strong="H3426"\w* gone back. +\q2 \w They|strong="H5921"\w* \w have|strong="H3426"\w* \w become|strong="H7200"\w* filthy \w together|strong="H5921"\w*. +\q2 \w There|strong="H3426"\w* \w is|strong="H3426"\w* \w no|strong="H7200"\w* \w one|strong="H1121"\w* \w who|strong="H1121"\w* \w does|strong="H3426"\w* good, \w no|strong="H7200"\w*, \w not|strong="H7200"\w* \w one|strong="H1121"\w*. +\q1 +\v 4 \w Have|strong="H1571"\w* \w the|strong="H3605"\w* \w workers|strong="H6213"\w* \w of|strong="H3605"\w* iniquity \w no|strong="H6213"\w* knowledge, +\q2 \w who|strong="H3605"\w* eat \w up|strong="H6213"\w* \w my|strong="H3605"\w* \w people|strong="H1571"\w* \w as|strong="H6213"\w* \w they|strong="H6213"\w* eat bread, +\q2 \w and|strong="H6213"\w* don’t call \w on|strong="H6213"\w* God? +\q1 +\v 5 \w There|strong="H3045"\w* \w they|strong="H3808"\w* \w were|strong="H5971"\w* \w in|strong="H3899"\w* great fear, \w where|strong="H3808"\w* \w no|strong="H3808"\w* fear \w was|strong="H3808"\w*, +\q2 \w for|strong="H7121"\w* \w God|strong="H3808"\w* \w has|strong="H3045"\w* \w scattered|strong="H5971"\w* \w the|strong="H3045"\w* bones \w of|strong="H5971"\w* \w him|strong="H7121"\w* \w who|strong="H5971"\w* encamps against \w you|strong="H3045"\w*. +\q1 \w You|strong="H3045"\w* \w have|strong="H5971"\w* put \w them|strong="H7121"\w* \w to|strong="H7121"\w* shame, +\q2 because \w God|strong="H3808"\w* \w has|strong="H3045"\w* rejected \w them|strong="H7121"\w*. +\q1 +\v 6 Oh \w that|strong="H3588"\w* \w the|strong="H3588"\w* salvation \w of|strong="H6106"\w* Israel would \w come|strong="H1961"\w* \w out|strong="H8033"\w* \w of|strong="H6106"\w* Zion! +\q2 \w When|strong="H3588"\w* \w God|strong="H3808"\w* brings back \w his|strong="H1961"\w* \w people|strong="H3808"\w* \w from|strong="H1961"\w* captivity, +\q2 \w then|strong="H1961"\w* \w Jacob|strong="H8033"\w* \w shall|strong="H3808"\w* rejoice, +\q2 \w and|strong="H8033"\w* Israel \w shall|strong="H3808"\w* \w be|strong="H1961"\w* glad. +\c 54 +\d For the Chief Musician. On stringed instruments. A contemplation by David, when the Ziphites came and said to Saul, “Isn’t David hiding himself among us?” +\q1 +\v 1 Save me, God, \w by|strong="H1732"\w* \w your|strong="H1732"\w* name. +\q2 Vindicate me \w in|strong="H1732"\w* \w your|strong="H1732"\w* might. +\q1 +\v 2 Hear \w my|strong="H1732"\w* prayer, \w God|strong="H3808"\w*. +\q2 Listen \w to|strong="H1732"\w* \w the|strong="H5973"\w* words \w of|strong="H3808"\w* \w my|strong="H1732"\w* mouth. +\q1 +\v 3 \w For|strong="H8034"\w* strangers \w have|strong="H8034"\w* risen up against \w me|strong="H3467"\w*. +\q2 Violent \w men|strong="H8034"\w* \w have|strong="H8034"\w* sought \w after|strong="H8034"\w* \w my|strong="H3467"\w* soul. +\q2 \w They|strong="H8034"\w* haven’t set God before \w them|strong="H3467"\w*. \qs Selah.\qs* +\q1 +\v 4 Behold, God \w is|strong="H6310"\w* \w my|strong="H8085"\w* helper. +\q2 \w The|strong="H8085"\w* Lord \w is|strong="H6310"\w* \w the|strong="H8085"\w* \w one|strong="H6310"\w* who sustains \w my|strong="H8085"\w* soul. +\q1 +\v 5 \w He|strong="H3588"\w* \w will|strong="H5315"\w* repay \w the|strong="H5921"\w* evil \w to|strong="H5921"\w* \w my|strong="H7760"\w* \w enemies|strong="H6965"\w*. +\q2 Destroy \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w truth|strong="H3808"\w*. +\q1 +\v 6 \w With|strong="H5315"\w* \w a|strong="H3068"\w* free \w will|strong="H5315"\w* offering, \w I|strong="H2009"\w* \w will|strong="H5315"\w* sacrifice \w to|strong="H5315"\w* \w you|strong="H5315"\w*. +\q2 \w I|strong="H2009"\w* \w will|strong="H5315"\w* give thanks \w to|strong="H5315"\w* \w your|strong="H2009"\w* name, \w Yahweh|strong="H3068"\w*, \w for|strong="H5315"\w* \w it|strong="H5315"\w* \w is|strong="H5315"\w* good. +\q1 +\v 7 \w For|strong="H7451"\w* \w he|strong="H7725"\w* \w has|strong="H7451"\w* delivered \w me|strong="H7725"\w* \w out|strong="H7725"\w* \w of|strong="H7451"\w* \w all|strong="H7725"\w* \w trouble|strong="H7451"\w*. +\q2 \w My|strong="H7725"\w* eye \w has|strong="H7451"\w* seen triumph over \w my|strong="H7725"\w* \w enemies|strong="H8324"\w*. +\c 55 +\d For the Chief Musician. On stringed instruments. A contemplation by David. +\q1 +\v 1 Listen \w to|strong="H1732"\w* \w my|strong="H1732"\w* prayer, God. +\q2 Don’t hide yourself from \w my|strong="H1732"\w* supplication. +\q1 +\v 2 Attend \w to|strong="H8605"\w* me, \w and|strong="H8605"\w* answer me. +\q2 I am restless \w in|strong="H8467"\w* \w my|strong="H5956"\w* complaint, +\q2 \w and|strong="H8605"\w* moan +\v 3 because \w of|strong="H6030"\w* \w the|strong="H6030"\w* voice \w of|strong="H6030"\w* \w the|strong="H6030"\w* enemy, +\q2 because \w of|strong="H6030"\w* \w the|strong="H6030"\w* oppression \w of|strong="H6030"\w* \w the|strong="H6030"\w* wicked. +\q1 \w For|strong="H6030"\w* they bring suffering on \w me|strong="H6030"\w*. +\q2 \w In|strong="H6030"\w* anger they hold \w a|strong="H3068"\w* grudge against \w me|strong="H6030"\w*. +\q1 +\v 4 \w My|strong="H5921"\w* heart \w is|strong="H7563"\w* severely pained \w within|strong="H5921"\w* \w me|strong="H6440"\w*. +\q2 \w The|strong="H6440"\w* terrors \w of|strong="H6963"\w* death \w have|strong="H7563"\w* fallen \w on|strong="H5921"\w* \w me|strong="H6440"\w*. +\q1 +\v 5 Fearfulness \w and|strong="H3820"\w* trembling \w have|strong="H5307"\w* \w come|strong="H5307"\w* \w on|strong="H5921"\w* \w me|strong="H5921"\w*. +\q2 Horror \w has|strong="H3820"\w* \w overwhelmed|strong="H5307"\w* \w me|strong="H5921"\w*. +\q1 +\v 6 I said, “Oh that I had wings like \w a|strong="H3068"\w* dove! +\q2 Then I would fly away, \w and|strong="H3374"\w* be at rest. +\q1 +\v 7 Behold, \w then|strong="H5414"\w* \w I|strong="H5414"\w* \w would|strong="H4310"\w* wander far \w off|strong="H5414"\w*. +\q2 \w I|strong="H5414"\w* \w would|strong="H4310"\w* lodge \w in|strong="H7931"\w* \w the|strong="H5414"\w* wilderness.” \qs Selah.\qs* +\q1 +\v 8 “\w I|strong="H2009"\w* would hurry \w to|strong="H4057"\w* \w a|strong="H3068"\w* shelter \w from|strong="H7368"\w* \w the|strong="H3885"\w* stormy wind \w and|strong="H4057"\w* storm.” +\q1 +\v 9 Confuse \w them|strong="H7307"\w*, Lord, \w and|strong="H7307"\w* confound their language, +\q2 for I \w have|strong="H2363"\w* seen violence \w and|strong="H7307"\w* strife \w in|strong="H7307"\w* \w the|strong="H7307"\w* city. +\q1 +\v 10 Day \w and|strong="H5892"\w* night \w they|strong="H3588"\w* prowl around \w on|strong="H7200"\w* \w its|strong="H3588"\w* walls. +\q2 Malice \w and|strong="H5892"\w* abuse \w are|strong="H5892"\w* \w also|strong="H3588"\w* within \w her|strong="H7200"\w*. +\q1 +\v 11 Destructive forces \w are|strong="H3915"\w* \w within|strong="H7130"\w* \w her|strong="H5921"\w*. +\q2 Threats \w and|strong="H3119"\w* lies don’t depart \w from|strong="H5921"\w* \w her|strong="H5921"\w* streets. +\q1 +\v 12 \w For|strong="H3808"\w* \w it|strong="H3808"\w* \w was|strong="H3808"\w* \w not|strong="H3808"\w* an enemy \w who|strong="H3808"\w* insulted \w me|strong="H3808"\w*, +\q2 \w then|strong="H3808"\w* \w I|strong="H3808"\w* could \w have|strong="H3808"\w* endured \w it|strong="H3808"\w*. +\q1 \w Neither|strong="H3808"\w* \w was|strong="H3808"\w* \w it|strong="H3808"\w* \w he|strong="H3808"\w* \w who|strong="H3808"\w* hated \w me|strong="H3808"\w* \w who|strong="H3808"\w* raised \w himself|strong="H3808"\w* up against \w me|strong="H3808"\w*, +\q2 \w then|strong="H3808"\w* \w I|strong="H3808"\w* would \w have|strong="H3808"\w* hidden myself \w from|strong="H4185"\w* \w him|strong="H7130"\w*. +\q1 +\v 13 \w But|strong="H3588"\w* \w it|strong="H5921"\w* \w was|strong="H3808"\w* \w you|strong="H3588"\w*, \w a|strong="H3068"\w* \w man|strong="H5375"\w* \w like|strong="H3808"\w* \w me|strong="H8130"\w*, +\q2 \w my|strong="H5921"\w* companion, \w and|strong="H1431"\w* \w my|strong="H5921"\w* familiar friend. +\q1 +\v 14 We \w took|strong="H3045"\w* sweet fellowship together. +\q2 We walked \w in|strong="H3045"\w* God’s house \w with|strong="H3045"\w* company. +\q1 +\v 15 \w Let|strong="H1980"\w* death \w come|strong="H1980"\w* suddenly \w on|strong="H1980"\w* \w them|strong="H3162"\w*. +\q2 \w Let|strong="H1980"\w* \w them|strong="H3162"\w* \w go|strong="H1980"\w* \w down|strong="H1980"\w* alive \w into|strong="H1980"\w* Sheol.\f + \fr 55:15 \ft Sheol is the place of the dead. \f* +\q2 \w For|strong="H1004"\w* wickedness \w is|strong="H1004"\w* among \w them|strong="H3162"\w*, \w in|strong="H1980"\w* \w their|strong="H1980"\w* dwelling. +\q1 +\v 16 \w As|strong="H3588"\w* \w for|strong="H3588"\w* \w me|strong="H5921"\w*, \w I|strong="H3588"\w* \w will|strong="H7451"\w* call \w on|strong="H5921"\w* God. +\q2 \w Yahweh|strong="H3068"\w* \w will|strong="H7451"\w* save \w me|strong="H5921"\w*. +\q1 +\v 17 Evening, morning, \w and|strong="H3068"\w* \w at|strong="H3068"\w* noon, \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w cry|strong="H7121"\w* out \w in|strong="H3068"\w* distress. +\q2 \w He|strong="H3068"\w* \w will|strong="H3068"\w* hear \w my|strong="H3068"\w* voice. +\q1 +\v 18 \w He|strong="H1242"\w* has redeemed \w my|strong="H8085"\w* soul \w in|strong="H8085"\w* \w peace|strong="H6963"\w* \w from|strong="H8085"\w* \w the|strong="H8085"\w* battle \w that|strong="H8085"\w* \w was|strong="H6963"\w* \w against|strong="H8085"\w* \w me|strong="H6963"\w*, +\q2 although there are many who oppose \w me|strong="H6963"\w*. +\q1 +\v 19 God, \w who|strong="H5315"\w* \w is|strong="H5315"\w* enthroned forever, +\q2 \w will|strong="H1961"\w* hear \w and|strong="H7965"\w* answer \w them|strong="H1961"\w*. \qs Selah.\qs* +\b +\q1 \w They|strong="H3588"\w* never change +\q2 \w and|strong="H7965"\w* don’t fear God. +\q1 +\v 20 \w He|strong="H3808"\w* raises \w his|strong="H8085"\w* hands \w against|strong="H8085"\w* \w his|strong="H8085"\w* friends. +\q2 \w He|strong="H3808"\w* has \w violated|strong="H6031"\w* \w his|strong="H8085"\w* covenant. +\q1 +\v 21 \w His|strong="H7971"\w* mouth \w was|strong="H3027"\w* smooth \w as|strong="H3027"\w* butter, +\q2 but \w his|strong="H7971"\w* heart \w was|strong="H3027"\w* war. +\q1 \w His|strong="H7971"\w* words \w were|strong="H3027"\w* softer than oil, +\q2 \w yet|strong="H7971"\w* \w they|strong="H3027"\w* \w were|strong="H3027"\w* drawn swords. +\b +\q1 +\v 22 Cast \w your|strong="H1697"\w* burden \w on|strong="H1697"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H8081"\w* \w he|strong="H1697"\w* \w will|strong="H3820"\w* sustain \w you|strong="H6310"\w*. +\q2 \w He|strong="H1697"\w* \w will|strong="H3820"\w* never allow \w the|strong="H1697"\w* righteous \w to|strong="H3820"\w* \w be|strong="H1697"\w* moved. +\q1 +\v 23 \w But|strong="H3808"\w* \w you|strong="H5414"\w*, \w God|strong="H3068"\w*, \w will|strong="H3068"\w* \w bring|strong="H5414"\w* \w them|strong="H5414"\w* \w down|strong="H7993"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* pit \w of|strong="H3068"\w* destruction. +\q2 Bloodthirsty \w and|strong="H3068"\w* deceitful \w men|strong="H6662"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* live \w out|strong="H7993"\w* half \w their|strong="H3068"\w* \w days|strong="H5769"\w*, +\q2 \w but|strong="H3808"\w* \w I|strong="H5414"\w* \w will|strong="H3068"\w* trust \w in|strong="H5921"\w* \w you|strong="H5414"\w*. +\c 56 +\d For the Chief Musician. To the tune of “Silent Dove in Distant Lands.” A poem by David, when the Philistines seized him in Gath. +\q1 +\v 1 \w Be|strong="H1732"\w* merciful \w to|strong="H5921"\w* \w me|strong="H5921"\w*, God, \w for|strong="H5921"\w* man wants \w to|strong="H5921"\w* swallow \w me|strong="H5921"\w* \w up|strong="H5921"\w*. +\q2 \w All|strong="H5921"\w* day \w long|strong="H7350"\w*, \w he|strong="H1732"\w* attacks \w and|strong="H1732"\w* oppresses \w me|strong="H5921"\w*. +\q1 +\v 2 \w My|strong="H3605"\w* enemies want \w to|strong="H3117"\w* \w swallow|strong="H7602"\w* \w me|strong="H2603"\w* \w up|strong="H7602"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w* \w long|strong="H3117"\w*, +\q2 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H3117"\w* many \w who|strong="H3605"\w* \w fight|strong="H3898"\w* proudly \w against|strong="H3898"\w* \w me|strong="H2603"\w*. +\q1 +\v 3 \w When|strong="H3588"\w* \w I|strong="H3588"\w* am afraid, +\q2 \w I|strong="H3588"\w* \w will|strong="H7227"\w* put \w my|strong="H3605"\w* trust \w in|strong="H3117"\w* \w you|strong="H3588"\w*. +\q1 +\v 4 \w In|strong="H3117"\w* God, \w I|strong="H3117"\w* praise \w his|strong="H3117"\w* word. +\q2 \w In|strong="H3117"\w* God, \w I|strong="H3117"\w* put \w my|strong="H3372"\w* trust. +\q1 \w I|strong="H3117"\w* \w will|strong="H3117"\w* \w not|strong="H3372"\w* \w be|strong="H3117"\w* \w afraid|strong="H3372"\w*. +\q2 \w What|strong="H3372"\w* can flesh do \w to|strong="H3117"\w* \w me|strong="H3372"\w*? +\q1 +\v 5 \w All|strong="H6213"\w* day \w long|strong="H4100"\w* \w they|strong="H3808"\w* twist \w my|strong="H6213"\w* \w words|strong="H1697"\w*. +\q2 \w All|strong="H6213"\w* \w their|strong="H6213"\w* \w thoughts|strong="H1697"\w* \w are|strong="H4100"\w* \w against|strong="H1697"\w* \w me|strong="H6213"\w* \w for|strong="H6213"\w* \w evil|strong="H6213"\w*. +\q1 +\v 6 \w They|strong="H3117"\w* conspire \w and|strong="H3117"\w* lurk, +\q2 watching \w my|strong="H3605"\w* steps. +\q2 \w They|strong="H3117"\w* \w are|strong="H3117"\w* eager \w to|strong="H5921"\w* take \w my|strong="H3605"\w* \w life|strong="H3117"\w*. +\q1 +\v 7 \w Shall|strong="H5315"\w* \w they|strong="H1992"\w* escape \w by|strong="H8104"\w* iniquity? +\q2 \w In|strong="H5315"\w* anger cast down \w the|strong="H8104"\w* peoples, God. +\q1 +\v 8 \w You|strong="H5921"\w* count \w my|strong="H5921"\w* wanderings. +\q2 \w You|strong="H5921"\w* \w put|strong="H3381"\w* \w my|strong="H5921"\w* tears \w into|strong="H3381"\w* \w your|strong="H5921"\w* container. +\q2 Aren’t \w they|strong="H5921"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* book? +\q1 +\v 9 \w Then|strong="H7760"\w* \w my|strong="H7760"\w* enemies \w shall|strong="H3808"\w* \w turn|strong="H7760"\w* back \w in|strong="H3808"\w* \w the|strong="H7760"\w* day \w that|strong="H3808"\w* \w I|strong="H7760"\w* call. +\q2 \w I|strong="H7760"\w* know \w this|strong="H7760"\w*: \w that|strong="H3808"\w* \w God|strong="H3808"\w* \w is|strong="H5612"\w* \w for|strong="H3808"\w* \w me|strong="H7760"\w*. +\q1 +\v 10 \w In|strong="H3117"\w* God, \w I|strong="H3588"\w* \w will|strong="H3117"\w* \w praise|strong="H3588"\w* \w his|strong="H7121"\w* word. +\q2 \w In|strong="H3117"\w* \w Yahweh|strong="H3068"\w*, \w I|strong="H3588"\w* \w will|strong="H3117"\w* \w praise|strong="H3588"\w* \w his|strong="H7121"\w* word. +\q1 +\v 11 \w I|strong="H1697"\w* \w have|strong="H3068"\w* \w put|strong="H3068"\w* \w my|strong="H3068"\w* trust \w in|strong="H3068"\w* \w God|strong="H3068"\w*. +\q2 \w I|strong="H1697"\w* \w will|strong="H3068"\w* not \w be|strong="H1697"\w* afraid. +\q2 \w What|strong="H1697"\w* can man \w do|strong="H3068"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*? +\q1 +\v 12 \w Your|strong="H6213"\w* vows \w are|strong="H4100"\w* \w on|strong="H6213"\w* \w me|strong="H6213"\w*, \w God|strong="H3808"\w*. +\q2 \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w give|strong="H6213"\w* thank offerings \w to|strong="H6213"\w* \w you|strong="H6213"\w*. +\q1 +\v 13 \w For|strong="H5921"\w* \w you|strong="H5921"\w* \w have|strong="H5921"\w* delivered \w my|strong="H5921"\w* soul \w from|strong="H5921"\w* death, +\q2 \w and|strong="H5088"\w* prevented \w my|strong="H5921"\w* feet \w from|strong="H5921"\w* falling, +\q2 \w that|strong="H5921"\w* \w I|strong="H5921"\w* may walk \w before|strong="H5921"\w* \w God|strong="H7999"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* light \w of|strong="H5921"\w* \w the|strong="H5921"\w* living. +\c 57 +\d For the Chief Musician. To the tune of “Do Not Destroy.” A poem by David, when he fled from Saul, in the cave. +\q1 +\v 1 \w Be|strong="H6440"\w* merciful \w to|strong="H6440"\w* \w me|strong="H6440"\w*, God, \w be|strong="H6440"\w* merciful \w to|strong="H6440"\w* \w me|strong="H6440"\w*, +\q2 \w for|strong="H6440"\w* \w my|strong="H1732"\w* soul takes refuge \w in|strong="H6440"\w* \w you|strong="H6440"\w*. +\q1 Yes, \w in|strong="H6440"\w* \w the|strong="H6440"\w* shadow \w of|strong="H6440"\w* \w your|strong="H6440"\w* wings, \w I|strong="H6440"\w* \w will|strong="H6440"\w* take refuge, +\q2 until disaster \w has|strong="H7586"\w* passed. +\q1 +\v 2 \w I|strong="H3588"\w* cry \w out|strong="H5674"\w* \w to|strong="H5704"\w* God Most High, +\q1 \w to|strong="H5704"\w* God \w who|strong="H5315"\w* accomplishes \w my|strong="H3588"\w* requests \w for|strong="H3588"\w* \w me|strong="H5315"\w*. +\q1 +\v 3 \w He|strong="H5921"\w* \w will|strong="H7121"\w* send \w from|strong="H5921"\w* heaven, \w and|strong="H7121"\w* save \w me|strong="H5921"\w*, +\q2 \w he|strong="H5921"\w* rebukes \w the|strong="H5921"\w* one \w who|strong="H7121"\w* is pursuing \w me|strong="H5921"\w*. \qs Selah.\qs* +\q1 God \w will|strong="H7121"\w* send \w out|strong="H5921"\w* \w his|strong="H7121"\w* loving kindness \w and|strong="H7121"\w* \w his|strong="H7121"\w* truth. +\q1 +\v 4 \w My|strong="H7971"\w* soul \w is|strong="H2617"\w* among lions. +\q2 \w I|strong="H7971"\w* lie among \w those|strong="H3467"\w* \w who|strong="H3467"\w* \w are|strong="H8064"\w* \w set|strong="H7971"\w* \w on|strong="H7971"\w* fire, +\q2 even \w the|strong="H7971"\w* sons \w of|strong="H8064"\w* men, whose teeth \w are|strong="H8064"\w* spears \w and|strong="H7971"\w* arrows, +\q2 \w and|strong="H7971"\w* \w their|strong="H7971"\w* tongue \w a|strong="H3068"\w* sharp sword. +\q1 +\v 5 \w Be|strong="H1121"\w* exalted, God, above \w the|strong="H8432"\w* heavens! +\q2 \w Let|strong="H5315"\w* \w your|strong="H8432"\w* glory \w be|strong="H1121"\w* above \w all|strong="H7901"\w* \w the|strong="H8432"\w* earth! +\b +\q1 +\v 6 \w They|strong="H5921"\w* \w have|strong="H3605"\w* prepared \w a|strong="H3068"\w* net \w for|strong="H5921"\w* \w my|strong="H3605"\w* steps. +\q2 \w My|strong="H3605"\w* \w soul|strong="H3519"\w* \w is|strong="H3605"\w* bowed \w down|strong="H5921"\w*. +\q1 \w They|strong="H5921"\w* dig \w a|strong="H3068"\w* pit \w before|strong="H5921"\w* \w me|strong="H5921"\w*. +\q2 \w They|strong="H5921"\w* fall \w into|strong="H5921"\w* \w the|strong="H3605"\w* middle \w of|strong="H5921"\w* \w it|strong="H5921"\w* \w themselves|strong="H5921"\w*. \qs Selah.\qs* +\q1 +\v 7 \w My|strong="H8432"\w* \w heart|strong="H5315"\w* \w is|strong="H5315"\w* \w steadfast|strong="H3559"\w*, God. +\q2 \w My|strong="H8432"\w* \w heart|strong="H5315"\w* \w is|strong="H5315"\w* \w steadfast|strong="H3559"\w*. +\q2 \w I|strong="H5315"\w* \w will|strong="H5315"\w* sing, yes, \w I|strong="H5315"\w* \w will|strong="H5315"\w* sing praises. +\q1 +\v 8 Wake up, \w my|strong="H3559"\w* glory! Wake up, lute \w and|strong="H3820"\w* harp! +\q2 \w I|strong="H3559"\w* \w will|strong="H3820"\w* wake up \w the|strong="H3559"\w* dawn. +\q1 +\v 9 \w I|strong="H5782"\w* \w will|strong="H3519"\w* give thanks \w to|strong="H3519"\w* you, Lord, among \w the|strong="H5782"\w* peoples. +\q2 \w I|strong="H5782"\w* \w will|strong="H3519"\w* sing praises \w to|strong="H3519"\w* you among \w the|strong="H5782"\w* nations. +\q1 +\v 10 \w For|strong="H5971"\w* \w your|strong="H3034"\w* great loving kindness reaches \w to|strong="H5971"\w* \w the|strong="H3034"\w* heavens, +\q2 \w and|strong="H5971"\w* \w your|strong="H3034"\w* truth \w to|strong="H5971"\w* \w the|strong="H3034"\w* skies. +\q1 +\v 11 \w Be|strong="H8064"\w* exalted, \w God|strong="H8064"\w*, above \w the|strong="H3588"\w* \w heavens|strong="H8064"\w*. +\q2 Let \w your|strong="H3588"\w* glory \w be|strong="H8064"\w* \w over|strong="H5704"\w* \w all|strong="H5704"\w* \w the|strong="H3588"\w* \w earth|strong="H8064"\w*. +\c 58 +\d For the Chief Musician. To the tune of “Do Not Destroy.” A poem by David. +\q1 +\v 1 Do you indeed speak righteousness, silent ones? +\q2 Do you judge blamelessly, you sons \w of|strong="H4387"\w* men? +\q1 +\v 2 \w No|strong="H1696"\w*, \w in|strong="H1696"\w* \w your|strong="H8199"\w* heart \w you|strong="H1696"\w* plot injustice. +\q2 \w You|strong="H1696"\w* measure \w out|strong="H1696"\w* \w the|strong="H8199"\w* violence \w of|strong="H1121"\w* \w your|strong="H8199"\w* hands \w in|strong="H1696"\w* \w the|strong="H8199"\w* earth. +\q1 +\v 3 \w The|strong="H3027"\w* \w wicked|strong="H5766"\w* go astray \w from|strong="H3027"\w* \w the|strong="H3027"\w* womb. +\q2 \w They|strong="H3027"\w* \w are|strong="H3027"\w* wayward \w as|strong="H3027"\w* soon \w as|strong="H3027"\w* \w they|strong="H3027"\w* \w are|strong="H3027"\w* born, speaking lies. +\q1 +\v 4 \w Their|strong="H7563"\w* poison \w is|strong="H7563"\w* \w like|strong="H8582"\w* \w the|strong="H1696"\w* poison \w of|strong="H1696"\w* \w a|strong="H3068"\w* snake, +\q2 \w like|strong="H8582"\w* \w a|strong="H3068"\w* deaf cobra \w that|strong="H8582"\w* stops its ear, +\q2 +\v 5 \w which|strong="H1823"\w* doesn’t listen \w to|strong="H2534"\w* \w the|strong="H3644"\w* voice \w of|strong="H2534"\w* charmers, +\q2 no matter how skillful \w the|strong="H3644"\w* charmer \w may|strong="H5175"\w* be. +\q1 +\v 6 Break \w their|strong="H8085"\w* teeth, \w God|strong="H3808"\w*, \w in|strong="H8085"\w* \w their|strong="H8085"\w* mouth. +\q2 Break \w out|strong="H3808"\w* \w the|strong="H8085"\w* great teeth \w of|strong="H6963"\w* \w the|strong="H8085"\w* young lions, \w Yahweh|strong="H3068"\w*. +\q1 +\v 7 Let \w them|strong="H3068"\w* vanish \w like|strong="H3068"\w* water \w that|strong="H3068"\w* flows away. +\q2 \w When|strong="H3068"\w* \w they|strong="H3068"\w* draw \w the|strong="H3068"\w* bow, let \w their|strong="H3068"\w* arrows \w be|strong="H3068"\w* \w made|strong="H3068"\w* blunt. +\q1 +\v 8 \w Let|strong="H3988"\w* \w them|strong="H4135"\w* \w be|strong="H4135"\w* \w like|strong="H3644"\w* \w a|strong="H3068"\w* snail \w which|strong="H4325"\w* melts \w and|strong="H1980"\w* \w passes|strong="H1980"\w* \w away|strong="H1980"\w*, +\q2 \w like|strong="H3644"\w* \w the|strong="H1980"\w* stillborn child, \w who|strong="H1869"\w* has \w not|strong="H3988"\w* seen \w the|strong="H1980"\w* sun. +\q1 +\v 9 \w Before|strong="H1980"\w* \w your|strong="H2372"\w* pots \w can|strong="H1980"\w* feel \w the|strong="H1980"\w* heat \w of|strong="H8121"\w* \w the|strong="H1980"\w* thorns, +\q2 \w he|strong="H1980"\w* \w will|strong="H8121"\w* sweep \w away|strong="H1980"\w* \w the|strong="H1980"\w* green \w and|strong="H1980"\w* \w the|strong="H1980"\w* \w burning|strong="H1980"\w* \w alike|strong="H3644"\w*. +\q1 +\v 10 \w The|strong="H2962"\w* righteous \w shall|strong="H2416"\w* rejoice \w when|strong="H3644"\w* \w he|strong="H2962"\w* sees \w the|strong="H2962"\w* vengeance. +\q2 \w He|strong="H2962"\w* \w shall|strong="H2416"\w* wash his feet \w in|strong="H5518"\w* \w the|strong="H2962"\w* blood \w of|strong="H2416"\w* \w the|strong="H2962"\w* wicked, +\q1 +\v 11 \w so|strong="H3588"\w* \w that|strong="H3588"\w* \w men|strong="H7563"\w* \w shall|strong="H7563"\w* say, “Most \w certainly|strong="H3588"\w* there \w is|strong="H7563"\w* \w a|strong="H3068"\w* reward \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w righteous|strong="H6662"\w*. +\q2 Most \w certainly|strong="H3588"\w* there \w is|strong="H7563"\w* \w a|strong="H3068"\w* God \w who|strong="H6662"\w* judges \w the|strong="H3588"\w* earth.” +\c 59 +\d For the Chief Musician. To the tune of “Do Not Destroy.” A poem by David, when Saul sent, and they watched the house to kill him. +\q1 +\v 1 \w Deliver|strong="H7971"\w* \w me|strong="H7971"\w* \w from|strong="H7971"\w* \w my|strong="H8104"\w* enemies, \w my|strong="H8104"\w* \w God|strong="H7971"\w*. +\q2 \w Set|strong="H7971"\w* \w me|strong="H7971"\w* \w on|strong="H5329"\w* high \w from|strong="H7971"\w* those \w who|strong="H8104"\w* rise \w up|strong="H7971"\w* \w against|strong="H7971"\w* \w me|strong="H7971"\w*. +\q1 +\v 2 \w Deliver|strong="H5337"\w* \w me|strong="H5337"\w* \w from|strong="H6965"\w* \w the|strong="H6965"\w* workers \w of|strong="H6965"\w* iniquity. +\q2 \w Save|strong="H5337"\w* \w me|strong="H5337"\w* \w from|strong="H6965"\w* \w the|strong="H6965"\w* bloodthirsty men. +\q1 +\v 3 For, behold, they lie \w in|strong="H1818"\w* wait for \w my|strong="H5337"\w* soul. +\q2 \w The|strong="H3467"\w* mighty gather themselves together against \w me|strong="H3467"\w*, +\q2 \w not|strong="H3467"\w* for \w my|strong="H5337"\w* disobedience, nor for \w my|strong="H5337"\w* sin, \w Yahweh|strong="H3068"\w*. +\q1 +\v 4 \w I|strong="H3588"\w* \w have|strong="H3068"\w* done \w no|strong="H3808"\w* wrong, \w yet|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H6588"\w* ready \w to|strong="H3068"\w* \w attack|strong="H1481"\w* \w me|strong="H5315"\w*. +\q2 Rise \w up|strong="H5921"\w*, \w behold|strong="H2009"\w*, \w and|strong="H3068"\w* help \w me|strong="H5315"\w*! +\q1 +\v 5 \w You|strong="H7200"\w*, \w Yahweh|strong="H3068"\w* God \w of|strong="H5771"\w* Armies, \w the|strong="H7200"\w* God \w of|strong="H5771"\w* Israel, +\q2 \w rouse|strong="H5782"\w* \w yourself|strong="H5782"\w* \w to|strong="H7200"\w* punish \w the|strong="H7200"\w* nations. +\q2 \w Show|strong="H7200"\w* \w no|strong="H1097"\w* mercy \w to|strong="H7200"\w* \w the|strong="H7200"\w* wicked traitors. \qs Selah.\qs* +\q1 +\v 6 \w They|strong="H3068"\w* return \w at|strong="H3478"\w* evening, howling \w like|strong="H3478"\w* dogs, +\q2 \w and|strong="H3478"\w* prowl around \w the|strong="H3605"\w* city. +\q1 +\v 7 Behold, \w they|strong="H5892"\w* spew \w with|strong="H5892"\w* \w their|strong="H7725"\w* mouth. +\q2 Swords \w are|strong="H5892"\w* \w in|strong="H5892"\w* \w their|strong="H7725"\w* lips, +\q2 “\w For|strong="H5892"\w*”, \w they|strong="H5892"\w* \w say|strong="H7725"\w*, “who hears \w us|strong="H7725"\w*?” +\q1 +\v 8 \w But|strong="H3588"\w* \w you|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, laugh at \w them|strong="H8085"\w*. +\q2 \w You|strong="H3588"\w* scoff at \w all|strong="H2009"\w* \w the|strong="H8085"\w* nations. +\q1 +\v 9 Oh, \w my|strong="H3605"\w* Strength, \w I|strong="H3068"\w* watch \w for|strong="H3068"\w* \w you|strong="H3605"\w*, +\q2 \w for|strong="H3068"\w* \w God|strong="H3068"\w* \w is|strong="H3068"\w* \w my|strong="H3605"\w* \w high|strong="H1471"\w* tower. +\q1 +\v 10 \w My|strong="H8104"\w* God \w will|strong="H5797"\w* go before \w me|strong="H8104"\w* \w with|strong="H3588"\w* \w his|strong="H8104"\w* loving kindness. +\q2 God \w will|strong="H5797"\w* let \w me|strong="H8104"\w* look at \w my|strong="H8104"\w* enemies \w in|strong="H4869"\w* triumph. +\q1 +\v 11 Don’t kill \w them|strong="H7200"\w*, \w or|strong="H7200"\w* \w my|strong="H7200"\w* \w people|strong="H7200"\w* may forget. +\q2 Scatter \w them|strong="H7200"\w* \w by|strong="H7200"\w* \w your|strong="H7200"\w* power, \w and|strong="H7200"\w* \w bring|strong="H6923"\w* \w them|strong="H7200"\w* down, \w Lord|strong="H2617"\w* \w our|strong="H7200"\w* shield. +\q1 +\v 12 \w For|strong="H2428"\w* \w the|strong="H7911"\w* sin \w of|strong="H5971"\w* \w their|strong="H2026"\w* mouth, \w and|strong="H5971"\w* \w the|strong="H7911"\w* words \w of|strong="H5971"\w* \w their|strong="H2026"\w* lips, +\q2 \w let|strong="H3381"\w* \w them|strong="H3381"\w* \w be|strong="H5971"\w* caught \w in|strong="H5971"\w* \w their|strong="H2026"\w* pride, +\q2 \w for|strong="H2428"\w* \w the|strong="H7911"\w* curses \w and|strong="H5971"\w* lies \w which|strong="H5971"\w* \w they|strong="H5971"\w* utter. +\q1 +\v 13 Consume \w them|strong="H1697"\w* \w in|strong="H1697"\w* wrath. +\q2 Consume \w them|strong="H1697"\w*, \w and|strong="H1697"\w* \w they|strong="H6310"\w* \w will|strong="H1697"\w* \w be|strong="H1697"\w* \w no|strong="H6310"\w* more. +\q1 Let \w them|strong="H1697"\w* know \w that|strong="H1697"\w* God rules \w in|strong="H1697"\w* \w Jacob|strong="H5608"\w*, +\q2 \w to|strong="H1697"\w* \w the|strong="H1697"\w* ends \w of|strong="H1697"\w* \w the|strong="H1697"\w* earth. \qs Selah.\qs* +\q1 +\v 14 \w At|strong="H3045"\w* evening let \w them|strong="H3615"\w* return. +\q2 Let \w them|strong="H3615"\w* howl \w like|strong="H2534"\w* \w a|strong="H3068"\w* dog, \w and|strong="H3045"\w* \w go|strong="H2534"\w* around \w the|strong="H3588"\w* city. +\q1 +\v 15 \w They|strong="H5892"\w* \w shall|strong="H5892"\w* wander \w up|strong="H7725"\w* \w and|strong="H7725"\w* \w down|strong="H5437"\w* \w for|strong="H5892"\w* food, +\q2 \w and|strong="H7725"\w* wait \w all|strong="H7725"\w* \w night|strong="H6153"\w* if \w they|strong="H5892"\w* aren’t satisfied. +\b +\q1 +\v 16 \w But|strong="H3808"\w* \w I|strong="H3808"\w* \w will|strong="H3808"\w* sing \w of|strong="H7646"\w* \w your|strong="H3808"\w* strength. +\q2 Yes, \w I|strong="H3808"\w* \w will|strong="H3808"\w* sing aloud \w of|strong="H7646"\w* \w your|strong="H3808"\w* loving kindness \w in|strong="H3885"\w* \w the|strong="H3885"\w* morning. +\q1 \w For|strong="H3808"\w* \w you|strong="H3808"\w* \w have|strong="H7646"\w* \w been|strong="H3808"\w* \w my|strong="H3808"\w* high tower, +\q2 \w a|strong="H3068"\w* refuge \w in|strong="H3885"\w* \w the|strong="H3885"\w* day \w of|strong="H7646"\w* \w my|strong="H3808"\w* distress. +\q1 +\v 17 \w To|strong="H1961"\w* \w you|strong="H3588"\w*, \w my|strong="H1961"\w* \w strength|strong="H5797"\w*, \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w sing|strong="H7891"\w* praises. +\q2 \w For|strong="H3588"\w* God \w is|strong="H2617"\w* \w my|strong="H1961"\w* high \w tower|strong="H4869"\w*, \w the|strong="H3588"\w* God \w of|strong="H3117"\w* \w my|strong="H1961"\w* \w mercy|strong="H2617"\w*. +\c 60 +\d For the Chief Musician. To the tune of “The Lily of the Covenant.” A teaching poem by David, when he fought with Aram Naharaim and with Aram Zobah, and Joab returned, and killed twelve thousand of Edom in the Valley of Salt. +\q1 +\v 1 God, \w you|strong="H5921"\w* \w have|strong="H5921"\w* rejected \w us|strong="H5921"\w*. +\q2 \w You|strong="H5921"\w* \w have|strong="H5921"\w* broken \w us|strong="H5921"\w* \w down|strong="H5921"\w*. +\q1 \w You|strong="H5921"\w* \w have|strong="H5921"\w* been angry. +\q2 Restore \w us|strong="H5921"\w*, \w again|strong="H3925"\w*. +\q1 +\v 2 \w You|strong="H7725"\w* \w have|strong="H8147"\w* \w made|strong="H7725"\w* \w the|strong="H5221"\w* land tremble. +\q2 \w You|strong="H7725"\w* \w have|strong="H8147"\w* torn \w it|strong="H7725"\w*. +\q1 Mend \w its|strong="H7725"\w* fractures, +\q2 \w for|strong="H8147"\w* \w it|strong="H7725"\w* quakes. +\q1 +\v 3 \w You|strong="H7725"\w* have shown \w your|strong="H7725"\w* people hard things. +\q2 \w You|strong="H7725"\w* have \w made|strong="H6555"\w* \w us|strong="H7725"\w* drink \w the|strong="H7725"\w* wine \w that|strong="H7725"\w* makes \w us|strong="H7725"\w* stagger. +\q1 +\v 4 \w You|strong="H3588"\w* \w have|strong="H3588"\w* given \w a|strong="H3068"\w* banner \w to|strong="H3588"\w* \w those|strong="H3588"\w* \w who|strong="H3588"\w* fear \w you|strong="H3588"\w*, +\q2 \w that|strong="H3588"\w* \w it|strong="H3588"\w* may \w be|strong="H3588"\w* displayed \w because|strong="H3588"\w* \w of|strong="H7667"\w* \w the|strong="H3588"\w* truth. \qs Selah.\qs* +\b +\q1 +\v 5 \w So|strong="H7200"\w* \w that|strong="H5971"\w* \w your|strong="H7200"\w* beloved \w may|strong="H5971"\w* \w be|strong="H5971"\w* delivered, +\q2 save \w with|strong="H5971"\w* \w your|strong="H7200"\w* right hand, \w and|strong="H5971"\w* answer \w us|strong="H7200"\w*. +\q1 +\v 6 \w God|strong="H5414"\w* \w has|strong="H5414"\w* spoken \w from|strong="H6440"\w* \w his|strong="H5414"\w* sanctuary: +\q2 “\w I|strong="H5414"\w* \w will|strong="H5414"\w* triumph. +\q2 \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w divide|strong="H5414"\w* Shechem, +\q2 \w and|strong="H6440"\w* measure \w out|strong="H5414"\w* \w the|strong="H6440"\w* valley \w of|strong="H6440"\w* Succoth. +\q1 +\v 7 Gilead \w is|strong="H3225"\w* mine, \w and|strong="H6032"\w* Manasseh \w is|strong="H3225"\w* mine. +\q2 Ephraim also \w is|strong="H3225"\w* \w the|strong="H3467"\w* defense \w of|strong="H3225"\w* \w my|strong="H3467"\w* head. +\q2 Judah \w is|strong="H3225"\w* \w my|strong="H3467"\w* scepter. +\q1 +\v 8 Moab \w is|strong="H1696"\w* \w my|strong="H1696"\w* wash basin. +\q2 I will throw \w my|strong="H1696"\w* sandal \w on|strong="H1696"\w* Edom. +\q2 I shout \w in|strong="H1696"\w* \w triumph|strong="H5937"\w* over Philistia.” +\b +\q1 +\v 9 \w Who|strong="H3063"\w* \w will|strong="H3063"\w* bring me \w into|strong="H3063"\w* \w the|strong="H4519"\w* \w strong|strong="H4581"\w* city? +\q2 \w Who|strong="H3063"\w* \w has|strong="H3063"\w* led me \w to|strong="H3063"\w* Edom? +\q1 +\v 10 Haven’t \w you|strong="H5921"\w*, God, rejected \w us|strong="H5921"\w*? +\q2 \w You|strong="H5921"\w* don’t go \w out|strong="H7993"\w* \w with|strong="H5921"\w* \w our|strong="H5921"\w* armies, God. +\q1 +\v 11 Give us help \w against|strong="H5892"\w* \w the|strong="H5704"\w* adversary, +\q2 \w for|strong="H5704"\w* \w the|strong="H5704"\w* help \w of|strong="H5892"\w* man \w is|strong="H4310"\w* vain. +\q1 +\v 12 \w Through|strong="H3318"\w* \w God|strong="H3808"\w* \w we|strong="H3068"\w* \w will|strong="H6635"\w* \w do|strong="H3318"\w* valiantly, +\q2 \w for|strong="H6635"\w* \w it|strong="H3808"\w* \w is|strong="H6635"\w* \w he|strong="H3808"\w* \w who|strong="H6635"\w* \w will|strong="H6635"\w* tread down \w our|strong="H3318"\w* adversaries. +\c 61 +\d For the Chief Musician. For a stringed instrument. By David. +\q1 +\v 1 Hear \w my|strong="H1732"\w* cry, God. +\q2 Listen \w to|strong="H5921"\w* \w my|strong="H1732"\w* prayer. +\q1 +\v 2 \w From|strong="H8085"\w* \w the|strong="H8085"\w* end \w of|strong="H8085"\w* \w the|strong="H8085"\w* earth, \w I|strong="H8085"\w* \w will|strong="H8085"\w* \w call|strong="H8085"\w* \w to|strong="H8085"\w* \w you|strong="H8085"\w* \w when|strong="H8085"\w* \w my|strong="H8085"\w* \w heart|strong="H8085"\w* \w is|strong="H8085"\w* overwhelmed. +\q2 Lead \w me|strong="H8085"\w* \w to|strong="H8085"\w* \w the|strong="H8085"\w* rock \w that|strong="H8085"\w* \w is|strong="H8085"\w* higher than \w I|strong="H8085"\w*. +\q1 +\v 3 \w For|strong="H7121"\w* \w you|strong="H4480"\w* have been \w a|strong="H3068"\w* refuge \w for|strong="H7121"\w* \w me|strong="H7121"\w*, +\q2 \w a|strong="H3068"\w* \w strong|strong="H6697"\w* tower \w from|strong="H4480"\w* \w the|strong="H4480"\w* enemy. +\q1 +\v 4 \w I|strong="H3588"\w* \w will|strong="H1961"\w* dwell \w in|strong="H6440"\w* \w your|strong="H6440"\w* tent forever. +\q2 \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w take|strong="H1961"\w* \w refuge|strong="H4268"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w shelter|strong="H4268"\w* \w of|strong="H6440"\w* \w your|strong="H6440"\w* wings. \qs Selah.\qs* +\q1 +\v 5 \w For|strong="H5643"\w* \w you|strong="H5769"\w*, God, have heard my vows. +\q2 \w You|strong="H5769"\w* have \w given|strong="H5643"\w* \w me|strong="H5769"\w* \w the|strong="H1481"\w* heritage \w of|strong="H3671"\w* those who \w fear|strong="H1481"\w* \w your|strong="H5769"\w* name. +\q1 +\v 6 \w You|strong="H3588"\w* \w will|strong="H5414"\w* prolong \w the|strong="H8085"\w* king’s life. +\q2 \w His|strong="H5414"\w* years \w will|strong="H5414"\w* \w be|strong="H8034"\w* \w for|strong="H3588"\w* generations. +\q1 +\v 7 \w He|strong="H3117"\w* \w shall|strong="H4428"\w* \w be|strong="H3117"\w* enthroned \w in|strong="H5921"\w* God’s \w presence|strong="H5921"\w* \w forever|strong="H1755"\w*. +\q2 Appoint \w your|strong="H5921"\w* loving kindness \w and|strong="H4428"\w* truth, \w that|strong="H3117"\w* \w they|strong="H3117"\w* \w may|strong="H4428"\w* preserve \w him|strong="H5921"\w*. +\q1 +\v 8 \w So|strong="H3427"\w* \w I|strong="H6440"\w* \w will|strong="H2617"\w* sing \w praise|strong="H5769"\w* \w to|strong="H6440"\w* \w your|strong="H6440"\w* name \w forever|strong="H5769"\w*, +\q2 \w that|strong="H5769"\w* \w I|strong="H6440"\w* may fulfill \w my|strong="H6440"\w* vows daily. +\c 62 +\d For the Chief Musician. To Jeduthun. A Psalm by David. +\q1 +\v 1 \w My|strong="H1732"\w* soul rests \w in|strong="H5921"\w* God alone. +\q2 \w My|strong="H1732"\w* salvation \w is|strong="H1732"\w* \w from|strong="H5921"\w* \w him|strong="H5921"\w*. +\q1 +\v 2 \w He|strong="H4480"\w* \w alone|strong="H4480"\w* \w is|strong="H5315"\w* \w my|strong="H4480"\w* rock, \w my|strong="H4480"\w* \w salvation|strong="H3444"\w*, \w and|strong="H5315"\w* \w my|strong="H4480"\w* fortress. +\q2 \w I|strong="H5315"\w* \w will|strong="H5315"\w* never \w be|strong="H5315"\w* greatly shaken. +\q1 +\v 3 \w How|strong="H3444"\w* \w long|strong="H7227"\w* \w will|strong="H3808"\w* \w you|strong="H3808"\w* assault \w a|strong="H3068"\w* man? +\q2 \w Would|strong="H7227"\w* all \w of|strong="H6697"\w* \w you|strong="H3808"\w* throw \w him|strong="H1931"\w* \w down|strong="H4131"\w*, +\q2 \w like|strong="H3808"\w* \w a|strong="H3068"\w* leaning wall, \w like|strong="H3808"\w* \w a|strong="H3068"\w* tottering fence? +\q1 +\v 4 \w They|strong="H5921"\w* \w fully|strong="H5921"\w* intend \w to|strong="H5704"\w* throw \w him|strong="H5921"\w* \w down|strong="H5186"\w* \w from|strong="H5921"\w* \w his|strong="H3605"\w* lofty \w place|strong="H3605"\w*. +\q2 \w They|strong="H5921"\w* delight \w in|strong="H5921"\w* lies. +\q2 \w They|strong="H5921"\w* bless \w with|strong="H5921"\w* \w their|strong="H3605"\w* mouth, \w but|strong="H3605"\w* \w they|strong="H5921"\w* curse inwardly. \qs Selah.\qs* +\q1 +\v 5 \w My|strong="H7130"\w* soul, wait \w in|strong="H7130"\w* silence \w for|strong="H7130"\w* God alone, +\q2 \w for|strong="H7130"\w* \w my|strong="H7130"\w* expectation \w is|strong="H6310"\w* from \w him|strong="H7130"\w*. +\q1 +\v 6 \w He|strong="H3588"\w* \w alone|strong="H4480"\w* \w is|strong="H5315"\w* \w my|strong="H3588"\w* rock \w and|strong="H5315"\w* \w my|strong="H3588"\w* salvation, \w my|strong="H3588"\w* fortress. +\q2 \w I|strong="H3588"\w* \w will|strong="H5315"\w* \w not|strong="H3588"\w* \w be|strong="H5315"\w* shaken. +\q1 +\v 7 \w My|strong="H3808"\w* \w salvation|strong="H3444"\w* \w and|strong="H6697"\w* \w my|strong="H3808"\w* honor \w is|strong="H1931"\w* \w with|strong="H4131"\w* \w God|strong="H6697"\w*. +\q2 \w The|strong="H3808"\w* \w rock|strong="H6697"\w* \w of|strong="H6697"\w* \w my|strong="H3808"\w* \w strength|strong="H6697"\w*, \w and|strong="H6697"\w* \w my|strong="H3808"\w* \w refuge|strong="H4869"\w*, \w is|strong="H1931"\w* \w in|strong="H3808"\w* \w God|strong="H6697"\w*. +\q1 +\v 8 \w Trust|strong="H4268"\w* \w in|strong="H5921"\w* \w him|strong="H5921"\w* \w at|strong="H5921"\w* \w all|strong="H5921"\w* times, \w you|strong="H5921"\w* people. +\q2 Pour \w out|strong="H5921"\w* \w your|strong="H5921"\w* heart \w before|strong="H5921"\w* \w him|strong="H5921"\w*. +\q2 \w God|strong="H6697"\w* \w is|strong="H3519"\w* \w a|strong="H3068"\w* \w refuge|strong="H4268"\w* \w for|strong="H5921"\w* \w us|strong="H5921"\w*. \qs Selah.\qs* +\q1 +\v 9 Surely \w men|strong="H5971"\w* \w of|strong="H6440"\w* low degree \w are|strong="H5971"\w* \w just|strong="H3605"\w* \w a|strong="H3068"\w* breath, +\q2 \w and|strong="H5971"\w* \w men|strong="H5971"\w* \w of|strong="H6440"\w* high degree \w are|strong="H5971"\w* \w a|strong="H3068"\w* lie. +\q1 \w In|strong="H6440"\w* \w the|strong="H3605"\w* balances \w they|strong="H6256"\w* \w will|strong="H5971"\w* \w go|strong="H5971"\w* \w up|strong="H8210"\w*. +\q2 \w They|strong="H6256"\w* \w are|strong="H5971"\w* \w together|strong="H5971"\w* lighter \w than|strong="H3605"\w* \w a|strong="H3068"\w* breath. +\q1 +\v 10 Don’t trust \w in|strong="H1121"\w* oppression. +\q2 Don’t \w become|strong="H3162"\w* \w vain|strong="H1892"\w* \w in|strong="H1121"\w* robbery. +\q1 \w If|strong="H1121"\w* riches increase, +\q2 don’t \w set|strong="H5927"\w* \w your|strong="H5927"\w* heart \w on|strong="H5927"\w* \w them|strong="H1992"\w*. +\q1 +\v 11 God \w has|strong="H3820"\w* spoken once; +\q2 twice \w I|strong="H3588"\w* \w have|strong="H3588"\w* \w heard|strong="H3588"\w* \w this|strong="H3588"\w*, +\q2 \w that|strong="H3588"\w* \w power|strong="H2428"\w* belongs \w to|strong="H3820"\w* God. +\q1 +\v 12 \w Also|strong="H5797"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*, Lord, belongs loving kindness, +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* reward \w every|strong="H3588"\w* man according \w to|strong="H1696"\w* \w his|strong="H8085"\w* work. +\c 63 +\d A Psalm by David, when he was in the desert of Judah. +\q1 +\v 1 God, \w you|strong="H1961"\w* \w are|strong="H1961"\w* \w my|strong="H1732"\w* God. +\q2 \w I|strong="H1961"\w* \w will|strong="H1961"\w* earnestly seek \w you|strong="H1961"\w*. +\q1 \w My|strong="H1732"\w* soul thirsts \w for|strong="H1961"\w* \w you|strong="H1961"\w*. +\q2 \w My|strong="H1732"\w* flesh longs \w for|strong="H1961"\w* \w you|strong="H1961"\w*, +\q2 \w in|strong="H1732"\w* \w a|strong="H3068"\w* dry \w and|strong="H3063"\w* weary land, where \w there|strong="H1961"\w* \w is|strong="H1961"\w* \w no|strong="H1961"\w* water. +\q1 +\v 2 \w So|strong="H1097"\w* \w I|strong="H5315"\w* \w have|strong="H4325"\w* seen \w you|strong="H5315"\w* \w in|strong="H1320"\w* \w the|strong="H4325"\w* sanctuary, +\q2 watching \w your|strong="H5315"\w* power \w and|strong="H4325"\w* \w your|strong="H5315"\w* glory. +\q1 +\v 3 \w Because|strong="H3651"\w* \w your|strong="H7200"\w* loving kindness \w is|strong="H3651"\w* better than life, +\q2 \w my|strong="H7200"\w* lips \w shall|strong="H5797"\w* praise \w you|strong="H7200"\w*. +\q1 +\v 4 \w So|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H2617"\w* bless \w you|strong="H3588"\w* \w while|strong="H3588"\w* \w I|strong="H3588"\w* \w live|strong="H2416"\w*. +\q2 \w I|strong="H3588"\w* \w will|strong="H2617"\w* lift up \w my|strong="H3588"\w* hands \w in|strong="H2896"\w* \w your|strong="H3588"\w* name. +\q1 +\v 5 \w My|strong="H5375"\w* soul \w shall|strong="H2416"\w* \w be|strong="H8034"\w* satisfied \w as|strong="H3651"\w* \w with|strong="H3651"\w* \w the|strong="H5375"\w* richest food. +\q2 \w My|strong="H5375"\w* mouth \w shall|strong="H2416"\w* \w praise|strong="H1288"\w* \w you|strong="H1288"\w* \w with|strong="H3651"\w* joyful lips, +\q2 +\v 6 \w when|strong="H3644"\w* \w I|strong="H5315"\w* remember \w you|strong="H3644"\w* \w on|strong="H6310"\w* \w my|strong="H5315"\w* bed, +\q2 \w and|strong="H6310"\w* think \w about|strong="H1984"\w* \w you|strong="H3644"\w* \w in|strong="H5315"\w* \w the|strong="H1984"\w* night watches. +\q1 +\v 7 \w For|strong="H5921"\w* \w you|strong="H5921"\w* \w have|strong="H5921"\w* \w been|strong="H2142"\w* \w my|strong="H5921"\w* help. +\q2 \w I|strong="H5921"\w* will rejoice \w in|strong="H5921"\w* \w the|strong="H5921"\w* shadow \w of|strong="H5921"\w* \w your|strong="H5921"\w* wings. +\q1 +\v 8 \w My|strong="H1961"\w* soul stays close \w to|strong="H1961"\w* \w you|strong="H3588"\w*. +\q2 \w Your|strong="H3588"\w* right hand holds \w me|strong="H1961"\w* \w up|strong="H1961"\w*. +\q1 +\v 9 \w But|strong="H3225"\w* \w those|strong="H5315"\w* \w who|strong="H5315"\w* seek \w my|strong="H8551"\w* \w soul|strong="H5315"\w* \w to|strong="H5315"\w* destroy \w it|strong="H5315"\w* +\q2 \w shall|strong="H5315"\w* go into \w the|strong="H8551"\w* lower parts \w of|strong="H5315"\w* \w the|strong="H8551"\w* earth. +\q1 +\v 10 \w They|strong="H1992"\w* \w shall|strong="H5315"\w* \w be|strong="H5315"\w* given over \w to|strong="H1245"\w* \w the|strong="H1245"\w* power \w of|strong="H5315"\w* \w the|strong="H1245"\w* sword. +\q2 \w They|strong="H1992"\w* \w shall|strong="H5315"\w* \w be|strong="H5315"\w* jackal food. +\q1 +\v 11 \w But|strong="H1961"\w* \w the|strong="H5921"\w* \w king|strong="H5921"\w* \w shall|strong="H2719"\w* rejoice \w in|strong="H5921"\w* \w God|strong="H3027"\w*. +\q2 Everyone who swears \w by|strong="H3027"\w* \w him|strong="H5921"\w* \w will|strong="H1961"\w* praise \w him|strong="H5921"\w*, +\q2 \w for|strong="H5921"\w* \w the|strong="H5921"\w* mouth \w of|strong="H3027"\w* \w those|strong="H5921"\w* who speak \w lies|strong="H1961"\w* \w shall|strong="H2719"\w* \w be|strong="H1961"\w* silenced. +\c 64 +\d For the Chief Musician. A Psalm by David. +\q1 +\v 1 Hear \w my|strong="H1732"\w* voice, God, \w in|strong="H1732"\w* \w my|strong="H1732"\w* complaint. +\q2 Preserve \w my|strong="H1732"\w* life from fear \w of|strong="H4210"\w* \w the|strong="H1732"\w* enemy. +\q1 +\v 2 Hide \w me|strong="H6963"\w* \w from|strong="H8085"\w* \w the|strong="H8085"\w* conspiracy \w of|strong="H6963"\w* \w the|strong="H8085"\w* wicked, +\q2 \w from|strong="H8085"\w* \w the|strong="H8085"\w* noisy crowd \w of|strong="H6963"\w* \w the|strong="H8085"\w* ones doing evil; +\q1 +\v 3 \w who|strong="H7489"\w* sharpen \w their|strong="H5641"\w* tongue like \w a|strong="H3068"\w* sword, +\q2 \w and|strong="H6466"\w* aim \w their|strong="H5641"\w* arrows, deadly words, +\q2 +\v 4 \w to|strong="H1697"\w* \w shoot|strong="H1869"\w* innocent men \w from|strong="H1697"\w* ambushes. +\q2 \w They|strong="H1697"\w* \w shoot|strong="H1869"\w* at \w him|strong="H1697"\w* suddenly \w and|strong="H2719"\w* fearlessly. +\q1 +\v 5 \w They|strong="H3808"\w* encourage themselves \w in|strong="H3808"\w* evil plans. +\q2 \w They|strong="H3808"\w* talk about laying snares \w secretly|strong="H4565"\w*. +\q2 \w They|strong="H3808"\w* say, “\w Who|strong="H3808"\w* \w will|strong="H3808"\w* see \w them|strong="H3384"\w*?” +\q1 +\v 6 \w They|strong="H1697"\w* \w plot|strong="H1697"\w* injustice, \w saying|strong="H1697"\w*, “\w We|strong="H1697"\w* \w have|strong="H7200"\w* \w made|strong="H2388"\w* \w a|strong="H3068"\w* perfect \w plan|strong="H1697"\w*!” +\q2 \w Surely|strong="H7200"\w* \w man|strong="H7451"\w*’s mind \w and|strong="H2388"\w* heart \w are|strong="H1697"\w* cunning. +\q1 +\v 7 \w But|strong="H3820"\w* \w God|strong="H2664"\w* \w will|strong="H3820"\w* shoot at \w them|strong="H7130"\w*. +\q2 \w They|strong="H3820"\w* \w will|strong="H3820"\w* \w be|strong="H3820"\w* suddenly struck down \w with|strong="H3820"\w* \w an|strong="H8552"\w* arrow. +\q1 +\v 8 \w Their|strong="H1961"\w* \w own|strong="H1961"\w* tongues shall ruin \w them|strong="H1961"\w*. +\q2 All who see \w them|strong="H1961"\w* \w will|strong="H1961"\w* shake \w their|strong="H1961"\w* heads. +\q1 +\v 9 \w All|strong="H3605"\w* mankind \w shall|strong="H3956"\w* \w be|strong="H3956"\w* afraid. +\q2 \w They|strong="H5921"\w* \w shall|strong="H3956"\w* declare \w the|strong="H3605"\w* work \w of|strong="H5921"\w* God, +\q2 \w and|strong="H7200"\w* \w shall|strong="H3956"\w* wisely ponder \w what|strong="H7200"\w* \w he|strong="H3605"\w* \w has|strong="H3605"\w* \w done|strong="H3605"\w*. +\q1 +\v 10 \w The|strong="H3605"\w* righteous \w shall|strong="H7919"\w* \w be|strong="H3372"\w* glad \w in|strong="H7919"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H3372"\w* \w shall|strong="H7919"\w* take refuge \w in|strong="H7919"\w* \w him|strong="H5046"\w*. +\q2 \w All|strong="H3605"\w* \w the|strong="H3605"\w* upright \w in|strong="H7919"\w* heart \w shall|strong="H7919"\w* praise \w him|strong="H5046"\w*! +\c 65 +\d For the Chief Musician. A Psalm by David. A song. +\q1 +\v 1 Praise waits \w for|strong="H1732"\w* you, God, \w in|strong="H1732"\w* Zion. +\q2 Vows \w shall|strong="H1732"\w* \w be|strong="H1732"\w* performed \w to|strong="H1732"\w* you. +\q1 +\v 2 \w You|strong="H6726"\w* who hear prayer, +\q2 all men \w will|strong="H6726"\w* come \w to|strong="H8416"\w* \w you|strong="H6726"\w*. +\q1 +\v 3 Sins overwhelmed \w me|strong="H8085"\w*, +\q2 \w but|strong="H8085"\w* \w you|strong="H3605"\w* atoned \w for|strong="H5704"\w* \w our|strong="H3605"\w* transgressions. +\q1 +\v 4 Blessed \w is|strong="H1697"\w* \w the|strong="H4480"\w* \w one|strong="H4480"\w* whom \w you|strong="H4480"\w* choose \w and|strong="H1697"\w* \w cause|strong="H1697"\w* \w to|strong="H1697"\w* come near, +\q2 \w that|strong="H1697"\w* \w he|strong="H4480"\w* \w may|strong="H4480"\w* live \w in|strong="H1697"\w* \w your|strong="H4480"\w* courts. +\q2 \w We|strong="H1697"\w* \w will|strong="H1697"\w* \w be|strong="H1697"\w* filled \w with|strong="H1697"\w* \w the|strong="H4480"\w* goodness \w of|strong="H1697"\w* \w your|strong="H4480"\w* house, +\q2 \w your|strong="H4480"\w* holy temple. +\q1 +\v 5 \w By|strong="H7126"\w* awesome deeds \w of|strong="H1004"\w* righteousness, \w you|strong="H7126"\w* answer \w us|strong="H7646"\w*, +\q2 God \w of|strong="H1004"\w* our salvation. +\q1 \w You|strong="H7126"\w* who \w are|strong="H1004"\w* \w the|strong="H7126"\w* hope \w of|strong="H1004"\w* \w all|strong="H7931"\w* \w the|strong="H7126"\w* ends \w of|strong="H1004"\w* \w the|strong="H7126"\w* earth, +\q2 \w of|strong="H1004"\w* \w those|strong="H7126"\w* who \w are|strong="H1004"\w* far away \w on|strong="H7931"\w* \w the|strong="H7126"\w* sea. +\q1 +\v 6 \w By|strong="H3605"\w* \w your|strong="H3605"\w* power, \w you|strong="H3605"\w* form \w the|strong="H3605"\w* mountains, +\q2 having armed yourself \w with|strong="H3605"\w* strength. +\q1 +\v 7 \w You|strong="H2022"\w* still \w the|strong="H3559"\w* roaring \w of|strong="H2022"\w* \w the|strong="H3559"\w* seas, +\q2 \w the|strong="H3559"\w* roaring \w of|strong="H2022"\w* \w their|strong="H3559"\w* waves, +\q2 \w and|strong="H2022"\w* \w the|strong="H3559"\w* turmoil \w of|strong="H2022"\w* \w the|strong="H3559"\w* nations. +\q1 +\v 8 They also who dwell \w in|strong="H3220"\w* faraway places \w are|strong="H1530"\w* afraid \w at|strong="H3220"\w* \w your|strong="H7623"\w* wonders. +\q2 You call \w the|strong="H7623"\w* morning’s dawn \w and|strong="H3220"\w* \w the|strong="H7623"\w* evening \w with|strong="H3220"\w* songs \w of|strong="H1995"\w* joy. +\q1 +\v 9 \w You|strong="H3372"\w* visit \w the|strong="H3372"\w* earth, \w and|strong="H1242"\w* water \w it|strong="H1242"\w*. +\q2 \w You|strong="H3372"\w* greatly enrich \w it|strong="H1242"\w*. +\q1 \w The|strong="H3372"\w* river \w of|strong="H3427"\w* God \w is|strong="H3427"\w* full \w of|strong="H3427"\w* water. +\q2 \w You|strong="H3372"\w* provide \w them|strong="H3427"\w* grain, \w for|strong="H7442"\w* \w so|strong="H3427"\w* \w you|strong="H3372"\w* \w have|strong="H3372"\w* ordained \w it|strong="H1242"\w*. +\q1 +\v 10 \w You|strong="H3588"\w* drench \w its|strong="H3588"\w* furrows. +\q2 \w You|strong="H3588"\w* level \w its|strong="H3588"\w* ridges. +\q2 \w You|strong="H3588"\w* soften \w it|strong="H3588"\w* \w with|strong="H4390"\w* showers. +\q2 \w You|strong="H3588"\w* bless \w it|strong="H3588"\w* \w with|strong="H4390"\w* \w a|strong="H3068"\w* crop. +\q1 +\v 11 \w You|strong="H1288"\w* crown \w the|strong="H1288"\w* year \w with|strong="H7301"\w* \w your|strong="H1288"\w* bounty. +\q2 \w Your|strong="H1288"\w* carts overflow \w with|strong="H7301"\w* abundance. +\q1 +\v 12 \w The|strong="H8141"\w* wilderness grasslands overflow. +\q2 \w The|strong="H8141"\w* hills \w are|strong="H8141"\w* clothed \w with|strong="H2896"\w* gladness. +\q1 +\v 13 \w The|strong="H4057"\w* \w pastures|strong="H4999"\w* \w are|strong="H1524"\w* covered \w with|strong="H2296"\w* flocks. +\q2 \w The|strong="H4057"\w* valleys also \w are|strong="H1524"\w* \w clothed|strong="H2296"\w* \w with|strong="H2296"\w* grain. +\q1 They shout \w for|strong="H4057"\w* \w joy|strong="H1524"\w*! +\q2 They also sing. +\c 66 +\d For the Chief Musician. A song. A Psalm. +\q1 +\v 1 Make \w a|strong="H3068"\w* joyful \w shout|strong="H7321"\w* \w to|strong="H7321"\w* God, \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth! +\q2 +\v 2 \w Sing|strong="H2167"\w* \w to|strong="H8034"\w* \w the|strong="H7760"\w* \w glory|strong="H3519"\w* \w of|strong="H8034"\w* \w his|strong="H7760"\w* \w name|strong="H8034"\w*! +\q2 Offer \w glory|strong="H3519"\w* \w and|strong="H8034"\w* \w praise|strong="H8416"\w*! +\q1 +\v 3 Tell God, “\w How|strong="H4100"\w* \w awesome|strong="H3372"\w* \w are|strong="H4100"\w* \w your|strong="H3372"\w* \w deeds|strong="H4639"\w*! +\q2 Through \w the|strong="H3372"\w* \w greatness|strong="H7230"\w* \w of|strong="H7230"\w* \w your|strong="H3372"\w* \w power|strong="H5797"\w*, \w your|strong="H3372"\w* enemies \w submit|strong="H3584"\w* themselves \w to|strong="H3372"\w* \w you|strong="H4100"\w*. +\q1 +\v 4 \w All|strong="H3605"\w* \w the|strong="H3605"\w* earth \w will|strong="H8034"\w* \w worship|strong="H7812"\w* \w you|strong="H3605"\w*, +\q2 \w and|strong="H8034"\w* \w will|strong="H8034"\w* \w sing|strong="H2167"\w* \w to|strong="H8034"\w* \w you|strong="H3605"\w*; +\q2 \w they|strong="H3605"\w* \w will|strong="H8034"\w* \w sing|strong="H2167"\w* \w to|strong="H8034"\w* \w your|strong="H3605"\w* \w name|strong="H8034"\w*.” \qs \+w Selah|strong="H5542"\+w*.\qs* +\q1 +\v 5 \w Come|strong="H3212"\w*, \w and|strong="H1121"\w* \w see|strong="H7200"\w* God’s \w deeds|strong="H5949"\w*— +\q2 \w awesome|strong="H3372"\w* work \w on|strong="H5921"\w* \w behalf|strong="H5921"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*. +\q1 +\v 6 \w He|strong="H8033"\w* \w turned|strong="H2015"\w* \w the|strong="H5674"\w* \w sea|strong="H3220"\w* \w into|strong="H2015"\w* \w dry|strong="H3004"\w* \w land|strong="H3004"\w*. +\q2 \w They|strong="H8033"\w* \w went|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H5674"\w* \w river|strong="H5104"\w* \w on|strong="H5674"\w* \w foot|strong="H7272"\w*. +\q2 \w There|strong="H8033"\w*, \w we|strong="H3068"\w* \w rejoiced|strong="H8055"\w* \w in|strong="H8055"\w* \w him|strong="H8055"\w*. +\q1 +\v 7 He \w rules|strong="H4910"\w* \w by|strong="H5869"\w* \w his|strong="H7311"\w* \w might|strong="H1369"\w* \w forever|strong="H5769"\w*. +\q2 \w His|strong="H7311"\w* \w eyes|strong="H5869"\w* \w watch|strong="H6822"\w* \w the|strong="H7311"\w* \w nations|strong="H1471"\w*. +\q2 Don’t let \w the|strong="H7311"\w* \w rebellious|strong="H5637"\w* \w rise|strong="H7311"\w* \w up|strong="H7311"\w* \w against|strong="H1471"\w* \w him|strong="H5869"\w*. \qs \+w Selah|strong="H5542"\+w*.\qs* +\q1 +\v 8 \w Praise|strong="H8416"\w* \w our|strong="H1288"\w* God, \w you|strong="H1288"\w* \w peoples|strong="H5971"\w*! +\q2 \w Make|strong="H8085"\w* \w the|strong="H8085"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w his|strong="H8085"\w* \w praise|strong="H8416"\w* \w heard|strong="H8085"\w*, +\q1 +\v 9 \w who|strong="H5315"\w* preserves \w our|strong="H5414"\w* \w life|strong="H5315"\w* \w among|strong="H3808"\w* \w the|strong="H5414"\w* \w living|strong="H2416"\w*, +\q2 \w and|strong="H5315"\w* doesn’t \w allow|strong="H5414"\w* \w our|strong="H5414"\w* \w feet|strong="H7272"\w* \w to|strong="H5414"\w* \w be|strong="H3808"\w* \w moved|strong="H4132"\w*. +\q1 +\v 10 \w For|strong="H3588"\w* \w you|strong="H3588"\w*, God, \w have|strong="H3588"\w* \w tested|strong="H6884"\w* \w us|strong="H3588"\w*. +\q2 \w You|strong="H3588"\w* \w have|strong="H3588"\w* \w refined|strong="H6884"\w* \w us|strong="H3588"\w*, \w as|strong="H3588"\w* \w silver|strong="H3701"\w* \w is|strong="H3701"\w* \w refined|strong="H6884"\w*. +\q1 +\v 11 \w You|strong="H7760"\w* \w brought|strong="H7760"\w* \w us|strong="H7760"\w* \w into|strong="H7760"\w* prison. +\q2 \w You|strong="H7760"\w* \w laid|strong="H7760"\w* \w a|strong="H3068"\w* \w burden|strong="H4157"\w* \w on|strong="H7760"\w* \w our|strong="H7760"\w* backs. +\q1 +\v 12 \w You|strong="H3318"\w* allowed \w men|strong="H7218"\w* \w to|strong="H3318"\w* \w ride|strong="H7392"\w* \w over|strong="H7218"\w* \w our|strong="H3318"\w* \w heads|strong="H7218"\w*. +\q2 We \w went|strong="H3318"\w* \w through|strong="H3318"\w* fire \w and|strong="H7218"\w* \w through|strong="H3318"\w* \w water|strong="H4325"\w*, +\q2 \w but|strong="H4325"\w* \w you|strong="H3318"\w* \w brought|strong="H3318"\w* us \w to|strong="H3318"\w* \w the|strong="H3318"\w* \w place|strong="H7218"\w* \w of|strong="H7218"\w* \w abundance|strong="H7310"\w*. +\q1 +\v 13 \w I|strong="H1004"\w* \w will|strong="H1004"\w* come into \w your|strong="H7999"\w* \w temple|strong="H1004"\w* \w with|strong="H1004"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w*. +\q2 \w I|strong="H1004"\w* \w will|strong="H1004"\w* \w pay|strong="H7999"\w* \w my|strong="H7999"\w* \w vows|strong="H5088"\w* \w to|strong="H1004"\w* \w you|strong="H7999"\w*, +\v 14 which \w my|strong="H1696"\w* \w lips|strong="H8193"\w* \w promised|strong="H1696"\w*, +\q2 \w and|strong="H6310"\w* \w my|strong="H1696"\w* \w mouth|strong="H6310"\w* \w spoke|strong="H1696"\w*, \w when|strong="H1696"\w* \w I|strong="H6862"\w* \w was|strong="H6310"\w* \w in|strong="H1696"\w* \w distress|strong="H6862"\w*. +\q1 +\v 15 \w I|strong="H6213"\w* \w will|strong="H6213"\w* \w offer|strong="H5927"\w* \w to|strong="H5927"\w* \w you|strong="H6213"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w of|strong="H6213"\w* \w fat|strong="H4220"\w* animals, +\q2 \w with|strong="H5973"\w* \w the|strong="H6213"\w* \w offering|strong="H5930"\w* \w of|strong="H6213"\w* \w rams|strong="H6260"\w*, +\q2 \w I|strong="H6213"\w* \w will|strong="H6213"\w* \w offer|strong="H5927"\w* \w bulls|strong="H1241"\w* \w with|strong="H5973"\w* \w goats|strong="H6260"\w*. \qs \+w Selah|strong="H5542"\+w*.\qs* +\q1 +\v 16 \w Come|strong="H3212"\w* \w and|strong="H3212"\w* \w hear|strong="H8085"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* \w who|strong="H3605"\w* \w fear|strong="H3373"\w* God. +\q2 \w I|strong="H5315"\w* \w will|strong="H5315"\w* \w declare|strong="H5608"\w* \w what|strong="H6213"\w* \w he|strong="H6213"\w* \w has|strong="H5315"\w* \w done|strong="H6213"\w* \w for|strong="H6213"\w* \w my|strong="H8085"\w* \w soul|strong="H5315"\w*. +\q1 +\v 17 \w I|strong="H8478"\w* \w cried|strong="H7121"\w* \w to|strong="H7121"\w* \w him|strong="H7121"\w* \w with|strong="H6310"\w* \w my|strong="H8478"\w* \w mouth|strong="H6310"\w*. +\q2 \w He|strong="H7121"\w* \w was|strong="H6310"\w* extolled \w with|strong="H6310"\w* \w my|strong="H8478"\w* \w tongue|strong="H3956"\w*. +\q1 +\v 18 \w If|strong="H7200"\w* \w I|strong="H7200"\w* cherished sin \w in|strong="H8085"\w* \w my|strong="H8085"\w* \w heart|strong="H3820"\w*, +\q2 \w the|strong="H8085"\w* Lord wouldn’t \w have|strong="H7200"\w* \w listened|strong="H8085"\w*. +\q1 +\v 19 \w But|strong="H8085"\w* most \w certainly|strong="H8085"\w*, God has \w listened|strong="H8085"\w*. +\q2 He has \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w my|strong="H8085"\w* \w prayer|strong="H8605"\w*. +\q1 +\v 20 \w Blessed|strong="H1288"\w* \w be|strong="H3808"\w* \w God|strong="H3808"\w*, \w who|strong="H5493"\w* has \w not|strong="H3808"\w* \w turned|strong="H5493"\w* \w away|strong="H5493"\w* \w my|strong="H5493"\w* \w prayer|strong="H8605"\w*, +\q2 \w nor|strong="H3808"\w* \w his|strong="H5493"\w* loving \w kindness|strong="H2617"\w* \w from|strong="H5493"\w* \w me|strong="H1288"\w*. +\c 67 +\d For the Chief Musician. With stringed instruments. A Psalm. A song. +\q1 +\v 1 May God \w be|strong="H7892"\w* merciful \w to|strong="H7892"\w* us, bless us, +\q2 and cause his face \w to|strong="H7892"\w* shine \w on|strong="H5329"\w* us. \qs Selah.\qs* +\q1 +\v 2 \w That|strong="H1288"\w* \w your|strong="H6440"\w* \w way|strong="H6440"\w* \w may|strong="H1288"\w* \w be|strong="H1288"\w* known \w on|strong="H6440"\w* earth, +\q2 \w and|strong="H6440"\w* \w your|strong="H6440"\w* salvation among \w all|strong="H1288"\w* \w nations|strong="H6440"\w*, +\q1 +\v 3 let \w the|strong="H3605"\w* peoples praise \w you|strong="H3605"\w*, God. +\q2 Let \w all|strong="H3605"\w* \w the|strong="H3605"\w* peoples praise \w you|strong="H3605"\w*. +\q1 +\v 4 Oh let \w the|strong="H3605"\w* \w nations|strong="H5971"\w* \w be|strong="H5971"\w* glad \w and|strong="H5971"\w* sing \w for|strong="H3605"\w* joy, +\q2 \w for|strong="H3605"\w* \w you|strong="H3605"\w* \w will|strong="H5971"\w* judge \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w with|strong="H5971"\w* equity, +\q2 \w and|strong="H5971"\w* govern \w the|strong="H3605"\w* \w nations|strong="H5971"\w* \w on|strong="H3605"\w* earth. \qs Selah.\qs* +\q1 +\v 5 \w Let|strong="H8055"\w* \w the|strong="H3588"\w* \w peoples|strong="H5971"\w* \w praise|strong="H3588"\w* \w you|strong="H3588"\w*, God. +\q2 \w Let|strong="H8055"\w* all \w the|strong="H3588"\w* \w peoples|strong="H5971"\w* \w praise|strong="H3588"\w* \w you|strong="H3588"\w*. +\q1 +\v 6 \w The|strong="H3605"\w* earth \w has|strong="H3605"\w* yielded \w its|strong="H3605"\w* increase. +\q2 God, even \w our|strong="H3605"\w* \w own|strong="H5971"\w* God, \w will|strong="H5971"\w* bless \w us|strong="H5971"\w*. +\q1 +\v 7 \w God|strong="H5414"\w* \w will|strong="H5414"\w* \w bless|strong="H1288"\w* \w us|strong="H5414"\w*. +\q2 \w All|strong="H5414"\w* \w the|strong="H5414"\w* ends \w of|strong="H1288"\w* \w the|strong="H5414"\w* earth shall fear \w him|strong="H5414"\w*. +\c 68 +\d For the Chief Musician. A Psalm by David. A song. +\q1 +\v 1 Let God arise! +\q2 Let \w his|strong="H1732"\w* enemies \w be|strong="H1732"\w* scattered! +\q2 Let them who hate \w him|strong="H1732"\w* \w also|strong="H1732"\w* flee before \w him|strong="H1732"\w*. +\q1 +\v 2 \w As|strong="H6440"\w* smoke \w is|strong="H6440"\w* \w driven|strong="H5127"\w* \w away|strong="H5127"\w*, +\q2 \w so|strong="H6965"\w* \w drive|strong="H6327"\w* \w them|strong="H6440"\w* \w away|strong="H5127"\w*. +\q1 \w As|strong="H6440"\w* wax melts \w before|strong="H6440"\w* \w the|strong="H6440"\w* fire, +\q2 \w so|strong="H6965"\w* let \w the|strong="H6440"\w* wicked perish \w at|strong="H6440"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H6440"\w* God. +\q1 +\v 3 \w But|strong="H7563"\w* let \w the|strong="H6440"\w* righteous \w be|strong="H7563"\w* glad. +\q2 Let \w them|strong="H6440"\w* rejoice \w before|strong="H6440"\w* God. +\q2 Yes, let \w them|strong="H6440"\w* rejoice \w with|strong="H6440"\w* gladness. +\q1 +\v 4 Sing \w to|strong="H6440"\w* God! Sing praises \w to|strong="H6440"\w* \w his|strong="H6440"\w* name! +\q2 Extol \w him|strong="H6440"\w* \w who|strong="H6662"\w* rides \w on|strong="H6440"\w* \w the|strong="H6440"\w* clouds: +\q1 \w to|strong="H6440"\w* \w Yah|strong="H3068"\w*, \w his|strong="H6440"\w* name! +\q2 \w Rejoice|strong="H8055"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*! +\q1 +\v 5 \w A|strong="H3068"\w* father \w of|strong="H6440"\w* \w the|strong="H6440"\w* fatherless, \w and|strong="H6440"\w* \w a|strong="H3068"\w* defender \w of|strong="H6440"\w* \w the|strong="H6440"\w* widows, +\q2 \w is|strong="H8034"\w* \w God|strong="H3050"\w* \w in|strong="H6440"\w* \w his|strong="H6440"\w* holy habitation. +\q1 +\v 6 God sets \w the|strong="H6944"\w* lonely \w in|strong="H4583"\w* families. +\q1 He brings out \w the|strong="H6944"\w* prisoners \w with|strong="H6944"\w* singing, +\q2 but \w the|strong="H6944"\w* rebellious dwell \w in|strong="H4583"\w* \w a|strong="H3068"\w* sun-scorched land. +\b +\q1 +\v 7 God, \w when|strong="H3318"\w* \w you|strong="H3318"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w before|strong="H3427"\w* \w your|strong="H3318"\w* \w people|strong="H3427"\w*, +\q2 \w when|strong="H3318"\w* \w you|strong="H3318"\w* \w marched|strong="H3318"\w* \w through|strong="H3318"\w* \w the|strong="H3318"\w* wilderness... \qs Selah.\qs* +\q1 +\v 8 \w The|strong="H6440"\w* earth trembled. +\q2 \w The|strong="H6440"\w* sky \w also|strong="H5971"\w* poured \w down|strong="H6440"\w* rain \w at|strong="H6440"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* God \w of|strong="H6440"\w* Sinai— +\q2 \w at|strong="H6440"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H6440"\w* God, \w the|strong="H6440"\w* God \w of|strong="H6440"\w* \w Israel|strong="H5971"\w*. +\q1 +\v 9 \w You|strong="H6440"\w*, \w God|strong="H8064"\w*, sent \w a|strong="H3068"\w* plentiful rain. +\q2 \w You|strong="H6440"\w* confirmed \w your|strong="H6440"\w* inheritance \w when|strong="H3478"\w* \w it|strong="H6440"\w* \w was|strong="H3478"\w* weary. +\q1 +\v 10 \w Your|strong="H3559"\w* congregation lived therein. +\q2 \w You|strong="H5159"\w*, God, \w prepared|strong="H3559"\w* \w your|strong="H3559"\w* goodness \w for|strong="H3559"\w* \w the|strong="H3559"\w* poor. +\q1 +\v 11 \w The|strong="H3559"\w* Lord announced \w the|strong="H3559"\w* word. +\q2 \w The|strong="H3559"\w* \w ones|strong="H2896"\w* \w who|strong="H3427"\w* proclaim \w it|strong="H3559"\w* \w are|strong="H2896"\w* \w a|strong="H3068"\w* \w great|strong="H2896"\w* \w company|strong="H2416"\w*. +\q1 +\v 12 “Kings \w of|strong="H6635"\w* \w armies|strong="H6635"\w* flee! \w They|strong="H5414"\w* flee!” +\q2 She \w who|strong="H7227"\w* waits \w at|strong="H5414"\w* home divides \w the|strong="H5414"\w* plunder, +\q2 +\v 13 \w while|strong="H1004"\w* \w you|strong="H1004"\w* sleep among \w the|strong="H2505"\w* camp fires, +\q2 \w the|strong="H2505"\w* wings \w of|strong="H4428"\w* \w a|strong="H3068"\w* dove sheathed \w with|strong="H1004"\w* silver, +\q2 her feathers \w with|strong="H1004"\w* shining gold. +\q1 +\v 14 \w When|strong="H7901"\w* \w the|strong="H7901"\w* Almighty scattered kings \w in|strong="H7901"\w* \w her|strong="H7901"\w*, +\q2 it snowed \w on|strong="H7901"\w* Zalmon. +\q1 +\v 15 \w The|strong="H6566"\w* mountains \w of|strong="H4428"\w* Bashan \w are|strong="H4428"\w* majestic mountains. +\q2 \w The|strong="H6566"\w* mountains \w of|strong="H4428"\w* Bashan \w are|strong="H4428"\w* rugged. +\q1 +\v 16 Why do \w you|strong="H2022"\w* look \w in|strong="H2022"\w* envy, \w you|strong="H2022"\w* rugged \w mountains|strong="H2022"\w*, +\q2 \w at|strong="H2022"\w* \w the|strong="H2022"\w* \w mountain|strong="H2022"\w* where God chooses \w to|strong="H2022"\w* reign? +\q2 Yes, \w Yahweh|strong="H3068"\w* \w will|strong="H2022"\w* dwell \w there|strong="H2022"\w* forever. +\q1 +\v 17 \w The|strong="H3068"\w* chariots \w of|strong="H3068"\w* \w God|strong="H3068"\w* \w are|strong="H4100"\w* tens \w of|strong="H3068"\w* thousands \w and|strong="H3068"\w* thousands \w of|strong="H3068"\w* thousands. +\q2 \w The|strong="H3068"\w* \w Lord|strong="H3068"\w* \w is|strong="H3068"\w* \w among|strong="H3427"\w* \w them|strong="H3427"\w*, \w from|strong="H3068"\w* Sinai, into \w the|strong="H3068"\w* sanctuary. +\q1 +\v 18 You \w have|strong="H6944"\w* ascended \w on|strong="H7393"\w* high. +\q2 You \w have|strong="H6944"\w* led away captives. +\q1 You \w have|strong="H6944"\w* received \w gifts|strong="H6944"\w* among people, +\q2 yes, among \w the|strong="H6944"\w* rebellious also, \w that|strong="H6944"\w* \w Yah|strong="H3068"\w* God might dwell there. +\b +\q1 +\v 19 Blessed be \w the|strong="H3947"\w* \w Lord|strong="H3050"\w*, who daily bears \w our|strong="H3947"\w* burdens, +\q2 even \w the|strong="H3947"\w* \w God|strong="H3050"\w* who \w is|strong="H4791"\w* \w our|strong="H3947"\w* salvation. \qs Selah.\qs* +\q1 +\v 20 God \w is|strong="H3117"\w* \w to|strong="H3117"\w* \w us|strong="H3117"\w* \w a|strong="H3068"\w* God \w of|strong="H3117"\w* \w deliverance|strong="H3444"\w*. +\q2 \w To|strong="H3117"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3117"\w* Lord, belongs escape \w from|strong="H3117"\w* death. +\q1 +\v 21 But \w God|strong="H3069"\w* \w will|strong="H3069"\w* strike through \w the|strong="H3069"\w* head \w of|strong="H4194"\w* his enemies, +\q2 \w the|strong="H3069"\w* hairy scalp \w of|strong="H4194"\w* such \w a|strong="H3068"\w* one as still continues \w in|strong="H4194"\w* his guiltiness. +\q1 +\v 22 \w The|strong="H1980"\w* Lord said, “\w I|strong="H1980"\w* will \w bring|strong="H1980"\w* \w you|strong="H1980"\w* again \w from|strong="H1980"\w* Bashan, +\q2 \w I|strong="H1980"\w* will \w bring|strong="H1980"\w* \w you|strong="H1980"\w* again \w from|strong="H1980"\w* \w the|strong="H1980"\w* depths \w of|strong="H7218"\w* \w the|strong="H1980"\w* sea, +\q1 +\v 23 \w that|strong="H7725"\w* \w you|strong="H7725"\w* \w may|strong="H7725"\w* crush \w them|strong="H7725"\w*, dipping \w your|strong="H7725"\w* foot \w in|strong="H7725"\w* blood, +\q2 \w that|strong="H7725"\w* \w the|strong="H7725"\w* tongues \w of|strong="H3220"\w* \w your|strong="H7725"\w* dogs \w may|strong="H7725"\w* \w have|strong="H1316"\w* \w their|strong="H7725"\w* portion \w from|strong="H7725"\w* \w your|strong="H7725"\w* enemies.” +\q1 +\v 24 \w They|strong="H7272"\w* \w have|strong="H7272"\w* seen \w your|strong="H4480"\w* processions, God, +\q2 even \w the|strong="H4480"\w* processions \w of|strong="H4480"\w* \w my|strong="H4480"\w* God, \w my|strong="H4480"\w* \w King|strong="H4616"\w*, \w into|strong="H4480"\w* \w the|strong="H4480"\w* sanctuary. +\q1 +\v 25 \w The|strong="H7200"\w* singers \w went|strong="H4428"\w* \w before|strong="H7200"\w*, \w the|strong="H7200"\w* minstrels followed \w after|strong="H7200"\w*, +\q2 \w among|strong="H7200"\w* \w the|strong="H7200"\w* ladies playing \w with|strong="H4428"\w* tambourines, +\q1 +\v 26 “Bless God \w in|strong="H8432"\w* \w the|strong="H8432"\w* congregations, +\q2 even \w the|strong="H8432"\w* Lord \w in|strong="H8432"\w* \w the|strong="H8432"\w* assembly \w of|strong="H8432"\w* Israel!” +\q1 +\v 27 \w There|strong="H3068"\w* \w is|strong="H3068"\w* little Benjamin, \w their|strong="H3068"\w* ruler, +\q2 \w the|strong="H3068"\w* princes \w of|strong="H3068"\w* Judah, \w their|strong="H3068"\w* council, +\q2 \w the|strong="H3068"\w* princes \w of|strong="H3068"\w* Zebulun, \w and|strong="H3478"\w* \w the|strong="H3068"\w* princes \w of|strong="H3068"\w* Naphtali. +\b +\q1 +\v 28 \w Your|strong="H8033"\w* God \w has|strong="H3063"\w* commanded \w your|strong="H8033"\w* strength. +\q2 Strengthen, God, \w that|strong="H3063"\w* \w which|strong="H8033"\w* you \w have|strong="H3063"\w* done \w for|strong="H8033"\w* us. +\q1 +\v 29 Because \w of|strong="H6466"\w* \w your|strong="H6680"\w* temple \w at|strong="H6680"\w* Jerusalem, +\q2 kings \w shall|strong="H5797"\w* bring presents \w to|strong="H6680"\w* \w you|strong="H6680"\w*. +\q1 +\v 30 Rebuke \w the|strong="H5921"\w* wild animal \w of|strong="H4428"\w* \w the|strong="H5921"\w* reeds, +\q2 \w the|strong="H5921"\w* multitude \w of|strong="H4428"\w* \w the|strong="H5921"\w* bulls \w with|strong="H5921"\w* \w the|strong="H5921"\w* calves \w of|strong="H4428"\w* \w the|strong="H5921"\w* peoples. +\q1 Trample \w under|strong="H5921"\w* foot \w the|strong="H5921"\w* bars \w of|strong="H4428"\w* silver. +\q2 Scatter \w the|strong="H5921"\w* nations \w who|strong="H4428"\w* delight \w in|strong="H5921"\w* war. +\q1 +\v 31 Princes \w shall|strong="H5971"\w* \w come|strong="H5971"\w* out \w of|strong="H5971"\w* Egypt. +\q2 Ethiopia \w shall|strong="H5971"\w* hurry \w to|strong="H5971"\w* stretch out her hands \w to|strong="H5971"\w* God. +\q1 +\v 32 Sing \w to|strong="H3027"\w* \w God|strong="H3027"\w*, \w you|strong="H4480"\w* kingdoms \w of|strong="H3027"\w* \w the|strong="H4480"\w* earth! +\q2 Sing praises \w to|strong="H3027"\w* \w the|strong="H4480"\w* Lord—\qs Selah—\qs* +\q1 +\v 33 \w to|strong="H4467"\w* him \w who|strong="H7891"\w* rides on \w the|strong="H2167"\w* heaven \w of|strong="H4467"\w* heavens, which \w are|strong="H4467"\w* \w of|strong="H4467"\w* old; +\q2 \w behold|strong="H7891"\w*, he utters \w his|strong="H7891"\w* voice, \w a|strong="H3068"\w* mighty voice. +\q1 +\v 34 \w Ascribe|strong="H5414"\w* \w strength|strong="H5797"\w* \w to|strong="H5414"\w* \w God|strong="H5414"\w*! +\q2 \w His|strong="H5414"\w* excellency \w is|strong="H6963"\w* \w over|strong="H5414"\w* \w Israel|strong="H8064"\w*, +\q2 \w his|strong="H5414"\w* \w strength|strong="H5797"\w* \w is|strong="H6963"\w* \w in|strong="H5414"\w* \w the|strong="H5414"\w* skies. +\q1 +\v 35 \w You|strong="H5414"\w* \w are|strong="H3478"\w* awesome, \w God|strong="H5414"\w*, \w in|strong="H5921"\w* \w your|strong="H5414"\w* sanctuaries. +\q2 \w The|strong="H5921"\w* \w God|strong="H5414"\w* \w of|strong="H5921"\w* \w Israel|strong="H3478"\w* \w gives|strong="H5414"\w* \w strength|strong="H5797"\w* \w and|strong="H3478"\w* \w power|strong="H5797"\w* \w to|strong="H3478"\w* \w his|strong="H5414"\w* people. +\q2 Praise \w be|strong="H3478"\w* \w to|strong="H3478"\w* \w God|strong="H5414"\w*! +\c 69 +\d For the Chief Musician. To the tune of “Lilies.” By David. +\q1 +\v 1 Save \w me|strong="H5921"\w*, God, +\q2 \w for|strong="H5921"\w* \w the|strong="H5921"\w* waters \w have|strong="H1732"\w* come \w up|strong="H5921"\w* \w to|strong="H5921"\w* \w my|strong="H1732"\w* neck! +\q1 +\v 2 \w I|strong="H3588"\w* sink \w in|strong="H5315"\w* deep mire, where \w there|strong="H5704"\w* \w is|strong="H5315"\w* no foothold. +\q2 \w I|strong="H3588"\w* \w have|strong="H3588"\w* come \w into|strong="H4325"\w* deep \w waters|strong="H4325"\w*, where \w the|strong="H3588"\w* floods overflow \w me|strong="H5315"\w*. +\q1 +\v 3 I am weary \w with|strong="H4325"\w* my crying. +\q2 My throat \w is|strong="H4325"\w* dry. +\q2 My eyes fail looking \w for|strong="H4325"\w* my God. +\q1 +\v 4 Those \w who|strong="H7121"\w* hate \w me|strong="H7121"\w* without \w a|strong="H3068"\w* \w cause|strong="H7121"\w* \w are|strong="H5869"\w* more than \w the|strong="H7121"\w* hairs \w of|strong="H5869"\w* \w my|strong="H3615"\w* head. +\q2 Those \w who|strong="H7121"\w* want \w to|strong="H7121"\w* cut \w me|strong="H7121"\w* \w off|strong="H3615"\w*, being \w my|strong="H3615"\w* enemies wrongfully, \w are|strong="H5869"\w* mighty. +\q2 \w I|strong="H5869"\w* \w have|strong="H5869"\w* \w to|strong="H7121"\w* restore what \w I|strong="H5869"\w* didn’t take \w away|strong="H3615"\w*. +\q1 +\v 5 \w God|strong="H3808"\w*, \w you|strong="H7725"\w* know \w my|strong="H7725"\w* foolishness. +\q2 \w My|strong="H7725"\w* sins aren’t hidden \w from|strong="H7725"\w* \w you|strong="H7725"\w*. +\q1 +\v 6 Don’t \w let|strong="H3808"\w* \w those|strong="H4480"\w* \w who|strong="H3045"\w* wait \w for|strong="H3045"\w* \w you|strong="H3045"\w* \w be|strong="H3808"\w* shamed \w through|strong="H4480"\w* \w me|strong="H4480"\w*, Lord \w Yahweh|strong="H3068"\w* \w of|strong="H4480"\w* \w Armies|strong="H3808"\w*. +\q2 Don’t \w let|strong="H3808"\w* \w those|strong="H4480"\w* \w who|strong="H3045"\w* \w seek|strong="H3808"\w* \w you|strong="H3045"\w* \w be|strong="H3808"\w* brought \w to|strong="H3045"\w* dishonor \w through|strong="H4480"\w* \w me|strong="H4480"\w*, \w God|strong="H3808"\w* \w of|strong="H4480"\w* Israel. +\q1 +\v 7 Because \w for|strong="H6960"\w* \w your|strong="H1245"\w* sake, \w I|strong="H3478"\w* \w have|strong="H3478"\w* borne \w reproach|strong="H3637"\w*. +\q2 \w Shame|strong="H3637"\w* \w has|strong="H3478"\w* covered \w my|strong="H1245"\w* face. +\q1 +\v 8 \w I|strong="H3588"\w* \w have|strong="H3588"\w* \w become|strong="H5375"\w* \w a|strong="H3068"\w* stranger \w to|strong="H5921"\w* \w my|strong="H5921"\w* brothers, +\q2 \w an|strong="H5375"\w* alien \w to|strong="H5921"\w* \w my|strong="H5921"\w* mother’s children. +\q1 +\v 9 \w For|strong="H1121"\w* \w the|strong="H1961"\w* zeal \w of|strong="H1121"\w* \w your|strong="H1961"\w* house consumes \w me|strong="H1961"\w*. +\q2 \w The|strong="H1961"\w* reproaches \w of|strong="H1121"\w* \w those|strong="H1121"\w* \w who|strong="H1121"\w* reproach \w you|strong="H2114"\w* \w have|strong="H1961"\w* \w fallen|strong="H1961"\w* \w on|strong="H1961"\w* \w me|strong="H1961"\w*. +\q1 +\v 10 \w When|strong="H3588"\w* \w I|strong="H3588"\w* wept \w and|strong="H1004"\w* \w I|strong="H3588"\w* fasted, +\q2 \w that|strong="H3588"\w* \w was|strong="H1004"\w* \w to|strong="H5921"\w* \w my|strong="H5921"\w* \w reproach|strong="H2781"\w*. +\q1 +\v 11 \w When|strong="H1961"\w* \w I|strong="H5315"\w* \w made|strong="H1961"\w* sackcloth \w my|strong="H1961"\w* clothing, +\q2 \w I|strong="H5315"\w* \w became|strong="H1961"\w* \w a|strong="H3068"\w* byword \w to|strong="H1961"\w* \w them|strong="H1961"\w*. +\q1 +\v 12 \w Those|strong="H1992"\w* \w who|strong="H1992"\w* \w sit|strong="H5414"\w* \w in|strong="H5414"\w* \w the|strong="H5414"\w* gate talk \w about|strong="H1961"\w* \w me|strong="H5414"\w*. +\q2 \w I|strong="H5414"\w* \w am|strong="H1961"\w* \w the|strong="H5414"\w* song \w of|strong="H4912"\w* \w the|strong="H5414"\w* drunkards. +\q1 +\v 13 But \w as|strong="H3427"\w* \w for|strong="H3427"\w* me, \w my|strong="H8354"\w* prayer \w is|strong="H8179"\w* \w to|strong="H3427"\w* \w you|strong="H3427"\w*, \w Yahweh|strong="H3068"\w*, \w in|strong="H3427"\w* \w an|strong="H3427"\w* acceptable time. +\q2 God, \w in|strong="H3427"\w* \w the|strong="H8354"\w* abundance \w of|strong="H3427"\w* \w your|strong="H8354"\w* loving kindness, answer me \w in|strong="H3427"\w* \w the|strong="H8354"\w* truth \w of|strong="H3427"\w* \w your|strong="H8354"\w* salvation. +\q1 +\v 14 Deliver \w me|strong="H6030"\w* out \w of|strong="H3068"\w* \w the|strong="H3068"\w* mire, \w and|strong="H3068"\w* don’t \w let|strong="H6256"\w* \w me|strong="H6030"\w* sink. +\q2 \w Let|strong="H6256"\w* \w me|strong="H6030"\w* \w be|strong="H3068"\w* \w delivered|strong="H3068"\w* \w from|strong="H3068"\w* those \w who|strong="H3068"\w* hate \w me|strong="H6030"\w*, \w and|strong="H3068"\w* out \w of|strong="H3068"\w* \w the|strong="H3068"\w* deep waters. +\q1 +\v 15 Don’t let \w the|strong="H5337"\w* \w flood|strong="H4325"\w* \w waters|strong="H4325"\w* overwhelm \w me|strong="H8130"\w*, +\q2 \w neither|strong="H5337"\w* let \w the|strong="H5337"\w* \w deep|strong="H4615"\w* swallow \w me|strong="H8130"\w* up. +\q2 Don’t let \w the|strong="H5337"\w* pit shut its mouth \w on|strong="H4325"\w* \w me|strong="H8130"\w*. +\q1 +\v 16 Answer \w me|strong="H5921"\w*, \w Yahweh|strong="H3068"\w*, \w for|strong="H5921"\w* \w your|strong="H5921"\w* loving kindness \w is|strong="H6310"\w* good. +\q2 \w According|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* multitude \w of|strong="H4325"\w* \w your|strong="H5921"\w* tender mercies, turn \w to|strong="H5921"\w* \w me|strong="H5921"\w*. +\q1 +\v 17 Don’t hide \w your|strong="H3068"\w* \w face|strong="H6437"\w* \w from|strong="H3068"\w* \w your|strong="H3068"\w* servant, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w in|strong="H3068"\w* distress. +\q2 \w Answer|strong="H6030"\w* \w me|strong="H6030"\w* speedily! +\q1 +\v 18 Draw \w near|strong="H6440"\w* \w to|strong="H6440"\w* \w my|strong="H5641"\w* soul \w and|strong="H6030"\w* redeem \w it|strong="H3588"\w*. +\q2 Ransom \w me|strong="H6440"\w* \w because|strong="H3588"\w* \w of|strong="H6440"\w* \w my|strong="H5641"\w* \w enemies|strong="H6887"\w*. +\q1 +\v 19 \w You|strong="H5315"\w* know \w my|strong="H6299"\w* reproach, \w my|strong="H6299"\w* shame, \w and|strong="H7126"\w* \w my|strong="H6299"\w* dishonor. +\q2 \w My|strong="H6299"\w* adversaries \w are|strong="H5315"\w* \w all|strong="H1350"\w* before \w you|strong="H5315"\w*. +\q1 +\v 20 \w Reproach|strong="H2781"\w* \w has|strong="H3045"\w* broken \w my|strong="H3605"\w* heart, \w and|strong="H3045"\w* \w I|strong="H3045"\w* am \w full|strong="H3605"\w* \w of|strong="H3605"\w* heaviness. +\q2 \w I|strong="H3045"\w* looked \w for|strong="H3605"\w* \w some|strong="H3605"\w* \w to|strong="H3045"\w* \w take|strong="H3045"\w* pity, \w but|strong="H3605"\w* \w there|strong="H3605"\w* \w was|strong="H3605"\w* \w none|strong="H3605"\w*; +\q2 \w for|strong="H3605"\w* comforters, \w but|strong="H3605"\w* \w I|strong="H3045"\w* \w found|strong="H3045"\w* \w none|strong="H3605"\w*. +\q1 +\v 21 \w They|strong="H3808"\w* \w also|strong="H3820"\w* gave \w me|strong="H4672"\w* poison \w for|strong="H6960"\w* \w my|strong="H4672"\w* food. +\q2 \w In|strong="H4672"\w* \w my|strong="H4672"\w* thirst, \w they|strong="H3808"\w* gave \w me|strong="H4672"\w* vinegar \w to|strong="H3820"\w* drink. +\q1 +\v 22 \w Let|strong="H5414"\w* \w their|strong="H5414"\w* table before \w them|strong="H5414"\w* become \w a|strong="H3068"\w* snare. +\q2 \w May|strong="H5414"\w* \w it|strong="H5414"\w* become \w a|strong="H3068"\w* retribution \w and|strong="H7219"\w* \w a|strong="H3068"\w* trap. +\q1 +\v 23 \w Let|strong="H1961"\w* \w their|strong="H6440"\w* eyes \w be|strong="H1961"\w* darkened, \w so|strong="H1961"\w* \w that|strong="H1961"\w* \w they|strong="H6440"\w* can’t see. +\q2 \w Let|strong="H1961"\w* \w their|strong="H6440"\w* backs \w be|strong="H1961"\w* continually bent. +\q1 +\v 24 Pour \w out|strong="H7200"\w* \w your|strong="H7200"\w* indignation \w on|strong="H7200"\w* \w them|strong="H7200"\w*. +\q2 Let \w the|strong="H7200"\w* fierceness \w of|strong="H5869"\w* \w your|strong="H7200"\w* anger overtake \w them|strong="H7200"\w*. +\q1 +\v 25 Let \w their|strong="H5921"\w* habitation \w be|strong="H2195"\w* desolate. +\q2 Let \w no|strong="H8210"\w* one dwell \w in|strong="H5921"\w* \w their|strong="H5921"\w* tents. +\q1 +\v 26 \w For|strong="H3427"\w* they persecute \w him|strong="H1961"\w* whom \w you|strong="H8074"\w* \w have|strong="H1961"\w* wounded. +\q2 They tell \w of|strong="H3427"\w* \w the|strong="H1961"\w* sorrow \w of|strong="H3427"\w* \w those|strong="H3427"\w* whom \w you|strong="H8074"\w* \w have|strong="H1961"\w* hurt. +\q1 +\v 27 Charge \w them|strong="H5221"\w* \w with|strong="H2491"\w* crime upon crime. +\q2 Don’t let \w them|strong="H5221"\w* come into \w your|strong="H3588"\w* righteousness. +\q1 +\v 28 \w Let|strong="H5414"\w* \w them|strong="H5414"\w* \w be|strong="H5414"\w* blotted \w out|strong="H5414"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* book \w of|strong="H5921"\w* life, +\q2 \w and|strong="H6666"\w* \w not|strong="H5414"\w* \w be|strong="H5414"\w* written \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w righteous|strong="H6666"\w*. +\q1 +\v 29 \w But|strong="H6662"\w* I am \w in|strong="H3789"\w* pain \w and|strong="H6662"\w* distress. +\q2 Let \w your|strong="H5973"\w* salvation, God, protect \w me|strong="H5973"\w*. +\q1 +\v 30 \w I|strong="H3444"\w* \w will|strong="H3444"\w* praise \w the|strong="H7682"\w* name \w of|strong="H3444"\w* God \w with|strong="H6041"\w* \w a|strong="H3068"\w* song, +\q2 \w and|strong="H6041"\w* \w will|strong="H3444"\w* magnify \w him|strong="H7682"\w* \w with|strong="H6041"\w* thanksgiving. +\q1 +\v 31 \w It|strong="H8034"\w* \w will|strong="H8034"\w* please \w Yahweh|strong="H3068"\w* better than an ox, +\q2 or \w a|strong="H3068"\w* bull that has horns \w and|strong="H8034"\w* hoofs. +\q1 +\v 32 \w The|strong="H3068"\w* humble \w have|strong="H3068"\w* seen \w it|strong="H3068"\w*, \w and|strong="H3068"\w* \w are|strong="H3068"\w* \w glad|strong="H3190"\w*. +\q2 \w You|strong="H3190"\w* \w who|strong="H3068"\w* seek after \w God|strong="H3068"\w*, let \w your|strong="H3068"\w* heart live. +\q1 +\v 33 \w For|strong="H2421"\w* \w Yahweh|strong="H3068"\w* hears \w the|strong="H7200"\w* needy, +\q2 \w and|strong="H7200"\w* doesn’t despise \w his|strong="H7200"\w* captive \w people|strong="H7200"\w*. +\q1 +\v 34 \w Let|strong="H3808"\w* heaven \w and|strong="H3068"\w* earth \w praise|strong="H3588"\w* \w him|strong="H8085"\w*; +\q2 \w the|strong="H8085"\w* seas, \w and|strong="H3068"\w* everything \w that|strong="H3588"\w* moves therein! +\q1 +\v 35 \w For|strong="H3605"\w* \w God|strong="H8064"\w* \w will|strong="H8064"\w* save Zion, \w and|strong="H8064"\w* build \w the|strong="H3605"\w* cities \w of|strong="H3605"\w* Judah. +\q2 \w They|strong="H3605"\w* \w shall|strong="H8064"\w* settle \w there|strong="H3605"\w*, \w and|strong="H8064"\w* own \w it|strong="H3605"\w*. +\q1 +\v 36 \w The|strong="H3588"\w* \w children|strong="H1129"\w* \w also|strong="H3063"\w* \w of|strong="H3427"\w* \w his|strong="H3588"\w* \w servants|strong="H8033"\w* \w shall|strong="H5892"\w* \w inherit|strong="H3423"\w* \w it|strong="H3588"\w*. +\q2 \w Those|strong="H3427"\w* \w who|strong="H3427"\w* love \w his|strong="H3588"\w* name \w shall|strong="H5892"\w* \w dwell|strong="H3427"\w* \w therein|strong="H8033"\w*. +\c 70 +\d For the Chief Musician. By David. A reminder. +\q1 +\v 1 Hurry, God, \w to|strong="H1732"\w* deliver \w me|strong="H2142"\w*. +\q2 \w Come|strong="H2142"\w* quickly \w to|strong="H1732"\w* help \w me|strong="H2142"\w*, \w Yahweh|strong="H3068"\w*. +\q1 +\v 2 Let \w them|strong="H3068"\w* \w be|strong="H3068"\w* disappointed \w and|strong="H3068"\w* confounded \w who|strong="H3068"\w* seek \w my|strong="H3068"\w* soul. +\q2 Let those \w who|strong="H3068"\w* desire \w my|strong="H3068"\w* ruin \w be|strong="H3068"\w* \w turned|strong="H3068"\w* back \w in|strong="H3068"\w* disgrace. +\q1 +\v 3 \w Let|strong="H5315"\w* them \w be|strong="H5315"\w* \w turned|strong="H5472"\w* because \w of|strong="H5315"\w* \w their|strong="H1245"\w* \w shame|strong="H3637"\w* +\q2 \w who|strong="H5315"\w* say, “Aha! Aha!” +\q1 +\v 4 \w Let|strong="H7725"\w* \w all|strong="H5921"\w* \w those|strong="H5921"\w* who seek \w you|strong="H5921"\w* rejoice \w and|strong="H7725"\w* \w be|strong="H7725"\w* glad \w in|strong="H5921"\w* \w you|strong="H5921"\w*. +\q2 \w Let|strong="H7725"\w* \w those|strong="H5921"\w* who love \w your|strong="H5921"\w* salvation continually \w say|strong="H7725"\w*, +\q2 “\w Let|strong="H7725"\w* God \w be|strong="H7725"\w* exalted!” +\q1 +\v 5 \w But|strong="H3605"\w* \w I|strong="H3605"\w* am poor \w and|strong="H8055"\w* needy. +\q2 Come \w to|strong="H1245"\w* \w me|strong="H1245"\w* quickly, God. +\q1 \w You|strong="H3605"\w* \w are|strong="H1245"\w* \w my|strong="H3605"\w* \w help|strong="H3444"\w* \w and|strong="H8055"\w* \w my|strong="H3605"\w* \w deliverer|strong="H3444"\w*. +\q2 \w Yahweh|strong="H3068"\w*, don’t delay. +\b +\c 71 +\q1 +\v 1 \w In|strong="H3068"\w* \w you|strong="H5769"\w*, \w Yahweh|strong="H3068"\w*, \w I|strong="H3068"\w* \w take|strong="H2620"\w* \w refuge|strong="H2620"\w*. +\q2 \w Never|strong="H5769"\w* let \w me|strong="H5769"\w* \w be|strong="H3068"\w* disappointed. +\q1 +\v 2 \w Deliver|strong="H5337"\w* \w me|strong="H5337"\w* \w in|strong="H5186"\w* \w your|strong="H5186"\w* \w righteousness|strong="H6666"\w*, \w and|strong="H6666"\w* \w rescue|strong="H5337"\w* \w me|strong="H5337"\w*. +\q2 \w Turn|strong="H5186"\w* \w your|strong="H5186"\w* ear \w to|strong="H5186"\w* \w me|strong="H5337"\w*, \w and|strong="H6666"\w* \w save|strong="H3467"\w* \w me|strong="H5337"\w*. +\q1 +\v 3 \w Be|strong="H1961"\w* \w to|strong="H1961"\w* \w me|strong="H3467"\w* \w a|strong="H3068"\w* \w rock|strong="H6697"\w* \w of|strong="H6697"\w* refuge \w to|strong="H1961"\w* \w which|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H1961"\w* \w always|strong="H8548"\w* \w go|strong="H1961"\w*. +\q2 \w Give|strong="H6680"\w* \w the|strong="H3588"\w* \w command|strong="H6680"\w* \w to|strong="H1961"\w* \w save|strong="H3467"\w* \w me|strong="H3467"\w*, +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H1961"\w* \w my|strong="H1961"\w* \w rock|strong="H6697"\w* \w and|strong="H6697"\w* \w my|strong="H1961"\w* \w fortress|strong="H4686"\w*. +\q1 +\v 4 \w Rescue|strong="H6403"\w* \w me|strong="H3027"\w*, \w my|strong="H3027"\w* \w God|strong="H3027"\w*, \w from|strong="H3027"\w* \w the|strong="H3027"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w wicked|strong="H7563"\w*, +\q2 \w from|strong="H3027"\w* \w the|strong="H3027"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w unrighteous|strong="H5765"\w* \w and|strong="H3027"\w* \w cruel|strong="H7563"\w* \w man|strong="H7563"\w*. +\q1 +\v 5 \w For|strong="H3588"\w* \w you|strong="H3588"\w* are \w my|strong="H3588"\w* \w hope|strong="H8615"\w*, \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w my|strong="H3588"\w* \w confidence|strong="H4009"\w* from \w my|strong="H3588"\w* \w youth|strong="H5271"\w*. +\q1 +\v 6 \w I|strong="H5921"\w* \w have|strong="H5921"\w* \w relied|strong="H5564"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w womb|strong="H4578"\w*. +\q2 \w You|strong="H5921"\w* \w are|strong="H4578"\w* \w he|strong="H5921"\w* who \w took|strong="H1491"\w* \w me|strong="H5921"\w* \w out|strong="H5921"\w* \w of|strong="H5921"\w* \w my|strong="H5921"\w* mother’s \w womb|strong="H4578"\w*. +\q2 \w I|strong="H5921"\w* will \w always|strong="H8548"\w* \w praise|strong="H8416"\w* \w you|strong="H5921"\w*. +\q1 +\v 7 \w I|strong="H1961"\w* \w am|strong="H1961"\w* \w a|strong="H3068"\w* \w marvel|strong="H4159"\w* \w to|strong="H1961"\w* \w many|strong="H7227"\w*, +\q2 \w but|strong="H1961"\w* \w you|strong="H1961"\w* \w are|strong="H7227"\w* \w my|strong="H1961"\w* \w strong|strong="H5797"\w* \w refuge|strong="H4268"\w*. +\q1 +\v 8 \w My|strong="H3605"\w* \w mouth|strong="H6310"\w* \w shall|strong="H3117"\w* \w be|strong="H3117"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w your|strong="H3605"\w* \w praise|strong="H8416"\w*, +\q2 \w with|strong="H4390"\w* \w your|strong="H3605"\w* \w honor|strong="H8597"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w* \w long|strong="H3117"\w*. +\q1 +\v 9 Don’t \w reject|strong="H5800"\w* \w me|strong="H7993"\w* \w in|strong="H3615"\w* \w my|strong="H3615"\w* \w old|strong="H2209"\w* \w age|strong="H2209"\w*. +\q2 Don’t \w forsake|strong="H5800"\w* \w me|strong="H7993"\w* \w when|strong="H6256"\w* \w my|strong="H3615"\w* \w strength|strong="H3581"\w* \w fails|strong="H3615"\w*. +\q1 +\v 10 \w For|strong="H3588"\w* \w my|strong="H8104"\w* enemies talk about \w me|strong="H5315"\w*. +\q2 \w Those|strong="H5315"\w* \w who|strong="H5315"\w* \w watch|strong="H8104"\w* \w for|strong="H3588"\w* \w my|strong="H8104"\w* \w soul|strong="H5315"\w* \w conspire|strong="H3289"\w* \w together|strong="H3162"\w*, +\q2 +\v 11 saying, “God \w has|strong="H3588"\w* \w forsaken|strong="H5800"\w* \w him|strong="H7291"\w*. +\q2 \w Pursue|strong="H7291"\w* \w and|strong="H7291"\w* \w take|strong="H8610"\w* \w him|strong="H7291"\w*, \w for|strong="H3588"\w* no \w one|strong="H3588"\w* \w will|strong="H7291"\w* \w rescue|strong="H5337"\w* \w him|strong="H7291"\w*.” +\q1 +\v 12 God, don’t \w be|strong="H4480"\w* \w far|strong="H7368"\w* \w from|strong="H4480"\w* \w me|strong="H4480"\w*. +\q2 \w My|strong="H4480"\w* God, hurry \w to|strong="H4480"\w* \w help|strong="H5833"\w* \w me|strong="H4480"\w*. +\q1 +\v 13 \w Let|strong="H5315"\w* \w my|strong="H1245"\w* \w accusers|strong="H7853"\w* \w be|strong="H5315"\w* disappointed \w and|strong="H5315"\w* \w consumed|strong="H3615"\w*. +\q2 \w Let|strong="H5315"\w* \w them|strong="H3615"\w* \w be|strong="H5315"\w* \w covered|strong="H5844"\w* \w with|strong="H5315"\w* \w disgrace|strong="H3639"\w* \w and|strong="H5315"\w* \w scorn|strong="H2781"\w* \w who|strong="H5315"\w* \w want|strong="H1245"\w* \w to|strong="H1245"\w* \w harm|strong="H7451"\w* \w me|strong="H5315"\w*. +\q1 +\v 14 \w But|strong="H3605"\w* \w I|strong="H5921"\w* \w will|strong="H3605"\w* \w always|strong="H3605"\w* \w hope|strong="H3176"\w*, +\q2 \w and|strong="H3254"\w* \w will|strong="H3605"\w* \w add|strong="H3254"\w* \w to|strong="H5921"\w* \w all|strong="H3605"\w* \w of|strong="H5921"\w* \w your|strong="H3605"\w* \w praise|strong="H8416"\w*. +\q1 +\v 15 \w My|strong="H3605"\w* \w mouth|strong="H6310"\w* \w will|strong="H3808"\w* \w tell|strong="H5608"\w* \w about|strong="H3045"\w* \w your|strong="H3605"\w* \w righteousness|strong="H6666"\w*, +\q2 \w and|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H3605"\w* \w salvation|strong="H8668"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w*, +\q2 \w though|strong="H3588"\w* \w I|strong="H3588"\w* don’t \w know|strong="H3045"\w* \w its|strong="H3605"\w* \w full|strong="H3117"\w* measure. +\q1 +\v 16 \w I|strong="H2142"\w* \w will|strong="H3069"\w* \w come|strong="H2142"\w* \w with|strong="H1369"\w* \w the|strong="H3069"\w* \w mighty|strong="H1369"\w* \w acts|strong="H1369"\w* \w of|strong="H3069"\w* \w the|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w I|strong="H2142"\w* \w will|strong="H3069"\w* \w make|strong="H2142"\w* \w mention|strong="H2142"\w* \w of|strong="H3069"\w* \w your|strong="H2142"\w* \w righteousness|strong="H6666"\w*, even \w of|strong="H3069"\w* yours alone. +\q1 +\v 17 God, \w you|strong="H5704"\w* have \w taught|strong="H3925"\w* \w me|strong="H5046"\w* \w from|strong="H5704"\w* \w my|strong="H5046"\w* \w youth|strong="H5271"\w*. +\q2 \w Until|strong="H5704"\w* \w now|strong="H2008"\w*, \w I|strong="H5704"\w* have \w declared|strong="H5046"\w* \w your|strong="H5046"\w* \w wondrous|strong="H6381"\w* \w works|strong="H6381"\w*. +\q1 +\v 18 \w Yes|strong="H1571"\w*, \w even|strong="H1571"\w* \w when|strong="H5704"\w* \w I|strong="H5704"\w* am \w old|strong="H2209"\w* \w and|strong="H1571"\w* \w gray-haired|strong="H7872"\w*, God, don’t \w forsake|strong="H5800"\w* \w me|strong="H5046"\w*, +\q2 \w until|strong="H5704"\w* \w I|strong="H5704"\w* \w have|strong="H1571"\w* \w declared|strong="H5046"\w* \w your|strong="H3605"\w* \w strength|strong="H1369"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* next \w generation|strong="H1755"\w*, +\q2 \w your|strong="H3605"\w* \w might|strong="H1369"\w* \w to|strong="H5704"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H1571"\w* \w to|strong="H5704"\w* come. +\q1 +\v 19 \w God|strong="H4310"\w*, \w your|strong="H6213"\w* \w righteousness|strong="H6666"\w* \w also|strong="H6213"\w* \w reaches|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H6213"\w* \w heavens|strong="H4791"\w*. +\q2 \w You|strong="H5704"\w* have \w done|strong="H6213"\w* \w great|strong="H1419"\w* \w things|strong="H1419"\w*. +\q2 \w God|strong="H4310"\w*, \w who|strong="H4310"\w* \w is|strong="H4310"\w* \w like|strong="H3644"\w* \w you|strong="H5704"\w*? +\q1 +\v 20 \w You|strong="H7725"\w*, \w who|strong="H7227"\w* \w have|strong="H7200"\w* \w shown|strong="H7200"\w* \w us|strong="H7725"\w* \w many|strong="H7227"\w* \w and|strong="H7725"\w* bitter \w troubles|strong="H6869"\w*, +\q2 \w you|strong="H7725"\w* \w will|strong="H7227"\w* \w let|strong="H7725"\w* \w me|strong="H7725"\w* \w live|strong="H2421"\w*. +\q2 \w You|strong="H7725"\w* \w will|strong="H7227"\w* \w bring|strong="H7725"\w* \w us|strong="H7725"\w* \w up|strong="H5927"\w* \w again|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H7200"\w* \w depths|strong="H8415"\w* \w of|strong="H7227"\w* \w the|strong="H7200"\w* \w earth|strong="H5927"\w*. +\q1 +\v 21 \w Increase|strong="H7235"\w* \w my|strong="H7235"\w* honor +\q2 \w and|strong="H5437"\w* \w comfort|strong="H5162"\w* \w me|strong="H5437"\w* \w again|strong="H5437"\w*. +\q1 +\v 22 \w I|strong="H1571"\w* \w will|strong="H3478"\w* \w also|strong="H1571"\w* \w praise|strong="H3034"\w* \w you|strong="H3034"\w* \w with|strong="H3627"\w* \w the|strong="H1571"\w* \w harp|strong="H3658"\w* \w for|strong="H3478"\w* \w your|strong="H3034"\w* faithfulness, \w my|strong="H3478"\w* God. +\q2 \w I|strong="H1571"\w* \w sing|strong="H2167"\w* \w praises|strong="H2167"\w* \w to|strong="H3478"\w* \w you|strong="H3034"\w* \w with|strong="H3627"\w* \w the|strong="H1571"\w* \w lyre|strong="H3658"\w*, \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H3627"\w* \w Israel|strong="H3478"\w*. +\q1 +\v 23 \w My|strong="H3588"\w* \w lips|strong="H8193"\w* \w shall|strong="H5315"\w* \w shout|strong="H7442"\w* \w for|strong="H3588"\w* \w joy|strong="H7442"\w*! +\q2 \w My|strong="H3588"\w* \w soul|strong="H5315"\w*, \w which|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H8193"\w* \w redeemed|strong="H6299"\w*, \w sings|strong="H7442"\w* \w praises|strong="H2167"\w* \w to|strong="H5315"\w* \w you|strong="H3588"\w*! +\q1 +\v 24 \w My|strong="H3605"\w* \w tongue|strong="H3956"\w* \w will|strong="H1571"\w* \w also|strong="H1571"\w* \w talk|strong="H1897"\w* \w about|strong="H3117"\w* \w your|strong="H3605"\w* \w righteousness|strong="H6666"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w* \w long|strong="H3117"\w*, +\q2 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H3117"\w* disappointed, \w and|strong="H3117"\w* \w they|strong="H3588"\w* \w are|strong="H3117"\w* \w confounded|strong="H2659"\w*, +\q2 \w who|strong="H3605"\w* \w want|strong="H1245"\w* \w to|strong="H3117"\w* \w harm|strong="H7451"\w* \w me|strong="H3117"\w*. +\c 72 +\d By Solomon. +\q1 +\v 1 \w God|strong="H5414"\w*, \w give|strong="H5414"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w your|strong="H5414"\w* \w justice|strong="H4941"\w*; +\q2 \w your|strong="H5414"\w* \w righteousness|strong="H6666"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w royal|strong="H4428"\w* \w son|strong="H1121"\w*. +\q1 +\v 2 \w He|strong="H5971"\w* \w will|strong="H5971"\w* \w judge|strong="H1777"\w* \w your|strong="H1777"\w* \w people|strong="H5971"\w* \w with|strong="H5971"\w* \w righteousness|strong="H6664"\w*, +\q2 \w and|strong="H4941"\w* \w your|strong="H1777"\w* \w poor|strong="H6041"\w* \w with|strong="H5971"\w* \w justice|strong="H4941"\w*. +\q1 +\v 3 \w The|strong="H5375"\w* \w mountains|strong="H2022"\w* \w shall|strong="H5971"\w* \w bring|strong="H5375"\w* \w prosperity|strong="H7965"\w* \w to|strong="H5971"\w* \w the|strong="H5375"\w* \w people|strong="H5971"\w*. +\q2 \w The|strong="H5375"\w* \w hills|strong="H1389"\w* \w bring|strong="H5375"\w* \w the|strong="H5375"\w* fruit \w of|strong="H2022"\w* \w righteousness|strong="H6666"\w*. +\q1 +\v 4 \w He|strong="H5971"\w* \w will|strong="H5971"\w* \w judge|strong="H8199"\w* \w the|strong="H8199"\w* \w poor|strong="H6041"\w* \w of|strong="H1121"\w* \w the|strong="H8199"\w* \w people|strong="H5971"\w*. +\q2 \w He|strong="H5971"\w* \w will|strong="H5971"\w* \w save|strong="H3467"\w* \w the|strong="H8199"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H8199"\w* \w needy|strong="H6041"\w*, +\q2 \w and|strong="H1121"\w* \w will|strong="H5971"\w* \w break|strong="H1792"\w* \w the|strong="H8199"\w* \w oppressor|strong="H6231"\w* \w in|strong="H1121"\w* \w pieces|strong="H1792"\w*. +\q1 +\v 5 \w They|strong="H6440"\w* \w shall|strong="H6440"\w* \w fear|strong="H3372"\w* \w you|strong="H6440"\w* \w while|strong="H5973"\w* \w the|strong="H6440"\w* \w sun|strong="H8121"\w* \w endures|strong="H1755"\w*; +\q2 \w and|strong="H6440"\w* \w as|strong="H6440"\w* \w long|strong="H6440"\w* \w as|strong="H6440"\w* \w the|strong="H6440"\w* \w moon|strong="H3394"\w*, \w throughout|strong="H1755"\w* \w all|strong="H1755"\w* \w generations|strong="H1755"\w*. +\q1 +\v 6 \w He|strong="H5921"\w* \w will|strong="H3381"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w* \w like|strong="H3381"\w* \w rain|strong="H4306"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w mown|strong="H1488"\w* grass, +\q2 \w as|strong="H5921"\w* \w showers|strong="H7241"\w* \w that|strong="H4306"\w* \w water|strong="H2222"\w* \w the|strong="H5921"\w* earth. +\q1 +\v 7 \w In|strong="H3117"\w* \w his|strong="H3117"\w* \w days|strong="H3117"\w*, \w the|strong="H3117"\w* \w righteous|strong="H6662"\w* \w shall|strong="H3117"\w* \w flourish|strong="H6524"\w*, +\q2 \w and|strong="H3117"\w* \w abundance|strong="H7230"\w* \w of|strong="H3117"\w* \w peace|strong="H7965"\w*, \w until|strong="H5704"\w* \w the|strong="H3117"\w* \w moon|strong="H3394"\w* \w is|strong="H3117"\w* \w no|strong="H1097"\w* \w more|strong="H7230"\w*. +\q1 +\v 8 \w He|strong="H5704"\w* \w shall|strong="H3220"\w* \w have|strong="H5104"\w* \w dominion|strong="H7287"\w* also \w from|strong="H5704"\w* \w sea|strong="H3220"\w* \w to|strong="H5704"\w* \w sea|strong="H3220"\w*, +\q2 \w from|strong="H5704"\w* \w the|strong="H5704"\w* \w River|strong="H5104"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w ends|strong="H5704"\w* \w of|strong="H5104"\w* \w the|strong="H5704"\w* earth. +\q1 +\v 9 Those who dwell \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w wilderness|strong="H6728"\w* \w shall|strong="H6440"\w* \w bow|strong="H3766"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\q2 \w His|strong="H6440"\w* enemies \w shall|strong="H6440"\w* \w lick|strong="H3897"\w* \w the|strong="H6440"\w* \w dust|strong="H6083"\w*. +\q1 +\v 10 \w The|strong="H7725"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Tarshish|strong="H8659"\w* \w and|strong="H7725"\w* \w of|strong="H4428"\w* \w the|strong="H7725"\w* islands \w will|strong="H4428"\w* \w bring|strong="H7725"\w* \w tribute|strong="H4503"\w*. +\q2 \w The|strong="H7725"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Sheba|strong="H7614"\w* \w and|strong="H7725"\w* \w Seba|strong="H5434"\w* \w shall|strong="H4428"\w* \w offer|strong="H7126"\w* \w gifts|strong="H4503"\w*. +\q1 +\v 11 Yes, \w all|strong="H3605"\w* \w kings|strong="H4428"\w* \w shall|strong="H1471"\w* fall \w down|strong="H7812"\w* before \w him|strong="H5647"\w*. +\q2 \w All|strong="H3605"\w* \w nations|strong="H1471"\w* \w shall|strong="H1471"\w* \w serve|strong="H5647"\w* \w him|strong="H5647"\w*. +\q1 +\v 12 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H5826"\w* \w deliver|strong="H5337"\w* \w the|strong="H3588"\w* \w needy|strong="H6041"\w* \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w cries|strong="H7768"\w*; +\q2 \w the|strong="H3588"\w* \w poor|strong="H6041"\w*, \w who|strong="H6041"\w* \w has|strong="H3588"\w* no \w helper|strong="H5826"\w*. +\q1 +\v 13 \w He|strong="H5921"\w* \w will|strong="H5315"\w* \w have|strong="H2347"\w* \w pity|strong="H2347"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w poor|strong="H1800"\w* \w and|strong="H5315"\w* \w needy|strong="H1800"\w*. +\q2 \w He|strong="H5921"\w* \w will|strong="H5315"\w* \w save|strong="H3467"\w* \w the|strong="H5921"\w* \w souls|strong="H5315"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w needy|strong="H1800"\w*. +\q1 +\v 14 \w He|strong="H1818"\w* \w will|strong="H5869"\w* \w redeem|strong="H1350"\w* \w their|strong="H1350"\w* \w soul|strong="H5315"\w* \w from|strong="H5315"\w* \w oppression|strong="H8496"\w* \w and|strong="H5869"\w* \w violence|strong="H2555"\w*. +\q2 \w Their|strong="H1350"\w* \w blood|strong="H1818"\w* \w will|strong="H5869"\w* \w be|strong="H5315"\w* \w precious|strong="H3365"\w* \w in|strong="H5315"\w* \w his|strong="H1350"\w* \w sight|strong="H5869"\w*. +\q1 +\v 15 \w He|strong="H3117"\w* \w will|strong="H5414"\w* \w live|strong="H2421"\w*; \w and|strong="H3117"\w* \w Sheba|strong="H7614"\w*’s \w gold|strong="H2091"\w* \w will|strong="H5414"\w* \w be|strong="H3117"\w* \w given|strong="H5414"\w* \w to|strong="H5414"\w* \w him|strong="H5414"\w*. +\q2 \w Men|strong="H3605"\w* \w will|strong="H5414"\w* \w pray|strong="H6419"\w* \w for|strong="H1157"\w* \w him|strong="H5414"\w* \w continually|strong="H8548"\w*. +\q2 \w They|strong="H3117"\w* \w will|strong="H5414"\w* \w bless|strong="H1288"\w* \w him|strong="H5414"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w* \w long|strong="H3117"\w*. +\q1 +\v 16 \w Abundance|strong="H6451"\w* \w of|strong="H5892"\w* \w grain|strong="H1250"\w* \w shall|strong="H5892"\w* \w be|strong="H1961"\w* \w throughout|strong="H5892"\w* \w the|strong="H1961"\w* land. +\q2 \w Its|strong="H1961"\w* \w fruit|strong="H6529"\w* sways \w like|strong="H1961"\w* \w Lebanon|strong="H3844"\w*. +\q2 \w Let|strong="H1961"\w* \w it|strong="H1961"\w* \w flourish|strong="H6692"\w*, thriving \w like|strong="H1961"\w* \w the|strong="H1961"\w* \w grass|strong="H6212"\w* \w of|strong="H5892"\w* \w the|strong="H1961"\w* field. +\q1 +\v 17 \w His|strong="H3605"\w* \w name|strong="H8034"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*. +\q2 \w His|strong="H3605"\w* \w name|strong="H8034"\w* continues \w as|strong="H1961"\w* \w long|strong="H5769"\w* \w as|strong="H1961"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*. +\q1 \w Men|strong="H3605"\w* \w shall|strong="H1471"\w* \w be|strong="H1961"\w* \w blessed|strong="H1288"\w* \w by|strong="H8034"\w* \w him|strong="H6440"\w*. +\q2 \w All|strong="H3605"\w* \w nations|strong="H1471"\w* \w will|strong="H1961"\w* call \w him|strong="H6440"\w* \w blessed|strong="H1288"\w*. +\b +\q1 +\v 18 \w Praise|strong="H1288"\w* \w be|strong="H3068"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w*, \w the|strong="H6213"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, +\q2 \w who|strong="H3068"\w* \w alone|strong="H6213"\w* \w does|strong="H6213"\w* \w marvelous|strong="H6381"\w* \w deeds|strong="H6381"\w*. +\q1 +\v 19 \w Blessed|strong="H1288"\w* \w be|strong="H5769"\w* \w his|strong="H3605"\w* \w glorious|strong="H3519"\w* \w name|strong="H8034"\w* \w forever|strong="H5769"\w*! +\q2 Let \w the|strong="H3605"\w* \w whole|strong="H3605"\w* earth \w be|strong="H5769"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w his|strong="H3605"\w* \w glory|strong="H3519"\w*! +\q1 Amen \w and|strong="H5769"\w* amen. +\b +\p +\v 20 \w This|strong="H1732"\w* ends \w the|strong="H1732"\w* \w prayers|strong="H8605"\w* \w by|strong="H3615"\w* \w David|strong="H1732"\w*, \w the|strong="H1732"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jesse|strong="H3448"\w*. +\c 73 +\ms1 BOOK 3 +\d A Psalm by Asaph. +\q1 +\v 1 Surely God\f + \fr 73:1 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w is|strong="H2896"\w* \w good|strong="H2896"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w*, +\q2 \w to|strong="H3478"\w* those \w who|strong="H3478"\w* \w are|strong="H3478"\w* \w pure|strong="H1249"\w* \w in|strong="H3478"\w* \w heart|strong="H3824"\w*. +\q1 +\v 2 But \w as|strong="H7272"\w* \w for|strong="H7272"\w* me, \w my|strong="H8210"\w* \w feet|strong="H7272"\w* \w were|strong="H7272"\w* \w almost|strong="H4592"\w* \w gone|strong="H5186"\w*. +\q2 \w My|strong="H8210"\w* \w steps|strong="H7272"\w* had nearly \w slipped|strong="H8210"\w*. +\q1 +\v 3 \w For|strong="H3588"\w* \w I|strong="H3588"\w* was \w envious|strong="H7065"\w* \w of|strong="H7965"\w* \w the|strong="H7200"\w* \w arrogant|strong="H1984"\w*, +\q2 \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w prosperity|strong="H7965"\w* \w of|strong="H7965"\w* \w the|strong="H7200"\w* \w wicked|strong="H7563"\w*. +\q1 +\v 4 \w For|strong="H3588"\w* there \w are|strong="H4194"\w* no struggles \w in|strong="H4194"\w* \w their|strong="H3588"\w* \w death|strong="H4194"\w*, +\q2 \w but|strong="H3588"\w* \w their|strong="H3588"\w* strength \w is|strong="H4194"\w* \w firm|strong="H1277"\w*. +\q1 +\v 5 \w They|strong="H3808"\w* \w are|strong="H5973"\w* \w free|strong="H5973"\w* \w from|strong="H5973"\w* burdens \w of|strong="H5999"\w* men, +\q2 \w neither|strong="H3808"\w* \w are|strong="H5973"\w* \w they|strong="H3808"\w* \w plagued|strong="H5060"\w* \w like|strong="H5973"\w* other men. +\q1 +\v 6 \w Therefore|strong="H3651"\w* \w pride|strong="H1346"\w* \w is|strong="H3651"\w* \w like|strong="H3651"\w* \w a|strong="H3068"\w* \w chain|strong="H6059"\w* around \w their|strong="H3651"\w* neck. +\q2 \w Violence|strong="H2555"\w* \w covers|strong="H5848"\w* \w them|strong="H5848"\w* \w like|strong="H3651"\w* \w a|strong="H3068"\w* \w garment|strong="H7897"\w*. +\q1 +\v 7 \w Their|strong="H3318"\w* \w eyes|strong="H5869"\w* bulge \w with|strong="H3318"\w* \w fat|strong="H2459"\w*. +\q2 \w Their|strong="H3318"\w* \w minds|strong="H3824"\w* \w pass|strong="H5674"\w* \w the|strong="H5674"\w* limits \w of|strong="H5869"\w* \w conceit|strong="H5869"\w*. +\q1 +\v 8 \w They|strong="H7451"\w* scoff \w and|strong="H1696"\w* \w speak|strong="H1696"\w* \w with|strong="H1696"\w* malice. +\q2 \w In|strong="H1696"\w* arrogance, \w they|strong="H7451"\w* \w threaten|strong="H1696"\w* \w oppression|strong="H6233"\w*. +\q1 +\v 9 \w They|strong="H6310"\w* \w have|strong="H1980"\w* \w set|strong="H1980"\w* \w their|strong="H8064"\w* \w mouth|strong="H6310"\w* \w in|strong="H1980"\w* \w the|strong="H1980"\w* \w heavens|strong="H8064"\w*. +\q2 \w Their|strong="H8064"\w* \w tongue|strong="H3956"\w* \w walks|strong="H1980"\w* \w through|strong="H1980"\w* \w the|strong="H1980"\w* \w earth|strong="H8064"\w*. +\q1 +\v 10 \w Therefore|strong="H3651"\w* \w their|strong="H7725"\w* \w people|strong="H5971"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w them|strong="H7725"\w*, +\q2 \w and|strong="H7725"\w* \w they|strong="H3651"\w* drink \w up|strong="H7725"\w* \w waters|strong="H4325"\w* \w of|strong="H4325"\w* \w abundance|strong="H4392"\w*. +\q1 +\v 11 \w They|strong="H3045"\w* say, “\w How|strong="H3045"\w* \w does|strong="H3426"\w* God \w know|strong="H3045"\w*? +\q2 \w Is|strong="H3426"\w* \w there|strong="H3426"\w* \w knowledge|strong="H3045"\w* \w in|strong="H3045"\w* \w the|strong="H3045"\w* \w Most|strong="H5945"\w* \w High|strong="H5945"\w*?” +\q1 +\v 12 \w Behold|strong="H2009"\w*, these \w are|strong="H7563"\w* \w the|strong="H2009"\w* \w wicked|strong="H7563"\w*. +\q2 Being \w always|strong="H5769"\w* \w at|strong="H2428"\w* \w ease|strong="H7961"\w*, \w they|strong="H2428"\w* \w increase|strong="H7685"\w* \w in|strong="H2428"\w* \w riches|strong="H2428"\w*. +\q1 +\v 13 Surely \w I|strong="H2135"\w* have \w cleansed|strong="H2135"\w* \w my|strong="H7364"\w* \w heart|strong="H3824"\w* \w in|strong="H7364"\w* \w vain|strong="H7385"\w*, +\q2 \w and|strong="H3824"\w* \w washed|strong="H7364"\w* \w my|strong="H7364"\w* \w hands|strong="H3709"\w* \w in|strong="H7364"\w* \w innocence|strong="H5356"\w*, +\q1 +\v 14 \w For|strong="H3117"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w* \w long|strong="H3117"\w* \w I|strong="H3117"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w plagued|strong="H5060"\w*, +\q2 \w and|strong="H3117"\w* punished \w every|strong="H3605"\w* \w morning|strong="H1242"\w*. +\q1 +\v 15 \w If|strong="H2009"\w* \w I|strong="H2009"\w* \w had|strong="H1121"\w* said, “\w I|strong="H2009"\w* \w will|strong="H1121"\w* \w speak|strong="H5608"\w* \w thus|strong="H3644"\w*”, +\q2 \w behold|strong="H2009"\w*, \w I|strong="H2009"\w* would \w have|strong="H1121"\w* betrayed \w the|strong="H2009"\w* \w generation|strong="H1755"\w* \w of|strong="H1121"\w* \w your|strong="H2009"\w* \w children|strong="H1121"\w*. +\q1 +\v 16 \w When|strong="H3045"\w* \w I|strong="H3045"\w* tried \w to|strong="H2803"\w* \w understand|strong="H3045"\w* \w this|strong="H2063"\w*, +\q2 \w it|strong="H1931"\w* \w was|strong="H1931"\w* too \w painful|strong="H5999"\w* \w for|strong="H3045"\w* \w me|strong="H2803"\w*— +\q1 +\v 17 \w until|strong="H5704"\w* \w I|strong="H5704"\w* \w entered|strong="H5704"\w* God’s \w sanctuary|strong="H4720"\w*, +\q2 \w and|strong="H5704"\w* considered \w their|strong="H5704"\w* latter end. +\q1 +\v 18 \w Surely|strong="H5307"\w* you \w set|strong="H7896"\w* \w them|strong="H7896"\w* \w in|strong="H5307"\w* \w slippery|strong="H2513"\w* \w places|strong="H2513"\w*. +\q2 You \w throw|strong="H5307"\w* \w them|strong="H7896"\w* \w down|strong="H5307"\w* \w to|strong="H5307"\w* \w destruction|strong="H4876"\w*. +\q1 +\v 19 How \w they|strong="H7281"\w* \w are|strong="H1961"\w* \w suddenly|strong="H7281"\w* \w destroyed|strong="H8552"\w*! +\q2 \w They|strong="H7281"\w* \w are|strong="H1961"\w* \w completely|strong="H8552"\w* \w swept|strong="H5486"\w* \w away|strong="H4480"\w* \w with|strong="H4480"\w* \w terrors|strong="H1091"\w*. +\q1 +\v 20 As \w a|strong="H3068"\w* \w dream|strong="H2472"\w* \w when|strong="H2472"\w* one wakes \w up|strong="H5782"\w*, +\q2 \w so|strong="H5782"\w*, Lord,\f + \fr 73:20 \ft The word translated “Lord” is “Adonai.”\f* \w when|strong="H2472"\w* you \w awake|strong="H5782"\w*, you will despise \w their|strong="H5782"\w* fantasies. +\q1 +\v 21 \w For|strong="H3588"\w* \w my|strong="H3588"\w* soul \w was|strong="H3824"\w* \w grieved|strong="H2556"\w*. +\q2 \w I|strong="H3588"\w* \w was|strong="H3824"\w* \w embittered|strong="H2556"\w* \w in|strong="H3588"\w* \w my|strong="H3588"\w* \w heart|strong="H3824"\w*. +\q1 +\v 22 \w I|strong="H3045"\w* \w was|strong="H1961"\w* \w so|strong="H1961"\w* \w senseless|strong="H1198"\w* \w and|strong="H3045"\w* \w ignorant|strong="H3045"\w*. +\q2 \w I|strong="H3045"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* brute beast \w before|strong="H5973"\w* \w you|strong="H3045"\w*. +\q1 +\v 23 Nevertheless, \w I|strong="H3027"\w* am \w continually|strong="H8548"\w* \w with|strong="H5973"\w* \w you|strong="H5973"\w*. +\q2 \w You|strong="H5973"\w* \w have|strong="H3027"\w* held \w my|strong="H3027"\w* \w right|strong="H3225"\w* \w hand|strong="H3027"\w*. +\q1 +\v 24 \w You|strong="H3947"\w* \w will|strong="H3519"\w* \w guide|strong="H5148"\w* \w me|strong="H3947"\w* \w with|strong="H3947"\w* \w your|strong="H3947"\w* \w counsel|strong="H6098"\w*, +\q2 \w and|strong="H3947"\w* afterward \w receive|strong="H3947"\w* \w me|strong="H3947"\w* \w to|strong="H3947"\w* \w glory|strong="H3519"\w*. +\q1 +\v 25 \w Whom|strong="H4310"\w* \w do|strong="H4310"\w* \w I|strong="H3808"\w* \w have|strong="H2654"\w* \w in|strong="H2654"\w* \w heaven|strong="H8064"\w*? +\q2 There \w is|strong="H4310"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w on|strong="H5973"\w* \w earth|strong="H8064"\w* \w whom|strong="H4310"\w* \w I|strong="H3808"\w* \w desire|strong="H2654"\w* \w besides|strong="H5973"\w* \w you|strong="H5973"\w*. +\q1 +\v 26 \w My|strong="H3615"\w* \w flesh|strong="H7607"\w* \w and|strong="H5769"\w* \w my|strong="H3615"\w* \w heart|strong="H3824"\w* \w fails|strong="H3615"\w*, +\q2 but \w God|strong="H6697"\w* \w is|strong="H3824"\w* \w the|strong="H3615"\w* \w strength|strong="H6697"\w* \w of|strong="H3615"\w* \w my|strong="H3615"\w* \w heart|strong="H3824"\w* \w and|strong="H5769"\w* \w my|strong="H3615"\w* \w portion|strong="H2506"\w* \w forever|strong="H5769"\w*. +\q1 +\v 27 \w For|strong="H3588"\w*, \w behold|strong="H2009"\w*, \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H4480"\w* \w far|strong="H4480"\w* \w from|strong="H4480"\w* \w you|strong="H3588"\w* \w shall|strong="H2181"\w* perish. +\q2 \w You|strong="H3588"\w* \w have|strong="H3605"\w* \w destroyed|strong="H6789"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H4480"\w* \w unfaithful|strong="H2181"\w* \w to|strong="H4480"\w* \w you|strong="H3588"\w*. +\q1 +\v 28 \w But|strong="H3605"\w* \w it|strong="H7896"\w* \w is|strong="H2896"\w* \w good|strong="H2896"\w* \w for|strong="H3605"\w* \w me|strong="H7896"\w* \w to|strong="H2896"\w* come \w close|strong="H7896"\w* \w to|strong="H2896"\w* \w God|strong="H3069"\w*. +\q2 \w I|strong="H3605"\w* \w have|strong="H3605"\w* \w made|strong="H7896"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*\f + \fr 73:28 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w my|strong="H3605"\w* \w refuge|strong="H4268"\w*, +\q2 \w that|strong="H3605"\w* \w I|strong="H3605"\w* may \w tell|strong="H5608"\w* \w of|strong="H3605"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w works|strong="H4399"\w*. +\b +\c 74 +\d A contemplation by Asaph. +\q1 +\v 1 God, \w why|strong="H4100"\w* \w have|strong="H6629"\w* \w you|strong="H4100"\w* \w rejected|strong="H2186"\w* \w us|strong="H6629"\w* \w forever|strong="H5331"\w*? +\q2 \w Why|strong="H4100"\w* \w does|strong="H4100"\w* \w your|strong="H4100"\w* anger smolder against \w the|strong="H4100"\w* \w sheep|strong="H6629"\w* \w of|strong="H6629"\w* \w your|strong="H4100"\w* \w pasture|strong="H4830"\w*? +\q1 +\v 2 \w Remember|strong="H2142"\w* \w your|strong="H2142"\w* \w congregation|strong="H5712"\w*, \w which|strong="H2088"\w* \w you|strong="H5159"\w* \w purchased|strong="H7069"\w* \w of|strong="H7626"\w* \w old|strong="H6924"\w*, +\q2 \w which|strong="H2088"\w* \w you|strong="H5159"\w* \w have|strong="H2022"\w* \w redeemed|strong="H1350"\w* \w to|strong="H5159"\w* \w be|strong="H5159"\w* \w the|strong="H2142"\w* \w tribe|strong="H7626"\w* \w of|strong="H7626"\w* \w your|strong="H2142"\w* \w inheritance|strong="H5159"\w*: +\q2 \w Mount|strong="H2022"\w* \w Zion|strong="H6726"\w*, \w in|strong="H7931"\w* \w which|strong="H2088"\w* \w you|strong="H5159"\w* \w have|strong="H2022"\w* \w lived|strong="H7931"\w*. +\q1 +\v 3 \w Lift|strong="H7311"\w* \w up|strong="H7311"\w* \w your|strong="H3605"\w* \w feet|strong="H6471"\w* \w to|strong="H7489"\w* \w the|strong="H3605"\w* \w perpetual|strong="H5331"\w* \w ruins|strong="H4876"\w*, +\q2 \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w evil|strong="H7489"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* enemy \w has|strong="H3605"\w* \w done|strong="H7489"\w* \w in|strong="H6471"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w*. +\q1 +\v 4 \w Your|strong="H7760"\w* \w adversaries|strong="H6887"\w* \w have|strong="H6887"\w* \w roared|strong="H7580"\w* \w in|strong="H7130"\w* \w the|strong="H7760"\w* \w middle|strong="H7130"\w* \w of|strong="H7130"\w* \w your|strong="H7760"\w* \w assembly|strong="H4150"\w*. +\q2 \w They|strong="H7760"\w* \w have|strong="H6887"\w* \w set|strong="H7760"\w* \w up|strong="H7760"\w* \w their|strong="H7760"\w* standards \w as|strong="H4150"\w* signs. +\q1 +\v 5 \w They|strong="H3045"\w* behaved \w like|strong="H6086"\w* men wielding \w axes|strong="H7134"\w*, +\q2 cutting through \w a|strong="H3068"\w* \w thicket|strong="H5442"\w* \w of|strong="H6086"\w* \w trees|strong="H6086"\w*. +\q1 +\v 6 \w Now|strong="H6258"\w* \w they|strong="H3162"\w* break \w all|strong="H3162"\w* \w its|strong="H3162"\w* \w carved|strong="H6603"\w* \w work|strong="H6603"\w* \w down|strong="H1986"\w* \w with|strong="H1986"\w* \w hatchet|strong="H3781"\w* \w and|strong="H6258"\w* \w hammers|strong="H3597"\w*. +\q2 +\v 7 \w They|strong="H4908"\w* \w have|strong="H8034"\w* \w burned|strong="H7971"\w* \w your|strong="H7971"\w* \w sanctuary|strong="H4720"\w* \w to|strong="H7971"\w* \w the|strong="H7971"\w* ground. +\q2 \w They|strong="H4908"\w* \w have|strong="H8034"\w* \w profaned|strong="H2490"\w* \w the|strong="H7971"\w* \w dwelling|strong="H4908"\w* \w place|strong="H4908"\w* \w of|strong="H8034"\w* \w your|strong="H7971"\w* \w Name|strong="H8034"\w*. +\q1 +\v 8 \w They|strong="H3605"\w* said \w in|strong="H3162"\w* \w their|strong="H3605"\w* \w heart|strong="H3820"\w*, “\w We|strong="H3605"\w* \w will|strong="H3820"\w* crush \w them|strong="H8313"\w* \w completely|strong="H3605"\w*.” +\q2 \w They|strong="H3605"\w* \w have|strong="H3605"\w* \w burned|strong="H8313"\w* \w up|strong="H8313"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w places|strong="H4150"\w* \w in|strong="H3162"\w* \w the|strong="H3605"\w* land where God \w was|strong="H3820"\w* worshiped. +\q1 +\v 9 \w We|strong="H5704"\w* \w see|strong="H7200"\w* \w no|strong="H3808"\w* miraculous signs. +\q2 \w There|strong="H3045"\w* \w is|strong="H4100"\w* \w no|strong="H3808"\w* \w longer|strong="H5750"\w* \w any|strong="H5750"\w* \w prophet|strong="H5030"\w*, +\q2 \w neither|strong="H3808"\w* \w is|strong="H4100"\w* \w there|strong="H3045"\w* \w among|strong="H7200"\w* \w us|strong="H3045"\w* \w anyone|strong="H7200"\w* \w who|strong="H5030"\w* \w knows|strong="H3045"\w* \w how|strong="H4100"\w* \w long|strong="H5704"\w*. +\q1 +\v 10 \w How|strong="H4970"\w* \w long|strong="H5704"\w*, God, \w shall|strong="H8034"\w* \w the|strong="H5704"\w* \w adversary|strong="H6862"\w* \w reproach|strong="H2778"\w*? +\q2 \w Shall|strong="H8034"\w* \w the|strong="H5704"\w* \w enemy|strong="H6862"\w* \w blaspheme|strong="H5006"\w* \w your|strong="H5704"\w* \w name|strong="H8034"\w* \w forever|strong="H5704"\w*? +\q1 +\v 11 \w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H7725"\w* \w draw|strong="H7725"\w* \w back|strong="H7725"\w* \w your|strong="H7725"\w* \w hand|strong="H3027"\w*, even \w your|strong="H7725"\w* \w right|strong="H3225"\w* \w hand|strong="H3027"\w*? +\q2 \w Take|strong="H7725"\w* \w it|strong="H7725"\w* \w from|strong="H7725"\w* \w your|strong="H7725"\w* chest \w and|strong="H7725"\w* \w consume|strong="H3615"\w* \w them|strong="H7725"\w*! +\b +\q1 +\v 12 Yet God \w is|strong="H4428"\w* \w my|strong="H7130"\w* \w King|strong="H4428"\w* \w of|strong="H4428"\w* \w old|strong="H6924"\w*, +\q2 \w working|strong="H6466"\w* \w salvation|strong="H3444"\w* \w throughout|strong="H7130"\w* \w the|strong="H7130"\w* earth. +\q1 +\v 13 \w You|strong="H5921"\w* \w divided|strong="H6565"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w by|strong="H5921"\w* \w your|strong="H5921"\w* \w strength|strong="H5797"\w*. +\q2 \w You|strong="H5921"\w* \w broke|strong="H7665"\w* \w the|strong="H5921"\w* \w heads|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w monsters|strong="H8577"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w*. +\q1 +\v 14 \w You|strong="H5414"\w* \w broke|strong="H7533"\w* \w the|strong="H5414"\w* \w heads|strong="H7218"\w* \w of|strong="H7218"\w* \w Leviathan|strong="H3882"\w* \w in|strong="H5414"\w* pieces. +\q2 \w You|strong="H5414"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w as|strong="H5971"\w* \w food|strong="H3978"\w* \w to|strong="H5414"\w* \w people|strong="H5971"\w* \w and|strong="H5971"\w* \w desert|strong="H6728"\w* \w creatures|strong="H5971"\w*. +\q1 +\v 15 You opened \w up|strong="H3001"\w* \w spring|strong="H4599"\w* \w and|strong="H5158"\w* \w stream|strong="H5158"\w*. +\q2 You \w dried|strong="H3001"\w* \w up|strong="H3001"\w* mighty \w rivers|strong="H5104"\w*. +\q1 +\v 16 \w The|strong="H3117"\w* \w day|strong="H3117"\w* \w is|strong="H3117"\w* yours, \w the|strong="H3117"\w* \w night|strong="H3915"\w* \w is|strong="H3117"\w* \w also|strong="H3117"\w* yours. +\q2 \w You|strong="H3117"\w* \w have|strong="H3117"\w* \w prepared|strong="H3559"\w* \w the|strong="H3117"\w* \w light|strong="H3974"\w* \w and|strong="H3117"\w* \w the|strong="H3117"\w* \w sun|strong="H8121"\w*. +\q1 +\v 17 \w You|strong="H3605"\w* \w have|strong="H3605"\w* \w set|strong="H5324"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w boundaries|strong="H1367"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* earth. +\q2 \w You|strong="H3605"\w* \w have|strong="H3605"\w* \w made|strong="H3335"\w* \w summer|strong="H7019"\w* \w and|strong="H3605"\w* \w winter|strong="H2779"\w*. +\b +\q1 +\v 18 \w Remember|strong="H2142"\w* \w this|strong="H2063"\w*, \w that|strong="H5971"\w* \w the|strong="H3068"\w* enemy \w has|strong="H3068"\w* mocked \w you|strong="H5971"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w Foolish|strong="H5036"\w* \w people|strong="H5971"\w* \w have|strong="H3068"\w* \w blasphemed|strong="H5006"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w*. +\q1 +\v 19 Don’t \w deliver|strong="H5414"\w* \w the|strong="H5414"\w* \w soul|strong="H5315"\w* \w of|strong="H5315"\w* \w your|strong="H5414"\w* dove \w to|strong="H5414"\w* wild \w beasts|strong="H2416"\w*. +\q2 Don’t \w forget|strong="H7911"\w* \w the|strong="H5414"\w* \w life|strong="H5315"\w* \w of|strong="H5315"\w* \w your|strong="H5414"\w* \w poor|strong="H6041"\w* \w forever|strong="H5331"\w*. +\q1 +\v 20 Honor \w your|strong="H3588"\w* \w covenant|strong="H1285"\w*, +\q2 \w for|strong="H3588"\w* haunts \w of|strong="H4390"\w* \w violence|strong="H2555"\w* \w fill|strong="H4390"\w* \w the|strong="H3588"\w* \w dark|strong="H4285"\w* \w places|strong="H4285"\w* \w of|strong="H4390"\w* \w the|strong="H3588"\w* earth. +\q1 +\v 21 Don’t \w let|strong="H7725"\w* \w the|strong="H7725"\w* \w oppressed|strong="H6041"\w* \w return|strong="H7725"\w* \w ashamed|strong="H3637"\w*. +\q2 \w Let|strong="H7725"\w* \w the|strong="H7725"\w* \w poor|strong="H6041"\w* \w and|strong="H7725"\w* \w needy|strong="H6041"\w* \w praise|strong="H1984"\w* \w your|strong="H7725"\w* \w name|strong="H8034"\w*. +\q1 +\v 22 \w Arise|strong="H6965"\w*, God! \w Plead|strong="H7378"\w* \w your|strong="H3605"\w* own \w cause|strong="H7379"\w*. +\q2 \w Remember|strong="H2142"\w* \w how|strong="H2142"\w* \w the|strong="H3605"\w* \w foolish|strong="H5036"\w* \w man|strong="H5036"\w* mocks \w you|strong="H3605"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w*. +\q1 +\v 23 Don’t \w forget|strong="H7911"\w* \w the|strong="H5927"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w your|strong="H7911"\w* \w adversaries|strong="H6887"\w*. +\q2 \w The|strong="H5927"\w* \w tumult|strong="H7588"\w* \w of|strong="H6963"\w* those \w who|strong="H7911"\w* \w rise|strong="H6965"\w* \w up|strong="H5927"\w* \w against|strong="H5927"\w* \w you|strong="H6963"\w* \w ascends|strong="H5927"\w* \w continually|strong="H8548"\w*. +\b +\c 75 +\d For the Chief Musician. To the tune of “Do Not Destroy.” A Psalm by Asaph. A song. +\q1 +\v 1 We give thanks \w to|strong="H7892"\w* you, God. +\q2 We give thanks, for your Name is near. +\q2 Men tell about your wondrous works. +\b +\q1 +\v 2 When \w I|strong="H8034"\w* choose \w the|strong="H3034"\w* appointed time, +\q2 \w I|strong="H8034"\w* \w will|strong="H8034"\w* judge blamelessly. +\q1 +\v 3 \w The|strong="H3588"\w* earth \w and|strong="H3947"\w* \w all|strong="H3947"\w* \w its|strong="H3588"\w* inhabitants quake. +\q2 \w I|strong="H3588"\w* firmly hold \w its|strong="H3588"\w* pillars. \qs Selah.\qs* +\q1 +\v 4 \w I|strong="H3605"\w* said \w to|strong="H3427"\w* \w the|strong="H3605"\w* arrogant, “Don’t boast!” +\q2 \w I|strong="H3605"\w* said \w to|strong="H3427"\w* \w the|strong="H3605"\w* wicked, “Don’t lift \w up|strong="H3427"\w* \w the|strong="H3605"\w* horn. +\q1 +\v 5 Don’t \w lift|strong="H7311"\w* \w up|strong="H7311"\w* \w your|strong="H7311"\w* \w horn|strong="H7161"\w* \w on|strong="H7161"\w* \w high|strong="H7311"\w*. +\q2 Don’t speak \w with|strong="H7161"\w* \w a|strong="H3068"\w* stiff neck.” +\q1 +\v 6 \w For|strong="H7311"\w* neither from \w the|strong="H1696"\w* east, nor from \w the|strong="H1696"\w* west, +\q2 nor \w yet|strong="H1696"\w* from \w the|strong="H1696"\w* south, comes \w exaltation|strong="H7311"\w*. +\q1 +\v 7 \w But|strong="H3588"\w* \w God|strong="H3808"\w* \w is|strong="H3808"\w* \w the|strong="H3588"\w* judge. +\q2 \w He|strong="H3588"\w* puts \w down|strong="H3588"\w* \w one|strong="H3808"\w*, \w and|strong="H4057"\w* \w lifts|strong="H7311"\w* \w up|strong="H7311"\w* \w another|strong="H3808"\w*. +\q1 +\v 8 \w For|strong="H3588"\w* \w in|strong="H2088"\w* \w Yahweh|strong="H3068"\w*’s hand \w there|strong="H2088"\w* \w is|strong="H2088"\w* \w a|strong="H3068"\w* cup, +\q2 full \w of|strong="H8199"\w* foaming wine mixed \w with|strong="H8199"\w* spices. +\q1 \w He|strong="H3588"\w* pours \w it|strong="H3588"\w* out. +\q2 \w Indeed|strong="H3588"\w* \w the|strong="H3588"\w* wicked \w of|strong="H8199"\w* \w the|strong="H3588"\w* earth drink \w and|strong="H2088"\w* drink \w it|strong="H3588"\w* \w to|strong="H3588"\w* \w its|strong="H3588"\w* \w very|strong="H2088"\w* dregs. +\b +\q1 +\v 9 \w But|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* declare \w this|strong="H2088"\w* \w forever|strong="H3605"\w*: +\q2 \w I|strong="H3588"\w* \w will|strong="H3068"\w* sing \w praises|strong="H3068"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* Jacob. +\q1 +\v 10 \w I|strong="H5046"\w* \w will|strong="H3290"\w* cut off \w all|strong="H5769"\w* \w the|strong="H5046"\w* horns \w of|strong="H5769"\w* \w the|strong="H5046"\w* wicked, +\q2 \w but|strong="H3290"\w* \w the|strong="H5046"\w* horns \w of|strong="H5769"\w* \w the|strong="H5046"\w* righteous \w shall|strong="H3290"\w* \w be|strong="H5769"\w* \w lifted|strong="H3290"\w* up. +\b +\c 76 +\d For the Chief Musician. On stringed instruments. A Psalm by Asaph. A song. +\q1 +\v 1 In Judah, God is known. +\q2 His name is great in Israel. +\q1 +\v 2 \w His|strong="H3045"\w* tabernacle \w is|strong="H8034"\w* \w also|strong="H8034"\w* \w in|strong="H3478"\w* Salem. +\q2 \w His|strong="H3045"\w* dwelling place \w in|strong="H3478"\w* Zion. +\q1 +\v 3 \w There|strong="H1961"\w* he broke \w the|strong="H1961"\w* flaming arrows \w of|strong="H1961"\w* \w the|strong="H1961"\w* bow, +\q2 \w the|strong="H1961"\w* shield, \w and|strong="H6726"\w* \w the|strong="H1961"\w* sword, \w and|strong="H6726"\w* \w the|strong="H1961"\w* weapons \w of|strong="H1961"\w* war. \qs Selah.\qs* +\q1 +\v 4 Glorious \w are|strong="H4421"\w* \w you|strong="H7665"\w*, \w and|strong="H2719"\w* excellent, +\q2 \w more|strong="H4421"\w* than mountains \w of|strong="H2719"\w* game. +\q1 +\v 5 Valiant men lie plundered, +\q2 they have slept \w their|strong="H2964"\w* last sleep. +\q2 None \w of|strong="H2042"\w* the men \w of|strong="H2042"\w* war can lift \w their|strong="H2964"\w* hands. +\q1 +\v 6 \w At|strong="H3808"\w* \w your|strong="H3605"\w* rebuke, \w God|strong="H3808"\w* \w of|strong="H3027"\w* Jacob, +\q2 \w both|strong="H3605"\w* chariot \w and|strong="H3027"\w* horse \w are|strong="H3027"\w* cast \w into|strong="H3027"\w* \w a|strong="H3068"\w* dead \w sleep|strong="H8142"\w*. +\q1 +\v 7 You, even you, \w are|strong="H5483"\w* \w to|strong="H3290"\w* \w be|strong="H5483"\w* feared. +\q2 Who can stand \w in|strong="H7393"\w* \w your|strong="H3290"\w* sight \w when|strong="H3290"\w* you \w are|strong="H5483"\w* angry? +\q1 +\v 8 \w You|strong="H6440"\w* pronounced judgment \w from|strong="H6440"\w* heaven. +\q2 \w The|strong="H6440"\w* earth \w feared|strong="H3372"\w*, \w and|strong="H6440"\w* \w was|strong="H6440"\w* silent, +\q2 +\v 9 \w when|strong="H8085"\w* \w God|strong="H8064"\w* arose \w to|strong="H8085"\w* \w judgment|strong="H1779"\w*, +\q2 \w to|strong="H8085"\w* save all \w the|strong="H8085"\w* afflicted ones \w of|strong="H3372"\w* \w the|strong="H8085"\w* \w earth|strong="H8064"\w*. \qs Selah.\qs* +\q1 +\v 10 \w Surely|strong="H6965"\w* \w the|strong="H3605"\w* wrath \w of|strong="H3605"\w* \w man|strong="H3605"\w* praises \w you|strong="H3605"\w*. +\q2 \w The|strong="H3605"\w* survivors \w of|strong="H3605"\w* \w your|strong="H3605"\w* wrath \w are|strong="H4941"\w* restrained. +\q1 +\v 11 \w Make|strong="H3588"\w* vows \w to|strong="H2534"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3588"\w* God, \w and|strong="H3034"\w* fulfill \w them|strong="H3588"\w*! +\q2 Let all \w of|strong="H7611"\w* \w his|strong="H3588"\w* neighbors bring presents \w to|strong="H2534"\w* \w him|strong="H3588"\w* \w who|strong="H3588"\w* \w is|strong="H2534"\w* \w to|strong="H2534"\w* \w be|strong="H3588"\w* feared. +\q1 +\v 12 \w He|strong="H3068"\w* \w will|strong="H3068"\w* cut off \w the|strong="H3605"\w* spirit \w of|strong="H3068"\w* princes. +\q2 \w He|strong="H3068"\w* \w is|strong="H3068"\w* \w feared|strong="H4172"\w* \w by|strong="H3068"\w* \w the|strong="H3605"\w* kings \w of|strong="H3068"\w* \w the|strong="H3605"\w* earth. +\b +\c 77 +\d For the Chief Musician. To Jeduthun. A Psalm by Asaph. +\q1 +\v 1 \w My|strong="H5921"\w* cry goes \w to|strong="H5921"\w* God! +\q2 Indeed, \w I|strong="H5921"\w* cry \w to|strong="H5921"\w* God \w for|strong="H5921"\w* help, +\q2 \w and|strong="H3038"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w* \w to|strong="H5921"\w* listen \w to|strong="H5921"\w* \w me|strong="H5921"\w*. +\q1 +\v 2 \w In|strong="H6963"\w* \w the|strong="H6963"\w* day \w of|strong="H6963"\w* \w my|strong="H6963"\w* trouble \w I|strong="H6963"\w* sought \w the|strong="H6963"\w* Lord. +\q2 \w My|strong="H6963"\w* hand \w was|strong="H6963"\w* stretched \w out|strong="H6817"\w* \w in|strong="H6963"\w* \w the|strong="H6963"\w* night, \w and|strong="H6963"\w* didn’t get tired. +\q2 \w My|strong="H6963"\w* soul refused \w to|strong="H6963"\w* \w be|strong="H6963"\w* comforted. +\q1 +\v 3 \w I|strong="H3117"\w* remember \w God|strong="H3808"\w*, \w and|strong="H3117"\w* \w I|strong="H3117"\w* groan. +\q2 \w I|strong="H3117"\w* complain, \w and|strong="H3117"\w* \w my|strong="H3027"\w* \w spirit|strong="H5315"\w* \w is|strong="H5315"\w* overwhelmed. \qs Selah.\qs* +\b +\q1 +\v 4 \w You|strong="H7307"\w* \w hold|strong="H2142"\w* \w my|strong="H2142"\w* eyelids open. +\q2 \w I|strong="H7878"\w* am \w so|strong="H7307"\w* \w troubled|strong="H1993"\w* \w that|strong="H7307"\w* \w I|strong="H7878"\w* \w can|strong="H7307"\w*’t \w speak|strong="H7878"\w*. +\q1 +\v 5 \w I|strong="H3808"\w* \w have|strong="H5869"\w* considered \w the|strong="H1696"\w* days \w of|strong="H5869"\w* old, +\q2 \w the|strong="H1696"\w* years \w of|strong="H5869"\w* ancient \w times|strong="H6470"\w*. +\q1 +\v 6 \w I|strong="H3117"\w* remember \w my|strong="H2803"\w* song \w in|strong="H8141"\w* \w the|strong="H3117"\w* night. +\q2 \w I|strong="H3117"\w* \w consider|strong="H2803"\w* \w in|strong="H8141"\w* \w my|strong="H2803"\w* \w own|strong="H5769"\w* heart; +\q2 \w my|strong="H2803"\w* spirit diligently inquires: +\q1 +\v 7 “\w Will|strong="H7307"\w* \w the|strong="H2142"\w* Lord reject \w us|strong="H2142"\w* forever? +\q2 \w Will|strong="H7307"\w* \w he|strong="H7307"\w* \w be|strong="H7307"\w* favorable no more? +\q1 +\v 8 Has \w his|strong="H3808"\w* loving kindness vanished \w forever|strong="H5769"\w*? +\q2 \w Does|strong="H3808"\w* \w his|strong="H3808"\w* promise \w fail|strong="H3808"\w* \w for|strong="H2186"\w* generations? +\q1 +\v 9 \w Has|strong="H5331"\w* God forgotten \w to|strong="H1755"\w* \w be|strong="H5331"\w* gracious? +\q2 \w Has|strong="H5331"\w* he, \w in|strong="H1755"\w* anger, withheld his compassion?” \qs Selah.\qs* +\q1 +\v 10 Then I thought, “I will appeal \w to|strong="H7911"\w* this: +\q2 \w the|strong="H7911"\w* years of \w the|strong="H7911"\w* right hand of \w the|strong="H7911"\w* Most High.” +\q1 +\v 11 \w I|strong="H8141"\w* \w will|strong="H1931"\w* remember \w Yah|strong="H3068"\w*’s deeds; +\q2 \w for|strong="H8141"\w* \w I|strong="H8141"\w* \w will|strong="H1931"\w* remember \w your|strong="H2470"\w* wonders \w of|strong="H8141"\w* \w old|strong="H8141"\w*. +\q1 +\v 12 \w I|strong="H3588"\w* \w will|strong="H3588"\w* \w also|strong="H3588"\w* meditate \w on|strong="H6924"\w* all \w your|strong="H3588"\w* work, +\q2 \w and|strong="H2142"\w* \w consider|strong="H2142"\w* \w your|strong="H3588"\w* \w doings|strong="H4611"\w*. +\q1 +\v 13 \w Your|strong="H3605"\w* \w way|strong="H3605"\w*, God, \w is|strong="H3605"\w* \w in|strong="H3605"\w* \w the|strong="H3605"\w* sanctuary. +\q2 \w What|strong="H6467"\w* god \w is|strong="H3605"\w* great \w like|strong="H1897"\w* God? +\q1 +\v 14 \w You|strong="H1870"\w* \w are|strong="H1870"\w* \w the|strong="H1870"\w* \w God|strong="H4310"\w* \w who|strong="H4310"\w* does wonders. +\q2 \w You|strong="H1870"\w* \w have|strong="H6944"\w* made \w your|strong="H1870"\w* strength known \w among|strong="H4310"\w* \w the|strong="H1870"\w* peoples. +\q1 +\v 15 \w You|strong="H6213"\w* \w have|strong="H5971"\w* redeemed \w your|strong="H3045"\w* \w people|strong="H5971"\w* \w with|strong="H6213"\w* \w your|strong="H3045"\w* arm, +\q2 \w the|strong="H6213"\w* sons \w of|strong="H5971"\w* Jacob \w and|strong="H5971"\w* \w Joseph|strong="H5971"\w*. \qs Selah.\qs* +\q1 +\v 16 \w The|strong="H1121"\w* waters \w saw|strong="H3290"\w* \w you|strong="H5971"\w*, God. +\q2 \w The|strong="H1121"\w* waters \w saw|strong="H3290"\w* \w you|strong="H5971"\w*, \w and|strong="H1121"\w* \w they|strong="H5971"\w* writhed. +\q2 \w The|strong="H1121"\w* depths \w also|strong="H1121"\w* convulsed. +\q1 +\v 17 \w The|strong="H7200"\w* clouds poured \w out|strong="H7200"\w* \w water|strong="H4325"\w*. +\q2 \w The|strong="H7200"\w* skies resounded \w with|strong="H4325"\w* thunder. +\q2 \w Your|strong="H7200"\w* arrows also flashed around. +\q1 +\v 18 \w The|strong="H5414"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w your|strong="H5414"\w* \w thunder|strong="H6963"\w* \w was|strong="H6963"\w* \w in|strong="H1980"\w* \w the|strong="H5414"\w* whirlwind. +\q2 \w The|strong="H5414"\w* lightnings lit \w up|strong="H5414"\w* \w the|strong="H5414"\w* world. +\q2 \w The|strong="H5414"\w* earth trembled \w and|strong="H1980"\w* shook. +\q1 +\v 19 Your way \w was|strong="H6963"\w* \w through|strong="H6963"\w* \w the|strong="H6963"\w* sea, +\q2 your paths \w through|strong="H6963"\w* \w the|strong="H6963"\w* great waters. +\q2 Your footsteps \w were|strong="H8398"\w* not known. +\q1 +\v 20 \w You|strong="H3045"\w* led \w your|strong="H3045"\w* \w people|strong="H3808"\w* \w like|strong="H1870"\w* \w a|strong="H3068"\w* flock, +\q2 \w by|strong="H1870"\w* \w the|strong="H3045"\w* hand \w of|strong="H1870"\w* \w Moses|strong="H3808"\w* \w and|strong="H1870"\w* Aaron. +\b +\c 78 +\d A contemplation by Asaph. +\q1 +\v 1 Hear \w my|strong="H5186"\w* \w teaching|strong="H8451"\w*, \w my|strong="H5186"\w* \w people|strong="H5971"\w*. +\q2 \w Turn|strong="H5186"\w* \w your|strong="H5186"\w* ears \w to|strong="H6310"\w* \w the|strong="H5186"\w* \w words|strong="H6310"\w* \w of|strong="H6310"\w* \w my|strong="H5186"\w* \w mouth|strong="H6310"\w*. +\q1 +\v 2 \w I|strong="H4480"\w* \w will|strong="H6310"\w* \w open|strong="H6605"\w* \w my|strong="H6605"\w* \w mouth|strong="H6310"\w* \w in|strong="H6310"\w* \w a|strong="H3068"\w* \w parable|strong="H4912"\w*. +\q2 \w I|strong="H4480"\w* \w will|strong="H6310"\w* \w utter|strong="H5042"\w* \w dark|strong="H2420"\w* \w sayings|strong="H2420"\w* \w of|strong="H6310"\w* \w old|strong="H6924"\w*, +\q1 +\v 3 \w which|strong="H5608"\w* \w we|strong="H3068"\w* \w have|strong="H3045"\w* \w heard|strong="H8085"\w* \w and|strong="H8085"\w* \w known|strong="H3045"\w*, +\q2 \w and|strong="H8085"\w* \w our|strong="H8085"\w* fathers \w have|strong="H3045"\w* \w told|strong="H5608"\w* \w us|strong="H3045"\w*. +\q1 +\v 4 \w We|strong="H6213"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w hide|strong="H3582"\w* \w them|strong="H6213"\w* \w from|strong="H1121"\w* \w their|strong="H3068"\w* \w children|strong="H1121"\w*, +\q2 \w telling|strong="H5608"\w* \w to|strong="H3068"\w* \w the|strong="H6213"\w* \w generation|strong="H1755"\w* \w to|strong="H3068"\w* come \w the|strong="H6213"\w* \w praises|strong="H8416"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w his|strong="H3068"\w* \w strength|strong="H5807"\w*, \w and|strong="H1121"\w* \w his|strong="H3068"\w* \w wondrous|strong="H6381"\w* \w deeds|strong="H6381"\w* \w that|strong="H3068"\w* \w he|strong="H6213"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w*. +\q1 +\v 5 \w For|strong="H1121"\w* \w he|strong="H3478"\w* \w established|strong="H6965"\w* \w a|strong="H3068"\w* covenant \w in|strong="H3478"\w* \w Jacob|strong="H3290"\w*, +\q2 \w and|strong="H1121"\w* \w appointed|strong="H7760"\w* \w a|strong="H3068"\w* \w teaching|strong="H8451"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*, +\q2 \w which|strong="H3478"\w* \w he|strong="H3478"\w* \w commanded|strong="H6680"\w* \w our|strong="H6680"\w* fathers, +\q2 \w that|strong="H3045"\w* \w they|strong="H3045"\w* \w should|strong="H3478"\w* \w make|strong="H7760"\w* \w them|strong="H7760"\w* \w known|strong="H3045"\w* \w to|strong="H3478"\w* \w their|strong="H7760"\w* \w children|strong="H1121"\w*; +\q1 +\v 6 \w that|strong="H3045"\w* \w the|strong="H3205"\w* \w generation|strong="H1755"\w* \w to|strong="H3205"\w* \w come|strong="H3205"\w* \w might|strong="H4616"\w* \w know|strong="H3045"\w*, even \w the|strong="H3205"\w* \w children|strong="H1121"\w* \w who|strong="H1121"\w* \w should|strong="H5608"\w* \w be|strong="H1121"\w* \w born|strong="H3205"\w*; +\q2 \w who|strong="H1121"\w* \w should|strong="H5608"\w* \w arise|strong="H6965"\w* \w and|strong="H1121"\w* \w tell|strong="H5608"\w* \w their|strong="H3045"\w* \w children|strong="H1121"\w*, +\q1 +\v 7 \w that|strong="H3808"\w* \w they|strong="H3808"\w* might \w set|strong="H7760"\w* \w their|strong="H7760"\w* \w hope|strong="H3689"\w* \w in|strong="H3808"\w* \w God|strong="H3808"\w*, +\q2 \w and|strong="H4687"\w* \w not|strong="H3808"\w* \w forget|strong="H7911"\w* \w God|strong="H3808"\w*’s \w deeds|strong="H4611"\w*, +\q2 \w but|strong="H3808"\w* \w keep|strong="H5341"\w* \w his|strong="H7760"\w* \w commandments|strong="H4687"\w*, +\q1 +\v 8 \w and|strong="H3820"\w* might \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w their|strong="H3559"\w* fathers— +\q2 \w a|strong="H3068"\w* \w stubborn|strong="H5637"\w* \w and|strong="H3820"\w* \w rebellious|strong="H4784"\w* \w generation|strong="H1755"\w*, +\q2 \w a|strong="H3068"\w* \w generation|strong="H1755"\w* \w that|strong="H3808"\w* didn’t \w make|strong="H3559"\w* \w their|strong="H3559"\w* \w hearts|strong="H3820"\w* loyal, +\q2 whose \w spirit|strong="H7307"\w* \w was|strong="H1961"\w* \w not|strong="H3808"\w* \w steadfast|strong="H3559"\w* \w with|strong="H3820"\w* \w God|strong="H3808"\w*. +\q1 +\v 9 \w The|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Ephraim, \w being|strong="H1121"\w* \w armed|strong="H5401"\w* \w and|strong="H1121"\w* \w carrying|strong="H7411"\w* \w bows|strong="H7198"\w*, +\q2 \w turned|strong="H2015"\w* \w back|strong="H2015"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w battle|strong="H7128"\w*. +\q1 +\v 10 \w They|strong="H3808"\w* didn’t \w keep|strong="H8104"\w* \w God|strong="H3808"\w*’s \w covenant|strong="H1285"\w*, +\q2 \w and|strong="H3212"\w* \w refused|strong="H3985"\w* \w to|strong="H3212"\w* \w walk|strong="H3212"\w* \w in|strong="H3212"\w* \w his|strong="H8104"\w* \w law|strong="H8451"\w*. +\q1 +\v 11 \w They|strong="H7200"\w* \w forgot|strong="H7911"\w* \w his|strong="H7200"\w* \w doings|strong="H5949"\w*, +\q2 \w his|strong="H7200"\w* \w wondrous|strong="H6381"\w* \w deeds|strong="H5949"\w* \w that|strong="H7200"\w* \w he|strong="H7200"\w* had \w shown|strong="H7200"\w* \w them|strong="H7200"\w*. +\q1 +\v 12 \w He|strong="H6213"\w* \w did|strong="H6213"\w* marvelous \w things|strong="H6382"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w sight|strong="H5048"\w* \w of|strong="H7704"\w* \w their|strong="H6213"\w* fathers, +\q2 \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w land|strong="H7704"\w* \w of|strong="H7704"\w* \w Egypt|strong="H4714"\w*, \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w field|strong="H7704"\w* \w of|strong="H7704"\w* \w Zoan|strong="H6814"\w*. +\q1 +\v 13 \w He|strong="H4325"\w* \w split|strong="H1234"\w* \w the|strong="H5674"\w* \w sea|strong="H3220"\w*, \w and|strong="H4325"\w* \w caused|strong="H5674"\w* \w them|strong="H5674"\w* \w to|strong="H4325"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w*. +\q2 \w He|strong="H4325"\w* \w made|strong="H5674"\w* \w the|strong="H5674"\w* \w waters|strong="H4325"\w* \w stand|strong="H5324"\w* \w as|strong="H3644"\w* \w a|strong="H3068"\w* \w heap|strong="H5067"\w*. +\q1 +\v 14 \w In|strong="H3605"\w* \w the|strong="H3605"\w* \w daytime|strong="H3119"\w* \w he|strong="H3605"\w* \w also|strong="H3915"\w* \w led|strong="H5148"\w* \w them|strong="H5148"\w* \w with|strong="H3605"\w* \w a|strong="H3068"\w* \w cloud|strong="H6051"\w*, +\q2 \w and|strong="H3119"\w* \w all|strong="H3605"\w* \w night|strong="H3915"\w* \w with|strong="H3605"\w* \w a|strong="H3068"\w* light \w of|strong="H3605"\w* fire. +\q1 +\v 15 \w He|strong="H4057"\w* \w split|strong="H1234"\w* \w rocks|strong="H6697"\w* \w in|strong="H7227"\w* \w the|strong="H8248"\w* \w wilderness|strong="H4057"\w*, +\q2 \w and|strong="H4057"\w* \w gave|strong="H8248"\w* \w them|strong="H8248"\w* \w drink|strong="H8248"\w* \w abundantly|strong="H7227"\w* \w as|strong="H8248"\w* \w out|strong="H1234"\w* \w of|strong="H4057"\w* \w the|strong="H8248"\w* \w depths|strong="H8415"\w*. +\q1 +\v 16 \w He|strong="H3318"\w* \w brought|strong="H3318"\w* \w streams|strong="H5104"\w* \w also|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4325"\w* \w the|strong="H3318"\w* \w rock|strong="H5553"\w*, +\q2 \w and|strong="H3318"\w* caused \w waters|strong="H4325"\w* \w to|strong="H3381"\w* \w run|strong="H3381"\w* \w down|strong="H3381"\w* \w like|strong="H3318"\w* \w rivers|strong="H5104"\w*. +\q1 +\v 17 \w Yet|strong="H5750"\w* they \w still|strong="H5750"\w* \w went|strong="H3254"\w* on \w to|strong="H3254"\w* \w sin|strong="H2398"\w* \w against|strong="H2398"\w* \w him|strong="H2398"\w*, +\q2 \w to|strong="H3254"\w* \w rebel|strong="H4784"\w* \w against|strong="H2398"\w* \w the|strong="H3254"\w* \w Most|strong="H5945"\w* \w High|strong="H5945"\w* \w in|strong="H5750"\w* \w the|strong="H3254"\w* \w desert|strong="H6723"\w*. +\q1 +\v 18 \w They|strong="H5315"\w* \w tempted|strong="H5254"\w* God \w in|strong="H5315"\w* \w their|strong="H7592"\w* \w heart|strong="H3824"\w* +\q2 \w by|strong="H5254"\w* \w asking|strong="H7592"\w* food according \w to|strong="H3824"\w* \w their|strong="H7592"\w* \w desire|strong="H5315"\w*. +\q1 +\v 19 Yes, \w they|strong="H6186"\w* \w spoke|strong="H1696"\w* \w against|strong="H1696"\w* God. +\q2 \w They|strong="H6186"\w* \w said|strong="H1696"\w*, “\w Can|strong="H3201"\w* God \w prepare|strong="H6186"\w* \w a|strong="H3068"\w* \w table|strong="H7979"\w* \w in|strong="H1696"\w* \w the|strong="H1696"\w* \w wilderness|strong="H4057"\w*? +\q1 +\v 20 \w Behold|strong="H2005"\w*, \w he|strong="H5414"\w* \w struck|strong="H5221"\w* \w the|strong="H5414"\w* \w rock|strong="H6697"\w*, \w so|strong="H5414"\w* \w that|strong="H5971"\w* \w waters|strong="H4325"\w* \w gushed|strong="H4325"\w* \w out|strong="H5414"\w*, +\q2 \w and|strong="H3899"\w* \w streams|strong="H5158"\w* \w overflowed|strong="H7857"\w*. +\q1 \w Can|strong="H3201"\w* \w he|strong="H5414"\w* \w give|strong="H5414"\w* \w bread|strong="H3899"\w* \w also|strong="H1571"\w*? +\q2 \w Will|strong="H5971"\w* \w he|strong="H5414"\w* \w provide|strong="H3559"\w* \w meat|strong="H3899"\w* \w for|strong="H4325"\w* \w his|strong="H5414"\w* \w people|strong="H5971"\w*?” +\q1 +\v 21 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w heard|strong="H8085"\w*, \w and|strong="H3478"\w* \w was|strong="H3068"\w* \w angry|strong="H5674"\w*. +\q2 \w A|strong="H3068"\w* fire \w was|strong="H3068"\w* \w kindled|strong="H5400"\w* \w against|strong="H5927"\w* \w Jacob|strong="H3290"\w*, +\q2 \w anger|strong="H5674"\w* \w also|strong="H1571"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5927"\w* \w Israel|strong="H3478"\w*, +\q1 +\v 22 \w because|strong="H3588"\w* \w they|strong="H3588"\w* didn’t believe \w in|strong="H3808"\w* \w God|strong="H3808"\w*, +\q2 \w and|strong="H3808"\w* didn’t trust \w in|strong="H3808"\w* \w his|strong="H3588"\w* \w salvation|strong="H3444"\w*. +\q1 +\v 23 Yet \w he|strong="H6680"\w* \w commanded|strong="H6680"\w* \w the|strong="H6680"\w* \w skies|strong="H7834"\w* \w above|strong="H4605"\w*, +\q2 \w and|strong="H8064"\w* \w opened|strong="H6605"\w* \w the|strong="H6680"\w* \w doors|strong="H1817"\w* \w of|strong="H1817"\w* \w heaven|strong="H8064"\w*. +\q1 +\v 24 \w He|strong="H5414"\w* \w rained|strong="H4305"\w* \w down|strong="H4305"\w* \w manna|strong="H4478"\w* \w on|strong="H5921"\w* \w them|strong="H5414"\w* \w to|strong="H5921"\w* eat, +\q2 \w and|strong="H8064"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w food|strong="H1715"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w sky|strong="H8064"\w*. +\q1 +\v 25 Man ate \w the|strong="H7971"\w* \w bread|strong="H3899"\w* \w of|strong="H3899"\w* angels. +\q2 \w He|strong="H7971"\w* \w sent|strong="H7971"\w* \w them|strong="H1992"\w* \w food|strong="H3899"\w* \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w full|strong="H7648"\w*. +\q1 +\v 26 \w He|strong="H5797"\w* caused \w the|strong="H5090"\w* \w east|strong="H6921"\w* \w wind|strong="H6921"\w* \w to|strong="H8064"\w* \w blow|strong="H5265"\w* \w in|strong="H8064"\w* \w the|strong="H5090"\w* \w sky|strong="H8064"\w*. +\q2 \w By|strong="H8064"\w* \w his|strong="H5090"\w* \w power|strong="H5797"\w* \w he|strong="H5797"\w* \w guided|strong="H5090"\w* \w the|strong="H5090"\w* \w south|strong="H8486"\w* \w wind|strong="H6921"\w*. +\q1 +\v 27 \w He|strong="H5921"\w* also \w rained|strong="H4305"\w* \w meat|strong="H7607"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w as|strong="H5921"\w* \w the|strong="H5921"\w* \w dust|strong="H6083"\w*, +\q2 \w winged|strong="H3671"\w* \w birds|strong="H5775"\w* \w as|strong="H5921"\w* \w the|strong="H5921"\w* \w sand|strong="H2344"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w seas|strong="H3220"\w*. +\q1 +\v 28 \w He|strong="H7130"\w* let \w them|strong="H5439"\w* \w fall|strong="H5307"\w* \w in|strong="H7130"\w* \w the|strong="H5439"\w* \w middle|strong="H7130"\w* \w of|strong="H4264"\w* \w their|strong="H7130"\w* \w camp|strong="H4264"\w*, +\q2 \w around|strong="H5439"\w* \w their|strong="H7130"\w* \w habitations|strong="H4908"\w*. +\q1 +\v 29 \w So|strong="H3966"\w* \w they|strong="H1992"\w* ate, \w and|strong="H3966"\w* \w were|strong="H1992"\w* \w well|strong="H3966"\w* \w filled|strong="H7646"\w*. +\q2 \w He|strong="H8378"\w* gave \w them|strong="H1992"\w* \w their|strong="H1992"\w* own \w desire|strong="H8378"\w*. +\q1 +\v 30 \w They|strong="H3808"\w* didn’t turn \w from|strong="H3808"\w* \w their|strong="H3808"\w* cravings. +\q2 \w Their|strong="H3808"\w* food \w was|strong="H6310"\w* \w yet|strong="H5750"\w* \w in|strong="H5750"\w* \w their|strong="H3808"\w* \w mouths|strong="H6310"\w*, +\q2 +\v 31 \w when|strong="H2026"\w* \w the|strong="H5927"\w* anger \w of|strong="H5927"\w* God \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5927"\w* \w them|strong="H2026"\w*, +\q2 \w killed|strong="H2026"\w* some \w of|strong="H5927"\w* \w their|strong="H2026"\w* strongest, +\q2 \w and|strong="H3478"\w* struck \w down|strong="H3766"\w* \w the|strong="H5927"\w* young \w men|strong="H3478"\w* \w of|strong="H5927"\w* \w Israel|strong="H3478"\w*. +\q1 +\v 32 \w For|strong="H3605"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w they|strong="H3808"\w* \w still|strong="H5750"\w* \w sinned|strong="H2398"\w*, +\q2 \w and|strong="H2398"\w* didn’t believe \w in|strong="H5750"\w* \w his|strong="H3605"\w* \w wondrous|strong="H6381"\w* \w works|strong="H6381"\w*. +\q1 +\v 33 Therefore \w he|strong="H3117"\w* \w consumed|strong="H3615"\w* \w their|strong="H3117"\w* \w days|strong="H3117"\w* \w in|strong="H8141"\w* \w vanity|strong="H1892"\w*, +\q2 \w and|strong="H3117"\w* \w their|strong="H3117"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* terror. +\q1 +\v 34 \w When|strong="H7725"\w* \w he|strong="H7725"\w* \w killed|strong="H2026"\w* \w them|strong="H7725"\w*, \w then|strong="H7725"\w* they \w inquired|strong="H1875"\w* \w after|strong="H1875"\w* \w him|strong="H7725"\w*. +\q2 They \w returned|strong="H7725"\w* \w and|strong="H7725"\w* \w sought|strong="H1875"\w* God \w earnestly|strong="H7836"\w*. +\q1 +\v 35 \w They|strong="H3588"\w* \w remembered|strong="H2142"\w* \w that|strong="H3588"\w* \w God|strong="H6697"\w* was \w their|strong="H3588"\w* \w rock|strong="H6697"\w*, +\q2 \w the|strong="H3588"\w* \w Most|strong="H5945"\w* \w High|strong="H5945"\w* \w God|strong="H6697"\w*, \w their|strong="H3588"\w* \w redeemer|strong="H1350"\w*. +\q1 +\v 36 But \w they|strong="H6310"\w* flattered him \w with|strong="H6310"\w* \w their|strong="H3956"\w* \w mouth|strong="H6310"\w*, +\q2 \w and|strong="H6310"\w* \w lied|strong="H3576"\w* \w to|strong="H6310"\w* him \w with|strong="H6310"\w* \w their|strong="H3956"\w* \w tongue|strong="H3956"\w*. +\q1 +\v 37 \w For|strong="H3559"\w* \w their|strong="H3559"\w* \w heart|strong="H3820"\w* \w was|strong="H3820"\w* \w not|strong="H3808"\w* \w right|strong="H3559"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*, +\q2 \w neither|strong="H3808"\w* \w were|strong="H3820"\w* \w they|strong="H3808"\w* faithful \w in|strong="H3808"\w* \w his|strong="H3559"\w* \w covenant|strong="H1285"\w*. +\q1 +\v 38 \w But|strong="H3808"\w* \w he|strong="H1931"\w*, being \w merciful|strong="H7349"\w*, \w forgave|strong="H3722"\w* \w iniquity|strong="H5771"\w*, \w and|strong="H7725"\w* didn’t \w destroy|strong="H7843"\w* \w them|strong="H7725"\w*. +\q2 Yes, \w many|strong="H7235"\w* times \w he|strong="H1931"\w* \w turned|strong="H7725"\w* \w his|strong="H3605"\w* \w anger|strong="H2534"\w* \w away|strong="H7725"\w*, +\q2 \w and|strong="H7725"\w* didn’t \w stir|strong="H5782"\w* \w up|strong="H5782"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w wrath|strong="H2534"\w*. +\q1 +\v 39 \w He|strong="H3588"\w* \w remembered|strong="H2142"\w* \w that|strong="H3588"\w* \w they|strong="H1992"\w* \w were|strong="H1992"\w* \w but|strong="H3588"\w* \w flesh|strong="H1320"\w*, +\q2 \w a|strong="H3068"\w* \w wind|strong="H7307"\w* \w that|strong="H3588"\w* \w passes|strong="H1980"\w* \w away|strong="H7725"\w*, \w and|strong="H1980"\w* doesn’t \w come|strong="H1980"\w* \w again|strong="H7725"\w*. +\q1 +\v 40 \w How|strong="H4100"\w* \w often|strong="H4100"\w* \w they|strong="H4100"\w* \w rebelled|strong="H4784"\w* \w against|strong="H4784"\w* \w him|strong="H6087"\w* \w in|strong="H6087"\w* \w the|strong="H4100"\w* \w wilderness|strong="H4057"\w*, +\q2 \w and|strong="H4057"\w* \w grieved|strong="H6087"\w* \w him|strong="H6087"\w* \w in|strong="H6087"\w* \w the|strong="H4100"\w* \w desert|strong="H4057"\w*! +\q1 +\v 41 \w They|strong="H3478"\w* \w turned|strong="H7725"\w* \w again|strong="H7725"\w* \w and|strong="H3478"\w* \w tempted|strong="H5254"\w* God, +\q2 \w and|strong="H3478"\w* provoked \w the|strong="H7725"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H6918"\w* \w Israel|strong="H3478"\w*. +\q1 +\v 42 \w They|strong="H3117"\w* didn’t \w remember|strong="H2142"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w*, +\q2 \w nor|strong="H3808"\w* \w the|strong="H4480"\w* \w day|strong="H3117"\w* \w when|strong="H3117"\w* \w he|strong="H3117"\w* \w redeemed|strong="H6299"\w* \w them|strong="H3027"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w adversary|strong="H6862"\w*; +\q1 +\v 43 how \w he|strong="H7760"\w* \w set|strong="H7760"\w* \w his|strong="H7760"\w* signs \w in|strong="H4714"\w* \w Egypt|strong="H4714"\w*, +\q2 \w his|strong="H7760"\w* \w wonders|strong="H4159"\w* \w in|strong="H4714"\w* \w the|strong="H7760"\w* \w field|strong="H7704"\w* \w of|strong="H7704"\w* \w Zoan|strong="H6814"\w*, +\q1 +\v 44 \w he|strong="H1818"\w* \w turned|strong="H2015"\w* \w their|strong="H2015"\w* \w rivers|strong="H2975"\w* \w into|strong="H2015"\w* \w blood|strong="H1818"\w*, +\q2 \w and|strong="H1818"\w* \w their|strong="H2015"\w* \w streams|strong="H5140"\w*, so \w that|strong="H1818"\w* \w they|strong="H1077"\w* could \w not|strong="H1077"\w* \w drink|strong="H8354"\w*. +\q1 +\v 45 \w He|strong="H7971"\w* \w sent|strong="H7971"\w* among \w them|strong="H7971"\w* \w swarms|strong="H6157"\w* \w of|strong="H6157"\w* \w flies|strong="H6157"\w*, \w which|strong="H6854"\w* devoured \w them|strong="H7971"\w*; +\q2 \w and|strong="H7971"\w* \w frogs|strong="H6854"\w*, \w which|strong="H6854"\w* \w destroyed|strong="H7843"\w* \w them|strong="H7971"\w*. +\q1 +\v 46 \w He|strong="H5414"\w* also \w gave|strong="H5414"\w* \w their|strong="H5414"\w* \w increase|strong="H2981"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w caterpillar|strong="H2625"\w*, +\q2 \w and|strong="H3018"\w* \w their|strong="H5414"\w* \w labor|strong="H3018"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w locust|strong="H2625"\w*. +\q1 +\v 47 He \w destroyed|strong="H2026"\w* \w their|strong="H2026"\w* \w vines|strong="H1612"\w* \w with|strong="H8256"\w* \w hail|strong="H1259"\w*, +\q2 \w their|strong="H2026"\w* \w sycamore|strong="H8256"\w* fig \w trees|strong="H8256"\w* \w with|strong="H8256"\w* \w frost|strong="H2602"\w*. +\q1 +\v 48 He \w also|strong="H1259"\w* \w gave|strong="H5462"\w* \w over|strong="H5462"\w* \w their|strong="H5462"\w* \w livestock|strong="H4735"\w* \w to|strong="H5462"\w* \w the|strong="H5462"\w* \w hail|strong="H1259"\w*, +\q2 \w and|strong="H4735"\w* \w their|strong="H5462"\w* \w flocks|strong="H4735"\w* \w to|strong="H5462"\w* hot \w thunderbolts|strong="H7565"\w*. +\q1 +\v 49 \w He|strong="H7971"\w* threw \w on|strong="H7971"\w* \w them|strong="H7971"\w* \w the|strong="H7971"\w* \w fierceness|strong="H2740"\w* \w of|strong="H4397"\w* \w his|strong="H7971"\w* \w anger|strong="H5678"\w*, +\q2 \w wrath|strong="H5678"\w*, \w indignation|strong="H2195"\w*, \w and|strong="H7971"\w* \w trouble|strong="H6869"\w*, +\q2 \w and|strong="H7971"\w* \w a|strong="H3068"\w* \w band|strong="H4917"\w* \w of|strong="H4397"\w* \w angels|strong="H4397"\w* \w of|strong="H4397"\w* \w evil|strong="H7451"\w*. +\q1 +\v 50 \w He|strong="H3808"\w* \w made|strong="H6424"\w* \w a|strong="H3068"\w* \w path|strong="H5410"\w* \w for|strong="H5315"\w* \w his|strong="H2820"\w* anger. +\q2 \w He|strong="H3808"\w* didn’t \w spare|strong="H2820"\w* \w their|strong="H5462"\w* \w soul|strong="H5315"\w* \w from|strong="H5315"\w* \w death|strong="H4194"\w*, +\q2 \w but|strong="H3808"\w* \w gave|strong="H5462"\w* \w their|strong="H5462"\w* \w life|strong="H5315"\w* \w over|strong="H5462"\w* \w to|strong="H5315"\w* \w the|strong="H5462"\w* \w pestilence|strong="H1698"\w*, +\q1 +\v 51 \w and|strong="H4714"\w* \w struck|strong="H5221"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w in|strong="H4714"\w* \w Egypt|strong="H4714"\w*, +\q2 \w the|strong="H3605"\w* \w chief|strong="H7225"\w* \w of|strong="H1060"\w* \w their|strong="H3605"\w* strength \w in|strong="H4714"\w* \w the|strong="H3605"\w* tents \w of|strong="H1060"\w* \w Ham|strong="H2526"\w*. +\q1 +\v 52 \w But|strong="H5971"\w* \w he|strong="H5971"\w* \w led|strong="H5090"\w* \w out|strong="H5265"\w* \w his|strong="H5971"\w* \w own|strong="H5971"\w* \w people|strong="H5971"\w* \w like|strong="H4057"\w* \w sheep|strong="H6629"\w*, +\q2 \w and|strong="H5971"\w* \w guided|strong="H5090"\w* \w them|strong="H5090"\w* \w in|strong="H6629"\w* \w the|strong="H5971"\w* \w wilderness|strong="H4057"\w* \w like|strong="H4057"\w* \w a|strong="H3068"\w* \w flock|strong="H6629"\w*. +\q1 +\v 53 \w He|strong="H3808"\w* \w led|strong="H5148"\w* \w them|strong="H5148"\w* safely, \w so|strong="H3808"\w* \w that|strong="H3808"\w* \w they|strong="H3808"\w* weren’t \w afraid|strong="H6342"\w*, +\q2 \w but|strong="H3808"\w* \w the|strong="H3680"\w* \w sea|strong="H3220"\w* \w overwhelmed|strong="H3680"\w* \w their|strong="H3680"\w* enemies. +\q1 +\v 54 \w He|strong="H2088"\w* brought \w them|strong="H2088"\w* \w to|strong="H2022"\w* \w the|strong="H7069"\w* \w border|strong="H1366"\w* \w of|strong="H2022"\w* his \w sanctuary|strong="H6944"\w*, +\q2 \w to|strong="H2022"\w* \w this|strong="H2088"\w* \w mountain|strong="H2022"\w*, \w which|strong="H2088"\w* his \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w had|strong="H3225"\w* taken. +\q1 +\v 55 \w He|strong="H3478"\w* \w also|strong="H3478"\w* \w drove|strong="H1644"\w* \w out|strong="H1644"\w* \w the|strong="H6440"\w* \w nations|strong="H1471"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*, +\q2 \w allotted|strong="H5307"\w* \w them|strong="H6440"\w* \w for|strong="H6440"\w* \w an|strong="H6440"\w* \w inheritance|strong="H5159"\w* \w by|strong="H3478"\w* \w line|strong="H2256"\w*, +\q2 \w and|strong="H3478"\w* \w made|strong="H3478"\w* \w the|strong="H6440"\w* \w tribes|strong="H7626"\w* \w of|strong="H7626"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w dwell|strong="H7931"\w* \w in|strong="H3478"\w* \w their|strong="H6440"\w* tents. +\q1 +\v 56 \w Yet|strong="H3808"\w* \w they|strong="H3808"\w* \w tempted|strong="H5254"\w* \w and|strong="H8104"\w* \w rebelled|strong="H4784"\w* \w against|strong="H4784"\w* \w the|strong="H8104"\w* \w Most|strong="H5945"\w* \w High|strong="H5945"\w* \w God|strong="H3808"\w*, +\q2 \w and|strong="H8104"\w* didn’t \w keep|strong="H8104"\w* \w his|strong="H8104"\w* \w testimonies|strong="H5713"\w*, +\q1 +\v 57 but \w turned|strong="H2015"\w* \w back|strong="H5472"\w*, \w and|strong="H7198"\w* dealt treacherously \w like|strong="H2015"\w* \w their|strong="H2015"\w* fathers. +\q2 They were twisted \w like|strong="H2015"\w* \w a|strong="H3068"\w* \w deceitful|strong="H7423"\w* \w bow|strong="H7198"\w*. +\q1 +\v 58 \w For|strong="H7065"\w* they \w provoked|strong="H3707"\w* \w him|strong="H7065"\w* \w to|strong="H1116"\w* \w anger|strong="H3707"\w* \w with|strong="H7065"\w* their \w high|strong="H1116"\w* \w places|strong="H1116"\w*, +\q2 \w and|strong="H1116"\w* moved \w him|strong="H7065"\w* \w to|strong="H1116"\w* \w jealousy|strong="H7065"\w* \w with|strong="H7065"\w* their \w engraved|strong="H6456"\w* \w images|strong="H6456"\w*. +\q1 +\v 59 \w When|strong="H8085"\w* God \w heard|strong="H8085"\w* \w this|strong="H5674"\w*, \w he|strong="H3478"\w* \w was|strong="H3478"\w* \w angry|strong="H5674"\w*, +\q2 \w and|strong="H3478"\w* \w greatly|strong="H3966"\w* \w abhorred|strong="H3988"\w* \w Israel|strong="H3478"\w*, +\q1 +\v 60 so \w that|strong="H4908"\w* he \w abandoned|strong="H5203"\w* \w the|strong="H5203"\w* tent \w of|strong="H4908"\w* \w Shiloh|strong="H7887"\w*, +\q2 \w the|strong="H5203"\w* tent which he \w placed|strong="H7931"\w* \w among|strong="H7931"\w* men, +\q1 +\v 61 \w and|strong="H3027"\w* \w delivered|strong="H5414"\w* \w his|strong="H5414"\w* \w strength|strong="H5797"\w* \w into|strong="H3027"\w* \w captivity|strong="H7628"\w*, +\q2 \w his|strong="H5414"\w* \w glory|strong="H8597"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w adversary|strong="H6862"\w*’s \w hand|strong="H3027"\w*. +\q1 +\v 62 \w He|strong="H5971"\w* \w also|strong="H5971"\w* \w gave|strong="H5462"\w* \w his|strong="H5674"\w* \w people|strong="H5971"\w* \w over|strong="H5674"\w* \w to|strong="H5674"\w* \w the|strong="H5674"\w* \w sword|strong="H2719"\w*, +\q2 \w and|strong="H5971"\w* \w was|strong="H5159"\w* \w angry|strong="H5674"\w* \w with|strong="H5971"\w* \w his|strong="H5674"\w* \w inheritance|strong="H5159"\w*. +\q1 +\v 63 Fire devoured \w their|strong="H3808"\w* young men. +\q2 \w Their|strong="H3808"\w* \w virgins|strong="H1330"\w* \w had|strong="H3808"\w* \w no|strong="H3808"\w* \w wedding|strong="H1984"\w* song. +\q1 +\v 64 \w Their|strong="H5307"\w* \w priests|strong="H3548"\w* \w fell|strong="H5307"\w* \w by|strong="H3808"\w* \w the|strong="H3548"\w* \w sword|strong="H2719"\w*, +\q2 \w and|strong="H3548"\w* \w their|strong="H5307"\w* widows couldn’t \w weep|strong="H1058"\w*. +\q1 +\v 65 Then the Lord \w awakened|strong="H3364"\w* \w as|strong="H3364"\w* \w one|strong="H1368"\w* \w out|strong="H7442"\w* \w of|strong="H1368"\w* \w sleep|strong="H3463"\w*, +\q2 \w like|strong="H1368"\w* \w a|strong="H3068"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w* \w who|strong="H1368"\w* \w shouts|strong="H7442"\w* by reason \w of|strong="H1368"\w* \w wine|strong="H3196"\w*. +\q1 +\v 66 \w He|strong="H5414"\w* \w struck|strong="H5221"\w* \w his|strong="H5414"\w* \w adversaries|strong="H6862"\w* backward. +\q2 \w He|strong="H5414"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H5414"\w* \w a|strong="H3068"\w* \w perpetual|strong="H5769"\w* \w reproach|strong="H2781"\w*. +\q1 +\v 67 Moreover \w he|strong="H3808"\w* \w rejected|strong="H3988"\w* \w the|strong="H3808"\w* tent \w of|strong="H7626"\w* \w Joseph|strong="H3130"\w*, +\q2 \w and|strong="H7626"\w* didn’t choose \w the|strong="H3808"\w* \w tribe|strong="H7626"\w* \w of|strong="H7626"\w* Ephraim, +\q1 +\v 68 But chose \w the|strong="H3063"\w* \w tribe|strong="H7626"\w* \w of|strong="H7626"\w* \w Judah|strong="H3063"\w*, +\q2 \w Mount|strong="H2022"\w* \w Zion|strong="H6726"\w* \w which|strong="H2022"\w* \w he|strong="H3063"\w* loved. +\q1 +\v 69 \w He|strong="H1129"\w* \w built|strong="H1129"\w* \w his|strong="H1129"\w* \w sanctuary|strong="H4720"\w* \w like|strong="H3644"\w* \w the|strong="H1129"\w* \w heights|strong="H7311"\w*, +\q2 \w like|strong="H3644"\w* \w the|strong="H1129"\w* earth \w which|strong="H4720"\w* \w he|strong="H1129"\w* has \w established|strong="H3245"\w* \w forever|strong="H5769"\w*. +\q1 +\v 70 \w He|strong="H1732"\w* \w also|strong="H1732"\w* chose \w David|strong="H1732"\w* \w his|strong="H3947"\w* \w servant|strong="H5650"\w*, +\q2 \w and|strong="H5650"\w* \w took|strong="H3947"\w* \w him|strong="H3947"\w* \w from|strong="H3947"\w* \w the|strong="H3947"\w* \w sheepfolds|strong="H6629"\w*; +\q1 +\v 71 \w from|strong="H3478"\w* following \w the|strong="H7462"\w* \w ewes|strong="H5763"\w* \w that|strong="H5971"\w* \w have|strong="H5971"\w* \w their|strong="H3290"\w* \w young|strong="H5763"\w*, +\q2 \w he|strong="H5971"\w* \w brought|strong="H3478"\w* him \w to|strong="H3478"\w* \w be|strong="H3478"\w* \w the|strong="H7462"\w* \w shepherd|strong="H7462"\w* \w of|strong="H5971"\w* \w Jacob|strong="H3290"\w*, \w his|strong="H3478"\w* \w people|strong="H5971"\w*, +\q2 \w and|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w his|strong="H3478"\w* \w inheritance|strong="H5159"\w*. +\q1 +\v 72 So \w he|strong="H8394"\w* \w was|strong="H3824"\w* \w their|strong="H7462"\w* \w shepherd|strong="H7462"\w* according \w to|strong="H3824"\w* \w the|strong="H7462"\w* \w integrity|strong="H8537"\w* \w of|strong="H3709"\w* \w his|strong="H7462"\w* \w heart|strong="H3824"\w*, +\q2 \w and|strong="H3824"\w* \w guided|strong="H5148"\w* \w them|strong="H5148"\w* \w by|strong="H3824"\w* \w the|strong="H7462"\w* skillfulness \w of|strong="H3709"\w* \w his|strong="H7462"\w* \w hands|strong="H3709"\w*. +\b +\c 79 +\d A Psalm by Asaph. +\q1 +\v 1 God, \w the|strong="H7760"\w* \w nations|strong="H1471"\w* \w have|strong="H1471"\w* come \w into|strong="H7760"\w* \w your|strong="H7760"\w* \w inheritance|strong="H5159"\w*. +\q2 \w They|strong="H3389"\w* \w have|strong="H1471"\w* \w defiled|strong="H2930"\w* \w your|strong="H7760"\w* \w holy|strong="H6944"\w* \w temple|strong="H1964"\w*. +\q2 \w They|strong="H3389"\w* \w have|strong="H1471"\w* \w laid|strong="H7760"\w* \w Jerusalem|strong="H3389"\w* \w in|strong="H1471"\w* \w heaps|strong="H5856"\w*. +\q1 +\v 2 \w They|strong="H5414"\w* \w have|strong="H5650"\w* \w given|strong="H5414"\w* \w the|strong="H5414"\w* \w dead|strong="H5038"\w* \w bodies|strong="H5038"\w* \w of|strong="H5650"\w* \w your|strong="H5414"\w* \w servants|strong="H5650"\w* \w to|strong="H5414"\w* \w be|strong="H5414"\w* \w food|strong="H3978"\w* \w for|strong="H5650"\w* \w the|strong="H5414"\w* \w birds|strong="H5775"\w* \w of|strong="H5650"\w* \w the|strong="H5414"\w* \w sky|strong="H8064"\w*, +\q2 \w the|strong="H5414"\w* \w flesh|strong="H1320"\w* \w of|strong="H5650"\w* \w your|strong="H5414"\w* \w saints|strong="H2623"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w animals|strong="H2416"\w* \w of|strong="H5650"\w* \w the|strong="H5414"\w* \w earth|strong="H8064"\w*. +\q1 +\v 3 \w They|strong="H3389"\w* \w have|strong="H3389"\w* \w shed|strong="H8210"\w* \w their|strong="H5439"\w* \w blood|strong="H1818"\w* \w like|strong="H8210"\w* \w water|strong="H4325"\w* \w around|strong="H5439"\w* \w Jerusalem|strong="H3389"\w*. +\q2 There \w was|strong="H3389"\w* \w no|strong="H8210"\w* \w one|strong="H5439"\w* \w to|strong="H3389"\w* \w bury|strong="H6912"\w* \w them|strong="H5439"\w*. +\q1 +\v 4 We \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w reproach|strong="H2781"\w* \w to|strong="H1961"\w* \w our|strong="H1961"\w* \w neighbors|strong="H7934"\w*, +\q2 \w a|strong="H3068"\w* \w scoffing|strong="H3933"\w* \w and|strong="H2781"\w* \w derision|strong="H3933"\w* \w to|strong="H1961"\w* \w those|strong="H1961"\w* \w who|strong="H7934"\w* \w are|strong="H1961"\w* \w around|strong="H5439"\w* \w us|strong="H5439"\w*. +\q1 +\v 5 \w How|strong="H4100"\w* \w long|strong="H5704"\w*, \w Yahweh|strong="H3068"\w*? +\q2 \w Will|strong="H3068"\w* \w you|strong="H5704"\w* \w be|strong="H3068"\w* angry \w forever|strong="H5704"\w*? +\q2 \w Will|strong="H3068"\w* \w your|strong="H3068"\w* \w jealousy|strong="H7068"\w* \w burn|strong="H1197"\w* \w like|strong="H3644"\w* fire? +\q1 +\v 6 \w Pour|strong="H8210"\w* \w out|strong="H8210"\w* \w your|strong="H5921"\w* \w wrath|strong="H2534"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w* \w that|strong="H3045"\w* don’t \w know|strong="H3045"\w* \w you|strong="H5921"\w*, +\q2 \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w kingdoms|strong="H4467"\w* \w that|strong="H3045"\w* don’t \w call|strong="H7121"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w name|strong="H8034"\w*, +\q1 +\v 7 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3588"\w* devoured \w Jacob|strong="H3290"\w*, +\q2 \w and|strong="H3290"\w* \w destroyed|strong="H8074"\w* \w his|strong="H3588"\w* homeland. +\q1 +\v 8 Don’t \w hold|strong="H2142"\w* \w the|strong="H3588"\w* \w iniquities|strong="H5771"\w* \w of|strong="H5771"\w* \w our|strong="H3588"\w* \w forefathers|strong="H7223"\w* \w against|strong="H3966"\w* \w us|strong="H3588"\w*. +\q2 \w Let|strong="H2142"\w* \w your|strong="H3588"\w* tender \w mercies|strong="H7356"\w* \w speedily|strong="H4118"\w* \w meet|strong="H6923"\w* \w us|strong="H3588"\w*, +\q2 \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w are|strong="H7356"\w* \w in|strong="H2142"\w* desperate need. +\q1 +\v 9 \w Help|strong="H5826"\w* \w us|strong="H5921"\w*, God \w of|strong="H1697"\w* \w our|strong="H5921"\w* \w salvation|strong="H3468"\w*, \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w glory|strong="H3519"\w* \w of|strong="H1697"\w* \w your|strong="H5921"\w* \w name|strong="H8034"\w*. +\q2 \w Deliver|strong="H5337"\w* \w us|strong="H5921"\w*, \w and|strong="H1697"\w* \w forgive|strong="H3722"\w* \w our|strong="H5921"\w* \w sins|strong="H2403"\w*, \w for|strong="H5921"\w* \w your|strong="H5921"\w* \w name|strong="H8034"\w*’s \w sake|strong="H4616"\w*. +\q1 +\v 10 \w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w the|strong="H3045"\w* \w nations|strong="H1471"\w* say, “\w Where|strong="H4100"\w* \w is|strong="H4100"\w* \w their|strong="H3045"\w* God?” +\q2 Let \w it|strong="H3045"\w* \w be|strong="H1471"\w* \w known|strong="H3045"\w* among \w the|strong="H3045"\w* \w nations|strong="H1471"\w*, \w before|strong="H5869"\w* \w our|strong="H5650"\w* \w eyes|strong="H5869"\w*, +\q2 \w that|strong="H3045"\w* \w vengeance|strong="H5360"\w* \w for|strong="H5650"\w* \w your|strong="H3045"\w* \w servants|strong="H5650"\w*’ \w blood|strong="H1818"\w* \w is|strong="H4100"\w* being \w poured|strong="H8210"\w* \w out|strong="H8210"\w*. +\q1 +\v 11 \w Let|strong="H3498"\w* \w the|strong="H6440"\w* sighing \w of|strong="H1121"\w* \w the|strong="H6440"\w* prisoner come \w before|strong="H6440"\w* \w you|strong="H6440"\w*. +\q2 According \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w greatness|strong="H1433"\w* \w of|strong="H1121"\w* \w your|strong="H6440"\w* \w power|strong="H2220"\w*, \w preserve|strong="H3498"\w* \w those|strong="H1121"\w* \w who|strong="H1121"\w* \w are|strong="H1121"\w* sentenced \w to|strong="H6440"\w* \w death|strong="H8546"\w*. +\q1 +\v 12 \w Pay|strong="H7725"\w* \w back|strong="H7725"\w* \w to|strong="H7725"\w* \w our|strong="H7725"\w* \w neighbors|strong="H7934"\w* \w seven|strong="H7659"\w* \w times|strong="H7659"\w* \w into|strong="H7725"\w* \w their|strong="H7725"\w* \w bosom|strong="H2436"\w* +\q2 \w their|strong="H7725"\w* \w reproach|strong="H2781"\w* \w with|strong="H7725"\w* which \w they|strong="H2778"\w* have \w reproached|strong="H2778"\w* \w you|strong="H7725"\w*, Lord. +\q1 +\v 13 \w So|strong="H5608"\w* \w we|strong="H3068"\w*, \w your|strong="H3034"\w* \w people|strong="H5971"\w* \w and|strong="H5971"\w* \w sheep|strong="H6629"\w* \w of|strong="H5971"\w* \w your|strong="H3034"\w* \w pasture|strong="H4830"\w*, +\q2 \w will|strong="H5971"\w* \w give|strong="H3034"\w* \w you|strong="H3034"\w* \w thanks|strong="H3034"\w* \w forever|strong="H5769"\w*. +\q2 We \w will|strong="H5971"\w* \w praise|strong="H8416"\w* \w you|strong="H3034"\w* \w forever|strong="H5769"\w*, \w to|strong="H1755"\w* \w all|strong="H1755"\w* \w generations|strong="H1755"\w*. +\b +\c 80 +\d For the Chief Musician. To the tune of “The Lilies of the Covenant.” A Psalm by Asaph. +\q1 +\v 1 Hear us, Shepherd \w of|strong="H4210"\w* Israel, +\q2 you who \w lead|strong="H5329"\w* Joseph like \w a|strong="H3068"\w* flock, +\q2 you who sit above \w the|strong="H5329"\w* cherubim, shine out. +\q1 +\v 2 \w Before|strong="H3427"\w* Ephraim, Benjamin, \w and|strong="H3478"\w* Manasseh, stir \w up|strong="H7462"\w* \w your|strong="H7462"\w* \w might|strong="H3478"\w*! +\q2 \w Come|strong="H3478"\w* \w to|strong="H3478"\w* save \w us|strong="H3478"\w*! +\q1 +\v 3 Turn \w us|strong="H6440"\w* \w again|strong="H3212"\w*, God. +\q2 Cause \w your|strong="H6440"\w* \w face|strong="H6440"\w* \w to|strong="H3212"\w* shine, +\q2 \w and|strong="H3212"\w* \w we|strong="H3068"\w* \w will|strong="H3444"\w* \w be|strong="H6440"\w* saved. +\b +\q1 +\v 4 \w Yahweh|strong="H3068"\w* God \w of|strong="H6440"\w* Armies, +\q2 how \w long|strong="H6440"\w* \w will|strong="H7725"\w* \w you|strong="H6440"\w* \w be|strong="H6440"\w* angry \w against|strong="H6440"\w* \w the|strong="H6440"\w* prayer \w of|strong="H6440"\w* \w your|strong="H6440"\w* people? +\q1 +\v 5 \w You|strong="H5704"\w* \w have|strong="H3068"\w* fed \w them|strong="H5704"\w* \w with|strong="H3068"\w* \w the|strong="H3068"\w* bread \w of|strong="H3068"\w* tears, +\q2 \w and|strong="H3068"\w* given \w them|strong="H5704"\w* tears \w to|strong="H5704"\w* drink \w in|strong="H3068"\w* large measure. +\q1 +\v 6 \w You|strong="H8248"\w* \w make|strong="H8248"\w* \w us|strong="H8248"\w* \w a|strong="H3068"\w* source \w of|strong="H3899"\w* contention \w to|strong="H3899"\w* \w our|strong="H8248"\w* neighbors. +\q2 \w Our|strong="H8248"\w* enemies laugh among themselves. +\q1 +\v 7 \w Turn|strong="H7760"\w* \w us|strong="H7760"\w* again, God \w of|strong="H7760"\w* Armies. +\q2 Cause \w your|strong="H7760"\w* face \w to|strong="H4066"\w* shine, +\q2 \w and|strong="H4066"\w* \w we|strong="H3068"\w* \w will|strong="H7934"\w* \w be|strong="H7760"\w* saved. +\b +\q1 +\v 8 \w You|strong="H6440"\w* \w brought|strong="H7725"\w* \w a|strong="H3068"\w* vine \w out|strong="H6440"\w* \w of|strong="H6440"\w* Egypt. +\q2 \w You|strong="H6440"\w* drove \w out|strong="H6440"\w* \w the|strong="H6440"\w* \w nations|strong="H6440"\w*, \w and|strong="H7725"\w* planted \w it|strong="H7725"\w*. +\q1 +\v 9 \w You|strong="H1471"\w* cleared \w the|strong="H1644"\w* ground \w for|strong="H4714"\w* \w it|strong="H1644"\w*. +\q2 \w It|strong="H1644"\w* \w took|strong="H5265"\w* deep root, \w and|strong="H4714"\w* filled \w the|strong="H1644"\w* land. +\q1 +\v 10 \w The|strong="H6440"\w* mountains \w were|strong="H6440"\w* \w covered|strong="H4390"\w* \w with|strong="H4390"\w* \w its|strong="H4390"\w* shadow. +\q2 \w Its|strong="H4390"\w* boughs \w were|strong="H6440"\w* \w like|strong="H4390"\w* God’s cedars. +\q1 +\v 11 \w It|strong="H3680"\w* sent out \w its|strong="H3680"\w* \w branches|strong="H6057"\w* \w to|strong="H2022"\w* \w the|strong="H3680"\w* sea, +\q2 \w its|strong="H3680"\w* shoots \w to|strong="H2022"\w* \w the|strong="H3680"\w* River. +\q1 +\v 12 Why \w have|strong="H5104"\w* \w you|strong="H7971"\w* broken \w down|strong="H7971"\w* \w its|strong="H3220"\w* walls, +\q2 \w so|strong="H7971"\w* \w that|strong="H5704"\w* \w all|strong="H5704"\w* those who pass \w by|strong="H5704"\w* \w the|strong="H5704"\w* \w way|strong="H7971"\w* pluck \w it|strong="H5704"\w*? +\q1 +\v 13 \w The|strong="H3605"\w* boar \w out|strong="H6555"\w* \w of|strong="H1870"\w* \w the|strong="H3605"\w* wood ravages \w it|strong="H5674"\w*. +\q2 \w The|strong="H3605"\w* wild animals \w of|strong="H1870"\w* \w the|strong="H3605"\w* field feed \w on|strong="H5674"\w* \w it|strong="H5674"\w*. +\q1 +\v 14 Turn again, \w we|strong="H3068"\w* beg you, God \w of|strong="H7704"\w* Armies. +\q2 Look down \w from|strong="H7704"\w* heaven, \w and|strong="H7704"\w* see, \w and|strong="H7704"\w* visit this vine, +\q1 +\v 15 \w the|strong="H7200"\w* stock \w which|strong="H6635"\w* \w your|strong="H7200"\w* \w right|strong="H5027"\w* hand planted, +\q2 \w the|strong="H7200"\w* branch \w that|strong="H7200"\w* \w you|strong="H7725"\w* \w made|strong="H6485"\w* strong \w for|strong="H6635"\w* yourself. +\q1 +\v 16 \w It|strong="H5921"\w*’s burned \w with|strong="H5921"\w* fire. +\q2 \w It|strong="H5921"\w*’s cut \w down|strong="H5921"\w*. +\q2 \w They|strong="H5921"\w* perish \w at|strong="H5921"\w* \w your|strong="H5921"\w* rebuke. +\q1 +\v 17 Let \w your|strong="H6440"\w* hand \w be|strong="H6440"\w* \w on|strong="H6440"\w* \w the|strong="H6440"\w* \w man|strong="H6440"\w* \w of|strong="H6440"\w* \w your|strong="H6440"\w* right hand, +\q2 \w on|strong="H6440"\w* \w the|strong="H6440"\w* son \w of|strong="H6440"\w* \w man|strong="H6440"\w* \w whom|strong="H6440"\w* \w you|strong="H6440"\w* \w made|strong="H8313"\w* strong \w for|strong="H6440"\w* yourself. +\q1 +\v 18 \w So|strong="H1961"\w* \w we|strong="H3068"\w* \w will|strong="H1961"\w* \w not|strong="H1961"\w* \w turn|strong="H1961"\w* away \w from|strong="H5921"\w* \w you|strong="H5921"\w*. +\q2 Revive \w us|strong="H5921"\w*, \w and|strong="H1121"\w* \w we|strong="H3068"\w* \w will|strong="H1961"\w* call \w on|strong="H5921"\w* \w your|strong="H5921"\w* name. +\q1 +\v 19 \w Turn|strong="H5472"\w* \w us|strong="H2421"\w* again, \w Yahweh|strong="H3068"\w* \w God|strong="H3808"\w* \w of|strong="H8034"\w* \w Armies|strong="H3808"\w*. +\q2 \w Cause|strong="H7121"\w* \w your|strong="H4480"\w* face \w to|strong="H7121"\w* shine, \w and|strong="H2421"\w* \w we|strong="H3068"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w saved|strong="H2421"\w*. +\c 81 +\d For the Chief Musician. On an instrument of Gath. By Asaph. +\q1 +\v 1 Sing aloud \w to|strong="H5921"\w* God, \w our|strong="H5921"\w* strength! +\q2 Make \w a|strong="H3068"\w* joyful shout \w to|strong="H5921"\w* \w the|strong="H5921"\w* God \w of|strong="H5921"\w* Jacob! +\q1 +\v 2 \w Raise|strong="H7321"\w* \w a|strong="H3068"\w* song, \w and|strong="H3290"\w* bring here \w the|strong="H7321"\w* tambourine, +\q2 \w the|strong="H7321"\w* pleasant lyre \w with|strong="H7442"\w* \w the|strong="H7321"\w* harp. +\q1 +\v 3 Blow \w the|strong="H5414"\w* trumpet \w at|strong="H5414"\w* \w the|strong="H5414"\w* New Moon, +\q2 \w at|strong="H5414"\w* \w the|strong="H5414"\w* full moon, \w on|strong="H5375"\w* \w our|strong="H5414"\w* feast day. +\q1 +\v 4 \w For|strong="H3117"\w* \w it|strong="H3117"\w* \w is|strong="H3117"\w* \w a|strong="H3068"\w* statute \w for|strong="H3117"\w* Israel, +\q2 \w an|strong="H8628"\w* ordinance \w of|strong="H3117"\w* \w the|strong="H3117"\w* God \w of|strong="H3117"\w* Jacob. +\q1 +\v 5 \w He|strong="H1931"\w* \w appointed|strong="H2706"\w* \w it|strong="H1931"\w* \w in|strong="H3478"\w* Joseph \w for|strong="H3588"\w* \w a|strong="H3068"\w* covenant, +\q2 \w when|strong="H3588"\w* \w he|strong="H1931"\w* \w went|strong="H3478"\w* out over \w the|strong="H3588"\w* land \w of|strong="H4941"\w* Egypt, +\q2 \w I|strong="H3588"\w* \w heard|strong="H3588"\w* \w a|strong="H3068"\w* language \w that|strong="H3588"\w* \w I|strong="H3588"\w* didn’t know. +\q1 +\v 6 “\w I|strong="H5921"\w* \w removed|strong="H3318"\w* \w his|strong="H7760"\w* shoulder \w from|strong="H3318"\w* \w the|strong="H5921"\w* burden. +\q2 \w His|strong="H7760"\w* hands \w were|strong="H4714"\w* freed \w from|strong="H3318"\w* \w the|strong="H5921"\w* basket. +\q1 +\v 7 \w You|strong="H3709"\w* called \w in|strong="H5493"\w* trouble, \w and|strong="H3709"\w* I \w delivered|strong="H5674"\w* \w you|strong="H3709"\w*. +\q2 I answered \w you|strong="H3709"\w* \w in|strong="H5493"\w* \w the|strong="H5674"\w* secret place \w of|strong="H3709"\w* thunder. +\q2 I tested \w you|strong="H3709"\w* \w at|strong="H3709"\w* \w the|strong="H5674"\w* waters \w of|strong="H3709"\w* Meribah.” \qs Selah.\qs* +\b +\q1 +\v 8 “\w Hear|strong="H6030"\w*, \w my|strong="H5921"\w* people, \w and|strong="H6030"\w* \w I|strong="H5921"\w* \w will|strong="H4325"\w* \w testify|strong="H6030"\w* \w to|strong="H5921"\w* \w you|strong="H5921"\w*, +\q2 Israel, if \w you|strong="H5921"\w* would listen \w to|strong="H5921"\w* \w me|strong="H5921"\w*! +\q1 +\v 9 There \w shall|strong="H5971"\w* \w be|strong="H3478"\w* \w no|strong="H3478"\w* strange god \w in|strong="H3478"\w* \w you|strong="H5971"\w*, +\q2 neither \w shall|strong="H5971"\w* \w you|strong="H5971"\w* \w worship|strong="H3478"\w* any foreign god. +\q1 +\v 10 \w I|strong="H3808"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w*, \w your|strong="H1961"\w* \w God|strong="H3808"\w*, +\q2 \w who|strong="H2114"\w* \w brought|strong="H1961"\w* \w you|strong="H3808"\w* \w up|strong="H1961"\w* \w out|strong="H3808"\w* \w of|strong="H3808"\w* \w the|strong="H7812"\w* land \w of|strong="H3808"\w* Egypt. +\q2 Open \w your|strong="H1961"\w* mouth wide, \w and|strong="H7812"\w* \w I|strong="H3808"\w* \w will|strong="H1961"\w* fill \w it|strong="H1961"\w*. +\q1 +\v 11 \w But|strong="H3068"\w* \w my|strong="H3068"\w* people didn’t listen \w to|strong="H3068"\w* \w my|strong="H3068"\w* voice. +\q2 Israel desired none \w of|strong="H3068"\w* \w me|strong="H5927"\w*. +\q1 +\v 12 \w So|strong="H3808"\w* \w I|strong="H3808"\w* \w let|strong="H3808"\w* \w them|strong="H8085"\w* \w go|strong="H5971"\w* after \w the|strong="H8085"\w* stubbornness \w of|strong="H6963"\w* \w their|strong="H8085"\w* hearts, +\q2 \w that|strong="H5971"\w* \w they|strong="H3808"\w* \w might|strong="H3478"\w* walk \w in|strong="H3478"\w* \w their|strong="H8085"\w* \w own|strong="H5971"\w* counsels. +\q1 +\v 13 Oh \w that|strong="H3820"\w* \w my|strong="H7971"\w* \w people|strong="H3820"\w* would listen \w to|strong="H3212"\w* \w me|strong="H7971"\w*, +\q2 \w that|strong="H3820"\w* Israel would \w walk|strong="H3212"\w* \w in|strong="H3212"\w* \w my|strong="H7971"\w* ways! +\q1 +\v 14 \w I|strong="H8085"\w* \w would|strong="H3478"\w* soon subdue \w their|strong="H8085"\w* enemies, +\q2 \w and|strong="H1980"\w* \w turn|strong="H5971"\w* \w my|strong="H8085"\w* hand \w against|strong="H8085"\w* \w their|strong="H8085"\w* adversaries. +\q1 +\v 15 \w The|strong="H5921"\w* haters \w of|strong="H3027"\w* \w Yahweh|strong="H3068"\w* \w would|strong="H6862"\w* cringe \w before|strong="H5921"\w* \w him|strong="H5921"\w*, +\q2 \w and|strong="H7725"\w* \w their|strong="H7725"\w* \w punishment|strong="H3027"\w* \w would|strong="H6862"\w* last forever. +\q1 +\v 16 \w But|strong="H1961"\w* \w he|strong="H3068"\w* \w would|strong="H3068"\w* \w have|strong="H1961"\w* \w also|strong="H3068"\w* fed \w them|strong="H8130"\w* \w with|strong="H3068"\w* \w the|strong="H3068"\w* finest \w of|strong="H3068"\w* \w the|strong="H3068"\w* wheat. +\q2 \w I|strong="H6256"\w* \w will|strong="H3068"\w* satisfy \w you|strong="H8130"\w* \w with|strong="H3068"\w* honey out \w of|strong="H3068"\w* \w the|strong="H3068"\w* rock.” +\c 82 +\d A Psalm by Asaph. +\q1 +\v 1 God presides \w in|strong="H7130"\w* \w the|strong="H8199"\w* great \w assembly|strong="H5712"\w*. +\q2 \w He|strong="H7130"\w* \w judges|strong="H8199"\w* \w among|strong="H7130"\w* \w the|strong="H8199"\w* gods. +\q1 +\v 2 “\w How|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H7563"\w* \w you|strong="H6440"\w* \w judge|strong="H8199"\w* \w unjustly|strong="H5766"\w*, +\q2 \w and|strong="H6440"\w* \w show|strong="H5375"\w* \w partiality|strong="H5375"\w* \w to|strong="H5704"\w* \w the|strong="H6440"\w* \w wicked|strong="H7563"\w*?” \qs \+w Selah|strong="H5542"\+w*.\qs* +\b +\q1 +\v 3 “\w Defend|strong="H8199"\w* \w the|strong="H8199"\w* \w weak|strong="H1800"\w*, \w the|strong="H8199"\w* \w poor|strong="H6041"\w*, \w and|strong="H6041"\w* \w the|strong="H8199"\w* \w fatherless|strong="H3490"\w*. +\q2 Maintain \w the|strong="H8199"\w* \w rights|strong="H1800"\w* \w of|strong="H8199"\w* \w the|strong="H8199"\w* \w poor|strong="H6041"\w* \w and|strong="H6041"\w* \w oppressed|strong="H6041"\w*. +\q1 +\v 4 \w Rescue|strong="H5337"\w* \w the|strong="H3027"\w* \w weak|strong="H1800"\w* \w and|strong="H3027"\w* \w needy|strong="H1800"\w*. +\q2 \w Deliver|strong="H5337"\w* \w them|strong="H3027"\w* \w out|strong="H5337"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w wicked|strong="H7563"\w*.” +\q1 +\v 5 \w They|strong="H3808"\w* don’t \w know|strong="H3045"\w*, \w neither|strong="H3808"\w* \w do|strong="H3605"\w* \w they|strong="H3808"\w* \w understand|strong="H3045"\w*. +\q2 \w They|strong="H3808"\w* \w walk|strong="H1980"\w* \w back|strong="H1980"\w* \w and|strong="H1980"\w* \w forth|strong="H1980"\w* \w in|strong="H1980"\w* \w darkness|strong="H2825"\w*. +\q2 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w foundations|strong="H4144"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* earth \w are|strong="H3045"\w* \w shaken|strong="H4131"\w*. +\q1 +\v 6 \w I|strong="H1121"\w* said, “\w You|strong="H3605"\w* \w are|strong="H1121"\w* gods, +\q2 \w all|strong="H3605"\w* \w of|strong="H1121"\w* \w you|strong="H3605"\w* \w are|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w Most|strong="H5945"\w* \w High|strong="H5945"\w*. +\q1 +\v 7 Nevertheless you \w shall|strong="H8269"\w* \w die|strong="H4191"\w* \w like|strong="H4191"\w* \w men|strong="H8269"\w*, +\q2 \w and|strong="H8269"\w* \w fall|strong="H5307"\w* \w like|strong="H4191"\w* one \w of|strong="H8269"\w* \w the|strong="H4191"\w* \w rulers|strong="H8269"\w*.” +\q1 +\v 8 \w Arise|strong="H6965"\w*, God, \w judge|strong="H8199"\w* \w the|strong="H3605"\w* earth, +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w inherit|strong="H5157"\w* \w all|strong="H3605"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*. +\c 83 +\d A song. A Psalm by Asaph. +\q1 +\v 1 God, don’t keep silent. +\q2 Don’t keep silent, +\q2 and don’t \w be|strong="H7892"\w* still, God. +\q1 +\v 2 \w For|strong="H8252"\w*, behold, your enemies are stirred up. +\q2 Those who hate you have lifted up their heads. +\q1 +\v 3 \w They|strong="H3588"\w* conspire \w with|strong="H7218"\w* cunning \w against|strong="H8130"\w* \w your|strong="H5375"\w* people. +\q2 \w They|strong="H3588"\w* plot \w against|strong="H8130"\w* \w your|strong="H5375"\w* cherished ones. +\q1 +\v 4 “\w Come|strong="H5971"\w*,” \w they|strong="H5921"\w* say, “let’s destroy \w them|strong="H5921"\w* \w as|strong="H5971"\w* \w a|strong="H3068"\w* \w nation|strong="H5971"\w*, +\q2 \w that|strong="H5971"\w* \w the|strong="H5921"\w* name \w of|strong="H5971"\w* \w Israel|strong="H5971"\w* \w may|strong="H5971"\w* \w be|strong="H5971"\w* remembered no \w more|strong="H5921"\w*.” +\q1 +\v 5 \w For|strong="H8034"\w* \w they|strong="H3808"\w* \w have|strong="H1471"\w* conspired together \w with|strong="H3212"\w* \w one|strong="H3808"\w* \w mind|strong="H2142"\w*. +\q2 \w They|strong="H3808"\w* form \w an|strong="H3478"\w* alliance \w against|strong="H3212"\w* \w you|strong="H3808"\w*. +\q1 +\v 6 \w The|strong="H5921"\w* tents \w of|strong="H5921"\w* Edom \w and|strong="H1285"\w* \w the|strong="H5921"\w* Ishmaelites; +\q2 Moab, \w and|strong="H1285"\w* \w the|strong="H5921"\w* Hagrites; +\q1 +\v 7 Gebal, Ammon, \w and|strong="H4124"\w* Amalek; +\q2 Philistia with the inhabitants \w of|strong="H4124"\w* Tyre; +\q1 +\v 8 Assyria also \w is|strong="H3427"\w* joined \w with|strong="H5973"\w* \w them|strong="H3427"\w*. +\q2 \w They|strong="H5983"\w* \w have|strong="H5973"\w* helped \w the|strong="H5973"\w* children \w of|strong="H3427"\w* Lot. \qs Selah.\qs* +\q1 +\v 9 Do \w to|strong="H1961"\w* \w them|strong="H1961"\w* \w as|strong="H1961"\w* \w you|strong="H5973"\w* \w did|strong="H1571"\w* \w to|strong="H1961"\w* Midian, +\q2 \w as|strong="H1961"\w* \w to|strong="H1961"\w* Sisera, \w as|strong="H1961"\w* \w to|strong="H1961"\w* Jabin, \w at|strong="H1961"\w* \w the|strong="H1961"\w* river Kishon; +\q1 +\v 10 \w who|strong="H1992"\w* perished \w at|strong="H6213"\w* Endor, +\q2 \w who|strong="H1992"\w* became \w as|strong="H6213"\w* dung \w for|strong="H6213"\w* \w the|strong="H6213"\w* earth. +\q1 +\v 11 Make \w their|strong="H1961"\w* nobles \w like|strong="H1961"\w* Oreb \w and|strong="H1961"\w* Zeeb, +\q2 yes, all \w their|strong="H1961"\w* princes \w like|strong="H1961"\w* Zebah \w and|strong="H1961"\w* Zalmunna, +\q2 +\v 12 \w who|strong="H3605"\w* said, “Let’s \w take|strong="H7896"\w* possession \w of|strong="H3605"\w* God’s pasture lands.” +\q1 +\v 13 \w My|strong="H3423"\w* God, make \w them|strong="H3423"\w* like tumbleweed, +\q2 like chaff before \w the|strong="H3423"\w* wind. +\q1 +\v 14 \w As|strong="H6440"\w* \w the|strong="H6440"\w* fire \w that|strong="H7307"\w* burns \w the|strong="H6440"\w* forest, +\q2 \w as|strong="H6440"\w* \w the|strong="H6440"\w* flame \w that|strong="H7307"\w* \w sets|strong="H7896"\w* \w the|strong="H6440"\w* mountains \w on|strong="H6440"\w* fire, +\q2 +\v 15 so pursue \w them|strong="H3857"\w* \w with|strong="H1197"\w* your tempest, +\q2 \w and|strong="H2022"\w* terrify \w them|strong="H3857"\w* \w with|strong="H1197"\w* your storm. +\q1 +\v 16 Fill \w their|strong="H3651"\w* faces \w with|strong="H3651"\w* confusion, +\q2 \w that|strong="H3651"\w* \w they|strong="H3651"\w* may seek \w your|strong="H7291"\w* name, \w Yahweh|strong="H3068"\w*. +\q1 +\v 17 Let \w them|strong="H6440"\w* \w be|strong="H3068"\w* disappointed \w and|strong="H3068"\w* dismayed forever. +\q2 Yes, let \w them|strong="H6440"\w* \w be|strong="H3068"\w* confounded \w and|strong="H3068"\w* perish; +\q1 +\v 18 \w that|strong="H5704"\w* \w they|strong="H5704"\w* may know \w that|strong="H5704"\w* \w you|strong="H5704"\w* alone, whose name is \w Yahweh|strong="H3068"\w*, +\q2 are \w the|strong="H5704"\w* Most High \w over|strong="H5704"\w* \w all|strong="H5704"\w* \w the|strong="H5704"\w* earth. +\c 84 +\d For the Chief Musician. On an instrument of Gath. A Psalm by the sons of Korah. +\q1 +\v 1 How lovely \w are|strong="H1121"\w* \w your|strong="H5921"\w* dwellings, +\q2 \w Yahweh|strong="H3068"\w* \w of|strong="H1121"\w* Armies! +\q1 +\v 2 \w My|strong="H3068"\w* soul longs, \w and|strong="H3068"\w* \w even|strong="H3068"\w* faints \w for|strong="H3068"\w* \w the|strong="H3068"\w* courts \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w My|strong="H3068"\w* heart \w and|strong="H3068"\w* \w my|strong="H3068"\w* flesh cry \w out|strong="H4100"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* living \w God|strong="H3068"\w*. +\q1 +\v 3 \w Yes|strong="H1571"\w*, \w the|strong="H3068"\w* sparrow \w has|strong="H3068"\w* \w found|strong="H1571"\w* \w a|strong="H3068"\w* \w home|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H3068"\w* swallow \w a|strong="H3068"\w* nest \w for|strong="H7442"\w* \w herself|strong="H5315"\w*, \w where|strong="H2691"\w* \w she|strong="H3820"\w* \w may|strong="H3068"\w* \w have|strong="H3068"\w* \w her|strong="H1571"\w* young, +\q2 near \w your|strong="H3068"\w* altars, \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* Armies, \w my|strong="H3068"\w* King, \w and|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*. +\q1 +\v 4 Blessed \w are|strong="H3068"\w* those \w who|strong="H3068"\w* dwell \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w house|strong="H1004"\w*. +\q2 \w They|strong="H3068"\w* \w are|strong="H3068"\w* always praising \w you|strong="H4672"\w*. \qs Selah.\qs* +\q1 +\v 5 Blessed \w are|strong="H1004"\w* \w those|strong="H3427"\w* whose strength \w is|strong="H1004"\w* \w in|strong="H3427"\w* \w you|strong="H1004"\w*, +\q2 \w who|strong="H3427"\w* \w have|strong="H1004"\w* \w set|strong="H3427"\w* \w their|strong="H3427"\w* hearts \w on|strong="H3427"\w* \w a|strong="H3068"\w* pilgrimage. +\q1 +\v 6 Passing through \w the|strong="H5797"\w* valley \w of|strong="H3824"\w* Weeping, \w they|strong="H3824"\w* make it \w a|strong="H3068"\w* place \w of|strong="H3824"\w* springs. +\q2 Yes, \w the|strong="H5797"\w* autumn rain covers it \w with|strong="H3824"\w* blessings. +\q1 +\v 7 \w They|strong="H1571"\w* \w go|strong="H5674"\w* \w from|strong="H5674"\w* strength \w to|strong="H5674"\w* strength. +\q2 Every \w one|strong="H1571"\w* \w of|strong="H6010"\w* \w them|strong="H5674"\w* appears \w before|strong="H5674"\w* God \w in|strong="H1571"\w* Zion. +\q1 +\v 8 \w Yahweh|strong="H3068"\w*, God \w of|strong="H2428"\w* \w Armies|strong="H2428"\w*, hear \w my|strong="H7200"\w* prayer. +\q2 Listen, God \w of|strong="H2428"\w* Jacob. \qs Selah.\qs* +\q1 +\v 9 Behold, \w God|strong="H3068"\w* \w our|strong="H3068"\w* shield, +\q2 \w look|strong="H3068"\w* \w at|strong="H3068"\w* \w the|strong="H8085"\w* face \w of|strong="H3068"\w* \w your|strong="H3068"\w* anointed. +\q1 +\v 10 \w For|strong="H6440"\w* \w a|strong="H3068"\w* day \w in|strong="H6440"\w* \w your|strong="H6440"\w* courts \w is|strong="H6440"\w* better \w than|strong="H6440"\w* \w a|strong="H3068"\w* thousand. +\q2 \w I|strong="H7200"\w* would rather \w be|strong="H6440"\w* \w a|strong="H3068"\w* doorkeeper \w in|strong="H6440"\w* \w the|strong="H6440"\w* house \w of|strong="H6440"\w* \w my|strong="H7200"\w* God, +\q2 \w than|strong="H6440"\w* \w to|strong="H6440"\w* dwell \w in|strong="H6440"\w* \w the|strong="H6440"\w* tents \w of|strong="H6440"\w* wickedness. +\q1 +\v 11 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* God \w is|strong="H3117"\w* \w a|strong="H3068"\w* sun \w and|strong="H3117"\w* \w a|strong="H3068"\w* shield. +\q2 \w Yahweh|strong="H3068"\w* \w will|strong="H1004"\w* give grace \w and|strong="H3117"\w* glory. +\q2 \w He|strong="H3588"\w* withholds no \w good|strong="H2896"\w* \w thing|strong="H2896"\w* \w from|strong="H3117"\w* \w those|strong="H3588"\w* \w who|strong="H2896"\w* walk blamelessly. +\q1 +\v 12 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H3808"\w*, +\q2 blessed \w is|strong="H3068"\w* \w the|strong="H3588"\w* \w man|strong="H2896"\w* \w who|strong="H3068"\w* trusts \w in|strong="H1980"\w* \w you|strong="H3588"\w*. +\c 85 +\d For the Chief Musician. A Psalm by the sons of Korah. +\q1 +\v 1 \w Yahweh|strong="H3068"\w*, you \w have|strong="H1121"\w* been favorable \w to|strong="H1121"\w* \w your|strong="H1121"\w* land. +\q2 You \w have|strong="H1121"\w* restored \w the|strong="H1121"\w* fortunes \w of|strong="H1121"\w* Jacob. +\q1 +\v 2 \w You|strong="H7725"\w* \w have|strong="H3068"\w* forgiven \w the|strong="H3068"\w* iniquity \w of|strong="H3068"\w* \w your|strong="H3068"\w* people. +\q2 \w You|strong="H7725"\w* \w have|strong="H3068"\w* covered \w all|strong="H7725"\w* \w their|strong="H3068"\w* sin. \qs Selah.\qs* +\q1 +\v 3 \w You|strong="H3605"\w* \w have|strong="H5971"\w* \w taken|strong="H5375"\w* \w away|strong="H5375"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* wrath. +\q2 \w You|strong="H3605"\w* \w have|strong="H5971"\w* turned \w from|strong="H5971"\w* \w the|strong="H3605"\w* fierceness \w of|strong="H5971"\w* \w your|strong="H3605"\w* \w anger|strong="H5375"\w*. +\q1 +\v 4 \w Turn|strong="H7725"\w* \w us|strong="H7725"\w*, God \w of|strong="H3605"\w* \w our|strong="H3605"\w* salvation, +\q2 \w and|strong="H7725"\w* \w cause|strong="H7725"\w* \w your|strong="H3605"\w* indignation \w toward|strong="H7725"\w* \w us|strong="H7725"\w* \w to|strong="H7725"\w* \w cease|strong="H7725"\w*. +\q1 +\v 5 \w Will|strong="H7725"\w* \w you|strong="H7725"\w* \w be|strong="H7725"\w* \w angry|strong="H3708"\w* \w with|strong="H5973"\w* \w us|strong="H7725"\w* forever? +\q2 \w Will|strong="H7725"\w* \w you|strong="H7725"\w* \w draw|strong="H7725"\w* \w out|strong="H7725"\w* \w your|strong="H7725"\w* \w anger|strong="H3708"\w* \w to|strong="H7725"\w* \w all|strong="H7725"\w* generations? +\q1 +\v 6 Won’t \w you|strong="H1755"\w* revive us again, +\q2 \w that|strong="H1755"\w* \w your|strong="H4900"\w* people \w may|strong="H1755"\w* rejoice \w in|strong="H1755"\w* \w you|strong="H1755"\w*? +\q1 +\v 7 Show \w us|strong="H7725"\w* \w your|strong="H7725"\w* loving kindness, \w Yahweh|strong="H3068"\w*. +\q2 Grant \w us|strong="H7725"\w* \w your|strong="H7725"\w* salvation. +\q1 +\v 8 \w I|strong="H5414"\w* \w will|strong="H3068"\w* hear \w what|strong="H7200"\w* \w God|strong="H3068"\w*, \w Yahweh|strong="H3068"\w*, \w will|strong="H3068"\w* speak, +\q2 \w for|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* speak peace \w to|strong="H3068"\w* \w his|strong="H5414"\w* \w people|strong="H7200"\w*, \w his|strong="H5414"\w* saints; +\q2 \w but|strong="H7200"\w* \w let|strong="H5414"\w* \w them|strong="H5414"\w* \w not|strong="H5414"\w* \w turn|strong="H5414"\w* again \w to|strong="H3068"\w* folly. +\q1 +\v 9 \w Surely|strong="H3588"\w* \w his|strong="H3068"\w* salvation \w is|strong="H3068"\w* near \w those|strong="H8085"\w* \w who|strong="H5971"\w* fear \w him|strong="H7725"\w*, +\q2 \w that|strong="H3588"\w* glory \w may|strong="H3068"\w* dwell \w in|strong="H3068"\w* \w our|strong="H3068"\w* land. +\q1 +\v 10 Mercy \w and|strong="H3519"\w* truth meet together. +\q2 Righteousness \w and|strong="H3519"\w* peace \w have|strong="H7138"\w* kissed each other. +\q1 +\v 11 Truth springs out \w of|strong="H2617"\w* \w the|strong="H7965"\w* earth. +\q2 \w Righteousness|strong="H6664"\w* has looked down \w from|strong="H7965"\w* heaven. +\q1 +\v 12 Yes, \w Yahweh|strong="H3068"\w* \w will|strong="H8064"\w* give \w that|strong="H8064"\w* which \w is|strong="H6664"\w* good. +\q2 Our \w land|strong="H8064"\w* \w will|strong="H8064"\w* yield its increase. +\q1 +\v 13 Righteousness goes before \w him|strong="H5414"\w*, +\q2 \w and|strong="H3068"\w* prepares \w the|strong="H5414"\w* way \w for|strong="H3068"\w* \w his|strong="H5414"\w* steps. +\c 86 +\d A Prayer by David. +\q1 +\v 1 \w Hear|strong="H6030"\w*, \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w answer|strong="H6030"\w* \w me|strong="H6030"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w poor|strong="H6041"\w* \w and|strong="H3068"\w* \w needy|strong="H6041"\w*. +\q1 +\v 2 \w Preserve|strong="H8104"\w* \w my|strong="H8104"\w* \w soul|strong="H5315"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* am \w godly|strong="H2623"\w*. +\q2 \w You|strong="H3588"\w*, \w my|strong="H8104"\w* God, \w save|strong="H3467"\w* \w your|strong="H8104"\w* \w servant|strong="H5650"\w* \w who|strong="H5315"\w* trusts \w in|strong="H5315"\w* \w you|strong="H3588"\w*. +\q1 +\v 3 \w Be|strong="H3117"\w* \w merciful|strong="H2603"\w* \w to|strong="H3117"\w* \w me|strong="H7121"\w*, Lord, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w call|strong="H7121"\w* \w to|strong="H3117"\w* \w you|strong="H3588"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w* \w long|strong="H3117"\w*. +\q1 +\v 4 \w Bring|strong="H5375"\w* \w joy|strong="H8055"\w* \w to|strong="H5650"\w* \w the|strong="H3588"\w* \w soul|strong="H5315"\w* \w of|strong="H5650"\w* \w your|strong="H5375"\w* \w servant|strong="H5650"\w*, +\q2 \w for|strong="H3588"\w* \w to|strong="H5650"\w* \w you|strong="H3588"\w*, Lord, do \w I|strong="H3588"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w my|strong="H5375"\w* \w soul|strong="H5315"\w*. +\q1 +\v 5 \w For|strong="H3588"\w* \w you|strong="H3588"\w*, \w Lord|strong="H2617"\w*, \w are|strong="H7227"\w* \w good|strong="H2896"\w*, \w and|strong="H2617"\w* \w ready|strong="H2896"\w* \w to|strong="H7121"\w* \w forgive|strong="H5546"\w*, +\q2 \w abundant|strong="H7227"\w* \w in|strong="H7227"\w* \w loving|strong="H2896"\w* \w kindness|strong="H2617"\w* \w to|strong="H7121"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w call|strong="H7121"\w* \w on|strong="H7121"\w* \w you|strong="H3588"\w*. +\q1 +\v 6 \w Hear|strong="H7181"\w*, \w Yahweh|strong="H3068"\w*, \w my|strong="H3068"\w* \w prayer|strong="H8605"\w*. +\q2 \w Listen|strong="H7181"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* petitions. +\q1 +\v 7 \w In|strong="H3117"\w* \w the|strong="H3588"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w my|strong="H3588"\w* \w trouble|strong="H6869"\w* \w I|strong="H3588"\w* \w will|strong="H3117"\w* \w call|strong="H7121"\w* \w on|strong="H3117"\w* \w you|strong="H3588"\w*, +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3117"\w* \w answer|strong="H6030"\w* \w me|strong="H7121"\w*. +\q1 +\v 8 There \w is|strong="H4639"\w* no one \w like|strong="H3644"\w* \w you|strong="H3644"\w* among \w the|strong="H3644"\w* gods, Lord, +\q2 nor any \w deeds|strong="H4639"\w* \w like|strong="H3644"\w* your \w deeds|strong="H4639"\w*. +\q1 +\v 9 \w All|strong="H3605"\w* \w nations|strong="H1471"\w* \w you|strong="H6440"\w* \w have|strong="H1471"\w* \w made|strong="H6213"\w* \w will|strong="H1471"\w* come \w and|strong="H6440"\w* \w worship|strong="H7812"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, Lord. +\q2 \w They|strong="H6213"\w* \w shall|strong="H1471"\w* \w glorify|strong="H3513"\w* \w your|strong="H3605"\w* \w name|strong="H8034"\w*. +\q1 +\v 10 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H6213"\w* \w great|strong="H1419"\w*, \w and|strong="H1419"\w* \w do|strong="H6213"\w* \w wondrous|strong="H6381"\w* \w things|strong="H1419"\w*. +\q2 \w You|strong="H3588"\w* \w are|strong="H6213"\w* God \w alone|strong="H6213"\w*. +\q1 +\v 11 \w Teach|strong="H3384"\w* \w me|strong="H3372"\w* \w your|strong="H3068"\w* \w way|strong="H1870"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w I|strong="H1980"\w* \w will|strong="H3068"\w* \w walk|strong="H1980"\w* \w in|strong="H1980"\w* \w your|strong="H3068"\w* truth. +\q2 \w Make|strong="H8034"\w* \w my|strong="H3068"\w* \w heart|strong="H3824"\w* undivided \w to|strong="H1980"\w* \w fear|strong="H3372"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w*. +\q1 +\v 12 \w I|strong="H3605"\w* \w will|strong="H3824"\w* \w praise|strong="H3034"\w* \w you|strong="H3605"\w*, Lord \w my|strong="H3605"\w* God, \w with|strong="H3513"\w* \w my|strong="H3605"\w* \w whole|strong="H3605"\w* \w heart|strong="H3824"\w*. +\q2 \w I|strong="H3605"\w* \w will|strong="H3824"\w* \w glorify|strong="H3513"\w* \w your|strong="H3605"\w* \w name|strong="H8034"\w* \w forever|strong="H5769"\w* \w more|strong="H5769"\w*. +\q1 +\v 13 \w For|strong="H3588"\w* \w your|strong="H5921"\w* loving \w kindness|strong="H2617"\w* \w is|strong="H2617"\w* \w great|strong="H1419"\w* \w toward|strong="H5921"\w* \w me|strong="H5315"\w*. +\q2 \w You|strong="H3588"\w* \w have|strong="H3588"\w* \w delivered|strong="H5337"\w* \w my|strong="H5921"\w* \w soul|strong="H5315"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w lowest|strong="H8482"\w* \w Sheol|strong="H7585"\w*.\f + \fr 86:13 \ft Sheol is the place of the dead.\f* +\q1 +\v 14 \w God|strong="H3808"\w*, \w the|strong="H5921"\w* \w proud|strong="H2086"\w* \w have|strong="H2086"\w* \w risen|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H5921"\w* \w me|strong="H5315"\w*. +\q2 \w A|strong="H3068"\w* \w company|strong="H5712"\w* \w of|strong="H5921"\w* \w violent|strong="H6184"\w* \w men|strong="H6184"\w* \w have|strong="H2086"\w* \w sought|strong="H1245"\w* \w after|strong="H5921"\w* \w my|strong="H7760"\w* \w soul|strong="H5315"\w*, +\q2 \w and|strong="H6965"\w* \w they|strong="H3808"\w* don’t \w hold|strong="H6965"\w* \w regard|strong="H5921"\w* \w for|strong="H5921"\w* \w you|strong="H5921"\w* \w before|strong="H5048"\w* \w them|strong="H5921"\w*. +\q1 +\v 15 \w But|strong="H7227"\w* you, \w Lord|strong="H2617"\w*, \w are|strong="H7227"\w* \w a|strong="H3068"\w* \w merciful|strong="H7349"\w* \w and|strong="H2617"\w* \w gracious|strong="H2587"\w* God, +\q2 slow \w to|strong="H2617"\w* anger, \w and|strong="H2617"\w* \w abundant|strong="H7227"\w* \w in|strong="H7227"\w* loving \w kindness|strong="H2617"\w* \w and|strong="H2617"\w* truth. +\q1 +\v 16 \w Turn|strong="H6437"\w* \w to|strong="H5414"\w* \w me|strong="H5414"\w*, \w and|strong="H1121"\w* \w have|strong="H1121"\w* \w mercy|strong="H2603"\w* \w on|strong="H5414"\w* \w me|strong="H5414"\w*! +\q2 \w Give|strong="H5414"\w* \w your|strong="H5414"\w* \w strength|strong="H5797"\w* \w to|strong="H5414"\w* \w your|strong="H5414"\w* \w servant|strong="H5650"\w*. +\q2 \w Save|strong="H3467"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w your|strong="H5414"\w* \w servant|strong="H5650"\w*. +\q1 +\v 17 \w Show|strong="H7200"\w* \w me|strong="H7200"\w* \w a|strong="H3068"\w* sign \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w goodness|strong="H2896"\w*, +\q2 \w that|strong="H3588"\w* \w those|strong="H6213"\w* \w who|strong="H3068"\w* \w hate|strong="H8130"\w* \w me|strong="H7200"\w* \w may|strong="H3068"\w* \w see|strong="H7200"\w* \w it|strong="H3588"\w*, \w and|strong="H3068"\w* \w be|strong="H3068"\w* shamed, +\q2 \w because|strong="H3588"\w* \w you|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w helped|strong="H5826"\w* \w me|strong="H7200"\w*, \w and|strong="H3068"\w* \w comforted|strong="H5162"\w* \w me|strong="H7200"\w*. +\c 87 +\d A Psalm by the sons of Korah; a Song. +\q1 +\v 1 \w His|strong="H7141"\w* \w foundation|strong="H3248"\w* \w is|strong="H1121"\w* \w in|strong="H1121"\w* \w the|strong="H1121"\w* \w holy|strong="H6944"\w* \w mountains|strong="H2042"\w*. +\q2 +\v 2 \w Yahweh|strong="H3068"\w* loves \w the|strong="H3605"\w* \w gates|strong="H8179"\w* \w of|strong="H3068"\w* \w Zion|strong="H6726"\w* more \w than|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w dwellings|strong="H4908"\w* \w of|strong="H3068"\w* \w Jacob|strong="H3290"\w*. +\q1 +\v 3 \w Glorious|strong="H3513"\w* \w things|strong="H3513"\w* \w are|strong="H5892"\w* \w spoken|strong="H1696"\w* \w about|strong="H1696"\w* \w you|strong="H1696"\w*, \w city|strong="H5892"\w* \w of|strong="H5892"\w* God. \qs \+w Selah|strong="H5542"\+w*.\qs* +\q1 +\v 4 \w I|strong="H2009"\w* \w will|strong="H2088"\w* \w record|strong="H2142"\w* \w Rahab|strong="H7294"\w*\f + \fr 87:4 \ft Rahab is a reference to Egypt.\f* \w and|strong="H8033"\w* Babylon \w among|strong="H5973"\w* \w those|strong="H2088"\w* \w who|strong="H2088"\w* \w acknowledge|strong="H3045"\w* \w me|strong="H3205"\w*. +\q2 \w Behold|strong="H2009"\w*, \w Philistia|strong="H6429"\w*, \w Tyre|strong="H6865"\w*, \w and|strong="H8033"\w* \w also|strong="H2088"\w* \w Ethiopia|strong="H3568"\w*: +\q2 “\w This|strong="H2088"\w* \w one|strong="H2088"\w* \w was|strong="H2088"\w* \w born|strong="H3205"\w* \w there|strong="H8033"\w*.” +\q1 +\v 5 Yes, \w of|strong="H3205"\w* \w Zion|strong="H6726"\w* \w it|strong="H1931"\w* \w will|strong="H1931"\w* \w be|strong="H6726"\w* said, “\w This|strong="H1931"\w* \w one|strong="H1931"\w* \w and|strong="H6726"\w* \w that|strong="H1931"\w* \w one|strong="H1931"\w* \w was|strong="H1931"\w* \w born|strong="H3205"\w* \w in|strong="H3559"\w* \w her|strong="H3559"\w*;” +\q2 \w the|strong="H3205"\w* \w Most|strong="H5945"\w* \w High|strong="H5945"\w* \w himself|strong="H1931"\w* \w will|strong="H1931"\w* \w establish|strong="H3559"\w* \w her|strong="H3559"\w*. +\q1 +\v 6 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w count|strong="H5608"\w*, \w when|strong="H3068"\w* \w he|strong="H8033"\w* \w writes|strong="H3789"\w* \w up|strong="H3205"\w* \w the|strong="H3205"\w* \w peoples|strong="H5971"\w*, +\q2 “\w This|strong="H2088"\w* \w one|strong="H2088"\w* \w was|strong="H3068"\w* \w born|strong="H3205"\w* \w there|strong="H8033"\w*.” \qs \+w Selah|strong="H5542"\+w*.\qs* +\q1 +\v 7 \w Those|strong="H3605"\w* \w who|strong="H3605"\w* \w sing|strong="H7891"\w* \w as|strong="H3605"\w* \w well|strong="H4599"\w* \w as|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* dance say, +\q2 “\w All|strong="H3605"\w* \w my|strong="H3605"\w* \w springs|strong="H4599"\w* are \w in|strong="H3605"\w* \w you|strong="H3605"\w*.” +\c 88 +\d A Song. A Psalm by the sons of Korah. For the Chief Musician. To the tune of “The Suffering of Affliction.” A contemplation by Heman, the Ezrahite. +\q1 +\v 1 \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* God \w of|strong="H1121"\w* \w my|strong="H5921"\w* salvation, +\q2 \w I|strong="H5921"\w* \w have|strong="H1121"\w* cried day \w and|strong="H1121"\w* \w night|strong="H1121"\w* \w before|strong="H5921"\w* \w you|strong="H5921"\w*. +\q1 +\v 2 Let \w my|strong="H3068"\w* prayer enter \w into|strong="H3915"\w* \w your|strong="H3068"\w* \w presence|strong="H5048"\w*. +\q2 Turn \w your|strong="H3068"\w* ear \w to|strong="H3068"\w* \w my|strong="H3068"\w* \w cry|strong="H6817"\w*. +\q1 +\v 3 \w For|strong="H6440"\w* \w my|strong="H5186"\w* soul \w is|strong="H6440"\w* full \w of|strong="H6440"\w* troubles. +\q2 \w My|strong="H5186"\w* life draws \w near|strong="H6440"\w* \w to|strong="H6440"\w* Sheol.\f + \fr 88:3 \ft Sheol is the place of the dead.\f* +\q1 +\v 4 \w I|strong="H3588"\w* am counted among \w those|strong="H5315"\w* \w who|strong="H5315"\w* go \w down|strong="H5060"\w* \w into|strong="H2416"\w* \w the|strong="H3588"\w* \w pit|strong="H7585"\w*. +\q2 \w I|strong="H3588"\w* am \w like|strong="H2416"\w* \w a|strong="H3068"\w* \w man|strong="H5315"\w* \w who|strong="H5315"\w* \w has|strong="H3588"\w* \w no|strong="H5060"\w* help, +\q2 +\v 5 set apart \w among|strong="H5973"\w* \w the|strong="H1961"\w* dead, +\q2 \w like|strong="H1961"\w* \w the|strong="H1961"\w* slain \w who|strong="H1397"\w* \w lie|strong="H1961"\w* \w in|strong="H1961"\w* \w the|strong="H1961"\w* grave, +\q2 \w whom|strong="H1397"\w* \w you|strong="H5973"\w* remember \w no|strong="H1961"\w* \w more|strong="H1961"\w*. +\q2 They \w are|strong="H1961"\w* cut \w off|strong="H3381"\w* \w from|strong="H3381"\w* \w your|strong="H1961"\w* hand. +\q1 +\v 6 \w You|strong="H3808"\w* \w have|strong="H3027"\w* \w laid|strong="H7901"\w* \w me|strong="H4191"\w* \w in|strong="H4191"\w* \w the|strong="H2142"\w* lowest pit, +\q2 \w in|strong="H4191"\w* \w the|strong="H2142"\w* darkest depths. +\q1 +\v 7 \w Your|strong="H7896"\w* wrath lies heavily on \w me|strong="H7896"\w*. +\q2 You have afflicted \w me|strong="H7896"\w* with \w all|strong="H7896"\w* \w your|strong="H7896"\w* waves. \qs Selah.\qs* +\q1 +\v 8 \w You|strong="H3605"\w* \w have|strong="H3605"\w* taken \w my|strong="H3605"\w* friends \w from|strong="H5921"\w* \w me|strong="H5921"\w*. +\q2 \w You|strong="H3605"\w* \w have|strong="H3605"\w* \w made|strong="H3605"\w* \w me|strong="H5921"\w* \w an|strong="H5921"\w* abomination \w to|strong="H5921"\w* \w them|strong="H5921"\w*. +\q2 \w I|strong="H5921"\w* am confined, \w and|strong="H3605"\w* \w I|strong="H5921"\w* can’t escape. +\q1 +\v 9 \w My|strong="H3045"\w* eyes \w are|strong="H3045"\w* dim \w from|strong="H4480"\w* grief. +\q2 \w I|strong="H3045"\w* \w have|strong="H3045"\w* called \w on|strong="H3318"\w* \w you|strong="H3045"\w* daily, \w Yahweh|strong="H3068"\w*. +\q2 \w I|strong="H3045"\w* \w have|strong="H3045"\w* \w spread|strong="H3318"\w* \w out|strong="H3318"\w* \w my|strong="H3045"\w* hands \w to|strong="H3318"\w* \w you|strong="H3045"\w*. +\q1 +\v 10 \w Do|strong="H3068"\w* \w you|strong="H3605"\w* show wonders \w to|strong="H3068"\w* \w the|strong="H3605"\w* dead? +\q2 \w Do|strong="H3068"\w* \w the|strong="H3605"\w* departed spirits rise \w up|strong="H4480"\w* \w and|strong="H3068"\w* praise \w you|strong="H3605"\w*? \qs Selah.\qs* +\q1 +\v 11 \w Is|strong="H6213"\w* \w your|strong="H6213"\w* loving kindness declared \w in|strong="H6213"\w* \w the|strong="H6213"\w* grave? +\q2 \w Or|strong="H4191"\w* \w your|strong="H6213"\w* faithfulness \w in|strong="H6213"\w* Destruction? +\q1 +\v 12 \w Are|strong="H6913"\w* \w your|strong="H5608"\w* wonders made known \w in|strong="H6913"\w* \w the|strong="H5608"\w* dark? +\q2 \w Or|strong="H5608"\w* \w your|strong="H5608"\w* \w righteousness|strong="H2617"\w* \w in|strong="H6913"\w* \w the|strong="H5608"\w* land \w of|strong="H6913"\w* forgetfulness? +\q1 +\v 13 But \w to|strong="H3045"\w* \w you|strong="H3045"\w*, \w Yahweh|strong="H3068"\w*, \w I|strong="H3045"\w* \w have|strong="H3045"\w* cried. +\q2 \w In|strong="H3045"\w* \w the|strong="H3045"\w* morning, \w my|strong="H3045"\w* prayer comes \w before|strong="H3045"\w* \w you|strong="H3045"\w*. +\q1 +\v 14 \w Yahweh|strong="H3068"\w*, why \w do|strong="H3068"\w* \w you|strong="H1242"\w* reject \w my|strong="H3068"\w* soul? +\q2 Why \w do|strong="H3068"\w* \w you|strong="H1242"\w* hide \w your|strong="H3068"\w* face \w from|strong="H3068"\w* \w me|strong="H6923"\w*? +\q1 +\v 15 \w I|strong="H5315"\w* \w am|strong="H3068"\w* afflicted \w and|strong="H3068"\w* ready \w to|strong="H3068"\w* die \w from|strong="H4480"\w* \w my|strong="H3068"\w* youth \w up|strong="H4480"\w*. +\q2 \w While|strong="H5315"\w* \w I|strong="H5315"\w* suffer \w your|strong="H3068"\w* terrors, \w I|strong="H5315"\w* \w am|strong="H3068"\w* distracted. +\q1 +\v 16 \w Your|strong="H5375"\w* fierce wrath has gone \w over|strong="H5375"\w* me. +\q2 \w Your|strong="H5375"\w* terrors \w have|strong="H5375"\w* cut me \w off|strong="H5375"\w*. +\q1 +\v 17 \w They|strong="H5921"\w* \w came|strong="H5674"\w* \w around|strong="H5921"\w* \w me|strong="H5921"\w* \w like|strong="H5921"\w* water \w all|strong="H5921"\w* day \w long|strong="H5921"\w*. +\q2 \w They|strong="H5921"\w* completely \w engulfed|strong="H5921"\w* \w me|strong="H5921"\w*. +\q1 +\v 18 \w You|strong="H3605"\w* \w have|strong="H3117"\w* put lover \w and|strong="H3117"\w* friend \w far|strong="H5921"\w* \w from|strong="H5921"\w* \w me|strong="H5921"\w*, +\q2 \w and|strong="H3117"\w* \w my|strong="H3605"\w* friends \w into|strong="H5921"\w* darkness. +\c 89 +\d A contemplation by Ethan, the Ezrahite. +\q1 +\v 1 I will sing \w of|strong="H4905"\w* the loving kindness \w of|strong="H4905"\w* \w Yahweh|strong="H3068"\w* forever. +\q2 With my mouth, I will make known your faithfulness to all generations. +\q1 +\v 2 \w I|strong="H3045"\w* \w indeed|strong="H3068"\w* \w declare|strong="H3045"\w*, “\w Love|strong="H2617"\w* stands firm \w forever|strong="H5769"\w*. +\q2 \w You|strong="H3045"\w* established \w the|strong="H3068"\w* heavens. +\q2 \w Your|strong="H3068"\w* \w faithfulness|strong="H2617"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w them|strong="H3068"\w*.” +\b +\q1 +\v 3 “\w I|strong="H3588"\w* \w have|strong="H1129"\w* \w made|strong="H3559"\w* \w a|strong="H3068"\w* covenant \w with|strong="H8064"\w* \w my|strong="H3588"\w* chosen \w one|strong="H3588"\w*, +\q2 \w I|strong="H3588"\w* \w have|strong="H1129"\w* sworn \w to|strong="H3559"\w* David, \w my|strong="H3588"\w* servant, +\q1 +\v 4 ‘\w I|strong="H5650"\w* \w will|strong="H5650"\w* establish \w your|strong="H3772"\w* offspring forever, +\q2 \w and|strong="H1732"\w* build up \w your|strong="H3772"\w* throne \w to|strong="H1732"\w* \w all|strong="H3772"\w* generations.’” \qs Selah.\qs* +\q1 +\v 5 \w The|strong="H1129"\w* heavens \w will|strong="H2233"\w* \w praise|strong="H5769"\w* \w your|strong="H3559"\w* wonders, \w Yahweh|strong="H3068"\w*, +\q2 \w your|strong="H3559"\w* \w faithfulness|strong="H3559"\w* also \w in|strong="H1129"\w* \w the|strong="H1129"\w* assembly \w of|strong="H2233"\w* \w the|strong="H1129"\w* holy ones. +\q1 +\v 6 \w For|strong="H3068"\w* \w who|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* skies can \w be|strong="H3068"\w* compared \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*? +\q2 \w Who|strong="H3068"\w* among \w the|strong="H3068"\w* sons \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w heavenly|strong="H8064"\w* beings \w is|strong="H3068"\w* \w like|strong="H8064"\w* \w Yahweh|strong="H3068"\w*, +\q1 +\v 7 \w a|strong="H3068"\w* very awesome \w God|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* council \w of|strong="H1121"\w* \w the|strong="H3588"\w* holy \w ones|strong="H1121"\w*, +\q2 \w to|strong="H3068"\w* \w be|strong="H3068"\w* feared above \w all|strong="H3068"\w* \w those|strong="H1121"\w* \w who|strong="H4310"\w* \w are|strong="H1121"\w* around \w him|strong="H3588"\w*? +\q1 +\v 8 \w Yahweh|strong="H3068"\w*, God \w of|strong="H6918"\w* Armies, \w who|strong="H3605"\w* \w is|strong="H3605"\w* \w a|strong="H3068"\w* \w mighty|strong="H7227"\w* \w one|strong="H6918"\w*, \w like|strong="H5921"\w* \w you|strong="H3605"\w*? +\q2 \w Yah|strong="H3068"\w*, \w your|strong="H3605"\w* faithfulness \w is|strong="H3605"\w* \w around|strong="H5439"\w* \w you|strong="H3605"\w*. +\q1 +\v 9 \w You|strong="H3644"\w* rule \w the|strong="H3068"\w* pride \w of|strong="H3068"\w* \w the|strong="H3068"\w* sea. +\q2 \w When|strong="H3068"\w* \w its|strong="H5439"\w* waves rise up, \w you|strong="H3644"\w* calm \w them|strong="H5439"\w*. +\q1 +\v 10 You \w have|strong="H4910"\w* broken Rahab \w in|strong="H4910"\w* pieces, like one \w of|strong="H3220"\w* \w the|strong="H7623"\w* slain. +\q2 You \w have|strong="H4910"\w* scattered \w your|strong="H7623"\w* enemies \w with|strong="H3220"\w* \w your|strong="H7623"\w* mighty arm. +\q1 +\v 11 \w The|strong="H6340"\w* heavens \w are|strong="H2491"\w* yours. +\q2 \w The|strong="H6340"\w* earth \w also|strong="H5797"\w* \w is|strong="H2220"\w* yours, +\q2 \w the|strong="H6340"\w* world \w and|strong="H5797"\w* its fullness. +\q2 You \w have|strong="H2220"\w* founded them. +\q1 +\v 12 You have created \w the|strong="H3245"\w* north \w and|strong="H8064"\w* \w the|strong="H3245"\w* south. +\q2 Tabor \w and|strong="H8064"\w* Hermon rejoice \w in|strong="H8064"\w* \w your|strong="H8064"\w* name. +\q1 +\v 13 You \w have|strong="H8034"\w* \w a|strong="H3068"\w* mighty arm. +\q2 Your \w hand|strong="H3225"\w* \w is|strong="H8034"\w* strong, \w and|strong="H3225"\w* your \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w is|strong="H8034"\w* exalted. +\q1 +\v 14 Righteousness \w and|strong="H3027"\w* justice \w are|strong="H3027"\w* \w the|strong="H3027"\w* foundation \w of|strong="H3027"\w* \w your|strong="H3027"\w* throne. +\q2 Loving kindness \w and|strong="H3027"\w* truth go \w before|strong="H5973"\w* \w your|strong="H3027"\w* face. +\q1 +\v 15 Blessed \w are|strong="H4941"\w* \w the|strong="H6440"\w* people \w who|strong="H6664"\w* learn \w to|strong="H6440"\w* acclaim \w you|strong="H6440"\w*. +\q2 \w They|strong="H6440"\w* walk \w in|strong="H6440"\w* \w the|strong="H6440"\w* light \w of|strong="H6440"\w* \w your|strong="H6440"\w* \w presence|strong="H6440"\w*, \w Yahweh|strong="H3068"\w*. +\q1 +\v 16 \w In|strong="H1980"\w* \w your|strong="H3068"\w* name \w they|strong="H3068"\w* rejoice \w all|strong="H3045"\w* day. +\q2 \w In|strong="H1980"\w* \w your|strong="H3068"\w* righteousness, \w they|strong="H3068"\w* \w are|strong="H5971"\w* exalted. +\q1 +\v 17 \w For|strong="H8034"\w* \w you|strong="H3605"\w* \w are|strong="H3117"\w* \w the|strong="H3605"\w* glory \w of|strong="H3117"\w* \w their|strong="H3605"\w* strength. +\q2 \w In|strong="H3117"\w* \w your|strong="H3605"\w* favor, \w our|strong="H3605"\w* horn \w will|strong="H3117"\w* \w be|strong="H8034"\w* \w exalted|strong="H7311"\w*. +\q1 +\v 18 \w For|strong="H3588"\w* \w our|strong="H3588"\w* shield belongs \w to|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w our|strong="H3588"\w* king \w to|strong="H3588"\w* \w the|strong="H3588"\w* Holy \w One|strong="H3588"\w* \w of|strong="H7161"\w* Israel. +\b +\q1 +\v 19 \w Then|strong="H4428"\w* \w you|strong="H3588"\w* spoke \w in|strong="H3478"\w* vision \w to|strong="H3478"\w* \w your|strong="H3068"\w* \w saints|strong="H6918"\w*, +\q2 \w and|strong="H3478"\w* said, “\w I|strong="H3588"\w* \w have|strong="H3068"\w* given strength \w to|strong="H3478"\w* \w the|strong="H3588"\w* warrior. +\q2 \w I|strong="H3588"\w* \w have|strong="H3068"\w* exalted \w a|strong="H3068"\w* young man \w from|strong="H3478"\w* \w the|strong="H3588"\w* people. +\q1 +\v 20 \w I|strong="H5921"\w* \w have|strong="H5971"\w* found David, \w my|strong="H5921"\w* servant. +\q2 \w I|strong="H5921"\w* \w have|strong="H5971"\w* anointed \w him|strong="H5921"\w* \w with|strong="H1696"\w* \w my|strong="H5921"\w* \w holy|strong="H2623"\w* oil, +\q1 +\v 21 \w with|strong="H4886"\w* whom \w my|strong="H1732"\w* \w hand|strong="H4672"\w* \w shall|strong="H5650"\w* \w be|strong="H5650"\w* established. +\q2 \w My|strong="H1732"\w* arm \w will|strong="H5650"\w* \w also|strong="H1732"\w* strengthen \w him|strong="H4672"\w*. +\q1 +\v 22 No enemy \w will|strong="H3027"\w* tax \w him|strong="H3027"\w*. +\q2 No wicked man \w will|strong="H3027"\w* oppress \w him|strong="H3027"\w*. +\q1 +\v 23 \w I|strong="H3808"\w* \w will|strong="H1121"\w* beat down \w his|strong="H3808"\w* adversaries \w before|strong="H3808"\w* \w him|strong="H1121"\w*, +\q2 \w and|strong="H1121"\w* strike \w those|strong="H1121"\w* \w who|strong="H1121"\w* hate \w him|strong="H1121"\w*. +\q1 +\v 24 \w But|strong="H5062"\w* \w my|strong="H6440"\w* faithfulness \w and|strong="H6440"\w* \w my|strong="H6440"\w* loving kindness \w will|strong="H6862"\w* \w be|strong="H6440"\w* \w with|strong="H6440"\w* \w him|strong="H6440"\w*. +\q2 \w In|strong="H6440"\w* \w my|strong="H6440"\w* name, \w his|strong="H6440"\w* horn \w will|strong="H6862"\w* \w be|strong="H6440"\w* exalted. +\q1 +\v 25 \w I|strong="H7311"\w* \w will|strong="H8034"\w* \w set|strong="H7311"\w* \w his|strong="H7311"\w* hand \w also|strong="H8034"\w* \w on|strong="H5973"\w* \w the|strong="H5973"\w* sea, +\q2 \w and|strong="H2617"\w* \w his|strong="H7311"\w* right hand \w on|strong="H5973"\w* \w the|strong="H5973"\w* rivers. +\q1 +\v 26 \w He|strong="H3027"\w* \w will|strong="H3027"\w* call \w to|strong="H3027"\w* \w me|strong="H7760"\w*, ‘\w You|strong="H7760"\w* \w are|strong="H3027"\w* \w my|strong="H7760"\w* Father, +\q2 \w my|strong="H7760"\w* \w God|strong="H3027"\w*, \w and|strong="H3027"\w* \w the|strong="H7760"\w* rock \w of|strong="H3027"\w* \w my|strong="H7760"\w* salvation!’ +\q1 +\v 27 \w I|strong="H6697"\w* \w will|strong="H1931"\w* \w also|strong="H1931"\w* appoint \w him|strong="H7121"\w* \w my|strong="H7121"\w* firstborn, +\q2 \w the|strong="H7121"\w* highest \w of|strong="H6697"\w* \w the|strong="H7121"\w* kings \w of|strong="H6697"\w* \w the|strong="H7121"\w* earth. +\q1 +\v 28 \w I|strong="H5414"\w* \w will|strong="H4428"\w* keep \w my|strong="H5414"\w* loving kindness \w for|strong="H4428"\w* \w him|strong="H5414"\w* forever more. +\q2 \w My|strong="H5414"\w* covenant \w will|strong="H4428"\w* stand firm \w with|strong="H4428"\w* \w him|strong="H5414"\w*. +\q1 +\v 29 I \w will|strong="H2617"\w* \w also|strong="H2617"\w* make \w his|strong="H8104"\w* offspring \w endure|strong="H5769"\w* \w forever|strong="H5769"\w*, +\q2 \w and|strong="H5769"\w* \w his|strong="H8104"\w* throne \w as|strong="H2617"\w* \w the|strong="H8104"\w* \w days|strong="H5769"\w* \w of|strong="H1285"\w* heaven. +\q1 +\v 30 \w If|strong="H7760"\w* \w his|strong="H7760"\w* \w children|strong="H2233"\w* forsake \w my|strong="H7760"\w* law, +\q2 \w and|strong="H3117"\w* don’t walk \w in|strong="H3117"\w* \w my|strong="H7760"\w* ordinances; +\q1 +\v 31 \w if|strong="H1121"\w* \w they|strong="H3808"\w* break \w my|strong="H5800"\w* statutes, +\q2 \w and|strong="H1121"\w* don’t keep \w my|strong="H5800"\w* commandments; +\q1 +\v 32 \w then|strong="H3808"\w* \w I|strong="H3808"\w* \w will|strong="H3808"\w* punish \w their|strong="H3808"\w* sin \w with|strong="H2708"\w* \w the|strong="H8104"\w* rod, +\q2 \w and|strong="H2708"\w* \w their|strong="H3808"\w* iniquity \w with|strong="H2708"\w* stripes. +\q1 +\v 33 But \w I|strong="H6588"\w* \w will|strong="H5771"\w* not completely \w take|strong="H6485"\w* \w my|strong="H6485"\w* loving kindness \w from|strong="H7626"\w* \w him|strong="H6485"\w*, +\q2 nor allow \w my|strong="H6485"\w* faithfulness \w to|strong="H5771"\w* fail. +\q1 +\v 34 \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* break \w my|strong="H3808"\w* covenant, +\q2 \w nor|strong="H3808"\w* alter what \w my|strong="H3808"\w* lips \w have|strong="H3808"\w* uttered. +\q1 +\v 35 Once \w I|strong="H3808"\w* \w have|strong="H8193"\w* sworn \w by|strong="H3808"\w* \w my|strong="H2490"\w* holiness, +\q2 \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* lie \w to|strong="H2490"\w* David. +\q1 +\v 36 \w His|strong="H1732"\w* offspring will endure forever, +\q2 \w his|strong="H1732"\w* throne like \w the|strong="H1732"\w* sun before me. +\q1 +\v 37 \w It|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* established \w forever|strong="H5769"\w* \w like|strong="H1961"\w* \w the|strong="H1961"\w* moon, +\q2 \w the|strong="H1961"\w* faithful witness \w in|strong="H2233"\w* \w the|strong="H1961"\w* sky.” \qs Selah.\qs* +\b +\q1 +\v 38 But \w you|strong="H5769"\w* \w have|strong="H5707"\w* rejected \w and|strong="H5769"\w* spurned. +\q2 \w You|strong="H5769"\w* \w have|strong="H5707"\w* \w been|strong="H5769"\w* angry with \w your|strong="H3559"\w* anointed. +\q1 +\v 39 \w You|strong="H5973"\w* \w have|strong="H5973"\w* renounced \w the|strong="H5674"\w* covenant \w of|strong="H5674"\w* \w your|strong="H5674"\w* servant. +\q2 \w You|strong="H5973"\w* \w have|strong="H5973"\w* defiled \w his|strong="H5674"\w* crown \w in|strong="H5973"\w* \w the|strong="H5674"\w* dust. +\q1 +\v 40 You \w have|strong="H5650"\w* \w broken|strong="H2490"\w* down all \w his|strong="H2490"\w* hedges. +\q2 You \w have|strong="H5650"\w* \w brought|strong="H5650"\w* \w his|strong="H2490"\w* strongholds \w to|strong="H2490"\w* ruin. +\q1 +\v 41 \w All|strong="H3605"\w* \w who|strong="H3605"\w* pass \w by|strong="H3605"\w* \w the|strong="H3605"\w* \w way|strong="H3605"\w* rob \w him|strong="H7760"\w*. +\q1 \w He|strong="H3605"\w* \w has|strong="H3605"\w* become \w a|strong="H3068"\w* reproach \w to|strong="H3605"\w* \w his|strong="H3605"\w* neighbors. +\q1 +\v 42 \w You|strong="H3605"\w* \w have|strong="H1961"\w* exalted \w the|strong="H3605"\w* right hand \w of|strong="H1870"\w* \w his|strong="H3605"\w* adversaries. +\q2 \w You|strong="H3605"\w* \w have|strong="H1961"\w* \w made|strong="H1961"\w* \w all|strong="H3605"\w* \w of|strong="H1870"\w* \w his|strong="H3605"\w* enemies rejoice. +\q1 +\v 43 Yes, \w you|strong="H3605"\w* \w turn|strong="H7311"\w* back \w the|strong="H3605"\w* edge \w of|strong="H3605"\w* \w his|strong="H3605"\w* sword, +\q2 \w and|strong="H3225"\w* haven’t supported \w him|strong="H3605"\w* \w in|strong="H8055"\w* battle. +\q1 +\v 44 \w You|strong="H7725"\w* \w have|strong="H3808"\w* ended \w his|strong="H7725"\w* splendor, +\q2 \w and|strong="H6965"\w* thrown \w his|strong="H7725"\w* throne down \w to|strong="H7725"\w* \w the|strong="H7725"\w* ground. +\q1 +\v 45 \w You|strong="H7673"\w* \w have|strong="H7673"\w* shortened \w the|strong="H7673"\w* days \w of|strong="H3678"\w* \w his|strong="H4048"\w* youth. +\q2 \w You|strong="H7673"\w* \w have|strong="H7673"\w* covered him with shame. \qs Selah.\qs* +\q1 +\v 46 How \w long|strong="H3117"\w*, \w Yahweh|strong="H3068"\w*? +\q2 \w Will|strong="H3117"\w* \w you|strong="H5921"\w* hide \w yourself|strong="H5921"\w* \w forever|strong="H3117"\w*? +\q2 \w Will|strong="H3117"\w* \w your|strong="H5921"\w* wrath burn \w like|strong="H5921"\w* fire? +\q1 +\v 47 Remember \w how|strong="H4100"\w* short \w my|strong="H3068"\w* \w time|strong="H5704"\w* \w is|strong="H3068"\w*, +\q2 \w for|strong="H5704"\w* \w what|strong="H4100"\w* vanity \w you|strong="H5704"\w* \w have|strong="H3068"\w* created \w all|strong="H5704"\w* \w the|strong="H3068"\w* children \w of|strong="H3068"\w* men! +\q1 +\v 48 \w What|strong="H4100"\w* \w man|strong="H1121"\w* \w is|strong="H4100"\w* \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w shall|strong="H1121"\w* live \w and|strong="H1121"\w* \w not|strong="H1121"\w* see death, +\q2 \w who|strong="H3605"\w* \w shall|strong="H1121"\w* deliver \w his|strong="H3605"\w* soul \w from|strong="H5921"\w* \w the|strong="H3605"\w* power \w of|strong="H1121"\w* Sheol?\f + \fr 89:48 \ft Sheol is the place of the dead.\f* \qs Selah.\qs* +\q1 +\v 49 Lord, \w where|strong="H3027"\w* \w are|strong="H3027"\w* \w your|strong="H7200"\w* former loving kindnesses, +\q2 \w which|strong="H4310"\w* \w you|strong="H3808"\w* swore \w to|strong="H3027"\w* \w David|strong="H3027"\w* \w in|strong="H5315"\w* \w your|strong="H7200"\w* faithfulness? +\q1 +\v 50 Remember, \w Lord|strong="H2617"\w*, \w the|strong="H1732"\w* \w reproach|strong="H2617"\w* \w of|strong="H2617"\w* \w your|strong="H1732"\w* servants, +\q2 how \w I|strong="H7650"\w* bear \w in|strong="H1732"\w* \w my|strong="H1732"\w* heart \w the|strong="H1732"\w* taunts \w of|strong="H2617"\w* all \w the|strong="H1732"\w* mighty peoples, +\q1 +\v 51 \w With|strong="H5971"\w* \w which|strong="H5971"\w* \w your|strong="H3605"\w* enemies \w have|strong="H5971"\w* mocked, \w Yahweh|strong="H3068"\w*, +\q2 \w with|strong="H5971"\w* \w which|strong="H5971"\w* \w they|strong="H5971"\w* \w have|strong="H5971"\w* mocked \w the|strong="H3605"\w* footsteps \w of|strong="H5650"\w* \w your|strong="H3605"\w* anointed \w one|strong="H3605"\w*. +\b +\q1 +\v 52 Blessed \w be|strong="H3068"\w* \w Yahweh|strong="H3068"\w* forever more. +\q1 Amen, \w and|strong="H3068"\w* Amen. +\c 90 +\ms1 BOOK 4 +\d A Prayer by Moses, the man of God.\f + \fr 90:0 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* +\q1 +\v 1 Lord,\f + \fr 90:1 \ft The word translated “Lord” is “Adonai.”\f* \w you|strong="H1755"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w our|strong="H1961"\w* \w dwelling|strong="H4583"\w* \w place|strong="H1961"\w* \w for|strong="H1961"\w* \w all|strong="H1755"\w* \w generations|strong="H1755"\w*. +\q2 +\v 2 \w Before|strong="H2962"\w* \w the|strong="H3205"\w* \w mountains|strong="H2022"\w* \w were|strong="H2022"\w* \w born|strong="H3205"\w*, +\q2 \w before|strong="H2962"\w* \w you|strong="H5704"\w* \w had|strong="H3205"\w* \w formed|strong="H2342"\w* \w the|strong="H3205"\w* earth \w and|strong="H5769"\w* \w the|strong="H3205"\w* \w world|strong="H8398"\w*, +\q2 \w even|strong="H5704"\w* \w from|strong="H5704"\w* \w everlasting|strong="H5769"\w* \w to|strong="H5704"\w* \w everlasting|strong="H5769"\w*, \w you|strong="H5704"\w* \w are|strong="H2022"\w* God. +\q1 +\v 3 \w You|strong="H5704"\w* \w turn|strong="H7725"\w* \w man|strong="H1121"\w* \w to|strong="H5704"\w* \w destruction|strong="H1793"\w*, saying, +\q2 “\w Return|strong="H7725"\w*, \w you|strong="H5704"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*.” +\q1 +\v 4 \w For|strong="H3588"\w* \w a|strong="H3068"\w* thousand \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w your|strong="H3588"\w* \w sight|strong="H5869"\w* \w are|strong="H3117"\w* just \w like|strong="H3117"\w* \w yesterday|strong="H3117"\w* \w when|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H3117"\w* \w past|strong="H5674"\w*, +\q2 \w like|strong="H3117"\w* \w a|strong="H3068"\w* \w watch|strong="H5869"\w* \w in|strong="H8141"\w* \w the|strong="H3588"\w* \w night|strong="H3915"\w*. +\q1 +\v 5 \w You|strong="H1242"\w* \w sweep|strong="H2498"\w* \w them|strong="H1961"\w* \w away|strong="H2498"\w* \w as|strong="H1961"\w* \w they|strong="H1242"\w* \w sleep|strong="H8142"\w*. +\q2 \w In|strong="H1961"\w* \w the|strong="H1961"\w* \w morning|strong="H1242"\w* \w they|strong="H1242"\w* \w sprout|strong="H2498"\w* \w like|strong="H1961"\w* \w new|strong="H2498"\w* \w grass|strong="H2682"\w*. +\q1 +\v 6 \w In|strong="H6153"\w* \w the|strong="H1242"\w* \w morning|strong="H1242"\w* \w it|strong="H1242"\w* \w sprouts|strong="H2498"\w* \w and|strong="H1242"\w* springs \w up|strong="H3001"\w*. +\q2 \w By|strong="H1242"\w* \w evening|strong="H6153"\w*, \w it|strong="H1242"\w* \w is|strong="H1242"\w* \w withered|strong="H3001"\w* \w and|strong="H1242"\w* \w dry|strong="H3001"\w*. +\q1 +\v 7 \w For|strong="H3588"\w* \w we|strong="H3068"\w* are \w consumed|strong="H3615"\w* \w in|strong="H3615"\w* \w your|strong="H3588"\w* \w anger|strong="H2534"\w*. +\q2 \w We|strong="H3588"\w* are troubled \w in|strong="H3615"\w* \w your|strong="H3588"\w* \w wrath|strong="H2534"\w*. +\q1 +\v 8 \w You|strong="H6440"\w* \w have|strong="H5771"\w* \w set|strong="H7896"\w* \w our|strong="H7896"\w* \w iniquities|strong="H5771"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, +\q2 \w our|strong="H7896"\w* \w secret|strong="H5956"\w* \w sins|strong="H5771"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w light|strong="H3974"\w* \w of|strong="H6440"\w* \w your|strong="H6440"\w* \w presence|strong="H6440"\w*. +\q1 +\v 9 \w For|strong="H3588"\w* \w all|strong="H3605"\w* \w our|strong="H3605"\w* \w days|strong="H3117"\w* \w have|strong="H3117"\w* passed \w away|strong="H6437"\w* \w in|strong="H8141"\w* \w your|strong="H3605"\w* \w wrath|strong="H5678"\w*. +\q2 \w We|strong="H3588"\w* bring \w our|strong="H3605"\w* \w years|strong="H8141"\w* \w to|strong="H3117"\w* \w an|strong="H3588"\w* \w end|strong="H3615"\w* \w as|strong="H3117"\w* \w a|strong="H3068"\w* \w sigh|strong="H1899"\w*. +\q1 +\v 10 \w The|strong="H3588"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w our|strong="H3588"\w* \w years|strong="H8141"\w* \w are|strong="H3117"\w* \w seventy|strong="H7657"\w*, +\q2 \w or|strong="H3117"\w* \w even|strong="H3588"\w* \w by|strong="H8141"\w* reason \w of|strong="H3117"\w* \w strength|strong="H1369"\w* \w eighty|strong="H8084"\w* \w years|strong="H8141"\w*; +\q2 \w yet|strong="H3588"\w* \w their|strong="H3588"\w* \w pride|strong="H7296"\w* \w is|strong="H3117"\w* \w but|strong="H3588"\w* \w labor|strong="H5999"\w* \w and|strong="H3117"\w* \w sorrow|strong="H5999"\w*, +\q2 \w for|strong="H3588"\w* \w it|strong="H3588"\w* passes \w quickly|strong="H2440"\w*, \w and|strong="H3117"\w* \w we|strong="H3068"\w* \w fly|strong="H5774"\w* \w away|strong="H5774"\w*. +\q1 +\v 11 \w Who|strong="H4310"\w* \w knows|strong="H3045"\w* \w the|strong="H3045"\w* \w power|strong="H5797"\w* \w of|strong="H3045"\w* \w your|strong="H3045"\w* \w anger|strong="H5678"\w*, +\q2 \w your|strong="H3045"\w* \w wrath|strong="H5678"\w* according \w to|strong="H3045"\w* \w the|strong="H3045"\w* \w fear|strong="H3374"\w* \w that|strong="H3045"\w* \w is|strong="H4310"\w* due \w to|strong="H3045"\w* \w you|strong="H3045"\w*? +\q1 +\v 12 \w So|strong="H3651"\w* \w teach|strong="H3045"\w* \w us|strong="H3045"\w* \w to|strong="H3117"\w* \w count|strong="H4487"\w* \w our|strong="H3045"\w* \w days|strong="H3117"\w*, +\q2 \w that|strong="H3045"\w* \w we|strong="H3068"\w* \w may|strong="H3117"\w* \w gain|strong="H3045"\w* \w a|strong="H3068"\w* \w heart|strong="H3824"\w* \w of|strong="H3117"\w* \w wisdom|strong="H2451"\w*. +\q1 +\v 13 \w Relent|strong="H5162"\w*, \w Yahweh|strong="H3068"\w*!\f + \fr 90:13 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* +\q2 \w How|strong="H4970"\w* \w long|strong="H5704"\w*? +\q2 \w Have|strong="H3068"\w* \w compassion|strong="H5162"\w* \w on|strong="H5921"\w* \w your|strong="H3068"\w* \w servants|strong="H5650"\w*! +\q1 +\v 14 \w Satisfy|strong="H7646"\w* \w us|strong="H3117"\w* \w in|strong="H3117"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w* \w with|strong="H7646"\w* \w your|strong="H3605"\w* loving \w kindness|strong="H2617"\w*, +\q2 \w that|strong="H3605"\w* \w we|strong="H3068"\w* \w may|strong="H3117"\w* \w rejoice|strong="H8055"\w* \w and|strong="H3117"\w* \w be|strong="H3117"\w* \w glad|strong="H8055"\w* \w all|strong="H3605"\w* \w our|strong="H3605"\w* \w days|strong="H3117"\w*. +\q1 +\v 15 \w Make|strong="H8055"\w* \w us|strong="H7200"\w* \w glad|strong="H8055"\w* \w for|strong="H3117"\w* \w as|strong="H3117"\w* \w many|strong="H7200"\w* \w days|strong="H3117"\w* \w as|strong="H3117"\w* \w you|strong="H3117"\w* \w have|strong="H3117"\w* \w afflicted|strong="H6031"\w* \w us|strong="H7200"\w*, +\q2 \w for|strong="H3117"\w* \w as|strong="H3117"\w* \w many|strong="H7200"\w* \w years|strong="H8141"\w* \w as|strong="H3117"\w* \w we|strong="H3068"\w* \w have|strong="H3117"\w* \w seen|strong="H7200"\w* \w evil|strong="H7451"\w*. +\q1 +\v 16 Let \w your|strong="H5921"\w* \w work|strong="H6467"\w* \w appear|strong="H7200"\w* \w to|strong="H5921"\w* \w your|strong="H5921"\w* \w servants|strong="H5650"\w*, +\q2 \w your|strong="H5921"\w* \w glory|strong="H1926"\w* \w to|strong="H5921"\w* \w their|strong="H7200"\w* \w children|strong="H1121"\w*. +\q1 +\v 17 \w Let|strong="H1961"\w* \w the|strong="H5921"\w* \w favor|strong="H5278"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* Lord \w our|strong="H5921"\w* \w God|strong="H3027"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w us|strong="H5921"\w*. +\q2 \w Establish|strong="H3559"\w* \w the|strong="H5921"\w* \w work|strong="H4639"\w* \w of|strong="H3027"\w* \w our|strong="H5921"\w* \w hands|strong="H3027"\w* \w for|strong="H5921"\w* \w us|strong="H5921"\w*. +\q2 Yes, \w establish|strong="H3559"\w* \w the|strong="H5921"\w* \w work|strong="H4639"\w* \w of|strong="H3027"\w* \w our|strong="H5921"\w* \w hands|strong="H3027"\w*. +\c 91 +\q1 +\v 1 \w He|strong="H3427"\w* \w who|strong="H3427"\w* \w dwells|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3885"\w* \w secret|strong="H5643"\w* \w place|strong="H5643"\w* \w of|strong="H3427"\w* \w the|strong="H3885"\w* \w Most|strong="H5945"\w* \w High|strong="H5945"\w* +\q2 \w will|strong="H3427"\w* rest \w in|strong="H3427"\w* \w the|strong="H3885"\w* \w shadow|strong="H6738"\w* \w of|strong="H3427"\w* \w the|strong="H3885"\w* \w Almighty|strong="H7706"\w*. +\q1 +\v 2 \w I|strong="H3068"\w* \w will|strong="H3068"\w* say \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, “\w He|strong="H3068"\w* \w is|strong="H3068"\w* \w my|strong="H3068"\w* \w refuge|strong="H4268"\w* \w and|strong="H3068"\w* \w my|strong="H3068"\w* \w fortress|strong="H4686"\w*; +\q2 \w my|strong="H3068"\w* \w God|strong="H3068"\w*, \w in|strong="H3068"\w* whom \w I|strong="H3068"\w* \w trust|strong="H4268"\w*.” +\q1 +\v 3 \w For|strong="H3588"\w* \w he|strong="H1931"\w* \w will|strong="H1931"\w* \w deliver|strong="H5337"\w* \w you|strong="H3588"\w* \w from|strong="H5337"\w* \w the|strong="H3588"\w* \w snare|strong="H6341"\w* \w of|strong="H1931"\w* \w the|strong="H3588"\w* \w fowler|strong="H3353"\w*, +\q2 \w and|strong="H1698"\w* \w from|strong="H5337"\w* \w the|strong="H3588"\w* \w deadly|strong="H1942"\w* \w pestilence|strong="H1698"\w*. +\q1 +\v 4 \w He|strong="H8478"\w* \w will|strong="H3671"\w* \w cover|strong="H5526"\w* \w you|strong="H8478"\w* \w with|strong="H5526"\w* \w his|strong="H8478"\w* feathers. +\q2 \w Under|strong="H8478"\w* \w his|strong="H8478"\w* \w wings|strong="H3671"\w* \w you|strong="H8478"\w* \w will|strong="H3671"\w* \w take|strong="H2620"\w* \w refuge|strong="H2620"\w*. +\q2 \w His|strong="H8478"\w* faithfulness \w is|strong="H3671"\w* \w your|strong="H8478"\w* \w shield|strong="H6793"\w* \w and|strong="H6793"\w* rampart. +\q1 +\v 5 \w You|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w afraid|strong="H3372"\w* \w of|strong="H3372"\w* \w the|strong="H3372"\w* \w terror|strong="H6343"\w* \w by|strong="H3915"\w* \w night|strong="H3915"\w*, +\q2 \w nor|strong="H3808"\w* \w of|strong="H3372"\w* \w the|strong="H3372"\w* \w arrow|strong="H2671"\w* \w that|strong="H3808"\w* \w flies|strong="H5774"\w* \w by|strong="H3915"\w* \w day|strong="H3119"\w*, +\q2 +\v 6 nor of \w the|strong="H1980"\w* \w pestilence|strong="H1698"\w* \w that|strong="H1980"\w* \w walks|strong="H1980"\w* \w in|strong="H1980"\w* darkness, +\q2 nor of \w the|strong="H1980"\w* \w destruction|strong="H6986"\w* \w that|strong="H1980"\w* wastes \w at|strong="H1980"\w* \w noonday|strong="H6672"\w*. +\q1 +\v 7 \w A|strong="H3068"\w* \w thousand|strong="H7233"\w* \w may|strong="H5307"\w* \w fall|strong="H5307"\w* \w at|strong="H5307"\w* \w your|strong="H3808"\w* \w side|strong="H6654"\w*, +\q2 \w and|strong="H5066"\w* \w ten|strong="H7233"\w* \w thousand|strong="H7233"\w* \w at|strong="H5307"\w* \w your|strong="H3808"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w*; +\q2 \w but|strong="H3808"\w* \w it|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w come|strong="H5066"\w* \w near|strong="H5066"\w* \w you|strong="H3808"\w*. +\q1 +\v 8 \w You|strong="H7200"\w* \w will|strong="H5869"\w* \w only|strong="H7535"\w* \w look|strong="H7200"\w* \w with|strong="H5869"\w* \w your|strong="H7200"\w* \w eyes|strong="H5869"\w*, +\q2 \w and|strong="H5869"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w recompense|strong="H8011"\w* \w of|strong="H5869"\w* \w the|strong="H7200"\w* \w wicked|strong="H7563"\w*. +\q1 +\v 9 \w Because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w made|strong="H7760"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w refuge|strong="H4268"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w Most|strong="H5945"\w* \w High|strong="H5945"\w* \w your|strong="H3068"\w* \w dwelling|strong="H4583"\w* \w place|strong="H7760"\w*, +\q1 +\v 10 \w no|strong="H3808"\w* \w evil|strong="H7451"\w* \w shall|strong="H3808"\w* happen \w to|strong="H7126"\w* \w you|strong="H3808"\w*, +\q2 \w neither|strong="H3808"\w* \w shall|strong="H3808"\w* \w any|strong="H3808"\w* \w plague|strong="H5061"\w* \w come|strong="H7126"\w* \w near|strong="H7126"\w* \w your|strong="H3808"\w* dwelling. +\q1 +\v 11 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H4397"\w* \w put|strong="H6680"\w* \w his|strong="H3605"\w* \w angels|strong="H4397"\w* \w in|strong="H1870"\w* \w charge|strong="H6680"\w* \w of|strong="H1870"\w* \w you|strong="H3588"\w*, +\q2 \w to|strong="H8104"\w* \w guard|strong="H8104"\w* \w you|strong="H3588"\w* \w in|strong="H1870"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w ways|strong="H1870"\w*. +\q1 +\v 12 \w They|strong="H5921"\w* \w will|strong="H7272"\w* \w bear|strong="H5375"\w* \w you|strong="H5921"\w* \w up|strong="H5375"\w* \w in|strong="H5921"\w* \w their|strong="H5375"\w* \w hands|strong="H3709"\w*, +\q2 \w so|strong="H6435"\w* \w that|strong="H7272"\w* \w you|strong="H5921"\w* won’t \w dash|strong="H5062"\w* \w your|strong="H5921"\w* \w foot|strong="H7272"\w* \w against|strong="H5921"\w* \w a|strong="H3068"\w* stone. +\q1 +\v 13 \w You|strong="H5921"\w* will \w tread|strong="H1869"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w lion|strong="H3715"\w* \w and|strong="H7826"\w* \w cobra|strong="H6620"\w*. +\q2 \w You|strong="H5921"\w* will \w trample|strong="H7429"\w* \w the|strong="H5921"\w* \w young|strong="H3715"\w* \w lion|strong="H3715"\w* \w and|strong="H7826"\w* \w the|strong="H5921"\w* \w serpent|strong="H8577"\w* \w underfoot|strong="H7429"\w*. +\q1 +\v 14 “\w Because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w set|strong="H7682"\w* \w his|strong="H3045"\w* \w love|strong="H2836"\w* \w on|strong="H8034"\w* \w me|strong="H7682"\w*, \w therefore|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H8034"\w* \w deliver|strong="H6403"\w* \w him|strong="H3045"\w*. +\q2 \w I|strong="H3588"\w* \w will|strong="H8034"\w* \w set|strong="H7682"\w* \w him|strong="H3045"\w* \w on|strong="H8034"\w* \w high|strong="H7682"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w known|strong="H3045"\w* \w my|strong="H3045"\w* \w name|strong="H8034"\w*. +\q1 +\v 15 \w He|strong="H7121"\w* \w will|strong="H6869"\w* \w call|strong="H7121"\w* \w on|strong="H7121"\w* \w me|strong="H7121"\w*, \w and|strong="H6030"\w* \w I|strong="H6869"\w* \w will|strong="H6869"\w* \w answer|strong="H6030"\w* \w him|strong="H7121"\w*. +\q2 \w I|strong="H6869"\w* \w will|strong="H6869"\w* be \w with|strong="H5973"\w* \w him|strong="H7121"\w* \w in|strong="H7121"\w* \w trouble|strong="H6869"\w*. +\q2 \w I|strong="H6869"\w* \w will|strong="H6869"\w* \w deliver|strong="H2502"\w* \w him|strong="H7121"\w*, \w and|strong="H6030"\w* \w honor|strong="H3513"\w* \w him|strong="H7121"\w*. +\q1 +\v 16 \w I|strong="H3117"\w* \w will|strong="H3117"\w* \w satisfy|strong="H7646"\w* \w him|strong="H7200"\w* \w with|strong="H7646"\w* \w long|strong="H3117"\w* \w life|strong="H3117"\w*, +\q2 \w and|strong="H3117"\w* \w show|strong="H7200"\w* \w him|strong="H7200"\w* \w my|strong="H7200"\w* \w salvation|strong="H3444"\w*.” +\c 92 +\d A Psalm. A song for the Sabbath day. +\q1 +\v 1 \w It|strong="H3117"\w* \w is|strong="H3117"\w* \w a|strong="H3068"\w* good thing \w to|strong="H3117"\w* give thanks \w to|strong="H3117"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w to|strong="H3117"\w* \w sing|strong="H7892"\w* \w praises|strong="H7892"\w* \w to|strong="H3117"\w* \w your|strong="H3117"\w* name, Most High, +\q1 +\v 2 \w to|strong="H3068"\w* proclaim \w your|strong="H3068"\w* \w loving|strong="H2896"\w* \w kindness|strong="H2896"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* morning, +\q2 \w and|strong="H3068"\w* \w your|strong="H3068"\w* faithfulness \w every|strong="H3068"\w* night, +\q1 +\v 3 \w with|strong="H3915"\w* \w the|strong="H5046"\w* ten-stringed lute, \w with|strong="H3915"\w* \w the|strong="H5046"\w* harp, +\q2 \w and|strong="H1242"\w* \w with|strong="H3915"\w* \w the|strong="H5046"\w* melody \w of|strong="H2617"\w* \w the|strong="H5046"\w* lyre. +\q1 +\v 4 \w For|strong="H5921"\w* \w you|strong="H5921"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H5921"\w* made \w me|strong="H5921"\w* glad \w through|strong="H5921"\w* \w your|strong="H5921"\w* work. +\q2 \w I|strong="H5921"\w* will triumph \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w works|strong="H5921"\w* \w of|strong="H5921"\w* \w your|strong="H5921"\w* hands. +\q1 +\v 5 \w How|strong="H3588"\w* great \w are|strong="H3027"\w* \w your|strong="H3068"\w* \w works|strong="H4639"\w*, \w Yahweh|strong="H3068"\w*! +\q2 \w Your|strong="H3068"\w* thoughts \w are|strong="H3027"\w* \w very|strong="H8055"\w* deep. +\q1 +\v 6 \w A|strong="H3068"\w* senseless man doesn’t know, +\q2 neither \w does|strong="H4100"\w* \w a|strong="H3068"\w* fool understand \w this|strong="H3068"\w*: +\q1 +\v 7 though \w the|strong="H3045"\w* wicked spring up as \w the|strong="H3045"\w* grass, +\q2 \w and|strong="H3045"\w* \w all|strong="H3045"\w* \w the|strong="H3045"\w* evildoers flourish, +\q2 \w they|strong="H3808"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* destroyed forever. +\q1 +\v 8 \w But|strong="H7563"\w* \w you|strong="H3605"\w*, \w Yahweh|strong="H3068"\w*, \w are|strong="H7563"\w* \w on|strong="H3605"\w* high \w forever|strong="H5704"\w* \w more|strong="H5704"\w*. +\q1 +\v 9 \w For|strong="H3068"\w* behold, \w your|strong="H3068"\w* enemies, \w Yahweh|strong="H3068"\w*, +\q2 \w for|strong="H3068"\w* behold, \w your|strong="H3068"\w* enemies \w shall|strong="H3068"\w* perish. +\q2 \w All|strong="H5769"\w* \w the|strong="H3068"\w* evildoers \w will|strong="H3068"\w* \w be|strong="H3068"\w* scattered. +\q1 +\v 10 \w But|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* exalted \w my|strong="H3605"\w* horn \w like|strong="H3068"\w* \w that|strong="H3588"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* wild ox. +\q2 \w I|strong="H3588"\w* \w am|strong="H3068"\w* anointed \w with|strong="H3068"\w* fresh oil. +\q1 +\v 11 \w My|strong="H7311"\w* eye has also seen \w my|strong="H7311"\w* enemies. +\q2 \w My|strong="H7311"\w* ears have heard \w of|strong="H7161"\w* \w the|strong="H7311"\w* wicked enemies who \w rise|strong="H7311"\w* \w up|strong="H7311"\w* against \w me|strong="H7311"\w*. +\q1 +\v 12 \w The|strong="H5921"\w* righteous \w shall|strong="H5869"\w* flourish \w like|strong="H5921"\w* \w the|strong="H5921"\w* palm tree. +\q2 \w He|strong="H5921"\w* \w will|strong="H5869"\w* grow \w like|strong="H5921"\w* \w a|strong="H3068"\w* cedar \w in|strong="H5921"\w* Lebanon. +\q1 +\v 13 They \w are|strong="H6662"\w* planted \w in|strong="H6662"\w* \w Yahweh|strong="H3068"\w*’s house. +\q2 They \w will|strong="H6662"\w* \w flourish|strong="H6524"\w* \w in|strong="H6662"\w* our God’s courts. +\q1 +\v 14 \w They|strong="H3068"\w* \w will|strong="H3068"\w* still produce fruit \w in|strong="H3068"\w* old age. +\q2 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* full \w of|strong="H1004"\w* sap \w and|strong="H3068"\w* green, +\q2 +\v 15 \w to|strong="H1961"\w* \w show|strong="H1961"\w* \w that|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H1961"\w* upright. +\q1 He \w is|strong="H1961"\w* \w my|strong="H1961"\w* rock, +\q2 \w and|strong="H5750"\w* \w there|strong="H1961"\w* \w is|strong="H1961"\w* \w no|strong="H1961"\w* unrighteousness \w in|strong="H5750"\w* \w him|strong="H1961"\w*. +\c 93 +\q1 +\v 1 \w Yahweh|strong="H3068"\w* \w reigns|strong="H4427"\w*! +\q2 \w He|strong="H3068"\w* \w is|strong="H3068"\w* \w clothed|strong="H3847"\w* \w with|strong="H3847"\w* \w majesty|strong="H1348"\w*! +\q2 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w armed|strong="H3847"\w* \w with|strong="H3847"\w* \w strength|strong="H5797"\w*. +\q1 \w The|strong="H3068"\w* \w world|strong="H8398"\w* \w also|strong="H3068"\w* \w is|strong="H3068"\w* \w established|strong="H3559"\w*. +\q2 \w It|strong="H3559"\w* can’t \w be|strong="H3068"\w* \w moved|strong="H4131"\w*. +\q1 +\v 2 \w Your|strong="H3559"\w* \w throne|strong="H3678"\w* \w is|strong="H3678"\w* \w established|strong="H3559"\w* \w from|strong="H3678"\w* \w long|strong="H5769"\w* \w ago|strong="H5769"\w*. +\q2 \w You|strong="H5769"\w* \w are|strong="H3678"\w* \w from|strong="H3678"\w* \w everlasting|strong="H5769"\w*. +\q1 +\v 3 \w The|strong="H5375"\w* \w floods|strong="H5104"\w* \w have|strong="H3068"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w*, \w Yahweh|strong="H3068"\w*, +\q2 \w the|strong="H5375"\w* \w floods|strong="H5104"\w* \w have|strong="H3068"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w their|strong="H3068"\w* \w voice|strong="H6963"\w*. +\q2 \w The|strong="H5375"\w* \w floods|strong="H5104"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w their|strong="H3068"\w* \w waves|strong="H1796"\w*. +\q1 +\v 4 \w Above|strong="H4791"\w* \w the|strong="H3068"\w* \w voices|strong="H6963"\w* \w of|strong="H3068"\w* \w many|strong="H7227"\w* \w waters|strong="H4325"\w*, +\q2 \w the|strong="H3068"\w* \w mighty|strong="H7227"\w* \w breakers|strong="H4867"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w sea|strong="H3220"\w*, +\q2 \w Yahweh|strong="H3068"\w* \w on|strong="H3068"\w* \w high|strong="H4791"\w* \w is|strong="H3068"\w* \w mighty|strong="H7227"\w*. +\q1 +\v 5 \w Your|strong="H3068"\w* statutes stand firm. +\q2 \w Holiness|strong="H6944"\w* adorns \w your|strong="H3068"\w* \w house|strong="H1004"\w*, +\q2 \w Yahweh|strong="H3068"\w*, \w forever|strong="H3117"\w* \w more|strong="H3966"\w*. +\c 94 +\q1 +\v 1 \w Yahweh|strong="H3068"\w*, you \w God|strong="H3068"\w* \w to|strong="H3068"\w* whom \w vengeance|strong="H5360"\w* belongs, +\q2 you \w God|strong="H3068"\w* \w to|strong="H3068"\w* whom \w vengeance|strong="H5360"\w* belongs, \w shine|strong="H3313"\w* out. +\q1 +\v 2 \w Rise|strong="H5375"\w* \w up|strong="H5375"\w*, \w you|strong="H5921"\w* \w judge|strong="H8199"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* earth. +\q2 \w Pay|strong="H7725"\w* \w back|strong="H7725"\w* \w the|strong="H5921"\w* \w proud|strong="H1343"\w* \w what|strong="H5921"\w* \w they|strong="H5921"\w* deserve. +\q1 +\v 3 \w Yahweh|strong="H3068"\w*, \w how|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H3068"\w* \w the|strong="H3068"\w* \w wicked|strong="H7563"\w*, +\q2 \w how|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H3068"\w* \w the|strong="H3068"\w* \w wicked|strong="H7563"\w* \w triumph|strong="H5937"\w*? +\q1 +\v 4 \w They|strong="H3605"\w* \w pour|strong="H5042"\w* \w out|strong="H5042"\w* arrogant words. +\q2 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w evildoers|strong="H6466"\w* \w boast|strong="H1696"\w*. +\q1 +\v 5 \w They|strong="H3068"\w* \w break|strong="H1792"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w* \w in|strong="H3068"\w* \w pieces|strong="H1792"\w*, \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* \w afflict|strong="H6031"\w* \w your|strong="H3068"\w* \w heritage|strong="H5159"\w*. +\q1 +\v 6 They \w kill|strong="H2026"\w* \w the|strong="H2026"\w* widow \w and|strong="H2026"\w* \w the|strong="H2026"\w* \w alien|strong="H1616"\w*, +\q2 \w and|strong="H2026"\w* \w murder|strong="H7523"\w* \w the|strong="H2026"\w* \w fatherless|strong="H3490"\w*. +\q1 +\v 7 \w They|strong="H3808"\w* say, “\w Yah|strong="H3068"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H3808"\w* \w Jacob|strong="H3290"\w*’s \w God|strong="H3808"\w* \w consider|strong="H7200"\w*.” +\q1 +\v 8 \w Consider|strong="H7919"\w*, \w you|strong="H5971"\w* \w senseless|strong="H1197"\w* \w among|strong="H5971"\w* \w the|strong="H1197"\w* \w people|strong="H5971"\w*; +\q2 \w you|strong="H5971"\w* \w fools|strong="H3684"\w*, \w when|strong="H4970"\w* \w will|strong="H5971"\w* \w you|strong="H5971"\w* \w be|strong="H5971"\w* \w wise|strong="H7919"\w*? +\q1 +\v 9 \w He|strong="H3808"\w* \w who|strong="H3808"\w* implanted \w the|strong="H8085"\w* \w ear|strong="H8085"\w*, won’t \w he|strong="H3808"\w* \w hear|strong="H8085"\w*? +\q2 \w He|strong="H3808"\w* \w who|strong="H3808"\w* \w formed|strong="H3335"\w* \w the|strong="H8085"\w* \w eye|strong="H5869"\w*, won’t \w he|strong="H3808"\w* \w see|strong="H5027"\w*? +\q1 +\v 10 \w He|strong="H3808"\w* \w who|strong="H1471"\w* \w disciplines|strong="H3256"\w* \w the|strong="H3808"\w* \w nations|strong="H1471"\w*, won’t \w he|strong="H3808"\w* \w punish|strong="H3256"\w*? +\q2 \w He|strong="H3808"\w* \w who|strong="H1471"\w* \w teaches|strong="H3925"\w* man knows. +\q1 +\v 11 \w Yahweh|strong="H3068"\w* \w knows|strong="H3045"\w* \w the|strong="H3588"\w* \w thoughts|strong="H4284"\w* \w of|strong="H3068"\w* \w man|strong="H3045"\w*, +\q2 \w that|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w futile|strong="H1892"\w*. +\q1 +\v 12 Blessed \w is|strong="H8451"\w* \w the|strong="H3050"\w* \w man|strong="H1397"\w* \w whom|strong="H1397"\w* \w you|strong="H3925"\w* \w discipline|strong="H3256"\w*, \w Yah|strong="H3068"\w*, +\q2 \w and|strong="H8451"\w* \w teach|strong="H3925"\w* out \w of|strong="H8451"\w* \w your|strong="H3925"\w* \w law|strong="H8451"\w*, +\q1 +\v 13 \w that|strong="H3117"\w* \w you|strong="H3117"\w* \w may|strong="H3117"\w* give \w him|strong="H5704"\w* \w rest|strong="H8252"\w* \w from|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w adversity|strong="H7451"\w*, +\q2 \w until|strong="H5704"\w* \w the|strong="H3117"\w* \w pit|strong="H7845"\w* \w is|strong="H3117"\w* \w dug|strong="H3738"\w* \w for|strong="H5704"\w* \w the|strong="H3117"\w* \w wicked|strong="H7563"\w*. +\q1 +\v 14 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* won’t \w reject|strong="H5800"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H3068"\w* \w he|strong="H3588"\w* \w forsake|strong="H5800"\w* \w his|strong="H3068"\w* \w inheritance|strong="H5159"\w*. +\q1 +\v 15 \w For|strong="H3588"\w* \w judgment|strong="H4941"\w* \w will|strong="H3820"\w* \w return|strong="H7725"\w* \w to|strong="H5704"\w* \w righteousness|strong="H6664"\w*. +\q2 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w upright|strong="H3477"\w* \w in|strong="H3477"\w* \w heart|strong="H3820"\w* \w shall|strong="H3820"\w* follow \w it|strong="H3588"\w*. +\q1 +\v 16 \w Who|strong="H4310"\w* \w will|strong="H4310"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w for|strong="H6965"\w* \w me|strong="H5973"\w* \w against|strong="H5973"\w* \w the|strong="H6965"\w* \w wicked|strong="H7489"\w*? +\q2 \w Who|strong="H4310"\w* \w will|strong="H4310"\w* \w stand|strong="H6965"\w* \w up|strong="H6965"\w* \w for|strong="H6965"\w* \w me|strong="H5973"\w* \w against|strong="H5973"\w* \w the|strong="H6965"\w* \w evildoers|strong="H7489"\w*? +\q1 +\v 17 \w Unless|strong="H3884"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w been|strong="H4592"\w* \w my|strong="H3068"\w* \w help|strong="H5833"\w*, +\q2 \w my|strong="H3068"\w* \w soul|strong="H5315"\w* \w would|strong="H3068"\w* \w have|strong="H3068"\w* \w soon|strong="H4592"\w* \w lived|strong="H5315"\w* \w in|strong="H3068"\w* \w silence|strong="H1745"\w*. +\q1 +\v 18 \w When|strong="H3068"\w* \w I|strong="H3068"\w* said, “\w My|strong="H3068"\w* \w foot|strong="H7272"\w* \w is|strong="H3068"\w* slipping!” +\q2 \w Your|strong="H3068"\w* loving \w kindness|strong="H2617"\w*, \w Yahweh|strong="H3068"\w*, held \w me|strong="H5582"\w* \w up|strong="H5582"\w*. +\q1 +\v 19 \w In|strong="H5315"\w* \w the|strong="H7130"\w* \w multitude|strong="H7230"\w* \w of|strong="H7230"\w* \w my|strong="H7130"\w* \w thoughts|strong="H8312"\w* \w within|strong="H7130"\w* \w me|strong="H5315"\w*, +\q2 \w your|strong="H7130"\w* \w comforts|strong="H8575"\w* \w delight|strong="H8173"\w* \w my|strong="H7130"\w* \w soul|strong="H5315"\w*. +\q1 +\v 20 \w Shall|strong="H5999"\w* \w the|strong="H5921"\w* \w throne|strong="H3678"\w* \w of|strong="H3678"\w* \w wickedness|strong="H5999"\w* \w have|strong="H1942"\w* \w fellowship|strong="H2266"\w* \w with|strong="H5921"\w* \w you|strong="H5921"\w*, +\q2 \w which|strong="H2706"\w* brings \w about|strong="H5921"\w* \w mischief|strong="H5999"\w* \w by|strong="H5921"\w* \w statute|strong="H2706"\w*? +\q1 +\v 21 \w They|strong="H5921"\w* \w gather|strong="H1413"\w* \w themselves|strong="H5315"\w* \w together|strong="H5921"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w soul|strong="H5315"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w righteous|strong="H6662"\w*, +\q2 \w and|strong="H1818"\w* \w condemn|strong="H7561"\w* \w the|strong="H5921"\w* \w innocent|strong="H5355"\w* \w blood|strong="H1818"\w*. +\q1 +\v 22 \w But|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w been|strong="H1961"\w* \w my|strong="H3068"\w* high \w tower|strong="H4869"\w*, +\q2 \w my|strong="H3068"\w* \w God|strong="H3068"\w*, \w the|strong="H3068"\w* \w rock|strong="H6697"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w refuge|strong="H4268"\w*. +\q1 +\v 23 \w He|strong="H3068"\w* \w has|strong="H3068"\w* \w brought|strong="H7725"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w their|strong="H3068"\w* own iniquity, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w cut|strong="H6789"\w* \w them|strong="H5921"\w* \w off|strong="H5921"\w* \w in|strong="H5921"\w* \w their|strong="H3068"\w* own \w wickedness|strong="H7451"\w*. +\q2 \w Yahweh|strong="H3068"\w*, \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w will|strong="H3068"\w* \w cut|strong="H6789"\w* \w them|strong="H5921"\w* \w off|strong="H5921"\w*. +\c 95 +\q1 +\v 1 Oh \w come|strong="H3212"\w*, \w let|strong="H3212"\w*’s \w sing|strong="H7442"\w* \w to|strong="H3212"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w Let|strong="H3212"\w*’s \w shout|strong="H7321"\w* \w aloud|strong="H7442"\w* \w to|strong="H3212"\w* \w the|strong="H3068"\w* \w rock|strong="H6697"\w* \w of|strong="H3068"\w* \w our|strong="H3068"\w* \w salvation|strong="H3468"\w*! +\q1 +\v 2 Let’s \w come|strong="H6923"\w* \w before|strong="H6440"\w* \w his|strong="H6440"\w* \w presence|strong="H6440"\w* \w with|strong="H6440"\w* \w thanksgiving|strong="H8426"\w*. +\q2 Let’s extol \w him|strong="H6440"\w* \w with|strong="H6440"\w* \w songs|strong="H2158"\w*! +\q1 +\v 3 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w God|strong="H3068"\w*, +\q2 \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w King|strong="H4428"\w* \w above|strong="H5921"\w* \w all|strong="H3605"\w* gods. +\q1 +\v 4 \w In|strong="H3027"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w* \w are|strong="H3027"\w* \w the|strong="H3027"\w* deep \w places|strong="H4278"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* earth. +\q2 \w The|strong="H3027"\w* heights \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w mountains|strong="H2022"\w* \w are|strong="H3027"\w* \w also|strong="H3027"\w* \w his|strong="H3027"\w*. +\q1 +\v 5 \w The|strong="H6213"\w* \w sea|strong="H3220"\w* \w is|strong="H1931"\w* \w his|strong="H3027"\w*, \w and|strong="H3027"\w* \w he|strong="H1931"\w* \w made|strong="H6213"\w* \w it|strong="H1931"\w*. +\q2 \w His|strong="H3027"\w* \w hands|strong="H3027"\w* \w formed|strong="H3335"\w* \w the|strong="H6213"\w* \w dry|strong="H3006"\w* \w land|strong="H3006"\w*. +\q1 +\v 6 Oh come, let’s \w worship|strong="H7812"\w* \w and|strong="H3068"\w* \w bow|strong="H7812"\w* \w down|strong="H7812"\w*. +\q2 Let’s \w kneel|strong="H1288"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w our|strong="H3068"\w* \w Maker|strong="H6213"\w*, +\q2 +\v 7 \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w our|strong="H8085"\w* \w God|strong="H3027"\w*. +\q1 \w We|strong="H3588"\w* \w are|strong="H3117"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w* \w of|strong="H3117"\w* \w his|strong="H8085"\w* \w pasture|strong="H4830"\w*, +\q2 \w and|strong="H3117"\w* \w the|strong="H8085"\w* \w sheep|strong="H6629"\w* \w in|strong="H8085"\w* \w his|strong="H8085"\w* \w care|strong="H3027"\w*. +\q1 \w Today|strong="H3117"\w*, oh \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w would|strong="H5971"\w* \w hear|strong="H8085"\w* \w his|strong="H8085"\w* \w voice|strong="H6963"\w*! +\q2 +\v 8 Don’t \w harden|strong="H7185"\w* \w your|strong="H3117"\w* \w heart|strong="H3824"\w*, \w as|strong="H3117"\w* \w at|strong="H3117"\w* Meribah, +\q2 \w as|strong="H3117"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* Massah \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w wilderness|strong="H4057"\w*, +\q1 +\v 9 \w when|strong="H7200"\w* \w your|strong="H7200"\w* fathers \w tempted|strong="H5254"\w* \w me|strong="H7200"\w*, +\q2 \w tested|strong="H5254"\w* \w me|strong="H7200"\w*, \w and|strong="H7200"\w* \w saw|strong="H7200"\w* \w my|strong="H7200"\w* \w work|strong="H6467"\w*. +\q1 +\v 10 Forty \w long|strong="H8141"\w* \w years|strong="H8141"\w* \w I|strong="H3045"\w* \w was|strong="H3824"\w* \w grieved|strong="H6962"\w* \w with|strong="H3045"\w* \w that|strong="H3045"\w* \w generation|strong="H1755"\w*, +\q2 \w and|strong="H5971"\w* said, “\w They|strong="H1992"\w* \w are|strong="H1992"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w err|strong="H8582"\w* \w in|strong="H8141"\w* \w their|strong="H1992"\w* \w heart|strong="H3824"\w*. +\q2 \w They|strong="H1992"\w* \w have|strong="H5971"\w* \w not|strong="H3808"\w* \w known|strong="H3045"\w* \w my|strong="H3045"\w* \w ways|strong="H1870"\w*.” +\q1 +\v 11 Therefore \w I|strong="H7650"\w* \w swore|strong="H7650"\w* \w in|strong="H7650"\w* \w my|strong="H7650"\w* wrath, +\q2 “They won’t enter into \w my|strong="H7650"\w* \w rest|strong="H4496"\w*.” +\c 96 +\q1 +\v 1 \w Sing|strong="H7891"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w song|strong="H7892"\w*! +\q2 \w Sing|strong="H7891"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth. +\q1 +\v 2 \w Sing|strong="H7891"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*! +\q2 \w Bless|strong="H1288"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w*! +\q2 \w Proclaim|strong="H1319"\w* \w his|strong="H3068"\w* \w salvation|strong="H3444"\w* \w from|strong="H3117"\w* \w day|strong="H3117"\w* \w to|strong="H3068"\w* \w day|strong="H3117"\w*! +\q1 +\v 3 \w Declare|strong="H5608"\w* \w his|strong="H3605"\w* \w glory|strong="H3519"\w* \w among|strong="H6381"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*, +\q2 \w his|strong="H3605"\w* \w marvelous|strong="H6381"\w* \w works|strong="H6381"\w* \w among|strong="H6381"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w*. +\q1 +\v 4 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w great|strong="H1419"\w*, \w and|strong="H3068"\w* \w greatly|strong="H3966"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w praised|strong="H1984"\w*! +\q2 \w He|strong="H1931"\w* \w is|strong="H3068"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w feared|strong="H3372"\w* \w above|strong="H5921"\w* \w all|strong="H3605"\w* gods. +\q1 +\v 5 \w For|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* gods \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w are|strong="H5971"\w* idols, +\q2 \w but|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w made|strong="H6213"\w* \w the|strong="H3605"\w* \w heavens|strong="H8064"\w*. +\q1 +\v 6 \w Honor|strong="H8597"\w* \w and|strong="H6440"\w* \w majesty|strong="H1926"\w* \w are|strong="H6440"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\q2 \w Strength|strong="H5797"\w* \w and|strong="H6440"\w* \w beauty|strong="H8597"\w* \w are|strong="H6440"\w* \w in|strong="H6440"\w* \w his|strong="H6440"\w* \w sanctuary|strong="H4720"\w*. +\q1 +\v 7 \w Ascribe|strong="H3051"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w you|strong="H5971"\w* \w families|strong="H4940"\w* \w of|strong="H3068"\w* \w nations|strong="H5971"\w*, +\q2 \w ascribe|strong="H3051"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w glory|strong="H3519"\w* \w and|strong="H3068"\w* \w strength|strong="H5797"\w*. +\q1 +\v 8 \w Ascribe|strong="H3051"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w the|strong="H5375"\w* \w glory|strong="H3519"\w* due \w to|strong="H3068"\w* \w his|strong="H5375"\w* \w name|strong="H8034"\w*. +\q2 \w Bring|strong="H5375"\w* \w an|strong="H5375"\w* \w offering|strong="H4503"\w*, \w and|strong="H3068"\w* \w come|strong="H3051"\w* \w into|strong="H3519"\w* \w his|strong="H5375"\w* \w courts|strong="H2691"\w*. +\q1 +\v 9 \w Worship|strong="H7812"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w holy|strong="H6944"\w* \w array|strong="H1927"\w*. +\q2 \w Tremble|strong="H2342"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth. +\q1 +\v 10 Say \w among|strong="H5971"\w* \w the|strong="H3068"\w* \w nations|strong="H1471"\w*, “\w Yahweh|strong="H3068"\w* \w reigns|strong="H4427"\w*.” +\q2 \w The|strong="H3068"\w* \w world|strong="H8398"\w* \w is|strong="H3068"\w* \w also|strong="H3068"\w* \w established|strong="H3559"\w*. +\q2 \w It|strong="H3559"\w* can’t \w be|strong="H3068"\w* \w moved|strong="H4131"\w*. +\q2 \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w judge|strong="H1777"\w* \w the|strong="H3068"\w* \w peoples|strong="H5971"\w* \w with|strong="H3068"\w* \w equity|strong="H4339"\w*. +\q1 +\v 11 \w Let|strong="H7481"\w* \w the|strong="H8055"\w* \w heavens|strong="H8064"\w* \w be|strong="H8064"\w* \w glad|strong="H8055"\w*, \w and|strong="H8064"\w* \w let|strong="H7481"\w* \w the|strong="H8055"\w* \w earth|strong="H8064"\w* \w rejoice|strong="H8055"\w*. +\q2 \w Let|strong="H7481"\w* \w the|strong="H8055"\w* \w sea|strong="H3220"\w* \w roar|strong="H7481"\w*, \w and|strong="H8064"\w* \w its|strong="H3220"\w* \w fullness|strong="H4393"\w*! +\q2 +\v 12 Let \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w and|strong="H6086"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w in|strong="H6086"\w* \w it|strong="H3605"\w* \w exult|strong="H5937"\w*! +\q2 \w Then|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w trees|strong="H6086"\w* \w of|strong="H7704"\w* \w the|strong="H3605"\w* \w woods|strong="H3293"\w* \w shall|strong="H7704"\w* \w sing|strong="H7442"\w* \w for|strong="H7442"\w* \w joy|strong="H7442"\w* +\q2 +\v 13 \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w comes|strong="H6440"\w*, +\q2 \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w comes|strong="H6440"\w* \w to|strong="H3068"\w* \w judge|strong="H8199"\w* \w the|strong="H6440"\w* earth. +\q1 \w He|strong="H3588"\w* \w will|strong="H3068"\w* \w judge|strong="H8199"\w* \w the|strong="H6440"\w* \w world|strong="H8398"\w* \w with|strong="H3068"\w* \w righteousness|strong="H6664"\w*, +\q2 \w the|strong="H6440"\w* \w peoples|strong="H5971"\w* \w with|strong="H3068"\w* \w his|strong="H3068"\w* truth. +\c 97 +\q1 +\v 1 \w Yahweh|strong="H3068"\w* \w reigns|strong="H4427"\w*! +\q2 \w Let|strong="H8055"\w* \w the|strong="H3068"\w* earth \w rejoice|strong="H8055"\w*! +\q2 \w Let|strong="H8055"\w* \w the|strong="H3068"\w* \w multitude|strong="H7227"\w* \w of|strong="H3068"\w* islands \w be|strong="H3068"\w* \w glad|strong="H8055"\w*! +\q1 +\v 2 \w Clouds|strong="H6051"\w* \w and|strong="H4941"\w* \w darkness|strong="H6205"\w* \w are|strong="H4941"\w* \w around|strong="H5439"\w* \w him|strong="H5439"\w*. +\q2 \w Righteousness|strong="H6664"\w* \w and|strong="H4941"\w* \w justice|strong="H4941"\w* \w are|strong="H4941"\w* \w the|strong="H5439"\w* \w foundation|strong="H4349"\w* \w of|strong="H3678"\w* \w his|strong="H5439"\w* \w throne|strong="H3678"\w*. +\q1 +\v 3 \w A|strong="H3068"\w* \w fire|strong="H3857"\w* \w goes|strong="H6440"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, +\q2 \w and|strong="H3212"\w* \w burns|strong="H3857"\w* \w up|strong="H3857"\w* \w his|strong="H6440"\w* \w adversaries|strong="H6862"\w* \w on|strong="H3212"\w* \w every|strong="H5439"\w* \w side|strong="H5439"\w*. +\q1 +\v 4 \w His|strong="H7200"\w* \w lightning|strong="H1300"\w* lights \w up|strong="H7200"\w* \w the|strong="H7200"\w* \w world|strong="H8398"\w*. +\q2 \w The|strong="H7200"\w* earth \w sees|strong="H7200"\w*, \w and|strong="H7200"\w* trembles. +\q1 +\v 5 \w The|strong="H3605"\w* \w mountains|strong="H2022"\w* \w melt|strong="H4549"\w* \w like|strong="H2022"\w* \w wax|strong="H1749"\w* \w at|strong="H3068"\w* \w the|strong="H3605"\w* \w presence|strong="H6440"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w at|strong="H3068"\w* \w the|strong="H3605"\w* \w presence|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w Lord|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* earth. +\q1 +\v 6 \w The|strong="H3605"\w* \w heavens|strong="H8064"\w* \w declare|strong="H5046"\w* \w his|strong="H3605"\w* \w righteousness|strong="H6664"\w*. +\q2 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w have|strong="H5971"\w* \w seen|strong="H7200"\w* \w his|strong="H3605"\w* \w glory|strong="H3519"\w*. +\q1 +\v 7 Let \w all|strong="H3605"\w* \w them|strong="H5647"\w* \w be|strong="H3605"\w* shamed \w who|strong="H3605"\w* \w serve|strong="H5647"\w* engraved \w images|strong="H6459"\w*, +\q2 \w who|strong="H3605"\w* \w boast|strong="H1984"\w* \w in|strong="H5647"\w* \w their|strong="H3605"\w* \w idols|strong="H6459"\w*. +\q2 \w Worship|strong="H7812"\w* \w him|strong="H5647"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* gods!\f + \fr 97:7 \ft LXX reads “angels” instead of “gods”.\f* +\q1 +\v 8 \w Zion|strong="H6726"\w* \w heard|strong="H8085"\w* \w and|strong="H3063"\w* \w was|strong="H3068"\w* \w glad|strong="H8055"\w*. +\q2 \w The|strong="H8085"\w* \w daughters|strong="H1323"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w* \w rejoiced|strong="H8055"\w* +\q2 \w because|strong="H4616"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w judgments|strong="H4941"\w*, \w Yahweh|strong="H3068"\w*. +\q1 +\v 9 \w For|strong="H3588"\w* \w you|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w are|strong="H3068"\w* \w most|strong="H5945"\w* \w high|strong="H5945"\w* \w above|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w earth|strong="H5927"\w*. +\q2 \w You|strong="H3588"\w* \w are|strong="H3068"\w* \w exalted|strong="H5927"\w* \w far|strong="H3966"\w* \w above|strong="H5921"\w* \w all|strong="H3605"\w* gods. +\q1 +\v 10 \w You|strong="H3027"\w* \w who|strong="H3068"\w* \w love|strong="H2623"\w* \w Yahweh|strong="H3068"\w*, \w hate|strong="H8130"\w* \w evil|strong="H7451"\w*! +\q2 \w He|strong="H3068"\w* \w preserves|strong="H8104"\w* \w the|strong="H8104"\w* \w souls|strong="H5315"\w* \w of|strong="H3068"\w* \w his|strong="H8104"\w* \w saints|strong="H2623"\w*. +\q2 \w He|strong="H3068"\w* \w delivers|strong="H5337"\w* \w them|strong="H3027"\w* \w out|strong="H5337"\w* \w of|strong="H3068"\w* \w the|strong="H8104"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w the|strong="H8104"\w* \w wicked|strong="H7563"\w*. +\q1 +\v 11 Light \w is|strong="H3820"\w* \w sown|strong="H2232"\w* \w for|strong="H6662"\w* \w the|strong="H2232"\w* \w righteous|strong="H6662"\w*, +\q2 \w and|strong="H8057"\w* \w gladness|strong="H8057"\w* \w for|strong="H6662"\w* \w the|strong="H2232"\w* \w upright|strong="H3477"\w* \w in|strong="H3477"\w* \w heart|strong="H3820"\w*. +\q1 +\v 12 \w Be|strong="H3068"\w* \w glad|strong="H8055"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w you|strong="H3034"\w* \w righteous|strong="H6662"\w* people! +\q2 \w Give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w holy|strong="H6944"\w* \w Name|strong="H2143"\w*. +\c 98 +\d A Psalm. +\q1 +\v 1 \w Sing|strong="H7891"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w song|strong="H7892"\w*, +\q2 \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w* \w marvelous|strong="H6381"\w* \w things|strong="H6944"\w*! +\q2 \w His|strong="H3068"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w holy|strong="H6944"\w* \w arm|strong="H2220"\w* \w have|strong="H3068"\w* \w worked|strong="H6213"\w* \w salvation|strong="H3467"\w* \w for|strong="H3588"\w* \w him|strong="H6213"\w*. +\q1 +\v 2 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w made|strong="H3045"\w* \w known|strong="H3045"\w* \w his|strong="H3068"\w* \w salvation|strong="H3444"\w*. +\q2 \w He|strong="H3068"\w* \w has|strong="H3068"\w* \w openly|strong="H5869"\w* \w shown|strong="H3045"\w* \w his|strong="H3068"\w* \w righteousness|strong="H6666"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w sight|strong="H5869"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w nations|strong="H1471"\w*. +\q1 +\v 3 \w He|strong="H3605"\w* \w has|strong="H3478"\w* \w remembered|strong="H2142"\w* \w his|strong="H3605"\w* loving \w kindness|strong="H2617"\w* \w and|strong="H3478"\w* \w his|strong="H3605"\w* \w faithfulness|strong="H2617"\w* toward \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. +\q2 \w All|strong="H3605"\w* \w the|strong="H3605"\w* ends \w of|strong="H1004"\w* \w the|strong="H3605"\w* earth \w have|strong="H3478"\w* \w seen|strong="H7200"\w* \w the|strong="H3605"\w* \w salvation|strong="H3444"\w* \w of|strong="H1004"\w* \w our|strong="H3605"\w* God. +\q1 +\v 4 Make \w a|strong="H3068"\w* \w joyful|strong="H7442"\w* \w noise|strong="H7321"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth! +\q2 Burst \w out|strong="H7321"\w* \w and|strong="H3068"\w* \w sing|strong="H2167"\w* \w for|strong="H7442"\w* \w joy|strong="H7442"\w*, yes, \w sing|strong="H2167"\w* \w praises|strong="H2167"\w*! +\q1 +\v 5 \w Sing|strong="H2167"\w* \w praises|strong="H2167"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w the|strong="H3068"\w* \w harp|strong="H3658"\w*, +\q2 \w with|strong="H3068"\w* \w the|strong="H3068"\w* \w harp|strong="H3658"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w melody|strong="H2172"\w*. +\q1 +\v 6 \w With|strong="H3068"\w* \w trumpets|strong="H2689"\w* \w and|strong="H3068"\w* \w sound|strong="H6963"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* ram’s \w horn|strong="H7782"\w*, +\q2 make \w a|strong="H3068"\w* joyful \w noise|strong="H6963"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w King|strong="H4428"\w*, \w Yahweh|strong="H3068"\w*. +\q1 +\v 7 \w Let|strong="H7481"\w* \w the|strong="H3427"\w* \w sea|strong="H3220"\w* \w roar|strong="H7481"\w* \w with|strong="H3427"\w* \w its|strong="H3220"\w* \w fullness|strong="H4393"\w*; +\q2 \w the|strong="H3427"\w* \w world|strong="H8398"\w*, \w and|strong="H3427"\w* \w those|strong="H3427"\w* \w who|strong="H3427"\w* \w dwell|strong="H3427"\w* \w therein|strong="H4393"\w*. +\q1 +\v 8 Let \w the|strong="H2022"\w* \w rivers|strong="H5104"\w* \w clap|strong="H4222"\w* \w their|strong="H4222"\w* \w hands|strong="H3709"\w*. +\q2 Let \w the|strong="H2022"\w* \w mountains|strong="H2022"\w* \w sing|strong="H7442"\w* \w for|strong="H7442"\w* \w joy|strong="H7442"\w* \w together|strong="H3162"\w*. +\q1 +\v 9 Let \w them|strong="H6440"\w* sing \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w comes|strong="H6440"\w* \w to|strong="H3068"\w* \w judge|strong="H8199"\w* \w the|strong="H6440"\w* earth. +\q1 \w He|strong="H3588"\w* \w will|strong="H3068"\w* \w judge|strong="H8199"\w* \w the|strong="H6440"\w* \w world|strong="H8398"\w* \w with|strong="H3068"\w* \w righteousness|strong="H6664"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w peoples|strong="H5971"\w* \w with|strong="H3068"\w* \w equity|strong="H4339"\w*. +\c 99 +\q1 +\v 1 \w Yahweh|strong="H3068"\w* \w reigns|strong="H4427"\w*! Let \w the|strong="H3068"\w* \w peoples|strong="H5971"\w* \w tremble|strong="H7264"\w*. +\q2 \w He|strong="H3068"\w* \w sits|strong="H3427"\w* \w enthroned|strong="H3427"\w* \w among|strong="H3427"\w* \w the|strong="H3068"\w* \w cherubim|strong="H3742"\w*. +\q2 Let \w the|strong="H3068"\w* earth \w be|strong="H3068"\w* \w moved|strong="H7264"\w*. +\q1 +\v 2 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w great|strong="H1419"\w* \w in|strong="H5921"\w* \w Zion|strong="H6726"\w*. +\q2 \w He|strong="H1931"\w* \w is|strong="H3068"\w* \w high|strong="H1419"\w* \w above|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w*. +\q1 +\v 3 Let \w them|strong="H1931"\w* \w praise|strong="H3034"\w* \w your|strong="H3372"\w* \w great|strong="H1419"\w* \w and|strong="H1419"\w* \w awesome|strong="H3372"\w* \w name|strong="H8034"\w*. +\q2 \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w Holy|strong="H6918"\w*! +\b +\q1 +\v 4 \w The|strong="H6213"\w* \w King|strong="H4428"\w*’s \w strength|strong="H5797"\w* \w also|strong="H6213"\w* loves \w justice|strong="H4941"\w*. +\q2 \w You|strong="H6213"\w* \w establish|strong="H3559"\w* \w equity|strong="H4339"\w*. +\q2 \w You|strong="H6213"\w* \w execute|strong="H6213"\w* \w justice|strong="H4941"\w* \w and|strong="H4428"\w* \w righteousness|strong="H6666"\w* \w in|strong="H6213"\w* \w Jacob|strong="H3290"\w*. +\q1 +\v 5 \w Exalt|strong="H7311"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*. +\q2 \w Worship|strong="H7812"\w* \w at|strong="H3068"\w* \w his|strong="H3068"\w* \w footstool|strong="H1916"\w*. +\q2 \w He|strong="H1931"\w* \w is|strong="H3068"\w* \w Holy|strong="H6918"\w*! +\b +\q1 +\v 6 \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* Aaron \w were|strong="H3068"\w* \w among|strong="H8034"\w* \w his|strong="H3068"\w* \w priests|strong="H3548"\w*, +\q2 \w Samuel|strong="H8050"\w* \w was|strong="H3068"\w* \w among|strong="H8034"\w* \w those|strong="H1931"\w* \w who|strong="H1931"\w* \w call|strong="H7121"\w* \w on|strong="H3068"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w*. +\q2 \w They|strong="H3068"\w* \w called|strong="H7121"\w* \w on|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H4872"\w* \w he|strong="H1931"\w* \w answered|strong="H6030"\w* \w them|strong="H7121"\w*. +\q1 +\v 7 \w He|strong="H5414"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H5414"\w* \w in|strong="H1696"\w* \w the|strong="H5414"\w* \w pillar|strong="H5982"\w* \w of|strong="H5982"\w* \w cloud|strong="H6051"\w*. +\q2 \w They|strong="H5414"\w* \w kept|strong="H8104"\w* \w his|strong="H5414"\w* \w testimonies|strong="H5713"\w*, +\q2 \w the|strong="H5414"\w* \w statute|strong="H2706"\w* \w that|strong="H5414"\w* \w he|strong="H5414"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w*. +\q1 +\v 8 \w You|strong="H5921"\w* \w answered|strong="H6030"\w* \w them|strong="H1992"\w*, \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*. +\q2 \w You|strong="H5921"\w* \w are|strong="H1992"\w* \w a|strong="H3068"\w* \w God|strong="H3068"\w* \w who|strong="H3068"\w* \w forgave|strong="H5375"\w* \w them|strong="H1992"\w*, +\q2 \w although|strong="H5921"\w* \w you|strong="H5921"\w* \w took|strong="H5375"\w* \w vengeance|strong="H5358"\w* \w for|strong="H5921"\w* \w their|strong="H3068"\w* \w doings|strong="H5949"\w*. +\q1 +\v 9 \w Exalt|strong="H7311"\w* \w Yahweh|strong="H3068"\w*, \w our|strong="H3068"\w* \w God|strong="H3068"\w*. +\q2 \w Worship|strong="H7812"\w* \w at|strong="H3068"\w* \w his|strong="H3068"\w* \w holy|strong="H6944"\w* \w hill|strong="H2022"\w*, +\q2 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w is|strong="H3068"\w* \w holy|strong="H6944"\w*! +\c 100 +\d A Psalm of thanksgiving. +\q1 +\v 1 \w Shout|strong="H7321"\w* \w for|strong="H3068"\w* \w joy|strong="H7321"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* lands! +\q2 +\v 2 \w Serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w gladness|strong="H8057"\w*. +\q2 Come \w before|strong="H6440"\w* \w his|strong="H3068"\w* \w presence|strong="H6440"\w* \w with|strong="H3068"\w* \w singing|strong="H7445"\w*. +\q1 +\v 3 \w Know|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, \w he|strong="H1931"\w* \w is|strong="H3068"\w* \w God|strong="H3068"\w*. +\q2 \w It|strong="H1931"\w* \w is|strong="H3068"\w* \w he|strong="H1931"\w* \w who|strong="H1931"\w* \w has|strong="H3068"\w* \w made|strong="H6213"\w* \w us|strong="H6213"\w*, \w and|strong="H3068"\w* \w we|strong="H3068"\w* \w are|strong="H5971"\w* \w his|strong="H3068"\w*. +\q2 \w We|strong="H3588"\w* \w are|strong="H5971"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*, \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w sheep|strong="H6629"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w pasture|strong="H4830"\w*. +\q1 +\v 4 Enter into \w his|strong="H1288"\w* \w gates|strong="H8179"\w* \w with|strong="H2691"\w* \w thanksgiving|strong="H8426"\w*, +\q2 \w and|strong="H8179"\w* into \w his|strong="H1288"\w* \w courts|strong="H2691"\w* \w with|strong="H2691"\w* \w praise|strong="H8416"\w*. +\q2 \w Give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H8034"\w* \w him|strong="H1288"\w*, \w and|strong="H8179"\w* \w bless|strong="H1288"\w* \w his|strong="H1288"\w* \w name|strong="H8034"\w*. +\q1 +\v 5 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w*. +\q2 \w His|strong="H3068"\w* \w loving|strong="H2896"\w* \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*, +\q2 \w his|strong="H3068"\w* \w faithfulness|strong="H2617"\w* \w to|strong="H5704"\w* \w all|strong="H1755"\w* \w generations|strong="H1755"\w*. +\c 101 +\d A Psalm by David. +\q1 +\v 1 \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w sing|strong="H7891"\w* \w of|strong="H3068"\w* loving \w kindness|strong="H2617"\w* \w and|strong="H3068"\w* \w justice|strong="H4941"\w*. +\q2 \w To|strong="H3068"\w* \w you|strong="H2167"\w*, \w Yahweh|strong="H3068"\w*, \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w sing|strong="H7891"\w* \w praises|strong="H2167"\w*. +\q1 +\v 2 \w I|strong="H1980"\w* \w will|strong="H1004"\w* \w be|strong="H1004"\w* careful \w to|strong="H1980"\w* \w live|strong="H1980"\w* \w a|strong="H3068"\w* \w blameless|strong="H8549"\w* life. +\q2 \w When|strong="H4970"\w* \w will|strong="H1004"\w* \w you|strong="H7130"\w* \w come|strong="H1980"\w* \w to|strong="H1980"\w* \w me|strong="H3824"\w*? +\q2 \w I|strong="H1980"\w* \w will|strong="H1004"\w* \w walk|strong="H1980"\w* \w within|strong="H7130"\w* \w my|strong="H7130"\w* \w house|strong="H1004"\w* \w with|strong="H1980"\w* \w a|strong="H3068"\w* \w blameless|strong="H8549"\w* \w heart|strong="H3824"\w*. +\q1 +\v 3 \w I|strong="H1697"\w* \w will|strong="H5869"\w* \w set|strong="H7896"\w* \w no|strong="H3808"\w* vile \w thing|strong="H1697"\w* \w before|strong="H5048"\w* \w my|strong="H6213"\w* \w eyes|strong="H5869"\w*. +\q2 \w I|strong="H1697"\w* \w hate|strong="H8130"\w* \w the|strong="H6213"\w* \w deeds|strong="H1697"\w* \w of|strong="H1697"\w* faithless \w men|strong="H1100"\w*. +\q2 \w They|strong="H3808"\w* \w will|strong="H5869"\w* \w not|strong="H3808"\w* \w cling|strong="H1692"\w* \w to|strong="H6213"\w* \w me|strong="H8130"\w*. +\q1 +\v 4 \w A|strong="H3068"\w* \w perverse|strong="H6141"\w* \w heart|strong="H3824"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w far|strong="H4480"\w* \w from|strong="H4480"\w* \w me|strong="H4480"\w*. +\q2 \w I|strong="H3045"\w* \w will|strong="H3808"\w* \w have|strong="H3045"\w* \w nothing|strong="H3808"\w* \w to|strong="H3824"\w* \w do|strong="H5493"\w* \w with|strong="H3045"\w* \w evil|strong="H7451"\w*. +\q1 +\v 5 \w I|strong="H3201"\w* \w will|strong="H5869"\w* silence whoever \w secretly|strong="H5643"\w* \w slanders|strong="H3960"\w* \w his|strong="H3808"\w* \w neighbor|strong="H7453"\w*. +\q2 \w I|strong="H3201"\w* won’t \w tolerate|strong="H3201"\w* \w one|strong="H3808"\w* \w who|strong="H3808"\w* \w is|strong="H5869"\w* \w arrogant|strong="H7342"\w* \w and|strong="H5869"\w* conceited. +\q1 +\v 6 \w My|strong="H1870"\w* \w eyes|strong="H5869"\w* \w will|strong="H5869"\w* \w be|strong="H5869"\w* \w on|strong="H1980"\w* \w the|strong="H1870"\w* faithful \w of|strong="H3427"\w* \w the|strong="H1870"\w* land, +\q2 \w that|strong="H1931"\w* \w they|strong="H1931"\w* \w may|strong="H1931"\w* \w dwell|strong="H3427"\w* \w with|strong="H1980"\w* \w me|strong="H5978"\w*. +\q1 \w He|strong="H1931"\w* \w who|strong="H1931"\w* \w walks|strong="H1980"\w* \w in|strong="H3427"\w* \w a|strong="H3068"\w* \w perfect|strong="H8549"\w* \w way|strong="H1870"\w*, +\q2 \w he|strong="H1931"\w* \w will|strong="H5869"\w* \w serve|strong="H8334"\w* \w me|strong="H5978"\w*. +\q1 +\v 7 \w He|strong="H6213"\w* \w who|strong="H3427"\w* \w practices|strong="H6213"\w* \w deceit|strong="H8267"\w* won’t \w dwell|strong="H3427"\w* \w within|strong="H7130"\w* \w my|strong="H6213"\w* \w house|strong="H1004"\w*. +\q2 \w He|strong="H6213"\w* \w who|strong="H3427"\w* \w speaks|strong="H1696"\w* \w falsehood|strong="H8267"\w* won’t \w be|strong="H3808"\w* \w established|strong="H3559"\w* \w before|strong="H5048"\w* \w my|strong="H6213"\w* \w eyes|strong="H5869"\w*. +\q1 +\v 8 \w Morning|strong="H1242"\w* \w by|strong="H3068"\w* \w morning|strong="H1242"\w*, \w I|strong="H3772"\w* \w will|strong="H3068"\w* \w destroy|strong="H6789"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w wicked|strong="H7563"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* land, +\q2 \w to|strong="H3068"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w workers|strong="H6466"\w* \w of|strong="H3068"\w* iniquity \w from|strong="H3772"\w* \w Yahweh|strong="H3068"\w*’s \w city|strong="H5892"\w*. +\c 102 +\d A Prayer of the afflicted, when he is overwhelmed and pours out his complaint before Yahweh. +\q1 +\v 1 Hear \w my|strong="H3068"\w* \w prayer|strong="H8605"\w*, \w Yahweh|strong="H3068"\w*! +\q2 Let \w my|strong="H3068"\w* cry come \w to|strong="H3068"\w* \w you|strong="H3588"\w*. +\q1 +\v 2 Don’t hide \w your|strong="H3068"\w* face \w from|strong="H8085"\w* \w me|strong="H8085"\w* \w in|strong="H3068"\w* \w the|strong="H8085"\w* day \w of|strong="H3068"\w* \w my|strong="H8085"\w* distress. +\q2 Turn \w your|strong="H3068"\w* \w ear|strong="H8085"\w* \w to|strong="H3068"\w* \w me|strong="H8085"\w*. +\q2 Answer \w me|strong="H8085"\w* quickly \w in|strong="H3068"\w* \w the|strong="H8085"\w* day \w when|strong="H8085"\w* \w I|strong="H8085"\w* \w call|strong="H8085"\w*. +\q1 +\v 3 \w For|strong="H7121"\w* \w my|strong="H5641"\w* \w days|strong="H3117"\w* consume \w away|strong="H5186"\w* \w like|strong="H3117"\w* smoke. +\q2 \w My|strong="H5641"\w* bones \w are|strong="H3117"\w* burned \w as|strong="H3117"\w* \w a|strong="H3068"\w* torch. +\q1 +\v 4 \w My|strong="H3615"\w* heart \w is|strong="H3117"\w* blighted \w like|strong="H3615"\w* grass, \w and|strong="H3117"\w* withered, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* forget \w to|strong="H3117"\w* eat \w my|strong="H3615"\w* bread. +\q1 +\v 5 \w By|strong="H3588"\w* reason \w of|strong="H3820"\w* \w the|strong="H3588"\w* voice \w of|strong="H3820"\w* \w my|strong="H3588"\w* groaning, +\q2 \w my|strong="H3588"\w* bones stick \w to|strong="H3820"\w* \w my|strong="H3588"\w* skin. +\q1 +\v 6 \w I|strong="H6963"\w* am like \w a|strong="H3068"\w* pelican \w of|strong="H6963"\w* \w the|strong="H6963"\w* wilderness. +\q2 \w I|strong="H6963"\w* have become as \w an|strong="H6963"\w* owl \w of|strong="H6963"\w* \w the|strong="H6963"\w* waste places. +\q2 +\v 7 \w I|strong="H1961"\w* watch, \w and|strong="H4057"\w* \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w like|strong="H1819"\w* \w a|strong="H3068"\w* sparrow \w that|strong="H1961"\w* \w is|strong="H1961"\w* alone \w on|strong="H1961"\w* \w the|strong="H1961"\w* housetop. +\q1 +\v 8 \w My|strong="H5921"\w* enemies reproach \w me|strong="H5921"\w* \w all|strong="H5921"\w* day. +\q2 \w Those|strong="H5921"\w* who \w are|strong="H1961"\w* mad \w at|strong="H5921"\w* \w me|strong="H5921"\w* \w use|strong="H1961"\w* \w my|strong="H5921"\w* name \w as|strong="H1961"\w* \w a|strong="H3068"\w* curse. +\q1 +\v 9 \w For|strong="H3117"\w* \w I|strong="H3117"\w* \w have|strong="H3117"\w* eaten ashes \w like|strong="H3117"\w* bread, +\q2 \w and|strong="H3117"\w* mixed \w my|strong="H3605"\w* drink \w with|strong="H3117"\w* tears, +\q2 +\v 10 \w because|strong="H3588"\w* \w of|strong="H3899"\w* \w your|strong="H3588"\w* indignation \w and|strong="H3899"\w* \w your|strong="H3588"\w* wrath; +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* taken \w me|strong="H3588"\w* up \w and|strong="H3899"\w* thrown \w me|strong="H3588"\w* away. +\q1 +\v 11 \w My|strong="H5375"\w* days \w are|strong="H6440"\w* \w like|strong="H6440"\w* \w a|strong="H3068"\w* \w long|strong="H6440"\w* shadow. +\q2 \w I|strong="H3588"\w* \w have|strong="H5375"\w* withered \w like|strong="H6440"\w* grass. +\b +\q1 +\v 12 \w But|strong="H3117"\w* \w you|strong="H3117"\w*, \w Yahweh|strong="H3068"\w*, \w will|strong="H3117"\w* remain \w forever|strong="H3117"\w*; +\q2 \w your|strong="H5186"\w* renown endures \w to|strong="H3117"\w* \w all|strong="H3117"\w* generations. +\q1 +\v 13 \w You|strong="H3427"\w* \w will|strong="H3068"\w* arise \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w mercy|strong="H3068"\w* \w on|strong="H3427"\w* Zion, +\q2 \w for|strong="H3427"\w* \w it|strong="H3068"\w* \w is|strong="H3068"\w* \w time|strong="H5769"\w* \w to|strong="H3068"\w* \w have|strong="H3068"\w* pity \w on|strong="H3427"\w* her. +\q2 Yes, \w the|strong="H3068"\w* \w set|strong="H3427"\w* \w time|strong="H5769"\w* \w has|strong="H3068"\w* come. +\q1 +\v 14 \w For|strong="H3588"\w* \w your|strong="H3588"\w* servants \w take|strong="H6965"\w* pleasure \w in|strong="H6965"\w* \w her|strong="H6965"\w* stones, +\q2 \w and|strong="H6965"\w* \w have|strong="H7355"\w* \w pity|strong="H2603"\w* \w on|strong="H7355"\w* \w her|strong="H6965"\w* dust. +\q1 +\v 15 \w So|strong="H3588"\w* \w the|strong="H3588"\w* nations \w will|strong="H5650"\w* fear \w Yahweh|strong="H3068"\w*’s name, +\q2 all \w the|strong="H3588"\w* kings \w of|strong="H5650"\w* \w the|strong="H3588"\w* \w earth|strong="H6083"\w* \w your|strong="H3588"\w* glory. +\q1 +\v 16 \w For|strong="H8034"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* built \w up|strong="H4428"\w* Zion. +\q2 \w He|strong="H3068"\w* \w has|strong="H3068"\w* appeared \w in|strong="H3068"\w* \w his|strong="H3605"\w* \w glory|strong="H3519"\w*. +\q1 +\v 17 \w He|strong="H3588"\w* \w has|strong="H3068"\w* responded \w to|strong="H3068"\w* \w the|strong="H7200"\w* prayer \w of|strong="H3068"\w* \w the|strong="H7200"\w* destitute, +\q2 \w and|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3588"\w* despised \w their|strong="H3068"\w* prayer. +\q1 +\v 18 \w This|strong="H6437"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* written \w for|strong="H8605"\w* \w the|strong="H3808"\w* generation \w to|strong="H6437"\w* come. +\q2 \w A|strong="H3068"\w* \w people|strong="H3808"\w* which \w will|strong="H3808"\w* \w be|strong="H3808"\w* created \w will|strong="H3808"\w* praise \w Yah|strong="H3068"\w*, +\q1 +\v 19 \w for|strong="H5971"\w* \w he|strong="H5971"\w* \w has|strong="H3050"\w* looked \w down|strong="H3789"\w* \w from|strong="H5971"\w* \w the|strong="H1984"\w* height \w of|strong="H5971"\w* \w his|strong="H5971"\w* sanctuary. +\q2 \w From|strong="H5971"\w* heaven, \w Yahweh|strong="H3068"\w* saw \w the|strong="H1984"\w* earth, +\q1 +\v 20 \w to|strong="H3068"\w* hear \w the|strong="H3588"\w* groans \w of|strong="H3068"\w* \w the|strong="H3588"\w* prisoner, +\q2 \w to|strong="H3068"\w* free \w those|strong="H3588"\w* \w who|strong="H3068"\w* \w are|strong="H8064"\w* condemned \w to|strong="H3068"\w* death, +\q1 +\v 21 \w that|strong="H8085"\w* \w men|strong="H1121"\w* \w may|strong="H1121"\w* \w declare|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s name \w in|strong="H8085"\w* Zion, +\q2 \w and|strong="H1121"\w* \w his|strong="H8085"\w* praise \w in|strong="H8085"\w* Jerusalem, +\q1 +\v 22 \w when|strong="H3068"\w* \w the|strong="H3068"\w* peoples \w are|strong="H3068"\w* gathered together, +\q2 \w the|strong="H3068"\w* kingdoms, \w to|strong="H3068"\w* serve \w Yahweh|strong="H3068"\w*. +\b +\q1 +\v 23 \w He|strong="H3068"\w* weakened \w my|strong="H3068"\w* strength along \w the|strong="H5647"\w* course. +\q2 \w He|strong="H3068"\w* shortened \w my|strong="H3068"\w* days. +\q1 +\v 24 \w I|strong="H3117"\w* said, “\w My|strong="H6031"\w* God, don’t take \w me|strong="H3117"\w* \w away|strong="H1870"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* middle \w of|strong="H3117"\w* \w my|strong="H6031"\w* \w days|strong="H3117"\w*. +\q2 \w Your|strong="H6031"\w* \w years|strong="H3117"\w* \w are|strong="H3117"\w* \w throughout|strong="H3117"\w* \w all|strong="H3117"\w* generations. +\q1 +\v 25 \w Of|strong="H3117"\w* \w old|strong="H8141"\w*, \w you|strong="H3117"\w* \w laid|strong="H5927"\w* \w the|strong="H3117"\w* \w foundation|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w earth|strong="H5927"\w*. +\q2 \w The|strong="H3117"\w* heavens \w are|strong="H3117"\w* \w the|strong="H3117"\w* work \w of|strong="H3117"\w* \w your|strong="H5927"\w* hands. +\q1 +\v 26 \w They|strong="H3027"\w* \w will|strong="H8064"\w* perish, but \w you|strong="H6440"\w* \w will|strong="H8064"\w* \w endure|strong="H6440"\w*. +\q2 Yes, \w all|strong="H6440"\w* \w of|strong="H3027"\w* \w them|strong="H6440"\w* \w will|strong="H8064"\w* wear \w out|strong="H6440"\w* \w like|strong="H8064"\w* \w a|strong="H3068"\w* garment. +\q2 \w You|strong="H6440"\w* \w will|strong="H8064"\w* change \w them|strong="H6440"\w* \w like|strong="H8064"\w* \w a|strong="H3068"\w* cloak, \w and|strong="H8064"\w* \w they|strong="H3027"\w* \w will|strong="H8064"\w* \w be|strong="H3027"\w* changed. +\q1 +\v 27 \w But|strong="H1992"\w* \w you|strong="H3605"\w* \w are|strong="H1992"\w* \w the|strong="H3605"\w* \w same|strong="H1992"\w*. +\q2 \w Your|strong="H3605"\w* years \w will|strong="H1992"\w* \w have|strong="H3605"\w* \w no|strong="H3605"\w* end. +\q1 +\v 28 \w The|strong="H3808"\w* children \w of|strong="H8141"\w* \w your|strong="H3808"\w* servants \w will|strong="H3808"\w* continue. +\q2 \w Their|strong="H3808"\w* offspring \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w established|strong="H3808"\w* \w before|strong="H3808"\w* \w you|strong="H3808"\w*.” +\c 103 +\d By David. +\q1 +\v 1 \w Praise|strong="H1288"\w* \w Yahweh|strong="H3068"\w*, \w my|strong="H3605"\w* \w soul|strong="H5315"\w*! +\q2 \w All|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3068"\w* \w within|strong="H7130"\w* \w me|strong="H5315"\w*, \w praise|strong="H1288"\w* \w his|strong="H3605"\w* \w holy|strong="H6944"\w* \w name|strong="H8034"\w*! +\q1 +\v 2 \w Praise|strong="H1288"\w* \w Yahweh|strong="H3068"\w*, \w my|strong="H3605"\w* \w soul|strong="H5315"\w*, +\q2 \w and|strong="H3068"\w* don’t \w forget|strong="H7911"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w benefits|strong="H1576"\w*, +\q1 +\v 3 \w who|strong="H3605"\w* forgives \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w sins|strong="H5771"\w*, +\q2 \w who|strong="H3605"\w* \w heals|strong="H7495"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w diseases|strong="H8463"\w*, +\q1 +\v 4 \w who|strong="H2416"\w* \w redeems|strong="H1350"\w* \w your|strong="H1350"\w* \w life|strong="H2416"\w* \w from|strong="H2416"\w* \w destruction|strong="H7845"\w*, +\q2 \w who|strong="H2416"\w* \w crowns|strong="H5849"\w* \w you|strong="H7356"\w* \w with|strong="H2416"\w* loving \w kindness|strong="H2617"\w* \w and|strong="H2617"\w* tender \w mercies|strong="H7356"\w*, +\q1 +\v 5 \w who|strong="H2896"\w* \w satisfies|strong="H7646"\w* \w your|strong="H7646"\w* desire \w with|strong="H7646"\w* \w good|strong="H2896"\w* \w things|strong="H2896"\w*, +\q2 so \w that|strong="H5404"\w* \w your|strong="H7646"\w* \w youth|strong="H5271"\w* \w is|strong="H2896"\w* \w renewed|strong="H2318"\w* \w like|strong="H2896"\w* \w the|strong="H2318"\w* \w eagle|strong="H5404"\w*’s. +\q1 +\v 6 \w Yahweh|strong="H3068"\w* \w executes|strong="H6213"\w* \w righteous|strong="H6666"\w* \w acts|strong="H6213"\w*, +\q2 \w and|strong="H3068"\w* \w justice|strong="H4941"\w* \w for|strong="H6213"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H3068"\w* \w oppressed|strong="H6231"\w*. +\q1 +\v 7 \w He|strong="H4872"\w* \w made|strong="H3045"\w* \w known|strong="H3045"\w* \w his|strong="H3045"\w* \w ways|strong="H1870"\w* \w to|strong="H3478"\w* \w Moses|strong="H4872"\w*, +\q2 \w his|strong="H3045"\w* \w deeds|strong="H5949"\w* \w to|strong="H3478"\w* \w the|strong="H3045"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\q1 +\v 8 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w merciful|strong="H7349"\w* \w and|strong="H3068"\w* \w gracious|strong="H2587"\w*, +\q2 slow \w to|strong="H3068"\w* anger, \w and|strong="H3068"\w* \w abundant|strong="H7227"\w* \w in|strong="H3068"\w* loving \w kindness|strong="H2617"\w*. +\q1 +\v 9 \w He|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w always|strong="H5769"\w* \w accuse|strong="H7378"\w*; +\q2 \w neither|strong="H3808"\w* \w will|strong="H3808"\w* \w he|strong="H3808"\w* stay \w angry|strong="H5201"\w* \w forever|strong="H5769"\w*. +\q1 +\v 10 \w He|strong="H6213"\w* \w has|strong="H6213"\w* \w not|strong="H3808"\w* \w dealt|strong="H6213"\w* \w with|strong="H6213"\w* \w us|strong="H5921"\w* \w according|strong="H5921"\w* \w to|strong="H6213"\w* \w our|strong="H5921"\w* \w sins|strong="H2399"\w*, +\q2 \w nor|strong="H3808"\w* \w repaid|strong="H1580"\w* \w us|strong="H5921"\w* \w for|strong="H5921"\w* \w our|strong="H5921"\w* \w iniquities|strong="H5771"\w*. +\q1 +\v 11 \w For|strong="H3588"\w* \w as|strong="H3588"\w* \w the|strong="H5921"\w* \w heavens|strong="H8064"\w* \w are|strong="H8064"\w* \w high|strong="H1361"\w* \w above|strong="H5921"\w* \w the|strong="H5921"\w* \w earth|strong="H8064"\w*, +\q2 \w so|strong="H3588"\w* \w great|strong="H1396"\w* \w is|strong="H2617"\w* \w his|strong="H5921"\w* loving \w kindness|strong="H2617"\w* \w toward|strong="H5921"\w* \w those|strong="H5921"\w* \w who|strong="H3588"\w* \w fear|strong="H3373"\w* \w him|strong="H5921"\w*. +\q1 +\v 12 \w As|strong="H6588"\w* \w far|strong="H7368"\w* \w as|strong="H6588"\w* \w the|strong="H4480"\w* \w east|strong="H4217"\w* \w is|strong="H6588"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w west|strong="H4628"\w*, +\q2 \w so|strong="H4480"\w* \w far|strong="H7368"\w* has \w he|strong="H4480"\w* \w removed|strong="H7368"\w* \w our|strong="H4480"\w* \w transgressions|strong="H6588"\w* \w from|strong="H4480"\w* \w us|strong="H4480"\w*. +\q1 +\v 13 \w Like|strong="H1121"\w* \w a|strong="H3068"\w* \w father|strong="H1121"\w* \w has|strong="H3068"\w* \w compassion|strong="H7355"\w* \w on|strong="H5921"\w* \w his|strong="H3068"\w* \w children|strong="H1121"\w*, +\q2 \w so|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w compassion|strong="H7355"\w* \w on|strong="H5921"\w* \w those|strong="H5921"\w* \w who|strong="H3068"\w* \w fear|strong="H3373"\w* \w him|strong="H5921"\w*. +\q1 +\v 14 \w For|strong="H3588"\w* \w he|strong="H1931"\w* \w knows|strong="H3045"\w* \w how|strong="H3588"\w* \w we|strong="H3068"\w* \w are|strong="H3045"\w* \w made|strong="H3045"\w*. +\q2 \w He|strong="H1931"\w* \w remembers|strong="H2142"\w* \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w are|strong="H3045"\w* \w dust|strong="H6083"\w*. +\q1 +\v 15 \w As|strong="H3117"\w* \w for|strong="H3117"\w* man, \w his|strong="H3117"\w* \w days|strong="H3117"\w* \w are|strong="H3117"\w* \w like|strong="H3651"\w* \w grass|strong="H2682"\w*. +\q2 \w As|strong="H3117"\w* \w a|strong="H3068"\w* \w flower|strong="H6731"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w field|strong="H7704"\w*, \w so|strong="H3651"\w* \w he|strong="H3117"\w* \w flourishes|strong="H6692"\w*. +\q1 +\v 16 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w wind|strong="H7307"\w* \w passes|strong="H5674"\w* \w over|strong="H5674"\w* \w it|strong="H3588"\w*, \w and|strong="H4725"\w* \w it|strong="H3588"\w* \w is|strong="H7307"\w* \w gone|strong="H5674"\w*. +\q2 \w Its|strong="H3588"\w* \w place|strong="H4725"\w* remembers \w it|strong="H3588"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w*. +\q1 +\v 17 \w But|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s loving \w kindness|strong="H2617"\w* \w is|strong="H3068"\w* \w from|strong="H5921"\w* \w everlasting|strong="H5769"\w* \w to|strong="H5704"\w* \w everlasting|strong="H5769"\w* \w with|strong="H3068"\w* \w those|strong="H5921"\w* \w who|strong="H3068"\w* \w fear|strong="H3373"\w* \w him|strong="H5921"\w*, +\q2 \w his|strong="H3068"\w* \w righteousness|strong="H6666"\w* \w to|strong="H5704"\w* \w children|strong="H1121"\w*’s \w children|strong="H1121"\w*, +\q1 +\v 18 \w to|strong="H6213"\w* \w those|strong="H6213"\w* \w who|strong="H8104"\w* \w keep|strong="H8104"\w* \w his|strong="H8104"\w* \w covenant|strong="H1285"\w*, +\q2 \w to|strong="H6213"\w* \w those|strong="H6213"\w* \w who|strong="H8104"\w* \w remember|strong="H2142"\w* \w to|strong="H6213"\w* \w obey|strong="H6213"\w* \w his|strong="H8104"\w* \w precepts|strong="H6490"\w*. +\q1 +\v 19 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w established|strong="H3559"\w* \w his|strong="H3605"\w* \w throne|strong="H3678"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w heavens|strong="H8064"\w*. +\q2 \w His|strong="H3605"\w* \w kingdom|strong="H4438"\w* \w rules|strong="H4910"\w* \w over|strong="H4910"\w* \w all|strong="H3605"\w*. +\q1 +\v 20 \w Praise|strong="H1288"\w* \w Yahweh|strong="H3068"\w*, \w you|strong="H6213"\w* \w angels|strong="H4397"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w*, +\q2 \w who|strong="H3068"\w* \w are|strong="H1697"\w* \w mighty|strong="H1368"\w* \w in|strong="H3068"\w* \w strength|strong="H3581"\w*, \w who|strong="H3068"\w* \w fulfill|strong="H6213"\w* \w his|strong="H3068"\w* \w word|strong="H1697"\w*, +\q2 \w obeying|strong="H8085"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w word|strong="H1697"\w*. +\q1 +\v 21 \w Praise|strong="H1288"\w* \w Yahweh|strong="H3068"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* \w armies|strong="H6635"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w*, +\q2 \w you|strong="H3605"\w* \w servants|strong="H8334"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w*, \w who|strong="H3605"\w* \w do|strong="H6213"\w* \w his|strong="H3605"\w* \w pleasure|strong="H7522"\w*. +\q1 +\v 22 \w Praise|strong="H1288"\w* \w Yahweh|strong="H3068"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* \w works|strong="H4639"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w*, +\q2 \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w places|strong="H4725"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w dominion|strong="H4475"\w*. +\q2 \w Praise|strong="H1288"\w* \w Yahweh|strong="H3068"\w*, \w my|strong="H3605"\w* \w soul|strong="H5315"\w*! +\c 104 +\q1 +\v 1 \w Bless|strong="H1288"\w* \w Yahweh|strong="H3068"\w*, \w my|strong="H3068"\w* \w soul|strong="H5315"\w*. +\q2 \w Yahweh|strong="H3068"\w*, \w my|strong="H3068"\w* \w God|strong="H3068"\w*, \w you|strong="H1288"\w* \w are|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H1431"\w*. +\q2 \w You|strong="H1288"\w* \w are|strong="H3068"\w* \w clothed|strong="H3847"\w* \w with|strong="H3847"\w* \w honor|strong="H1935"\w* \w and|strong="H3068"\w* \w majesty|strong="H1926"\w*. +\q1 +\v 2 \w He|strong="H5186"\w* \w covers|strong="H5844"\w* \w himself|strong="H5844"\w* \w with|strong="H8064"\w* light \w as|strong="H8064"\w* \w with|strong="H8064"\w* \w a|strong="H3068"\w* \w garment|strong="H8008"\w*. +\q2 \w He|strong="H5186"\w* \w stretches|strong="H5186"\w* \w out|strong="H5186"\w* \w the|strong="H5186"\w* \w heavens|strong="H8064"\w* \w like|strong="H8064"\w* \w a|strong="H3068"\w* \w curtain|strong="H3407"\w*. +\q1 +\v 3 \w He|strong="H5921"\w* \w lays|strong="H7760"\w* \w the|strong="H5921"\w* \w beams|strong="H7136"\w* \w of|strong="H7307"\w* \w his|strong="H7760"\w* \w rooms|strong="H5944"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w*. +\q2 \w He|strong="H5921"\w* \w makes|strong="H7760"\w* \w the|strong="H5921"\w* \w clouds|strong="H5645"\w* \w his|strong="H7760"\w* \w chariot|strong="H7398"\w*. +\q2 \w He|strong="H5921"\w* \w walks|strong="H1980"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wings|strong="H3671"\w* \w of|strong="H7307"\w* \w the|strong="H5921"\w* \w wind|strong="H7307"\w*. +\q1 +\v 4 \w He|strong="H6213"\w* \w makes|strong="H6213"\w* \w his|strong="H6213"\w* \w messengers|strong="H4397"\w*\f + \fr 104:4 \ft or, angels\f* \w winds|strong="H7307"\w*, +\q2 \w and|strong="H6213"\w* \w his|strong="H6213"\w* \w servants|strong="H8334"\w* flames \w of|strong="H7307"\w* \w fire|strong="H3857"\w*. +\q1 +\v 5 \w He|strong="H5921"\w* \w laid|strong="H3245"\w* \w the|strong="H5921"\w* \w foundations|strong="H3245"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* earth, +\q2 \w that|strong="H5769"\w* \w it|strong="H5921"\w* should \w not|strong="H1077"\w* \w be|strong="H5769"\w* \w moved|strong="H4131"\w* \w forever|strong="H5769"\w*. +\q1 +\v 6 \w You|strong="H5921"\w* \w covered|strong="H3680"\w* \w it|strong="H5921"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w deep|strong="H8415"\w* \w as|strong="H2022"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* cloak. +\q2 \w The|strong="H5921"\w* \w waters|strong="H4325"\w* \w stood|strong="H5975"\w* \w above|strong="H5921"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w*. +\q1 +\v 7 \w At|strong="H1606"\w* \w your|strong="H4480"\w* \w rebuke|strong="H1606"\w* \w they|strong="H7482"\w* \w fled|strong="H5127"\w*. +\q2 \w At|strong="H1606"\w* \w the|strong="H4480"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w your|strong="H4480"\w* \w thunder|strong="H6963"\w* \w they|strong="H7482"\w* \w hurried|strong="H2648"\w* \w away|strong="H5127"\w*. +\q1 +\v 8 \w The|strong="H5927"\w* \w mountains|strong="H2022"\w* \w rose|strong="H5927"\w*, +\q2 \w the|strong="H5927"\w* \w valleys|strong="H1237"\w* \w sank|strong="H3381"\w* \w down|strong="H3381"\w*, +\q2 \w to|strong="H3381"\w* \w the|strong="H5927"\w* \w place|strong="H4725"\w* \w which|strong="H1992"\w* \w you|strong="H3381"\w* had assigned \w to|strong="H3381"\w* \w them|strong="H1992"\w*. +\q1 +\v 9 \w You|strong="H7725"\w* have \w set|strong="H7760"\w* \w a|strong="H3068"\w* \w boundary|strong="H1366"\w* \w that|strong="H7725"\w* \w they|strong="H1077"\w* \w may|strong="H7725"\w* \w not|strong="H1077"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w*, +\q2 \w that|strong="H7725"\w* \w they|strong="H1077"\w* don’t \w turn|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w cover|strong="H3680"\w* \w the|strong="H7725"\w* earth. +\q1 +\v 10 \w He|strong="H1980"\w* \w sends|strong="H7971"\w* \w springs|strong="H4599"\w* \w into|strong="H1980"\w* \w the|strong="H7971"\w* \w valleys|strong="H5158"\w*. +\q2 They \w run|strong="H1980"\w* among \w the|strong="H7971"\w* \w mountains|strong="H2022"\w*. +\q1 +\v 11 \w They|strong="H3605"\w* \w give|strong="H8248"\w* \w drink|strong="H8248"\w* \w to|strong="H7704"\w* \w every|strong="H3605"\w* \w animal|strong="H2416"\w* \w of|strong="H7704"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*. +\q2 \w The|strong="H3605"\w* \w wild|strong="H7704"\w* \w donkeys|strong="H6501"\w* \w quench|strong="H7665"\w* \w their|strong="H3605"\w* \w thirst|strong="H6772"\w*. +\q1 +\v 12 \w The|strong="H5921"\w* \w birds|strong="H5775"\w* \w of|strong="H6963"\w* \w the|strong="H5921"\w* \w sky|strong="H8064"\w* \w nest|strong="H7931"\w* \w by|strong="H5921"\w* \w them|strong="H5414"\w*. +\q2 \w They|strong="H5921"\w* \w sing|strong="H5414"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w branches|strong="H6073"\w*. +\q1 +\v 13 He \w waters|strong="H8248"\w* \w the|strong="H8248"\w* \w mountains|strong="H2022"\w* \w from|strong="H2022"\w* \w his|strong="H7646"\w* \w rooms|strong="H5944"\w*. +\q2 \w The|strong="H8248"\w* earth \w is|strong="H4639"\w* \w filled|strong="H7646"\w* \w with|strong="H7646"\w* \w the|strong="H8248"\w* \w fruit|strong="H6529"\w* \w of|strong="H2022"\w* \w your|strong="H7646"\w* \w works|strong="H4639"\w*. +\q1 +\v 14 \w He|strong="H4480"\w* \w causes|strong="H3318"\w* \w the|strong="H4480"\w* \w grass|strong="H2682"\w* \w to|strong="H3318"\w* \w grow|strong="H6779"\w* \w for|strong="H3318"\w* \w the|strong="H4480"\w* livestock, +\q2 \w and|strong="H3899"\w* \w plants|strong="H6212"\w* \w for|strong="H3318"\w* man \w to|strong="H3318"\w* cultivate, +\q2 \w that|strong="H4480"\w* \w he|strong="H4480"\w* \w may|strong="H4480"\w* produce \w food|strong="H3899"\w* \w out|strong="H3318"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* earth: +\q1 +\v 15 \w wine|strong="H3196"\w* \w that|strong="H8081"\w* \w makes|strong="H8055"\w* \w the|strong="H6440"\w* \w heart|strong="H3824"\w* \w of|strong="H6440"\w* \w man|strong="H6440"\w* \w glad|strong="H8055"\w*, +\q2 \w oil|strong="H8081"\w* \w to|strong="H6440"\w* \w make|strong="H8055"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w* \w to|strong="H6440"\w* \w shine|strong="H6670"\w*, +\q2 \w and|strong="H3899"\w* \w bread|strong="H3899"\w* \w that|strong="H8081"\w* strengthens \w man|strong="H6440"\w*’s \w heart|strong="H3824"\w*. +\q1 +\v 16 \w Yahweh|strong="H3068"\w*’s \w trees|strong="H6086"\w* \w are|strong="H3068"\w* well watered, +\q2 \w the|strong="H3068"\w* cedars \w of|strong="H3068"\w* \w Lebanon|strong="H3844"\w*, \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w planted|strong="H5193"\w*, +\q1 +\v 17 \w where|strong="H8033"\w* \w the|strong="H8033"\w* \w birds|strong="H6833"\w* \w make|strong="H7077"\w* \w their|strong="H8033"\w* \w nests|strong="H7077"\w*. +\q2 \w The|strong="H8033"\w* \w stork|strong="H2624"\w* makes \w its|strong="H7077"\w* \w home|strong="H1004"\w* \w in|strong="H1004"\w* \w the|strong="H8033"\w* \w cypress|strong="H1265"\w* \w trees|strong="H1265"\w*. +\q1 +\v 18 \w The|strong="H8227"\w* \w high|strong="H1364"\w* \w mountains|strong="H2022"\w* \w are|strong="H2022"\w* \w for|strong="H5553"\w* \w the|strong="H8227"\w* \w wild|strong="H3277"\w* \w goats|strong="H3277"\w*. +\q2 \w The|strong="H8227"\w* \w rocks|strong="H5553"\w* \w are|strong="H2022"\w* \w a|strong="H3068"\w* \w refuge|strong="H4268"\w* \w for|strong="H5553"\w* \w the|strong="H8227"\w* \w rock|strong="H5553"\w* badgers. +\q1 +\v 19 \w He|strong="H6213"\w* \w appointed|strong="H4150"\w* \w the|strong="H6213"\w* \w moon|strong="H3394"\w* \w for|strong="H6213"\w* \w seasons|strong="H4150"\w*. +\q2 \w The|strong="H6213"\w* \w sun|strong="H8121"\w* \w knows|strong="H3045"\w* \w when|strong="H6213"\w* \w to|strong="H6213"\w* \w set|strong="H6213"\w*. +\q1 +\v 20 \w You|strong="H3605"\w* \w make|strong="H7896"\w* \w darkness|strong="H2822"\w*, \w and|strong="H3915"\w* \w it|strong="H1961"\w* \w is|strong="H3605"\w* \w night|strong="H3915"\w*, +\q2 \w in|strong="H1961"\w* \w which|strong="H2416"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w animals|strong="H2416"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w forest|strong="H3293"\w* \w prowl|strong="H7430"\w*. +\q1 +\v 21 \w The|strong="H1245"\w* \w young|strong="H3715"\w* \w lions|strong="H3715"\w* \w roar|strong="H7580"\w* \w after|strong="H1245"\w* \w their|strong="H1245"\w* \w prey|strong="H2964"\w*, +\q2 \w and|strong="H1245"\w* \w seek|strong="H1245"\w* \w their|strong="H1245"\w* \w food|strong="H2964"\w* \w from|strong="H7580"\w* God. +\q1 +\v 22 \w The|strong="H8121"\w* \w sun|strong="H8121"\w* \w rises|strong="H2224"\w*, \w and|strong="H8121"\w* \w they|strong="H2224"\w* steal away, +\q2 \w and|strong="H8121"\w* \w lie|strong="H7257"\w* \w down|strong="H7257"\w* \w in|strong="H7257"\w* \w their|strong="H7257"\w* \w dens|strong="H4585"\w*. +\q1 +\v 23 Man \w goes|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H5704"\w* \w his|strong="H3318"\w* \w work|strong="H6467"\w*, +\q2 \w to|strong="H5704"\w* \w his|strong="H3318"\w* \w labor|strong="H5656"\w* \w until|strong="H5704"\w* \w the|strong="H5704"\w* \w evening|strong="H6153"\w*. +\q1 +\v 24 \w Yahweh|strong="H3068"\w*, \w how|strong="H4100"\w* \w many|strong="H7231"\w* \w are|strong="H4100"\w* \w your|strong="H3068"\w* \w works|strong="H4639"\w*! +\q2 \w In|strong="H3068"\w* \w wisdom|strong="H2451"\w*, \w you|strong="H3605"\w* \w have|strong="H3068"\w* \w made|strong="H6213"\w* \w them|strong="H6213"\w* \w all|strong="H3605"\w*. +\q2 \w The|strong="H3605"\w* earth \w is|strong="H3068"\w* \w full|strong="H4390"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w riches|strong="H7075"\w*. +\q1 +\v 25 \w There|strong="H8033"\w* \w is|strong="H2088"\w* \w the|strong="H3027"\w* \w sea|strong="H3220"\w*, \w great|strong="H1419"\w* \w and|strong="H1419"\w* \w wide|strong="H7342"\w*, +\q2 \w in|strong="H1419"\w* \w which|strong="H8033"\w* \w are|strong="H3027"\w* \w innumerable|strong="H4557"\w* \w living|strong="H2416"\w* \w things|strong="H7431"\w*, +\q2 \w both|strong="H2416"\w* \w small|strong="H6996"\w* \w and|strong="H1419"\w* \w large|strong="H1419"\w* \w animals|strong="H2416"\w*. +\q1 +\v 26 \w There|strong="H8033"\w* \w the|strong="H8033"\w* ships \w go|strong="H1980"\w*, +\q2 \w and|strong="H1980"\w* \w leviathan|strong="H3882"\w*, whom \w you|strong="H1980"\w* \w formed|strong="H3335"\w* \w to|strong="H1980"\w* \w play|strong="H7832"\w* \w there|strong="H8033"\w*. +\q1 +\v 27 \w These|strong="H3605"\w* \w all|strong="H3605"\w* \w wait|strong="H7663"\w* \w for|strong="H6256"\w* \w you|strong="H5414"\w*, +\q2 \w that|strong="H3605"\w* \w you|strong="H5414"\w* \w may|strong="H5414"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w their|strong="H3605"\w* food \w in|strong="H5414"\w* due \w season|strong="H6256"\w*. +\q1 +\v 28 \w You|strong="H5414"\w* \w give|strong="H5414"\w* \w to|strong="H5414"\w* \w them|strong="H5414"\w*; \w they|strong="H1992"\w* \w gather|strong="H3950"\w*. +\q2 \w You|strong="H5414"\w* \w open|strong="H6605"\w* \w your|strong="H5414"\w* \w hand|strong="H3027"\w*; \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w satisfied|strong="H7646"\w* \w with|strong="H7646"\w* \w good|strong="H2896"\w*. +\q1 +\v 29 \w You|strong="H6440"\w* \w hide|strong="H5641"\w* \w your|strong="H6440"\w* \w face|strong="H6440"\w*; \w they|strong="H6440"\w* \w are|strong="H6440"\w* troubled. +\q2 \w You|strong="H6440"\w* \w take|strong="H7725"\w* \w away|strong="H7725"\w* \w their|strong="H6440"\w* \w breath|strong="H7307"\w*; \w they|strong="H6440"\w* \w die|strong="H1478"\w* \w and|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H6440"\w* \w dust|strong="H6083"\w*. +\q1 +\v 30 \w You|strong="H6440"\w* \w send|strong="H7971"\w* \w out|strong="H7971"\w* \w your|strong="H6440"\w* \w Spirit|strong="H7307"\w* \w and|strong="H7971"\w* \w they|strong="H6440"\w* \w are|strong="H6440"\w* \w created|strong="H1254"\w*. +\q2 \w You|strong="H6440"\w* \w renew|strong="H2318"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w*. +\q1 +\v 31 \w Let|strong="H8055"\w* \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w endure|strong="H1961"\w* \w forever|strong="H5769"\w*. +\q2 \w Let|strong="H8055"\w* \w Yahweh|strong="H3068"\w* \w rejoice|strong="H8055"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w works|strong="H4639"\w*. +\q1 +\v 32 He \w looks|strong="H5027"\w* \w at|strong="H2022"\w* \w the|strong="H5060"\w* earth, \w and|strong="H2022"\w* \w it|strong="H5060"\w* \w trembles|strong="H7460"\w*. +\q2 He \w touches|strong="H5060"\w* \w the|strong="H5060"\w* \w mountains|strong="H2022"\w*, \w and|strong="H2022"\w* they \w smoke|strong="H6225"\w*. +\q1 +\v 33 \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w sing|strong="H7891"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w as|strong="H3068"\w* \w long|strong="H5750"\w* \w as|strong="H3068"\w* \w I|strong="H3068"\w* \w live|strong="H2416"\w*. +\q2 \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w sing|strong="H7891"\w* \w praise|strong="H2167"\w* \w to|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w* \w while|strong="H5750"\w* \w I|strong="H3068"\w* \w have|strong="H3068"\w* \w any|strong="H5750"\w* \w being|strong="H5750"\w*. +\q1 +\v 34 \w Let|strong="H8055"\w* \w my|strong="H3068"\w* \w meditation|strong="H7879"\w* \w be|strong="H3068"\w* \w sweet|strong="H6149"\w* \w to|strong="H3068"\w* \w him|strong="H5921"\w*. +\q2 \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w rejoice|strong="H8055"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 35 \w Let|strong="H5315"\w* \w sinners|strong="H2400"\w* \w be|strong="H5750"\w* \w consumed|strong="H8552"\w* \w out|strong="H4480"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* earth. +\q2 \w Let|strong="H5315"\w* \w the|strong="H3068"\w* \w wicked|strong="H7563"\w* \w be|strong="H5750"\w* \w no|strong="H4480"\w* \w more|strong="H4480"\w*. +\q2 \w Bless|strong="H1288"\w* \w Yahweh|strong="H3068"\w*, \w my|strong="H3068"\w* \w soul|strong="H5315"\w*. +\q2 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*! +\c 105 +\q1 +\v 1 \w Give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*! \w Call|strong="H7121"\w* \w on|strong="H3068"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w*! +\q2 \w Make|strong="H3045"\w* \w his|strong="H3068"\w* \w doings|strong="H5949"\w* \w known|strong="H3045"\w* \w among|strong="H8034"\w* \w the|strong="H3068"\w* \w peoples|strong="H5971"\w*. +\q1 +\v 2 \w Sing|strong="H7891"\w* \w to|strong="H2167"\w* \w him|strong="H3605"\w*, \w sing|strong="H7891"\w* \w praises|strong="H2167"\w* \w to|strong="H2167"\w* \w him|strong="H3605"\w*! +\q2 \w Tell|strong="H3605"\w* \w of|strong="H3605"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w marvelous|strong="H6381"\w* \w works|strong="H6381"\w*. +\q1 +\v 3 \w Glory|strong="H1984"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w holy|strong="H6944"\w* \w name|strong="H8034"\w*. +\q2 \w Let|strong="H8055"\w* \w the|strong="H3068"\w* \w heart|strong="H3820"\w* \w of|strong="H3068"\w* those \w who|strong="H3068"\w* \w seek|strong="H1245"\w* \w Yahweh|strong="H3068"\w* \w rejoice|strong="H8055"\w*. +\q1 +\v 4 \w Seek|strong="H1245"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w strength|strong="H5797"\w*. +\q2 \w Seek|strong="H1245"\w* \w his|strong="H3068"\w* \w face|strong="H6440"\w* forever more. +\q1 +\v 5 \w Remember|strong="H2142"\w* \w his|strong="H2142"\w* \w marvelous|strong="H6381"\w* \w works|strong="H6381"\w* \w that|strong="H6213"\w* \w he|strong="H6213"\w* \w has|strong="H6213"\w* \w done|strong="H6213"\w*: +\q2 \w his|strong="H2142"\w* \w wonders|strong="H4159"\w*, \w and|strong="H4941"\w* \w the|strong="H6213"\w* \w judgments|strong="H4941"\w* \w of|strong="H6310"\w* \w his|strong="H2142"\w* \w mouth|strong="H6310"\w*, +\q1 +\v 6 \w you|strong="H2233"\w* \w offspring|strong="H2233"\w* \w of|strong="H1121"\w* Abraham, \w his|strong="H3290"\w* \w servant|strong="H5650"\w*, +\q2 \w you|strong="H2233"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Jacob|strong="H3290"\w*, \w his|strong="H3290"\w* chosen \w ones|strong="H1121"\w*. +\q1 +\v 7 \w He|strong="H1931"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w our|strong="H3068"\w* \w God|strong="H3068"\w*. +\q2 \w His|strong="H3605"\w* \w judgments|strong="H4941"\w* \w are|strong="H3068"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth. +\q1 +\v 8 \w He|strong="H1285"\w* \w has|strong="H1697"\w* \w remembered|strong="H2142"\w* \w his|strong="H6680"\w* \w covenant|strong="H1285"\w* \w forever|strong="H5769"\w*, +\q2 \w the|strong="H6680"\w* \w word|strong="H1697"\w* \w which|strong="H1697"\w* \w he|strong="H1285"\w* \w commanded|strong="H6680"\w* \w to|strong="H1697"\w* \w a|strong="H3068"\w* thousand \w generations|strong="H1755"\w*, +\q1 +\v 9 \w the|strong="H3772"\w* covenant which he \w made|strong="H3772"\w* \w with|strong="H3772"\w* Abraham, +\q2 \w his|strong="H3772"\w* \w oath|strong="H7621"\w* \w to|strong="H7621"\w* \w Isaac|strong="H3446"\w*, +\q1 +\v 10 \w and|strong="H3478"\w* \w confirmed|strong="H5975"\w* \w it|strong="H5975"\w* \w to|strong="H3478"\w* \w Jacob|strong="H3290"\w* \w for|strong="H2706"\w* \w a|strong="H3068"\w* \w statute|strong="H2706"\w*; +\q2 \w to|strong="H3478"\w* \w Israel|strong="H3478"\w* \w for|strong="H2706"\w* \w an|strong="H3478"\w* \w everlasting|strong="H5769"\w* \w covenant|strong="H1285"\w*, +\q1 +\v 11 saying, “\w To|strong="H5414"\w* \w you|strong="H5414"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w the|strong="H5414"\w* \w land|strong="H5159"\w* \w of|strong="H5159"\w* \w Canaan|strong="H3667"\w*, +\q2 \w the|strong="H5414"\w* \w lot|strong="H2256"\w* \w of|strong="H5159"\w* \w your|strong="H5414"\w* \w inheritance|strong="H5159"\w*,” +\q1 +\v 12 \w when|strong="H1961"\w* they \w were|strong="H1961"\w* \w but|strong="H1961"\w* \w a|strong="H3068"\w* \w few|strong="H4592"\w* \w men|strong="H4962"\w* \w in|strong="H4962"\w* \w number|strong="H4557"\w*, +\q2 yes, \w very|strong="H4592"\w* \w few|strong="H4592"\w*, \w and|strong="H1961"\w* \w foreigners|strong="H1481"\w* \w in|strong="H4962"\w* \w it|strong="H1961"\w*. +\q1 +\v 13 \w They|strong="H5971"\w* \w went|strong="H1980"\w* \w about|strong="H1980"\w* \w from|strong="H1980"\w* \w nation|strong="H1471"\w* \w to|strong="H1980"\w* \w nation|strong="H1471"\w*, +\q2 \w from|strong="H1980"\w* one \w kingdom|strong="H4467"\w* \w to|strong="H1980"\w* another \w people|strong="H5971"\w*. +\q1 +\v 14 \w He|strong="H3808"\w* allowed \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w to|strong="H5921"\w* do \w them|strong="H5921"\w* \w wrong|strong="H6231"\w*. +\q2 Yes, \w he|strong="H3808"\w* \w reproved|strong="H3198"\w* \w kings|strong="H4428"\w* \w for|strong="H5921"\w* \w their|strong="H5921"\w* \w sakes|strong="H5921"\w*, +\q1 +\v 15 “Don’t \w touch|strong="H5060"\w* \w my|strong="H5060"\w* \w anointed|strong="H4899"\w* \w ones|strong="H4899"\w*! +\q2 \w Do|strong="H7489"\w* \w my|strong="H5060"\w* \w prophets|strong="H5030"\w* \w no|strong="H5060"\w* \w harm|strong="H7489"\w*!” +\q1 +\v 16 \w He|strong="H3605"\w* \w called|strong="H7121"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w famine|strong="H7458"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* land. +\q2 \w He|strong="H3605"\w* \w destroyed|strong="H7665"\w* \w the|strong="H3605"\w* \w food|strong="H3899"\w* supplies. +\q1 +\v 17 \w He|strong="H7971"\w* \w sent|strong="H7971"\w* \w a|strong="H3068"\w* \w man|strong="H6440"\w* \w before|strong="H6440"\w* \w them|strong="H7971"\w*. +\q2 \w Joseph|strong="H3130"\w* \w was|strong="H3130"\w* \w sold|strong="H4376"\w* \w for|strong="H6440"\w* \w a|strong="H3068"\w* \w slave|strong="H5650"\w*. +\q1 +\v 18 \w They|strong="H5315"\w* bruised \w his|strong="H6031"\w* \w feet|strong="H7272"\w* \w with|strong="H5315"\w* \w shackles|strong="H3525"\w*. +\q2 \w His|strong="H6031"\w* neck \w was|strong="H5315"\w* locked \w in|strong="H5315"\w* \w irons|strong="H1270"\w*, +\q1 +\v 19 \w until|strong="H5704"\w* \w the|strong="H3068"\w* \w time|strong="H6256"\w* \w that|strong="H3068"\w* \w his|strong="H3068"\w* \w word|strong="H1697"\w* \w happened|strong="H1697"\w*, +\q2 \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w proved|strong="H6884"\w* \w him|strong="H5704"\w* \w true|strong="H3068"\w*. +\q1 +\v 20 \w The|strong="H7971"\w* \w king|strong="H4428"\w* \w sent|strong="H7971"\w* \w and|strong="H7971"\w* freed \w him|strong="H7971"\w*, +\q2 even \w the|strong="H7971"\w* \w ruler|strong="H4910"\w* \w of|strong="H4428"\w* \w peoples|strong="H5971"\w*, \w and|strong="H7971"\w* \w let|strong="H7971"\w* \w him|strong="H7971"\w* \w go|strong="H7971"\w* \w free|strong="H7971"\w*. +\q1 +\v 21 \w He|strong="H3605"\w* \w made|strong="H7760"\w* \w him|strong="H7760"\w* lord \w of|strong="H1004"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*, +\q2 \w and|strong="H1004"\w* \w ruler|strong="H4910"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w of|strong="H1004"\w* \w his|strong="H3605"\w* \w possessions|strong="H7075"\w*, +\q1 +\v 22 \w to|strong="H5315"\w* discipline \w his|strong="H2449"\w* \w princes|strong="H8269"\w* \w at|strong="H5315"\w* \w his|strong="H2449"\w* \w pleasure|strong="H5315"\w*, +\q2 \w and|strong="H2205"\w* \w to|strong="H5315"\w* \w teach|strong="H2449"\w* \w his|strong="H2449"\w* \w elders|strong="H2205"\w* \w wisdom|strong="H2449"\w*. +\q1 +\v 23 \w Israel|strong="H3478"\w* \w also|strong="H3478"\w* \w came|strong="H3478"\w* \w into|strong="H4714"\w* \w Egypt|strong="H4714"\w*. +\q2 \w Jacob|strong="H3290"\w* \w lived|strong="H1481"\w* \w in|strong="H3478"\w* \w the|strong="H3478"\w* land \w of|strong="H4714"\w* \w Ham|strong="H2526"\w*. +\q1 +\v 24 \w He|strong="H5971"\w* \w increased|strong="H6105"\w* \w his|strong="H5971"\w* \w people|strong="H5971"\w* \w greatly|strong="H3966"\w*, +\q2 \w and|strong="H5971"\w* \w made|strong="H6509"\w* \w them|strong="H6105"\w* \w stronger|strong="H6105"\w* than \w their|strong="H5971"\w* \w adversaries|strong="H6862"\w*. +\q1 +\v 25 \w He|strong="H5971"\w* \w turned|strong="H2015"\w* \w their|strong="H2015"\w* \w heart|strong="H3820"\w* \w to|strong="H3820"\w* \w hate|strong="H8130"\w* \w his|strong="H8130"\w* \w people|strong="H5971"\w*, +\q2 \w to|strong="H3820"\w* conspire \w against|strong="H8130"\w* \w his|strong="H8130"\w* \w servants|strong="H5650"\w*. +\q1 +\v 26 \w He|strong="H7971"\w* \w sent|strong="H7971"\w* \w Moses|strong="H4872"\w*, \w his|strong="H7971"\w* \w servant|strong="H5650"\w*, +\q2 \w and|strong="H4872"\w* Aaron, whom \w he|strong="H7971"\w* \w had|strong="H4872"\w* chosen. +\q1 +\v 27 \w They|strong="H1697"\w* \w performed|strong="H7760"\w* \w miracles|strong="H4159"\w* among \w them|strong="H7760"\w*, +\q2 \w and|strong="H1697"\w* \w wonders|strong="H4159"\w* \w in|strong="H1697"\w* \w the|strong="H7760"\w* land \w of|strong="H1697"\w* \w Ham|strong="H2526"\w*. +\q1 +\v 28 \w He|strong="H3808"\w* \w sent|strong="H7971"\w* \w darkness|strong="H2822"\w*, \w and|strong="H7971"\w* \w made|strong="H2821"\w* \w it|strong="H7971"\w* \w dark|strong="H2822"\w*. +\q2 \w They|strong="H3808"\w* didn’t \w rebel|strong="H4784"\w* \w against|strong="H4784"\w* \w his|strong="H7971"\w* \w words|strong="H1697"\w*. +\q1 +\v 29 \w He|strong="H1818"\w* \w turned|strong="H2015"\w* \w their|strong="H2015"\w* \w waters|strong="H4325"\w* \w into|strong="H2015"\w* \w blood|strong="H1818"\w*, +\q2 \w and|strong="H1818"\w* \w killed|strong="H4191"\w* \w their|strong="H2015"\w* \w fish|strong="H1710"\w*. +\q1 +\v 30 Their land \w swarmed|strong="H8317"\w* \w with|strong="H4428"\w* \w frogs|strong="H6854"\w*, +\q2 even \w in|strong="H4428"\w* \w the|strong="H4428"\w* \w rooms|strong="H2315"\w* \w of|strong="H4428"\w* their \w kings|strong="H4428"\w*. +\q1 +\v 31 \w He|strong="H3605"\w* spoke, \w and|strong="H3605"\w* \w swarms|strong="H6157"\w* \w of|strong="H1366"\w* \w flies|strong="H6157"\w* \w came|strong="H1366"\w*, +\q2 \w and|strong="H3605"\w* \w lice|strong="H3654"\w* \w in|strong="H3605"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w borders|strong="H1366"\w*. +\q1 +\v 32 \w He|strong="H5414"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w hail|strong="H1259"\w* \w for|strong="H5414"\w* \w rain|strong="H1653"\w*, +\q2 \w with|strong="H5414"\w* lightning \w in|strong="H5414"\w* \w their|strong="H5414"\w* land. +\q1 +\v 33 \w He|strong="H5221"\w* \w struck|strong="H5221"\w* \w their|strong="H7665"\w* \w vines|strong="H1612"\w* \w and|strong="H6086"\w* \w also|strong="H5221"\w* \w their|strong="H7665"\w* \w fig|strong="H8384"\w* \w trees|strong="H6086"\w*, +\q2 \w and|strong="H6086"\w* \w shattered|strong="H7665"\w* \w the|strong="H5221"\w* \w trees|strong="H6086"\w* \w of|strong="H1366"\w* \w their|strong="H7665"\w* country. +\q1 +\v 34 He spoke, \w and|strong="H4557"\w* \w the|strong="H4557"\w* \w locusts|strong="H3218"\w* came +\q2 with \w the|strong="H4557"\w* \w grasshoppers|strong="H3218"\w*, without \w number|strong="H4557"\w*. +\q1 +\v 35 \w They|strong="H3605"\w* ate \w up|strong="H3605"\w* \w every|strong="H3605"\w* \w plant|strong="H6212"\w* \w in|strong="H3605"\w* \w their|strong="H3605"\w* land, +\q2 \w and|strong="H3605"\w* ate \w up|strong="H3605"\w* \w the|strong="H3605"\w* \w fruit|strong="H6529"\w* \w of|strong="H3605"\w* \w their|strong="H3605"\w* ground. +\q1 +\v 36 \w He|strong="H3605"\w* \w struck|strong="H5221"\w* \w also|strong="H5221"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w firstborn|strong="H1060"\w* \w in|strong="H1060"\w* \w their|strong="H3605"\w* land, +\q2 \w the|strong="H3605"\w* \w first|strong="H7225"\w* \w fruits|strong="H7225"\w* \w of|strong="H1060"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* manhood. +\q1 +\v 37 \w He|strong="H3318"\w* \w brought|strong="H3318"\w* \w them|strong="H3318"\w* \w out|strong="H3318"\w* \w with|strong="H3318"\w* \w silver|strong="H3701"\w* \w and|strong="H3701"\w* \w gold|strong="H2091"\w*. +\q2 There \w was|strong="H2091"\w* \w not|strong="H3318"\w* one \w feeble|strong="H3782"\w* person among \w his|strong="H3318"\w* \w tribes|strong="H7626"\w*. +\q1 +\v 38 \w Egypt|strong="H4714"\w* \w was|strong="H4714"\w* \w glad|strong="H8055"\w* \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w departed|strong="H3318"\w*, +\q2 \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w fear|strong="H6343"\w* \w of|strong="H5921"\w* \w them|strong="H5921"\w* \w had|strong="H3588"\w* \w fallen|strong="H5307"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*. +\q1 +\v 39 He \w spread|strong="H6566"\w* \w a|strong="H3068"\w* \w cloud|strong="H6051"\w* \w for|strong="H3915"\w* \w a|strong="H3068"\w* \w covering|strong="H4539"\w*, +\q2 fire \w to|strong="H6051"\w* give light \w in|strong="H3915"\w* \w the|strong="H6566"\w* \w night|strong="H3915"\w*. +\q1 +\v 40 They \w asked|strong="H7592"\w*, \w and|strong="H8064"\w* \w he|strong="H8064"\w* brought \w quails|strong="H7958"\w*, +\q2 \w and|strong="H8064"\w* \w satisfied|strong="H7646"\w* \w them|strong="H7592"\w* \w with|strong="H7646"\w* \w the|strong="H7592"\w* \w bread|strong="H3899"\w* \w of|strong="H3899"\w* \w the|strong="H7592"\w* \w sky|strong="H8064"\w*. +\q1 +\v 41 \w He|strong="H1980"\w* \w opened|strong="H6605"\w* \w the|strong="H1980"\w* \w rock|strong="H6697"\w*, \w and|strong="H1980"\w* \w waters|strong="H4325"\w* \w gushed|strong="H4325"\w* \w out|strong="H1980"\w*. +\q2 They \w ran|strong="H1980"\w* \w as|strong="H1980"\w* \w a|strong="H3068"\w* \w river|strong="H5104"\w* \w in|strong="H1980"\w* \w the|strong="H1980"\w* \w dry|strong="H6723"\w* \w places|strong="H6723"\w*. +\q1 +\v 42 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w remembered|strong="H2142"\w* \w his|strong="H2142"\w* \w holy|strong="H6944"\w* \w word|strong="H1697"\w*, +\q2 \w and|strong="H5650"\w* Abraham, \w his|strong="H2142"\w* \w servant|strong="H5650"\w*. +\q1 +\v 43 \w He|strong="H3318"\w* \w brought|strong="H3318"\w* \w his|strong="H3318"\w* \w people|strong="H5971"\w* \w out|strong="H3318"\w* \w with|strong="H3318"\w* \w joy|strong="H8342"\w*, +\q2 \w his|strong="H3318"\w* chosen \w with|strong="H3318"\w* \w singing|strong="H7440"\w*. +\q1 +\v 44 \w He|strong="H5414"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w the|strong="H5414"\w* lands \w of|strong="H1471"\w* \w the|strong="H5414"\w* \w nations|strong="H1471"\w*. +\q2 \w They|strong="H1992"\w* \w took|strong="H3423"\w* \w the|strong="H5414"\w* \w labor|strong="H5999"\w* \w of|strong="H1471"\w* \w the|strong="H5414"\w* \w peoples|strong="H3816"\w* \w in|strong="H5414"\w* \w possession|strong="H3423"\w*, +\q1 +\v 45 \w that|strong="H5668"\w* they might \w keep|strong="H8104"\w* \w his|strong="H8104"\w* \w statutes|strong="H2706"\w*, +\q2 \w and|strong="H2706"\w* \w observe|strong="H8104"\w* \w his|strong="H8104"\w* \w laws|strong="H8451"\w*. +\q2 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*! +\c 106 +\q1 +\v 1 \w Praise|strong="H1984"\w* \w Yahweh|strong="H3068"\w*! +\q2 \w Give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3068"\w* \w loving|strong="H2896"\w* \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*. +\q1 +\v 2 \w Who|strong="H4310"\w* \w can|strong="H4310"\w* \w utter|strong="H4448"\w* \w the|strong="H3605"\w* \w mighty|strong="H1369"\w* \w acts|strong="H1369"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w or|strong="H8085"\w* fully \w declare|strong="H8085"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w praise|strong="H8416"\w*? +\q1 +\v 3 Blessed \w are|strong="H4941"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w keep|strong="H8104"\w* \w justice|strong="H4941"\w*. +\q2 Blessed \w is|strong="H3605"\w* \w one|strong="H3605"\w* \w who|strong="H3605"\w* \w does|strong="H6213"\w* \w what|strong="H6213"\w* \w is|strong="H3605"\w* \w right|strong="H4941"\w* \w at|strong="H6213"\w* \w all|strong="H3605"\w* \w times|strong="H6256"\w*. +\q1 +\v 4 \w Remember|strong="H2142"\w* \w me|strong="H2142"\w*, \w Yahweh|strong="H3068"\w*, \w with|strong="H3068"\w* \w the|strong="H3068"\w* \w favor|strong="H7522"\w* \w that|strong="H5971"\w* \w you|strong="H6485"\w* show \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w*. +\q2 \w Visit|strong="H6485"\w* \w me|strong="H2142"\w* \w with|strong="H3068"\w* \w your|strong="H3068"\w* \w salvation|strong="H3444"\w*, +\q1 +\v 5 \w that|strong="H7200"\w* \w I|strong="H7200"\w* \w may|strong="H1471"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w prosperity|strong="H2896"\w* \w of|strong="H5159"\w* \w your|strong="H7200"\w* chosen, +\q2 \w that|strong="H7200"\w* \w I|strong="H7200"\w* \w may|strong="H1471"\w* \w rejoice|strong="H8055"\w* \w in|strong="H8055"\w* \w the|strong="H7200"\w* \w gladness|strong="H8057"\w* \w of|strong="H5159"\w* \w your|strong="H7200"\w* \w nation|strong="H1471"\w*, +\q2 \w that|strong="H7200"\w* \w I|strong="H7200"\w* \w may|strong="H1471"\w* \w glory|strong="H1984"\w* \w with|strong="H5973"\w* \w your|strong="H7200"\w* \w inheritance|strong="H5159"\w*. +\b +\q1 +\v 6 We \w have|strong="H5973"\w* \w sinned|strong="H2398"\w* \w with|strong="H5973"\w* \w our|strong="H5973"\w* fathers. +\q2 We \w have|strong="H5973"\w* \w committed|strong="H2398"\w* \w iniquity|strong="H5753"\w*. +\q2 We \w have|strong="H5973"\w* \w done|strong="H2398"\w* \w wickedly|strong="H7561"\w*. +\q1 +\v 7 \w Our|strong="H5921"\w* fathers didn’t \w understand|strong="H7919"\w* \w your|strong="H5921"\w* \w wonders|strong="H6381"\w* \w in|strong="H5921"\w* \w Egypt|strong="H4714"\w*. +\q2 \w They|strong="H3808"\w* didn’t \w remember|strong="H2142"\w* \w the|strong="H5921"\w* \w multitude|strong="H7230"\w* \w of|strong="H7230"\w* \w your|strong="H5921"\w* loving \w kindnesses|strong="H2617"\w*, +\q2 \w but|strong="H3808"\w* \w were|strong="H4714"\w* \w rebellious|strong="H4784"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*, \w even|strong="H3808"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w*. +\q1 +\v 8 Nevertheless \w he|strong="H3045"\w* \w saved|strong="H3467"\w* \w them|strong="H4616"\w* \w for|strong="H8034"\w* \w his|strong="H3045"\w* \w name|strong="H8034"\w*’s \w sake|strong="H4616"\w*, +\q2 \w that|strong="H3045"\w* \w he|strong="H3045"\w* \w might|strong="H1369"\w* \w make|strong="H3045"\w* \w his|strong="H3045"\w* \w mighty|strong="H1369"\w* \w power|strong="H1369"\w* \w known|strong="H3045"\w*. +\q1 +\v 9 \w He|strong="H3212"\w* \w rebuked|strong="H1605"\w* \w the|strong="H1605"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w* also, \w and|strong="H3212"\w* \w it|strong="H3212"\w* \w was|strong="H3220"\w* \w dried|strong="H2717"\w* \w up|strong="H2717"\w*; +\q2 so \w he|strong="H3212"\w* \w led|strong="H3212"\w* them \w through|strong="H3212"\w* \w the|strong="H1605"\w* \w depths|strong="H8415"\w*, \w as|strong="H8415"\w* \w through|strong="H3212"\w* \w a|strong="H3068"\w* \w desert|strong="H4057"\w*. +\q1 +\v 10 \w He|strong="H3027"\w* \w saved|strong="H3467"\w* \w them|strong="H3027"\w* \w from|strong="H3027"\w* \w the|strong="H3027"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w him|strong="H3027"\w* \w who|strong="H8130"\w* \w hated|strong="H8130"\w* \w them|strong="H3027"\w*, +\q2 \w and|strong="H3027"\w* \w redeemed|strong="H1350"\w* \w them|strong="H3027"\w* \w from|strong="H3027"\w* \w the|strong="H3027"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w enemy|strong="H8130"\w*. +\q1 +\v 11 \w The|strong="H3680"\w* \w waters|strong="H4325"\w* \w covered|strong="H3680"\w* \w their|strong="H1992"\w* \w adversaries|strong="H6862"\w*. +\q2 \w There|strong="H1992"\w* \w was|strong="H4325"\w* \w not|strong="H3808"\w* \w one|strong="H3808"\w* \w of|strong="H4325"\w* \w them|strong="H1992"\w* \w left|strong="H3498"\w*. +\q1 +\v 12 Then \w they|strong="H1697"\w* believed \w his|strong="H7891"\w* \w words|strong="H1697"\w*. +\q2 \w They|strong="H1697"\w* \w sang|strong="H7891"\w* \w his|strong="H7891"\w* \w praise|strong="H8416"\w*. +\b +\q1 +\v 13 \w They|strong="H3808"\w* \w soon|strong="H4116"\w* \w forgot|strong="H7911"\w* \w his|strong="H7911"\w* \w works|strong="H4639"\w*. +\q2 \w They|strong="H3808"\w* didn’t \w wait|strong="H2442"\w* \w for|strong="H4639"\w* \w his|strong="H7911"\w* \w counsel|strong="H6098"\w*, +\q2 +\v 14 but gave in \w to|strong="H4057"\w* craving in \w the|strong="H5254"\w* \w desert|strong="H4057"\w*, +\q2 \w and|strong="H4057"\w* \w tested|strong="H5254"\w* God in \w the|strong="H5254"\w* \w wasteland|strong="H4057"\w*. +\q1 +\v 15 \w He|strong="H5414"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w their|strong="H5414"\w* \w request|strong="H7596"\w*, +\q2 \w but|strong="H1992"\w* \w sent|strong="H7971"\w* \w leanness|strong="H7332"\w* \w into|strong="H5414"\w* \w their|strong="H5414"\w* \w soul|strong="H5315"\w*. +\q1 +\v 16 \w They|strong="H3068"\w* \w envied|strong="H7065"\w* \w Moses|strong="H4872"\w* \w also|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w camp|strong="H4264"\w*, +\q2 \w and|strong="H4872"\w* Aaron, \w Yahweh|strong="H3068"\w*’s \w saint|strong="H6918"\w*. +\q1 +\v 17 \w The|strong="H5921"\w* earth \w opened|strong="H6605"\w* \w and|strong="H1885"\w* \w swallowed|strong="H1104"\w* \w up|strong="H1104"\w* \w Dathan|strong="H1885"\w*, +\q2 \w and|strong="H1885"\w* \w covered|strong="H3680"\w* \w the|strong="H5921"\w* \w company|strong="H5712"\w* \w of|strong="H5921"\w* Abiram. +\q1 +\v 18 \w A|strong="H3068"\w* \w fire|strong="H3857"\w* \w was|strong="H5712"\w* \w kindled|strong="H1197"\w* \w in|strong="H1197"\w* \w their|strong="H7563"\w* \w company|strong="H5712"\w*. +\q2 \w The|strong="H1197"\w* \w flame|strong="H3852"\w* \w burned|strong="H1197"\w* \w up|strong="H1197"\w* \w the|strong="H1197"\w* \w wicked|strong="H7563"\w*. +\q1 +\v 19 \w They|strong="H6213"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w calf|strong="H5695"\w* \w in|strong="H6213"\w* \w Horeb|strong="H2722"\w*, +\q2 \w and|strong="H6213"\w* \w worshiped|strong="H7812"\w* \w a|strong="H3068"\w* \w molten|strong="H4541"\w* \w image|strong="H4541"\w*. +\q1 +\v 20 Thus \w they|strong="H4171"\w* \w exchanged|strong="H4171"\w* \w their|strong="H4171"\w* \w glory|strong="H3519"\w* +\q2 \w for|strong="H7794"\w* an \w image|strong="H8403"\w* \w of|strong="H3519"\w* \w a|strong="H3068"\w* \w bull|strong="H7794"\w* \w that|strong="H7794"\w* eats \w grass|strong="H6212"\w*. +\q1 +\v 21 \w They|strong="H6213"\w* \w forgot|strong="H7911"\w* God, \w their|strong="H6213"\w* \w Savior|strong="H3467"\w*, +\q2 \w who|strong="H6213"\w* \w had|strong="H4714"\w* \w done|strong="H6213"\w* \w great|strong="H1419"\w* \w things|strong="H1419"\w* \w in|strong="H6213"\w* \w Egypt|strong="H4714"\w*, +\q2 +\v 22 \w wondrous|strong="H6381"\w* \w works|strong="H6381"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H5921"\w* \w Ham|strong="H2526"\w*, +\q2 \w and|strong="H3372"\w* \w awesome|strong="H3372"\w* \w things|strong="H6381"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w*. +\q1 +\v 23 \w Therefore|strong="H4872"\w* \w he|strong="H4872"\w* said \w that|strong="H7725"\w* \w he|strong="H4872"\w* \w would|strong="H4872"\w* \w destroy|strong="H7843"\w* \w them|strong="H7725"\w*, +\q2 \w had|strong="H4872"\w* \w Moses|strong="H4872"\w*, \w his|strong="H7725"\w* chosen, \w not|strong="H7725"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w breach|strong="H6556"\w*, +\q2 \w to|strong="H7725"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w his|strong="H7725"\w* \w wrath|strong="H2534"\w*, \w so|strong="H7725"\w* \w that|strong="H7725"\w* \w he|strong="H4872"\w* wouldn’t \w destroy|strong="H7843"\w* \w them|strong="H7725"\w*. +\q1 +\v 24 Yes, \w they|strong="H3808"\w* \w despised|strong="H3988"\w* \w the|strong="H1697"\w* \w pleasant|strong="H2532"\w* land. +\q2 \w They|strong="H3808"\w* didn’t believe \w his|strong="H3808"\w* \w word|strong="H1697"\w*, +\q2 +\v 25 \w but|strong="H3808"\w* \w murmured|strong="H7279"\w* \w in|strong="H3068"\w* \w their|strong="H3068"\w* tents, +\q2 \w and|strong="H3068"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w*. +\q1 +\v 26 Therefore \w he|strong="H3027"\w* \w swore|strong="H5375"\w* \w to|strong="H3027"\w* \w them|strong="H1992"\w* +\q2 \w that|strong="H3027"\w* \w he|strong="H3027"\w* would \w overthrow|strong="H5307"\w* \w them|strong="H1992"\w* \w in|strong="H3027"\w* \w the|strong="H5375"\w* \w wilderness|strong="H4057"\w*, +\q2 +\v 27 \w that|strong="H1471"\w* \w he|strong="H2233"\w* would \w overthrow|strong="H5307"\w* \w their|strong="H5307"\w* \w offspring|strong="H2233"\w* among \w the|strong="H5307"\w* \w nations|strong="H1471"\w*, +\q2 \w and|strong="H1471"\w* \w scatter|strong="H2219"\w* \w them|strong="H5307"\w* \w in|strong="H5307"\w* \w the|strong="H5307"\w* lands. +\q1 +\v 28 They \w joined|strong="H6775"\w* themselves \w also|strong="H4191"\w* \w to|strong="H4191"\w* \w Baal|strong="H1187"\w* \w Peor|strong="H1187"\w*, +\q2 \w and|strong="H2077"\w* ate \w the|strong="H4191"\w* \w sacrifices|strong="H2077"\w* \w of|strong="H2077"\w* \w the|strong="H4191"\w* \w dead|strong="H4191"\w*. +\q1 +\v 29 Thus they \w provoked|strong="H3707"\w* \w him|strong="H3707"\w* \w to|strong="H4611"\w* \w anger|strong="H3707"\w* \w with|strong="H3707"\w* \w their|strong="H6555"\w* \w deeds|strong="H4611"\w*. +\q2 \w The|strong="H3707"\w* \w plague|strong="H4046"\w* \w broke|strong="H6555"\w* \w in|strong="H6555"\w* on them. +\q1 +\v 30 \w Then|strong="H5975"\w* \w Phinehas|strong="H6372"\w* \w stood|strong="H5975"\w* \w up|strong="H5975"\w* \w and|strong="H5975"\w* executed \w judgment|strong="H6419"\w*, +\q2 \w so|strong="H5975"\w* \w the|strong="H5975"\w* \w plague|strong="H4046"\w* \w was|strong="H4046"\w* \w stopped|strong="H5975"\w*. +\q1 +\v 31 \w That|strong="H5704"\w* was \w credited|strong="H2803"\w* \w to|strong="H5704"\w* \w him|strong="H2803"\w* \w for|strong="H5704"\w* \w righteousness|strong="H6666"\w*, +\q2 \w for|strong="H5704"\w* \w all|strong="H1755"\w* \w generations|strong="H1755"\w* \w to|strong="H5704"\w* come. +\q1 +\v 32 \w They|strong="H5921"\w* \w angered|strong="H7107"\w* \w him|strong="H5921"\w* \w also|strong="H4872"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w of|strong="H4325"\w* Meribah, +\q2 \w so|strong="H5668"\w* \w that|strong="H4325"\w* \w Moses|strong="H4872"\w* \w was|strong="H4872"\w* troubled \w for|strong="H5921"\w* \w their|strong="H5921"\w* \w sakes|strong="H5921"\w*; +\q1 +\v 33 \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H8193"\w* \w rebellious|strong="H4784"\w* \w against|strong="H4784"\w* \w his|strong="H3588"\w* \w spirit|strong="H7307"\w*, +\q2 \w he|strong="H3588"\w* spoke \w rashly|strong="H8193"\w* \w with|strong="H8193"\w* \w his|strong="H3588"\w* \w lips|strong="H8193"\w*. +\q1 +\v 34 \w They|strong="H1992"\w* didn’t \w destroy|strong="H8045"\w* \w the|strong="H3068"\w* \w peoples|strong="H5971"\w*, +\q2 \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* commanded \w them|strong="H1992"\w*, +\q2 +\v 35 but mixed themselves \w with|strong="H4639"\w* \w the|strong="H3925"\w* \w nations|strong="H1471"\w*, +\q2 \w and|strong="H1471"\w* \w learned|strong="H3925"\w* \w their|strong="H3925"\w* \w works|strong="H4639"\w*. +\q1 +\v 36 \w They|strong="H1992"\w* \w served|strong="H5647"\w* \w their|strong="H1992"\w* \w idols|strong="H6091"\w*, +\q2 \w which|strong="H1992"\w* \w became|strong="H1961"\w* \w a|strong="H3068"\w* \w snare|strong="H4170"\w* \w to|strong="H1961"\w* \w them|strong="H1992"\w*. +\q1 +\v 37 Yes, they \w sacrificed|strong="H2076"\w* \w their|strong="H2076"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w their|strong="H2076"\w* \w daughters|strong="H1323"\w* \w to|strong="H1121"\w* \w demons|strong="H7700"\w*. +\q2 +\v 38 \w They|strong="H3667"\w* \w shed|strong="H8210"\w* \w innocent|strong="H5355"\w* \w blood|strong="H1818"\w*, +\q2 even \w the|strong="H2076"\w* \w blood|strong="H1818"\w* \w of|strong="H1121"\w* \w their|strong="H2076"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w their|strong="H2076"\w* \w daughters|strong="H1323"\w*, +\q2 whom \w they|strong="H3667"\w* \w sacrificed|strong="H2076"\w* \w to|strong="H1121"\w* \w the|strong="H2076"\w* \w idols|strong="H6091"\w* \w of|strong="H1121"\w* \w Canaan|strong="H3667"\w*. +\q2 \w The|strong="H2076"\w* land \w was|strong="H1121"\w* \w polluted|strong="H2610"\w* \w with|strong="H2076"\w* \w blood|strong="H1818"\w*. +\q1 +\v 39 Thus they were \w defiled|strong="H2930"\w* \w with|strong="H4639"\w* \w their|strong="H2930"\w* \w works|strong="H4639"\w*, +\q2 \w and|strong="H4639"\w* \w prostituted|strong="H2181"\w* themselves \w in|strong="H4639"\w* \w their|strong="H2930"\w* \w deeds|strong="H4611"\w*. +\q1 +\v 40 \w Therefore|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w burned|strong="H2734"\w* \w with|strong="H3068"\w* anger \w against|strong="H2734"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*. +\q2 \w He|strong="H3068"\w* \w abhorred|strong="H8581"\w* \w his|strong="H3068"\w* \w inheritance|strong="H5159"\w*. +\q1 +\v 41 \w He|strong="H3027"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5414"\w* \w nations|strong="H1471"\w*. +\q2 \w Those|strong="H8130"\w* \w who|strong="H1471"\w* \w hated|strong="H8130"\w* \w them|strong="H5414"\w* \w ruled|strong="H4910"\w* \w over|strong="H3027"\w* \w them|strong="H5414"\w*. +\q1 +\v 42 \w Their|strong="H8478"\w* \w enemies|strong="H3027"\w* \w also|strong="H3027"\w* \w oppressed|strong="H3905"\w* \w them|strong="H3027"\w*. +\q2 \w They|strong="H3027"\w* \w were|strong="H3027"\w* \w brought|strong="H3665"\w* \w into|strong="H3027"\w* \w subjection|strong="H3665"\w* \w under|strong="H8478"\w* \w their|strong="H8478"\w* \w hand|strong="H3027"\w*. +\q1 +\v 43 He \w rescued|strong="H5337"\w* \w them|strong="H1992"\w* \w many|strong="H7227"\w* \w times|strong="H6471"\w*, +\q2 \w but|strong="H1992"\w* \w they|strong="H1992"\w* \w were|strong="H1992"\w* \w rebellious|strong="H4784"\w* \w in|strong="H7227"\w* \w their|strong="H1992"\w* \w counsel|strong="H6098"\w*, +\q2 \w and|strong="H6098"\w* \w were|strong="H1992"\w* \w brought|strong="H4355"\w* \w low|strong="H4355"\w* \w in|strong="H7227"\w* \w their|strong="H1992"\w* \w iniquity|strong="H5771"\w*. +\q1 +\v 44 Nevertheless \w he|strong="H7200"\w* \w regarded|strong="H7200"\w* \w their|strong="H8085"\w* \w distress|strong="H6862"\w*, +\q2 \w when|strong="H7200"\w* \w he|strong="H7200"\w* \w heard|strong="H8085"\w* \w their|strong="H8085"\w* \w cry|strong="H7440"\w*. +\q1 +\v 45 \w He|strong="H1285"\w* \w remembered|strong="H2142"\w* \w for|strong="H2617"\w* \w them|strong="H1992"\w* \w his|strong="H2142"\w* \w covenant|strong="H1285"\w*, +\q2 \w and|strong="H2617"\w* \w repented|strong="H5162"\w* according \w to|strong="H2617"\w* \w the|strong="H2142"\w* \w multitude|strong="H7230"\w* \w of|strong="H7230"\w* \w his|strong="H2142"\w* loving \w kindnesses|strong="H2617"\w*. +\q1 +\v 46 \w He|strong="H3605"\w* \w made|strong="H5414"\w* \w them|strong="H5414"\w* also \w to|strong="H5414"\w* \w be|strong="H5414"\w* \w pitied|strong="H7356"\w* +\q2 \w by|strong="H5414"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w carried|strong="H7617"\w* \w them|strong="H5414"\w* \w captive|strong="H7617"\w*. +\b +\q1 +\v 47 \w Save|strong="H3467"\w* \w us|strong="H4480"\w*, \w Yahweh|strong="H3068"\w*, \w our|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 \w gather|strong="H6908"\w* \w us|strong="H4480"\w* \w from|strong="H4480"\w* \w among|strong="H4480"\w* \w the|strong="H3068"\w* \w nations|strong="H1471"\w*, +\q2 \w to|strong="H3068"\w* \w give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w holy|strong="H6944"\w* \w name|strong="H8034"\w*, +\q2 \w to|strong="H3068"\w* \w triumph|strong="H7623"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w praise|strong="H8416"\w*! +\b +\q1 +\v 48 \w Blessed|strong="H1288"\w* \w be|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, +\q2 \w from|strong="H4480"\w* \w everlasting|strong="H5769"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w everlasting|strong="H5769"\w*! +\q1 Let \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w say|strong="H3478"\w*, “Amen.” +\q2 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*! +\c 107 +\ms1 BOOK 5 +\q1 +\v 1 \w Give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*,\f + \fr 107:1 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3068"\w* \w loving|strong="H2896"\w* \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*. +\q1 +\v 2 \w Let|strong="H1350"\w* \w the|strong="H3068"\w* \w redeemed|strong="H1350"\w* \w by|strong="H3027"\w* \w Yahweh|strong="H3068"\w* say \w so|strong="H1350"\w*, +\q2 whom \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w redeemed|strong="H1350"\w* \w from|strong="H3027"\w* \w the|strong="H3068"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w adversary|strong="H6862"\w*, +\q2 +\v 3 \w and|strong="H3220"\w* \w gathered|strong="H6908"\w* \w out|strong="H6908"\w* \w of|strong="H3220"\w* \w the|strong="H6908"\w* lands, +\q2 \w from|strong="H4217"\w* \w the|strong="H6908"\w* \w east|strong="H4217"\w* \w and|strong="H3220"\w* \w from|strong="H4217"\w* \w the|strong="H6908"\w* \w west|strong="H3220"\w*, +\q2 \w from|strong="H4217"\w* \w the|strong="H6908"\w* \w north|strong="H6828"\w* \w and|strong="H3220"\w* \w from|strong="H4217"\w* \w the|strong="H6908"\w* \w south|strong="H3220"\w*. +\b +\q1 +\v 4 \w They|strong="H3808"\w* \w wandered|strong="H8582"\w* \w in|strong="H5892"\w* \w the|strong="H1870"\w* \w wilderness|strong="H4057"\w* \w in|strong="H5892"\w* \w a|strong="H3068"\w* \w desert|strong="H4057"\w* \w way|strong="H1870"\w*. +\q2 \w They|strong="H3808"\w* \w found|strong="H4672"\w* \w no|strong="H3808"\w* \w city|strong="H5892"\w* \w to|strong="H1870"\w* \w live|strong="H4186"\w* \w in|strong="H5892"\w*. +\q1 +\v 5 \w Hungry|strong="H7457"\w* \w and|strong="H5315"\w* \w thirsty|strong="H6771"\w*, +\q2 \w their|strong="H1571"\w* \w soul|strong="H5315"\w* \w fainted|strong="H5848"\w* \w in|strong="H5315"\w* \w them|strong="H5848"\w*. +\q1 +\v 6 \w Then|strong="H3068"\w* \w they|strong="H1992"\w* \w cried|strong="H6817"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w their|strong="H3068"\w* \w trouble|strong="H6862"\w*, +\q2 \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w delivered|strong="H5337"\w* \w them|strong="H1992"\w* \w out|strong="H6817"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w distresses|strong="H4691"\w*. +\q1 +\v 7 \w He|strong="H5892"\w* \w led|strong="H3212"\w* \w them|strong="H1869"\w* also \w by|strong="H1870"\w* \w a|strong="H3068"\w* \w straight|strong="H3477"\w* \w way|strong="H1870"\w*, +\q2 \w that|strong="H5892"\w* \w they|strong="H5892"\w* \w might|strong="H3477"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w* \w to|strong="H3212"\w* \w live|strong="H4186"\w* \w in|strong="H3212"\w*. +\q1 +\v 8 Let \w them|strong="H1121"\w* \w praise|strong="H3034"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H3068"\w* \w his|strong="H3068"\w* loving \w kindness|strong="H2617"\w*, +\q2 \w for|strong="H3068"\w* \w his|strong="H3068"\w* \w wonderful|strong="H6381"\w* \w deeds|strong="H6381"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*! +\b +\q1 +\v 9 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w satisfies|strong="H7646"\w* \w the|strong="H3588"\w* \w longing|strong="H8264"\w* \w soul|strong="H5315"\w*. +\q2 \w He|strong="H3588"\w* \w fills|strong="H4390"\w* \w the|strong="H3588"\w* \w hungry|strong="H7457"\w* \w soul|strong="H5315"\w* \w with|strong="H4390"\w* \w good|strong="H2896"\w*. +\b +\q1 +\v 10 Some \w sat|strong="H3427"\w* \w in|strong="H3427"\w* \w darkness|strong="H2822"\w* \w and|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3427"\w* \w shadow|strong="H6757"\w* \w of|strong="H3427"\w* \w death|strong="H6757"\w*, +\q2 being bound \w in|strong="H3427"\w* \w affliction|strong="H6040"\w* \w and|strong="H3427"\w* \w iron|strong="H1270"\w*, +\q2 +\v 11 \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w rebelled|strong="H4784"\w* \w against|strong="H4784"\w* \w the|strong="H3588"\w* words \w of|strong="H6098"\w* God,\f + \fr 107:11 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* +\q2 \w and|strong="H6098"\w* condemned \w the|strong="H3588"\w* \w counsel|strong="H6098"\w* \w of|strong="H6098"\w* \w the|strong="H3588"\w* \w Most|strong="H5945"\w* \w High|strong="H5945"\w*. +\q1 +\v 12 Therefore \w he|strong="H3820"\w* \w brought|strong="H3665"\w* \w down|strong="H3782"\w* \w their|strong="H3665"\w* \w heart|strong="H3820"\w* \w with|strong="H3820"\w* \w labor|strong="H5999"\w*. +\q2 \w They|strong="H3820"\w* \w fell|strong="H3782"\w* \w down|strong="H3782"\w*, \w and|strong="H5999"\w* there \w was|strong="H3820"\w* no one \w to|strong="H3820"\w* \w help|strong="H5826"\w*. +\q1 +\v 13 \w Then|strong="H3068"\w* \w they|strong="H1992"\w* \w cried|strong="H2199"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w their|strong="H3068"\w* \w trouble|strong="H6862"\w*, +\q2 \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w saved|strong="H3467"\w* \w them|strong="H1992"\w* \w out|strong="H2199"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w distresses|strong="H4691"\w*. +\q1 +\v 14 \w He|strong="H3318"\w* \w brought|strong="H3318"\w* \w them|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w darkness|strong="H2822"\w* \w and|strong="H3318"\w* \w the|strong="H3318"\w* \w shadow|strong="H6757"\w* \w of|strong="H3318"\w* \w death|strong="H6757"\w*, +\q2 \w and|strong="H3318"\w* \w broke|strong="H5423"\w* \w away|strong="H5423"\w* \w their|strong="H3318"\w* \w chains|strong="H4147"\w*. +\q1 +\v 15 Let \w them|strong="H1121"\w* \w praise|strong="H3034"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H3068"\w* \w his|strong="H3068"\w* loving \w kindness|strong="H2617"\w*, +\q2 \w for|strong="H3068"\w* \w his|strong="H3068"\w* \w wonderful|strong="H6381"\w* \w deeds|strong="H6381"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*! +\b +\q1 +\v 16 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w broken|strong="H7665"\w* \w the|strong="H3588"\w* \w gates|strong="H1817"\w* \w of|strong="H1817"\w* \w bronze|strong="H5178"\w*, +\q2 \w and|strong="H5178"\w* \w cut|strong="H1438"\w* \w through|strong="H3588"\w* \w bars|strong="H1280"\w* \w of|strong="H1817"\w* \w iron|strong="H1270"\w*. +\b +\q1 +\v 17 Fools \w are|strong="H6588"\w* \w afflicted|strong="H6031"\w* \w because|strong="H1870"\w* \w of|strong="H1870"\w* \w their|strong="H1870"\w* disobedience, +\q2 \w and|strong="H1870"\w* \w because|strong="H1870"\w* \w of|strong="H1870"\w* \w their|strong="H1870"\w* \w iniquities|strong="H5771"\w*. +\q1 +\v 18 \w Their|strong="H3605"\w* \w soul|strong="H5315"\w* \w abhors|strong="H8581"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H8179"\w* food. +\q2 \w They|strong="H5704"\w* \w draw|strong="H5060"\w* \w near|strong="H5060"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w gates|strong="H8179"\w* \w of|strong="H8179"\w* \w death|strong="H4194"\w*. +\q1 +\v 19 \w Then|strong="H3068"\w* \w they|strong="H1992"\w* \w cry|strong="H2199"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w their|strong="H3068"\w* \w trouble|strong="H6862"\w*, +\q2 \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w saves|strong="H3467"\w* \w them|strong="H1992"\w* \w out|strong="H2199"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w distresses|strong="H4691"\w*. +\q1 +\v 20 \w He|strong="H7971"\w* \w sends|strong="H7971"\w* \w his|strong="H7971"\w* \w word|strong="H1697"\w*, \w and|strong="H7971"\w* \w heals|strong="H7495"\w* \w them|strong="H7971"\w*, +\q2 \w and|strong="H7971"\w* \w delivers|strong="H4422"\w* \w them|strong="H7971"\w* \w from|strong="H7971"\w* \w their|strong="H7971"\w* graves. +\q1 +\v 21 Let \w them|strong="H1121"\w* \w praise|strong="H3034"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H3068"\w* \w his|strong="H3068"\w* loving \w kindness|strong="H2617"\w*, +\q2 \w for|strong="H3068"\w* \w his|strong="H3068"\w* \w wonderful|strong="H6381"\w* \w deeds|strong="H6381"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*! +\b +\q1 +\v 22 Let \w them|strong="H2076"\w* \w offer|strong="H2076"\w* \w the|strong="H5608"\w* \w sacrifices|strong="H2077"\w* \w of|strong="H2077"\w* \w thanksgiving|strong="H8426"\w*, +\q2 \w and|strong="H2077"\w* \w declare|strong="H5608"\w* \w his|strong="H5608"\w* \w deeds|strong="H4639"\w* \w with|strong="H2077"\w* \w singing|strong="H7440"\w*. +\b +\q1 +\v 23 \w Those|strong="H6213"\w* \w who|strong="H7227"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H6213"\w* \w sea|strong="H3220"\w* \w in|strong="H6213"\w* ships, +\q2 \w who|strong="H7227"\w* \w do|strong="H6213"\w* \w business|strong="H4399"\w* \w in|strong="H6213"\w* \w great|strong="H7227"\w* \w waters|strong="H4325"\w*, +\q2 +\v 24 \w these|strong="H1992"\w* \w see|strong="H7200"\w* \w Yahweh|strong="H3068"\w*’s \w deeds|strong="H4639"\w*, +\q2 \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w wonders|strong="H6381"\w* \w in|strong="H3068"\w* \w the|strong="H7200"\w* \w deep|strong="H4688"\w*. +\q1 +\v 25 \w For|strong="H5975"\w* \w he|strong="H7307"\w* commands, \w and|strong="H5975"\w* raises \w the|strong="H5975"\w* \w stormy|strong="H5591"\w* \w wind|strong="H7307"\w*, +\q2 \w which|strong="H7307"\w* \w lifts|strong="H7311"\w* \w up|strong="H7311"\w* \w its|strong="H5975"\w* \w waves|strong="H1530"\w*. +\q1 +\v 26 \w They|strong="H5315"\w* \w mount|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3381"\w* \w the|strong="H5927"\w* \w sky|strong="H8064"\w*; \w they|strong="H5315"\w* \w go|strong="H5927"\w* \w down|strong="H3381"\w* again \w to|strong="H3381"\w* \w the|strong="H5927"\w* \w depths|strong="H8415"\w*. +\q2 \w Their|strong="H8064"\w* \w soul|strong="H5315"\w* \w melts|strong="H4127"\w* \w away|strong="H5927"\w* because \w of|strong="H5315"\w* \w trouble|strong="H7451"\w*. +\q1 +\v 27 \w They|strong="H3605"\w* \w reel|strong="H5128"\w* back \w and|strong="H2451"\w* forth, \w and|strong="H2451"\w* \w stagger|strong="H5128"\w* like \w a|strong="H3068"\w* \w drunken|strong="H7910"\w* \w man|strong="H7910"\w*, +\q2 \w and|strong="H2451"\w* are \w at|strong="H3605"\w* \w their|strong="H3605"\w* wits’ \w end|strong="H1104"\w*. +\q1 +\v 28 \w Then|strong="H3318"\w* \w they|strong="H1992"\w* \w cry|strong="H6817"\w* \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w their|strong="H3068"\w* \w trouble|strong="H6862"\w*, +\q2 \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w brings|strong="H3318"\w* \w them|strong="H1992"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w distress|strong="H6862"\w*. +\q1 +\v 29 He makes \w the|strong="H6965"\w* \w storm|strong="H5591"\w* \w a|strong="H3068"\w* \w calm|strong="H1827"\w*, +\q2 \w so|strong="H6965"\w* \w that|strong="H6965"\w* \w its|strong="H6965"\w* \w waves|strong="H1530"\w* \w are|strong="H1530"\w* \w still|strong="H2814"\w*. +\q1 +\v 30 \w Then|strong="H3588"\w* \w they|strong="H3588"\w* are \w glad|strong="H8055"\w* \w because|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H2656"\w* \w calm|strong="H8367"\w*, +\q2 \w so|strong="H3588"\w* \w he|strong="H3588"\w* \w brings|strong="H5148"\w* \w them|strong="H5148"\w* \w to|strong="H3588"\w* \w their|strong="H3588"\w* \w desired|strong="H2656"\w* \w haven|strong="H4231"\w*. +\q1 +\v 31 Let \w them|strong="H1121"\w* \w praise|strong="H3034"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H3068"\w* \w his|strong="H3068"\w* loving \w kindness|strong="H2617"\w*, +\q2 \w for|strong="H3068"\w* \w his|strong="H3068"\w* \w wonderful|strong="H6381"\w* \w deeds|strong="H6381"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*! +\b +\q1 +\v 32 Let them \w exalt|strong="H7311"\w* \w him|strong="H1984"\w* \w also|strong="H5971"\w* \w in|strong="H5971"\w* \w the|strong="H1984"\w* \w assembly|strong="H6951"\w* \w of|strong="H2205"\w* \w the|strong="H1984"\w* \w people|strong="H5971"\w*, +\q2 \w and|strong="H5971"\w* \w praise|strong="H1984"\w* \w him|strong="H1984"\w* \w in|strong="H5971"\w* \w the|strong="H1984"\w* \w seat|strong="H4186"\w* \w of|strong="H2205"\w* \w the|strong="H1984"\w* \w elders|strong="H2205"\w*. +\b +\q1 +\v 33 \w He|strong="H7760"\w* turns \w rivers|strong="H5104"\w* \w into|strong="H4161"\w* \w a|strong="H3068"\w* \w desert|strong="H4057"\w*, +\q2 \w water|strong="H4325"\w* \w springs|strong="H4161"\w* \w into|strong="H4161"\w* \w a|strong="H3068"\w* \w thirsty|strong="H6774"\w* \w ground|strong="H6774"\w*, +\q2 +\v 34 \w and|strong="H3427"\w* \w a|strong="H3068"\w* \w fruitful|strong="H6529"\w* \w land|strong="H4420"\w* into \w a|strong="H3068"\w* \w salt|strong="H4420"\w* \w waste|strong="H4420"\w*, +\q2 \w for|strong="H3427"\w* \w the|strong="H3427"\w* \w wickedness|strong="H7451"\w* \w of|strong="H3427"\w* \w those|strong="H3427"\w* \w who|strong="H3427"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* it. +\q1 +\v 35 \w He|strong="H7760"\w* turns \w a|strong="H3068"\w* \w desert|strong="H4057"\w* \w into|strong="H4161"\w* \w a|strong="H3068"\w* \w pool|strong="H4325"\w* \w of|strong="H4325"\w* \w water|strong="H4325"\w*, +\q2 \w and|strong="H4325"\w* \w a|strong="H3068"\w* \w dry|strong="H6723"\w* \w land|strong="H6723"\w* \w into|strong="H4161"\w* \w water|strong="H4325"\w* \w springs|strong="H4161"\w*. +\q1 +\v 36 \w There|strong="H8033"\w* \w he|strong="H8033"\w* \w makes|strong="H3559"\w* \w the|strong="H8033"\w* \w hungry|strong="H7457"\w* \w live|strong="H3427"\w*, +\q2 \w that|strong="H5892"\w* \w they|strong="H8033"\w* may \w prepare|strong="H3559"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w* \w to|strong="H8033"\w* \w live|strong="H3427"\w* \w in|strong="H3427"\w*, +\q2 +\v 37 \w sow|strong="H2232"\w* \w fields|strong="H7704"\w*, \w plant|strong="H5193"\w* \w vineyards|strong="H3754"\w*, +\q2 \w and|strong="H7704"\w* reap \w the|strong="H6213"\w* \w fruits|strong="H6529"\w* \w of|strong="H7704"\w* \w increase|strong="H8393"\w*. +\q1 +\v 38 \w He|strong="H3808"\w* \w blesses|strong="H1288"\w* \w them|strong="H1288"\w* also, \w so|strong="H3808"\w* \w that|strong="H3808"\w* \w they|strong="H3808"\w* \w are|strong="H3808"\w* \w multiplied|strong="H7235"\w* \w greatly|strong="H3966"\w*. +\q2 \w He|strong="H3808"\w* doesn’t allow \w their|strong="H3808"\w* livestock \w to|strong="H3808"\w* \w decrease|strong="H4591"\w*. +\q1 +\v 39 Again, \w they|strong="H7451"\w* \w are|strong="H7817"\w* \w diminished|strong="H4591"\w* \w and|strong="H7451"\w* \w bowed|strong="H7817"\w* \w down|strong="H7817"\w* +\q2 \w through|strong="H7817"\w* \w oppression|strong="H6115"\w*, \w trouble|strong="H7451"\w*, \w and|strong="H7451"\w* \w sorrow|strong="H3015"\w*. +\q1 +\v 40 \w He|strong="H3808"\w* \w pours|strong="H8210"\w* contempt \w on|strong="H5921"\w* \w princes|strong="H5081"\w*, +\q2 \w and|strong="H1870"\w* causes \w them|strong="H5921"\w* \w to|strong="H5921"\w* \w wander|strong="H8582"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* trackless \w waste|strong="H8414"\w*. +\q1 +\v 41 Yet \w he|strong="H7760"\w* lifts \w the|strong="H7760"\w* needy \w out|strong="H7760"\w* \w of|strong="H4940"\w* \w their|strong="H7760"\w* \w affliction|strong="H6040"\w*, +\q2 \w and|strong="H6629"\w* increases \w their|strong="H7760"\w* \w families|strong="H4940"\w* \w like|strong="H7760"\w* \w a|strong="H3068"\w* \w flock|strong="H6629"\w*. +\q1 +\v 42 \w The|strong="H3605"\w* \w upright|strong="H3477"\w* \w will|strong="H3477"\w* \w see|strong="H7200"\w* \w it|strong="H7200"\w*, \w and|strong="H7200"\w* \w be|strong="H6310"\w* \w glad|strong="H8055"\w*. +\q2 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w wicked|strong="H5766"\w* \w will|strong="H3477"\w* \w shut|strong="H7092"\w* \w their|strong="H3605"\w* \w mouths|strong="H6310"\w*. +\q1 +\v 43 \w Whoever|strong="H4310"\w* \w is|strong="H3068"\w* \w wise|strong="H2450"\w* \w will|strong="H3068"\w* \w pay|strong="H8104"\w* \w attention|strong="H8104"\w* \w to|strong="H3068"\w* \w these|strong="H8104"\w* things. +\q2 \w They|strong="H3068"\w* \w will|strong="H3068"\w* consider \w the|strong="H8104"\w* loving \w kindnesses|strong="H2617"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\c 108 +\d A Song. A Psalm by David. +\q1 +\v 1 \w My|strong="H1732"\w* heart \w is|strong="H1732"\w* steadfast, God. +\q2 I \w will|strong="H7892"\w* \w sing|strong="H7892"\w* \w and|strong="H1732"\w* I \w will|strong="H7892"\w* make \w music|strong="H7892"\w* \w with|strong="H1732"\w* \w my|strong="H1732"\w* soul. +\q1 +\v 2 Wake up, harp \w and|strong="H3820"\w* lyre! +\q2 \w I|strong="H3559"\w* \w will|strong="H3820"\w* wake up \w the|strong="H3559"\w* dawn. +\q1 +\v 3 \w I|strong="H5782"\w* will give thanks \w to|strong="H7837"\w* you, \w Yahweh|strong="H3068"\w*, among \w the|strong="H5782"\w* nations. +\q2 \w I|strong="H5782"\w* will sing praises \w to|strong="H7837"\w* you among \w the|strong="H5782"\w* peoples. +\q1 +\v 4 \w For|strong="H3068"\w* \w your|strong="H3068"\w* loving kindness \w is|strong="H3068"\w* great above \w the|strong="H3068"\w* heavens. +\q2 \w Your|strong="H3068"\w* faithfulness reaches \w to|strong="H3068"\w* \w the|strong="H3068"\w* skies. +\q1 +\v 5 \w Be|strong="H8064"\w* exalted, \w God|strong="H8064"\w*, \w above|strong="H5921"\w* \w the|strong="H5921"\w* \w heavens|strong="H8064"\w*! +\q2 Let \w your|strong="H5921"\w* glory \w be|strong="H8064"\w* \w over|strong="H5921"\w* \w all|strong="H5704"\w* \w the|strong="H5921"\w* \w earth|strong="H8064"\w*. +\q1 +\v 6 \w That|strong="H3605"\w* \w your|strong="H3605"\w* beloved \w may|strong="H3519"\w* \w be|strong="H8064"\w* delivered, +\q2 save \w with|strong="H5921"\w* \w your|strong="H3605"\w* right hand, \w and|strong="H8064"\w* answer \w us|strong="H5921"\w*. +\q1 +\v 7 God \w has|strong="H3225"\w* spoken \w from|strong="H3467"\w* \w his|strong="H3467"\w* sanctuary: “\w In|strong="H6030"\w* triumph, +\q2 I \w will|strong="H4616"\w* divide Shechem, \w and|strong="H6030"\w* measure \w out|strong="H2502"\w* \w the|strong="H6030"\w* valley \w of|strong="H3225"\w* Succoth. +\q1 +\v 8 Gilead \w is|strong="H1696"\w* \w mine|strong="H1696"\w*. Manasseh \w is|strong="H1696"\w* \w mine|strong="H1696"\w*. +\q2 Ephraim \w also|strong="H7927"\w* \w is|strong="H1696"\w* \w my|strong="H1696"\w* helmet. +\q2 Judah \w is|strong="H1696"\w* \w my|strong="H1696"\w* scepter. +\q1 +\v 9 Moab \w is|strong="H7218"\w* my wash pot. +\q2 I \w will|strong="H3063"\w* toss my sandal \w on|strong="H7218"\w* Edom. +\q2 I \w will|strong="H3063"\w* shout \w over|strong="H7218"\w* Philistia.” +\q1 +\v 10 Who \w will|strong="H4124"\w* bring \w me|strong="H5921"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* fortified city? +\q2 Who \w will|strong="H4124"\w* lead \w me|strong="H5921"\w* \w to|strong="H5921"\w* Edom? +\q1 +\v 11 Haven’t \w you|strong="H5704"\w* rejected us, \w God|strong="H4310"\w*? +\q2 \w You|strong="H5704"\w* don’t go \w out|strong="H5704"\w*, \w God|strong="H4310"\w*, \w with|strong="H5892"\w* our armies. +\q1 +\v 12 Give \w us|strong="H2186"\w* help against \w the|strong="H3318"\w* enemy, +\q2 \w for|strong="H6635"\w* \w the|strong="H3318"\w* help \w of|strong="H6635"\w* man \w is|strong="H6635"\w* vain. +\q1 +\v 13 Through God, \w we|strong="H3068"\w* \w will|strong="H6862"\w* do valiantly, +\q2 \w for|strong="H8668"\w* it is he \w who|strong="H6862"\w* \w will|strong="H6862"\w* tread down our \w enemies|strong="H6862"\w*. +\c 109 +\d For the Chief Musician. A Psalm by David. +\q1 +\v 1 God \w of|strong="H4210"\w* \w my|strong="H1732"\w* \w praise|strong="H8416"\w*, don’t \w remain|strong="H2790"\w* \w silent|strong="H2790"\w*, +\q2 +\v 2 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H7563"\w* \w opened|strong="H6605"\w* \w the|strong="H5921"\w* \w mouth|strong="H6310"\w* \w of|strong="H6310"\w* \w the|strong="H5921"\w* \w wicked|strong="H7563"\w* \w and|strong="H6310"\w* \w the|strong="H5921"\w* \w mouth|strong="H6310"\w* \w of|strong="H6310"\w* \w deceit|strong="H4820"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*. +\q2 \w They|strong="H3588"\w* \w have|strong="H7563"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H5921"\w* \w with|strong="H1696"\w* \w a|strong="H3068"\w* \w lying|strong="H8267"\w* \w tongue|strong="H3956"\w*. +\q1 +\v 3 \w They|strong="H1697"\w* \w have|strong="H1697"\w* also \w surrounded|strong="H5437"\w* \w me|strong="H5437"\w* \w with|strong="H3898"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w hatred|strong="H8135"\w*, +\q2 \w and|strong="H1697"\w* \w fought|strong="H3898"\w* \w against|strong="H3898"\w* \w me|strong="H5437"\w* \w without|strong="H2600"\w* \w a|strong="H3068"\w* \w cause|strong="H2600"\w*. +\q1 +\v 4 \w In|strong="H8478"\w* \w return|strong="H8478"\w* \w for|strong="H8478"\w* \w my|strong="H8478"\w* love, \w they|strong="H8478"\w* \w are|strong="H8478"\w* \w my|strong="H8478"\w* \w adversaries|strong="H7853"\w*; +\q2 but \w I|strong="H8478"\w* am \w in|strong="H8478"\w* \w prayer|strong="H8605"\w*. +\q1 +\v 5 \w They|strong="H5921"\w* \w have|strong="H7451"\w* \w rewarded|strong="H7760"\w* \w me|strong="H5921"\w* \w evil|strong="H7451"\w* \w for|strong="H5921"\w* \w good|strong="H2896"\w*, +\q2 \w and|strong="H2896"\w* \w hatred|strong="H8135"\w* \w for|strong="H5921"\w* \w my|strong="H7760"\w* love. +\q1 +\v 6 \w Set|strong="H5975"\w* \w a|strong="H3068"\w* \w wicked|strong="H7563"\w* \w man|strong="H7563"\w* \w over|strong="H5921"\w* \w him|strong="H5921"\w*. +\q2 \w Let|strong="H6485"\w* \w an|strong="H5921"\w* \w adversary|strong="H7854"\w* \w stand|strong="H5975"\w* \w at|strong="H5921"\w* \w his|strong="H5921"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w*. +\q1 +\v 7 \w When|strong="H1961"\w* \w he|strong="H3318"\w* \w is|strong="H7563"\w* \w judged|strong="H8199"\w*, \w let|strong="H1961"\w* \w him|strong="H3318"\w* \w come|strong="H1961"\w* \w out|strong="H3318"\w* \w guilty|strong="H7563"\w*. +\q2 \w Let|strong="H1961"\w* \w his|strong="H1961"\w* \w prayer|strong="H8605"\w* \w be|strong="H1961"\w* \w turned|strong="H1961"\w* \w into|strong="H8199"\w* \w sin|strong="H2401"\w*. +\q1 +\v 8 \w Let|strong="H1961"\w* \w his|strong="H3947"\w* \w days|strong="H3117"\w* \w be|strong="H1961"\w* \w few|strong="H4592"\w*. +\q2 \w Let|strong="H1961"\w* another \w take|strong="H3947"\w* \w his|strong="H3947"\w* \w office|strong="H6486"\w*. +\q1 +\v 9 \w Let|strong="H1961"\w* \w his|strong="H1961"\w* \w children|strong="H1121"\w* \w be|strong="H1961"\w* \w fatherless|strong="H3490"\w*, +\q2 \w and|strong="H1121"\w* \w his|strong="H1961"\w* wife \w a|strong="H3068"\w* widow. +\q1 +\v 10 Let \w his|strong="H5128"\w* \w children|strong="H1121"\w* \w be|strong="H1121"\w* wandering beggars. +\q2 Let \w them|strong="H1121"\w* \w be|strong="H1121"\w* \w sought|strong="H1875"\w* \w from|strong="H1121"\w* \w their|strong="H5128"\w* \w ruins|strong="H2723"\w*. +\q1 +\v 11 Let \w the|strong="H3605"\w* \w creditor|strong="H5383"\w* \w seize|strong="H3605"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w has|strong="H3605"\w*. +\q2 Let \w strangers|strong="H2114"\w* plunder \w the|strong="H3605"\w* \w fruit|strong="H3018"\w* \w of|strong="H3605"\w* \w his|strong="H3605"\w* \w labor|strong="H3018"\w*. +\q1 +\v 12 \w Let|strong="H1961"\w* \w there|strong="H1961"\w* \w be|strong="H1961"\w* \w no|strong="H1961"\w* \w one|strong="H1961"\w* \w to|strong="H1961"\w* \w extend|strong="H1961"\w* \w kindness|strong="H2617"\w* \w to|strong="H1961"\w* \w him|strong="H2603"\w*, +\q2 neither \w let|strong="H1961"\w* \w there|strong="H1961"\w* \w be|strong="H1961"\w* anyone \w to|strong="H1961"\w* \w have|strong="H1961"\w* \w pity|strong="H2603"\w* \w on|strong="H1961"\w* \w his|strong="H1961"\w* \w fatherless|strong="H3490"\w* \w children|strong="H3490"\w*. +\q1 +\v 13 \w Let|strong="H1961"\w* \w his|strong="H1961"\w* \w posterity|strong="H1755"\w* \w be|strong="H1961"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*. +\q2 \w In|strong="H8034"\w* \w the|strong="H3772"\w* \w generation|strong="H1755"\w* following \w let|strong="H1961"\w* \w their|strong="H1961"\w* \w name|strong="H8034"\w* \w be|strong="H1961"\w* \w blotted|strong="H4229"\w* \w out|strong="H4229"\w*. +\q1 +\v 14 \w Let|strong="H2142"\w* \w the|strong="H3068"\w* \w iniquity|strong="H5771"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* fathers \w be|strong="H3068"\w* \w remembered|strong="H2142"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 Don’t \w let|strong="H2142"\w* \w the|strong="H3068"\w* \w sin|strong="H2403"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* mother \w be|strong="H3068"\w* \w blotted|strong="H4229"\w* \w out|strong="H4229"\w*. +\q1 +\v 15 \w Let|strong="H1961"\w* \w them|strong="H1961"\w* \w be|strong="H1961"\w* \w before|strong="H5048"\w* \w Yahweh|strong="H3068"\w* \w continually|strong="H8548"\w*, +\q2 \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w may|strong="H1961"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w their|strong="H3068"\w* \w memory|strong="H2143"\w* \w from|strong="H3772"\w* \w the|strong="H3068"\w* earth; +\q1 +\v 16 \w because|strong="H3282"\w* \w he|strong="H6213"\w* didn’t \w remember|strong="H2142"\w* \w to|strong="H4191"\w* \w show|strong="H6213"\w* \w kindness|strong="H2617"\w*, +\q2 \w but|strong="H3808"\w* \w persecuted|strong="H7291"\w* \w the|strong="H6213"\w* \w poor|strong="H6041"\w* \w and|strong="H6041"\w* \w needy|strong="H6041"\w* \w man|strong="H4191"\w*, +\q2 \w the|strong="H6213"\w* \w broken|strong="H3512"\w* \w in|strong="H6213"\w* \w heart|strong="H3824"\w*, \w to|strong="H4191"\w* \w kill|strong="H4191"\w* \w them|strong="H6213"\w*. +\q1 +\v 17 Yes, \w he|strong="H4480"\w* loved \w cursing|strong="H7045"\w*, \w and|strong="H1293"\w* \w it|strong="H3808"\w* came \w to|strong="H2654"\w* \w him|strong="H4480"\w*. +\q2 \w He|strong="H4480"\w* didn’t \w delight|strong="H2654"\w* \w in|strong="H2654"\w* \w blessing|strong="H1293"\w*, \w and|strong="H1293"\w* \w it|strong="H3808"\w* \w was|strong="H3808"\w* \w far|strong="H7368"\w* \w from|strong="H4480"\w* \w him|strong="H4480"\w*. +\q1 +\v 18 \w He|strong="H7130"\w* \w clothed|strong="H3847"\w* \w himself|strong="H4325"\w* also \w with|strong="H3847"\w* \w cursing|strong="H7045"\w* \w as|strong="H4325"\w* \w with|strong="H3847"\w* \w his|strong="H7130"\w* \w garment|strong="H4055"\w*. +\q2 \w It|strong="H7130"\w* \w came|strong="H3847"\w* \w into|strong="H4325"\w* \w his|strong="H7130"\w* \w inward|strong="H7130"\w* \w parts|strong="H7130"\w* \w like|strong="H7130"\w* \w water|strong="H4325"\w*, +\q2 \w like|strong="H7130"\w* \w oil|strong="H8081"\w* \w into|strong="H4325"\w* \w his|strong="H7130"\w* \w bones|strong="H6106"\w*. +\q1 +\v 19 \w Let|strong="H1961"\w* \w it|strong="H1961"\w* \w be|strong="H1961"\w* \w to|strong="H1961"\w* \w him|strong="H1961"\w* \w as|strong="H1961"\w* \w the|strong="H1961"\w* clothing \w with|strong="H2296"\w* which he \w covers|strong="H5844"\w* \w himself|strong="H5844"\w*, +\q2 \w for|strong="H1961"\w* \w the|strong="H1961"\w* \w belt|strong="H4206"\w* \w that|strong="H1961"\w* \w is|strong="H1961"\w* \w always|strong="H8548"\w* around \w him|strong="H1961"\w*. +\q1 +\v 20 \w This|strong="H2063"\w* \w is|strong="H3068"\w* \w the|strong="H5921"\w* \w reward|strong="H6468"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w adversaries|strong="H7853"\w* \w from|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w of|strong="H3068"\w* \w those|strong="H5921"\w* \w who|strong="H3068"\w* \w speak|strong="H1696"\w* \w evil|strong="H7451"\w* \w against|strong="H5921"\w* \w my|strong="H3068"\w* \w soul|strong="H5315"\w*. +\b +\q1 +\v 21 \w But|strong="H3588"\w* \w deal|strong="H6213"\w* \w with|strong="H6213"\w* \w me|strong="H6213"\w*, \w Yahweh|strong="H3068"\w* \w the|strong="H3588"\w* \w Lord|strong="H3069"\w*,\f + \fr 109:21 \ft The word translated “Lord” is “Adonai.”\f* \w for|strong="H3588"\w* \w your|strong="H6213"\w* \w name|strong="H8034"\w*’s \w sake|strong="H4616"\w*, +\q2 \w because|strong="H3588"\w* \w your|strong="H6213"\w* \w loving|strong="H2896"\w* \w kindness|strong="H2617"\w* \w is|strong="H2617"\w* \w good|strong="H2896"\w*, \w deliver|strong="H5337"\w* \w me|strong="H6213"\w*; +\q2 +\v 22 \w for|strong="H3588"\w* \w I|strong="H3588"\w* am \w poor|strong="H6041"\w* \w and|strong="H6041"\w* \w needy|strong="H6041"\w*. +\q2 \w My|strong="H2490"\w* \w heart|strong="H3820"\w* \w is|strong="H3820"\w* \w wounded|strong="H2490"\w* \w within|strong="H7130"\w* \w me|strong="H3588"\w*. +\q1 +\v 23 \w I|strong="H1980"\w* fade \w away|strong="H1980"\w* \w like|strong="H1980"\w* an evening \w shadow|strong="H6738"\w*. +\q2 \w I|strong="H1980"\w* \w am|strong="H1980"\w* \w shaken|strong="H5287"\w* \w off|strong="H5287"\w* \w like|strong="H1980"\w* \w a|strong="H3068"\w* locust. +\q1 +\v 24 \w My|strong="H1320"\w* \w knees|strong="H1290"\w* \w are|strong="H1290"\w* \w weak|strong="H3782"\w* \w through|strong="H3782"\w* \w fasting|strong="H6685"\w*. +\q2 \w My|strong="H1320"\w* \w body|strong="H1320"\w* \w is|strong="H1320"\w* thin \w and|strong="H8081"\w* lacks \w fat|strong="H8081"\w*. +\q1 +\v 25 \w I|strong="H7200"\w* \w have|strong="H1961"\w* \w also|strong="H1992"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w reproach|strong="H2781"\w* \w to|strong="H1961"\w* \w them|strong="H1992"\w*. +\q2 \w When|strong="H1961"\w* \w they|strong="H1992"\w* \w see|strong="H7200"\w* \w me|strong="H7200"\w*, \w they|strong="H1992"\w* \w shake|strong="H5128"\w* \w their|strong="H1992"\w* \w head|strong="H7218"\w*. +\q1 +\v 26 \w Help|strong="H5826"\w* \w me|strong="H3467"\w*, \w Yahweh|strong="H3068"\w*, \w my|strong="H3068"\w* \w God|strong="H3068"\w*. +\q2 \w Save|strong="H3467"\w* \w me|strong="H3467"\w* according \w to|strong="H3068"\w* \w your|strong="H3068"\w* loving \w kindness|strong="H2617"\w*; +\q1 +\v 27 \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w may|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w this|strong="H2063"\w* \w is|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*; +\q2 \w that|strong="H3588"\w* \w you|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w it|strong="H3588"\w*. +\q1 +\v 28 \w They|strong="H1992"\w* \w may|strong="H1992"\w* \w curse|strong="H7043"\w*, \w but|strong="H1992"\w* \w you|strong="H1288"\w* \w bless|strong="H1288"\w*. +\q2 \w When|strong="H6965"\w* \w they|strong="H1992"\w* \w arise|strong="H6965"\w*, \w they|strong="H1992"\w* \w will|strong="H5650"\w* \w be|strong="H1288"\w* shamed, +\q2 \w but|strong="H1992"\w* \w your|strong="H6965"\w* \w servant|strong="H5650"\w* \w shall|strong="H5650"\w* \w rejoice|strong="H8055"\w*. +\q1 +\v 29 Let my \w adversaries|strong="H7853"\w* \w be|strong="H7853"\w* \w clothed|strong="H3847"\w* \w with|strong="H3847"\w* \w dishonor|strong="H3639"\w*. +\q2 Let \w them|strong="H3847"\w* \w cover|strong="H5844"\w* themselves \w with|strong="H3847"\w* \w their|strong="H5844"\w* own \w shame|strong="H1322"\w* as \w with|strong="H3847"\w* \w a|strong="H3068"\w* \w robe|strong="H4598"\w*. +\q1 +\v 30 \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w give|strong="H3034"\w* \w great|strong="H7227"\w* \w thanks|strong="H3034"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w my|strong="H3068"\w* \w mouth|strong="H6310"\w*. +\q2 Yes, \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w praise|strong="H1984"\w* \w him|strong="H8432"\w* \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w multitude|strong="H7227"\w*. +\q1 +\v 31 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H5315"\w* \w stand|strong="H5975"\w* \w at|strong="H5975"\w* \w the|strong="H3588"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w of|strong="H5315"\w* \w the|strong="H3588"\w* needy, +\q2 \w to|strong="H5315"\w* \w save|strong="H3467"\w* \w him|strong="H5975"\w* \w from|strong="H5315"\w* \w those|strong="H3467"\w* \w who|strong="H5315"\w* \w judge|strong="H8199"\w* \w his|strong="H3588"\w* \w soul|strong="H5315"\w*. +\c 110 +\d A Psalm by David. +\q1 +\v 1 \w Yahweh|strong="H3068"\w* \w says|strong="H5002"\w* \w to|strong="H5704"\w* \w my|strong="H3068"\w* \w Lord|strong="H3068"\w*, “\w Sit|strong="H3427"\w* \w at|strong="H3427"\w* \w my|strong="H3068"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w*, +\q2 \w until|strong="H5704"\w* \w I|strong="H5704"\w* \w make|strong="H7896"\w* \w your|strong="H3068"\w* enemies \w your|strong="H3068"\w* \w footstool|strong="H1916"\w* \w for|strong="H5704"\w* \w your|strong="H3068"\w* \w feet|strong="H7272"\w*.” +\q1 +\v 2 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w out|strong="H7971"\w* \w the|strong="H3068"\w* \w rod|strong="H4294"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w strength|strong="H5797"\w* \w out|strong="H7971"\w* \w of|strong="H3068"\w* \w Zion|strong="H6726"\w*. +\q2 \w Rule|strong="H7287"\w* \w among|strong="H7130"\w* \w your|strong="H3068"\w* enemies. +\q1 +\v 3 \w Your|strong="H3117"\w* \w people|strong="H5971"\w* offer themselves \w willingly|strong="H5071"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H3117"\w* \w power|strong="H2428"\w*, \w in|strong="H3117"\w* \w holy|strong="H6944"\w* \w array|strong="H1926"\w*. +\q2 Out \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w womb|strong="H7358"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w morning|strong="H4891"\w*, \w you|strong="H3117"\w* \w have|strong="H5971"\w* \w the|strong="H3117"\w* \w dew|strong="H2919"\w* \w of|strong="H3117"\w* \w your|strong="H3117"\w* \w youth|strong="H3208"\w*. +\q1 +\v 4 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w sworn|strong="H7650"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w change|strong="H5162"\w* \w his|strong="H3068"\w* \w mind|strong="H5162"\w*: +\q2 “\w You|strong="H5921"\w* \w are|strong="H3068"\w* \w a|strong="H3068"\w* \w priest|strong="H3548"\w* \w forever|strong="H5769"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w order|strong="H1700"\w* \w of|strong="H3068"\w* \w Melchizedek|strong="H4442"\w*.” +\q1 +\v 5 \w The|strong="H5921"\w* \w Lord|strong="H3225"\w* \w is|strong="H3117"\w* \w at|strong="H5921"\w* \w your|strong="H5921"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w*. +\q2 \w He|strong="H3117"\w* \w will|strong="H4428"\w* \w crush|strong="H4272"\w* \w kings|strong="H4428"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w of|strong="H4428"\w* \w his|strong="H5921"\w* wrath. +\q1 +\v 6 \w He|strong="H5921"\w* \w will|strong="H1471"\w* \w judge|strong="H1777"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*. +\q2 \w He|strong="H5921"\w* \w will|strong="H1471"\w* heap \w up|strong="H5921"\w* \w dead|strong="H1472"\w* \w bodies|strong="H1472"\w*. +\q2 \w He|strong="H5921"\w* \w will|strong="H1471"\w* \w crush|strong="H4272"\w* \w the|strong="H5921"\w* ruler \w of|strong="H7218"\w* \w the|strong="H5921"\w* whole earth. +\q1 +\v 7 \w He|strong="H3651"\w* \w will|strong="H5158"\w* \w drink|strong="H8354"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w brook|strong="H5158"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w*; +\q2 \w therefore|strong="H3651"\w* \w he|strong="H3651"\w* \w will|strong="H5158"\w* \w lift|strong="H7311"\w* \w up|strong="H7311"\w* \w his|strong="H5921"\w* \w head|strong="H7218"\w*. +\c 111 +\q1 +\v 1 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*!\f + \fr 111:1 \ft Psalm 111 is an acrostic poem, with each verse after the initial “Praise Yah!” starting with a letter of the alphabet (ordered from Alef to Tav).\f* +\q2 \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w my|strong="H3605"\w* \w whole|strong="H3605"\w* \w heart|strong="H3824"\w*, +\q2 \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w council|strong="H5475"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w upright|strong="H3477"\w*, \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w congregation|strong="H5712"\w*. +\q1 +\v 2 \w Yahweh|strong="H3068"\w*’s \w works|strong="H4639"\w* \w are|strong="H3068"\w* \w great|strong="H1419"\w*, +\q2 pondered \w by|strong="H3068"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w delight|strong="H2656"\w* \w in|strong="H3068"\w* \w them|strong="H3068"\w*. +\q1 +\v 3 \w His|strong="H5975"\w* \w work|strong="H6467"\w* \w is|strong="H6467"\w* \w honor|strong="H1935"\w* \w and|strong="H5975"\w* \w majesty|strong="H1926"\w*. +\q2 \w His|strong="H5975"\w* \w righteousness|strong="H6666"\w* \w endures|strong="H5975"\w* \w forever|strong="H5703"\w*. +\q1 +\v 4 \w He|strong="H6213"\w* \w has|strong="H3068"\w* \w caused|strong="H6213"\w* \w his|strong="H3068"\w* \w wonderful|strong="H6381"\w* \w works|strong="H6381"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w remembered|strong="H2143"\w*. +\q2 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w gracious|strong="H2587"\w* \w and|strong="H3068"\w* \w merciful|strong="H7349"\w*. +\q1 +\v 5 \w He|strong="H5414"\w* \w has|strong="H5414"\w* \w given|strong="H5414"\w* \w food|strong="H2964"\w* \w to|strong="H5414"\w* those who \w fear|strong="H3373"\w* \w him|strong="H5414"\w*. +\q2 \w He|strong="H5414"\w* \w always|strong="H5769"\w* \w remembers|strong="H2142"\w* \w his|strong="H5414"\w* \w covenant|strong="H1285"\w*. +\q1 +\v 6 \w He|strong="H5414"\w* \w has|strong="H1471"\w* \w shown|strong="H5046"\w* \w his|strong="H5414"\w* \w people|strong="H5971"\w* \w the|strong="H5414"\w* \w power|strong="H3581"\w* \w of|strong="H5971"\w* \w his|strong="H5414"\w* \w works|strong="H4639"\w*, +\q2 \w in|strong="H5414"\w* \w giving|strong="H5414"\w* \w them|strong="H5414"\w* \w the|strong="H5414"\w* \w heritage|strong="H5159"\w* \w of|strong="H5971"\w* \w the|strong="H5414"\w* \w nations|strong="H1471"\w*. +\q1 +\v 7 \w The|strong="H3605"\w* \w works|strong="H4639"\w* \w of|strong="H3027"\w* \w his|strong="H3605"\w* \w hands|strong="H3027"\w* \w are|strong="H3027"\w* truth \w and|strong="H3027"\w* \w justice|strong="H4941"\w*. +\q2 \w All|strong="H3605"\w* \w his|strong="H3605"\w* \w precepts|strong="H6490"\w* \w are|strong="H3027"\w* sure. +\q1 +\v 8 \w They|strong="H6213"\w* \w are|strong="H6213"\w* \w established|strong="H5564"\w* \w forever|strong="H5769"\w* \w and|strong="H5769"\w* \w ever|strong="H5769"\w*. +\q2 \w They|strong="H6213"\w* \w are|strong="H6213"\w* \w done|strong="H6213"\w* \w in|strong="H6213"\w* truth \w and|strong="H5769"\w* \w uprightness|strong="H3477"\w*. +\q1 +\v 9 \w He|strong="H7971"\w* \w has|strong="H5971"\w* \w sent|strong="H7971"\w* \w redemption|strong="H6304"\w* \w to|strong="H7971"\w* \w his|strong="H7971"\w* \w people|strong="H5971"\w*. +\q2 \w He|strong="H7971"\w* \w has|strong="H5971"\w* \w ordained|strong="H6680"\w* \w his|strong="H7971"\w* \w covenant|strong="H1285"\w* \w forever|strong="H5769"\w*. +\q2 \w His|strong="H7971"\w* \w name|strong="H8034"\w* \w is|strong="H8034"\w* \w holy|strong="H6918"\w* \w and|strong="H7971"\w* \w awesome|strong="H3372"\w*! +\q1 +\v 10 \w The|strong="H3605"\w* \w fear|strong="H3374"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w the|strong="H3605"\w* \w beginning|strong="H7225"\w* \w of|strong="H3068"\w* \w wisdom|strong="H2451"\w*. +\q2 \w All|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w do|strong="H6213"\w* \w his|strong="H3605"\w* \w work|strong="H6213"\w* \w have|strong="H3068"\w* \w a|strong="H3068"\w* \w good|strong="H2896"\w* \w understanding|strong="H7922"\w*. +\q1 \w His|strong="H3605"\w* \w praise|strong="H8416"\w* \w endures|strong="H5975"\w* \w forever|strong="H5703"\w*! +\c 112 +\q1 +\v 1 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*!\f + \fr 112:1 \ft Psalm 112 is an acrostic poem, with each verse after the initial “Praise Yah!” starting with a letter of the alphabet (ordered from Alef to Tav).\f* +\q2 Blessed \w is|strong="H3068"\w* \w the|strong="H3068"\w* man \w who|strong="H3068"\w* \w fears|strong="H3372"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w who|strong="H3068"\w* \w delights|strong="H2654"\w* \w greatly|strong="H3966"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w commandments|strong="H4687"\w*. +\q1 +\v 2 \w His|strong="H1288"\w* \w offspring|strong="H2233"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w mighty|strong="H1368"\w* \w in|strong="H3477"\w* \w the|strong="H1288"\w* land. +\q2 \w The|strong="H1288"\w* \w generation|strong="H1755"\w* \w of|strong="H2233"\w* \w the|strong="H1288"\w* \w upright|strong="H3477"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w blessed|strong="H1288"\w*. +\q1 +\v 3 \w Wealth|strong="H1952"\w* \w and|strong="H1004"\w* \w riches|strong="H6239"\w* \w are|strong="H1004"\w* \w in|strong="H1004"\w* \w his|strong="H5975"\w* \w house|strong="H1004"\w*. +\q2 \w His|strong="H5975"\w* \w righteousness|strong="H6666"\w* \w endures|strong="H5975"\w* \w forever|strong="H5703"\w*. +\q1 +\v 4 Light dawns \w in|strong="H3477"\w* \w the|strong="H3477"\w* \w darkness|strong="H2822"\w* \w for|strong="H6662"\w* \w the|strong="H3477"\w* \w upright|strong="H3477"\w*, +\q2 \w gracious|strong="H2587"\w*, \w merciful|strong="H7349"\w*, \w and|strong="H2587"\w* \w righteous|strong="H6662"\w*. +\q1 +\v 5 \w It|strong="H4941"\w* \w is|strong="H1697"\w* \w well|strong="H2896"\w* \w with|strong="H1697"\w* \w the|strong="H1697"\w* \w man|strong="H2896"\w* \w who|strong="H2896"\w* deals \w graciously|strong="H2603"\w* \w and|strong="H4941"\w* \w lends|strong="H3867"\w*. +\q2 \w He|strong="H1697"\w* \w will|strong="H1697"\w* \w maintain|strong="H3557"\w* \w his|strong="H3557"\w* \w cause|strong="H4941"\w* \w in|strong="H1697"\w* \w judgment|strong="H4941"\w*. +\q1 +\v 6 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H1961"\w* \w never|strong="H3808"\w* \w be|strong="H1961"\w* \w shaken|strong="H4131"\w*. +\q2 \w The|strong="H3588"\w* \w righteous|strong="H6662"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w remembered|strong="H2143"\w* \w forever|strong="H5769"\w*. +\q1 +\v 7 \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w afraid|strong="H3372"\w* \w of|strong="H3068"\w* \w evil|strong="H7451"\w* \w news|strong="H8052"\w*. +\q2 \w His|strong="H3068"\w* \w heart|strong="H3820"\w* \w is|strong="H3068"\w* \w steadfast|strong="H3559"\w*, trusting \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 8 \w His|strong="H7200"\w* \w heart|strong="H3820"\w* \w is|strong="H3820"\w* \w established|strong="H5564"\w*. +\q2 \w He|strong="H5704"\w* \w will|strong="H3820"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w afraid|strong="H3372"\w* \w in|strong="H3808"\w* \w the|strong="H7200"\w* end \w when|strong="H7200"\w* \w he|strong="H5704"\w* \w sees|strong="H7200"\w* \w his|strong="H7200"\w* \w adversaries|strong="H6862"\w*. +\q1 +\v 9 \w He|strong="H5414"\w* \w has|strong="H3519"\w* \w dispersed|strong="H6340"\w*, \w he|strong="H5414"\w* \w has|strong="H3519"\w* \w given|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* poor. +\q2 \w His|strong="H5414"\w* \w righteousness|strong="H6666"\w* \w endures|strong="H5975"\w* \w forever|strong="H5703"\w*. +\q2 \w His|strong="H5414"\w* \w horn|strong="H7161"\w* \w will|strong="H5414"\w* \w be|strong="H5414"\w* \w exalted|strong="H7311"\w* \w with|strong="H7161"\w* \w honor|strong="H3519"\w*. +\q1 +\v 10 \w The|strong="H7200"\w* \w wicked|strong="H7563"\w* \w will|strong="H7563"\w* \w see|strong="H7200"\w* \w it|strong="H7200"\w*, \w and|strong="H7200"\w* \w be|strong="H7563"\w* \w grieved|strong="H3707"\w*. +\q2 \w He|strong="H8378"\w* \w shall|strong="H7563"\w* \w gnash|strong="H2786"\w* \w with|strong="H3707"\w* \w his|strong="H7200"\w* \w teeth|strong="H8127"\w*, \w and|strong="H7200"\w* \w melt|strong="H4549"\w* \w away|strong="H4549"\w*. +\q2 \w The|strong="H7200"\w* \w desire|strong="H8378"\w* \w of|strong="H7200"\w* \w the|strong="H7200"\w* \w wicked|strong="H7563"\w* \w will|strong="H7563"\w* perish. +\c 113 +\q1 +\v 1 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*! +\q2 \w Praise|strong="H1984"\w*, you \w servants|strong="H5650"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w praise|strong="H1984"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*. +\q1 +\v 2 \w Blessed|strong="H1288"\w* \w be|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*, +\q2 \w from|strong="H5704"\w* \w this|strong="H6258"\w* \w time|strong="H6258"\w* forward \w and|strong="H3068"\w* \w forever|strong="H5769"\w* \w more|strong="H5704"\w*. +\q1 +\v 3 \w From|strong="H5704"\w* \w the|strong="H3068"\w* \w rising|strong="H4217"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w sun|strong="H8121"\w* \w to|strong="H5704"\w* \w its|strong="H1984"\w* \w going|strong="H8121"\w* \w down|strong="H3996"\w*, +\q2 \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w* \w is|strong="H3068"\w* \w to|strong="H5704"\w* \w be|strong="H3068"\w* \w praised|strong="H1984"\w*. +\q1 +\v 4 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w high|strong="H7311"\w* \w above|strong="H5921"\w* \w all|strong="H3605"\w* \w nations|strong="H1471"\w*, +\q2 \w his|strong="H3605"\w* \w glory|strong="H3519"\w* \w above|strong="H5921"\w* \w the|strong="H3605"\w* \w heavens|strong="H8064"\w*. +\q1 +\v 5 \w Who|strong="H4310"\w* \w is|strong="H3068"\w* \w like|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w our|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 \w who|strong="H4310"\w* \w has|strong="H3068"\w* \w his|strong="H3068"\w* \w seat|strong="H3427"\w* \w on|strong="H3427"\w* \w high|strong="H1361"\w*, +\q2 +\v 6 who stoops \w down|strong="H8213"\w* \w to|strong="H7200"\w* \w see|strong="H7200"\w* \w in|strong="H8064"\w* \w heaven|strong="H8064"\w* \w and|strong="H8064"\w* \w in|strong="H8064"\w* \w the|strong="H7200"\w* \w earth|strong="H8064"\w*? +\q1 +\v 7 He \w raises|strong="H6965"\w* \w up|strong="H6965"\w* \w the|strong="H6965"\w* \w poor|strong="H1800"\w* \w out|strong="H6965"\w* \w of|strong="H6083"\w* \w the|strong="H6965"\w* \w dust|strong="H6083"\w*, +\q2 \w and|strong="H6965"\w* \w lifts|strong="H7311"\w* \w up|strong="H6965"\w* \w the|strong="H6965"\w* \w needy|strong="H1800"\w* \w from|strong="H6965"\w* \w the|strong="H6965"\w* ash \w heap|strong="H6083"\w*, +\q1 +\v 8 \w that|strong="H5971"\w* \w he|strong="H5971"\w* \w may|strong="H5971"\w* \w set|strong="H3427"\w* \w him|strong="H5973"\w* \w with|strong="H5973"\w* \w princes|strong="H5081"\w*, +\q2 even \w with|strong="H5973"\w* \w the|strong="H5973"\w* \w princes|strong="H5081"\w* \w of|strong="H3427"\w* \w his|strong="H5973"\w* \w people|strong="H5971"\w*. +\q1 +\v 9 \w He|strong="H1004"\w* \w settles|strong="H3427"\w* \w the|strong="H1984"\w* \w barren|strong="H6135"\w* \w woman|strong="H6135"\w* \w in|strong="H3427"\w* \w her|strong="H1984"\w* \w home|strong="H1004"\w* +\q2 \w as|strong="H3427"\w* \w a|strong="H3068"\w* \w joyful|strong="H8056"\w* mother \w of|strong="H1121"\w* \w children|strong="H1121"\w*. +\q1 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*! +\c 114 +\q1 +\v 1 \w When|strong="H3318"\w* \w Israel|strong="H3478"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*, +\q2 \w the|strong="H3318"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w* \w from|strong="H3318"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w of|strong="H1004"\w* foreign \w language|strong="H3937"\w*, +\q1 +\v 2 \w Judah|strong="H3063"\w* \w became|strong="H1961"\w* \w his|strong="H3478"\w* \w sanctuary|strong="H6944"\w*, +\q2 \w Israel|strong="H3478"\w* \w his|strong="H3478"\w* \w dominion|strong="H4475"\w*. +\q1 +\v 3 \w The|strong="H7200"\w* \w sea|strong="H3220"\w* \w saw|strong="H7200"\w* \w it|strong="H7200"\w*, \w and|strong="H7200"\w* \w fled|strong="H5127"\w*. +\q2 \w The|strong="H7200"\w* \w Jordan|strong="H3383"\w* \w was|strong="H3220"\w* \w driven|strong="H5437"\w* \w back|strong="H5437"\w*. +\q1 +\v 4 \w The|strong="H1121"\w* \w mountains|strong="H2022"\w* \w skipped|strong="H7540"\w* \w like|strong="H7540"\w* rams, +\q2 \w the|strong="H1121"\w* little \w hills|strong="H1389"\w* \w like|strong="H7540"\w* \w lambs|strong="H1121"\w*. +\q1 +\v 5 \w What|strong="H4100"\w* \w was|strong="H3220"\w* \w it|strong="H3588"\w*, \w you|strong="H3588"\w* \w sea|strong="H3220"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w fled|strong="H5127"\w*? +\q2 \w You|strong="H3588"\w* \w Jordan|strong="H3383"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w turned|strong="H5437"\w* \w back|strong="H5437"\w*? +\q1 +\v 6 \w You|strong="H2022"\w* \w mountains|strong="H2022"\w*, \w that|strong="H1121"\w* \w you|strong="H2022"\w* \w skipped|strong="H7540"\w* \w like|strong="H7540"\w* rams? +\q2 \w You|strong="H2022"\w* little \w hills|strong="H1389"\w*, \w like|strong="H7540"\w* \w lambs|strong="H1121"\w*? +\q1 +\v 7 \w Tremble|strong="H2342"\w*, \w you|strong="H6440"\w* earth, \w at|strong="H6440"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* Lord, +\q2 \w at|strong="H6440"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* God \w of|strong="H6440"\w* \w Jacob|strong="H3290"\w*, +\q1 +\v 8 \w who|strong="H6697"\w* \w turned|strong="H2015"\w* \w the|strong="H2015"\w* \w rock|strong="H6697"\w* \w into|strong="H2015"\w* \w a|strong="H3068"\w* \w pool|strong="H4325"\w* \w of|strong="H4325"\w* \w water|strong="H4325"\w*, +\q2 \w the|strong="H2015"\w* \w flint|strong="H2496"\w* \w into|strong="H2015"\w* \w a|strong="H3068"\w* \w spring|strong="H4599"\w* \w of|strong="H4325"\w* \w waters|strong="H4325"\w*. +\c 115 +\q1 +\v 1 \w Not|strong="H3808"\w* \w to|strong="H3068"\w* \w us|strong="H5414"\w*, \w Yahweh|strong="H3068"\w*, \w not|strong="H3808"\w* \w to|strong="H3068"\w* \w us|strong="H5414"\w*, +\q2 \w but|strong="H3588"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w* \w give|strong="H5414"\w* \w glory|strong="H3519"\w*, +\q2 \w for|strong="H3588"\w* \w your|strong="H3068"\w* loving \w kindness|strong="H2617"\w*, \w and|strong="H3068"\w* \w for|strong="H3588"\w* \w your|strong="H3068"\w* \w truth|strong="H3808"\w*’s \w sake|strong="H5921"\w*. +\q1 +\v 2 \w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w the|strong="H4100"\w* \w nations|strong="H1471"\w* say, +\q2 “\w Where|strong="H4100"\w* \w is|strong="H4100"\w* \w their|strong="H1471"\w* God, \w now|strong="H4994"\w*?” +\q1 +\v 3 \w But|strong="H3605"\w* \w our|strong="H3605"\w* \w God|strong="H8064"\w* \w is|strong="H3605"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w heavens|strong="H8064"\w*. +\q2 \w He|strong="H6213"\w* \w does|strong="H6213"\w* \w whatever|strong="H3605"\w* \w he|strong="H6213"\w* \w pleases|strong="H2654"\w*. +\q1 +\v 4 \w Their|strong="H3027"\w* \w idols|strong="H6091"\w* \w are|strong="H3027"\w* \w silver|strong="H3701"\w* \w and|strong="H3701"\w* \w gold|strong="H2091"\w*, +\q2 \w the|strong="H3027"\w* \w work|strong="H4639"\w* \w of|strong="H3027"\w* men’s \w hands|strong="H3027"\w*. +\q1 +\v 5 \w They|strong="H1992"\w* \w have|strong="H5869"\w* \w mouths|strong="H6310"\w*, \w but|strong="H3808"\w* \w they|strong="H1992"\w* don’t \w speak|strong="H1696"\w*. +\q2 \w They|strong="H1992"\w* \w have|strong="H5869"\w* \w eyes|strong="H5869"\w*, \w but|strong="H3808"\w* \w they|strong="H1992"\w* don’t \w see|strong="H7200"\w*. +\q1 +\v 6 \w They|strong="H3808"\w* \w have|strong="H3808"\w* ears, \w but|strong="H3808"\w* \w they|strong="H3808"\w* don’t \w hear|strong="H8085"\w*. +\q2 \w They|strong="H3808"\w* \w have|strong="H3808"\w* noses, \w but|strong="H3808"\w* \w they|strong="H3808"\w* don’t \w smell|strong="H7306"\w*. +\q1 +\v 7 \w They|strong="H3808"\w* \w have|strong="H3027"\w* \w hands|strong="H3027"\w*, \w but|strong="H3808"\w* \w they|strong="H3808"\w* don’t \w feel|strong="H4184"\w*. +\q2 \w They|strong="H3808"\w* \w have|strong="H3027"\w* \w feet|strong="H7272"\w*, \w but|strong="H3808"\w* \w they|strong="H3808"\w* don’t \w walk|strong="H1980"\w*, +\q2 \w neither|strong="H3808"\w* \w do|strong="H3027"\w* \w they|strong="H3808"\w* \w speak|strong="H1897"\w* \w through|strong="H3027"\w* \w their|strong="H3808"\w* \w throat|strong="H1627"\w*. +\q1 +\v 8 \w Those|strong="H3605"\w* \w who|strong="H3605"\w* \w make|strong="H6213"\w* \w them|strong="H6213"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H3644"\w* \w them|strong="H6213"\w*; +\q2 yes, \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* trusts \w in|strong="H6213"\w* \w them|strong="H6213"\w*. +\q1 +\v 9 \w Israel|strong="H3478"\w*, trust \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*! +\q2 \w He|strong="H1931"\w* \w is|strong="H3068"\w* \w their|strong="H3068"\w* \w help|strong="H5828"\w* \w and|strong="H3478"\w* \w their|strong="H3068"\w* \w shield|strong="H4043"\w*. +\q1 +\v 10 \w House|strong="H1004"\w* \w of|strong="H1004"\w* Aaron, trust \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*! +\q2 \w He|strong="H1931"\w* \w is|strong="H3068"\w* \w their|strong="H3068"\w* \w help|strong="H5828"\w* \w and|strong="H3068"\w* \w their|strong="H3068"\w* \w shield|strong="H4043"\w*. +\q1 +\v 11 You \w who|strong="H1931"\w* \w fear|strong="H3373"\w* \w Yahweh|strong="H3068"\w*, trust \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*! +\q2 \w He|strong="H1931"\w* \w is|strong="H3068"\w* \w their|strong="H3068"\w* \w help|strong="H5828"\w* \w and|strong="H3068"\w* \w their|strong="H3068"\w* \w shield|strong="H4043"\w*. +\q1 +\v 12 \w Yahweh|strong="H3068"\w* \w remembers|strong="H2142"\w* \w us|strong="H2142"\w*. \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w bless|strong="H1288"\w* \w us|strong="H2142"\w*. +\q2 \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w bless|strong="H1288"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. +\q2 \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w bless|strong="H1288"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* Aaron. +\q1 +\v 13 \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w bless|strong="H1288"\w* \w those|strong="H5973"\w* \w who|strong="H3068"\w* \w fear|strong="H3373"\w* \w Yahweh|strong="H3068"\w*, +\q2 both \w small|strong="H6996"\w* \w and|strong="H3068"\w* \w great|strong="H1419"\w*. +\q1 +\v 14 \w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w increase|strong="H3254"\w* \w you|strong="H5921"\w* \w more|strong="H3254"\w* \w and|strong="H1121"\w* \w more|strong="H3254"\w*, +\q2 \w you|strong="H5921"\w* \w and|strong="H1121"\w* \w your|strong="H3068"\w* \w children|strong="H1121"\w*. +\q1 +\v 15 \w Blessed|strong="H1288"\w* \w are|strong="H8064"\w* \w you|strong="H6213"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w who|strong="H3068"\w* \w made|strong="H6213"\w* \w heaven|strong="H8064"\w* \w and|strong="H3068"\w* \w earth|strong="H8064"\w*. +\q1 +\v 16 \w The|strong="H5414"\w* \w heavens|strong="H8064"\w* \w are|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w heavens|strong="H8064"\w*, +\q2 \w but|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w the|strong="H5414"\w* \w earth|strong="H8064"\w* \w to|strong="H3068"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*. +\q1 +\v 17 \w The|strong="H3605"\w* \w dead|strong="H4191"\w* don’t \w praise|strong="H1984"\w* \w Yah|strong="H3068"\w*, +\q2 \w nor|strong="H3808"\w* \w any|strong="H3605"\w* \w who|strong="H3605"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w silence|strong="H1745"\w*, +\q1 +\v 18 \w but|strong="H6258"\w* \w we|strong="H3068"\w* \w will|strong="H5704"\w* \w bless|strong="H1288"\w* \w Yah|strong="H3068"\w*, +\q2 \w from|strong="H5704"\w* \w this|strong="H6258"\w* \w time|strong="H6258"\w* forward \w and|strong="H5769"\w* \w forever|strong="H5769"\w* \w more|strong="H5704"\w*. +\q1 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*! +\c 116 +\q1 +\v 1 \w I|strong="H3588"\w* love \w Yahweh|strong="H3068"\w*, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w listens|strong="H8085"\w* \w to|strong="H3068"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*, +\q2 \w and|strong="H3068"\w* \w my|strong="H8085"\w* \w cries|strong="H6963"\w* \w for|strong="H3588"\w* \w mercy|strong="H3068"\w*. +\q1 +\v 2 \w Because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3117"\w* \w turned|strong="H5186"\w* \w his|strong="H7121"\w* ear \w to|strong="H3117"\w* \w me|strong="H7121"\w*, +\q2 \w therefore|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3117"\w* \w call|strong="H7121"\w* \w on|strong="H3117"\w* \w him|strong="H7121"\w* \w as|strong="H3117"\w* \w long|strong="H3117"\w* \w as|strong="H3117"\w* \w I|strong="H3588"\w* \w live|strong="H3117"\w*. +\q1 +\v 3 \w The|strong="H4672"\w* \w cords|strong="H2256"\w* \w of|strong="H4194"\w* \w death|strong="H4194"\w* surrounded \w me|strong="H4672"\w*, +\q2 \w the|strong="H4672"\w* \w pains|strong="H2256"\w* \w of|strong="H4194"\w* \w Sheol|strong="H7585"\w*\f + \fr 116:3 \ft Sheol is the place of the dead.\f* got \w a|strong="H3068"\w* \w hold|strong="H4672"\w* \w of|strong="H4194"\w* \w me|strong="H4672"\w*. +\q2 \w I|strong="H6869"\w* \w found|strong="H4672"\w* \w trouble|strong="H6869"\w* \w and|strong="H6869"\w* \w sorrow|strong="H3015"\w*. +\q1 +\v 4 \w Then|strong="H7121"\w* \w I|strong="H5315"\w* \w called|strong="H7121"\w* \w on|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*: +\q2 “\w Yahweh|strong="H3068"\w*, \w I|strong="H5315"\w* beg \w you|strong="H5315"\w*, \w deliver|strong="H4422"\w* \w my|strong="H3068"\w* \w soul|strong="H5315"\w*.” +\q1 +\v 5 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w gracious|strong="H2587"\w* \w and|strong="H3068"\w* \w righteous|strong="H6662"\w*. +\q2 Yes, \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w is|strong="H3068"\w* \w merciful|strong="H2587"\w*. +\q1 +\v 6 \w Yahweh|strong="H3068"\w* \w preserves|strong="H8104"\w* \w the|strong="H8104"\w* \w simple|strong="H6612"\w*. +\q2 \w I|strong="H3068"\w* \w was|strong="H3068"\w* \w brought|strong="H1809"\w* \w low|strong="H1809"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w saved|strong="H3467"\w* \w me|strong="H8104"\w*. +\q1 +\v 7 \w Return|strong="H7725"\w* \w to|strong="H7725"\w* \w your|strong="H3068"\w* \w rest|strong="H4496"\w*, \w my|strong="H3068"\w* \w soul|strong="H5315"\w*, +\q2 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w dealt|strong="H1580"\w* \w bountifully|strong="H1580"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w*. +\q1 +\v 8 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H5869"\w* \w delivered|strong="H2502"\w* \w my|strong="H3588"\w* \w soul|strong="H5315"\w* \w from|strong="H4480"\w* \w death|strong="H4194"\w*, +\q2 \w my|strong="H3588"\w* \w eyes|strong="H5869"\w* \w from|strong="H4480"\w* \w tears|strong="H1832"\w*, +\q2 \w and|strong="H5869"\w* \w my|strong="H3588"\w* \w feet|strong="H7272"\w* \w from|strong="H4480"\w* \w falling|strong="H1762"\w*. +\q1 +\v 9 \w I|strong="H1980"\w* \w will|strong="H3068"\w* \w walk|strong="H1980"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H1980"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w living|strong="H2416"\w*. +\q1 +\v 10 \w I|strong="H3588"\w* believed, \w therefore|strong="H3588"\w* \w I|strong="H3588"\w* \w said|strong="H1696"\w*, +\q2 “\w I|strong="H3588"\w* \w was|strong="H3966"\w* \w greatly|strong="H3966"\w* \w afflicted|strong="H6031"\w*.” +\q1 +\v 11 \w I|strong="H3605"\w* said \w in|strong="H3605"\w* \w my|strong="H3605"\w* \w haste|strong="H2648"\w*, +\q2 “\w All|strong="H3605"\w* people are \w liars|strong="H3576"\w*.” +\q1 +\v 12 \w What|strong="H4100"\w* \w will|strong="H3068"\w* \w I|strong="H5921"\w* \w give|strong="H7725"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w benefits|strong="H8408"\w* \w toward|strong="H5921"\w* \w me|strong="H7725"\w*? +\q2 +\v 13 \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w take|strong="H5375"\w* \w the|strong="H5375"\w* \w cup|strong="H3563"\w* \w of|strong="H3068"\w* \w salvation|strong="H3444"\w*, \w and|strong="H3068"\w* \w call|strong="H7121"\w* \w on|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*. +\q1 +\v 14 \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w pay|strong="H7999"\w* \w my|strong="H3605"\w* \w vows|strong="H5088"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 yes, \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w presence|strong="H5048"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*. +\q1 +\v 15 \w Precious|strong="H3368"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w death|strong="H4194"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w saints|strong="H2623"\w*. +\q1 +\v 16 \w Yahweh|strong="H3068"\w*, \w truly|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w*. +\q2 \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w*, \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* girl. +\q2 \w You|strong="H3588"\w* \w have|strong="H3068"\w* freed \w me|strong="H5650"\w* \w from|strong="H1121"\w* \w my|strong="H3068"\w* \w chains|strong="H4147"\w*. +\q1 +\v 17 \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w offer|strong="H2076"\w* \w to|strong="H3068"\w* \w you|strong="H7121"\w* \w the|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H3068"\w* \w thanksgiving|strong="H8426"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w call|strong="H7121"\w* \w on|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*. +\q1 +\v 18 \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w pay|strong="H7999"\w* \w my|strong="H3605"\w* \w vows|strong="H5088"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 yes, \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w presence|strong="H5048"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*, +\q1 +\v 19 \w in|strong="H3068"\w* \w the|strong="H8432"\w* \w courts|strong="H2691"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, +\q2 \w in|strong="H3068"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H1004"\w* \w you|strong="H8432"\w*, \w Jerusalem|strong="H3389"\w*. +\q1 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*! +\c 117 +\q1 +\v 1 \w Praise|strong="H1984"\w* \w Yahweh|strong="H3068"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* \w nations|strong="H1471"\w*! +\q2 \w Extol|strong="H7623"\w* \w him|strong="H3605"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* peoples! +\q1 +\v 2 \w For|strong="H3588"\w* \w his|strong="H3068"\w* loving \w kindness|strong="H2617"\w* \w is|strong="H3068"\w* \w great|strong="H1396"\w* \w toward|strong="H5921"\w* \w us|strong="H5921"\w*. +\q2 \w Yahweh|strong="H3068"\w*’s \w faithfulness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*. +\q1 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*! +\c 118 +\q1 +\v 1 \w Give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3068"\w* \w loving|strong="H2896"\w* \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*. +\q1 +\v 2 \w Let|strong="H4994"\w* \w Israel|strong="H3478"\w* \w now|strong="H4994"\w* \w say|strong="H3478"\w* +\q2 \w that|strong="H3588"\w* \w his|strong="H3478"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*. +\q1 +\v 3 \w Let|strong="H4994"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* Aaron \w now|strong="H4994"\w* say +\q2 \w that|strong="H3588"\w* \w his|strong="H3588"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*. +\q1 +\v 4 \w Now|strong="H4994"\w* \w let|strong="H4994"\w* \w those|strong="H3588"\w* \w who|strong="H3068"\w* \w fear|strong="H3373"\w* \w Yahweh|strong="H3068"\w* say +\q2 \w that|strong="H3588"\w* \w his|strong="H3068"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*. +\q1 +\v 5 \w Out|strong="H4480"\w* \w of|strong="H4480"\w* \w my|strong="H4480"\w* \w distress|strong="H4712"\w*, \w I|strong="H4480"\w* \w called|strong="H7121"\w* \w on|strong="H7121"\w* \w Yah|strong="H3068"\w*. +\q2 \w Yah|strong="H3068"\w* \w answered|strong="H6030"\w* \w me|strong="H7121"\w* \w with|strong="H4480"\w* freedom. +\q1 +\v 6 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w on|strong="H3068"\w* \w my|strong="H3068"\w* side. \w I|strong="H3808"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w afraid|strong="H3372"\w*. +\q2 \w What|strong="H4100"\w* \w can|strong="H4100"\w* man \w do|strong="H6213"\w* \w to|strong="H3068"\w* \w me|strong="H6213"\w*? +\q1 +\v 7 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w on|strong="H7200"\w* \w my|strong="H3068"\w* side \w among|strong="H7200"\w* \w those|strong="H8130"\w* \w who|strong="H3068"\w* \w help|strong="H5826"\w* \w me|strong="H7200"\w*. +\q2 \w Therefore|strong="H3068"\w* \w I|strong="H7200"\w* \w will|strong="H3068"\w* \w look|strong="H7200"\w* \w in|strong="H3068"\w* triumph \w at|strong="H3068"\w* \w those|strong="H8130"\w* \w who|strong="H3068"\w* \w hate|strong="H8130"\w* \w me|strong="H7200"\w*. +\q1 +\v 8 \w It|strong="H3068"\w* \w is|strong="H3068"\w* \w better|strong="H2896"\w* \w to|strong="H3068"\w* \w take|strong="H2620"\w* \w refuge|strong="H2620"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w than|strong="H2896"\w* \w to|strong="H3068"\w* \w put|strong="H3068"\w* confidence \w in|strong="H3068"\w* \w man|strong="H2896"\w*. +\q1 +\v 9 \w It|strong="H3068"\w* \w is|strong="H3068"\w* \w better|strong="H2896"\w* \w to|strong="H3068"\w* \w take|strong="H2620"\w* \w refuge|strong="H2620"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w than|strong="H2896"\w* \w to|strong="H3068"\w* \w put|strong="H3068"\w* confidence \w in|strong="H3068"\w* \w princes|strong="H5081"\w*. +\q1 +\v 10 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w surrounded|strong="H5437"\w* \w me|strong="H5437"\w*, +\q2 \w but|strong="H3588"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w* \w I|strong="H3588"\w* \w cut|strong="H4135"\w* \w them|strong="H4135"\w* \w off|strong="H4135"\w*. +\q1 +\v 11 \w They|strong="H3588"\w* \w surrounded|strong="H5437"\w* \w me|strong="H5437"\w*, \w yes|strong="H3588"\w*, \w they|strong="H3588"\w* \w surrounded|strong="H5437"\w* \w me|strong="H5437"\w*. +\q2 \w In|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w* \w I|strong="H3588"\w* \w indeed|strong="H3588"\w* \w cut|strong="H4135"\w* \w them|strong="H4135"\w* \w off|strong="H4135"\w*. +\q1 +\v 12 \w They|strong="H3588"\w* \w surrounded|strong="H5437"\w* \w me|strong="H5437"\w* \w like|strong="H5437"\w* \w bees|strong="H1682"\w*. +\q2 \w They|strong="H3588"\w* \w are|strong="H3068"\w* \w quenched|strong="H1846"\w* \w like|strong="H5437"\w* \w the|strong="H3588"\w* burning \w thorns|strong="H6975"\w*. +\q2 \w In|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w* \w I|strong="H3588"\w* \w cut|strong="H4135"\w* \w them|strong="H4135"\w* \w off|strong="H4135"\w*. +\q1 +\v 13 You \w pushed|strong="H1760"\w* \w me|strong="H1760"\w* back hard, \w to|strong="H3068"\w* make \w me|strong="H1760"\w* \w fall|strong="H5307"\w*, +\q2 \w but|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w helped|strong="H5826"\w* \w me|strong="H1760"\w*. +\q1 +\v 14 \w Yah|strong="H3068"\w* \w is|strong="H1961"\w* \w my|strong="H1961"\w* \w strength|strong="H5797"\w* \w and|strong="H5797"\w* \w song|strong="H2176"\w*. +\q2 \w He|strong="H3444"\w* \w has|strong="H1961"\w* \w become|strong="H1961"\w* \w my|strong="H1961"\w* \w salvation|strong="H3444"\w*. +\q1 +\v 15 \w The|strong="H6213"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w rejoicing|strong="H7440"\w* \w and|strong="H3068"\w* \w salvation|strong="H3444"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H6213"\w* tents \w of|strong="H3068"\w* \w the|strong="H6213"\w* \w righteous|strong="H6662"\w*. +\q2 “\w The|strong="H6213"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w does|strong="H6213"\w* \w valiantly|strong="H2428"\w*. +\q1 +\v 16 \w The|strong="H6213"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w exalted|strong="H7426"\w*! +\q2 \w The|strong="H6213"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w does|strong="H6213"\w* \w valiantly|strong="H2428"\w*!” +\q1 +\v 17 \w I|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*, \w but|strong="H3588"\w* \w live|strong="H2421"\w*, +\q2 \w and|strong="H4191"\w* \w declare|strong="H5608"\w* \w Yah|strong="H3068"\w*’s \w works|strong="H4639"\w*. +\q1 +\v 18 \w Yah|strong="H3068"\w* \w has|strong="H3050"\w* \w punished|strong="H3256"\w* \w me|strong="H5414"\w* \w severely|strong="H3256"\w*, +\q2 \w but|strong="H3808"\w* \w he|strong="H5414"\w* \w has|strong="H3050"\w* \w not|strong="H3808"\w* \w given|strong="H5414"\w* \w me|strong="H5414"\w* \w over|strong="H5414"\w* \w to|strong="H5414"\w* \w death|strong="H4194"\w*. +\q1 +\v 19 \w Open|strong="H6605"\w* \w to|strong="H8179"\w* me \w the|strong="H3050"\w* \w gates|strong="H8179"\w* \w of|strong="H8179"\w* \w righteousness|strong="H6664"\w*. +\q2 I \w will|strong="H6664"\w* enter into \w them|strong="H6605"\w*. +\q2 I \w will|strong="H6664"\w* \w give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H8179"\w* \w Yah|strong="H3068"\w*. +\q1 +\v 20 \w This|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w gate|strong="H8179"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*; +\q2 \w the|strong="H3068"\w* \w righteous|strong="H6662"\w* \w will|strong="H3068"\w* enter \w into|strong="H2088"\w* \w it|strong="H3068"\w*. +\q1 +\v 21 \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H1961"\w* \w you|strong="H3588"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w answered|strong="H6030"\w* \w me|strong="H6030"\w*, +\q2 \w and|strong="H6030"\w* \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w my|strong="H1961"\w* \w salvation|strong="H3444"\w*. +\q1 +\v 22 \w The|strong="H1129"\w* stone \w which|strong="H3988"\w* \w the|strong="H1129"\w* \w builders|strong="H1129"\w* \w rejected|strong="H3988"\w* +\q2 \w has|strong="H1961"\w* \w become|strong="H1961"\w* \w the|strong="H1129"\w* \w cornerstone|strong="H6438"\w*.\f + \fr 118:22 \ft Literally, \fqa head of the corner\f* +\q1 +\v 23 \w This|strong="H2063"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s doing. +\q2 \w It|strong="H1931"\w* \w is|strong="H3068"\w* \w marvelous|strong="H6381"\w* \w in|strong="H3068"\w* \w our|strong="H3068"\w* \w eyes|strong="H5869"\w*. +\q1 +\v 24 \w This|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H6213"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w made|strong="H6213"\w*. +\q2 \w We|strong="H3117"\w* \w will|strong="H3068"\w* \w rejoice|strong="H8055"\w* \w and|strong="H3068"\w* \w be|strong="H3068"\w* \w glad|strong="H8055"\w* \w in|strong="H3068"\w* \w it|strong="H6213"\w*! +\q1 +\v 25 \w Save|strong="H3467"\w* \w us|strong="H4994"\w* \w now|strong="H4994"\w*, \w we|strong="H3068"\w* \w beg|strong="H4994"\w* \w you|strong="H3467"\w*, \w Yahweh|strong="H3068"\w*! +\q2 \w Yahweh|strong="H3068"\w*, \w we|strong="H3068"\w* \w beg|strong="H4994"\w* \w you|strong="H3467"\w*, \w send|strong="H6743"\w* \w prosperity|strong="H6743"\w* \w now|strong="H4994"\w*. +\q1 +\v 26 \w Blessed|strong="H1288"\w* \w is|strong="H3068"\w* \w he|strong="H3068"\w* \w who|strong="H3068"\w* comes \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*! +\q2 \w We|strong="H8034"\w* \w have|strong="H3068"\w* \w blessed|strong="H1288"\w* \w you|strong="H1288"\w* out \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\q1 +\v 27 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w he|strong="H5704"\w* \w has|strong="H3068"\w* given us light. +\q2 Bind \w the|strong="H3068"\w* \w sacrifice|strong="H2282"\w* \w with|strong="H3068"\w* \w cords|strong="H5688"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3068"\w* \w horns|strong="H7161"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w altar|strong="H4196"\w*. +\q1 +\v 28 \w You|strong="H3034"\w* are \w my|strong="H7311"\w* God, \w and|strong="H3034"\w* \w I|strong="H7311"\w* will \w give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3034"\w* \w you|strong="H3034"\w*. +\q2 \w You|strong="H3034"\w* are \w my|strong="H7311"\w* God, \w I|strong="H7311"\w* will \w exalt|strong="H7311"\w* \w you|strong="H3034"\w*. +\q1 +\v 29 Oh \w give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3068"\w* \w loving|strong="H2896"\w* \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*. +\c 119 +\d ALEPH +\q1 +\v 1 Blessed \w are|strong="H3068"\w* \w those|strong="H1980"\w* whose \w ways|strong="H1870"\w* \w are|strong="H3068"\w* \w blameless|strong="H8549"\w*, +\q2 \w who|strong="H3068"\w* \w walk|strong="H1980"\w* according \w to|strong="H1980"\w* \w Yahweh|strong="H3068"\w*’s \w law|strong="H8451"\w*. +\q1 +\v 2 Blessed \w are|strong="H5713"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w keep|strong="H5341"\w* \w his|strong="H3605"\w* statutes, +\q2 \w who|strong="H3605"\w* \w seek|strong="H1875"\w* \w him|strong="H3605"\w* \w with|strong="H3820"\w* \w their|strong="H3605"\w* \w whole|strong="H3605"\w* \w heart|strong="H3820"\w*. +\q1 +\v 3 Yes, \w they|strong="H3808"\w* \w do|strong="H6466"\w* \w nothing|strong="H3808"\w* \w wrong|strong="H5766"\w*. +\q2 \w They|strong="H3808"\w* \w walk|strong="H1980"\w* \w in|strong="H1980"\w* \w his|strong="H3808"\w* \w ways|strong="H1870"\w*. +\q1 +\v 4 \w You|strong="H6680"\w* \w have|strong="H8104"\w* \w commanded|strong="H6680"\w* \w your|strong="H8104"\w* \w precepts|strong="H6490"\w*, +\q2 \w that|strong="H6680"\w* \w we|strong="H3068"\w* \w should|strong="H8104"\w* \w fully|strong="H3966"\w* \w obey|strong="H8104"\w* \w them|strong="H6680"\w*. +\q1 +\v 5 Oh \w that|strong="H1870"\w* \w my|strong="H8104"\w* \w ways|strong="H1870"\w* \w were|strong="H1870"\w* \w steadfast|strong="H3559"\w* +\q2 \w to|strong="H8104"\w* \w obey|strong="H8104"\w* \w your|strong="H8104"\w* \w statutes|strong="H2706"\w*! +\q1 +\v 6 \w Then|strong="H3808"\w* \w I|strong="H3808"\w* wouldn’t \w be|strong="H3808"\w* disappointed, +\q2 \w when|strong="H5027"\w* \w I|strong="H3808"\w* \w consider|strong="H5027"\w* \w all|strong="H3605"\w* \w of|strong="H3605"\w* \w your|strong="H3605"\w* \w commandments|strong="H4687"\w*. +\q1 +\v 7 I \w will|strong="H3824"\w* \w give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3824"\w* \w you|strong="H3034"\w* \w with|strong="H4941"\w* \w uprightness|strong="H3476"\w* \w of|strong="H4941"\w* \w heart|strong="H3824"\w*, +\q2 when I \w learn|strong="H3925"\w* \w your|strong="H3925"\w* \w righteous|strong="H6664"\w* \w judgments|strong="H4941"\w*. +\q1 +\v 8 \w I|strong="H5704"\w* \w will|strong="H5704"\w* \w observe|strong="H8104"\w* \w your|strong="H8104"\w* \w statutes|strong="H2706"\w*. +\q2 Don’t \w utterly|strong="H3966"\w* \w forsake|strong="H5800"\w* \w me|strong="H8104"\w*. +\d BETH +\q1 +\v 9 \w How|strong="H4100"\w* \w can|strong="H4100"\w* \w a|strong="H3068"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* \w keep|strong="H8104"\w* \w his|strong="H8104"\w* \w way|strong="H1697"\w* \w pure|strong="H2135"\w*? +\q2 \w By|strong="H8104"\w* living according \w to|strong="H8104"\w* \w your|strong="H8104"\w* \w word|strong="H1697"\w*. +\q1 +\v 10 \w With|strong="H3820"\w* \w my|strong="H3605"\w* \w whole|strong="H3605"\w* \w heart|strong="H3820"\w* \w I|strong="H3605"\w* \w have|strong="H3605"\w* \w sought|strong="H1875"\w* \w you|strong="H3605"\w*. +\q2 Don’t let \w me|strong="H1875"\w* \w wander|strong="H7686"\w* \w from|strong="H3820"\w* \w your|strong="H3605"\w* \w commandments|strong="H4687"\w*. +\q1 +\v 11 \w I|strong="H3808"\w* \w have|strong="H3808"\w* \w hidden|strong="H6845"\w* \w your|strong="H3808"\w* word \w in|strong="H3808"\w* \w my|strong="H6845"\w* \w heart|strong="H3820"\w*, +\q2 \w that|strong="H4616"\w* \w I|strong="H3808"\w* \w might|strong="H4616"\w* \w not|strong="H3808"\w* \w sin|strong="H2398"\w* \w against|strong="H2398"\w* \w you|strong="H3808"\w*. +\q1 +\v 12 \w Blessed|strong="H1288"\w* \w are|strong="H3068"\w* \w you|strong="H1288"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w Teach|strong="H3925"\w* \w me|strong="H1288"\w* \w your|strong="H3068"\w* \w statutes|strong="H2706"\w*. +\q1 +\v 13 \w With|strong="H6310"\w* \w my|strong="H3605"\w* \w lips|strong="H8193"\w*, +\q2 \w I|strong="H3605"\w* \w have|strong="H3605"\w* \w declared|strong="H5608"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w ordinances|strong="H4941"\w* \w of|strong="H6310"\w* \w your|strong="H3605"\w* \w mouth|strong="H6310"\w*. +\q1 +\v 14 \w I|strong="H5921"\w* \w have|strong="H3605"\w* \w rejoiced|strong="H7797"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w your|strong="H3605"\w* \w testimonies|strong="H5715"\w*, +\q2 \w as|strong="H3605"\w* \w much|strong="H5921"\w* \w as|strong="H3605"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w riches|strong="H1952"\w*. +\q1 +\v 15 \w I|strong="H7878"\w* will \w meditate|strong="H7878"\w* \w on|strong="H5027"\w* your \w precepts|strong="H6490"\w*, +\q2 \w and|strong="H5027"\w* \w consider|strong="H5027"\w* your ways. +\q1 +\v 16 \w I|strong="H1697"\w* \w will|strong="H1697"\w* \w delight|strong="H8173"\w* myself \w in|strong="H1697"\w* \w your|strong="H7911"\w* \w statutes|strong="H2708"\w*. +\q2 \w I|strong="H1697"\w* \w will|strong="H1697"\w* \w not|strong="H3808"\w* \w forget|strong="H7911"\w* \w your|strong="H7911"\w* \w word|strong="H1697"\w*. +\d GIMEL +\q1 +\v 17 \w Do|strong="H8104"\w* \w good|strong="H1580"\w* \w to|strong="H5921"\w* \w your|strong="H5921"\w* \w servant|strong="H5650"\w*. +\q2 \w I|strong="H5921"\w* \w will|strong="H5650"\w* \w live|strong="H2421"\w* \w and|strong="H5650"\w* \w I|strong="H5921"\w* \w will|strong="H5650"\w* \w obey|strong="H8104"\w* \w your|strong="H5921"\w* \w word|strong="H1697"\w*. +\q1 +\v 18 \w Open|strong="H1540"\w* \w my|strong="H1540"\w* \w eyes|strong="H5869"\w*, +\q2 \w that|strong="H5869"\w* \w I|strong="H5869"\w* \w may|strong="H5869"\w* \w see|strong="H5027"\w* \w wondrous|strong="H6381"\w* \w things|strong="H6381"\w* out \w of|strong="H5869"\w* \w your|strong="H1540"\w* \w law|strong="H8451"\w*. +\q1 +\v 19 \w I|strong="H4480"\w* am \w a|strong="H3068"\w* \w stranger|strong="H1616"\w* \w on|strong="H4480"\w* \w the|strong="H4480"\w* earth. +\q2 Don’t \w hide|strong="H5641"\w* \w your|strong="H5641"\w* \w commandments|strong="H4687"\w* \w from|strong="H4480"\w* \w me|strong="H4480"\w*. +\q1 +\v 20 \w My|strong="H3605"\w* \w soul|strong="H5315"\w* \w is|strong="H5315"\w* consumed \w with|strong="H5315"\w* \w longing|strong="H8375"\w* \w for|strong="H4941"\w* \w your|strong="H3605"\w* \w ordinances|strong="H4941"\w* \w at|strong="H5315"\w* \w all|strong="H3605"\w* \w times|strong="H6256"\w*. +\q1 +\v 21 \w You|strong="H7686"\w* \w have|strong="H2086"\w* \w rebuked|strong="H1605"\w* \w the|strong="H1605"\w* \w proud|strong="H2086"\w* who \w are|strong="H4687"\w* cursed, +\q2 who \w wander|strong="H7686"\w* from \w your|strong="H1605"\w* \w commandments|strong="H4687"\w*. +\q1 +\v 22 \w Take|strong="H1556"\w* \w reproach|strong="H2781"\w* \w and|strong="H2781"\w* \w contempt|strong="H2781"\w* \w away|strong="H1556"\w* \w from|strong="H5921"\w* \w me|strong="H5921"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3588"\w* \w kept|strong="H5341"\w* \w your|strong="H5921"\w* statutes. +\q1 +\v 23 \w Though|strong="H1571"\w* \w princes|strong="H8269"\w* \w sit|strong="H3427"\w* \w and|strong="H5650"\w* slander \w me|strong="H1696"\w*, +\q2 \w your|strong="H1571"\w* \w servant|strong="H5650"\w* \w will|strong="H5650"\w* \w meditate|strong="H7878"\w* \w on|strong="H3427"\w* \w your|strong="H1571"\w* \w statutes|strong="H2706"\w*. +\q1 +\v 24 \w Indeed|strong="H1571"\w* \w your|strong="H1571"\w* statutes \w are|strong="H1571"\w* \w my|strong="H1571"\w* \w delight|strong="H8191"\w*, +\q2 \w and|strong="H6098"\w* \w my|strong="H1571"\w* counselors. +\d DALETH +\q1 +\v 25 \w My|strong="H2421"\w* \w soul|strong="H5315"\w* \w is|strong="H5315"\w* laid low \w in|strong="H5315"\w* \w the|strong="H1697"\w* \w dust|strong="H6083"\w*. +\q2 \w Revive|strong="H2421"\w* \w me|strong="H5315"\w* according \w to|strong="H1697"\w* \w your|strong="H1697"\w* \w word|strong="H1697"\w*! +\q1 +\v 26 \w I|strong="H1870"\w* \w declared|strong="H5608"\w* \w my|strong="H5608"\w* \w ways|strong="H1870"\w*, \w and|strong="H6030"\w* \w you|strong="H3925"\w* \w answered|strong="H6030"\w* \w me|strong="H6030"\w*. +\q2 \w Teach|strong="H3925"\w* \w me|strong="H6030"\w* \w your|strong="H3925"\w* \w statutes|strong="H2706"\w*. +\q1 +\v 27 Let me understand \w the|strong="H1870"\w* teaching \w of|strong="H1870"\w* \w your|strong="H6381"\w* \w precepts|strong="H6490"\w*! +\q2 Then \w I|strong="H7878"\w* \w will|strong="H1870"\w* \w meditate|strong="H7878"\w* \w on|strong="H1870"\w* \w your|strong="H6381"\w* \w wondrous|strong="H6381"\w* \w works|strong="H6381"\w*. +\q1 +\v 28 \w My|strong="H6965"\w* \w soul|strong="H5315"\w* \w is|strong="H5315"\w* weary \w with|strong="H1697"\w* \w sorrow|strong="H8424"\w*; +\q2 \w strengthen|strong="H6965"\w* \w me|strong="H5315"\w* according \w to|strong="H6965"\w* \w your|strong="H6965"\w* \w word|strong="H1697"\w*. +\q1 +\v 29 \w Keep|strong="H5493"\w* \w me|strong="H4480"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w deceit|strong="H8267"\w*. +\q2 \w Grant|strong="H2603"\w* \w me|strong="H4480"\w* \w your|strong="H4480"\w* \w law|strong="H8451"\w* \w graciously|strong="H2603"\w*! +\q1 +\v 30 \w I|strong="H1870"\w* have chosen \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* truth. +\q2 \w I|strong="H1870"\w* have \w set|strong="H7737"\w* \w your|strong="H7737"\w* \w ordinances|strong="H4941"\w* before \w me|strong="H7737"\w*. +\q1 +\v 31 \w I|strong="H3068"\w* \w cling|strong="H1692"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* statutes, \w Yahweh|strong="H3068"\w*. +\q2 Don’t let me \w be|strong="H3068"\w* disappointed. +\q1 +\v 32 \w I|strong="H3588"\w* \w run|strong="H7323"\w* \w in|strong="H1870"\w* \w the|strong="H3588"\w* \w path|strong="H1870"\w* \w of|strong="H1870"\w* \w your|strong="H3588"\w* \w commandments|strong="H4687"\w*, +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* set \w my|strong="H3588"\w* \w heart|strong="H3820"\w* free. +\d \w HE|strong="H3588"\w* +\q1 +\v 33 \w Teach|strong="H3384"\w* me, \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w statutes|strong="H2706"\w*. +\q2 \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w keep|strong="H5341"\w* \w them|strong="H3384"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w end|strong="H6118"\w*. +\q1 +\v 34 \w Give|strong="H8104"\w* \w me|strong="H8104"\w* \w understanding|strong="H3820"\w*, \w and|strong="H8104"\w* \w I|strong="H3605"\w* \w will|strong="H3820"\w* \w keep|strong="H8104"\w* \w your|strong="H3605"\w* \w law|strong="H8451"\w*. +\q2 Yes, \w I|strong="H3605"\w* \w will|strong="H3820"\w* \w obey|strong="H8104"\w* \w it|strong="H5341"\w* \w with|strong="H3605"\w* \w my|strong="H8104"\w* \w whole|strong="H3605"\w* \w heart|strong="H3820"\w*. +\q1 +\v 35 Direct \w me|strong="H5410"\w* \w in|strong="H2654"\w* \w the|strong="H3588"\w* \w path|strong="H5410"\w* \w of|strong="H4687"\w* \w your|strong="H3588"\w* \w commandments|strong="H4687"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w delight|strong="H2654"\w* \w in|strong="H2654"\w* \w them|strong="H3588"\w*. +\q1 +\v 36 \w Turn|strong="H5186"\w* \w my|strong="H5186"\w* \w heart|strong="H3820"\w* toward \w your|strong="H5186"\w* statutes, +\q2 \w not|strong="H5186"\w* toward selfish \w gain|strong="H1215"\w*. +\q1 +\v 37 \w Turn|strong="H5674"\w* \w my|strong="H7200"\w* \w eyes|strong="H5869"\w* \w away|strong="H5674"\w* \w from|strong="H5869"\w* \w looking|strong="H7200"\w* \w at|strong="H7200"\w* \w worthless|strong="H7723"\w* things. +\q2 \w Revive|strong="H2421"\w* \w me|strong="H7200"\w* \w in|strong="H1870"\w* \w your|strong="H7200"\w* \w ways|strong="H1870"\w*. +\q1 +\v 38 \w Fulfill|strong="H6965"\w* \w your|strong="H6965"\w* promise \w to|strong="H6965"\w* \w your|strong="H6965"\w* \w servant|strong="H5650"\w*, +\q2 \w that|strong="H5650"\w* \w you|strong="H6965"\w* may \w be|strong="H5650"\w* feared. +\q1 +\v 39 \w Take|strong="H5674"\w* \w away|strong="H5674"\w* \w my|strong="H3588"\w* \w disgrace|strong="H2781"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w dread|strong="H3025"\w*, +\q2 \w for|strong="H3588"\w* \w your|strong="H3588"\w* \w ordinances|strong="H4941"\w* \w are|strong="H4941"\w* \w good|strong="H2896"\w*. +\q1 +\v 40 \w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w long|strong="H8373"\w* \w for|strong="H2421"\w* \w your|strong="H2009"\w* \w precepts|strong="H6490"\w*! +\q2 \w Revive|strong="H2421"\w* \w me|strong="H2421"\w* \w in|strong="H6666"\w* \w your|strong="H2009"\w* \w righteousness|strong="H6666"\w*. +\d VAV +\q1 +\v 41 Let \w your|strong="H3068"\w* loving \w kindness|strong="H2617"\w* \w also|strong="H3068"\w* come \w to|strong="H3068"\w* me, \w Yahweh|strong="H3068"\w*, +\q2 \w your|strong="H3068"\w* \w salvation|strong="H8668"\w*, according \w to|strong="H3068"\w* \w your|strong="H3068"\w* word. +\q1 +\v 42 \w So|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H1697"\w* \w have|strong="H1697"\w* \w an|strong="H3588"\w* \w answer|strong="H6030"\w* \w for|strong="H3588"\w* \w him|strong="H6030"\w* \w who|strong="H3588"\w* \w reproaches|strong="H2778"\w* \w me|strong="H6030"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* trust \w in|strong="H1697"\w* \w your|strong="H3588"\w* \w word|strong="H1697"\w*. +\q1 +\v 43 Don’t snatch \w the|strong="H3588"\w* \w word|strong="H1697"\w* \w of|strong="H1697"\w* truth \w out|strong="H5337"\w* \w of|strong="H1697"\w* \w my|strong="H5337"\w* \w mouth|strong="H6310"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w put|strong="H6310"\w* \w my|strong="H5337"\w* \w hope|strong="H3176"\w* \w in|strong="H1697"\w* \w your|strong="H3588"\w* \w ordinances|strong="H4941"\w*. +\q1 +\v 44 So I \w will|strong="H8451"\w* \w obey|strong="H8104"\w* \w your|strong="H8104"\w* \w law|strong="H8451"\w* \w continually|strong="H8548"\w*, +\q2 \w forever|strong="H5769"\w* \w and|strong="H5769"\w* \w ever|strong="H5769"\w*. +\q1 +\v 45 \w I|strong="H3588"\w* \w will|strong="H3588"\w* \w walk|strong="H1980"\w* \w in|strong="H1980"\w* \w liberty|strong="H7342"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3588"\w* \w sought|strong="H1875"\w* \w your|strong="H3588"\w* \w precepts|strong="H6490"\w*. +\q1 +\v 46 \w I|strong="H3808"\w* \w will|strong="H4428"\w* \w also|strong="H4428"\w* \w speak|strong="H1696"\w* \w of|strong="H4428"\w* \w your|strong="H3808"\w* statutes \w before|strong="H5048"\w* \w kings|strong="H4428"\w*, +\q2 \w and|strong="H4428"\w* \w will|strong="H4428"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* disappointed. +\q1 +\v 47 I will \w delight|strong="H8173"\w* myself in your \w commandments|strong="H4687"\w*, +\q2 because I love them. +\q1 +\v 48 \w I|strong="H7878"\w* reach out \w my|strong="H5375"\w* \w hands|strong="H3709"\w* \w for|strong="H2706"\w* \w your|strong="H5375"\w* \w commandments|strong="H4687"\w*, \w which|strong="H2706"\w* \w I|strong="H7878"\w* love. +\q2 \w I|strong="H7878"\w* will \w meditate|strong="H7878"\w* \w on|strong="H5375"\w* \w your|strong="H5375"\w* \w statutes|strong="H2706"\w*. +\d ZAYIN +\q1 +\v 49 \w Remember|strong="H2142"\w* \w your|strong="H5921"\w* \w word|strong="H1697"\w* \w to|strong="H5921"\w* \w your|strong="H5921"\w* \w servant|strong="H5650"\w*, +\q2 \w because|strong="H5921"\w* \w you|strong="H5921"\w* gave \w me|strong="H5921"\w* \w hope|strong="H3176"\w*. +\q1 +\v 50 \w This|strong="H2063"\w* \w is|strong="H3588"\w* \w my|strong="H3588"\w* \w comfort|strong="H5165"\w* \w in|strong="H3588"\w* \w my|strong="H3588"\w* \w affliction|strong="H6040"\w*, +\q2 \w for|strong="H3588"\w* \w your|strong="H3588"\w* word \w has|strong="H3588"\w* \w revived|strong="H2421"\w* \w me|strong="H2421"\w*. +\q1 +\v 51 \w The|strong="H5704"\w* \w arrogant|strong="H2086"\w* \w mock|strong="H3887"\w* \w me|strong="H3808"\w* excessively, +\q2 \w but|strong="H3808"\w* \w I|strong="H5704"\w* don’t swerve \w from|strong="H5704"\w* \w your|strong="H5186"\w* \w law|strong="H8451"\w*. +\q1 +\v 52 \w I|strong="H2142"\w* \w remember|strong="H2142"\w* \w your|strong="H3068"\w* \w ordinances|strong="H4941"\w* \w of|strong="H3068"\w* \w old|strong="H5769"\w*, \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w comforted|strong="H5162"\w* \w myself|strong="H5162"\w*. +\q1 +\v 53 \w Indignation|strong="H2152"\w* \w has|strong="H2152"\w* taken hold on \w me|strong="H5800"\w*, +\q2 \w because|strong="H5800"\w* \w of|strong="H8451"\w* \w the|strong="H5800"\w* \w wicked|strong="H7563"\w* \w who|strong="H7563"\w* \w forsake|strong="H5800"\w* \w your|strong="H5800"\w* \w law|strong="H8451"\w*. +\q1 +\v 54 \w Your|strong="H1961"\w* \w statutes|strong="H2706"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w my|strong="H1961"\w* \w songs|strong="H2158"\w* +\q2 \w in|strong="H1004"\w* \w the|strong="H1961"\w* \w house|strong="H1004"\w* \w where|strong="H4033"\w* \w I|strong="H1004"\w* live. +\q1 +\v 55 \w I|strong="H2142"\w* \w have|strong="H3068"\w* \w remembered|strong="H2142"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w*, \w Yahweh|strong="H3068"\w*, \w in|strong="H3068"\w* \w the|strong="H8104"\w* \w night|strong="H3915"\w*, +\q2 \w and|strong="H3068"\w* \w I|strong="H2142"\w* \w obey|strong="H8104"\w* \w your|strong="H3068"\w* \w law|strong="H8451"\w*. +\q1 +\v 56 \w This|strong="H2063"\w* \w is|strong="H1961"\w* \w my|strong="H1961"\w* \w way|strong="H2063"\w*, +\q2 \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w keep|strong="H5341"\w* \w your|strong="H3588"\w* \w precepts|strong="H6490"\w*. +\d HETH +\q1 +\v 57 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w my|strong="H8104"\w* \w portion|strong="H2506"\w*. +\q2 \w I|strong="H1697"\w* \w promised|strong="H3068"\w* \w to|strong="H3068"\w* \w obey|strong="H8104"\w* \w your|strong="H3068"\w* \w words|strong="H1697"\w*. +\q1 +\v 58 \w I|strong="H6440"\w* \w sought|strong="H2470"\w* \w your|strong="H3605"\w* \w favor|strong="H6440"\w* \w with|strong="H6440"\w* \w my|strong="H3605"\w* \w whole|strong="H3605"\w* \w heart|strong="H3820"\w*. +\q2 \w Be|strong="H3820"\w* \w merciful|strong="H2603"\w* \w to|strong="H3820"\w* \w me|strong="H6440"\w* according \w to|strong="H3820"\w* \w your|strong="H3605"\w* word. +\q1 +\v 59 \w I|strong="H1870"\w* \w considered|strong="H2803"\w* \w my|strong="H7725"\w* \w ways|strong="H1870"\w*, +\q2 \w and|strong="H7725"\w* \w turned|strong="H7725"\w* \w my|strong="H7725"\w* \w steps|strong="H7272"\w* \w to|strong="H7725"\w* \w your|strong="H7725"\w* statutes. +\q1 +\v 60 \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w hurry|strong="H2363"\w*, \w and|strong="H8104"\w* \w not|strong="H3808"\w* \w delay|strong="H4102"\w*, +\q2 \w to|strong="H8104"\w* \w obey|strong="H8104"\w* \w your|strong="H8104"\w* \w commandments|strong="H4687"\w*. +\q1 +\v 61 \w The|strong="H7911"\w* \w ropes|strong="H2256"\w* \w of|strong="H8451"\w* \w the|strong="H7911"\w* \w wicked|strong="H7563"\w* bind \w me|strong="H7911"\w*, +\q2 \w but|strong="H3808"\w* \w I|strong="H3808"\w* won’t \w forget|strong="H7911"\w* \w your|strong="H7911"\w* \w law|strong="H8451"\w*. +\q1 +\v 62 \w At|strong="H5921"\w* \w midnight|strong="H2676"\w* \w I|strong="H5921"\w* \w will|strong="H6664"\w* \w rise|strong="H6965"\w* \w to|strong="H5921"\w* \w give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H5921"\w* \w you|strong="H5921"\w*, +\q2 \w because|strong="H5921"\w* \w of|strong="H5921"\w* \w your|strong="H5921"\w* \w righteous|strong="H6664"\w* \w ordinances|strong="H4941"\w*. +\q1 +\v 63 \w I|strong="H3605"\w* am \w a|strong="H3068"\w* friend \w of|strong="H3605"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w fear|strong="H3372"\w* \w you|strong="H3605"\w*, +\q2 \w of|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w observe|strong="H8104"\w* \w your|strong="H3605"\w* \w precepts|strong="H6490"\w*. +\q1 +\v 64 \w The|strong="H3068"\w* earth \w is|strong="H3068"\w* \w full|strong="H4390"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* loving \w kindness|strong="H2617"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w Teach|strong="H3925"\w* \w me|strong="H3925"\w* \w your|strong="H3068"\w* \w statutes|strong="H2706"\w*. +\d TETH +\q1 +\v 65 \w You|strong="H6213"\w* \w have|strong="H3068"\w* \w treated|strong="H6213"\w* \w your|strong="H3068"\w* \w servant|strong="H5650"\w* \w well|strong="H2896"\w*, +\q2 according \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w word|strong="H1697"\w*, \w Yahweh|strong="H3068"\w*. +\q1 +\v 66 \w Teach|strong="H3925"\w* \w me|strong="H3925"\w* \w good|strong="H2898"\w* \w judgment|strong="H2940"\w* \w and|strong="H4687"\w* \w knowledge|strong="H1847"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* believe \w in|strong="H3925"\w* \w your|strong="H3588"\w* \w commandments|strong="H4687"\w*. +\q1 +\v 67 \w Before|strong="H2962"\w* \w I|strong="H2962"\w* was \w afflicted|strong="H6031"\w*, \w I|strong="H2962"\w* \w went|strong="H7683"\w* \w astray|strong="H7683"\w*; +\q2 \w but|strong="H6258"\w* \w now|strong="H6258"\w* \w I|strong="H2962"\w* \w observe|strong="H8104"\w* \w your|strong="H8104"\w* word. +\q1 +\v 68 \w You|strong="H3925"\w* \w are|strong="H2896"\w* \w good|strong="H2896"\w*, \w and|strong="H2706"\w* \w do|strong="H2895"\w* \w good|strong="H2896"\w*. +\q2 \w Teach|strong="H3925"\w* \w me|strong="H3925"\w* \w your|strong="H3925"\w* \w statutes|strong="H2706"\w*. +\q1 +\v 69 \w The|strong="H3605"\w* \w proud|strong="H2086"\w* \w have|strong="H2086"\w* smeared \w a|strong="H3068"\w* \w lie|strong="H8267"\w* \w upon|strong="H5921"\w* \w me|strong="H5921"\w*. +\q2 \w With|strong="H5921"\w* \w my|strong="H3605"\w* \w whole|strong="H3605"\w* \w heart|strong="H3820"\w*, \w I|strong="H5921"\w* \w will|strong="H3820"\w* \w keep|strong="H5341"\w* \w your|strong="H3605"\w* \w precepts|strong="H6490"\w*. +\q1 +\v 70 \w Their|strong="H8173"\w* \w heart|strong="H3820"\w* \w is|strong="H3820"\w* \w as|strong="H2954"\w* callous \w as|strong="H2954"\w* \w the|strong="H3820"\w* \w fat|strong="H2459"\w*, +\q2 \w but|strong="H3820"\w* \w I|strong="H3820"\w* \w delight|strong="H8173"\w* \w in|strong="H3820"\w* your \w law|strong="H8451"\w*. +\q1 +\v 71 \w It|strong="H3588"\w* \w is|strong="H2896"\w* \w good|strong="H2896"\w* \w for|strong="H3588"\w* \w me|strong="H3925"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3588"\w* been \w afflicted|strong="H6031"\w*, +\q2 \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H4616"\w* \w learn|strong="H3925"\w* \w your|strong="H3588"\w* \w statutes|strong="H2706"\w*. +\q1 +\v 72 \w The|strong="H2896"\w* \w law|strong="H8451"\w* \w of|strong="H6310"\w* \w your|strong="H3701"\w* \w mouth|strong="H6310"\w* \w is|strong="H2896"\w* \w better|strong="H2896"\w* \w to|strong="H6310"\w* me \w than|strong="H2896"\w* thousands \w of|strong="H6310"\w* pieces \w of|strong="H6310"\w* \w gold|strong="H2091"\w* \w and|strong="H3701"\w* \w silver|strong="H3701"\w*. +\d YODH +\q1 +\v 73 \w Your|strong="H6213"\w* \w hands|strong="H3027"\w* \w have|strong="H3027"\w* \w made|strong="H6213"\w* \w me|strong="H6213"\w* \w and|strong="H3027"\w* \w formed|strong="H3559"\w* \w me|strong="H6213"\w*. +\q2 \w Give|strong="H6213"\w* \w me|strong="H6213"\w* understanding, \w that|strong="H3027"\w* \w I|strong="H3559"\w* \w may|strong="H6213"\w* \w learn|strong="H3925"\w* \w your|strong="H6213"\w* \w commandments|strong="H4687"\w*. +\q1 +\v 74 \w Those|strong="H3588"\w* \w who|strong="H3588"\w* \w fear|strong="H3373"\w* \w you|strong="H3588"\w* \w will|strong="H1697"\w* \w see|strong="H7200"\w* \w me|strong="H7200"\w* \w and|strong="H7200"\w* \w be|strong="H1697"\w* \w glad|strong="H8055"\w*, +\q2 \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H7200"\w* put \w my|strong="H7200"\w* \w hope|strong="H3176"\w* \w in|strong="H8055"\w* \w your|strong="H7200"\w* \w word|strong="H1697"\w*. +\q1 +\v 75 \w Yahweh|strong="H3068"\w*, \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w your|strong="H3068"\w* \w judgments|strong="H4941"\w* \w are|strong="H3068"\w* \w righteous|strong="H6664"\w*, +\q2 \w that|strong="H3588"\w* \w in|strong="H3068"\w* faithfulness \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w afflicted|strong="H6031"\w* \w me|strong="H3045"\w*. +\q1 +\v 76 \w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w your|strong="H4994"\w* loving \w kindness|strong="H2617"\w* \w be|strong="H1961"\w* \w for|strong="H5650"\w* \w my|strong="H1961"\w* \w comfort|strong="H5162"\w*, +\q2 according \w to|strong="H1961"\w* \w your|strong="H4994"\w* word \w to|strong="H1961"\w* \w your|strong="H4994"\w* \w servant|strong="H5650"\w*. +\q1 +\v 77 Let \w your|strong="H3588"\w* tender \w mercies|strong="H7356"\w* \w come|strong="H2421"\w* \w to|strong="H2421"\w* \w me|strong="H2421"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H2421"\w* \w live|strong="H2421"\w*; +\q2 \w for|strong="H3588"\w* \w your|strong="H3588"\w* \w law|strong="H8451"\w* \w is|strong="H8451"\w* \w my|strong="H3588"\w* \w delight|strong="H8191"\w*. +\q1 +\v 78 Let \w the|strong="H3588"\w* \w proud|strong="H2086"\w* \w be|strong="H2086"\w* disappointed, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H2086"\w* \w overthrown|strong="H5791"\w* \w me|strong="H5791"\w* \w wrongfully|strong="H8267"\w*. +\q2 \w I|strong="H3588"\w* \w will|strong="H3588"\w* \w meditate|strong="H7878"\w* \w on|strong="H6490"\w* \w your|strong="H3588"\w* \w precepts|strong="H6490"\w*. +\q1 +\v 79 \w Let|strong="H7725"\w* those \w who|strong="H3045"\w* \w fear|strong="H3373"\w* \w you|strong="H7725"\w* \w turn|strong="H7725"\w* \w to|strong="H7725"\w* \w me|strong="H7725"\w*. +\q2 \w They|strong="H3045"\w* \w will|strong="H7725"\w* \w know|strong="H3045"\w* \w your|strong="H3045"\w* statutes. +\q1 +\v 80 \w Let|strong="H3808"\w* \w my|strong="H1961"\w* \w heart|strong="H3820"\w* \w be|strong="H1961"\w* \w blameless|strong="H8549"\w* toward \w your|strong="H3808"\w* \w decrees|strong="H2706"\w*, +\q2 \w that|strong="H4616"\w* \w I|strong="H3808"\w* \w may|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* disappointed. +\d KAPF +\q1 +\v 81 \w My|strong="H3615"\w* \w soul|strong="H5315"\w* \w faints|strong="H3615"\w* \w for|strong="H5315"\w* \w your|strong="H3615"\w* \w salvation|strong="H8668"\w*. +\q2 \w I|strong="H1697"\w* \w hope|strong="H3176"\w* \w in|strong="H5315"\w* \w your|strong="H3615"\w* \w word|strong="H1697"\w*. +\q1 +\v 82 \w My|strong="H3615"\w* \w eyes|strong="H5869"\w* \w fail|strong="H3615"\w* \w for|strong="H5869"\w* \w your|strong="H3615"\w* word. +\q2 \w I|strong="H5869"\w* say, “\w When|strong="H4970"\w* \w will|strong="H5869"\w* \w you|strong="H5869"\w* \w comfort|strong="H5162"\w* \w me|strong="H5869"\w*?” +\q1 +\v 83 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w wineskin|strong="H4997"\w* \w in|strong="H3808"\w* \w the|strong="H3588"\w* \w smoke|strong="H7008"\w*. +\q2 \w I|strong="H3588"\w* don’t \w forget|strong="H7911"\w* \w your|strong="H3588"\w* \w statutes|strong="H2706"\w*. +\q1 +\v 84 \w How|strong="H4100"\w* \w many|strong="H4100"\w* \w are|strong="H3117"\w* \w the|strong="H6213"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H6213"\w* \w servant|strong="H5650"\w*? +\q2 \w When|strong="H3117"\w* \w will|strong="H5650"\w* \w you|strong="H3117"\w* \w execute|strong="H6213"\w* \w judgment|strong="H4941"\w* \w on|strong="H3117"\w* \w those|strong="H6213"\w* \w who|strong="H5650"\w* \w persecute|strong="H7291"\w* \w me|strong="H6213"\w*? +\q1 +\v 85 \w The|strong="H3808"\w* \w proud|strong="H2086"\w* \w have|strong="H2086"\w* \w dug|strong="H3738"\w* \w pits|strong="H7882"\w* \w for|strong="H3808"\w* \w me|strong="H3808"\w*, +\q2 contrary \w to|strong="H3808"\w* \w your|strong="H3808"\w* \w law|strong="H8451"\w*. +\q1 +\v 86 \w All|strong="H3605"\w* \w of|strong="H3605"\w* \w your|strong="H3605"\w* \w commandments|strong="H4687"\w* \w are|strong="H4687"\w* faithful. +\q2 \w They|strong="H3605"\w* \w persecute|strong="H7291"\w* \w me|strong="H7291"\w* \w wrongfully|strong="H8267"\w*. +\q2 \w Help|strong="H5826"\w* \w me|strong="H7291"\w*! +\q1 +\v 87 \w They|strong="H3808"\w* \w had|strong="H3808"\w* \w almost|strong="H4592"\w* wiped \w me|strong="H5800"\w* \w from|strong="H3615"\w* \w the|strong="H5800"\w* earth, +\q2 \w but|strong="H3808"\w* \w I|strong="H3808"\w* didn’t \w forsake|strong="H5800"\w* \w your|strong="H3808"\w* \w precepts|strong="H6490"\w*. +\q1 +\v 88 \w Preserve|strong="H8104"\w* \w my|strong="H8104"\w* \w life|strong="H2421"\w* \w according|strong="H6310"\w* \w to|strong="H8104"\w* \w your|strong="H8104"\w* loving \w kindness|strong="H2617"\w*, +\q2 \w so|strong="H6310"\w* I \w will|strong="H6310"\w* \w obey|strong="H8104"\w* \w the|strong="H8104"\w* statutes \w of|strong="H6310"\w* \w your|strong="H8104"\w* \w mouth|strong="H6310"\w*. +\d LAMEDH +\q1 +\v 89 \w Yahweh|strong="H3068"\w*, \w your|strong="H3068"\w* \w word|strong="H1697"\w* \w is|strong="H3068"\w* \w settled|strong="H5324"\w* \w in|strong="H3068"\w* \w heaven|strong="H8064"\w* \w forever|strong="H5769"\w*. +\q1 +\v 90 \w Your|strong="H3559"\w* \w faithfulness|strong="H3559"\w* \w is|strong="H5975"\w* \w to|strong="H1755"\w* \w all|strong="H1755"\w* \w generations|strong="H1755"\w*. +\q2 \w You|strong="H3559"\w* have \w established|strong="H3559"\w* \w the|strong="H5975"\w* earth, \w and|strong="H5975"\w* \w it|strong="H3559"\w* \w remains|strong="H5975"\w*. +\q1 +\v 91 \w Your|strong="H3605"\w* laws \w remain|strong="H5975"\w* \w to|strong="H3117"\w* \w this|strong="H3588"\w* \w day|strong="H3117"\w*, +\q2 \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w things|strong="H3605"\w* \w serve|strong="H5975"\w* \w you|strong="H3588"\w*. +\q1 +\v 92 \w Unless|strong="H3884"\w* \w your|strong="H3884"\w* \w law|strong="H8451"\w* had been my \w delight|strong="H8191"\w*, +\q2 \w I|strong="H3884"\w* would \w have|strong="H6040"\w* perished \w in|strong="H8451"\w* my \w affliction|strong="H6040"\w*. +\q1 +\v 93 \w I|strong="H3588"\w* \w will|strong="H3808"\w* \w never|strong="H3808"\w* \w forget|strong="H7911"\w* \w your|strong="H3588"\w* \w precepts|strong="H6490"\w*, +\q2 \w for|strong="H3588"\w* \w with|strong="H3588"\w* \w them|strong="H3588"\w*, \w you|strong="H3588"\w* \w have|strong="H3588"\w* \w revived|strong="H2421"\w* \w me|strong="H7911"\w*. +\q1 +\v 94 \w I|strong="H3588"\w* am yours. +\q2 \w Save|strong="H3467"\w* \w me|strong="H3467"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3588"\w* \w sought|strong="H1875"\w* \w your|strong="H3588"\w* \w precepts|strong="H6490"\w*. +\q1 +\v 95 \w The|strong="H7563"\w* \w wicked|strong="H7563"\w* \w have|strong="H7563"\w* \w waited|strong="H6960"\w* \w for|strong="H6960"\w* me, \w to|strong="H7563"\w* destroy me. +\q2 I \w will|strong="H7563"\w* consider your statutes. +\q1 +\v 96 \w I|strong="H7200"\w* \w have|strong="H7200"\w* \w seen|strong="H7200"\w* \w a|strong="H3068"\w* \w limit|strong="H7093"\w* \w to|strong="H7200"\w* \w all|strong="H3605"\w* \w perfection|strong="H8502"\w*, +\q2 \w but|strong="H7200"\w* \w your|strong="H3605"\w* \w commands|strong="H4687"\w* \w are|strong="H4687"\w* boundless. +\d MEM +\q1 +\v 97 \w How|strong="H4100"\w* \w I|strong="H3117"\w* love \w your|strong="H3605"\w* \w law|strong="H8451"\w*! +\q2 \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w my|strong="H3605"\w* \w meditation|strong="H7881"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w*. +\q1 +\v 98 \w Your|strong="H3588"\w* \w commandments|strong="H4687"\w* \w make|strong="H2449"\w* \w me|strong="H3588"\w* \w wiser|strong="H2449"\w* \w than|strong="H3588"\w* \w my|strong="H3588"\w* enemies, +\q2 \w for|strong="H3588"\w* \w your|strong="H3588"\w* \w commandments|strong="H4687"\w* \w are|strong="H4687"\w* \w always|strong="H5769"\w* \w with|strong="H1931"\w* \w me|strong="H3588"\w*. +\q1 +\v 99 \w I|strong="H3588"\w* \w have|strong="H7919"\w* \w more|strong="H3588"\w* \w understanding|strong="H7919"\w* \w than|strong="H3588"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w teachers|strong="H3925"\w*, +\q2 \w for|strong="H3588"\w* \w your|strong="H3605"\w* \w testimonies|strong="H5715"\w* \w are|strong="H5715"\w* \w my|strong="H3605"\w* \w meditation|strong="H7881"\w*. +\q1 +\v 100 \w I|strong="H3588"\w* understand \w more|strong="H3588"\w* \w than|strong="H3588"\w* \w the|strong="H3588"\w* \w aged|strong="H2205"\w*, +\q2 \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3588"\w* \w kept|strong="H5341"\w* \w your|strong="H3588"\w* \w precepts|strong="H6490"\w*. +\q1 +\v 101 \w I|strong="H1697"\w* \w have|strong="H1697"\w* \w kept|strong="H8104"\w* \w my|strong="H8104"\w* \w feet|strong="H7272"\w* \w from|strong="H7451"\w* \w every|strong="H3605"\w* \w evil|strong="H7451"\w* \w way|strong="H1697"\w*, +\q2 \w that|strong="H3605"\w* \w I|strong="H1697"\w* \w might|strong="H4616"\w* \w observe|strong="H8104"\w* \w your|strong="H3605"\w* \w word|strong="H1697"\w*. +\q1 +\v 102 \w I|strong="H3588"\w* \w have|strong="H3588"\w* \w not|strong="H3808"\w* \w turned|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* \w your|strong="H3588"\w* \w ordinances|strong="H4941"\w*, +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* \w taught|strong="H3384"\w* \w me|strong="H5493"\w*. +\q1 +\v 103 \w How|strong="H4100"\w* \w sweet|strong="H4452"\w* \w are|strong="H4100"\w* \w your|strong="H4100"\w* promises \w to|strong="H6310"\w* \w my|strong="H4100"\w* \w taste|strong="H2441"\w*, +\q2 more than \w honey|strong="H1706"\w* \w to|strong="H6310"\w* \w my|strong="H4100"\w* \w mouth|strong="H6310"\w*! +\q1 +\v 104 \w Through|strong="H5921"\w* \w your|strong="H3605"\w* \w precepts|strong="H6490"\w*, \w I|strong="H5921"\w* get understanding; +\q2 \w therefore|strong="H3651"\w* \w I|strong="H5921"\w* \w hate|strong="H8130"\w* \w every|strong="H3605"\w* \w false|strong="H8267"\w* \w way|strong="H3651"\w*. +\d NUN +\q1 +\v 105 \w Your|strong="H1697"\w* \w word|strong="H1697"\w* \w is|strong="H1697"\w* \w a|strong="H3068"\w* \w lamp|strong="H5216"\w* \w to|strong="H1697"\w* \w my|strong="H7272"\w* \w feet|strong="H7272"\w*, +\q2 \w and|strong="H1697"\w* \w a|strong="H3068"\w* \w light|strong="H5216"\w* \w for|strong="H7272"\w* \w my|strong="H7272"\w* \w path|strong="H5410"\w*. +\q1 +\v 106 \w I|strong="H6965"\w* \w have|strong="H8104"\w* \w sworn|strong="H7650"\w*, \w and|strong="H6965"\w* \w have|strong="H8104"\w* \w confirmed|strong="H6965"\w* \w it|strong="H8104"\w*, +\q2 \w that|strong="H6965"\w* \w I|strong="H6965"\w* \w will|strong="H6664"\w* \w obey|strong="H8104"\w* \w your|strong="H8104"\w* \w righteous|strong="H6664"\w* \w ordinances|strong="H4941"\w*. +\q1 +\v 107 \w I|strong="H5704"\w* \w am|strong="H3068"\w* \w afflicted|strong="H6031"\w* \w very|strong="H3966"\w* \w much|strong="H3966"\w*. +\q2 \w Revive|strong="H2421"\w* \w me|strong="H2421"\w*, \w Yahweh|strong="H3068"\w*, according \w to|strong="H5704"\w* \w your|strong="H3068"\w* \w word|strong="H1697"\w*. +\q1 +\v 108 \w Accept|strong="H7521"\w*, \w I|strong="H3068"\w* \w beg|strong="H4994"\w* \w you|strong="H3925"\w*, \w the|strong="H3068"\w* \w willing|strong="H5071"\w* \w offerings|strong="H5071"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w mouth|strong="H6310"\w*. +\q2 \w Yahweh|strong="H3068"\w*, \w teach|strong="H3925"\w* \w me|strong="H4994"\w* \w your|strong="H3068"\w* \w ordinances|strong="H4941"\w*. +\q1 +\v 109 \w My|strong="H7911"\w* \w soul|strong="H5315"\w* \w is|strong="H5315"\w* \w continually|strong="H8548"\w* \w in|strong="H5315"\w* \w my|strong="H7911"\w* \w hand|strong="H3709"\w*, +\q2 \w yet|strong="H3808"\w* \w I|strong="H5315"\w* won’t \w forget|strong="H7911"\w* \w your|strong="H7911"\w* \w law|strong="H8451"\w*. +\q1 +\v 110 \w The|strong="H5414"\w* \w wicked|strong="H7563"\w* \w have|strong="H7563"\w* \w laid|strong="H5414"\w* \w a|strong="H3068"\w* \w snare|strong="H6341"\w* \w for|strong="H5414"\w* \w me|strong="H5414"\w*, +\q2 \w yet|strong="H3808"\w* \w I|strong="H5414"\w* haven’t \w gone|strong="H8582"\w* \w astray|strong="H8582"\w* \w from|strong="H8582"\w* \w your|strong="H5414"\w* \w precepts|strong="H6490"\w*. +\q1 +\v 111 \w I|strong="H3588"\w* \w have|strong="H5157"\w* taken \w your|strong="H3588"\w* \w testimonies|strong="H5715"\w* \w as|strong="H3588"\w* \w a|strong="H3068"\w* \w heritage|strong="H5157"\w* \w forever|strong="H5769"\w*, +\q2 \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w the|strong="H3588"\w* \w joy|strong="H8342"\w* \w of|strong="H3820"\w* \w my|strong="H3588"\w* \w heart|strong="H3820"\w*. +\q1 +\v 112 \w I|strong="H6213"\w* have \w set|strong="H6213"\w* \w my|strong="H6213"\w* \w heart|strong="H3820"\w* \w to|strong="H6213"\w* \w perform|strong="H6213"\w* \w your|strong="H5186"\w* \w statutes|strong="H2706"\w* \w forever|strong="H5769"\w*, +\q2 \w even|strong="H6213"\w* \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w end|strong="H6118"\w*. +\d SAMEKH +\q1 +\v 113 I \w hate|strong="H8130"\w* \w double-minded|strong="H5588"\w* men, +\q2 but I love \w your|strong="H8130"\w* \w law|strong="H8451"\w*. +\q1 +\v 114 \w You|strong="H1697"\w* \w are|strong="H1697"\w* my \w hiding|strong="H5643"\w* \w place|strong="H5643"\w* \w and|strong="H1697"\w* my \w shield|strong="H4043"\w*. +\q2 \w I|strong="H1697"\w* \w hope|strong="H3176"\w* \w in|strong="H1697"\w* \w your|strong="H1697"\w* \w word|strong="H1697"\w*. +\q1 +\v 115 \w Depart|strong="H5493"\w* \w from|strong="H4480"\w* \w me|strong="H4480"\w*, \w you|strong="H4480"\w* \w evildoers|strong="H7489"\w*, +\q2 \w that|strong="H4480"\w* \w I|strong="H4480"\w* \w may|strong="H4480"\w* \w keep|strong="H5341"\w* \w the|strong="H4480"\w* \w commandments|strong="H4687"\w* \w of|strong="H4480"\w* \w my|strong="H5493"\w* God. +\q1 +\v 116 \w Uphold|strong="H5564"\w* \w me|strong="H2421"\w* according \w to|strong="H2421"\w* \w your|strong="H2421"\w* word, \w that|strong="H2421"\w* I \w may|strong="H2421"\w* \w live|strong="H2421"\w*. +\q2 Let \w me|strong="H2421"\w* not be ashamed \w of|strong="H2421"\w* \w my|strong="H2421"\w* \w hope|strong="H7664"\w*. +\q1 +\v 117 \w Hold|strong="H5582"\w* \w me|strong="H3467"\w* \w up|strong="H5582"\w*, \w and|strong="H2706"\w* I \w will|strong="H3467"\w* \w be|strong="H8548"\w* \w safe|strong="H3467"\w*, +\q2 \w and|strong="H2706"\w* \w will|strong="H3467"\w* \w have|strong="H8159"\w* \w respect|strong="H8159"\w* \w for|strong="H2706"\w* \w your|strong="H3467"\w* \w statutes|strong="H2706"\w* \w continually|strong="H8548"\w*. +\q1 +\v 118 \w You|strong="H3588"\w* reject \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w stray|strong="H7686"\w* \w from|strong="H3605"\w* \w your|strong="H3605"\w* \w statutes|strong="H2706"\w*, +\q2 \w for|strong="H3588"\w* \w their|strong="H3605"\w* \w deceit|strong="H8267"\w* \w is|strong="H3605"\w* \w in|strong="H2706"\w* \w vain|strong="H8267"\w*. +\q1 +\v 119 \w You|strong="H3605"\w* \w put|strong="H7673"\w* \w away|strong="H7673"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w wicked|strong="H7563"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* earth \w like|strong="H3651"\w* \w dross|strong="H5509"\w*. +\q2 \w Therefore|strong="H3651"\w* \w I|strong="H3651"\w* love \w your|strong="H3605"\w* \w testimonies|strong="H5713"\w*. +\q1 +\v 120 \w My|strong="H3372"\w* \w flesh|strong="H1320"\w* \w trembles|strong="H5568"\w* \w for|strong="H4941"\w* \w fear|strong="H3372"\w* \w of|strong="H4941"\w* \w you|strong="H3372"\w*. +\q2 \w I|strong="H6343"\w* am \w afraid|strong="H3372"\w* \w of|strong="H4941"\w* \w your|strong="H3372"\w* \w judgments|strong="H4941"\w*. +\d AYIN +\q1 +\v 121 \w I|strong="H6213"\w* have \w done|strong="H6213"\w* \w what|strong="H6213"\w* \w is|strong="H4941"\w* \w just|strong="H6664"\w* \w and|strong="H4941"\w* \w righteous|strong="H6664"\w*. +\q2 Don’t \w leave|strong="H3240"\w* \w me|strong="H6213"\w* \w to|strong="H6213"\w* \w my|strong="H6213"\w* \w oppressors|strong="H6231"\w*. +\q1 +\v 122 Ensure \w your|strong="H6231"\w* \w servant|strong="H5650"\w*’s well-being. +\q2 Don’t let \w the|strong="H5650"\w* \w proud|strong="H2086"\w* \w oppress|strong="H6231"\w* \w me|strong="H5650"\w*. +\q1 +\v 123 \w My|strong="H3615"\w* \w eyes|strong="H5869"\w* \w fail|strong="H3615"\w* looking \w for|strong="H5869"\w* \w your|strong="H3615"\w* \w salvation|strong="H3444"\w*, +\q2 \w for|strong="H5869"\w* \w your|strong="H3615"\w* \w righteous|strong="H6664"\w* word. +\q1 +\v 124 \w Deal|strong="H6213"\w* \w with|strong="H5973"\w* \w your|strong="H6213"\w* \w servant|strong="H5650"\w* according \w to|strong="H6213"\w* \w your|strong="H6213"\w* loving \w kindness|strong="H2617"\w*. +\q2 \w Teach|strong="H3925"\w* \w me|strong="H6213"\w* \w your|strong="H6213"\w* \w statutes|strong="H2706"\w*. +\q1 +\v 125 \w I|strong="H3045"\w* am \w your|strong="H3045"\w* \w servant|strong="H5650"\w*. Give \w me|strong="H5650"\w* understanding, +\q2 \w that|strong="H3045"\w* \w I|strong="H3045"\w* may \w know|strong="H3045"\w* \w your|strong="H3045"\w* \w testimonies|strong="H5713"\w*. +\q1 +\v 126 \w It|strong="H6213"\w* \w is|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H3068"\w* \w act|strong="H6213"\w*, \w Yahweh|strong="H3068"\w*, +\q2 \w for|strong="H6213"\w* \w they|strong="H3068"\w* \w break|strong="H6565"\w* \w your|strong="H3068"\w* \w law|strong="H8451"\w*. +\q1 +\v 127 \w Therefore|strong="H3651"\w* \w I|strong="H5921"\w* love \w your|strong="H5921"\w* \w commandments|strong="H4687"\w* \w more|strong="H3651"\w* \w than|strong="H5921"\w* \w gold|strong="H2091"\w*, +\q2 \w yes|strong="H3651"\w*, \w more|strong="H3651"\w* \w than|strong="H5921"\w* \w pure|strong="H6337"\w* \w gold|strong="H2091"\w*. +\q1 +\v 128 \w Therefore|strong="H3651"\w* \w I|strong="H5921"\w* consider \w all|strong="H3605"\w* \w of|strong="H5921"\w* \w your|strong="H3605"\w* \w precepts|strong="H6490"\w* \w to|strong="H5921"\w* \w be|strong="H8130"\w* \w right|strong="H3474"\w*. +\q2 \w I|strong="H5921"\w* \w hate|strong="H8130"\w* \w every|strong="H3605"\w* \w false|strong="H8267"\w* \w way|strong="H3651"\w*. +\d PE +\q1 +\v 129 \w Your|strong="H5921"\w* \w testimonies|strong="H5715"\w* \w are|strong="H5715"\w* \w wonderful|strong="H6382"\w*, +\q2 \w therefore|strong="H3651"\w* \w my|strong="H5921"\w* \w soul|strong="H5315"\w* \w keeps|strong="H5341"\w* \w them|strong="H5921"\w*. +\q1 +\v 130 \w The|strong="H1697"\w* \w entrance|strong="H6608"\w* \w of|strong="H1697"\w* \w your|strong="H1697"\w* \w words|strong="H1697"\w* gives light. +\q2 It gives understanding \w to|strong="H1697"\w* \w the|strong="H1697"\w* \w simple|strong="H6612"\w*. +\q1 +\v 131 \w I|strong="H3588"\w* \w opened|strong="H6473"\w* \w my|strong="H3588"\w* \w mouth|strong="H6310"\w* \w wide|strong="H6310"\w* \w and|strong="H6310"\w* \w panted|strong="H7602"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w longed|strong="H2968"\w* \w for|strong="H3588"\w* \w your|strong="H3588"\w* \w commandments|strong="H4687"\w*. +\q1 +\v 132 \w Turn|strong="H6437"\w* \w to|strong="H8034"\w* \w me|strong="H2603"\w*, \w and|strong="H4941"\w* \w have|strong="H6437"\w* \w mercy|strong="H2603"\w* \w on|strong="H6437"\w* \w me|strong="H2603"\w*, +\q2 \w as|strong="H4941"\w* \w you|strong="H6437"\w* always do \w to|strong="H8034"\w* those who love \w your|strong="H2603"\w* \w name|strong="H8034"\w*. +\q1 +\v 133 \w Establish|strong="H3559"\w* \w my|strong="H3605"\w* \w footsteps|strong="H6471"\w* \w in|strong="H3559"\w* \w your|strong="H3605"\w* word. +\q2 Don’t \w let|strong="H6471"\w* \w any|strong="H3605"\w* iniquity \w have|strong="H3605"\w* \w dominion|strong="H7980"\w* \w over|strong="H7980"\w* \w me|strong="H6471"\w*. +\q1 +\v 134 \w Redeem|strong="H6299"\w* \w me|strong="H8104"\w* \w from|strong="H8104"\w* \w the|strong="H8104"\w* \w oppression|strong="H6233"\w* \w of|strong="H6233"\w* man, +\q2 so \w I|strong="H6490"\w* will \w observe|strong="H8104"\w* \w your|strong="H8104"\w* \w precepts|strong="H6490"\w*. +\q1 +\v 135 Make \w your|strong="H6440"\w* \w face|strong="H6440"\w* shine \w on|strong="H6440"\w* \w your|strong="H6440"\w* \w servant|strong="H5650"\w*. +\q2 \w Teach|strong="H3925"\w* \w me|strong="H6440"\w* \w your|strong="H6440"\w* \w statutes|strong="H2706"\w*. +\q1 +\v 136 \w Streams|strong="H6388"\w* \w of|strong="H5869"\w* \w tears|strong="H6388"\w* \w run|strong="H3381"\w* \w down|strong="H3381"\w* \w my|strong="H8104"\w* \w eyes|strong="H5869"\w*, +\q2 \w because|strong="H5921"\w* \w they|strong="H3808"\w* don’t \w observe|strong="H8104"\w* \w your|strong="H5921"\w* \w law|strong="H8451"\w*. +\d TZADHE +\q1 +\v 137 You \w are|strong="H3068"\w* \w righteous|strong="H6662"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w Your|strong="H3068"\w* \w judgments|strong="H4941"\w* \w are|strong="H3068"\w* \w upright|strong="H3477"\w*. +\q1 +\v 138 \w You|strong="H6680"\w* have \w commanded|strong="H6680"\w* \w your|strong="H6680"\w* statutes \w in|strong="H3966"\w* \w righteousness|strong="H6664"\w*. +\q2 They \w are|strong="H5713"\w* \w fully|strong="H3966"\w* trustworthy. +\q1 +\v 139 \w My|strong="H3588"\w* \w zeal|strong="H7068"\w* wears \w me|strong="H7911"\w* out, +\q2 \w because|strong="H3588"\w* \w my|strong="H3588"\w* \w enemies|strong="H6862"\w* ignore \w your|strong="H3588"\w* \w words|strong="H1697"\w*. +\q1 +\v 140 Your promises \w have|strong="H5650"\w* been thoroughly \w tested|strong="H6884"\w*, +\q2 \w and|strong="H5650"\w* your \w servant|strong="H5650"\w* loves them. +\q1 +\v 141 \w I|strong="H3808"\w* am \w small|strong="H6810"\w* \w and|strong="H6810"\w* despised. +\q2 \w I|strong="H3808"\w* don’t \w forget|strong="H7911"\w* \w your|strong="H7911"\w* \w precepts|strong="H6490"\w*. +\q1 +\v 142 \w Your|strong="H5769"\w* \w righteousness|strong="H6666"\w* \w is|strong="H6664"\w* an \w everlasting|strong="H5769"\w* \w righteousness|strong="H6666"\w*. +\q2 \w Your|strong="H5769"\w* \w law|strong="H8451"\w* \w is|strong="H6664"\w* truth. +\q1 +\v 143 \w Trouble|strong="H6862"\w* \w and|strong="H4687"\w* \w anguish|strong="H4689"\w* \w have|strong="H4672"\w* \w taken|strong="H4672"\w* \w hold|strong="H4672"\w* \w of|strong="H4687"\w* \w me|strong="H4672"\w*. +\q2 \w Your|strong="H4672"\w* \w commandments|strong="H4687"\w* \w are|strong="H4687"\w* \w my|strong="H4672"\w* \w delight|strong="H8191"\w*. +\q1 +\v 144 \w Your|strong="H2421"\w* \w testimonies|strong="H5715"\w* \w are|strong="H5715"\w* \w righteous|strong="H6664"\w* \w forever|strong="H5769"\w*. +\q2 \w Give|strong="H2421"\w* \w me|strong="H2421"\w* understanding, \w that|strong="H2421"\w* I \w may|strong="H2421"\w* \w live|strong="H2421"\w*. +\d QOPH +\q1 +\v 145 \w I|strong="H3068"\w* \w have|strong="H3068"\w* \w called|strong="H7121"\w* \w with|strong="H3068"\w* \w my|strong="H3605"\w* \w whole|strong="H3605"\w* \w heart|strong="H3820"\w*. +\q2 \w Answer|strong="H6030"\w* \w me|strong="H7121"\w*, \w Yahweh|strong="H3068"\w*! +\q2 \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w keep|strong="H5341"\w* \w your|strong="H3068"\w* \w statutes|strong="H2706"\w*. +\q1 +\v 146 \w I|strong="H7121"\w* \w have|strong="H8104"\w* \w called|strong="H7121"\w* \w to|strong="H8104"\w* \w you|strong="H3467"\w*. \w Save|strong="H3467"\w* \w me|strong="H7121"\w*! +\q2 \w I|strong="H7121"\w* \w will|strong="H3467"\w* \w obey|strong="H8104"\w* \w your|strong="H8104"\w* statutes. +\q1 +\v 147 \w I|strong="H1697"\w* \w rise|strong="H6923"\w* \w before|strong="H6923"\w* \w dawn|strong="H5399"\w* \w and|strong="H1697"\w* \w cry|strong="H7768"\w* \w for|strong="H7768"\w* \w help|strong="H7768"\w*. +\q2 \w I|strong="H1697"\w* put \w my|strong="H6923"\w* \w hope|strong="H3176"\w* \w in|strong="H1697"\w* \w your|strong="H1697"\w* \w words|strong="H1697"\w*. +\q1 +\v 148 \w My|strong="H6923"\w* \w eyes|strong="H5869"\w* stay \w open|strong="H5869"\w* through \w the|strong="H5869"\w* night watches, +\q2 \w that|strong="H5869"\w* \w I|strong="H7878"\w* might \w meditate|strong="H7878"\w* \w on|strong="H5869"\w* \w your|strong="H5869"\w* word. +\q1 +\v 149 \w Hear|strong="H8085"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w* \w according|strong="H4941"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* loving \w kindness|strong="H2617"\w*. +\q2 \w Revive|strong="H2421"\w* \w me|strong="H6963"\w*, \w Yahweh|strong="H3068"\w*, \w according|strong="H4941"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w ordinances|strong="H4941"\w*. +\q1 +\v 150 They \w draw|strong="H7126"\w* \w near|strong="H7126"\w* who \w follow|strong="H7291"\w* \w after|strong="H7291"\w* \w wickedness|strong="H2154"\w*. +\q2 They \w are|strong="H2154"\w* \w far|strong="H7368"\w* \w from|strong="H7368"\w* \w your|strong="H7126"\w* \w law|strong="H8451"\w*. +\q1 +\v 151 \w You|strong="H3605"\w* \w are|strong="H3068"\w* \w near|strong="H7138"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w All|strong="H3605"\w* \w your|strong="H3068"\w* \w commandments|strong="H4687"\w* \w are|strong="H3068"\w* truth. +\q1 +\v 152 \w Of|strong="H3045"\w* \w old|strong="H5769"\w* \w I|strong="H3588"\w* \w have|strong="H3045"\w* \w known|strong="H3045"\w* \w from|strong="H3045"\w* \w your|strong="H3045"\w* \w testimonies|strong="H5713"\w*, +\q2 \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3045"\w* \w founded|strong="H3245"\w* \w them|strong="H3588"\w* \w forever|strong="H5769"\w*. +\d RESH +\q1 +\v 153 \w Consider|strong="H7200"\w* \w my|strong="H7200"\w* \w affliction|strong="H6040"\w*, \w and|strong="H7200"\w* \w deliver|strong="H2502"\w* \w me|strong="H7200"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* don’t \w forget|strong="H7911"\w* \w your|strong="H7200"\w* \w law|strong="H8451"\w*. +\q1 +\v 154 \w Plead|strong="H7378"\w* \w my|strong="H7378"\w* \w cause|strong="H7379"\w*, \w and|strong="H2421"\w* \w redeem|strong="H1350"\w* \w me|strong="H2421"\w*! +\q2 \w Revive|strong="H2421"\w* \w me|strong="H2421"\w* according \w to|strong="H2421"\w* \w your|strong="H7378"\w* \w promise|strong="H1350"\w*. +\q1 +\v 155 \w Salvation|strong="H3444"\w* \w is|strong="H7563"\w* \w far|strong="H7350"\w* \w from|strong="H7350"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w*, +\q2 \w for|strong="H3588"\w* \w they|strong="H3588"\w* don’t \w seek|strong="H1875"\w* \w your|strong="H3588"\w* \w statutes|strong="H2706"\w*. +\q1 +\v 156 \w Great|strong="H7227"\w* \w are|strong="H3068"\w* \w your|strong="H3068"\w* tender \w mercies|strong="H7356"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w Revive|strong="H2421"\w* \w me|strong="H2421"\w* \w according|strong="H4941"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w ordinances|strong="H4941"\w*. +\q1 +\v 157 \w Many|strong="H7227"\w* \w are|strong="H7227"\w* \w my|strong="H5186"\w* \w persecutors|strong="H7291"\w* \w and|strong="H7227"\w* \w my|strong="H5186"\w* \w adversaries|strong="H6862"\w*. +\q2 \w I|strong="H3808"\w* haven’t swerved \w from|strong="H5186"\w* \w your|strong="H5186"\w* \w testimonies|strong="H5715"\w*. +\q1 +\v 158 \w I|strong="H7200"\w* \w look|strong="H7200"\w* \w at|strong="H7200"\w* \w the|strong="H7200"\w* faithless \w with|strong="H7200"\w* loathing, +\q2 because \w they|strong="H3808"\w* don’t \w observe|strong="H8104"\w* \w your|strong="H8104"\w* word. +\q1 +\v 159 \w Consider|strong="H7200"\w* \w how|strong="H3588"\w* \w I|strong="H3588"\w* \w love|strong="H2617"\w* \w your|strong="H3068"\w* \w precepts|strong="H6490"\w*. +\q2 \w Revive|strong="H2421"\w* \w me|strong="H7200"\w*, \w Yahweh|strong="H3068"\w*, according \w to|strong="H3068"\w* \w your|strong="H3068"\w* loving \w kindness|strong="H2617"\w*. +\q1 +\v 160 \w All|strong="H3605"\w* \w of|strong="H1697"\w* \w your|strong="H3605"\w* \w words|strong="H1697"\w* \w are|strong="H1697"\w* truth. +\q2 \w Every|strong="H3605"\w* \w one|strong="H3605"\w* \w of|strong="H1697"\w* \w your|strong="H3605"\w* \w righteous|strong="H6664"\w* \w ordinances|strong="H4941"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*. +\d SIN \w AND|strong="H4941"\w* SHIN +\q1 +\v 161 \w Princes|strong="H8269"\w* \w have|strong="H1697"\w* \w persecuted|strong="H7291"\w* \w me|strong="H7291"\w* \w without|strong="H2600"\w* \w a|strong="H3068"\w* \w cause|strong="H2600"\w*, +\q2 \w but|strong="H7291"\w* \w my|strong="H7291"\w* \w heart|strong="H3820"\w* \w stands|strong="H6342"\w* \w in|strong="H1697"\w* \w awe|strong="H6342"\w* \w of|strong="H1697"\w* \w your|strong="H7291"\w* \w words|strong="H1697"\w*. +\q1 +\v 162 \w I|strong="H5921"\w* \w rejoice|strong="H7797"\w* \w at|strong="H5921"\w* \w your|strong="H5921"\w* word, +\q2 \w as|strong="H5921"\w* \w one|strong="H7227"\w* \w who|strong="H7227"\w* \w finds|strong="H4672"\w* \w great|strong="H7227"\w* \w plunder|strong="H7998"\w*. +\q1 +\v 163 I \w hate|strong="H8130"\w* \w and|strong="H8451"\w* \w abhor|strong="H8581"\w* \w falsehood|strong="H8267"\w*. +\q2 I love \w your|strong="H8130"\w* \w law|strong="H8451"\w*. +\q1 +\v 164 \w Seven|strong="H7651"\w* \w times|strong="H3117"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w*, \w I|strong="H3117"\w* \w praise|strong="H1984"\w* \w you|strong="H5921"\w*, +\q2 \w because|strong="H5921"\w* \w of|strong="H3117"\w* \w your|strong="H5921"\w* \w righteous|strong="H6664"\w* \w ordinances|strong="H4941"\w*. +\q1 +\v 165 Those \w who|strong="H7227"\w* love \w your|strong="H7965"\w* \w law|strong="H8451"\w* \w have|strong="H7965"\w* \w great|strong="H7227"\w* \w peace|strong="H7965"\w*. +\q2 Nothing causes them \w to|strong="H7227"\w* \w stumble|strong="H4383"\w*. +\q1 +\v 166 \w I|strong="H3068"\w* \w have|strong="H3068"\w* \w hoped|strong="H7663"\w* \w for|strong="H6213"\w* \w your|strong="H3068"\w* \w salvation|strong="H3444"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w I|strong="H3068"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w your|strong="H3068"\w* \w commandments|strong="H4687"\w*. +\q1 +\v 167 \w My|strong="H8104"\w* \w soul|strong="H5315"\w* \w has|strong="H5315"\w* \w observed|strong="H8104"\w* \w your|strong="H8104"\w* \w testimonies|strong="H5713"\w*. +\q2 \w I|strong="H5315"\w* love \w them|strong="H8104"\w* \w exceedingly|strong="H3966"\w*. +\q1 +\v 168 \w I|strong="H3588"\w* \w have|strong="H3605"\w* \w obeyed|strong="H8104"\w* \w your|strong="H3605"\w* \w precepts|strong="H6490"\w* \w and|strong="H1870"\w* \w your|strong="H3605"\w* \w testimonies|strong="H5713"\w*, +\q2 \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w my|strong="H8104"\w* \w ways|strong="H1870"\w* \w are|strong="H1870"\w* \w before|strong="H5048"\w* \w you|strong="H3588"\w*. +\d TAV +\q1 +\v 169 Let \w my|strong="H3068"\w* \w cry|strong="H7440"\w* \w come|strong="H7126"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w Yahweh|strong="H3068"\w*. +\q2 Give \w me|strong="H6440"\w* \w understanding|strong="H6440"\w* according \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w word|strong="H1697"\w*. +\q1 +\v 170 Let \w my|strong="H5337"\w* \w supplication|strong="H8467"\w* come \w before|strong="H6440"\w* \w you|strong="H6440"\w*. +\q2 \w Deliver|strong="H5337"\w* \w me|strong="H6440"\w* according \w to|strong="H6440"\w* \w your|strong="H6440"\w* word. +\q1 +\v 171 Let \w my|strong="H3588"\w* \w lips|strong="H8193"\w* \w utter|strong="H5042"\w* \w praise|strong="H8416"\w*, +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w teach|strong="H3925"\w* \w me|strong="H3925"\w* \w your|strong="H3588"\w* \w statutes|strong="H2706"\w*. +\q1 +\v 172 Let \w my|strong="H3605"\w* \w tongue|strong="H3956"\w* \w sing|strong="H6030"\w* \w of|strong="H3605"\w* \w your|strong="H3605"\w* \w word|strong="H3956"\w*, +\q2 \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w commandments|strong="H4687"\w* \w are|strong="H4687"\w* \w righteousness|strong="H6664"\w*. +\q1 +\v 173 \w Let|strong="H1961"\w* \w your|strong="H3588"\w* \w hand|strong="H3027"\w* \w be|strong="H1961"\w* ready \w to|strong="H1961"\w* \w help|strong="H5826"\w* \w me|strong="H1961"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* chosen \w your|strong="H3588"\w* \w precepts|strong="H6490"\w*. +\q1 +\v 174 \w I|strong="H3068"\w* \w have|strong="H3068"\w* \w longed|strong="H8373"\w* \w for|strong="H3068"\w* \w your|strong="H3068"\w* \w salvation|strong="H3444"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w Your|strong="H3068"\w* \w law|strong="H8451"\w* \w is|strong="H3068"\w* \w my|strong="H3068"\w* \w delight|strong="H8191"\w*. +\q1 +\v 175 \w Let|strong="H5315"\w* \w my|strong="H2421"\w* \w soul|strong="H5315"\w* \w live|strong="H2421"\w*, \w that|strong="H5315"\w* \w I|strong="H5315"\w* \w may|strong="H5315"\w* \w praise|strong="H1984"\w* \w you|strong="H5315"\w*. +\q2 \w Let|strong="H5315"\w* \w your|strong="H1984"\w* \w ordinances|strong="H4941"\w* \w help|strong="H5826"\w* \w me|strong="H5315"\w*. +\q1 +\v 176 \w I|strong="H3588"\w* \w have|strong="H5650"\w* \w gone|strong="H8582"\w* \w astray|strong="H8582"\w* \w like|strong="H3808"\w* \w a|strong="H3068"\w* lost \w sheep|strong="H7716"\w*. +\q2 \w Seek|strong="H1245"\w* \w your|strong="H3588"\w* \w servant|strong="H5650"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* don’t \w forget|strong="H7911"\w* \w your|strong="H3588"\w* \w commandments|strong="H4687"\w*. +\c 120 +\d A Song of Ascents. +\q1 +\v 1 \w In|strong="H3068"\w* \w my|strong="H3068"\w* \w distress|strong="H6869"\w*, \w I|strong="H6869"\w* \w cried|strong="H7121"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w He|strong="H3068"\w* \w answered|strong="H6030"\w* \w me|strong="H7121"\w*. +\q1 +\v 2 \w Deliver|strong="H5337"\w* \w my|strong="H3068"\w* \w soul|strong="H5315"\w*, \w Yahweh|strong="H3068"\w*, \w from|strong="H5315"\w* \w lying|strong="H8267"\w* \w lips|strong="H8193"\w*, +\q2 \w from|strong="H5315"\w* \w a|strong="H3068"\w* \w deceitful|strong="H8267"\w* \w tongue|strong="H3956"\w*. +\q1 +\v 3 \w What|strong="H4100"\w* \w will|strong="H5414"\w* \w be|strong="H3254"\w* \w given|strong="H5414"\w* \w to|strong="H5414"\w* \w you|strong="H5414"\w*, \w and|strong="H3254"\w* \w what|strong="H4100"\w* \w will|strong="H5414"\w* \w be|strong="H3254"\w* \w done|strong="H3254"\w* \w more|strong="H3254"\w* \w to|strong="H5414"\w* \w you|strong="H5414"\w*, +\q2 \w you|strong="H5414"\w* \w deceitful|strong="H7423"\w* \w tongue|strong="H3956"\w*? +\q1 +\v 4 \w Sharp|strong="H8150"\w* \w arrows|strong="H2671"\w* \w of|strong="H1368"\w* \w the|strong="H5973"\w* \w mighty|strong="H1368"\w*, +\q2 \w with|strong="H5973"\w* \w coals|strong="H1513"\w* \w of|strong="H1368"\w* \w juniper|strong="H7574"\w*. +\q1 +\v 5 Woe \w is|strong="H3588"\w* \w me|strong="H5973"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w live|strong="H7931"\w* \w in|strong="H7931"\w* \w Meshech|strong="H4902"\w*, +\q2 \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w dwell|strong="H7931"\w* \w among|strong="H5973"\w* \w the|strong="H3588"\w* tents \w of|strong="H7931"\w* \w Kedar|strong="H6938"\w*! +\q1 +\v 6 \w My|strong="H7931"\w* \w soul|strong="H5315"\w* \w has|strong="H5315"\w* \w had|strong="H5315"\w* \w her|strong="H8130"\w* \w dwelling|strong="H7931"\w* \w too|strong="H7227"\w* \w long|strong="H7227"\w* +\q2 \w with|strong="H5973"\w* \w him|strong="H5973"\w* \w who|strong="H5315"\w* \w hates|strong="H8130"\w* \w peace|strong="H7965"\w*. +\q1 +\v 7 \w I|strong="H3588"\w* am \w for|strong="H3588"\w* \w peace|strong="H7965"\w*, +\q2 \w but|strong="H3588"\w* \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w speak|strong="H1696"\w*, \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w for|strong="H3588"\w* \w war|strong="H4421"\w*. +\c 121 +\d A Song of Ascents. +\q1 +\v 1 \w I|strong="H5869"\w* \w will|strong="H5869"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w my|strong="H5375"\w* \w eyes|strong="H5869"\w* \w to|strong="H5869"\w* \w the|strong="H5375"\w* \w hills|strong="H2022"\w*. +\q2 Where does \w my|strong="H5375"\w* \w help|strong="H5828"\w* \w come|strong="H4609"\w* \w from|strong="H5869"\w*? +\q1 +\v 2 \w My|strong="H3068"\w* \w help|strong="H5828"\w* \w comes|strong="H5973"\w* \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w who|strong="H3068"\w* \w made|strong="H6213"\w* \w heaven|strong="H8064"\w* \w and|strong="H3068"\w* \w earth|strong="H8064"\w*. +\b +\q1 +\v 3 \w He|strong="H5414"\w* \w will|strong="H5414"\w* \w not|strong="H5414"\w* \w allow|strong="H5414"\w* \w your|strong="H5414"\w* \w foot|strong="H7272"\w* \w to|strong="H5414"\w* \w be|strong="H5414"\w* \w moved|strong="H4132"\w*. +\q2 \w He|strong="H5414"\w* \w who|strong="H8104"\w* \w keeps|strong="H8104"\w* \w you|strong="H5414"\w* \w will|strong="H5414"\w* \w not|strong="H5414"\w* \w slumber|strong="H5123"\w*. +\q1 +\v 4 \w Behold|strong="H2009"\w*, \w he|strong="H3808"\w* \w who|strong="H3478"\w* \w keeps|strong="H8104"\w* \w Israel|strong="H3478"\w* +\q2 \w will|strong="H3478"\w* \w neither|strong="H3808"\w* \w slumber|strong="H5123"\w* \w nor|strong="H3808"\w* \w sleep|strong="H3462"\w*. +\q1 +\v 5 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w your|strong="H3068"\w* \w keeper|strong="H8104"\w*. +\q2 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w your|strong="H3068"\w* \w shade|strong="H6738"\w* \w on|strong="H5921"\w* \w your|strong="H3068"\w* \w right|strong="H3225"\w* \w hand|strong="H3027"\w*. +\q1 +\v 6 \w The|strong="H5221"\w* \w sun|strong="H8121"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w harm|strong="H5221"\w* \w you|strong="H3808"\w* \w by|strong="H3808"\w* \w day|strong="H3119"\w*, +\q2 \w nor|strong="H3808"\w* \w the|strong="H5221"\w* \w moon|strong="H3394"\w* \w by|strong="H3808"\w* \w night|strong="H3915"\w*. +\q1 +\v 7 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w keep|strong="H8104"\w* \w you|strong="H3605"\w* \w from|strong="H5315"\w* \w all|strong="H3605"\w* \w evil|strong="H7451"\w*. +\q2 \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w keep|strong="H8104"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w*. +\q1 +\v 8 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w keep|strong="H8104"\w* \w your|strong="H3068"\w* \w going|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w coming|strong="H3318"\w* \w in|strong="H3068"\w*, +\q2 \w from|strong="H3318"\w* \w this|strong="H6258"\w* \w time|strong="H6258"\w* \w forward|strong="H3318"\w*, \w and|strong="H3068"\w* \w forever|strong="H5769"\w* \w more|strong="H5704"\w*. +\c 122 +\d A Song of Ascents. By David. +\q1 +\v 1 \w I|strong="H3068"\w* \w was|strong="H3068"\w* \w glad|strong="H8055"\w* \w when|strong="H3068"\w* \w they|strong="H3068"\w* said \w to|strong="H3212"\w* \w me|strong="H3212"\w*, +\q2 “\w Let|strong="H8055"\w*’s \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*!” +\q1 +\v 2 \w Our|strong="H1961"\w* \w feet|strong="H7272"\w* \w are|strong="H8179"\w* \w standing|strong="H5975"\w* \w within|strong="H3389"\w* \w your|strong="H1961"\w* \w gates|strong="H8179"\w*, \w Jerusalem|strong="H3389"\w*! +\q2 +\v 3 \w Jerusalem|strong="H3389"\w* \w is|strong="H5892"\w* \w built|strong="H1129"\w* \w as|strong="H3389"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w* \w that|strong="H5892"\w* \w is|strong="H5892"\w* \w compact|strong="H2266"\w* \w together|strong="H3162"\w*, +\q1 +\v 4 \w where|strong="H8033"\w* \w the|strong="H3068"\w* \w tribes|strong="H7626"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w*, \w even|strong="H3068"\w* \w Yah|strong="H3068"\w*’s \w tribes|strong="H7626"\w*, +\q2 according \w to|strong="H3478"\w* \w an|strong="H8033"\w* \w ordinance|strong="H5715"\w* \w for|strong="H8034"\w* \w Israel|strong="H3478"\w*, +\q2 \w to|strong="H3478"\w* \w give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*. +\q1 +\v 5 \w For|strong="H3588"\w* \w there|strong="H8033"\w* \w are|strong="H1004"\w* \w set|strong="H3427"\w* \w thrones|strong="H3678"\w* \w for|strong="H3588"\w* \w judgment|strong="H4941"\w*, +\q2 \w the|strong="H3588"\w* \w thrones|strong="H3678"\w* \w of|strong="H1004"\w* \w David|strong="H1732"\w*’s \w house|strong="H1004"\w*. +\q1 +\v 6 \w Pray|strong="H7592"\w* \w for|strong="H3389"\w* \w the|strong="H7592"\w* \w peace|strong="H7965"\w* \w of|strong="H7592"\w* \w Jerusalem|strong="H3389"\w*. +\q2 Those \w who|strong="H3389"\w* love \w you|strong="H7592"\w* \w will|strong="H3389"\w* \w prosper|strong="H7951"\w*. +\q1 +\v 7 \w Peace|strong="H7965"\w* \w be|strong="H1961"\w* within \w your|strong="H1961"\w* \w walls|strong="H2426"\w*, +\q2 \w and|strong="H7965"\w* \w prosperity|strong="H7965"\w* within \w your|strong="H1961"\w* palaces. +\q1 +\v 8 \w For|strong="H4616"\w* \w my|strong="H1696"\w* brothers’ \w and|strong="H7965"\w* \w companions|strong="H7453"\w*’ sakes, +\q2 \w I|strong="H7965"\w* \w will|strong="H4616"\w* \w now|strong="H4994"\w* \w say|strong="H1696"\w*, “\w Peace|strong="H7965"\w* \w be|strong="H4994"\w* within \w you|strong="H1696"\w*.” +\q1 +\v 9 \w For|strong="H4616"\w* \w the|strong="H3068"\w* \w sake|strong="H4616"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w seek|strong="H1245"\w* \w your|strong="H3068"\w* \w good|strong="H2896"\w*. +\c 123 +\d A Song of Ascents. +\q1 +\v 1 \w I|strong="H5869"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w my|strong="H5375"\w* \w eyes|strong="H5869"\w* \w to|strong="H5869"\w* \w you|strong="H5375"\w*, +\q2 \w you|strong="H5375"\w* \w who|strong="H3427"\w* \w sit|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5375"\w* \w heavens|strong="H8064"\w*. +\q1 +\v 2 \w Behold|strong="H2009"\w*, \w as|strong="H5704"\w* \w the|strong="H3068"\w* \w eyes|strong="H5869"\w* \w of|strong="H3068"\w* \w servants|strong="H5650"\w* \w look|strong="H2009"\w* \w to|strong="H5704"\w* \w the|strong="H3068"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* master, +\q2 \w as|strong="H5704"\w* \w the|strong="H3068"\w* \w eyes|strong="H5869"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w maid|strong="H8198"\w* \w to|strong="H5704"\w* \w the|strong="H3068"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w her|strong="H3651"\w* \w mistress|strong="H1404"\w*, +\q2 \w so|strong="H3651"\w* \w our|strong="H3068"\w* \w eyes|strong="H5869"\w* \w look|strong="H2009"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w*, \w our|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w has|strong="H3068"\w* \w mercy|strong="H2603"\w* \w on|strong="H3027"\w* \w us|strong="H5869"\w*. +\q1 +\v 3 \w Have|strong="H3068"\w* \w mercy|strong="H2603"\w* \w on|strong="H3068"\w* \w us|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w mercy|strong="H2603"\w* \w on|strong="H3068"\w* \w us|strong="H3588"\w*, +\q2 \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* endured \w much|strong="H7227"\w* contempt. +\q1 +\v 4 Our \w soul|strong="H5315"\w* \w is|strong="H5315"\w* \w exceedingly|strong="H7227"\w* \w filled|strong="H7646"\w* \w with|strong="H7646"\w* \w the|strong="H7646"\w* \w scoffing|strong="H3933"\w* \w of|strong="H5315"\w* \w those|strong="H7600"\w* \w who|strong="H5315"\w* \w are|strong="H7227"\w* \w at|strong="H5315"\w* \w ease|strong="H7600"\w*, +\q2 \w with|strong="H7646"\w* \w the|strong="H7646"\w* \w contempt|strong="H5315"\w* \w of|strong="H5315"\w* \w the|strong="H7646"\w* \w proud|strong="H1349"\w*. +\c 124 +\d A Song of Ascents. By David. +\q1 +\v 1 \w If|strong="H3884"\w* \w it|strong="H1961"\w* \w had|strong="H3068"\w* \w not|strong="H1961"\w* \w been|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w was|strong="H3068"\w* \w on|strong="H3068"\w* \w our|strong="H3068"\w* side, +\q2 \w let|strong="H4994"\w* \w Israel|strong="H3478"\w* \w now|strong="H4994"\w* \w say|strong="H3478"\w*, +\q1 +\v 2 \w if|strong="H3884"\w* \w it|strong="H5921"\w* \w had|strong="H3068"\w* \w not|strong="H1961"\w* \w been|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w was|strong="H3068"\w* \w on|strong="H5921"\w* \w our|strong="H3068"\w* side, +\q2 \w when|strong="H1961"\w* men \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H5921"\w* \w us|strong="H5921"\w*, +\q1 +\v 3 then they would have \w swallowed|strong="H1104"\w* \w us|strong="H1104"\w* \w up|strong="H1104"\w* \w alive|strong="H2416"\w*, +\q2 when \w their|strong="H1104"\w* wrath was \w kindled|strong="H2734"\w* \w against|strong="H2734"\w* \w us|strong="H1104"\w*, +\q1 +\v 4 \w then|strong="H5674"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w would|strong="H5315"\w* \w have|strong="H4325"\w* \w overwhelmed|strong="H7857"\w* \w us|strong="H5921"\w*, +\q2 \w the|strong="H5921"\w* \w stream|strong="H5158"\w* \w would|strong="H5315"\w* \w have|strong="H4325"\w* \w gone|strong="H5674"\w* \w over|strong="H5921"\w* \w our|strong="H5921"\w* \w soul|strong="H5315"\w*. +\q1 +\v 5 \w Then|strong="H5674"\w* \w the|strong="H5921"\w* \w proud|strong="H2121"\w* \w waters|strong="H4325"\w* \w would|strong="H5315"\w* \w have|strong="H4325"\w* \w gone|strong="H5674"\w* \w over|strong="H5921"\w* \w our|strong="H5921"\w* \w soul|strong="H5315"\w*. +\q1 +\v 6 \w Blessed|strong="H1288"\w* \w be|strong="H3808"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w given|strong="H5414"\w* \w us|strong="H5414"\w* \w as|strong="H3068"\w* \w a|strong="H3068"\w* \w prey|strong="H2964"\w* \w to|strong="H3068"\w* \w their|strong="H3068"\w* \w teeth|strong="H8127"\w*. +\q1 +\v 7 Our \w soul|strong="H5315"\w* \w has|strong="H5315"\w* \w escaped|strong="H4422"\w* \w like|strong="H5315"\w* \w a|strong="H3068"\w* \w bird|strong="H6833"\w* \w out|strong="H4422"\w* \w of|strong="H5315"\w* \w the|strong="H7665"\w* fowler’s \w snare|strong="H6341"\w*. +\q2 \w The|strong="H7665"\w* \w snare|strong="H6341"\w* \w is|strong="H5315"\w* \w broken|strong="H7665"\w*, \w and|strong="H5315"\w* \w we|strong="H3068"\w* have \w escaped|strong="H4422"\w*. +\q1 +\v 8 \w Our|strong="H3068"\w* \w help|strong="H5828"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*, +\q2 \w who|strong="H3068"\w* \w made|strong="H6213"\w* \w heaven|strong="H8064"\w* \w and|strong="H3068"\w* \w earth|strong="H8064"\w*. +\c 125 +\d A Song of Ascents. +\q1 +\v 1 \w Those|strong="H3427"\w* \w who|strong="H3068"\w* trust \w in|strong="H3427"\w* \w Yahweh|strong="H3068"\w* \w are|strong="H3068"\w* \w as|strong="H3068"\w* \w Mount|strong="H2022"\w* \w Zion|strong="H6726"\w*, +\q2 \w which|strong="H3068"\w* \w can|strong="H3808"\w*’t \w be|strong="H3808"\w* \w moved|strong="H4131"\w*, \w but|strong="H3808"\w* remains \w forever|strong="H5769"\w*. +\q1 +\v 2 \w As|strong="H5704"\w* \w the|strong="H3068"\w* \w mountains|strong="H2022"\w* \w surround|strong="H5439"\w* \w Jerusalem|strong="H3389"\w*, +\q2 \w so|strong="H6258"\w* \w Yahweh|strong="H3068"\w* \w surrounds|strong="H5439"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w* \w from|strong="H5704"\w* \w this|strong="H6258"\w* \w time|strong="H6258"\w* forward \w and|strong="H3068"\w* \w forever|strong="H5769"\w* \w more|strong="H5704"\w*. +\q1 +\v 3 \w For|strong="H3588"\w* \w the|strong="H5921"\w* \w scepter|strong="H7626"\w* \w of|strong="H3027"\w* \w wickedness|strong="H7562"\w* won’t \w remain|strong="H5117"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* allotment \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w righteous|strong="H6662"\w*, +\q2 \w so|strong="H4616"\w* \w that|strong="H3588"\w* \w the|strong="H5921"\w* \w righteous|strong="H6662"\w* won’t \w use|strong="H7971"\w* \w their|strong="H5921"\w* \w hands|strong="H3027"\w* \w to|strong="H7971"\w* \w do|strong="H7562"\w* \w evil|strong="H7562"\w*. +\q1 +\v 4 \w Do|strong="H3068"\w* \w good|strong="H2896"\w*, \w Yahweh|strong="H3068"\w*, \w to|strong="H3068"\w* those \w who|strong="H3068"\w* \w are|strong="H3068"\w* \w good|strong="H2896"\w*, +\q2 \w to|strong="H3068"\w* those \w who|strong="H3068"\w* \w are|strong="H3068"\w* \w upright|strong="H3477"\w* \w in|strong="H3068"\w* \w their|strong="H3068"\w* \w hearts|strong="H3826"\w*. +\q1 +\v 5 \w But|strong="H3068"\w* \w as|strong="H3068"\w* \w for|strong="H5921"\w* \w those|strong="H5921"\w* \w who|strong="H3068"\w* \w turn|strong="H5186"\w* \w away|strong="H3212"\w* \w to|strong="H3478"\w* \w their|strong="H3068"\w* \w crooked|strong="H6128"\w* \w ways|strong="H6128"\w*, +\q2 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w lead|strong="H3212"\w* \w them|strong="H5921"\w* \w away|strong="H3212"\w* \w with|strong="H3068"\w* \w the|strong="H5921"\w* \w workers|strong="H6466"\w* \w of|strong="H3068"\w* iniquity. +\q1 \w Peace|strong="H7965"\w* \w be|strong="H3068"\w* \w on|strong="H5921"\w* \w Israel|strong="H3478"\w*. +\c 126 +\d A Song of Ascents. +\q1 +\v 1 \w When|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w brought|strong="H7725"\w* \w back|strong="H7725"\w* \w those|strong="H1961"\w* \w who|strong="H3068"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Zion|strong="H6726"\w*, +\q2 \w we|strong="H3068"\w* \w were|strong="H1961"\w* \w like|strong="H1961"\w* \w those|strong="H1961"\w* \w who|strong="H3068"\w* \w dream|strong="H2492"\w*. +\q1 +\v 2 \w Then|strong="H6213"\w* \w our|strong="H3068"\w* \w mouth|strong="H6310"\w* \w was|strong="H3068"\w* \w filled|strong="H4390"\w* \w with|strong="H5973"\w* \w laughter|strong="H7814"\w*, +\q2 \w and|strong="H3068"\w* \w our|strong="H3068"\w* \w tongue|strong="H3956"\w* \w with|strong="H5973"\w* \w singing|strong="H7440"\w*. +\q1 \w Then|strong="H6213"\w* \w they|strong="H3068"\w* \w said|strong="H6310"\w* \w among|strong="H5973"\w* \w the|strong="H6213"\w* \w nations|strong="H1471"\w*, +\q2 “\w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w* \w great|strong="H1431"\w* \w things|strong="H1431"\w* \w for|strong="H6213"\w* \w them|strong="H6213"\w*.” +\q1 +\v 3 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w* \w great|strong="H1431"\w* \w things|strong="H1431"\w* \w for|strong="H6213"\w* \w us|strong="H6213"\w*, +\q2 \w and|strong="H3068"\w* \w we|strong="H3068"\w* \w are|strong="H3068"\w* \w glad|strong="H8056"\w*. +\q1 +\v 4 \w Restore|strong="H7725"\w* \w our|strong="H3068"\w* \w fortunes|strong="H7622"\w* \w again|strong="H7725"\w*, \w Yahweh|strong="H3068"\w*, +\q2 \w like|strong="H7725"\w* \w the|strong="H3068"\w* streams \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w Negev|strong="H5045"\w*. +\q1 +\v 5 Those who \w sow|strong="H2232"\w* \w in|strong="H2232"\w* \w tears|strong="H1832"\w* will \w reap|strong="H7114"\w* \w in|strong="H2232"\w* \w joy|strong="H7440"\w*. +\q2 +\v 6 \w He|strong="H1980"\w* \w who|strong="H1980"\w* \w goes|strong="H1980"\w* \w out|strong="H1980"\w* \w weeping|strong="H1058"\w*, \w carrying|strong="H5375"\w* \w seed|strong="H2233"\w* \w for|strong="H1058"\w* \w sowing|strong="H2233"\w*, +\q2 \w will|strong="H2233"\w* certainly \w come|strong="H1980"\w* \w again|strong="H3212"\w* \w with|strong="H1980"\w* \w joy|strong="H7440"\w*, \w carrying|strong="H5375"\w* \w his|strong="H5375"\w* sheaves. +\c 127 +\d A Song of Ascents. By Solomon. +\q1 +\v 1 \w Unless|strong="H3808"\w* \w Yahweh|strong="H3068"\w* \w builds|strong="H1129"\w* \w the|strong="H8104"\w* \w house|strong="H1004"\w*, +\q2 \w they|strong="H3068"\w* \w who|strong="H3068"\w* \w build|strong="H1129"\w* \w it|strong="H3808"\w* \w labor|strong="H5998"\w* \w in|strong="H3068"\w* \w vain|strong="H7723"\w*. +\q1 \w Unless|strong="H3808"\w* \w Yahweh|strong="H3068"\w* \w watches|strong="H8104"\w* \w over|strong="H3068"\w* \w the|strong="H8104"\w* \w city|strong="H5892"\w*, +\q2 \w the|strong="H8104"\w* \w watchman|strong="H8104"\w* \w guards|strong="H8104"\w* \w it|strong="H3808"\w* \w in|strong="H3068"\w* \w vain|strong="H7723"\w*. +\q1 +\v 2 \w It|strong="H5414"\w* \w is|strong="H3651"\w* \w vain|strong="H7723"\w* \w for|strong="H3427"\w* \w you|strong="H5414"\w* \w to|strong="H5414"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w early|strong="H7925"\w*, +\q2 \w to|strong="H5414"\w* \w stay|strong="H3427"\w* \w up|strong="H6965"\w* late, +\q2 eating \w the|strong="H5414"\w* \w bread|strong="H3899"\w* \w of|strong="H3427"\w* toil, +\q2 \w for|strong="H3427"\w* \w he|strong="H3651"\w* \w gives|strong="H5414"\w* \w sleep|strong="H8142"\w* \w to|strong="H5414"\w* \w his|strong="H5414"\w* loved ones. +\q1 +\v 3 \w Behold|strong="H2009"\w*, \w children|strong="H1121"\w* \w are|strong="H1121"\w* \w a|strong="H3068"\w* \w heritage|strong="H5159"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w The|strong="H3068"\w* \w fruit|strong="H6529"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* womb \w is|strong="H3068"\w* \w his|strong="H3068"\w* \w reward|strong="H7939"\w*. +\q1 +\v 4 \w As|strong="H3651"\w* \w arrows|strong="H2671"\w* \w in|strong="H1121"\w* \w the|strong="H3027"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w*, +\q2 \w so|strong="H3651"\w* \w are|strong="H1121"\w* \w the|strong="H3027"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w youth|strong="H5271"\w*. +\q1 +\v 5 Happy \w is|strong="H1696"\w* \w the|strong="H3588"\w* \w man|strong="H1397"\w* \w who|strong="H1992"\w* \w has|strong="H3588"\w* \w his|strong="H3588"\w* quiver \w full|strong="H4390"\w* \w of|strong="H8179"\w* \w them|strong="H1992"\w*. +\q2 \w They|strong="H1992"\w* won’t \w be|strong="H3808"\w* disappointed \w when|strong="H3588"\w* \w they|strong="H1992"\w* \w speak|strong="H1696"\w* \w with|strong="H4390"\w* \w their|strong="H1992"\w* enemies \w in|strong="H1696"\w* \w the|strong="H3588"\w* \w gate|strong="H8179"\w*. +\c 128 +\d A Song of Ascents. +\q1 +\v 1 Blessed \w is|strong="H3068"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w fears|strong="H3373"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w who|strong="H3605"\w* \w walks|strong="H1980"\w* \w in|strong="H1980"\w* \w his|strong="H3605"\w* \w ways|strong="H1870"\w*. +\q1 +\v 2 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H2896"\w* eat \w the|strong="H3588"\w* \w labor|strong="H3018"\w* \w of|strong="H3709"\w* \w your|strong="H3588"\w* \w hands|strong="H3709"\w*. +\q2 \w You|strong="H3588"\w* \w will|strong="H2896"\w* \w be|strong="H2896"\w* \w happy|strong="H2896"\w*, \w and|strong="H2896"\w* \w it|strong="H3588"\w* \w will|strong="H2896"\w* \w be|strong="H2896"\w* \w well|strong="H2896"\w* \w with|strong="H2896"\w* \w you|strong="H3588"\w*. +\q1 +\v 3 \w Your|strong="H5439"\w* wife \w will|strong="H1121"\w* \w be|strong="H1121"\w* \w as|strong="H1121"\w* \w a|strong="H3068"\w* \w fruitful|strong="H6509"\w* \w vine|strong="H1612"\w* \w in|strong="H1004"\w* \w the|strong="H5439"\w* \w innermost|strong="H3411"\w* \w parts|strong="H3411"\w* \w of|strong="H1121"\w* \w your|strong="H5439"\w* \w house|strong="H1004"\w*, +\q2 \w your|strong="H5439"\w* \w children|strong="H1121"\w* \w like|strong="H1004"\w* \w olive|strong="H2132"\w* shoots \w around|strong="H5439"\w* \w your|strong="H5439"\w* \w table|strong="H7979"\w*. +\q1 +\v 4 \w Behold|strong="H2009"\w*, \w this|strong="H3651"\w* \w is|strong="H3068"\w* \w how|strong="H3588"\w* \w the|strong="H3588"\w* \w man|strong="H1397"\w* \w who|strong="H3068"\w* \w fears|strong="H3373"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w blessed|strong="H1288"\w*. +\q2 +\v 5 \w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w bless|strong="H1288"\w* \w you|strong="H3605"\w* \w out|strong="H7200"\w* \w of|strong="H3068"\w* \w Zion|strong="H6726"\w*, +\q2 \w and|strong="H3068"\w* \w may|strong="H3068"\w* \w you|strong="H3605"\w* \w see|strong="H7200"\w* \w the|strong="H3605"\w* \w good|strong="H2898"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w life|strong="H2416"\w*. +\q1 +\v 6 \w Yes|strong="H7200"\w*, \w may|strong="H3478"\w* \w you|strong="H5921"\w* \w see|strong="H7200"\w* \w your|strong="H5921"\w* \w children|strong="H1121"\w*’s \w children|strong="H1121"\w*. +\q2 \w Peace|strong="H7965"\w* \w be|strong="H1121"\w* \w upon|strong="H5921"\w* \w Israel|strong="H3478"\w*. +\c 129 +\d A Song of Ascents. +\q1 +\v 1 \w Many|strong="H7227"\w* \w times|strong="H7227"\w* \w they|strong="H3478"\w* \w have|strong="H3478"\w* \w afflicted|strong="H6887"\w* \w me|strong="H4994"\w* \w from|strong="H3478"\w* \w my|strong="H3478"\w* \w youth|strong="H5271"\w* \w up|strong="H6887"\w*. +\q2 \w Let|strong="H4994"\w* \w Israel|strong="H3478"\w* \w now|strong="H4994"\w* \w say|strong="H3478"\w*: +\q1 +\v 2 \w many|strong="H7227"\w* \w times|strong="H7227"\w* \w they|strong="H3808"\w* \w have|strong="H1571"\w* \w afflicted|strong="H6887"\w* \w me|strong="H3808"\w* \w from|strong="H1571"\w* \w my|strong="H3808"\w* \w youth|strong="H5271"\w* \w up|strong="H6887"\w*, +\q2 \w yet|strong="H1571"\w* \w they|strong="H3808"\w* \w have|strong="H1571"\w* \w not|strong="H3808"\w* \w prevailed|strong="H3201"\w* \w against|strong="H1571"\w* \w me|strong="H3808"\w*. +\q1 +\v 3 \w The|strong="H5921"\w* \w plowers|strong="H2790"\w* \w plowed|strong="H2790"\w* \w on|strong="H5921"\w* \w my|strong="H5921"\w* \w back|strong="H1354"\w*. +\q2 \w They|strong="H5921"\w* made \w their|strong="H5921"\w* \w furrows|strong="H4618"\w* \w long|strong="H5921"\w*. +\q1 +\v 4 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w righteous|strong="H6662"\w*. +\q2 \w He|strong="H3068"\w* \w has|strong="H3068"\w* \w cut|strong="H7112"\w* apart \w the|strong="H3068"\w* \w cords|strong="H5688"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w wicked|strong="H7563"\w*. +\q1 +\v 5 Let \w them|strong="H8130"\w* \w be|strong="H6726"\w* disappointed \w and|strong="H6726"\w* \w turned|strong="H5472"\w* backward, +\q2 \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w hate|strong="H8130"\w* \w Zion|strong="H6726"\w*. +\q1 +\v 6 \w Let|strong="H1961"\w* \w them|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w the|strong="H1961"\w* \w grass|strong="H2682"\w* \w on|strong="H1961"\w* \w the|strong="H1961"\w* \w housetops|strong="H1406"\w*, +\q2 \w which|strong="H2682"\w* \w withers|strong="H3001"\w* \w before|strong="H6927"\w* \w it|strong="H1961"\w* \w grows|strong="H8025"\w* \w up|strong="H3001"\w*, +\q1 +\v 7 \w with|strong="H4390"\w* which \w the|strong="H4390"\w* \w reaper|strong="H7114"\w* doesn’t \w fill|strong="H4390"\w* \w his|strong="H4390"\w* \w hand|strong="H3709"\w*, +\q2 \w nor|strong="H3808"\w* \w he|strong="H3808"\w* \w who|strong="H3808"\w* binds \w sheaves|strong="H6014"\w*, \w his|strong="H4390"\w* \w bosom|strong="H2683"\w*. +\q1 +\v 8 \w Neither|strong="H3808"\w* \w do|strong="H3068"\w* those \w who|strong="H3068"\w* \w go|strong="H5674"\w* \w by|strong="H5674"\w* say, +\q2 “\w The|strong="H3068"\w* \w blessing|strong="H1293"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w be|strong="H3808"\w* \w on|strong="H5674"\w* \w you|strong="H1288"\w*. +\q2 \w We|strong="H8034"\w* \w bless|strong="H1288"\w* \w you|strong="H1288"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*.” +\c 130 +\d A Song of Ascents. +\q1 +\v 1 Out \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w depths|strong="H4615"\w* \w I|strong="H3068"\w* \w have|strong="H3068"\w* \w cried|strong="H7121"\w* \w to|strong="H3068"\w* \w you|strong="H7121"\w*, \w Yahweh|strong="H3068"\w*. +\q1 +\v 2 Lord, \w hear|strong="H8085"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*. +\q2 \w Let|strong="H1961"\w* \w your|strong="H8085"\w* ears \w be|strong="H1961"\w* \w attentive|strong="H7183"\w* \w to|strong="H1961"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w my|strong="H8085"\w* petitions. +\q1 +\v 3 If \w you|strong="H8104"\w*, \w Yah|strong="H3068"\w*, \w kept|strong="H8104"\w* \w a|strong="H3068"\w* record \w of|strong="H5771"\w* \w sins|strong="H5771"\w*, +\q2 \w Lord|strong="H3050"\w*, \w who|strong="H4310"\w* \w could|strong="H4310"\w* \w stand|strong="H5975"\w*? +\q1 +\v 4 \w But|strong="H3588"\w* there \w is|strong="H4616"\w* \w forgiveness|strong="H5547"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*, +\q2 \w therefore|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H5973"\w* \w feared|strong="H3372"\w*. +\q1 +\v 5 \w I|strong="H1697"\w* \w wait|strong="H3176"\w* \w for|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w My|strong="H3068"\w* \w soul|strong="H5315"\w* \w waits|strong="H6960"\w*. +\q2 \w I|strong="H1697"\w* \w hope|strong="H3176"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w word|strong="H1697"\w*. +\q1 +\v 6 \w My|strong="H8104"\w* \w soul|strong="H5315"\w* longs \w for|strong="H5315"\w* \w the|strong="H8104"\w* Lord \w more|strong="H5315"\w* than \w watchmen|strong="H8104"\w* \w long|strong="H5315"\w* \w for|strong="H5315"\w* \w the|strong="H8104"\w* \w morning|strong="H1242"\w*, +\q2 \w more|strong="H5315"\w* than \w watchmen|strong="H8104"\w* \w for|strong="H5315"\w* \w the|strong="H8104"\w* \w morning|strong="H1242"\w*. +\q1 +\v 7 \w Israel|strong="H3478"\w*, \w hope|strong="H3176"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w for|strong="H3588"\w* \w there|strong="H3068"\w* \w is|strong="H3068"\w* loving \w kindness|strong="H2617"\w* \w with|strong="H5973"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w Abundant|strong="H7235"\w* \w redemption|strong="H6304"\w* \w is|strong="H3068"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*. +\q1 +\v 8 \w He|strong="H1931"\w* \w will|strong="H3478"\w* \w redeem|strong="H6299"\w* \w Israel|strong="H3478"\w* \w from|strong="H3478"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w sins|strong="H5771"\w*. +\c 131 +\d A Song of Ascents. By David. +\q1 +\v 1 \w Yahweh|strong="H3068"\w*, \w my|strong="H3068"\w* \w heart|strong="H3820"\w* isn’t arrogant, \w nor|strong="H3808"\w* \w my|strong="H3068"\w* \w eyes|strong="H5869"\w* \w lofty|strong="H7311"\w*; +\q2 \w nor|strong="H3808"\w* \w do|strong="H3068"\w* \w I|strong="H3808"\w* concern \w myself|strong="H3820"\w* \w with|strong="H1980"\w* \w great|strong="H1419"\w* \w matters|strong="H1419"\w*, +\q2 \w or|strong="H3808"\w* \w things|strong="H1419"\w* \w too|strong="H4480"\w* \w wonderful|strong="H6381"\w* \w for|strong="H3068"\w* \w me|strong="H4480"\w*. +\q1 +\v 2 \w Surely|strong="H3808"\w* \w I|strong="H5921"\w* \w have|strong="H3808"\w* stilled \w and|strong="H5315"\w* \w quieted|strong="H1826"\w* \w my|strong="H5921"\w* \w soul|strong="H5315"\w*, +\q2 \w like|strong="H3808"\w* \w a|strong="H3068"\w* \w weaned|strong="H1580"\w* \w child|strong="H1580"\w* \w with|strong="H5921"\w* \w his|strong="H5921"\w* mother, +\q2 \w like|strong="H3808"\w* \w a|strong="H3068"\w* \w weaned|strong="H1580"\w* \w child|strong="H1580"\w* \w is|strong="H5315"\w* \w my|strong="H5921"\w* \w soul|strong="H5315"\w* \w within|strong="H5921"\w* \w me|strong="H5315"\w*. +\q1 +\v 3 \w Israel|strong="H3478"\w*, \w hope|strong="H3176"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w from|strong="H3478"\w* \w this|strong="H6258"\w* \w time|strong="H6258"\w* forward \w and|strong="H3478"\w* \w forever|strong="H5769"\w* \w more|strong="H5704"\w*. +\c 132 +\d A Song of Ascents. +\q1 +\v 1 \w Yahweh|strong="H3068"\w*, \w remember|strong="H2142"\w* \w David|strong="H1732"\w* \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w affliction|strong="H6031"\w*, +\q1 +\v 2 how \w he|strong="H3068"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* \w vowed|strong="H5087"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* Mighty \w One|strong="H3068"\w* \w of|strong="H3068"\w* \w Jacob|strong="H3290"\w*: +\q1 +\v 3 “\w Surely|strong="H5927"\w* \w I|strong="H5921"\w* \w will|strong="H1004"\w* \w not|strong="H5927"\w* \w come|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H5921"\w* structure \w of|strong="H1004"\w* \w my|strong="H5921"\w* \w house|strong="H1004"\w*, +\q2 nor \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w into|strong="H5927"\w* \w my|strong="H5921"\w* \w bed|strong="H3326"\w*; +\q1 +\v 4 \w I|strong="H5414"\w* \w will|strong="H5869"\w* \w not|strong="H5414"\w* \w give|strong="H5414"\w* \w sleep|strong="H8153"\w* \w to|strong="H5414"\w* \w my|strong="H5414"\w* \w eyes|strong="H5869"\w*, +\q2 or \w slumber|strong="H8572"\w* \w to|strong="H5414"\w* \w my|strong="H5414"\w* \w eyelids|strong="H6079"\w*, +\q1 +\v 5 \w until|strong="H5704"\w* \w I|strong="H5704"\w* \w find|strong="H4672"\w* \w out|strong="H4672"\w* \w a|strong="H3068"\w* \w place|strong="H4725"\w* \w for|strong="H5704"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w a|strong="H3068"\w* \w dwelling|strong="H4908"\w* \w for|strong="H5704"\w* \w the|strong="H3068"\w* Mighty \w One|strong="H3068"\w* \w of|strong="H3068"\w* \w Jacob|strong="H3290"\w*.” +\q1 +\v 6 \w Behold|strong="H2009"\w*, \w we|strong="H3068"\w* \w heard|strong="H8085"\w* \w of|strong="H7704"\w* \w it|strong="H4672"\w* \w in|strong="H8085"\w* Ephrathah. +\q2 \w We|strong="H8085"\w* \w found|strong="H4672"\w* \w it|strong="H4672"\w* \w in|strong="H8085"\w* \w the|strong="H8085"\w* \w field|strong="H7704"\w* \w of|strong="H7704"\w* \w Jaar|strong="H3293"\w*. +\q1 +\v 7 “We \w will|strong="H7272"\w* \w go|strong="H7272"\w* into \w his|strong="H7812"\w* \w dwelling|strong="H4908"\w* \w place|strong="H4908"\w*. +\q2 We \w will|strong="H7272"\w* \w worship|strong="H7812"\w* \w at|strong="H4908"\w* \w his|strong="H7812"\w* \w footstool|strong="H1916"\w*.” +\q1 +\v 8 \w Arise|strong="H6965"\w*, \w Yahweh|strong="H3068"\w*, \w into|strong="H5797"\w* \w your|strong="H3068"\w* \w resting|strong="H4496"\w* \w place|strong="H4496"\w*, +\q2 \w you|strong="H6965"\w*, \w and|strong="H6965"\w* \w the|strong="H3068"\w* ark \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w strength|strong="H5797"\w*. +\q1 +\v 9 Let your \w priests|strong="H3548"\w* \w be|strong="H3548"\w* \w clothed|strong="H3847"\w* \w with|strong="H3847"\w* \w righteousness|strong="H6664"\w*. +\q2 Let your \w saints|strong="H2623"\w* \w shout|strong="H7442"\w* \w for|strong="H7442"\w* \w joy|strong="H7442"\w*! +\q1 +\v 10 \w For|strong="H6440"\w* \w your|strong="H6440"\w* \w servant|strong="H5650"\w* \w David|strong="H1732"\w*’s \w sake|strong="H5668"\w*, +\q2 don’t \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H6440"\w* \w your|strong="H6440"\w* \w anointed|strong="H4899"\w* one. +\q1 +\v 11 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w sworn|strong="H7650"\w* \w to|strong="H7725"\w* \w David|strong="H1732"\w* \w in|strong="H3068"\w* \w truth|strong="H3808"\w*. +\q2 \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w turn|strong="H7725"\w* \w from|strong="H4480"\w* \w it|strong="H7725"\w*: +\q2 “\w I|strong="H3808"\w* \w will|strong="H3068"\w* \w set|strong="H7896"\w* \w the|strong="H3068"\w* \w fruit|strong="H6529"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* body \w on|strong="H3068"\w* \w your|strong="H3068"\w* \w throne|strong="H3678"\w*. +\q1 +\v 12 \w If|strong="H1121"\w* \w your|strong="H8104"\w* \w children|strong="H1121"\w* \w will|strong="H1571"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w covenant|strong="H1285"\w*, +\q2 \w my|strong="H8104"\w* \w testimony|strong="H5713"\w* \w that|strong="H1121"\w* \w I|strong="H1571"\w* \w will|strong="H1571"\w* \w teach|strong="H3925"\w* \w them|strong="H3925"\w*, +\q2 \w their|strong="H3925"\w* \w children|strong="H1121"\w* \w also|strong="H1571"\w* \w will|strong="H1571"\w* \w sit|strong="H3427"\w* \w on|strong="H3427"\w* \w your|strong="H8104"\w* \w throne|strong="H3678"\w* \w forever|strong="H5703"\w* \w more|strong="H1571"\w*.” +\q1 +\v 13 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* chosen \w Zion|strong="H6726"\w*. +\q2 \w He|strong="H3588"\w* \w has|strong="H3068"\w* desired \w it|strong="H3588"\w* \w for|strong="H3588"\w* \w his|strong="H3068"\w* \w habitation|strong="H4186"\w*. +\q1 +\v 14 “\w This|strong="H2063"\w* \w is|strong="H3588"\w* \w my|strong="H3588"\w* \w resting|strong="H4496"\w* \w place|strong="H4496"\w* \w forever|strong="H5703"\w*. +\q2 \w I|strong="H3588"\w* \w will|strong="H3588"\w* \w live|strong="H3427"\w* \w here|strong="H6311"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3588"\w* desired \w it|strong="H3588"\w*. +\q1 +\v 15 \w I|strong="H1288"\w* will \w abundantly|strong="H1288"\w* \w bless|strong="H1288"\w* \w her|strong="H7646"\w* \w provision|strong="H6718"\w*. +\q2 \w I|strong="H1288"\w* will \w satisfy|strong="H7646"\w* \w her|strong="H7646"\w* poor \w with|strong="H7646"\w* \w bread|strong="H3899"\w*. +\q1 +\v 16 I \w will|strong="H2623"\w* also \w clothe|strong="H3847"\w* \w her|strong="H3847"\w* \w priests|strong="H3548"\w* \w with|strong="H3847"\w* \w salvation|strong="H3468"\w*. +\q2 \w Her|strong="H3847"\w* \w saints|strong="H2623"\w* \w will|strong="H2623"\w* \w shout|strong="H7442"\w* \w aloud|strong="H7442"\w* \w for|strong="H7442"\w* \w joy|strong="H7442"\w*. +\q1 +\v 17 \w I|strong="H6779"\w* \w will|strong="H5216"\w* \w make|strong="H6779"\w* \w the|strong="H8033"\w* \w horn|strong="H7161"\w* \w of|strong="H7161"\w* \w David|strong="H1732"\w* \w to|strong="H1732"\w* \w bud|strong="H6779"\w* \w there|strong="H8033"\w*. +\q2 \w I|strong="H6779"\w* \w have|strong="H1732"\w* \w ordained|strong="H6186"\w* \w a|strong="H3068"\w* \w lamp|strong="H5216"\w* \w for|strong="H8033"\w* \w my|strong="H1732"\w* \w anointed|strong="H4899"\w*. +\q1 +\v 18 \w I|strong="H5921"\w* will \w clothe|strong="H3847"\w* \w his|strong="H5921"\w* enemies \w with|strong="H3847"\w* \w shame|strong="H1322"\w*, +\q2 \w but|strong="H5921"\w* \w on|strong="H5921"\w* himself, \w his|strong="H5921"\w* \w crown|strong="H5145"\w* will \w shine|strong="H6692"\w*.” +\c 133 +\d A Song of Ascents. By David. +\q1 +\v 1 \w See|strong="H2009"\w* \w how|strong="H4100"\w* \w good|strong="H2896"\w* \w and|strong="H1732"\w* \w how|strong="H4100"\w* \w pleasant|strong="H5273"\w* \w it|strong="H2896"\w* \w is|strong="H4100"\w* +\q2 \w for|strong="H3427"\w* brothers \w to|strong="H1732"\w* \w live|strong="H3427"\w* \w together|strong="H3162"\w* \w in|strong="H3427"\w* \w unity|strong="H3162"\w*! +\q1 +\v 2 \w It|strong="H5921"\w* \w is|strong="H2896"\w* \w like|strong="H3381"\w* \w the|strong="H5921"\w* \w precious|strong="H2896"\w* \w oil|strong="H8081"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w*, +\q2 \w that|strong="H8081"\w* \w ran|strong="H7218"\w* \w down|strong="H3381"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w beard|strong="H2206"\w*, +\q2 \w even|strong="H5921"\w* Aaron’s \w beard|strong="H2206"\w*, +\q2 \w that|strong="H8081"\w* \w came|strong="H3381"\w* \w down|strong="H3381"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w edge|strong="H6310"\w* \w of|strong="H7218"\w* \w his|strong="H5921"\w* \w robes|strong="H4060"\w*, +\q1 +\v 3 \w like|strong="H3381"\w* \w the|strong="H5921"\w* \w dew|strong="H2919"\w* \w of|strong="H3068"\w* \w Hermon|strong="H2768"\w*, +\q2 \w that|strong="H3588"\w* \w comes|strong="H3381"\w* \w down|strong="H3381"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w hills|strong="H2042"\w* \w of|strong="H3068"\w* \w Zion|strong="H6726"\w*; +\q2 \w for|strong="H3588"\w* \w there|strong="H8033"\w* \w Yahweh|strong="H3068"\w* gives \w the|strong="H5921"\w* \w blessing|strong="H1293"\w*, +\q2 \w even|strong="H5704"\w* \w life|strong="H2416"\w* \w forever|strong="H5769"\w* \w more|strong="H5704"\w*. +\c 134 +\d A Song of Ascents. +\q1 +\v 1 \w Look|strong="H2009"\w*! \w Praise|strong="H1288"\w* \w Yahweh|strong="H3068"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* \w servants|strong="H5650"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w who|strong="H3605"\w* \w stand|strong="H5975"\w* \w by|strong="H3068"\w* \w night|strong="H3915"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*! +\q1 +\v 2 \w Lift|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H3068"\w* \w hands|strong="H3027"\w* \w in|strong="H3068"\w* \w the|strong="H5375"\w* \w sanctuary|strong="H6944"\w*. +\q2 \w Praise|strong="H1288"\w* \w Yahweh|strong="H3068"\w*! +\q1 +\v 3 \w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w bless|strong="H1288"\w* \w you|strong="H6213"\w* \w from|strong="H3068"\w* \w Zion|strong="H6726"\w*, +\q2 \w even|strong="H6213"\w* \w he|strong="H6213"\w* \w who|strong="H3068"\w* \w made|strong="H6213"\w* \w heaven|strong="H8064"\w* \w and|strong="H3068"\w* \w earth|strong="H8064"\w*. +\c 135 +\q1 +\v 1 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*! +\q2 \w Praise|strong="H1984"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*! +\q2 \w Praise|strong="H1984"\w* \w him|strong="H1984"\w*, you \w servants|strong="H5650"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q1 +\v 2 \w you|strong="H1004"\w* \w who|strong="H3068"\w* \w stand|strong="H5975"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, +\q2 \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w courts|strong="H2691"\w* \w of|strong="H1004"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\q1 +\v 3 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w*. +\q2 \w Sing|strong="H2167"\w* \w praises|strong="H2167"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w*, \w for|strong="H3588"\w* \w that|strong="H3588"\w* \w is|strong="H3068"\w* \w pleasant|strong="H5273"\w*. +\q1 +\v 4 \w For|strong="H3588"\w* \w Yah|strong="H3068"\w* \w has|strong="H3478"\w* chosen \w Jacob|strong="H3290"\w* \w for|strong="H3588"\w* himself, +\q2 \w Israel|strong="H3478"\w* \w for|strong="H3588"\w* \w his|strong="H3478"\w* own \w possession|strong="H5459"\w*. +\q1 +\v 5 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w great|strong="H1419"\w*, +\q2 \w that|strong="H3588"\w* \w our|strong="H3068"\w* \w Lord|strong="H3068"\w* \w is|strong="H3068"\w* above \w all|strong="H3605"\w* gods. +\q1 +\v 6 \w Whatever|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w pleased|strong="H2654"\w*, \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w*, +\q2 \w in|strong="H3068"\w* \w heaven|strong="H8064"\w* \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w earth|strong="H8064"\w*, \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w seas|strong="H3220"\w* \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w deeps|strong="H8415"\w*. +\q1 +\v 7 \w He|strong="H6213"\w* \w causes|strong="H3318"\w* \w the|strong="H6213"\w* \w clouds|strong="H5387"\w* \w to|strong="H3318"\w* \w rise|strong="H5927"\w* \w from|strong="H3318"\w* \w the|strong="H6213"\w* \w ends|strong="H7097"\w* \w of|strong="H7307"\w* \w the|strong="H6213"\w* \w earth|strong="H5927"\w*. +\q2 \w He|strong="H6213"\w* \w makes|strong="H6213"\w* \w lightnings|strong="H1300"\w* \w with|strong="H6213"\w* \w the|strong="H6213"\w* \w rain|strong="H4306"\w*. +\q2 \w He|strong="H6213"\w* \w brings|strong="H3318"\w* \w the|strong="H6213"\w* \w wind|strong="H7307"\w* \w out|strong="H3318"\w* \w of|strong="H7307"\w* \w his|strong="H6213"\w* treasuries. +\q1 +\v 8 \w He|strong="H5704"\w* \w struck|strong="H5221"\w* \w the|strong="H5221"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1060"\w* \w Egypt|strong="H4714"\w*, +\q2 both \w of|strong="H1060"\w* man \w and|strong="H4714"\w* animal. +\q1 +\v 9 \w He|strong="H3605"\w* \w sent|strong="H7971"\w* signs \w and|strong="H7971"\w* \w wonders|strong="H4159"\w* \w into|strong="H8432"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H5650"\w* \w you|strong="H3605"\w*, \w Egypt|strong="H4714"\w*, +\q2 \w on|strong="H7971"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H7971"\w* \w on|strong="H7971"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w*. +\q1 +\v 10 \w He|strong="H5221"\w* \w struck|strong="H5221"\w* \w many|strong="H7227"\w* \w nations|strong="H1471"\w*, +\q2 \w and|strong="H4428"\w* \w killed|strong="H2026"\w* \w mighty|strong="H6099"\w* \w kings|strong="H4428"\w*— +\q1 +\v 11 \w Sihon|strong="H5511"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* Amorites, +\q2 \w Og|strong="H5747"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Bashan|strong="H1316"\w*, +\q2 \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H4428"\w* \w Canaan|strong="H3667"\w*— +\q1 +\v 12 \w and|strong="H3478"\w* \w gave|strong="H5414"\w* \w their|strong="H5414"\w* \w land|strong="H5159"\w* \w for|strong="H3478"\w* \w a|strong="H3068"\w* \w heritage|strong="H5159"\w*, +\q2 \w a|strong="H3068"\w* \w heritage|strong="H5159"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w his|strong="H5414"\w* \w people|strong="H5971"\w*. +\q1 +\v 13 \w Your|strong="H3068"\w* \w name|strong="H8034"\w*, \w Yahweh|strong="H3068"\w*, \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q2 \w your|strong="H3068"\w* \w renown|strong="H8034"\w*, \w Yahweh|strong="H3068"\w*, \w throughout|strong="H1755"\w* \w all|strong="H1755"\w* \w generations|strong="H1755"\w*. +\q1 +\v 14 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w judge|strong="H1777"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w* +\q2 \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w compassion|strong="H5162"\w* \w on|strong="H5921"\w* \w his|strong="H3068"\w* \w servants|strong="H5650"\w*. +\b +\q1 +\v 15 \w The|strong="H3027"\w* \w idols|strong="H6091"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w nations|strong="H1471"\w* \w are|strong="H1471"\w* \w silver|strong="H3701"\w* \w and|strong="H3701"\w* \w gold|strong="H2091"\w*, +\q2 \w the|strong="H3027"\w* \w work|strong="H4639"\w* \w of|strong="H3027"\w* men’s \w hands|strong="H3027"\w*. +\q1 +\v 16 \w They|strong="H1992"\w* \w have|strong="H5869"\w* \w mouths|strong="H6310"\w*, \w but|strong="H3808"\w* \w they|strong="H1992"\w* \w can|strong="H7200"\w*’t \w speak|strong="H1696"\w*. +\q2 \w They|strong="H1992"\w* \w have|strong="H5869"\w* \w eyes|strong="H5869"\w*, \w but|strong="H3808"\w* \w they|strong="H1992"\w* \w can|strong="H7200"\w*’t \w see|strong="H7200"\w*. +\q1 +\v 17 \w They|strong="H1992"\w* \w have|strong="H3426"\w* ears, \w but|strong="H3808"\w* \w they|strong="H1992"\w* \w can|strong="H7307"\w*’t hear, +\q2 \w neither|strong="H3808"\w* \w is|strong="H3426"\w* \w there|strong="H3426"\w* \w any|strong="H3426"\w* \w breath|strong="H7307"\w* \w in|strong="H6310"\w* \w their|strong="H1992"\w* \w mouths|strong="H6310"\w*. +\q1 +\v 18 \w Those|strong="H3605"\w* \w who|strong="H3605"\w* \w make|strong="H6213"\w* \w them|strong="H6213"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H3644"\w* \w them|strong="H6213"\w*, +\q2 yes, \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* trusts \w in|strong="H6213"\w* \w them|strong="H6213"\w*. +\q1 +\v 19 \w House|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w praise|strong="H1288"\w* \w Yahweh|strong="H3068"\w*! +\q2 \w House|strong="H1004"\w* \w of|strong="H1004"\w* Aaron, \w praise|strong="H1288"\w* \w Yahweh|strong="H3068"\w*! +\q1 +\v 20 \w House|strong="H1004"\w* \w of|strong="H1004"\w* \w Levi|strong="H3878"\w*, \w praise|strong="H1288"\w* \w Yahweh|strong="H3068"\w*! +\q2 \w You|strong="H1288"\w* \w who|strong="H3068"\w* \w fear|strong="H3373"\w* \w Yahweh|strong="H3068"\w*, \w praise|strong="H1288"\w* \w Yahweh|strong="H3068"\w*! +\q1 +\v 21 \w Blessed|strong="H1288"\w* \w be|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w from|strong="H3068"\w* \w Zion|strong="H6726"\w*, +\q2 \w who|strong="H3068"\w* \w dwells|strong="H7931"\w* \w in|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*. +\q1 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*! +\c 136 +\q1 +\v 1 \w Give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3068"\w* \w loving|strong="H2896"\w* \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*. +\q1 +\v 2 \w Give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H2617"\w* \w the|strong="H3588"\w* God \w of|strong="H2617"\w* gods, +\q2 \w for|strong="H3588"\w* \w his|strong="H3588"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*. +\q1 +\v 3 \w Give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H2617"\w* \w the|strong="H3588"\w* \w Lord|strong="H2617"\w* \w of|strong="H2617"\w* lords, +\q2 \w for|strong="H3588"\w* \w his|strong="H3588"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 4 \w to|strong="H6213"\w* \w him|strong="H6213"\w* \w who|strong="H3588"\w* \w alone|strong="H6213"\w* \w does|strong="H6213"\w* \w great|strong="H1419"\w* \w wonders|strong="H6381"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H6213"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 5 \w to|strong="H6213"\w* \w him|strong="H6213"\w* \w who|strong="H3588"\w* \w by|strong="H6213"\w* \w understanding|strong="H8394"\w* \w made|strong="H6213"\w* \w the|strong="H3588"\w* \w heavens|strong="H8064"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H6213"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 6 \w to|strong="H5921"\w* \w him|strong="H5921"\w* \w who|strong="H3588"\w* \w spread|strong="H7554"\w* \w out|strong="H5921"\w* \w the|strong="H5921"\w* earth \w above|strong="H5921"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H5921"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 7 \w to|strong="H6213"\w* \w him|strong="H6213"\w* \w who|strong="H3588"\w* \w made|strong="H6213"\w* \w the|strong="H3588"\w* \w great|strong="H1419"\w* lights, +\q2 \w for|strong="H3588"\w* \w his|strong="H6213"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 8 \w the|strong="H3588"\w* \w sun|strong="H8121"\w* \w to|strong="H3117"\w* \w rule|strong="H4475"\w* \w by|strong="H3117"\w* \w day|strong="H3117"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3588"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 9 \w the|strong="H3588"\w* \w moon|strong="H3394"\w* \w and|strong="H5769"\w* \w stars|strong="H3556"\w* \w to|strong="H2617"\w* \w rule|strong="H4475"\w* \w by|strong="H3915"\w* \w night|strong="H3915"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3588"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 10 \w to|strong="H4714"\w* \w him|strong="H5221"\w* \w who|strong="H3588"\w* \w struck|strong="H5221"\w* \w down|strong="H5221"\w* \w the|strong="H3588"\w* \w Egyptian|strong="H4714"\w* \w firstborn|strong="H1060"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H5221"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 11 \w and|strong="H3478"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w Israel|strong="H3478"\w* \w from|strong="H3318"\w* \w among|strong="H8432"\w* \w them|strong="H3318"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3478"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 12 \w with|strong="H3027"\w* \w a|strong="H3068"\w* \w strong|strong="H2389"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w with|strong="H3027"\w* \w an|strong="H3588"\w* \w outstretched|strong="H5186"\w* \w arm|strong="H2220"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H5186"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 13 \w to|strong="H3220"\w* \w him|strong="H3588"\w* \w who|strong="H3588"\w* \w divided|strong="H1504"\w* \w the|strong="H3588"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w* apart, +\q2 \w for|strong="H3588"\w* \w his|strong="H3588"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 14 \w and|strong="H3478"\w* \w made|strong="H3478"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H3588"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w it|strong="H3588"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3478"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 15 \w but|strong="H3588"\w* \w overthrew|strong="H5287"\w* \w Pharaoh|strong="H6547"\w* \w and|strong="H5769"\w* \w his|strong="H3588"\w* \w army|strong="H2428"\w* \w in|strong="H3220"\w* \w the|strong="H3588"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3588"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 16 \w to|strong="H3212"\w* \w him|strong="H3588"\w* \w who|strong="H5971"\w* \w led|strong="H3212"\w* \w his|strong="H3588"\w* \w people|strong="H5971"\w* \w through|strong="H3212"\w* \w the|strong="H3588"\w* \w wilderness|strong="H4057"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3588"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 17 \w to|strong="H4428"\w* \w him|strong="H5221"\w* \w who|strong="H4428"\w* \w struck|strong="H5221"\w* \w great|strong="H1419"\w* \w kings|strong="H4428"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H5221"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 18 \w and|strong="H4428"\w* \w killed|strong="H2026"\w* mighty \w kings|strong="H4428"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3588"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 19 \w Sihon|strong="H5511"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* Amorites, +\q2 \w for|strong="H3588"\w* \w his|strong="H3588"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 20 \w Og|strong="H5747"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Bashan|strong="H1316"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3588"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 21 \w and|strong="H5769"\w* \w gave|strong="H5414"\w* \w their|strong="H5414"\w* \w land|strong="H5159"\w* \w as|strong="H3588"\w* \w an|strong="H5414"\w* \w inheritance|strong="H5159"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H5414"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 22 \w even|strong="H3588"\w* \w a|strong="H3068"\w* \w heritage|strong="H5159"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w* \w his|strong="H3478"\w* \w servant|strong="H5650"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3478"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 23 \w who|strong="H3588"\w* \w remembered|strong="H2142"\w* \w us|strong="H3588"\w* \w in|strong="H2142"\w* \w our|strong="H3588"\w* \w low|strong="H8216"\w* \w estate|strong="H8216"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H2142"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 24 \w and|strong="H5769"\w* \w has|strong="H3588"\w* \w delivered|strong="H6862"\w* \w us|strong="H3588"\w* \w from|strong="H6862"\w* \w our|strong="H3588"\w* \w adversaries|strong="H6862"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3588"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*; +\q1 +\v 25 \w who|strong="H3605"\w* \w gives|strong="H5414"\w* \w food|strong="H3899"\w* \w to|strong="H5414"\w* \w every|strong="H3605"\w* creature, +\q2 \w for|strong="H3588"\w* \w his|strong="H3605"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*. +\q1 +\v 26 Oh \w give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H2617"\w* \w the|strong="H3588"\w* \w God|strong="H8064"\w* \w of|strong="H8064"\w* \w heaven|strong="H8064"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3588"\w* loving \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*. +\c 137 +\q1 +\v 1 \w By|strong="H5921"\w* \w the|strong="H5921"\w* \w rivers|strong="H5104"\w* \w of|strong="H3427"\w* Babylon, \w there|strong="H8033"\w* \w we|strong="H3068"\w* \w sat|strong="H3427"\w* \w down|strong="H3427"\w*. +\q2 \w Yes|strong="H1571"\w*, \w we|strong="H3068"\w* \w wept|strong="H1058"\w*, \w when|strong="H3427"\w* \w we|strong="H3068"\w* \w remembered|strong="H2142"\w* \w Zion|strong="H6726"\w*. +\q1 +\v 2 \w On|strong="H5921"\w* \w the|strong="H5921"\w* \w willows|strong="H6155"\w* \w in|strong="H5921"\w* \w that|strong="H5921"\w* land, +\q2 \w we|strong="H3068"\w* \w hung|strong="H8518"\w* \w up|strong="H5921"\w* \w our|strong="H5921"\w* \w harps|strong="H3658"\w*. +\q1 +\v 3 \w For|strong="H3588"\w* \w there|strong="H8033"\w*, \w those|strong="H3588"\w* \w who|strong="H3588"\w* \w led|strong="H7617"\w* \w us|strong="H3588"\w* \w captive|strong="H7617"\w* \w asked|strong="H7592"\w* \w us|strong="H3588"\w* \w for|strong="H3588"\w* \w songs|strong="H7892"\w*. +\q2 \w Those|strong="H3588"\w* \w who|strong="H3588"\w* tormented \w us|strong="H3588"\w* \w demanded|strong="H7592"\w* \w songs|strong="H7892"\w* \w of|strong="H1697"\w* \w joy|strong="H8057"\w*: +\q2 “\w Sing|strong="H7891"\w* \w us|strong="H3588"\w* \w one|strong="H3588"\w* \w of|strong="H1697"\w* \w the|strong="H3588"\w* \w songs|strong="H7892"\w* \w of|strong="H1697"\w* \w Zion|strong="H6726"\w*!” +\q1 +\v 4 How can \w we|strong="H3068"\w* \w sing|strong="H7891"\w* \w Yahweh|strong="H3068"\w*’s \w song|strong="H7892"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w foreign|strong="H5236"\w* land? +\q1 +\v 5 If I \w forget|strong="H7911"\w* you, \w Jerusalem|strong="H3389"\w*, +\q2 let \w my|strong="H7911"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w forget|strong="H7911"\w* its skill. +\q1 +\v 6 \w Let|strong="H3808"\w* \w my|strong="H5921"\w* \w tongue|strong="H3956"\w* \w stick|strong="H1692"\w* \w to|strong="H5927"\w* \w the|strong="H5921"\w* \w roof|strong="H2441"\w* \w of|strong="H7218"\w* \w my|strong="H5921"\w* \w mouth|strong="H2441"\w* if \w I|strong="H5921"\w* don’t \w remember|strong="H2142"\w* \w you|strong="H5921"\w*, +\q2 if \w I|strong="H5921"\w* don’t \w prefer|strong="H5927"\w* \w Jerusalem|strong="H3389"\w* \w above|strong="H5921"\w* \w my|strong="H5921"\w* \w chief|strong="H7218"\w* \w joy|strong="H8057"\w*. +\q1 +\v 7 \w Remember|strong="H2142"\w*, \w Yahweh|strong="H3068"\w*, \w against|strong="H3068"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* Edom \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*, +\q2 \w who|strong="H3068"\w* said, “\w Raze|strong="H6168"\w* \w it|strong="H5704"\w*! +\q2 \w Raze|strong="H6168"\w* \w it|strong="H5704"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w its|strong="H5704"\w* \w foundation|strong="H3247"\w*!” +\q1 +\v 8 \w Daughter|strong="H1323"\w* \w of|strong="H1323"\w* Babylon, doomed \w to|strong="H1323"\w* destruction, +\q2 \w he|strong="H1576"\w* \w will|strong="H1323"\w* be happy \w who|strong="H1323"\w* \w repays|strong="H7999"\w* \w you|strong="H1580"\w*, +\q2 \w as|strong="H1323"\w* \w you|strong="H1580"\w* \w have|strong="H1323"\w* \w done|strong="H1580"\w* \w to|strong="H1323"\w* us. +\q1 +\v 9 Happy shall \w he|strong="H5553"\w* be, +\q2 who takes \w and|strong="H5768"\w* \w dashes|strong="H5310"\w* \w your|strong="H5310"\w* \w little|strong="H5768"\w* \w ones|strong="H5768"\w* against \w the|strong="H5310"\w* \w rock|strong="H5553"\w*. +\c 138 +\d By David. +\q1 +\v 1 \w I|strong="H3605"\w* \w will|strong="H3820"\w* \w give|strong="H3034"\w* \w you|strong="H3605"\w* \w thanks|strong="H3034"\w* \w with|strong="H1732"\w* \w my|strong="H3605"\w* \w whole|strong="H3605"\w* \w heart|strong="H3820"\w*. +\q2 \w Before|strong="H5048"\w* \w the|strong="H3605"\w* gods,\f + \fr 138:1 \ft The word elohim, used here, usually means “God” but can also mean “gods”, “princes”, or “angels”.\f* \w I|strong="H3605"\w* \w will|strong="H3820"\w* \w sing|strong="H2167"\w* \w praises|strong="H2167"\w* \w to|strong="H3820"\w* \w you|strong="H3605"\w*. +\q1 +\v 2 \w I|strong="H3588"\w* \w will|strong="H8034"\w* \w bow|strong="H7812"\w* \w down|strong="H7812"\w* \w toward|strong="H5921"\w* \w your|strong="H3605"\w* \w holy|strong="H6944"\w* \w temple|strong="H1964"\w*, +\q2 \w and|strong="H2617"\w* \w give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H5921"\w* \w your|strong="H3605"\w* \w Name|strong="H8034"\w* \w for|strong="H3588"\w* \w your|strong="H3605"\w* loving \w kindness|strong="H2617"\w* \w and|strong="H2617"\w* \w for|strong="H3588"\w* \w your|strong="H3605"\w* truth; +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3605"\w* \w exalted|strong="H1431"\w* \w your|strong="H3605"\w* \w Name|strong="H8034"\w* \w and|strong="H2617"\w* \w your|strong="H3605"\w* Word \w above|strong="H5921"\w* \w all|strong="H3605"\w*. +\q1 +\v 3 \w In|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w called|strong="H7121"\w*, \w you|strong="H3117"\w* \w answered|strong="H6030"\w* \w me|strong="H5315"\w*. +\q2 \w You|strong="H3117"\w* encouraged \w me|strong="H5315"\w* \w with|strong="H3117"\w* \w strength|strong="H5797"\w* \w in|strong="H3117"\w* \w my|strong="H7121"\w* \w soul|strong="H5315"\w*. +\q1 +\v 4 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* earth \w will|strong="H3068"\w* \w give|strong="H3034"\w* \w you|strong="H3588"\w* \w thanks|strong="H3034"\w*, \w Yahweh|strong="H3068"\w*, +\q2 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w the|strong="H3605"\w* \w words|strong="H6310"\w* \w of|strong="H4428"\w* \w your|strong="H3068"\w* \w mouth|strong="H6310"\w*. +\q1 +\v 5 \w Yes|strong="H3588"\w*, \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w sing|strong="H7891"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w ways|strong="H1870"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w is|strong="H3068"\w* \w great|strong="H1419"\w*! +\q1 +\v 6 \w For|strong="H3588"\w* \w though|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w high|strong="H1364"\w*, \w yet|strong="H3588"\w* \w he|strong="H3588"\w* \w looks|strong="H7200"\w* \w after|strong="H3588"\w* \w the|strong="H7200"\w* \w lowly|strong="H8217"\w*; +\q2 \w but|strong="H3588"\w* \w he|strong="H3588"\w* \w knows|strong="H3045"\w* \w the|strong="H7200"\w* \w proud|strong="H7311"\w* \w from|strong="H3068"\w* \w afar|strong="H4801"\w*. +\q1 +\v 7 Though \w I|strong="H5921"\w* \w walk|strong="H3212"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H7130"\w* \w of|strong="H3027"\w* \w trouble|strong="H6869"\w*, \w you|strong="H7971"\w* \w will|strong="H3027"\w* \w revive|strong="H2421"\w* \w me|strong="H7971"\w*. +\q2 \w You|strong="H7971"\w* \w will|strong="H3027"\w* \w stretch|strong="H7971"\w* \w out|strong="H7971"\w* \w your|strong="H5921"\w* \w hand|strong="H3027"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* wrath \w of|strong="H3027"\w* \w my|strong="H5921"\w* \w enemies|strong="H3027"\w*. +\q2 \w Your|strong="H5921"\w* \w right|strong="H3225"\w* \w hand|strong="H3027"\w* \w will|strong="H3027"\w* \w save|strong="H3467"\w* \w me|strong="H7971"\w*. +\q1 +\v 8 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* fulfill \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w concerns|strong="H1157"\w* \w me|strong="H1157"\w*. +\q2 \w Your|strong="H3068"\w* loving \w kindness|strong="H2617"\w*, \w Yahweh|strong="H3068"\w*, \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*. +\q2 Don’t \w forsake|strong="H7503"\w* \w the|strong="H3068"\w* \w works|strong="H4639"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w own|strong="H5769"\w* \w hands|strong="H3027"\w*. +\c 139 +\d For the Chief Musician. A Psalm by David. +\q1 +\v 1 \w Yahweh|strong="H3068"\w*, \w you|strong="H3045"\w* \w have|strong="H3068"\w* \w searched|strong="H2713"\w* \w me|strong="H3045"\w*, +\q2 \w and|strong="H3068"\w* \w you|strong="H3045"\w* \w know|strong="H3045"\w* \w me|strong="H3045"\w*. +\q1 +\v 2 \w You|strong="H3045"\w* \w know|strong="H3045"\w* \w my|strong="H3045"\w* \w sitting|strong="H3427"\w* \w down|strong="H3427"\w* \w and|strong="H6965"\w* \w my|strong="H3045"\w* \w rising|strong="H6965"\w* \w up|strong="H6965"\w*. +\q2 \w You|strong="H3045"\w* \w perceive|strong="H3045"\w* \w my|strong="H3045"\w* \w thoughts|strong="H7454"\w* \w from|strong="H6965"\w* \w afar|strong="H7350"\w*. +\q1 +\v 3 \w You|strong="H3605"\w* search \w out|strong="H3605"\w* \w my|strong="H3605"\w* \w path|strong="H1870"\w* \w and|strong="H1870"\w* \w my|strong="H3605"\w* lying \w down|strong="H1870"\w*, +\q2 \w and|strong="H1870"\w* \w are|strong="H1870"\w* \w acquainted|strong="H5532"\w* \w with|strong="H3605"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w ways|strong="H1870"\w*. +\q1 +\v 4 \w For|strong="H3588"\w* \w there|strong="H3605"\w* \w is|strong="H3068"\w* \w not|strong="H3045"\w* \w a|strong="H3068"\w* \w word|strong="H4405"\w* \w on|strong="H3068"\w* \w my|strong="H3605"\w* \w tongue|strong="H3956"\w*, +\q2 \w but|strong="H3588"\w* \w behold|strong="H2005"\w*, \w Yahweh|strong="H3068"\w*, \w you|strong="H3588"\w* \w know|strong="H3045"\w* \w it|strong="H3588"\w* \w altogether|strong="H3605"\w*. +\q1 +\v 5 \w You|strong="H5921"\w* hem \w me|strong="H5921"\w* \w in|strong="H5921"\w* \w behind|strong="H6696"\w* \w and|strong="H3709"\w* \w before|strong="H5921"\w*. +\q2 \w You|strong="H5921"\w* \w laid|strong="H7896"\w* \w your|strong="H5921"\w* \w hand|strong="H3709"\w* \w on|strong="H5921"\w* \w me|strong="H5921"\w*. +\q1 +\v 6 This \w knowledge|strong="H1847"\w* \w is|strong="H1847"\w* \w beyond|strong="H4480"\w* \w me|strong="H4480"\w*. +\q2 \w It|strong="H3808"\w*’s \w lofty|strong="H7682"\w*. +\q2 \w I|strong="H3201"\w* \w can|strong="H3201"\w*’t \w attain|strong="H3201"\w* \w it|strong="H3808"\w*. +\q1 +\v 7 Where could \w I|strong="H6440"\w* \w go|strong="H3212"\w* \w from|strong="H6440"\w* \w your|strong="H6440"\w* \w Spirit|strong="H7307"\w*? +\q2 Or where could \w I|strong="H6440"\w* \w flee|strong="H1272"\w* \w from|strong="H6440"\w* \w your|strong="H6440"\w* \w presence|strong="H6440"\w*? +\q1 +\v 8 \w If|strong="H2005"\w* \w I|strong="H2005"\w* ascend \w up|strong="H5266"\w* \w into|strong="H5266"\w* \w heaven|strong="H8064"\w*, you \w are|strong="H8064"\w* \w there|strong="H8033"\w*. +\q2 \w If|strong="H2005"\w* \w I|strong="H2005"\w* \w make|strong="H3331"\w* \w my|strong="H3331"\w* \w bed|strong="H3331"\w* \w in|strong="H8033"\w* \w Sheol|strong="H7585"\w*,\f + \fr 139:8 \ft Sheol is the place of the dead.\f* \w behold|strong="H2005"\w*, you \w are|strong="H8064"\w* \w there|strong="H8033"\w*! +\q1 +\v 9 If \w I|strong="H3671"\w* \w take|strong="H5375"\w* \w the|strong="H5375"\w* \w wings|strong="H3671"\w* \w of|strong="H3220"\w* \w the|strong="H5375"\w* \w dawn|strong="H7837"\w*, +\q2 \w and|strong="H3220"\w* \w settle|strong="H7931"\w* \w in|strong="H7931"\w* \w the|strong="H5375"\w* uttermost parts \w of|strong="H3220"\w* \w the|strong="H5375"\w* \w sea|strong="H3220"\w*, +\q1 +\v 10 \w even|strong="H1571"\w* \w there|strong="H8033"\w* \w your|strong="H3027"\w* \w hand|strong="H3027"\w* \w will|strong="H1571"\w* \w lead|strong="H5148"\w* \w me|strong="H5148"\w*, +\q2 \w and|strong="H3027"\w* \w your|strong="H3027"\w* \w right|strong="H3225"\w* \w hand|strong="H3027"\w* \w will|strong="H1571"\w* hold \w me|strong="H5148"\w*. +\q1 +\v 11 If I say, “Surely \w the|strong="H1157"\w* \w darkness|strong="H2822"\w* \w will|strong="H2822"\w* \w overwhelm|strong="H7779"\w* \w me|strong="H1157"\w*. +\q2 \w The|strong="H1157"\w* light \w around|strong="H1157"\w* \w me|strong="H1157"\w* \w will|strong="H2822"\w* \w be|strong="H3915"\w* \w night|strong="H3915"\w*,” +\q1 +\v 12 \w even|strong="H1571"\w* \w the|strong="H4480"\w* \w darkness|strong="H2822"\w* doesn’t hide \w from|strong="H4480"\w* \w you|strong="H3117"\w*, +\q2 \w but|strong="H3808"\w* \w the|strong="H4480"\w* \w night|strong="H3915"\w* shines \w as|strong="H3117"\w* \w the|strong="H4480"\w* \w day|strong="H3117"\w*. +\q2 \w The|strong="H4480"\w* \w darkness|strong="H2822"\w* \w is|strong="H3117"\w* \w like|strong="H3808"\w* light \w to|strong="H3117"\w* \w you|strong="H3117"\w*. +\q1 +\v 13 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w formed|strong="H7069"\w* \w my|strong="H3588"\w* \w inmost|strong="H3629"\w* \w being|strong="H3629"\w*. +\q2 \w You|strong="H3588"\w* \w knit|strong="H5526"\w* \w me|strong="H3588"\w* \w together|strong="H5526"\w* \w in|strong="H7069"\w* \w my|strong="H3588"\w* mother’s womb. +\q1 +\v 14 \w I|strong="H3588"\w* \w will|strong="H5315"\w* \w give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H5921"\w* \w you|strong="H3588"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* am \w fearfully|strong="H3372"\w* \w and|strong="H3045"\w* \w wonderfully|strong="H6395"\w* \w made|strong="H3045"\w*. +\q1 \w Your|strong="H5921"\w* \w works|strong="H4639"\w* \w are|strong="H4639"\w* \w wonderful|strong="H6381"\w*. +\q2 \w My|strong="H5921"\w* \w soul|strong="H5315"\w* \w knows|strong="H3045"\w* \w that|strong="H3588"\w* \w very|strong="H3966"\w* \w well|strong="H3966"\w*. +\q1 +\v 15 \w My|strong="H6213"\w* \w frame|strong="H6108"\w* wasn’t \w hidden|strong="H3582"\w* \w from|strong="H4480"\w* \w you|strong="H6213"\w*, +\q2 \w when|strong="H6213"\w* \w I|strong="H3808"\w* \w was|strong="H3808"\w* \w made|strong="H6213"\w* \w in|strong="H6213"\w* \w secret|strong="H5643"\w*, +\q2 \w woven|strong="H6213"\w* together \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w depths|strong="H8482"\w* \w of|strong="H4480"\w* \w the|strong="H6213"\w* earth. +\q1 +\v 16 \w Your|strong="H3605"\w* \w eyes|strong="H5869"\w* \w saw|strong="H7200"\w* \w my|strong="H3605"\w* body. +\q2 \w In|strong="H5921"\w* \w your|strong="H3605"\w* \w book|strong="H5612"\w* \w they|strong="H3117"\w* \w were|strong="H3117"\w* \w all|strong="H3605"\w* \w written|strong="H3789"\w*, +\q2 \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w that|strong="H7200"\w* \w were|strong="H3117"\w* \w ordained|strong="H3335"\w* \w for|strong="H5921"\w* \w me|strong="H7200"\w*, +\q2 \w when|strong="H3117"\w* \w as|strong="H3117"\w* \w yet|strong="H3808"\w* \w there|strong="H3117"\w* \w were|strong="H3117"\w* \w none|strong="H3808"\w* \w of|strong="H3117"\w* \w them|strong="H5921"\w*. +\q1 +\v 17 \w How|strong="H4100"\w* \w precious|strong="H3365"\w* \w to|strong="H7218"\w* \w me|strong="H4100"\w* \w are|strong="H4100"\w* \w your|strong="H4100"\w* \w thoughts|strong="H7454"\w*, God! +\q2 \w How|strong="H4100"\w* \w vast|strong="H6105"\w* \w is|strong="H4100"\w* \w their|strong="H4100"\w* \w sum|strong="H7218"\w*! +\q1 +\v 18 If I would \w count|strong="H5608"\w* \w them|strong="H5750"\w*, \w they|strong="H5608"\w* \w are|strong="H5973"\w* \w more|strong="H5750"\w* \w in|strong="H5750"\w* \w number|strong="H5608"\w* \w than|strong="H7235"\w* \w the|strong="H5973"\w* \w sand|strong="H2344"\w*. +\q2 \w When|strong="H7235"\w* I \w wake|strong="H6974"\w* \w up|strong="H7235"\w*, I am \w still|strong="H5750"\w* \w with|strong="H5973"\w* \w you|strong="H5973"\w*. +\q1 +\v 19 If \w only|strong="H6991"\w* \w you|strong="H4480"\w*, God, \w would|strong="H5493"\w* kill \w the|strong="H4480"\w* \w wicked|strong="H7563"\w*. +\q2 \w Get|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H4480"\w* \w me|strong="H4480"\w*, \w you|strong="H4480"\w* bloodthirsty \w men|strong="H7563"\w*! +\q1 +\v 20 \w For|strong="H5375"\w* \w they|strong="H5375"\w* speak against \w you|strong="H5375"\w* \w wickedly|strong="H4209"\w*. +\q2 \w Your|strong="H5375"\w* \w enemies|strong="H6145"\w* \w take|strong="H5375"\w* \w your|strong="H5375"\w* name \w in|strong="H5375"\w* \w vain|strong="H7723"\w*. +\q1 +\v 21 \w Yahweh|strong="H3068"\w*, don’t \w I|strong="H3808"\w* \w hate|strong="H8130"\w* \w those|strong="H8130"\w* \w who|strong="H3068"\w* \w hate|strong="H8130"\w* \w you|strong="H3808"\w*? +\q2 \w Am|strong="H3068"\w* \w I|strong="H3808"\w* \w not|strong="H3808"\w* \w grieved|strong="H6962"\w* \w with|strong="H3068"\w* \w those|strong="H8130"\w* \w who|strong="H3068"\w* rise \w up|strong="H8618"\w* \w against|strong="H8130"\w* \w you|strong="H3808"\w*? +\q1 +\v 22 \w I|strong="H1961"\w* \w hate|strong="H8130"\w* \w them|strong="H8130"\w* \w with|strong="H1961"\w* \w perfect|strong="H8503"\w* \w hatred|strong="H8135"\w*. +\q2 They \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w my|strong="H1961"\w* \w enemies|strong="H8130"\w*. +\q1 +\v 23 \w Search|strong="H2713"\w* \w me|strong="H3824"\w*, God, \w and|strong="H3045"\w* \w know|strong="H3045"\w* \w my|strong="H3045"\w* \w heart|strong="H3824"\w*. +\q2 \w Try|strong="H2713"\w* \w me|strong="H3824"\w*, \w and|strong="H3045"\w* \w know|strong="H3045"\w* \w my|strong="H3045"\w* \w thoughts|strong="H8312"\w*. +\q1 +\v 24 \w See|strong="H7200"\w* \w if|strong="H7200"\w* \w there|strong="H5769"\w* \w is|strong="H1870"\w* \w any|strong="H7200"\w* \w wicked|strong="H6090"\w* \w way|strong="H1870"\w* \w in|strong="H1870"\w* \w me|strong="H7200"\w*, +\q2 \w and|strong="H5769"\w* \w lead|strong="H5148"\w* \w me|strong="H7200"\w* \w in|strong="H1870"\w* \w the|strong="H7200"\w* \w everlasting|strong="H5769"\w* \w way|strong="H1870"\w*. +\c 140 +\d For the Chief Musician. A Psalm by David. +\q1 +\v 1 Deliver me, \w Yahweh|strong="H3068"\w*, from evil men. +\q2 Preserve me from violent men: +\q1 +\v 2 those \w who|strong="H3068"\w* devise \w mischief|strong="H7451"\w* \w in|strong="H3068"\w* \w their|strong="H3068"\w* hearts. +\q2 \w They|strong="H3068"\w* \w continually|strong="H3068"\w* gather \w themselves|strong="H7451"\w* together \w for|strong="H3068"\w* war. +\q1 +\v 3 \w They|strong="H3117"\w* \w have|strong="H3117"\w* sharpened \w their|strong="H3605"\w* tongues \w like|strong="H2803"\w* \w a|strong="H3068"\w* serpent. +\q2 Viper’s poison \w is|strong="H3820"\w* \w under|strong="H3605"\w* \w their|strong="H3605"\w* lips. \qs Selah.\qs* +\q1 +\v 4 \w Yahweh|strong="H3068"\w*, keep \w me|strong="H8478"\w* \w from|strong="H8478"\w* \w the|strong="H8478"\w* hands \w of|strong="H8478"\w* \w the|strong="H8478"\w* \w wicked|strong="H8478"\w*. +\q2 Preserve \w me|strong="H8478"\w* \w from|strong="H8478"\w* \w the|strong="H8478"\w* violent men who \w have|strong="H8193"\w* determined \w to|strong="H2534"\w* trip \w my|strong="H8478"\w* feet. +\q1 +\v 5 \w The|strong="H8104"\w* proud \w have|strong="H3068"\w* \w hidden|strong="H5341"\w* \w a|strong="H3068"\w* snare \w for|strong="H3027"\w* \w me|strong="H8104"\w*, +\q2 \w they|strong="H3068"\w* \w have|strong="H3068"\w* spread \w the|strong="H8104"\w* cords \w of|strong="H3068"\w* \w a|strong="H3068"\w* net \w by|strong="H3027"\w* \w the|strong="H8104"\w* path. +\q2 \w They|strong="H3068"\w* \w have|strong="H3068"\w* set traps \w for|strong="H3027"\w* \w me|strong="H8104"\w*. \qs Selah.\qs* +\q1 +\v 6 \w I|strong="H3027"\w* said \w to|strong="H3027"\w* \w Yahweh|strong="H3068"\w*, “\w You|strong="H3027"\w* \w are|strong="H3027"\w* \w my|strong="H6566"\w* \w God|strong="H3027"\w*.” +\q2 Listen \w to|strong="H3027"\w* \w the|strong="H3027"\w* cry \w of|strong="H3027"\w* \w my|strong="H6566"\w* petitions, \w Yahweh|strong="H3068"\w*. +\q1 +\v 7 \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w Lord|strong="H3068"\w*, \w the|strong="H3068"\w* strength \w of|strong="H3068"\w* \w my|strong="H3068"\w* salvation, +\q2 \w you|strong="H6963"\w* \w have|strong="H3068"\w* covered \w my|strong="H3068"\w* head \w in|strong="H3068"\w* \w the|strong="H3068"\w* day \w of|strong="H3068"\w* battle. +\q1 +\v 8 \w Yahweh|strong="H3068"\w*, don’t grant \w the|strong="H3069"\w* desires \w of|strong="H3117"\w* \w the|strong="H3069"\w* wicked. +\q2 Don’t let \w their|strong="H3117"\w* evil plans succeed, \w or|strong="H3117"\w* \w they|strong="H3117"\w* \w will|strong="H3117"\w* become proud. \qs Selah.\qs* +\q1 +\v 9 \w As|strong="H3068"\w* \w for|strong="H3068"\w* \w the|strong="H5414"\w* head \w of|strong="H3068"\w* those \w who|strong="H3068"\w* surround \w me|strong="H5414"\w*, +\q2 \w let|strong="H5414"\w* \w the|strong="H5414"\w* mischief \w of|strong="H3068"\w* \w their|strong="H3068"\w* own lips cover \w them|strong="H5414"\w*. +\q1 +\v 10 Let burning coals fall \w on|strong="H7218"\w* them. +\q2 Let them \w be|strong="H8193"\w* thrown into \w the|strong="H3680"\w* fire, +\q2 into miry pits, \w from|strong="H8193"\w* where they never rise. +\q1 +\v 11 \w An|strong="H6965"\w* evil speaker won’t \w be|strong="H1077"\w* \w established|strong="H6965"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* earth. +\q2 Evil \w will|strong="H5307"\w* hunt \w the|strong="H5921"\w* violent \w man|strong="H5307"\w* \w to|strong="H5921"\w* \w overthrow|strong="H5307"\w* \w him|strong="H5921"\w*. +\q1 +\v 12 \w I|strong="H3559"\w* know \w that|strong="H7451"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3956"\w* \w maintain|strong="H3559"\w* \w the|strong="H3559"\w* cause \w of|strong="H3956"\w* \w the|strong="H3559"\w* afflicted, +\q2 \w and|strong="H2555"\w* justice \w for|strong="H3559"\w* \w the|strong="H3559"\w* needy. +\q1 +\v 13 \w Surely|strong="H3588"\w* \w the|strong="H3588"\w* righteous \w will|strong="H3068"\w* \w give|strong="H6213"\w* thanks \w to|strong="H3068"\w* \w your|strong="H3068"\w* name. +\q2 \w The|strong="H3588"\w* upright \w will|strong="H3068"\w* dwell \w in|strong="H3068"\w* \w your|strong="H3068"\w* presence. +\c 141 +\d A Psalm by David. +\q1 +\v 1 \w Yahweh|strong="H3068"\w*, \w I|strong="H3068"\w* \w have|strong="H3068"\w* \w called|strong="H7121"\w* \w on|strong="H3068"\w* \w you|strong="H6963"\w*. +\q2 Come \w to|strong="H3068"\w* \w me|strong="H6963"\w* \w quickly|strong="H2363"\w*! +\q2 \w Listen|strong="H6963"\w* \w to|strong="H3068"\w* \w my|strong="H3068"\w* \w voice|strong="H6963"\w* \w when|strong="H3068"\w* \w I|strong="H3068"\w* \w call|strong="H7121"\w* \w to|strong="H3068"\w* \w you|strong="H6963"\w*. +\q1 +\v 2 Let \w my|strong="H3559"\w* \w prayer|strong="H8605"\w* \w be|strong="H6440"\w* \w set|strong="H3559"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w like|strong="H6440"\w* \w incense|strong="H7004"\w*; +\q2 \w the|strong="H6440"\w* \w lifting|strong="H4864"\w* \w up|strong="H4864"\w* \w of|strong="H6440"\w* \w my|strong="H3559"\w* \w hands|strong="H3709"\w* \w like|strong="H6440"\w* \w the|strong="H6440"\w* \w evening|strong="H6153"\w* \w sacrifice|strong="H4503"\w*. +\q1 +\v 3 \w Set|strong="H7896"\w* \w a|strong="H3068"\w* \w watch|strong="H5341"\w*, \w Yahweh|strong="H3068"\w*, \w before|strong="H5921"\w* \w my|strong="H3068"\w* \w mouth|strong="H6310"\w*. +\q2 \w Keep|strong="H5341"\w* \w the|strong="H5921"\w* \w door|strong="H1817"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w lips|strong="H8193"\w*. +\q1 +\v 4 Don’t \w incline|strong="H5186"\w* \w my|strong="H5186"\w* \w heart|strong="H3820"\w* \w to|strong="H3820"\w* \w any|strong="H1697"\w* \w evil|strong="H7451"\w* \w thing|strong="H1697"\w*, +\q2 \w to|strong="H3820"\w* \w practice|strong="H5953"\w* \w deeds|strong="H5949"\w* \w of|strong="H1697"\w* \w wickedness|strong="H7451"\w* \w with|strong="H3898"\w* \w men|strong="H7451"\w* who \w work|strong="H6466"\w* \w iniquity|strong="H7562"\w*. +\q2 Don’t \w let|strong="H5186"\w* \w me|strong="H1697"\w* \w eat|strong="H3898"\w* \w of|strong="H1697"\w* \w their|strong="H5186"\w* \w delicacies|strong="H4516"\w*. +\q1 +\v 5 Let \w the|strong="H3588"\w* \w righteous|strong="H6662"\w* \w strike|strong="H1986"\w* \w me|strong="H3588"\w*, \w it|strong="H3588"\w* \w is|strong="H2617"\w* \w kindness|strong="H2617"\w*; +\q2 let \w him|strong="H3588"\w* \w reprove|strong="H3198"\w* \w me|strong="H3588"\w*, \w it|strong="H3588"\w* \w is|strong="H2617"\w* \w like|strong="H7218"\w* \w oil|strong="H8081"\w* \w on|strong="H7451"\w* \w the|strong="H3588"\w* \w head|strong="H7218"\w*; +\q2 don’t let \w my|strong="H3588"\w* \w head|strong="H7218"\w* \w refuse|strong="H5106"\w* \w it|strong="H3588"\w*; +\q2 \w Yet|strong="H5750"\w* \w my|strong="H3588"\w* \w prayer|strong="H8605"\w* \w is|strong="H2617"\w* always against \w evil|strong="H7451"\w* \w deeds|strong="H2617"\w*. +\q1 +\v 6 \w Their|strong="H8085"\w* \w judges|strong="H8199"\w* \w are|strong="H3027"\w* \w thrown|strong="H8058"\w* \w down|strong="H8058"\w* \w by|strong="H3027"\w* \w the|strong="H8085"\w* \w sides|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H8085"\w* \w rock|strong="H5553"\w*. +\q2 \w They|strong="H3588"\w* \w will|strong="H3027"\w* \w hear|strong="H8085"\w* \w my|strong="H8085"\w* words, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H3027"\w* well \w spoken|strong="H8085"\w*. +\q1 +\v 7 “\w As|strong="H3644"\w* \w when|strong="H3644"\w* \w one|strong="H6310"\w* \w plows|strong="H6398"\w* \w and|strong="H6310"\w* \w breaks|strong="H1234"\w* \w up|strong="H1234"\w* \w the|strong="H1234"\w* earth, +\q2 our \w bones|strong="H6106"\w* \w are|strong="H6106"\w* \w scattered|strong="H6340"\w* at \w the|strong="H1234"\w* \w mouth|strong="H6310"\w* \w of|strong="H6310"\w* \w Sheol|strong="H7585"\w*.”\f + \fr 141:7 \ft Sheol is the place of the dead.\f* +\q1 +\v 8 \w For|strong="H3588"\w* \w my|strong="H3588"\w* \w eyes|strong="H5869"\w* \w are|strong="H5869"\w* \w on|strong="H5869"\w* \w you|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w the|strong="H3588"\w* \w Lord|strong="H3069"\w*. +\q2 \w I|strong="H3588"\w* \w take|strong="H2620"\w* \w refuge|strong="H2620"\w* \w in|strong="H5315"\w* \w you|strong="H3588"\w*. +\q2 Don’t \w leave|strong="H6168"\w* \w my|strong="H3588"\w* \w soul|strong="H5315"\w* \w destitute|strong="H6168"\w*. +\q1 +\v 9 \w Keep|strong="H8104"\w* \w me|strong="H8104"\w* \w from|strong="H3027"\w* \w the|strong="H8104"\w* \w snare|strong="H4170"\w* which \w they|strong="H3027"\w* \w have|strong="H3027"\w* \w laid|strong="H3369"\w* \w for|strong="H3027"\w* \w me|strong="H8104"\w*, +\q2 \w from|strong="H3027"\w* \w the|strong="H8104"\w* \w traps|strong="H4170"\w* \w of|strong="H3027"\w* \w the|strong="H8104"\w* \w workers|strong="H6466"\w* \w of|strong="H3027"\w* iniquity. +\q1 +\v 10 Let \w the|strong="H5704"\w* \w wicked|strong="H7563"\w* \w fall|strong="H5307"\w* \w together|strong="H3162"\w* \w into|strong="H5307"\w* \w their|strong="H5307"\w* own \w nets|strong="H4364"\w* +\q2 \w while|strong="H5704"\w* \w I|strong="H5704"\w* \w pass|strong="H5674"\w* \w by|strong="H5674"\w*. +\c 142 +\d A contemplation by David, when he was in the cave. A Prayer. +\q1 +\v 1 \w I|strong="H1961"\w* cry \w with|strong="H1732"\w* \w my|strong="H1732"\w* voice \w to|strong="H1961"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w With|strong="H1732"\w* \w my|strong="H1732"\w* voice, \w I|strong="H1961"\w* ask \w Yahweh|strong="H3068"\w* \w for|strong="H1961"\w* mercy. +\q1 +\v 2 \w I|strong="H3068"\w* pour \w out|strong="H2199"\w* \w my|strong="H3068"\w* complaint before \w him|strong="H6963"\w*. +\q2 \w I|strong="H3068"\w* tell \w him|strong="H6963"\w* \w my|strong="H3068"\w* troubles. +\q1 +\v 3 When \w my|strong="H8210"\w* spirit \w was|strong="H6440"\w* overwhelmed \w within|strong="H6440"\w* \w me|strong="H6440"\w*, +\q2 \w you|strong="H6440"\w* knew \w my|strong="H8210"\w* route. +\q1 \w On|strong="H6440"\w* \w the|strong="H6440"\w* path \w in|strong="H6440"\w* which \w I|strong="H6869"\w* walk, +\q2 \w they|strong="H6440"\w* \w have|strong="H6869"\w* hidden \w a|strong="H3068"\w* snare \w for|strong="H6440"\w* \w me|strong="H6440"\w*. +\q1 +\v 4 Look \w on|strong="H5921"\w* \w my|strong="H5921"\w* \w right|strong="H3045"\w*, \w and|strong="H1980"\w* \w see|strong="H3045"\w*; +\q2 \w for|strong="H5921"\w* \w there|strong="H3045"\w* \w is|strong="H7307"\w* \w no|strong="H3045"\w* one \w who|strong="H3045"\w* \w is|strong="H7307"\w* \w concerned|strong="H3045"\w* \w for|strong="H5921"\w* \w me|strong="H5921"\w*. +\q2 Refuge \w has|strong="H7307"\w* \w fled|strong="H1980"\w* \w from|strong="H5921"\w* \w me|strong="H5921"\w*. +\q2 \w No|strong="H3045"\w* one cares \w for|strong="H5921"\w* \w my|strong="H5921"\w* soul. +\q1 +\v 5 \w I|strong="H5315"\w* cried \w to|strong="H7200"\w* \w you|strong="H4480"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w I|strong="H5315"\w* said, “\w You|strong="H4480"\w* \w are|strong="H5315"\w* \w my|strong="H7200"\w* \w refuge|strong="H4498"\w*, +\q2 \w my|strong="H7200"\w* \w portion|strong="H4480"\w* \w in|strong="H5315"\w* \w the|strong="H7200"\w* land \w of|strong="H4480"\w* \w the|strong="H7200"\w* \w living|strong="H5315"\w*.” +\q1 +\v 6 Listen \w to|strong="H3068"\w* \w my|strong="H3068"\w* \w cry|strong="H2199"\w*, +\q2 \w for|strong="H3068"\w* \w I|strong="H3068"\w* \w am|strong="H3068"\w* \w in|strong="H3068"\w* desperate need. +\q1 Deliver \w me|strong="H2416"\w* \w from|strong="H3068"\w* \w my|strong="H3068"\w* persecutors, +\q2 \w for|strong="H3068"\w* \w they|strong="H3068"\w* \w are|strong="H3068"\w* too strong \w for|strong="H3068"\w* \w me|strong="H2416"\w*. +\q1 +\v 7 Bring \w my|strong="H5337"\w* soul \w out|strong="H4480"\w* \w of|strong="H4480"\w* prison, +\q2 \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H4480"\w* \w give|strong="H7181"\w* thanks \w to|strong="H4480"\w* \w your|strong="H3588"\w* name. +\q1 \w The|strong="H3588"\w* righteous \w will|strong="H3588"\w* surround \w me|strong="H4480"\w*, +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3588"\w* \w be|strong="H4480"\w* \w good|strong="H3966"\w* \w to|strong="H4480"\w* \w me|strong="H4480"\w*. +\c 143 +\d A Psalm by David. +\q1 +\v 1 \w Hear|strong="H8085"\w* \w my|strong="H8085"\w* \w prayer|strong="H8605"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w Listen|strong="H8085"\w* \w to|strong="H3068"\w* \w my|strong="H8085"\w* petitions. +\q2 \w In|strong="H3068"\w* \w your|strong="H3068"\w* faithfulness \w and|strong="H3068"\w* \w righteousness|strong="H6666"\w*, relieve \w me|strong="H6030"\w*. +\q1 +\v 2 Don’t enter \w into|strong="H4941"\w* \w judgment|strong="H4941"\w* \w with|strong="H6440"\w* \w your|strong="H3605"\w* \w servant|strong="H5650"\w*, +\q2 \w for|strong="H3588"\w* \w in|strong="H6440"\w* \w your|strong="H3605"\w* \w sight|strong="H6440"\w* \w no|strong="H3808"\w* \w man|strong="H3605"\w* \w living|strong="H2416"\w* \w is|strong="H3605"\w* \w righteous|strong="H6663"\w*. +\q1 +\v 3 \w For|strong="H3588"\w* \w the|strong="H3588"\w* enemy \w pursues|strong="H7291"\w* \w my|strong="H3588"\w* \w soul|strong="H5315"\w*. +\q2 \w He|strong="H3588"\w* \w has|strong="H3588"\w* struck \w my|strong="H3588"\w* \w life|strong="H5315"\w* \w down|strong="H3427"\w* \w to|strong="H4191"\w* \w the|strong="H3588"\w* ground. +\q2 \w He|strong="H3588"\w* \w has|strong="H3588"\w* made \w me|strong="H5315"\w* \w live|strong="H3427"\w* \w in|strong="H3427"\w* \w dark|strong="H4285"\w* \w places|strong="H4285"\w*, \w as|strong="H5315"\w* \w those|strong="H3427"\w* \w who|strong="H5315"\w* \w have|strong="H3588"\w* \w been|strong="H5769"\w* \w long|strong="H5769"\w* \w dead|strong="H4191"\w*. +\q1 +\v 4 \w Therefore|strong="H5921"\w* \w my|strong="H5921"\w* \w spirit|strong="H7307"\w* \w is|strong="H3820"\w* \w overwhelmed|strong="H5848"\w* \w within|strong="H8432"\w* \w me|strong="H5921"\w*. +\q2 \w My|strong="H5921"\w* \w heart|strong="H3820"\w* \w within|strong="H8432"\w* \w me|strong="H5921"\w* \w is|strong="H3820"\w* \w desolate|strong="H8074"\w*. +\q1 +\v 5 \w I|strong="H3117"\w* \w remember|strong="H2142"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w old|strong="H6924"\w*. +\q2 \w I|strong="H3117"\w* \w meditate|strong="H7878"\w* \w on|strong="H3117"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w doings|strong="H4639"\w*. +\q2 \w I|strong="H3117"\w* \w contemplate|strong="H1897"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H3117"\w* \w your|strong="H3605"\w* \w hands|strong="H3027"\w*. +\q1 +\v 6 \w I|strong="H5315"\w* \w spread|strong="H6566"\w* \w out|strong="H6566"\w* \w my|strong="H6566"\w* \w hands|strong="H3027"\w* \w to|strong="H3027"\w* \w you|strong="H3027"\w*. +\q2 \w My|strong="H6566"\w* \w soul|strong="H5315"\w* thirsts \w for|strong="H3027"\w* \w you|strong="H3027"\w*, \w like|strong="H5315"\w* \w a|strong="H3068"\w* \w parched|strong="H5889"\w* land. \qs \+w Selah|strong="H5542"\+w*.\qs* +\q1 +\v 7 Hurry \w to|strong="H3381"\w* \w answer|strong="H6030"\w* \w me|strong="H6440"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w My|strong="H3068"\w* \w spirit|strong="H7307"\w* \w fails|strong="H3615"\w*. +\q1 Don’t \w hide|strong="H5641"\w* \w your|strong="H3068"\w* \w face|strong="H6440"\w* \w from|strong="H4480"\w* \w me|strong="H6440"\w*, +\q2 \w so|strong="H4480"\w* \w that|strong="H3068"\w* \w I|strong="H6440"\w* don’t \w become|strong="H4911"\w* \w like|strong="H4911"\w* \w those|strong="H4480"\w* \w who|strong="H3068"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w the|strong="H6440"\w* pit. +\q1 +\v 8 Cause \w me|strong="H5315"\w* \w to|strong="H3212"\w* \w hear|strong="H8085"\w* \w your|strong="H5375"\w* loving \w kindness|strong="H2617"\w* \w in|strong="H8085"\w* \w the|strong="H8085"\w* \w morning|strong="H1242"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* trust \w in|strong="H8085"\w* \w you|strong="H3588"\w*. +\q1 Cause \w me|strong="H5315"\w* \w to|strong="H3212"\w* \w know|strong="H3045"\w* \w the|strong="H8085"\w* \w way|strong="H1870"\w* \w in|strong="H8085"\w* \w which|strong="H2098"\w* \w I|strong="H3588"\w* \w should|strong="H3588"\w* \w walk|strong="H3212"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w my|strong="H8085"\w* \w soul|strong="H5315"\w* \w to|strong="H3212"\w* \w you|strong="H3588"\w*. +\q1 +\v 9 \w Deliver|strong="H5337"\w* \w me|strong="H5337"\w*, \w Yahweh|strong="H3068"\w*, \w from|strong="H3068"\w* \w my|strong="H3068"\w* enemies. +\q2 \w I|strong="H3068"\w* flee \w to|strong="H3068"\w* \w you|strong="H5337"\w* \w to|strong="H3068"\w* \w hide|strong="H3680"\w* \w me|strong="H5337"\w*. +\q1 +\v 10 \w Teach|strong="H3925"\w* \w me|strong="H6213"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w your|strong="H6213"\w* \w will|strong="H7522"\w*, +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H6213"\w* \w my|strong="H6213"\w* God. +\q1 \w Your|strong="H6213"\w* \w Spirit|strong="H7307"\w* \w is|strong="H2896"\w* \w good|strong="H2896"\w*. +\q2 \w Lead|strong="H5148"\w* \w me|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H3588"\w* land \w of|strong="H7307"\w* \w uprightness|strong="H4334"\w*. +\q1 +\v 11 \w Revive|strong="H2421"\w* \w me|strong="H5315"\w*, \w Yahweh|strong="H3068"\w*, \w for|strong="H8034"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w*’s \w sake|strong="H4616"\w*. +\q2 \w In|strong="H3068"\w* \w your|strong="H3068"\w* \w righteousness|strong="H6666"\w*, \w bring|strong="H3318"\w* \w my|strong="H3068"\w* \w soul|strong="H5315"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w trouble|strong="H6869"\w*. +\q1 +\v 12 \w In|strong="H5315"\w* \w your|strong="H3605"\w* loving \w kindness|strong="H2617"\w*, \w cut|strong="H2617"\w* \w off|strong="H6789"\w* \w my|strong="H3605"\w* \w enemies|strong="H6887"\w*, +\q2 \w and|strong="H5650"\w* \w destroy|strong="H6789"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w afflict|strong="H6887"\w* \w my|strong="H3605"\w* \w soul|strong="H5315"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* am \w your|strong="H3605"\w* \w servant|strong="H5650"\w*. +\c 144 +\d By David. +\q1 +\v 1 \w Blessed|strong="H1288"\w* \w be|strong="H3027"\w* \w Yahweh|strong="H3068"\w*, \w my|strong="H3068"\w* \w rock|strong="H6697"\w*, +\q2 \w who|strong="H3068"\w* \w trains|strong="H3925"\w* \w my|strong="H3068"\w* \w hands|strong="H3027"\w* \w to|strong="H3068"\w* \w war|strong="H4421"\w*, +\q2 \w and|strong="H3068"\w* \w my|strong="H3068"\w* fingers \w to|strong="H3068"\w* \w battle|strong="H4421"\w*— +\q1 +\v 2 \w my|strong="H8478"\w* loving \w kindness|strong="H2617"\w*, \w my|strong="H8478"\w* \w fortress|strong="H4686"\w*, +\q2 \w my|strong="H8478"\w* high \w tower|strong="H4869"\w*, \w my|strong="H8478"\w* \w deliverer|strong="H6403"\w*, +\q2 \w my|strong="H8478"\w* \w shield|strong="H4043"\w*, \w and|strong="H5971"\w* \w he|strong="H5971"\w* \w in|strong="H5971"\w* \w whom|strong="H5971"\w* \w I|strong="H8478"\w* \w take|strong="H2620"\w* \w refuge|strong="H2620"\w*, +\q2 \w who|strong="H5971"\w* \w subdues|strong="H7286"\w* \w my|strong="H8478"\w* \w people|strong="H5971"\w* \w under|strong="H8478"\w* \w me|strong="H4686"\w*. +\q1 +\v 3 \w Yahweh|strong="H3068"\w*, \w what|strong="H4100"\w* \w is|strong="H3068"\w* \w man|strong="H1121"\w*, \w that|strong="H3045"\w* \w you|strong="H3045"\w* care \w for|strong="H3068"\w* \w him|strong="H3045"\w*? +\q2 \w Or|strong="H1121"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w that|strong="H3045"\w* \w you|strong="H3045"\w* \w think|strong="H2803"\w* \w of|strong="H1121"\w* \w him|strong="H3045"\w*? +\q1 +\v 4 \w Man|strong="H5674"\w* \w is|strong="H3117"\w* \w like|strong="H1819"\w* \w a|strong="H3068"\w* \w breath|strong="H1892"\w*. +\q2 \w His|strong="H5674"\w* \w days|strong="H3117"\w* \w are|strong="H3117"\w* \w like|strong="H1819"\w* \w a|strong="H3068"\w* \w shadow|strong="H6738"\w* \w that|strong="H3117"\w* \w passes|strong="H5674"\w* \w away|strong="H5674"\w*. +\q1 +\v 5 Part \w your|strong="H3068"\w* \w heavens|strong="H8064"\w*, \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w*. +\q2 \w Touch|strong="H5060"\w* \w the|strong="H3068"\w* \w mountains|strong="H2022"\w*, \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* \w smoke|strong="H6225"\w*. +\q1 +\v 6 \w Throw|strong="H7971"\w* \w out|strong="H7971"\w* \w lightning|strong="H1300"\w*, \w and|strong="H7971"\w* \w scatter|strong="H6327"\w* \w them|strong="H7971"\w*. +\q2 \w Send|strong="H7971"\w* \w out|strong="H7971"\w* \w your|strong="H7971"\w* \w arrows|strong="H2671"\w*, \w and|strong="H7971"\w* rout \w them|strong="H7971"\w*. +\q1 +\v 7 \w Stretch|strong="H7971"\w* \w out|strong="H7971"\w* \w your|strong="H7971"\w* \w hand|strong="H3027"\w* \w from|strong="H3027"\w* \w above|strong="H4791"\w*, +\q2 \w rescue|strong="H5337"\w* \w me|strong="H7971"\w*, \w and|strong="H1121"\w* \w deliver|strong="H5337"\w* \w me|strong="H7971"\w* \w out|strong="H7971"\w* \w of|strong="H1121"\w* \w great|strong="H7227"\w* \w waters|strong="H4325"\w*, +\q2 \w out|strong="H7971"\w* \w of|strong="H1121"\w* \w the|strong="H7971"\w* \w hands|strong="H3027"\w* \w of|strong="H1121"\w* \w foreigners|strong="H1121"\w*, +\q2 +\v 8 whose \w mouths|strong="H6310"\w* \w speak|strong="H1696"\w* \w deceit|strong="H8267"\w*, +\q2 whose \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w is|strong="H6310"\w* \w a|strong="H3068"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w of|strong="H6310"\w* \w falsehood|strong="H8267"\w*. +\q1 +\v 9 \w I|strong="H7891"\w* \w will|strong="H7892"\w* \w sing|strong="H7891"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w song|strong="H7892"\w* \w to|strong="H2167"\w* \w you|strong="H2167"\w*, God. +\q2 \w On|strong="H5035"\w* \w a|strong="H3068"\w* \w ten-stringed|strong="H6218"\w* lyre, \w I|strong="H7891"\w* \w will|strong="H7892"\w* \w sing|strong="H7891"\w* \w praises|strong="H2167"\w* \w to|strong="H2167"\w* \w you|strong="H2167"\w*. +\q1 +\v 10 \w You|strong="H5414"\w* \w are|strong="H5650"\w* \w he|strong="H1732"\w* \w who|strong="H5650"\w* \w gives|strong="H5414"\w* \w salvation|strong="H8668"\w* \w to|strong="H5414"\w* \w kings|strong="H4428"\w*, +\q2 \w who|strong="H5650"\w* \w rescues|strong="H6475"\w* \w David|strong="H1732"\w*, \w his|strong="H5414"\w* \w servant|strong="H5650"\w*, \w from|strong="H7451"\w* \w the|strong="H5414"\w* \w deadly|strong="H7451"\w* \w sword|strong="H2719"\w*. +\q1 +\v 11 \w Rescue|strong="H5337"\w* \w me|strong="H1696"\w*, \w and|strong="H1121"\w* \w deliver|strong="H5337"\w* \w me|strong="H1696"\w* \w out|strong="H5337"\w* \w of|strong="H1121"\w* \w the|strong="H3027"\w* \w hands|strong="H3027"\w* \w of|strong="H1121"\w* \w foreigners|strong="H1121"\w*, +\q2 \w whose|strong="H1121"\w* \w mouths|strong="H6310"\w* \w speak|strong="H1696"\w* \w deceit|strong="H8267"\w*, +\q2 \w whose|strong="H1121"\w* \w right|strong="H3225"\w* \w hand|strong="H3027"\w* \w is|strong="H3027"\w* \w a|strong="H3068"\w* \w right|strong="H3225"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w falsehood|strong="H8267"\w*. +\b +\q1 +\v 12 \w Then|strong="H1121"\w* our \w sons|strong="H1121"\w* \w will|strong="H1121"\w* \w be|strong="H1121"\w* \w like|strong="H1121"\w* well-nurtured \w plants|strong="H5195"\w*, +\q2 our \w daughters|strong="H1323"\w* \w like|strong="H1121"\w* \w pillars|strong="H2106"\w* \w carved|strong="H2404"\w* \w to|strong="H1121"\w* adorn \w a|strong="H3068"\w* \w palace|strong="H1964"\w*. +\q1 +\v 13 Our barns \w are|strong="H4392"\w* \w full|strong="H4392"\w*, \w filled|strong="H4392"\w* \w with|strong="H6629"\w* all \w kinds|strong="H2177"\w* \w of|strong="H4392"\w* provision. +\q2 Our \w sheep|strong="H6629"\w* produce \w thousands|strong="H7231"\w* \w and|strong="H6629"\w* ten \w thousands|strong="H7231"\w* \w in|strong="H6629"\w* our \w fields|strong="H2351"\w*. +\q1 +\v 14 \w Our|strong="H3318"\w* oxen will \w pull|strong="H3318"\w* heavy loads. +\q2 There is no \w breaking|strong="H6556"\w* \w in|strong="H3318"\w*, \w and|strong="H3318"\w* no \w going|strong="H3318"\w* \w away|strong="H3318"\w*, +\q2 \w and|strong="H3318"\w* no \w outcry|strong="H6682"\w* \w in|strong="H3318"\w* \w our|strong="H3318"\w* \w streets|strong="H7339"\w*. +\q1 +\v 15 Happy \w are|strong="H5971"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w are|strong="H5971"\w* \w in|strong="H3068"\w* \w such|strong="H3602"\w* \w a|strong="H3068"\w* situation. +\q2 Happy \w are|strong="H5971"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w* whose \w God|strong="H3068"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\c 145 +\d A praise psalm by David.\f + \fr 145:0 \ft This is an acrostic psalm, with every verse (including the second half of verse 13) starting with a consecutive letter of the Hebrew alphabet.\f* +\q1 +\v 1 \w I|strong="H8416"\w* \w will|strong="H4428"\w* \w exalt|strong="H7311"\w* \w you|strong="H1288"\w*, \w my|strong="H1732"\w* God, \w the|strong="H1288"\w* \w King|strong="H4428"\w*. +\q2 \w I|strong="H8416"\w* \w will|strong="H4428"\w* \w praise|strong="H8416"\w* \w your|strong="H7311"\w* \w name|strong="H8034"\w* \w forever|strong="H5769"\w* \w and|strong="H4428"\w* \w ever|strong="H5769"\w*. +\q1 +\v 2 \w Every|strong="H3605"\w* \w day|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H3117"\w* \w praise|strong="H1984"\w* \w you|strong="H3605"\w*. +\q2 \w I|strong="H3117"\w* \w will|strong="H3117"\w* \w extol|strong="H8034"\w* \w your|strong="H3605"\w* \w name|strong="H8034"\w* \w forever|strong="H5769"\w* \w and|strong="H3117"\w* \w ever|strong="H5769"\w*. +\q1 +\v 3 \w Great|strong="H1419"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w greatly|strong="H3966"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w praised|strong="H1984"\w*! +\q2 \w His|strong="H3068"\w* \w greatness|strong="H1420"\w* \w is|strong="H3068"\w* \w unsearchable|strong="H2714"\w*. +\q1 +\v 4 \w One|strong="H1755"\w* \w generation|strong="H1755"\w* will commend \w your|strong="H5046"\w* \w works|strong="H4639"\w* \w to|strong="H1755"\w* \w another|strong="H5046"\w*, +\q2 \w and|strong="H5046"\w* will \w declare|strong="H5046"\w* \w your|strong="H5046"\w* \w mighty|strong="H1369"\w* \w acts|strong="H1369"\w*. +\q1 +\v 5 \w I|strong="H1697"\w* \w will|strong="H1697"\w* \w meditate|strong="H7878"\w* \w on|strong="H1697"\w* \w the|strong="H1697"\w* \w glorious|strong="H3519"\w* \w majesty|strong="H1926"\w* \w of|strong="H1697"\w* \w your|strong="H1697"\w* \w honor|strong="H3519"\w*, +\q2 \w on|strong="H1697"\w* \w your|strong="H1697"\w* \w wondrous|strong="H6381"\w* \w works|strong="H6381"\w*. +\q1 +\v 6 Men will \w speak|strong="H5608"\w* \w of|strong="H3372"\w* \w the|strong="H3372"\w* \w might|strong="H5807"\w* \w of|strong="H3372"\w* \w your|strong="H3372"\w* \w awesome|strong="H3372"\w* \w acts|strong="H3372"\w*. +\q2 I will \w declare|strong="H5608"\w* \w your|strong="H3372"\w* \w greatness|strong="H1420"\w*. +\q1 +\v 7 They \w will|strong="H7227"\w* \w utter|strong="H5042"\w* \w the|strong="H6666"\w* \w memory|strong="H2143"\w* \w of|strong="H2898"\w* \w your|strong="H6666"\w* \w great|strong="H7227"\w* \w goodness|strong="H2898"\w*, +\q2 \w and|strong="H6666"\w* \w will|strong="H7227"\w* \w sing|strong="H7442"\w* \w of|strong="H2898"\w* \w your|strong="H6666"\w* \w righteousness|strong="H6666"\w*. +\q1 +\v 8 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w gracious|strong="H2587"\w*, \w merciful|strong="H7349"\w*, +\q2 slow \w to|strong="H3068"\w* anger, \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w great|strong="H1419"\w* loving \w kindness|strong="H2617"\w*. +\q1 +\v 9 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w*. +\q2 \w His|strong="H3605"\w* tender \w mercies|strong="H7356"\w* \w are|strong="H3068"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w works|strong="H4639"\w*. +\q1 +\v 10 \w All|strong="H3605"\w* \w your|strong="H3068"\w* \w works|strong="H4639"\w* \w will|strong="H3068"\w* \w give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3068"\w* \w you|strong="H3605"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w Your|strong="H3068"\w* \w saints|strong="H2623"\w* \w will|strong="H3068"\w* extol \w you|strong="H3605"\w*. +\q1 +\v 11 \w They|strong="H1696"\w* \w will|strong="H3519"\w* \w speak|strong="H1696"\w* \w of|strong="H4438"\w* \w the|strong="H1696"\w* \w glory|strong="H3519"\w* \w of|strong="H4438"\w* \w your|strong="H1696"\w* \w kingdom|strong="H4438"\w*, +\q2 \w and|strong="H1696"\w* \w talk|strong="H1696"\w* \w about|strong="H1696"\w* \w your|strong="H1696"\w* \w power|strong="H1369"\w*, +\q1 +\v 12 \w to|strong="H1121"\w* \w make|strong="H3045"\w* \w known|strong="H3045"\w* \w to|strong="H1121"\w* \w the|strong="H3045"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w* \w his|strong="H3045"\w* \w mighty|strong="H1369"\w* \w acts|strong="H1369"\w*, +\q2 \w the|strong="H3045"\w* \w glory|strong="H3519"\w* \w of|strong="H1121"\w* \w the|strong="H3045"\w* \w majesty|strong="H1926"\w* \w of|strong="H1121"\w* \w his|strong="H3045"\w* \w kingdom|strong="H4438"\w*. +\q1 +\v 13 \w Your|strong="H3605"\w* \w kingdom|strong="H4438"\w* \w is|strong="H3605"\w* an \w everlasting|strong="H5769"\w* \w kingdom|strong="H4438"\w*. +\q2 \w Your|strong="H3605"\w* \w dominion|strong="H4475"\w* \w endures|strong="H5769"\w* \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w generations|strong="H1755"\w*. +\q1 \w Yahweh|strong="H3068"\w* \w is|strong="H3605"\w* faithful \w in|strong="H1755"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* words, +\q2 \w and|strong="H5769"\w* loving \w in|strong="H1755"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* deeds.\f + \fr 145:13 \ft Some manuscripts omit these last two lines.\f* +\q1 +\v 14 \w Yahweh|strong="H3068"\w* upholds \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w fall|strong="H5307"\w*, +\q2 \w and|strong="H3068"\w* \w raises|strong="H2210"\w* \w up|strong="H5564"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H3068"\w* \w bowed|strong="H3721"\w* \w down|strong="H5307"\w*. +\q1 +\v 15 \w The|strong="H3605"\w* \w eyes|strong="H5869"\w* \w of|strong="H5869"\w* \w all|strong="H3605"\w* \w wait|strong="H7663"\w* \w for|strong="H6256"\w* \w you|strong="H5414"\w*. +\q2 \w You|strong="H5414"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w their|strong="H3605"\w* food \w in|strong="H5414"\w* due \w season|strong="H6256"\w*. +\q1 +\v 16 \w You|strong="H3605"\w* \w open|strong="H6605"\w* \w your|strong="H3605"\w* \w hand|strong="H3027"\w*, +\q2 \w and|strong="H3027"\w* \w satisfy|strong="H7646"\w* \w the|strong="H3605"\w* \w desire|strong="H7522"\w* \w of|strong="H3027"\w* \w every|strong="H3605"\w* \w living|strong="H2416"\w* \w thing|strong="H2416"\w*. +\q1 +\v 17 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w righteous|strong="H6662"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w ways|strong="H1870"\w*, +\q2 \w and|strong="H3068"\w* \w gracious|strong="H2623"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w works|strong="H4639"\w*. +\q1 +\v 18 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w near|strong="H7138"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w call|strong="H7121"\w* \w on|strong="H3068"\w* \w him|strong="H7121"\w*, +\q2 \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w call|strong="H7121"\w* \w on|strong="H3068"\w* \w him|strong="H7121"\w* \w in|strong="H3068"\w* truth. +\q1 +\v 19 \w He|strong="H6213"\w* \w will|strong="H7522"\w* \w fulfill|strong="H6213"\w* \w the|strong="H8085"\w* \w desire|strong="H7522"\w* \w of|strong="H6213"\w* \w those|strong="H8085"\w* \w who|strong="H6213"\w* \w fear|strong="H3373"\w* \w him|strong="H6213"\w*. +\q2 \w He|strong="H6213"\w* \w also|strong="H6213"\w* \w will|strong="H7522"\w* \w hear|strong="H8085"\w* \w their|strong="H8085"\w* \w cry|strong="H7775"\w*, \w and|strong="H8085"\w* \w will|strong="H7522"\w* \w save|strong="H3467"\w* \w them|strong="H6213"\w*. +\q1 +\v 20 \w Yahweh|strong="H3068"\w* \w preserves|strong="H8104"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* love \w him|strong="H3605"\w*, +\q2 \w but|strong="H7563"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w destroy|strong="H8045"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w wicked|strong="H7563"\w*. +\q1 +\v 21 \w My|strong="H3605"\w* \w mouth|strong="H6310"\w* \w will|strong="H3068"\w* \w speak|strong="H1696"\w* \w the|strong="H3605"\w* \w praise|strong="H8416"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 Let \w all|strong="H3605"\w* \w flesh|strong="H1320"\w* \w bless|strong="H1288"\w* \w his|strong="H3605"\w* \w holy|strong="H6944"\w* \w name|strong="H8034"\w* \w forever|strong="H5769"\w* \w and|strong="H3068"\w* \w ever|strong="H5769"\w*. +\b +\c 146 +\q1 +\v 1 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*! +\q2 \w Praise|strong="H1984"\w* \w Yahweh|strong="H3068"\w*, \w my|strong="H3068"\w* \w soul|strong="H5315"\w*. +\q1 +\v 2 \w While|strong="H5750"\w* \w I|strong="H3068"\w* \w live|strong="H2416"\w*, \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w praise|strong="H1984"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w sing|strong="H2167"\w* \w praises|strong="H2167"\w* \w to|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w* \w as|strong="H3068"\w* \w long|strong="H5750"\w* \w as|strong="H3068"\w* \w I|strong="H3068"\w* exist. +\q1 +\v 3 Don’t put \w your|strong="H1121"\w* trust \w in|strong="H1121"\w* \w princes|strong="H5081"\w*, +\q2 \w in|strong="H1121"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w* \w in|strong="H1121"\w* whom there \w is|strong="H1121"\w* no \w help|strong="H8668"\w*. +\q1 +\v 4 \w His|strong="H7725"\w* \w spirit|strong="H7307"\w* \w departs|strong="H3318"\w*, \w and|strong="H7725"\w* \w he|strong="H1931"\w* \w returns|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H7725"\w* earth. +\q2 \w In|strong="H3117"\w* \w that|strong="H3117"\w* very \w day|strong="H3117"\w*, \w his|strong="H7725"\w* \w thoughts|strong="H6250"\w* perish. +\q1 +\v 5 Happy \w is|strong="H3068"\w* \w he|strong="H3068"\w* \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Jacob|strong="H3290"\w* \w for|strong="H5921"\w* \w his|strong="H3068"\w* \w help|strong="H5828"\w*, +\q2 whose \w hope|strong="H7664"\w* \w is|strong="H3068"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w his|strong="H3068"\w* \w God|strong="H3068"\w*, +\q1 +\v 6 \w who|strong="H3605"\w* \w made|strong="H6213"\w* \w heaven|strong="H8064"\w* \w and|strong="H8064"\w* \w earth|strong="H8064"\w*, +\q2 \w the|strong="H3605"\w* \w sea|strong="H3220"\w*, \w and|strong="H8064"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w in|strong="H6213"\w* \w them|strong="H6213"\w*; +\q2 \w who|strong="H3605"\w* \w keeps|strong="H8104"\w* truth \w forever|strong="H5769"\w*; +\q1 +\v 7 \w who|strong="H3068"\w* \w executes|strong="H6213"\w* \w justice|strong="H4941"\w* \w for|strong="H6213"\w* \w the|strong="H5414"\w* \w oppressed|strong="H6231"\w*; +\q2 \w who|strong="H3068"\w* \w gives|strong="H5414"\w* \w food|strong="H3899"\w* \w to|strong="H3068"\w* \w the|strong="H5414"\w* \w hungry|strong="H7457"\w*. +\q1 \w Yahweh|strong="H3068"\w* frees \w the|strong="H5414"\w* prisoners. +\q2 +\v 8 \w Yahweh|strong="H3068"\w* \w opens|strong="H6491"\w* \w the|strong="H3068"\w* eyes \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w blind|strong="H5787"\w*. +\q2 \w Yahweh|strong="H3068"\w* \w raises|strong="H2210"\w* \w up|strong="H2210"\w* those \w who|strong="H3068"\w* \w are|strong="H3068"\w* \w bowed|strong="H3721"\w* \w down|strong="H3721"\w*. +\q2 \w Yahweh|strong="H3068"\w* loves \w the|strong="H3068"\w* \w righteous|strong="H6662"\w*. +\q1 +\v 9 \w Yahweh|strong="H3068"\w* \w preserves|strong="H8104"\w* \w the|strong="H8104"\w* \w foreigners|strong="H1616"\w*. +\q2 \w He|strong="H3068"\w* upholds \w the|strong="H8104"\w* \w fatherless|strong="H3490"\w* \w and|strong="H3068"\w* widow, +\q2 \w but|strong="H7563"\w* \w he|strong="H3068"\w* turns \w the|strong="H8104"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w the|strong="H8104"\w* \w wicked|strong="H7563"\w* upside \w down|strong="H1870"\w*. +\q1 +\v 10 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w reign|strong="H4427"\w* \w forever|strong="H5769"\w*; +\q2 \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w O|strong="H3068"\w* \w Zion|strong="H6726"\w*, \w to|strong="H3068"\w* \w all|strong="H1755"\w* \w generations|strong="H1755"\w*. +\q1 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*! +\b +\c 147 +\q1 +\v 1 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*, +\q2 \w for|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H2896"\w* \w good|strong="H2896"\w* \w to|strong="H2896"\w* \w sing|strong="H2167"\w* \w praises|strong="H2167"\w* \w to|strong="H2896"\w* \w our|strong="H3588"\w* \w God|strong="H3050"\w*; +\q2 \w for|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H2896"\w* \w pleasant|strong="H5273"\w* \w and|strong="H2896"\w* \w fitting|strong="H5000"\w* \w to|strong="H2896"\w* \w praise|strong="H1984"\w* \w him|strong="H2896"\w*. +\q1 +\v 2 \w Yahweh|strong="H3068"\w* \w builds|strong="H1129"\w* \w up|strong="H1129"\w* \w Jerusalem|strong="H3389"\w*. +\q2 \w He|strong="H3068"\w* \w gathers|strong="H3664"\w* \w together|strong="H3664"\w* \w the|strong="H3068"\w* \w outcasts|strong="H1760"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\q1 +\v 3 \w He|strong="H3820"\w* \w heals|strong="H7495"\w* \w the|strong="H7665"\w* \w broken|strong="H7665"\w* \w in|strong="H7665"\w* \w heart|strong="H3820"\w*, +\q2 \w and|strong="H3820"\w* \w binds|strong="H2280"\w* \w up|strong="H2280"\w* \w their|strong="H7665"\w* \w wounds|strong="H6094"\w*. +\q1 +\v 4 \w He|strong="H3605"\w* \w counts|strong="H4487"\w* \w the|strong="H3605"\w* \w number|strong="H4557"\w* \w of|strong="H8034"\w* \w the|strong="H3605"\w* \w stars|strong="H3556"\w*. +\q2 \w He|strong="H3605"\w* \w calls|strong="H7121"\w* \w them|strong="H7121"\w* \w all|strong="H3605"\w* \w by|strong="H7121"\w* \w their|strong="H3605"\w* \w names|strong="H8034"\w*. +\q1 +\v 5 \w Great|strong="H1419"\w* \w is|strong="H3581"\w* our Lord, \w and|strong="H1419"\w* \w mighty|strong="H1419"\w* \w in|strong="H7227"\w* \w power|strong="H3581"\w*. +\q2 His \w understanding|strong="H8394"\w* \w is|strong="H3581"\w* \w infinite|strong="H4557"\w*. +\q1 +\v 6 \w Yahweh|strong="H3068"\w* upholds \w the|strong="H3068"\w* \w humble|strong="H6035"\w*. +\q2 \w He|strong="H3068"\w* \w brings|strong="H8213"\w* \w the|strong="H3068"\w* \w wicked|strong="H7563"\w* \w down|strong="H8213"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* ground. +\q1 +\v 7 \w Sing|strong="H2167"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w thanksgiving|strong="H8426"\w*. +\q2 \w Sing|strong="H2167"\w* \w praises|strong="H2167"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w harp|strong="H3658"\w* \w to|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, +\q1 +\v 8 who \w covers|strong="H3680"\w* \w the|strong="H3680"\w* \w sky|strong="H8064"\w* \w with|strong="H3680"\w* \w clouds|strong="H5645"\w*, +\q2 who \w prepares|strong="H3559"\w* \w rain|strong="H4306"\w* \w for|strong="H3559"\w* \w the|strong="H3680"\w* \w earth|strong="H8064"\w*, +\q2 who \w makes|strong="H3559"\w* \w grass|strong="H2682"\w* \w grow|strong="H6779"\w* \w on|strong="H2022"\w* \w the|strong="H3680"\w* \w mountains|strong="H2022"\w*. +\q1 +\v 9 \w He|strong="H5414"\w* \w provides|strong="H5414"\w* \w food|strong="H3899"\w* \w for|strong="H7121"\w* \w the|strong="H5414"\w* livestock, +\q2 \w and|strong="H1121"\w* \w for|strong="H7121"\w* \w the|strong="H5414"\w* \w young|strong="H1121"\w* \w ravens|strong="H6158"\w* \w when|strong="H1121"\w* \w they|strong="H7121"\w* \w call|strong="H7121"\w*. +\q1 +\v 10 \w He|strong="H3808"\w* doesn’t \w delight|strong="H2654"\w* \w in|strong="H2654"\w* \w the|strong="H3808"\w* \w strength|strong="H1369"\w* \w of|strong="H3808"\w* \w the|strong="H3808"\w* \w horse|strong="H5483"\w*. +\q2 \w He|strong="H3808"\w* \w takes|strong="H7521"\w* \w no|strong="H3808"\w* \w pleasure|strong="H7521"\w* \w in|strong="H2654"\w* \w the|strong="H3808"\w* \w legs|strong="H7785"\w* \w of|strong="H3808"\w* \w a|strong="H3068"\w* man. +\q1 +\v 11 \w Yahweh|strong="H3068"\w* \w takes|strong="H7521"\w* \w pleasure|strong="H7521"\w* \w in|strong="H3068"\w* those \w who|strong="H3068"\w* \w fear|strong="H3373"\w* \w him|strong="H3068"\w*, +\q2 \w in|strong="H3068"\w* those \w who|strong="H3068"\w* \w hope|strong="H3176"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* loving \w kindness|strong="H2617"\w*. +\q1 +\v 12 \w Praise|strong="H1984"\w* \w Yahweh|strong="H3068"\w*, \w Jerusalem|strong="H3389"\w*! +\q2 \w Praise|strong="H1984"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w Zion|strong="H6726"\w*! +\q1 +\v 13 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w strengthened|strong="H2388"\w* \w the|strong="H3588"\w* \w bars|strong="H1280"\w* \w of|strong="H1121"\w* \w your|strong="H3588"\w* \w gates|strong="H8179"\w*. +\q2 \w He|strong="H3588"\w* \w has|strong="H3588"\w* \w blessed|strong="H1288"\w* \w your|strong="H3588"\w* \w children|strong="H1121"\w* \w within|strong="H7130"\w* \w you|strong="H3588"\w*. +\q1 +\v 14 \w He|strong="H7760"\w* \w makes|strong="H7760"\w* \w peace|strong="H7965"\w* \w in|strong="H7760"\w* \w your|strong="H7760"\w* \w borders|strong="H1366"\w*. +\q2 \w He|strong="H7760"\w* fills \w you|strong="H7760"\w* \w with|strong="H7646"\w* \w the|strong="H7760"\w* \w finest|strong="H2459"\w* \w of|strong="H1366"\w* \w the|strong="H7760"\w* \w wheat|strong="H2406"\w*. +\q1 +\v 15 \w He|strong="H5704"\w* \w sends|strong="H7971"\w* \w out|strong="H7971"\w* \w his|strong="H7971"\w* \w commandment|strong="H1697"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* earth. +\q2 \w His|strong="H7971"\w* \w word|strong="H1697"\w* \w runs|strong="H7323"\w* \w very|strong="H5704"\w* \w swiftly|strong="H4120"\w*. +\q1 +\v 16 \w He|strong="H5414"\w* \w gives|strong="H5414"\w* \w snow|strong="H7950"\w* \w like|strong="H7950"\w* \w wool|strong="H6785"\w*, +\q2 \w and|strong="H6785"\w* \w scatters|strong="H6340"\w* \w frost|strong="H3713"\w* \w like|strong="H7950"\w* ashes. +\q1 +\v 17 \w He|strong="H6440"\w* hurls \w down|strong="H7993"\w* \w his|strong="H6440"\w* hail \w like|strong="H7140"\w* pebbles. +\q2 \w Who|strong="H4310"\w* \w can|strong="H4310"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w his|strong="H6440"\w* \w cold|strong="H7135"\w*? +\q1 +\v 18 \w He|strong="H7971"\w* \w sends|strong="H7971"\w* \w out|strong="H7971"\w* \w his|strong="H7971"\w* \w word|strong="H1697"\w*, \w and|strong="H7971"\w* \w melts|strong="H4529"\w* \w them|strong="H7971"\w*. +\q2 \w He|strong="H7971"\w* \w causes|strong="H1697"\w* \w his|strong="H7971"\w* \w wind|strong="H7307"\w* \w to|strong="H7971"\w* \w blow|strong="H5380"\w*, \w and|strong="H7971"\w* \w the|strong="H7971"\w* \w waters|strong="H4325"\w* \w flow|strong="H5140"\w*. +\q1 +\v 19 \w He|strong="H3478"\w* shows \w his|strong="H5046"\w* \w word|strong="H1697"\w* \w to|strong="H3478"\w* \w Jacob|strong="H3290"\w*, +\q2 \w his|strong="H5046"\w* \w statutes|strong="H2706"\w* \w and|strong="H3478"\w* \w his|strong="H5046"\w* \w ordinances|strong="H4941"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\q1 +\v 20 \w He|strong="H3651"\w* \w has|strong="H1471"\w* \w not|strong="H3808"\w* \w done|strong="H6213"\w* \w this|strong="H3651"\w* \w for|strong="H6213"\w* \w just|strong="H4941"\w* \w any|strong="H3605"\w* \w nation|strong="H1471"\w*. +\q2 \w They|strong="H3651"\w* don’t \w know|strong="H3045"\w* \w his|strong="H3605"\w* \w ordinances|strong="H4941"\w*. +\q1 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*! +\b +\c 148 +\q1 +\v 1 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*! +\q2 \w Praise|strong="H1984"\w* \w Yahweh|strong="H3068"\w* \w from|strong="H4480"\w* \w the|strong="H3068"\w* \w heavens|strong="H8064"\w*! +\q2 \w Praise|strong="H1984"\w* \w him|strong="H4480"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w heights|strong="H4791"\w*! +\q1 +\v 2 \w Praise|strong="H1984"\w* \w him|strong="H3605"\w*, \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w angels|strong="H4397"\w*! +\q2 \w Praise|strong="H1984"\w* \w him|strong="H3605"\w*, \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w army|strong="H6635"\w*! +\q1 +\v 3 \w Praise|strong="H1984"\w* \w him|strong="H3605"\w*, \w sun|strong="H8121"\w* \w and|strong="H8121"\w* \w moon|strong="H3394"\w*! +\q2 \w Praise|strong="H1984"\w* \w him|strong="H3605"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* shining \w stars|strong="H3556"\w*! +\q1 +\v 4 \w Praise|strong="H1984"\w* \w him|strong="H5921"\w*, \w you|strong="H5921"\w* \w heavens|strong="H8064"\w* \w of|strong="H4325"\w* \w heavens|strong="H8064"\w*, +\q2 \w you|strong="H5921"\w* \w waters|strong="H4325"\w* \w that|strong="H4325"\w* \w are|strong="H8064"\w* \w above|strong="H5921"\w* \w the|strong="H5921"\w* \w heavens|strong="H8064"\w*. +\q1 +\v 5 Let \w them|strong="H6680"\w* \w praise|strong="H1984"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*, +\q2 \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w commanded|strong="H6680"\w*, \w and|strong="H3068"\w* \w they|strong="H3588"\w* \w were|strong="H3068"\w* \w created|strong="H1254"\w*. +\q1 +\v 6 \w He|strong="H5414"\w* \w has|strong="H5414"\w* also \w established|strong="H5975"\w* \w them|strong="H5414"\w* \w forever|strong="H5769"\w* \w and|strong="H5769"\w* \w ever|strong="H5769"\w*. +\q2 \w He|strong="H5414"\w* \w has|strong="H5414"\w* \w made|strong="H5414"\w* \w a|strong="H3068"\w* \w decree|strong="H2706"\w* \w which|strong="H2706"\w* \w will|strong="H5414"\w* \w not|strong="H3808"\w* \w pass|strong="H5674"\w* \w away|strong="H5674"\w*. +\q1 +\v 7 \w Praise|strong="H1984"\w* \w Yahweh|strong="H3068"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* earth, +\q2 \w you|strong="H3605"\w* great \w sea|strong="H8577"\w* creatures, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w depths|strong="H8415"\w*, +\q1 +\v 8 lightning \w and|strong="H6213"\w* \w hail|strong="H1259"\w*, \w snow|strong="H7950"\w* \w and|strong="H6213"\w* \w clouds|strong="H7008"\w*, +\q2 \w stormy|strong="H5591"\w* \w wind|strong="H7307"\w*, \w fulfilling|strong="H6213"\w* \w his|strong="H6213"\w* \w word|strong="H1697"\w*, +\q1 +\v 9 \w mountains|strong="H2022"\w* \w and|strong="H6086"\w* \w all|strong="H3605"\w* \w hills|strong="H1389"\w*, +\q2 \w fruit|strong="H6529"\w* \w trees|strong="H6086"\w* \w and|strong="H6086"\w* \w all|strong="H3605"\w* cedars, +\q1 +\v 10 wild \w animals|strong="H2416"\w* \w and|strong="H3605"\w* \w all|strong="H3605"\w* livestock, +\q2 small \w creatures|strong="H2416"\w* \w and|strong="H3605"\w* \w flying|strong="H3671"\w* \w birds|strong="H6833"\w*, +\q1 +\v 11 \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* earth \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w peoples|strong="H3816"\w*, +\q2 \w princes|strong="H8269"\w* \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w judges|strong="H8199"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* earth, +\q1 +\v 12 \w both|strong="H1571"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w and|strong="H5288"\w* \w maidens|strong="H1330"\w*, +\q2 \w old|strong="H2205"\w* \w men|strong="H5288"\w* \w and|strong="H5288"\w* \w children|strong="H5288"\w*. +\q1 +\v 13 Let \w them|strong="H5921"\w* \w praise|strong="H1984"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w* \w alone|strong="H8034"\w* \w is|strong="H3068"\w* \w exalted|strong="H7682"\w*. +\q2 \w His|strong="H3068"\w* \w glory|strong="H1984"\w* \w is|strong="H3068"\w* \w above|strong="H5921"\w* \w the|strong="H5921"\w* \w earth|strong="H8064"\w* \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w heavens|strong="H8064"\w*. +\q1 +\v 14 \w He|strong="H3605"\w* \w has|strong="H3478"\w* \w lifted|strong="H7311"\w* \w up|strong="H7311"\w* \w the|strong="H3605"\w* \w horn|strong="H7161"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*, +\q2 \w the|strong="H3605"\w* \w praise|strong="H1984"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w saints|strong="H2623"\w*, +\q2 even \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w near|strong="H7138"\w* \w to|strong="H3478"\w* \w him|strong="H3605"\w*. +\q1 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*! +\b +\c 149 +\q1 +\v 1 \w Praise|strong="H1984"\w* \w Yahweh|strong="H3068"\w*! +\q2 \w Sing|strong="H7891"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w song|strong="H7892"\w*, +\q2 \w his|strong="H3068"\w* \w praise|strong="H1984"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w assembly|strong="H6951"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w saints|strong="H2623"\w*. +\q1 +\v 2 \w Let|strong="H8055"\w* \w Israel|strong="H3478"\w* \w rejoice|strong="H8055"\w* \w in|strong="H3478"\w* \w him|strong="H6213"\w* \w who|strong="H1121"\w* \w made|strong="H6213"\w* \w them|strong="H6213"\w*. +\q2 \w Let|strong="H8055"\w* \w the|strong="H6213"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Zion|strong="H6726"\w* \w be|strong="H1121"\w* \w joyful|strong="H1523"\w* \w in|strong="H3478"\w* \w their|strong="H6213"\w* \w King|strong="H4428"\w*. +\q1 +\v 3 Let them \w praise|strong="H1984"\w* \w his|strong="H1984"\w* \w name|strong="H8034"\w* \w in|strong="H8034"\w* \w the|strong="H1984"\w* \w dance|strong="H4234"\w*! +\q2 Let them \w sing|strong="H2167"\w* \w praises|strong="H2167"\w* \w to|strong="H8034"\w* \w him|strong="H1984"\w* \w with|strong="H1984"\w* \w tambourine|strong="H8596"\w* \w and|strong="H8596"\w* \w harp|strong="H3658"\w*! +\q1 +\v 4 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w takes|strong="H7521"\w* \w pleasure|strong="H7521"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*. +\q2 \w He|strong="H3588"\w* crowns \w the|strong="H3588"\w* \w humble|strong="H6035"\w* \w with|strong="H3068"\w* \w salvation|strong="H3444"\w*. +\q1 +\v 5 Let \w the|strong="H5921"\w* \w saints|strong="H2623"\w* \w rejoice|strong="H7442"\w* \w in|strong="H5921"\w* \w honor|strong="H3519"\w*. +\q2 Let \w them|strong="H5921"\w* \w sing|strong="H7442"\w* \w for|strong="H5921"\w* \w joy|strong="H7442"\w* \w on|strong="H5921"\w* \w their|strong="H5921"\w* \w beds|strong="H4904"\w*. +\q1 +\v 6 \w May|strong="H2719"\w* \w the|strong="H3027"\w* \w high|strong="H7319"\w* praises \w of|strong="H3027"\w* \w God|strong="H3027"\w* \w be|strong="H3027"\w* \w in|strong="H3027"\w* \w their|strong="H3027"\w* mouths, +\q2 \w and|strong="H3027"\w* \w a|strong="H3068"\w* two-edged \w sword|strong="H2719"\w* \w in|strong="H3027"\w* \w their|strong="H3027"\w* \w hand|strong="H3027"\w*, +\q1 +\v 7 \w to|strong="H6213"\w* \w execute|strong="H6213"\w* \w vengeance|strong="H5360"\w* \w on|strong="H6213"\w* \w the|strong="H6213"\w* \w nations|strong="H1471"\w*, +\q2 \w and|strong="H1471"\w* \w punishments|strong="H8433"\w* \w on|strong="H6213"\w* \w the|strong="H6213"\w* \w peoples|strong="H3816"\w*; +\q1 +\v 8 \w to|strong="H4428"\w* bind \w their|strong="H3513"\w* \w kings|strong="H4428"\w* \w with|strong="H4428"\w* \w chains|strong="H2131"\w*, +\q2 \w and|strong="H4428"\w* \w their|strong="H3513"\w* \w nobles|strong="H3513"\w* \w with|strong="H4428"\w* \w fetters|strong="H3525"\w* \w of|strong="H4428"\w* \w iron|strong="H1270"\w*; +\q1 +\v 9 \w to|strong="H6213"\w* \w execute|strong="H6213"\w* \w on|strong="H6213"\w* \w them|strong="H6213"\w* \w the|strong="H3605"\w* \w written|strong="H3789"\w* \w judgment|strong="H4941"\w*. +\q2 \w All|strong="H3605"\w* \w his|strong="H3605"\w* \w saints|strong="H2623"\w* \w have|strong="H3605"\w* \w this|strong="H6213"\w* \w honor|strong="H1926"\w*. +\q1 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*! +\b +\c 150 +\q1 +\v 1 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*! +\q2 \w Praise|strong="H1984"\w* \w God|strong="H3050"\w* \w in|strong="H3050"\w* \w his|strong="H1984"\w* \w sanctuary|strong="H6944"\w*! +\q2 \w Praise|strong="H1984"\w* \w him|strong="H1984"\w* \w in|strong="H3050"\w* \w his|strong="H1984"\w* heavens \w for|strong="H1984"\w* \w his|strong="H1984"\w* acts \w of|strong="H6944"\w* \w power|strong="H5797"\w*! +\q1 +\v 2 \w Praise|strong="H1984"\w* \w him|strong="H1984"\w* \w for|strong="H1369"\w* \w his|strong="H1984"\w* \w mighty|strong="H1369"\w* \w acts|strong="H1369"\w*! +\q2 \w Praise|strong="H1984"\w* \w him|strong="H1984"\w* according \w to|strong="H7230"\w* \w his|strong="H1984"\w* \w excellent|strong="H7230"\w* \w greatness|strong="H1433"\w*! +\q1 +\v 3 \w Praise|strong="H1984"\w* \w him|strong="H1984"\w* \w with|strong="H1984"\w* \w the|strong="H1984"\w* sounding \w of|strong="H7782"\w* \w the|strong="H1984"\w* \w trumpet|strong="H7782"\w*! +\q2 \w Praise|strong="H1984"\w* \w him|strong="H1984"\w* \w with|strong="H1984"\w* \w harp|strong="H3658"\w* \w and|strong="H3658"\w* \w lyre|strong="H3658"\w*! +\q1 +\v 4 \w Praise|strong="H1984"\w* \w him|strong="H1984"\w* \w with|strong="H1984"\w* \w tambourine|strong="H8596"\w* \w and|strong="H8596"\w* \w dancing|strong="H4234"\w*! +\q2 \w Praise|strong="H1984"\w* \w him|strong="H1984"\w* \w with|strong="H1984"\w* \w stringed|strong="H4482"\w* \w instruments|strong="H4482"\w* \w and|strong="H8596"\w* \w flute|strong="H5748"\w*! +\q1 +\v 5 \w Praise|strong="H1984"\w* \w him|strong="H1984"\w* \w with|strong="H1984"\w* \w loud|strong="H8088"\w* \w cymbals|strong="H6767"\w*! +\q2 \w Praise|strong="H1984"\w* \w him|strong="H1984"\w* \w with|strong="H1984"\w* \w resounding|strong="H8643"\w* \w cymbals|strong="H6767"\w*! +\q1 +\v 6 Let \w everything|strong="H3605"\w* \w that|strong="H3605"\w* \w has|strong="H3050"\w* \w breath|strong="H5397"\w* \w praise|strong="H1984"\w* \w Yah|strong="H3068"\w*! +\q2 \w Praise|strong="H1984"\w* \w Yah|strong="H3068"\w*! \ No newline at end of file diff --git a/bibles/eng-web_usfm/21-PROeng-web.usfm b/bibles/eng-web_usfm/21-PROeng-web.usfm new file mode 100644 index 0000000..7c71f2a --- /dev/null +++ b/bibles/eng-web_usfm/21-PROeng-web.usfm @@ -0,0 +1,2906 @@ +\id PRO World English Bible (WEB) +\ide UTF-8 +\h Proverbs +\toc1 The Proverbs +\toc2 Proverbs +\toc3 Pro +\mt1 The Proverbs +\c 1 +\p +\v 1 \w The|strong="H1732"\w* \w proverbs|strong="H4912"\w* \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w*, \w the|strong="H1732"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*: +\q1 +\v 2 \w to|strong="H3045"\w* \w know|strong="H3045"\w* \w wisdom|strong="H2451"\w* \w and|strong="H2451"\w* \w instruction|strong="H4148"\w*; +\q2 \w to|strong="H3045"\w* \w discern|strong="H3045"\w* \w the|strong="H3045"\w* words \w of|strong="H2451"\w* understanding; +\q1 +\v 3 \w to|strong="H4941"\w* \w receive|strong="H3947"\w* \w instruction|strong="H4148"\w* \w in|strong="H7919"\w* \w wise|strong="H7919"\w* dealing, +\q2 \w in|strong="H7919"\w* \w righteousness|strong="H6664"\w*, \w justice|strong="H4941"\w*, \w and|strong="H4941"\w* \w equity|strong="H4339"\w*; +\q1 +\v 4 \w to|strong="H5414"\w* \w give|strong="H5414"\w* \w prudence|strong="H6195"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w simple|strong="H6612"\w*, +\q2 \w knowledge|strong="H1847"\w* \w and|strong="H5288"\w* \w discretion|strong="H4209"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w*— +\q1 +\v 5 \w that|strong="H8085"\w* \w the|strong="H8085"\w* \w wise|strong="H2450"\w* \w man|strong="H2450"\w* \w may|strong="H3254"\w* \w hear|strong="H8085"\w*, \w and|strong="H8085"\w* \w increase|strong="H3254"\w* \w in|strong="H8085"\w* \w learning|strong="H3948"\w*; +\q2 \w that|strong="H8085"\w* \w the|strong="H8085"\w* \w man|strong="H2450"\w* \w of|strong="H8085"\w* \w understanding|strong="H8085"\w* \w may|strong="H3254"\w* \w attain|strong="H7069"\w* \w to|strong="H8085"\w* \w sound|strong="H8085"\w* \w counsel|strong="H8458"\w*; +\q1 +\v 6 \w to|strong="H1697"\w* understand \w a|strong="H3068"\w* \w proverb|strong="H4912"\w* \w and|strong="H1697"\w* \w parables|strong="H4912"\w*, +\q2 \w the|strong="H1697"\w* \w words|strong="H1697"\w* \w and|strong="H1697"\w* \w riddles|strong="H2420"\w* \w of|strong="H1697"\w* \w the|strong="H1697"\w* \w wise|strong="H2450"\w*. +\b +\q1 +\v 7 \w The|strong="H3068"\w* \w fear|strong="H3374"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*\f + \fr 1:7 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w beginning|strong="H7225"\w* \w of|strong="H3068"\w* \w knowledge|strong="H1847"\w*, +\q2 \w but|strong="H3068"\w* \w the|strong="H3068"\w* foolish despise \w wisdom|strong="H2451"\w* \w and|strong="H3068"\w* \w instruction|strong="H4148"\w*. +\q1 +\v 8 \w My|strong="H8085"\w* \w son|strong="H1121"\w*, \w listen|strong="H8085"\w* \w to|strong="H8085"\w* \w your|strong="H8085"\w* \w father|strong="H1121"\w*’s \w instruction|strong="H4148"\w*, +\q2 \w and|strong="H1121"\w* don’t \w forsake|strong="H5203"\w* \w your|strong="H8085"\w* mother’s \w teaching|strong="H8451"\w*; +\q1 +\v 9 \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w will|strong="H1992"\w* \w be|strong="H3588"\w* \w a|strong="H3068"\w* \w garland|strong="H3880"\w* \w to|strong="H7218"\w* \w grace|strong="H2580"\w* \w your|strong="H3588"\w* \w head|strong="H7218"\w*, +\q2 \w and|strong="H7218"\w* \w chains|strong="H6060"\w* \w around|strong="H1621"\w* \w your|strong="H3588"\w* \w neck|strong="H1621"\w*. +\q1 +\v 10 My \w son|strong="H1121"\w*, \w if|strong="H1121"\w* \w sinners|strong="H2400"\w* \w entice|strong="H6601"\w* you, +\q2 don’t consent. +\q1 +\v 11 If \w they|strong="H2600"\w* say, “\w Come|strong="H3212"\w* \w with|strong="H3212"\w* us. +\q2 \w Let|strong="H3212"\w*’s lie \w in|strong="H3212"\w* wait \w for|strong="H3212"\w* \w blood|strong="H1818"\w*. +\q2 \w Let|strong="H3212"\w*’s \w lurk|strong="H6845"\w* \w secretly|strong="H6845"\w* \w for|strong="H3212"\w* \w the|strong="H3212"\w* \w innocent|strong="H5355"\w* \w without|strong="H2600"\w* \w cause|strong="H2600"\w*. +\q1 +\v 12 \w Let|strong="H3381"\w*’s \w swallow|strong="H1104"\w* \w them|strong="H3381"\w* \w up|strong="H1104"\w* \w alive|strong="H2416"\w* \w like|strong="H3381"\w* \w Sheol|strong="H7585"\w*,\f + \fr 1:12 \ft Sheol is the place of the dead.\f* +\q2 \w and|strong="H3381"\w* \w whole|strong="H8549"\w*, \w like|strong="H3381"\w* those \w who|strong="H2416"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w the|strong="H3381"\w* \w pit|strong="H7585"\w*. +\q1 +\v 13 \w We|strong="H3605"\w*’ll \w find|strong="H4672"\w* \w all|strong="H3605"\w* \w valuable|strong="H3368"\w* \w wealth|strong="H1952"\w*. +\q2 \w We|strong="H3605"\w*’ll \w fill|strong="H4390"\w* \w our|strong="H3605"\w* \w houses|strong="H1004"\w* \w with|strong="H4390"\w* \w plunder|strong="H7998"\w*. +\q1 +\v 14 \w You|strong="H3605"\w* shall \w cast|strong="H5307"\w* \w your|strong="H3605"\w* \w lot|strong="H1486"\w* \w among|strong="H8432"\w* \w us|strong="H1961"\w*. +\q2 \w We|strong="H3605"\w*’ll \w all|strong="H3605"\w* \w have|strong="H1961"\w* \w one|strong="H3605"\w* \w purse|strong="H3599"\w*”— +\q1 +\v 15 \w my|strong="H1870"\w* \w son|strong="H1121"\w*, don’t \w walk|strong="H3212"\w* \w on|strong="H1870"\w* \w the|strong="H1870"\w* \w path|strong="H5410"\w* \w with|strong="H3212"\w* \w them|strong="H1121"\w*. +\q2 \w Keep|strong="H4513"\w* \w your|strong="H4513"\w* \w foot|strong="H7272"\w* \w from|strong="H1121"\w* \w their|strong="H1870"\w* \w path|strong="H5410"\w*, +\q1 +\v 16 \w for|strong="H3588"\w* \w their|strong="H3588"\w* \w feet|strong="H7272"\w* \w run|strong="H7323"\w* \w to|strong="H7323"\w* \w evil|strong="H7451"\w*. +\q2 \w They|strong="H3588"\w* \w hurry|strong="H4116"\w* \w to|strong="H7323"\w* \w shed|strong="H8210"\w* \w blood|strong="H1818"\w*. +\q1 +\v 17 \w For|strong="H3588"\w* \w the|strong="H3605"\w* \w net|strong="H7568"\w* \w is|strong="H3605"\w* \w spread|strong="H2219"\w* \w in|strong="H5869"\w* \w vain|strong="H2600"\w* \w in|strong="H5869"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H5869"\w* \w any|strong="H3605"\w* \w bird|strong="H3671"\w*; +\q1 +\v 18 \w but|strong="H1992"\w* \w these|strong="H1992"\w* \w lay|strong="H5315"\w* \w in|strong="H5315"\w* wait \w for|strong="H5315"\w* \w their|strong="H1992"\w* \w own|strong="H5315"\w* \w blood|strong="H1818"\w*. +\q2 \w They|strong="H1992"\w* \w lurk|strong="H6845"\w* \w secretly|strong="H6845"\w* \w for|strong="H5315"\w* \w their|strong="H1992"\w* \w own|strong="H5315"\w* \w lives|strong="H5315"\w*. +\q1 +\v 19 \w So|strong="H3651"\w* \w are|strong="H5315"\w* \w the|strong="H3605"\w* ways \w of|strong="H1167"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H5315"\w* \w greedy|strong="H1214"\w* \w for|strong="H5315"\w* \w gain|strong="H1215"\w*. +\q2 \w It|strong="H3651"\w* \w takes|strong="H3947"\w* \w away|strong="H3947"\w* \w the|strong="H3605"\w* \w life|strong="H5315"\w* \w of|strong="H1167"\w* \w its|strong="H3605"\w* \w owners|strong="H1167"\w*. +\b +\q1 +\v 20 \w Wisdom|strong="H2454"\w* \w calls|strong="H2454"\w* \w aloud|strong="H7442"\w* \w in|strong="H6963"\w* \w the|strong="H5414"\w* \w street|strong="H2351"\w*. +\q2 She \w utters|strong="H5414"\w* \w her|strong="H5414"\w* \w voice|strong="H6963"\w* \w in|strong="H6963"\w* \w the|strong="H5414"\w* \w public|strong="H6963"\w* \w squares|strong="H7339"\w*. +\q1 +\v 21 \w She|strong="H7121"\w* \w calls|strong="H7121"\w* \w at|strong="H7218"\w* \w the|strong="H7121"\w* \w head|strong="H7218"\w* \w of|strong="H5892"\w* \w noisy|strong="H1993"\w* places. +\q2 \w At|strong="H7218"\w* \w the|strong="H7121"\w* \w entrance|strong="H6607"\w* \w of|strong="H5892"\w* \w the|strong="H7121"\w* \w city|strong="H5892"\w* \w gates|strong="H8179"\w*, \w she|strong="H7121"\w* utters \w her|strong="H7121"\w* words: +\q1 +\v 22 “\w How|strong="H4970"\w* \w long|strong="H5704"\w*, \w you|strong="H5704"\w* \w simple|strong="H6612"\w* \w ones|strong="H6612"\w*, \w will|strong="H5704"\w* \w you|strong="H5704"\w* love \w simplicity|strong="H6612"\w*? +\q2 \w How|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H5704"\w* \w mockers|strong="H3887"\w* \w delight|strong="H2530"\w* \w themselves|strong="H1992"\w* \w in|strong="H1992"\w* mockery, +\q2 \w and|strong="H1847"\w* \w fools|strong="H3684"\w* \w hate|strong="H8130"\w* \w knowledge|strong="H1847"\w*? +\q1 +\v 23 \w Turn|strong="H7725"\w* \w at|strong="H7725"\w* \w my|strong="H3045"\w* \w reproof|strong="H8433"\w*. +\q2 \w Behold|strong="H2009"\w*,\f + \fr 1:23 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w I|strong="H2009"\w* \w will|strong="H7307"\w* \w pour|strong="H5042"\w* \w out|strong="H5042"\w* \w my|strong="H3045"\w* \w spirit|strong="H7307"\w* \w on|strong="H1697"\w* \w you|strong="H7725"\w*. +\q2 \w I|strong="H2009"\w* \w will|strong="H7307"\w* \w make|strong="H3045"\w* \w known|strong="H3045"\w* \w my|strong="H3045"\w* \w words|strong="H1697"\w* \w to|strong="H7725"\w* \w you|strong="H7725"\w*. +\q1 +\v 24 \w Because|strong="H3282"\w* \w I|strong="H3282"\w* \w have|strong="H3027"\w* \w called|strong="H7121"\w*, \w and|strong="H3027"\w* \w you|strong="H3282"\w* \w have|strong="H3027"\w* \w refused|strong="H3985"\w*; +\q2 \w I|strong="H3282"\w* \w have|strong="H3027"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w my|strong="H5186"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* no \w one|strong="H3027"\w* \w has|strong="H3027"\w* \w paid|strong="H7181"\w* \w attention|strong="H7181"\w*; +\q1 +\v 25 \w but|strong="H3808"\w* \w you|strong="H3605"\w* \w have|strong="H3605"\w* ignored \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w counsel|strong="H6098"\w*, +\q2 \w and|strong="H6098"\w* wanted \w none|strong="H3808"\w* \w of|strong="H3605"\w* \w my|strong="H3605"\w* \w reproof|strong="H8433"\w*; +\q1 +\v 26 \w I|strong="H1571"\w* \w also|strong="H1571"\w* \w will|strong="H1571"\w* \w laugh|strong="H7832"\w* \w at|strong="H7832"\w* \w your|strong="H1571"\w* \w disaster|strong="H6343"\w*. +\q2 \w I|strong="H1571"\w* \w will|strong="H1571"\w* \w mock|strong="H3932"\w* \w when|strong="H1571"\w* calamity overtakes \w you|strong="H1571"\w*, +\q1 +\v 27 \w when|strong="H5921"\w* calamity overtakes \w you|strong="H5921"\w* \w like|strong="H5921"\w* \w a|strong="H3068"\w* \w storm|strong="H5492"\w*, +\q2 \w when|strong="H5921"\w* \w your|strong="H5921"\w* \w disaster|strong="H6343"\w* comes \w on|strong="H5921"\w* \w like|strong="H5921"\w* \w a|strong="H3068"\w* \w whirlwind|strong="H5492"\w*, +\q2 \w when|strong="H5921"\w* \w distress|strong="H6869"\w* \w and|strong="H6869"\w* \w anguish|strong="H6869"\w* come \w on|strong="H5921"\w* \w you|strong="H5921"\w*. +\q1 +\v 28 \w Then|strong="H6030"\w* \w they|strong="H3808"\w* \w will|strong="H3808"\w* \w call|strong="H7121"\w* \w on|strong="H7121"\w* \w me|strong="H7121"\w*, \w but|strong="H3808"\w* \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w answer|strong="H6030"\w*. +\q2 \w They|strong="H3808"\w* \w will|strong="H3808"\w* \w seek|strong="H7836"\w* \w me|strong="H7121"\w* \w diligently|strong="H7836"\w*, \w but|strong="H3808"\w* \w they|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w find|strong="H4672"\w* \w me|strong="H7121"\w*, +\q1 +\v 29 \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w hated|strong="H8130"\w* \w knowledge|strong="H1847"\w*, +\q2 \w and|strong="H3068"\w* didn’t choose \w the|strong="H3588"\w* \w fear|strong="H3374"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 30 \w They|strong="H3808"\w* wanted \w none|strong="H3808"\w* \w of|strong="H3605"\w* \w my|strong="H3605"\w* \w counsel|strong="H6098"\w*. +\q2 \w They|strong="H3808"\w* \w despised|strong="H5006"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w reproof|strong="H8433"\w*. +\q1 +\v 31 \w Therefore|strong="H4156"\w* \w they|strong="H4156"\w* \w will|strong="H1870"\w* eat \w of|strong="H1870"\w* \w the|strong="H1870"\w* \w fruit|strong="H6529"\w* \w of|strong="H1870"\w* \w their|strong="H1870"\w* own \w way|strong="H1870"\w*, +\q2 \w and|strong="H1870"\w* \w be|strong="H1870"\w* \w filled|strong="H7646"\w* \w with|strong="H7646"\w* \w their|strong="H1870"\w* own schemes. +\q1 +\v 32 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w backsliding|strong="H4878"\w* \w of|strong="H7962"\w* \w the|strong="H3588"\w* \w simple|strong="H6612"\w* \w will|strong="H3684"\w* \w kill|strong="H2026"\w* \w them|strong="H2026"\w*. +\q2 \w The|strong="H3588"\w* careless \w ease|strong="H7962"\w* \w of|strong="H7962"\w* \w fools|strong="H3684"\w* \w will|strong="H3684"\w* \w destroy|strong="H2026"\w* \w them|strong="H2026"\w*. +\q1 +\v 33 \w But|strong="H8085"\w* whoever \w listens|strong="H8085"\w* \w to|strong="H8085"\w* \w me|strong="H8085"\w* \w will|strong="H8085"\w* \w dwell|strong="H7931"\w* securely, +\q2 \w and|strong="H8085"\w* \w will|strong="H8085"\w* \w be|strong="H7451"\w* \w at|strong="H7931"\w* \w ease|strong="H7599"\w*, without \w fear|strong="H6343"\w* \w of|strong="H6343"\w* \w harm|strong="H7451"\w*.” +\c 2 +\q1 +\v 1 \w My|strong="H3947"\w* \w son|strong="H1121"\w*, \w if|strong="H1121"\w* \w you|strong="H3947"\w* \w will|strong="H1121"\w* \w receive|strong="H3947"\w* \w my|strong="H3947"\w* words, +\q2 \w and|strong="H1121"\w* \w store|strong="H6845"\w* \w up|strong="H6845"\w* \w my|strong="H3947"\w* \w commandments|strong="H4687"\w* within \w you|strong="H3947"\w*, +\q1 +\v 2 so as \w to|strong="H3820"\w* \w turn|strong="H5186"\w* \w your|strong="H5186"\w* ear \w to|strong="H3820"\w* \w wisdom|strong="H2451"\w*, +\q2 \w and|strong="H2451"\w* \w apply|strong="H5186"\w* \w your|strong="H5186"\w* \w heart|strong="H3820"\w* \w to|strong="H3820"\w* \w understanding|strong="H8394"\w*; +\q1 +\v 3 \w yes|strong="H3588"\w*, \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w call|strong="H7121"\w* \w out|strong="H5414"\w* \w for|strong="H3588"\w* \w discernment|strong="H8394"\w*, +\q2 \w and|strong="H6963"\w* \w lift|strong="H5414"\w* \w up|strong="H5414"\w* \w your|strong="H5414"\w* \w voice|strong="H6963"\w* \w for|strong="H3588"\w* \w understanding|strong="H8394"\w*; +\q1 +\v 4 if \w you|strong="H1245"\w* \w seek|strong="H1245"\w* her \w as|strong="H3701"\w* \w silver|strong="H3701"\w*, +\q2 \w and|strong="H3701"\w* \w search|strong="H2664"\w* \w for|strong="H1245"\w* her \w as|strong="H3701"\w* \w for|strong="H1245"\w* \w hidden|strong="H4301"\w* \w treasures|strong="H4301"\w*; +\q1 +\v 5 \w then|strong="H3068"\w* \w you|strong="H4672"\w* \w will|strong="H3068"\w* understand \w the|strong="H3068"\w* \w fear|strong="H3374"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* \w find|strong="H4672"\w* \w the|strong="H3068"\w* \w knowledge|strong="H1847"\w* \w of|strong="H3068"\w* \w God|strong="H3068"\w*.\f + \fr 2:5 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* +\q1 +\v 6 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w gives|strong="H5414"\w* \w wisdom|strong="H2451"\w*. +\q2 \w Out|strong="H5414"\w* \w of|strong="H3068"\w* \w his|strong="H5414"\w* \w mouth|strong="H6310"\w* \w comes|strong="H1847"\w* \w knowledge|strong="H1847"\w* \w and|strong="H3068"\w* \w understanding|strong="H8394"\w*. +\q1 +\v 7 \w He|strong="H1980"\w* lays \w up|strong="H6845"\w* \w sound|strong="H8454"\w* \w wisdom|strong="H8454"\w* for \w the|strong="H1980"\w* \w upright|strong="H3477"\w*. +\q2 \w He|strong="H1980"\w* \w is|strong="H3477"\w* \w a|strong="H3068"\w* \w shield|strong="H4043"\w* \w to|strong="H1980"\w* \w those|strong="H1980"\w* \w who|strong="H3477"\w* \w walk|strong="H1980"\w* \w in|strong="H1980"\w* \w integrity|strong="H8537"\w*, +\q1 +\v 8 \w that|strong="H1870"\w* he may \w guard|strong="H8104"\w* \w the|strong="H8104"\w* \w paths|strong="H1870"\w* \w of|strong="H1870"\w* \w justice|strong="H4941"\w*, +\q2 \w and|strong="H4941"\w* \w preserve|strong="H5341"\w* \w the|strong="H8104"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w his|strong="H8104"\w* \w saints|strong="H2623"\w*. +\q1 +\v 9 \w Then|strong="H3605"\w* \w you|strong="H3605"\w* \w will|strong="H6664"\w* understand \w righteousness|strong="H6664"\w* \w and|strong="H4941"\w* \w justice|strong="H4941"\w*, +\q2 \w equity|strong="H4339"\w* \w and|strong="H4941"\w* \w every|strong="H3605"\w* \w good|strong="H2896"\w* \w path|strong="H4570"\w*. +\q1 +\v 10 \w For|strong="H3588"\w* \w wisdom|strong="H2451"\w* \w will|strong="H5315"\w* enter \w into|strong="H1847"\w* \w your|strong="H3588"\w* \w heart|strong="H3820"\w*. +\q2 \w Knowledge|strong="H1847"\w* \w will|strong="H5315"\w* \w be|strong="H3820"\w* \w pleasant|strong="H5276"\w* \w to|strong="H3820"\w* \w your|strong="H3588"\w* \w soul|strong="H5315"\w*. +\q1 +\v 11 \w Discretion|strong="H4209"\w* \w will|strong="H8394"\w* \w watch|strong="H8104"\w* \w over|strong="H5921"\w* \w you|strong="H5921"\w*. +\q2 \w Understanding|strong="H8394"\w* \w will|strong="H8394"\w* \w keep|strong="H8104"\w* \w you|strong="H5921"\w*, +\q1 +\v 12 \w to|strong="H1696"\w* \w deliver|strong="H5337"\w* \w you|strong="H1696"\w* \w from|strong="H5337"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w evil|strong="H7451"\w*, +\q2 \w from|strong="H5337"\w* \w the|strong="H1870"\w* \w men|strong="H7451"\w* who \w speak|strong="H1696"\w* \w perverse|strong="H8419"\w* \w things|strong="H8419"\w*, +\q1 +\v 13 who \w forsake|strong="H5800"\w* \w the|strong="H1870"\w* \w paths|strong="H1870"\w* \w of|strong="H1870"\w* \w uprightness|strong="H3476"\w*, +\q2 \w to|strong="H3212"\w* \w walk|strong="H3212"\w* \w in|strong="H3212"\w* \w the|strong="H1870"\w* \w ways|strong="H1870"\w* \w of|strong="H1870"\w* \w darkness|strong="H2822"\w*, +\q1 +\v 14 \w who|strong="H6213"\w* \w rejoice|strong="H1523"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w evil|strong="H7451"\w*, +\q2 \w and|strong="H6213"\w* \w delight|strong="H1523"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* perverseness \w of|strong="H6213"\w* \w evil|strong="H7451"\w*, +\q1 +\v 15 \w who|strong="H6141"\w* \w are|strong="H4570"\w* \w crooked|strong="H6141"\w* \w in|strong="H6141"\w* their \w ways|strong="H4570"\w*, +\q2 \w and|strong="H6141"\w* wayward \w in|strong="H6141"\w* their \w paths|strong="H4570"\w*, +\q1 +\v 16 \w to|strong="H2505"\w* \w deliver|strong="H5337"\w* \w you|strong="H2114"\w* \w from|strong="H5337"\w* \w the|strong="H5337"\w* \w strange|strong="H2114"\w* \w woman|strong="H5237"\w*, +\q2 even \w from|strong="H5337"\w* \w the|strong="H5337"\w* \w foreigner|strong="H5237"\w* \w who|strong="H2114"\w* \w flatters|strong="H2505"\w* with \w her|strong="H5337"\w* words, +\q1 +\v 17 \w who|strong="H7911"\w* \w forsakes|strong="H5800"\w* \w the|strong="H5800"\w* friend \w of|strong="H1285"\w* \w her|strong="H7911"\w* \w youth|strong="H5271"\w*, +\q2 \w and|strong="H1285"\w* \w forgets|strong="H7911"\w* \w the|strong="H5800"\w* \w covenant|strong="H1285"\w* \w of|strong="H1285"\w* \w her|strong="H7911"\w* God; +\q1 +\v 18 \w for|strong="H3588"\w* \w her|strong="H3588"\w* \w house|strong="H1004"\w* leads \w down|strong="H7743"\w* \w to|strong="H1004"\w* \w death|strong="H4194"\w*, +\q2 \w her|strong="H3588"\w* \w paths|strong="H4570"\w* \w to|strong="H1004"\w* \w the|strong="H3588"\w* \w departed|strong="H7496"\w* \w spirits|strong="H7496"\w*. +\q1 +\v 19 \w None|strong="H3808"\w* \w who|strong="H3605"\w* \w go|strong="H7725"\w* \w to|strong="H7725"\w* \w her|strong="H3605"\w* \w return|strong="H7725"\w* \w again|strong="H7725"\w*, +\q2 \w neither|strong="H3808"\w* \w do|strong="H3605"\w* \w they|strong="H3808"\w* \w attain|strong="H5381"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* paths \w of|strong="H3605"\w* \w life|strong="H2416"\w*. +\q1 +\v 20 \w Therefore|strong="H4616"\w* \w walk|strong="H3212"\w* \w in|strong="H3212"\w* \w the|strong="H8104"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w good|strong="H2896"\w* \w men|strong="H6662"\w*, +\q2 \w and|strong="H3212"\w* \w keep|strong="H8104"\w* \w the|strong="H8104"\w* \w paths|strong="H1870"\w* \w of|strong="H1870"\w* \w the|strong="H8104"\w* \w righteous|strong="H6662"\w*. +\q1 +\v 21 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w upright|strong="H3477"\w* \w will|strong="H3477"\w* \w dwell|strong="H7931"\w* \w in|strong="H7931"\w* \w the|strong="H3588"\w* land. +\q2 \w The|strong="H3588"\w* \w perfect|strong="H8549"\w* \w will|strong="H3477"\w* \w remain|strong="H3498"\w* \w in|strong="H7931"\w* \w it|strong="H3588"\w*. +\q1 +\v 22 \w But|strong="H7563"\w* \w the|strong="H4480"\w* \w wicked|strong="H7563"\w* \w will|strong="H7563"\w* \w be|strong="H7563"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* land. +\q2 \w The|strong="H4480"\w* treacherous \w will|strong="H7563"\w* \w be|strong="H7563"\w* rooted \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w it|strong="H3772"\w*. +\c 3 +\q1 +\v 1 \w My|strong="H7911"\w* \w son|strong="H1121"\w*, don’t \w forget|strong="H7911"\w* \w my|strong="H7911"\w* \w teaching|strong="H8451"\w*, +\q2 \w but|strong="H7911"\w* let \w your|strong="H7911"\w* \w heart|strong="H3820"\w* \w keep|strong="H5341"\w* \w my|strong="H7911"\w* \w commandments|strong="H4687"\w*, +\q1 +\v 2 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H3117"\w* \w add|strong="H3254"\w* \w to|strong="H3117"\w* \w you|strong="H3588"\w* \w length|strong="H8141"\w* \w of|strong="H3117"\w* \w days|strong="H3117"\w*, +\q2 \w years|strong="H8141"\w* \w of|strong="H3117"\w* \w life|strong="H2416"\w*, \w and|strong="H3117"\w* \w peace|strong="H7965"\w*. +\q1 +\v 3 Don’t \w let|strong="H5800"\w* \w kindness|strong="H2617"\w* \w and|strong="H2617"\w* truth \w forsake|strong="H5800"\w* \w you|strong="H5921"\w*. +\q2 \w Bind|strong="H7194"\w* \w them|strong="H5921"\w* \w around|strong="H5921"\w* \w your|strong="H5921"\w* \w neck|strong="H1621"\w*. +\q2 \w Write|strong="H3789"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tablet|strong="H3871"\w* \w of|strong="H5921"\w* \w your|strong="H5921"\w* \w heart|strong="H3820"\w*. +\q1 +\v 4 \w So|strong="H4672"\w* \w you|strong="H4672"\w* \w will|strong="H5869"\w* \w find|strong="H4672"\w* \w favor|strong="H2580"\w*, +\q2 \w and|strong="H5869"\w* \w good|strong="H2896"\w* \w understanding|strong="H7922"\w* \w in|strong="H4672"\w* \w the|strong="H4672"\w* \w sight|strong="H5869"\w* \w of|strong="H5869"\w* God \w and|strong="H5869"\w* \w man|strong="H2896"\w*. +\q1 +\v 5 \w Trust|strong="H8172"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w heart|strong="H3820"\w*, +\q2 \w and|strong="H3068"\w* don’t \w lean|strong="H8172"\w* \w on|strong="H3068"\w* \w your|strong="H3068"\w* own \w understanding|strong="H3820"\w*. +\q1 +\v 6 \w In|strong="H1870"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w ways|strong="H1870"\w* \w acknowledge|strong="H3045"\w* \w him|strong="H1931"\w*, +\q2 \w and|strong="H1870"\w* \w he|strong="H1931"\w* \w will|strong="H1931"\w* \w make|strong="H3045"\w* \w your|strong="H3605"\w* \w paths|strong="H1870"\w* \w straight|strong="H3474"\w*. +\q1 +\v 7 Don’t \w be|strong="H1961"\w* \w wise|strong="H2450"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w own|strong="H1961"\w* \w eyes|strong="H5869"\w*. +\q2 \w Fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w depart|strong="H5493"\w* \w from|strong="H5493"\w* \w evil|strong="H7451"\w*. +\q1 +\v 8 \w It|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w health|strong="H7500"\w* \w to|strong="H1961"\w* \w your|strong="H1961"\w* \w body|strong="H6106"\w*, +\q2 \w and|strong="H6106"\w* nourishment \w to|strong="H1961"\w* \w your|strong="H1961"\w* \w bones|strong="H6106"\w*. +\q1 +\v 9 \w Honor|strong="H3513"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w your|strong="H3068"\w* \w substance|strong="H1952"\w*, +\q2 \w with|strong="H3068"\w* \w the|strong="H3605"\w* \w first|strong="H7225"\w* \w fruits|strong="H7225"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w increase|strong="H8393"\w*; +\q1 +\v 10 so \w your|strong="H4390"\w* barns \w will|strong="H3342"\w* be \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w plenty|strong="H7647"\w*, +\q2 \w and|strong="H8492"\w* \w your|strong="H4390"\w* \w vats|strong="H3342"\w* \w will|strong="H3342"\w* \w overflow|strong="H6555"\w* \w with|strong="H4390"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w*. +\q1 +\v 11 \w My|strong="H3068"\w* \w son|strong="H1121"\w*, don’t \w despise|strong="H3988"\w* \w Yahweh|strong="H3068"\w*’s \w discipline|strong="H4148"\w*, +\q2 neither \w be|strong="H3068"\w* \w weary|strong="H6973"\w* \w of|strong="H1121"\w* \w his|strong="H3068"\w* \w correction|strong="H4148"\w*; +\q1 +\v 12 \w for|strong="H3588"\w* \w whom|strong="H3588"\w* \w Yahweh|strong="H3068"\w* loves, \w he|strong="H3588"\w* \w corrects|strong="H3198"\w*, +\q2 \w even|strong="H3588"\w* \w as|strong="H3068"\w* \w a|strong="H3068"\w* \w father|strong="H1121"\w* \w reproves|strong="H3198"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w in|strong="H3068"\w* \w whom|strong="H3588"\w* \w he|strong="H3588"\w* \w delights|strong="H7521"\w*. +\b +\q1 +\v 13 Happy \w is|strong="H2451"\w* \w the|strong="H4672"\w* \w man|strong="H2451"\w* \w who|strong="H4672"\w* \w finds|strong="H4672"\w* \w wisdom|strong="H2451"\w*, +\q2 \w the|strong="H4672"\w* \w man|strong="H2451"\w* \w who|strong="H4672"\w* gets \w understanding|strong="H8394"\w*. +\q1 +\v 14 \w For|strong="H3588"\w* \w her|strong="H5504"\w* \w good|strong="H2896"\w* \w profit|strong="H5504"\w* \w is|strong="H2896"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* getting \w silver|strong="H3701"\w*, +\q2 \w and|strong="H3701"\w* \w her|strong="H5504"\w* return \w is|strong="H2896"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w fine|strong="H2896"\w* \w gold|strong="H2742"\w*. +\q1 +\v 15 \w She|strong="H1931"\w* \w is|strong="H1931"\w* \w more|strong="H3808"\w* \w precious|strong="H3368"\w* \w than|strong="H3808"\w* \w rubies|strong="H6443"\w*. +\q2 \w None|strong="H3808"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w things|strong="H3605"\w* \w you|strong="H3605"\w* \w can|strong="H3808"\w* \w desire|strong="H2656"\w* \w are|strong="H3808"\w* \w to|strong="H3808"\w* \w be|strong="H3808"\w* \w compared|strong="H7737"\w* \w to|strong="H3808"\w* \w her|strong="H3605"\w*. +\q1 +\v 16 \w Length|strong="H3117"\w* \w of|strong="H3117"\w* \w days|strong="H3117"\w* \w is|strong="H3117"\w* \w in|strong="H3117"\w* \w her|strong="H3117"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w*. +\q2 \w In|strong="H3117"\w* \w her|strong="H3117"\w* \w left|strong="H8040"\w* \w hand|strong="H3225"\w* \w are|strong="H3117"\w* \w riches|strong="H6239"\w* \w and|strong="H3117"\w* \w honor|strong="H3519"\w*. +\q1 +\v 17 \w Her|strong="H3605"\w* \w ways|strong="H1870"\w* \w are|strong="H1870"\w* \w ways|strong="H1870"\w* \w of|strong="H1870"\w* \w pleasantness|strong="H5278"\w*. +\q2 \w All|strong="H3605"\w* \w her|strong="H3605"\w* \w paths|strong="H5410"\w* \w are|strong="H1870"\w* \w peace|strong="H7965"\w*. +\q1 +\v 18 \w She|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w tree|strong="H6086"\w* \w of|strong="H6086"\w* \w life|strong="H2416"\w* \w to|strong="H6086"\w* \w those|strong="H1931"\w* \w who|strong="H1931"\w* lay \w hold|strong="H2388"\w* \w of|strong="H6086"\w* \w her|strong="H1931"\w*. +\q2 Happy \w is|strong="H1931"\w* everyone \w who|strong="H1931"\w* retains \w her|strong="H1931"\w*. +\q1 +\v 19 \w By|strong="H3068"\w* \w wisdom|strong="H2451"\w* \w Yahweh|strong="H3068"\w* \w founded|strong="H3245"\w* \w the|strong="H3068"\w* \w earth|strong="H8064"\w*. +\q2 \w By|strong="H3068"\w* \w understanding|strong="H8394"\w*, \w he|strong="H3068"\w* \w established|strong="H3559"\w* \w the|strong="H3068"\w* \w heavens|strong="H8064"\w*. +\q1 +\v 20 \w By|strong="H7834"\w* \w his|strong="H1847"\w* \w knowledge|strong="H1847"\w*, \w the|strong="H1234"\w* \w depths|strong="H8415"\w* \w were|strong="H8415"\w* \w broken|strong="H1234"\w* \w up|strong="H1234"\w*, +\q2 \w and|strong="H1847"\w* \w the|strong="H1234"\w* \w skies|strong="H7834"\w* \w drop|strong="H7491"\w* \w down|strong="H7491"\w* \w the|strong="H1234"\w* \w dew|strong="H2919"\w*. +\q1 +\v 21 \w My|strong="H5341"\w* \w son|strong="H1121"\w*, \w let|strong="H3868"\w* \w them|strong="H1121"\w* \w not|strong="H5869"\w* \w depart|strong="H3868"\w* \w from|strong="H1121"\w* \w your|strong="H5341"\w* \w eyes|strong="H5869"\w*. +\q2 \w Keep|strong="H5341"\w* \w sound|strong="H8454"\w* \w wisdom|strong="H8454"\w* \w and|strong="H1121"\w* \w discretion|strong="H4209"\w*, +\q1 +\v 22 \w so|strong="H1961"\w* \w they|strong="H5315"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w life|strong="H5315"\w* \w to|strong="H1961"\w* \w your|strong="H1961"\w* \w soul|strong="H5315"\w*, +\q2 \w and|strong="H5315"\w* \w grace|strong="H2580"\w* \w for|strong="H5315"\w* \w your|strong="H1961"\w* \w neck|strong="H1621"\w*. +\q1 +\v 23 \w Then|strong="H3808"\w* \w you|strong="H3808"\w* \w shall|strong="H3808"\w* \w walk|strong="H3212"\w* \w in|strong="H3212"\w* \w your|strong="H3808"\w* \w way|strong="H1870"\w* securely. +\q2 \w Your|strong="H3808"\w* \w foot|strong="H7272"\w* won’t \w stumble|strong="H5062"\w*. +\q1 +\v 24 \w When|strong="H7901"\w* \w you|strong="H3808"\w* \w lie|strong="H7901"\w* \w down|strong="H7901"\w*, \w you|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w afraid|strong="H6342"\w*. +\q2 Yes, \w you|strong="H3808"\w* \w will|strong="H3808"\w* \w lie|strong="H7901"\w* \w down|strong="H7901"\w*, \w and|strong="H7901"\w* \w your|strong="H3808"\w* \w sleep|strong="H8142"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w sweet|strong="H6149"\w*. +\q1 +\v 25 Don’t \w be|strong="H7563"\w* \w afraid|strong="H3372"\w* \w of|strong="H3372"\w* \w sudden|strong="H6597"\w* \w fear|strong="H3372"\w*, +\q2 neither \w of|strong="H3372"\w* \w the|strong="H3588"\w* \w desolation|strong="H7722"\w* \w of|strong="H3372"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w*, \w when|strong="H3588"\w* \w it|strong="H3588"\w* comes; +\q1 +\v 26 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w your|strong="H3068"\w* \w confidence|strong="H3689"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w keep|strong="H8104"\w* \w your|strong="H3068"\w* \w foot|strong="H7272"\w* \w from|strong="H3068"\w* \w being|strong="H1961"\w* \w taken|strong="H1961"\w*. +\b +\q1 +\v 27 Don’t \w withhold|strong="H4513"\w* \w good|strong="H2896"\w* \w from|strong="H3027"\w* \w those|strong="H6213"\w* \w to|strong="H1961"\w* whom \w it|strong="H6213"\w* \w is|strong="H3027"\w* \w due|strong="H1167"\w*, +\q2 \w when|strong="H1961"\w* \w it|strong="H6213"\w* \w is|strong="H3027"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w power|strong="H3027"\w* \w of|strong="H3027"\w* \w your|strong="H6213"\w* \w hand|strong="H3027"\w* \w to|strong="H1961"\w* \w do|strong="H6213"\w* \w it|strong="H6213"\w*. +\q1 +\v 28 Don’t \w say|strong="H7725"\w* \w to|strong="H7725"\w* \w your|strong="H5414"\w* \w neighbor|strong="H7453"\w*, “\w Go|strong="H3212"\w*, \w and|strong="H7725"\w* \w come|strong="H3212"\w* \w again|strong="H7725"\w*; +\q2 \w tomorrow|strong="H4279"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H7725"\w* \w you|strong="H5414"\w*,” +\q2 \w when|strong="H7725"\w* \w you|strong="H5414"\w* \w have|strong="H3426"\w* \w it|strong="H5414"\w* \w by|strong="H5414"\w* \w you|strong="H5414"\w*. +\q1 +\v 29 Don’t \w devise|strong="H2790"\w* \w evil|strong="H7451"\w* \w against|strong="H5921"\w* \w your|strong="H5921"\w* \w neighbor|strong="H7453"\w*, +\q2 since \w he|strong="H1931"\w* \w dwells|strong="H3427"\w* securely \w by|strong="H5921"\w* \w you|strong="H5921"\w*. +\q1 +\v 30 Don’t \w strive|strong="H7378"\w* \w with|strong="H5973"\w* \w a|strong="H3068"\w* \w man|strong="H7451"\w* \w without|strong="H3808"\w* \w cause|strong="H2600"\w*, +\q2 if \w he|strong="H3808"\w* \w has|strong="H7451"\w* \w done|strong="H1580"\w* \w you|strong="H5973"\w* \w no|strong="H3808"\w* \w harm|strong="H7451"\w*. +\q1 +\v 31 Don’t \w envy|strong="H7065"\w* \w the|strong="H3605"\w* \w man|strong="H3605"\w* \w of|strong="H1870"\w* \w violence|strong="H2555"\w*. +\q2 Choose \w none|strong="H3605"\w* \w of|strong="H1870"\w* \w his|strong="H3605"\w* \w ways|strong="H1870"\w*. +\q1 +\v 32 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w perverse|strong="H3868"\w* \w is|strong="H3068"\w* \w an|strong="H3588"\w* \w abomination|strong="H8441"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w but|strong="H3588"\w* \w his|strong="H3068"\w* \w friendship|strong="H5475"\w* \w is|strong="H3068"\w* \w with|strong="H3068"\w* \w the|strong="H3588"\w* \w upright|strong="H3477"\w*. +\q1 +\v 33 \w Yahweh|strong="H3068"\w*’s \w curse|strong="H1288"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w wicked|strong="H7563"\w*, +\q2 \w but|strong="H7563"\w* \w he|strong="H3068"\w* \w blesses|strong="H1288"\w* \w the|strong="H3068"\w* \w habitation|strong="H5116"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w righteous|strong="H6662"\w*. +\q1 +\v 34 \w Surely|strong="H5414"\w* \w he|strong="H1931"\w* mocks \w the|strong="H5414"\w* \w mockers|strong="H3887"\w*, +\q2 \w but|strong="H1931"\w* \w he|strong="H1931"\w* \w gives|strong="H5414"\w* \w grace|strong="H2580"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w humble|strong="H6041"\w*. +\q1 +\v 35 \w The|strong="H7311"\w* \w wise|strong="H2450"\w* \w will|strong="H2450"\w* \w inherit|strong="H5157"\w* \w glory|strong="H3519"\w*, +\q2 but \w shame|strong="H7036"\w* \w will|strong="H2450"\w* \w be|strong="H7311"\w* \w the|strong="H7311"\w* \w promotion|strong="H7311"\w* \w of|strong="H3519"\w* \w fools|strong="H3684"\w*. +\c 4 +\q1 +\v 1 \w Listen|strong="H8085"\w*, \w sons|strong="H1121"\w*, \w to|strong="H8085"\w* \w a|strong="H3068"\w* \w father|strong="H1121"\w*’s \w instruction|strong="H4148"\w*. +\q2 \w Pay|strong="H7181"\w* \w attention|strong="H7181"\w* \w and|strong="H1121"\w* \w know|strong="H3045"\w* \w understanding|strong="H8085"\w*; +\q1 +\v 2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w sound|strong="H2896"\w* \w learning|strong="H3948"\w*. +\q2 Don’t \w forsake|strong="H5800"\w* \w my|strong="H5414"\w* \w law|strong="H8451"\w*. +\q1 +\v 3 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w to|strong="H1961"\w* \w my|strong="H1961"\w* \w father|strong="H1121"\w*, +\q2 \w tender|strong="H7390"\w* \w and|strong="H1121"\w* \w an|strong="H1961"\w* \w only|strong="H3173"\w* \w child|strong="H1121"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w sight|strong="H6440"\w* \w of|strong="H1121"\w* \w my|strong="H1961"\w* mother. +\q1 +\v 4 \w He|strong="H1697"\w* \w taught|strong="H3384"\w* \w me|strong="H8104"\w*, \w and|strong="H1697"\w* \w said|strong="H1697"\w* \w to|strong="H3820"\w* \w me|strong="H8104"\w*: +\q2 “Let \w your|strong="H8104"\w* \w heart|strong="H3820"\w* \w retain|strong="H8551"\w* \w my|strong="H8104"\w* \w words|strong="H1697"\w*. +\q2 \w Keep|strong="H8104"\w* \w my|strong="H8104"\w* \w commandments|strong="H4687"\w*, \w and|strong="H1697"\w* \w live|strong="H2421"\w*. +\q1 +\v 5 \w Get|strong="H7069"\w* \w wisdom|strong="H2451"\w*. +\q2 \w Get|strong="H7069"\w* understanding. +\q2 Don’t \w forget|strong="H7911"\w*, \w and|strong="H2451"\w* don’t deviate \w from|strong="H5186"\w* \w the|strong="H7911"\w* \w words|strong="H6310"\w* \w of|strong="H6310"\w* \w my|strong="H5186"\w* \w mouth|strong="H6310"\w*. +\q1 +\v 6 Don’t \w forsake|strong="H5800"\w* \w her|strong="H5800"\w*, \w and|strong="H8104"\w* she \w will|strong="H5341"\w* \w preserve|strong="H5341"\w* \w you|strong="H5800"\w*. +\q2 Love \w her|strong="H5800"\w*, \w and|strong="H8104"\w* she \w will|strong="H5341"\w* \w keep|strong="H8104"\w* \w you|strong="H5800"\w*. +\q1 +\v 7 \w Wisdom|strong="H2451"\w* \w is|strong="H3605"\w* supreme. +\q2 \w Get|strong="H7069"\w* \w wisdom|strong="H2451"\w*. +\q2 Yes, though \w it|strong="H3605"\w* costs \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w possessions|strong="H7075"\w*, \w get|strong="H7069"\w* understanding. +\q1 +\v 8 \w Esteem|strong="H5549"\w* \w her|strong="H3513"\w*, \w and|strong="H7311"\w* \w she|strong="H3588"\w* \w will|strong="H3588"\w* \w exalt|strong="H7311"\w* \w you|strong="H3588"\w*. +\q2 \w She|strong="H3588"\w* \w will|strong="H3588"\w* bring \w you|strong="H3588"\w* \w to|strong="H3588"\w* \w honor|strong="H3513"\w* \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w embrace|strong="H2263"\w* \w her|strong="H3513"\w*. +\q1 +\v 9 She \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w to|strong="H5414"\w* \w your|strong="H5414"\w* \w head|strong="H7218"\w* \w a|strong="H3068"\w* \w garland|strong="H3880"\w* \w of|strong="H7218"\w* \w grace|strong="H2580"\w*. +\q2 She \w will|strong="H5414"\w* \w deliver|strong="H5414"\w* \w a|strong="H3068"\w* \w crown|strong="H5850"\w* \w of|strong="H7218"\w* \w splendor|strong="H8597"\w* \w to|strong="H5414"\w* \w you|strong="H5414"\w*.” +\b +\q1 +\v 10 \w Listen|strong="H8085"\w*, \w my|strong="H8085"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w receive|strong="H3947"\w* \w my|strong="H8085"\w* sayings. +\q2 \w The|strong="H8085"\w* \w years|strong="H8141"\w* \w of|strong="H1121"\w* \w your|strong="H3947"\w* \w life|strong="H2416"\w* \w will|strong="H1121"\w* \w be|strong="H1121"\w* \w many|strong="H7235"\w*. +\q1 +\v 11 \w I|strong="H1870"\w* have \w taught|strong="H3384"\w* \w you|strong="H3384"\w* \w in|strong="H1870"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w wisdom|strong="H2451"\w*. +\q2 \w I|strong="H1870"\w* have \w led|strong="H1869"\w* \w you|strong="H3384"\w* \w in|strong="H1870"\w* straight \w paths|strong="H4570"\w*. +\q1 +\v 12 When \w you|strong="H3808"\w* \w go|strong="H3212"\w*, \w your|strong="H3808"\w* \w steps|strong="H6806"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* hampered. +\q2 When \w you|strong="H3808"\w* \w run|strong="H7323"\w*, \w you|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w stumble|strong="H3782"\w*. +\q1 +\v 13 \w Take|strong="H2388"\w* \w firm|strong="H2388"\w* \w hold|strong="H2388"\w* \w of|strong="H2416"\w* \w instruction|strong="H4148"\w*. +\q2 Don’t \w let|strong="H7503"\w* \w her|strong="H1931"\w* \w go|strong="H7503"\w*. +\q2 \w Keep|strong="H5341"\w* \w her|strong="H1931"\w*, \w for|strong="H3588"\w* \w she|strong="H1931"\w* \w is|strong="H1931"\w* \w your|strong="H3588"\w* \w life|strong="H2416"\w*. +\q1 +\v 14 Don’t enter into \w the|strong="H1870"\w* \w path|strong="H1870"\w* \w of|strong="H1870"\w* \w the|strong="H1870"\w* \w wicked|strong="H7563"\w*. +\q2 Don’t \w walk|strong="H1870"\w* \w in|strong="H1870"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w evil|strong="H7451"\w* \w men|strong="H7563"\w*. +\q1 +\v 15 \w Avoid|strong="H6544"\w* \w it|strong="H5921"\w*, \w and|strong="H5674"\w* don’t \w pass|strong="H5674"\w* \w by|strong="H5921"\w* \w it|strong="H5921"\w*. +\q2 \w Turn|strong="H7847"\w* \w from|strong="H5921"\w* \w it|strong="H5921"\w*, \w and|strong="H5674"\w* \w pass|strong="H5674"\w* \w on|strong="H5921"\w*. +\q1 +\v 16 \w For|strong="H3588"\w* \w they|strong="H3588"\w* don’t \w sleep|strong="H8142"\w* \w unless|strong="H3588"\w* \w they|strong="H3588"\w* \w do|strong="H7489"\w* \w evil|strong="H7489"\w*. +\q2 \w Their|strong="H3588"\w* \w sleep|strong="H8142"\w* \w is|strong="H3808"\w* \w taken|strong="H1497"\w* \w away|strong="H1497"\w*, \w unless|strong="H3588"\w* \w they|strong="H3588"\w* \w make|strong="H3588"\w* someone \w fall|strong="H3782"\w*. +\q1 +\v 17 \w For|strong="H3588"\w* \w they|strong="H3588"\w* \w eat|strong="H3898"\w* \w the|strong="H3588"\w* \w bread|strong="H3899"\w* \w of|strong="H3899"\w* \w wickedness|strong="H7562"\w* +\q2 \w and|strong="H3899"\w* \w drink|strong="H8354"\w* \w the|strong="H3588"\w* \w wine|strong="H3196"\w* \w of|strong="H3899"\w* \w violence|strong="H2555"\w*. +\q1 +\v 18 \w But|strong="H6662"\w* \w the|strong="H3117"\w* path \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w righteous|strong="H6662"\w* \w is|strong="H3117"\w* \w like|strong="H1980"\w* \w the|strong="H3117"\w* dawning \w light|strong="H5051"\w* +\q2 \w that|strong="H3117"\w* shines \w more|strong="H5704"\w* \w and|strong="H1980"\w* \w more|strong="H5704"\w* \w until|strong="H5704"\w* \w the|strong="H3117"\w* \w perfect|strong="H3559"\w* \w day|strong="H3117"\w*. +\q1 +\v 19 \w The|strong="H3045"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w the|strong="H3045"\w* \w wicked|strong="H7563"\w* \w is|strong="H4100"\w* \w like|strong="H1870"\w* darkness. +\q2 \w They|strong="H3808"\w* don’t \w know|strong="H3045"\w* \w what|strong="H4100"\w* \w they|strong="H3808"\w* \w stumble|strong="H3782"\w* \w over|strong="H3782"\w*. +\b +\q1 +\v 20 \w My|strong="H5186"\w* \w son|strong="H1121"\w*, \w attend|strong="H7181"\w* \w to|strong="H1121"\w* \w my|strong="H5186"\w* \w words|strong="H1697"\w*. +\q2 \w Turn|strong="H5186"\w* \w your|strong="H5186"\w* ear \w to|strong="H1121"\w* \w my|strong="H5186"\w* \w sayings|strong="H1697"\w*. +\q1 +\v 21 \w Let|strong="H3868"\w* \w them|strong="H8432"\w* \w not|strong="H5869"\w* \w depart|strong="H3868"\w* \w from|strong="H5869"\w* \w your|strong="H8104"\w* \w eyes|strong="H5869"\w*. +\q2 \w Keep|strong="H8104"\w* \w them|strong="H8432"\w* \w in|strong="H8432"\w* \w the|strong="H8432"\w* \w center|strong="H8432"\w* \w of|strong="H5869"\w* \w your|strong="H8104"\w* \w heart|strong="H3824"\w*. +\q1 +\v 22 \w For|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w life|strong="H2416"\w* \w to|strong="H1320"\w* \w those|strong="H1992"\w* \w who|strong="H3605"\w* \w find|strong="H4672"\w* \w them|strong="H1992"\w*, +\q2 \w and|strong="H1320"\w* \w health|strong="H4832"\w* \w to|strong="H1320"\w* \w their|strong="H3605"\w* \w whole|strong="H3605"\w* \w body|strong="H1320"\w*. +\q1 +\v 23 \w Keep|strong="H5341"\w* \w your|strong="H3605"\w* \w heart|strong="H3820"\w* \w with|strong="H3820"\w* \w all|strong="H3605"\w* \w diligence|strong="H4929"\w*, +\q2 \w for|strong="H3588"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w it|strong="H3588"\w* \w is|strong="H3820"\w* \w the|strong="H3605"\w* wellspring \w of|strong="H4480"\w* \w life|strong="H2416"\w*. +\q1 +\v 24 \w Put|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H4480"\w* yourself \w a|strong="H3068"\w* \w perverse|strong="H6143"\w* \w mouth|strong="H6310"\w*. +\q2 \w Put|strong="H5493"\w* corrupt \w lips|strong="H8193"\w* \w far|strong="H7368"\w* \w from|strong="H4480"\w* \w you|strong="H4480"\w*. +\q1 +\v 25 \w Let|strong="H6079"\w* \w your|strong="H3474"\w* \w eyes|strong="H5869"\w* \w look|strong="H5027"\w* \w straight|strong="H3474"\w* \w ahead|strong="H5048"\w*. +\q2 Fix \w your|strong="H3474"\w* \w gaze|strong="H5027"\w* \w directly|strong="H5227"\w* \w before|strong="H5048"\w* \w you|strong="H5869"\w*. +\q1 +\v 26 \w Make|strong="H3559"\w* \w the|strong="H3605"\w* \w path|strong="H1870"\w* \w of|strong="H1870"\w* \w your|strong="H3605"\w* \w feet|strong="H7272"\w* \w level|strong="H6424"\w*. +\q2 Let \w all|strong="H3605"\w* \w of|strong="H1870"\w* \w your|strong="H3605"\w* \w ways|strong="H1870"\w* \w be|strong="H1870"\w* \w established|strong="H3559"\w*. +\q1 +\v 27 Don’t \w turn|strong="H5493"\w* \w to|strong="H5493"\w* \w the|strong="H5493"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w nor|strong="H7451"\w* \w to|strong="H5493"\w* \w the|strong="H5493"\w* \w left|strong="H8040"\w*. +\q2 \w Remove|strong="H5493"\w* \w your|strong="H5186"\w* \w foot|strong="H7272"\w* \w from|strong="H5493"\w* \w evil|strong="H7451"\w*. +\c 5 +\q1 +\v 1 \w My|strong="H5186"\w* \w son|strong="H1121"\w*, \w pay|strong="H7181"\w* \w attention|strong="H7181"\w* \w to|strong="H1121"\w* \w my|strong="H5186"\w* \w wisdom|strong="H2451"\w*. +\q2 \w Turn|strong="H5186"\w* \w your|strong="H5186"\w* ear \w to|strong="H1121"\w* \w my|strong="H5186"\w* \w understanding|strong="H8394"\w*, +\q1 +\v 2 \w that|strong="H8193"\w* \w you|strong="H8104"\w* \w may|strong="H8193"\w* maintain \w discretion|strong="H4209"\w*, +\q2 \w that|strong="H8193"\w* \w your|strong="H8104"\w* \w lips|strong="H8193"\w* \w may|strong="H8193"\w* \w preserve|strong="H5341"\w* \w knowledge|strong="H1847"\w*. +\q1 +\v 3 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w lips|strong="H8193"\w* \w of|strong="H8193"\w* \w an|strong="H3588"\w* \w adulteress|strong="H2114"\w* \w drip|strong="H5197"\w* \w honey|strong="H5317"\w*. +\q2 \w Her|strong="H3588"\w* \w mouth|strong="H2441"\w* \w is|strong="H8081"\w* \w smoother|strong="H2509"\w* \w than|strong="H3588"\w* \w oil|strong="H8081"\w*, +\q1 +\v 4 but \w in|strong="H6310"\w* \w the|strong="H6310"\w* \w end|strong="H6310"\w* she \w is|strong="H6310"\w* \w as|strong="H4751"\w* \w bitter|strong="H4751"\w* \w as|strong="H4751"\w* \w wormwood|strong="H3939"\w*, +\q2 \w and|strong="H2719"\w* \w as|strong="H4751"\w* \w sharp|strong="H2299"\w* \w as|strong="H4751"\w* \w a|strong="H3068"\w* \w two-edged|strong="H6310"\w* \w sword|strong="H2719"\w*. +\q1 +\v 5 \w Her|strong="H3381"\w* \w feet|strong="H7272"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w death|strong="H4194"\w*. +\q2 \w Her|strong="H3381"\w* \w steps|strong="H6806"\w* lead straight \w to|strong="H3381"\w* \w Sheol|strong="H7585"\w*.\f + \fr 5:5 \ft Sheol is the place of the dead. \f* +\q1 +\v 6 \w She|strong="H3808"\w* gives \w no|strong="H3808"\w* \w thought|strong="H3045"\w* \w to|strong="H3045"\w* \w the|strong="H3045"\w* \w way|strong="H4570"\w* \w of|strong="H2416"\w* \w life|strong="H2416"\w*. +\q2 \w Her|strong="H3045"\w* \w ways|strong="H4570"\w* \w are|strong="H4570"\w* crooked, \w and|strong="H3045"\w* \w she|strong="H3808"\w* doesn’t \w know|strong="H3045"\w* \w it|strong="H3045"\w*. +\b +\q1 +\v 7 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w my|strong="H8085"\w* \w sons|strong="H1121"\w*, \w listen|strong="H8085"\w* \w to|strong="H8085"\w* \w me|strong="H5493"\w*. +\q2 Don’t \w depart|strong="H5493"\w* \w from|strong="H5493"\w* \w the|strong="H8085"\w* \w words|strong="H6310"\w* \w of|strong="H1121"\w* \w my|strong="H8085"\w* \w mouth|strong="H6310"\w*. +\q1 +\v 8 \w Remove|strong="H7368"\w* \w your|strong="H5921"\w* \w way|strong="H1870"\w* \w far|strong="H7368"\w* \w from|strong="H5921"\w* \w her|strong="H5921"\w*. +\q2 Don’t \w come|strong="H7126"\w* \w near|strong="H7126"\w* \w the|strong="H5921"\w* \w door|strong="H6607"\w* \w of|strong="H1004"\w* \w her|strong="H5921"\w* \w house|strong="H1004"\w*, +\q1 +\v 9 \w lest|strong="H6435"\w* \w you|strong="H5414"\w* \w give|strong="H5414"\w* \w your|strong="H5414"\w* \w honor|strong="H1935"\w* \w to|strong="H5414"\w* others, +\q2 \w and|strong="H8141"\w* \w your|strong="H5414"\w* \w years|strong="H8141"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* cruel \w one|strong="H8141"\w*; +\q1 +\v 10 \w lest|strong="H6435"\w* \w strangers|strong="H2114"\w* feast \w on|strong="H1004"\w* \w your|strong="H7646"\w* \w wealth|strong="H3581"\w*, +\q2 \w and|strong="H1004"\w* \w your|strong="H7646"\w* \w labors|strong="H6089"\w* enrich \w another|strong="H2114"\w* \w man|strong="H2114"\w*’s \w house|strong="H1004"\w*. +\q1 +\v 11 \w You|strong="H1320"\w* \w will|strong="H1320"\w* \w groan|strong="H5098"\w* at \w your|strong="H3615"\w* latter \w end|strong="H3615"\w*, +\q2 \w when|strong="H3615"\w* \w your|strong="H3615"\w* \w flesh|strong="H1320"\w* \w and|strong="H1320"\w* \w your|strong="H3615"\w* \w body|strong="H1320"\w* \w are|strong="H7607"\w* \w consumed|strong="H3615"\w*, +\q1 +\v 12 \w and|strong="H3820"\w* say, “How \w I|strong="H3820"\w* \w have|strong="H8130"\w* \w hated|strong="H8130"\w* \w instruction|strong="H4148"\w*, +\q2 \w and|strong="H3820"\w* \w my|strong="H5006"\w* \w heart|strong="H3820"\w* \w despised|strong="H5006"\w* \w reproof|strong="H8433"\w*. +\q1 +\v 13 \w I|strong="H3808"\w* haven’t \w obeyed|strong="H8085"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w my|strong="H8085"\w* \w teachers|strong="H3384"\w*, +\q2 \w nor|strong="H3808"\w* \w turned|strong="H5186"\w* \w my|strong="H8085"\w* \w ear|strong="H8085"\w* \w to|strong="H8085"\w* \w those|strong="H8085"\w* \w who|strong="H3808"\w* \w instructed|strong="H3384"\w* \w me|strong="H6963"\w*! +\q1 +\v 14 \w I|strong="H3605"\w* \w have|strong="H1961"\w* \w come|strong="H1961"\w* \w to|strong="H1961"\w* \w the|strong="H3605"\w* brink \w of|strong="H8432"\w* \w utter|strong="H3605"\w* \w ruin|strong="H7451"\w*, +\q2 \w among|strong="H8432"\w* \w the|strong="H3605"\w* \w gathered|strong="H6951"\w* \w assembly|strong="H6951"\w*.” +\b +\q1 +\v 15 \w Drink|strong="H8354"\w* \w water|strong="H4325"\w* \w out|strong="H5140"\w* \w of|strong="H4325"\w* \w your|strong="H8354"\w* own cistern, +\q2 running \w water|strong="H4325"\w* \w out|strong="H5140"\w* \w of|strong="H4325"\w* \w your|strong="H8354"\w* own well. +\q1 +\v 16 Should your \w springs|strong="H4599"\w* \w overflow|strong="H6327"\w* \w in|strong="H4325"\w* \w the|strong="H2351"\w* \w streets|strong="H2351"\w*, +\q2 \w streams|strong="H6388"\w* \w of|strong="H4325"\w* \w water|strong="H4325"\w* \w in|strong="H4325"\w* \w the|strong="H2351"\w* public \w squares|strong="H7339"\w*? +\q1 +\v 17 \w Let|strong="H1961"\w* \w them|strong="H1961"\w* \w be|strong="H1961"\w* \w for|strong="H1961"\w* yourself alone, +\q2 \w not|strong="H1961"\w* \w for|strong="H1961"\w* \w strangers|strong="H2114"\w* \w with|strong="H1961"\w* \w you|strong="H2114"\w*. +\q1 +\v 18 \w Let|strong="H8055"\w* \w your|strong="H1961"\w* \w spring|strong="H4726"\w* \w be|strong="H1961"\w* \w blessed|strong="H1288"\w*. +\q2 \w Rejoice|strong="H8055"\w* \w in|strong="H8055"\w* \w the|strong="H1288"\w* wife \w of|strong="H4726"\w* \w your|strong="H1961"\w* \w youth|strong="H5271"\w*. +\q1 +\v 19 \w A|strong="H3068"\w* loving \w doe|strong="H3280"\w* \w and|strong="H6256"\w* \w a|strong="H3068"\w* \w graceful|strong="H2580"\w* \w deer|strong="H3280"\w*— +\q2 \w let|strong="H6256"\w* \w her|strong="H3605"\w* \w breasts|strong="H1717"\w* \w satisfy|strong="H7301"\w* \w you|strong="H3605"\w* \w at|strong="H3605"\w* \w all|strong="H3605"\w* \w times|strong="H6256"\w*. +\q2 \w Be|strong="H6256"\w* captivated \w always|strong="H3605"\w* \w with|strong="H3605"\w* \w her|strong="H3605"\w* love. +\q1 +\v 20 \w For|strong="H1121"\w* \w why|strong="H4100"\w* \w should|strong="H4100"\w* \w you|strong="H4100"\w*, \w my|strong="H4100"\w* \w son|strong="H1121"\w*, \w be|strong="H1121"\w* captivated \w with|strong="H1121"\w* an \w adulteress|strong="H2114"\w*? +\q2 \w Why|strong="H4100"\w* \w embrace|strong="H2263"\w* \w the|strong="H1121"\w* \w bosom|strong="H2436"\w* \w of|strong="H1121"\w* \w another|strong="H2114"\w*? +\q1 +\v 21 \w For|strong="H3588"\w* \w the|strong="H3605"\w* \w ways|strong="H1870"\w* \w of|strong="H3068"\w* \w man|strong="H3605"\w* \w are|strong="H5869"\w* \w before|strong="H5869"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*. +\q2 \w He|strong="H3588"\w* examines \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w paths|strong="H4570"\w*. +\q1 +\v 22 \w The|strong="H3920"\w* \w evil|strong="H7563"\w* deeds \w of|strong="H2403"\w* \w the|strong="H3920"\w* \w wicked|strong="H7563"\w* ensnare him. +\q2 \w The|strong="H3920"\w* \w cords|strong="H2256"\w* \w of|strong="H2403"\w* \w his|strong="H8551"\w* \w sin|strong="H2403"\w* \w hold|strong="H8551"\w* him firmly. +\q1 +\v 23 \w He|strong="H1931"\w* \w will|strong="H1931"\w* \w die|strong="H4191"\w* \w for|strong="H4191"\w* lack \w of|strong="H7230"\w* \w instruction|strong="H4148"\w*. +\q2 \w In|strong="H4191"\w* \w the|strong="H4191"\w* \w greatness|strong="H7230"\w* \w of|strong="H7230"\w* \w his|strong="H4191"\w* folly, \w he|strong="H1931"\w* \w will|strong="H1931"\w* \w go|strong="H7686"\w* \w astray|strong="H7686"\w*. +\c 6 +\q1 +\v 1 My \w son|strong="H1121"\w*, \w if|strong="H1121"\w* \w you|strong="H2114"\w* \w have|strong="H1121"\w* \w become|strong="H6148"\w* \w collateral|strong="H6148"\w* \w for|strong="H1121"\w* \w your|strong="H8628"\w* \w neighbor|strong="H7453"\w*, +\q2 \w if|strong="H1121"\w* \w you|strong="H2114"\w* \w have|strong="H1121"\w* struck \w your|strong="H8628"\w* \w hands|strong="H3709"\w* \w in|strong="H1121"\w* \w pledge|strong="H3709"\w* \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w stranger|strong="H2114"\w*, +\q1 +\v 2 \w you|strong="H6310"\w* \w are|strong="H6310"\w* trapped \w by|strong="H3920"\w* \w the|strong="H3920"\w* \w words|strong="H6310"\w* \w of|strong="H6310"\w* your \w mouth|strong="H6310"\w*; +\q2 \w you|strong="H6310"\w* \w are|strong="H6310"\w* \w ensnared|strong="H3369"\w* \w with|strong="H6310"\w* \w the|strong="H3920"\w* \w words|strong="H6310"\w* \w of|strong="H6310"\w* your \w mouth|strong="H6310"\w*. +\q1 +\v 3 \w Do|strong="H6213"\w* \w this|strong="H2063"\w* \w now|strong="H3588"\w*, \w my|strong="H5337"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w deliver|strong="H5337"\w* \w yourself|strong="H5337"\w*, +\q2 \w since|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1121"\w* \w come|strong="H3212"\w* \w into|strong="H3212"\w* \w the|strong="H3588"\w* \w hand|strong="H3709"\w* \w of|strong="H1121"\w* \w your|strong="H6213"\w* \w neighbor|strong="H7453"\w*. +\q1 \w Go|strong="H3212"\w*, \w humble|strong="H7511"\w* \w yourself|strong="H5337"\w*. +\q2 Press \w your|strong="H6213"\w* plea \w with|strong="H6213"\w* \w your|strong="H6213"\w* \w neighbor|strong="H7453"\w*. +\q1 +\v 4 \w Give|strong="H5414"\w* \w no|strong="H5414"\w* \w sleep|strong="H8142"\w* \w to|strong="H5414"\w* \w your|strong="H5414"\w* \w eyes|strong="H5869"\w*, +\q2 nor \w slumber|strong="H8572"\w* \w to|strong="H5414"\w* \w your|strong="H5414"\w* \w eyelids|strong="H6079"\w*. +\q1 +\v 5 Free \w yourself|strong="H5337"\w*, like \w a|strong="H3068"\w* \w gazelle|strong="H6643"\w* \w from|strong="H3027"\w* \w the|strong="H3027"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* hunter, +\q2 like \w a|strong="H3068"\w* \w bird|strong="H6833"\w* \w from|strong="H3027"\w* \w the|strong="H3027"\w* snare \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w fowler|strong="H3353"\w*. +\b +\q1 +\v 6 \w Go|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H7200"\w* \w ant|strong="H5244"\w*, \w you|strong="H7200"\w* \w sluggard|strong="H6102"\w*. +\q2 \w Consider|strong="H7200"\w* \w her|strong="H7200"\w* \w ways|strong="H1870"\w*, \w and|strong="H3212"\w* \w be|strong="H1870"\w* \w wise|strong="H2449"\w*; +\q1 +\v 7 which having no \w chief|strong="H7101"\w*, \w overseer|strong="H7860"\w*, \w or|strong="H4910"\w* \w ruler|strong="H4910"\w*, +\q2 +\v 8 \w provides|strong="H3559"\w* \w her|strong="H3559"\w* \w bread|strong="H3899"\w* \w in|strong="H3899"\w* \w the|strong="H3559"\w* \w summer|strong="H7019"\w*, +\q2 \w and|strong="H3899"\w* gathers \w her|strong="H3559"\w* \w food|strong="H3899"\w* \w in|strong="H3899"\w* \w the|strong="H3559"\w* \w harvest|strong="H7105"\w*. +\q1 +\v 9 \w How|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H5704"\w* \w you|strong="H5704"\w* \w sleep|strong="H8142"\w*, \w sluggard|strong="H6102"\w*? +\q2 \w When|strong="H4970"\w* \w will|strong="H5704"\w* \w you|strong="H5704"\w* \w arise|strong="H6965"\w* \w out|strong="H5704"\w* \w of|strong="H5704"\w* \w your|strong="H5704"\w* \w sleep|strong="H8142"\w*? +\q1 +\v 10 \w A|strong="H3068"\w* \w little|strong="H4592"\w* \w sleep|strong="H8142"\w*, \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w slumber|strong="H8572"\w*, +\q2 \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w folding|strong="H2264"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w hands|strong="H3027"\w* \w to|strong="H3027"\w* \w sleep|strong="H8142"\w*— +\q1 +\v 11 \w so|strong="H1980"\w* your \w poverty|strong="H7389"\w* \w will|strong="H7389"\w* \w come|strong="H1980"\w* \w as|strong="H1980"\w* \w a|strong="H3068"\w* \w robber|strong="H1980"\w*, +\q2 \w and|strong="H1980"\w* your scarcity \w as|strong="H1980"\w* an \w armed|strong="H4043"\w* man. +\b +\q1 +\v 12 \w A|strong="H3068"\w* \w worthless|strong="H1100"\w* \w person|strong="H1980"\w*, \w a|strong="H3068"\w* man \w of|strong="H6310"\w* iniquity, +\q2 \w is|strong="H6310"\w* \w he|strong="H1980"\w* \w who|strong="H1980"\w* \w walks|strong="H1980"\w* \w with|strong="H1980"\w* \w a|strong="H3068"\w* \w perverse|strong="H6143"\w* \w mouth|strong="H6310"\w*, +\q1 +\v 13 who \w winks|strong="H7169"\w* \w with|strong="H5869"\w* \w his|strong="H5869"\w* \w eyes|strong="H5869"\w*, who \w signals|strong="H4448"\w* \w with|strong="H5869"\w* \w his|strong="H5869"\w* \w feet|strong="H7272"\w*, +\q2 who motions \w with|strong="H5869"\w* \w his|strong="H5869"\w* fingers, +\q1 +\v 14 \w in|strong="H7971"\w* \w whose|strong="H3605"\w* \w heart|strong="H3820"\w* \w is|strong="H3820"\w* perverseness, +\q2 \w who|strong="H3605"\w* \w devises|strong="H2790"\w* \w evil|strong="H7451"\w* \w continually|strong="H3605"\w*, +\q2 \w who|strong="H3605"\w* \w always|strong="H3605"\w* sows \w discord|strong="H4090"\w*. +\q1 +\v 15 \w Therefore|strong="H3651"\w* \w his|strong="H5921"\w* calamity will come \w suddenly|strong="H6597"\w*. +\q2 \w He|strong="H3651"\w* will \w be|strong="H6621"\w* \w broken|strong="H7665"\w* \w suddenly|strong="H6597"\w*, \w and|strong="H7665"\w* \w that|strong="H3651"\w* \w without|strong="H7665"\w* \w remedy|strong="H4832"\w*. +\b +\q1 +\v 16 \w There|strong="H3068"\w* \w are|strong="H3068"\w* \w six|strong="H8337"\w* \w things|strong="H8441"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w hates|strong="H8130"\w*; +\q2 yes, \w seven|strong="H7651"\w* \w which|strong="H3068"\w* \w are|strong="H3068"\w* \w an|strong="H3068"\w* \w abomination|strong="H8441"\w* \w to|strong="H3068"\w* \w him|strong="H8130"\w*: +\q1 +\v 17 arrogant \w eyes|strong="H5869"\w*, \w a|strong="H3068"\w* \w lying|strong="H8267"\w* \w tongue|strong="H3956"\w*, +\q2 \w hands|strong="H3027"\w* \w that|strong="H3027"\w* \w shed|strong="H8210"\w* \w innocent|strong="H5355"\w* \w blood|strong="H1818"\w*, +\q1 +\v 18 \w a|strong="H3068"\w* \w heart|strong="H3820"\w* \w that|strong="H7451"\w* \w devises|strong="H2790"\w* \w wicked|strong="H7451"\w* \w schemes|strong="H4284"\w*, +\q2 \w feet|strong="H7272"\w* \w that|strong="H7451"\w* \w are|strong="H4284"\w* \w swift|strong="H4116"\w* \w in|strong="H7272"\w* \w running|strong="H7323"\w* \w to|strong="H3820"\w* \w mischief|strong="H7451"\w*, +\q1 +\v 19 \w a|strong="H3068"\w* \w false|strong="H8267"\w* \w witness|strong="H5707"\w* \w who|strong="H5707"\w* \w utters|strong="H6315"\w* \w lies|strong="H3577"\w*, +\q2 \w and|strong="H7971"\w* \w he|strong="H7971"\w* \w who|strong="H5707"\w* sows \w discord|strong="H4090"\w* \w among|strong="H4090"\w* brothers. +\b +\q1 +\v 20 \w My|strong="H5341"\w* \w son|strong="H1121"\w*, \w keep|strong="H5341"\w* \w your|strong="H5341"\w* \w father|strong="H1121"\w*’s \w commandment|strong="H4687"\w*, +\q2 \w and|strong="H1121"\w* don’t \w forsake|strong="H5203"\w* \w your|strong="H5341"\w* mother’s \w teaching|strong="H8451"\w*. +\q1 +\v 21 \w Bind|strong="H7194"\w* \w them|strong="H5921"\w* \w continually|strong="H8548"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w heart|strong="H3820"\w*. +\q2 \w Tie|strong="H7194"\w* \w them|strong="H5921"\w* \w around|strong="H5921"\w* \w your|strong="H5921"\w* \w neck|strong="H1621"\w*. +\q1 +\v 22 \w When|strong="H1980"\w* \w you|strong="H5921"\w* \w walk|strong="H1980"\w*, \w it|strong="H1931"\w* \w will|strong="H1931"\w* \w lead|strong="H5148"\w* \w you|strong="H5921"\w*. +\q2 \w When|strong="H1980"\w* \w you|strong="H5921"\w* \w sleep|strong="H7901"\w*, \w it|strong="H1931"\w* \w will|strong="H1931"\w* \w watch|strong="H8104"\w* \w over|strong="H5921"\w* \w you|strong="H5921"\w*. +\q2 \w When|strong="H1980"\w* \w you|strong="H5921"\w* \w awake|strong="H6974"\w*, \w it|strong="H1931"\w* \w will|strong="H1931"\w* \w talk|strong="H7878"\w* \w with|strong="H1980"\w* \w you|strong="H5921"\w*. +\q1 +\v 23 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w commandment|strong="H4687"\w* \w is|strong="H1870"\w* \w a|strong="H3068"\w* \w lamp|strong="H5216"\w*, +\q2 \w and|strong="H1870"\w* \w the|strong="H3588"\w* \w law|strong="H8451"\w* \w is|strong="H1870"\w* \w light|strong="H5216"\w*. +\q2 \w Reproofs|strong="H8433"\w* \w of|strong="H1870"\w* \w instruction|strong="H4148"\w* \w are|strong="H1870"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w life|strong="H2416"\w*, +\q1 +\v 24 \w to|strong="H8104"\w* \w keep|strong="H8104"\w* \w you|strong="H8104"\w* \w from|strong="H7451"\w* \w the|strong="H8104"\w* immoral \w woman|strong="H5237"\w*, +\q2 \w from|strong="H7451"\w* \w the|strong="H8104"\w* \w flattery|strong="H2513"\w* \w of|strong="H2513"\w* \w the|strong="H8104"\w* wayward wife’s \w tongue|strong="H3956"\w*. +\q1 +\v 25 Don’t \w lust|strong="H2530"\w* after \w her|strong="H3947"\w* \w beauty|strong="H3308"\w* \w in|strong="H3947"\w* \w your|strong="H3947"\w* \w heart|strong="H3824"\w*, +\q2 neither \w let|strong="H6079"\w* \w her|strong="H3947"\w* captivate \w you|strong="H3947"\w* \w with|strong="H3947"\w* \w her|strong="H3947"\w* \w eyelids|strong="H6079"\w*. +\q1 +\v 26 \w For|strong="H3588"\w* \w a|strong="H3068"\w* \w prostitute|strong="H2181"\w* reduces \w you|strong="H3588"\w* \w to|strong="H5704"\w* \w a|strong="H3068"\w* \w piece|strong="H3603"\w* \w of|strong="H3603"\w* \w bread|strong="H3899"\w*. +\q2 \w The|strong="H3588"\w* adulteress \w hunts|strong="H6679"\w* \w for|strong="H3588"\w* \w your|strong="H3588"\w* \w precious|strong="H3368"\w* \w life|strong="H5315"\w*. +\q1 +\v 27 \w Can|strong="H3808"\w* \w a|strong="H3068"\w* man \w scoop|strong="H2846"\w* fire into \w his|strong="H3808"\w* \w lap|strong="H2436"\w*, +\q2 \w and|strong="H3808"\w* \w his|strong="H3808"\w* clothes \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w burned|strong="H8313"\w*? +\q1 +\v 28 \w Or|strong="H3808"\w* \w can|strong="H1980"\w* \w one|strong="H3808"\w* \w walk|strong="H1980"\w* \w on|strong="H5921"\w* \w hot|strong="H1513"\w* \w coals|strong="H1513"\w*, +\q2 \w and|strong="H1980"\w* \w his|strong="H5921"\w* \w feet|strong="H7272"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w scorched|strong="H3554"\w*? +\q1 +\v 29 \w So|strong="H3651"\w* \w is|strong="H3651"\w* \w he|strong="H3651"\w* \w who|strong="H3605"\w* goes \w in|strong="H3808"\w* \w to|strong="H3808"\w* \w his|strong="H3605"\w* \w neighbor|strong="H7453"\w*’s wife. +\q2 \w Whoever|strong="H3605"\w* \w touches|strong="H5060"\w* \w her|strong="H3605"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w unpunished|strong="H5352"\w*. +\q1 +\v 30 \w Men|strong="H5315"\w* don’t despise \w a|strong="H3068"\w* \w thief|strong="H1590"\w* +\q2 \w if|strong="H3588"\w* \w he|strong="H3588"\w* \w steals|strong="H1589"\w* \w to|strong="H5315"\w* \w satisfy|strong="H4390"\w* \w himself|strong="H5315"\w* \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H5315"\w* \w hungry|strong="H7456"\w*, +\q1 +\v 31 \w but|strong="H7999"\w* if \w he|strong="H3605"\w* \w is|strong="H3605"\w* \w found|strong="H4672"\w*, \w he|strong="H3605"\w* \w shall|strong="H1004"\w* \w restore|strong="H7999"\w* \w seven|strong="H7659"\w* \w times|strong="H7659"\w*. +\q2 \w He|strong="H3605"\w* \w shall|strong="H1004"\w* \w give|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w wealth|strong="H1952"\w* \w of|strong="H1004"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*. +\q1 +\v 32 \w He|strong="H1931"\w* \w who|strong="H1931"\w* \w commits|strong="H6213"\w* \w adultery|strong="H5003"\w* \w with|strong="H6213"\w* \w a|strong="H3068"\w* woman \w is|strong="H1931"\w* \w void|strong="H2638"\w* \w of|strong="H3820"\w* \w understanding|strong="H3820"\w*. +\q2 \w He|strong="H1931"\w* \w who|strong="H1931"\w* \w does|strong="H6213"\w* \w it|strong="H1931"\w* \w destroys|strong="H7843"\w* \w his|strong="H6213"\w* \w own|strong="H5315"\w* \w soul|strong="H5315"\w*. +\q1 +\v 33 \w He|strong="H3808"\w* \w will|strong="H3808"\w* \w get|strong="H4672"\w* \w wounds|strong="H5061"\w* \w and|strong="H2781"\w* \w dishonor|strong="H7036"\w*. +\q2 \w His|strong="H3808"\w* \w reproach|strong="H2781"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w wiped|strong="H4229"\w* \w away|strong="H4229"\w*. +\q1 +\v 34 \w For|strong="H3588"\w* \w jealousy|strong="H7068"\w* arouses \w the|strong="H3588"\w* \w fury|strong="H2534"\w* \w of|strong="H3117"\w* \w the|strong="H3588"\w* husband. +\q2 \w He|strong="H3588"\w* won’t \w spare|strong="H2550"\w* \w in|strong="H3117"\w* \w the|strong="H3588"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w vengeance|strong="H5359"\w*. +\q1 +\v 35 \w He|strong="H3588"\w* won’t \w regard|strong="H5375"\w* \w any|strong="H3605"\w* \w ransom|strong="H3724"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H3808"\w* \w he|strong="H3588"\w* rest content, \w though|strong="H3588"\w* \w you|strong="H3588"\w* \w give|strong="H7235"\w* \w many|strong="H7235"\w* \w gifts|strong="H7810"\w*. +\c 7 +\q1 +\v 1 \w My|strong="H8104"\w* \w son|strong="H1121"\w*, \w keep|strong="H8104"\w* \w my|strong="H8104"\w* words. +\q2 \w Lay|strong="H1121"\w* \w up|strong="H6845"\w* \w my|strong="H8104"\w* \w commandments|strong="H4687"\w* within \w you|strong="H8104"\w*. +\q1 +\v 2 \w Keep|strong="H8104"\w* \w my|strong="H8104"\w* \w commandments|strong="H4687"\w* \w and|strong="H5869"\w* \w live|strong="H2421"\w*! +\q2 \w Guard|strong="H8104"\w* \w my|strong="H8104"\w* \w teaching|strong="H8451"\w* \w as|strong="H5869"\w* \w the|strong="H8104"\w* apple \w of|strong="H5869"\w* \w your|strong="H8104"\w* \w eye|strong="H5869"\w*. +\q1 +\v 3 \w Bind|strong="H7194"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* fingers. +\q2 \w Write|strong="H3789"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tablet|strong="H3871"\w* \w of|strong="H5921"\w* \w your|strong="H5921"\w* \w heart|strong="H3820"\w*. +\q1 +\v 4 Tell \w wisdom|strong="H2451"\w*, “\w You|strong="H7121"\w* are \w my|strong="H7121"\w* sister.” +\q2 \w Call|strong="H7121"\w* understanding \w your|strong="H7121"\w* relative, +\q1 +\v 5 that they may \w keep|strong="H8104"\w* \w you|strong="H8104"\w* \w from|strong="H8104"\w* \w the|strong="H8104"\w* \w strange|strong="H2114"\w* \w woman|strong="H5237"\w*, +\q2 \w from|strong="H8104"\w* \w the|strong="H8104"\w* \w foreigner|strong="H5237"\w* \w who|strong="H8104"\w* \w flatters|strong="H2505"\w* with \w her|strong="H8104"\w* words. +\q1 +\v 6 \w For|strong="H3588"\w* \w at|strong="H1004"\w* \w the|strong="H3588"\w* \w window|strong="H2474"\w* \w of|strong="H1004"\w* \w my|strong="H3588"\w* \w house|strong="H1004"\w*, +\q2 \w I|strong="H3588"\w* \w looked|strong="H8259"\w* \w out|strong="H8259"\w* \w through|strong="H1157"\w* \w my|strong="H3588"\w* lattice. +\q1 +\v 7 \w I|strong="H7200"\w* \w saw|strong="H7200"\w* \w among|strong="H7200"\w* \w the|strong="H7200"\w* \w simple|strong="H6612"\w* \w ones|strong="H1121"\w*. +\q2 \w I|strong="H7200"\w* discerned \w among|strong="H7200"\w* \w the|strong="H7200"\w* \w youths|strong="H5288"\w* \w a|strong="H3068"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* \w void|strong="H2638"\w* \w of|strong="H1121"\w* \w understanding|strong="H3820"\w*, +\q1 +\v 8 \w passing|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H5674"\w* \w street|strong="H7784"\w* near \w her|strong="H1870"\w* \w corner|strong="H6438"\w*, +\q2 \w he|strong="H1004"\w* \w went|strong="H5674"\w* \w the|strong="H5674"\w* \w way|strong="H1870"\w* \w to|strong="H1870"\w* \w her|strong="H1870"\w* \w house|strong="H1004"\w*, +\q1 +\v 9 \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w twilight|strong="H5399"\w*, \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w evening|strong="H6153"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w*, +\q2 \w in|strong="H3117"\w* \w the|strong="H3117"\w* middle \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w night|strong="H3915"\w* \w and|strong="H3117"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* darkness. +\q1 +\v 10 \w Behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w a|strong="H3068"\w* woman \w met|strong="H7125"\w* \w him|strong="H7125"\w* \w with|strong="H3820"\w* \w the|strong="H2181"\w* \w attire|strong="H7897"\w* \w of|strong="H3820"\w* \w a|strong="H3068"\w* \w prostitute|strong="H2181"\w*, +\q2 \w and|strong="H3820"\w* \w with|strong="H3820"\w* crafty intent. +\q1 +\v 11 \w She|strong="H1931"\w* \w is|strong="H1931"\w* \w loud|strong="H1993"\w* \w and|strong="H1004"\w* defiant. +\q2 \w Her|strong="H1931"\w* \w feet|strong="H7272"\w* don’t \w stay|strong="H7931"\w* \w in|strong="H1004"\w* \w her|strong="H1931"\w* \w house|strong="H1004"\w*. +\q1 +\v 12 \w Now|strong="H6471"\w* she \w is|strong="H3605"\w* \w in|strong="H6471"\w* \w the|strong="H3605"\w* \w streets|strong="H2351"\w*, \w now|strong="H6471"\w* \w in|strong="H6471"\w* \w the|strong="H3605"\w* \w squares|strong="H7339"\w*, +\q2 \w and|strong="H3605"\w* lurking \w at|strong="H7339"\w* \w every|strong="H3605"\w* \w corner|strong="H6438"\w*. +\q1 +\v 13 \w So|strong="H6440"\w* \w she|strong="H6440"\w* \w caught|strong="H2388"\w* \w him|strong="H6440"\w*, \w and|strong="H6440"\w* \w kissed|strong="H5401"\w* \w him|strong="H6440"\w*. +\q2 \w With|strong="H6440"\w* \w an|strong="H6440"\w* \w impudent|strong="H5810"\w* \w face|strong="H6440"\w* \w she|strong="H6440"\w* said \w to|strong="H6440"\w* \w him|strong="H6440"\w*: +\q1 +\v 14 “\w Sacrifices|strong="H2077"\w* \w of|strong="H3117"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w are|strong="H3117"\w* \w with|strong="H5921"\w* \w me|strong="H5921"\w*. +\q2 \w Today|strong="H3117"\w* \w I|strong="H3117"\w* \w have|strong="H3117"\w* \w paid|strong="H7999"\w* \w my|strong="H5921"\w* \w vows|strong="H5088"\w*. +\q1 +\v 15 \w Therefore|strong="H3651"\w* \w I|strong="H5921"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w meet|strong="H7125"\w* \w you|strong="H6440"\w*, +\q2 \w to|strong="H3318"\w* \w diligently|strong="H7836"\w* \w seek|strong="H7836"\w* \w your|strong="H5921"\w* \w face|strong="H6440"\w*, +\q2 \w and|strong="H6440"\w* \w I|strong="H5921"\w* \w have|strong="H4672"\w* \w found|strong="H4672"\w* \w you|strong="H6440"\w*. +\q1 +\v 16 \w I|strong="H4714"\w* \w have|strong="H4714"\w* \w spread|strong="H7234"\w* \w my|strong="H4714"\w* \w couch|strong="H6210"\w* \w with|strong="H4714"\w* carpets \w of|strong="H4714"\w* \w tapestry|strong="H4765"\w*, +\q2 \w with|strong="H4714"\w* striped cloths \w of|strong="H4714"\w* the yarn \w of|strong="H4714"\w* \w Egypt|strong="H4714"\w*. +\q1 +\v 17 \w I|strong="H4904"\w* have \w perfumed|strong="H5130"\w* \w my|strong="H5130"\w* \w bed|strong="H4904"\w* \w with|strong="H4904"\w* \w myrrh|strong="H4753"\w*, aloes, \w and|strong="H4753"\w* \w cinnamon|strong="H7076"\w*. +\q1 +\v 18 \w Come|strong="H3212"\w*, \w let|strong="H3212"\w*’s \w take|strong="H3212"\w* \w our|strong="H7301"\w* \w fill|strong="H7301"\w* \w of|strong="H1730"\w* loving \w until|strong="H5704"\w* \w the|strong="H5704"\w* \w morning|strong="H1242"\w*. +\q2 \w Let|strong="H3212"\w*’s \w solace|strong="H5965"\w* ourselves \w with|strong="H3212"\w* loving. +\q1 +\v 19 \w For|strong="H3588"\w* \w my|strong="H3588"\w* husband isn’t \w at|strong="H1004"\w* \w home|strong="H1004"\w*. +\q2 \w He|strong="H3588"\w* \w has|strong="H3588"\w* \w gone|strong="H1980"\w* \w on|strong="H1980"\w* \w a|strong="H3068"\w* \w long|strong="H7350"\w* \w journey|strong="H1870"\w*. +\q1 +\v 20 \w He|strong="H3117"\w* \w has|strong="H3117"\w* \w taken|strong="H3947"\w* \w a|strong="H3068"\w* \w bag|strong="H6872"\w* \w of|strong="H1004"\w* \w money|strong="H3701"\w* \w with|strong="H1004"\w* \w him|strong="H3027"\w*. +\q2 \w He|strong="H3117"\w* \w will|strong="H1004"\w* come \w home|strong="H1004"\w* \w at|strong="H1004"\w* \w the|strong="H3947"\w* \w full|strong="H3117"\w* \w moon|strong="H3677"\w*.” +\q1 +\v 21 \w With|strong="H2506"\w* persuasive \w words|strong="H8193"\w*, \w she|strong="H8193"\w* \w led|strong="H5080"\w* \w him|strong="H5186"\w* \w astray|strong="H5080"\w*. +\q2 \w With|strong="H2506"\w* \w the|strong="H5186"\w* \w flattering|strong="H2506"\w* \w of|strong="H7230"\w* \w her|strong="H5186"\w* \w lips|strong="H8193"\w*, \w she|strong="H8193"\w* \w seduced|strong="H5080"\w* \w him|strong="H5186"\w*. +\q1 +\v 22 \w He|strong="H1980"\w* \w followed|strong="H1980"\w* \w her|strong="H1980"\w* \w immediately|strong="H6597"\w*, +\q2 \w as|strong="H1980"\w* an \w ox|strong="H7794"\w* \w goes|strong="H1980"\w* \w to|strong="H1980"\w* \w the|strong="H1980"\w* \w slaughter|strong="H2874"\w*, +\q2 \w as|strong="H1980"\w* \w a|strong="H3068"\w* fool stepping \w into|strong="H1980"\w* \w a|strong="H3068"\w* noose. +\q1 +\v 23 \w Until|strong="H5704"\w* \w an|strong="H3588"\w* \w arrow|strong="H2671"\w* strikes \w through|strong="H6398"\w* \w his|strong="H3045"\w* \w liver|strong="H3516"\w*, +\q2 \w as|strong="H5704"\w* \w a|strong="H3068"\w* \w bird|strong="H6833"\w* hurries \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w snare|strong="H6341"\w*, +\q2 \w and|strong="H3045"\w* doesn’t \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w it|strong="H1931"\w* \w will|strong="H5315"\w* cost \w his|strong="H3045"\w* \w life|strong="H5315"\w*. +\b +\q1 +\v 24 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w sons|strong="H1121"\w*, \w listen|strong="H8085"\w* \w to|strong="H8085"\w* \w me|strong="H8085"\w*. +\q2 \w Pay|strong="H7181"\w* \w attention|strong="H7181"\w* \w to|strong="H8085"\w* \w the|strong="H8085"\w* \w words|strong="H6310"\w* \w of|strong="H1121"\w* \w my|strong="H8085"\w* \w mouth|strong="H6310"\w*. +\q1 +\v 25 Don’t let \w your|strong="H1870"\w* \w heart|strong="H3820"\w* \w turn|strong="H7847"\w* \w to|strong="H3820"\w* \w her|strong="H1870"\w* \w ways|strong="H1870"\w*. +\q2 Don’t \w go|strong="H8582"\w* \w astray|strong="H8582"\w* \w in|strong="H1870"\w* \w her|strong="H1870"\w* \w paths|strong="H5410"\w*, +\q1 +\v 26 \w for|strong="H3588"\w* \w she|strong="H3588"\w* \w has|strong="H3588"\w* thrown \w down|strong="H5307"\w* \w many|strong="H7227"\w* \w wounded|strong="H2491"\w*. +\q2 \w Yes|strong="H3588"\w*, \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w slain|strong="H2491"\w* \w are|strong="H7227"\w* \w a|strong="H3068"\w* \w mighty|strong="H6099"\w* army. +\q1 +\v 27 \w Her|strong="H3381"\w* \w house|strong="H1004"\w* \w is|strong="H1870"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w to|strong="H3381"\w* \w Sheol|strong="H7585"\w*,\f + \fr 7:27 \ft Sheol is the place of the dead. \f* +\q2 \w going|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H1870"\w* \w rooms|strong="H2315"\w* \w of|strong="H1004"\w* \w death|strong="H4194"\w*. +\c 8 +\q1 +\v 1 Doesn’t \w wisdom|strong="H2451"\w* \w cry|strong="H7121"\w* \w out|strong="H5414"\w*? +\q2 Doesn’t \w understanding|strong="H8394"\w* \w raise|strong="H5414"\w* \w her|strong="H5414"\w* \w voice|strong="H6963"\w*? +\q1 +\v 2 \w On|strong="H5921"\w* \w the|strong="H5921"\w* \w top|strong="H7218"\w* \w of|strong="H1004"\w* \w high|strong="H4791"\w* \w places|strong="H1004"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w*, +\q2 \w where|strong="H1004"\w* \w the|strong="H5921"\w* \w paths|strong="H5410"\w* meet, \w she|strong="H5921"\w* \w stands|strong="H5324"\w*. +\q1 +\v 3 \w Beside|strong="H3027"\w* \w the|strong="H3027"\w* \w gates|strong="H8179"\w*, \w at|strong="H6607"\w* \w the|strong="H3027"\w* \w entry|strong="H6607"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w city|strong="H7176"\w*, +\q2 \w at|strong="H6607"\w* \w the|strong="H3027"\w* \w entry|strong="H6607"\w* \w doors|strong="H6607"\w*, she \w cries|strong="H7442"\w* \w aloud|strong="H7442"\w*: +\q1 +\v 4 “\w I|strong="H1121"\w* \w call|strong="H7121"\w* \w to|strong="H1121"\w* \w you|strong="H6963"\w* \w men|strong="H1121"\w*! +\q2 \w I|strong="H1121"\w* send \w my|strong="H7121"\w* \w voice|strong="H6963"\w* \w to|strong="H1121"\w* \w the|strong="H7121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* mankind. +\q1 +\v 5 \w You|strong="H3820"\w* \w simple|strong="H6612"\w*, understand \w prudence|strong="H6195"\w*! +\q2 \w You|strong="H3820"\w* \w fools|strong="H3684"\w*, \w be|strong="H3820"\w* \w of|strong="H3820"\w* an \w understanding|strong="H3820"\w* \w heart|strong="H3820"\w*! +\q1 +\v 6 \w Hear|strong="H8085"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H8085"\w* \w speak|strong="H1696"\w* excellent \w things|strong="H4339"\w*. +\q2 \w The|strong="H8085"\w* \w opening|strong="H4669"\w* \w of|strong="H8193"\w* \w my|strong="H8085"\w* \w lips|strong="H8193"\w* \w is|strong="H8193"\w* \w for|strong="H3588"\w* \w right|strong="H4339"\w* \w things|strong="H4339"\w*. +\q1 +\v 7 \w For|strong="H3588"\w* \w my|strong="H3588"\w* \w mouth|strong="H2441"\w* \w speaks|strong="H1897"\w* truth. +\q2 \w Wickedness|strong="H7562"\w* \w is|strong="H8441"\w* \w an|strong="H3588"\w* \w abomination|strong="H8441"\w* \w to|strong="H3588"\w* \w my|strong="H3588"\w* \w lips|strong="H8193"\w*. +\q1 +\v 8 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H6310"\w* \w of|strong="H6310"\w* \w my|strong="H3605"\w* \w mouth|strong="H6310"\w* \w are|strong="H6310"\w* \w in|strong="H6310"\w* \w righteousness|strong="H6664"\w*. +\q2 \w There|strong="H3605"\w* \w is|strong="H3605"\w* \w nothing|strong="H3605"\w* \w crooked|strong="H6141"\w* \w or|strong="H6617"\w* \w perverse|strong="H6141"\w* \w in|strong="H6310"\w* them. +\q1 +\v 9 \w They|strong="H3605"\w* \w are|strong="H3477"\w* \w all|strong="H3605"\w* \w plain|strong="H5228"\w* \w to|strong="H4672"\w* \w him|strong="H4672"\w* \w who|strong="H3605"\w* understands, +\q2 \w right|strong="H3477"\w* \w to|strong="H4672"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w find|strong="H4672"\w* \w knowledge|strong="H1847"\w*. +\q1 +\v 10 \w Receive|strong="H3947"\w* \w my|strong="H3947"\w* \w instruction|strong="H4148"\w* rather than \w silver|strong="H3701"\w*, +\q2 \w knowledge|strong="H1847"\w* rather than choice \w gold|strong="H2742"\w*. +\q1 +\v 11 \w For|strong="H3588"\w* \w wisdom|strong="H2451"\w* \w is|strong="H2896"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w rubies|strong="H6443"\w*. +\q2 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w things|strong="H3605"\w* \w that|strong="H3588"\w* \w may|strong="H3808"\w* \w be|strong="H3808"\w* \w desired|strong="H2656"\w* \w can|strong="H3808"\w*’t \w be|strong="H3808"\w* \w compared|strong="H7737"\w* \w to|strong="H2896"\w* \w it|strong="H3588"\w*. +\b +\q1 +\v 12 “\w I|strong="H4672"\w*, \w wisdom|strong="H2451"\w*, \w have|strong="H4672"\w* made \w prudence|strong="H6195"\w* \w my|strong="H4672"\w* \w dwelling|strong="H7931"\w*. +\q2 \w Find|strong="H4672"\w* \w out|strong="H4672"\w* \w knowledge|strong="H1847"\w* \w and|strong="H2451"\w* \w discretion|strong="H4209"\w*. +\q1 +\v 13 \w The|strong="H3068"\w* \w fear|strong="H3374"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w to|strong="H3068"\w* \w hate|strong="H8130"\w* \w evil|strong="H7451"\w*. +\q2 \w I|strong="H3068"\w* \w hate|strong="H8130"\w* \w pride|strong="H1347"\w*, \w arrogance|strong="H1347"\w*, \w the|strong="H3068"\w* \w evil|strong="H7451"\w* \w way|strong="H1870"\w*, \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w perverse|strong="H8419"\w* \w mouth|strong="H6310"\w*. +\q1 +\v 14 \w Counsel|strong="H6098"\w* \w and|strong="H6098"\w* \w sound|strong="H8454"\w* knowledge \w are|strong="H1369"\w* mine. +\q2 I have understanding \w and|strong="H6098"\w* \w power|strong="H1369"\w*. +\q1 +\v 15 \w By|strong="H4428"\w* \w me|strong="H4427"\w* \w kings|strong="H4428"\w* \w reign|strong="H4427"\w*, +\q2 \w and|strong="H4428"\w* \w princes|strong="H7336"\w* \w decree|strong="H2710"\w* \w justice|strong="H6664"\w*. +\q1 +\v 16 \w By|strong="H3605"\w* \w me|strong="H3605"\w* \w princes|strong="H8269"\w* \w rule|strong="H8323"\w*, +\q2 \w nobles|strong="H5081"\w*, \w and|strong="H8269"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w righteous|strong="H6664"\w* \w rulers|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* earth. +\q1 +\v 17 \w I|strong="H4672"\w* love those \w who|strong="H4672"\w* love \w me|strong="H4672"\w*. +\q2 Those \w who|strong="H4672"\w* \w seek|strong="H7836"\w* \w me|strong="H4672"\w* \w diligently|strong="H7836"\w* will \w find|strong="H4672"\w* \w me|strong="H4672"\w*. +\q1 +\v 18 With me are \w riches|strong="H6239"\w*, \w honor|strong="H3519"\w*, +\q2 \w enduring|strong="H6276"\w* \w wealth|strong="H1952"\w*, \w and|strong="H6239"\w* prosperity. +\q1 +\v 19 My \w fruit|strong="H6529"\w* \w is|strong="H2896"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w gold|strong="H6337"\w*, yes, \w than|strong="H2896"\w* \w fine|strong="H6337"\w* \w gold|strong="H6337"\w*, +\q2 my \w yield|strong="H8393"\w* \w than|strong="H2896"\w* \w choice|strong="H2896"\w* \w silver|strong="H3701"\w*. +\q1 +\v 20 \w I|strong="H1980"\w* \w walk|strong="H1980"\w* \w in|strong="H1980"\w* \w the|strong="H8432"\w* \w way|strong="H1980"\w* \w of|strong="H8432"\w* \w righteousness|strong="H6666"\w*, +\q2 \w in|strong="H1980"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w the|strong="H8432"\w* \w paths|strong="H5410"\w* \w of|strong="H8432"\w* \w justice|strong="H4941"\w*, +\q1 +\v 21 \w that|strong="H3426"\w* I \w may|strong="H3426"\w* \w give|strong="H5157"\w* \w wealth|strong="H3426"\w* \w to|strong="H4390"\w* those \w who|strong="H3426"\w* love me. +\q2 I \w fill|strong="H4390"\w* \w their|strong="H4390"\w* treasuries. +\b +\q1 +\v 22 “\w Yahweh|strong="H3068"\w* \w possessed|strong="H7069"\w* \w me|strong="H7069"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w beginning|strong="H7225"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* work, +\q2 \w before|strong="H6924"\w* \w his|strong="H3068"\w* \w deeds|strong="H1870"\w* \w of|strong="H3068"\w* \w old|strong="H6924"\w*. +\q1 +\v 23 I \w was|strong="H7218"\w* \w set|strong="H5258"\w* \w up|strong="H5258"\w* \w from|strong="H7218"\w* \w everlasting|strong="H5769"\w*, \w from|strong="H7218"\w* \w the|strong="H7218"\w* \w beginning|strong="H7218"\w*, +\q2 \w before|strong="H6924"\w* \w the|strong="H7218"\w* earth existed. +\q1 +\v 24 When there \w were|strong="H4325"\w* no \w depths|strong="H8415"\w*, \w I|strong="H3513"\w* \w was|strong="H4325"\w* \w born|strong="H2342"\w*, +\q2 when there \w were|strong="H4325"\w* no \w springs|strong="H4599"\w* \w abounding|strong="H3513"\w* \w with|strong="H3513"\w* \w water|strong="H4325"\w*. +\q1 +\v 25 \w Before|strong="H6440"\w* \w the|strong="H6440"\w* \w mountains|strong="H2022"\w* \w were|strong="H2022"\w* \w settled|strong="H2883"\w* \w in|strong="H6440"\w* place, +\q2 \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w hills|strong="H1389"\w*, \w I|strong="H2962"\w* \w was|strong="H6440"\w* \w born|strong="H2342"\w*; +\q1 +\v 26 \w while|strong="H5704"\w* \w as|strong="H5704"\w* \w yet|strong="H5704"\w* \w he|strong="H5704"\w* \w had|strong="H3808"\w* \w not|strong="H3808"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w earth|strong="H6083"\w*, \w nor|strong="H3808"\w* \w the|strong="H6213"\w* \w fields|strong="H2351"\w*, +\q2 \w nor|strong="H3808"\w* \w the|strong="H6213"\w* \w beginning|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H6213"\w* \w dust|strong="H6083"\w* \w of|strong="H7218"\w* \w the|strong="H6213"\w* \w world|strong="H8398"\w*. +\q1 +\v 27 \w When|strong="H5921"\w* \w he|strong="H8033"\w* \w established|strong="H3559"\w* \w the|strong="H6440"\w* \w heavens|strong="H8064"\w*, \w I|strong="H5921"\w* \w was|strong="H6440"\w* \w there|strong="H8033"\w*. +\q2 \w When|strong="H5921"\w* \w he|strong="H8033"\w* \w set|strong="H3559"\w* \w a|strong="H3068"\w* \w circle|strong="H2329"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w deep|strong="H8415"\w*, +\q1 +\v 28 when he established \w the|strong="H5869"\w* \w clouds|strong="H7834"\w* \w above|strong="H4605"\w*, +\q2 when \w the|strong="H5869"\w* \w springs|strong="H8415"\w* \w of|strong="H5869"\w* \w the|strong="H5869"\w* \w deep|strong="H8415"\w* \w became|strong="H5810"\w* \w strong|strong="H5810"\w*, +\q1 +\v 29 \w when|strong="H5674"\w* \w he|strong="H3808"\w* \w gave|strong="H7760"\w* \w to|strong="H4325"\w* \w the|strong="H7760"\w* \w sea|strong="H3220"\w* \w its|strong="H7760"\w* \w boundary|strong="H2706"\w*, +\q2 \w that|strong="H4325"\w* \w the|strong="H7760"\w* \w waters|strong="H4325"\w* should \w not|strong="H3808"\w* violate \w his|strong="H7760"\w* \w commandment|strong="H6310"\w*, +\q2 \w when|strong="H5674"\w* \w he|strong="H3808"\w* \w marked|strong="H2710"\w* \w out|strong="H5674"\w* \w the|strong="H7760"\w* \w foundations|strong="H4144"\w* \w of|strong="H4325"\w* \w the|strong="H7760"\w* earth, +\q1 +\v 30 \w then|strong="H1961"\w* \w I|strong="H3117"\w* \w was|strong="H1961"\w* \w the|strong="H3605"\w* craftsman \w by|strong="H3117"\w* \w his|strong="H3605"\w* side. +\q2 \w I|strong="H3117"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w delight|strong="H8191"\w* \w day|strong="H3117"\w* \w by|strong="H3117"\w* \w day|strong="H3117"\w*, +\q2 \w always|strong="H3605"\w* \w rejoicing|strong="H7832"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, +\q1 +\v 31 \w rejoicing|strong="H7832"\w* \w in|strong="H1121"\w* \w his|strong="H1121"\w* whole \w world|strong="H8398"\w*. +\q2 My \w delight|strong="H8191"\w* \w was|strong="H1121"\w* \w with|strong="H8398"\w* \w the|strong="H1121"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*. +\b +\q1 +\v 32 “\w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w my|strong="H8104"\w* \w sons|strong="H1121"\w*, \w listen|strong="H8085"\w* \w to|strong="H8104"\w* \w me|strong="H8104"\w*, +\q2 \w for|strong="H1121"\w* blessed \w are|strong="H1121"\w* \w those|strong="H8085"\w* \w who|strong="H1121"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w ways|strong="H1870"\w*. +\q1 +\v 33 \w Hear|strong="H8085"\w* \w instruction|strong="H4148"\w*, \w and|strong="H8085"\w* be \w wise|strong="H2449"\w*. +\q2 Don’t \w refuse|strong="H6544"\w* it. +\q1 +\v 34 Blessed \w is|strong="H3117"\w* \w the|strong="H5921"\w* man \w who|strong="H8104"\w* \w hears|strong="H8085"\w* \w me|strong="H5921"\w*, +\q2 \w watching|strong="H8245"\w* \w daily|strong="H3117"\w* \w at|strong="H5921"\w* \w my|strong="H8104"\w* \w gates|strong="H1817"\w*, +\q2 \w waiting|strong="H8104"\w* \w at|strong="H5921"\w* \w my|strong="H8104"\w* \w door|strong="H6607"\w* \w posts|strong="H4201"\w*. +\q1 +\v 35 \w For|strong="H3588"\w* whoever \w finds|strong="H4672"\w* \w me|strong="H4672"\w* \w finds|strong="H4672"\w* \w life|strong="H2416"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w obtain|strong="H6329"\w* \w favor|strong="H7522"\w* \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 36 \w But|strong="H3605"\w* \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w sins|strong="H2398"\w* \w against|strong="H2398"\w* \w me|strong="H5315"\w* wrongs \w his|strong="H3605"\w* \w own|strong="H5315"\w* \w soul|strong="H5315"\w*. +\q2 \w All|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w hate|strong="H8130"\w* \w me|strong="H5315"\w* love \w death|strong="H4194"\w*.” +\c 9 +\q1 +\v 1 \w Wisdom|strong="H2454"\w* \w has|strong="H1004"\w* \w built|strong="H1129"\w* \w her|strong="H1129"\w* \w house|strong="H1004"\w*. +\q2 She \w has|strong="H1004"\w* carved \w out|strong="H2672"\w* \w her|strong="H1129"\w* \w seven|strong="H7651"\w* \w pillars|strong="H5982"\w*. +\q1 +\v 2 She has \w prepared|strong="H6186"\w* \w her|strong="H4537"\w* meat. +\q2 She has \w mixed|strong="H4537"\w* \w her|strong="H4537"\w* \w wine|strong="H3196"\w*. +\q2 She has also \w set|strong="H6186"\w* \w her|strong="H4537"\w* \w table|strong="H7979"\w*. +\q1 +\v 3 \w She|strong="H7121"\w* has \w sent|strong="H7971"\w* \w out|strong="H7971"\w* \w her|strong="H7971"\w* \w maidens|strong="H5291"\w*. +\q2 \w She|strong="H7121"\w* \w cries|strong="H7121"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* highest \w places|strong="H4791"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w city|strong="H7176"\w*: +\q1 +\v 4 “\w Whoever|strong="H4310"\w* \w is|strong="H3820"\w* \w simple|strong="H6612"\w*, let him \w turn|strong="H5493"\w* \w in|strong="H5493"\w* \w here|strong="H2008"\w*!” +\q2 As \w for|strong="H5493"\w* him \w who|strong="H4310"\w* \w is|strong="H3820"\w* \w void|strong="H2638"\w* \w of|strong="H3820"\w* \w understanding|strong="H3820"\w*, \w she|strong="H3820"\w* says \w to|strong="H3820"\w* him, +\q1 +\v 5 “\w Come|strong="H3212"\w*, \w eat|strong="H3898"\w* some \w of|strong="H3899"\w* \w my|strong="H8354"\w* \w bread|strong="H3899"\w*, +\q2 \w Drink|strong="H8354"\w* some \w of|strong="H3899"\w* \w the|strong="H8354"\w* \w wine|strong="H3196"\w* \w which|strong="H3196"\w* \w I|strong="H3212"\w* \w have|strong="H3899"\w* \w mixed|strong="H4537"\w*! +\q1 +\v 6 \w Leave|strong="H5800"\w* \w your|strong="H5800"\w* \w simple|strong="H6612"\w* \w ways|strong="H1870"\w*, \w and|strong="H1870"\w* \w live|strong="H2421"\w*. +\q2 \w Walk|strong="H1870"\w* \w in|strong="H1870"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* understanding.” +\b +\q1 +\v 7 \w One|strong="H7563"\w* \w who|strong="H7563"\w* \w corrects|strong="H3256"\w* \w a|strong="H3068"\w* \w mocker|strong="H3887"\w* invites insult. +\q2 \w One|strong="H7563"\w* \w who|strong="H7563"\w* \w reproves|strong="H3198"\w* \w a|strong="H3068"\w* \w wicked|strong="H7563"\w* \w man|strong="H7563"\w* invites abuse. +\q1 +\v 8 Don’t \w reprove|strong="H3198"\w* \w a|strong="H3068"\w* scoffer, \w lest|strong="H6435"\w* he \w hate|strong="H8130"\w* \w you|strong="H6435"\w*. +\q2 \w Reprove|strong="H3198"\w* \w a|strong="H3068"\w* \w wise|strong="H2450"\w* \w person|strong="H3198"\w*, \w and|strong="H2450"\w* he \w will|strong="H2450"\w* love \w you|strong="H6435"\w*. +\q1 +\v 9 \w Instruct|strong="H3045"\w* \w a|strong="H3068"\w* \w wise|strong="H2450"\w* \w person|strong="H3045"\w*, \w and|strong="H3045"\w* \w he|strong="H5414"\w* \w will|strong="H6662"\w* \w be|strong="H5750"\w* \w still|strong="H5750"\w* \w wiser|strong="H2449"\w*. +\q2 \w Teach|strong="H3045"\w* \w a|strong="H3068"\w* \w righteous|strong="H6662"\w* \w person|strong="H3045"\w*, \w and|strong="H3045"\w* \w he|strong="H5414"\w* \w will|strong="H6662"\w* \w increase|strong="H3254"\w* \w in|strong="H5414"\w* \w learning|strong="H3948"\w*. +\q1 +\v 10 \w The|strong="H3068"\w* \w fear|strong="H3374"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w beginning|strong="H8462"\w* \w of|strong="H3068"\w* \w wisdom|strong="H2451"\w*. +\q2 \w The|strong="H3068"\w* \w knowledge|strong="H1847"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w is|strong="H3068"\w* understanding. +\q1 +\v 11 \w For|strong="H3588"\w* \w by|strong="H8141"\w* \w me|strong="H3254"\w* \w your|strong="H3588"\w* \w days|strong="H3117"\w* \w will|strong="H3117"\w* \w be|strong="H3117"\w* \w multiplied|strong="H7235"\w*. +\q2 \w The|strong="H3588"\w* \w years|strong="H8141"\w* \w of|strong="H3117"\w* \w your|strong="H3588"\w* \w life|strong="H2416"\w* \w will|strong="H3117"\w* \w be|strong="H3117"\w* \w increased|strong="H7235"\w*. +\q1 +\v 12 If \w you|strong="H5375"\w* are \w wise|strong="H2449"\w*, \w you|strong="H5375"\w* are \w wise|strong="H2449"\w* \w for|strong="H5375"\w* \w yourself|strong="H5375"\w*. +\q2 If \w you|strong="H5375"\w* \w mock|strong="H3887"\w*, \w you|strong="H5375"\w* alone will \w bear|strong="H5375"\w* \w it|strong="H5375"\w*. +\b +\q1 +\v 13 \w The|strong="H3045"\w* \w foolish|strong="H3687"\w* woman \w is|strong="H4100"\w* \w loud|strong="H1993"\w*, +\q2 undisciplined, \w and|strong="H3045"\w* \w knows|strong="H3045"\w* \w nothing|strong="H4100"\w*. +\q1 +\v 14 \w She|strong="H5921"\w* \w sits|strong="H3427"\w* \w at|strong="H3427"\w* \w the|strong="H5921"\w* \w door|strong="H6607"\w* \w of|strong="H1004"\w* \w her|strong="H5921"\w* \w house|strong="H1004"\w*, +\q2 \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w seat|strong="H3678"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w high|strong="H4791"\w* \w places|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w city|strong="H7176"\w*, +\q1 +\v 15 \w to|strong="H1870"\w* \w call|strong="H7121"\w* \w to|strong="H1870"\w* those \w who|strong="H7121"\w* \w pass|strong="H5674"\w* \w by|strong="H5674"\w*, +\q2 \w who|strong="H7121"\w* \w go|strong="H5674"\w* \w straight|strong="H3474"\w* \w on|strong="H5674"\w* \w their|strong="H1870"\w* \w ways|strong="H1870"\w*, +\q1 +\v 16 “\w Whoever|strong="H4310"\w* \w is|strong="H3820"\w* \w simple|strong="H6612"\w*, let him \w turn|strong="H5493"\w* \w in|strong="H5493"\w* \w here|strong="H2008"\w*.” +\q2 As \w for|strong="H5493"\w* him \w who|strong="H4310"\w* \w is|strong="H3820"\w* \w void|strong="H2638"\w* \w of|strong="H3820"\w* \w understanding|strong="H3820"\w*, \w she|strong="H3820"\w* says \w to|strong="H3820"\w* him, +\q1 +\v 17 “\w Stolen|strong="H1589"\w* \w water|strong="H4325"\w* \w is|strong="H4325"\w* \w sweet|strong="H4985"\w*. +\q2 \w Food|strong="H3899"\w* eaten \w in|strong="H3899"\w* \w secret|strong="H5643"\w* \w is|strong="H4325"\w* \w pleasant|strong="H5276"\w*.” +\q1 +\v 18 \w But|strong="H3588"\w* \w he|strong="H3588"\w* doesn’t \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w departed|strong="H7496"\w* \w spirits|strong="H7496"\w* \w are|strong="H3045"\w* \w there|strong="H8033"\w*, +\q2 \w that|strong="H3588"\w* \w her|strong="H7121"\w* \w guests|strong="H7121"\w* \w are|strong="H3045"\w* \w in|strong="H7121"\w* \w the|strong="H3588"\w* \w depths|strong="H6012"\w* \w of|strong="H3045"\w* \w Sheol|strong="H7585"\w*.\f + \fr 9:18 \ft Sheol is the place of the dead.\f* +\c 10 +\p +\v 1 \w The|strong="H8010"\w* \w proverbs|strong="H4912"\w* \w of|strong="H1121"\w* \w Solomon|strong="H8010"\w*. +\q1 \w A|strong="H3068"\w* \w wise|strong="H2450"\w* \w son|strong="H1121"\w* \w makes|strong="H8055"\w* \w a|strong="H3068"\w* \w glad|strong="H8055"\w* \w father|strong="H1121"\w*; +\q2 \w but|strong="H8055"\w* \w a|strong="H3068"\w* \w foolish|strong="H3684"\w* \w son|strong="H1121"\w* brings \w grief|strong="H8424"\w* \w to|strong="H1121"\w* \w his|strong="H8010"\w* mother. +\q1 +\v 2 Treasures \w of|strong="H4194"\w* \w wickedness|strong="H7562"\w* \w profit|strong="H3276"\w* \w nothing|strong="H3808"\w*, +\q2 \w but|strong="H3808"\w* \w righteousness|strong="H6666"\w* \w delivers|strong="H5337"\w* \w from|strong="H5337"\w* \w death|strong="H4194"\w*. +\q1 +\v 3 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* allow \w the|strong="H3068"\w* \w soul|strong="H5315"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w righteous|strong="H6662"\w* \w to|strong="H3068"\w* \w go|strong="H3068"\w* \w hungry|strong="H7456"\w*, +\q2 \w but|strong="H3808"\w* \w he|strong="H3068"\w* thrusts \w away|strong="H1920"\w* \w the|strong="H3068"\w* \w desire|strong="H5315"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w wicked|strong="H7563"\w*. +\q1 +\v 4 \w He|strong="H6213"\w* \w becomes|strong="H3027"\w* \w poor|strong="H7326"\w* \w who|strong="H6213"\w* \w works|strong="H6213"\w* \w with|strong="H6213"\w* \w a|strong="H3068"\w* \w lazy|strong="H7423"\w* \w hand|strong="H3027"\w*, +\q2 \w but|strong="H7326"\w* \w the|strong="H6213"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H6213"\w* \w diligent|strong="H2742"\w* brings \w wealth|strong="H6238"\w*. +\q1 +\v 5 \w He|strong="H1121"\w* \w who|strong="H1121"\w* gathers \w in|strong="H1121"\w* \w summer|strong="H7019"\w* \w is|strong="H1121"\w* \w a|strong="H3068"\w* \w wise|strong="H7919"\w* \w son|strong="H1121"\w*, +\q2 \w but|strong="H7290"\w* \w he|strong="H1121"\w* \w who|strong="H1121"\w* \w sleeps|strong="H7290"\w* during \w the|strong="H1121"\w* \w harvest|strong="H7105"\w* \w is|strong="H1121"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w who|strong="H1121"\w* causes shame. +\q1 +\v 6 \w Blessings|strong="H1293"\w* \w are|strong="H7563"\w* \w on|strong="H7218"\w* \w the|strong="H3680"\w* \w head|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H3680"\w* \w righteous|strong="H6662"\w*, +\q2 \w but|strong="H7563"\w* \w violence|strong="H2555"\w* \w covers|strong="H3680"\w* \w the|strong="H3680"\w* \w mouth|strong="H6310"\w* \w of|strong="H7218"\w* \w the|strong="H3680"\w* \w wicked|strong="H7563"\w*. +\q1 +\v 7 \w The|strong="H8034"\w* \w memory|strong="H2143"\w* \w of|strong="H8034"\w* \w the|strong="H8034"\w* \w righteous|strong="H6662"\w* \w is|strong="H8034"\w* \w blessed|strong="H1293"\w*, +\q2 \w but|strong="H7563"\w* \w the|strong="H8034"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w the|strong="H8034"\w* \w wicked|strong="H7563"\w* \w will|strong="H6662"\w* \w rot|strong="H7537"\w*. +\q1 +\v 8 \w The|strong="H3947"\w* \w wise|strong="H2450"\w* \w in|strong="H2450"\w* \w heart|strong="H3820"\w* \w accept|strong="H3947"\w* \w commandments|strong="H4687"\w*, +\q2 \w but|strong="H3947"\w* \w a|strong="H3068"\w* chattering fool \w will|strong="H3820"\w* \w fall|strong="H3832"\w*. +\q1 +\v 9 \w He|strong="H1980"\w* \w who|strong="H3045"\w* \w walks|strong="H1980"\w* blamelessly \w walks|strong="H1980"\w* \w surely|strong="H1980"\w*, +\q2 \w but|strong="H1870"\w* \w he|strong="H1980"\w* \w who|strong="H3045"\w* \w perverts|strong="H6140"\w* \w his|strong="H3045"\w* \w ways|strong="H1870"\w* \w will|strong="H1870"\w* \w be|strong="H1870"\w* \w found|strong="H3045"\w* \w out|strong="H1980"\w*. +\q1 +\v 10 One who \w winks|strong="H7169"\w* \w with|strong="H5869"\w* \w the|strong="H5414"\w* \w eye|strong="H5869"\w* \w causes|strong="H5414"\w* \w sorrow|strong="H6094"\w*, +\q2 \w but|strong="H8193"\w* \w a|strong="H3068"\w* chattering fool \w will|strong="H5869"\w* \w fall|strong="H3832"\w*. +\q1 +\v 11 \w The|strong="H3680"\w* \w mouth|strong="H6310"\w* \w of|strong="H6310"\w* \w the|strong="H3680"\w* \w righteous|strong="H6662"\w* \w is|strong="H7563"\w* \w a|strong="H3068"\w* \w spring|strong="H4726"\w* \w of|strong="H6310"\w* \w life|strong="H2416"\w*, +\q2 \w but|strong="H7563"\w* \w violence|strong="H2555"\w* \w covers|strong="H3680"\w* \w the|strong="H3680"\w* \w mouth|strong="H6310"\w* \w of|strong="H6310"\w* \w the|strong="H3680"\w* \w wicked|strong="H7563"\w*. +\q1 +\v 12 \w Hatred|strong="H8135"\w* \w stirs|strong="H5782"\w* \w up|strong="H5782"\w* \w strife|strong="H4090"\w*, +\q2 \w but|strong="H3605"\w* \w love|strong="H5782"\w* \w covers|strong="H3680"\w* \w all|strong="H3605"\w* wrongs. +\q1 +\v 13 \w Wisdom|strong="H2451"\w* \w is|strong="H3820"\w* \w found|strong="H4672"\w* \w on|strong="H4672"\w* \w the|strong="H4672"\w* \w lips|strong="H8193"\w* \w of|strong="H7626"\w* \w him|strong="H4672"\w* \w who|strong="H2638"\w* \w has|strong="H3820"\w* \w discernment|strong="H3820"\w*, +\q2 \w but|strong="H8193"\w* \w a|strong="H3068"\w* \w rod|strong="H7626"\w* \w is|strong="H3820"\w* \w for|strong="H8193"\w* \w the|strong="H4672"\w* \w back|strong="H1460"\w* \w of|strong="H7626"\w* \w him|strong="H4672"\w* \w who|strong="H2638"\w* \w is|strong="H3820"\w* \w void|strong="H2638"\w* \w of|strong="H7626"\w* \w understanding|strong="H3820"\w*. +\q1 +\v 14 \w Wise|strong="H2450"\w* \w men|strong="H2450"\w* lay \w up|strong="H6845"\w* \w knowledge|strong="H1847"\w*, +\q2 but \w the|strong="H1847"\w* \w mouth|strong="H6310"\w* \w of|strong="H6310"\w* \w the|strong="H1847"\w* foolish \w is|strong="H6310"\w* \w near|strong="H7138"\w* \w ruin|strong="H4288"\w*. +\q1 +\v 15 \w The|strong="H5797"\w* \w rich|strong="H6223"\w* \w man|strong="H6223"\w*’s \w wealth|strong="H1952"\w* \w is|strong="H1800"\w* \w his|strong="H5797"\w* \w strong|strong="H5797"\w* \w city|strong="H7151"\w*. +\q2 \w The|strong="H5797"\w* \w destruction|strong="H4288"\w* \w of|strong="H7151"\w* \w the|strong="H5797"\w* \w poor|strong="H1800"\w* \w is|strong="H1800"\w* their \w poverty|strong="H7389"\w*. +\q1 +\v 16 \w The|strong="H7563"\w* \w labor|strong="H6468"\w* \w of|strong="H2403"\w* \w the|strong="H7563"\w* \w righteous|strong="H6662"\w* \w leads|strong="H2416"\w* \w to|strong="H6662"\w* \w life|strong="H2416"\w*. +\q2 \w The|strong="H7563"\w* \w increase|strong="H8393"\w* \w of|strong="H2403"\w* \w the|strong="H7563"\w* \w wicked|strong="H7563"\w* \w leads|strong="H2416"\w* \w to|strong="H6662"\w* \w sin|strong="H2403"\w*. +\q1 +\v 17 \w He|strong="H2416"\w* \w is|strong="H8433"\w* \w in|strong="H5800"\w* \w the|strong="H8104"\w* \w way|strong="H8582"\w* \w of|strong="H2416"\w* \w life|strong="H2416"\w* \w who|strong="H8104"\w* \w heeds|strong="H8104"\w* \w correction|strong="H4148"\w*, +\q2 \w but|strong="H5800"\w* \w he|strong="H2416"\w* \w who|strong="H8104"\w* \w forsakes|strong="H5800"\w* \w reproof|strong="H8433"\w* \w leads|strong="H8582"\w* others \w astray|strong="H8582"\w*. +\q1 +\v 18 \w He|strong="H1931"\w* \w who|strong="H1931"\w* hides \w hatred|strong="H8135"\w* \w has|strong="H3318"\w* \w lying|strong="H8267"\w* \w lips|strong="H8193"\w*. +\q2 \w He|strong="H1931"\w* \w who|strong="H1931"\w* \w utters|strong="H8193"\w* \w a|strong="H3068"\w* \w slander|strong="H1681"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w*. +\q1 +\v 19 \w In|strong="H1697"\w* \w the|strong="H1697"\w* \w multitude|strong="H7230"\w* \w of|strong="H1697"\w* \w words|strong="H1697"\w* \w there|strong="H1697"\w* \w is|strong="H1697"\w* \w no|strong="H3808"\w* lack \w of|strong="H1697"\w* disobedience, +\q2 \w but|strong="H3808"\w* \w he|strong="H3808"\w* \w who|strong="H3808"\w* \w restrains|strong="H2820"\w* \w his|strong="H2820"\w* \w lips|strong="H8193"\w* \w does|strong="H3808"\w* \w wisely|strong="H7919"\w*. +\q1 +\v 20 \w The|strong="H3820"\w* \w tongue|strong="H3956"\w* \w of|strong="H3820"\w* \w the|strong="H3820"\w* \w righteous|strong="H6662"\w* \w is|strong="H3820"\w* \w like|strong="H3820"\w* choice \w silver|strong="H3701"\w*. +\q2 \w The|strong="H3820"\w* \w heart|strong="H3820"\w* \w of|strong="H3820"\w* \w the|strong="H3820"\w* \w wicked|strong="H7563"\w* \w is|strong="H3820"\w* \w of|strong="H3820"\w* \w little|strong="H4592"\w* \w worth|strong="H4592"\w*. +\q1 +\v 21 \w The|strong="H4191"\w* \w lips|strong="H8193"\w* \w of|strong="H3820"\w* \w the|strong="H4191"\w* \w righteous|strong="H6662"\w* \w feed|strong="H7462"\w* \w many|strong="H7227"\w*, +\q2 \w but|strong="H6662"\w* \w the|strong="H4191"\w* foolish \w die|strong="H4191"\w* \w for|strong="H4191"\w* \w lack|strong="H2638"\w* \w of|strong="H3820"\w* \w understanding|strong="H3820"\w*. +\q1 +\v 22 \w Yahweh|strong="H3068"\w*’s \w blessing|strong="H1293"\w* brings \w wealth|strong="H3808"\w*, +\q2 \w and|strong="H3068"\w* \w he|strong="H1931"\w* \w adds|strong="H3254"\w* \w no|strong="H3808"\w* trouble \w to|strong="H3068"\w* \w it|strong="H1931"\w*. +\q1 +\v 23 \w It|strong="H6213"\w* \w is|strong="H2451"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w*’s pleasure \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w wickedness|strong="H2154"\w*, +\q2 but \w wisdom|strong="H2451"\w* \w is|strong="H2451"\w* \w a|strong="H3068"\w* \w man|strong="H2451"\w* \w of|strong="H6213"\w* \w understanding|strong="H8394"\w*’s pleasure. +\q1 +\v 24 \w What|strong="H4034"\w* \w the|strong="H5414"\w* \w wicked|strong="H7563"\w* \w fear|strong="H4034"\w* \w will|strong="H6662"\w* overtake \w them|strong="H5414"\w*, +\q2 \w but|strong="H7563"\w* \w the|strong="H5414"\w* \w desire|strong="H8378"\w* \w of|strong="H7563"\w* \w the|strong="H5414"\w* \w righteous|strong="H6662"\w* \w will|strong="H6662"\w* \w be|strong="H7563"\w* \w granted|strong="H5414"\w*. +\q1 +\v 25 \w When|strong="H5674"\w* \w the|strong="H5674"\w* \w whirlwind|strong="H5492"\w* \w passes|strong="H5674"\w*, \w the|strong="H5674"\w* \w wicked|strong="H7563"\w* \w is|strong="H7563"\w* \w no|strong="H7563"\w* \w more|strong="H5769"\w*; +\q2 \w but|strong="H7563"\w* \w the|strong="H5674"\w* \w righteous|strong="H6662"\w* stand firm \w forever|strong="H5769"\w*. +\q1 +\v 26 \w As|strong="H3651"\w* \w vinegar|strong="H2558"\w* \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w teeth|strong="H8127"\w*, \w and|strong="H7971"\w* \w as|strong="H3651"\w* \w smoke|strong="H6227"\w* \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w eyes|strong="H5869"\w*, +\q2 \w so|strong="H3651"\w* \w is|strong="H3651"\w* \w the|strong="H7971"\w* \w sluggard|strong="H6102"\w* \w to|strong="H7971"\w* those who \w send|strong="H7971"\w* \w him|strong="H7971"\w*. +\q1 +\v 27 \w The|strong="H3068"\w* \w fear|strong="H3374"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w prolongs|strong="H3254"\w* \w days|strong="H3117"\w*, +\q2 \w but|strong="H7563"\w* \w the|strong="H3068"\w* \w years|strong="H8141"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w wicked|strong="H7563"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w shortened|strong="H7114"\w*. +\q1 +\v 28 \w The|strong="H7563"\w* prospect \w of|strong="H8057"\w* \w the|strong="H7563"\w* \w righteous|strong="H6662"\w* \w is|strong="H7563"\w* \w joy|strong="H8057"\w*, +\q2 \w but|strong="H7563"\w* \w the|strong="H7563"\w* \w hope|strong="H8615"\w* \w of|strong="H8057"\w* \w the|strong="H7563"\w* \w wicked|strong="H7563"\w* \w will|strong="H6662"\w* perish. +\q1 +\v 29 \w The|strong="H3068"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w stronghold|strong="H4581"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w upright|strong="H8537"\w*, +\q2 \w but|strong="H1870"\w* \w it|strong="H3068"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w destruction|strong="H4288"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w workers|strong="H6466"\w* \w of|strong="H3068"\w* iniquity. +\q1 +\v 30 \w The|strong="H3808"\w* \w righteous|strong="H6662"\w* \w will|strong="H6662"\w* \w never|strong="H3808"\w* \w be|strong="H3808"\w* \w removed|strong="H4131"\w*, +\q2 \w but|strong="H3808"\w* \w the|strong="H3808"\w* \w wicked|strong="H7563"\w* \w will|strong="H6662"\w* \w not|strong="H3808"\w* \w dwell|strong="H7931"\w* \w in|strong="H7931"\w* \w the|strong="H3808"\w* land. +\q1 +\v 31 \w The|strong="H3772"\w* \w mouth|strong="H6310"\w* \w of|strong="H6310"\w* \w the|strong="H3772"\w* \w righteous|strong="H6662"\w* produces \w wisdom|strong="H2451"\w*, +\q2 \w but|strong="H6662"\w* \w the|strong="H3772"\w* \w perverse|strong="H8419"\w* \w tongue|strong="H3956"\w* \w will|strong="H6662"\w* \w be|strong="H6662"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*. +\q1 +\v 32 \w The|strong="H3045"\w* \w lips|strong="H8193"\w* \w of|strong="H6310"\w* \w the|strong="H3045"\w* \w righteous|strong="H6662"\w* \w know|strong="H3045"\w* \w what|strong="H3045"\w* \w is|strong="H7563"\w* \w acceptable|strong="H7522"\w*, +\q2 \w but|strong="H7563"\w* \w the|strong="H3045"\w* \w mouth|strong="H6310"\w* \w of|strong="H6310"\w* \w the|strong="H3045"\w* \w wicked|strong="H7563"\w* \w is|strong="H7563"\w* \w perverse|strong="H8419"\w*. +\c 11 +\q1 +\v 1 \w A|strong="H3068"\w* \w false|strong="H4820"\w* \w balance|strong="H3976"\w* \w is|strong="H3068"\w* \w an|strong="H3068"\w* \w abomination|strong="H8441"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w but|strong="H3068"\w* accurate weights \w are|strong="H3068"\w* \w his|strong="H3068"\w* \w delight|strong="H7522"\w*. +\q1 +\v 2 When \w pride|strong="H2087"\w* \w comes|strong="H7036"\w*, then \w comes|strong="H7036"\w* \w shame|strong="H7036"\w*, +\q2 but with \w humility|strong="H6800"\w* \w comes|strong="H7036"\w* \w wisdom|strong="H2451"\w*. +\q1 +\v 3 \w The|strong="H5148"\w* \w integrity|strong="H8538"\w* \w of|strong="H7703"\w* \w the|strong="H5148"\w* \w upright|strong="H3477"\w* \w shall|strong="H3477"\w* \w guide|strong="H5148"\w* \w them|strong="H5148"\w*, +\q2 but \w the|strong="H5148"\w* \w perverseness|strong="H5558"\w* \w of|strong="H7703"\w* \w the|strong="H5148"\w* treacherous \w shall|strong="H3477"\w* \w destroy|strong="H7703"\w* \w them|strong="H5148"\w*. +\q1 +\v 4 \w Riches|strong="H1952"\w* don’t \w profit|strong="H3276"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w wrath|strong="H5678"\w*, +\q2 \w but|strong="H3808"\w* \w righteousness|strong="H6666"\w* \w delivers|strong="H5337"\w* \w from|strong="H3117"\w* \w death|strong="H4194"\w*. +\q1 +\v 5 \w The|strong="H1870"\w* \w righteousness|strong="H6666"\w* \w of|strong="H1870"\w* \w the|strong="H1870"\w* \w blameless|strong="H8549"\w* \w will|strong="H7563"\w* \w direct|strong="H3474"\w* \w his|strong="H3474"\w* \w way|strong="H1870"\w*, +\q2 \w but|strong="H7563"\w* \w the|strong="H1870"\w* \w wicked|strong="H7563"\w* \w shall|strong="H7563"\w* \w fall|strong="H5307"\w* \w by|strong="H1870"\w* \w his|strong="H3474"\w* own \w wickedness|strong="H7564"\w*. +\q1 +\v 6 \w The|strong="H3920"\w* \w righteousness|strong="H6666"\w* \w of|strong="H3477"\w* \w the|strong="H3920"\w* \w upright|strong="H3477"\w* \w shall|strong="H3477"\w* \w deliver|strong="H5337"\w* \w them|strong="H5337"\w*, +\q2 but \w the|strong="H3920"\w* unfaithful \w will|strong="H3477"\w* \w be|strong="H1942"\w* trapped \w by|strong="H5337"\w* evil desires. +\q1 +\v 7 When \w a|strong="H3068"\w* \w wicked|strong="H7563"\w* \w man|strong="H7563"\w* \w dies|strong="H4194"\w*, \w hope|strong="H8615"\w* perishes, +\q2 \w and|strong="H4194"\w* \w expectation|strong="H8615"\w* \w of|strong="H4194"\w* power comes \w to|strong="H7563"\w* nothing. +\q1 +\v 8 \w A|strong="H3068"\w* \w righteous|strong="H6662"\w* person \w is|strong="H7563"\w* \w delivered|strong="H2502"\w* \w out|strong="H2502"\w* \w of|strong="H8478"\w* \w trouble|strong="H6869"\w*, +\q2 \w and|strong="H6869"\w* \w the|strong="H8478"\w* \w wicked|strong="H7563"\w* takes \w his|strong="H8478"\w* \w place|strong="H8478"\w*. +\q1 +\v 9 \w With|strong="H6310"\w* \w his|strong="H7843"\w* \w mouth|strong="H6310"\w* \w the|strong="H7843"\w* \w godless|strong="H2611"\w* \w man|strong="H6662"\w* \w destroys|strong="H7843"\w* \w his|strong="H7843"\w* \w neighbor|strong="H7453"\w*, +\q2 \w but|strong="H6662"\w* \w the|strong="H7843"\w* \w righteous|strong="H6662"\w* \w will|strong="H6662"\w* \w be|strong="H6662"\w* \w delivered|strong="H2502"\w* through \w knowledge|strong="H1847"\w*. +\q1 +\v 10 When it goes \w well|strong="H2898"\w* \w with|strong="H6662"\w* \w the|strong="H7563"\w* \w righteous|strong="H6662"\w*, \w the|strong="H7563"\w* \w city|strong="H7151"\w* \w rejoices|strong="H5970"\w*. +\q2 When \w the|strong="H7563"\w* \w wicked|strong="H7563"\w* perish, there \w is|strong="H7563"\w* \w shouting|strong="H7440"\w*. +\q1 +\v 11 \w By|strong="H7563"\w* \w the|strong="H7311"\w* \w blessing|strong="H1293"\w* \w of|strong="H6310"\w* \w the|strong="H7311"\w* \w upright|strong="H3477"\w*, \w the|strong="H7311"\w* \w city|strong="H7176"\w* \w is|strong="H7563"\w* \w exalted|strong="H7311"\w*, +\q2 \w but|strong="H7563"\w* \w it|strong="H2040"\w* \w is|strong="H7563"\w* \w overthrown|strong="H2040"\w* \w by|strong="H7563"\w* \w the|strong="H7311"\w* \w mouth|strong="H6310"\w* \w of|strong="H6310"\w* \w the|strong="H7311"\w* \w wicked|strong="H7563"\w*. +\q1 +\v 12 \w One|strong="H7453"\w* \w who|strong="H2638"\w* despises \w his|strong="H7453"\w* \w neighbor|strong="H7453"\w* \w is|strong="H3820"\w* \w void|strong="H2638"\w* \w of|strong="H3820"\w* \w wisdom|strong="H3820"\w*, +\q2 \w but|strong="H2790"\w* \w a|strong="H3068"\w* \w man|strong="H3820"\w* \w of|strong="H3820"\w* \w understanding|strong="H8394"\w* holds \w his|strong="H7453"\w* \w peace|strong="H2790"\w*. +\q1 +\v 13 \w One|strong="H1697"\w* \w who|strong="H1980"\w* brings gossip betrays \w a|strong="H3068"\w* confidence, +\q2 but \w one|strong="H1697"\w* \w who|strong="H1980"\w* \w is|strong="H1697"\w* \w of|strong="H1697"\w* \w a|strong="H3068"\w* trustworthy \w spirit|strong="H7307"\w* \w is|strong="H1697"\w* \w one|strong="H1697"\w* \w who|strong="H1980"\w* keeps \w a|strong="H3068"\w* \w secret|strong="H5475"\w*. +\q1 +\v 14 Where \w there|strong="H7230"\w* \w is|strong="H5971"\w* no \w wise|strong="H8458"\w* \w guidance|strong="H8458"\w*, \w the|strong="H5307"\w* \w nation|strong="H5971"\w* \w falls|strong="H5307"\w*, +\q2 \w but|strong="H5971"\w* \w in|strong="H5307"\w* \w the|strong="H5307"\w* \w multitude|strong="H7230"\w* \w of|strong="H7230"\w* \w counselors|strong="H3289"\w* \w there|strong="H7230"\w* \w is|strong="H5971"\w* \w victory|strong="H8668"\w*. +\q1 +\v 15 \w He|strong="H3588"\w* \w who|strong="H2114"\w* \w is|strong="H7451"\w* \w collateral|strong="H6148"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w stranger|strong="H2114"\w* \w will|strong="H2114"\w* \w suffer|strong="H7489"\w* \w for|strong="H3588"\w* \w it|strong="H3588"\w*, +\q2 \w but|strong="H3588"\w* \w he|strong="H3588"\w* \w who|strong="H2114"\w* refuses \w pledges|strong="H8628"\w* \w of|strong="H7451"\w* \w collateral|strong="H6148"\w* \w is|strong="H7451"\w* secure. +\q1 +\v 16 \w A|strong="H3068"\w* \w gracious|strong="H2580"\w* woman obtains \w honor|strong="H3519"\w*, +\q2 but \w violent|strong="H6184"\w* \w men|strong="H6184"\w* \w obtain|strong="H8551"\w* \w riches|strong="H6239"\w*. +\q1 +\v 17 \w The|strong="H1580"\w* \w merciful|strong="H2617"\w* \w man|strong="H5315"\w* \w does|strong="H1580"\w* \w good|strong="H1580"\w* \w to|strong="H5315"\w* his \w own|strong="H5315"\w* \w soul|strong="H5315"\w*, +\q2 but \w he|strong="H5315"\w* \w who|strong="H5315"\w* \w is|strong="H2617"\w* cruel \w troubles|strong="H5916"\w* his \w own|strong="H5315"\w* \w flesh|strong="H7607"\w*. +\q1 +\v 18 \w Wicked|strong="H7563"\w* \w people|strong="H7563"\w* earn \w deceitful|strong="H8267"\w* \w wages|strong="H6468"\w*, +\q2 \w but|strong="H7563"\w* \w one|strong="H6213"\w* \w who|strong="H7563"\w* \w sows|strong="H2232"\w* \w righteousness|strong="H6666"\w* reaps \w a|strong="H3068"\w* sure \w reward|strong="H7938"\w*. +\q1 +\v 19 \w He|strong="H3651"\w* \w who|strong="H2416"\w* \w is|strong="H3651"\w* truly \w righteous|strong="H6666"\w* gets \w life|strong="H2416"\w*. +\q2 \w He|strong="H3651"\w* \w who|strong="H2416"\w* \w pursues|strong="H7291"\w* \w evil|strong="H7451"\w* gets \w death|strong="H4194"\w*. +\q1 +\v 20 Those \w who|strong="H3068"\w* \w are|strong="H3068"\w* \w perverse|strong="H6141"\w* \w in|strong="H3068"\w* \w heart|strong="H3820"\w* \w are|strong="H3068"\w* \w an|strong="H3068"\w* \w abomination|strong="H8441"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w but|strong="H1870"\w* those whose \w ways|strong="H1870"\w* \w are|strong="H3068"\w* \w blameless|strong="H8549"\w* \w are|strong="H3068"\w* \w his|strong="H3068"\w* \w delight|strong="H7522"\w*. +\q1 +\v 21 Most \w certainly|strong="H3808"\w*, \w the|strong="H3027"\w* \w evil|strong="H7451"\w* \w man|strong="H6662"\w* \w will|strong="H6662"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w unpunished|strong="H5352"\w*, +\q2 \w but|strong="H3808"\w* \w the|strong="H3027"\w* \w offspring|strong="H2233"\w*\f + \fr 11:21 \ft or, seed\f* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w righteous|strong="H6662"\w* \w will|strong="H6662"\w* \w be|strong="H3808"\w* \w delivered|strong="H4422"\w*. +\q1 +\v 22 Like \w a|strong="H3068"\w* \w gold|strong="H2091"\w* \w ring|strong="H5141"\w* \w in|strong="H5493"\w* \w a|strong="H3068"\w* \w pig|strong="H2386"\w*’s snout, +\q2 \w is|strong="H2091"\w* \w a|strong="H3068"\w* \w beautiful|strong="H3303"\w* woman \w who|strong="H5493"\w* \w lacks|strong="H5493"\w* \w discretion|strong="H2940"\w*. +\q1 +\v 23 \w The|strong="H2896"\w* \w desire|strong="H8378"\w* \w of|strong="H2896"\w* \w the|strong="H2896"\w* \w righteous|strong="H6662"\w* \w is|strong="H7563"\w* only \w good|strong="H2896"\w*. +\q2 \w The|strong="H2896"\w* \w expectation|strong="H8615"\w* \w of|strong="H2896"\w* \w the|strong="H2896"\w* \w wicked|strong="H7563"\w* \w is|strong="H7563"\w* \w wrath|strong="H5678"\w*. +\q1 +\v 24 \w There|strong="H3426"\w* \w is|strong="H3426"\w* one \w who|strong="H3426"\w* \w scatters|strong="H6340"\w*, \w and|strong="H3254"\w* \w increases|strong="H3254"\w* \w yet|strong="H5750"\w* \w more|strong="H3254"\w*. +\q2 \w There|strong="H3426"\w* \w is|strong="H3426"\w* one \w who|strong="H3426"\w* \w withholds|strong="H2820"\w* \w more|strong="H3254"\w* \w than|strong="H3254"\w* \w is|strong="H3426"\w* appropriate, \w but|strong="H5750"\w* gains \w poverty|strong="H4270"\w*. +\q1 +\v 25 \w The|strong="H1571"\w* \w liberal|strong="H1293"\w* \w soul|strong="H5315"\w* \w shall|strong="H5315"\w* \w be|strong="H5315"\w* \w made|strong="H1878"\w* \w fat|strong="H1878"\w*. +\q2 \w He|strong="H1931"\w* \w who|strong="H1931"\w* \w waters|strong="H7301"\w* \w shall|strong="H5315"\w* \w be|strong="H5315"\w* \w watered|strong="H3384"\w* \w also|strong="H1571"\w* \w himself|strong="H5315"\w*. +\q1 +\v 26 \w People|strong="H3816"\w* \w curse|strong="H5344"\w* someone who \w withholds|strong="H4513"\w* \w grain|strong="H1250"\w*, +\q2 but \w blessing|strong="H1293"\w* \w will|strong="H1293"\w* \w be|strong="H3816"\w* \w on|strong="H7218"\w* \w the|strong="H4513"\w* \w head|strong="H7218"\w* \w of|strong="H7218"\w* him who \w sells|strong="H7666"\w* \w it|strong="H7218"\w*. +\q1 +\v 27 He \w who|strong="H2896"\w* \w diligently|strong="H7836"\w* \w seeks|strong="H1245"\w* \w good|strong="H2896"\w* \w seeks|strong="H1245"\w* \w favor|strong="H7522"\w*, +\q2 \w but|strong="H7451"\w* he \w who|strong="H2896"\w* \w searches|strong="H1875"\w* \w after|strong="H1875"\w* \w evil|strong="H7451"\w*, \w it|strong="H2896"\w* \w shall|strong="H7451"\w* come \w to|strong="H1245"\w* \w him|strong="H1245"\w*. +\q1 +\v 28 \w He|strong="H1931"\w* \w who|strong="H1931"\w* trusts \w in|strong="H5307"\w* \w his|strong="H1931"\w* \w riches|strong="H6239"\w* \w will|strong="H6662"\w* \w fall|strong="H5307"\w*, +\q2 \w but|strong="H6662"\w* \w the|strong="H5307"\w* \w righteous|strong="H6662"\w* \w shall|strong="H6662"\w* \w flourish|strong="H6524"\w* \w as|strong="H6524"\w* \w the|strong="H5307"\w* green \w leaf|strong="H5929"\w*. +\q1 +\v 29 \w He|strong="H1004"\w* \w who|strong="H5650"\w* \w troubles|strong="H5916"\w* \w his|strong="H5157"\w* \w own|strong="H5157"\w* \w house|strong="H1004"\w* \w shall|strong="H1004"\w* \w inherit|strong="H5157"\w* \w the|strong="H5650"\w* \w wind|strong="H7307"\w*. +\q2 \w The|strong="H5650"\w* foolish \w shall|strong="H1004"\w* \w be|strong="H3820"\w* \w servant|strong="H5650"\w* \w to|strong="H3820"\w* \w the|strong="H5650"\w* \w wise|strong="H2450"\w* \w of|strong="H1004"\w* \w heart|strong="H3820"\w*. +\q1 +\v 30 \w The|strong="H3947"\w* \w fruit|strong="H6529"\w* \w of|strong="H6086"\w* \w the|strong="H3947"\w* \w righteous|strong="H6662"\w* \w is|strong="H5315"\w* \w a|strong="H3068"\w* \w tree|strong="H6086"\w* \w of|strong="H6086"\w* \w life|strong="H5315"\w*. +\q2 \w He|strong="H5315"\w* \w who|strong="H5315"\w* \w is|strong="H5315"\w* \w wise|strong="H2450"\w* \w wins|strong="H3947"\w* \w souls|strong="H5315"\w*. +\q1 +\v 31 \w Behold|strong="H2005"\w*, \w the|strong="H3588"\w* \w righteous|strong="H6662"\w* \w shall|strong="H7563"\w* \w be|strong="H7563"\w* \w repaid|strong="H7999"\w* \w in|strong="H6662"\w* \w the|strong="H3588"\w* earth, +\q2 \w how|strong="H3588"\w* much \w more|strong="H3588"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w* \w and|strong="H2398"\w* \w the|strong="H3588"\w* \w sinner|strong="H2398"\w*! +\c 12 +\q1 +\v 1 Whoever loves \w correction|strong="H4148"\w* loves \w knowledge|strong="H1847"\w*, +\q2 but he \w who|strong="H8130"\w* \w hates|strong="H8130"\w* \w reproof|strong="H8433"\w* \w is|strong="H1847"\w* \w stupid|strong="H1198"\w*. +\q1 +\v 2 \w A|strong="H3068"\w* \w good|strong="H2896"\w* \w man|strong="H2896"\w* \w shall|strong="H3068"\w* \w obtain|strong="H6329"\w* \w favor|strong="H7522"\w* \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w but|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w condemn|strong="H7561"\w* \w a|strong="H3068"\w* \w man|strong="H2896"\w* \w of|strong="H3068"\w* \w wicked|strong="H7561"\w* \w plans|strong="H4209"\w*. +\q1 +\v 3 \w A|strong="H3068"\w* \w man|strong="H6662"\w* \w shall|strong="H6662"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w established|strong="H3559"\w* \w by|strong="H3559"\w* \w wickedness|strong="H7562"\w*, +\q2 \w but|strong="H3808"\w* \w the|strong="H3559"\w* \w root|strong="H8328"\w* \w of|strong="H3808"\w* \w the|strong="H3559"\w* \w righteous|strong="H6662"\w* \w shall|strong="H6662"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w moved|strong="H4131"\w*. +\q1 +\v 4 \w A|strong="H3068"\w* \w worthy|strong="H2428"\w* woman \w is|strong="H1167"\w* the \w crown|strong="H5850"\w* \w of|strong="H1167"\w* her \w husband|strong="H1167"\w*, +\q2 but \w a|strong="H3068"\w* disgraceful wife \w is|strong="H1167"\w* as \w rottenness|strong="H7538"\w* \w in|strong="H2428"\w* his \w bones|strong="H6106"\w*. +\q1 +\v 5 \w The|strong="H4941"\w* \w thoughts|strong="H4284"\w* \w of|strong="H4941"\w* \w the|strong="H4941"\w* \w righteous|strong="H6662"\w* \w are|strong="H7563"\w* \w just|strong="H6662"\w*, +\q2 \w but|strong="H7563"\w* \w the|strong="H4941"\w* \w advice|strong="H8458"\w* \w of|strong="H4941"\w* \w the|strong="H4941"\w* \w wicked|strong="H7563"\w* \w is|strong="H7563"\w* \w deceitful|strong="H4820"\w*. +\q1 +\v 6 \w The|strong="H1697"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H1697"\w* \w wicked|strong="H7563"\w* \w are|strong="H7563"\w* \w about|strong="H1697"\w* \w lying|strong="H1697"\w* \w in|strong="H3477"\w* wait \w for|strong="H1697"\w* \w blood|strong="H1818"\w*, +\q2 \w but|strong="H7563"\w* \w the|strong="H1697"\w* \w speech|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H1697"\w* \w upright|strong="H3477"\w* \w rescues|strong="H5337"\w* \w them|strong="H5337"\w*. +\q1 +\v 7 \w The|strong="H5975"\w* \w wicked|strong="H7563"\w* \w are|strong="H7563"\w* \w overthrown|strong="H2015"\w*, \w and|strong="H1004"\w* \w are|strong="H7563"\w* \w no|strong="H5975"\w* \w more|strong="H7563"\w*, +\q2 \w but|strong="H7563"\w* \w the|strong="H5975"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H5975"\w* \w righteous|strong="H6662"\w* \w shall|strong="H1004"\w* \w stand|strong="H5975"\w*. +\q1 +\v 8 \w A|strong="H3068"\w* \w man|strong="H3820"\w* \w shall|strong="H3820"\w* \w be|strong="H1961"\w* \w commended|strong="H1984"\w* \w according|strong="H6310"\w* \w to|strong="H1961"\w* \w his|strong="H1961"\w* \w wisdom|strong="H3820"\w*, +\q2 \w but|strong="H1961"\w* \w he|strong="H6310"\w* who \w has|strong="H1961"\w* \w a|strong="H3068"\w* warped \w mind|strong="H3820"\w* \w shall|strong="H3820"\w* \w be|strong="H1961"\w* despised. +\q1 +\v 9 \w Better|strong="H2896"\w* \w is|strong="H2896"\w* he \w who|strong="H5650"\w* \w is|strong="H2896"\w* little known, \w and|strong="H3899"\w* \w has|strong="H5650"\w* \w a|strong="H3068"\w* \w servant|strong="H5650"\w*, +\q2 \w than|strong="H2896"\w* he \w who|strong="H5650"\w* \w honors|strong="H3513"\w* \w himself|strong="H3513"\w* \w and|strong="H3899"\w* \w lacks|strong="H2638"\w* \w bread|strong="H3899"\w*. +\q1 +\v 10 \w A|strong="H3068"\w* \w righteous|strong="H6662"\w* \w man|strong="H7563"\w* respects \w the|strong="H3045"\w* \w life|strong="H5315"\w* \w of|strong="H5315"\w* \w his|strong="H3045"\w* animal, +\q2 \w but|strong="H7563"\w* \w the|strong="H3045"\w* tender \w mercies|strong="H7356"\w* \w of|strong="H5315"\w* \w the|strong="H3045"\w* \w wicked|strong="H7563"\w* \w are|strong="H7563"\w* \w cruel|strong="H7563"\w*. +\q1 +\v 11 \w He|strong="H3820"\w* \w who|strong="H2638"\w* \w tills|strong="H5647"\w* \w his|strong="H5647"\w* land \w shall|strong="H3820"\w* \w have|strong="H7646"\w* \w plenty|strong="H7646"\w* \w of|strong="H3820"\w* \w bread|strong="H3899"\w*, +\q2 \w but|strong="H7291"\w* \w he|strong="H3820"\w* \w who|strong="H2638"\w* \w chases|strong="H7291"\w* fantasies \w is|strong="H3820"\w* \w void|strong="H2638"\w* \w of|strong="H3820"\w* \w understanding|strong="H3820"\w*. +\q1 +\v 12 \w The|strong="H5414"\w* \w wicked|strong="H7563"\w* \w desires|strong="H2530"\w* \w the|strong="H5414"\w* plunder \w of|strong="H7451"\w* \w evil|strong="H7451"\w* \w men|strong="H7563"\w*, +\q2 \w but|strong="H7563"\w* \w the|strong="H5414"\w* \w root|strong="H8328"\w* \w of|strong="H7451"\w* \w the|strong="H5414"\w* \w righteous|strong="H6662"\w* flourishes. +\q1 +\v 13 \w An|strong="H3318"\w* \w evil|strong="H7451"\w* \w man|strong="H6662"\w* \w is|strong="H6662"\w* trapped \w by|strong="H3318"\w* sinfulness \w of|strong="H3318"\w* \w lips|strong="H8193"\w*, +\q2 \w but|strong="H6662"\w* \w the|strong="H3318"\w* \w righteous|strong="H6662"\w* \w shall|strong="H6662"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w trouble|strong="H6869"\w*. +\q1 +\v 14 \w A|strong="H3068"\w* \w man|strong="H2896"\w* \w shall|strong="H3027"\w* \w be|strong="H3027"\w* \w satisfied|strong="H7646"\w* \w with|strong="H7646"\w* \w good|strong="H2896"\w* \w by|strong="H3027"\w* \w the|strong="H7725"\w* \w fruit|strong="H6529"\w* \w of|strong="H3027"\w* \w his|strong="H7725"\w* \w mouth|strong="H6310"\w*. +\q2 \w The|strong="H7725"\w* \w work|strong="H3027"\w* \w of|strong="H3027"\w* \w a|strong="H3068"\w* \w man|strong="H2896"\w*’s \w hands|strong="H3027"\w* \w shall|strong="H3027"\w* \w be|strong="H3027"\w* \w rewarded|strong="H7725"\w* \w to|strong="H7725"\w* \w him|strong="H3027"\w*. +\q1 +\v 15 \w The|strong="H8085"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w a|strong="H3068"\w* fool \w is|strong="H1870"\w* \w right|strong="H3477"\w* \w in|strong="H8085"\w* \w his|strong="H8085"\w* \w own|strong="H5869"\w* \w eyes|strong="H5869"\w*, +\q2 \w but|strong="H8085"\w* he \w who|strong="H2450"\w* \w is|strong="H1870"\w* \w wise|strong="H2450"\w* \w listens|strong="H8085"\w* \w to|strong="H8085"\w* \w counsel|strong="H6098"\w*. +\q1 +\v 16 \w A|strong="H3068"\w* fool shows \w his|strong="H3045"\w* \w annoyance|strong="H7036"\w* \w the|strong="H3117"\w* same \w day|strong="H3117"\w*, +\q2 \w but|strong="H3117"\w* one \w who|strong="H3045"\w* overlooks an insult \w is|strong="H3117"\w* \w prudent|strong="H6175"\w*. +\q1 +\v 17 He \w who|strong="H6664"\w* \w is|strong="H6664"\w* truthful testifies \w honestly|strong="H6664"\w*, +\q2 but \w a|strong="H3068"\w* \w false|strong="H8267"\w* \w witness|strong="H5707"\w* \w lies|strong="H8267"\w*. +\q1 +\v 18 \w There|strong="H3426"\w* \w is|strong="H3426"\w* \w one|strong="H3956"\w* \w who|strong="H2450"\w* \w speaks|strong="H3426"\w* rashly like \w the|strong="H3426"\w* piercing \w of|strong="H2719"\w* \w a|strong="H3068"\w* \w sword|strong="H2719"\w*, +\q2 but \w the|strong="H3426"\w* \w tongue|strong="H3956"\w* \w of|strong="H2719"\w* \w the|strong="H3426"\w* \w wise|strong="H2450"\w* heals. +\q1 +\v 19 Truth’s \w lips|strong="H8193"\w* \w will|strong="H5704"\w* \w be|strong="H8193"\w* \w established|strong="H3559"\w* \w forever|strong="H5704"\w*, +\q2 \w but|strong="H8193"\w* \w a|strong="H3068"\w* \w lying|strong="H8267"\w* \w tongue|strong="H3956"\w* \w is|strong="H3956"\w* \w only|strong="H5704"\w* \w momentary|strong="H5704"\w*. +\q1 +\v 20 \w Deceit|strong="H4820"\w* \w is|strong="H3820"\w* \w in|strong="H8057"\w* \w the|strong="H7965"\w* \w heart|strong="H3820"\w* \w of|strong="H3820"\w* those \w who|strong="H7965"\w* \w plot|strong="H2790"\w* \w evil|strong="H7451"\w*, +\q2 \w but|strong="H2790"\w* \w joy|strong="H8057"\w* comes \w to|strong="H3820"\w* \w the|strong="H7965"\w* promoters \w of|strong="H3820"\w* \w peace|strong="H7965"\w*. +\q1 +\v 21 \w No|strong="H3808"\w* \w mischief|strong="H7451"\w* \w shall|strong="H7563"\w* happen \w to|strong="H3808"\w* \w the|strong="H3605"\w* \w righteous|strong="H6662"\w*, +\q2 \w but|strong="H3808"\w* \w the|strong="H3605"\w* \w wicked|strong="H7563"\w* \w shall|strong="H7563"\w* \w be|strong="H3808"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w evil|strong="H7451"\w*. +\q1 +\v 22 \w Lying|strong="H8267"\w* \w lips|strong="H8193"\w* \w are|strong="H3068"\w* \w an|strong="H6213"\w* \w abomination|strong="H8441"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w but|strong="H3068"\w* \w those|strong="H6213"\w* \w who|strong="H3068"\w* \w do|strong="H6213"\w* \w the|strong="H6213"\w* truth \w are|strong="H3068"\w* \w his|strong="H3068"\w* \w delight|strong="H7522"\w*. +\q1 +\v 23 \w A|strong="H3068"\w* \w prudent|strong="H6175"\w* \w man|strong="H6175"\w* keeps \w his|strong="H7121"\w* \w knowledge|strong="H1847"\w*, +\q2 \w but|strong="H3820"\w* \w the|strong="H7121"\w* \w hearts|strong="H3820"\w* \w of|strong="H3820"\w* \w fools|strong="H3684"\w* \w proclaim|strong="H7121"\w* foolishness. +\q1 +\v 24 \w The|strong="H3027"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w diligent|strong="H2742"\w* ones \w shall|strong="H3027"\w* \w rule|strong="H4910"\w*, +\q2 \w but|strong="H1961"\w* laziness ends \w in|strong="H3027"\w* slave \w labor|strong="H4522"\w*. +\q1 +\v 25 \w Anxiety|strong="H1674"\w* \w in|strong="H1697"\w* \w a|strong="H3068"\w* \w man|strong="H2896"\w*’s \w heart|strong="H3820"\w* \w weighs|strong="H7812"\w* \w it|strong="H2896"\w* \w down|strong="H7812"\w*, +\q2 \w but|strong="H8055"\w* \w a|strong="H3068"\w* \w kind|strong="H2896"\w* \w word|strong="H1697"\w* \w makes|strong="H8055"\w* \w it|strong="H2896"\w* \w glad|strong="H8055"\w*. +\q1 +\v 26 \w A|strong="H3068"\w* \w righteous|strong="H6662"\w* person \w is|strong="H1870"\w* cautious \w in|strong="H1870"\w* friendship, +\q2 \w but|strong="H7563"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w the|strong="H1870"\w* \w wicked|strong="H7563"\w* \w leads|strong="H8582"\w* \w them|strong="H8582"\w* \w astray|strong="H8582"\w*. +\q1 +\v 27 \w The|strong="H3808"\w* \w slothful|strong="H7423"\w* \w man|strong="H7423"\w* doesn’t \w roast|strong="H2760"\w* \w his|strong="H3808"\w* \w game|strong="H6718"\w*, +\q2 \w but|strong="H3808"\w* \w the|strong="H3808"\w* possessions \w of|strong="H3808"\w* \w diligent|strong="H2742"\w* men \w are|strong="H3808"\w* prized. +\q1 +\v 28 \w In|strong="H1870"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w righteousness|strong="H6666"\w* \w is|strong="H1870"\w* \w life|strong="H2416"\w*; +\q2 \w in|strong="H1870"\w* its \w path|strong="H5410"\w* there \w is|strong="H1870"\w* no \w death|strong="H4194"\w*. +\c 13 +\q1 +\v 1 \w A|strong="H3068"\w* \w wise|strong="H2450"\w* \w son|strong="H1121"\w* \w listens|strong="H8085"\w* \w to|strong="H8085"\w* \w his|strong="H8085"\w* \w father|strong="H1121"\w*’s \w instruction|strong="H4148"\w*, +\q2 \w but|strong="H3808"\w* \w a|strong="H3068"\w* scoffer doesn’t \w listen|strong="H8085"\w* \w to|strong="H8085"\w* \w rebuke|strong="H1606"\w*. +\q1 +\v 2 By \w the|strong="H2896"\w* \w fruit|strong="H6529"\w* \w of|strong="H6310"\w* \w his|strong="H6310"\w* \w lips|strong="H6310"\w*, \w a|strong="H3068"\w* \w man|strong="H5315"\w* enjoys \w good|strong="H2896"\w* \w things|strong="H2896"\w*, +\q2 but \w the|strong="H2896"\w* unfaithful crave \w violence|strong="H2555"\w*. +\q1 +\v 3 \w He|strong="H5315"\w* \w who|strong="H5315"\w* \w guards|strong="H8104"\w* \w his|strong="H8104"\w* \w mouth|strong="H6310"\w* \w guards|strong="H8104"\w* \w his|strong="H8104"\w* \w soul|strong="H5315"\w*. +\q2 \w One|strong="H6310"\w* \w who|strong="H5315"\w* \w opens|strong="H6589"\w* \w wide|strong="H6589"\w* \w his|strong="H8104"\w* \w lips|strong="H8193"\w* comes \w to|strong="H8104"\w* \w ruin|strong="H4288"\w*. +\q1 +\v 4 \w The|strong="H1878"\w* \w soul|strong="H5315"\w* \w of|strong="H5315"\w* \w the|strong="H1878"\w* \w sluggard|strong="H6102"\w* desires, \w and|strong="H5315"\w* \w has|strong="H5315"\w* nothing, +\q2 but \w the|strong="H1878"\w* \w desire|strong="H5315"\w* \w of|strong="H5315"\w* \w the|strong="H1878"\w* \w diligent|strong="H2742"\w* \w shall|strong="H5315"\w* \w be|strong="H5315"\w* fully satisfied. +\q1 +\v 5 \w A|strong="H3068"\w* \w righteous|strong="H6662"\w* \w man|strong="H7563"\w* \w hates|strong="H8130"\w* \w lies|strong="H8267"\w*, +\q2 \w but|strong="H7563"\w* \w a|strong="H3068"\w* \w wicked|strong="H7563"\w* \w man|strong="H7563"\w* brings \w shame|strong="H2659"\w* \w and|strong="H1697"\w* \w disgrace|strong="H2659"\w*. +\q1 +\v 6 \w Righteousness|strong="H6666"\w* \w guards|strong="H5341"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w integrity|strong="H8537"\w*, +\q2 \w but|strong="H1870"\w* \w wickedness|strong="H7564"\w* \w overthrows|strong="H5557"\w* \w the|strong="H1870"\w* \w sinner|strong="H2403"\w*. +\q1 +\v 7 \w There|strong="H3426"\w* \w are|strong="H3426"\w* \w some|strong="H7227"\w* \w who|strong="H3605"\w* pretend \w to|strong="H7227"\w* \w be|strong="H3426"\w* \w rich|strong="H6238"\w*, \w yet|strong="H3605"\w* \w have|strong="H3426"\w* \w nothing|strong="H3605"\w*. +\q2 \w There|strong="H3426"\w* \w are|strong="H3426"\w* \w some|strong="H7227"\w* \w who|strong="H3605"\w* pretend \w to|strong="H7227"\w* \w be|strong="H3426"\w* \w poor|strong="H7326"\w*, \w yet|strong="H3605"\w* \w have|strong="H3426"\w* \w great|strong="H7227"\w* \w wealth|strong="H1952"\w*. +\q1 +\v 8 \w The|strong="H8085"\w* \w ransom|strong="H3724"\w* \w of|strong="H5315"\w* \w a|strong="H3068"\w* \w man|strong="H5315"\w*’s \w life|strong="H5315"\w* \w is|strong="H5315"\w* \w his|strong="H8085"\w* \w riches|strong="H6239"\w*, +\q2 \w but|strong="H3808"\w* \w the|strong="H8085"\w* \w poor|strong="H7326"\w* \w hear|strong="H8085"\w* \w no|strong="H3808"\w* threats. +\q1 +\v 9 \w The|strong="H8055"\w* \w light|strong="H5216"\w* \w of|strong="H5216"\w* \w the|strong="H8055"\w* \w righteous|strong="H6662"\w* shines brightly, +\q2 \w but|strong="H7563"\w* \w the|strong="H8055"\w* \w lamp|strong="H5216"\w* \w of|strong="H5216"\w* \w the|strong="H8055"\w* \w wicked|strong="H7563"\w* \w is|strong="H7563"\w* snuffed \w out|strong="H1846"\w*. +\q1 +\v 10 \w Pride|strong="H2087"\w* \w only|strong="H7535"\w* breeds quarrels, +\q2 \w but|strong="H7535"\w* \w wisdom|strong="H2451"\w* \w is|strong="H2451"\w* \w with|strong="H3289"\w* people who \w take|strong="H5414"\w* \w advice|strong="H3289"\w*. +\q1 +\v 11 \w Wealth|strong="H1952"\w* gained dishonestly \w dwindles|strong="H4591"\w* away, +\q2 \w but|strong="H5921"\w* \w he|strong="H3027"\w* who \w gathers|strong="H6908"\w* \w by|strong="H3027"\w* \w hand|strong="H3027"\w* \w makes|strong="H7235"\w* \w it|strong="H5921"\w* \w grow|strong="H7235"\w*. +\q1 +\v 12 \w Hope|strong="H8431"\w* \w deferred|strong="H4900"\w* \w makes|strong="H2470"\w* \w the|strong="H2470"\w* \w heart|strong="H3820"\w* \w sick|strong="H2470"\w*, +\q2 \w but|strong="H3820"\w* when longing \w is|strong="H3820"\w* fulfilled, \w it|strong="H3820"\w* \w is|strong="H3820"\w* \w a|strong="H3068"\w* \w tree|strong="H6086"\w* \w of|strong="H6086"\w* \w life|strong="H2416"\w*. +\q1 +\v 13 Whoever despises \w instruction|strong="H1697"\w* \w will|strong="H1697"\w* \w pay|strong="H7999"\w* \w for|strong="H1697"\w* \w it|strong="H1931"\w*, +\q2 \w but|strong="H1931"\w* \w he|strong="H1931"\w* \w who|strong="H1931"\w* respects \w a|strong="H3068"\w* \w command|strong="H4687"\w* \w will|strong="H1697"\w* \w be|strong="H1697"\w* \w rewarded|strong="H7999"\w*. +\q1 +\v 14 \w The|strong="H5493"\w* \w teaching|strong="H8451"\w* \w of|strong="H8451"\w* \w the|strong="H5493"\w* \w wise|strong="H2450"\w* \w is|strong="H8451"\w* \w a|strong="H3068"\w* \w spring|strong="H4726"\w* \w of|strong="H8451"\w* \w life|strong="H2416"\w*, +\q2 \w to|strong="H5493"\w* \w turn|strong="H5493"\w* \w from|strong="H5493"\w* \w the|strong="H5493"\w* \w snares|strong="H4170"\w* \w of|strong="H8451"\w* \w death|strong="H4194"\w*. +\q1 +\v 15 \w Good|strong="H2896"\w* \w understanding|strong="H7922"\w* \w wins|strong="H5414"\w* \w favor|strong="H2580"\w*, +\q2 \w but|strong="H1870"\w* \w the|strong="H5414"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w the|strong="H5414"\w* unfaithful \w is|strong="H2896"\w* hard. +\q1 +\v 16 \w Every|strong="H3605"\w* \w prudent|strong="H6175"\w* \w man|strong="H6175"\w* \w acts|strong="H6213"\w* \w from|strong="H3605"\w* \w knowledge|strong="H1847"\w*, +\q2 \w but|strong="H3605"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w* exposes folly. +\q1 +\v 17 \w A|strong="H3068"\w* \w wicked|strong="H7563"\w* \w messenger|strong="H4397"\w* \w falls|strong="H5307"\w* \w into|strong="H5307"\w* \w trouble|strong="H7451"\w*, +\q2 \w but|strong="H7563"\w* \w a|strong="H3068"\w* trustworthy \w envoy|strong="H6735"\w* gains \w healing|strong="H4832"\w*. +\q1 +\v 18 \w Poverty|strong="H7389"\w* \w and|strong="H8104"\w* \w shame|strong="H7036"\w* come \w to|strong="H8104"\w* \w him|strong="H4148"\w* \w who|strong="H8104"\w* refuses \w discipline|strong="H4148"\w*, +\q2 \w but|strong="H3513"\w* he \w who|strong="H8104"\w* \w heeds|strong="H8104"\w* \w correction|strong="H4148"\w* \w shall|strong="H8433"\w* be \w honored|strong="H3513"\w*. +\q1 +\v 19 Longing \w fulfilled|strong="H1961"\w* \w is|strong="H5315"\w* \w sweet|strong="H6149"\w* \w to|strong="H1961"\w* \w the|strong="H5493"\w* \w soul|strong="H5315"\w*, +\q2 \w but|strong="H1961"\w* \w fools|strong="H3684"\w* detest \w turning|strong="H5493"\w* \w from|strong="H5493"\w* \w evil|strong="H7451"\w*. +\q1 +\v 20 One \w who|strong="H7462"\w* \w walks|strong="H1980"\w* \w with|strong="H1980"\w* \w wise|strong="H2450"\w* \w men|strong="H2450"\w* grows \w wise|strong="H2450"\w*, +\q2 \w but|strong="H7489"\w* \w a|strong="H3068"\w* \w companion|strong="H7462"\w* \w of|strong="H7462"\w* \w fools|strong="H3684"\w* suffers \w harm|strong="H7489"\w*. +\q1 +\v 21 \w Misfortune|strong="H7451"\w* \w pursues|strong="H7291"\w* \w sinners|strong="H2400"\w*, +\q2 \w but|strong="H6662"\w* \w prosperity|strong="H2896"\w* \w rewards|strong="H7999"\w* \w the|strong="H7291"\w* \w righteous|strong="H6662"\w*. +\q1 +\v 22 \w A|strong="H3068"\w* \w good|strong="H2896"\w* \w man|strong="H6662"\w* \w leaves|strong="H5157"\w* \w an|strong="H5157"\w* \w inheritance|strong="H5157"\w* \w to|strong="H1121"\w* \w his|strong="H5157"\w* \w children|strong="H1121"\w*’s \w children|strong="H1121"\w*, +\q2 \w but|strong="H6662"\w* \w the|strong="H5157"\w* \w wealth|strong="H2428"\w* \w of|strong="H1121"\w* \w the|strong="H5157"\w* \w sinner|strong="H2398"\w* \w is|strong="H2896"\w* \w stored|strong="H6845"\w* \w for|strong="H1121"\w* \w the|strong="H5157"\w* \w righteous|strong="H6662"\w*. +\q1 +\v 23 \w An|strong="H3426"\w* \w abundance|strong="H7230"\w* \w of|strong="H7230"\w* food \w is|strong="H3426"\w* \w in|strong="H3808"\w* \w poor|strong="H7326"\w* \w people|strong="H3808"\w*’s fields, +\q2 \w but|strong="H3808"\w* \w injustice|strong="H3808"\w* sweeps \w it|strong="H3808"\w* \w away|strong="H5595"\w*. +\q1 +\v 24 \w One|strong="H1121"\w* \w who|strong="H1121"\w* spares \w the|strong="H1121"\w* \w rod|strong="H7626"\w* \w hates|strong="H8130"\w* \w his|strong="H2820"\w* \w son|strong="H1121"\w*, +\q2 but \w one|strong="H1121"\w* \w who|strong="H1121"\w* loves \w him|strong="H8130"\w* \w is|strong="H1121"\w* careful \w to|strong="H1121"\w* \w discipline|strong="H4148"\w* \w him|strong="H8130"\w*. +\q1 +\v 25 \w The|strong="H7563"\w* \w righteous|strong="H6662"\w* \w one|strong="H6662"\w* eats \w to|strong="H5315"\w* \w the|strong="H7563"\w* \w satisfying|strong="H7648"\w* \w of|strong="H5315"\w* \w his|strong="H7648"\w* \w soul|strong="H5315"\w*, +\q2 \w but|strong="H7563"\w* \w the|strong="H7563"\w* belly \w of|strong="H5315"\w* \w the|strong="H7563"\w* \w wicked|strong="H7563"\w* goes hungry. +\c 14 +\q1 +\v 1 Every \w wise|strong="H2454"\w* \w woman|strong="H1004"\w* \w builds|strong="H1129"\w* \w her|strong="H1129"\w* \w house|strong="H1004"\w*, +\q2 but \w the|strong="H1129"\w* foolish \w one|strong="H3027"\w* \w tears|strong="H2040"\w* \w it|strong="H1129"\w* \w down|strong="H2040"\w* \w with|strong="H1004"\w* \w her|strong="H1129"\w* \w own|strong="H3027"\w* \w hands|strong="H3027"\w*. +\q1 +\v 2 \w He|strong="H3068"\w* \w who|strong="H3068"\w* \w walks|strong="H1980"\w* \w in|strong="H1980"\w* \w his|strong="H3068"\w* \w uprightness|strong="H3476"\w* \w fears|strong="H3373"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w but|strong="H1870"\w* \w he|strong="H3068"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w perverse|strong="H3868"\w* \w in|strong="H1980"\w* \w his|strong="H3068"\w* \w ways|strong="H1870"\w* despises \w him|strong="H1980"\w*. +\q1 +\v 3 \w The|strong="H8104"\w* fool’s \w talk|strong="H8193"\w* brings \w a|strong="H3068"\w* \w rod|strong="H2415"\w* \w to|strong="H8104"\w* \w his|strong="H8104"\w* \w back|strong="H1346"\w*, +\q2 \w but|strong="H8193"\w* \w the|strong="H8104"\w* \w lips|strong="H8193"\w* \w of|strong="H6310"\w* \w the|strong="H8104"\w* \w wise|strong="H2450"\w* \w protect|strong="H8104"\w* \w them|strong="H8104"\w*. +\q1 +\v 4 Where no \w oxen|strong="H7794"\w* \w are|strong="H1249"\w*, \w the|strong="H3581"\w* crib \w is|strong="H3581"\w* \w clean|strong="H1249"\w*, +\q2 but \w much|strong="H7230"\w* \w increase|strong="H8393"\w* \w is|strong="H3581"\w* \w by|strong="H7230"\w* \w the|strong="H3581"\w* \w strength|strong="H3581"\w* \w of|strong="H7230"\w* \w the|strong="H3581"\w* \w ox|strong="H7794"\w*. +\q1 +\v 5 \w A|strong="H3068"\w* truthful \w witness|strong="H5707"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w lie|strong="H8267"\w*, +\q2 \w but|strong="H3808"\w* \w a|strong="H3068"\w* \w false|strong="H8267"\w* \w witness|strong="H5707"\w* pours \w out|strong="H3577"\w* \w lies|strong="H3577"\w*. +\q1 +\v 6 \w A|strong="H3068"\w* scoffer \w seeks|strong="H1245"\w* \w wisdom|strong="H2451"\w*, \w and|strong="H2451"\w* doesn’t \w find|strong="H1245"\w* \w it|strong="H7043"\w*, +\q2 \w but|strong="H1245"\w* \w knowledge|strong="H1847"\w* \w comes|strong="H1847"\w* easily \w to|strong="H1245"\w* \w a|strong="H3068"\w* discerning \w person|strong="H1245"\w*. +\q1 +\v 7 Stay \w away|strong="H3212"\w* \w from|strong="H3212"\w* \w a|strong="H3068"\w* \w foolish|strong="H3684"\w* \w man|strong="H3045"\w*, +\q2 \w for|strong="H3045"\w* \w you|strong="H3045"\w* won’t \w find|strong="H3045"\w* \w knowledge|strong="H1847"\w* \w on|strong="H3212"\w* \w his|strong="H3045"\w* \w lips|strong="H8193"\w*. +\q1 +\v 8 \w The|strong="H1870"\w* \w wisdom|strong="H2451"\w* \w of|strong="H1870"\w* \w the|strong="H1870"\w* \w prudent|strong="H6175"\w* \w is|strong="H1870"\w* \w to|strong="H1870"\w* think \w about|strong="H1870"\w* his \w way|strong="H1870"\w*, +\q2 \w but|strong="H1870"\w* \w the|strong="H1870"\w* folly \w of|strong="H1870"\w* \w fools|strong="H3684"\w* \w is|strong="H1870"\w* \w deceit|strong="H4820"\w*. +\q1 +\v 9 Fools \w mock|strong="H3887"\w* \w at|strong="H3887"\w* making atonement for sins, +\q2 but \w among|strong="H3477"\w* \w the|strong="H3477"\w* \w upright|strong="H3477"\w* \w there|strong="H3477"\w* \w is|strong="H3477"\w* \w good|strong="H7522"\w* \w will|strong="H7522"\w*. +\q1 +\v 10 \w The|strong="H3045"\w* \w heart|strong="H3820"\w* \w knows|strong="H3045"\w* \w its|strong="H3045"\w* \w own|strong="H5315"\w* \w bitterness|strong="H4787"\w* \w and|strong="H3045"\w* \w joy|strong="H8057"\w*; +\q2 \w he|strong="H3808"\w* \w will|strong="H5315"\w* \w not|strong="H3808"\w* \w share|strong="H6148"\w* these \w with|strong="H3045"\w* \w a|strong="H3068"\w* \w stranger|strong="H2114"\w*. +\q1 +\v 11 \w The|strong="H1004"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H1004"\w* \w wicked|strong="H7563"\w* \w will|strong="H7563"\w* \w be|strong="H7563"\w* \w overthrown|strong="H8045"\w*, +\q2 \w but|strong="H7563"\w* \w the|strong="H1004"\w* tent \w of|strong="H1004"\w* \w the|strong="H1004"\w* \w upright|strong="H3477"\w* \w will|strong="H7563"\w* \w flourish|strong="H6524"\w*. +\q1 +\v 12 \w There|strong="H3426"\w* \w is|strong="H3426"\w* \w a|strong="H3068"\w* \w way|strong="H1870"\w* \w which|strong="H3426"\w* seems \w right|strong="H3477"\w* \w to|strong="H6440"\w* \w a|strong="H3068"\w* \w man|strong="H6440"\w*, +\q2 \w but|strong="H1870"\w* \w in|strong="H3477"\w* \w the|strong="H6440"\w* end \w it|strong="H6440"\w* leads \w to|strong="H6440"\w* \w death|strong="H4194"\w*. +\q1 +\v 13 \w Even|strong="H1571"\w* \w in|strong="H1571"\w* \w laughter|strong="H7814"\w* \w the|strong="H1571"\w* \w heart|strong="H3820"\w* \w may|strong="H3820"\w* \w be|strong="H3820"\w* \w sorrowful|strong="H3510"\w*, +\q2 \w and|strong="H8057"\w* \w mirth|strong="H8057"\w* \w may|strong="H3820"\w* end \w in|strong="H1571"\w* \w heaviness|strong="H8424"\w*. +\q1 +\v 14 \w The|strong="H5921"\w* unfaithful \w will|strong="H3820"\w* \w be|strong="H3820"\w* repaid \w for|strong="H5921"\w* \w his|strong="H5921"\w* own \w ways|strong="H1870"\w*; +\q2 likewise \w a|strong="H3068"\w* \w good|strong="H2896"\w* \w man|strong="H2896"\w* \w will|strong="H3820"\w* \w be|strong="H3820"\w* rewarded \w for|strong="H5921"\w* \w his|strong="H5921"\w* \w ways|strong="H1870"\w*. +\q1 +\v 15 \w A|strong="H3068"\w* \w simple|strong="H6612"\w* \w man|strong="H6175"\w* believes \w everything|strong="H3605"\w*, +\q2 \w but|strong="H3605"\w* \w the|strong="H3605"\w* \w prudent|strong="H6175"\w* \w man|strong="H6175"\w* \w carefully|strong="H3605"\w* considers \w his|strong="H3605"\w* \w ways|strong="H1697"\w*. +\q1 +\v 16 \w A|strong="H3068"\w* \w wise|strong="H2450"\w* \w man|strong="H2450"\w* \w fears|strong="H3373"\w* \w and|strong="H2450"\w* shuns \w evil|strong="H7451"\w*, +\q2 \w but|strong="H7451"\w* \w the|strong="H5674"\w* \w fool|strong="H3684"\w* \w is|strong="H7451"\w* hot headed \w and|strong="H2450"\w* reckless. +\q1 +\v 17 \w He|strong="H6213"\w* \w who|strong="H6213"\w* \w is|strong="H4209"\w* quick \w to|strong="H6213"\w* \w become|strong="H6213"\w* angry \w will|strong="H6213"\w* \w commit|strong="H6213"\w* folly, +\q2 \w and|strong="H6213"\w* \w a|strong="H3068"\w* crafty \w man|strong="H7116"\w* \w is|strong="H4209"\w* \w hated|strong="H8130"\w*. +\q1 +\v 18 \w The|strong="H5157"\w* \w simple|strong="H6612"\w* \w inherit|strong="H5157"\w* \w folly|strong="H6612"\w*, +\q2 but \w the|strong="H5157"\w* \w prudent|strong="H6175"\w* \w are|strong="H6175"\w* \w crowned|strong="H3803"\w* \w with|strong="H3803"\w* \w knowledge|strong="H1847"\w*. +\q1 +\v 19 \w The|strong="H6440"\w* \w evil|strong="H7451"\w* \w bow|strong="H7817"\w* \w down|strong="H7817"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w good|strong="H2896"\w*, +\q2 \w and|strong="H6440"\w* \w the|strong="H6440"\w* \w wicked|strong="H7563"\w* \w at|strong="H5921"\w* \w the|strong="H6440"\w* \w gates|strong="H8179"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w righteous|strong="H6662"\w*. +\q1 +\v 20 \w The|strong="H1571"\w* \w poor|strong="H7326"\w* \w person|strong="H7227"\w* \w is|strong="H1571"\w* shunned \w even|strong="H1571"\w* \w by|strong="H1571"\w* \w his|strong="H8130"\w* own \w neighbor|strong="H7453"\w*, +\q2 \w but|strong="H1571"\w* \w the|strong="H1571"\w* \w rich|strong="H6223"\w* \w person|strong="H7227"\w* \w has|strong="H1571"\w* \w many|strong="H7227"\w* \w friends|strong="H7453"\w*. +\q1 +\v 21 \w He|strong="H2398"\w* \w who|strong="H6041"\w* despises \w his|strong="H2603"\w* \w neighbor|strong="H7453"\w* \w sins|strong="H2398"\w*, +\q2 but \w he|strong="H2398"\w* \w who|strong="H6041"\w* has \w pity|strong="H2603"\w* \w on|strong="H2603"\w* \w the|strong="H2398"\w* \w poor|strong="H6041"\w* \w is|strong="H2398"\w* blessed. +\q1 +\v 22 Don’t \w they|strong="H3808"\w* \w go|strong="H8582"\w* \w astray|strong="H8582"\w* \w who|strong="H2896"\w* \w plot|strong="H2790"\w* \w evil|strong="H7451"\w*? +\q2 \w But|strong="H3808"\w* \w love|strong="H2617"\w* \w and|strong="H2617"\w* \w faithfulness|strong="H2617"\w* belong \w to|strong="H2896"\w* those \w who|strong="H2896"\w* plan \w good|strong="H2896"\w*. +\q1 +\v 23 \w In|strong="H1697"\w* \w all|strong="H3605"\w* hard \w work|strong="H1697"\w* \w there|strong="H1961"\w* \w is|strong="H1697"\w* \w profit|strong="H4195"\w*, +\q2 \w but|strong="H1961"\w* \w the|strong="H3605"\w* \w talk|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w lips|strong="H8193"\w* leads \w only|strong="H3605"\w* \w to|strong="H1961"\w* \w poverty|strong="H4270"\w*. +\q1 +\v 24 The \w crown|strong="H5850"\w* \w of|strong="H5850"\w* the \w wise|strong="H2450"\w* \w is|strong="H3684"\w* their \w riches|strong="H6239"\w*, +\q2 but the folly \w of|strong="H5850"\w* \w fools|strong="H3684"\w* \w crowns|strong="H5850"\w* them with folly. +\q1 +\v 25 \w A|strong="H3068"\w* truthful \w witness|strong="H5707"\w* \w saves|strong="H5337"\w* \w souls|strong="H5315"\w*, +\q2 but \w a|strong="H3068"\w* \w false|strong="H4820"\w* \w witness|strong="H5707"\w* \w is|strong="H5315"\w* \w deceitful|strong="H4820"\w*. +\q1 +\v 26 \w In|strong="H3068"\w* \w the|strong="H3068"\w* \w fear|strong="H3374"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w secure|strong="H4009"\w* fortress, +\q2 \w and|strong="H1121"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w refuge|strong="H4268"\w* \w for|strong="H3068"\w* \w his|strong="H3068"\w* \w children|strong="H1121"\w*. +\q1 +\v 27 \w The|strong="H3068"\w* \w fear|strong="H3374"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w fountain|strong="H4726"\w* \w of|strong="H3068"\w* \w life|strong="H2416"\w*, +\q2 \w turning|strong="H5493"\w* \w people|strong="H4194"\w* \w from|strong="H5493"\w* \w the|strong="H3068"\w* \w snares|strong="H4170"\w* \w of|strong="H3068"\w* \w death|strong="H4194"\w*. +\q1 +\v 28 \w In|strong="H4428"\w* \w the|strong="H5971"\w* \w multitude|strong="H7230"\w* \w of|strong="H4428"\w* \w people|strong="H5971"\w* \w is|strong="H4428"\w* \w the|strong="H5971"\w* \w king|strong="H4428"\w*’s \w glory|strong="H1927"\w*, +\q2 \w but|strong="H5971"\w* \w in|strong="H4428"\w* \w the|strong="H5971"\w* lack \w of|strong="H4428"\w* \w people|strong="H5971"\w* \w is|strong="H4428"\w* \w the|strong="H5971"\w* \w destruction|strong="H4288"\w* \w of|strong="H4428"\w* \w the|strong="H5971"\w* \w prince|strong="H7333"\w*. +\q1 +\v 29 \w He|strong="H8394"\w* \w who|strong="H7227"\w* \w is|strong="H7307"\w* slow \w to|strong="H7307"\w* \w anger|strong="H7307"\w* \w has|strong="H7307"\w* \w great|strong="H7227"\w* \w understanding|strong="H8394"\w*, +\q2 \w but|strong="H7227"\w* \w he|strong="H8394"\w* \w who|strong="H7227"\w* \w has|strong="H7307"\w* \w a|strong="H3068"\w* quick \w temper|strong="H7307"\w* displays folly. +\q1 +\v 30 \w The|strong="H3820"\w* \w life|strong="H2416"\w* \w of|strong="H3820"\w* \w the|strong="H3820"\w* \w body|strong="H1320"\w* \w is|strong="H3820"\w* \w a|strong="H3068"\w* \w heart|strong="H3820"\w* at peace, +\q2 \w but|strong="H3820"\w* \w envy|strong="H7068"\w* rots \w the|strong="H3820"\w* \w bones|strong="H6106"\w*. +\q1 +\v 31 \w He|strong="H6213"\w* \w who|strong="H6213"\w* \w oppresses|strong="H6231"\w* \w the|strong="H6213"\w* \w poor|strong="H1800"\w* \w shows|strong="H6213"\w* contempt \w for|strong="H6213"\w* \w his|strong="H6213"\w* \w Maker|strong="H6213"\w*, +\q2 \w but|strong="H3513"\w* \w he|strong="H6213"\w* \w who|strong="H6213"\w* \w is|strong="H6213"\w* kind \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w needy|strong="H1800"\w* \w honors|strong="H3513"\w* \w him|strong="H6213"\w*. +\q1 +\v 32 \w The|strong="H4194"\w* \w wicked|strong="H7563"\w* \w is|strong="H7563"\w* brought \w down|strong="H1760"\w* \w in|strong="H6662"\w* his \w calamity|strong="H7451"\w*, +\q2 \w but|strong="H7563"\w* \w in|strong="H6662"\w* \w death|strong="H4194"\w*, \w the|strong="H4194"\w* \w righteous|strong="H6662"\w* \w has|strong="H7451"\w* \w a|strong="H3068"\w* \w refuge|strong="H2620"\w*. +\q1 +\v 33 \w Wisdom|strong="H2451"\w* \w rests|strong="H5117"\w* \w in|strong="H7130"\w* \w the|strong="H3045"\w* \w heart|strong="H3820"\w* \w of|strong="H3820"\w* one \w who|strong="H3045"\w* \w has|strong="H3820"\w* \w understanding|strong="H3820"\w*, +\q2 \w and|strong="H2451"\w* \w is|strong="H3820"\w* even \w made|strong="H3045"\w* \w known|strong="H3045"\w* \w in|strong="H7130"\w* \w the|strong="H3045"\w* \w inward|strong="H7130"\w* \w part|strong="H7130"\w* \w of|strong="H3820"\w* \w fools|strong="H3684"\w*. +\q1 +\v 34 \w Righteousness|strong="H6666"\w* \w exalts|strong="H7311"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w*, +\q2 but \w sin|strong="H2403"\w* \w is|strong="H2617"\w* \w a|strong="H3068"\w* \w disgrace|strong="H2617"\w* \w to|strong="H1471"\w* any \w people|strong="H3816"\w*. +\q1 +\v 35 \w The|strong="H1961"\w* \w king|strong="H4428"\w*’s \w favor|strong="H7522"\w* \w is|strong="H4428"\w* toward \w a|strong="H3068"\w* \w servant|strong="H5650"\w* \w who|strong="H5650"\w* deals \w wisely|strong="H7919"\w*, +\q2 \w but|strong="H1961"\w* \w his|strong="H1961"\w* \w wrath|strong="H5678"\w* \w is|strong="H4428"\w* toward \w one|strong="H1961"\w* \w who|strong="H5650"\w* causes shame. +\c 15 +\q1 +\v 1 \w A|strong="H3068"\w* \w gentle|strong="H7390"\w* \w answer|strong="H7725"\w* \w turns|strong="H7725"\w* \w away|strong="H7725"\w* \w wrath|strong="H2534"\w*, +\q2 \w but|strong="H7725"\w* \w a|strong="H3068"\w* \w harsh|strong="H6089"\w* \w word|strong="H1697"\w* \w stirs|strong="H5927"\w* \w up|strong="H5927"\w* \w anger|strong="H2534"\w*. +\q1 +\v 2 \w The|strong="H3190"\w* \w tongue|strong="H3956"\w* \w of|strong="H6310"\w* \w the|strong="H3190"\w* \w wise|strong="H2450"\w* commends \w knowledge|strong="H1847"\w*, +\q2 but \w the|strong="H3190"\w* \w mouths|strong="H6310"\w* \w of|strong="H6310"\w* \w fools|strong="H3684"\w* gush \w out|strong="H5042"\w* folly. +\q1 +\v 3 \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w* \w are|strong="H5869"\w* \w everywhere|strong="H3605"\w*, +\q2 keeping \w watch|strong="H6822"\w* \w on|strong="H3068"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w good|strong="H2896"\w*. +\q1 +\v 4 \w A|strong="H3068"\w* gentle \w tongue|strong="H3956"\w* \w is|strong="H7307"\w* \w a|strong="H3068"\w* \w tree|strong="H6086"\w* \w of|strong="H7307"\w* \w life|strong="H2416"\w*, +\q2 but deceit \w in|strong="H6086"\w* \w it|strong="H7307"\w* \w crushes|strong="H7667"\w* \w the|strong="H7667"\w* \w spirit|strong="H7307"\w*. +\q1 +\v 5 \w A|strong="H3068"\w* fool despises \w his|strong="H8104"\w* father’s \w correction|strong="H4148"\w*, +\q2 but he \w who|strong="H8104"\w* \w heeds|strong="H8104"\w* \w reproof|strong="H8433"\w* shows prudence. +\q1 +\v 6 \w In|strong="H1004"\w* \w the|strong="H1004"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H1004"\w* \w righteous|strong="H6662"\w* \w is|strong="H7563"\w* \w much|strong="H7227"\w* \w treasure|strong="H2633"\w*, +\q2 \w but|strong="H7563"\w* \w the|strong="H1004"\w* \w income|strong="H8393"\w* \w of|strong="H1004"\w* \w the|strong="H1004"\w* \w wicked|strong="H7563"\w* \w brings|strong="H5916"\w* \w trouble|strong="H5916"\w*. +\q1 +\v 7 \w The|strong="H3651"\w* \w lips|strong="H8193"\w* \w of|strong="H3820"\w* \w the|strong="H3651"\w* \w wise|strong="H2450"\w* \w spread|strong="H2219"\w* \w knowledge|strong="H1847"\w*; +\q2 \w not|strong="H3808"\w* \w so|strong="H3651"\w* \w with|strong="H3651"\w* \w the|strong="H3651"\w* \w heart|strong="H3820"\w* \w of|strong="H3820"\w* \w fools|strong="H3684"\w*. +\q1 +\v 8 \w The|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w made|strong="H3068"\w* \w by|strong="H3068"\w* \w the|strong="H3068"\w* \w wicked|strong="H7563"\w* \w is|strong="H3068"\w* \w an|strong="H3068"\w* \w abomination|strong="H8441"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w but|strong="H7563"\w* \w the|strong="H3068"\w* \w prayer|strong="H8605"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w upright|strong="H3477"\w* \w is|strong="H3068"\w* \w his|strong="H3068"\w* \w delight|strong="H7522"\w*. +\q1 +\v 9 \w The|strong="H3068"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w wicked|strong="H7563"\w* \w is|strong="H3068"\w* \w an|strong="H3068"\w* \w abomination|strong="H8441"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w but|strong="H7563"\w* \w he|strong="H3068"\w* loves \w him|strong="H7291"\w* \w who|strong="H3068"\w* \w follows|strong="H7291"\w* \w after|strong="H7291"\w* \w righteousness|strong="H6666"\w*. +\q1 +\v 10 \w There|strong="H5800"\w* \w is|strong="H7451"\w* stern \w discipline|strong="H4148"\w* \w for|strong="H4191"\w* one \w who|strong="H8130"\w* \w forsakes|strong="H5800"\w* \w the|strong="H5800"\w* way. +\q2 \w Whoever|strong="H4191"\w* \w hates|strong="H8130"\w* \w reproof|strong="H8433"\w* \w shall|strong="H7451"\w* \w die|strong="H4191"\w*. +\q1 +\v 11 \w Sheol|strong="H7585"\w*\f + \fr 15:11 \ft Sheol is the place of the dead.\f* \w and|strong="H1121"\w* Abaddon \w are|strong="H1121"\w* \w before|strong="H5048"\w* \w Yahweh|strong="H3068"\w*— +\q2 \w how|strong="H3588"\w* much \w more|strong="H3588"\w* \w then|strong="H3588"\w* \w the|strong="H3588"\w* \w hearts|strong="H3826"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*! +\q1 +\v 12 \w A|strong="H3068"\w* scoffer doesn’t love \w to|strong="H3212"\w* \w be|strong="H3808"\w* \w reproved|strong="H3198"\w*; +\q2 \w he|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H3808"\w* \w wise|strong="H2450"\w*. +\q1 +\v 13 \w A|strong="H3068"\w* \w glad|strong="H8056"\w* \w heart|strong="H3820"\w* \w makes|strong="H3190"\w* \w a|strong="H3068"\w* \w cheerful|strong="H3190"\w* \w face|strong="H6440"\w*, +\q2 \w but|strong="H3820"\w* \w an|strong="H6440"\w* aching \w heart|strong="H3820"\w* breaks \w the|strong="H6440"\w* \w spirit|strong="H7307"\w*. +\q1 +\v 14 \w The|strong="H6440"\w* \w heart|strong="H3820"\w* \w of|strong="H6440"\w* one \w who|strong="H7462"\w* \w has|strong="H3820"\w* \w understanding|strong="H3820"\w* \w seeks|strong="H1245"\w* \w knowledge|strong="H1847"\w*, +\q2 \w but|strong="H3820"\w* \w the|strong="H6440"\w* mouths \w of|strong="H6440"\w* \w fools|strong="H3684"\w* \w feed|strong="H7462"\w* \w on|strong="H7462"\w* folly. +\q1 +\v 15 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w afflicted|strong="H6041"\w* \w are|strong="H3117"\w* \w wretched|strong="H7451"\w*, +\q2 \w but|strong="H7451"\w* \w one|strong="H3605"\w* \w who|strong="H3605"\w* \w has|strong="H3820"\w* \w a|strong="H3068"\w* \w cheerful|strong="H2896"\w* \w heart|strong="H3820"\w* enjoys \w a|strong="H3068"\w* \w continual|strong="H8548"\w* \w feast|strong="H4960"\w*. +\q1 +\v 16 \w Better|strong="H2896"\w* \w is|strong="H3068"\w* \w little|strong="H4592"\w*, \w with|strong="H3068"\w* \w the|strong="H3068"\w* \w fear|strong="H3374"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w than|strong="H2896"\w* \w great|strong="H7227"\w* treasure \w with|strong="H3068"\w* \w trouble|strong="H4103"\w*. +\q1 +\v 17 \w Better|strong="H2896"\w* \w is|strong="H2896"\w* \w a|strong="H3068"\w* dinner \w of|strong="H2896"\w* \w herbs|strong="H3419"\w*, \w where|strong="H8033"\w* love \w is|strong="H2896"\w*, +\q2 \w than|strong="H2896"\w* \w a|strong="H3068"\w* fattened calf \w with|strong="H8033"\w* \w hatred|strong="H8135"\w*. +\q1 +\v 18 \w A|strong="H3068"\w* \w wrathful|strong="H2534"\w* man \w stirs|strong="H1624"\w* \w up|strong="H1624"\w* \w contention|strong="H4066"\w*, +\q2 but one who \w is|strong="H2534"\w* slow \w to|strong="H2534"\w* \w anger|strong="H2534"\w* appeases \w strife|strong="H7379"\w*. +\q1 +\v 19 \w The|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w the|strong="H1870"\w* \w sluggard|strong="H6102"\w* \w is|strong="H1870"\w* \w like|strong="H1870"\w* \w a|strong="H3068"\w* thorn patch, +\q2 \w but|strong="H1870"\w* \w the|strong="H1870"\w* \w path|strong="H1870"\w* \w of|strong="H1870"\w* \w the|strong="H1870"\w* \w upright|strong="H3477"\w* \w is|strong="H1870"\w* \w a|strong="H3068"\w* \w highway|strong="H1870"\w*. +\q1 +\v 20 \w A|strong="H3068"\w* \w wise|strong="H2450"\w* \w son|strong="H1121"\w* \w makes|strong="H8055"\w* \w a|strong="H3068"\w* \w father|strong="H1121"\w* \w glad|strong="H8055"\w*, +\q2 \w but|strong="H8055"\w* \w a|strong="H3068"\w* \w foolish|strong="H3684"\w* \w man|strong="H2450"\w* despises \w his|strong="H8055"\w* mother. +\q1 +\v 21 Folly \w is|strong="H3820"\w* \w joy|strong="H8057"\w* \w to|strong="H3212"\w* one \w who|strong="H2638"\w* \w is|strong="H3820"\w* \w void|strong="H2638"\w* \w of|strong="H3820"\w* \w wisdom|strong="H3820"\w*, +\q2 \w but|strong="H3820"\w* \w a|strong="H3068"\w* \w man|strong="H3820"\w* \w of|strong="H3820"\w* \w understanding|strong="H8394"\w* keeps \w his|strong="H3212"\w* \w way|strong="H3212"\w* \w straight|strong="H3474"\w*. +\q1 +\v 22 Where \w there|strong="H7230"\w* \w is|strong="H7230"\w* \w no|strong="H6965"\w* \w counsel|strong="H3289"\w*, \w plans|strong="H4284"\w* \w fail|strong="H6565"\w*; +\q2 but \w in|strong="H6965"\w* \w a|strong="H3068"\w* \w multitude|strong="H7230"\w* \w of|strong="H7230"\w* \w counselors|strong="H3289"\w* \w they|strong="H3289"\w* \w are|strong="H4284"\w* \w established|strong="H6965"\w*. +\q1 +\v 23 \w Joy|strong="H8057"\w* comes \w to|strong="H6256"\w* \w a|strong="H3068"\w* \w man|strong="H2896"\w* \w with|strong="H1697"\w* \w the|strong="H1697"\w* \w reply|strong="H1697"\w* \w of|strong="H1697"\w* \w his|strong="H6310"\w* \w mouth|strong="H6310"\w*. +\q2 \w How|strong="H4100"\w* \w good|strong="H2896"\w* \w is|strong="H4100"\w* \w a|strong="H3068"\w* \w word|strong="H1697"\w* \w at|strong="H2896"\w* \w the|strong="H1697"\w* \w right|strong="H2896"\w* \w time|strong="H6256"\w*! +\q1 +\v 24 \w The|strong="H5493"\w* path \w of|strong="H4616"\w* \w life|strong="H2416"\w* \w leads|strong="H2416"\w* \w upward|strong="H4605"\w* \w for|strong="H4616"\w* \w the|strong="H5493"\w* \w wise|strong="H7919"\w*, +\q2 \w to|strong="H4616"\w* \w keep|strong="H5493"\w* \w him|strong="H7585"\w* \w from|strong="H5493"\w* going \w downward|strong="H4295"\w* \w to|strong="H4616"\w* \w Sheol|strong="H7585"\w*.\f + \fr 15:24 \ft Sheol is the place of the dead.\f* +\q1 +\v 25 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* uproot \w the|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w proud|strong="H1343"\w*, +\q2 \w but|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* keep \w the|strong="H3068"\w* widow’s \w borders|strong="H1366"\w* intact. +\q1 +\v 26 \w Yahweh|strong="H3068"\w* detests \w the|strong="H3068"\w* \w thoughts|strong="H4284"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w wicked|strong="H7451"\w*, +\q2 \w but|strong="H7451"\w* \w the|strong="H3068"\w* \w thoughts|strong="H4284"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w pure|strong="H2889"\w* \w are|strong="H3068"\w* pleasing. +\q1 +\v 27 \w He|strong="H1004"\w* \w who|strong="H8130"\w* \w is|strong="H1004"\w* \w greedy|strong="H1214"\w* \w for|strong="H1004"\w* \w gain|strong="H1215"\w* \w troubles|strong="H5916"\w* \w his|strong="H8130"\w* own \w house|strong="H1004"\w*, +\q2 but \w he|strong="H1004"\w* \w who|strong="H8130"\w* \w hates|strong="H8130"\w* \w bribes|strong="H4979"\w* \w will|strong="H1004"\w* \w live|strong="H2421"\w*. +\q1 +\v 28 \w The|strong="H6030"\w* \w heart|strong="H3820"\w* \w of|strong="H6310"\w* \w the|strong="H6030"\w* \w righteous|strong="H6662"\w* weighs \w answers|strong="H6030"\w*, +\q2 \w but|strong="H7563"\w* \w the|strong="H6030"\w* \w mouth|strong="H6310"\w* \w of|strong="H6310"\w* \w the|strong="H6030"\w* \w wicked|strong="H7563"\w* gushes \w out|strong="H5042"\w* \w evil|strong="H7451"\w*. +\q1 +\v 29 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w far|strong="H7350"\w* \w from|strong="H8085"\w* \w the|strong="H8085"\w* \w wicked|strong="H7563"\w*, +\q2 \w but|strong="H7563"\w* \w he|strong="H3068"\w* \w hears|strong="H8085"\w* \w the|strong="H8085"\w* \w prayer|strong="H8605"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* \w righteous|strong="H6662"\w*. +\q1 +\v 30 \w The|strong="H5869"\w* \w light|strong="H3974"\w* \w of|strong="H5869"\w* \w the|strong="H5869"\w* \w eyes|strong="H5869"\w* \w rejoices|strong="H8055"\w* \w the|strong="H5869"\w* \w heart|strong="H3820"\w*. +\q2 \w Good|strong="H2896"\w* \w news|strong="H8052"\w* gives health \w to|strong="H3820"\w* \w the|strong="H5869"\w* \w bones|strong="H6106"\w*. +\q1 +\v 31 \w The|strong="H8085"\w* \w ear|strong="H8085"\w* \w that|strong="H8085"\w* \w listens|strong="H8085"\w* \w to|strong="H8085"\w* \w reproof|strong="H8433"\w* \w lives|strong="H2416"\w*, +\q2 \w and|strong="H8085"\w* \w will|strong="H2450"\w* \w be|strong="H2416"\w* \w at|strong="H3885"\w* home \w among|strong="H7130"\w* \w the|strong="H8085"\w* \w wise|strong="H2450"\w*. +\q1 +\v 32 \w He|strong="H5315"\w* \w who|strong="H5315"\w* refuses \w correction|strong="H4148"\w* \w despises|strong="H3988"\w* \w his|strong="H8085"\w* \w own|strong="H5315"\w* \w soul|strong="H5315"\w*, +\q2 \w but|strong="H8085"\w* \w he|strong="H5315"\w* \w who|strong="H5315"\w* \w listens|strong="H8085"\w* \w to|strong="H3820"\w* \w reproof|strong="H8433"\w* \w gets|strong="H7069"\w* \w understanding|strong="H3820"\w*. +\q1 +\v 33 \w The|strong="H6440"\w* \w fear|strong="H3374"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* teaches \w wisdom|strong="H2451"\w*. +\q2 \w Before|strong="H6440"\w* \w honor|strong="H3519"\w* \w is|strong="H3068"\w* \w humility|strong="H6038"\w*. +\c 16 +\q1 +\v 1 \w The|strong="H3068"\w* \w plans|strong="H4633"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w heart|strong="H3820"\w* belong \w to|strong="H3068"\w* \w man|strong="H3820"\w*, +\q2 \w but|strong="H3068"\w* \w the|strong="H3068"\w* \w answer|strong="H4617"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w tongue|strong="H3956"\w* \w is|strong="H3068"\w* \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 2 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w ways|strong="H1870"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w are|strong="H5869"\w* \w clean|strong="H2134"\w* \w in|strong="H3068"\w* \w his|strong="H3605"\w* \w own|strong="H5869"\w* \w eyes|strong="H5869"\w*, +\q2 \w but|strong="H1870"\w* \w Yahweh|strong="H3068"\w* \w weighs|strong="H8505"\w* \w the|strong="H3605"\w* \w motives|strong="H7307"\w*. +\q1 +\v 3 \w Commit|strong="H1556"\w* \w your|strong="H3068"\w* \w deeds|strong="H4639"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w plans|strong="H4284"\w* \w shall|strong="H3068"\w* succeed. +\q1 +\v 4 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w made|strong="H6466"\w* \w everything|strong="H3605"\w* \w for|strong="H3068"\w* \w its|strong="H3605"\w* own end— +\q2 \w yes|strong="H1571"\w*, \w even|strong="H1571"\w* \w the|strong="H3605"\w* \w wicked|strong="H7563"\w* \w for|strong="H3068"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w evil|strong="H7451"\w*. +\q1 +\v 5 \w Everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3068"\w* \w proud|strong="H1362"\w* \w in|strong="H3068"\w* \w heart|strong="H3820"\w* \w is|strong="H3068"\w* \w an|strong="H3068"\w* \w abomination|strong="H8441"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*; +\q2 \w they|strong="H3068"\w* \w shall|strong="H3068"\w* \w certainly|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w unpunished|strong="H5352"\w*. +\q1 +\v 6 \w By|strong="H3068"\w* \w mercy|strong="H2617"\w* \w and|strong="H3068"\w* truth \w iniquity|strong="H5771"\w* \w is|strong="H3068"\w* \w atoned|strong="H3722"\w* \w for|strong="H3068"\w*. +\q2 \w By|strong="H3068"\w* \w the|strong="H3068"\w* \w fear|strong="H3374"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w men|strong="H7451"\w* \w depart|strong="H5493"\w* \w from|strong="H5493"\w* \w evil|strong="H7451"\w*. +\q1 +\v 7 \w When|strong="H3068"\w* \w a|strong="H3068"\w* man’s \w ways|strong="H1870"\w* \w please|strong="H7521"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w he|strong="H3068"\w* \w makes|strong="H3068"\w* \w even|strong="H1571"\w* \w his|strong="H3068"\w* enemies \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w at|strong="H3068"\w* \w peace|strong="H7999"\w* \w with|strong="H3068"\w* \w him|strong="H1870"\w*. +\q1 +\v 8 \w Better|strong="H2896"\w* \w is|strong="H2896"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w with|strong="H4941"\w* \w righteousness|strong="H6666"\w*, +\q2 \w than|strong="H2896"\w* \w great|strong="H7230"\w* \w revenues|strong="H8393"\w* \w with|strong="H4941"\w* \w injustice|strong="H3808"\w*. +\q1 +\v 9 \w A|strong="H3068"\w* \w man|strong="H3820"\w*’s \w heart|strong="H3820"\w* \w plans|strong="H2803"\w* \w his|strong="H3068"\w* \w course|strong="H1870"\w*, +\q2 \w but|strong="H1870"\w* \w Yahweh|strong="H3068"\w* \w directs|strong="H3559"\w* \w his|strong="H3068"\w* \w steps|strong="H6806"\w*. +\q1 +\v 10 Inspired \w judgments|strong="H4941"\w* \w are|strong="H8193"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w lips|strong="H8193"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*. +\q2 \w He|strong="H3808"\w* \w shall|strong="H4428"\w* \w not|strong="H3808"\w* betray \w his|strong="H5921"\w* \w mouth|strong="H6310"\w*. +\q1 +\v 11 \w Honest|strong="H4941"\w* \w balances|strong="H3976"\w* \w and|strong="H3068"\w* \w scales|strong="H3976"\w* \w are|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s; +\q2 \w all|strong="H3605"\w* \w the|strong="H3605"\w* weights \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w bag|strong="H3599"\w* \w are|strong="H3068"\w* \w his|strong="H3605"\w* \w work|strong="H4639"\w*. +\q1 +\v 12 \w It|strong="H3588"\w* \w is|strong="H4428"\w* \w an|strong="H6213"\w* \w abomination|strong="H8441"\w* \w for|strong="H3588"\w* \w kings|strong="H4428"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w* wrong, +\q2 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w throne|strong="H3678"\w* \w is|strong="H4428"\w* \w established|strong="H3559"\w* \w by|strong="H3559"\w* \w righteousness|strong="H6666"\w*. +\q1 +\v 13 \w Righteous|strong="H6664"\w* \w lips|strong="H8193"\w* \w are|strong="H8193"\w* \w the|strong="H1696"\w* \w delight|strong="H7522"\w* \w of|strong="H4428"\w* \w kings|strong="H4428"\w*. +\q2 \w They|strong="H7522"\w* value \w one|strong="H3477"\w* \w who|strong="H4428"\w* \w speaks|strong="H1696"\w* \w the|strong="H1696"\w* truth. +\q1 +\v 14 \w The|strong="H4194"\w* \w king|strong="H4428"\w*’s \w wrath|strong="H2534"\w* \w is|strong="H4428"\w* \w a|strong="H3068"\w* \w messenger|strong="H4397"\w* \w of|strong="H4428"\w* \w death|strong="H4194"\w*, +\q2 \w but|strong="H4428"\w* \w a|strong="H3068"\w* \w wise|strong="H2450"\w* \w man|strong="H2450"\w* \w will|strong="H4428"\w* \w pacify|strong="H3722"\w* \w it|strong="H3722"\w*. +\q1 +\v 15 \w In|strong="H4428"\w* \w the|strong="H6440"\w* light \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w face|strong="H6440"\w* \w is|strong="H4428"\w* \w life|strong="H2416"\w*. +\q2 \w His|strong="H6440"\w* \w favor|strong="H7522"\w* \w is|strong="H4428"\w* \w like|strong="H2416"\w* \w a|strong="H3068"\w* \w cloud|strong="H5645"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w spring|strong="H4456"\w* \w rain|strong="H4456"\w*. +\q1 +\v 16 \w How|strong="H4100"\w* \w much|strong="H4100"\w* \w better|strong="H2896"\w* \w it|strong="H2896"\w* \w is|strong="H4100"\w* \w to|strong="H2896"\w* \w get|strong="H7069"\w* \w wisdom|strong="H2451"\w* \w than|strong="H2896"\w* \w gold|strong="H2742"\w*! +\q2 Yes, \w to|strong="H2896"\w* \w get|strong="H7069"\w* understanding \w is|strong="H4100"\w* \w to|strong="H2896"\w* \w be|strong="H2451"\w* chosen rather \w than|strong="H2896"\w* \w silver|strong="H3701"\w*. +\q1 +\v 17 \w The|strong="H8104"\w* \w highway|strong="H4546"\w* \w of|strong="H1870"\w* \w the|strong="H8104"\w* \w upright|strong="H3477"\w* \w is|strong="H5315"\w* \w to|strong="H8104"\w* \w depart|strong="H5493"\w* \w from|strong="H5493"\w* \w evil|strong="H7451"\w*. +\q2 \w He|strong="H5315"\w* \w who|strong="H5315"\w* \w keeps|strong="H8104"\w* \w his|strong="H8104"\w* \w way|strong="H1870"\w* \w preserves|strong="H8104"\w* \w his|strong="H8104"\w* \w soul|strong="H5315"\w*. +\q1 +\v 18 \w Pride|strong="H1347"\w* \w goes|strong="H6440"\w* \w before|strong="H6440"\w* \w destruction|strong="H7667"\w*, +\q2 \w and|strong="H6440"\w* \w an|strong="H6440"\w* arrogant \w spirit|strong="H7307"\w* \w before|strong="H6440"\w* \w a|strong="H3068"\w* \w fall|strong="H3783"\w*. +\q1 +\v 19 \w It|strong="H7307"\w* \w is|strong="H2896"\w* \w better|strong="H2896"\w* \w to|strong="H2896"\w* \w be|strong="H7307"\w* \w of|strong="H7307"\w* \w a|strong="H3068"\w* \w lowly|strong="H8217"\w* \w spirit|strong="H7307"\w* \w with|strong="H6041"\w* \w the|strong="H2505"\w* \w poor|strong="H6041"\w*, +\q2 \w than|strong="H2896"\w* \w to|strong="H2896"\w* \w divide|strong="H2505"\w* \w the|strong="H2505"\w* \w plunder|strong="H7998"\w* \w with|strong="H6041"\w* \w the|strong="H2505"\w* \w proud|strong="H1343"\w*. +\q1 +\v 20 \w He|strong="H3068"\w* \w who|strong="H3068"\w* heeds \w the|strong="H5921"\w* \w Word|strong="H1697"\w* \w finds|strong="H4672"\w* \w prosperity|strong="H2896"\w*. +\q2 \w Whoever|strong="H7919"\w* trusts \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* blessed. +\q1 +\v 21 \w The|strong="H7121"\w* \w wise|strong="H2450"\w* \w in|strong="H7121"\w* \w heart|strong="H3820"\w* \w shall|strong="H3820"\w* \w be|strong="H3820"\w* \w called|strong="H7121"\w* prudent. +\q2 Pleasantness \w of|strong="H3820"\w* \w the|strong="H7121"\w* \w lips|strong="H8193"\w* promotes \w instruction|strong="H3948"\w*. +\q1 +\v 22 \w Understanding|strong="H7922"\w* \w is|strong="H1167"\w* \w a|strong="H3068"\w* \w fountain|strong="H4726"\w* \w of|strong="H1167"\w* \w life|strong="H2416"\w* \w to|strong="H2416"\w* \w one|strong="H2416"\w* \w who|strong="H1167"\w* \w has|strong="H1167"\w* it, +\q2 but \w the|strong="H7922"\w* \w punishment|strong="H4148"\w* \w of|strong="H1167"\w* fools \w is|strong="H1167"\w* their folly. +\q1 +\v 23 \w The|strong="H5921"\w* \w heart|strong="H3820"\w* \w of|strong="H6310"\w* \w the|strong="H5921"\w* \w wise|strong="H2450"\w* \w instructs|strong="H7919"\w* \w his|strong="H5921"\w* \w mouth|strong="H6310"\w*, +\q2 \w and|strong="H6310"\w* \w adds|strong="H3254"\w* \w learning|strong="H3948"\w* \w to|strong="H5921"\w* \w his|strong="H5921"\w* \w lips|strong="H8193"\w*. +\q1 +\v 24 \w Pleasant|strong="H5278"\w* words \w are|strong="H6106"\w* \w a|strong="H3068"\w* \w honeycomb|strong="H6688"\w*, +\q2 \w sweet|strong="H4966"\w* \w to|strong="H5315"\w* the \w soul|strong="H5315"\w*, \w and|strong="H5315"\w* \w health|strong="H4832"\w* \w to|strong="H5315"\w* the \w bones|strong="H6106"\w*. +\q1 +\v 25 \w There|strong="H3426"\w* \w is|strong="H3426"\w* \w a|strong="H3068"\w* \w way|strong="H1870"\w* \w which|strong="H3426"\w* seems \w right|strong="H3477"\w* \w to|strong="H6440"\w* \w a|strong="H3068"\w* \w man|strong="H6440"\w*, +\q2 \w but|strong="H1870"\w* \w in|strong="H3477"\w* \w the|strong="H6440"\w* end \w it|strong="H6440"\w* leads \w to|strong="H6440"\w* \w death|strong="H4194"\w*. +\q1 +\v 26 \w The|strong="H5921"\w* \w appetite|strong="H5315"\w* \w of|strong="H6310"\w* \w the|strong="H5921"\w* \w laboring|strong="H6001"\w* \w man|strong="H5315"\w* \w labors|strong="H6001"\w* \w for|strong="H3588"\w* \w him|strong="H5921"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H5921"\w* \w mouth|strong="H6310"\w* urges \w him|strong="H5921"\w* \w on|strong="H5921"\w*. +\q1 +\v 27 \w A|strong="H3068"\w* \w worthless|strong="H1100"\w* \w man|strong="H7451"\w* devises \w mischief|strong="H7451"\w*. +\q2 \w His|strong="H5921"\w* \w speech|strong="H8193"\w* \w is|strong="H7451"\w* \w like|strong="H5921"\w* \w a|strong="H3068"\w* scorching fire. +\q1 +\v 28 \w A|strong="H3068"\w* \w perverse|strong="H8419"\w* man stirs \w up|strong="H7971"\w* \w strife|strong="H4066"\w*. +\q2 \w A|strong="H3068"\w* whisperer \w separates|strong="H6504"\w* close \w friends|strong="H6504"\w*. +\q1 +\v 29 \w A|strong="H3068"\w* \w man|strong="H2896"\w* \w of|strong="H1870"\w* \w violence|strong="H2555"\w* \w entices|strong="H6601"\w* \w his|strong="H3808"\w* \w neighbor|strong="H7453"\w*, +\q2 \w and|strong="H3212"\w* leads \w him|strong="H2896"\w* \w in|strong="H3212"\w* \w a|strong="H3068"\w* \w way|strong="H1870"\w* \w that|strong="H3808"\w* \w is|strong="H2896"\w* \w not|strong="H3808"\w* \w good|strong="H2896"\w*. +\q1 +\v 30 One who \w winks|strong="H7169"\w* \w his|strong="H2803"\w* \w eyes|strong="H5869"\w* \w to|strong="H2803"\w* \w plot|strong="H2803"\w* perversities, +\q2 one who \w compresses|strong="H7169"\w* \w his|strong="H2803"\w* \w lips|strong="H8193"\w*, \w is|strong="H7451"\w* bent \w on|strong="H7451"\w* \w evil|strong="H7451"\w*. +\q1 +\v 31 \w Gray|strong="H7872"\w* \w hair|strong="H7872"\w* \w is|strong="H1870"\w* \w a|strong="H3068"\w* \w crown|strong="H5850"\w* \w of|strong="H1870"\w* \w glory|strong="H8597"\w*. +\q2 \w It|strong="H4672"\w* \w is|strong="H1870"\w* attained \w by|strong="H1870"\w* \w a|strong="H3068"\w* life \w of|strong="H1870"\w* \w righteousness|strong="H6666"\w*. +\q1 +\v 32 \w One|strong="H1368"\w* \w who|strong="H1368"\w* \w is|strong="H2896"\w* slow \w to|strong="H5892"\w* \w anger|strong="H7307"\w* \w is|strong="H2896"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w the|strong="H3920"\w* \w mighty|strong="H1368"\w*; +\q2 \w one|strong="H1368"\w* \w who|strong="H1368"\w* \w rules|strong="H4910"\w* \w his|strong="H4910"\w* \w spirit|strong="H7307"\w*, \w than|strong="H2896"\w* \w he|strong="H5892"\w* \w who|strong="H1368"\w* \w takes|strong="H3920"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w*. +\q1 +\v 33 \w The|strong="H3605"\w* \w lot|strong="H1486"\w* \w is|strong="H3068"\w* \w cast|strong="H2904"\w* \w into|strong="H4941"\w* \w the|strong="H3605"\w* \w lap|strong="H2436"\w*, +\q2 \w but|strong="H3605"\w* \w its|strong="H3605"\w* \w every|strong="H3605"\w* \w decision|strong="H4941"\w* \w is|strong="H3068"\w* \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\c 17 +\q1 +\v 1 \w Better|strong="H2896"\w* \w is|strong="H2896"\w* \w a|strong="H3068"\w* \w dry|strong="H2720"\w* \w morsel|strong="H6595"\w* \w with|strong="H1004"\w* \w quietness|strong="H7962"\w*, +\q2 \w than|strong="H2896"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w full|strong="H4392"\w* \w of|strong="H1004"\w* \w feasting|strong="H2077"\w* \w with|strong="H1004"\w* \w strife|strong="H7379"\w*. +\q1 +\v 2 \w A|strong="H3068"\w* \w servant|strong="H5650"\w* \w who|strong="H1121"\w* deals \w wisely|strong="H7919"\w* \w will|strong="H5650"\w* \w rule|strong="H4910"\w* \w over|strong="H4910"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w who|strong="H1121"\w* causes shame, +\q2 \w and|strong="H1121"\w* \w shall|strong="H1121"\w* \w have|strong="H1121"\w* \w a|strong="H3068"\w* \w part|strong="H2505"\w* \w in|strong="H8432"\w* \w the|strong="H8432"\w* \w inheritance|strong="H5159"\w* \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w brothers|strong="H1121"\w*. +\q1 +\v 3 \w The|strong="H3068"\w* \w refining|strong="H4715"\w* \w pot|strong="H4715"\w* \w is|strong="H3068"\w* \w for|strong="H3068"\w* \w silver|strong="H3701"\w*, \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w furnace|strong="H3564"\w* \w for|strong="H3068"\w* \w gold|strong="H2091"\w*, +\q2 \w but|strong="H3068"\w* \w Yahweh|strong="H3068"\w* tests \w the|strong="H3068"\w* \w hearts|strong="H3826"\w*. +\q1 +\v 4 \w An|strong="H5921"\w* \w evildoer|strong="H7489"\w* heeds \w wicked|strong="H7489"\w* \w lips|strong="H8193"\w*. +\q2 \w A|strong="H3068"\w* \w liar|strong="H8267"\w* gives ear \w to|strong="H5921"\w* \w a|strong="H3068"\w* \w mischievous|strong="H1942"\w* \w tongue|strong="H3956"\w*. +\q1 +\v 5 Whoever \w mocks|strong="H3932"\w* \w the|strong="H6213"\w* \w poor|strong="H7326"\w* \w reproaches|strong="H2778"\w* \w his|strong="H6213"\w* \w Maker|strong="H6213"\w*. +\q2 \w He|strong="H6213"\w* \w who|strong="H6213"\w* \w is|strong="H6213"\w* \w glad|strong="H8056"\w* \w at|strong="H6213"\w* calamity \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w unpunished|strong="H5352"\w*. +\q1 +\v 6 \w Children|strong="H1121"\w*’s \w children|strong="H1121"\w* \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w crown|strong="H5850"\w* \w of|strong="H1121"\w* \w old|strong="H1121"\w* \w men|strong="H1121"\w*; +\q2 \w the|strong="H1121"\w* \w glory|strong="H8597"\w* \w of|strong="H1121"\w* \w children|strong="H1121"\w* \w is|strong="H1121"\w* their parents. +\q1 +\v 7 \w Excellent|strong="H3499"\w* \w speech|strong="H8193"\w* isn’t \w fitting|strong="H5000"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w fool|strong="H5036"\w*, +\q2 much \w less|strong="H3588"\w* \w do|strong="H8267"\w* \w lying|strong="H8267"\w* \w lips|strong="H8193"\w* fit \w a|strong="H3068"\w* \w prince|strong="H5081"\w*. +\q1 +\v 8 \w A|strong="H3068"\w* \w bribe|strong="H7810"\w* \w is|strong="H3605"\w* \w a|strong="H3068"\w* \w precious|strong="H2580"\w* stone \w in|strong="H7919"\w* \w the|strong="H3605"\w* \w eyes|strong="H5869"\w* \w of|strong="H5869"\w* \w him|strong="H3605"\w* \w who|strong="H3605"\w* \w gives|strong="H7919"\w* \w it|strong="H6437"\w*; +\q2 \w wherever|strong="H3605"\w* \w he|strong="H3605"\w* \w turns|strong="H6437"\w*, \w he|strong="H3605"\w* \w prospers|strong="H7919"\w*. +\q1 +\v 9 \w He|strong="H1697"\w* who \w covers|strong="H3680"\w* \w an|strong="H1245"\w* offense promotes love; +\q2 \w but|strong="H1245"\w* \w he|strong="H1697"\w* who \w repeats|strong="H8138"\w* \w a|strong="H3068"\w* \w matter|strong="H1697"\w* \w separates|strong="H6504"\w* best \w friends|strong="H6504"\w*. +\q1 +\v 10 \w A|strong="H3068"\w* \w rebuke|strong="H1606"\w* enters \w deeper|strong="H5181"\w* into \w one|strong="H3967"\w* \w who|strong="H5221"\w* has understanding +\q2 than \w a|strong="H3068"\w* \w hundred|strong="H3967"\w* lashes into \w a|strong="H3068"\w* \w fool|strong="H3684"\w*. +\q1 +\v 11 \w An|strong="H7971"\w* \w evil|strong="H7451"\w* \w man|strong="H7451"\w* \w seeks|strong="H1245"\w* \w only|strong="H1245"\w* \w rebellion|strong="H4805"\w*; +\q2 \w therefore|strong="H7971"\w* \w a|strong="H3068"\w* cruel \w messenger|strong="H4397"\w* \w shall|strong="H7451"\w* \w be|strong="H7451"\w* \w sent|strong="H7971"\w* \w against|strong="H7971"\w* \w him|strong="H7971"\w*. +\q1 +\v 12 Let \w a|strong="H3068"\w* \w bear|strong="H1677"\w* \w robbed|strong="H7909"\w* of \w her|strong="H7909"\w* \w cubs|strong="H7909"\w* \w meet|strong="H6298"\w* \w a|strong="H3068"\w* \w man|strong="H3684"\w*, +\q2 rather than \w a|strong="H3068"\w* \w fool|strong="H3684"\w* \w in|strong="H6298"\w* his folly. +\q1 +\v 13 Whoever rewards \w evil|strong="H7451"\w* \w for|strong="H8478"\w* \w good|strong="H2896"\w*, +\q2 \w evil|strong="H7451"\w* \w shall|strong="H1004"\w* \w not|strong="H3808"\w* \w depart|strong="H4185"\w* \w from|strong="H7725"\w* \w his|strong="H7725"\w* \w house|strong="H1004"\w*. +\q1 +\v 14 \w The|strong="H6440"\w* \w beginning|strong="H7225"\w* \w of|strong="H6440"\w* \w strife|strong="H7379"\w* \w is|strong="H6440"\w* \w like|strong="H6440"\w* breaching \w a|strong="H3068"\w* dam, +\q2 therefore \w stop|strong="H5203"\w* \w contention|strong="H4066"\w* \w before|strong="H6440"\w* quarreling \w breaks|strong="H1566"\w* \w out|strong="H6440"\w*. +\q1 +\v 15 \w He|strong="H3068"\w* \w who|strong="H3068"\w* \w justifies|strong="H6663"\w* \w the|strong="H3068"\w* \w wicked|strong="H7563"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w who|strong="H3068"\w* \w condemns|strong="H7561"\w* \w the|strong="H3068"\w* \w righteous|strong="H6662"\w*, +\q2 \w both|strong="H8147"\w* \w of|strong="H3068"\w* \w them|strong="H8147"\w* \w alike|strong="H1571"\w* \w are|strong="H7563"\w* \w an|strong="H3068"\w* \w abomination|strong="H8441"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 16 \w Why|strong="H4100"\w* \w is|strong="H2088"\w* \w there|strong="H2088"\w* money \w in|strong="H3027"\w* \w the|strong="H3027"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w* \w to|strong="H3820"\w* \w buy|strong="H7069"\w* \w wisdom|strong="H2451"\w*, +\q2 \w since|strong="H7069"\w* \w he|strong="H3027"\w* \w has|strong="H3820"\w* no \w understanding|strong="H3820"\w*? +\q1 +\v 17 \w A|strong="H3068"\w* \w friend|strong="H7453"\w* loves \w at|strong="H3205"\w* \w all|strong="H3605"\w* \w times|strong="H6256"\w*; +\q2 \w and|strong="H7453"\w* \w a|strong="H3068"\w* \w brother|strong="H7453"\w* \w is|strong="H3605"\w* \w born|strong="H3205"\w* \w for|strong="H6256"\w* \w adversity|strong="H6869"\w*. +\q1 +\v 18 \w A|strong="H3068"\w* \w man|strong="H6440"\w* \w void|strong="H2638"\w* \w of|strong="H6440"\w* \w understanding|strong="H3820"\w* \w strikes|strong="H8628"\w* \w hands|strong="H3709"\w*, +\q2 \w and|strong="H6440"\w* \w becomes|strong="H6148"\w* \w collateral|strong="H6148"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H6440"\w* \w his|strong="H6440"\w* \w neighbor|strong="H7453"\w*. +\q1 +\v 19 He who loves disobedience loves \w strife|strong="H4683"\w*. +\q2 \w One|strong="H6607"\w* who builds \w a|strong="H3068"\w* \w high|strong="H1361"\w* \w gate|strong="H6607"\w* \w seeks|strong="H1245"\w* \w destruction|strong="H7667"\w*. +\q1 +\v 20 \w One|strong="H3808"\w* \w who|strong="H2896"\w* \w has|strong="H3820"\w* \w a|strong="H3068"\w* \w perverse|strong="H6141"\w* \w heart|strong="H3820"\w* doesn’t \w find|strong="H4672"\w* \w prosperity|strong="H2896"\w*, +\q2 \w and|strong="H2896"\w* \w one|strong="H3808"\w* \w who|strong="H2896"\w* \w has|strong="H3820"\w* \w a|strong="H3068"\w* deceitful \w tongue|strong="H3956"\w* \w falls|strong="H5307"\w* \w into|strong="H2015"\w* \w trouble|strong="H7451"\w*. +\q1 +\v 21 \w He|strong="H3808"\w* \w who|strong="H3205"\w* becomes \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w* grieves. +\q2 \w The|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w* \w has|strong="H5036"\w* \w no|strong="H3808"\w* \w joy|strong="H8055"\w*. +\q1 +\v 22 \w A|strong="H3068"\w* \w cheerful|strong="H3190"\w* \w heart|strong="H3820"\w* \w makes|strong="H3190"\w* \w good|strong="H3190"\w* \w medicine|strong="H1456"\w*, +\q2 \w but|strong="H3820"\w* \w a|strong="H3068"\w* crushed \w spirit|strong="H7307"\w* \w dries|strong="H3001"\w* \w up|strong="H3001"\w* \w the|strong="H3190"\w* \w bones|strong="H1634"\w*. +\q1 +\v 23 \w A|strong="H3068"\w* \w wicked|strong="H7563"\w* \w man|strong="H7563"\w* \w receives|strong="H3947"\w* \w a|strong="H3068"\w* \w bribe|strong="H7810"\w* \w in|strong="H3947"\w* secret, +\q2 \w to|strong="H4941"\w* \w pervert|strong="H5186"\w* \w the|strong="H3947"\w* ways \w of|strong="H4941"\w* \w justice|strong="H4941"\w*. +\q1 +\v 24 \w Wisdom|strong="H2451"\w* \w is|strong="H2451"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H6440"\w* \w one|strong="H7097"\w* \w who|strong="H3684"\w* \w has|strong="H5869"\w* \w understanding|strong="H6440"\w*, +\q2 but \w the|strong="H6440"\w* \w eyes|strong="H5869"\w* \w of|strong="H6440"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w* wander \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w ends|strong="H7097"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* earth. +\q1 +\v 25 \w A|strong="H3068"\w* \w foolish|strong="H3684"\w* \w son|strong="H1121"\w* \w brings|strong="H3205"\w* \w grief|strong="H3708"\w* \w to|strong="H3205"\w* \w his|strong="H3205"\w* \w father|strong="H3205"\w*, +\q2 \w and|strong="H1121"\w* \w bitterness|strong="H4470"\w* \w to|strong="H3205"\w* \w her|strong="H3205"\w* \w who|strong="H1121"\w* \w bore|strong="H3205"\w* \w him|strong="H3205"\w*. +\q1 +\v 26 \w Also|strong="H1571"\w* \w to|strong="H5921"\w* \w punish|strong="H6064"\w* \w the|strong="H5921"\w* \w righteous|strong="H6662"\w* \w is|strong="H1571"\w* \w not|strong="H3808"\w* \w good|strong="H2896"\w*, +\q2 \w nor|strong="H3808"\w* \w to|strong="H5921"\w* \w flog|strong="H5221"\w* officials \w for|strong="H5921"\w* \w their|strong="H5921"\w* \w integrity|strong="H3476"\w*. +\q1 +\v 27 \w He|strong="H8394"\w* \w who|strong="H3045"\w* spares \w his|strong="H3045"\w* words \w has|strong="H7307"\w* \w knowledge|strong="H1847"\w*. +\q2 \w He|strong="H8394"\w* \w who|strong="H3045"\w* \w is|strong="H7307"\w* even tempered \w is|strong="H7307"\w* \w a|strong="H3068"\w* \w man|strong="H3045"\w* \w of|strong="H7307"\w* \w understanding|strong="H8394"\w*. +\q1 +\v 28 \w Even|strong="H1571"\w* \w a|strong="H3068"\w* fool, \w when|strong="H1571"\w* \w he|strong="H2803"\w* \w keeps|strong="H2790"\w* \w silent|strong="H2790"\w*, \w is|strong="H1571"\w* \w counted|strong="H2803"\w* \w wise|strong="H2450"\w*. +\q2 \w When|strong="H1571"\w* \w he|strong="H2803"\w* shuts \w his|strong="H2803"\w* \w lips|strong="H8193"\w*, \w he|strong="H2803"\w* \w is|strong="H1571"\w* \w thought|strong="H2803"\w* \w to|strong="H2803"\w* \w be|strong="H1571"\w* discerning. +\c 18 +\q1 +\v 1 \w A|strong="H3068"\w* \w man|strong="H3605"\w* \w who|strong="H3605"\w* isolates \w himself|strong="H6504"\w* pursues selfishness, +\q2 \w and|strong="H3605"\w* defies \w all|strong="H3605"\w* \w sound|strong="H8454"\w* judgment. +\q1 +\v 2 \w A|strong="H3068"\w* \w fool|strong="H3684"\w* \w has|strong="H3820"\w* \w no|strong="H3808"\w* \w delight|strong="H2654"\w* \w in|strong="H2654"\w* \w understanding|strong="H8394"\w*, +\q2 \w but|strong="H3588"\w* \w only|strong="H3588"\w* \w in|strong="H2654"\w* \w revealing|strong="H1540"\w* \w his|strong="H1540"\w* own \w opinion|strong="H3820"\w*. +\q1 +\v 3 \w When|strong="H1571"\w* wickedness \w comes|strong="H5973"\w*, \w contempt|strong="H2781"\w* \w also|strong="H1571"\w* \w comes|strong="H5973"\w*, +\q2 \w and|strong="H1571"\w* \w with|strong="H5973"\w* \w shame|strong="H7036"\w* \w comes|strong="H5973"\w* \w disgrace|strong="H2781"\w*. +\q1 +\v 4 \w The|strong="H1697"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w a|strong="H3068"\w* \w man|strong="H2451"\w*’s \w mouth|strong="H6310"\w* \w are|strong="H1697"\w* \w like|strong="H1697"\w* \w deep|strong="H6013"\w* \w waters|strong="H4325"\w*. +\q2 \w The|strong="H1697"\w* \w fountain|strong="H4726"\w* \w of|strong="H1697"\w* \w wisdom|strong="H2451"\w* \w is|strong="H1697"\w* \w like|strong="H1697"\w* \w a|strong="H3068"\w* \w flowing|strong="H5042"\w* \w brook|strong="H5158"\w*. +\q1 +\v 5 \w To|strong="H6440"\w* \w be|strong="H3808"\w* \w partial|strong="H5375"\w* \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w faces|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w wicked|strong="H7563"\w* \w is|strong="H7563"\w* \w not|strong="H3808"\w* \w good|strong="H2896"\w*, +\q2 \w nor|strong="H3808"\w* \w to|strong="H6440"\w* \w deprive|strong="H5186"\w* \w the|strong="H6440"\w* \w innocent|strong="H6662"\w* \w of|strong="H6440"\w* \w justice|strong="H4941"\w*. +\q1 +\v 6 \w A|strong="H3068"\w* \w fool|strong="H3684"\w*’s \w lips|strong="H8193"\w* come into \w strife|strong="H7379"\w*, +\q2 \w and|strong="H6310"\w* \w his|strong="H7121"\w* \w mouth|strong="H6310"\w* \w invites|strong="H7121"\w* beatings. +\q1 +\v 7 \w A|strong="H3068"\w* \w fool|strong="H3684"\w*’s \w mouth|strong="H6310"\w* \w is|strong="H5315"\w* \w his|strong="H6310"\w* \w destruction|strong="H4288"\w*, +\q2 \w and|strong="H6310"\w* \w his|strong="H6310"\w* \w lips|strong="H8193"\w* \w are|strong="H8193"\w* \w a|strong="H3068"\w* \w snare|strong="H4170"\w* \w to|strong="H6310"\w* \w his|strong="H6310"\w* \w soul|strong="H5315"\w*. +\q1 +\v 8 \w The|strong="H1697"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w a|strong="H3068"\w* \w gossip|strong="H5372"\w* \w are|strong="H1992"\w* \w like|strong="H3381"\w* \w dainty|strong="H3859"\w* \w morsels|strong="H3859"\w*: +\q2 \w they|strong="H1992"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w a|strong="H3068"\w* person’s \w innermost|strong="H2315"\w* \w parts|strong="H2315"\w*. +\q1 +\v 9 \w One|strong="H1931"\w* \w who|strong="H1931"\w* \w is|strong="H1931"\w* \w slack|strong="H7503"\w* \w in|strong="H1571"\w* \w his|strong="H7843"\w* \w work|strong="H4399"\w* +\q2 \w is|strong="H1931"\w* brother \w to|strong="H7843"\w* \w him|strong="H1931"\w* \w who|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w master|strong="H1167"\w* \w of|strong="H1167"\w* \w destruction|strong="H7843"\w*. +\q1 +\v 10 \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w strong|strong="H5797"\w* \w tower|strong="H4026"\w*: +\q2 \w the|strong="H3068"\w* \w righteous|strong="H6662"\w* \w run|strong="H7323"\w* \w to|strong="H3068"\w* \w him|strong="H7682"\w*, \w and|strong="H3068"\w* \w are|strong="H3068"\w* \w safe|strong="H7682"\w*. +\q1 +\v 11 \w The|strong="H7682"\w* \w rich|strong="H6223"\w* \w man|strong="H6223"\w*’s \w wealth|strong="H1952"\w* is \w his|strong="H5797"\w* \w strong|strong="H5797"\w* \w city|strong="H7151"\w*, +\q2 \w like|strong="H2346"\w* an unscalable \w wall|strong="H2346"\w* \w in|strong="H2346"\w* \w his|strong="H5797"\w* own \w imagination|strong="H4906"\w*. +\q1 +\v 12 \w Before|strong="H6440"\w* \w destruction|strong="H7667"\w* \w the|strong="H6440"\w* \w heart|strong="H3820"\w* \w of|strong="H6440"\w* \w man|strong="H6440"\w* \w is|strong="H3820"\w* \w proud|strong="H1361"\w*, +\q2 \w but|strong="H3820"\w* \w before|strong="H6440"\w* \w honor|strong="H3519"\w* \w is|strong="H3820"\w* \w humility|strong="H6038"\w*. +\q1 +\v 13 \w He|strong="H1931"\w* \w who|strong="H1931"\w* \w answers|strong="H7725"\w* \w before|strong="H2962"\w* \w he|strong="H1931"\w* \w hears|strong="H8085"\w*, +\q2 \w that|strong="H8085"\w* \w is|strong="H1931"\w* folly \w and|strong="H7725"\w* \w shame|strong="H3639"\w* \w to|strong="H7725"\w* \w him|strong="H7725"\w*. +\q1 +\v 14 \w A|strong="H3068"\w* \w man|strong="H5375"\w*’s \w spirit|strong="H7307"\w* \w will|strong="H4310"\w* \w sustain|strong="H3557"\w* \w him|strong="H5375"\w* \w in|strong="H7307"\w* \w sickness|strong="H4245"\w*, +\q2 but \w a|strong="H3068"\w* crushed \w spirit|strong="H7307"\w*, \w who|strong="H4310"\w* \w can|strong="H4310"\w* \w bear|strong="H5375"\w*? +\q1 +\v 15 \w The|strong="H1245"\w* \w heart|strong="H3820"\w* \w of|strong="H3820"\w* \w the|strong="H1245"\w* discerning \w gets|strong="H7069"\w* \w knowledge|strong="H1847"\w*. +\q2 \w The|strong="H1245"\w* ear \w of|strong="H3820"\w* \w the|strong="H1245"\w* \w wise|strong="H2450"\w* \w seeks|strong="H1245"\w* \w knowledge|strong="H1847"\w*. +\q1 +\v 16 \w A|strong="H3068"\w* \w man|strong="H1419"\w*’s \w gift|strong="H4976"\w* \w makes|strong="H6440"\w* \w room|strong="H7337"\w* \w for|strong="H6440"\w* \w him|strong="H6440"\w*, +\q2 \w and|strong="H1419"\w* \w brings|strong="H5148"\w* \w him|strong="H6440"\w* \w before|strong="H6440"\w* \w great|strong="H1419"\w* \w men|strong="H1419"\w*. +\q1 +\v 17 He \w who|strong="H6662"\w* \w pleads|strong="H7453"\w* \w his|strong="H7453"\w* \w cause|strong="H7379"\w* \w first|strong="H7223"\w* \w seems|strong="H6662"\w* \w right|strong="H6662"\w*— +\q2 until \w another|strong="H7453"\w* comes \w and|strong="H7223"\w* questions him. +\q1 +\v 18 \w The|strong="H6504"\w* \w lot|strong="H1486"\w* settles \w disputes|strong="H4079"\w*, +\q2 \w and|strong="H6099"\w* keeps \w strong|strong="H6099"\w* \w ones|strong="H6099"\w* \w apart|strong="H6504"\w*. +\q1 +\v 19 \w A|strong="H3068"\w* brother \w offended|strong="H6586"\w* \w is|strong="H4066"\w* more difficult than \w a|strong="H3068"\w* fortified \w city|strong="H7151"\w*. +\q2 Disputes \w are|strong="H1280"\w* like \w the|strong="H5797"\w* \w bars|strong="H1280"\w* \w of|strong="H7151"\w* \w a|strong="H3068"\w* \w fortress|strong="H7151"\w*. +\q1 +\v 20 \w A|strong="H3068"\w* man’s stomach \w is|strong="H6310"\w* \w filled|strong="H7646"\w* \w with|strong="H7646"\w* \w the|strong="H7646"\w* \w fruit|strong="H6529"\w* \w of|strong="H6310"\w* \w his|strong="H6310"\w* \w mouth|strong="H6310"\w*. +\q2 \w With|strong="H7646"\w* \w the|strong="H7646"\w* \w harvest|strong="H8393"\w* \w of|strong="H6310"\w* \w his|strong="H6310"\w* \w lips|strong="H8193"\w* \w he|strong="H8193"\w* \w is|strong="H6310"\w* \w satisfied|strong="H7646"\w*. +\q1 +\v 21 \w Death|strong="H4194"\w* \w and|strong="H3027"\w* \w life|strong="H2416"\w* \w are|strong="H3027"\w* \w in|strong="H3027"\w* \w the|strong="H3027"\w* \w power|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w tongue|strong="H3956"\w*; +\q2 those \w who|strong="H2416"\w* love it \w will|strong="H3027"\w* eat \w its|strong="H6529"\w* \w fruit|strong="H6529"\w*. +\q1 +\v 22 Whoever \w finds|strong="H4672"\w* \w a|strong="H3068"\w* wife \w finds|strong="H4672"\w* \w a|strong="H3068"\w* \w good|strong="H2896"\w* \w thing|strong="H2896"\w*, +\q2 \w and|strong="H3068"\w* \w obtains|strong="H6329"\w* \w favor|strong="H7522"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 23 \w The|strong="H1696"\w* \w poor|strong="H7326"\w* plead \w for|strong="H6030"\w* mercy, +\q2 \w but|strong="H6030"\w* \w the|strong="H1696"\w* \w rich|strong="H6223"\w* \w answer|strong="H6030"\w* \w harshly|strong="H5794"\w*. +\q1 +\v 24 \w A|strong="H3068"\w* man \w of|strong="H7453"\w* many \w companions|strong="H7453"\w* \w may|strong="H3426"\w* \w be|strong="H3426"\w* ruined, +\q2 \w but|strong="H7489"\w* \w there|strong="H3426"\w* \w is|strong="H3426"\w* \w a|strong="H3068"\w* \w friend|strong="H7453"\w* \w who|strong="H1695"\w* \w sticks|strong="H1695"\w* \w closer|strong="H1695"\w* than \w a|strong="H3068"\w* \w brother|strong="H7453"\w*. +\c 19 +\q1 +\v 1 \w Better|strong="H2896"\w* \w is|strong="H1931"\w* \w the|strong="H1980"\w* \w poor|strong="H7326"\w* \w who|strong="H1931"\w* \w walks|strong="H1980"\w* \w in|strong="H1980"\w* \w his|strong="H1980"\w* \w integrity|strong="H8537"\w* +\q2 \w than|strong="H2896"\w* \w he|strong="H1931"\w* \w who|strong="H1931"\w* \w is|strong="H1931"\w* \w perverse|strong="H6141"\w* \w in|strong="H1980"\w* \w his|strong="H1980"\w* \w lips|strong="H8193"\w* \w and|strong="H1980"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w*. +\q1 +\v 2 \w It|strong="H3808"\w* isn’t \w good|strong="H2896"\w* \w to|strong="H5315"\w* \w have|strong="H1571"\w* zeal \w without|strong="H3808"\w* \w knowledge|strong="H1847"\w*, +\q2 \w nor|strong="H3808"\w* \w being|strong="H5315"\w* hasty \w with|strong="H5315"\w* \w one|strong="H3808"\w*’s \w feet|strong="H7272"\w* \w and|strong="H2896"\w* missing \w the|strong="H1571"\w* way. +\q1 +\v 3 \w The|strong="H5921"\w* foolishness \w of|strong="H3068"\w* \w man|strong="H3820"\w* \w subverts|strong="H5557"\w* \w his|strong="H3068"\w* \w way|strong="H1870"\w*; +\q2 \w his|strong="H3068"\w* \w heart|strong="H3820"\w* \w rages|strong="H2196"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 4 \w Wealth|strong="H1952"\w* \w adds|strong="H3254"\w* \w many|strong="H7227"\w* \w friends|strong="H7453"\w*, +\q2 \w but|strong="H7227"\w* \w the|strong="H3254"\w* \w poor|strong="H1800"\w* \w is|strong="H1800"\w* \w separated|strong="H6504"\w* \w from|strong="H1800"\w* \w his|strong="H3254"\w* \w friend|strong="H7453"\w*. +\q1 +\v 5 \w A|strong="H3068"\w* \w false|strong="H8267"\w* \w witness|strong="H5707"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w unpunished|strong="H5352"\w*. +\q2 \w He|strong="H3808"\w* \w who|strong="H3808"\w* pours \w out|strong="H4422"\w* \w lies|strong="H3577"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w go|strong="H5352"\w* \w free|strong="H5352"\w*. +\q1 +\v 6 \w Many|strong="H7227"\w* \w will|strong="H7227"\w* \w entreat|strong="H2470"\w* \w the|strong="H3605"\w* \w favor|strong="H6440"\w* \w of|strong="H6440"\w* \w a|strong="H3068"\w* ruler, +\q2 \w and|strong="H6440"\w* \w everyone|strong="H3605"\w* \w is|strong="H3605"\w* \w a|strong="H3068"\w* \w friend|strong="H7453"\w* \w to|strong="H6440"\w* \w a|strong="H3068"\w* \w man|strong="H5081"\w* \w who|strong="H3605"\w* gives \w gifts|strong="H4976"\w*. +\q1 +\v 7 \w All|strong="H3605"\w* \w the|strong="H3605"\w* relatives \w of|strong="H4480"\w* \w the|strong="H3605"\w* \w poor|strong="H7326"\w* \w shun|strong="H7368"\w* \w him|strong="H8130"\w*; +\q2 \w how|strong="H3588"\w* \w much|strong="H3605"\w* \w more|strong="H4480"\w* \w do|strong="H7326"\w* \w his|strong="H3605"\w* \w friends|strong="H4828"\w* \w avoid|strong="H7368"\w* \w him|strong="H8130"\w*! +\q2 \w He|strong="H3588"\w* \w pursues|strong="H7291"\w* \w them|strong="H1992"\w* \w with|strong="H3605"\w* pleas, \w but|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w gone|strong="H4480"\w*. +\q1 +\v 8 \w He|strong="H8394"\w* \w who|strong="H5315"\w* \w gets|strong="H7069"\w* \w wisdom|strong="H3820"\w* loves \w his|strong="H8104"\w* \w own|strong="H5315"\w* \w soul|strong="H5315"\w*. +\q2 \w He|strong="H8394"\w* \w who|strong="H5315"\w* \w keeps|strong="H8104"\w* \w understanding|strong="H8394"\w* \w shall|strong="H5315"\w* \w find|strong="H4672"\w* \w good|strong="H2896"\w*. +\q1 +\v 9 \w A|strong="H3068"\w* \w false|strong="H8267"\w* \w witness|strong="H5707"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w unpunished|strong="H5352"\w*. +\q2 \w He|strong="H3808"\w* \w who|strong="H3808"\w* \w utters|strong="H6315"\w* \w lies|strong="H3577"\w* \w shall|strong="H3808"\w* perish. +\q1 +\v 10 \w Delicate|strong="H8588"\w* living \w is|strong="H5650"\w* \w not|strong="H3808"\w* \w appropriate|strong="H5000"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w*, +\q2 much \w less|strong="H3588"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w servant|strong="H5650"\w* \w to|strong="H5650"\w* \w have|strong="H5650"\w* \w rule|strong="H4910"\w* \w over|strong="H4910"\w* \w princes|strong="H8269"\w*. +\q1 +\v 11 \w The|strong="H5921"\w* \w discretion|strong="H7922"\w* \w of|strong="H5921"\w* \w a|strong="H3068"\w* \w man|strong="H5674"\w* makes \w him|strong="H5921"\w* slow \w to|strong="H5921"\w* \w anger|strong="H5674"\w*. +\q2 \w It|strong="H5921"\w* \w is|strong="H6588"\w* \w his|strong="H5921"\w* \w glory|strong="H8597"\w* \w to|strong="H5921"\w* \w overlook|strong="H5674"\w* \w an|strong="H5921"\w* offense. +\q1 +\v 12 \w The|strong="H5921"\w* \w king|strong="H4428"\w*’s \w wrath|strong="H2197"\w* \w is|strong="H4428"\w* \w like|strong="H5921"\w* \w the|strong="H5921"\w* \w roaring|strong="H5099"\w* \w of|strong="H4428"\w* \w a|strong="H3068"\w* \w lion|strong="H3715"\w*, +\q2 \w but|strong="H2197"\w* \w his|strong="H5921"\w* \w favor|strong="H7522"\w* \w is|strong="H4428"\w* \w like|strong="H5921"\w* \w dew|strong="H2919"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w grass|strong="H6212"\w*. +\q1 +\v 13 \w A|strong="H3068"\w* \w foolish|strong="H3684"\w* \w son|strong="H1121"\w* \w is|strong="H1121"\w* \w the|strong="H1121"\w* \w calamity|strong="H1942"\w* \w of|strong="H1121"\w* \w his|strong="H1121"\w* \w father|strong="H1121"\w*. +\q2 \w A|strong="H3068"\w* wife’s quarrels \w are|strong="H1121"\w* \w a|strong="H3068"\w* \w continual|strong="H2956"\w* \w dripping|strong="H1812"\w*. +\q1 +\v 14 \w House|strong="H1004"\w* \w and|strong="H3068"\w* \w riches|strong="H1952"\w* \w are|strong="H3068"\w* \w an|strong="H3068"\w* \w inheritance|strong="H5159"\w* \w from|strong="H3068"\w* fathers, +\q2 \w but|strong="H3068"\w* \w a|strong="H3068"\w* \w prudent|strong="H7919"\w* wife \w is|strong="H3068"\w* \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 15 \w Slothfulness|strong="H6103"\w* \w casts|strong="H5307"\w* \w into|strong="H5307"\w* \w a|strong="H3068"\w* \w deep|strong="H8639"\w* \w sleep|strong="H8639"\w*. +\q2 \w The|strong="H5307"\w* \w idle|strong="H7423"\w* \w soul|strong="H5315"\w* \w shall|strong="H5315"\w* \w suffer|strong="H7456"\w* \w hunger|strong="H7456"\w*. +\q1 +\v 16 \w He|strong="H5315"\w* \w who|strong="H5315"\w* \w keeps|strong="H8104"\w* \w the|strong="H8104"\w* \w commandment|strong="H4687"\w* \w keeps|strong="H8104"\w* \w his|strong="H8104"\w* \w soul|strong="H5315"\w*, +\q2 \w but|strong="H1870"\w* \w he|strong="H5315"\w* \w who|strong="H5315"\w* \w is|strong="H5315"\w* contemptuous \w in|strong="H4191"\w* \w his|strong="H8104"\w* \w ways|strong="H1870"\w* \w shall|strong="H5315"\w* \w die|strong="H4191"\w*. +\q1 +\v 17 \w He|strong="H3068"\w* \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w pity|strong="H2603"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w poor|strong="H1800"\w* \w lends|strong="H3867"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*; +\q2 \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w reward|strong="H7999"\w* \w him|strong="H2603"\w*. +\q1 +\v 18 \w Discipline|strong="H3256"\w* \w your|strong="H5375"\w* \w son|strong="H1121"\w*, \w for|strong="H3588"\w* \w there|strong="H3426"\w* \w is|strong="H3426"\w* \w hope|strong="H8615"\w*; +\q2 don’t \w be|strong="H4191"\w* \w a|strong="H3068"\w* willing party \w to|strong="H4191"\w* \w his|strong="H5375"\w* \w death|strong="H4191"\w*. +\q1 +\v 19 \w A|strong="H3068"\w* \w hot-tempered|strong="H2534"\w* \w man|strong="H5375"\w* \w must|strong="H5375"\w* pay \w the|strong="H3588"\w* \w penalty|strong="H6066"\w*, +\q2 \w for|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w rescue|strong="H5337"\w* \w him|strong="H5375"\w*, \w you|strong="H3588"\w* \w must|strong="H5375"\w* \w do|strong="H3254"\w* \w it|strong="H3588"\w* \w again|strong="H5750"\w*. +\q1 +\v 20 \w Listen|strong="H8085"\w* \w to|strong="H8085"\w* \w counsel|strong="H6098"\w* \w and|strong="H8085"\w* \w receive|strong="H6901"\w* \w instruction|strong="H4148"\w*, +\q2 \w that|strong="H8085"\w* \w you|strong="H8085"\w* \w may|strong="H8085"\w* be \w wise|strong="H2449"\w* \w in|strong="H8085"\w* \w your|strong="H8085"\w* latter \w end|strong="H4616"\w*. +\q1 +\v 21 \w There|strong="H3068"\w* \w are|strong="H3068"\w* \w many|strong="H7227"\w* \w plans|strong="H4284"\w* \w in|strong="H3068"\w* \w a|strong="H3068"\w* \w man|strong="H3820"\w*’s \w heart|strong="H3820"\w*, +\q2 \w but|strong="H1931"\w* \w Yahweh|strong="H3068"\w*’s \w counsel|strong="H6098"\w* \w will|strong="H3068"\w* prevail. +\q1 +\v 22 \w That|strong="H7326"\w* \w which|strong="H2617"\w* makes \w a|strong="H3068"\w* \w man|strong="H7326"\w* \w to|strong="H2896"\w* \w be|strong="H2896"\w* \w desired|strong="H8378"\w* \w is|strong="H2617"\w* \w his|strong="H2896"\w* \w kindness|strong="H2617"\w*. +\q2 \w A|strong="H3068"\w* \w poor|strong="H7326"\w* \w man|strong="H7326"\w* \w is|strong="H2617"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w a|strong="H3068"\w* \w liar|strong="H3577"\w*. +\q1 +\v 23 \w The|strong="H3068"\w* \w fear|strong="H3374"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w leads|strong="H2416"\w* \w to|strong="H3068"\w* \w life|strong="H2416"\w*, \w then|strong="H3068"\w* contentment; +\q2 \w he|strong="H3068"\w* rests \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H1077"\w* \w be|strong="H3068"\w* touched \w by|strong="H3068"\w* \w trouble|strong="H7451"\w*. +\q1 +\v 24 \w The|strong="H7725"\w* \w sluggard|strong="H6102"\w* \w buries|strong="H2934"\w* \w his|strong="H7725"\w* \w hand|strong="H3027"\w* \w in|strong="H7725"\w* \w the|strong="H7725"\w* \w dish|strong="H6747"\w*; +\q2 \w he|strong="H3027"\w* \w will|strong="H1571"\w* \w not|strong="H3808"\w* \w so|strong="H3808"\w* \w much|strong="H3027"\w* \w as|strong="H1571"\w* \w bring|strong="H7725"\w* \w it|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w mouth|strong="H6310"\w* \w again|strong="H7725"\w*. +\q1 +\v 25 \w Flog|strong="H5221"\w* \w a|strong="H3068"\w* scoffer, \w and|strong="H1847"\w* \w the|strong="H5221"\w* \w simple|strong="H6612"\w* \w will|strong="H6612"\w* learn prudence; +\q2 \w rebuke|strong="H3198"\w* one \w who|strong="H3198"\w* has understanding, \w and|strong="H1847"\w* \w he|strong="H5221"\w* \w will|strong="H6612"\w* gain \w knowledge|strong="H1847"\w*. +\q1 +\v 26 \w He|strong="H1121"\w* \w who|strong="H1121"\w* robs \w his|strong="H1121"\w* \w father|strong="H1121"\w* \w and|strong="H1121"\w* \w drives|strong="H1272"\w* \w away|strong="H1272"\w* \w his|strong="H1121"\w* mother +\q2 \w is|strong="H1121"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w who|strong="H1121"\w* causes \w shame|strong="H2659"\w* \w and|strong="H1121"\w* brings \w reproach|strong="H2659"\w*. +\q1 +\v 27 \w If|strong="H1121"\w* \w you|strong="H7686"\w* \w stop|strong="H2308"\w* \w listening|strong="H8085"\w* \w to|strong="H8085"\w* \w instruction|strong="H4148"\w*, \w my|strong="H8085"\w* \w son|strong="H1121"\w*, +\q2 \w you|strong="H7686"\w* \w will|strong="H1121"\w* \w stray|strong="H7686"\w* \w from|strong="H8085"\w* \w the|strong="H8085"\w* words \w of|strong="H1121"\w* \w knowledge|strong="H1847"\w*. +\q1 +\v 28 \w A|strong="H3068"\w* corrupt \w witness|strong="H5707"\w* mocks \w justice|strong="H4941"\w*, +\q2 \w and|strong="H4941"\w* \w the|strong="H1104"\w* \w mouth|strong="H6310"\w* \w of|strong="H6310"\w* \w the|strong="H1104"\w* \w wicked|strong="H7563"\w* gulps \w down|strong="H1104"\w* iniquity. +\q1 +\v 29 Penalties \w are|strong="H8201"\w* \w prepared|strong="H3559"\w* \w for|strong="H3559"\w* scoffers, +\q2 \w and|strong="H3559"\w* beatings \w for|strong="H3559"\w* \w the|strong="H3559"\w* backs \w of|strong="H1460"\w* \w fools|strong="H3684"\w*. +\b +\c 20 +\q1 +\v 1 \w Wine|strong="H3196"\w* \w is|strong="H3605"\w* \w a|strong="H3068"\w* \w mocker|strong="H3887"\w* \w and|strong="H3196"\w* \w beer|strong="H7941"\w* \w is|strong="H3605"\w* \w a|strong="H3068"\w* \w brawler|strong="H1993"\w*. +\q2 \w Whoever|strong="H3605"\w* \w is|strong="H3605"\w* led \w astray|strong="H7686"\w* \w by|strong="H3808"\w* them \w is|strong="H3605"\w* \w not|strong="H3808"\w* \w wise|strong="H2449"\w*. +\q1 +\v 2 \w The|strong="H5674"\w* terror \w of|strong="H4428"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w is|strong="H5315"\w* \w like|strong="H5315"\w* \w the|strong="H5674"\w* \w roaring|strong="H5099"\w* \w of|strong="H4428"\w* \w a|strong="H3068"\w* \w lion|strong="H3715"\w*. +\q2 \w He|strong="H4428"\w* \w who|strong="H5315"\w* \w provokes|strong="H5674"\w* \w him|strong="H5315"\w* \w to|strong="H4428"\w* \w anger|strong="H5099"\w* \w forfeits|strong="H2398"\w* \w his|strong="H5674"\w* \w own|strong="H5315"\w* \w life|strong="H5315"\w*. +\q1 +\v 3 \w It|strong="H3605"\w* \w is|strong="H3605"\w* an \w honor|strong="H3519"\w* \w for|strong="H3605"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w to|strong="H3519"\w* keep aloof \w from|strong="H7674"\w* \w strife|strong="H7379"\w*, +\q2 \w but|strong="H3605"\w* \w every|strong="H3605"\w* fool \w will|strong="H3519"\w* \w be|strong="H3605"\w* quarreling. +\q1 +\v 4 \w The|strong="H3808"\w* \w sluggard|strong="H6102"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w plow|strong="H2790"\w* \w by|strong="H3808"\w* reason \w of|strong="H7592"\w* \w the|strong="H3808"\w* \w winter|strong="H2779"\w*; +\q2 therefore \w he|strong="H3808"\w* \w shall|strong="H3808"\w* \w beg|strong="H7592"\w* \w in|strong="H3808"\w* \w harvest|strong="H7105"\w*, \w and|strong="H2790"\w* \w have|strong="H3808"\w* \w nothing|strong="H3808"\w*. +\q1 +\v 5 \w Counsel|strong="H6098"\w* \w in|strong="H3820"\w* \w the|strong="H3820"\w* \w heart|strong="H3820"\w* \w of|strong="H4325"\w* \w man|strong="H3820"\w* \w is|strong="H3820"\w* \w like|strong="H3820"\w* \w deep|strong="H6013"\w* \w water|strong="H4325"\w*, +\q2 \w but|strong="H4325"\w* \w a|strong="H3068"\w* \w man|strong="H3820"\w* \w of|strong="H4325"\w* \w understanding|strong="H8394"\w* \w will|strong="H3820"\w* \w draw|strong="H1802"\w* \w it|strong="H3820"\w* \w out|strong="H4325"\w*. +\q1 +\v 6 \w Many|strong="H7230"\w* \w men|strong="H7121"\w* claim \w to|strong="H7121"\w* \w be|strong="H2617"\w* \w men|strong="H7121"\w* \w of|strong="H7230"\w* unfailing \w love|strong="H2617"\w*, +\q2 but \w who|strong="H4310"\w* \w can|strong="H4310"\w* \w find|strong="H4672"\w* \w a|strong="H3068"\w* \w faithful|strong="H2617"\w* man? +\q1 +\v 7 \w A|strong="H3068"\w* \w righteous|strong="H6662"\w* \w man|strong="H6662"\w* \w walks|strong="H1980"\w* \w in|strong="H1980"\w* \w integrity|strong="H8537"\w*. +\q2 Blessed \w are|strong="H1121"\w* \w his|strong="H1980"\w* \w children|strong="H1121"\w* \w after|strong="H1980"\w* \w him|strong="H1121"\w*. +\q1 +\v 8 \w A|strong="H3068"\w* \w king|strong="H4428"\w* \w who|strong="H3605"\w* \w sits|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w throne|strong="H3678"\w* \w of|strong="H4428"\w* \w judgment|strong="H1779"\w* +\q2 scatters \w away|strong="H3605"\w* \w all|strong="H3605"\w* \w evil|strong="H7451"\w* \w with|strong="H5921"\w* \w his|strong="H3605"\w* \w eyes|strong="H5869"\w*. +\q1 +\v 9 \w Who|strong="H4310"\w* \w can|strong="H4310"\w* say, “\w I|strong="H3820"\w* \w have|strong="H2403"\w* made \w my|strong="H2135"\w* \w heart|strong="H3820"\w* \w pure|strong="H2135"\w*. +\q2 \w I|strong="H3820"\w* am \w clean|strong="H2891"\w* \w and|strong="H2403"\w* without \w sin|strong="H2403"\w*”? +\q1 +\v 10 Differing weights \w and|strong="H3068"\w* differing measures, +\q2 \w both|strong="H8147"\w* \w of|strong="H3068"\w* \w them|strong="H8147"\w* \w alike|strong="H1571"\w* \w are|strong="H3068"\w* \w an|strong="H3068"\w* \w abomination|strong="H8441"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 11 \w Even|strong="H1571"\w* \w a|strong="H3068"\w* \w child|strong="H5288"\w* makes \w himself|strong="H5234"\w* \w known|strong="H5234"\w* \w by|strong="H1571"\w* \w his|strong="H5234"\w* \w doings|strong="H4611"\w*, +\q2 \w whether|strong="H1571"\w* \w his|strong="H5234"\w* \w work|strong="H6467"\w* \w is|strong="H1571"\w* \w pure|strong="H2134"\w*, \w and|strong="H5288"\w* \w whether|strong="H1571"\w* \w it|strong="H5234"\w* \w is|strong="H1571"\w* \w right|strong="H3477"\w*. +\q1 +\v 12 \w The|strong="H8085"\w* \w hearing|strong="H8085"\w* \w ear|strong="H8085"\w*, \w and|strong="H3068"\w* \w the|strong="H8085"\w* \w seeing|strong="H7200"\w* \w eye|strong="H5869"\w*, +\q2 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w made|strong="H6213"\w* \w even|strong="H1571"\w* \w both|strong="H8147"\w* \w of|strong="H3068"\w* \w them|strong="H6213"\w*. +\q1 +\v 13 Don’t love \w sleep|strong="H8142"\w*, \w lest|strong="H6435"\w* \w you|strong="H6435"\w* \w come|strong="H3423"\w* \w to|strong="H5869"\w* \w poverty|strong="H3423"\w*. +\q2 \w Open|strong="H6491"\w* \w your|strong="H6491"\w* \w eyes|strong="H5869"\w*, \w and|strong="H3899"\w* \w you|strong="H6435"\w* \w shall|strong="H5869"\w* \w be|strong="H5869"\w* \w satisfied|strong="H7646"\w* \w with|strong="H7646"\w* \w bread|strong="H3899"\w*. +\q1 +\v 14 “\w It|strong="H7069"\w*’s no good, \w it|strong="H7069"\w*’s no good,” says \w the|strong="H1984"\w* \w buyer|strong="H7069"\w*; +\q2 \w but|strong="H7451"\w* \w when|strong="H1984"\w* \w he|strong="H7069"\w* \w is|strong="H7451"\w* gone \w his|strong="H1984"\w* way, then \w he|strong="H7069"\w* \w boasts|strong="H1984"\w*. +\q1 +\v 15 \w There|strong="H3426"\w* \w is|strong="H3426"\w* \w gold|strong="H2091"\w* \w and|strong="H2091"\w* \w abundance|strong="H7230"\w* \w of|strong="H3627"\w* \w rubies|strong="H6443"\w*, +\q2 \w but|strong="H3366"\w* \w the|strong="H3426"\w* \w lips|strong="H8193"\w* \w of|strong="H3627"\w* \w knowledge|strong="H1847"\w* \w are|strong="H3426"\w* \w a|strong="H3068"\w* rare \w jewel|strong="H3627"\w*. +\q1 +\v 16 \w Take|strong="H3947"\w* \w the|strong="H3588"\w* garment \w of|strong="H3947"\w* \w one|strong="H3588"\w* \w who|strong="H2114"\w* \w puts|strong="H2114"\w* \w up|strong="H3947"\w* \w collateral|strong="H6148"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w stranger|strong="H2114"\w*; +\q2 \w and|strong="H3947"\w* \w hold|strong="H2254"\w* \w him|strong="H3947"\w* \w in|strong="H3947"\w* \w pledge|strong="H2254"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* wayward \w woman|strong="H5237"\w*. +\q1 +\v 17 Fraudulent \w food|strong="H3899"\w* \w is|strong="H6310"\w* \w sweet|strong="H6156"\w* \w to|strong="H6310"\w* \w a|strong="H3068"\w* man, +\q2 but afterwards \w his|strong="H4390"\w* \w mouth|strong="H6310"\w* \w is|strong="H6310"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w gravel|strong="H2687"\w*. +\q1 +\v 18 \w Plans|strong="H4284"\w* \w are|strong="H4284"\w* \w established|strong="H3559"\w* \w by|strong="H3559"\w* \w advice|strong="H6098"\w*; +\q2 \w by|strong="H3559"\w* \w wise|strong="H8458"\w* \w guidance|strong="H8458"\w* \w you|strong="H6213"\w* \w wage|strong="H6213"\w* \w war|strong="H4421"\w*! +\q1 +\v 19 \w He|strong="H3808"\w* \w who|strong="H3808"\w* \w goes|strong="H1980"\w* \w about|strong="H1980"\w* \w as|strong="H1980"\w* \w a|strong="H3068"\w* tale-bearer \w reveals|strong="H1540"\w* \w secrets|strong="H5475"\w*; +\q2 therefore don’t keep \w company|strong="H5475"\w* \w with|strong="H1980"\w* \w him|strong="H1980"\w* \w who|strong="H3808"\w* \w opens|strong="H1540"\w* wide \w his|strong="H1540"\w* \w lips|strong="H8193"\w*. +\q1 +\v 20 Whoever \w curses|strong="H7043"\w* \w his|strong="H7043"\w* father \w or|strong="H2822"\w* \w his|strong="H7043"\w* mother, +\q2 \w his|strong="H7043"\w* \w lamp|strong="H5216"\w* \w shall|strong="H2822"\w* \w be|strong="H2822"\w* \w put|strong="H1846"\w* \w out|strong="H1846"\w* \w in|strong="H5216"\w* blackness \w of|strong="H5216"\w* \w darkness|strong="H2822"\w*. +\q1 +\v 21 \w An|strong="H1288"\w* \w inheritance|strong="H5159"\w* quickly gained \w at|strong="H3808"\w* \w the|strong="H1288"\w* \w beginning|strong="H7223"\w* +\q2 won’t \w be|strong="H3808"\w* \w blessed|strong="H1288"\w* \w in|strong="H5159"\w* \w the|strong="H1288"\w* end. +\q1 +\v 22 Don’t say, “\w I|strong="H3068"\w* \w will|strong="H3068"\w* \w pay|strong="H7999"\w* \w back|strong="H7999"\w* \w evil|strong="H7451"\w*.” +\q2 \w Wait|strong="H6960"\w* \w for|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w save|strong="H3467"\w* \w you|strong="H3467"\w*. +\q1 +\v 23 \w Yahweh|strong="H3068"\w* detests \w differing|strong="H2896"\w* weights, +\q2 \w and|strong="H3068"\w* \w dishonest|strong="H4820"\w* \w scales|strong="H3976"\w* \w are|strong="H3068"\w* \w not|strong="H3808"\w* \w pleasing|strong="H2896"\w*. +\q1 +\v 24 \w A|strong="H3068"\w* \w man|strong="H1397"\w*’s \w steps|strong="H4703"\w* \w are|strong="H4100"\w* \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w*; +\q2 \w how|strong="H4100"\w* \w then|strong="H4100"\w* \w can|strong="H4100"\w* \w man|strong="H1397"\w* understand \w his|strong="H3068"\w* \w way|strong="H1870"\w*? +\q1 +\v 25 It is \w a|strong="H3068"\w* \w snare|strong="H4170"\w* \w to|strong="H6944"\w* \w a|strong="H3068"\w* man \w to|strong="H6944"\w* \w make|strong="H1239"\w* \w a|strong="H3068"\w* rash dedication, +\q2 then later \w to|strong="H6944"\w* consider his \w vows|strong="H5088"\w*. +\q1 +\v 26 \w A|strong="H3068"\w* \w wise|strong="H2450"\w* \w king|strong="H4428"\w* \w winnows|strong="H2219"\w* \w out|strong="H5921"\w* \w the|strong="H5921"\w* \w wicked|strong="H7563"\w*, +\q2 \w and|strong="H7725"\w* \w drives|strong="H7725"\w* \w the|strong="H5921"\w* threshing wheel \w over|strong="H5921"\w* \w them|strong="H5921"\w*. +\q1 +\v 27 \w The|strong="H3605"\w* \w spirit|strong="H5397"\w* \w of|strong="H3068"\w* \w man|strong="H3605"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w lamp|strong="H5216"\w*, +\q2 \w searching|strong="H2664"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w innermost|strong="H2315"\w* \w parts|strong="H2315"\w*. +\q1 +\v 28 \w Love|strong="H2617"\w* \w and|strong="H4428"\w* \w faithfulness|strong="H2617"\w* \w keep|strong="H5341"\w* \w the|strong="H5341"\w* \w king|strong="H4428"\w* safe. +\q2 \w His|strong="H5341"\w* \w throne|strong="H3678"\w* \w is|strong="H2617"\w* sustained \w by|strong="H3678"\w* \w love|strong="H2617"\w*. +\q1 +\v 29 \w The|strong="H3581"\w* \w glory|strong="H8597"\w* \w of|strong="H2205"\w* young \w men|strong="H2205"\w* \w is|strong="H3581"\w* their \w strength|strong="H3581"\w*. +\q2 \w The|strong="H3581"\w* \w splendor|strong="H1926"\w* \w of|strong="H2205"\w* \w old|strong="H2205"\w* \w men|strong="H2205"\w* \w is|strong="H3581"\w* their \w gray|strong="H7872"\w* \w hair|strong="H7872"\w*. +\q1 +\v 30 \w Wounding|strong="H6482"\w* \w blows|strong="H4347"\w* \w cleanse|strong="H2315"\w* \w away|strong="H4838"\w* \w evil|strong="H7451"\w*, +\q2 \w and|strong="H7451"\w* \w beatings|strong="H2250"\w* purge \w the|strong="H7451"\w* \w innermost|strong="H2315"\w* \w parts|strong="H2315"\w*. +\b +\c 21 +\q1 +\v 1 \w The|strong="H3605"\w* \w king|strong="H4428"\w*’s \w heart|strong="H3820"\w* \w is|strong="H3068"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w like|strong="H3820"\w* \w the|strong="H3605"\w* watercourses. +\q2 \w He|strong="H3068"\w* \w turns|strong="H5921"\w* \w it|strong="H5921"\w* \w wherever|strong="H3605"\w* \w he|strong="H3068"\w* \w desires|strong="H2654"\w*. +\q1 +\v 2 \w Every|strong="H3605"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w is|strong="H3068"\w* \w right|strong="H3477"\w* \w in|strong="H3068"\w* \w his|strong="H3605"\w* \w own|strong="H5869"\w* \w eyes|strong="H5869"\w*, +\q2 \w but|strong="H1870"\w* \w Yahweh|strong="H3068"\w* \w weighs|strong="H8505"\w* \w the|strong="H3605"\w* \w hearts|strong="H3826"\w*. +\q1 +\v 3 \w To|strong="H3068"\w* \w do|strong="H6213"\w* \w righteousness|strong="H6666"\w* \w and|strong="H3068"\w* \w justice|strong="H4941"\w* +\q2 \w is|strong="H3068"\w* \w more|strong="H6213"\w* acceptable \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w than|strong="H3068"\w* \w sacrifice|strong="H2077"\w*. +\q1 +\v 4 \w A|strong="H3068"\w* \w high|strong="H7312"\w* \w look|strong="H5869"\w* \w and|strong="H5869"\w* \w a|strong="H3068"\w* \w proud|strong="H7342"\w* \w heart|strong="H3820"\w*, +\q2 \w the|strong="H5869"\w* \w lamp|strong="H5215"\w* \w of|strong="H5869"\w* \w the|strong="H5869"\w* \w wicked|strong="H7563"\w*, \w is|strong="H3820"\w* \w sin|strong="H2403"\w*. +\q1 +\v 5 \w The|strong="H3605"\w* \w plans|strong="H4284"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w diligent|strong="H2742"\w* surely lead \w to|strong="H3605"\w* \w profit|strong="H4195"\w*; +\q2 \w and|strong="H3605"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3605"\w* hasty surely rushes \w to|strong="H3605"\w* \w poverty|strong="H4270"\w*. +\q1 +\v 6 \w Getting|strong="H6467"\w* treasures \w by|strong="H6467"\w* \w a|strong="H3068"\w* \w lying|strong="H8267"\w* \w tongue|strong="H3956"\w* +\q2 \w is|strong="H3956"\w* \w a|strong="H3068"\w* \w fleeting|strong="H1892"\w* \w vapor|strong="H1892"\w* \w for|strong="H1245"\w* those who \w seek|strong="H1245"\w* \w death|strong="H4194"\w*. +\q1 +\v 7 \w The|strong="H3588"\w* \w violence|strong="H7701"\w* \w of|strong="H4941"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w* \w will|strong="H7563"\w* drive \w them|strong="H6213"\w* \w away|strong="H1641"\w*, +\q2 \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w refuse|strong="H3985"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w what|strong="H6213"\w* \w is|strong="H7563"\w* \w right|strong="H4941"\w*. +\q1 +\v 8 \w The|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w the|strong="H1870"\w* \w guilty|strong="H2054"\w* \w is|strong="H1870"\w* devious, +\q2 \w but|strong="H1870"\w* \w the|strong="H1870"\w* \w conduct|strong="H1870"\w* \w of|strong="H1870"\w* \w the|strong="H1870"\w* innocent \w is|strong="H1870"\w* \w upright|strong="H3477"\w*. +\q1 +\v 9 \w It|strong="H5921"\w* \w is|strong="H2896"\w* \w better|strong="H2896"\w* \w to|strong="H5921"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w corner|strong="H6438"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w housetop|strong="H1406"\w* +\q2 \w than|strong="H2896"\w* \w to|strong="H5921"\w* share \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w with|strong="H1004"\w* \w a|strong="H3068"\w* \w contentious|strong="H4079"\w* \w woman|strong="H1004"\w*. +\q1 +\v 10 \w The|strong="H3808"\w* \w soul|strong="H5315"\w* \w of|strong="H5869"\w* \w the|strong="H3808"\w* \w wicked|strong="H7563"\w* desires \w evil|strong="H7451"\w*; +\q2 \w his|strong="H3808"\w* \w neighbor|strong="H7453"\w* \w finds|strong="H2603"\w* \w no|strong="H3808"\w* \w mercy|strong="H2603"\w* \w in|strong="H5315"\w* \w his|strong="H3808"\w* \w eyes|strong="H5869"\w*. +\q1 +\v 11 \w When|strong="H6064"\w* \w the|strong="H3947"\w* \w mocker|strong="H3887"\w* \w is|strong="H1847"\w* \w punished|strong="H6064"\w*, \w the|strong="H3947"\w* \w simple|strong="H6612"\w* gains \w wisdom|strong="H7919"\w*. +\q2 \w When|strong="H6064"\w* \w the|strong="H3947"\w* \w wise|strong="H2450"\w* \w is|strong="H1847"\w* \w instructed|strong="H7919"\w*, \w he|strong="H3947"\w* \w receives|strong="H3947"\w* \w knowledge|strong="H1847"\w*. +\q1 +\v 12 \w The|strong="H1004"\w* \w Righteous|strong="H6662"\w* \w One|strong="H6662"\w* \w considers|strong="H7919"\w* \w the|strong="H1004"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H1004"\w* \w wicked|strong="H7563"\w*, +\q2 \w and|strong="H1004"\w* brings \w the|strong="H1004"\w* \w wicked|strong="H7563"\w* \w to|strong="H1004"\w* \w ruin|strong="H7451"\w*. +\q1 +\v 13 Whoever stops \w his|strong="H7121"\w* ears \w at|strong="H3808"\w* \w the|strong="H7121"\w* \w cry|strong="H7121"\w* \w of|strong="H2201"\w* \w the|strong="H7121"\w* \w poor|strong="H1800"\w*, +\q2 \w he|strong="H1931"\w* \w will|strong="H1571"\w* \w also|strong="H1571"\w* \w cry|strong="H7121"\w* \w out|strong="H3808"\w*, \w but|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w heard|strong="H6030"\w*. +\q1 +\v 14 \w A|strong="H3068"\w* \w gift|strong="H4976"\w* \w in|strong="H4976"\w* \w secret|strong="H5643"\w* pacifies \w anger|strong="H2534"\w*, +\q2 \w and|strong="H2534"\w* \w a|strong="H3068"\w* \w bribe|strong="H7810"\w* \w in|strong="H4976"\w* the cloak, \w strong|strong="H5794"\w* \w wrath|strong="H2534"\w*. +\q1 +\v 15 \w It|strong="H6213"\w* \w is|strong="H6662"\w* \w joy|strong="H8057"\w* \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w righteous|strong="H6662"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w justice|strong="H4941"\w*; +\q2 \w but|strong="H6662"\w* \w it|strong="H6213"\w* \w is|strong="H6662"\w* \w a|strong="H3068"\w* \w destruction|strong="H4288"\w* \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w workers|strong="H6466"\w* \w of|strong="H6466"\w* iniquity. +\q1 +\v 16 \w The|strong="H1870"\w* \w man|strong="H7919"\w* \w who|strong="H7919"\w* \w wanders|strong="H8582"\w* out \w of|strong="H1870"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w understanding|strong="H7919"\w* +\q2 \w shall|strong="H7919"\w* \w rest|strong="H5117"\w* \w in|strong="H1870"\w* \w the|strong="H1870"\w* \w assembly|strong="H6951"\w* \w of|strong="H1870"\w* \w the|strong="H1870"\w* \w departed|strong="H7496"\w* \w spirits|strong="H7496"\w*. +\q1 +\v 17 \w He|strong="H3808"\w* \w who|strong="H3808"\w* loves \w pleasure|strong="H8057"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w a|strong="H3068"\w* \w poor|strong="H4270"\w* man. +\q2 \w He|strong="H3808"\w* \w who|strong="H3808"\w* loves \w wine|strong="H3196"\w* \w and|strong="H8081"\w* \w oil|strong="H8081"\w* won’t \w be|strong="H3808"\w* \w rich|strong="H6238"\w*. +\q1 +\v 18 \w The|strong="H8478"\w* \w wicked|strong="H7563"\w* \w is|strong="H7563"\w* \w a|strong="H3068"\w* \w ransom|strong="H3724"\w* \w for|strong="H8478"\w* \w the|strong="H8478"\w* \w righteous|strong="H6662"\w*, +\q2 \w the|strong="H8478"\w* treacherous \w for|strong="H8478"\w* \w the|strong="H8478"\w* \w upright|strong="H3477"\w*. +\q1 +\v 19 \w It|strong="H2896"\w* \w is|strong="H2896"\w* \w better|strong="H2896"\w* \w to|strong="H2896"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w a|strong="H3068"\w* \w desert|strong="H4057"\w* land, +\q2 \w than|strong="H2896"\w* \w with|strong="H3427"\w* \w a|strong="H3068"\w* \w contentious|strong="H4066"\w* \w and|strong="H2896"\w* fretful woman. +\q1 +\v 20 There \w is|strong="H3684"\w* \w precious|strong="H2530"\w* treasure \w and|strong="H8081"\w* \w oil|strong="H8081"\w* \w in|strong="H2450"\w* \w the|strong="H1104"\w* \w dwelling|strong="H5116"\w* \w of|strong="H8081"\w* \w the|strong="H1104"\w* \w wise|strong="H2450"\w*, +\q2 \w but|strong="H1104"\w* \w a|strong="H3068"\w* \w foolish|strong="H3684"\w* \w man|strong="H2450"\w* \w swallows|strong="H1104"\w* it \w up|strong="H1104"\w*. +\q1 +\v 21 \w He|strong="H2416"\w* \w who|strong="H4672"\w* \w follows|strong="H7291"\w* \w after|strong="H7291"\w* \w righteousness|strong="H6666"\w* \w and|strong="H2617"\w* \w kindness|strong="H2617"\w* +\q2 \w finds|strong="H4672"\w* \w life|strong="H2416"\w*, \w righteousness|strong="H6666"\w*, \w and|strong="H2617"\w* \w honor|strong="H3519"\w*. +\q1 +\v 22 \w A|strong="H3068"\w* \w wise|strong="H2450"\w* \w man|strong="H1368"\w* \w scales|strong="H5927"\w* \w the|strong="H5927"\w* \w city|strong="H5892"\w* \w of|strong="H5892"\w* \w the|strong="H5927"\w* \w mighty|strong="H1368"\w*, +\q2 \w and|strong="H5892"\w* \w brings|strong="H3381"\w* \w down|strong="H3381"\w* \w the|strong="H5927"\w* \w strength|strong="H5797"\w* \w of|strong="H5892"\w* \w its|strong="H5927"\w* \w confidence|strong="H4009"\w*. +\q1 +\v 23 \w Whoever|strong="H8104"\w* \w guards|strong="H8104"\w* \w his|strong="H8104"\w* \w mouth|strong="H6310"\w* \w and|strong="H6310"\w* \w his|strong="H8104"\w* \w tongue|strong="H3956"\w* +\q2 \w keeps|strong="H8104"\w* \w his|strong="H8104"\w* \w soul|strong="H5315"\w* \w from|strong="H5315"\w* \w troubles|strong="H6869"\w*. +\q1 +\v 24 \w The|strong="H6213"\w* \w proud|strong="H2086"\w* \w and|strong="H6213"\w* \w arrogant|strong="H2086"\w* man—“Scoffer” \w is|strong="H8034"\w* \w his|strong="H6213"\w* \w name|strong="H8034"\w*— +\q2 \w he|strong="H6213"\w* \w works|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w arrogance|strong="H2087"\w* \w of|strong="H8034"\w* \w pride|strong="H2087"\w*. +\q1 +\v 25 \w The|strong="H3588"\w* \w desire|strong="H8378"\w* \w of|strong="H3027"\w* \w the|strong="H3588"\w* \w sluggard|strong="H6102"\w* \w kills|strong="H4191"\w* \w him|strong="H3027"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H3027"\w* \w hands|strong="H3027"\w* \w refuse|strong="H3985"\w* \w to|strong="H4191"\w* \w labor|strong="H3027"\w*. +\q1 +\v 26 \w There|strong="H3117"\w* \w are|strong="H3117"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* covet \w greedily|strong="H8378"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w* \w long|strong="H3117"\w*; +\q2 \w but|strong="H3808"\w* \w the|strong="H3605"\w* \w righteous|strong="H6662"\w* \w give|strong="H5414"\w* \w and|strong="H3117"\w* don’t \w withhold|strong="H2820"\w*. +\q1 +\v 27 \w The|strong="H3588"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H2077"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w* \w is|strong="H7563"\w* \w an|strong="H3588"\w* \w abomination|strong="H8441"\w*— +\q2 \w how|strong="H3588"\w* much \w more|strong="H3588"\w*, \w when|strong="H3588"\w* \w he|strong="H3588"\w* brings \w it|strong="H3588"\w* \w with|strong="H2077"\w* \w a|strong="H3068"\w* \w wicked|strong="H7563"\w* \w mind|strong="H2154"\w*! +\q1 +\v 28 \w A|strong="H3068"\w* \w false|strong="H3577"\w* \w witness|strong="H5707"\w* \w will|strong="H8085"\w* perish. +\q2 \w A|strong="H3068"\w* man \w who|strong="H5707"\w* \w listens|strong="H8085"\w* \w speaks|strong="H1696"\w* \w to|strong="H1696"\w* eternity. +\q1 +\v 29 \w A|strong="H3068"\w* \w wicked|strong="H7563"\w* \w man|strong="H7563"\w* hardens \w his|strong="H6440"\w* \w face|strong="H6440"\w*; +\q2 \w but|strong="H7563"\w* \w as|strong="H6440"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* \w upright|strong="H3477"\w*, \w he|strong="H1931"\w* \w establishes|strong="H3559"\w* \w his|strong="H6440"\w* \w ways|strong="H1870"\w*. +\q1 +\v 30 \w There|strong="H3068"\w* \w is|strong="H3068"\w* no \w wisdom|strong="H2451"\w* \w nor|strong="H8394"\w* \w understanding|strong="H8394"\w* +\q2 \w nor|strong="H8394"\w* \w counsel|strong="H6098"\w* \w against|strong="H5048"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 31 \w The|strong="H3068"\w* \w horse|strong="H5483"\w* \w is|strong="H3068"\w* \w prepared|strong="H3559"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w battle|strong="H4421"\w*; +\q2 \w but|strong="H3068"\w* \w victory|strong="H8668"\w* \w is|strong="H3068"\w* \w with|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\b +\c 22 +\q1 +\v 1 \w A|strong="H3068"\w* \w good|strong="H2896"\w* \w name|strong="H8034"\w* \w is|strong="H8034"\w* \w more|strong="H7227"\w* desirable \w than|strong="H2896"\w* \w great|strong="H7227"\w* \w riches|strong="H6239"\w*, +\q2 \w and|strong="H3701"\w* \w loving|strong="H2896"\w* \w favor|strong="H2580"\w* \w is|strong="H8034"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w silver|strong="H3701"\w* \w and|strong="H3701"\w* \w gold|strong="H2091"\w*. +\q1 +\v 2 \w The|strong="H3605"\w* \w rich|strong="H6223"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w poor|strong="H7326"\w* \w have|strong="H3068"\w* \w this|strong="H6213"\w* \w in|strong="H3068"\w* \w common|strong="H6298"\w*: +\q2 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w the|strong="H3605"\w* \w maker|strong="H6213"\w* \w of|strong="H3068"\w* \w them|strong="H6213"\w* \w all|strong="H3605"\w*. +\q1 +\v 3 \w A|strong="H3068"\w* \w prudent|strong="H6175"\w* \w man|strong="H6175"\w* \w sees|strong="H7200"\w* \w danger|strong="H7451"\w* \w and|strong="H7200"\w* \w hides|strong="H5641"\w* himself; +\q2 \w but|strong="H7200"\w* \w the|strong="H7200"\w* \w simple|strong="H6612"\w* \w pass|strong="H5674"\w* \w on|strong="H5674"\w*, \w and|strong="H7200"\w* suffer \w for|strong="H7451"\w* \w it|strong="H7200"\w*. +\q1 +\v 4 \w The|strong="H3068"\w* result \w of|strong="H3068"\w* \w humility|strong="H6038"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w fear|strong="H3374"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* +\q2 \w is|strong="H3068"\w* \w wealth|strong="H6239"\w*, \w honor|strong="H3519"\w*, \w and|strong="H3068"\w* \w life|strong="H2416"\w*. +\q1 +\v 5 \w Thorns|strong="H6791"\w* \w and|strong="H1870"\w* \w snares|strong="H6341"\w* \w are|strong="H1992"\w* \w in|strong="H5315"\w* \w the|strong="H8104"\w* \w path|strong="H1870"\w* \w of|strong="H1870"\w* \w the|strong="H8104"\w* wicked; +\q2 \w whoever|strong="H8104"\w* \w guards|strong="H8104"\w* \w his|strong="H8104"\w* \w soul|strong="H5315"\w* stays \w far|strong="H7368"\w* \w from|strong="H5315"\w* \w them|strong="H1992"\w*. +\q1 +\v 6 \w Train|strong="H2596"\w* \w up|strong="H5921"\w* \w a|strong="H3068"\w* \w child|strong="H5288"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w* \w he|strong="H3588"\w* \w should|strong="H3588"\w* \w go|strong="H5493"\w*, +\q2 \w and|strong="H1870"\w* \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H1571"\w* \w old|strong="H2204"\w* \w he|strong="H3588"\w* \w will|strong="H1571"\w* \w not|strong="H3808"\w* \w depart|strong="H5493"\w* \w from|strong="H4480"\w* \w it|strong="H5921"\w*. +\q1 +\v 7 \w The|strong="H5650"\w* \w rich|strong="H6223"\w* \w rule|strong="H4910"\w* \w over|strong="H4910"\w* \w the|strong="H5650"\w* \w poor|strong="H7326"\w*. +\q2 \w The|strong="H5650"\w* \w borrower|strong="H3867"\w* \w is|strong="H5650"\w* \w servant|strong="H5650"\w* \w to|strong="H5650"\w* \w the|strong="H5650"\w* \w lender|strong="H3867"\w*. +\q1 +\v 8 He who \w sows|strong="H2232"\w* \w wickedness|strong="H5766"\w* reaps trouble, +\q2 \w and|strong="H7626"\w* \w the|strong="H3615"\w* \w rod|strong="H7626"\w* \w of|strong="H7626"\w* \w his|strong="H3615"\w* \w fury|strong="H5678"\w* \w will|strong="H5678"\w* be \w destroyed|strong="H3615"\w*. +\q1 +\v 9 \w He|strong="H1931"\w* \w who|strong="H1931"\w* \w has|strong="H3588"\w* \w a|strong="H3068"\w* \w generous|strong="H2896"\w* \w eye|strong="H5869"\w* \w will|strong="H5869"\w* \w be|strong="H1288"\w* \w blessed|strong="H1288"\w*, +\q2 \w for|strong="H3588"\w* \w he|strong="H1931"\w* shares \w his|strong="H5414"\w* \w food|strong="H3899"\w* \w with|strong="H3899"\w* \w the|strong="H3588"\w* \w poor|strong="H1800"\w*. +\q1 +\v 10 \w Drive|strong="H1644"\w* \w out|strong="H3318"\w* \w the|strong="H3318"\w* \w mocker|strong="H3887"\w*, \w and|strong="H3318"\w* \w strife|strong="H4066"\w* \w will|strong="H7673"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*; +\q2 yes, quarrels \w and|strong="H3318"\w* insults \w will|strong="H7673"\w* \w stop|strong="H7673"\w*. +\q1 +\v 11 \w He|strong="H4428"\w* \w who|strong="H4428"\w* loves \w purity|strong="H2889"\w* \w of|strong="H4428"\w* \w heart|strong="H3820"\w* \w and|strong="H4428"\w* speaks gracefully +\q2 \w is|strong="H3820"\w* \w the|strong="H3820"\w* \w king|strong="H4428"\w*’s \w friend|strong="H7453"\w*. +\q1 +\v 12 \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w* \w watch|strong="H5341"\w* \w over|strong="H3068"\w* \w knowledge|strong="H1847"\w*, +\q2 \w but|strong="H3068"\w* \w he|strong="H3068"\w* frustrates \w the|strong="H3068"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* unfaithful. +\q1 +\v 13 \w The|strong="H8432"\w* \w sluggard|strong="H6102"\w* says, “\w There|strong="H8432"\w* \w is|strong="H6102"\w* \w a|strong="H3068"\w* lion \w outside|strong="H2351"\w*! +\q2 \w I|strong="H8432"\w* will be \w killed|strong="H7523"\w* \w in|strong="H8432"\w* \w the|strong="H8432"\w* \w streets|strong="H2351"\w*!” +\q1 +\v 14 \w The|strong="H3068"\w* \w mouth|strong="H6310"\w* \w of|strong="H3068"\w* \w an|strong="H8033"\w* \w adulteress|strong="H2114"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w deep|strong="H6013"\w* \w pit|strong="H7745"\w*. +\q2 \w He|strong="H8033"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* under \w Yahweh|strong="H3068"\w*’s wrath \w will|strong="H3068"\w* \w fall|strong="H5307"\w* \w into|strong="H5307"\w* \w it|strong="H8033"\w*. +\q1 +\v 15 Folly \w is|strong="H3820"\w* \w bound|strong="H7194"\w* \w up|strong="H4480"\w* \w in|strong="H3820"\w* \w the|strong="H4480"\w* \w heart|strong="H3820"\w* \w of|strong="H7626"\w* \w a|strong="H3068"\w* \w child|strong="H5288"\w*; +\q2 \w the|strong="H4480"\w* \w rod|strong="H7626"\w* \w of|strong="H7626"\w* \w discipline|strong="H4148"\w* drives \w it|strong="H7368"\w* \w far|strong="H7368"\w* \w from|strong="H4480"\w* \w him|strong="H4480"\w*. +\q1 +\v 16 \w Whoever|strong="H4270"\w* \w oppresses|strong="H6231"\w* \w the|strong="H5414"\w* \w poor|strong="H1800"\w* \w for|strong="H5414"\w* \w his|strong="H5414"\w* own \w increase|strong="H7235"\w* \w and|strong="H7235"\w* \w whoever|strong="H4270"\w* \w gives|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w rich|strong="H6223"\w*, +\q2 both come \w to|strong="H5414"\w* \w poverty|strong="H4270"\w*. +\b +\q1 +\v 17 \w Turn|strong="H5186"\w* \w your|strong="H5186"\w* \w ear|strong="H8085"\w*, \w and|strong="H8085"\w* \w listen|strong="H8085"\w* \w to|strong="H3820"\w* \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H8085"\w* \w wise|strong="H2450"\w*. +\q2 \w Apply|strong="H7896"\w* \w your|strong="H5186"\w* \w heart|strong="H3820"\w* \w to|strong="H3820"\w* \w my|strong="H8085"\w* teaching. +\q1 +\v 18 \w For|strong="H3588"\w* \w it|strong="H5921"\w* \w is|strong="H8193"\w* \w a|strong="H3068"\w* \w pleasant|strong="H5273"\w* \w thing|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w keep|strong="H8104"\w* \w them|strong="H5921"\w* \w within|strong="H5921"\w* \w you|strong="H3588"\w*, +\q2 \w if|strong="H3588"\w* \w all|strong="H3162"\w* \w of|strong="H5921"\w* \w them|strong="H5921"\w* \w are|strong="H8193"\w* \w ready|strong="H3559"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w lips|strong="H8193"\w*. +\q1 +\v 19 \w I|strong="H3117"\w* \w teach|strong="H3045"\w* \w you|strong="H3117"\w* \w today|strong="H3117"\w*, \w even|strong="H3068"\w* \w you|strong="H3117"\w*, +\q2 \w so|strong="H1961"\w* \w that|strong="H3045"\w* \w your|strong="H3068"\w* \w trust|strong="H4009"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 20 Haven’t \w I|strong="H3808"\w* \w written|strong="H3789"\w* \w to|strong="H3808"\w* \w you|strong="H3808"\w* thirty \w excellent|strong="H8032"\w* \w things|strong="H3808"\w* +\q2 \w of|strong="H1847"\w* counsel \w and|strong="H1847"\w* \w knowledge|strong="H1847"\w*, +\q1 +\v 21 \w To|strong="H7725"\w* \w teach|strong="H3045"\w* \w you|strong="H7971"\w* \w truth|strong="H7189"\w*, reliable words, +\q2 \w to|strong="H7725"\w* \w give|strong="H7725"\w* sound \w answers|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H7725"\w* ones \w who|strong="H3045"\w* \w sent|strong="H7971"\w* \w you|strong="H7971"\w*? +\b +\q1 +\v 22 Don’t \w exploit|strong="H1497"\w* \w the|strong="H3588"\w* \w poor|strong="H6041"\w* \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w poor|strong="H6041"\w*; +\q2 \w and|strong="H6041"\w* don’t \w crush|strong="H1792"\w* \w the|strong="H3588"\w* \w needy|strong="H6041"\w* \w in|strong="H1931"\w* \w court|strong="H8179"\w*; +\q1 +\v 23 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w plead|strong="H7378"\w* \w their|strong="H3068"\w* \w case|strong="H7379"\w*, +\q2 \w and|strong="H3068"\w* plunder \w the|strong="H3588"\w* \w life|strong="H5315"\w* \w of|strong="H3068"\w* \w those|strong="H5315"\w* \w who|strong="H3068"\w* plunder \w them|strong="H3588"\w*. +\b +\q1 +\v 24 Don’t befriend \w a|strong="H3068"\w* \w hot-tempered|strong="H2534"\w* \w man|strong="H1167"\w*. +\q2 Don’t \w associate|strong="H7462"\w* \w with|strong="H2534"\w* \w one|strong="H3808"\w* \w who|strong="H1167"\w* harbors \w anger|strong="H2534"\w*, +\q1 +\v 25 \w lest|strong="H6435"\w* \w you|strong="H3947"\w* learn \w his|strong="H3947"\w* ways +\q2 \w and|strong="H3947"\w* ensnare \w your|strong="H3947"\w* \w soul|strong="H5315"\w*. +\b +\q1 +\v 26 Don’t \w you|strong="H3709"\w* \w be|strong="H1961"\w* \w one|strong="H1961"\w* \w of|strong="H3709"\w* \w those|strong="H1961"\w* who \w strike|strong="H8628"\w* \w hands|strong="H3709"\w*, +\q2 \w of|strong="H3709"\w* \w those|strong="H1961"\w* who \w are|strong="H1961"\w* \w collateral|strong="H6148"\w* \w for|strong="H1961"\w* \w debts|strong="H4859"\w*. +\q1 +\v 27 If \w you|strong="H3947"\w* don’t \w have|strong="H3947"\w* means \w to|strong="H3947"\w* \w pay|strong="H7999"\w*, +\q2 \w why|strong="H4100"\w* \w should|strong="H4100"\w* \w he|strong="H3947"\w* \w take|strong="H3947"\w* \w away|strong="H3947"\w* \w your|strong="H3947"\w* \w bed|strong="H4904"\w* \w from|strong="H3947"\w* \w under|strong="H8478"\w* \w you|strong="H3947"\w*? +\b +\q1 +\v 28 Don’t \w move|strong="H5253"\w* \w the|strong="H6213"\w* \w ancient|strong="H5769"\w* \w boundary|strong="H1366"\w* stone +\q2 \w which|strong="H1366"\w* \w your|strong="H6213"\w* fathers have \w set|strong="H6213"\w* \w up|strong="H6213"\w*. +\b +\q1 +\v 29 Do \w you|strong="H6440"\w* \w see|strong="H2372"\w* \w a|strong="H3068"\w* \w man|strong="H6440"\w* \w skilled|strong="H4106"\w* \w in|strong="H4428"\w* \w his|strong="H6440"\w* \w work|strong="H4399"\w*? +\q2 \w He|strong="H6440"\w* \w will|strong="H4428"\w* \w serve|strong="H6440"\w* \w kings|strong="H4428"\w*. +\q2 \w He|strong="H6440"\w* won’t \w serve|strong="H6440"\w* \w obscure|strong="H2823"\w* \w men|strong="H2823"\w*. +\b +\c 23 +\q1 +\v 1 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w sit|strong="H3427"\w* \w to|strong="H6440"\w* \w eat|strong="H3898"\w* \w with|strong="H3427"\w* \w a|strong="H3068"\w* \w ruler|strong="H4910"\w*, +\q2 consider diligently \w what|strong="H3588"\w* \w is|strong="H6440"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*; +\q1 +\v 2 \w put|strong="H7760"\w* \w a|strong="H3068"\w* \w knife|strong="H7915"\w* \w to|strong="H5315"\w* \w your|strong="H7760"\w* \w throat|strong="H3930"\w* +\q2 \w if|strong="H7760"\w* \w you|strong="H7760"\w* \w are|strong="H5315"\w* \w a|strong="H3068"\w* \w man|strong="H1167"\w* \w given|strong="H1167"\w* \w to|strong="H5315"\w* \w appetite|strong="H5315"\w*. +\q1 +\v 3 Don’t \w be|strong="H3899"\w* desirous \w of|strong="H3899"\w* \w his|strong="H1931"\w* \w dainties|strong="H4303"\w*, +\q2 since \w they|strong="H1931"\w* are \w deceitful|strong="H3577"\w* \w food|strong="H3899"\w*. +\q1 +\v 4 Don’t \w weary|strong="H3021"\w* yourself \w to|strong="H2308"\w* be \w rich|strong="H6238"\w*. +\q2 \w In|strong="H3021"\w* your wisdom, show restraint. +\q1 +\v 5 \w Why|strong="H3588"\w* \w do|strong="H6213"\w* \w you|strong="H3588"\w* \w set|strong="H6213"\w* \w your|strong="H6213"\w* \w eyes|strong="H5869"\w* \w on|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H5869"\w* \w is|strong="H5869"\w* \w not|strong="H6213"\w*? +\q2 \w For|strong="H3588"\w* \w it|strong="H3588"\w* \w certainly|strong="H3588"\w* sprouts \w wings|strong="H3671"\w* \w like|strong="H6213"\w* \w an|strong="H6213"\w* \w eagle|strong="H5404"\w* \w and|strong="H8064"\w* \w flies|strong="H5774"\w* \w in|strong="H6213"\w* \w the|strong="H3588"\w* \w sky|strong="H8064"\w*. +\q1 +\v 6 Don’t \w eat|strong="H3898"\w* \w the|strong="H5869"\w* \w food|strong="H3899"\w* \w of|strong="H5869"\w* \w him|strong="H5869"\w* who \w has|strong="H5869"\w* \w a|strong="H3068"\w* stingy \w eye|strong="H5869"\w*, +\q2 \w and|strong="H3899"\w* don’t crave \w his|strong="H5869"\w* \w delicacies|strong="H4303"\w*, +\q2 +\v 7 \w for|strong="H3588"\w* \w as|strong="H3644"\w* \w he|strong="H1931"\w* \w thinks|strong="H8176"\w* about \w the|strong="H3588"\w* cost, \w so|strong="H3651"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w*. +\q2 “Eat \w and|strong="H8354"\w* \w drink|strong="H8354"\w*!” \w he|strong="H1931"\w* \w says|strong="H8354"\w* \w to|strong="H3820"\w* \w you|strong="H3588"\w*, +\q2 \w but|strong="H3588"\w* \w his|strong="H3588"\w* \w heart|strong="H3820"\w* \w is|strong="H1931"\w* \w not|strong="H1077"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*. +\q1 +\v 8 \w You|strong="H7843"\w* \w will|strong="H1697"\w* \w vomit|strong="H6958"\w* \w up|strong="H6958"\w* \w the|strong="H1697"\w* \w morsel|strong="H6595"\w* \w which|strong="H1697"\w* \w you|strong="H7843"\w* \w have|strong="H1697"\w* eaten +\q2 \w and|strong="H1697"\w* \w waste|strong="H7843"\w* \w your|strong="H7843"\w* \w pleasant|strong="H5273"\w* \w words|strong="H1697"\w*. +\b +\q1 +\v 9 Don’t \w speak|strong="H1696"\w* \w in|strong="H1696"\w* \w the|strong="H3588"\w* ears \w of|strong="H1696"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w*, +\q2 \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H3684"\w* despise \w the|strong="H3588"\w* \w wisdom|strong="H7922"\w* \w of|strong="H1696"\w* \w your|strong="H3588"\w* \w words|strong="H4405"\w*. +\b +\q1 +\v 10 Don’t \w move|strong="H5253"\w* \w the|strong="H7704"\w* \w ancient|strong="H5769"\w* \w boundary|strong="H1366"\w* stone. +\q2 Don’t \w encroach|strong="H5253"\w* \w on|strong="H1366"\w* \w the|strong="H7704"\w* \w fields|strong="H7704"\w* \w of|strong="H1366"\w* \w the|strong="H7704"\w* \w fatherless|strong="H3490"\w*, +\q1 +\v 11 \w for|strong="H3588"\w* \w their|strong="H3588"\w* Defender \w is|strong="H1931"\w* \w strong|strong="H2389"\w*. +\q2 \w He|strong="H1931"\w* \w will|strong="H1931"\w* \w plead|strong="H7378"\w* \w their|strong="H3588"\w* \w case|strong="H7379"\w* \w against|strong="H7378"\w* \w you|strong="H3588"\w*. +\b +\q1 +\v 12 Apply your \w heart|strong="H3820"\w* \w to|strong="H3820"\w* \w instruction|strong="H4148"\w*, +\q2 \w and|strong="H3820"\w* your ears \w to|strong="H3820"\w* \w the|strong="H1847"\w* words \w of|strong="H3820"\w* \w knowledge|strong="H1847"\w*. +\q1 +\v 13 Don’t \w withhold|strong="H4513"\w* \w correction|strong="H4148"\w* \w from|strong="H4513"\w* \w a|strong="H3068"\w* \w child|strong="H5288"\w*. +\q2 \w If|strong="H3588"\w* \w you|strong="H3588"\w* \w punish|strong="H5221"\w* \w him|strong="H5221"\w* \w with|strong="H4191"\w* \w the|strong="H3588"\w* \w rod|strong="H7626"\w*, \w he|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*. +\q1 +\v 14 \w Punish|strong="H5221"\w* \w him|strong="H5221"\w* \w with|strong="H5315"\w* \w the|strong="H5221"\w* \w rod|strong="H7626"\w*, +\q2 \w and|strong="H5315"\w* \w save|strong="H5337"\w* \w his|strong="H5221"\w* \w soul|strong="H5315"\w* \w from|strong="H5315"\w* \w Sheol|strong="H7585"\w*.\f + \fr 23:14 \ft Sheol is the place of the dead.\f* +\b +\q1 +\v 15 \w My|strong="H1571"\w* \w son|strong="H1121"\w*, \w if|strong="H1121"\w* \w your|strong="H1571"\w* \w heart|strong="H3820"\w* \w is|strong="H3820"\w* \w wise|strong="H2449"\w*, +\q2 \w then|strong="H1571"\w* \w my|strong="H1571"\w* \w heart|strong="H3820"\w* \w will|strong="H1571"\w* \w be|strong="H1121"\w* \w glad|strong="H8055"\w*, \w even|strong="H1571"\w* \w mine|strong="H1571"\w*. +\q1 +\v 16 Yes, \w my|strong="H1696"\w* \w heart|strong="H8193"\w* \w will|strong="H8193"\w* \w rejoice|strong="H5937"\w* +\q2 \w when|strong="H1696"\w* \w your|strong="H1696"\w* \w lips|strong="H8193"\w* \w speak|strong="H1696"\w* \w what|strong="H1696"\w* \w is|strong="H8193"\w* \w right|strong="H4339"\w*. +\q1 +\v 17 Don’t let \w your|strong="H3068"\w* \w heart|strong="H3820"\w* \w envy|strong="H7065"\w* \w sinners|strong="H2400"\w*, +\q2 \w but|strong="H3588"\w* \w rather|strong="H3588"\w* \w fear|strong="H3374"\w* \w Yahweh|strong="H3068"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w* \w long|strong="H3117"\w*. +\q1 +\v 18 \w Indeed|strong="H3588"\w* \w surely|strong="H3588"\w* \w there|strong="H3426"\w* \w is|strong="H3426"\w* \w a|strong="H3068"\w* future \w hope|strong="H8615"\w*, +\q2 \w and|strong="H3772"\w* \w your|strong="H3588"\w* \w hope|strong="H8615"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3426"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*. +\q1 +\v 19 \w Listen|strong="H8085"\w*, \w my|strong="H8085"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w be|strong="H1121"\w* \w wise|strong="H2449"\w*, +\q2 \w and|strong="H1121"\w* \w keep|strong="H8085"\w* \w your|strong="H8085"\w* \w heart|strong="H3820"\w* \w on|strong="H1870"\w* \w the|strong="H8085"\w* right \w path|strong="H1870"\w*! +\q1 +\v 20 Don’t \w be|strong="H1961"\w* among ones drinking \w too|strong="H1961"\w* much \w wine|strong="H3196"\w*, +\q2 \w or|strong="H3196"\w* \w those|strong="H1961"\w* who gorge themselves \w on|strong="H1961"\w* \w meat|strong="H1320"\w*; +\q1 +\v 21 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w drunkard|strong="H5433"\w* \w and|strong="H3423"\w* \w the|strong="H3588"\w* \w glutton|strong="H2151"\w* \w shall|strong="H5124"\w* \w become|strong="H3423"\w* \w poor|strong="H3423"\w*; +\q2 \w and|strong="H3423"\w* \w drowsiness|strong="H5124"\w* \w clothes|strong="H3847"\w* \w them|strong="H3423"\w* \w in|strong="H3847"\w* \w rags|strong="H7168"\w*. +\q1 +\v 22 \w Listen|strong="H8085"\w* \w to|strong="H3205"\w* \w your|strong="H8085"\w* \w father|strong="H3205"\w* \w who|strong="H2088"\w* \w gave|strong="H3205"\w* \w you|strong="H3588"\w* life, +\q2 \w and|strong="H8085"\w* don’t despise \w your|strong="H8085"\w* mother \w when|strong="H3588"\w* \w she|strong="H3588"\w* \w is|strong="H2088"\w* \w old|strong="H2204"\w*. +\q1 +\v 23 \w Buy|strong="H7069"\w* \w the|strong="H7069"\w* truth, \w and|strong="H2451"\w* don’t \w sell|strong="H4376"\w* \w it|strong="H7069"\w*. +\q2 \w Get|strong="H7069"\w* \w wisdom|strong="H2451"\w*, \w discipline|strong="H4148"\w*, \w and|strong="H2451"\w* understanding. +\q1 +\v 24 \w The|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w* \w the|strong="H3205"\w* \w righteous|strong="H6662"\w* \w has|strong="H3205"\w* great \w joy|strong="H8055"\w*. +\q2 \w Whoever|strong="H1523"\w* \w fathers|strong="H3205"\w* \w a|strong="H3068"\w* \w wise|strong="H2450"\w* \w child|strong="H3205"\w* delights \w in|strong="H8055"\w* \w him|strong="H3205"\w*. +\q1 +\v 25 \w Let|strong="H8055"\w* \w your|strong="H3205"\w* \w father|strong="H3205"\w* \w and|strong="H8055"\w* \w your|strong="H3205"\w* mother be \w glad|strong="H8055"\w*! +\q2 \w Let|strong="H8055"\w* \w her|strong="H3205"\w* \w who|strong="H3205"\w* \w bore|strong="H3205"\w* \w you|strong="H3205"\w* \w rejoice|strong="H8055"\w*! +\q1 +\v 26 \w My|strong="H5414"\w* \w son|strong="H1121"\w*, \w give|strong="H5414"\w* \w me|strong="H5414"\w* \w your|strong="H5414"\w* \w heart|strong="H3820"\w*; +\q2 \w and|strong="H1121"\w* \w let|strong="H5414"\w* \w your|strong="H5414"\w* \w eyes|strong="H5869"\w* keep \w in|strong="H1121"\w* \w my|strong="H5414"\w* \w ways|strong="H1870"\w*. +\q1 +\v 27 \w For|strong="H3588"\w* \w a|strong="H3068"\w* \w prostitute|strong="H2181"\w* \w is|strong="H3588"\w* \w a|strong="H3068"\w* \w deep|strong="H6013"\w* \w pit|strong="H7745"\w*; +\q2 \w and|strong="H6862"\w* \w a|strong="H3068"\w* wayward wife \w is|strong="H3588"\w* \w a|strong="H3068"\w* \w narrow|strong="H6862"\w* well. +\q1 +\v 28 Yes, \w she|strong="H1931"\w* lies \w in|strong="H3254"\w* wait like \w a|strong="H3068"\w* \w robber|strong="H2863"\w*, +\q2 \w and|strong="H3254"\w* \w increases|strong="H3254"\w* \w the|strong="H3254"\w* unfaithful among men. +\b +\q1 +\v 29 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* woe? +\q2 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* sorrow? +\q2 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* \w strife|strong="H4066"\w*? +\q2 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* complaints? +\q2 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* needless \w bruises|strong="H6482"\w*? +\q2 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* bloodshot \w eyes|strong="H5869"\w*? +\q1 +\v 30 \w Those|strong="H5921"\w* who stay \w long|strong="H5921"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w wine|strong="H3196"\w*; +\q2 \w those|strong="H5921"\w* who go \w to|strong="H5921"\w* \w seek|strong="H2713"\w* \w out|strong="H2713"\w* \w mixed|strong="H4469"\w* \w wine|strong="H3196"\w*. +\q1 +\v 31 Don’t \w look|strong="H7200"\w* \w at|strong="H7200"\w* \w the|strong="H7200"\w* \w wine|strong="H3196"\w* \w when|strong="H3588"\w* \w it|strong="H5414"\w* \w is|strong="H5869"\w* red, +\q2 \w when|strong="H3588"\w* \w it|strong="H5414"\w* \w sparkles|strong="H5414"\w* \w in|strong="H1980"\w* \w the|strong="H7200"\w* cup, +\q2 \w when|strong="H3588"\w* \w it|strong="H5414"\w* \w goes|strong="H1980"\w* \w down|strong="H1980"\w* \w smoothly|strong="H4339"\w*. +\q1 +\v 32 In \w the|strong="H5391"\w* end, it \w bites|strong="H5391"\w* like \w a|strong="H3068"\w* \w snake|strong="H5175"\w*, +\q2 \w and|strong="H5175"\w* poisons like \w a|strong="H3068"\w* \w viper|strong="H6848"\w*. +\q1 +\v 33 \w Your|strong="H7200"\w* \w eyes|strong="H5869"\w* \w will|strong="H5869"\w* \w see|strong="H7200"\w* \w strange|strong="H2114"\w* \w things|strong="H8419"\w*, +\q2 \w and|strong="H5869"\w* \w your|strong="H7200"\w* \w mind|strong="H3820"\w* \w will|strong="H5869"\w* imagine confusing \w things|strong="H8419"\w*. +\q1 +\v 34 Yes, \w you|strong="H3820"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w he|strong="H3220"\w* who \w lies|strong="H7901"\w* \w down|strong="H7901"\w* \w in|strong="H7901"\w* \w the|strong="H1961"\w* \w middle|strong="H3820"\w* \w of|strong="H7218"\w* \w the|strong="H1961"\w* \w sea|strong="H3220"\w*, +\q2 \w or|strong="H7218"\w* \w as|strong="H1961"\w* \w he|strong="H3220"\w* who \w lies|strong="H7901"\w* \w on|strong="H1961"\w* \w top|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H1961"\w* rigging: +\q1 +\v 35 “\w They|strong="H3045"\w* \w hit|strong="H5221"\w* \w me|strong="H5221"\w*, \w and|strong="H3045"\w* \w I|strong="H3045"\w* \w was|strong="H5221"\w* \w not|strong="H3045"\w* hurt! +\q2 \w They|strong="H3045"\w* \w beat|strong="H5221"\w* \w me|strong="H5221"\w*, \w and|strong="H3045"\w* \w I|strong="H3045"\w* don’t \w feel|strong="H3045"\w* \w it|strong="H3045"\w*! +\q2 \w When|strong="H4970"\w* \w will|strong="H5750"\w* \w I|strong="H3045"\w* \w wake|strong="H6974"\w* up? \w I|strong="H3045"\w* \w can|strong="H3254"\w* \w do|strong="H3254"\w* \w it|strong="H3045"\w* \w again|strong="H5750"\w*. +\q2 \w I|strong="H3045"\w* \w will|strong="H5750"\w* \w look|strong="H1245"\w* \w for|strong="H1245"\w* \w more|strong="H3254"\w*.” +\b +\c 24 +\q1 +\v 1 Don’t \w be|strong="H1961"\w* \w envious|strong="H7065"\w* \w of|strong="H7451"\w* \w evil|strong="H7451"\w* \w men|strong="H7451"\w*, +\q2 neither desire \w to|strong="H1961"\w* \w be|strong="H1961"\w* \w with|strong="H7065"\w* \w them|strong="H1961"\w*; +\q1 +\v 2 \w for|strong="H3588"\w* \w their|strong="H3588"\w* \w hearts|strong="H3820"\w* plot \w violence|strong="H7701"\w* +\q2 \w and|strong="H5999"\w* \w their|strong="H3588"\w* \w lips|strong="H8193"\w* \w talk|strong="H1696"\w* \w about|strong="H1696"\w* \w mischief|strong="H5999"\w*. +\q1 +\v 3 Through \w wisdom|strong="H2451"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w is|strong="H2451"\w* \w built|strong="H1129"\w*; +\q2 \w by|strong="H3559"\w* \w understanding|strong="H8394"\w* \w it|strong="H3559"\w* \w is|strong="H2451"\w* \w established|strong="H3559"\w*; +\q1 +\v 4 \w by|strong="H3605"\w* \w knowledge|strong="H1847"\w* \w the|strong="H3605"\w* \w rooms|strong="H2315"\w* \w are|strong="H4390"\w* \w filled|strong="H4390"\w* +\q2 \w with|strong="H4390"\w* \w all|strong="H3605"\w* \w rare|strong="H3368"\w* \w and|strong="H1847"\w* beautiful treasure. +\q1 +\v 5 \w A|strong="H3068"\w* \w wise|strong="H2450"\w* \w man|strong="H1397"\w* \w has|strong="H3581"\w* great \w power|strong="H3581"\w*. +\q2 \w A|strong="H3068"\w* knowledgeable \w man|strong="H1397"\w* increases \w strength|strong="H5797"\w*, +\q1 +\v 6 \w for|strong="H3588"\w* \w by|strong="H6213"\w* \w wise|strong="H8458"\w* \w guidance|strong="H8458"\w* \w you|strong="H3588"\w* \w wage|strong="H6213"\w* \w your|strong="H6213"\w* \w war|strong="H4421"\w*, +\q2 \w and|strong="H6213"\w* \w victory|strong="H8668"\w* \w is|strong="H6213"\w* \w in|strong="H6213"\w* \w many|strong="H7230"\w* advisors. +\q1 +\v 7 \w Wisdom|strong="H2454"\w* \w is|strong="H6310"\w* \w too|strong="H3808"\w* \w high|strong="H7311"\w* \w for|strong="H3808"\w* \w a|strong="H3068"\w* fool. +\q2 \w He|strong="H3808"\w* doesn’t \w open|strong="H6605"\w* \w his|strong="H6605"\w* \w mouth|strong="H6310"\w* \w in|strong="H6310"\w* \w the|strong="H7311"\w* \w gate|strong="H8179"\w*. +\q1 +\v 8 One \w who|strong="H1167"\w* \w plots|strong="H4209"\w* \w to|strong="H7121"\w* \w do|strong="H7489"\w* \w evil|strong="H7489"\w* +\q2 \w will|strong="H4209"\w* be \w called|strong="H7121"\w* \w a|strong="H3068"\w* \w schemer|strong="H1167"\w*. +\q1 +\v 9 \w The|strong="H8441"\w* \w schemes|strong="H2154"\w* \w of|strong="H2403"\w* folly \w are|strong="H2403"\w* \w sin|strong="H2403"\w*. +\q2 \w The|strong="H8441"\w* \w mocker|strong="H3887"\w* \w is|strong="H2403"\w* detested by men. +\q1 +\v 10 If \w you|strong="H3117"\w* falter \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w time|strong="H3117"\w* \w of|strong="H3117"\w* \w trouble|strong="H6869"\w*, +\q2 \w your|strong="H3117"\w* \w strength|strong="H3581"\w* \w is|strong="H3117"\w* \w small|strong="H6862"\w*. +\q1 +\v 11 \w Rescue|strong="H5337"\w* those who \w are|strong="H4194"\w* being led \w away|strong="H3947"\w* \w to|strong="H3947"\w* \w death|strong="H4194"\w*! +\q2 Indeed, \w hold|strong="H2820"\w* \w back|strong="H2820"\w* those who \w are|strong="H4194"\w* \w staggering|strong="H4131"\w* \w to|strong="H3947"\w* \w the|strong="H3947"\w* \w slaughter|strong="H2027"\w*! +\q1 +\v 12 \w If|strong="H3588"\w* \w you|strong="H3588"\w* \w say|strong="H7725"\w*, “\w Behold|strong="H2005"\w*, \w we|strong="H3068"\w* didn’t \w know|strong="H3045"\w* \w this|strong="H2088"\w*,” +\q2 doesn’t \w he|strong="H1931"\w* \w who|strong="H1931"\w* \w weighs|strong="H8505"\w* \w the|strong="H3588"\w* \w hearts|strong="H3826"\w* \w consider|strong="H3045"\w* \w it|strong="H1931"\w*? +\q1 \w He|strong="H1931"\w* \w who|strong="H1931"\w* \w keeps|strong="H5341"\w* \w your|strong="H3045"\w* \w soul|strong="H5315"\w*, doesn’t \w he|strong="H1931"\w* \w know|strong="H3045"\w* \w it|strong="H1931"\w*? +\q2 \w Shall|strong="H5315"\w* \w he|strong="H1931"\w* \w not|strong="H3808"\w* \w give|strong="H7725"\w* \w to|strong="H7725"\w* \w every|strong="H7725"\w* \w man|strong="H5315"\w* according \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w work|strong="H6467"\w*? +\q1 +\v 13 \w My|strong="H5921"\w* \w son|strong="H1121"\w*, eat \w honey|strong="H1706"\w*, \w for|strong="H3588"\w* \w it|strong="H5921"\w* \w is|strong="H2896"\w* \w good|strong="H2896"\w*, +\q2 \w the|strong="H5921"\w* droppings \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w honeycomb|strong="H5317"\w*, \w which|strong="H3588"\w* \w are|strong="H1121"\w* \w sweet|strong="H4966"\w* \w to|strong="H5921"\w* \w your|strong="H5921"\w* \w taste|strong="H2441"\w*; +\q1 +\v 14 \w so|strong="H3651"\w* \w you|strong="H3045"\w* \w shall|strong="H5315"\w* \w know|strong="H3045"\w* \w wisdom|strong="H2451"\w* \w to|strong="H5315"\w* \w be|strong="H3426"\w* \w to|strong="H5315"\w* \w your|strong="H3045"\w* \w soul|strong="H5315"\w*. +\q2 \w If|strong="H3426"\w* \w you|strong="H3045"\w* \w have|strong="H3426"\w* \w found|strong="H4672"\w* \w it|strong="H3651"\w*, \w then|strong="H3651"\w* \w there|strong="H3426"\w* \w will|strong="H5315"\w* \w be|strong="H3426"\w* \w a|strong="H3068"\w* reward: +\q2 \w Your|strong="H3045"\w* \w hope|strong="H8615"\w* \w will|strong="H5315"\w* \w not|strong="H3808"\w* \w be|strong="H3426"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*. +\q1 +\v 15 Don’t \w lay|strong="H7258"\w* \w in|strong="H6662"\w* wait, \w wicked|strong="H7563"\w* \w man|strong="H7563"\w*, against \w the|strong="H7703"\w* \w habitation|strong="H5116"\w* \w of|strong="H5116"\w* \w the|strong="H7703"\w* \w righteous|strong="H6662"\w*. +\q2 Don’t \w destroy|strong="H7703"\w* \w his|strong="H7703"\w* \w resting|strong="H7258"\w* \w place|strong="H7258"\w*; +\q1 +\v 16 \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w righteous|strong="H6662"\w* \w man|strong="H7563"\w* \w falls|strong="H5307"\w* \w seven|strong="H7651"\w* \w times|strong="H7651"\w* \w and|strong="H6965"\w* \w rises|strong="H6965"\w* \w up|strong="H6965"\w* \w again|strong="H6965"\w*, +\q2 \w but|strong="H3588"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w* \w are|strong="H7563"\w* \w overthrown|strong="H3782"\w* \w by|strong="H6965"\w* \w calamity|strong="H7451"\w*. +\q1 +\v 17 Don’t \w rejoice|strong="H8055"\w* \w when|strong="H5307"\w* \w your|strong="H5307"\w* enemy \w falls|strong="H5307"\w*. +\q2 Don’t \w let|strong="H8055"\w* \w your|strong="H5307"\w* \w heart|strong="H3820"\w* \w be|strong="H3820"\w* \w glad|strong="H8055"\w* \w when|strong="H5307"\w* \w he|strong="H3820"\w* \w is|strong="H3820"\w* \w overthrown|strong="H3782"\w*, +\q1 +\v 18 \w lest|strong="H6435"\w* \w Yahweh|strong="H3068"\w* \w see|strong="H7200"\w* \w it|strong="H5921"\w*, \w and|strong="H3068"\w* \w it|strong="H5921"\w* \w displease|strong="H7489"\w* \w him|strong="H5921"\w*, +\q2 \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w his|strong="H3068"\w* wrath \w from|strong="H7725"\w* \w him|strong="H5921"\w*. +\q1 +\v 19 Don’t \w fret|strong="H2734"\w* yourself because \w of|strong="H7065"\w* \w evildoers|strong="H7489"\w*, +\q2 neither \w be|strong="H7563"\w* \w envious|strong="H7065"\w* \w of|strong="H7065"\w* \w the|strong="H7563"\w* \w wicked|strong="H7563"\w*; +\q1 +\v 20 \w for|strong="H3588"\w* \w there|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w no|strong="H3808"\w* reward \w to|strong="H1961"\w* \w the|strong="H3588"\w* \w evil|strong="H7451"\w* \w man|strong="H7563"\w*. +\q2 \w The|strong="H3588"\w* \w lamp|strong="H5216"\w* \w of|strong="H5216"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* snuffed \w out|strong="H1846"\w*. +\q1 +\v 21 \w My|strong="H3068"\w* \w son|strong="H1121"\w*, \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H1121"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w*. +\q2 Don’t \w join|strong="H5973"\w* \w those|strong="H1121"\w* \w who|strong="H3068"\w* \w are|strong="H1121"\w* rebellious, +\q1 +\v 22 \w for|strong="H3588"\w* \w their|strong="H3588"\w* \w calamity|strong="H6365"\w* \w will|strong="H4310"\w* \w rise|strong="H6965"\w* \w suddenly|strong="H6597"\w*. +\q2 \w Who|strong="H4310"\w* \w knows|strong="H3045"\w* \w what|strong="H4310"\w* \w destruction|strong="H6365"\w* \w may|strong="H4310"\w* \w come|strong="H6965"\w* \w from|strong="H6965"\w* \w them|strong="H8147"\w* \w both|strong="H8147"\w*? +\b +\p +\v 23 \w These|strong="H6440"\w* \w also|strong="H1571"\w* \w are|strong="H2450"\w* sayings \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w wise|strong="H2450"\w*: +\b +\q1 \w To|strong="H6440"\w* \w show|strong="H5234"\w* \w partiality|strong="H5234"\w* \w in|strong="H6440"\w* \w judgment|strong="H4941"\w* \w is|strong="H1571"\w* \w not|strong="H1077"\w* \w good|strong="H2896"\w*. +\q1 +\v 24 \w He|strong="H5971"\w* \w who|strong="H5971"\w* says \w to|strong="H5971"\w* \w the|strong="H5971"\w* \w wicked|strong="H7563"\w*, “\w You|strong="H5971"\w* \w are|strong="H5971"\w* \w righteous|strong="H6662"\w*,” +\q2 \w peoples|strong="H5971"\w* \w will|strong="H5971"\w* \w curse|strong="H5344"\w* him, \w and|strong="H5971"\w* \w nations|strong="H5971"\w* \w will|strong="H5971"\w* \w abhor|strong="H2194"\w* him— +\q1 +\v 25 \w but|strong="H3198"\w* \w it|strong="H5921"\w* \w will|strong="H1293"\w* go \w well|strong="H2896"\w* \w with|strong="H5921"\w* \w those|strong="H5921"\w* \w who|strong="H2896"\w* convict \w the|strong="H5921"\w* guilty, +\q2 \w and|strong="H2896"\w* \w a|strong="H3068"\w* rich \w blessing|strong="H1293"\w* \w will|strong="H1293"\w* come \w on|strong="H5921"\w* \w them|strong="H5921"\w*. +\q1 +\v 26 \w An|strong="H7725"\w* honest \w answer|strong="H7725"\w* +\q2 \w is|strong="H1697"\w* \w like|strong="H1697"\w* \w a|strong="H3068"\w* \w kiss|strong="H5401"\w* \w on|strong="H1697"\w* \w the|strong="H7725"\w* \w lips|strong="H8193"\w*. +\q1 +\v 27 \w Prepare|strong="H3559"\w* \w your|strong="H3559"\w* \w work|strong="H4399"\w* \w outside|strong="H2351"\w*, +\q2 \w and|strong="H1004"\w* \w get|strong="H3559"\w* \w your|strong="H3559"\w* \w fields|strong="H7704"\w* \w ready|strong="H3559"\w*. +\q2 Afterwards, \w build|strong="H1129"\w* \w your|strong="H3559"\w* \w house|strong="H1004"\w*. +\q1 +\v 28 Don’t \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w witness|strong="H5707"\w* \w against|strong="H7453"\w* \w your|strong="H1961"\w* \w neighbor|strong="H7453"\w* \w without|strong="H2600"\w* \w cause|strong="H2600"\w*. +\q2 Don’t \w deceive|strong="H6601"\w* \w with|strong="H1961"\w* \w your|strong="H1961"\w* \w lips|strong="H8193"\w*. +\q1 +\v 29 Don’t \w say|strong="H7725"\w*, “\w I|strong="H3651"\w* \w will|strong="H7725"\w* \w do|strong="H6213"\w* \w to|strong="H7725"\w* \w him|strong="H6213"\w* \w as|strong="H6213"\w* \w he|strong="H3651"\w* \w has|strong="H6213"\w* \w done|strong="H6213"\w* \w to|strong="H7725"\w* \w me|strong="H7725"\w*; +\q2 \w I|strong="H3651"\w* \w will|strong="H7725"\w* \w repay|strong="H7725"\w* \w the|strong="H6213"\w* man according \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w work|strong="H6467"\w*.” +\q1 +\v 30 \w I|strong="H5921"\w* \w went|strong="H5674"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w field|strong="H7704"\w* \w of|strong="H7704"\w* \w the|strong="H5921"\w* \w sluggard|strong="H6102"\w*, +\q2 \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w vineyard|strong="H3754"\w* \w of|strong="H7704"\w* \w the|strong="H5921"\w* \w man|strong="H5674"\w* \w void|strong="H2638"\w* \w of|strong="H7704"\w* \w understanding|strong="H3820"\w*. +\q1 +\v 31 \w Behold|strong="H2009"\w*, \w it|strong="H6440"\w* \w was|strong="H3605"\w* \w all|strong="H3605"\w* grown \w over|strong="H6440"\w* \w with|strong="H6440"\w* \w thorns|strong="H7063"\w*. +\q2 \w Its|strong="H3605"\w* \w surface|strong="H6440"\w* \w was|strong="H3605"\w* \w covered|strong="H3680"\w* \w with|strong="H6440"\w* \w nettles|strong="H2738"\w*, +\q2 \w and|strong="H6440"\w* \w its|strong="H3605"\w* stone \w wall|strong="H1444"\w* \w was|strong="H3605"\w* \w broken|strong="H2040"\w* \w down|strong="H2040"\w*. +\q1 +\v 32 \w Then|strong="H3947"\w* \w I|strong="H7200"\w* \w saw|strong="H7200"\w*, \w and|strong="H7200"\w* \w considered|strong="H7200"\w* \w well|strong="H3820"\w*. +\q2 \w I|strong="H7200"\w* \w saw|strong="H7200"\w*, \w and|strong="H7200"\w* \w received|strong="H3947"\w* \w instruction|strong="H4148"\w*: +\q1 +\v 33 \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w sleep|strong="H8142"\w*, \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w slumber|strong="H8572"\w*, +\q2 \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w folding|strong="H2264"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w hands|strong="H3027"\w* \w to|strong="H3027"\w* \w sleep|strong="H8142"\w*, +\q1 +\v 34 \w so|strong="H1980"\w* your \w poverty|strong="H7389"\w* \w will|strong="H7389"\w* \w come|strong="H1980"\w* \w as|strong="H1980"\w* \w a|strong="H3068"\w* \w robber|strong="H1980"\w* +\q2 \w and|strong="H1980"\w* your \w want|strong="H4270"\w* \w as|strong="H1980"\w* an \w armed|strong="H4043"\w* man. +\c 25 +\p +\v 1 \w These|strong="H4428"\w* \w also|strong="H1571"\w* \w are|strong="H4428"\w* \w proverbs|strong="H4912"\w* \w of|strong="H4428"\w* \w Solomon|strong="H8010"\w*, \w which|strong="H3063"\w* \w the|strong="H1571"\w* men \w of|strong="H4428"\w* \w Hezekiah|strong="H2396"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w copied|strong="H6275"\w* \w out|strong="H6275"\w*. +\q1 +\v 2 It \w is|strong="H1697"\w* \w the|strong="H1697"\w* \w glory|strong="H3519"\w* \w of|strong="H4428"\w* God \w to|strong="H4428"\w* \w conceal|strong="H5641"\w* \w a|strong="H3068"\w* \w thing|strong="H1697"\w*, +\q2 \w but|strong="H4428"\w* \w the|strong="H1697"\w* \w glory|strong="H3519"\w* \w of|strong="H4428"\w* \w kings|strong="H4428"\w* \w is|strong="H1697"\w* \w to|strong="H4428"\w* \w search|strong="H2713"\w* \w out|strong="H2713"\w* \w a|strong="H3068"\w* \w matter|strong="H1697"\w*. +\q1 +\v 3 \w As|strong="H4428"\w* \w the|strong="H3820"\w* \w heavens|strong="H8064"\w* \w for|strong="H4428"\w* \w height|strong="H7312"\w*, \w and|strong="H4428"\w* \w the|strong="H3820"\w* \w earth|strong="H8064"\w* \w for|strong="H4428"\w* \w depth|strong="H6011"\w*, +\q2 so \w the|strong="H3820"\w* \w hearts|strong="H3820"\w* \w of|strong="H4428"\w* \w kings|strong="H4428"\w* \w are|strong="H8064"\w* \w unsearchable|strong="H2714"\w*. +\q1 +\v 4 \w Take|strong="H3318"\w* \w away|strong="H3318"\w* \w the|strong="H3318"\w* \w dross|strong="H5509"\w* \w from|strong="H3318"\w* \w the|strong="H3318"\w* \w silver|strong="H3701"\w*, +\q2 \w and|strong="H3701"\w* material \w comes|strong="H3318"\w* \w out|strong="H3318"\w* \w for|strong="H3627"\w* \w the|strong="H3318"\w* \w refiner|strong="H6884"\w*. +\q1 +\v 5 \w Take|strong="H1898"\w* \w away|strong="H1898"\w* \w the|strong="H6440"\w* \w wicked|strong="H7563"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w presence|strong="H6440"\w*, +\q2 \w and|strong="H4428"\w* \w his|strong="H6440"\w* \w throne|strong="H3678"\w* \w will|strong="H4428"\w* \w be|strong="H7563"\w* \w established|strong="H3559"\w* \w in|strong="H4428"\w* \w righteousness|strong="H6664"\w*. +\q1 +\v 6 Don’t exalt yourself \w in|strong="H4428"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*, +\q2 \w or|strong="H1419"\w* \w claim|strong="H1921"\w* \w a|strong="H3068"\w* \w place|strong="H4725"\w* among \w great|strong="H1419"\w* \w men|strong="H1419"\w*; +\q1 +\v 7 \w for|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H2896"\w* \w better|strong="H2896"\w* \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w be|strong="H5869"\w* said \w to|strong="H5927"\w* \w you|strong="H3588"\w*, “\w Come|strong="H5927"\w* \w up|strong="H5927"\w* \w here|strong="H2008"\w*,” +\q2 \w than|strong="H2896"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w should|strong="H3588"\w* \w be|strong="H5869"\w* \w put|strong="H5927"\w* \w lower|strong="H8213"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w prince|strong="H5081"\w*, +\q2 \w whom|strong="H6440"\w* \w your|strong="H6440"\w* \w eyes|strong="H5869"\w* \w have|strong="H5869"\w* \w seen|strong="H7200"\w*. +\q1 +\v 8 Don’t \w be|strong="H3318"\w* hasty \w in|strong="H6213"\w* \w bringing|strong="H3318"\w* charges \w to|strong="H3318"\w* \w court|strong="H3318"\w*. +\q2 \w What|strong="H4100"\w* \w will|strong="H4100"\w* \w you|strong="H6213"\w* \w do|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w end|strong="H3318"\w* \w when|strong="H3318"\w* \w your|strong="H6213"\w* \w neighbor|strong="H7453"\w* shames \w you|strong="H6213"\w*? +\q1 +\v 9 \w Debate|strong="H7378"\w* \w your|strong="H1540"\w* \w case|strong="H7379"\w* \w with|strong="H7378"\w* \w your|strong="H1540"\w* \w neighbor|strong="H7453"\w*, +\q2 \w and|strong="H7453"\w* don’t \w betray|strong="H1540"\w* \w the|strong="H1540"\w* confidence \w of|strong="H5475"\w* \w another|strong="H7453"\w*, +\q2 +\v 10 \w lest|strong="H6435"\w* \w one|strong="H3808"\w* \w who|strong="H3808"\w* \w hears|strong="H8085"\w* \w it|strong="H7725"\w* \w put|strong="H7725"\w* \w you|strong="H7725"\w* \w to|strong="H7725"\w* \w shame|strong="H2616"\w*, +\q2 \w and|strong="H7725"\w* \w your|strong="H8085"\w* \w bad|strong="H1681"\w* reputation \w never|strong="H3808"\w* depart. +\b +\q1 +\v 11 \w A|strong="H3068"\w* \w word|strong="H1697"\w* fitly \w spoken|strong="H1696"\w* +\q2 \w is|strong="H1697"\w* \w like|strong="H1697"\w* \w apples|strong="H8598"\w* \w of|strong="H1697"\w* \w gold|strong="H2091"\w* \w in|strong="H5921"\w* \w settings|strong="H4906"\w* \w of|strong="H1697"\w* \w silver|strong="H3701"\w*. +\q1 +\v 12 \w As|strong="H5921"\w* \w an|strong="H2091"\w* \w earring|strong="H5141"\w* \w of|strong="H5921"\w* \w gold|strong="H2091"\w*, \w and|strong="H2091"\w* \w an|strong="H2091"\w* \w ornament|strong="H2481"\w* \w of|strong="H5921"\w* \w fine|strong="H3800"\w* \w gold|strong="H2091"\w*, +\q2 \w so|strong="H8085"\w* \w is|strong="H2091"\w* \w a|strong="H3068"\w* \w wise|strong="H2450"\w* \w reprover|strong="H3198"\w* \w to|strong="H5921"\w* \w an|strong="H2091"\w* \w obedient|strong="H8085"\w* \w ear|strong="H8085"\w*. +\q1 +\v 13 \w As|strong="H3117"\w* \w the|strong="H3117"\w* \w cold|strong="H6793"\w* \w of|strong="H3117"\w* \w snow|strong="H7950"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w time|strong="H3117"\w* \w of|strong="H3117"\w* \w harvest|strong="H7105"\w*, +\q2 \w so|strong="H7971"\w* \w is|strong="H5315"\w* \w a|strong="H3068"\w* faithful \w messenger|strong="H6735"\w* \w to|strong="H7725"\w* \w those|strong="H5315"\w* \w who|strong="H5315"\w* \w send|strong="H7971"\w* \w him|strong="H7971"\w*; +\q2 \w for|strong="H7971"\w* \w he|strong="H3117"\w* \w refreshes|strong="H7725"\w* \w the|strong="H3117"\w* \w soul|strong="H5315"\w* \w of|strong="H3117"\w* \w his|strong="H7971"\w* masters. +\q1 +\v 14 \w As|strong="H1984"\w* \w clouds|strong="H5387"\w* \w and|strong="H7307"\w* \w wind|strong="H7307"\w* \w without|strong="H7307"\w* \w rain|strong="H1653"\w*, +\q2 \w so|strong="H7307"\w* \w is|strong="H7307"\w* \w he|strong="H7307"\w* who \w boasts|strong="H1984"\w* \w of|strong="H7307"\w* \w gifts|strong="H4991"\w* deceptively. +\q1 +\v 15 By patience \w a|strong="H3068"\w* \w ruler|strong="H7101"\w* \w is|strong="H3956"\w* \w persuaded|strong="H6601"\w*. +\q2 \w A|strong="H3068"\w* \w soft|strong="H7390"\w* \w tongue|strong="H3956"\w* \w breaks|strong="H7665"\w* \w the|strong="H7665"\w* \w bone|strong="H1634"\w*. +\q1 +\v 16 \w Have|strong="H7646"\w* \w you|strong="H6435"\w* \w found|strong="H4672"\w* \w honey|strong="H1706"\w*? +\q2 Eat \w as|strong="H1767"\w* \w much|strong="H1767"\w* \w as|strong="H1767"\w* \w is|strong="H4672"\w* \w sufficient|strong="H1767"\w* \w for|strong="H1706"\w* \w you|strong="H6435"\w*, +\q2 \w lest|strong="H6435"\w* \w you|strong="H6435"\w* eat too \w much|strong="H1767"\w*, \w and|strong="H1706"\w* \w vomit|strong="H6958"\w* \w it|strong="H4672"\w*. +\q1 +\v 17 Let \w your|strong="H7646"\w* \w foot|strong="H7272"\w* \w be|strong="H1004"\w* seldom \w in|strong="H1004"\w* \w your|strong="H7646"\w* \w neighbor|strong="H7453"\w*’s \w house|strong="H1004"\w*, +\q2 \w lest|strong="H6435"\w* \w he|strong="H1004"\w* \w be|strong="H1004"\w* \w weary|strong="H7646"\w* \w of|strong="H1004"\w* \w you|strong="H6435"\w*, \w and|strong="H1004"\w* \w hate|strong="H8130"\w* \w you|strong="H6435"\w*. +\q1 +\v 18 \w A|strong="H3068"\w* \w man|strong="H6030"\w* \w who|strong="H5707"\w* gives \w false|strong="H8267"\w* \w testimony|strong="H5707"\w* \w against|strong="H2719"\w* \w his|strong="H6030"\w* \w neighbor|strong="H7453"\w* +\q2 \w is|strong="H2719"\w* like \w a|strong="H3068"\w* \w club|strong="H4650"\w*, \w a|strong="H3068"\w* \w sword|strong="H2719"\w*, \w or|strong="H2719"\w* \w a|strong="H3068"\w* \w sharp|strong="H8150"\w* \w arrow|strong="H2671"\w*. +\q1 +\v 19 \w Confidence|strong="H4009"\w* \w in|strong="H3117"\w* someone unfaithful \w in|strong="H3117"\w* \w time|strong="H3117"\w* \w of|strong="H3117"\w* \w trouble|strong="H6869"\w* +\q2 \w is|strong="H3117"\w* \w like|strong="H7272"\w* \w a|strong="H3068"\w* bad \w tooth|strong="H8127"\w* \w or|strong="H3117"\w* \w a|strong="H3068"\w* lame \w foot|strong="H7272"\w*. +\q1 +\v 20 \w As|strong="H3117"\w* one \w who|strong="H7891"\w* \w takes|strong="H5710"\w* \w away|strong="H5710"\w* \w a|strong="H3068"\w* garment \w in|strong="H5921"\w* \w cold|strong="H7135"\w* \w weather|strong="H3117"\w*, +\q2 \w or|strong="H3117"\w* \w vinegar|strong="H2558"\w* \w on|strong="H5921"\w* \w soda|strong="H5427"\w*, +\q2 \w so|strong="H5921"\w* \w is|strong="H3820"\w* one \w who|strong="H7891"\w* \w sings|strong="H7891"\w* \w songs|strong="H7892"\w* \w to|strong="H5921"\w* \w a|strong="H3068"\w* \w heavy|strong="H7451"\w* \w heart|strong="H3820"\w*. +\q1 +\v 21 If \w your|strong="H8248"\w* \w enemy|strong="H8130"\w* \w is|strong="H4325"\w* \w hungry|strong="H7457"\w*, \w give|strong="H8248"\w* \w him|strong="H8130"\w* \w food|strong="H3899"\w* \w to|strong="H4325"\w* \w eat|strong="H3899"\w*. +\q2 If \w he|strong="H4325"\w* \w is|strong="H4325"\w* \w thirsty|strong="H6771"\w*, \w give|strong="H8248"\w* \w him|strong="H8130"\w* \w water|strong="H4325"\w* \w to|strong="H4325"\w* \w drink|strong="H8248"\w*; +\q1 +\v 22 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w heap|strong="H2846"\w* \w coals|strong="H1513"\w* \w of|strong="H3068"\w* \w fire|strong="H1513"\w* \w on|strong="H5921"\w* \w his|strong="H3068"\w* \w head|strong="H7218"\w*, +\q2 \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w reward|strong="H7999"\w* \w you|strong="H3588"\w*. +\q1 +\v 23 \w The|strong="H6440"\w* \w north|strong="H6828"\w* \w wind|strong="H7307"\w* produces \w rain|strong="H1653"\w*; +\q2 \w so|strong="H7307"\w* \w a|strong="H3068"\w* \w backbiting|strong="H5643"\w* \w tongue|strong="H3956"\w* \w brings|strong="H2342"\w* \w an|strong="H6440"\w* \w angry|strong="H2194"\w* \w face|strong="H6440"\w*. +\q1 +\v 24 \w It|strong="H5921"\w* \w is|strong="H2896"\w* \w better|strong="H2896"\w* \w to|strong="H5921"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w corner|strong="H6438"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w housetop|strong="H1406"\w* +\q2 \w than|strong="H2896"\w* \w to|strong="H5921"\w* share \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w with|strong="H1004"\w* \w a|strong="H3068"\w* \w contentious|strong="H4066"\w* \w woman|strong="H1004"\w*. +\q1 +\v 25 \w Like|strong="H2896"\w* \w cold|strong="H7119"\w* \w water|strong="H4325"\w* \w to|strong="H5921"\w* \w a|strong="H3068"\w* \w thirsty|strong="H5889"\w* \w soul|strong="H5315"\w*, +\q2 \w so|strong="H5921"\w* \w is|strong="H5315"\w* \w good|strong="H2896"\w* \w news|strong="H8052"\w* \w from|strong="H5921"\w* \w a|strong="H3068"\w* \w far|strong="H4801"\w* country. +\q1 +\v 26 \w Like|strong="H6440"\w* \w a|strong="H3068"\w* muddied \w spring|strong="H4599"\w* \w and|strong="H6440"\w* \w a|strong="H3068"\w* \w polluted|strong="H7843"\w* \w well|strong="H4726"\w*, +\q2 \w so|strong="H6440"\w* \w is|strong="H7563"\w* \w a|strong="H3068"\w* \w righteous|strong="H6662"\w* \w man|strong="H7563"\w* \w who|strong="H6662"\w* \w gives|strong="H4131"\w* \w way|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w wicked|strong="H7563"\w*. +\q1 +\v 27 \w It|strong="H3808"\w* \w is|strong="H2896"\w* \w not|strong="H3808"\w* \w good|strong="H2896"\w* \w to|strong="H2896"\w* eat \w much|strong="H7235"\w* \w honey|strong="H1706"\w*, +\q2 \w nor|strong="H3808"\w* \w is|strong="H2896"\w* \w it|strong="H3808"\w* \w honorable|strong="H3519"\w* \w to|strong="H2896"\w* \w seek|strong="H3808"\w* \w one|strong="H3808"\w*’s own \w honor|strong="H3519"\w*. +\q1 +\v 28 \w Like|strong="H7307"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w* \w that|strong="H5892"\w* \w is|strong="H5892"\w* \w broken|strong="H6555"\w* \w down|strong="H6555"\w* \w and|strong="H5892"\w* \w without|strong="H7307"\w* \w walls|strong="H2346"\w* +\q2 \w is|strong="H5892"\w* \w a|strong="H3068"\w* man whose \w spirit|strong="H7307"\w* \w is|strong="H5892"\w* \w without|strong="H7307"\w* restraint. +\c 26 +\q1 +\v 1 \w Like|strong="H3651"\w* \w snow|strong="H7950"\w* \w in|strong="H3808"\w* \w summer|strong="H7019"\w*, \w and|strong="H3519"\w* \w as|strong="H3651"\w* \w rain|strong="H4306"\w* \w in|strong="H3808"\w* \w harvest|strong="H7105"\w*, +\q2 \w so|strong="H3651"\w* \w honor|strong="H3519"\w* \w is|strong="H3651"\w* \w not|strong="H3808"\w* \w fitting|strong="H5000"\w* \w for|strong="H3651"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w*. +\q1 +\v 2 \w Like|strong="H3651"\w* \w a|strong="H3068"\w* fluttering \w sparrow|strong="H6833"\w*, +\q2 \w like|strong="H3651"\w* \w a|strong="H3068"\w* darting \w swallow|strong="H1866"\w*, +\q2 \w so|strong="H3651"\w* \w the|strong="H3651"\w* undeserved \w curse|strong="H7045"\w* doesn’t come \w to|strong="H3808"\w* rest. +\q1 +\v 3 \w A|strong="H3068"\w* \w whip|strong="H7752"\w* \w is|strong="H3684"\w* \w for|strong="H5483"\w* \w the|strong="H7626"\w* \w horse|strong="H5483"\w*, +\q2 \w a|strong="H3068"\w* \w bridle|strong="H4964"\w* \w for|strong="H5483"\w* \w the|strong="H7626"\w* \w donkey|strong="H2543"\w*, +\q2 \w and|strong="H5483"\w* \w a|strong="H3068"\w* \w rod|strong="H7626"\w* \w for|strong="H5483"\w* \w the|strong="H7626"\w* \w back|strong="H1460"\w* \w of|strong="H7626"\w* \w fools|strong="H3684"\w*! +\q1 +\v 4 Don’t \w answer|strong="H6030"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w* according \w to|strong="H6030"\w* \w his|strong="H6030"\w* folly, +\q2 \w lest|strong="H6435"\w* \w you|strong="H6435"\w* \w also|strong="H1571"\w* \w be|strong="H1571"\w* \w like|strong="H7737"\w* \w him|strong="H6030"\w*. +\q1 +\v 5 \w Answer|strong="H6030"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w* according \w to|strong="H1961"\w* \w his|strong="H1961"\w* folly, +\q2 \w lest|strong="H6435"\w* he \w be|strong="H1961"\w* \w wise|strong="H2450"\w* \w in|strong="H2450"\w* \w his|strong="H1961"\w* \w own|strong="H1961"\w* \w eyes|strong="H5869"\w*. +\q1 +\v 6 \w One|strong="H1697"\w* \w who|strong="H8354"\w* \w sends|strong="H7971"\w* \w a|strong="H3068"\w* \w message|strong="H1697"\w* \w by|strong="H3027"\w* \w the|strong="H7971"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w* +\q2 \w is|strong="H3027"\w* \w cutting|strong="H7096"\w* \w off|strong="H7096"\w* \w feet|strong="H7272"\w* \w and|strong="H7971"\w* \w drinking|strong="H8354"\w* \w violence|strong="H2555"\w*. +\q1 +\v 7 \w Like|strong="H1809"\w* \w the|strong="H6310"\w* \w legs|strong="H7785"\w* \w of|strong="H6310"\w* \w the|strong="H6310"\w* \w lame|strong="H6455"\w* \w that|strong="H6310"\w* \w hang|strong="H1809"\w* loose, +\q2 \w so|strong="H3684"\w* \w is|strong="H6310"\w* \w a|strong="H3068"\w* \w parable|strong="H4912"\w* \w in|strong="H6310"\w* \w the|strong="H6310"\w* \w mouth|strong="H6310"\w* \w of|strong="H6310"\w* \w fools|strong="H3684"\w*. +\q1 +\v 8 \w As|strong="H3651"\w* \w one|strong="H3651"\w* \w who|strong="H3684"\w* \w binds|strong="H6887"\w* \w a|strong="H3068"\w* stone \w in|strong="H5414"\w* \w a|strong="H3068"\w* \w sling|strong="H4773"\w*, +\q2 \w so|strong="H3651"\w* \w is|strong="H3651"\w* \w he|strong="H3651"\w* \w who|strong="H3684"\w* \w gives|strong="H5414"\w* \w honor|strong="H3519"\w* \w to|strong="H5414"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w*. +\q1 +\v 9 \w Like|strong="H5927"\w* \w a|strong="H3068"\w* \w thorn|strong="H2336"\w* \w bush|strong="H2336"\w* \w that|strong="H3027"\w* \w goes|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H5927"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w a|strong="H3068"\w* \w drunkard|strong="H7910"\w*, +\q2 \w so|strong="H5927"\w* \w is|strong="H3027"\w* \w a|strong="H3068"\w* \w parable|strong="H4912"\w* \w in|strong="H3027"\w* \w the|strong="H5927"\w* \w mouth|strong="H6310"\w* \w of|strong="H3027"\w* \w fools|strong="H3684"\w*. +\q1 +\v 10 \w As|strong="H3605"\w* \w an|strong="H5674"\w* archer \w who|strong="H3605"\w* \w wounds|strong="H2342"\w* \w all|strong="H3605"\w*, +\q2 \w so|strong="H5674"\w* \w is|strong="H3605"\w* \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w hires|strong="H7936"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w* +\q2 \w or|strong="H5674"\w* \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w hires|strong="H7936"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w pass|strong="H5674"\w* \w by|strong="H5674"\w*. +\q1 +\v 11 \w As|strong="H7725"\w* \w a|strong="H3068"\w* \w dog|strong="H3611"\w* \w that|strong="H7725"\w* \w returns|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w vomit|strong="H6892"\w*, +\q2 \w so|strong="H7725"\w* \w is|strong="H3684"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w* \w who|strong="H3684"\w* \w repeats|strong="H8138"\w* \w his|strong="H7725"\w* folly. +\q1 +\v 12 \w Do|strong="H5869"\w* \w you|strong="H7200"\w* \w see|strong="H7200"\w* \w a|strong="H3068"\w* \w man|strong="H2450"\w* \w wise|strong="H2450"\w* \w in|strong="H2450"\w* \w his|strong="H7200"\w* \w own|strong="H5869"\w* \w eyes|strong="H5869"\w*? +\q2 \w There|strong="H4480"\w* \w is|strong="H5869"\w* \w more|strong="H4480"\w* \w hope|strong="H8615"\w* \w for|strong="H5869"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w* \w than|strong="H4480"\w* \w for|strong="H5869"\w* \w him|strong="H7200"\w*. +\q1 +\v 13 \w The|strong="H1870"\w* \w sluggard|strong="H6102"\w* says, “There \w is|strong="H1870"\w* \w a|strong="H3068"\w* \w lion|strong="H7826"\w* \w in|strong="H1870"\w* \w the|strong="H1870"\w* \w road|strong="H1870"\w*! +\q2 \w A|strong="H3068"\w* fierce \w lion|strong="H7826"\w* roams \w the|strong="H1870"\w* \w streets|strong="H7339"\w*!” +\q1 +\v 14 \w As|strong="H5921"\w* \w the|strong="H5921"\w* \w door|strong="H1817"\w* \w turns|strong="H5921"\w* \w on|strong="H5921"\w* \w its|strong="H5921"\w* \w hinges|strong="H6735"\w*, +\q2 \w so|strong="H5437"\w* does \w the|strong="H5921"\w* \w sluggard|strong="H6102"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w bed|strong="H4296"\w*. +\q1 +\v 15 \w The|strong="H7725"\w* \w sluggard|strong="H6102"\w* \w buries|strong="H2934"\w* \w his|strong="H7725"\w* \w hand|strong="H3027"\w* \w in|strong="H7725"\w* \w the|strong="H7725"\w* \w dish|strong="H6747"\w*. +\q2 \w He|strong="H3027"\w* \w is|strong="H3027"\w* too \w lazy|strong="H6102"\w* \w to|strong="H7725"\w* \w bring|strong="H7725"\w* \w it|strong="H7725"\w* \w back|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w mouth|strong="H6310"\w*. +\q1 +\v 16 \w The|strong="H7725"\w* \w sluggard|strong="H6102"\w* \w is|strong="H5869"\w* \w wiser|strong="H2450"\w* \w in|strong="H7725"\w* \w his|strong="H7725"\w* \w own|strong="H5869"\w* \w eyes|strong="H5869"\w* +\q2 \w than|strong="H2450"\w* \w seven|strong="H7651"\w* \w men|strong="H2450"\w* \w who|strong="H2450"\w* \w answer|strong="H7725"\w* \w with|strong="H7725"\w* \w discretion|strong="H2940"\w*. +\q1 +\v 17 \w Like|strong="H3808"\w* \w one|strong="H3808"\w* \w who|strong="H3808"\w* grabs \w a|strong="H3068"\w* \w dog|strong="H3611"\w*’s ears +\q2 \w is|strong="H3611"\w* \w one|strong="H3808"\w* \w who|strong="H3808"\w* \w passes|strong="H5674"\w* \w by|strong="H5921"\w* \w and|strong="H2388"\w* \w meddles|strong="H5674"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w quarrel|strong="H7379"\w* \w not|strong="H3808"\w* \w his|strong="H5921"\w* \w own|strong="H2388"\w*. +\q1 +\v 18 Like \w a|strong="H3068"\w* madman who shoots torches, \w arrows|strong="H2671"\w*, \w and|strong="H4194"\w* \w death|strong="H4194"\w*, +\q2 +\v 19 \w is|strong="H3651"\w* \w the|strong="H3651"\w* man \w who|strong="H3808"\w* \w deceives|strong="H7411"\w* \w his|strong="H3808"\w* \w neighbor|strong="H7453"\w* \w and|strong="H7453"\w* says, “Am \w I|strong="H3651"\w* \w not|strong="H3808"\w* \w joking|strong="H7832"\w*?” +\q1 +\v 20 \w For|strong="H6086"\w* lack \w of|strong="H6086"\w* \w wood|strong="H6086"\w* \w a|strong="H3068"\w* fire \w goes|strong="H3518"\w* \w out|strong="H3518"\w*. +\q2 Without \w gossip|strong="H5372"\w*, \w a|strong="H3068"\w* quarrel dies \w down|strong="H8367"\w*. +\q1 +\v 21 As \w coals|strong="H1513"\w* are \w to|strong="H6086"\w* \w hot|strong="H1513"\w* \w embers|strong="H1513"\w*, +\q2 \w and|strong="H6086"\w* \w wood|strong="H6086"\w* \w to|strong="H6086"\w* \w fire|strong="H1513"\w*, +\q2 so \w is|strong="H4066"\w* \w a|strong="H3068"\w* \w contentious|strong="H4066"\w* man \w to|strong="H6086"\w* kindling \w strife|strong="H7379"\w*. +\q1 +\v 22 \w The|strong="H1697"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w a|strong="H3068"\w* \w whisperer|strong="H5372"\w* \w are|strong="H1992"\w* \w as|strong="H1697"\w* \w dainty|strong="H3859"\w* \w morsels|strong="H3859"\w*, +\q2 \w they|strong="H1992"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w the|strong="H1697"\w* \w innermost|strong="H2315"\w* \w parts|strong="H2315"\w*. +\q1 +\v 23 \w Like|strong="H3820"\w* \w silver|strong="H3701"\w* \w dross|strong="H5509"\w* \w on|strong="H5921"\w* \w an|strong="H5921"\w* \w earthen|strong="H2789"\w* \w vessel|strong="H2789"\w* +\q2 \w are|strong="H8193"\w* \w the|strong="H5921"\w* \w lips|strong="H8193"\w* \w of|strong="H5921"\w* \w a|strong="H3068"\w* \w fervent|strong="H1814"\w* one \w with|strong="H5921"\w* \w an|strong="H5921"\w* \w evil|strong="H7451"\w* \w heart|strong="H3820"\w*. +\q1 +\v 24 \w A|strong="H3068"\w* malicious man disguises \w himself|strong="H5234"\w* \w with|strong="H8193"\w* \w his|strong="H7130"\w* \w lips|strong="H8193"\w*, +\q2 \w but|strong="H8193"\w* \w he|strong="H7130"\w* harbors evil \w in|strong="H7130"\w* \w his|strong="H7130"\w* \w heart|strong="H7130"\w*. +\q1 +\v 25 \w When|strong="H3588"\w* \w his|strong="H3588"\w* speech \w is|strong="H3820"\w* charming, don’t believe \w him|strong="H6963"\w*, +\q2 \w for|strong="H3588"\w* there \w are|strong="H3820"\w* \w seven|strong="H7651"\w* \w abominations|strong="H8441"\w* \w in|strong="H6963"\w* \w his|strong="H3588"\w* \w heart|strong="H3820"\w*. +\q1 +\v 26 \w His|strong="H1540"\w* malice \w may|strong="H6951"\w* \w be|strong="H7451"\w* concealed \w by|strong="H7451"\w* deception, +\q2 \w but|strong="H7451"\w* \w his|strong="H1540"\w* \w wickedness|strong="H7451"\w* \w will|strong="H6951"\w* \w be|strong="H7451"\w* \w exposed|strong="H1540"\w* \w in|strong="H7451"\w* \w the|strong="H3680"\w* \w assembly|strong="H6951"\w*. +\q1 +\v 27 Whoever \w digs|strong="H3738"\w* \w a|strong="H3068"\w* \w pit|strong="H7845"\w* \w shall|strong="H7845"\w* \w fall|strong="H5307"\w* \w into|strong="H7725"\w* \w it|strong="H7725"\w*. +\q2 Whoever \w rolls|strong="H1556"\w* \w a|strong="H3068"\w* stone, \w it|strong="H7725"\w* \w will|strong="H5307"\w* \w come|strong="H7725"\w* \w back|strong="H7725"\w* \w on|strong="H5307"\w* \w him|strong="H7725"\w*. +\q1 +\v 28 \w A|strong="H3068"\w* \w lying|strong="H8267"\w* \w tongue|strong="H3956"\w* \w hates|strong="H8130"\w* \w those|strong="H6213"\w* \w it|strong="H6213"\w* hurts; +\q2 \w and|strong="H6213"\w* \w a|strong="H3068"\w* \w flattering|strong="H2509"\w* \w mouth|strong="H6310"\w* \w works|strong="H6213"\w* \w ruin|strong="H4072"\w*. +\c 27 +\q1 +\v 1 Don’t \w boast|strong="H1984"\w* \w about|strong="H3045"\w* \w tomorrow|strong="H4279"\w*; +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* don’t \w know|strong="H3045"\w* \w what|strong="H4100"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w may|strong="H3117"\w* \w bring|strong="H3205"\w*. +\q1 +\v 2 \w Let|strong="H3808"\w* \w another|strong="H6310"\w* \w man|strong="H2114"\w* \w praise|strong="H1984"\w* \w you|strong="H3808"\w*, +\q2 \w and|strong="H6310"\w* \w not|strong="H3808"\w* \w your|strong="H3808"\w* own \w mouth|strong="H6310"\w*; +\q2 \w a|strong="H3068"\w* \w stranger|strong="H2114"\w*, \w and|strong="H6310"\w* \w not|strong="H3808"\w* \w your|strong="H3808"\w* own \w lips|strong="H8193"\w*. +\q1 +\v 3 \w A|strong="H3068"\w* stone \w is|strong="H3708"\w* \w heavy|strong="H3515"\w*, +\q2 \w and|strong="H8147"\w* \w sand|strong="H2344"\w* \w is|strong="H3708"\w* \w a|strong="H3068"\w* burden; +\q2 but \w a|strong="H3068"\w* fool’s \w provocation|strong="H3708"\w* \w is|strong="H3708"\w* \w heavier|strong="H3515"\w* than \w both|strong="H8147"\w*. +\q1 +\v 4 \w Wrath|strong="H2534"\w* \w is|strong="H4310"\w* cruel, +\q2 \w and|strong="H6440"\w* \w anger|strong="H2534"\w* \w is|strong="H4310"\w* overwhelming; +\q2 but \w who|strong="H4310"\w* \w is|strong="H4310"\w* able \w to|strong="H6440"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w jealousy|strong="H7068"\w*? +\q1 +\v 5 \w Better|strong="H2896"\w* \w is|strong="H2896"\w* \w open|strong="H1540"\w* \w rebuke|strong="H8433"\w* +\q2 \w than|strong="H2896"\w* \w hidden|strong="H5641"\w* love. +\q1 +\v 6 \w The|strong="H8130"\w* \w wounds|strong="H6482"\w* \w of|strong="H8130"\w* \w a|strong="H3068"\w* friend are faithful, +\q2 although \w the|strong="H8130"\w* \w kisses|strong="H5390"\w* \w of|strong="H8130"\w* an \w enemy|strong="H8130"\w* are profuse. +\q1 +\v 7 \w A|strong="H3068"\w* \w full|strong="H7649"\w* \w soul|strong="H5315"\w* loathes \w a|strong="H3068"\w* \w honeycomb|strong="H5317"\w*; +\q2 \w but|strong="H3605"\w* \w to|strong="H5315"\w* \w a|strong="H3068"\w* \w hungry|strong="H7457"\w* \w soul|strong="H5315"\w*, \w every|strong="H3605"\w* \w bitter|strong="H4751"\w* \w thing|strong="H5315"\w* \w is|strong="H5315"\w* \w sweet|strong="H4966"\w*. +\q1 +\v 8 \w As|strong="H3651"\w* \w a|strong="H3068"\w* \w bird|strong="H6833"\w* \w that|strong="H3651"\w* \w wanders|strong="H5074"\w* \w from|strong="H4480"\w* \w her|strong="H3651"\w* \w nest|strong="H7064"\w*, +\q2 \w so|strong="H3651"\w* \w is|strong="H3651"\w* \w a|strong="H3068"\w* man who \w wanders|strong="H5074"\w* \w from|strong="H4480"\w* \w his|strong="H4480"\w* \w home|strong="H4725"\w*. +\q1 +\v 9 \w Perfume|strong="H7004"\w* \w and|strong="H8081"\w* \w incense|strong="H7004"\w* bring \w joy|strong="H8055"\w* \w to|strong="H3820"\w* \w the|strong="H8055"\w* \w heart|strong="H3820"\w*; +\q2 so \w does|strong="H5315"\w* earnest \w counsel|strong="H6098"\w* \w from|strong="H5315"\w* \w a|strong="H3068"\w* \w man|strong="H5315"\w*’s \w friend|strong="H7453"\w*. +\q1 +\v 10 Don’t \w forsake|strong="H5800"\w* \w your|strong="H5800"\w* \w friend|strong="H7453"\w* \w and|strong="H3117"\w* \w your|strong="H5800"\w* father’s \w friend|strong="H7453"\w*. +\q2 Don’t \w go|strong="H5800"\w* \w to|strong="H3117"\w* \w your|strong="H5800"\w* \w brother|strong="H7453"\w*’s \w house|strong="H1004"\w* \w in|strong="H1004"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H1004"\w* \w your|strong="H5800"\w* \w disaster|strong="H7463"\w*. +\q2 \w A|strong="H3068"\w* \w neighbor|strong="H7453"\w* \w who|strong="H2896"\w* \w is|strong="H3117"\w* \w near|strong="H7138"\w* \w is|strong="H3117"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w a|strong="H3068"\w* \w distant|strong="H7350"\w* \w brother|strong="H7453"\w*. +\q1 +\v 11 \w Be|strong="H1697"\w* \w wise|strong="H2449"\w*, \w my|strong="H7725"\w* \w son|strong="H1121"\w*, +\q2 \w and|strong="H1121"\w* \w bring|strong="H7725"\w* \w joy|strong="H8055"\w* \w to|strong="H7725"\w* \w my|strong="H7725"\w* \w heart|strong="H3820"\w*, +\q2 \w then|strong="H7725"\w* \w I|strong="H1697"\w* \w can|strong="H1121"\w* \w answer|strong="H7725"\w* \w my|strong="H7725"\w* tormentor. +\q1 +\v 12 \w A|strong="H3068"\w* \w prudent|strong="H6175"\w* \w man|strong="H6175"\w* \w sees|strong="H7200"\w* \w danger|strong="H7451"\w* \w and|strong="H7200"\w* takes refuge; +\q2 \w but|strong="H7200"\w* \w the|strong="H7200"\w* \w simple|strong="H6612"\w* \w pass|strong="H5674"\w* \w on|strong="H5674"\w*, \w and|strong="H7200"\w* suffer \w for|strong="H7451"\w* \w it|strong="H7200"\w*. +\q1 +\v 13 \w Take|strong="H3947"\w* \w his|strong="H3947"\w* garment \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w puts|strong="H2114"\w* \w up|strong="H3947"\w* \w collateral|strong="H6148"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w stranger|strong="H2114"\w*. +\q2 \w Hold|strong="H2254"\w* \w it|strong="H3588"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* wayward \w woman|strong="H5237"\w*! +\q1 +\v 14 \w He|strong="H1242"\w* who \w blesses|strong="H1288"\w* \w his|strong="H1288"\w* \w neighbor|strong="H7453"\w* \w with|strong="H6963"\w* \w a|strong="H3068"\w* \w loud|strong="H1419"\w* \w voice|strong="H6963"\w* \w early|strong="H7925"\w* \w in|strong="H1419"\w* \w the|strong="H1288"\w* \w morning|strong="H1242"\w*, +\q2 \w it|strong="H1242"\w* \w will|strong="H6963"\w* \w be|strong="H1288"\w* taken \w as|strong="H2803"\w* \w a|strong="H3068"\w* \w curse|strong="H7045"\w* \w by|strong="H1242"\w* \w him|strong="H6963"\w*. +\q1 +\v 15 \w A|strong="H3068"\w* \w continual|strong="H2956"\w* \w dropping|strong="H1812"\w* \w on|strong="H3117"\w* \w a|strong="H3068"\w* \w rainy|strong="H5464"\w* \w day|strong="H3117"\w* +\q2 \w and|strong="H3117"\w* \w a|strong="H3068"\w* \w contentious|strong="H4066"\w* wife \w are|strong="H3117"\w* \w alike|strong="H7737"\w*: +\q1 +\v 16 restraining \w her|strong="H7121"\w* \w is|strong="H7307"\w* \w like|strong="H7307"\w* restraining \w the|strong="H7121"\w* \w wind|strong="H7307"\w*, +\q2 \w or|strong="H3225"\w* \w like|strong="H7307"\w* grasping \w oil|strong="H8081"\w* \w in|strong="H7121"\w* \w his|strong="H7121"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w*. +\b +\q1 +\v 17 \w Iron|strong="H1270"\w* \w sharpens|strong="H2300"\w* \w iron|strong="H1270"\w*; +\q2 \w so|strong="H6440"\w* \w a|strong="H3068"\w* \w man|strong="H6440"\w* \w sharpens|strong="H2300"\w* \w his|strong="H6440"\w* \w friend|strong="H7453"\w*’s \w countenance|strong="H6440"\w*. +\q1 +\v 18 \w Whoever|strong="H8104"\w* \w tends|strong="H5341"\w* \w the|strong="H8104"\w* \w fig|strong="H8384"\w* \w tree|strong="H8384"\w* \w shall|strong="H5341"\w* eat \w its|strong="H8104"\w* \w fruit|strong="H6529"\w*. +\q2 He \w who|strong="H8104"\w* looks \w after|strong="H6529"\w* \w his|strong="H8104"\w* master \w shall|strong="H5341"\w* be \w honored|strong="H3513"\w*. +\q1 +\v 19 \w Like|strong="H3651"\w* \w water|strong="H4325"\w* reflects \w a|strong="H3068"\w* \w face|strong="H6440"\w*, +\q2 \w so|strong="H3651"\w* \w a|strong="H3068"\w* \w man|strong="H6440"\w*’s \w heart|strong="H3820"\w* reflects \w the|strong="H6440"\w* \w man|strong="H6440"\w*. +\q1 +\v 20 \w Sheol|strong="H7585"\w*\f + \fr 27:20 \ft Sheol is the place of the dead.\f* \w and|strong="H5869"\w* Abaddon \w are|strong="H5869"\w* \w never|strong="H3808"\w* \w satisfied|strong="H7646"\w*; +\q2 \w and|strong="H5869"\w* \w a|strong="H3068"\w* man’s \w eyes|strong="H5869"\w* \w are|strong="H5869"\w* \w never|strong="H3808"\w* \w satisfied|strong="H7646"\w*. +\q1 +\v 21 \w The|strong="H6310"\w* \w crucible|strong="H4715"\w* \w is|strong="H3701"\w* \w for|strong="H3701"\w* \w silver|strong="H3701"\w*, +\q2 \w and|strong="H3701"\w* \w the|strong="H6310"\w* \w furnace|strong="H3564"\w* \w for|strong="H3701"\w* \w gold|strong="H2091"\w*; +\q2 but man \w is|strong="H3701"\w* refined \w by|strong="H2091"\w* \w his|strong="H6310"\w* \w praise|strong="H4110"\w*. +\q1 +\v 22 Though \w you|strong="H5921"\w* grind \w a|strong="H3068"\w* fool \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w mortar|strong="H4388"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w pestle|strong="H5940"\w* \w along|strong="H5921"\w* \w with|strong="H5921"\w* \w grain|strong="H7383"\w*, +\q2 \w yet|strong="H3808"\w* \w his|strong="H5921"\w* foolishness \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w removed|strong="H5493"\w* \w from|strong="H5493"\w* \w him|strong="H5921"\w*. +\b +\q1 +\v 23 \w Know|strong="H3045"\w* \w well|strong="H3820"\w* \w the|strong="H6440"\w* \w state|strong="H6440"\w* \w of|strong="H6440"\w* \w your|strong="H6440"\w* \w flocks|strong="H6629"\w*, +\q2 \w and|strong="H6629"\w* \w pay|strong="H7896"\w* \w attention|strong="H3820"\w* \w to|strong="H3820"\w* \w your|strong="H6440"\w* \w herds|strong="H5739"\w*, +\q1 +\v 24 \w for|strong="H3588"\w* \w riches|strong="H2633"\w* \w are|strong="H5145"\w* \w not|strong="H3808"\w* \w forever|strong="H5769"\w*, +\q2 \w nor|strong="H3808"\w* \w does|strong="H3808"\w* \w the|strong="H3588"\w* \w crown|strong="H5145"\w* \w endure|strong="H5769"\w* \w to|strong="H1755"\w* \w all|strong="H1755"\w* \w generations|strong="H1755"\w*. +\q1 +\v 25 \w The|strong="H7200"\w* \w hay|strong="H2682"\w* \w is|strong="H1877"\w* \w removed|strong="H1540"\w*, \w and|strong="H7200"\w* \w the|strong="H7200"\w* \w new|strong="H1877"\w* \w growth|strong="H1877"\w* \w appears|strong="H7200"\w*, +\q2 \w the|strong="H7200"\w* grasses \w of|strong="H2022"\w* \w the|strong="H7200"\w* \w hills|strong="H2022"\w* \w are|strong="H2022"\w* gathered \w in|strong="H7200"\w*. +\q1 +\v 26 \w The|strong="H7704"\w* \w lambs|strong="H3532"\w* are \w for|strong="H7704"\w* your \w clothing|strong="H3830"\w*, +\q2 \w and|strong="H7704"\w* \w the|strong="H7704"\w* \w goats|strong="H6260"\w* are \w the|strong="H7704"\w* \w price|strong="H4242"\w* \w of|strong="H7704"\w* \w a|strong="H3068"\w* \w field|strong="H7704"\w*. +\q1 +\v 27 There \w will|strong="H1004"\w* \w be|strong="H1004"\w* \w plenty|strong="H1767"\w* \w of|strong="H1004"\w* \w goats|strong="H5795"\w*’ \w milk|strong="H2461"\w* \w for|strong="H1004"\w* \w your|strong="H1004"\w* \w food|strong="H3899"\w*, +\q2 \w for|strong="H1004"\w* \w your|strong="H1004"\w* \w family|strong="H1004"\w*’s \w food|strong="H3899"\w*, +\q2 \w and|strong="H1004"\w* \w for|strong="H1004"\w* \w the|strong="H1004"\w* nourishment \w of|strong="H1004"\w* \w your|strong="H1004"\w* servant \w girls|strong="H5291"\w*. +\c 28 +\q1 +\v 1 \w The|strong="H7291"\w* \w wicked|strong="H7563"\w* \w flee|strong="H5127"\w* \w when|strong="H5127"\w* \w no|strong="H7563"\w* \w one|strong="H6662"\w* \w pursues|strong="H7291"\w*; +\q2 \w but|strong="H7563"\w* \w the|strong="H7291"\w* \w righteous|strong="H6662"\w* \w are|strong="H7563"\w* \w as|strong="H5127"\w* bold \w as|strong="H5127"\w* \w a|strong="H3068"\w* \w lion|strong="H3715"\w*. +\q1 +\v 2 \w In|strong="H7227"\w* \w rebellion|strong="H6588"\w*, \w a|strong="H3068"\w* land \w has|strong="H3045"\w* \w many|strong="H7227"\w* \w rulers|strong="H8269"\w*, +\q2 \w but|strong="H3651"\w* order \w is|strong="H3651"\w* maintained by \w a|strong="H3068"\w* \w man|strong="H3045"\w* \w of|strong="H8269"\w* understanding \w and|strong="H3045"\w* \w knowledge|strong="H3045"\w*. +\q1 +\v 3 \w A|strong="H3068"\w* \w needy|strong="H1800"\w* \w man|strong="H1397"\w* \w who|strong="H1397"\w* \w oppresses|strong="H6231"\w* \w the|strong="H6231"\w* \w poor|strong="H1800"\w* +\q2 \w is|strong="H3899"\w* like \w a|strong="H3068"\w* \w driving|strong="H5502"\w* \w rain|strong="H4306"\w* \w which|strong="H3899"\w* leaves no crops. +\q1 +\v 4 Those \w who|strong="H8104"\w* \w forsake|strong="H5800"\w* \w the|strong="H8104"\w* \w law|strong="H8451"\w* \w praise|strong="H1984"\w* \w the|strong="H8104"\w* \w wicked|strong="H7563"\w*; +\q2 \w but|strong="H7563"\w* those \w who|strong="H8104"\w* \w keep|strong="H8104"\w* \w the|strong="H8104"\w* \w law|strong="H8451"\w* \w contend|strong="H1624"\w* \w with|strong="H1984"\w* \w them|strong="H8104"\w*. +\q1 +\v 5 \w Evil|strong="H7451"\w* \w men|strong="H7451"\w* don’t understand \w justice|strong="H4941"\w*; +\q2 \w but|strong="H3808"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w seek|strong="H1245"\w* \w Yahweh|strong="H3068"\w* understand \w it|strong="H3808"\w* fully. +\q1 +\v 6 \w Better|strong="H2896"\w* \w is|strong="H1931"\w* \w the|strong="H1870"\w* \w poor|strong="H7326"\w* \w who|strong="H1931"\w* \w walks|strong="H1980"\w* \w in|strong="H1980"\w* \w his|strong="H1980"\w* \w integrity|strong="H8537"\w* +\q2 \w than|strong="H2896"\w* \w he|strong="H1931"\w* \w who|strong="H1931"\w* \w is|strong="H1931"\w* \w perverse|strong="H6141"\w* \w in|strong="H1980"\w* \w his|strong="H1980"\w* \w ways|strong="H1870"\w*, \w and|strong="H1980"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w rich|strong="H6223"\w*. +\q1 +\v 7 Whoever \w keeps|strong="H5341"\w* \w the|strong="H5341"\w* \w law|strong="H8451"\w* \w is|strong="H1121"\w* \w a|strong="H3068"\w* wise \w son|strong="H1121"\w*; +\q2 but \w he|strong="H1121"\w* \w who|strong="H1121"\w* \w is|strong="H1121"\w* \w a|strong="H3068"\w* \w companion|strong="H7462"\w* \w of|strong="H1121"\w* \w gluttons|strong="H2151"\w* shames \w his|strong="H5341"\w* \w father|strong="H1121"\w*. +\q1 +\v 8 \w He|strong="H7235"\w* \w who|strong="H1800"\w* \w increases|strong="H7235"\w* \w his|strong="H7235"\w* \w wealth|strong="H1952"\w* \w by|strong="H6908"\w* excessive \w interest|strong="H5392"\w* +\q2 \w gathers|strong="H6908"\w* \w it|strong="H6908"\w* \w for|strong="H1800"\w* one \w who|strong="H1800"\w* has \w pity|strong="H2603"\w* \w on|strong="H7235"\w* \w the|strong="H6908"\w* \w poor|strong="H1800"\w*. +\q1 +\v 9 \w He|strong="H1571"\w* \w who|strong="H5493"\w* \w turns|strong="H5493"\w* \w away|strong="H5493"\w* \w his|strong="H8085"\w* \w ear|strong="H8085"\w* \w from|strong="H5493"\w* \w hearing|strong="H8085"\w* \w the|strong="H8085"\w* \w law|strong="H8451"\w*, +\q2 \w even|strong="H1571"\w* \w his|strong="H8085"\w* \w prayer|strong="H8605"\w* \w is|strong="H1571"\w* \w an|strong="H1571"\w* \w abomination|strong="H8441"\w*. +\q1 +\v 10 Whoever causes \w the|strong="H1870"\w* \w upright|strong="H3477"\w* \w to|strong="H1870"\w* \w go|strong="H7686"\w* \w astray|strong="H7686"\w* \w in|strong="H3477"\w* \w an|strong="H5157"\w* \w evil|strong="H7451"\w* \w way|strong="H1870"\w*, +\q2 \w he|strong="H1931"\w* \w will|strong="H3477"\w* \w fall|strong="H5307"\w* \w into|strong="H5307"\w* \w his|strong="H1931"\w* \w own|strong="H5157"\w* trap; +\q2 \w but|strong="H1870"\w* \w the|strong="H1870"\w* \w blameless|strong="H8549"\w* \w will|strong="H3477"\w* \w inherit|strong="H5157"\w* \w good|strong="H2896"\w*. +\q1 +\v 11 \w The|strong="H5869"\w* \w rich|strong="H6223"\w* \w man|strong="H2450"\w* \w is|strong="H5869"\w* \w wise|strong="H2450"\w* \w in|strong="H2450"\w* \w his|strong="H5869"\w* \w own|strong="H5869"\w* \w eyes|strong="H5869"\w*; +\q2 but \w the|strong="H5869"\w* \w poor|strong="H1800"\w* \w who|strong="H2450"\w* \w has|strong="H5869"\w* understanding \w sees|strong="H2713"\w* \w through|strong="H2713"\w* \w him|strong="H5869"\w*. +\q1 +\v 12 \w When|strong="H6965"\w* \w the|strong="H6965"\w* \w righteous|strong="H6662"\w* \w triumph|strong="H5970"\w*, \w there|strong="H6965"\w* \w is|strong="H7563"\w* \w great|strong="H7227"\w* \w glory|strong="H8597"\w*; +\q2 \w but|strong="H7563"\w* \w when|strong="H6965"\w* \w the|strong="H6965"\w* \w wicked|strong="H7563"\w* \w rise|strong="H6965"\w*, \w men|strong="H7563"\w* \w hide|strong="H2664"\w* themselves. +\q1 +\v 13 \w He|strong="H3808"\w* \w who|strong="H3808"\w* \w conceals|strong="H3680"\w* \w his|strong="H5800"\w* \w sins|strong="H6588"\w* doesn’t \w prosper|strong="H6743"\w*, +\q2 \w but|strong="H3808"\w* whoever \w confesses|strong="H3034"\w* \w and|strong="H3034"\w* renounces \w them|strong="H5800"\w* \w finds|strong="H7355"\w* \w mercy|strong="H7355"\w*. +\q1 +\v 14 Blessed \w is|strong="H3820"\w* \w the|strong="H5307"\w* \w man|strong="H7451"\w* who \w always|strong="H8548"\w* \w fears|strong="H6342"\w*; +\q2 \w but|strong="H7451"\w* one who \w hardens|strong="H7185"\w* \w his|strong="H7185"\w* \w heart|strong="H3820"\w* \w falls|strong="H5307"\w* \w into|strong="H5307"\w* \w trouble|strong="H7451"\w*. +\q1 +\v 15 \w As|strong="H5971"\w* \w a|strong="H3068"\w* \w roaring|strong="H5098"\w* lion \w or|strong="H1800"\w* \w a|strong="H3068"\w* charging \w bear|strong="H1677"\w*, +\q2 \w so|strong="H5921"\w* \w is|strong="H7563"\w* \w a|strong="H3068"\w* \w wicked|strong="H7563"\w* \w ruler|strong="H4910"\w* \w over|strong="H5921"\w* \w helpless|strong="H1800"\w* \w people|strong="H5971"\w*. +\q1 +\v 16 \w A|strong="H3068"\w* tyrannical \w ruler|strong="H5057"\w* \w lacks|strong="H2638"\w* judgment. +\q2 \w One|strong="H7227"\w* \w who|strong="H2638"\w* \w hates|strong="H8130"\w* ill-gotten \w gain|strong="H1215"\w* \w will|strong="H7227"\w* \w have|strong="H3117"\w* \w long|strong="H3117"\w* \w days|strong="H3117"\w*. +\q1 +\v 17 \w A|strong="H3068"\w* \w man|strong="H5315"\w* \w who|strong="H5315"\w* \w is|strong="H5315"\w* tormented \w by|strong="H5704"\w* \w blood|strong="H1818"\w* \w guilt|strong="H1818"\w* \w will|strong="H5315"\w* \w be|strong="H5315"\w* \w a|strong="H3068"\w* \w fugitive|strong="H5127"\w* \w until|strong="H5704"\w* \w death|strong="H1818"\w*. +\q2 No \w one|strong="H5315"\w* \w will|strong="H5315"\w* \w support|strong="H8551"\w* \w him|strong="H5315"\w*. +\q1 +\v 18 Whoever \w walks|strong="H1980"\w* \w blamelessly|strong="H8549"\w* \w is|strong="H1870"\w* kept \w safe|strong="H3467"\w*; +\q2 \w but|strong="H1870"\w* one \w with|strong="H1980"\w* \w perverse|strong="H6140"\w* \w ways|strong="H1870"\w* \w will|strong="H8549"\w* \w fall|strong="H5307"\w* suddenly. +\q1 +\v 19 One who \w works|strong="H5647"\w* \w his|strong="H5647"\w* land \w will|strong="H7389"\w* \w have|strong="H7646"\w* \w an|strong="H7291"\w* \w abundance|strong="H7646"\w* \w of|strong="H3899"\w* \w food|strong="H3899"\w*; +\q2 \w but|strong="H7291"\w* one who \w chases|strong="H7291"\w* fantasies \w will|strong="H7389"\w* \w have|strong="H7646"\w* \w his|strong="H5647"\w* \w fill|strong="H7646"\w* \w of|strong="H3899"\w* \w poverty|strong="H7389"\w*. +\q1 +\v 20 \w A|strong="H3068"\w* faithful man \w is|strong="H3808"\w* \w rich|strong="H6238"\w* \w with|strong="H1293"\w* \w blessings|strong="H1293"\w*; +\q2 \w but|strong="H3808"\w* \w one|strong="H3808"\w* \w who|strong="H7227"\w* \w is|strong="H3808"\w* eager \w to|strong="H3808"\w* \w be|strong="H3808"\w* \w rich|strong="H6238"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w go|strong="H5352"\w* \w unpunished|strong="H5352"\w*. +\q1 +\v 21 \w To|strong="H5921"\w* \w show|strong="H5234"\w* \w partiality|strong="H5234"\w* \w is|strong="H2896"\w* \w not|strong="H3808"\w* \w good|strong="H2896"\w*, +\q2 \w yet|strong="H3808"\w* \w a|strong="H3068"\w* \w man|strong="H1397"\w* \w will|strong="H3808"\w* do wrong \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w piece|strong="H6595"\w* \w of|strong="H6440"\w* \w bread|strong="H3899"\w*. +\q1 +\v 22 \w A|strong="H3068"\w* stingy \w man|strong="H7451"\w* hurries \w after|strong="H3588"\w* \w riches|strong="H1952"\w*, +\q2 \w and|strong="H5869"\w* doesn’t \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w poverty|strong="H2639"\w* waits \w for|strong="H3588"\w* \w him|strong="H3045"\w*. +\q1 +\v 23 \w One|strong="H3956"\w* \w who|strong="H4672"\w* \w rebukes|strong="H3198"\w* \w a|strong="H3068"\w* man \w will|strong="H3956"\w* afterward \w find|strong="H4672"\w* \w more|strong="H4672"\w* \w favor|strong="H2580"\w* +\q2 \w than|strong="H2505"\w* \w one|strong="H3956"\w* \w who|strong="H4672"\w* \w flatters|strong="H2505"\w* \w with|strong="H3198"\w* \w the|strong="H4672"\w* \w tongue|strong="H3956"\w*. +\q1 +\v 24 Whoever \w robs|strong="H1497"\w* \w his|strong="H7843"\w* father or \w his|strong="H7843"\w* mother \w and|strong="H7843"\w* says, “\w It|strong="H1931"\w*’s not wrong,” +\q2 \w is|strong="H1931"\w* \w a|strong="H3068"\w* partner \w with|strong="H1931"\w* \w a|strong="H3068"\w* \w destroyer|strong="H7843"\w*. +\q1 +\v 25 \w One|strong="H5315"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w greedy|strong="H5315"\w* \w stirs|strong="H1624"\w* \w up|strong="H1624"\w* \w strife|strong="H4066"\w*; +\q2 \w but|strong="H3068"\w* \w one|strong="H5315"\w* \w who|strong="H3068"\w* trusts \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w prosper|strong="H1878"\w*. +\q1 +\v 26 \w One|strong="H1931"\w* \w who|strong="H1931"\w* trusts \w in|strong="H1980"\w* \w himself|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w*; +\q2 \w but|strong="H1931"\w* \w one|strong="H1931"\w* \w who|strong="H1931"\w* \w walks|strong="H1980"\w* \w in|strong="H1980"\w* \w wisdom|strong="H2451"\w* \w is|strong="H1931"\w* kept safe. +\q1 +\v 27 \w One|strong="H7227"\w* \w who|strong="H7227"\w* \w gives|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w poor|strong="H7326"\w* \w has|strong="H5869"\w* \w no|strong="H5414"\w* \w lack|strong="H4270"\w*; +\q2 \w but|strong="H7326"\w* \w one|strong="H7227"\w* \w who|strong="H7227"\w* closes \w his|strong="H5414"\w* \w eyes|strong="H5869"\w* \w will|strong="H5869"\w* \w have|strong="H5869"\w* \w many|strong="H7227"\w* \w curses|strong="H3994"\w*. +\q1 +\v 28 \w When|strong="H7235"\w* \w the|strong="H6965"\w* \w wicked|strong="H7563"\w* \w rise|strong="H6965"\w*, \w men|strong="H7563"\w* \w hide|strong="H5641"\w* \w themselves|strong="H5641"\w*; +\q2 \w but|strong="H7563"\w* \w when|strong="H7235"\w* they perish, \w the|strong="H6965"\w* \w righteous|strong="H6662"\w* thrive. +\c 29 +\q1 +\v 1 He who \w is|strong="H8433"\w* often rebuked \w and|strong="H7665"\w* stiffens \w his|strong="H7665"\w* \w neck|strong="H6203"\w* +\q2 \w will|strong="H8433"\w* \w be|strong="H6621"\w* \w destroyed|strong="H7665"\w* \w suddenly|strong="H6621"\w*, \w with|strong="H6203"\w* no \w remedy|strong="H4832"\w*. +\q1 +\v 2 \w When|strong="H7235"\w* \w the|strong="H8055"\w* \w righteous|strong="H6662"\w* thrive, \w the|strong="H8055"\w* \w people|strong="H5971"\w* \w rejoice|strong="H8055"\w*; +\q2 \w but|strong="H7563"\w* \w when|strong="H7235"\w* \w the|strong="H8055"\w* \w wicked|strong="H7563"\w* \w rule|strong="H4910"\w*, \w the|strong="H8055"\w* \w people|strong="H5971"\w* groan. +\q1 +\v 3 Whoever loves \w wisdom|strong="H2451"\w* brings \w joy|strong="H8055"\w* \w to|strong="H8055"\w* \w his|strong="H7462"\w* father; +\q2 \w but|strong="H8055"\w* \w a|strong="H3068"\w* \w companion|strong="H7462"\w* \w of|strong="H2451"\w* \w prostitutes|strong="H2181"\w* squanders \w his|strong="H7462"\w* \w wealth|strong="H1952"\w*. +\q1 +\v 4 \w The|strong="H5975"\w* \w king|strong="H4428"\w* \w by|strong="H5975"\w* \w justice|strong="H4941"\w* makes \w the|strong="H5975"\w* land stable, +\q2 \w but|strong="H4428"\w* \w he|strong="H4428"\w* \w who|strong="H4428"\w* \w takes|strong="H5975"\w* \w bribes|strong="H8641"\w* \w tears|strong="H2040"\w* \w it|strong="H5975"\w* \w down|strong="H2040"\w*. +\q1 +\v 5 \w A|strong="H3068"\w* \w man|strong="H1397"\w* \w who|strong="H1397"\w* \w flatters|strong="H2505"\w* \w his|strong="H5921"\w* \w neighbor|strong="H7453"\w* +\q2 \w spreads|strong="H6566"\w* \w a|strong="H3068"\w* \w net|strong="H7568"\w* \w for|strong="H5921"\w* \w his|strong="H5921"\w* \w feet|strong="H6471"\w*. +\q1 +\v 6 \w An|strong="H6588"\w* \w evil|strong="H7451"\w* \w man|strong="H6662"\w* \w is|strong="H6662"\w* \w snared|strong="H4170"\w* \w by|strong="H7451"\w* \w his|strong="H8055"\w* \w sin|strong="H6588"\w*, +\q2 \w but|strong="H6662"\w* \w the|strong="H8055"\w* \w righteous|strong="H6662"\w* \w can|strong="H7451"\w* \w sing|strong="H7442"\w* \w and|strong="H6662"\w* \w be|strong="H6662"\w* \w glad|strong="H8055"\w*. +\q1 +\v 7 \w The|strong="H3045"\w* \w righteous|strong="H6662"\w* care \w about|strong="H3045"\w* \w justice|strong="H1779"\w* \w for|strong="H3045"\w* \w the|strong="H3045"\w* \w poor|strong="H1800"\w*. +\q2 \w The|strong="H3045"\w* \w wicked|strong="H7563"\w* aren’t \w concerned|strong="H3045"\w* \w about|strong="H3045"\w* \w knowledge|strong="H1847"\w*. +\q1 +\v 8 Mockers stir \w up|strong="H7725"\w* \w a|strong="H3068"\w* \w city|strong="H7151"\w*, +\q2 \w but|strong="H7725"\w* \w wise|strong="H2450"\w* \w men|strong="H2450"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* anger. +\q1 +\v 9 If \w a|strong="H3068"\w* \w wise|strong="H2450"\w* \w man|strong="H2450"\w* \w goes|strong="H8199"\w* \w to|strong="H2450"\w* court \w with|strong="H8199"\w* \w a|strong="H3068"\w* foolish \w man|strong="H2450"\w*, +\q2 \w the|strong="H8199"\w* fool \w rages|strong="H7264"\w* \w or|strong="H7264"\w* scoffs, \w and|strong="H2450"\w* there \w is|strong="H2450"\w* no \w peace|strong="H5183"\w*. +\q1 +\v 10 \w The|strong="H1245"\w* bloodthirsty \w hate|strong="H8130"\w* \w a|strong="H3068"\w* \w man|strong="H5315"\w* \w of|strong="H1818"\w* \w integrity|strong="H8535"\w*; +\q2 \w and|strong="H1818"\w* \w they|strong="H5315"\w* \w seek|strong="H1245"\w* \w the|strong="H1245"\w* \w life|strong="H5315"\w* \w of|strong="H1818"\w* \w the|strong="H1245"\w* \w upright|strong="H3477"\w*. +\q1 +\v 11 \w A|strong="H3068"\w* \w fool|strong="H3684"\w* vents \w all|strong="H3605"\w* \w of|strong="H7307"\w* \w his|strong="H3605"\w* \w anger|strong="H7307"\w*, +\q2 \w but|strong="H3605"\w* \w a|strong="H3068"\w* \w wise|strong="H2450"\w* \w man|strong="H2450"\w* \w brings|strong="H3318"\w* himself \w under|strong="H3605"\w* control. +\q1 +\v 12 If \w a|strong="H3068"\w* \w ruler|strong="H4910"\w* \w listens|strong="H7181"\w* \w to|strong="H5921"\w* \w lies|strong="H8267"\w*, +\q2 \w all|strong="H3605"\w* \w of|strong="H1697"\w* \w his|strong="H3605"\w* officials \w are|strong="H7563"\w* \w wicked|strong="H7563"\w*. +\q1 +\v 13 \w The|strong="H3068"\w* \w poor|strong="H7326"\w* \w man|strong="H7326"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* oppressor \w have|strong="H3068"\w* \w this|strong="H3068"\w* \w in|strong="H3068"\w* \w common|strong="H6298"\w*: +\q2 \w Yahweh|strong="H3068"\w* gives \w sight|strong="H5869"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w eyes|strong="H5869"\w* \w of|strong="H3068"\w* \w both|strong="H8147"\w*. +\q1 +\v 14 \w The|strong="H8199"\w* \w king|strong="H4428"\w* \w who|strong="H4428"\w* fairly \w judges|strong="H8199"\w* \w the|strong="H8199"\w* \w poor|strong="H1800"\w*, +\q2 \w his|strong="H3559"\w* \w throne|strong="H3678"\w* \w shall|strong="H4428"\w* \w be|strong="H4428"\w* \w established|strong="H3559"\w* \w forever|strong="H5703"\w*. +\q1 +\v 15 \w The|strong="H5414"\w* \w rod|strong="H7626"\w* \w of|strong="H7626"\w* \w correction|strong="H7626"\w* \w gives|strong="H5414"\w* \w wisdom|strong="H2451"\w*, +\q2 but \w a|strong="H3068"\w* \w child|strong="H5288"\w* \w left|strong="H5414"\w* \w to|strong="H7971"\w* himself \w causes|strong="H5414"\w* shame \w to|strong="H7971"\w* \w his|strong="H5414"\w* mother. +\q1 +\v 16 \w When|strong="H7200"\w* \w the|strong="H7200"\w* \w wicked|strong="H7563"\w* \w increase|strong="H7235"\w*, \w sin|strong="H6588"\w* \w increases|strong="H7235"\w*; +\q2 \w but|strong="H7200"\w* \w the|strong="H7200"\w* \w righteous|strong="H6662"\w* \w will|strong="H6662"\w* \w see|strong="H7200"\w* \w their|strong="H7200"\w* downfall. +\q1 +\v 17 \w Correct|strong="H3256"\w* \w your|strong="H5414"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w he|strong="H5414"\w* \w will|strong="H1121"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w peace|strong="H5117"\w*; +\q2 yes, \w he|strong="H5414"\w* \w will|strong="H1121"\w* \w bring|strong="H5414"\w* \w delight|strong="H4574"\w* \w to|strong="H5414"\w* \w your|strong="H5414"\w* \w soul|strong="H5315"\w*. +\q1 +\v 18 Where there \w is|strong="H8451"\w* no revelation, \w the|strong="H8104"\w* \w people|strong="H5971"\w* cast off \w restraint|strong="H6544"\w*; +\q2 \w but|strong="H6544"\w* one \w who|strong="H5971"\w* \w keeps|strong="H8104"\w* \w the|strong="H8104"\w* \w law|strong="H8451"\w* \w is|strong="H8451"\w* blessed. +\q1 +\v 19 \w A|strong="H3068"\w* \w servant|strong="H5650"\w* \w can|strong="H5650"\w*’t \w be|strong="H3808"\w* \w corrected|strong="H3256"\w* \w by|strong="H3808"\w* \w words|strong="H1697"\w*. +\q2 \w Though|strong="H3588"\w* \w he|strong="H3588"\w* understands, \w yet|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H5650"\w* \w not|strong="H3808"\w* respond. +\q1 +\v 20 \w Do|strong="H1697"\w* \w you|strong="H4480"\w* \w see|strong="H2372"\w* \w a|strong="H3068"\w* \w man|strong="H3684"\w* \w who|strong="H3684"\w* \w is|strong="H1697"\w* hasty \w in|strong="H1697"\w* \w his|strong="H4480"\w* \w words|strong="H1697"\w*? +\q2 \w There|strong="H4480"\w* \w is|strong="H1697"\w* \w more|strong="H4480"\w* \w hope|strong="H8615"\w* \w for|strong="H4480"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w* \w than|strong="H4480"\w* \w for|strong="H4480"\w* \w him|strong="H4480"\w*. +\q1 +\v 21 He \w who|strong="H5650"\w* \w pampers|strong="H6445"\w* \w his|strong="H1961"\w* \w servant|strong="H5650"\w* \w from|strong="H1961"\w* \w youth|strong="H5290"\w* +\q2 \w will|strong="H1961"\w* \w have|strong="H1961"\w* \w him|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w son|strong="H4497"\w* \w in|strong="H5650"\w* \w the|strong="H1961"\w* end. +\q1 +\v 22 \w An|strong="H1624"\w* \w angry|strong="H2534"\w* \w man|strong="H1167"\w* \w stirs|strong="H1624"\w* \w up|strong="H1624"\w* \w strife|strong="H4066"\w*, +\q2 \w and|strong="H7227"\w* \w a|strong="H3068"\w* \w wrathful|strong="H2534"\w* \w man|strong="H1167"\w* \w abounds|strong="H7227"\w* \w in|strong="H7227"\w* \w sin|strong="H6588"\w*. +\q1 +\v 23 \w A|strong="H3068"\w* \w man|strong="H8213"\w*’s \w pride|strong="H1346"\w* \w brings|strong="H8213"\w* \w him|strong="H8213"\w* \w low|strong="H8213"\w*, +\q2 \w but|strong="H1346"\w* one \w of|strong="H7307"\w* \w lowly|strong="H8217"\w* \w spirit|strong="H7307"\w* \w gains|strong="H8551"\w* \w honor|strong="H3519"\w*. +\q1 +\v 24 Whoever \w is|strong="H5315"\w* \w an|strong="H8085"\w* accomplice \w of|strong="H5315"\w* \w a|strong="H3068"\w* \w thief|strong="H1590"\w* \w is|strong="H5315"\w* \w an|strong="H8085"\w* \w enemy|strong="H8130"\w* \w of|strong="H5315"\w* \w his|strong="H8085"\w* \w own|strong="H5315"\w* \w soul|strong="H5315"\w*. +\q2 \w He|strong="H3808"\w* takes \w an|strong="H8085"\w* oath, \w but|strong="H3808"\w* dares \w not|strong="H3808"\w* testify. +\q1 +\v 25 \w The|strong="H5414"\w* \w fear|strong="H2731"\w* \w of|strong="H3068"\w* man proves \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w a|strong="H3068"\w* \w snare|strong="H4170"\w*, +\q2 \w but|strong="H3068"\w* whoever \w puts|strong="H5414"\w* \w his|strong="H5414"\w* trust \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w kept|strong="H5414"\w* \w safe|strong="H7682"\w*. +\q1 +\v 26 \w Many|strong="H7227"\w* \w seek|strong="H1245"\w* \w the|strong="H6440"\w* \w ruler|strong="H4910"\w*’s \w favor|strong="H6440"\w*, +\q2 \w but|strong="H3068"\w* \w a|strong="H3068"\w* \w man|strong="H6440"\w*’s \w justice|strong="H4941"\w* \w comes|strong="H6440"\w* \w from|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 27 \w A|strong="H3068"\w* dishonest \w man|strong="H7563"\w* detests \w the|strong="H1870"\w* \w righteous|strong="H6662"\w*, +\q2 \w and|strong="H1870"\w* \w the|strong="H1870"\w* \w upright|strong="H3477"\w* \w in|strong="H3477"\w* \w their|strong="H1870"\w* \w ways|strong="H1870"\w* detest \w the|strong="H1870"\w* \w wicked|strong="H7563"\w*. +\c 30 +\p +\v 1 \w The|strong="H5002"\w* \w words|strong="H1697"\w* \w of|strong="H1121"\w* Agur \w the|strong="H5002"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jakeh|strong="H3348"\w*, \w the|strong="H5002"\w* revelation: +\q1 \w the|strong="H5002"\w* \w man|strong="H1397"\w* \w says|strong="H5002"\w* \w to|strong="H1121"\w* Ithiel, +\q2 \w to|strong="H1121"\w* Ithiel \w and|strong="H1121"\w* Ucal: +\q1 +\v 2 “\w Surely|strong="H3588"\w* \w I|strong="H3588"\w* am \w the|strong="H3588"\w* most \w ignorant|strong="H3808"\w* man, +\q2 \w and|strong="H3808"\w* don’t \w have|strong="H3808"\w* \w a|strong="H3068"\w* man’s understanding. +\q1 +\v 3 \w I|strong="H3045"\w* \w have|strong="H3045"\w* \w not|strong="H3808"\w* \w learned|strong="H3925"\w* \w wisdom|strong="H2451"\w*, +\q2 \w neither|strong="H3808"\w* do \w I|strong="H3045"\w* \w have|strong="H3045"\w* \w the|strong="H3045"\w* \w knowledge|strong="H1847"\w* \w of|strong="H6918"\w* \w the|strong="H3045"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w*. +\q1 +\v 4 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* \w ascended|strong="H5927"\w* \w up|strong="H5927"\w* \w into|strong="H3381"\w* \w heaven|strong="H8064"\w*, \w and|strong="H1121"\w* \w descended|strong="H3381"\w*? +\q2 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* \w gathered|strong="H3588"\w* \w the|strong="H3605"\w* \w wind|strong="H7307"\w* \w in|strong="H1121"\w* \w his|strong="H3605"\w* \w fists|strong="H2651"\w*? +\q2 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* \w bound|strong="H6887"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w in|strong="H1121"\w* \w his|strong="H3605"\w* \w garment|strong="H8071"\w*? +\q2 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* \w established|strong="H6965"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* ends \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w earth|strong="H5927"\w*? +\q2 \w What|strong="H4100"\w* \w is|strong="H4310"\w* \w his|strong="H3605"\w* \w name|strong="H8034"\w*, \w and|strong="H1121"\w* \w what|strong="H4100"\w* \w is|strong="H4310"\w* \w his|strong="H3605"\w* \w son|strong="H1121"\w*’s \w name|strong="H8034"\w*, \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w know|strong="H3045"\w*? +\b +\q1 +\v 5 “\w Every|strong="H3605"\w* word \w of|strong="H3605"\w* God \w is|strong="H1931"\w* flawless. +\q2 \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w shield|strong="H4043"\w* \w to|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w take|strong="H2620"\w* \w refuge|strong="H2620"\w* \w in|strong="H1931"\w* \w him|strong="H1931"\w*. +\q1 +\v 6 Don’t \w you|strong="H5921"\w* \w add|strong="H3254"\w* \w to|strong="H5921"\w* \w his|strong="H5921"\w* \w words|strong="H1697"\w*, +\q2 \w lest|strong="H6435"\w* \w he|strong="H5921"\w* \w reprove|strong="H3198"\w* \w you|strong="H5921"\w*, \w and|strong="H1697"\w* \w you|strong="H5921"\w* \w be|strong="H1697"\w* found \w a|strong="H3068"\w* \w liar|strong="H3576"\w*. +\b +\q1 +\v 7 “\w Two|strong="H8147"\w* \w things|strong="H8147"\w* \w I|strong="H2962"\w* \w have|strong="H8147"\w* \w asked|strong="H7592"\w* \w of|strong="H4480"\w* \w you|strong="H4480"\w*. +\q2 Don’t \w deny|strong="H4513"\w* \w me|strong="H4480"\w* \w before|strong="H4480"\w* \w I|strong="H2962"\w* \w die|strong="H4191"\w*. +\q1 +\v 8 \w Remove|strong="H7368"\w* \w far|strong="H7368"\w* \w from|strong="H4480"\w* \w me|strong="H5414"\w* \w falsehood|strong="H7723"\w* \w and|strong="H3899"\w* \w lies|strong="H3577"\w*. +\q2 \w Give|strong="H5414"\w* \w me|strong="H5414"\w* \w neither|strong="H4480"\w* \w poverty|strong="H7389"\w* \w nor|strong="H3899"\w* \w riches|strong="H6239"\w*. +\q2 \w Feed|strong="H2963"\w* \w me|strong="H5414"\w* \w with|strong="H1697"\w* \w the|strong="H5414"\w* \w food|strong="H3899"\w* \w that|strong="H1697"\w* \w is|strong="H1697"\w* needful \w for|strong="H2706"\w* \w me|strong="H5414"\w*, +\q1 +\v 9 \w lest|strong="H6435"\w* \w I|strong="H3068"\w* \w be|strong="H3068"\w* \w full|strong="H7646"\w*, \w deny|strong="H3584"\w* \w you|strong="H6435"\w*, \w and|strong="H3068"\w* say, ‘\w Who|strong="H4310"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*?’ +\q2 \w or|strong="H6435"\w* \w lest|strong="H6435"\w* \w I|strong="H3068"\w* \w be|strong="H3068"\w* \w poor|strong="H3423"\w*, \w and|strong="H3068"\w* \w steal|strong="H1589"\w*, +\q2 \w and|strong="H3068"\w* \w so|strong="H6435"\w* dishonor \w the|strong="H3068"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*. +\b +\q1 +\v 10 “Don’t \w slander|strong="H3960"\w* \w a|strong="H3068"\w* \w servant|strong="H5650"\w* \w to|strong="H5650"\w* \w his|strong="H7043"\w* master, +\q2 \w lest|strong="H6435"\w* \w he|strong="H7043"\w* \w curse|strong="H7043"\w* \w you|strong="H6435"\w*, \w and|strong="H5650"\w* \w you|strong="H6435"\w* \w be|strong="H5650"\w* held guilty. +\b +\q1 +\v 11 There \w is|strong="H1288"\w* \w a|strong="H3068"\w* \w generation|strong="H1755"\w* \w that|strong="H3808"\w* \w curses|strong="H7043"\w* \w their|strong="H3808"\w* father, +\q2 \w and|strong="H3808"\w* doesn’t \w bless|strong="H1288"\w* \w their|strong="H3808"\w* mother. +\q1 +\v 12 There \w is|strong="H5869"\w* \w a|strong="H3068"\w* \w generation|strong="H1755"\w* \w that|strong="H5869"\w* \w is|strong="H5869"\w* \w pure|strong="H2889"\w* \w in|strong="H7364"\w* \w their|strong="H7364"\w* \w own|strong="H5869"\w* \w eyes|strong="H5869"\w*, +\q2 \w yet|strong="H3808"\w* \w are|strong="H5869"\w* \w not|strong="H3808"\w* \w washed|strong="H7364"\w* \w from|strong="H5869"\w* \w their|strong="H7364"\w* \w filthiness|strong="H6675"\w*. +\q1 +\v 13 There \w is|strong="H4100"\w* \w a|strong="H3068"\w* \w generation|strong="H1755"\w*, oh \w how|strong="H4100"\w* \w lofty|strong="H7311"\w* \w are|strong="H5869"\w* \w their|strong="H5375"\w* \w eyes|strong="H5869"\w*! +\q2 \w Their|strong="H5375"\w* \w eyelids|strong="H6079"\w* \w are|strong="H5869"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w*. +\q1 +\v 14 There \w is|strong="H2719"\w* \w a|strong="H3068"\w* \w generation|strong="H1755"\w* whose \w teeth|strong="H8127"\w* \w are|strong="H8127"\w* like \w swords|strong="H2719"\w*, +\q2 \w and|strong="H6041"\w* \w their|strong="H1755"\w* \w jaws|strong="H4973"\w* like \w knives|strong="H2719"\w*, +\q2 \w to|strong="H1755"\w* devour \w the|strong="H2719"\w* \w poor|strong="H6041"\w* \w from|strong="H2719"\w* \w the|strong="H2719"\w* earth, \w and|strong="H6041"\w* \w the|strong="H2719"\w* \w needy|strong="H6041"\w* \w from|strong="H2719"\w* \w among|strong="H2719"\w* men. +\b +\q1 +\v 15 “\w The|strong="H3808"\w* \w leech|strong="H5936"\w* \w has|strong="H5936"\w* \w two|strong="H8147"\w* \w daughters|strong="H1323"\w*: +\q2 ‘\w Give|strong="H3051"\w*, \w give|strong="H3051"\w*.’ +\b +\q1 “There \w are|strong="H1323"\w* \w three|strong="H7969"\w* \w things|strong="H7969"\w* \w that|strong="H3808"\w* \w are|strong="H1323"\w* \w never|strong="H3808"\w* \w satisfied|strong="H7646"\w*; +\q2 \w four|strong="H7969"\w* \w that|strong="H3808"\w* don’t say, ‘\w Enough|strong="H7646"\w*!’: +\q2 +\v 16 \w Sheol|strong="H7585"\w*,\f + \fr 30:16 \ft Sheol is the place of the dead.\f* +\q2 \w the|strong="H3808"\w* \w barren|strong="H6115"\w* \w womb|strong="H7356"\w*, +\q2 \w the|strong="H3808"\w* earth \w that|strong="H4325"\w* \w is|strong="H4325"\w* \w not|strong="H3808"\w* \w satisfied|strong="H7646"\w* \w with|strong="H7646"\w* \w water|strong="H4325"\w*, +\q2 \w and|strong="H4325"\w* \w the|strong="H3808"\w* fire \w that|strong="H4325"\w* doesn’t say, ‘\w Enough|strong="H7646"\w*!’ +\b +\q1 +\v 17 “\w The|strong="H5869"\w* \w eye|strong="H5869"\w* \w that|strong="H1121"\w* \w mocks|strong="H3932"\w* \w at|strong="H5869"\w* \w his|strong="H5869"\w* \w father|strong="H1121"\w*, +\q2 \w and|strong="H1121"\w* scorns \w obedience|strong="H3349"\w* \w to|strong="H1121"\w* \w his|strong="H5869"\w* mother, +\q2 \w the|strong="H5869"\w* \w ravens|strong="H6158"\w* \w of|strong="H1121"\w* \w the|strong="H5869"\w* \w valley|strong="H5158"\w* \w shall|strong="H1121"\w* \w pick|strong="H5365"\w* \w it|strong="H5869"\w* \w out|strong="H5365"\w*, +\q2 \w the|strong="H5869"\w* \w young|strong="H1121"\w* \w eagles|strong="H5404"\w* \w shall|strong="H1121"\w* eat \w it|strong="H5869"\w*. +\b +\q1 +\v 18 “\w There|strong="H1992"\w* \w are|strong="H1992"\w* \w three|strong="H7969"\w* \w things|strong="H6381"\w* \w which|strong="H1992"\w* \w are|strong="H1992"\w* \w too|strong="H4480"\w* \w amazing|strong="H6381"\w* \w for|strong="H3045"\w* \w me|strong="H4480"\w*, +\q2 \w four|strong="H7969"\w* \w which|strong="H1992"\w* \w I|strong="H3045"\w* don’t \w understand|strong="H3045"\w*: +\q2 +\v 19 \w The|strong="H5921"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w an|strong="H5921"\w* \w eagle|strong="H5404"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w air|strong="H8064"\w*, +\q2 \w the|strong="H5921"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w a|strong="H3068"\w* \w serpent|strong="H5175"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w rock|strong="H6697"\w*, +\q2 \w the|strong="H5921"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w a|strong="H3068"\w* ship \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H3820"\w* \w of|strong="H1870"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*, +\q2 \w and|strong="H8064"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w a|strong="H3068"\w* \w man|strong="H1397"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w maiden|strong="H5959"\w*. +\b +\q1 +\v 20 “\w So|strong="H3651"\w* \w is|strong="H1870"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* an \w adulterous|strong="H5003"\w* woman: +\q2 \w She|strong="H3651"\w* eats \w and|strong="H1870"\w* \w wipes|strong="H4229"\w* \w her|strong="H1870"\w* \w mouth|strong="H6310"\w*, +\q2 \w and|strong="H1870"\w* \w says|strong="H6310"\w*, ‘\w I|strong="H3651"\w* \w have|strong="H3808"\w* \w done|strong="H6466"\w* \w nothing|strong="H3808"\w* \w wrong|strong="H6466"\w*.’ +\b +\q1 +\v 21 “\w For|strong="H8478"\w* \w three|strong="H7969"\w* \w things|strong="H7969"\w* \w the|strong="H5375"\w* earth \w trembles|strong="H7264"\w*, +\q2 \w and|strong="H7969"\w* \w under|strong="H8478"\w* \w four|strong="H7969"\w*, \w it|strong="H5375"\w* \w can|strong="H3201"\w*’t \w bear|strong="H5375"\w* \w up|strong="H5375"\w*: +\q2 +\v 22 \w For|strong="H3588"\w* \w a|strong="H3068"\w* \w servant|strong="H5650"\w* \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H5650"\w* \w king|strong="H4427"\w*, +\q2 \w a|strong="H3068"\w* \w fool|strong="H5036"\w* \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H5650"\w* \w filled|strong="H7646"\w* \w with|strong="H7646"\w* \w food|strong="H3899"\w*, +\q2 +\v 23 \w for|strong="H3588"\w* \w an|strong="H3588"\w* \w unloved|strong="H8130"\w* \w woman|strong="H8130"\w* \w when|strong="H3588"\w* \w she|strong="H3588"\w* \w is|strong="H3588"\w* \w married|strong="H1166"\w*, +\q2 \w and|strong="H3423"\w* \w a|strong="H3068"\w* \w servant|strong="H8198"\w* \w who|strong="H3588"\w* \w is|strong="H3588"\w* \w heir|strong="H3423"\w* \w to|strong="H3588"\w* \w her|strong="H8130"\w* \w mistress|strong="H1404"\w*. +\b +\q1 +\v 24 “\w There|strong="H1992"\w* \w are|strong="H1992"\w* four \w things|strong="H6996"\w* \w which|strong="H1992"\w* \w are|strong="H1992"\w* \w little|strong="H6996"\w* on \w the|strong="H1992"\w* earth, +\q2 \w but|strong="H1992"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w exceedingly|strong="H2449"\w* \w wise|strong="H2450"\w*: +\q2 +\v 25 \w The|strong="H3559"\w* \w ants|strong="H5244"\w* \w are|strong="H5971"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w strong|strong="H5794"\w* \w people|strong="H5971"\w*, +\q2 \w yet|strong="H3808"\w* \w they|strong="H3808"\w* \w provide|strong="H3559"\w* \w their|strong="H3559"\w* \w food|strong="H3899"\w* \w in|strong="H3899"\w* \w the|strong="H3559"\w* \w summer|strong="H7019"\w*. +\q2 +\v 26 \w The|strong="H7760"\w* hyraxes \w are|strong="H5971"\w* \w but|strong="H3808"\w* \w a|strong="H3068"\w* \w feeble|strong="H6099"\w* \w folk|strong="H5971"\w*, +\q2 \w yet|strong="H3808"\w* \w make|strong="H7760"\w* \w they|strong="H3808"\w* \w their|strong="H7760"\w* \w houses|strong="H1004"\w* \w in|strong="H1004"\w* \w the|strong="H7760"\w* \w rocks|strong="H5553"\w*. +\q2 +\v 27 \w The|strong="H3605"\w* locusts \w have|strong="H3605"\w* \w no|strong="H3605"\w* \w king|strong="H4428"\w*, +\q2 \w yet|strong="H3605"\w* \w they|strong="H3605"\w* advance \w in|strong="H4428"\w* \w ranks|strong="H2686"\w*. +\q2 +\v 28 \w You|strong="H3027"\w* can \w catch|strong="H8610"\w* \w a|strong="H3068"\w* \w lizard|strong="H8079"\w* \w with|strong="H3027"\w* \w your|strong="H3027"\w* \w hands|strong="H3027"\w*, +\q2 yet \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w in|strong="H4428"\w* \w kings|strong="H4428"\w*’ \w palaces|strong="H1964"\w*. +\b +\q1 +\v 29 “\w There|strong="H1992"\w* \w are|strong="H1992"\w* \w three|strong="H7969"\w* \w things|strong="H7969"\w* \w which|strong="H1992"\w* \w are|strong="H1992"\w* \w stately|strong="H3190"\w* \w in|strong="H3212"\w* \w their|strong="H1992"\w* \w march|strong="H3212"\w*, +\q2 \w four|strong="H7969"\w* \w which|strong="H1992"\w* \w are|strong="H1992"\w* \w stately|strong="H3190"\w* \w in|strong="H3212"\w* \w going|strong="H3212"\w*: +\q2 +\v 30 \w The|strong="H3605"\w* \w lion|strong="H3918"\w*, \w which|strong="H1368"\w* \w is|strong="H3605"\w* \w mightiest|strong="H1368"\w* \w among|strong="H1368"\w* animals, +\q2 \w and|strong="H7725"\w* doesn’t \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w for|strong="H6440"\w* \w any|strong="H3605"\w*; +\q2 +\v 31 \w the|strong="H5973"\w* \w greyhound|strong="H4975"\w*; +\q2 \w the|strong="H5973"\w* \w male|strong="H8495"\w* \w goat|strong="H8495"\w*; +\q2 \w and|strong="H4428"\w* \w the|strong="H5973"\w* \w king|strong="H4428"\w* \w against|strong="H5973"\w* whom there \w is|strong="H4428"\w* no rising \w up|strong="H4428"\w*. +\b +\q1 +\v 32 “If \w you|strong="H3027"\w* \w have|strong="H3027"\w* \w done|strong="H3027"\w* \w foolishly|strong="H5034"\w* \w in|strong="H3027"\w* lifting \w up|strong="H5375"\w* \w yourself|strong="H5375"\w*, +\q2 \w or|strong="H6310"\w* if \w you|strong="H3027"\w* \w have|strong="H3027"\w* \w thought|strong="H2161"\w* \w evil|strong="H2161"\w*, +\q1 \w put|strong="H5375"\w* \w your|strong="H5375"\w* \w hand|strong="H3027"\w* \w over|strong="H3027"\w* \w your|strong="H5375"\w* \w mouth|strong="H6310"\w*. +\q2 +\v 33 \w For|strong="H3588"\w* \w as|strong="H3588"\w* \w the|strong="H3588"\w* \w churning|strong="H4330"\w* \w of|strong="H1818"\w* \w milk|strong="H2461"\w* \w produces|strong="H3318"\w* \w butter|strong="H2529"\w*, +\q2 \w and|strong="H2461"\w* \w the|strong="H3588"\w* \w wringing|strong="H4330"\w* \w of|strong="H1818"\w* \w the|strong="H3588"\w* nose \w produces|strong="H3318"\w* \w blood|strong="H1818"\w*, +\q2 \w so|strong="H3318"\w* \w the|strong="H3588"\w* \w forcing|strong="H4330"\w* \w of|strong="H1818"\w* wrath \w produces|strong="H3318"\w* \w strife|strong="H7379"\w*.” +\c 31 +\p +\v 1 \w The|strong="H1697"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* \w Lemuel|strong="H3927"\w*—\w the|strong="H1697"\w* revelation \w which|strong="H1697"\w* \w his|strong="H4428"\w* mother \w taught|strong="H3256"\w* \w him|strong="H4428"\w*: +\b +\q1 +\v 2 “Oh, \w my|strong="H4100"\w* \w son|strong="H1248"\w*! +\q2 Oh, \w son|strong="H1248"\w* \w of|strong="H5088"\w* \w my|strong="H4100"\w* womb! +\q2 Oh, \w son|strong="H1248"\w* \w of|strong="H5088"\w* \w my|strong="H4100"\w* \w vows|strong="H5088"\w*! +\q1 +\v 3 Don’t \w give|strong="H5414"\w* \w your|strong="H5414"\w* \w strength|strong="H2428"\w* \w to|strong="H5414"\w* women, +\q2 nor \w your|strong="H5414"\w* \w ways|strong="H1870"\w* \w to|strong="H5414"\w* \w that|strong="H5414"\w* \w which|strong="H2428"\w* \w destroys|strong="H4229"\w* \w kings|strong="H4428"\w*. +\q1 +\v 4 \w It|strong="H8354"\w* \w is|strong="H4428"\w* \w not|strong="H8354"\w* \w for|strong="H4428"\w* \w kings|strong="H4428"\w*, \w Lemuel|strong="H3927"\w*, +\q2 \w it|strong="H8354"\w* \w is|strong="H4428"\w* \w not|strong="H8354"\w* \w for|strong="H4428"\w* \w kings|strong="H4428"\w* \w to|strong="H4428"\w* \w drink|strong="H8354"\w* \w wine|strong="H3196"\w*, +\q2 nor \w for|strong="H4428"\w* \w princes|strong="H7336"\w* \w to|strong="H4428"\w* say, ‘Where \w is|strong="H4428"\w* \w strong|strong="H7941"\w* \w drink|strong="H8354"\w*?’ +\q1 +\v 5 \w lest|strong="H6435"\w* \w they|strong="H3605"\w* \w drink|strong="H8354"\w*, \w and|strong="H1121"\w* \w forget|strong="H7911"\w* \w the|strong="H3605"\w* \w law|strong="H2710"\w*, +\q2 \w and|strong="H1121"\w* \w pervert|strong="H8138"\w* \w the|strong="H3605"\w* \w justice|strong="H1779"\w* due \w to|strong="H1121"\w* \w anyone|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3605"\w* \w afflicted|strong="H1121"\w*. +\q1 +\v 6 \w Give|strong="H5414"\w* \w strong|strong="H7941"\w* \w drink|strong="H7941"\w* \w to|strong="H5414"\w* \w him|strong="H5414"\w* \w who|strong="H5315"\w* \w is|strong="H5315"\w* ready \w to|strong="H5414"\w* perish, +\q2 \w and|strong="H3196"\w* \w wine|strong="H3196"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w bitter|strong="H4751"\w* \w in|strong="H5315"\w* \w soul|strong="H5315"\w*. +\q1 +\v 7 \w Let|strong="H3808"\w* \w him|strong="H2142"\w* \w drink|strong="H8354"\w*, \w and|strong="H8354"\w* \w forget|strong="H7911"\w* \w his|strong="H2142"\w* \w poverty|strong="H7389"\w*, +\q2 \w and|strong="H8354"\w* \w remember|strong="H2142"\w* \w his|strong="H2142"\w* \w misery|strong="H5999"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w*. +\q1 +\v 8 \w Open|strong="H6605"\w* \w your|strong="H3605"\w* \w mouth|strong="H6310"\w* \w for|strong="H1121"\w* \w the|strong="H3605"\w* mute, +\q2 \w in|strong="H1121"\w* \w the|strong="H3605"\w* \w cause|strong="H1779"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H1121"\w* left desolate. +\q1 +\v 9 \w Open|strong="H6605"\w* \w your|strong="H6605"\w* \w mouth|strong="H6310"\w*, \w judge|strong="H8199"\w* \w righteously|strong="H6664"\w*, +\q2 \w and|strong="H6041"\w* serve \w justice|strong="H6664"\w* \w to|strong="H6310"\w* \w the|strong="H8199"\w* \w poor|strong="H6041"\w* \w and|strong="H6041"\w* \w needy|strong="H6041"\w*.” +\b +\q1 +\v 10 \f + \fr 31:10 \ft Proverbs 31:10-31 form an acrostic, with each verse starting with each letter of the Hebrew alphabet, in order.\f*\w Who|strong="H4310"\w* \w can|strong="H4310"\w* \w find|strong="H4672"\w* \w a|strong="H3068"\w* \w worthy|strong="H2428"\w* woman? +\q2 \w For|strong="H2428"\w* \w her|strong="H4672"\w* value \w is|strong="H4310"\w* \w far|strong="H7350"\w* \w above|strong="H7350"\w* \w rubies|strong="H6443"\w*. +\q1 +\v 11 \w The|strong="H3808"\w* \w heart|strong="H3820"\w* \w of|strong="H1167"\w* \w her|strong="H3820"\w* \w husband|strong="H1167"\w* trusts \w in|strong="H3808"\w* \w her|strong="H3820"\w*. +\q2 \w He|strong="H3808"\w* \w shall|strong="H3820"\w* \w have|strong="H3808"\w* \w no|strong="H3808"\w* \w lack|strong="H2637"\w* \w of|strong="H1167"\w* \w gain|strong="H7998"\w*. +\q1 +\v 12 \w She|strong="H3808"\w* \w does|strong="H3808"\w* \w him|strong="H3605"\w* \w good|strong="H2896"\w*, \w and|strong="H3117"\w* \w not|strong="H3808"\w* \w harm|strong="H7451"\w*, +\q2 \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w her|strong="H3605"\w* \w life|strong="H2416"\w*. +\q1 +\v 13 \w She|strong="H3709"\w* \w seeks|strong="H1875"\w* \w wool|strong="H6785"\w* \w and|strong="H6213"\w* \w flax|strong="H6593"\w*, +\q2 \w and|strong="H6213"\w* \w works|strong="H6213"\w* eagerly \w with|strong="H6213"\w* \w her|strong="H6213"\w* \w hands|strong="H3709"\w*. +\q1 +\v 14 She \w is|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H1961"\w* \w merchant|strong="H5503"\w* ships. +\q2 She brings \w her|strong="H1961"\w* \w bread|strong="H3899"\w* \w from|strong="H1961"\w* \w afar|strong="H4801"\w*. +\q1 +\v 15 \w She|strong="H6965"\w* \w rises|strong="H6965"\w* \w also|strong="H5750"\w* \w while|strong="H5750"\w* \w it|strong="H5414"\w* \w is|strong="H1004"\w* \w yet|strong="H5750"\w* \w night|strong="H3915"\w*, +\q2 \w gives|strong="H5414"\w* \w food|strong="H2964"\w* \w to|strong="H5414"\w* \w her|strong="H5414"\w* \w household|strong="H1004"\w*, +\q2 \w and|strong="H6965"\w* \w portions|strong="H2706"\w* \w for|strong="H1004"\w* \w her|strong="H5414"\w* servant \w girls|strong="H5291"\w*. +\q1 +\v 16 \w She|strong="H3709"\w* \w considers|strong="H2161"\w* \w a|strong="H3068"\w* \w field|strong="H7704"\w*, \w and|strong="H7704"\w* \w buys|strong="H3947"\w* \w it|strong="H3947"\w*. +\q2 \w With|strong="H3947"\w* \w the|strong="H3947"\w* \w fruit|strong="H6529"\w* \w of|strong="H7704"\w* \w her|strong="H3947"\w* \w hands|strong="H3709"\w*, \w she|strong="H3709"\w* \w plants|strong="H5193"\w* \w a|strong="H3068"\w* \w vineyard|strong="H3754"\w*. +\q1 +\v 17 She \w arms|strong="H2220"\w* \w her|strong="H2296"\w* \w waist|strong="H4975"\w* \w with|strong="H2296"\w* \w strength|strong="H5797"\w*, +\q2 \w and|strong="H5797"\w* makes \w her|strong="H2296"\w* \w arms|strong="H2220"\w* \w strong|strong="H5797"\w*. +\q1 +\v 18 \w She|strong="H3588"\w* perceives \w that|strong="H3588"\w* \w her|strong="H5504"\w* \w merchandise|strong="H5504"\w* \w is|strong="H2896"\w* profitable. +\q2 \w Her|strong="H5504"\w* \w lamp|strong="H5216"\w* doesn’t \w go|strong="H3518"\w* \w out|strong="H3518"\w* \w by|strong="H3915"\w* \w night|strong="H3915"\w*. +\q1 +\v 19 \w She|strong="H3709"\w* lays \w her|strong="H7971"\w* \w hands|strong="H3027"\w* \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w distaff|strong="H6418"\w*, +\q2 \w and|strong="H7971"\w* \w her|strong="H7971"\w* \w hands|strong="H3027"\w* \w hold|strong="H8551"\w* \w the|strong="H7971"\w* \w spindle|strong="H6418"\w*. +\q1 +\v 20 \w She|strong="H3709"\w* opens \w her|strong="H7971"\w* \w arms|strong="H3027"\w* \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w poor|strong="H6041"\w*; +\q2 yes, \w she|strong="H3709"\w* \w extends|strong="H7971"\w* \w her|strong="H7971"\w* \w hands|strong="H3027"\w* \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w needy|strong="H6041"\w*. +\q1 +\v 21 \w She|strong="H3588"\w* \w is|strong="H3605"\w* \w not|strong="H3808"\w* \w afraid|strong="H3372"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w snow|strong="H7950"\w* \w for|strong="H3588"\w* \w her|strong="H3605"\w* \w household|strong="H1004"\w*, +\q2 \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w household|strong="H1004"\w* \w are|strong="H1004"\w* \w clothed|strong="H3847"\w* \w with|strong="H1004"\w* \w scarlet|strong="H8144"\w*. +\q1 +\v 22 She \w makes|strong="H6213"\w* \w for|strong="H6213"\w* herself carpets \w of|strong="H6213"\w* \w tapestry|strong="H4765"\w*. +\q2 \w Her|strong="H6213"\w* \w clothing|strong="H3830"\w* \w is|strong="H3830"\w* \w fine|strong="H8336"\w* \w linen|strong="H8336"\w* \w and|strong="H6213"\w* purple. +\q1 +\v 23 \w Her|strong="H3045"\w* \w husband|strong="H1167"\w* \w is|strong="H1167"\w* respected \w in|strong="H3427"\w* \w the|strong="H3045"\w* \w gates|strong="H8179"\w*, +\q2 \w when|strong="H3427"\w* \w he|strong="H3427"\w* \w sits|strong="H3427"\w* \w among|strong="H5973"\w* \w the|strong="H3045"\w* \w elders|strong="H2205"\w* \w of|strong="H3427"\w* \w the|strong="H3045"\w* land. +\q1 +\v 24 She \w makes|strong="H6213"\w* \w linen|strong="H5466"\w* \w garments|strong="H5466"\w* \w and|strong="H6213"\w* \w sells|strong="H4376"\w* \w them|strong="H5414"\w*, +\q2 \w and|strong="H6213"\w* \w delivers|strong="H5414"\w* sashes \w to|strong="H6213"\w* \w the|strong="H5414"\w* \w merchant|strong="H3669"\w*. +\q1 +\v 25 \w Strength|strong="H5797"\w* \w and|strong="H3117"\w* \w dignity|strong="H1926"\w* \w are|strong="H3117"\w* \w her|strong="H3117"\w* \w clothing|strong="H3830"\w*. +\q2 She \w laughs|strong="H7832"\w* \w at|strong="H3117"\w* \w the|strong="H3117"\w* \w time|strong="H3117"\w* \w to|strong="H3117"\w* come. +\q1 +\v 26 \w She|strong="H5921"\w* \w opens|strong="H6605"\w* \w her|strong="H5921"\w* \w mouth|strong="H6310"\w* \w with|strong="H5921"\w* \w wisdom|strong="H2451"\w*. +\q2 Kind \w instruction|strong="H8451"\w* \w is|strong="H2617"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w* \w tongue|strong="H3956"\w*. +\q1 +\v 27 \w She|strong="H3808"\w* \w looks|strong="H6822"\w* \w well|strong="H6822"\w* \w to|strong="H1004"\w* \w the|strong="H3808"\w* \w ways|strong="H1979"\w* \w of|strong="H1004"\w* her \w household|strong="H1004"\w*, +\q2 \w and|strong="H1004"\w* doesn’t \w eat|strong="H3899"\w* \w the|strong="H3808"\w* \w bread|strong="H3899"\w* \w of|strong="H1004"\w* \w idleness|strong="H6104"\w*. +\q1 +\v 28 \w Her|strong="H1984"\w* \w children|strong="H1121"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H1121"\w* call \w her|strong="H1984"\w* blessed. +\q2 \w Her|strong="H1984"\w* \w husband|strong="H1167"\w* \w also|strong="H1121"\w* \w praises|strong="H1984"\w* \w her|strong="H1984"\w*: +\q1 +\v 29 “\w Many|strong="H7227"\w* \w women|strong="H1323"\w* \w do|strong="H6213"\w* noble \w things|strong="H3605"\w*, +\q2 \w but|strong="H3605"\w* \w you|strong="H3605"\w* \w excel|strong="H5927"\w* \w them|strong="H5921"\w* \w all|strong="H3605"\w*.” +\q1 +\v 30 \w Charm|strong="H2580"\w* \w is|strong="H3068"\w* \w deceitful|strong="H8267"\w*, \w and|strong="H3068"\w* \w beauty|strong="H3308"\w* \w is|strong="H3068"\w* \w vain|strong="H1892"\w*; +\q2 \w but|strong="H1931"\w* \w a|strong="H3068"\w* woman \w who|strong="H1931"\w* \w fears|strong="H3373"\w* \w Yahweh|strong="H3068"\w*, \w she|strong="H1931"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w praised|strong="H1984"\w*. +\q1 +\v 31 \w Give|strong="H5414"\w* \w her|strong="H5414"\w* \w of|strong="H3027"\w* \w the|strong="H5414"\w* \w fruit|strong="H6529"\w* \w of|strong="H3027"\w* \w her|strong="H5414"\w* \w hands|strong="H3027"\w*! +\q2 \w Let|strong="H5414"\w* \w her|strong="H5414"\w* \w works|strong="H4639"\w* \w praise|strong="H1984"\w* \w her|strong="H5414"\w* \w in|strong="H3027"\w* \w the|strong="H5414"\w* \w gates|strong="H8179"\w*! \ No newline at end of file diff --git a/bibles/eng-web_usfm/22-ECCeng-web.usfm b/bibles/eng-web_usfm/22-ECCeng-web.usfm new file mode 100644 index 0000000..2c1ba6b --- /dev/null +++ b/bibles/eng-web_usfm/22-ECCeng-web.usfm @@ -0,0 +1,391 @@ +\id ECC World English Bible (WEB) +\ide UTF-8 +\h Ecclesiastes +\toc1 Ecclesiates or, The Preacher +\toc2 Ecclesiastes +\toc3 Ecc +\mt1 Ecclesiastes +\mt2 or, The Preacher +\c 1 +\p +\v 1 \w The|strong="H1697"\w* \w words|strong="H1697"\w* \w of|strong="H1121"\w* \w the|strong="H1697"\w* \w Preacher|strong="H6953"\w*, \w the|strong="H1697"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w David|strong="H1732"\w*, \w king|strong="H4428"\w* \w in|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*: +\p +\v 2 “\w Vanity|strong="H1892"\w* \w of|strong="H3605"\w* \w vanities|strong="H1892"\w*,” says \w the|strong="H3605"\w* \w Preacher|strong="H6953"\w*; “\w Vanity|strong="H1892"\w* \w of|strong="H3605"\w* \w vanities|strong="H1892"\w*, \w all|strong="H3605"\w* \w is|strong="H3605"\w* \w vanity|strong="H1892"\w*.” +\v 3 \w What|strong="H4100"\w* \w does|strong="H4100"\w* \w man|strong="H3605"\w* gain \w from|strong="H8478"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w labor|strong="H5999"\w* \w in|strong="H5999"\w* \w which|strong="H4100"\w* \w he|strong="H3605"\w* labors \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*? +\v 4 \w One|strong="H1755"\w* \w generation|strong="H1755"\w* \w goes|strong="H1980"\w*, \w and|strong="H1980"\w* \w another|strong="H1755"\w* \w generation|strong="H1755"\w* \w comes|strong="H1980"\w*; but \w the|strong="H5975"\w* earth \w remains|strong="H5975"\w* \w forever|strong="H5769"\w*. +\v 5 \w The|strong="H8033"\w* \w sun|strong="H8121"\w* \w also|strong="H8121"\w* \w rises|strong="H2224"\w*, \w and|strong="H8033"\w* \w the|strong="H8033"\w* \w sun|strong="H8121"\w* goes down, \w and|strong="H8033"\w* hurries \w to|strong="H8033"\w* its \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w it|strong="H1931"\w* \w rises|strong="H2224"\w*. +\v 6 \w The|strong="H5921"\w* \w wind|strong="H7307"\w* \w goes|strong="H1980"\w* \w toward|strong="H5921"\w* \w the|strong="H5921"\w* \w south|strong="H1864"\w*, \w and|strong="H1980"\w* \w turns|strong="H7725"\w* \w around|strong="H5439"\w* \w to|strong="H1980"\w* \w the|strong="H5921"\w* \w north|strong="H6828"\w*. \w It|strong="H5921"\w* \w turns|strong="H7725"\w* \w around|strong="H5439"\w* \w continually|strong="H1980"\w* \w as|strong="H1980"\w* \w it|strong="H5921"\w* \w goes|strong="H1980"\w*, \w and|strong="H1980"\w* \w the|strong="H5921"\w* \w wind|strong="H7307"\w* \w returns|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H1980"\w* \w its|strong="H5921"\w* \w courses|strong="H5439"\w*. +\v 7 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w rivers|strong="H5158"\w* \w run|strong="H1980"\w* \w into|strong="H1980"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w*, \w yet|strong="H3605"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w* \w is|strong="H3605"\w* \w not|strong="H7725"\w* \w full|strong="H4392"\w*. \w To|strong="H1980"\w* \w the|strong="H3605"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w the|strong="H3605"\w* \w rivers|strong="H5158"\w* \w flow|strong="H1980"\w*, \w there|strong="H8033"\w* \w they|strong="H1992"\w* \w flow|strong="H1980"\w* \w again|strong="H7725"\w*. +\v 8 \w All|strong="H3605"\w* \w things|strong="H1697"\w* \w are|strong="H5869"\w* \w full|strong="H4390"\w* \w of|strong="H1697"\w* weariness \w beyond|strong="H3808"\w* uttering. \w The|strong="H3605"\w* \w eye|strong="H5869"\w* \w is|strong="H1697"\w* \w not|strong="H3808"\w* \w satisfied|strong="H7646"\w* \w with|strong="H4390"\w* \w seeing|strong="H7200"\w*, \w nor|strong="H3808"\w* \w the|strong="H3605"\w* \w ear|strong="H8085"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w hearing|strong="H8085"\w*. +\v 9 \w That|strong="H3605"\w* \w which|strong="H1931"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w is|strong="H1931"\w* \w that|strong="H3605"\w* \w which|strong="H1931"\w* \w shall|strong="H1931"\w* \w be|strong="H1961"\w*, \w and|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H1931"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w done|strong="H6213"\w* \w is|strong="H1931"\w* \w that|strong="H3605"\w* \w which|strong="H1931"\w* \w shall|strong="H1931"\w* \w be|strong="H1961"\w* \w done|strong="H6213"\w*; \w and|strong="H6213"\w* \w there|strong="H1961"\w* \w is|strong="H1931"\w* \w no|strong="H6213"\w* \w new|strong="H2319"\w* \w thing|strong="H2319"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*. +\v 10 \w Is|strong="H3426"\w* \w there|strong="H3426"\w* \w a|strong="H3068"\w* \w thing|strong="H1697"\w* \w of|strong="H1697"\w* \w which|strong="H1931"\w* \w it|strong="H1931"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w said|strong="H1697"\w*, “\w Behold|strong="H7200"\w*,\f + \fr 1:10 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w this|strong="H2088"\w* \w is|strong="H3426"\w* \w new|strong="H2319"\w*”? \w It|strong="H1931"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w long|strong="H5769"\w* \w ago|strong="H5769"\w*, \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w ages|strong="H5769"\w* \w which|strong="H1931"\w* \w were|strong="H1961"\w* \w before|strong="H6440"\w* \w us|strong="H6440"\w*. +\v 11 \w There|strong="H1961"\w* \w is|strong="H1571"\w* \w no|strong="H3808"\w* memory \w of|strong="H3808"\w* \w the|strong="H1961"\w* \w former|strong="H7223"\w*; \w neither|strong="H3808"\w* \w shall|strong="H3808"\w* \w there|strong="H1961"\w* \w be|strong="H1961"\w* \w any|strong="H1571"\w* memory \w of|strong="H3808"\w* \w the|strong="H1961"\w* latter \w that|strong="H3808"\w* \w are|strong="H1992"\w* \w to|strong="H1961"\w* \w come|strong="H1961"\w*, \w among|strong="H5973"\w* \w those|strong="H1992"\w* \w that|strong="H3808"\w* \w shall|strong="H3808"\w* \w come|strong="H1961"\w* \w after|strong="H1961"\w*. +\p +\v 12 \w I|strong="H5921"\w*, \w the|strong="H5921"\w* \w Preacher|strong="H6953"\w*, \w was|strong="H1961"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w Israel|strong="H3478"\w* \w in|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*. +\v 13 \w I|strong="H5414"\w* \w applied|strong="H5414"\w* \w my|strong="H5414"\w* \w heart|strong="H3820"\w* \w to|strong="H6213"\w* \w seek|strong="H1875"\w* \w and|strong="H1121"\w* \w to|strong="H6213"\w* \w search|strong="H1875"\w* \w out|strong="H5414"\w* \w by|strong="H5921"\w* \w wisdom|strong="H2451"\w* \w concerning|strong="H5921"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H1931"\w* \w done|strong="H6213"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*. \w It|strong="H5414"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w heavy|strong="H7451"\w* burden \w that|strong="H3605"\w* \w God|strong="H5414"\w*\f + \fr 1:13 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w has|strong="H3820"\w* \w given|strong="H5414"\w* \w to|strong="H6213"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w* \w to|strong="H6213"\w* \w be|strong="H1121"\w* \w afflicted|strong="H6031"\w* \w with|strong="H6213"\w*. +\v 14 \w I|strong="H2009"\w* \w have|strong="H7200"\w* \w seen|strong="H7200"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w works|strong="H4639"\w* \w that|strong="H7200"\w* \w are|strong="H4639"\w* \w done|strong="H6213"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*; \w and|strong="H7200"\w* \w behold|strong="H2009"\w*, \w all|strong="H3605"\w* \w is|strong="H2009"\w* \w vanity|strong="H1892"\w* \w and|strong="H7200"\w* \w a|strong="H3068"\w* \w chasing|strong="H7469"\w* \w after|strong="H7469"\w* \w wind|strong="H7307"\w*. +\v 15 \w That|strong="H3808"\w* which \w is|strong="H3808"\w* \w crooked|strong="H5791"\w* \w can|strong="H3201"\w*’t \w be|strong="H3808"\w* made \w straight|strong="H8626"\w*; \w and|strong="H3808"\w* \w that|strong="H3808"\w* which \w is|strong="H3808"\w* \w lacking|strong="H2642"\w* \w can|strong="H3201"\w*’t \w be|strong="H3808"\w* \w counted|strong="H4487"\w*. +\v 16 \w I|strong="H2009"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w myself|strong="H3820"\w*, “\w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w have|strong="H1961"\w* obtained \w for|strong="H5921"\w* \w myself|strong="H3820"\w* \w great|strong="H1431"\w* \w wisdom|strong="H2451"\w* \w above|strong="H5921"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w in|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*. \w Yes|strong="H2009"\w*, \w my|strong="H3605"\w* \w heart|strong="H3820"\w* \w has|strong="H1961"\w* \w had|strong="H1961"\w* \w great|strong="H1431"\w* \w experience|strong="H7200"\w* \w of|strong="H6440"\w* \w wisdom|strong="H2451"\w* \w and|strong="H3389"\w* \w knowledge|strong="H1847"\w*.” +\v 17 \w I|strong="H5414"\w* \w applied|strong="H5414"\w* \w my|strong="H5414"\w* \w heart|strong="H3820"\w* \w to|strong="H5414"\w* \w know|strong="H3045"\w* \w wisdom|strong="H2451"\w*, \w and|strong="H2451"\w* \w to|strong="H5414"\w* \w know|strong="H3045"\w* \w madness|strong="H1947"\w* \w and|strong="H2451"\w* \w folly|strong="H5531"\w*. \w I|strong="H5414"\w* \w perceived|strong="H3045"\w* \w that|strong="H3045"\w* \w this|strong="H2088"\w* \w also|strong="H1571"\w* \w was|strong="H3820"\w* \w a|strong="H3068"\w* \w chasing|strong="H7475"\w* \w after|strong="H7475"\w* \w wind|strong="H7307"\w*. +\v 18 \w For|strong="H3588"\w* \w in|strong="H7227"\w* \w much|strong="H7227"\w* \w wisdom|strong="H2451"\w* \w is|strong="H2451"\w* \w much|strong="H7227"\w* \w grief|strong="H3708"\w*; \w and|strong="H2451"\w* \w he|strong="H3588"\w* \w who|strong="H7227"\w* \w increases|strong="H3254"\w* \w knowledge|strong="H1847"\w* \w increases|strong="H3254"\w* \w sorrow|strong="H4341"\w*. +\c 2 +\p +\v 1 \w I|strong="H2009"\w* said \w in|strong="H3212"\w* \w my|strong="H7200"\w* \w heart|strong="H3820"\w*, “\w Come|strong="H3212"\w* \w now|strong="H4994"\w*, \w I|strong="H2009"\w* \w will|strong="H1571"\w* \w test|strong="H5254"\w* \w you|strong="H7200"\w* \w with|strong="H3212"\w* \w mirth|strong="H8057"\w*; \w therefore|strong="H1571"\w* \w enjoy|strong="H7200"\w* \w pleasure|strong="H8057"\w*;” \w and|strong="H3212"\w* \w behold|strong="H2009"\w*, \w this|strong="H1931"\w* \w also|strong="H1571"\w* \w was|strong="H3820"\w* \w vanity|strong="H1892"\w*. +\v 2 \w I|strong="H4100"\w* said \w of|strong="H6213"\w* \w laughter|strong="H7814"\w*, “\w It|strong="H6213"\w* \w is|strong="H4100"\w* foolishness;” \w and|strong="H6213"\w* \w of|strong="H6213"\w* \w mirth|strong="H8057"\w*, “\w What|strong="H4100"\w* \w does|strong="H6213"\w* \w it|strong="H6213"\w* \w accomplish|strong="H6213"\w*?” +\p +\v 3 \w I|strong="H3117"\w* \w searched|strong="H8446"\w* \w in|strong="H6213"\w* \w my|strong="H7200"\w* \w heart|strong="H3820"\w* \w how|strong="H5704"\w* \w to|strong="H5704"\w* cheer \w my|strong="H7200"\w* \w flesh|strong="H1320"\w* \w with|strong="H6213"\w* \w wine|strong="H3196"\w*, \w my|strong="H7200"\w* \w heart|strong="H3820"\w* \w yet|strong="H5704"\w* \w guiding|strong="H5090"\w* \w me|strong="H7200"\w* \w with|strong="H6213"\w* \w wisdom|strong="H2451"\w*, \w and|strong="H1121"\w* \w how|strong="H5704"\w* \w to|strong="H5704"\w* \w lay|strong="H1121"\w* \w hold|strong="H6213"\w* \w of|strong="H1121"\w* \w folly|strong="H5531"\w*, \w until|strong="H5704"\w* \w I|strong="H3117"\w* \w might|strong="H1121"\w* \w see|strong="H7200"\w* \w what|strong="H2896"\w* \w it|strong="H6213"\w* \w was|strong="H3820"\w* \w good|strong="H2896"\w* \w for|strong="H5704"\w* \w the|strong="H7200"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w* \w that|strong="H7200"\w* \w they|strong="H3117"\w* \w should|strong="H3117"\w* \w do|strong="H6213"\w* \w under|strong="H8478"\w* \w heaven|strong="H8064"\w* \w all|strong="H7200"\w* \w the|strong="H7200"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w their|strong="H7200"\w* \w lives|strong="H2416"\w*. +\v 4 \w I|strong="H1004"\w* \w made|strong="H4639"\w* myself \w great|strong="H1431"\w* \w works|strong="H4639"\w*. \w I|strong="H1004"\w* \w built|strong="H1129"\w* myself \w houses|strong="H1004"\w*. \w I|strong="H1004"\w* \w planted|strong="H5193"\w* myself \w vineyards|strong="H3754"\w*. +\v 5 \w I|strong="H3605"\w* \w made|strong="H6213"\w* myself \w gardens|strong="H1593"\w* \w and|strong="H6086"\w* \w parks|strong="H6508"\w*, \w and|strong="H6086"\w* \w I|strong="H3605"\w* \w planted|strong="H5193"\w* \w trees|strong="H6086"\w* \w in|strong="H6213"\w* \w them|strong="H6213"\w* \w of|strong="H6086"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H6086"\w* \w fruit|strong="H6529"\w*. +\v 6 \w I|strong="H6779"\w* \w made|strong="H6213"\w* myself \w pools|strong="H1295"\w* \w of|strong="H4325"\w* \w water|strong="H4325"\w*, \w to|strong="H6213"\w* \w water|strong="H4325"\w* \w the|strong="H6213"\w* \w forest|strong="H3293"\w* \w where|strong="H1992"\w* \w trees|strong="H6086"\w* \w were|strong="H4325"\w* \w grown|strong="H6779"\w*. +\v 7 \w I|strong="H5650"\w* \w bought|strong="H7069"\w* \w male|strong="H5650"\w* \w servants|strong="H5650"\w* \w and|strong="H1121"\w* \w female|strong="H8198"\w* \w servants|strong="H5650"\w*, \w and|strong="H1121"\w* \w had|strong="H1961"\w* \w servants|strong="H5650"\w* \w born|strong="H1121"\w* \w in|strong="H1004"\w* \w my|strong="H3605"\w* \w house|strong="H1004"\w*. \w I|strong="H5650"\w* \w also|strong="H1571"\w* \w had|strong="H1961"\w* \w great|strong="H7235"\w* \w possessions|strong="H4735"\w* \w of|strong="H1121"\w* \w herds|strong="H1241"\w* \w and|strong="H1121"\w* \w flocks|strong="H6629"\w*, \w above|strong="H6440"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w in|strong="H1004"\w* \w Jerusalem|strong="H3389"\w*. +\v 8 \w I|strong="H1571"\w* \w also|strong="H1571"\w* \w gathered|strong="H3664"\w* \w silver|strong="H3701"\w* \w and|strong="H1121"\w* \w gold|strong="H2091"\w* \w for|strong="H6213"\w* \w myself|strong="H1571"\w*, \w and|strong="H1121"\w* \w the|strong="H6213"\w* \w treasure|strong="H5459"\w* \w of|strong="H1121"\w* \w kings|strong="H4428"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w provinces|strong="H4082"\w*. \w I|strong="H1571"\w* got \w myself|strong="H1571"\w* \w male|strong="H7891"\w* \w and|strong="H1121"\w* female \w singers|strong="H7891"\w*, \w and|strong="H1121"\w* \w the|strong="H6213"\w* \w delights|strong="H8588"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*: musical \w instruments|strong="H7705"\w* \w of|strong="H1121"\w* \w all|strong="H6213"\w* sorts. +\v 9 \w So|strong="H1961"\w* \w I|strong="H6440"\w* \w was|strong="H1961"\w* \w great|strong="H1431"\w*, \w and|strong="H3389"\w* \w increased|strong="H3254"\w* \w more|strong="H3254"\w* \w than|strong="H3605"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w in|strong="H6440"\w* \w Jerusalem|strong="H3389"\w*. \w My|strong="H3605"\w* \w wisdom|strong="H2451"\w* \w also|strong="H3254"\w* \w remained|strong="H5975"\w* \w with|strong="H3389"\w* \w me|strong="H6440"\w*. +\v 10 \w Whatever|strong="H3605"\w* \w my|strong="H3605"\w* \w eyes|strong="H5869"\w* \w desired|strong="H7592"\w*, \w I|strong="H3588"\w* didn’t \w keep|strong="H4513"\w* \w from|strong="H5869"\w* \w them|strong="H1992"\w*. \w I|strong="H3588"\w* didn’t \w withhold|strong="H4513"\w* \w my|strong="H3605"\w* \w heart|strong="H3820"\w* \w from|strong="H5869"\w* \w any|strong="H3605"\w* \w joy|strong="H8057"\w*, \w for|strong="H3588"\w* \w my|strong="H3605"\w* \w heart|strong="H3820"\w* \w rejoiced|strong="H8055"\w* \w because|strong="H3588"\w* \w of|strong="H5869"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w labor|strong="H5999"\w*, \w and|strong="H5869"\w* \w this|strong="H2088"\w* \w was|strong="H1961"\w* \w my|strong="H3605"\w* \w portion|strong="H2506"\w* \w from|strong="H5869"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w labor|strong="H5999"\w*. +\v 11 \w Then|strong="H2009"\w* \w I|strong="H2009"\w* \w looked|strong="H6437"\w* \w at|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w works|strong="H4639"\w* \w that|strong="H3605"\w* \w my|strong="H3605"\w* \w hands|strong="H3027"\w* \w had|strong="H3027"\w* \w worked|strong="H6213"\w*, \w and|strong="H3027"\w* \w at|strong="H6213"\w* \w the|strong="H3605"\w* \w labor|strong="H5999"\w* \w that|strong="H3605"\w* \w I|strong="H2009"\w* \w had|strong="H3027"\w* \w labored|strong="H5998"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w*; \w and|strong="H3027"\w* \w behold|strong="H2009"\w*, \w all|strong="H3605"\w* \w was|strong="H7307"\w* \w vanity|strong="H1892"\w* \w and|strong="H3027"\w* \w a|strong="H3068"\w* \w chasing|strong="H7469"\w* \w after|strong="H7469"\w* \w wind|strong="H7307"\w*, \w and|strong="H3027"\w* \w there|strong="H2009"\w* \w was|strong="H7307"\w* \w no|strong="H6213"\w* \w profit|strong="H3504"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*. +\p +\v 12 \w I|strong="H3588"\w* \w turned|strong="H6437"\w* myself \w to|strong="H6213"\w* \w consider|strong="H7200"\w* \w wisdom|strong="H2451"\w*, \w madness|strong="H1947"\w*, \w and|strong="H4428"\w* \w folly|strong="H5531"\w*; \w for|strong="H3588"\w* \w what|strong="H4100"\w* \w can|strong="H4100"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w*’s successor \w do|strong="H6213"\w*? \w Just|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H4100"\w* \w has|strong="H4428"\w* \w been|strong="H3528"\w* \w done|strong="H6213"\w* \w long|strong="H4100"\w* ago. +\v 13 \w Then|strong="H7200"\w* \w I|strong="H7200"\w* \w saw|strong="H7200"\w* \w that|strong="H7200"\w* \w wisdom|strong="H2451"\w* \w excels|strong="H3504"\w* \w folly|strong="H5531"\w*, \w as|strong="H5531"\w* \w far|strong="H4480"\w* \w as|strong="H5531"\w* light \w excels|strong="H3504"\w* \w darkness|strong="H2822"\w*. +\v 14 \w The|strong="H3605"\w* \w wise|strong="H2450"\w* \w man|strong="H2450"\w*’s \w eyes|strong="H5869"\w* \w are|strong="H5869"\w* \w in|strong="H1980"\w* \w his|strong="H3605"\w* \w head|strong="H7218"\w*, \w and|strong="H1980"\w* \w the|strong="H3605"\w* \w fool|strong="H3684"\w* \w walks|strong="H1980"\w* \w in|strong="H1980"\w* \w darkness|strong="H2822"\w*—\w and|strong="H1980"\w* \w yet|strong="H1571"\w* \w I|strong="H3045"\w* \w perceived|strong="H3045"\w* \w that|strong="H3045"\w* \w one|strong="H3605"\w* \w event|strong="H4745"\w* \w happens|strong="H7136"\w* \w to|strong="H1980"\w* \w them|strong="H7136"\w* \w all|strong="H3605"\w*. +\v 15 \w Then|strong="H1696"\w* \w I|strong="H2088"\w* \w said|strong="H1696"\w* \w in|strong="H1696"\w* \w my|strong="H1696"\w* \w heart|strong="H3820"\w*, “\w As|strong="H1571"\w* \w it|strong="H1696"\w* \w happens|strong="H7136"\w* \w to|strong="H1696"\w* \w the|strong="H1696"\w* \w fool|strong="H3684"\w*, \w so|strong="H1571"\w* \w will|strong="H1571"\w* \w it|strong="H1696"\w* \w happen|strong="H7136"\w* \w even|strong="H1571"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w*; \w and|strong="H1892"\w* \w why|strong="H4100"\w* \w was|strong="H3820"\w* \w I|strong="H2088"\w* \w then|strong="H1696"\w* \w more|strong="H3148"\w* \w wise|strong="H2449"\w*?” \w Then|strong="H1696"\w* \w I|strong="H2088"\w* \w said|strong="H1696"\w* \w in|strong="H1696"\w* \w my|strong="H1696"\w* \w heart|strong="H3820"\w* \w that|strong="H2088"\w* \w this|strong="H2088"\w* \w also|strong="H1571"\w* \w is|strong="H2088"\w* \w vanity|strong="H1892"\w*. +\v 16 \w For|strong="H3588"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w wise|strong="H2450"\w* \w man|strong="H2450"\w*, \w even|strong="H3588"\w* \w as|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w fool|strong="H3684"\w*, \w there|strong="H3117"\w* \w is|strong="H3117"\w* \w no|strong="H3605"\w* memory \w forever|strong="H5769"\w*, \w since|strong="H3588"\w* \w in|strong="H4191"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w to|strong="H4191"\w* come \w all|strong="H3605"\w* \w will|strong="H3117"\w* \w have|strong="H3117"\w* \w been|strong="H5769"\w* \w long|strong="H3117"\w* \w forgotten|strong="H7911"\w*. \w Indeed|strong="H3588"\w*, \w the|strong="H3605"\w* \w wise|strong="H2450"\w* \w man|strong="H2450"\w* \w must|strong="H4191"\w* \w die|strong="H4191"\w* \w just|strong="H3605"\w* \w like|strong="H5973"\w* \w the|strong="H3605"\w* \w fool|strong="H3684"\w*! +\p +\v 17 \w So|strong="H6213"\w* \w I|strong="H3588"\w* \w hated|strong="H8130"\w* \w life|strong="H2416"\w*, \w because|strong="H3588"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w that|strong="H3588"\w* \w is|strong="H3605"\w* \w worked|strong="H6213"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w* \w was|strong="H7307"\w* \w grievous|strong="H7451"\w* \w to|strong="H6213"\w* \w me|strong="H8130"\w*; \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w is|strong="H3605"\w* \w vanity|strong="H1892"\w* \w and|strong="H6213"\w* \w a|strong="H3068"\w* \w chasing|strong="H7469"\w* \w after|strong="H5921"\w* \w wind|strong="H7307"\w*. +\v 18 \w I|strong="H8478"\w* \w hated|strong="H8130"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w labor|strong="H5999"\w* \w in|strong="H5999"\w* \w which|strong="H3605"\w* \w I|strong="H8478"\w* \w labored|strong="H6001"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*, \w because|strong="H8478"\w* \w I|strong="H8478"\w* must \w leave|strong="H3240"\w* \w it|strong="H1961"\w* \w to|strong="H1961"\w* \w the|strong="H3605"\w* \w man|strong="H3605"\w* \w who|strong="H3605"\w* \w comes|strong="H1961"\w* \w after|strong="H1961"\w* \w me|strong="H8130"\w*. +\v 19 \w Who|strong="H4310"\w* \w knows|strong="H3045"\w* \w whether|strong="H3045"\w* \w he|strong="H3605"\w* \w will|strong="H4310"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w wise|strong="H2450"\w* \w man|strong="H2450"\w* \w or|strong="H1571"\w* \w a|strong="H3068"\w* \w fool|strong="H5530"\w*? \w Yet|strong="H1571"\w* \w he|strong="H3605"\w* \w will|strong="H4310"\w* \w have|strong="H1961"\w* \w rule|strong="H7980"\w* \w over|strong="H7980"\w* \w all|strong="H3605"\w* \w of|strong="H8478"\w* \w my|strong="H3605"\w* \w labor|strong="H5999"\w* \w in|strong="H2450"\w* \w which|strong="H4310"\w* \w I|strong="H3045"\w* \w have|strong="H1961"\w* \w labored|strong="H5998"\w*, \w and|strong="H3045"\w* \w in|strong="H2450"\w* \w which|strong="H4310"\w* \w I|strong="H3045"\w* \w have|strong="H1961"\w* \w shown|strong="H3045"\w* \w myself|strong="H3045"\w* \w wise|strong="H2450"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*. \w This|strong="H2088"\w* \w also|strong="H1571"\w* \w is|strong="H2088"\w* \w vanity|strong="H1892"\w*. +\p +\v 20 \w Therefore|strong="H5921"\w* \w I|strong="H5921"\w* began \w to|strong="H5921"\w* \w cause|strong="H2976"\w* \w my|strong="H3605"\w* \w heart|strong="H3820"\w* \w to|strong="H5921"\w* \w despair|strong="H2976"\w* \w concerning|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w labor|strong="H5999"\w* \w in|strong="H5921"\w* \w which|strong="H5998"\w* \w I|strong="H5921"\w* \w had|strong="H8121"\w* \w labored|strong="H5998"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*. +\v 21 \w For|strong="H3588"\w* \w there|strong="H3426"\w* \w is|strong="H3426"\w* \w a|strong="H3068"\w* \w man|strong="H7451"\w* whose \w labor|strong="H5999"\w* \w is|strong="H3426"\w* \w with|strong="H1571"\w* \w wisdom|strong="H2451"\w*, \w with|strong="H1571"\w* \w knowledge|strong="H1847"\w*, \w and|strong="H2451"\w* \w with|strong="H1571"\w* skillfulness; \w yet|strong="H3588"\w* \w he|strong="H3588"\w* \w shall|strong="H3808"\w* \w leave|strong="H5414"\w* \w it|strong="H5414"\w* \w for|strong="H3588"\w* \w his|strong="H5414"\w* \w portion|strong="H2506"\w* \w to|strong="H5414"\w* \w a|strong="H3068"\w* \w man|strong="H7451"\w* \w who|strong="H7227"\w* \w has|strong="H3588"\w* \w not|strong="H3808"\w* \w labored|strong="H5998"\w* \w for|strong="H3588"\w* \w it|strong="H5414"\w*. \w This|strong="H2088"\w* \w also|strong="H1571"\w* \w is|strong="H3426"\w* \w vanity|strong="H1892"\w* \w and|strong="H2451"\w* \w a|strong="H3068"\w* \w great|strong="H7227"\w* \w evil|strong="H7451"\w*. +\v 22 \w For|strong="H3588"\w* \w what|strong="H4100"\w* \w does|strong="H4100"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w have|strong="H3605"\w* \w of|strong="H3820"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w labor|strong="H5999"\w* \w and|strong="H5999"\w* \w of|strong="H3820"\w* \w the|strong="H3605"\w* \w striving|strong="H7475"\w* \w of|strong="H3820"\w* \w his|strong="H3605"\w* \w heart|strong="H3820"\w*, \w in|strong="H8478"\w* \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w labors|strong="H6001"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*? +\v 23 \w For|strong="H3588"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w days|strong="H3117"\w* \w are|strong="H3117"\w* \w sorrows|strong="H4341"\w*, \w and|strong="H3117"\w* \w his|strong="H3605"\w* \w travail|strong="H6045"\w* \w is|strong="H2088"\w* \w grief|strong="H3708"\w*; \w yes|strong="H3588"\w*, \w even|strong="H1571"\w* \w in|strong="H3117"\w* \w the|strong="H3605"\w* \w night|strong="H3915"\w* \w his|strong="H3605"\w* \w heart|strong="H3820"\w* takes \w no|strong="H3808"\w* \w rest|strong="H7901"\w*. \w This|strong="H2088"\w* \w also|strong="H1571"\w* \w is|strong="H2088"\w* \w vanity|strong="H1892"\w*. +\v 24 \w There|strong="H7200"\w* \w is|strong="H1931"\w* nothing \w better|strong="H2896"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H5315"\w* \w than|strong="H2896"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w should|strong="H3588"\w* eat \w and|strong="H3027"\w* \w drink|strong="H8354"\w*, \w and|strong="H3027"\w* \w make|strong="H7200"\w* \w his|strong="H7200"\w* \w soul|strong="H5315"\w* \w enjoy|strong="H7200"\w* \w good|strong="H2896"\w* \w in|strong="H5315"\w* \w his|strong="H7200"\w* \w labor|strong="H5999"\w*. \w This|strong="H1931"\w* \w also|strong="H1571"\w* \w I|strong="H3588"\w* \w saw|strong="H7200"\w*, \w that|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w from|strong="H5315"\w* \w the|strong="H7200"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w God|strong="H3027"\w*. +\v 25 \w For|strong="H3588"\w* \w who|strong="H4310"\w* \w can|strong="H4310"\w* eat, \w or|strong="H4480"\w* \w who|strong="H4310"\w* \w can|strong="H4310"\w* \w have|strong="H3588"\w* \w enjoyment|strong="H2363"\w*, \w more|strong="H4480"\w* \w than|strong="H4480"\w* \w I|strong="H3588"\w*? +\v 26 \w For|strong="H3588"\w* \w to|strong="H5414"\w* \w the|strong="H6440"\w* \w man|strong="H2896"\w* \w who|strong="H2896"\w* \w pleases|strong="H2896"\w* \w him|strong="H5414"\w*, \w God|strong="H5414"\w* \w gives|strong="H5414"\w* \w wisdom|strong="H2451"\w*, \w knowledge|strong="H1847"\w*, \w and|strong="H2451"\w* \w joy|strong="H8057"\w*; \w but|strong="H3588"\w* \w to|strong="H5414"\w* \w the|strong="H6440"\w* \w sinner|strong="H2398"\w* \w he|strong="H3588"\w* \w gives|strong="H5414"\w* \w travail|strong="H6045"\w*, \w to|strong="H5414"\w* \w gather|strong="H3664"\w* \w and|strong="H2451"\w* \w to|strong="H5414"\w* \w heap|strong="H5414"\w* \w up|strong="H5414"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w may|strong="H1571"\w* \w give|strong="H5414"\w* \w to|strong="H5414"\w* \w him|strong="H5414"\w* \w who|strong="H2896"\w* \w pleases|strong="H2896"\w* \w God|strong="H5414"\w*. \w This|strong="H2088"\w* \w also|strong="H1571"\w* \w is|strong="H2088"\w* \w vanity|strong="H1892"\w* \w and|strong="H2451"\w* \w a|strong="H3068"\w* \w chasing|strong="H7469"\w* \w after|strong="H7469"\w* \w wind|strong="H7307"\w*. +\c 3 +\p +\v 1 \w For|strong="H8478"\w* \w everything|strong="H3605"\w* \w there|strong="H3605"\w* \w is|strong="H3605"\w* \w a|strong="H3068"\w* \w season|strong="H6256"\w*, \w and|strong="H8064"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w for|strong="H8478"\w* \w every|strong="H3605"\w* \w purpose|strong="H2656"\w* \w under|strong="H8478"\w* \w heaven|strong="H8064"\w*: +\q1 +\v 2 \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H4191"\w* \w be|strong="H4191"\w* \w born|strong="H3205"\w*, +\q2 \w and|strong="H4191"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H4191"\w* \w die|strong="H4191"\w*; +\q1 \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H4191"\w* \w plant|strong="H5193"\w*, +\q2 \w and|strong="H4191"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H4191"\w* pluck \w up|strong="H3205"\w* \w that|strong="H6256"\w* \w which|strong="H4191"\w* \w is|strong="H6256"\w* \w planted|strong="H5193"\w*; +\q1 +\v 3 \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H6256"\w* \w kill|strong="H2026"\w*, +\q2 \w and|strong="H1129"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H6256"\w* \w heal|strong="H7495"\w*; +\q1 \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H6256"\w* \w break|strong="H6555"\w* \w down|strong="H6555"\w*, +\q2 \w and|strong="H1129"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H6256"\w* \w build|strong="H1129"\w* \w up|strong="H1129"\w*; +\q1 +\v 4 \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H6256"\w* \w weep|strong="H1058"\w*, +\q2 \w and|strong="H1058"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H6256"\w* \w laugh|strong="H7832"\w*; +\q1 \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H6256"\w* \w mourn|strong="H5594"\w*, +\q2 \w and|strong="H1058"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H6256"\w* \w dance|strong="H7540"\w*; +\q1 +\v 5 \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H6256"\w* \w cast|strong="H7993"\w* \w away|strong="H7993"\w* stones, +\q2 \w and|strong="H6256"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H6256"\w* \w gather|strong="H3664"\w* stones \w together|strong="H3664"\w*; +\q1 \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H6256"\w* \w embrace|strong="H2263"\w*, +\q2 \w and|strong="H6256"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H6256"\w* \w refrain|strong="H7368"\w* \w from|strong="H7368"\w* \w embracing|strong="H2263"\w*; +\q1 +\v 6 \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H6256"\w* \w seek|strong="H1245"\w*, +\q2 \w and|strong="H8104"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H6256"\w* lose; +\q1 \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H6256"\w* \w keep|strong="H8104"\w*, +\q2 \w and|strong="H8104"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H6256"\w* \w cast|strong="H7993"\w* \w away|strong="H7993"\w*; +\q1 +\v 7 \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H1696"\w* \w tear|strong="H7167"\w*, +\q2 \w and|strong="H1696"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H1696"\w* \w sew|strong="H8609"\w*; +\q1 \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H1696"\w* \w keep|strong="H2814"\w* \w silence|strong="H2814"\w*, +\q2 \w and|strong="H1696"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w*; +\q1 +\v 8 \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H6256"\w* love, +\q2 \w and|strong="H7965"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H6256"\w* \w hate|strong="H8130"\w*; +\q1 \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w for|strong="H6256"\w* \w war|strong="H4421"\w*, +\q2 \w and|strong="H7965"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w for|strong="H6256"\w* \w peace|strong="H7965"\w*. +\p +\v 9 \w What|strong="H4100"\w* \w profit|strong="H3504"\w* \w has|strong="H4100"\w* \w he|strong="H1931"\w* \w who|strong="H1931"\w* \w works|strong="H6213"\w* \w in|strong="H6213"\w* \w that|strong="H1931"\w* \w in|strong="H6213"\w* \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w labors|strong="H6001"\w*? +\v 10 \w I|strong="H5414"\w* \w have|strong="H1121"\w* \w seen|strong="H7200"\w* \w the|strong="H7200"\w* burden which \w God|strong="H5414"\w* \w has|strong="H1121"\w* \w given|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H7200"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w* \w to|strong="H5414"\w* \w be|strong="H1121"\w* \w afflicted|strong="H6031"\w* \w with|strong="H6031"\w*. +\v 11 \w He|strong="H5704"\w* \w has|strong="H3820"\w* \w made|strong="H6213"\w* \w everything|strong="H3605"\w* \w beautiful|strong="H3303"\w* \w in|strong="H6213"\w* \w its|strong="H3605"\w* \w time|strong="H6256"\w*. \w He|strong="H5704"\w* \w has|strong="H3820"\w* \w also|strong="H1571"\w* \w set|strong="H5414"\w* \w eternity|strong="H5769"\w* \w in|strong="H6213"\w* \w their|strong="H3605"\w* \w hearts|strong="H3820"\w*, \w yet|strong="H1571"\w* \w so|strong="H6213"\w* \w that|strong="H3605"\w* \w man|strong="H3605"\w* \w can|strong="H6213"\w*’t \w find|strong="H4672"\w* \w out|strong="H4672"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w that|strong="H3605"\w* \w God|strong="H5414"\w* \w has|strong="H3820"\w* \w done|strong="H6213"\w* \w from|strong="H5704"\w* \w the|strong="H3605"\w* \w beginning|strong="H7218"\w* \w even|strong="H1571"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w end|strong="H5490"\w*. +\v 12 \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w there|strong="H3045"\w* \w is|strong="H2896"\w* nothing \w better|strong="H2896"\w* \w for|strong="H3588"\w* \w them|strong="H6213"\w* \w than|strong="H2896"\w* \w to|strong="H6213"\w* \w rejoice|strong="H8055"\w*, \w and|strong="H6213"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w good|strong="H2896"\w* \w as|strong="H6213"\w* long \w as|strong="H6213"\w* \w they|strong="H3588"\w* \w live|strong="H2416"\w*. +\v 13 \w Also|strong="H1571"\w* \w that|strong="H7200"\w* \w every|strong="H3605"\w* \w man|strong="H2896"\w* should eat \w and|strong="H7200"\w* \w drink|strong="H8354"\w*, \w and|strong="H7200"\w* \w enjoy|strong="H7200"\w* \w good|strong="H2896"\w* \w in|strong="H7200"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w labor|strong="H5999"\w*, \w is|strong="H1931"\w* \w the|strong="H3605"\w* \w gift|strong="H4991"\w* \w of|strong="H3605"\w* God. +\v 14 \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w whatever|strong="H3605"\w* God \w does|strong="H6213"\w*, \w it|strong="H1931"\w* \w shall|strong="H1931"\w* \w be|strong="H1961"\w* \w forever|strong="H5769"\w*. \w Nothing|strong="H3605"\w* \w can|strong="H3254"\w* \w be|strong="H1961"\w* \w added|strong="H3254"\w* \w to|strong="H1961"\w* \w it|strong="H1931"\w*, \w nor|strong="H3372"\w* \w anything|strong="H3605"\w* \w taken|strong="H1639"\w* \w from|strong="H4480"\w* \w it|strong="H1931"\w*; \w and|strong="H5769"\w* God \w has|strong="H1961"\w* \w done|strong="H6213"\w* \w it|strong="H1931"\w*, \w that|strong="H3588"\w* \w men|strong="H6213"\w* \w should|strong="H3588"\w* \w fear|strong="H3372"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 15 \w That|strong="H1931"\w* \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w long|strong="H4100"\w* ago, \w and|strong="H1961"\w* \w that|strong="H1931"\w* \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w to|strong="H1961"\w* \w be|strong="H1961"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w long|strong="H4100"\w* ago. God \w seeks|strong="H1245"\w* \w again|strong="H1961"\w* \w that|strong="H1931"\w* \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w passed|strong="H7291"\w* away. +\p +\v 16 \w Moreover|strong="H5750"\w* \w I|strong="H7200"\w* \w saw|strong="H7200"\w* \w under|strong="H8478"\w* \w the|strong="H7200"\w* \w sun|strong="H8121"\w*, \w in|strong="H4725"\w* \w the|strong="H7200"\w* \w place|strong="H4725"\w* \w of|strong="H8478"\w* \w justice|strong="H4941"\w*, \w that|strong="H7200"\w* \w wickedness|strong="H7562"\w* \w was|strong="H4725"\w* \w there|strong="H8033"\w*; \w and|strong="H4941"\w* \w in|strong="H4725"\w* \w the|strong="H7200"\w* \w place|strong="H4725"\w* \w of|strong="H8478"\w* \w righteousness|strong="H6664"\w*, \w that|strong="H7200"\w* \w wickedness|strong="H7562"\w* \w was|strong="H4725"\w* \w there|strong="H8033"\w*. +\v 17 \w I|strong="H3588"\w* said \w in|strong="H5921"\w* \w my|strong="H3605"\w* \w heart|strong="H3820"\w*, “God \w will|strong="H6662"\w* \w judge|strong="H8199"\w* \w the|strong="H3605"\w* \w righteous|strong="H6662"\w* \w and|strong="H8033"\w* \w the|strong="H3605"\w* \w wicked|strong="H7563"\w*; \w for|strong="H3588"\w* \w there|strong="H8033"\w* \w is|strong="H3820"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w there|strong="H8033"\w* \w for|strong="H3588"\w* \w every|strong="H3605"\w* \w purpose|strong="H2656"\w* \w and|strong="H8033"\w* \w for|strong="H3588"\w* \w every|strong="H3605"\w* \w work|strong="H4639"\w*.” +\v 18 \w I|strong="H5921"\w* said \w in|strong="H5921"\w* \w my|strong="H7200"\w* \w heart|strong="H3820"\w*, “\w As|strong="H1121"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*, God tests \w them|strong="H1992"\w*, \w so|strong="H7200"\w* \w that|strong="H7200"\w* \w they|strong="H1992"\w* \w may|strong="H1121"\w* \w see|strong="H7200"\w* \w that|strong="H7200"\w* \w they|strong="H1992"\w* \w themselves|strong="H1992"\w* \w are|strong="H1992"\w* \w like|strong="H3820"\w* animals. +\v 19 \w For|strong="H3588"\w* \w that|strong="H3588"\w* \w which|strong="H2088"\w* happens \w to|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w* happens \w to|strong="H1121"\w* animals. \w Even|strong="H3588"\w* \w one|strong="H2088"\w* \w thing|strong="H2088"\w* happens \w to|strong="H1121"\w* \w them|strong="H1121"\w*. \w As|strong="H3651"\w* \w the|strong="H3605"\w* \w one|strong="H2088"\w* \w dies|strong="H4194"\w*, \w so|strong="H3651"\w* \w the|strong="H3605"\w* \w other|strong="H2088"\w* \w dies|strong="H4194"\w*. \w Yes|strong="H3588"\w*, \w they|strong="H3588"\w* \w have|strong="H1121"\w* \w all|strong="H3605"\w* \w one|strong="H2088"\w* \w breath|strong="H7307"\w*; \w and|strong="H1121"\w* \w man|strong="H1121"\w* \w has|strong="H3588"\w* \w no|strong="H4480"\w* \w advantage|strong="H4195"\w* \w over|strong="H4480"\w* \w the|strong="H3605"\w* animals, \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w is|strong="H2088"\w* \w vanity|strong="H1892"\w*. +\v 20 \w All|strong="H3605"\w* \w go|strong="H1980"\w* \w to|strong="H1980"\w* \w one|strong="H3605"\w* \w place|strong="H4725"\w*. \w All|strong="H3605"\w* \w are|strong="H1961"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w dust|strong="H6083"\w*, \w and|strong="H1980"\w* \w all|strong="H3605"\w* \w turn|strong="H7725"\w* \w to|strong="H1980"\w* \w dust|strong="H6083"\w* \w again|strong="H7725"\w*. +\v 21 \w Who|strong="H4310"\w* \w knows|strong="H3045"\w* \w the|strong="H3045"\w* \w spirit|strong="H7307"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w whether|strong="H3045"\w* \w it|strong="H1931"\w* \w goes|strong="H5927"\w* \w upward|strong="H4605"\w*, \w and|strong="H1121"\w* \w the|strong="H3045"\w* \w spirit|strong="H7307"\w* \w of|strong="H1121"\w* \w the|strong="H3045"\w* animal, \w whether|strong="H3045"\w* \w it|strong="H1931"\w* \w goes|strong="H5927"\w* \w downward|strong="H4295"\w* \w to|strong="H3381"\w* \w the|strong="H3045"\w* \w earth|strong="H5927"\w*?” +\p +\v 22 \w Therefore|strong="H3588"\w* \w I|strong="H3588"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w there|strong="H1961"\w* \w is|strong="H1931"\w* \w nothing|strong="H4100"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w that|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H2896"\w* \w should|strong="H4100"\w* \w rejoice|strong="H8055"\w* \w in|strong="H8055"\w* \w his|strong="H7200"\w* \w works|strong="H4639"\w*, \w for|strong="H3588"\w* \w that|strong="H3588"\w* \w is|strong="H1931"\w* \w his|strong="H7200"\w* \w portion|strong="H2506"\w*; \w for|strong="H3588"\w* \w who|strong="H4310"\w* \w can|strong="H4310"\w* \w bring|strong="H1961"\w* \w him|strong="H7200"\w* \w to|strong="H1961"\w* \w see|strong="H7200"\w* \w what|strong="H4100"\w* \w will|strong="H4310"\w* \w be|strong="H1961"\w* \w after|strong="H1961"\w* \w him|strong="H7200"\w*? +\c 4 +\p +\v 1 \w Then|strong="H2009"\w* \w I|strong="H2009"\w* \w returned|strong="H7725"\w* \w and|strong="H7725"\w* \w saw|strong="H7200"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w oppressions|strong="H6217"\w* \w that|strong="H7200"\w* \w are|strong="H3027"\w* \w done|strong="H6213"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*: \w and|strong="H7725"\w* \w behold|strong="H2009"\w*, \w the|strong="H3605"\w* \w tears|strong="H1832"\w* \w of|strong="H3027"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H3027"\w* \w oppressed|strong="H6231"\w*, \w and|strong="H7725"\w* \w they|strong="H6213"\w* \w had|strong="H3027"\w* \w no|strong="H6213"\w* \w comforter|strong="H5162"\w*; \w and|strong="H7725"\w* \w on|strong="H7200"\w* \w the|strong="H3605"\w* \w side|strong="H3027"\w* \w of|strong="H3027"\w* \w their|strong="H3605"\w* \w oppressors|strong="H6231"\w* \w there|strong="H2009"\w* \w was|strong="H3027"\w* \w power|strong="H3027"\w*; \w but|strong="H7200"\w* \w they|strong="H6213"\w* \w had|strong="H3027"\w* \w no|strong="H6213"\w* \w comforter|strong="H5162"\w*. +\v 2 Therefore \w I|strong="H4480"\w* \w praised|strong="H7623"\w* \w the|strong="H4480"\w* \w dead|strong="H4191"\w* \w who|strong="H1992"\w* \w have|strong="H1992"\w* \w been|strong="H3528"\w* long \w dead|strong="H4191"\w* \w more|strong="H4480"\w* \w than|strong="H4480"\w* \w the|strong="H4480"\w* \w living|strong="H2416"\w* \w who|strong="H1992"\w* \w are|strong="H1992"\w* \w yet|strong="H5728"\w* \w alive|strong="H2416"\w*. +\v 3 \w Yes|strong="H7200"\w*, \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w them|strong="H6213"\w* \w both|strong="H8147"\w* \w is|strong="H2896"\w* \w him|strong="H6213"\w* \w who|strong="H2896"\w* \w has|strong="H1961"\w* \w not|strong="H3808"\w* \w yet|strong="H3808"\w* \w been|strong="H1961"\w*, \w who|strong="H2896"\w* \w has|strong="H1961"\w* \w not|strong="H3808"\w* \w seen|strong="H7200"\w* \w the|strong="H7200"\w* \w evil|strong="H7451"\w* \w work|strong="H4639"\w* \w that|strong="H7200"\w* \w is|strong="H2896"\w* \w done|strong="H6213"\w* \w under|strong="H8478"\w* \w the|strong="H7200"\w* \w sun|strong="H8121"\w*. +\v 4 \w Then|strong="H2088"\w* \w I|strong="H3588"\w* \w saw|strong="H7200"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w labor|strong="H5999"\w* \w and|strong="H7200"\w* achievement \w that|strong="H3588"\w* \w is|strong="H2088"\w* \w the|strong="H3605"\w* \w envy|strong="H7068"\w* \w of|strong="H7307"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w*’s \w neighbor|strong="H7453"\w*. \w This|strong="H2088"\w* \w also|strong="H1571"\w* \w is|strong="H2088"\w* \w vanity|strong="H1892"\w* \w and|strong="H7200"\w* \w a|strong="H3068"\w* \w striving|strong="H7469"\w* \w after|strong="H7469"\w* \w wind|strong="H7307"\w*. +\p +\v 5 \w The|strong="H3027"\w* \w fool|strong="H3684"\w* \w folds|strong="H2263"\w* \w his|strong="H3027"\w* \w hands|strong="H3027"\w* \w together|strong="H2263"\w* \w and|strong="H3027"\w* ruins \w himself|strong="H3027"\w*. +\v 6 \w Better|strong="H2896"\w* \w is|strong="H2896"\w* \w a|strong="H3068"\w* \w handful|strong="H4393"\w*, \w with|strong="H2896"\w* \w quietness|strong="H5183"\w*, \w than|strong="H2896"\w* two \w handfuls|strong="H4393"\w* \w with|strong="H2896"\w* \w labor|strong="H5999"\w* \w and|strong="H2896"\w* \w chasing|strong="H7469"\w* \w after|strong="H7469"\w* \w wind|strong="H7307"\w*. +\p +\v 7 \w Then|strong="H7725"\w* \w I|strong="H7200"\w* \w returned|strong="H7725"\w* \w and|strong="H7725"\w* \w saw|strong="H7200"\w* \w vanity|strong="H1892"\w* \w under|strong="H8478"\w* \w the|strong="H7200"\w* \w sun|strong="H8121"\w*. +\v 8 \w There|strong="H3426"\w* \w is|strong="H3426"\w* \w one|strong="H2088"\w* \w who|strong="H4310"\w* \w is|strong="H3426"\w* \w alone|strong="H1931"\w*, \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w has|strong="H4310"\w* \w neither|strong="H3808"\w* \w son|strong="H1121"\w* \w nor|strong="H3808"\w* brother. \w There|strong="H3426"\w* \w is|strong="H3426"\w* \w no|strong="H3808"\w* \w end|strong="H7093"\w* \w to|strong="H1121"\w* \w all|strong="H3605"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w labor|strong="H5999"\w*, \w neither|strong="H3808"\w* \w are|strong="H1121"\w* \w his|strong="H3605"\w* \w eyes|strong="H5869"\w* \w satisfied|strong="H7646"\w* \w with|strong="H7646"\w* \w wealth|strong="H6239"\w*. “\w For|strong="H1121"\w* \w whom|strong="H4310"\w* \w then|strong="H2088"\w* \w do|strong="H5869"\w* \w I|strong="H5315"\w* \w labor|strong="H5999"\w* \w and|strong="H1121"\w* deprive \w my|strong="H3605"\w* \w soul|strong="H5315"\w* \w of|strong="H1121"\w* \w enjoyment|strong="H2896"\w*?” \w This|strong="H2088"\w* \w also|strong="H1571"\w* \w is|strong="H3426"\w* \w vanity|strong="H1892"\w*. \w Yes|strong="H1571"\w*, \w it|strong="H1931"\w* \w is|strong="H3426"\w* \w a|strong="H3068"\w* \w miserable|strong="H7451"\w* \w business|strong="H6045"\w*. +\p +\v 9 \w Two|strong="H8147"\w* \w are|strong="H1992"\w* \w better|strong="H2896"\w* \w than|strong="H4480"\w* \w one|strong="H4480"\w*, \w because|strong="H4480"\w* \w they|strong="H1992"\w* \w have|strong="H3426"\w* \w a|strong="H3068"\w* \w good|strong="H2896"\w* \w reward|strong="H7939"\w* \w for|strong="H5999"\w* \w their|strong="H1992"\w* \w labor|strong="H5999"\w*. +\v 10 \w For|strong="H3588"\w* \w if|strong="H3588"\w* \w they|strong="H3588"\w* \w fall|strong="H5307"\w*, \w the|strong="H3588"\w* \w one|strong="H3588"\w* \w will|strong="H5307"\w* \w lift|strong="H6965"\w* \w up|strong="H6965"\w* \w his|strong="H6965"\w* \w fellow|strong="H2270"\w*; \w but|strong="H3588"\w* woe \w to|strong="H6965"\w* \w him|strong="H3588"\w* \w who|strong="H3588"\w* \w is|strong="H3588"\w* alone \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w falls|strong="H5307"\w*, \w and|strong="H6965"\w* doesn’t \w have|strong="H3588"\w* \w another|strong="H8145"\w* \w to|strong="H6965"\w* \w lift|strong="H6965"\w* \w him|strong="H3588"\w* \w up|strong="H6965"\w*. +\v 11 \w Again|strong="H1571"\w*, if \w two|strong="H8147"\w* \w lie|strong="H7901"\w* \w together|strong="H1571"\w*, \w then|strong="H1571"\w* \w they|strong="H1571"\w* \w have|strong="H1571"\w* warmth; \w but|strong="H1571"\w* how \w can|strong="H8147"\w* \w one|strong="H1571"\w* \w keep|strong="H2552"\w* \w warm|strong="H2552"\w* alone? +\v 12 If \w a|strong="H3068"\w* man prevails \w against|strong="H5048"\w* \w one|strong="H3808"\w* \w who|strong="H5975"\w* \w is|strong="H5975"\w* alone, \w two|strong="H8147"\w* \w shall|strong="H3808"\w* \w withstand|strong="H5975"\w* \w him|strong="H5975"\w*; \w and|strong="H5975"\w* \w a|strong="H3068"\w* \w threefold|strong="H8027"\w* \w cord|strong="H2339"\w* \w is|strong="H5975"\w* \w not|strong="H3808"\w* \w quickly|strong="H4120"\w* \w broken|strong="H5423"\w*. +\p +\v 13 \w Better|strong="H2896"\w* \w is|strong="H2896"\w* \w a|strong="H3068"\w* \w poor|strong="H4542"\w* \w and|strong="H4428"\w* \w wise|strong="H2450"\w* \w youth|strong="H3206"\w* \w than|strong="H2896"\w* \w an|strong="H4428"\w* \w old|strong="H2205"\w* \w and|strong="H4428"\w* \w foolish|strong="H3684"\w* \w king|strong="H4428"\w* \w who|strong="H4428"\w* doesn’t \w know|strong="H3045"\w* \w how|strong="H3045"\w* \w to|strong="H4428"\w* \w receive|strong="H2094"\w* admonition \w any|strong="H5750"\w* \w more|strong="H5750"\w*. +\v 14 \w For|strong="H3588"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w prison|strong="H1004"\w* \w he|strong="H3588"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w be|strong="H1571"\w* \w king|strong="H4427"\w*; \w yes|strong="H3588"\w*, \w even|strong="H1571"\w* \w in|strong="H1004"\w* \w his|strong="H3588"\w* \w kingdom|strong="H4438"\w* \w he|strong="H3588"\w* \w was|strong="H1004"\w* \w born|strong="H3205"\w* \w poor|strong="H7326"\w*. +\v 15 \w I|strong="H7200"\w* \w saw|strong="H7200"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w living|strong="H2416"\w* \w who|strong="H3605"\w* \w walk|strong="H1980"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*, \w that|strong="H7200"\w* \w they|strong="H3605"\w* \w were|strong="H7200"\w* \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w youth|strong="H3206"\w*, \w the|strong="H3605"\w* \w other|strong="H8145"\w*, \w who|strong="H3605"\w* \w succeeded|strong="H8478"\w* \w him|strong="H7200"\w*. +\v 16 \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w end|strong="H7093"\w* \w of|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w even|strong="H1571"\w* \w of|strong="H6440"\w* \w all|strong="H3605"\w* \w them|strong="H6440"\w* \w over|strong="H6440"\w* \w whom|strong="H6440"\w* \w he|strong="H3588"\w* \w was|strong="H1961"\w*—\w yet|strong="H3588"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w come|strong="H1961"\w* \w after|strong="H7093"\w* \w shall|strong="H5971"\w* \w not|strong="H3808"\w* \w rejoice|strong="H8055"\w* \w in|strong="H6440"\w* \w him|strong="H6440"\w*. \w Surely|strong="H3588"\w* \w this|strong="H2088"\w* \w also|strong="H1571"\w* \w is|strong="H2088"\w* \w vanity|strong="H1892"\w* \w and|strong="H5971"\w* \w a|strong="H3068"\w* \w chasing|strong="H7475"\w* \w after|strong="H7093"\w* \w wind|strong="H7307"\w*. +\c 5 +\p +\v 1 Guard \w your|strong="H5921"\w* steps \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w go|strong="H3318"\w* \w to|strong="H3318"\w* \w God|strong="H8064"\w*’s house; \w for|strong="H3588"\w* \w to|strong="H3318"\w* \w draw|strong="H3318"\w* \w near|strong="H6440"\w* \w to|strong="H3318"\w* listen \w is|strong="H3820"\w* \w better|strong="H5921"\w* \w than|strong="H5921"\w* \w to|strong="H3318"\w* \w give|strong="H1961"\w* \w the|strong="H6440"\w* sacrifice \w of|strong="H1697"\w* fools, \w for|strong="H3588"\w* \w they|strong="H3588"\w* don’t know \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w do|strong="H3318"\w* evil. +\v 2 Don’t \w be|strong="H1697"\w* rash \w with|strong="H1697"\w* \w your|strong="H3588"\w* mouth, \w and|strong="H6963"\w* don’t let \w your|strong="H3588"\w* heart \w be|strong="H1697"\w* hasty \w to|strong="H1697"\w* utter \w anything|strong="H1697"\w* before God; \w for|strong="H3588"\w* God \w is|strong="H1697"\w* \w in|strong="H1697"\w* heaven, \w and|strong="H6963"\w* \w you|strong="H3588"\w* \w on|strong="H1697"\w* earth. \w Therefore|strong="H3588"\w* let \w your|strong="H3588"\w* \w words|strong="H1697"\w* \w be|strong="H1697"\w* few. +\v 3 \w For|strong="H3588"\w* \w as|strong="H3588"\w* \w a|strong="H3068"\w* dream comes \w with|strong="H7999"\w* \w a|strong="H3068"\w* multitude \w of|strong="H5088"\w* cares, \w so|strong="H3588"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w*’s speech \w with|strong="H7999"\w* \w a|strong="H3068"\w* multitude \w of|strong="H5088"\w* words. +\v 4 When \w you|strong="H3808"\w* \w vow|strong="H5087"\w* \w a|strong="H3068"\w* \w vow|strong="H5087"\w* \w to|strong="H2896"\w* \w God|strong="H3808"\w*, don’t defer \w to|strong="H2896"\w* \w pay|strong="H7999"\w* \w it|strong="H3808"\w*; \w for|strong="H3808"\w* \w he|strong="H3808"\w* has \w no|strong="H3808"\w* \w pleasure|strong="H2896"\w* \w in|strong="H3808"\w* fools. \w Pay|strong="H7999"\w* \w that|strong="H3808"\w* which \w you|strong="H3808"\w* \w vow|strong="H5087"\w*. +\v 5 \w It|strong="H5414"\w* \w is|strong="H1931"\w* \w better|strong="H3027"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w should|strong="H4100"\w* \w not|strong="H5414"\w* \w vow|strong="H3027"\w*, \w than|strong="H5921"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w should|strong="H4100"\w* \w vow|strong="H3027"\w* \w and|strong="H3027"\w* \w not|strong="H5414"\w* \w pay|strong="H5414"\w*. +\v 6 Don’t allow \w your|strong="H3588"\w* mouth \w to|strong="H1697"\w* lead \w you|strong="H3588"\w* \w into|strong="H1697"\w* sin. Don’t protest before \w the|strong="H3588"\w* messenger \w that|strong="H3588"\w* \w this|strong="H1697"\w* \w was|strong="H1697"\w* \w a|strong="H3068"\w* mistake. \w Why|strong="H1697"\w* \w should|strong="H3588"\w* God \w be|strong="H1697"\w* angry \w at|strong="H2472"\w* \w your|strong="H3588"\w* voice, \w and|strong="H1697"\w* destroy \w the|strong="H3588"\w* \w work|strong="H1697"\w* \w of|strong="H1697"\w* \w your|strong="H3588"\w* hands? +\v 7 \w For|strong="H3588"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* multitude \w of|strong="H5921"\w* dreams \w there|strong="H2656"\w* \w are|strong="H4941"\w* vanities, \w as|strong="H3588"\w* well \w as|strong="H3588"\w* \w in|strong="H5921"\w* \w many|strong="H7200"\w* words; \w but|strong="H3588"\w* \w you|strong="H3588"\w* must fear God. +\p +\v 8 \w If|strong="H1931"\w* \w you|strong="H3605"\w* see \w the|strong="H3605"\w* oppression \w of|strong="H4428"\w* \w the|strong="H3605"\w* poor, \w and|strong="H4428"\w* \w the|strong="H3605"\w* violent taking \w away|strong="H3605"\w* \w of|strong="H4428"\w* justice \w and|strong="H4428"\w* righteousness \w in|strong="H4428"\w* \w a|strong="H3068"\w* district, don’t marvel \w at|strong="H4428"\w* \w the|strong="H3605"\w* matter, \w for|strong="H4428"\w* \w one|strong="H3605"\w* official \w is|strong="H1931"\w* eyed \w by|strong="H3605"\w* \w a|strong="H3068"\w* higher \w one|strong="H3605"\w*, \w and|strong="H4428"\w* \w there|strong="H3605"\w* \w are|strong="H4428"\w* officials \w over|strong="H4428"\w* \w them|strong="H5647"\w*. +\v 9 \w Moreover|strong="H1571"\w* \w the|strong="H1571"\w* profit \w of|strong="H1995"\w* \w the|strong="H1571"\w* earth \w is|strong="H2088"\w* \w for|strong="H3701"\w* \w all|strong="H1571"\w*. \w The|strong="H1571"\w* king profits \w from|strong="H1571"\w* \w the|strong="H1571"\w* field. +\p +\v 10 \w He|strong="H3588"\w* \w who|strong="H2896"\w* loves silver \w shall|strong="H5869"\w* \w not|strong="H3588"\w* \w be|strong="H5869"\w* satisfied \w with|strong="H5869"\w* silver, \w nor|strong="H3588"\w* \w he|strong="H3588"\w* \w who|strong="H2896"\w* loves \w abundance|strong="H7235"\w*, \w with|strong="H5869"\w* \w increase|strong="H7235"\w*. \w This|strong="H3588"\w* \w also|strong="H5869"\w* \w is|strong="H4100"\w* vanity. +\v 11 \w When|strong="H7235"\w* goods \w increase|strong="H7235"\w*, \w those|strong="H3240"\w* who eat \w them|strong="H5647"\w* \w are|strong="H6223"\w* \w increased|strong="H7235"\w*; \w and|strong="H5647"\w* what advantage is there \w to|strong="H7235"\w* \w its|strong="H7235"\w* owner, except \w to|strong="H7235"\w* feast \w on|strong="H7235"\w* \w them|strong="H5647"\w* \w with|strong="H5647"\w* \w his|strong="H5647"\w* eyes? +\p +\v 12 \w The|strong="H7200"\w* \w sleep|strong="H7200"\w* \w of|strong="H1167"\w* \w a|strong="H3068"\w* laboring \w man|strong="H1167"\w* \w is|strong="H3426"\w* sweet, \w whether|strong="H7200"\w* \w he|strong="H3426"\w* eats little \w or|strong="H7200"\w* much; \w but|strong="H7200"\w* \w the|strong="H7200"\w* abundance \w of|strong="H1167"\w* \w the|strong="H7200"\w* \w rich|strong="H6239"\w* \w will|strong="H8121"\w* \w not|strong="H7200"\w* allow \w him|strong="H7200"\w* \w to|strong="H8104"\w* \w sleep|strong="H7200"\w*. +\p +\v 13 There \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w grievous|strong="H7451"\w* \w evil|strong="H7451"\w* \w which|strong="H1931"\w* \w I|strong="H1121"\w* \w have|strong="H1121"\w* seen \w under|strong="H3027"\w* \w the|strong="H3205"\w* sun: \w wealth|strong="H6239"\w* kept \w by|strong="H3027"\w* its owner \w to|strong="H3027"\w* \w his|strong="H3027"\w* \w harm|strong="H7451"\w*. +\v 14 \w Those|strong="H3318"\w* riches perish \w by|strong="H3027"\w* misfortune, \w and|strong="H7725"\w* if \w he|strong="H3027"\w* \w has|strong="H3027"\w* fathered \w a|strong="H3068"\w* son, \w there|strong="H7725"\w* \w is|strong="H3027"\w* \w nothing|strong="H3808"\w* \w in|strong="H3212"\w* \w his|strong="H5375"\w* \w hand|strong="H3027"\w*. +\v 15 \w As|strong="H1571"\w* \w he|strong="H3651"\w* \w came|strong="H3212"\w* \w out|strong="H3212"\w* \w of|strong="H7307"\w* \w his|strong="H3605"\w* mother’s womb, naked \w shall|strong="H7451"\w* \w he|strong="H3651"\w* \w go|strong="H3212"\w* \w again|strong="H3212"\w* \w as|strong="H1571"\w* \w he|strong="H3651"\w* \w came|strong="H3212"\w*, \w and|strong="H3212"\w* \w shall|strong="H7451"\w* \w take|strong="H3212"\w* \w nothing|strong="H3605"\w* \w for|strong="H3605"\w* \w his|strong="H3605"\w* \w labor|strong="H5998"\w*, \w which|strong="H4100"\w* \w he|strong="H3651"\w* \w may|strong="H1571"\w* \w carry|strong="H3212"\w* \w away|strong="H3212"\w* \w in|strong="H3212"\w* \w his|strong="H3605"\w* hand. +\v 16 \w This|strong="H3117"\w* \w also|strong="H1571"\w* \w is|strong="H3117"\w* \w a|strong="H3068"\w* \w grievous|strong="H3708"\w* evil, \w that|strong="H3605"\w* \w in|strong="H3117"\w* \w all|strong="H3605"\w* points \w as|strong="H3117"\w* \w he|strong="H3117"\w* came, \w so|strong="H1571"\w* \w shall|strong="H3117"\w* \w he|strong="H3117"\w* go. \w And|strong="H3117"\w* \w what|strong="H1571"\w* profit \w does|strong="H1571"\w* \w he|strong="H3117"\w* \w have|strong="H1571"\w* \w who|strong="H3605"\w* labors \w for|strong="H3117"\w* \w the|strong="H3605"\w* wind? +\v 17 \w All|strong="H3605"\w* \w his|strong="H3605"\w* \w days|strong="H3117"\w* \w he|strong="H1931"\w* \w also|strong="H3117"\w* eats \w in|strong="H3117"\w* darkness, \w he|strong="H1931"\w* \w is|strong="H1931"\w* frustrated, \w and|strong="H3117"\w* \w has|strong="H3117"\w* sickness \w and|strong="H3117"\w* wrath. +\p +\v 18 Behold, \w that|strong="H3605"\w* \w which|strong="H1931"\w* \w I|strong="H5414"\w* \w have|strong="H1571"\w* seen \w to|strong="H5414"\w* \w be|strong="H1571"\w* good \w and|strong="H6239"\w* proper \w is|strong="H1931"\w* \w for|strong="H3605"\w* \w one|strong="H3605"\w* \w to|strong="H5414"\w* eat \w and|strong="H6239"\w* \w to|strong="H5414"\w* drink, \w and|strong="H6239"\w* \w to|strong="H5414"\w* enjoy good \w in|strong="H8055"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w labor|strong="H5999"\w*, \w in|strong="H8055"\w* \w which|strong="H1931"\w* \w he|strong="H1931"\w* labors \w under|strong="H4480"\w* \w the|strong="H3605"\w* sun, \w all|strong="H3605"\w* \w the|strong="H3605"\w* days \w of|strong="H4480"\w* \w his|strong="H3605"\w* \w life|strong="H3605"\w* \w which|strong="H1931"\w* \w God|strong="H5414"\w* \w has|strong="H1571"\w* \w given|strong="H5414"\w* \w him|strong="H5414"\w*; \w for|strong="H3605"\w* \w this|strong="H1931"\w* \w is|strong="H1931"\w* \w his|strong="H3605"\w* \w portion|strong="H2506"\w*. +\v 19 \w Every|strong="H3117"\w* \w man|strong="H2416"\w* \w also|strong="H3117"\w* \w to|strong="H3820"\w* \w whom|strong="H3588"\w* \w God|strong="H3808"\w* \w has|strong="H3820"\w* given riches \w and|strong="H3117"\w* \w wealth|strong="H3808"\w*, \w and|strong="H3117"\w* \w has|strong="H3820"\w* given \w him|strong="H7235"\w* power \w to|strong="H3820"\w* eat \w of|strong="H3117"\w* \w it|strong="H3588"\w*, \w and|strong="H3117"\w* \w to|strong="H3820"\w* \w take|strong="H2142"\w* \w his|strong="H2142"\w* portion, \w and|strong="H3117"\w* \w to|strong="H3820"\w* \w rejoice|strong="H8057"\w* \w in|strong="H3117"\w* \w his|strong="H2142"\w* labor—\w this|strong="H3588"\w* \w is|strong="H3820"\w* \w the|strong="H3588"\w* gift \w of|strong="H3117"\w* \w God|strong="H3808"\w*. +\v 20 For he shall not often reflect on the days of his life, because God occupies him with the joy of his heart. +\c 6 +\p +\v 1 \w There|strong="H3426"\w* \w is|strong="H3426"\w* \w an|strong="H7200"\w* \w evil|strong="H7451"\w* \w which|strong="H1931"\w* \w I|strong="H5921"\w* \w have|strong="H3426"\w* \w seen|strong="H7200"\w* \w under|strong="H8478"\w* \w the|strong="H5921"\w* \w sun|strong="H8121"\w*, \w and|strong="H7200"\w* \w it|strong="H1931"\w* \w is|strong="H3426"\w* \w heavy|strong="H7451"\w* \w on|strong="H5921"\w* \w men|strong="H7451"\w*: +\v 2 \w a|strong="H3068"\w* \w man|strong="H5315"\w* \w to|strong="H5414"\w* \w whom|strong="H3588"\w* \w God|strong="H5414"\w* \w gives|strong="H5414"\w* \w riches|strong="H6239"\w*, \w wealth|strong="H6239"\w*, \w and|strong="H6239"\w* \w honor|strong="H3519"\w*, \w so|strong="H4480"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w lacks|strong="H2638"\w* \w nothing|strong="H3808"\w* \w for|strong="H3588"\w* \w his|strong="H3605"\w* \w soul|strong="H5315"\w* \w of|strong="H4480"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* desires, \w yet|strong="H3588"\w* \w God|strong="H5414"\w* \w gives|strong="H5414"\w* \w him|strong="H5414"\w* \w no|strong="H3808"\w* \w power|strong="H7980"\w* \w to|strong="H5414"\w* eat \w of|strong="H4480"\w* \w it|strong="H5414"\w*, \w but|strong="H3588"\w* \w an|strong="H5414"\w* \w alien|strong="H5237"\w* eats \w it|strong="H5414"\w*. \w This|strong="H2088"\w* \w is|strong="H2088"\w* \w vanity|strong="H1892"\w*, \w and|strong="H6239"\w* \w it|strong="H5414"\w* \w is|strong="H2088"\w* \w an|strong="H5414"\w* \w evil|strong="H7451"\w* \w disease|strong="H2483"\w*. +\p +\v 3 \w If|strong="H1961"\w* \w a|strong="H3068"\w* \w man|strong="H5315"\w* \w fathers|strong="H3205"\w* \w a|strong="H3068"\w* \w hundred|strong="H3967"\w* \w children|strong="H3205"\w*, \w and|strong="H3967"\w* \w lives|strong="H5315"\w* \w many|strong="H7227"\w* \w years|strong="H8141"\w*, \w so|strong="H4480"\w* \w that|strong="H3117"\w* \w the|strong="H3205"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w his|strong="H1961"\w* \w years|strong="H8141"\w* \w are|strong="H3117"\w* \w many|strong="H7227"\w*, \w but|strong="H3808"\w* \w his|strong="H1961"\w* \w soul|strong="H5315"\w* \w is|strong="H5315"\w* \w not|strong="H3808"\w* \w filled|strong="H7646"\w* \w with|strong="H7646"\w* \w good|strong="H2896"\w*, \w and|strong="H3967"\w* \w moreover|strong="H1571"\w* \w he|strong="H3117"\w* \w has|strong="H1961"\w* \w no|strong="H3808"\w* \w burial|strong="H6900"\w*, \w I|strong="H3117"\w* say \w that|strong="H3117"\w* \w a|strong="H3068"\w* \w stillborn|strong="H5309"\w* \w child|strong="H3205"\w* \w is|strong="H5315"\w* \w better|strong="H2896"\w* \w than|strong="H4480"\w* \w he|strong="H3117"\w*; +\v 4 \w for|strong="H3588"\w* \w it|strong="H3588"\w* comes \w in|strong="H3212"\w* \w vanity|strong="H1892"\w*, \w and|strong="H3212"\w* departs \w in|strong="H3212"\w* \w darkness|strong="H2822"\w*, \w and|strong="H3212"\w* \w its|strong="H3588"\w* \w name|strong="H8034"\w* \w is|strong="H8034"\w* \w covered|strong="H3680"\w* \w with|strong="H3212"\w* \w darkness|strong="H2822"\w*. +\v 5 \w Moreover|strong="H1571"\w* \w it|strong="H7200"\w* \w has|strong="H1571"\w* \w not|strong="H3808"\w* \w seen|strong="H7200"\w* \w the|strong="H7200"\w* \w sun|strong="H8121"\w* \w nor|strong="H3808"\w* \w known|strong="H3045"\w* \w it|strong="H7200"\w*. \w This|strong="H2088"\w* \w has|strong="H1571"\w* \w rest|strong="H5183"\w* \w rather|strong="H3808"\w* \w than|strong="H3808"\w* \w the|strong="H7200"\w* \w other|strong="H2088"\w*. +\v 6 \w Yes|strong="H7200"\w*, though \w he|strong="H3605"\w* \w live|strong="H2421"\w* \w a|strong="H3068"\w* thousand \w years|strong="H8141"\w* \w twice|strong="H6471"\w* told, \w and|strong="H1980"\w* \w yet|strong="H3808"\w* fails \w to|strong="H1980"\w* \w enjoy|strong="H7200"\w* \w good|strong="H2896"\w*, don’t \w all|strong="H3605"\w* \w go|strong="H1980"\w* \w to|strong="H1980"\w* \w one|strong="H3605"\w* \w place|strong="H4725"\w*? +\v 7 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w labor|strong="H5999"\w* \w of|strong="H4390"\w* \w man|strong="H5315"\w* \w is|strong="H5315"\w* \w for|strong="H3605"\w* \w his|strong="H3605"\w* \w mouth|strong="H6310"\w*, \w and|strong="H6310"\w* \w yet|strong="H1571"\w* \w the|strong="H3605"\w* \w appetite|strong="H5315"\w* \w is|strong="H5315"\w* \w not|strong="H3808"\w* \w filled|strong="H4390"\w*. +\v 8 \w For|strong="H3588"\w* \w what|strong="H4100"\w* \w advantage|strong="H3148"\w* \w has|strong="H4100"\w* \w the|strong="H3588"\w* \w wise|strong="H2450"\w* \w more|strong="H4480"\w* \w than|strong="H4480"\w* \w the|strong="H3588"\w* \w fool|strong="H3684"\w*? \w What|strong="H4100"\w* \w has|strong="H4100"\w* \w the|strong="H3588"\w* \w poor|strong="H6041"\w* \w man|strong="H2450"\w*, \w that|strong="H3588"\w* \w knows|strong="H3045"\w* \w how|strong="H4100"\w* \w to|strong="H1980"\w* \w walk|strong="H1980"\w* \w before|strong="H4480"\w* \w the|strong="H3588"\w* \w living|strong="H2416"\w*? +\v 9 \w Better|strong="H2896"\w* \w is|strong="H2088"\w* \w the|strong="H1571"\w* \w sight|strong="H5869"\w* \w of|strong="H7307"\w* \w the|strong="H1571"\w* \w eyes|strong="H5869"\w* \w than|strong="H2896"\w* \w the|strong="H1571"\w* \w wandering|strong="H1980"\w* \w of|strong="H7307"\w* \w the|strong="H1571"\w* \w desire|strong="H5315"\w*. \w This|strong="H2088"\w* \w also|strong="H1571"\w* \w is|strong="H2088"\w* \w vanity|strong="H1892"\w* \w and|strong="H1980"\w* \w a|strong="H3068"\w* \w chasing|strong="H7469"\w* \w after|strong="H7469"\w* \w wind|strong="H7307"\w*. +\v 10 \w Whatever|strong="H4100"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w*, \w its|strong="H3045"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w given|strong="H7121"\w* \w long|strong="H4100"\w* ago; \w and|strong="H3045"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w known|strong="H3045"\w* \w what|strong="H4100"\w* \w man|strong="H3045"\w* \w is|strong="H1931"\w*; \w neither|strong="H3808"\w* \w can|strong="H3201"\w* \w he|strong="H1931"\w* \w contend|strong="H1777"\w* \w with|strong="H5973"\w* \w him|strong="H7121"\w* \w who|strong="H1931"\w* \w is|strong="H1931"\w* mightier \w than|strong="H4480"\w* \w he|strong="H1931"\w*. +\v 11 \w For|strong="H3588"\w* \w there|strong="H3426"\w* \w are|strong="H4100"\w* \w many|strong="H7235"\w* \w words|strong="H1697"\w* \w that|strong="H3588"\w* create \w vanity|strong="H1892"\w*. \w What|strong="H4100"\w* \w does|strong="H4100"\w* \w that|strong="H3588"\w* \w profit|strong="H3148"\w* man? +\v 12 \w For|strong="H3588"\w* \w who|strong="H4310"\w* \w knows|strong="H3045"\w* \w what|strong="H4100"\w* \w is|strong="H4310"\w* \w good|strong="H2896"\w* \w for|strong="H3588"\w* \w man|strong="H2896"\w* \w in|strong="H6213"\w* \w life|strong="H2416"\w*, \w all|strong="H3045"\w* \w the|strong="H3588"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w his|strong="H3045"\w* \w vain|strong="H1892"\w* \w life|strong="H2416"\w* \w which|strong="H4310"\w* \w he|strong="H3588"\w* spends \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w shadow|strong="H6738"\w*? \w For|strong="H3588"\w* \w who|strong="H4310"\w* \w can|strong="H4310"\w* \w tell|strong="H5046"\w* \w a|strong="H3068"\w* \w man|strong="H2896"\w* \w what|strong="H4100"\w* \w will|strong="H4310"\w* \w be|strong="H1961"\w* \w after|strong="H1961"\w* \w him|strong="H5046"\w* \w under|strong="H8478"\w* \w the|strong="H3588"\w* \w sun|strong="H8121"\w*? +\c 7 +\p +\v 1 \w A|strong="H3068"\w* \w good|strong="H2896"\w* \w name|strong="H8034"\w* \w is|strong="H3117"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w fine|strong="H2896"\w* perfume; \w and|strong="H3117"\w* \w the|strong="H3205"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w death|strong="H4194"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w the|strong="H3205"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w one|strong="H2896"\w*’s \w birth|strong="H3205"\w*. +\v 2 \w It|strong="H5414"\w* \w is|strong="H1931"\w* \w better|strong="H2896"\w* \w to|strong="H3212"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* mourning \w than|strong="H2896"\w* \w to|strong="H3212"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w feasting|strong="H4960"\w*; \w for|strong="H1004"\w* \w that|strong="H3605"\w* \w is|strong="H1931"\w* \w the|strong="H3605"\w* \w end|strong="H5490"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w men|strong="H3605"\w*, \w and|strong="H1004"\w* \w the|strong="H3605"\w* \w living|strong="H2416"\w* should \w take|strong="H5414"\w* \w this|strong="H1931"\w* \w to|strong="H3212"\w* \w heart|strong="H3820"\w*. +\v 3 \w Sorrow|strong="H3708"\w* \w is|strong="H3820"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w laughter|strong="H7814"\w*; \w for|strong="H3588"\w* \w by|strong="H6440"\w* \w the|strong="H6440"\w* \w sadness|strong="H7455"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w the|strong="H6440"\w* \w heart|strong="H3820"\w* \w is|strong="H3820"\w* \w made|strong="H3190"\w* \w good|strong="H2896"\w*. +\v 4 \w The|strong="H1004"\w* \w heart|strong="H3820"\w* \w of|strong="H1004"\w* \w the|strong="H1004"\w* \w wise|strong="H2450"\w* \w is|strong="H3820"\w* \w in|strong="H1004"\w* \w the|strong="H1004"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* mourning; \w but|strong="H3820"\w* \w the|strong="H1004"\w* \w heart|strong="H3820"\w* \w of|strong="H1004"\w* \w fools|strong="H3684"\w* \w is|strong="H3820"\w* \w in|strong="H1004"\w* \w the|strong="H1004"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w mirth|strong="H8057"\w*. +\v 5 \w It|strong="H2896"\w* \w is|strong="H2896"\w* \w better|strong="H2896"\w* \w to|strong="H8085"\w* \w hear|strong="H8085"\w* \w the|strong="H8085"\w* \w rebuke|strong="H1606"\w* \w of|strong="H7892"\w* \w the|strong="H8085"\w* \w wise|strong="H2450"\w* \w than|strong="H2896"\w* \w for|strong="H2896"\w* \w a|strong="H3068"\w* \w man|strong="H2450"\w* \w to|strong="H8085"\w* \w hear|strong="H8085"\w* \w the|strong="H8085"\w* \w song|strong="H7892"\w* \w of|strong="H7892"\w* \w fools|strong="H3684"\w*. +\v 6 \w For|strong="H3588"\w* \w as|strong="H1571"\w* \w the|strong="H3588"\w* \w crackling|strong="H6963"\w* \w of|strong="H6963"\w* \w thorns|strong="H5518"\w* \w under|strong="H8478"\w* \w a|strong="H3068"\w* \w pot|strong="H5518"\w*, \w so|strong="H3651"\w* \w is|strong="H2088"\w* \w the|strong="H3588"\w* \w laughter|strong="H7814"\w* \w of|strong="H6963"\w* \w the|strong="H3588"\w* \w fool|strong="H3684"\w*. \w This|strong="H2088"\w* \w also|strong="H1571"\w* \w is|strong="H2088"\w* \w vanity|strong="H1892"\w*. +\v 7 \w Surely|strong="H3588"\w* \w extortion|strong="H6233"\w* \w makes|strong="H1984"\w* \w the|strong="H3588"\w* \w wise|strong="H2450"\w* \w man|strong="H2450"\w* \w foolish|strong="H1984"\w*; \w and|strong="H3820"\w* \w a|strong="H3068"\w* \w bribe|strong="H4979"\w* destroys \w the|strong="H3588"\w* \w understanding|strong="H3820"\w*. +\v 8 \w Better|strong="H2896"\w* \w is|strong="H1697"\w* \w the|strong="H1697"\w* end \w of|strong="H1697"\w* \w a|strong="H3068"\w* \w thing|strong="H1697"\w* \w than|strong="H2896"\w* its \w beginning|strong="H7225"\w*. +\p \w The|strong="H1697"\w* patient \w in|strong="H1697"\w* \w spirit|strong="H7307"\w* \w is|strong="H1697"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w the|strong="H1697"\w* \w proud|strong="H1362"\w* \w in|strong="H1697"\w* \w spirit|strong="H7307"\w*. +\v 9 Don’t \w be|strong="H7307"\w* hasty \w in|strong="H5117"\w* \w your|strong="H3588"\w* \w spirit|strong="H7307"\w* \w to|strong="H7307"\w* \w be|strong="H7307"\w* \w angry|strong="H3707"\w*, \w for|strong="H3588"\w* \w anger|strong="H3707"\w* \w rests|strong="H5117"\w* \w in|strong="H5117"\w* \w the|strong="H3588"\w* \w bosom|strong="H2436"\w* \w of|strong="H7307"\w* \w fools|strong="H3684"\w*. +\v 10 Don’t say, “\w Why|strong="H4100"\w* \w were|strong="H1961"\w* \w the|strong="H5921"\w* \w former|strong="H7223"\w* \w days|strong="H3117"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w these|strong="H2088"\w*?” \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w do|strong="H4100"\w* \w not|strong="H3808"\w* \w ask|strong="H7592"\w* \w wisely|strong="H2451"\w* \w about|strong="H1961"\w* \w this|strong="H2088"\w*. +\p +\v 11 \w Wisdom|strong="H2451"\w* \w is|strong="H2896"\w* \w as|strong="H5159"\w* \w good|strong="H2896"\w* \w as|strong="H5159"\w* \w an|strong="H7200"\w* \w inheritance|strong="H5159"\w*. \w Yes|strong="H7200"\w*, \w it|strong="H7200"\w* \w is|strong="H2896"\w* \w more|strong="H3148"\w* excellent \w for|strong="H2896"\w* \w those|strong="H5973"\w* \w who|strong="H2896"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w sun|strong="H8121"\w*. +\v 12 \w For|strong="H3588"\w* \w wisdom|strong="H2451"\w* \w is|strong="H3701"\w* \w a|strong="H3068"\w* defense, \w even|strong="H3588"\w* \w as|strong="H3588"\w* \w money|strong="H3701"\w* \w is|strong="H3701"\w* \w a|strong="H3068"\w* defense; \w but|strong="H3588"\w* \w the|strong="H3588"\w* \w excellency|strong="H3504"\w* \w of|strong="H1167"\w* \w knowledge|strong="H1847"\w* \w is|strong="H3701"\w* \w that|strong="H3588"\w* \w wisdom|strong="H2451"\w* \w preserves|strong="H2421"\w* \w the|strong="H3588"\w* \w life|strong="H2421"\w* \w of|strong="H1167"\w* \w him|strong="H3588"\w* \w who|strong="H3588"\w* \w has|strong="H3588"\w* \w it|strong="H3588"\w*. +\p +\v 13 \w Consider|strong="H7200"\w* \w the|strong="H7200"\w* \w work|strong="H4639"\w* \w of|strong="H4639"\w* \w God|strong="H4310"\w*, \w for|strong="H3588"\w* \w who|strong="H4310"\w* \w can|strong="H4310"\w* \w make|strong="H7200"\w* \w that|strong="H3588"\w* \w straight|strong="H8626"\w* \w which|strong="H4310"\w* \w he|strong="H3588"\w* \w has|strong="H4310"\w* \w made|strong="H4639"\w* \w crooked|strong="H5791"\w*? +\v 14 \w In|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w prosperity|strong="H2896"\w* \w be|strong="H1961"\w* \w joyful|strong="H2896"\w*, \w and|strong="H3117"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w adversity|strong="H7451"\w* \w consider|strong="H7200"\w*; \w yes|strong="H1571"\w*, \w God|strong="H3808"\w* \w has|strong="H1961"\w* \w made|strong="H6213"\w* \w the|strong="H5921"\w* \w one|strong="H2088"\w* \w side|strong="H2088"\w* \w by|strong="H5921"\w* \w side|strong="H2088"\w* \w with|strong="H6213"\w* \w the|strong="H5921"\w* \w other|strong="H2088"\w*, \w to|strong="H1961"\w* \w the|strong="H5921"\w* \w end|strong="H1700"\w* \w that|strong="H7200"\w* \w man|strong="H7451"\w* \w should|strong="H3117"\w* \w not|strong="H3808"\w* \w find|strong="H4672"\w* \w out|strong="H4672"\w* \w anything|strong="H3972"\w* \w after|strong="H5921"\w* \w him|strong="H5921"\w*. +\p +\v 15 \w All|strong="H3605"\w* \w this|strong="H7200"\w* \w I|strong="H3117"\w* \w have|strong="H3426"\w* \w seen|strong="H7200"\w* \w in|strong="H3117"\w* \w my|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w vanity|strong="H1892"\w*: \w there|strong="H3426"\w* \w is|strong="H3426"\w* \w a|strong="H3068"\w* \w righteous|strong="H6662"\w* \w man|strong="H7563"\w* \w who|strong="H3605"\w* perishes \w in|strong="H3117"\w* \w his|strong="H3605"\w* \w righteousness|strong="H6664"\w*, \w and|strong="H3117"\w* \w there|strong="H3426"\w* \w is|strong="H3426"\w* \w a|strong="H3068"\w* \w wicked|strong="H7563"\w* \w man|strong="H7563"\w* \w who|strong="H3605"\w* lives \w long|strong="H3117"\w* \w in|strong="H3117"\w* \w his|strong="H3605"\w* evildoing. +\v 16 Don’t \w be|strong="H1961"\w* \w overly|strong="H3148"\w* \w righteous|strong="H6662"\w*, neither \w make|strong="H8074"\w* yourself \w overly|strong="H3148"\w* \w wise|strong="H2449"\w*. \w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w you|strong="H4100"\w* \w destroy|strong="H8074"\w* yourself? +\v 17 Don’t \w be|strong="H1961"\w* \w too|strong="H1961"\w* \w wicked|strong="H7561"\w*, \w neither|strong="H3808"\w* \w be|strong="H1961"\w* \w foolish|strong="H5530"\w*. \w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w you|strong="H3808"\w* \w die|strong="H4191"\w* \w before|strong="H3808"\w* \w your|strong="H7235"\w* \w time|strong="H6256"\w*? +\v 18 \w It|strong="H3588"\w* \w is|strong="H2088"\w* \w good|strong="H2896"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w should|strong="H3588"\w* \w take|strong="H3318"\w* hold \w of|strong="H3027"\w* \w this|strong="H2088"\w*. \w Yes|strong="H3588"\w*, \w also|strong="H1571"\w* don’t \w withdraw|strong="H3240"\w* \w your|strong="H3605"\w* \w hand|strong="H3027"\w* \w from|strong="H3318"\w* \w that|strong="H3588"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w who|strong="H3605"\w* \w fears|strong="H3373"\w* \w God|strong="H3027"\w* \w will|strong="H1571"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3027"\w* \w them|strong="H3027"\w* \w all|strong="H3605"\w*. +\v 19 \w Wisdom|strong="H2451"\w* \w is|strong="H5892"\w* \w a|strong="H3068"\w* strength \w to|strong="H1961"\w* \w the|strong="H1961"\w* \w wise|strong="H2450"\w* \w man|strong="H2450"\w* \w more|strong="H2450"\w* \w than|strong="H2451"\w* \w ten|strong="H6235"\w* \w rulers|strong="H7989"\w* \w who|strong="H2450"\w* \w are|strong="H5892"\w* \w in|strong="H5892"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w*. +\v 20 \w Surely|strong="H3588"\w* there \w is|strong="H2896"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w righteous|strong="H6662"\w* \w man|strong="H6662"\w* \w on|strong="H6213"\w* earth \w who|strong="H2896"\w* \w does|strong="H6213"\w* \w good|strong="H2896"\w* \w and|strong="H6213"\w* doesn’t \w sin|strong="H2398"\w*. +\v 21 \w Also|strong="H1571"\w* don’t \w take|strong="H5414"\w* \w heed|strong="H8085"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w words|strong="H1697"\w* \w that|strong="H3605"\w* \w are|strong="H1697"\w* \w spoken|strong="H1696"\w*, lest \w you|strong="H5414"\w* \w hear|strong="H8085"\w* \w your|strong="H3605"\w* \w servant|strong="H5650"\w* \w curse|strong="H7043"\w* \w you|strong="H5414"\w*; +\v 22 \w for|strong="H3588"\w* often \w your|strong="H3045"\w* own \w heart|strong="H3820"\w* \w knows|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w yourself|strong="H3820"\w* \w have|strong="H3045"\w* \w likewise|strong="H1571"\w* \w cursed|strong="H7043"\w* \w others|strong="H7227"\w*. +\v 23 \w All|strong="H3605"\w* \w this|strong="H1931"\w* \w I|strong="H7350"\w* \w have|strong="H3605"\w* \w proved|strong="H5254"\w* \w in|strong="H4480"\w* \w wisdom|strong="H2451"\w*. \w I|strong="H7350"\w* said, “\w I|strong="H7350"\w* \w will|strong="H1931"\w* \w be|strong="H2451"\w* \w wise|strong="H2449"\w*;” \w but|strong="H1931"\w* \w it|strong="H1931"\w* \w was|strong="H1931"\w* \w far|strong="H7350"\w* \w from|strong="H4480"\w* \w me|strong="H4480"\w*. +\v 24 \w That|strong="H1961"\w* \w which|strong="H4310"\w* \w is|strong="H4310"\w*, \w is|strong="H4310"\w* \w far|strong="H7350"\w* \w off|strong="H7350"\w* \w and|strong="H1961"\w* \w exceedingly|strong="H6013"\w* \w deep|strong="H6013"\w*. \w Who|strong="H4310"\w* \w can|strong="H4310"\w* \w find|strong="H4672"\w* \w it|strong="H1961"\w* \w out|strong="H4672"\w*? +\v 25 \w I|strong="H3045"\w* \w turned|strong="H5437"\w* \w around|strong="H5437"\w*, \w and|strong="H2451"\w* \w my|strong="H3045"\w* \w heart|strong="H3820"\w* \w sought|strong="H1245"\w* \w to|strong="H3820"\w* \w know|strong="H3045"\w* \w and|strong="H2451"\w* \w to|strong="H3820"\w* \w search|strong="H1245"\w* \w out|strong="H8446"\w*, \w and|strong="H2451"\w* \w to|strong="H3820"\w* \w seek|strong="H1245"\w* \w wisdom|strong="H2451"\w* \w and|strong="H2451"\w* \w the|strong="H3045"\w* scheme \w of|strong="H3820"\w* things, \w and|strong="H2451"\w* \w to|strong="H3820"\w* \w know|strong="H3045"\w* \w that|strong="H3045"\w* \w wickedness|strong="H7562"\w* \w is|strong="H3820"\w* stupidity, \w and|strong="H2451"\w* \w that|strong="H3045"\w* \w foolishness|strong="H5531"\w* \w is|strong="H3820"\w* \w madness|strong="H1947"\w*. +\p +\v 26 \w I|strong="H6440"\w* \w find|strong="H4672"\w* \w more|strong="H4480"\w* \w bitter|strong="H4751"\w* \w than|strong="H4480"\w* \w death|strong="H4194"\w* \w the|strong="H6440"\w* woman whose \w heart|strong="H3820"\w* \w is|strong="H1931"\w* \w snares|strong="H4685"\w* \w and|strong="H3027"\w* traps, whose \w hands|strong="H3027"\w* \w are|strong="H3027"\w* chains. Whoever \w pleases|strong="H2896"\w* \w God|strong="H3027"\w* \w shall|strong="H3820"\w* \w escape|strong="H4422"\w* \w from|strong="H4480"\w* \w her|strong="H4672"\w*; \w but|strong="H1931"\w* \w the|strong="H6440"\w* \w sinner|strong="H2398"\w* \w will|strong="H3820"\w* \w be|strong="H3027"\w* ensnared \w by|strong="H3027"\w* \w her|strong="H4672"\w*. +\p +\v 27 “\w Behold|strong="H7200"\w*, \w I|strong="H7200"\w* \w have|strong="H4672"\w* \w found|strong="H4672"\w* \w this|strong="H2088"\w*,” says \w the|strong="H7200"\w* \w Preacher|strong="H6953"\w*, “\w to|strong="H7200"\w* \w one|strong="H2088"\w* \w another|strong="H2088"\w*, \w to|strong="H7200"\w* \w find|strong="H4672"\w* \w an|strong="H7200"\w* \w explanation|strong="H2808"\w* +\v 28 \w which|strong="H5315"\w* \w my|strong="H3605"\w* \w soul|strong="H5315"\w* \w still|strong="H5750"\w* \w seeks|strong="H1245"\w*, \w but|strong="H3808"\w* \w I|strong="H5315"\w* \w have|strong="H4672"\w* \w not|strong="H3808"\w* \w found|strong="H4672"\w*. \w I|strong="H5315"\w* \w have|strong="H4672"\w* \w found|strong="H4672"\w* \w one|strong="H3605"\w* \w man|strong="H5315"\w* \w among|strong="H4672"\w* \w a|strong="H3068"\w* thousand, \w but|strong="H3808"\w* \w I|strong="H5315"\w* \w have|strong="H4672"\w* \w not|strong="H3808"\w* \w found|strong="H4672"\w* \w a|strong="H3068"\w* woman \w among|strong="H4672"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w*. +\v 29 \w Behold|strong="H7200"\w*, \w I|strong="H7200"\w* \w have|strong="H4672"\w* \w only|strong="H1245"\w* \w found|strong="H4672"\w* \w this|strong="H2088"\w*: \w that|strong="H7200"\w* God \w made|strong="H6213"\w* mankind \w upright|strong="H3477"\w*; \w but|strong="H7200"\w* \w they|strong="H1992"\w* \w search|strong="H1245"\w* \w for|strong="H6213"\w* \w many|strong="H7227"\w* \w inventions|strong="H2810"\w*.” +\c 8 +\p +\v 1 \w Who|strong="H4310"\w* \w is|strong="H4310"\w* \w like|strong="H1697"\w* \w the|strong="H6440"\w* \w wise|strong="H2450"\w* \w man|strong="H2450"\w*? \w And|strong="H2451"\w* \w who|strong="H4310"\w* \w knows|strong="H3045"\w* \w the|strong="H6440"\w* \w interpretation|strong="H6592"\w* \w of|strong="H1697"\w* \w a|strong="H3068"\w* \w thing|strong="H1697"\w*? \w A|strong="H3068"\w* \w man|strong="H2450"\w*’s \w wisdom|strong="H2451"\w* \w makes|strong="H6440"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w* shine, \w and|strong="H2451"\w* \w the|strong="H6440"\w* hardness \w of|strong="H1697"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w* \w is|strong="H4310"\w* \w changed|strong="H8132"\w*. +\p +\v 2 \w I|strong="H5921"\w* \w say|strong="H6310"\w*, “\w Keep|strong="H8104"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w command|strong="H6310"\w*!” \w because|strong="H5921"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w oath|strong="H7621"\w* \w to|strong="H5921"\w* God. +\v 3 Don’t \w be|strong="H1697"\w* hasty \w to|strong="H3212"\w* \w go|strong="H3212"\w* \w out|strong="H6213"\w* \w of|strong="H1697"\w* \w his|strong="H3605"\w* \w presence|strong="H6440"\w*. Don’t \w persist|strong="H5975"\w* \w in|strong="H6213"\w* \w an|strong="H6213"\w* \w evil|strong="H7451"\w* \w thing|strong="H1697"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w does|strong="H6213"\w* \w whatever|strong="H3605"\w* \w pleases|strong="H2654"\w* \w him|strong="H6440"\w*, +\v 4 \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w*’s \w word|strong="H1697"\w* \w is|strong="H4310"\w* supreme. \w Who|strong="H4310"\w* \w can|strong="H4310"\w* \w say|strong="H1697"\w* \w to|strong="H6213"\w* \w him|strong="H6213"\w*, “\w What|strong="H4100"\w* \w are|strong="H4100"\w* \w you|strong="H6213"\w* \w doing|strong="H6213"\w*?” +\v 5 \w Whoever|strong="H8104"\w* \w keeps|strong="H8104"\w* \w the|strong="H8104"\w* \w commandment|strong="H4687"\w* \w shall|strong="H3820"\w* \w not|strong="H3808"\w* \w come|strong="H4941"\w* \w to|strong="H6256"\w* \w harm|strong="H7451"\w*, \w and|strong="H4941"\w* \w his|strong="H8104"\w* \w wise|strong="H2450"\w* \w heart|strong="H3820"\w* \w will|strong="H3820"\w* \w know|strong="H3045"\w* \w the|strong="H8104"\w* \w time|strong="H6256"\w* \w and|strong="H4941"\w* \w procedure|strong="H4941"\w*. +\v 6 \w For|strong="H3588"\w* \w there|strong="H3426"\w* \w is|strong="H3426"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w and|strong="H4941"\w* \w procedure|strong="H4941"\w* \w for|strong="H3588"\w* \w every|strong="H3605"\w* \w purpose|strong="H2656"\w*, \w although|strong="H3588"\w* \w the|strong="H3605"\w* \w misery|strong="H7451"\w* \w of|strong="H5921"\w* \w man|strong="H7451"\w* \w is|strong="H3426"\w* \w heavy|strong="H7451"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 7 \w For|strong="H3588"\w* \w he|strong="H3588"\w* doesn’t \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w which|strong="H4310"\w* \w will|strong="H4310"\w* \w be|strong="H1961"\w*; \w for|strong="H3588"\w* \w who|strong="H4310"\w* \w can|strong="H4310"\w* \w tell|strong="H5046"\w* \w him|strong="H5046"\w* \w how|strong="H4100"\w* \w it|strong="H3588"\w* \w will|strong="H4310"\w* \w be|strong="H1961"\w*? +\v 8 \w There|strong="H3117"\w* \w is|strong="H3117"\w* \w no|strong="H3808"\w* \w man|strong="H1167"\w* \w who|strong="H4421"\w* \w has|strong="H3117"\w* \w power|strong="H7983"\w* over \w the|strong="H3117"\w* \w spirit|strong="H7307"\w* \w to|strong="H3117"\w* contain \w the|strong="H3117"\w* \w spirit|strong="H7307"\w*; \w neither|strong="H3808"\w* \w does|strong="H3808"\w* \w he|strong="H3117"\w* \w have|strong="H3117"\w* \w power|strong="H7983"\w* over \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w death|strong="H4194"\w*. \w There|strong="H3117"\w* \w is|strong="H3117"\w* \w no|strong="H3808"\w* \w discharge|strong="H4917"\w* \w in|strong="H3117"\w* \w war|strong="H4421"\w*; \w neither|strong="H3808"\w* \w shall|strong="H3117"\w* \w wickedness|strong="H7562"\w* \w deliver|strong="H4422"\w* those \w who|strong="H4421"\w* \w practice|strong="H1167"\w* \w it|strong="H3117"\w*. +\p +\v 9 \w All|strong="H3605"\w* \w this|strong="H2088"\w* \w I|strong="H5414"\w* \w have|strong="H7200"\w* \w seen|strong="H7200"\w*, \w and|strong="H7200"\w* \w applied|strong="H5414"\w* \w my|strong="H5414"\w* \w mind|strong="H3820"\w* \w to|strong="H6213"\w* \w every|strong="H3605"\w* \w work|strong="H4639"\w* \w that|strong="H7200"\w* \w is|strong="H2088"\w* \w done|strong="H6213"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*. \w There|strong="H2088"\w* \w is|strong="H2088"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w in|strong="H6213"\w* \w which|strong="H7451"\w* \w one|strong="H2088"\w* \w man|strong="H7451"\w* \w has|strong="H3820"\w* \w power|strong="H7980"\w* \w over|strong="H5414"\w* \w another|strong="H2088"\w* \w to|strong="H6213"\w* \w his|strong="H3605"\w* \w hurt|strong="H7451"\w*. +\v 10 \w So|strong="H3651"\w* \w I|strong="H3651"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w wicked|strong="H7563"\w* \w buried|strong="H6912"\w*. \w Indeed|strong="H1571"\w* \w they|strong="H3651"\w* \w came|strong="H1980"\w* \w also|strong="H1571"\w* \w from|strong="H1980"\w* holiness. \w They|strong="H3651"\w* \w went|strong="H1980"\w* \w and|strong="H1980"\w* \w were|strong="H1571"\w* \w forgotten|strong="H7911"\w* \w in|strong="H1980"\w* \w the|strong="H7200"\w* \w city|strong="H5892"\w* \w where|strong="H4725"\w* \w they|strong="H3651"\w* \w did|strong="H6213"\w* \w this|strong="H2088"\w*. \w This|strong="H2088"\w* \w also|strong="H1571"\w* \w is|strong="H2088"\w* \w vanity|strong="H1892"\w*. +\v 11 \w Because|strong="H5921"\w* \w sentence|strong="H6599"\w* \w against|strong="H5921"\w* \w an|strong="H6213"\w* \w evil|strong="H7451"\w* \w work|strong="H4639"\w* \w is|strong="H3820"\w* \w not|strong="H6213"\w* \w executed|strong="H6213"\w* \w speedily|strong="H4120"\w*, \w therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w heart|strong="H3820"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w* \w is|strong="H3820"\w* \w fully|strong="H4390"\w* \w set|strong="H4390"\w* \w in|strong="H5921"\w* \w them|strong="H5921"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w evil|strong="H7451"\w*. +\v 12 \w Though|strong="H3588"\w* \w a|strong="H3068"\w* \w sinner|strong="H2398"\w* \w commits|strong="H6213"\w* \w crimes|strong="H7451"\w* \w a|strong="H3068"\w* \w hundred|strong="H3967"\w* \w times|strong="H6440"\w*, \w and|strong="H3967"\w* \w lives|strong="H1961"\w* \w long|strong="H6440"\w*, \w yet|strong="H3588"\w* \w surely|strong="H3588"\w* \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w better|strong="H2896"\w* \w with|strong="H6213"\w* \w those|strong="H6213"\w* \w who|strong="H2896"\w* \w fear|strong="H3372"\w* God, \w who|strong="H2896"\w* \w are|strong="H1571"\w* reverent \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 13 \w But|strong="H3808"\w* \w it|strong="H6440"\w* \w shall|strong="H3117"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w well|strong="H2896"\w* \w with|strong="H6440"\w* \w the|strong="H6440"\w* \w wicked|strong="H7563"\w*, \w neither|strong="H3808"\w* \w shall|strong="H3117"\w* \w he|strong="H3117"\w* lengthen \w days|strong="H3117"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w shadow|strong="H6738"\w*, \w because|strong="H6440"\w* \w he|strong="H3117"\w* doesn’t \w fear|strong="H3373"\w* \w God|strong="H3808"\w*. +\p +\v 14 \w There|strong="H3426"\w* \w is|strong="H3426"\w* \w a|strong="H3068"\w* \w vanity|strong="H1892"\w* \w which|strong="H2088"\w* \w is|strong="H3426"\w* \w done|strong="H6213"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* earth, \w that|strong="H2088"\w* \w there|strong="H3426"\w* \w are|strong="H7563"\w* \w righteous|strong="H6662"\w* \w men|strong="H7563"\w* \w to|strong="H6213"\w* whom \w it|strong="H5921"\w* \w happens|strong="H6213"\w* \w according|strong="H5921"\w* \w to|strong="H6213"\w* \w the|strong="H5921"\w* \w work|strong="H4639"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w wicked|strong="H7563"\w*. \w Again|strong="H1571"\w*, \w there|strong="H3426"\w* \w are|strong="H7563"\w* \w wicked|strong="H7563"\w* \w men|strong="H7563"\w* \w to|strong="H6213"\w* whom \w it|strong="H5921"\w* \w happens|strong="H6213"\w* \w according|strong="H5921"\w* \w to|strong="H6213"\w* \w the|strong="H5921"\w* \w work|strong="H4639"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w righteous|strong="H6662"\w*. \w I|strong="H5921"\w* said \w that|strong="H2088"\w* \w this|strong="H2088"\w* \w also|strong="H1571"\w* \w is|strong="H3426"\w* \w vanity|strong="H1892"\w*. +\v 15 \w Then|strong="H5414"\w* \w I|strong="H3588"\w* \w commended|strong="H7623"\w* \w mirth|strong="H8057"\w*, \w because|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H2896"\w* \w has|strong="H3117"\w* \w no|strong="H5414"\w* \w better|strong="H2896"\w* \w thing|strong="H2416"\w* \w under|strong="H8478"\w* \w the|strong="H3588"\w* \w sun|strong="H8121"\w* \w than|strong="H2896"\w* \w to|strong="H5414"\w* eat, \w to|strong="H5414"\w* \w drink|strong="H8354"\w*, \w and|strong="H3117"\w* \w to|strong="H5414"\w* \w be|strong="H3117"\w* \w joyful|strong="H8055"\w*: \w for|strong="H3588"\w* \w that|strong="H3588"\w* \w will|strong="H5414"\w* accompany \w him|strong="H5414"\w* \w in|strong="H3117"\w* \w his|strong="H5414"\w* \w labor|strong="H5999"\w* \w all|strong="H5414"\w* \w the|strong="H3588"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w his|strong="H5414"\w* \w life|strong="H2416"\w* \w which|strong="H1931"\w* \w God|strong="H5414"\w* \w has|strong="H3117"\w* \w given|strong="H5414"\w* \w him|strong="H5414"\w* \w under|strong="H8478"\w* \w the|strong="H3588"\w* \w sun|strong="H8121"\w*. +\p +\v 16 \w When|strong="H3588"\w* \w I|strong="H3588"\w* \w applied|strong="H5414"\w* \w my|strong="H5414"\w* \w heart|strong="H3820"\w* \w to|strong="H6213"\w* \w know|strong="H3045"\w* \w wisdom|strong="H2451"\w*, \w and|strong="H3117"\w* \w to|strong="H6213"\w* \w see|strong="H7200"\w* \w the|strong="H5921"\w* \w business|strong="H6045"\w* \w that|strong="H3588"\w* \w is|strong="H3820"\w* \w done|strong="H6213"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* earth (\w even|strong="H1571"\w* \w though|strong="H3588"\w* \w eyes|strong="H5869"\w* \w see|strong="H7200"\w* \w no|strong="H6213"\w* \w sleep|strong="H8142"\w* \w day|strong="H3117"\w* \w or|strong="H1571"\w* \w night|strong="H3915"\w*), +\v 17 \w then|strong="H1571"\w* \w I|strong="H3588"\w* \w saw|strong="H7200"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H8478"\w* \w God|strong="H3808"\w*, \w that|strong="H3588"\w* \w man|strong="H2450"\w* \w can|strong="H3201"\w*’t \w find|strong="H4672"\w* \w out|strong="H4672"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w that|strong="H3588"\w* \w is|strong="H1571"\w* \w done|strong="H6213"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*, \w because|strong="H3588"\w* \w however|strong="H4672"\w* \w much|strong="H6213"\w* \w a|strong="H3068"\w* \w man|strong="H2450"\w* \w labors|strong="H4639"\w* \w to|strong="H3201"\w* \w seek|strong="H1245"\w* \w it|strong="H3588"\w* \w out|strong="H4672"\w*, \w yet|strong="H3588"\w* \w he|strong="H3588"\w* won’t \w find|strong="H4672"\w* \w it|strong="H3588"\w*. \w Yes|strong="H3588"\w* \w even|strong="H1571"\w* \w though|strong="H3588"\w* \w a|strong="H3068"\w* \w wise|strong="H2450"\w* \w man|strong="H2450"\w* thinks \w he|strong="H3588"\w* \w can|strong="H3201"\w* \w comprehend|strong="H3045"\w* \w it|strong="H3588"\w*, \w he|strong="H3588"\w* won’t \w be|strong="H3808"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w find|strong="H4672"\w* \w it|strong="H3588"\w*. +\c 9 +\p +\v 1 \w For|strong="H3588"\w* \w all|strong="H3605"\w* \w this|strong="H2088"\w* \w I|strong="H3588"\w* \w laid|strong="H5414"\w* \w to|strong="H5414"\w* \w my|strong="H5414"\w* \w heart|strong="H3820"\w*, \w even|strong="H1571"\w* \w to|strong="H5414"\w* explore \w all|strong="H3605"\w* \w this|strong="H2088"\w*: \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w righteous|strong="H6662"\w*, \w and|strong="H3027"\w* \w the|strong="H3605"\w* \w wise|strong="H2450"\w*, \w and|strong="H3027"\w* \w their|strong="H3605"\w* \w works|strong="H5652"\w*, \w are|strong="H3027"\w* \w in|strong="H6440"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w God|strong="H5414"\w*; \w whether|strong="H3045"\w* \w it|strong="H5414"\w* \w is|strong="H2088"\w* love \w or|strong="H1571"\w* \w hatred|strong="H8135"\w*, \w man|strong="H2450"\w* doesn’t \w know|strong="H3045"\w* \w it|strong="H5414"\w*; \w all|strong="H3605"\w* \w is|strong="H2088"\w* \w before|strong="H6440"\w* \w them|strong="H5414"\w*. +\v 2 \w All|strong="H3605"\w* \w things|strong="H3605"\w* come alike \w to|strong="H7650"\w* \w all|strong="H3605"\w*. \w There|strong="H3605"\w* \w is|strong="H2896"\w* \w one|strong="H3605"\w* \w event|strong="H4745"\w* \w to|strong="H7650"\w* \w the|strong="H3605"\w* \w righteous|strong="H6662"\w* \w and|strong="H2896"\w* \w to|strong="H7650"\w* \w the|strong="H3605"\w* \w wicked|strong="H7563"\w*; \w to|strong="H7650"\w* \w the|strong="H3605"\w* \w good|strong="H2896"\w*, \w to|strong="H7650"\w* \w the|strong="H3605"\w* \w clean|strong="H2889"\w*, \w to|strong="H7650"\w* \w the|strong="H3605"\w* \w unclean|strong="H2931"\w*, \w to|strong="H7650"\w* \w him|strong="H3605"\w* \w who|strong="H3605"\w* \w sacrifices|strong="H2076"\w*, \w and|strong="H2896"\w* \w to|strong="H7650"\w* \w him|strong="H3605"\w* \w who|strong="H3605"\w* doesn’t \w sacrifice|strong="H2076"\w*. \w As|strong="H3605"\w* \w is|strong="H2896"\w* \w the|strong="H3605"\w* \w good|strong="H2896"\w*, \w so|strong="H7650"\w* \w is|strong="H2896"\w* \w the|strong="H3605"\w* \w sinner|strong="H2398"\w*; \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w takes|strong="H7650"\w* \w an|strong="H7650"\w* \w oath|strong="H7621"\w*, \w as|strong="H3605"\w* \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w fears|strong="H3372"\w* \w an|strong="H7650"\w* \w oath|strong="H7621"\w*. +\v 3 \w This|strong="H2088"\w* \w is|strong="H2088"\w* \w an|strong="H6213"\w* \w evil|strong="H7451"\w* \w in|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w is|strong="H2088"\w* \w done|strong="H6213"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*, \w that|strong="H3588"\w* \w there|strong="H2088"\w* \w is|strong="H2088"\w* \w one|strong="H2088"\w* \w event|strong="H4745"\w* \w to|strong="H4191"\w* \w all|strong="H3605"\w*. \w Yes|strong="H3588"\w* \w also|strong="H1571"\w*, \w the|strong="H3605"\w* \w heart|strong="H3820"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w* \w is|strong="H2088"\w* \w full|strong="H4390"\w* \w of|strong="H1121"\w* \w evil|strong="H7451"\w*, \w and|strong="H1121"\w* \w madness|strong="H1947"\w* \w is|strong="H2088"\w* \w in|strong="H6213"\w* \w their|strong="H3605"\w* \w heart|strong="H3820"\w* \w while|strong="H3588"\w* \w they|strong="H3588"\w* \w live|strong="H2416"\w*, \w and|strong="H1121"\w* \w after|strong="H3588"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w go|strong="H8121"\w* \w to|strong="H4191"\w* \w the|strong="H3605"\w* \w dead|strong="H4191"\w*. +\v 4 \w For|strong="H3588"\w* \w to|strong="H4191"\w* \w him|strong="H4191"\w* \w who|strong="H4310"\w* \w is|strong="H3426"\w* joined \w with|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w living|strong="H2416"\w* \w there|strong="H3426"\w* \w is|strong="H3426"\w* hope; \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w living|strong="H2416"\w* \w dog|strong="H3611"\w* \w is|strong="H3426"\w* \w better|strong="H2896"\w* \w than|strong="H4480"\w* \w a|strong="H3068"\w* \w dead|strong="H4191"\w* lion. +\v 5 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w living|strong="H2416"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H5750"\w* \w die|strong="H4191"\w*, \w but|strong="H3588"\w* \w the|strong="H3588"\w* \w dead|strong="H4191"\w* don’t \w know|strong="H3045"\w* \w anything|strong="H3972"\w*, neither do \w they|strong="H3588"\w* \w have|strong="H3045"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w* \w a|strong="H3068"\w* \w reward|strong="H7939"\w*; \w for|strong="H3588"\w* \w their|strong="H3588"\w* \w memory|strong="H2143"\w* \w is|strong="H2143"\w* \w forgotten|strong="H7911"\w*. +\v 6 \w Also|strong="H1571"\w* \w their|strong="H3605"\w* love, \w their|strong="H3605"\w* \w hatred|strong="H8135"\w*, \w and|strong="H5769"\w* \w their|strong="H3605"\w* \w envy|strong="H7068"\w* \w has|strong="H1571"\w* perished \w long|strong="H5769"\w* \w ago|strong="H5769"\w*; \w neither|strong="H1571"\w* \w do|strong="H6213"\w* \w they|strong="H1992"\w* \w any|strong="H3605"\w* \w longer|strong="H5750"\w* \w have|strong="H1571"\w* \w a|strong="H3068"\w* \w portion|strong="H2506"\w* \w forever|strong="H5769"\w* \w in|strong="H6213"\w* \w anything|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H1571"\w* \w done|strong="H6213"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*. +\p +\v 7 \w Go|strong="H3212"\w* \w your|strong="H3588"\w* \w way|strong="H3212"\w*—\w eat|strong="H3899"\w* \w your|strong="H3588"\w* \w bread|strong="H3899"\w* \w with|strong="H3212"\w* \w joy|strong="H8057"\w*, \w and|strong="H3212"\w* \w drink|strong="H8354"\w* \w your|strong="H3588"\w* \w wine|strong="H3196"\w* \w with|strong="H3212"\w* \w a|strong="H3068"\w* \w merry|strong="H2896"\w* \w heart|strong="H3820"\w*; \w for|strong="H3588"\w* God \w has|strong="H3820"\w* \w already|strong="H3528"\w* \w accepted|strong="H7521"\w* \w your|strong="H3588"\w* \w works|strong="H4639"\w*. +\v 8 \w Let|strong="H6256"\w* \w your|strong="H3605"\w* garments \w be|strong="H1961"\w* \w always|strong="H3605"\w* \w white|strong="H3836"\w*, \w and|strong="H7218"\w* don’t \w let|strong="H6256"\w* \w your|strong="H3605"\w* \w head|strong="H7218"\w* \w lack|strong="H2637"\w* \w oil|strong="H8081"\w*. +\v 9 \w Live|strong="H2416"\w* \w joyfully|strong="H7200"\w* \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w wife|strong="H2416"\w* \w whom|strong="H3588"\w* \w you|strong="H3588"\w* love \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H3605"\w* \w life|strong="H2416"\w* \w of|strong="H3117"\w* \w vanity|strong="H1892"\w*, \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w has|strong="H3117"\w* \w given|strong="H5414"\w* \w you|strong="H3588"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*, \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w vanity|strong="H1892"\w*, \w for|strong="H3588"\w* \w that|strong="H3588"\w* \w is|strong="H1931"\w* \w your|strong="H3605"\w* \w portion|strong="H2506"\w* \w in|strong="H3117"\w* \w life|strong="H2416"\w*, \w and|strong="H3117"\w* \w in|strong="H3117"\w* \w your|strong="H3605"\w* \w labor|strong="H5999"\w* \w in|strong="H3117"\w* \w which|strong="H1931"\w* \w you|strong="H3588"\w* \w labor|strong="H5999"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*. +\v 10 \w Whatever|strong="H3605"\w* \w your|strong="H3605"\w* \w hand|strong="H3027"\w* \w finds|strong="H4672"\w* \w to|strong="H1980"\w* \w do|strong="H6213"\w*, \w do|strong="H6213"\w* \w it|strong="H3588"\w* \w with|strong="H1980"\w* \w your|strong="H3605"\w* \w might|strong="H3581"\w*; \w for|strong="H3588"\w* \w there|strong="H8033"\w* \w is|strong="H3027"\w* \w no|strong="H6213"\w* \w work|strong="H4639"\w*, \w nor|strong="H2451"\w* plan, \w nor|strong="H2451"\w* \w knowledge|strong="H1847"\w*, \w nor|strong="H2451"\w* \w wisdom|strong="H2451"\w*, \w in|strong="H1980"\w* \w Sheol|strong="H7585"\w*,\f + \fr 9:10 \ft Sheol is the place of the dead.\f* \w where|strong="H8033"\w* \w you|strong="H3588"\w* \w are|strong="H3027"\w* \w going|strong="H1980"\w*. +\p +\v 11 \w I|strong="H3588"\w* \w returned|strong="H7725"\w* \w and|strong="H7725"\w* \w saw|strong="H7200"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w race|strong="H4793"\w* \w is|strong="H1571"\w* \w not|strong="H3808"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w swift|strong="H7031"\w*, \w nor|strong="H3808"\w* \w the|strong="H3605"\w* \w battle|strong="H4421"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w strong|strong="H1368"\w*, \w neither|strong="H3808"\w* \w yet|strong="H3588"\w* \w bread|strong="H3899"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w wise|strong="H2450"\w*, \w nor|strong="H3808"\w* \w yet|strong="H3588"\w* \w riches|strong="H6239"\w* \w to|strong="H7725"\w* \w men|strong="H1368"\w* \w of|strong="H1368"\w* understanding, \w nor|strong="H3808"\w* \w yet|strong="H3588"\w* \w favor|strong="H2580"\w* \w to|strong="H7725"\w* \w men|strong="H1368"\w* \w of|strong="H1368"\w* \w skill|strong="H3045"\w*; \w but|strong="H3588"\w* \w time|strong="H6256"\w* \w and|strong="H7725"\w* \w chance|strong="H6294"\w* \w happen|strong="H7136"\w* \w to|strong="H7725"\w* \w them|strong="H7725"\w* \w all|strong="H3605"\w*. +\v 12 \w For|strong="H3588"\w* \w man|strong="H1121"\w* \w also|strong="H1571"\w* doesn’t \w know|strong="H3045"\w* \w his|strong="H5921"\w* \w time|strong="H6256"\w*. \w As|strong="H1571"\w* \w the|strong="H5921"\w* \w fish|strong="H1709"\w* \w that|strong="H3588"\w* \w are|strong="H1992"\w* taken \w in|strong="H5921"\w* \w an|strong="H3588"\w* \w evil|strong="H7451"\w* \w net|strong="H4685"\w*, \w and|strong="H1121"\w* \w as|strong="H1571"\w* \w the|strong="H5921"\w* \w birds|strong="H6833"\w* \w that|strong="H3588"\w* \w are|strong="H1992"\w* caught \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w snare|strong="H6341"\w*, \w even|strong="H1571"\w* \w so|strong="H3808"\w* \w are|strong="H1992"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w* \w snared|strong="H3369"\w* \w in|strong="H5921"\w* \w an|strong="H3588"\w* \w evil|strong="H7451"\w* \w time|strong="H6256"\w*, \w when|strong="H3588"\w* \w it|strong="H5921"\w* \w falls|strong="H5307"\w* \w suddenly|strong="H6597"\w* \w on|strong="H5921"\w* \w them|strong="H1992"\w*. +\p +\v 13 \w I|strong="H7200"\w* \w have|strong="H1571"\w* \w also|strong="H1571"\w* \w seen|strong="H7200"\w* \w wisdom|strong="H2451"\w* \w under|strong="H8478"\w* \w the|strong="H7200"\w* \w sun|strong="H8121"\w* \w in|strong="H1419"\w* \w this|strong="H1931"\w* way, \w and|strong="H1419"\w* \w it|strong="H1931"\w* \w seemed|strong="H7200"\w* \w great|strong="H1419"\w* \w to|strong="H7200"\w* \w me|strong="H7200"\w*. +\v 14 There \w was|strong="H5892"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w city|strong="H5892"\w*, \w and|strong="H4428"\w* \w few|strong="H4592"\w* \w men|strong="H1419"\w* \w within|strong="H5921"\w* \w it|strong="H5921"\w*; \w and|strong="H4428"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w king|strong="H4428"\w* \w came|strong="H4428"\w* \w against|strong="H5921"\w* \w it|strong="H5921"\w*, \w besieged|strong="H1129"\w* \w it|strong="H5921"\w*, \w and|strong="H4428"\w* \w built|strong="H1129"\w* \w great|strong="H1419"\w* \w bulwarks|strong="H4685"\w* \w against|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 15 Now \w a|strong="H3068"\w* \w poor|strong="H4542"\w* \w wise|strong="H2450"\w* \w man|strong="H2450"\w* \w was|strong="H1931"\w* \w found|strong="H4672"\w* \w in|strong="H5892"\w* \w it|strong="H1931"\w*, \w and|strong="H5892"\w* \w he|strong="H1931"\w* \w by|strong="H5892"\w* \w his|strong="H2142"\w* \w wisdom|strong="H2451"\w* \w delivered|strong="H4422"\w* \w the|strong="H2142"\w* \w city|strong="H5892"\w*; \w yet|strong="H3808"\w* \w no|strong="H3808"\w* \w man|strong="H2450"\w* \w remembered|strong="H2142"\w* \w that|strong="H1931"\w* \w same|strong="H1931"\w* \w poor|strong="H4542"\w* \w man|strong="H2450"\w*. +\v 16 \w Then|strong="H8085"\w* \w I|strong="H1697"\w* \w said|strong="H1697"\w*, “\w Wisdom|strong="H2451"\w* \w is|strong="H1697"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w strength|strong="H1369"\w*.” Nevertheless \w the|strong="H8085"\w* \w poor|strong="H4542"\w* \w man|strong="H2896"\w*’s \w wisdom|strong="H2451"\w* \w is|strong="H1697"\w* despised, \w and|strong="H2451"\w* \w his|strong="H8085"\w* \w words|strong="H1697"\w* \w are|strong="H1697"\w* \w not|strong="H8085"\w* \w heard|strong="H8085"\w*. +\v 17 \w The|strong="H8085"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H8085"\w* \w wise|strong="H2450"\w* \w heard|strong="H8085"\w* \w in|strong="H8085"\w* \w quiet|strong="H5183"\w* \w are|strong="H1697"\w* \w better|strong="H5183"\w* \w than|strong="H2450"\w* \w the|strong="H8085"\w* \w cry|strong="H2201"\w* \w of|strong="H1697"\w* \w him|strong="H8085"\w* \w who|strong="H2450"\w* \w rules|strong="H4910"\w* \w among|strong="H4910"\w* \w fools|strong="H3684"\w*. +\v 18 \w Wisdom|strong="H2451"\w* \w is|strong="H2896"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w weapons|strong="H3627"\w* \w of|strong="H3627"\w* \w war|strong="H7128"\w*; but \w one|strong="H2896"\w* \w sinner|strong="H2398"\w* destroys \w much|strong="H7235"\w* \w good|strong="H2896"\w*. +\c 10 +\q1 +\v 1 \w Dead|strong="H4194"\w* \w flies|strong="H2070"\w* cause \w the|strong="H4194"\w* \w oil|strong="H8081"\w* \w of|strong="H4194"\w* \w the|strong="H4194"\w* \w perfumer|strong="H7543"\w* \w to|strong="H3519"\w* produce an evil odor; +\q2 \w so|strong="H4592"\w* does \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w folly|strong="H5531"\w* outweigh \w wisdom|strong="H2451"\w* \w and|strong="H2451"\w* \w honor|strong="H3519"\w*. +\q1 +\v 2 \w A|strong="H3068"\w* \w wise|strong="H2450"\w* \w man|strong="H2450"\w*’s \w heart|strong="H3820"\w* \w is|strong="H3820"\w* at his \w right|strong="H3225"\w* \w hand|strong="H3225"\w*, +\q2 \w but|strong="H3225"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w*’s \w heart|strong="H3820"\w* at his \w left|strong="H8040"\w*. +\v 3 \w Yes|strong="H1571"\w* \w also|strong="H1571"\w* \w when|strong="H1980"\w* \w the|strong="H3605"\w* \w fool|strong="H5530"\w* \w walks|strong="H1980"\w* \w by|strong="H1870"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w*, \w his|strong="H3605"\w* \w understanding|strong="H3820"\w* fails \w him|strong="H1931"\w*, \w and|strong="H1980"\w* \w he|strong="H1931"\w* says \w to|strong="H1980"\w* \w everyone|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w fool|strong="H5530"\w*. +\v 4 \w If|strong="H3588"\w* \w the|strong="H5921"\w* \w spirit|strong="H7307"\w* \w of|strong="H7307"\w* \w the|strong="H5921"\w* \w ruler|strong="H4910"\w* \w rises|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w*, don’t \w leave|strong="H3240"\w* \w your|strong="H5921"\w* \w place|strong="H4725"\w*; \w for|strong="H3588"\w* gentleness lays \w great|strong="H1419"\w* \w offenses|strong="H2399"\w* \w to|strong="H5927"\w* rest. +\p +\v 5 \w There|strong="H3426"\w* \w is|strong="H3426"\w* \w an|strong="H7200"\w* \w evil|strong="H7451"\w* \w which|strong="H7451"\w* \w I|strong="H7200"\w* \w have|strong="H3426"\w* \w seen|strong="H7200"\w* \w under|strong="H8478"\w* \w the|strong="H6440"\w* \w sun|strong="H8121"\w*, \w the|strong="H6440"\w* sort \w of|strong="H6440"\w* \w error|strong="H7684"\w* \w which|strong="H7451"\w* \w proceeds|strong="H3318"\w* \w from|strong="H3318"\w* \w the|strong="H6440"\w* \w ruler|strong="H7989"\w*. +\v 6 \w Folly|strong="H5529"\w* \w is|strong="H5529"\w* \w set|strong="H5414"\w* \w in|strong="H3427"\w* \w great|strong="H7227"\w* \w dignity|strong="H4791"\w*, \w and|strong="H3427"\w* \w the|strong="H5414"\w* \w rich|strong="H6223"\w* \w sit|strong="H3427"\w* \w in|strong="H3427"\w* \w a|strong="H3068"\w* \w low|strong="H8216"\w* \w place|strong="H5414"\w*. +\v 7 \w I|strong="H5921"\w* \w have|strong="H5650"\w* \w seen|strong="H7200"\w* \w servants|strong="H5650"\w* \w on|strong="H5921"\w* \w horses|strong="H5483"\w*, \w and|strong="H1980"\w* \w princes|strong="H8269"\w* \w walking|strong="H1980"\w* \w like|strong="H1980"\w* \w servants|strong="H5650"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* earth. +\v 8 He who \w digs|strong="H2658"\w* \w a|strong="H3068"\w* \w pit|strong="H1475"\w* \w may|strong="H5175"\w* \w fall|strong="H5307"\w* \w into|strong="H5307"\w* \w it|strong="H2658"\w*; \w and|strong="H5307"\w* whoever \w breaks|strong="H6555"\w* \w through|strong="H6555"\w* \w a|strong="H3068"\w* \w wall|strong="H1447"\w* \w may|strong="H5175"\w* be \w bitten|strong="H5391"\w* \w by|strong="H5307"\w* \w a|strong="H3068"\w* \w snake|strong="H5175"\w*. +\v 9 Whoever carves \w out|strong="H5265"\w* stones may \w be|strong="H6086"\w* injured \w by|strong="H6086"\w* them. Whoever \w splits|strong="H1234"\w* \w wood|strong="H6086"\w* may \w be|strong="H6086"\w* \w endangered|strong="H5533"\w* \w by|strong="H6086"\w* it. +\v 10 \w If|strong="H7043"\w* \w the|strong="H6440"\w* ax \w is|strong="H1931"\w* \w blunt|strong="H6949"\w*, \w and|strong="H2451"\w* \w one|strong="H3808"\w* doesn’t \w sharpen|strong="H7043"\w* \w the|strong="H6440"\w* \w edge|strong="H6949"\w*, \w then|strong="H3808"\w* \w he|strong="H1931"\w* \w must|strong="H3808"\w* \w use|strong="H1931"\w* \w more|strong="H3808"\w* \w strength|strong="H2428"\w*; \w but|strong="H3808"\w* \w skill|strong="H2451"\w* brings \w success|strong="H3787"\w*. +\p +\v 11 If \w the|strong="H3808"\w* \w snake|strong="H5175"\w* \w bites|strong="H5391"\w* \w before|strong="H3808"\w* \w it|strong="H3808"\w* \w is|strong="H3956"\w* \w charmed|strong="H3908"\w*, \w then|strong="H3808"\w* \w is|strong="H3956"\w* there \w no|strong="H3808"\w* \w profit|strong="H3504"\w* \w for|strong="H3808"\w* \w the|strong="H3808"\w* \w charmer|strong="H1167"\w*’s \w tongue|strong="H3956"\w*. +\v 12 \w The|strong="H1697"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w a|strong="H3068"\w* \w wise|strong="H2450"\w* \w man|strong="H2450"\w*’s \w mouth|strong="H6310"\w* \w are|strong="H1697"\w* \w gracious|strong="H2580"\w*; \w but|strong="H1104"\w* \w a|strong="H3068"\w* \w fool|strong="H3684"\w* \w is|strong="H1697"\w* \w swallowed|strong="H1104"\w* \w by|strong="H8193"\w* \w his|strong="H6310"\w* own \w lips|strong="H8193"\w*. +\v 13 \w The|strong="H1697"\w* \w beginning|strong="H8462"\w* \w of|strong="H1697"\w* \w the|strong="H1697"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w his|strong="H6310"\w* \w mouth|strong="H6310"\w* \w is|strong="H1697"\w* \w foolishness|strong="H5531"\w*; \w and|strong="H1697"\w* \w the|strong="H1697"\w* \w end|strong="H6310"\w* \w of|strong="H1697"\w* \w his|strong="H6310"\w* \w talk|strong="H1697"\w* \w is|strong="H1697"\w* \w mischievous|strong="H7451"\w* \w madness|strong="H1948"\w*. +\v 14 \w A|strong="H3068"\w* \w fool|strong="H5530"\w* \w also|strong="H3045"\w* \w multiplies|strong="H7235"\w* \w words|strong="H1697"\w*. +\p \w Man|strong="H3045"\w* doesn’t \w know|strong="H3045"\w* \w what|strong="H4100"\w* \w will|strong="H4310"\w* \w be|strong="H1961"\w*; \w and|strong="H1697"\w* \w that|strong="H3045"\w* \w which|strong="H4310"\w* \w will|strong="H4310"\w* \w be|strong="H1961"\w* \w after|strong="H1961"\w* \w him|strong="H5046"\w*, \w who|strong="H4310"\w* \w can|strong="H4310"\w* \w tell|strong="H5046"\w* \w him|strong="H5046"\w*? +\v 15 \w The|strong="H3045"\w* \w labor|strong="H5999"\w* \w of|strong="H5892"\w* \w fools|strong="H3684"\w* \w wearies|strong="H3021"\w* \w every|strong="H3212"\w* \w one|strong="H3808"\w* \w of|strong="H5892"\w* \w them|strong="H3045"\w*; \w for|strong="H5892"\w* \w he|strong="H3808"\w* doesn’t \w know|strong="H3045"\w* \w how|strong="H3045"\w* \w to|strong="H3212"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H3045"\w* \w city|strong="H5892"\w*. +\q1 +\v 16 Woe \w to|strong="H4428"\w* \w you|strong="H1242"\w*, land, when \w your|strong="H4428"\w* \w king|strong="H4428"\w* \w is|strong="H4428"\w* \w a|strong="H3068"\w* \w child|strong="H5288"\w*, +\q2 \w and|strong="H4428"\w* \w your|strong="H4428"\w* \w princes|strong="H8269"\w* eat \w in|strong="H4428"\w* \w the|strong="H1242"\w* \w morning|strong="H1242"\w*! +\q1 +\v 17 Happy \w are|strong="H1121"\w* \w you|strong="H3808"\w*, land, \w when|strong="H6256"\w* \w your|strong="H3808"\w* \w king|strong="H4428"\w* \w is|strong="H4428"\w* \w the|strong="H3808"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w nobles|strong="H2715"\w*, +\q2 \w and|strong="H1121"\w* \w your|strong="H3808"\w* \w princes|strong="H8269"\w* eat \w in|strong="H4428"\w* due \w season|strong="H6256"\w*, +\q2 \w for|strong="H1121"\w* \w strength|strong="H1369"\w*, \w and|strong="H1121"\w* \w not|strong="H3808"\w* \w for|strong="H1121"\w* \w drunkenness|strong="H8358"\w*! +\q1 +\v 18 \w By|strong="H3027"\w* \w slothfulness|strong="H6103"\w* \w the|strong="H3027"\w* roof sinks \w in|strong="H1004"\w*; +\q2 \w and|strong="H3027"\w* \w through|strong="H3027"\w* \w idleness|strong="H8220"\w* \w of|strong="H1004"\w* \w the|strong="H3027"\w* \w hands|strong="H3027"\w* \w the|strong="H3027"\w* \w house|strong="H1004"\w* \w leaks|strong="H1811"\w*. +\q1 +\v 19 \w A|strong="H3068"\w* \w feast|strong="H3899"\w* \w is|strong="H3701"\w* \w made|strong="H6213"\w* \w for|strong="H6213"\w* \w laughter|strong="H7814"\w*, +\q2 \w and|strong="H6030"\w* \w wine|strong="H3196"\w* \w makes|strong="H6213"\w* \w the|strong="H3605"\w* \w life|strong="H2416"\w* \w glad|strong="H8055"\w*; +\q2 \w and|strong="H6030"\w* \w money|strong="H3701"\w* \w is|strong="H3701"\w* \w the|strong="H3605"\w* \w answer|strong="H6030"\w* \w for|strong="H6213"\w* \w all|strong="H3605"\w* \w things|strong="H3605"\w*. +\q1 +\v 20 Don’t \w curse|strong="H7043"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w*, no, \w not|strong="H3588"\w* \w in|strong="H4428"\w* \w your|strong="H3588"\w* \w thoughts|strong="H1697"\w*; +\q2 \w and|strong="H4428"\w* don’t \w curse|strong="H7043"\w* \w the|strong="H3588"\w* \w rich|strong="H6223"\w* \w in|strong="H4428"\w* \w your|strong="H3588"\w* \w bedroom|strong="H2315"\w*, +\q2 \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w bird|strong="H5775"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w sky|strong="H8064"\w* \w may|strong="H4428"\w* \w carry|strong="H3212"\w* \w your|strong="H3588"\w* \w voice|strong="H6963"\w*, +\q2 \w and|strong="H4428"\w* \w that|strong="H3588"\w* \w which|strong="H1697"\w* \w has|strong="H4428"\w* \w wings|strong="H3671"\w* \w may|strong="H4428"\w* \w tell|strong="H5046"\w* \w the|strong="H3588"\w* \w matter|strong="H1697"\w*. +\c 11 +\p +\v 1 \w Cast|strong="H7971"\w* \w your|strong="H5921"\w* \w bread|strong="H3899"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w waters|strong="H4325"\w*; +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3117"\w* \w find|strong="H4672"\w* \w it|strong="H5921"\w* \w after|strong="H5921"\w* \w many|strong="H7230"\w* \w days|strong="H3117"\w*. +\q1 +\v 2 \w Give|strong="H5414"\w* \w a|strong="H3068"\w* \w portion|strong="H2506"\w* \w to|strong="H1961"\w* \w seven|strong="H7651"\w*, \w yes|strong="H3588"\w*, \w even|strong="H1571"\w* \w to|strong="H1961"\w* \w eight|strong="H8083"\w*; +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* don’t \w know|strong="H3045"\w* \w what|strong="H4100"\w* \w evil|strong="H7451"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* earth. +\q1 +\v 3 If \w the|strong="H5921"\w* \w clouds|strong="H5645"\w* \w are|strong="H8033"\w* \w full|strong="H4390"\w* \w of|strong="H4390"\w* \w rain|strong="H1653"\w*, \w they|strong="H8033"\w* \w empty|strong="H7324"\w* \w themselves|strong="H4390"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* earth; +\q2 \w and|strong="H6086"\w* if \w a|strong="H3068"\w* \w tree|strong="H6086"\w* \w falls|strong="H5307"\w* \w toward|strong="H5921"\w* \w the|strong="H5921"\w* \w south|strong="H1864"\w*, \w or|strong="H6086"\w* \w toward|strong="H5921"\w* \w the|strong="H5921"\w* \w north|strong="H6828"\w*, +\q2 \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w the|strong="H5921"\w* \w tree|strong="H6086"\w* \w falls|strong="H5307"\w*, \w there|strong="H8033"\w* \w shall|strong="H6828"\w* \w it|strong="H5921"\w* \w be|strong="H1933"\w*. +\q1 +\v 4 \w He|strong="H3808"\w* \w who|strong="H8104"\w* \w observes|strong="H8104"\w* \w the|strong="H7200"\w* \w wind|strong="H7307"\w* won’t \w sow|strong="H2232"\w*; +\q2 \w and|strong="H7200"\w* \w he|strong="H3808"\w* \w who|strong="H8104"\w* \w regards|strong="H8104"\w* \w the|strong="H7200"\w* \w clouds|strong="H5645"\w* won’t \w reap|strong="H7114"\w*. +\q1 +\v 5 \w As|strong="H6213"\w* \w you|strong="H3605"\w* don’t \w know|strong="H3045"\w* \w what|strong="H4100"\w* \w is|strong="H4100"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w the|strong="H3605"\w* \w wind|strong="H7307"\w*, +\q2 \w nor|strong="H3808"\w* \w how|strong="H4100"\w* \w the|strong="H3605"\w* \w bones|strong="H6106"\w* grow \w in|strong="H6213"\w* \w the|strong="H3605"\w* womb \w of|strong="H1870"\w* \w her|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H4100"\w* \w with|strong="H6213"\w* \w child|strong="H4392"\w*; +\q2 \w even|strong="H3808"\w* \w so|strong="H6213"\w* \w you|strong="H3605"\w* don’t \w know|strong="H3045"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H1870"\w* \w God|strong="H3808"\w* \w who|strong="H3605"\w* \w does|strong="H6213"\w* \w all|strong="H3605"\w*. +\q1 +\v 6 \w In|strong="H3027"\w* \w the|strong="H3588"\w* \w morning|strong="H1242"\w* \w sow|strong="H2232"\w* \w your|strong="H3045"\w* \w seed|strong="H2233"\w*, +\q2 \w and|strong="H3027"\w* \w in|strong="H3027"\w* \w the|strong="H3588"\w* \w evening|strong="H6153"\w* don’t \w withhold|strong="H3240"\w* \w your|strong="H3045"\w* \w hand|strong="H3027"\w*; +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* don’t \w know|strong="H3045"\w* \w which|strong="H2088"\w* \w will|strong="H3027"\w* \w prosper|strong="H3787"\w*, \w whether|strong="H3045"\w* \w this|strong="H2088"\w* \w or|strong="H2896"\w* \w that|strong="H3588"\w*, +\q2 \w or|strong="H2896"\w* \w whether|strong="H3045"\w* \w they|strong="H3588"\w* \w both|strong="H8147"\w* \w will|strong="H3027"\w* \w be|strong="H3027"\w* equally \w good|strong="H2896"\w*. +\q1 +\v 7 Truly \w the|strong="H7200"\w* light \w is|strong="H2896"\w* \w sweet|strong="H4966"\w*, +\q2 \w and|strong="H5869"\w* \w it|strong="H7200"\w* \w is|strong="H2896"\w* \w a|strong="H3068"\w* \w pleasant|strong="H2896"\w* \w thing|strong="H2896"\w* \w for|strong="H5869"\w* \w the|strong="H7200"\w* \w eyes|strong="H5869"\w* \w to|strong="H7200"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w sun|strong="H8121"\w*. +\q1 +\v 8 \w Yes|strong="H3588"\w*, \w if|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w lives|strong="H2421"\w* \w many|strong="H7235"\w* \w years|strong="H8141"\w*, \w let|strong="H8055"\w* \w him|strong="H3605"\w* \w rejoice|strong="H8055"\w* \w in|strong="H8141"\w* \w them|strong="H8055"\w* \w all|strong="H3605"\w*; +\q2 \w but|strong="H3588"\w* \w let|strong="H8055"\w* \w him|strong="H3605"\w* \w remember|strong="H2142"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w darkness|strong="H2822"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w many|strong="H7235"\w*. +\q2 \w All|strong="H3605"\w* \w that|strong="H3588"\w* \w comes|strong="H1961"\w* \w is|strong="H3117"\w* \w vanity|strong="H1892"\w*. +\q1 +\v 9 \w Rejoice|strong="H8055"\w*, \w young|strong="H3117"\w* \w man|strong="H3605"\w*, \w in|strong="H5921"\w* \w your|strong="H3605"\w* \w youth|strong="H3208"\w*, +\q2 \w and|strong="H1980"\w* \w let|strong="H8055"\w* \w your|strong="H3605"\w* \w heart|strong="H3820"\w* \w cheer|strong="H3190"\w* \w you|strong="H3588"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H3605"\w* \w youth|strong="H3208"\w*, +\q2 \w and|strong="H1980"\w* \w walk|strong="H1980"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w ways|strong="H1870"\w* \w of|strong="H3117"\w* \w your|strong="H3605"\w* \w heart|strong="H3820"\w*, +\q2 \w and|strong="H1980"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H3117"\w* \w your|strong="H3605"\w* \w eyes|strong="H5869"\w*; +\q2 \w but|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w these|strong="H3605"\w* \w things|strong="H3605"\w* \w God|strong="H3190"\w* \w will|strong="H5869"\w* \w bring|strong="H1980"\w* \w you|strong="H3588"\w* \w into|strong="H1980"\w* \w judgment|strong="H4941"\w*. +\q1 +\v 10 \w Therefore|strong="H3588"\w* \w remove|strong="H5493"\w* \w sorrow|strong="H3708"\w* \w from|strong="H5493"\w* \w your|strong="H3588"\w* \w heart|strong="H3820"\w*, +\q2 \w and|strong="H1892"\w* \w put|strong="H5493"\w* \w away|strong="H5493"\w* \w evil|strong="H7451"\w* \w from|strong="H5493"\w* \w your|strong="H3588"\w* \w flesh|strong="H1320"\w*; +\q2 \w for|strong="H3588"\w* \w youth|strong="H3208"\w* \w and|strong="H1892"\w* \w the|strong="H3588"\w* dawn \w of|strong="H3820"\w* \w life|strong="H7839"\w* \w are|strong="H1320"\w* \w vanity|strong="H1892"\w*. +\c 12 +\p +\v 1 \w Remember|strong="H2142"\w* \w also|strong="H3117"\w* \w your|strong="H2142"\w* \w Creator|strong="H1254"\w* \w in|strong="H8141"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H2142"\w* youth, +\q2 \w before|strong="H5704"\w* \w the|strong="H3117"\w* \w evil|strong="H7451"\w* \w days|strong="H3117"\w* \w come|strong="H5060"\w*, \w and|strong="H3117"\w* \w the|strong="H3117"\w* \w years|strong="H8141"\w* \w draw|strong="H5060"\w* \w near|strong="H5060"\w*, +\q2 \w when|strong="H3117"\w* \w you|strong="H3117"\w* \w will|strong="H3808"\w* say, “\w I|strong="H3117"\w* \w have|strong="H3117"\w* \w no|strong="H3808"\w* \w pleasure|strong="H2656"\w* \w in|strong="H8141"\w* \w them|strong="H5704"\w*;” +\q1 +\v 2 \w Before|strong="H5704"\w* \w the|strong="H7725"\w* \w sun|strong="H8121"\w*, \w the|strong="H7725"\w* light, \w the|strong="H7725"\w* \w moon|strong="H3394"\w*, \w and|strong="H7725"\w* \w the|strong="H7725"\w* \w stars|strong="H3556"\w* \w are|strong="H5645"\w* \w darkened|strong="H2821"\w*, +\q2 \w and|strong="H7725"\w* \w the|strong="H7725"\w* \w clouds|strong="H5645"\w* \w return|strong="H7725"\w* \w after|strong="H5704"\w* \w the|strong="H7725"\w* \w rain|strong="H1653"\w*; +\q1 +\v 3 \w in|strong="H1004"\w* \w the|strong="H7200"\w* \w day|strong="H3117"\w* \w when|strong="H3588"\w* \w the|strong="H7200"\w* \w keepers|strong="H8104"\w* \w of|strong="H1004"\w* \w the|strong="H7200"\w* \w house|strong="H1004"\w* \w shall|strong="H1004"\w* \w tremble|strong="H2111"\w*, +\q2 \w and|strong="H3117"\w* \w the|strong="H7200"\w* \w strong|strong="H2428"\w* \w men|strong="H2428"\w* \w shall|strong="H1004"\w* \w bow|strong="H5791"\w* themselves, +\q2 \w and|strong="H3117"\w* \w the|strong="H7200"\w* \w grinders|strong="H2912"\w* cease \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H3117"\w* \w few|strong="H4592"\w*, +\q2 \w and|strong="H3117"\w* \w those|strong="H3588"\w* \w who|strong="H8104"\w* \w look|strong="H7200"\w* \w out|strong="H7200"\w* \w of|strong="H1004"\w* \w the|strong="H7200"\w* windows \w are|strong="H3117"\w* \w darkened|strong="H2821"\w*, +\q1 +\v 4 \w and|strong="H6965"\w* \w the|strong="H3605"\w* \w doors|strong="H1817"\w* \w shall|strong="H1323"\w* \w be|strong="H6963"\w* \w shut|strong="H5462"\w* \w in|strong="H6963"\w* \w the|strong="H3605"\w* \w street|strong="H7784"\w*; +\q2 \w when|strong="H6963"\w* \w the|strong="H3605"\w* \w sound|strong="H6963"\w* \w of|strong="H1323"\w* \w the|strong="H3605"\w* \w grinding|strong="H2913"\w* \w is|strong="H3605"\w* \w low|strong="H8217"\w*, +\q2 \w and|strong="H6965"\w* \w one|strong="H3605"\w* \w shall|strong="H1323"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w at|strong="H6965"\w* \w the|strong="H3605"\w* \w voice|strong="H6963"\w* \w of|strong="H1323"\w* \w a|strong="H3068"\w* \w bird|strong="H6833"\w*, +\q2 \w and|strong="H6965"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w music|strong="H7892"\w* \w shall|strong="H1323"\w* \w be|strong="H6963"\w* \w brought|strong="H7817"\w* \w low|strong="H8217"\w*; +\q1 +\v 5 \w yes|strong="H3588"\w*, \w they|strong="H3588"\w* \w shall|strong="H1004"\w* \w be|strong="H5769"\w* \w afraid|strong="H3372"\w* \w of|strong="H1004"\w* heights, +\q2 \w and|strong="H1980"\w* \w terrors|strong="H2849"\w* \w will|strong="H1571"\w* \w be|strong="H5769"\w* \w on|strong="H1980"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w*; +\q2 \w and|strong="H1980"\w* \w the|strong="H3588"\w* \w almond|strong="H8247"\w* \w tree|strong="H8247"\w* \w shall|strong="H1004"\w* blossom, +\q2 \w and|strong="H1980"\w* \w the|strong="H3588"\w* \w grasshopper|strong="H2284"\w* \w shall|strong="H1004"\w* \w be|strong="H5769"\w* \w a|strong="H3068"\w* \w burden|strong="H5445"\w*, +\q2 \w and|strong="H1980"\w* desire \w shall|strong="H1004"\w* \w fail|strong="H6565"\w*; +\q2 \w because|strong="H3588"\w* man \w goes|strong="H1980"\w* \w to|strong="H1980"\w* \w his|strong="H3588"\w* \w everlasting|strong="H5769"\w* \w home|strong="H1004"\w*, +\q2 \w and|strong="H1980"\w* \w the|strong="H3588"\w* \w mourners|strong="H5594"\w* \w go|strong="H1980"\w* \w about|strong="H5437"\w* \w the|strong="H3588"\w* \w streets|strong="H7784"\w*; +\q1 +\v 6 \w before|strong="H5921"\w* \w the|strong="H5921"\w* \w silver|strong="H3701"\w* \w cord|strong="H2256"\w* \w is|strong="H3701"\w* severed, +\q2 \w or|strong="H3808"\w* \w the|strong="H5921"\w* \w golden|strong="H2091"\w* \w bowl|strong="H1543"\w* \w is|strong="H3701"\w* \w broken|strong="H7665"\w*, +\q2 \w or|strong="H3808"\w* \w the|strong="H5921"\w* \w pitcher|strong="H3537"\w* \w is|strong="H3701"\w* \w broken|strong="H7665"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* spring, +\q2 \w or|strong="H3808"\w* \w the|strong="H5921"\w* \w wheel|strong="H1534"\w* \w broken|strong="H7665"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* cistern, +\q1 +\v 7 \w and|strong="H7725"\w* \w the|strong="H5921"\w* \w dust|strong="H6083"\w* \w returns|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H5921"\w* \w earth|strong="H6083"\w* \w as|strong="H1961"\w* \w it|strong="H5414"\w* \w was|strong="H1961"\w*, +\q2 \w and|strong="H7725"\w* \w the|strong="H5921"\w* \w spirit|strong="H7307"\w* \w returns|strong="H7725"\w* \w to|strong="H7725"\w* \w God|strong="H5414"\w* who \w gave|strong="H5414"\w* \w it|strong="H5414"\w*. +\q2 +\v 8 “\w Vanity|strong="H1892"\w* \w of|strong="H3605"\w* \w vanities|strong="H1892"\w*,” says \w the|strong="H3605"\w* \w Preacher|strong="H6953"\w*. +\q2 “\w All|strong="H3605"\w* \w is|strong="H3605"\w* \w vanity|strong="H1892"\w*!” +\p +\v 9 \w Further|strong="H5750"\w*, because \w the|strong="H1961"\w* \w Preacher|strong="H6953"\w* \w was|strong="H1961"\w* \w wise|strong="H2450"\w*, \w he|strong="H5971"\w* \w still|strong="H5750"\w* \w taught|strong="H3925"\w* \w the|strong="H1961"\w* \w people|strong="H5971"\w* \w knowledge|strong="H1847"\w*. Yes, \w he|strong="H5971"\w* \w pondered|strong="H2713"\w*, sought \w out|strong="H2713"\w*, \w and|strong="H5971"\w* set \w in|strong="H3925"\w* \w order|strong="H8626"\w* \w many|strong="H7235"\w* \w proverbs|strong="H4912"\w*. +\v 10 \w The|strong="H1697"\w* \w Preacher|strong="H6953"\w* \w sought|strong="H1245"\w* \w to|strong="H1245"\w* \w find|strong="H4672"\w* \w out|strong="H4672"\w* \w acceptable|strong="H2656"\w* \w words|strong="H1697"\w*, \w and|strong="H1697"\w* \w that|strong="H1697"\w* \w which|strong="H1697"\w* \w was|strong="H1697"\w* \w written|strong="H3789"\w* blamelessly, \w words|strong="H1697"\w* \w of|strong="H1697"\w* truth. +\v 11 \w The|strong="H5414"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H5414"\w* \w wise|strong="H2450"\w* \w are|strong="H1697"\w* \w like|strong="H1697"\w* \w goads|strong="H1861"\w*; \w and|strong="H1697"\w* \w like|strong="H1697"\w* \w nails|strong="H4930"\w* well \w fastened|strong="H5414"\w* \w are|strong="H1697"\w* \w words|strong="H1697"\w* \w from|strong="H1697"\w* \w the|strong="H5414"\w* \w masters|strong="H1167"\w* \w of|strong="H1697"\w* assemblies, \w which|strong="H1697"\w* \w are|strong="H1697"\w* \w given|strong="H5414"\w* \w from|strong="H1697"\w* \w one|strong="H1697"\w* \w shepherd|strong="H7462"\w*. +\v 12 Furthermore, \w my|strong="H6213"\w* \w son|strong="H1121"\w*, \w be|strong="H1121"\w* \w admonished|strong="H2094"\w*: \w of|strong="H1121"\w* \w making|strong="H6213"\w* \w many|strong="H7235"\w* \w books|strong="H5612"\w* \w there|strong="H1992"\w* \w is|strong="H1320"\w* \w no|strong="H6213"\w* \w end|strong="H7093"\w*; \w and|strong="H1121"\w* \w much|strong="H7235"\w* \w study|strong="H3854"\w* \w is|strong="H1320"\w* \w a|strong="H3068"\w* \w weariness|strong="H3024"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w flesh|strong="H1320"\w*. +\p +\v 13 \w This|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H3605"\w* \w end|strong="H5490"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w matter|strong="H1697"\w*. \w All|strong="H3605"\w* \w has|strong="H3588"\w* \w been|strong="H3605"\w* \w heard|strong="H8085"\w*. \w Fear|strong="H3372"\w* God \w and|strong="H8085"\w* \w keep|strong="H8104"\w* \w his|strong="H3605"\w* \w commandments|strong="H4687"\w*; \w for|strong="H3588"\w* \w this|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w duty|strong="H1697"\w* \w of|strong="H1697"\w* \w man|strong="H3605"\w*. +\v 14 \w For|strong="H3588"\w* God \w will|strong="H7451"\w* \w bring|strong="H7451"\w* \w every|strong="H3605"\w* \w work|strong="H4639"\w* \w into|strong="H5921"\w* \w judgment|strong="H4941"\w*, \w with|strong="H5921"\w* \w every|strong="H3605"\w* \w hidden|strong="H5956"\w* \w thing|strong="H2896"\w*, whether \w it|strong="H5921"\w* \w is|strong="H2896"\w* \w good|strong="H2896"\w*, \w or|strong="H2896"\w* whether \w it|strong="H5921"\w* \w is|strong="H2896"\w* \w evil|strong="H7451"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/23-SNGeng-web.usfm b/bibles/eng-web_usfm/23-SNGeng-web.usfm new file mode 100644 index 0000000..626aec0 --- /dev/null +++ b/bibles/eng-web_usfm/23-SNGeng-web.usfm @@ -0,0 +1,549 @@ +\id SNG World English Bible (WEB) +\ide UTF-8 +\h Song of Solomon +\toc1 The Song of Solomon +\toc2 Song of Solomon +\toc3 Sng +\mt1 The Song of Solomon +\c 1 +\p +\v 1 \w The|strong="H8010"\w* \w Song|strong="H7892"\w* \w of|strong="H7892"\w* \w songs|strong="H7892"\w*, which \w is|strong="H8010"\w* \w Solomon|strong="H8010"\w*’s. +\sp Beloved +\q1 +\v 2 Let \w him|strong="H2896"\w* \w kiss|strong="H5401"\w* \w me|strong="H3588"\w* \w with|strong="H6310"\w* \w the|strong="H3588"\w* \w kisses|strong="H5390"\w* \w of|strong="H6310"\w* \w his|strong="H3588"\w* \w mouth|strong="H6310"\w*; +\q2 \w for|strong="H3588"\w* \w your|strong="H3588"\w* \w love|strong="H1730"\w* \w is|strong="H2896"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w wine|strong="H3196"\w*. +\q1 +\v 3 \w Your|strong="H5921"\w* \w oils|strong="H8081"\w* \w have|strong="H5921"\w* \w a|strong="H3068"\w* \w pleasing|strong="H2896"\w* \w fragrance|strong="H7381"\w*. +\q2 \w Your|strong="H5921"\w* \w name|strong="H8034"\w* \w is|strong="H8034"\w* \w oil|strong="H8081"\w* \w poured|strong="H8081"\w* \w out|strong="H7324"\w*, +\q2 \w therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w virgins|strong="H5959"\w* love \w you|strong="H5921"\w*. +\q1 +\v 4 \w Take|strong="H2142"\w* \w me|strong="H4900"\w* \w away|strong="H4900"\w* \w with|strong="H4428"\w* \w you|strong="H8055"\w*. +\q2 \w Let|strong="H8055"\w*’s hurry. +\q2 \w The|strong="H2142"\w* \w king|strong="H4428"\w* \w has|strong="H4428"\w* \w brought|strong="H7323"\w* \w me|strong="H4900"\w* into \w his|strong="H2142"\w* \w rooms|strong="H2315"\w*. +\sp Friends +\q1 We \w will|strong="H4428"\w* \w be|strong="H4428"\w* \w glad|strong="H8055"\w* \w and|strong="H4428"\w* \w rejoice|strong="H8055"\w* \w in|strong="H4428"\w* \w you|strong="H8055"\w*. +\q2 We \w will|strong="H4428"\w* praise \w your|strong="H2142"\w* \w love|strong="H1730"\w* more \w than|strong="H4428"\w* \w wine|strong="H3196"\w*! +\sp Beloved +\q1 \w They|strong="H7323"\w* \w are|strong="H4428"\w* \w right|strong="H4339"\w* \w to|strong="H4428"\w* \w love|strong="H1730"\w* \w you|strong="H8055"\w*. +\q1 +\v 5 I am dark, \w but|strong="H7838"\w* \w lovely|strong="H5000"\w*, +\q2 you \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w Jerusalem|strong="H3389"\w*, +\q2 \w like|strong="H1323"\w* \w Kedar|strong="H6938"\w*’s tents, +\q2 \w like|strong="H1323"\w* \w Solomon|strong="H8010"\w*’s \w curtains|strong="H3407"\w*. +\q1 +\v 6 Don’t \w stare|strong="H7200"\w* \w at|strong="H7200"\w* \w me|strong="H7200"\w* because \w I|strong="H7760"\w* am \w dark|strong="H7840"\w*, +\q2 because \w the|strong="H7200"\w* \w sun|strong="H8121"\w* \w has|strong="H8121"\w* \w scorched|strong="H2787"\w* \w me|strong="H7200"\w*. +\q1 \w My|strong="H7760"\w* mother’s \w sons|strong="H1121"\w* \w were|strong="H1121"\w* \w angry|strong="H5201"\w* \w with|strong="H8121"\w* \w me|strong="H7200"\w*. +\q2 \w They|strong="H3808"\w* \w made|strong="H7760"\w* \w me|strong="H7200"\w* \w keeper|strong="H5201"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w vineyards|strong="H3754"\w*. +\q2 \w I|strong="H7760"\w* haven’t \w kept|strong="H5201"\w* \w my|strong="H7760"\w* own \w vineyard|strong="H3754"\w*. +\q1 +\v 7 \w Tell|strong="H5046"\w* \w me|strong="H5315"\w*, \w you|strong="H5921"\w* whom \w my|strong="H5921"\w* \w soul|strong="H5315"\w* loves, +\q2 \w where|strong="H4100"\w* \w you|strong="H5921"\w* \w graze|strong="H7462"\w* \w your|strong="H5921"\w* \w flock|strong="H5739"\w*, +\q2 \w where|strong="H4100"\w* \w you|strong="H5921"\w* \w rest|strong="H7257"\w* \w them|strong="H5921"\w* \w at|strong="H5921"\w* \w noon|strong="H6672"\w*; +\q2 \w for|strong="H5921"\w* \w why|strong="H4100"\w* \w should|strong="H4100"\w* \w I|strong="H5921"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w one|strong="H1961"\w* \w who|strong="H5315"\w* \w is|strong="H4100"\w* veiled +\q2 \w beside|strong="H5921"\w* \w the|strong="H5921"\w* \w flocks|strong="H5739"\w* \w of|strong="H5921"\w* \w your|strong="H5921"\w* \w companions|strong="H2270"\w*? +\sp Lover +\q1 +\v 8 If \w you|strong="H5921"\w* don’t \w know|strong="H3045"\w*, most \w beautiful|strong="H3303"\w* \w among|strong="H5921"\w* women, +\q2 follow \w the|strong="H5921"\w* tracks \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w sheep|strong="H6629"\w*. +\q2 \w Graze|strong="H7462"\w* \w your|strong="H5921"\w* \w young|strong="H1429"\w* \w goats|strong="H1429"\w* \w beside|strong="H5921"\w* \w the|strong="H5921"\w* \w shepherds|strong="H7462"\w*’ \w tents|strong="H4908"\w*. +\b +\q1 +\v 9 \w I|strong="H7393"\w* have \w compared|strong="H1819"\w* you, my \w love|strong="H7474"\w*, +\q2 \w to|strong="H1819"\w* \w a|strong="H3068"\w* steed \w in|strong="H7393"\w* \w Pharaoh|strong="H6547"\w*’s \w chariots|strong="H7393"\w*. +\q1 +\v 10 \w Your|strong="H4998"\w* \w cheeks|strong="H3895"\w* \w are|strong="H3895"\w* \w beautiful|strong="H4998"\w* \w with|strong="H6677"\w* earrings, +\q2 \w your|strong="H4998"\w* \w neck|strong="H6677"\w* \w with|strong="H6677"\w* \w strings|strong="H2737"\w* \w of|strong="H6677"\w* jewels. +\sp Friends +\q1 +\v 11 \w We|strong="H6213"\w* \w will|strong="H6213"\w* \w make|strong="H6213"\w* \w you|strong="H6213"\w* earrings \w of|strong="H6213"\w* \w gold|strong="H2091"\w*, +\q2 \w with|strong="H5973"\w* \w studs|strong="H5351"\w* \w of|strong="H6213"\w* \w silver|strong="H3701"\w*. +\sp Beloved +\q1 +\v 12 \w While|strong="H5704"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* sat \w at|strong="H4428"\w* \w his|strong="H5414"\w* \w table|strong="H4524"\w*, +\q2 \w my|strong="H5414"\w* \w perfume|strong="H7381"\w* \w spread|strong="H5414"\w* \w its|strong="H5414"\w* \w fragrance|strong="H7381"\w*. +\q1 +\v 13 My \w beloved|strong="H1730"\w* \w is|strong="H1730"\w* \w to|strong="H7699"\w* me \w a|strong="H3068"\w* sachet \w of|strong="H6872"\w* \w myrrh|strong="H4753"\w*, +\q2 \w that|strong="H3885"\w* \w lies|strong="H3885"\w* between my \w breasts|strong="H7699"\w*. +\q1 +\v 14 My \w beloved|strong="H1730"\w* \w is|strong="H1730"\w* \w to|strong="H3724"\w* me \w a|strong="H3068"\w* cluster \w of|strong="H3754"\w* \w henna|strong="H3724"\w* \w blossoms|strong="H1730"\w* +\q2 \w from|strong="H3754"\w* the \w vineyards|strong="H3754"\w* \w of|strong="H3754"\w* En Gedi. +\sp Lover +\q1 +\v 15 \w Behold|strong="H2005"\w*,\f + \fr 1:15 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w you|strong="H5869"\w* \w are|strong="H5869"\w* \w beautiful|strong="H3303"\w*, my \w love|strong="H7474"\w*. +\q2 \w Behold|strong="H2005"\w*, \w you|strong="H5869"\w* \w are|strong="H5869"\w* \w beautiful|strong="H3303"\w*. +\q2 \w Your|strong="H5869"\w* \w eyes|strong="H5869"\w* \w are|strong="H5869"\w* \w like|strong="H5869"\w* \w doves|strong="H3123"\w*. +\sp Beloved +\q1 +\v 16 \w Behold|strong="H2005"\w*, you are \w beautiful|strong="H3303"\w*, my \w beloved|strong="H1730"\w*, \w yes|strong="H2005"\w*, \w pleasant|strong="H5273"\w*; +\q2 \w and|strong="H3303"\w* our \w couch|strong="H6210"\w* \w is|strong="H1730"\w* verdant. +\sp Lover +\q1 +\v 17 \w The|strong="H1004"\w* \w beams|strong="H6982"\w* \w of|strong="H1004"\w* our \w house|strong="H1004"\w* \w are|strong="H1004"\w* cedars. +\q2 Our \w rafters|strong="H7351"\w* \w are|strong="H1004"\w* firs. +\c 2 +\sp Beloved +\q1 +\v 1 I am \w a|strong="H3068"\w* \w rose|strong="H2261"\w* \w of|strong="H6010"\w* \w Sharon|strong="H8289"\w*, +\q2 \w a|strong="H3068"\w* \w lily|strong="H7799"\w* \w of|strong="H6010"\w* the \w valleys|strong="H6010"\w*. +\sp Lover +\q1 +\v 2 \w As|strong="H3651"\w* \w a|strong="H3068"\w* \w lily|strong="H7799"\w* \w among|strong="H7799"\w* \w thorns|strong="H2336"\w*, +\q2 \w so|strong="H3651"\w* \w is|strong="H3651"\w* \w my|strong="H3651"\w* \w love|strong="H7474"\w* \w among|strong="H7799"\w* \w the|strong="H3651"\w* \w daughters|strong="H1323"\w*. +\sp Beloved +\q1 +\v 3 \w As|strong="H3651"\w* \w the|strong="H3651"\w* \w apple|strong="H8598"\w* \w tree|strong="H6086"\w* \w among|strong="H3427"\w* \w the|strong="H3651"\w* \w trees|strong="H6086"\w* \w of|strong="H1121"\w* \w the|strong="H3651"\w* \w wood|strong="H6086"\w*, +\q2 \w so|strong="H3651"\w* \w is|strong="H3651"\w* \w my|strong="H3651"\w* \w beloved|strong="H1730"\w* \w among|strong="H3427"\w* \w the|strong="H3651"\w* \w sons|strong="H1121"\w*. +\q1 \w I|strong="H3651"\w* \w sat|strong="H3427"\w* \w down|strong="H3427"\w* \w under|strong="H3427"\w* \w his|strong="H3427"\w* \w shadow|strong="H6738"\w* \w with|strong="H3427"\w* \w great|strong="H2530"\w* \w delight|strong="H2530"\w*, +\q2 \w his|strong="H3427"\w* \w fruit|strong="H6529"\w* \w was|strong="H1121"\w* \w sweet|strong="H4966"\w* \w to|strong="H1121"\w* \w my|strong="H3651"\w* \w taste|strong="H2441"\w*. +\q1 +\v 4 \w He|strong="H1004"\w* brought \w me|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w banquet|strong="H3196"\w* \w hall|strong="H1004"\w*. +\q2 \w His|strong="H5921"\w* \w banner|strong="H1714"\w* \w over|strong="H5921"\w* \w me|strong="H5921"\w* \w is|strong="H1004"\w* love. +\q1 +\v 5 Strengthen \w me|strong="H5564"\w* \w with|strong="H2470"\w* raisins, +\q2 \w refresh|strong="H7502"\w* \w me|strong="H5564"\w* \w with|strong="H2470"\w* \w apples|strong="H8598"\w*; +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H2470"\w* \w faint|strong="H2470"\w* \w with|strong="H2470"\w* love. +\q1 +\v 6 \w His|strong="H8478"\w* \w left|strong="H8040"\w* \w hand|strong="H3225"\w* \w is|strong="H7218"\w* \w under|strong="H8478"\w* \w my|strong="H8478"\w* \w head|strong="H7218"\w*. +\q2 \w His|strong="H8478"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* embraces \w me|strong="H8478"\w*. +\q1 +\v 7 \w I|strong="H5704"\w* \w adjure|strong="H7650"\w* \w you|strong="H5704"\w*, \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w Jerusalem|strong="H3389"\w*, +\q2 \w by|strong="H7650"\w* \w the|strong="H5704"\w* \w roes|strong="H6643"\w*, \w or|strong="H5704"\w* \w by|strong="H7650"\w* \w the|strong="H5704"\w* hinds \w of|strong="H1323"\w* \w the|strong="H5704"\w* \w field|strong="H7704"\w*, +\q2 \w that|strong="H5704"\w* \w you|strong="H5704"\w* \w not|strong="H2654"\w* \w stir|strong="H5782"\w* \w up|strong="H5782"\w*, nor \w awaken|strong="H5782"\w* \w love|strong="H5782"\w*, +\q2 \w until|strong="H5704"\w* \w it|strong="H5704"\w* \w so|strong="H7650"\w* \w desires|strong="H2654"\w*. +\b +\q1 +\v 8 \w The|strong="H5921"\w* \w voice|strong="H6963"\w* \w of|strong="H2022"\w* \w my|strong="H5921"\w* \w beloved|strong="H1730"\w*! +\q2 \w Behold|strong="H2009"\w*, \w he|strong="H5921"\w* comes, +\q2 \w leaping|strong="H1801"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w*, +\q2 \w skipping|strong="H7092"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w hills|strong="H1389"\w*. +\q1 +\v 9 \w My|strong="H4480"\w* \w beloved|strong="H1730"\w* \w is|strong="H2088"\w* \w like|strong="H1819"\w* \w a|strong="H3068"\w* \w roe|strong="H6643"\w* \w or|strong="H4480"\w* \w a|strong="H3068"\w* \w young|strong="H6082"\w* deer. +\q2 \w Behold|strong="H2009"\w*, \w he|strong="H4480"\w* \w stands|strong="H5975"\w* \w behind|strong="H4480"\w* \w our|strong="H4480"\w* \w wall|strong="H3796"\w*! +\q1 \w He|strong="H4480"\w* \w looks|strong="H7688"\w* \w in|strong="H5975"\w* \w at|strong="H5975"\w* \w the|strong="H4480"\w* \w windows|strong="H2474"\w*. +\q2 \w He|strong="H4480"\w* glances \w through|strong="H4480"\w* \w the|strong="H4480"\w* \w lattice|strong="H2762"\w*. +\b +\q1 +\v 10 \w My|strong="H6965"\w* \w beloved|strong="H1730"\w* \w spoke|strong="H6030"\w*, \w and|strong="H6965"\w* \w said|strong="H6030"\w* \w to|strong="H3212"\w* \w me|strong="H6030"\w*, +\q2 “\w Rise|strong="H6965"\w* \w up|strong="H6965"\w*, \w my|strong="H6965"\w* \w love|strong="H1730"\w*, \w my|strong="H6965"\w* \w beautiful|strong="H3303"\w* \w one|strong="H3303"\w*, \w and|strong="H6965"\w* \w come|strong="H3212"\w* \w away|strong="H3212"\w*. +\q1 +\v 11 \w For|strong="H3588"\w* \w behold|strong="H2009"\w*, \w the|strong="H3588"\w* \w winter|strong="H5638"\w* \w is|strong="H2009"\w* \w past|strong="H5674"\w*. +\q2 \w The|strong="H3588"\w* \w rain|strong="H1653"\w* \w is|strong="H2009"\w* \w over|strong="H5674"\w* \w and|strong="H1980"\w* \w gone|strong="H1980"\w*. +\q1 +\v 12 \w The|strong="H8085"\w* \w flowers|strong="H5339"\w* \w appear|strong="H7200"\w* \w on|strong="H7200"\w* \w the|strong="H8085"\w* earth. +\q2 \w The|strong="H8085"\w* \w time|strong="H6256"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* singing \w has|strong="H6256"\w* \w come|strong="H5060"\w*, +\q2 \w and|strong="H6963"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w turtledove|strong="H8449"\w* \w is|strong="H6963"\w* \w heard|strong="H8085"\w* \w in|strong="H8085"\w* \w our|strong="H7200"\w* land. +\q1 +\v 13 \w The|strong="H5414"\w* \w fig|strong="H8384"\w* \w tree|strong="H8384"\w* ripens \w her|strong="H5414"\w* green \w figs|strong="H8384"\w*. +\q2 \w The|strong="H5414"\w* \w vines|strong="H1612"\w* are \w in|strong="H3212"\w* \w blossom|strong="H5563"\w*. +\q2 \w They|strong="H5414"\w* \w give|strong="H5414"\w* \w out|strong="H5414"\w* \w their|strong="H5414"\w* \w fragrance|strong="H7381"\w*. +\q1 \w Arise|strong="H6965"\w*, \w my|strong="H5414"\w* \w love|strong="H7474"\w*, \w my|strong="H5414"\w* \w beautiful|strong="H3303"\w* \w one|strong="H3303"\w*, +\q2 \w and|strong="H6965"\w* \w come|strong="H3212"\w* \w away|strong="H3212"\w*.” +\sp Lover +\q1 +\v 14 \w My|strong="H8085"\w* \w dove|strong="H3123"\w* \w in|strong="H8085"\w* \w the|strong="H8085"\w* \w clefts|strong="H2288"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w rock|strong="H5553"\w*, +\q2 \w in|strong="H8085"\w* \w the|strong="H8085"\w* \w hiding|strong="H5643"\w* \w places|strong="H4095"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* mountainside, +\q2 let \w me|strong="H7200"\w* \w see|strong="H7200"\w* \w your|strong="H7200"\w* \w face|strong="H4758"\w*. +\q2 Let \w me|strong="H7200"\w* \w hear|strong="H8085"\w* \w your|strong="H7200"\w* \w voice|strong="H6963"\w*; +\q2 \w for|strong="H3588"\w* \w your|strong="H7200"\w* \w voice|strong="H6963"\w* \w is|strong="H6963"\w* \w sweet|strong="H6156"\w* \w and|strong="H6963"\w* \w your|strong="H7200"\w* \w face|strong="H4758"\w* \w is|strong="H6963"\w* \w lovely|strong="H5000"\w*. +\q1 +\v 15 Catch \w for|strong="H3754"\w* us \w the|strong="H2254"\w* \w foxes|strong="H7776"\w*, +\q2 \w the|strong="H2254"\w* \w little|strong="H6996"\w* \w foxes|strong="H7776"\w* that plunder \w the|strong="H2254"\w* \w vineyards|strong="H3754"\w*; +\q2 \w for|strong="H3754"\w* our \w vineyards|strong="H3754"\w* are in \w blossom|strong="H5563"\w*. +\sp Beloved +\q1 +\v 16 \w My|strong="H7462"\w* \w beloved|strong="H1730"\w* \w is|strong="H1730"\w* mine, \w and|strong="H7462"\w* I am \w his|strong="H7462"\w*. +\q2 He browses \w among|strong="H7799"\w* \w the|strong="H7462"\w* \w lilies|strong="H7799"\w*. +\q1 +\v 17 \w Until|strong="H5704"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w is|strong="H3117"\w* \w cool|strong="H6315"\w*, \w and|strong="H3117"\w* \w the|strong="H5921"\w* \w shadows|strong="H6752"\w* \w flee|strong="H5127"\w* \w away|strong="H5127"\w*, +\q2 \w turn|strong="H5437"\w*, \w my|strong="H5921"\w* \w beloved|strong="H1730"\w*, +\q2 \w and|strong="H3117"\w* \w be|strong="H3117"\w* \w like|strong="H1819"\w* \w a|strong="H3068"\w* \w roe|strong="H6643"\w* \w or|strong="H5704"\w* \w a|strong="H3068"\w* \w young|strong="H6082"\w* deer \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w* \w of|strong="H3117"\w* \w Bether|strong="H1336"\w*. +\c 3 +\p +\v 1 \w By|strong="H5921"\w* \w night|strong="H3915"\w* \w on|strong="H5921"\w* \w my|strong="H5921"\w* \w bed|strong="H4904"\w*, +\q2 \w I|strong="H5921"\w* \w sought|strong="H1245"\w* \w him|strong="H5921"\w* whom \w my|strong="H5921"\w* \w soul|strong="H5315"\w* loves. +\q2 \w I|strong="H5921"\w* \w sought|strong="H1245"\w* \w him|strong="H5921"\w*, \w but|strong="H3808"\w* \w I|strong="H5921"\w* didn’t \w find|strong="H4672"\w* \w him|strong="H5921"\w*. +\q1 +\v 2 \w I|strong="H5315"\w* \w will|strong="H5315"\w* \w get|strong="H6965"\w* \w up|strong="H6965"\w* \w now|strong="H4994"\w*, \w and|strong="H6965"\w* \w go|strong="H5437"\w* \w about|strong="H5437"\w* \w the|strong="H6965"\w* \w city|strong="H5892"\w*; +\q2 \w in|strong="H5315"\w* \w the|strong="H6965"\w* \w streets|strong="H7339"\w* \w and|strong="H6965"\w* \w in|strong="H5315"\w* \w the|strong="H6965"\w* \w squares|strong="H7339"\w* \w I|strong="H5315"\w* \w will|strong="H5315"\w* \w seek|strong="H1245"\w* \w him|strong="H4672"\w* whom \w my|strong="H1245"\w* \w soul|strong="H5315"\w* loves. +\q2 \w I|strong="H5315"\w* \w sought|strong="H1245"\w* \w him|strong="H4672"\w*, \w but|strong="H3808"\w* \w I|strong="H5315"\w* didn’t \w find|strong="H4672"\w* \w him|strong="H4672"\w*. +\q1 +\v 3 \w The|strong="H7200"\w* \w watchmen|strong="H8104"\w* \w who|strong="H5315"\w* \w go|strong="H5437"\w* \w about|strong="H5437"\w* \w the|strong="H7200"\w* \w city|strong="H5892"\w* \w found|strong="H4672"\w* \w me|strong="H5315"\w*; +\q2 “\w Have|strong="H4672"\w* \w you|strong="H7200"\w* \w seen|strong="H7200"\w* \w him|strong="H4672"\w* whom \w my|strong="H8104"\w* \w soul|strong="H5315"\w* loves?” +\q1 +\v 4 \w I|strong="H5704"\w* \w had|strong="H4672"\w* \w scarcely|strong="H4592"\w* \w passed|strong="H5674"\w* \w from|strong="H5315"\w* \w them|strong="H1992"\w*, +\q2 \w when|strong="H5704"\w* \w I|strong="H5704"\w* \w found|strong="H4672"\w* \w him|strong="H4672"\w* \w whom|strong="H1992"\w* \w my|strong="H5674"\w* \w soul|strong="H5315"\w* loves. +\q1 \w I|strong="H5704"\w* held \w him|strong="H4672"\w*, \w and|strong="H1004"\w* \w would|strong="H5315"\w* \w not|strong="H3808"\w* \w let|strong="H7503"\w* \w him|strong="H4672"\w* \w go|strong="H5674"\w*, +\q2 \w until|strong="H5704"\w* \w I|strong="H5704"\w* \w had|strong="H4672"\w* \w brought|strong="H5674"\w* \w him|strong="H4672"\w* \w into|strong="H5704"\w* \w my|strong="H5674"\w* mother’s \w house|strong="H1004"\w*, +\q2 \w into|strong="H5704"\w* \w the|strong="H5704"\w* \w room|strong="H2315"\w* \w of|strong="H1004"\w* \w her|strong="H4672"\w* \w who|strong="H5315"\w* \w conceived|strong="H2029"\w* \w me|strong="H5315"\w*. +\b +\q1 +\v 5 \w I|strong="H5704"\w* \w adjure|strong="H7650"\w* \w you|strong="H5704"\w*, \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w Jerusalem|strong="H3389"\w*, +\q2 \w by|strong="H7650"\w* \w the|strong="H5704"\w* \w roes|strong="H6643"\w*, \w or|strong="H5704"\w* \w by|strong="H7650"\w* \w the|strong="H5704"\w* hinds \w of|strong="H1323"\w* \w the|strong="H5704"\w* \w field|strong="H7704"\w*, +\q2 \w that|strong="H5704"\w* \w you|strong="H5704"\w* \w not|strong="H2654"\w* \w stir|strong="H5782"\w* \w up|strong="H5782"\w* nor \w awaken|strong="H5782"\w* \w love|strong="H5782"\w*, +\q2 \w until|strong="H5704"\w* \w it|strong="H5704"\w* \w so|strong="H7650"\w* \w desires|strong="H2654"\w*. +\b +\q1 +\v 6 \w Who|strong="H4310"\w* \w is|strong="H4310"\w* \w this|strong="H2063"\w* \w who|strong="H4310"\w* \w comes|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* \w like|strong="H4057"\w* \w pillars|strong="H8490"\w* \w of|strong="H4057"\w* \w smoke|strong="H6227"\w*, +\q2 \w perfumed|strong="H6999"\w* \w with|strong="H5927"\w* \w myrrh|strong="H4753"\w* \w and|strong="H5927"\w* \w frankincense|strong="H3828"\w*, +\q2 \w with|strong="H5927"\w* \w all|strong="H3605"\w* spices \w of|strong="H4057"\w* \w the|strong="H3605"\w* \w merchant|strong="H7402"\w*? +\q1 +\v 7 \w Behold|strong="H2009"\w*, \w it|strong="H5439"\w* \w is|strong="H3478"\w* \w Solomon|strong="H8010"\w*’s carriage! +\q2 \w Sixty|strong="H8346"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w are|strong="H3478"\w* \w around|strong="H5439"\w* \w it|strong="H5439"\w*, +\q2 \w of|strong="H1368"\w* \w the|strong="H5439"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H1368"\w* \w Israel|strong="H3478"\w*. +\q1 +\v 8 \w They|strong="H5921"\w* \w all|strong="H3605"\w* handle \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w and|strong="H2719"\w* \w are|strong="H4421"\w* \w expert|strong="H3925"\w* \w in|strong="H5921"\w* \w war|strong="H4421"\w*. +\q2 \w Every|strong="H3605"\w* \w man|strong="H3605"\w* \w has|strong="H2719"\w* \w his|strong="H3605"\w* \w sword|strong="H2719"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w thigh|strong="H3409"\w*, +\q2 \w because|strong="H5921"\w* \w of|strong="H5921"\w* \w fear|strong="H6343"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w night|strong="H3915"\w*. +\b +\q1 +\v 9 \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w made|strong="H6213"\w* \w himself|strong="H6213"\w* \w a|strong="H3068"\w* carriage +\q2 \w of|strong="H4428"\w* \w the|strong="H6213"\w* \w wood|strong="H6086"\w* \w of|strong="H4428"\w* \w Lebanon|strong="H3844"\w*. +\q1 +\v 10 \w He|strong="H6213"\w* \w made|strong="H6213"\w* \w its|strong="H6213"\w* \w pillars|strong="H5982"\w* \w of|strong="H1323"\w* \w silver|strong="H3701"\w*, +\q2 \w its|strong="H6213"\w* \w bottom|strong="H7507"\w* \w of|strong="H1323"\w* \w gold|strong="H2091"\w*, \w its|strong="H6213"\w* \w seat|strong="H4817"\w* \w of|strong="H1323"\w* purple, +\q2 \w the|strong="H6213"\w* \w middle|strong="H8432"\w* \w of|strong="H1323"\w* \w it|strong="H6213"\w* being \w paved|strong="H7528"\w* \w with|strong="H6213"\w* love, +\q2 \w from|strong="H2091"\w* \w the|strong="H6213"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w Jerusalem|strong="H3389"\w*. +\q1 +\v 11 \w Go|strong="H3318"\w* \w out|strong="H3318"\w*, \w you|strong="H3117"\w* \w daughters|strong="H1323"\w* \w of|strong="H4428"\w* \w Zion|strong="H6726"\w*, \w and|strong="H4428"\w* \w see|strong="H7200"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w*, +\q2 \w with|strong="H3318"\w* \w the|strong="H7200"\w* \w crown|strong="H5850"\w* \w with|strong="H3318"\w* \w which|strong="H1323"\w* \w his|strong="H7200"\w* mother \w has|strong="H4428"\w* \w crowned|strong="H5849"\w* \w him|strong="H7200"\w*, +\q2 \w in|strong="H4428"\w* \w the|strong="H7200"\w* \w day|strong="H3117"\w* \w of|strong="H4428"\w* \w his|strong="H7200"\w* weddings, +\q2 \w in|strong="H4428"\w* \w the|strong="H7200"\w* \w day|strong="H3117"\w* \w of|strong="H4428"\w* \w the|strong="H7200"\w* \w gladness|strong="H8057"\w* \w of|strong="H4428"\w* \w his|strong="H7200"\w* \w heart|strong="H3820"\w*. +\c 4 +\sp Lover +\p +\v 1 \w Behold|strong="H2005"\w*, \w you|strong="H5869"\w* \w are|strong="H5869"\w* \w beautiful|strong="H3303"\w*, \w my|strong="H1157"\w* \w love|strong="H7474"\w*. +\q2 \w Behold|strong="H2005"\w*, \w you|strong="H5869"\w* \w are|strong="H5869"\w* \w beautiful|strong="H3303"\w*. +\q1 \w Your|strong="H5869"\w* \w eyes|strong="H5869"\w* \w are|strong="H5869"\w* \w like|strong="H2022"\w* \w doves|strong="H3123"\w* \w behind|strong="H1157"\w* \w your|strong="H5869"\w* \w veil|strong="H6777"\w*. +\q2 \w Your|strong="H5869"\w* \w hair|strong="H8181"\w* \w is|strong="H5869"\w* \w as|strong="H3303"\w* \w a|strong="H3068"\w* \w flock|strong="H5739"\w* \w of|strong="H2022"\w* \w goats|strong="H5795"\w*, +\q2 \w that|strong="H2022"\w* descend \w from|strong="H5869"\w* \w Mount|strong="H2022"\w* \w Gilead|strong="H1568"\w*. +\q1 +\v 2 \w Your|strong="H3605"\w* \w teeth|strong="H8127"\w* \w are|strong="H8127"\w* \w like|strong="H5927"\w* \w a|strong="H3068"\w* newly \w shorn|strong="H7094"\w* \w flock|strong="H5739"\w*, +\q2 \w which|strong="H3605"\w* \w have|strong="H3605"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w washing|strong="H7367"\w*, +\q2 \w where|strong="H4480"\w* \w every|strong="H3605"\w* \w one|strong="H3605"\w* \w of|strong="H4480"\w* \w them|strong="H5927"\w* \w has|strong="H3605"\w* \w twins|strong="H8382"\w*. +\q2 \w None|strong="H3605"\w* \w is|strong="H3605"\w* \w bereaved|strong="H7909"\w* \w among|strong="H4480"\w* \w them|strong="H5927"\w*. +\q1 +\v 3 \w Your|strong="H1157"\w* \w lips|strong="H8193"\w* \w are|strong="H8193"\w* \w like|strong="H4057"\w* \w scarlet|strong="H8144"\w* \w thread|strong="H2339"\w*. +\q2 \w Your|strong="H1157"\w* \w mouth|strong="H4057"\w* \w is|strong="H8193"\w* \w lovely|strong="H5000"\w*. +\q2 \w Your|strong="H1157"\w* \w temples|strong="H7541"\w* \w are|strong="H8193"\w* \w like|strong="H4057"\w* \w a|strong="H3068"\w* \w piece|strong="H6400"\w* \w of|strong="H4057"\w* \w a|strong="H3068"\w* \w pomegranate|strong="H7416"\w* \w behind|strong="H1157"\w* \w your|strong="H1157"\w* \w veil|strong="H6777"\w*. +\q1 +\v 4 \w Your|strong="H3605"\w* \w neck|strong="H6677"\w* \w is|strong="H3605"\w* \w like|strong="H5921"\w* \w David|strong="H1732"\w*’s \w tower|strong="H4026"\w* \w built|strong="H1129"\w* \w for|strong="H5921"\w* \w an|strong="H1129"\w* armory, +\q2 \w on|strong="H5921"\w* \w which|strong="H1368"\w* \w a|strong="H3068"\w* thousand \w shields|strong="H4043"\w* \w hang|strong="H8518"\w*, +\q2 \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w shields|strong="H4043"\w* \w of|strong="H1368"\w* \w the|strong="H3605"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w*. +\q1 +\v 5 \w Your|strong="H7462"\w* \w two|strong="H8147"\w* \w breasts|strong="H7699"\w* \w are|strong="H7699"\w* \w like|strong="H7799"\w* \w two|strong="H8147"\w* \w fawns|strong="H6082"\w* +\q2 \w that|strong="H7462"\w* \w are|strong="H7699"\w* \w twins|strong="H8380"\w* \w of|strong="H8147"\w* \w a|strong="H3068"\w* roe, +\q2 which \w feed|strong="H7462"\w* \w among|strong="H7799"\w* \w the|strong="H7462"\w* \w lilies|strong="H7799"\w*. +\b +\q1 +\v 6 \w Until|strong="H5704"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w is|strong="H3117"\w* \w cool|strong="H6315"\w*, \w and|strong="H3117"\w* \w the|strong="H3117"\w* \w shadows|strong="H6752"\w* \w flee|strong="H5127"\w* \w away|strong="H3212"\w*, +\q2 \w I|strong="H3117"\w* \w will|strong="H2022"\w* \w go|strong="H3212"\w* \w to|strong="H5704"\w* \w the|strong="H3117"\w* \w mountain|strong="H2022"\w* \w of|strong="H3117"\w* \w myrrh|strong="H4753"\w*, +\q2 \w to|strong="H5704"\w* \w the|strong="H3117"\w* \w hill|strong="H2022"\w* \w of|strong="H3117"\w* \w frankincense|strong="H3828"\w*. +\b +\q1 +\v 7 \w You|strong="H3605"\w* are \w all|strong="H3605"\w* \w beautiful|strong="H3303"\w*, \w my|strong="H3605"\w* \w love|strong="H7474"\w*. +\q2 \w There|strong="H3605"\w* \w is|strong="H3605"\w* \w no|strong="H3605"\w* \w spot|strong="H3971"\w* \w in|strong="H3303"\w* \w you|strong="H3605"\w*. +\q1 +\v 8 Come \w with|strong="H7218"\w* \w me|strong="H7789"\w* \w from|strong="H7218"\w* \w Lebanon|strong="H3844"\w*, \w my|strong="H7789"\w* \w bride|strong="H3618"\w*, +\q2 \w with|strong="H7218"\w* \w me|strong="H7789"\w* \w from|strong="H7218"\w* \w Lebanon|strong="H3844"\w*. +\q2 \w Look|strong="H7789"\w* \w from|strong="H7218"\w* \w the|strong="H7218"\w* \w top|strong="H7218"\w* \w of|strong="H7218"\w* Amana, +\q2 \w from|strong="H7218"\w* \w the|strong="H7218"\w* \w top|strong="H7218"\w* \w of|strong="H7218"\w* \w Senir|strong="H8149"\w* \w and|strong="H7218"\w* \w Hermon|strong="H2768"\w*, +\q2 \w from|strong="H7218"\w* \w the|strong="H7218"\w* lions’ \w dens|strong="H4585"\w*, +\q2 \w from|strong="H7218"\w* \w the|strong="H7218"\w* \w mountains|strong="H2042"\w* \w of|strong="H7218"\w* \w the|strong="H7218"\w* \w leopards|strong="H5246"\w*. +\b +\q1 +\v 9 \w You|strong="H5869"\w* \w have|strong="H5869"\w* ravished my \w heart|strong="H3823"\w*, my sister, my \w bride|strong="H3618"\w*. +\q2 \w You|strong="H5869"\w* \w have|strong="H5869"\w* ravished my \w heart|strong="H3823"\w* \w with|strong="H5869"\w* one \w of|strong="H5869"\w* \w your|strong="H5869"\w* \w eyes|strong="H5869"\w*, +\q2 \w with|strong="H5869"\w* one \w chain|strong="H6060"\w* \w of|strong="H5869"\w* \w your|strong="H5869"\w* \w neck|strong="H6677"\w*. +\q1 +\v 10 \w How|strong="H4100"\w* \w beautiful|strong="H3302"\w* \w is|strong="H4100"\w* \w your|strong="H3605"\w* \w love|strong="H1730"\w*, \w my|strong="H3605"\w* sister, \w my|strong="H3605"\w* \w bride|strong="H3618"\w*! +\q2 \w How|strong="H4100"\w* \w much|strong="H4100"\w* \w better|strong="H2895"\w* \w is|strong="H4100"\w* \w your|strong="H3605"\w* \w love|strong="H1730"\w* \w than|strong="H3605"\w* \w wine|strong="H3196"\w*, +\q2 \w the|strong="H3605"\w* \w fragrance|strong="H7381"\w* \w of|strong="H3605"\w* \w your|strong="H3605"\w* perfumes \w than|strong="H3605"\w* \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H3605"\w* \w spices|strong="H1314"\w*! +\q1 +\v 11 \w Your|strong="H8478"\w* \w lips|strong="H8193"\w*, \w my|strong="H8478"\w* \w bride|strong="H3618"\w*, \w drip|strong="H5197"\w* \w like|strong="H7381"\w* \w the|strong="H8478"\w* \w honeycomb|strong="H5317"\w*. +\q2 \w Honey|strong="H1706"\w* \w and|strong="H2461"\w* \w milk|strong="H2461"\w* \w are|strong="H8193"\w* \w under|strong="H8478"\w* \w your|strong="H8478"\w* \w tongue|strong="H3956"\w*. +\q2 \w The|strong="H8478"\w* \w smell|strong="H7381"\w* \w of|strong="H8478"\w* \w your|strong="H8478"\w* \w garments|strong="H8008"\w* \w is|strong="H3956"\w* \w like|strong="H7381"\w* \w the|strong="H8478"\w* \w smell|strong="H7381"\w* \w of|strong="H8478"\w* \w Lebanon|strong="H3844"\w*. +\q1 +\v 12 My sister, my \w bride|strong="H3618"\w*, is \w a|strong="H3068"\w* \w locked|strong="H5274"\w* \w up|strong="H2856"\w* \w garden|strong="H1588"\w*; +\q2 \w a|strong="H3068"\w* \w locked|strong="H5274"\w* \w up|strong="H2856"\w* \w spring|strong="H4599"\w*, +\q2 \w a|strong="H3068"\w* \w sealed|strong="H2856"\w* \w fountain|strong="H4599"\w*. +\q1 +\v 13 \w Your|strong="H5973"\w* \w shoots|strong="H7973"\w* \w are|strong="H5973"\w* an \w orchard|strong="H6508"\w* \w of|strong="H6529"\w* \w pomegranates|strong="H7416"\w*, \w with|strong="H5973"\w* \w precious|strong="H4022"\w* \w fruits|strong="H6529"\w*, +\q2 \w henna|strong="H3724"\w* \w with|strong="H5973"\w* \w spikenard|strong="H5373"\w* \w plants|strong="H7973"\w*, +\q2 +\v 14 \w spikenard|strong="H5373"\w* \w and|strong="H6086"\w* \w saffron|strong="H3750"\w*, +\q2 \w calamus|strong="H7070"\w* \w and|strong="H6086"\w* \w cinnamon|strong="H7076"\w*, \w with|strong="H5973"\w* \w every|strong="H3605"\w* kind \w of|strong="H7218"\w* \w incense|strong="H3828"\w* \w tree|strong="H6086"\w*; +\q2 \w myrrh|strong="H4753"\w* \w and|strong="H6086"\w* aloes, \w with|strong="H5973"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w best|strong="H7218"\w* \w spices|strong="H1314"\w*, +\q2 +\v 15 \w a|strong="H3068"\w* \w fountain|strong="H4599"\w* \w of|strong="H4325"\w* \w gardens|strong="H1588"\w*, +\q2 \w a|strong="H3068"\w* \w well|strong="H4599"\w* \w of|strong="H4325"\w* \w living|strong="H2416"\w* \w waters|strong="H4325"\w*, +\q2 \w flowing|strong="H5140"\w* \w streams|strong="H5140"\w* \w from|strong="H4480"\w* \w Lebanon|strong="H3844"\w*. +\sp Beloved +\q1 +\v 16 \w Awake|strong="H5782"\w*, \w north|strong="H6828"\w* \w wind|strong="H8486"\w*, \w and|strong="H6828"\w* come, you \w south|strong="H8486"\w*! +\q2 \w Blow|strong="H6315"\w* on \w my|strong="H5782"\w* \w garden|strong="H1588"\w*, \w that|strong="H1730"\w* \w its|strong="H6529"\w* \w spices|strong="H1314"\w* may \w flow|strong="H5140"\w* \w out|strong="H5140"\w*. +\q1 Let \w my|strong="H5782"\w* \w beloved|strong="H1730"\w* come into \w his|strong="H5782"\w* \w garden|strong="H1588"\w*, +\q2 \w and|strong="H6828"\w* taste \w his|strong="H5782"\w* \w precious|strong="H4022"\w* \w fruits|strong="H6529"\w*. +\c 5 +\sp Lover +\q1 +\v 1 I \w have|strong="H5973"\w* come into \w my|strong="H5973"\w* \w garden|strong="H1588"\w*, \w my|strong="H5973"\w* sister, \w my|strong="H5973"\w* \w bride|strong="H3618"\w*. +\q2 I \w have|strong="H5973"\w* gathered \w my|strong="H5973"\w* \w myrrh|strong="H4753"\w* \w with|strong="H5973"\w* \w my|strong="H5973"\w* \w spice|strong="H1313"\w*; +\q2 I \w have|strong="H5973"\w* eaten \w my|strong="H5973"\w* \w honeycomb|strong="H1706"\w* \w with|strong="H5973"\w* \w my|strong="H5973"\w* \w honey|strong="H1706"\w*; +\q2 I \w have|strong="H5973"\w* \w drunk|strong="H8354"\w* \w my|strong="H5973"\w* \w wine|strong="H3196"\w* \w with|strong="H5973"\w* \w my|strong="H5973"\w* \w milk|strong="H2461"\w*. +\sp Friends +\q1 Eat, \w friends|strong="H7453"\w*! +\q2 \w Drink|strong="H8354"\w*, yes, \w drink|strong="H8354"\w* \w abundantly|strong="H7937"\w*, \w beloved|strong="H1730"\w*. +\sp Beloved +\q1 +\v 2 \w I|strong="H6963"\w* \w was|strong="H3820"\w* \w asleep|strong="H3462"\w*, \w but|strong="H3820"\w* \w my|strong="H6605"\w* \w heart|strong="H3820"\w* \w was|strong="H3820"\w* \w awake|strong="H5782"\w*. +\q2 \w It|strong="H3915"\w* \w is|strong="H3820"\w* \w the|strong="H4390"\w* \w voice|strong="H6963"\w* \w of|strong="H7218"\w* \w my|strong="H6605"\w* \w beloved|strong="H1730"\w* who knocks: +\q2 “\w Open|strong="H6605"\w* \w to|strong="H3820"\w* \w me|strong="H6963"\w*, \w my|strong="H6605"\w* sister, \w my|strong="H6605"\w* \w love|strong="H1730"\w*, \w my|strong="H6605"\w* \w dove|strong="H3123"\w*, \w my|strong="H6605"\w* \w undefiled|strong="H8535"\w*; +\q2 \w for|strong="H4390"\w* \w my|strong="H6605"\w* \w head|strong="H7218"\w* \w is|strong="H3820"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w dew|strong="H2919"\w*, +\q2 \w and|strong="H6963"\w* \w my|strong="H6605"\w* \w hair|strong="H7218"\w* \w with|strong="H4390"\w* \w the|strong="H4390"\w* dampness \w of|strong="H7218"\w* \w the|strong="H4390"\w* \w night|strong="H3915"\w*.” +\q1 +\v 3 I \w have|strong="H7272"\w* \w taken|strong="H6584"\w* \w off|strong="H6584"\w* \w my|strong="H7364"\w* \w robe|strong="H3801"\w*. Indeed, must I \w put|strong="H3847"\w* it \w on|strong="H3847"\w*? +\q2 I \w have|strong="H7272"\w* \w washed|strong="H7364"\w* \w my|strong="H7364"\w* \w feet|strong="H7272"\w*. Indeed, must I soil \w them|strong="H3847"\w*? +\q1 +\v 4 \w My|strong="H5921"\w* \w beloved|strong="H1730"\w* \w thrust|strong="H7971"\w* \w his|strong="H7971"\w* \w hand|strong="H3027"\w* \w in|strong="H5921"\w* \w through|strong="H3027"\w* \w the|strong="H5921"\w* latch \w opening|strong="H2356"\w*. +\q2 \w My|strong="H5921"\w* \w heart|strong="H4578"\w* pounded \w for|strong="H5921"\w* \w him|strong="H5921"\w*. +\q1 +\v 5 \w I|strong="H5921"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w to|strong="H5921"\w* \w open|strong="H6605"\w* \w for|strong="H5921"\w* \w my|strong="H5921"\w* \w beloved|strong="H1730"\w*. +\q2 \w My|strong="H5921"\w* \w hands|strong="H3027"\w* \w dripped|strong="H5197"\w* \w with|strong="H5921"\w* \w myrrh|strong="H4753"\w*, +\q2 \w my|strong="H5921"\w* fingers \w with|strong="H5921"\w* \w liquid|strong="H5674"\w* \w myrrh|strong="H4753"\w*, +\q2 \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w handles|strong="H3709"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w lock|strong="H4514"\w*. +\q1 +\v 6 \w I|strong="H5315"\w* \w opened|strong="H6605"\w* \w to|strong="H1696"\w* \w my|strong="H1245"\w* \w beloved|strong="H1730"\w*; +\q2 \w but|strong="H3808"\w* \w my|strong="H1245"\w* \w beloved|strong="H1730"\w* \w left|strong="H3318"\w*, \w and|strong="H6030"\w* \w had|strong="H4672"\w* \w gone|strong="H3318"\w* \w away|strong="H5674"\w*. +\q1 \w My|strong="H1245"\w* \w heart|strong="H5315"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w when|strong="H3318"\w* \w he|strong="H3808"\w* \w spoke|strong="H1696"\w*. +\q2 \w I|strong="H5315"\w* \w looked|strong="H1245"\w* \w for|strong="H7121"\w* \w him|strong="H7121"\w*, \w but|strong="H3808"\w* \w I|strong="H5315"\w* didn’t \w find|strong="H4672"\w* \w him|strong="H7121"\w*. +\q2 \w I|strong="H5315"\w* \w called|strong="H7121"\w* \w him|strong="H7121"\w*, \w but|strong="H3808"\w* \w he|strong="H3808"\w* didn’t \w answer|strong="H6030"\w*. +\q1 +\v 7 \w The|strong="H5921"\w* \w watchmen|strong="H8104"\w* \w who|strong="H8104"\w* \w go|strong="H5437"\w* \w about|strong="H5437"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w found|strong="H4672"\w* \w me|strong="H5921"\w*. +\q2 \w They|strong="H5921"\w* \w beat|strong="H5221"\w* \w me|strong="H5921"\w*. +\q2 \w They|strong="H5921"\w* bruised \w me|strong="H5921"\w*. +\q2 \w The|strong="H5921"\w* \w keepers|strong="H8104"\w* \w of|strong="H5892"\w* \w the|strong="H5921"\w* \w walls|strong="H2346"\w* \w took|strong="H5375"\w* \w my|strong="H8104"\w* cloak \w away|strong="H5375"\w* \w from|strong="H5921"\w* \w me|strong="H5921"\w*. +\b +\q1 +\v 8 \w I|strong="H4100"\w* \w adjure|strong="H7650"\w* \w you|strong="H5046"\w*, \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w Jerusalem|strong="H3389"\w*, +\q2 If \w you|strong="H5046"\w* \w find|strong="H4672"\w* \w my|strong="H5046"\w* \w beloved|strong="H1730"\w*, +\q2 \w that|strong="H3389"\w* \w you|strong="H5046"\w* \w tell|strong="H5046"\w* \w him|strong="H5046"\w* \w that|strong="H3389"\w* \w I|strong="H4100"\w* \w am|strong="H2470"\w* \w faint|strong="H2470"\w* \w with|strong="H3389"\w* \w love|strong="H1730"\w*. +\sp Friends +\q1 +\v 9 \w How|strong="H4100"\w* \w is|strong="H4100"\w* \w your|strong="H4100"\w* \w beloved|strong="H1730"\w* better \w than|strong="H1730"\w* another \w beloved|strong="H1730"\w*, +\q2 \w you|strong="H4100"\w* \w fairest|strong="H3303"\w* \w among|strong="H3303"\w* women? +\q1 \w How|strong="H4100"\w* \w is|strong="H4100"\w* \w your|strong="H4100"\w* \w beloved|strong="H1730"\w* better \w than|strong="H1730"\w* another \w beloved|strong="H1730"\w*, +\q1 \w that|strong="H1730"\w* \w you|strong="H4100"\w* \w do|strong="H4100"\w* \w so|strong="H3602"\w* \w adjure|strong="H7650"\w* us? +\sp Beloved +\q1 +\v 10 My \w beloved|strong="H1730"\w* \w is|strong="H1730"\w* \w white|strong="H6703"\w* \w and|strong="H6703"\w* ruddy. +\q2 \w The|strong="H1713"\w* best among \w ten|strong="H7233"\w* \w thousand|strong="H7233"\w*. +\q1 +\v 11 \w His|strong="H6158"\w* \w head|strong="H7218"\w* \w is|strong="H7218"\w* \w like|strong="H7218"\w* \w the|strong="H7218"\w* purest \w gold|strong="H3800"\w*. +\q2 \w His|strong="H6158"\w* \w hair|strong="H7218"\w* \w is|strong="H7218"\w* \w bushy|strong="H8534"\w*, \w black|strong="H7838"\w* as \w a|strong="H3068"\w* \w raven|strong="H6158"\w*. +\q1 +\v 12 \w His|strong="H5921"\w* \w eyes|strong="H5869"\w* \w are|strong="H5869"\w* \w like|strong="H5921"\w* \w doves|strong="H3123"\w* \w beside|strong="H5921"\w* \w the|strong="H5921"\w* \w water|strong="H4325"\w* brooks, +\q2 \w washed|strong="H7364"\w* \w with|strong="H5921"\w* \w milk|strong="H2461"\w*, \w mounted|strong="H3427"\w* \w like|strong="H5921"\w* \w jewels|strong="H4402"\w*. +\q1 +\v 13 \w His|strong="H5674"\w* \w cheeks|strong="H3895"\w* \w are|strong="H8193"\w* \w like|strong="H7799"\w* \w a|strong="H3068"\w* \w bed|strong="H6170"\w* \w of|strong="H4026"\w* \w spices|strong="H1314"\w* \w with|strong="H5674"\w* \w towers|strong="H4026"\w* \w of|strong="H4026"\w* perfumes. +\q2 \w His|strong="H5674"\w* \w lips|strong="H8193"\w* \w are|strong="H8193"\w* \w like|strong="H7799"\w* \w lilies|strong="H7799"\w*, \w dropping|strong="H5197"\w* \w liquid|strong="H5674"\w* \w myrrh|strong="H4753"\w*. +\q1 +\v 14 \w His|strong="H3027"\w* \w hands|strong="H3027"\w* \w are|strong="H3027"\w* \w like|strong="H4390"\w* \w rings|strong="H1550"\w* \w of|strong="H3027"\w* \w gold|strong="H2091"\w* \w set|strong="H4390"\w* \w with|strong="H4390"\w* \w beryl|strong="H8658"\w*. +\q2 \w His|strong="H3027"\w* \w body|strong="H4578"\w* \w is|strong="H3027"\w* \w like|strong="H4390"\w* \w ivory|strong="H8127"\w* \w work|strong="H3027"\w* \w overlaid|strong="H5968"\w* \w with|strong="H4390"\w* \w sapphires|strong="H5601"\w*. +\q1 +\v 15 \w His|strong="H5921"\w* \w legs|strong="H7785"\w* \w are|strong="H7785"\w* \w like|strong="H4758"\w* \w pillars|strong="H5982"\w* \w of|strong="H5982"\w* \w marble|strong="H8336"\w* \w set|strong="H3245"\w* \w on|strong="H5921"\w* sockets \w of|strong="H5982"\w* \w fine|strong="H8336"\w* \w gold|strong="H6337"\w*. +\q2 \w His|strong="H5921"\w* \w appearance|strong="H4758"\w* \w is|strong="H3844"\w* \w like|strong="H4758"\w* \w Lebanon|strong="H3844"\w*, excellent \w as|strong="H5921"\w* \w the|strong="H5921"\w* cedars. +\q1 +\v 16 \w His|strong="H3605"\w* \w mouth|strong="H2441"\w* \w is|strong="H2088"\w* \w sweetness|strong="H4477"\w*; +\q2 yes, \w he|strong="H3605"\w* \w is|strong="H2088"\w* \w altogether|strong="H3605"\w* \w lovely|strong="H4261"\w*. +\q1 \w This|strong="H2088"\w* \w is|strong="H2088"\w* \w my|strong="H3605"\w* \w beloved|strong="H1730"\w*, \w and|strong="H3389"\w* \w this|strong="H2088"\w* \w is|strong="H2088"\w* \w my|strong="H3605"\w* \w friend|strong="H7453"\w*, +\q2 \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w Jerusalem|strong="H3389"\w*. +\c 6 +\sp Friends +\q1 +\v 1 Where \w has|strong="H5973"\w* \w your|strong="H1245"\w* \w beloved|strong="H1730"\w* \w gone|strong="H1980"\w*, \w you|strong="H5973"\w* \w fairest|strong="H3303"\w* \w among|strong="H5973"\w* women? +\q2 Where \w has|strong="H5973"\w* \w your|strong="H1245"\w* \w beloved|strong="H1730"\w* \w turned|strong="H6437"\w*, \w that|strong="H1730"\w* \w we|strong="H3068"\w* may \w seek|strong="H1245"\w* \w him|strong="H5973"\w* \w with|strong="H5973"\w* \w you|strong="H5973"\w*? +\sp Beloved +\q1 +\v 2 \w My|strong="H7462"\w* \w beloved|strong="H1730"\w* \w has|strong="H1730"\w* \w gone|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w his|strong="H3381"\w* \w garden|strong="H1588"\w*, +\q2 \w to|strong="H3381"\w* \w the|strong="H3381"\w* \w beds|strong="H6170"\w* \w of|strong="H1588"\w* \w spices|strong="H1314"\w*, +\q2 \w to|strong="H3381"\w* \w pasture|strong="H7462"\w* \w his|strong="H3381"\w* flock \w in|strong="H7462"\w* \w the|strong="H3381"\w* \w gardens|strong="H1588"\w*, \w and|strong="H3381"\w* \w to|strong="H3381"\w* \w gather|strong="H3950"\w* \w lilies|strong="H7799"\w*. +\q1 +\v 3 I am \w my|strong="H7462"\w* \w beloved|strong="H1730"\w*’s, \w and|strong="H7462"\w* \w my|strong="H7462"\w* \w beloved|strong="H1730"\w* \w is|strong="H1730"\w* mine. +\q2 He browses \w among|strong="H7799"\w* \w the|strong="H7462"\w* \w lilies|strong="H7799"\w*. +\b +\sp Lover +\q1 +\v 4 You are \w beautiful|strong="H3303"\w*, my \w love|strong="H7474"\w*, \w as|strong="H3389"\w* \w Tirzah|strong="H8656"\w*, +\q2 \w lovely|strong="H5000"\w* \w as|strong="H3389"\w* \w Jerusalem|strong="H3389"\w*, +\q2 awesome \w as|strong="H3389"\w* an \w army|strong="H1713"\w* \w with|strong="H3389"\w* \w banners|strong="H1713"\w*. +\q1 +\v 5 \w Turn|strong="H5437"\w* \w away|strong="H5437"\w* \w your|strong="H4480"\w* \w eyes|strong="H5869"\w* \w from|strong="H4480"\w* \w me|strong="H4480"\w*, +\q2 \w for|strong="H5869"\w* \w they|strong="H1992"\w* \w have|strong="H5869"\w* \w overcome|strong="H7292"\w* \w me|strong="H4480"\w*. +\q1 \w Your|strong="H4480"\w* \w hair|strong="H8181"\w* \w is|strong="H5869"\w* \w like|strong="H5437"\w* \w a|strong="H3068"\w* \w flock|strong="H5739"\w* \w of|strong="H5869"\w* \w goats|strong="H5795"\w*, +\q2 \w that|strong="H4480"\w* lie along \w the|strong="H4480"\w* \w side|strong="H5437"\w* \w of|strong="H5869"\w* \w Gilead|strong="H1568"\w*. +\q1 +\v 6 \w Your|strong="H3605"\w* \w teeth|strong="H8127"\w* \w are|strong="H8127"\w* \w like|strong="H5927"\w* \w a|strong="H3068"\w* \w flock|strong="H5739"\w* \w of|strong="H4480"\w* \w ewes|strong="H7353"\w*, +\q2 \w which|strong="H3605"\w* \w have|strong="H3605"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w washing|strong="H7367"\w*, +\q2 \w of|strong="H4480"\w* \w which|strong="H3605"\w* \w every|strong="H3605"\w* \w one|strong="H3605"\w* \w has|strong="H3605"\w* \w twins|strong="H8382"\w*; +\q2 \w not|strong="H5927"\w* \w one|strong="H3605"\w* \w is|strong="H3605"\w* \w bereaved|strong="H7909"\w* \w among|strong="H4480"\w* \w them|strong="H5927"\w*. +\q1 +\v 7 \w Your|strong="H1157"\w* \w temples|strong="H7541"\w* are like \w a|strong="H3068"\w* \w piece|strong="H6400"\w* \w of|strong="H7416"\w* \w a|strong="H3068"\w* \w pomegranate|strong="H7416"\w* \w behind|strong="H1157"\w* \w your|strong="H1157"\w* \w veil|strong="H6777"\w*. +\b +\q1 +\v 8 \w There|strong="H1992"\w* \w are|strong="H1992"\w* \w sixty|strong="H8346"\w* \w queens|strong="H4436"\w*, \w eighty|strong="H8084"\w* \w concubines|strong="H6370"\w*, +\q2 \w and|strong="H8346"\w* \w virgins|strong="H5959"\w* \w without|strong="H5959"\w* \w number|strong="H4557"\w*. +\q1 +\v 9 \w My|strong="H7200"\w* \w dove|strong="H3123"\w*, \w my|strong="H7200"\w* \w perfect|strong="H8535"\w* \w one|strong="H1931"\w*, \w is|strong="H1931"\w* unique. +\q2 \w She|strong="H1931"\w* \w is|strong="H1931"\w* \w her|strong="H7200"\w* mother’s only \w daughter|strong="H1323"\w*. +\q2 \w She|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H7200"\w* favorite \w one|strong="H1931"\w* \w of|strong="H1323"\w* \w her|strong="H7200"\w* \w who|strong="H1931"\w* \w bore|strong="H3205"\w* \w her|strong="H7200"\w*. +\q1 \w The|strong="H7200"\w* \w daughters|strong="H1323"\w* \w saw|strong="H7200"\w* \w her|strong="H7200"\w*, \w and|strong="H7200"\w* called \w her|strong="H7200"\w* blessed. +\q2 \w The|strong="H7200"\w* \w queens|strong="H4436"\w* \w and|strong="H7200"\w* \w the|strong="H7200"\w* \w concubines|strong="H6370"\w* \w saw|strong="H7200"\w* \w her|strong="H7200"\w*, \w and|strong="H7200"\w* \w they|strong="H1931"\w* \w praised|strong="H1984"\w* \w her|strong="H7200"\w*. +\b +\q1 +\v 10 \w Who|strong="H4310"\w* \w is|strong="H4310"\w* \w she|strong="H2063"\w* \w who|strong="H4310"\w* \w looks|strong="H8259"\w* \w out|strong="H8259"\w* \w as|strong="H3644"\w* \w the|strong="H3644"\w* \w morning|strong="H7837"\w*, +\q2 \w beautiful|strong="H3303"\w* \w as|strong="H3644"\w* \w the|strong="H3644"\w* \w moon|strong="H3842"\w*, +\q2 \w clear|strong="H1249"\w* \w as|strong="H3644"\w* \w the|strong="H3644"\w* \w sun|strong="H2535"\w*, +\q2 \w and|strong="H3303"\w* awesome \w as|strong="H3644"\w* \w an|strong="H3644"\w* \w army|strong="H1713"\w* \w with|strong="H1713"\w* \w banners|strong="H1713"\w*? +\b +\q1 +\v 11 \w I|strong="H7200"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w the|strong="H7200"\w* nut \w tree|strong="H7416"\w* grove, +\q2 \w to|strong="H3381"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* green plants \w of|strong="H5158"\w* \w the|strong="H7200"\w* \w valley|strong="H5158"\w*, +\q2 \w to|strong="H3381"\w* \w see|strong="H7200"\w* \w whether|strong="H7200"\w* \w the|strong="H7200"\w* \w vine|strong="H1612"\w* \w budded|strong="H6524"\w*, +\q2 \w and|strong="H7200"\w* \w the|strong="H7200"\w* \w pomegranates|strong="H7416"\w* \w were|strong="H7200"\w* \w in|strong="H7200"\w* flower. +\q1 +\v 12 \w Without|strong="H3808"\w* realizing \w it|strong="H7760"\w*, +\q2 \w my|strong="H7760"\w* \w desire|strong="H5315"\w* \w set|strong="H7760"\w* \w me|strong="H5315"\w* \w with|strong="H3045"\w* \w my|strong="H7760"\w* royal \w people|strong="H5971"\w*’s \w chariots|strong="H4818"\w*. +\sp Friends +\q1 +\v 13 Return, return, Shulammite! +\q2 Return, return, that \w we|strong="H3068"\w* may gaze at you. +\sp Lover +\q1 Why do you desire to gaze at the Shulammite, +\q2 as at the dance of Mahanaim? +\c 7 +\p +\v 1 \w How|strong="H4100"\w* beautiful \w are|strong="H4100"\w* \w your|strong="H7725"\w* feet \w in|strong="H7725"\w* sandals, prince’s daughter! +\q2 \w Your|strong="H7725"\w* rounded thighs \w are|strong="H4100"\w* \w like|strong="H7725"\w* jewels, +\q2 \w the|strong="H7725"\w* work \w of|strong="H4264"\w* \w the|strong="H7725"\w* hands \w of|strong="H4264"\w* \w a|strong="H3068"\w* skillful workman. +\q1 +\v 2 \w Your|strong="H3027"\w* \w body|strong="H3409"\w* \w is|strong="H4100"\w* \w like|strong="H3644"\w* \w a|strong="H3068"\w* \w round|strong="H4639"\w* goblet, +\q2 no mixed wine \w is|strong="H4100"\w* wanting. +\q1 \w Your|strong="H3027"\w* waist \w is|strong="H4100"\w* \w like|strong="H3644"\w* \w a|strong="H3068"\w* heap \w of|strong="H1323"\w* wheat, +\q2 \w set|strong="H4639"\w* \w about|strong="H3027"\w* \w with|strong="H3027"\w* lilies. +\q1 +\v 3 Your two breasts are \w like|strong="H7799"\w* two fawns, +\q2 that are twins \w of|strong="H6194"\w* \w a|strong="H3068"\w* roe. +\q1 +\v 4 Your neck is \w like|strong="H7699"\w* an ivory tower. +\q2 Your eyes \w are|strong="H7699"\w* \w like|strong="H7699"\w* \w the|strong="H8147"\w* pools \w in|strong="H8147"\w* Heshbon \w by|strong="H8147"\w* \w the|strong="H8147"\w* gate \w of|strong="H8147"\w* Bathrabbim. +\q2 Your nose is \w like|strong="H7699"\w* \w the|strong="H8147"\w* tower \w of|strong="H8147"\w* Lebanon which looks toward Damascus. +\q1 +\v 5 \w Your|strong="H5921"\w* \w head|strong="H6440"\w* \w on|strong="H5921"\w* \w you|strong="H6440"\w* \w is|strong="H5869"\w* \w like|strong="H5921"\w* Carmel. +\q2 \w The|strong="H6440"\w* hair \w of|strong="H6440"\w* \w your|strong="H5921"\w* \w head|strong="H6440"\w* \w like|strong="H5921"\w* purple. +\q2 \w The|strong="H6440"\w* \w king|strong="H5921"\w* \w is|strong="H5869"\w* held captive \w in|strong="H5921"\w* \w its|strong="H5921"\w* tresses. +\q1 +\v 6 How beautiful \w and|strong="H4428"\w* how pleasant \w you|strong="H5921"\w* \w are|strong="H4428"\w*, +\q2 love, \w for|strong="H5921"\w* delights! +\q1 +\v 7 \w This|strong="H4100"\w*, \w your|strong="H4100"\w* stature, \w is|strong="H4100"\w* like \w a|strong="H3068"\w* palm tree, +\q2 \w your|strong="H4100"\w* breasts like its fruit. +\q1 +\v 8 \w I|strong="H1819"\w* said, “\w I|strong="H1819"\w* will climb up into \w the|strong="H1819"\w* \w palm|strong="H8558"\w* \w tree|strong="H8558"\w*. +\q2 \w I|strong="H1819"\w* will take hold \w of|strong="H6967"\w* its fruit.” +\q1 Let your \w breasts|strong="H7699"\w* be \w like|strong="H1819"\w* clusters \w of|strong="H6967"\w* \w the|strong="H1819"\w* vine, +\q2 \w the|strong="H1819"\w* smell \w of|strong="H6967"\w* your breath \w like|strong="H1819"\w* apples. +\q1 +\v 9 \w Your|strong="H1961"\w* mouth \w is|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H5927"\w* best wine, +\q2 \w that|strong="H1961"\w* \w goes|strong="H5927"\w* down smoothly \w for|strong="H1961"\w* \w my|strong="H1961"\w* beloved, +\q2 gliding \w through|strong="H4994"\w* \w the|strong="H5927"\w* lips \w of|strong="H1612"\w* \w those|strong="H1961"\w* who \w are|strong="H1961"\w* asleep. +\sp Beloved +\q1 +\v 10 \w I|strong="H1980"\w* \w am|strong="H1980"\w* \w my|strong="H1980"\w* \w beloved|strong="H1730"\w*’s. +\q2 \w His|strong="H1980"\w* desire \w is|strong="H2896"\w* \w toward|strong="H1980"\w* \w me|strong="H1980"\w*. +\q1 +\v 11 Come, \w my|strong="H5921"\w* \w beloved|strong="H1730"\w*! Let’s go \w out|strong="H5921"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* field. +\q2 Let’s lodge \w in|strong="H5921"\w* \w the|strong="H5921"\w* villages. +\q1 +\v 12 \w Let|strong="H3212"\w*’s \w go|strong="H3212"\w* early \w up|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3318"\w* vineyards. +\q2 \w Let|strong="H3212"\w*’s see whether \w the|strong="H3318"\w* vine \w has|strong="H3318"\w* budded, +\q2 \w its|strong="H3318"\w* blossom \w is|strong="H1730"\w* open, +\q2 \w and|strong="H3212"\w* \w the|strong="H3318"\w* pomegranates are \w in|strong="H3212"\w* flower. +\q2 \w There|strong="H3885"\w* \w I|strong="H3212"\w* \w will|strong="H7704"\w* \w give|strong="H7704"\w* \w you|strong="H3212"\w* \w my|strong="H3318"\w* \w love|strong="H1730"\w*. +\q1 +\v 13 \w The|strong="H7200"\w* mandrakes \w produce|strong="H5414"\w* fragrance. +\q2 \w At|strong="H7200"\w* \w our|strong="H5414"\w* doors \w are|strong="H8033"\w* \w all|strong="H7200"\w* kinds \w of|strong="H3754"\w* precious fruits, new \w and|strong="H7925"\w* old, +\q2 \w which|strong="H8033"\w* \w I|strong="H5414"\w* \w have|strong="H7200"\w* \w stored|strong="H5414"\w* \w up|strong="H5414"\w* \w for|strong="H8033"\w* \w you|strong="H5414"\w*, \w my|strong="H5414"\w* \w beloved|strong="H1730"\w*. +\c 8 +\p +\v 1 \w Oh|strong="H4310"\w* \w that|strong="H5414"\w* \w you|strong="H5414"\w* \w were|strong="H7699"\w* \w like|strong="H3808"\w* \w my|strong="H5414"\w* brother, +\q2 \w who|strong="H4310"\w* \w nursed|strong="H3243"\w* \w from|strong="H1571"\w* \w the|strong="H5414"\w* \w breasts|strong="H7699"\w* \w of|strong="H2351"\w* \w my|strong="H5414"\w* mother! +\q1 If \w I|strong="H5414"\w* \w found|strong="H4672"\w* \w you|strong="H5414"\w* \w outside|strong="H2351"\w*, \w I|strong="H5414"\w* \w would|strong="H4310"\w* \w kiss|strong="H5401"\w* \w you|strong="H5414"\w*; +\q2 \w yes|strong="H1571"\w*, \w and|strong="H1571"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w would|strong="H4310"\w* despise \w me|strong="H5414"\w*. +\q1 +\v 2 \w I|strong="H1004"\w* would \w lead|strong="H5090"\w* \w you|strong="H3925"\w*, bringing \w you|strong="H3925"\w* into \w the|strong="H8248"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w my|strong="H3925"\w* mother, +\q2 \w who|strong="H3925"\w* would \w instruct|strong="H3925"\w* \w me|strong="H8248"\w*. +\q1 \w I|strong="H1004"\w* would \w have|strong="H1004"\w* \w you|strong="H3925"\w* \w drink|strong="H8248"\w* \w spiced|strong="H7544"\w* \w wine|strong="H3196"\w*, +\q2 \w of|strong="H1004"\w* \w the|strong="H8248"\w* \w juice|strong="H6071"\w* \w of|strong="H1004"\w* \w my|strong="H3925"\w* \w pomegranate|strong="H7416"\w*. +\q1 +\v 3 \w His|strong="H8478"\w* \w left|strong="H8040"\w* \w hand|strong="H3225"\w* would \w be|strong="H8040"\w* \w under|strong="H8478"\w* \w my|strong="H8478"\w* \w head|strong="H7218"\w*. +\q2 \w His|strong="H8478"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* would \w embrace|strong="H2263"\w* \w me|strong="H8478"\w*. +\b +\q1 +\v 4 \w I|strong="H5704"\w* \w adjure|strong="H7650"\w* \w you|strong="H5704"\w*, \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w Jerusalem|strong="H3389"\w*, +\q2 \w that|strong="H5704"\w* \w you|strong="H5704"\w* \w not|strong="H2654"\w* \w stir|strong="H5782"\w* \w up|strong="H5782"\w*, nor \w awaken|strong="H5782"\w* \w love|strong="H5782"\w*, +\q2 \w until|strong="H5704"\w* \w it|strong="H5704"\w* \w so|strong="H7650"\w* \w desires|strong="H2654"\w*. +\sp Friends +\q1 +\v 5 \w Who|strong="H4310"\w* \w is|strong="H4310"\w* \w this|strong="H2063"\w* \w who|strong="H4310"\w* \w comes|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*, +\q2 \w leaning|strong="H7514"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w* \w beloved|strong="H1730"\w*? +\b +\sp Beloved +\q1 \w Under|strong="H8478"\w* \w the|strong="H5921"\w* \w apple|strong="H8598"\w* \w tree|strong="H8598"\w* \w I|strong="H5921"\w* \w awakened|strong="H5782"\w* \w you|strong="H5921"\w*. +\q2 \w There|strong="H8033"\w* \w your|strong="H5921"\w* mother \w conceived|strong="H2254"\w* \w you|strong="H5921"\w*. +\q2 \w There|strong="H8033"\w* \w she|strong="H2063"\w* \w was|strong="H3205"\w* \w in|strong="H5921"\w* \w labor|strong="H3205"\w* \w and|strong="H8033"\w* \w bore|strong="H3205"\w* \w you|strong="H5921"\w*. +\b +\q1 +\v 6 \w Set|strong="H7760"\w* \w me|strong="H5921"\w* \w as|strong="H3588"\w* \w a|strong="H3068"\w* \w seal|strong="H2368"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w heart|strong="H3820"\w*, +\q2 \w as|strong="H3588"\w* \w a|strong="H3068"\w* \w seal|strong="H2368"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w arm|strong="H2220"\w*; +\q2 \w for|strong="H3588"\w* love \w is|strong="H3820"\w* \w strong|strong="H5794"\w* \w as|strong="H3588"\w* \w death|strong="H4194"\w*. +\q2 \w Jealousy|strong="H7068"\w* \w is|strong="H3820"\w* \w as|strong="H3588"\w* \w cruel|strong="H7186"\w* \w as|strong="H3588"\w* \w Sheol|strong="H7585"\w*.\f + \fr 8:6 \ft Sheol is the place of the dead. \f* +\q2 \w Its|strong="H5921"\w* \w flashes|strong="H7565"\w* \w are|strong="H7186"\w* \w flashes|strong="H7565"\w* \w of|strong="H5921"\w* \w fire|strong="H7957"\w*, +\q2 \w a|strong="H3068"\w* very \w flame|strong="H7957"\w* \w of|strong="H5921"\w* \w Yah|strong="H3068"\w*.\f + \fr 8:6 \ft “Yah” is a short form of “Yahweh”, which is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* +\q1 +\v 7 \w Many|strong="H7227"\w* \w waters|strong="H4325"\w* \w can|strong="H3201"\w*’t \w quench|strong="H3518"\w* love, +\q2 \w neither|strong="H3808"\w* \w can|strong="H3201"\w* \w floods|strong="H5104"\w* \w drown|strong="H7857"\w* \w it|strong="H5414"\w*. +\q1 If \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w would|strong="H7227"\w* \w give|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w wealth|strong="H1952"\w* \w of|strong="H1004"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w* \w for|strong="H1004"\w* love, +\q2 \w he|strong="H3605"\w* \w would|strong="H7227"\w* \w be|strong="H3808"\w* utterly scorned. +\sp Brothers +\q1 +\v 8 \w We|strong="H3117"\w* \w have|strong="H3117"\w* \w a|strong="H3068"\w* \w little|strong="H6996"\w* sister. +\q2 \w She|strong="H4100"\w* \w has|strong="H3117"\w* \w no|strong="H6213"\w* \w breasts|strong="H7699"\w*. +\q1 \w What|strong="H4100"\w* \w shall|strong="H3117"\w* \w we|strong="H3068"\w* \w do|strong="H6213"\w* \w for|strong="H6213"\w* \w our|strong="H6213"\w* sister +\q2 \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w day|strong="H3117"\w* \w when|strong="H3117"\w* \w she|strong="H4100"\w* \w is|strong="H4100"\w* \w to|strong="H1696"\w* \w be|strong="H3117"\w* \w spoken|strong="H1696"\w* \w for|strong="H6213"\w*? +\b +\q1 +\v 9 \w If|strong="H1931"\w* \w she|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w wall|strong="H2346"\w*, +\q2 \w we|strong="H3068"\w* \w will|strong="H1931"\w* \w build|strong="H1129"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w* \w a|strong="H3068"\w* turret \w of|strong="H2346"\w* \w silver|strong="H3701"\w*. +\q1 \w If|strong="H1931"\w* \w she|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w door|strong="H1817"\w*, +\q2 \w we|strong="H3068"\w* \w will|strong="H1931"\w* enclose \w her|strong="H5921"\w* \w with|strong="H5921"\w* \w boards|strong="H3871"\w* \w of|strong="H2346"\w* cedar. +\sp Beloved +\q1 +\v 10 \w I|strong="H4672"\w* \w am|strong="H1961"\w* \w a|strong="H3068"\w* \w wall|strong="H2346"\w*, \w and|strong="H5869"\w* \w my|strong="H1961"\w* \w breasts|strong="H7699"\w* \w like|strong="H1961"\w* \w towers|strong="H4026"\w*, +\q2 \w then|strong="H1961"\w* \w I|strong="H4672"\w* \w was|strong="H1961"\w* \w in|strong="H4672"\w* \w his|strong="H1961"\w* \w eyes|strong="H5869"\w* \w like|strong="H1961"\w* \w one|strong="H1961"\w* \w who|strong="H4672"\w* \w found|strong="H4672"\w* \w peace|strong="H7965"\w*. +\q1 +\v 11 \w Solomon|strong="H8010"\w* \w had|strong="H1961"\w* \w a|strong="H3068"\w* \w vineyard|strong="H3754"\w* \w at|strong="H1961"\w* Baal Hamon. +\q2 \w He|strong="H5414"\w* leased \w out|strong="H5414"\w* \w the|strong="H5414"\w* \w vineyard|strong="H3754"\w* \w to|strong="H1961"\w* \w keepers|strong="H5201"\w*. +\q2 \w Each|strong="H5414"\w* \w was|strong="H1961"\w* \w to|strong="H1961"\w* \w bring|strong="H5414"\w* \w a|strong="H3068"\w* thousand \w shekels|strong="H5201"\w*\f + \fr 8:11 \ft A shekel is about 10 grams or about 0.35 ounces, so 1000 shekels is about 10 kilograms or about 22 pounds.\f* \w of|strong="H3754"\w* \w silver|strong="H3701"\w* \w for|strong="H3701"\w* \w its|strong="H5414"\w* \w fruit|strong="H6529"\w*. +\q1 +\v 12 \w My|strong="H8010"\w* \w own|strong="H6440"\w* \w vineyard|strong="H3754"\w* \w is|strong="H6440"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*. +\q2 \w The|strong="H6440"\w* thousand \w are|strong="H6440"\w* \w for|strong="H6440"\w* \w you|strong="H6440"\w*, \w Solomon|strong="H8010"\w*, +\q2 \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* \w for|strong="H6440"\w* those who tend \w its|strong="H6529"\w* \w fruit|strong="H6529"\w*. +\sp Lover +\q1 +\v 13 \w You|strong="H6963"\w* \w who|strong="H3427"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H8085"\w* \w gardens|strong="H1588"\w*, \w with|strong="H3427"\w* friends \w in|strong="H3427"\w* attendance, +\q2 let \w me|strong="H6963"\w* \w hear|strong="H8085"\w* \w your|strong="H8085"\w* \w voice|strong="H6963"\w*! +\sp Beloved +\q1 +\v 14 Come \w away|strong="H1272"\w*, \w my|strong="H5921"\w* \w beloved|strong="H1730"\w*! +\q2 \w Be|strong="H2022"\w* \w like|strong="H1819"\w* \w a|strong="H3068"\w* \w gazelle|strong="H6643"\w* \w or|strong="H2022"\w* \w a|strong="H3068"\w* \w young|strong="H6082"\w* stag \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w* \w of|strong="H2022"\w* \w spices|strong="H1314"\w*! \ No newline at end of file diff --git a/bibles/eng-web_usfm/24-ISAeng-web.usfm b/bibles/eng-web_usfm/24-ISAeng-web.usfm new file mode 100644 index 0000000..962e93d --- /dev/null +++ b/bibles/eng-web_usfm/24-ISAeng-web.usfm @@ -0,0 +1,4441 @@ +\id ISA 23-ISA-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Isaiah +\toc1 The Book of Isaiah +\toc2 Isaiah +\toc3 Isa +\mt2 The Book of the Prophet +\mt1 Isaiah +\c 1 +\p +\v 1 \w The|strong="H5921"\w* \w vision|strong="H2377"\w* \w of|strong="H1121"\w* \w Isaiah|strong="H3470"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amoz, \w which|strong="H3063"\w* \w he|strong="H3117"\w* \w saw|strong="H2372"\w* \w concerning|strong="H5921"\w* \w Judah|strong="H3063"\w* \w and|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w Uzziah|strong="H5818"\w*, \w Jotham|strong="H3147"\w*, Ahaz, \w and|strong="H1121"\w* \w Hezekiah|strong="H2396"\w*, \w kings|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*. +\q1 +\v 2 \w Hear|strong="H8085"\w*, \w heavens|strong="H8064"\w*, +\q2 \w and|strong="H1121"\w* \w listen|strong="H8085"\w*, \w earth|strong="H8064"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*\f + \fr 1:2 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w*: +\q1 “\w I|strong="H3588"\w* \w have|strong="H3068"\w* \w nourished|strong="H1431"\w* \w and|strong="H1121"\w* \w brought|strong="H3068"\w* \w up|strong="H7311"\w* \w children|strong="H1121"\w* +\q2 \w and|strong="H1121"\w* \w they|strong="H1992"\w* \w have|strong="H3068"\w* \w rebelled|strong="H6586"\w* \w against|strong="H1696"\w* \w me|strong="H7311"\w*. +\q1 +\v 3 \w The|strong="H3045"\w* \w ox|strong="H7794"\w* \w knows|strong="H3045"\w* \w his|strong="H3045"\w* \w owner|strong="H1167"\w*, +\q2 \w and|strong="H3478"\w* \w the|strong="H3045"\w* \w donkey|strong="H2543"\w* \w his|strong="H3045"\w* \w master|strong="H1167"\w*’s crib; +\q2 \w but|strong="H3808"\w* \w Israel|strong="H3478"\w* doesn’t \w know|strong="H3045"\w*. +\q2 \w My|strong="H3045"\w* \w people|strong="H5971"\w* don’t \w consider|strong="H3045"\w*.” +\q1 +\v 4 \w Ah|strong="H1945"\w* \w sinful|strong="H2398"\w* \w nation|strong="H1471"\w*, +\q2 \w a|strong="H3068"\w* \w people|strong="H5971"\w* loaded \w with|strong="H3068"\w* \w iniquity|strong="H5771"\w*, +\q2 \w offspring|strong="H2233"\w*\f + \fr 1:4 \ft or, seed\f* \w of|strong="H1121"\w* \w evildoers|strong="H7489"\w*, +\q2 \w children|strong="H1121"\w* \w who|strong="H5971"\w* deal \w corruptly|strong="H7843"\w*! +\q1 \w They|strong="H3068"\w* \w have|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w They|strong="H3068"\w* \w have|strong="H3068"\w* \w despised|strong="H5006"\w* \w the|strong="H3068"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\q2 \w They|strong="H3068"\w* \w are|strong="H5971"\w* \w estranged|strong="H2114"\w* \w and|strong="H1121"\w* backward. +\q1 +\v 5 \w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w you|strong="H3605"\w* \w be|strong="H5750"\w* \w beaten|strong="H5221"\w* \w more|strong="H3254"\w*, +\q2 \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w revolt|strong="H5627"\w* \w more|strong="H3254"\w* \w and|strong="H7218"\w* \w more|strong="H3254"\w*? +\q1 \w The|strong="H3605"\w* \w whole|strong="H3605"\w* \w head|strong="H7218"\w* \w is|strong="H4100"\w* \w sick|strong="H2483"\w*, +\q2 \w and|strong="H7218"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w heart|strong="H3824"\w* \w faint|strong="H1742"\w*. +\q1 +\v 6 \w From|strong="H5704"\w* \w the|strong="H5704"\w* \w sole|strong="H3709"\w* \w of|strong="H7218"\w* \w the|strong="H5704"\w* \w foot|strong="H7272"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w head|strong="H7218"\w* \w there|strong="H5704"\w* \w is|strong="H7218"\w* \w no|strong="H3808"\w* \w soundness|strong="H4974"\w* \w in|strong="H3808"\w* \w it|strong="H5704"\w*, +\q2 \w but|strong="H3808"\w* \w wounds|strong="H4347"\w*, \w welts|strong="H2250"\w*, \w and|strong="H7218"\w* open \w sores|strong="H4347"\w*. +\q2 \w They|strong="H3808"\w* haven’t \w been|strong="H3808"\w* \w closed|strong="H2115"\w*, \w bandaged|strong="H2280"\w*, \w or|strong="H3808"\w* soothed \w with|strong="H7218"\w* \w oil|strong="H8081"\w*. +\q1 +\v 7 \w Your|strong="H8313"\w* country \w is|strong="H5892"\w* \w desolate|strong="H8077"\w*. +\q2 \w Your|strong="H8313"\w* \w cities|strong="H5892"\w* \w are|strong="H5892"\w* \w burned|strong="H8313"\w* \w with|strong="H8313"\w* fire. +\q2 \w Strangers|strong="H2114"\w* devour \w your|strong="H8313"\w* land \w in|strong="H5892"\w* \w your|strong="H8313"\w* \w presence|strong="H5048"\w* +\q2 \w and|strong="H5892"\w* \w it|strong="H8077"\w* \w is|strong="H5892"\w* \w desolate|strong="H8077"\w*, +\q2 \w as|strong="H5892"\w* \w overthrown|strong="H4114"\w* \w by|strong="H5892"\w* \w strangers|strong="H2114"\w*. +\q1 +\v 8 \w The|strong="H5341"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Zion|strong="H6726"\w* \w is|strong="H5892"\w* \w left|strong="H3498"\w* \w like|strong="H1323"\w* \w a|strong="H3068"\w* \w shelter|strong="H5521"\w* \w in|strong="H5892"\w* \w a|strong="H3068"\w* \w vineyard|strong="H3754"\w*, +\q2 \w like|strong="H1323"\w* \w a|strong="H3068"\w* \w hut|strong="H5521"\w* \w in|strong="H5892"\w* \w a|strong="H3068"\w* \w field|strong="H4750"\w* \w of|strong="H1323"\w* melons, +\q2 \w like|strong="H1323"\w* \w a|strong="H3068"\w* \w besieged|strong="H5341"\w* \w city|strong="H5892"\w*. +\q1 +\v 9 \w Unless|strong="H3884"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w had|strong="H3068"\w* \w left|strong="H3498"\w* \w to|strong="H3068"\w* \w us|strong="H1961"\w* \w a|strong="H3068"\w* \w very|strong="H4592"\w* \w small|strong="H4592"\w* \w remnant|strong="H3498"\w*, +\q2 \w we|strong="H3068"\w* \w would|strong="H3068"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w as|strong="H1961"\w* \w Sodom|strong="H5467"\w*. +\q2 \w We|strong="H1819"\w* \w would|strong="H3068"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w like|strong="H1819"\w* \w Gomorrah|strong="H6017"\w*. +\b +\q1 +\v 10 \w Hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w you|strong="H5971"\w* \w rulers|strong="H7101"\w* \w of|strong="H3068"\w* \w Sodom|strong="H5467"\w*! +\q2 \w Listen|strong="H8085"\w* \w to|strong="H3068"\w* \w the|strong="H8085"\w* \w law|strong="H8451"\w* \w of|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*,\f + \fr 1:10 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w you|strong="H5971"\w* \w people|strong="H5971"\w* \w of|strong="H3068"\w* \w Gomorrah|strong="H6017"\w*! +\q1 +\v 11 “\w What|strong="H4100"\w* \w are|strong="H4100"\w* \w the|strong="H3068"\w* \w multitude|strong="H7230"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w sacrifices|strong="H2077"\w* \w to|strong="H3068"\w* \w me|strong="H3808"\w*?”, says \w Yahweh|strong="H3068"\w*. +\q2 “\w I|strong="H3808"\w* \w have|strong="H3068"\w* \w had|strong="H3068"\w* \w enough|strong="H7646"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w of|strong="H3068"\w* \w rams|strong="H6260"\w* +\q2 \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w fat|strong="H2459"\w* \w of|strong="H3068"\w* \w fed|strong="H7646"\w* animals. +\q2 \w I|strong="H3808"\w* don’t \w delight|strong="H2654"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w blood|strong="H1818"\w* \w of|strong="H3068"\w* \w bulls|strong="H6499"\w*, +\q2 \w or|strong="H3808"\w* \w of|strong="H3068"\w* \w lambs|strong="H3532"\w*, +\q2 \w or|strong="H3808"\w* \w of|strong="H3068"\w* \w male|strong="H3532"\w* \w goats|strong="H6260"\w*. +\q1 +\v 12 \w When|strong="H3588"\w* \w you|strong="H3588"\w* come \w to|strong="H6440"\w* \w appear|strong="H7200"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*, +\q2 \w who|strong="H4310"\w* \w has|strong="H4310"\w* \w required|strong="H1245"\w* \w this|strong="H2063"\w* \w at|strong="H7200"\w* \w your|strong="H6440"\w* \w hand|strong="H3027"\w*, \w to|strong="H6440"\w* \w trample|strong="H7429"\w* \w my|strong="H7200"\w* \w courts|strong="H2691"\w*? +\q1 +\v 13 \w Bring|strong="H3254"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w* \w vain|strong="H7723"\w* \w offerings|strong="H4503"\w*. +\q2 \w Incense|strong="H7004"\w* \w is|strong="H1931"\w* \w an|strong="H7121"\w* \w abomination|strong="H8441"\w* \w to|strong="H3201"\w* \w me|strong="H7121"\w*. +\q2 \w New|strong="H2320"\w* \w moons|strong="H2320"\w*, \w Sabbaths|strong="H7676"\w*, \w and|strong="H4503"\w* \w convocations|strong="H4744"\w*— +\q2 \w I|strong="H3201"\w* \w can|strong="H3201"\w*’t stand evil \w assemblies|strong="H4744"\w*. +\q1 +\v 14 \w My|strong="H5921"\w* \w soul|strong="H5315"\w* \w hates|strong="H8130"\w* \w your|strong="H5921"\w* \w New|strong="H2320"\w* \w Moons|strong="H2320"\w* \w and|strong="H5315"\w* \w your|strong="H5921"\w* \w appointed|strong="H4150"\w* \w feasts|strong="H4150"\w*. +\q2 \w They|strong="H5921"\w* \w are|strong="H1961"\w* \w a|strong="H3068"\w* \w burden|strong="H2960"\w* \w to|strong="H1961"\w* \w me|strong="H5315"\w*. +\q2 \w I|strong="H5921"\w* \w am|strong="H1961"\w* \w weary|strong="H3811"\w* \w of|strong="H5921"\w* \w bearing|strong="H5375"\w* \w them|strong="H5921"\w*. +\q1 +\v 15 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w spread|strong="H6566"\w* \w out|strong="H4480"\w* \w your|strong="H8085"\w* \w hands|strong="H3027"\w*, \w I|strong="H3588"\w* \w will|strong="H1571"\w* \w hide|strong="H5956"\w* \w my|strong="H8085"\w* \w eyes|strong="H5869"\w* \w from|strong="H4480"\w* \w you|strong="H3588"\w*. +\q2 \w Yes|strong="H3588"\w*, \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w make|strong="H8085"\w* \w many|strong="H7235"\w* \w prayers|strong="H8605"\w*, \w I|strong="H3588"\w* \w will|strong="H1571"\w* \w not|strong="H3588"\w* \w hear|strong="H8085"\w*. +\q2 \w Your|strong="H8085"\w* \w hands|strong="H3027"\w* \w are|strong="H5869"\w* \w full|strong="H4390"\w* \w of|strong="H3027"\w* \w blood|strong="H1818"\w*. +\q1 +\v 16 \w Wash|strong="H7364"\w* \w yourselves|strong="H5869"\w*. \w Make|strong="H2135"\w* yourself \w clean|strong="H2135"\w*. +\q2 \w Put|strong="H5493"\w* \w away|strong="H5493"\w* \w the|strong="H5493"\w* \w evil|strong="H7455"\w* \w of|strong="H5869"\w* \w your|strong="H5493"\w* \w doings|strong="H4611"\w* \w from|strong="H5493"\w* \w before|strong="H5048"\w* \w my|strong="H5493"\w* \w eyes|strong="H5869"\w*. +\q2 \w Cease|strong="H2308"\w* \w to|strong="H5869"\w* \w do|strong="H7489"\w* \w evil|strong="H7455"\w*. +\q1 +\v 17 \w Learn|strong="H3925"\w* \w to|strong="H3925"\w* \w do|strong="H3190"\w* \w well|strong="H3190"\w*. +\q2 \w Seek|strong="H1875"\w* \w justice|strong="H4941"\w*. +\q2 Relieve \w the|strong="H1875"\w* \w oppressed|strong="H2541"\w*. +\q1 \w Defend|strong="H8199"\w* \w the|strong="H1875"\w* \w fatherless|strong="H3490"\w*. +\q2 \w Plead|strong="H7378"\w* \w for|strong="H4941"\w* \w the|strong="H1875"\w* widow.” +\b +\q1 +\v 18 “\w Come|strong="H1961"\w* \w now|strong="H4994"\w*, \w and|strong="H3068"\w* \w let|strong="H4994"\w*’s \w reason|strong="H3198"\w* \w together|strong="H3198"\w*,” says \w Yahweh|strong="H3068"\w*: +\q2 “Though \w your|strong="H3068"\w* \w sins|strong="H2399"\w* \w are|strong="H3068"\w* \w as|strong="H1961"\w* \w scarlet|strong="H8144"\w*, \w they|strong="H3068"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w white|strong="H3835"\w* \w as|strong="H1961"\w* \w snow|strong="H7950"\w*. +\q2 Though \w they|strong="H3068"\w* \w are|strong="H3068"\w* \w red|strong="H8144"\w* \w like|strong="H1961"\w* \w crimson|strong="H8438"\w*, \w they|strong="H3068"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w wool|strong="H6785"\w*. +\q1 +\v 19 If \w you|strong="H2898"\w* are willing \w and|strong="H8085"\w* \w obedient|strong="H8085"\w*, +\q2 \w you|strong="H2898"\w* \w will|strong="H8085"\w* eat \w the|strong="H8085"\w* \w good|strong="H2898"\w* \w of|strong="H8085"\w* \w the|strong="H8085"\w* land; +\q2 +\v 20 \w but|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w refuse|strong="H3985"\w* \w and|strong="H3068"\w* \w rebel|strong="H4784"\w*, \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* devoured \w with|strong="H3068"\w* \w the|strong="H3588"\w* \w sword|strong="H2719"\w*; +\q2 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w mouth|strong="H6310"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w it|strong="H3588"\w*.” +\b +\q1 +\v 21 How \w the|strong="H1961"\w* faithful \w city|strong="H7151"\w* \w has|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w prostitute|strong="H2181"\w*! +\q2 She \w was|strong="H1961"\w* \w full|strong="H4395"\w* \w of|strong="H4941"\w* \w justice|strong="H4941"\w*. +\q1 \w Righteousness|strong="H6664"\w* \w lodged|strong="H3885"\w* \w in|strong="H3885"\w* \w her|strong="H1961"\w*, +\q2 \w but|strong="H1961"\w* \w now|strong="H6258"\w* \w there|strong="H1961"\w* \w are|strong="H4941"\w* \w murderers|strong="H7523"\w*. +\q1 +\v 22 \w Your|strong="H1961"\w* \w silver|strong="H3701"\w* \w has|strong="H1961"\w* \w become|strong="H1961"\w* \w dross|strong="H5509"\w*, +\q2 \w your|strong="H1961"\w* \w wine|strong="H5435"\w* \w mixed|strong="H4107"\w* \w with|strong="H4325"\w* \w water|strong="H4325"\w*. +\q1 +\v 23 \w Your|strong="H3605"\w* \w princes|strong="H8269"\w* \w are|strong="H8199"\w* \w rebellious|strong="H5637"\w* \w and|strong="H8269"\w* \w companions|strong="H2270"\w* \w of|strong="H8269"\w* \w thieves|strong="H1590"\w*. +\q2 \w Everyone|strong="H3605"\w* loves \w bribes|strong="H7810"\w* \w and|strong="H8269"\w* \w follows|strong="H7291"\w* \w after|strong="H7291"\w* \w rewards|strong="H8021"\w*. +\q2 \w They|strong="H3808"\w* don’t \w defend|strong="H8199"\w* \w the|strong="H3605"\w* \w fatherless|strong="H3490"\w*, +\q2 \w neither|strong="H3808"\w* \w does|strong="H3808"\w* \w the|strong="H3605"\w* \w cause|strong="H7379"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* widow come \w to|strong="H3808"\w* \w them|strong="H7291"\w*. +\b +\q1 +\v 24 \w Therefore|strong="H3651"\w* \w the|strong="H5002"\w* \w Lord|strong="H3068"\w*,\f + \fr 1:24 \ft The word translated “Lord” is “Adonai.” \f* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, +\q2 \w the|strong="H5002"\w* Mighty \w One|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H5002"\w*: +\q1 “\w Ah|strong="H1945"\w*, \w I|strong="H3651"\w* \w will|strong="H3068"\w* get relief \w from|strong="H3478"\w* \w my|strong="H3068"\w* \w adversaries|strong="H6862"\w*, +\q2 \w and|strong="H3478"\w* \w avenge|strong="H5358"\w* \w myself|strong="H5162"\w* \w on|strong="H3068"\w* \w my|strong="H3068"\w* \w enemies|strong="H6862"\w*. +\q1 +\v 25 \w I|strong="H5921"\w* \w will|strong="H3027"\w* \w turn|strong="H7725"\w* \w my|strong="H3605"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w you|strong="H3605"\w*, +\q2 thoroughly \w purge|strong="H1253"\w* \w away|strong="H5493"\w* \w your|strong="H3605"\w* \w dross|strong="H5509"\w*, +\q2 \w and|strong="H7725"\w* \w will|strong="H3027"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* tin.\f + \fr 1:25 \ft tin is a metal that is separated from silver during the refining and purification process.\f* +\q1 +\v 26 \w I|strong="H3651"\w* \w will|strong="H5892"\w* \w restore|strong="H7725"\w* \w your|strong="H7725"\w* \w judges|strong="H8199"\w* \w as|strong="H3651"\w* \w at|strong="H7725"\w* \w the|strong="H7725"\w* \w first|strong="H7223"\w*, +\q2 \w and|strong="H7725"\w* \w your|strong="H7725"\w* \w counselors|strong="H3289"\w* \w as|strong="H3651"\w* \w at|strong="H7725"\w* \w the|strong="H7725"\w* \w beginning|strong="H8462"\w*. +\q1 Afterward \w you|strong="H7725"\w* \w shall|strong="H5892"\w* \w be|strong="H5892"\w* \w called|strong="H7121"\w* ‘\w The|strong="H7725"\w* \w city|strong="H5892"\w* \w of|strong="H5892"\w* \w righteousness|strong="H6664"\w*, +\q2 \w a|strong="H3068"\w* faithful \w town|strong="H7151"\w*.’ +\q1 +\v 27 \w Zion|strong="H6726"\w* \w shall|strong="H4941"\w* \w be|strong="H7725"\w* \w redeemed|strong="H6299"\w* \w with|strong="H7725"\w* \w justice|strong="H4941"\w*, +\q2 \w and|strong="H7725"\w* \w her|strong="H7725"\w* \w converts|strong="H7725"\w* \w with|strong="H7725"\w* \w righteousness|strong="H6666"\w*. +\q1 +\v 28 \w But|strong="H5800"\w* \w the|strong="H3068"\w* \w destruction|strong="H7667"\w* \w of|strong="H3068"\w* \w transgressors|strong="H6586"\w* \w and|strong="H3068"\w* \w sinners|strong="H2400"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w together|strong="H3162"\w*, +\q2 \w and|strong="H3068"\w* those \w who|strong="H3068"\w* \w forsake|strong="H5800"\w* \w Yahweh|strong="H3068"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w consumed|strong="H3615"\w*. +\q1 +\v 29 \w For|strong="H3588"\w* \w they|strong="H3588"\w* shall \w be|strong="H3588"\w* \w ashamed|strong="H2659"\w* \w of|strong="H1593"\w* \w the|strong="H3588"\w* oaks \w which|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* \w desired|strong="H2530"\w*, +\q2 \w and|strong="H1593"\w* \w you|strong="H3588"\w* shall \w be|strong="H3588"\w* \w confounded|strong="H2659"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w gardens|strong="H1593"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* chosen. +\q1 +\v 30 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H4325"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w an|strong="H1961"\w* oak whose \w leaf|strong="H5929"\w* \w fades|strong="H5034"\w*, +\q2 \w and|strong="H4325"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w garden|strong="H1593"\w* \w that|strong="H3588"\w* \w has|strong="H1961"\w* \w no|strong="H1961"\w* \w water|strong="H4325"\w*. +\q1 +\v 31 \w The|strong="H1961"\w* \w strong|strong="H2634"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w tinder|strong="H5296"\w*, +\q2 \w and|strong="H8147"\w* \w his|strong="H1961"\w* \w work|strong="H6467"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w spark|strong="H5213"\w*. +\q1 \w They|strong="H3162"\w* \w will|strong="H1961"\w* \w both|strong="H8147"\w* \w burn|strong="H1197"\w* \w together|strong="H3162"\w*, +\q2 \w and|strong="H8147"\w* \w no|strong="H1197"\w* \w one|strong="H1961"\w* \w will|strong="H1961"\w* \w quench|strong="H3518"\w* \w them|strong="H8147"\w*.” +\c 2 +\p +\v 1 \w This|strong="H1697"\w* \w is|strong="H1697"\w* \w what|strong="H1697"\w* \w Isaiah|strong="H3470"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amoz \w saw|strong="H2372"\w* \w concerning|strong="H5921"\w* \w Judah|strong="H3063"\w* \w and|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*. +\q1 +\v 2 \w It|strong="H5375"\w* \w shall|strong="H3068"\w* \w happen|strong="H1961"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* latter \w days|strong="H3117"\w*, \w that|strong="H3605"\w* \w the|strong="H3605"\w* \w mountain|strong="H2022"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w established|strong="H3559"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w top|strong="H7218"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w*, +\q2 \w and|strong="H3068"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w raised|strong="H5375"\w* above \w the|strong="H3605"\w* \w hills|strong="H1389"\w*; +\q2 \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w nations|strong="H1471"\w* \w shall|strong="H3068"\w* \w flow|strong="H5102"\w* \w to|strong="H3068"\w* \w it|strong="H5375"\w*. +\q1 +\v 3 \w Many|strong="H7227"\w* \w peoples|strong="H5971"\w* \w shall|strong="H3068"\w* \w go|strong="H1980"\w* \w and|strong="H1980"\w* \w say|strong="H1697"\w*, +\q2 “\w Come|strong="H1980"\w*, \w let|strong="H3212"\w*’s \w go|strong="H1980"\w* \w up|strong="H5927"\w* \w to|strong="H1980"\w* \w the|strong="H3588"\w* \w mountain|strong="H2022"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w to|strong="H1980"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H3588"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w*; +\q2 \w and|strong="H1980"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w teach|strong="H3384"\w* \w us|strong="H3384"\w* \w of|strong="H1004"\w* \w his|strong="H3068"\w* \w ways|strong="H1870"\w*, +\q2 \w and|strong="H1980"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w walk|strong="H1980"\w* \w in|strong="H1980"\w* \w his|strong="H3068"\w* \w paths|strong="H1870"\w*.” +\q1 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w law|strong="H8451"\w* \w shall|strong="H3068"\w* \w go|strong="H1980"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w Zion|strong="H6726"\w*, +\q2 \w and|strong="H1980"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w from|strong="H3318"\w* \w Jerusalem|strong="H3389"\w*. +\q1 +\v 4 \w He|strong="H3808"\w* \w will|strong="H1471"\w* \w judge|strong="H8199"\w* \w between|strong="H4421"\w* \w the|strong="H5375"\w* \w nations|strong="H1471"\w*, +\q2 \w and|strong="H5971"\w* \w will|strong="H1471"\w* \w decide|strong="H3198"\w* \w concerning|strong="H1471"\w* \w many|strong="H7227"\w* \w peoples|strong="H5971"\w*. +\q2 \w They|strong="H3808"\w* \w shall|strong="H5971"\w* \w beat|strong="H3807"\w* \w their|strong="H5375"\w* \w swords|strong="H2719"\w* \w into|strong="H8199"\w* plowshares, +\q2 \w and|strong="H5971"\w* \w their|strong="H5375"\w* \w spears|strong="H2595"\w* \w into|strong="H8199"\w* \w pruning|strong="H4211"\w* \w hooks|strong="H4211"\w*. +\q1 \w Nation|strong="H1471"\w* \w shall|strong="H5971"\w* \w not|strong="H3808"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w sword|strong="H2719"\w* \w against|strong="H4421"\w* \w nation|strong="H1471"\w*, +\q2 \w neither|strong="H3808"\w* \w shall|strong="H5971"\w* \w they|strong="H3808"\w* \w learn|strong="H3925"\w* \w war|strong="H4421"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*. +\b +\q1 +\v 5 \w House|strong="H1004"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w*, \w come|strong="H3212"\w*, \w and|strong="H3068"\w* \w let|strong="H3212"\w*’s \w walk|strong="H3212"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* light \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 6 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H5971"\w* \w forsaken|strong="H5203"\w* \w your|strong="H3588"\w* \w people|strong="H5971"\w*, \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w*, +\q2 \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H5971"\w* \w filled|strong="H4390"\w* \w from|strong="H6430"\w* \w the|strong="H3588"\w* \w east|strong="H6924"\w*, +\q2 \w with|strong="H4390"\w* \w those|strong="H3588"\w* \w who|strong="H5971"\w* \w practice|strong="H6049"\w* divination \w like|strong="H1004"\w* \w the|strong="H3588"\w* \w Philistines|strong="H6430"\w*, +\q2 \w and|strong="H1004"\w* \w they|strong="H3588"\w* clasp hands \w with|strong="H4390"\w* \w the|strong="H3588"\w* \w children|strong="H3206"\w* \w of|strong="H1004"\w* \w foreigners|strong="H5237"\w*. +\q1 +\v 7 \w Their|strong="H4390"\w* land \w is|strong="H3701"\w* \w full|strong="H4390"\w* \w of|strong="H4390"\w* \w silver|strong="H3701"\w* \w and|strong="H3701"\w* \w gold|strong="H2091"\w*, +\q2 neither \w is|strong="H3701"\w* there any \w end|strong="H7097"\w* \w of|strong="H4390"\w* \w their|strong="H4390"\w* treasures. +\q1 \w Their|strong="H4390"\w* land also \w is|strong="H3701"\w* \w full|strong="H4390"\w* \w of|strong="H4390"\w* \w horses|strong="H5483"\w*, +\q2 neither \w is|strong="H3701"\w* there any \w end|strong="H7097"\w* \w of|strong="H4390"\w* \w their|strong="H4390"\w* \w chariots|strong="H4818"\w*. +\q1 +\v 8 \w Their|strong="H4390"\w* land \w also|strong="H6213"\w* \w is|strong="H3027"\w* \w full|strong="H4390"\w* \w of|strong="H3027"\w* idols. +\q2 \w They|strong="H6213"\w* \w worship|strong="H7812"\w* \w the|strong="H6213"\w* \w work|strong="H4639"\w* \w of|strong="H3027"\w* \w their|strong="H4390"\w* \w own|strong="H3027"\w* \w hands|strong="H3027"\w*, +\q2 \w that|strong="H3027"\w* which \w their|strong="H4390"\w* \w own|strong="H3027"\w* fingers \w have|strong="H3027"\w* \w made|strong="H6213"\w*. +\q1 +\v 9 \w Man|strong="H5375"\w* is \w brought|strong="H5375"\w* \w low|strong="H8213"\w*, +\q2 \w and|strong="H5375"\w* mankind is \w humbled|strong="H7817"\w*; +\q2 therefore don’t \w forgive|strong="H5375"\w* \w them|strong="H5375"\w*. +\q1 +\v 10 Enter \w into|strong="H6083"\w* \w the|strong="H6440"\w* \w rock|strong="H6697"\w*, +\q2 \w and|strong="H3068"\w* \w hide|strong="H2934"\w* \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w dust|strong="H6083"\w*, +\q1 \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w terror|strong="H6343"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w glory|strong="H1926"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w majesty|strong="H1926"\w*. +\q1 +\v 11 \w The|strong="H3068"\w* \w lofty|strong="H1365"\w* \w looks|strong="H5869"\w* \w of|strong="H3068"\w* \w man|strong="H8213"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w brought|strong="H5869"\w* \w low|strong="H8213"\w*, +\q2 \w the|strong="H3068"\w* arrogance \w of|strong="H3068"\w* men \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w bowed|strong="H7817"\w* \w down|strong="H7817"\w*, +\q2 \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w alone|strong="H1931"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w exalted|strong="H7682"\w* \w in|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*. +\b +\q1 +\v 12 \w For|strong="H3588"\w* \w there|strong="H3117"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w is|strong="H3068"\w* \w proud|strong="H1343"\w* \w and|strong="H3068"\w* arrogant, +\q2 \w and|strong="H3068"\w* \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w is|strong="H3068"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w*, +\q2 \w and|strong="H3068"\w* \w it|strong="H5921"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w brought|strong="H5375"\w* \w low|strong="H8213"\w*— +\q2 +\v 13 \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* cedars \w of|strong="H5921"\w* \w Lebanon|strong="H3844"\w*, \w that|strong="H3605"\w* are \w high|strong="H7311"\w* \w and|strong="H7311"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w*, +\q2 \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* oaks \w of|strong="H5921"\w* \w Bashan|strong="H1316"\w*, +\q2 +\v 14 \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w high|strong="H7311"\w* \w mountains|strong="H2022"\w*, +\q2 \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w hills|strong="H1389"\w* \w that|strong="H3605"\w* \w are|strong="H2022"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w*, +\q2 +\v 15 \w for|strong="H5921"\w* \w every|strong="H3605"\w* \w lofty|strong="H1364"\w* \w tower|strong="H4026"\w*, +\q2 \w for|strong="H5921"\w* \w every|strong="H3605"\w* \w fortified|strong="H1219"\w* \w wall|strong="H2346"\w*, +\q2 +\v 16 \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w ships|strong="H7914"\w* \w of|strong="H5921"\w* \w Tarshish|strong="H8659"\w*, +\q2 \w and|strong="H3605"\w* \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w pleasant|strong="H2532"\w* imagery. +\q1 +\v 17 \w The|strong="H3068"\w* \w loftiness|strong="H7312"\w* \w of|strong="H3068"\w* \w man|strong="H8213"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w bowed|strong="H7817"\w* \w down|strong="H7817"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H3068"\w* arrogance \w of|strong="H3068"\w* men \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w brought|strong="H3068"\w* \w low|strong="H8213"\w*; +\q2 \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w alone|strong="H1931"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w exalted|strong="H7682"\w* \w in|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*. +\q1 +\v 18 \w The|strong="H2498"\w* idols shall \w utterly|strong="H3632"\w* \w pass|strong="H2498"\w* \w away|strong="H2498"\w*. +\q1 +\v 19 Men \w shall|strong="H3068"\w* \w go|strong="H6965"\w* \w into|strong="H6083"\w* \w the|strong="H6440"\w* \w caves|strong="H4631"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w rocks|strong="H6697"\w*, +\q2 \w and|strong="H6965"\w* \w into|strong="H6083"\w* \w the|strong="H6440"\w* \w holes|strong="H4631"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w earth|strong="H6083"\w*, +\q2 \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w terror|strong="H6343"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H6965"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w glory|strong="H1926"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w majesty|strong="H1926"\w*, +\q2 \w when|strong="H3068"\w* \w he|strong="H3068"\w* \w arises|strong="H6965"\w* \w to|strong="H3068"\w* shake \w the|strong="H6440"\w* \w earth|strong="H6083"\w* mightily. +\q1 +\v 20 \w In|strong="H6213"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w men|strong="H6213"\w* \w shall|strong="H3117"\w* \w cast|strong="H7993"\w* \w away|strong="H7993"\w* \w their|strong="H6213"\w* idols \w of|strong="H3117"\w* \w silver|strong="H3701"\w* +\q2 \w and|strong="H3701"\w* \w their|strong="H6213"\w* idols \w of|strong="H3117"\w* \w gold|strong="H2091"\w*, +\q2 \w which|strong="H1931"\w* \w have|strong="H3117"\w* been \w made|strong="H6213"\w* \w for|strong="H6213"\w* \w themselves|strong="H7812"\w* \w to|strong="H6213"\w* \w worship|strong="H7812"\w*, +\q2 \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w moles|strong="H2661"\w* \w and|strong="H3701"\w* \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w bats|strong="H5847"\w*, +\q2 +\v 21 \w to|strong="H3068"\w* \w go|strong="H6965"\w* into \w the|strong="H6440"\w* \w caverns|strong="H5366"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w rocks|strong="H6697"\w*, +\q2 \w and|strong="H6965"\w* into \w the|strong="H6440"\w* \w clefts|strong="H5585"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* ragged \w rocks|strong="H6697"\w*, +\q2 \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w terror|strong="H6343"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H6965"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w glory|strong="H1926"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w majesty|strong="H1926"\w*, +\q2 \w when|strong="H3068"\w* \w he|strong="H3068"\w* \w arises|strong="H6965"\w* \w to|strong="H3068"\w* shake \w the|strong="H6440"\w* earth mightily. +\q1 +\v 22 \w Stop|strong="H2308"\w* \w trusting|strong="H4480"\w* \w in|strong="H4480"\w* man, whose \w breath|strong="H5397"\w* \w is|strong="H1931"\w* \w in|strong="H4480"\w* \w his|strong="H3588"\w* nostrils; +\q2 \w for|strong="H3588"\w* \w of|strong="H4480"\w* \w what|strong="H4100"\w* \w account|strong="H4480"\w* \w is|strong="H1931"\w* \w he|strong="H1931"\w*? +\c 3 +\q1 +\v 1 \w For|strong="H3588"\w*, \w behold|strong="H2009"\w*,\f + \fr 3:1 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w the|strong="H3605"\w* \w Lord|strong="H3068"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w takes|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H3063"\w* \w from|strong="H5493"\w* \w Judah|strong="H3063"\w* \w supply|strong="H4937"\w* \w and|strong="H3063"\w* \w support|strong="H4937"\w*, +\q2 \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w supply|strong="H4937"\w* \w of|strong="H3068"\w* \w bread|strong="H3899"\w*, +\q2 \w and|strong="H3063"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w supply|strong="H4937"\w* \w of|strong="H3068"\w* \w water|strong="H4325"\w*; +\q2 +\v 2 \w the|strong="H8199"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w*, +\q2 \w the|strong="H8199"\w* \w man|strong="H1368"\w* \w of|strong="H2205"\w* \w war|strong="H4421"\w*, +\q2 \w the|strong="H8199"\w* \w judge|strong="H8199"\w*, +\q2 \w the|strong="H8199"\w* \w prophet|strong="H5030"\w*, +\q2 \w the|strong="H8199"\w* \w diviner|strong="H7080"\w*, +\q2 \w the|strong="H8199"\w* \w elder|strong="H2205"\w*, +\q2 +\v 3 \w the|strong="H6440"\w* \w captain|strong="H8269"\w* \w of|strong="H8269"\w* \w fifty|strong="H2572"\w*, +\q2 \w the|strong="H6440"\w* \w honorable|strong="H5375"\w* \w man|strong="H2450"\w*, +\q2 \w the|strong="H6440"\w* \w counselor|strong="H3289"\w*, +\q2 \w the|strong="H6440"\w* \w skilled|strong="H2450"\w* craftsman, +\q2 \w and|strong="H2572"\w* \w the|strong="H6440"\w* clever \w enchanter|strong="H3908"\w*. +\q1 +\v 4 \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w boys|strong="H5288"\w* \w to|strong="H5414"\w* \w be|strong="H5414"\w* \w their|strong="H5414"\w* \w princes|strong="H8269"\w*, +\q2 \w and|strong="H5288"\w* \w children|strong="H5288"\w* \w shall|strong="H5288"\w* \w rule|strong="H4910"\w* \w over|strong="H5414"\w* \w them|strong="H5414"\w*. +\q1 +\v 5 \w The|strong="H5971"\w* \w people|strong="H5971"\w* \w will|strong="H5971"\w* \w be|strong="H5971"\w* \w oppressed|strong="H5065"\w*, +\q2 everyone \w by|strong="H7453"\w* \w another|strong="H7453"\w*, +\q2 \w and|strong="H5971"\w* everyone \w by|strong="H7453"\w* \w his|strong="H3513"\w* \w neighbor|strong="H7453"\w*. +\q1 \w The|strong="H5971"\w* \w child|strong="H5288"\w* \w will|strong="H5971"\w* behave \w himself|strong="H3513"\w* \w proudly|strong="H7292"\w* \w against|strong="H3513"\w* \w the|strong="H5971"\w* \w old|strong="H2205"\w* \w man|strong="H5288"\w*, +\q2 \w and|strong="H5971"\w* \w the|strong="H5971"\w* wicked \w against|strong="H3513"\w* \w the|strong="H5971"\w* \w honorable|strong="H3513"\w*. +\q1 +\v 6 \w Indeed|strong="H3588"\w* \w a|strong="H3068"\w* man \w shall|strong="H1004"\w* \w take|strong="H8610"\w* \w hold|strong="H8610"\w* \w of|strong="H1004"\w* \w his|strong="H3027"\w* brother \w in|strong="H1980"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w his|strong="H3027"\w* father, saying, +\q2 “\w You|strong="H3588"\w* \w have|strong="H1961"\w* \w clothing|strong="H8071"\w*, \w you|strong="H3588"\w* \w be|strong="H1961"\w* \w our|strong="H1961"\w* \w ruler|strong="H7101"\w*, +\q2 \w and|strong="H1980"\w* \w let|strong="H1980"\w* \w this|strong="H2063"\w* \w ruin|strong="H4384"\w* \w be|strong="H1961"\w* \w under|strong="H8478"\w* \w your|strong="H3588"\w* \w hand|strong="H3027"\w*.” +\q1 +\v 7 \w In|strong="H1004"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w* \w he|strong="H1931"\w* \w will|strong="H1961"\w* cry \w out|strong="H7760"\w*, saying, “\w I|strong="H3117"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w healer|strong="H2280"\w*; +\q2 \w for|strong="H1004"\w* \w in|strong="H1004"\w* \w my|strong="H7760"\w* \w house|strong="H1004"\w* \w is|strong="H1931"\w* \w neither|strong="H3808"\w* \w bread|strong="H3899"\w* \w nor|strong="H3808"\w* \w clothing|strong="H8071"\w*. +\q2 \w You|strong="H3117"\w* \w shall|strong="H5971"\w* \w not|strong="H3808"\w* \w make|strong="H7760"\w* \w me|strong="H7760"\w* \w ruler|strong="H7101"\w* \w of|strong="H1004"\w* \w the|strong="H5375"\w* \w people|strong="H5971"\w*.” +\q1 +\v 8 \w For|strong="H3588"\w* \w Jerusalem|strong="H3389"\w* \w is|strong="H3068"\w* \w ruined|strong="H3782"\w*, \w and|strong="H3063"\w* \w Judah|strong="H3063"\w* \w is|strong="H3068"\w* \w fallen|strong="H5307"\w*; +\q2 \w because|strong="H3588"\w* \w their|strong="H3068"\w* \w tongue|strong="H3956"\w* \w and|strong="H3063"\w* \w their|strong="H3068"\w* \w doings|strong="H4611"\w* \w are|strong="H5869"\w* \w against|strong="H4784"\w* \w Yahweh|strong="H3068"\w*, +\q1 \w to|strong="H3068"\w* \w provoke|strong="H4784"\w* \w the|strong="H3588"\w* \w eyes|strong="H5869"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w glory|strong="H3519"\w*. +\q1 +\v 9 \w The|strong="H6440"\w* \w look|strong="H6440"\w* \w of|strong="H6440"\w* \w their|strong="H6440"\w* \w faces|strong="H6440"\w* \w testify|strong="H6030"\w* \w against|strong="H6440"\w* \w them|strong="H1992"\w*. +\q2 \w They|strong="H1992"\w* parade \w their|strong="H6440"\w* \w sin|strong="H2403"\w* \w like|strong="H3808"\w* \w Sodom|strong="H5467"\w*. +\q2 \w They|strong="H1992"\w* don’t \w hide|strong="H3582"\w* \w it|strong="H3588"\w*. +\q2 Woe \w to|strong="H6440"\w* \w their|strong="H6440"\w* \w soul|strong="H5315"\w*! +\q2 \w For|strong="H3588"\w* \w they|strong="H1992"\w* \w have|strong="H2403"\w* \w brought|strong="H6030"\w* \w disaster|strong="H7451"\w* \w upon|strong="H6440"\w* \w themselves|strong="H5315"\w*. +\q1 +\v 10 Tell \w the|strong="H3588"\w* \w righteous|strong="H6662"\w* \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w will|strong="H6662"\w* \w be|strong="H6662"\w* \w well|strong="H2896"\w* \w with|strong="H6662"\w* \w them|strong="H3588"\w*, +\q2 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H6662"\w* eat \w the|strong="H3588"\w* \w fruit|strong="H6529"\w* \w of|strong="H6529"\w* \w their|strong="H3588"\w* \w deeds|strong="H4611"\w*. +\q1 +\v 11 Woe \w to|strong="H6213"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w*! +\q2 \w Disaster|strong="H7451"\w* \w is|strong="H3027"\w* \w upon|strong="H3027"\w* \w them|strong="H3027"\w*, +\q2 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w deeds|strong="H1576"\w* \w of|strong="H3027"\w* \w their|strong="H3588"\w* \w hands|strong="H3027"\w* \w will|strong="H7563"\w* \w be|strong="H3027"\w* \w paid|strong="H3027"\w* back \w to|strong="H6213"\w* \w them|strong="H3027"\w*. +\q1 +\v 12 \w As|strong="H5971"\w* \w for|strong="H5971"\w* \w my|strong="H8582"\w* \w people|strong="H5971"\w*, \w children|strong="H5953"\w* \w are|strong="H5971"\w* \w their|strong="H1870"\w* \w oppressors|strong="H5065"\w*, +\q2 \w and|strong="H5971"\w* women \w rule|strong="H4910"\w* \w over|strong="H4910"\w* \w them|strong="H8582"\w*. +\q2 \w My|strong="H8582"\w* \w people|strong="H5971"\w*, those \w who|strong="H5971"\w* \w lead|strong="H8582"\w* \w you|strong="H1870"\w* \w cause|strong="H5971"\w* \w you|strong="H1870"\w* \w to|strong="H1870"\w* \w err|strong="H8582"\w*, +\q2 \w and|strong="H5971"\w* \w destroy|strong="H1104"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w your|strong="H5953"\w* \w paths|strong="H1870"\w*. +\b +\q1 +\v 13 \w Yahweh|strong="H3068"\w* \w stands|strong="H5975"\w* \w up|strong="H5975"\w* \w to|strong="H3068"\w* \w contend|strong="H7378"\w*, +\q2 \w and|strong="H3068"\w* \w stands|strong="H5975"\w* \w to|strong="H3068"\w* \w judge|strong="H1777"\w* \w the|strong="H3068"\w* \w peoples|strong="H5971"\w*. +\q1 +\v 14 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* enter \w into|strong="H4941"\w* \w judgment|strong="H4941"\w* \w with|strong="H5973"\w* \w the|strong="H3068"\w* \w elders|strong="H2205"\w* \w of|strong="H1004"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w* +\q2 \w and|strong="H3068"\w* \w their|strong="H3068"\w* \w leaders|strong="H8269"\w*: +\q2 “\w It|strong="H3068"\w* \w is|strong="H3068"\w* \w you|strong="H5973"\w* \w who|strong="H5971"\w* \w have|strong="H3068"\w* \w eaten|strong="H1197"\w* \w up|strong="H1197"\w* \w the|strong="H3068"\w* \w vineyard|strong="H3754"\w*. +\q2 \w The|strong="H3068"\w* \w plunder|strong="H1500"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w poor|strong="H6041"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w houses|strong="H1004"\w*. +\q2 +\v 15 What do \w you|strong="H6440"\w* mean \w that|strong="H5971"\w* \w you|strong="H6440"\w* \w crush|strong="H1792"\w* \w my|strong="H6440"\w* \w people|strong="H5971"\w*, +\q2 \w and|strong="H5971"\w* \w grind|strong="H2912"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w poor|strong="H6041"\w*?” \w says|strong="H5002"\w* \w the|strong="H6440"\w* \w Lord|strong="H3069"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H6440"\w* \w Armies|strong="H6635"\w*. +\b +\q1 +\v 16 \w Moreover|strong="H3588"\w* \w Yahweh|strong="H3068"\w* said, “\w Because|strong="H3588"\w* \w the|strong="H3588"\w* \w daughters|strong="H1323"\w* \w of|strong="H3068"\w* \w Zion|strong="H6726"\w* \w are|strong="H5869"\w* arrogant, +\q2 \w and|strong="H1980"\w* \w walk|strong="H1980"\w* \w with|strong="H1980"\w* \w outstretched|strong="H5186"\w* \w necks|strong="H1627"\w* \w and|strong="H1980"\w* flirting \w eyes|strong="H5869"\w*, +\q2 \w walking|strong="H1980"\w* daintily \w as|strong="H3068"\w* \w they|strong="H3588"\w* \w go|strong="H1980"\w*, +\q2 jingling ornaments \w on|strong="H1980"\w* \w their|strong="H3068"\w* \w feet|strong="H7272"\w*; +\q1 +\v 17 \w therefore|strong="H3068"\w* \w the|strong="H3068"\w* \w Lord|strong="H3068"\w* brings sores \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w crown|strong="H6936"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w head|strong="H6936"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w women|strong="H1323"\w* \w of|strong="H3068"\w* \w Zion|strong="H6726"\w*, +\q2 \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w make|strong="H6168"\w* \w their|strong="H3068"\w* \w scalps|strong="H6936"\w* \w bald|strong="H6168"\w*.” +\p +\v 18 \w In|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w the|strong="H3117"\w* Lord \w will|strong="H1931"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w* \w the|strong="H3117"\w* \w beauty|strong="H8597"\w* \w of|strong="H3117"\w* \w their|strong="H3117"\w* \w anklets|strong="H5914"\w*, \w the|strong="H3117"\w* \w headbands|strong="H7636"\w*, \w the|strong="H3117"\w* \w crescent|strong="H7720"\w* necklaces, +\v 19 the \w earrings|strong="H5188"\w*, the \w bracelets|strong="H8285"\w*, the \w veils|strong="H7479"\w*, +\v 20 \w the|strong="H1004"\w* \w headdresses|strong="H6287"\w*, \w the|strong="H1004"\w* \w ankle|strong="H6807"\w* \w chains|strong="H6807"\w*, \w the|strong="H1004"\w* \w sashes|strong="H7196"\w*, \w the|strong="H1004"\w* \w perfume|strong="H1004"\w* containers, \w the|strong="H1004"\w* charms, +\v 21 the \w signet|strong="H2885"\w* \w rings|strong="H2885"\w*, the nose \w rings|strong="H2885"\w*, +\v 22 the fine \w robes|strong="H4254"\w*, the capes, the \w cloaks|strong="H4304"\w*, the \w purses|strong="H2754"\w*, +\v 23 the \w hand|strong="H1549"\w* \w mirrors|strong="H1549"\w*, the fine \w linen|strong="H5466"\w* \w garments|strong="H5466"\w*, the tiaras, \w and|strong="H5466"\w* the shawls. +\q1 +\v 24 \w It|strong="H1961"\w* \w shall|strong="H8478"\w* \w happen|strong="H1961"\w* \w that|strong="H1961"\w* \w instead|strong="H8478"\w* \w of|strong="H8478"\w* \w sweet|strong="H1314"\w* \w spices|strong="H1314"\w*, \w there|strong="H1961"\w* \w shall|strong="H8478"\w* \w be|strong="H1961"\w* \w rottenness|strong="H4716"\w*; +\q2 \w instead|strong="H8478"\w* \w of|strong="H8478"\w* \w a|strong="H3068"\w* \w belt|strong="H2290"\w*, \w a|strong="H3068"\w* \w rope|strong="H5364"\w*; +\q2 \w instead|strong="H8478"\w* \w of|strong="H8478"\w* well \w set|strong="H4639"\w* \w hair|strong="H4748"\w*, \w baldness|strong="H7144"\w*; +\q2 \w instead|strong="H8478"\w* \w of|strong="H8478"\w* \w a|strong="H3068"\w* robe, \w a|strong="H3068"\w* wearing \w of|strong="H8478"\w* \w sackcloth|strong="H8242"\w*; +\q2 \w and|strong="H8242"\w* \w branding|strong="H3587"\w* \w instead|strong="H8478"\w* \w of|strong="H8478"\w* \w beauty|strong="H3308"\w*. +\q1 +\v 25 \w Your|strong="H5307"\w* \w men|strong="H4962"\w* \w shall|strong="H2719"\w* \w fall|strong="H5307"\w* \w by|strong="H5307"\w* \w the|strong="H5307"\w* \w sword|strong="H2719"\w*, +\q2 \w and|strong="H2719"\w* \w your|strong="H5307"\w* \w mighty|strong="H1369"\w* \w in|strong="H4421"\w* \w the|strong="H5307"\w* \w war|strong="H4421"\w*. +\q1 +\v 26 Her \w gates|strong="H6607"\w* \w shall|strong="H3427"\w* lament \w and|strong="H3427"\w* mourn. +\q2 She \w shall|strong="H3427"\w* be \w desolate|strong="H5352"\w* \w and|strong="H3427"\w* \w sit|strong="H3427"\w* \w on|strong="H3427"\w* \w the|strong="H3427"\w* ground. +\c 4 +\p +\v 1 \w Seven|strong="H7651"\w* women \w shall|strong="H3117"\w* \w take|strong="H2388"\w* \w hold|strong="H2388"\w* \w of|strong="H3117"\w* \w one|strong="H1931"\w* man \w in|strong="H5921"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, saying, “\w We|strong="H3117"\w* \w will|strong="H1931"\w* \w eat|strong="H3899"\w* \w our|strong="H5921"\w* \w own|strong="H2388"\w* \w bread|strong="H3899"\w*, \w and|strong="H3117"\w* \w wear|strong="H3847"\w* \w our|strong="H5921"\w* \w own|strong="H2388"\w* \w clothing|strong="H8071"\w*. Just let \w us|strong="H5921"\w* \w be|strong="H8034"\w* \w called|strong="H7121"\w* \w by|strong="H5921"\w* \w your|strong="H5921"\w* \w name|strong="H8034"\w*. \w Take|strong="H2388"\w* away \w our|strong="H5921"\w* \w reproach|strong="H2781"\w*.” +\p +\v 2 \w In|strong="H3478"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w Yahweh|strong="H3068"\w*’s \w branch|strong="H6780"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w beautiful|strong="H8597"\w* \w and|strong="H3478"\w* \w glorious|strong="H8597"\w*, \w and|strong="H3478"\w* \w the|strong="H3068"\w* \w fruit|strong="H6529"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w land|strong="H1347"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w the|strong="H3068"\w* \w beauty|strong="H8597"\w* \w and|strong="H3478"\w* \w glory|strong="H3519"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w survivors|strong="H6413"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\v 3 \w It|strong="H1961"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3605"\w* \w left|strong="H7604"\w* \w in|strong="H3789"\w* \w Zion|strong="H6726"\w* \w and|strong="H3389"\w* \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w remains|strong="H7604"\w* \w in|strong="H3789"\w* \w Jerusalem|strong="H3389"\w* \w shall|strong="H2416"\w* \w be|strong="H1961"\w* called \w holy|strong="H6918"\w*, even \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3605"\w* \w written|strong="H3789"\w* among \w the|strong="H3605"\w* \w living|strong="H2416"\w* \w in|strong="H3789"\w* \w Jerusalem|strong="H3389"\w*, +\v 4 when \w the|strong="H7130"\w* Lord \w shall|strong="H1323"\w* \w have|strong="H1323"\w* \w washed|strong="H7364"\w* \w away|strong="H1197"\w* \w the|strong="H7130"\w* \w filth|strong="H6675"\w* \w of|strong="H1323"\w* \w the|strong="H7130"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w Zion|strong="H6726"\w*, \w and|strong="H4941"\w* \w shall|strong="H1323"\w* \w have|strong="H1323"\w* \w purged|strong="H1740"\w* \w the|strong="H7130"\w* \w blood|strong="H1818"\w* \w of|strong="H1323"\w* \w Jerusalem|strong="H3389"\w* \w from|strong="H7307"\w* \w within|strong="H7130"\w* \w it|strong="H7130"\w*, \w by|strong="H3389"\w* \w the|strong="H7130"\w* \w spirit|strong="H7307"\w* \w of|strong="H1323"\w* \w justice|strong="H4941"\w* \w and|strong="H4941"\w* \w by|strong="H3389"\w* \w the|strong="H7130"\w* \w spirit|strong="H7307"\w* \w of|strong="H1323"\w* \w burning|strong="H1197"\w*. +\v 5 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w create|strong="H1254"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w habitation|strong="H4349"\w* \w of|strong="H3068"\w* \w Mount|strong="H2022"\w* \w Zion|strong="H6726"\w* \w and|strong="H3068"\w* \w over|strong="H5921"\w* \w her|strong="H3605"\w* \w assemblies|strong="H4744"\w*, \w a|strong="H3068"\w* \w cloud|strong="H6051"\w* \w and|strong="H3068"\w* \w smoke|strong="H6227"\w* \w by|strong="H5921"\w* \w day|strong="H3119"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w shining|strong="H5051"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w flaming|strong="H3852"\w* fire \w by|strong="H5921"\w* \w night|strong="H3915"\w*, \w for|strong="H3588"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w glory|strong="H3519"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w a|strong="H3068"\w* \w canopy|strong="H2646"\w*. +\v 6 \w There|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w pavilion|strong="H5521"\w* \w for|strong="H1961"\w* \w a|strong="H3068"\w* \w shade|strong="H6738"\w* \w in|strong="H1961"\w* \w the|strong="H1961"\w* \w daytime|strong="H3119"\w* \w from|strong="H1961"\w* \w the|strong="H1961"\w* \w heat|strong="H2721"\w*, \w and|strong="H3119"\w* \w for|strong="H1961"\w* \w a|strong="H3068"\w* \w refuge|strong="H4268"\w* \w and|strong="H3119"\w* \w for|strong="H1961"\w* \w a|strong="H3068"\w* \w shelter|strong="H4268"\w* \w from|strong="H1961"\w* \w storm|strong="H2230"\w* \w and|strong="H3119"\w* \w from|strong="H1961"\w* \w rain|strong="H4306"\w*. +\c 5 +\q1 +\v 1 \w Let|strong="H4994"\w* \w me|strong="H4994"\w* \w sing|strong="H7891"\w* \w for|strong="H1121"\w* \w my|strong="H1961"\w* well \w beloved|strong="H1730"\w* \w a|strong="H3068"\w* \w song|strong="H7892"\w* \w of|strong="H1121"\w* \w my|strong="H1961"\w* \w beloved|strong="H1730"\w* \w about|strong="H1961"\w* \w his|strong="H1961"\w* \w vineyard|strong="H3754"\w*. +\q2 \w My|strong="H1961"\w* \w beloved|strong="H1730"\w* \w had|strong="H1961"\w* \w a|strong="H3068"\w* \w vineyard|strong="H3754"\w* \w on|strong="H1961"\w* \w a|strong="H3068"\w* very \w fruitful|strong="H1121"\w* \w hill|strong="H7161"\w*. +\q1 +\v 2 \w He|strong="H6213"\w* \w dug|strong="H5823"\w* \w it|strong="H6213"\w* \w up|strong="H1129"\w*, +\q2 \w gathered|strong="H6960"\w* \w out|strong="H2672"\w* \w its|strong="H6213"\w* \w stones|strong="H5619"\w*, +\q2 \w planted|strong="H5193"\w* \w it|strong="H6213"\w* \w with|strong="H6213"\w* \w the|strong="H6213"\w* \w choicest|strong="H8321"\w* \w vine|strong="H8321"\w*, +\q2 \w built|strong="H1129"\w* \w a|strong="H3068"\w* \w tower|strong="H4026"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w it|strong="H6213"\w*, +\q2 \w and|strong="H6213"\w* \w also|strong="H1571"\w* \w cut|strong="H2672"\w* \w out|strong="H2672"\w* \w a|strong="H3068"\w* \w wine|strong="H3342"\w* \w press|strong="H3342"\w* \w in|strong="H6213"\w* \w it|strong="H6213"\w*. +\q1 \w He|strong="H6213"\w* \w looked|strong="H6960"\w* \w for|strong="H6213"\w* \w it|strong="H6213"\w* \w to|strong="H6213"\w* \w yield|strong="H6213"\w* \w grapes|strong="H6025"\w*, +\q2 \w but|strong="H1571"\w* \w it|strong="H6213"\w* \w yielded|strong="H6213"\w* \w wild|strong="H6213"\w* \w grapes|strong="H6025"\w*. +\b +\q1 +\v 3 “\w Now|strong="H6258"\w*, \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H3063"\w* men \w of|strong="H3427"\w* \w Judah|strong="H3063"\w*, +\q2 \w please|strong="H4994"\w* \w judge|strong="H8199"\w* \w between|strong="H8199"\w* \w me|strong="H4994"\w* \w and|strong="H3063"\w* \w my|strong="H6258"\w* \w vineyard|strong="H3754"\w*. +\q1 +\v 4 \w What|strong="H4100"\w* \w could|strong="H4100"\w* \w have|strong="H3808"\w* \w been|strong="H3808"\w* \w done|strong="H6213"\w* \w more|strong="H5750"\w* \w to|strong="H6213"\w* \w my|strong="H6213"\w* \w vineyard|strong="H3754"\w*, \w that|strong="H6213"\w* \w I|strong="H3808"\w* \w have|strong="H3808"\w* \w not|strong="H3808"\w* \w done|strong="H6213"\w* \w in|strong="H6213"\w* \w it|strong="H6213"\w*? +\q2 \w Why|strong="H4100"\w*, \w when|strong="H6213"\w* \w I|strong="H3808"\w* \w looked|strong="H6960"\w* \w for|strong="H6213"\w* \w it|strong="H6213"\w* \w to|strong="H6213"\w* \w yield|strong="H6213"\w* \w grapes|strong="H6025"\w*, \w did|strong="H6213"\w* \w it|strong="H6213"\w* \w yield|strong="H6213"\w* \w wild|strong="H6213"\w* \w grapes|strong="H6025"\w*? +\q1 +\v 5 \w Now|strong="H6258"\w* \w I|strong="H6258"\w* \w will|strong="H1961"\w* \w tell|strong="H3045"\w* \w you|strong="H6213"\w* \w what|strong="H3045"\w* \w I|strong="H6258"\w* \w will|strong="H1961"\w* \w do|strong="H6213"\w* \w to|strong="H1961"\w* \w my|strong="H3045"\w* \w vineyard|strong="H3754"\w*. +\q2 \w I|strong="H6258"\w* \w will|strong="H1961"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w* \w its|strong="H6213"\w* \w hedge|strong="H4881"\w*, \w and|strong="H6213"\w* \w it|strong="H6213"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w eaten|strong="H1197"\w* \w up|strong="H1197"\w*. +\q2 \w I|strong="H6258"\w* \w will|strong="H1961"\w* \w break|strong="H6555"\w* \w down|strong="H6555"\w* \w its|strong="H6213"\w* \w wall|strong="H1447"\w*, \w and|strong="H6213"\w* \w it|strong="H6213"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w trampled|strong="H4823"\w* \w down|strong="H6555"\w*. +\q1 +\v 6 \w I|strong="H5921"\w* \w will|strong="H3808"\w* \w lay|strong="H7896"\w* \w it|strong="H5921"\w* \w a|strong="H3068"\w* wasteland. +\q2 \w It|strong="H5921"\w* won’t \w be|strong="H3808"\w* \w pruned|strong="H2168"\w* \w or|strong="H3808"\w* \w hoed|strong="H5737"\w*, +\q2 \w but|strong="H3808"\w* \w it|strong="H5921"\w* \w will|strong="H3808"\w* \w grow|strong="H5927"\w* \w briers|strong="H8068"\w* \w and|strong="H5927"\w* \w thorns|strong="H7898"\w*. +\q2 \w I|strong="H5921"\w* \w will|strong="H3808"\w* \w also|strong="H5645"\w* \w command|strong="H6680"\w* \w the|strong="H5921"\w* \w clouds|strong="H5645"\w* \w that|strong="H3808"\w* \w they|strong="H3808"\w* \w rain|strong="H4306"\w* \w no|strong="H3808"\w* \w rain|strong="H4306"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*.” +\q1 +\v 7 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w vineyard|strong="H3754"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w* \w is|strong="H3068"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, +\q2 \w and|strong="H3063"\w* \w the|strong="H3588"\w* \w men|strong="H3478"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w his|strong="H3068"\w* \w pleasant|strong="H8191"\w* \w plant|strong="H5194"\w*. +\q2 \w He|strong="H3588"\w* \w looked|strong="H6960"\w* \w for|strong="H3588"\w* \w justice|strong="H4941"\w*, \w but|strong="H3588"\w* \w behold|strong="H2009"\w*, \w oppression|strong="H4939"\w*, +\q2 \w for|strong="H3588"\w* \w righteousness|strong="H6666"\w*, \w but|strong="H3588"\w* \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w cry|strong="H6818"\w* \w of|strong="H1004"\w* \w distress|strong="H6818"\w*. +\b +\q1 +\v 8 \w Woe|strong="H1945"\w* \w to|strong="H5704"\w* \w those|strong="H1945"\w* \w who|strong="H3427"\w* \w join|strong="H7126"\w* \w house|strong="H1004"\w* \w to|strong="H5704"\w* \w house|strong="H1004"\w*, +\q2 \w who|strong="H3427"\w* \w lay|strong="H7126"\w* \w field|strong="H7704"\w* \w to|strong="H5704"\w* \w field|strong="H7704"\w*, \w until|strong="H5704"\w* \w there|strong="H3427"\w* \w is|strong="H4725"\w* \w no|strong="H5060"\w* \w room|strong="H1004"\w*, +\q2 \w and|strong="H1004"\w* \w you|strong="H5704"\w* \w are|strong="H1004"\w* \w made|strong="H7126"\w* \w to|strong="H5704"\w* \w dwell|strong="H3427"\w* alone \w in|strong="H3427"\w* \w the|strong="H5704"\w* \w middle|strong="H7130"\w* \w of|strong="H1004"\w* \w the|strong="H5704"\w* \w land|strong="H7704"\w*! +\q1 +\v 9 \w In|strong="H3427"\w* \w my|strong="H3068"\w* ears, \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w* says: “\w Surely|strong="H1961"\w* \w many|strong="H7227"\w* \w houses|strong="H1004"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w desolate|strong="H8047"\w*, +\q2 \w even|strong="H3808"\w* \w great|strong="H1419"\w* \w and|strong="H3068"\w* \w beautiful|strong="H2896"\w*, unoccupied. +\q1 +\v 10 \w For|strong="H3588"\w* \w ten|strong="H6235"\w* \w acres|strong="H6776"\w*\f + \fr 5:10 \ft literally, ten yokes, or the amount of land that ten yokes of oxen can plow in one day, which is about 10 acres or 4 hectares.\f* \w of|strong="H2233"\w* \w vineyard|strong="H3754"\w* \w shall|strong="H2233"\w* \w yield|strong="H6213"\w* \w one|strong="H6213"\w* \w bath|strong="H1324"\w*,\f + \fr 5:10 \ft 1 bath is about 22 liters or 5.8 U. S. gallons\f* +\q2 \w and|strong="H6213"\w* \w a|strong="H3068"\w* \w homer|strong="H2563"\w*\f + \fr 5:10 \ft 1 homer is about 220 liters or 6 bushels\f* \w of|strong="H2233"\w* \w seed|strong="H2233"\w* \w shall|strong="H2233"\w* \w yield|strong="H6213"\w* \w an|strong="H6213"\w* ephah.”\f + \fr 5:10 \ft 1 ephah is about 22 liters or 0.6 bushels or about 2 pecks—only one tenth of what was sown.\f* +\q1 +\v 11 \w Woe|strong="H1945"\w* \w to|strong="H1242"\w* \w those|strong="H1945"\w* \w who|strong="H1945"\w* \w rise|strong="H7925"\w* \w up|strong="H7925"\w* \w early|strong="H7925"\w* \w in|strong="H3196"\w* \w the|strong="H7291"\w* \w morning|strong="H1242"\w*, \w that|strong="H3196"\w* \w they|strong="H1242"\w* \w may|strong="H3196"\w* \w follow|strong="H7291"\w* \w strong|strong="H7941"\w* \w drink|strong="H7941"\w*, +\q2 \w who|strong="H1945"\w* stay late into \w the|strong="H7291"\w* \w night|strong="H5399"\w*, until \w wine|strong="H3196"\w* inflames \w them|strong="H7291"\w*! +\q1 +\v 12 \w The|strong="H7200"\w* \w harp|strong="H3658"\w*, \w lyre|strong="H3658"\w*, \w tambourine|strong="H8596"\w*, \w and|strong="H3068"\w* \w flute|strong="H2485"\w*, \w with|strong="H3068"\w* \w wine|strong="H3196"\w*, \w are|strong="H3027"\w* \w at|strong="H3068"\w* \w their|strong="H3068"\w* \w feasts|strong="H4960"\w*; +\q2 \w but|strong="H3808"\w* \w they|strong="H3068"\w* don’t \w respect|strong="H7200"\w* \w the|strong="H7200"\w* \w work|strong="H4639"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w neither|strong="H3808"\w* \w have|strong="H1961"\w* \w they|strong="H3068"\w* \w considered|strong="H7200"\w* \w the|strong="H7200"\w* \w operation|strong="H4639"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w hands|strong="H3027"\w*. +\b +\q1 +\v 13 \w Therefore|strong="H3651"\w* \w my|strong="H3651"\w* \w people|strong="H5971"\w* \w go|strong="H1540"\w* \w into|strong="H1540"\w* \w captivity|strong="H1540"\w* \w for|strong="H3651"\w* \w lack|strong="H1097"\w* \w of|strong="H5971"\w* \w knowledge|strong="H1847"\w*. +\q2 \w Their|strong="H1540"\w* \w honorable|strong="H3519"\w* \w men|strong="H4962"\w* \w are|strong="H5971"\w* \w famished|strong="H7458"\w*, +\q2 \w and|strong="H5971"\w* \w their|strong="H1540"\w* \w multitudes|strong="H1995"\w* \w are|strong="H5971"\w* \w parched|strong="H6704"\w* \w with|strong="H5971"\w* \w thirst|strong="H6772"\w*. +\q1 +\v 14 \w Therefore|strong="H3651"\w* \w Sheol|strong="H7585"\w*\f + \fr 5:14 \ft Sheol is the place of the dead.\f* \w has|strong="H5315"\w* \w enlarged|strong="H7337"\w* \w its|strong="H7337"\w* \w desire|strong="H5315"\w*, +\q2 \w and|strong="H2706"\w* \w opened|strong="H6473"\w* \w its|strong="H7337"\w* \w mouth|strong="H6310"\w* \w without|strong="H1097"\w* \w measure|strong="H2706"\w*; +\q2 \w and|strong="H2706"\w* \w their|strong="H3381"\w* \w glory|strong="H1926"\w*, \w their|strong="H3381"\w* \w multitude|strong="H1995"\w*, \w their|strong="H3381"\w* \w pomp|strong="H7588"\w*, \w and|strong="H2706"\w* \w he|strong="H3651"\w* \w who|strong="H5315"\w* rejoices among \w them|strong="H3381"\w*, \w descend|strong="H3381"\w* \w into|strong="H3381"\w* \w it|strong="H3651"\w*. +\q1 +\v 15 So \w man|strong="H8213"\w* \w is|strong="H5869"\w* \w brought|strong="H5869"\w* \w low|strong="H8213"\w*, +\q2 mankind \w is|strong="H5869"\w* \w humbled|strong="H7817"\w*, +\q2 \w and|strong="H5869"\w* \w the|strong="H5869"\w* \w eyes|strong="H5869"\w* \w of|strong="H5869"\w* \w the|strong="H5869"\w* arrogant ones \w are|strong="H5869"\w* \w humbled|strong="H7817"\w*; +\q1 +\v 16 \w but|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w is|strong="H3068"\w* \w exalted|strong="H1361"\w* \w in|strong="H3068"\w* \w justice|strong="H4941"\w*, +\q2 \w and|strong="H3068"\w* \w God|strong="H3068"\w* \w the|strong="H3068"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w is|strong="H3068"\w* \w sanctified|strong="H6942"\w* \w in|strong="H3068"\w* \w righteousness|strong="H6666"\w*. +\q1 +\v 17 Then \w the|strong="H7462"\w* \w lambs|strong="H3532"\w* \w will|strong="H2723"\w* \w graze|strong="H7462"\w* \w as|strong="H3532"\w* \w in|strong="H1481"\w* \w their|strong="H7462"\w* \w pasture|strong="H7462"\w*, +\q2 \w and|strong="H3532"\w* \w strangers|strong="H1481"\w* \w will|strong="H2723"\w* \w eat|strong="H7462"\w* \w the|strong="H7462"\w* \w ruins|strong="H2723"\w* \w of|strong="H7462"\w* \w the|strong="H7462"\w* rich. +\b +\q1 +\v 18 \w Woe|strong="H1945"\w* \w to|strong="H5771"\w* \w those|strong="H1945"\w* \w who|strong="H1945"\w* \w draw|strong="H4900"\w* \w iniquity|strong="H5771"\w* \w with|strong="H5771"\w* \w cords|strong="H5688"\w* \w of|strong="H2403"\w* \w falsehood|strong="H7723"\w*, +\q2 \w and|strong="H2403"\w* wickedness \w as|strong="H2403"\w* \w with|strong="H5771"\w* \w cart|strong="H5699"\w* \w rope|strong="H2256"\w*, +\q1 +\v 19 \w who|strong="H3478"\w* \w say|strong="H3478"\w*, “Let \w him|strong="H7200"\w* \w make|strong="H3045"\w* \w haste|strong="H4116"\w*, let \w him|strong="H7200"\w* \w hasten|strong="H2363"\w* \w his|strong="H7200"\w* \w work|strong="H4639"\w*, \w that|strong="H3045"\w* \w we|strong="H3068"\w* \w may|strong="H3478"\w* \w see|strong="H7200"\w* \w it|strong="H7126"\w*; +\q2 let \w the|strong="H7200"\w* \w counsel|strong="H6098"\w* \w of|strong="H6918"\w* \w the|strong="H7200"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H6918"\w* \w Israel|strong="H3478"\w* \w draw|strong="H7126"\w* \w near|strong="H7126"\w* \w and|strong="H3478"\w* \w come|strong="H7126"\w*, +\q2 \w that|strong="H3045"\w* \w we|strong="H3068"\w* \w may|strong="H3478"\w* \w know|strong="H3045"\w* \w it|strong="H7126"\w*!” +\q1 +\v 20 \w Woe|strong="H1945"\w* \w to|strong="H2896"\w* \w those|strong="H1945"\w* \w who|strong="H2896"\w* call \w evil|strong="H7451"\w* \w good|strong="H2896"\w*, \w and|strong="H2896"\w* \w good|strong="H2896"\w* \w evil|strong="H7451"\w*; +\q2 \w who|strong="H2896"\w* \w put|strong="H7760"\w* \w darkness|strong="H2822"\w* \w for|strong="H7451"\w* \w light|strong="H7760"\w*, +\q2 \w and|strong="H2896"\w* \w light|strong="H7760"\w* \w for|strong="H7451"\w* \w darkness|strong="H2822"\w*; +\q1 \w who|strong="H2896"\w* \w put|strong="H7760"\w* \w bitter|strong="H4751"\w* \w for|strong="H7451"\w* \w sweet|strong="H4966"\w*, +\q2 \w and|strong="H2896"\w* \w sweet|strong="H4966"\w* \w for|strong="H7451"\w* \w bitter|strong="H4751"\w*! +\q1 +\v 21 \w Woe|strong="H1945"\w* \w to|strong="H6440"\w* \w those|strong="H1945"\w* \w who|strong="H2450"\w* \w are|strong="H5869"\w* \w wise|strong="H2450"\w* \w in|strong="H6440"\w* \w their|strong="H6440"\w* \w own|strong="H6440"\w* \w eyes|strong="H5869"\w*, +\q2 \w and|strong="H5869"\w* prudent \w in|strong="H6440"\w* \w their|strong="H6440"\w* \w own|strong="H6440"\w* \w sight|strong="H5869"\w*! +\q1 +\v 22 \w Woe|strong="H1945"\w* \w to|strong="H2428"\w* \w those|strong="H1945"\w* \w who|strong="H1368"\w* \w are|strong="H1368"\w* \w mighty|strong="H1368"\w* \w to|strong="H2428"\w* \w drink|strong="H8354"\w* \w wine|strong="H3196"\w*, +\q2 \w and|strong="H8354"\w* champions \w at|strong="H2428"\w* \w mixing|strong="H4537"\w* \w strong|strong="H7941"\w* \w drink|strong="H8354"\w*; +\q1 +\v 23 \w who|strong="H6662"\w* \w acquit|strong="H6663"\w* \w the|strong="H4480"\w* \w guilty|strong="H7563"\w* \w for|strong="H4480"\w* \w a|strong="H3068"\w* \w bribe|strong="H7810"\w*, +\q2 \w but|strong="H7563"\w* deny \w justice|strong="H6666"\w* \w for|strong="H4480"\w* \w the|strong="H4480"\w* \w innocent|strong="H6666"\w*! +\b +\q1 +\v 24 \w Therefore|strong="H3651"\w* \w as|strong="H1961"\w* \w the|strong="H3588"\w* \w tongue|strong="H3956"\w* \w of|strong="H3068"\w* fire devours \w the|strong="H3588"\w* \w stubble|strong="H7179"\w*, +\q2 \w and|strong="H3478"\w* \w as|strong="H1961"\w* \w the|strong="H3588"\w* \w dry|strong="H2842"\w* \w grass|strong="H2842"\w* sinks \w down|strong="H7503"\w* \w in|strong="H3478"\w* \w the|strong="H3588"\w* \w flame|strong="H3852"\w*, +\q2 \w so|strong="H3651"\w* \w their|strong="H3068"\w* \w root|strong="H8328"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w rottenness|strong="H4716"\w*, +\q2 \w and|strong="H3478"\w* \w their|strong="H3068"\w* \w blossom|strong="H6525"\w* \w shall|strong="H3068"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w as|strong="H1961"\w* dust, +\q1 \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H1961"\w* \w rejected|strong="H3988"\w* \w the|strong="H3588"\w* \w law|strong="H8451"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, +\q2 \w and|strong="H3478"\w* \w despised|strong="H3988"\w* \w the|strong="H3588"\w* \w word|strong="H3956"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\q1 +\v 25 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w*’s anger \w burns|strong="H2734"\w* \w against|strong="H5921"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*, +\q2 \w and|strong="H3068"\w* \w he|strong="H3651"\w* \w has|strong="H3068"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w* \w and|strong="H3068"\w* \w has|strong="H3068"\w* \w struck|strong="H5221"\w* \w them|strong="H5921"\w*. +\q1 \w The|strong="H3605"\w* \w mountains|strong="H2022"\w* \w tremble|strong="H7264"\w*, +\q2 \w and|strong="H3068"\w* \w their|strong="H3605"\w* \w dead|strong="H5038"\w* \w bodies|strong="H5038"\w* \w are|strong="H5971"\w* \w as|strong="H1961"\w* \w refuse|strong="H7725"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w middle|strong="H7130"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w streets|strong="H2351"\w*. +\q1 \w For|strong="H5921"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w*, \w his|strong="H3605"\w* anger \w is|strong="H3068"\w* \w not|strong="H3808"\w* \w turned|strong="H7725"\w* \w away|strong="H7725"\w*, +\q2 \w but|strong="H3808"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w* \w is|strong="H3068"\w* \w still|strong="H5750"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w*. +\b +\q1 +\v 26 \w He|strong="H2009"\w* \w will|strong="H1471"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w a|strong="H3068"\w* \w banner|strong="H5251"\w* \w to|strong="H1471"\w* \w the|strong="H5375"\w* \w nations|strong="H1471"\w* \w from|strong="H1471"\w* \w far|strong="H7350"\w* \w away|strong="H5375"\w*, +\q2 \w and|strong="H1471"\w* \w he|strong="H2009"\w* \w will|strong="H1471"\w* \w whistle|strong="H8319"\w* \w for|strong="H5375"\w* \w them|strong="H5375"\w* \w from|strong="H1471"\w* \w the|strong="H5375"\w* \w end|strong="H7097"\w* \w of|strong="H7097"\w* \w the|strong="H5375"\w* earth. +\q2 \w Behold|strong="H2009"\w*, \w they|strong="H5375"\w* \w will|strong="H1471"\w* \w come|strong="H7350"\w* \w speedily|strong="H4120"\w* \w and|strong="H1471"\w* \w swiftly|strong="H7031"\w*. +\q1 +\v 27 \w No|strong="H3808"\w* \w one|strong="H3808"\w* \w shall|strong="H3808"\w* \w be|strong="H3808"\w* \w weary|strong="H5889"\w* \w nor|strong="H3808"\w* \w stumble|strong="H3782"\w* \w among|strong="H3808"\w* \w them|strong="H5423"\w*; +\q2 \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w shall|strong="H3808"\w* \w slumber|strong="H5123"\w* \w nor|strong="H3808"\w* \w sleep|strong="H3462"\w*, +\q2 \w neither|strong="H3808"\w* \w shall|strong="H3808"\w* \w the|strong="H6605"\w* belt \w of|strong="H3808"\w* \w their|strong="H3808"\w* \w waist|strong="H2504"\w* \w be|strong="H3808"\w* untied, +\q2 \w nor|strong="H3808"\w* \w the|strong="H6605"\w* \w strap|strong="H8288"\w* \w of|strong="H3808"\w* \w their|strong="H3808"\w* \w sandals|strong="H5275"\w* \w be|strong="H3808"\w* \w broken|strong="H5423"\w*, +\q1 +\v 28 \w whose|strong="H3605"\w* \w arrows|strong="H2671"\w* \w are|strong="H5483"\w* \w sharp|strong="H8150"\w*, +\q2 \w and|strong="H5483"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w bows|strong="H7198"\w* \w bent|strong="H1869"\w*. +\q1 \w Their|strong="H3605"\w* \w horses|strong="H5483"\w*’ \w hoofs|strong="H6541"\w* \w will|strong="H7198"\w* \w be|strong="H3605"\w* \w like|strong="H2803"\w* \w flint|strong="H6862"\w*, +\q2 \w and|strong="H5483"\w* \w their|strong="H3605"\w* \w wheels|strong="H1534"\w* \w like|strong="H2803"\w* \w a|strong="H3068"\w* \w whirlwind|strong="H5492"\w*. +\q1 +\v 29 \w Their|strong="H5337"\w* \w roaring|strong="H7580"\w* will be \w like|strong="H7580"\w* \w a|strong="H3068"\w* \w lioness|strong="H3833"\w*. +\q2 They will \w roar|strong="H7580"\w* \w like|strong="H7580"\w* \w young|strong="H3715"\w* \w lions|strong="H3715"\w*. +\q1 Yes, they shall \w roar|strong="H7580"\w*, +\q2 \w and|strong="H3833"\w* seize \w their|strong="H5337"\w* \w prey|strong="H2964"\w* \w and|strong="H3833"\w* carry it \w off|strong="H5337"\w*, +\q2 \w and|strong="H3833"\w* there will be no one \w to|strong="H5337"\w* \w deliver|strong="H5337"\w*. +\q1 +\v 30 \w They|strong="H3117"\w* \w will|strong="H1931"\w* \w roar|strong="H5098"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w like|strong="H5921"\w* \w the|strong="H5921"\w* \w roaring|strong="H5098"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*. +\q2 \w If|strong="H2009"\w* \w one|strong="H1931"\w* \w looks|strong="H5027"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* land, \w behold|strong="H2009"\w*, \w darkness|strong="H2822"\w* \w and|strong="H3117"\w* \w distress|strong="H6862"\w*. +\q2 \w The|strong="H5921"\w* light \w is|strong="H1931"\w* \w darkened|strong="H2821"\w* \w in|strong="H5921"\w* \w its|strong="H5921"\w* \w clouds|strong="H6183"\w*. +\c 6 +\p +\v 1 \w In|strong="H3427"\w* \w the|strong="H5921"\w* \w year|strong="H8141"\w* \w that|strong="H7200"\w* \w King|strong="H4428"\w* \w Uzziah|strong="H5818"\w* \w died|strong="H4194"\w*, \w I|strong="H5921"\w* \w saw|strong="H7200"\w* \w the|strong="H5921"\w* Lord \w sitting|strong="H3427"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w throne|strong="H3678"\w*, \w high|strong="H7311"\w* \w and|strong="H4428"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w*; \w and|strong="H4428"\w* \w his|strong="H5375"\w* \w train|strong="H7757"\w* \w filled|strong="H4390"\w* \w the|strong="H5921"\w* \w temple|strong="H1964"\w*. +\v 2 \w Above|strong="H4605"\w* \w him|strong="H6440"\w* \w stood|strong="H5975"\w* \w the|strong="H6440"\w* \w seraphim|strong="H8314"\w*. \w Each|strong="H8147"\w* \w one|strong="H3671"\w* had \w six|strong="H8337"\w* \w wings|strong="H3671"\w*. \w With|strong="H6440"\w* \w two|strong="H8147"\w* \w he|strong="H8147"\w* \w covered|strong="H3680"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w*. \w With|strong="H6440"\w* \w two|strong="H8147"\w* \w he|strong="H8147"\w* \w covered|strong="H3680"\w* \w his|strong="H6440"\w* \w feet|strong="H7272"\w*. \w With|strong="H6440"\w* \w two|strong="H8147"\w* \w he|strong="H8147"\w* \w flew|strong="H5774"\w*. +\v 3 \w One|strong="H6918"\w* \w called|strong="H7121"\w* \w to|strong="H3068"\w* \w another|strong="H2088"\w*, \w and|strong="H3068"\w* \w said|strong="H7121"\w*, +\q1 “\w Holy|strong="H6918"\w*, \w holy|strong="H6918"\w*, \w holy|strong="H6918"\w*, \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*! +\q2 \w The|strong="H3605"\w* \w whole|strong="H3605"\w* earth \w is|strong="H3068"\w* \w full|strong="H4393"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w glory|strong="H3519"\w*!” +\p +\v 4 \w The|strong="H7121"\w* foundations \w of|strong="H1004"\w* \w the|strong="H7121"\w* \w thresholds|strong="H5592"\w* \w shook|strong="H5128"\w* \w at|strong="H1004"\w* \w the|strong="H7121"\w* \w voice|strong="H6963"\w* \w of|strong="H1004"\w* \w him|strong="H7121"\w* \w who|strong="H7121"\w* \w called|strong="H7121"\w*, \w and|strong="H1004"\w* \w the|strong="H7121"\w* \w house|strong="H1004"\w* \w was|strong="H1004"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w smoke|strong="H6227"\w*. +\v 5 \w Then|strong="H4428"\w* \w I|strong="H3588"\w* said, “Woe \w is|strong="H3068"\w* \w me|strong="H7200"\w*! \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w undone|strong="H1820"\w*, \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w a|strong="H3068"\w* \w man|strong="H7200"\w* \w of|strong="H4428"\w* \w unclean|strong="H2931"\w* \w lips|strong="H8193"\w* \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w live|strong="H3427"\w* \w among|strong="H8432"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* \w unclean|strong="H2931"\w* \w lips|strong="H8193"\w*, \w for|strong="H3588"\w* \w my|strong="H3068"\w* \w eyes|strong="H5869"\w* \w have|strong="H3068"\w* \w seen|strong="H7200"\w* \w the|strong="H7200"\w* \w King|strong="H4428"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H4428"\w* \w Armies|strong="H6635"\w*!” +\p +\v 6 \w Then|strong="H3947"\w* \w one|strong="H4480"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w seraphim|strong="H8314"\w* \w flew|strong="H5774"\w* \w to|strong="H5921"\w* \w me|strong="H5921"\w*, having \w a|strong="H3068"\w* live \w coal|strong="H7531"\w* \w in|strong="H5921"\w* \w his|strong="H3947"\w* \w hand|strong="H3027"\w*, \w which|strong="H4196"\w* \w he|strong="H3027"\w* \w had|strong="H3027"\w* \w taken|strong="H3947"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w tongs|strong="H4457"\w* \w from|strong="H4480"\w* \w off|strong="H5921"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*. +\v 7 \w He|strong="H5921"\w* \w touched|strong="H5060"\w* \w my|strong="H5921"\w* \w mouth|strong="H6310"\w* \w with|strong="H5921"\w* \w it|strong="H5921"\w*, \w and|strong="H6310"\w* \w said|strong="H6310"\w*, “\w Behold|strong="H2009"\w*, \w this|strong="H2088"\w* \w has|strong="H2009"\w* \w touched|strong="H5060"\w* \w your|strong="H5921"\w* \w lips|strong="H8193"\w*; \w and|strong="H6310"\w* \w your|strong="H5921"\w* \w iniquity|strong="H5771"\w* \w is|strong="H2088"\w* \w taken|strong="H5493"\w* \w away|strong="H5493"\w*, \w and|strong="H6310"\w* \w your|strong="H5921"\w* \w sin|strong="H2403"\w* \w forgiven|strong="H3722"\w*.” +\p +\v 8 \w I|strong="H2005"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* Lord’s \w voice|strong="H6963"\w*, \w saying|strong="H6963"\w*, “\w Whom|strong="H4310"\w* \w shall|strong="H4310"\w* \w I|strong="H2005"\w* \w send|strong="H7971"\w*, \w and|strong="H7971"\w* \w who|strong="H4310"\w* \w will|strong="H4310"\w* \w go|strong="H3212"\w* \w for|strong="H7971"\w* \w us|strong="H8085"\w*?” +\p \w Then|strong="H7971"\w* \w I|strong="H2005"\w* \w said|strong="H8085"\w*, “\w Here|strong="H2005"\w* \w I|strong="H2005"\w* \w am|strong="H2005"\w*. \w Send|strong="H7971"\w* \w me|strong="H7971"\w*!” +\p +\v 9 \w He|strong="H5971"\w* \w said|strong="H8085"\w*, “\w Go|strong="H3212"\w*, \w and|strong="H3212"\w* \w tell|strong="H3045"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*, +\q1 ‘\w You|strong="H3045"\w* \w hear|strong="H8085"\w* \w indeed|strong="H8085"\w*, +\q2 \w but|strong="H7200"\w* don’t \w understand|strong="H3045"\w*. +\q1 \w You|strong="H3045"\w* \w see|strong="H7200"\w* \w indeed|strong="H8085"\w*, +\q2 \w but|strong="H7200"\w* don’t \w perceive|strong="H3045"\w*.’ +\q1 +\v 10 \w Make|strong="H8085"\w* \w the|strong="H8085"\w* \w heart|strong="H3820"\w* \w of|strong="H5869"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w fat|strong="H8080"\w*. +\q2 \w Make|strong="H8085"\w* \w their|strong="H8085"\w* ears \w heavy|strong="H3513"\w*, \w and|strong="H7725"\w* \w shut|strong="H8173"\w* \w their|strong="H8085"\w* \w eyes|strong="H5869"\w*; +\q1 \w lest|strong="H6435"\w* \w they|strong="H5971"\w* \w see|strong="H7200"\w* \w with|strong="H5971"\w* \w their|strong="H8085"\w* \w eyes|strong="H5869"\w*, +\q2 \w hear|strong="H8085"\w* \w with|strong="H5971"\w* \w their|strong="H8085"\w* ears, +\q2 \w understand|strong="H8085"\w* \w with|strong="H5971"\w* \w their|strong="H8085"\w* \w heart|strong="H3820"\w*, +\q2 \w and|strong="H7725"\w* \w turn|strong="H7725"\w* \w again|strong="H7725"\w*, \w and|strong="H7725"\w* \w be|strong="H3820"\w* \w healed|strong="H7495"\w*.” +\p +\v 11 Then \w I|strong="H5704"\w* said, “Lord, \w how|strong="H4970"\w* \w long|strong="H5704"\w*?” +\p \w He|strong="H5704"\w* answered, +\q1 “\w Until|strong="H5704"\w* \w cities|strong="H5892"\w* \w are|strong="H5892"\w* \w waste|strong="H8077"\w* \w without|strong="H1004"\w* \w inhabitant|strong="H3427"\w*, +\q2 \w houses|strong="H1004"\w* \w without|strong="H1004"\w* man, +\q2 \w the|strong="H5704"\w* land becomes \w utterly|strong="H5704"\w* \w waste|strong="H8077"\w*, +\q2 +\v 12 \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w removed|strong="H7368"\w* \w men|strong="H7227"\w* \w far|strong="H7368"\w* \w away|strong="H7368"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w forsaken|strong="H5805"\w* \w places|strong="H5805"\w* \w are|strong="H3068"\w* \w many|strong="H7227"\w* \w within|strong="H7130"\w* \w the|strong="H3068"\w* \w land|strong="H7130"\w*. +\q1 +\v 13 \w If|strong="H1961"\w* \w there|strong="H1961"\w* \w is|strong="H1961"\w* \w a|strong="H3068"\w* \w tenth|strong="H6224"\w* \w left|strong="H7725"\w* \w in|strong="H7725"\w* \w it|strong="H7725"\w*, +\q2 \w that|strong="H1961"\w* \w also|strong="H5750"\w* \w will|strong="H1961"\w* \w in|strong="H7725"\w* \w turn|strong="H7725"\w* \w be|strong="H1961"\w* \w consumed|strong="H1197"\w*, +\q1 \w as|strong="H1961"\w* \w a|strong="H3068"\w* terebinth, \w and|strong="H7725"\w* \w as|strong="H1961"\w* \w an|strong="H1961"\w* oak whose stump \w remains|strong="H5750"\w* \w when|strong="H1961"\w* they \w are|strong="H1961"\w* cut down, +\q2 \w so|strong="H1961"\w* \w the|strong="H7725"\w* \w holy|strong="H6944"\w* \w seed|strong="H2233"\w* \w is|strong="H1961"\w* \w its|strong="H7725"\w* stump.” +\c 7 +\p +\v 1 \w In|strong="H5921"\w* \w the|strong="H5921"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* Ahaz \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jotham|strong="H3147"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Uzziah|strong="H5818"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w Rezin|strong="H7526"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Syria \w and|strong="H1121"\w* \w Pekah|strong="H6492"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Remaliah|strong="H7425"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H3478"\w* \w war|strong="H4421"\w* \w against|strong="H5921"\w* \w it|strong="H5921"\w*, \w but|strong="H3808"\w* \w could|strong="H3201"\w* \w not|strong="H3808"\w* \w prevail|strong="H3201"\w* \w against|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 2 \w David|strong="H1732"\w*’s \w house|strong="H1004"\w* \w was|strong="H1732"\w* \w told|strong="H5046"\w*, “Syria \w is|strong="H7307"\w* allied \w with|strong="H1004"\w* Ephraim.” \w His|strong="H1732"\w* \w heart|strong="H3824"\w* \w trembled|strong="H5128"\w*, \w and|strong="H1004"\w* \w the|strong="H6440"\w* \w heart|strong="H3824"\w* \w of|strong="H1004"\w* \w his|strong="H1732"\w* \w people|strong="H5971"\w*, \w as|strong="H3824"\w* \w the|strong="H6440"\w* \w trees|strong="H6086"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w forest|strong="H3293"\w* \w tremble|strong="H5128"\w* \w with|strong="H1004"\w* \w the|strong="H6440"\w* \w wind|strong="H7307"\w*. +\p +\v 3 \w Then|strong="H3318"\w* \w Yahweh|strong="H3068"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w Isaiah|strong="H3470"\w*, “\w Go|strong="H3318"\w* \w out|strong="H3318"\w* \w now|strong="H4994"\w* \w to|strong="H3318"\w* \w meet|strong="H7125"\w* Ahaz, \w you|strong="H4994"\w*, \w and|strong="H1121"\w* Shearjashub \w your|strong="H3068"\w* \w son|strong="H1121"\w*, \w at|strong="H3068"\w* \w the|strong="H3068"\w* \w end|strong="H7097"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w conduit|strong="H8585"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w upper|strong="H5945"\w* \w pool|strong="H1295"\w*, \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w highway|strong="H4546"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* fuller’s \w field|strong="H7704"\w*. +\v 4 Tell \w him|strong="H8104"\w*, ‘\w Be|strong="H1121"\w* \w careful|strong="H8104"\w*, \w and|strong="H1121"\w* \w keep|strong="H8104"\w* \w calm|strong="H8252"\w*. Don’t \w be|strong="H1121"\w* \w afraid|strong="H3372"\w*, neither let \w your|strong="H8104"\w* \w heart|strong="H3824"\w* \w be|strong="H1121"\w* \w faint|strong="H7401"\w* \w because|strong="H3372"\w* \w of|strong="H1121"\w* \w these|strong="H8147"\w* \w two|strong="H8147"\w* \w tails|strong="H2180"\w* \w of|strong="H1121"\w* \w smoking|strong="H6226"\w* torches, \w for|strong="H1121"\w* \w the|strong="H8104"\w* \w fierce|strong="H2750"\w* \w anger|strong="H3824"\w* \w of|strong="H1121"\w* \w Rezin|strong="H7526"\w* \w and|strong="H1121"\w* Syria, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H8104"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Remaliah|strong="H7425"\w*. +\v 5 \w Because|strong="H3588"\w* Syria, Ephraim, \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Remaliah|strong="H7425"\w*, \w have|strong="H1121"\w* \w plotted|strong="H7451"\w* \w evil|strong="H7451"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w*, saying, +\v 6 “Let’s \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5927"\w* \w Judah|strong="H3063"\w*, \w and|strong="H1121"\w* \w tear|strong="H1234"\w* \w it|strong="H8432"\w* apart, \w and|strong="H1121"\w* let’s \w divide|strong="H1234"\w* \w it|strong="H8432"\w* \w among|strong="H8432"\w* ourselves, \w and|strong="H1121"\w* \w set|strong="H4427"\w* \w up|strong="H5927"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w within|strong="H8432"\w* \w it|strong="H8432"\w*, even \w the|strong="H8432"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Tabeel|strong="H2870"\w*.” +\v 7 \w This|strong="H3541"\w* \w is|strong="H1961"\w* \w what|strong="H3541"\w* \w the|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w It|strong="H1961"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w stand|strong="H6965"\w*, \w neither|strong="H3808"\w* \w shall|strong="H3808"\w* \w it|strong="H1961"\w* \w happen|strong="H1961"\w*.” +\v 8 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w head|strong="H7218"\w* \w of|strong="H8141"\w* Syria \w is|strong="H7218"\w* \w Damascus|strong="H1834"\w*, \w and|strong="H5971"\w* \w the|strong="H3588"\w* \w head|strong="H7218"\w* \w of|strong="H8141"\w* \w Damascus|strong="H1834"\w* \w is|strong="H7218"\w* \w Rezin|strong="H7526"\w*. \w Within|strong="H1157"\w* \w sixty-five|strong="H8346"\w* \w years|strong="H8141"\w* Ephraim \w shall|strong="H5971"\w* \w be|strong="H5971"\w* \w broken|strong="H2844"\w* \w in|strong="H8141"\w* pieces, \w so|strong="H3588"\w* \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w shall|strong="H5971"\w* \w not|strong="H3588"\w* \w be|strong="H5971"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w*. +\v 9 \w The|strong="H3588"\w* \w head|strong="H7218"\w* \w of|strong="H1121"\w* Ephraim \w is|strong="H1121"\w* \w Samaria|strong="H8111"\w*, \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w head|strong="H7218"\w* \w of|strong="H1121"\w* \w Samaria|strong="H8111"\w* \w is|strong="H1121"\w* \w Remaliah|strong="H7425"\w*’s \w son|strong="H1121"\w*. \w If|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H1121"\w* \w not|strong="H3808"\w* believe, \w surely|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w established|strong="H3808"\w*.’” +\p +\v 10 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w again|strong="H3254"\w* \w to|strong="H1696"\w* Ahaz, \w saying|strong="H1696"\w*, +\v 11 “\w Ask|strong="H7592"\w* \w a|strong="H3068"\w* sign \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*; \w ask|strong="H7592"\w* \w it|strong="H3068"\w* \w either|strong="H5973"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w depth|strong="H6009"\w*, \w or|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w height|strong="H1361"\w* \w above|strong="H4605"\w*.” +\p +\v 12 \w But|strong="H3808"\w* Ahaz said, “\w I|strong="H3808"\w* won’t \w ask|strong="H7592"\w*. \w I|strong="H3808"\w* won’t \w tempt|strong="H5254"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 13 \w He|strong="H3588"\w* \w said|strong="H8085"\w*, “\w Listen|strong="H8085"\w* \w now|strong="H4994"\w*, \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w David|strong="H1732"\w*. \w Is|strong="H1571"\w* \w it|strong="H3588"\w* \w not|strong="H3588"\w* \w enough|strong="H4592"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w to|strong="H8085"\w* \w try|strong="H3811"\w* \w the|strong="H8085"\w* \w patience|strong="H3811"\w* \w of|strong="H1004"\w* men, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H1571"\w* \w try|strong="H3811"\w* \w the|strong="H8085"\w* \w patience|strong="H3811"\w* \w of|strong="H1004"\w* \w my|strong="H8085"\w* God \w also|strong="H1571"\w*? +\v 14 \w Therefore|strong="H3651"\w* \w the|strong="H5414"\w* Lord \w himself|strong="H1931"\w* \w will|strong="H1121"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* sign. \w Behold|strong="H2009"\w*, \w the|strong="H5414"\w* \w virgin|strong="H5959"\w* \w will|strong="H1121"\w* \w conceive|strong="H2030"\w*, \w and|strong="H1121"\w* \w bear|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w shall|strong="H1121"\w* \w call|strong="H7121"\w* \w his|strong="H5414"\w* \w name|strong="H8034"\w* \w Immanuel|strong="H6005"\w*.\f + \fr 7:14 \ft “Immanuel” means “God with us”.\f* +\v 15 \w He|strong="H3045"\w* \w shall|strong="H7451"\w* eat \w butter|strong="H2529"\w* \w and|strong="H3045"\w* \w honey|strong="H1706"\w* \w when|strong="H3045"\w* \w he|strong="H3045"\w* \w knows|strong="H3045"\w* \w to|strong="H3045"\w* \w refuse|strong="H3988"\w* \w the|strong="H3045"\w* \w evil|strong="H7451"\w* \w and|strong="H3045"\w* choose \w the|strong="H3045"\w* \w good|strong="H2896"\w*. +\v 16 \w For|strong="H3588"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w child|strong="H5288"\w* \w knows|strong="H3045"\w* \w to|strong="H6440"\w* \w refuse|strong="H3988"\w* \w the|strong="H6440"\w* \w evil|strong="H7451"\w* \w and|strong="H4428"\w* choose \w the|strong="H6440"\w* \w good|strong="H2896"\w*, \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w whose|strong="H3045"\w* \w two|strong="H8147"\w* \w kings|strong="H4428"\w* \w you|strong="H3588"\w* \w abhor|strong="H3988"\w* \w shall|strong="H4428"\w* \w be|strong="H4428"\w* \w forsaken|strong="H5800"\w*. +\v 17 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* bring \w on|strong="H5921"\w* \w you|strong="H5921"\w*, \w on|strong="H5921"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w*, \w and|strong="H3063"\w* \w on|strong="H5921"\w* \w your|strong="H3068"\w* father’s \w house|strong="H1004"\w* \w days|strong="H3117"\w* \w that|strong="H5971"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w come|strong="H5971"\w*, \w from|strong="H5493"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w that|strong="H5971"\w* Ephraim \w departed|strong="H5493"\w* \w from|strong="H5493"\w* \w Judah|strong="H3063"\w*, \w even|strong="H3808"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria. +\p +\v 18 \w It|strong="H1931"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w* \w in|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w whistle|strong="H8319"\w* \w for|strong="H4714"\w* \w the|strong="H3068"\w* \w fly|strong="H2070"\w* \w that|strong="H3117"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w uttermost|strong="H7097"\w* \w part|strong="H7097"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w rivers|strong="H2975"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H3068"\w* \w for|strong="H4714"\w* \w the|strong="H3068"\w* \w bee|strong="H1682"\w* \w that|strong="H3117"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* land \w of|strong="H3068"\w* Assyria. +\v 19 \w They|strong="H3605"\w* \w shall|strong="H5158"\w* come, \w and|strong="H5158"\w* \w shall|strong="H5158"\w* \w all|strong="H3605"\w* \w rest|strong="H5117"\w* \w in|strong="H5117"\w* \w the|strong="H3605"\w* \w desolate|strong="H1327"\w* \w valleys|strong="H5158"\w*, \w in|strong="H5117"\w* \w the|strong="H3605"\w* \w clefts|strong="H5357"\w* \w of|strong="H5158"\w* \w the|strong="H3605"\w* \w rocks|strong="H5553"\w*, \w on|strong="H5117"\w* \w all|strong="H3605"\w* \w thorn|strong="H5285"\w* hedges, \w and|strong="H5158"\w* \w on|strong="H5117"\w* \w all|strong="H3605"\w* pastures. +\p +\v 20 \w In|strong="H4428"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w the|strong="H3117"\w* Lord \w will|strong="H4428"\w* \w shave|strong="H1548"\w* \w with|strong="H3117"\w* \w a|strong="H3068"\w* \w razor|strong="H8593"\w* \w that|strong="H3117"\w* \w is|strong="H1931"\w* \w hired|strong="H7917"\w* \w in|strong="H4428"\w* \w the|strong="H3117"\w* parts \w beyond|strong="H5676"\w* \w the|strong="H3117"\w* \w River|strong="H5104"\w*, \w even|strong="H1571"\w* \w with|strong="H3117"\w* \w the|strong="H3117"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria, \w the|strong="H3117"\w* \w head|strong="H7218"\w* \w and|strong="H4428"\w* \w the|strong="H3117"\w* \w hair|strong="H8181"\w* \w of|strong="H4428"\w* \w the|strong="H3117"\w* \w feet|strong="H7272"\w*; \w and|strong="H4428"\w* \w it|strong="H1931"\w* \w shall|strong="H4428"\w* \w also|strong="H1571"\w* \w consume|strong="H5595"\w* \w the|strong="H3117"\w* \w beard|strong="H2206"\w*. +\p +\v 21 \w It|strong="H1931"\w* \w shall|strong="H3117"\w* \w happen|strong="H1961"\w* \w in|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w a|strong="H3068"\w* man \w shall|strong="H3117"\w* \w keep|strong="H2421"\w* \w alive|strong="H2421"\w* \w a|strong="H3068"\w* \w young|strong="H1241"\w* \w cow|strong="H5697"\w*, \w and|strong="H3117"\w* \w two|strong="H8147"\w* \w sheep|strong="H6629"\w*. +\v 22 \w It|strong="H3588"\w* \w shall|strong="H6213"\w* \w happen|strong="H1961"\w*, \w that|strong="H3588"\w* \w because|strong="H3588"\w* \w of|strong="H7230"\w* \w the|strong="H3605"\w* \w abundance|strong="H7230"\w* \w of|strong="H7230"\w* \w milk|strong="H2461"\w* \w which|strong="H3588"\w* \w they|strong="H3588"\w* \w shall|strong="H6213"\w* \w give|strong="H6213"\w* \w he|strong="H3588"\w* \w shall|strong="H6213"\w* eat \w butter|strong="H2529"\w*, \w for|strong="H3588"\w* \w everyone|strong="H3605"\w* \w will|strong="H1961"\w* eat \w butter|strong="H2529"\w* \w and|strong="H2461"\w* \w honey|strong="H1706"\w* \w that|strong="H3588"\w* \w is|strong="H3605"\w* \w left|strong="H3498"\w* \w within|strong="H7130"\w* \w the|strong="H3605"\w* \w land|strong="H7130"\w*. +\p +\v 23 \w It|strong="H1931"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w in|strong="H3117"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H3605"\w* \w every|strong="H3605"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w there|strong="H8033"\w* \w were|strong="H1961"\w* \w a|strong="H3068"\w* thousand \w vines|strong="H1612"\w* worth \w a|strong="H3068"\w* thousand \w silver|strong="H3701"\w* \w shekels|strong="H3701"\w*,\f + \fr 7:23 \ft A shekel is about 10 grams or about 0.35 ounces, so 1000 shekels is about 10 kilograms or 22 pounds.\f* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w for|strong="H3117"\w* \w briers|strong="H8068"\w* \w and|strong="H3701"\w* \w thorns|strong="H7898"\w*. +\v 24 People \w will|strong="H1961"\w* \w go|strong="H1961"\w* \w there|strong="H8033"\w* \w with|strong="H3605"\w* \w arrows|strong="H2678"\w* \w and|strong="H8033"\w* \w with|strong="H3605"\w* \w bow|strong="H7198"\w*, \w because|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w briers|strong="H8068"\w* \w and|strong="H8033"\w* \w thorns|strong="H7898"\w*. +\v 25 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w hills|strong="H2022"\w* \w that|strong="H3605"\w* \w were|strong="H1961"\w* \w cultivated|strong="H5737"\w* \w with|strong="H3605"\w* \w the|strong="H3605"\w* \w hoe|strong="H4576"\w*, \w you|strong="H3605"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w come|strong="H1961"\w* \w there|strong="H8033"\w* \w for|strong="H3605"\w* \w fear|strong="H3374"\w* \w of|strong="H2022"\w* \w briers|strong="H8068"\w* \w and|strong="H8033"\w* \w thorns|strong="H7898"\w*; \w but|strong="H3808"\w* \w it|strong="H8033"\w* \w shall|strong="H3808"\w* \w be|strong="H1961"\w* \w for|strong="H3605"\w* \w the|strong="H3605"\w* \w sending|strong="H4916"\w* \w out|strong="H3605"\w* \w of|strong="H2022"\w* \w oxen|strong="H7794"\w*, \w and|strong="H8033"\w* \w for|strong="H3605"\w* \w sheep|strong="H7716"\w* \w to|strong="H1961"\w* \w tread|strong="H4823"\w* \w on|strong="H1961"\w*.” +\c 8 +\p +\v 1 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w me|strong="H5921"\w*, “\w Take|strong="H3947"\w* \w a|strong="H3068"\w* \w large|strong="H1419"\w* \w tablet|strong="H1549"\w*, \w and|strong="H3068"\w* \w write|strong="H3789"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w man|strong="H1419"\w*’s \w pen|strong="H2747"\w*, ‘\w For|strong="H5921"\w* Maher Shalal Hash Baz’;\f + \fr 8:1 \ft “Maher Shalal Hash Baz” means “quick to the plunder, swift to the prey”.\f* +\v 2 \w and|strong="H1121"\w* \w I|strong="H1121"\w* \w will|strong="H1121"\w* \w take|strong="H1121"\w* \w for|strong="H1121"\w* myself faithful \w witnesses|strong="H5707"\w* \w to|strong="H1121"\w* \w testify|strong="H5749"\w*: Uriah \w the|strong="H3548"\w* \w priest|strong="H3548"\w*, \w and|strong="H1121"\w* \w Zechariah|strong="H2148"\w* \w the|strong="H3548"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeberechiah|strong="H3000"\w*.” +\p +\v 3 \w I|strong="H1121"\w* \w went|strong="H3068"\w* \w to|strong="H3068"\w* \w the|strong="H3205"\w* \w prophetess|strong="H5031"\w*, \w and|strong="H1121"\w* \w she|strong="H7121"\w* \w conceived|strong="H2029"\w*, \w and|strong="H1121"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*. \w Then|strong="H7126"\w* \w Yahweh|strong="H3068"\w* \w said|strong="H7121"\w* \w to|strong="H3068"\w* \w me|strong="H7121"\w*, “\w Call|strong="H7121"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w* ‘Maher Shalal Hash Baz.’ +\v 4 \w For|strong="H3588"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w child|strong="H5288"\w* \w knows|strong="H3045"\w* \w how|strong="H3588"\w* \w to|strong="H6440"\w* say, ‘\w My|strong="H3045"\w* father’ \w and|strong="H4428"\w* ‘\w My|strong="H3045"\w* mother,’ \w the|strong="H6440"\w* \w riches|strong="H2428"\w* \w of|strong="H4428"\w* \w Damascus|strong="H1834"\w* \w and|strong="H4428"\w* \w the|strong="H6440"\w* \w plunder|strong="H7998"\w* \w of|strong="H4428"\w* \w Samaria|strong="H8111"\w* \w will|strong="H4428"\w* \w be|strong="H4428"\w* \w carried|strong="H5375"\w* \w away|strong="H5375"\w* \w by|strong="H7121"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria.” +\p +\v 5 \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w* \w yet|strong="H5750"\w* \w again|strong="H5750"\w*, \w saying|strong="H1696"\w*, +\v 6 “\w Because|strong="H3588"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w has|strong="H3588"\w* \w refused|strong="H3988"\w* \w the|strong="H3588"\w* \w waters|strong="H4325"\w* \w of|strong="H1121"\w* \w Shiloah|strong="H7975"\w* \w that|strong="H3588"\w* \w go|strong="H1980"\w* softly, \w and|strong="H1121"\w* \w rejoice|strong="H4885"\w* \w in|strong="H1980"\w* \w Rezin|strong="H7526"\w* \w and|strong="H1121"\w* \w Remaliah|strong="H7425"\w*’s \w son|strong="H1121"\w*; +\v 7 \w now|strong="H2009"\w* \w therefore|strong="H3651"\w*, \w behold|strong="H2009"\w*, \w the|strong="H3605"\w* Lord \w brings|strong="H5927"\w* \w upon|strong="H5921"\w* \w them|strong="H5921"\w* \w the|strong="H3605"\w* \w mighty|strong="H6099"\w* \w flood|strong="H5104"\w* \w waters|strong="H4325"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w River|strong="H5104"\w*: \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w and|strong="H1980"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w glory|strong="H3519"\w*. \w It|strong="H5921"\w* \w will|strong="H4428"\w* \w come|strong="H1980"\w* \w up|strong="H5927"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* channels, \w and|strong="H1980"\w* \w go|strong="H1980"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w banks|strong="H1415"\w*. +\v 8 \w It|strong="H4393"\w* \w will|strong="H1961"\w* \w sweep|strong="H2498"\w* onward \w into|strong="H1961"\w* \w Judah|strong="H3063"\w*. \w It|strong="H4393"\w* \w will|strong="H1961"\w* \w overflow|strong="H7857"\w* \w and|strong="H3063"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w*. \w It|strong="H4393"\w* \w will|strong="H1961"\w* \w reach|strong="H5060"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w neck|strong="H6677"\w*. \w The|strong="H5704"\w* stretching \w out|strong="H5674"\w* \w of|strong="H7341"\w* \w its|strong="H1961"\w* \w wings|strong="H3671"\w* \w will|strong="H1961"\w* \w fill|strong="H4393"\w* \w the|strong="H5704"\w* \w width|strong="H7341"\w* \w of|strong="H7341"\w* \w your|strong="H1961"\w* land, \w O|strong="H3068"\w* \w Immanuel|strong="H6005"\w*. +\p +\v 9 Make \w an|strong="H5971"\w* uproar, \w you|strong="H3605"\w* \w peoples|strong="H5971"\w*, \w and|strong="H5971"\w* \w be|strong="H5971"\w* \w broken|strong="H2865"\w* \w in|strong="H5971"\w* \w pieces|strong="H2865"\w*! \w Listen|strong="H3605"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* \w from|strong="H5971"\w* \w far|strong="H4801"\w* \w countries|strong="H4801"\w*: dress \w for|strong="H3605"\w* battle, \w and|strong="H5971"\w* \w be|strong="H5971"\w* \w shattered|strong="H2865"\w*! Dress \w for|strong="H3605"\w* battle, \w and|strong="H5971"\w* \w be|strong="H5971"\w* \w shattered|strong="H2865"\w*! +\v 10 \w Take|strong="H5779"\w* \w counsel|strong="H6098"\w* \w together|strong="H5973"\w*, \w and|strong="H6965"\w* \w it|strong="H3588"\w* \w will|strong="H1697"\w* \w be|strong="H3808"\w* \w brought|strong="H6565"\w* \w to|strong="H1696"\w* \w nothing|strong="H3808"\w*; \w speak|strong="H1696"\w* \w the|strong="H3588"\w* \w word|strong="H1697"\w*, \w and|strong="H6965"\w* \w it|strong="H3588"\w* \w will|strong="H1697"\w* \w not|strong="H3808"\w* \w stand|strong="H6965"\w*, \w for|strong="H3588"\w* \w God|strong="H3808"\w* \w is|strong="H1697"\w* \w with|strong="H5973"\w* \w us|strong="H3588"\w*.” +\p +\v 11 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* spoke \w this|strong="H2088"\w* \w to|strong="H3068"\w* \w me|strong="H3256"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w strong|strong="H2393"\w* \w hand|strong="H3027"\w*, \w and|strong="H3068"\w* \w instructed|strong="H3256"\w* \w me|strong="H3256"\w* \w not|strong="H2088"\w* \w to|strong="H3068"\w* \w walk|strong="H3212"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*, saying, +\v 12 “Don’t call \w a|strong="H3068"\w* \w conspiracy|strong="H7195"\w* \w all|strong="H3605"\w* \w that|strong="H5971"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* call \w a|strong="H3068"\w* \w conspiracy|strong="H7195"\w*. Don’t \w fear|strong="H3372"\w* \w their|strong="H3605"\w* threats \w or|strong="H3808"\w* \w be|strong="H3808"\w* terrorized. +\v 13 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w is|strong="H3068"\w* \w who|strong="H1931"\w* \w you|strong="H4172"\w* must \w respect|strong="H4172"\w* \w as|strong="H3068"\w* \w holy|strong="H6942"\w*. \w He|strong="H1931"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w one|strong="H1931"\w* \w you|strong="H4172"\w* must \w fear|strong="H4172"\w*. \w He|strong="H1931"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w one|strong="H1931"\w* \w you|strong="H4172"\w* must \w dread|strong="H6206"\w*. +\v 14 \w He|strong="H1004"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w sanctuary|strong="H4720"\w*, \w but|strong="H1961"\w* \w for|strong="H3427"\w* \w both|strong="H8147"\w* \w houses|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w he|strong="H1004"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w stumbling|strong="H4383"\w* stone \w and|strong="H3478"\w* \w a|strong="H3068"\w* \w rock|strong="H6697"\w* \w that|strong="H3478"\w* \w makes|strong="H3427"\w* \w them|strong="H8147"\w* \w fall|strong="H1961"\w*. \w For|strong="H3427"\w* \w the|strong="H1961"\w* \w people|strong="H3427"\w* \w of|strong="H1004"\w* \w Jerusalem|strong="H3389"\w*, \w he|strong="H1004"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w trap|strong="H4170"\w* \w and|strong="H3478"\w* \w a|strong="H3068"\w* \w snare|strong="H4170"\w*. +\v 15 \w Many|strong="H7227"\w* \w will|strong="H7227"\w* \w stumble|strong="H3782"\w* \w over|strong="H5307"\w* \w it|strong="H3920"\w*, \w fall|strong="H5307"\w*, \w be|strong="H7665"\w* \w broken|strong="H7665"\w*, \w be|strong="H7665"\w* \w snared|strong="H3369"\w*, \w and|strong="H5307"\w* \w be|strong="H7665"\w* \w captured|strong="H3920"\w*.” +\p +\v 16 Wrap \w up|strong="H2856"\w* \w the|strong="H2856"\w* covenant. \w Seal|strong="H2856"\w* \w the|strong="H2856"\w* \w law|strong="H8451"\w* \w among|strong="H8451"\w* \w my|strong="H6887"\w* \w disciples|strong="H3928"\w*. +\v 17 \w I|strong="H6440"\w* \w will|strong="H3068"\w* \w wait|strong="H6960"\w* \w for|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H3068"\w* \w hides|strong="H5641"\w* \w his|strong="H3068"\w* \w face|strong="H6440"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w*, \w and|strong="H3068"\w* \w I|strong="H6440"\w* \w will|strong="H3068"\w* \w look|strong="H6960"\w* \w for|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 18 \w Behold|strong="H2009"\w*, \w I|strong="H5414"\w* \w and|strong="H3478"\w* \w the|strong="H5414"\w* \w children|strong="H3206"\w* whom \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w me|strong="H5414"\w* \w are|strong="H3478"\w* \w for|strong="H3068"\w* signs \w and|strong="H3478"\w* \w for|strong="H3068"\w* \w wonders|strong="H4159"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w* \w from|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w who|strong="H3068"\w* \w dwells|strong="H7931"\w* \w in|strong="H3478"\w* \w Mount|strong="H2022"\w* \w Zion|strong="H6726"\w*. +\p +\v 19 \w When|strong="H3588"\w* \w they|strong="H3588"\w* \w tell|strong="H1897"\w* \w you|strong="H3588"\w*, “\w Consult|strong="H1875"\w* \w with|strong="H5971"\w* \w those|strong="H3588"\w* \w who|strong="H5971"\w* \w have|strong="H5971"\w* familiar spirits \w and|strong="H5971"\w* \w with|strong="H5971"\w* \w the|strong="H3588"\w* \w wizards|strong="H3049"\w*, \w who|strong="H5971"\w* chirp \w and|strong="H5971"\w* \w who|strong="H5971"\w* \w mutter|strong="H1897"\w*,” shouldn’t \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w consult|strong="H1875"\w* \w with|strong="H5971"\w* \w their|strong="H3588"\w* \w God|strong="H3808"\w*? \w Should|strong="H3588"\w* \w they|strong="H3588"\w* \w consult|strong="H1875"\w* \w the|strong="H3588"\w* \w dead|strong="H4191"\w* \w on|strong="H4191"\w* \w behalf|strong="H1157"\w* \w of|strong="H5971"\w* \w the|strong="H3588"\w* \w living|strong="H2416"\w*? +\v 20 Turn \w to|strong="H1697"\w* \w the|strong="H1697"\w* \w law|strong="H8451"\w* \w and|strong="H1697"\w* \w to|strong="H1697"\w* \w the|strong="H1697"\w* covenant! If \w they|strong="H3808"\w* don’t \w speak|strong="H1697"\w* according \w to|strong="H1697"\w* \w this|strong="H2088"\w* \w word|strong="H1697"\w*, \w surely|strong="H3808"\w* \w there|strong="H2088"\w* \w is|strong="H2088"\w* \w no|strong="H3808"\w* \w morning|strong="H7837"\w* \w for|strong="H3808"\w* \w them|strong="H1697"\w*. +\v 21 \w They|strong="H3588"\w* \w will|strong="H1961"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w it|strong="H3588"\w*, \w very|strong="H4605"\w* distressed \w and|strong="H4428"\w* \w hungry|strong="H7457"\w*. \w It|strong="H3588"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w that|strong="H3588"\w* \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H4428"\w* \w hungry|strong="H7457"\w*, \w they|strong="H3588"\w* \w will|strong="H1961"\w* worry, \w and|strong="H4428"\w* \w curse|strong="H7043"\w* \w their|strong="H3588"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w their|strong="H3588"\w* God. \w They|strong="H3588"\w* \w will|strong="H1961"\w* \w turn|strong="H6437"\w* \w their|strong="H3588"\w* \w faces|strong="H6437"\w* \w upward|strong="H4605"\w*, +\v 22 \w then|strong="H2009"\w* \w look|strong="H2009"\w* \w to|strong="H5080"\w* \w the|strong="H2009"\w* earth \w and|strong="H6869"\w* \w see|strong="H2009"\w* \w distress|strong="H6869"\w*, \w darkness|strong="H2825"\w*, \w and|strong="H6869"\w* \w the|strong="H2009"\w* \w gloom|strong="H4588"\w* \w of|strong="H5080"\w* \w anguish|strong="H6869"\w*. \w They|strong="H5080"\w* \w will|strong="H6869"\w* be \w driven|strong="H5080"\w* \w into|strong="H5080"\w* thick \w darkness|strong="H2825"\w*. +\c 9 +\p +\v 1 \w But|strong="H7200"\w* \w there|strong="H3427"\w* \w shall|strong="H5971"\w* \w be|strong="H5971"\w* \w no|strong="H7200"\w* \w more|strong="H1419"\w* \w gloom|strong="H6757"\w* \w for|strong="H5921"\w* \w her|strong="H5921"\w* \w who|strong="H5971"\w* \w was|strong="H3427"\w* \w in|strong="H3427"\w* anguish. \w In|strong="H3427"\w* \w the|strong="H5921"\w* former \w time|strong="H5921"\w*, \w he|strong="H5921"\w* \w brought|strong="H1980"\w* \w into|strong="H1980"\w* contempt \w the|strong="H5921"\w* land \w of|strong="H3427"\w* Zebulun \w and|strong="H1980"\w* \w the|strong="H5921"\w* land \w of|strong="H3427"\w* Naphtali; \w but|strong="H7200"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* latter \w time|strong="H5921"\w* \w he|strong="H5921"\w* \w has|strong="H5971"\w* \w made|strong="H1980"\w* \w it|strong="H5921"\w* glorious, \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w way|strong="H1980"\w* \w of|strong="H3427"\w* \w the|strong="H5921"\w* sea, \w beyond|strong="H5921"\w* \w the|strong="H5921"\w* Jordan, Galilee \w of|strong="H3427"\w* \w the|strong="H5921"\w* \w nations|strong="H5971"\w*. +\p +\v 2 \w The|strong="H6440"\w* \w people|strong="H1471"\w* \w who|strong="H1471"\w* walked \w in|strong="H6440"\w* darkness \w have|strong="H1471"\w* seen \w a|strong="H3068"\w* \w great|strong="H1431"\w* light. +\q2 \w The|strong="H6440"\w* light \w has|strong="H1471"\w* shined \w on|strong="H6440"\w* those \w who|strong="H1471"\w* lived \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* shadow \w of|strong="H6440"\w* death. +\q1 +\v 3 \w You|strong="H3588"\w* \w have|strong="H3117"\w* multiplied \w the|strong="H3588"\w* nation. +\q2 \w You|strong="H3588"\w* \w have|strong="H3117"\w* increased \w their|strong="H3588"\w* joy. +\p \w They|strong="H3588"\w* rejoice \w before|strong="H3117"\w* \w you|strong="H3588"\w* according \w to|strong="H3117"\w* \w the|strong="H3588"\w* joy \w in|strong="H3117"\w* harvest, \w as|strong="H3117"\w* men rejoice \w when|strong="H3588"\w* \w they|strong="H3588"\w* divide \w the|strong="H3588"\w* plunder. +\v 4 \w For|strong="H3588"\w* \w the|strong="H3605"\w* yoke \w of|strong="H1818"\w* \w his|strong="H3605"\w* burden, \w and|strong="H1818"\w* \w the|strong="H3605"\w* staff \w of|strong="H1818"\w* \w his|strong="H3605"\w* shoulder, \w the|strong="H3605"\w* rod \w of|strong="H1818"\w* \w his|strong="H3605"\w* oppressor, \w you|strong="H3588"\w* \w have|strong="H1961"\w* broken \w as|strong="H1961"\w* \w in|strong="H1556"\w* \w the|strong="H3605"\w* day \w of|strong="H1818"\w* Midian. +\v 5 \w For|strong="H3588"\w* \w all|strong="H5414"\w* \w the|strong="H5921"\w* armor \w of|strong="H1121"\w* \w the|strong="H5921"\w* armed \w man|strong="H1368"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* noisy battle, \w and|strong="H1121"\w* \w the|strong="H5921"\w* garments rolled \w in|strong="H5921"\w* blood, \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w for|strong="H3588"\w* burning, fuel \w for|strong="H3588"\w* \w the|strong="H5921"\w* fire. +\v 6 \w For|strong="H5704"\w* \w a|strong="H3068"\w* child \w is|strong="H3068"\w* born \w to|strong="H5704"\w* \w us|strong="H5921"\w*. \w A|strong="H3068"\w* son \w is|strong="H3068"\w* \w given|strong="H6213"\w* \w to|strong="H5704"\w* \w us|strong="H5921"\w*; \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w government|strong="H4951"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w on|strong="H5921"\w* \w his|strong="H3068"\w* shoulders. \w His|strong="H3068"\w* name \w will|strong="H3068"\w* \w be|strong="H3068"\w* called Wonderful Counselor, Mighty \w God|strong="H3068"\w*, \w Everlasting|strong="H5769"\w* Father, Prince \w of|strong="H3068"\w* \w Peace|strong="H7965"\w*. +\v 7 \w Of|strong="H1697"\w* \w the|strong="H7971"\w* increase \w of|strong="H1697"\w* \w his|strong="H7971"\w* government \w and|strong="H3478"\w* \w of|strong="H1697"\w* peace \w there|strong="H1697"\w* \w shall|strong="H3478"\w* \w be|strong="H1697"\w* \w no|strong="H7971"\w* end, \w on|strong="H5307"\w* \w David|strong="H7971"\w*’s throne, \w and|strong="H3478"\w* \w on|strong="H5307"\w* \w his|strong="H7971"\w* kingdom, \w to|strong="H3478"\w* establish \w it|strong="H7971"\w*, \w and|strong="H3478"\w* \w to|strong="H3478"\w* uphold \w it|strong="H7971"\w* \w with|strong="H1697"\w* justice \w and|strong="H3478"\w* \w with|strong="H1697"\w* righteousness \w from|strong="H3478"\w* \w that|strong="H1697"\w* \w time|strong="H3478"\w* \w on|strong="H5307"\w*, even forever. \w The|strong="H7971"\w* zeal \w of|strong="H1697"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1697"\w* Armies \w will|strong="H3478"\w* perform \w this|strong="H1697"\w*. +\p +\v 8 \w The|strong="H3605"\w* Lord sent \w a|strong="H3068"\w* word \w into|strong="H3045"\w* Jacob, +\q2 \w and|strong="H5971"\w* \w it|strong="H3045"\w* falls \w on|strong="H3427"\w* \w Israel|strong="H5971"\w*. +\q1 +\v 9 All \w the|strong="H1129"\w* people \w will|strong="H5307"\w* know, +\q2 including Ephraim \w and|strong="H5307"\w* \w the|strong="H1129"\w* inhabitants \w of|strong="H5307"\w* Samaria, \w who|strong="H1129"\w* say \w in|strong="H1129"\w* pride \w and|strong="H5307"\w* \w in|strong="H1129"\w* arrogance \w of|strong="H5307"\w* heart, +\q1 +\v 10 “\w The|strong="H5921"\w* bricks \w have|strong="H3068"\w* fallen, +\q2 \w but|strong="H3068"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* build \w with|strong="H3068"\w* cut stone. +\q1 \w The|strong="H5921"\w* sycamore fig trees \w have|strong="H3068"\w* \w been|strong="H3068"\w* cut \w down|strong="H5921"\w*, +\q2 \w but|strong="H3068"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w put|strong="H3068"\w* cedars \w in|strong="H5921"\w* \w their|strong="H3068"\w* place.” +\q1 +\v 11 \w Therefore|strong="H2063"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3478"\w* \w set|strong="H3478"\w* \w up|strong="H3605"\w* \w on|strong="H3027"\w* \w high|strong="H5186"\w* \w against|strong="H3027"\w* \w him|strong="H3027"\w* \w the|strong="H3605"\w* adversaries \w of|strong="H3027"\w* Rezin, +\q2 \w and|strong="H3478"\w* \w will|strong="H3478"\w* stir \w up|strong="H3605"\w* \w his|strong="H3605"\w* \w enemies|strong="H3027"\w*, +\q2 +\v 12 \w The|strong="H5221"\w* Syrians \w in|strong="H3068"\w* front, +\q2 \w and|strong="H3068"\w* \w the|strong="H5221"\w* Philistines behind; +\q2 \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* devour \w Israel|strong="H5971"\w* \w with|strong="H3068"\w* open mouth. +\q1 \w For|strong="H5704"\w* \w all|strong="H5704"\w* \w this|strong="H7725"\w*, \w his|strong="H3068"\w* anger \w is|strong="H3068"\w* \w not|strong="H3808"\w* \w turned|strong="H7725"\w* \w away|strong="H7725"\w*, +\q2 \w but|strong="H3808"\w* \w his|strong="H3068"\w* hand \w is|strong="H3068"\w* stretched \w out|strong="H1875"\w* \w still|strong="H7725"\w*. +\b +\q1 +\v 13 \w Yet|strong="H3068"\w* \w the|strong="H3068"\w* people \w have|strong="H3068"\w* not \w turned|strong="H3478"\w* \w to|strong="H3478"\w* \w him|strong="H3772"\w* \w who|strong="H3068"\w* struck \w them|strong="H3117"\w*, +\q2 neither \w have|strong="H3068"\w* \w they|strong="H3117"\w* sought \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* Armies. +\q1 +\v 14 Therefore \w Yahweh|strong="H3068"\w* \w will|strong="H1931"\w* cut \w off|strong="H5375"\w* \w from|strong="H6440"\w* Israel \w head|strong="H7218"\w* \w and|strong="H7218"\w* \w tail|strong="H2180"\w*, +\q2 palm branch \w and|strong="H7218"\w* reed, \w in|strong="H6440"\w* \w one|strong="H1931"\w* day. +\q1 +\v 15 \w The|strong="H1961"\w* elder \w and|strong="H5971"\w* \w the|strong="H1961"\w* honorable \w man|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H1961"\w* head, +\q2 \w and|strong="H5971"\w* \w the|strong="H1961"\w* prophet \w who|strong="H5971"\w* teaches \w lies|strong="H1961"\w* \w is|strong="H2088"\w* \w the|strong="H1961"\w* tail. +\q1 +\v 16 \w For|strong="H3588"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* lead \w this|strong="H2063"\w* \w people|strong="H3808"\w* lead \w them|strong="H5921"\w* astray; +\q2 \w and|strong="H7725"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H3027"\w* led \w by|strong="H3027"\w* \w them|strong="H5921"\w* \w are|strong="H3027"\w* \w destroyed|strong="H1696"\w*. +\q1 +\v 17 \w Therefore|strong="H3588"\w* \w the|strong="H3588"\w* Lord \w will|strong="H3293"\w* \w not|strong="H3588"\w* rejoice over \w their|strong="H3588"\w* young men, +\q2 neither \w will|strong="H3293"\w* \w he|strong="H3588"\w* \w have|strong="H3588"\w* compassion \w on|strong="H3341"\w* \w their|strong="H3588"\w* fatherless \w and|strong="H8068"\w* widows; +\q1 \w for|strong="H3588"\w* everyone \w is|strong="H3588"\w* profane \w and|strong="H8068"\w* \w an|strong="H3588"\w* evildoer, +\q2 \w and|strong="H8068"\w* \w every|strong="H3588"\w* mouth speaks folly. +\q1 \w For|strong="H3588"\w* all \w this|strong="H3588"\w* \w his|strong="H3588"\w* anger \w is|strong="H3588"\w* \w not|strong="H3588"\w* turned \w away|strong="H1197"\w*, +\q2 \w but|strong="H3588"\w* \w his|strong="H3588"\w* hand \w is|strong="H3588"\w* stretched out \w still|strong="H3588"\w*. +\b +\q1 +\v 18 \w For|strong="H3068"\w* wickedness burns \w like|strong="H1961"\w* \w a|strong="H3068"\w* fire. +\q2 \w It|strong="H1961"\w* devours \w the|strong="H3068"\w* briers \w and|strong="H3068"\w* thorns; +\q2 yes, \w it|strong="H1961"\w* kindles \w in|strong="H3068"\w* \w the|strong="H3068"\w* thickets \w of|strong="H3068"\w* \w the|strong="H3068"\w* forest, +\q2 \w and|strong="H3068"\w* \w they|strong="H3068"\w* roll upward \w in|strong="H3068"\w* \w a|strong="H3068"\w* column \w of|strong="H3068"\w* smoke. +\q1 +\v 19 \w Through|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H5921"\w* \w Armies|strong="H2220"\w*’ wrath, \w the|strong="H5921"\w* land \w is|strong="H1320"\w* burned \w up|strong="H5921"\w*; +\q2 \w and|strong="H3225"\w* \w the|strong="H5921"\w* \w people|strong="H1320"\w* \w are|strong="H1320"\w* \w the|strong="H5921"\w* fuel \w for|strong="H5921"\w* \w the|strong="H5921"\w* fire. +\q2 \w No|strong="H3808"\w* \w one|strong="H3808"\w* spares \w his|strong="H5921"\w* brother. +\q1 +\v 20 \w One|strong="H3605"\w* \w will|strong="H3063"\w* devour \w on|strong="H5921"\w* \w the|strong="H3605"\w* right \w hand|strong="H3027"\w*, \w and|strong="H3063"\w* \w be|strong="H3808"\w* hungry; +\q2 \w and|strong="H3063"\w* \w he|strong="H3605"\w* \w will|strong="H3063"\w* eat \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w left|strong="H7725"\w* \w hand|strong="H3027"\w*, \w and|strong="H3063"\w* \w they|strong="H1992"\w* \w will|strong="H3063"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* satisfied. +\q1 \w Everyone|strong="H3605"\w* \w will|strong="H3063"\w* eat \w the|strong="H3605"\w* flesh \w of|strong="H3027"\w* \w his|strong="H3605"\w* \w own|strong="H3027"\w* \w arm|strong="H3027"\w*: +\q2 +\v 21 Manasseh eating Ephraim and Ephraim eating Manasseh, and they together will be against Judah. +\q1 For all this his anger is not turned away, +\q2 but his hand is stretched out still. +\c 10 +\p +\v 1 \w Woe|strong="H1945"\w* \w to|strong="H3789"\w* \w those|strong="H1945"\w* \w who|strong="H1945"\w* \w decree|strong="H2710"\w* unrighteous \w decrees|strong="H2711"\w*, \w and|strong="H5999"\w* \w to|strong="H3789"\w* \w the|strong="H3789"\w* writers \w who|strong="H1945"\w* \w write|strong="H3789"\w* oppressive \w decrees|strong="H2711"\w* +\v 2 \w to|strong="H1961"\w* \w deprive|strong="H5186"\w* \w the|strong="H1961"\w* \w needy|strong="H6041"\w* \w of|strong="H5971"\w* \w justice|strong="H4941"\w*, \w and|strong="H4941"\w* \w to|strong="H1961"\w* \w rob|strong="H1497"\w* \w the|strong="H1961"\w* \w poor|strong="H6041"\w* \w among|strong="H5971"\w* \w my|strong="H1961"\w* \w people|strong="H5971"\w* \w of|strong="H5971"\w* \w their|strong="H5186"\w* \w rights|strong="H1779"\w*, \w that|strong="H5971"\w* \w widows|strong="H5971"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w their|strong="H5186"\w* \w plunder|strong="H7998"\w*, \w and|strong="H4941"\w* \w that|strong="H5971"\w* \w they|strong="H5971"\w* \w may|strong="H1961"\w* \w make|strong="H4941"\w* \w the|strong="H1961"\w* \w fatherless|strong="H3490"\w* \w their|strong="H5186"\w* \w prey|strong="H7998"\w*! +\v 3 \w What|strong="H4100"\w* \w will|strong="H4310"\w* \w you|strong="H5921"\w* \w do|strong="H6213"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w visitation|strong="H6486"\w*, \w and|strong="H3117"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w desolation|strong="H7722"\w* \w which|strong="H4310"\w* \w will|strong="H4310"\w* come \w from|strong="H5921"\w* \w afar|strong="H4801"\w*? \w To|strong="H6213"\w* \w whom|strong="H4310"\w* \w will|strong="H4310"\w* \w you|strong="H5921"\w* \w flee|strong="H5127"\w* \w for|strong="H5921"\w* \w help|strong="H5833"\w*? \w Where|strong="H4100"\w* \w will|strong="H4310"\w* \w you|strong="H5921"\w* \w leave|strong="H5800"\w* \w your|strong="H5921"\w* \w wealth|strong="H3519"\w*? +\p +\v 4 \w They|strong="H3808"\w* \w will|strong="H3027"\w* \w only|strong="H3605"\w* \w bow|strong="H3766"\w* \w down|strong="H5307"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* prisoners, +\q2 \w and|strong="H7725"\w* \w will|strong="H3027"\w* \w fall|strong="H5307"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w slain|strong="H2026"\w*. +\q1 \w For|strong="H8478"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w his|strong="H3605"\w* anger \w is|strong="H3027"\w* \w not|strong="H3808"\w* \w turned|strong="H7725"\w* \w away|strong="H7725"\w*, +\q2 \w but|strong="H3808"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w* \w is|strong="H3027"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w still|strong="H5750"\w*. +\b +\p +\v 5 \w Alas|strong="H1945"\w* Assyrian, \w the|strong="H3027"\w* \w rod|strong="H7626"\w* \w of|strong="H3027"\w* \w my|strong="H3027"\w* \w anger|strong="H2195"\w*, \w the|strong="H3027"\w* \w staff|strong="H4294"\w* \w in|strong="H3027"\w* whose \w hand|strong="H3027"\w* \w is|strong="H1931"\w* \w my|strong="H3027"\w* \w indignation|strong="H2195"\w*! +\v 6 \w I|strong="H5921"\w* \w will|strong="H1471"\w* \w send|strong="H7971"\w* \w him|strong="H5921"\w* \w against|strong="H5921"\w* \w a|strong="H3068"\w* profane \w nation|strong="H1471"\w*, \w and|strong="H7971"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w anger|strong="H5678"\w* \w me|strong="H7971"\w* \w I|strong="H5921"\w* \w will|strong="H1471"\w* \w give|strong="H7760"\w* \w him|strong="H5921"\w* \w a|strong="H3068"\w* \w command|strong="H6680"\w* \w to|strong="H7971"\w* \w take|strong="H7760"\w* \w the|strong="H5921"\w* \w plunder|strong="H7998"\w* \w and|strong="H7971"\w* \w to|strong="H7971"\w* \w take|strong="H7760"\w* \w the|strong="H5921"\w* \w prey|strong="H7998"\w*, \w and|strong="H7971"\w* \w to|strong="H7971"\w* \w tread|strong="H4823"\w* \w them|strong="H5921"\w* \w down|strong="H4823"\w* \w like|strong="H5921"\w* \w the|strong="H5921"\w* \w mire|strong="H2563"\w* \w of|strong="H5971"\w* \w the|strong="H5921"\w* \w streets|strong="H2351"\w*. +\v 7 \w However|strong="H3588"\w*, \w he|strong="H1931"\w* doesn’t mean \w so|strong="H3651"\w*, \w neither|strong="H3808"\w* \w does|strong="H3808"\w* \w his|strong="H3588"\w* \w heart|strong="H3824"\w* \w think|strong="H2803"\w* \w so|strong="H3651"\w*; \w but|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w in|strong="H4592"\w* \w his|strong="H3588"\w* \w heart|strong="H3824"\w* \w to|strong="H3824"\w* \w destroy|strong="H8045"\w*, \w and|strong="H1471"\w* \w to|strong="H3824"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w few|strong="H4592"\w* \w nations|strong="H1471"\w*. +\v 8 \w For|strong="H3588"\w* \w he|strong="H3588"\w* says, “Aren’t \w all|strong="H3162"\w* \w of|strong="H4428"\w* \w my|strong="H3588"\w* \w princes|strong="H8269"\w* \w kings|strong="H4428"\w*? +\v 9 Isn’t \w Calno|strong="H3641"\w* \w like|strong="H3808"\w* \w Carchemish|strong="H3751"\w*? Isn’t \w Hamath|strong="H2574"\w* \w like|strong="H3808"\w* Arpad? Isn’t \w Samaria|strong="H8111"\w* \w like|strong="H3808"\w* \w Damascus|strong="H1834"\w*?” +\v 10 \w As|strong="H3389"\w* \w my|strong="H3027"\w* \w hand|strong="H3027"\w* \w has|strong="H3027"\w* \w found|strong="H4672"\w* \w the|strong="H3027"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w idols|strong="H6456"\w*, whose \w engraved|strong="H6456"\w* \w images|strong="H6456"\w* exceeded those \w of|strong="H3027"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H3027"\w* \w of|strong="H3027"\w* \w Samaria|strong="H8111"\w*, +\v 11 \w shall|strong="H3808"\w* \w I|strong="H3651"\w* \w not|strong="H3808"\w*, \w as|strong="H6213"\w* \w I|strong="H3651"\w* \w have|strong="H3389"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w Samaria|strong="H8111"\w* \w and|strong="H3389"\w* \w her|strong="H6213"\w* \w idols|strong="H6091"\w*, \w so|strong="H3651"\w* \w do|strong="H6213"\w* \w to|strong="H6213"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H3389"\w* \w her|strong="H6213"\w* \w idols|strong="H6091"\w*? +\p +\v 12 \w Therefore|strong="H5921"\w* \w it|strong="H5921"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w that|strong="H3588"\w* \w when|strong="H3588"\w* \w the|strong="H3605"\w* Lord \w has|strong="H1961"\w* \w performed|strong="H1214"\w* \w his|strong="H3605"\w* \w whole|strong="H3605"\w* \w work|strong="H4639"\w* \w on|strong="H5921"\w* \w Mount|strong="H2022"\w* \w Zion|strong="H6726"\w* \w and|strong="H4428"\w* \w on|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w punish|strong="H6485"\w* \w the|strong="H3605"\w* \w fruit|strong="H6529"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* willful \w proud|strong="H5869"\w* \w heart|strong="H3824"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria, \w and|strong="H4428"\w* \w the|strong="H3605"\w* insolence \w of|strong="H4428"\w* \w his|strong="H3605"\w* \w arrogant|strong="H7312"\w* \w looks|strong="H5869"\w*. +\v 13 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* said, “\w By|strong="H3027"\w* \w the|strong="H3588"\w* \w strength|strong="H3581"\w* \w of|strong="H3027"\w* \w my|strong="H6213"\w* \w hand|strong="H3027"\w* \w I|strong="H3588"\w* \w have|strong="H5971"\w* \w done|strong="H6213"\w* \w it|strong="H3588"\w*, \w and|strong="H3027"\w* \w by|strong="H3027"\w* \w my|strong="H6213"\w* \w wisdom|strong="H2451"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H5971"\w* understanding. \w I|strong="H3588"\w* \w have|strong="H5971"\w* \w removed|strong="H5493"\w* \w the|strong="H3588"\w* \w boundaries|strong="H1367"\w* \w of|strong="H3027"\w* \w the|strong="H3588"\w* \w peoples|strong="H5971"\w*, \w and|strong="H3027"\w* \w have|strong="H5971"\w* \w robbed|strong="H8154"\w* \w their|strong="H3588"\w* \w treasures|strong="H6264"\w*. \w Like|strong="H3381"\w* \w a|strong="H3068"\w* valiant \w man|strong="H2451"\w* \w I|strong="H3588"\w* \w have|strong="H5971"\w* \w brought|strong="H3381"\w* \w down|strong="H3381"\w* \w their|strong="H3588"\w* \w rulers|strong="H3427"\w*. +\v 14 \w My|strong="H3605"\w* \w hand|strong="H3027"\w* \w has|strong="H1961"\w* \w found|strong="H4672"\w* \w the|strong="H3605"\w* \w riches|strong="H2428"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w nest|strong="H7064"\w*, \w and|strong="H3027"\w* \w like|strong="H1961"\w* \w one|strong="H3605"\w* gathers \w eggs|strong="H1000"\w* \w that|strong="H5971"\w* \w are|strong="H5971"\w* \w abandoned|strong="H5800"\w*, \w I|strong="H3808"\w* \w have|strong="H1961"\w* gathered \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth. \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w one|strong="H3605"\w* \w who|strong="H3605"\w* \w moved|strong="H5074"\w* \w their|strong="H3605"\w* \w wing|strong="H3671"\w*, \w or|strong="H3808"\w* \w that|strong="H5971"\w* \w opened|strong="H6475"\w* \w their|strong="H3605"\w* \w mouth|strong="H6310"\w*, \w or|strong="H3808"\w* \w chirped|strong="H6850"\w*.” +\p +\v 15 \w Should|strong="H7626"\w* \w an|strong="H7311"\w* ax \w brag|strong="H6286"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w* \w who|strong="H3808"\w* \w chops|strong="H2672"\w* \w with|strong="H5921"\w* \w it|strong="H5921"\w*? \w Should|strong="H7626"\w* \w a|strong="H3068"\w* \w saw|strong="H4883"\w* \w exalt|strong="H7311"\w* \w itself|strong="H6286"\w* \w above|strong="H5921"\w* \w him|strong="H5921"\w* \w who|strong="H3808"\w* saws \w with|strong="H5921"\w* \w it|strong="H5921"\w*? \w As|strong="H2672"\w* if \w a|strong="H3068"\w* \w rod|strong="H7626"\w* \w should|strong="H7626"\w* \w lift|strong="H7311"\w* \w those|strong="H5921"\w* \w who|strong="H3808"\w* \w lift|strong="H7311"\w* \w it|strong="H5921"\w* \w up|strong="H7311"\w*, \w or|strong="H3808"\w* \w as|strong="H2672"\w* if \w a|strong="H3068"\w* \w staff|strong="H4294"\w* \w should|strong="H7626"\w* \w lift|strong="H7311"\w* \w up|strong="H7311"\w* someone \w who|strong="H3808"\w* \w is|strong="H7626"\w* \w not|strong="H3808"\w* \w wood|strong="H6086"\w*. +\v 16 \w Therefore|strong="H3651"\w* \w the|strong="H3068"\w* \w Lord|strong="H3068"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w among|strong="H8478"\w* \w his|strong="H3068"\w* \w fat|strong="H4924"\w* \w ones|strong="H4924"\w* \w leanness|strong="H7332"\w*; \w and|strong="H3068"\w* \w under|strong="H8478"\w* \w his|strong="H3068"\w* \w glory|strong="H3519"\w* \w a|strong="H3068"\w* \w burning|strong="H3344"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w kindled|strong="H3344"\w* \w like|strong="H3651"\w* \w the|strong="H3068"\w* \w burning|strong="H3344"\w* \w of|strong="H3068"\w* \w fire|strong="H3350"\w*. +\v 17 \w The|strong="H3117"\w* \w light|strong="H1197"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w for|strong="H3117"\w* \w a|strong="H3068"\w* fire, \w and|strong="H3478"\w* \w his|strong="H3478"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w for|strong="H3117"\w* \w a|strong="H3068"\w* \w flame|strong="H3852"\w*; \w and|strong="H3478"\w* \w it|strong="H1961"\w* \w will|strong="H1961"\w* \w burn|strong="H1197"\w* \w and|strong="H3478"\w* devour \w his|strong="H3478"\w* \w thorns|strong="H7898"\w* \w and|strong="H3478"\w* \w his|strong="H3478"\w* \w briers|strong="H8068"\w* \w in|strong="H3478"\w* \w one|strong="H6918"\w* \w day|strong="H3117"\w*. +\v 18 \w He|strong="H5704"\w* \w will|strong="H1961"\w* \w consume|strong="H3615"\w* \w the|strong="H5704"\w* \w glory|strong="H3519"\w* \w of|strong="H3615"\w* \w his|strong="H1961"\w* \w forest|strong="H3293"\w* \w and|strong="H5315"\w* \w of|strong="H3615"\w* \w his|strong="H1961"\w* \w fruitful|strong="H3759"\w* \w field|strong="H3759"\w*, both \w soul|strong="H5315"\w* \w and|strong="H5315"\w* \w body|strong="H1320"\w*. \w It|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H5704"\w* \w when|strong="H1961"\w* \w a|strong="H3068"\w* standard bearer \w faints|strong="H3615"\w*. +\v 19 \w The|strong="H1961"\w* \w remnant|strong="H7605"\w* \w of|strong="H4557"\w* \w the|strong="H1961"\w* \w trees|strong="H6086"\w* \w of|strong="H4557"\w* \w his|strong="H1961"\w* \w forest|strong="H3293"\w* \w shall|strong="H5288"\w* \w be|strong="H1961"\w* \w few|strong="H4557"\w*, \w so|strong="H1961"\w* \w that|strong="H5288"\w* \w a|strong="H3068"\w* \w child|strong="H5288"\w* \w could|strong="H5288"\w* \w write|strong="H3789"\w* \w their|strong="H1961"\w* \w number|strong="H4557"\w*. +\p +\v 20 \w It|strong="H1931"\w* \w will|strong="H3068"\w* \w come|strong="H1961"\w* \w to|strong="H3478"\w* \w pass|strong="H1961"\w* \w in|strong="H5921"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w the|strong="H5921"\w* \w remnant|strong="H7605"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w those|strong="H5921"\w* \w who|strong="H1931"\w* \w have|strong="H1961"\w* \w escaped|strong="H6413"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w* \w will|strong="H3068"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w* \w again|strong="H5750"\w* \w lean|strong="H8172"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w* \w who|strong="H1931"\w* \w struck|strong="H5221"\w* \w them|strong="H5921"\w*, \w but|strong="H3808"\w* \w shall|strong="H3068"\w* \w lean|strong="H8172"\w* \w on|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w in|strong="H5921"\w* \w truth|strong="H3808"\w*. +\v 21 \w A|strong="H3068"\w* \w remnant|strong="H7605"\w* \w will|strong="H3290"\w* \w return|strong="H7725"\w*, even \w the|strong="H7725"\w* \w remnant|strong="H7605"\w* \w of|strong="H1368"\w* \w Jacob|strong="H3290"\w*, \w to|strong="H7725"\w* \w the|strong="H7725"\w* \w mighty|strong="H1368"\w* God. +\v 22 \w For|strong="H3588"\w* \w though|strong="H3588"\w* \w your|strong="H7725"\w* \w people|strong="H5971"\w*, \w Israel|strong="H3478"\w*, \w are|strong="H5971"\w* \w like|strong="H1961"\w* \w the|strong="H3588"\w* \w sand|strong="H2344"\w* \w of|strong="H5971"\w* \w the|strong="H3588"\w* \w sea|strong="H3220"\w*, \w only|strong="H3588"\w* \w a|strong="H3068"\w* \w remnant|strong="H7605"\w* \w of|strong="H5971"\w* \w them|strong="H7725"\w* \w will|strong="H1961"\w* \w return|strong="H7725"\w*. \w A|strong="H3068"\w* \w destruction|strong="H3631"\w* \w is|strong="H3478"\w* \w determined|strong="H2782"\w*, \w overflowing|strong="H7857"\w* \w with|strong="H5971"\w* \w righteousness|strong="H6666"\w*. +\v 23 \w For|strong="H3588"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H6635"\w* \w Armies|strong="H6635"\w*, \w will|strong="H6635"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w full|strong="H3605"\w* \w end|strong="H3617"\w*, \w and|strong="H6213"\w* \w that|strong="H3588"\w* \w determined|strong="H2782"\w*, \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth. +\p +\v 24 \w Therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w Lord|strong="H3069"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H3427"\w* \w Armies|strong="H6635"\w*, \w says|strong="H3541"\w*, “\w My|strong="H5921"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w Zion|strong="H6726"\w*, don’t \w be|strong="H1870"\w* \w afraid|strong="H3372"\w* \w of|strong="H3427"\w* \w the|strong="H5921"\w* Assyrian, though \w he|strong="H3651"\w* \w strike|strong="H5221"\w* \w you|strong="H5921"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w rod|strong="H7626"\w*, \w and|strong="H5971"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w staff|strong="H4294"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w*, \w as|strong="H3651"\w* \w Egypt|strong="H4714"\w* \w did|strong="H5971"\w*. +\v 25 \w For|strong="H3588"\w* \w yet|strong="H5750"\w* \w a|strong="H3068"\w* \w very|strong="H4213"\w* \w little|strong="H4592"\w* \w while|strong="H5750"\w*, \w and|strong="H5750"\w* \w the|strong="H5921"\w* \w indignation|strong="H2195"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w* \w will|strong="H5750"\w* \w be|strong="H5750"\w* \w accomplished|strong="H3615"\w*, \w and|strong="H5750"\w* \w my|strong="H5921"\w* \w anger|strong="H2195"\w* \w will|strong="H5750"\w* \w be|strong="H5750"\w* directed \w to|strong="H5921"\w* \w his|strong="H5921"\w* \w destruction|strong="H8399"\w*.” +\v 26 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w will|strong="H3068"\w* \w stir|strong="H5782"\w* \w up|strong="H5375"\w* \w a|strong="H3068"\w* \w scourge|strong="H7752"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*, \w as|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w slaughter|strong="H4347"\w* \w of|strong="H3068"\w* \w Midian|strong="H4080"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w rock|strong="H6697"\w* \w of|strong="H3068"\w* \w Oreb|strong="H6159"\w*. \w His|strong="H5375"\w* \w rod|strong="H4294"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w lift|strong="H5375"\w* \w it|strong="H5921"\w* \w up|strong="H5375"\w* \w like|strong="H1870"\w* \w he|strong="H3068"\w* \w did|strong="H3068"\w* \w against|strong="H5921"\w* \w Egypt|strong="H4714"\w*. +\v 27 \w It|strong="H1931"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w in|strong="H5921"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w his|strong="H6440"\w* \w burden|strong="H5448"\w* \w will|strong="H1961"\w* \w depart|strong="H5493"\w* \w from|strong="H5493"\w* \w off|strong="H5493"\w* \w your|strong="H5921"\w* \w shoulder|strong="H7926"\w*, \w and|strong="H3117"\w* \w his|strong="H6440"\w* \w yoke|strong="H5923"\w* \w from|strong="H5493"\w* \w off|strong="H5493"\w* \w your|strong="H5921"\w* \w neck|strong="H6677"\w*, \w and|strong="H3117"\w* \w the|strong="H6440"\w* \w yoke|strong="H5923"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w destroyed|strong="H2254"\w* \w because|strong="H5921"\w* \w of|strong="H3117"\w* \w the|strong="H6440"\w* \w anointing|strong="H8081"\w* \w oil|strong="H8081"\w*. +\p +\v 28 \w He|strong="H5921"\w* \w has|strong="H5674"\w* \w come|strong="H5674"\w* \w to|strong="H5921"\w* \w Aiath|strong="H5857"\w*. \w He|strong="H5921"\w* \w has|strong="H5674"\w* \w passed|strong="H5674"\w* \w through|strong="H5674"\w* \w Migron|strong="H4051"\w*. \w At|strong="H5921"\w* \w Michmash|strong="H4363"\w* \w he|strong="H5921"\w* stores \w his|strong="H5921"\w* \w baggage|strong="H3627"\w*. +\v 29 \w They|strong="H7586"\w* have \w gone|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H5674"\w* \w pass|strong="H5674"\w*. \w They|strong="H7586"\w* have \w taken|strong="H5674"\w* \w up|strong="H1387"\w* their \w lodging|strong="H4411"\w* \w at|strong="H7586"\w* \w Geba|strong="H1387"\w*. \w Ramah|strong="H7414"\w* \w trembles|strong="H2729"\w*. \w Gibeah|strong="H1390"\w* \w of|strong="H1390"\w* \w Saul|strong="H7586"\w* \w has|strong="H7586"\w* \w fled|strong="H5127"\w*. +\v 30 \w Cry|strong="H6670"\w* \w aloud|strong="H6670"\w* \w with|strong="H6041"\w* \w your|strong="H7181"\w* \w voice|strong="H6963"\w*, \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Gallim|strong="H1554"\w*! \w Listen|strong="H7181"\w*, \w Laishah|strong="H3919"\w*! \w You|strong="H6963"\w* \w poor|strong="H6041"\w* \w Anathoth|strong="H6068"\w*! +\v 31 \w Madmenah|strong="H4088"\w* \w is|strong="H3427"\w* \w a|strong="H3068"\w* \w fugitive|strong="H5074"\w*. \w The|strong="H3427"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Gebim|strong="H1374"\w* \w flee|strong="H5074"\w* \w for|strong="H3427"\w* \w safety|strong="H5756"\w*. +\v 32 \w This|strong="H3027"\w* very \w day|strong="H3117"\w* \w he|strong="H3117"\w* \w will|strong="H1004"\w* \w halt|strong="H5975"\w* \w at|strong="H1004"\w* \w Nob|strong="H5011"\w*. \w He|strong="H3117"\w* \w shakes|strong="H5130"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w* \w at|strong="H1004"\w* \w the|strong="H3117"\w* \w mountain|strong="H2022"\w* \w of|strong="H1004"\w* \w the|strong="H3117"\w* \w daughter|strong="H1323"\w* \w of|strong="H1004"\w* Zion, \w the|strong="H3117"\w* \w hill|strong="H2022"\w* \w of|strong="H1004"\w* \w Jerusalem|strong="H3389"\w*. +\p +\v 33 \w Behold|strong="H2009"\w*, \w the|strong="H3068"\w* \w Lord|strong="H3068"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w will|strong="H3068"\w* \w lop|strong="H5586"\w* \w the|strong="H3068"\w* \w boughs|strong="H6288"\w* \w with|strong="H3068"\w* \w terror|strong="H4637"\w*. \w The|strong="H3068"\w* \w tall|strong="H7311"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w cut|strong="H1438"\w* \w down|strong="H1438"\w*, \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w lofty|strong="H7311"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w brought|strong="H3068"\w* \w low|strong="H8213"\w*. +\v 34 He \w will|strong="H3844"\w* \w cut|strong="H5362"\w* \w down|strong="H5307"\w* \w the|strong="H5307"\w* \w thickets|strong="H5442"\w* \w of|strong="H3293"\w* \w the|strong="H5307"\w* \w forest|strong="H3293"\w* \w with|strong="H3844"\w* \w iron|strong="H1270"\w*, \w and|strong="H5307"\w* \w Lebanon|strong="H3844"\w* \w will|strong="H3844"\w* \w fall|strong="H5307"\w* \w by|strong="H5307"\w* \w the|strong="H5307"\w* Mighty One. +\c 11 +\q1 +\v 1 \w A|strong="H3068"\w* \w shoot|strong="H2415"\w* \w will|strong="H8328"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w the|strong="H3318"\w* \w stock|strong="H1503"\w* \w of|strong="H3318"\w* \w Jesse|strong="H3448"\w*, +\q2 \w and|strong="H3318"\w* \w a|strong="H3068"\w* \w branch|strong="H5342"\w* \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w his|strong="H3318"\w* \w roots|strong="H8328"\w* \w will|strong="H8328"\w* \w bear|strong="H6509"\w* \w fruit|strong="H6509"\w*. +\q1 +\v 2 \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w* \w will|strong="H3068"\w* \w rest|strong="H5117"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*: +\q2 \w the|strong="H5921"\w* \w spirit|strong="H7307"\w* \w of|strong="H3068"\w* \w wisdom|strong="H2451"\w* \w and|strong="H3068"\w* understanding, +\q2 \w the|strong="H5921"\w* \w spirit|strong="H7307"\w* \w of|strong="H3068"\w* \w counsel|strong="H6098"\w* \w and|strong="H3068"\w* \w might|strong="H1369"\w*, +\q2 \w the|strong="H5921"\w* \w spirit|strong="H7307"\w* \w of|strong="H3068"\w* \w knowledge|strong="H1847"\w* \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w fear|strong="H3374"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 3 \w His|strong="H3068"\w* delight \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w fear|strong="H3374"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w judge|strong="H8199"\w* \w by|strong="H3068"\w* \w the|strong="H3068"\w* \w sight|strong="H5869"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w eyes|strong="H5869"\w*, +\q2 \w neither|strong="H3808"\w* \w decide|strong="H3198"\w* \w by|strong="H3068"\w* \w the|strong="H3068"\w* \w hearing|strong="H4926"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* ears; +\q1 +\v 4 \w but|strong="H7563"\w* \w he|strong="H5221"\w* \w will|strong="H7563"\w* \w judge|strong="H8199"\w* \w the|strong="H5221"\w* \w poor|strong="H1800"\w* \w with|strong="H3198"\w* \w righteousness|strong="H6664"\w*, +\q2 \w and|strong="H6310"\w* \w decide|strong="H3198"\w* \w with|strong="H3198"\w* \w equity|strong="H6664"\w* \w for|strong="H4191"\w* \w the|strong="H5221"\w* \w humble|strong="H6035"\w* \w of|strong="H7626"\w* \w the|strong="H5221"\w* earth. +\q1 \w He|strong="H5221"\w* \w will|strong="H7563"\w* \w strike|strong="H5221"\w* \w the|strong="H5221"\w* earth \w with|strong="H3198"\w* \w the|strong="H5221"\w* \w rod|strong="H7626"\w* \w of|strong="H7626"\w* \w his|strong="H5221"\w* \w mouth|strong="H6310"\w*; +\q2 \w and|strong="H6310"\w* \w with|strong="H3198"\w* \w the|strong="H5221"\w* \w breath|strong="H7307"\w* \w of|strong="H7626"\w* \w his|strong="H5221"\w* \w lips|strong="H8193"\w* \w he|strong="H5221"\w* \w will|strong="H7563"\w* \w kill|strong="H4191"\w* \w the|strong="H5221"\w* \w wicked|strong="H7563"\w*. +\q1 +\v 5 \w Righteousness|strong="H6664"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w the|strong="H1961"\w* belt around \w his|strong="H1961"\w* \w waist|strong="H4975"\w*, +\q2 \w and|strong="H6664"\w* faithfulness \w the|strong="H1961"\w* belt around \w his|strong="H1961"\w* \w waist|strong="H4975"\w*. +\b +\q1 +\v 6 \w The|strong="H5973"\w* \w wolf|strong="H2061"\w* \w will|strong="H5288"\w* \w live|strong="H1481"\w* \w with|strong="H5973"\w* \w the|strong="H5973"\w* \w lamb|strong="H3532"\w*, +\q2 \w and|strong="H5288"\w* \w the|strong="H5973"\w* \w leopard|strong="H5246"\w* \w will|strong="H5288"\w* \w lie|strong="H7257"\w* \w down|strong="H7257"\w* \w with|strong="H5973"\w* \w the|strong="H5973"\w* \w young|strong="H5288"\w* \w goat|strong="H1423"\w*, +\q2 \w the|strong="H5973"\w* \w calf|strong="H5695"\w*, \w the|strong="H5973"\w* \w young|strong="H5288"\w* \w lion|strong="H3715"\w*, \w and|strong="H5288"\w* \w the|strong="H5973"\w* fattened \w calf|strong="H5695"\w* \w together|strong="H3162"\w*; +\q2 \w and|strong="H5288"\w* \w a|strong="H3068"\w* \w little|strong="H6996"\w* \w child|strong="H5288"\w* \w will|strong="H5288"\w* \w lead|strong="H5090"\w* \w them|strong="H3162"\w*. +\q1 +\v 7 \w The|strong="H7462"\w* \w cow|strong="H6510"\w* \w and|strong="H1241"\w* \w the|strong="H7462"\w* \w bear|strong="H1677"\w* \w will|strong="H3206"\w* \w graze|strong="H7462"\w*. +\q2 \w Their|strong="H7462"\w* \w young|strong="H1241"\w* \w ones|strong="H3206"\w* \w will|strong="H3206"\w* \w lie|strong="H7257"\w* \w down|strong="H7257"\w* \w together|strong="H3162"\w*. +\q2 \w The|strong="H7462"\w* lion \w will|strong="H3206"\w* \w eat|strong="H7462"\w* \w straw|strong="H8401"\w* \w like|strong="H3162"\w* \w the|strong="H7462"\w* \w ox|strong="H1241"\w*. +\q1 +\v 8 \w The|strong="H5921"\w* \w nursing|strong="H3243"\w* \w child|strong="H3243"\w* \w will|strong="H3027"\w* \w play|strong="H8173"\w* \w near|strong="H5921"\w* \w a|strong="H3068"\w* \w cobra|strong="H6620"\w*’s \w hole|strong="H2352"\w*, +\q2 \w and|strong="H3027"\w* \w the|strong="H5921"\w* \w weaned|strong="H1580"\w* \w child|strong="H3243"\w* \w will|strong="H3027"\w* \w put|strong="H1911"\w* \w his|strong="H5921"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w viper|strong="H6848"\w*’s \w den|strong="H3975"\w*. +\q1 +\v 9 \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w hurt|strong="H7489"\w* \w nor|strong="H3808"\w* \w destroy|strong="H7843"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w holy|strong="H6944"\w* \w mountain|strong="H2022"\w*; +\q2 \w for|strong="H3588"\w* \w the|strong="H3605"\w* earth \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w full|strong="H4390"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w knowledge|strong="H1844"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w as|strong="H3068"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w cover|strong="H3680"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w*. +\b +\p +\v 10 \w It|strong="H1931"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w in|strong="H3117"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w* \w that|strong="H5971"\w* \w the|strong="H3117"\w* \w nations|strong="H1471"\w* \w will|strong="H1961"\w* \w seek|strong="H1875"\w* \w the|strong="H3117"\w* \w root|strong="H8328"\w* \w of|strong="H3117"\w* \w Jesse|strong="H3448"\w*, \w who|strong="H1931"\w* \w stands|strong="H5975"\w* \w as|strong="H3117"\w* \w a|strong="H3068"\w* \w banner|strong="H5251"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w peoples|strong="H5971"\w*; \w and|strong="H3117"\w* \w his|strong="H1961"\w* \w resting|strong="H4496"\w* \w place|strong="H4496"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w glorious|strong="H3519"\w*. +\p +\v 11 \w It|strong="H1931"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w in|strong="H3117"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w* \w that|strong="H5971"\w* \w the|strong="H3117"\w* Lord \w will|strong="H1961"\w* \w set|strong="H3254"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w* \w again|strong="H3254"\w* \w the|strong="H3117"\w* \w second|strong="H8145"\w* \w time|strong="H3117"\w* \w to|strong="H1961"\w* \w recover|strong="H7069"\w* \w the|strong="H3117"\w* \w remnant|strong="H7605"\w* \w that|strong="H5971"\w* \w is|strong="H1931"\w* \w left|strong="H7604"\w* \w of|strong="H3117"\w* \w his|strong="H3027"\w* \w people|strong="H5971"\w* \w from|strong="H3027"\w* Assyria, \w from|strong="H3027"\w* \w Egypt|strong="H4714"\w*, \w from|strong="H3027"\w* \w Pathros|strong="H6624"\w*, \w from|strong="H3027"\w* \w Cush|strong="H3568"\w*, \w from|strong="H3027"\w* \w Elam|strong="H5867"\w*, \w from|strong="H3027"\w* \w Shinar|strong="H8152"\w*, \w from|strong="H3027"\w* \w Hamath|strong="H2574"\w*, \w and|strong="H3117"\w* \w from|strong="H3027"\w* \w the|strong="H3117"\w* islands \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w sea|strong="H3220"\w*. +\v 12 \w He|strong="H3478"\w* \w will|strong="H1471"\w* \w set|strong="H5375"\w* \w up|strong="H5375"\w* \w a|strong="H3068"\w* \w banner|strong="H5251"\w* \w for|strong="H3478"\w* \w the|strong="H5375"\w* \w nations|strong="H1471"\w*, \w and|strong="H3063"\w* \w will|strong="H1471"\w* \w assemble|strong="H6908"\w* \w the|strong="H5375"\w* \w outcasts|strong="H1760"\w* \w of|strong="H3671"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3063"\w* \w gather|strong="H6908"\w* \w together|strong="H6908"\w* \w the|strong="H5375"\w* \w dispersed|strong="H5310"\w* \w of|strong="H3671"\w* \w Judah|strong="H3063"\w* \w from|strong="H3478"\w* \w the|strong="H5375"\w* four \w corners|strong="H3671"\w* \w of|strong="H3671"\w* \w the|strong="H5375"\w* earth. +\v 13 \w The|strong="H5493"\w* \w envy|strong="H7065"\w* \w also|strong="H3063"\w* \w of|strong="H3808"\w* Ephraim \w will|strong="H3063"\w* \w depart|strong="H5493"\w*, \w and|strong="H3063"\w* those \w who|strong="H3063"\w* persecute \w Judah|strong="H3063"\w* \w will|strong="H3063"\w* \w be|strong="H3808"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*. Ephraim won’t \w envy|strong="H7065"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w Judah|strong="H3063"\w* won’t persecute Ephraim. +\v 14 \w They|strong="H3027"\w* \w will|strong="H1121"\w* \w fly|strong="H5774"\w* \w down|strong="H5774"\w* \w on|strong="H3027"\w* \w the|strong="H3027"\w* \w shoulders|strong="H3802"\w* \w of|strong="H1121"\w* \w the|strong="H3027"\w* \w Philistines|strong="H6430"\w* \w on|strong="H3027"\w* \w the|strong="H3027"\w* \w west|strong="H3220"\w*. \w Together|strong="H3162"\w* \w they|strong="H3027"\w* \w will|strong="H1121"\w* plunder \w the|strong="H3027"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3027"\w* \w east|strong="H6924"\w*. \w They|strong="H3027"\w* \w will|strong="H1121"\w* extend \w their|strong="H4916"\w* \w power|strong="H3027"\w* \w over|strong="H3027"\w* Edom \w and|strong="H1121"\w* \w Moab|strong="H4124"\w*, \w and|strong="H1121"\w* \w the|strong="H3027"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w will|strong="H1121"\w* \w obey|strong="H4928"\w* \w them|strong="H3027"\w*. +\v 15 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w utterly|strong="H2763"\w* \w destroy|strong="H2763"\w* \w the|strong="H5921"\w* \w tongue|strong="H3956"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w Egyptian|strong="H4714"\w* \w sea|strong="H3220"\w*; \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w his|strong="H3068"\w* \w scorching|strong="H5868"\w* \w wind|strong="H7307"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w wave|strong="H5130"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w River|strong="H5104"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* split \w it|strong="H5921"\w* \w into|strong="H5921"\w* \w seven|strong="H7651"\w* \w streams|strong="H5158"\w*, \w and|strong="H3068"\w* cause \w men|strong="H7651"\w* \w to|strong="H3068"\w* \w march|strong="H1869"\w* \w over|strong="H5921"\w* \w in|strong="H5921"\w* \w sandals|strong="H5275"\w*. +\v 16 \w There|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w highway|strong="H4546"\w* \w for|strong="H4714"\w* \w the|strong="H3117"\w* \w remnant|strong="H7605"\w* \w that|strong="H5971"\w* \w is|strong="H3117"\w* \w left|strong="H7604"\w* \w of|strong="H3117"\w* \w his|strong="H3478"\w* \w people|strong="H5971"\w* \w from|strong="H5927"\w* Assyria, \w like|strong="H1961"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w for|strong="H4714"\w* \w Israel|strong="H3478"\w* \w in|strong="H3478"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H5971"\w* \w he|strong="H3117"\w* \w came|strong="H1961"\w* \w up|strong="H5927"\w* \w out|strong="H7604"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* land \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w*. +\c 12 +\p +\v 1 \w In|strong="H3068"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w say|strong="H7725"\w*, “\w I|strong="H3588"\w* \w will|strong="H3068"\w* \w give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H7725"\w* \w you|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*; \w for|strong="H3588"\w* \w though|strong="H3588"\w* \w you|strong="H3588"\w* \w were|strong="H3117"\w* angry \w with|strong="H3068"\w* \w me|strong="H7725"\w*, \w your|strong="H3068"\w* anger \w has|strong="H3068"\w* \w turned|strong="H7725"\w* \w away|strong="H7725"\w* \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w comfort|strong="H5162"\w* \w me|strong="H7725"\w*. +\v 2 \w Behold|strong="H2009"\w*, \w God|strong="H3068"\w* \w is|strong="H3068"\w* \w my|strong="H3068"\w* \w salvation|strong="H3444"\w*. \w I|strong="H3588"\w* \w will|strong="H3068"\w* trust, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w afraid|strong="H6342"\w*; \w for|strong="H3588"\w* \w Yah|strong="H3068"\w*, \w Yahweh|strong="H3068"\w*, \w is|strong="H3068"\w* \w my|strong="H3068"\w* \w strength|strong="H5797"\w* \w and|strong="H3068"\w* \w song|strong="H2176"\w*; \w and|strong="H3068"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w become|strong="H1961"\w* \w my|strong="H3068"\w* \w salvation|strong="H3444"\w*.” +\v 3 Therefore \w with|strong="H4325"\w* \w joy|strong="H8342"\w* \w you|strong="H4325"\w* \w will|strong="H4325"\w* \w draw|strong="H7579"\w* \w water|strong="H4325"\w* \w out|strong="H4325"\w* \w of|strong="H4325"\w* \w the|strong="H3444"\w* \w wells|strong="H4599"\w* \w of|strong="H4325"\w* \w salvation|strong="H3444"\w*. +\v 4 \w In|strong="H3068"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* say, “\w Give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*! \w Call|strong="H7121"\w* \w on|strong="H3117"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w*! \w Declare|strong="H3045"\w* \w his|strong="H3068"\w* \w doings|strong="H5949"\w* \w among|strong="H8034"\w* \w the|strong="H3588"\w* \w peoples|strong="H5971"\w*! \w Proclaim|strong="H7121"\w* \w that|strong="H3588"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w* \w is|strong="H3068"\w* \w exalted|strong="H7682"\w*! +\v 5 \w Sing|strong="H2167"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w* \w excellent|strong="H6213"\w* \w things|strong="H3605"\w*! Let \w this|strong="H2063"\w* \w be|strong="H3068"\w* \w known|strong="H3045"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth! +\v 6 \w Cry|strong="H6670"\w* \w aloud|strong="H7442"\w* \w and|strong="H3478"\w* \w shout|strong="H7442"\w*, \w you|strong="H3588"\w* \w inhabitant|strong="H3427"\w* \w of|strong="H3427"\w* \w Zion|strong="H6726"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H3427"\w* \w Israel|strong="H3478"\w* \w is|strong="H3478"\w* \w great|strong="H1419"\w* \w among|strong="H7130"\w* \w you|strong="H3588"\w*!” +\c 13 +\p +\v 1 \w The|strong="H3470"\w* \w burden|strong="H4853"\w* \w of|strong="H1121"\w* Babylon, \w which|strong="H4853"\w* \w Isaiah|strong="H3470"\w* \w the|strong="H3470"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amoz \w saw|strong="H2372"\w*. +\p +\v 2 \w Set|strong="H7311"\w* \w up|strong="H5375"\w* \w a|strong="H3068"\w* \w banner|strong="H5251"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w bare|strong="H5375"\w* \w mountain|strong="H2022"\w*! \w Lift|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H5921"\w* \w voice|strong="H6963"\w* \w to|strong="H5921"\w* \w them|strong="H5921"\w*! \w Wave|strong="H5130"\w* \w your|strong="H5921"\w* \w hand|strong="H3027"\w*, \w that|strong="H2022"\w* \w they|strong="H5921"\w* may go \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w gates|strong="H6607"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w nobles|strong="H5081"\w*. +\v 3 \w I|strong="H6680"\w* \w have|strong="H1571"\w* \w commanded|strong="H6680"\w* \w my|strong="H6942"\w* \w consecrated|strong="H6942"\w* \w ones|strong="H1368"\w*; \w yes|strong="H1571"\w*, \w I|strong="H6680"\w* \w have|strong="H1571"\w* \w called|strong="H7121"\w* \w my|strong="H6942"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w for|strong="H7121"\w* \w my|strong="H6942"\w* anger, \w even|strong="H1571"\w* \w my|strong="H6942"\w* \w proudly|strong="H1346"\w* \w exulting|strong="H5947"\w* \w ones|strong="H1368"\w*. +\v 4 \w The|strong="H3068"\w* \w noise|strong="H6963"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w multitude|strong="H1995"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w mountains|strong="H2022"\w*, \w as|strong="H3068"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w great|strong="H7227"\w* \w people|strong="H5971"\w*; \w the|strong="H3068"\w* \w noise|strong="H6963"\w* \w of|strong="H3068"\w* \w an|strong="H3068"\w* \w uproar|strong="H7588"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w nations|strong="H1471"\w* \w gathered|strong="H1471"\w* \w together|strong="H5971"\w*! \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w is|strong="H3068"\w* \w mustering|strong="H6485"\w* \w the|strong="H3068"\w* \w army|strong="H6635"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w battle|strong="H4421"\w*. +\v 5 \w They|strong="H3068"\w* come \w from|strong="H3068"\w* \w a|strong="H3068"\w* \w far|strong="H4801"\w* country, \w from|strong="H3068"\w* \w the|strong="H3605"\w* \w uttermost|strong="H7097"\w* \w part|strong="H7097"\w* \w of|strong="H3068"\w* \w heaven|strong="H8064"\w*, \w even|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w weapons|strong="H3627"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w indignation|strong="H2195"\w*, \w to|strong="H3068"\w* \w destroy|strong="H2254"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w land|strong="H8064"\w*. +\p +\v 6 \w Wail|strong="H3213"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w day|strong="H3117"\w* \w is|strong="H3068"\w* \w at|strong="H3068"\w* \w hand|strong="H7138"\w*! \w It|strong="H3588"\w* \w will|strong="H3068"\w* come \w as|strong="H3117"\w* \w destruction|strong="H7701"\w* \w from|strong="H3117"\w* \w the|strong="H3588"\w* \w Almighty|strong="H7706"\w*. +\v 7 \w Therefore|strong="H3651"\w* \w all|strong="H3605"\w* \w hands|strong="H3027"\w* \w will|strong="H3027"\w* \w be|strong="H3027"\w* \w feeble|strong="H7503"\w*, \w and|strong="H3027"\w* \w everyone|strong="H3605"\w*’s \w heart|strong="H3824"\w* \w will|strong="H3027"\w* \w melt|strong="H4549"\w*. +\v 8 \w They|strong="H6440"\w* \w will|strong="H7453"\w* \w be|strong="H6440"\w* dismayed. \w Pangs|strong="H2256"\w* \w and|strong="H6440"\w* \w sorrows|strong="H2256"\w* \w will|strong="H7453"\w* seize \w them|strong="H6440"\w*. \w They|strong="H6440"\w* \w will|strong="H7453"\w* \w be|strong="H6440"\w* \w in|strong="H6440"\w* \w pain|strong="H2342"\w* \w like|strong="H6440"\w* \w a|strong="H3068"\w* \w woman|strong="H3205"\w* \w in|strong="H6440"\w* \w labor|strong="H3205"\w*. \w They|strong="H6440"\w* \w will|strong="H7453"\w* \w look|strong="H2342"\w* \w in|strong="H6440"\w* amazement \w one|strong="H7453"\w* \w at|strong="H6440"\w* \w another|strong="H7453"\w*. \w Their|strong="H6440"\w* \w faces|strong="H6440"\w* \w will|strong="H7453"\w* \w be|strong="H6440"\w* \w faces|strong="H6440"\w* \w of|strong="H3205"\w* \w flame|strong="H3851"\w*. +\v 9 \w Behold|strong="H2009"\w*, \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w comes|strong="H3117"\w*, cruel, \w with|strong="H3068"\w* \w wrath|strong="H5678"\w* \w and|strong="H3068"\w* \w fierce|strong="H2740"\w* \w anger|strong="H5678"\w*; \w to|strong="H3068"\w* \w make|strong="H7760"\w* \w the|strong="H3068"\w* land \w a|strong="H3068"\w* \w desolation|strong="H8047"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w destroy|strong="H8045"\w* \w its|strong="H7760"\w* \w sinners|strong="H2400"\w* \w out|strong="H4480"\w* \w of|strong="H3068"\w* \w it|strong="H7760"\w*. +\v 10 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w stars|strong="H3556"\w* \w of|strong="H3318"\w* \w the|strong="H3588"\w* \w sky|strong="H8064"\w* \w and|strong="H8064"\w* \w its|strong="H3588"\w* \w constellations|strong="H3685"\w* \w will|strong="H8064"\w* \w not|strong="H3808"\w* \w give|strong="H3394"\w* \w their|strong="H3588"\w* \w light|strong="H5050"\w*. \w The|strong="H3588"\w* \w sun|strong="H8121"\w* \w will|strong="H8064"\w* \w be|strong="H3808"\w* \w darkened|strong="H2821"\w* \w in|strong="H8064"\w* \w its|strong="H3588"\w* \w going|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H8064"\w* \w the|strong="H3588"\w* \w moon|strong="H3394"\w* \w will|strong="H8064"\w* \w not|strong="H3808"\w* \w cause|strong="H3318"\w* \w its|strong="H3588"\w* \w light|strong="H5050"\w* \w to|strong="H3318"\w* \w shine|strong="H5050"\w*. +\v 11 \w I|strong="H5921"\w* \w will|strong="H7563"\w* \w punish|strong="H6485"\w* \w the|strong="H5921"\w* \w world|strong="H8398"\w* \w for|strong="H5921"\w* \w their|strong="H5921"\w* \w evil|strong="H7451"\w*, \w and|strong="H5771"\w* \w the|strong="H5921"\w* \w wicked|strong="H7563"\w* \w for|strong="H5921"\w* \w their|strong="H5921"\w* \w iniquity|strong="H5771"\w*. \w I|strong="H5921"\w* \w will|strong="H7563"\w* cause \w the|strong="H5921"\w* \w arrogance|strong="H1346"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w proud|strong="H2086"\w* \w to|strong="H5921"\w* \w cease|strong="H7673"\w*, \w and|strong="H5771"\w* \w will|strong="H7563"\w* \w humble|strong="H8213"\w* \w the|strong="H5921"\w* \w arrogance|strong="H1346"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w terrible|strong="H6184"\w*. +\v 12 I will \w make|strong="H3365"\w* people more rare than \w fine|strong="H6337"\w* \w gold|strong="H3800"\w*, even \w a|strong="H3068"\w* person than the \w pure|strong="H6337"\w* \w gold|strong="H3800"\w* \w of|strong="H3800"\w* Ophir. +\v 13 \w Therefore|strong="H3651"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* make \w the|strong="H5921"\w* \w heavens|strong="H8064"\w* \w tremble|strong="H7264"\w*, \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w earth|strong="H8064"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w shaken|strong="H7493"\w* \w out|strong="H5921"\w* \w of|strong="H3068"\w* \w its|strong="H5921"\w* \w place|strong="H4725"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*’ \w wrath|strong="H5678"\w*, \w and|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w fierce|strong="H2740"\w* \w anger|strong="H5678"\w*. +\v 14 \w It|strong="H1961"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w that|strong="H5971"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w hunted|strong="H5080"\w* \w gazelle|strong="H6643"\w* \w and|strong="H5971"\w* \w like|strong="H1961"\w* \w sheep|strong="H6629"\w* \w that|strong="H5971"\w* \w no|strong="H1961"\w* \w one|strong="H1961"\w* \w gathers|strong="H6908"\w*, \w they|strong="H5971"\w* \w will|strong="H1961"\w* \w each|strong="H5971"\w* \w turn|strong="H6437"\w* \w to|strong="H1961"\w* \w their|strong="H1961"\w* \w own|strong="H1961"\w* \w people|strong="H5971"\w*, \w and|strong="H5971"\w* \w will|strong="H1961"\w* \w each|strong="H5971"\w* \w flee|strong="H5127"\w* \w to|strong="H1961"\w* \w their|strong="H1961"\w* \w own|strong="H1961"\w* land. +\v 15 \w Everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3605"\w* \w found|strong="H4672"\w* \w will|strong="H2719"\w* \w be|strong="H2719"\w* \w thrust|strong="H1856"\w* \w through|strong="H1856"\w*. \w Everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3605"\w* \w captured|strong="H5595"\w* \w will|strong="H2719"\w* \w fall|strong="H5307"\w* \w by|strong="H3605"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*. +\v 16 \w Their|strong="H8155"\w* \w infants|strong="H5768"\w* \w also|strong="H5869"\w* \w will|strong="H5869"\w* \w be|strong="H5869"\w* \w dashed|strong="H7376"\w* \w in|strong="H1004"\w* \w pieces|strong="H7376"\w* \w before|strong="H5869"\w* \w their|strong="H8155"\w* \w eyes|strong="H5869"\w*. \w Their|strong="H8155"\w* \w houses|strong="H1004"\w* \w will|strong="H5869"\w* \w be|strong="H5869"\w* ransacked, \w and|strong="H1004"\w* \w their|strong="H8155"\w* wives \w raped|strong="H7693"\w*. +\p +\v 17 \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3808"\w* \w stir|strong="H5782"\w* \w up|strong="H5782"\w* \w the|strong="H5921"\w* \w Medes|strong="H4074"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w*, \w who|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w value|strong="H2803"\w* \w silver|strong="H3701"\w*, \w and|strong="H3701"\w* \w as|strong="H2803"\w* \w for|strong="H5921"\w* \w gold|strong="H2091"\w*, \w they|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w delight|strong="H2654"\w* \w in|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 18 \w Their|strong="H5921"\w* \w bows|strong="H7198"\w* \w will|strong="H5869"\w* \w dash|strong="H7376"\w* \w the|strong="H5921"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w in|strong="H5921"\w* \w pieces|strong="H7376"\w*; \w and|strong="H1121"\w* \w they|strong="H3808"\w* \w shall|strong="H1121"\w* \w have|strong="H7355"\w* \w no|strong="H3808"\w* \w pity|strong="H2347"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w fruit|strong="H6529"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* womb. \w Their|strong="H5921"\w* \w eyes|strong="H5869"\w* \w will|strong="H5869"\w* \w not|strong="H3808"\w* \w spare|strong="H2347"\w* \w children|strong="H1121"\w*. +\v 19 Babylon, \w the|strong="H1961"\w* \w glory|strong="H8597"\w* \w of|strong="H4467"\w* \w kingdoms|strong="H4467"\w*, \w the|strong="H1961"\w* \w beauty|strong="H8597"\w* \w of|strong="H4467"\w* \w the|strong="H1961"\w* \w Chaldeans|strong="H3778"\w*’ \w pride|strong="H1347"\w*, \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w when|strong="H1961"\w* God \w overthrew|strong="H4114"\w* \w Sodom|strong="H5467"\w* \w and|strong="H5467"\w* \w Gomorrah|strong="H6017"\w*. +\v 20 \w It|strong="H8033"\w* \w will|strong="H3808"\w* \w never|strong="H3808"\w* \w be|strong="H3808"\w* \w inhabited|strong="H3427"\w*, \w neither|strong="H3808"\w* \w will|strong="H3808"\w* \w it|strong="H8033"\w* \w be|strong="H3808"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w from|strong="H5704"\w* \w generation|strong="H1755"\w* \w to|strong="H5704"\w* \w generation|strong="H1755"\w*. \w The|strong="H5704"\w* \w Arabian|strong="H6163"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w pitch|strong="H6163"\w* \w a|strong="H3068"\w* tent \w there|strong="H8033"\w*, \w neither|strong="H3808"\w* \w will|strong="H3808"\w* \w shepherds|strong="H7462"\w* \w make|strong="H3427"\w* \w their|strong="H3808"\w* flocks \w lie|strong="H7257"\w* \w down|strong="H3427"\w* \w there|strong="H8033"\w*. +\v 21 But wild animals \w of|strong="H1004"\w* \w the|strong="H4390"\w* \w desert|strong="H6728"\w* \w will|strong="H1004"\w* \w lie|strong="H7257"\w* \w there|strong="H8033"\w*, \w and|strong="H1004"\w* \w their|strong="H4390"\w* \w houses|strong="H1004"\w* \w will|strong="H1004"\w* \w be|strong="H1004"\w* \w full|strong="H4390"\w* \w of|strong="H1004"\w* jackals. \w Ostriches|strong="H3284"\w* \w will|strong="H1004"\w* \w dwell|strong="H7931"\w* \w there|strong="H8033"\w*, \w and|strong="H1004"\w* wild \w goats|strong="H8163"\w* \w will|strong="H1004"\w* \w frolic|strong="H7540"\w* \w there|strong="H8033"\w*. +\v 22 Hyenas \w will|strong="H3808"\w* \w cry|strong="H6030"\w* \w in|strong="H3117"\w* \w their|strong="H3117"\w* fortresses, \w and|strong="H6030"\w* \w jackals|strong="H8577"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w pleasant|strong="H6027"\w* \w palaces|strong="H1964"\w*. \w Her|strong="H3117"\w* \w time|strong="H6256"\w* \w is|strong="H3117"\w* \w near|strong="H7138"\w* \w to|strong="H6256"\w* come, \w and|strong="H6030"\w* \w her|strong="H3117"\w* \w days|strong="H3117"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w prolonged|strong="H4900"\w*. +\c 14 +\p +\v 1 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w have|strong="H7355"\w* \w compassion|strong="H7355"\w* \w on|strong="H5921"\w* \w Jacob|strong="H3290"\w*, \w and|strong="H3478"\w* \w will|strong="H3068"\w* \w yet|strong="H5750"\w* choose \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w set|strong="H3240"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w their|strong="H3068"\w* own land. \w The|strong="H5921"\w* \w foreigner|strong="H1616"\w* \w will|strong="H3068"\w* \w join|strong="H3867"\w* \w himself|strong="H3068"\w* \w with|strong="H1004"\w* \w them|strong="H5921"\w*, \w and|strong="H3478"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* unite \w with|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w*. +\v 2 \w The|strong="H5921"\w* \w peoples|strong="H5971"\w* \w will|strong="H3068"\w* \w take|strong="H3947"\w* \w them|strong="H5921"\w*, \w and|strong="H3478"\w* \w bring|strong="H3947"\w* \w them|strong="H5921"\w* \w to|strong="H3478"\w* \w their|strong="H3068"\w* \w place|strong="H4725"\w*. \w The|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w will|strong="H3068"\w* \w possess|strong="H5157"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w land|strong="H4725"\w* \w for|strong="H5921"\w* \w servants|strong="H5650"\w* \w and|strong="H3478"\w* \w for|strong="H5921"\w* \w handmaids|strong="H8198"\w*. \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w take|strong="H3947"\w* \w as|strong="H1961"\w* \w captives|strong="H7617"\w* \w those|strong="H5921"\w* \w whose|strong="H5650"\w* \w captives|strong="H7617"\w* \w they|strong="H3068"\w* \w were|strong="H3478"\w*; \w and|strong="H3478"\w* \w they|strong="H3068"\w* \w shall|strong="H3068"\w* \w rule|strong="H7287"\w* \w over|strong="H5921"\w* \w their|strong="H3068"\w* \w oppressors|strong="H5065"\w*. +\p +\v 3 \w It|strong="H5117"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w* \w in|strong="H3068"\w* \w the|strong="H5647"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w give|strong="H5117"\w* \w you|strong="H3117"\w* \w rest|strong="H5117"\w* \w from|strong="H4480"\w* \w your|strong="H3068"\w* \w sorrow|strong="H6090"\w*, \w from|strong="H4480"\w* \w your|strong="H3068"\w* \w trouble|strong="H7267"\w*, \w and|strong="H3068"\w* \w from|strong="H4480"\w* \w the|strong="H5647"\w* \w hard|strong="H7186"\w* \w service|strong="H5656"\w* \w in|strong="H3068"\w* \w which|strong="H3068"\w* \w you|strong="H3117"\w* \w were|strong="H1961"\w* \w made|strong="H1961"\w* \w to|strong="H3068"\w* \w serve|strong="H5647"\w*, +\v 4 \w that|strong="H4428"\w* \w you|strong="H5921"\w* \w will|strong="H4428"\w* \w take|strong="H5375"\w* \w up|strong="H5375"\w* \w this|strong="H2088"\w* \w parable|strong="H4912"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w and|strong="H4428"\w* say, “How \w the|strong="H5921"\w* \w oppressor|strong="H5065"\w* \w has|strong="H4428"\w* \w ceased|strong="H7673"\w*! \w The|strong="H5921"\w* golden \w city|strong="H4062"\w* \w has|strong="H4428"\w* \w ceased|strong="H7673"\w*!” +\v 5 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w broken|strong="H7665"\w* \w the|strong="H3068"\w* \w staff|strong="H4294"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w wicked|strong="H7563"\w*, \w the|strong="H3068"\w* \w scepter|strong="H7626"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w rulers|strong="H4910"\w*, +\v 6 \w who|strong="H5971"\w* \w struck|strong="H5221"\w* \w the|strong="H5221"\w* \w peoples|strong="H5971"\w* \w in|strong="H5971"\w* \w wrath|strong="H5678"\w* \w with|strong="H5971"\w* \w a|strong="H3068"\w* \w continual|strong="H1115"\w* \w stroke|strong="H4347"\w*, \w who|strong="H5971"\w* \w ruled|strong="H7287"\w* \w the|strong="H5221"\w* \w nations|strong="H1471"\w* \w in|strong="H5971"\w* \w anger|strong="H5678"\w*, \w with|strong="H5971"\w* \w a|strong="H3068"\w* \w persecution|strong="H4783"\w* \w that|strong="H5971"\w* \w no|strong="H1115"\w* \w one|strong="H1097"\w* \w restrained|strong="H2820"\w*. +\v 7 \w The|strong="H3605"\w* \w whole|strong="H3605"\w* earth \w is|strong="H3605"\w* \w at|strong="H3605"\w* \w rest|strong="H5117"\w*, \w and|strong="H8252"\w* \w is|strong="H3605"\w* \w quiet|strong="H8252"\w*. \w They|strong="H3605"\w* \w break|strong="H6476"\w* \w out|strong="H3605"\w* \w in|strong="H5117"\w* song. +\v 8 \w Yes|strong="H1571"\w*, \w the|strong="H5921"\w* \w cypress|strong="H1265"\w* \w trees|strong="H1265"\w* \w rejoice|strong="H8055"\w* \w with|strong="H5921"\w* \w you|strong="H5921"\w*, \w with|strong="H5921"\w* \w the|strong="H5921"\w* cedars \w of|strong="H5921"\w* \w Lebanon|strong="H3844"\w*, saying, “\w Since|strong="H1571"\w* \w you|strong="H5921"\w* \w are|strong="H1571"\w* humbled, \w no|strong="H3808"\w* lumberjack \w has|strong="H1571"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w us|strong="H5921"\w*.” +\v 9 \w Sheol|strong="H7585"\w*\f + \fr 14:9 \ft Sheol is the place of the dead.\f* \w from|strong="H6965"\w* \w beneath|strong="H8478"\w* \w has|strong="H4428"\w* \w moved|strong="H7264"\w* \w for|strong="H8478"\w* \w you|strong="H3605"\w* \w to|strong="H4428"\w* \w meet|strong="H7125"\w* \w you|strong="H3605"\w* \w at|strong="H4428"\w* \w your|strong="H3605"\w* \w coming|strong="H7125"\w*. \w It|strong="H6965"\w* \w stirs|strong="H5782"\w* \w up|strong="H6965"\w* \w the|strong="H3605"\w* \w departed|strong="H7496"\w* \w spirits|strong="H7496"\w* \w for|strong="H8478"\w* \w you|strong="H3605"\w*, even \w all|strong="H3605"\w* \w the|strong="H3605"\w* rulers \w of|strong="H4428"\w* \w the|strong="H3605"\w* earth. \w It|strong="H6965"\w* \w has|strong="H4428"\w* \w raised|strong="H6965"\w* \w up|strong="H6965"\w* \w from|strong="H6965"\w* \w their|strong="H3605"\w* \w thrones|strong="H3678"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*. +\v 10 \w They|strong="H3605"\w* \w all|strong="H3605"\w* \w will|strong="H1571"\w* \w answer|strong="H6030"\w* \w and|strong="H6030"\w* ask \w you|strong="H3605"\w*, “\w Have|strong="H1571"\w* \w you|strong="H3605"\w* \w also|strong="H1571"\w* \w become|strong="H2470"\w* \w as|strong="H3644"\w* \w weak|strong="H2470"\w* \w as|strong="H3644"\w* \w we|strong="H3068"\w* \w are|strong="H1571"\w*? \w Have|strong="H1571"\w* \w you|strong="H3605"\w* \w become|strong="H2470"\w* \w like|strong="H3644"\w* \w us|strong="H4911"\w*?” +\v 11 \w Your|strong="H3381"\w* \w pomp|strong="H1347"\w* \w is|strong="H7415"\w* \w brought|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w Sheol|strong="H7585"\w*,\f + \fr 14:11 \ft Sheol is the place of the dead. \f* \w with|strong="H3381"\w* \w the|strong="H8478"\w* sound \w of|strong="H8478"\w* \w your|strong="H3381"\w* stringed instruments. \w Maggots|strong="H7415"\w* \w are|strong="H7585"\w* \w spread|strong="H3331"\w* \w out|strong="H3331"\w* \w under|strong="H8478"\w* \w you|strong="H3381"\w*, \w and|strong="H3381"\w* \w worms|strong="H8438"\w* \w cover|strong="H4374"\w* \w you|strong="H3381"\w*. +\p +\v 12 How \w you|strong="H5921"\w* \w have|strong="H1121"\w* \w fallen|strong="H5307"\w* \w from|strong="H5921"\w* \w heaven|strong="H8064"\w*, shining \w one|strong="H1121"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w dawn|strong="H7837"\w*! How \w you|strong="H5921"\w* \w are|strong="H1121"\w* \w cut|strong="H1438"\w* \w down|strong="H5307"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* ground, \w who|strong="H1121"\w* laid \w the|strong="H5921"\w* \w nations|strong="H1471"\w* \w low|strong="H1121"\w*! +\v 13 \w You|strong="H2022"\w* said \w in|strong="H3427"\w* \w your|strong="H7311"\w* \w heart|strong="H3824"\w*, “\w I|strong="H7311"\w* \w will|strong="H8064"\w* \w ascend|strong="H5927"\w* \w into|strong="H5927"\w* \w heaven|strong="H8064"\w*! \w I|strong="H7311"\w* \w will|strong="H8064"\w* \w exalt|strong="H7311"\w* \w my|strong="H7311"\w* \w throne|strong="H3678"\w* \w above|strong="H4605"\w* \w the|strong="H5927"\w* \w stars|strong="H3556"\w* \w of|strong="H3427"\w* \w God|strong="H8064"\w*! \w I|strong="H7311"\w* \w will|strong="H8064"\w* \w sit|strong="H3427"\w* \w on|strong="H3427"\w* \w the|strong="H5927"\w* \w mountain|strong="H2022"\w* \w of|strong="H3427"\w* \w assembly|strong="H4150"\w*, \w in|strong="H3427"\w* \w the|strong="H5927"\w* \w far|strong="H5927"\w* \w north|strong="H6828"\w*! +\v 14 \w I|strong="H5921"\w* will \w ascend|strong="H5927"\w* \w above|strong="H5921"\w* \w the|strong="H5921"\w* \w heights|strong="H1116"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w clouds|strong="H5645"\w*! \w I|strong="H5921"\w* will \w make|strong="H1819"\w* \w myself|strong="H1819"\w* \w like|strong="H1819"\w* \w the|strong="H5921"\w* \w Most|strong="H5945"\w* \w High|strong="H1116"\w*!” +\v 15 Yet \w you|strong="H3381"\w* shall be \w brought|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w Sheol|strong="H7585"\w*,\f + \fr 14:15 \ft Sheol is the place of the dead.\f* \w to|strong="H3381"\w* \w the|strong="H3381"\w* depths \w of|strong="H3411"\w* \w the|strong="H3381"\w* \w pit|strong="H7585"\w*. +\v 16 \w Those|strong="H2088"\w* \w who|strong="H2088"\w* \w see|strong="H7200"\w* \w you|strong="H7200"\w* \w will|strong="H2088"\w* \w stare|strong="H7200"\w* \w at|strong="H7200"\w* \w you|strong="H7200"\w*. \w They|strong="H7200"\w* \w will|strong="H2088"\w* ponder \w you|strong="H7200"\w*, saying, “\w Is|strong="H2088"\w* \w this|strong="H2088"\w* \w the|strong="H7200"\w* \w man|strong="H2088"\w* \w who|strong="H2088"\w* made \w the|strong="H7200"\w* earth \w to|strong="H7200"\w* \w tremble|strong="H7264"\w*, \w who|strong="H2088"\w* \w shook|strong="H7493"\w* \w kingdoms|strong="H4467"\w*, +\v 17 \w who|strong="H3808"\w* \w made|strong="H7760"\w* \w the|strong="H7760"\w* \w world|strong="H8398"\w* \w like|strong="H1004"\w* \w a|strong="H3068"\w* \w wilderness|strong="H4057"\w*, \w and|strong="H1004"\w* \w overthrew|strong="H2040"\w* \w its|strong="H7760"\w* \w cities|strong="H5892"\w*, \w who|strong="H3808"\w* didn’t \w release|strong="H6605"\w* \w his|strong="H7760"\w* prisoners \w to|strong="H1004"\w* \w their|strong="H7760"\w* \w home|strong="H1004"\w*?” +\p +\v 18 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w sleep|strong="H7901"\w* \w in|strong="H1004"\w* \w glory|strong="H3519"\w*, \w everyone|strong="H3605"\w* \w in|strong="H1004"\w* \w his|strong="H3605"\w* own \w house|strong="H1004"\w*. +\v 19 But \w you|strong="H3381"\w* \w are|strong="H6913"\w* \w cast|strong="H7993"\w* \w away|strong="H7993"\w* \w from|strong="H3381"\w* \w your|strong="H2026"\w* \w tomb|strong="H6913"\w* \w like|strong="H3381"\w* \w an|strong="H8581"\w* \w abominable|strong="H8581"\w* \w branch|strong="H5342"\w*, \w clothed|strong="H3830"\w* \w with|strong="H3381"\w* \w the|strong="H2026"\w* \w slain|strong="H2026"\w* who \w are|strong="H6913"\w* \w thrust|strong="H3381"\w* \w through|strong="H2944"\w* \w with|strong="H3381"\w* \w the|strong="H2026"\w* \w sword|strong="H2719"\w*, who \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H2026"\w* stones \w of|strong="H2719"\w* \w the|strong="H2026"\w* pit; \w like|strong="H3381"\w* \w a|strong="H3068"\w* \w dead|strong="H6297"\w* body trodden under foot. +\v 20 \w You|strong="H3588"\w* \w will|strong="H5971"\w* \w not|strong="H3808"\w* join \w them|strong="H7121"\w* \w in|strong="H7121"\w* \w burial|strong="H6900"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H5971"\w* \w destroyed|strong="H7843"\w* \w your|strong="H3588"\w* land. \w You|strong="H3588"\w* \w have|strong="H5971"\w* \w killed|strong="H2026"\w* \w your|strong="H3588"\w* \w people|strong="H5971"\w*. \w The|strong="H3588"\w* \w offspring|strong="H2233"\w* \w of|strong="H2233"\w* \w evildoers|strong="H7489"\w* \w will|strong="H5971"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w named|strong="H7121"\w* \w forever|strong="H5769"\w*. +\p +\v 21 \w Prepare|strong="H3559"\w* \w for|strong="H6440"\w* \w slaughter|strong="H4293"\w* \w of|strong="H1121"\w* \w his|strong="H6440"\w* \w children|strong="H1121"\w* \w because|strong="H6440"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1121"\w* \w their|strong="H6440"\w* fathers, \w that|strong="H5892"\w* \w they|strong="H1077"\w* \w not|strong="H1077"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H1121"\w* \w possess|strong="H3423"\w* \w the|strong="H6440"\w* earth, \w and|strong="H1121"\w* \w fill|strong="H4390"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w world|strong="H8398"\w* \w with|strong="H4390"\w* \w cities|strong="H5892"\w*. +\v 22 “\w I|strong="H5921"\w* \w will|strong="H3068"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, “\w and|strong="H6965"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* Babylon \w name|strong="H8034"\w* \w and|strong="H6965"\w* \w remnant|strong="H7605"\w*, \w and|strong="H6965"\w* \w son|strong="H5209"\w* \w and|strong="H6965"\w* \w son|strong="H5209"\w*’s \w son|strong="H5209"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 23 “\w I|strong="H7760"\w* \w will|strong="H3068"\w* \w also|strong="H3068"\w* \w make|strong="H7760"\w* \w it|strong="H7760"\w* \w a|strong="H3068"\w* \w possession|strong="H4180"\w* \w for|strong="H3068"\w* \w the|strong="H5002"\w* porcupine, \w and|strong="H3068"\w* pools \w of|strong="H3068"\w* \w water|strong="H4325"\w*. \w I|strong="H7760"\w* \w will|strong="H3068"\w* \w sweep|strong="H2894"\w* \w it|strong="H7760"\w* \w with|strong="H3068"\w* \w the|strong="H5002"\w* \w broom|strong="H4292"\w* \w of|strong="H3068"\w* \w destruction|strong="H8045"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\p +\v 24 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w has|strong="H3068"\w* \w sworn|strong="H7650"\w*, saying, “\w Surely|strong="H6965"\w*, \w as|strong="H1961"\w* \w I|strong="H3651"\w* \w have|strong="H1961"\w* \w thought|strong="H1819"\w*, \w so|strong="H3651"\w* \w shall|strong="H3068"\w* \w it|strong="H1931"\w* \w happen|strong="H1961"\w*; \w and|strong="H6965"\w* \w as|strong="H1961"\w* \w I|strong="H3651"\w* \w have|strong="H1961"\w* \w purposed|strong="H3289"\w*, \w so|strong="H3651"\w* \w shall|strong="H3068"\w* \w it|strong="H1931"\w* \w stand|strong="H6965"\w*: +\v 25 \w that|strong="H2022"\w* \w I|strong="H5921"\w* \w will|strong="H2022"\w* \w break|strong="H7665"\w* \w the|strong="H5921"\w* Assyrian \w in|strong="H5921"\w* \w my|strong="H5921"\w* land, \w and|strong="H2022"\w* tread \w him|strong="H5921"\w* \w under|strong="H5921"\w* foot \w on|strong="H5921"\w* \w my|strong="H5921"\w* \w mountains|strong="H2022"\w*. Then \w his|strong="H5921"\w* \w yoke|strong="H5923"\w* \w will|strong="H2022"\w* \w leave|strong="H5493"\w* \w them|strong="H5921"\w*, \w and|strong="H2022"\w* \w his|strong="H5921"\w* \w burden|strong="H5448"\w* \w leave|strong="H5493"\w* \w their|strong="H5921"\w* \w shoulders|strong="H7926"\w*. +\v 26 \w This|strong="H2063"\w* \w is|strong="H3027"\w* \w the|strong="H3605"\w* \w plan|strong="H6098"\w* \w that|strong="H3605"\w* \w is|strong="H3027"\w* \w determined|strong="H3289"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* earth. \w This|strong="H2063"\w* \w is|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w that|strong="H3605"\w* \w is|strong="H3027"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*. +\v 27 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w has|strong="H3068"\w* \w planned|strong="H3289"\w*, \w and|strong="H3068"\w* \w who|strong="H4310"\w* \w can|strong="H4310"\w* stop \w it|strong="H3588"\w*? \w His|strong="H3068"\w* \w hand|strong="H3027"\w* \w is|strong="H3068"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w*, \w and|strong="H3068"\w* \w who|strong="H4310"\w* \w can|strong="H4310"\w* \w turn|strong="H7725"\w* \w it|strong="H3588"\w* \w back|strong="H7725"\w*?” +\p +\v 28 \w This|strong="H2088"\w* \w burden|strong="H4853"\w* \w was|strong="H1961"\w* \w in|strong="H8141"\w* \w the|strong="H1961"\w* \w year|strong="H8141"\w* \w that|strong="H4428"\w* \w King|strong="H4428"\w* Ahaz \w died|strong="H4194"\w*. +\p +\v 29 Don’t \w rejoice|strong="H8055"\w*, \w O|strong="H3068"\w* \w Philistia|strong="H6429"\w*, \w all|strong="H3605"\w* \w of|strong="H7626"\w* \w you|strong="H3588"\w*, \w because|strong="H3588"\w* \w the|strong="H3605"\w* \w rod|strong="H7626"\w* \w that|strong="H3588"\w* \w struck|strong="H5221"\w* \w you|strong="H3588"\w* \w is|strong="H3605"\w* \w broken|strong="H7665"\w*; \w for|strong="H3588"\w* \w out|strong="H3318"\w* \w of|strong="H7626"\w* \w the|strong="H3605"\w* \w serpent|strong="H5175"\w*’s \w root|strong="H8328"\w* \w an|strong="H5221"\w* \w adder|strong="H8314"\w* \w will|strong="H8328"\w* \w emerge|strong="H3318"\w*, \w and|strong="H3318"\w* \w his|strong="H3605"\w* \w fruit|strong="H6529"\w* \w will|strong="H8328"\w* \w be|strong="H3318"\w* \w a|strong="H3068"\w* \w fiery|strong="H8314"\w* \w flying|strong="H5774"\w* \w serpent|strong="H5175"\w*. +\v 30 \w The|strong="H4191"\w* \w firstborn|strong="H1060"\w* \w of|strong="H1060"\w* \w the|strong="H4191"\w* \w poor|strong="H1800"\w* \w will|strong="H8328"\w* \w eat|strong="H7462"\w*, \w and|strong="H4191"\w* \w the|strong="H4191"\w* \w needy|strong="H1800"\w* \w will|strong="H8328"\w* \w lie|strong="H7257"\w* \w down|strong="H7257"\w* \w in|strong="H4191"\w* safety; \w and|strong="H4191"\w* I \w will|strong="H8328"\w* \w kill|strong="H2026"\w* \w your|strong="H2026"\w* \w root|strong="H8328"\w* \w with|strong="H4191"\w* \w famine|strong="H7458"\w*, \w and|strong="H4191"\w* \w your|strong="H2026"\w* \w remnant|strong="H7611"\w* \w will|strong="H8328"\w* \w be|strong="H4191"\w* \w killed|strong="H2026"\w*. +\p +\v 31 \w Howl|strong="H3213"\w*, \w gate|strong="H8179"\w*! \w Cry|strong="H2199"\w*, \w city|strong="H5892"\w*! \w You|strong="H3588"\w* \w are|strong="H5892"\w* \w melted|strong="H4127"\w* \w away|strong="H4127"\w*, \w Philistia|strong="H6429"\w*, \w all|strong="H3605"\w* \w of|strong="H5892"\w* \w you|strong="H3588"\w*; \w for|strong="H3588"\w* \w smoke|strong="H6227"\w* comes \w out|strong="H2199"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w north|strong="H6828"\w*, \w and|strong="H5892"\w* \w there|strong="H3605"\w* \w is|strong="H3605"\w* \w no|strong="H3605"\w* straggler \w in|strong="H5892"\w* \w his|strong="H3605"\w* \w ranks|strong="H4151"\w*. +\p +\v 32 \w What|strong="H4100"\w* \w will|strong="H3068"\w* \w they|strong="H3588"\w* \w answer|strong="H6030"\w* \w the|strong="H3588"\w* \w messengers|strong="H4397"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w nation|strong="H1471"\w*? \w That|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w founded|strong="H3245"\w* \w Zion|strong="H6726"\w*, \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w her|strong="H3588"\w* \w the|strong="H3588"\w* \w afflicted|strong="H6041"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w* \w will|strong="H3068"\w* \w take|strong="H2620"\w* \w refuge|strong="H2620"\w*. +\c 15 +\p +\v 1 \w The|strong="H3588"\w* \w burden|strong="H4853"\w* \w of|strong="H4853"\w* \w Moab|strong="H4124"\w*. +\p \w For|strong="H3588"\w* \w in|strong="H3588"\w* \w a|strong="H3068"\w* \w night|strong="H3915"\w*, \w Ar|strong="H6144"\w* \w of|strong="H4853"\w* \w Moab|strong="H4124"\w* \w is|strong="H4124"\w* laid \w waste|strong="H7703"\w*, \w and|strong="H3915"\w* brought \w to|strong="H3588"\w* nothing. \w For|strong="H3588"\w* \w in|strong="H3588"\w* \w a|strong="H3068"\w* \w night|strong="H3915"\w* \w Kir|strong="H7024"\w* \w of|strong="H4853"\w* \w Moab|strong="H4124"\w* \w is|strong="H4124"\w* laid \w waste|strong="H7703"\w*, \w and|strong="H3915"\w* brought \w to|strong="H3588"\w* nothing. +\v 2 \w They|strong="H5921"\w* \w have|strong="H3605"\w* \w gone|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* Bayith, \w and|strong="H7218"\w* \w to|strong="H5927"\w* \w Dibon|strong="H1769"\w*, \w to|strong="H5927"\w* \w the|strong="H3605"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*, \w to|strong="H5927"\w* \w weep|strong="H1065"\w*. \w Moab|strong="H4124"\w* \w wails|strong="H3213"\w* \w over|strong="H5921"\w* \w Nebo|strong="H5015"\w* \w and|strong="H7218"\w* \w over|strong="H5921"\w* \w Medeba|strong="H4311"\w*. \w Baldness|strong="H7144"\w* \w is|strong="H3605"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w of|strong="H7218"\w* \w their|strong="H3605"\w* \w heads|strong="H7218"\w*. \w Every|strong="H3605"\w* \w beard|strong="H2206"\w* \w is|strong="H3605"\w* \w cut|strong="H1639"\w* \w off|strong="H5921"\w*. +\v 3 \w In|strong="H5921"\w* \w their|strong="H3605"\w* \w streets|strong="H2351"\w*, \w they|strong="H5921"\w* clothe \w themselves|strong="H5921"\w* \w in|strong="H5921"\w* \w sackcloth|strong="H8242"\w*. \w In|strong="H5921"\w* \w their|strong="H3605"\w* \w streets|strong="H2351"\w* \w and|strong="H3381"\w* \w on|strong="H5921"\w* \w their|strong="H3605"\w* \w housetops|strong="H1406"\w*, \w everyone|strong="H3605"\w* \w wails|strong="H3213"\w*, \w weeping|strong="H1065"\w* \w abundantly|strong="H3381"\w*. +\v 4 \w Heshbon|strong="H2809"\w* \w cries|strong="H2199"\w* \w out|strong="H2199"\w* \w with|strong="H5921"\w* Elealeh. \w Their|strong="H8085"\w* \w voice|strong="H6963"\w* \w is|strong="H5315"\w* \w heard|strong="H8085"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Jahaz|strong="H3096"\w*. \w Therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w armed|strong="H2502"\w* \w men|strong="H2502"\w* \w of|strong="H6963"\w* \w Moab|strong="H4124"\w* \w cry|strong="H2199"\w* \w aloud|strong="H2199"\w*. \w Their|strong="H8085"\w* \w souls|strong="H5315"\w* tremble \w within|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 5 \w My|strong="H5927"\w* \w heart|strong="H3820"\w* \w cries|strong="H2199"\w* \w out|strong="H2199"\w* \w for|strong="H3588"\w* \w Moab|strong="H4124"\w*! \w Her|strong="H1870"\w* nobles flee \w to|strong="H5704"\w* \w Zoar|strong="H6820"\w*, \w to|strong="H5704"\w* Eglath Shelishiyah; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w by|strong="H1870"\w* \w the|strong="H3588"\w* \w ascent|strong="H4608"\w* \w of|strong="H1870"\w* \w Luhith|strong="H3872"\w* \w with|strong="H5927"\w* \w weeping|strong="H1065"\w*; \w for|strong="H3588"\w* \w on|strong="H1870"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w to|strong="H5704"\w* \w Horonaim|strong="H2773"\w*, \w they|strong="H3588"\w* \w raise|strong="H5782"\w* \w up|strong="H5927"\w* \w a|strong="H3068"\w* \w cry|strong="H2199"\w* \w of|strong="H1870"\w* \w destruction|strong="H7667"\w*. +\v 6 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w waters|strong="H4325"\w* \w of|strong="H4325"\w* \w Nimrim|strong="H5249"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w desolate|strong="H4923"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w grass|strong="H2682"\w* \w has|strong="H1961"\w* \w withered|strong="H3001"\w* \w away|strong="H3615"\w*, \w the|strong="H3588"\w* \w tender|strong="H1877"\w* \w grass|strong="H2682"\w* \w fails|strong="H3615"\w*, \w there|strong="H1961"\w* \w is|strong="H1961"\w* \w no|strong="H3808"\w* \w green|strong="H3418"\w* \w thing|strong="H3418"\w*. +\v 7 \w Therefore|strong="H3651"\w* \w they|strong="H3651"\w* \w will|strong="H6213"\w* \w carry|strong="H5375"\w* \w away|strong="H5375"\w* \w the|strong="H5921"\w* \w abundance|strong="H3502"\w* \w they|strong="H3651"\w* \w have|strong="H5375"\w* \w gotten|strong="H6213"\w*, \w and|strong="H6213"\w* \w that|strong="H3651"\w* \w which|strong="H5158"\w* \w they|strong="H3651"\w* \w have|strong="H5375"\w* \w stored|strong="H6486"\w* \w up|strong="H5375"\w*, \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w brook|strong="H5158"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w willows|strong="H6155"\w*. +\v 8 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w cry|strong="H2201"\w* \w has|strong="H3588"\w* \w gone|strong="H5362"\w* \w around|strong="H5362"\w* \w the|strong="H3588"\w* \w borders|strong="H1366"\w* \w of|strong="H1366"\w* \w Moab|strong="H4124"\w*, \w its|strong="H3588"\w* \w wailing|strong="H3215"\w* \w to|strong="H5704"\w* Eglaim, \w and|strong="H4124"\w* \w its|strong="H3588"\w* \w wailing|strong="H3215"\w* \w to|strong="H5704"\w* Beer Elim. +\v 9 \w For|strong="H3588"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w of|strong="H4325"\w* \w Dimon|strong="H1775"\w* \w are|strong="H4325"\w* \w full|strong="H4390"\w* \w of|strong="H4325"\w* \w blood|strong="H1818"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H4325"\w* \w bring|strong="H7896"\w* \w yet|strong="H3588"\w* \w more|strong="H3254"\w* \w on|strong="H5921"\w* \w Dimon|strong="H1775"\w*, \w a|strong="H3068"\w* lion \w on|strong="H5921"\w* \w those|strong="H5921"\w* \w of|strong="H4325"\w* \w Moab|strong="H4124"\w* \w who|strong="H6413"\w* \w escape|strong="H6413"\w*, \w and|strong="H1818"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w remnant|strong="H7611"\w* \w of|strong="H4325"\w* \w the|strong="H5921"\w* land. +\c 16 +\p +\v 1 \w Send|strong="H7971"\w* \w the|strong="H7971"\w* \w lambs|strong="H3733"\w* \w for|strong="H7971"\w* \w the|strong="H7971"\w* \w ruler|strong="H4910"\w* \w of|strong="H1323"\w* \w the|strong="H7971"\w* land \w from|strong="H7971"\w* \w Selah|strong="H5554"\w* \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w wilderness|strong="H4057"\w*, \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w mountain|strong="H2022"\w* \w of|strong="H1323"\w* \w the|strong="H7971"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Zion|strong="H6726"\w*. +\v 2 \w For|strong="H7971"\w* \w it|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w that|strong="H1961"\w* \w as|strong="H1961"\w* \w wandering|strong="H5074"\w* \w birds|strong="H5775"\w*, \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w scattered|strong="H7971"\w* \w nest|strong="H7064"\w*, \w so|strong="H7971"\w* \w will|strong="H1961"\w* \w the|strong="H7971"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w Moab|strong="H4124"\w* \w be|strong="H1961"\w* \w at|strong="H1961"\w* \w the|strong="H7971"\w* \w fords|strong="H4569"\w* \w of|strong="H1323"\w* \w the|strong="H7971"\w* Arnon. +\v 3 \w Give|strong="H6213"\w* \w counsel|strong="H6098"\w*! \w Execute|strong="H6213"\w* justice! \w Make|strong="H6213"\w* \w your|strong="H6213"\w* \w shade|strong="H6738"\w* \w like|strong="H6213"\w* \w the|strong="H6213"\w* \w night|strong="H3915"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w the|strong="H6213"\w* \w noonday|strong="H6672"\w*! \w Hide|strong="H5641"\w* \w the|strong="H6213"\w* \w outcasts|strong="H5080"\w*! Don’t \w betray|strong="H1540"\w* \w the|strong="H6213"\w* \w fugitive|strong="H5074"\w*! +\v 4 Let \w my|strong="H3615"\w* \w outcasts|strong="H5080"\w* \w dwell|strong="H1481"\w* \w with|strong="H6440"\w* \w you|strong="H3588"\w*! \w As|strong="H3588"\w* \w for|strong="H3588"\w* \w Moab|strong="H4124"\w*, \w be|strong="H1933"\w* \w a|strong="H3068"\w* \w hiding|strong="H5643"\w* \w place|strong="H5643"\w* \w for|strong="H3588"\w* \w him|strong="H6440"\w* \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w destroyer|strong="H7703"\w*. \w For|strong="H3588"\w* \w the|strong="H6440"\w* extortionist \w is|strong="H4124"\w* \w brought|strong="H3615"\w* \w to|strong="H6440"\w* nothing. \w Destruction|strong="H7701"\w* ceases. \w The|strong="H6440"\w* \w oppressors|strong="H7429"\w* \w are|strong="H6440"\w* \w consumed|strong="H3615"\w* \w out|strong="H4480"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*. +\v 5 \w A|strong="H3068"\w* \w throne|strong="H3678"\w* \w will|strong="H2617"\w* \w be|strong="H1732"\w* \w established|strong="H3559"\w* \w in|strong="H3427"\w* loving \w kindness|strong="H2617"\w*. One \w will|strong="H2617"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w* \w in|strong="H3427"\w* truth, \w in|strong="H3427"\w* \w the|strong="H5921"\w* tent \w of|strong="H3427"\w* \w David|strong="H1732"\w*, \w judging|strong="H8199"\w*, \w seeking|strong="H1875"\w* \w justice|strong="H4941"\w*, \w and|strong="H4941"\w* swift \w to|strong="H5921"\w* do \w righteousness|strong="H6664"\w*. +\p +\v 6 \w We|strong="H8085"\w* \w have|strong="H3808"\w* \w heard|strong="H8085"\w* \w of|strong="H1347"\w* \w the|strong="H8085"\w* \w pride|strong="H1347"\w* \w of|strong="H1347"\w* \w Moab|strong="H4124"\w*, \w that|strong="H8085"\w* \w he|strong="H3651"\w* \w is|strong="H3651"\w* \w very|strong="H3966"\w* \w proud|strong="H1346"\w*; \w even|strong="H3651"\w* \w of|strong="H1347"\w* \w his|strong="H8085"\w* \w arrogance|strong="H1346"\w*, \w his|strong="H8085"\w* \w pride|strong="H1347"\w*, \w and|strong="H8085"\w* \w his|strong="H8085"\w* \w wrath|strong="H5678"\w*. \w His|strong="H8085"\w* boastings \w are|strong="H3808"\w* \w nothing|strong="H3808"\w*. +\v 7 \w Therefore|strong="H3651"\w* \w Moab|strong="H4124"\w* \w will|strong="H4124"\w* \w wail|strong="H3213"\w* \w for|strong="H3605"\w* \w Moab|strong="H4124"\w*. \w Everyone|strong="H3605"\w* \w will|strong="H4124"\w* \w wail|strong="H3213"\w*. \w You|strong="H3605"\w* \w will|strong="H4124"\w* \w mourn|strong="H1897"\w* \w for|strong="H3605"\w* \w the|strong="H3605"\w* raisin cakes \w of|strong="H3605"\w* Kir Hareseth, utterly \w stricken|strong="H5218"\w*. +\v 8 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w fields|strong="H7709"\w* \w of|strong="H4057"\w* \w Heshbon|strong="H2809"\w* languish \w with|strong="H3220"\w* \w the|strong="H3588"\w* \w vine|strong="H1612"\w* \w of|strong="H4057"\w* \w Sibmah|strong="H7643"\w*. \w The|strong="H3588"\w* \w lords|strong="H1167"\w* \w of|strong="H4057"\w* \w the|strong="H3588"\w* \w nations|strong="H1471"\w* \w have|strong="H1471"\w* \w broken|strong="H5674"\w* \w down|strong="H1986"\w* \w its|strong="H3220"\w* \w choice|strong="H8291"\w* \w branches|strong="H7976"\w*, \w which|strong="H1471"\w* \w reached|strong="H5060"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Jazer|strong="H3270"\w*, \w which|strong="H1471"\w* \w wandered|strong="H8582"\w* \w into|strong="H3220"\w* \w the|strong="H3588"\w* \w wilderness|strong="H4057"\w*. \w Its|strong="H3220"\w* shoots \w were|strong="H1471"\w* \w spread|strong="H5203"\w* \w abroad|strong="H5203"\w*. \w They|strong="H3588"\w* \w passed|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H3588"\w* \w sea|strong="H3220"\w*. +\v 9 \w Therefore|strong="H3651"\w* \w I|strong="H3588"\w* \w will|strong="H5307"\w* \w weep|strong="H1058"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w weeping|strong="H1065"\w* \w of|strong="H5921"\w* \w Jazer|strong="H3270"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w vine|strong="H1612"\w* \w of|strong="H5921"\w* \w Sibmah|strong="H7643"\w*. \w I|strong="H3588"\w* \w will|strong="H5307"\w* \w water|strong="H7301"\w* \w you|strong="H3588"\w* \w with|strong="H5921"\w* \w my|strong="H5921"\w* \w tears|strong="H1832"\w*, \w Heshbon|strong="H2809"\w*, \w and|strong="H5307"\w* Elealeh: \w for|strong="H3588"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w summer|strong="H7019"\w* \w fruits|strong="H7019"\w* \w and|strong="H5307"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w harvest|strong="H7105"\w* \w the|strong="H5921"\w* battle \w shout|strong="H1959"\w* \w has|strong="H3588"\w* \w fallen|strong="H5307"\w*. +\v 10 \w Gladness|strong="H8057"\w* \w is|strong="H3808"\w* taken \w away|strong="H4480"\w*, \w and|strong="H8057"\w* \w joy|strong="H8057"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w fruitful|strong="H3759"\w* \w field|strong="H3759"\w*; \w and|strong="H8057"\w* \w in|strong="H3808"\w* \w the|strong="H4480"\w* \w vineyards|strong="H3754"\w* \w there|strong="H4480"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w no|strong="H3808"\w* \w singing|strong="H7442"\w*, \w neither|strong="H3808"\w* \w joyful|strong="H7442"\w* \w noise|strong="H7321"\w*. \w Nobody|strong="H3808"\w* \w will|strong="H3808"\w* \w tread|strong="H1869"\w* \w out|strong="H4480"\w* \w wine|strong="H3196"\w* \w in|strong="H3808"\w* \w the|strong="H4480"\w* \w presses|strong="H3342"\w*. \w I|strong="H3808"\w* \w have|strong="H3808"\w* \w made|strong="H7673"\w* \w the|strong="H4480"\w* \w shouting|strong="H1959"\w* \w stop|strong="H7673"\w*. +\v 11 \w Therefore|strong="H3651"\w* \w my|strong="H5921"\w* \w heart|strong="H4578"\w* sounds \w like|strong="H3651"\w* \w a|strong="H3068"\w* \w harp|strong="H3658"\w* \w for|strong="H5921"\w* \w Moab|strong="H4124"\w*, \w and|strong="H3658"\w* \w my|strong="H5921"\w* \w inward|strong="H7130"\w* \w parts|strong="H7130"\w* \w for|strong="H5921"\w* Kir Heres. +\v 12 \w It|strong="H5921"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w that|strong="H3588"\w* \w when|strong="H3588"\w* \w Moab|strong="H4124"\w* \w presents|strong="H7200"\w* \w himself|strong="H3808"\w*, \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w wearies|strong="H3811"\w* \w himself|strong="H3808"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w high|strong="H1116"\w* \w place|strong="H1116"\w*, \w and|strong="H7200"\w* \w comes|strong="H1961"\w* \w to|strong="H3201"\w* \w his|strong="H5921"\w* \w sanctuary|strong="H4720"\w* \w to|strong="H3201"\w* \w pray|strong="H6419"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w prevail|strong="H3201"\w*. +\p +\v 13 \w This|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w word|strong="H1697"\w* \w that|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w concerning|strong="H1697"\w* \w Moab|strong="H4124"\w* \w in|strong="H3068"\w* time past. +\v 14 \w But|strong="H3808"\w* \w now|strong="H6258"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w*, \w saying|strong="H1696"\w*, “Within \w three|strong="H7969"\w* \w years|strong="H8141"\w*, \w as|strong="H3068"\w* \w a|strong="H3068"\w* \w worker|strong="H7916"\w* bound \w by|strong="H8141"\w* contract \w would|strong="H3068"\w* \w count|strong="H8141"\w* \w them|strong="H3068"\w*, \w the|strong="H3605"\w* \w glory|strong="H3519"\w* \w of|strong="H3068"\w* \w Moab|strong="H4124"\w* \w shall|strong="H3068"\w* \w be|strong="H3808"\w* \w brought|strong="H3068"\w* \w into|strong="H3519"\w* contempt, \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w great|strong="H7227"\w* \w multitude|strong="H1995"\w*; \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w remnant|strong="H7605"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w very|strong="H4213"\w* \w small|strong="H4592"\w* \w and|strong="H3068"\w* \w feeble|strong="H3808"\w*.” +\c 17 +\p +\v 1 \w The|strong="H5493"\w* \w burden|strong="H4853"\w* \w of|strong="H5892"\w* \w Damascus|strong="H1834"\w*. +\p “\w Behold|strong="H2009"\w*, \w Damascus|strong="H1834"\w* \w is|strong="H2009"\w* \w taken|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* \w being|strong="H1961"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w*, \w and|strong="H5892"\w* \w it|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w ruinous|strong="H4654"\w* \w heap|strong="H4596"\w*. +\v 2 \w The|strong="H5800"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w Aroer|strong="H6177"\w* \w are|strong="H5892"\w* \w forsaken|strong="H5800"\w*. \w They|strong="H5892"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w for|strong="H5892"\w* \w flocks|strong="H5739"\w*, \w which|strong="H5892"\w* \w shall|strong="H5892"\w* \w lie|strong="H7257"\w* \w down|strong="H7257"\w*, \w and|strong="H5892"\w* \w no|strong="H1961"\w* \w one|strong="H1961"\w* \w shall|strong="H5892"\w* \w make|strong="H2729"\w* \w them|strong="H1961"\w* \w afraid|strong="H2729"\w*. +\v 3 \w The|strong="H5002"\w* \w fortress|strong="H4013"\w* \w shall|strong="H3068"\w* \w cease|strong="H7673"\w* \w from|strong="H3478"\w* Ephraim, \w and|strong="H1121"\w* \w the|strong="H5002"\w* \w kingdom|strong="H4467"\w* \w from|strong="H3478"\w* \w Damascus|strong="H1834"\w*, \w and|strong="H1121"\w* \w the|strong="H5002"\w* \w remnant|strong="H7605"\w* \w of|strong="H1121"\w* Syria. \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w the|strong="H5002"\w* \w glory|strong="H3519"\w* \w of|strong="H1121"\w* \w the|strong="H5002"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1121"\w* \w Armies|strong="H6635"\w*. +\p +\v 4 “\w It|strong="H1931"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w in|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w the|strong="H3117"\w* \w glory|strong="H3519"\w* \w of|strong="H3117"\w* \w Jacob|strong="H3290"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w made|strong="H1961"\w* \w thin|strong="H1809"\w*, \w and|strong="H3117"\w* \w the|strong="H3117"\w* \w fatness|strong="H4924"\w* \w of|strong="H3117"\w* \w his|strong="H1961"\w* \w flesh|strong="H1320"\w* \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w lean|strong="H7329"\w*. +\v 5 \w It|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w when|strong="H1961"\w* \w the|strong="H1961"\w* harvester gathers \w the|strong="H1961"\w* wheat, \w and|strong="H1961"\w* \w his|strong="H1961"\w* \w arm|strong="H2220"\w* reaps \w the|strong="H1961"\w* \w grain|strong="H7054"\w*. Yes, \w it|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w when|strong="H1961"\w* \w one|strong="H1961"\w* \w gleans|strong="H7114"\w* \w grain|strong="H7054"\w* \w in|strong="H1961"\w* \w the|strong="H1961"\w* \w valley|strong="H6010"\w* \w of|strong="H6010"\w* \w Rephaim|strong="H7497"\w*. +\v 6 \w Yet|strong="H3068"\w* \w gleanings|strong="H5955"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w left|strong="H7604"\w* \w there|strong="H3068"\w*, \w like|strong="H3478"\w* \w the|strong="H5002"\w* \w shaking|strong="H5363"\w* \w of|strong="H3068"\w* \w an|strong="H3068"\w* \w olive|strong="H2132"\w* \w tree|strong="H2132"\w*, \w two|strong="H8147"\w* \w or|strong="H7218"\w* \w three|strong="H7969"\w* \w olives|strong="H2132"\w* \w in|strong="H3478"\w* \w the|strong="H5002"\w* \w top|strong="H7218"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* uppermost bough, \w four|strong="H7969"\w* \w or|strong="H7218"\w* \w five|strong="H2568"\w* \w in|strong="H3478"\w* \w the|strong="H5002"\w* outermost \w branches|strong="H5585"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w fruitful|strong="H6509"\w* \w tree|strong="H2132"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5002"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\v 7 \w In|strong="H5921"\w* \w that|strong="H7200"\w* \w day|strong="H3117"\w*, \w people|strong="H1931"\w* \w will|strong="H3478"\w* \w look|strong="H7200"\w* \w to|strong="H3478"\w* \w their|strong="H7200"\w* \w Maker|strong="H6213"\w*, \w and|strong="H3478"\w* \w their|strong="H7200"\w* \w eyes|strong="H5869"\w* \w will|strong="H3478"\w* \w have|strong="H5869"\w* \w respect|strong="H7200"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w*. +\v 8 \w They|strong="H3808"\w* \w will|strong="H3027"\w* \w not|strong="H3808"\w* \w look|strong="H7200"\w* \w to|strong="H6213"\w* \w the|strong="H7200"\w* \w altars|strong="H4196"\w*, \w the|strong="H7200"\w* \w work|strong="H4639"\w* \w of|strong="H3027"\w* \w their|strong="H7200"\w* \w hands|strong="H3027"\w*; \w neither|strong="H3808"\w* \w shall|strong="H3027"\w* \w they|strong="H3808"\w* \w respect|strong="H7200"\w* \w that|strong="H7200"\w* \w which|strong="H4196"\w* \w their|strong="H7200"\w* fingers \w have|strong="H3027"\w* \w made|strong="H6213"\w*, \w either|strong="H3808"\w* \w the|strong="H7200"\w* Asherah poles \w or|strong="H3808"\w* \w the|strong="H7200"\w* \w incense|strong="H2553"\w* \w altars|strong="H4196"\w*. +\v 9 \w In|strong="H3478"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w their|strong="H6440"\w* \w strong|strong="H4581"\w* \w cities|strong="H5892"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H6440"\w* \w forsaken|strong="H5800"\w* places \w in|strong="H3478"\w* \w the|strong="H6440"\w* woods \w and|strong="H1121"\w* \w on|strong="H3117"\w* \w the|strong="H6440"\w* mountain top, \w which|strong="H1931"\w* \w were|strong="H3478"\w* \w forsaken|strong="H5800"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w and|strong="H1121"\w* \w it|strong="H1931"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w desolation|strong="H8077"\w*. +\v 10 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* \w forgotten|strong="H7911"\w* \w the|strong="H5921"\w* \w God|strong="H6697"\w* \w of|strong="H5921"\w* \w your|strong="H5921"\w* \w salvation|strong="H3468"\w*, \w and|strong="H6697"\w* \w have|strong="H3588"\w* \w not|strong="H3808"\w* \w remembered|strong="H2142"\w* \w the|strong="H5921"\w* \w rock|strong="H6697"\w* \w of|strong="H5921"\w* \w your|strong="H5921"\w* \w strength|strong="H4581"\w*. \w Therefore|strong="H3651"\w* \w you|strong="H3588"\w* \w plant|strong="H5193"\w* \w pleasant|strong="H5282"\w* \w plants|strong="H5194"\w*, \w and|strong="H6697"\w* \w set|strong="H2232"\w* \w out|strong="H5921"\w* \w foreign|strong="H2114"\w* seedlings. +\v 11 \w In|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H2470"\w* \w planting|strong="H2233"\w*, \w you|strong="H3117"\w* hedge \w it|strong="H1242"\w* \w in|strong="H3117"\w*. \w In|strong="H3117"\w* \w the|strong="H3117"\w* \w morning|strong="H1242"\w*, \w you|strong="H3117"\w* \w make|strong="H2470"\w* \w your|strong="H2470"\w* \w seed|strong="H2233"\w* \w blossom|strong="H6524"\w*, \w but|strong="H3117"\w* \w the|strong="H3117"\w* \w harvest|strong="H7105"\w* flees \w away|strong="H5067"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w grief|strong="H2470"\w* \w and|strong="H3117"\w* \w of|strong="H3117"\w* desperate \w sorrow|strong="H3511"\w*. +\p +\v 12 \w Ah|strong="H1945"\w*, \w the|strong="H5971"\w* \w uproar|strong="H1993"\w* \w of|strong="H4325"\w* \w many|strong="H7227"\w* \w peoples|strong="H5971"\w* \w who|strong="H5971"\w* \w roar|strong="H1993"\w* \w like|strong="H1993"\w* \w the|strong="H5971"\w* \w roaring|strong="H7588"\w* \w of|strong="H4325"\w* \w the|strong="H5971"\w* \w seas|strong="H3220"\w*; \w and|strong="H5971"\w* \w the|strong="H5971"\w* \w rushing|strong="H7588"\w* \w of|strong="H4325"\w* \w nations|strong="H5971"\w* \w that|strong="H5971"\w* \w rush|strong="H7582"\w* \w like|strong="H1993"\w* \w the|strong="H5971"\w* \w rushing|strong="H7588"\w* \w of|strong="H4325"\w* \w mighty|strong="H3524"\w* \w waters|strong="H4325"\w*! +\v 13 \w The|strong="H6440"\w* \w nations|strong="H3816"\w* \w will|strong="H7307"\w* \w rush|strong="H7582"\w* \w like|strong="H7307"\w* \w the|strong="H6440"\w* \w rushing|strong="H7588"\w* \w of|strong="H2022"\w* \w many|strong="H7227"\w* \w waters|strong="H4325"\w*, \w but|strong="H4325"\w* \w he|strong="H6440"\w* \w will|strong="H7307"\w* \w rebuke|strong="H1605"\w* \w them|strong="H6440"\w*, \w and|strong="H6440"\w* \w they|strong="H6440"\w* \w will|strong="H7307"\w* \w flee|strong="H5127"\w* \w far|strong="H4801"\w* \w off|strong="H4801"\w*, \w and|strong="H6440"\w* \w will|strong="H7307"\w* \w be|strong="H3816"\w* \w chased|strong="H7291"\w* \w like|strong="H7307"\w* \w the|strong="H6440"\w* \w chaff|strong="H4671"\w* \w of|strong="H2022"\w* \w the|strong="H6440"\w* \w mountains|strong="H2022"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w wind|strong="H7307"\w*, \w and|strong="H6440"\w* \w like|strong="H7307"\w* \w the|strong="H6440"\w* \w whirling|strong="H1534"\w* \w dust|strong="H1534"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w storm|strong="H5492"\w*. +\v 14 \w At|strong="H6153"\w* \w evening|strong="H6153"\w*, \w behold|strong="H2009"\w*, \w terror|strong="H1091"\w*! \w Before|strong="H2962"\w* \w the|strong="H2009"\w* \w morning|strong="H1242"\w*, \w they|strong="H2962"\w* \w are|strong="H1091"\w* \w no|strong="H2962"\w* more. \w This|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H2009"\w* \w portion|strong="H2506"\w* \w of|strong="H6256"\w* \w those|strong="H2088"\w* \w who|strong="H2088"\w* \w plunder|strong="H8154"\w* us, \w and|strong="H1242"\w* \w the|strong="H2009"\w* \w lot|strong="H1486"\w* \w of|strong="H6256"\w* \w those|strong="H2088"\w* \w who|strong="H2088"\w* \w rob|strong="H8154"\w* us. +\c 18 +\p +\v 1 \w Ah|strong="H1945"\w*, \w the|strong="H5676"\w* \w land|strong="H5676"\w* \w of|strong="H5104"\w* \w the|strong="H5676"\w* rustling \w of|strong="H5104"\w* \w wings|strong="H3671"\w*, which \w is|strong="H5104"\w* \w beyond|strong="H5676"\w* \w the|strong="H5676"\w* \w rivers|strong="H5104"\w* \w of|strong="H5104"\w* \w Ethiopia|strong="H3568"\w*; +\v 2 \w that|strong="H5971"\w* \w sends|strong="H7971"\w* \w ambassadors|strong="H4397"\w* \w by|strong="H5921"\w* \w the|strong="H6440"\w* \w sea|strong="H3220"\w*, \w even|strong="H5921"\w* \w in|strong="H5921"\w* \w vessels|strong="H3627"\w* \w of|strong="H3627"\w* \w papyrus|strong="H1573"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w waters|strong="H4325"\w*, saying, “\w Go|strong="H3212"\w*, \w you|strong="H6440"\w* \w swift|strong="H7031"\w* \w messengers|strong="H4397"\w*, \w to|strong="H3212"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w tall|strong="H4900"\w* \w and|strong="H7971"\w* smooth, \w to|strong="H3212"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w awesome|strong="H3372"\w* \w from|strong="H4480"\w* \w their|strong="H6440"\w* beginning \w onward|strong="H1973"\w*, \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w that|strong="H5971"\w* measures \w out|strong="H7971"\w* \w and|strong="H7971"\w* treads \w down|strong="H7971"\w*, \w whose|strong="H1471"\w* \w land|strong="H6440"\w* \w the|strong="H6440"\w* \w rivers|strong="H5104"\w* divide!” +\v 3 \w All|strong="H3605"\w* \w you|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* \w world|strong="H8398"\w*, \w and|strong="H8085"\w* \w you|strong="H3605"\w* \w dwellers|strong="H7931"\w* \w on|strong="H7200"\w* \w the|strong="H3605"\w* earth, \w when|strong="H7200"\w* \w a|strong="H3068"\w* \w banner|strong="H5251"\w* \w is|strong="H3605"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w on|strong="H7200"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w*, \w look|strong="H7200"\w*! \w When|strong="H7200"\w* \w the|strong="H3605"\w* \w trumpet|strong="H7782"\w* \w is|strong="H3605"\w* \w blown|strong="H8628"\w*, \w listen|strong="H8085"\w*! +\p +\v 4 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w me|strong="H5921"\w*, “\w I|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w still|strong="H8252"\w*, \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w see|strong="H5027"\w* \w in|strong="H5921"\w* \w my|strong="H3068"\w* \w dwelling|strong="H4349"\w* \w place|strong="H4349"\w*, \w like|strong="H3541"\w* \w clear|strong="H6703"\w* \w heat|strong="H2527"\w* \w in|strong="H5921"\w* sunshine, \w like|strong="H3541"\w* \w a|strong="H3068"\w* \w cloud|strong="H5645"\w* \w of|strong="H3068"\w* \w dew|strong="H2919"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w heat|strong="H2527"\w* \w of|strong="H3068"\w* \w harvest|strong="H7105"\w*.” +\v 5 \w For|strong="H3588"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w harvest|strong="H7105"\w*, \w when|strong="H3588"\w* \w the|strong="H6440"\w* \w blossom|strong="H6525"\w* \w is|strong="H1961"\w* \w over|strong="H6440"\w*, \w and|strong="H6440"\w* \w the|strong="H6440"\w* \w flower|strong="H6525"\w* \w becomes|strong="H1961"\w* \w a|strong="H3068"\w* \w ripening|strong="H1580"\w* \w grape|strong="H1155"\w*, \w he|strong="H3588"\w* \w will|strong="H1961"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w the|strong="H6440"\w* \w sprigs|strong="H2150"\w* \w with|strong="H6440"\w* \w pruning|strong="H4211"\w* \w hooks|strong="H4211"\w*, \w and|strong="H6440"\w* \w he|strong="H3588"\w* \w will|strong="H1961"\w* \w cut|strong="H3772"\w* \w down|strong="H3772"\w* \w and|strong="H6440"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w* \w the|strong="H6440"\w* \w spreading|strong="H5189"\w* \w branches|strong="H5189"\w*. +\v 6 \w They|strong="H5921"\w* \w will|strong="H2022"\w* \w be|strong="H2022"\w* \w left|strong="H5800"\w* \w together|strong="H3162"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w ravenous|strong="H5861"\w* \w birds|strong="H5861"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w*, \w and|strong="H2022"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* animals \w of|strong="H2022"\w* \w the|strong="H3605"\w* earth. \w The|strong="H3605"\w* \w ravenous|strong="H5861"\w* \w birds|strong="H5861"\w* \w will|strong="H2022"\w* eat \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w summer|strong="H6972"\w*, \w and|strong="H2022"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* animals \w of|strong="H2022"\w* \w the|strong="H3605"\w* earth \w will|strong="H2022"\w* eat \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w winter|strong="H2778"\w*. +\v 7 \w In|strong="H3068"\w* \w that|strong="H5971"\w* \w time|strong="H6256"\w*, \w a|strong="H3068"\w* \w present|strong="H7862"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w brought|strong="H2986"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w from|strong="H4480"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w tall|strong="H4900"\w* \w and|strong="H3068"\w* smooth, \w even|strong="H3068"\w* \w from|strong="H4480"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w awesome|strong="H3372"\w* \w from|strong="H4480"\w* \w their|strong="H3068"\w* beginning \w onward|strong="H1973"\w*, \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w that|strong="H5971"\w* measures \w out|strong="H4480"\w* \w and|strong="H3068"\w* treads \w down|strong="H4001"\w*, \w whose|strong="H1471"\w* \w land|strong="H4725"\w* \w the|strong="H3068"\w* \w rivers|strong="H5104"\w* divide, \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w place|strong="H4725"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w Mount|strong="H2022"\w* \w Zion|strong="H6726"\w*. +\c 19 +\p +\v 1 \w The|strong="H6440"\w* \w burden|strong="H4853"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*. +\p “\w Behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w* \w rides|strong="H7392"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w swift|strong="H7031"\w* \w cloud|strong="H5645"\w*, \w and|strong="H3068"\w* \w comes|strong="H6440"\w* \w to|strong="H3068"\w* \w Egypt|strong="H4714"\w*. \w The|strong="H6440"\w* idols \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w* \w will|strong="H3068"\w* \w tremble|strong="H5128"\w* \w at|strong="H5921"\w* \w his|strong="H3068"\w* \w presence|strong="H6440"\w*; \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w heart|strong="H3824"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w* \w will|strong="H3068"\w* \w melt|strong="H4549"\w* \w within|strong="H7130"\w* \w it|strong="H5921"\w*. +\v 2 \w I|strong="H4714"\w* \w will|strong="H4714"\w* stir \w up|strong="H5526"\w* \w the|strong="H5526"\w* \w Egyptians|strong="H4714"\w* \w against|strong="H3898"\w* \w the|strong="H5526"\w* \w Egyptians|strong="H4714"\w*, \w and|strong="H5892"\w* \w they|strong="H5892"\w* \w will|strong="H4714"\w* \w fight|strong="H3898"\w* everyone \w against|strong="H3898"\w* \w his|strong="H5526"\w* \w brother|strong="H7453"\w*, \w and|strong="H5892"\w* everyone \w against|strong="H3898"\w* \w his|strong="H5526"\w* \w neighbor|strong="H7453"\w*; \w city|strong="H5892"\w* \w against|strong="H3898"\w* \w city|strong="H5892"\w*, \w and|strong="H5892"\w* \w kingdom|strong="H4467"\w* \w against|strong="H3898"\w* \w kingdom|strong="H4467"\w*. +\v 3 \w The|strong="H1875"\w* \w spirit|strong="H7307"\w* \w of|strong="H7307"\w* \w the|strong="H1875"\w* \w Egyptians|strong="H4714"\w* \w will|strong="H4714"\w* \w fail|strong="H1238"\w* \w within|strong="H7130"\w* \w them|strong="H7307"\w*. \w I|strong="H4714"\w* \w will|strong="H4714"\w* \w destroy|strong="H1104"\w* \w their|strong="H7130"\w* \w counsel|strong="H6098"\w*. \w They|strong="H7130"\w* \w will|strong="H4714"\w* \w seek|strong="H1875"\w* \w the|strong="H1875"\w* idols, \w the|strong="H1875"\w* charmers, those \w who|strong="H3049"\w* \w have|strong="H4714"\w* familiar \w spirits|strong="H7307"\w*, \w and|strong="H4714"\w* \w the|strong="H1875"\w* \w wizards|strong="H3049"\w*. +\v 4 \w I|strong="H4714"\w* \w will|strong="H3068"\w* \w give|strong="H7186"\w* \w over|strong="H3027"\w* \w the|strong="H5002"\w* \w Egyptians|strong="H4714"\w* \w into|strong="H4714"\w* \w the|strong="H5002"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w a|strong="H3068"\w* \w cruel|strong="H7186"\w* \w lord|strong="H3068"\w*. \w A|strong="H3068"\w* \w fierce|strong="H5794"\w* \w king|strong="H4428"\w* \w will|strong="H3068"\w* \w rule|strong="H4910"\w* \w over|strong="H3027"\w* \w them|strong="H3027"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3068"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H4428"\w* \w Armies|strong="H6635"\w*. +\p +\v 5 \w The|strong="H3001"\w* \w waters|strong="H4325"\w* \w will|strong="H4325"\w* \w fail|strong="H5405"\w* \w from|strong="H4325"\w* \w the|strong="H3001"\w* \w sea|strong="H3220"\w*, \w and|strong="H4325"\w* \w the|strong="H3001"\w* \w river|strong="H5104"\w* \w will|strong="H4325"\w* \w be|strong="H3220"\w* \w wasted|strong="H2717"\w* \w and|strong="H4325"\w* \w become|strong="H2717"\w* \w dry|strong="H3001"\w*. +\v 6 \w The|strong="H2717"\w* \w rivers|strong="H5104"\w* \w will|strong="H2975"\w* \w become|strong="H2717"\w* foul. \w The|strong="H2717"\w* \w streams|strong="H5104"\w* \w of|strong="H5104"\w* \w Egypt|strong="H4693"\w* \w will|strong="H2975"\w* be diminished \w and|strong="H7070"\w* \w dried|strong="H2717"\w* \w up|strong="H2717"\w*. \w The|strong="H2717"\w* \w reeds|strong="H7070"\w* \w and|strong="H7070"\w* \w flags|strong="H5488"\w* \w will|strong="H2975"\w* \w wither|strong="H2717"\w* \w away|strong="H2186"\w*. +\v 7 \w The|strong="H3605"\w* meadows \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w Nile|strong="H2975"\w*, \w by|strong="H5921"\w* \w the|strong="H3605"\w* brink \w of|strong="H6310"\w* \w the|strong="H3605"\w* \w Nile|strong="H2975"\w*, \w and|strong="H6310"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w sown|strong="H4218"\w* \w fields|strong="H4218"\w* \w of|strong="H6310"\w* \w the|strong="H3605"\w* \w Nile|strong="H2975"\w*, \w will|strong="H2975"\w* \w become|strong="H3001"\w* \w dry|strong="H3001"\w*, \w be|strong="H6310"\w* \w driven|strong="H5086"\w* \w away|strong="H5086"\w*, \w and|strong="H6310"\w* \w be|strong="H6310"\w* \w no|strong="H3605"\w* \w more|strong="H5921"\w*. +\v 8 \w The|strong="H3605"\w* fishermen \w will|strong="H4325"\w* lament, \w and|strong="H6440"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* fish \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w Nile|strong="H2975"\w* \w will|strong="H4325"\w* \w mourn|strong="H5921"\w*, \w and|strong="H6440"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w spread|strong="H6566"\w* \w nets|strong="H4365"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w will|strong="H4325"\w* languish. +\v 9 Moreover those who \w work|strong="H5647"\w* \w in|strong="H5647"\w* \w combed|strong="H8305"\w* \w flax|strong="H6593"\w*, \w and|strong="H5647"\w* those who weave white cloth, \w will|strong="H5647"\w* \w be|strong="H5647"\w* confounded. +\v 10 \w The|strong="H3605"\w* \w pillars|strong="H8356"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w broken|strong="H1792"\w* \w in|strong="H6213"\w* \w pieces|strong="H1792"\w*. \w All|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w work|strong="H6213"\w* \w for|strong="H6213"\w* hire \w will|strong="H1961"\w* \w be|strong="H1961"\w* grieved \w in|strong="H6213"\w* \w soul|strong="H5315"\w*. +\p +\v 11 \w The|strong="H1197"\w* \w princes|strong="H8269"\w* \w of|strong="H1121"\w* \w Zoan|strong="H6814"\w* \w are|strong="H1121"\w* \w utterly|strong="H1197"\w* foolish. \w The|strong="H1197"\w* \w counsel|strong="H6098"\w* \w of|strong="H1121"\w* \w the|strong="H1197"\w* \w wisest|strong="H2450"\w* counselors \w of|strong="H1121"\w* \w Pharaoh|strong="H6547"\w* \w has|strong="H4428"\w* \w become|strong="H1197"\w* \w stupid|strong="H1197"\w*. How do \w you|strong="H4428"\w* say \w to|strong="H1121"\w* \w Pharaoh|strong="H6547"\w*, “\w I|strong="H1121"\w* am \w the|strong="H1197"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H1197"\w* \w wise|strong="H2450"\w*, \w the|strong="H1197"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w ancient|strong="H6924"\w* \w kings|strong="H4428"\w*”? +\v 12 \w Where|strong="H4100"\w* \w then|strong="H3045"\w* \w are|strong="H4100"\w* \w your|strong="H3068"\w* \w wise|strong="H2450"\w* \w men|strong="H2450"\w*? \w Let|strong="H4994"\w* \w them|strong="H5921"\w* \w tell|strong="H5046"\w* \w you|strong="H5921"\w* \w now|strong="H4994"\w*; \w and|strong="H3068"\w* \w let|strong="H4994"\w* \w them|strong="H5921"\w* \w know|strong="H3045"\w* \w what|strong="H4100"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w has|strong="H3068"\w* \w purposed|strong="H3289"\w* \w concerning|strong="H5921"\w* \w Egypt|strong="H4714"\w*. +\v 13 \w The|strong="H7626"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w Zoan|strong="H6814"\w* \w have|strong="H8269"\w* \w become|strong="H2973"\w* \w fools|strong="H2973"\w*. \w The|strong="H7626"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w Memphis|strong="H5297"\w* \w are|strong="H4714"\w* \w deceived|strong="H5377"\w*. They \w have|strong="H8269"\w* caused \w Egypt|strong="H4714"\w* \w to|strong="H4714"\w* \w go|strong="H8582"\w* \w astray|strong="H8582"\w*, those \w who|strong="H8269"\w* \w are|strong="H4714"\w* \w the|strong="H7626"\w* \w cornerstone|strong="H6438"\w* \w of|strong="H8269"\w* \w her|strong="H8269"\w* \w tribes|strong="H7626"\w*. +\v 14 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w mixed|strong="H4537"\w* \w a|strong="H3068"\w* \w spirit|strong="H7307"\w* \w of|strong="H3068"\w* perverseness \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w middle|strong="H7130"\w* \w of|strong="H3068"\w* \w her|strong="H3605"\w*; \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w have|strong="H3068"\w* caused \w Egypt|strong="H4714"\w* \w to|strong="H3068"\w* \w go|strong="H8582"\w* \w astray|strong="H8582"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w of|strong="H3068"\w* \w its|strong="H3605"\w* \w works|strong="H4639"\w*, \w like|strong="H7307"\w* \w a|strong="H3068"\w* \w drunken|strong="H7910"\w* \w man|strong="H7910"\w* \w staggers|strong="H8582"\w* \w in|strong="H3068"\w* \w his|strong="H3605"\w* \w vomit|strong="H6892"\w*. +\v 15 \w Neither|strong="H3808"\w* \w shall|strong="H4714"\w* \w there|strong="H1961"\w* \w be|strong="H1961"\w* \w any|strong="H6213"\w* \w work|strong="H4639"\w* \w for|strong="H6213"\w* \w Egypt|strong="H4714"\w*, which \w head|strong="H7218"\w* \w or|strong="H3808"\w* \w tail|strong="H2180"\w*, \w palm|strong="H3712"\w* \w branch|strong="H3712"\w* \w or|strong="H3808"\w* rush, \w may|strong="H1961"\w* \w do|strong="H6213"\w*. +\v 16 \w In|strong="H5921"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w the|strong="H6440"\w* \w Egyptians|strong="H4714"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* women. \w They|strong="H3117"\w* \w will|strong="H3068"\w* \w tremble|strong="H2729"\w* \w and|strong="H3068"\w* \w fear|strong="H6342"\w* \w because|strong="H5921"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w shaking|strong="H8573"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*’s \w hand|strong="H3027"\w*, \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w shakes|strong="H5130"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 17 \w The|strong="H3605"\w* \w land|strong="H6440"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w* \w will|strong="H3068"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w terror|strong="H2283"\w* \w to|strong="H3068"\w* \w Egypt|strong="H4714"\w*. \w Everyone|strong="H3605"\w* \w to|strong="H3068"\w* \w whom|strong="H6440"\w* \w mention|strong="H2142"\w* \w is|strong="H3068"\w* \w made|strong="H1961"\w* \w of|strong="H3068"\w* \w it|strong="H1931"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w afraid|strong="H6342"\w*, \w because|strong="H5921"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w plans|strong="H6098"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w which|strong="H1931"\w* \w he|strong="H1931"\w* determines \w against|strong="H5921"\w* \w it|strong="H1931"\w*. +\v 18 \w In|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w there|strong="H1961"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w five|strong="H2568"\w* \w cities|strong="H5892"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w* \w that|strong="H3117"\w* \w speak|strong="H1696"\w* \w the|strong="H3068"\w* \w language|strong="H8193"\w* \w of|strong="H3068"\w* \w Canaan|strong="H3667"\w*, \w and|strong="H3068"\w* \w swear|strong="H7650"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. \w One|strong="H1931"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* called “\w The|strong="H3068"\w* \w city|strong="H5892"\w* \w of|strong="H3068"\w* \w destruction|strong="H2041"\w*.” +\p +\v 19 \w In|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w there|strong="H1961"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w an|strong="H1961"\w* \w altar|strong="H4196"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H8432"\w* \w land|strong="H1366"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w pillar|strong="H4676"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w at|strong="H3068"\w* \w its|strong="H1961"\w* \w border|strong="H1366"\w*. +\v 20 \w It|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* sign \w and|strong="H3068"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w witness|strong="H5707"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w cry|strong="H6817"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w because|strong="H3588"\w* \w of|strong="H3068"\w* \w oppressors|strong="H3905"\w*, \w and|strong="H3068"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w them|strong="H7971"\w* \w a|strong="H3068"\w* \w savior|strong="H3467"\w* \w and|strong="H3068"\w* \w a|strong="H3068"\w* defender, \w and|strong="H3068"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w deliver|strong="H5337"\w* \w them|strong="H7971"\w*. +\v 21 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w known|strong="H3045"\w* \w to|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H3068"\w* \w the|strong="H5647"\w* \w Egyptians|strong="H4714"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w that|strong="H3045"\w* \w day|strong="H3117"\w*. Yes, \w they|strong="H3117"\w* \w will|strong="H3068"\w* \w worship|strong="H5647"\w* \w with|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w and|strong="H3068"\w* \w offering|strong="H4503"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w vow|strong="H5088"\w* \w a|strong="H3068"\w* \w vow|strong="H5088"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w perform|strong="H5647"\w* \w it|strong="H1931"\w*. +\v 22 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w strike|strong="H5062"\w* \w Egypt|strong="H4714"\w*, \w striking|strong="H5062"\w* \w and|strong="H3068"\w* \w healing|strong="H7495"\w*. \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w return|strong="H7725"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w he|strong="H5704"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w entreated|strong="H6279"\w* \w by|strong="H3068"\w* \w them|strong="H7725"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w heal|strong="H7495"\w* \w them|strong="H7725"\w*. +\p +\v 23 \w In|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w there|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w highway|strong="H4546"\w* out \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w* \w to|strong="H1961"\w* Assyria, \w and|strong="H3117"\w* \w the|strong="H5647"\w* Assyrian \w shall|strong="H3117"\w* \w come|strong="H1961"\w* \w into|strong="H4714"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H3117"\w* \w the|strong="H5647"\w* \w Egyptian|strong="H4714"\w* \w into|strong="H4714"\w* Assyria; \w and|strong="H3117"\w* \w the|strong="H5647"\w* \w Egyptians|strong="H4714"\w* \w will|strong="H1961"\w* \w worship|strong="H5647"\w* \w with|strong="H3117"\w* \w the|strong="H5647"\w* Assyrians. +\p +\v 24 \w In|strong="H3478"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w Israel|strong="H3478"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w the|strong="H3117"\w* \w third|strong="H7992"\w* \w with|strong="H3117"\w* \w Egypt|strong="H4714"\w* \w and|strong="H3478"\w* \w with|strong="H3117"\w* Assyria, \w a|strong="H3068"\w* \w blessing|strong="H1293"\w* \w within|strong="H7130"\w* \w the|strong="H3117"\w* earth; +\v 25 \w because|strong="H3027"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w has|strong="H3068"\w* \w blessed|strong="H1288"\w* \w them|strong="H3027"\w*, saying, “\w Blessed|strong="H1288"\w* \w be|strong="H3027"\w* \w Egypt|strong="H4714"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w*, Assyria \w the|strong="H3068"\w* \w work|strong="H4639"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w hands|strong="H3027"\w*, \w and|strong="H3478"\w* \w Israel|strong="H3478"\w* \w my|strong="H3068"\w* \w inheritance|strong="H5159"\w*.” +\c 20 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H7971"\w* \w year|strong="H8141"\w* \w that|strong="H4428"\w* \w Tartan|strong="H8661"\w* \w came|strong="H4428"\w* \w to|strong="H7971"\w* Ashdod, \w when|strong="H7971"\w* \w Sargon|strong="H5623"\w* \w the|strong="H7971"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w sent|strong="H7971"\w* \w him|strong="H7971"\w*, \w and|strong="H7971"\w* \w he|strong="H8141"\w* \w fought|strong="H3898"\w* \w against|strong="H3898"\w* Ashdod \w and|strong="H7971"\w* \w took|strong="H3920"\w* \w it|strong="H7971"\w*; +\v 2 \w at|strong="H5921"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w by|strong="H3027"\w* \w Isaiah|strong="H3470"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amoz, \w saying|strong="H1696"\w*, “\w Go|strong="H1980"\w*, \w and|strong="H1121"\w* \w loosen|strong="H6605"\w* \w the|strong="H5921"\w* \w sackcloth|strong="H8242"\w* \w from|strong="H5921"\w* \w off|strong="H5921"\w* \w your|strong="H3068"\w* \w waist|strong="H4975"\w*, \w and|strong="H1121"\w* \w take|strong="H1980"\w* \w your|strong="H3068"\w* \w sandals|strong="H5275"\w* \w from|strong="H5921"\w* \w off|strong="H5921"\w* \w your|strong="H3068"\w* \w feet|strong="H7272"\w*.” \w He|strong="H1931"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*, \w walking|strong="H1980"\w* \w naked|strong="H6174"\w* \w and|strong="H1121"\w* \w barefoot|strong="H3182"\w*. +\v 3 \w Yahweh|strong="H3068"\w* said, “\w As|strong="H3068"\w* \w my|strong="H3068"\w* \w servant|strong="H5650"\w* \w Isaiah|strong="H3470"\w* \w has|strong="H3068"\w* \w walked|strong="H1980"\w* \w naked|strong="H6174"\w* \w and|strong="H1980"\w* \w barefoot|strong="H3182"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w sign|strong="H4159"\w* \w and|strong="H1980"\w* \w a|strong="H3068"\w* \w wonder|strong="H4159"\w* \w concerning|strong="H5921"\w* \w Egypt|strong="H4714"\w* \w and|strong="H1980"\w* \w concerning|strong="H5921"\w* \w Ethiopia|strong="H3568"\w*, +\v 4 \w so|strong="H3651"\w* \w the|strong="H3651"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w will|strong="H4428"\w* \w lead|strong="H5090"\w* \w away|strong="H5090"\w* \w the|strong="H3651"\w* \w captives|strong="H7628"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w and|strong="H4428"\w* \w the|strong="H3651"\w* \w exiles|strong="H1546"\w* \w of|strong="H4428"\w* \w Ethiopia|strong="H3568"\w*, \w young|strong="H5288"\w* \w and|strong="H4428"\w* \w old|strong="H2205"\w*, \w naked|strong="H6174"\w* \w and|strong="H4428"\w* \w barefoot|strong="H3182"\w*, \w and|strong="H4428"\w* \w with|strong="H4714"\w* \w buttocks|strong="H8357"\w* \w uncovered|strong="H2834"\w*, \w to|strong="H4714"\w* \w the|strong="H3651"\w* \w shame|strong="H6172"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*. +\v 5 They \w will|strong="H4714"\w* \w be|strong="H4480"\w* \w dismayed|strong="H2865"\w* \w and|strong="H4714"\w* confounded, \w because|strong="H4480"\w* \w of|strong="H4480"\w* \w Ethiopia|strong="H3568"\w* \w their|strong="H4480"\w* \w expectation|strong="H4007"\w*, \w and|strong="H4714"\w* \w of|strong="H4480"\w* \w Egypt|strong="H4714"\w* \w their|strong="H4480"\w* \w glory|strong="H8597"\w*. +\v 6 \w The|strong="H6440"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H4428"\w* \w this|strong="H2088"\w* coast \w land|strong="H6440"\w* \w will|strong="H4428"\w* say \w in|strong="H3427"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, ‘\w Behold|strong="H2009"\w*, \w this|strong="H2088"\w* \w is|strong="H2088"\w* \w our|strong="H5337"\w* \w expectation|strong="H4007"\w*, \w where|strong="H8033"\w* \w we|strong="H3068"\w* \w fled|strong="H5127"\w* \w for|strong="H6440"\w* \w help|strong="H5833"\w* \w to|strong="H6440"\w* \w be|strong="H3117"\w* \w delivered|strong="H5337"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria. \w And|strong="H4428"\w* \w we|strong="H3068"\w*, \w how|strong="H2009"\w* \w will|strong="H4428"\w* \w we|strong="H3068"\w* \w escape|strong="H4422"\w*?’” +\c 21 +\p +\v 1 \w The|strong="H3372"\w* \w burden|strong="H4853"\w* \w of|strong="H4057"\w* \w the|strong="H3372"\w* \w wilderness|strong="H4057"\w* \w of|strong="H4057"\w* \w the|strong="H3372"\w* \w sea|strong="H3220"\w*. +\p \w As|strong="H4057"\w* \w whirlwinds|strong="H5492"\w* \w in|strong="H3220"\w* \w the|strong="H3372"\w* \w South|strong="H5045"\w* \w sweep|strong="H2498"\w* \w through|strong="H2498"\w*, it comes from \w the|strong="H3372"\w* \w wilderness|strong="H4057"\w*, from an \w awesome|strong="H3372"\w* land. +\v 2 \w A|strong="H3068"\w* \w grievous|strong="H7186"\w* \w vision|strong="H2380"\w* \w is|strong="H3605"\w* \w declared|strong="H5046"\w* \w to|strong="H5927"\w* \w me|strong="H5046"\w*. \w The|strong="H3605"\w* treacherous \w man|strong="H3605"\w* deals treacherously, \w and|strong="H5927"\w* \w the|strong="H3605"\w* \w destroyer|strong="H7703"\w* \w destroys|strong="H7703"\w*. \w Go|strong="H5927"\w* \w up|strong="H5927"\w*, \w Elam|strong="H5867"\w*; \w attack|strong="H5927"\w*! \w I|strong="H3605"\w* \w have|strong="H3605"\w* \w stopped|strong="H7673"\w* \w all|strong="H3605"\w* \w of|strong="H3605"\w* \w Media|strong="H4074"\w*’s sighing. +\v 3 \w Therefore|strong="H3651"\w* \w my|strong="H8085"\w* thighs \w are|strong="H4390"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w anguish|strong="H2479"\w*. \w Pains|strong="H6735"\w* \w have|strong="H7200"\w* seized \w me|strong="H7200"\w*, \w like|strong="H3651"\w* \w the|strong="H5921"\w* \w pains|strong="H6735"\w* \w of|strong="H3205"\w* \w a|strong="H3068"\w* \w woman|strong="H3205"\w* \w in|strong="H5921"\w* \w labor|strong="H3205"\w*. \w I|strong="H5921"\w* am \w in|strong="H5921"\w* \w so|strong="H3651"\w* \w much|strong="H5921"\w* \w pain|strong="H2479"\w* \w that|strong="H7200"\w* \w I|strong="H5921"\w* \w can|strong="H7200"\w*’t \w hear|strong="H8085"\w*. \w I|strong="H5921"\w* am \w so|strong="H3651"\w* dismayed \w that|strong="H7200"\w* \w I|strong="H5921"\w* \w can|strong="H7200"\w*’t \w see|strong="H7200"\w*. +\v 4 \w My|strong="H7760"\w* \w heart|strong="H3824"\w* flutters. \w Horror|strong="H6427"\w* \w has|strong="H6427"\w* \w frightened|strong="H1204"\w* \w me|strong="H7760"\w*. \w The|strong="H7760"\w* \w twilight|strong="H5399"\w* \w that|strong="H5399"\w* \w I|strong="H7760"\w* \w desired|strong="H2837"\w* \w has|strong="H6427"\w* been \w turned|strong="H7760"\w* \w into|strong="H7760"\w* \w trembling|strong="H2731"\w* \w for|strong="H8582"\w* \w me|strong="H7760"\w*. +\v 5 \w They|strong="H4043"\w* \w prepare|strong="H6186"\w* \w the|strong="H6965"\w* \w table|strong="H7979"\w*. \w They|strong="H4043"\w* \w set|strong="H6965"\w* \w the|strong="H6965"\w* watch. \w They|strong="H4043"\w* eat. \w They|strong="H4043"\w* \w drink|strong="H8354"\w*. \w Rise|strong="H6965"\w* \w up|strong="H6965"\w*, \w you|strong="H4886"\w* \w princes|strong="H8269"\w*, \w oil|strong="H4886"\w* \w the|strong="H6965"\w* \w shield|strong="H4043"\w*! +\v 6 \w For|strong="H3588"\w* \w the|strong="H7200"\w* Lord said \w to|strong="H3212"\w* \w me|strong="H7200"\w*, “\w Go|strong="H3212"\w*, \w set|strong="H5975"\w* \w a|strong="H3068"\w* \w watchman|strong="H6822"\w*. \w Let|strong="H5046"\w* \w him|strong="H5046"\w* \w declare|strong="H5046"\w* \w what|strong="H3541"\w* \w he|strong="H3588"\w* \w sees|strong="H7200"\w*. +\v 7 \w When|strong="H7200"\w* \w he|strong="H7200"\w* \w sees|strong="H7200"\w* \w a|strong="H3068"\w* troop, \w horsemen|strong="H6571"\w* \w in|strong="H7227"\w* \w pairs|strong="H6776"\w*, \w a|strong="H3068"\w* troop \w of|strong="H7393"\w* \w donkeys|strong="H2543"\w*, \w a|strong="H3068"\w* troop \w of|strong="H7393"\w* \w camels|strong="H1581"\w*, \w he|strong="H7200"\w* \w shall|strong="H7227"\w* \w listen|strong="H7181"\w* \w diligently|strong="H7182"\w* \w with|strong="H7200"\w* \w great|strong="H7227"\w* attentiveness.” +\v 8 \w He|strong="H3605"\w* \w cried|strong="H7121"\w* \w like|strong="H5921"\w* \w a|strong="H3068"\w* lion: “Lord, \w I|strong="H5921"\w* \w stand|strong="H5975"\w* \w continually|strong="H8548"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w watchtower|strong="H4707"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w daytime|strong="H3119"\w*, \w and|strong="H3119"\w* \w every|strong="H3605"\w* \w night|strong="H3915"\w* \w I|strong="H5921"\w* \w stay|strong="H5975"\w* \w at|strong="H5921"\w* \w my|strong="H3605"\w* \w post|strong="H4931"\w*. +\v 9 \w Behold|strong="H2009"\w*, \w here|strong="H2009"\w* comes \w a|strong="H3068"\w* troop \w of|strong="H3605"\w* \w men|strong="H3605"\w*, \w horsemen|strong="H6571"\w* \w in|strong="H7665"\w* \w pairs|strong="H6776"\w*.” \w He|strong="H3605"\w* \w answered|strong="H6030"\w*, “\w Fallen|strong="H5307"\w*, \w fallen|strong="H5307"\w* \w is|strong="H2088"\w* Babylon; \w and|strong="H6030"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w engraved|strong="H6456"\w* \w images|strong="H6456"\w* \w of|strong="H3605"\w* \w her|strong="H3605"\w* gods \w are|strong="H7393"\w* \w broken|strong="H7665"\w* \w to|strong="H6030"\w* \w the|strong="H3605"\w* ground. +\p +\v 10 \w You|strong="H5046"\w* \w are|strong="H1121"\w* \w my|strong="H8085"\w* \w threshing|strong="H1637"\w*, \w and|strong="H1121"\w* \w the|strong="H8085"\w* grain \w of|strong="H1121"\w* \w my|strong="H8085"\w* \w floor|strong="H1637"\w*!” \w That|strong="H8085"\w* \w which|strong="H3068"\w* \w I|strong="H8085"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w from|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1121"\w* \w Armies|strong="H6635"\w*, \w the|strong="H8085"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w I|strong="H8085"\w* \w have|strong="H3068"\w* \w declared|strong="H5046"\w* \w to|strong="H3478"\w* \w you|strong="H5046"\w*. +\p +\v 11 \w The|strong="H8104"\w* \w burden|strong="H4853"\w* \w of|strong="H4853"\w* \w Dumah|strong="H1746"\w*. +\p One \w calls|strong="H7121"\w* \w to|strong="H8104"\w* \w me|strong="H7121"\w* \w out|strong="H4100"\w* \w of|strong="H4853"\w* \w Seir|strong="H8165"\w*, “\w Watchman|strong="H8104"\w*, \w what|strong="H4100"\w* \w of|strong="H4853"\w* \w the|strong="H8104"\w* \w night|strong="H3915"\w*? \w Watchman|strong="H8104"\w*, \w what|strong="H4100"\w* \w of|strong="H4853"\w* \w the|strong="H8104"\w* \w night|strong="H3915"\w*?” +\v 12 \w The|strong="H8104"\w* \w watchman|strong="H8104"\w* said, “\w The|strong="H8104"\w* \w morning|strong="H1242"\w* comes, \w and|strong="H7725"\w* \w also|strong="H1571"\w* \w the|strong="H8104"\w* \w night|strong="H3915"\w*. If \w you|strong="H7725"\w* \w will|strong="H1571"\w* \w inquire|strong="H1158"\w*, \w inquire|strong="H1158"\w*. \w Come|strong="H7725"\w* \w back|strong="H7725"\w* \w again|strong="H7725"\w*.” +\p +\v 13 \w The|strong="H3885"\w* \w burden|strong="H4853"\w* \w on|strong="H4853"\w* \w Arabia|strong="H6152"\w*. +\p \w You|strong="H6152"\w* \w will|strong="H3293"\w* \w lodge|strong="H3885"\w* \w in|strong="H3885"\w* \w the|strong="H3885"\w* \w thickets|strong="H3293"\w* \w in|strong="H3885"\w* \w Arabia|strong="H6152"\w*, \w you|strong="H6152"\w* caravans \w of|strong="H3293"\w* \w Dedanites|strong="H1720"\w*. +\v 14 \w They|strong="H5074"\w* brought \w water|strong="H4325"\w* \w to|strong="H4325"\w* \w him|strong="H7125"\w* \w who|strong="H3427"\w* \w was|strong="H4325"\w* \w thirsty|strong="H6771"\w*. \w The|strong="H3427"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H3427"\w* land \w of|strong="H3427"\w* \w Tema|strong="H8485"\w* \w met|strong="H7125"\w* \w the|strong="H3427"\w* \w fugitives|strong="H5074"\w* \w with|strong="H3427"\w* \w their|strong="H3427"\w* \w bread|strong="H3899"\w*. +\v 15 \w For|strong="H3588"\w* \w they|strong="H3588"\w* \w fled|strong="H5074"\w* \w away|strong="H5074"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w swords|strong="H2719"\w*, \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w drawn|strong="H5203"\w* \w sword|strong="H2719"\w*, \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w bent|strong="H1869"\w* \w bow|strong="H7198"\w*, \w and|strong="H6440"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* heat \w of|strong="H6440"\w* \w battle|strong="H4421"\w*. +\v 16 \w For|strong="H3588"\w* \w the|strong="H3605"\w* Lord said \w to|strong="H8141"\w* \w me|strong="H3588"\w*, “\w Within|strong="H5750"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w*, \w as|strong="H3588"\w* \w a|strong="H3068"\w* \w worker|strong="H7916"\w* bound \w by|strong="H8141"\w* contract \w would|strong="H7916"\w* \w count|strong="H8141"\w* \w it|strong="H3588"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w glory|strong="H3519"\w* \w of|strong="H8141"\w* \w Kedar|strong="H6938"\w* \w will|strong="H5750"\w* \w fail|strong="H3615"\w*, +\v 17 \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w residue|strong="H7605"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w number|strong="H4557"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w archers|strong="H7198"\w*, \w the|strong="H3588"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Kedar|strong="H6938"\w*, \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w few|strong="H4557"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3588"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w it|strong="H3588"\w*.” +\c 22 +\p +\v 1 \w The|strong="H3605"\w* \w burden|strong="H4853"\w* \w of|strong="H1516"\w* \w the|strong="H3605"\w* \w valley|strong="H1516"\w* \w of|strong="H1516"\w* \w vision|strong="H2384"\w*. +\p \w What|strong="H4100"\w* ails \w you|strong="H3588"\w* \w now|strong="H3588"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3605"\w* \w all|strong="H3605"\w* \w gone|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H3605"\w* \w housetops|strong="H1406"\w*? +\v 2 \w You|strong="H3808"\w* \w that|strong="H5892"\w* \w are|strong="H5892"\w* \w full|strong="H4395"\w* \w of|strong="H5892"\w* shouting, \w a|strong="H3068"\w* \w tumultuous|strong="H1993"\w* \w city|strong="H5892"\w*, \w a|strong="H3068"\w* \w joyous|strong="H5947"\w* \w town|strong="H7151"\w*, \w your|strong="H3808"\w* \w slain|strong="H2491"\w* \w are|strong="H5892"\w* \w not|strong="H3808"\w* \w slain|strong="H2491"\w* \w with|strong="H5892"\w* \w the|strong="H4191"\w* \w sword|strong="H2719"\w*, \w neither|strong="H3808"\w* \w are|strong="H5892"\w* \w they|strong="H3808"\w* \w dead|strong="H4191"\w* \w in|strong="H4191"\w* \w battle|strong="H4421"\w*. +\v 3 \w All|strong="H3605"\w* \w your|strong="H3605"\w* \w rulers|strong="H7101"\w* \w fled|strong="H1272"\w* \w away|strong="H1272"\w* \w together|strong="H3162"\w*. \w They|strong="H3605"\w* \w were|strong="H4672"\w* bound \w by|strong="H3605"\w* \w the|strong="H3605"\w* \w archers|strong="H7198"\w*. \w All|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H4672"\w* \w found|strong="H4672"\w* \w by|strong="H3605"\w* \w you|strong="H3605"\w* \w were|strong="H4672"\w* bound \w together|strong="H3162"\w*. \w They|strong="H3605"\w* \w fled|strong="H1272"\w* \w far|strong="H7350"\w* \w away|strong="H1272"\w*. +\v 4 \w Therefore|strong="H3651"\w* \w I|strong="H5921"\w* \w said|strong="H3651"\w*, “\w Look|strong="H8159"\w* \w away|strong="H4480"\w* \w from|strong="H4480"\w* \w me|strong="H5921"\w*. \w I|strong="H5921"\w* \w will|strong="H5971"\w* \w weep|strong="H1065"\w* \w bitterly|strong="H4843"\w*. Don’t labor \w to|strong="H5921"\w* \w comfort|strong="H5162"\w* \w me|strong="H5921"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w destruction|strong="H7701"\w* \w of|strong="H1323"\w* \w the|strong="H5921"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w my|strong="H5921"\w* \w people|strong="H5971"\w*. +\p +\v 5 \w For|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H3117"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w confusion|strong="H4103"\w*, \w and|strong="H3117"\w* \w of|strong="H3117"\w* treading \w down|strong="H4001"\w*, \w and|strong="H3117"\w* \w of|strong="H3117"\w* \w perplexity|strong="H3998"\w* \w from|strong="H3117"\w* \w the|strong="H3588"\w* \w Lord|strong="H3069"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H3117"\w* \w Armies|strong="H6635"\w*, \w in|strong="H3117"\w* \w the|strong="H3588"\w* \w valley|strong="H1516"\w* \w of|strong="H3117"\w* \w vision|strong="H2384"\w*, \w a|strong="H3068"\w* \w breaking|strong="H6979"\w* \w down|strong="H4001"\w* \w of|strong="H3117"\w* \w the|strong="H3588"\w* \w walls|strong="H7023"\w*, \w and|strong="H3117"\w* \w a|strong="H3068"\w* \w crying|strong="H7771"\w* \w to|strong="H3117"\w* \w the|strong="H3588"\w* \w mountains|strong="H2022"\w*.” +\v 6 \w Elam|strong="H5867"\w* \w carried|strong="H5375"\w* \w his|strong="H5375"\w* quiver, \w with|strong="H5375"\w* \w chariots|strong="H7393"\w* \w of|strong="H7393"\w* \w men|strong="H6168"\w* \w and|strong="H7393"\w* \w horsemen|strong="H6571"\w*; \w and|strong="H7393"\w* \w Kir|strong="H7024"\w* \w uncovered|strong="H6168"\w* \w the|strong="H5375"\w* \w shield|strong="H4043"\w*. +\v 7 \w Your|strong="H1961"\w* \w choicest|strong="H4005"\w* \w valleys|strong="H6010"\w* \w were|strong="H1961"\w* \w full|strong="H4390"\w* \w of|strong="H8179"\w* \w chariots|strong="H7393"\w*, \w and|strong="H7393"\w* \w the|strong="H4390"\w* \w horsemen|strong="H6571"\w* \w set|strong="H7896"\w* \w themselves|strong="H4390"\w* \w in|strong="H1961"\w* \w array|strong="H7896"\w* \w at|strong="H1961"\w* \w the|strong="H4390"\w* \w gate|strong="H8179"\w*. +\v 8 \w He|strong="H1931"\w* \w took|strong="H3063"\w* \w away|strong="H1540"\w* \w the|strong="H3117"\w* \w covering|strong="H4539"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w*; \w and|strong="H3063"\w* \w you|strong="H3117"\w* \w looked|strong="H5027"\w* \w in|strong="H1004"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w to|strong="H3117"\w* \w the|strong="H3117"\w* armor \w in|strong="H1004"\w* \w the|strong="H3117"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H3117"\w* \w forest|strong="H3293"\w*. +\v 9 \w You|strong="H3588"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w breaches|strong="H1233"\w* \w of|strong="H5892"\w* \w David|strong="H1732"\w*’s \w city|strong="H5892"\w*, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H4325"\w* \w many|strong="H7235"\w*; \w and|strong="H5892"\w* \w you|strong="H3588"\w* \w gathered|strong="H6908"\w* \w together|strong="H6908"\w* \w the|strong="H7200"\w* \w waters|strong="H4325"\w* \w of|strong="H5892"\w* \w the|strong="H7200"\w* \w lower|strong="H8481"\w* \w pool|strong="H1295"\w*. +\v 10 \w You|strong="H5422"\w* \w counted|strong="H5608"\w* \w the|strong="H5422"\w* \w houses|strong="H1004"\w* \w of|strong="H1004"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H1004"\w* \w you|strong="H5422"\w* \w broke|strong="H5422"\w* \w down|strong="H5422"\w* \w the|strong="H5422"\w* \w houses|strong="H1004"\w* \w to|strong="H3389"\w* \w fortify|strong="H1219"\w* \w the|strong="H5422"\w* \w wall|strong="H2346"\w*. +\v 11 \w You|strong="H6213"\w* \w also|strong="H6213"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w reservoir|strong="H4724"\w* between \w the|strong="H7200"\w* \w two|strong="H6213"\w* \w walls|strong="H2346"\w* \w for|strong="H6213"\w* \w the|strong="H7200"\w* \w water|strong="H4325"\w* \w of|strong="H4325"\w* \w the|strong="H7200"\w* \w old|strong="H3465"\w* \w pool|strong="H1295"\w*. \w But|strong="H3808"\w* \w you|strong="H6213"\w* didn’t \w look|strong="H7200"\w* \w to|strong="H6213"\w* \w him|strong="H6213"\w* \w who|strong="H7350"\w* \w had|strong="H4325"\w* \w done|strong="H6213"\w* \w this|strong="H6213"\w*, \w neither|strong="H3808"\w* \w did|strong="H6213"\w* \w you|strong="H6213"\w* \w have|strong="H7200"\w* \w respect|strong="H7200"\w* \w for|strong="H6213"\w* \w him|strong="H6213"\w* \w who|strong="H7350"\w* \w planned|strong="H3335"\w* \w it|strong="H6213"\w* \w long|strong="H7350"\w* \w ago|strong="H7350"\w*. +\p +\v 12 \w In|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w the|strong="H3069"\w* \w Lord|strong="H3069"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H3117"\w* \w Armies|strong="H6635"\w*, \w called|strong="H7121"\w* \w to|strong="H3117"\w* \w weeping|strong="H1065"\w*, \w to|strong="H3117"\w* \w mourning|strong="H4553"\w*, \w to|strong="H3117"\w* \w baldness|strong="H7144"\w*, \w and|strong="H3117"\w* \w to|strong="H3117"\w* dressing \w in|strong="H3117"\w* \w sackcloth|strong="H8242"\w*; +\v 13 \w and|strong="H6629"\w* \w behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w is|strong="H2009"\w* \w joy|strong="H8057"\w* \w and|strong="H6629"\w* \w gladness|strong="H8057"\w*, \w killing|strong="H2026"\w* \w cattle|strong="H1241"\w* \w and|strong="H6629"\w* \w killing|strong="H2026"\w* \w sheep|strong="H6629"\w*, eating \w meat|strong="H1320"\w* \w and|strong="H6629"\w* \w drinking|strong="H8354"\w* \w wine|strong="H3196"\w*: “Let’s eat \w and|strong="H6629"\w* \w drink|strong="H8354"\w*, \w for|strong="H3588"\w* \w tomorrow|strong="H4279"\w* \w we|strong="H3068"\w* \w will|strong="H1320"\w* \w die|strong="H4191"\w*.” +\v 14 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w revealed|strong="H1540"\w* \w himself|strong="H1540"\w* \w in|strong="H3068"\w* \w my|strong="H3068"\w* ears, “\w Surely|strong="H4191"\w* \w this|strong="H2088"\w* \w iniquity|strong="H5771"\w* \w will|strong="H3068"\w* \w not|strong="H2088"\w* \w be|strong="H4191"\w* \w forgiven|strong="H3722"\w* \w you|strong="H5704"\w* \w until|strong="H5704"\w* \w you|strong="H5704"\w* \w die|strong="H4191"\w*,” says \w the|strong="H3069"\w* \w Lord|strong="H3068"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\p +\v 15 \w The|strong="H5921"\w* \w Lord|strong="H3069"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*, “\w Go|strong="H3212"\w*, \w get|strong="H3212"\w* \w yourself|strong="H5921"\w* \w to|strong="H3212"\w* \w this|strong="H2088"\w* \w treasurer|strong="H5532"\w*, \w even|strong="H5921"\w* \w to|strong="H3212"\w* \w Shebna|strong="H7644"\w*, \w who|strong="H2088"\w* \w is|strong="H2088"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*, \w and|strong="H1004"\w* say, +\v 16 ‘\w What|strong="H4100"\w* \w are|strong="H4100"\w* \w you|strong="H3588"\w* doing \w here|strong="H6311"\w*? \w Who|strong="H4310"\w* \w has|strong="H4310"\w* \w you|strong="H3588"\w* \w here|strong="H6311"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* dug \w out|strong="H2672"\w* \w a|strong="H3068"\w* \w tomb|strong="H6913"\w* \w here|strong="H6311"\w*?’ Cutting himself \w out|strong="H2672"\w* \w a|strong="H3068"\w* \w tomb|strong="H6913"\w* \w on|strong="H6913"\w* \w high|strong="H4791"\w*, chiseling \w a|strong="H3068"\w* \w habitation|strong="H4908"\w* \w for|strong="H3588"\w* himself \w in|strong="H6913"\w* \w the|strong="H3588"\w* \w rock|strong="H5553"\w*!” +\v 17 \w Behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* overcome \w you|strong="H2904"\w* \w and|strong="H3068"\w* \w hurl|strong="H2904"\w* \w you|strong="H2904"\w* \w away|strong="H2904"\w* violently. \w Yes|strong="H2009"\w*, \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w grasp|strong="H5844"\w* \w you|strong="H2904"\w* \w firmly|strong="H5844"\w*. +\v 18 \w He|strong="H8033"\w* \w will|strong="H1004"\w* \w surely|strong="H4191"\w* wind \w you|strong="H3027"\w* \w around|strong="H3027"\w* \w and|strong="H3027"\w* \w around|strong="H3027"\w*, \w and|strong="H3027"\w* throw \w you|strong="H3027"\w* \w like|strong="H1004"\w* \w a|strong="H3068"\w* \w ball|strong="H1754"\w* \w into|strong="H3027"\w* \w a|strong="H3068"\w* \w large|strong="H7342"\w* country. \w There|strong="H8033"\w* \w you|strong="H3027"\w* \w will|strong="H1004"\w* \w die|strong="H4191"\w*, \w and|strong="H3027"\w* \w there|strong="H8033"\w* \w the|strong="H3027"\w* \w chariots|strong="H4818"\w* \w of|strong="H1004"\w* \w your|strong="H3027"\w* \w glory|strong="H3519"\w* \w will|strong="H1004"\w* \w be|strong="H4191"\w*, \w you|strong="H3027"\w* \w disgrace|strong="H7036"\w* \w of|strong="H1004"\w* \w your|strong="H3027"\w* lord’s \w house|strong="H1004"\w*. +\v 19 I will \w thrust|strong="H1920"\w* \w you|strong="H2040"\w* \w from|strong="H1920"\w* \w your|strong="H2040"\w* \w office|strong="H4612"\w*. \w You|strong="H2040"\w* will be pulled \w down|strong="H2040"\w* \w from|strong="H1920"\w* \w your|strong="H2040"\w* \w station|strong="H4612"\w*. +\p +\v 20 \w It|strong="H1931"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w in|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w call|strong="H7121"\w* \w my|strong="H1961"\w* \w servant|strong="H5650"\w* Eliakim \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hilkiah|strong="H2518"\w*, +\v 21 \w and|strong="H3063"\w* \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w clothe|strong="H3847"\w* \w him|strong="H5414"\w* \w with|strong="H3847"\w* \w your|strong="H5414"\w* \w robe|strong="H3801"\w*, \w and|strong="H3063"\w* \w strengthen|strong="H2388"\w* \w him|strong="H5414"\w* \w with|strong="H3847"\w* \w your|strong="H5414"\w* belt. \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w commit|strong="H5414"\w* \w your|strong="H5414"\w* \w government|strong="H4475"\w* \w into|strong="H3027"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w*; \w and|strong="H3063"\w* \w he|strong="H1004"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* father \w to|strong="H1961"\w* \w the|strong="H5414"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1004"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3063"\w* \w to|strong="H1961"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w*. +\v 22 \w I|strong="H5414"\w* \w will|strong="H1004"\w* \w lay|strong="H5414"\w* \w the|strong="H5921"\w* \w key|strong="H4668"\w* \w of|strong="H1004"\w* \w David|strong="H1732"\w*’s \w house|strong="H1004"\w* \w on|strong="H5921"\w* \w his|strong="H5414"\w* \w shoulder|strong="H7926"\w*. \w He|strong="H1004"\w* \w will|strong="H1004"\w* \w open|strong="H6605"\w*, \w and|strong="H1004"\w* \w no|strong="H5414"\w* \w one|strong="H1004"\w* \w will|strong="H1004"\w* \w shut|strong="H5462"\w*. \w He|strong="H1004"\w* \w will|strong="H1004"\w* \w shut|strong="H5462"\w*, \w and|strong="H1004"\w* \w no|strong="H5414"\w* \w one|strong="H1004"\w* \w will|strong="H1004"\w* \w open|strong="H6605"\w*. +\v 23 \w I|strong="H1004"\w* \w will|strong="H1961"\w* \w fasten|strong="H8628"\w* \w him|strong="H8628"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w nail|strong="H3489"\w* \w in|strong="H1004"\w* \w a|strong="H3068"\w* sure \w place|strong="H4725"\w*. \w He|strong="H1004"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w for|strong="H1004"\w* \w a|strong="H3068"\w* \w throne|strong="H3678"\w* \w of|strong="H1004"\w* \w glory|strong="H3519"\w* \w to|strong="H1961"\w* \w his|strong="H1961"\w* father’s \w house|strong="H1004"\w*. +\v 24 \w They|strong="H5921"\w* \w will|strong="H1004"\w* \w hang|strong="H8518"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w glory|strong="H3519"\w* \w of|strong="H1004"\w* \w his|strong="H3605"\w* father’s \w house|strong="H1004"\w*, \w the|strong="H3605"\w* \w offspring|strong="H6631"\w* \w and|strong="H1004"\w* \w the|strong="H3605"\w* \w issue|strong="H6849"\w*, \w every|strong="H3605"\w* \w small|strong="H6996"\w* \w vessel|strong="H3627"\w*, \w from|strong="H5921"\w* \w the|strong="H3605"\w* cups \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w pitchers|strong="H5035"\w*. +\v 25 “\w In|strong="H5921"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, “\w the|strong="H5002"\w* \w nail|strong="H3489"\w* \w that|strong="H3588"\w* \w was|strong="H3068"\w* \w fastened|strong="H8628"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* sure \w place|strong="H4725"\w* \w will|strong="H3068"\w* \w give|strong="H1696"\w* \w way|strong="H4185"\w*. \w It|strong="H1931"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w cut|strong="H3772"\w* \w down|strong="H5307"\w* \w and|strong="H3068"\w* \w fall|strong="H5307"\w*. \w The|strong="H5002"\w* \w burden|strong="H4853"\w* \w that|strong="H3588"\w* \w was|strong="H3068"\w* \w on|strong="H5921"\w* \w it|strong="H1931"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w it|strong="H1931"\w*.” +\c 23 +\p +\v 1 \w The|strong="H3588"\w* \w burden|strong="H4853"\w* \w of|strong="H1004"\w* \w Tyre|strong="H6865"\w*. +\p \w Howl|strong="H3213"\w*, \w you|strong="H3588"\w* ships \w of|strong="H1004"\w* \w Tarshish|strong="H8659"\w*! \w For|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H1004"\w* \w laid|strong="H1540"\w* \w waste|strong="H7703"\w*, \w so|strong="H3588"\w* \w that|strong="H3588"\w* there \w is|strong="H1004"\w* no \w house|strong="H1004"\w*, no entering \w in|strong="H1004"\w*. \w From|strong="H1540"\w* \w the|strong="H3588"\w* land \w of|strong="H1004"\w* \w Kittim|strong="H3794"\w* \w it|strong="H3588"\w* \w is|strong="H1004"\w* \w revealed|strong="H1540"\w* \w to|strong="H1004"\w* \w them|strong="H1540"\w*. +\v 2 \w Be|strong="H3220"\w* \w still|strong="H3427"\w*, \w you|strong="H3427"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H5674"\w* coast, \w you|strong="H3427"\w* whom \w the|strong="H5674"\w* \w merchants|strong="H5503"\w* \w of|strong="H3427"\w* \w Sidon|strong="H6721"\w* \w that|strong="H3220"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w the|strong="H5674"\w* \w sea|strong="H3220"\w* \w have|strong="H1826"\w* \w replenished|strong="H4390"\w*. +\v 3 \w On|strong="H1961"\w* \w great|strong="H7227"\w* \w waters|strong="H4325"\w*, \w the|strong="H1961"\w* \w seed|strong="H2233"\w* \w of|strong="H4325"\w* \w the|strong="H1961"\w* \w Shihor|strong="H7883"\w*, \w the|strong="H1961"\w* \w harvest|strong="H7105"\w* \w of|strong="H4325"\w* \w the|strong="H1961"\w* \w Nile|strong="H2975"\w*, \w was|strong="H1961"\w* \w her|strong="H1961"\w* \w revenue|strong="H8393"\w*. She \w was|strong="H1961"\w* \w the|strong="H1961"\w* market \w of|strong="H4325"\w* \w nations|strong="H1471"\w*. +\v 4 \w Be|strong="H3808"\w* ashamed, \w Sidon|strong="H6721"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w sea|strong="H3220"\w* \w has|strong="H3588"\w* \w spoken|strong="H1431"\w*, \w the|strong="H3588"\w* \w stronghold|strong="H4581"\w* \w of|strong="H3205"\w* \w the|strong="H3588"\w* \w sea|strong="H3220"\w*, saying, “\w I|strong="H3588"\w* \w have|strong="H3588"\w* \w not|strong="H3808"\w* \w travailed|strong="H2342"\w*, \w nor|strong="H3808"\w* \w given|strong="H3205"\w* \w birth|strong="H3205"\w*, \w neither|strong="H3808"\w* \w have|strong="H3588"\w* \w I|strong="H3588"\w* \w nourished|strong="H1431"\w* \w young|strong="H1431"\w* \w men|strong="H3220"\w*, \w nor|strong="H3808"\w* \w brought|strong="H3205"\w* \w up|strong="H7311"\w* \w virgins|strong="H1330"\w*.” +\v 5 When \w the|strong="H2342"\w* \w report|strong="H8088"\w* comes \w to|strong="H4714"\w* \w Egypt|strong="H4714"\w*, they \w will|strong="H4714"\w* be \w in|strong="H2342"\w* \w anguish|strong="H2342"\w* \w at|strong="H2342"\w* \w the|strong="H2342"\w* \w report|strong="H8088"\w* \w of|strong="H8088"\w* \w Tyre|strong="H6865"\w*. +\v 6 \w Pass|strong="H5674"\w* \w over|strong="H5674"\w* \w to|strong="H5674"\w* \w Tarshish|strong="H8659"\w*! \w Wail|strong="H3213"\w*, \w you|strong="H3427"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H5674"\w* coast! +\v 7 \w Is|strong="H3117"\w* \w this|strong="H2063"\w* \w your|strong="H3117"\w* \w joyous|strong="H5947"\w* \w city|strong="H6927"\w*, whose \w antiquity|strong="H6927"\w* \w is|strong="H3117"\w* \w of|strong="H3117"\w* \w ancient|strong="H6924"\w* \w days|strong="H3117"\w*, whose \w feet|strong="H7272"\w* \w carried|strong="H2986"\w* \w her|strong="H2063"\w* \w far|strong="H7350"\w* \w away|strong="H7350"\w* \w to|strong="H3117"\w* travel? +\p +\v 8 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* \w planned|strong="H3289"\w* \w this|strong="H2063"\w* \w against|strong="H5921"\w* \w Tyre|strong="H6865"\w*, \w the|strong="H5921"\w* giver \w of|strong="H8269"\w* \w crowns|strong="H5849"\w*, \w whose|strong="H4310"\w* \w merchants|strong="H5503"\w* \w are|strong="H4310"\w* \w princes|strong="H8269"\w*, \w whose|strong="H4310"\w* \w traders|strong="H5503"\w* \w are|strong="H4310"\w* \w the|strong="H5921"\w* \w honorable|strong="H3513"\w* \w of|strong="H8269"\w* \w the|strong="H5921"\w* earth? +\v 9 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w has|strong="H3068"\w* \w planned|strong="H3289"\w* \w it|strong="H7043"\w*, \w to|strong="H3068"\w* \w stain|strong="H2490"\w* \w the|strong="H3605"\w* \w pride|strong="H1347"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w glory|strong="H6643"\w*, \w to|strong="H3068"\w* bring \w into|strong="H6635"\w* \w contempt|strong="H7043"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w honorable|strong="H3513"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* earth. +\v 10 \w Pass|strong="H5674"\w* \w through|strong="H5674"\w* \w your|strong="H5674"\w* land \w like|strong="H1323"\w* \w the|strong="H5674"\w* \w Nile|strong="H2975"\w*, \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Tarshish|strong="H8659"\w*. \w There|strong="H2975"\w* \w is|strong="H1323"\w* no \w restraint|strong="H4206"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*. +\v 11 \w He|strong="H3068"\w* \w has|strong="H3068"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*. \w He|strong="H3068"\w* \w has|strong="H3068"\w* shaken \w the|strong="H5921"\w* \w kingdoms|strong="H4467"\w*. \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w ordered|strong="H6680"\w* \w the|strong="H5921"\w* \w destruction|strong="H8045"\w* \w of|strong="H3068"\w* \w Canaan|strong="H3667"\w*’s \w strongholds|strong="H4581"\w*. +\v 12 \w He|strong="H8033"\w* said, “\w You|strong="H5117"\w* \w shall|strong="H1323"\w* \w rejoice|strong="H5937"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w*, \w you|strong="H5117"\w* \w oppressed|strong="H6231"\w* \w virgin|strong="H1330"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Sidon|strong="H6721"\w*. \w Arise|strong="H6965"\w*, \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w to|strong="H6965"\w* \w Kittim|strong="H3794"\w*. \w Even|strong="H1571"\w* \w there|strong="H8033"\w* \w you|strong="H5117"\w* \w will|strong="H1571"\w* \w have|strong="H1571"\w* \w no|strong="H3808"\w* \w rest|strong="H5117"\w*.” +\p +\v 13 \w Behold|strong="H2005"\w*, \w the|strong="H7760"\w* land \w of|strong="H5971"\w* \w the|strong="H7760"\w* \w Chaldeans|strong="H3778"\w*. \w This|strong="H2088"\w* \w people|strong="H5971"\w* didn’t exist. \w The|strong="H7760"\w* Assyrians \w founded|strong="H3245"\w* \w it|strong="H7760"\w* \w for|strong="H5971"\w* \w those|strong="H2088"\w* \w who|strong="H5971"\w* dwell \w in|strong="H5971"\w* \w the|strong="H7760"\w* \w wilderness|strong="H6728"\w*. \w They|strong="H3808"\w* \w set|strong="H7760"\w* \w up|strong="H6965"\w* \w their|strong="H7760"\w* towers. \w They|strong="H3808"\w* overthrew \w its|strong="H7760"\w* palaces. \w They|strong="H3808"\w* \w made|strong="H7760"\w* \w it|strong="H7760"\w* \w a|strong="H3068"\w* \w ruin|strong="H4654"\w*. +\v 14 \w Howl|strong="H3213"\w*, \w you|strong="H3588"\w* ships \w of|strong="H4581"\w* \w Tarshish|strong="H8659"\w*, \w for|strong="H3588"\w* \w your|strong="H3588"\w* \w stronghold|strong="H4581"\w* \w is|strong="H7703"\w* laid \w waste|strong="H7703"\w*! +\v 15 \w It|strong="H1931"\w* \w will|strong="H1961"\w* \w come|strong="H1961"\w* \w to|strong="H1961"\w* \w pass|strong="H1961"\w* \w in|strong="H8141"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w Tyre|strong="H6865"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w forgotten|strong="H7911"\w* \w seventy|strong="H7657"\w* \w years|strong="H8141"\w*, according \w to|strong="H1961"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w one|strong="H1931"\w* \w king|strong="H4428"\w*. \w After|strong="H7093"\w* \w the|strong="H3117"\w* \w end|strong="H7093"\w* \w of|strong="H4428"\w* \w seventy|strong="H7657"\w* \w years|strong="H8141"\w* \w it|strong="H1931"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w to|strong="H1961"\w* \w Tyre|strong="H6865"\w* \w like|strong="H1961"\w* \w in|strong="H8141"\w* \w the|strong="H3117"\w* \w song|strong="H7892"\w* \w of|strong="H4428"\w* \w the|strong="H3117"\w* \w prostitute|strong="H2181"\w*. +\v 16 \w Take|strong="H3947"\w* \w a|strong="H3068"\w* \w harp|strong="H3658"\w*; \w go|strong="H5437"\w* \w about|strong="H5437"\w* \w the|strong="H3947"\w* \w city|strong="H5892"\w*, \w you|strong="H3947"\w* \w prostitute|strong="H2181"\w* \w that|strong="H4616"\w* \w has|strong="H3947"\w* \w been|strong="H2142"\w* \w forgotten|strong="H7911"\w*. \w Make|strong="H2142"\w* \w sweet|strong="H3190"\w* \w melody|strong="H5059"\w*. \w Sing|strong="H7892"\w* \w many|strong="H7235"\w* \w songs|strong="H7892"\w*, \w that|strong="H4616"\w* \w you|strong="H3947"\w* \w may|strong="H2142"\w* \w be|strong="H5892"\w* \w remembered|strong="H2142"\w*. +\v 17 \w It|strong="H5921"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w* \w after|strong="H7093"\w* \w the|strong="H3605"\w* \w end|strong="H7093"\w* \w of|strong="H3068"\w* \w seventy|strong="H7657"\w* \w years|strong="H8141"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w visit|strong="H6485"\w* \w Tyre|strong="H6865"\w*. \w She|strong="H5921"\w* \w will|strong="H3068"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w her|strong="H3605"\w* wages, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w play|strong="H2181"\w* \w the|strong="H3605"\w* \w prostitute|strong="H2181"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* world \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* earth. +\v 18 \w Her|strong="H1961"\w* \w merchandise|strong="H5504"\w* \w and|strong="H3068"\w* \w her|strong="H1961"\w* wages \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w holiness|strong="H6944"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w It|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* treasured \w nor|strong="H3808"\w* \w laid|strong="H6440"\w* \w up|strong="H3427"\w*; \w for|strong="H3588"\w* \w her|strong="H1961"\w* \w merchandise|strong="H5504"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w for|strong="H3588"\w* \w those|strong="H3427"\w* \w who|strong="H3068"\w* \w dwell|strong="H3427"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w to|strong="H3068"\w* eat \w sufficiently|strong="H7654"\w*, \w and|strong="H3068"\w* \w for|strong="H3588"\w* \w durable|strong="H6266"\w* \w clothing|strong="H4374"\w*. +\c 24 +\p +\v 1 \w Behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w* \w makes|strong="H6440"\w* \w the|strong="H6440"\w* earth \w empty|strong="H1238"\w*, \w makes|strong="H6440"\w* \w it|strong="H6440"\w* \w waste|strong="H1110"\w*, turns \w it|strong="H6440"\w* upside \w down|strong="H3427"\w*, \w and|strong="H3068"\w* \w scatters|strong="H6327"\w* \w its|strong="H6327"\w* \w inhabitants|strong="H3427"\w*. +\v 2 \w It|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w with|strong="H5971"\w* \w the|strong="H1961"\w* \w people|strong="H5971"\w*, \w so|strong="H1961"\w* \w with|strong="H5971"\w* \w the|strong="H1961"\w* \w priest|strong="H3548"\w*; \w as|strong="H1961"\w* \w with|strong="H5971"\w* \w the|strong="H1961"\w* \w servant|strong="H5650"\w*, \w so|strong="H1961"\w* \w with|strong="H5971"\w* \w his|strong="H1961"\w* master; \w as|strong="H1961"\w* \w with|strong="H5971"\w* \w the|strong="H1961"\w* \w maid|strong="H8198"\w*, \w so|strong="H1961"\w* \w with|strong="H5971"\w* \w her|strong="H1961"\w* \w mistress|strong="H1404"\w*; \w as|strong="H1961"\w* \w with|strong="H5971"\w* \w the|strong="H1961"\w* \w buyer|strong="H7069"\w*, \w so|strong="H1961"\w* \w with|strong="H5971"\w* \w the|strong="H1961"\w* \w seller|strong="H4376"\w*; \w as|strong="H1961"\w* \w with|strong="H5971"\w* \w the|strong="H1961"\w* \w creditor|strong="H5383"\w*, \w so|strong="H1961"\w* \w with|strong="H5971"\w* \w the|strong="H1961"\w* debtor; \w as|strong="H1961"\w* \w with|strong="H5971"\w* \w the|strong="H1961"\w* taker \w of|strong="H5650"\w* interest, \w so|strong="H1961"\w* \w with|strong="H5971"\w* \w the|strong="H1961"\w* giver \w of|strong="H5650"\w* interest. +\v 3 \w The|strong="H3588"\w* earth \w will|strong="H3068"\w* \w be|strong="H1697"\w* \w utterly|strong="H1238"\w* \w emptied|strong="H1238"\w* \w and|strong="H3068"\w* \w utterly|strong="H1238"\w* \w laid|strong="H1238"\w* \w waste|strong="H1238"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w this|strong="H2088"\w* \w word|strong="H1697"\w*. +\v 4 \w The|strong="H5971"\w* earth mourns \w and|strong="H5971"\w* \w fades|strong="H5034"\w* \w away|strong="H5034"\w*. \w The|strong="H5971"\w* \w world|strong="H8398"\w* languishes \w and|strong="H5971"\w* \w fades|strong="H5034"\w* \w away|strong="H5034"\w*. \w The|strong="H5971"\w* \w lofty|strong="H4791"\w* \w people|strong="H5971"\w* \w of|strong="H5971"\w* \w the|strong="H5971"\w* earth languish. +\v 5 \w The|strong="H3588"\w* earth \w also|strong="H3588"\w* \w is|strong="H8451"\w* \w polluted|strong="H2610"\w* \w under|strong="H8478"\w* \w its|strong="H8478"\w* \w inhabitants|strong="H3427"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3588"\w* \w transgressed|strong="H5674"\w* \w the|strong="H3588"\w* \w laws|strong="H8451"\w*, \w violated|strong="H5674"\w* \w the|strong="H3588"\w* \w statutes|strong="H2706"\w*, \w and|strong="H5769"\w* \w broken|strong="H6565"\w* \w the|strong="H3588"\w* \w everlasting|strong="H5769"\w* \w covenant|strong="H1285"\w*. +\v 6 \w Therefore|strong="H3651"\w* \w the|strong="H5921"\w* curse has devoured \w the|strong="H5921"\w* earth, \w and|strong="H3427"\w* \w those|strong="H5921"\w* \w who|strong="H3427"\w* \w dwell|strong="H3427"\w* \w therein|strong="H3427"\w* are found guilty. \w Therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H5921"\w* earth are \w burned|strong="H2787"\w*, \w and|strong="H3427"\w* \w few|strong="H4213"\w* men are \w left|strong="H7604"\w*. +\v 7 \w The|strong="H3605"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w* mourns. \w The|strong="H3605"\w* \w vine|strong="H1612"\w* languishes. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w merry-hearted|strong="H8056"\w* sigh. +\v 8 \w The|strong="H7673"\w* \w mirth|strong="H4885"\w* \w of|strong="H7588"\w* \w tambourines|strong="H8596"\w* \w ceases|strong="H7673"\w*. \w The|strong="H7673"\w* sound \w of|strong="H7588"\w* those who \w rejoice|strong="H5947"\w* \w ends|strong="H7673"\w*. \w The|strong="H7673"\w* \w joy|strong="H4885"\w* \w of|strong="H7588"\w* \w the|strong="H7673"\w* \w harp|strong="H3658"\w* \w ceases|strong="H7673"\w*. +\v 9 \w They|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w drink|strong="H8354"\w* \w wine|strong="H3196"\w* \w with|strong="H4843"\w* \w a|strong="H3068"\w* \w song|strong="H7892"\w*. \w Strong|strong="H7941"\w* \w drink|strong="H8354"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w bitter|strong="H4843"\w* \w to|strong="H3808"\w* those \w who|strong="H8354"\w* \w drink|strong="H8354"\w* \w it|strong="H3808"\w*. +\v 10 \w The|strong="H3605"\w* confused \w city|strong="H7151"\w* \w is|strong="H3605"\w* \w broken|strong="H7665"\w* \w down|strong="H7665"\w*. \w Every|strong="H3605"\w* \w house|strong="H1004"\w* \w is|strong="H3605"\w* \w shut|strong="H5462"\w* \w up|strong="H5462"\w*, \w that|strong="H3605"\w* \w no|strong="H3605"\w* \w man|strong="H3605"\w* \w may|strong="H1004"\w* come \w in|strong="H1004"\w*. +\v 11 \w There|strong="H3605"\w* \w is|strong="H3605"\w* \w a|strong="H3068"\w* \w crying|strong="H6682"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w streets|strong="H2351"\w* \w because|strong="H5921"\w* \w of|strong="H5921"\w* \w the|strong="H3605"\w* \w wine|strong="H3196"\w*. \w All|strong="H3605"\w* \w joy|strong="H8057"\w* \w is|strong="H3605"\w* \w darkened|strong="H6150"\w*. \w The|strong="H3605"\w* \w mirth|strong="H8057"\w* \w of|strong="H5921"\w* \w the|strong="H3605"\w* land \w is|strong="H3605"\w* \w gone|strong="H1540"\w*. +\v 12 \w The|strong="H5892"\w* \w city|strong="H5892"\w* \w is|strong="H5892"\w* \w left|strong="H7604"\w* \w in|strong="H5892"\w* \w desolation|strong="H8047"\w*, \w and|strong="H5892"\w* \w the|strong="H5892"\w* \w gate|strong="H8179"\w* \w is|strong="H5892"\w* struck \w with|strong="H5892"\w* \w destruction|strong="H7591"\w*. +\v 13 \w For|strong="H3588"\w* \w it|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w so|strong="H3541"\w* \w within|strong="H7130"\w* \w the|strong="H3588"\w* earth \w among|strong="H8432"\w* \w the|strong="H3588"\w* \w peoples|strong="H5971"\w*, \w as|strong="H1961"\w* \w the|strong="H3588"\w* \w shaking|strong="H5363"\w* \w of|strong="H8432"\w* \w an|strong="H1961"\w* \w olive|strong="H2132"\w* \w tree|strong="H2132"\w*, \w as|strong="H1961"\w* \w the|strong="H3588"\w* \w gleanings|strong="H5955"\w* \w when|strong="H3588"\w* \w the|strong="H3588"\w* \w vintage|strong="H1210"\w* \w is|strong="H1961"\w* \w done|strong="H1961"\w*. +\p +\v 14 \w These|strong="H1992"\w* \w shall|strong="H3068"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w their|strong="H3068"\w* \w voice|strong="H6963"\w*. \w They|strong="H1992"\w* \w will|strong="H3068"\w* \w shout|strong="H7442"\w* \w for|strong="H7442"\w* \w the|strong="H5375"\w* \w majesty|strong="H1347"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w They|strong="H1992"\w* \w cry|strong="H6670"\w* \w aloud|strong="H7442"\w* \w from|strong="H3068"\w* \w the|strong="H5375"\w* \w sea|strong="H3220"\w*. +\v 15 \w Therefore|strong="H3651"\w* \w glorify|strong="H3513"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w east|strong="H5921"\w*, \w even|strong="H3651"\w* \w the|strong="H5921"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* islands \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*! +\v 16 \w From|strong="H8085"\w* \w the|strong="H8085"\w* uttermost \w part|strong="H3671"\w* \w of|strong="H3671"\w* \w the|strong="H8085"\w* earth \w have|strong="H8085"\w* \w we|strong="H3068"\w* \w heard|strong="H8085"\w* \w songs|strong="H2158"\w*. \w Glory|strong="H6643"\w* \w to|strong="H8085"\w* \w the|strong="H8085"\w* \w righteous|strong="H6662"\w*! +\p \w But|strong="H8085"\w* \w I|strong="H8085"\w* \w said|strong="H8085"\w*, “\w I|strong="H8085"\w* pine \w away|strong="H3671"\w*! \w I|strong="H8085"\w* pine \w away|strong="H3671"\w*! \w woe|strong="H7334"\w* \w is|strong="H6662"\w* \w me|strong="H8085"\w*!” \w The|strong="H8085"\w* treacherous \w have|strong="H8085"\w* dealt treacherously. Yes, \w the|strong="H8085"\w* treacherous \w have|strong="H8085"\w* dealt very treacherously. +\v 17 \w Fear|strong="H6343"\w*, \w the|strong="H5921"\w* \w pit|strong="H6354"\w*, \w and|strong="H3427"\w* \w the|strong="H5921"\w* \w snare|strong="H6341"\w* \w are|strong="H6341"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w* \w who|strong="H3427"\w* \w inhabit|strong="H3427"\w* \w the|strong="H5921"\w* earth. +\v 18 \w It|strong="H3588"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w who|strong="H3588"\w* \w flees|strong="H5127"\w* \w from|strong="H5927"\w* \w the|strong="H3588"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H3588"\w* \w fear|strong="H6343"\w* \w will|strong="H1961"\w* \w fall|strong="H5307"\w* \w into|strong="H5927"\w* \w the|strong="H3588"\w* \w pit|strong="H6354"\w*; \w and|strong="H6963"\w* \w he|strong="H3588"\w* \w who|strong="H3588"\w* \w comes|strong="H1961"\w* \w up|strong="H5927"\w* \w out|strong="H5307"\w* \w of|strong="H6963"\w* \w the|strong="H3588"\w* \w middle|strong="H8432"\w* \w of|strong="H6963"\w* \w the|strong="H3588"\w* \w pit|strong="H6354"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w taken|strong="H3920"\w* \w in|strong="H8432"\w* \w the|strong="H3588"\w* \w snare|strong="H6341"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* windows \w on|strong="H5307"\w* \w high|strong="H4791"\w* \w are|strong="H1961"\w* \w opened|strong="H6605"\w*, \w and|strong="H6963"\w* \w the|strong="H3588"\w* \w foundations|strong="H4146"\w* \w of|strong="H6963"\w* \w the|strong="H3588"\w* \w earth|strong="H5927"\w* \w tremble|strong="H7493"\w*. +\v 19 \w The|strong="H6565"\w* earth is \w utterly|strong="H7489"\w* \w broken|strong="H6565"\w*. \w The|strong="H6565"\w* earth is torn apart. \w The|strong="H6565"\w* earth is \w shaken|strong="H4131"\w* \w violently|strong="H4131"\w*. +\v 20 \w The|strong="H5921"\w* earth \w will|strong="H3808"\w* \w stagger|strong="H5128"\w* \w like|strong="H3808"\w* \w a|strong="H3068"\w* \w drunken|strong="H7910"\w* \w man|strong="H7910"\w*, \w and|strong="H6965"\w* \w will|strong="H3808"\w* sway back \w and|strong="H6965"\w* forth \w like|strong="H3808"\w* \w a|strong="H3068"\w* hammock. \w Its|strong="H5921"\w* disobedience \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w heavy|strong="H3513"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*, \w and|strong="H6965"\w* \w it|strong="H5921"\w* \w will|strong="H3808"\w* \w fall|strong="H5307"\w* \w and|strong="H6965"\w* \w not|strong="H3808"\w* \w rise|strong="H6965"\w* \w again|strong="H3254"\w*. +\p +\v 21 \w It|strong="H1931"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w* \w in|strong="H5921"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w punish|strong="H6485"\w* \w the|strong="H5921"\w* \w army|strong="H6635"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w high|strong="H4791"\w* \w ones|strong="H4791"\w* \w on|strong="H5921"\w* \w high|strong="H4791"\w*, \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* earth \w on|strong="H5921"\w* \w the|strong="H5921"\w* earth. +\v 22 \w They|strong="H3117"\w* \w will|strong="H3117"\w* \w be|strong="H3117"\w* \w gathered|strong="H6485"\w* \w together|strong="H5921"\w*, \w as|strong="H3117"\w* prisoners \w are|strong="H3117"\w* \w gathered|strong="H6485"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* pit, \w and|strong="H3117"\w* \w will|strong="H3117"\w* \w be|strong="H3117"\w* \w shut|strong="H5462"\w* \w up|strong="H5462"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w prison|strong="H4525"\w*; \w and|strong="H3117"\w* \w after|strong="H5921"\w* \w many|strong="H7230"\w* \w days|strong="H3117"\w* \w they|strong="H3117"\w* \w will|strong="H3117"\w* \w be|strong="H3117"\w* \w visited|strong="H6485"\w*. +\v 23 \w Then|strong="H3588"\w* \w the|strong="H3588"\w* \w moon|strong="H3842"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w confounded|strong="H2659"\w*, \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w sun|strong="H2535"\w* \w ashamed|strong="H2659"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w will|strong="H3068"\w* \w reign|strong="H4427"\w* \w on|strong="H3068"\w* \w Mount|strong="H2022"\w* \w Zion|strong="H6726"\w* \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*; \w and|strong="H3068"\w* \w glory|strong="H3519"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w before|strong="H5048"\w* \w his|strong="H3068"\w* \w elders|strong="H2205"\w*. +\c 25 +\p +\v 1 \w Yahweh|strong="H3068"\w*, \w you|strong="H3588"\w* \w are|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*. \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w exalt|strong="H7311"\w* \w you|strong="H3588"\w*! \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w praise|strong="H3034"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w wonderful|strong="H6382"\w* \w things|strong="H6382"\w*, \w things|strong="H6382"\w* planned \w long|strong="H7350"\w* \w ago|strong="H7350"\w*, \w in|strong="H3068"\w* complete faithfulness \w and|strong="H3068"\w* truth. +\v 2 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1129"\w* \w made|strong="H7760"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w* \w into|strong="H5892"\w* \w a|strong="H3068"\w* \w heap|strong="H1530"\w*, \w a|strong="H3068"\w* \w fortified|strong="H1219"\w* \w city|strong="H5892"\w* \w into|strong="H5892"\w* \w a|strong="H3068"\w* \w ruin|strong="H4654"\w*, \w a|strong="H3068"\w* palace \w of|strong="H5892"\w* \w strangers|strong="H2114"\w* \w to|strong="H5892"\w* \w be|strong="H3808"\w* \w no|strong="H3808"\w* \w city|strong="H5892"\w*. \w It|strong="H7760"\w* \w will|strong="H5892"\w* \w never|strong="H3808"\w* \w be|strong="H3808"\w* \w built|strong="H1129"\w*. +\v 3 \w Therefore|strong="H3651"\w* \w a|strong="H3068"\w* \w strong|strong="H5794"\w* \w people|strong="H5971"\w* \w will|strong="H1471"\w* \w glorify|strong="H3513"\w* \w you|strong="H5921"\w*. \w A|strong="H3068"\w* \w city|strong="H7151"\w* \w of|strong="H5971"\w* \w awesome|strong="H3372"\w* \w nations|strong="H1471"\w* \w will|strong="H1471"\w* \w fear|strong="H3372"\w* \w you|strong="H5921"\w*. +\v 4 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w a|strong="H3068"\w* \w stronghold|strong="H4581"\w* \w to|strong="H1961"\w* \w the|strong="H3588"\w* \w poor|strong="H1800"\w*, \w a|strong="H3068"\w* \w stronghold|strong="H4581"\w* \w to|strong="H1961"\w* \w the|strong="H3588"\w* \w needy|strong="H1800"\w* \w in|strong="H1961"\w* \w his|strong="H1961"\w* \w distress|strong="H6862"\w*, \w a|strong="H3068"\w* \w refuge|strong="H4268"\w* \w from|strong="H7307"\w* \w the|strong="H3588"\w* \w storm|strong="H2230"\w*, \w a|strong="H3068"\w* \w shade|strong="H6738"\w* \w from|strong="H7307"\w* \w the|strong="H3588"\w* \w heat|strong="H2721"\w*, \w when|strong="H3588"\w* \w the|strong="H3588"\w* \w blast|strong="H7307"\w* \w of|strong="H7307"\w* \w the|strong="H3588"\w* dreaded \w ones|strong="H6184"\w* \w is|strong="H7307"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w storm|strong="H2230"\w* \w against|strong="H7307"\w* \w the|strong="H3588"\w* \w wall|strong="H7023"\w*. +\v 5 \w As|strong="H5645"\w* \w the|strong="H6030"\w* \w heat|strong="H2721"\w* \w in|strong="H6030"\w* \w a|strong="H3068"\w* \w dry|strong="H2721"\w* \w place|strong="H6724"\w* \w you|strong="H2114"\w* \w will|strong="H2114"\w* bring \w down|strong="H3665"\w* \w the|strong="H6030"\w* \w noise|strong="H7588"\w* \w of|strong="H7588"\w* \w strangers|strong="H2114"\w*; \w as|strong="H5645"\w* \w the|strong="H6030"\w* \w heat|strong="H2721"\w* \w by|strong="H6030"\w* \w the|strong="H6030"\w* \w shade|strong="H6738"\w* \w of|strong="H7588"\w* \w a|strong="H3068"\w* \w cloud|strong="H5645"\w*, \w the|strong="H6030"\w* \w song|strong="H2158"\w* \w of|strong="H7588"\w* \w the|strong="H6030"\w* dreaded \w ones|strong="H6184"\w* \w will|strong="H2114"\w* \w be|strong="H2114"\w* \w brought|strong="H3665"\w* \w low|strong="H3665"\w*. +\p +\v 6 \w In|strong="H3068"\w* \w this|strong="H2088"\w* \w mountain|strong="H2022"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w will|strong="H3068"\w* \w make|strong="H6213"\w* \w all|strong="H3605"\w* \w peoples|strong="H5971"\w* \w a|strong="H3068"\w* \w feast|strong="H4960"\w* \w of|strong="H3068"\w* \w choice|strong="H8081"\w* meat,\f + \fr 25:6 \ft literally, fat things\f* \w a|strong="H3068"\w* \w feast|strong="H4960"\w* \w of|strong="H3068"\w* \w choice|strong="H8081"\w* wines, \w of|strong="H3068"\w* \w choice|strong="H8081"\w* meat \w full|strong="H3605"\w* \w of|strong="H3068"\w* \w marrow|strong="H4229"\w*, \w of|strong="H3068"\w* \w well|strong="H8105"\w* \w refined|strong="H2212"\w* \w choice|strong="H8081"\w* wines. +\v 7 \w He|strong="H3605"\w* \w will|strong="H1471"\w* \w destroy|strong="H1104"\w* \w in|strong="H5921"\w* \w this|strong="H2088"\w* \w mountain|strong="H2022"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w covering|strong="H4541"\w* \w that|strong="H5971"\w* covers \w all|strong="H3605"\w* \w peoples|strong="H5971"\w*, \w and|strong="H5971"\w* \w the|strong="H3605"\w* \w veil|strong="H4541"\w* \w that|strong="H5971"\w* \w is|strong="H2088"\w* \w spread|strong="H5259"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w nations|strong="H1471"\w*. +\v 8 \w He|strong="H3588"\w* \w has|strong="H3068"\w* \w swallowed|strong="H1104"\w* \w up|strong="H1104"\w* \w death|strong="H4194"\w* \w forever|strong="H5331"\w*! \w The|strong="H3605"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w wipe|strong="H4229"\w* \w away|strong="H5493"\w* \w tears|strong="H1832"\w* \w from|strong="H5493"\w* \w off|strong="H5493"\w* \w all|strong="H3605"\w* \w faces|strong="H6440"\w*. \w He|strong="H3588"\w* \w will|strong="H3068"\w* \w take|strong="H5493"\w* \w the|strong="H3605"\w* \w reproach|strong="H2781"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* \w off|strong="H5493"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w it|strong="H5921"\w*. +\p +\v 9 \w It|strong="H1931"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* said \w in|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, “\w Behold|strong="H2009"\w*, \w this|strong="H2088"\w* \w is|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*! \w We|strong="H3117"\w* \w have|strong="H3068"\w* \w waited|strong="H6960"\w* \w for|strong="H3068"\w* \w him|strong="H1931"\w*, \w and|strong="H3068"\w* \w he|strong="H1931"\w* \w will|strong="H3068"\w* \w save|strong="H3467"\w* \w us|strong="H3117"\w*! \w This|strong="H2088"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*! \w We|strong="H3117"\w* \w have|strong="H3068"\w* \w waited|strong="H6960"\w* \w for|strong="H3068"\w* \w him|strong="H1931"\w*. \w We|strong="H3117"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w glad|strong="H8055"\w* \w and|strong="H3068"\w* \w rejoice|strong="H8055"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w salvation|strong="H3444"\w*!” +\v 10 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w will|strong="H3068"\w* \w rest|strong="H5117"\w* \w in|strong="H3068"\w* \w this|strong="H2088"\w* \w mountain|strong="H2022"\w*. +\p \w Moab|strong="H4124"\w* \w will|strong="H3068"\w* \w be|strong="H3027"\w* \w trodden|strong="H1758"\w* \w down|strong="H5117"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w place|strong="H8478"\w*, \w even|strong="H3588"\w* \w like|strong="H4124"\w* \w straw|strong="H4963"\w* \w is|strong="H3068"\w* \w trodden|strong="H1758"\w* \w down|strong="H5117"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* water \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w dunghill|strong="H1119"\w*. +\v 11 \w He|strong="H3027"\w* \w will|strong="H3027"\w* \w spread|strong="H6566"\w* \w out|strong="H6566"\w* \w his|strong="H3027"\w* \w hands|strong="H3027"\w* \w in|strong="H7130"\w* \w the|strong="H3027"\w* \w middle|strong="H7130"\w* \w of|strong="H3027"\w* \w it|strong="H6566"\w*, \w like|strong="H5973"\w* \w one|strong="H3027"\w* who swims \w spreads|strong="H6566"\w* \w out|strong="H6566"\w* \w hands|strong="H3027"\w* \w to|strong="H3027"\w* \w swim|strong="H7811"\w*, \w but|strong="H1346"\w* \w his|strong="H3027"\w* \w pride|strong="H1346"\w* \w will|strong="H3027"\w* \w be|strong="H3027"\w* \w humbled|strong="H8213"\w* \w together|strong="H5973"\w* \w with|strong="H5973"\w* \w the|strong="H3027"\w* craft \w of|strong="H3027"\w* \w his|strong="H3027"\w* \w hands|strong="H3027"\w*. +\v 12 \w He|strong="H5704"\w* \w has|strong="H4869"\w* \w brought|strong="H5060"\w* \w the|strong="H5704"\w* high \w fortress|strong="H4013"\w* \w of|strong="H2346"\w* \w your|strong="H5704"\w* \w walls|strong="H2346"\w* \w down|strong="H7817"\w*, \w laid|strong="H5060"\w* \w low|strong="H8213"\w*, \w and|strong="H6083"\w* \w brought|strong="H5060"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w ground|strong="H6083"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w dust|strong="H6083"\w*. +\c 26 +\p +\v 1 \w In|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w this|strong="H2088"\w* \w song|strong="H7892"\w* \w will|strong="H5892"\w* \w be|strong="H3117"\w* \w sung|strong="H7891"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* land \w of|strong="H3117"\w* \w Judah|strong="H3063"\w*: +\q1 “\w We|strong="H3117"\w* \w have|strong="H3063"\w* \w a|strong="H3068"\w* \w strong|strong="H5794"\w* \w city|strong="H5892"\w*. +\q2 God appoints \w salvation|strong="H3444"\w* \w for|strong="H3117"\w* \w walls|strong="H2346"\w* \w and|strong="H3063"\w* \w bulwarks|strong="H2426"\w*. +\q1 +\v 2 \w Open|strong="H6605"\w* \w the|strong="H8104"\w* \w gates|strong="H8179"\w*, \w that|strong="H1471"\w* \w the|strong="H8104"\w* \w righteous|strong="H6662"\w* \w nation|strong="H1471"\w* \w may|strong="H1471"\w* enter: +\q2 \w the|strong="H8104"\w* \w one|strong="H6662"\w* \w which|strong="H1471"\w* \w keeps|strong="H8104"\w* faith. +\q1 +\v 3 \w You|strong="H3588"\w* \w will|strong="H3588"\w* \w keep|strong="H5341"\w* whoever’s \w mind|strong="H3336"\w* \w is|strong="H3588"\w* \w steadfast|strong="H5564"\w* \w in|strong="H7965"\w* \w perfect|strong="H7965"\w* \w peace|strong="H7965"\w*, +\q2 \w because|strong="H3588"\w* \w he|strong="H3588"\w* trusts \w in|strong="H7965"\w* \w you|strong="H3588"\w*. +\q1 +\v 4 Trust \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w forever|strong="H5769"\w*; +\q2 \w for|strong="H3588"\w* \w in|strong="H3068"\w* \w Yah|strong="H3068"\w*, \w Yahweh|strong="H3068"\w*, \w is|strong="H3068"\w* \w an|strong="H3588"\w* \w everlasting|strong="H5769"\w* \w Rock|strong="H6697"\w*. +\q1 +\v 5 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w brought|strong="H5060"\w* \w down|strong="H3427"\w* \w those|strong="H3427"\w* \w who|strong="H3427"\w* \w dwell|strong="H3427"\w* \w on|strong="H3427"\w* \w high|strong="H4791"\w*, \w the|strong="H3588"\w* \w lofty|strong="H4791"\w* \w city|strong="H7151"\w*. +\q2 \w He|strong="H3588"\w* \w lays|strong="H8213"\w* \w it|strong="H3588"\w* \w low|strong="H8213"\w*. +\q2 \w He|strong="H3588"\w* \w lays|strong="H8213"\w* \w it|strong="H3588"\w* \w low|strong="H8213"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w ground|strong="H6083"\w*. +\q2 \w He|strong="H3588"\w* \w brings|strong="H8213"\w* \w it|strong="H3588"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w dust|strong="H6083"\w*. +\q1 +\v 6 \w The|strong="H7429"\w* \w foot|strong="H7272"\w* \w shall|strong="H7272"\w* \w tread|strong="H7429"\w* \w it|strong="H7429"\w* \w down|strong="H7429"\w*, +\q2 even \w the|strong="H7429"\w* \w feet|strong="H7272"\w* \w of|strong="H7272"\w* \w the|strong="H7429"\w* \w poor|strong="H6041"\w* +\q2 \w and|strong="H6041"\w* \w the|strong="H7429"\w* \w steps|strong="H6471"\w* \w of|strong="H7272"\w* \w the|strong="H7429"\w* \w needy|strong="H6041"\w*.” +\q1 +\v 7 \w The|strong="H6424"\w* \w way|strong="H4570"\w* \w of|strong="H4570"\w* \w the|strong="H6424"\w* \w just|strong="H6662"\w* \w is|strong="H6662"\w* \w uprightness|strong="H4339"\w*. +\q2 You \w who|strong="H6662"\w* \w are|strong="H6662"\w* \w upright|strong="H3477"\w* \w make|strong="H6424"\w* \w the|strong="H6424"\w* \w path|strong="H4570"\w* \w of|strong="H4570"\w* \w the|strong="H6424"\w* \w righteous|strong="H6662"\w* \w level|strong="H6424"\w*. +\b +\q1 +\v 8 Yes, \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w way|strong="H4941"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w judgments|strong="H4941"\w*, \w Yahweh|strong="H3068"\w*, \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w waited|strong="H6960"\w* \w for|strong="H8034"\w* \w you|strong="H5315"\w*. +\q2 \w Your|strong="H3068"\w* \w name|strong="H8034"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w renown|strong="H8034"\w* \w are|strong="H3068"\w* \w the|strong="H3068"\w* \w desire|strong="H8378"\w* \w of|strong="H3068"\w* \w our|strong="H3068"\w* \w soul|strong="H5315"\w*. +\q1 +\v 9 \w With|strong="H3427"\w* \w my|strong="H3588"\w* \w soul|strong="H5315"\w* \w I|strong="H3588"\w* \w have|strong="H3588"\w* desired \w you|strong="H3588"\w* \w in|strong="H3427"\w* \w the|strong="H3588"\w* \w night|strong="H3915"\w*. +\q2 \w Yes|strong="H3588"\w*, \w with|strong="H3427"\w* \w my|strong="H3588"\w* \w spirit|strong="H7307"\w* \w within|strong="H7130"\w* \w me|strong="H5315"\w* \w I|strong="H3588"\w* \w will|strong="H5315"\w* \w seek|strong="H7836"\w* \w you|strong="H3588"\w* \w earnestly|strong="H7836"\w*; +\q2 \w for|strong="H3588"\w* \w when|strong="H3588"\w* \w your|strong="H3588"\w* \w judgments|strong="H4941"\w* \w are|strong="H4941"\w* \w in|strong="H3427"\w* \w the|strong="H3588"\w* earth, \w the|strong="H3588"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H3588"\w* \w world|strong="H8398"\w* \w learn|strong="H3925"\w* \w righteousness|strong="H6664"\w*. +\q1 +\v 10 Let \w favor|strong="H2603"\w* \w be|strong="H3068"\w* \w shown|strong="H7200"\w* \w to|strong="H3068"\w* \w the|strong="H7200"\w* \w wicked|strong="H7563"\w*, +\q2 \w yet|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H1077"\w* \w learn|strong="H3925"\w* \w righteousness|strong="H6664"\w*. +\q1 \w In|strong="H3068"\w* \w the|strong="H7200"\w* land \w of|strong="H3068"\w* \w uprightness|strong="H5229"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* deal wrongfully, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H1077"\w* \w see|strong="H7200"\w* \w Yahweh|strong="H3068"\w*’s \w majesty|strong="H1348"\w*. +\b +\q1 +\v 11 \w Yahweh|strong="H3068"\w*, \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w is|strong="H3068"\w* \w lifted|strong="H7311"\w* \w up|strong="H7311"\w*, \w yet|strong="H3068"\w* \w they|strong="H3068"\w* don’t \w see|strong="H2372"\w*; +\q2 \w but|strong="H5971"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* \w see|strong="H2372"\w* \w your|strong="H3068"\w* \w zeal|strong="H7068"\w* \w for|strong="H3027"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w* \w and|strong="H3068"\w* \w be|strong="H3027"\w* disappointed. +\q2 \w Yes|strong="H2372"\w*, fire \w will|strong="H3068"\w* consume \w your|strong="H3068"\w* \w adversaries|strong="H6862"\w*. +\q1 +\v 12 \w Yahweh|strong="H3068"\w*, \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w ordain|strong="H8239"\w* \w peace|strong="H7965"\w* \w for|strong="H3588"\w* \w us|strong="H3588"\w*, +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w also|strong="H1571"\w* \w done|strong="H6466"\w* \w all|strong="H3605"\w* \w our|strong="H3068"\w* \w work|strong="H4639"\w* \w for|strong="H3588"\w* \w us|strong="H3588"\w*. +\q1 +\v 13 \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, other lords \w besides|strong="H2108"\w* \w you|strong="H2142"\w* \w have|strong="H3068"\w* \w had|strong="H3068"\w* \w dominion|strong="H1166"\w* \w over|strong="H3068"\w* \w us|strong="H2142"\w*, +\q2 \w but|strong="H2108"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w only|strong="H2108"\w* acknowledge \w your|strong="H3068"\w* \w name|strong="H8034"\w*. +\q1 +\v 14 \w The|strong="H3605"\w* \w dead|strong="H4191"\w* \w shall|strong="H2143"\w* \w not|strong="H1077"\w* \w live|strong="H2421"\w*. +\q2 \w The|strong="H3605"\w* \w departed|strong="H7496"\w* \w spirits|strong="H7496"\w* \w shall|strong="H2143"\w* \w not|strong="H1077"\w* \w rise|strong="H6965"\w*. +\q1 \w Therefore|strong="H3651"\w* \w you|strong="H3605"\w* \w have|strong="H3605"\w* \w visited|strong="H6485"\w* \w and|strong="H6965"\w* \w destroyed|strong="H8045"\w* \w them|strong="H8045"\w*, +\q2 \w and|strong="H6965"\w* \w caused|strong="H4191"\w* \w all|strong="H3605"\w* \w memory|strong="H2143"\w* \w of|strong="H3605"\w* \w them|strong="H8045"\w* \w to|strong="H4191"\w* perish. +\q1 +\v 15 \w You|strong="H3605"\w* \w have|strong="H3068"\w* \w increased|strong="H3254"\w* \w the|strong="H3605"\w* \w nation|strong="H1471"\w*, \w O|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w You|strong="H3605"\w* \w have|strong="H3068"\w* \w increased|strong="H3254"\w* \w the|strong="H3605"\w* \w nation|strong="H1471"\w*! +\q1 \w You|strong="H3605"\w* \w are|strong="H1471"\w* \w glorified|strong="H3513"\w*! +\q2 \w You|strong="H3605"\w* \w have|strong="H3068"\w* enlarged \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w borders|strong="H7099"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* land. +\b +\q1 +\v 16 \w Yahweh|strong="H3068"\w*, \w in|strong="H3068"\w* \w trouble|strong="H6862"\w* \w they|strong="H3068"\w* \w have|strong="H3068"\w* \w visited|strong="H6485"\w* \w you|strong="H6485"\w*. +\q2 \w They|strong="H3068"\w* \w poured|strong="H6694"\w* \w out|strong="H6694"\w* \w a|strong="H3068"\w* \w prayer|strong="H3908"\w* \w when|strong="H3068"\w* \w your|strong="H3068"\w* \w chastening|strong="H4148"\w* \w was|strong="H3068"\w* \w on|strong="H3068"\w* \w them|strong="H6485"\w*. +\q1 +\v 17 Just \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w woman|strong="H2030"\w* \w with|strong="H3068"\w* \w child|strong="H2030"\w*, \w who|strong="H3068"\w* \w draws|strong="H7126"\w* \w near|strong="H7126"\w* \w the|strong="H6440"\w* \w time|strong="H6440"\w* \w of|strong="H3068"\w* \w her|strong="H3205"\w* \w delivery|strong="H3205"\w*, +\q2 \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w pain|strong="H2342"\w* \w and|strong="H3068"\w* \w cries|strong="H2199"\w* \w out|strong="H2199"\w* \w in|strong="H3068"\w* \w her|strong="H3205"\w* \w pangs|strong="H2256"\w*, +\q2 \w so|strong="H3651"\w* \w we|strong="H3068"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w Yahweh|strong="H3068"\w*. +\q1 +\v 18 \w We|strong="H6213"\w* \w have|strong="H3205"\w* \w been|strong="H3644"\w* \w with|strong="H6213"\w* \w child|strong="H3205"\w*. +\q2 \w We|strong="H6213"\w* \w have|strong="H3205"\w* \w been|strong="H3644"\w* \w in|strong="H3427"\w* \w pain|strong="H2342"\w*. +\q1 \w We|strong="H6213"\w* \w gave|strong="H3205"\w* \w birth|strong="H3205"\w*, \w it|strong="H6213"\w* seems, \w only|strong="H5307"\w* \w to|strong="H6213"\w* \w wind|strong="H7307"\w*. +\q2 \w We|strong="H6213"\w* \w have|strong="H3205"\w* \w not|strong="H6213"\w* \w worked|strong="H6213"\w* \w any|strong="H6213"\w* \w deliverance|strong="H3444"\w* \w in|strong="H3427"\w* \w the|strong="H6213"\w* earth; +\q2 \w neither|strong="H1077"\w* \w have|strong="H3205"\w* \w the|strong="H6213"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H6213"\w* \w world|strong="H8398"\w* \w fallen|strong="H5307"\w*. +\q1 +\v 19 \w Your|strong="H3588"\w* \w dead|strong="H4191"\w* \w shall|strong="H5038"\w* \w live|strong="H2421"\w*. +\q2 \w Their|strong="H3588"\w* \w dead|strong="H4191"\w* \w bodies|strong="H5038"\w* \w shall|strong="H5038"\w* \w arise|strong="H6965"\w*. +\q1 \w Awake|strong="H6974"\w* \w and|strong="H6965"\w* \w sing|strong="H7442"\w*, \w you|strong="H3588"\w* \w who|strong="H3588"\w* \w dwell|strong="H7931"\w* \w in|strong="H7931"\w* \w the|strong="H3588"\w* \w dust|strong="H6083"\w*; +\q2 \w for|strong="H3588"\w* \w your|strong="H3588"\w* \w dew|strong="H2919"\w* \w is|strong="H4191"\w* \w like|strong="H4191"\w* \w the|strong="H3588"\w* \w dew|strong="H2919"\w* \w of|strong="H4191"\w* herbs, +\q2 \w and|strong="H6965"\w* \w the|strong="H3588"\w* \w earth|strong="H6083"\w* \w will|strong="H5307"\w* \w cast|strong="H5307"\w* \w out|strong="H7442"\w* \w the|strong="H3588"\w* \w departed|strong="H7496"\w* \w spirits|strong="H7496"\w*. +\b +\q1 +\v 20 \w Come|strong="H3212"\w*, \w my|strong="H5674"\w* \w people|strong="H5971"\w*, \w enter|strong="H5674"\w* \w into|strong="H3212"\w* \w your|strong="H5674"\w* \w rooms|strong="H2315"\w*, +\q2 \w and|strong="H3212"\w* \w shut|strong="H5462"\w* \w your|strong="H5674"\w* \w doors|strong="H1817"\w* \w behind|strong="H1157"\w* \w you|strong="H5704"\w*. +\q1 \w Hide|strong="H2247"\w* yourself \w for|strong="H5704"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w moment|strong="H7281"\w*, +\q2 \w until|strong="H5704"\w* \w the|strong="H5704"\w* \w indignation|strong="H2195"\w* \w is|strong="H5971"\w* \w past|strong="H5674"\w*. +\q1 +\v 21 \w For|strong="H3588"\w*, \w behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w* \w comes|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w place|strong="H4725"\w* \w to|strong="H3318"\w* \w punish|strong="H6485"\w* \w the|strong="H5921"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* earth \w for|strong="H3588"\w* \w their|strong="H3068"\w* \w iniquity|strong="H5771"\w*. +\q2 \w The|strong="H5921"\w* earth \w also|strong="H3068"\w* \w will|strong="H3068"\w* \w disclose|strong="H1540"\w* \w her|strong="H1540"\w* \w blood|strong="H1818"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w no|strong="H3808"\w* \w longer|strong="H5750"\w* \w cover|strong="H3680"\w* \w her|strong="H1540"\w* \w slain|strong="H2026"\w*. +\c 27 +\p +\v 1 \w In|strong="H5921"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w his|strong="H3068"\w* \w hard|strong="H7186"\w* \w and|strong="H3068"\w* \w great|strong="H1419"\w* \w and|strong="H3068"\w* \w strong|strong="H2389"\w* \w sword|strong="H2719"\w* \w will|strong="H3068"\w* \w punish|strong="H6485"\w* \w leviathan|strong="H3882"\w*, \w the|strong="H5921"\w* \w fleeing|strong="H1281"\w* \w serpent|strong="H5175"\w*, \w and|strong="H3068"\w* \w leviathan|strong="H3882"\w*, \w the|strong="H5921"\w* \w twisted|strong="H6129"\w* \w serpent|strong="H5175"\w*; \w and|strong="H3068"\w* \w he|strong="H1931"\w* \w will|strong="H3068"\w* \w kill|strong="H2026"\w* \w the|strong="H5921"\w* \w dragon|strong="H8577"\w* \w that|strong="H3117"\w* \w is|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*. +\p +\v 2 \w In|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w sing|strong="H6030"\w* \w to|strong="H3117"\w* \w her|strong="H1931"\w*, “\w A|strong="H3068"\w* \w pleasant|strong="H2531"\w* \w vineyard|strong="H3754"\w*! +\v 3 \w I|strong="H3117"\w*, \w Yahweh|strong="H3068"\w*, \w am|strong="H3068"\w* \w its|strong="H5921"\w* \w keeper|strong="H5341"\w*. \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w water|strong="H8248"\w* \w it|strong="H5921"\w* \w every|strong="H3117"\w* \w moment|strong="H7281"\w*. \w Lest|strong="H6435"\w* anyone \w damage|strong="H6485"\w* \w it|strong="H5921"\w*, \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w keep|strong="H5341"\w* \w it|strong="H5921"\w* \w night|strong="H3915"\w* \w and|strong="H3068"\w* \w day|strong="H3117"\w*. +\v 4 \w Wrath|strong="H2534"\w* \w is|strong="H4310"\w* \w not|strong="H5414"\w* \w in|strong="H4421"\w* \w me|strong="H5414"\w*, but if \w I|strong="H5414"\w* \w should|strong="H4310"\w* \w find|strong="H5414"\w* \w briers|strong="H8068"\w* \w and|strong="H4421"\w* \w thorns|strong="H7898"\w*, \w I|strong="H5414"\w* \w would|strong="H4310"\w* \w do|strong="H4310"\w* \w battle|strong="H4421"\w*! \w I|strong="H5414"\w* \w would|strong="H4310"\w* march \w on|strong="H5414"\w* \w them|strong="H5414"\w* \w and|strong="H4421"\w* \w I|strong="H5414"\w* \w would|strong="H4310"\w* \w burn|strong="H6702"\w* \w them|strong="H5414"\w* \w together|strong="H3162"\w*. +\v 5 \w Or|strong="H6213"\w* else let \w him|strong="H6213"\w* \w take|strong="H2388"\w* \w hold|strong="H2388"\w* \w of|strong="H6213"\w* \w my|strong="H6213"\w* \w strength|strong="H4581"\w*, \w that|strong="H6213"\w* \w he|strong="H6213"\w* \w may|strong="H6213"\w* \w make|strong="H6213"\w* \w peace|strong="H7965"\w* \w with|strong="H6213"\w* \w me|strong="H6213"\w*. Let \w him|strong="H6213"\w* \w make|strong="H6213"\w* \w peace|strong="H7965"\w* \w with|strong="H6213"\w* \w me|strong="H6213"\w*.” +\p +\v 6 \w In|strong="H3478"\w* days \w to|strong="H3478"\w* \w come|strong="H3478"\w*, \w Jacob|strong="H3290"\w* \w will|strong="H3478"\w* \w take|strong="H8327"\w* \w root|strong="H8327"\w*. \w Israel|strong="H3478"\w* \w will|strong="H3478"\w* \w blossom|strong="H6524"\w* \w and|strong="H3478"\w* \w bud|strong="H6524"\w*. \w They|strong="H6440"\w* \w will|strong="H3478"\w* \w fill|strong="H4390"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w world|strong="H8398"\w* \w with|strong="H4390"\w* \w fruit|strong="H8570"\w*. +\v 7 Has \w he|strong="H5221"\w* \w struck|strong="H5221"\w* \w them|strong="H5221"\w* \w as|strong="H5221"\w* \w he|strong="H5221"\w* \w struck|strong="H5221"\w* those \w who|strong="H5221"\w* \w struck|strong="H5221"\w* \w them|strong="H5221"\w*? Or \w are|strong="H4347"\w* \w they|strong="H5221"\w* \w killed|strong="H2026"\w* \w like|strong="H2026"\w* those \w who|strong="H5221"\w* \w killed|strong="H2026"\w* \w them|strong="H5221"\w* were \w killed|strong="H2026"\w*? +\v 8 \w In|strong="H3117"\w* \w measure|strong="H5432"\w*, \w when|strong="H3117"\w* \w you|strong="H7971"\w* \w send|strong="H7971"\w* \w them|strong="H7971"\w* \w away|strong="H7971"\w*, \w you|strong="H7971"\w* \w contend|strong="H7378"\w* \w with|strong="H3117"\w* \w them|strong="H7971"\w*. \w He|strong="H3117"\w* \w has|strong="H3117"\w* removed \w them|strong="H7971"\w* \w with|strong="H3117"\w* \w his|strong="H7971"\w* \w rough|strong="H7186"\w* \w blast|strong="H7307"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w east|strong="H6921"\w* \w wind|strong="H7307"\w*. +\v 9 \w Therefore|strong="H3651"\w* \w by|strong="H6965"\w* \w this|strong="H2088"\w* \w the|strong="H3605"\w* \w iniquity|strong="H5771"\w* \w of|strong="H4196"\w* \w Jacob|strong="H3290"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w forgiven|strong="H3722"\w*, \w and|strong="H6965"\w* \w this|strong="H2088"\w* \w is|strong="H2088"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fruit|strong="H6529"\w* \w of|strong="H4196"\w* \w taking|strong="H7760"\w* \w away|strong="H5493"\w* \w his|strong="H3605"\w* \w sin|strong="H2403"\w*: \w that|strong="H3605"\w* \w he|strong="H3651"\w* \w makes|strong="H7760"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* stones \w of|strong="H4196"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w* \w as|strong="H3651"\w* \w chalk|strong="H1615"\w* stones \w that|strong="H3605"\w* \w are|strong="H2403"\w* beaten \w in|strong="H5493"\w* \w pieces|strong="H5310"\w*, \w so|strong="H3651"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* Asherah poles \w and|strong="H6965"\w* \w the|strong="H3605"\w* \w incense|strong="H2553"\w* \w altars|strong="H4196"\w* \w shall|strong="H3808"\w* \w rise|strong="H6965"\w* \w no|strong="H3808"\w* \w more|strong="H3651"\w*. +\v 10 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w fortified|strong="H1219"\w* \w city|strong="H5892"\w* \w is|strong="H5892"\w* solitary, \w a|strong="H3068"\w* \w habitation|strong="H5116"\w* \w deserted|strong="H5800"\w* \w and|strong="H7971"\w* \w forsaken|strong="H5800"\w*, \w like|strong="H4057"\w* \w the|strong="H3588"\w* \w wilderness|strong="H4057"\w*. \w The|strong="H3588"\w* \w calf|strong="H5695"\w* \w will|strong="H5892"\w* \w feed|strong="H7462"\w* \w there|strong="H8033"\w*, \w and|strong="H7971"\w* \w there|strong="H8033"\w* \w he|strong="H3588"\w* \w will|strong="H5892"\w* \w lie|strong="H7257"\w* \w down|strong="H7257"\w*, \w and|strong="H7971"\w* \w consume|strong="H3615"\w* \w its|strong="H3588"\w* \w branches|strong="H5585"\w*. +\v 11 \w When|strong="H3588"\w* \w its|strong="H5921"\w* \w boughs|strong="H7105"\w* \w are|strong="H5971"\w* \w withered|strong="H3001"\w*, \w they|strong="H3588"\w* \w will|strong="H5971"\w* \w be|strong="H3808"\w* \w broken|strong="H7665"\w* \w off|strong="H5921"\w*. \w The|strong="H5921"\w* women \w will|strong="H5971"\w* \w come|strong="H5971"\w* \w and|strong="H5971"\w* \w set|strong="H6213"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* fire, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H5971"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w of|strong="H5971"\w* \w no|strong="H3808"\w* understanding. \w Therefore|strong="H3651"\w* \w he|strong="H1931"\w* \w who|strong="H1931"\w* \w made|strong="H6213"\w* \w them|strong="H5921"\w* \w will|strong="H5971"\w* \w not|strong="H3808"\w* \w have|strong="H7355"\w* \w compassion|strong="H7355"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, \w and|strong="H5971"\w* \w he|strong="H1931"\w* \w who|strong="H1931"\w* \w formed|strong="H3335"\w* \w them|strong="H5921"\w* \w will|strong="H5971"\w* \w show|strong="H6213"\w* \w them|strong="H5921"\w* \w no|strong="H3808"\w* \w favor|strong="H2603"\w*. +\p +\v 12 \w It|strong="H1931"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w* \w in|strong="H3478"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* thresh \w from|strong="H3478"\w* \w the|strong="H3068"\w* \w flowing|strong="H5158"\w* \w stream|strong="H5158"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w Euphrates|strong="H5104"\w* \w to|strong="H5704"\w* \w the|strong="H3068"\w* \w brook|strong="H5158"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*; \w and|strong="H1121"\w* \w you|strong="H3117"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w gathered|strong="H3950"\w* \w one|strong="H1931"\w* \w by|strong="H3117"\w* \w one|strong="H1931"\w*, \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\p +\v 13 \w It|strong="H1931"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w* \w in|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w trumpet|strong="H7782"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w blown|strong="H8628"\w*; \w and|strong="H3068"\w* \w those|strong="H1931"\w* \w who|strong="H1931"\w* \w were|strong="H1961"\w* ready \w to|strong="H3068"\w* perish \w in|strong="H3068"\w* \w the|strong="H3068"\w* land \w of|strong="H3068"\w* Assyria, \w and|strong="H3068"\w* \w those|strong="H1931"\w* \w who|strong="H1931"\w* \w were|strong="H1961"\w* \w outcasts|strong="H5080"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w shall|strong="H3068"\w* \w come|strong="H1961"\w*; \w and|strong="H3068"\w* \w they|strong="H3117"\w* \w will|strong="H3068"\w* \w worship|strong="H7812"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w holy|strong="H6944"\w* \w mountain|strong="H2022"\w* \w at|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*. +\c 28 +\p +\v 1 \w Woe|strong="H1945"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w crown|strong="H5850"\w* \w of|strong="H7218"\w* \w pride|strong="H1348"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w drunkards|strong="H7910"\w* \w of|strong="H7218"\w* Ephraim, \w and|strong="H7218"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w fading|strong="H5034"\w* \w flower|strong="H6731"\w* \w of|strong="H7218"\w* \w his|strong="H5921"\w* \w glorious|strong="H8597"\w* \w beauty|strong="H8597"\w*, \w which|strong="H3196"\w* \w is|strong="H7218"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w fertile|strong="H8081"\w* \w valley|strong="H1516"\w* \w of|strong="H7218"\w* \w those|strong="H1945"\w* \w who|strong="H1945"\w* are \w overcome|strong="H1986"\w* \w with|strong="H5921"\w* \w wine|strong="H3196"\w*! +\v 2 \w Behold|strong="H2009"\w*, \w the|strong="H3027"\w* Lord \w has|strong="H3027"\w* \w one|strong="H3027"\w* \w who|strong="H2389"\w* \w is|strong="H3027"\w* \w mighty|strong="H2389"\w* \w and|strong="H3027"\w* \w strong|strong="H2389"\w*. Like \w a|strong="H3068"\w* \w storm|strong="H2230"\w* \w of|strong="H3027"\w* \w hail|strong="H1259"\w*, \w a|strong="H3068"\w* \w destroying|strong="H6986"\w* \w storm|strong="H2230"\w*, \w and|strong="H3027"\w* like \w a|strong="H3068"\w* \w storm|strong="H2230"\w* \w of|strong="H3027"\w* \w mighty|strong="H2389"\w* \w waters|strong="H4325"\w* \w overflowing|strong="H7857"\w*, \w he|strong="H3027"\w* \w will|strong="H3027"\w* \w cast|strong="H4325"\w* \w them|strong="H3027"\w* \w down|strong="H3240"\w* \w to|strong="H3027"\w* \w the|strong="H3027"\w* earth \w with|strong="H3027"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w*. +\v 3 \w The|strong="H7429"\w* \w crown|strong="H5850"\w* \w of|strong="H5850"\w* \w pride|strong="H1348"\w* \w of|strong="H5850"\w* \w the|strong="H7429"\w* \w drunkards|strong="H7910"\w* \w of|strong="H5850"\w* Ephraim \w will|strong="H7272"\w* be \w trodden|strong="H7429"\w* \w under|strong="H7429"\w* \w foot|strong="H7272"\w*. +\v 4 \w The|strong="H5921"\w* \w fading|strong="H5034"\w* \w flower|strong="H6733"\w* \w of|strong="H7218"\w* \w his|strong="H5921"\w* \w glorious|strong="H8597"\w* \w beauty|strong="H8597"\w*, which \w is|strong="H1961"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w fertile|strong="H8081"\w* \w valley|strong="H1516"\w*, \w shall|strong="H7218"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H5921"\w* first-ripe fig \w before|strong="H2962"\w* \w the|strong="H5921"\w* \w summer|strong="H7019"\w*, which someone picks \w and|strong="H7218"\w* eats \w as|strong="H1961"\w* \w soon|strong="H5750"\w* \w as|strong="H1961"\w* \w he|strong="H5921"\w* \w sees|strong="H7200"\w* \w it|strong="H5921"\w*. +\v 5 \w In|strong="H3068"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w will|strong="H3068"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w crown|strong="H5850"\w* \w of|strong="H3068"\w* \w glory|strong="H8597"\w* \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w diadem|strong="H6843"\w* \w of|strong="H3068"\w* \w beauty|strong="H8597"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w residue|strong="H7605"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*, +\v 6 \w and|strong="H7725"\w* \w a|strong="H3068"\w* \w spirit|strong="H7307"\w* \w of|strong="H3427"\w* \w justice|strong="H4941"\w* \w to|strong="H7725"\w* \w him|strong="H5921"\w* \w who|strong="H3427"\w* \w sits|strong="H3427"\w* \w in|strong="H3427"\w* \w judgment|strong="H4941"\w*, \w and|strong="H7725"\w* \w strength|strong="H1369"\w* \w to|strong="H7725"\w* \w those|strong="H5921"\w* \w who|strong="H3427"\w* \w turn|strong="H7725"\w* \w back|strong="H7725"\w* \w the|strong="H5921"\w* \w battle|strong="H4421"\w* \w at|strong="H3427"\w* \w the|strong="H5921"\w* \w gate|strong="H8179"\w*. +\p +\v 7 \w They|strong="H1571"\w* \w also|strong="H1571"\w* \w reel|strong="H7686"\w* \w with|strong="H3548"\w* \w wine|strong="H3196"\w*, \w and|strong="H3548"\w* \w stagger|strong="H8582"\w* \w with|strong="H3548"\w* \w strong|strong="H7941"\w* \w drink|strong="H7941"\w*. \w The|strong="H4480"\w* \w priest|strong="H3548"\w* \w and|strong="H3548"\w* \w the|strong="H4480"\w* \w prophet|strong="H5030"\w* \w reel|strong="H7686"\w* \w with|strong="H3548"\w* \w strong|strong="H7941"\w* \w drink|strong="H7941"\w*. \w They|strong="H1571"\w* \w are|strong="H5030"\w* \w swallowed|strong="H1104"\w* \w up|strong="H1104"\w* \w by|strong="H1571"\w* \w wine|strong="H3196"\w*. \w They|strong="H1571"\w* \w stagger|strong="H8582"\w* \w with|strong="H3548"\w* \w strong|strong="H7941"\w* \w drink|strong="H7941"\w*. \w They|strong="H1571"\w* \w err|strong="H8582"\w* \w in|strong="H1571"\w* \w vision|strong="H7203"\w*. \w They|strong="H1571"\w* \w stumble|strong="H6328"\w* \w in|strong="H1571"\w* \w judgment|strong="H6417"\w*. +\v 8 \w For|strong="H3588"\w* \w all|strong="H3605"\w* \w tables|strong="H7979"\w* \w are|strong="H7979"\w* \w completely|strong="H3605"\w* \w full|strong="H4390"\w* \w of|strong="H4390"\w* \w filthy|strong="H6675"\w* \w vomit|strong="H6892"\w* \w and|strong="H4725"\w* \w filthiness|strong="H6675"\w*. +\p +\v 9 \w Whom|strong="H4310"\w* \w will|strong="H4310"\w* \w he|strong="H4310"\w* \w teach|strong="H3384"\w* \w knowledge|strong="H1844"\w*? \w To|strong="H7699"\w* \w whom|strong="H4310"\w* \w will|strong="H4310"\w* \w he|strong="H4310"\w* explain \w the|strong="H3384"\w* \w message|strong="H8052"\w*? Those \w who|strong="H4310"\w* \w are|strong="H4310"\w* \w weaned|strong="H1580"\w* \w from|strong="H1580"\w* \w the|strong="H3384"\w* \w milk|strong="H2461"\w*, \w and|strong="H2461"\w* \w drawn|strong="H6267"\w* \w from|strong="H1580"\w* \w the|strong="H3384"\w* \w breasts|strong="H7699"\w*? +\v 10 \w For|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H8033"\w* \w precept|strong="H6673"\w* \w on|strong="H6957"\w* \w precept|strong="H6673"\w*, \w precept|strong="H6673"\w* \w on|strong="H6957"\w* \w precept|strong="H6673"\w*; \w line|strong="H6957"\w* \w on|strong="H6957"\w* \w line|strong="H6957"\w*, \w line|strong="H6957"\w* \w on|strong="H6957"\w* \w line|strong="H6957"\w*; \w here|strong="H8033"\w* \w a|strong="H3068"\w* \w little|strong="H2191"\w*, \w there|strong="H8033"\w* \w a|strong="H3068"\w* \w little|strong="H2191"\w*. +\p +\v 11 \w But|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H5971"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w this|strong="H2088"\w* \w nation|strong="H5971"\w* \w with|strong="H1696"\w* \w stammering|strong="H3934"\w* \w lips|strong="H8193"\w* \w and|strong="H5971"\w* \w in|strong="H1696"\w* \w another|strong="H2088"\w* \w language|strong="H3956"\w*, +\v 12 \w to|strong="H8085"\w* whom \w he|strong="H3808"\w* \w said|strong="H8085"\w*, “\w This|strong="H2063"\w* \w is|strong="H8085"\w* \w the|strong="H8085"\w* \w resting|strong="H4496"\w* \w place|strong="H4496"\w*. \w Give|strong="H5117"\w* \w rest|strong="H5117"\w* \w to|strong="H8085"\w* \w the|strong="H8085"\w* \w weary|strong="H5889"\w*,” \w and|strong="H8085"\w* “\w This|strong="H2063"\w* \w is|strong="H8085"\w* \w the|strong="H8085"\w* \w refreshing|strong="H4774"\w*;” \w yet|strong="H3808"\w* \w they|strong="H3808"\w* would \w not|strong="H3808"\w* \w hear|strong="H8085"\w*. +\v 13 \w Therefore|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w to|strong="H3212"\w* \w them|strong="H1992"\w* \w precept|strong="H6673"\w* \w on|strong="H3068"\w* \w precept|strong="H6673"\w*, \w precept|strong="H6673"\w* \w on|strong="H3068"\w* \w precept|strong="H6673"\w*; \w line|strong="H6957"\w* \w on|strong="H3068"\w* \w line|strong="H6957"\w*, \w line|strong="H6957"\w* \w on|strong="H3068"\w* \w line|strong="H6957"\w*; \w here|strong="H8033"\w* \w a|strong="H3068"\w* \w little|strong="H2191"\w*, \w there|strong="H8033"\w* \w a|strong="H3068"\w* \w little|strong="H2191"\w*; \w that|strong="H3068"\w* \w they|strong="H1992"\w* \w may|strong="H1961"\w* \w go|strong="H3212"\w*, \w fall|strong="H3782"\w* backward, \w be|strong="H1961"\w* \w broken|strong="H7665"\w*, \w be|strong="H1961"\w* \w snared|strong="H3369"\w*, \w and|strong="H3068"\w* \w be|strong="H1961"\w* \w taken|strong="H3920"\w*. +\p +\v 14 \w Therefore|strong="H3651"\w* \w hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w you|strong="H3651"\w* scoffers, \w that|strong="H5971"\w* \w rule|strong="H4910"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w in|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*: +\v 15 “\w Because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* said, ‘\w We|strong="H3588"\w* \w have|strong="H3588"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H5973"\w* \w death|strong="H4194"\w*, \w and|strong="H6213"\w* \w we|strong="H3068"\w* \w are|strong="H6213"\w* \w in|strong="H6213"\w* \w agreement|strong="H1285"\w* \w with|strong="H5973"\w* \w Sheol|strong="H7585"\w*.\f + \fr 28:15 \ft Sheol is the place of the dead.\f* \w When|strong="H3588"\w* \w the|strong="H3588"\w* \w overflowing|strong="H7857"\w* scourge \w passes|strong="H5674"\w* \w through|strong="H5674"\w*, \w it|strong="H7760"\w* won’t \w come|strong="H5674"\w* \w to|strong="H6213"\w* \w us|strong="H6213"\w*; \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3588"\w* \w made|strong="H6213"\w* \w lies|strong="H3577"\w* \w our|strong="H3588"\w* \w refuge|strong="H4268"\w*, \w and|strong="H6213"\w* \w we|strong="H3068"\w* \w have|strong="H3588"\w* \w hidden|strong="H5641"\w* ourselves \w under|strong="H6213"\w* \w falsehood|strong="H8267"\w*.’” +\v 16 \w Therefore|strong="H3651"\w* \w the|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w lay|strong="H3245"\w* \w in|strong="H3808"\w* \w Zion|strong="H6726"\w* \w for|strong="H3651"\w* \w a|strong="H3068"\w* \w foundation|strong="H3245"\w* \w a|strong="H3068"\w* stone, \w a|strong="H3068"\w* tried stone, \w a|strong="H3068"\w* \w precious|strong="H3368"\w* \w cornerstone|strong="H6438"\w* \w of|strong="H3069"\w* \w a|strong="H3068"\w* \w sure|strong="H3245"\w* \w foundation|strong="H3245"\w*. \w He|strong="H3651"\w* \w who|strong="H3808"\w* believes \w shall|strong="H3808"\w* \w not|strong="H3808"\w* act hastily. +\v 17 \w I|strong="H7760"\w* \w will|strong="H4325"\w* \w make|strong="H7760"\w* \w justice|strong="H4941"\w* \w the|strong="H7760"\w* \w measuring|strong="H6957"\w* \w line|strong="H6957"\w*, \w and|strong="H4941"\w* \w righteousness|strong="H6666"\w* \w the|strong="H7760"\w* plumb \w line|strong="H6957"\w*. \w The|strong="H7760"\w* \w hail|strong="H1259"\w* \w will|strong="H4325"\w* \w sweep|strong="H3261"\w* \w away|strong="H7857"\w* \w the|strong="H7760"\w* \w refuge|strong="H4268"\w* \w of|strong="H4325"\w* \w lies|strong="H3577"\w*, \w and|strong="H4941"\w* \w the|strong="H7760"\w* \w waters|strong="H4325"\w* \w will|strong="H4325"\w* \w overflow|strong="H7857"\w* \w the|strong="H7760"\w* \w hiding|strong="H5643"\w* \w place|strong="H7760"\w*. +\v 18 \w Your|strong="H3588"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w death|strong="H4194"\w* \w shall|strong="H3808"\w* \w be|strong="H1961"\w* annulled, \w and|strong="H6965"\w* \w your|strong="H3588"\w* \w agreement|strong="H1285"\w* \w with|strong="H1285"\w* \w Sheol|strong="H7585"\w*\f + \fr 28:18 \ft Sheol is the place of the dead.\f* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w stand|strong="H6965"\w*. \w When|strong="H3588"\w* \w the|strong="H3588"\w* \w overflowing|strong="H7857"\w* \w scourge|strong="H7752"\w* \w passes|strong="H5674"\w* \w through|strong="H5674"\w*, \w then|strong="H1961"\w* \w you|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w trampled|strong="H4823"\w* \w down|strong="H4823"\w* \w by|strong="H5674"\w* \w it|strong="H3588"\w*. +\v 19 \w As|strong="H3117"\w* \w often|strong="H1767"\w* \w as|strong="H3117"\w* \w it|strong="H3588"\w* \w passes|strong="H5674"\w* \w through|strong="H5674"\w*, \w it|strong="H3588"\w* \w will|strong="H1961"\w* \w seize|strong="H3947"\w* \w you|strong="H3588"\w*; \w for|strong="H3588"\w* \w morning|strong="H1242"\w* \w by|strong="H5674"\w* \w morning|strong="H1242"\w* \w it|strong="H3588"\w* \w will|strong="H1961"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w*, \w by|strong="H5674"\w* \w day|strong="H3117"\w* \w and|strong="H3117"\w* \w by|strong="H5674"\w* \w night|strong="H3915"\w*; \w and|strong="H3117"\w* \w it|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w nothing|strong="H1767"\w* \w but|strong="H3588"\w* \w terror|strong="H2113"\w* \w to|strong="H1961"\w* understand \w the|strong="H3588"\w* \w message|strong="H8052"\w*.” +\v 20 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w bed|strong="H4702"\w* \w is|strong="H4702"\w* too \w short|strong="H7114"\w* \w to|strong="H3588"\w* \w stretch|strong="H8311"\w* out \w on|strong="H6887"\w*, \w and|strong="H4541"\w* \w the|strong="H3588"\w* \w blanket|strong="H4541"\w* \w is|strong="H4702"\w* too narrow \w to|strong="H3588"\w* \w wrap|strong="H3664"\w* oneself \w in|strong="H3588"\w*. +\v 21 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w as|strong="H6213"\w* \w on|strong="H3068"\w* \w Mount|strong="H2022"\w* \w Perazim|strong="H6559"\w*. \w He|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* angry \w as|strong="H6213"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w valley|strong="H6010"\w* \w of|strong="H3068"\w* \w Gibeon|strong="H1391"\w*; \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w may|strong="H3068"\w* \w do|strong="H6213"\w* \w his|strong="H3068"\w* \w work|strong="H4639"\w*, \w his|strong="H3068"\w* \w unusual|strong="H2114"\w* \w work|strong="H4639"\w*, \w and|strong="H6965"\w* \w bring|strong="H6213"\w* \w to|strong="H3068"\w* \w pass|strong="H6213"\w* \w his|strong="H3068"\w* \w act|strong="H6213"\w*, \w his|strong="H3068"\w* \w extraordinary|strong="H5237"\w* \w act|strong="H6213"\w*. +\v 22 \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* don’t \w be|strong="H3069"\w* scoffers, \w lest|strong="H6435"\w* \w your|strong="H3605"\w* \w bonds|strong="H4147"\w* \w be|strong="H3069"\w* \w made|strong="H2388"\w* \w strong|strong="H2388"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3605"\w* \w heard|strong="H8085"\w* \w a|strong="H3068"\w* decree \w of|strong="H6635"\w* \w destruction|strong="H3617"\w* \w from|strong="H5921"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H6635"\w* \w Armies|strong="H6635"\w*, \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* earth. +\p +\v 23 \w Give|strong="H7181"\w* \w ear|strong="H8085"\w*, \w and|strong="H6963"\w* \w hear|strong="H8085"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*! \w Listen|strong="H8085"\w*, \w and|strong="H6963"\w* \w hear|strong="H8085"\w* \w my|strong="H8085"\w* speech! +\v 24 Does \w he|strong="H3117"\w* \w who|strong="H3605"\w* plows \w to|strong="H3117"\w* \w sow|strong="H2232"\w* \w plow|strong="H2790"\w* \w continually|strong="H3605"\w*? Does \w he|strong="H3117"\w* \w keep|strong="H2790"\w* turning \w the|strong="H3605"\w* soil \w and|strong="H3117"\w* breaking \w the|strong="H3605"\w* \w clods|strong="H7702"\w*? +\v 25 When \w he|strong="H3808"\w* has leveled \w its|strong="H7760"\w* \w surface|strong="H6440"\w*, doesn’t \w he|strong="H3808"\w* \w plant|strong="H7760"\w* \w the|strong="H6440"\w* \w dill|strong="H7100"\w*, \w and|strong="H6440"\w* \w scatter|strong="H6327"\w* \w the|strong="H6440"\w* cumin seed, \w and|strong="H6440"\w* \w put|strong="H7760"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w wheat|strong="H2406"\w* \w in|strong="H6440"\w* \w rows|strong="H7795"\w*, \w the|strong="H6440"\w* \w barley|strong="H8184"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w appointed|strong="H7760"\w* \w place|strong="H7760"\w*, \w and|strong="H6440"\w* \w the|strong="H6440"\w* \w spelt|strong="H3698"\w* \w in|strong="H6440"\w* \w its|strong="H7760"\w* \w place|strong="H7760"\w*? +\v 26 \w For|strong="H4941"\w* \w his|strong="H3256"\w* God \w instructs|strong="H3256"\w* \w him|strong="H3384"\w* \w in|strong="H4941"\w* \w right|strong="H4941"\w* \w judgment|strong="H4941"\w* \w and|strong="H4941"\w* \w teaches|strong="H3384"\w* \w him|strong="H3384"\w*. +\v 27 \w For|strong="H3588"\w* \w the|strong="H5921"\w* \w dill|strong="H7100"\w* isn’t \w threshed|strong="H1758"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w sharp|strong="H2742"\w* \w instrument|strong="H2742"\w*, \w neither|strong="H3808"\w* \w is|strong="H7626"\w* \w a|strong="H3068"\w* \w cart|strong="H5699"\w* wheel \w turned|strong="H5437"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* cumin; \w but|strong="H3588"\w* \w the|strong="H5921"\w* \w dill|strong="H7100"\w* \w is|strong="H7626"\w* \w beaten|strong="H2251"\w* \w out|strong="H5921"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* stick, \w and|strong="H5437"\w* \w the|strong="H5921"\w* cumin \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w rod|strong="H7626"\w*. +\v 28 \w Bread|strong="H3899"\w* flour \w must|strong="H3808"\w* \w be|strong="H3808"\w* \w ground|strong="H1854"\w*; \w so|strong="H3808"\w* \w he|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w always|strong="H5331"\w* \w be|strong="H3808"\w* \w threshing|strong="H1758"\w* \w it|strong="H3588"\w*. \w Although|strong="H3588"\w* \w he|strong="H3588"\w* drives \w the|strong="H3588"\w* \w wheel|strong="H1536"\w* \w of|strong="H3899"\w* \w his|strong="H3588"\w* \w threshing|strong="H1758"\w* \w cart|strong="H5699"\w* over \w it|strong="H3588"\w*, \w his|strong="H3588"\w* \w horses|strong="H6571"\w* don’t grind \w it|strong="H3588"\w*. +\v 29 \w This|strong="H2063"\w* \w also|strong="H1571"\w* \w comes|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w wonderful|strong="H6381"\w* \w in|strong="H3068"\w* \w counsel|strong="H6098"\w*, \w and|strong="H3068"\w* \w excellent|strong="H1431"\w* \w in|strong="H3068"\w* \w wisdom|strong="H8454"\w*. +\c 29 +\p +\v 1 \w Woe|strong="H1945"\w* \w to|strong="H5921"\w* Ariel! Ariel, \w the|strong="H5921"\w* \w city|strong="H7151"\w* \w where|strong="H5921"\w* \w David|strong="H1732"\w* \w encamped|strong="H2583"\w*! \w Add|strong="H5595"\w* \w year|strong="H8141"\w* \w to|strong="H5921"\w* \w year|strong="H8141"\w*; let \w the|strong="H5921"\w* \w feasts|strong="H2282"\w* come \w around|strong="H5921"\w*; +\v 2 \w then|strong="H1961"\w* \w I|strong="H1961"\w* \w will|strong="H1961"\w* \w distress|strong="H6693"\w* Ariel, \w and|strong="H1961"\w* \w there|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w mourning|strong="H8386"\w* \w and|strong="H1961"\w* lamentation. She shall \w be|strong="H1961"\w* \w to|strong="H1961"\w* \w me|strong="H1961"\w* \w as|strong="H1961"\w* \w an|strong="H1961"\w* altar hearth.\f + \fr 29:2 \ft or, Ariel\f* +\v 3 \w I|strong="H5921"\w* will \w encamp|strong="H2583"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w* \w all|strong="H5921"\w* \w around|strong="H5921"\w* \w you|strong="H5921"\w*, \w and|strong="H6965"\w* will \w lay|strong="H6696"\w* \w siege|strong="H6696"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w* \w with|strong="H5921"\w* \w posted|strong="H6965"\w* troops. \w I|strong="H5921"\w* will \w raise|strong="H6965"\w* \w siege|strong="H6696"\w* \w works|strong="H5921"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w*. +\v 4 \w You|strong="H1696"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w brought|strong="H1961"\w* \w down|strong="H7817"\w*, \w and|strong="H6963"\w* \w will|strong="H1961"\w* \w speak|strong="H1696"\w* \w out|strong="H1696"\w* \w of|strong="H6963"\w* \w the|strong="H1961"\w* \w ground|strong="H6083"\w*. \w Your|strong="H1961"\w* \w speech|strong="H1696"\w* \w will|strong="H1961"\w* mumble \w out|strong="H1696"\w* \w of|strong="H6963"\w* \w the|strong="H1961"\w* \w dust|strong="H6083"\w*. \w Your|strong="H1961"\w* \w voice|strong="H6963"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w of|strong="H6963"\w* \w one|strong="H1961"\w* who \w has|strong="H1961"\w* \w a|strong="H3068"\w* familiar spirit, \w out|strong="H1696"\w* \w of|strong="H6963"\w* \w the|strong="H1961"\w* \w ground|strong="H6083"\w*, \w and|strong="H6963"\w* \w your|strong="H1961"\w* \w speech|strong="H1696"\w* \w will|strong="H1961"\w* \w whisper|strong="H6850"\w* \w out|strong="H1696"\w* \w of|strong="H6963"\w* \w the|strong="H1961"\w* \w dust|strong="H6083"\w*. +\p +\v 5 \w But|strong="H1961"\w* \w the|strong="H5674"\w* \w multitude|strong="H1995"\w* \w of|strong="H1995"\w* \w your|strong="H1961"\w* foes \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w fine|strong="H1851"\w* \w dust|strong="H1851"\w*, \w and|strong="H5674"\w* \w the|strong="H5674"\w* \w multitude|strong="H1995"\w* \w of|strong="H1995"\w* \w the|strong="H5674"\w* \w ruthless|strong="H6184"\w* \w ones|strong="H6184"\w* \w like|strong="H1961"\w* \w chaff|strong="H4671"\w* \w that|strong="H1961"\w* \w blows|strong="H5674"\w* \w away|strong="H5674"\w*. Yes, \w it|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w in|strong="H1961"\w* \w an|strong="H1961"\w* \w instant|strong="H6621"\w*, \w suddenly|strong="H6597"\w*. +\v 6 \w She|strong="H5973"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w visited|strong="H6485"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w with|strong="H5973"\w* \w thunder|strong="H6963"\w*, \w with|strong="H5973"\w* \w earthquake|strong="H7494"\w*, \w with|strong="H5973"\w* \w great|strong="H1419"\w* \w noise|strong="H6963"\w*, \w with|strong="H5973"\w* \w whirlwind|strong="H5591"\w* \w and|strong="H3068"\w* \w storm|strong="H5591"\w*, \w and|strong="H3068"\w* \w with|strong="H5973"\w* \w the|strong="H3068"\w* \w flame|strong="H3851"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* devouring fire. +\v 7 \w The|strong="H3605"\w* \w multitude|strong="H1995"\w* \w of|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w that|strong="H3605"\w* \w fight|strong="H6633"\w* \w against|strong="H5921"\w* Ariel, \w even|strong="H5921"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w fight|strong="H6633"\w* \w against|strong="H5921"\w* \w her|strong="H3605"\w* \w and|strong="H3915"\w* \w her|strong="H3605"\w* \w stronghold|strong="H4685"\w*, \w and|strong="H3915"\w* \w who|strong="H3605"\w* \w distress|strong="H6693"\w* \w her|strong="H3605"\w*, \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w dream|strong="H2472"\w*, \w a|strong="H3068"\w* \w vision|strong="H2377"\w* \w of|strong="H5921"\w* \w the|strong="H3605"\w* \w night|strong="H3915"\w*. +\v 8 \w It|strong="H5921"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w when|strong="H1961"\w* \w a|strong="H3068"\w* \w hungry|strong="H7457"\w* \w man|strong="H5315"\w* \w dreams|strong="H2492"\w*, \w and|strong="H1471"\w* \w behold|strong="H2009"\w*, \w he|strong="H3651"\w* eats; \w but|strong="H1961"\w* \w he|strong="H3651"\w* awakes, \w and|strong="H1471"\w* \w his|strong="H3605"\w* \w hunger|strong="H5315"\w* isn’t \w satisfied|strong="H7386"\w*; \w or|strong="H1471"\w* \w like|strong="H1961"\w* \w when|strong="H1961"\w* \w a|strong="H3068"\w* \w thirsty|strong="H6771"\w* \w man|strong="H5315"\w* \w dreams|strong="H2492"\w*, \w and|strong="H1471"\w* \w behold|strong="H2009"\w*, \w he|strong="H3651"\w* \w drinks|strong="H8354"\w*; \w but|strong="H1961"\w* \w he|strong="H3651"\w* awakes, \w and|strong="H1471"\w* \w behold|strong="H2009"\w*, \w he|strong="H3651"\w* \w is|strong="H5315"\w* \w faint|strong="H5889"\w*, \w and|strong="H1471"\w* \w he|strong="H3651"\w* \w is|strong="H5315"\w* \w still|strong="H1471"\w* \w thirsty|strong="H6771"\w*. \w The|strong="H3605"\w* \w multitude|strong="H1995"\w* \w of|strong="H2022"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w that|strong="H3605"\w* \w fight|strong="H6633"\w* \w against|strong="H5921"\w* \w Mount|strong="H2022"\w* \w Zion|strong="H6726"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w that|strong="H3605"\w*. +\p +\v 9 Pause \w and|strong="H3196"\w* \w wonder|strong="H8539"\w*! \w Blind|strong="H8173"\w* yourselves \w and|strong="H3196"\w* \w be|strong="H3808"\w* \w blind|strong="H8173"\w*! \w They|strong="H3808"\w* \w are|strong="H3808"\w* \w drunken|strong="H7937"\w*, \w but|strong="H3808"\w* \w not|strong="H3808"\w* \w with|strong="H7937"\w* \w wine|strong="H3196"\w*; \w they|strong="H3808"\w* \w stagger|strong="H5128"\w*, \w but|strong="H3808"\w* \w not|strong="H3808"\w* \w with|strong="H7937"\w* \w strong|strong="H7941"\w* \w drink|strong="H7941"\w*. +\v 10 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w poured|strong="H5258"\w* \w out|strong="H5258"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w* \w a|strong="H3068"\w* \w spirit|strong="H7307"\w* \w of|strong="H3068"\w* \w deep|strong="H8639"\w* \w sleep|strong="H8639"\w*, \w and|strong="H3068"\w* \w has|strong="H3068"\w* \w closed|strong="H3680"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w*, \w the|strong="H5921"\w* \w prophets|strong="H5030"\w*; \w and|strong="H3068"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w covered|strong="H3680"\w* \w your|strong="H3068"\w* \w heads|strong="H7218"\w*, \w the|strong="H5921"\w* \w seers|strong="H2374"\w*. +\v 11 \w All|strong="H3605"\w* \w vision|strong="H2380"\w* \w has|strong="H1961"\w* \w become|strong="H1961"\w* \w to|strong="H3201"\w* \w you|strong="H3588"\w* \w like|strong="H1961"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w a|strong="H3068"\w* \w book|strong="H5612"\w* \w that|strong="H3588"\w* \w is|strong="H2088"\w* \w sealed|strong="H2856"\w*, \w which|strong="H1931"\w* \w men|strong="H3605"\w* \w deliver|strong="H5414"\w* \w to|strong="H3201"\w* \w one|strong="H2088"\w* \w who|strong="H3605"\w* \w is|strong="H2088"\w* educated, \w saying|strong="H1697"\w*, “\w Read|strong="H7121"\w* \w this|strong="H2088"\w*, \w please|strong="H4994"\w*;” \w and|strong="H1697"\w* \w he|strong="H1931"\w* \w says|strong="H1697"\w*, “\w I|strong="H3588"\w* \w can|strong="H3201"\w*’t, \w for|strong="H3588"\w* \w it|strong="H5414"\w* \w is|strong="H2088"\w* \w sealed|strong="H2856"\w*;” +\v 12 \w and|strong="H3045"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w is|strong="H2088"\w* \w delivered|strong="H5414"\w* \w to|strong="H5921"\w* \w one|strong="H2088"\w* \w who|strong="H2088"\w* \w is|strong="H2088"\w* \w not|strong="H3808"\w* educated, saying, “\w Read|strong="H7121"\w* \w this|strong="H2088"\w*, \w please|strong="H4994"\w*;” \w and|strong="H3045"\w* \w he|strong="H5414"\w* says, “\w I|strong="H5414"\w* \w can|strong="H3045"\w*’t \w read|strong="H7121"\w*.” +\p +\v 13 \w The|strong="H3588"\w* Lord \w said|strong="H6310"\w*, “\w Because|strong="H3588"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* draws \w near|strong="H5066"\w* \w with|strong="H5971"\w* \w their|strong="H3588"\w* \w mouth|strong="H6310"\w* \w and|strong="H5971"\w* \w honors|strong="H3513"\w* \w me|strong="H4480"\w* \w with|strong="H5971"\w* \w their|strong="H3588"\w* \w lips|strong="H8193"\w*, \w but|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H1961"\w* \w removed|strong="H7368"\w* \w their|strong="H3588"\w* \w heart|strong="H3820"\w* \w far|strong="H7368"\w* \w from|strong="H4480"\w* \w me|strong="H4480"\w*, \w and|strong="H5971"\w* \w their|strong="H3588"\w* \w fear|strong="H3373"\w* \w of|strong="H6310"\w* \w me|strong="H4480"\w* \w is|strong="H2088"\w* \w a|strong="H3068"\w* \w commandment|strong="H4687"\w* \w of|strong="H6310"\w* \w men|strong="H5971"\w* \w which|strong="H5971"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w taught|strong="H3925"\w*; +\v 14 \w therefore|strong="H3651"\w*, \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H5971"\w* \w proceed|strong="H3254"\w* \w to|strong="H5971"\w* \w do|strong="H3254"\w* \w a|strong="H3068"\w* \w marvelous|strong="H6381"\w* \w work|strong="H6381"\w* \w among|strong="H6381"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*, \w even|strong="H3651"\w* \w a|strong="H3068"\w* \w marvelous|strong="H6381"\w* \w work|strong="H6381"\w* \w and|strong="H5971"\w* \w a|strong="H3068"\w* \w wonder|strong="H6382"\w*; \w and|strong="H5971"\w* \w the|strong="H3651"\w* \w wisdom|strong="H2451"\w* \w of|strong="H5971"\w* \w their|strong="H3651"\w* \w wise|strong="H2450"\w* \w men|strong="H2450"\w* \w will|strong="H5971"\w* perish, \w and|strong="H5971"\w* \w the|strong="H3651"\w* understanding \w of|strong="H5971"\w* \w their|strong="H3651"\w* prudent \w men|strong="H2450"\w* \w will|strong="H5971"\w* \w be|strong="H3254"\w* \w hidden|strong="H5641"\w*.” +\p +\v 15 \w Woe|strong="H1945"\w* \w to|strong="H3068"\w* \w those|strong="H1945"\w* \w who|strong="H4310"\w* \w deeply|strong="H6009"\w* \w hide|strong="H5641"\w* \w their|strong="H3068"\w* \w counsel|strong="H6098"\w* \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w whose|strong="H4310"\w* \w deeds|strong="H4639"\w* \w are|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H7200"\w* \w dark|strong="H4285"\w*, \w and|strong="H3068"\w* \w who|strong="H4310"\w* say, “\w Who|strong="H4310"\w* \w sees|strong="H7200"\w* \w us|strong="H3045"\w*?” \w and|strong="H3068"\w* “\w Who|strong="H4310"\w* \w knows|strong="H3045"\w* \w us|strong="H3045"\w*?” +\v 16 \w You|strong="H3588"\w* turn \w things|strong="H4639"\w* upside \w down|strong="H2017"\w*! \w Should|strong="H3588"\w* \w the|strong="H3588"\w* \w potter|strong="H3335"\w* \w be|strong="H3808"\w* \w thought|strong="H2803"\w* \w to|strong="H6213"\w* \w be|strong="H3808"\w* \w like|strong="H2803"\w* \w clay|strong="H2563"\w*, \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w thing|strong="H3588"\w* \w made|strong="H6213"\w* \w should|strong="H3588"\w* say \w about|strong="H6213"\w* \w him|strong="H6213"\w* \w who|strong="H3588"\w* \w made|strong="H6213"\w* \w it|strong="H3588"\w*, “\w He|strong="H3588"\w* didn’t \w make|strong="H6213"\w* \w me|strong="H6213"\w*;” \w or|strong="H3808"\w* \w the|strong="H3588"\w* \w thing|strong="H3588"\w* \w formed|strong="H3335"\w* say \w of|strong="H4639"\w* \w him|strong="H6213"\w* \w who|strong="H3588"\w* \w formed|strong="H3335"\w* \w it|strong="H3588"\w*, “\w He|strong="H3588"\w* \w has|strong="H3588"\w* \w no|strong="H3808"\w* understanding”? +\p +\v 17 Isn’t \w it|strong="H7725"\w* \w yet|strong="H5750"\w* \w a|strong="H3068"\w* \w very|strong="H4213"\w* \w little|strong="H4592"\w* \w while|strong="H5750"\w*, \w and|strong="H7725"\w* \w Lebanon|strong="H3844"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w turned|strong="H7725"\w* \w into|strong="H7725"\w* \w a|strong="H3068"\w* \w fruitful|strong="H3759"\w* \w field|strong="H3759"\w*, \w and|strong="H7725"\w* \w the|strong="H7725"\w* \w fruitful|strong="H3759"\w* \w field|strong="H3759"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w regarded|strong="H2803"\w* \w as|strong="H2803"\w* \w a|strong="H3068"\w* \w forest|strong="H3293"\w*? +\v 18 \w In|strong="H8085"\w* \w that|strong="H7200"\w* \w day|strong="H3117"\w*, \w the|strong="H8085"\w* \w deaf|strong="H2795"\w* \w will|strong="H5869"\w* \w hear|strong="H8085"\w* \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w of|strong="H3117"\w* \w the|strong="H8085"\w* \w book|strong="H5612"\w*, \w and|strong="H3117"\w* \w the|strong="H8085"\w* \w eyes|strong="H5869"\w* \w of|strong="H3117"\w* \w the|strong="H8085"\w* \w blind|strong="H5787"\w* \w will|strong="H5869"\w* \w see|strong="H7200"\w* \w out|strong="H7200"\w* \w of|strong="H3117"\w* \w obscurity|strong="H2822"\w* \w and|strong="H3117"\w* \w out|strong="H7200"\w* \w of|strong="H3117"\w* \w darkness|strong="H2822"\w*. +\v 19 \w The|strong="H3068"\w* \w humble|strong="H6035"\w* \w also|strong="H3068"\w* \w will|strong="H3068"\w* \w increase|strong="H3254"\w* \w their|strong="H3068"\w* \w joy|strong="H8057"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3478"\w* \w the|strong="H3068"\w* \w poor|strong="H6035"\w* \w among|strong="H3478"\w* \w men|strong="H3478"\w* \w will|strong="H3068"\w* \w rejoice|strong="H1523"\w* \w in|strong="H3478"\w* \w the|strong="H3068"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\v 20 \w For|strong="H3588"\w* \w the|strong="H3605"\w* \w ruthless|strong="H6184"\w* \w is|strong="H3605"\w* \w brought|strong="H3615"\w* \w to|strong="H3588"\w* \w nothing|strong="H3605"\w*, \w and|strong="H3605"\w* \w the|strong="H3605"\w* scoffer ceases, \w and|strong="H3605"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H3772"\w* alert \w to|strong="H3588"\w* \w do|strong="H3605"\w* evil \w are|strong="H3772"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*— +\v 21 \w who|strong="H6662"\w* \w cause|strong="H1697"\w* \w a|strong="H3068"\w* \w person|strong="H3198"\w* \w to|strong="H1697"\w* \w be|strong="H1697"\w* \w indicted|strong="H2398"\w* \w by|strong="H2398"\w* \w a|strong="H3068"\w* \w word|strong="H1697"\w*, \w and|strong="H1697"\w* lay \w a|strong="H3068"\w* \w snare|strong="H6983"\w* \w for|strong="H1697"\w* \w one|strong="H6662"\w* \w who|strong="H6662"\w* \w reproves|strong="H3198"\w* \w in|strong="H1697"\w* \w the|strong="H1697"\w* \w gate|strong="H8179"\w*, \w and|strong="H1697"\w* \w who|strong="H6662"\w* \w deprive|strong="H5186"\w* \w the|strong="H1697"\w* \w innocent|strong="H6662"\w* \w of|strong="H1697"\w* justice \w with|strong="H1697"\w* false \w testimony|strong="H1697"\w*. +\p +\v 22 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H3068"\w* \w redeemed|strong="H6299"\w* Abraham, \w says|strong="H3541"\w* \w concerning|strong="H3068"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w*: “\w Jacob|strong="H3290"\w* \w shall|strong="H3068"\w* \w no|strong="H3808"\w* \w longer|strong="H3808"\w* \w be|strong="H3808"\w* ashamed, \w neither|strong="H3808"\w* \w shall|strong="H3068"\w* \w his|strong="H3068"\w* \w face|strong="H6440"\w* grow \w pale|strong="H2357"\w*. +\v 23 \w But|strong="H3588"\w* \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w sees|strong="H7200"\w* \w his|strong="H7200"\w* \w children|strong="H3206"\w*, \w the|strong="H7200"\w* \w work|strong="H4639"\w* \w of|strong="H3027"\w* \w my|strong="H7200"\w* \w hands|strong="H3027"\w*, \w in|strong="H3478"\w* \w the|strong="H7200"\w* \w middle|strong="H7130"\w* \w of|strong="H3027"\w* \w him|strong="H3027"\w*, \w they|strong="H3588"\w* \w will|strong="H3478"\w* \w sanctify|strong="H6942"\w* \w my|strong="H7200"\w* \w name|strong="H8034"\w*. \w Yes|strong="H3588"\w*, \w they|strong="H3588"\w* \w will|strong="H3478"\w* \w sanctify|strong="H6942"\w* \w the|strong="H7200"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H3027"\w* \w Jacob|strong="H3290"\w*, \w and|strong="H3478"\w* \w will|strong="H3478"\w* \w stand|strong="H6206"\w* \w in|strong="H3478"\w* \w awe|strong="H6206"\w* \w of|strong="H3027"\w* \w the|strong="H7200"\w* \w God|strong="H3027"\w* \w of|strong="H3027"\w* \w Israel|strong="H3478"\w*. +\v 24 \w They|strong="H3045"\w* \w also|strong="H3045"\w* \w who|strong="H3045"\w* \w err|strong="H8582"\w* \w in|strong="H3925"\w* \w spirit|strong="H7307"\w* \w will|strong="H7307"\w* \w come|strong="H3045"\w* \w to|strong="H3045"\w* understanding, \w and|strong="H3045"\w* those \w who|strong="H3045"\w* grumble \w will|strong="H7307"\w* receive \w instruction|strong="H3948"\w*.” +\c 30 +\p +\v 1 “\w Woe|strong="H1945"\w* \w to|strong="H3068"\w* \w the|strong="H5002"\w* \w rebellious|strong="H5637"\w* \w children|strong="H1121"\w*”, \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w who|strong="H3068"\w* \w take|strong="H6213"\w* \w counsel|strong="H6098"\w*, \w but|strong="H3808"\w* \w not|strong="H3808"\w* \w from|strong="H4480"\w* \w me|strong="H5921"\w*; \w and|strong="H1121"\w* \w who|strong="H3068"\w* \w make|strong="H6213"\w* \w an|strong="H6213"\w* \w alliance|strong="H4541"\w*, \w but|strong="H3808"\w* \w not|strong="H3808"\w* \w with|strong="H3068"\w* \w my|strong="H3068"\w* \w Spirit|strong="H7307"\w*, \w that|strong="H3068"\w* \w they|strong="H3068"\w* \w may|strong="H3068"\w* \w add|strong="H5595"\w* \w sin|strong="H2403"\w* \w to|strong="H3068"\w* \w sin|strong="H2403"\w*; +\v 2 \w who|strong="H6547"\w* \w set|strong="H1980"\w* \w out|strong="H1980"\w* \w to|strong="H1980"\w* \w go|strong="H1980"\w* \w down|strong="H3381"\w* \w into|strong="H1980"\w* \w Egypt|strong="H4714"\w* \w without|strong="H3808"\w* \w asking|strong="H7592"\w* \w for|strong="H4714"\w* \w my|strong="H3381"\w* \w advice|strong="H6310"\w*, \w to|strong="H1980"\w* \w strengthen|strong="H5810"\w* themselves \w in|strong="H1980"\w* \w the|strong="H1980"\w* \w strength|strong="H4581"\w* \w of|strong="H6310"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H1980"\w* \w to|strong="H1980"\w* \w take|strong="H2620"\w* \w refuge|strong="H2620"\w* \w in|strong="H1980"\w* \w the|strong="H1980"\w* \w shadow|strong="H6738"\w* \w of|strong="H6310"\w* \w Egypt|strong="H4714"\w*! +\v 3 \w Therefore|strong="H1961"\w* \w the|strong="H1961"\w* \w strength|strong="H4581"\w* \w of|strong="H4581"\w* \w Pharaoh|strong="H6547"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w your|strong="H1961"\w* \w shame|strong="H1322"\w*, \w and|strong="H4714"\w* \w the|strong="H1961"\w* \w refuge|strong="H4581"\w* \w in|strong="H1961"\w* \w the|strong="H1961"\w* \w shadow|strong="H6738"\w* \w of|strong="H4581"\w* \w Egypt|strong="H4714"\w* \w your|strong="H1961"\w* \w confusion|strong="H1322"\w*. +\v 4 \w For|strong="H3588"\w* \w their|strong="H3588"\w* \w princes|strong="H8269"\w* \w are|strong="H8269"\w* \w at|strong="H1961"\w* \w Zoan|strong="H6814"\w*, \w and|strong="H8269"\w* \w their|strong="H3588"\w* \w ambassadors|strong="H4397"\w* \w have|strong="H1961"\w* \w come|strong="H1961"\w* \w to|strong="H1961"\w* \w Hanes|strong="H2609"\w*. +\v 5 \w They|strong="H3588"\w* \w shall|strong="H5971"\w* \w all|strong="H3605"\w* \w be|strong="H3808"\w* \w ashamed|strong="H1322"\w* \w because|strong="H3588"\w* \w of|strong="H5971"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w that|strong="H3588"\w* \w can|strong="H3808"\w*’t \w profit|strong="H3276"\w* \w them|strong="H5921"\w*, \w that|strong="H3588"\w* \w are|strong="H5971"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w help|strong="H5828"\w* \w nor|strong="H3808"\w* \w profit|strong="H3276"\w*, \w but|strong="H3588"\w* \w a|strong="H3068"\w* \w shame|strong="H1322"\w*, \w and|strong="H5971"\w* \w also|strong="H1571"\w* \w a|strong="H3068"\w* \w reproach|strong="H2781"\w*.” +\p +\v 6 \w The|strong="H5921"\w* \w burden|strong="H4853"\w* \w of|strong="H5971"\w* \w the|strong="H5921"\w* animals \w of|strong="H5971"\w* \w the|strong="H5921"\w* \w South|strong="H5045"\w*. +\p \w Through|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H5971"\w* \w trouble|strong="H6869"\w* \w and|strong="H5971"\w* \w anguish|strong="H6869"\w*, \w of|strong="H5971"\w* \w the|strong="H5921"\w* \w lioness|strong="H3833"\w* \w and|strong="H5971"\w* \w the|strong="H5921"\w* \w lion|strong="H3833"\w*, \w the|strong="H5921"\w* viper \w and|strong="H5971"\w* \w fiery|strong="H8314"\w* \w flying|strong="H5774"\w* \w serpent|strong="H8314"\w*, \w they|strong="H1992"\w* \w carry|strong="H5375"\w* \w their|strong="H5375"\w* \w riches|strong="H2428"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w shoulders|strong="H3802"\w* \w of|strong="H5971"\w* \w young|strong="H3833"\w* \w donkeys|strong="H5895"\w*, \w and|strong="H5971"\w* \w their|strong="H5375"\w* treasures \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w humps|strong="H1707"\w* \w of|strong="H5971"\w* \w camels|strong="H1581"\w*, \w to|strong="H5921"\w* \w an|strong="H5375"\w* unprofitable \w people|strong="H5971"\w*. +\v 7 \w For|strong="H7121"\w* \w Egypt|strong="H4714"\w* \w helps|strong="H5826"\w* \w in|strong="H7121"\w* \w vain|strong="H1892"\w*, \w and|strong="H4714"\w* \w to|strong="H4714"\w* no \w purpose|strong="H7385"\w*; \w therefore|strong="H3651"\w* \w I|strong="H3651"\w* \w have|strong="H4714"\w* \w called|strong="H7121"\w* \w her|strong="H7121"\w* \w Rahab|strong="H7293"\w* \w who|strong="H1992"\w* sits \w still|strong="H7674"\w*. +\v 8 \w Now|strong="H6258"\w* \w go|strong="H1961"\w*, \w write|strong="H3789"\w* \w it|strong="H5921"\w* \w before|strong="H5921"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w tablet|strong="H3871"\w*, \w and|strong="H3117"\w* \w inscribe|strong="H2710"\w* \w it|strong="H5921"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w book|strong="H5612"\w*, \w that|strong="H3117"\w* \w it|strong="H5921"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w for|strong="H5704"\w* \w the|strong="H5921"\w* \w time|strong="H3117"\w* \w to|strong="H5704"\w* \w come|strong="H1961"\w* \w forever|strong="H5769"\w* \w and|strong="H3117"\w* \w ever|strong="H5769"\w*. +\v 9 \w For|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w rebellious|strong="H4805"\w* \w people|strong="H5971"\w*, \w lying|strong="H3586"\w* \w children|strong="H1121"\w*, \w children|strong="H1121"\w* \w who|strong="H1931"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w law|strong="H8451"\w*; +\v 10 \w who|strong="H3808"\w* \w tell|strong="H1696"\w* \w the|strong="H7200"\w* \w seers|strong="H2374"\w*, “Don’t \w see|strong="H7200"\w*!” \w and|strong="H7200"\w* \w the|strong="H7200"\w* \w prophets|strong="H2374"\w*, “Don’t \w prophesy|strong="H2372"\w* \w to|strong="H1696"\w* \w us|strong="H7200"\w* \w right|strong="H5229"\w* \w things|strong="H5229"\w*. \w Tell|strong="H1696"\w* \w us|strong="H7200"\w* \w pleasant|strong="H2513"\w* \w things|strong="H5229"\w*. \w Prophesy|strong="H2372"\w* \w deceits|strong="H4123"\w*. +\v 11 \w Get|strong="H5493"\w* \w out|strong="H5186"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w*. \w Turn|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w path|strong="H1870"\w*. Cause \w the|strong="H6440"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H6440"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w cease|strong="H7673"\w* \w from|strong="H4480"\w* \w before|strong="H6440"\w* \w us|strong="H6440"\w*.” +\v 12 \w Therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H1697"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*, “\w Because|strong="H5921"\w* \w you|strong="H5921"\w* \w despise|strong="H3988"\w* \w this|strong="H2088"\w* \w word|strong="H1697"\w*, \w and|strong="H3478"\w* \w trust|strong="H8172"\w* \w in|strong="H5921"\w* \w oppression|strong="H6233"\w* \w and|strong="H3478"\w* \w perverseness|strong="H3868"\w*, \w and|strong="H3478"\w* \w rely|strong="H8172"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*, +\v 13 \w therefore|strong="H3651"\w* \w this|strong="H2088"\w* \w iniquity|strong="H5771"\w* \w shall|strong="H2088"\w* \w be|strong="H1961"\w* \w to|strong="H1961"\w* \w you|strong="H3651"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w breach|strong="H6556"\w* ready \w to|strong="H1961"\w* \w fall|strong="H5307"\w*, swelling \w out|strong="H5307"\w* \w in|strong="H5307"\w* \w a|strong="H3068"\w* \w high|strong="H7682"\w* \w wall|strong="H2346"\w*, whose \w breaking|strong="H7667"\w* \w comes|strong="H1961"\w* \w suddenly|strong="H6597"\w* \w in|strong="H5307"\w* \w an|strong="H1961"\w* \w instant|strong="H6621"\w*. +\v 14 \w He|strong="H3808"\w* \w will|strong="H3808"\w* \w break|strong="H7665"\w* \w it|strong="H3808"\w* \w as|strong="H4325"\w* \w a|strong="H3068"\w* \w potter|strong="H3335"\w*’s \w vessel|strong="H2789"\w* \w is|strong="H4325"\w* \w broken|strong="H7665"\w*, \w breaking|strong="H7667"\w* \w it|strong="H3808"\w* \w in|strong="H4672"\w* \w pieces|strong="H7665"\w* \w without|strong="H3808"\w* \w sparing|strong="H2550"\w*, \w so|strong="H3808"\w* \w that|strong="H4325"\w* \w there|strong="H4672"\w* won’t \w be|strong="H3808"\w* \w found|strong="H4672"\w* \w among|strong="H4672"\w* \w the|strong="H7665"\w* \w broken|strong="H7665"\w* \w pieces|strong="H7665"\w* \w a|strong="H3068"\w* piece good \w enough|strong="H4672"\w* \w to|strong="H4325"\w* \w take|strong="H2846"\w* fire \w from|strong="H4325"\w* \w the|strong="H7665"\w* \w hearth|strong="H3344"\w*, \w or|strong="H3808"\w* \w to|strong="H4325"\w* dip \w up|strong="H2834"\w* \w water|strong="H4325"\w* \w out|strong="H4672"\w* \w of|strong="H4325"\w* \w the|strong="H7665"\w* \w cistern|strong="H1360"\w*.” +\p +\v 15 \w For|strong="H3588"\w* \w thus|strong="H3541"\w* said \w the|strong="H3588"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3588"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H6918"\w* \w Israel|strong="H3478"\w*, “\w You|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w saved|strong="H3467"\w* \w in|strong="H3478"\w* \w returning|strong="H7729"\w* \w and|strong="H3478"\w* \w rest|strong="H8252"\w*. \w Your|strong="H3588"\w* \w strength|strong="H1369"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w in|strong="H3478"\w* \w quietness|strong="H8252"\w* \w and|strong="H3478"\w* \w in|strong="H3478"\w* confidence.” \w You|strong="H3588"\w* \w refused|strong="H3808"\w*, +\v 16 \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w said|strong="H3651"\w*, “\w No|strong="H3808"\w*, \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w will|strong="H3808"\w* \w flee|strong="H5127"\w* \w on|strong="H5921"\w* \w horses|strong="H5483"\w*;” \w therefore|strong="H3651"\w* \w you|strong="H3588"\w* \w will|strong="H3808"\w* \w flee|strong="H5127"\w*; \w and|strong="H5483"\w*, “\w We|strong="H3588"\w* \w will|strong="H3808"\w* \w ride|strong="H7392"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w swift|strong="H7031"\w*;” \w therefore|strong="H3651"\w* \w those|strong="H5921"\w* \w who|strong="H3588"\w* \w pursue|strong="H7291"\w* \w you|strong="H3588"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w swift|strong="H7031"\w*. +\v 17 One thousand \w will|strong="H2022"\w* \w flee|strong="H5127"\w* \w at|strong="H5921"\w* \w the|strong="H6440"\w* \w threat|strong="H1606"\w* \w of|strong="H2022"\w* one. \w At|strong="H5921"\w* \w the|strong="H6440"\w* \w threat|strong="H1606"\w* \w of|strong="H2022"\w* \w five|strong="H2568"\w*, \w you|strong="H6440"\w* \w will|strong="H2022"\w* \w flee|strong="H5127"\w* \w until|strong="H5704"\w* \w you|strong="H6440"\w* \w are|strong="H2022"\w* \w left|strong="H3498"\w* \w like|strong="H1389"\w* \w a|strong="H3068"\w* \w beacon|strong="H8650"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w top|strong="H7218"\w* \w of|strong="H2022"\w* \w a|strong="H3068"\w* \w mountain|strong="H2022"\w*, \w and|strong="H7218"\w* \w like|strong="H1389"\w* \w a|strong="H3068"\w* \w banner|strong="H5251"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w hill|strong="H2022"\w*. +\p +\v 18 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w wait|strong="H2442"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w gracious|strong="H2603"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w*; \w and|strong="H3068"\w* \w therefore|strong="H3651"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w exalted|strong="H7311"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w may|strong="H3068"\w* \w have|strong="H7355"\w* \w mercy|strong="H7355"\w* \w on|strong="H3068"\w* \w you|strong="H3588"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w justice|strong="H4941"\w*. Blessed \w are|strong="H3068"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w wait|strong="H2442"\w* \w for|strong="H3588"\w* \w him|strong="H3605"\w*. +\v 19 \w For|strong="H3588"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w* \w will|strong="H5971"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w Zion|strong="H6726"\w* \w at|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*. \w You|strong="H3588"\w* \w will|strong="H5971"\w* \w weep|strong="H1058"\w* \w no|strong="H3808"\w* \w more|strong="H3808"\w*. \w He|strong="H3588"\w* \w will|strong="H5971"\w* \w surely|strong="H3588"\w* \w be|strong="H3808"\w* \w gracious|strong="H2603"\w* \w to|strong="H3389"\w* \w you|strong="H3588"\w* \w at|strong="H3427"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H3427"\w* \w your|strong="H8085"\w* \w cry|strong="H2201"\w*. \w When|strong="H3588"\w* \w he|strong="H3588"\w* \w hears|strong="H8085"\w* \w you|strong="H3588"\w*, \w he|strong="H3588"\w* \w will|strong="H5971"\w* \w answer|strong="H6030"\w* \w you|strong="H3588"\w*. +\v 20 Though \w the|strong="H7200"\w* Lord \w may|strong="H1961"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w the|strong="H7200"\w* \w bread|strong="H3899"\w* \w of|strong="H5869"\w* \w adversity|strong="H6862"\w* \w and|strong="H3899"\w* \w the|strong="H7200"\w* \w water|strong="H4325"\w* \w of|strong="H5869"\w* \w affliction|strong="H3906"\w*, \w yet|strong="H5750"\w* \w your|strong="H5414"\w* \w teachers|strong="H3384"\w* won’t \w be|strong="H1961"\w* hidden \w any|strong="H5750"\w* \w more|strong="H5750"\w*, \w but|strong="H3808"\w* \w your|strong="H5414"\w* \w eyes|strong="H5869"\w* \w will|strong="H1961"\w* \w see|strong="H7200"\w* \w your|strong="H5414"\w* \w teachers|strong="H3384"\w*; +\v 21 \w and|strong="H3212"\w* \w when|strong="H3588"\w* \w you|strong="H3588"\w* turn \w to|strong="H3212"\w* \w the|strong="H8085"\w* right hand, \w and|strong="H3212"\w* \w when|strong="H3588"\w* \w you|strong="H3588"\w* turn \w to|strong="H3212"\w* \w the|strong="H8085"\w* \w left|strong="H8041"\w*, \w your|strong="H8085"\w* ears \w will|strong="H1697"\w* \w hear|strong="H8085"\w* \w a|strong="H3068"\w* voice behind \w you|strong="H3588"\w*, \w saying|strong="H1697"\w*, “\w This|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H8085"\w* \w way|strong="H1870"\w*. \w Walk|strong="H3212"\w* \w in|strong="H8085"\w* \w it|strong="H3588"\w*.” +\v 22 \w You|strong="H3644"\w* \w shall|strong="H3701"\w* \w defile|strong="H2930"\w* \w the|strong="H3318"\w* \w overlaying|strong="H6826"\w* \w of|strong="H3318"\w* \w your|strong="H3318"\w* \w engraved|strong="H6456"\w* \w images|strong="H6456"\w* \w of|strong="H3318"\w* \w silver|strong="H3701"\w*, \w and|strong="H3701"\w* \w the|strong="H3318"\w* \w plating|strong="H6826"\w* \w of|strong="H3318"\w* \w your|strong="H3318"\w* \w molten|strong="H4541"\w* \w images|strong="H6456"\w* \w of|strong="H3318"\w* \w gold|strong="H2091"\w*. \w You|strong="H3644"\w* \w shall|strong="H3701"\w* cast \w them|strong="H3318"\w* \w away|strong="H3318"\w* \w as|strong="H3644"\w* \w an|strong="H3318"\w* \w unclean|strong="H2930"\w* \w thing|strong="H1739"\w*. \w You|strong="H3644"\w* \w shall|strong="H3701"\w* tell \w it|strong="H2930"\w*, “\w Go|strong="H3318"\w* \w away|strong="H3318"\w*!” +\p +\v 23 \w He|strong="H1931"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w the|strong="H5414"\w* \w rain|strong="H4306"\w* \w for|strong="H3117"\w* \w your|strong="H5414"\w* \w seed|strong="H2233"\w*, \w with|strong="H3117"\w* \w which|strong="H1931"\w* \w you|strong="H5414"\w* \w will|strong="H1961"\w* \w sow|strong="H2232"\w* \w the|strong="H5414"\w* ground; \w and|strong="H3117"\w* \w bread|strong="H3899"\w* \w of|strong="H3117"\w* \w the|strong="H5414"\w* \w increase|strong="H8393"\w* \w of|strong="H3117"\w* \w the|strong="H5414"\w* ground \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w rich|strong="H8082"\w* \w and|strong="H3117"\w* plentiful. \w In|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w your|strong="H5414"\w* \w livestock|strong="H4735"\w* \w will|strong="H1961"\w* \w feed|strong="H7462"\w* \w in|strong="H3117"\w* \w large|strong="H7337"\w* \w pastures|strong="H3733"\w*. +\v 24 \w The|strong="H5647"\w* oxen likewise \w and|strong="H5647"\w* \w the|strong="H5647"\w* \w young|strong="H5895"\w* \w donkeys|strong="H5895"\w* \w that|strong="H5895"\w* \w till|strong="H5647"\w* \w the|strong="H5647"\w* ground \w will|strong="H5647"\w* eat savory \w feed|strong="H1098"\w*, \w which|strong="H5895"\w* has \w been|strong="H5647"\w* \w winnowed|strong="H2219"\w* \w with|strong="H5647"\w* \w the|strong="H5647"\w* \w shovel|strong="H7371"\w* \w and|strong="H5647"\w* \w with|strong="H5647"\w* \w the|strong="H5647"\w* \w fork|strong="H4214"\w*. +\v 25 \w There|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* brooks \w and|strong="H3117"\w* \w streams|strong="H6388"\w* \w of|strong="H3117"\w* \w water|strong="H4325"\w* \w on|strong="H5921"\w* \w every|strong="H3605"\w* \w lofty|strong="H1364"\w* \w mountain|strong="H2022"\w* \w and|strong="H3117"\w* \w on|strong="H5921"\w* \w every|strong="H3605"\w* \w high|strong="H1364"\w* \w hill|strong="H2022"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w great|strong="H7227"\w* \w slaughter|strong="H2027"\w*, \w when|strong="H1961"\w* \w the|strong="H3605"\w* \w towers|strong="H4026"\w* \w fall|strong="H5307"\w*. +\v 26 \w Moreover|strong="H1961"\w* \w the|strong="H3068"\w* light \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w moon|strong="H3842"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H3068"\w* light \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w sun|strong="H2535"\w*, \w and|strong="H3068"\w* \w the|strong="H3068"\w* light \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w sun|strong="H2535"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w seven|strong="H7651"\w* \w times|strong="H3117"\w* brighter, \w like|strong="H1961"\w* \w the|strong="H3068"\w* light \w of|strong="H3068"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w that|strong="H5971"\w* \w Yahweh|strong="H3068"\w* \w binds|strong="H2280"\w* \w up|strong="H2280"\w* \w the|strong="H3068"\w* \w fracture|strong="H7667"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*, \w and|strong="H3068"\w* \w heals|strong="H7495"\w* \w the|strong="H3068"\w* \w wound|strong="H4347"\w* \w they|strong="H3117"\w* \w were|strong="H1961"\w* struck \w with|strong="H3068"\w*. +\p +\v 27 \w Behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w* \w comes|strong="H4390"\w* \w from|strong="H3068"\w* \w far|strong="H4801"\w* \w away|strong="H1197"\w*, \w burning|strong="H1197"\w* \w with|strong="H4390"\w* \w his|strong="H3068"\w* \w anger|strong="H2195"\w*, \w and|strong="H3068"\w* \w in|strong="H3068"\w* thick rising \w smoke|strong="H4858"\w*. \w His|strong="H3068"\w* \w lips|strong="H8193"\w* \w are|strong="H3068"\w* \w full|strong="H4390"\w* \w of|strong="H3068"\w* \w indignation|strong="H2195"\w*. \w His|strong="H3068"\w* \w tongue|strong="H3956"\w* \w is|strong="H3068"\w* \w as|strong="H3068"\w* \w a|strong="H3068"\w* devouring fire. +\v 28 \w His|strong="H5921"\w* \w breath|strong="H7307"\w* \w is|strong="H7307"\w* \w as|strong="H5704"\w* \w an|strong="H5130"\w* \w overflowing|strong="H7857"\w* \w stream|strong="H5158"\w* \w that|strong="H5971"\w* \w reaches|strong="H5704"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w neck|strong="H6677"\w*, \w to|strong="H5704"\w* \w sift|strong="H5130"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w sieve|strong="H5299"\w* \w of|strong="H7307"\w* destruction. \w A|strong="H3068"\w* \w bridle|strong="H7448"\w* \w that|strong="H5971"\w* \w leads|strong="H8582"\w* \w to|strong="H5704"\w* \w ruin|strong="H8582"\w* \w will|strong="H1471"\w* \w be|strong="H1471"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w jaws|strong="H3895"\w* \w of|strong="H7307"\w* \w the|strong="H5921"\w* \w peoples|strong="H5971"\w*. +\v 29 \w You|strong="H3915"\w* \w will|strong="H3068"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* \w song|strong="H7892"\w*, \w as|strong="H1961"\w* \w in|strong="H1980"\w* \w the|strong="H3068"\w* \w night|strong="H3915"\w* \w when|strong="H1961"\w* \w a|strong="H3068"\w* \w holy|strong="H6942"\w* \w feast|strong="H2282"\w* \w is|strong="H3068"\w* \w kept|strong="H6942"\w*, \w and|strong="H1980"\w* \w gladness|strong="H8057"\w* \w of|strong="H3068"\w* \w heart|strong="H3824"\w*, \w as|strong="H1961"\w* \w when|strong="H1961"\w* \w one|strong="H1961"\w* \w goes|strong="H1980"\w* \w with|strong="H1980"\w* \w a|strong="H3068"\w* \w flute|strong="H2485"\w* \w to|strong="H1980"\w* \w come|strong="H1980"\w* \w to|strong="H1980"\w* \w Yahweh|strong="H3068"\w*’s \w mountain|strong="H2022"\w*, \w to|strong="H1980"\w* \w Israel|strong="H3478"\w*’s \w Rock|strong="H6697"\w*. +\v 30 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* cause \w his|strong="H3068"\w* \w glorious|strong="H1935"\w* \w voice|strong="H6963"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w heard|strong="H8085"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w show|strong="H7200"\w* \w the|strong="H8085"\w* descent \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w arm|strong="H2220"\w*, \w with|strong="H3068"\w* \w the|strong="H8085"\w* \w indignation|strong="H2197"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* anger \w and|strong="H3068"\w* \w the|strong="H8085"\w* \w flame|strong="H3851"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* devouring fire, \w with|strong="H3068"\w* \w a|strong="H3068"\w* blast, \w storm|strong="H2230"\w*, \w and|strong="H3068"\w* \w hailstones|strong="H1259"\w*. +\v 31 \w For|strong="H3588"\w* \w through|strong="H6963"\w* \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w* \w the|strong="H3588"\w* Assyrian \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w dismayed|strong="H2865"\w*. \w He|strong="H3588"\w* \w will|strong="H3068"\w* \w strike|strong="H5221"\w* \w him|strong="H5221"\w* \w with|strong="H3068"\w* \w his|strong="H3068"\w* \w rod|strong="H7626"\w*. +\v 32 \w Every|strong="H3605"\w* stroke \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w rod|strong="H4294"\w* \w of|strong="H3068"\w* \w punishment|strong="H4145"\w*, \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w lay|strong="H5117"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w with|strong="H3068"\w* \w the|strong="H3605"\w* sound \w of|strong="H3068"\w* \w tambourines|strong="H8596"\w* \w and|strong="H3068"\w* \w harps|strong="H3658"\w*. \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w fight|strong="H3898"\w* \w with|strong="H3068"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w battles|strong="H4421"\w*, \w brandishing|strong="H8573"\w* \w weapons|strong="H4421"\w*. +\v 33 \w For|strong="H3588"\w* \w his|strong="H3068"\w* \w burning|strong="H1197"\w* \w place|strong="H3559"\w* \w has|strong="H3068"\w* \w long|strong="H7235"\w* \w been|strong="H5397"\w* \w ready|strong="H3559"\w*. \w Yes|strong="H3588"\w*, \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w prepared|strong="H3559"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w*. \w He|strong="H1931"\w* \w has|strong="H3068"\w* \w made|strong="H3559"\w* \w its|strong="H3588"\w* \w pyre|strong="H4071"\w* \w deep|strong="H6009"\w* \w and|strong="H3068"\w* \w large|strong="H7337"\w* \w with|strong="H3068"\w* fire \w and|strong="H3068"\w* \w much|strong="H7235"\w* \w wood|strong="H6086"\w*. \w Yahweh|strong="H3068"\w*’s \w breath|strong="H5397"\w*, \w like|strong="H1197"\w* \w a|strong="H3068"\w* \w stream|strong="H5158"\w* \w of|strong="H4428"\w* \w sulfur|strong="H1614"\w*, kindles \w it|strong="H1931"\w*. +\c 31 +\q1 +\v 1 \w Woe|strong="H1945"\w* \w to|strong="H3381"\w* \w those|strong="H1945"\w* \w who|strong="H3068"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w Egypt|strong="H4714"\w* \w for|strong="H3588"\w* \w help|strong="H5833"\w*, +\q2 \w and|strong="H3478"\w* \w rely|strong="H8172"\w* \w on|strong="H5921"\w* \w horses|strong="H5483"\w*, +\q2 \w and|strong="H3478"\w* \w trust|strong="H8172"\w* \w in|strong="H5921"\w* \w chariots|strong="H7393"\w* \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H3478"\w* \w many|strong="H7227"\w*, +\q2 \w and|strong="H3478"\w* \w in|strong="H5921"\w* \w horsemen|strong="H6571"\w* \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H3478"\w* \w very|strong="H3966"\w* \w strong|strong="H6105"\w*, +\q2 \w but|strong="H3588"\w* \w they|strong="H3588"\w* don’t \w look|strong="H8159"\w* \w to|strong="H3381"\w* \w the|strong="H5921"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, +\q2 \w and|strong="H3478"\w* \w they|strong="H3588"\w* don’t \w seek|strong="H1875"\w* \w Yahweh|strong="H3068"\w*! +\q1 +\v 2 \w Yet|strong="H1571"\w* \w he|strong="H1931"\w* \w also|strong="H1571"\w* \w is|strong="H1931"\w* \w wise|strong="H2450"\w*, \w and|strong="H6965"\w* \w will|strong="H1571"\w* \w bring|strong="H7451"\w* \w disaster|strong="H7451"\w*, +\q2 \w and|strong="H6965"\w* \w will|strong="H1571"\w* \w not|strong="H3808"\w* call \w back|strong="H5493"\w* \w his|strong="H5921"\w* \w words|strong="H1697"\w*, \w but|strong="H3808"\w* \w will|strong="H1571"\w* \w arise|strong="H6965"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w evildoers|strong="H7489"\w*, +\q2 \w and|strong="H6965"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w help|strong="H5833"\w* \w of|strong="H1004"\w* \w those|strong="H5921"\w* \w who|strong="H1931"\w* \w work|strong="H6466"\w* iniquity. +\q1 +\v 3 \w Now|strong="H4714"\w* \w the|strong="H3605"\w* \w Egyptians|strong="H4714"\w* \w are|strong="H3027"\w* \w men|strong="H3605"\w*, \w and|strong="H3068"\w* \w not|strong="H3808"\w* \w God|strong="H3068"\w*; +\q2 \w and|strong="H3068"\w* \w their|strong="H3605"\w* \w horses|strong="H5483"\w* \w flesh|strong="H1320"\w*, \w and|strong="H3068"\w* \w not|strong="H3808"\w* \w spirit|strong="H7307"\w*. +\q1 \w When|strong="H3615"\w* \w Yahweh|strong="H3068"\w* \w stretches|strong="H5186"\w* \w out|strong="H5186"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*, \w both|strong="H3605"\w* \w he|strong="H3068"\w* \w who|strong="H3605"\w* \w helps|strong="H5826"\w* \w shall|strong="H3068"\w* \w stumble|strong="H3782"\w*, +\q2 \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w who|strong="H3605"\w* \w is|strong="H3068"\w* \w helped|strong="H5826"\w* \w shall|strong="H3068"\w* \w fall|strong="H5307"\w*, +\q2 \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w all|strong="H3605"\w* \w shall|strong="H3068"\w* \w be|strong="H3808"\w* \w consumed|strong="H3615"\w* \w together|strong="H3162"\w*. +\b +\q1 +\v 4 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w to|strong="H3381"\w* \w me|strong="H5921"\w*, +\q1 “\w As|strong="H3651"\w* \w the|strong="H5921"\w* \w lion|strong="H3715"\w* \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w young|strong="H3715"\w* \w lion|strong="H3715"\w* \w growling|strong="H7121"\w* \w over|strong="H5921"\w* \w his|strong="H3068"\w* \w prey|strong="H2964"\w*, +\q2 \w if|strong="H3588"\w* \w a|strong="H3068"\w* \w multitude|strong="H1995"\w* \w of|strong="H3068"\w* \w shepherds|strong="H7462"\w* \w is|strong="H3068"\w* \w called|strong="H7121"\w* \w together|strong="H5921"\w* \w against|strong="H5921"\w* \w him|strong="H7121"\w*, +\q2 \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w dismayed|strong="H2865"\w* \w at|strong="H5921"\w* \w their|strong="H3068"\w* \w voice|strong="H6963"\w*, +\q2 \w nor|strong="H3808"\w* \w abase|strong="H6031"\w* \w himself|strong="H7121"\w* \w for|strong="H3588"\w* \w their|strong="H3068"\w* \w noise|strong="H6963"\w*, +\q2 \w so|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w will|strong="H3068"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w fight|strong="H6633"\w* \w on|strong="H5921"\w* \w Mount|strong="H2022"\w* \w Zion|strong="H6726"\w* \w and|strong="H3068"\w* \w on|strong="H5921"\w* \w its|strong="H5921"\w* heights. +\q1 +\v 5 \w As|strong="H3651"\w* \w birds|strong="H6833"\w* hovering, \w so|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w will|strong="H3068"\w* \w protect|strong="H1598"\w* \w Jerusalem|strong="H3389"\w*. +\q2 \w He|strong="H3651"\w* \w will|strong="H3068"\w* \w protect|strong="H1598"\w* \w and|strong="H3068"\w* \w deliver|strong="H5337"\w* \w it|strong="H5921"\w*. +\q2 \w He|strong="H3651"\w* \w will|strong="H3068"\w* \w pass|strong="H6452"\w* \w over|strong="H5921"\w* \w and|strong="H3068"\w* \w preserve|strong="H4422"\w* \w it|strong="H5921"\w*.” +\q1 +\v 6 \w Return|strong="H7725"\w* \w to|strong="H7725"\w* \w him|strong="H7725"\w* \w from|strong="H7725"\w* whom \w you|strong="H7725"\w* \w have|strong="H1121"\w* \w deeply|strong="H6009"\w* \w revolted|strong="H5627"\w*, \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 7 \w For|strong="H3588"\w* \w in|strong="H6213"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w* everyone \w shall|strong="H3117"\w* \w cast|strong="H3988"\w* \w away|strong="H3988"\w* \w his|strong="H3027"\w* idols \w of|strong="H3117"\w* \w silver|strong="H3701"\w* \w and|strong="H3701"\w* \w his|strong="H3027"\w* idols \w of|strong="H3117"\w* \w gold|strong="H2091"\w*—\w sin|strong="H2399"\w* \w which|strong="H1931"\w* \w your|strong="H6213"\w* \w own|strong="H3027"\w* \w hands|strong="H3027"\w* \w have|strong="H3027"\w* \w made|strong="H6213"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*. +\p +\v 8 “\w The|strong="H6440"\w* Assyrian \w will|strong="H1961"\w* \w fall|strong="H5307"\w* \w by|strong="H1961"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w*, \w not|strong="H3808"\w* \w of|strong="H6440"\w* \w man|strong="H5307"\w*; +\q2 \w and|strong="H2719"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w*, \w not|strong="H3808"\w* \w of|strong="H6440"\w* mankind, \w shall|strong="H2719"\w* devour \w him|strong="H6440"\w*. +\q1 \w He|strong="H3808"\w* \w will|strong="H1961"\w* \w flee|strong="H5127"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w*, +\q2 \w and|strong="H2719"\w* \w his|strong="H6440"\w* young \w men|strong="H4522"\w* \w will|strong="H1961"\w* \w become|strong="H1961"\w* subject \w to|strong="H1961"\w* \w forced|strong="H4522"\w* \w labor|strong="H4522"\w*. +\q1 +\v 9 \w His|strong="H3068"\w* \w rock|strong="H5553"\w* \w will|strong="H3068"\w* \w pass|strong="H5674"\w* \w away|strong="H5674"\w* \w by|strong="H5674"\w* reason \w of|strong="H3068"\w* \w terror|strong="H4032"\w*, +\q2 \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w princes|strong="H8269"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w afraid|strong="H2865"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* \w banner|strong="H5251"\w*,” +\q1 \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, whose fire \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w Zion|strong="H6726"\w*, +\q2 \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w furnace|strong="H8574"\w* \w in|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*. +\c 32 +\q1 +\v 1 \w Behold|strong="H2005"\w*, \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w shall|strong="H4428"\w* \w reign|strong="H4427"\w* \w in|strong="H4428"\w* \w righteousness|strong="H6664"\w*, +\q2 \w and|strong="H4428"\w* \w princes|strong="H8269"\w* \w shall|strong="H4428"\w* \w rule|strong="H8323"\w* \w in|strong="H4428"\w* \w justice|strong="H4941"\w*. +\q1 +\v 2 \w A|strong="H3068"\w* man \w shall|strong="H4325"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w hiding|strong="H5643"\w* \w place|strong="H5643"\w* \w from|strong="H7307"\w* \w the|strong="H1961"\w* \w wind|strong="H7307"\w*, +\q2 \w and|strong="H4325"\w* \w a|strong="H3068"\w* \w covert|strong="H5643"\w* \w from|strong="H7307"\w* \w the|strong="H1961"\w* \w storm|strong="H2230"\w*, +\q2 \w as|strong="H1961"\w* \w streams|strong="H6388"\w* \w of|strong="H7307"\w* \w water|strong="H4325"\w* \w in|strong="H1961"\w* \w a|strong="H3068"\w* \w dry|strong="H6724"\w* \w place|strong="H5643"\w*, +\q2 \w as|strong="H1961"\w* \w the|strong="H1961"\w* \w shade|strong="H6738"\w* \w of|strong="H7307"\w* \w a|strong="H3068"\w* \w large|strong="H3515"\w* \w rock|strong="H5553"\w* \w in|strong="H1961"\w* \w a|strong="H3068"\w* \w weary|strong="H5889"\w* land. +\q1 +\v 3 \w The|strong="H8085"\w* \w eyes|strong="H5869"\w* \w of|strong="H5869"\w* \w those|strong="H8085"\w* \w who|strong="H3808"\w* \w see|strong="H7200"\w* \w will|strong="H5869"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w dim|strong="H8159"\w*, +\q2 \w and|strong="H5869"\w* \w the|strong="H8085"\w* ears \w of|strong="H5869"\w* \w those|strong="H8085"\w* \w who|strong="H3808"\w* \w hear|strong="H8085"\w* \w will|strong="H5869"\w* \w listen|strong="H8085"\w*. +\q1 +\v 4 \w The|strong="H3045"\w* \w heart|strong="H3824"\w* \w of|strong="H3824"\w* \w the|strong="H3045"\w* \w rash|strong="H4116"\w* \w will|strong="H3824"\w* \w understand|strong="H3045"\w* \w knowledge|strong="H3045"\w*, +\q2 \w and|strong="H3045"\w* \w the|strong="H3045"\w* \w tongue|strong="H3956"\w* \w of|strong="H3824"\w* \w the|strong="H3045"\w* \w stammerers|strong="H5926"\w* \w will|strong="H3824"\w* \w be|strong="H3956"\w* \w ready|strong="H4116"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w plainly|strong="H6703"\w*. +\q1 +\v 5 \w The|strong="H7121"\w* \w fool|strong="H5036"\w* \w will|strong="H3808"\w* \w no|strong="H3808"\w* \w longer|strong="H5750"\w* \w be|strong="H3808"\w* \w called|strong="H7121"\w* \w noble|strong="H5081"\w*, +\q2 \w nor|strong="H3808"\w* \w the|strong="H7121"\w* scoundrel \w be|strong="H3808"\w* highly respected. +\q1 +\v 6 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w fool|strong="H5036"\w* \w will|strong="H3068"\w* \w speak|strong="H1696"\w* \w folly|strong="H5039"\w*, +\q2 \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w heart|strong="H3820"\w* \w will|strong="H3068"\w* \w work|strong="H6213"\w* iniquity, +\q2 \w to|strong="H1696"\w* \w practice|strong="H6213"\w* profanity, +\q2 \w and|strong="H3068"\w* \w to|strong="H1696"\w* \w utter|strong="H1696"\w* \w error|strong="H8442"\w* \w against|strong="H1696"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w to|strong="H1696"\w* \w make|strong="H6213"\w* \w empty|strong="H7324"\w* \w the|strong="H3588"\w* \w soul|strong="H5315"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w hungry|strong="H7457"\w*, +\q2 \w and|strong="H3068"\w* \w to|strong="H1696"\w* \w cause|strong="H6213"\w* \w the|strong="H3588"\w* \w drink|strong="H4945"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w thirsty|strong="H6771"\w* \w to|strong="H1696"\w* \w fail|strong="H2637"\w*. +\q1 +\v 7 \w The|strong="H1696"\w* ways \w of|strong="H3627"\w* \w the|strong="H1696"\w* scoundrel \w are|strong="H4941"\w* \w evil|strong="H7451"\w*. +\q2 \w He|strong="H1931"\w* \w devises|strong="H3289"\w* \w wicked|strong="H7451"\w* \w plans|strong="H2154"\w* \w to|strong="H1696"\w* \w destroy|strong="H2254"\w* \w the|strong="H1696"\w* \w humble|strong="H6035"\w* \w with|strong="H1696"\w* \w lying|strong="H8267"\w* words, +\q2 even \w when|strong="H1696"\w* \w the|strong="H1696"\w* needy \w speaks|strong="H1696"\w* \w right|strong="H4941"\w*. +\q1 +\v 8 \w But|strong="H1931"\w* \w the|strong="H5921"\w* \w noble|strong="H5081"\w* \w devises|strong="H3289"\w* \w noble|strong="H5081"\w* \w things|strong="H5081"\w*, +\q2 \w and|strong="H6965"\w* \w he|strong="H1931"\w* \w will|strong="H1931"\w* \w continue|strong="H6965"\w* \w in|strong="H5921"\w* \w noble|strong="H5081"\w* \w things|strong="H5081"\w*. +\b +\q1 +\v 9 \w Rise|strong="H6965"\w* \w up|strong="H6965"\w*, \w you|strong="H6965"\w* \w women|strong="H1323"\w* \w who|strong="H7600"\w* \w are|strong="H1323"\w* \w at|strong="H6965"\w* \w ease|strong="H7600"\w*! \w Hear|strong="H8085"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*! +\q2 \w You|strong="H6965"\w* careless \w daughters|strong="H1323"\w*, \w give|strong="H8085"\w* \w ear|strong="H8085"\w* \w to|strong="H8085"\w* \w my|strong="H8085"\w* speech! +\q1 +\v 10 \w For|strong="H3588"\w* \w days|strong="H3117"\w* \w beyond|strong="H5921"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w you|strong="H3588"\w* \w will|strong="H3117"\w* \w be|strong="H3117"\w* \w troubled|strong="H7264"\w*, \w you|strong="H3588"\w* careless women; +\q2 \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w vintage|strong="H1210"\w* \w will|strong="H3117"\w* \w fail|strong="H3615"\w*. +\q2 \w The|strong="H5921"\w* \w harvest|strong="H1210"\w* won’t \w come|strong="H3615"\w*. +\q1 +\v 11 \w Tremble|strong="H7264"\w*, \w you|strong="H5921"\w* women \w who|strong="H7600"\w* are \w at|strong="H5921"\w* \w ease|strong="H7600"\w*! +\q2 \w Be|strong="H2504"\w* \w troubled|strong="H7264"\w*, \w you|strong="H5921"\w* careless ones! +\q2 \w Strip|strong="H6584"\w* \w yourselves|strong="H2296"\w*, \w make|strong="H2729"\w* \w yourselves|strong="H2296"\w* naked, +\q2 \w and|strong="H7264"\w* \w put|strong="H2296"\w* sackcloth \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w waist|strong="H2504"\w*. +\q1 +\v 12 \w Beat|strong="H5594"\w* \w your|strong="H5921"\w* \w breasts|strong="H7699"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w pleasant|strong="H2531"\w* \w fields|strong="H7704"\w*, +\q2 \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w fruitful|strong="H6509"\w* \w vine|strong="H1612"\w*. +\q1 +\v 13 \w Thorns|strong="H6975"\w* \w and|strong="H1004"\w* \w briers|strong="H8068"\w* \w will|strong="H5971"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w on|strong="H5921"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w*’s land; +\q2 \w yes|strong="H3588"\w*, \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w houses|strong="H1004"\w* \w of|strong="H1004"\w* \w joy|strong="H4885"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w joyous|strong="H5947"\w* \w city|strong="H7151"\w*. +\q1 +\v 14 \w For|strong="H3588"\w* \w the|strong="H3588"\w* palace \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w forsaken|strong="H5800"\w*. +\q2 \w The|strong="H3588"\w* populous \w city|strong="H5892"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w deserted|strong="H5800"\w*. +\q2 \w The|strong="H3588"\w* \w hill|strong="H6076"\w* \w and|strong="H5892"\w* \w the|strong="H3588"\w* watchtower \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w for|strong="H3588"\w* \w dens|strong="H4631"\w* \w forever|strong="H5769"\w*, +\q2 \w a|strong="H3068"\w* \w delight|strong="H4885"\w* \w for|strong="H3588"\w* \w wild|strong="H6501"\w* \w donkeys|strong="H6501"\w*, +\q2 \w a|strong="H3068"\w* \w pasture|strong="H4829"\w* \w of|strong="H5892"\w* \w flocks|strong="H5739"\w*, +\q1 +\v 15 \w until|strong="H5704"\w* \w the|strong="H5921"\w* \w Spirit|strong="H7307"\w* \w is|strong="H7307"\w* \w poured|strong="H6168"\w* \w on|strong="H5921"\w* \w us|strong="H5921"\w* \w from|strong="H5921"\w* \w on|strong="H5921"\w* \w high|strong="H4791"\w*, +\q2 \w and|strong="H4057"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w* \w becomes|strong="H1961"\w* \w a|strong="H3068"\w* \w fruitful|strong="H3759"\w* \w field|strong="H3759"\w*, +\q2 \w and|strong="H4057"\w* \w the|strong="H5921"\w* \w fruitful|strong="H3759"\w* \w field|strong="H3759"\w* \w is|strong="H7307"\w* \w considered|strong="H2803"\w* \w a|strong="H3068"\w* \w forest|strong="H3293"\w*. +\b +\q1 +\v 16 Then \w justice|strong="H4941"\w* \w will|strong="H6666"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3427"\w* \w wilderness|strong="H4057"\w*; +\q2 \w and|strong="H4941"\w* \w righteousness|strong="H6666"\w* \w will|strong="H6666"\w* \w remain|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3427"\w* \w fruitful|strong="H3759"\w* \w field|strong="H3759"\w*. +\q1 +\v 17 \w The|strong="H5704"\w* \w work|strong="H4639"\w* \w of|strong="H4639"\w* \w righteousness|strong="H6666"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w peace|strong="H7965"\w*, +\q2 \w and|strong="H5769"\w* \w the|strong="H5704"\w* \w effect|strong="H5656"\w* \w of|strong="H4639"\w* \w righteousness|strong="H6666"\w*, \w quietness|strong="H8252"\w* \w and|strong="H5769"\w* confidence \w forever|strong="H5769"\w*. +\q1 +\v 18 \w My|strong="H5971"\w* \w people|strong="H5971"\w* \w will|strong="H5971"\w* \w live|strong="H3427"\w* \w in|strong="H3427"\w* \w a|strong="H3068"\w* \w peaceful|strong="H7965"\w* \w habitation|strong="H5116"\w*, +\q2 \w in|strong="H3427"\w* \w safe|strong="H7965"\w* \w dwellings|strong="H4908"\w*, +\q2 \w and|strong="H5971"\w* \w in|strong="H3427"\w* \w quiet|strong="H4496"\w* \w resting|strong="H4496"\w* \w places|strong="H4908"\w*, +\q1 +\v 19 though \w hail|strong="H1258"\w* flattens \w the|strong="H3381"\w* \w forest|strong="H3293"\w*, +\q2 \w and|strong="H5892"\w* \w the|strong="H3381"\w* \w city|strong="H5892"\w* \w is|strong="H5892"\w* leveled completely. +\q1 +\v 20 Blessed \w are|strong="H4325"\w* \w you|strong="H3605"\w* \w who|strong="H3605"\w* \w sow|strong="H2232"\w* \w beside|strong="H5921"\w* \w all|strong="H3605"\w* \w waters|strong="H4325"\w*, +\q2 \w who|strong="H3605"\w* \w send|strong="H7971"\w* \w out|strong="H7971"\w* \w the|strong="H3605"\w* \w feet|strong="H7272"\w* \w of|strong="H4325"\w* \w the|strong="H3605"\w* \w ox|strong="H7794"\w* \w and|strong="H7971"\w* \w the|strong="H3605"\w* \w donkey|strong="H2543"\w*. +\c 33 +\q1 +\v 1 \w Woe|strong="H1945"\w* \w to|strong="H3808"\w* \w you|strong="H3808"\w* \w who|strong="H3808"\w* \w destroy|strong="H7703"\w*, \w but|strong="H3808"\w* \w you|strong="H3808"\w* weren’t \w destroyed|strong="H7703"\w*, +\q2 \w and|strong="H3808"\w* \w who|strong="H3808"\w* betray, \w but|strong="H3808"\w* \w nobody|strong="H3808"\w* betrayed \w you|strong="H3808"\w*! +\q1 When \w you|strong="H3808"\w* \w have|strong="H3808"\w* \w finished|strong="H8552"\w* \w destroying|strong="H7703"\w*, \w you|strong="H3808"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w destroyed|strong="H7703"\w*; +\q2 \w and|strong="H3808"\w* when \w you|strong="H3808"\w* \w have|strong="H3808"\w* \w finished|strong="H8552"\w* betrayal, \w you|strong="H3808"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* betrayed. +\b +\q1 +\v 2 \w Yahweh|strong="H3068"\w*, \w be|strong="H1961"\w* \w gracious|strong="H2603"\w* \w to|strong="H3068"\w* \w us|strong="H1961"\w*. We \w have|strong="H1961"\w* \w waited|strong="H6960"\w* \w for|strong="H3068"\w* \w you|strong="H6256"\w*. +\q2 \w Be|strong="H1961"\w* \w our|strong="H3068"\w* \w strength|strong="H2220"\w* \w every|strong="H1242"\w* \w morning|strong="H1242"\w*, +\q2 \w our|strong="H3068"\w* \w salvation|strong="H3444"\w* \w also|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w time|strong="H6256"\w* \w of|strong="H3068"\w* \w trouble|strong="H6869"\w*. +\q1 +\v 3 \w At|strong="H5971"\w* \w the|strong="H5971"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H5971"\w* \w thunder|strong="H6963"\w*, \w the|strong="H5971"\w* \w peoples|strong="H5971"\w* \w have|strong="H5971"\w* \w fled|strong="H5074"\w*. +\q2 \w When|strong="H6963"\w* \w you|strong="H6963"\w* lift yourself \w up|strong="H7427"\w*, \w the|strong="H5971"\w* \w nations|strong="H1471"\w* \w are|strong="H5971"\w* \w scattered|strong="H5310"\w*. +\q1 +\v 4 Your \w plunder|strong="H7998"\w* will be gathered \w as|strong="H7998"\w* the \w caterpillar|strong="H2625"\w* gathers. +\q2 \w Men|strong="H4944"\w* will leap \w on|strong="H7998"\w* \w it|strong="H7998"\w* \w as|strong="H7998"\w* \w locusts|strong="H1357"\w* leap. +\q1 +\v 5 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w exalted|strong="H7682"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w dwells|strong="H7931"\w* \w on|strong="H3068"\w* \w high|strong="H4791"\w*. +\q2 \w He|strong="H3588"\w* \w has|strong="H3068"\w* \w filled|strong="H4390"\w* \w Zion|strong="H6726"\w* \w with|strong="H4390"\w* \w justice|strong="H4941"\w* \w and|strong="H3068"\w* \w righteousness|strong="H6666"\w*. +\q1 +\v 6 \w There|strong="H1961"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* stability \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w times|strong="H6256"\w*, abundance \w of|strong="H3068"\w* \w salvation|strong="H3444"\w*, \w wisdom|strong="H2451"\w*, \w and|strong="H3068"\w* \w knowledge|strong="H1847"\w*. +\q2 \w The|strong="H3068"\w* \w fear|strong="H3374"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w your|strong="H3068"\w* \w treasure|strong="H2633"\w*. +\b +\q1 +\v 7 \w Behold|strong="H2005"\w*, their valiant ones \w cry|strong="H6817"\w* \w outside|strong="H2351"\w*; +\q2 \w the|strong="H2351"\w* \w ambassadors|strong="H4397"\w* \w of|strong="H4397"\w* \w peace|strong="H7965"\w* \w weep|strong="H1058"\w* \w bitterly|strong="H4751"\w*. +\q1 +\v 8 \w The|strong="H5674"\w* \w highways|strong="H4546"\w* \w are|strong="H5892"\w* \w desolate|strong="H8074"\w*. +\q2 \w The|strong="H5674"\w* traveling \w man|strong="H5674"\w* \w ceases|strong="H7673"\w*. +\q2 \w The|strong="H5674"\w* \w covenant|strong="H1285"\w* \w is|strong="H5892"\w* \w broken|strong="H6565"\w*. +\q2 \w He|strong="H3808"\w* \w has|strong="H5892"\w* \w despised|strong="H3988"\w* \w the|strong="H5674"\w* \w cities|strong="H5892"\w*. +\q2 \w He|strong="H3808"\w* doesn’t respect \w man|strong="H5674"\w*. +\q1 +\v 9 \w The|strong="H1961"\w* land mourns \w and|strong="H3844"\w* languishes. +\q2 \w Lebanon|strong="H3844"\w* \w is|strong="H1961"\w* \w confounded|strong="H2659"\w* \w and|strong="H3844"\w* \w withers|strong="H7060"\w* \w away|strong="H7060"\w*. +\q2 \w Sharon|strong="H8289"\w* \w is|strong="H1961"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w desert|strong="H6160"\w*, \w and|strong="H3844"\w* \w Bashan|strong="H1316"\w* \w and|strong="H3844"\w* \w Carmel|strong="H3760"\w* \w are|strong="H1961"\w* stripped bare. +\q1 +\v 10 “\w Now|strong="H6258"\w* \w I|strong="H6258"\w* \w will|strong="H3068"\w* \w arise|strong="H6965"\w*,” says \w Yahweh|strong="H3068"\w*. +\q2 “\w Now|strong="H6258"\w* \w I|strong="H6258"\w* \w will|strong="H3068"\w* \w lift|strong="H5375"\w* myself \w up|strong="H6965"\w*. +\q2 \w Now|strong="H6258"\w* \w I|strong="H6258"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w exalted|strong="H7311"\w*. +\q1 +\v 11 \w You|strong="H3205"\w* \w will|strong="H7307"\w* \w conceive|strong="H2029"\w* \w chaff|strong="H7179"\w*. +\q2 \w You|strong="H3205"\w* \w will|strong="H7307"\w* \w give|strong="H3205"\w* \w birth|strong="H3205"\w* \w to|strong="H3205"\w* \w stubble|strong="H7179"\w*. +\q2 \w Your|strong="H3205"\w* \w breath|strong="H7307"\w* \w is|strong="H7307"\w* \w a|strong="H3068"\w* fire \w that|strong="H7307"\w* \w will|strong="H7307"\w* devour \w you|strong="H3205"\w*. +\q1 +\v 12 \w The|strong="H1961"\w* \w peoples|strong="H5971"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H1961"\w* burning \w of|strong="H5971"\w* \w lime|strong="H7875"\w*, +\q2 \w like|strong="H1961"\w* \w thorns|strong="H6975"\w* \w that|strong="H5971"\w* \w are|strong="H5971"\w* \w cut|strong="H3683"\w* \w down|strong="H3683"\w* \w and|strong="H5971"\w* \w burned|strong="H3341"\w* \w in|strong="H5971"\w* \w the|strong="H1961"\w* \w fire|strong="H3341"\w*. +\b +\q1 +\v 13 \w Hear|strong="H8085"\w*, \w you|strong="H6213"\w* \w who|strong="H7350"\w* \w are|strong="H7350"\w* \w far|strong="H7350"\w* \w off|strong="H7350"\w*, \w what|strong="H3045"\w* \w I|strong="H3045"\w* \w have|strong="H3045"\w* \w done|strong="H6213"\w*; +\q2 \w and|strong="H8085"\w*, \w you|strong="H6213"\w* \w who|strong="H7350"\w* \w are|strong="H7350"\w* \w near|strong="H7138"\w*, \w acknowledge|strong="H3045"\w* \w my|strong="H8085"\w* \w might|strong="H1369"\w*.” +\q1 +\v 14 \w The|strong="H6726"\w* \w sinners|strong="H2400"\w* \w in|strong="H1481"\w* \w Zion|strong="H6726"\w* \w are|strong="H6726"\w* \w afraid|strong="H6342"\w*. +\q2 \w Trembling|strong="H7461"\w* \w has|strong="H4310"\w* seized \w the|strong="H6726"\w* \w godless|strong="H2611"\w* ones. +\q1 \w Who|strong="H4310"\w* \w among|strong="H4310"\w* us \w can|strong="H4310"\w* \w live|strong="H1481"\w* \w with|strong="H6726"\w* \w the|strong="H6726"\w* devouring \w fire|strong="H4168"\w*? +\q2 \w Who|strong="H4310"\w* \w among|strong="H4310"\w* us \w can|strong="H4310"\w* \w live|strong="H1481"\w* \w with|strong="H6726"\w* \w everlasting|strong="H5769"\w* \w burning|strong="H4168"\w*? +\q1 +\v 15 \w He|strong="H1980"\w* \w who|strong="H1980"\w* \w walks|strong="H1980"\w* \w righteously|strong="H6666"\w* +\q2 \w and|strong="H1980"\w* \w speaks|strong="H1696"\w* blamelessly, +\q2 \w he|strong="H1980"\w* \w who|strong="H1980"\w* \w despises|strong="H3988"\w* \w the|strong="H8085"\w* \w gain|strong="H1215"\w* \w of|strong="H5869"\w* \w oppressions|strong="H4642"\w*, +\q2 \w who|strong="H1980"\w* gestures \w with|strong="H1980"\w* \w his|strong="H8085"\w* \w hands|strong="H3709"\w*, refusing \w to|strong="H1696"\w* \w take|strong="H1980"\w* \w a|strong="H3068"\w* \w bribe|strong="H7810"\w*, +\q2 \w who|strong="H1980"\w* stops \w his|strong="H8085"\w* ears \w from|strong="H1980"\w* \w hearing|strong="H8085"\w* \w of|strong="H5869"\w* \w bloodshed|strong="H1818"\w*, +\q2 \w and|strong="H1980"\w* \w shuts|strong="H6105"\w* \w his|strong="H8085"\w* \w eyes|strong="H5869"\w* \w from|strong="H1980"\w* \w looking|strong="H7200"\w* \w at|strong="H7200"\w* \w evil|strong="H7451"\w*— +\q1 +\v 16 \w he|strong="H1931"\w* \w will|strong="H5414"\w* \w dwell|strong="H7931"\w* \w on|strong="H7931"\w* \w high|strong="H4791"\w*. +\q2 \w His|strong="H5414"\w* \w place|strong="H5414"\w* \w of|strong="H4325"\w* defense \w will|strong="H5414"\w* \w be|strong="H5414"\w* \w the|strong="H5414"\w* fortress \w of|strong="H4325"\w* \w rocks|strong="H5553"\w*. +\q2 \w His|strong="H5414"\w* \w bread|strong="H3899"\w* \w will|strong="H5414"\w* \w be|strong="H5414"\w* \w supplied|strong="H5414"\w*. +\q2 \w His|strong="H5414"\w* \w waters|strong="H4325"\w* \w will|strong="H5414"\w* \w be|strong="H5414"\w* sure. +\b +\q1 +\v 17 \w Your|strong="H7200"\w* \w eyes|strong="H5869"\w* \w will|strong="H4428"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w* \w in|strong="H4428"\w* \w his|strong="H7200"\w* \w beauty|strong="H3308"\w*. +\q2 \w They|strong="H7200"\w* \w will|strong="H4428"\w* \w see|strong="H7200"\w* \w a|strong="H3068"\w* \w distant|strong="H4801"\w* land. +\q1 +\v 18 \w Your|strong="H5608"\w* \w heart|strong="H3820"\w* \w will|strong="H3820"\w* \w meditate|strong="H1897"\w* \w on|strong="H1897"\w* \w the|strong="H5608"\w* terror. +\q2 Where \w is|strong="H3820"\w* \w he|strong="H3820"\w* who \w counted|strong="H5608"\w*? +\q2 Where \w is|strong="H3820"\w* \w he|strong="H3820"\w* who \w weighed|strong="H8254"\w*? +\q2 Where \w is|strong="H3820"\w* \w he|strong="H3820"\w* who \w counted|strong="H5608"\w* \w the|strong="H5608"\w* \w towers|strong="H4026"\w*? +\q1 +\v 19 \w You|strong="H3808"\w* \w will|strong="H5971"\w* \w no|strong="H3808"\w* \w longer|strong="H3808"\w* \w see|strong="H7200"\w* \w the|strong="H8085"\w* \w fierce|strong="H3267"\w* \w people|strong="H5971"\w*, +\q2 \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w of|strong="H5971"\w* \w a|strong="H3068"\w* deep \w speech|strong="H8193"\w* \w that|strong="H5971"\w* \w you|strong="H3808"\w* \w can|strong="H7200"\w*’t comprehend, +\q2 \w with|strong="H5971"\w* \w a|strong="H3068"\w* \w strange|strong="H6012"\w* \w language|strong="H3956"\w* \w that|strong="H5971"\w* \w you|strong="H3808"\w* \w can|strong="H7200"\w*’t \w understand|strong="H8085"\w*. +\q1 +\v 20 \w Look|strong="H7200"\w* \w at|strong="H7200"\w* \w Zion|strong="H6726"\w*, \w the|strong="H3605"\w* \w city|strong="H7151"\w* \w of|strong="H5869"\w* \w our|strong="H3605"\w* \w appointed|strong="H4150"\w* \w festivals|strong="H4150"\w*. +\q2 \w Your|strong="H3605"\w* \w eyes|strong="H5869"\w* \w will|strong="H5869"\w* \w see|strong="H7200"\w* \w Jerusalem|strong="H3389"\w*, \w a|strong="H3068"\w* \w quiet|strong="H7600"\w* \w habitation|strong="H5116"\w*, +\q2 \w a|strong="H3068"\w* \w tent|strong="H3489"\w* \w that|strong="H7200"\w* won’t \w be|strong="H5331"\w* \w removed|strong="H5265"\w*. +\q1 \w Its|strong="H3605"\w* \w stakes|strong="H3489"\w* \w will|strong="H5869"\w* \w never|strong="H5331"\w* \w be|strong="H5331"\w* \w plucked|strong="H5265"\w* \w up|strong="H7200"\w*, +\q2 \w nor|strong="H1077"\w* \w will|strong="H5869"\w* \w any|strong="H3605"\w* \w of|strong="H5869"\w* \w its|strong="H3605"\w* \w cords|strong="H2256"\w* \w be|strong="H5331"\w* \w broken|strong="H5423"\w*. +\q1 +\v 21 \w But|strong="H3588"\w* \w there|strong="H8033"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w with|strong="H3068"\w* \w us|strong="H3588"\w* \w in|strong="H3068"\w* majesty, +\q2 \w a|strong="H3068"\w* \w place|strong="H4725"\w* \w of|strong="H3068"\w* \w wide|strong="H7342"\w* \w rivers|strong="H5104"\w* \w and|strong="H3068"\w* \w streams|strong="H5104"\w*, +\q2 \w in|strong="H3068"\w* \w which|strong="H3068"\w* \w no|strong="H3808"\w* galley \w with|strong="H3068"\w* \w oars|strong="H7885"\w* \w will|strong="H3068"\w* \w go|strong="H3212"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H3068"\w* \w any|strong="H3588"\w* gallant \w ship|strong="H6716"\w* \w pass|strong="H5674"\w* \w by|strong="H3027"\w* \w there|strong="H8033"\w*. +\q1 +\v 22 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w our|strong="H3068"\w* \w judge|strong="H8199"\w*. +\q2 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w our|strong="H3068"\w* \w lawgiver|strong="H2710"\w*. +\q2 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w our|strong="H3068"\w* \w king|strong="H4428"\w*. +\q2 \w He|strong="H1931"\w* \w will|strong="H3068"\w* \w save|strong="H3467"\w* \w us|strong="H3588"\w*. +\b +\q1 +\v 23 \w Your|strong="H2388"\w* rigging \w is|strong="H3653"\w* untied. +\q2 \w They|strong="H1077"\w* couldn’t \w strengthen|strong="H2388"\w* \w the|strong="H2388"\w* \w foot|strong="H3653"\w* \w of|strong="H2256"\w* \w their|strong="H2388"\w* \w mast|strong="H8650"\w*. +\q2 \w They|strong="H1077"\w* couldn’t \w spread|strong="H6566"\w* \w the|strong="H2388"\w* \w sail|strong="H5251"\w*. +\q1 Then \w the|strong="H2388"\w* \w prey|strong="H7998"\w* \w of|strong="H2256"\w* \w a|strong="H3068"\w* \w great|strong="H4766"\w* \w plunder|strong="H7998"\w* was \w divided|strong="H2505"\w*. +\q2 \w The|strong="H2388"\w* \w lame|strong="H6455"\w* \w took|strong="H2388"\w* \w the|strong="H2388"\w* \w prey|strong="H7998"\w*. +\b +\q1 +\v 24 \w The|strong="H5375"\w* \w inhabitant|strong="H3427"\w* won’t say, “\w I|strong="H5971"\w* \w am|strong="H2470"\w* \w sick|strong="H2470"\w*.” +\q2 \w The|strong="H5375"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w dwell|strong="H3427"\w* \w therein|strong="H3427"\w* \w will|strong="H5971"\w* \w be|strong="H5971"\w* \w forgiven|strong="H5375"\w* \w their|strong="H5375"\w* \w iniquity|strong="H5771"\w*. +\c 34 +\q1 +\v 1 \w Come|strong="H7126"\w* \w near|strong="H7126"\w*, \w you|strong="H3605"\w* \w nations|strong="H1471"\w*, \w to|strong="H8085"\w* \w hear|strong="H8085"\w*! +\q2 \w Listen|strong="H8085"\w*, \w you|strong="H3605"\w* \w peoples|strong="H3816"\w*. +\q2 Let \w the|strong="H3605"\w* earth \w and|strong="H8085"\w* \w all|strong="H3605"\w* \w it|strong="H7126"\w* \w contains|strong="H4393"\w* \w hear|strong="H8085"\w*, +\q2 \w the|strong="H3605"\w* \w world|strong="H8398"\w*, \w and|strong="H8085"\w* \w everything|strong="H3605"\w* \w that|strong="H3605"\w* \w comes|strong="H7126"\w* \w from|strong="H8085"\w* \w it|strong="H7126"\w*. +\q1 +\v 2 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* enraged \w against|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*, +\q2 \w and|strong="H3068"\w* \w angry|strong="H2534"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w armies|strong="H6635"\w*. +\q1 \w He|strong="H3588"\w* \w has|strong="H3068"\w* \w utterly|strong="H2763"\w* \w destroyed|strong="H2763"\w* \w them|strong="H5414"\w*. +\q2 \w He|strong="H3588"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w them|strong="H5414"\w* \w over|strong="H5921"\w* \w for|strong="H3588"\w* \w slaughter|strong="H2874"\w*. +\q1 +\v 3 \w Their|strong="H7993"\w* \w slain|strong="H2491"\w* \w will|strong="H2022"\w* also \w be|strong="H2022"\w* \w cast|strong="H7993"\w* \w out|strong="H7993"\w*, +\q2 \w and|strong="H2022"\w* \w the|strong="H5927"\w* stench \w of|strong="H2022"\w* \w their|strong="H7993"\w* \w dead|strong="H2491"\w* \w bodies|strong="H6297"\w* \w will|strong="H2022"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w*. +\q2 \w The|strong="H5927"\w* \w mountains|strong="H2022"\w* \w will|strong="H2022"\w* \w melt|strong="H4549"\w* \w in|strong="H5927"\w* \w their|strong="H7993"\w* \w blood|strong="H1818"\w*. +\q1 +\v 4 \w All|strong="H3605"\w* \w of|strong="H6635"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w* \w of|strong="H6635"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w* \w will|strong="H8064"\w* \w be|strong="H8064"\w* \w dissolved|strong="H4743"\w*. +\q2 \w The|strong="H3605"\w* \w sky|strong="H8064"\w* \w will|strong="H8064"\w* \w be|strong="H8064"\w* \w rolled|strong="H1556"\w* \w up|strong="H3605"\w* \w like|strong="H8064"\w* \w a|strong="H3068"\w* \w scroll|strong="H5612"\w*, +\q2 \w and|strong="H8064"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w armies|strong="H6635"\w* \w will|strong="H8064"\w* \w fade|strong="H5034"\w* \w away|strong="H4743"\w*, +\q2 \w as|strong="H3605"\w* \w a|strong="H3068"\w* \w leaf|strong="H5929"\w* \w fades|strong="H5034"\w* \w from|strong="H8064"\w* \w off|strong="H5034"\w* \w a|strong="H3068"\w* \w vine|strong="H1612"\w* \w or|strong="H1612"\w* \w a|strong="H3068"\w* \w fig|strong="H8384"\w* \w tree|strong="H8384"\w*. +\q1 +\v 5 \w For|strong="H3588"\w* \w my|strong="H5921"\w* \w sword|strong="H2719"\w* \w has|strong="H3588"\w* \w drunk|strong="H7301"\w* \w its|strong="H5921"\w* \w fill|strong="H7301"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w sky|strong="H8064"\w*. +\q2 \w Behold|strong="H2009"\w*, \w it|strong="H5921"\w* \w will|strong="H5971"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w* \w on|strong="H5921"\w* Edom, +\q2 \w and|strong="H8064"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w of|strong="H5971"\w* \w my|strong="H5921"\w* \w curse|strong="H2764"\w*, \w for|strong="H3588"\w* \w judgment|strong="H4941"\w*. +\q1 +\v 6 \w Yahweh|strong="H3068"\w*’s \w sword|strong="H2719"\w* \w is|strong="H3068"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w blood|strong="H1818"\w*. +\q2 \w It|strong="H3588"\w* \w is|strong="H3068"\w* \w covered|strong="H4390"\w* \w with|strong="H4390"\w* \w fat|strong="H2459"\w*, \w with|strong="H4390"\w* \w the|strong="H3588"\w* \w blood|strong="H1818"\w* \w of|strong="H3068"\w* \w lambs|strong="H3733"\w* \w and|strong="H3068"\w* \w goats|strong="H6260"\w*, +\q2 \w with|strong="H4390"\w* \w the|strong="H3588"\w* \w fat|strong="H2459"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w kidneys|strong="H3629"\w* \w of|strong="H3068"\w* \w rams|strong="H3733"\w*; +\q2 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w a|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w in|strong="H3068"\w* \w Bozrah|strong="H1224"\w*, +\q2 \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w slaughter|strong="H2874"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* land \w of|strong="H3068"\w* Edom. +\q1 +\v 7 \w The|strong="H5973"\w* \w wild|strong="H7214"\w* \w oxen|strong="H6499"\w* \w will|strong="H1818"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w* \w with|strong="H5973"\w* \w them|strong="H3381"\w*, +\q2 \w and|strong="H6499"\w* \w the|strong="H5973"\w* \w young|strong="H6499"\w* \w bulls|strong="H6499"\w* \w with|strong="H5973"\w* \w the|strong="H5973"\w* mighty \w bulls|strong="H6499"\w*; +\q2 \w and|strong="H6499"\w* \w their|strong="H3381"\w* land \w will|strong="H1818"\w* \w be|strong="H1818"\w* \w drunken|strong="H7301"\w* \w with|strong="H5973"\w* \w blood|strong="H1818"\w*, +\q2 \w and|strong="H6499"\w* \w their|strong="H3381"\w* \w dust|strong="H6083"\w* \w made|strong="H6083"\w* \w greasy|strong="H1878"\w* \w with|strong="H5973"\w* \w fat|strong="H2459"\w*. +\b +\q1 +\v 8 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w vengeance|strong="H5359"\w*, +\q2 \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w of|strong="H3068"\w* \w recompense|strong="H7966"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w cause|strong="H7379"\w* \w of|strong="H3068"\w* \w Zion|strong="H6726"\w*. +\q1 +\v 9 \w Its|strong="H1961"\w* \w streams|strong="H5158"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w turned|strong="H2015"\w* \w into|strong="H2015"\w* \w pitch|strong="H2203"\w*, +\q2 \w its|strong="H1961"\w* \w dust|strong="H6083"\w* \w into|strong="H2015"\w* \w sulfur|strong="H1614"\w*, +\q2 \w and|strong="H6083"\w* \w its|strong="H1961"\w* land \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w burning|strong="H1197"\w* \w pitch|strong="H2203"\w*. +\q1 +\v 10 \w It|strong="H5927"\w* won’t \w be|strong="H3808"\w* \w quenched|strong="H3518"\w* \w night|strong="H3915"\w* \w or|strong="H3808"\w* \w day|strong="H3119"\w*. +\q2 \w Its|strong="H5927"\w* \w smoke|strong="H6227"\w* \w will|strong="H3808"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w forever|strong="H5769"\w*. +\q2 \w From|strong="H5927"\w* \w generation|strong="H1755"\w* \w to|strong="H5927"\w* \w generation|strong="H1755"\w*, \w it|strong="H5927"\w* \w will|strong="H3808"\w* \w lie|strong="H5927"\w* \w waste|strong="H2717"\w*. +\q2 \w No|strong="H3808"\w* \w one|strong="H3808"\w* \w will|strong="H3808"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w it|strong="H5927"\w* \w forever|strong="H5769"\w* \w and|strong="H5769"\w* \w ever|strong="H5769"\w*. +\q1 +\v 11 \w But|strong="H5921"\w* \w the|strong="H5921"\w* \w pelican|strong="H6893"\w* \w and|strong="H8414"\w* \w the|strong="H5921"\w* porcupine \w will|strong="H7090"\w* \w possess|strong="H3423"\w* \w it|strong="H5921"\w*. +\q2 \w The|strong="H5921"\w* \w owl|strong="H3244"\w* \w and|strong="H8414"\w* \w the|strong="H5921"\w* \w raven|strong="H6158"\w* \w will|strong="H7090"\w* \w dwell|strong="H7931"\w* \w in|strong="H5921"\w* \w it|strong="H5921"\w*. +\q1 \w He|strong="H5921"\w* \w will|strong="H7090"\w* \w stretch|strong="H5186"\w* \w the|strong="H5921"\w* \w line|strong="H6957"\w* \w of|strong="H5921"\w* \w confusion|strong="H8414"\w* \w over|strong="H5921"\w* \w it|strong="H5921"\w*, +\q2 \w and|strong="H8414"\w* \w the|strong="H5921"\w* plumb \w line|strong="H6957"\w* \w of|strong="H5921"\w* \w emptiness|strong="H8414"\w*. +\q1 +\v 12 \w They|strong="H8033"\w* \w shall|strong="H8269"\w* \w call|strong="H7121"\w* \w its|strong="H3605"\w* \w nobles|strong="H2715"\w* \w to|strong="H1961"\w* \w the|strong="H3605"\w* \w kingdom|strong="H4410"\w*, \w but|strong="H1961"\w* \w none|strong="H3605"\w* \w shall|strong="H8269"\w* \w be|strong="H1961"\w* \w there|strong="H8033"\w*; +\q2 \w and|strong="H8033"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w princes|strong="H8269"\w* \w shall|strong="H8269"\w* \w be|strong="H1961"\w* \w nothing|strong="H3605"\w*. +\q1 +\v 13 \w Thorns|strong="H2336"\w* \w will|strong="H1961"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w in|strong="H5927"\w* \w its|strong="H5927"\w* palaces, +\q2 \w nettles|strong="H7057"\w* \w and|strong="H5927"\w* \w thistles|strong="H2336"\w* \w in|strong="H5927"\w* \w its|strong="H5927"\w* \w fortresses|strong="H4013"\w*; +\q2 \w and|strong="H5927"\w* \w it|strong="H5927"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w habitation|strong="H5116"\w* \w of|strong="H1323"\w* \w jackals|strong="H8577"\w*, +\q2 \w a|strong="H3068"\w* \w court|strong="H2681"\w* \w for|strong="H1961"\w* \w ostriches|strong="H3284"\w*. +\q1 +\v 14 \w The|strong="H5921"\w* wild animals \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w desert|strong="H6728"\w* \w will|strong="H7453"\w* \w meet|strong="H6298"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* wolves, +\q2 \w and|strong="H8033"\w* \w the|strong="H5921"\w* wild \w goat|strong="H8163"\w* \w will|strong="H7453"\w* \w cry|strong="H7121"\w* \w to|strong="H5921"\w* \w his|strong="H7121"\w* \w fellow|strong="H7453"\w*. +\q1 Yes, \w the|strong="H5921"\w* \w night|strong="H3917"\w* creature\f + \fr 34:14 \ft literally, lilith, which could also be a night demon or night monster\f* \w shall|strong="H8163"\w* \w settle|strong="H7280"\w* \w there|strong="H8033"\w*, +\q2 \w and|strong="H8033"\w* \w shall|strong="H8163"\w* \w find|strong="H4672"\w* \w herself|strong="H5921"\w* \w a|strong="H3068"\w* \w place|strong="H4494"\w* \w of|strong="H5921"\w* \w rest|strong="H4494"\w*. +\q1 +\v 15 \w The|strong="H8033"\w* arrow \w snake|strong="H7091"\w* \w will|strong="H8033"\w* \w make|strong="H1234"\w* her \w nest|strong="H7077"\w* \w there|strong="H8033"\w*, +\q2 \w and|strong="H8033"\w* \w lay|strong="H4422"\w*, \w hatch|strong="H1234"\w*, \w and|strong="H8033"\w* \w gather|strong="H6908"\w* under her \w shade|strong="H6738"\w*. +\q2 Yes, \w the|strong="H8033"\w* kites \w will|strong="H8033"\w* be \w gathered|strong="H6908"\w* \w there|strong="H8033"\w*, \w every|strong="H4422"\w* \w one|strong="H4422"\w* \w with|strong="H8033"\w* her \w mate|strong="H7468"\w*. +\b +\q1 +\v 16 \w Search|strong="H1875"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w book|strong="H5612"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w read|strong="H7121"\w*: +\q2 \w not|strong="H3808"\w* \w one|strong="H3808"\w* \w of|strong="H3068"\w* \w these|strong="H2007"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w missing|strong="H6485"\w*. +\q2 \w None|strong="H3808"\w* \w will|strong="H3068"\w* \w lack|strong="H6485"\w* \w her|strong="H5921"\w* \w mate|strong="H7468"\w*. +\q2 \w For|strong="H3588"\w* \w my|strong="H3068"\w* \w mouth|strong="H6310"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w*, +\q2 \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w Spirit|strong="H7307"\w* \w has|strong="H3068"\w* \w gathered|strong="H6908"\w* \w them|strong="H5921"\w*. +\q1 +\v 17 \w He|strong="H1931"\w* \w has|strong="H3027"\w* \w cast|strong="H5307"\w* \w the|strong="H5704"\w* \w lot|strong="H1486"\w* \w for|strong="H5704"\w* \w them|strong="H1992"\w*, +\q2 \w and|strong="H3027"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w* \w has|strong="H3027"\w* \w divided|strong="H2505"\w* \w it|strong="H1931"\w* \w to|strong="H5704"\w* \w them|strong="H1992"\w* \w with|strong="H3027"\w* \w a|strong="H3068"\w* \w measuring|strong="H6957"\w* \w line|strong="H6957"\w*. +\q2 \w They|strong="H1992"\w* \w shall|strong="H3027"\w* \w possess|strong="H3423"\w* \w it|strong="H1931"\w* \w forever|strong="H5769"\w*. +\q2 \w From|strong="H3027"\w* \w generation|strong="H1755"\w* \w to|strong="H5704"\w* \w generation|strong="H1755"\w* \w they|strong="H1992"\w* \w will|strong="H3027"\w* \w dwell|strong="H7931"\w* \w in|strong="H7931"\w* \w it|strong="H1931"\w*. +\b +\c 35 +\q1 +\v 1 \w The|strong="H4057"\w* \w wilderness|strong="H4057"\w* \w and|strong="H4057"\w* \w the|strong="H4057"\w* \w dry|strong="H6723"\w* \w land|strong="H6723"\w* \w will|strong="H6160"\w* be \w glad|strong="H1523"\w*. +\q2 \w The|strong="H4057"\w* \w desert|strong="H6160"\w* \w will|strong="H6160"\w* \w rejoice|strong="H1523"\w* \w and|strong="H4057"\w* \w blossom|strong="H6524"\w* \w like|strong="H4057"\w* \w a|strong="H3068"\w* \w rose|strong="H2261"\w*. +\q1 +\v 2 \w It|strong="H5414"\w* \w will|strong="H3068"\w* \w blossom|strong="H6524"\w* \w abundantly|strong="H6524"\w*, +\q2 \w and|strong="H3068"\w* \w rejoice|strong="H1523"\w* \w even|strong="H3068"\w* \w with|strong="H3068"\w* \w joy|strong="H7442"\w* \w and|strong="H3068"\w* \w singing|strong="H7442"\w*. +\q2 \w Lebanon|strong="H3844"\w*’s \w glory|strong="H3519"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w given|strong="H5414"\w* \w to|strong="H3068"\w* \w it|strong="H5414"\w*, +\q2 \w the|strong="H7200"\w* excellence \w of|strong="H3068"\w* \w Carmel|strong="H3760"\w* \w and|strong="H3068"\w* \w Sharon|strong="H8289"\w*. +\q2 \w They|strong="H1992"\w* \w will|strong="H3068"\w* \w see|strong="H7200"\w* \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w*, +\q2 \w the|strong="H7200"\w* excellence \w of|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*. +\b +\q1 +\v 3 \w Strengthen|strong="H2388"\w* \w the|strong="H2388"\w* \w weak|strong="H7504"\w* \w hands|strong="H3027"\w*, +\q2 \w and|strong="H3027"\w* \w make|strong="H3027"\w* \w the|strong="H2388"\w* \w feeble|strong="H3782"\w* \w knees|strong="H1290"\w* \w firm|strong="H2388"\w*. +\q1 +\v 4 Tell \w those|strong="H1931"\w* \w who|strong="H1931"\w* \w have|strong="H3372"\w* \w a|strong="H3068"\w* \w fearful|strong="H3372"\w* \w heart|strong="H3820"\w*, “\w Be|strong="H3820"\w* \w strong|strong="H2388"\w*! +\q2 Don’t \w be|strong="H3820"\w* \w afraid|strong="H3372"\w*! +\q1 \w Behold|strong="H2009"\w*, \w your|strong="H3372"\w* God \w will|strong="H3820"\w* come \w with|strong="H3820"\w* \w vengeance|strong="H5359"\w*, God’s \w retribution|strong="H3820"\w*. +\q2 \w He|strong="H1931"\w* \w will|strong="H3820"\w* come \w and|strong="H2388"\w* \w save|strong="H3467"\w* \w you|strong="H3467"\w*. +\b +\q1 +\v 5 \w Then|strong="H6491"\w* \w the|strong="H6605"\w* \w eyes|strong="H5869"\w* \w of|strong="H5869"\w* \w the|strong="H6605"\w* \w blind|strong="H5787"\w* \w will|strong="H5869"\w* \w be|strong="H5869"\w* \w opened|strong="H6605"\w*, +\q2 \w and|strong="H5869"\w* \w the|strong="H6605"\w* ears \w of|strong="H5869"\w* \w the|strong="H6605"\w* \w deaf|strong="H2795"\w* \w will|strong="H5869"\w* \w be|strong="H5869"\w* \w unstopped|strong="H6605"\w*. +\q1 +\v 6 \w Then|strong="H3588"\w* \w the|strong="H3588"\w* \w lame|strong="H6455"\w* \w man|strong="H6455"\w* \w will|strong="H4325"\w* \w leap|strong="H1801"\w* \w like|strong="H4057"\w* \w a|strong="H3068"\w* deer, +\q2 \w and|strong="H4325"\w* \w the|strong="H3588"\w* \w tongue|strong="H3956"\w* \w of|strong="H4325"\w* \w the|strong="H3588"\w* mute \w will|strong="H4325"\w* \w sing|strong="H7442"\w*; +\q2 \w for|strong="H3588"\w* \w waters|strong="H4325"\w* \w will|strong="H4325"\w* \w break|strong="H1234"\w* \w out|strong="H1234"\w* \w in|strong="H4325"\w* \w the|strong="H3588"\w* \w wilderness|strong="H4057"\w*, +\q2 \w and|strong="H4325"\w* \w streams|strong="H5158"\w* \w in|strong="H4325"\w* \w the|strong="H3588"\w* \w desert|strong="H6160"\w*. +\q1 +\v 7 \w The|strong="H1961"\w* burning sand \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w pool|strong="H4325"\w*, +\q2 \w and|strong="H4325"\w* \w the|strong="H1961"\w* \w thirsty|strong="H6774"\w* \w ground|strong="H6774"\w* \w springs|strong="H4002"\w* \w of|strong="H4325"\w* \w water|strong="H4325"\w*. +\q2 \w Grass|strong="H2682"\w* \w with|strong="H4325"\w* \w reeds|strong="H7070"\w* \w and|strong="H4325"\w* \w rushes|strong="H1573"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w in|strong="H1961"\w* \w the|strong="H1961"\w* \w habitation|strong="H5116"\w* \w of|strong="H4325"\w* \w jackals|strong="H8577"\w*, where they \w lay|strong="H1961"\w*. +\q1 +\v 8 \w A|strong="H3068"\w* \w highway|strong="H1870"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w there|strong="H8033"\w*, \w a|strong="H3068"\w* \w road|strong="H1870"\w*, +\q2 \w and|strong="H1980"\w* \w it|strong="H1931"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w called|strong="H7121"\w* “\w The|strong="H7121"\w* \w Holy|strong="H6944"\w* \w Way|strong="H1870"\w*”. +\q1 \w The|strong="H7121"\w* \w unclean|strong="H2931"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w it|strong="H1931"\w*, +\q2 \w but|strong="H3808"\w* \w it|strong="H1931"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w for|strong="H7121"\w* \w those|strong="H1931"\w* \w who|strong="H1931"\w* \w walk|strong="H1980"\w* \w in|strong="H1980"\w* \w the|strong="H7121"\w* \w Way|strong="H1870"\w*. +\q2 Wicked fools \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w go|strong="H1980"\w* \w there|strong="H8033"\w*. +\q1 +\v 9 \w No|strong="H3808"\w* lion \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w there|strong="H8033"\w*, +\q2 \w nor|strong="H3808"\w* \w will|strong="H1961"\w* \w any|strong="H1961"\w* \w ravenous|strong="H6530"\w* \w animal|strong="H2416"\w* \w go|strong="H1980"\w* \w up|strong="H5927"\w* \w on|strong="H1980"\w* \w it|strong="H8033"\w*. +\q2 \w They|strong="H8033"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w found|strong="H4672"\w* \w there|strong="H8033"\w*; +\q2 \w but|strong="H3808"\w* \w the|strong="H5927"\w* \w redeemed|strong="H1350"\w* \w will|strong="H1961"\w* \w walk|strong="H1980"\w* \w there|strong="H8033"\w*. +\q1 +\v 10 \w Then|strong="H7725"\w* \w Yahweh|strong="H3068"\w*’s \w ransomed|strong="H6299"\w* ones \w will|strong="H3068"\w* \w return|strong="H7725"\w*, +\q2 \w and|strong="H3068"\w* \w come|strong="H7725"\w* \w with|strong="H3068"\w* \w singing|strong="H7440"\w* \w to|strong="H7725"\w* \w Zion|strong="H6726"\w*; +\q2 \w and|strong="H3068"\w* \w everlasting|strong="H5769"\w* \w joy|strong="H8057"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w on|strong="H5921"\w* \w their|strong="H3068"\w* \w heads|strong="H7218"\w*. +\q1 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w obtain|strong="H5381"\w* \w gladness|strong="H8057"\w* \w and|strong="H3068"\w* \w joy|strong="H8057"\w*, +\q2 \w and|strong="H3068"\w* \w sorrow|strong="H3015"\w* \w and|strong="H3068"\w* sighing \w will|strong="H3068"\w* \w flee|strong="H5127"\w* \w away|strong="H7725"\w*.” +\c 36 +\p +\v 1 \w Now|strong="H1961"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w fourteenth|strong="H6240"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* \w Hezekiah|strong="H2396"\w*, \w Sennacherib|strong="H5576"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w attacked|strong="H5927"\w* \w all|strong="H3605"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w fortified|strong="H1219"\w* \w cities|strong="H5892"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w captured|strong="H8610"\w* \w them|strong="H5921"\w*. +\v 2 \w The|strong="H7971"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w sent|strong="H7971"\w* \w Rabshakeh|strong="H7262"\w* \w from|strong="H7971"\w* \w Lachish|strong="H3923"\w* \w to|strong="H7971"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H7971"\w* \w King|strong="H4428"\w* \w Hezekiah|strong="H2396"\w* \w with|strong="H3389"\w* \w a|strong="H3068"\w* \w large|strong="H3515"\w* \w army|strong="H2426"\w*. \w He|strong="H3389"\w* \w stood|strong="H5975"\w* \w by|strong="H5975"\w* \w the|strong="H7971"\w* aqueduct \w from|strong="H7971"\w* \w the|strong="H7971"\w* \w upper|strong="H5945"\w* \w pool|strong="H1295"\w* \w in|strong="H4428"\w* \w the|strong="H7971"\w* fuller’s \w field|strong="H7704"\w* \w highway|strong="H4546"\w*. +\v 3 \w Then|strong="H3318"\w* Eliakim \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hilkiah|strong="H2518"\w*, \w who|strong="H1121"\w* \w was|strong="H1004"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w household|strong="H1004"\w*, \w and|strong="H1121"\w* \w Shebna|strong="H7644"\w* \w the|strong="H5921"\w* \w scribe|strong="H5608"\w*, \w and|strong="H1121"\w* \w Joah|strong="H3098"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Asaph \w the|strong="H5921"\w* \w recorder|strong="H2142"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w him|strong="H5921"\w*. +\p +\v 4 \w Rabshakeh|strong="H7262"\w* said \w to|strong="H4428"\w* \w them|strong="H2088"\w*, “\w Now|strong="H4994"\w* \w tell|strong="H4994"\w* \w Hezekiah|strong="H2396"\w*, ‘\w The|strong="H3541"\w* \w great|strong="H1419"\w* \w king|strong="H4428"\w*, \w the|strong="H3541"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria, \w says|strong="H3541"\w*, “\w What|strong="H4100"\w* confidence \w is|strong="H2088"\w* \w this|strong="H2088"\w* \w in|strong="H4428"\w* \w which|strong="H4100"\w* \w you|strong="H4100"\w* trust? +\v 5 \w I|strong="H3588"\w* \w say|strong="H1697"\w* \w that|strong="H3588"\w* \w your|strong="H5921"\w* \w counsel|strong="H6098"\w* \w and|strong="H1697"\w* \w strength|strong="H1369"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w war|strong="H4421"\w* \w are|strong="H1697"\w* \w only|strong="H3588"\w* \w vain|strong="H8193"\w* \w words|strong="H1697"\w*. \w Now|strong="H6258"\w* \w in|strong="H5921"\w* \w whom|strong="H4310"\w* \w do|strong="H1697"\w* \w you|strong="H3588"\w* trust, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1697"\w* \w rebelled|strong="H4775"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*? +\v 6 \w Behold|strong="H2009"\w*, \w you|strong="H3605"\w* trust \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w staff|strong="H4938"\w* \w of|strong="H4428"\w* \w this|strong="H2088"\w* \w bruised|strong="H7533"\w* \w reed|strong="H7070"\w*, \w even|strong="H3651"\w* \w in|strong="H5921"\w* \w Egypt|strong="H4714"\w*, \w which|strong="H2088"\w* \w if|strong="H2009"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w leans|strong="H5564"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*, \w it|strong="H5921"\w* \w will|strong="H4428"\w* \w go|strong="H4428"\w* \w into|strong="H5921"\w* \w his|strong="H3605"\w* \w hand|strong="H3709"\w* \w and|strong="H4428"\w* \w pierce|strong="H5344"\w* \w it|strong="H5921"\w*. \w So|strong="H3651"\w* \w is|strong="H2088"\w* \w Pharaoh|strong="H6547"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w to|strong="H5921"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* trust \w in|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 7 \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* tell \w me|strong="H6440"\w*, ‘\w We|strong="H3588"\w* trust \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*,’ isn’t \w that|strong="H3588"\w* \w he|strong="H1931"\w* whose \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w and|strong="H3063"\w* whose \w altars|strong="H4196"\w* \w Hezekiah|strong="H2396"\w* \w has|strong="H3068"\w* \w taken|strong="H5493"\w* \w away|strong="H5493"\w*, \w and|strong="H3063"\w* \w has|strong="H3068"\w* said \w to|strong="H3068"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w to|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, ‘\w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w worship|strong="H7812"\w* \w before|strong="H6440"\w* \w this|strong="H2088"\w* \w altar|strong="H4196"\w*’?” +\v 8 \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w*, \w please|strong="H4994"\w* \w make|strong="H5414"\w* \w a|strong="H3068"\w* pledge \w to|strong="H3201"\w* \w my|strong="H5414"\w* \w master|strong="H5414"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria, \w and|strong="H4428"\w* \w I|strong="H5414"\w* \w will|strong="H4428"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* two thousand \w horses|strong="H5483"\w*, if \w you|strong="H5414"\w* \w are|strong="H5483"\w* \w able|strong="H3201"\w* \w on|strong="H5921"\w* \w your|strong="H5414"\w* \w part|strong="H5921"\w* \w to|strong="H3201"\w* \w set|strong="H5414"\w* \w riders|strong="H7392"\w* \w on|strong="H5921"\w* \w them|strong="H5414"\w*. +\v 9 How \w then|strong="H7725"\w* \w can|strong="H5650"\w* \w you|strong="H6440"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H6440"\w* \w one|strong="H6996"\w* \w captain|strong="H6346"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w least|strong="H6996"\w* \w of|strong="H6440"\w* \w my|strong="H5921"\w* master’s \w servants|strong="H5650"\w*, \w and|strong="H7725"\w* \w put|strong="H7725"\w* \w your|strong="H5921"\w* trust \w in|strong="H5921"\w* \w Egypt|strong="H4714"\w* \w for|strong="H5921"\w* \w chariots|strong="H7393"\w* \w and|strong="H7725"\w* \w for|strong="H5921"\w* \w horsemen|strong="H6571"\w*? +\v 10 \w Have|strong="H3068"\w* \w I|strong="H5921"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w now|strong="H6258"\w* \w without|strong="H1107"\w* \w Yahweh|strong="H3068"\w* \w against|strong="H5921"\w* \w this|strong="H2063"\w* land \w to|strong="H3068"\w* \w destroy|strong="H7843"\w* \w it|strong="H5921"\w*? \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w me|strong="H5921"\w*, “\w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w this|strong="H2063"\w* land, \w and|strong="H3068"\w* \w destroy|strong="H7843"\w* \w it|strong="H5921"\w*.”’” +\p +\v 11 \w Then|strong="H1696"\w* Eliakim, \w Shebna|strong="H7644"\w* \w and|strong="H5971"\w* \w Joah|strong="H3098"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Rabshakeh|strong="H7262"\w*, “\w Please|strong="H4994"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w your|strong="H5921"\w* \w servants|strong="H5650"\w* \w in|strong="H5921"\w* Aramaic, \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w understand|strong="H8085"\w* \w it|strong="H5921"\w*. Don’t \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w us|strong="H4994"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* Jews’ \w language|strong="H3066"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w hearing|strong="H8085"\w* \w of|strong="H5650"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w are|strong="H5971"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wall|strong="H2346"\w*.” +\p +\v 12 \w But|strong="H3808"\w* \w Rabshakeh|strong="H7262"\w* \w said|strong="H1696"\w*, “\w Has|strong="H1697"\w* \w my|strong="H5921"\w* \w master|strong="H3427"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w* only \w to|strong="H1696"\w* \w your|strong="H5921"\w* \w master|strong="H3427"\w* \w and|strong="H7971"\w* \w to|strong="H1696"\w* \w you|strong="H7971"\w*, \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w*, \w and|strong="H7971"\w* \w not|strong="H3808"\w* \w to|strong="H1696"\w* \w the|strong="H5921"\w* men \w who|strong="H3427"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wall|strong="H2346"\w*, \w who|strong="H3427"\w* \w will|strong="H1697"\w* eat \w their|strong="H5921"\w* \w own|strong="H5973"\w* \w dung|strong="H2716"\w* \w and|strong="H7971"\w* \w drink|strong="H8354"\w* \w their|strong="H5921"\w* \w own|strong="H5973"\w* \w urine|strong="H7890"\w* \w with|strong="H5973"\w* \w you|strong="H7971"\w*?” +\v 13 \w Then|strong="H5975"\w* \w Rabshakeh|strong="H7262"\w* \w stood|strong="H5975"\w*, \w and|strong="H4428"\w* \w called|strong="H7121"\w* \w out|strong="H1419"\w* \w with|strong="H1697"\w* \w a|strong="H3068"\w* \w loud|strong="H1419"\w* \w voice|strong="H6963"\w* \w in|strong="H4428"\w* \w the|strong="H8085"\w* Jews’ \w language|strong="H3066"\w*, \w and|strong="H4428"\w* \w said|strong="H1697"\w*, “\w Hear|strong="H8085"\w* \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H8085"\w* \w great|strong="H1419"\w* \w king|strong="H4428"\w*, \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria! +\v 14 \w The|strong="H3588"\w* \w king|strong="H4428"\w* \w says|strong="H3541"\w*, ‘Don’t \w let|strong="H3808"\w* \w Hezekiah|strong="H2396"\w* \w deceive|strong="H5377"\w* \w you|strong="H3588"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H4428"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w deliver|strong="H5337"\w* \w you|strong="H3588"\w*. +\v 15 Don’t \w let|strong="H5414"\w* \w Hezekiah|strong="H2396"\w* \w make|strong="H5414"\w* \w you|strong="H5414"\w* trust \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, saying, “\w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w surely|strong="H5414"\w* \w deliver|strong="H5337"\w* \w us|strong="H5414"\w*. \w This|strong="H2063"\w* \w city|strong="H5892"\w* won’t \w be|strong="H3808"\w* \w given|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria.”’ +\v 16 Don’t \w listen|strong="H8085"\w* \w to|strong="H3318"\w* \w Hezekiah|strong="H2396"\w*, \w for|strong="H3588"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w says|strong="H3541"\w*, ‘\w Make|strong="H6213"\w* \w your|strong="H8085"\w* \w peace|strong="H1293"\w* \w with|strong="H6213"\w* \w me|strong="H6213"\w*, \w and|strong="H4428"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w me|strong="H6213"\w*; \w and|strong="H4428"\w* \w each|strong="H3541"\w* \w of|strong="H4428"\w* \w you|strong="H3588"\w* eat \w from|strong="H3318"\w* \w his|strong="H8085"\w* \w vine|strong="H1612"\w*, \w and|strong="H4428"\w* \w each|strong="H3541"\w* \w one|strong="H6213"\w* \w from|strong="H3318"\w* \w his|strong="H8085"\w* \w fig|strong="H8384"\w* \w tree|strong="H8384"\w*, \w and|strong="H4428"\w* \w each|strong="H3541"\w* \w one|strong="H6213"\w* \w of|strong="H4428"\w* \w you|strong="H3588"\w* \w drink|strong="H8354"\w* \w the|strong="H8085"\w* \w waters|strong="H4325"\w* \w of|strong="H4428"\w* \w his|strong="H8085"\w* own cistern; +\v 17 \w until|strong="H5704"\w* \w I|strong="H5704"\w* come \w and|strong="H3899"\w* \w take|strong="H3947"\w* \w you|strong="H5704"\w* \w away|strong="H3947"\w* \w to|strong="H5704"\w* \w a|strong="H3068"\w* land \w like|strong="H5704"\w* \w your|strong="H3947"\w* own land, \w a|strong="H3068"\w* land \w of|strong="H3899"\w* \w grain|strong="H1715"\w* \w and|strong="H3899"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w*, \w a|strong="H3068"\w* land \w of|strong="H3899"\w* \w bread|strong="H3899"\w* \w and|strong="H3899"\w* \w vineyards|strong="H3754"\w*. +\v 18 \w Beware|strong="H6435"\w* \w lest|strong="H6435"\w* \w Hezekiah|strong="H2396"\w* \w persuade|strong="H5496"\w* \w you|strong="H6435"\w*, saying, “\w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w deliver|strong="H5337"\w* \w us|strong="H6435"\w*.” \w Have|strong="H3068"\w* any \w of|strong="H4428"\w* \w the|strong="H3068"\w* gods \w of|strong="H4428"\w* \w the|strong="H3068"\w* \w nations|strong="H1471"\w* \w delivered|strong="H5337"\w* \w their|strong="H3068"\w* lands \w from|strong="H3027"\w* \w the|strong="H3068"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria? +\v 19 \w Where|strong="H3027"\w* \w are|strong="H3027"\w* \w the|strong="H3588"\w* gods \w of|strong="H3027"\w* \w Hamath|strong="H2574"\w* \w and|strong="H3027"\w* Arpad? \w Where|strong="H3027"\w* \w are|strong="H3027"\w* \w the|strong="H3588"\w* gods \w of|strong="H3027"\w* \w Sepharvaim|strong="H5617"\w*? \w Have|strong="H3027"\w* \w they|strong="H3588"\w* \w delivered|strong="H5337"\w* \w Samaria|strong="H8111"\w* \w from|strong="H3027"\w* \w my|strong="H5337"\w* \w hand|strong="H3027"\w*? +\v 20 \w Who|strong="H4310"\w* \w are|strong="H3027"\w* \w they|strong="H3588"\w* \w among|strong="H4310"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* gods \w of|strong="H3068"\w* \w these|strong="H3605"\w* countries \w that|strong="H3588"\w* \w have|strong="H3068"\w* \w delivered|strong="H5337"\w* \w their|strong="H3605"\w* country \w out|strong="H5337"\w* \w of|strong="H3068"\w* \w my|strong="H3605"\w* \w hand|strong="H3027"\w*, \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w should|strong="H3068"\w* \w deliver|strong="H5337"\w* \w Jerusalem|strong="H3389"\w* \w out|strong="H5337"\w* \w of|strong="H3068"\w* \w my|strong="H3605"\w* \w hand|strong="H3027"\w*?’” +\p +\v 21 \w But|strong="H3588"\w* \w they|strong="H3588"\w* \w remained|strong="H2790"\w* \w silent|strong="H2790"\w*, \w and|strong="H6030"\w* \w said|strong="H1697"\w* \w nothing|strong="H3808"\w* \w in|strong="H4428"\w* \w reply|strong="H6030"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w*’s \w commandment|strong="H4687"\w* \w was|strong="H1931"\w*, “Don’t \w answer|strong="H6030"\w* \w him|strong="H1931"\w*.” +\p +\v 22 \w Then|strong="H1121"\w* Eliakim \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hilkiah|strong="H2518"\w*, \w who|strong="H1121"\w* \w was|strong="H1697"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w household|strong="H1004"\w*, \w and|strong="H1121"\w* \w Shebna|strong="H7644"\w* \w the|strong="H5921"\w* \w scribe|strong="H5608"\w*, \w and|strong="H1121"\w* \w Joah|strong="H3098"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Asaph \w the|strong="H5921"\w* \w recorder|strong="H2142"\w*, \w came|strong="H1697"\w* \w to|strong="H5921"\w* \w Hezekiah|strong="H2396"\w* \w with|strong="H1004"\w* \w their|strong="H5921"\w* clothes \w torn|strong="H7167"\w*, \w and|strong="H1121"\w* \w told|strong="H5046"\w* \w him|strong="H5921"\w* \w the|strong="H5921"\w* \w words|strong="H1697"\w* \w of|strong="H1121"\w* \w Rabshakeh|strong="H7262"\w*. +\c 37 +\p +\v 1 \w When|strong="H1961"\w* \w King|strong="H4428"\w* \w Hezekiah|strong="H2396"\w* \w heard|strong="H8085"\w* \w it|strong="H1961"\w*, \w he|strong="H3068"\w* \w tore|strong="H7167"\w* \w his|strong="H3068"\w* clothes, \w covered|strong="H3680"\w* \w himself|strong="H3068"\w* \w with|strong="H1004"\w* \w sackcloth|strong="H8242"\w*, \w and|strong="H3068"\w* \w went|strong="H3068"\w* \w into|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 2 \w He|strong="H1004"\w* \w sent|strong="H7971"\w* Eliakim, \w who|strong="H3548"\w* \w was|strong="H1004"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w household|strong="H1004"\w*, \w and|strong="H1121"\w* \w Shebna|strong="H7644"\w* \w the|strong="H5921"\w* \w scribe|strong="H5608"\w*, \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w elders|strong="H2205"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w*, \w covered|strong="H3680"\w* \w with|strong="H1004"\w* \w sackcloth|strong="H8242"\w*, \w to|strong="H7971"\w* \w Isaiah|strong="H3470"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amoz. +\v 3 \w They|strong="H3588"\w* said \w to|strong="H5704"\w* \w him|strong="H3205"\w*, “\w Hezekiah|strong="H2396"\w* \w says|strong="H3541"\w*, ‘\w Today|strong="H3117"\w* \w is|strong="H2088"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w trouble|strong="H6869"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w rebuke|strong="H8433"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w rejection|strong="H5007"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w have|strong="H1121"\w* \w come|strong="H3205"\w* \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w birth|strong="H3205"\w*, \w and|strong="H1121"\w* \w there|strong="H2088"\w* \w is|strong="H2088"\w* no \w strength|strong="H3581"\w* \w to|strong="H5704"\w* \w give|strong="H3205"\w* \w birth|strong="H3205"\w*. +\v 4 \w It|strong="H5375"\w* \w may|strong="H3068"\w* \w be|strong="H1697"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w hear|strong="H8085"\w* \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w Rabshakeh|strong="H7262"\w*, whom \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w his|strong="H5375"\w* master \w has|strong="H3068"\w* \w sent|strong="H7971"\w* \w to|strong="H3068"\w* \w defy|strong="H2778"\w* \w the|strong="H8085"\w* \w living|strong="H2416"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w rebuke|strong="H3198"\w* \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w heard|strong="H8085"\w*. \w Therefore|strong="H7971"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H3068"\w* \w prayer|strong="H8605"\w* \w for|strong="H1157"\w* \w the|strong="H8085"\w* \w remnant|strong="H7611"\w* \w that|strong="H8085"\w* \w is|strong="H3068"\w* \w left|strong="H4672"\w*.’” +\p +\v 5 \w So|strong="H5650"\w* \w the|strong="H5650"\w* \w servants|strong="H5650"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* \w Hezekiah|strong="H2396"\w* \w came|strong="H5650"\w* \w to|strong="H4428"\w* \w Isaiah|strong="H3470"\w*. +\p +\v 6 \w Isaiah|strong="H3470"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w them|strong="H6440"\w*, “\w Tell|strong="H8085"\w* \w your|strong="H3068"\w* master, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “Don’t \w be|strong="H1697"\w* \w afraid|strong="H3372"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w words|strong="H1697"\w* \w that|strong="H8085"\w* \w you|strong="H6440"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w*, \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w the|strong="H6440"\w* \w servants|strong="H5288"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w have|strong="H3068"\w* \w blasphemed|strong="H1442"\w* \w me|strong="H6440"\w*. +\v 7 \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H2719"\w* \w put|strong="H5414"\w* \w a|strong="H3068"\w* \w spirit|strong="H7307"\w* \w in|strong="H8085"\w* \w him|strong="H5414"\w* \w and|strong="H7725"\w* \w he|strong="H5414"\w* \w will|strong="H2719"\w* \w hear|strong="H8085"\w* \w news|strong="H8052"\w*, \w and|strong="H7725"\w* \w will|strong="H2719"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H5414"\w* own land. \w I|strong="H2005"\w* \w will|strong="H2719"\w* \w cause|strong="H5414"\w* \w him|strong="H5414"\w* \w to|strong="H7725"\w* \w fall|strong="H5307"\w* \w by|strong="H5414"\w* \w the|strong="H8085"\w* \w sword|strong="H2719"\w* \w in|strong="H8085"\w* \w his|strong="H5414"\w* own land.”’” +\p +\v 8 \w So|strong="H7725"\w* \w Rabshakeh|strong="H7262"\w* \w returned|strong="H7725"\w*, \w and|strong="H7725"\w* \w found|strong="H4672"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w warring|strong="H3898"\w* \w against|strong="H5921"\w* \w Libnah|strong="H3841"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H4428"\w* \w departed|strong="H5265"\w* \w from|strong="H5265"\w* \w Lachish|strong="H3923"\w*. +\v 9 \w He|strong="H5921"\w* \w heard|strong="H8085"\w* news \w concerning|strong="H5921"\w* \w Tirhakah|strong="H8640"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Ethiopia|strong="H3568"\w*, “\w He|strong="H5921"\w* \w has|strong="H4428"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w fight|strong="H3898"\w* \w against|strong="H5921"\w* \w you|strong="H7971"\w*.” \w When|strong="H8085"\w* \w he|strong="H5921"\w* \w heard|strong="H8085"\w* \w it|strong="H5921"\w*, \w he|strong="H5921"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H3318"\w* \w Hezekiah|strong="H2396"\w*, saying, +\v 10 “\w Thus|strong="H3541"\w* \w you|strong="H5414"\w* \w shall|strong="H4428"\w* speak \w to|strong="H5414"\w* \w Hezekiah|strong="H2396"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, saying, ‘Don’t \w let|strong="H5414"\w* \w your|strong="H5414"\w* \w God|strong="H5414"\w* \w in|strong="H4428"\w* whom \w you|strong="H5414"\w* trust \w deceive|strong="H5377"\w* \w you|strong="H5414"\w*, saying, “\w Jerusalem|strong="H3389"\w* won’t \w be|strong="H3808"\w* \w given|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria.” +\v 11 \w Behold|strong="H2009"\w*, \w you|strong="H3605"\w* \w have|strong="H3605"\w* \w heard|strong="H8085"\w* \w what|strong="H6213"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w have|strong="H3605"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w all|strong="H3605"\w* lands, \w by|strong="H3605"\w* \w destroying|strong="H2763"\w* \w them|strong="H6213"\w* \w utterly|strong="H2763"\w*. \w Shall|strong="H4428"\w* \w you|strong="H3605"\w* \w be|strong="H4428"\w* \w delivered|strong="H5337"\w*? +\v 12 \w Have|strong="H1121"\w* \w the|strong="H7843"\w* gods \w of|strong="H1121"\w* \w the|strong="H7843"\w* \w nations|strong="H1471"\w* \w delivered|strong="H5337"\w* \w them|strong="H7843"\w*, \w which|strong="H1471"\w* \w my|strong="H5337"\w* fathers \w have|strong="H1121"\w* \w destroyed|strong="H7843"\w*, \w Gozan|strong="H1470"\w*, \w Haran|strong="H2771"\w*, \w Rezeph|strong="H7530"\w*, \w and|strong="H1121"\w* \w the|strong="H7843"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Eden|strong="H5729"\w* \w who|strong="H1121"\w* \w were|strong="H1121"\w* \w in|strong="H1121"\w* \w Telassar|strong="H8515"\w*? +\v 13 Where \w is|strong="H4428"\w* \w the|strong="H5892"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Hamath|strong="H2574"\w*, \w and|strong="H4428"\w* \w the|strong="H5892"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Arpad, \w and|strong="H4428"\w* \w the|strong="H5892"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H5892"\w* \w city|strong="H5892"\w* \w of|strong="H4428"\w* \w Sepharvaim|strong="H5617"\w*, \w of|strong="H4428"\w* \w Hena|strong="H2012"\w*, \w and|strong="H4428"\w* \w Ivvah|strong="H5755"\w*?’” +\p +\v 14 \w Hezekiah|strong="H2396"\w* \w received|strong="H3947"\w* \w the|strong="H6440"\w* \w letter|strong="H5612"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w hand|strong="H3027"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w messengers|strong="H4397"\w* \w and|strong="H3068"\w* \w read|strong="H7121"\w* \w it|strong="H7121"\w*. \w Then|strong="H3947"\w* \w Hezekiah|strong="H2396"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w spread|strong="H6566"\w* \w it|strong="H7121"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 15 \w Hezekiah|strong="H2396"\w* \w prayed|strong="H6419"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, saying, +\v 16 “\w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w who|strong="H3605"\w* \w is|strong="H3068"\w* \w enthroned|strong="H3427"\w* \w among|strong="H3427"\w* \w the|strong="H3605"\w* \w cherubim|strong="H3742"\w*, \w you|strong="H3605"\w* \w are|strong="H3478"\w* \w the|strong="H3605"\w* \w God|strong="H3068"\w*, \w even|strong="H6213"\w* \w you|strong="H3605"\w* \w alone|strong="H1931"\w*, \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*. \w You|strong="H3605"\w* \w have|strong="H3068"\w* \w made|strong="H6213"\w* \w heaven|strong="H8064"\w* \w and|strong="H3478"\w* \w earth|strong="H8064"\w*. +\v 17 \w Turn|strong="H5186"\w* \w your|strong="H3068"\w* \w ear|strong="H8085"\w*, \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w hear|strong="H8085"\w*. \w Open|strong="H6491"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w*, \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w behold|strong="H7200"\w*. \w Hear|strong="H8085"\w* \w all|strong="H3605"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w Sennacherib|strong="H5576"\w*, \w who|strong="H3605"\w* \w has|strong="H3068"\w* \w sent|strong="H7971"\w* \w to|strong="H3068"\w* \w defy|strong="H2778"\w* \w the|strong="H3605"\w* \w living|strong="H2416"\w* \w God|strong="H3068"\w*. +\v 18 Truly, \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w have|strong="H3068"\w* \w destroyed|strong="H2717"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* countries \w and|strong="H3068"\w* \w their|strong="H3605"\w* land, +\v 19 \w and|strong="H3027"\w* \w have|strong="H3027"\w* \w cast|strong="H5414"\w* \w their|strong="H5414"\w* gods \w into|strong="H3027"\w* \w the|strong="H3588"\w* fire; \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w were|strong="H1992"\w* \w no|strong="H3808"\w* gods, \w but|strong="H3588"\w* \w the|strong="H3588"\w* \w work|strong="H4639"\w* \w of|strong="H3027"\w* \w men|strong="H1992"\w*’s \w hands|strong="H3027"\w*, \w wood|strong="H6086"\w* \w and|strong="H3027"\w* stone; \w therefore|strong="H3588"\w* \w they|strong="H1992"\w* \w have|strong="H3027"\w* destroyed \w them|strong="H5414"\w*. +\v 20 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w save|strong="H3467"\w* \w us|strong="H3045"\w* \w from|strong="H3027"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*, \w that|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* earth \w may|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H3027"\w* \w Yahweh|strong="H3068"\w*, \w even|strong="H3588"\w* \w you|strong="H3588"\w* \w only|strong="H3588"\w*.” +\p +\v 21 \w Then|strong="H7971"\w* \w Isaiah|strong="H3470"\w* \w the|strong="H3541"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amoz \w sent|strong="H7971"\w* \w to|strong="H3478"\w* \w Hezekiah|strong="H2396"\w*, saying, “\w Yahweh|strong="H3068"\w*, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*, ‘\w Because|strong="H3068"\w* \w you|strong="H7971"\w* \w have|strong="H3068"\w* \w prayed|strong="H6419"\w* \w to|strong="H3478"\w* \w me|strong="H7971"\w* \w against|strong="H3068"\w* \w Sennacherib|strong="H5576"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Assyria, +\v 22 \w this|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H5921"\w* \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w concerning|strong="H5921"\w* \w him|strong="H5921"\w*: \w The|strong="H5921"\w* \w virgin|strong="H1330"\w* \w daughter|strong="H1323"\w* \w of|strong="H3068"\w* \w Zion|strong="H6726"\w* \w has|strong="H3068"\w* despised \w you|strong="H5921"\w* \w and|strong="H3068"\w* ridiculed \w you|strong="H5921"\w*. \w The|strong="H5921"\w* \w daughter|strong="H1323"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w* \w has|strong="H3068"\w* \w shaken|strong="H5128"\w* \w her|strong="H5921"\w* \w head|strong="H7218"\w* \w at|strong="H5921"\w* \w you|strong="H5921"\w*. +\v 23 \w Whom|strong="H4310"\w* \w have|strong="H5869"\w* \w you|strong="H5921"\w* \w defied|strong="H2778"\w* \w and|strong="H3478"\w* \w blasphemed|strong="H1442"\w*? \w Against|strong="H5921"\w* \w whom|strong="H4310"\w* \w have|strong="H5869"\w* \w you|strong="H5921"\w* \w exalted|strong="H7311"\w* \w your|strong="H5921"\w* \w voice|strong="H6963"\w* \w and|strong="H3478"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H5921"\w* \w eyes|strong="H5869"\w* \w on|strong="H5921"\w* \w high|strong="H4791"\w*? \w Against|strong="H5921"\w* \w the|strong="H5921"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H6963"\w* \w Israel|strong="H3478"\w*. +\v 24 \w By|strong="H3027"\w* \w your|strong="H3772"\w* \w servants|strong="H5650"\w*, \w you|strong="H3027"\w* \w have|strong="H5650"\w* \w defied|strong="H2778"\w* \w the|strong="H5927"\w* Lord, \w and|strong="H3027"\w* \w have|strong="H5650"\w* said, “\w With|strong="H3027"\w* \w the|strong="H5927"\w* \w multitude|strong="H7230"\w* \w of|strong="H3027"\w* \w my|strong="H5927"\w* \w chariots|strong="H7393"\w* \w I|strong="H5650"\w* \w have|strong="H5650"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H5927"\w* \w height|strong="H6967"\w* \w of|strong="H3027"\w* \w the|strong="H5927"\w* \w mountains|strong="H2022"\w*, \w to|strong="H5927"\w* \w the|strong="H5927"\w* \w innermost|strong="H3411"\w* \w parts|strong="H3411"\w* \w of|strong="H3027"\w* \w Lebanon|strong="H3844"\w*. \w I|strong="H5650"\w* \w will|strong="H5650"\w* \w cut|strong="H3772"\w* \w down|strong="H3772"\w* \w its|strong="H5927"\w* \w tall|strong="H6967"\w* cedars \w and|strong="H3027"\w* \w its|strong="H5927"\w* \w choice|strong="H4005"\w* \w cypress|strong="H1265"\w* \w trees|strong="H1265"\w*. \w I|strong="H5650"\w* \w will|strong="H5650"\w* \w enter|strong="H5927"\w* \w into|strong="H5927"\w* \w its|strong="H5927"\w* \w farthest|strong="H7093"\w* \w height|strong="H6967"\w*, \w the|strong="H5927"\w* \w forest|strong="H3293"\w* \w of|strong="H3027"\w* \w its|strong="H5927"\w* \w fruitful|strong="H3759"\w* \w field|strong="H3759"\w*. +\v 25 \w I|strong="H6471"\w* \w have|strong="H3605"\w* \w dug|strong="H6979"\w* \w and|strong="H8354"\w* \w drunk|strong="H8354"\w* \w water|strong="H4325"\w*, \w and|strong="H8354"\w* \w with|strong="H4325"\w* \w the|strong="H3605"\w* \w sole|strong="H3709"\w* \w of|strong="H4325"\w* \w my|strong="H3605"\w* \w feet|strong="H6471"\w* \w I|strong="H6471"\w* \w will|strong="H4325"\w* \w dry|strong="H2717"\w* \w up|strong="H2717"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w rivers|strong="H2975"\w* \w of|strong="H4325"\w* \w Egypt|strong="H4693"\w*.” +\p +\v 26 “‘\w Have|strong="H1961"\w* \w you|strong="H3117"\w* \w not|strong="H3808"\w* \w heard|strong="H8085"\w* \w how|strong="H8085"\w* \w I|strong="H3117"\w* \w have|strong="H1961"\w* \w done|strong="H6213"\w* \w it|strong="H6213"\w* \w long|strong="H3117"\w* \w ago|strong="H7350"\w*, \w and|strong="H3117"\w* \w formed|strong="H3335"\w* \w it|strong="H6213"\w* \w in|strong="H6213"\w* \w ancient|strong="H6924"\w* \w times|strong="H3117"\w*? \w Now|strong="H6258"\w* \w I|strong="H3117"\w* \w have|strong="H1961"\w* \w brought|strong="H6213"\w* \w it|strong="H6213"\w* \w to|strong="H1961"\w* \w pass|strong="H1961"\w*, \w that|strong="H3117"\w* \w it|strong="H6213"\w* \w should|strong="H3117"\w* \w be|strong="H1961"\w* yours \w to|strong="H1961"\w* \w destroy|strong="H6213"\w* \w fortified|strong="H1219"\w* \w cities|strong="H5892"\w*, turning \w them|strong="H6213"\w* \w into|strong="H6213"\w* \w ruinous|strong="H5327"\w* \w heaps|strong="H1530"\w*. +\v 27 \w Therefore|strong="H1961"\w* \w their|strong="H6440"\w* \w inhabitants|strong="H3427"\w* \w had|strong="H1961"\w* little \w power|strong="H3027"\w*. \w They|strong="H6440"\w* \w were|strong="H1961"\w* \w dismayed|strong="H2865"\w* \w and|strong="H3027"\w* confounded. \w They|strong="H6440"\w* \w were|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H6440"\w* \w grass|strong="H2682"\w* \w of|strong="H3027"\w* \w the|strong="H6440"\w* \w field|strong="H7704"\w*, \w and|strong="H3027"\w* \w like|strong="H1961"\w* \w the|strong="H6440"\w* \w green|strong="H3419"\w* \w herb|strong="H6212"\w*, \w like|strong="H1961"\w* \w the|strong="H6440"\w* \w grass|strong="H2682"\w* \w on|strong="H3427"\w* \w the|strong="H6440"\w* \w housetops|strong="H1406"\w*, \w and|strong="H3027"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w field|strong="H7704"\w* \w before|strong="H6440"\w* \w its|strong="H1961"\w* crop \w has|strong="H1961"\w* \w grown|strong="H7054"\w*. +\v 28 But \w I|strong="H3045"\w* \w know|strong="H3045"\w* \w your|strong="H3045"\w* \w sitting|strong="H3427"\w* \w down|strong="H3427"\w*, \w your|strong="H3045"\w* \w going|strong="H3318"\w* \w out|strong="H3318"\w*, \w your|strong="H3045"\w* \w coming|strong="H3318"\w* \w in|strong="H3427"\w*, \w and|strong="H3318"\w* \w your|strong="H3045"\w* \w raging|strong="H7264"\w* \w against|strong="H3427"\w* \w me|strong="H3318"\w*. +\v 29 \w Because|strong="H3282"\w* \w of|strong="H1870"\w* \w your|strong="H7760"\w* \w raging|strong="H7264"\w* \w against|strong="H5927"\w* \w me|strong="H7725"\w*, \w and|strong="H7725"\w* \w because|strong="H3282"\w* \w your|strong="H7760"\w* \w arrogance|strong="H7600"\w* \w has|strong="H7600"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w into|strong="H7725"\w* \w my|strong="H7760"\w* ears, therefore \w I|strong="H7760"\w* \w will|strong="H7725"\w* \w put|strong="H7760"\w* \w my|strong="H7760"\w* \w hook|strong="H2397"\w* \w in|strong="H7725"\w* \w your|strong="H7760"\w* nose \w and|strong="H7725"\w* \w my|strong="H7760"\w* \w bridle|strong="H4964"\w* \w in|strong="H7725"\w* \w your|strong="H7760"\w* \w lips|strong="H8193"\w*, \w and|strong="H7725"\w* \w I|strong="H7760"\w* \w will|strong="H7725"\w* \w turn|strong="H7725"\w* \w you|strong="H7725"\w* \w back|strong="H7725"\w* \w by|strong="H1870"\w* \w the|strong="H7725"\w* \w way|strong="H1870"\w* \w by|strong="H1870"\w* which \w you|strong="H7725"\w* \w came|strong="H5927"\w*. +\p +\v 30 “‘\w This|strong="H2088"\w* \w shall|strong="H2088"\w* \w be|strong="H8141"\w* \w the|strong="H8141"\w* sign \w to|strong="H8141"\w* \w you|strong="H8141"\w*: \w You|strong="H8141"\w* \w will|strong="H3754"\w* eat \w this|strong="H2088"\w* \w year|strong="H8141"\w* \w that|strong="H8141"\w* \w which|strong="H2088"\w* \w grows|strong="H5599"\w* \w of|strong="H8141"\w* \w itself|strong="H2088"\w*, \w and|strong="H8141"\w* \w in|strong="H8141"\w* \w the|strong="H8141"\w* \w second|strong="H8145"\w* \w year|strong="H8141"\w* \w that|strong="H8141"\w* \w which|strong="H2088"\w* springs \w from|strong="H2232"\w* \w it|strong="H2088"\w*; \w and|strong="H8141"\w* \w in|strong="H8141"\w* \w the|strong="H8141"\w* \w third|strong="H7992"\w* \w year|strong="H8141"\w* \w sow|strong="H2232"\w* \w and|strong="H8141"\w* \w reap|strong="H7114"\w* \w and|strong="H8141"\w* \w plant|strong="H5193"\w* \w vineyards|strong="H3754"\w*, \w and|strong="H8141"\w* eat \w their|strong="H7114"\w* \w fruit|strong="H6529"\w*. +\v 31 \w The|strong="H6213"\w* \w remnant|strong="H7604"\w* \w that|strong="H3063"\w* \w is|strong="H1004"\w* \w escaped|strong="H6413"\w* \w of|strong="H1004"\w* \w the|strong="H6213"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w will|strong="H1004"\w* \w again|strong="H3254"\w* \w take|strong="H6213"\w* \w root|strong="H8328"\w* \w downward|strong="H4295"\w*, \w and|strong="H3063"\w* \w bear|strong="H6213"\w* \w fruit|strong="H6529"\w* \w upward|strong="H4605"\w*. +\v 32 \w For|strong="H3588"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w* \w a|strong="H3068"\w* \w remnant|strong="H7611"\w* \w will|strong="H3068"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H3068"\w* \w survivors|strong="H6413"\w* \w will|strong="H3068"\w* \w escape|strong="H6413"\w* \w from|strong="H3318"\w* \w Mount|strong="H2022"\w* \w Zion|strong="H6726"\w*. \w The|strong="H3588"\w* \w zeal|strong="H7068"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w will|strong="H3068"\w* \w perform|strong="H6213"\w* \w this|strong="H2063"\w*.’ +\p +\v 33 “\w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria, ‘\w He|strong="H8033"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w come|strong="H6923"\w* \w to|strong="H3068"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w*, \w nor|strong="H3808"\w* \w shoot|strong="H3384"\w* \w an|strong="H8033"\w* \w arrow|strong="H2671"\w* \w there|strong="H8033"\w*, \w neither|strong="H3808"\w* \w will|strong="H3068"\w* \w he|strong="H8033"\w* \w come|strong="H6923"\w* \w before|strong="H5921"\w* \w it|strong="H5921"\w* \w with|strong="H3068"\w* \w shield|strong="H4043"\w*, \w nor|strong="H3808"\w* \w cast|strong="H8210"\w* \w up|strong="H5921"\w* \w a|strong="H3068"\w* mound \w against|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 34 \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w return|strong="H7725"\w* \w the|strong="H5002"\w* \w way|strong="H1870"\w* \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w came|strong="H3068"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* won’t \w come|strong="H7725"\w* \w to|strong="H7725"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 35 ‘\w For|strong="H5921"\w* \w I|strong="H5921"\w* \w will|strong="H5650"\w* \w defend|strong="H1598"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w to|strong="H5921"\w* \w save|strong="H3467"\w* \w it|strong="H5921"\w*, \w for|strong="H5921"\w* \w my|strong="H1732"\w* own \w sake|strong="H4616"\w*, \w and|strong="H5892"\w* \w for|strong="H5921"\w* \w my|strong="H1732"\w* \w servant|strong="H5650"\w* \w David|strong="H1732"\w*’s \w sake|strong="H4616"\w*.’” +\p +\v 36 \w Then|strong="H3318"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H3967"\w* \w struck|strong="H5221"\w* \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* \w and|strong="H3967"\w* \w eighty-five|strong="H8084"\w* thousand \w men|strong="H3605"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w camp|strong="H4264"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* Assyrians. \w When|strong="H3318"\w* \w men|strong="H3605"\w* \w arose|strong="H7925"\w* \w early|strong="H7925"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w*, \w behold|strong="H2009"\w*, \w these|strong="H3605"\w* \w were|strong="H2009"\w* \w all|strong="H3605"\w* \w dead|strong="H4191"\w* \w bodies|strong="H6297"\w*. +\v 37 \w So|strong="H7725"\w* \w Sennacherib|strong="H5576"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria \w departed|strong="H3212"\w*, \w went|strong="H3212"\w* \w away|strong="H7725"\w*, \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Nineveh|strong="H5210"\w*, \w and|strong="H7725"\w* \w stayed|strong="H3427"\w* \w there|strong="H3427"\w*. +\v 38 \w As|strong="H1961"\w* \w he|strong="H1931"\w* \w was|strong="H1961"\w* \w worshiping|strong="H7812"\w* \w in|strong="H1004"\w* \w the|strong="H5221"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Nisroch|strong="H5268"\w* \w his|strong="H5221"\w* god, Adrammelech \w and|strong="H1121"\w* \w Sharezer|strong="H8272"\w* \w his|strong="H5221"\w* \w sons|strong="H1121"\w* \w struck|strong="H5221"\w* \w him|strong="H5221"\w* \w with|strong="H1004"\w* \w the|strong="H5221"\w* \w sword|strong="H2719"\w*; \w and|strong="H1121"\w* \w they|strong="H1992"\w* \w escaped|strong="H4422"\w* \w into|strong="H2719"\w* \w the|strong="H5221"\w* land \w of|strong="H1121"\w* Ararat. Esar Haddon \w his|strong="H5221"\w* \w son|strong="H1121"\w* \w reigned|strong="H4427"\w* \w in|strong="H1004"\w* \w his|strong="H5221"\w* \w place|strong="H8478"\w*. +\c 38 +\p +\v 1 \w In|strong="H3068"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w* \w Hezekiah|strong="H2396"\w* \w was|strong="H3068"\w* \w sick|strong="H2470"\w* \w and|strong="H1121"\w* \w near|strong="H3808"\w* \w death|strong="H4191"\w*. \w Isaiah|strong="H3470"\w* \w the|strong="H3588"\w* \w prophet|strong="H5030"\w*, \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amoz, \w came|strong="H3068"\w* \w to|strong="H4191"\w* \w him|strong="H6680"\w*, \w and|strong="H1121"\w* said \w to|strong="H4191"\w* \w him|strong="H6680"\w*, “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w Set|strong="H6680"\w* \w your|strong="H3068"\w* \w house|strong="H1004"\w* \w in|strong="H3068"\w* \w order|strong="H6680"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w die|strong="H4191"\w*, \w and|strong="H1121"\w* \w not|strong="H3808"\w* \w live|strong="H2421"\w*.’” +\p +\v 2 \w Then|strong="H3068"\w* \w Hezekiah|strong="H2396"\w* \w turned|strong="H5437"\w* \w his|strong="H3068"\w* \w face|strong="H6440"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w wall|strong="H7023"\w* \w and|strong="H3068"\w* \w prayed|strong="H6419"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\v 3 \w and|strong="H1980"\w* said, “\w Remember|strong="H2142"\w* \w now|strong="H4994"\w*, \w Yahweh|strong="H3068"\w*, \w I|strong="H1980"\w* \w beg|strong="H4994"\w* \w you|strong="H6440"\w*, \w how|strong="H4994"\w* \w I|strong="H1980"\w* \w have|strong="H3068"\w* \w walked|strong="H1980"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w in|strong="H1980"\w* truth \w and|strong="H1980"\w* \w with|strong="H1980"\w* \w a|strong="H3068"\w* \w perfect|strong="H8003"\w* \w heart|strong="H3820"\w*, \w and|strong="H1980"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w* \w in|strong="H1980"\w* \w your|strong="H3068"\w* \w sight|strong="H5869"\w*.” \w Then|strong="H1980"\w* \w Hezekiah|strong="H2396"\w* \w wept|strong="H1058"\w* \w bitterly|strong="H1419"\w*. +\p +\v 4 \w Then|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Isaiah|strong="H3470"\w*, \w saying|strong="H1697"\w*, +\v 5 “\w Go|strong="H1980"\w*, \w and|strong="H1980"\w* \w tell|strong="H8085"\w* \w Hezekiah|strong="H2396"\w*, ‘\w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w David|strong="H1732"\w* \w your|strong="H3068"\w* father, \w says|strong="H3541"\w*, “\w I|strong="H3117"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w your|strong="H3068"\w* \w prayer|strong="H8605"\w*. \w I|strong="H3117"\w* \w have|strong="H3068"\w* \w seen|strong="H7200"\w* \w your|strong="H3068"\w* \w tears|strong="H1832"\w*. \w Behold|strong="H2005"\w*, \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w add|strong="H3254"\w* \w fifteen|strong="H2568"\w* \w years|strong="H8141"\w* \w to|strong="H1980"\w* \w your|strong="H3068"\w* \w life|strong="H3117"\w*. +\v 6 \w I|strong="H5921"\w* \w will|strong="H4428"\w* \w deliver|strong="H5337"\w* \w you|strong="H5921"\w* \w and|strong="H4428"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w out|strong="H5921"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w hand|strong="H3709"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria, \w and|strong="H4428"\w* \w I|strong="H5921"\w* \w will|strong="H4428"\w* \w defend|strong="H1598"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w*. +\v 7 \w This|strong="H2088"\w* \w shall|strong="H3068"\w* \w be|strong="H1697"\w* \w the|strong="H6213"\w* sign \w to|strong="H1696"\w* \w you|strong="H6213"\w* \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w that|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w that|strong="H3068"\w* \w he|strong="H6213"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w*. +\v 8 \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H8121"\w* \w cause|strong="H7725"\w* \w the|strong="H7725"\w* \w shadow|strong="H6738"\w* \w on|strong="H3381"\w* \w the|strong="H7725"\w* sundial, which \w has|strong="H8121"\w* \w gone|strong="H3381"\w* \w down|strong="H3381"\w* \w on|strong="H3381"\w* \w the|strong="H7725"\w* sundial \w of|strong="H6738"\w* Ahaz \w with|strong="H3381"\w* \w the|strong="H7725"\w* \w sun|strong="H8121"\w*, \w to|strong="H7725"\w* \w return|strong="H7725"\w* backward \w ten|strong="H6235"\w* \w steps|strong="H4609"\w*.”’” \w So|strong="H7725"\w* \w the|strong="H7725"\w* \w sun|strong="H8121"\w* \w returned|strong="H7725"\w* \w ten|strong="H6235"\w* \w steps|strong="H4609"\w* \w on|strong="H3381"\w* \w the|strong="H7725"\w* sundial \w on|strong="H3381"\w* which \w it|strong="H7725"\w* \w had|strong="H8121"\w* \w gone|strong="H3381"\w* \w down|strong="H3381"\w*. +\p +\v 9 \w The|strong="H2421"\w* \w writing|strong="H4385"\w* \w of|strong="H4428"\w* \w Hezekiah|strong="H2396"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w when|strong="H2421"\w* \w he|strong="H2483"\w* \w had|strong="H4428"\w* \w been|strong="H2470"\w* \w sick|strong="H2470"\w*, \w and|strong="H3063"\w* \w had|strong="H4428"\w* \w recovered|strong="H2421"\w* \w of|strong="H4428"\w* \w his|strong="H2396"\w* \w sickness|strong="H2483"\w*: +\q1 +\v 10 \w I|strong="H3117"\w* said, “\w In|strong="H8141"\w* \w the|strong="H3117"\w* \w middle|strong="H1824"\w* \w of|strong="H3117"\w* \w my|strong="H3117"\w* \w life|strong="H3117"\w* \w I|strong="H3117"\w* \w go|strong="H3212"\w* \w into|strong="H3212"\w* \w the|strong="H3117"\w* \w gates|strong="H8179"\w* \w of|strong="H3117"\w* \w Sheol|strong="H7585"\w*.\f + \fr 38:10 \ft Sheol is the place of the dead.\f* +\q2 \w I|strong="H3117"\w* \w am|strong="H6485"\w* \w deprived|strong="H6485"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w residue|strong="H3499"\w* \w of|strong="H3117"\w* \w my|strong="H3117"\w* \w years|strong="H8141"\w*.” +\q1 +\v 11 \w I|strong="H7200"\w* said, “\w I|strong="H7200"\w* won’t \w see|strong="H7200"\w* \w Yah|strong="H3068"\w*, +\q2 \w Yah|strong="H3068"\w* \w in|strong="H3427"\w* \w the|strong="H7200"\w* land \w of|strong="H3427"\w* \w the|strong="H7200"\w* \w living|strong="H2416"\w*. +\q2 \w I|strong="H7200"\w* \w will|strong="H3808"\w* \w see|strong="H7200"\w* \w man|strong="H2416"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w with|strong="H5973"\w* \w the|strong="H7200"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H7200"\w* \w world|strong="H2309"\w*. +\q1 +\v 12 \w My|strong="H4480"\w* \w dwelling|strong="H1755"\w* \w is|strong="H3117"\w* \w removed|strong="H5265"\w*, +\q2 \w and|strong="H3117"\w* \w is|strong="H3117"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w from|strong="H4480"\w* \w me|strong="H4480"\w* \w like|strong="H5704"\w* \w a|strong="H3068"\w* \w shepherd|strong="H7473"\w*’s tent. +\q1 \w I|strong="H3117"\w* \w have|strong="H3117"\w* \w rolled|strong="H7088"\w* \w up|strong="H5704"\w* \w my|strong="H4480"\w* \w life|strong="H2416"\w* \w like|strong="H5704"\w* \w a|strong="H3068"\w* weaver. +\q2 \w He|strong="H3117"\w* \w will|strong="H3117"\w* \w cut|strong="H1214"\w* \w me|strong="H4480"\w* \w off|strong="H4480"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w loom|strong="H1803"\w*. +\q2 \w From|strong="H4480"\w* \w day|strong="H3117"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w night|strong="H3915"\w* \w you|strong="H3117"\w* \w will|strong="H3117"\w* \w make|strong="H7999"\w* \w an|strong="H4480"\w* \w end|strong="H7999"\w* \w of|strong="H3117"\w* \w me|strong="H4480"\w*. +\q1 +\v 13 \w I|strong="H3117"\w* waited patiently \w until|strong="H5704"\w* \w morning|strong="H1242"\w*. +\q2 \w He|strong="H3117"\w* \w breaks|strong="H7665"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w bones|strong="H6106"\w* \w like|strong="H3651"\w* \w a|strong="H3068"\w* lion. +\q2 \w From|strong="H3117"\w* \w day|strong="H3117"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w night|strong="H3915"\w* \w you|strong="H3605"\w* \w will|strong="H3117"\w* \w make|strong="H7999"\w* \w an|strong="H7999"\w* \w end|strong="H7999"\w* \w of|strong="H3117"\w* \w me|strong="H7737"\w*. +\q1 +\v 14 \w I|strong="H3651"\w* chattered \w like|strong="H3651"\w* \w a|strong="H3068"\w* \w swallow|strong="H5693"\w* \w or|strong="H5483"\w* \w a|strong="H3068"\w* \w crane|strong="H5483"\w*. +\q2 \w I|strong="H3651"\w* moaned \w like|strong="H3651"\w* \w a|strong="H3068"\w* \w dove|strong="H3123"\w*. +\q2 \w My|strong="H3651"\w* \w eyes|strong="H5869"\w* weaken looking \w upward|strong="H4791"\w*. +\q2 Lord, \w I|strong="H3651"\w* am \w oppressed|strong="H6234"\w*. +\q2 \w Be|strong="H5869"\w* \w my|strong="H3651"\w* \w security|strong="H6148"\w*.” +\q1 +\v 15 \w What|strong="H4100"\w* \w will|strong="H5315"\w* \w I|strong="H5921"\w* \w say|strong="H1696"\w*? +\q2 \w He|strong="H1931"\w* \w has|strong="H4100"\w* \w both|strong="H3605"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H5315"\w*, \w and|strong="H6213"\w* \w himself|strong="H5315"\w* \w has|strong="H4100"\w* \w done|strong="H6213"\w* \w it|strong="H1931"\w*. +\q2 \w I|strong="H5921"\w* \w will|strong="H5315"\w* walk \w carefully|strong="H6213"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w years|strong="H8141"\w* \w because|strong="H5921"\w* \w of|strong="H8141"\w* \w the|strong="H3605"\w* anguish \w of|strong="H8141"\w* \w my|strong="H3605"\w* \w soul|strong="H5315"\w*. +\q1 +\v 16 Lord, \w men|strong="H3605"\w* \w live|strong="H2421"\w* \w by|strong="H5921"\w* \w these|strong="H3605"\w* \w things|strong="H3605"\w*; +\q2 \w and|strong="H2421"\w* \w my|strong="H3605"\w* \w spirit|strong="H7307"\w* finds \w life|strong="H2416"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w of|strong="H7307"\w* \w them|strong="H5921"\w*. +\q2 \w You|strong="H3605"\w* \w restore|strong="H2492"\w* \w me|strong="H5921"\w*, \w and|strong="H2421"\w* cause \w me|strong="H5921"\w* \w to|strong="H5921"\w* \w live|strong="H2421"\w*. +\q1 +\v 17 \w Behold|strong="H2009"\w*, \w for|strong="H3588"\w* \w peace|strong="H7965"\w* \w I|strong="H3588"\w* \w had|strong="H3588"\w* \w great|strong="H4751"\w* anguish, +\q2 \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H7965"\w* \w in|strong="H5315"\w* \w love|strong="H2836"\w* \w for|strong="H3588"\w* \w my|strong="H3605"\w* \w soul|strong="H5315"\w* \w delivered|strong="H2836"\w* \w it|strong="H3588"\w* \w from|strong="H5315"\w* \w the|strong="H3605"\w* \w pit|strong="H7845"\w* \w of|strong="H3605"\w* \w corruption|strong="H7845"\w*; +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H7965"\w* \w cast|strong="H7993"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w sins|strong="H2399"\w* behind \w your|strong="H3605"\w* \w back|strong="H1460"\w*. +\q1 +\v 18 \w For|strong="H3588"\w* \w Sheol|strong="H7585"\w*\f + \fr 38:18 \ft Sheol is the place of the dead.\f* \w can|strong="H4194"\w*’t \w praise|strong="H1984"\w* \w you|strong="H3588"\w*. +\q2 \w Death|strong="H4194"\w* \w can|strong="H4194"\w*’t \w celebrate|strong="H1984"\w* \w you|strong="H3588"\w*. +\q1 \w Those|strong="H3588"\w* \w who|strong="H3588"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w the|strong="H3588"\w* \w pit|strong="H7585"\w* \w can|strong="H4194"\w*’t \w hope|strong="H7663"\w* \w for|strong="H3588"\w* \w your|strong="H3588"\w* \w truth|strong="H3808"\w*. +\q1 +\v 19 \w The|strong="H3117"\w* \w living|strong="H2416"\w*, \w the|strong="H3117"\w* \w living|strong="H2416"\w*, \w he|strong="H1931"\w* \w shall|strong="H1121"\w* \w praise|strong="H3034"\w* \w you|strong="H3117"\w*, \w as|strong="H3117"\w* \w I|strong="H3117"\w* do \w today|strong="H3117"\w*. +\q2 \w The|strong="H3117"\w* \w father|strong="H1121"\w* \w shall|strong="H1121"\w* \w make|strong="H3045"\w* \w known|strong="H3045"\w* \w your|strong="H3045"\w* truth \w to|strong="H3117"\w* \w the|strong="H3117"\w* \w children|strong="H1121"\w*. +\q1 +\v 20 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w save|strong="H3467"\w* \w me|strong="H5921"\w*. +\q2 \w Therefore|strong="H5921"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* sing \w my|strong="H3605"\w* \w songs|strong="H5058"\w* \w with|strong="H1004"\w* \w stringed|strong="H5058"\w* \w instruments|strong="H5058"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H1004"\w* \w our|strong="H3068"\w* \w life|strong="H2416"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\p +\v 21 \w Now|strong="H5921"\w* \w Isaiah|strong="H3470"\w* \w had|strong="H3470"\w* said, “Let \w them|strong="H5921"\w* \w take|strong="H5375"\w* \w a|strong="H3068"\w* \w cake|strong="H1690"\w* \w of|strong="H5921"\w* \w figs|strong="H8384"\w*, \w and|strong="H2421"\w* lay \w it|strong="H5921"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* poultice \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w boil|strong="H7822"\w*, \w and|strong="H2421"\w* \w he|strong="H5921"\w* \w shall|strong="H2421"\w* \w recover|strong="H2421"\w*.” +\v 22 \w Hezekiah|strong="H2396"\w* \w also|strong="H3068"\w* \w had|strong="H3068"\w* said, “\w What|strong="H4100"\w* \w is|strong="H3068"\w* \w the|strong="H3588"\w* sign \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*?” +\c 39 +\p +\v 1 \w At|strong="H4428"\w* \w that|strong="H3588"\w* \w time|strong="H6256"\w*, \w Merodach-baladan|strong="H4757"\w* \w the|strong="H8085"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Baladan|strong="H1081"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon, \w sent|strong="H7971"\w* \w letters|strong="H5612"\w* \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w present|strong="H4503"\w* \w to|strong="H7971"\w* \w Hezekiah|strong="H2396"\w*, \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w had|strong="H4428"\w* \w been|strong="H2470"\w* \w sick|strong="H2470"\w*, \w and|strong="H1121"\w* \w had|strong="H4428"\w* \w recovered|strong="H2388"\w*. +\v 2 \w Hezekiah|strong="H2396"\w* \w was|strong="H1961"\w* \w pleased|strong="H2896"\w* \w with|strong="H1004"\w* \w them|strong="H5921"\w*, \w and|strong="H3701"\w* \w showed|strong="H7200"\w* \w them|strong="H5921"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w his|strong="H3605"\w* \w precious|strong="H2896"\w* \w things|strong="H1697"\w*, \w the|strong="H3605"\w* \w silver|strong="H3701"\w*, \w the|strong="H3605"\w* \w gold|strong="H2091"\w*, \w the|strong="H3605"\w* \w spices|strong="H1314"\w*, \w and|strong="H3701"\w* \w the|strong="H3605"\w* \w precious|strong="H2896"\w* \w oil|strong="H8081"\w*, \w and|strong="H3701"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w his|strong="H3605"\w* \w armor|strong="H3627"\w*, \w and|strong="H3701"\w* \w all|strong="H3605"\w* \w that|strong="H7200"\w* \w was|strong="H1961"\w* \w found|strong="H4672"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* treasures. \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w nothing|strong="H3808"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w house|strong="H1004"\w*, \w nor|strong="H3808"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w dominion|strong="H4475"\w*, \w that|strong="H7200"\w* \w Hezekiah|strong="H2396"\w* didn’t \w show|strong="H7200"\w* \w them|strong="H5921"\w*. +\v 3 \w Then|strong="H4428"\w* \w Isaiah|strong="H3470"\w* \w the|strong="H3470"\w* \w prophet|strong="H5030"\w* \w came|strong="H4428"\w* \w to|strong="H4428"\w* \w King|strong="H4428"\w* \w Hezekiah|strong="H2396"\w*, \w and|strong="H4428"\w* \w asked|strong="H4100"\w* \w him|strong="H4428"\w*, “\w What|strong="H4100"\w* \w did|strong="H4100"\w* \w these|strong="H4428"\w* men say? \w From|strong="H7350"\w* \w where|strong="H4100"\w* \w did|strong="H4100"\w* \w they|strong="H4100"\w* \w come|strong="H7350"\w* \w to|strong="H4428"\w* \w you|strong="H4100"\w*?” +\p \w Hezekiah|strong="H2396"\w* said, “\w They|strong="H4100"\w* \w have|strong="H5030"\w* \w come|strong="H7350"\w* \w from|strong="H7350"\w* \w a|strong="H3068"\w* country \w far|strong="H7350"\w* \w from|strong="H7350"\w* \w me|strong="H4100"\w*, even \w from|strong="H7350"\w* Babylon.” +\p +\v 4 \w Then|strong="H1961"\w* \w he|strong="H3605"\w* \w asked|strong="H4100"\w*, “\w What|strong="H4100"\w* \w have|strong="H1961"\w* \w they|strong="H3808"\w* \w seen|strong="H7200"\w* \w in|strong="H1004"\w* \w your|strong="H3605"\w* \w house|strong="H1004"\w*?” +\p \w Hezekiah|strong="H2396"\w* \w answered|strong="H1697"\w*, “\w They|strong="H3808"\w* \w have|strong="H1961"\w* \w seen|strong="H7200"\w* \w all|strong="H3605"\w* \w that|strong="H7200"\w* \w is|strong="H4100"\w* \w in|strong="H1004"\w* \w my|strong="H3605"\w* \w house|strong="H1004"\w*. \w There|strong="H1961"\w* \w is|strong="H4100"\w* \w nothing|strong="H3808"\w* \w among|strong="H7200"\w* \w my|strong="H3605"\w* treasures \w that|strong="H7200"\w* \w I|strong="H1697"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* \w shown|strong="H7200"\w* \w them|strong="H7200"\w*.” +\p +\v 5 \w Then|strong="H8085"\w* \w Isaiah|strong="H3470"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w Hezekiah|strong="H2396"\w*, “\w Hear|strong="H8085"\w* \w the|strong="H8085"\w* \w word|strong="H1697"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*: +\v 6 ‘\w Behold|strong="H2009"\w*, \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w are|strong="H3117"\w* \w coming|strong="H2009"\w* \w when|strong="H3117"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w your|strong="H3068"\w* fathers \w have|strong="H3068"\w* stored \w up|strong="H5375"\w* \w until|strong="H5704"\w* \w today|strong="H3117"\w*, \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w carried|strong="H5375"\w* \w to|strong="H5704"\w* Babylon. \w Nothing|strong="H3808"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w left|strong="H3498"\w*,’ \w says|strong="H1697"\w* \w Yahweh|strong="H3068"\w*. +\v 7 ‘\w They|strong="H3947"\w* \w will|strong="H1961"\w* \w take|strong="H3947"\w* \w away|strong="H3947"\w* \w your|strong="H3947"\w* \w sons|strong="H1121"\w* \w who|strong="H1121"\w* \w will|strong="H1961"\w* \w issue|strong="H3318"\w* \w from|strong="H4480"\w* \w you|strong="H3947"\w*, whom \w you|strong="H3947"\w* \w shall|strong="H1121"\w* \w father|strong="H3205"\w*, \w and|strong="H1121"\w* \w they|strong="H3947"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w eunuchs|strong="H5631"\w* \w in|strong="H4428"\w* \w the|strong="H3947"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon’s \w palace|strong="H1964"\w*.’” +\p +\v 8 \w Then|strong="H1961"\w* \w Hezekiah|strong="H2396"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Isaiah|strong="H3470"\w*, “\w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w spoken|strong="H1696"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w*.” \w He|strong="H3588"\w* \w said|strong="H1696"\w* \w moreover|strong="H1961"\w*, “\w For|strong="H3588"\w* \w there|strong="H1961"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w peace|strong="H7965"\w* \w and|strong="H3068"\w* truth \w in|strong="H3068"\w* \w my|strong="H3068"\w* \w days|strong="H3117"\w*.” +\c 40 +\p +\v 1 “\w Comfort|strong="H5162"\w*, \w comfort|strong="H5162"\w* \w my|strong="H5971"\w* \w people|strong="H5971"\w*,” says \w your|strong="H5971"\w* God. +\v 2 “\w Speak|strong="H1696"\w* \w comfortably|strong="H3820"\w* \w to|strong="H1696"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3068"\w* \w call|strong="H7121"\w* \w out|strong="H3947"\w* \w to|strong="H1696"\w* \w her|strong="H3605"\w* \w that|strong="H3588"\w* \w her|strong="H3605"\w* \w warfare|strong="H6635"\w* \w is|strong="H3068"\w* \w accomplished|strong="H4390"\w*, \w that|strong="H3588"\w* \w her|strong="H3605"\w* \w iniquity|strong="H5771"\w* \w is|strong="H3068"\w* \w pardoned|strong="H7521"\w*, \w that|strong="H3588"\w* \w she|strong="H3588"\w* \w has|strong="H3068"\w* \w received|strong="H3947"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w double|strong="H3718"\w* \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w sins|strong="H2403"\w*.” +\q1 +\v 3 \w The|strong="H3068"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w one|strong="H3068"\w* \w who|strong="H3068"\w* \w calls|strong="H7121"\w* \w out|strong="H6437"\w*, +\q2 “\w Prepare|strong="H6437"\w* \w the|strong="H3068"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w wilderness|strong="H4057"\w*! +\q2 \w Make|strong="H3474"\w* \w a|strong="H3068"\w* level \w highway|strong="H4546"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w desert|strong="H6160"\w* \w for|strong="H7121"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*. +\q1 +\v 4 \w Every|strong="H3605"\w* \w valley|strong="H1516"\w* \w shall|strong="H2022"\w* \w be|strong="H1961"\w* \w exalted|strong="H5375"\w*, +\q2 \w and|strong="H2022"\w* \w every|strong="H3605"\w* \w mountain|strong="H2022"\w* \w and|strong="H2022"\w* \w hill|strong="H2022"\w* \w shall|strong="H2022"\w* \w be|strong="H1961"\w* \w made|strong="H1961"\w* \w low|strong="H8213"\w*. +\q2 \w The|strong="H3605"\w* uneven \w shall|strong="H2022"\w* \w be|strong="H1961"\w* \w made|strong="H1961"\w* \w level|strong="H4334"\w*, +\q2 \w and|strong="H2022"\w* \w the|strong="H3605"\w* \w rough|strong="H6121"\w* \w places|strong="H7406"\w* \w a|strong="H3068"\w* \w plain|strong="H4334"\w*. +\q1 +\v 5 \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w revealed|strong="H1540"\w*, +\q2 \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w* \w shall|strong="H3068"\w* \w see|strong="H7200"\w* \w it|strong="H3588"\w* \w together|strong="H3162"\w*; +\q2 \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w mouth|strong="H6310"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w it|strong="H3588"\w*.” +\b +\q1 +\v 6 \w The|strong="H3605"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w one|strong="H3605"\w* \w saying|strong="H6963"\w*, “\w Cry|strong="H7121"\w* \w out|strong="H4100"\w*!” +\q2 \w One|strong="H3605"\w* \w said|strong="H7121"\w*, “\w What|strong="H4100"\w* \w shall|strong="H7704"\w* \w I|strong="H4100"\w* \w cry|strong="H7121"\w*?” +\q1 “\w All|strong="H3605"\w* \w flesh|strong="H1320"\w* \w is|strong="H2617"\w* like \w grass|strong="H2682"\w*, +\q2 \w and|strong="H6963"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* glory \w is|strong="H2617"\w* like \w the|strong="H3605"\w* \w flower|strong="H6731"\w* \w of|strong="H6963"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*. +\q1 +\v 7 \w The|strong="H3588"\w* \w grass|strong="H2682"\w* \w withers|strong="H3001"\w*, +\q2 \w the|strong="H3588"\w* \w flower|strong="H6731"\w* \w fades|strong="H5034"\w*, +\q2 \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w breath|strong="H7307"\w* \w blows|strong="H5380"\w* \w on|strong="H3068"\w* \w it|strong="H3588"\w*. +\q2 \w Surely|strong="H3588"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w are|strong="H5971"\w* \w like|strong="H7307"\w* \w grass|strong="H2682"\w*. +\q1 +\v 8 \w The|strong="H6965"\w* \w grass|strong="H2682"\w* \w withers|strong="H3001"\w*, +\q2 \w the|strong="H6965"\w* \w flower|strong="H6731"\w* \w fades|strong="H5034"\w*; +\q2 but \w the|strong="H6965"\w* \w word|strong="H1697"\w* \w of|strong="H1697"\w* our God \w stands|strong="H6965"\w* \w forever|strong="H5769"\w*.” +\b +\q1 +\v 9 \w You|strong="H5921"\w* \w who|strong="H3063"\w* tell \w good|strong="H1319"\w* \w news|strong="H1319"\w* \w to|strong="H5927"\w* \w Zion|strong="H6726"\w*, \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w high|strong="H1364"\w* \w mountain|strong="H2022"\w*. +\q2 \w You|strong="H5921"\w* \w who|strong="H3063"\w* tell \w good|strong="H1319"\w* \w news|strong="H1319"\w* \w to|strong="H5927"\w* \w Jerusalem|strong="H3389"\w*, \w lift|strong="H7311"\w* \w up|strong="H5927"\w* \w your|strong="H5921"\w* \w voice|strong="H6963"\w* \w with|strong="H5921"\w* \w strength|strong="H3581"\w*! +\q2 \w Lift|strong="H7311"\w* \w it|strong="H5921"\w* \w up|strong="H5927"\w*! Don’t \w be|strong="H3389"\w* \w afraid|strong="H3372"\w*! +\q2 \w Say|strong="H6963"\w* \w to|strong="H5927"\w* \w the|strong="H5921"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w Judah|strong="H3063"\w*, “\w Behold|strong="H2009"\w*, \w your|strong="H5921"\w* God!” +\q1 +\v 10 \w Behold|strong="H2009"\w*, \w the|strong="H6440"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3069"\w* come \w as|strong="H6440"\w* \w a|strong="H3068"\w* \w mighty|strong="H2389"\w* one, +\q2 \w and|strong="H6440"\w* \w his|strong="H6440"\w* \w arm|strong="H2220"\w* \w will|strong="H3069"\w* \w rule|strong="H4910"\w* \w for|strong="H6440"\w* \w him|strong="H6440"\w*. +\q2 \w Behold|strong="H2009"\w*, \w his|strong="H6440"\w* \w reward|strong="H7939"\w* \w is|strong="H2009"\w* \w with|strong="H6440"\w* \w him|strong="H6440"\w*, +\q2 \w and|strong="H6440"\w* \w his|strong="H6440"\w* \w recompense|strong="H6468"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\q1 +\v 11 \w He|strong="H5763"\w* \w will|strong="H5739"\w* \w feed|strong="H7462"\w* \w his|strong="H5375"\w* \w flock|strong="H5739"\w* \w like|strong="H2220"\w* \w a|strong="H3068"\w* \w shepherd|strong="H7462"\w*. +\q2 \w He|strong="H5763"\w* \w will|strong="H5739"\w* \w gather|strong="H6908"\w* \w the|strong="H5375"\w* \w lambs|strong="H2922"\w* \w in|strong="H7462"\w* \w his|strong="H5375"\w* \w arm|strong="H2220"\w*, +\q2 \w and|strong="H5375"\w* \w carry|strong="H5375"\w* \w them|strong="H5375"\w* \w in|strong="H7462"\w* \w his|strong="H5375"\w* \w bosom|strong="H2436"\w*. +\q2 \w He|strong="H5763"\w* \w will|strong="H5739"\w* gently \w lead|strong="H5095"\w* \w those|strong="H5375"\w* \w who|strong="H7462"\w* \w have|strong="H7462"\w* \w their|strong="H5375"\w* \w young|strong="H5763"\w*. +\b +\q1 +\v 12 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* \w measured|strong="H4058"\w* \w the|strong="H4058"\w* \w waters|strong="H4325"\w* \w in|strong="H8064"\w* \w the|strong="H4058"\w* \w hollow|strong="H8168"\w* \w of|strong="H2022"\w* \w his|strong="H3557"\w* \w hand|strong="H8168"\w*, +\q2 \w and|strong="H8064"\w* \w marked|strong="H8505"\w* \w off|strong="H8505"\w* \w the|strong="H4058"\w* \w sky|strong="H8064"\w* \w with|strong="H8064"\w* \w his|strong="H3557"\w* \w span|strong="H2239"\w*, +\q2 \w and|strong="H8064"\w* \w calculated|strong="H3557"\w* \w the|strong="H4058"\w* \w dust|strong="H6083"\w* \w of|strong="H2022"\w* \w the|strong="H4058"\w* \w earth|strong="H6083"\w* \w in|strong="H8064"\w* \w a|strong="H3068"\w* measuring basket, +\q2 \w and|strong="H8064"\w* \w weighed|strong="H8254"\w* \w the|strong="H4058"\w* \w mountains|strong="H2022"\w* \w in|strong="H8064"\w* \w scales|strong="H3976"\w*, +\q2 \w and|strong="H8064"\w* \w the|strong="H4058"\w* \w hills|strong="H1389"\w* \w in|strong="H8064"\w* \w a|strong="H3068"\w* \w balance|strong="H3976"\w*? +\q1 +\v 13 \w Who|strong="H4310"\w* \w has|strong="H3068"\w* \w directed|strong="H8505"\w* \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w*, +\q2 \w or|strong="H3068"\w* \w has|strong="H3068"\w* \w taught|strong="H3045"\w* \w him|strong="H3045"\w* \w as|strong="H3068"\w* \w his|strong="H3068"\w* counselor? +\q1 +\v 14 \w Who|strong="H4310"\w* did \w he|strong="H8394"\w* \w take|strong="H3045"\w* \w counsel|strong="H3289"\w* \w with|strong="H3045"\w*, +\q2 \w and|strong="H4941"\w* \w who|strong="H4310"\w* \w instructed|strong="H3045"\w* \w him|strong="H3045"\w*, +\q2 \w and|strong="H4941"\w* \w taught|strong="H3925"\w* \w him|strong="H3045"\w* \w in|strong="H1870"\w* \w the|strong="H3045"\w* \w path|strong="H1870"\w* \w of|strong="H1870"\w* \w justice|strong="H4941"\w*, +\q2 \w and|strong="H4941"\w* \w taught|strong="H3925"\w* \w him|strong="H3045"\w* \w knowledge|strong="H1847"\w*, +\q2 \w and|strong="H4941"\w* showed \w him|strong="H3045"\w* \w the|strong="H3045"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w understanding|strong="H8394"\w*? +\q1 +\v 15 \w Behold|strong="H2005"\w*, \w the|strong="H2803"\w* \w nations|strong="H1471"\w* \w are|strong="H1471"\w* \w like|strong="H2803"\w* \w a|strong="H3068"\w* \w drop|strong="H4752"\w* \w in|strong="H1471"\w* \w a|strong="H3068"\w* \w bucket|strong="H1805"\w*, +\q2 \w and|strong="H1471"\w* \w are|strong="H1471"\w* \w regarded|strong="H2803"\w* \w as|strong="H2803"\w* \w a|strong="H3068"\w* \w speck|strong="H7834"\w* \w of|strong="H1471"\w* \w dust|strong="H7834"\w* on \w a|strong="H3068"\w* \w balance|strong="H3976"\w*. +\q2 \w Behold|strong="H2005"\w*, \w he|strong="H2803"\w* \w lifts|strong="H5190"\w* \w up|strong="H5190"\w* \w the|strong="H2803"\w* islands \w like|strong="H2803"\w* \w a|strong="H3068"\w* very little \w thing|strong="H1851"\w*. +\q1 +\v 16 \w Lebanon|strong="H3844"\w* \w is|strong="H3844"\w* not \w sufficient|strong="H1767"\w* \w to|strong="H1767"\w* \w burn|strong="H1197"\w*, +\q2 \w nor|strong="H5930"\w* \w its|strong="H1767"\w* \w animals|strong="H2416"\w* \w sufficient|strong="H1767"\w* \w for|strong="H2416"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*. +\q1 +\v 17 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w are|strong="H1471"\w* \w like|strong="H2803"\w* \w nothing|strong="H8414"\w* \w before|strong="H5048"\w* \w him|strong="H3605"\w*. +\q2 \w They|strong="H3605"\w* \w are|strong="H1471"\w* \w regarded|strong="H2803"\w* \w by|strong="H3605"\w* \w him|strong="H3605"\w* \w as|strong="H2803"\w* less \w than|strong="H3605"\w* \w nothing|strong="H8414"\w*, \w and|strong="H1471"\w* \w vanity|strong="H8414"\w*. +\b +\q1 +\v 18 \w To|strong="H1819"\w* \w whom|strong="H4310"\w* \w then|strong="H4100"\w* \w will|strong="H4310"\w* \w you|strong="H4100"\w* \w liken|strong="H1819"\w* \w God|strong="H4310"\w*? +\q2 \w Or|strong="H4310"\w* \w what|strong="H4100"\w* \w likeness|strong="H1823"\w* \w will|strong="H4310"\w* \w you|strong="H4100"\w* \w compare|strong="H1819"\w* \w to|strong="H1819"\w* him? +\q1 +\v 19 \w A|strong="H3068"\w* \w workman|strong="H2796"\w* \w has|strong="H2091"\w* \w cast|strong="H5258"\w* \w an|strong="H2091"\w* \w image|strong="H6459"\w*, +\q2 \w and|strong="H3701"\w* \w the|strong="H7554"\w* \w goldsmith|strong="H6884"\w* \w overlays|strong="H7554"\w* \w it|strong="H2091"\w* \w with|strong="H2091"\w* \w gold|strong="H2091"\w*, +\q2 \w and|strong="H3701"\w* \w casts|strong="H5258"\w* \w silver|strong="H3701"\w* \w chains|strong="H7577"\w* \w for|strong="H3701"\w* \w it|strong="H2091"\w*. +\q1 +\v 20 \w He|strong="H3808"\w* \w who|strong="H2450"\w* \w is|strong="H2450"\w* \w too|strong="H3808"\w* \w impoverished|strong="H5533"\w* \w for|strong="H6086"\w* \w such|strong="H3808"\w* \w an|strong="H1245"\w* \w offering|strong="H8641"\w* chooses \w a|strong="H3068"\w* \w tree|strong="H6086"\w* \w that|strong="H6086"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w rot|strong="H7537"\w*. +\q2 \w He|strong="H3808"\w* \w seeks|strong="H1245"\w* \w a|strong="H3068"\w* \w skillful|strong="H2450"\w* \w workman|strong="H2796"\w* \w to|strong="H1245"\w* \w set|strong="H3559"\w* up \w a|strong="H3068"\w* \w carved|strong="H6459"\w* \w image|strong="H6459"\w* \w for|strong="H6086"\w* \w him|strong="H1245"\w* \w that|strong="H6086"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w moved|strong="H4131"\w*. +\b +\q1 +\v 21 Haven’t \w you|strong="H3045"\w* \w known|strong="H3045"\w*? +\q2 Haven’t \w you|strong="H3045"\w* \w heard|strong="H8085"\w*? +\q2 Haven’t \w you|strong="H3045"\w* \w been|strong="H5046"\w* \w told|strong="H5046"\w* \w from|strong="H8085"\w* \w the|strong="H8085"\w* \w beginning|strong="H7218"\w*? +\q2 Haven’t \w you|strong="H3045"\w* \w understood|strong="H3045"\w* \w from|strong="H8085"\w* \w the|strong="H8085"\w* \w foundations|strong="H4146"\w* \w of|strong="H7218"\w* \w the|strong="H8085"\w* earth? +\q1 +\v 22 \w It|strong="H5921"\w* \w is|strong="H3427"\w* \w he|strong="H5921"\w* \w who|strong="H3427"\w* \w sits|strong="H3427"\w* \w above|strong="H5921"\w* \w the|strong="H5921"\w* \w circle|strong="H2329"\w* \w of|strong="H3427"\w* \w the|strong="H5921"\w* \w earth|strong="H8064"\w*, +\q2 \w and|strong="H8064"\w* \w its|strong="H5921"\w* \w inhabitants|strong="H3427"\w* \w are|strong="H8064"\w* \w like|strong="H5921"\w* \w grasshoppers|strong="H2284"\w*; +\q2 \w who|strong="H3427"\w* \w stretches|strong="H5186"\w* \w out|strong="H5186"\w* \w the|strong="H5921"\w* \w heavens|strong="H8064"\w* \w like|strong="H5921"\w* \w a|strong="H3068"\w* \w curtain|strong="H1852"\w*, +\q2 \w and|strong="H8064"\w* \w spreads|strong="H4969"\w* \w them|strong="H5921"\w* \w out|strong="H5186"\w* \w like|strong="H5921"\w* \w a|strong="H3068"\w* tent \w to|strong="H5921"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w*, +\q2 +\v 23 \w who|strong="H6213"\w* \w brings|strong="H5414"\w* \w princes|strong="H7336"\w* \w to|strong="H6213"\w* \w nothing|strong="H8414"\w*, +\q2 \w who|strong="H6213"\w* \w makes|strong="H6213"\w* \w the|strong="H5414"\w* \w judges|strong="H8199"\w* \w of|strong="H6213"\w* \w the|strong="H5414"\w* earth \w meaningless|strong="H8414"\w*. +\q1 +\v 24 \w They|strong="H1077"\w* \w are|strong="H1571"\w* \w planted|strong="H5193"\w* \w scarcely|strong="H1077"\w*. +\q2 \w They|strong="H1077"\w* \w are|strong="H1571"\w* \w sown|strong="H2232"\w* \w scarcely|strong="H1077"\w*. +\q2 \w Their|strong="H5375"\w* \w stock|strong="H1503"\w* \w has|strong="H1571"\w* \w scarcely|strong="H1077"\w* \w taken|strong="H5375"\w* \w root|strong="H8327"\w* \w in|strong="H1571"\w* \w the|strong="H5375"\w* ground. +\q2 \w He|strong="H1571"\w* \w merely|strong="H1571"\w* \w blows|strong="H5398"\w* \w on|strong="H5375"\w* \w them|strong="H5375"\w*, \w and|strong="H1571"\w* \w they|strong="H1077"\w* \w wither|strong="H3001"\w*, +\q2 \w and|strong="H1571"\w* \w the|strong="H5375"\w* \w whirlwind|strong="H5591"\w* \w takes|strong="H5375"\w* \w them|strong="H5375"\w* \w away|strong="H5375"\w* \w as|strong="H1571"\w* \w stubble|strong="H7179"\w*. +\b +\q1 +\v 25 “\w To|strong="H1819"\w* \w whom|strong="H4310"\w* then \w will|strong="H4310"\w* \w you|strong="H4310"\w* \w liken|strong="H1819"\w* \w me|strong="H7737"\w*? +\q2 \w Who|strong="H4310"\w* \w is|strong="H4310"\w* \w my|strong="H7737"\w* \w equal|strong="H7737"\w*?” says \w the|strong="H1819"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w*. +\q1 +\v 26 \w Lift|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H3605"\w* \w eyes|strong="H5869"\w* \w on|strong="H7200"\w* \w high|strong="H4791"\w*, +\q2 \w and|strong="H5869"\w* \w see|strong="H7200"\w* \w who|strong="H4310"\w* \w has|strong="H4310"\w* \w created|strong="H1254"\w* \w these|strong="H7121"\w*, +\q2 \w who|strong="H4310"\w* \w brings|strong="H3318"\w* \w out|strong="H3318"\w* \w their|strong="H3605"\w* \w army|strong="H6635"\w* \w by|strong="H7121"\w* \w number|strong="H4557"\w*. +\q2 \w He|strong="H3605"\w* \w calls|strong="H7121"\w* \w them|strong="H7121"\w* \w all|strong="H3605"\w* \w by|strong="H7121"\w* \w name|strong="H8034"\w*. +\q2 \w By|strong="H7121"\w* \w the|strong="H3605"\w* \w greatness|strong="H7230"\w* \w of|strong="H5869"\w* \w his|strong="H3605"\w* \w might|strong="H3581"\w*, +\q2 \w and|strong="H5869"\w* \w because|strong="H7230"\w* \w he|strong="H3605"\w* \w is|strong="H4310"\w* \w strong|strong="H3581"\w* \w in|strong="H6635"\w* \w power|strong="H3581"\w*, +\q2 \w not|strong="H3808"\w* \w one|strong="H3605"\w* \w is|strong="H4310"\w* \w lacking|strong="H5737"\w*. +\b +\q1 +\v 27 \w Why|strong="H4100"\w* \w do|strong="H3068"\w* \w you|strong="H4100"\w* \w say|strong="H1696"\w*, \w Jacob|strong="H3290"\w*, +\q2 \w and|strong="H3478"\w* \w speak|strong="H1696"\w*, \w Israel|strong="H3478"\w*, +\q2 “\w My|strong="H3068"\w* \w way|strong="H1870"\w* \w is|strong="H3068"\w* \w hidden|strong="H5641"\w* \w from|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H3478"\w* \w the|strong="H3068"\w* \w justice|strong="H4941"\w* \w due|strong="H4941"\w* \w me|strong="H5674"\w* \w is|strong="H3068"\w* disregarded \w by|strong="H5674"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*”? +\q1 +\v 28 Haven’t \w you|strong="H3045"\w* \w known|strong="H3045"\w*? +\q2 Haven’t \w you|strong="H3045"\w* \w heard|strong="H8085"\w*? +\q2 \w The|strong="H8085"\w* \w everlasting|strong="H5769"\w* \w God|strong="H3068"\w*, \w Yahweh|strong="H3068"\w*, +\q2 \w the|strong="H8085"\w* \w Creator|strong="H1254"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* \w ends|strong="H7098"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* earth, doesn’t \w faint|strong="H3286"\w*. +\q2 \w He|strong="H3068"\w* isn’t \w weary|strong="H3021"\w*. +\q2 \w His|strong="H3068"\w* \w understanding|strong="H8394"\w* \w is|strong="H3068"\w* \w unsearchable|strong="H2714"\w*. +\q1 +\v 29 \w He|strong="H5414"\w* \w gives|strong="H5414"\w* \w power|strong="H3581"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* weak. +\q2 \w He|strong="H5414"\w* \w increases|strong="H7235"\w* \w the|strong="H5414"\w* \w strength|strong="H3581"\w* \w of|strong="H7235"\w* \w him|strong="H5414"\w* who \w has|strong="H3581"\w* \w no|strong="H5414"\w* \w might|strong="H3581"\w*. +\q1 +\v 30 Even \w the|strong="H5288"\w* \w youths|strong="H5288"\w* \w faint|strong="H3286"\w* \w and|strong="H5288"\w* \w get|strong="H3021"\w* \w weary|strong="H3021"\w*, +\q2 \w and|strong="H5288"\w* \w the|strong="H5288"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w utterly|strong="H3782"\w* \w fall|strong="H3782"\w*; +\q2 +\v 31 \w but|strong="H3808"\w* those \w who|strong="H3068"\w* \w wait|strong="H6960"\w* \w for|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w renew|strong="H2498"\w* \w their|strong="H3068"\w* \w strength|strong="H3581"\w*. +\q2 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w mount|strong="H5927"\w* \w up|strong="H5927"\w* \w with|strong="H3068"\w* wings \w like|strong="H3808"\w* \w eagles|strong="H5404"\w*. +\q2 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w run|strong="H7323"\w*, \w and|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w weary|strong="H3021"\w*. +\q2 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w walk|strong="H3212"\w*, \w and|strong="H3068"\w* \w not|strong="H3808"\w* \w faint|strong="H3286"\w*. +\c 41 +\q1 +\v 1 “\w Keep|strong="H2790"\w* \w silent|strong="H2790"\w* before \w me|strong="H1696"\w*, islands, +\q2 \w and|strong="H4941"\w* let \w the|strong="H7126"\w* \w peoples|strong="H3816"\w* \w renew|strong="H2498"\w* \w their|strong="H7126"\w* \w strength|strong="H3581"\w*. +\q1 Let \w them|strong="H7126"\w* \w come|strong="H7126"\w* \w near|strong="H7126"\w*, +\q2 \w then|strong="H1696"\w* let \w them|strong="H7126"\w* \w speak|strong="H1696"\w*. +\q2 Let’s meet \w together|strong="H3162"\w* \w for|strong="H4941"\w* \w judgment|strong="H4941"\w*. +\q1 +\v 2 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* \w raised|strong="H5782"\w* \w up|strong="H5782"\w* \w one|strong="H4310"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w east|strong="H4217"\w*? +\q2 \w Who|strong="H4310"\w* \w called|strong="H7121"\w* \w him|strong="H5414"\w* \w to|strong="H5414"\w* \w his|strong="H5414"\w* \w feet|strong="H7272"\w* \w in|strong="H4428"\w* \w righteousness|strong="H6664"\w*? +\q2 \w He|strong="H5414"\w* hands \w over|strong="H4428"\w* \w nations|strong="H1471"\w* \w to|strong="H5414"\w* \w him|strong="H5414"\w* +\q2 \w and|strong="H4428"\w* \w makes|strong="H5414"\w* \w him|strong="H5414"\w* \w rule|strong="H7287"\w* \w over|strong="H4428"\w* \w kings|strong="H4428"\w*. +\q2 \w He|strong="H5414"\w* \w gives|strong="H5414"\w* \w them|strong="H5414"\w* \w like|strong="H7272"\w* \w the|strong="H6440"\w* \w dust|strong="H6083"\w* \w to|strong="H5414"\w* \w his|strong="H5414"\w* \w sword|strong="H2719"\w*, +\q2 \w like|strong="H7272"\w* \w the|strong="H6440"\w* \w driven|strong="H5086"\w* \w stubble|strong="H7179"\w* \w to|strong="H5414"\w* \w his|strong="H5414"\w* \w bow|strong="H7198"\w*. +\q1 +\v 3 \w He|strong="H3808"\w* \w pursues|strong="H7291"\w* \w them|strong="H5674"\w* +\q2 \w and|strong="H7965"\w* \w passes|strong="H5674"\w* \w by|strong="H5674"\w* \w safely|strong="H7965"\w*, +\q2 \w even|strong="H3808"\w* \w by|strong="H5674"\w* \w a|strong="H3068"\w* \w way|strong="H5674"\w* \w that|strong="H3808"\w* \w he|strong="H3808"\w* \w had|strong="H3808"\w* \w not|strong="H3808"\w* \w gone|strong="H5674"\w* \w with|strong="H5674"\w* \w his|strong="H5674"\w* \w feet|strong="H7272"\w*. +\q1 +\v 4 \w Who|strong="H4310"\w* \w has|strong="H3068"\w* \w worked|strong="H6213"\w* \w and|strong="H3068"\w* \w done|strong="H6213"\w* \w it|strong="H1931"\w*, +\q2 \w calling|strong="H7121"\w* \w the|strong="H6213"\w* \w generations|strong="H1755"\w* \w from|strong="H3068"\w* \w the|strong="H6213"\w* \w beginning|strong="H7218"\w*? +\q2 \w I|strong="H3068"\w*, \w Yahweh|strong="H3068"\w*, \w the|strong="H6213"\w* \w first|strong="H7223"\w*, \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w the|strong="H6213"\w* \w last|strong="H1755"\w*, \w I|strong="H3068"\w* \w am|strong="H3068"\w* \w he|strong="H1931"\w*.” +\b +\q1 +\v 5 \w The|strong="H7200"\w* islands \w have|strong="H7200"\w* \w seen|strong="H7200"\w*, \w and|strong="H7200"\w* \w fear|strong="H3372"\w*. +\q2 \w The|strong="H7200"\w* \w ends|strong="H7098"\w* \w of|strong="H3372"\w* \w the|strong="H7200"\w* earth \w tremble|strong="H2729"\w*. +\q2 \w They|strong="H7200"\w* \w approach|strong="H7126"\w*, \w and|strong="H7200"\w* \w come|strong="H7126"\w*. +\q1 +\v 6 Everyone \w helps|strong="H5826"\w* \w his|strong="H2388"\w* \w neighbor|strong="H7453"\w*. +\q2 They say \w to|strong="H7453"\w* \w their|strong="H2388"\w* brothers, “Be \w strong|strong="H2388"\w*!” +\q1 +\v 7 \w So|strong="H3808"\w* \w the|strong="H2388"\w* \w carpenter|strong="H2796"\w* \w encourages|strong="H2388"\w* \w the|strong="H2388"\w* \w goldsmith|strong="H6884"\w*. +\q2 \w He|strong="H1931"\w* \w who|strong="H1931"\w* \w smooths|strong="H2505"\w* \w with|strong="H1986"\w* \w the|strong="H2388"\w* \w hammer|strong="H6360"\w* \w encourages|strong="H2388"\w* \w him|strong="H1931"\w* \w who|strong="H1931"\w* strikes \w the|strong="H2388"\w* \w anvil|strong="H6471"\w*, +\q2 saying \w of|strong="H2388"\w* \w the|strong="H2388"\w* \w soldering|strong="H1694"\w*, “\w It|strong="H1931"\w* \w is|strong="H1931"\w* \w good|strong="H2896"\w*;” +\q2 \w and|strong="H2388"\w* \w he|strong="H1931"\w* \w fastens|strong="H2388"\w* \w it|strong="H1931"\w* \w with|strong="H1986"\w* \w nails|strong="H4548"\w*, \w that|strong="H1931"\w* \w it|strong="H1931"\w* might \w not|strong="H3808"\w* \w totter|strong="H4131"\w*. +\b +\q1 +\v 8 “\w But|strong="H3290"\w* \w you|strong="H2233"\w*, \w Israel|strong="H3478"\w*, \w my|strong="H3290"\w* \w servant|strong="H5650"\w*, +\q2 \w Jacob|strong="H3290"\w* whom \w I|strong="H5650"\w* \w have|strong="H5650"\w* chosen, +\q2 \w the|strong="H5650"\w* \w offspring|strong="H2233"\w* \w of|strong="H5650"\w* Abraham \w my|strong="H3290"\w* friend, +\q2 +\v 9 \w you|strong="H3808"\w* \w whom|strong="H7121"\w* \w I|strong="H5650"\w* \w have|strong="H5650"\w* \w taken|strong="H2388"\w* \w hold|strong="H2388"\w* \w of|strong="H5650"\w* \w from|strong="H5650"\w* \w the|strong="H7121"\w* \w ends|strong="H7098"\w* \w of|strong="H5650"\w* \w the|strong="H7121"\w* earth, +\q2 \w and|strong="H5650"\w* \w called|strong="H7121"\w* \w from|strong="H5650"\w* \w its|strong="H3808"\w* \w corners|strong="H7098"\w*, +\q2 \w and|strong="H5650"\w* \w said|strong="H7121"\w* \w to|strong="H5650"\w* \w you|strong="H3808"\w*, ‘\w You|strong="H3808"\w* \w are|strong="H5650"\w* \w my|strong="H5650"\w* \w servant|strong="H5650"\w*. \w I|strong="H5650"\w* \w have|strong="H5650"\w* chosen \w you|strong="H3808"\w* \w and|strong="H5650"\w* \w have|strong="H5650"\w* \w not|strong="H3808"\w* \w cast|strong="H3988"\w* \w you|strong="H3808"\w* \w away|strong="H3988"\w*.’ +\q1 +\v 10 Don’t \w you|strong="H3588"\w* \w be|strong="H3372"\w* \w afraid|strong="H3372"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* am \w with|strong="H5973"\w* \w you|strong="H3588"\w*. +\q2 Don’t \w be|strong="H3372"\w* \w dismayed|strong="H8159"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* am \w your|strong="H3588"\w* God. +\q2 \w I|strong="H3588"\w* \w will|strong="H3225"\w* strengthen \w you|strong="H3588"\w*. +\q2 \w Yes|strong="H3588"\w*, \w I|strong="H3588"\w* \w will|strong="H3225"\w* \w help|strong="H5826"\w* \w you|strong="H3588"\w*. +\q2 \w Yes|strong="H3588"\w*, \w I|strong="H3588"\w* \w will|strong="H3225"\w* \w uphold|strong="H8551"\w* \w you|strong="H3588"\w* \w with|strong="H5973"\w* \w the|strong="H3588"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w of|strong="H3225"\w* \w my|strong="H3588"\w* \w righteousness|strong="H6664"\w*. +\q1 +\v 11 \w Behold|strong="H2005"\w*, \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H1961"\w* \w incensed|strong="H2734"\w* \w against|strong="H2734"\w* \w you|strong="H3605"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* disappointed \w and|strong="H7379"\w* \w confounded|strong="H3637"\w*. +\q2 \w Those|strong="H3605"\w* \w who|strong="H3605"\w* \w strive|strong="H7379"\w* \w with|strong="H3605"\w* \w you|strong="H3605"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w nothing|strong="H3605"\w*, \w and|strong="H7379"\w* \w shall|strong="H7379"\w* perish. +\q1 +\v 12 \w You|strong="H3808"\w* \w will|strong="H1961"\w* \w seek|strong="H1245"\w* \w them|strong="H4672"\w*, \w and|strong="H4421"\w* won’t \w find|strong="H4672"\w* \w them|strong="H4672"\w*, +\q2 \w even|strong="H3808"\w* \w those|strong="H1961"\w* \w who|strong="H4421"\w* contend \w with|strong="H4421"\w* \w you|strong="H3808"\w*. +\q2 \w Those|strong="H1961"\w* \w who|strong="H4421"\w* \w war|strong="H4421"\w* \w against|strong="H4421"\w* \w you|strong="H3808"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w nothing|strong="H3808"\w*, +\q2 \w as|strong="H1961"\w* \w a|strong="H3068"\w* nonexistent thing. +\q1 +\v 13 \w For|strong="H3588"\w* \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w will|strong="H3068"\w* \w hold|strong="H2388"\w* \w your|strong="H3068"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w*, +\q2 saying \w to|strong="H3068"\w* \w you|strong="H3588"\w*, ‘Don’t \w be|strong="H3068"\w* \w afraid|strong="H3372"\w*. +\q2 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w help|strong="H5826"\w* \w you|strong="H3588"\w*.’ +\q1 +\v 14 Don’t \w be|strong="H3068"\w* \w afraid|strong="H3372"\w*, \w you|strong="H3372"\w* \w worm|strong="H8438"\w* \w Jacob|strong="H3290"\w*, +\q2 \w and|strong="H3478"\w* \w you|strong="H3372"\w* \w men|strong="H4962"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\q2 \w I|strong="H3478"\w* \w will|strong="H3068"\w* \w help|strong="H5826"\w* \w you|strong="H3372"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q2 “\w Your|strong="H3068"\w* \w Redeemer|strong="H1350"\w* \w is|strong="H3068"\w* \w the|strong="H5002"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\q1 +\v 15 \w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w have|strong="H1167"\w* \w made|strong="H7760"\w* \w you|strong="H7760"\w* \w into|strong="H7760"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w sharp|strong="H2742"\w* \w threshing|strong="H1758"\w* \w instrument|strong="H2742"\w* \w with|strong="H2022"\w* \w teeth|strong="H6374"\w*. +\q2 \w You|strong="H7760"\w* \w will|strong="H2022"\w* \w thresh|strong="H1758"\w* \w the|strong="H7760"\w* \w mountains|strong="H2022"\w*, +\q2 \w and|strong="H2022"\w* beat \w them|strong="H7760"\w* \w small|strong="H1854"\w*, +\q2 \w and|strong="H2022"\w* \w will|strong="H2022"\w* \w make|strong="H7760"\w* \w the|strong="H7760"\w* \w hills|strong="H1389"\w* \w like|strong="H1389"\w* \w chaff|strong="H4671"\w*. +\q1 +\v 16 \w You|strong="H5375"\w* \w will|strong="H3068"\w* \w winnow|strong="H2219"\w* \w them|strong="H5375"\w*, +\q2 \w and|strong="H3478"\w* \w the|strong="H5375"\w* \w wind|strong="H7307"\w* \w will|strong="H3068"\w* \w carry|strong="H5375"\w* \w them|strong="H5375"\w* \w away|strong="H5375"\w*, +\q2 \w and|strong="H3478"\w* \w the|strong="H5375"\w* \w whirlwind|strong="H5591"\w* \w will|strong="H3068"\w* \w scatter|strong="H2219"\w* \w them|strong="H5375"\w*. +\q1 \w You|strong="H5375"\w* \w will|strong="H3068"\w* \w rejoice|strong="H1523"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w You|strong="H5375"\w* \w will|strong="H3068"\w* \w glory|strong="H1984"\w* \w in|strong="H3478"\w* \w the|strong="H5375"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\b +\q1 +\v 17 \w The|strong="H3068"\w* \w poor|strong="H6041"\w* \w and|strong="H3478"\w* \w needy|strong="H6041"\w* \w seek|strong="H1245"\w* \w water|strong="H4325"\w*, \w and|strong="H3478"\w* \w there|strong="H3068"\w* \w is|strong="H3068"\w* \w none|strong="H3808"\w*. +\q2 \w Their|strong="H3068"\w* \w tongue|strong="H3956"\w* \w fails|strong="H5800"\w* \w for|strong="H3068"\w* \w thirst|strong="H6772"\w*. +\q1 \w I|strong="H3808"\w*, \w Yahweh|strong="H3068"\w*, \w will|strong="H3068"\w* \w answer|strong="H6030"\w* \w them|strong="H6030"\w*. +\q2 \w I|strong="H3808"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w forsake|strong="H5800"\w* \w them|strong="H6030"\w*. +\q1 +\v 18 \w I|strong="H5921"\w* \w will|strong="H4325"\w* \w open|strong="H6605"\w* \w rivers|strong="H5104"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w bare|strong="H8205"\w* \w heights|strong="H8205"\w*, +\q2 \w and|strong="H4325"\w* \w springs|strong="H4599"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H4325"\w* \w the|strong="H5921"\w* \w valleys|strong="H1237"\w*. +\q2 \w I|strong="H5921"\w* \w will|strong="H4325"\w* \w make|strong="H7760"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w* \w a|strong="H3068"\w* \w pool|strong="H4325"\w* \w of|strong="H4325"\w* \w water|strong="H4325"\w*, +\q2 \w and|strong="H4325"\w* \w the|strong="H5921"\w* \w dry|strong="H6723"\w* \w land|strong="H6723"\w* \w springs|strong="H4599"\w* \w of|strong="H4325"\w* \w water|strong="H4325"\w*. +\q1 +\v 19 \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w put|strong="H5414"\w* cedar, \w acacia|strong="H7848"\w*, \w myrtle|strong="H1918"\w*, \w and|strong="H6086"\w* \w oil|strong="H8081"\w* \w trees|strong="H6086"\w* \w in|strong="H6086"\w* \w the|strong="H5414"\w* \w wilderness|strong="H4057"\w*. +\q2 \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w set|strong="H7760"\w* \w cypress|strong="H1265"\w* \w trees|strong="H6086"\w*, \w pine|strong="H8081"\w*, \w and|strong="H6086"\w* \w box|strong="H8410"\w* \w trees|strong="H6086"\w* \w together|strong="H3162"\w* \w in|strong="H6086"\w* \w the|strong="H5414"\w* \w desert|strong="H6160"\w*; +\q2 +\v 20 \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w may|strong="H3068"\w* \w see|strong="H7200"\w*, \w know|strong="H3045"\w*, \w consider|strong="H7200"\w*, \w and|strong="H3478"\w* \w understand|strong="H3045"\w* \w together|strong="H3162"\w*, +\q2 \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w* \w this|strong="H2063"\w*, +\q2 \w and|strong="H3478"\w* \w the|strong="H7200"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w has|strong="H3068"\w* \w created|strong="H1254"\w* \w it|strong="H7760"\w*. +\b +\q1 +\v 21 \w Produce|strong="H7126"\w* \w your|strong="H3068"\w* \w cause|strong="H7379"\w*,” says \w Yahweh|strong="H3068"\w*. +\q2 “\w Bring|strong="H7126"\w* out \w your|strong="H3068"\w* \w strong|strong="H6110"\w* reasons!” says \w the|strong="H3068"\w* \w King|strong="H4428"\w* \w of|strong="H4428"\w* \w Jacob|strong="H3290"\w*. +\q1 +\v 22 “\w Let|strong="H7760"\w* \w them|strong="H7760"\w* \w announce|strong="H5046"\w* \w and|strong="H8085"\w* \w declare|strong="H5046"\w* \w to|strong="H3820"\w* \w us|strong="H5046"\w* \w what|strong="H4100"\w* \w will|strong="H3820"\w* \w happen|strong="H7136"\w*! +\q2 \w Declare|strong="H5046"\w* \w the|strong="H8085"\w* \w former|strong="H7223"\w* \w things|strong="H7223"\w*, \w what|strong="H4100"\w* \w they|strong="H2007"\w* \w are|strong="H4100"\w*, +\q2 \w that|strong="H3045"\w* \w we|strong="H3068"\w* \w may|strong="H3820"\w* \w consider|strong="H7760"\w* \w them|strong="H7760"\w*, \w and|strong="H8085"\w* \w know|strong="H3045"\w* \w the|strong="H8085"\w* latter \w end|strong="H4100"\w* \w of|strong="H3820"\w* \w them|strong="H7760"\w*; +\q2 \w or|strong="H8085"\w* \w show|strong="H3045"\w* \w us|strong="H5046"\w* \w things|strong="H7223"\w* \w to|strong="H3820"\w* \w come|strong="H5066"\w*. +\q1 +\v 23 \w Declare|strong="H5046"\w* \w the|strong="H7200"\w* things \w that|strong="H3588"\w* \w are|strong="H3045"\w* \w to|strong="H7200"\w* \w come|strong="H3045"\w* hereafter, +\q2 \w that|strong="H3588"\w* \w we|strong="H3068"\w* may \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H3045"\w* gods. +\q1 \w Yes|strong="H3588"\w*, \w do|strong="H3190"\w* \w good|strong="H3190"\w*, \w or|strong="H7200"\w* \w do|strong="H3190"\w* \w evil|strong="H7489"\w*, +\q2 \w that|strong="H3588"\w* \w we|strong="H3068"\w* may \w be|strong="H3162"\w* \w dismayed|strong="H8159"\w*, +\q2 \w and|strong="H7200"\w* \w see|strong="H7200"\w* \w it|strong="H3588"\w* \w together|strong="H3162"\w*. +\q1 +\v 24 \w Behold|strong="H2005"\w*, \w you|strong="H6467"\w* are nothing, +\q2 \w and|strong="H8441"\w* your \w work|strong="H6467"\w* \w is|strong="H8441"\w* nothing. +\q2 \w He|strong="H2005"\w* who chooses \w you|strong="H6467"\w* \w is|strong="H8441"\w* an \w abomination|strong="H8441"\w*. +\b +\q1 +\v 25 “\w I|strong="H3644"\w* \w have|strong="H7429"\w* \w raised|strong="H5782"\w* \w up|strong="H5782"\w* \w one|strong="H8034"\w* \w from|strong="H8034"\w* \w the|strong="H7121"\w* \w north|strong="H6828"\w*, \w and|strong="H6828"\w* \w he|strong="H7121"\w* \w has|strong="H8121"\w* come, +\q2 \w from|strong="H8034"\w* \w the|strong="H7121"\w* \w rising|strong="H4217"\w* \w of|strong="H8034"\w* \w the|strong="H7121"\w* \w sun|strong="H8121"\w*, \w one|strong="H8034"\w* \w who|strong="H7121"\w* \w calls|strong="H7121"\w* \w on|strong="H7121"\w* \w my|strong="H7121"\w* \w name|strong="H8034"\w*, +\q2 \w and|strong="H6828"\w* \w he|strong="H7121"\w* \w shall|strong="H6828"\w* come \w on|strong="H7121"\w* \w rulers|strong="H5461"\w* \w as|strong="H3644"\w* \w on|strong="H7121"\w* \w mortar|strong="H2563"\w*, +\q2 \w and|strong="H6828"\w* \w as|strong="H3644"\w* \w the|strong="H7121"\w* \w potter|strong="H3335"\w* \w treads|strong="H7429"\w* \w clay|strong="H2563"\w*. +\q1 +\v 26 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* \w declared|strong="H5046"\w* \w it|strong="H3045"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w beginning|strong="H7218"\w*, \w that|strong="H3045"\w* \w we|strong="H3068"\w* \w may|strong="H4310"\w* \w know|strong="H3045"\w*? +\q2 \w and|strong="H7218"\w* \w before|strong="H6440"\w*, \w that|strong="H3045"\w* \w we|strong="H3068"\w* \w may|strong="H4310"\w* say, ‘\w He|strong="H6440"\w* \w is|strong="H4310"\w* \w right|strong="H6662"\w*’? +\q1 \w Surely|strong="H5046"\w*, \w there|strong="H3045"\w* \w is|strong="H4310"\w* \w no|strong="H3045"\w* \w one|strong="H6662"\w* \w who|strong="H4310"\w* \w declares|strong="H5046"\w*. +\q2 \w Surely|strong="H5046"\w*, \w there|strong="H3045"\w* \w is|strong="H4310"\w* \w no|strong="H3045"\w* \w one|strong="H6662"\w* \w who|strong="H4310"\w* shows. +\q2 \w Surely|strong="H5046"\w*, \w there|strong="H3045"\w* \w is|strong="H4310"\w* \w no|strong="H3045"\w* \w one|strong="H6662"\w* \w who|strong="H4310"\w* \w hears|strong="H8085"\w* \w your|strong="H6440"\w* words. +\q1 +\v 27 \w I|strong="H2005"\w* \w am|strong="H2005"\w* \w the|strong="H5414"\w* \w first|strong="H7223"\w* \w to|strong="H5414"\w* say \w to|strong="H5414"\w* \w Zion|strong="H6726"\w*, ‘\w Behold|strong="H2009"\w*, \w look|strong="H2009"\w* \w at|strong="H5414"\w* \w them|strong="H5414"\w*;’ +\q2 \w and|strong="H3389"\w* \w I|strong="H2005"\w* \w will|strong="H3389"\w* \w give|strong="H5414"\w* \w one|strong="H7223"\w* \w who|strong="H3389"\w* \w brings|strong="H1319"\w* \w good|strong="H1319"\w* \w news|strong="H1319"\w* \w to|strong="H5414"\w* \w Jerusalem|strong="H3389"\w*. +\q1 +\v 28 \w When|strong="H7200"\w* \w I|strong="H1697"\w* \w look|strong="H7200"\w*, \w there|strong="H7725"\w* \w is|strong="H1697"\w* \w no|strong="H7200"\w* \w man|strong="H7200"\w*, +\q2 even \w among|strong="H7200"\w* \w them|strong="H7725"\w* \w there|strong="H7725"\w* \w is|strong="H1697"\w* \w no|strong="H7200"\w* \w counselor|strong="H3289"\w* \w who|strong="H7592"\w*, \w when|strong="H7200"\w* \w I|strong="H1697"\w* \w ask|strong="H7592"\w*, \w can|strong="H7200"\w* \w answer|strong="H7725"\w* \w a|strong="H3068"\w* \w word|strong="H1697"\w*. +\q1 +\v 29 \w Behold|strong="H2005"\w*, \w all|strong="H3605"\w* \w of|strong="H7307"\w* \w their|strong="H3605"\w* \w deeds|strong="H4639"\w* \w are|strong="H5262"\w* \w vanity|strong="H8414"\w* \w and|strong="H7307"\w* \w nothing|strong="H8414"\w*. +\q2 \w Their|strong="H3605"\w* \w molten|strong="H5262"\w* \w images|strong="H5262"\w* \w are|strong="H5262"\w* \w wind|strong="H7307"\w* \w and|strong="H7307"\w* \w confusion|strong="H8414"\w*. +\c 42 +\q1 +\v 1 “\w Behold|strong="H2005"\w*, \w my|strong="H5414"\w* \w servant|strong="H5650"\w*, whom \w I|strong="H2005"\w* \w uphold|strong="H8551"\w*, +\q2 \w my|strong="H5414"\w* chosen, \w in|strong="H5921"\w* whom \w my|strong="H5414"\w* \w soul|strong="H5315"\w* \w delights|strong="H7521"\w*: +\q2 \w I|strong="H2005"\w* \w have|strong="H5650"\w* \w put|strong="H5414"\w* \w my|strong="H5414"\w* \w Spirit|strong="H7307"\w* \w on|strong="H5921"\w* \w him|strong="H5414"\w*. +\q2 \w He|strong="H5414"\w* \w will|strong="H1471"\w* \w bring|strong="H3318"\w* \w justice|strong="H4941"\w* \w to|strong="H3318"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*. +\q1 +\v 2 \w He|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w shout|strong="H6963"\w*, +\q2 \w nor|strong="H3808"\w* \w raise|strong="H5375"\w* \w his|strong="H5375"\w* \w voice|strong="H6963"\w*, +\q2 \w nor|strong="H3808"\w* cause \w it|strong="H5375"\w* \w to|strong="H8085"\w* \w be|strong="H3808"\w* \w heard|strong="H8085"\w* \w in|strong="H8085"\w* \w the|strong="H8085"\w* \w street|strong="H2351"\w*. +\q1 +\v 3 \w He|strong="H3808"\w* won’t \w break|strong="H7665"\w* \w a|strong="H3068"\w* \w bruised|strong="H7533"\w* \w reed|strong="H7070"\w*. +\q2 \w He|strong="H3808"\w* won’t \w quench|strong="H3518"\w* \w a|strong="H3068"\w* \w dimly|strong="H3544"\w* \w burning|strong="H3544"\w* \w wick|strong="H6594"\w*. +\q2 \w He|strong="H3808"\w* \w will|strong="H3808"\w* faithfully \w bring|strong="H3318"\w* \w justice|strong="H4941"\w*. +\q1 +\v 4 \w He|strong="H5704"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w fail|strong="H3543"\w* \w nor|strong="H3808"\w* \w be|strong="H3808"\w* \w discouraged|strong="H7533"\w*, +\q2 \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w has|strong="H4941"\w* \w set|strong="H7760"\w* \w justice|strong="H4941"\w* \w in|strong="H3808"\w* \w the|strong="H7760"\w* earth, +\q2 \w and|strong="H4941"\w* \w the|strong="H7760"\w* islands \w wait|strong="H3176"\w* \w for|strong="H5704"\w* \w his|strong="H7760"\w* \w law|strong="H8451"\w*.” +\b +\q1 +\v 5 \w God|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w he|strong="H3068"\w* \w who|strong="H5971"\w* \w created|strong="H1254"\w* \w the|strong="H5921"\w* \w heavens|strong="H8064"\w* \w and|strong="H1980"\w* \w stretched|strong="H5186"\w* \w them|strong="H5414"\w* \w out|strong="H5186"\w*, +\q2 \w he|strong="H3068"\w* \w who|strong="H5971"\w* \w spread|strong="H5186"\w* \w out|strong="H5186"\w* \w the|strong="H5921"\w* \w earth|strong="H8064"\w* \w and|strong="H1980"\w* \w that|strong="H5971"\w* \w which|strong="H3068"\w* \w comes|strong="H1980"\w* \w out|strong="H5186"\w* \w of|strong="H3068"\w* \w it|strong="H5414"\w*, +\q2 \w he|strong="H3068"\w* \w who|strong="H5971"\w* \w gives|strong="H5414"\w* \w breath|strong="H7307"\w* \w to|strong="H1980"\w* \w its|strong="H5414"\w* \w people|strong="H5971"\w* \w and|strong="H1980"\w* \w spirit|strong="H7307"\w* \w to|strong="H1980"\w* \w those|strong="H5921"\w* \w who|strong="H5971"\w* \w walk|strong="H1980"\w* \w in|strong="H5921"\w* \w it|strong="H5414"\w*, \w says|strong="H3541"\w*: +\q1 +\v 6 “\w I|strong="H5414"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w called|strong="H7121"\w* \w you|strong="H5414"\w* \w in|strong="H3068"\w* \w righteousness|strong="H6664"\w*. +\q2 \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w hold|strong="H2388"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*. +\q2 \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w keep|strong="H5341"\w* \w you|strong="H5414"\w*, +\q2 \w and|strong="H3068"\w* \w make|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w for|strong="H7121"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w*, +\q2 \w as|strong="H3068"\w* \w a|strong="H3068"\w* light \w for|strong="H7121"\w* \w the|strong="H5414"\w* \w nations|strong="H1471"\w*, +\q2 +\v 7 \w to|strong="H3318"\w* \w open|strong="H6491"\w* \w the|strong="H3318"\w* \w blind|strong="H5787"\w* \w eyes|strong="H5869"\w*, +\q2 \w to|strong="H3318"\w* \w bring|strong="H3318"\w* \w the|strong="H3318"\w* prisoners \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H3318"\w* \w dungeon|strong="H1004"\w*, +\q2 \w and|strong="H1004"\w* \w those|strong="H3318"\w* \w who|strong="H3427"\w* \w sit|strong="H3427"\w* \w in|strong="H3427"\w* \w darkness|strong="H2822"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H3318"\w* \w prison|strong="H1004"\w*. +\b +\q1 +\v 8 “\w I|strong="H5414"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w That|strong="H1931"\w* \w is|strong="H3068"\w* \w my|strong="H5414"\w* \w name|strong="H8034"\w*. +\q2 \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w give|strong="H5414"\w* \w my|strong="H5414"\w* \w glory|strong="H3519"\w* \w to|strong="H3068"\w* \w another|strong="H3808"\w*, +\q2 \w nor|strong="H3808"\w* \w my|strong="H5414"\w* \w praise|strong="H8416"\w* \w to|strong="H3068"\w* \w engraved|strong="H6456"\w* \w images|strong="H6456"\w*. +\q1 +\v 9 \w Behold|strong="H2009"\w*, \w the|strong="H8085"\w* \w former|strong="H7223"\w* \w things|strong="H7223"\w* \w have|strong="H7223"\w* happened +\q2 \w and|strong="H8085"\w* \w I|strong="H2009"\w* \w declare|strong="H5046"\w* \w new|strong="H2319"\w* \w things|strong="H7223"\w*. +\q2 \w I|strong="H2009"\w* \w tell|strong="H5046"\w* \w you|strong="H5046"\w* \w about|strong="H8085"\w* \w them|strong="H5046"\w* \w before|strong="H2962"\w* \w they|strong="H2962"\w* come \w up|strong="H6779"\w*.” +\b +\q1 +\v 10 \w Sing|strong="H7891"\w* \w to|strong="H3381"\w* \w Yahweh|strong="H3068"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w song|strong="H7892"\w*, +\q2 \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w praise|strong="H8416"\w* \w from|strong="H3381"\w* \w the|strong="H3068"\w* \w end|strong="H7097"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* earth, +\q2 \w you|strong="H3381"\w* \w who|strong="H3068"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3068"\w* \w sea|strong="H3220"\w*, +\q2 \w and|strong="H3068"\w* \w all|strong="H4393"\w* \w that|strong="H3068"\w* \w is|strong="H3068"\w* \w therein|strong="H4393"\w*, +\q2 \w the|strong="H3068"\w* islands \w and|strong="H3068"\w* \w their|strong="H3068"\w* \w inhabitants|strong="H3427"\w*. +\q1 +\v 11 Let \w the|strong="H5375"\w* \w wilderness|strong="H4057"\w* \w and|strong="H5892"\w* \w its|strong="H5375"\w* \w cities|strong="H5892"\w* \w raise|strong="H5375"\w* \w their|strong="H5375"\w* voices, +\q2 \w with|strong="H3427"\w* \w the|strong="H5375"\w* \w villages|strong="H2691"\w* \w that|strong="H5892"\w* \w Kedar|strong="H6938"\w* \w inhabits|strong="H3427"\w*. +\q2 Let \w the|strong="H5375"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Sela|strong="H5554"\w* \w sing|strong="H7442"\w*. +\q2 Let \w them|strong="H5375"\w* \w shout|strong="H7442"\w* \w from|strong="H5892"\w* \w the|strong="H5375"\w* \w top|strong="H7218"\w* \w of|strong="H3427"\w* \w the|strong="H5375"\w* \w mountains|strong="H2022"\w*! +\q1 +\v 12 \w Let|strong="H7760"\w* \w them|strong="H7760"\w* \w give|strong="H7760"\w* \w glory|strong="H3519"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* \w declare|strong="H5046"\w* \w his|strong="H7760"\w* \w praise|strong="H8416"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* islands. +\q1 +\v 13 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w like|strong="H3318"\w* \w a|strong="H3068"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w*. +\q2 \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w stir|strong="H5782"\w* \w up|strong="H5782"\w* \w zeal|strong="H7068"\w* \w like|strong="H3318"\w* \w a|strong="H3068"\w* \w man|strong="H1368"\w* \w of|strong="H3068"\w* \w war|strong="H4421"\w*. +\q2 \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w raise|strong="H5782"\w* \w a|strong="H3068"\w* \w war|strong="H4421"\w* \w cry|strong="H7321"\w*. +\q2 Yes, \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w shout|strong="H7321"\w* \w aloud|strong="H7321"\w*. +\q2 \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w triumph|strong="H7321"\w* \w over|strong="H5921"\w* \w his|strong="H3068"\w* enemies. +\b +\q1 +\v 14 “I \w have|strong="H3205"\w* \w been|strong="H5769"\w* \w silent|strong="H2790"\w* \w a|strong="H3068"\w* \w long|strong="H5769"\w* \w time|strong="H5769"\w*. +\q2 I \w have|strong="H3205"\w* \w been|strong="H5769"\w* \w quiet|strong="H2790"\w* \w and|strong="H5769"\w* restrained myself. +\q2 Now I \w will|strong="H3162"\w* \w cry|strong="H6463"\w* out \w like|strong="H3162"\w* \w a|strong="H3068"\w* travailing \w woman|strong="H3205"\w*. I \w will|strong="H3162"\w* \w both|strong="H3162"\w* \w gasp|strong="H5395"\w* \w and|strong="H5769"\w* \w pant|strong="H7602"\w*. +\q1 +\v 15 \w I|strong="H7760"\w* \w will|strong="H2022"\w* \w destroy|strong="H3605"\w* \w mountains|strong="H2022"\w* \w and|strong="H2022"\w* \w hills|strong="H1389"\w*, +\q2 \w and|strong="H2022"\w* \w dry|strong="H3001"\w* \w up|strong="H3001"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w herbs|strong="H6212"\w*. +\q2 \w I|strong="H7760"\w* \w will|strong="H2022"\w* \w make|strong="H7760"\w* \w the|strong="H3605"\w* \w rivers|strong="H5104"\w* islands, +\q2 \w and|strong="H2022"\w* \w will|strong="H2022"\w* \w dry|strong="H3001"\w* \w up|strong="H3001"\w* \w the|strong="H3605"\w* pools. +\q1 +\v 16 \w I|strong="H7760"\w* \w will|strong="H1697"\w* \w bring|strong="H6213"\w* \w the|strong="H6440"\w* \w blind|strong="H5787"\w* \w by|strong="H1870"\w* \w a|strong="H3068"\w* \w way|strong="H1870"\w* \w that|strong="H3045"\w* \w they|strong="H3808"\w* don’t \w know|strong="H3045"\w*. +\q2 \w I|strong="H7760"\w* \w will|strong="H1697"\w* \w lead|strong="H1869"\w* \w them|strong="H6440"\w* \w in|strong="H6213"\w* \w paths|strong="H5410"\w* \w that|strong="H3045"\w* \w they|strong="H3808"\w* don’t \w know|strong="H3045"\w*. +\q2 \w I|strong="H7760"\w* \w will|strong="H1697"\w* \w make|strong="H6213"\w* \w darkness|strong="H4285"\w* \w light|strong="H7760"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*, +\q2 \w and|strong="H3212"\w* crooked \w places|strong="H4285"\w* \w straight|strong="H4334"\w*. +\q2 \w I|strong="H7760"\w* \w will|strong="H1697"\w* \w do|strong="H6213"\w* \w these|strong="H6213"\w* \w things|strong="H1697"\w*, +\q2 \w and|strong="H3212"\w* \w I|strong="H7760"\w* \w will|strong="H1697"\w* \w not|strong="H3808"\w* \w forsake|strong="H5800"\w* \w them|strong="H6440"\w*. +\b +\q1 +\v 17 “Those who trust \w in|strong="H5472"\w* engraved \w images|strong="H4541"\w*, +\q2 who tell \w molten|strong="H4541"\w* \w images|strong="H4541"\w*, +\q2 ‘You \w are|strong="H6459"\w* our gods,’ +\q2 will be \w turned|strong="H5472"\w* \w back|strong="H5472"\w*. +\q2 They will be utterly disappointed. +\b +\q1 +\v 18 “\w Hear|strong="H8085"\w*, \w you|strong="H7200"\w* \w deaf|strong="H2795"\w*, +\q2 \w and|strong="H8085"\w* \w look|strong="H7200"\w*, \w you|strong="H7200"\w* \w blind|strong="H5787"\w*, +\q2 \w that|strong="H7200"\w* \w you|strong="H7200"\w* \w may|strong="H8085"\w* \w see|strong="H7200"\w*. +\q1 +\v 19 \w Who|strong="H4310"\w* \w is|strong="H3068"\w* \w blind|strong="H5787"\w*, \w but|strong="H3588"\w* \w my|strong="H3068"\w* \w servant|strong="H5650"\w*? +\q2 \w Or|strong="H3068"\w* \w who|strong="H4310"\w* \w is|strong="H3068"\w* \w as|strong="H3068"\w* \w deaf|strong="H2795"\w* \w as|strong="H3068"\w* \w my|strong="H3068"\w* \w messenger|strong="H4397"\w* \w whom|strong="H4310"\w* \w I|strong="H3588"\w* \w send|strong="H7971"\w*? +\q1 \w Who|strong="H4310"\w* \w is|strong="H3068"\w* \w as|strong="H3068"\w* \w blind|strong="H5787"\w* \w as|strong="H3068"\w* \w he|strong="H3588"\w* \w who|strong="H4310"\w* \w is|strong="H3068"\w* \w at|strong="H3068"\w* \w peace|strong="H7999"\w*, +\q2 \w and|strong="H3068"\w* \w as|strong="H3068"\w* \w blind|strong="H5787"\w* \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w servant|strong="H5650"\w*? +\q1 +\v 20 \w You|strong="H3808"\w* \w see|strong="H7200"\w* \w many|strong="H7227"\w* \w things|strong="H7227"\w*, \w but|strong="H3808"\w* don’t \w observe|strong="H8104"\w*. +\q2 \w His|strong="H8104"\w* ears \w are|strong="H7227"\w* \w open|strong="H6491"\w*, \w but|strong="H3808"\w* \w he|strong="H3808"\w* doesn’t \w listen|strong="H8085"\w*. +\q1 +\v 21 \w It|strong="H3068"\w* \w pleased|strong="H2654"\w* \w Yahweh|strong="H3068"\w*, \w for|strong="H4616"\w* \w his|strong="H3068"\w* \w righteousness|strong="H6664"\w*’ \w sake|strong="H4616"\w*, \w to|strong="H3068"\w* \w magnify|strong="H1431"\w* \w the|strong="H3068"\w* \w law|strong="H8451"\w* +\q2 \w and|strong="H3068"\w* \w make|strong="H1431"\w* \w it|strong="H3068"\w* honorable. +\q1 +\v 22 \w But|strong="H1961"\w* \w this|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w robbed|strong="H8154"\w* \w and|strong="H7725"\w* \w plundered|strong="H8154"\w* \w people|strong="H5971"\w*. +\q2 \w All|strong="H3605"\w* \w of|strong="H1004"\w* \w them|strong="H7725"\w* \w are|strong="H5971"\w* \w snared|strong="H6351"\w* \w in|strong="H1004"\w* \w holes|strong="H2352"\w*, +\q2 \w and|strong="H7725"\w* \w they|strong="H1931"\w* \w are|strong="H5971"\w* \w hidden|strong="H2244"\w* \w in|strong="H1004"\w* \w prisons|strong="H3608"\w*. +\q1 \w They|strong="H1931"\w* \w have|strong="H1961"\w* \w become|strong="H1961"\w* captives, \w and|strong="H7725"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w delivers|strong="H5337"\w*, +\q2 \w and|strong="H7725"\w* \w a|strong="H3068"\w* \w plunder|strong="H4933"\w*, \w and|strong="H7725"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* says, ‘\w Restore|strong="H7725"\w* \w them|strong="H7725"\w*!’ +\b +\q1 +\v 23 \w Who|strong="H4310"\w* \w is|strong="H4310"\w* \w there|strong="H2063"\w* \w among|strong="H4310"\w* \w you|strong="H8085"\w* \w who|strong="H4310"\w* \w will|strong="H4310"\w* \w give|strong="H7181"\w* \w ear|strong="H8085"\w* \w to|strong="H8085"\w* \w this|strong="H2063"\w*? +\q2 \w Who|strong="H4310"\w* \w will|strong="H4310"\w* \w listen|strong="H8085"\w* \w and|strong="H8085"\w* \w hear|strong="H8085"\w* \w for|strong="H8085"\w* \w the|strong="H8085"\w* time \w to|strong="H8085"\w* come? +\q1 +\v 24 \w Who|strong="H4310"\w* \w gave|strong="H5414"\w* \w Jacob|strong="H3290"\w* \w as|strong="H3068"\w* plunder, +\q2 \w and|strong="H1980"\w* \w Israel|strong="H3478"\w* \w to|strong="H1980"\w* \w the|strong="H8085"\w* robbers? +\q2 Didn’t \w Yahweh|strong="H3068"\w*, \w he|strong="H3068"\w* \w against|strong="H2398"\w* \w whom|strong="H4310"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w*? +\q2 \w For|strong="H3068"\w* \w they|strong="H3068"\w* \w would|strong="H4310"\w* \w not|strong="H3808"\w* \w walk|strong="H1980"\w* \w in|strong="H1980"\w* \w his|strong="H5414"\w* \w ways|strong="H1870"\w*, +\q2 \w and|strong="H1980"\w* \w they|strong="H3068"\w* disobeyed \w his|strong="H5414"\w* \w law|strong="H8451"\w*. +\q1 +\v 25 \w Therefore|strong="H5921"\w* \w he|strong="H3808"\w* \w poured|strong="H8210"\w* \w the|strong="H5921"\w* \w fierceness|strong="H5807"\w* \w of|strong="H5921"\w* \w his|strong="H7760"\w* \w anger|strong="H2534"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*, +\q2 \w and|strong="H3045"\w* \w the|strong="H5921"\w* \w strength|strong="H5807"\w* \w of|strong="H5921"\w* \w battle|strong="H4421"\w*. +\q1 \w It|strong="H7760"\w* \w set|strong="H7760"\w* \w him|strong="H5921"\w* \w on|strong="H5921"\w* \w fire|strong="H3857"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*, \w but|strong="H3808"\w* \w he|strong="H3808"\w* didn’t \w know|strong="H3045"\w*. +\q2 \w It|strong="H7760"\w* \w burned|strong="H1197"\w* \w him|strong="H5921"\w*, \w but|strong="H3808"\w* \w he|strong="H3808"\w* didn’t \w take|strong="H7760"\w* \w it|strong="H7760"\w* \w to|strong="H5921"\w* \w heart|strong="H3820"\w*.” +\c 43 +\q1 +\v 1 \w But|strong="H3588"\w* \w now|strong="H6258"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w created|strong="H1254"\w* \w you|strong="H3588"\w*, \w Jacob|strong="H3290"\w*, +\q2 \w and|strong="H3478"\w* \w he|strong="H3588"\w* \w who|strong="H3068"\w* \w formed|strong="H3335"\w* \w you|strong="H3588"\w*, \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*: +\q1 “Don’t \w be|strong="H3068"\w* \w afraid|strong="H3372"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w redeemed|strong="H1350"\w* \w you|strong="H3588"\w*. +\q2 \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w called|strong="H7121"\w* \w you|strong="H3588"\w* \w by|strong="H3068"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w*. +\q2 \w You|strong="H3588"\w* \w are|strong="H3478"\w* \w mine|strong="H3478"\w*. +\q1 +\v 2 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H3588"\w* \w waters|strong="H4325"\w*, \w I|strong="H3588"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w with|strong="H3212"\w* \w you|strong="H3588"\w*, +\q2 \w and|strong="H3212"\w* \w through|strong="H5674"\w* \w the|strong="H3588"\w* \w rivers|strong="H5104"\w*, \w they|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w overflow|strong="H7857"\w* \w you|strong="H3588"\w*. +\q1 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w walk|strong="H3212"\w* \w through|strong="H5674"\w* \w the|strong="H3588"\w* fire, \w you|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w burned|strong="H1197"\w*, +\q2 \w and|strong="H3212"\w* \w flame|strong="H3852"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* scorch \w you|strong="H3588"\w*. +\q1 +\v 3 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 \w the|strong="H3588"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, +\q2 \w your|strong="H3068"\w* \w Savior|strong="H3467"\w*. +\q1 \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w given|strong="H5414"\w* \w Egypt|strong="H4714"\w* \w as|strong="H3068"\w* \w your|strong="H3068"\w* \w ransom|strong="H3724"\w*, +\q2 \w Ethiopia|strong="H3568"\w* \w and|strong="H3478"\w* \w Seba|strong="H5434"\w* \w in|strong="H3478"\w* \w your|strong="H3068"\w* \w place|strong="H8478"\w*. +\q1 +\v 4 Since \w you|strong="H5414"\w* \w have|strong="H5869"\w* been \w precious|strong="H3365"\w* \w and|strong="H5869"\w* \w honored|strong="H3513"\w* \w in|strong="H5315"\w* \w my|strong="H5414"\w* \w sight|strong="H5869"\w*, +\q2 \w and|strong="H5869"\w* \w I|strong="H5414"\w* \w have|strong="H5869"\w* loved \w you|strong="H5414"\w*, +\q2 therefore \w I|strong="H5414"\w* \w will|strong="H5869"\w* \w give|strong="H5414"\w* \w people|strong="H3816"\w* \w in|strong="H5315"\w* \w your|strong="H5414"\w* \w place|strong="H8478"\w*, +\q2 \w and|strong="H5869"\w* \w nations|strong="H3816"\w* \w instead|strong="H8478"\w* \w of|strong="H5869"\w* \w your|strong="H5414"\w* \w life|strong="H5315"\w*. +\q1 +\v 5 Don’t \w be|strong="H3372"\w* \w afraid|strong="H3372"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* am \w with|strong="H2233"\w* \w you|strong="H3588"\w*. +\q2 \w I|strong="H3588"\w* \w will|strong="H2233"\w* bring \w your|strong="H3588"\w* \w offspring|strong="H2233"\w* \w from|strong="H2233"\w* \w the|strong="H3588"\w* \w east|strong="H4217"\w*, +\q2 \w and|strong="H3372"\w* \w gather|strong="H6908"\w* \w you|strong="H3588"\w* \w from|strong="H2233"\w* \w the|strong="H3588"\w* \w west|strong="H4628"\w*. +\q1 +\v 6 \w I|strong="H5414"\w* \w will|strong="H1121"\w* tell \w the|strong="H5414"\w* \w north|strong="H6828"\w*, ‘\w Give|strong="H5414"\w* \w them|strong="H5414"\w* \w up|strong="H5414"\w*!’ +\q2 \w and|strong="H1121"\w* tell \w the|strong="H5414"\w* \w south|strong="H8486"\w*, ‘Don’t \w hold|strong="H3607"\w* \w them|strong="H5414"\w* \w back|strong="H3607"\w*! +\q2 \w Bring|strong="H5414"\w* \w my|strong="H5414"\w* \w sons|strong="H1121"\w* \w from|strong="H1121"\w* \w far|strong="H7350"\w* \w away|strong="H5414"\w*, +\q2 \w and|strong="H1121"\w* \w my|strong="H5414"\w* \w daughters|strong="H1323"\w* \w from|strong="H1121"\w* \w the|strong="H5414"\w* \w ends|strong="H7097"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* earth— +\q1 +\v 7 \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H8034"\w* \w called|strong="H7121"\w* \w by|strong="H7121"\w* \w my|strong="H3605"\w* \w name|strong="H8034"\w*, +\q2 \w and|strong="H6213"\w* \w whom|strong="H7121"\w* \w I|strong="H3605"\w* \w have|strong="H3605"\w* \w created|strong="H1254"\w* \w for|strong="H7121"\w* \w my|strong="H3605"\w* \w glory|strong="H3519"\w*, +\q2 \w whom|strong="H7121"\w* \w I|strong="H3605"\w* \w have|strong="H3605"\w* \w formed|strong="H3335"\w*, +\q2 yes, \w whom|strong="H7121"\w* \w I|strong="H3605"\w* \w have|strong="H3605"\w* \w made|strong="H6213"\w*.’” +\b +\q1 +\v 8 \w Bring|strong="H3318"\w* \w out|strong="H3318"\w* \w the|strong="H3318"\w* \w blind|strong="H5787"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w have|strong="H3426"\w* \w eyes|strong="H5869"\w*, +\q2 \w and|strong="H5971"\w* \w the|strong="H3318"\w* \w deaf|strong="H2795"\w* \w who|strong="H5971"\w* \w have|strong="H3426"\w* ears. +\q1 +\v 9 \w Let|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w be|strong="H1471"\w* \w gathered|strong="H6908"\w* \w together|strong="H3162"\w*, +\q2 \w and|strong="H8085"\w* \w let|strong="H5414"\w* \w the|strong="H3605"\w* \w peoples|strong="H3816"\w* \w be|strong="H1471"\w* \w assembled|strong="H6908"\w*. +\q1 \w Who|strong="H4310"\w* \w among|strong="H4310"\w* \w them|strong="H5414"\w* \w can|strong="H4310"\w* \w declare|strong="H5046"\w* \w this|strong="H2063"\w*, +\q2 \w and|strong="H8085"\w* \w show|strong="H5414"\w* \w us|strong="H5414"\w* \w former|strong="H7223"\w* \w things|strong="H7223"\w*? +\q1 \w Let|strong="H5414"\w* \w them|strong="H5414"\w* \w bring|strong="H5414"\w* \w their|strong="H3605"\w* \w witnesses|strong="H5707"\w*, \w that|strong="H3605"\w* \w they|strong="H3605"\w* \w may|strong="H1471"\w* \w be|strong="H1471"\w* \w justified|strong="H6663"\w*, +\q2 \w or|strong="H8085"\w* \w let|strong="H5414"\w* \w them|strong="H5414"\w* \w hear|strong="H8085"\w*, \w and|strong="H8085"\w* say, “\w That|strong="H3605"\w* \w is|strong="H4310"\w* true.” +\b +\q1 +\v 10 “\w You|strong="H3588"\w* \w are|strong="H3068"\w* \w my|strong="H3068"\w* \w witnesses|strong="H5707"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w With|strong="H3068"\w* \w my|strong="H3068"\w* \w servant|strong="H5650"\w* \w whom|strong="H6440"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w chosen|strong="H3045"\w*; +\q2 \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H1961"\w* \w know|strong="H3045"\w* \w and|strong="H3068"\w* believe \w me|strong="H6440"\w*, +\q2 \w and|strong="H3068"\w* \w understand|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w he|strong="H1931"\w*. +\q1 \w Before|strong="H6440"\w* \w me|strong="H6440"\w* \w there|strong="H1961"\w* \w was|strong="H3068"\w* \w no|strong="H3808"\w* \w God|strong="H3068"\w* \w formed|strong="H3335"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H3068"\w* \w there|strong="H1961"\w* \w be|strong="H1961"\w* \w after|strong="H1961"\w* \w me|strong="H6440"\w*. +\q1 +\v 11 \w I|strong="H3068"\w* myself \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w Besides|strong="H1107"\w* \w me|strong="H3467"\w*, \w there|strong="H3068"\w* \w is|strong="H3068"\w* no \w savior|strong="H3467"\w*. +\q1 +\v 12 \w I|strong="H8085"\w* \w have|strong="H3068"\w* \w declared|strong="H5046"\w*, \w I|strong="H8085"\w* \w have|strong="H3068"\w* \w saved|strong="H3467"\w*, \w and|strong="H3068"\w* \w I|strong="H8085"\w* \w have|strong="H3068"\w* \w shown|strong="H5046"\w*, +\q2 \w and|strong="H3068"\w* \w there|strong="H3068"\w* \w was|strong="H3068"\w* no \w strange|strong="H2114"\w* \w god|strong="H3068"\w* among \w you|strong="H5046"\w*. +\q1 \w Therefore|strong="H3068"\w* \w you|strong="H5046"\w* \w are|strong="H3068"\w* \w my|strong="H8085"\w* \w witnesses|strong="H5707"\w*”, +\q2 \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w and|strong="H3068"\w* \w I|strong="H8085"\w* \w am|strong="H3068"\w* \w God|strong="H3068"\w*. +\q1 +\v 13 \w Yes|strong="H1571"\w*, \w since|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w was|strong="H1931"\w*, \w I|strong="H3117"\w* am \w he|strong="H1931"\w*. +\q2 \w There|strong="H3117"\w* \w is|strong="H1931"\w* \w no|strong="H6466"\w* \w one|strong="H1931"\w* \w who|strong="H4310"\w* \w can|strong="H4310"\w* \w deliver|strong="H5337"\w* \w out|strong="H5337"\w* \w of|strong="H3117"\w* \w my|strong="H7725"\w* \w hand|strong="H3027"\w*. +\q2 \w I|strong="H3117"\w* \w will|strong="H4310"\w* \w work|strong="H6466"\w*, \w and|strong="H7725"\w* \w who|strong="H4310"\w* \w can|strong="H4310"\w* \w hinder|strong="H7725"\w* \w it|strong="H1931"\w*?” +\p +\v 14 \w Yahweh|strong="H3068"\w*, \w your|strong="H3068"\w* \w Redeemer|strong="H1350"\w*, \w the|strong="H3605"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*: “\w For|strong="H7971"\w* \w your|strong="H3068"\w* \w sake|strong="H4616"\w*, \w I|strong="H3541"\w* \w have|strong="H3068"\w* \w sent|strong="H7971"\w* \w to|strong="H3381"\w* Babylon, \w and|strong="H3478"\w* \w I|strong="H3541"\w* \w will|strong="H3068"\w* \w bring|strong="H3381"\w* \w all|strong="H3605"\w* \w of|strong="H3068"\w* \w them|strong="H7971"\w* \w down|strong="H3381"\w* \w as|strong="H3068"\w* \w fugitives|strong="H1281"\w*, \w even|strong="H3068"\w* \w the|strong="H3605"\w* \w Chaldeans|strong="H3778"\w*, \w in|strong="H3478"\w* \w the|strong="H3605"\w* ships \w of|strong="H3068"\w* \w their|strong="H3605"\w* \w rejoicing|strong="H7440"\w*. +\v 15 \w I|strong="H3478"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w your|strong="H3068"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w*, \w the|strong="H3068"\w* \w Creator|strong="H1254"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w your|strong="H3068"\w* \w King|strong="H4428"\w*.” +\p +\v 16 \w Yahweh|strong="H3068"\w*, \w who|strong="H3068"\w* \w makes|strong="H5414"\w* \w a|strong="H3068"\w* \w way|strong="H1870"\w* \w in|strong="H3068"\w* \w the|strong="H5414"\w* \w sea|strong="H3220"\w*, +\q2 \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w path|strong="H5410"\w* \w in|strong="H3068"\w* \w the|strong="H5414"\w* \w mighty|strong="H5794"\w* \w waters|strong="H4325"\w*, +\q1 +\v 17 who \w brings|strong="H3318"\w* \w out|strong="H3318"\w* \w the|strong="H3318"\w* \w chariot|strong="H7393"\w* \w and|strong="H6965"\w* \w horse|strong="H5483"\w*, +\q2 \w the|strong="H3318"\w* \w army|strong="H2428"\w* \w and|strong="H6965"\w* \w the|strong="H3318"\w* \w mighty|strong="H2428"\w* \w man|strong="H2428"\w* +\q2 (\w they|strong="H1077"\w* \w lie|strong="H7901"\w* \w down|strong="H7901"\w* \w together|strong="H3162"\w*, \w they|strong="H1077"\w* \w shall|strong="H7393"\w* \w not|strong="H1077"\w* \w rise|strong="H6965"\w*; +\q2 \w they|strong="H1077"\w* \w are|strong="H5483"\w* \w extinct|strong="H1846"\w*, \w they|strong="H1077"\w* \w are|strong="H5483"\w* \w quenched|strong="H3518"\w* \w like|strong="H3318"\w* \w a|strong="H3068"\w* \w wick|strong="H6594"\w*) says: +\q1 +\v 18 “Don’t \w remember|strong="H2142"\w* \w the|strong="H2142"\w* \w former|strong="H7223"\w* \w things|strong="H7223"\w*, +\q2 \w and|strong="H7223"\w* don’t \w consider|strong="H2142"\w* \w the|strong="H2142"\w* \w things|strong="H7223"\w* \w of|strong="H7223"\w* \w old|strong="H6931"\w*. +\q1 +\v 19 \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3808"\w* \w do|strong="H6213"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w thing|strong="H2319"\w*. +\q2 \w It|strong="H7760"\w* \w springs|strong="H6779"\w* \w out|strong="H6213"\w* \w now|strong="H6258"\w*. +\q2 Don’t \w you|strong="H6213"\w* \w know|strong="H3045"\w* \w it|strong="H7760"\w*? +\q1 \w I|strong="H2005"\w* \w will|strong="H3808"\w* \w even|strong="H3808"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w way|strong="H1870"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w wilderness|strong="H4057"\w*, +\q2 \w and|strong="H1870"\w* \w rivers|strong="H5104"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w desert|strong="H4057"\w*. +\q1 +\v 20 \w The|strong="H3588"\w* \w animals|strong="H2416"\w* \w of|strong="H1323"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w*, \w the|strong="H3588"\w* \w jackals|strong="H8577"\w* \w and|strong="H5971"\w* \w the|strong="H3588"\w* \w ostriches|strong="H3284"\w*, \w shall|strong="H5971"\w* \w honor|strong="H3513"\w* \w me|strong="H5414"\w*, +\q2 \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w give|strong="H5414"\w* \w water|strong="H4325"\w* \w in|strong="H5414"\w* \w the|strong="H3588"\w* \w wilderness|strong="H4057"\w* \w and|strong="H5971"\w* \w rivers|strong="H5104"\w* \w in|strong="H5414"\w* \w the|strong="H3588"\w* \w desert|strong="H4057"\w*, +\q2 \w to|strong="H5414"\w* \w give|strong="H5414"\w* \w drink|strong="H8248"\w* \w to|strong="H5414"\w* \w my|strong="H5414"\w* \w people|strong="H5971"\w*, \w my|strong="H5414"\w* chosen, +\q2 +\v 21 \w the|strong="H5608"\w* \w people|strong="H5971"\w* \w which|strong="H2098"\w* \w I|strong="H2098"\w* \w formed|strong="H3335"\w* \w for|strong="H5971"\w* myself, +\q2 \w that|strong="H5971"\w* \w they|strong="H5971"\w* \w might|strong="H5971"\w* \w declare|strong="H5608"\w* \w my|strong="H5608"\w* \w praise|strong="H8416"\w*. +\b +\q1 +\v 22 \w Yet|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3478"\w* \w not|strong="H3808"\w* \w called|strong="H7121"\w* \w on|strong="H7121"\w* \w me|strong="H7121"\w*, \w Jacob|strong="H3290"\w*; +\q2 \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3478"\w* \w been|strong="H3808"\w* \w weary|strong="H3021"\w* \w of|strong="H7121"\w* \w me|strong="H7121"\w*, \w Israel|strong="H3478"\w*. +\q1 +\v 23 \w You|strong="H3808"\w* \w have|strong="H3808"\w* \w not|strong="H3808"\w* brought \w me|strong="H3808"\w* \w any|strong="H3808"\w* \w of|strong="H2077"\w* \w your|strong="H3513"\w* \w sheep|strong="H7716"\w* \w for|strong="H3808"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w*, +\q2 \w neither|strong="H3808"\w* \w have|strong="H3808"\w* \w you|strong="H3808"\w* \w honored|strong="H3513"\w* \w me|strong="H3808"\w* \w with|strong="H3513"\w* \w your|strong="H3513"\w* \w sacrifices|strong="H2077"\w*. +\q1 \w I|strong="H3808"\w* \w have|strong="H3808"\w* \w not|strong="H3808"\w* \w burdened|strong="H5647"\w* \w you|strong="H3808"\w* \w with|strong="H3513"\w* \w offerings|strong="H5930"\w*, +\q2 \w nor|strong="H3808"\w* \w wearied|strong="H3021"\w* \w you|strong="H3808"\w* \w with|strong="H3513"\w* \w frankincense|strong="H3828"\w*. +\q1 +\v 24 \w You|strong="H3808"\w* \w have|strong="H5771"\w* \w bought|strong="H7069"\w* \w me|strong="H3808"\w* \w no|strong="H3808"\w* \w sweet|strong="H7070"\w* \w cane|strong="H7070"\w* \w with|strong="H5647"\w* \w money|strong="H3701"\w*, +\q2 \w nor|strong="H3808"\w* \w have|strong="H5771"\w* \w you|strong="H3808"\w* \w filled|strong="H7301"\w* \w me|strong="H3808"\w* \w with|strong="H5647"\w* \w the|strong="H5647"\w* \w fat|strong="H2459"\w* \w of|strong="H2077"\w* \w your|strong="H3808"\w* \w sacrifices|strong="H2077"\w*, +\q1 \w but|strong="H3808"\w* \w you|strong="H3808"\w* \w have|strong="H5771"\w* \w burdened|strong="H5647"\w* \w me|strong="H3808"\w* \w with|strong="H5647"\w* \w your|strong="H3808"\w* \w sins|strong="H2403"\w*. +\q2 \w You|strong="H3808"\w* \w have|strong="H5771"\w* \w wearied|strong="H3021"\w* \w me|strong="H3808"\w* \w with|strong="H5647"\w* \w your|strong="H3808"\w* \w iniquities|strong="H5771"\w*. +\b +\q1 +\v 25 \w I|strong="H3808"\w*, \w even|strong="H3808"\w* \w I|strong="H3808"\w*, am \w he|strong="H1931"\w* \w who|strong="H1931"\w* blots \w out|strong="H4229"\w* \w your|strong="H2142"\w* \w transgressions|strong="H6588"\w* \w for|strong="H4616"\w* \w my|strong="H2142"\w* own \w sake|strong="H4616"\w*; +\q2 \w and|strong="H2403"\w* \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w remember|strong="H2142"\w* \w your|strong="H2142"\w* \w sins|strong="H2403"\w*. +\q1 +\v 26 \w Put|strong="H2142"\w* \w me|strong="H8199"\w* \w in|strong="H3162"\w* \w remembrance|strong="H2142"\w*. +\q2 \w Let|strong="H2142"\w* \w us|strong="H2142"\w* \w plead|strong="H8199"\w* \w together|strong="H3162"\w*. +\q1 \w Declare|strong="H5608"\w* \w your|strong="H2142"\w* \w case|strong="H8199"\w*, +\q2 \w that|strong="H4616"\w* \w you|strong="H6663"\w* \w may|strong="H8199"\w* \w be|strong="H3162"\w* \w justified|strong="H6663"\w*. +\q1 +\v 27 \w Your|strong="H6586"\w* \w first|strong="H7223"\w* father \w sinned|strong="H2398"\w*, +\q2 \w and|strong="H2398"\w* \w your|strong="H6586"\w* \w teachers|strong="H3887"\w* \w have|strong="H7223"\w* \w transgressed|strong="H6586"\w* \w against|strong="H2398"\w* \w me|strong="H2398"\w*. +\q1 +\v 28 Therefore \w I|strong="H5414"\w* \w will|strong="H3478"\w* \w profane|strong="H2490"\w* \w the|strong="H5414"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H5414"\w* \w sanctuary|strong="H6944"\w*; +\q2 \w and|strong="H3478"\w* \w I|strong="H5414"\w* \w will|strong="H3478"\w* \w make|strong="H5414"\w* \w Jacob|strong="H3290"\w* \w a|strong="H3068"\w* \w curse|strong="H2764"\w*, +\q2 \w and|strong="H3478"\w* \w Israel|strong="H3478"\w* \w an|strong="H5414"\w* insult.” +\c 44 +\q1 +\v 1 \w Yet|strong="H6258"\w* \w listen|strong="H8085"\w* \w now|strong="H6258"\w*, \w Jacob|strong="H3290"\w* \w my|strong="H8085"\w* \w servant|strong="H5650"\w*, +\q2 \w and|strong="H3478"\w* \w Israel|strong="H3478"\w*, whom \w I|strong="H6258"\w* \w have|strong="H5650"\w* chosen. +\q1 +\v 2 \w This|strong="H6213"\w* \w is|strong="H3068"\w* \w what|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w made|strong="H6213"\w* \w you|strong="H6213"\w*, +\q2 \w and|strong="H3068"\w* \w formed|strong="H3335"\w* \w you|strong="H6213"\w* \w from|strong="H3068"\w* \w the|strong="H3541"\w* womb, +\q2 \w who|strong="H3068"\w* \w will|strong="H3068"\w* \w help|strong="H5826"\w* \w you|strong="H6213"\w* \w says|strong="H3541"\w*: +\q1 “Don’t \w be|strong="H3068"\w* \w afraid|strong="H3372"\w*, \w Jacob|strong="H3290"\w* \w my|strong="H3068"\w* \w servant|strong="H5650"\w*; +\q2 \w and|strong="H3068"\w* \w you|strong="H6213"\w*, \w Jeshurun|strong="H3484"\w*, whom \w I|strong="H3541"\w* \w have|strong="H3068"\w* chosen. +\q1 +\v 3 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H7307"\w* \w pour|strong="H3332"\w* \w water|strong="H4325"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w* \w who|strong="H3588"\w* \w is|strong="H7307"\w* \w thirsty|strong="H6771"\w*, +\q2 \w and|strong="H4325"\w* \w streams|strong="H5140"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w dry|strong="H3004"\w* \w ground|strong="H3004"\w*. +\q1 \w I|strong="H3588"\w* \w will|strong="H7307"\w* \w pour|strong="H3332"\w* \w my|strong="H5921"\w* \w Spirit|strong="H7307"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w descendants|strong="H2233"\w*, +\q2 \w and|strong="H4325"\w* \w my|strong="H5921"\w* \w blessing|strong="H1293"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w offspring|strong="H2233"\w*; +\q1 +\v 4 \w and|strong="H4325"\w* \w they|strong="H5921"\w* \w will|strong="H4325"\w* \w spring|strong="H6779"\w* \w up|strong="H6779"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w grass|strong="H2682"\w*, +\q2 \w as|strong="H4325"\w* \w willows|strong="H6155"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* watercourses. +\q1 +\v 5 \w One|strong="H2088"\w* \w will|strong="H3068"\w* \w say|strong="H3478"\w*, ‘\w I|strong="H2088"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s.’ +\q2 \w Another|strong="H2088"\w* \w will|strong="H3068"\w* \w be|strong="H3027"\w* \w called|strong="H7121"\w* \w by|strong="H3027"\w* \w the|strong="H3068"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w Jacob|strong="H3290"\w*; +\q2 \w and|strong="H3478"\w* \w another|strong="H2088"\w* \w will|strong="H3068"\w* \w write|strong="H3789"\w* \w with|strong="H3068"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w* ‘\w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*,’ +\q2 \w and|strong="H3478"\w* \w honor|strong="H3655"\w* \w the|strong="H3068"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*.” +\b +\q1 +\v 6 \w This|strong="H3541"\w* \w is|strong="H3068"\w* \w what|strong="H3541"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3541"\w* \w King|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, +\q2 \w and|strong="H3478"\w* \w his|strong="H3068"\w* \w Redeemer|strong="H1350"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H4428"\w* \w Armies|strong="H6635"\w*, \w says|strong="H3541"\w*: +\q1 “\w I|strong="H3541"\w* \w am|strong="H3068"\w* \w the|strong="H3541"\w* \w first|strong="H7223"\w*, \w and|strong="H3478"\w* \w I|strong="H3541"\w* \w am|strong="H3068"\w* \w the|strong="H3541"\w* last; +\q2 \w and|strong="H3478"\w* \w besides|strong="H1107"\w* \w me|strong="H1107"\w* \w there|strong="H3541"\w* \w is|strong="H3068"\w* \w no|strong="H3478"\w* \w God|strong="H3068"\w*. +\q1 +\v 7 \w Who|strong="H4310"\w* \w is|strong="H4310"\w* \w like|strong="H3644"\w* \w me|strong="H5046"\w*? +\q2 \w Who|strong="H4310"\w* \w will|strong="H4310"\w* \w call|strong="H7121"\w*, +\q2 \w and|strong="H5971"\w* \w will|strong="H4310"\w* \w declare|strong="H5046"\w* \w it|strong="H7760"\w*, +\q2 \w and|strong="H5971"\w* \w set|strong="H7760"\w* \w it|strong="H7760"\w* \w in|strong="H7121"\w* \w order|strong="H6186"\w* \w for|strong="H7121"\w* \w me|strong="H5046"\w*, +\q2 since \w I|strong="H7760"\w* \w established|strong="H7760"\w* \w the|strong="H7760"\w* \w ancient|strong="H5769"\w* \w people|strong="H5971"\w*? +\q1 \w Let|strong="H7760"\w* \w them|strong="H7760"\w* \w declare|strong="H5046"\w* \w the|strong="H7760"\w* \w things|strong="H3644"\w* \w that|strong="H5971"\w* \w are|strong="H5971"\w* coming, +\q2 \w and|strong="H5971"\w* \w that|strong="H5971"\w* \w will|strong="H4310"\w* happen. +\q1 +\v 8 Don’t \w fear|strong="H6342"\w*, +\q2 \w neither|strong="H3808"\w* \w be|strong="H3426"\w* \w afraid|strong="H6342"\w*. +\q1 Haven’t \w I|strong="H3045"\w* \w declared|strong="H5046"\w* \w it|strong="H3045"\w* \w to|strong="H8085"\w* \w you|strong="H3045"\w* \w long|strong="H8085"\w* ago, +\q2 \w and|strong="H8085"\w* \w shown|strong="H5046"\w* \w it|strong="H3045"\w*? +\q1 \w You|strong="H3045"\w* \w are|strong="H3426"\w* \w my|strong="H8085"\w* \w witnesses|strong="H5707"\w*. +\q2 \w Is|strong="H3426"\w* \w there|strong="H3426"\w* \w a|strong="H3068"\w* \w God|strong="H6697"\w* \w besides|strong="H1107"\w* \w me|strong="H5046"\w*? +\q1 \w Indeed|strong="H8085"\w*, \w there|strong="H3426"\w* \w is|strong="H3426"\w* \w not|strong="H3808"\w*. +\q2 \w I|strong="H3045"\w* don’t \w know|strong="H3045"\w* \w any|strong="H3426"\w* \w other|strong="H1107"\w* \w Rock|strong="H6697"\w*.” +\b +\q1 +\v 9 \w Everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w makes|strong="H7200"\w* \w a|strong="H3068"\w* \w carved|strong="H6459"\w* \w image|strong="H6459"\w* \w is|strong="H3605"\w* \w vain|strong="H8414"\w*. +\q2 \w The|strong="H3605"\w* \w things|strong="H3605"\w* \w that|strong="H3045"\w* \w they|strong="H1992"\w* \w delight|strong="H2530"\w* \w in|strong="H7200"\w* \w will|strong="H4616"\w* \w not|strong="H3045"\w* \w profit|strong="H3276"\w*. +\q2 \w Their|strong="H3605"\w* own \w witnesses|strong="H5707"\w* don’t \w see|strong="H7200"\w*, \w nor|strong="H1077"\w* \w know|strong="H3045"\w*, \w that|strong="H3045"\w* \w they|strong="H1992"\w* \w may|strong="H1992"\w* \w be|strong="H1077"\w* disappointed. +\q1 +\v 10 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* \w fashioned|strong="H3335"\w* \w a|strong="H3068"\w* \w god|strong="H4310"\w*, +\q2 \w or|strong="H1115"\w* molds \w an|strong="H4310"\w* \w image|strong="H6459"\w* \w that|strong="H4310"\w* \w is|strong="H4310"\w* \w profitable|strong="H3276"\w* \w for|strong="H3276"\w* \w nothing|strong="H1115"\w*? +\q1 +\v 11 \w Behold|strong="H2005"\w*, \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w fellows|strong="H2270"\w* \w will|strong="H3162"\w* \w be|strong="H3162"\w* disappointed; +\q2 \w and|strong="H5975"\w* \w the|strong="H3605"\w* \w workmen|strong="H2796"\w* \w are|strong="H1992"\w* \w mere|strong="H3605"\w* \w men|strong="H3605"\w*. +\q1 Let \w them|strong="H1992"\w* \w all|strong="H3605"\w* \w be|strong="H3162"\w* \w gathered|strong="H6908"\w* \w together|strong="H3162"\w*. +\q2 Let \w them|strong="H1992"\w* \w stand|strong="H5975"\w* \w up|strong="H5975"\w*. +\q2 \w They|strong="H1992"\w* \w will|strong="H3162"\w* \w fear|strong="H6342"\w*. +\q2 \w They|strong="H1992"\w* \w will|strong="H3162"\w* \w be|strong="H3162"\w* put \w to|strong="H5975"\w* shame \w together|strong="H3162"\w*. +\b +\q1 +\v 12 \w The|strong="H1571"\w* \w blacksmith|strong="H2796"\w* takes \w an|strong="H1571"\w* ax, +\q2 \w works|strong="H6466"\w* \w in|strong="H3808"\w* \w the|strong="H1571"\w* \w coals|strong="H6352"\w*, +\q2 \w fashions|strong="H3335"\w* \w it|strong="H3808"\w* \w with|strong="H4325"\w* \w hammers|strong="H4717"\w*, +\q2 \w and|strong="H4325"\w* \w works|strong="H6466"\w* \w it|strong="H3808"\w* \w with|strong="H4325"\w* \w his|strong="H3808"\w* \w strong|strong="H3581"\w* \w arm|strong="H2220"\w*. +\q1 \w He|strong="H3808"\w* \w is|strong="H1571"\w* \w hungry|strong="H7456"\w*, +\q2 \w and|strong="H4325"\w* \w his|strong="H3808"\w* \w strength|strong="H3581"\w* fails; +\q1 \w he|strong="H3808"\w* \w drinks|strong="H8354"\w* \w no|strong="H3808"\w* \w water|strong="H4325"\w*, +\q2 \w and|strong="H4325"\w* \w is|strong="H1571"\w* \w faint|strong="H3286"\w*. +\q1 +\v 13 \w The|strong="H6213"\w* \w carpenter|strong="H2796"\w* \w stretches|strong="H5186"\w* \w out|strong="H5186"\w* \w a|strong="H3068"\w* \w line|strong="H6957"\w*. +\q2 \w He|strong="H6213"\w* marks \w it|strong="H6213"\w* \w out|strong="H5186"\w* \w with|strong="H1004"\w* \w a|strong="H3068"\w* pencil. +\q2 \w He|strong="H6213"\w* \w shapes|strong="H2796"\w* \w it|strong="H6213"\w* \w with|strong="H1004"\w* \w planes|strong="H4741"\w*. +\q2 \w He|strong="H6213"\w* marks \w it|strong="H6213"\w* \w out|strong="H5186"\w* \w with|strong="H1004"\w* compasses, +\q2 \w and|strong="H1004"\w* \w shapes|strong="H2796"\w* \w it|strong="H6213"\w* \w like|strong="H1004"\w* \w the|strong="H6213"\w* \w figure|strong="H8403"\w* \w of|strong="H1004"\w* \w a|strong="H3068"\w* man, +\q2 \w with|strong="H1004"\w* \w the|strong="H6213"\w* \w beauty|strong="H8597"\w* \w of|strong="H1004"\w* \w a|strong="H3068"\w* man, +\q2 \w to|strong="H6213"\w* \w reside|strong="H3427"\w* \w in|strong="H3427"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w*. +\q1 +\v 14 \w He|strong="H3947"\w* \w cuts|strong="H3772"\w* \w down|strong="H3772"\w* cedars \w for|strong="H6086"\w* \w himself|strong="H1431"\w*, +\q2 \w and|strong="H6086"\w* \w takes|strong="H3947"\w* \w the|strong="H3947"\w* \w cypress|strong="H8645"\w* \w and|strong="H6086"\w* \w the|strong="H3947"\w* oak, +\q2 \w and|strong="H6086"\w* strengthens \w for|strong="H6086"\w* \w himself|strong="H1431"\w* one among \w the|strong="H3947"\w* \w trees|strong="H6086"\w* \w of|strong="H6086"\w* \w the|strong="H3947"\w* \w forest|strong="H3293"\w*. +\q1 \w He|strong="H3947"\w* \w plants|strong="H5193"\w* \w a|strong="H3068"\w* \w cypress|strong="H8645"\w* \w tree|strong="H6086"\w*, +\q2 \w and|strong="H6086"\w* \w the|strong="H3947"\w* \w rain|strong="H1653"\w* nourishes \w it|strong="H3947"\w*. +\q1 +\v 15 \w Then|strong="H1961"\w* \w it|strong="H6213"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w for|strong="H6213"\w* \w a|strong="H3068"\w* man \w to|strong="H1961"\w* \w burn|strong="H1197"\w*; +\q2 \w and|strong="H3899"\w* \w he|strong="H6213"\w* \w takes|strong="H3947"\w* \w some|strong="H1992"\w* \w of|strong="H3899"\w* \w it|strong="H6213"\w* \w and|strong="H3899"\w* \w warms|strong="H2552"\w* \w himself|strong="H7812"\w*. +\q2 Yes, \w he|strong="H6213"\w* \w burns|strong="H1197"\w* \w it|strong="H6213"\w* \w and|strong="H3899"\w* bakes \w bread|strong="H3899"\w*. +\q1 Yes, \w he|strong="H6213"\w* \w makes|strong="H6213"\w* \w a|strong="H3068"\w* god \w and|strong="H3899"\w* \w worships|strong="H7812"\w* \w it|strong="H6213"\w*; +\q2 \w he|strong="H6213"\w* \w makes|strong="H6213"\w* \w it|strong="H6213"\w* \w a|strong="H3068"\w* \w carved|strong="H6213"\w* \w image|strong="H6459"\w*, \w and|strong="H3899"\w* \w falls|strong="H5456"\w* \w down|strong="H7812"\w* \w to|strong="H1961"\w* \w it|strong="H6213"\w*. +\q1 +\v 16 \w He|strong="H5921"\w* \w burns|strong="H8313"\w* \w part|strong="H2677"\w* \w of|strong="H5921"\w* \w it|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* fire. +\q2 \w With|strong="H8313"\w* \w part|strong="H2677"\w* \w of|strong="H5921"\w* \w it|strong="H5921"\w*, \w he|strong="H5921"\w* eats \w meat|strong="H1320"\w*. +\q2 \w He|strong="H5921"\w* \w roasts|strong="H6740"\w* \w a|strong="H3068"\w* \w roast|strong="H6748"\w* \w and|strong="H7200"\w* \w is|strong="H1320"\w* \w satisfied|strong="H7646"\w*. +\q1 \w Yes|strong="H7200"\w*, \w he|strong="H5921"\w* \w warms|strong="H2552"\w* himself +\q2 \w and|strong="H7200"\w* says, “\w Aha|strong="H1889"\w*! \w I|strong="H5921"\w* am \w warm|strong="H2552"\w*. \w I|strong="H5921"\w* \w have|strong="H7646"\w* \w seen|strong="H7200"\w* \w the|strong="H5921"\w* fire.” +\q1 +\v 17 \w The|strong="H3588"\w* \w rest|strong="H7611"\w* \w of|strong="H7611"\w* \w it|strong="H3588"\w* \w he|strong="H3588"\w* \w makes|strong="H6213"\w* \w into|strong="H6213"\w* \w a|strong="H3068"\w* god, +\q2 \w even|strong="H3588"\w* \w his|strong="H6213"\w* engraved \w image|strong="H6459"\w*. +\q1 \w He|strong="H3588"\w* \w bows|strong="H7812"\w* \w down|strong="H7812"\w* \w to|strong="H6213"\w* \w it|strong="H3588"\w* \w and|strong="H6213"\w* \w worships|strong="H7812"\w*, +\q2 \w and|strong="H6213"\w* \w prays|strong="H6419"\w* \w to|strong="H6213"\w* \w it|strong="H3588"\w*, \w and|strong="H6213"\w* says, “\w Deliver|strong="H5337"\w* \w me|strong="H6213"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H6213"\w* \w my|strong="H5337"\w* god!” +\b +\q1 +\v 18 \w They|strong="H3588"\w* don’t \w know|strong="H3045"\w*, \w neither|strong="H3808"\w* \w do|strong="H5869"\w* \w they|strong="H3588"\w* \w consider|strong="H7200"\w*, +\q2 \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3820"\w* \w shut|strong="H2902"\w* \w their|strong="H7200"\w* \w eyes|strong="H5869"\w*, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w can|strong="H7200"\w*’t \w see|strong="H7200"\w*, +\q2 \w and|strong="H5869"\w* \w their|strong="H7200"\w* \w hearts|strong="H3820"\w*, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w can|strong="H7200"\w*’t \w understand|strong="H3045"\w*. +\q1 +\v 19 \w No|strong="H3808"\w* \w one|strong="H3808"\w* thinks, +\q2 \w neither|strong="H3808"\w* \w is|strong="H3820"\w* \w there|strong="H7725"\w* \w knowledge|strong="H1847"\w* \w nor|strong="H3808"\w* \w understanding|strong="H8394"\w* \w to|strong="H7725"\w* \w say|strong="H7725"\w*, +\q2 “\w I|strong="H5921"\w* \w have|strong="H3808"\w* \w burned|strong="H8313"\w* \w part|strong="H2677"\w* \w of|strong="H6086"\w* \w it|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w fire|strong="H1513"\w*. +\q2 Yes, \w I|strong="H5921"\w* \w have|strong="H3808"\w* \w also|strong="H6213"\w* baked \w bread|strong="H3899"\w* \w on|strong="H5921"\w* \w its|strong="H5921"\w* \w coals|strong="H1513"\w*. +\q2 \w I|strong="H5921"\w* \w have|strong="H3808"\w* \w roasted|strong="H6740"\w* \w meat|strong="H1320"\w* \w and|strong="H7725"\w* eaten \w it|strong="H5921"\w*. +\q2 \w Shall|strong="H3820"\w* \w I|strong="H5921"\w* \w make|strong="H6213"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H6086"\w* \w it|strong="H5921"\w* \w into|strong="H7725"\w* \w an|strong="H6213"\w* \w abomination|strong="H8441"\w*? +\q2 \w Shall|strong="H3820"\w* \w I|strong="H5921"\w* \w bow|strong="H5456"\w* \w down|strong="H5456"\w* \w to|strong="H7725"\w* \w a|strong="H3068"\w* \w tree|strong="H6086"\w* trunk?” +\q1 +\v 20 \w He|strong="H3808"\w* \w feeds|strong="H7462"\w* \w on|strong="H7462"\w* ashes. +\q2 \w A|strong="H3068"\w* \w deceived|strong="H2048"\w* \w heart|strong="H3820"\w* \w has|strong="H3820"\w* \w turned|strong="H5186"\w* \w him|strong="H5186"\w* \w aside|strong="H5186"\w*; +\q2 \w and|strong="H3820"\w* \w he|strong="H3808"\w* \w can|strong="H3225"\w*’t \w deliver|strong="H5337"\w* \w his|strong="H5186"\w* \w soul|strong="H5315"\w*, +\q2 \w nor|strong="H3808"\w* say, “Isn’t there \w a|strong="H3068"\w* \w lie|strong="H8267"\w* \w in|strong="H5315"\w* \w my|strong="H5337"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w*?” +\b +\q1 +\v 21 \w Remember|strong="H2142"\w* \w these|strong="H2142"\w* \w things|strong="H3808"\w*, \w Jacob|strong="H3290"\w* \w and|strong="H3478"\w* \w Israel|strong="H3478"\w*, +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H3478"\w* \w my|strong="H2142"\w* \w servant|strong="H5650"\w*. +\q2 \w I|strong="H3588"\w* \w have|strong="H5650"\w* \w formed|strong="H3335"\w* \w you|strong="H3588"\w*. +\q2 \w You|strong="H3588"\w* \w are|strong="H3478"\w* \w my|strong="H2142"\w* \w servant|strong="H5650"\w*. +\q2 \w Israel|strong="H3478"\w*, \w you|strong="H3588"\w* \w will|strong="H3478"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w forgotten|strong="H5382"\w* \w by|strong="H3478"\w* \w me|strong="H5650"\w*. +\q1 +\v 22 \w I|strong="H3588"\w* \w have|strong="H2403"\w* \w blotted|strong="H4229"\w* \w out|strong="H4229"\w*, \w as|strong="H3588"\w* \w a|strong="H3068"\w* \w thick|strong="H5645"\w* \w cloud|strong="H6051"\w*, \w your|strong="H7725"\w* \w transgressions|strong="H6588"\w*, +\q2 \w and|strong="H7725"\w*, \w as|strong="H3588"\w* \w a|strong="H3068"\w* \w cloud|strong="H6051"\w*, \w your|strong="H7725"\w* \w sins|strong="H2403"\w*. +\q2 \w Return|strong="H7725"\w* \w to|strong="H7725"\w* \w me|strong="H7725"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H2403"\w* \w redeemed|strong="H1350"\w* \w you|strong="H3588"\w*. +\b +\q1 +\v 23 \w Sing|strong="H7442"\w*, \w you|strong="H3588"\w* \w heavens|strong="H8064"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w* \w it|strong="H3588"\w*! +\q2 \w Shout|strong="H7321"\w*, \w you|strong="H3588"\w* \w lower|strong="H8482"\w* \w parts|strong="H8482"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*! +\q2 \w Break|strong="H6476"\w* \w out|strong="H6213"\w* \w into|strong="H6476"\w* \w singing|strong="H7440"\w*, \w you|strong="H3588"\w* \w mountains|strong="H2022"\w*, \w O|strong="H3068"\w* \w forest|strong="H3293"\w*, \w all|strong="H3605"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w trees|strong="H6086"\w*, +\q2 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w redeemed|strong="H1350"\w* \w Jacob|strong="H3290"\w*, +\q2 \w and|strong="H3478"\w* \w will|strong="H3068"\w* \w glorify|strong="H6286"\w* \w himself|strong="H6213"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\b +\q1 +\v 24 \w Yahweh|strong="H3068"\w*, \w your|strong="H3068"\w* \w Redeemer|strong="H1350"\w*, +\q2 \w and|strong="H3068"\w* \w he|strong="H6213"\w* \w who|strong="H3605"\w* \w formed|strong="H3335"\w* \w you|strong="H3605"\w* \w from|strong="H3068"\w* \w the|strong="H3605"\w* womb \w says|strong="H3541"\w*: +\q1 “\w I|strong="H3541"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H3605"\w* \w makes|strong="H6213"\w* \w all|strong="H3605"\w* \w things|strong="H3605"\w*; +\q2 \w who|strong="H3605"\w* \w alone|strong="H6213"\w* \w stretches|strong="H5186"\w* \w out|strong="H5186"\w* \w the|strong="H3605"\w* \w heavens|strong="H8064"\w*; +\q2 \w who|strong="H3605"\w* spreads \w out|strong="H5186"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w* \w by|strong="H3068"\w* myself; +\q1 +\v 25 \w who|strong="H2450"\w* \w frustrates|strong="H6565"\w* \w the|strong="H7725"\w* signs \w of|strong="H1847"\w* \w the|strong="H7725"\w* liars, +\q2 \w and|strong="H7725"\w* \w makes|strong="H1984"\w* \w diviners|strong="H7080"\w* \w mad|strong="H1984"\w*; +\q1 \w who|strong="H2450"\w* \w turns|strong="H7725"\w* \w wise|strong="H2450"\w* \w men|strong="H2450"\w* backward, +\q2 \w and|strong="H7725"\w* \w makes|strong="H1984"\w* \w their|strong="H7725"\w* \w knowledge|strong="H1847"\w* \w foolish|strong="H5528"\w*; +\q1 +\v 26 \w who|strong="H5650"\w* \w confirms|strong="H6965"\w* \w the|strong="H1129"\w* \w word|strong="H1697"\w* \w of|strong="H1697"\w* \w his|strong="H6965"\w* \w servant|strong="H5650"\w*, +\q2 \w and|strong="H3063"\w* \w performs|strong="H7999"\w* \w the|strong="H1129"\w* \w counsel|strong="H6098"\w* \w of|strong="H1697"\w* \w his|strong="H6965"\w* \w messengers|strong="H4397"\w*; +\q1 \w who|strong="H5650"\w* \w says|strong="H1697"\w* \w of|strong="H1697"\w* \w Jerusalem|strong="H3389"\w*, ‘\w She|strong="H5892"\w* \w will|strong="H5650"\w* \w be|strong="H1697"\w* \w inhabited|strong="H3427"\w*;’ +\q2 \w and|strong="H3063"\w* \w of|strong="H1697"\w* \w the|strong="H1129"\w* \w cities|strong="H5892"\w* \w of|strong="H1697"\w* \w Judah|strong="H3063"\w*, ‘\w They|strong="H1697"\w* \w will|strong="H5650"\w* \w be|strong="H1697"\w* \w built|strong="H1129"\w*,’ +\q2 \w and|strong="H3063"\w* ‘\w I|strong="H1697"\w* \w will|strong="H5650"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w its|strong="H6965"\w* \w waste|strong="H2723"\w* \w places|strong="H2723"\w*;’ +\q1 +\v 27 who says \w to|strong="H5104"\w* \w the|strong="H3001"\w* \w deep|strong="H6683"\w*, ‘Be \w dry|strong="H3001"\w*,’ +\q2 \w and|strong="H2717"\w* ‘I \w will|strong="H5104"\w* \w dry|strong="H3001"\w* \w up|strong="H3001"\w* \w your|strong="H3001"\w* \w rivers|strong="H5104"\w*,’ +\q1 +\v 28 \w who|strong="H3605"\w* says \w of|strong="H3605"\w* \w Cyrus|strong="H3566"\w*, ‘\w He|strong="H3605"\w* \w is|strong="H3605"\w* \w my|strong="H3605"\w* \w shepherd|strong="H7473"\w*, \w and|strong="H3389"\w* \w shall|strong="H3389"\w* \w perform|strong="H7999"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w pleasure|strong="H2656"\w*,’ +\q2 \w even|strong="H1129"\w* saying \w of|strong="H3605"\w* \w Jerusalem|strong="H3389"\w*, ‘She \w will|strong="H3389"\w* \w be|strong="H3389"\w* \w built|strong="H1129"\w*;’ +\q2 \w and|strong="H3389"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w temple|strong="H1964"\w*, ‘\w Your|strong="H3605"\w* \w foundation|strong="H3245"\w* \w will|strong="H3389"\w* \w be|strong="H3389"\w* \w laid|strong="H3245"\w*.’” +\c 45 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w anointed|strong="H4899"\w*, \w to|strong="H3068"\w* \w Cyrus|strong="H3566"\w*, \w whose|strong="H1471"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w I|strong="H3541"\w* \w have|strong="H3068"\w* \w held|strong="H2388"\w* \w to|strong="H3068"\w* \w subdue|strong="H7286"\w* \w nations|strong="H1471"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w* \w and|strong="H3068"\w* strip \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w their|strong="H3068"\w* armor, \w to|strong="H3068"\w* \w open|strong="H6605"\w* \w the|strong="H6440"\w* \w doors|strong="H1817"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w gates|strong="H8179"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w shut|strong="H5462"\w*: +\q1 +\v 2 “\w I|strong="H6440"\w* \w will|strong="H6440"\w* \w go|strong="H3212"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* +\q2 \w and|strong="H3212"\w* \w make|strong="H3474"\w* \w the|strong="H6440"\w* \w rough|strong="H1921"\w* \w places|strong="H1921"\w* \w smooth|strong="H3474"\w*. +\q1 \w I|strong="H6440"\w* \w will|strong="H6440"\w* \w break|strong="H7665"\w* \w the|strong="H6440"\w* \w doors|strong="H1817"\w* \w of|strong="H6440"\w* \w bronze|strong="H5154"\w* \w in|strong="H3212"\w* \w pieces|strong="H7665"\w* +\q2 \w and|strong="H3212"\w* \w cut|strong="H1438"\w* apart \w the|strong="H6440"\w* \w bars|strong="H1280"\w* \w of|strong="H6440"\w* \w iron|strong="H1270"\w*. +\q1 +\v 3 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w you|strong="H3588"\w* \w the|strong="H3588"\w* \w treasures|strong="H4301"\w* \w of|strong="H3068"\w* \w darkness|strong="H2822"\w* +\q2 \w and|strong="H3478"\w* \w hidden|strong="H4301"\w* \w riches|strong="H4301"\w* \w of|strong="H3068"\w* \w secret|strong="H4565"\w* \w places|strong="H4565"\w*, +\q1 \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w it|strong="H5414"\w* \w is|strong="H3068"\w* \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w who|strong="H3068"\w* \w calls|strong="H7121"\w* \w you|strong="H3588"\w* \w by|strong="H3068"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w*, +\q2 \w even|strong="H3588"\w* \w the|strong="H3588"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\q1 +\v 4 \w For|strong="H7121"\w* \w Jacob|strong="H3290"\w* \w my|strong="H3045"\w* \w servant|strong="H5650"\w*’s \w sake|strong="H4616"\w*, +\q2 \w and|strong="H3478"\w* \w Israel|strong="H3478"\w* \w my|strong="H3045"\w* \w chosen|strong="H3045"\w*, +\q1 \w I|strong="H3045"\w* \w have|strong="H3045"\w* \w called|strong="H7121"\w* \w you|strong="H3045"\w* \w by|strong="H7121"\w* \w your|strong="H3045"\w* \w name|strong="H8034"\w*. +\q2 \w I|strong="H3045"\w* \w have|strong="H3045"\w* \w given|strong="H7121"\w* \w you|strong="H3045"\w* \w a|strong="H3068"\w* \w title|strong="H3655"\w*, +\q2 though \w you|strong="H3045"\w* \w have|strong="H3045"\w* \w not|strong="H3808"\w* \w known|strong="H3045"\w* \w me|strong="H7121"\w*. +\q1 +\v 5 \w I|strong="H3045"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w there|strong="H3045"\w* \w is|strong="H3068"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w else|strong="H5750"\w*. +\q2 \w Besides|strong="H2108"\w* \w me|strong="H2108"\w*, \w there|strong="H3045"\w* \w is|strong="H3068"\w* \w no|strong="H3808"\w* \w God|strong="H3068"\w*. +\q1 \w I|strong="H3045"\w* \w will|strong="H3068"\w* strengthen\f + \fr 45:5 \ft or, equip\f* \w you|strong="H3045"\w*, +\q2 though \w you|strong="H3045"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w known|strong="H3045"\w* \w me|strong="H2108"\w*, +\q1 +\v 6 \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w may|strong="H3068"\w* \w know|strong="H3045"\w* \w from|strong="H3068"\w* \w the|strong="H3588"\w* \w rising|strong="H4217"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w sun|strong="H8121"\w*, +\q2 \w and|strong="H3068"\w* \w from|strong="H3068"\w* \w the|strong="H3588"\w* \w west|strong="H4628"\w*, +\q1 \w that|strong="H3588"\w* \w there|strong="H3045"\w* \w is|strong="H3068"\w* \w no|strong="H3045"\w* \w one|strong="H3588"\w* \w besides|strong="H1107"\w* \w me|strong="H1107"\w*. +\q2 \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w there|strong="H3045"\w* \w is|strong="H3068"\w* \w no|strong="H3045"\w* \w one|strong="H3588"\w* \w else|strong="H5750"\w*. +\q1 +\v 7 \w I|strong="H3068"\w* \w form|strong="H3335"\w* \w the|strong="H3605"\w* light +\q2 \w and|strong="H3068"\w* \w create|strong="H1254"\w* \w darkness|strong="H2822"\w*. +\q1 \w I|strong="H3068"\w* \w make|strong="H6213"\w* \w peace|strong="H7965"\w* +\q2 \w and|strong="H3068"\w* \w create|strong="H1254"\w* \w calamity|strong="H7451"\w*. +\q1 \w I|strong="H3068"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w who|strong="H3605"\w* \w does|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* \w things|strong="H3605"\w*. +\b +\q1 +\v 8 \w Rain|strong="H7491"\w*, \w you|strong="H6509"\w* \w heavens|strong="H8064"\w*, \w from|strong="H3068"\w* \w above|strong="H4605"\w*, +\q2 \w and|strong="H3068"\w* let \w the|strong="H3068"\w* \w skies|strong="H7834"\w* \w pour|strong="H5140"\w* \w down|strong="H7491"\w* \w righteousness|strong="H6666"\w*. +\q1 Let \w the|strong="H3068"\w* \w earth|strong="H8064"\w* \w open|strong="H6605"\w*, \w that|strong="H3068"\w* \w it|strong="H3068"\w* \w may|strong="H3068"\w* produce \w salvation|strong="H3468"\w*, +\q2 \w and|strong="H3068"\w* let \w it|strong="H3068"\w* \w cause|strong="H6664"\w* \w righteousness|strong="H6666"\w* \w to|strong="H3068"\w* \w spring|strong="H6779"\w* \w up|strong="H6779"\w* \w with|strong="H3068"\w* \w it|strong="H3068"\w*. +\q1 \w I|strong="H6779"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w created|strong="H1254"\w* \w it|strong="H3068"\w*. +\b +\q1 +\v 9 \w Woe|strong="H1945"\w* \w to|strong="H6213"\w* \w him|strong="H3027"\w* \w who|strong="H4100"\w* strives \w with|strong="H6213"\w* \w his|strong="H3027"\w* \w Maker|strong="H6213"\w*— +\q2 \w a|strong="H3068"\w* \w clay|strong="H2563"\w* pot among \w the|strong="H6213"\w* \w clay|strong="H2563"\w* pots \w of|strong="H3027"\w* \w the|strong="H6213"\w* \w earth|strong="H2789"\w*! +\q1 \w Shall|strong="H3027"\w* \w the|strong="H6213"\w* \w clay|strong="H2563"\w* ask \w him|strong="H3027"\w* \w who|strong="H4100"\w* \w fashions|strong="H3335"\w* \w it|strong="H6213"\w*, ‘\w What|strong="H4100"\w* \w are|strong="H3027"\w* \w you|strong="H6213"\w* \w making|strong="H6213"\w*?’ +\q2 \w or|strong="H3027"\w* \w your|strong="H6213"\w* \w work|strong="H6467"\w*, ‘\w He|strong="H6213"\w* \w has|strong="H4100"\w* \w no|strong="H6213"\w* \w hands|strong="H3027"\w*’? +\q1 +\v 10 \w Woe|strong="H1945"\w* \w to|strong="H3205"\w* \w him|strong="H3205"\w* \w who|strong="H4100"\w* says \w to|strong="H3205"\w* \w a|strong="H3068"\w* \w father|strong="H3205"\w*, ‘\w What|strong="H4100"\w* \w have|strong="H3205"\w* \w you|strong="H4100"\w* \w become|strong="H3205"\w* \w the|strong="H3205"\w* \w father|strong="H3205"\w* \w of|strong="H3205"\w*?’ +\q2 or \w to|strong="H3205"\w* \w a|strong="H3068"\w* mother, ‘\w What|strong="H4100"\w* \w have|strong="H3205"\w* \w you|strong="H4100"\w* \w given|strong="H3205"\w* \w birth|strong="H3205"\w* \w to|strong="H3205"\w*?’” +\b +\q1 +\v 11 \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* +\q2 \w and|strong="H1121"\w* \w his|strong="H3068"\w* \w Maker|strong="H3335"\w* \w says|strong="H3541"\w*: +\q1 “\w You|strong="H6680"\w* \w ask|strong="H7592"\w* \w me|strong="H5921"\w* \w about|strong="H5921"\w* \w the|strong="H5921"\w* \w things|strong="H7592"\w* \w that|strong="H3068"\w* \w are|strong="H1121"\w* \w to|strong="H3478"\w* \w come|strong="H3478"\w*, \w concerning|strong="H5921"\w* \w my|strong="H3068"\w* \w sons|strong="H1121"\w*, +\q2 \w and|strong="H1121"\w* \w you|strong="H6680"\w* \w command|strong="H6680"\w* \w me|strong="H5921"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* \w work|strong="H6467"\w* \w of|strong="H1121"\w* \w my|strong="H3068"\w* \w hands|strong="H3027"\w*! +\q1 +\v 12 \w I|strong="H5921"\w* \w have|strong="H3027"\w* \w made|strong="H6213"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*, \w and|strong="H8064"\w* \w created|strong="H1254"\w* \w man|strong="H3605"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*. +\q2 \w I|strong="H5921"\w*, \w even|strong="H6213"\w* \w my|strong="H3605"\w* \w hands|strong="H3027"\w*, \w have|strong="H3027"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w the|strong="H3605"\w* \w heavens|strong="H8064"\w*. +\q2 \w I|strong="H5921"\w* \w have|strong="H3027"\w* \w commanded|strong="H6680"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w army|strong="H6635"\w*. +\q1 +\v 13 \w I|strong="H3808"\w* \w have|strong="H3068"\w* \w raised|strong="H5782"\w* \w him|strong="H7971"\w* \w up|strong="H5782"\w* \w in|strong="H3068"\w* \w righteousness|strong="H6664"\w*, +\q2 \w and|strong="H3068"\w* \w I|strong="H3808"\w* \w will|strong="H3068"\w* \w make|strong="H3474"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w ways|strong="H1870"\w* \w straight|strong="H3474"\w*. +\q1 \w He|strong="H1931"\w* \w shall|strong="H3068"\w* \w build|strong="H1129"\w* \w my|strong="H3605"\w* \w city|strong="H5892"\w*, +\q2 \w and|strong="H3068"\w* \w he|strong="H1931"\w* \w shall|strong="H3068"\w* \w let|strong="H7971"\w* \w my|strong="H3605"\w* \w exiles|strong="H1546"\w* \w go|strong="H7971"\w* \w free|strong="H7971"\w*, +\q2 \w not|strong="H3808"\w* \w for|strong="H7971"\w* \w price|strong="H4242"\w* \w nor|strong="H3808"\w* \w reward|strong="H7810"\w*,” says \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\b +\q1 +\v 14 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w The|strong="H5921"\w* \w labor|strong="H3018"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w merchandise|strong="H5505"\w* \w of|strong="H3068"\w* \w Ethiopia|strong="H3568"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w Sabeans|strong="H5436"\w*, men \w of|strong="H3068"\w* \w stature|strong="H4060"\w*, \w will|strong="H3068"\w* \w come|strong="H1961"\w* \w over|strong="H5921"\w* \w to|strong="H3068"\w* \w you|strong="H5921"\w*, +\q2 \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* yours. +\q1 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w go|strong="H3212"\w* \w after|strong="H5921"\w* \w you|strong="H5921"\w*. +\q2 \w They|strong="H3068"\w* \w shall|strong="H3068"\w* \w come|strong="H1961"\w* \w over|strong="H5921"\w* \w in|strong="H5921"\w* \w chains|strong="H2131"\w*. +\q2 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w bow|strong="H7812"\w* \w down|strong="H7812"\w* \w to|strong="H3068"\w* \w you|strong="H5921"\w*. +\q1 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w make|strong="H6419"\w* \w supplication|strong="H6419"\w* \w to|strong="H3068"\w* \w you|strong="H5921"\w*: +\q2 ‘\w Surely|strong="H1961"\w* \w God|strong="H3068"\w* \w is|strong="H3068"\w* \w in|strong="H5921"\w* \w you|strong="H5921"\w*; \w and|strong="H3068"\w* \w there|strong="H1961"\w* \w is|strong="H3068"\w* \w no|strong="H7812"\w* \w one|strong="H1961"\w* \w else|strong="H5750"\w*. +\q2 \w There|strong="H1961"\w* \w is|strong="H3068"\w* \w no|strong="H7812"\w* \w other|strong="H5750"\w* \w god|strong="H3068"\w*. +\q1 +\v 15 Most certainly \w you|strong="H3467"\w* \w are|strong="H3478"\w* \w a|strong="H3068"\w* God \w who|strong="H3478"\w* \w has|strong="H3478"\w* \w hidden|strong="H5641"\w* \w yourself|strong="H5641"\w*, +\q2 God \w of|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w the|strong="H3467"\w* \w Savior|strong="H3467"\w*.’” +\q1 +\v 16 \w They|strong="H3605"\w* \w will|strong="H1571"\w* \w be|strong="H1571"\w* disappointed, +\q2 \w yes|strong="H1571"\w*, \w confounded|strong="H3637"\w*, \w all|strong="H3605"\w* \w of|strong="H3605"\w* \w them|strong="H3162"\w*. +\q2 \w Those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H1571"\w* \w makers|strong="H2796"\w* \w of|strong="H3605"\w* \w idols|strong="H6736"\w* \w will|strong="H1571"\w* \w go|strong="H1980"\w* \w into|strong="H1980"\w* \w confusion|strong="H3639"\w* \w together|strong="H3162"\w*. +\q1 +\v 17 \w Israel|strong="H3478"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w saved|strong="H3467"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w an|strong="H3068"\w* \w everlasting|strong="H5769"\w* \w salvation|strong="H8668"\w*. +\q2 \w You|strong="H5704"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* disappointed \w nor|strong="H3808"\w* \w confounded|strong="H3637"\w* \w to|strong="H5704"\w* \w ages|strong="H5769"\w* \w everlasting|strong="H5769"\w*. +\b +\q1 +\v 18 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H1931"\w* \w created|strong="H1254"\w* \w the|strong="H3588"\w* \w heavens|strong="H8064"\w*, +\q2 \w the|strong="H3588"\w* \w God|strong="H3068"\w* \w who|strong="H1931"\w* \w formed|strong="H3335"\w* \w the|strong="H3588"\w* \w earth|strong="H8064"\w* \w and|strong="H3068"\w* \w made|strong="H6213"\w* \w it|strong="H1931"\w*, +\q2 \w who|strong="H1931"\w* \w established|strong="H3559"\w* \w it|strong="H1931"\w* \w and|strong="H3068"\w* didn’t \w create|strong="H1254"\w* \w it|strong="H1931"\w* \w a|strong="H3068"\w* \w waste|strong="H8414"\w*, +\q2 \w who|strong="H1931"\w* \w formed|strong="H3335"\w* \w it|strong="H1931"\w* \w to|strong="H3068"\w* \w be|strong="H3808"\w* \w inhabited|strong="H3427"\w* \w says|strong="H3541"\w*: +\q1 “\w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w There|strong="H3427"\w* \w is|strong="H3068"\w* \w no|strong="H3808"\w* \w other|strong="H5750"\w*. +\q1 +\v 19 \w I|strong="H3808"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w spoken|strong="H1696"\w* \w in|strong="H3068"\w* \w secret|strong="H5643"\w*, +\q2 \w in|strong="H3068"\w* \w a|strong="H3068"\w* \w place|strong="H4725"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w land|strong="H4725"\w* \w of|strong="H3068"\w* \w darkness|strong="H2822"\w*. +\q1 \w I|strong="H3808"\w* didn’t \w say|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3068"\w* \w offspring|strong="H2233"\w* \w of|strong="H3068"\w* \w Jacob|strong="H3290"\w*, ‘\w Seek|strong="H1245"\w* \w me|strong="H5046"\w* \w in|strong="H3068"\w* \w vain|strong="H8414"\w*.’ +\q2 \w I|strong="H3808"\w*, \w Yahweh|strong="H3068"\w*, \w speak|strong="H1696"\w* \w righteousness|strong="H6664"\w*. +\q2 \w I|strong="H3808"\w* \w declare|strong="H5046"\w* \w things|strong="H4339"\w* \w that|strong="H3068"\w* \w are|strong="H3068"\w* \w right|strong="H6664"\w*. +\b +\q1 +\v 20 “\w Assemble|strong="H6908"\w* \w yourselves|strong="H5375"\w* \w and|strong="H6086"\w* \w come|strong="H5066"\w*. +\q2 \w Draw|strong="H5066"\w* \w near|strong="H5066"\w* \w together|strong="H3162"\w*, \w you|strong="H3045"\w* \w who|strong="H6412"\w* \w have|strong="H3045"\w* \w escaped|strong="H6412"\w* \w from|strong="H1471"\w* \w the|strong="H5375"\w* \w nations|strong="H1471"\w*. +\q1 \w Those|strong="H5375"\w* \w have|strong="H3045"\w* \w no|strong="H3808"\w* \w knowledge|strong="H3045"\w* \w who|strong="H6412"\w* \w carry|strong="H5375"\w* \w the|strong="H5375"\w* \w wood|strong="H6086"\w* \w of|strong="H6086"\w* \w their|strong="H5375"\w* engraved \w image|strong="H6459"\w*, +\q2 \w and|strong="H6086"\w* \w pray|strong="H6419"\w* \w to|strong="H5066"\w* \w a|strong="H3068"\w* \w god|strong="H3808"\w* \w that|strong="H3045"\w* \w can|strong="H3045"\w*’t \w save|strong="H3467"\w*. +\q1 +\v 21 \w Declare|strong="H5046"\w* \w and|strong="H3068"\w* \w present|strong="H5066"\w* \w it|strong="H2063"\w*. +\q2 Yes, \w let|strong="H5046"\w* \w them|strong="H5046"\w* \w take|strong="H3289"\w* \w counsel|strong="H3289"\w* \w together|strong="H3162"\w*. +\q1 \w Who|strong="H4310"\w* \w has|strong="H3068"\w* \w shown|strong="H5046"\w* \w this|strong="H2063"\w* \w from|strong="H8085"\w* \w ancient|strong="H6924"\w* \w time|strong="H5750"\w*? +\q2 \w Who|strong="H4310"\w* \w has|strong="H3068"\w* \w declared|strong="H5046"\w* \w it|strong="H2063"\w* \w of|strong="H3068"\w* \w old|strong="H6924"\w*? +\q2 Haven’t \w I|strong="H3808"\w*, \w Yahweh|strong="H3068"\w*? +\q1 \w There|strong="H3068"\w* \w is|strong="H3068"\w* \w no|strong="H3808"\w* \w other|strong="H5750"\w* \w God|strong="H3068"\w* \w besides|strong="H2108"\w* \w me|strong="H5046"\w*, \w a|strong="H3068"\w* \w just|strong="H6662"\w* \w God|strong="H3068"\w* \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w Savior|strong="H3467"\w*. +\q2 \w There|strong="H3068"\w* \w is|strong="H3068"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w besides|strong="H2108"\w* \w me|strong="H5046"\w*. +\b +\q1 +\v 22 “\w Look|strong="H6437"\w* \w to|strong="H6437"\w* \w me|strong="H3467"\w*, \w and|strong="H6437"\w* \w be|strong="H5750"\w* \w saved|strong="H3467"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* ends \w of|strong="H3605"\w* \w the|strong="H3605"\w* earth; +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* am God, \w and|strong="H6437"\w* \w there|strong="H3605"\w* \w is|strong="H3605"\w* \w no|strong="H3605"\w* \w other|strong="H5750"\w*. +\q1 +\v 23 \w I|strong="H3588"\w* \w have|strong="H1697"\w* \w sworn|strong="H7650"\w* \w by|strong="H7650"\w* myself. +\q2 \w The|strong="H3605"\w* \w word|strong="H1697"\w* \w has|strong="H3588"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1697"\w* \w my|strong="H3605"\w* \w mouth|strong="H6310"\w* \w in|strong="H7725"\w* \w righteousness|strong="H6666"\w*, \w and|strong="H7725"\w* \w will|strong="H1697"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w revoked|strong="H7725"\w*, +\q1 \w that|strong="H3588"\w* \w to|strong="H7725"\w* \w me|strong="H7725"\w* \w every|strong="H3605"\w* \w knee|strong="H1290"\w* \w shall|strong="H3808"\w* \w bow|strong="H3766"\w*, +\q2 \w every|strong="H3605"\w* \w tongue|strong="H3956"\w* \w shall|strong="H3808"\w* \w take|strong="H7725"\w* \w an|strong="H7650"\w* \w oath|strong="H7650"\w*. +\q1 +\v 24 \w They|strong="H3068"\w* \w will|strong="H3068"\w* say \w of|strong="H3068"\w* \w me|strong="H3605"\w*, +\q2 ‘\w There|strong="H3605"\w* \w is|strong="H3068"\w* \w righteousness|strong="H6666"\w* \w and|strong="H3068"\w* \w strength|strong="H5797"\w* \w only|strong="H5704"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.’” +\q1 \w Even|strong="H5704"\w* \w to|strong="H5704"\w* \w him|strong="H3605"\w* \w will|strong="H3068"\w* \w men|strong="H3605"\w* come. +\q2 \w All|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w raged|strong="H2734"\w* \w against|strong="H2734"\w* \w him|strong="H3605"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* disappointed. +\q1 +\v 25 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w offspring|strong="H2233"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w justified|strong="H6663"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H3478"\w* \w will|strong="H3068"\w* rejoice! +\c 46 +\q1 +\v 1 \w Bel|strong="H1078"\w* bows \w down|strong="H3766"\w*. +\q2 \w Nebo|strong="H5015"\w* \w stoops|strong="H7164"\w*. +\q1 \w Their|strong="H1961"\w* \w idols|strong="H6091"\w* \w are|strong="H6091"\w* carried \w by|strong="H1961"\w* \w animals|strong="H2416"\w*, +\q2 \w and|strong="H5015"\w* \w on|strong="H1961"\w* \w the|strong="H1961"\w* livestock. +\q1 \w The|strong="H1961"\w* \w things|strong="H1961"\w* \w that|strong="H2416"\w* \w you|strong="H1961"\w* carried around \w are|strong="H6091"\w* heavy \w loads|strong="H4853"\w*, +\q2 \w a|strong="H3068"\w* \w burden|strong="H4853"\w* \w for|strong="H1961"\w* \w the|strong="H1961"\w* \w weary|strong="H5889"\w*. +\q1 +\v 2 \w They|strong="H3808"\w* \w stoop|strong="H7164"\w* \w and|strong="H1980"\w* \w they|strong="H3808"\w* \w bow|strong="H3766"\w* \w down|strong="H3766"\w* \w together|strong="H3162"\w*. +\q2 \w They|strong="H3808"\w* \w could|strong="H3201"\w* \w not|strong="H3808"\w* \w deliver|strong="H4422"\w* \w the|strong="H1980"\w* \w burden|strong="H4853"\w*, +\q2 \w but|strong="H3808"\w* \w they|strong="H3808"\w* \w have|strong="H3808"\w* \w gone|strong="H1980"\w* \w into|strong="H1980"\w* \w captivity|strong="H7628"\w*. +\b +\q1 +\v 3 “\w Listen|strong="H8085"\w* \w to|strong="H3478"\w* \w me|strong="H4480"\w*, \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w*, +\q2 \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w remnant|strong="H7611"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, +\q2 \w that|strong="H3605"\w* \w have|strong="H3478"\w* \w been|strong="H5375"\w* \w carried|strong="H5375"\w* \w from|strong="H4480"\w* \w their|strong="H3605"\w* birth, +\q2 \w that|strong="H3605"\w* \w have|strong="H3478"\w* \w been|strong="H5375"\w* \w carried|strong="H5375"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w womb|strong="H7356"\w*. +\q1 +\v 4 \w Even|strong="H5704"\w* \w to|strong="H5704"\w* \w old|strong="H2209"\w* \w age|strong="H7872"\w* \w I|strong="H5704"\w* am \w he|strong="H1931"\w*, +\q2 \w and|strong="H6213"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w gray|strong="H7872"\w* \w hairs|strong="H7872"\w* \w I|strong="H5704"\w* \w will|strong="H1931"\w* \w carry|strong="H5375"\w* \w you|strong="H5704"\w*. +\q1 \w I|strong="H5704"\w* \w have|strong="H5375"\w* \w made|strong="H6213"\w*, \w and|strong="H6213"\w* \w I|strong="H5704"\w* \w will|strong="H1931"\w* \w bear|strong="H5375"\w*. +\q2 Yes, \w I|strong="H5704"\w* \w will|strong="H1931"\w* \w carry|strong="H5375"\w*, \w and|strong="H6213"\w* \w will|strong="H1931"\w* \w deliver|strong="H4422"\w*. +\b +\q1 +\v 5 “\w To|strong="H1819"\w* \w whom|strong="H4310"\w* \w will|strong="H4310"\w* \w you|strong="H4310"\w* \w compare|strong="H1819"\w* \w me|strong="H7737"\w*, \w and|strong="H7737"\w* consider \w my|strong="H7737"\w* \w equal|strong="H7737"\w*, +\q2 \w and|strong="H7737"\w* \w compare|strong="H1819"\w* \w me|strong="H7737"\w*, as if \w we|strong="H3068"\w* were \w the|strong="H1819"\w* same? +\q1 +\v 6 Some pour \w out|strong="H6213"\w* \w gold|strong="H2091"\w* \w from|strong="H2091"\w* \w the|strong="H6213"\w* \w bag|strong="H3599"\w*, +\q2 \w and|strong="H3701"\w* \w weigh|strong="H8254"\w* \w silver|strong="H3701"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w balance|strong="H7070"\w*. +\q1 \w They|strong="H6213"\w* \w hire|strong="H7936"\w* \w a|strong="H3068"\w* \w goldsmith|strong="H6884"\w*, +\q2 \w and|strong="H3701"\w* \w he|strong="H6213"\w* \w makes|strong="H6213"\w* \w it|strong="H6213"\w* \w a|strong="H3068"\w* god. +\q1 \w They|strong="H6213"\w* \w fall|strong="H5456"\w* \w down|strong="H7812"\w*— +\q2 yes, \w they|strong="H6213"\w* \w worship|strong="H7812"\w*. +\q1 +\v 7 \w They|strong="H3808"\w* \w bear|strong="H5375"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w their|strong="H5375"\w* \w shoulder|strong="H3802"\w*. +\q2 \w They|strong="H3808"\w* \w carry|strong="H5375"\w* \w it|strong="H5921"\w*, \w and|strong="H6030"\w* \w set|strong="H5975"\w* \w it|strong="H5921"\w* \w in|strong="H5921"\w* \w its|strong="H5921"\w* \w place|strong="H4725"\w*, \w and|strong="H6030"\w* \w it|strong="H5921"\w* \w stands|strong="H5975"\w* \w there|strong="H5975"\w*. +\q2 \w It|strong="H5921"\w* \w cannot|strong="H3808"\w* \w move|strong="H4185"\w* \w from|strong="H5921"\w* \w its|strong="H5921"\w* \w place|strong="H4725"\w*. +\q1 Yes, \w one|strong="H3808"\w* \w may|strong="H6030"\w* \w cry|strong="H6817"\w* \w to|strong="H5921"\w* \w it|strong="H5921"\w*, \w yet|strong="H3808"\w* \w it|strong="H5921"\w* \w can|strong="H3808"\w* \w not|strong="H3808"\w* \w answer|strong="H6030"\w*. +\q2 \w It|strong="H5921"\w* \w cannot|strong="H3808"\w* \w save|strong="H3467"\w* \w him|strong="H5921"\w* \w out|strong="H5921"\w* \w of|strong="H5921"\w* \w his|strong="H5375"\w* \w trouble|strong="H6869"\w*. +\b +\q1 +\v 8 “\w Remember|strong="H2142"\w* \w this|strong="H2063"\w*, \w and|strong="H7725"\w* show \w yourselves|strong="H5921"\w* men. +\q2 \w Bring|strong="H7725"\w* \w it|strong="H5921"\w* \w to|strong="H7725"\w* \w mind|strong="H3820"\w* \w again|strong="H7725"\w*, \w you|strong="H5921"\w* \w transgressors|strong="H6586"\w*. +\q1 +\v 9 \w Remember|strong="H2142"\w* \w the|strong="H3588"\w* \w former|strong="H7223"\w* \w things|strong="H7223"\w* \w of|strong="H7223"\w* \w old|strong="H5769"\w*; +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* am God, \w and|strong="H5769"\w* \w there|strong="H5769"\w* \w is|strong="H3588"\w* no \w other|strong="H5750"\w*. +\q2 \w I|strong="H3588"\w* am God, \w and|strong="H5769"\w* \w there|strong="H5769"\w* \w is|strong="H3588"\w* none \w like|strong="H3644"\w* \w me|strong="H3588"\w*. +\q1 +\v 10 \w I|strong="H3808"\w* \w declare|strong="H5046"\w* \w the|strong="H3605"\w* \w end|strong="H6924"\w* \w from|strong="H6965"\w* \w the|strong="H3605"\w* \w beginning|strong="H7225"\w*, +\q2 \w and|strong="H6965"\w* \w from|strong="H6965"\w* \w ancient|strong="H6924"\w* \w times|strong="H6924"\w* \w things|strong="H3605"\w* \w that|strong="H3605"\w* \w are|strong="H6213"\w* \w not|strong="H3808"\w* \w yet|strong="H3808"\w* \w done|strong="H6213"\w*. +\q1 \w I|strong="H3808"\w* say: \w My|strong="H3605"\w* \w counsel|strong="H6098"\w* \w will|strong="H3808"\w* \w stand|strong="H6965"\w*, +\q2 \w and|strong="H6965"\w* \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H3808"\w* please. +\q1 +\v 11 \w I|strong="H6213"\w* \w call|strong="H7121"\w* \w a|strong="H3068"\w* \w ravenous|strong="H5861"\w* \w bird|strong="H5861"\w* \w from|strong="H4217"\w* \w the|strong="H6213"\w* \w east|strong="H4217"\w*, +\q2 \w the|strong="H6213"\w* man \w of|strong="H6098"\w* \w my|strong="H6213"\w* \w counsel|strong="H6098"\w* \w from|strong="H4217"\w* \w a|strong="H3068"\w* \w far|strong="H4801"\w* country. +\q1 Yes, \w I|strong="H6213"\w* \w have|strong="H1696"\w* \w spoken|strong="H1696"\w*. +\q2 \w I|strong="H6213"\w* \w will|strong="H6213"\w* \w also|strong="H6213"\w* \w bring|strong="H6213"\w* \w it|strong="H7121"\w* \w to|strong="H1696"\w* \w pass|strong="H6213"\w*. +\q1 \w I|strong="H6213"\w* \w have|strong="H1696"\w* \w planned|strong="H3335"\w*. +\q2 \w I|strong="H6213"\w* \w will|strong="H6213"\w* \w also|strong="H6213"\w* \w do|strong="H6213"\w* \w it|strong="H7121"\w*. +\b +\q1 +\v 12 \w Listen|strong="H8085"\w* \w to|strong="H3820"\w* \w me|strong="H3820"\w*, \w you|strong="H3820"\w* stubborn-hearted, +\q2 \w who|strong="H7350"\w* \w are|strong="H7350"\w* \w far|strong="H7350"\w* \w from|strong="H8085"\w* \w righteousness|strong="H6666"\w*! +\q1 +\v 13 \w I|strong="H5414"\w* \w bring|strong="H7126"\w* \w my|strong="H5414"\w* \w righteousness|strong="H6666"\w* \w near|strong="H7126"\w*. +\q2 \w It|strong="H5414"\w* \w is|strong="H3478"\w* \w not|strong="H3808"\w* \w far|strong="H7368"\w* \w off|strong="H7368"\w*, +\q2 \w and|strong="H3478"\w* \w my|strong="H5414"\w* \w salvation|strong="H8668"\w* \w will|strong="H3478"\w* \w not|strong="H3808"\w* wait. +\q1 \w I|strong="H5414"\w* \w will|strong="H3478"\w* \w grant|strong="H5414"\w* \w salvation|strong="H8668"\w* \w to|strong="H3478"\w* \w Zion|strong="H6726"\w*, +\q2 \w my|strong="H5414"\w* \w glory|strong="H8597"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\b +\c 47 +\p +\v 1 “\w Come|strong="H3381"\w* \w down|strong="H3381"\w* \w and|strong="H3381"\w* \w sit|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w dust|strong="H6083"\w*, \w virgin|strong="H1330"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* Babylon. +\q2 \w Sit|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w ground|strong="H6083"\w* \w without|strong="H3808"\w* \w a|strong="H3068"\w* \w throne|strong="H3678"\w*, \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w the|strong="H5921"\w* \w Chaldeans|strong="H3778"\w*. +\q2 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3808"\w* \w no|strong="H3808"\w* \w longer|strong="H3254"\w* \w be|strong="H3808"\w* \w called|strong="H7121"\w* \w tender|strong="H7390"\w* \w and|strong="H3381"\w* \w delicate|strong="H6028"\w*. +\q1 +\v 2 \w Take|strong="H3947"\w* \w the|strong="H3947"\w* \w millstones|strong="H7347"\w* \w and|strong="H3947"\w* \w grind|strong="H2912"\w* \w flour|strong="H7058"\w*. +\q2 \w Remove|strong="H1540"\w* \w your|strong="H3947"\w* \w veil|strong="H6777"\w*, \w lift|strong="H5104"\w* \w up|strong="H3947"\w* \w your|strong="H3947"\w* \w skirt|strong="H7640"\w*, \w uncover|strong="H1540"\w* \w your|strong="H3947"\w* \w legs|strong="H7785"\w*, +\q2 \w and|strong="H3947"\w* wade \w through|strong="H5674"\w* \w the|strong="H3947"\w* \w rivers|strong="H5104"\w*. +\q1 +\v 3 \w Your|strong="H3947"\w* \w nakedness|strong="H6172"\w* \w will|strong="H1571"\w* \w be|strong="H3808"\w* \w uncovered|strong="H1540"\w*. +\q2 \w Yes|strong="H1571"\w*, \w your|strong="H3947"\w* \w shame|strong="H2781"\w* \w will|strong="H1571"\w* \w be|strong="H3808"\w* \w seen|strong="H7200"\w*. +\q1 \w I|strong="H7200"\w* \w will|strong="H1571"\w* \w take|strong="H3947"\w* \w vengeance|strong="H5359"\w*, +\q2 \w and|strong="H7200"\w* \w will|strong="H1571"\w* \w spare|strong="H6293"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w*.” +\b +\q1 +\v 4 \w Our|strong="H3068"\w* \w Redeemer|strong="H1350"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w is|strong="H3068"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w*, +\q2 \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\b +\q1 +\v 5 “\w Sit|strong="H3427"\w* \w in|strong="H3427"\w* silence, \w and|strong="H3427"\w* \w go|strong="H3254"\w* \w into|strong="H1323"\w* \w darkness|strong="H2822"\w*, +\q2 \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w the|strong="H3588"\w* \w Chaldeans|strong="H3778"\w*. +\q1 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H1323"\w* \w no|strong="H3808"\w* \w longer|strong="H3254"\w* \w be|strong="H3808"\w* \w called|strong="H7121"\w* +\q2 \w the|strong="H3588"\w* \w mistress|strong="H1404"\w* \w of|strong="H1323"\w* \w kingdoms|strong="H4467"\w*. +\q1 +\v 6 \w I|strong="H5414"\w* \w was|strong="H3027"\w* \w angry|strong="H7107"\w* \w with|strong="H5921"\w* \w my|strong="H5414"\w* \w people|strong="H5971"\w*. +\q2 \w I|strong="H5414"\w* \w profaned|strong="H2490"\w* \w my|strong="H5414"\w* \w inheritance|strong="H5159"\w* +\q2 \w and|strong="H3027"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H5921"\w* \w your|strong="H5414"\w* \w hand|strong="H3027"\w*. +\q1 \w You|strong="H5414"\w* \w showed|strong="H5414"\w* \w them|strong="H5414"\w* \w no|strong="H3808"\w* \w mercy|strong="H7356"\w*. +\q2 \w You|strong="H5414"\w* \w laid|strong="H7760"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w heavy|strong="H3513"\w* \w yoke|strong="H5923"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w aged|strong="H2205"\w*. +\q1 +\v 7 \w You|strong="H5921"\w* said, ‘\w I|strong="H5704"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* princess \w forever|strong="H5769"\w*,’ +\q2 \w so|strong="H1961"\w* \w that|strong="H5704"\w* \w you|strong="H5921"\w* didn’t \w lay|strong="H7760"\w* \w these|strong="H7760"\w* \w things|strong="H1961"\w* \w to|strong="H5704"\w* \w your|strong="H5921"\w* \w heart|strong="H3820"\w*, +\q2 \w nor|strong="H3808"\w* \w did|strong="H3808"\w* \w you|strong="H5921"\w* \w remember|strong="H2142"\w* \w the|strong="H5921"\w* results. +\b +\q1 +\v 8 “\w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w hear|strong="H8085"\w* \w this|strong="H2063"\w*, \w you|strong="H3045"\w* \w who|strong="H3427"\w* \w are|strong="H3824"\w* \w given|strong="H8085"\w* \w to|strong="H8085"\w* \w pleasures|strong="H5719"\w*, +\q2 \w who|strong="H3427"\w* \w sit|strong="H3427"\w* securely, +\q1 \w who|strong="H3427"\w* say \w in|strong="H3427"\w* \w your|strong="H8085"\w* \w heart|strong="H3824"\w*, +\q2 ‘\w I|strong="H6258"\w* am, \w and|strong="H8085"\w* \w there|strong="H3427"\w* \w is|strong="H3824"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w else|strong="H5750"\w* \w besides|strong="H5750"\w* \w me|strong="H3808"\w*. +\q1 \w I|strong="H6258"\w* won’t \w sit|strong="H3427"\w* \w as|strong="H3824"\w* \w a|strong="H3068"\w* widow, +\q2 \w neither|strong="H3808"\w* \w will|strong="H3808"\w* \w I|strong="H6258"\w* \w know|strong="H3045"\w* \w the|strong="H8085"\w* \w loss|strong="H7908"\w* \w of|strong="H3427"\w* \w children|strong="H7908"\w*.’ +\q1 +\v 9 \w But|strong="H3117"\w* \w these|strong="H8147"\w* \w two|strong="H8147"\w* \w things|strong="H8147"\w* \w will|strong="H3117"\w* come \w to|strong="H5921"\w* \w you|strong="H5921"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w moment|strong="H7281"\w* \w in|strong="H5921"\w* \w one|strong="H8147"\w* \w day|strong="H3117"\w*: +\q2 \w the|strong="H5921"\w* \w loss|strong="H7908"\w* \w of|strong="H3117"\w* \w children|strong="H7908"\w* \w and|strong="H3117"\w* widowhood. +\q1 \w They|strong="H3117"\w* \w will|strong="H3117"\w* come \w on|strong="H5921"\w* \w you|strong="H5921"\w* \w in|strong="H5921"\w* \w their|strong="H5921"\w* \w full|strong="H3117"\w* \w measure|strong="H3966"\w*, +\q2 \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w multitude|strong="H7230"\w* \w of|strong="H3117"\w* \w your|strong="H5921"\w* \w sorceries|strong="H3785"\w*, +\q2 \w and|strong="H3117"\w* \w the|strong="H5921"\w* \w great|strong="H3966"\w* \w abundance|strong="H7230"\w* \w of|strong="H3117"\w* \w your|strong="H5921"\w* \w enchantments|strong="H2267"\w*. +\q1 +\v 10 \w For|strong="H7451"\w* \w you|strong="H7725"\w* \w have|strong="H7200"\w* trusted \w in|strong="H7725"\w* \w your|strong="H7200"\w* \w wickedness|strong="H7451"\w*. +\q2 \w You|strong="H7725"\w* \w have|strong="H7200"\w* said, ‘\w No|strong="H7200"\w* \w one|strong="H1931"\w* \w sees|strong="H7200"\w* \w me|strong="H7725"\w*.’ +\q1 \w Your|strong="H7200"\w* \w wisdom|strong="H2451"\w* \w and|strong="H7725"\w* \w your|strong="H7200"\w* \w knowledge|strong="H1847"\w* \w has|strong="H3820"\w* \w perverted|strong="H7725"\w* \w you|strong="H7725"\w*. +\q2 \w You|strong="H7725"\w* \w have|strong="H7200"\w* said \w in|strong="H7725"\w* \w your|strong="H7200"\w* \w heart|strong="H3820"\w*, ‘\w I|strong="H7200"\w* am, \w and|strong="H7725"\w* \w there|strong="H7725"\w* \w is|strong="H1931"\w* \w no|strong="H7200"\w* \w one|strong="H1931"\w* \w else|strong="H5750"\w* \w besides|strong="H5750"\w* \w me|strong="H7725"\w*.’ +\q1 +\v 11 \w Therefore|strong="H5921"\w* \w disaster|strong="H7451"\w* \w will|strong="H3808"\w* \w come|strong="H5307"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*. +\q2 \w You|strong="H5921"\w* won’t \w know|strong="H3045"\w* \w when|strong="H5307"\w* \w it|strong="H5921"\w* dawns. +\q1 \w Mischief|strong="H7451"\w* \w will|strong="H3808"\w* \w fall|strong="H5307"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*. +\q2 \w You|strong="H5921"\w* won’t \w be|strong="H3808"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* put \w it|strong="H5921"\w* \w away|strong="H5307"\w*. +\q1 \w Desolation|strong="H7722"\w* \w will|strong="H3808"\w* \w come|strong="H5307"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w* \w suddenly|strong="H6597"\w*, +\q2 \w which|strong="H7451"\w* \w you|strong="H5921"\w* don’t \w understand|strong="H3045"\w*. +\b +\q1 +\v 12 “\w Stand|strong="H5975"\w* \w now|strong="H4994"\w* \w with|strong="H5975"\w* \w your|strong="H4994"\w* \w enchantments|strong="H2267"\w* +\q2 \w and|strong="H5975"\w* \w with|strong="H5975"\w* \w the|strong="H5975"\w* \w multitude|strong="H7230"\w* \w of|strong="H7230"\w* \w your|strong="H4994"\w* \w sorceries|strong="H3785"\w*, +\q2 \w in|strong="H5975"\w* which \w you|strong="H4994"\w* have \w labored|strong="H3021"\w* \w from|strong="H5975"\w* \w your|strong="H4994"\w* \w youth|strong="H5271"\w*, +\q1 \w as|strong="H7230"\w* if \w you|strong="H4994"\w* \w might|strong="H3201"\w* \w profit|strong="H3276"\w*, +\q2 \w as|strong="H7230"\w* if \w you|strong="H4994"\w* \w might|strong="H3201"\w* \w prevail|strong="H3201"\w*. +\q1 +\v 13 \w You|strong="H5921"\w* \w are|strong="H8064"\w* \w wearied|strong="H3811"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w multitude|strong="H7230"\w* \w of|strong="H7230"\w* \w your|strong="H5921"\w* \w counsels|strong="H6098"\w*. +\q2 \w Now|strong="H4994"\w* \w let|strong="H4994"\w* \w the|strong="H5921"\w* \w astrologers|strong="H1895"\w*, \w the|strong="H5921"\w* \w stargazers|strong="H2374"\w*, \w and|strong="H8064"\w* \w the|strong="H5921"\w* \w monthly|strong="H2320"\w* \w prognosticators|strong="H3045"\w* \w stand|strong="H5975"\w* \w up|strong="H5975"\w* \w and|strong="H8064"\w* \w save|strong="H3467"\w* \w you|strong="H5921"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w things|strong="H7230"\w* \w that|strong="H3045"\w* \w will|strong="H8064"\w* happen \w to|strong="H5921"\w* \w you|strong="H5921"\w*. +\q1 +\v 14 \w Behold|strong="H2009"\w*, \w they|strong="H3808"\w* \w are|strong="H3027"\w* \w like|strong="H1961"\w* \w stubble|strong="H7179"\w*. +\q2 \w The|strong="H1961"\w* \w fire|strong="H1513"\w* \w will|strong="H1961"\w* \w burn|strong="H8313"\w* \w them|strong="H3027"\w*. +\q2 \w They|strong="H3808"\w* won’t \w deliver|strong="H5337"\w* \w themselves|strong="H5315"\w* \w from|strong="H5315"\w* \w the|strong="H1961"\w* \w power|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H1961"\w* \w flame|strong="H3852"\w*. +\q1 \w It|strong="H1961"\w* won’t \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w coal|strong="H1513"\w* \w to|strong="H1961"\w* \w warm|strong="H2552"\w* \w at|strong="H3427"\w* +\q2 \w or|strong="H3808"\w* \w a|strong="H3068"\w* \w fire|strong="H1513"\w* \w to|strong="H1961"\w* \w sit|strong="H3427"\w* \w by|strong="H3027"\w*. +\q1 +\v 15 \w The|strong="H5676"\w* \w things|strong="H1961"\w* \w that|strong="H3651"\w* \w you|strong="H3651"\w* \w labored|strong="H3021"\w* \w in|strong="H3021"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w this|strong="H3651"\w*: +\q2 \w those|strong="H3467"\w* \w who|strong="H3467"\w* \w have|strong="H1961"\w* \w trafficked|strong="H5503"\w* \w with|strong="H3651"\w* \w you|strong="H3651"\w* \w from|strong="H1961"\w* \w your|strong="H1961"\w* \w youth|strong="H5271"\w* \w will|strong="H1961"\w* each \w wander|strong="H8582"\w* \w in|strong="H3021"\w* \w his|strong="H1961"\w* \w own|strong="H1961"\w* \w way|strong="H8582"\w*. +\q2 \w There|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w no|strong="H1961"\w* \w one|strong="H1961"\w* \w to|strong="H1961"\w* \w save|strong="H3467"\w* \w you|strong="H3651"\w*. +\b +\c 48 +\q1 +\v 1 “\w Hear|strong="H8085"\w* \w this|strong="H2063"\w*, \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w*, +\q2 \w you|strong="H3808"\w* \w who|strong="H3068"\w* \w are|strong="H3478"\w* \w called|strong="H7121"\w* \w by|strong="H7650"\w* \w the|strong="H8085"\w* \w name|strong="H8034"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, +\q2 \w and|strong="H3063"\w* \w have|strong="H3068"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H8085"\w* \w waters|strong="H4325"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w*. +\q1 \w You|strong="H3808"\w* \w swear|strong="H7650"\w* \w by|strong="H7650"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*, +\q2 \w and|strong="H3063"\w* \w make|strong="H8085"\w* \w mention|strong="H2142"\w* \w of|strong="H1004"\w* \w the|strong="H8085"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, +\q2 \w but|strong="H3808"\w* \w not|strong="H3808"\w* \w in|strong="H3478"\w* \w truth|strong="H3808"\w*, \w nor|strong="H3808"\w* \w in|strong="H3478"\w* \w righteousness|strong="H6666"\w*— +\q1 +\v 2 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w call|strong="H7121"\w* \w themselves|strong="H7121"\w* citizens \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w holy|strong="H6944"\w* \w city|strong="H5892"\w*, +\q2 \w and|strong="H3478"\w* rely \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*; +\q2 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w is|strong="H3068"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w*. +\q1 +\v 3 \w I|strong="H8085"\w* \w have|strong="H7223"\w* \w declared|strong="H5046"\w* \w the|strong="H8085"\w* \w former|strong="H7223"\w* \w things|strong="H7223"\w* \w from|strong="H3318"\w* \w of|strong="H6310"\w* \w old|strong="H7223"\w*. +\q2 Yes, \w they|strong="H6310"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H6310"\w* \w my|strong="H8085"\w* \w mouth|strong="H6310"\w*, \w and|strong="H8085"\w* \w I|strong="H8085"\w* revealed \w them|strong="H6213"\w*. +\q2 \w I|strong="H8085"\w* \w did|strong="H6213"\w* \w them|strong="H6213"\w* \w suddenly|strong="H6597"\w*, \w and|strong="H8085"\w* \w they|strong="H6310"\w* \w happened|strong="H6213"\w*. +\q1 +\v 4 \w Because|strong="H3588"\w* \w I|strong="H3588"\w* \w knew|strong="H1847"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H7186"\w* \w obstinate|strong="H7186"\w*, +\q2 \w and|strong="H1847"\w* \w your|strong="H3588"\w* \w neck|strong="H6203"\w* \w is|strong="H5154"\w* \w an|strong="H3588"\w* \w iron|strong="H1270"\w* \w sinew|strong="H1517"\w*, +\q2 \w and|strong="H1847"\w* \w your|strong="H3588"\w* \w brow|strong="H4696"\w* \w bronze|strong="H5154"\w*; +\q1 +\v 5 \w therefore|strong="H6213"\w* \w I|strong="H2962"\w* \w have|strong="H5262"\w* \w declared|strong="H5046"\w* \w it|strong="H6213"\w* \w to|strong="H6213"\w* \w you|strong="H6680"\w* \w from|strong="H8085"\w* \w of|strong="H6213"\w* old; +\q2 \w before|strong="H2962"\w* \w it|strong="H6213"\w* came \w to|strong="H6213"\w* \w pass|strong="H6213"\w* \w I|strong="H2962"\w* \w showed|strong="H6213"\w* \w it|strong="H6213"\w* \w to|strong="H6213"\w* \w you|strong="H6680"\w*; +\q2 \w lest|strong="H6435"\w* \w you|strong="H6680"\w* \w should|strong="H6213"\w* say, ‘\w My|strong="H8085"\w* \w idol|strong="H6459"\w* \w has|strong="H6213"\w* \w done|strong="H6213"\w* \w them|strong="H6213"\w*. +\q2 \w My|strong="H8085"\w* engraved \w image|strong="H6459"\w* \w and|strong="H8085"\w* \w my|strong="H8085"\w* \w molten|strong="H5262"\w* \w image|strong="H6459"\w* \w has|strong="H6213"\w* \w commanded|strong="H6680"\w* \w them|strong="H6213"\w*.’ +\q1 +\v 6 \w You|strong="H3605"\w* \w have|strong="H3045"\w* \w heard|strong="H8085"\w* \w it|strong="H3045"\w*. +\q2 \w Now|strong="H6258"\w* \w see|strong="H2372"\w* \w all|strong="H3605"\w* \w this|strong="H6258"\w*. +\q2 \w And|strong="H8085"\w* \w you|strong="H3605"\w*, won’t \w you|strong="H3605"\w* \w declare|strong="H5046"\w* \w it|strong="H3045"\w*? +\b +\q1 “\w I|strong="H6258"\w* \w have|strong="H3045"\w* \w shown|strong="H5046"\w* \w you|strong="H3605"\w* \w new|strong="H2319"\w* \w things|strong="H3605"\w* \w from|strong="H8085"\w* \w this|strong="H6258"\w* \w time|strong="H6258"\w*, +\q2 \w even|strong="H3808"\w* \w hidden|strong="H5341"\w* \w things|strong="H3605"\w*, \w which|strong="H8085"\w* \w you|strong="H3605"\w* \w have|strong="H3045"\w* \w not|strong="H3808"\w* \w known|strong="H3045"\w*. +\q1 +\v 7 \w They|strong="H3117"\w* \w are|strong="H3117"\w* \w created|strong="H1254"\w* \w now|strong="H6258"\w*, \w and|strong="H3117"\w* \w not|strong="H3808"\w* \w from|strong="H6440"\w* \w of|strong="H3117"\w* \w old|strong="H6440"\w*. +\q2 \w Before|strong="H6440"\w* \w today|strong="H3117"\w*, \w you|strong="H6440"\w* didn’t \w hear|strong="H8085"\w* \w them|strong="H6440"\w*, +\q2 \w lest|strong="H6435"\w* \w you|strong="H6440"\w* \w should|strong="H3117"\w* say, ‘\w Behold|strong="H2009"\w*, \w I|strong="H3117"\w* \w knew|strong="H3045"\w* \w them|strong="H6440"\w*.’ +\q1 +\v 8 \w Yes|strong="H3588"\w*, \w you|strong="H3588"\w* didn’t \w hear|strong="H8085"\w*. +\q2 \w Yes|strong="H3588"\w*, \w you|strong="H3588"\w* didn’t \w know|strong="H3045"\w*. +\q2 \w Yes|strong="H3588"\w*, \w from|strong="H8085"\w* \w of|strong="H8085"\w* old \w your|strong="H8085"\w* \w ear|strong="H8085"\w* \w was|strong="H3808"\w* \w not|strong="H3808"\w* \w opened|strong="H6605"\w*, +\q1 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w knew|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* dealt \w very|strong="H3045"\w* treacherously, +\q2 \w and|strong="H8085"\w* \w were|strong="H1571"\w* \w called|strong="H7121"\w* \w a|strong="H3068"\w* \w transgressor|strong="H6586"\w* \w from|strong="H8085"\w* \w the|strong="H8085"\w* womb. +\q1 +\v 9 \w For|strong="H8034"\w* \w my|strong="H3772"\w* \w name|strong="H8034"\w*’s \w sake|strong="H4616"\w*, \w I|strong="H3772"\w* \w will|strong="H8034"\w* defer \w my|strong="H3772"\w* anger, +\q2 \w and|strong="H8034"\w* \w for|strong="H8034"\w* \w my|strong="H3772"\w* \w praise|strong="H8416"\w*, \w I|strong="H3772"\w* hold \w it|strong="H8034"\w* back \w for|strong="H8034"\w* \w you|strong="H3772"\w* +\q2 \w so|strong="H4616"\w* \w that|strong="H4616"\w* \w I|strong="H3772"\w* don’t \w cut|strong="H3772"\w* \w you|strong="H3772"\w* \w off|strong="H3772"\w*. +\q1 +\v 10 \w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w have|strong="H3808"\w* \w refined|strong="H6884"\w* \w you|strong="H3808"\w*, +\q2 \w but|strong="H3808"\w* \w not|strong="H3808"\w* \w as|strong="H3701"\w* \w silver|strong="H3701"\w*. +\q2 \w I|strong="H2009"\w* \w have|strong="H3808"\w* chosen \w you|strong="H3808"\w* \w in|strong="H3701"\w* \w the|strong="H3808"\w* \w furnace|strong="H3564"\w* \w of|strong="H3701"\w* \w affliction|strong="H6040"\w*. +\q1 +\v 11 \w For|strong="H3588"\w* \w my|strong="H5414"\w* own \w sake|strong="H4616"\w*, +\q2 \w for|strong="H3588"\w* \w my|strong="H5414"\w* own \w sake|strong="H4616"\w*, \w I|strong="H3588"\w* \w will|strong="H5414"\w* \w do|strong="H6213"\w* \w it|strong="H5414"\w*; +\q1 \w for|strong="H3588"\w* \w how|strong="H3588"\w* \w would|strong="H6213"\w* \w my|strong="H5414"\w* name \w be|strong="H3808"\w* \w profaned|strong="H2490"\w*? +\q2 \w I|strong="H3588"\w* \w will|strong="H5414"\w* \w not|strong="H3808"\w* \w give|strong="H5414"\w* \w my|strong="H5414"\w* \w glory|strong="H3519"\w* \w to|strong="H6213"\w* \w another|strong="H3808"\w*. +\b +\q1 +\v 12 “\w Listen|strong="H8085"\w* \w to|strong="H3478"\w* \w me|strong="H7121"\w*, \w O|strong="H3068"\w* \w Jacob|strong="H3290"\w*, +\q2 \w and|strong="H3478"\w* \w Israel|strong="H3478"\w* \w my|strong="H8085"\w* \w called|strong="H7121"\w*: +\q1 \w I|strong="H8085"\w* am \w he|strong="H1931"\w*. +\q2 \w I|strong="H8085"\w* am \w the|strong="H8085"\w* \w first|strong="H7223"\w*. +\q2 \w I|strong="H8085"\w* am \w also|strong="H3478"\w* \w the|strong="H8085"\w* last. +\q1 +\v 13 Yes, \w my|strong="H3027"\w* \w hand|strong="H3027"\w* \w has|strong="H3027"\w* \w laid|strong="H3245"\w* \w the|strong="H7121"\w* \w foundation|strong="H3245"\w* \w of|strong="H3027"\w* \w the|strong="H7121"\w* \w earth|strong="H8064"\w*, +\q2 \w and|strong="H8064"\w* \w my|strong="H3027"\w* \w right|strong="H3225"\w* \w hand|strong="H3027"\w* \w has|strong="H3027"\w* \w spread|strong="H2946"\w* \w out|strong="H3027"\w* \w the|strong="H7121"\w* \w heavens|strong="H8064"\w*. +\q2 \w when|strong="H3027"\w* \w I|strong="H3027"\w* \w call|strong="H7121"\w* \w to|strong="H3027"\w* \w them|strong="H3027"\w*, \w they|strong="H3027"\w* \w stand|strong="H5975"\w* \w up|strong="H5975"\w* \w together|strong="H3162"\w*. +\b +\q1 +\v 14 “\w Assemble|strong="H6908"\w* \w yourselves|strong="H3605"\w*, \w all|strong="H3605"\w* \w of|strong="H3068"\w* \w you|strong="H3605"\w*, \w and|strong="H3068"\w* \w hear|strong="H8085"\w*! +\q2 \w Who|strong="H4310"\w* \w among|strong="H4310"\w* \w them|strong="H6213"\w* \w has|strong="H3068"\w* \w declared|strong="H5046"\w* \w these|strong="H6213"\w* \w things|strong="H3605"\w*? +\q1 \w He|strong="H6213"\w* \w whom|strong="H4310"\w* \w Yahweh|strong="H3068"\w* loves \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w what|strong="H4310"\w* \w he|strong="H6213"\w* likes \w to|strong="H3068"\w* Babylon, +\q2 \w and|strong="H3068"\w* \w his|strong="H3605"\w* \w arm|strong="H2220"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w against|strong="H3068"\w* \w the|strong="H3605"\w* \w Chaldeans|strong="H3778"\w*. +\q1 +\v 15 \w I|strong="H1870"\w*, even \w I|strong="H1870"\w*, \w have|strong="H1696"\w* \w spoken|strong="H1696"\w*. +\q2 Yes, \w I|strong="H1870"\w* \w have|strong="H1696"\w* \w called|strong="H7121"\w* \w him|strong="H7121"\w*. +\q1 \w I|strong="H1870"\w* \w have|strong="H1696"\w* brought \w him|strong="H7121"\w* +\q2 \w and|strong="H1870"\w* \w he|strong="H7121"\w* \w shall|strong="H1870"\w* \w make|strong="H6743"\w* \w his|strong="H7121"\w* \w way|strong="H1870"\w* \w prosperous|strong="H6743"\w*. +\p +\v 16 “\w Come|strong="H1961"\w* \w near|strong="H7126"\w* \w to|strong="H1696"\w* \w me|strong="H7971"\w* \w and|strong="H7971"\w* \w hear|strong="H8085"\w* \w this|strong="H2063"\w*: +\b +\q1 “\w From|strong="H8085"\w* \w the|strong="H8085"\w* \w beginning|strong="H7218"\w* \w I|strong="H6258"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* \w spoken|strong="H1696"\w* \w in|strong="H8085"\w* \w secret|strong="H5643"\w*; +\q2 \w from|strong="H8085"\w* \w the|strong="H8085"\w* \w time|strong="H6256"\w* \w that|strong="H8085"\w* \w it|strong="H7126"\w* \w happened|strong="H1961"\w*, \w I|strong="H6258"\w* \w was|strong="H1961"\w* \w there|strong="H8033"\w*.” +\b +\q1 \w Now|strong="H6258"\w* \w the|strong="H8085"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H1961"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w* +\q2 \w with|strong="H1696"\w* \w his|strong="H7971"\w* \w Spirit|strong="H7307"\w*. +\b +\q1 +\v 17 \w Yahweh|strong="H3068"\w*, +\q2 \w your|strong="H3068"\w* \w Redeemer|strong="H1350"\w*, +\q2 \w the|strong="H3541"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*: +\q1 “\w I|strong="H3541"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 \w who|strong="H3068"\w* \w teaches|strong="H3925"\w* \w you|strong="H3925"\w* \w to|strong="H3478"\w* \w profit|strong="H3276"\w*, +\q2 \w who|strong="H3068"\w* \w leads|strong="H1869"\w* \w you|strong="H3925"\w* \w by|strong="H3068"\w* \w the|strong="H3541"\w* \w way|strong="H1870"\w* \w that|strong="H3068"\w* \w you|strong="H3925"\w* \w should|strong="H3068"\w* \w go|strong="H3212"\w*. +\q1 +\v 18 \w Oh|strong="H3863"\w* \w that|strong="H3863"\w* \w you|strong="H1961"\w* \w had|strong="H1961"\w* \w listened|strong="H7181"\w* \w to|strong="H1961"\w* \w my|strong="H1961"\w* \w commandments|strong="H4687"\w*! +\q2 \w Then|strong="H1961"\w* \w your|strong="H1961"\w* \w peace|strong="H7965"\w* \w would|strong="H3863"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w river|strong="H5104"\w* +\q2 \w and|strong="H6666"\w* \w your|strong="H1961"\w* \w righteousness|strong="H6666"\w* \w like|strong="H1961"\w* \w the|strong="H1961"\w* \w waves|strong="H1530"\w* \w of|strong="H5104"\w* \w the|strong="H1961"\w* \w sea|strong="H3220"\w*. +\q1 +\v 19 \w Your|strong="H6440"\w* \w offspring|strong="H2233"\w* \w also|strong="H8034"\w* \w would|strong="H8034"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w as|strong="H1961"\w* \w the|strong="H6440"\w* \w sand|strong="H2344"\w* +\q2 \w and|strong="H6440"\w* \w the|strong="H6440"\w* \w descendants|strong="H2233"\w* \w of|strong="H6440"\w* \w your|strong="H6440"\w* \w body|strong="H4578"\w* \w like|strong="H1961"\w* \w its|strong="H8045"\w* \w grains|strong="H4579"\w*. +\q2 \w His|strong="H6440"\w* \w name|strong="H8034"\w* \w would|strong="H8034"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w nor|strong="H3808"\w* \w destroyed|strong="H8045"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*.” +\b +\q1 +\v 20 \w Leave|strong="H3318"\w* Babylon! +\q2 \w Flee|strong="H1272"\w* \w from|strong="H3318"\w* \w the|strong="H8085"\w* \w Chaldeans|strong="H3778"\w*! +\q1 \w With|strong="H3068"\w* \w the|strong="H8085"\w* \w sound|strong="H6963"\w* \w of|strong="H3068"\w* \w joyful|strong="H7440"\w* \w shouting|strong="H7440"\w* \w announce|strong="H5046"\w* \w this|strong="H2063"\w*, +\q2 \w tell|strong="H5046"\w* \w it|strong="H5704"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H8085"\w* \w end|strong="H7097"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* earth; +\q2 \w say|strong="H6963"\w*, “\w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w redeemed|strong="H1350"\w* \w his|strong="H3068"\w* \w servant|strong="H5650"\w* \w Jacob|strong="H3290"\w*!” +\q1 +\v 21 \w They|strong="H3808"\w* didn’t \w thirst|strong="H6770"\w* when \w he|strong="H3808"\w* \w led|strong="H3212"\w* them \w through|strong="H1234"\w* \w the|strong="H3808"\w* \w deserts|strong="H2723"\w*. +\q2 \w He|strong="H3808"\w* caused \w the|strong="H3808"\w* \w waters|strong="H4325"\w* \w to|strong="H3212"\w* \w flow|strong="H5140"\w* \w out|strong="H5140"\w* \w of|strong="H4325"\w* \w the|strong="H3808"\w* \w rock|strong="H6697"\w* \w for|strong="H4325"\w* them. +\q2 \w He|strong="H3808"\w* also \w split|strong="H1234"\w* \w the|strong="H3808"\w* \w rock|strong="H6697"\w* \w and|strong="H3212"\w* \w the|strong="H3808"\w* \w waters|strong="H4325"\w* \w gushed|strong="H4325"\w* \w out|strong="H5140"\w*. +\b +\q1 +\v 22 “\w There|strong="H7965"\w* \w is|strong="H3068"\w* \w no|strong="H7563"\w* \w peace|strong="H7965"\w*”, says \w Yahweh|strong="H3068"\w*, “\w for|strong="H3068"\w* \w the|strong="H3068"\w* \w wicked|strong="H7563"\w*.” +\c 49 +\q1 +\v 1 \w Listen|strong="H8085"\w*, islands, \w to|strong="H3068"\w* \w me|strong="H7121"\w*. +\q2 \w Listen|strong="H8085"\w*, \w you|strong="H7121"\w* \w peoples|strong="H3816"\w*, \w from|strong="H8085"\w* \w afar|strong="H7350"\w*: +\q1 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w called|strong="H7121"\w* \w me|strong="H7121"\w* \w from|strong="H8085"\w* \w the|strong="H8085"\w* \w womb|strong="H4578"\w*; +\q2 \w from|strong="H8085"\w* \w the|strong="H8085"\w* \w inside|strong="H3068"\w* \w of|strong="H3068"\w* \w my|strong="H8085"\w* mother, \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w mentioned|strong="H2142"\w* \w my|strong="H8085"\w* \w name|strong="H8034"\w*. +\q1 +\v 2 \w He|strong="H3027"\w* \w has|strong="H3027"\w* \w made|strong="H7760"\w* \w my|strong="H7760"\w* \w mouth|strong="H6310"\w* \w like|strong="H6738"\w* \w a|strong="H3068"\w* \w sharp|strong="H2299"\w* \w sword|strong="H2719"\w*. +\q2 \w He|strong="H3027"\w* \w has|strong="H3027"\w* \w hidden|strong="H5641"\w* \w me|strong="H7760"\w* \w in|strong="H3027"\w* \w the|strong="H7760"\w* \w shadow|strong="H6738"\w* \w of|strong="H3027"\w* \w his|strong="H7760"\w* \w hand|strong="H3027"\w*. +\q1 \w He|strong="H3027"\w* \w has|strong="H3027"\w* \w made|strong="H7760"\w* \w me|strong="H7760"\w* \w a|strong="H3068"\w* \w polished|strong="H1305"\w* \w shaft|strong="H2671"\w*. +\q2 \w He|strong="H3027"\w* \w has|strong="H3027"\w* kept \w me|strong="H7760"\w* \w close|strong="H5641"\w* \w in|strong="H3027"\w* \w his|strong="H7760"\w* quiver. +\q1 +\v 3 \w He|strong="H3478"\w* said \w to|strong="H3478"\w* \w me|strong="H5650"\w*, “\w You|strong="H3478"\w* \w are|strong="H3478"\w* \w my|strong="H5650"\w* \w servant|strong="H5650"\w*, +\q2 \w Israel|strong="H3478"\w*, \w in|strong="H3478"\w* whom \w I|strong="H5650"\w* \w will|strong="H3478"\w* \w be|strong="H3478"\w* \w glorified|strong="H6286"\w*.” +\q1 +\v 4 \w But|strong="H3068"\w* \w I|strong="H3068"\w* said, “\w I|strong="H3068"\w* \w have|strong="H3068"\w* \w labored|strong="H3021"\w* \w in|strong="H3068"\w* \w vain|strong="H1892"\w*. +\q2 \w I|strong="H3068"\w* \w have|strong="H3068"\w* \w spent|strong="H3615"\w* \w my|strong="H3068"\w* \w strength|strong="H3581"\w* \w in|strong="H3068"\w* \w vain|strong="H1892"\w* \w for|strong="H3068"\w* \w nothing|strong="H8414"\w*; +\q1 \w yet|strong="H3068"\w* surely \w the|strong="H3068"\w* \w justice|strong="H4941"\w* \w due|strong="H4941"\w* \w to|strong="H3068"\w* \w me|strong="H3615"\w* \w is|strong="H3068"\w* \w with|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* \w my|strong="H3068"\w* \w reward|strong="H6468"\w* \w with|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*.” +\b +\q1 +\v 5 \w Now|strong="H6258"\w* \w Yahweh|strong="H3068"\w*, \w he|strong="H3068"\w* \w who|strong="H3068"\w* \w formed|strong="H3335"\w* \w me|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H3068"\w* womb \w to|strong="H7725"\w* \w be|strong="H1961"\w* \w his|strong="H3068"\w* \w servant|strong="H5650"\w*, +\q2 says \w to|strong="H7725"\w* \w bring|strong="H7725"\w* \w Jacob|strong="H3290"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w him|strong="H7725"\w*, +\q2 \w and|strong="H3478"\w* \w to|strong="H7725"\w* gather \w Israel|strong="H3478"\w* \w to|strong="H7725"\w* \w him|strong="H7725"\w*, +\q2 \w for|strong="H3068"\w* \w I|strong="H6258"\w* \w am|strong="H1961"\w* \w honorable|strong="H3513"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*, +\q2 \w and|strong="H3478"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w become|strong="H1961"\w* \w my|strong="H3068"\w* \w strength|strong="H5797"\w*. +\q1 +\v 6 \w Indeed|strong="H7725"\w*, \w he|strong="H5704"\w* says, “\w It|strong="H5414"\w* \w is|strong="H3478"\w* \w too|strong="H1961"\w* \w light|strong="H7043"\w* \w a|strong="H3068"\w* \w thing|strong="H7043"\w* \w that|strong="H1471"\w* \w you|strong="H5414"\w* \w should|strong="H3478"\w* \w be|strong="H1961"\w* \w my|strong="H5414"\w* \w servant|strong="H5650"\w* \w to|strong="H5704"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w the|strong="H5414"\w* \w tribes|strong="H7626"\w* \w of|strong="H7626"\w* \w Jacob|strong="H3290"\w*, +\q2 \w and|strong="H6965"\w* \w to|strong="H5704"\w* \w restore|strong="H7725"\w* \w the|strong="H5414"\w* \w preserved|strong="H5336"\w* \w of|strong="H7626"\w* \w Israel|strong="H3478"\w*. +\q1 \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w also|strong="H3478"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w as|strong="H5704"\w* \w a|strong="H3068"\w* \w light|strong="H7043"\w* \w to|strong="H5704"\w* \w the|strong="H5414"\w* \w nations|strong="H1471"\w*, +\q2 \w that|strong="H1471"\w* \w you|strong="H5414"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w my|strong="H5414"\w* \w salvation|strong="H3444"\w* \w to|strong="H5704"\w* \w the|strong="H5414"\w* \w end|strong="H7097"\w* \w of|strong="H7626"\w* \w the|strong="H5414"\w* earth.” +\q1 +\v 7 \w Yahweh|strong="H3068"\w*, \w the|strong="H7200"\w* \w Redeemer|strong="H1350"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w and|strong="H6965"\w* \w his|strong="H3068"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w*, +\q2 \w says|strong="H3541"\w* \w to|strong="H3478"\w* \w him|strong="H7200"\w* whom \w man|strong="H5315"\w* \w despises|strong="H8581"\w*, \w to|strong="H3478"\w* \w him|strong="H7200"\w* whom \w the|strong="H7200"\w* \w nation|strong="H1471"\w* \w abhors|strong="H8581"\w*, \w to|strong="H3478"\w* \w a|strong="H3068"\w* \w servant|strong="H5650"\w* \w of|strong="H4428"\w* \w rulers|strong="H8269"\w*: +\q1 “\w Kings|strong="H4428"\w* \w shall|strong="H3068"\w* \w see|strong="H7200"\w* \w and|strong="H6965"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w*, +\q2 \w princes|strong="H8269"\w*, \w and|strong="H6965"\w* \w they|strong="H3068"\w* \w shall|strong="H3068"\w* \w worship|strong="H7812"\w*, +\q2 \w because|strong="H4616"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* faithful, \w even|strong="H3068"\w* \w the|strong="H7200"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w who|strong="H3068"\w* \w has|strong="H3068"\w* chosen \w you|strong="H7200"\w*.” +\b +\q1 +\v 8 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w I|strong="H3117"\w* \w have|strong="H3068"\w* \w answered|strong="H6030"\w* \w you|strong="H5414"\w* \w in|strong="H3068"\w* \w an|strong="H5414"\w* \w acceptable|strong="H7522"\w* \w time|strong="H6256"\w*. +\q2 \w I|strong="H3117"\w* \w have|strong="H3068"\w* \w helped|strong="H5826"\w* \w you|strong="H5414"\w* \w in|strong="H3068"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w salvation|strong="H3444"\w*. +\q1 \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w preserve|strong="H5341"\w* \w you|strong="H5414"\w* \w and|strong="H6965"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w*, +\q2 \w to|strong="H3068"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w the|strong="H5414"\w* \w land|strong="H5159"\w*, \w to|strong="H3068"\w* \w make|strong="H5414"\w* \w them|strong="H5414"\w* \w inherit|strong="H5157"\w* \w the|strong="H5414"\w* \w desolate|strong="H8074"\w* \w heritage|strong="H5159"\w*, +\q1 +\v 9 saying \w to|strong="H3318"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H1870"\w* bound, ‘\w Come|strong="H3318"\w* \w out|strong="H3318"\w*!’; +\q2 \w to|strong="H3318"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H1870"\w* \w in|strong="H5921"\w* \w darkness|strong="H2822"\w*, ‘\w Show|strong="H1540"\w* \w yourselves|strong="H3605"\w*!’ +\q1 “\w They|strong="H5921"\w* \w shall|strong="H2822"\w* \w feed|strong="H7462"\w* \w along|strong="H5921"\w* \w the|strong="H3605"\w* \w paths|strong="H1870"\w*, +\q2 \w and|strong="H1870"\w* \w their|strong="H3605"\w* \w pasture|strong="H4830"\w* \w shall|strong="H2822"\w* \w be|strong="H1870"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* treeless \w heights|strong="H8205"\w*. +\q1 +\v 10 \w They|strong="H3588"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w hunger|strong="H7456"\w* \w nor|strong="H3808"\w* \w thirst|strong="H6770"\w*; +\q2 \w neither|strong="H3808"\w* \w shall|strong="H3808"\w* \w the|strong="H5921"\w* \w heat|strong="H8273"\w* \w nor|strong="H3808"\w* \w sun|strong="H8121"\w* \w strike|strong="H5221"\w* \w them|strong="H5921"\w*, +\q2 \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w who|strong="H3588"\w* \w has|strong="H3588"\w* \w mercy|strong="H7355"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w will|strong="H3808"\w* \w lead|strong="H5090"\w* \w them|strong="H5921"\w*. +\q2 \w He|strong="H3588"\w* \w will|strong="H3808"\w* \w guide|strong="H5095"\w* \w them|strong="H5921"\w* \w by|strong="H5921"\w* \w springs|strong="H4002"\w* \w of|strong="H4325"\w* \w water|strong="H4325"\w*. +\q1 +\v 11 \w I|strong="H7760"\w* \w will|strong="H2022"\w* \w make|strong="H7760"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w mountains|strong="H2022"\w* \w a|strong="H3068"\w* \w road|strong="H1870"\w*, +\q2 \w and|strong="H1870"\w* \w my|strong="H3605"\w* \w highways|strong="H4546"\w* \w shall|strong="H2022"\w* \w be|strong="H1870"\w* \w exalted|strong="H7311"\w*. +\q1 +\v 12 \w Behold|strong="H2009"\w*, these \w shall|strong="H6828"\w* \w come|strong="H7350"\w* \w from|strong="H7350"\w* \w afar|strong="H7350"\w*, +\q2 \w and|strong="H3220"\w* \w behold|strong="H2009"\w*, these \w from|strong="H7350"\w* \w the|strong="H2009"\w* \w north|strong="H6828"\w* \w and|strong="H3220"\w* \w from|strong="H7350"\w* \w the|strong="H2009"\w* \w west|strong="H3220"\w*, +\q2 \w and|strong="H3220"\w* these \w from|strong="H7350"\w* \w the|strong="H2009"\w* land \w of|strong="H3220"\w* \w Sinim|strong="H5515"\w*.” +\q1 +\v 13 \w Sing|strong="H7442"\w*, \w heavens|strong="H8064"\w*, \w and|strong="H3068"\w* \w be|strong="H3068"\w* \w joyful|strong="H7440"\w*, \w earth|strong="H8064"\w*! +\q2 \w Break|strong="H6476"\w* \w out|strong="H7442"\w* \w into|strong="H6476"\w* \w singing|strong="H7440"\w*, \w mountains|strong="H2022"\w*! +\q1 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w comforted|strong="H5162"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w have|strong="H7355"\w* \w compassion|strong="H7355"\w* \w on|strong="H3068"\w* \w his|strong="H3068"\w* \w afflicted|strong="H6041"\w*. +\b +\q1 +\v 14 \w But|strong="H5800"\w* \w Zion|strong="H6726"\w* said, “\w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w me|strong="H7911"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w Lord|strong="H3068"\w* \w has|strong="H3068"\w* \w forgotten|strong="H7911"\w* \w me|strong="H7911"\w*.” +\q1 +\v 15 “\w Can|strong="H3808"\w* \w a|strong="H3068"\w* woman \w forget|strong="H7911"\w* \w her|strong="H7911"\w* \w nursing|strong="H5764"\w* \w child|strong="H1121"\w*, +\q2 \w that|strong="H1121"\w* \w she|strong="H1571"\w* should \w not|strong="H3808"\w* \w have|strong="H7355"\w* \w compassion|strong="H7355"\w* \w on|strong="H7355"\w* \w the|strong="H7911"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w her|strong="H7911"\w* womb? +\q1 \w Yes|strong="H1571"\w*, these \w may|strong="H1121"\w* \w forget|strong="H7911"\w*, +\q2 \w yet|strong="H1571"\w* \w I|strong="H3808"\w* \w will|strong="H1571"\w* \w not|strong="H3808"\w* \w forget|strong="H7911"\w* \w you|strong="H3808"\w*! +\q1 +\v 16 \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w have|strong="H5921"\w* engraved \w you|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w palms|strong="H3709"\w* \w of|strong="H2346"\w* \w my|strong="H5921"\w* \w hands|strong="H3709"\w*. +\q2 \w Your|strong="H5921"\w* \w walls|strong="H2346"\w* \w are|strong="H3709"\w* \w continually|strong="H8548"\w* \w before|strong="H5048"\w* \w me|strong="H5921"\w*. +\q1 +\v 17 \w Your|strong="H4480"\w* \w children|strong="H1121"\w* \w hurry|strong="H4116"\w*. +\q2 \w Your|strong="H4480"\w* \w destroyers|strong="H2040"\w* \w and|strong="H1121"\w* \w those|strong="H4480"\w* \w who|strong="H1121"\w* \w devastated|strong="H2717"\w* \w you|strong="H4480"\w* \w will|strong="H1121"\w* \w leave|strong="H3318"\w* \w you|strong="H4480"\w*. +\q1 +\v 18 \w Lift|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w* \w all|strong="H3605"\w* \w around|strong="H5439"\w*, \w and|strong="H3068"\w* \w see|strong="H7200"\w*: +\q2 \w all|strong="H3605"\w* \w these|strong="H3605"\w* \w gather|strong="H6908"\w* \w themselves|strong="H6908"\w* \w together|strong="H6908"\w*, \w and|strong="H3068"\w* come \w to|strong="H3068"\w* \w you|strong="H3588"\w*. +\q1 \w As|strong="H3068"\w* \w I|strong="H3588"\w* \w live|strong="H2416"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w surely|strong="H3588"\w* \w clothe|strong="H3847"\w* \w yourself|strong="H3847"\w* \w with|strong="H3847"\w* \w them|strong="H7200"\w* \w all|strong="H3605"\w* \w as|strong="H3068"\w* \w with|strong="H3847"\w* \w an|strong="H5375"\w* \w ornament|strong="H5716"\w*, +\q2 \w and|strong="H3068"\w* \w dress|strong="H3847"\w* \w yourself|strong="H3847"\w* \w with|strong="H3847"\w* \w them|strong="H7200"\w*, \w like|strong="H3068"\w* \w a|strong="H3068"\w* \w bride|strong="H3618"\w*. +\q1 +\v 19 “\w For|strong="H3588"\w*, \w as|strong="H3588"\w* \w for|strong="H3588"\w* \w your|strong="H3588"\w* \w waste|strong="H2723"\w* \w and|strong="H3427"\w* \w your|strong="H3588"\w* \w desolate|strong="H8074"\w* \w places|strong="H2723"\w*, +\q2 \w and|strong="H3427"\w* \w your|strong="H3588"\w* land \w that|strong="H3588"\w* \w has|strong="H3588"\w* \w been|strong="H6258"\w* \w destroyed|strong="H1104"\w*, +\q1 \w surely|strong="H3588"\w* \w now|strong="H6258"\w* \w that|strong="H3588"\w* land \w will|strong="H3588"\w* \w be|strong="H6258"\w* too small \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w inhabitants|strong="H3427"\w*, +\q2 \w and|strong="H3427"\w* \w those|strong="H3427"\w* \w who|strong="H3427"\w* \w swallowed|strong="H1104"\w* \w you|strong="H3588"\w* \w up|strong="H1104"\w* \w will|strong="H3588"\w* \w be|strong="H6258"\w* \w far|strong="H7368"\w* \w away|strong="H7368"\w*. +\q1 +\v 20 \w The|strong="H5066"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w your|strong="H5066"\w* bereavement \w will|strong="H1121"\w* say \w in|strong="H3427"\w* \w your|strong="H5066"\w* ears, +\q2 ‘\w This|strong="H1121"\w* \w place|strong="H4725"\w* \w is|strong="H1121"\w* \w too|strong="H5750"\w* \w small|strong="H6862"\w* \w for|strong="H3427"\w* \w me|strong="H5066"\w*. +\q2 \w Give|strong="H5066"\w* \w me|strong="H5066"\w* \w a|strong="H3068"\w* \w place|strong="H4725"\w* \w to|strong="H1121"\w* \w live|strong="H3427"\w* \w in|strong="H3427"\w*.’ +\q1 +\v 21 Then \w you|strong="H3205"\w* \w will|strong="H4310"\w* say \w in|strong="H7604"\w* \w your|strong="H5493"\w* \w heart|strong="H3824"\w*, ‘\w Who|strong="H4310"\w* \w has|strong="H4310"\w* conceived \w these|strong="H1992"\w* \w for|strong="H3205"\w* \w me|strong="H3205"\w*, \w since|strong="H2005"\w* \w I|strong="H2005"\w* \w have|strong="H7604"\w* \w been|strong="H7921"\w* \w bereaved|strong="H7921"\w* \w of|strong="H3205"\w* \w my|strong="H5493"\w* \w children|strong="H7921"\w* +\q2 \w and|strong="H3824"\w* \w am|strong="H2005"\w* \w alone|strong="H7604"\w*, \w an|strong="H7604"\w* \w exile|strong="H1473"\w*, \w and|strong="H3824"\w* wandering \w back|strong="H5493"\w* \w and|strong="H3824"\w* \w forth|strong="H3205"\w*? +\q1 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* \w brought|strong="H3205"\w* \w these|strong="H1992"\w* \w up|strong="H1431"\w*? +\q2 \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w was|strong="H3824"\w* \w left|strong="H7604"\w* \w alone|strong="H7604"\w*. \w Where|strong="H1992"\w* \w were|strong="H1992"\w* \w these|strong="H1992"\w*?’” +\b +\q1 +\v 22 \w The|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w Behold|strong="H2009"\w*, \w I|strong="H3541"\w* \w will|strong="H1471"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w my|strong="H5921"\w* \w hand|strong="H3027"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*, +\q2 \w and|strong="H1121"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w my|strong="H5921"\w* \w banner|strong="H5251"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w peoples|strong="H5971"\w*. +\q1 \w They|strong="H5921"\w* \w shall|strong="H1121"\w* \w bring|strong="H5375"\w* \w your|strong="H5921"\w* \w sons|strong="H1121"\w* \w in|strong="H5921"\w* \w their|strong="H5375"\w* \w bosom|strong="H2684"\w*, +\q2 \w and|strong="H1121"\w* \w your|strong="H5921"\w* \w daughters|strong="H1323"\w* \w shall|strong="H1121"\w* \w be|strong="H3027"\w* \w carried|strong="H5375"\w* \w on|strong="H5921"\w* \w their|strong="H5375"\w* \w shoulders|strong="H3802"\w*. +\q1 +\v 23 \w Kings|strong="H4428"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w your|strong="H3068"\w* foster fathers, +\q2 \w and|strong="H3068"\w* \w their|strong="H3068"\w* \w queens|strong="H8282"\w* \w your|strong="H3068"\w* \w nursing|strong="H3243"\w* \w mothers|strong="H3243"\w*. +\q1 \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w bow|strong="H7812"\w* \w down|strong="H7812"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w* \w with|strong="H3068"\w* \w their|strong="H3068"\w* faces \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w earth|strong="H6083"\w*, +\q2 \w and|strong="H3068"\w* \w lick|strong="H3897"\w* \w the|strong="H3588"\w* \w dust|strong="H6083"\w* \w of|strong="H4428"\w* \w your|strong="H3068"\w* \w feet|strong="H7272"\w*. +\q1 \w Then|strong="H1961"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w*; +\q2 \w and|strong="H3068"\w* \w those|strong="H1961"\w* \w who|strong="H3068"\w* \w wait|strong="H6960"\w* \w for|strong="H3588"\w* \w me|strong="H1961"\w* won’t \w be|strong="H1961"\w* disappointed.” +\b +\q1 +\v 24 \w Shall|strong="H6662"\w* \w the|strong="H3947"\w* \w plunder|strong="H4455"\w* \w be|strong="H6662"\w* \w taken|strong="H3947"\w* \w from|strong="H3947"\w* \w the|strong="H3947"\w* \w mighty|strong="H1368"\w*, +\q2 or \w the|strong="H3947"\w* \w lawful|strong="H6662"\w* \w captives|strong="H7628"\w* \w be|strong="H6662"\w* \w delivered|strong="H4422"\w*? +\q1 +\v 25 \w But|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w Even|strong="H1571"\w* \w the|strong="H3588"\w* \w captives|strong="H7628"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w mighty|strong="H1368"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w taken|strong="H3947"\w* \w away|strong="H3947"\w*, +\q2 \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w plunder|strong="H4455"\w* retrieved \w from|strong="H1121"\w* \w the|strong="H3588"\w* fierce, +\q1 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w contend|strong="H7378"\w* \w with|strong="H3068"\w* \w him|strong="H3947"\w* \w who|strong="H3068"\w* \w contends|strong="H3401"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w* +\q2 \w and|strong="H1121"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w save|strong="H3467"\w* \w your|strong="H3068"\w* \w children|strong="H1121"\w*. +\q1 +\v 26 \w I|strong="H3588"\w* \w will|strong="H3068"\w* feed \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w oppress|strong="H3238"\w* \w you|strong="H3588"\w* \w with|strong="H3068"\w* \w their|strong="H3605"\w* own \w flesh|strong="H1320"\w*; +\q2 \w and|strong="H3068"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w drunk|strong="H7937"\w* \w on|strong="H3068"\w* \w their|strong="H3605"\w* own \w blood|strong="H1818"\w*, \w as|strong="H3068"\w* \w with|strong="H3068"\w* \w sweet|strong="H6071"\w* \w wine|strong="H6071"\w*. +\q1 \w Then|strong="H3588"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w* \w shall|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w am|strong="H3068"\w* \w your|strong="H3068"\w* \w Savior|strong="H3467"\w* +\q2 \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w Redeemer|strong="H1350"\w*, \w the|strong="H3605"\w* Mighty \w One|strong="H3605"\w* \w of|strong="H3068"\w* \w Jacob|strong="H3290"\w*.” +\c 50 +\q1 +\v 1 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w Where|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H3541"\w* \w bill|strong="H5612"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* mother’s \w divorce|strong="H7971"\w*, \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w I|strong="H2005"\w* \w have|strong="H3068"\w* \w put|strong="H7971"\w* \w her|strong="H7971"\w* \w away|strong="H7971"\w*? +\q2 \w Or|strong="H4376"\w* \w to|strong="H3068"\w* \w which|strong="H3068"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w creditors|strong="H5383"\w* \w have|strong="H3068"\w* \w I|strong="H2005"\w* \w sold|strong="H4376"\w* \w you|strong="H7971"\w*? +\q1 \w Behold|strong="H2005"\w*, \w you|strong="H7971"\w* \w were|strong="H5612"\w* \w sold|strong="H4376"\w* \w for|strong="H7971"\w* \w your|strong="H3068"\w* \w iniquities|strong="H5771"\w*, +\q2 \w and|strong="H3068"\w* \w your|strong="H3068"\w* mother \w was|strong="H3068"\w* \w put|strong="H7971"\w* \w away|strong="H7971"\w* \w for|strong="H7971"\w* \w your|strong="H3068"\w* \w transgressions|strong="H6588"\w*. +\q1 +\v 2 \w Why|strong="H4069"\w*, \w when|strong="H7114"\w* \w I|strong="H2005"\w* \w came|strong="H4325"\w*, \w was|strong="H3027"\w* there \w no|strong="H7760"\w* \w one|strong="H3027"\w*? +\q2 \w When|strong="H7114"\w* \w I|strong="H2005"\w* \w called|strong="H7121"\w*, \w why|strong="H4069"\w* \w was|strong="H3027"\w* there \w no|strong="H7760"\w* \w one|strong="H3027"\w* \w to|strong="H4191"\w* \w answer|strong="H6030"\w*? +\q1 \w Is|strong="H3027"\w* \w my|strong="H7760"\w* \w hand|strong="H3027"\w* \w shortened|strong="H7114"\w* \w at|strong="H4191"\w* \w all|strong="H5337"\w*, \w that|strong="H7121"\w* \w it|strong="H7760"\w* can’t \w redeem|strong="H6304"\w*? +\q2 \w Or|strong="H4191"\w* \w have|strong="H3027"\w* \w I|strong="H2005"\w* \w no|strong="H7760"\w* \w power|strong="H3027"\w* \w to|strong="H4191"\w* \w deliver|strong="H5337"\w*? +\q1 \w Behold|strong="H2005"\w*, \w at|strong="H4191"\w* \w my|strong="H7760"\w* \w rebuke|strong="H1606"\w* \w I|strong="H2005"\w* \w dry|strong="H2717"\w* \w up|strong="H7760"\w* \w the|strong="H7760"\w* \w sea|strong="H3220"\w*. +\q2 \w I|strong="H2005"\w* \w make|strong="H7760"\w* \w the|strong="H7760"\w* \w rivers|strong="H5104"\w* \w a|strong="H3068"\w* \w wilderness|strong="H4057"\w*. +\q2 \w Their|strong="H7760"\w* \w fish|strong="H1710"\w* stink \w because|strong="H3027"\w* there \w is|strong="H3027"\w* \w no|strong="H7760"\w* \w water|strong="H4325"\w*, \w and|strong="H6030"\w* \w die|strong="H4191"\w* \w of|strong="H3027"\w* \w thirst|strong="H6772"\w*. +\q1 +\v 3 \w I|strong="H7760"\w* \w clothe|strong="H3847"\w* \w the|strong="H7760"\w* \w heavens|strong="H8064"\w* \w with|strong="H3847"\w* \w blackness|strong="H6940"\w*. +\q2 \w I|strong="H7760"\w* \w make|strong="H7760"\w* \w sackcloth|strong="H8242"\w* \w their|strong="H7760"\w* \w covering|strong="H3682"\w*.” +\b +\q1 +\v 4 \w The|strong="H8085"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H1697"\w* \w given|strong="H5414"\w* \w me|strong="H5414"\w* \w the|strong="H8085"\w* \w tongue|strong="H3956"\w* \w of|strong="H1697"\w* \w those|strong="H8085"\w* \w who|strong="H3045"\w* \w are|strong="H1697"\w* \w taught|strong="H3045"\w*, +\q2 \w that|strong="H3045"\w* \w I|strong="H5414"\w* \w may|strong="H5414"\w* \w know|strong="H3045"\w* \w how|strong="H3045"\w* \w to|strong="H5414"\w* \w sustain|strong="H5790"\w* \w with|strong="H1697"\w* \w words|strong="H1697"\w* \w him|strong="H5414"\w* \w who|strong="H3045"\w* \w is|strong="H1697"\w* \w weary|strong="H3287"\w*. +\q1 \w He|strong="H5414"\w* \w awakens|strong="H5782"\w* \w morning|strong="H1242"\w* \w by|strong="H1242"\w* \w morning|strong="H1242"\w*, +\q2 \w he|strong="H5414"\w* \w awakens|strong="H5782"\w* \w my|strong="H8085"\w* \w ear|strong="H8085"\w* \w to|strong="H5414"\w* \w hear|strong="H8085"\w* \w as|strong="H1697"\w* \w those|strong="H8085"\w* \w who|strong="H3045"\w* \w are|strong="H1697"\w* \w taught|strong="H3045"\w*. +\q1 +\v 5 \w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* has \w opened|strong="H6605"\w* \w my|strong="H6605"\w* ear. +\q2 \w I|strong="H3808"\w* \w was|strong="H3808"\w* \w not|strong="H3808"\w* \w rebellious|strong="H4784"\w*. +\q2 \w I|strong="H3808"\w* \w have|strong="H3808"\w* \w not|strong="H3808"\w* \w turned|strong="H5472"\w* \w back|strong="H5472"\w*. +\q1 +\v 6 \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w my|strong="H5414"\w* \w back|strong="H1460"\w* \w to|strong="H5414"\w* those \w who|strong="H5221"\w* \w beat|strong="H5221"\w* \w me|strong="H5414"\w*, +\q2 \w and|strong="H6440"\w* \w my|strong="H5414"\w* \w cheeks|strong="H3895"\w* \w to|strong="H5414"\w* those \w who|strong="H5221"\w* plucked \w off|strong="H4803"\w* \w the|strong="H6440"\w* \w hair|strong="H4803"\w*. +\q2 \w I|strong="H5414"\w* didn’t \w hide|strong="H5641"\w* \w my|strong="H5414"\w* \w face|strong="H6440"\w* \w from|strong="H6440"\w* \w shame|strong="H3639"\w* \w and|strong="H6440"\w* \w spitting|strong="H7536"\w*. +\q1 +\v 7 \w For|strong="H3588"\w* \w the|strong="H6440"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3808"\w* \w help|strong="H5826"\w* \w me|strong="H6440"\w*. +\q2 \w Therefore|strong="H3651"\w* \w I|strong="H3588"\w* \w have|strong="H3045"\w* \w not|strong="H3808"\w* \w been|strong="H3808"\w* \w confounded|strong="H3637"\w*. +\q1 \w Therefore|strong="H3651"\w* \w I|strong="H3588"\w* \w have|strong="H3045"\w* \w set|strong="H7760"\w* \w my|strong="H7760"\w* \w face|strong="H6440"\w* \w like|strong="H3651"\w* \w a|strong="H3068"\w* \w flint|strong="H2496"\w*, +\q2 \w and|strong="H6440"\w* \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* won’t \w be|strong="H3808"\w* disappointed. +\q1 +\v 8 \w He|strong="H4310"\w* \w who|strong="H4310"\w* \w justifies|strong="H6663"\w* \w me|strong="H5975"\w* \w is|strong="H4310"\w* \w near|strong="H5066"\w*. +\q2 \w Who|strong="H4310"\w* \w will|strong="H4310"\w* \w bring|strong="H5066"\w* charges \w against|strong="H7378"\w* \w me|strong="H5975"\w*? +\q1 Let us \w stand|strong="H5975"\w* \w up|strong="H5975"\w* \w together|strong="H3162"\w*. +\q2 \w Who|strong="H4310"\w* \w is|strong="H4310"\w* \w my|strong="H7378"\w* \w adversary|strong="H1167"\w*? +\q2 Let \w him|strong="H5975"\w* \w come|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H5066"\w* \w me|strong="H5975"\w*. +\q1 +\v 9 \w Behold|strong="H2005"\w*, \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H4310"\w* \w help|strong="H5826"\w* \w me|strong="H7561"\w*! +\q2 \w Who|strong="H4310"\w* \w is|strong="H1931"\w* \w he|strong="H1931"\w* \w who|strong="H4310"\w* \w will|strong="H4310"\w* \w condemn|strong="H7561"\w* \w me|strong="H7561"\w*? +\q1 \w Behold|strong="H2005"\w*, \w they|strong="H1931"\w* \w will|strong="H4310"\w* \w all|strong="H3605"\w* grow \w old|strong="H1086"\w* \w like|strong="H6211"\w* \w a|strong="H3068"\w* garment. +\q2 \w The|strong="H3605"\w* moths \w will|strong="H4310"\w* eat \w them|strong="H1086"\w* \w up|strong="H3605"\w*. +\b +\q1 +\v 10 \w Who|strong="H4310"\w* \w among|strong="H8034"\w* \w you|strong="H6963"\w* \w fears|strong="H3373"\w* \w Yahweh|strong="H3068"\w* +\q2 \w and|strong="H1980"\w* \w obeys|strong="H8085"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w servant|strong="H5650"\w*? +\q1 \w He|strong="H3068"\w* \w who|strong="H4310"\w* \w walks|strong="H1980"\w* \w in|strong="H1980"\w* \w darkness|strong="H2825"\w* +\q2 \w and|strong="H1980"\w* \w has|strong="H3068"\w* \w no|strong="H4310"\w* \w light|strong="H5051"\w*, +\q1 \w let|strong="H1980"\w* \w him|strong="H6963"\w* \w trust|strong="H8172"\w* \w in|strong="H1980"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*, +\q2 \w and|strong="H1980"\w* \w rely|strong="H8172"\w* \w on|strong="H1980"\w* \w his|strong="H3068"\w* \w God|strong="H3068"\w*. +\q1 +\v 11 \w Behold|strong="H2005"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* \w who|strong="H3605"\w* \w kindle|strong="H1197"\w* \w a|strong="H3068"\w* fire, +\q2 \w who|strong="H3605"\w* adorn \w yourselves|strong="H3027"\w* \w with|strong="H7901"\w* torches \w around|strong="H3027"\w* \w yourselves|strong="H3027"\w*, +\q1 \w walk|strong="H3212"\w* \w in|strong="H3212"\w* \w the|strong="H3605"\w* flame \w of|strong="H3027"\w* \w your|strong="H3605"\w* fire, +\q2 \w and|strong="H3027"\w* among \w the|strong="H3605"\w* torches \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w have|strong="H1961"\w* \w kindled|strong="H1197"\w*. +\q1 \w You|strong="H3605"\w* \w will|strong="H1961"\w* \w have|strong="H1961"\w* \w this|strong="H2063"\w* \w from|strong="H3027"\w* \w my|strong="H3605"\w* \w hand|strong="H3027"\w*: +\q2 \w you|strong="H3605"\w* \w will|strong="H1961"\w* \w lie|strong="H7901"\w* \w down|strong="H7901"\w* \w in|strong="H3212"\w* \w sorrow|strong="H4620"\w*. +\c 51 +\q1 +\v 1 “\w Listen|strong="H8085"\w* \w to|strong="H3068"\w* \w me|strong="H7291"\w*, \w you|strong="H7291"\w* \w who|strong="H3068"\w* \w follow|strong="H7291"\w* \w after|strong="H7291"\w* \w righteousness|strong="H6664"\w*, +\q2 \w you|strong="H7291"\w* \w who|strong="H3068"\w* \w seek|strong="H1245"\w* \w Yahweh|strong="H3068"\w*. +\q1 \w Look|strong="H5027"\w* \w to|strong="H3068"\w* \w the|strong="H8085"\w* \w rock|strong="H6697"\w* \w you|strong="H7291"\w* \w were|strong="H7291"\w* \w cut|strong="H2672"\w* \w from|strong="H8085"\w*, +\q2 \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w the|strong="H8085"\w* \w quarry|strong="H2672"\w* \w you|strong="H7291"\w* \w were|strong="H7291"\w* \w dug|strong="H5365"\w* \w from|strong="H8085"\w*. +\q1 +\v 2 \w Look|strong="H5027"\w* \w to|strong="H7121"\w* Abraham \w your|strong="H3588"\w* father, +\q2 \w and|strong="H5027"\w* \w to|strong="H7121"\w* \w Sarah|strong="H8283"\w* \w who|strong="H3588"\w* bore \w you|strong="H3588"\w*; +\q1 \w for|strong="H3588"\w* \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w was|strong="H8283"\w* \w but|strong="H3588"\w* \w one|strong="H3588"\w* \w I|strong="H3588"\w* \w called|strong="H7121"\w* \w him|strong="H7121"\w*, +\q2 \w I|strong="H3588"\w* \w blessed|strong="H1288"\w* \w him|strong="H7121"\w*, +\q2 \w and|strong="H5027"\w* \w made|strong="H7235"\w* \w him|strong="H7121"\w* \w many|strong="H7235"\w*. +\q1 +\v 3 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w comforted|strong="H5162"\w* \w Zion|strong="H6726"\w*. +\q2 \w He|strong="H3588"\w* \w has|strong="H3068"\w* \w comforted|strong="H5162"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w waste|strong="H2723"\w* \w places|strong="H2723"\w*, +\q2 \w and|strong="H3068"\w* \w has|strong="H3068"\w* \w made|strong="H7760"\w* \w her|strong="H3605"\w* \w wilderness|strong="H4057"\w* \w like|strong="H4057"\w* \w Eden|strong="H5731"\w*, +\q2 \w and|strong="H3068"\w* \w her|strong="H3605"\w* \w desert|strong="H6160"\w* \w like|strong="H4057"\w* \w the|strong="H3605"\w* \w garden|strong="H1588"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 \w Joy|strong="H8057"\w* \w and|strong="H3068"\w* \w gladness|strong="H8057"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w found|strong="H4672"\w* \w in|strong="H3068"\w* \w them|strong="H7760"\w*, +\q2 \w thanksgiving|strong="H8426"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w melody|strong="H2172"\w*. +\b +\q1 +\v 4 “\w Listen|strong="H7181"\w* \w to|strong="H3318"\w* \w me|strong="H3318"\w*, \w my|strong="H3318"\w* \w people|strong="H5971"\w*; +\q2 \w and|strong="H4941"\w* \w hear|strong="H7181"\w* \w me|strong="H3318"\w*, \w my|strong="H3318"\w* \w nation|strong="H5971"\w*, +\q1 \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w law|strong="H8451"\w* \w will|strong="H5971"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w me|strong="H3318"\w*, +\q2 \w and|strong="H4941"\w* \w I|strong="H3588"\w* \w will|strong="H5971"\w* establish \w my|strong="H3318"\w* \w justice|strong="H4941"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* light \w to|strong="H3318"\w* \w the|strong="H3588"\w* \w peoples|strong="H5971"\w*. +\q1 +\v 5 \w My|strong="H3318"\w* \w righteousness|strong="H6664"\w* \w is|strong="H6664"\w* \w near|strong="H7138"\w*. +\q2 \w My|strong="H3318"\w* \w salvation|strong="H3468"\w* \w has|strong="H3318"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w*, +\q2 \w and|strong="H5971"\w* \w my|strong="H3318"\w* \w arms|strong="H2220"\w* \w will|strong="H5971"\w* \w judge|strong="H8199"\w* \w the|strong="H3318"\w* \w peoples|strong="H5971"\w*. +\q1 \w The|strong="H3318"\w* islands \w will|strong="H5971"\w* \w wait|strong="H3176"\w* \w for|strong="H6960"\w* \w me|strong="H3318"\w*, +\q2 \w and|strong="H5971"\w* \w they|strong="H5971"\w* \w will|strong="H5971"\w* \w trust|strong="H3176"\w* \w my|strong="H3318"\w* \w arm|strong="H2220"\w*. +\q1 +\v 6 \w Lift|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H5375"\w* \w eyes|strong="H5869"\w* \w to|strong="H4191"\w* \w the|strong="H3588"\w* \w heavens|strong="H8064"\w*, +\q2 \w and|strong="H8064"\w* \w look|strong="H5027"\w* \w at|strong="H3427"\w* \w the|strong="H3588"\w* \w earth|strong="H8064"\w* \w beneath|strong="H8478"\w*; +\q1 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w heavens|strong="H8064"\w* \w will|strong="H1961"\w* \w vanish|strong="H4414"\w* \w away|strong="H5375"\w* \w like|strong="H3644"\w* \w smoke|strong="H6227"\w*, +\q2 \w and|strong="H8064"\w* \w the|strong="H3588"\w* \w earth|strong="H8064"\w* \w will|strong="H1961"\w* \w wear|strong="H1086"\w* \w out|strong="H3427"\w* \w like|strong="H3644"\w* \w a|strong="H3068"\w* garment. +\q1 \w Its|strong="H8478"\w* \w inhabitants|strong="H3427"\w* \w will|strong="H1961"\w* \w die|strong="H4191"\w* \w in|strong="H3427"\w* \w the|strong="H3588"\w* \w same|strong="H3651"\w* \w way|strong="H3651"\w*, +\q2 \w but|strong="H3588"\w* \w my|strong="H5375"\w* \w salvation|strong="H3444"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w forever|strong="H5769"\w*, +\q2 \w and|strong="H8064"\w* \w my|strong="H5375"\w* \w righteousness|strong="H6666"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w abolished|strong="H2865"\w*. +\b +\q1 +\v 7 “\w Listen|strong="H8085"\w* \w to|strong="H3820"\w* \w me|strong="H3372"\w*, \w you|strong="H3045"\w* \w who|strong="H5971"\w* \w know|strong="H3045"\w* \w righteousness|strong="H6664"\w*, +\q2 \w the|strong="H8085"\w* \w people|strong="H5971"\w* \w in|strong="H8085"\w* \w whose|strong="H3045"\w* \w heart|strong="H3820"\w* \w is|strong="H3820"\w* \w my|strong="H8085"\w* \w law|strong="H8451"\w*. +\q1 Don’t \w fear|strong="H3372"\w* \w the|strong="H8085"\w* \w reproach|strong="H2781"\w* \w of|strong="H8451"\w* \w men|strong="H5971"\w*, +\q2 \w and|strong="H5971"\w* don’t \w be|strong="H3820"\w* \w dismayed|strong="H2865"\w* \w at|strong="H5971"\w* \w their|strong="H8085"\w* \w insults|strong="H2781"\w*. +\q1 +\v 8 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w moth|strong="H6211"\w* \w will|strong="H1961"\w* eat \w them|strong="H1961"\w* \w up|strong="H1961"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* garment, +\q2 \w and|strong="H5769"\w* \w the|strong="H3588"\w* \w worm|strong="H5580"\w* \w will|strong="H1961"\w* eat \w them|strong="H1961"\w* \w like|strong="H1961"\w* \w wool|strong="H6785"\w*; +\q1 \w but|strong="H3588"\w* \w my|strong="H1961"\w* \w righteousness|strong="H6666"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w forever|strong="H5769"\w*, +\q2 \w and|strong="H5769"\w* \w my|strong="H1961"\w* \w salvation|strong="H3444"\w* \w to|strong="H1961"\w* \w all|strong="H1755"\w* \w generations|strong="H1755"\w*.” +\b +\q1 +\v 9 \w Awake|strong="H5782"\w*, \w awake|strong="H5782"\w*, \w put|strong="H3847"\w* \w on|strong="H3117"\w* \w strength|strong="H5797"\w*, \w arm|strong="H2220"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*! +\q2 \w Awake|strong="H5782"\w*, \w as|strong="H3117"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w old|strong="H5769"\w*, +\q2 \w the|strong="H3068"\w* \w generations|strong="H1755"\w* \w of|strong="H3068"\w* \w ancient|strong="H5769"\w* \w times|strong="H3117"\w*. +\q1 Isn’t \w it|strong="H1931"\w* \w you|strong="H3117"\w* \w who|strong="H1931"\w* \w cut|strong="H2672"\w* \w Rahab|strong="H7294"\w* \w in|strong="H3068"\w* \w pieces|strong="H2672"\w*, +\q2 \w who|strong="H1931"\w* \w pierced|strong="H2490"\w* \w the|strong="H3068"\w* \w monster|strong="H8577"\w*? +\q1 +\v 10 Isn’t \w it|strong="H7760"\w* \w you|strong="H7760"\w* \w who|strong="H1931"\w* \w dried|strong="H2717"\w* \w up|strong="H7760"\w* \w the|strong="H7760"\w* \w sea|strong="H3220"\w*, +\q2 \w the|strong="H7760"\w* \w waters|strong="H4325"\w* \w of|strong="H1870"\w* \w the|strong="H7760"\w* \w great|strong="H7227"\w* \w deep|strong="H8415"\w*; +\q2 \w who|strong="H1931"\w* \w made|strong="H7760"\w* \w the|strong="H7760"\w* \w depths|strong="H8415"\w* \w of|strong="H1870"\w* \w the|strong="H7760"\w* \w sea|strong="H3220"\w* \w a|strong="H3068"\w* \w way|strong="H1870"\w* \w for|strong="H4325"\w* \w the|strong="H7760"\w* \w redeemed|strong="H1350"\w* \w to|strong="H1870"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w*? +\q1 +\v 11 \w Those|strong="H5921"\w* \w ransomed|strong="H6299"\w* \w by|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w return|strong="H7725"\w*, +\q2 \w and|strong="H3068"\w* \w come|strong="H7725"\w* \w with|strong="H3068"\w* \w singing|strong="H7440"\w* \w to|strong="H7725"\w* \w Zion|strong="H6726"\w*. +\q2 \w Everlasting|strong="H5769"\w* \w joy|strong="H8057"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w on|strong="H5921"\w* \w their|strong="H3068"\w* \w heads|strong="H7218"\w*. +\q1 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w obtain|strong="H5381"\w* \w gladness|strong="H8057"\w* \w and|strong="H3068"\w* \w joy|strong="H8057"\w*. +\q2 \w Sorrow|strong="H3015"\w* \w and|strong="H3068"\w* sighing \w shall|strong="H3068"\w* \w flee|strong="H5127"\w* \w away|strong="H7725"\w*. +\b +\q1 +\v 12 “\w I|strong="H5414"\w*, even \w I|strong="H5414"\w*, \w am|strong="H5162"\w* \w he|strong="H1931"\w* \w who|strong="H4310"\w* \w comforts|strong="H5162"\w* \w you|strong="H5414"\w*. +\q2 \w Who|strong="H4310"\w* \w are|strong="H1121"\w* \w you|strong="H5414"\w*, \w that|strong="H1931"\w* \w you|strong="H5414"\w* \w are|strong="H1121"\w* \w afraid|strong="H3372"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w* \w who|strong="H4310"\w* \w shall|strong="H1121"\w* \w die|strong="H4191"\w*, +\q2 \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w* \w who|strong="H4310"\w* \w will|strong="H4310"\w* \w be|strong="H4191"\w* \w made|strong="H5414"\w* \w as|strong="H1121"\w* \w grass|strong="H2682"\w*? +\q1 +\v 13 \w Have|strong="H3068"\w* \w you|strong="H6440"\w* \w forgotten|strong="H7911"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w Maker|strong="H6213"\w*, +\q2 \w who|strong="H3605"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w the|strong="H3605"\w* \w heavens|strong="H8064"\w*, +\q2 \w and|strong="H3068"\w* \w laid|strong="H3245"\w* \w the|strong="H3605"\w* \w foundations|strong="H3245"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*? +\q1 \w Do|strong="H6213"\w* \w you|strong="H6440"\w* \w live|strong="H3117"\w* \w in|strong="H3068"\w* \w fear|strong="H6342"\w* \w continually|strong="H8548"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w* \w because|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w fury|strong="H2534"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w oppressor|strong="H6693"\w*, +\q2 \w when|strong="H3117"\w* \w he|strong="H3117"\w* \w prepares|strong="H3559"\w* \w to|strong="H3068"\w* \w destroy|strong="H7843"\w*? +\q2 Where \w is|strong="H3068"\w* \w the|strong="H3605"\w* \w fury|strong="H2534"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w oppressor|strong="H6693"\w*? +\q1 +\v 14 \w The|strong="H4191"\w* captive \w exile|strong="H6808"\w* \w will|strong="H3808"\w* \w speedily|strong="H4116"\w* \w be|strong="H4191"\w* freed. +\q2 \w He|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w* \w and|strong="H3899"\w* go \w down|strong="H6808"\w* into \w the|strong="H4191"\w* \w pit|strong="H7845"\w*. +\q2 \w His|strong="H6605"\w* \w bread|strong="H3899"\w* won’t \w fail|strong="H2637"\w*. +\q1 +\v 15 \w For|strong="H8034"\w* \w I|strong="H3068"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w who|strong="H3068"\w* \w stirs|strong="H7280"\w* \w up|strong="H3220"\w* \w the|strong="H3068"\w* \w sea|strong="H3220"\w* +\q2 so \w that|strong="H3068"\w* \w its|strong="H3220"\w* \w waves|strong="H1530"\w* \w roar|strong="H1993"\w*. +\q2 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w is|strong="H3068"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w*. +\q1 +\v 16 \w I|strong="H7760"\w* \w have|strong="H5971"\w* \w put|strong="H7760"\w* \w my|strong="H7760"\w* \w words|strong="H1697"\w* \w in|strong="H1697"\w* \w your|strong="H7760"\w* \w mouth|strong="H6310"\w* +\q2 \w and|strong="H8064"\w* \w have|strong="H5971"\w* \w covered|strong="H3680"\w* \w you|strong="H7760"\w* \w in|strong="H1697"\w* \w the|strong="H7760"\w* \w shadow|strong="H6738"\w* \w of|strong="H3027"\w* \w my|strong="H7760"\w* \w hand|strong="H3027"\w*, +\q1 \w that|strong="H5971"\w* \w I|strong="H7760"\w* \w may|strong="H5971"\w* \w plant|strong="H5193"\w* \w the|strong="H7760"\w* \w heavens|strong="H8064"\w*, +\q2 \w and|strong="H8064"\w* \w lay|strong="H7760"\w* \w the|strong="H7760"\w* \w foundations|strong="H3245"\w* \w of|strong="H3027"\w* \w the|strong="H7760"\w* \w earth|strong="H8064"\w*, +\q2 \w and|strong="H8064"\w* tell \w Zion|strong="H6726"\w*, ‘\w You|strong="H7760"\w* \w are|strong="H5971"\w* \w my|strong="H7760"\w* \w people|strong="H5971"\w*.’” +\b +\q1 +\v 17 \w Awake|strong="H5782"\w*, \w awake|strong="H5782"\w*! +\q2 \w Stand|strong="H6965"\w* \w up|strong="H6965"\w*, \w Jerusalem|strong="H3389"\w*, +\q2 \w you|strong="H3027"\w* \w who|strong="H3068"\w* \w have|strong="H3068"\w* \w drunk|strong="H8354"\w* \w from|strong="H3027"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w the|strong="H3068"\w* \w cup|strong="H3563"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w wrath|strong="H2534"\w*. +\q1 \w You|strong="H3027"\w* \w have|strong="H3068"\w* \w drunken|strong="H8354"\w* \w the|strong="H3068"\w* bowl \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w cup|strong="H3563"\w* \w of|strong="H3068"\w* staggering, +\q2 \w and|strong="H6965"\w* \w drained|strong="H4680"\w* \w it|strong="H3068"\w*. +\q1 +\v 18 \w There|strong="H3605"\w* \w is|strong="H3027"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w to|strong="H3027"\w* \w guide|strong="H5095"\w* \w her|strong="H3605"\w* among \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w to|strong="H3027"\w* whom she \w has|strong="H3027"\w* \w given|strong="H3205"\w* \w birth|strong="H3205"\w*; +\q2 \w and|strong="H1121"\w* \w there|strong="H3605"\w* \w is|strong="H3027"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w who|strong="H3605"\w* \w takes|strong="H2388"\w* \w her|strong="H3605"\w* \w by|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* among \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* whom she \w has|strong="H3027"\w* \w brought|strong="H3205"\w* \w up|strong="H1431"\w*. +\q1 +\v 19 \w These|strong="H2007"\w* \w two|strong="H8147"\w* \w things|strong="H8147"\w* \w have|strong="H5162"\w* \w happened|strong="H7122"\w* \w to|strong="H2719"\w* \w you|strong="H4310"\w*— +\q2 \w who|strong="H4310"\w* \w will|strong="H4310"\w* \w grieve|strong="H5110"\w* \w with|strong="H8147"\w* \w you|strong="H4310"\w*?— +\q1 \w desolation|strong="H7701"\w* \w and|strong="H2719"\w* \w destruction|strong="H7667"\w*, +\q2 \w and|strong="H2719"\w* \w famine|strong="H7458"\w* \w and|strong="H2719"\w* \w the|strong="H7122"\w* \w sword|strong="H2719"\w*. +\q2 \w How|strong="H4310"\w* \w can|strong="H4310"\w* \w I|strong="H7122"\w* \w comfort|strong="H5162"\w* \w you|strong="H4310"\w*? +\q1 +\v 20 \w Your|strong="H3068"\w* \w sons|strong="H1121"\w* \w have|strong="H3068"\w* \w fainted|strong="H5968"\w*. +\q2 \w They|strong="H3068"\w* \w lie|strong="H7901"\w* \w at|strong="H3068"\w* \w the|strong="H3605"\w* \w head|strong="H7218"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w streets|strong="H2351"\w*, +\q2 \w like|strong="H2534"\w* \w an|strong="H3068"\w* \w antelope|strong="H8377"\w* \w in|strong="H3068"\w* \w a|strong="H3068"\w* \w net|strong="H4364"\w*. +\q1 \w They|strong="H3068"\w* \w are|strong="H1121"\w* \w full|strong="H4392"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w wrath|strong="H2534"\w*, +\q2 \w the|strong="H3605"\w* \w rebuke|strong="H1606"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\b +\q1 +\v 21 \w Therefore|strong="H3651"\w* \w now|strong="H4994"\w* \w hear|strong="H8085"\w* \w this|strong="H2063"\w*, \w you|strong="H3808"\w* \w afflicted|strong="H6041"\w*, +\q2 \w and|strong="H6041"\w* \w drunken|strong="H7937"\w*, \w but|strong="H3808"\w* \w not|strong="H3808"\w* \w with|strong="H8085"\w* \w wine|strong="H3196"\w*: +\q1 +\v 22 \w Your|strong="H3068"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w who|strong="H5971"\w* \w pleads|strong="H7378"\w* \w the|strong="H3947"\w* \w cause|strong="H5971"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*, \w says|strong="H3541"\w*, +\q1 “\w Behold|strong="H2009"\w*, \w I|strong="H3541"\w* \w have|strong="H3068"\w* \w taken|strong="H3947"\w* \w out|strong="H3947"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w the|strong="H3947"\w* \w cup|strong="H3563"\w* \w of|strong="H3068"\w* staggering, +\q2 \w even|strong="H5750"\w* \w the|strong="H3947"\w* bowl \w of|strong="H3068"\w* \w the|strong="H3947"\w* \w cup|strong="H3563"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w wrath|strong="H2534"\w*. +\q2 \w You|strong="H3947"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w drink|strong="H8354"\w* \w it|strong="H3254"\w* \w any|strong="H5750"\w* \w more|strong="H3254"\w*. +\q1 +\v 23 \w I|strong="H7760"\w* \w will|strong="H5315"\w* \w put|strong="H7760"\w* \w it|strong="H7760"\w* \w into|strong="H3027"\w* \w the|strong="H7760"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w those|strong="H5315"\w* \w who|strong="H5315"\w* \w afflict|strong="H3013"\w* \w you|strong="H7760"\w*, +\q2 \w who|strong="H5315"\w* \w have|strong="H3027"\w* said \w to|strong="H3027"\w* \w your|strong="H7760"\w* \w soul|strong="H5315"\w*, ‘\w Bow|strong="H7812"\w* \w down|strong="H7812"\w*, \w that|strong="H5315"\w* \w we|strong="H3068"\w* \w may|strong="H5315"\w* \w walk|strong="H5674"\w* \w over|strong="H5674"\w* \w you|strong="H7760"\w*;’ +\q2 \w and|strong="H3027"\w* \w you|strong="H7760"\w* \w have|strong="H3027"\w* \w laid|strong="H7760"\w* \w your|strong="H7760"\w* \w back|strong="H1460"\w* \w as|strong="H5315"\w* \w the|strong="H7760"\w* ground, +\q2 \w like|strong="H7760"\w* \w a|strong="H3068"\w* \w street|strong="H2351"\w* \w to|strong="H3027"\w* \w those|strong="H5315"\w* \w who|strong="H5315"\w* \w walk|strong="H5674"\w* \w over|strong="H5674"\w*.” +\c 52 +\q1 +\v 1 \w Awake|strong="H5782"\w*, \w awake|strong="H5782"\w*! \w Put|strong="H3847"\w* \w on|strong="H3847"\w* \w your|strong="H3588"\w* \w strength|strong="H5797"\w*, \w Zion|strong="H6726"\w*. +\q2 \w Put|strong="H3847"\w* \w on|strong="H3847"\w* \w your|strong="H3588"\w* \w beautiful|strong="H8597"\w* garments, \w Jerusalem|strong="H3389"\w*, \w the|strong="H3588"\w* \w holy|strong="H6944"\w* \w city|strong="H5892"\w*, +\q2 \w for|strong="H3588"\w* \w from|strong="H5892"\w* \w now|strong="H3588"\w* \w on|strong="H3847"\w* \w the|strong="H3588"\w* \w uncircumcised|strong="H6189"\w* \w and|strong="H5892"\w* \w the|strong="H3588"\w* \w unclean|strong="H2931"\w* \w will|strong="H5892"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w* \w come|strong="H5892"\w* \w into|strong="H5892"\w* \w you|strong="H3588"\w*. +\q1 +\v 2 \w Shake|strong="H5287"\w* \w yourself|strong="H5287"\w* \w from|strong="H6965"\w* \w the|strong="H6965"\w* \w dust|strong="H6083"\w*! +\q2 \w Arise|strong="H6965"\w*, \w sit|strong="H3427"\w* \w up|strong="H6965"\w*, \w Jerusalem|strong="H3389"\w*! +\q2 \w Release|strong="H6605"\w* \w yourself|strong="H5287"\w* \w from|strong="H6965"\w* \w the|strong="H6965"\w* \w bonds|strong="H4147"\w* \w of|strong="H1323"\w* \w your|strong="H6605"\w* \w neck|strong="H6677"\w*, \w captive|strong="H7628"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Zion|strong="H6726"\w*! +\b +\q1 +\v 3 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w You|strong="H3588"\w* \w were|strong="H3068"\w* \w sold|strong="H4376"\w* \w for|strong="H3588"\w* \w nothing|strong="H3808"\w*; +\q2 \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w redeemed|strong="H1350"\w* \w without|strong="H3808"\w* \w money|strong="H3701"\w*.” +\b +\p +\v 4 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w My|strong="H3588"\w* \w people|strong="H5971"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w at|strong="H5971"\w* \w the|strong="H3588"\w* \w first|strong="H7223"\w* \w into|strong="H3381"\w* \w Egypt|strong="H4714"\w* \w to|strong="H3381"\w* \w live|strong="H1481"\w* \w there|strong="H8033"\w*; +\q2 \w and|strong="H5971"\w* \w the|strong="H3588"\w* Assyrian \w has|strong="H3588"\w* \w oppressed|strong="H6231"\w* \w them|strong="H3381"\w* \w without|strong="H3588"\w* \w cause|strong="H5971"\w*. +\b +\q1 +\v 5 “\w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w what|strong="H4100"\w* \w do|strong="H3068"\w* \w I|strong="H3588"\w* \w do|strong="H3068"\w* \w here|strong="H6311"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w seeing|strong="H3588"\w* \w that|strong="H3588"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w* \w are|strong="H3117"\w* \w taken|strong="H3947"\w* \w away|strong="H3947"\w* \w for|strong="H3588"\w* \w nothing|strong="H2600"\w*? +\q1 \w Those|strong="H3605"\w* \w who|strong="H3605"\w* \w rule|strong="H4910"\w* \w over|strong="H4910"\w* \w them|strong="H3947"\w* mock,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w and|strong="H3068"\w* \w my|strong="H3605"\w* \w name|strong="H8034"\w* \w is|strong="H3068"\w* \w blasphemed|strong="H5006"\w* \w continually|strong="H8548"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w* \w long|strong="H3117"\w*. +\q1 +\v 6 \w Therefore|strong="H3651"\w* \w my|strong="H3045"\w* \w people|strong="H5971"\w* \w shall|strong="H5971"\w* \w know|strong="H3045"\w* \w my|strong="H3045"\w* \w name|strong="H8034"\w*. +\q2 \w Therefore|strong="H3651"\w* \w they|strong="H3588"\w* \w shall|strong="H5971"\w* \w know|strong="H3045"\w* \w in|strong="H3117"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H2005"\w* \w he|strong="H1931"\w* \w who|strong="H1931"\w* \w speaks|strong="H1696"\w*. +\q2 \w Behold|strong="H2005"\w*, \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w I|strong="H3588"\w*.” +\b +\q1 +\v 7 \w How|strong="H4100"\w* \w beautiful|strong="H2896"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w* \w are|strong="H4100"\w* \w the|strong="H5921"\w* \w feet|strong="H7272"\w* \w of|strong="H2022"\w* \w him|strong="H5921"\w* \w who|strong="H2896"\w* \w brings|strong="H1319"\w* \w good|strong="H2896"\w* \w news|strong="H1319"\w*, +\q2 \w who|strong="H2896"\w* publishes \w peace|strong="H7965"\w*, +\q2 \w who|strong="H2896"\w* \w brings|strong="H1319"\w* \w good|strong="H2896"\w* \w news|strong="H1319"\w*, +\q2 \w who|strong="H2896"\w* \w proclaims|strong="H8085"\w* \w salvation|strong="H3444"\w*, +\q2 \w who|strong="H2896"\w* says \w to|strong="H5921"\w* \w Zion|strong="H6726"\w*, “\w Your|strong="H5921"\w* God \w reigns|strong="H4427"\w*!” +\q1 +\v 8 \w Your|strong="H3068"\w* \w watchmen|strong="H6822"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w their|strong="H3068"\w* \w voice|strong="H6963"\w*. +\q2 \w Together|strong="H3162"\w* \w they|strong="H3588"\w* \w sing|strong="H7442"\w*; +\q2 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w shall|strong="H3068"\w* \w see|strong="H7200"\w* \w eye|strong="H5869"\w* \w to|strong="H7725"\w* \w eye|strong="H5869"\w* \w when|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w returns|strong="H7725"\w* \w to|strong="H7725"\w* \w Zion|strong="H6726"\w*. +\q1 +\v 9 \w Break|strong="H6476"\w* \w out|strong="H7442"\w* \w into|strong="H6476"\w* \w joy|strong="H7442"\w*! +\q2 \w Sing|strong="H7442"\w* \w together|strong="H3162"\w*, \w you|strong="H3588"\w* \w waste|strong="H2723"\w* \w places|strong="H2723"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*; +\q2 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w comforted|strong="H5162"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*. +\q2 \w He|strong="H3588"\w* \w has|strong="H3068"\w* \w redeemed|strong="H1350"\w* \w Jerusalem|strong="H3389"\w*. +\q1 +\v 10 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w made|strong="H3068"\w* \w his|strong="H3605"\w* \w holy|strong="H6944"\w* \w arm|strong="H2220"\w* \w bare|strong="H2834"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w eyes|strong="H5869"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*. +\q2 \w All|strong="H3605"\w* \w the|strong="H3605"\w* ends \w of|strong="H3068"\w* \w the|strong="H3605"\w* earth \w have|strong="H3068"\w* \w seen|strong="H7200"\w* \w the|strong="H3605"\w* \w salvation|strong="H3444"\w* \w of|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*. +\b +\q1 +\v 11 \w Depart|strong="H5493"\w*! \w Depart|strong="H5493"\w*! \w Go|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H5493"\w* \w there|strong="H8033"\w*! \w Touch|strong="H5060"\w* \w no|strong="H5375"\w* \w unclean|strong="H2931"\w* \w thing|strong="H3627"\w*! +\q2 \w Go|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H5493"\w* \w among|strong="H8432"\w* \w her|strong="H5375"\w*! +\q2 \w Cleanse|strong="H1305"\w* \w yourselves|strong="H8033"\w*, \w you|strong="H8432"\w* \w who|strong="H3068"\w* \w carry|strong="H5375"\w* \w Yahweh|strong="H3068"\w*’s \w vessels|strong="H3627"\w*. +\q1 +\v 12 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w go|strong="H1980"\w* \w out|strong="H3318"\w* \w in|strong="H1980"\w* \w haste|strong="H2649"\w*, +\q2 \w neither|strong="H3808"\w* \w shall|strong="H3068"\w* \w you|strong="H3588"\w* \w go|strong="H1980"\w* \w by|strong="H3068"\w* \w flight|strong="H4499"\w*; +\q1 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w go|strong="H1980"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*, +\q2 \w and|strong="H1980"\w* \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w your|strong="H3068"\w* rear guard. +\b +\q1 +\v 13 \w Behold|strong="H2009"\w*, \w my|strong="H5375"\w* \w servant|strong="H5650"\w* \w will|strong="H5650"\w* \w deal|strong="H3966"\w* \w wisely|strong="H7919"\w*. +\q2 \w He|strong="H2009"\w* \w will|strong="H5650"\w* \w be|strong="H5650"\w* \w exalted|strong="H7311"\w* \w and|strong="H5650"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w*, +\q2 \w and|strong="H5650"\w* \w will|strong="H5650"\w* \w be|strong="H5650"\w* \w very|strong="H3966"\w* \w high|strong="H7311"\w*. +\q1 +\v 14 Just \w as|strong="H3651"\w* \w many|strong="H7227"\w* \w were|strong="H1121"\w* \w astonished|strong="H8074"\w* \w at|strong="H5921"\w* \w you|strong="H5921"\w*— +\q2 \w his|strong="H5921"\w* \w appearance|strong="H4758"\w* \w was|strong="H1121"\w* \w marred|strong="H4893"\w* \w more|strong="H7227"\w* \w than|strong="H5921"\w* any \w man|strong="H1121"\w*, \w and|strong="H1121"\w* \w his|strong="H5921"\w* \w form|strong="H8389"\w* \w more|strong="H7227"\w* \w than|strong="H5921"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*— +\q1 +\v 15 \w so|strong="H3651"\w* \w he|strong="H3588"\w* \w will|strong="H1471"\w* cleanse\f + \fr 52:15 \ft or, sprinkle\f* \w many|strong="H7227"\w* \w nations|strong="H1471"\w*. +\q2 \w Kings|strong="H4428"\w* \w will|strong="H1471"\w* \w shut|strong="H7092"\w* \w their|strong="H8085"\w* \w mouths|strong="H6310"\w* \w at|strong="H5921"\w* \w him|strong="H5921"\w*; +\q2 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H1471"\w* \w see|strong="H7200"\w* \w that|strong="H3588"\w* \w which|strong="H1471"\w* \w had|strong="H4428"\w* \w not|strong="H3808"\w* \w been|strong="H3808"\w* \w told|strong="H5608"\w* \w them|strong="H5921"\w*, +\q2 \w and|strong="H4428"\w* \w they|strong="H3588"\w* \w will|strong="H1471"\w* \w understand|strong="H8085"\w* \w that|strong="H3588"\w* \w which|strong="H1471"\w* \w they|strong="H3588"\w* \w had|strong="H4428"\w* \w not|strong="H3808"\w* \w heard|strong="H8085"\w*. +\c 53 +\q1 +\v 1 \w Who|strong="H4310"\w* \w has|strong="H3068"\w* believed \w our|strong="H3068"\w* \w message|strong="H8052"\w*? +\q2 \w To|strong="H3068"\w* \w whom|strong="H4310"\w* \w has|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w arm|strong="H2220"\w* \w been|strong="H3068"\w* \w revealed|strong="H1540"\w*? +\q1 +\v 2 \w For|strong="H6440"\w* \w he|strong="H3808"\w* \w grew|strong="H5927"\w* \w up|strong="H5927"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w* \w as|strong="H5927"\w* \w a|strong="H3068"\w* \w tender|strong="H3126"\w* \w plant|strong="H3126"\w*, +\q2 \w and|strong="H6440"\w* \w as|strong="H5927"\w* \w a|strong="H3068"\w* \w root|strong="H8328"\w* \w out|strong="H7200"\w* \w of|strong="H6440"\w* \w dry|strong="H6723"\w* \w ground|strong="H6440"\w*. +\q1 \w He|strong="H3808"\w* has \w no|strong="H3808"\w* \w good|strong="H6440"\w* \w looks|strong="H7200"\w* \w or|strong="H3808"\w* \w majesty|strong="H1926"\w*. +\q2 \w When|strong="H7200"\w* \w we|strong="H3068"\w* \w see|strong="H7200"\w* \w him|strong="H6440"\w*, \w there|strong="H5927"\w* \w is|strong="H6440"\w* \w no|strong="H3808"\w* \w beauty|strong="H1926"\w* \w that|strong="H7200"\w* \w we|strong="H3068"\w* should \w desire|strong="H2530"\w* \w him|strong="H6440"\w*. +\q1 +\v 3 \w He|strong="H4480"\w* \w was|strong="H2483"\w* despised +\q2 \w and|strong="H6440"\w* \w rejected|strong="H2310"\w* \w by|strong="H3808"\w* \w men|strong="H2803"\w*, +\q1 \w a|strong="H3068"\w* \w man|strong="H6440"\w* \w of|strong="H6440"\w* suffering +\q2 \w and|strong="H6440"\w* \w acquainted|strong="H3045"\w* \w with|strong="H6440"\w* \w disease|strong="H2483"\w*. +\q1 \w He|strong="H4480"\w* \w was|strong="H2483"\w* despised \w as|strong="H2803"\w* \w one|strong="H3808"\w* \w from|strong="H4480"\w* \w whom|strong="H6440"\w* \w men|strong="H2803"\w* \w hide|strong="H4564"\w* \w their|strong="H6440"\w* \w face|strong="H6440"\w*; +\q2 \w and|strong="H6440"\w* \w we|strong="H3068"\w* didn’t \w respect|strong="H3045"\w* \w him|strong="H6440"\w*. +\b +\q1 +\v 4 \w Surely|strong="H5221"\w* \w he|strong="H1931"\w* \w has|strong="H1931"\w* \w borne|strong="H5375"\w* \w our|strong="H5375"\w* \w sickness|strong="H2483"\w* +\q2 \w and|strong="H2483"\w* \w carried|strong="H5375"\w* \w our|strong="H5375"\w* suffering; +\q1 yet \w we|strong="H3068"\w* \w considered|strong="H2803"\w* \w him|strong="H5221"\w* \w plagued|strong="H5060"\w*, +\q2 \w struck|strong="H5221"\w* \w by|strong="H6031"\w* God, \w and|strong="H2483"\w* \w afflicted|strong="H6031"\w*. +\q1 +\v 5 \w But|strong="H1931"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w pierced|strong="H2490"\w* \w for|strong="H5921"\w* \w our|strong="H5921"\w* \w transgressions|strong="H6588"\w*. +\q2 \w He|strong="H1931"\w* \w was|strong="H1931"\w* \w crushed|strong="H1792"\w* \w for|strong="H5921"\w* \w our|strong="H5921"\w* \w iniquities|strong="H5771"\w*. +\q1 \w The|strong="H5921"\w* \w punishment|strong="H5771"\w* \w that|strong="H1931"\w* brought \w our|strong="H5921"\w* \w peace|strong="H7965"\w* \w was|strong="H1931"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*; +\q2 \w and|strong="H7965"\w* \w by|strong="H5921"\w* \w his|strong="H5921"\w* \w wounds|strong="H2250"\w* \w we|strong="H3068"\w* \w are|strong="H6588"\w* \w healed|strong="H7495"\w*. +\q1 +\v 6 \w All|strong="H3605"\w* \w we|strong="H3068"\w* \w like|strong="H1870"\w* \w sheep|strong="H6629"\w* \w have|strong="H3068"\w* \w gone|strong="H8582"\w* \w astray|strong="H8582"\w*. +\q2 \w Everyone|strong="H3605"\w* \w has|strong="H3068"\w* \w turned|strong="H6437"\w* \w to|strong="H3068"\w* \w his|strong="H3605"\w* own \w way|strong="H1870"\w*; +\q2 \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w laid|strong="H6293"\w* \w on|strong="H1870"\w* \w him|strong="H3605"\w* \w the|strong="H3605"\w* \w iniquity|strong="H5771"\w* \w of|strong="H3068"\w* \w us|strong="H6629"\w* \w all|strong="H3605"\w*. +\b +\q1 +\v 7 \w He|strong="H1931"\w* \w was|strong="H1931"\w* \w oppressed|strong="H5065"\w*, +\q2 \w yet|strong="H3808"\w* \w when|strong="H6310"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w afflicted|strong="H6031"\w* \w he|strong="H1931"\w* didn’t \w open|strong="H6605"\w* \w his|strong="H6440"\w* \w mouth|strong="H6310"\w*. +\q1 \w As|strong="H6440"\w* \w a|strong="H3068"\w* \w lamb|strong="H7716"\w* \w that|strong="H1931"\w* \w is|strong="H1931"\w* \w led|strong="H2986"\w* \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w slaughter|strong="H2874"\w*, +\q2 \w and|strong="H6440"\w* \w as|strong="H6440"\w* \w a|strong="H3068"\w* \w sheep|strong="H7716"\w* \w that|strong="H1931"\w* \w before|strong="H6440"\w* \w its|strong="H6605"\w* \w shearers|strong="H1494"\w* \w is|strong="H1931"\w* \w silent|strong="H6310"\w*, +\q2 \w so|strong="H3808"\w* \w he|strong="H1931"\w* didn’t \w open|strong="H6605"\w* \w his|strong="H6440"\w* \w mouth|strong="H6310"\w*. +\q1 +\v 8 \w He|strong="H3588"\w* \w was|strong="H5971"\w* \w taken|strong="H3947"\w* \w away|strong="H3947"\w* \w by|strong="H5971"\w* \w oppression|strong="H6115"\w* \w and|strong="H4941"\w* \w judgment|strong="H4941"\w*. +\q2 \w As|strong="H3588"\w* \w for|strong="H3588"\w* \w his|strong="H3947"\w* \w generation|strong="H1755"\w*, +\q2 \w who|strong="H4310"\w* \w considered|strong="H7878"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w was|strong="H5971"\w* \w cut|strong="H1504"\w* \w off|strong="H1504"\w* \w out|strong="H3947"\w* \w of|strong="H5971"\w* \w the|strong="H3588"\w* land \w of|strong="H5971"\w* \w the|strong="H3588"\w* \w living|strong="H2416"\w* +\q2 \w and|strong="H4941"\w* \w stricken|strong="H5061"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* disobedience \w of|strong="H5971"\w* \w my|strong="H3947"\w* \w people|strong="H5971"\w*? +\q1 +\v 9 \w They|strong="H3808"\w* \w made|strong="H6213"\w* \w his|strong="H5414"\w* \w grave|strong="H6913"\w* \w with|strong="H6213"\w* \w the|strong="H5921"\w* \w wicked|strong="H7563"\w*, +\q2 \w and|strong="H6213"\w* \w with|strong="H6213"\w* \w a|strong="H3068"\w* \w rich|strong="H6223"\w* \w man|strong="H7563"\w* \w in|strong="H5921"\w* \w his|strong="H5414"\w* \w death|strong="H4194"\w*, +\q1 \w although|strong="H3808"\w* \w he|strong="H6213"\w* \w had|strong="H5414"\w* \w done|strong="H6213"\w* \w no|strong="H3808"\w* \w violence|strong="H2555"\w*, +\q2 \w nor|strong="H3808"\w* \w was|strong="H5414"\w* \w any|strong="H6213"\w* \w deceit|strong="H4820"\w* \w in|strong="H5921"\w* \w his|strong="H5414"\w* \w mouth|strong="H6310"\w*. +\b +\q1 +\v 10 \w Yet|strong="H3068"\w* \w it|strong="H7760"\w* \w pleased|strong="H2654"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3068"\w* \w bruise|strong="H1792"\w* \w him|strong="H3027"\w*. +\q2 \w He|strong="H3117"\w* \w has|strong="H3068"\w* caused \w him|strong="H3027"\w* \w to|strong="H3068"\w* suffer. +\q1 \w When|strong="H3117"\w* \w you|strong="H3117"\w* \w make|strong="H7760"\w* \w his|strong="H7760"\w* \w soul|strong="H5315"\w* \w an|strong="H7760"\w* \w offering|strong="H3068"\w* \w for|strong="H3027"\w* sin, +\q2 \w he|strong="H3117"\w* \w will|strong="H3068"\w* \w see|strong="H7200"\w* \w his|strong="H7760"\w* \w offspring|strong="H2233"\w*. +\q1 \w He|strong="H3117"\w* \w will|strong="H3068"\w* prolong \w his|strong="H7760"\w* \w days|strong="H3117"\w* +\q2 \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w pleasure|strong="H2656"\w* \w will|strong="H3068"\w* \w prosper|strong="H6743"\w* \w in|strong="H3068"\w* \w his|strong="H7760"\w* \w hand|strong="H3027"\w*. +\q1 +\v 11 \w After|strong="H7200"\w* \w the|strong="H7200"\w* suffering \w of|strong="H5650"\w* \w his|strong="H7200"\w* \w soul|strong="H5315"\w*, +\q2 \w he|strong="H1931"\w* \w will|strong="H5650"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* light\f + \fr 53:11 \ft So read the Dead Sea Scrolls and Septuagint. Masoretic Text omits “the light”.\f* \w and|strong="H5650"\w* \w be|strong="H5315"\w* \w satisfied|strong="H7646"\w*. +\q1 \w My|strong="H7200"\w* \w righteous|strong="H6662"\w* \w servant|strong="H5650"\w* \w will|strong="H5650"\w* \w justify|strong="H6663"\w* \w many|strong="H7227"\w* \w by|strong="H6662"\w* \w the|strong="H7200"\w* \w knowledge|strong="H1847"\w* \w of|strong="H5650"\w* \w himself|strong="H5315"\w*; +\q2 \w and|strong="H5650"\w* \w he|strong="H1931"\w* \w will|strong="H5650"\w* \w bear|strong="H5445"\w* \w their|strong="H7200"\w* \w iniquities|strong="H5771"\w*. +\q1 +\v 12 \w Therefore|strong="H3651"\w* \w I|strong="H3651"\w* \w will|strong="H5315"\w* \w give|strong="H5375"\w* \w him|strong="H1931"\w* \w a|strong="H3068"\w* \w portion|strong="H2505"\w* \w with|strong="H5315"\w* \w the|strong="H5375"\w* \w great|strong="H7227"\w*. +\q2 \w He|strong="H1931"\w* \w will|strong="H5315"\w* \w divide|strong="H2505"\w* \w the|strong="H5375"\w* \w plunder|strong="H7998"\w* \w with|strong="H5315"\w* \w the|strong="H5375"\w* \w strong|strong="H6099"\w*, +\q1 \w because|strong="H8478"\w* \w he|strong="H1931"\w* \w poured|strong="H6168"\w* \w out|strong="H2505"\w* \w his|strong="H5375"\w* \w soul|strong="H5315"\w* \w to|strong="H5315"\w* \w death|strong="H4194"\w* +\q2 \w and|strong="H5315"\w* \w was|strong="H1931"\w* \w counted|strong="H4487"\w* \w with|strong="H5315"\w* \w the|strong="H5375"\w* \w transgressors|strong="H6586"\w*; +\q1 \w yet|strong="H3651"\w* \w he|strong="H1931"\w* \w bore|strong="H5375"\w* \w the|strong="H5375"\w* \w sins|strong="H2399"\w* \w of|strong="H8478"\w* \w many|strong="H7227"\w* +\q2 \w and|strong="H5315"\w* \w made|strong="H6168"\w* \w intercession|strong="H6293"\w* \w for|strong="H8478"\w* \w the|strong="H5375"\w* \w transgressors|strong="H6586"\w*. +\c 54 +\q1 +\v 1 “\w Sing|strong="H7442"\w*, \w barren|strong="H6135"\w*, \w you|strong="H3588"\w* \w who|strong="H3068"\w* didn’t \w give|strong="H3205"\w* \w birth|strong="H3205"\w*! +\q2 \w Break|strong="H6476"\w* \w out|strong="H7442"\w* \w into|strong="H6476"\w* \w singing|strong="H7440"\w*, \w and|strong="H1121"\w* \w cry|strong="H7440"\w* \w aloud|strong="H7442"\w*, \w you|strong="H3588"\w* \w who|strong="H3068"\w* didn’t \w travail|strong="H3205"\w* \w with|strong="H3068"\w* \w child|strong="H1121"\w*! +\q2 \w For|strong="H3588"\w* \w more|strong="H7227"\w* \w are|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w desolate|strong="H8074"\w* \w than|strong="H3808"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w married|strong="H1166"\w* \w wife|strong="H1166"\w*,” says \w Yahweh|strong="H3068"\w*. +\q1 +\v 2 “\w Enlarge|strong="H7337"\w* \w the|strong="H2388"\w* \w place|strong="H4725"\w* \w of|strong="H4725"\w* \w your|strong="H5186"\w* \w tent|strong="H3489"\w*, +\q2 \w and|strong="H2388"\w* \w let|strong="H5186"\w* \w them|strong="H2388"\w* \w stretch|strong="H5186"\w* \w out|strong="H5186"\w* \w the|strong="H2388"\w* \w curtains|strong="H3407"\w* \w of|strong="H4725"\w* \w your|strong="H5186"\w* \w habitations|strong="H4908"\w*; +\q2 don’t \w spare|strong="H2820"\w*; \w lengthen|strong="H5186"\w* \w your|strong="H5186"\w* \w cords|strong="H4340"\w*, \w and|strong="H2388"\w* \w strengthen|strong="H2388"\w* \w your|strong="H5186"\w* \w stakes|strong="H3489"\w*. +\q1 +\v 3 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H1471"\w* \w spread|strong="H6555"\w* \w out|strong="H3423"\w* \w on|strong="H3427"\w* \w the|strong="H3588"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w and|strong="H5892"\w* \w on|strong="H3427"\w* \w the|strong="H3588"\w* \w left|strong="H8040"\w*; +\q2 \w and|strong="H5892"\w* \w your|strong="H3588"\w* \w offspring|strong="H2233"\w* \w will|strong="H1471"\w* \w possess|strong="H3423"\w* \w the|strong="H3588"\w* \w nations|strong="H1471"\w* +\q2 \w and|strong="H5892"\w* \w settle|strong="H3427"\w* \w in|strong="H3427"\w* \w desolate|strong="H8074"\w* \w cities|strong="H5892"\w*. +\b +\q1 +\v 4 “Don’t \w be|strong="H3808"\w* \w afraid|strong="H3372"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w ashamed|strong="H3637"\w*. +\q2 Don’t \w be|strong="H3808"\w* \w confounded|strong="H3637"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* disappointed. +\q1 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3808"\w* \w forget|strong="H7911"\w* \w the|strong="H3588"\w* \w shame|strong="H1322"\w* \w of|strong="H3372"\w* \w your|strong="H3588"\w* \w youth|strong="H5934"\w*. +\q2 \w You|strong="H3588"\w* \w will|strong="H3808"\w* \w remember|strong="H2142"\w* \w the|strong="H3588"\w* \w reproach|strong="H2781"\w* \w of|strong="H3372"\w* \w your|strong="H3588"\w* widowhood \w no|strong="H3808"\w* \w more|strong="H5750"\w*. +\q1 +\v 5 \w For|strong="H3588"\w* \w your|strong="H3068"\w* \w Maker|strong="H6213"\w* \w is|strong="H3068"\w* \w your|strong="H3068"\w* \w husband|strong="H1166"\w*; \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w is|strong="H3068"\w* \w his|strong="H3605"\w* \w name|strong="H8034"\w*. +\q2 \w The|strong="H3605"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w is|strong="H3068"\w* \w your|strong="H3068"\w* \w Redeemer|strong="H1350"\w*. +\q2 \w He|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w called|strong="H7121"\w* \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* earth. +\q1 +\v 6 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w called|strong="H7121"\w* \w you|strong="H3588"\w* \w as|strong="H3068"\w* \w a|strong="H3068"\w* wife \w forsaken|strong="H5800"\w* \w and|strong="H3068"\w* \w grieved|strong="H6087"\w* \w in|strong="H3068"\w* \w spirit|strong="H7307"\w*, +\q2 \w even|strong="H3588"\w* \w a|strong="H3068"\w* wife \w of|strong="H3068"\w* \w youth|strong="H5271"\w*, \w when|strong="H3588"\w* \w she|strong="H3588"\w* \w is|strong="H3068"\w* \w cast|strong="H3068"\w* \w off|strong="H5800"\w*,” says \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\b +\q1 +\v 7 “\w For|strong="H6908"\w* \w a|strong="H3068"\w* \w small|strong="H6996"\w* \w moment|strong="H7281"\w* \w I|strong="H7281"\w* \w have|strong="H5800"\w* \w forsaken|strong="H5800"\w* \w you|strong="H5800"\w*, +\q2 \w but|strong="H5800"\w* \w I|strong="H7281"\w* \w will|strong="H6996"\w* \w gather|strong="H6908"\w* \w you|strong="H5800"\w* with \w great|strong="H1419"\w* \w mercies|strong="H7356"\w*. +\q1 +\v 8 \w In|strong="H3068"\w* overflowing \w wrath|strong="H7110"\w* \w I|strong="H7110"\w* \w hid|strong="H5641"\w* \w my|strong="H3068"\w* \w face|strong="H6440"\w* \w from|strong="H4480"\w* \w you|strong="H6440"\w* \w for|strong="H6440"\w* \w a|strong="H3068"\w* \w moment|strong="H7281"\w*, +\q2 \w but|strong="H1350"\w* \w with|strong="H3068"\w* \w everlasting|strong="H5769"\w* loving \w kindness|strong="H2617"\w* \w I|strong="H7110"\w* \w will|strong="H3068"\w* \w have|strong="H7355"\w* \w mercy|strong="H2617"\w* \w on|strong="H3068"\w* \w you|strong="H6440"\w*,” says \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w Redeemer|strong="H1350"\w*. +\b +\q1 +\v 9 “\w For|strong="H3588"\w* \w this|strong="H2063"\w* \w is|strong="H3651"\w* \w like|strong="H3651"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w of|strong="H4325"\w* \w Noah|strong="H5146"\w* \w to|strong="H5921"\w* \w me|strong="H5921"\w*; +\q2 \w for|strong="H3588"\w* \w as|strong="H3651"\w* \w I|strong="H3588"\w* \w have|strong="H3588"\w* \w sworn|strong="H7650"\w* \w that|strong="H3588"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w of|strong="H4325"\w* \w Noah|strong="H5146"\w* \w will|strong="H4325"\w* no \w more|strong="H5750"\w* \w go|strong="H5674"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* earth, +\q2 \w so|strong="H3651"\w* \w I|strong="H3588"\w* \w have|strong="H3588"\w* \w sworn|strong="H7650"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H4325"\w* \w not|strong="H3588"\w* \w be|strong="H5750"\w* \w angry|strong="H7107"\w* \w with|strong="H5921"\w* \w you|strong="H3588"\w*, \w nor|strong="H5674"\w* \w rebuke|strong="H1605"\w* \w you|strong="H3588"\w*. +\q1 +\v 10 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w mountains|strong="H2022"\w* \w may|strong="H3068"\w* \w depart|strong="H4185"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w hills|strong="H1389"\w* \w be|strong="H3808"\w* \w removed|strong="H4185"\w*, +\q1 \w but|strong="H3588"\w* \w my|strong="H3068"\w* loving \w kindness|strong="H2617"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w depart|strong="H4185"\w* \w from|strong="H3068"\w* \w you|strong="H3588"\w*, +\q2 \w and|strong="H3068"\w* \w my|strong="H3068"\w* \w covenant|strong="H1285"\w* \w of|strong="H3068"\w* \w peace|strong="H7965"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w removed|strong="H4185"\w*,” +\q2 says \w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w mercy|strong="H2617"\w* \w on|strong="H3068"\w* \w you|strong="H3588"\w*. +\b +\q1 +\v 11 “\w You|strong="H3808"\w* \w afflicted|strong="H6041"\w*, tossed \w with|strong="H6041"\w* storms, \w and|strong="H6041"\w* \w not|strong="H3808"\w* \w comforted|strong="H5162"\w*, +\q2 \w behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w will|strong="H3808"\w* \w set|strong="H3245"\w* \w your|strong="H3808"\w* stones \w in|strong="H5162"\w* beautiful colors, +\q2 \w and|strong="H6041"\w* \w lay|strong="H3245"\w* \w your|strong="H3808"\w* \w foundations|strong="H3245"\w* \w with|strong="H6041"\w* \w sapphires|strong="H5601"\w*. +\q1 +\v 12 \w I|strong="H7760"\w* \w will|strong="H8121"\w* \w make|strong="H7760"\w* \w your|strong="H3605"\w* pinnacles \w of|strong="H1366"\w* \w rubies|strong="H3539"\w*, +\q2 \w your|strong="H3605"\w* \w gates|strong="H8179"\w* \w of|strong="H1366"\w* sparkling jewels, +\q2 \w and|strong="H8179"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* walls \w of|strong="H1366"\w* \w precious|strong="H2656"\w* stones. +\q1 +\v 13 \w All|strong="H3605"\w* \w your|strong="H3068"\w* \w children|strong="H1121"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w taught|strong="H3928"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H1121"\w* \w your|strong="H3068"\w* \w children|strong="H1121"\w*’s \w peace|strong="H7965"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w great|strong="H7227"\w*. +\q1 +\v 14 \w You|strong="H3588"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w established|strong="H3559"\w* \w in|strong="H3808"\w* \w righteousness|strong="H6666"\w*. +\q2 \w You|strong="H3588"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w far|strong="H7368"\w* \w from|strong="H7368"\w* \w oppression|strong="H6233"\w*, +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w afraid|strong="H3372"\w*, +\q2 \w and|strong="H6666"\w* \w far|strong="H7368"\w* \w from|strong="H7368"\w* \w terror|strong="H4288"\w*, +\q2 \w for|strong="H3588"\w* \w it|strong="H7126"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w come|strong="H7126"\w* \w near|strong="H7126"\w* \w you|strong="H3588"\w*. +\q1 +\v 15 \w Behold|strong="H2005"\w*, \w they|strong="H5921"\w* \w may|strong="H4310"\w* \w gather|strong="H1481"\w* \w together|strong="H1481"\w*, \w but|strong="H5921"\w* \w not|strong="H5307"\w* \w by|strong="H5921"\w* \w me|strong="H5921"\w*. +\q2 \w Whoever|strong="H4310"\w* gathers \w together|strong="H1481"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w* \w will|strong="H4310"\w* \w fall|strong="H5307"\w* \w because|strong="H5921"\w* \w of|strong="H5921"\w* \w you|strong="H5921"\w*. +\b +\q1 +\v 16 “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* have \w created|strong="H1254"\w* \w the|strong="H3318"\w* \w blacksmith|strong="H2796"\w* \w who|strong="H2796"\w* fans \w the|strong="H3318"\w* \w coals|strong="H6352"\w* \w into|strong="H3318"\w* flame, +\q2 \w and|strong="H3318"\w* forges \w a|strong="H3068"\w* \w weapon|strong="H3627"\w* \w for|strong="H3627"\w* \w his|strong="H3318"\w* \w work|strong="H4639"\w*; +\q2 \w and|strong="H3318"\w* \w I|strong="H2005"\w* have \w created|strong="H1254"\w* \w the|strong="H3318"\w* \w destroyer|strong="H7843"\w* \w to|strong="H3318"\w* \w destroy|strong="H7843"\w*. +\q1 +\v 17 \w No|strong="H3808"\w* \w weapon|strong="H3627"\w* \w that|strong="H3605"\w* \w is|strong="H3068"\w* \w formed|strong="H3335"\w* \w against|strong="H5921"\w* \w you|strong="H3605"\w* \w will|strong="H3068"\w* prevail; +\q2 \w and|strong="H6965"\w* \w you|strong="H3605"\w* \w will|strong="H3068"\w* \w condemn|strong="H7561"\w* \w every|strong="H3605"\w* \w tongue|strong="H3956"\w* \w that|strong="H3605"\w* \w rises|strong="H6965"\w* \w against|strong="H5921"\w* \w you|strong="H3605"\w* \w in|strong="H5921"\w* \w judgment|strong="H4941"\w*. +\q1 \w This|strong="H2063"\w* \w is|strong="H3068"\w* \w the|strong="H3605"\w* \w heritage|strong="H5159"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w servants|strong="H5650"\w*, +\q2 \w and|strong="H6965"\w* \w their|strong="H3605"\w* \w righteousness|strong="H6666"\w* \w is|strong="H3068"\w* \w of|strong="H3068"\w* \w me|strong="H5921"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\c 55 +\q1 +\v 1 “\w Hey|strong="H1945"\w*! \w Come|strong="H3212"\w*, \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w thirsts|strong="H6771"\w*, \w to|strong="H3212"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w*! +\q2 \w Come|strong="H3212"\w*, \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w has|strong="H3605"\w* \w no|strong="H3808"\w* \w money|strong="H3701"\w*, \w buy|strong="H7666"\w*, \w and|strong="H3701"\w* eat! +\q2 Yes, \w come|strong="H3212"\w*, \w buy|strong="H7666"\w* \w wine|strong="H3196"\w* \w and|strong="H3701"\w* \w milk|strong="H2461"\w* \w without|strong="H3808"\w* \w money|strong="H3701"\w* \w and|strong="H3701"\w* \w without|strong="H3808"\w* \w price|strong="H4242"\w*. +\q1 +\v 2 \w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H3808"\w* \w spend|strong="H8254"\w* \w money|strong="H3701"\w* \w for|strong="H5315"\w* \w that|strong="H8085"\w* \w which|strong="H4100"\w* \w is|strong="H4100"\w* \w not|strong="H3808"\w* \w bread|strong="H3899"\w*, +\q2 \w and|strong="H3701"\w* \w your|strong="H8085"\w* \w labor|strong="H3018"\w* \w for|strong="H5315"\w* \w that|strong="H8085"\w* \w which|strong="H4100"\w* doesn’t \w satisfy|strong="H7654"\w*? +\q1 \w Listen|strong="H8085"\w* \w diligently|strong="H8085"\w* \w to|strong="H8085"\w* \w me|strong="H5315"\w*, \w and|strong="H3701"\w* \w eat|strong="H3899"\w* \w that|strong="H8085"\w* \w which|strong="H4100"\w* \w is|strong="H4100"\w* \w good|strong="H2896"\w*, +\q2 \w and|strong="H3701"\w* \w let|strong="H3808"\w* \w your|strong="H8085"\w* \w soul|strong="H5315"\w* \w delight|strong="H6026"\w* itself \w in|strong="H8085"\w* richness. +\q1 +\v 3 \w Turn|strong="H5186"\w* \w your|strong="H5186"\w* \w ear|strong="H8085"\w*, \w and|strong="H3212"\w* \w come|strong="H3212"\w* \w to|strong="H3212"\w* \w me|strong="H5315"\w*. +\q2 \w Hear|strong="H8085"\w*, \w and|strong="H3212"\w* \w your|strong="H5186"\w* \w soul|strong="H5315"\w* \w will|strong="H5315"\w* \w live|strong="H2421"\w*. +\q2 \w I|strong="H5315"\w* \w will|strong="H5315"\w* \w make|strong="H3772"\w* \w an|strong="H3772"\w* \w everlasting|strong="H5769"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w you|strong="H3772"\w*, even \w the|strong="H8085"\w* sure \w mercies|strong="H2617"\w* \w of|strong="H1285"\w* \w David|strong="H1732"\w*. +\q1 +\v 4 \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w have|strong="H5414"\w* \w given|strong="H5414"\w* \w him|strong="H5414"\w* \w for|strong="H5414"\w* \w a|strong="H3068"\w* \w witness|strong="H5707"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w peoples|strong="H3816"\w*, +\q2 \w a|strong="H3068"\w* \w leader|strong="H5057"\w* \w and|strong="H5057"\w* \w commander|strong="H6680"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w peoples|strong="H3816"\w*. +\q1 +\v 5 \w Behold|strong="H2005"\w*, \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w call|strong="H7121"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* don’t \w know|strong="H3045"\w*; +\q2 \w and|strong="H3478"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w that|strong="H3588"\w* didn’t \w know|strong="H3045"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w run|strong="H7323"\w* \w to|strong="H3478"\w* \w you|strong="H3588"\w*, +\q2 \w because|strong="H3588"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 \w and|strong="H3478"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*; +\q2 \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w glorified|strong="H6286"\w* \w you|strong="H3588"\w*.” +\b +\q1 +\v 6 \w Seek|strong="H1875"\w* \w Yahweh|strong="H3068"\w* \w while|strong="H1961"\w* \w he|strong="H3068"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w found|strong="H4672"\w*. +\q2 \w Call|strong="H7121"\w* \w on|strong="H3068"\w* \w him|strong="H7121"\w* \w while|strong="H1961"\w* \w he|strong="H3068"\w* \w is|strong="H3068"\w* \w near|strong="H7138"\w*. +\q1 +\v 7 \w Let|strong="H5800"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w* \w forsake|strong="H5800"\w* \w his|strong="H3068"\w* \w way|strong="H1870"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H3588"\w* unrighteous \w man|strong="H7563"\w* \w his|strong="H3068"\w* \w thoughts|strong="H4284"\w*. +\q1 \w Let|strong="H5800"\w* \w him|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w have|strong="H7355"\w* \w mercy|strong="H7355"\w* \w on|strong="H1870"\w* \w him|strong="H7725"\w*, +\q2 \w to|strong="H7725"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* freely \w pardon|strong="H5545"\w*. +\b +\q1 +\v 8 “\w For|strong="H3588"\w* \w my|strong="H3068"\w* \w thoughts|strong="H4284"\w* \w are|strong="H3068"\w* \w not|strong="H3808"\w* \w your|strong="H3068"\w* \w thoughts|strong="H4284"\w*, +\q2 \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w ways|strong="H1870"\w* \w are|strong="H3068"\w* \w not|strong="H3808"\w* \w my|strong="H3068"\w* \w ways|strong="H1870"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 9 “\w For|strong="H3588"\w* \w as|strong="H3651"\w* \w the|strong="H3588"\w* \w heavens|strong="H8064"\w* \w are|strong="H8064"\w* \w higher|strong="H1361"\w* \w than|strong="H3588"\w* \w the|strong="H3588"\w* \w earth|strong="H8064"\w*, +\q2 \w so|strong="H3651"\w* \w are|strong="H8064"\w* \w my|strong="H3588"\w* \w ways|strong="H1870"\w* \w higher|strong="H1361"\w* \w than|strong="H3588"\w* \w your|strong="H3588"\w* \w ways|strong="H1870"\w*, +\q2 \w and|strong="H8064"\w* \w my|strong="H3588"\w* \w thoughts|strong="H4284"\w* \w than|strong="H3588"\w* \w your|strong="H3588"\w* \w thoughts|strong="H4284"\w*. +\q1 +\v 10 \w For|strong="H3588"\w* \w as|strong="H3588"\w* \w the|strong="H3588"\w* \w rain|strong="H1653"\w* \w comes|strong="H3381"\w* \w down|strong="H3381"\w* \w and|strong="H7725"\w* \w the|strong="H3588"\w* \w snow|strong="H7950"\w* \w from|strong="H4480"\w* \w the|strong="H3588"\w* \w sky|strong="H8064"\w*, +\q2 \w and|strong="H7725"\w* doesn’t \w return|strong="H7725"\w* \w there|strong="H8033"\w*, \w but|strong="H3588"\w* \w waters|strong="H7301"\w* \w the|strong="H3588"\w* \w earth|strong="H8064"\w*, +\q2 \w and|strong="H7725"\w* \w makes|strong="H5414"\w* \w it|strong="H5414"\w* \w grow|strong="H6779"\w* \w and|strong="H7725"\w* \w bud|strong="H6779"\w*, +\q2 \w and|strong="H7725"\w* \w gives|strong="H5414"\w* \w seed|strong="H2233"\w* \w to|strong="H7725"\w* \w the|strong="H3588"\w* \w sower|strong="H2232"\w* \w and|strong="H7725"\w* \w bread|strong="H3899"\w* \w to|strong="H7725"\w* \w the|strong="H3588"\w* eater; +\q1 +\v 11 \w so|strong="H3651"\w* \w is|strong="H1697"\w* \w my|strong="H7971"\w* \w word|strong="H1697"\w* \w that|strong="H3588"\w* \w goes|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1697"\w* \w my|strong="H7971"\w* \w mouth|strong="H6310"\w*: +\q2 \w it|strong="H3588"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w me|strong="H7971"\w* \w void|strong="H7387"\w*, +\q2 \w but|strong="H3588"\w* \w it|strong="H3588"\w* \w will|strong="H1961"\w* \w accomplish|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H1697"\w* \w I|strong="H3588"\w* \w please|strong="H2654"\w*, +\q2 \w and|strong="H7971"\w* \w it|strong="H3588"\w* \w will|strong="H1961"\w* \w prosper|strong="H6743"\w* \w in|strong="H6213"\w* \w the|strong="H3588"\w* \w thing|strong="H1697"\w* \w I|strong="H3588"\w* \w sent|strong="H7971"\w* \w it|strong="H3588"\w* \w to|strong="H7725"\w* \w do|strong="H6213"\w*. +\q1 +\v 12 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H7704"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w with|strong="H6440"\w* \w joy|strong="H8057"\w*, +\q2 \w and|strong="H6086"\w* \w be|strong="H6086"\w* \w led|strong="H2986"\w* \w out|strong="H3318"\w* \w with|strong="H6440"\w* \w peace|strong="H7965"\w*. +\q1 \w The|strong="H3605"\w* \w mountains|strong="H2022"\w* \w and|strong="H6086"\w* \w the|strong="H3605"\w* \w hills|strong="H1389"\w* \w will|strong="H7704"\w* \w break|strong="H6476"\w* \w out|strong="H3318"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w* \w into|strong="H6476"\w* \w singing|strong="H7440"\w*; +\q2 \w and|strong="H6086"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w trees|strong="H6086"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w fields|strong="H7704"\w* \w will|strong="H7704"\w* \w clap|strong="H4222"\w* \w their|strong="H3605"\w* \w hands|strong="H3709"\w*. +\q1 +\v 13 \w Instead|strong="H8478"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w thorn|strong="H5285"\w* \w the|strong="H3068"\w* \w cypress|strong="H1265"\w* \w tree|strong="H1265"\w* \w will|strong="H3068"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w*; +\q2 \w and|strong="H3068"\w* \w instead|strong="H8478"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w brier|strong="H5636"\w* \w the|strong="H3068"\w* \w myrtle|strong="H1918"\w* \w tree|strong="H1265"\w* \w will|strong="H3068"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w*. +\q1 \w It|strong="H8034"\w* \w will|strong="H3068"\w* \w make|strong="H3772"\w* \w a|strong="H3068"\w* \w name|strong="H8034"\w* \w for|strong="H8478"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w for|strong="H8478"\w* \w an|strong="H1961"\w* \w everlasting|strong="H5769"\w* sign \w that|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*.” +\c 56 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w Maintain|strong="H6213"\w* \w justice|strong="H4941"\w* +\q2 \w and|strong="H3068"\w* \w do|strong="H6213"\w* \w what|strong="H6213"\w* \w is|strong="H3068"\w* \w right|strong="H4941"\w*, +\q1 \w for|strong="H3588"\w* \w my|strong="H8104"\w* \w salvation|strong="H3444"\w* \w is|strong="H3068"\w* \w near|strong="H7138"\w* +\q2 \w and|strong="H3068"\w* \w my|strong="H8104"\w* \w righteousness|strong="H6666"\w* \w will|strong="H3068"\w* \w soon|strong="H7138"\w* \w be|strong="H3068"\w* \w revealed|strong="H1540"\w*. +\q1 +\v 2 Blessed \w is|strong="H3027"\w* \w the|strong="H3605"\w* \w man|strong="H1121"\w* \w who|strong="H3605"\w* \w does|strong="H6213"\w* \w this|strong="H2063"\w*, +\q2 \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w* \w who|strong="H3605"\w* \w holds|strong="H2388"\w* \w it|strong="H6213"\w* \w fast|strong="H2388"\w*; +\q1 \w who|strong="H3605"\w* \w keeps|strong="H8104"\w* \w the|strong="H3605"\w* \w Sabbath|strong="H7676"\w* \w without|strong="H6213"\w* \w profaning|strong="H2490"\w* \w it|strong="H6213"\w* +\q2 \w and|strong="H1121"\w* \w keeps|strong="H8104"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w* \w from|strong="H3027"\w* \w doing|strong="H6213"\w* \w any|strong="H3605"\w* \w evil|strong="H7451"\w*.” +\b +\q1 +\v 3 Let no \w foreigner|strong="H1121"\w* \w who|strong="H5971"\w* \w has|strong="H3068"\w* \w joined|strong="H3867"\w* \w himself|strong="H3068"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* speak, saying, +\q2 “\w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w surely|strong="H1121"\w* separate \w me|strong="H5921"\w* \w from|strong="H5921"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*.” +\q2 \w Do|strong="H3068"\w* \w not|strong="H5971"\w* let \w the|strong="H5921"\w* \w eunuch|strong="H5631"\w* say, “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H3068"\w* \w a|strong="H3068"\w* \w dry|strong="H3002"\w* \w tree|strong="H6086"\w*.” +\b +\q1 +\v 4 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w To|strong="H3068"\w* \w the|strong="H3588"\w* \w eunuchs|strong="H5631"\w* \w who|strong="H3068"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w Sabbaths|strong="H7676"\w*, +\q2 choose \w the|strong="H3588"\w* things \w that|strong="H3588"\w* \w please|strong="H2654"\w* \w me|strong="H8104"\w*, +\q2 \w and|strong="H3068"\w* \w hold|strong="H2388"\w* \w fast|strong="H2388"\w* \w to|strong="H3068"\w* \w my|strong="H8104"\w* \w covenant|strong="H1285"\w*, +\q1 +\v 5 \w I|strong="H5414"\w* \w will|strong="H1121"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w in|strong="H1004"\w* \w my|strong="H5414"\w* \w house|strong="H1004"\w* \w and|strong="H1121"\w* \w within|strong="H1004"\w* \w my|strong="H5414"\w* \w walls|strong="H2346"\w* \w a|strong="H3068"\w* \w memorial|strong="H3027"\w* \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w name|strong="H8034"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w of|strong="H1121"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w daughters|strong="H1323"\w*. +\q2 \w I|strong="H5414"\w* \w will|strong="H1121"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w an|strong="H5414"\w* \w everlasting|strong="H5769"\w* \w name|strong="H8034"\w* \w that|strong="H5414"\w* \w will|strong="H1121"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*. +\b +\q1 +\v 6 \w Also|strong="H3068"\w* \w the|strong="H3605"\w* \w foreigners|strong="H1121"\w* \w who|strong="H3605"\w* \w join|strong="H3867"\w* \w themselves|strong="H2388"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* +\q2 \w to|strong="H3068"\w* \w serve|strong="H8334"\w* \w him|strong="H5921"\w*, +\q1 \w and|strong="H1121"\w* \w to|strong="H3068"\w* love \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*, +\q2 \w to|strong="H3068"\w* \w be|strong="H1961"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w*, +\q1 \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w keeps|strong="H8104"\w* \w the|strong="H3605"\w* \w Sabbath|strong="H7676"\w* \w from|strong="H5921"\w* \w profaning|strong="H2490"\w* \w it|strong="H5921"\w*, +\q2 \w and|strong="H1121"\w* \w holds|strong="H2388"\w* \w fast|strong="H2388"\w* \w my|strong="H8104"\w* \w covenant|strong="H1285"\w*, +\q1 +\v 7 \w I|strong="H3588"\w* \w will|strong="H5971"\w* \w bring|strong="H7121"\w* \w these|strong="H7121"\w* \w to|strong="H5921"\w* \w my|strong="H3605"\w* \w holy|strong="H6944"\w* \w mountain|strong="H2022"\w*, +\q2 \w and|strong="H1004"\w* \w make|strong="H8055"\w* \w them|strong="H5921"\w* \w joyful|strong="H8055"\w* \w in|strong="H5921"\w* \w my|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w prayer|strong="H8605"\w*. +\q1 \w Their|strong="H3605"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w and|strong="H1004"\w* \w their|strong="H3605"\w* \w sacrifices|strong="H2077"\w* \w will|strong="H5971"\w* \w be|strong="H1004"\w* \w accepted|strong="H7522"\w* \w on|strong="H5921"\w* \w my|strong="H3605"\w* \w altar|strong="H4196"\w*; +\q2 \w for|strong="H3588"\w* \w my|strong="H3605"\w* \w house|strong="H1004"\w* \w will|strong="H5971"\w* \w be|strong="H1004"\w* \w called|strong="H7121"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w prayer|strong="H8605"\w* \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w peoples|strong="H5971"\w*.” +\q1 +\v 8 \w The|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H3478"\w* \w gathers|strong="H6908"\w* \w the|strong="H5002"\w* \w outcasts|strong="H1760"\w* \w of|strong="H5921"\w* \w Israel|strong="H3478"\w*, \w says|strong="H5002"\w*, +\q2 “\w I|strong="H5921"\w* \w will|strong="H3478"\w* \w yet|strong="H5750"\w* \w gather|strong="H6908"\w* others \w to|strong="H3478"\w* \w him|strong="H5921"\w*, +\q2 \w in|strong="H5921"\w* \w addition|strong="H5921"\w* \w to|strong="H3478"\w* \w his|strong="H5921"\w* own \w who|strong="H3478"\w* \w are|strong="H3478"\w* \w gathered|strong="H6908"\w*.” +\b +\q1 +\v 9 \w All|strong="H3605"\w* \w you|strong="H3605"\w* \w animals|strong="H2416"\w* \w of|strong="H7704"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*, +\q2 come \w to|strong="H7704"\w* devour, +\q2 \w all|strong="H3605"\w* \w you|strong="H3605"\w* \w animals|strong="H2416"\w* \w in|strong="H3605"\w* \w the|strong="H3605"\w* \w forest|strong="H3293"\w*. +\q1 +\v 10 \w His|strong="H3605"\w* \w watchmen|strong="H6822"\w* \w are|strong="H3045"\w* \w blind|strong="H5787"\w*. +\q2 \w They|strong="H3808"\w* \w are|strong="H3045"\w* \w all|strong="H3605"\w* \w without|strong="H3808"\w* \w knowledge|strong="H3045"\w*. +\q1 \w They|strong="H3808"\w* \w are|strong="H3045"\w* \w all|strong="H3605"\w* mute \w dogs|strong="H3611"\w*. +\q2 \w They|strong="H3808"\w* \w can|strong="H3201"\w*’t \w bark|strong="H5024"\w*— +\q2 dreaming, \w lying|strong="H7901"\w* \w down|strong="H7901"\w*, loving \w to|strong="H3201"\w* \w slumber|strong="H5123"\w*. +\q1 +\v 11 Yes, \w the|strong="H3605"\w* \w dogs|strong="H3611"\w* \w are|strong="H1992"\w* \w greedy|strong="H5315"\w*. +\q2 \w They|strong="H1992"\w* \w can|strong="H3045"\w* \w never|strong="H3808"\w* \w have|strong="H3045"\w* \w enough|strong="H7654"\w*. +\q1 \w They|strong="H1992"\w* \w are|strong="H1992"\w* \w shepherds|strong="H7462"\w* \w who|strong="H3605"\w* \w can|strong="H3045"\w*’t \w understand|strong="H3045"\w*. +\q2 \w They|strong="H1992"\w* \w have|strong="H3045"\w* \w all|strong="H3605"\w* \w turned|strong="H6437"\w* \w to|strong="H1870"\w* \w their|strong="H3605"\w* \w own|strong="H5315"\w* \w way|strong="H1870"\w*, +\q2 \w each|strong="H3605"\w* \w one|strong="H3605"\w* \w to|strong="H1870"\w* \w his|strong="H3605"\w* \w gain|strong="H1215"\w*, \w from|strong="H5315"\w* \w every|strong="H3605"\w* \w quarter|strong="H7097"\w*. +\q1 +\v 12 “\w Come|strong="H1961"\w*,” \w they|strong="H3117"\w* say, “\w I|strong="H3117"\w* \w will|strong="H1961"\w* \w get|strong="H3947"\w* \w wine|strong="H3196"\w*, +\q2 \w and|strong="H3117"\w* \w we|strong="H3068"\w* \w will|strong="H1961"\w* \w fill|strong="H5433"\w* ourselves \w with|strong="H3117"\w* \w strong|strong="H7941"\w* \w drink|strong="H7941"\w*; +\q2 \w and|strong="H3117"\w* \w tomorrow|strong="H4279"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H3117"\w* \w today|strong="H3117"\w*, +\q2 \w great|strong="H1419"\w* beyond \w measure|strong="H3966"\w*.” +\c 57 +\q1 +\v 1 \w The|strong="H6440"\w* \w righteous|strong="H6662"\w* perish, +\q2 \w and|strong="H6440"\w* \w no|strong="H7760"\w* \w one|strong="H6662"\w* \w lays|strong="H7760"\w* \w it|strong="H7760"\w* \w to|strong="H5921"\w* \w heart|strong="H3820"\w*. +\q1 \w Merciful|strong="H2617"\w* \w men|strong="H7451"\w* \w are|strong="H6662"\w* \w taken|strong="H7760"\w* \w away|strong="H7451"\w*, +\q2 \w and|strong="H6440"\w* \w no|strong="H7760"\w* \w one|strong="H6662"\w* considers \w that|strong="H3588"\w* \w the|strong="H6440"\w* \w righteous|strong="H6662"\w* \w is|strong="H2617"\w* \w taken|strong="H7760"\w* \w away|strong="H7451"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w evil|strong="H7451"\w*. +\q1 +\v 2 \w He|strong="H5921"\w* enters \w into|strong="H1980"\w* \w peace|strong="H7965"\w*. +\q2 \w They|strong="H5921"\w* \w rest|strong="H5117"\w* \w in|strong="H5921"\w* \w their|strong="H5921"\w* \w beds|strong="H4904"\w*, +\q2 each one \w who|strong="H1980"\w* \w walks|strong="H1980"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w uprightness|strong="H5228"\w*. +\b +\q1 +\v 3 “\w But|strong="H7126"\w* \w draw|strong="H7126"\w* \w near|strong="H7126"\w* \w here|strong="H2008"\w*, \w you|strong="H7126"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w sorceress|strong="H6049"\w*, +\q2 \w you|strong="H7126"\w* \w offspring|strong="H2233"\w* \w of|strong="H1121"\w* \w adulterers|strong="H5003"\w* \w and|strong="H1121"\w* \w prostitutes|strong="H2181"\w*. +\q1 +\v 4 \w Whom|strong="H4310"\w* \w do|strong="H8267"\w* \w you|strong="H5921"\w* mock? +\q2 \w Against|strong="H5921"\w* \w whom|strong="H4310"\w* \w do|strong="H8267"\w* \w you|strong="H5921"\w* \w make|strong="H7337"\w* \w a|strong="H3068"\w* \w wide|strong="H7337"\w* \w mouth|strong="H6310"\w* +\q2 \w and|strong="H6310"\w* stick \w out|strong="H5921"\w* \w your|strong="H5921"\w* \w tongue|strong="H3956"\w*? +\q1 Aren’t \w you|strong="H5921"\w* \w children|strong="H3206"\w* \w of|strong="H2233"\w* disobedience +\q2 \w and|strong="H6310"\w* \w offspring|strong="H2233"\w* \w of|strong="H2233"\w* \w falsehood|strong="H8267"\w*, +\q1 +\v 5 \w you|strong="H3605"\w* \w who|strong="H3605"\w* \w inflame|strong="H2552"\w* \w yourselves|strong="H3605"\w* \w among|strong="H8478"\w* \w the|strong="H3605"\w* oaks, +\q2 \w under|strong="H8478"\w* \w every|strong="H3605"\w* \w green|strong="H7488"\w* \w tree|strong="H6086"\w*; +\q1 \w who|strong="H3605"\w* \w kill|strong="H7819"\w* \w the|strong="H3605"\w* \w children|strong="H3206"\w* \w in|strong="H6086"\w* \w the|strong="H3605"\w* \w valleys|strong="H5158"\w*, +\q2 \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w clefts|strong="H5585"\w* \w of|strong="H6086"\w* \w the|strong="H3605"\w* \w rocks|strong="H5553"\w*? +\q1 +\v 6 \w Among|strong="H5921"\w* \w the|strong="H5921"\w* \w smooth|strong="H2511"\w* stones \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w valley|strong="H5158"\w* \w is|strong="H1571"\w* \w your|strong="H5921"\w* \w portion|strong="H2506"\w*. +\q2 \w They|strong="H1992"\w*, \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w your|strong="H5921"\w* \w lot|strong="H1486"\w*. +\q1 \w You|strong="H5921"\w* \w have|strong="H1571"\w* \w even|strong="H1571"\w* \w poured|strong="H8210"\w* \w a|strong="H3068"\w* \w drink|strong="H5262"\w* \w offering|strong="H4503"\w* \w to|strong="H5927"\w* \w them|strong="H1992"\w*. +\q2 \w You|strong="H5921"\w* \w have|strong="H1571"\w* \w offered|strong="H5927"\w* \w an|strong="H5927"\w* \w offering|strong="H4503"\w*. +\q2 \w Shall|strong="H1571"\w* \w I|strong="H5921"\w* \w be|strong="H1571"\w* \w appeased|strong="H5162"\w* \w for|strong="H5921"\w* \w these|strong="H1992"\w* \w things|strong="H1992"\w*? +\q1 +\v 7 \w On|strong="H5921"\w* \w a|strong="H3068"\w* \w high|strong="H1364"\w* \w and|strong="H8033"\w* \w lofty|strong="H1364"\w* \w mountain|strong="H2022"\w* \w you|strong="H5921"\w* \w have|strong="H1571"\w* \w set|strong="H7760"\w* \w your|strong="H5921"\w* \w bed|strong="H4904"\w*. +\q2 \w You|strong="H5921"\w* \w also|strong="H1571"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w there|strong="H8033"\w* \w to|strong="H5927"\w* \w offer|strong="H5927"\w* \w sacrifice|strong="H2077"\w*. +\q1 +\v 8 \w You|strong="H3588"\w* \w have|strong="H3027"\w* \w set|strong="H7760"\w* \w up|strong="H5927"\w* \w your|strong="H7760"\w* \w memorial|strong="H2146"\w* behind \w the|strong="H3588"\w* \w doors|strong="H1817"\w* \w and|strong="H3027"\w* \w the|strong="H3588"\w* \w posts|strong="H4201"\w*, +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3027"\w* \w exposed|strong="H1540"\w* yourself \w to|strong="H5927"\w* someone besides \w me|strong="H7760"\w*, +\q2 \w and|strong="H3027"\w* \w have|strong="H3027"\w* \w gone|strong="H5927"\w* \w up|strong="H5927"\w*. +\q1 \w You|strong="H3588"\w* \w have|strong="H3027"\w* \w enlarged|strong="H7337"\w* \w your|strong="H7760"\w* \w bed|strong="H4904"\w* +\q2 \w and|strong="H3027"\w* \w made|strong="H3772"\w* \w you|strong="H3588"\w* \w a|strong="H3068"\w* covenant \w with|strong="H3027"\w* \w them|strong="H1992"\w*. +\q2 \w You|strong="H3588"\w* loved \w what|strong="H5927"\w* \w you|strong="H3588"\w* \w saw|strong="H2372"\w* \w on|strong="H7760"\w* \w their|strong="H7760"\w* \w bed|strong="H4904"\w*. +\q1 +\v 9 \w You|strong="H7971"\w* \w went|strong="H4428"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w king|strong="H4428"\w* \w with|strong="H4428"\w* \w oil|strong="H8081"\w*, +\q2 \w increased|strong="H7235"\w* \w your|strong="H7235"\w* \w perfumes|strong="H7547"\w*, +\q2 \w sent|strong="H7971"\w* \w your|strong="H7235"\w* \w ambassadors|strong="H6735"\w* \w far|strong="H5704"\w* \w off|strong="H7350"\w*, +\q2 \w and|strong="H7971"\w* degraded yourself \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Sheol|strong="H7585"\w*.\f + \fr 57:9 \ft Sheol is the place of the dead.\f* +\q1 +\v 10 \w You|strong="H5921"\w* \w were|strong="H3027"\w* \w wearied|strong="H3021"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w length|strong="H5921"\w* \w of|strong="H3027"\w* \w your|strong="H5921"\w* \w ways|strong="H1870"\w*; +\q2 \w yet|strong="H3808"\w* \w you|strong="H5921"\w* didn’t say, ‘\w It|strong="H5921"\w* \w is|strong="H3027"\w* \w in|strong="H5921"\w* vain.’ +\q1 \w You|strong="H5921"\w* \w found|strong="H4672"\w* \w a|strong="H3068"\w* reviving \w of|strong="H3027"\w* \w your|strong="H5921"\w* \w strength|strong="H3027"\w*; +\q2 \w therefore|strong="H3651"\w* \w you|strong="H5921"\w* weren’t \w faint|strong="H2470"\w*. +\b +\q1 +\v 11 “\w Whom|strong="H4310"\w* \w have|strong="H3588"\w* \w you|strong="H3588"\w* dreaded \w and|strong="H5769"\w* \w feared|strong="H3372"\w*, +\q2 \w so|strong="H3808"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w lie|strong="H3576"\w*, +\q2 \w and|strong="H5769"\w* \w have|strong="H3588"\w* \w not|strong="H3808"\w* \w remembered|strong="H2142"\w* \w me|strong="H5921"\w*, \w nor|strong="H3808"\w* \w laid|strong="H7760"\w* \w it|strong="H7760"\w* \w to|strong="H5921"\w* \w your|strong="H5921"\w* \w heart|strong="H3820"\w*? +\q1 Haven’t \w I|strong="H3588"\w* held \w my|strong="H7760"\w* \w peace|strong="H2814"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w long|strong="H5769"\w* \w time|strong="H5769"\w*, +\q2 \w and|strong="H5769"\w* \w you|strong="H3588"\w* don’t \w fear|strong="H3372"\w* \w me|strong="H5921"\w*? +\q1 +\v 12 \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w declare|strong="H5046"\w* \w your|strong="H3808"\w* \w righteousness|strong="H6666"\w*; +\q2 \w and|strong="H6666"\w* \w as|strong="H4639"\w* \w for|strong="H3808"\w* \w your|strong="H3808"\w* \w works|strong="H4639"\w*, \w they|strong="H3808"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w benefit|strong="H3276"\w* \w you|strong="H5046"\w*. +\q1 +\v 13 \w When|strong="H5375"\w* \w you|strong="H3605"\w* \w cry|strong="H2199"\w*, +\q2 let \w those|strong="H3605"\w* whom \w you|strong="H3605"\w* \w have|strong="H5157"\w* \w gathered|strong="H2199"\w* \w deliver|strong="H5337"\w* \w you|strong="H3605"\w*, +\q1 \w but|strong="H3947"\w* \w the|strong="H3605"\w* \w wind|strong="H7307"\w* \w will|strong="H7307"\w* \w take|strong="H3947"\w* \w them|strong="H3947"\w*. +\q2 \w A|strong="H3068"\w* \w breath|strong="H7307"\w* \w will|strong="H7307"\w* \w carry|strong="H5375"\w* \w them|strong="H3947"\w* \w all|strong="H3605"\w* \w away|strong="H3947"\w*, +\q1 \w but|strong="H3947"\w* \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w takes|strong="H3947"\w* \w refuge|strong="H2620"\w* \w in|strong="H3947"\w* \w me|strong="H3947"\w* \w will|strong="H7307"\w* \w possess|strong="H3423"\w* \w the|strong="H3605"\w* land, +\q2 \w and|strong="H2022"\w* \w will|strong="H7307"\w* \w inherit|strong="H5157"\w* \w my|strong="H3605"\w* \w holy|strong="H6944"\w* \w mountain|strong="H2022"\w*.” +\b +\q1 +\v 14 \w He|strong="H5971"\w* \w will|strong="H5971"\w* say, “\w Build|strong="H5549"\w* \w up|strong="H7311"\w*, \w build|strong="H5549"\w* \w up|strong="H7311"\w*, \w prepare|strong="H6437"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w*! +\q2 \w Remove|strong="H7311"\w* \w the|strong="H1870"\w* stumbling-block \w out|strong="H6437"\w* \w of|strong="H1870"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w my|strong="H7311"\w* \w people|strong="H5971"\w*.” +\q1 +\v 15 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w high|strong="H4791"\w* \w and|strong="H3820"\w* \w lofty|strong="H7311"\w* \w One|strong="H6918"\w* \w who|strong="H3588"\w* inhabits \w eternity|strong="H5703"\w*, +\q2 \w whose|strong="H8034"\w* \w name|strong="H8034"\w* \w is|strong="H3820"\w* \w Holy|strong="H6918"\w*, \w says|strong="H3541"\w*: +\q1 “\w I|strong="H3588"\w* \w dwell|strong="H7931"\w* \w in|strong="H7931"\w* \w the|strong="H3588"\w* \w high|strong="H4791"\w* \w and|strong="H3820"\w* \w holy|strong="H6918"\w* \w place|strong="H7931"\w*, \w with|strong="H3820"\w* \w him|strong="H5375"\w* \w also|strong="H3541"\w* \w who|strong="H3588"\w* \w is|strong="H3820"\w* \w of|strong="H7307"\w* \w a|strong="H3068"\w* \w contrite|strong="H1792"\w* \w and|strong="H3820"\w* \w humble|strong="H8217"\w* \w spirit|strong="H7307"\w*, +\q2 \w to|strong="H3820"\w* \w revive|strong="H2421"\w* \w the|strong="H3588"\w* \w spirit|strong="H7307"\w* \w of|strong="H7307"\w* \w the|strong="H3588"\w* \w humble|strong="H8217"\w*, +\q2 \w and|strong="H3820"\w* \w to|strong="H3820"\w* \w revive|strong="H2421"\w* \w the|strong="H3588"\w* \w heart|strong="H3820"\w* \w of|strong="H7307"\w* \w the|strong="H3588"\w* \w contrite|strong="H1792"\w*. +\q1 +\v 16 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H7307"\w* \w not|strong="H3808"\w* \w contend|strong="H7378"\w* \w forever|strong="H5769"\w*, \w neither|strong="H3808"\w* \w will|strong="H7307"\w* \w I|strong="H3588"\w* \w always|strong="H5769"\w* \w be|strong="H3808"\w* \w angry|strong="H7107"\w*; +\q2 \w for|strong="H3588"\w* \w the|strong="H6440"\w* \w spirit|strong="H7307"\w* \w would|strong="H6213"\w* \w faint|strong="H5848"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*, +\q2 \w and|strong="H5769"\w* \w the|strong="H6440"\w* \w souls|strong="H5397"\w* \w whom|strong="H6440"\w* \w I|strong="H3588"\w* \w have|strong="H3588"\w* \w made|strong="H6213"\w*. +\q1 +\v 17 \w I|strong="H3212"\w* \w was|strong="H3820"\w* \w angry|strong="H7107"\w* \w because|strong="H1870"\w* \w of|strong="H1870"\w* \w the|strong="H5221"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1870"\w* \w his|strong="H5221"\w* \w covetousness|strong="H1215"\w* \w and|strong="H3212"\w* \w struck|strong="H5221"\w* \w him|strong="H5221"\w*. +\q2 \w I|strong="H3212"\w* \w hid|strong="H5641"\w* \w myself|strong="H3820"\w* \w and|strong="H3212"\w* \w was|strong="H3820"\w* \w angry|strong="H7107"\w*; +\q2 \w and|strong="H3212"\w* \w he|strong="H5221"\w* \w went|strong="H3212"\w* \w on|strong="H1870"\w* \w backsliding|strong="H7726"\w* \w in|strong="H3212"\w* \w the|strong="H5221"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w his|strong="H5221"\w* \w heart|strong="H3820"\w*. +\q1 +\v 18 \w I|strong="H7200"\w* \w have|strong="H7200"\w* \w seen|strong="H7200"\w* \w his|strong="H7200"\w* \w ways|strong="H1870"\w*, \w and|strong="H1870"\w* \w will|strong="H7999"\w* \w heal|strong="H7495"\w* \w him|strong="H7200"\w*. +\q2 \w I|strong="H7200"\w* \w will|strong="H7999"\w* \w lead|strong="H5148"\w* \w him|strong="H7200"\w* also, +\q2 \w and|strong="H1870"\w* \w restore|strong="H7999"\w* \w comforts|strong="H5150"\w* \w to|strong="H1870"\w* \w him|strong="H7200"\w* \w and|strong="H1870"\w* \w to|strong="H1870"\w* \w his|strong="H7200"\w* mourners. +\q1 +\v 19 \w I|strong="H7350"\w* \w create|strong="H1254"\w* \w the|strong="H3068"\w* \w fruit|strong="H5108"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w lips|strong="H8193"\w*: +\q2 \w Peace|strong="H7965"\w*, \w peace|strong="H7965"\w*, \w to|strong="H3068"\w* \w him|strong="H3068"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w far|strong="H7350"\w* \w off|strong="H7350"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w him|strong="H3068"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w near|strong="H7138"\w*,” +\q2 says \w Yahweh|strong="H3068"\w*; “\w and|strong="H3068"\w* \w I|strong="H7350"\w* \w will|strong="H3068"\w* \w heal|strong="H7495"\w* \w them|strong="H1254"\w*.” +\q1 +\v 20 \w But|strong="H3588"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w* \w are|strong="H7563"\w* \w like|strong="H3808"\w* \w the|strong="H3588"\w* \w troubled|strong="H1644"\w* \w sea|strong="H3220"\w*; +\q2 \w for|strong="H3588"\w* \w it|strong="H3588"\w* \w can|strong="H3201"\w*’t \w rest|strong="H8252"\w* \w and|strong="H4325"\w* \w its|strong="H3220"\w* \w waters|strong="H4325"\w* \w cast|strong="H4325"\w* \w up|strong="H1644"\w* \w mire|strong="H2916"\w* \w and|strong="H4325"\w* \w mud|strong="H2916"\w*. +\q1 +\v 21 “\w There|strong="H7965"\w* \w is|strong="H7563"\w* \w no|strong="H7563"\w* \w peace|strong="H7965"\w*”, says my God, +\q2 “\w for|strong="H7563"\w* \w the|strong="H7965"\w* \w wicked|strong="H7563"\w*.” +\c 58 +\q1 +\v 1 “\w Cry|strong="H7121"\w* \w aloud|strong="H7311"\w*! Don’t \w spare|strong="H2820"\w*! +\q2 \w Lift|strong="H7311"\w* \w up|strong="H7311"\w* \w your|strong="H5046"\w* \w voice|strong="H6963"\w* \w like|strong="H1004"\w* \w a|strong="H3068"\w* \w trumpet|strong="H7782"\w*! +\q1 \w Declare|strong="H5046"\w* \w to|strong="H1004"\w* \w my|strong="H5046"\w* \w people|strong="H5971"\w* \w their|strong="H3290"\w* disobedience, +\q2 \w and|strong="H1004"\w* \w to|strong="H1004"\w* \w the|strong="H7121"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w* \w their|strong="H3290"\w* \w sins|strong="H2403"\w*. +\q1 +\v 2 \w Yet|strong="H3808"\w* \w they|strong="H3117"\w* \w seek|strong="H1875"\w* \w me|strong="H6213"\w* \w daily|strong="H3117"\w*, +\q2 \w and|strong="H3117"\w* \w delight|strong="H2654"\w* \w to|strong="H6213"\w* \w know|strong="H1847"\w* \w my|strong="H6213"\w* \w ways|strong="H1870"\w*. +\q1 \w As|strong="H3117"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w that|strong="H3117"\w* \w did|strong="H6213"\w* \w righteousness|strong="H6666"\w*, +\q2 \w and|strong="H3117"\w* didn’t \w forsake|strong="H5800"\w* \w the|strong="H6213"\w* \w ordinance|strong="H4941"\w* \w of|strong="H3117"\w* \w their|strong="H6213"\w* \w God|strong="H3808"\w*, +\q1 \w they|strong="H3117"\w* \w ask|strong="H7592"\w* \w of|strong="H3117"\w* \w me|strong="H6213"\w* \w righteous|strong="H6664"\w* \w judgments|strong="H4941"\w*. +\q2 \w They|strong="H3117"\w* \w delight|strong="H2654"\w* \w to|strong="H6213"\w* draw \w near|strong="H7132"\w* \w to|strong="H6213"\w* \w God|strong="H3808"\w*. +\q1 +\v 3 ‘\w Why|strong="H4100"\w* \w have|strong="H3045"\w* \w we|strong="H3068"\w* \w fasted|strong="H6684"\w*,’ \w they|strong="H3117"\w* say, ‘\w and|strong="H3117"\w* \w you|strong="H3605"\w* don’t \w see|strong="H7200"\w*? +\q2 \w Why|strong="H4100"\w* \w have|strong="H3045"\w* \w we|strong="H3068"\w* \w afflicted|strong="H6031"\w* \w our|strong="H3605"\w* \w soul|strong="H5315"\w*, \w and|strong="H3117"\w* \w you|strong="H3605"\w* don’t \w notice|strong="H3045"\w*?’ +\b +\q1 “\w Behold|strong="H2005"\w*, \w in|strong="H3117"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H3605"\w* \w fast|strong="H6685"\w* \w you|strong="H3605"\w* \w find|strong="H4672"\w* \w pleasure|strong="H2656"\w*, +\q2 \w and|strong="H3117"\w* \w oppress|strong="H6031"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* laborers. +\q1 +\v 4 \w Behold|strong="H2005"\w*, \w you|strong="H3117"\w* \w fast|strong="H6684"\w* \w for|strong="H3117"\w* \w strife|strong="H7379"\w* \w and|strong="H3117"\w* \w contention|strong="H7379"\w*, +\q2 \w and|strong="H3117"\w* \w to|strong="H3117"\w* \w strike|strong="H5221"\w* \w with|strong="H3117"\w* \w the|strong="H8085"\w* fist \w of|strong="H3117"\w* \w wickedness|strong="H7562"\w*. +\q2 \w You|strong="H3117"\w* don’t \w fast|strong="H6684"\w* \w today|strong="H3117"\w* \w so|strong="H3808"\w* \w as|strong="H3117"\w* \w to|strong="H3117"\w* \w make|strong="H8085"\w* \w your|strong="H8085"\w* \w voice|strong="H6963"\w* \w to|strong="H3117"\w* \w be|strong="H3808"\w* \w heard|strong="H8085"\w* \w on|strong="H3117"\w* \w high|strong="H4791"\w*. +\q1 +\v 5 \w Is|strong="H3068"\w* \w this|strong="H2088"\w* \w the|strong="H3068"\w* \w fast|strong="H6685"\w* \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w have|strong="H1961"\w* chosen? +\q2 \w A|strong="H3068"\w* \w day|strong="H3117"\w* \w for|strong="H7121"\w* \w a|strong="H3068"\w* \w man|strong="H5315"\w* \w to|strong="H3068"\w* \w humble|strong="H6031"\w* \w his|strong="H3068"\w* \w soul|strong="H5315"\w*? +\q1 \w Is|strong="H3068"\w* \w it|strong="H7121"\w* \w to|strong="H3068"\w* \w bow|strong="H3721"\w* \w down|strong="H3721"\w* \w his|strong="H3068"\w* \w head|strong="H7218"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* reed, +\q2 \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w spread|strong="H3331"\w* \w sackcloth|strong="H8242"\w* \w and|strong="H3068"\w* ashes under \w himself|strong="H5315"\w*? +\q1 \w Will|strong="H3068"\w* \w you|strong="H3117"\w* \w call|strong="H7121"\w* \w this|strong="H2088"\w* \w a|strong="H3068"\w* \w fast|strong="H6685"\w*, +\q2 \w and|strong="H3068"\w* \w an|strong="H1961"\w* \w acceptable|strong="H7522"\w* \w day|strong="H3117"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*? +\b +\q1 +\v 6 “Isn’t \w this|strong="H2088"\w* \w the|strong="H3605"\w* \w fast|strong="H6685"\w* \w that|strong="H3605"\w* \w I|strong="H2088"\w* \w have|strong="H3605"\w* chosen: +\q2 \w to|strong="H7971"\w* \w release|strong="H7971"\w* \w the|strong="H3605"\w* \w bonds|strong="H2784"\w* \w of|strong="H3605"\w* \w wickedness|strong="H7562"\w*, +\q2 \w to|strong="H7971"\w* \w undo|strong="H5425"\w* \w the|strong="H3605"\w* straps \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w yoke|strong="H4133"\w*, +\q2 \w to|strong="H7971"\w* \w let|strong="H7971"\w* \w the|strong="H3605"\w* \w oppressed|strong="H7533"\w* \w go|strong="H7971"\w* \w free|strong="H2670"\w*, +\q2 \w and|strong="H7971"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w break|strong="H5423"\w* \w every|strong="H3605"\w* \w yoke|strong="H4133"\w*? +\q1 +\v 7 Isn’t \w it|strong="H3588"\w* \w to|strong="H1004"\w* distribute \w your|strong="H7200"\w* \w bread|strong="H3899"\w* \w to|strong="H1004"\w* \w the|strong="H7200"\w* \w hungry|strong="H7457"\w*, +\q2 \w and|strong="H1004"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* bring \w the|strong="H7200"\w* \w poor|strong="H6041"\w* \w who|strong="H6041"\w* \w are|strong="H1004"\w* cast \w out|strong="H7200"\w* \w to|strong="H1004"\w* \w your|strong="H7200"\w* \w house|strong="H1004"\w*? +\q1 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w naked|strong="H6174"\w*, +\q2 \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w cover|strong="H3680"\w* \w him|strong="H7200"\w*; +\q2 \w and|strong="H1004"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w not|strong="H3808"\w* \w hide|strong="H5956"\w* yourself \w from|strong="H3899"\w* \w your|strong="H7200"\w* own \w flesh|strong="H1320"\w*? +\q1 +\v 8 \w Then|strong="H1980"\w* \w your|strong="H3068"\w* \w light|strong="H7837"\w* \w will|strong="H3068"\w* \w break|strong="H1234"\w* \w out|strong="H1980"\w* \w as|strong="H3068"\w* \w the|strong="H6440"\w* \w morning|strong="H7837"\w*, +\q2 \w and|strong="H1980"\w* \w your|strong="H3068"\w* healing \w will|strong="H3068"\w* appear \w quickly|strong="H4120"\w*; +\q1 \w then|strong="H1980"\w* \w your|strong="H3068"\w* \w righteousness|strong="H6664"\w* \w shall|strong="H3068"\w* \w go|strong="H1980"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, +\q2 \w and|strong="H1980"\w* \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w your|strong="H3068"\w* rear guard. +\q1 +\v 9 \w Then|strong="H6030"\w* \w you|strong="H7971"\w* \w will|strong="H3068"\w* \w call|strong="H7121"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w answer|strong="H6030"\w*. +\q2 \w You|strong="H7971"\w* \w will|strong="H3068"\w* \w cry|strong="H7121"\w* \w for|strong="H7121"\w* \w help|strong="H7768"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w say|strong="H1696"\w*, ‘\w Here|strong="H2005"\w* \w I|strong="H2005"\w* \w am|strong="H3068"\w*.’ +\b +\q1 “\w If|strong="H2005"\w* \w you|strong="H7971"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* \w among|strong="H8432"\w* \w you|strong="H7971"\w* \w the|strong="H8432"\w* \w yoke|strong="H4133"\w*, +\q2 finger \w pointing|strong="H7971"\w*, +\q2 \w and|strong="H3068"\w* \w speaking|strong="H1696"\w* wickedly; +\q1 +\v 10 \w and|strong="H5315"\w* if \w you|strong="H5315"\w* pour \w out|strong="H6329"\w* \w your|strong="H6031"\w* \w soul|strong="H5315"\w* \w to|strong="H5315"\w* \w the|strong="H7646"\w* \w hungry|strong="H7457"\w*, +\q2 \w and|strong="H5315"\w* \w satisfy|strong="H7646"\w* \w the|strong="H7646"\w* \w afflicted|strong="H6031"\w* \w soul|strong="H5315"\w*, +\q1 then \w your|strong="H6031"\w* light \w will|strong="H5315"\w* \w rise|strong="H2224"\w* \w in|strong="H5315"\w* \w darkness|strong="H2822"\w*, +\q2 \w and|strong="H5315"\w* \w your|strong="H6031"\w* \w obscurity|strong="H2822"\w* \w will|strong="H5315"\w* \w be|strong="H5315"\w* \w as|strong="H5315"\w* \w the|strong="H7646"\w* \w noonday|strong="H6672"\w*; +\q1 +\v 11 \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w guide|strong="H5148"\w* \w you|strong="H3808"\w* \w continually|strong="H8548"\w*, +\q2 \w satisfy|strong="H7646"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w* \w in|strong="H3068"\w* dry \w places|strong="H4161"\w*, +\q2 \w and|strong="H3068"\w* make \w your|strong="H3068"\w* \w bones|strong="H6106"\w* strong. +\q1 \w You|strong="H3808"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w watered|strong="H7302"\w* \w garden|strong="H1588"\w*, +\q2 \w and|strong="H3068"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w spring|strong="H4161"\w* \w of|strong="H3068"\w* \w water|strong="H4325"\w* +\q2 whose \w waters|strong="H4325"\w* don’t \w fail|strong="H3576"\w*. +\q1 +\v 12 \w Those|strong="H4480"\w* \w who|strong="H3427"\w* \w will|strong="H7725"\w* \w be|strong="H5769"\w* \w of|strong="H3427"\w* \w you|strong="H7725"\w* \w will|strong="H7725"\w* \w build|strong="H1129"\w* \w the|strong="H4480"\w* \w old|strong="H5769"\w* \w waste|strong="H2723"\w* \w places|strong="H2723"\w*. +\q2 \w You|strong="H7725"\w* \w will|strong="H7725"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w the|strong="H4480"\w* \w foundations|strong="H4146"\w* \w of|strong="H3427"\w* \w many|strong="H1755"\w* \w generations|strong="H1755"\w*. +\q1 \w You|strong="H7725"\w* \w will|strong="H7725"\w* \w be|strong="H5769"\w* \w called|strong="H7121"\w* \w Repairer|strong="H1443"\w* \w of|strong="H3427"\w* \w the|strong="H4480"\w* \w Breach|strong="H6556"\w*, +\q2 \w Restorer|strong="H7725"\w* \w of|strong="H3427"\w* \w Paths|strong="H5410"\w* \w with|strong="H3427"\w* Dwellings. +\b +\q1 +\v 13 “If \w you|strong="H3117"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w your|strong="H3068"\w* \w foot|strong="H7272"\w* \w from|strong="H7725"\w* \w the|strong="H6213"\w* \w Sabbath|strong="H7676"\w*, +\q2 \w from|strong="H7725"\w* \w doing|strong="H6213"\w* \w your|strong="H3068"\w* \w pleasure|strong="H2656"\w* \w on|strong="H3117"\w* \w my|strong="H3068"\w* \w holy|strong="H6944"\w* \w day|strong="H3117"\w*, +\q1 \w and|strong="H3068"\w* \w call|strong="H7121"\w* \w the|strong="H6213"\w* \w Sabbath|strong="H7676"\w* \w a|strong="H3068"\w* \w delight|strong="H2656"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H6213"\w* \w holy|strong="H6944"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w honorable|strong="H3513"\w*, +\q2 \w and|strong="H3068"\w* \w honor|strong="H3513"\w* \w it|strong="H7121"\w*, +\q2 \w not|strong="H6213"\w* \w doing|strong="H6213"\w* \w your|strong="H3068"\w* own \w ways|strong="H1870"\w*, +\q2 \w nor|strong="H3117"\w* \w finding|strong="H4672"\w* \w your|strong="H3068"\w* own \w pleasure|strong="H2656"\w*, +\q2 \w nor|strong="H3117"\w* \w speaking|strong="H1696"\w* \w your|strong="H3068"\w* own \w words|strong="H1697"\w*, +\q1 +\v 14 \w then|strong="H1696"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w delight|strong="H6026"\w* \w yourself|strong="H5921"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w make|strong="H3588"\w* \w you|strong="H3588"\w* \w to|strong="H1696"\w* \w ride|strong="H7392"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* earth, +\q2 \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* feed \w you|strong="H3588"\w* \w with|strong="H3068"\w* \w the|strong="H5921"\w* \w heritage|strong="H5159"\w* \w of|strong="H3068"\w* \w Jacob|strong="H3290"\w* \w your|strong="H3068"\w* father;” +\q2 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w mouth|strong="H6310"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w it|strong="H5921"\w*. +\c 59 +\q1 +\v 1 \w Behold|strong="H2005"\w*, \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w is|strong="H3068"\w* \w not|strong="H3808"\w* \w shortened|strong="H7114"\w*, \w that|strong="H8085"\w* \w it|strong="H3808"\w* \w can|strong="H3808"\w*’t \w save|strong="H3467"\w*; +\q2 \w nor|strong="H3808"\w* \w his|strong="H3068"\w* \w ear|strong="H8085"\w* \w dull|strong="H3513"\w*, \w that|strong="H8085"\w* \w it|strong="H3808"\w* \w can|strong="H3808"\w*’t \w hear|strong="H8085"\w*. +\q1 +\v 2 \w But|strong="H3588"\w* \w your|strong="H6440"\w* \w iniquities|strong="H5771"\w* \w have|strong="H1961"\w* separated \w you|strong="H3588"\w* \w and|strong="H6440"\w* \w your|strong="H6440"\w* God, +\q2 \w and|strong="H6440"\w* \w your|strong="H6440"\w* \w sins|strong="H2403"\w* \w have|strong="H1961"\w* \w hidden|strong="H5641"\w* \w his|strong="H8085"\w* \w face|strong="H6440"\w* \w from|strong="H4480"\w* \w you|strong="H3588"\w*, +\q2 \w so|strong="H4480"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H1961"\w* \w not|strong="H1961"\w* \w hear|strong="H8085"\w*. +\q1 +\v 3 \w For|strong="H3588"\w* \w your|strong="H3588"\w* \w hands|strong="H3709"\w* \w are|strong="H8193"\w* \w defiled|strong="H1351"\w* \w with|strong="H1696"\w* \w blood|strong="H1818"\w*, +\q2 \w and|strong="H1818"\w* \w your|strong="H3588"\w* fingers \w with|strong="H1696"\w* \w iniquity|strong="H5771"\w*. +\q1 \w Your|strong="H3588"\w* \w lips|strong="H8193"\w* \w have|strong="H5771"\w* \w spoken|strong="H1696"\w* \w lies|strong="H8267"\w*. +\q2 \w Your|strong="H3588"\w* \w tongue|strong="H3956"\w* \w mutters|strong="H1897"\w* \w wickedness|strong="H5766"\w*. +\q1 +\v 4 \w No|strong="H1696"\w* one \w sues|strong="H7121"\w* \w in|strong="H5921"\w* \w righteousness|strong="H6664"\w*, +\q2 \w and|strong="H5999"\w* \w no|strong="H1696"\w* one \w pleads|strong="H8199"\w* \w in|strong="H5921"\w* truth. +\q1 \w They|strong="H5921"\w* trust \w in|strong="H5921"\w* \w vanity|strong="H7723"\w* +\q2 \w and|strong="H5999"\w* \w speak|strong="H1696"\w* \w lies|strong="H7723"\w*. +\q1 \w They|strong="H5921"\w* \w conceive|strong="H2029"\w* \w mischief|strong="H5999"\w* +\q2 \w and|strong="H5999"\w* \w give|strong="H3205"\w* \w birth|strong="H3205"\w* \w to|strong="H1696"\w* \w iniquity|strong="H5999"\w*. +\q1 +\v 5 They \w hatch|strong="H1234"\w* \w adders|strong="H6848"\w*’ \w eggs|strong="H1000"\w* +\q2 \w and|strong="H4191"\w* weave \w the|strong="H4191"\w* spider’s \w web|strong="H6980"\w*. +\q1 He who eats \w of|strong="H4191"\w* \w their|strong="H4191"\w* \w eggs|strong="H1000"\w* \w dies|strong="H4191"\w*; +\q2 \w and|strong="H4191"\w* \w that|strong="H4191"\w* \w which|strong="H4191"\w* \w is|strong="H4191"\w* \w crushed|strong="H2116"\w* \w breaks|strong="H1234"\w* \w out|strong="H1234"\w* into \w a|strong="H3068"\w* \w viper|strong="H6848"\w*. +\q1 +\v 6 \w Their|strong="H1961"\w* \w webs|strong="H6980"\w* won’t \w become|strong="H1961"\w* garments. +\q2 \w They|strong="H3808"\w* won’t \w cover|strong="H3680"\w* themselves \w with|strong="H3680"\w* \w their|strong="H1961"\w* \w works|strong="H4639"\w*. +\q1 \w Their|strong="H1961"\w* \w works|strong="H4639"\w* \w are|strong="H4639"\w* \w works|strong="H4639"\w* \w of|strong="H3709"\w* iniquity, +\q2 \w and|strong="H2555"\w* \w acts|strong="H4639"\w* \w of|strong="H3709"\w* \w violence|strong="H2555"\w* \w are|strong="H4639"\w* \w in|strong="H3808"\w* \w their|strong="H1961"\w* \w hands|strong="H3709"\w*. +\q1 +\v 7 \w Their|strong="H8210"\w* \w feet|strong="H7272"\w* \w run|strong="H7323"\w* \w to|strong="H7323"\w* \w evil|strong="H7451"\w*, +\q2 \w and|strong="H1818"\w* \w they|strong="H7323"\w* \w hurry|strong="H4116"\w* \w to|strong="H7323"\w* \w shed|strong="H8210"\w* \w innocent|strong="H5355"\w* \w blood|strong="H1818"\w*. +\q1 \w Their|strong="H8210"\w* \w thoughts|strong="H4284"\w* \w are|strong="H4284"\w* \w thoughts|strong="H4284"\w* \w of|strong="H1818"\w* iniquity. +\q2 \w Desolation|strong="H7701"\w* \w and|strong="H1818"\w* \w destruction|strong="H7667"\w* \w are|strong="H4284"\w* \w in|strong="H7272"\w* \w their|strong="H8210"\w* \w paths|strong="H4546"\w*. +\q1 +\v 8 \w They|strong="H1992"\w* don’t \w know|strong="H3045"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w peace|strong="H7965"\w*; +\q2 \w and|strong="H4941"\w* \w there|strong="H1992"\w* \w is|strong="H1870"\w* \w no|strong="H3808"\w* \w justice|strong="H4941"\w* \w in|strong="H1870"\w* \w their|strong="H3605"\w* \w ways|strong="H1870"\w*. +\q1 \w They|strong="H1992"\w* \w have|strong="H3045"\w* \w made|strong="H3045"\w* \w crooked|strong="H6140"\w* \w paths|strong="H5410"\w* \w for|strong="H4941"\w* \w themselves|strong="H1992"\w*; +\q2 \w whoever|strong="H3605"\w* goes \w in|strong="H1870"\w* \w them|strong="H1992"\w* doesn’t \w know|strong="H3045"\w* \w peace|strong="H7965"\w*. +\b +\q1 +\v 9 \w Therefore|strong="H3651"\w* \w justice|strong="H4941"\w* \w is|strong="H2009"\w* \w far|strong="H7368"\w* \w from|strong="H4480"\w* \w us|strong="H5921"\w*, +\q2 \w and|strong="H1980"\w* \w righteousness|strong="H6666"\w* doesn’t \w overtake|strong="H5381"\w* \w us|strong="H5921"\w*. +\q1 \w We|strong="H1980"\w* \w look|strong="H2009"\w* \w for|strong="H5921"\w* light, \w but|strong="H3808"\w* \w see|strong="H2009"\w* \w darkness|strong="H2822"\w*; +\q2 \w for|strong="H5921"\w* \w brightness|strong="H5054"\w*, \w but|strong="H3808"\w* \w we|strong="H3068"\w* \w walk|strong="H1980"\w* \w in|strong="H5921"\w* \w obscurity|strong="H2822"\w*. +\q1 +\v 10 \w We|strong="H4191"\w* \w grope|strong="H1659"\w* \w for|strong="H4191"\w* \w the|strong="H4191"\w* \w wall|strong="H7023"\w* \w like|strong="H4191"\w* \w the|strong="H4191"\w* \w blind|strong="H5787"\w*. +\q2 Yes, \w we|strong="H3068"\w* \w grope|strong="H1659"\w* \w as|strong="H5869"\w* \w those|strong="H3782"\w* \w who|strong="H5787"\w* \w have|strong="H5869"\w* no \w eyes|strong="H5869"\w*. +\q1 \w We|strong="H4191"\w* \w stumble|strong="H3782"\w* \w at|strong="H4191"\w* \w noon|strong="H6672"\w* \w as|strong="H5869"\w* if \w it|strong="H5869"\w* \w were|strong="H5869"\w* \w twilight|strong="H5399"\w*. +\q2 Among \w those|strong="H3782"\w* \w who|strong="H5787"\w* \w are|strong="H5869"\w* strong, \w we|strong="H3068"\w* \w are|strong="H5869"\w* \w like|strong="H4191"\w* \w dead|strong="H4191"\w* \w men|strong="H5787"\w*. +\q1 +\v 11 \w We|strong="H3605"\w* \w all|strong="H3605"\w* \w roar|strong="H1993"\w* \w like|strong="H1993"\w* \w bears|strong="H1677"\w* +\q2 \w and|strong="H4941"\w* \w moan|strong="H1897"\w* \w sadly|strong="H1897"\w* \w like|strong="H1993"\w* \w doves|strong="H3123"\w*. +\q1 \w We|strong="H3605"\w* \w look|strong="H6960"\w* \w for|strong="H6960"\w* \w justice|strong="H4941"\w*, \w but|strong="H3605"\w* \w there|strong="H4480"\w* \w is|strong="H3605"\w* \w none|strong="H3605"\w*, +\q2 \w for|strong="H6960"\w* \w salvation|strong="H3444"\w*, \w but|strong="H3605"\w* \w it|strong="H7368"\w* \w is|strong="H3605"\w* \w far|strong="H7368"\w* \w off|strong="H7368"\w* \w from|strong="H4480"\w* \w us|strong="H4480"\w*. +\b +\q1 +\v 12 \w For|strong="H3588"\w* \w our|strong="H3588"\w* \w transgressions|strong="H6588"\w* \w are|strong="H6588"\w* \w multiplied|strong="H7235"\w* \w before|strong="H5048"\w* \w you|strong="H3588"\w*, +\q2 \w and|strong="H6030"\w* \w our|strong="H3588"\w* \w sins|strong="H2403"\w* \w testify|strong="H6030"\w* \w against|strong="H5048"\w* \w us|strong="H3045"\w*; +\q1 \w for|strong="H3588"\w* \w our|strong="H3588"\w* \w transgressions|strong="H6588"\w* \w are|strong="H6588"\w* \w with|strong="H3045"\w* \w us|strong="H3045"\w*, +\q2 \w and|strong="H6030"\w* \w as|strong="H3588"\w* \w for|strong="H3588"\w* \w our|strong="H3588"\w* \w iniquities|strong="H5771"\w*, \w we|strong="H3068"\w* \w know|strong="H3045"\w* \w them|strong="H6030"\w*: +\q1 +\v 13 \w transgressing|strong="H6586"\w* \w and|strong="H3068"\w* \w denying|strong="H3584"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* turning \w away|strong="H5253"\w* \w from|strong="H3068"\w* following \w our|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 \w speaking|strong="H1696"\w* \w oppression|strong="H6233"\w* \w and|strong="H3068"\w* \w revolt|strong="H5627"\w*, +\q2 \w conceiving|strong="H2029"\w* \w and|strong="H3068"\w* \w uttering|strong="H1897"\w* \w from|strong="H3068"\w* \w the|strong="H3068"\w* \w heart|strong="H3820"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w falsehood|strong="H8267"\w*. +\q1 +\v 14 \w Justice|strong="H4941"\w* \w is|strong="H4941"\w* turned \w away|strong="H5253"\w* backward, +\q2 \w and|strong="H4941"\w* \w righteousness|strong="H6666"\w* \w stands|strong="H5975"\w* \w far|strong="H7350"\w* \w away|strong="H5253"\w*; +\q1 \w for|strong="H3588"\w* \w truth|strong="H3808"\w* \w has|strong="H3588"\w* \w fallen|strong="H3782"\w* \w in|strong="H5975"\w* \w the|strong="H3588"\w* \w street|strong="H7339"\w*, +\q2 \w and|strong="H4941"\w* \w uprightness|strong="H5229"\w* \w can|strong="H3201"\w*’t \w enter|strong="H5975"\w*. +\q1 +\v 15 \w Yes|strong="H3588"\w*, truth \w is|strong="H3068"\w* \w lacking|strong="H5737"\w*; +\q2 \w and|strong="H3068"\w* \w he|strong="H3588"\w* \w who|strong="H3068"\w* departs \w from|strong="H5493"\w* \w evil|strong="H7451"\w* \w makes|strong="H7200"\w* \w himself|strong="H3068"\w* \w a|strong="H3068"\w* \w prey|strong="H7997"\w*. +\b +\q1 \w Yahweh|strong="H3068"\w* \w saw|strong="H7200"\w* \w it|strong="H3588"\w*, +\q2 \w and|strong="H3068"\w* \w it|strong="H3588"\w* \w displeased|strong="H7489"\w* \w him|strong="H7200"\w* \w that|strong="H3588"\w* \w there|strong="H1961"\w* \w was|strong="H3068"\w* \w no|strong="H7200"\w* \w justice|strong="H4941"\w*. +\q1 +\v 16 \w He|strong="H1931"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w there|strong="H7200"\w* \w was|strong="H1931"\w* \w no|strong="H7200"\w* \w man|strong="H7200"\w*, +\q2 \w and|strong="H7200"\w* \w wondered|strong="H8074"\w* \w that|strong="H3588"\w* \w there|strong="H7200"\w* \w was|strong="H1931"\w* \w no|strong="H7200"\w* \w intercessor|strong="H6293"\w*. +\q1 \w Therefore|strong="H3588"\w* \w his|strong="H7200"\w* own \w arm|strong="H2220"\w* \w brought|strong="H2220"\w* \w salvation|strong="H3467"\w* \w to|strong="H7200"\w* \w him|strong="H7200"\w*; +\q2 \w and|strong="H7200"\w* \w his|strong="H7200"\w* \w righteousness|strong="H6666"\w* \w sustained|strong="H5564"\w* \w him|strong="H7200"\w*. +\q1 +\v 17 \w He|strong="H3444"\w* \w put|strong="H3847"\w* \w on|strong="H3847"\w* \w righteousness|strong="H6666"\w* as \w a|strong="H3068"\w* \w breastplate|strong="H8302"\w*, +\q2 \w and|strong="H7218"\w* \w a|strong="H3068"\w* \w helmet|strong="H3553"\w* \w of|strong="H7218"\w* \w salvation|strong="H3444"\w* \w on|strong="H3847"\w* \w his|strong="H3847"\w* \w head|strong="H7218"\w*. +\q1 \w He|strong="H3444"\w* \w put|strong="H3847"\w* \w on|strong="H3847"\w* garments \w of|strong="H7218"\w* \w vengeance|strong="H5359"\w* \w for|strong="H6666"\w* \w clothing|strong="H8516"\w*, +\q2 \w and|strong="H7218"\w* \w was|strong="H7218"\w* \w clad|strong="H5844"\w* \w with|strong="H3847"\w* \w zeal|strong="H7068"\w* as \w a|strong="H3068"\w* \w mantle|strong="H4598"\w*. +\q1 +\v 18 \w According|strong="H5921"\w* \w to|strong="H5921"\w* \w their|strong="H5921"\w* \w deeds|strong="H1578"\w*, +\q2 \w he|strong="H5921"\w* \w will|strong="H2534"\w* \w repay|strong="H7999"\w* \w as|strong="H5921"\w* appropriate: +\q2 \w wrath|strong="H2534"\w* \w to|strong="H5921"\w* \w his|strong="H5921"\w* \w adversaries|strong="H6862"\w*, +\q2 \w recompense|strong="H1576"\w* \w to|strong="H5921"\w* \w his|strong="H5921"\w* \w enemies|strong="H6862"\w*. +\q2 \w He|strong="H5921"\w* \w will|strong="H2534"\w* \w repay|strong="H7999"\w* \w the|strong="H5921"\w* islands \w their|strong="H5921"\w* \w due|strong="H5921"\w*. +\q1 +\v 19 \w So|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w* \w from|strong="H5127"\w* \w the|strong="H3588"\w* \w west|strong="H4628"\w*, +\q2 \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w glory|strong="H3519"\w* \w from|strong="H5127"\w* \w the|strong="H3588"\w* \w rising|strong="H4217"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w sun|strong="H8121"\w*; +\q1 \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* come \w as|strong="H3068"\w* \w a|strong="H3068"\w* \w rushing|strong="H6862"\w* \w stream|strong="H5104"\w*, +\q2 \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w breath|strong="H7307"\w* \w drives|strong="H5127"\w*. +\b +\q1 +\v 20 “\w A|strong="H3068"\w* \w Redeemer|strong="H1350"\w* \w will|strong="H3068"\w* \w come|strong="H7725"\w* \w to|strong="H7725"\w* \w Zion|strong="H6726"\w*, +\q2 \w and|strong="H3068"\w* \w to|strong="H7725"\w* those \w who|strong="H3068"\w* \w turn|strong="H7725"\w* \w from|strong="H7725"\w* disobedience \w in|strong="H3068"\w* \w Jacob|strong="H3290"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 21 “\w As|strong="H5704"\w* \w for|strong="H5704"\w* \w me|strong="H5921"\w*, \w this|strong="H2063"\w* \w is|strong="H3068"\w* \w my|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H3068"\w* \w them|strong="H5921"\w*,” \w says|strong="H1697"\w* \w Yahweh|strong="H3068"\w*. “\w My|strong="H3068"\w* \w Spirit|strong="H7307"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*, \w and|strong="H3068"\w* \w my|strong="H3068"\w* \w words|strong="H1697"\w* \w which|strong="H3068"\w* \w I|strong="H5704"\w* \w have|strong="H3068"\w* \w put|strong="H7760"\w* \w in|strong="H5921"\w* \w your|strong="H3068"\w* \w mouth|strong="H6310"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w depart|strong="H4185"\w* \w out|strong="H5921"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w mouth|strong="H6310"\w*, \w nor|strong="H3808"\w* \w out|strong="H5921"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w mouth|strong="H6310"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w offspring|strong="H2233"\w*, \w nor|strong="H3808"\w* \w out|strong="H5921"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w mouth|strong="H6310"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w offspring|strong="H2233"\w*’s \w offspring|strong="H2233"\w*,” \w says|strong="H1697"\w* \w Yahweh|strong="H3068"\w*, “\w from|strong="H5921"\w* \w now|strong="H6258"\w* \w on|strong="H5921"\w* \w and|strong="H3068"\w* \w forever|strong="H5769"\w*.” +\c 60 +\q1 +\v 1 “\w Arise|strong="H6965"\w*, \w shine|strong="H2224"\w*; \w for|strong="H3588"\w* \w your|strong="H3068"\w* light \w has|strong="H3068"\w* \w come|strong="H6965"\w*, +\q2 \w and|strong="H6965"\w* \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w has|strong="H3068"\w* \w risen|strong="H6965"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*! +\q1 +\v 2 \w For|strong="H3588"\w* \w behold|strong="H2009"\w*, \w darkness|strong="H2822"\w* \w will|strong="H3068"\w* \w cover|strong="H3680"\w* \w the|strong="H5921"\w* earth, +\q2 \w and|strong="H3068"\w* \w thick|strong="H6205"\w* \w darkness|strong="H2822"\w* \w the|strong="H5921"\w* \w peoples|strong="H3816"\w*; +\q1 \w but|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w arise|strong="H2224"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*, +\q2 \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w glory|strong="H3519"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w seen|strong="H7200"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*. +\q1 +\v 3 \w Nations|strong="H1471"\w* \w will|strong="H1471"\w* \w come|strong="H1980"\w* \w to|strong="H1980"\w* \w your|strong="H4428"\w* \w light|strong="H5051"\w*, +\q2 \w and|strong="H1980"\w* \w kings|strong="H4428"\w* \w to|strong="H1980"\w* \w the|strong="H1980"\w* \w brightness|strong="H5051"\w* \w of|strong="H4428"\w* \w your|strong="H4428"\w* \w rising|strong="H2225"\w*. +\b +\q1 +\v 4 “\w Lift|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H3605"\w* \w eyes|strong="H5869"\w* \w all|strong="H3605"\w* \w around|strong="H5439"\w*, \w and|strong="H1121"\w* \w see|strong="H7200"\w*: +\q2 \w they|strong="H5921"\w* \w all|strong="H3605"\w* \w gather|strong="H6908"\w* \w themselves|strong="H6908"\w* \w together|strong="H6908"\w*. +\q2 \w They|strong="H5921"\w* \w come|strong="H7350"\w* \w to|strong="H5921"\w* \w you|strong="H3605"\w*. +\q1 \w Your|strong="H3605"\w* \w sons|strong="H1121"\w* \w will|strong="H5869"\w* \w come|strong="H7350"\w* \w from|strong="H5921"\w* \w far|strong="H7350"\w* \w away|strong="H5375"\w*, +\q2 \w and|strong="H1121"\w* \w your|strong="H3605"\w* \w daughters|strong="H1323"\w* \w will|strong="H5869"\w* \w be|strong="H1121"\w* \w carried|strong="H5375"\w* \w in|strong="H5921"\w* \w arms|strong="H6654"\w*. +\q1 +\v 5 \w Then|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H1471"\w* \w see|strong="H7200"\w* \w and|strong="H1471"\w* \w be|strong="H1471"\w* \w radiant|strong="H5102"\w*, +\q2 \w and|strong="H1471"\w* \w your|strong="H5921"\w* \w heart|strong="H3824"\w* \w will|strong="H1471"\w* \w thrill|strong="H6342"\w* \w and|strong="H1471"\w* \w be|strong="H1471"\w* \w enlarged|strong="H7337"\w*; +\q1 \w because|strong="H3588"\w* \w the|strong="H5921"\w* \w abundance|strong="H1995"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w will|strong="H1471"\w* \w be|strong="H1471"\w* \w turned|strong="H2015"\w* \w to|strong="H5921"\w* \w you|strong="H3588"\w*. +\q2 \w The|strong="H5921"\w* \w wealth|strong="H2428"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w* \w will|strong="H1471"\w* \w come|strong="H6342"\w* \w to|strong="H5921"\w* \w you|strong="H3588"\w*. +\q1 +\v 6 \w A|strong="H3068"\w* \w multitude|strong="H8229"\w* \w of|strong="H3068"\w* \w camels|strong="H1581"\w* \w will|strong="H3068"\w* \w cover|strong="H3680"\w* \w you|strong="H3605"\w*, +\q2 \w the|strong="H3605"\w* \w dromedaries|strong="H1070"\w* \w of|strong="H3068"\w* \w Midian|strong="H4080"\w* \w and|strong="H3068"\w* \w Ephah|strong="H5891"\w*. +\q1 \w All|strong="H3605"\w* \w from|strong="H3068"\w* \w Sheba|strong="H7614"\w* \w will|strong="H3068"\w* come. +\q2 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w bring|strong="H5375"\w* \w gold|strong="H2091"\w* \w and|strong="H3068"\w* \w frankincense|strong="H3828"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w proclaim|strong="H1319"\w* \w the|strong="H3605"\w* \w praises|strong="H8416"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 7 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w flocks|strong="H6629"\w* \w of|strong="H1004"\w* \w Kedar|strong="H6938"\w* \w will|strong="H7522"\w* \w be|strong="H1004"\w* \w gathered|strong="H6908"\w* \w together|strong="H6908"\w* \w to|strong="H5927"\w* \w you|strong="H3605"\w*. +\q2 \w The|strong="H3605"\w* rams \w of|strong="H1004"\w* \w Nebaioth|strong="H5032"\w* \w will|strong="H7522"\w* \w serve|strong="H8334"\w* \w you|strong="H3605"\w*. +\q1 \w They|strong="H5921"\w* \w will|strong="H7522"\w* \w be|strong="H1004"\w* \w accepted|strong="H7522"\w* \w as|strong="H5927"\w* \w offerings|strong="H5927"\w* \w on|strong="H5921"\w* \w my|strong="H3605"\w* \w altar|strong="H4196"\w*; +\q2 \w and|strong="H1004"\w* \w I|strong="H5921"\w* \w will|strong="H7522"\w* \w beautify|strong="H6286"\w* \w my|strong="H3605"\w* \w glorious|strong="H8597"\w* \w house|strong="H1004"\w*. +\b +\q1 +\v 8 “\w Who|strong="H4310"\w* \w are|strong="H4310"\w* these \w who|strong="H4310"\w* \w fly|strong="H5774"\w* \w as|strong="H5645"\w* \w a|strong="H3068"\w* \w cloud|strong="H5645"\w*, +\q2 \w and|strong="H5645"\w* \w as|strong="H5645"\w* \w the|strong="H4310"\w* \w doves|strong="H3123"\w* \w to|strong="H5645"\w* their windows? +\q1 +\v 9 \w Surely|strong="H3588"\w* \w the|strong="H3588"\w* islands \w will|strong="H3068"\w* \w wait|strong="H6960"\w* \w for|strong="H3588"\w* \w me|strong="H3588"\w*, +\q2 \w and|strong="H1121"\w* \w the|strong="H3588"\w* ships \w of|strong="H1121"\w* \w Tarshish|strong="H8659"\w* \w first|strong="H7223"\w*, +\q1 \w to|strong="H3478"\w* bring \w your|strong="H3068"\w* \w sons|strong="H1121"\w* \w from|strong="H3478"\w* \w far|strong="H7350"\w* \w away|strong="H7350"\w*, +\q2 \w their|strong="H3068"\w* \w silver|strong="H3701"\w* \w and|strong="H1121"\w* \w their|strong="H3068"\w* \w gold|strong="H2091"\w* \w with|strong="H3068"\w* \w them|strong="H1121"\w*, +\q1 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 \w and|strong="H1121"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, +\q2 \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w glorified|strong="H6286"\w* \w you|strong="H3588"\w*. +\b +\q1 +\v 10 “\w Foreigners|strong="H1121"\w* \w will|strong="H4428"\w* \w build|strong="H1129"\w* \w up|strong="H1129"\w* \w your|strong="H3588"\w* \w walls|strong="H2346"\w*, +\q2 \w and|strong="H1121"\w* \w their|strong="H3588"\w* \w kings|strong="H4428"\w* \w will|strong="H4428"\w* \w serve|strong="H8334"\w* \w you|strong="H3588"\w*; +\q1 \w for|strong="H3588"\w* \w in|strong="H4428"\w* \w my|strong="H3588"\w* \w wrath|strong="H7110"\w* \w I|strong="H3588"\w* \w struck|strong="H5221"\w* \w you|strong="H3588"\w*, +\q2 \w but|strong="H3588"\w* \w in|strong="H4428"\w* \w my|strong="H3588"\w* \w favor|strong="H7522"\w* \w I|strong="H3588"\w* \w have|strong="H7355"\w* \w had|strong="H4428"\w* \w mercy|strong="H7355"\w* \w on|strong="H7355"\w* \w you|strong="H3588"\w*. +\q1 +\v 11 \w Your|strong="H3808"\w* \w gates|strong="H8179"\w* \w also|strong="H4428"\w* \w shall|strong="H1471"\w* \w be|strong="H3808"\w* \w open|strong="H6605"\w* \w continually|strong="H8548"\w*; \w they|strong="H3808"\w* \w shall|strong="H1471"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w shut|strong="H5462"\w* \w day|strong="H3119"\w* \w nor|strong="H3808"\w* \w night|strong="H3915"\w*, \w that|strong="H1471"\w* \w men|strong="H2428"\w* \w may|strong="H1471"\w* bring \w to|strong="H4428"\w* \w you|strong="H3808"\w* \w the|strong="H5462"\w* \w wealth|strong="H2428"\w* \w of|strong="H4428"\w* \w the|strong="H5462"\w* \w nations|strong="H1471"\w*, \w and|strong="H4428"\w* \w their|strong="H5462"\w* \w kings|strong="H4428"\w* \w led|strong="H5090"\w* captive. +\q1 +\v 12 \w For|strong="H3588"\w* \w that|strong="H3588"\w* \w nation|strong="H1471"\w* \w and|strong="H1471"\w* \w kingdom|strong="H4467"\w* \w that|strong="H3588"\w* \w will|strong="H1471"\w* \w not|strong="H3808"\w* \w serve|strong="H5647"\w* \w you|strong="H3588"\w* \w shall|strong="H1471"\w* perish; \w yes|strong="H3588"\w*, \w those|strong="H3588"\w* \w nations|strong="H1471"\w* \w shall|strong="H1471"\w* \w be|strong="H3808"\w* \w utterly|strong="H2717"\w* \w wasted|strong="H2717"\w*. +\b +\q1 +\v 13 “\w The|strong="H4725"\w* \w glory|strong="H3519"\w* \w of|strong="H4725"\w* \w Lebanon|strong="H3844"\w* \w shall|strong="H7272"\w* come \w to|strong="H4725"\w* \w you|strong="H3513"\w*, \w the|strong="H4725"\w* \w cypress|strong="H1265"\w* \w tree|strong="H1265"\w*, \w the|strong="H4725"\w* \w pine|strong="H8410"\w*, \w and|strong="H4725"\w* \w the|strong="H4725"\w* \w box|strong="H8410"\w* \w tree|strong="H1265"\w* \w together|strong="H3162"\w*, \w to|strong="H4725"\w* \w beautify|strong="H6286"\w* \w the|strong="H4725"\w* \w place|strong="H4725"\w* \w of|strong="H4725"\w* \w my|strong="H6286"\w* \w sanctuary|strong="H4720"\w*; \w and|strong="H4725"\w* \w I|strong="H3513"\w* \w will|strong="H7272"\w* \w make|strong="H3513"\w* \w the|strong="H4725"\w* \w place|strong="H4725"\w* \w of|strong="H4725"\w* \w my|strong="H6286"\w* \w feet|strong="H7272"\w* \w glorious|strong="H3513"\w*. +\q1 +\v 14 \w The|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w afflicted|strong="H6031"\w* \w you|strong="H3605"\w* \w will|strong="H3068"\w* \w come|strong="H1980"\w* \w bowing|strong="H7812"\w* \w to|strong="H1980"\w* \w you|strong="H3605"\w*; +\q2 \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w despised|strong="H5006"\w* \w you|strong="H3605"\w* \w will|strong="H3068"\w* \w bow|strong="H7812"\w* \w themselves|strong="H7812"\w* \w down|strong="H7812"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w soles|strong="H3709"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* \w feet|strong="H7272"\w*. +\q1 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w call|strong="H7121"\w* \w you|strong="H3605"\w* \w Yahweh|strong="H3068"\w*’s \w City|strong="H5892"\w*, +\q2 \w the|strong="H3605"\w* \w Zion|strong="H6726"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\b +\q1 +\v 15 “\w Whereas|strong="H8478"\w* \w you|strong="H7760"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w forsaken|strong="H5800"\w* \w and|strong="H5769"\w* \w hated|strong="H8130"\w*, +\q2 \w so|strong="H1961"\w* \w that|strong="H1961"\w* \w no|strong="H7760"\w* \w one|strong="H1961"\w* \w passed|strong="H5674"\w* \w through|strong="H5674"\w* \w you|strong="H7760"\w*, +\q1 \w I|strong="H7760"\w* \w will|strong="H1961"\w* \w make|strong="H7760"\w* \w you|strong="H7760"\w* \w an|strong="H1961"\w* \w eternal|strong="H5769"\w* \w excellency|strong="H1347"\w*, +\q2 \w a|strong="H3068"\w* \w joy|strong="H4885"\w* \w of|strong="H8478"\w* \w many|strong="H1755"\w* \w generations|strong="H1755"\w*. +\q1 +\v 16 \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w also|strong="H3068"\w* drink \w the|strong="H3588"\w* \w milk|strong="H2461"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w nations|strong="H1471"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w nurse|strong="H3243"\w* \w from|strong="H1471"\w* \w royal|strong="H4428"\w* \w breasts|strong="H7699"\w*. +\q1 \w Then|strong="H4428"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w am|strong="H3068"\w* \w your|strong="H3068"\w* \w Savior|strong="H3467"\w*, +\q2 \w your|strong="H3068"\w* \w Redeemer|strong="H1350"\w*, +\q2 \w the|strong="H3588"\w* Mighty \w One|strong="H3588"\w* \w of|strong="H4428"\w* \w Jacob|strong="H3290"\w*. +\q1 +\v 17 \w For|strong="H8478"\w* \w bronze|strong="H5178"\w* \w I|strong="H7760"\w* \w will|strong="H6666"\w* \w bring|strong="H7760"\w* \w gold|strong="H2091"\w*; +\q2 \w for|strong="H8478"\w* \w iron|strong="H1270"\w* \w I|strong="H7760"\w* \w will|strong="H6666"\w* \w bring|strong="H7760"\w* \w silver|strong="H3701"\w*; +\q2 \w for|strong="H8478"\w* \w wood|strong="H6086"\w*, \w bronze|strong="H5178"\w*, +\q2 \w and|strong="H3701"\w* \w for|strong="H8478"\w* stones, \w iron|strong="H1270"\w*. +\q1 \w I|strong="H7760"\w* \w will|strong="H6666"\w* also \w make|strong="H7760"\w* \w peace|strong="H7965"\w* \w your|strong="H7760"\w* governor, +\q2 \w and|strong="H3701"\w* \w righteousness|strong="H6666"\w* \w your|strong="H7760"\w* \w ruler|strong="H5065"\w*. +\q1 +\v 18 \w Violence|strong="H2555"\w* \w shall|strong="H1366"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w be|strong="H3808"\w* \w heard|strong="H8085"\w* \w in|strong="H8085"\w* \w your|strong="H8085"\w* \w land|strong="H1366"\w*, +\q2 \w nor|strong="H3808"\w* \w desolation|strong="H7701"\w* \w or|strong="H3808"\w* \w destruction|strong="H7667"\w* \w within|strong="H5750"\w* \w your|strong="H8085"\w* \w borders|strong="H1366"\w*; +\q1 \w but|strong="H3808"\w* \w you|strong="H3808"\w* \w will|strong="H3808"\w* \w call|strong="H7121"\w* \w your|strong="H8085"\w* \w walls|strong="H2346"\w* \w Salvation|strong="H3444"\w*, +\q2 \w and|strong="H8085"\w* \w your|strong="H8085"\w* \w gates|strong="H8179"\w* \w Praise|strong="H8416"\w*. +\q1 +\v 19 \w The|strong="H3068"\w* \w sun|strong="H8121"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w your|strong="H3068"\w* \w light|strong="H5051"\w* \w by|strong="H3068"\w* \w day|strong="H3119"\w*, +\q2 \w nor|strong="H3808"\w* \w will|strong="H3068"\w* \w the|strong="H3068"\w* \w brightness|strong="H5051"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w moon|strong="H3394"\w* \w give|strong="H3394"\w* \w light|strong="H5051"\w* \w to|strong="H3068"\w* \w you|strong="H3808"\w*, +\q1 \w but|strong="H3808"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w your|strong="H3068"\w* \w everlasting|strong="H5769"\w* \w light|strong="H5051"\w*, +\q2 \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w your|strong="H3068"\w* \w glory|strong="H8597"\w*. +\q1 +\v 20 \w Your|strong="H3068"\w* \w sun|strong="H8121"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w go|strong="H1961"\w* \w down|strong="H3588"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*, +\q2 \w nor|strong="H3808"\w* \w will|strong="H3068"\w* \w your|strong="H3068"\w* \w moon|strong="H3391"\w* withdraw itself; +\q1 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w your|strong="H3068"\w* \w everlasting|strong="H5769"\w* light, +\q2 \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* mourning \w will|strong="H3068"\w* \w end|strong="H7999"\w*. +\q1 +\v 21 \w Then|strong="H3605"\w* \w your|strong="H3605"\w* \w people|strong="H5971"\w* \w will|strong="H5971"\w* \w all|strong="H3605"\w* \w be|strong="H3027"\w* \w righteous|strong="H6662"\w*. +\q2 \w They|strong="H5971"\w* \w will|strong="H5971"\w* \w inherit|strong="H3423"\w* \w the|strong="H3605"\w* land \w forever|strong="H5769"\w*, +\q2 \w the|strong="H3605"\w* \w branch|strong="H5342"\w* \w of|strong="H3027"\w* \w my|strong="H3605"\w* \w planting|strong="H4302"\w*, +\q2 \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H3027"\w* \w my|strong="H3605"\w* \w hands|strong="H3027"\w*, +\q2 \w that|strong="H5971"\w* \w I|strong="H3027"\w* \w may|strong="H5971"\w* \w be|strong="H3027"\w* \w glorified|strong="H6286"\w*. +\q1 +\v 22 \w The|strong="H3068"\w* \w little|strong="H6996"\w* \w one|strong="H6996"\w* \w will|strong="H3068"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* thousand, +\q2 \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w small|strong="H6996"\w* \w one|strong="H6996"\w* \w a|strong="H3068"\w* \w strong|strong="H6099"\w* \w nation|strong="H1471"\w*. +\q2 \w I|strong="H6256"\w*, \w Yahweh|strong="H3068"\w*, \w will|strong="H3068"\w* \w do|strong="H3068"\w* \w this|strong="H3068"\w* \w quickly|strong="H2363"\w* \w in|strong="H3068"\w* \w its|strong="H1961"\w* \w time|strong="H6256"\w*.” +\c 61 +\q1 +\v 1 \w The|strong="H5921"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w* \w is|strong="H3068"\w* \w on|strong="H5921"\w* \w me|strong="H7971"\w*, +\q2 \w because|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w anointed|strong="H4886"\w* \w me|strong="H7971"\w* \w to|strong="H3068"\w* \w preach|strong="H7121"\w* \w good|strong="H1319"\w* \w news|strong="H1319"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w humble|strong="H6035"\w*. +\q1 \w He|strong="H3068"\w* \w has|strong="H3068"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w* \w to|strong="H3068"\w* \w bind|strong="H2280"\w* \w up|strong="H2280"\w* \w the|strong="H5921"\w* \w broken|strong="H7665"\w* \w hearted|strong="H3820"\w*, +\q2 \w to|strong="H3068"\w* \w proclaim|strong="H7121"\w* \w liberty|strong="H1865"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w captives|strong="H7617"\w* +\q2 \w and|strong="H3068"\w* \w release|strong="H7971"\w* \w to|strong="H3068"\w* \w those|strong="H5921"\w* \w who|strong="H3068"\w* \w are|strong="H3068"\w* \w bound|strong="H2280"\w*,\f + \fr 61:1 \ft LXX and DSS add: recovery of sight to the blind\f* +\q1 +\v 2 \w to|strong="H3068"\w* \w proclaim|strong="H7121"\w* \w the|strong="H3605"\w* \w year|strong="H8141"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w favor|strong="H7522"\w* +\q2 \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w vengeance|strong="H5359"\w* \w of|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 \w to|strong="H3068"\w* \w comfort|strong="H5162"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* mourn, +\q1 +\v 3 \w to|strong="H3068"\w* \w provide|strong="H5414"\w* \w for|strong="H7121"\w* those \w who|strong="H3068"\w* mourn \w in|strong="H3068"\w* \w Zion|strong="H6726"\w*, +\q2 \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w to|strong="H3068"\w* \w them|strong="H5414"\w* \w a|strong="H3068"\w* \w garland|strong="H6287"\w* \w for|strong="H7121"\w* ashes, +\q2 \w the|strong="H5414"\w* \w oil|strong="H8081"\w* \w of|strong="H3068"\w* \w joy|strong="H8342"\w* \w for|strong="H7121"\w* mourning, +\q2 \w the|strong="H5414"\w* \w garment|strong="H4594"\w* \w of|strong="H3068"\w* \w praise|strong="H8416"\w* \w for|strong="H7121"\w* \w the|strong="H5414"\w* \w spirit|strong="H7307"\w* \w of|strong="H3068"\w* \w heaviness|strong="H3544"\w*, +\q1 \w that|strong="H3068"\w* \w they|strong="H3068"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w called|strong="H7121"\w* trees \w of|strong="H3068"\w* \w righteousness|strong="H6664"\w*, +\q2 \w the|strong="H5414"\w* \w planting|strong="H4302"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w glorified|strong="H6286"\w*. +\b +\q1 +\v 4 \w They|strong="H5892"\w* \w will|strong="H5892"\w* \w rebuild|strong="H1129"\w* \w the|strong="H1129"\w* \w old|strong="H5769"\w* \w ruins|strong="H2723"\w*. +\q2 \w They|strong="H5892"\w* \w will|strong="H5892"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w the|strong="H1129"\w* \w former|strong="H7223"\w* \w devastated|strong="H8074"\w* \w places|strong="H2723"\w*. +\q1 \w They|strong="H5892"\w* \w will|strong="H5892"\w* \w repair|strong="H2318"\w* \w the|strong="H1129"\w* \w ruined|strong="H2721"\w* \w cities|strong="H5892"\w* +\q2 \w that|strong="H5892"\w* \w have|strong="H7223"\w* \w been|strong="H5769"\w* \w devastated|strong="H8074"\w* \w for|strong="H5892"\w* \w many|strong="H1755"\w* \w generations|strong="H1755"\w*. +\q1 +\v 5 \w Strangers|strong="H2114"\w* \w will|strong="H1121"\w* \w stand|strong="H5975"\w* \w and|strong="H1121"\w* \w feed|strong="H7462"\w* \w your|strong="H7462"\w* \w flocks|strong="H6629"\w*. +\q2 \w Foreigners|strong="H1121"\w* \w will|strong="H1121"\w* work \w your|strong="H7462"\w* fields \w and|strong="H1121"\w* \w your|strong="H7462"\w* vineyards. +\q1 +\v 6 \w But|strong="H3068"\w* \w you|strong="H7121"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w called|strong="H7121"\w* \w Yahweh|strong="H3068"\w*’s \w priests|strong="H3548"\w*. +\q2 \w Men|strong="H2428"\w* \w will|strong="H3068"\w* \w call|strong="H7121"\w* \w you|strong="H7121"\w* \w the|strong="H3068"\w* \w servants|strong="H8334"\w* \w of|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*. +\q1 \w You|strong="H7121"\w* \w will|strong="H3068"\w* eat \w the|strong="H3068"\w* \w wealth|strong="H2428"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w nations|strong="H1471"\w*. +\q2 \w You|strong="H7121"\w* \w will|strong="H3068"\w* \w boast|strong="H3235"\w* \w in|strong="H3068"\w* \w their|strong="H3068"\w* \w glory|strong="H3519"\w*. +\q1 +\v 7 \w Instead|strong="H8478"\w* \w of|strong="H8478"\w* \w your|strong="H1961"\w* \w shame|strong="H1322"\w* \w you|strong="H3651"\w* \w will|strong="H1961"\w* \w have|strong="H1961"\w* \w double|strong="H4932"\w*. +\q2 \w Instead|strong="H8478"\w* \w of|strong="H8478"\w* \w dishonor|strong="H3639"\w*, \w they|strong="H3651"\w* \w will|strong="H1961"\w* \w rejoice|strong="H7442"\w* \w in|strong="H2506"\w* \w their|strong="H3423"\w* \w portion|strong="H2506"\w*. +\q1 \w Therefore|strong="H3651"\w* \w in|strong="H2506"\w* \w their|strong="H3423"\w* \w land|strong="H2506"\w* \w they|strong="H3651"\w* \w will|strong="H1961"\w* \w possess|strong="H3423"\w* \w double|strong="H4932"\w*. +\q2 \w Everlasting|strong="H5769"\w* \w joy|strong="H8057"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w to|strong="H1961"\w* \w them|strong="H3423"\w*. +\q1 +\v 8 “\w For|strong="H3588"\w* \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, love \w justice|strong="H4941"\w*. +\q2 \w I|strong="H3588"\w* \w hate|strong="H8130"\w* \w robbery|strong="H1498"\w* \w and|strong="H3068"\w* iniquity. +\q1 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w their|strong="H3068"\w* \w reward|strong="H6468"\w* \w in|strong="H3068"\w* truth +\q2 \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w make|strong="H5414"\w* \w an|strong="H5414"\w* \w everlasting|strong="H5769"\w* \w covenant|strong="H1285"\w* \w with|strong="H3068"\w* \w them|strong="H5414"\w*. +\q1 +\v 9 \w Their|strong="H3605"\w* \w offspring|strong="H2233"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w known|strong="H3045"\w* \w among|strong="H8432"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*, +\q2 \w and|strong="H3068"\w* \w their|strong="H3605"\w* \w offspring|strong="H2233"\w* \w among|strong="H8432"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w*. +\q1 \w All|strong="H3605"\w* \w who|strong="H3605"\w* \w see|strong="H7200"\w* \w them|strong="H1992"\w* \w will|strong="H3068"\w* \w acknowledge|strong="H3045"\w* \w them|strong="H1992"\w*, +\q2 \w that|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w the|strong="H3605"\w* \w offspring|strong="H2233"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w blessed|strong="H1288"\w*.” +\b +\q1 +\v 10 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w greatly|strong="H7797"\w* \w rejoice|strong="H1523"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*! +\q2 \w My|strong="H3068"\w* \w soul|strong="H5315"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w joyful|strong="H1523"\w* \w in|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*, +\q1 \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w clothed|strong="H3847"\w* \w me|strong="H5315"\w* \w with|strong="H3847"\w* \w the|strong="H3588"\w* garments \w of|strong="H3068"\w* \w salvation|strong="H3468"\w*. +\q2 \w He|strong="H3588"\w* \w has|strong="H3068"\w* \w covered|strong="H3271"\w* \w me|strong="H5315"\w* \w with|strong="H3847"\w* \w the|strong="H3588"\w* \w robe|strong="H4598"\w* \w of|strong="H3068"\w* \w righteousness|strong="H6666"\w*, +\q2 \w as|strong="H3547"\w* \w a|strong="H3068"\w* \w bridegroom|strong="H2860"\w* \w decks|strong="H3547"\w* \w himself|strong="H5315"\w* \w with|strong="H3847"\w* \w a|strong="H3068"\w* \w garland|strong="H6287"\w* +\q2 \w and|strong="H3068"\w* \w as|strong="H3547"\w* \w a|strong="H3068"\w* \w bride|strong="H3618"\w* \w adorns|strong="H5710"\w* \w herself|strong="H5315"\w* \w with|strong="H3847"\w* \w her|strong="H3618"\w* \w jewels|strong="H3627"\w*. +\q1 +\v 11 \w For|strong="H3588"\w* \w as|strong="H3651"\w* \w the|strong="H3605"\w* earth \w produces|strong="H3318"\w* \w its|strong="H3605"\w* \w bud|strong="H6780"\w*, +\q2 \w and|strong="H1471"\w* \w as|strong="H3651"\w* \w the|strong="H3605"\w* \w garden|strong="H1593"\w* \w causes|strong="H3318"\w* \w the|strong="H3605"\w* \w things|strong="H3605"\w* \w that|strong="H3588"\w* \w are|strong="H1471"\w* \w sown|strong="H2221"\w* \w in|strong="H1471"\w* \w it|strong="H3588"\w* \w to|strong="H3318"\w* \w spring|strong="H6779"\w* \w up|strong="H6779"\w*, +\q2 \w so|strong="H3651"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H1471"\w* \w cause|strong="H3651"\w* \w righteousness|strong="H6666"\w* \w and|strong="H1471"\w* \w praise|strong="H8416"\w* \w to|strong="H3318"\w* \w spring|strong="H6779"\w* \w up|strong="H6779"\w* \w before|strong="H5048"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*. +\c 62 +\q1 +\v 1 \w For|strong="H5704"\w* \w Zion|strong="H6726"\w*’s \w sake|strong="H4616"\w* \w I|strong="H5704"\w* \w will|strong="H3389"\w* \w not|strong="H3808"\w* hold \w my|strong="H3318"\w* \w peace|strong="H2814"\w*, +\q2 \w and|strong="H3389"\w* \w for|strong="H5704"\w* \w Jerusalem|strong="H3389"\w*’s \w sake|strong="H4616"\w* \w I|strong="H5704"\w* \w will|strong="H3389"\w* \w not|strong="H3808"\w* \w rest|strong="H8252"\w*, +\q1 \w until|strong="H5704"\w* \w her|strong="H3318"\w* \w righteousness|strong="H6664"\w* shines \w out|strong="H3318"\w* \w like|strong="H3318"\w* \w the|strong="H5704"\w* \w dawn|strong="H5051"\w*, +\q2 \w and|strong="H3389"\w* \w her|strong="H3318"\w* \w salvation|strong="H3444"\w* \w like|strong="H3318"\w* \w a|strong="H3068"\w* \w burning|strong="H1197"\w* \w lamp|strong="H3940"\w*. +\q1 +\v 2 \w The|strong="H3605"\w* \w nations|strong="H1471"\w* \w will|strong="H3068"\w* \w see|strong="H7200"\w* \w your|strong="H3068"\w* \w righteousness|strong="H6664"\w*, +\q2 \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w kings|strong="H4428"\w* \w your|strong="H3068"\w* \w glory|strong="H3519"\w*. +\q1 \w You|strong="H3605"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w called|strong="H7121"\w* \w by|strong="H3068"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w name|strong="H8034"\w*, +\q2 \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w mouth|strong="H6310"\w* \w will|strong="H3068"\w* \w name|strong="H8034"\w*. +\q1 +\v 3 \w You|strong="H3027"\w* \w will|strong="H3068"\w* \w also|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w crown|strong="H5850"\w* \w of|strong="H3068"\w* \w beauty|strong="H8597"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w*, +\q2 \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w royal|strong="H4410"\w* \w diadem|strong="H6797"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w hand|strong="H3027"\w*. +\q1 +\v 4 \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w called|strong="H7121"\w* \w Forsaken|strong="H5800"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*, +\q2 \w nor|strong="H3808"\w* \w will|strong="H3068"\w* \w your|strong="H3068"\w* land \w be|strong="H3808"\w* \w called|strong="H7121"\w* \w Desolate|strong="H8077"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*; +\q1 \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w called|strong="H7121"\w* \w Hephzibah|strong="H2657"\w*,\f + \fr 62:4 \ft Hephzibah means “I delight in her”.\f* +\q2 \w and|strong="H3068"\w* \w your|strong="H3068"\w* land \w Beulah|strong="H1166"\w*;\f + \fr 62:4 \ft Beulah means “married”\f* +\q1 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w delights|strong="H2654"\w* \w in|strong="H3068"\w* \w you|strong="H3588"\w*, +\q2 \w and|strong="H3068"\w* \w your|strong="H3068"\w* land \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w married|strong="H1166"\w*. +\q1 +\v 5 \w For|strong="H3588"\w* \w as|strong="H3588"\w* \w a|strong="H3068"\w* \w young|strong="H1121"\w* \w man|strong="H1121"\w* \w marries|strong="H1166"\w* \w a|strong="H3068"\w* \w virgin|strong="H1330"\w*, +\q2 \w so|strong="H3588"\w* \w your|strong="H5921"\w* \w sons|strong="H1121"\w* \w will|strong="H1121"\w* \w marry|strong="H1166"\w* \w you|strong="H3588"\w*. +\q1 \w As|strong="H3588"\w* \w a|strong="H3068"\w* \w bridegroom|strong="H2860"\w* \w rejoices|strong="H7797"\w* \w over|strong="H5921"\w* \w his|strong="H5921"\w* \w bride|strong="H3618"\w*, +\q2 \w so|strong="H3588"\w* \w your|strong="H5921"\w* God \w will|strong="H1121"\w* \w rejoice|strong="H7797"\w* \w over|strong="H5921"\w* \w you|strong="H3588"\w*. +\b +\q1 +\v 6 \w I|strong="H3117"\w* \w have|strong="H3068"\w* \w set|strong="H6485"\w* \w watchmen|strong="H8104"\w* \w on|strong="H5921"\w* \w your|strong="H3068"\w* \w walls|strong="H2346"\w*, \w Jerusalem|strong="H3389"\w*. +\q2 \w They|strong="H3117"\w* \w will|strong="H3068"\w* \w never|strong="H3808"\w* \w be|strong="H3808"\w* \w silent|strong="H2814"\w* \w day|strong="H3117"\w* \w nor|strong="H3808"\w* \w night|strong="H3915"\w*. +\q1 \w You|strong="H3605"\w* \w who|strong="H3605"\w* \w call|strong="H2142"\w* \w on|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w take|strong="H8104"\w* \w no|strong="H3808"\w* \w rest|strong="H1824"\w*, +\q2 +\v 7 \w and|strong="H3389"\w* \w give|strong="H5414"\w* \w him|strong="H5414"\w* \w no|strong="H5414"\w* \w rest|strong="H1824"\w* \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w establishes|strong="H3559"\w*, +\q2 \w and|strong="H3389"\w* \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w makes|strong="H7760"\w* \w Jerusalem|strong="H3389"\w* \w a|strong="H3068"\w* \w praise|strong="H8416"\w* \w in|strong="H5414"\w* \w the|strong="H5414"\w* earth. +\b +\q1 +\v 8 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w sworn|strong="H7650"\w* \w by|strong="H7650"\w* \w his|strong="H5414"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w*, +\q2 \w and|strong="H1121"\w* \w by|strong="H7650"\w* \w the|strong="H5414"\w* \w arm|strong="H2220"\w* \w of|strong="H1121"\w* \w his|strong="H5414"\w* \w strength|strong="H5797"\w*, +\q1 “\w Surely|strong="H5414"\w* \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w no|strong="H5414"\w* \w more|strong="H5750"\w* \w give|strong="H5414"\w* \w your|strong="H3068"\w* \w grain|strong="H1715"\w* \w to|strong="H3068"\w* \w be|strong="H5750"\w* \w food|strong="H3978"\w* \w for|strong="H3068"\w* \w your|strong="H3068"\w* enemies, +\q2 \w and|strong="H1121"\w* \w foreigners|strong="H1121"\w* \w will|strong="H3068"\w* \w not|strong="H5414"\w* \w drink|strong="H8354"\w* \w your|strong="H3068"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w*, \w for|strong="H3068"\w* \w which|strong="H3068"\w* \w you|strong="H5414"\w* \w have|strong="H3068"\w* \w labored|strong="H3021"\w*, +\q1 +\v 9 \w but|strong="H3588"\w* \w those|strong="H3588"\w* \w who|strong="H3068"\w* \w have|strong="H3068"\w* harvested \w it|strong="H3588"\w* \w will|strong="H3068"\w* eat \w it|strong="H3588"\w*, \w and|strong="H3068"\w* \w praise|strong="H1984"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w Those|strong="H3588"\w* \w who|strong="H3068"\w* \w have|strong="H3068"\w* \w gathered|strong="H6908"\w* \w it|strong="H3588"\w* \w will|strong="H3068"\w* \w drink|strong="H8354"\w* \w it|strong="H3588"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w courts|strong="H2691"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w sanctuary|strong="H6944"\w*.” +\b +\q1 +\v 10 \w Go|strong="H5674"\w* \w through|strong="H5674"\w*, \w go|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H5921"\w* \w gates|strong="H8179"\w*! +\q2 \w Prepare|strong="H6437"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w*! +\q1 \w Build|strong="H5549"\w* \w up|strong="H7311"\w*, \w build|strong="H5549"\w* \w up|strong="H7311"\w* \w the|strong="H5921"\w* \w highway|strong="H4546"\w*! +\q2 Gather \w out|strong="H5921"\w* \w the|strong="H5921"\w* \w stones|strong="H5619"\w*! +\q2 \w Lift|strong="H7311"\w* \w up|strong="H7311"\w* \w a|strong="H3068"\w* \w banner|strong="H5251"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w peoples|strong="H5971"\w*. +\q1 +\v 11 \w Behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w proclaimed|strong="H8085"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w end|strong="H7097"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* earth: +\q2 “Say \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w daughter|strong="H1323"\w* \w of|strong="H3068"\w* \w Zion|strong="H6726"\w*, +\q2 ‘\w Behold|strong="H2009"\w*, \w your|strong="H3068"\w* \w salvation|strong="H3468"\w* \w comes|strong="H6440"\w*! +\q1 \w Behold|strong="H2009"\w*, \w his|strong="H3068"\w* \w reward|strong="H7939"\w* \w is|strong="H3068"\w* \w with|strong="H3068"\w* \w him|strong="H6440"\w*, +\q2 \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w recompense|strong="H6468"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*!’” +\q1 +\v 12 \w They|strong="H1992"\w* \w will|strong="H3068"\w* \w call|strong="H7121"\w* \w them|strong="H1992"\w* “\w The|strong="H3068"\w* \w Holy|strong="H6944"\w* \w People|strong="H5971"\w*, +\q2 \w Yahweh|strong="H3068"\w*’s \w Redeemed|strong="H1350"\w*”. +\q1 \w You|strong="H3808"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w called|strong="H7121"\w* “\w Sought|strong="H1875"\w* \w Out|strong="H1875"\w*, +\q2 \w A|strong="H3068"\w* \w City|strong="H5892"\w* \w Not|strong="H3808"\w* \w Forsaken|strong="H5800"\w*”. +\c 63 +\q1 +\v 1 \w Who|strong="H4310"\w* \w is|strong="H2088"\w* \w this|strong="H2088"\w* \w who|strong="H4310"\w* \w comes|strong="H7227"\w* \w from|strong="H3581"\w* Edom, +\q2 \w with|strong="H1696"\w* \w dyed|strong="H2556"\w* \w garments|strong="H3830"\w* \w from|strong="H3581"\w* \w Bozrah|strong="H1224"\w*? +\q1 \w Who|strong="H4310"\w* \w is|strong="H2088"\w* \w this|strong="H2088"\w* \w who|strong="H4310"\w* \w is|strong="H2088"\w* \w glorious|strong="H1921"\w* \w in|strong="H1696"\w* \w his|strong="H1696"\w* \w clothing|strong="H3830"\w*, +\q2 \w marching|strong="H6808"\w* \w in|strong="H1696"\w* \w the|strong="H1696"\w* \w greatness|strong="H7230"\w* \w of|strong="H7230"\w* \w his|strong="H1696"\w* \w strength|strong="H3581"\w*? +\q1 “\w It|strong="H1696"\w* \w is|strong="H2088"\w* \w I|strong="H2088"\w* \w who|strong="H4310"\w* \w speak|strong="H1696"\w* \w in|strong="H1696"\w* \w righteousness|strong="H6666"\w*, +\q2 \w mighty|strong="H7227"\w* \w to|strong="H1696"\w* \w save|strong="H3467"\w*.” +\q1 +\v 2 \w Why|strong="H4069"\w* \w is|strong="H3830"\w* your \w clothing|strong="H3830"\w* red, +\q2 \w and|strong="H3830"\w* your \w garments|strong="H3830"\w* like him \w who|strong="H1869"\w* \w treads|strong="H1869"\w* \w in|strong="H3830"\w* \w the|strong="H1869"\w* \w wine|strong="H1660"\w* vat? +\b +\q1 +\v 3 “\w I|strong="H5921"\w* \w have|strong="H5971"\w* \w trodden|strong="H1869"\w* \w the|strong="H3605"\w* \w wine|strong="H6333"\w* \w press|strong="H6333"\w* alone. +\q2 \w Of|strong="H5971"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w*, \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w was|strong="H3605"\w* \w with|strong="H5921"\w* \w me|strong="H5921"\w*. +\q1 Yes, \w I|strong="H5921"\w* \w trod|strong="H1869"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w my|strong="H3605"\w* \w anger|strong="H2534"\w* +\q2 \w and|strong="H5971"\w* \w trampled|strong="H7429"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w my|strong="H3605"\w* \w wrath|strong="H2534"\w*. +\q1 \w Their|strong="H3605"\w* \w lifeblood|strong="H5332"\w* \w is|strong="H3605"\w* \w sprinkled|strong="H5137"\w* \w on|strong="H5921"\w* \w my|strong="H3605"\w* \w garments|strong="H4403"\w*, +\q2 \w and|strong="H5971"\w* \w I|strong="H5921"\w* \w have|strong="H5971"\w* \w stained|strong="H1351"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* clothing. +\q1 +\v 4 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w vengeance|strong="H5359"\w* \w was|strong="H3820"\w* \w in|strong="H8141"\w* \w my|strong="H3588"\w* \w heart|strong="H3820"\w*, +\q2 \w and|strong="H3117"\w* \w the|strong="H3588"\w* \w year|strong="H8141"\w* \w of|strong="H3117"\w* \w my|strong="H3588"\w* \w redeemed|strong="H1350"\w* \w has|strong="H3820"\w* come. +\q1 +\v 5 I \w looked|strong="H5027"\w*, \w and|strong="H8074"\w* there \w was|strong="H1931"\w* no \w one|strong="H1931"\w* \w to|strong="H2534"\w* \w help|strong="H5826"\w*; +\q2 \w and|strong="H8074"\w* I \w wondered|strong="H8074"\w* \w that|strong="H1931"\w* there \w was|strong="H1931"\w* no \w one|strong="H1931"\w* \w to|strong="H2534"\w* \w uphold|strong="H5564"\w*. +\q1 Therefore \w my|strong="H3467"\w* own \w arm|strong="H2220"\w* \w brought|strong="H2220"\w* \w salvation|strong="H3467"\w* \w to|strong="H2534"\w* \w me|strong="H3467"\w*. +\q2 \w My|strong="H3467"\w* own \w wrath|strong="H2534"\w* \w upheld|strong="H5564"\w* \w me|strong="H3467"\w*. +\q1 +\v 6 \w I|strong="H5971"\w* trod \w down|strong="H3381"\w* \w the|strong="H3381"\w* \w peoples|strong="H5971"\w* \w in|strong="H5971"\w* \w my|strong="H3381"\w* \w anger|strong="H2534"\w* +\q2 \w and|strong="H5971"\w* \w made|strong="H7937"\w* \w them|strong="H3381"\w* \w drunk|strong="H7937"\w* \w in|strong="H5971"\w* \w my|strong="H3381"\w* \w wrath|strong="H2534"\w*. +\q2 \w I|strong="H5971"\w* \w poured|strong="H2534"\w* \w their|strong="H3381"\w* \w lifeblood|strong="H5332"\w* \w out|strong="H3381"\w* \w on|strong="H3381"\w* \w the|strong="H3381"\w* earth.” +\b +\q1 +\v 7 \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w tell|strong="H3605"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* loving \w kindnesses|strong="H2617"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w* +\q2 \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w praises|strong="H8416"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* given \w to|strong="H3478"\w* \w us|strong="H5921"\w*, +\q1 \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w great|strong="H7227"\w* \w goodness|strong="H2898"\w* \w toward|strong="H5921"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, +\q2 \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* given \w to|strong="H3478"\w* \w them|strong="H5921"\w* \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w his|strong="H3605"\w* \w mercies|strong="H7356"\w*, +\q2 \w and|strong="H3478"\w* \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w multitude|strong="H7230"\w* \w of|strong="H1004"\w* \w his|strong="H3605"\w* loving \w kindnesses|strong="H2617"\w*. +\q1 +\v 8 \w For|strong="H1121"\w* \w he|strong="H3808"\w* said, “\w Surely|strong="H1961"\w*, \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w my|strong="H1961"\w* \w people|strong="H5971"\w*, +\q2 \w children|strong="H1121"\w* \w who|strong="H5971"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w deal|strong="H8266"\w* \w falsely|strong="H8266"\w*;” +\q2 \w so|strong="H1961"\w* \w he|strong="H3808"\w* \w became|strong="H1961"\w* \w their|strong="H1992"\w* \w Savior|strong="H3467"\w*. +\q1 +\v 9 \w In|strong="H3117"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w affliction|strong="H6869"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w afflicted|strong="H6862"\w*, +\q2 \w and|strong="H3117"\w* \w the|strong="H3605"\w* \w angel|strong="H4397"\w* \w of|strong="H3117"\w* \w his|strong="H3605"\w* \w presence|strong="H6440"\w* \w saved|strong="H3467"\w* \w them|strong="H6440"\w*. +\q1 \w In|strong="H3117"\w* \w his|strong="H3605"\w* love \w and|strong="H3117"\w* \w in|strong="H3117"\w* \w his|strong="H3605"\w* \w pity|strong="H2551"\w* \w he|strong="H1931"\w* \w redeemed|strong="H1350"\w* \w them|strong="H6440"\w*. +\q2 \w He|strong="H1931"\w* \w bore|strong="H5375"\w* \w them|strong="H6440"\w*, +\q2 \w and|strong="H3117"\w* \w carried|strong="H5375"\w* \w them|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w old|strong="H5769"\w*. +\b +\q1 +\v 10 \w But|strong="H1992"\w* \w they|strong="H1992"\w* \w rebelled|strong="H4784"\w* +\q2 \w and|strong="H6944"\w* \w grieved|strong="H6087"\w* \w his|strong="H2015"\w* \w Holy|strong="H6944"\w* \w Spirit|strong="H7307"\w*. +\q1 Therefore \w he|strong="H1931"\w* \w turned|strong="H2015"\w* \w and|strong="H6944"\w* \w became|strong="H4784"\w* \w their|strong="H1992"\w* enemy, +\q2 \w and|strong="H6944"\w* \w he|strong="H1931"\w* \w himself|strong="H1931"\w* \w fought|strong="H3898"\w* \w against|strong="H3898"\w* \w them|strong="H1992"\w*. +\b +\q1 +\v 11 \w Then|strong="H4872"\w* \w he|strong="H3117"\w* \w remembered|strong="H2142"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w old|strong="H5769"\w*, +\q2 \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* \w his|strong="H7760"\w* \w people|strong="H5971"\w*, saying, +\q1 “Where \w is|strong="H3117"\w* \w he|strong="H3117"\w* \w who|strong="H5971"\w* \w brought|strong="H5927"\w* \w them|strong="H7760"\w* \w up|strong="H5927"\w* \w out|strong="H2142"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w sea|strong="H3220"\w* \w with|strong="H3117"\w* \w the|strong="H3117"\w* \w shepherds|strong="H7462"\w* \w of|strong="H3117"\w* \w his|strong="H7760"\w* \w flock|strong="H6629"\w*? +\q2 Where \w is|strong="H3117"\w* \w he|strong="H3117"\w* \w who|strong="H5971"\w* \w put|strong="H7760"\w* \w his|strong="H7760"\w* \w Holy|strong="H6944"\w* \w Spirit|strong="H7307"\w* \w among|strong="H7130"\w* \w them|strong="H7760"\w*?” +\q1 +\v 12 \w Who|strong="H6213"\w* \w caused|strong="H6213"\w* \w his|strong="H6440"\w* \w glorious|strong="H8597"\w* \w arm|strong="H2220"\w* \w to|strong="H3212"\w* \w be|strong="H5769"\w* \w at|strong="H6213"\w* \w Moses|strong="H4872"\w*’ \w right|strong="H3225"\w* \w hand|strong="H3225"\w*? +\q2 \w Who|strong="H6213"\w* \w divided|strong="H1234"\w* \w the|strong="H6440"\w* \w waters|strong="H4325"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*, \w to|strong="H3212"\w* \w make|strong="H6213"\w* \w himself|strong="H6213"\w* \w an|strong="H6213"\w* \w everlasting|strong="H5769"\w* \w name|strong="H8034"\w*? +\q1 +\v 13 \w Who|strong="H3808"\w* \w led|strong="H3212"\w* them \w through|strong="H3212"\w* \w the|strong="H3808"\w* \w depths|strong="H8415"\w*, +\q2 \w like|strong="H3808"\w* \w a|strong="H3068"\w* \w horse|strong="H5483"\w* \w in|strong="H3212"\w* \w the|strong="H3808"\w* \w wilderness|strong="H4057"\w*, +\q2 \w so|strong="H3808"\w* \w that|strong="H3808"\w* \w they|strong="H3808"\w* didn’t \w stumble|strong="H3782"\w*? +\q1 +\v 14 \w As|strong="H6213"\w* \w the|strong="H6213"\w* livestock \w that|strong="H5971"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w the|strong="H6213"\w* \w valley|strong="H1237"\w*, +\q2 \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w* \w caused|strong="H6213"\w* \w them|strong="H6213"\w* \w to|strong="H3381"\w* \w rest|strong="H5117"\w*. +\q2 \w So|strong="H3651"\w* \w you|strong="H6213"\w* \w led|strong="H5090"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w* \w to|strong="H3381"\w* \w make|strong="H6213"\w* \w yourself|strong="H6213"\w* \w a|strong="H3068"\w* \w glorious|strong="H8597"\w* \w name|strong="H8034"\w*. +\b +\q1 +\v 15 \w Look|strong="H7200"\w* \w down|strong="H5027"\w* \w from|strong="H5027"\w* \w heaven|strong="H8064"\w*, +\q2 \w and|strong="H8064"\w* \w see|strong="H7200"\w* \w from|strong="H5027"\w* \w the|strong="H7200"\w* \w habitation|strong="H2073"\w* \w of|strong="H1995"\w* \w your|strong="H7200"\w* \w holiness|strong="H6944"\w* \w and|strong="H8064"\w* \w of|strong="H1995"\w* \w your|strong="H7200"\w* \w glory|strong="H8597"\w*. +\q1 Where \w are|strong="H8064"\w* \w your|strong="H7200"\w* \w zeal|strong="H7068"\w* \w and|strong="H8064"\w* \w your|strong="H7200"\w* \w mighty|strong="H1369"\w* \w acts|strong="H1369"\w*? +\q2 \w The|strong="H7200"\w* yearning \w of|strong="H1995"\w* \w your|strong="H7200"\w* \w heart|strong="H4578"\w* \w and|strong="H8064"\w* \w your|strong="H7200"\w* \w compassion|strong="H7356"\w* \w is|strong="H4578"\w* restrained toward \w me|strong="H7200"\w*. +\q1 +\v 16 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H3478"\w* \w our|strong="H3068"\w* Father, +\q2 \w though|strong="H3588"\w* Abraham doesn’t \w know|strong="H3045"\w* \w us|strong="H3045"\w*, +\q2 \w and|strong="H3478"\w* \w Israel|strong="H3478"\w* \w does|strong="H3808"\w* \w not|strong="H3808"\w* \w acknowledge|strong="H3045"\w* \w us|strong="H3045"\w*. +\q1 \w You|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w are|strong="H3478"\w* \w our|strong="H3068"\w* Father. +\q2 \w Our|strong="H3068"\w* \w Redeemer|strong="H1350"\w* \w from|strong="H3478"\w* \w everlasting|strong="H5769"\w* \w is|strong="H3068"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w*. +\q1 +\v 17 \w O|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w why|strong="H4100"\w* \w do|strong="H3068"\w* \w you|strong="H7725"\w* \w make|strong="H7725"\w* \w us|strong="H7725"\w* \w wander|strong="H8582"\w* \w from|strong="H7725"\w* \w your|strong="H3068"\w* \w ways|strong="H1870"\w*, +\q2 \w and|strong="H3068"\w* \w harden|strong="H7188"\w* \w our|strong="H3068"\w* \w heart|strong="H3820"\w* \w from|strong="H7725"\w* \w your|strong="H3068"\w* \w fear|strong="H3374"\w*? +\q1 \w Return|strong="H7725"\w* \w for|strong="H3068"\w* \w your|strong="H3068"\w* \w servants|strong="H5650"\w*’ \w sake|strong="H4616"\w*, +\q2 \w the|strong="H3068"\w* \w tribes|strong="H7626"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w inheritance|strong="H5159"\w*. +\q1 +\v 18 \w Your|strong="H5971"\w* \w holy|strong="H6944"\w* \w people|strong="H5971"\w* \w possessed|strong="H3423"\w* \w it|strong="H3423"\w* \w but|strong="H5971"\w* \w a|strong="H3068"\w* \w little|strong="H4705"\w* \w while|strong="H4705"\w*. +\q2 \w Our|strong="H5971"\w* \w adversaries|strong="H6862"\w* \w have|strong="H5971"\w* trodden down \w your|strong="H5971"\w* \w sanctuary|strong="H6944"\w*. +\q1 +\v 19 \w We|strong="H8034"\w* \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w like|strong="H1961"\w* \w those|strong="H5921"\w* \w over|strong="H5921"\w* \w whom|strong="H6440"\w* \w you|strong="H6440"\w* \w never|strong="H3808"\w* \w ruled|strong="H4910"\w*, +\q2 \w like|strong="H1961"\w* \w those|strong="H5921"\w* \w who|strong="H3808"\w* \w were|strong="H1961"\w* \w not|strong="H3808"\w* \w called|strong="H7121"\w* \w by|strong="H5921"\w* \w your|strong="H5921"\w* \w name|strong="H8034"\w*. +\c 64 +\q1 +\v 1 Oh \w that|strong="H3045"\w* \w you|strong="H6440"\w* \w would|strong="H6862"\w* tear \w the|strong="H6440"\w* heavens, +\q2 \w that|strong="H3045"\w* \w you|strong="H6440"\w* \w would|strong="H6862"\w* \w come|strong="H3045"\w* \w down|strong="H6440"\w*, +\q2 \w that|strong="H3045"\w* \w the|strong="H6440"\w* mountains might \w quake|strong="H7264"\w* \w at|strong="H6440"\w* \w your|strong="H6440"\w* \w presence|strong="H6440"\w*— +\q1 +\v 2 \w as|strong="H6213"\w* \w when|strong="H6213"\w* fire kindles \w the|strong="H6440"\w* brushwood, +\q2 \w and|strong="H6440"\w* \w the|strong="H6440"\w* fire causes \w the|strong="H6440"\w* water \w to|strong="H3381"\w* boil. +\q1 \w Make|strong="H6213"\w* \w your|strong="H6440"\w* name \w known|strong="H3808"\w* \w to|strong="H3381"\w* \w your|strong="H6440"\w* adversaries, +\q2 \w that|strong="H2022"\w* \w the|strong="H6440"\w* \w nations|strong="H6440"\w* \w may|strong="H6213"\w* tremble \w at|strong="H6213"\w* \w your|strong="H6440"\w* \w presence|strong="H6440"\w*! +\q1 +\v 3 \w When|strong="H7200"\w* \w you|strong="H6213"\w* \w did|strong="H6213"\w* awesome \w things|strong="H3808"\w* \w which|strong="H5869"\w* \w we|strong="H3068"\w* didn’t \w look|strong="H7200"\w* \w for|strong="H6213"\w*, +\q2 \w you|strong="H6213"\w* came down, \w and|strong="H5869"\w* \w the|strong="H8085"\w* mountains quaked \w at|strong="H6213"\w* \w your|strong="H7200"\w* \w presence|strong="H5869"\w*. +\q1 +\v 4 \w For|strong="H6213"\w* \w from|strong="H2398"\w* \w of|strong="H1870"\w* \w old|strong="H5769"\w* \w men|strong="H6213"\w* have \w not|strong="H6213"\w* heard, +\q2 nor perceived \w by|strong="H1870"\w* \w the|strong="H6213"\w* ear, +\q2 nor \w has|strong="H6213"\w* \w the|strong="H6213"\w* eye seen \w a|strong="H3068"\w* God besides \w you|strong="H6213"\w*, +\q2 \w who|strong="H6213"\w* \w works|strong="H6213"\w* \w for|strong="H6213"\w* \w him|strong="H6213"\w* \w who|strong="H6213"\w* waits \w for|strong="H6213"\w* \w him|strong="H6213"\w*. +\q1 +\v 5 \w You|strong="H3605"\w* meet \w him|strong="H3605"\w* \w who|strong="H3605"\w* rejoices \w and|strong="H6666"\w* does \w righteousness|strong="H6666"\w*, +\q2 \w those|strong="H3605"\w* \w who|strong="H3605"\w* remember \w you|strong="H3605"\w* \w in|strong="H1961"\w* \w your|strong="H3605"\w* ways. +\q1 Behold, \w you|strong="H3605"\w* \w were|strong="H1961"\w* angry, \w and|strong="H6666"\w* \w we|strong="H3068"\w* sinned. +\q2 \w We|strong="H3605"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w in|strong="H1961"\w* \w sin|strong="H5771"\w* \w for|strong="H3605"\w* \w a|strong="H3068"\w* \w long|strong="H3605"\w* \w time|strong="H1961"\w*. +\q2 \w Shall|strong="H7307"\w* \w we|strong="H3068"\w* \w be|strong="H1961"\w* saved? +\q1 +\v 6 \w For|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3027"\w* \w all|strong="H4480"\w* \w become|strong="H7121"\w* \w like|strong="H6440"\w* \w one|strong="H4480"\w* \w who|strong="H3588"\w* \w is|strong="H8034"\w* unclean, +\q2 \w and|strong="H3027"\w* \w all|strong="H4480"\w* \w our|strong="H4480"\w* righteousness \w is|strong="H8034"\w* \w like|strong="H6440"\w* \w a|strong="H3068"\w* polluted garment. +\q1 \w We|strong="H3588"\w* \w all|strong="H4480"\w* fade \w like|strong="H6440"\w* \w a|strong="H3068"\w* leaf; +\q2 \w and|strong="H3027"\w* \w our|strong="H4480"\w* \w iniquities|strong="H5771"\w*, \w like|strong="H6440"\w* \w the|strong="H6440"\w* wind, \w take|strong="H2388"\w* \w us|strong="H6440"\w* \w away|strong="H4127"\w*. +\q1 +\v 7 \w There|strong="H3605"\w* \w is|strong="H3068"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w who|strong="H3605"\w* calls \w on|strong="H3027"\w* \w your|strong="H3068"\w* name, +\q2 \w who|strong="H3605"\w* stirs \w himself|strong="H3027"\w* \w up|strong="H3605"\w* \w to|strong="H3068"\w* \w take|strong="H3027"\w* hold \w of|strong="H3068"\w* \w you|strong="H3605"\w*; +\q1 \w for|strong="H3027"\w* \w you|strong="H3605"\w* \w have|strong="H3068"\w* hidden \w your|strong="H3068"\w* face \w from|strong="H3027"\w* \w us|strong="H3027"\w*, +\q2 \w and|strong="H3068"\w* \w have|strong="H3068"\w* consumed \w us|strong="H3027"\w* \w by|strong="H3027"\w* \w means|strong="H3027"\w* \w of|strong="H3068"\w* \w our|strong="H3068"\w* iniquities. +\b +\q1 +\v 8 \w But|strong="H5971"\w* \w now|strong="H4994"\w*, \w Yahweh|strong="H3068"\w*, \w you|strong="H3605"\w* \w are|strong="H5971"\w* \w our|strong="H3068"\w* Father. +\q2 \w We|strong="H5704"\w* \w are|strong="H5971"\w* \w the|strong="H3605"\w* clay \w and|strong="H3068"\w* \w you|strong="H3605"\w* \w our|strong="H3068"\w* potter. +\q2 \w We|strong="H5704"\w* \w all|strong="H3605"\w* \w are|strong="H5971"\w* \w the|strong="H3605"\w* work \w of|strong="H3068"\w* \w your|strong="H3068"\w* hand. +\q1 +\v 9 Don’t \w be|strong="H1961"\w* furious, \w Yahweh|strong="H3068"\w*. +\q2 Don’t remember iniquity forever. +\q1 Look \w and|strong="H3389"\w* see, \w we|strong="H3068"\w* beg \w you|strong="H6726"\w*, +\q2 \w we|strong="H3068"\w* \w are|strong="H5892"\w* all \w your|strong="H1961"\w* people. +\q1 +\v 10 \w Your|strong="H3605"\w* \w holy|strong="H6944"\w* cities \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* wilderness. +\q2 Zion \w has|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* wilderness, +\q2 Jerusalem \w a|strong="H3068"\w* \w desolation|strong="H2723"\w*. +\q1 +\v 11 \w Our|strong="H3068"\w* holy \w and|strong="H3068"\w* \w our|strong="H3068"\w* beautiful house \w where|strong="H5921"\w* \w our|strong="H3068"\w* fathers praised \w you|strong="H5921"\w* +\q2 \w is|strong="H3068"\w* burned \w with|strong="H3068"\w* fire. +\q2 \w All|strong="H5704"\w* \w our|strong="H3068"\w* pleasant places \w are|strong="H3068"\w* laid waste. +\q1 +\v 12 Will you hold yourself back for these things, \w Yahweh|strong="H3068"\w*? +\q2 Will you keep silent and punish us very severely? +\c 65 +\q1 +\v 1 “\w I|strong="H2005"\w* \w am|strong="H2005"\w* \w inquired|strong="H7592"\w* \w of|strong="H8034"\w* \w by|strong="H7121"\w* those \w who|strong="H4672"\w* didn’t \w ask|strong="H7592"\w*. +\q2 \w I|strong="H2005"\w* \w am|strong="H2005"\w* \w found|strong="H4672"\w* \w by|strong="H7121"\w* those \w who|strong="H4672"\w* didn’t \w seek|strong="H1245"\w* \w me|strong="H7121"\w*. +\q2 \w I|strong="H2005"\w* \w said|strong="H7121"\w*, ‘\w See|strong="H2005"\w* \w me|strong="H7121"\w*, \w see|strong="H2005"\w* \w me|strong="H7121"\w*,’ \w to|strong="H1245"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w that|strong="H1471"\w* \w was|strong="H8034"\w* \w not|strong="H3808"\w* \w called|strong="H7121"\w* \w by|strong="H7121"\w* \w my|strong="H1245"\w* \w name|strong="H8034"\w*. +\q1 +\v 2 \w I|strong="H3117"\w* \w have|strong="H5971"\w* \w spread|strong="H6566"\w* \w out|strong="H6566"\w* \w my|strong="H3605"\w* \w hands|strong="H3027"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w* \w to|strong="H1980"\w* \w a|strong="H3068"\w* \w rebellious|strong="H5637"\w* \w people|strong="H5971"\w*, +\q2 \w who|strong="H3605"\w* \w walk|strong="H1980"\w* \w in|strong="H1980"\w* \w a|strong="H3068"\w* \w way|strong="H1870"\w* \w that|strong="H5971"\w* \w is|strong="H3117"\w* \w not|strong="H3808"\w* \w good|strong="H2896"\w*, +\q2 \w after|strong="H3117"\w* \w their|strong="H3605"\w* \w own|strong="H5971"\w* \w thoughts|strong="H4284"\w*; +\q1 +\v 3 \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w provoke|strong="H3707"\w* \w me|strong="H6440"\w* \w to|strong="H5921"\w* \w my|strong="H5921"\w* \w face|strong="H6440"\w* \w continually|strong="H8548"\w*, +\q2 \w sacrificing|strong="H2076"\w* \w in|strong="H5921"\w* \w gardens|strong="H1593"\w*, +\q2 \w and|strong="H5971"\w* \w burning|strong="H6999"\w* \w incense|strong="H6999"\w* \w on|strong="H5921"\w* \w bricks|strong="H3843"\w*; +\q1 +\v 4 \w who|strong="H3427"\w* \w sit|strong="H3427"\w* \w among|strong="H3427"\w* \w the|strong="H3885"\w* \w graves|strong="H6913"\w*, +\q2 \w and|strong="H3427"\w* \w spend|strong="H3885"\w* nights \w in|strong="H3427"\w* \w secret|strong="H5341"\w* \w places|strong="H5341"\w*; +\q1 \w who|strong="H3427"\w* eat \w pig|strong="H2386"\w*’s \w meat|strong="H1320"\w*, +\q2 \w and|strong="H3427"\w* broth \w of|strong="H3427"\w* \w abominable|strong="H6292"\w* \w things|strong="H3627"\w* \w is|strong="H1320"\w* \w in|strong="H3427"\w* \w their|strong="H3427"\w* \w vessels|strong="H3627"\w*; +\q1 +\v 5 \w who|strong="H3605"\w* say, ‘Stay \w by|strong="H3117"\w* yourself, +\q2 don’t \w come|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H3117"\w* \w me|strong="H5066"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* am \w holier|strong="H6942"\w* \w than|strong="H3588"\w* \w you|strong="H3588"\w*.’ +\q1 \w These|strong="H3605"\w* \w are|strong="H3117"\w* \w smoke|strong="H6227"\w* \w in|strong="H3117"\w* \w my|strong="H3605"\w* nose, +\q2 \w a|strong="H3068"\w* fire \w that|strong="H3588"\w* \w burns|strong="H3344"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w*. +\b +\q1 +\v 6 “\w Behold|strong="H2009"\w*, \w it|strong="H5921"\w* \w is|strong="H2009"\w* \w written|strong="H3789"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*: +\q2 \w I|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w keep|strong="H2814"\w* \w silence|strong="H2814"\w*, +\q2 \w but|strong="H3588"\w* \w will|strong="H3808"\w* \w repay|strong="H7999"\w*, +\q2 \w yes|strong="H3588"\w*, \w I|strong="H3588"\w* \w will|strong="H3808"\w* \w repay|strong="H7999"\w* \w into|strong="H5921"\w* \w their|strong="H6440"\w* \w bosom|strong="H2436"\w* +\q1 +\v 7 \w your|strong="H3068"\w* own \w iniquities|strong="H5771"\w* \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w iniquities|strong="H5771"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* fathers \w together|strong="H3162"\w*”, says \w Yahweh|strong="H3068"\w*, +\q2 “\w who|strong="H3068"\w* \w have|strong="H3068"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w*, +\q2 \w and|strong="H3068"\w* \w blasphemed|strong="H2778"\w* \w me|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w hills|strong="H1389"\w*. +\q2 \w Therefore|strong="H5921"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w first|strong="H7223"\w* \w measure|strong="H4058"\w* \w their|strong="H3068"\w* \w work|strong="H6468"\w* \w into|strong="H5921"\w* \w their|strong="H3068"\w* \w bosom|strong="H2436"\w*.” +\b +\p +\v 8 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, +\q1 “\w As|strong="H6213"\w* \w the|strong="H3605"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w* \w is|strong="H3068"\w* \w found|strong="H4672"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* cluster, +\q2 \w and|strong="H3068"\w* \w one|strong="H3605"\w* \w says|strong="H3541"\w*, ‘Don’t \w destroy|strong="H7843"\w* \w it|strong="H3588"\w*, \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w blessing|strong="H1293"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w it|strong="H3588"\w*:’ +\q1 \w so|strong="H3651"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w for|strong="H3588"\w* \w my|strong="H3605"\w* \w servants|strong="H5650"\w*’ \w sake|strong="H4616"\w*, +\q2 \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H3068"\w* \w not|strong="H1115"\w* \w destroy|strong="H7843"\w* \w them|strong="H6213"\w* \w all|strong="H3605"\w*. +\q1 +\v 9 \w I|strong="H5650"\w* \w will|strong="H5650"\w* \w bring|strong="H3318"\w* \w offspring|strong="H2233"\w* \w out|strong="H3318"\w* \w of|strong="H2022"\w* \w Jacob|strong="H3290"\w*, +\q2 \w and|strong="H3063"\w* \w out|strong="H3318"\w* \w of|strong="H2022"\w* \w Judah|strong="H3063"\w* \w an|strong="H8033"\w* \w inheritor|strong="H3423"\w* \w of|strong="H2022"\w* \w my|strong="H3318"\w* \w mountains|strong="H2022"\w*. +\q1 \w My|strong="H3318"\w* chosen \w will|strong="H5650"\w* \w inherit|strong="H3423"\w* \w it|strong="H8033"\w*, +\q2 \w and|strong="H3063"\w* \w my|strong="H3318"\w* \w servants|strong="H5650"\w* \w will|strong="H5650"\w* \w dwell|strong="H7931"\w* \w there|strong="H8033"\w*. +\q1 +\v 10 \w Sharon|strong="H8289"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w fold|strong="H5116"\w* \w of|strong="H6010"\w* \w flocks|strong="H6629"\w*, +\q2 \w and|strong="H5971"\w* \w the|strong="H1875"\w* \w valley|strong="H6010"\w* \w of|strong="H6010"\w* \w Achor|strong="H5911"\w* \w a|strong="H3068"\w* \w place|strong="H1961"\w* \w for|strong="H5971"\w* \w herds|strong="H1241"\w* \w to|strong="H1961"\w* \w lie|strong="H1961"\w* down \w in|strong="H6629"\w*, +\q2 \w for|strong="H5971"\w* \w my|strong="H1961"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w have|strong="H1961"\w* \w sought|strong="H1875"\w* \w me|strong="H1875"\w*. +\b +\q1 +\v 11 “\w But|strong="H5800"\w* \w you|strong="H5800"\w* \w who|strong="H3068"\w* \w forsake|strong="H5800"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w who|strong="H3068"\w* \w forget|strong="H7911"\w* \w my|strong="H3068"\w* \w holy|strong="H6944"\w* \w mountain|strong="H2022"\w*, +\q2 \w who|strong="H3068"\w* \w prepare|strong="H6186"\w* \w a|strong="H3068"\w* \w table|strong="H7979"\w* \w for|strong="H3068"\w* Fortune, +\q2 \w and|strong="H3068"\w* \w who|strong="H3068"\w* \w fill|strong="H4390"\w* \w up|strong="H6186"\w* \w mixed|strong="H4469"\w* \w wine|strong="H4469"\w* \w to|strong="H3068"\w* \w Destiny|strong="H4507"\w*; +\q1 +\v 12 \w I|strong="H3282"\w* \w will|strong="H5869"\w* \w destine|strong="H4487"\w* \w you|strong="H3605"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, +\q2 \w and|strong="H6030"\w* \w you|strong="H3605"\w* \w will|strong="H5869"\w* \w all|strong="H3605"\w* \w bow|strong="H3766"\w* \w down|strong="H3766"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w slaughter|strong="H2874"\w*; +\q1 \w because|strong="H3282"\w* \w when|strong="H8085"\w* \w I|strong="H3282"\w* \w called|strong="H7121"\w*, \w you|strong="H3605"\w* didn’t \w answer|strong="H6030"\w*. +\q2 \w When|strong="H8085"\w* \w I|strong="H3282"\w* \w spoke|strong="H1696"\w*, \w you|strong="H3605"\w* didn’t \w listen|strong="H8085"\w*; +\q1 \w but|strong="H3808"\w* \w you|strong="H3605"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H5869"\w* \w was|strong="H7451"\w* \w evil|strong="H7451"\w* \w in|strong="H6213"\w* \w my|strong="H8085"\w* \w eyes|strong="H5869"\w*, +\q2 \w and|strong="H6030"\w* \w chose|strong="H6213"\w* \w that|strong="H3605"\w* \w in|strong="H6213"\w* \w which|strong="H5869"\w* \w I|strong="H3282"\w* didn’t \w delight|strong="H2654"\w*.” +\b +\p +\v 13 \w Therefore|strong="H3651"\w* \w the|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, +\q1 “\w Behold|strong="H2009"\w*, \w my|strong="H5650"\w* \w servants|strong="H5650"\w* \w will|strong="H5650"\w* eat, +\q2 \w but|strong="H2009"\w* \w you|strong="H3651"\w* \w will|strong="H5650"\w* \w be|strong="H5650"\w* \w hungry|strong="H7456"\w*; +\q1 \w behold|strong="H2009"\w*, \w my|strong="H5650"\w* \w servants|strong="H5650"\w* \w will|strong="H5650"\w* \w drink|strong="H8354"\w*, +\q2 \w but|strong="H2009"\w* \w you|strong="H3651"\w* \w will|strong="H5650"\w* \w be|strong="H5650"\w* \w thirsty|strong="H6770"\w*. +\q1 \w Behold|strong="H2009"\w*, \w my|strong="H5650"\w* \w servants|strong="H5650"\w* \w will|strong="H5650"\w* \w rejoice|strong="H8055"\w*, +\q2 \w but|strong="H2009"\w* \w you|strong="H3651"\w* \w will|strong="H5650"\w* \w be|strong="H5650"\w* disappointed. +\q1 +\v 14 \w Behold|strong="H2009"\w*, \w my|strong="H5650"\w* \w servants|strong="H5650"\w* \w will|strong="H5650"\w* \w sing|strong="H7442"\w* \w for|strong="H7442"\w* \w joy|strong="H7442"\w* \w of|strong="H7307"\w* \w heart|strong="H3820"\w*, +\q2 \w but|strong="H2009"\w* \w you|strong="H2009"\w* \w will|strong="H5650"\w* \w cry|strong="H6817"\w* \w for|strong="H7442"\w* \w sorrow|strong="H3511"\w* \w of|strong="H7307"\w* \w heart|strong="H3820"\w*, +\q2 \w and|strong="H5650"\w* \w will|strong="H5650"\w* \w wail|strong="H3213"\w* \w for|strong="H7442"\w* anguish \w of|strong="H7307"\w* \w spirit|strong="H7307"\w*. +\q1 +\v 15 \w You|strong="H7121"\w* \w will|strong="H5650"\w* \w leave|strong="H3240"\w* \w your|strong="H7121"\w* \w name|strong="H8034"\w* \w for|strong="H7121"\w* \w a|strong="H3068"\w* \w curse|strong="H7621"\w* \w to|strong="H4191"\w* \w my|strong="H5650"\w* chosen, +\q2 \w and|strong="H5650"\w* \w the|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H5650"\w* \w kill|strong="H4191"\w* \w you|strong="H7121"\w*. +\q1 \w He|strong="H7121"\w* \w will|strong="H5650"\w* \w call|strong="H7121"\w* \w his|strong="H7121"\w* \w servants|strong="H5650"\w* \w by|strong="H7121"\w* another \w name|strong="H8034"\w*, +\q2 +\v 16 \w so|strong="H3588"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w who|strong="H3588"\w* \w blesses|strong="H1288"\w* himself \w in|strong="H5869"\w* \w the|strong="H3588"\w* earth \w will|strong="H5869"\w* \w bless|strong="H1288"\w* himself \w in|strong="H5869"\w* \w the|strong="H3588"\w* God \w of|strong="H5869"\w* truth; +\q2 \w and|strong="H5869"\w* \w he|strong="H3588"\w* \w who|strong="H3588"\w* \w swears|strong="H7650"\w* \w in|strong="H5869"\w* \w the|strong="H3588"\w* earth \w will|strong="H5869"\w* \w swear|strong="H7650"\w* \w by|strong="H7650"\w* \w the|strong="H3588"\w* God \w of|strong="H5869"\w* truth; +\q1 \w because|strong="H3588"\w* \w the|strong="H3588"\w* \w former|strong="H7223"\w* \w troubles|strong="H6869"\w* \w are|strong="H5869"\w* \w forgotten|strong="H7911"\w*, +\q2 \w and|strong="H5869"\w* \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H5869"\w* \w hidden|strong="H5641"\w* \w from|strong="H5869"\w* \w my|strong="H5641"\w* \w eyes|strong="H5869"\w*. +\b +\q1 +\v 17 “\w For|strong="H3588"\w*, \w behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w create|strong="H1254"\w* \w new|strong="H2319"\w* \w heavens|strong="H8064"\w* \w and|strong="H8064"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w earth|strong="H5927"\w*; +\q2 \w and|strong="H8064"\w* \w the|strong="H5921"\w* \w former|strong="H7223"\w* \w things|strong="H7223"\w* \w will|strong="H8064"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w remembered|strong="H2142"\w*, +\q2 \w nor|strong="H3808"\w* \w come|strong="H5927"\w* \w into|strong="H5927"\w* \w mind|strong="H3820"\w*. +\q1 +\v 18 \w But|strong="H3588"\w* \w be|strong="H3389"\w* \w glad|strong="H1523"\w* \w and|strong="H5971"\w* \w rejoice|strong="H1523"\w* \w forever|strong="H5704"\w* \w in|strong="H5971"\w* \w that|strong="H3588"\w* \w which|strong="H5971"\w* \w I|strong="H3588"\w* \w create|strong="H1254"\w*; +\q2 \w for|strong="H3588"\w*, \w behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w create|strong="H1254"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H5704"\w* \w be|strong="H3389"\w* \w a|strong="H3068"\w* \w delight|strong="H1523"\w*, +\q2 \w and|strong="H5971"\w* \w her|strong="H5704"\w* \w people|strong="H5971"\w* \w a|strong="H3068"\w* \w joy|strong="H4885"\w*. +\q1 +\v 19 \w I|strong="H3808"\w* \w will|strong="H5971"\w* \w rejoice|strong="H1523"\w* \w in|strong="H8085"\w* \w Jerusalem|strong="H3389"\w*, +\q2 \w and|strong="H5971"\w* \w delight|strong="H1523"\w* \w in|strong="H8085"\w* \w my|strong="H8085"\w* \w people|strong="H5971"\w*; +\q1 \w and|strong="H5971"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w weeping|strong="H1065"\w* \w and|strong="H5971"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w crying|strong="H1065"\w* +\q2 \w will|strong="H5971"\w* \w be|strong="H3808"\w* \w heard|strong="H8085"\w* \w in|strong="H8085"\w* \w her|strong="H8085"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w*. +\b +\q1 +\v 20 “\w No|strong="H3808"\w* \w more|strong="H5750"\w* \w will|strong="H1961"\w* \w there|strong="H8033"\w* \w be|strong="H1961"\w* \w an|strong="H1961"\w* \w infant|strong="H5764"\w* \w who|strong="H1121"\w* \w only|strong="H3588"\w* \w lives|strong="H1961"\w* \w a|strong="H3068"\w* few \w days|strong="H3117"\w*, +\q2 \w nor|strong="H3808"\w* \w an|strong="H1961"\w* \w old|strong="H1121"\w* \w man|strong="H5288"\w* \w who|strong="H1121"\w* \w has|strong="H1961"\w* \w not|strong="H3808"\w* \w filled|strong="H4390"\w* \w his|strong="H1961"\w* \w days|strong="H3117"\w*; +\q1 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w child|strong="H5288"\w* \w will|strong="H1961"\w* \w die|strong="H4191"\w* \w one|strong="H3808"\w* \w hundred|strong="H3967"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w*, +\q2 \w and|strong="H3967"\w* \w the|strong="H3588"\w* \w sinner|strong="H2398"\w* \w being|strong="H1961"\w* \w one|strong="H3808"\w* \w hundred|strong="H3967"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w accursed|strong="H7043"\w*. +\q1 +\v 21 They \w will|strong="H1004"\w* \w build|strong="H1129"\w* \w houses|strong="H1004"\w* \w and|strong="H1004"\w* \w inhabit|strong="H3427"\w* \w them|strong="H3427"\w*. +\q2 They \w will|strong="H1004"\w* \w plant|strong="H5193"\w* \w vineyards|strong="H3754"\w* \w and|strong="H1004"\w* eat \w their|strong="H3427"\w* \w fruit|strong="H6529"\w*. +\q1 +\v 22 \w They|strong="H3588"\w* \w will|strong="H5971"\w* \w not|strong="H3808"\w* \w build|strong="H1129"\w* \w and|strong="H3117"\w* \w another|strong="H3808"\w* \w inhabit|strong="H3427"\w*. +\q2 \w They|strong="H3588"\w* \w will|strong="H5971"\w* \w not|strong="H3808"\w* \w plant|strong="H5193"\w* \w and|strong="H3117"\w* \w another|strong="H3808"\w* eat; +\q1 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w my|strong="H3588"\w* \w people|strong="H5971"\w* \w will|strong="H5971"\w* \w be|strong="H3808"\w* \w like|strong="H3808"\w* \w the|strong="H3588"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w a|strong="H3068"\w* \w tree|strong="H6086"\w*, +\q2 \w and|strong="H3117"\w* \w my|strong="H3588"\w* chosen \w will|strong="H5971"\w* \w long|strong="H3117"\w* \w enjoy|strong="H1086"\w* \w the|strong="H3588"\w* \w work|strong="H4639"\w* \w of|strong="H3117"\w* \w their|strong="H3588"\w* \w hands|strong="H3027"\w*. +\q1 +\v 23 \w They|strong="H1992"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w labor|strong="H3205"\w* \w in|strong="H3068"\w* \w vain|strong="H7385"\w* +\q2 \w nor|strong="H3808"\w* \w give|strong="H3205"\w* \w birth|strong="H3205"\w* \w for|strong="H3588"\w* calamity; +\q1 \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w the|strong="H3588"\w* \w offspring|strong="H2233"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w blessed|strong="H1288"\w* +\q2 \w and|strong="H3068"\w* \w their|strong="H3068"\w* \w descendants|strong="H2233"\w* \w with|strong="H3068"\w* \w them|strong="H1992"\w*. +\q1 +\v 24 \w It|strong="H7121"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w that|strong="H8085"\w* \w before|strong="H2962"\w* \w they|strong="H1992"\w* \w call|strong="H7121"\w*, \w I|strong="H2962"\w* \w will|strong="H1961"\w* \w answer|strong="H6030"\w*; +\q2 \w and|strong="H6030"\w* \w while|strong="H5750"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w yet|strong="H5750"\w* \w speaking|strong="H1696"\w*, \w I|strong="H2962"\w* \w will|strong="H1961"\w* \w hear|strong="H8085"\w*. +\q1 +\v 25 \w The|strong="H3605"\w* \w wolf|strong="H2061"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w lamb|strong="H2924"\w* \w will|strong="H3068"\w* \w feed|strong="H7462"\w* together. +\q2 \w The|strong="H3605"\w* lion \w will|strong="H3068"\w* \w eat|strong="H7462"\w* \w straw|strong="H8401"\w* \w like|strong="H3808"\w* \w the|strong="H3605"\w* \w ox|strong="H1241"\w*. +\q2 \w Dust|strong="H6083"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w the|strong="H3605"\w* \w serpent|strong="H5175"\w*’s \w food|strong="H3899"\w*. +\q1 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w hurt|strong="H7489"\w* \w nor|strong="H3808"\w* \w destroy|strong="H7843"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w holy|strong="H6944"\w* \w mountain|strong="H2022"\w*,” +\q2 says \w Yahweh|strong="H3068"\w*. +\c 66 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w Heaven|strong="H8064"\w* \w is|strong="H3068"\w* \w my|strong="H3068"\w* \w throne|strong="H3678"\w*, \w and|strong="H3068"\w* \w the|strong="H3541"\w* \w earth|strong="H8064"\w* \w is|strong="H3068"\w* \w my|strong="H3068"\w* \w footstool|strong="H1916"\w*. +\q2 \w What|strong="H2088"\w* kind \w of|strong="H1004"\w* \w house|strong="H1004"\w* \w will|strong="H3068"\w* \w you|strong="H4725"\w* \w build|strong="H1129"\w* \w to|strong="H3068"\w* \w me|strong="H1129"\w*? +\q2 \w Where|strong="H4725"\w* \w will|strong="H3068"\w* \w I|strong="H3541"\w* \w rest|strong="H4496"\w*? +\q1 +\v 2 \w For|strong="H5921"\w* \w my|strong="H3605"\w* \w hand|strong="H3027"\w* \w has|strong="H3068"\w* \w made|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H2088"\w* \w things|strong="H1697"\w*, +\q2 \w and|strong="H3068"\w* \w so|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H2088"\w* \w things|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w be|strong="H1961"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*: +\q1 “\w but|strong="H1961"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w look|strong="H5027"\w* \w to|strong="H3068"\w* \w this|strong="H2088"\w* \w man|strong="H6041"\w*, +\q2 \w even|strong="H6213"\w* \w to|strong="H3068"\w* \w he|strong="H6213"\w* \w who|strong="H3605"\w* \w is|strong="H3068"\w* \w poor|strong="H6041"\w* \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w contrite|strong="H5223"\w* \w spirit|strong="H7307"\w*, +\q2 \w and|strong="H3068"\w* \w who|strong="H3605"\w* \w trembles|strong="H2730"\w* \w at|strong="H5921"\w* \w my|strong="H3605"\w* \w word|strong="H1697"\w*. +\q1 +\v 3 \w He|strong="H5221"\w* \w who|strong="H5315"\w* \w kills|strong="H5221"\w* \w an|strong="H5221"\w* \w ox|strong="H7794"\w* \w is|strong="H5315"\w* \w as|strong="H1571"\w* \w he|strong="H5221"\w* \w who|strong="H5315"\w* \w kills|strong="H5221"\w* \w a|strong="H3068"\w* \w man|strong="H5315"\w*; +\q2 \w he|strong="H5221"\w* \w who|strong="H5315"\w* \w sacrifices|strong="H2076"\w* \w a|strong="H3068"\w* \w lamb|strong="H7716"\w*, \w as|strong="H1571"\w* \w he|strong="H5221"\w* \w who|strong="H5315"\w* \w breaks|strong="H6202"\w* \w a|strong="H3068"\w* \w dog|strong="H3611"\w*’s \w neck|strong="H6202"\w*; +\q2 \w he|strong="H5221"\w* \w who|strong="H5315"\w* \w offers|strong="H5927"\w* \w an|strong="H5221"\w* \w offering|strong="H4503"\w*, \w as|strong="H1571"\w* \w he|strong="H5221"\w* \w who|strong="H5315"\w* \w offers|strong="H5927"\w* \w pig|strong="H2386"\w*’s \w blood|strong="H1818"\w*; +\q2 \w he|strong="H5221"\w* \w who|strong="H5315"\w* \w burns|strong="H2142"\w* \w frankincense|strong="H3828"\w*, \w as|strong="H1571"\w* \w he|strong="H5221"\w* \w who|strong="H5315"\w* \w blesses|strong="H1288"\w* \w an|strong="H5221"\w* \w idol|strong="H8251"\w*. +\q1 \w Yes|strong="H1571"\w*, \w they|strong="H1992"\w* \w have|strong="H1571"\w* chosen \w their|strong="H1992"\w* \w own|strong="H5315"\w* \w ways|strong="H1870"\w*, +\q2 \w and|strong="H1870"\w* \w their|strong="H1992"\w* \w soul|strong="H5315"\w* \w delights|strong="H2654"\w* \w in|strong="H5315"\w* \w their|strong="H1992"\w* \w abominations|strong="H8251"\w*. +\q1 +\v 4 \w I|strong="H3282"\w* \w also|strong="H1571"\w* \w will|strong="H1571"\w* choose \w their|strong="H8085"\w* \w delusions|strong="H8586"\w*, +\q2 \w and|strong="H6030"\w* \w will|strong="H1571"\w* \w bring|strong="H6213"\w* \w their|strong="H8085"\w* \w fears|strong="H4035"\w* \w on|strong="H1696"\w* \w them|strong="H1992"\w*, +\q1 \w because|strong="H3282"\w* \w when|strong="H8085"\w* \w I|strong="H3282"\w* \w called|strong="H7121"\w*, \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w answered|strong="H6030"\w*; +\q2 \w when|strong="H8085"\w* \w I|strong="H3282"\w* \w spoke|strong="H1696"\w*, \w they|strong="H1992"\w* didn’t \w listen|strong="H8085"\w*, +\q1 \w but|strong="H3808"\w* \w they|strong="H1992"\w* \w did|strong="H6213"\w* \w that|strong="H8085"\w* \w which|strong="H1992"\w* \w was|strong="H7451"\w* \w evil|strong="H7451"\w* \w in|strong="H6213"\w* \w my|strong="H8085"\w* \w eyes|strong="H5869"\w*, +\q2 \w and|strong="H6030"\w* \w chose|strong="H6213"\w* \w that|strong="H8085"\w* \w in|strong="H6213"\w* \w which|strong="H1992"\w* \w I|strong="H3282"\w* didn’t \w delight|strong="H2654"\w*.” +\b +\q1 +\v 5 \w Hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, +\q2 \w you|strong="H7200"\w* \w who|strong="H3068"\w* \w tremble|strong="H2730"\w* \w at|strong="H3068"\w* \w his|strong="H3068"\w* \w word|strong="H1697"\w*: +\q1 “\w Your|strong="H3068"\w* brothers \w who|strong="H3068"\w* \w hate|strong="H8130"\w* \w you|strong="H7200"\w*, +\q2 \w who|strong="H3068"\w* \w cast|strong="H3068"\w* \w you|strong="H7200"\w* \w out|strong="H7200"\w* \w for|strong="H8034"\w* \w my|strong="H8085"\w* \w name|strong="H8034"\w*’s \w sake|strong="H4616"\w*, \w have|strong="H3068"\w* \w said|strong="H1697"\w*, +\q1 ‘Let \w Yahweh|strong="H3068"\w* \w be|strong="H1697"\w* \w glorified|strong="H3513"\w*, +\q2 \w that|strong="H7200"\w* \w we|strong="H3068"\w* \w may|strong="H3068"\w* \w see|strong="H7200"\w* \w your|strong="H3068"\w* \w joy|strong="H8057"\w*;’ +\q2 \w but|strong="H7200"\w* \w it|strong="H7200"\w* \w is|strong="H3068"\w* \w those|strong="H1992"\w* \w who|strong="H3068"\w* \w shall|strong="H3068"\w* \w be|strong="H1697"\w* disappointed. +\q1 +\v 6 \w A|strong="H3068"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w tumult|strong="H7588"\w* \w from|strong="H3068"\w* \w the|strong="H3068"\w* \w city|strong="H5892"\w*, +\q2 \w a|strong="H3068"\w* \w voice|strong="H6963"\w* \w from|strong="H3068"\w* \w the|strong="H3068"\w* \w temple|strong="H1964"\w*, +\q2 \w a|strong="H3068"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w that|strong="H3068"\w* \w repays|strong="H7999"\w* \w his|strong="H3068"\w* enemies \w what|strong="H6963"\w* \w they|strong="H3068"\w* deserve. +\b +\q1 +\v 7 “\w Before|strong="H2962"\w* \w she|strong="H2962"\w* \w travailed|strong="H2342"\w*, \w she|strong="H2962"\w* \w gave|strong="H3205"\w* \w birth|strong="H3205"\w*. +\q2 \w Before|strong="H2962"\w* \w her|strong="H3205"\w* \w pain|strong="H2342"\w* came, \w she|strong="H2962"\w* \w delivered|strong="H4422"\w* \w a|strong="H3068"\w* \w son|strong="H3205"\w*. +\q1 +\v 8 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* \w heard|strong="H8085"\w* \w of|strong="H1121"\w* \w such|strong="H2063"\w* \w a|strong="H3068"\w* \w thing|strong="H2063"\w*? +\q2 \w Who|strong="H4310"\w* \w has|strong="H4310"\w* \w seen|strong="H7200"\w* \w such|strong="H2063"\w* things? +\q1 \w Shall|strong="H1121"\w* \w a|strong="H3068"\w* land \w be|strong="H1121"\w* \w born|strong="H3205"\w* \w in|strong="H8085"\w* \w one|strong="H1121"\w* \w day|strong="H3117"\w*? +\q2 \w Shall|strong="H1121"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w be|strong="H1121"\w* \w born|strong="H3205"\w* \w at|strong="H3117"\w* \w once|strong="H6471"\w*? +\q1 \w For|strong="H3588"\w* \w as|strong="H3117"\w* \w soon|strong="H3205"\w* \w as|strong="H3117"\w* \w Zion|strong="H6726"\w* \w travailed|strong="H2342"\w*, +\q2 \w she|strong="H3588"\w* \w gave|strong="H3205"\w* \w birth|strong="H3205"\w* \w to|strong="H3117"\w* \w her|strong="H7200"\w* \w children|strong="H1121"\w*. +\q1 +\v 9 \w Shall|strong="H3068"\w* \w I|strong="H3808"\w* \w bring|strong="H3205"\w* \w to|strong="H3068"\w* \w the|strong="H3205"\w* \w birth|strong="H3205"\w*, \w and|strong="H3068"\w* \w not|strong="H3808"\w* cause \w to|strong="H3068"\w* \w be|strong="H3808"\w* \w delivered|strong="H3205"\w*?” says \w Yahweh|strong="H3068"\w*. +\q2 “\w Shall|strong="H3068"\w* \w I|strong="H3808"\w* \w who|strong="H3068"\w* cause \w to|strong="H3068"\w* \w give|strong="H3205"\w* \w birth|strong="H3205"\w* \w shut|strong="H6113"\w* \w the|strong="H3205"\w* womb?” says \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\b +\q1 +\v 10 “\w Rejoice|strong="H8055"\w* \w with|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3389"\w* \w be|strong="H3389"\w* \w glad|strong="H8055"\w* \w for|strong="H5921"\w* \w her|strong="H3605"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* \w who|strong="H3605"\w* \w love|strong="H4885"\w* \w her|strong="H3605"\w*. +\q2 \w Rejoice|strong="H8055"\w* \w for|strong="H5921"\w* \w joy|strong="H4885"\w* \w with|strong="H5921"\w* \w her|strong="H3605"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* \w who|strong="H3605"\w* \w mourn|strong="H5921"\w* \w over|strong="H5921"\w* \w her|strong="H3605"\w*; +\q1 +\v 11 \w that|strong="H4616"\w* you \w may|strong="H3519"\w* \w nurse|strong="H3243"\w* \w and|strong="H3519"\w* \w be|strong="H3519"\w* \w satisfied|strong="H7646"\w* at \w the|strong="H7646"\w* \w comforting|strong="H8575"\w* \w breasts|strong="H7699"\w*; +\q2 \w that|strong="H4616"\w* you \w may|strong="H3519"\w* \w drink|strong="H7646"\w* deeply, +\q2 \w and|strong="H3519"\w* \w be|strong="H3519"\w* \w delighted|strong="H6026"\w* \w with|strong="H7646"\w* \w the|strong="H7646"\w* \w abundance|strong="H2123"\w* \w of|strong="H3519"\w* \w her|strong="H7646"\w* \w glory|strong="H3519"\w*.” +\b +\q1 +\v 12 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w Behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w extend|strong="H5186"\w* \w peace|strong="H7965"\w* \w to|strong="H3068"\w* \w her|strong="H5375"\w* \w like|strong="H3541"\w* \w a|strong="H3068"\w* \w river|strong="H5104"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w glory|strong="H3519"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w* \w like|strong="H3541"\w* \w an|strong="H5375"\w* \w overflowing|strong="H7857"\w* \w stream|strong="H5158"\w*, +\q2 \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w nurse|strong="H3243"\w*. +\q1 \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w carried|strong="H5375"\w* \w on|strong="H5921"\w* \w her|strong="H5375"\w* \w side|strong="H6654"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w dandled|strong="H8173"\w* \w on|strong="H5921"\w* \w her|strong="H5375"\w* \w knees|strong="H1290"\w*. +\q1 +\v 13 \w As|strong="H3651"\w* \w one|strong="H3651"\w* whom \w his|strong="H5162"\w* mother \w comforts|strong="H5162"\w*, +\q2 \w so|strong="H3651"\w* \w I|strong="H3651"\w* \w will|strong="H3389"\w* \w comfort|strong="H5162"\w* \w you|strong="H3651"\w*. +\q2 \w You|strong="H3651"\w* \w will|strong="H3389"\w* \w be|strong="H3389"\w* \w comforted|strong="H5162"\w* \w in|strong="H5162"\w* \w Jerusalem|strong="H3389"\w*.” +\b +\q1 +\v 14 \w You|strong="H3045"\w* \w will|strong="H3068"\w* \w see|strong="H7200"\w* \w it|strong="H7200"\w*, \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w heart|strong="H3820"\w* \w shall|strong="H3068"\w* \w rejoice|strong="H7797"\w*, +\q2 \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w bones|strong="H6106"\w* \w will|strong="H3068"\w* \w flourish|strong="H6524"\w* \w like|strong="H3820"\w* \w the|strong="H7200"\w* \w tender|strong="H1877"\w* \w grass|strong="H1877"\w*. +\q1 \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w will|strong="H3068"\w* \w be|strong="H3027"\w* \w known|strong="H3045"\w* \w among|strong="H7200"\w* \w his|strong="H3068"\w* \w servants|strong="H5650"\w*; +\q2 \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w have|strong="H3068"\w* \w indignation|strong="H2194"\w* \w against|strong="H3027"\w* \w his|strong="H3068"\w* \w enemies|strong="H3027"\w*. +\b +\q1 +\v 15 \w For|strong="H3588"\w*, \w behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w come|strong="H7725"\w* \w with|strong="H3068"\w* fire, +\q2 \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w chariots|strong="H4818"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w like|strong="H2534"\w* \w the|strong="H3588"\w* \w whirlwind|strong="H5492"\w*; +\q1 \w to|strong="H7725"\w* \w give|strong="H7725"\w* \w his|strong="H3068"\w* \w anger|strong="H2534"\w* \w with|strong="H3068"\w* fierceness, +\q2 \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w rebuke|strong="H1606"\w* \w with|strong="H3068"\w* \w flames|strong="H3851"\w* \w of|strong="H3068"\w* fire. +\q1 +\v 16 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w execute|strong="H8199"\w* \w judgment|strong="H8199"\w* \w by|strong="H3068"\w* fire \w and|strong="H3068"\w* \w by|strong="H3068"\w* \w his|strong="H3605"\w* \w sword|strong="H2719"\w* \w on|strong="H3068"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w*; +\q2 \w and|strong="H3068"\w* \w those|strong="H3605"\w* \w slain|strong="H2491"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w many|strong="H7231"\w*. +\p +\v 17 “Those \w who|strong="H3068"\w* \w sanctify|strong="H6942"\w* \w themselves|strong="H6942"\w* \w and|strong="H3068"\w* \w purify|strong="H2891"\w* \w themselves|strong="H6942"\w* \w to|strong="H3068"\w* \w go|strong="H3068"\w* \w to|strong="H3068"\w* \w the|strong="H5002"\w* \w gardens|strong="H1593"\w*, following \w one|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H5002"\w* \w middle|strong="H8432"\w*, eating \w pig|strong="H2386"\w*’s \w meat|strong="H1320"\w*, \w abominable|strong="H8263"\w* \w things|strong="H8263"\w*, \w and|strong="H3068"\w* \w the|strong="H5002"\w* \w mouse|strong="H5909"\w*, \w they|strong="H3068"\w* \w shall|strong="H3068"\w* \w come|strong="H5486"\w* \w to|strong="H3068"\w* \w an|strong="H3068"\w* \w end|strong="H5486"\w* \w together|strong="H3162"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 18 “\w For|strong="H3605"\w* \w I|strong="H7200"\w* know \w their|strong="H3605"\w* \w works|strong="H4639"\w* \w and|strong="H1471"\w* \w their|strong="H3605"\w* \w thoughts|strong="H4284"\w*. \w The|strong="H3605"\w* time comes \w that|strong="H7200"\w* \w I|strong="H7200"\w* \w will|strong="H1471"\w* \w gather|strong="H6908"\w* \w all|strong="H3605"\w* \w nations|strong="H1471"\w* \w and|strong="H1471"\w* \w languages|strong="H3956"\w*, \w and|strong="H1471"\w* \w they|strong="H3605"\w* \w will|strong="H1471"\w* come, \w and|strong="H1471"\w* \w will|strong="H1471"\w* \w see|strong="H7200"\w* \w my|strong="H3605"\w* \w glory|strong="H3519"\w*. +\p +\v 19 “\w I|strong="H7760"\w* \w will|strong="H1471"\w* \w set|strong="H7760"\w* \w a|strong="H3068"\w* sign \w among|strong="H7200"\w* \w them|strong="H1992"\w*, \w and|strong="H7971"\w* \w I|strong="H7760"\w* \w will|strong="H1471"\w* \w send|strong="H7971"\w* \w those|strong="H1992"\w* \w who|strong="H1992"\w* \w escape|strong="H6412"\w* \w of|strong="H7198"\w* \w them|strong="H1992"\w* \w to|strong="H7971"\w* \w the|strong="H8085"\w* \w nations|strong="H1471"\w*, \w to|strong="H7971"\w* \w Tarshish|strong="H8659"\w*, \w Pul|strong="H6322"\w*, \w and|strong="H7971"\w* \w Lud|strong="H3865"\w*, \w who|strong="H1992"\w* \w draw|strong="H4900"\w* \w the|strong="H8085"\w* \w bow|strong="H7198"\w*, \w to|strong="H7971"\w* \w Tubal|strong="H8422"\w* \w and|strong="H7971"\w* \w Javan|strong="H3120"\w*, \w to|strong="H7971"\w* far-away islands, \w who|strong="H1992"\w* \w have|strong="H1471"\w* \w not|strong="H3808"\w* \w heard|strong="H8085"\w* \w my|strong="H8085"\w* \w fame|strong="H8088"\w*, \w nor|strong="H3808"\w* \w have|strong="H1471"\w* \w seen|strong="H7200"\w* \w my|strong="H8085"\w* \w glory|strong="H3519"\w*; \w and|strong="H7971"\w* \w they|strong="H1992"\w* \w shall|strong="H1471"\w* \w declare|strong="H5046"\w* \w my|strong="H8085"\w* \w glory|strong="H3519"\w* \w among|strong="H7200"\w* \w the|strong="H8085"\w* \w nations|strong="H1471"\w*. +\v 20 \w They|strong="H3068"\w* \w shall|strong="H3068"\w* bring \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w brothers|strong="H1121"\w* \w out|strong="H5921"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w for|strong="H5921"\w* \w an|strong="H3068"\w* \w offering|strong="H4503"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, \w on|strong="H5921"\w* \w horses|strong="H5483"\w*, \w in|strong="H5921"\w* \w chariots|strong="H7393"\w*, \w in|strong="H5921"\w* \w litters|strong="H6632"\w*, \w on|strong="H5921"\w* \w mules|strong="H6505"\w*, \w and|strong="H1121"\w* \w on|strong="H5921"\w* \w camels|strong="H3753"\w*, \w to|strong="H3478"\w* \w my|strong="H3605"\w* \w holy|strong="H6944"\w* \w mountain|strong="H2022"\w* \w Jerusalem|strong="H3389"\w*, says \w Yahweh|strong="H3068"\w*, \w as|strong="H3068"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* bring \w their|strong="H3605"\w* \w offering|strong="H4503"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w clean|strong="H2889"\w* \w vessel|strong="H3627"\w* \w into|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 21 \w Of|strong="H3068"\w* \w them|strong="H1992"\w* \w I|strong="H1571"\w* \w will|strong="H3068"\w* \w also|strong="H1571"\w* \w select|strong="H3947"\w* \w priests|strong="H3548"\w* \w and|strong="H3068"\w* \w Levites|strong="H3881"\w*,” says \w Yahweh|strong="H3068"\w*. +\p +\v 22 “\w For|strong="H3588"\w* \w as|strong="H6213"\w* \w the|strong="H6440"\w* \w new|strong="H2319"\w* \w heavens|strong="H8064"\w* \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w new|strong="H2319"\w* \w earth|strong="H8064"\w*, \w which|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w make|strong="H6213"\w*, \w shall|strong="H3068"\w* \w remain|strong="H5975"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w so|strong="H3651"\w* \w your|strong="H3068"\w* \w offspring|strong="H2233"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w* \w shall|strong="H3068"\w* \w remain|strong="H5975"\w*. +\v 23 \w It|strong="H6440"\w* \w shall|strong="H3068"\w* \w happen|strong="H1961"\w* \w that|strong="H3605"\w* \w from|strong="H6440"\w* \w one|strong="H3605"\w* \w new|strong="H2320"\w* \w moon|strong="H2320"\w* \w to|strong="H3068"\w* \w another|strong="H7676"\w*, \w and|strong="H3068"\w* \w from|strong="H6440"\w* \w one|strong="H3605"\w* \w Sabbath|strong="H7676"\w* \w to|strong="H3068"\w* \w another|strong="H7676"\w*, \w all|strong="H3605"\w* \w flesh|strong="H1320"\w* \w will|strong="H3068"\w* \w come|strong="H1961"\w* \w to|strong="H3068"\w* \w worship|strong="H7812"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*,” says \w Yahweh|strong="H3068"\w*. +\v 24 “\w They|strong="H3588"\w* \w will|strong="H1961"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H7200"\w* \w look|strong="H7200"\w* \w at|strong="H4191"\w* \w the|strong="H3605"\w* \w dead|strong="H4191"\w* \w bodies|strong="H6297"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w who|strong="H3605"\w* \w have|strong="H1961"\w* \w transgressed|strong="H6586"\w* \w against|strong="H6586"\w* \w me|strong="H7200"\w*; \w for|strong="H3588"\w* \w their|strong="H3605"\w* \w worm|strong="H8438"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*, \w nor|strong="H3808"\w* \w will|strong="H1961"\w* \w their|strong="H3605"\w* fire \w be|strong="H1961"\w* \w quenched|strong="H3518"\w*, \w and|strong="H7200"\w* \w they|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* loathsome \w to|strong="H3318"\w* \w all|strong="H3605"\w* \w mankind|strong="H1320"\w*.” \ No newline at end of file diff --git a/bibles/eng-web_usfm/25-JEReng-web.usfm b/bibles/eng-web_usfm/25-JEReng-web.usfm new file mode 100644 index 0000000..ace8ad3 --- /dev/null +++ b/bibles/eng-web_usfm/25-JEReng-web.usfm @@ -0,0 +1,3818 @@ +\id JER 24-JER-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Jeremiah +\toc1 The Book of Jeremiah +\toc2 Jeremiah +\toc3 Jer +\mt2 The Book of +\mt1 Jeremiah +\c 1 +\p +\v 1 \w The|strong="H4480"\w* \w words|strong="H1697"\w* \w of|strong="H1121"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hilkiah|strong="H2518"\w*, \w one|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w priests|strong="H3548"\w* \w who|strong="H3548"\w* \w were|strong="H1121"\w* \w in|strong="H1121"\w* \w Anathoth|strong="H6068"\w* \w in|strong="H1121"\w* \w the|strong="H4480"\w* land \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*. +\v 2 \w Yahweh|strong="H3068"\w*’s\f + \fr 1:2 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w him|strong="H4427"\w* \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amon, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w thirteenth|strong="H7969"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w his|strong="H3068"\w* \w reign|strong="H4427"\w*. +\v 3 \w It|strong="H1961"\w* \w came|strong="H1961"\w* \w also|strong="H4428"\w* \w in|strong="H8141"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w Jehoiakim|strong="H3079"\w* \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w to|strong="H5704"\w* \w the|strong="H3117"\w* \w end|strong="H8552"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* \w eleventh|strong="H6249"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Zedekiah|strong="H6667"\w*, \w the|strong="H3117"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w to|strong="H5704"\w* \w the|strong="H3117"\w* carrying \w away|strong="H1540"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w* \w captive|strong="H1540"\w* \w in|strong="H8141"\w* \w the|strong="H3117"\w* \w fifth|strong="H2549"\w* \w month|strong="H2320"\w*. +\v 4 \w Now|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\q1 +\v 5 “\w Before|strong="H2962"\w* \w I|strong="H5414"\w* \w formed|strong="H3335"\w* \w you|strong="H5414"\w* \w in|strong="H5414"\w* \w the|strong="H5414"\w* \w womb|strong="H7358"\w*, \w I|strong="H5414"\w* \w knew|strong="H3045"\w* \w you|strong="H5414"\w*. +\q2 \w Before|strong="H2962"\w* \w you|strong="H5414"\w* \w were|strong="H5030"\w* \w born|strong="H3318"\w*, \w I|strong="H5414"\w* \w sanctified|strong="H6942"\w* \w you|strong="H5414"\w*. +\q2 \w I|strong="H5414"\w* \w have|strong="H3045"\w* \w appointed|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w prophet|strong="H5030"\w* \w to|strong="H3318"\w* \w the|strong="H5414"\w* \w nations|strong="H1471"\w*.” +\p +\v 6 \w Then|strong="H1696"\w* \w I|strong="H3588"\w* \w said|strong="H1696"\w*, “Ah, \w Lord|strong="H3069"\w*\f + \fr 1:6 \ft The word translated “Lord” is “Adonai.” \f* \w Yahweh|strong="H3068"\w*! \w Behold|strong="H2009"\w*,\f + \fr 1:6 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w I|strong="H3588"\w* don’t \w know|strong="H3045"\w* \w how|strong="H3588"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* am \w a|strong="H3068"\w* \w child|strong="H5288"\w*.” +\p +\v 7 \w But|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H7971"\w*, “Don’t \w say|strong="H1696"\w*, ‘\w I|strong="H3588"\w* \w am|strong="H3068"\w* \w a|strong="H3068"\w* \w child|strong="H5288"\w*;’ \w for|strong="H3588"\w* \w you|strong="H3588"\w* must \w go|strong="H3212"\w* \w to|strong="H1696"\w* \w whomever|strong="H3605"\w* \w I|strong="H3588"\w* \w send|strong="H7971"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* must \w say|strong="H1696"\w* \w whatever|strong="H3605"\w* \w I|strong="H3588"\w* \w command|strong="H6680"\w* \w you|strong="H3588"\w*. +\v 8 Don’t \w be|strong="H3068"\w* \w afraid|strong="H3372"\w* \w because|strong="H3588"\w* \w of|strong="H3068"\w* \w them|strong="H6440"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w* \w to|strong="H3068"\w* \w rescue|strong="H5337"\w* \w you|strong="H3588"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 9 \w Then|strong="H2009"\w* \w Yahweh|strong="H3068"\w* \w stretched|strong="H7971"\w* \w out|strong="H7971"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w* \w and|strong="H3068"\w* \w touched|strong="H5060"\w* \w my|strong="H5414"\w* \w mouth|strong="H6310"\w*. \w Then|strong="H2009"\w* \w Yahweh|strong="H3068"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w me|strong="H5414"\w*, “\w Behold|strong="H2009"\w*, \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w put|strong="H5414"\w* \w my|strong="H5414"\w* \w words|strong="H1697"\w* \w in|strong="H5921"\w* \w your|strong="H3068"\w* \w mouth|strong="H6310"\w*. +\v 10 \w Behold|strong="H7200"\w*, \w I|strong="H3117"\w* \w have|strong="H1471"\w* \w today|strong="H3117"\w* \w set|strong="H6485"\w* \w you|strong="H5921"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w* \w and|strong="H3117"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w kingdoms|strong="H4467"\w*, \w to|strong="H5921"\w* \w uproot|strong="H5428"\w* \w and|strong="H3117"\w* \w to|strong="H5921"\w* \w tear|strong="H2040"\w* \w down|strong="H5422"\w*, \w to|strong="H5921"\w* \w destroy|strong="H5422"\w* \w and|strong="H3117"\w* \w to|strong="H5921"\w* \w overthrow|strong="H2040"\w*, \w to|strong="H5921"\w* \w build|strong="H1129"\w* \w and|strong="H3117"\w* \w to|strong="H5921"\w* \w plant|strong="H5193"\w*.” +\p +\v 11 \w Moreover|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H7200"\w*, \w saying|strong="H1697"\w*, “\w Jeremiah|strong="H3414"\w*, \w what|strong="H4100"\w* \w do|strong="H3068"\w* \w you|strong="H4100"\w* \w see|strong="H7200"\w*?” +\p \w I|strong="H1697"\w* \w said|strong="H1697"\w*, “\w I|strong="H1697"\w* \w see|strong="H7200"\w* \w a|strong="H3068"\w* branch \w of|strong="H3068"\w* \w an|strong="H1961"\w* \w almond|strong="H8247"\w* \w tree|strong="H8247"\w*.” +\p +\v 12 \w Then|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w me|strong="H7200"\w*, “\w You|strong="H3588"\w* \w have|strong="H3068"\w* \w seen|strong="H7200"\w* \w well|strong="H3190"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w watch|strong="H8245"\w* \w over|strong="H5921"\w* \w my|strong="H3068"\w* \w word|strong="H1697"\w* \w to|strong="H3068"\w* \w perform|strong="H6213"\w* \w it|strong="H5921"\w*.” +\p +\v 13 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H6440"\w* \w the|strong="H6440"\w* \w second|strong="H8145"\w* \w time|strong="H8145"\w*, \w saying|strong="H1697"\w*, “\w What|strong="H4100"\w* \w do|strong="H3068"\w* \w you|strong="H6440"\w* \w see|strong="H7200"\w*?” +\p \w I|strong="H1697"\w* \w said|strong="H1697"\w*, “\w I|strong="H1697"\w* \w see|strong="H7200"\w* \w a|strong="H3068"\w* \w boiling|strong="H5301"\w* cauldron; \w and|strong="H3068"\w* \w it|strong="H7200"\w* \w is|strong="H3068"\w* tipping away \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w north|strong="H6828"\w*.” +\p +\v 14 \w Then|strong="H3068"\w* \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w me|strong="H5921"\w*, “\w Out|strong="H5921"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w north|strong="H6828"\w*, \w evil|strong="H7451"\w* \w will|strong="H3068"\w* \w break|strong="H6605"\w* \w out|strong="H5921"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* land. +\v 15 \w For|strong="H3588"\w* \w behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w call|strong="H7121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w families|strong="H4940"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w north|strong="H6828"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 “\w They|strong="H3588"\w* \w will|strong="H3068"\w* \w come|strong="H3063"\w*, \w and|strong="H3063"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w each|strong="H3605"\w* \w set|strong="H5414"\w* \w his|strong="H3605"\w* \w throne|strong="H3678"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w entrance|strong="H6607"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w gates|strong="H8179"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, +\q2 \w and|strong="H3063"\w* \w against|strong="H5921"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w walls|strong="H2346"\w* \w all|strong="H3605"\w* \w around|strong="H5439"\w*, \w and|strong="H3063"\w* \w against|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w*. +\q1 +\v 16 \w I|strong="H5921"\w* \w will|strong="H3027"\w* \w utter|strong="H1696"\w* \w my|strong="H3605"\w* \w judgments|strong="H4941"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w* \w concerning|strong="H5921"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w wickedness|strong="H7451"\w*, +\q2 \w in|strong="H5921"\w* \w that|strong="H3605"\w* \w they|strong="H5921"\w* \w have|strong="H3027"\w* \w forsaken|strong="H5800"\w* \w me|strong="H5921"\w*, +\q2 \w and|strong="H4941"\w* \w have|strong="H3027"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H1696"\w* \w other|strong="H3605"\w* gods, +\q2 \w and|strong="H4941"\w* \w worshiped|strong="H7812"\w* \w the|strong="H3605"\w* \w works|strong="H4639"\w* \w of|strong="H3027"\w* \w their|strong="H3605"\w* \w own|strong="H3027"\w* \w hands|strong="H3027"\w*. +\p +\v 17 “\w You|strong="H6440"\w* therefore \w put|strong="H6680"\w* \w your|strong="H3605"\w* belt \w on|strong="H1696"\w* \w your|strong="H3605"\w* \w waist|strong="H4975"\w*, \w arise|strong="H6965"\w*, \w and|strong="H6965"\w* \w say|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H6440"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H6680"\w* \w command|strong="H6680"\w* \w you|strong="H6440"\w*. Don’t \w be|strong="H6440"\w* \w dismayed|strong="H2865"\w* \w at|strong="H6440"\w* \w them|strong="H6440"\w*, \w lest|strong="H6435"\w* \w I|strong="H6680"\w* \w dismay|strong="H2865"\w* \w you|strong="H6440"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*. +\v 18 \w For|strong="H5921"\w* \w behold|strong="H2009"\w*, \w I|strong="H3117"\w* \w have|strong="H5971"\w* \w made|strong="H5414"\w* \w you|strong="H5414"\w* \w today|strong="H3117"\w* \w a|strong="H3068"\w* \w fortified|strong="H4013"\w* \w city|strong="H5892"\w*, \w an|strong="H5414"\w* \w iron|strong="H1270"\w* \w pillar|strong="H5982"\w*, \w and|strong="H3063"\w* \w bronze|strong="H5178"\w* \w walls|strong="H2346"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* land—\w against|strong="H5921"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w against|strong="H5921"\w* \w its|strong="H3605"\w* \w princes|strong="H8269"\w*, \w against|strong="H5921"\w* \w its|strong="H3605"\w* \w priests|strong="H3548"\w*, \w and|strong="H3063"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* land. +\v 19 \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w fight|strong="H3898"\w* \w against|strong="H3898"\w* \w you|strong="H3588"\w*, \w but|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w prevail|strong="H3201"\w* \w against|strong="H3898"\w* \w you|strong="H3588"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w*”, \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w to|strong="H3201"\w* \w rescue|strong="H5337"\w* \w you|strong="H3588"\w*.” +\c 2 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Go|strong="H1980"\w* \w and|strong="H1980"\w* \w proclaim|strong="H7121"\w* \w in|strong="H1980"\w* \w the|strong="H3541"\w* ears \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, saying, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, +\q1 “\w I|strong="H3541"\w* \w remember|strong="H2142"\w* \w for|strong="H7121"\w* \w you|strong="H3808"\w* \w the|strong="H3541"\w* \w kindness|strong="H2617"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w youth|strong="H5271"\w*, +\q2 \w your|strong="H3068"\w* \w love|strong="H2617"\w* \w as|strong="H3068"\w* \w a|strong="H3068"\w* bride, +\q1 \w how|strong="H2142"\w* \w you|strong="H3808"\w* \w went|strong="H1980"\w* \w after|strong="H7121"\w* \w me|strong="H7121"\w* \w in|strong="H1980"\w* \w the|strong="H3541"\w* \w wilderness|strong="H4057"\w*, +\q2 \w in|strong="H1980"\w* \w a|strong="H3068"\w* land \w that|strong="H3068"\w* \w was|strong="H3068"\w* \w not|strong="H3808"\w* \w sown|strong="H2232"\w*. +\q1 +\v 3 \w Israel|strong="H3478"\w* \w was|strong="H3068"\w* \w holiness|strong="H6944"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w the|strong="H3605"\w* \w first|strong="H7225"\w* \w fruits|strong="H7225"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w increase|strong="H8393"\w*. +\q1 \w All|strong="H3605"\w* \w who|strong="H3605"\w* devour \w him|strong="H3605"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* held guilty. +\q2 \w Evil|strong="H7451"\w* \w will|strong="H3068"\w* \w come|strong="H3478"\w* \w on|strong="H3068"\w* \w them|strong="H3068"\w*,”’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 4 \w Hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w O|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w families|strong="H4940"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*! +\v 5 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, +\q1 “\w What|strong="H4100"\w* \w unrighteousness|strong="H5766"\w* \w have|strong="H3068"\w* \w your|strong="H3068"\w* fathers \w found|strong="H4672"\w* \w in|strong="H5921"\w* \w me|strong="H5921"\w*, +\q2 \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3068"\w* \w gone|strong="H3212"\w* \w far|strong="H7368"\w* \w from|strong="H5921"\w* \w me|strong="H5921"\w*, +\q1 \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w walked|strong="H3212"\w* \w after|strong="H5921"\w* \w worthless|strong="H1892"\w* \w vanity|strong="H1892"\w*, +\q2 \w and|strong="H3068"\w* \w have|strong="H3068"\w* become \w worthless|strong="H1892"\w*? +\q1 +\v 6 \w They|strong="H8033"\w* didn’t say, ‘\w Where|strong="H8033"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w brought|strong="H5927"\w* \w us|strong="H5674"\w* \w up|strong="H5927"\w* \w out|strong="H3212"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w land|strong="H6723"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, +\q2 \w who|strong="H3068"\w* \w led|strong="H3212"\w* \w us|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H3068"\w* \w wilderness|strong="H4057"\w*, +\q2 \w through|strong="H5674"\w* \w a|strong="H3068"\w* \w land|strong="H6723"\w* \w of|strong="H3068"\w* \w deserts|strong="H6160"\w* \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w pits|strong="H7745"\w*, +\q2 \w through|strong="H5674"\w* \w a|strong="H3068"\w* \w land|strong="H6723"\w* \w of|strong="H3068"\w* \w drought|strong="H6723"\w* \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w shadow|strong="H6757"\w* \w of|strong="H3068"\w* \w death|strong="H6757"\w*, +\q2 \w through|strong="H5674"\w* \w a|strong="H3068"\w* \w land|strong="H6723"\w* \w that|strong="H3068"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w passed|strong="H5674"\w* \w through|strong="H5674"\w*, +\q2 \w and|strong="H3068"\w* \w where|strong="H8033"\w* \w no|strong="H3808"\w* \w man|strong="H5674"\w* \w lived|strong="H3427"\w*?’ +\q1 +\v 7 \w I|strong="H7760"\w* \w brought|strong="H7760"\w* \w you|strong="H7760"\w* \w into|strong="H7760"\w* \w a|strong="H3068"\w* \w plentiful|strong="H3759"\w* \w land|strong="H5159"\w* +\q2 \w to|strong="H5159"\w* eat \w its|strong="H7760"\w* \w fruit|strong="H6529"\w* \w and|strong="H6529"\w* \w its|strong="H7760"\w* \w goodness|strong="H2898"\w*; +\q1 but when \w you|strong="H7760"\w* entered, \w you|strong="H7760"\w* \w defiled|strong="H2930"\w* \w my|strong="H7760"\w* \w land|strong="H5159"\w*, +\q2 \w and|strong="H6529"\w* \w made|strong="H7760"\w* \w my|strong="H7760"\w* \w heritage|strong="H5159"\w* \w an|strong="H7760"\w* \w abomination|strong="H8441"\w*. +\q1 +\v 8 \w The|strong="H3068"\w* \w priests|strong="H3548"\w* didn’t say, ‘\w Where|strong="H3808"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*?’ +\q2 \w and|strong="H1980"\w* \w those|strong="H1980"\w* \w who|strong="H3068"\w* \w handle|strong="H8610"\w* \w the|strong="H3068"\w* \w law|strong="H8451"\w* didn’t \w know|strong="H3045"\w* \w me|strong="H3808"\w*. +\q1 \w The|strong="H3068"\w* \w rulers|strong="H3548"\w* \w also|strong="H3068"\w* \w transgressed|strong="H6586"\w* \w against|strong="H5012"\w* \w me|strong="H3808"\w*, +\q2 \w and|strong="H1980"\w* \w the|strong="H3068"\w* \w prophets|strong="H5030"\w* \w prophesied|strong="H5012"\w* \w by|strong="H3068"\w* \w Baal|strong="H1168"\w* +\q2 \w and|strong="H1980"\w* \w followed|strong="H1980"\w* \w things|strong="H3276"\w* \w that|strong="H3045"\w* \w do|strong="H3068"\w* \w not|strong="H3808"\w* \w profit|strong="H3276"\w*. +\q1 +\v 9 “\w Therefore|strong="H3651"\w* \w I|strong="H3651"\w* \w will|strong="H3068"\w* \w yet|strong="H5750"\w* \w contend|strong="H7378"\w* \w with|strong="H3068"\w* \w you|strong="H3651"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w and|strong="H1121"\w* \w I|strong="H3651"\w* \w will|strong="H3068"\w* \w contend|strong="H7378"\w* \w with|strong="H3068"\w* \w your|strong="H3068"\w* \w children|strong="H1121"\w*’s \w children|strong="H1121"\w*. +\q1 +\v 10 \w For|strong="H3588"\w* \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w to|strong="H7971"\w* \w the|strong="H7200"\w* islands \w of|strong="H7200"\w* \w Kittim|strong="H3794"\w*, \w and|strong="H7971"\w* \w see|strong="H7200"\w*. +\q2 \w Send|strong="H7971"\w* \w to|strong="H7971"\w* \w Kedar|strong="H6938"\w*, \w and|strong="H7971"\w* \w consider|strong="H7200"\w* \w diligently|strong="H3966"\w*, +\q2 \w and|strong="H7971"\w* \w see|strong="H7200"\w* \w if|strong="H3588"\w* \w there|strong="H1961"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w such|strong="H2063"\w* \w a|strong="H3068"\w* \w thing|strong="H2063"\w*. +\q1 +\v 11 \w Has|strong="H1471"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w changed|strong="H4171"\w* \w its|strong="H3808"\w* gods, +\q2 \w which|strong="H1471"\w* \w really|strong="H1992"\w* \w are|strong="H1992"\w* \w no|strong="H3808"\w* gods? +\q2 \w But|strong="H3808"\w* \w my|strong="H3808"\w* \w people|strong="H5971"\w* \w have|strong="H5971"\w* \w changed|strong="H4171"\w* \w their|strong="H1992"\w* \w glory|strong="H3519"\w* \w for|strong="H5971"\w* \w that|strong="H5971"\w* \w which|strong="H1471"\w* doesn’t \w profit|strong="H3276"\w*. +\q1 +\v 12 “\w Be|strong="H3068"\w* \w astonished|strong="H8074"\w*, \w you|strong="H5921"\w* \w heavens|strong="H8064"\w*, \w at|strong="H5921"\w* \w this|strong="H2063"\w* +\q2 \w and|strong="H3068"\w* \w be|strong="H3068"\w* horribly \w afraid|strong="H8175"\w*. +\q2 \w Be|strong="H3068"\w* \w very|strong="H3966"\w* \w desolate|strong="H8074"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 13 “\w For|strong="H3588"\w* \w my|strong="H6213"\w* \w people|strong="H5971"\w* \w have|strong="H5971"\w* \w committed|strong="H6213"\w* \w two|strong="H8147"\w* \w evils|strong="H7451"\w*: +\q2 \w they|strong="H3588"\w* \w have|strong="H5971"\w* \w forsaken|strong="H5800"\w* \w me|strong="H6213"\w*, \w the|strong="H3588"\w* \w spring|strong="H4726"\w* \w of|strong="H4325"\w* \w living|strong="H2416"\w* \w waters|strong="H4325"\w*, +\q2 \w and|strong="H5971"\w* \w cut|strong="H2672"\w* \w out|strong="H2672"\w* cisterns \w for|strong="H3588"\w* \w themselves|strong="H6213"\w*: \w broken|strong="H7665"\w* cisterns \w that|strong="H3588"\w* \w can|strong="H6213"\w*’t \w hold|strong="H3557"\w* \w water|strong="H4325"\w*. +\q1 +\v 14 \w Is|strong="H1931"\w* \w Israel|strong="H3478"\w* \w a|strong="H3068"\w* \w slave|strong="H5650"\w*? +\q2 \w Is|strong="H1931"\w* \w he|strong="H1931"\w* \w born|strong="H3211"\w* \w into|strong="H1961"\w* \w slavery|strong="H5650"\w*? +\q2 \w Why|strong="H4069"\w* \w has|strong="H1961"\w* \w he|strong="H1931"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* captive? +\q1 +\v 15 \w The|strong="H5921"\w* \w young|strong="H3715"\w* \w lions|strong="H3715"\w* \w have|strong="H5414"\w* \w roared|strong="H7580"\w* \w at|strong="H3427"\w* \w him|strong="H5414"\w* \w and|strong="H6963"\w* \w raised|strong="H5414"\w* \w their|strong="H5414"\w* \w voices|strong="H6963"\w*. +\q2 \w They|strong="H5921"\w* \w have|strong="H5414"\w* \w made|strong="H5414"\w* \w his|strong="H5414"\w* land \w waste|strong="H8047"\w*. +\q2 \w His|strong="H5414"\w* \w cities|strong="H5892"\w* \w are|strong="H5892"\w* \w burned|strong="H3341"\w* \w up|strong="H5414"\w*, \w without|strong="H1097"\w* \w inhabitant|strong="H3427"\w*. +\q2 +\v 16 \w The|strong="H1571"\w* \w children|strong="H1121"\w* \w also|strong="H1571"\w* \w of|strong="H1121"\w* \w Memphis|strong="H5297"\w* \w and|strong="H1121"\w* \w Tahpanhes|strong="H8471"\w* \w have|strong="H1121"\w* \w broken|strong="H7462"\w* \w the|strong="H1571"\w* \w crown|strong="H6936"\w* \w of|strong="H1121"\w* \w your|strong="H1571"\w* \w head|strong="H6936"\w*. +\q1 +\v 17 “Haven’t \w you|strong="H6213"\w* \w brought|strong="H3212"\w* \w this|strong="H2063"\w* \w on|strong="H1870"\w* \w yourself|strong="H6213"\w*, +\q2 \w in|strong="H3068"\w* \w that|strong="H3068"\w* \w you|strong="H6213"\w* \w have|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*,\f + \fr 2:17 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w when|strong="H6256"\w* \w he|strong="H6213"\w* \w led|strong="H3212"\w* \w you|strong="H6213"\w* \w by|strong="H3068"\w* \w the|strong="H6213"\w* \w way|strong="H1870"\w*? +\q1 +\v 18 \w Now|strong="H6258"\w* \w what|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H4100"\w* gain \w by|strong="H1870"\w* going \w to|strong="H4714"\w* \w Egypt|strong="H4714"\w*, \w to|strong="H4714"\w* \w drink|strong="H8354"\w* \w the|strong="H1870"\w* \w waters|strong="H4325"\w* \w of|strong="H1870"\w* \w the|strong="H1870"\w* \w Shihor|strong="H7883"\w*? +\q2 \w Or|strong="H1870"\w* \w why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H4100"\w* go \w on|strong="H1870"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w to|strong="H4714"\w* Assyria, \w to|strong="H4714"\w* \w drink|strong="H8354"\w* \w the|strong="H1870"\w* \w waters|strong="H4325"\w* \w of|strong="H1870"\w* \w the|strong="H1870"\w* \w River|strong="H5104"\w*?\f + \fr 2:18 \ft i.e., the Euphrates River\f* +\q1 +\v 19 “\w Your|strong="H3068"\w* own \w wickedness|strong="H7451"\w* \w will|strong="H3068"\w* \w correct|strong="H3256"\w* \w you|strong="H3588"\w*, +\q2 \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w backsliding|strong="H4878"\w* \w will|strong="H3068"\w* \w rebuke|strong="H3198"\w* \w you|strong="H3588"\w*. +\q1 \w Know|strong="H3045"\w* \w therefore|strong="H3588"\w* \w and|strong="H3068"\w* \w see|strong="H7200"\w* \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H3068"\w* \w an|strong="H7200"\w* \w evil|strong="H7451"\w* \w and|strong="H3068"\w* \w bitter|strong="H4751"\w* \w thing|strong="H3588"\w*, +\q2 \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* \w that|strong="H3588"\w* \w my|strong="H3068"\w* \w fear|strong="H6345"\w* \w is|strong="H3068"\w* \w not|strong="H3808"\w* \w in|strong="H3068"\w* \w you|strong="H3588"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3068"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\q1 +\v 20 “\w For|strong="H3588"\w* \w long|strong="H5769"\w* \w ago|strong="H5769"\w* \w I|strong="H3588"\w* \w broke|strong="H7665"\w* \w off|strong="H5921"\w* \w your|strong="H3605"\w* \w yoke|strong="H5923"\w*, +\q2 \w and|strong="H6086"\w* \w burst|strong="H5423"\w* \w your|strong="H3605"\w* \w bonds|strong="H4147"\w*. +\q1 \w You|strong="H3588"\w* said, ‘\w I|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w serve|strong="H5647"\w*;’ +\q2 \w for|strong="H3588"\w* \w on|strong="H5921"\w* \w every|strong="H3605"\w* \w high|strong="H1364"\w* \w hill|strong="H1389"\w* \w and|strong="H6086"\w* \w under|strong="H8478"\w* \w every|strong="H3605"\w* \w green|strong="H7488"\w* \w tree|strong="H6086"\w* \w you|strong="H3588"\w* bowed \w yourself|strong="H5921"\w*, +\q2 \w playing|strong="H2181"\w* \w the|strong="H3605"\w* \w prostitute|strong="H2181"\w*. +\q1 +\v 21 \w Yet|strong="H3605"\w* \w I|strong="H3605"\w* \w had|strong="H2015"\w* \w planted|strong="H5193"\w* \w you|strong="H3605"\w* \w a|strong="H3068"\w* noble \w vine|strong="H1612"\w*, +\q2 \w a|strong="H3068"\w* pure \w and|strong="H2233"\w* faithful \w seed|strong="H2233"\w*. +\q2 How \w then|strong="H3605"\w* \w have|strong="H3605"\w* \w you|strong="H3605"\w* \w turned|strong="H2015"\w* \w into|strong="H2015"\w* \w the|strong="H3605"\w* degenerate branches \w of|strong="H2233"\w* \w a|strong="H3068"\w* \w foreign|strong="H5237"\w* \w vine|strong="H1612"\w* \w to|strong="H2015"\w* \w me|strong="H5193"\w*? +\q1 +\v 22 \w For|strong="H3588"\w* \w though|strong="H3588"\w* \w you|strong="H3588"\w* \w wash|strong="H3526"\w* yourself \w with|strong="H6440"\w* \w lye|strong="H5427"\w*, +\q2 \w and|strong="H6440"\w* \w use|strong="H7235"\w* \w much|strong="H7235"\w* \w soap|strong="H1287"\w*, +\q2 \w yet|strong="H3588"\w* \w your|strong="H6440"\w* \w iniquity|strong="H5771"\w* \w is|strong="H5771"\w* \w marked|strong="H3799"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*,” \w says|strong="H5002"\w* \w the|strong="H6440"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 23 “\w How|strong="H4100"\w* \w can|strong="H4100"\w* \w you|strong="H6213"\w* say, ‘\w I|strong="H3045"\w* \w am|strong="H1980"\w* \w not|strong="H3808"\w* \w defiled|strong="H2930"\w*. +\q2 \w I|strong="H3045"\w* \w have|strong="H3045"\w* \w not|strong="H3808"\w* \w gone|strong="H1980"\w* \w after|strong="H7200"\w* \w the|strong="H7200"\w* \w Baals|strong="H1168"\w*’? +\q1 \w See|strong="H7200"\w* \w your|strong="H7200"\w* \w way|strong="H1870"\w* \w in|strong="H1980"\w* \w the|strong="H7200"\w* \w valley|strong="H1516"\w*. +\q2 \w Know|strong="H3045"\w* \w what|strong="H4100"\w* \w you|strong="H6213"\w* \w have|strong="H3045"\w* \w done|strong="H6213"\w*. +\q1 \w You|strong="H6213"\w* \w are|strong="H4100"\w* \w a|strong="H3068"\w* \w swift|strong="H7031"\w* \w dromedary|strong="H1072"\w* \w traversing|strong="H8308"\w* \w her|strong="H7200"\w* \w ways|strong="H1870"\w*, +\v 24 \w a|strong="H3068"\w* \w wild|strong="H6501"\w* \w donkey|strong="H6501"\w* \w used|strong="H3928"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w*, \w that|strong="H3605"\w* \w sniffs|strong="H7602"\w* \w the|strong="H3605"\w* \w wind|strong="H7307"\w* \w in|strong="H5315"\w* \w her|strong="H3605"\w* craving. +\q2 \w When|strong="H7725"\w* \w she|strong="H2320"\w* \w is|strong="H4310"\w* \w in|strong="H5315"\w* \w heat|strong="H8385"\w*, \w who|strong="H4310"\w* \w can|strong="H4310"\w* \w turn|strong="H7725"\w* \w her|strong="H3605"\w* \w away|strong="H7725"\w*? +\q2 \w All|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H4310"\w* \w seek|strong="H1245"\w* \w her|strong="H3605"\w* \w will|strong="H4310"\w* \w not|strong="H3808"\w* \w weary|strong="H3286"\w* \w themselves|strong="H5315"\w*. \w In|strong="H5315"\w* \w her|strong="H3605"\w* \w month|strong="H2320"\w*, \w they|strong="H3808"\w* \w will|strong="H4310"\w* \w find|strong="H4672"\w* \w her|strong="H3605"\w*. +\q1 +\v 25 “\w Keep|strong="H4513"\w* \w your|strong="H3588"\w* \w feet|strong="H7272"\w* \w from|strong="H7272"\w* being bare, +\q2 \w and|strong="H3212"\w* \w your|strong="H3588"\w* throat \w from|strong="H7272"\w* \w thirst|strong="H6773"\w*. +\q1 \w But|strong="H3588"\w* \w you|strong="H3588"\w* said, ‘\w It|strong="H3588"\w* \w is|strong="H3808"\w* \w in|strong="H3212"\w* vain. +\q2 \w No|strong="H3808"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H7272"\w* loved \w strangers|strong="H2114"\w*, +\q2 \w and|strong="H3212"\w* \w I|strong="H3588"\w* \w will|strong="H3808"\w* \w go|strong="H3212"\w* \w after|strong="H3588"\w* \w them|strong="H3588"\w*.’ +\q1 +\v 26 \w As|strong="H3651"\w* \w the|strong="H3588"\w* \w thief|strong="H1590"\w* \w is|strong="H3651"\w* \w ashamed|strong="H1322"\w* \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H3651"\w* \w found|strong="H4672"\w*, +\q2 \w so|strong="H3651"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w is|strong="H3651"\w* \w ashamed|strong="H1322"\w*— +\q2 \w they|strong="H1992"\w*, \w their|strong="H1992"\w* \w kings|strong="H4428"\w*, \w their|strong="H1992"\w* \w princes|strong="H8269"\w*, \w their|strong="H1992"\w* \w priests|strong="H3548"\w*, \w and|strong="H3478"\w* \w their|strong="H1992"\w* \w prophets|strong="H5030"\w*, +\q1 +\v 27 \w who|strong="H3588"\w* tell \w wood|strong="H6086"\w*, ‘\w You|strong="H3588"\w* \w are|strong="H6440"\w* \w my|strong="H6965"\w* \w father|strong="H3205"\w*,’ +\q2 \w and|strong="H6965"\w* \w a|strong="H3068"\w* stone, ‘\w You|strong="H3588"\w* \w have|strong="H3588"\w* \w given|strong="H3205"\w* \w birth|strong="H3205"\w* \w to|strong="H6256"\w* \w me|strong="H6440"\w*,’ +\q1 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3588"\w* \w turned|strong="H6437"\w* \w their|strong="H6440"\w* \w back|strong="H6437"\w* \w to|strong="H6256"\w* \w me|strong="H6440"\w*, +\q2 \w and|strong="H6965"\w* \w not|strong="H3808"\w* \w their|strong="H6440"\w* \w face|strong="H6440"\w*, +\q2 \w but|strong="H3588"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w time|strong="H6256"\w* \w of|strong="H3205"\w* \w their|strong="H6440"\w* \w trouble|strong="H7451"\w* \w they|strong="H3588"\w* \w will|strong="H3808"\w* say, ‘\w Arise|strong="H6965"\w*, \w and|strong="H6965"\w* \w save|strong="H3467"\w* \w us|strong="H6440"\w*!’ +\q1 +\v 28 “\w But|strong="H3588"\w* where \w are|strong="H5892"\w* \w your|strong="H6213"\w* gods \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w made|strong="H6213"\w* \w for|strong="H3588"\w* yourselves? +\q2 \w Let|strong="H6256"\w* \w them|strong="H6213"\w* \w arise|strong="H6965"\w*, \w if|strong="H3588"\w* \w they|strong="H3588"\w* \w can|strong="H6213"\w* \w save|strong="H3467"\w* \w you|strong="H3588"\w* \w in|strong="H6213"\w* \w the|strong="H3588"\w* \w time|strong="H6256"\w* \w of|strong="H5892"\w* \w your|strong="H6213"\w* \w trouble|strong="H7451"\w*, +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w as|strong="H1961"\w* \w many|strong="H4557"\w* gods \w as|strong="H1961"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w towns|strong="H5892"\w*, \w O|strong="H3068"\w* \w Judah|strong="H3063"\w*. +\q1 +\v 29 “\w Why|strong="H4100"\w* \w will|strong="H3068"\w* \w you|strong="H3605"\w* \w contend|strong="H7378"\w* \w with|strong="H3068"\w* \w me|strong="H3605"\w*? +\q2 \w You|strong="H3605"\w* \w all|strong="H3605"\w* \w have|strong="H3068"\w* \w transgressed|strong="H6586"\w* \w against|strong="H7378"\w* \w me|strong="H3605"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 30 “\w I|strong="H3808"\w* \w have|strong="H1121"\w* \w struck|strong="H5221"\w* \w your|strong="H3947"\w* \w children|strong="H1121"\w* \w in|strong="H1121"\w* \w vain|strong="H7723"\w*. +\q2 \w They|strong="H3808"\w* \w received|strong="H3947"\w* \w no|strong="H3808"\w* \w correction|strong="H4148"\w*. +\q1 \w Your|strong="H3947"\w* own \w sword|strong="H2719"\w* \w has|strong="H5030"\w* devoured \w your|strong="H3947"\w* \w prophets|strong="H5030"\w*, +\q2 \w like|strong="H3808"\w* \w a|strong="H3068"\w* \w destroying|strong="H7843"\w* lion. +\q1 +\v 31 \w Generation|strong="H1755"\w*, \w consider|strong="H7200"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*. +\q2 \w Have|strong="H1961"\w* \w I|strong="H1697"\w* \w been|strong="H1961"\w* \w a|strong="H3068"\w* \w wilderness|strong="H4057"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w*? +\q2 \w Or|strong="H3808"\w* \w a|strong="H3068"\w* land \w of|strong="H3068"\w* \w thick|strong="H3991"\w* \w darkness|strong="H3991"\w*? +\q1 \w Why|strong="H4069"\w* \w do|strong="H3068"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w say|strong="H1697"\w*, ‘\w We|strong="H1697"\w* \w have|strong="H1961"\w* broken loose. +\q2 \w We|strong="H1697"\w* \w will|strong="H3068"\w* \w come|strong="H1961"\w* \w to|strong="H3478"\w* \w you|strong="H3808"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w*’? +\q1 +\v 32 “Can \w a|strong="H3068"\w* \w virgin|strong="H1330"\w* \w forget|strong="H7911"\w* \w her|strong="H7911"\w* \w ornaments|strong="H5716"\w*, +\q2 \w or|strong="H3117"\w* \w a|strong="H3068"\w* \w bride|strong="H3618"\w* \w her|strong="H7911"\w* \w attire|strong="H7196"\w*? +\q2 \w Yet|strong="H3117"\w* \w my|strong="H7911"\w* \w people|strong="H5971"\w* \w have|strong="H5971"\w* \w forgotten|strong="H7911"\w* \w me|strong="H7911"\w* \w for|strong="H3117"\w* \w days|strong="H3117"\w* \w without|strong="H3117"\w* \w number|strong="H4557"\w*. +\q1 +\v 33 \w How|strong="H4100"\w* \w well|strong="H3190"\w* \w you|strong="H4100"\w* \w prepare|strong="H3190"\w* \w your|strong="H1245"\w* \w way|strong="H1870"\w* \w to|strong="H1870"\w* \w seek|strong="H1245"\w* love! +\q2 \w Therefore|strong="H3651"\w* \w you|strong="H4100"\w* \w have|strong="H1571"\w* \w even|strong="H1571"\w* \w taught|strong="H3925"\w* \w the|strong="H1870"\w* \w wicked|strong="H7451"\w* \w women|strong="H7451"\w* \w your|strong="H1245"\w* \w ways|strong="H1870"\w*. +\q1 +\v 34 \w Also|strong="H1571"\w* \w the|strong="H3605"\w* \w blood|strong="H1818"\w* \w of|strong="H5921"\w* \w the|strong="H3605"\w* \w souls|strong="H5315"\w* \w of|strong="H5921"\w* \w the|strong="H3605"\w* \w innocent|strong="H5355"\w* poor \w is|strong="H5315"\w* \w found|strong="H4672"\w* \w in|strong="H5921"\w* \w your|strong="H3605"\w* \w skirts|strong="H3671"\w*. +\q2 \w You|strong="H3588"\w* didn’t \w find|strong="H4672"\w* \w them|strong="H5921"\w* \w breaking|strong="H4290"\w* \w in|strong="H5921"\w*, +\q2 \w but|strong="H3588"\w* \w it|strong="H5921"\w* \w is|strong="H5315"\w* \w because|strong="H3588"\w* \w of|strong="H5921"\w* \w all|strong="H3605"\w* \w these|strong="H3605"\w* \w things|strong="H3605"\w*. +\q1 +\v 35 “\w Yet|strong="H3588"\w* \w you|strong="H3588"\w* said, ‘\w I|strong="H3588"\w* \w am|strong="H2005"\w* \w innocent|strong="H5352"\w*. +\q2 \w Surely|strong="H3588"\w* \w his|strong="H7725"\w* anger \w has|strong="H3588"\w* \w turned|strong="H7725"\w* \w away|strong="H7725"\w* \w from|strong="H4480"\w* \w me|strong="H7725"\w*.’ +\q1 “\w Behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H3808"\w* \w judge|strong="H8199"\w* \w you|strong="H3588"\w*, +\q2 \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w say|strong="H7725"\w*, ‘\w I|strong="H3588"\w* \w have|strong="H3588"\w* \w not|strong="H3808"\w* \w sinned|strong="H2398"\w*.’ +\q1 +\v 36 \w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H4100"\w* go \w about|strong="H1870"\w* \w so|strong="H1571"\w* \w much|strong="H3966"\w* \w to|strong="H4714"\w* \w change|strong="H8138"\w* \w your|strong="H1571"\w* \w ways|strong="H1870"\w*? +\q2 \w You|strong="H4100"\w* \w will|strong="H1571"\w* \w be|strong="H1571"\w* ashamed \w of|strong="H1870"\w* \w Egypt|strong="H4714"\w* \w also|strong="H1571"\w*, +\q2 \w as|strong="H1571"\w* \w you|strong="H4100"\w* \w were|strong="H4714"\w* ashamed \w of|strong="H1870"\w* Assyria. +\q1 +\v 37 \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w also|strong="H1571"\w* \w leave|strong="H3318"\w* \w that|strong="H3588"\w* \w place|strong="H3027"\w* \w with|strong="H3068"\w* \w your|strong="H3068"\w* \w hands|strong="H3027"\w* \w on|strong="H5921"\w* \w your|strong="H3068"\w* \w head|strong="H7218"\w*; +\q2 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w rejected|strong="H3988"\w* \w those|strong="H5921"\w* \w in|strong="H5921"\w* \w whom|strong="H4009"\w* \w you|strong="H3588"\w* \w trust|strong="H4009"\w*, +\q2 \w and|strong="H3068"\w* \w you|strong="H3588"\w* won’t \w prosper|strong="H6743"\w* \w with|strong="H3068"\w* \w them|strong="H5921"\w*. +\c 3 +\p +\v 1 “\w They|strong="H3068"\w* \w say|strong="H7725"\w*, ‘\w If|strong="H2005"\w* \w a|strong="H3068"\w* man \w puts|strong="H7971"\w* \w away|strong="H7971"\w* \w his|strong="H3068"\w* wife, \w and|strong="H1980"\w* \w she|strong="H1931"\w* \w goes|strong="H1980"\w* \w from|strong="H7725"\w* \w him|strong="H7971"\w*, \w and|strong="H1980"\w* \w becomes|strong="H1961"\w* \w another|strong="H7453"\w* man’s, \w should|strong="H3068"\w* \w he|strong="H1931"\w* \w return|strong="H7725"\w* \w to|strong="H1980"\w* \w her|strong="H7971"\w* \w again|strong="H7725"\w*?’ Wouldn’t \w that|strong="H1931"\w* land \w be|strong="H1961"\w* \w greatly|strong="H7227"\w* \w polluted|strong="H2610"\w*? \w But|strong="H3808"\w* \w you|strong="H7971"\w* \w have|strong="H1961"\w* \w played|strong="H2181"\w* \w the|strong="H5002"\w* \w prostitute|strong="H2181"\w* \w with|strong="H1980"\w* \w many|strong="H7227"\w* \w lovers|strong="H7453"\w*; \w yet|strong="H5750"\w* \w return|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H1980"\w* \w me|strong="H7971"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 2 “\w Lift|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H5921"\w* \w eyes|strong="H5869"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w bare|strong="H5375"\w* \w heights|strong="H8205"\w*, \w and|strong="H5869"\w* \w see|strong="H7200"\w*! \w Where|strong="H5921"\w* \w have|strong="H5869"\w* \w you|strong="H5921"\w* \w not|strong="H3808"\w* \w been|strong="H3808"\w* lain \w with|strong="H5921"\w*? \w You|strong="H5921"\w* \w have|strong="H5869"\w* \w sat|strong="H3427"\w* waiting \w for|strong="H5921"\w* \w them|strong="H5921"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w road|strong="H1870"\w*, \w as|strong="H3427"\w* \w an|strong="H5375"\w* \w Arabian|strong="H6163"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*. \w You|strong="H5921"\w* \w have|strong="H5869"\w* \w polluted|strong="H2610"\w* \w the|strong="H5921"\w* land \w with|strong="H5921"\w* \w your|strong="H5921"\w* \w prostitution|strong="H2184"\w* \w and|strong="H5869"\w* \w with|strong="H5921"\w* \w your|strong="H5921"\w* \w wickedness|strong="H7451"\w*. +\v 3 \w Therefore|strong="H1961"\w* \w the|strong="H1961"\w* \w showers|strong="H7241"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w withheld|strong="H4513"\w* \w and|strong="H3985"\w* \w there|strong="H1961"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w no|strong="H3808"\w* \w latter|strong="H4456"\w* \w rain|strong="H4456"\w*; \w yet|strong="H3808"\w* \w you|strong="H3808"\w* \w have|strong="H1961"\w* \w had|strong="H1961"\w* \w a|strong="H3068"\w* \w prostitute|strong="H2181"\w*’s \w forehead|strong="H4696"\w* \w and|strong="H3985"\w* \w you|strong="H3808"\w* \w refused|strong="H3985"\w* \w to|strong="H1961"\w* \w be|strong="H1961"\w* \w ashamed|strong="H3637"\w*. +\v 4 \w Will|strong="H3808"\w* \w you|strong="H3808"\w* \w not|strong="H3808"\w* \w from|strong="H3808"\w* \w this|strong="H6258"\w* \w time|strong="H6258"\w* \w cry|strong="H7121"\w* \w to|strong="H7121"\w* \w me|strong="H7121"\w*, ‘\w My|strong="H6258"\w* Father, \w you|strong="H3808"\w* \w are|strong="H3808"\w* \w the|strong="H7121"\w* guide \w of|strong="H7121"\w* \w my|strong="H6258"\w* \w youth|strong="H5271"\w*!’? +\p +\v 5 “‘\w Will|strong="H6213"\w* \w he|strong="H6213"\w* retain \w his|strong="H8104"\w* anger \w forever|strong="H5769"\w*? \w Will|strong="H6213"\w* \w he|strong="H6213"\w* \w keep|strong="H8104"\w* \w it|strong="H6213"\w* \w to|strong="H1696"\w* \w the|strong="H6213"\w* \w end|strong="H5331"\w*?’ \w Behold|strong="H2009"\w*, \w you|strong="H6213"\w* \w have|strong="H1696"\w* \w spoken|strong="H1696"\w* \w and|strong="H5769"\w* \w have|strong="H1696"\w* \w done|strong="H6213"\w* \w evil|strong="H7451"\w* \w things|strong="H7451"\w*, \w and|strong="H5769"\w* \w have|strong="H1696"\w* \w had|strong="H3201"\w* \w your|strong="H8104"\w* \w way|strong="H3201"\w*.” +\p +\v 6 Moreover, \w Yahweh|strong="H3068"\w* said \w to|strong="H1980"\w* \w me|strong="H7200"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w Josiah|strong="H2977"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, “\w Have|strong="H3068"\w* \w you|strong="H3605"\w* \w seen|strong="H7200"\w* \w that|strong="H7200"\w* \w which|strong="H1931"\w* \w backsliding|strong="H4878"\w* \w Israel|strong="H3478"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w*? \w She|strong="H1931"\w* \w has|strong="H3068"\w* \w gone|strong="H1980"\w* \w up|strong="H7200"\w* \w on|strong="H5921"\w* \w every|strong="H3605"\w* \w high|strong="H1364"\w* \w mountain|strong="H2022"\w* \w and|strong="H1980"\w* \w under|strong="H8478"\w* \w every|strong="H3605"\w* \w green|strong="H7488"\w* \w tree|strong="H6086"\w*, \w and|strong="H1980"\w* \w has|strong="H3068"\w* \w played|strong="H2181"\w* \w the|strong="H3605"\w* \w prostitute|strong="H2181"\w* \w there|strong="H8033"\w*. +\v 7 \w I|strong="H7200"\w* said \w after|strong="H7200"\w* \w she|strong="H3808"\w* \w had|strong="H3063"\w* \w done|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* \w things|strong="H3605"\w*, ‘\w She|strong="H3808"\w* \w will|strong="H3063"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w me|strong="H7725"\w*;’ \w but|strong="H3808"\w* \w she|strong="H3808"\w* didn’t \w return|strong="H7725"\w*, \w and|strong="H3063"\w* \w her|strong="H3605"\w* treacherous sister \w Judah|strong="H3063"\w* \w saw|strong="H7200"\w* \w it|strong="H6213"\w*. +\v 8 \w I|strong="H3588"\w* \w saw|strong="H7200"\w* \w when|strong="H3588"\w*, \w for|strong="H3588"\w* \w this|strong="H1931"\w* \w very|strong="H1571"\w* \w cause|strong="H5414"\w*, \w that|strong="H3588"\w* \w backsliding|strong="H4878"\w* \w Israel|strong="H3478"\w* \w had|strong="H3478"\w* \w committed|strong="H5414"\w* \w adultery|strong="H5003"\w*, \w I|strong="H3588"\w* \w had|strong="H3478"\w* \w put|strong="H5414"\w* \w her|strong="H3605"\w* \w away|strong="H7971"\w* \w and|strong="H3063"\w* \w given|strong="H5414"\w* \w her|strong="H3605"\w* \w a|strong="H3068"\w* \w certificate|strong="H5612"\w* \w of|strong="H5921"\w* \w divorce|strong="H7971"\w*, \w yet|strong="H3588"\w* treacherous \w Judah|strong="H3063"\w*, \w her|strong="H3605"\w* sister, \w had|strong="H3478"\w* \w no|strong="H3808"\w* \w fear|strong="H3372"\w*, \w but|strong="H3588"\w* \w she|strong="H1931"\w* \w also|strong="H1571"\w* \w went|strong="H3212"\w* \w and|strong="H3063"\w* \w played|strong="H2181"\w* \w the|strong="H3605"\w* \w prostitute|strong="H2181"\w*. +\v 9 Because she \w took|strong="H1961"\w* \w her|strong="H1961"\w* \w prostitution|strong="H2184"\w* lightly, \w the|strong="H1961"\w* land \w was|strong="H1961"\w* \w polluted|strong="H2610"\w*, \w and|strong="H6086"\w* she \w committed|strong="H5003"\w* \w adultery|strong="H5003"\w* \w with|strong="H6086"\w* stones \w and|strong="H6086"\w* \w with|strong="H6086"\w* \w wood|strong="H6086"\w*. +\v 10 \w Yet|strong="H3588"\w* \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w her|strong="H3605"\w* treacherous sister, \w Judah|strong="H3063"\w*, \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w me|strong="H7725"\w* \w with|strong="H3068"\w* \w her|strong="H3605"\w* \w whole|strong="H3605"\w* \w heart|strong="H3820"\w*, \w but|strong="H3588"\w* \w only|strong="H3588"\w* \w in|strong="H3068"\w* pretense,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 11 \w Yahweh|strong="H3068"\w* said \w to|strong="H3478"\w* \w me|strong="H5315"\w*, “\w Backsliding|strong="H4878"\w* \w Israel|strong="H3478"\w* \w has|strong="H3068"\w* shown \w herself|strong="H5315"\w* \w more|strong="H5315"\w* \w righteous|strong="H6663"\w* \w than|strong="H3068"\w* treacherous \w Judah|strong="H3063"\w*. +\v 12 \w Go|strong="H1980"\w*, \w and|strong="H1980"\w* \w proclaim|strong="H7121"\w* \w these|strong="H7121"\w* \w words|strong="H1697"\w* \w toward|strong="H6440"\w* \w the|strong="H6440"\w* \w north|strong="H6828"\w*, \w and|strong="H1980"\w* \w say|strong="H7725"\w*, ‘\w Return|strong="H7725"\w*, \w you|strong="H3588"\w* \w backsliding|strong="H4878"\w* \w Israel|strong="H3478"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*; ‘\w I|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w look|strong="H3068"\w* \w in|strong="H1980"\w* \w anger|strong="H6440"\w* \w on|strong="H1980"\w* \w you|strong="H3588"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w merciful|strong="H2623"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. ‘\w I|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w keep|strong="H5201"\w* \w anger|strong="H6440"\w* \w forever|strong="H5769"\w*. +\v 13 \w Only|strong="H3588"\w* \w acknowledge|strong="H3045"\w* \w your|strong="H3068"\w* \w iniquity|strong="H5771"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w transgressed|strong="H6586"\w* \w against|strong="H6586"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w scattered|strong="H6340"\w* \w your|strong="H3068"\w* \w ways|strong="H1870"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w strangers|strong="H2114"\w* \w under|strong="H8478"\w* \w every|strong="H3605"\w* \w green|strong="H7488"\w* \w tree|strong="H6086"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w obeyed|strong="H8085"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*,’” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 14 “\w Return|strong="H7725"\w*, \w backsliding|strong="H7726"\w* \w children|strong="H1121"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w a|strong="H3068"\w* \w husband|strong="H1166"\w* \w to|strong="H7725"\w* \w you|strong="H3588"\w*. \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w take|strong="H3947"\w* \w one|strong="H1121"\w* \w of|strong="H1121"\w* \w you|strong="H3588"\w* \w from|strong="H7725"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w*, \w and|strong="H1121"\w* \w two|strong="H8147"\w* \w from|strong="H7725"\w* \w a|strong="H3068"\w* \w family|strong="H4940"\w*, \w and|strong="H1121"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w bring|strong="H7725"\w* \w you|strong="H3588"\w* \w to|strong="H7725"\w* \w Zion|strong="H6726"\w*. +\v 15 \w I|strong="H5414"\w* \w will|strong="H3820"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w shepherds|strong="H7462"\w* according \w to|strong="H5414"\w* \w my|strong="H5414"\w* \w heart|strong="H3820"\w*, \w who|strong="H7462"\w* \w will|strong="H3820"\w* \w feed|strong="H7462"\w* \w you|strong="H5414"\w* \w with|strong="H3820"\w* \w knowledge|strong="H1844"\w* \w and|strong="H3820"\w* \w understanding|strong="H3820"\w*. +\v 16 \w It|strong="H5921"\w* \w will|strong="H3068"\w* \w come|strong="H5927"\w* \w to|strong="H3068"\w* \w pass|strong="H1961"\w*, \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H3117"\w* \w multiplied|strong="H7235"\w* \w and|strong="H3068"\w* \w increased|strong="H7235"\w* \w in|strong="H5921"\w* \w the|strong="H5002"\w* land \w in|strong="H5921"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w they|strong="H1992"\w* \w will|strong="H3068"\w* \w no|strong="H3808"\w* \w longer|strong="H5750"\w* say, ‘\w the|strong="H5002"\w* ark \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w covenant|strong="H1285"\w*!’ \w It|strong="H5921"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w come|strong="H5927"\w* \w to|strong="H3068"\w* \w mind|strong="H3820"\w*. \w They|strong="H1992"\w* won’t \w remember|strong="H2142"\w* \w it|strong="H5921"\w*. \w They|strong="H1992"\w* won’t \w miss|strong="H6485"\w* \w it|strong="H5921"\w*, \w nor|strong="H3808"\w* \w will|strong="H3068"\w* \w another|strong="H5750"\w* \w be|strong="H1961"\w* \w made|strong="H6213"\w*. +\v 17 \w At|strong="H3068"\w* \w that|strong="H3605"\w* \w time|strong="H6256"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* \w call|strong="H7121"\w* \w Jerusalem|strong="H3389"\w* ‘\w Yahweh|strong="H3068"\w*’s \w Throne|strong="H3678"\w*;’ \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w gathered|strong="H6960"\w* \w to|strong="H3068"\w* \w it|strong="H1931"\w*, \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*, \w to|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*. \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w no|strong="H3808"\w* \w longer|strong="H5750"\w* \w walk|strong="H3212"\w* \w after|strong="H6256"\w* \w the|strong="H3605"\w* \w stubbornness|strong="H8307"\w* \w of|strong="H3068"\w* \w their|strong="H3605"\w* \w evil|strong="H7451"\w* \w heart|strong="H3820"\w*. +\v 18 \w In|strong="H5921"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w will|strong="H3478"\w* \w walk|strong="H3212"\w* \w with|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3063"\w* \w they|strong="H1992"\w* \w will|strong="H3478"\w* \w come|strong="H3212"\w* \w together|strong="H3162"\w* \w out|strong="H5921"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* land \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w north|strong="H6828"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* land \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w gave|strong="H5157"\w* \w for|strong="H5921"\w* \w an|strong="H5157"\w* \w inheritance|strong="H5157"\w* \w to|strong="H3478"\w* \w your|strong="H5921"\w* fathers. +\p +\v 19 “\w But|strong="H3808"\w* \w I|strong="H5414"\w* \w said|strong="H7121"\w*, ‘How \w I|strong="H5414"\w* \w desire|strong="H2532"\w* \w to|strong="H7725"\w* \w put|strong="H5414"\w* \w you|strong="H5414"\w* \w among|strong="H3808"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w*, \w and|strong="H1121"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w pleasant|strong="H2532"\w* \w land|strong="H5159"\w*, \w a|strong="H3068"\w* \w goodly|strong="H2532"\w* \w heritage|strong="H5159"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w armies|strong="H6635"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w nations|strong="H1471"\w*!’ \w and|strong="H1121"\w* \w I|strong="H5414"\w* \w said|strong="H7121"\w*, ‘\w You|strong="H5414"\w* \w shall|strong="H1121"\w* \w call|strong="H7121"\w* \w me|strong="H5414"\w* “\w My|strong="H5414"\w* \w Father|strong="H1121"\w*”, \w and|strong="H1121"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w from|strong="H7725"\w* following \w me|strong="H5414"\w*.’ +\p +\v 20 “\w Surely|strong="H3651"\w* \w as|strong="H3651"\w* \w a|strong="H3068"\w* wife treacherously departs \w from|strong="H3478"\w* \w her|strong="H3651"\w* \w husband|strong="H7453"\w*, \w so|strong="H3651"\w* \w you|strong="H3651"\w* \w have|strong="H3068"\w* dealt treacherously \w with|strong="H1004"\w* \w me|strong="H1004"\w*, \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 21 \w A|strong="H3068"\w* \w voice|strong="H6963"\w* \w is|strong="H3068"\w* \w heard|strong="H8085"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w bare|strong="H8205"\w* \w heights|strong="H8205"\w*, \w the|strong="H5921"\w* \w weeping|strong="H1065"\w* \w and|strong="H1121"\w* \w the|strong="H5921"\w* petitions \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3068"\w* \w perverted|strong="H5753"\w* \w their|strong="H3068"\w* \w way|strong="H1870"\w*, \w they|strong="H3588"\w* \w have|strong="H3068"\w* \w forgotten|strong="H7911"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 22 \w Return|strong="H7725"\w*, \w you|strong="H3588"\w* \w backsliding|strong="H4878"\w* \w children|strong="H1121"\w*, \w and|strong="H1121"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w heal|strong="H7495"\w* \w your|strong="H3068"\w* \w backsliding|strong="H4878"\w*. +\p “\w Behold|strong="H2005"\w*, \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w come|strong="H7725"\w* \w to|strong="H7725"\w* \w you|strong="H3588"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 23 Truly \w help|strong="H8668"\w* \w from|strong="H3478"\w* \w the|strong="H3068"\w* \w hills|strong="H1389"\w*, \w the|strong="H3068"\w* \w tumult|strong="H1995"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w mountains|strong="H2022"\w*, \w is|strong="H3068"\w* \w in|strong="H3478"\w* \w vain|strong="H8267"\w*. Truly \w the|strong="H3068"\w* \w salvation|strong="H8668"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w is|strong="H3068"\w* \w in|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 24 \w But|strong="H5271"\w* \w the|strong="H1121"\w* \w shameful|strong="H1322"\w* \w thing|strong="H1322"\w* \w has|strong="H1121"\w* devoured \w the|strong="H1121"\w* \w labor|strong="H3018"\w* \w of|strong="H1121"\w* our fathers \w from|strong="H1121"\w* our \w youth|strong="H5271"\w*, their \w flocks|strong="H6629"\w* \w and|strong="H1121"\w* their \w herds|strong="H1241"\w*, their \w sons|strong="H1121"\w* \w and|strong="H1121"\w* their \w daughters|strong="H1323"\w*. +\v 25 \w Let|strong="H3808"\w* \w us|strong="H3588"\w* \w lie|strong="H7901"\w* \w down|strong="H7901"\w* \w in|strong="H3068"\w* \w our|strong="H3068"\w* \w shame|strong="H1322"\w*, \w and|strong="H3068"\w* \w let|strong="H3808"\w* \w our|strong="H3068"\w* \w confusion|strong="H1322"\w* \w cover|strong="H3680"\w* \w us|strong="H3588"\w*; \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w we|strong="H3068"\w* \w and|strong="H3068"\w* \w our|strong="H3068"\w* fathers, \w from|strong="H8085"\w* \w our|strong="H3068"\w* \w youth|strong="H5271"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. \w We|strong="H3588"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w obeyed|strong="H8085"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w*.” +\c 4 +\p +\v 1 “If \w you|strong="H6440"\w* \w will|strong="H3068"\w* \w return|strong="H7725"\w*, \w Israel|strong="H3478"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “if \w you|strong="H6440"\w* \w will|strong="H3068"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w me|strong="H6440"\w*, \w and|strong="H3478"\w* if \w you|strong="H6440"\w* \w will|strong="H3068"\w* \w put|strong="H5493"\w* \w away|strong="H5493"\w* \w your|strong="H3068"\w* \w abominations|strong="H8251"\w* \w out|strong="H6440"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w sight|strong="H6440"\w*; \w then|strong="H7725"\w* \w you|strong="H6440"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w removed|strong="H5493"\w*; +\v 2 \w and|strong="H3068"\w* \w you|strong="H1288"\w* \w will|strong="H3068"\w* \w swear|strong="H7650"\w*, ‘\w As|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*,’ \w in|strong="H3068"\w* truth, \w in|strong="H3068"\w* \w justice|strong="H4941"\w*, \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w righteousness|strong="H6666"\w*. \w The|strong="H3068"\w* \w nations|strong="H1471"\w* \w will|strong="H3068"\w* \w bless|strong="H1288"\w* themselves \w in|strong="H3068"\w* \w him|strong="H1288"\w*, \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* \w glory|strong="H1984"\w* \w in|strong="H3068"\w* \w him|strong="H1288"\w*.” +\p +\v 3 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* men \w of|strong="H3068"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w to|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, “\w Break|strong="H5214"\w* \w up|strong="H5214"\w* \w your|strong="H3068"\w* \w fallow|strong="H5215"\w* \w ground|strong="H5215"\w*, \w and|strong="H3063"\w* don’t \w sow|strong="H2232"\w* among \w thorns|strong="H6975"\w*. +\v 4 \w Circumcise|strong="H4135"\w* \w yourselves|strong="H3068"\w* \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3063"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w* \w the|strong="H6440"\w* \w foreskins|strong="H6190"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w*, \w you|strong="H6440"\w* men \w of|strong="H3068"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*; \w lest|strong="H6435"\w* \w my|strong="H3068"\w* \w wrath|strong="H2534"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w like|strong="H3318"\w* fire, \w and|strong="H3063"\w* \w burn|strong="H1197"\w* \w so|strong="H6435"\w* \w that|strong="H3068"\w* \w no|strong="H6435"\w* \w one|strong="H3068"\w* can \w quench|strong="H3518"\w* \w it|strong="H6440"\w*, \w because|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w evil|strong="H7455"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w doings|strong="H4611"\w*. +\v 5 \w Declare|strong="H5046"\w* \w in|strong="H8085"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w publish|strong="H8085"\w* \w in|strong="H8085"\w* \w Jerusalem|strong="H3389"\w*; \w and|strong="H3063"\w* say, ‘\w Blow|strong="H8628"\w* \w the|strong="H8085"\w* \w trumpet|strong="H7782"\w* \w in|strong="H8085"\w* \w the|strong="H8085"\w* land!’ \w Cry|strong="H7121"\w* \w aloud|strong="H4390"\w* \w and|strong="H3063"\w* say, ‘Assemble \w yourselves|strong="H4390"\w*! \w Let|strong="H5046"\w*’s go \w into|strong="H3063"\w* \w the|strong="H8085"\w* \w fortified|strong="H4013"\w* \w cities|strong="H5892"\w*!’ +\v 6 \w Set|strong="H5975"\w* \w up|strong="H5375"\w* \w a|strong="H3068"\w* \w standard|strong="H5251"\w* \w toward|strong="H5251"\w* \w Zion|strong="H6726"\w*. \w Flee|strong="H5756"\w* \w for|strong="H3588"\w* \w safety|strong="H5756"\w*! Don’t \w wait|strong="H5975"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H6828"\w* \w bring|strong="H5375"\w* \w evil|strong="H7451"\w* \w from|strong="H7451"\w* \w the|strong="H3588"\w* \w north|strong="H6828"\w*, \w and|strong="H1419"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w destruction|strong="H7667"\w*.” +\p +\v 7 \w A|strong="H3068"\w* lion \w has|strong="H3318"\w* \w gone|strong="H3318"\w* \w up|strong="H5927"\w* \w from|strong="H5265"\w* \w his|strong="H7760"\w* \w thicket|strong="H5441"\w*, \w and|strong="H5892"\w* \w a|strong="H3068"\w* \w destroyer|strong="H7843"\w* \w of|strong="H3427"\w* \w nations|strong="H1471"\w*. \w He|strong="H3318"\w* \w is|strong="H5892"\w* \w on|strong="H3427"\w* \w his|strong="H7760"\w* \w way|strong="H5265"\w*. \w He|strong="H3318"\w* \w has|strong="H3318"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H5265"\w* \w his|strong="H7760"\w* \w place|strong="H4725"\w*, \w to|strong="H3318"\w* \w make|strong="H7760"\w* \w your|strong="H7760"\w* \w land|strong="H4725"\w* \w desolate|strong="H8047"\w*, \w that|strong="H1471"\w* \w your|strong="H7760"\w* \w cities|strong="H5892"\w* \w be|strong="H1471"\w* \w laid|strong="H7760"\w* \w waste|strong="H8047"\w*, \w without|strong="H3427"\w* \w inhabitant|strong="H3427"\w*. +\v 8 \w For|strong="H3588"\w* \w this|strong="H2063"\w*, clothe \w yourself|strong="H5921"\w* \w with|strong="H3068"\w* \w sackcloth|strong="H8242"\w*, \w lament|strong="H5594"\w* \w and|strong="H3068"\w* \w wail|strong="H3213"\w*; \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w fierce|strong="H2740"\w* \w anger|strong="H2740"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* hasn’t \w turned|strong="H7725"\w* \w back|strong="H7725"\w* \w from|strong="H4480"\w* \w us|strong="H7725"\w*. +\v 9 “\w It|strong="H1931"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w* \w at|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w that|strong="H3117"\w* \w the|strong="H5002"\w* \w heart|strong="H3820"\w* \w of|strong="H4428"\w* \w the|strong="H5002"\w* \w king|strong="H4428"\w* \w will|strong="H3068"\w* perish, along \w with|strong="H3068"\w* \w the|strong="H5002"\w* \w heart|strong="H3820"\w* \w of|strong="H4428"\w* \w the|strong="H5002"\w* \w princes|strong="H8269"\w*. \w The|strong="H5002"\w* \w priests|strong="H3548"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w astonished|strong="H8074"\w*, \w and|strong="H3068"\w* \w the|strong="H5002"\w* \w prophets|strong="H5030"\w* \w will|strong="H3068"\w* \w wonder|strong="H8539"\w*.” +\p +\v 10 \w Then|strong="H1961"\w* \w I|strong="H5704"\w* said, “Ah, \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*! \w Surely|strong="H1961"\w* \w you|strong="H5704"\w* \w have|strong="H1961"\w* \w greatly|strong="H5377"\w* \w deceived|strong="H5377"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w and|strong="H5971"\w* \w Jerusalem|strong="H3389"\w*, saying, ‘\w You|strong="H5704"\w* \w will|strong="H1961"\w* \w have|strong="H1961"\w* \w peace|strong="H7965"\w*;’ whereas \w the|strong="H3069"\w* \w sword|strong="H2719"\w* \w reaches|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3069"\w* \w heart|strong="H5315"\w*.” +\p +\v 11 \w At|strong="H3808"\w* \w that|strong="H5971"\w* \w time|strong="H6256"\w* \w it|strong="H1931"\w* \w will|strong="H5971"\w* \w be|strong="H3808"\w* said \w to|strong="H6256"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w and|strong="H5971"\w* \w to|strong="H6256"\w* \w Jerusalem|strong="H3389"\w*, “\w A|strong="H3068"\w* hot \w wind|strong="H7307"\w* blows \w from|strong="H7307"\w* \w the|strong="H1870"\w* \w bare|strong="H8205"\w* \w heights|strong="H8205"\w* \w in|strong="H1870"\w* \w the|strong="H1870"\w* \w wilderness|strong="H4057"\w* \w toward|strong="H1870"\w* \w the|strong="H1870"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w my|strong="H2088"\w* \w people|strong="H5971"\w*, \w not|strong="H3808"\w* \w to|strong="H6256"\w* \w winnow|strong="H2219"\w*, \w nor|strong="H3808"\w* \w to|strong="H6256"\w* \w cleanse|strong="H1305"\w*. +\v 12 \w A|strong="H3068"\w* \w full|strong="H4392"\w* \w wind|strong="H7307"\w* \w from|strong="H7307"\w* \w these|strong="H1696"\w* \w will|strong="H1571"\w* \w come|strong="H4941"\w* \w for|strong="H4941"\w* \w me|strong="H1696"\w*. \w Now|strong="H6258"\w* \w I|strong="H6258"\w* \w will|strong="H1571"\w* \w also|strong="H1571"\w* \w utter|strong="H1696"\w* \w judgments|strong="H4941"\w* \w against|strong="H1696"\w* \w them|strong="H7307"\w*.” +\p +\v 13 \w Behold|strong="H2009"\w*, \w he|strong="H3588"\w* \w will|strong="H7703"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w as|strong="H5927"\w* \w clouds|strong="H6051"\w*, \w and|strong="H5483"\w* \w his|strong="H3588"\w* \w chariots|strong="H4818"\w* \w will|strong="H7703"\w* \w be|strong="H3588"\w* \w as|strong="H5927"\w* \w the|strong="H3588"\w* \w whirlwind|strong="H5492"\w*. \w His|strong="H3588"\w* \w horses|strong="H5483"\w* \w are|strong="H5483"\w* \w swifter|strong="H7043"\w* \w than|strong="H3588"\w* \w eagles|strong="H5404"\w*. Woe \w to|strong="H5927"\w* \w us|strong="H3588"\w*! \w For|strong="H3588"\w* \w we|strong="H3068"\w* \w are|strong="H5483"\w* \w ruined|strong="H7703"\w*. +\v 14 \w Jerusalem|strong="H3389"\w*, \w wash|strong="H3526"\w* \w your|strong="H5704"\w* \w heart|strong="H3820"\w* \w from|strong="H5704"\w* \w wickedness|strong="H7451"\w*, \w that|strong="H4616"\w* \w you|strong="H5704"\w* \w may|strong="H3820"\w* \w be|strong="H3820"\w* \w saved|strong="H3467"\w*. \w How|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H3820"\w* \w your|strong="H5704"\w* \w evil|strong="H7451"\w* \w thoughts|strong="H4284"\w* \w lodge|strong="H3885"\w* \w within|strong="H7130"\w* \w you|strong="H5704"\w*? +\v 15 \w For|strong="H3588"\w* \w a|strong="H3068"\w* \w voice|strong="H6963"\w* \w declares|strong="H5046"\w* \w from|strong="H8085"\w* \w Dan|strong="H1835"\w*, \w and|strong="H6963"\w* publishes evil \w from|strong="H8085"\w* \w the|strong="H8085"\w* \w hills|strong="H2022"\w* \w of|strong="H2022"\w* Ephraim: +\v 16 “\w Tell|strong="H8085"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*, \w behold|strong="H2009"\w*, \w publish|strong="H8085"\w* \w against|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, ‘\w Watchers|strong="H5341"\w* \w come|strong="H3063"\w* \w from|strong="H5921"\w* \w a|strong="H3068"\w* \w far|strong="H4801"\w* country, \w and|strong="H3063"\w* \w raise|strong="H5414"\w* \w their|strong="H5414"\w* \w voice|strong="H6963"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w Judah|strong="H3063"\w*. +\v 17 \w As|strong="H1961"\w* \w keepers|strong="H8104"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w field|strong="H7704"\w*, \w they|strong="H3588"\w* \w are|strong="H3068"\w* \w against|strong="H5921"\w* \w her|strong="H5921"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*, \w because|strong="H3588"\w* \w she|strong="H3588"\w* \w has|strong="H3068"\w* \w been|strong="H1961"\w* \w rebellious|strong="H4784"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*,’” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 18 “\w Your|strong="H6213"\w* \w way|strong="H1870"\w* \w and|strong="H1870"\w* \w your|strong="H6213"\w* \w doings|strong="H4611"\w* \w have|strong="H3588"\w* \w brought|strong="H6213"\w* \w these|strong="H2063"\w* \w things|strong="H7451"\w* \w to|strong="H5704"\w* \w you|strong="H3588"\w*. \w This|strong="H2063"\w* \w is|strong="H3820"\w* \w your|strong="H6213"\w* \w wickedness|strong="H7451"\w*, \w for|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H3820"\w* \w bitter|strong="H4751"\w*, \w for|strong="H3588"\w* \w it|strong="H3588"\w* \w reaches|strong="H5704"\w* \w to|strong="H5704"\w* \w your|strong="H6213"\w* \w heart|strong="H3820"\w*.” +\p +\v 19 \w My|strong="H8085"\w* \w anguish|strong="H2342"\w*, \w my|strong="H8085"\w* \w anguish|strong="H2342"\w*! \w I|strong="H3588"\w* am \w pained|strong="H2342"\w* \w at|strong="H4421"\w* \w my|strong="H8085"\w* \w very|strong="H7023"\w* \w heart|strong="H3820"\w*! \w My|strong="H8085"\w* \w heart|strong="H3820"\w* trembles \w within|strong="H4578"\w* \w me|strong="H5315"\w*. \w I|strong="H3588"\w* \w can|strong="H3808"\w*’t hold \w my|strong="H8085"\w* \w peace|strong="H2790"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* \w heard|strong="H8085"\w*, \w O|strong="H3068"\w* \w my|strong="H8085"\w* \w soul|strong="H5315"\w*, \w the|strong="H8085"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w trumpet|strong="H7782"\w*, \w the|strong="H8085"\w* \w alarm|strong="H8643"\w* \w of|strong="H6963"\w* \w war|strong="H4421"\w*. +\v 20 \w Destruction|strong="H7667"\w* \w on|strong="H5921"\w* \w destruction|strong="H7667"\w* \w is|strong="H3605"\w* decreed, \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* land \w is|strong="H3605"\w* laid \w waste|strong="H7703"\w*. \w Suddenly|strong="H6597"\w* \w my|strong="H3605"\w* tents \w are|strong="H7703"\w* \w destroyed|strong="H7703"\w*, \w and|strong="H7121"\w* \w my|strong="H3605"\w* \w curtains|strong="H3407"\w* gone \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w moment|strong="H7281"\w*. +\v 21 \w How|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H5704"\w* \w I|strong="H5704"\w* \w see|strong="H7200"\w* \w the|strong="H8085"\w* \w standard|strong="H5251"\w* \w and|strong="H6963"\w* \w hear|strong="H8085"\w* \w the|strong="H8085"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w trumpet|strong="H7782"\w*? +\p +\v 22 “\w For|strong="H3588"\w* \w my|strong="H3045"\w* \w people|strong="H5971"\w* \w are|strong="H1992"\w* \w foolish|strong="H5530"\w*. \w They|strong="H1992"\w* don’t \w know|strong="H3045"\w* \w me|strong="H3808"\w*. \w They|strong="H1992"\w* \w are|strong="H1992"\w* \w foolish|strong="H5530"\w* \w children|strong="H1121"\w*, \w and|strong="H1121"\w* \w they|strong="H1992"\w* \w have|strong="H5971"\w* \w no|strong="H3808"\w* understanding. \w They|strong="H1992"\w* \w are|strong="H1992"\w* \w skillful|strong="H2450"\w* \w in|strong="H1121"\w* \w doing|strong="H3190"\w* \w evil|strong="H7489"\w*, \w but|strong="H3588"\w* \w they|strong="H1992"\w* don’t \w know|strong="H3045"\w* \w how|strong="H3588"\w* \w to|strong="H1121"\w* \w do|strong="H3190"\w* \w good|strong="H3190"\w*.” +\v 23 \w I|strong="H2009"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* \w earth|strong="H8064"\w* \w and|strong="H8064"\w*, \w behold|strong="H2009"\w*, \w it|strong="H7200"\w* \w was|strong="H8064"\w* \w waste|strong="H8414"\w* \w and|strong="H8064"\w* void, \w and|strong="H8064"\w* \w the|strong="H7200"\w* \w heavens|strong="H8064"\w*, \w and|strong="H8064"\w* \w they|strong="H7200"\w* \w had|strong="H8064"\w* \w no|strong="H7200"\w* light. +\v 24 \w I|strong="H2009"\w* \w saw|strong="H7200"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w*, \w and|strong="H7200"\w* \w behold|strong="H2009"\w*, \w they|strong="H3605"\w* \w trembled|strong="H7493"\w*, \w and|strong="H7200"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w hills|strong="H1389"\w* \w moved|strong="H7493"\w* back \w and|strong="H7200"\w* forth. +\v 25 \w I|strong="H2009"\w* \w saw|strong="H7200"\w*, \w and|strong="H8064"\w* \w behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w was|strong="H3605"\w* \w no|strong="H3605"\w* \w man|strong="H3605"\w*, \w and|strong="H8064"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w birds|strong="H5775"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w* \w had|strong="H8064"\w* \w fled|strong="H5074"\w*. +\v 26 \w I|strong="H2009"\w* \w saw|strong="H7200"\w*, \w and|strong="H3068"\w* \w behold|strong="H2009"\w*, \w the|strong="H3605"\w* \w fruitful|strong="H3759"\w* \w field|strong="H3759"\w* \w was|strong="H3068"\w* \w a|strong="H3068"\w* \w wilderness|strong="H4057"\w*, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w cities|strong="H5892"\w* \w were|strong="H5892"\w* \w broken|strong="H5422"\w* \w down|strong="H5422"\w* \w at|strong="H3068"\w* \w the|strong="H3605"\w* \w presence|strong="H6440"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w before|strong="H6440"\w* \w his|strong="H3605"\w* \w fierce|strong="H2740"\w* \w anger|strong="H6440"\w*. +\v 27 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w The|strong="H3605"\w* \w whole|strong="H3605"\w* land \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w desolation|strong="H8077"\w*; \w yet|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w full|strong="H3605"\w* \w end|strong="H3617"\w*. +\v 28 \w For|strong="H3588"\w* \w this|strong="H2063"\w* \w the|strong="H5921"\w* \w earth|strong="H8064"\w* \w will|strong="H8064"\w* \w mourn|strong="H6937"\w*, \w and|strong="H7725"\w* \w the|strong="H5921"\w* \w heavens|strong="H8064"\w* \w above|strong="H4605"\w* \w be|strong="H3808"\w* \w black|strong="H6937"\w*, \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1696"\w* \w spoken|strong="H1696"\w* \w it|strong="H5921"\w*. \w I|strong="H3588"\w* \w have|strong="H1696"\w* \w planned|strong="H2161"\w* \w it|strong="H5921"\w*, \w and|strong="H7725"\w* \w I|strong="H3588"\w* \w have|strong="H1696"\w* \w not|strong="H3808"\w* \w repented|strong="H5162"\w*, \w neither|strong="H3808"\w* \w will|strong="H8064"\w* \w I|strong="H3588"\w* \w turn|strong="H7725"\w* \w back|strong="H7725"\w* \w from|strong="H4480"\w* \w it|strong="H5921"\w*.” +\p +\v 29 \w Every|strong="H3605"\w* \w city|strong="H5892"\w* \w flees|strong="H1272"\w* \w for|strong="H3427"\w* \w the|strong="H3605"\w* \w noise|strong="H6963"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* \w horsemen|strong="H6571"\w* \w and|strong="H6963"\w* \w archers|strong="H7198"\w*. \w They|strong="H2004"\w* \w go|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H3605"\w* \w thickets|strong="H5645"\w* \w and|strong="H6963"\w* \w climb|strong="H5927"\w* \w up|strong="H5927"\w* \w on|strong="H3427"\w* \w the|strong="H3605"\w* \w rocks|strong="H3710"\w*. \w Every|strong="H3605"\w* \w city|strong="H5892"\w* \w is|strong="H3605"\w* \w forsaken|strong="H5800"\w*, \w and|strong="H6963"\w* \w not|strong="H5927"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w dwells|strong="H3427"\w* \w therein|strong="H2004"\w*. +\v 30 \w You|strong="H3588"\w*, \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H5869"\w* \w made|strong="H6213"\w* \w desolate|strong="H7703"\w*, \w what|strong="H4100"\w* \w will|strong="H5869"\w* \w you|strong="H3588"\w* \w do|strong="H6213"\w*? \w Though|strong="H3588"\w* \w you|strong="H3588"\w* \w clothe|strong="H3847"\w* \w yourself|strong="H5315"\w* \w with|strong="H3847"\w* \w scarlet|strong="H8144"\w*, \w though|strong="H3588"\w* \w you|strong="H3588"\w* \w deck|strong="H5710"\w* \w yourself|strong="H5315"\w* \w with|strong="H3847"\w* \w ornaments|strong="H5716"\w* \w of|strong="H5869"\w* \w gold|strong="H2091"\w*, \w though|strong="H3588"\w* \w you|strong="H3588"\w* \w enlarge|strong="H7167"\w* \w your|strong="H6213"\w* \w eyes|strong="H5869"\w* \w with|strong="H3847"\w* makeup, \w you|strong="H3588"\w* \w make|strong="H6213"\w* \w yourself|strong="H5315"\w* \w beautiful|strong="H3302"\w* \w in|strong="H6213"\w* \w vain|strong="H7723"\w*. \w Your|strong="H6213"\w* \w lovers|strong="H5689"\w* \w despise|strong="H3988"\w* \w you|strong="H3588"\w*. \w They|strong="H3588"\w* \w seek|strong="H1245"\w* \w your|strong="H6213"\w* \w life|strong="H5315"\w*. +\v 31 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1323"\w* \w heard|strong="H8085"\w* \w a|strong="H3068"\w* \w voice|strong="H6963"\w* \w as|strong="H5315"\w* \w of|strong="H1323"\w* \w a|strong="H3068"\w* \w woman|strong="H1323"\w* \w in|strong="H8085"\w* \w travail|strong="H2470"\w*, \w the|strong="H8085"\w* \w anguish|strong="H6869"\w* \w as|strong="H5315"\w* \w of|strong="H1323"\w* \w her|strong="H6566"\w* \w who|strong="H5315"\w* gives \w birth|strong="H1069"\w* \w to|strong="H8085"\w* \w her|strong="H6566"\w* \w first|strong="H1323"\w* \w child|strong="H1069"\w*, \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H1323"\w* \w the|strong="H8085"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Zion|strong="H6726"\w*, \w who|strong="H5315"\w* gasps \w for|strong="H3588"\w* \w breath|strong="H5315"\w*, \w who|strong="H5315"\w* \w spreads|strong="H6566"\w* \w her|strong="H6566"\w* \w hands|strong="H3709"\w*, \w saying|strong="H6963"\w*, “Woe \w is|strong="H5315"\w* \w me|strong="H4994"\w* \w now|strong="H4994"\w*! \w For|strong="H3588"\w* \w my|strong="H8085"\w* \w soul|strong="H5315"\w* faints \w before|strong="H5888"\w* \w the|strong="H8085"\w* \w murderers|strong="H2026"\w*.” +\c 5 +\p +\v 1 “\w Run|strong="H4941"\w* \w back|strong="H3045"\w* \w and|strong="H4941"\w* \w forth|strong="H6213"\w* \w through|strong="H7751"\w* \w the|strong="H7200"\w* \w streets|strong="H2351"\w* \w of|strong="H2351"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H4941"\w* \w see|strong="H7200"\w* \w now|strong="H4994"\w*, \w and|strong="H4941"\w* \w know|strong="H3045"\w*, \w and|strong="H4941"\w* \w seek|strong="H1245"\w* \w in|strong="H6213"\w* \w its|strong="H6213"\w* wide \w places|strong="H7339"\w*, \w if|strong="H7200"\w* \w you|strong="H6213"\w* \w can|strong="H6213"\w* \w find|strong="H4672"\w* \w a|strong="H3068"\w* \w man|strong="H3045"\w*, \w if|strong="H7200"\w* \w there|strong="H3426"\w* \w is|strong="H3426"\w* \w anyone|strong="H7200"\w* \w who|strong="H4672"\w* \w does|strong="H6213"\w* \w justly|strong="H4941"\w*, \w who|strong="H4672"\w* \w seeks|strong="H1245"\w* truth, \w then|strong="H6213"\w* \w I|strong="H3045"\w* \w will|strong="H3389"\w* \w pardon|strong="H5545"\w* \w her|strong="H7200"\w*. +\v 2 Though \w they|strong="H3651"\w* say, ‘\w As|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*,’ \w surely|strong="H3651"\w* \w they|strong="H3651"\w* \w swear|strong="H7650"\w* \w falsely|strong="H8267"\w*.” +\p +\v 3 \w O|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, don’t \w your|strong="H3068"\w* \w eyes|strong="H5869"\w* \w look|strong="H5869"\w* \w on|strong="H3068"\w* \w truth|strong="H3808"\w*? \w You|strong="H6440"\w* \w have|strong="H3068"\w* \w stricken|strong="H5221"\w* \w them|strong="H7725"\w*, \w but|strong="H3808"\w* \w they|strong="H3068"\w* \w were|strong="H5869"\w* \w not|strong="H3808"\w* \w grieved|strong="H2342"\w*. \w You|strong="H6440"\w* \w have|strong="H3068"\w* \w consumed|strong="H3615"\w* \w them|strong="H7725"\w*, \w but|strong="H3808"\w* \w they|strong="H3068"\w* \w have|strong="H3068"\w* \w refused|strong="H3985"\w* \w to|strong="H7725"\w* \w receive|strong="H3947"\w* \w correction|strong="H4148"\w*. \w They|strong="H3068"\w* \w have|strong="H3068"\w* \w made|strong="H2388"\w* \w their|strong="H3068"\w* \w faces|strong="H6440"\w* \w harder|strong="H2388"\w* \w than|strong="H3808"\w* \w a|strong="H3068"\w* \w rock|strong="H5553"\w*. \w They|strong="H3068"\w* \w have|strong="H3068"\w* \w refused|strong="H3985"\w* \w to|strong="H7725"\w* \w return|strong="H7725"\w*. +\p +\v 4 \w Then|strong="H3588"\w* \w I|strong="H3588"\w* said, “\w Surely|strong="H3588"\w* \w these|strong="H1992"\w* \w are|strong="H1992"\w* \w poor|strong="H1800"\w*. \w They|strong="H1992"\w* \w are|strong="H1992"\w* \w foolish|strong="H2973"\w*; \w for|strong="H3588"\w* \w they|strong="H1992"\w* don’t \w know|strong="H3045"\w* \w Yahweh|strong="H3068"\w*’s \w way|strong="H1870"\w*, \w nor|strong="H3808"\w* \w the|strong="H3588"\w* \w law|strong="H4941"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 5 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w go|strong="H3212"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w great|strong="H1419"\w* \w men|strong="H1419"\w* \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H1992"\w*, \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w know|strong="H3045"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w law|strong="H4941"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*.” \w But|strong="H3588"\w* \w these|strong="H1992"\w* \w with|strong="H3068"\w* \w one|strong="H3588"\w* \w accord|strong="H3162"\w* \w have|strong="H3068"\w* \w broken|strong="H7665"\w* \w the|strong="H3588"\w* \w yoke|strong="H5923"\w*, \w and|strong="H3068"\w* \w burst|strong="H5423"\w* \w the|strong="H3588"\w* \w bonds|strong="H4147"\w*. +\v 6 \w Therefore|strong="H3651"\w* \w a|strong="H3068"\w* lion \w out|strong="H3318"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w forest|strong="H3293"\w* \w will|strong="H5892"\w* \w kill|strong="H5221"\w* \w them|strong="H5921"\w*. \w A|strong="H3068"\w* \w wolf|strong="H2061"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w evenings|strong="H6160"\w* \w will|strong="H5892"\w* \w destroy|strong="H7703"\w* \w them|strong="H5921"\w*. \w A|strong="H3068"\w* \w leopard|strong="H5246"\w* \w will|strong="H5892"\w* \w watch|strong="H8245"\w* \w against|strong="H5921"\w* \w their|strong="H3605"\w* \w cities|strong="H5892"\w*. \w Everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w goes|strong="H3318"\w* \w out|strong="H3318"\w* \w there|strong="H3605"\w* \w will|strong="H5892"\w* \w be|strong="H5892"\w* \w torn|strong="H2963"\w* \w in|strong="H5921"\w* \w pieces|strong="H2963"\w*, \w because|strong="H3588"\w* \w their|strong="H3605"\w* \w transgressions|strong="H6588"\w* \w are|strong="H6588"\w* \w many|strong="H7231"\w* \w and|strong="H5892"\w* \w their|strong="H3605"\w* \w backsliding|strong="H4878"\w* \w has|strong="H3588"\w* \w increased|strong="H6105"\w*. +\p +\v 7 “How \w can|strong="H3808"\w* \w I|strong="H3808"\w* \w pardon|strong="H5545"\w* \w you|strong="H3808"\w*? \w Your|strong="H3808"\w* \w children|strong="H1121"\w* \w have|strong="H1121"\w* \w forsaken|strong="H5800"\w* \w me|strong="H5800"\w*, \w and|strong="H1121"\w* \w sworn|strong="H7650"\w* \w by|strong="H7650"\w* \w what|strong="H2063"\w* \w are|strong="H1121"\w* \w no|strong="H3808"\w* gods. \w When|strong="H1121"\w* \w I|strong="H3808"\w* \w had|strong="H1121"\w* \w fed|strong="H7646"\w* \w them|strong="H1121"\w* \w to|strong="H1121"\w* \w the|strong="H5800"\w* \w full|strong="H7646"\w*, \w they|strong="H3808"\w* \w committed|strong="H5003"\w* \w adultery|strong="H5003"\w*, \w and|strong="H1121"\w* assembled themselves \w in|strong="H1004"\w* \w troops|strong="H1413"\w* \w at|strong="H1004"\w* \w the|strong="H5800"\w* \w prostitutes|strong="H2181"\w*’ \w houses|strong="H1004"\w*. +\v 8 They \w were|strong="H1961"\w* \w as|strong="H1961"\w* \w fed|strong="H2109"\w* \w horses|strong="H5483"\w* roaming \w at|strong="H1961"\w* large. Everyone \w neighed|strong="H6670"\w* \w after|strong="H1961"\w* \w his|strong="H1961"\w* \w neighbor|strong="H7453"\w*’s wife. +\v 9 Shouldn’t \w I|strong="H5921"\w* \w punish|strong="H6485"\w* \w them|strong="H5921"\w* \w for|strong="H5921"\w* \w these|strong="H2088"\w* \w things|strong="H3808"\w*?” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. “Shouldn’t \w my|strong="H3068"\w* \w soul|strong="H5315"\w* \w be|strong="H3808"\w* \w avenged|strong="H5358"\w* \w on|strong="H5921"\w* \w such|strong="H2088"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w as|strong="H5315"\w* \w this|strong="H2088"\w*? +\p +\v 10 “\w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w on|strong="H3068"\w* \w her|strong="H5493"\w* \w walls|strong="H8284"\w*, \w and|strong="H3068"\w* \w destroy|strong="H7843"\w*, \w but|strong="H3588"\w* don’t \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w full|strong="H3617"\w* \w end|strong="H3617"\w*. \w Take|strong="H5493"\w* \w away|strong="H5493"\w* \w her|strong="H5493"\w* \w branches|strong="H5189"\w*, \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w not|strong="H3808"\w* \w Yahweh|strong="H3068"\w*’s. +\v 11 \w For|strong="H3588"\w* \w the|strong="H5002"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w the|strong="H5002"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w have|strong="H3068"\w* dealt very treacherously \w against|strong="H3068"\w* \w me|strong="H3588"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 12 \w They|strong="H3068"\w* \w have|strong="H3068"\w* \w denied|strong="H3584"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* said, “\w It|strong="H1931"\w* \w is|strong="H3068"\w* \w not|strong="H3808"\w* \w he|strong="H1931"\w*. \w Evil|strong="H7451"\w* won’t come \w on|strong="H5921"\w* \w us|strong="H5921"\w*. \w We|strong="H7200"\w* won’t \w see|strong="H7200"\w* \w sword|strong="H2719"\w* \w or|strong="H3808"\w* \w famine|strong="H7458"\w*. +\v 13 \w The|strong="H3541"\w* \w prophets|strong="H5030"\w* \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w wind|strong="H7307"\w*, \w and|strong="H6213"\w* \w the|strong="H3541"\w* \w word|strong="H1699"\w* \w is|strong="H7307"\w* \w not|strong="H6213"\w* \w in|strong="H6213"\w* \w them|strong="H6213"\w*. \w Thus|strong="H3541"\w* \w it|strong="H6213"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w done|strong="H6213"\w* \w to|strong="H1961"\w* \w them|strong="H6213"\w*.” +\p +\v 14 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5414"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*, “\w Because|strong="H3282"\w* \w you|strong="H5414"\w* \w speak|strong="H1696"\w* \w this|strong="H2088"\w* \w word|strong="H1697"\w*, \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w make|strong="H5414"\w* \w my|strong="H5414"\w* \w words|strong="H1697"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w mouth|strong="H6310"\w* fire, \w and|strong="H3068"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w wood|strong="H6086"\w*, \w and|strong="H3068"\w* \w it|strong="H5414"\w* \w will|strong="H3068"\w* devour \w them|strong="H5414"\w*. +\v 15 \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w bring|strong="H3045"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w* \w from|strong="H5921"\w* \w far|strong="H4801"\w* \w away|strong="H4801"\w*, \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. “\w It|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* mighty \w nation|strong="H1471"\w*. \w It|strong="H1931"\w* \w is|strong="H3068"\w* \w an|strong="H3068"\w* \w ancient|strong="H5769"\w* \w nation|strong="H1471"\w*, \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w whose|strong="H1471"\w* \w language|strong="H3956"\w* \w you|strong="H5921"\w* don’t \w know|strong="H3045"\w* \w and|strong="H3478"\w* don’t \w understand|strong="H3045"\w* \w what|strong="H4100"\w* \w they|strong="H3068"\w* \w say|strong="H1696"\w*. +\v 16 \w Their|strong="H3605"\w* quiver \w is|strong="H3605"\w* \w an|strong="H6605"\w* \w open|strong="H6605"\w* \w tomb|strong="H6913"\w*. \w They|strong="H3605"\w* \w are|strong="H1368"\w* \w all|strong="H3605"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w*. +\v 17 \w They|strong="H2007"\w* \w will|strong="H2719"\w* \w eat|strong="H3899"\w* \w up|strong="H1121"\w* \w your|strong="H6629"\w* \w harvest|strong="H7105"\w* \w and|strong="H1121"\w* \w your|strong="H6629"\w* \w bread|strong="H3899"\w*, \w which|strong="H5892"\w* \w your|strong="H6629"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w your|strong="H6629"\w* \w daughters|strong="H1323"\w* \w should|strong="H1323"\w* \w eat|strong="H3899"\w*. \w They|strong="H2007"\w* \w will|strong="H2719"\w* \w eat|strong="H3899"\w* \w up|strong="H1121"\w* \w your|strong="H6629"\w* \w flocks|strong="H6629"\w* \w and|strong="H1121"\w* \w your|strong="H6629"\w* \w herds|strong="H1241"\w*. \w They|strong="H2007"\w* \w will|strong="H2719"\w* \w eat|strong="H3899"\w* \w up|strong="H1121"\w* \w your|strong="H6629"\w* \w vines|strong="H1612"\w* \w and|strong="H1121"\w* \w your|strong="H6629"\w* \w fig|strong="H8384"\w* \w trees|strong="H8384"\w*. \w They|strong="H2007"\w* \w will|strong="H2719"\w* beat \w down|strong="H7567"\w* \w your|strong="H6629"\w* \w fortified|strong="H4013"\w* \w cities|strong="H5892"\w* \w in|strong="H5892"\w* \w which|strong="H5892"\w* \w you|strong="H2007"\w* trust \w with|strong="H3899"\w* \w the|strong="H1121"\w* \w sword|strong="H2719"\w*. +\p +\v 18 “\w But|strong="H3808"\w* \w even|strong="H1571"\w* \w in|strong="H3068"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w I|strong="H3117"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w full|strong="H3117"\w* \w end|strong="H3617"\w* \w of|strong="H3068"\w* \w you|strong="H3117"\w*. +\v 19 \w It|strong="H3588"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w* \w when|strong="H3588"\w* \w you|strong="H3588"\w* say, ‘\w Why|strong="H4100"\w* \w has|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w done|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* \w things|strong="H3605"\w* \w to|strong="H3068"\w* \w us|strong="H6213"\w*?’ \w Then|strong="H1961"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* say \w to|strong="H3068"\w* \w them|strong="H6213"\w*, ‘\w Just|strong="H3605"\w* \w as|strong="H1961"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w forsaken|strong="H5800"\w* \w me|strong="H6213"\w* \w and|strong="H3068"\w* \w served|strong="H5647"\w* \w foreign|strong="H5236"\w* gods \w in|strong="H3068"\w* \w your|strong="H3068"\w* land, \w so|strong="H3651"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w serve|strong="H5647"\w* \w strangers|strong="H2114"\w* \w in|strong="H3068"\w* \w a|strong="H3068"\w* land \w that|strong="H3588"\w* \w is|strong="H3068"\w* \w not|strong="H3808"\w* yours.’ +\p +\v 20 “\w Declare|strong="H5046"\w* \w this|strong="H2063"\w* \w in|strong="H1004"\w* \w the|strong="H8085"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w*, \w and|strong="H3063"\w* \w publish|strong="H8085"\w* \w it|strong="H2063"\w* \w in|strong="H1004"\w* \w Judah|strong="H3063"\w*, saying, +\v 21 ‘\w Hear|strong="H8085"\w* \w this|strong="H2063"\w* \w now|strong="H4994"\w*, \w foolish|strong="H5530"\w* \w people|strong="H5971"\w* \w without|strong="H3808"\w* \w understanding|strong="H3820"\w*, \w who|strong="H5971"\w* \w have|strong="H5869"\w* \w eyes|strong="H5869"\w*, \w and|strong="H5971"\w* don’t \w see|strong="H7200"\w*, \w who|strong="H5971"\w* \w have|strong="H5869"\w* ears, \w and|strong="H5971"\w* don’t \w hear|strong="H8085"\w*: +\v 22 Don’t \w you|strong="H6440"\w* \w fear|strong="H3372"\w* \w me|strong="H6440"\w*?’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*; ‘Won’t \w you|strong="H6440"\w* \w tremble|strong="H2342"\w* \w at|strong="H3068"\w* \w my|strong="H3068"\w* \w presence|strong="H6440"\w*, \w who|strong="H3068"\w* \w have|strong="H3068"\w* \w placed|strong="H7760"\w* \w the|strong="H6440"\w* \w sand|strong="H2344"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* \w bound|strong="H1366"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w sea|strong="H3220"\w* \w by|strong="H5674"\w* \w a|strong="H3068"\w* \w perpetual|strong="H5769"\w* \w decree|strong="H2706"\w*, \w that|strong="H3068"\w* \w it|strong="H7760"\w* \w can|strong="H3201"\w*’t \w pass|strong="H5674"\w* \w it|strong="H7760"\w*? Though \w its|strong="H7760"\w* \w waves|strong="H1530"\w* \w toss|strong="H1607"\w* \w themselves|strong="H7760"\w*, \w yet|strong="H3068"\w* \w they|strong="H3068"\w* \w can|strong="H3201"\w*’t \w prevail|strong="H3201"\w*. Though \w they|strong="H3068"\w* \w roar|strong="H1993"\w*, \w they|strong="H3068"\w* \w still|strong="H3201"\w* \w can|strong="H3201"\w*’t \w pass|strong="H5674"\w* \w over|strong="H5674"\w* \w it|strong="H7760"\w*.’ +\p +\v 23 “\w But|strong="H1961"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w has|strong="H1961"\w* \w a|strong="H3068"\w* \w revolting|strong="H5637"\w* \w and|strong="H3212"\w* \w a|strong="H3068"\w* \w rebellious|strong="H4784"\w* \w heart|strong="H3820"\w*. \w They|strong="H5971"\w* \w have|strong="H1961"\w* \w revolted|strong="H5493"\w* \w and|strong="H3212"\w* \w gone|strong="H3212"\w*. +\v 24 \w They|strong="H3068"\w* don’t say \w in|strong="H3068"\w* \w their|strong="H3068"\w* \w heart|strong="H3824"\w*, ‘\w Let|strong="H4994"\w*’s \w now|strong="H4994"\w* \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w who|strong="H3068"\w* \w gives|strong="H5414"\w* \w rain|strong="H1653"\w*, both \w the|strong="H5414"\w* \w former|strong="H3138"\w* \w and|strong="H3068"\w* \w the|strong="H5414"\w* \w latter|strong="H4456"\w*, \w in|strong="H3068"\w* \w its|strong="H5414"\w* \w season|strong="H6256"\w*, \w who|strong="H3068"\w* \w preserves|strong="H8104"\w* \w to|strong="H3068"\w* \w us|strong="H5414"\w* \w the|strong="H5414"\w* \w appointed|strong="H5414"\w* \w weeks|strong="H7620"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* \w harvest|strong="H7105"\w*.’ +\p +\v 25 “\w Your|strong="H5186"\w* \w iniquities|strong="H5771"\w* \w have|strong="H5771"\w* \w turned|strong="H5186"\w* \w away|strong="H5186"\w* \w these|strong="H5186"\w* \w things|strong="H2896"\w*, \w and|strong="H2896"\w* \w your|strong="H5186"\w* \w sins|strong="H2403"\w* \w have|strong="H5771"\w* \w withheld|strong="H4513"\w* \w good|strong="H2896"\w* \w from|strong="H4480"\w* \w you|strong="H4480"\w*. +\v 26 \w For|strong="H3588"\w* \w wicked|strong="H7563"\w* \w men|strong="H5971"\w* \w are|strong="H5971"\w* \w found|strong="H4672"\w* \w among|strong="H4672"\w* \w my|strong="H3588"\w* \w people|strong="H5971"\w*. \w They|strong="H3588"\w* \w watch|strong="H7789"\w*, \w as|strong="H3588"\w* \w fowlers|strong="H3353"\w* \w lie|strong="H7789"\w* \w in|strong="H4672"\w* \w wait|strong="H7789"\w*. \w They|strong="H3588"\w* \w set|strong="H5324"\w* \w a|strong="H3068"\w* \w trap|strong="H4889"\w*. \w They|strong="H3588"\w* \w catch|strong="H3920"\w* \w men|strong="H5971"\w*. +\v 27 \w As|strong="H3651"\w* \w a|strong="H3068"\w* \w cage|strong="H3619"\w* \w is|strong="H3651"\w* \w full|strong="H4392"\w* \w of|strong="H1004"\w* \w birds|strong="H5775"\w*, \w so|strong="H3651"\w* \w are|strong="H1004"\w* \w their|strong="H5921"\w* \w houses|strong="H1004"\w* \w full|strong="H4392"\w* \w of|strong="H1004"\w* \w deceit|strong="H4820"\w*. \w Therefore|strong="H3651"\w* \w they|strong="H3651"\w* \w have|strong="H1004"\w* \w become|strong="H1431"\w* \w great|strong="H1431"\w*, \w and|strong="H1004"\w* \w grew|strong="H1431"\w* \w rich|strong="H6238"\w*. +\v 28 \w They|strong="H3808"\w* \w have|strong="H1571"\w* \w grown|strong="H8080"\w* \w fat|strong="H8080"\w*. \w They|strong="H3808"\w* \w shine|strong="H6245"\w*; \w yes|strong="H1571"\w*, \w they|strong="H3808"\w* \w excel|strong="H5674"\w* \w in|strong="H1697"\w* \w deeds|strong="H1697"\w* \w of|strong="H1697"\w* \w wickedness|strong="H7451"\w*. \w They|strong="H3808"\w* don’t \w plead|strong="H8199"\w* \w the|strong="H5674"\w* \w cause|strong="H4941"\w*, \w the|strong="H5674"\w* \w cause|strong="H4941"\w* \w of|strong="H1697"\w* \w the|strong="H5674"\w* \w fatherless|strong="H3490"\w*, \w that|strong="H1697"\w* \w they|strong="H3808"\w* \w may|strong="H1571"\w* \w prosper|strong="H6743"\w*; \w and|strong="H4941"\w* \w they|strong="H3808"\w* don’t \w defend|strong="H8199"\w* \w the|strong="H5674"\w* \w rights|strong="H1779"\w* \w of|strong="H1697"\w* \w the|strong="H5674"\w* needy. +\p +\v 29 “Shouldn’t \w I|strong="H5921"\w* \w punish|strong="H6485"\w* \w for|strong="H5921"\w* \w these|strong="H2088"\w* \w things|strong="H3808"\w*?” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. “Shouldn’t \w my|strong="H3068"\w* \w soul|strong="H5315"\w* \w be|strong="H3808"\w* \w avenged|strong="H5358"\w* \w on|strong="H5921"\w* \w such|strong="H2088"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w as|strong="H5315"\w* \w this|strong="H2088"\w*? +\p +\v 30 “\w An|strong="H1961"\w* astonishing \w and|strong="H8047"\w* \w horrible|strong="H8186"\w* \w thing|strong="H8186"\w* \w has|strong="H1961"\w* \w happened|strong="H1961"\w* \w in|strong="H1961"\w* \w the|strong="H1961"\w* land. +\v 31 \w The|strong="H5921"\w* \w prophets|strong="H5030"\w* \w prophesy|strong="H5012"\w* \w falsely|strong="H8267"\w*, \w and|strong="H3027"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w* \w rule|strong="H7287"\w* \w by|strong="H3027"\w* \w their|strong="H5921"\w* \w own|strong="H3548"\w* \w authority|strong="H3027"\w*; \w and|strong="H3027"\w* \w my|strong="H5921"\w* \w people|strong="H5971"\w* love \w to|strong="H6213"\w* \w have|strong="H5971"\w* \w it|strong="H5921"\w* \w so|strong="H3651"\w*. \w What|strong="H4100"\w* \w will|strong="H5971"\w* \w you|strong="H5921"\w* \w do|strong="H6213"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w end|strong="H4100"\w* \w of|strong="H3027"\w* \w it|strong="H5921"\w*? +\c 6 +\p +\v 1 “\w Flee|strong="H5756"\w* \w for|strong="H3588"\w* \w safety|strong="H5756"\w*, \w you|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*, \w out|strong="H8259"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w middle|strong="H7130"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*! \w Blow|strong="H8628"\w* \w the|strong="H5921"\w* \w trumpet|strong="H7782"\w* \w in|strong="H5921"\w* \w Tekoa|strong="H8620"\w* \w and|strong="H1121"\w* \w raise|strong="H5375"\w* \w up|strong="H5375"\w* \w a|strong="H3068"\w* \w signal|strong="H4864"\w* \w on|strong="H5921"\w* Beth Haccherem, \w for|strong="H3588"\w* \w evil|strong="H7451"\w* \w looks|strong="H8259"\w* \w out|strong="H8259"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w north|strong="H6828"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w destruction|strong="H7667"\w*. +\v 2 I \w will|strong="H1323"\w* \w cut|strong="H1820"\w* \w off|strong="H1820"\w* \w the|strong="H6726"\w* beautiful \w and|strong="H1323"\w* \w delicate|strong="H6026"\w* one, \w the|strong="H6726"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Zion|strong="H6726"\w*. +\v 3 \w Shepherds|strong="H7462"\w* \w with|strong="H5921"\w* \w their|strong="H5921"\w* \w flocks|strong="H5739"\w* \w will|strong="H3027"\w* come \w to|strong="H5921"\w* \w her|strong="H5921"\w*. \w They|strong="H5921"\w* \w will|strong="H3027"\w* \w pitch|strong="H8628"\w* \w their|strong="H5921"\w* tents \w against|strong="H5921"\w* \w her|strong="H5921"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*. \w They|strong="H5921"\w* \w will|strong="H3027"\w* \w feed|strong="H7462"\w* everyone \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w place|strong="H3027"\w*.” +\p +\v 4 “\w Prepare|strong="H6942"\w* \w war|strong="H4421"\w* \w against|strong="H5921"\w* \w her|strong="H5921"\w*! \w Arise|strong="H6965"\w*! \w Let|strong="H5186"\w*’s \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w at|strong="H5921"\w* \w noon|strong="H6672"\w*. Woe \w to|strong="H5927"\w* \w us|strong="H5921"\w*! \w For|strong="H3588"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w declines|strong="H6437"\w*, \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w shadows|strong="H6752"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w evening|strong="H6153"\w* \w are|strong="H3117"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w*. +\v 5 \w Arise|strong="H6965"\w*! Let’s \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w by|strong="H6965"\w* \w night|strong="H3915"\w*, \w and|strong="H6965"\w* let’s \w destroy|strong="H7843"\w* \w her|strong="H7843"\w* palaces.” +\v 6 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* said, “\w Cut|strong="H3772"\w* \w down|strong="H3772"\w* \w trees|strong="H6097"\w*, \w and|strong="H3068"\w* \w cast|strong="H8210"\w* \w up|strong="H5921"\w* \w a|strong="H3068"\w* mound \w against|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*. \w This|strong="H1931"\w* \w is|strong="H3068"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w visited|strong="H6485"\w*. \w She|strong="H1931"\w* \w is|strong="H3068"\w* filled \w with|strong="H3068"\w* \w oppression|strong="H6233"\w* \w within|strong="H7130"\w* \w herself|strong="H1931"\w*. +\v 7 \w As|strong="H3651"\w* \w a|strong="H3068"\w* \w well|strong="H3651"\w* produces \w its|strong="H5921"\w* \w waters|strong="H4325"\w*, \w so|strong="H3651"\w* \w she|strong="H5921"\w* produces \w her|strong="H5921"\w* \w wickedness|strong="H7451"\w*. \w Violence|strong="H2555"\w* \w and|strong="H6440"\w* \w destruction|strong="H7701"\w* \w is|strong="H3651"\w* \w heard|strong="H8085"\w* \w in|strong="H5921"\w* \w her|strong="H5921"\w*. \w Sickness|strong="H2483"\w* \w and|strong="H6440"\w* \w wounds|strong="H4347"\w* \w are|strong="H4325"\w* \w continually|strong="H8548"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*. +\v 8 \w Be|strong="H3808"\w* \w instructed|strong="H3256"\w*, \w Jerusalem|strong="H3389"\w*, \w lest|strong="H6435"\w* \w my|strong="H7760"\w* \w soul|strong="H5315"\w* \w be|strong="H3808"\w* \w alienated|strong="H3363"\w* \w from|strong="H4480"\w* \w you|strong="H7760"\w*, \w lest|strong="H6435"\w* \w I|strong="H7760"\w* \w make|strong="H7760"\w* \w you|strong="H7760"\w* \w a|strong="H3068"\w* \w desolation|strong="H8077"\w*, \w an|strong="H7760"\w* \w uninhabited|strong="H8077"\w* land.” +\p +\v 9 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*, “\w They|strong="H3068"\w* \w will|strong="H3068"\w* \w thoroughly|strong="H5953"\w* \w glean|strong="H5953"\w* \w the|strong="H5921"\w* \w remnant|strong="H7611"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w like|strong="H3478"\w* \w a|strong="H3068"\w* \w vine|strong="H1612"\w*. \w Turn|strong="H7725"\w* \w again|strong="H7725"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w as|strong="H3068"\w* \w a|strong="H3068"\w* grape \w gatherer|strong="H1219"\w* \w into|strong="H7725"\w* \w the|strong="H5921"\w* \w baskets|strong="H5552"\w*.” +\p +\v 10 \w To|strong="H1696"\w* \w whom|strong="H4310"\w* \w should|strong="H3068"\w* \w I|strong="H2009"\w* \w speak|strong="H1696"\w* \w and|strong="H3068"\w* \w testify|strong="H5749"\w*, \w that|strong="H8085"\w* \w they|strong="H3068"\w* \w may|strong="H1961"\w* \w hear|strong="H8085"\w*? \w Behold|strong="H2009"\w*, \w their|strong="H3068"\w* \w ear|strong="H8085"\w* \w is|strong="H3068"\w* \w uncircumcised|strong="H6189"\w*, \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w can|strong="H4310"\w*’t \w listen|strong="H8085"\w*. \w Behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w has|strong="H3068"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w reproach|strong="H2781"\w* \w to|strong="H1696"\w* \w them|strong="H5921"\w*. \w They|strong="H3068"\w* \w have|strong="H1961"\w* \w no|strong="H3808"\w* \w delight|strong="H2654"\w* \w in|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 11 \w Therefore|strong="H5921"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w full|strong="H4392"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w wrath|strong="H2534"\w*. \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w weary|strong="H3811"\w* \w with|strong="H5973"\w* \w holding|strong="H3557"\w* \w it|strong="H5921"\w* \w in|strong="H5921"\w*. +\q1 “\w Pour|strong="H8210"\w* \w it|strong="H5921"\w* \w out|strong="H8210"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H5768"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w street|strong="H2351"\w*, +\q2 \w and|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w assembly|strong="H5475"\w* \w of|strong="H3068"\w* \w young|strong="H3117"\w* \w men|strong="H2205"\w* \w together|strong="H3162"\w*; +\q1 \w for|strong="H3588"\w* \w even|strong="H1571"\w* \w the|strong="H5921"\w* husband \w with|strong="H5973"\w* \w the|strong="H5921"\w* wife \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w taken|strong="H3920"\w*, +\q2 \w the|strong="H5921"\w* \w aged|strong="H2205"\w* \w with|strong="H5973"\w* \w him|strong="H5921"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w full|strong="H4392"\w* \w of|strong="H3068"\w* \w days|strong="H3117"\w*. +\q1 +\v 12 \w Their|strong="H3068"\w* \w houses|strong="H1004"\w* \w will|strong="H3068"\w* \w be|strong="H3027"\w* \w turned|strong="H5437"\w* \w to|strong="H3068"\w* others, +\q2 \w their|strong="H3068"\w* \w fields|strong="H7704"\w* \w and|strong="H3068"\w* \w their|strong="H3068"\w* wives \w together|strong="H3162"\w*; +\q1 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w stretch|strong="H5186"\w* \w out|strong="H5186"\w* \w my|strong="H3068"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5002"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1004"\w* \w the|strong="H5002"\w* \w land|strong="H7704"\w*, \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*.” +\q1 +\v 13 “\w For|strong="H3588"\w* \w from|strong="H5704"\w* \w their|strong="H3605"\w* \w least|strong="H6996"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w their|strong="H3605"\w* \w greatest|strong="H1419"\w*, \w everyone|strong="H3605"\w* \w is|strong="H3605"\w* \w given|strong="H1214"\w* \w to|strong="H5704"\w* \w covetousness|strong="H1215"\w*. +\q2 \w From|strong="H5704"\w* \w the|strong="H3605"\w* \w prophet|strong="H5030"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w*, \w everyone|strong="H3605"\w* \w deals|strong="H6213"\w* \w falsely|strong="H8267"\w*. +\q1 +\v 14 \w They|strong="H5921"\w* \w have|strong="H5971"\w* \w healed|strong="H7495"\w* \w also|strong="H5971"\w* \w the|strong="H5921"\w* \w hurt|strong="H7667"\w* \w of|strong="H5971"\w* \w my|strong="H5921"\w* \w people|strong="H5971"\w* \w superficially|strong="H7043"\w*, +\q2 saying, ‘\w Peace|strong="H7965"\w*, \w peace|strong="H7965"\w*!’ \w when|strong="H5921"\w* \w there|strong="H7965"\w* \w is|strong="H5971"\w* no \w peace|strong="H7965"\w*. +\q1 +\v 15 \w Were|strong="H6485"\w* \w they|strong="H3588"\w* \w ashamed|strong="H3637"\w* \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3068"\w* \w committed|strong="H6213"\w* \w abomination|strong="H8441"\w*? +\q2 \w No|strong="H3808"\w*, \w they|strong="H3588"\w* \w were|strong="H6485"\w* \w not|strong="H3808"\w* \w at|strong="H3068"\w* \w all|strong="H3045"\w* \w ashamed|strong="H3637"\w*, \w neither|strong="H3808"\w* \w could|strong="H1571"\w* \w they|strong="H3588"\w* \w blush|strong="H3637"\w*. +\q1 \w Therefore|strong="H3651"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w fall|strong="H5307"\w* \w among|strong="H3808"\w* \w those|strong="H6213"\w* \w who|strong="H3068"\w* \w fall|strong="H5307"\w*. +\q2 \w When|strong="H3588"\w* \w I|strong="H3588"\w* \w visit|strong="H6485"\w* \w them|strong="H6213"\w*, \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w cast|strong="H5307"\w* \w down|strong="H5307"\w*,” says \w Yahweh|strong="H3068"\w*. +\p +\v 16 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w Stand|strong="H5975"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w ways|strong="H1870"\w* \w and|strong="H3068"\w* \w see|strong="H7200"\w*, \w and|strong="H3068"\w* \w ask|strong="H7592"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w old|strong="H5769"\w* \w paths|strong="H5410"\w*, ‘\w Where|strong="H5921"\w* \w is|strong="H3068"\w* \w the|strong="H5921"\w* \w good|strong="H2896"\w* \w way|strong="H1870"\w*?’ \w and|strong="H3068"\w* \w walk|strong="H3212"\w* \w in|strong="H5921"\w* \w it|strong="H5921"\w*, \w and|strong="H3068"\w* \w you|strong="H5921"\w* \w will|strong="H3068"\w* \w find|strong="H4672"\w* \w rest|strong="H4771"\w* \w for|strong="H5921"\w* \w your|strong="H3068"\w* \w souls|strong="H5315"\w*. \w But|strong="H3808"\w* \w they|strong="H3068"\w* said, ‘\w We|strong="H5315"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w walk|strong="H3212"\w* \w in|strong="H5921"\w* \w it|strong="H5921"\w*.’ +\v 17 \w I|strong="H5921"\w* \w set|strong="H6965"\w* \w watchmen|strong="H6822"\w* \w over|strong="H5921"\w* \w you|strong="H5921"\w*, \w saying|strong="H6963"\w*, ‘\w Listen|strong="H7181"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H5921"\w* \w trumpet|strong="H7782"\w*!’ \w But|strong="H3808"\w* \w they|strong="H3808"\w* said, ‘We \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w listen|strong="H7181"\w*!’ +\v 18 \w Therefore|strong="H3651"\w* \w hear|strong="H8085"\w*, \w you|strong="H3045"\w* \w nations|strong="H1471"\w*, \w and|strong="H8085"\w* \w know|strong="H3045"\w*, \w congregation|strong="H5712"\w*, \w what|strong="H3045"\w* \w is|strong="H3651"\w* among \w them|strong="H8085"\w*. +\v 19 \w Hear|strong="H8085"\w*, earth! \w Behold|strong="H2009"\w*, \w I|strong="H3588"\w* \w will|strong="H5971"\w* \w bring|strong="H7451"\w* \w evil|strong="H7451"\w* \w on|strong="H5921"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*, \w even|strong="H3588"\w* \w the|strong="H5921"\w* \w fruit|strong="H6529"\w* \w of|strong="H1697"\w* \w their|strong="H8085"\w* \w thoughts|strong="H4284"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H5971"\w* \w not|strong="H3808"\w* \w listened|strong="H8085"\w* \w to|strong="H5921"\w* \w my|strong="H8085"\w* \w words|strong="H1697"\w*; \w and|strong="H5971"\w* \w as|strong="H1697"\w* \w for|strong="H3588"\w* \w my|strong="H8085"\w* \w law|strong="H8451"\w*, \w they|strong="H3588"\w* \w have|strong="H5971"\w* \w rejected|strong="H3988"\w* \w it|strong="H5921"\w*. +\v 20 \w To|strong="H2896"\w* \w what|strong="H4100"\w* \w purpose|strong="H2088"\w* \w does|strong="H4100"\w* \w frankincense|strong="H3828"\w* \w from|strong="H2896"\w* \w Sheba|strong="H7614"\w* come \w to|strong="H2896"\w* \w me|strong="H3808"\w*, \w and|strong="H5930"\w* \w the|strong="H3808"\w* \w sweet|strong="H6149"\w* \w cane|strong="H7070"\w* \w from|strong="H2896"\w* \w a|strong="H3068"\w* \w far|strong="H4801"\w* country? \w Your|strong="H3808"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w are|strong="H4100"\w* \w not|strong="H3808"\w* \w acceptable|strong="H7522"\w*, \w and|strong="H5930"\w* \w your|strong="H3808"\w* \w sacrifices|strong="H2077"\w* \w are|strong="H4100"\w* \w not|strong="H3808"\w* \w pleasing|strong="H2896"\w* \w to|strong="H2896"\w* \w me|strong="H3808"\w*.” +\p +\v 21 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w lay|strong="H5414"\w* \w stumbling|strong="H4383"\w* \w blocks|strong="H4383"\w* \w before|strong="H5971"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*. \w The|strong="H5414"\w* fathers \w and|strong="H1121"\w* \w the|strong="H5414"\w* \w sons|strong="H1121"\w* \w together|strong="H3162"\w* \w will|strong="H3068"\w* \w stumble|strong="H3782"\w* \w against|strong="H3068"\w* \w them|strong="H5414"\w*. \w The|strong="H5414"\w* \w neighbor|strong="H7453"\w* \w and|strong="H1121"\w* \w his|strong="H5414"\w* \w friend|strong="H7453"\w* \w will|strong="H3068"\w* perish.” +\v 22 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w Behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w people|strong="H5971"\w* comes \w from|strong="H1471"\w* \w the|strong="H3541"\w* \w north|strong="H6828"\w* country. \w A|strong="H3068"\w* \w great|strong="H1419"\w* \w nation|strong="H1471"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w stirred|strong="H5782"\w* \w up|strong="H5782"\w* \w from|strong="H1471"\w* \w the|strong="H3541"\w* uttermost \w parts|strong="H3411"\w* \w of|strong="H3068"\w* \w the|strong="H3541"\w* earth. +\v 23 \w They|strong="H3808"\w* \w take|strong="H2388"\w* \w hold|strong="H2388"\w* \w of|strong="H1323"\w* \w bow|strong="H7198"\w* \w and|strong="H6963"\w* \w spear|strong="H3591"\w*. \w They|strong="H3808"\w* \w are|strong="H6726"\w* cruel, \w and|strong="H6963"\w* \w have|strong="H7355"\w* \w no|strong="H3808"\w* \w mercy|strong="H7355"\w*. \w Their|strong="H5921"\w* \w voice|strong="H6963"\w* \w roars|strong="H1993"\w* \w like|strong="H1993"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*, \w and|strong="H6963"\w* \w they|strong="H3808"\w* \w ride|strong="H7392"\w* \w on|strong="H5921"\w* \w horses|strong="H5483"\w*, everyone \w set|strong="H6186"\w* \w in|strong="H5921"\w* \w array|strong="H6186"\w*, \w as|strong="H1323"\w* \w a|strong="H3068"\w* man \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w battle|strong="H4421"\w*, \w against|strong="H5921"\w* \w you|strong="H5921"\w*, \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Zion|strong="H6726"\w*.” +\p +\v 24 \w We|strong="H8085"\w* \w have|strong="H3027"\w* \w heard|strong="H8085"\w* its \w report|strong="H8089"\w*. \w Our|strong="H8085"\w* \w hands|strong="H3027"\w* \w become|strong="H3205"\w* \w feeble|strong="H7503"\w*. \w Anguish|strong="H6869"\w* \w has|strong="H3027"\w* \w taken|strong="H2388"\w* \w hold|strong="H2388"\w* \w of|strong="H3027"\w* \w us|strong="H8085"\w*, \w and|strong="H3027"\w* pains \w as|strong="H2388"\w* \w of|strong="H3027"\w* \w a|strong="H3068"\w* \w woman|strong="H3205"\w* \w in|strong="H8085"\w* \w labor|strong="H3205"\w*. +\v 25 Don’t \w go|strong="H3212"\w* \w out|strong="H3318"\w* \w into|strong="H3212"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w* \w or|strong="H7704"\w* \w walk|strong="H3212"\w* \w by|strong="H1870"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w sword|strong="H2719"\w* \w of|strong="H1870"\w* \w the|strong="H3588"\w* enemy \w and|strong="H3212"\w* \w terror|strong="H4032"\w* \w are|strong="H1870"\w* \w on|strong="H1870"\w* \w every|strong="H5439"\w* \w side|strong="H5439"\w*. +\v 26 \w Daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w my|strong="H5921"\w* \w people|strong="H5971"\w*, clothe \w yourself|strong="H6213"\w* \w with|strong="H6213"\w* \w sackcloth|strong="H8242"\w*, \w and|strong="H5971"\w* \w wallow|strong="H6428"\w* \w in|strong="H5921"\w* ashes! \w Mourn|strong="H5921"\w*, \w as|strong="H6213"\w* \w for|strong="H3588"\w* \w an|strong="H6213"\w* \w only|strong="H3173"\w* \w son|strong="H3173"\w*, \w most|strong="H8563"\w* \w bitter|strong="H8563"\w* \w lamentation|strong="H4553"\w*, \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w destroyer|strong="H7703"\w* \w will|strong="H5971"\w* \w suddenly|strong="H6597"\w* \w come|strong="H5971"\w* \w on|strong="H5921"\w* \w us|strong="H5921"\w*. +\p +\v 27 “\w I|strong="H5414"\w* \w have|strong="H5971"\w* \w made|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w tester|strong="H4013"\w* \w of|strong="H1870"\w* metals \w and|strong="H5971"\w* \w a|strong="H3068"\w* \w fortress|strong="H4013"\w* \w among|strong="H5971"\w* \w my|strong="H5414"\w* \w people|strong="H5971"\w*, \w that|strong="H3045"\w* \w you|strong="H5414"\w* \w may|strong="H5971"\w* \w know|strong="H3045"\w* \w and|strong="H5971"\w* try \w their|strong="H5414"\w* \w way|strong="H1870"\w*. +\v 28 \w They|strong="H1992"\w* \w are|strong="H1992"\w* \w all|strong="H3605"\w* \w grievous|strong="H5493"\w* \w rebels|strong="H5637"\w*, \w going|strong="H1980"\w* \w around|strong="H1980"\w* \w to|strong="H1980"\w* slander. \w They|strong="H1992"\w* \w are|strong="H1992"\w* \w bronze|strong="H5178"\w* \w and|strong="H1980"\w* \w iron|strong="H1270"\w*. \w All|strong="H3605"\w* \w of|strong="H3605"\w* \w them|strong="H1992"\w* deal \w corruptly|strong="H7843"\w*. +\v 29 \w The|strong="H3808"\w* \w bellows|strong="H4647"\w* \w blow|strong="H2787"\w* \w fiercely|strong="H2787"\w*. \w The|strong="H3808"\w* \w lead|strong="H5777"\w* \w is|strong="H7451"\w* consumed \w in|strong="H3808"\w* \w the|strong="H3808"\w* fire. \w In|strong="H3808"\w* \w vain|strong="H7723"\w* \w they|strong="H3808"\w* go \w on|strong="H7451"\w* \w refining|strong="H6884"\w*, \w for|strong="H7451"\w* \w the|strong="H3808"\w* \w wicked|strong="H7451"\w* \w are|strong="H4647"\w* \w not|strong="H3808"\w* plucked \w away|strong="H5423"\w*. +\v 30 \w Men|strong="H7121"\w* \w will|strong="H3068"\w* \w call|strong="H7121"\w* \w them|strong="H7121"\w* \w rejected|strong="H3988"\w* \w silver|strong="H3701"\w*, \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w rejected|strong="H3988"\w* \w them|strong="H7121"\w*.” +\c 7 +\p +\v 1 \w The|strong="H3068"\w* \w word|strong="H1697"\w* \w that|strong="H3068"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w* \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Stand|strong="H5975"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3063"\w* \w proclaim|strong="H7121"\w* \w this|strong="H2088"\w* \w word|strong="H1697"\w* \w there|strong="H8033"\w*, \w and|strong="H3063"\w* \w say|strong="H1697"\w*, ‘\w Hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w*, \w who|strong="H3605"\w* \w enter|strong="H5975"\w* \w in|strong="H3068"\w* \w at|strong="H3068"\w* \w these|strong="H2088"\w* \w gates|strong="H8179"\w* \w to|strong="H3068"\w* \w worship|strong="H7812"\w* \w Yahweh|strong="H3068"\w*.’” +\p +\v 3 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*, “\w Amend|strong="H3190"\w* \w your|strong="H3068"\w* \w ways|strong="H1870"\w* \w and|strong="H3478"\w* \w your|strong="H3068"\w* \w doings|strong="H4611"\w*, \w and|strong="H3478"\w* \w I|strong="H3541"\w* \w will|strong="H3068"\w* cause \w you|strong="H3190"\w* \w to|strong="H3478"\w* \w dwell|strong="H7931"\w* \w in|strong="H3478"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*. +\v 4 Don’t trust \w in|strong="H3068"\w* \w lying|strong="H8267"\w* \w words|strong="H1697"\w*, \w saying|strong="H1697"\w*, ‘\w Yahweh|strong="H3068"\w*’s \w temple|strong="H1964"\w*, \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1964"\w*, \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1964"\w*, \w are|strong="H1992"\w* \w these|strong="H1992"\w*.’ +\v 5 \w For|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w thoroughly|strong="H3190"\w* \w amend|strong="H3190"\w* \w your|strong="H6213"\w* \w ways|strong="H1870"\w* \w and|strong="H4941"\w* \w your|strong="H6213"\w* \w doings|strong="H4611"\w*, \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w thoroughly|strong="H3190"\w* \w execute|strong="H6213"\w* \w justice|strong="H4941"\w* \w between|strong="H4941"\w* \w a|strong="H3068"\w* man \w and|strong="H4941"\w* \w his|strong="H6213"\w* \w neighbor|strong="H7453"\w*; +\v 6 if \w you|strong="H3808"\w* don’t \w oppress|strong="H6231"\w* \w the|strong="H3808"\w* \w foreigner|strong="H1616"\w*, \w the|strong="H3808"\w* \w fatherless|strong="H3490"\w*, \w and|strong="H3212"\w* \w the|strong="H3808"\w* widow, \w and|strong="H3212"\w* don’t \w shed|strong="H8210"\w* \w innocent|strong="H5355"\w* \w blood|strong="H1818"\w* \w in|strong="H3212"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*, \w and|strong="H3212"\w* don’t \w walk|strong="H3212"\w* after \w other|strong="H2088"\w* gods \w to|strong="H3212"\w* \w your|strong="H3808"\w* own \w hurt|strong="H7451"\w*, +\v 7 \w then|strong="H2088"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w cause|strong="H5414"\w* \w you|strong="H5414"\w* \w to|strong="H5704"\w* \w dwell|strong="H7931"\w* \w in|strong="H7931"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*, \w in|strong="H7931"\w* \w the|strong="H5414"\w* \w land|strong="H4725"\w* \w that|strong="H5414"\w* \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w to|strong="H5704"\w* \w your|strong="H5414"\w* fathers, \w from|strong="H4480"\w* \w of|strong="H4480"\w* \w old|strong="H5769"\w* \w even|strong="H5704"\w* \w forever|strong="H5769"\w* \w more|strong="H4480"\w*. +\v 8 \w Behold|strong="H2009"\w*, \w you|strong="H5921"\w* trust \w in|strong="H5921"\w* \w lying|strong="H8267"\w* \w words|strong="H1697"\w* \w that|strong="H1697"\w* can’t \w profit|strong="H3276"\w*. +\v 9 \w Will|strong="H3808"\w* \w you|strong="H3045"\w* \w steal|strong="H1589"\w*, \w murder|strong="H7523"\w*, \w commit|strong="H5003"\w* \w adultery|strong="H5003"\w*, \w swear|strong="H7650"\w* \w falsely|strong="H8267"\w*, \w burn|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H1980"\w* \w Baal|strong="H1168"\w*, \w and|strong="H1980"\w* \w walk|strong="H1980"\w* \w after|strong="H1980"\w* other \w gods|strong="H1980"\w* \w that|strong="H3045"\w* \w you|strong="H3045"\w* \w have|strong="H3045"\w* \w not|strong="H3808"\w* \w known|strong="H3045"\w*, +\v 10 \w then|strong="H2088"\w* come \w and|strong="H1004"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w in|strong="H5921"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w*, \w which|strong="H1004"\w* \w is|strong="H2088"\w* \w called|strong="H7121"\w* \w by|strong="H5921"\w* \w my|strong="H3605"\w* \w name|strong="H8034"\w*, \w and|strong="H1004"\w* say, ‘\w We|strong="H6213"\w* \w are|strong="H1004"\w* \w delivered|strong="H5337"\w*,’ \w that|strong="H3605"\w* \w you|strong="H6440"\w* \w may|strong="H6213"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H2088"\w* \w abominations|strong="H8441"\w*? +\v 11 \w Has|strong="H3068"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w*, \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w called|strong="H7121"\w* \w by|strong="H5921"\w* \w my|strong="H3068"\w* \w name|strong="H8034"\w*, \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w den|strong="H4631"\w* \w of|strong="H1004"\w* \w robbers|strong="H6530"\w* \w in|strong="H5921"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w*? \w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w myself|strong="H1571"\w* \w have|strong="H1961"\w* \w seen|strong="H7200"\w* \w it|strong="H7121"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 12 “\w But|strong="H3588"\w* \w go|strong="H3212"\w* \w now|strong="H4994"\w* \w to|strong="H3478"\w* \w my|strong="H7200"\w* \w place|strong="H4725"\w* \w which|strong="H5971"\w* \w was|strong="H8034"\w* \w in|strong="H3478"\w* \w Shiloh|strong="H7887"\w*, \w where|strong="H8033"\w* \w I|strong="H3588"\w* \w caused|strong="H6213"\w* \w my|strong="H7200"\w* \w name|strong="H8034"\w* \w to|strong="H3478"\w* \w dwell|strong="H7931"\w* \w at|strong="H3478"\w* \w the|strong="H6440"\w* \w first|strong="H7223"\w*, \w and|strong="H3478"\w* \w see|strong="H7200"\w* \w what|strong="H7451"\w* \w I|strong="H3588"\w* \w did|strong="H6213"\w* \w to|strong="H3478"\w* \w it|strong="H3588"\w* \w for|strong="H3588"\w* \w the|strong="H6440"\w* \w wickedness|strong="H7451"\w* \w of|strong="H6440"\w* \w my|strong="H7200"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*. +\v 13 \w Now|strong="H6258"\w*, \w because|strong="H3282"\w* \w you|strong="H3605"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H1696"\w* \w works|strong="H4639"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w and|strong="H3068"\w* \w I|strong="H6258"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3605"\w*, \w rising|strong="H7925"\w* \w up|strong="H7925"\w* \w early|strong="H7925"\w* \w and|strong="H3068"\w* \w speaking|strong="H1696"\w*, \w but|strong="H3808"\w* \w you|strong="H3605"\w* didn’t \w hear|strong="H8085"\w*; \w and|strong="H3068"\w* \w I|strong="H6258"\w* \w called|strong="H7121"\w* \w you|strong="H3605"\w*, \w but|strong="H3808"\w* \w you|strong="H3605"\w* didn’t \w answer|strong="H6030"\w*; +\v 14 \w therefore|strong="H5921"\w* \w I|strong="H5414"\w* \w will|strong="H1004"\w* \w do|strong="H6213"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w which|strong="H1004"\w* \w is|strong="H8034"\w* \w called|strong="H7121"\w* \w by|strong="H5921"\w* \w my|strong="H5414"\w* \w name|strong="H8034"\w*, \w in|strong="H5921"\w* \w which|strong="H1004"\w* \w you|strong="H5414"\w* trust, \w and|strong="H1004"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w place|strong="H4725"\w* \w which|strong="H1004"\w* \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w to|strong="H5921"\w* \w you|strong="H5414"\w* \w and|strong="H1004"\w* \w to|strong="H5921"\w* \w your|strong="H5414"\w* fathers, \w as|strong="H6213"\w* \w I|strong="H5414"\w* \w did|strong="H6213"\w* \w to|strong="H5921"\w* \w Shiloh|strong="H7887"\w*. +\v 15 \w I|strong="H5921"\w* \w will|strong="H2233"\w* \w cast|strong="H7993"\w* \w you|strong="H6440"\w* \w out|strong="H7993"\w* \w of|strong="H6440"\w* \w my|strong="H3605"\w* \w sight|strong="H6440"\w*, \w as|strong="H6440"\w* \w I|strong="H5921"\w* \w have|strong="H3605"\w* \w cast|strong="H7993"\w* \w out|strong="H7993"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* brothers, \w even|strong="H5921"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w offspring|strong="H2233"\w*\f + \fr 7:15 \ft or, seed\f* \w of|strong="H6440"\w* Ephraim. +\p +\v 16 “\w Therefore|strong="H3588"\w* don’t \w pray|strong="H6419"\w* \w for|strong="H3588"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*. Don’t \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w a|strong="H3068"\w* \w cry|strong="H7440"\w* \w or|strong="H8085"\w* \w prayer|strong="H8605"\w* \w for|strong="H3588"\w* \w them|strong="H5375"\w* \w or|strong="H8085"\w* \w make|strong="H8085"\w* \w intercession|strong="H6293"\w* \w to|strong="H8085"\w* \w me|strong="H1157"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H5971"\w* \w not|strong="H2088"\w* \w hear|strong="H8085"\w* \w you|strong="H3588"\w*. +\v 17 Don’t \w you|strong="H6213"\w* \w see|strong="H7200"\w* \w what|strong="H4100"\w* \w they|strong="H1992"\w* \w do|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H7200"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w in|strong="H6213"\w* \w the|strong="H7200"\w* \w streets|strong="H2351"\w* \w of|strong="H5892"\w* \w Jerusalem|strong="H3389"\w*? +\v 18 \w The|strong="H6213"\w* \w children|strong="H1121"\w* \w gather|strong="H3950"\w* \w wood|strong="H6086"\w*, \w and|strong="H1121"\w* \w the|strong="H6213"\w* fathers \w kindle|strong="H1197"\w* \w the|strong="H6213"\w* fire, \w and|strong="H1121"\w* \w the|strong="H6213"\w* women \w knead|strong="H3888"\w* \w the|strong="H6213"\w* \w dough|strong="H1217"\w*, \w to|strong="H6213"\w* \w make|strong="H6213"\w* \w cakes|strong="H3561"\w* \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w queen|strong="H4446"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w sky|strong="H8064"\w*, \w and|strong="H1121"\w* \w to|strong="H6213"\w* \w pour|strong="H5258"\w* \w out|strong="H5258"\w* \w drink|strong="H5262"\w* \w offerings|strong="H5262"\w* \w to|strong="H6213"\w* other gods, \w that|strong="H4616"\w* \w they|strong="H6213"\w* \w may|strong="H6213"\w* \w provoke|strong="H3707"\w* \w me|strong="H6213"\w* \w to|strong="H6213"\w* \w anger|strong="H3707"\w*. +\v 19 \w Do|strong="H3068"\w* \w they|strong="H1992"\w* \w provoke|strong="H3707"\w* \w me|strong="H6440"\w* \w to|strong="H3068"\w* \w anger|strong="H3707"\w*?” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. “Don’t \w they|strong="H1992"\w* \w provoke|strong="H3707"\w* \w themselves|strong="H1992"\w*, \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w confusion|strong="H1322"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w own|strong="H6440"\w* \w faces|strong="H6440"\w*?” +\p +\v 20 \w Therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Behold|strong="H2009"\w*, \w my|strong="H5921"\w* \w anger|strong="H2534"\w* \w and|strong="H6086"\w* \w my|strong="H5921"\w* \w wrath|strong="H2534"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w poured|strong="H5413"\w* \w out|strong="H5413"\w* \w on|strong="H5921"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*, \w on|strong="H5921"\w* \w man|strong="H2088"\w*, \w on|strong="H5921"\w* animal, \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w trees|strong="H6086"\w* \w of|strong="H7704"\w* \w the|strong="H5921"\w* \w field|strong="H7704"\w*, \w and|strong="H6086"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w fruit|strong="H6529"\w* \w of|strong="H7704"\w* \w the|strong="H5921"\w* \w ground|strong="H7704"\w*; \w and|strong="H6086"\w* \w it|strong="H5921"\w* \w will|strong="H3808"\w* \w burn|strong="H1197"\w* \w and|strong="H6086"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w quenched|strong="H3518"\w*.” +\p +\v 21 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*: “\w Add|strong="H5595"\w* \w your|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w to|strong="H3478"\w* \w your|strong="H3068"\w* \w sacrifices|strong="H2077"\w* \w and|strong="H3478"\w* eat \w meat|strong="H1320"\w*. +\v 22 \w For|strong="H3588"\w* \w I|strong="H3588"\w* didn’t \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w your|strong="H5921"\w* fathers \w or|strong="H3808"\w* \w command|strong="H6680"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w brought|strong="H3318"\w* \w them|strong="H5921"\w* \w out|strong="H3318"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* land \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w* \w concerning|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w or|strong="H3808"\w* \w sacrifices|strong="H2077"\w*; +\v 23 \w but|strong="H3588"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w I|strong="H3588"\w* \w commanded|strong="H6680"\w* \w them|strong="H6680"\w*, \w saying|strong="H1697"\w*, ‘\w Listen|strong="H8085"\w* \w to|strong="H1980"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*, \w and|strong="H1980"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w your|strong="H3605"\w* \w God|strong="H3190"\w*, \w and|strong="H1980"\w* \w you|strong="H3588"\w* \w shall|strong="H5971"\w* \w be|strong="H1961"\w* \w my|strong="H8085"\w* \w people|strong="H5971"\w*. \w Walk|strong="H1980"\w* \w in|strong="H1980"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w command|strong="H6680"\w* \w you|strong="H3588"\w*, \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w well|strong="H3190"\w* \w with|strong="H1980"\w* \w you|strong="H3588"\w*.’ +\v 24 \w But|strong="H3808"\w* \w they|strong="H3808"\w* didn’t \w listen|strong="H8085"\w* \w or|strong="H3808"\w* \w turn|strong="H5186"\w* \w their|strong="H6440"\w* \w ear|strong="H8085"\w*, \w but|strong="H3808"\w* \w walked|strong="H3212"\w* \w in|strong="H8085"\w* \w their|strong="H6440"\w* \w own|strong="H1961"\w* \w counsels|strong="H4156"\w* \w and|strong="H3212"\w* \w in|strong="H8085"\w* \w the|strong="H6440"\w* \w stubbornness|strong="H8307"\w* \w of|strong="H6440"\w* \w their|strong="H6440"\w* \w evil|strong="H7451"\w* \w heart|strong="H3820"\w*, \w and|strong="H3212"\w* \w went|strong="H3212"\w* backward, \w and|strong="H3212"\w* \w not|strong="H3808"\w* \w forward|strong="H6440"\w*. +\v 25 \w Since|strong="H4480"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H3605"\w* \w your|strong="H3605"\w* fathers \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* land \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, \w I|strong="H3117"\w* \w have|strong="H5030"\w* \w sent|strong="H7971"\w* \w to|strong="H5704"\w* \w you|strong="H3605"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w servants|strong="H5650"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w*, \w daily|strong="H3117"\w* \w rising|strong="H7925"\w* \w up|strong="H7925"\w* \w early|strong="H7925"\w* \w and|strong="H7971"\w* \w sending|strong="H7971"\w* \w them|strong="H7971"\w*. +\v 26 \w Yet|strong="H3808"\w* \w they|strong="H3808"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H8085"\w* \w me|strong="H3808"\w* \w or|strong="H3808"\w* \w incline|strong="H5186"\w* \w their|strong="H8085"\w* \w ear|strong="H8085"\w*, \w but|strong="H3808"\w* \w made|strong="H7185"\w* \w their|strong="H8085"\w* \w neck|strong="H6203"\w* \w stiff|strong="H7185"\w*. \w They|strong="H3808"\w* \w did|strong="H3808"\w* \w worse|strong="H7489"\w* \w than|strong="H3808"\w* \w their|strong="H8085"\w* fathers. +\p +\v 27 “\w You|strong="H3605"\w* \w shall|strong="H3808"\w* \w speak|strong="H1696"\w* \w all|strong="H3605"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w* \w to|strong="H1696"\w* \w them|strong="H7121"\w*, \w but|strong="H3808"\w* \w they|strong="H3808"\w* \w will|strong="H1697"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H1696"\w* \w you|strong="H3605"\w*. \w You|strong="H3605"\w* \w shall|strong="H3808"\w* \w also|strong="H8085"\w* \w call|strong="H7121"\w* \w to|strong="H1696"\w* \w them|strong="H7121"\w*, \w but|strong="H3808"\w* \w they|strong="H3808"\w* \w will|strong="H1697"\w* \w not|strong="H3808"\w* \w answer|strong="H6030"\w* \w you|strong="H3605"\w*. +\v 28 \w You|strong="H3947"\w* \w shall|strong="H3068"\w* \w tell|strong="H8085"\w* \w them|strong="H3947"\w*, ‘\w This|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H8085"\w* \w nation|strong="H1471"\w* \w that|strong="H8085"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w listened|strong="H8085"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w*, \w nor|strong="H3808"\w* \w received|strong="H3947"\w* \w instruction|strong="H4148"\w*. \w Truth|strong="H3808"\w* \w has|strong="H3068"\w* perished, \w and|strong="H3068"\w* \w is|strong="H3068"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w their|strong="H3068"\w* \w mouth|strong="H6310"\w*.’ +\v 29 \w Cut|strong="H1494"\w* \w off|strong="H5921"\w* \w your|strong="H3068"\w* \w hair|strong="H5145"\w*, \w and|strong="H3068"\w* \w throw|strong="H7993"\w* \w it|strong="H5921"\w* \w away|strong="H5375"\w*, \w and|strong="H3068"\w* \w take|strong="H5375"\w* \w up|strong="H5375"\w* \w a|strong="H3068"\w* \w lamentation|strong="H7015"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w bare|strong="H5375"\w* \w heights|strong="H8205"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w rejected|strong="H3988"\w* \w and|strong="H3068"\w* \w forsaken|strong="H5203"\w* \w the|strong="H5921"\w* \w generation|strong="H1755"\w* \w of|strong="H3068"\w* \w his|strong="H5375"\w* \w wrath|strong="H5678"\w*. +\p +\v 30 “\w For|strong="H3588"\w* \w the|strong="H5002"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H5921"\w* \w my|strong="H3068"\w* \w sight|strong="H5869"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. “\w They|strong="H3588"\w* \w have|strong="H3068"\w* \w set|strong="H7760"\w* \w their|strong="H3068"\w* \w abominations|strong="H8251"\w* \w in|strong="H5921"\w* \w the|strong="H5002"\w* \w house|strong="H1004"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w called|strong="H7121"\w* \w by|strong="H5921"\w* \w my|strong="H3068"\w* \w name|strong="H8034"\w*, \w to|strong="H3068"\w* \w defile|strong="H2930"\w* \w it|strong="H7760"\w*. +\v 31 \w They|strong="H3808"\w* \w have|strong="H1121"\w* \w built|strong="H1129"\w* \w the|strong="H5921"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w of|strong="H1121"\w* \w Topheth|strong="H8612"\w*, \w which|strong="H1116"\w* \w is|strong="H3820"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w valley|strong="H1516"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hinnom|strong="H2011"\w*, \w to|strong="H5927"\w* \w burn|strong="H8313"\w* \w their|strong="H8313"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w their|strong="H8313"\w* \w daughters|strong="H1323"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* fire, \w which|strong="H1116"\w* \w I|strong="H5921"\w* didn’t \w command|strong="H6680"\w*, \w nor|strong="H3808"\w* \w did|strong="H3808"\w* \w it|strong="H5921"\w* \w come|strong="H5927"\w* \w into|strong="H5927"\w* \w my|strong="H5921"\w* \w mind|strong="H3820"\w*. +\v 32 \w Therefore|strong="H3651"\w* \w behold|strong="H2009"\w*, \w the|strong="H5002"\w* \w days|strong="H3117"\w* \w come|strong="H5750"\w*”, \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w that|strong="H3588"\w* \w it|strong="H3588"\w* \w will|strong="H3068"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w be|strong="H3808"\w* called ‘\w Topheth|strong="H8612"\w*’ \w or|strong="H3808"\w* ‘\w The|strong="H5002"\w* \w valley|strong="H1516"\w* \w of|strong="H1121"\w* \w the|strong="H5002"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hinnom|strong="H2011"\w*’, \w but|strong="H3588"\w* ‘\w The|strong="H5002"\w* \w valley|strong="H1516"\w* \w of|strong="H1121"\w* \w Slaughter|strong="H2028"\w*’; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w bury|strong="H6912"\w* \w in|strong="H3068"\w* \w Topheth|strong="H8612"\w* \w until|strong="H3588"\w* \w there|strong="H2009"\w* \w is|strong="H3068"\w* \w no|strong="H3808"\w* \w place|strong="H4725"\w* \w to|strong="H3068"\w* \w bury|strong="H6912"\w*. +\v 33 \w The|strong="H1961"\w* \w dead|strong="H5038"\w* \w bodies|strong="H5038"\w* \w of|strong="H5971"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w food|strong="H3978"\w* \w for|strong="H5971"\w* \w the|strong="H1961"\w* \w birds|strong="H5775"\w* \w of|strong="H5971"\w* \w the|strong="H1961"\w* \w sky|strong="H8064"\w*, \w and|strong="H8064"\w* \w for|strong="H5971"\w* \w the|strong="H1961"\w* \w animals|strong="H1961"\w* \w of|strong="H5971"\w* \w the|strong="H1961"\w* \w earth|strong="H8064"\w*. \w No|strong="H1961"\w* \w one|strong="H2088"\w* \w will|strong="H1961"\w* \w frighten|strong="H2729"\w* \w them|strong="H1961"\w* \w away|strong="H2729"\w*. +\v 34 \w Then|strong="H1961"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w cause|strong="H1961"\w* \w to|strong="H1961"\w* \w cease|strong="H7673"\w* \w from|strong="H1961"\w* \w the|strong="H3588"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w from|strong="H1961"\w* \w the|strong="H3588"\w* \w streets|strong="H2351"\w* \w of|strong="H5892"\w* \w Jerusalem|strong="H3389"\w* \w the|strong="H3588"\w* \w voice|strong="H6963"\w* \w of|strong="H5892"\w* \w mirth|strong="H8057"\w* \w and|strong="H3063"\w* \w the|strong="H3588"\w* \w voice|strong="H6963"\w* \w of|strong="H5892"\w* \w gladness|strong="H8057"\w*, \w the|strong="H3588"\w* \w voice|strong="H6963"\w* \w of|strong="H5892"\w* \w the|strong="H3588"\w* \w bridegroom|strong="H2860"\w* \w and|strong="H3063"\w* \w the|strong="H3588"\w* \w voice|strong="H6963"\w* \w of|strong="H5892"\w* \w the|strong="H3588"\w* \w bride|strong="H3618"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* land \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w waste|strong="H2723"\w*.” +\c 8 +\p +\v 1 “\w At|strong="H3427"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w they|strong="H3068"\w* \w will|strong="H3068"\w* \w bring|strong="H3318"\w* \w the|strong="H5002"\w* \w bones|strong="H6106"\w* \w of|strong="H4428"\w* \w the|strong="H5002"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w the|strong="H5002"\w* \w bones|strong="H6106"\w* \w of|strong="H4428"\w* \w his|strong="H3068"\w* \w princes|strong="H8269"\w*, \w the|strong="H5002"\w* \w bones|strong="H6106"\w* \w of|strong="H4428"\w* \w the|strong="H5002"\w* \w priests|strong="H3548"\w*, \w the|strong="H5002"\w* \w bones|strong="H6106"\w* \w of|strong="H4428"\w* \w the|strong="H5002"\w* \w prophets|strong="H5030"\w*, \w and|strong="H3063"\w* \w the|strong="H5002"\w* \w bones|strong="H6106"\w* \w of|strong="H4428"\w* \w the|strong="H5002"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*, \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w their|strong="H3068"\w* \w graves|strong="H6913"\w*. +\v 2 \w They|strong="H3808"\w* \w will|strong="H1961"\w* \w spread|strong="H7849"\w* \w them|strong="H5921"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w*, \w the|strong="H3605"\w* \w moon|strong="H3394"\w*, \w and|strong="H1980"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w which|strong="H6635"\w* \w they|strong="H3808"\w* \w have|strong="H1961"\w* loved, \w which|strong="H6635"\w* \w they|strong="H3808"\w* \w have|strong="H1961"\w* \w served|strong="H5647"\w*, \w after|strong="H5921"\w* \w which|strong="H6635"\w* \w they|strong="H3808"\w* \w have|strong="H1961"\w* \w walked|strong="H1980"\w*, \w which|strong="H6635"\w* \w they|strong="H3808"\w* \w have|strong="H1961"\w* \w sought|strong="H1875"\w*, \w and|strong="H1980"\w* \w which|strong="H6635"\w* \w they|strong="H3808"\w* \w have|strong="H1961"\w* \w worshiped|strong="H7812"\w*. \w They|strong="H3808"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* gathered \w or|strong="H3808"\w* \w be|strong="H1961"\w* \w buried|strong="H6912"\w*. \w They|strong="H3808"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w dung|strong="H1828"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w earth|strong="H8121"\w*. +\v 3 \w Death|strong="H4194"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* chosen \w rather|strong="H4480"\w* \w than|strong="H4480"\w* \w life|strong="H2416"\w* \w by|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w residue|strong="H7611"\w* \w that|strong="H3605"\w* \w remain|strong="H7604"\w* \w of|strong="H3068"\w* \w this|strong="H2063"\w* \w evil|strong="H7451"\w* \w family|strong="H4940"\w*, \w that|strong="H3605"\w* \w remain|strong="H7604"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w places|strong="H4725"\w* \w where|strong="H8033"\w* \w I|strong="H3068"\w* \w have|strong="H3068"\w* \w driven|strong="H5080"\w* \w them|strong="H4480"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\v 4 “\w Moreover|strong="H3541"\w* \w you|strong="H7725"\w* \w shall|strong="H3068"\w* tell \w them|strong="H7725"\w*, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “‘\w Do|strong="H3068"\w* men \w fall|strong="H5307"\w*, \w and|strong="H6965"\w* \w not|strong="H3808"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w again|strong="H7725"\w*? +\q2 \w Does|strong="H3808"\w* \w one|strong="H3808"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w*, \w and|strong="H6965"\w* \w not|strong="H3808"\w* \w return|strong="H7725"\w*? +\q1 +\v 5 \w Why|strong="H4069"\w* \w then|strong="H2088"\w* \w have|strong="H5971"\w* \w the|strong="H7725"\w* \w people|strong="H5971"\w* \w of|strong="H5971"\w* \w Jerusalem|strong="H3389"\w* fallen \w back|strong="H7725"\w* \w by|strong="H7725"\w* \w a|strong="H3068"\w* \w perpetual|strong="H5329"\w* \w backsliding|strong="H4878"\w*? +\q2 \w They|strong="H5971"\w* cling \w to|strong="H7725"\w* \w deceit|strong="H8649"\w*. +\q2 \w They|strong="H5971"\w* \w refuse|strong="H3985"\w* \w to|strong="H7725"\w* \w return|strong="H7725"\w*. +\q1 +\v 6 \w I|strong="H5921"\w* \w listened|strong="H8085"\w* \w and|strong="H7725"\w* \w heard|strong="H8085"\w*, \w but|strong="H3808"\w* \w they|strong="H3651"\w* didn’t \w say|strong="H1696"\w* \w what|strong="H4100"\w* \w is|strong="H4100"\w* \w right|strong="H3651"\w*. +\q2 \w No|strong="H3808"\w* \w one|strong="H3605"\w* repents \w of|strong="H5921"\w* \w his|strong="H3605"\w* \w wickedness|strong="H7451"\w*, \w saying|strong="H1696"\w*, “\w What|strong="H4100"\w* \w have|strong="H3605"\w* \w I|strong="H5921"\w* \w done|strong="H6213"\w*?” +\q1 \w Everyone|strong="H3605"\w* \w turns|strong="H7725"\w* \w to|strong="H1696"\w* \w his|strong="H3605"\w* \w course|strong="H4794"\w*, +\q2 \w as|strong="H6213"\w* \w a|strong="H3068"\w* \w horse|strong="H5483"\w* \w that|strong="H3605"\w* rushes headlong \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w battle|strong="H4421"\w*. +\q1 +\v 7 \w Yes|strong="H1571"\w*, \w the|strong="H8104"\w* \w stork|strong="H2624"\w* \w in|strong="H3068"\w* \w the|strong="H8104"\w* \w sky|strong="H8064"\w* \w knows|strong="H3045"\w* \w her|strong="H3045"\w* \w appointed|strong="H4150"\w* \w times|strong="H6256"\w*. +\q2 \w The|strong="H8104"\w* \w turtledove|strong="H8449"\w*, \w the|strong="H8104"\w* \w swallow|strong="H5693"\w*, \w and|strong="H3068"\w* \w the|strong="H8104"\w* \w crane|strong="H5483"\w* \w observe|strong="H8104"\w* \w the|strong="H8104"\w* \w time|strong="H6256"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* coming; +\q2 \w but|strong="H3808"\w* \w my|strong="H8104"\w* \w people|strong="H5971"\w* don’t \w know|strong="H3045"\w* \w Yahweh|strong="H3068"\w*’s \w law|strong="H4941"\w*. +\b +\q1 +\v 8 “‘\w How|strong="H2009"\w* \w do|strong="H6213"\w* \w you|strong="H6213"\w* say, “\w We|strong="H6213"\w* \w are|strong="H3068"\w* \w wise|strong="H2450"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w law|strong="H8451"\w* \w is|strong="H3068"\w* \w with|strong="H3068"\w* \w us|strong="H6213"\w*”? +\q2 \w But|strong="H2009"\w*, \w behold|strong="H2009"\w*, \w the|strong="H6213"\w* \w false|strong="H8267"\w* \w pen|strong="H5842"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* \w scribes|strong="H5608"\w* \w has|strong="H3068"\w* \w made|strong="H6213"\w* \w that|strong="H3068"\w* \w a|strong="H3068"\w* \w lie|strong="H8267"\w*. +\q1 +\v 9 \w The|strong="H3068"\w* \w wise|strong="H2450"\w* \w men|strong="H2450"\w* \w are|strong="H4100"\w* disappointed. +\q2 \w They|strong="H3068"\w* \w are|strong="H4100"\w* \w dismayed|strong="H2865"\w* \w and|strong="H3068"\w* trapped. +\q1 \w Behold|strong="H2009"\w*, \w they|strong="H3068"\w* \w have|strong="H3068"\w* \w rejected|strong="H3988"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*. +\q2 \w What|strong="H4100"\w* kind \w of|strong="H3068"\w* \w wisdom|strong="H2451"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w them|strong="H1697"\w*? +\q1 +\v 10 \w Therefore|strong="H3651"\w* \w I|strong="H3588"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w their|strong="H3605"\w* wives \w to|strong="H5704"\w* others +\q2 \w and|strong="H1419"\w* \w their|strong="H3605"\w* \w fields|strong="H7704"\w* \w to|strong="H5704"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w will|strong="H5414"\w* \w possess|strong="H3423"\w* \w them|strong="H5414"\w*. +\q1 \w For|strong="H3588"\w* \w everyone|strong="H3605"\w* \w from|strong="H5704"\w* \w the|strong="H3605"\w* \w least|strong="H6996"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w greatest|strong="H1419"\w* \w is|strong="H3651"\w* \w given|strong="H5414"\w* \w to|strong="H5704"\w* \w covetousness|strong="H1215"\w*; +\q2 \w from|strong="H5704"\w* \w the|strong="H3605"\w* \w prophet|strong="H5030"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w everyone|strong="H3605"\w* \w deals|strong="H6213"\w* \w falsely|strong="H8267"\w*. +\q1 +\v 11 \w They|strong="H5921"\w* \w have|strong="H5971"\w* \w healed|strong="H7495"\w* \w the|strong="H5921"\w* \w hurt|strong="H7667"\w* \w of|strong="H1323"\w* \w the|strong="H5921"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w my|strong="H5921"\w* \w people|strong="H5971"\w* \w slightly|strong="H7043"\w*, saying, +\q2 “\w Peace|strong="H7965"\w*, \w peace|strong="H7965"\w*,” \w when|strong="H5921"\w* \w there|strong="H7965"\w* \w is|strong="H5971"\w* no \w peace|strong="H7965"\w*. +\q1 +\v 12 \w Were|strong="H1571"\w* \w they|strong="H3588"\w* \w ashamed|strong="H3637"\w* \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3068"\w* \w committed|strong="H6213"\w* \w abomination|strong="H8441"\w*? +\q2 \w No|strong="H3808"\w*, \w they|strong="H3588"\w* \w were|strong="H1571"\w* \w not|strong="H3808"\w* \w at|strong="H3068"\w* \w all|strong="H3045"\w* \w ashamed|strong="H3637"\w*. +\q2 \w They|strong="H3588"\w* couldn’t \w blush|strong="H3637"\w*. +\q1 \w Therefore|strong="H3651"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w fall|strong="H5307"\w* \w among|strong="H3808"\w* \w those|strong="H6213"\w* \w who|strong="H3068"\w* \w fall|strong="H5307"\w*. +\q2 \w In|strong="H3068"\w* \w the|strong="H3588"\w* \w time|strong="H6256"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w visitation|strong="H6486"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w cast|strong="H5307"\w* \w down|strong="H5307"\w*, says \w Yahweh|strong="H3068"\w*. +\b +\q1 +\v 13 “‘\w I|strong="H5414"\w* \w will|strong="H3068"\w* \w utterly|strong="H5486"\w* \w consume|strong="H5486"\w* \w them|strong="H5414"\w*, \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w No|strong="H5414"\w* \w grapes|strong="H6025"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w on|strong="H5674"\w* \w the|strong="H5002"\w* \w vine|strong="H1612"\w*, +\q2 \w no|strong="H5414"\w* \w figs|strong="H8384"\w* \w on|strong="H5674"\w* \w the|strong="H5002"\w* \w fig|strong="H8384"\w* \w tree|strong="H8384"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H5002"\w* \w leaf|strong="H5929"\w* \w will|strong="H3068"\w* \w fade|strong="H5034"\w*. +\q1 \w The|strong="H5002"\w* \w things|strong="H1992"\w* \w that|strong="H3068"\w* \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w given|strong="H5414"\w* \w them|strong="H5414"\w* +\q2 \w will|strong="H3068"\w* \w pass|strong="H5674"\w* \w away|strong="H5674"\w* \w from|strong="H3068"\w* \w them|strong="H5414"\w*.’” +\b +\q1 +\v 14 “\w Why|strong="H4100"\w* \w do|strong="H3068"\w* \w we|strong="H3068"\w* \w sit|strong="H3427"\w* \w still|strong="H3427"\w*? +\q2 Assemble \w yourselves|strong="H8033"\w*! +\q2 Let’s enter \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w fortified|strong="H4013"\w* \w cities|strong="H5892"\w*, +\q2 \w and|strong="H3068"\w* let’s \w be|strong="H3068"\w* \w silent|strong="H1826"\w* \w there|strong="H8033"\w*; +\q1 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w put|strong="H3068"\w* \w us|strong="H5921"\w* \w to|strong="H3068"\w* \w silence|strong="H1826"\w*, +\q2 \w and|strong="H3068"\w* \w given|strong="H8248"\w* \w us|strong="H5921"\w* \w poisoned|strong="H7219"\w* \w water|strong="H4325"\w* \w to|strong="H3068"\w* \w drink|strong="H8248"\w*, +\q2 \w because|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 15 \w We|strong="H2009"\w* \w looked|strong="H6960"\w* \w for|strong="H6960"\w* \w peace|strong="H7965"\w*, \w but|strong="H2009"\w* no \w good|strong="H2896"\w* came; +\q2 \w and|strong="H2896"\w* \w for|strong="H6960"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w of|strong="H6256"\w* \w healing|strong="H4832"\w*, \w and|strong="H2896"\w* \w behold|strong="H2009"\w*, dismay! +\q1 +\v 16 \w The|strong="H3605"\w* \w snorting|strong="H5170"\w* \w of|strong="H3427"\w* \w his|strong="H3605"\w* \w horses|strong="H5483"\w* \w is|strong="H3605"\w* \w heard|strong="H8085"\w* \w from|strong="H8085"\w* \w Dan|strong="H1835"\w*. +\q2 \w The|strong="H3605"\w* \w whole|strong="H3605"\w* land trembles \w at|strong="H3427"\w* \w the|strong="H3605"\w* \w sound|strong="H6963"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* \w neighing|strong="H4684"\w* \w of|strong="H3427"\w* \w his|strong="H3605"\w* strong ones; +\q1 \w for|strong="H3427"\w* \w they|strong="H3605"\w* \w have|strong="H3605"\w* \w come|strong="H5892"\w*, \w and|strong="H6963"\w* \w have|strong="H3605"\w* devoured \w the|strong="H3605"\w* land \w and|strong="H6963"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w in|strong="H3427"\w* \w it|strong="H4393"\w*, +\q2 \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w and|strong="H6963"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w dwell|strong="H3427"\w* \w therein|strong="H4393"\w*.” +\q1 +\v 17 “\w For|strong="H3588"\w*, \w behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w serpents|strong="H5175"\w*, +\q2 \w adders|strong="H6848"\w* among \w you|strong="H3588"\w*, +\q2 \w which|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3588"\w* \w be|strong="H3068"\w* \w charmed|strong="H3908"\w*; +\q2 \w and|strong="H3068"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w bite|strong="H5391"\w* \w you|strong="H3588"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 18 Oh \w that|strong="H3820"\w* \w I|strong="H5921"\w* could \w comfort|strong="H4010"\w* \w myself|strong="H3820"\w* \w against|strong="H5921"\w* \w sorrow|strong="H3015"\w*! +\q2 \w My|strong="H5921"\w* \w heart|strong="H3820"\w* \w is|strong="H3820"\w* \w faint|strong="H1742"\w* \w within|strong="H5921"\w* \w me|strong="H5921"\w*. +\q1 +\v 19 \w Behold|strong="H2009"\w*, \w the|strong="H3068"\w* \w voice|strong="H6963"\w* \w of|strong="H4428"\w* \w the|strong="H3068"\w* \w cry|strong="H7775"\w* \w of|strong="H4428"\w* \w the|strong="H3068"\w* \w daughter|strong="H1323"\w* \w of|strong="H4428"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w from|strong="H3068"\w* \w a|strong="H3068"\w* land \w that|strong="H5971"\w* \w is|strong="H3068"\w* very \w far|strong="H4801"\w* \w off|strong="H4801"\w*: +\q2 “Isn’t \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w Zion|strong="H6726"\w*? +\q2 Isn’t \w her|strong="H3707"\w* \w King|strong="H4428"\w* \w in|strong="H3068"\w* \w her|strong="H3707"\w*?” +\b +\q1 “\w Why|strong="H4069"\w* \w have|strong="H3068"\w* \w they|strong="H3068"\w* \w provoked|strong="H3707"\w* \w me|strong="H6963"\w* \w to|strong="H3068"\w* \w anger|strong="H3707"\w* \w with|strong="H3068"\w* \w their|strong="H3068"\w* \w engraved|strong="H6456"\w* \w images|strong="H6456"\w*, +\q2 \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w foreign|strong="H5236"\w* \w idols|strong="H6456"\w*?” +\b +\q1 +\v 20 “\w The|strong="H5674"\w* \w harvest|strong="H7105"\w* \w is|strong="H7105"\w* \w past|strong="H5674"\w*. +\q2 \w The|strong="H5674"\w* \w summer|strong="H7019"\w* \w has|strong="H7105"\w* \w ended|strong="H3615"\w*, +\q2 \w and|strong="H5674"\w* \w we|strong="H3068"\w* \w are|strong="H3808"\w* \w not|strong="H3808"\w* \w saved|strong="H3467"\w*.” +\b +\q1 +\v 21 \w For|strong="H5921"\w* \w the|strong="H5921"\w* \w hurt|strong="H7665"\w* \w of|strong="H1323"\w* \w the|strong="H5921"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w my|strong="H5921"\w* \w people|strong="H5971"\w*, \w I|strong="H5921"\w* am \w hurt|strong="H7665"\w*. +\q2 \w I|strong="H5921"\w* \w mourn|strong="H6937"\w*. +\q2 \w Dismay|strong="H8047"\w* \w has|strong="H5971"\w* \w taken|strong="H2388"\w* \w hold|strong="H2388"\w* \w of|strong="H1323"\w* \w me|strong="H5921"\w*. +\q1 +\v 22 \w Is|strong="H8033"\w* \w there|strong="H8033"\w* \w no|strong="H3808"\w* \w balm|strong="H6875"\w* \w in|strong="H5971"\w* \w Gilead|strong="H1568"\w*? +\q2 \w Is|strong="H8033"\w* \w there|strong="H8033"\w* \w no|strong="H3808"\w* \w physician|strong="H7495"\w* \w there|strong="H8033"\w*? +\q1 \w Why|strong="H4069"\w* \w then|strong="H3588"\w* isn’t \w the|strong="H3588"\w* health \w of|strong="H1323"\w* \w the|strong="H3588"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w my|strong="H5927"\w* \w people|strong="H5971"\w* \w recovered|strong="H5927"\w*? +\c 9 +\q1 +\v 1 \w Oh|strong="H4310"\w* \w that|strong="H3588"\w* \w my|strong="H5414"\w* head \w were|strong="H5971"\w* waters, +\q2 \w and|strong="H3212"\w* \w my|strong="H5414"\w* eyes \w a|strong="H3068"\w* spring \w of|strong="H4057"\w* tears, +\q1 \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w might|strong="H5971"\w* weep day \w and|strong="H3212"\w* night +\q2 \w for|strong="H3588"\w* \w the|strong="H3605"\w* slain \w of|strong="H4057"\w* \w the|strong="H3605"\w* daughter \w of|strong="H4057"\w* \w my|strong="H5414"\w* \w people|strong="H5971"\w*! +\q1 +\v 2 Oh \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w had|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H5002"\w* wilderness +\q2 \w a|strong="H3068"\w* lodging \w place|strong="H7198"\w* \w of|strong="H3068"\w* wayfaring \w men|strong="H7451"\w*, +\q1 \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w might|strong="H3068"\w* \w leave|strong="H3318"\w* \w my|strong="H3068"\w* \w people|strong="H3808"\w* +\q2 \w and|strong="H3068"\w* \w go|strong="H3318"\w* \w from|strong="H3318"\w* \w them|strong="H3318"\w*! +\q1 \w For|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H3068"\w* \w all|strong="H3045"\w* adulterers, +\q2 \w an|strong="H3588"\w* assembly \w of|strong="H3068"\w* \w treacherous|strong="H7451"\w* \w men|strong="H7451"\w*. +\q1 +\v 3 “\w They|strong="H3588"\w* bend \w their|strong="H3605"\w* tongue, +\q2 \w as|strong="H3588"\w* \w their|strong="H3605"\w* bow, \w for|strong="H3588"\w* falsehood. +\q1 \w They|strong="H3588"\w* \w have|strong="H3605"\w* grown strong \w in|strong="H5921"\w* \w the|strong="H3605"\w* land, +\q2 \w but|strong="H3588"\w* \w not|strong="H3588"\w* \w for|strong="H3588"\w* truth; +\q1 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w proceed|strong="H1980"\w* \w from|strong="H5921"\w* evil \w to|strong="H1980"\w* evil, +\q2 \w and|strong="H1980"\w* \w they|strong="H3588"\w* don’t know \w me|strong="H5921"\w*,” says \w Yahweh|strong="H3068"\w*. +\q1 +\v 4 “Everyone beware \w of|strong="H3956"\w* \w his|strong="H3808"\w* \w neighbor|strong="H7453"\w*, +\q2 \w and|strong="H1696"\w* don’t trust \w in|strong="H1696"\w* \w any|strong="H3808"\w* \w brother|strong="H7453"\w*; +\q1 \w for|strong="H3808"\w* \w every|strong="H2048"\w* \w brother|strong="H7453"\w* \w will|strong="H3808"\w* utterly supplant, +\q2 \w and|strong="H1696"\w* \w every|strong="H2048"\w* \w neighbor|strong="H7453"\w* \w will|strong="H3808"\w* go around \w like|strong="H3808"\w* \w a|strong="H3068"\w* slanderer. +\q1 +\v 5 \w Friends|strong="H3045"\w* deceive each other, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3045"\w* speak \w the|strong="H5002"\w* truth. +\q1 \w They|strong="H3068"\w* \w have|strong="H3068"\w* \w taught|strong="H3045"\w* \w their|strong="H3068"\w* tongue \w to|strong="H3068"\w* speak \w lies|strong="H4820"\w*. +\q2 \w They|strong="H3068"\w* weary \w themselves|strong="H3045"\w* committing iniquity. +\q1 +\v 6 \w Your|strong="H3068"\w* habitation \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H6440"\w* middle \w of|strong="H3068"\w* deceit. +\q2 \w Through|strong="H5971"\w* deceit, \w they|strong="H3588"\w* \w refuse|strong="H3588"\w* \w to|strong="H3068"\w* know \w me|strong="H6440"\w*,” \w says|strong="H3541"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 7 Therefore \w Yahweh|strong="H3068"\w* \w of|strong="H6310"\w* Armies \w says|strong="H1696"\w*, +\q1 “Behold, \w I|strong="H7760"\w* \w will|strong="H6310"\w* melt \w them|strong="H7760"\w* \w and|strong="H6310"\w* test \w them|strong="H7760"\w*; +\q2 \w for|strong="H7130"\w* \w how|strong="H7965"\w* should \w I|strong="H7760"\w* deal \w with|strong="H1696"\w* \w the|strong="H7760"\w* daughter \w of|strong="H6310"\w* \w my|strong="H7760"\w* \w people|strong="H1696"\w*? +\q1 +\v 8 \w Their|strong="H3068"\w* tongue \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w deadly|strong="H5315"\w* arrow. +\q2 \w It|strong="H5921"\w* \w speaks|strong="H5002"\w* deceit. +\q1 \w One|strong="H2088"\w* \w speaks|strong="H5002"\w* peaceably \w to|strong="H3068"\w* \w his|strong="H3068"\w* neighbor \w with|strong="H3068"\w* \w his|strong="H3068"\w* \w mouth|strong="H5315"\w*, +\q2 \w but|strong="H3808"\w* \w in|strong="H5921"\w* \w his|strong="H3068"\w* \w heart|strong="H5315"\w*, \w he|strong="H3068"\w* waits \w to|strong="H3068"\w* ambush \w him|strong="H5921"\w*. +\q1 +\v 9 Shouldn’t \w I|strong="H3588"\w* punish \w them|strong="H5921"\w* \w for|strong="H3588"\w* \w these|strong="H8085"\w* \w things|strong="H3808"\w*?” says \w Yahweh|strong="H3068"\w*. +\q2 “Shouldn’t \w my|strong="H8085"\w* soul \w be|strong="H3808"\w* avenged \w on|strong="H5921"\w* \w a|strong="H3068"\w* nation \w such|strong="H3808"\w* \w as|strong="H5704"\w* \w this|strong="H5674"\w*? +\q1 +\v 10 \w I|strong="H5414"\w* \w will|strong="H5892"\w* weep \w and|strong="H3063"\w* wail \w for|strong="H3427"\w* \w the|strong="H5414"\w* mountains, +\q2 \w and|strong="H3063"\w* lament \w for|strong="H3427"\w* \w the|strong="H5414"\w* pastures \w of|strong="H3427"\w* \w the|strong="H5414"\w* wilderness, +\q1 \w because|strong="H1097"\w* \w they|strong="H3389"\w* \w are|strong="H5892"\w* burned \w up|strong="H5414"\w*, \w so|strong="H5414"\w* \w that|strong="H5414"\w* \w no|strong="H1097"\w* \w one|strong="H1097"\w* passes \w through|strong="H5892"\w*; +\q2 Men can’t hear \w the|strong="H5414"\w* voice \w of|strong="H3427"\w* \w the|strong="H5414"\w* livestock. +\q1 Both \w the|strong="H5414"\w* birds \w of|strong="H3427"\w* \w the|strong="H5414"\w* sky \w and|strong="H3063"\w* \w the|strong="H5414"\w* animals \w have|strong="H3063"\w* fled. +\q2 \w They|strong="H3389"\w* \w are|strong="H5892"\w* gone. +\b +\q1 +\v 11 “\w I|strong="H5921"\w* \w will|strong="H3068"\w* \w make|strong="H5046"\w* Jerusalem heaps, +\q2 \w a|strong="H3068"\w* dwelling place \w of|strong="H3068"\w* jackals. +\q1 \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w make|strong="H5046"\w* \w the|strong="H5921"\w* cities \w of|strong="H3068"\w* Judah \w a|strong="H3068"\w* desolation, +\q2 \w without|strong="H1097"\w* inhabitant.” +\p +\v 12 \w Who|strong="H3068"\w* \w is|strong="H3068"\w* wise enough \w to|strong="H1980"\w* \w understand|strong="H8085"\w* \w this|strong="H5414"\w*? \w Who|strong="H3068"\w* \w is|strong="H3068"\w* \w he|strong="H3068"\w* \w to|strong="H1980"\w* \w whom|strong="H6440"\w* \w the|strong="H6440"\w* \w mouth|strong="H6440"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H8085"\w*, \w that|strong="H8085"\w* \w he|strong="H3068"\w* \w may|strong="H3068"\w* \w declare|strong="H8085"\w* \w it|strong="H5414"\w*? \w Why|strong="H5921"\w* \w has|strong="H3068"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* perished \w and|strong="H1980"\w* burned \w up|strong="H5414"\w* \w like|strong="H3808"\w* \w a|strong="H3068"\w* wilderness, \w so|strong="H1980"\w* \w that|strong="H8085"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w passes|strong="H1980"\w* \w through|strong="H5921"\w*? +\p +\v 13 \w Yahweh|strong="H3068"\w* says, “Because \w they|strong="H3820"\w* have forsaken \w my|strong="H3925"\w* law which \w I|strong="H3212"\w* set before \w them|strong="H3925"\w*, \w and|strong="H3212"\w* have \w not|strong="H3212"\w* obeyed \w my|strong="H3925"\w* voice or \w walked|strong="H3212"\w* \w in|strong="H3212"\w* \w my|strong="H3925"\w* ways, +\v 14 \w but|strong="H3651"\w* \w have|strong="H3068"\w* walked after \w the|strong="H3541"\w* stubbornness \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w own|strong="H5971"\w* heart \w and|strong="H3478"\w* after \w the|strong="H3541"\w* Baals, \w which|strong="H3068"\w* \w their|strong="H3068"\w* fathers taught \w them|strong="H8248"\w*.” +\v 15 \w Therefore|strong="H7971"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3615"\w* \w Armies|strong="H3808"\w*, \w the|strong="H3045"\w* \w God|strong="H3808"\w* \w of|strong="H3615"\w* Israel, says, “\w Behold|strong="H3808"\w*, \w I|strong="H5704"\w* \w will|strong="H1471"\w* \w feed|strong="H3615"\w* \w them|strong="H1992"\w*, \w even|strong="H5704"\w* \w this|strong="H3045"\w* \w people|strong="H1471"\w*, \w with|strong="H3045"\w* wormwood \w and|strong="H7971"\w* give \w them|strong="H1992"\w* poisoned water \w to|strong="H5704"\w* drink. +\v 16 \w I|strong="H3541"\w* \w will|strong="H3068"\w* scatter \w them|strong="H7971"\w* \w also|strong="H3068"\w* among \w the|strong="H3541"\w* nations, \w whom|strong="H7121"\w* neither \w they|strong="H3068"\w* nor \w their|strong="H3068"\w* fathers \w have|strong="H3068"\w* known. \w I|strong="H3541"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w the|strong="H3541"\w* sword \w after|strong="H7121"\w* \w them|strong="H7971"\w*, \w until|strong="H3068"\w* \w I|strong="H3541"\w* \w have|strong="H3068"\w* consumed \w them|strong="H7971"\w*.” +\p +\v 17 \w Yahweh|strong="H3068"\w* \w of|strong="H5869"\w* Armies says, +\q1 “\w Consider|strong="H5375"\w*, \w and|strong="H5869"\w* call \w for|strong="H5921"\w* \w the|strong="H5921"\w* mourning women, \w that|strong="H4325"\w* \w they|strong="H5921"\w* \w may|strong="H4325"\w* \w come|strong="H3381"\w*. +\q2 Send \w for|strong="H5921"\w* \w the|strong="H5921"\w* skillful women, \w that|strong="H4325"\w* \w they|strong="H5921"\w* \w may|strong="H4325"\w* \w come|strong="H3381"\w*. +\q1 +\v 18 \w Let|strong="H5800"\w* \w them|strong="H7993"\w* \w make|strong="H8085"\w* haste +\q2 \w and|strong="H6963"\w* take \w up|strong="H4908"\w* \w a|strong="H3068"\w* \w wailing|strong="H5092"\w* \w for|strong="H3588"\w* \w us|strong="H3588"\w*, +\q1 \w that|strong="H3588"\w* \w our|strong="H8085"\w* eyes \w may|strong="H8085"\w* run \w down|strong="H7993"\w* \w with|strong="H6726"\w* tears +\q2 \w and|strong="H6963"\w* \w our|strong="H8085"\w* eyelids gush \w out|strong="H7993"\w* \w with|strong="H6726"\w* waters. +\q1 +\v 19 \w For|strong="H3588"\w* \w a|strong="H3068"\w* voice \w of|strong="H3068"\w* \w wailing|strong="H5092"\w* \w is|strong="H3068"\w* \w heard|strong="H8085"\w* \w out|strong="H3947"\w* \w of|strong="H3068"\w* Zion, +\q2 ‘\w How|strong="H3588"\w* \w we|strong="H3068"\w* \w are|strong="H1697"\w* ruined! +\q1 \w We|strong="H3588"\w* \w are|strong="H1697"\w* greatly confounded +\q2 \w because|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* forsaken \w the|strong="H8085"\w* land, +\q2 \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3068"\w* \w cast|strong="H3068"\w* \w down|strong="H3588"\w* \w our|strong="H3068"\w* dwellings.’” +\b +\q1 +\v 20 \w Yet|strong="H3588"\w* hear \w Yahweh|strong="H3068"\w*’s word, \w you|strong="H3588"\w* women. +\q2 Let \w your|strong="H3588"\w* ear receive \w the|strong="H3588"\w* word \w of|strong="H2351"\w* \w his|strong="H3588"\w* mouth. +\q1 Teach \w your|strong="H3588"\w* daughters wailing. +\q2 Everyone teach \w her|strong="H3772"\w* neighbor \w a|strong="H3068"\w* lamentation. +\q1 +\v 21 \w For|strong="H5921"\w* \w death|strong="H5038"\w* \w has|strong="H3068"\w* \w come|strong="H5307"\w* \w up|strong="H5921"\w* \w into|strong="H5307"\w* \w our|strong="H3068"\w* windows. +\q2 \w It|strong="H5921"\w* \w has|strong="H3068"\w* entered \w into|strong="H5307"\w* \w our|strong="H3068"\w* palaces +\q1 \w to|strong="H1696"\w* cut \w off|strong="H5921"\w* \w the|strong="H6440"\w* children \w from|strong="H6440"\w* \w outside|strong="H5921"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H6440"\w* young men \w from|strong="H6440"\w* \w the|strong="H6440"\w* streets. +\p +\v 22 Speak, “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, +\q1 “‘\w The|strong="H3541"\w* dead bodies \w of|strong="H3068"\w* \w men|strong="H1368"\w* \w will|strong="H3068"\w* fall \w as|strong="H3068"\w* dung \w on|strong="H3068"\w* \w the|strong="H3541"\w* open field, +\q2 \w and|strong="H3068"\w* \w as|strong="H3068"\w* \w the|strong="H3541"\w* handful after \w the|strong="H3541"\w* harvester. +\q2 No \w one|strong="H1368"\w* \w will|strong="H3068"\w* gather \w them|strong="H3068"\w*.’” +\p +\v 23 \w Yahweh|strong="H3068"\w* \w says|strong="H5002"\w*, +\q1 “Don’t let \w the|strong="H5002"\w* \w wise|strong="H7919"\w* \w man|strong="H3045"\w* \w glory|strong="H1984"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w wisdom|strong="H7919"\w*. +\q2 Don’t let \w the|strong="H5002"\w* mighty \w man|strong="H3045"\w* \w glory|strong="H1984"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w might|strong="H3068"\w*. +\q2 Don’t let \w the|strong="H5002"\w* rich \w man|strong="H3045"\w* \w glory|strong="H1984"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* riches. +\q1 +\v 24 \w But|strong="H2009"\w* \w let|strong="H6485"\w* \w him|strong="H5921"\w* \w who|strong="H3605"\w* glories glory \w in|strong="H5921"\w* \w this|strong="H3068"\w*, +\q2 \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w has|strong="H3068"\w* understanding, \w and|strong="H3068"\w* knows \w me|strong="H5921"\w*, +\q1 \w that|strong="H3605"\w* \w I|strong="H3117"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H3605"\w* exercises loving kindness, justice, \w and|strong="H3068"\w* righteousness \w in|strong="H5921"\w* \w the|strong="H3605"\w* earth, +\q2 \w for|strong="H5921"\w* \w I|strong="H3117"\w* delight \w in|strong="H5921"\w* \w these|strong="H3605"\w* \w things|strong="H3605"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 25 “Behold, \w the|strong="H3605"\w* days \w come|strong="H3478"\w*,” says \w Yahweh|strong="H3068"\w*, “\w that|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H1471"\w* punish \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H1121"\w* circumcised \w only|strong="H3588"\w* \w in|strong="H3427"\w* \w their|strong="H3605"\w* flesh: +\v 26 Egypt, Judah, Edom, the children of Ammon, Moab, and all who have the corners of their hair cut off, who dwell in the wilderness, for all the nations are uncircumcised, and all the house of Israel are uncircumcised in heart.” +\c 10 +\p +\v 1 \w Hear|strong="H8085"\w* \w the|strong="H5921"\w* \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w speaks|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H5921"\w*, \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*! +\v 2 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, +\q1 “Don’t \w learn|strong="H3925"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w nations|strong="H1471"\w*, +\q2 \w and|strong="H3068"\w* don’t \w be|strong="H3068"\w* \w dismayed|strong="H2865"\w* \w at|strong="H3068"\w* \w the|strong="H3588"\w* signs \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w sky|strong="H8064"\w*; +\q2 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w nations|strong="H1471"\w* \w are|strong="H1992"\w* \w dismayed|strong="H2865"\w* \w at|strong="H3068"\w* \w them|strong="H1992"\w*. +\q1 +\v 3 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w customs|strong="H2708"\w* \w of|strong="H3027"\w* \w the|strong="H3588"\w* \w peoples|strong="H5971"\w* \w are|strong="H5971"\w* \w vanity|strong="H1892"\w*; +\q2 \w for|strong="H3588"\w* \w one|strong="H1931"\w* \w cuts|strong="H3772"\w* \w a|strong="H3068"\w* \w tree|strong="H6086"\w* \w out|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3588"\w* \w forest|strong="H3293"\w*, +\q2 \w the|strong="H3588"\w* \w work|strong="H4639"\w* \w of|strong="H3027"\w* \w the|strong="H3588"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3588"\w* \w workman|strong="H2796"\w* \w with|strong="H5971"\w* \w the|strong="H3588"\w* ax. +\q1 +\v 4 \w They|strong="H3808"\w* \w deck|strong="H3302"\w* \w it|strong="H3808"\w* \w with|strong="H2091"\w* \w silver|strong="H3701"\w* \w and|strong="H3701"\w* \w with|strong="H2091"\w* \w gold|strong="H2091"\w*. +\q2 \w They|strong="H3808"\w* \w fasten|strong="H2388"\w* \w it|strong="H3808"\w* \w with|strong="H2091"\w* \w nails|strong="H4548"\w* \w and|strong="H3701"\w* \w with|strong="H2091"\w* \w hammers|strong="H4717"\w*, +\q2 \w so|strong="H3808"\w* \w that|strong="H3808"\w* \w it|strong="H3808"\w* \w can|strong="H3808"\w*’t \w move|strong="H6328"\w*. +\q1 +\v 5 \w They|strong="H1992"\w* \w are|strong="H1992"\w* \w like|strong="H3808"\w* \w a|strong="H3068"\w* \w palm|strong="H8560"\w* \w tree|strong="H8560"\w*, \w of|strong="H3372"\w* turned \w work|strong="H4749"\w*, +\q2 \w and|strong="H3372"\w* don’t \w speak|strong="H1696"\w*. +\q1 \w They|strong="H1992"\w* \w must|strong="H1571"\w* \w be|strong="H3808"\w* \w carried|strong="H5375"\w*, +\q2 \w because|strong="H3588"\w* \w they|strong="H1992"\w* \w can|strong="H3808"\w*’t move. +\q1 Don’t \w be|strong="H3808"\w* \w afraid|strong="H3372"\w* \w of|strong="H3372"\w* \w them|strong="H1992"\w*; +\q2 \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w can|strong="H3808"\w*’t \w do|strong="H3190"\w* \w evil|strong="H7489"\w*, +\q2 \w neither|strong="H3808"\w* \w is|strong="H1571"\w* \w it|strong="H3588"\w* \w in|strong="H1696"\w* \w them|strong="H1992"\w* \w to|strong="H1696"\w* \w do|strong="H3190"\w* \w good|strong="H3190"\w*.” +\q1 +\v 6 \w There|strong="H3068"\w* \w is|strong="H3068"\w* no \w one|strong="H3068"\w* \w like|strong="H3644"\w* \w you|strong="H3644"\w*, \w Yahweh|strong="H3068"\w*. +\q2 \w You|strong="H3644"\w* \w are|strong="H3068"\w* \w great|strong="H1419"\w*, +\q2 \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w* \w is|strong="H3068"\w* \w great|strong="H1419"\w* \w in|strong="H3068"\w* \w might|strong="H1369"\w*. +\q1 +\v 7 \w Who|strong="H4310"\w* shouldn’t \w fear|strong="H3372"\w* \w you|strong="H3588"\w*, +\q2 \w King|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*? +\q2 \w For|strong="H3588"\w* \w it|strong="H3588"\w* belongs \w to|strong="H4428"\w* \w you|strong="H3588"\w*. +\q1 \w Because|strong="H3588"\w* \w among|strong="H4310"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w wise|strong="H2450"\w* \w men|strong="H2450"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*, +\q2 \w and|strong="H4428"\w* \w in|strong="H4428"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w royal|strong="H4438"\w* \w estate|strong="H4438"\w*, +\q2 \w there|strong="H3605"\w* \w is|strong="H4310"\w* \w no|strong="H3808"\w* \w one|strong="H3605"\w* \w like|strong="H3644"\w* \w you|strong="H3588"\w*. +\q1 +\v 8 \w But|strong="H1931"\w* \w they|strong="H1931"\w* are together \w brutish|strong="H1197"\w* \w and|strong="H6086"\w* \w foolish|strong="H3688"\w*, +\q2 instructed \w by|strong="H4148"\w* \w idols|strong="H1892"\w*! +\q2 \w It|strong="H1931"\w* \w is|strong="H1931"\w* just \w wood|strong="H6086"\w*. +\q1 +\v 9 \w There|strong="H3605"\w* \w is|strong="H3027"\w* \w silver|strong="H3701"\w* \w beaten|strong="H7554"\w* \w into|strong="H3027"\w* \w plates|strong="H7554"\w*, \w which|strong="H2091"\w* \w is|strong="H3027"\w* \w brought|strong="H3027"\w* \w from|strong="H3027"\w* \w Tarshish|strong="H8659"\w*, +\q2 \w and|strong="H3701"\w* \w gold|strong="H2091"\w* \w from|strong="H3027"\w* Uphaz, +\q2 \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w engraver|strong="H2796"\w* \w and|strong="H3701"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w goldsmith|strong="H6884"\w*. +\q1 \w Their|strong="H3605"\w* \w clothing|strong="H3830"\w* \w is|strong="H3027"\w* \w blue|strong="H8504"\w* \w and|strong="H3701"\w* \w purple|strong="H8504"\w*. +\q2 \w They|strong="H3605"\w* \w are|strong="H3027"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H3027"\w* \w skillful|strong="H2450"\w* \w men|strong="H2450"\w*. +\q1 +\v 10 \w But|strong="H3808"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w true|strong="H3068"\w* \w God|strong="H3068"\w*. +\q2 \w He|strong="H1931"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w living|strong="H2416"\w* \w God|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* \w an|strong="H3068"\w* \w everlasting|strong="H5769"\w* \w King|strong="H4428"\w*. +\q1 \w At|strong="H3068"\w* \w his|strong="H3068"\w* \w wrath|strong="H7110"\w*, \w the|strong="H3068"\w* earth trembles. +\q2 \w The|strong="H3068"\w* \w nations|strong="H1471"\w* aren’t able \w to|strong="H3068"\w* withstand \w his|strong="H3068"\w* \w indignation|strong="H2195"\w*. +\p +\v 11 “\w You|strong="H1768"\w* shall say \w this|strong="H1836"\w* \w to|strong="H4481"\w* them: ‘\w The|strong="H4481"\w* gods \w that|strong="H1768"\w* \w have|strong="H1768"\w* \w not|strong="H3809"\w* \w made|strong="H5648"\w* \w the|strong="H4481"\w* \w heavens|strong="H8065"\w* \w and|strong="H8065"\w* \w the|strong="H4481"\w* earth \w will|strong="H1768"\w* perish \w from|strong="H4481"\w* \w the|strong="H4481"\w* earth, \w and|strong="H8065"\w* \w from|strong="H4481"\w* \w under|strong="H8460"\w* \w the|strong="H4481"\w* \w heavens|strong="H8065"\w*.’” +\q1 +\v 12 \w God|strong="H2451"\w* \w has|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w earth|strong="H8064"\w* \w by|strong="H3559"\w* \w his|strong="H5186"\w* \w power|strong="H3581"\w*. +\q2 \w He|strong="H6213"\w* \w has|strong="H6213"\w* \w established|strong="H3559"\w* \w the|strong="H6213"\w* \w world|strong="H8398"\w* \w by|strong="H3559"\w* \w his|strong="H5186"\w* \w wisdom|strong="H2451"\w*, +\q2 \w and|strong="H8064"\w* \w by|strong="H3559"\w* \w his|strong="H5186"\w* \w understanding|strong="H8394"\w* \w has|strong="H6213"\w* \w he|strong="H6213"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w the|strong="H6213"\w* \w heavens|strong="H8064"\w*. +\q1 +\v 13 \w When|strong="H3318"\w* \w he|strong="H6213"\w* \w utters|strong="H5414"\w* \w his|strong="H5414"\w* \w voice|strong="H6963"\w*, +\q2 \w the|strong="H5414"\w* \w waters|strong="H4325"\w* \w in|strong="H6213"\w* \w the|strong="H5414"\w* \w heavens|strong="H8064"\w* \w roar|strong="H1995"\w*, +\q2 \w and|strong="H8064"\w* \w he|strong="H6213"\w* \w causes|strong="H5414"\w* \w the|strong="H5414"\w* \w vapors|strong="H5387"\w* \w to|strong="H3318"\w* \w ascend|strong="H5927"\w* \w from|strong="H3318"\w* \w the|strong="H5414"\w* \w ends|strong="H7097"\w* \w of|strong="H6963"\w* \w the|strong="H5414"\w* \w earth|strong="H5927"\w*. +\q1 \w He|strong="H6213"\w* \w makes|strong="H6213"\w* \w lightnings|strong="H1300"\w* \w for|strong="H6213"\w* \w the|strong="H5414"\w* \w rain|strong="H4306"\w*, +\q2 \w and|strong="H8064"\w* \w brings|strong="H3318"\w* \w the|strong="H5414"\w* \w wind|strong="H7307"\w* \w out|strong="H3318"\w* \w of|strong="H6963"\w* \w his|strong="H5414"\w* treasuries. +\q1 +\v 14 \w Every|strong="H3605"\w* \w man|strong="H3605"\w* \w has|strong="H3588"\w* \w become|strong="H1197"\w* \w brutish|strong="H1197"\w* \w and|strong="H7307"\w* \w without|strong="H3808"\w* \w knowledge|strong="H1847"\w*. +\q2 \w Every|strong="H3605"\w* \w goldsmith|strong="H6884"\w* \w is|strong="H3605"\w* disappointed \w by|strong="H3808"\w* \w his|strong="H3605"\w* engraved \w image|strong="H6459"\w*; +\q1 \w for|strong="H3588"\w* \w his|strong="H3605"\w* \w molten|strong="H5262"\w* \w image|strong="H6459"\w* \w is|strong="H3605"\w* \w falsehood|strong="H8267"\w*, +\q2 \w and|strong="H7307"\w* \w there|strong="H3605"\w* \w is|strong="H3605"\w* \w no|strong="H3808"\w* \w breath|strong="H7307"\w* \w in|strong="H3808"\w* \w them|strong="H3588"\w*. +\q1 +\v 15 \w They|strong="H1992"\w* \w are|strong="H1992"\w* \w vanity|strong="H1892"\w*, \w a|strong="H3068"\w* \w work|strong="H4639"\w* \w of|strong="H6256"\w* \w delusion|strong="H1892"\w*. +\q2 \w In|strong="H4639"\w* \w the|strong="H6256"\w* \w time|strong="H6256"\w* \w of|strong="H6256"\w* \w their|strong="H1992"\w* \w visitation|strong="H6486"\w* \w they|strong="H1992"\w* \w will|strong="H1992"\w* perish. +\q1 +\v 16 \w The|strong="H3605"\w* \w portion|strong="H2506"\w* \w of|strong="H3068"\w* \w Jacob|strong="H3290"\w* \w is|strong="H3068"\w* \w not|strong="H3808"\w* \w like|strong="H3478"\w* \w these|strong="H1931"\w*; +\q2 \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H3068"\w* \w the|strong="H3605"\w* \w maker|strong="H3335"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w things|strong="H3605"\w*; +\q1 \w and|strong="H3478"\w* \w Israel|strong="H3478"\w* \w is|strong="H3068"\w* \w the|strong="H3605"\w* \w tribe|strong="H7626"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w inheritance|strong="H5159"\w*. +\q2 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w is|strong="H3068"\w* \w his|strong="H3605"\w* \w name|strong="H8034"\w*. +\q1 +\v 17 Gather \w up|strong="H3427"\w* \w your|strong="H3427"\w* \w wares|strong="H3666"\w* \w out|strong="H3427"\w* \w of|strong="H3427"\w* \w the|strong="H3427"\w* land, +\q2 \w you|strong="H3427"\w* \w who|strong="H3427"\w* \w live|strong="H3427"\w* \w under|strong="H3427"\w* \w siege|strong="H4692"\w*. +\q1 +\v 18 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, +\q2 “\w Behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w sling|strong="H7049"\w* \w out|strong="H4672"\w* \w the|strong="H3588"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* land \w at|strong="H3427"\w* \w this|strong="H2063"\w* \w time|strong="H6471"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w distress|strong="H6887"\w* \w them|strong="H1992"\w*, \w that|strong="H3588"\w* \w they|strong="H1992"\w* \w may|strong="H3068"\w* feel \w it|strong="H3588"\w*.” +\q1 +\v 19 Woe \w is|strong="H2088"\w* \w me|strong="H5921"\w* \w because|strong="H5921"\w* \w of|strong="H5921"\w* \w my|strong="H5921"\w* \w injury|strong="H7667"\w*! +\q2 \w My|strong="H5921"\w* \w wound|strong="H4347"\w* \w is|strong="H2088"\w* \w serious|strong="H2470"\w*; +\q1 \w but|strong="H5921"\w* \w I|strong="H5921"\w* said, +\q2 “Truly \w this|strong="H2088"\w* \w is|strong="H2088"\w* \w my|strong="H5921"\w* \w grief|strong="H2483"\w*, \w and|strong="H2088"\w* \w I|strong="H5921"\w* \w must|strong="H5375"\w* \w bear|strong="H5375"\w* \w it|strong="H5921"\w*.” +\q1 +\v 20 \w My|strong="H3605"\w* \w tent|strong="H3407"\w* \w has|strong="H3318"\w* \w been|strong="H3605"\w* \w destroyed|strong="H7703"\w*, +\q2 \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w cords|strong="H4340"\w* \w are|strong="H1121"\w* \w broken|strong="H5423"\w*. +\q1 \w My|strong="H3605"\w* \w children|strong="H1121"\w* \w have|strong="H1121"\w* \w gone|strong="H3318"\w* \w away|strong="H5186"\w* \w from|strong="H3318"\w* \w me|strong="H3318"\w*, \w and|strong="H1121"\w* \w they|strong="H3605"\w* \w are|strong="H1121"\w* \w no|strong="H3605"\w* \w more|strong="H5750"\w*. +\q2 \w There|strong="H3605"\w* \w is|strong="H3605"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w to|strong="H3318"\w* \w spread|strong="H5186"\w* \w my|strong="H3605"\w* \w tent|strong="H3407"\w* \w any|strong="H3605"\w* \w more|strong="H5750"\w*, +\q2 \w to|strong="H3318"\w* \w set|strong="H6965"\w* \w up|strong="H6965"\w* \w my|strong="H3605"\w* \w curtains|strong="H3407"\w*. +\q1 +\v 21 \w For|strong="H3588"\w* \w the|strong="H3605"\w* \w shepherds|strong="H7462"\w* \w have|strong="H3068"\w* \w become|strong="H1197"\w* \w brutish|strong="H1197"\w*, +\q2 \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w inquired|strong="H1875"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 \w Therefore|strong="H3651"\w* \w they|strong="H3588"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w prospered|strong="H7919"\w*, +\q2 \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w flocks|strong="H4830"\w* \w have|strong="H3068"\w* \w scattered|strong="H6327"\w*. +\q1 +\v 22 \w The|strong="H7760"\w* \w voice|strong="H6963"\w* \w of|strong="H5892"\w* \w news|strong="H8052"\w*, \w behold|strong="H2009"\w*, \w it|strong="H7760"\w* comes, +\q2 \w and|strong="H3063"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w commotion|strong="H7494"\w* \w out|strong="H1419"\w* \w of|strong="H5892"\w* \w the|strong="H7760"\w* \w north|strong="H6828"\w* country, +\q1 \w to|strong="H3063"\w* \w make|strong="H7760"\w* \w the|strong="H7760"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w Judah|strong="H3063"\w* \w a|strong="H3068"\w* \w desolation|strong="H8077"\w*, +\q2 \w a|strong="H3068"\w* \w dwelling|strong="H4583"\w* \w place|strong="H7760"\w* \w of|strong="H5892"\w* \w jackals|strong="H8577"\w*. +\q1 +\v 23 \w Yahweh|strong="H3068"\w*, \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w man|strong="H3045"\w* \w is|strong="H3068"\w* \w not|strong="H3808"\w* \w in|strong="H1980"\w* \w himself|strong="H3045"\w*. +\q2 \w It|strong="H3588"\w* \w is|strong="H3068"\w* \w not|strong="H3808"\w* \w in|strong="H1980"\w* \w man|strong="H3045"\w* \w who|strong="H3068"\w* \w walks|strong="H1980"\w* \w to|strong="H1980"\w* \w direct|strong="H3559"\w* \w his|strong="H3068"\w* \w steps|strong="H6806"\w*. +\q1 +\v 24 \w Yahweh|strong="H3068"\w*, \w correct|strong="H3256"\w* \w me|strong="H3256"\w*, \w but|strong="H3068"\w* gently; +\q2 \w not|strong="H6435"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* anger, +\q2 \w lest|strong="H6435"\w* \w you|strong="H3256"\w* \w reduce|strong="H4591"\w* \w me|strong="H3256"\w* \w to|strong="H3068"\w* \w nothing|strong="H4591"\w*. +\q1 +\v 25 \w Pour|strong="H8210"\w* \w out|strong="H8210"\w* \w your|strong="H5921"\w* \w wrath|strong="H2534"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w* \w that|strong="H3588"\w* don’t \w know|strong="H3045"\w* \w you|strong="H3588"\w*, +\q2 \w and|strong="H1471"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w families|strong="H4940"\w* \w that|strong="H3588"\w* don’t \w call|strong="H7121"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w name|strong="H8034"\w*; +\q1 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3045"\w* \w devoured|strong="H3615"\w* \w Jacob|strong="H3290"\w*. +\q2 \w Yes|strong="H3588"\w*, \w they|strong="H3588"\w* \w have|strong="H3045"\w* \w devoured|strong="H3615"\w* \w him|strong="H7121"\w*, \w consumed|strong="H3615"\w* \w him|strong="H7121"\w*, +\q2 \w and|strong="H1471"\w* \w have|strong="H3045"\w* \w laid|strong="H8074"\w* \w waste|strong="H8074"\w* \w his|strong="H7121"\w* \w habitation|strong="H5116"\w*. +\c 11 +\p +\v 1 \w The|strong="H3068"\w* \w word|strong="H1697"\w* \w that|strong="H3068"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w* \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Hear|strong="H8085"\w* \w the|strong="H5921"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w this|strong="H2063"\w* \w covenant|strong="H1285"\w*, \w and|strong="H3063"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H5921"\w* men \w of|strong="H1697"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w to|strong="H1696"\w* \w the|strong="H5921"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1697"\w* \w Jerusalem|strong="H3389"\w*; +\v 3 \w and|strong="H3478"\w* \w say|strong="H1697"\w* \w to|strong="H3478"\w* \w them|strong="H8085"\w*, \w Yahweh|strong="H3068"\w*, \w the|strong="H8085"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*: ‘Cursed \w is|strong="H3068"\w* \w the|strong="H8085"\w* man \w who|strong="H3068"\w* doesn’t \w hear|strong="H8085"\w* \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w this|strong="H2063"\w* \w covenant|strong="H1285"\w*, +\v 4 \w which|strong="H5971"\w* \w I|strong="H3117"\w* \w commanded|strong="H6680"\w* \w your|strong="H3605"\w* fathers \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H5971"\w* \w I|strong="H3117"\w* \w brought|strong="H3318"\w* \w them|strong="H6213"\w* \w out|strong="H3318"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* land \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w*, \w out|strong="H3318"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w iron|strong="H1270"\w* \w furnace|strong="H3564"\w*,’ \w saying|strong="H6963"\w*, ‘\w Obey|strong="H8085"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w* \w and|strong="H3117"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w*, according \w to|strong="H3318"\w* \w all|strong="H3605"\w* \w which|strong="H5971"\w* \w I|strong="H3117"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w*; \w so|strong="H6213"\w* \w you|strong="H6680"\w* \w shall|strong="H5971"\w* \w be|strong="H1961"\w* \w my|strong="H8085"\w* \w people|strong="H5971"\w*, \w and|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w your|strong="H3605"\w* God; +\v 5 \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w may|strong="H3068"\w* \w establish|strong="H6965"\w* \w the|strong="H5414"\w* \w oath|strong="H7621"\w* \w which|strong="H3068"\w* \w I|strong="H3117"\w* \w swore|strong="H7650"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* fathers, \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w a|strong="H3068"\w* land \w flowing|strong="H2100"\w* \w with|strong="H2100"\w* \w milk|strong="H2461"\w* \w and|strong="H6965"\w* \w honey|strong="H1706"\w*,’ \w as|strong="H3117"\w* \w it|strong="H5414"\w* \w is|strong="H3068"\w* \w today|strong="H3117"\w*.” +\p \w Then|strong="H6030"\w* \w I|strong="H3117"\w* \w answered|strong="H6030"\w*, \w and|strong="H6965"\w* \w said|strong="H6030"\w*, “Amen, \w Yahweh|strong="H3068"\w*.” +\p +\v 6 \w Yahweh|strong="H3068"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w me|strong="H7121"\w*, “\w Proclaim|strong="H7121"\w* \w all|strong="H3605"\w* \w these|strong="H2063"\w* \w words|strong="H1697"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w streets|strong="H2351"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, \w saying|strong="H1697"\w*, ‘\w Hear|strong="H8085"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w this|strong="H2063"\w* \w covenant|strong="H1285"\w*, \w and|strong="H3063"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w*. +\v 7 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w earnestly|strong="H5749"\w* \w protested|strong="H5749"\w* \w to|strong="H5704"\w* \w your|strong="H8085"\w* fathers \w in|strong="H8085"\w* \w the|strong="H8085"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w brought|strong="H5927"\w* \w them|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H5704"\w* \w of|strong="H3117"\w* \w the|strong="H8085"\w* land \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, \w rising|strong="H7925"\w* \w early|strong="H7925"\w* \w and|strong="H3117"\w* \w protesting|strong="H5749"\w*, \w saying|strong="H6963"\w*, “\w Obey|strong="H8085"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*.” +\v 8 \w Yet|strong="H3808"\w* \w they|strong="H3808"\w* didn’t \w obey|strong="H8085"\w*, \w nor|strong="H3808"\w* \w turn|strong="H5186"\w* \w their|strong="H3605"\w* \w ear|strong="H8085"\w*, \w but|strong="H3808"\w* \w everyone|strong="H3605"\w* \w walked|strong="H3212"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w stubbornness|strong="H8307"\w* \w of|strong="H1697"\w* \w their|strong="H3605"\w* \w evil|strong="H7451"\w* \w heart|strong="H3820"\w*. \w Therefore|strong="H5921"\w* \w I|strong="H5921"\w* \w brought|strong="H3212"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w this|strong="H2063"\w* \w covenant|strong="H1285"\w*, \w which|strong="H1697"\w* \w I|strong="H5921"\w* \w commanded|strong="H6680"\w* \w them|strong="H5921"\w* \w to|strong="H3212"\w* \w do|strong="H6213"\w*, \w but|strong="H3808"\w* \w they|strong="H3808"\w* didn’t \w do|strong="H6213"\w* \w them|strong="H5921"\w*.’” +\p +\v 9 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w me|strong="H4672"\w*, “\w A|strong="H3068"\w* \w conspiracy|strong="H7195"\w* \w is|strong="H3068"\w* \w found|strong="H4672"\w* \w among|strong="H3427"\w* \w the|strong="H3068"\w* men \w of|strong="H3068"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w among|strong="H3427"\w* \w the|strong="H3068"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*. +\v 10 \w They|strong="H1992"\w* \w have|strong="H3478"\w* \w turned|strong="H7725"\w* \w back|strong="H7725"\w* \w to|strong="H1980"\w* \w the|strong="H5921"\w* \w iniquities|strong="H5771"\w* \w of|strong="H1004"\w* \w their|strong="H8085"\w* \w forefathers|strong="H7223"\w*, \w who|strong="H3478"\w* \w refused|strong="H3985"\w* \w to|strong="H1980"\w* \w hear|strong="H8085"\w* \w my|strong="H8085"\w* \w words|strong="H1697"\w*. \w They|strong="H1992"\w* \w have|strong="H3478"\w* \w gone|strong="H1980"\w* \w after|strong="H5921"\w* other \w gods|strong="H1980"\w* \w to|strong="H1980"\w* \w serve|strong="H5647"\w* \w them|strong="H1992"\w*. \w The|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w and|strong="H1980"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w have|strong="H3478"\w* \w broken|strong="H6565"\w* \w my|strong="H8085"\w* \w covenant|strong="H1285"\w* \w which|strong="H1992"\w* \w I|strong="H5921"\w* \w made|strong="H3772"\w* \w with|strong="H1980"\w* \w their|strong="H8085"\w* fathers. +\v 11 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w bring|strong="H3318"\w* \w evil|strong="H7451"\w* \w on|strong="H3068"\w* \w them|strong="H3318"\w* \w which|strong="H3068"\w* \w they|strong="H3651"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w able|strong="H3201"\w* \w to|strong="H3318"\w* \w escape|strong="H3318"\w*; \w and|strong="H3068"\w* \w they|strong="H3651"\w* \w will|strong="H3068"\w* \w cry|strong="H2199"\w* \w to|strong="H3318"\w* \w me|strong="H4480"\w*, \w but|strong="H3808"\w* \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H3318"\w* \w them|strong="H3318"\w*. +\v 12 \w Then|strong="H1980"\w* \w the|strong="H1980"\w* \w cities|strong="H5892"\w* \w of|strong="H3427"\w* \w Judah|strong="H3063"\w* \w and|strong="H1980"\w* \w the|strong="H1980"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Jerusalem|strong="H3389"\w* \w will|strong="H5892"\w* \w go|strong="H1980"\w* \w and|strong="H1980"\w* \w cry|strong="H2199"\w* \w to|strong="H1980"\w* \w the|strong="H1980"\w* \w gods|strong="H1980"\w* \w to|strong="H1980"\w* \w which|strong="H1992"\w* \w they|strong="H1992"\w* \w offer|strong="H6999"\w* \w incense|strong="H6999"\w*, \w but|strong="H3808"\w* \w they|strong="H1992"\w* \w will|strong="H5892"\w* \w not|strong="H3808"\w* \w save|strong="H3467"\w* \w them|strong="H1992"\w* \w at|strong="H3427"\w* \w all|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H1980"\w* \w time|strong="H6256"\w* \w of|strong="H3427"\w* \w their|strong="H1992"\w* \w trouble|strong="H7451"\w*. +\v 13 \w For|strong="H3588"\w* according \w to|strong="H1961"\w* \w the|strong="H3588"\w* \w number|strong="H4557"\w* \w of|strong="H5892"\w* \w your|strong="H7760"\w* \w cities|strong="H5892"\w* \w are|strong="H5892"\w* \w your|strong="H7760"\w* gods, \w Judah|strong="H3063"\w*; \w and|strong="H3063"\w* according \w to|strong="H1961"\w* \w the|strong="H3588"\w* \w number|strong="H4557"\w* \w of|strong="H5892"\w* \w the|strong="H3588"\w* \w streets|strong="H2351"\w* \w of|strong="H5892"\w* \w Jerusalem|strong="H3389"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w set|strong="H7760"\w* \w up|strong="H7760"\w* \w altars|strong="H4196"\w* \w to|strong="H1961"\w* \w the|strong="H3588"\w* \w shameful|strong="H1322"\w* \w thing|strong="H1322"\w*, \w even|strong="H3588"\w* \w altars|strong="H4196"\w* \w to|strong="H1961"\w* \w burn|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H1961"\w* \w Baal|strong="H1168"\w*.’ +\p +\v 14 “\w Therefore|strong="H3588"\w* don’t \w pray|strong="H6419"\w* \w for|strong="H3588"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*. Don’t \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w cry|strong="H7121"\w* \w or|strong="H8085"\w* \w prayer|strong="H8605"\w* \w for|strong="H3588"\w* \w them|strong="H7121"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H5971"\w* \w not|strong="H2088"\w* \w hear|strong="H8085"\w* \w them|strong="H7121"\w* \w in|strong="H8085"\w* \w the|strong="H8085"\w* \w time|strong="H6256"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w cry|strong="H7121"\w* \w to|strong="H6256"\w* \w me|strong="H7121"\w* \w because|strong="H3588"\w* \w of|strong="H5971"\w* \w their|strong="H5375"\w* \w trouble|strong="H7451"\w*. +\q1 +\v 15 \w What|strong="H4100"\w* \w has|strong="H4100"\w* \w my|strong="H5921"\w* \w beloved|strong="H3039"\w* \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* \w house|strong="H1004"\w*, +\q2 \w since|strong="H3588"\w* \w she|strong="H3588"\w* \w has|strong="H4100"\w* \w behaved|strong="H6213"\w* lewdly \w with|strong="H1004"\w* \w many|strong="H7227"\w*, +\q2 \w and|strong="H1004"\w* \w the|strong="H5921"\w* \w holy|strong="H6944"\w* \w flesh|strong="H1320"\w* \w has|strong="H4100"\w* \w passed|strong="H5674"\w* \w from|strong="H5921"\w* \w you|strong="H3588"\w*? +\q1 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w do|strong="H6213"\w* \w evil|strong="H7451"\w*, +\q2 \w then|strong="H6213"\w* \w you|strong="H3588"\w* \w rejoice|strong="H5937"\w*.” +\b +\q1 +\v 16 \w Yahweh|strong="H3068"\w* \w called|strong="H7121"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w*, “\w A|strong="H3068"\w* \w green|strong="H7488"\w* \w olive|strong="H2132"\w* \w tree|strong="H2132"\w*, +\q2 \w beautiful|strong="H3303"\w* \w with|strong="H3068"\w* \w goodly|strong="H8389"\w* \w fruit|strong="H6529"\w*.” +\q1 \w With|strong="H3068"\w* \w the|strong="H5921"\w* \w noise|strong="H6963"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* roar \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w kindled|strong="H3341"\w* \w fire|strong="H3341"\w* \w on|strong="H5921"\w* \w it|strong="H7121"\w*, +\q2 \w and|strong="H3068"\w* \w its|strong="H5921"\w* \w branches|strong="H1808"\w* \w are|strong="H3068"\w* \w broken|strong="H7489"\w*. +\m +\v 17 \w For|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w*, \w who|strong="H3068"\w* \w planted|strong="H5193"\w* \w you|strong="H5921"\w*, \w has|strong="H3068"\w* \w pronounced|strong="H1696"\w* \w evil|strong="H7451"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w*, \w because|strong="H5921"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w evil|strong="H7451"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w*, \w which|strong="H3068"\w* \w they|strong="H1992"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w to|strong="H1696"\w* \w themselves|strong="H1992"\w* \w in|strong="H5921"\w* \w provoking|strong="H3707"\w* \w me|strong="H5921"\w* \w to|strong="H1696"\w* \w anger|strong="H3707"\w* \w by|strong="H5921"\w* \w offering|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H1696"\w* \w Baal|strong="H1168"\w*. +\p +\v 18 \w Yahweh|strong="H3068"\w* gave \w me|strong="H7200"\w* \w knowledge|strong="H3045"\w* \w of|strong="H3068"\w* \w it|strong="H3045"\w*, \w and|strong="H3068"\w* \w I|strong="H3045"\w* \w knew|strong="H3045"\w* \w it|strong="H3045"\w*. \w Then|strong="H3045"\w* \w you|strong="H3045"\w* \w showed|strong="H7200"\w* \w me|strong="H7200"\w* \w their|strong="H3068"\w* \w doings|strong="H4611"\w*. +\v 19 \w But|strong="H3588"\w* \w I|strong="H3588"\w* \w was|strong="H8034"\w* \w like|strong="H2803"\w* \w a|strong="H3068"\w* gentle \w lamb|strong="H3532"\w* \w that|strong="H3588"\w* \w is|strong="H8034"\w* \w led|strong="H2986"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w slaughter|strong="H2873"\w*. \w I|strong="H3588"\w* didn’t \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3588"\w* \w devised|strong="H2803"\w* \w plans|strong="H4284"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*, saying, +\q1 “\w Let|strong="H3808"\w*’s \w destroy|strong="H7843"\w* \w the|strong="H5921"\w* \w tree|strong="H6086"\w* \w with|strong="H5921"\w* \w its|strong="H5921"\w* \w fruit|strong="H3899"\w*, +\q2 \w and|strong="H6086"\w* \w let|strong="H3808"\w*’s \w cut|strong="H3772"\w* \w him|strong="H5921"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w the|strong="H5921"\w* land \w of|strong="H8034"\w* \w the|strong="H5921"\w* \w living|strong="H2416"\w*, +\q2 \w that|strong="H3588"\w* \w his|strong="H5921"\w* \w name|strong="H8034"\w* \w may|strong="H8034"\w* \w be|strong="H3808"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w remembered|strong="H2142"\w*.” +\q1 +\v 20 \w But|strong="H3588"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w who|strong="H3068"\w* \w judges|strong="H8199"\w* \w righteously|strong="H6664"\w*, +\q2 \w who|strong="H3068"\w* tests \w the|strong="H7200"\w* \w heart|strong="H3820"\w* \w and|strong="H3068"\w* \w the|strong="H7200"\w* \w mind|strong="H3820"\w*, +\q1 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w see|strong="H7200"\w* \w your|strong="H3068"\w* \w vengeance|strong="H5360"\w* \w on|strong="H7200"\w* \w them|strong="H1992"\w*; +\q2 \w for|strong="H3588"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w revealed|strong="H1540"\w* \w my|strong="H3068"\w* \w cause|strong="H7379"\w*. +\p +\v 21 “\w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* \w men|strong="H8034"\w* \w of|strong="H3068"\w* \w Anathoth|strong="H6068"\w*, \w who|strong="H3068"\w* \w seek|strong="H1245"\w* \w your|strong="H3068"\w* \w life|strong="H5315"\w*, saying, ‘\w You|strong="H5921"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w prophesy|strong="H5012"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*, \w that|strong="H5315"\w* \w you|strong="H5921"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w* \w by|strong="H3027"\w* \w our|strong="H3068"\w* \w hand|strong="H3027"\w*’— +\v 22 \w therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1121"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*, ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w punish|strong="H6485"\w* \w them|strong="H5921"\w*. \w The|strong="H5921"\w* \w young|strong="H1121"\w* \w men|strong="H1121"\w* \w will|strong="H3068"\w* \w die|strong="H4191"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w*. \w Their|strong="H3068"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w their|strong="H3068"\w* \w daughters|strong="H1323"\w* \w will|strong="H3068"\w* \w die|strong="H4191"\w* \w by|strong="H5921"\w* \w famine|strong="H7458"\w*. +\v 23 \w There|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w no|strong="H3808"\w* \w remnant|strong="H7611"\w* \w to|strong="H1961"\w* \w them|strong="H1961"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w bring|strong="H7451"\w* \w evil|strong="H7451"\w* \w on|strong="H1961"\w* \w the|strong="H3588"\w* \w men|strong="H7451"\w* \w of|strong="H8141"\w* \w Anathoth|strong="H6068"\w*, \w even|strong="H3588"\w* \w the|strong="H3588"\w* \w year|strong="H8141"\w* \w of|strong="H8141"\w* \w their|strong="H3588"\w* \w visitation|strong="H6486"\w*.’” +\c 12 +\q1 +\v 1 \w You|strong="H3588"\w* \w are|strong="H7563"\w* \w righteous|strong="H6662"\w*, \w Yahweh|strong="H3068"\w*, +\q2 \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w contend|strong="H7378"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w*; +\q1 \w yet|strong="H3588"\w* \w I|strong="H3588"\w* \w would|strong="H3068"\w* \w like|strong="H1870"\w* \w to|strong="H1696"\w* \w plead|strong="H7378"\w* \w a|strong="H3068"\w* \w case|strong="H4941"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w*. +\q2 \w Why|strong="H4069"\w* \w does|strong="H3068"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w wicked|strong="H7563"\w* \w prosper|strong="H6743"\w*? +\q2 \w Why|strong="H4069"\w* \w are|strong="H7563"\w* \w they|strong="H3588"\w* \w all|strong="H3605"\w* \w at|strong="H3068"\w* \w ease|strong="H7951"\w* \w who|strong="H3605"\w* deal very treacherously? +\q1 +\v 2 \w You|strong="H6213"\w* \w have|strong="H1571"\w* \w planted|strong="H5193"\w* \w them|strong="H6213"\w*. \w Yes|strong="H1571"\w*, \w they|strong="H6310"\w* \w have|strong="H1571"\w* \w taken|strong="H8327"\w* \w root|strong="H8327"\w*. +\q2 \w They|strong="H6310"\w* \w grow|strong="H3212"\w*. \w Yes|strong="H1571"\w*, \w they|strong="H6310"\w* \w produce|strong="H6529"\w* \w fruit|strong="H6529"\w*. +\q1 \w You|strong="H6213"\w* \w are|strong="H6310"\w* \w near|strong="H7138"\w* \w in|strong="H6213"\w* \w their|strong="H6213"\w* \w mouth|strong="H6310"\w*, +\q2 \w and|strong="H3212"\w* \w far|strong="H7350"\w* \w from|strong="H7350"\w* \w their|strong="H6213"\w* \w heart|strong="H3629"\w*. +\q1 +\v 3 \w But|strong="H7200"\w* \w you|strong="H3117"\w*, \w Yahweh|strong="H3068"\w*, \w know|strong="H3045"\w* \w me|strong="H7200"\w*. +\q2 \w You|strong="H3117"\w* \w see|strong="H7200"\w* \w me|strong="H7200"\w*, \w and|strong="H3068"\w* test \w my|strong="H3068"\w* \w heart|strong="H3820"\w* \w toward|strong="H3068"\w* \w you|strong="H3117"\w*. +\q1 \w Pull|strong="H5423"\w* \w them|strong="H7200"\w* \w out|strong="H7200"\w* \w like|strong="H3820"\w* \w sheep|strong="H6629"\w* \w for|strong="H3068"\w* \w the|strong="H7200"\w* \w slaughter|strong="H2028"\w*, +\q2 \w and|strong="H3068"\w* \w prepare|strong="H6942"\w* \w them|strong="H7200"\w* \w for|strong="H3068"\w* \w the|strong="H7200"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w slaughter|strong="H2028"\w*. +\q1 +\v 4 \w How|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H3808"\w* \w the|strong="H3605"\w* \w land|strong="H7704"\w* mourn, +\q2 \w and|strong="H7200"\w* \w the|strong="H3605"\w* \w herbs|strong="H6212"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w country|strong="H7704"\w* \w wither|strong="H3001"\w*? +\q1 \w Because|strong="H3588"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* \w wickedness|strong="H7451"\w* \w of|strong="H3427"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w dwell|strong="H3427"\w* \w therein|strong="H3427"\w*, +\q2 \w the|strong="H3605"\w* animals \w and|strong="H7200"\w* \w birds|strong="H5775"\w* \w are|strong="H5775"\w* \w consumed|strong="H5595"\w*; +\q1 \w because|strong="H3588"\w* \w they|strong="H3588"\w* said, +\q2 “\w He|strong="H3588"\w* won’t \w see|strong="H7200"\w* \w our|strong="H3605"\w* latter end.” +\q1 +\v 5 “\w If|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H7965"\w* \w run|strong="H7323"\w* \w with|strong="H6213"\w* \w the|strong="H3588"\w* \w footmen|strong="H7273"\w*, +\q2 \w and|strong="H6213"\w* \w they|strong="H3588"\w* \w have|strong="H7965"\w* \w wearied|strong="H3811"\w* \w you|strong="H3588"\w*, +\q2 \w then|strong="H6213"\w* \w how|strong="H3588"\w* \w can|strong="H6213"\w* \w you|strong="H3588"\w* \w contend|strong="H8474"\w* \w with|strong="H6213"\w* \w horses|strong="H5483"\w*? +\q1 \w Though|strong="H3588"\w* \w in|strong="H6213"\w* \w a|strong="H3068"\w* \w land|strong="H1347"\w* \w of|strong="H1347"\w* \w peace|strong="H7965"\w* \w you|strong="H3588"\w* \w are|strong="H5483"\w* \w secure|strong="H7965"\w*, +\q2 \w yet|strong="H3588"\w* \w how|strong="H3588"\w* \w will|strong="H6213"\w* \w you|strong="H3588"\w* \w do|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H3588"\w* \w pride|strong="H1347"\w* \w of|strong="H1347"\w* \w the|strong="H3588"\w* \w Jordan|strong="H3383"\w*? +\q1 +\v 6 \w For|strong="H3588"\w* \w even|strong="H1571"\w* \w your|strong="H3588"\w* brothers, \w and|strong="H1004"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w your|strong="H3588"\w* father, +\q2 \w even|strong="H1571"\w* \w they|strong="H1992"\w* \w have|strong="H1571"\w* dealt treacherously \w with|strong="H1004"\w* \w you|strong="H3588"\w*! +\q2 \w Even|strong="H1571"\w* \w they|strong="H1992"\w* \w have|strong="H1571"\w* \w cried|strong="H7121"\w* \w aloud|strong="H4392"\w* \w after|strong="H3588"\w* \w you|strong="H3588"\w*! +\q1 Don’t believe \w them|strong="H1992"\w*, +\q2 \w though|strong="H3588"\w* \w they|strong="H1992"\w* \w speak|strong="H1696"\w* \w beautiful|strong="H2896"\w* \w words|strong="H2896"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*. +\b +\q1 +\v 7 “\w I|strong="H5414"\w* \w have|strong="H5414"\w* \w forsaken|strong="H5800"\w* \w my|strong="H5414"\w* \w house|strong="H1004"\w*. +\q2 \w I|strong="H5414"\w* \w have|strong="H5414"\w* \w cast|strong="H5414"\w* \w off|strong="H5800"\w* \w my|strong="H5414"\w* \w heritage|strong="H5159"\w*. +\q2 \w I|strong="H5414"\w* \w have|strong="H5414"\w* \w given|strong="H5414"\w* \w the|strong="H5414"\w* dearly \w beloved|strong="H3033"\w* \w of|strong="H1004"\w* \w my|strong="H5414"\w* \w soul|strong="H5315"\w* \w into|strong="H5414"\w* \w the|strong="H5414"\w* \w hand|strong="H3709"\w* \w of|strong="H1004"\w* \w her|strong="H5414"\w* enemies. +\q1 +\v 8 \w My|strong="H5414"\w* \w heritage|strong="H5159"\w* \w has|strong="H1961"\w* \w become|strong="H1961"\w* \w to|strong="H1961"\w* \w me|strong="H5414"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* lion \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w forest|strong="H3293"\w*. +\q2 \w She|strong="H5921"\w* \w has|strong="H1961"\w* \w uttered|strong="H5414"\w* \w her|strong="H5414"\w* \w voice|strong="H6963"\w* \w against|strong="H5921"\w* \w me|strong="H5414"\w*. +\q2 \w Therefore|strong="H3651"\w* \w I|strong="H5414"\w* \w have|strong="H1961"\w* \w hated|strong="H8130"\w* \w her|strong="H5414"\w*. +\q1 +\v 9 \w Is|strong="H3605"\w* \w my|strong="H3605"\w* \w heritage|strong="H5159"\w* \w to|strong="H3212"\w* \w me|strong="H5921"\w* \w as|strong="H5159"\w* \w a|strong="H3068"\w* \w speckled|strong="H6641"\w* \w bird|strong="H5861"\w* \w of|strong="H7704"\w* \w prey|strong="H5861"\w*? +\q2 Are \w the|strong="H3605"\w* \w birds|strong="H5861"\w* \w of|strong="H7704"\w* \w prey|strong="H5861"\w* \w against|strong="H5921"\w* \w her|strong="H3605"\w* \w all|strong="H3605"\w* \w around|strong="H5439"\w*? +\q1 \w Go|strong="H3212"\w*, assemble \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w animals|strong="H2416"\w* \w of|strong="H7704"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*. +\q2 \w Bring|strong="H3212"\w* \w them|strong="H5921"\w* \w to|strong="H3212"\w* devour. +\q1 +\v 10 \w Many|strong="H7227"\w* \w shepherds|strong="H7462"\w* \w have|strong="H7462"\w* \w destroyed|strong="H7843"\w* \w my|strong="H5414"\w* \w vineyard|strong="H3754"\w*. +\q2 \w They|strong="H5414"\w* \w have|strong="H7462"\w* trodden \w my|strong="H5414"\w* \w portion|strong="H2513"\w* \w under|strong="H2513"\w* foot. +\q2 \w They|strong="H5414"\w* \w have|strong="H7462"\w* \w made|strong="H5414"\w* \w my|strong="H5414"\w* \w pleasant|strong="H2532"\w* \w portion|strong="H2513"\w* \w a|strong="H3068"\w* \w desolate|strong="H8077"\w* \w wilderness|strong="H4057"\w*. +\q1 +\v 11 \w They|strong="H3588"\w* \w have|strong="H3605"\w* \w made|strong="H7760"\w* \w it|strong="H7760"\w* \w a|strong="H3068"\w* \w desolation|strong="H8077"\w*. +\q2 \w It|strong="H7760"\w* mourns \w to|strong="H5921"\w* \w me|strong="H5921"\w*, being \w desolate|strong="H8074"\w*. +\q1 \w The|strong="H3605"\w* \w whole|strong="H3605"\w* land \w is|strong="H3820"\w* \w made|strong="H7760"\w* \w desolate|strong="H8074"\w*, +\q2 \w because|strong="H3588"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w cares|strong="H3820"\w*. +\q1 +\v 12 \w Destroyers|strong="H7703"\w* \w have|strong="H3068"\w* come \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w bare|strong="H8205"\w* \w heights|strong="H8205"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w*; +\q2 \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* devours \w from|strong="H5921"\w* \w the|strong="H3605"\w* \w one|strong="H3605"\w* \w end|strong="H7097"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* land \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w other|strong="H3605"\w* \w end|strong="H7097"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* land. +\q2 \w No|strong="H3605"\w* \w flesh|strong="H1320"\w* \w has|strong="H3068"\w* \w peace|strong="H7965"\w*. +\q1 +\v 13 \w They|strong="H3068"\w* \w have|strong="H3068"\w* \w sown|strong="H2232"\w* \w wheat|strong="H2406"\w*, +\q2 \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w reaped|strong="H7114"\w* \w thorns|strong="H6975"\w*. +\q1 \w They|strong="H3068"\w* \w have|strong="H3068"\w* exhausted \w themselves|strong="H2470"\w*, +\q2 \w and|strong="H3068"\w* \w profit|strong="H3276"\w* \w nothing|strong="H3808"\w*. +\q1 \w You|strong="H3808"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* ashamed \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w fruits|strong="H8393"\w*, +\q2 \w because|strong="H3068"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w fierce|strong="H2740"\w* \w anger|strong="H2740"\w*.” +\b +\p +\v 14 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w Concerning|strong="H5921"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w evil|strong="H7451"\w* \w neighbors|strong="H7934"\w*, \w who|strong="H3605"\w* \w touch|strong="H5060"\w* \w the|strong="H3605"\w* \w inheritance|strong="H5159"\w* \w which|strong="H3068"\w* \w I|strong="H2005"\w* \w have|strong="H3068"\w* caused \w my|strong="H3605"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w inherit|strong="H5157"\w*: \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w pluck|strong="H5428"\w* \w them|strong="H5921"\w* \w up|strong="H5428"\w* \w from|strong="H5921"\w* \w off|strong="H5921"\w* \w their|strong="H3605"\w* \w land|strong="H5159"\w*, \w and|strong="H3063"\w* \w will|strong="H3068"\w* \w pluck|strong="H5428"\w* \w up|strong="H5428"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w from|strong="H5921"\w* \w among|strong="H8432"\w* \w them|strong="H5921"\w*. +\v 15 \w It|strong="H7725"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w that|strong="H1961"\w* \w after|strong="H1961"\w* \w I|strong="H1961"\w* \w have|strong="H1961"\w* \w plucked|strong="H5428"\w* \w them|strong="H7725"\w* \w up|strong="H5428"\w*, \w I|strong="H1961"\w* \w will|strong="H1961"\w* \w return|strong="H7725"\w* \w and|strong="H7725"\w* \w have|strong="H1961"\w* \w compassion|strong="H7355"\w* \w on|strong="H7355"\w* \w them|strong="H7725"\w*. \w I|strong="H1961"\w* \w will|strong="H1961"\w* \w bring|strong="H7725"\w* \w them|strong="H7725"\w* \w again|strong="H7725"\w*, \w every|strong="H7725"\w* man \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w heritage|strong="H5159"\w*, \w and|strong="H7725"\w* \w every|strong="H7725"\w* man \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w land|strong="H5159"\w*. +\v 16 \w It|strong="H8432"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w*, \w if|strong="H1961"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* \w diligently|strong="H3925"\w* \w learn|strong="H3925"\w* \w the|strong="H8432"\w* \w ways|strong="H1870"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w*, \w to|strong="H3068"\w* \w swear|strong="H7650"\w* \w by|strong="H7650"\w* \w my|strong="H3068"\w* \w name|strong="H8034"\w*, ‘\w As|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*;’ \w even|strong="H1129"\w* \w as|strong="H1961"\w* \w they|strong="H3068"\w* \w taught|strong="H3925"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w to|strong="H3068"\w* \w swear|strong="H7650"\w* \w by|strong="H7650"\w* \w Baal|strong="H1168"\w*, \w then|strong="H1961"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w built|strong="H1129"\w* \w up|strong="H1129"\w* \w in|strong="H3068"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w*. +\v 17 \w But|strong="H3808"\w* \w if|strong="H1931"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w hear|strong="H8085"\w*, \w then|strong="H8085"\w* \w I|strong="H3808"\w* \w will|strong="H3068"\w* \w pluck|strong="H5428"\w* \w up|strong="H5428"\w* \w that|strong="H8085"\w* \w nation|strong="H1471"\w*, plucking \w up|strong="H5428"\w* \w and|strong="H3068"\w* destroying \w it|strong="H1931"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\c 13 +\p +\v 1 \w Yahweh|strong="H3068"\w* said \w to|strong="H1980"\w* \w me|strong="H5921"\w*, “\w Go|strong="H1980"\w*, \w and|strong="H1980"\w* \w buy|strong="H7069"\w* \w yourself|strong="H5921"\w* \w a|strong="H3068"\w* \w linen|strong="H6593"\w* belt, \w and|strong="H1980"\w* \w put|strong="H7760"\w* \w it|strong="H7760"\w* \w on|strong="H5921"\w* \w your|strong="H3068"\w* \w waist|strong="H4975"\w*, \w and|strong="H1980"\w* don’t \w put|strong="H7760"\w* \w it|strong="H7760"\w* \w in|strong="H5921"\w* \w water|strong="H4325"\w*.” +\p +\v 2 \w So|strong="H7760"\w* \w I|strong="H5921"\w* \w bought|strong="H7069"\w* \w a|strong="H3068"\w* belt \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w and|strong="H3068"\w* \w put|strong="H7760"\w* \w it|strong="H7760"\w* \w on|strong="H5921"\w* \w my|strong="H3068"\w* \w waist|strong="H4975"\w*. +\p +\v 3 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w* \w the|strong="H3068"\w* \w second|strong="H8145"\w* \w time|strong="H8145"\w*, \w saying|strong="H1697"\w*, +\v 4 “\w Take|strong="H3947"\w* \w the|strong="H5921"\w* belt \w that|strong="H6965"\w* \w you|strong="H5921"\w* \w have|strong="H3947"\w* \w bought|strong="H7069"\w*, \w which|strong="H8033"\w* \w is|strong="H8033"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w waist|strong="H4975"\w*, \w and|strong="H6965"\w* \w arise|strong="H6965"\w*, \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H5921"\w* \w Euphrates|strong="H6578"\w*, \w and|strong="H6965"\w* \w hide|strong="H2934"\w* \w it|strong="H5921"\w* \w there|strong="H8033"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* cleft \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w rock|strong="H5553"\w*.” +\p +\v 5 \w So|strong="H6680"\w* \w I|strong="H6680"\w* \w went|strong="H3212"\w* \w and|strong="H3068"\w* \w hid|strong="H2934"\w* \w it|strong="H3068"\w* \w by|strong="H3068"\w* \w the|strong="H3068"\w* \w Euphrates|strong="H6578"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w commanded|strong="H6680"\w* \w me|strong="H6680"\w*. +\p +\v 6 \w After|strong="H7093"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w*, \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w me|strong="H3947"\w*, “\w Arise|strong="H6965"\w*, \w go|strong="H3212"\w* \w to|strong="H3068"\w* \w the|strong="H3947"\w* \w Euphrates|strong="H6578"\w*, \w and|strong="H6965"\w* \w take|strong="H3947"\w* \w the|strong="H3947"\w* belt \w from|strong="H3947"\w* \w there|strong="H8033"\w*, \w which|strong="H3068"\w* \w I|strong="H3117"\w* \w commanded|strong="H6680"\w* \w you|strong="H6680"\w* \w to|strong="H3068"\w* \w hide|strong="H2934"\w* \w there|strong="H8033"\w*.” +\p +\v 7 \w Then|strong="H2009"\w* \w I|strong="H2009"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H3605"\w* \w Euphrates|strong="H6578"\w*, \w and|strong="H3212"\w* \w dug|strong="H2658"\w*, \w and|strong="H3212"\w* \w took|strong="H3947"\w* \w the|strong="H3605"\w* belt \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w I|strong="H2009"\w* \w had|strong="H3808"\w* \w hidden|strong="H2934"\w* \w it|strong="H8033"\w*; \w and|strong="H3212"\w* \w behold|strong="H2009"\w*, \w the|strong="H3605"\w* belt \w was|strong="H4725"\w* \w ruined|strong="H7843"\w*. \w It|strong="H8033"\w* \w was|strong="H4725"\w* \w profitable|strong="H6743"\w* \w for|strong="H3605"\w* \w nothing|strong="H3808"\w*. +\p +\v 8 \w Then|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 9 “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w In|strong="H3068"\w* \w this|strong="H3541"\w* \w way|strong="H3541"\w* \w I|strong="H3541"\w* \w will|strong="H3068"\w* \w ruin|strong="H7843"\w* \w the|strong="H3541"\w* \w pride|strong="H1347"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w the|strong="H3541"\w* \w great|strong="H7227"\w* \w pride|strong="H1347"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*. +\v 10 \w This|strong="H2088"\w* \w evil|strong="H7451"\w* \w people|strong="H5971"\w*, \w who|strong="H3605"\w* \w refuse|strong="H3987"\w* \w to|strong="H1980"\w* \w hear|strong="H8085"\w* \w my|strong="H8085"\w* \w words|strong="H1697"\w*, \w who|strong="H3605"\w* \w walk|strong="H1980"\w* \w in|strong="H1980"\w* \w the|strong="H3605"\w* \w stubbornness|strong="H8307"\w* \w of|strong="H1697"\w* \w their|strong="H3605"\w* \w heart|strong="H3820"\w*, \w and|strong="H1980"\w* \w have|strong="H1961"\w* \w gone|strong="H1980"\w* \w after|strong="H1961"\w* \w other|strong="H2088"\w* \w gods|strong="H1980"\w* \w to|strong="H1980"\w* \w serve|strong="H5647"\w* \w them|strong="H1992"\w* \w and|strong="H1980"\w* \w to|strong="H1980"\w* \w worship|strong="H7812"\w* \w them|strong="H1992"\w*, \w will|strong="H1961"\w* \w even|strong="H3808"\w* \w be|strong="H1961"\w* \w as|strong="H1697"\w* \w this|strong="H2088"\w* belt, \w which|strong="H1992"\w* \w is|strong="H2088"\w* \w profitable|strong="H6743"\w* \w for|strong="H3605"\w* \w nothing|strong="H3808"\w*. +\v 11 \w For|strong="H3588"\w* \w as|strong="H1961"\w* \w the|strong="H3605"\w* belt \w clings|strong="H1692"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w waist|strong="H4975"\w* \w of|strong="H1004"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w*, \w so|strong="H3651"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w caused|strong="H1961"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w to|strong="H3478"\w* \w cling|strong="H1692"\w* \w to|strong="H3478"\w* \w me|strong="H1961"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*; ‘\w that|strong="H3588"\w* \w they|strong="H3588"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w to|strong="H3478"\w* \w me|strong="H1961"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w*, \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w name|strong="H8034"\w*, \w for|strong="H3588"\w* \w praise|strong="H8416"\w*, \w and|strong="H3063"\w* \w for|strong="H3588"\w* \w glory|strong="H8597"\w*; \w but|strong="H3588"\w* \w they|strong="H3588"\w* \w would|strong="H3068"\w* \w not|strong="H3808"\w* \w hear|strong="H8085"\w*.’ +\p +\v 12 “\w Therefore|strong="H3588"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w speak|strong="H1697"\w* \w to|strong="H3478"\w* \w them|strong="H3588"\w* \w this|strong="H2088"\w* \w word|strong="H1697"\w*: ‘\w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*, “\w Every|strong="H3605"\w* container \w should|strong="H3068"\w* \w be|strong="H3808"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w wine|strong="H3196"\w*.”’ \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w tell|strong="H3045"\w* \w you|strong="H3588"\w*, ‘\w Do|strong="H3068"\w* \w we|strong="H3068"\w* \w not|strong="H3808"\w* \w certainly|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w every|strong="H3605"\w* container \w should|strong="H3068"\w* \w be|strong="H3808"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w wine|strong="H3196"\w*?’ +\v 13 \w Then|strong="H4428"\w* \w tell|strong="H3605"\w* \w them|strong="H5921"\w*, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w fill|strong="H4390"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H4428"\w* \w this|strong="H2063"\w* land, \w even|strong="H3068"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w who|strong="H3605"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w David|strong="H1732"\w*’s \w throne|strong="H3678"\w*, \w the|strong="H3605"\w* \w priests|strong="H3548"\w*, \w the|strong="H3605"\w* \w prophets|strong="H5030"\w*, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*, \w with|strong="H4390"\w* \w drunkenness|strong="H7943"\w*. +\v 14 \w I|strong="H3808"\w* \w will|strong="H3068"\w* \w dash|strong="H5310"\w* \w them|strong="H7843"\w* \w one|strong="H3808"\w* \w against|strong="H3068"\w* \w another|strong="H3808"\w*, \w even|strong="H3808"\w* \w the|strong="H5002"\w* fathers \w and|strong="H1121"\w* \w the|strong="H5002"\w* \w sons|strong="H1121"\w* \w together|strong="H3162"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*: “\w I|strong="H3808"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w pity|strong="H2347"\w*, \w spare|strong="H2550"\w*, \w or|strong="H3808"\w* \w have|strong="H7355"\w* \w compassion|strong="H7355"\w*, \w that|strong="H3068"\w* \w I|strong="H3808"\w* \w should|strong="H3068"\w* \w not|strong="H3808"\w* \w destroy|strong="H7843"\w* \w them|strong="H7843"\w*.”’” +\q1 +\v 15 \w Hear|strong="H8085"\w*, \w and|strong="H3068"\w* \w give|strong="H1696"\w* \w ear|strong="H8085"\w*. +\q2 Don’t \w be|strong="H3068"\w* \w proud|strong="H1361"\w*, +\q2 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w*. +\q1 +\v 16 \w Give|strong="H5414"\w* \w glory|strong="H3519"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 \w before|strong="H2962"\w* \w he|strong="H3068"\w* \w causes|strong="H5414"\w* \w darkness|strong="H6205"\w*, +\q2 \w and|strong="H3068"\w* \w before|strong="H2962"\w* \w your|strong="H3068"\w* \w feet|strong="H7272"\w* \w stumble|strong="H5062"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w dark|strong="H2821"\w* \w mountains|strong="H2022"\w*, +\q1 \w and|strong="H3068"\w* \w while|strong="H5921"\w* \w you|strong="H5414"\w* \w look|strong="H6960"\w* \w for|strong="H5921"\w* \w light|strong="H7760"\w*, +\q2 \w he|strong="H3068"\w* \w turns|strong="H5921"\w* \w it|strong="H5414"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w shadow|strong="H6757"\w* \w of|strong="H3068"\w* \w death|strong="H6757"\w*, +\q2 \w and|strong="H3068"\w* \w makes|strong="H7760"\w* \w it|strong="H5414"\w* \w deep|strong="H6757"\w* \w darkness|strong="H6205"\w*. +\q1 +\v 17 \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w hear|strong="H8085"\w* \w it|strong="H3588"\w*, +\q2 \w my|strong="H8085"\w* \w soul|strong="H5315"\w* \w will|strong="H3068"\w* \w weep|strong="H1058"\w* \w in|strong="H3068"\w* \w secret|strong="H4565"\w* \w for|strong="H3588"\w* \w your|strong="H3068"\w* \w pride|strong="H1466"\w*. +\q1 \w My|strong="H8085"\w* \w eye|strong="H5869"\w* \w will|strong="H3068"\w* \w weep|strong="H1058"\w* \w bitterly|strong="H1058"\w*, +\q2 \w and|strong="H3068"\w* \w run|strong="H3381"\w* \w down|strong="H3381"\w* \w with|strong="H3068"\w* \w tears|strong="H1832"\w*, +\q2 \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w flock|strong="H5739"\w* \w has|strong="H3068"\w* \w been|strong="H3808"\w* \w taken|strong="H7617"\w* \w captive|strong="H7617"\w*. +\q1 +\v 18 Say \w to|strong="H3381"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w to|strong="H3381"\w* \w the|strong="H3588"\w* \w queen|strong="H1377"\w* \w mother|strong="H1377"\w*, +\q2 “\w Humble|strong="H8213"\w* yourselves. +\q1 \w Sit|strong="H3427"\w* \w down|strong="H3381"\w*, \w for|strong="H3588"\w* \w your|strong="H3588"\w* \w crowns|strong="H5850"\w* \w have|strong="H4428"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w*, +\q2 \w even|strong="H3588"\w* \w the|strong="H3588"\w* \w crown|strong="H5850"\w* \w of|strong="H4428"\w* \w your|strong="H3588"\w* \w glory|strong="H8597"\w*. +\q1 +\v 19 \w The|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w South|strong="H5045"\w* \w are|strong="H5892"\w* \w shut|strong="H5462"\w* \w up|strong="H5462"\w*, +\q2 \w and|strong="H3063"\w* \w there|strong="H7965"\w* \w is|strong="H3605"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w to|strong="H3063"\w* \w open|strong="H6605"\w* \w them|strong="H1540"\w*. +\q1 \w Judah|strong="H3063"\w* \w is|strong="H3605"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w captive|strong="H1540"\w*: \w all|strong="H3605"\w* \w of|strong="H5892"\w* \w them|strong="H1540"\w*. +\q2 \w They|strong="H1540"\w* \w are|strong="H5892"\w* \w wholly|strong="H7965"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w captive|strong="H1540"\w*. +\q1 +\v 20 \w Lift|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H5414"\w* \w eyes|strong="H5869"\w*, +\q2 \w and|strong="H5869"\w* \w see|strong="H7200"\w* \w those|strong="H5375"\w* who come \w from|strong="H5869"\w* \w the|strong="H7200"\w* \w north|strong="H6828"\w*. +\q1 Where \w is|strong="H5869"\w* \w the|strong="H7200"\w* \w flock|strong="H6629"\w* \w that|strong="H7200"\w* \w was|strong="H6629"\w* \w given|strong="H5414"\w* \w to|strong="H5414"\w* \w you|strong="H5414"\w*, +\q2 \w your|strong="H5414"\w* \w beautiful|strong="H8597"\w* \w flock|strong="H6629"\w*? +\q1 +\v 21 \w What|strong="H4100"\w* \w will|strong="H3808"\w* \w you|strong="H3588"\w* say \w when|strong="H3588"\w* \w he|strong="H3588"\w* sets \w over|strong="H5921"\w* \w you|strong="H3588"\w* \w as|strong="H3644"\w* \w head|strong="H7218"\w* \w those|strong="H5921"\w* \w whom|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* \w yourself|strong="H5921"\w* \w taught|strong="H3925"\w* \w to|strong="H5921"\w* \w be|strong="H3808"\w* friends \w to|strong="H5921"\w* \w you|strong="H3588"\w*? +\q2 Won’t \w sorrows|strong="H2256"\w* \w take|strong="H6485"\w* hold \w of|strong="H3205"\w* \w you|strong="H3588"\w*, \w as|strong="H3644"\w* \w of|strong="H3205"\w* \w a|strong="H3068"\w* \w woman|strong="H3205"\w* \w in|strong="H5921"\w* \w travail|strong="H3205"\w*? +\q1 +\v 22 \w If|strong="H3588"\w* \w you|strong="H3588"\w* say \w in|strong="H3588"\w* \w your|strong="H3588"\w* \w heart|strong="H3824"\w*, +\q2 “\w Why|strong="H4069"\w* \w have|strong="H5771"\w* these \w things|strong="H1540"\w* \w come|strong="H7122"\w* \w on|strong="H3824"\w* \w me|strong="H3824"\w*?” +\q1 \w Your|strong="H3588"\w* \w skirts|strong="H7757"\w* \w are|strong="H3824"\w* \w uncovered|strong="H1540"\w* \w because|strong="H3588"\w* \w of|strong="H7230"\w* \w the|strong="H3588"\w* \w greatness|strong="H7230"\w* \w of|strong="H7230"\w* \w your|strong="H3588"\w* \w iniquity|strong="H5771"\w*, +\q2 \w and|strong="H3824"\w* \w your|strong="H3588"\w* \w heels|strong="H6119"\w* suffer \w violence|strong="H2554"\w*. +\q1 +\v 23 \w Can|strong="H3201"\w* \w the|strong="H1571"\w* \w Ethiopian|strong="H3569"\w* \w change|strong="H2015"\w* \w his|strong="H2015"\w* \w skin|strong="H5785"\w*, +\q2 \w or|strong="H1571"\w* \w the|strong="H1571"\w* \w leopard|strong="H5246"\w* \w his|strong="H2015"\w* \w spots|strong="H2272"\w*? +\q1 \w Then|strong="H1571"\w* \w may|strong="H3201"\w* \w you|strong="H7489"\w* \w also|strong="H1571"\w* \w do|strong="H3190"\w* \w good|strong="H3190"\w*, +\q2 \w who|strong="H7489"\w* \w are|strong="H1571"\w* \w accustomed|strong="H3928"\w* \w to|strong="H3201"\w* \w do|strong="H3190"\w* \w evil|strong="H7489"\w*. +\b +\q1 +\v 24 “Therefore I \w will|strong="H7307"\w* \w scatter|strong="H6327"\w* \w them|strong="H5674"\w* +\q2 \w as|strong="H4057"\w* \w the|strong="H5674"\w* \w stubble|strong="H7179"\w* \w that|strong="H7307"\w* \w passes|strong="H5674"\w* \w away|strong="H5674"\w* +\q2 \w by|strong="H5674"\w* \w the|strong="H5674"\w* \w wind|strong="H7307"\w* \w of|strong="H7307"\w* \w the|strong="H5674"\w* \w wilderness|strong="H4057"\w*. +\q1 +\v 25 \w This|strong="H2088"\w* \w is|strong="H3068"\w* \w your|strong="H3068"\w* \w lot|strong="H1486"\w*, +\q2 \w the|strong="H5002"\w* \w portion|strong="H4490"\w* \w measured|strong="H4055"\w* \w to|strong="H3068"\w* \w you|strong="H2088"\w* \w from|strong="H3068"\w* \w me|strong="H7911"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q1 “\w because|strong="H3068"\w* \w you|strong="H2088"\w* \w have|strong="H3068"\w* \w forgotten|strong="H7911"\w* \w me|strong="H7911"\w*, +\q2 \w and|strong="H3068"\w* trusted \w in|strong="H3068"\w* \w falsehood|strong="H8267"\w*.” +\q1 +\v 26 \w Therefore|strong="H5921"\w* \w I|strong="H5921"\w* \w will|strong="H1571"\w* \w also|strong="H1571"\w* uncover \w your|strong="H5921"\w* \w skirts|strong="H7757"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w face|strong="H6440"\w*, +\q2 \w and|strong="H6440"\w* \w your|strong="H5921"\w* \w shame|strong="H7036"\w* \w will|strong="H1571"\w* \w appear|strong="H7200"\w*. +\q1 +\v 27 \w I|strong="H5921"\w* \w have|strong="H7200"\w* \w seen|strong="H7200"\w* \w your|strong="H5921"\w* \w abominations|strong="H8251"\w*, \w even|strong="H5750"\w* \w your|strong="H5921"\w* \w adulteries|strong="H5004"\w* +\q2 \w and|strong="H3389"\w* \w your|strong="H5921"\w* \w neighing|strong="H4684"\w*, \w the|strong="H5921"\w* \w lewdness|strong="H2154"\w* \w of|strong="H7704"\w* \w your|strong="H5921"\w* \w prostitution|strong="H2184"\w*, +\q2 \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w hills|strong="H1389"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w field|strong="H7704"\w*. +\q1 Woe \w to|strong="H5921"\w* \w you|strong="H5921"\w*, \w Jerusalem|strong="H3389"\w*! +\q2 \w You|strong="H5921"\w* \w will|strong="H3389"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* made \w clean|strong="H2891"\w*. +\q2 \w How|strong="H4970"\w* \w long|strong="H5750"\w* \w will|strong="H3389"\w* \w it|strong="H5921"\w* \w yet|strong="H5750"\w* \w be|strong="H3808"\w*?” +\c 14 +\p +\v 1 \w This|strong="H1697"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w that|strong="H3068"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* \w drought|strong="H1226"\w*: +\q1 +\v 2 “\w Judah|strong="H3063"\w* mourns, +\q2 \w and|strong="H3063"\w* \w its|strong="H5927"\w* \w gates|strong="H8179"\w* languish. +\q1 \w They|strong="H3389"\w* \w sit|strong="H6937"\w* \w in|strong="H3063"\w* \w black|strong="H6937"\w* \w on|strong="H5927"\w* \w the|strong="H5927"\w* ground. +\q2 \w The|strong="H5927"\w* \w cry|strong="H6682"\w* \w of|strong="H8179"\w* \w Jerusalem|strong="H3389"\w* \w goes|strong="H5927"\w* \w up|strong="H5927"\w*. +\q1 +\v 3 \w Their|strong="H7725"\w* nobles \w send|strong="H7971"\w* \w their|strong="H7725"\w* \w little|strong="H6810"\w* \w ones|strong="H6810"\w* \w to|strong="H7725"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w*. +\q2 \w They|strong="H3808"\w* \w come|strong="H4672"\w* \w to|strong="H7725"\w* \w the|strong="H5921"\w* \w cisterns|strong="H1356"\w*, +\q2 \w and|strong="H7971"\w* \w find|strong="H4672"\w* \w no|strong="H3808"\w* \w water|strong="H4325"\w*. +\q1 \w They|strong="H3808"\w* \w return|strong="H7725"\w* \w with|strong="H5921"\w* \w their|strong="H7725"\w* \w vessels|strong="H3627"\w* \w empty|strong="H7387"\w*. +\q2 \w They|strong="H3808"\w* \w are|strong="H4325"\w* disappointed \w and|strong="H7971"\w* \w confounded|strong="H3637"\w*, +\q2 \w and|strong="H7971"\w* \w cover|strong="H2645"\w* \w their|strong="H7725"\w* \w heads|strong="H7218"\w*. +\q1 +\v 4 \w Because|strong="H3588"\w* \w of|strong="H7218"\w* \w the|strong="H3588"\w* ground \w which|strong="H3588"\w* \w is|strong="H1961"\w* \w cracked|strong="H2865"\w*, +\q2 \w because|strong="H3588"\w* \w no|strong="H3808"\w* \w rain|strong="H1653"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w in|strong="H3808"\w* \w the|strong="H3588"\w* land, +\q1 \w the|strong="H3588"\w* plowmen \w are|strong="H1961"\w* disappointed. +\q2 \w They|strong="H3588"\w* \w cover|strong="H2645"\w* \w their|strong="H3588"\w* \w heads|strong="H7218"\w*. +\q1 +\v 5 \w Yes|strong="H3588"\w*, \w the|strong="H3588"\w* doe \w in|strong="H3808"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w* \w also|strong="H1571"\w* calves \w and|strong="H7704"\w* \w forsakes|strong="H5800"\w* \w her|strong="H3205"\w* \w young|strong="H3205"\w*, +\q2 \w because|strong="H3588"\w* \w there|strong="H1961"\w* \w is|strong="H1571"\w* \w no|strong="H3808"\w* \w grass|strong="H1877"\w*. +\q1 +\v 6 \w The|strong="H5921"\w* \w wild|strong="H6501"\w* \w donkeys|strong="H6501"\w* \w stand|strong="H5975"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w bare|strong="H8205"\w* \w heights|strong="H8205"\w*. +\q2 \w They|strong="H3588"\w* \w pant|strong="H7602"\w* \w for|strong="H3588"\w* \w air|strong="H7307"\w* \w like|strong="H7307"\w* \w jackals|strong="H8577"\w*. +\q1 \w Their|strong="H5921"\w* \w eyes|strong="H5869"\w* \w fail|strong="H3615"\w*, +\q2 \w because|strong="H3588"\w* \w there|strong="H5975"\w* \w is|strong="H7307"\w* \w no|strong="H5975"\w* \w vegetation|strong="H6212"\w*. +\q1 +\v 7 \w Though|strong="H3588"\w* \w our|strong="H3068"\w* \w iniquities|strong="H5771"\w* \w testify|strong="H6030"\w* \w against|strong="H2398"\w* \w us|strong="H6213"\w*, +\q2 \w work|strong="H6213"\w* \w for|strong="H3588"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w*’s \w sake|strong="H4616"\w*, \w Yahweh|strong="H3068"\w*; +\q1 \w for|strong="H3588"\w* \w our|strong="H3068"\w* rebellions \w are|strong="H3068"\w* \w many|strong="H7231"\w*. +\q2 \w We|strong="H3588"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w you|strong="H3588"\w*. +\q1 +\v 8 \w You|strong="H4100"\w* \w hope|strong="H4723"\w* \w of|strong="H6256"\w* \w Israel|strong="H3478"\w*, +\q2 \w its|strong="H1961"\w* \w Savior|strong="H3467"\w* \w in|strong="H3478"\w* \w the|strong="H1961"\w* \w time|strong="H6256"\w* \w of|strong="H6256"\w* \w trouble|strong="H6869"\w*, +\q1 \w why|strong="H4100"\w* \w should|strong="H4100"\w* \w you|strong="H4100"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w foreigner|strong="H1616"\w* \w in|strong="H3478"\w* \w the|strong="H1961"\w* land, +\q2 \w and|strong="H3478"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* wayfaring man \w who|strong="H1616"\w* \w turns|strong="H5186"\w* \w aside|strong="H5186"\w* \w to|strong="H3478"\w* \w stay|strong="H3885"\w* \w for|strong="H3478"\w* \w a|strong="H3068"\w* \w night|strong="H3885"\w*? +\q1 +\v 9 \w Why|strong="H4100"\w* \w should|strong="H3068"\w* \w you|strong="H5921"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* scared \w man|strong="H1368"\w*, +\q2 \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w* \w who|strong="H3068"\w* \w can|strong="H3201"\w*’t \w save|strong="H3467"\w*? +\q1 \w Yet|strong="H3068"\w* \w you|strong="H5921"\w*, \w Yahweh|strong="H3068"\w*, \w are|strong="H4100"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H7130"\w* \w of|strong="H3068"\w* \w us|strong="H5921"\w*, +\q2 \w and|strong="H3068"\w* \w we|strong="H3068"\w* \w are|strong="H4100"\w* \w called|strong="H7121"\w* \w by|strong="H5921"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w*. +\q2 Don’t \w leave|strong="H3240"\w* \w us|strong="H5921"\w*. +\p +\v 10 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w to|strong="H3068"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*: +\q1 “\w Even|strong="H3651"\w* \w so|strong="H3651"\w* \w they|strong="H3651"\w* \w have|strong="H3068"\w* loved \w to|strong="H3068"\w* \w wander|strong="H5128"\w*. +\q2 \w They|strong="H3651"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w restrained|strong="H2820"\w* \w their|strong="H3068"\w* \w feet|strong="H7272"\w*. +\q1 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w does|strong="H3808"\w* \w not|strong="H3808"\w* \w accept|strong="H7521"\w* \w them|strong="H6485"\w*. +\q2 \w Now|strong="H6258"\w* \w he|strong="H3651"\w* \w will|strong="H3068"\w* \w remember|strong="H2142"\w* \w their|strong="H3068"\w* \w iniquity|strong="H5771"\w*, +\q2 \w and|strong="H3068"\w* \w punish|strong="H6485"\w* \w them|strong="H6485"\w* \w for|strong="H3068"\w* \w their|strong="H3068"\w* \w sins|strong="H2403"\w*.” +\p +\v 11 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w me|strong="H1157"\w*, “Don’t \w pray|strong="H6419"\w* \w for|strong="H1157"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w for|strong="H1157"\w* \w their|strong="H3068"\w* \w good|strong="H2896"\w*. +\v 12 \w When|strong="H3588"\w* \w they|strong="H3588"\w* \w fast|strong="H6684"\w*, \w I|strong="H3588"\w* \w will|strong="H2719"\w* \w not|strong="H3588"\w* \w hear|strong="H8085"\w* \w their|strong="H8085"\w* \w cry|strong="H7440"\w*; \w and|strong="H2719"\w* \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w offer|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w* \w and|strong="H2719"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w I|strong="H3588"\w* \w will|strong="H2719"\w* \w not|strong="H3588"\w* \w accept|strong="H7521"\w* \w them|strong="H3615"\w*; \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H2719"\w* \w consume|strong="H3615"\w* \w them|strong="H3615"\w* \w by|strong="H5927"\w* \w the|strong="H8085"\w* \w sword|strong="H2719"\w*, \w by|strong="H5927"\w* \w famine|strong="H7458"\w*, \w and|strong="H2719"\w* \w by|strong="H5927"\w* \w pestilence|strong="H1698"\w*.” +\p +\v 13 \w Then|strong="H1961"\w* \w I|strong="H3588"\w* said, “Ah, \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*! \w Behold|strong="H2009"\w*, \w the|strong="H7200"\w* \w prophets|strong="H5030"\w* \w tell|strong="H7200"\w* \w them|strong="H5414"\w*, ‘\w You|strong="H3588"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w sword|strong="H2719"\w*, \w neither|strong="H3808"\w* \w will|strong="H1961"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w famine|strong="H7458"\w*; \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w you|strong="H3588"\w* assured \w peace|strong="H7965"\w* \w in|strong="H4725"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*.’” +\p +\v 14 \w Then|strong="H1696"\w* \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H7971"\w*, “\w The|strong="H3068"\w* \w prophets|strong="H5030"\w* \w prophesy|strong="H5012"\w* \w lies|strong="H8267"\w* \w in|strong="H3068"\w* \w my|strong="H3068"\w* \w name|strong="H8034"\w*. \w I|strong="H6680"\w* didn’t \w send|strong="H7971"\w* \w them|strong="H1992"\w*. \w I|strong="H6680"\w* didn’t \w command|strong="H6680"\w* \w them|strong="H1992"\w*. \w I|strong="H6680"\w* didn’t \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H1992"\w*. \w They|strong="H1992"\w* \w prophesy|strong="H5012"\w* \w to|strong="H1696"\w* \w you|strong="H6680"\w* \w a|strong="H3068"\w* \w lying|strong="H8267"\w* \w vision|strong="H2377"\w*, \w divination|strong="H7081"\w*, \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w thing|strong="H8267"\w* \w of|strong="H3068"\w* \w nothing|strong="H3808"\w*, \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w deceit|strong="H8267"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* own \w heart|strong="H3820"\w*. +\v 15 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* \w prophets|strong="H5030"\w* \w who|strong="H3068"\w* \w prophesy|strong="H5012"\w* \w in|strong="H5921"\w* \w my|strong="H3068"\w* \w name|strong="H8034"\w*, \w but|strong="H3808"\w* \w I|strong="H3541"\w* didn’t \w send|strong="H7971"\w* \w them|strong="H1992"\w*, \w yet|strong="H3068"\w* \w they|strong="H1992"\w* say, ‘\w Sword|strong="H2719"\w* \w and|strong="H3068"\w* \w famine|strong="H7458"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w in|strong="H5921"\w* \w this|strong="H2063"\w* land.’ \w Those|strong="H1992"\w* \w prophets|strong="H5030"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w consumed|strong="H8552"\w* \w by|strong="H5921"\w* \w sword|strong="H2719"\w* \w and|strong="H3068"\w* \w famine|strong="H7458"\w*. +\v 16 \w The|strong="H6440"\w* \w people|strong="H5971"\w* \w to|strong="H1961"\w* \w whom|strong="H1992"\w* \w they|strong="H1992"\w* \w prophesy|strong="H5012"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w cast|strong="H7993"\w* \w out|strong="H8210"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w streets|strong="H2351"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w* \w because|strong="H5921"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w famine|strong="H7458"\w* \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w*. \w They|strong="H1992"\w* \w will|strong="H1961"\w* \w have|strong="H1961"\w* \w no|strong="H6440"\w* \w one|strong="H1121"\w* \w to|strong="H1961"\w* \w bury|strong="H6912"\w* \w them|strong="H1992"\w*—\w them|strong="H1992"\w*, \w their|strong="H6440"\w* wives, \w their|strong="H6440"\w* \w sons|strong="H1121"\w*, \w or|strong="H1121"\w* \w their|strong="H6440"\w* \w daughters|strong="H1323"\w*, \w for|strong="H5921"\w* \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w pour|strong="H8210"\w* \w their|strong="H6440"\w* \w wickedness|strong="H7451"\w* \w on|strong="H5921"\w* \w them|strong="H1992"\w*. +\p +\v 17 “\w You|strong="H3588"\w* \w shall|strong="H5971"\w* \w say|strong="H1697"\w* \w this|strong="H2088"\w* \w word|strong="H1697"\w* \w to|strong="H3381"\w* \w them|strong="H3381"\w*: +\q1 “‘\w Let|strong="H3381"\w* \w my|strong="H3588"\w* \w eyes|strong="H5869"\w* \w run|strong="H3381"\w* \w down|strong="H3381"\w* \w with|strong="H1697"\w* \w tears|strong="H1832"\w* \w night|strong="H3915"\w* \w and|strong="H1419"\w* \w day|strong="H3119"\w*, +\q2 \w and|strong="H1419"\w* \w let|strong="H3381"\w* \w them|strong="H3381"\w* \w not|strong="H2088"\w* \w cease|strong="H1820"\w*; +\q1 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w virgin|strong="H1330"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w my|strong="H3588"\w* \w people|strong="H5971"\w* \w is|strong="H2088"\w* \w broken|strong="H7665"\w* \w with|strong="H1697"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w breach|strong="H7667"\w*, +\q2 \w with|strong="H1697"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w grievous|strong="H2470"\w* \w wound|strong="H4347"\w*. +\q1 +\v 18 \w If|strong="H3588"\w* \w I|strong="H3588"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w*, +\q2 \w then|strong="H3318"\w* \w behold|strong="H2009"\w*, \w the|strong="H3588"\w* \w slain|strong="H2491"\w* \w with|strong="H3045"\w* \w the|strong="H3588"\w* \w sword|strong="H2719"\w*! +\q1 \w If|strong="H3588"\w* \w I|strong="H3588"\w* enter \w into|strong="H3318"\w* \w the|strong="H3588"\w* \w city|strong="H5892"\w*, +\q2 \w then|strong="H3318"\w* \w behold|strong="H2009"\w*, \w those|strong="H3318"\w* \w who|strong="H3548"\w* \w are|strong="H5892"\w* \w sick|strong="H8463"\w* \w with|strong="H3045"\w* \w famine|strong="H7458"\w*! +\q1 \w For|strong="H3588"\w* \w both|strong="H1571"\w* \w the|strong="H3588"\w* \w prophet|strong="H5030"\w* \w and|strong="H3548"\w* \w the|strong="H3588"\w* \w priest|strong="H3548"\w* \w go|strong="H3318"\w* \w about|strong="H3045"\w* \w in|strong="H5892"\w* \w the|strong="H3588"\w* \w land|strong="H7704"\w*, +\q2 \w and|strong="H3548"\w* \w have|strong="H3045"\w* \w no|strong="H3808"\w* \w knowledge|strong="H3045"\w*.’” +\b +\q1 +\v 19 \w Have|strong="H3063"\w* \w you|strong="H5221"\w* \w utterly|strong="H3988"\w* \w rejected|strong="H3988"\w* \w Judah|strong="H3063"\w*? +\q2 \w Has|strong="H3063"\w* \w your|strong="H5221"\w* \w soul|strong="H5315"\w* \w loathed|strong="H1602"\w* \w Zion|strong="H6726"\w*? +\q1 \w Why|strong="H4069"\w* \w have|strong="H3063"\w* \w you|strong="H5221"\w* \w struck|strong="H5221"\w* \w us|strong="H5315"\w*, \w and|strong="H3063"\w* \w there|strong="H2009"\w* \w is|strong="H5315"\w* no \w healing|strong="H4832"\w* \w for|strong="H6960"\w* \w us|strong="H5315"\w*? +\q2 \w We|strong="H5315"\w* \w looked|strong="H6960"\w* \w for|strong="H6960"\w* \w peace|strong="H7965"\w*, \w but|strong="H2009"\w* no \w good|strong="H2896"\w* \w came|strong="H3063"\w*; +\q2 \w and|strong="H3063"\w* \w for|strong="H6960"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w of|strong="H6256"\w* \w healing|strong="H4832"\w*, \w and|strong="H3063"\w* \w behold|strong="H2009"\w*, dismay! +\q1 +\v 20 \w We|strong="H3588"\w* \w acknowledge|strong="H3045"\w*, \w Yahweh|strong="H3068"\w*, \w our|strong="H3068"\w* \w wickedness|strong="H7562"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w iniquity|strong="H5771"\w* \w of|strong="H3068"\w* \w our|strong="H3068"\w* fathers; +\q2 \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w you|strong="H3588"\w*. +\q1 +\v 21 \w Do|strong="H6565"\w* \w not|strong="H2142"\w* \w abhor|strong="H5006"\w* \w us|strong="H2142"\w*, \w for|strong="H8034"\w* \w your|strong="H2142"\w* \w name|strong="H8034"\w*’s \w sake|strong="H4616"\w*. +\q2 \w Do|strong="H6565"\w* \w not|strong="H2142"\w* \w disgrace|strong="H5034"\w* \w the|strong="H2142"\w* \w throne|strong="H3678"\w* \w of|strong="H8034"\w* \w your|strong="H2142"\w* \w glory|strong="H3519"\w*. +\q2 \w Remember|strong="H2142"\w*, \w and|strong="H1285"\w* don’t \w break|strong="H6565"\w* \w your|strong="H2142"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w us|strong="H2142"\w*. +\q1 +\v 22 \w Are|strong="H1471"\w* \w there|strong="H3426"\w* \w any|strong="H3605"\w* \w among|strong="H3808"\w* \w the|strong="H3605"\w* \w vanities|strong="H1892"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w that|strong="H3588"\w* \w can|strong="H6213"\w* \w cause|strong="H5414"\w* \w rain|strong="H1652"\w*? +\q2 \w Or|strong="H3808"\w* \w can|strong="H6213"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w* \w give|strong="H5414"\w* \w showers|strong="H7241"\w*? +\q2 Aren’t \w you|strong="H3588"\w* \w he|strong="H1931"\w*, \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*? +\q1 \w Therefore|strong="H3588"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w wait|strong="H6960"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*; +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3426"\w* \w made|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* \w things|strong="H3605"\w*. +\c 15 +\p +\v 1 \w Then|strong="H3318"\w* \w Yahweh|strong="H3068"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w me|strong="H6440"\w*, “Though \w Moses|strong="H4872"\w* \w and|strong="H4872"\w* \w Samuel|strong="H8050"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*, \w yet|strong="H3068"\w* \w my|strong="H3068"\w* \w mind|strong="H5315"\w* \w would|strong="H3068"\w* \w not|strong="H2088"\w* \w turn|strong="H5971"\w* \w toward|strong="H5921"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*. \w Cast|strong="H7971"\w* \w them|strong="H5921"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w sight|strong="H6440"\w*, \w and|strong="H4872"\w* \w let|strong="H7971"\w* \w them|strong="H5921"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*! +\v 2 \w It|strong="H3588"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w* \w when|strong="H3588"\w* \w they|strong="H3588"\w* ask \w you|strong="H3588"\w*, ‘Where \w shall|strong="H3068"\w* \w we|strong="H3068"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*?’ \w then|strong="H1961"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* tell \w them|strong="H3318"\w*, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w Such|strong="H3541"\w* \w as|strong="H1961"\w* \w are|strong="H3068"\w* \w for|strong="H3588"\w* \w death|strong="H4194"\w*, \w to|strong="H3318"\w* \w death|strong="H4194"\w*; +\q1 \w such|strong="H3541"\w* \w as|strong="H1961"\w* \w are|strong="H3068"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w sword|strong="H2719"\w*, \w to|strong="H3318"\w* \w the|strong="H3588"\w* \w sword|strong="H2719"\w*; +\q1 \w such|strong="H3541"\w* \w as|strong="H1961"\w* \w are|strong="H3068"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w famine|strong="H7458"\w*, \w to|strong="H3318"\w* \w the|strong="H3588"\w* \w famine|strong="H7458"\w*; +\q1 \w and|strong="H3068"\w* \w such|strong="H3541"\w* \w as|strong="H1961"\w* \w are|strong="H3068"\w* \w for|strong="H3588"\w* \w captivity|strong="H7628"\w*, \w to|strong="H3318"\w* \w captivity|strong="H7628"\w*.”’ +\p +\v 3 “\w I|strong="H5921"\w* \w will|strong="H3068"\w* \w appoint|strong="H6485"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w* four \w kinds|strong="H4940"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*: “\w the|strong="H5002"\w* \w sword|strong="H2719"\w* \w to|strong="H3068"\w* \w kill|strong="H2026"\w*, \w the|strong="H5002"\w* \w dogs|strong="H3611"\w* \w to|strong="H3068"\w* \w tear|strong="H5498"\w*, \w the|strong="H5002"\w* \w birds|strong="H5775"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* \w sky|strong="H8064"\w*, \w and|strong="H3068"\w* \w the|strong="H5002"\w* animals \w of|strong="H3068"\w* \w the|strong="H5002"\w* \w earth|strong="H8064"\w*, \w to|strong="H3068"\w* devour \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w destroy|strong="H7843"\w*. +\v 4 \w I|strong="H5414"\w* \w will|strong="H4428"\w* \w cause|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H5921"\w* \w be|strong="H1121"\w* tossed back \w and|strong="H1121"\w* \w forth|strong="H5414"\w* \w among|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* earth, \w because|strong="H5921"\w* \w of|strong="H1121"\w* \w Manasseh|strong="H4519"\w*, \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hezekiah|strong="H2396"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w for|strong="H5921"\w* \w that|strong="H3605"\w* \w which|strong="H3063"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w* \w in|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*. +\q1 +\v 5 \w For|strong="H3588"\w* \w who|strong="H4310"\w* \w will|strong="H4310"\w* \w have|strong="H2550"\w* \w pity|strong="H2550"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*, \w Jerusalem|strong="H3389"\w*? +\q2 \w Who|strong="H4310"\w* \w will|strong="H4310"\w* \w mourn|strong="H5110"\w* \w you|strong="H3588"\w*? +\q2 \w Who|strong="H4310"\w* \w will|strong="H4310"\w* come \w to|strong="H5921"\w* \w ask|strong="H7592"\w* \w of|strong="H5921"\w* \w your|strong="H5921"\w* \w welfare|strong="H7965"\w*? +\q1 +\v 6 \w You|strong="H5921"\w* \w have|strong="H3068"\w* rejected \w me|strong="H5921"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q2 “\w You|strong="H5921"\w* \w have|strong="H3068"\w* \w gone|strong="H3212"\w* backward. +\q1 \w Therefore|strong="H5921"\w* \w I|strong="H5921"\w* \w have|strong="H3068"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w my|strong="H3068"\w* \w hand|strong="H3027"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w* +\q2 \w and|strong="H3068"\w* \w destroyed|strong="H7843"\w* \w you|strong="H5921"\w*. +\q2 \w I|strong="H5921"\w* \w am|strong="H3068"\w* \w weary|strong="H3811"\w* \w of|strong="H3068"\w* \w showing|strong="H5162"\w* \w compassion|strong="H5162"\w*. +\q1 +\v 7 \w I|strong="H3808"\w* \w have|strong="H5971"\w* \w winnowed|strong="H2219"\w* \w them|strong="H7725"\w* \w with|strong="H5971"\w* \w a|strong="H3068"\w* \w fan|strong="H2219"\w* \w in|strong="H1870"\w* \w the|strong="H7725"\w* \w gates|strong="H8179"\w* \w of|strong="H1870"\w* \w the|strong="H7725"\w* land. +\q2 \w I|strong="H3808"\w* \w have|strong="H5971"\w* \w bereaved|strong="H7921"\w* \w them|strong="H7725"\w* \w of|strong="H1870"\w* \w children|strong="H7921"\w*. +\q1 \w I|strong="H3808"\w* \w have|strong="H5971"\w* destroyed \w my|strong="H7725"\w* \w people|strong="H5971"\w*. +\q2 \w They|strong="H3808"\w* didn’t \w return|strong="H7725"\w* \w from|strong="H7725"\w* \w their|strong="H7725"\w* \w ways|strong="H1870"\w*. +\q1 +\v 8 \w Their|strong="H1992"\w* widows \w are|strong="H1992"\w* \w increased|strong="H6105"\w* \w more|strong="H6105"\w* \w than|strong="H5921"\w* \w the|strong="H5921"\w* \w sand|strong="H2344"\w* \w of|strong="H5892"\w* \w the|strong="H5921"\w* \w seas|strong="H3220"\w*. +\q2 \w I|strong="H5921"\w* \w have|strong="H5892"\w* brought \w on|strong="H5921"\w* \w them|strong="H1992"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* mother \w of|strong="H5892"\w* \w the|strong="H5921"\w* young \w men|strong="H1992"\w* \w a|strong="H3068"\w* \w destroyer|strong="H7703"\w* \w at|strong="H5921"\w* \w noonday|strong="H6672"\w*. +\q2 \w I|strong="H5921"\w* \w have|strong="H5892"\w* \w caused|strong="H5307"\w* \w anguish|strong="H5892"\w* \w and|strong="H5892"\w* terrors \w to|strong="H5921"\w* \w fall|strong="H5307"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w* \w suddenly|strong="H6597"\w*. +\q1 +\v 9 \w She|strong="H6440"\w* \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w borne|strong="H3205"\w* \w seven|strong="H7651"\w* languishes. +\q2 \w She|strong="H6440"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w up|strong="H5414"\w* \w the|strong="H6440"\w* \w spirit|strong="H5315"\w*. +\q1 \w Her|strong="H5414"\w* \w sun|strong="H8121"\w* \w has|strong="H3068"\w* \w gone|strong="H3068"\w* \w down|strong="H6440"\w* \w while|strong="H5750"\w* \w it|strong="H5414"\w* \w was|strong="H3068"\w* \w yet|strong="H5750"\w* \w day|strong="H3119"\w*. +\q2 \w She|strong="H6440"\w* \w has|strong="H3068"\w* \w been|strong="H3068"\w* disappointed \w and|strong="H3068"\w* \w confounded|strong="H2659"\w*. +\q2 \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w deliver|strong="H5414"\w* \w their|strong="H3068"\w* \w residue|strong="H7611"\w* \w to|strong="H3068"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w* \w before|strong="H6440"\w* \w their|strong="H3068"\w* enemies,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\b +\q1 +\v 10 Woe \w is|strong="H3605"\w* \w me|strong="H3205"\w*, \w my|strong="H3605"\w* mother, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3605"\w* \w borne|strong="H3205"\w* \w me|strong="H3205"\w*, \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w of|strong="H3205"\w* \w strife|strong="H7379"\w*, +\q2 \w and|strong="H7379"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w of|strong="H3205"\w* \w contention|strong="H4066"\w* \w to|strong="H3205"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* earth! +\q1 \w I|strong="H3588"\w* \w have|strong="H3605"\w* \w not|strong="H3808"\w* \w lent|strong="H5383"\w*, \w neither|strong="H3808"\w* \w have|strong="H3605"\w* \w men|strong="H3605"\w* \w lent|strong="H5383"\w* \w to|strong="H3205"\w* \w me|strong="H3205"\w*; +\q2 \w yet|strong="H3588"\w* \w every|strong="H3605"\w* \w one|strong="H3605"\w* \w of|strong="H3205"\w* \w them|strong="H3205"\w* \w curses|strong="H7043"\w* \w me|strong="H3205"\w*. +\p +\v 11 \w Yahweh|strong="H3068"\w* said, +\q1 “\w Most|strong="H3068"\w* \w certainly|strong="H3808"\w* \w I|strong="H6256"\w* \w will|strong="H3068"\w* strengthen \w you|strong="H3808"\w* \w for|strong="H3068"\w* \w good|strong="H2896"\w*. +\q2 \w Most|strong="H3068"\w* \w certainly|strong="H3808"\w* \w I|strong="H6256"\w* \w will|strong="H3068"\w* cause \w the|strong="H3068"\w* enemy \w to|strong="H3068"\w* \w make|strong="H6293"\w* \w supplication|strong="H6293"\w* \w to|strong="H3068"\w* \w you|strong="H3808"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w time|strong="H6256"\w* \w of|strong="H3068"\w* \w evil|strong="H7451"\w* +\q2 \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w time|strong="H6256"\w* \w of|strong="H3068"\w* \w affliction|strong="H6869"\w*. +\q1 +\v 12 Can one \w break|strong="H7489"\w* \w iron|strong="H1270"\w*, +\q2 even \w iron|strong="H1270"\w* from \w the|strong="H7489"\w* \w north|strong="H6828"\w*, \w and|strong="H5178"\w* \w bronze|strong="H5178"\w*? +\q1 +\v 13 \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w your|strong="H3605"\w* \w substance|strong="H2428"\w* \w and|strong="H2403"\w* \w your|strong="H3605"\w* treasures \w for|strong="H3605"\w* \w a|strong="H3068"\w* plunder \w without|strong="H3808"\w* \w price|strong="H4242"\w*, +\q2 \w and|strong="H2403"\w* \w that|strong="H3605"\w* \w for|strong="H3605"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w sins|strong="H2403"\w*, +\q2 \w even|strong="H3808"\w* \w in|strong="H5414"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w borders|strong="H1366"\w*. +\q1 +\v 14 \w I|strong="H3588"\w* \w will|strong="H3808"\w* \w make|strong="H3045"\w* \w them|strong="H5921"\w* \w to|strong="H5921"\w* \w pass|strong="H5674"\w* \w with|strong="H5921"\w* \w your|strong="H5921"\w* enemies \w into|strong="H5921"\w* \w a|strong="H3068"\w* land \w which|strong="H3588"\w* \w you|strong="H3588"\w* don’t \w know|strong="H3045"\w*; +\q2 \w for|strong="H3588"\w* \w a|strong="H3068"\w* fire \w is|strong="H3808"\w* \w kindled|strong="H6919"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* \w anger|strong="H5674"\w*, +\q2 \w which|strong="H3588"\w* \w will|strong="H3808"\w* \w burn|strong="H3344"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*.” +\b +\q1 +\v 15 \w Yahweh|strong="H3068"\w*, \w you|strong="H5921"\w* \w know|strong="H3045"\w*. +\q2 \w Remember|strong="H2142"\w* \w me|strong="H5921"\w*, \w visit|strong="H6485"\w* \w me|strong="H5921"\w*, +\q2 \w and|strong="H3068"\w* \w avenge|strong="H5358"\w* \w me|strong="H5921"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w persecutors|strong="H7291"\w*. +\q1 \w You|strong="H5921"\w* \w are|strong="H3068"\w* patient, \w so|strong="H3947"\w* don’t \w take|strong="H3947"\w* \w me|strong="H5921"\w* \w away|strong="H3947"\w*. +\q2 \w Know|strong="H3045"\w* \w that|strong="H3045"\w* \w for|strong="H5921"\w* \w your|strong="H3068"\w* \w sake|strong="H5921"\w* \w I|strong="H5921"\w* \w have|strong="H3068"\w* \w suffered|strong="H5375"\w* \w reproach|strong="H2781"\w*. +\q1 +\v 16 \w Your|strong="H3068"\w* \w words|strong="H1697"\w* \w were|strong="H1961"\w* \w found|strong="H4672"\w*, +\q2 \w and|strong="H3068"\w* \w I|strong="H3588"\w* ate \w them|strong="H5921"\w*. +\q1 \w Your|strong="H3068"\w* \w words|strong="H1697"\w* \w were|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H5921"\w* \w a|strong="H3068"\w* \w joy|strong="H8057"\w* \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w rejoicing|strong="H8057"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w heart|strong="H3824"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w called|strong="H7121"\w* \w by|strong="H5921"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w*, \w Yahweh|strong="H3068"\w*, \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\q1 +\v 17 \w I|strong="H3588"\w* didn’t \w sit|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w assembly|strong="H5475"\w* \w of|strong="H3027"\w* \w those|strong="H3427"\w* \w who|strong="H3427"\w* \w make|strong="H3027"\w* \w merry|strong="H7832"\w* \w and|strong="H3027"\w* \w rejoice|strong="H5937"\w*. +\q2 \w I|strong="H3588"\w* \w sat|strong="H3427"\w* alone \w because|strong="H3588"\w* \w of|strong="H3027"\w* \w your|strong="H6440"\w* \w hand|strong="H3027"\w*, +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3027"\w* \w filled|strong="H4390"\w* \w me|strong="H6440"\w* \w with|strong="H4390"\w* \w indignation|strong="H2195"\w*. +\q1 +\v 18 \w Why|strong="H4100"\w* \w is|strong="H4100"\w* \w my|strong="H1961"\w* \w pain|strong="H3511"\w* \w perpetual|strong="H5331"\w*, +\q2 \w and|strong="H4325"\w* \w my|strong="H1961"\w* \w wound|strong="H4347"\w* incurable, +\q2 \w which|strong="H4100"\w* \w refuses|strong="H3985"\w* \w to|strong="H1961"\w* \w be|strong="H1961"\w* \w healed|strong="H7495"\w*? +\q1 \w Will|strong="H1961"\w* \w you|strong="H3808"\w* \w indeed|strong="H3808"\w* \w be|strong="H1961"\w* \w to|strong="H1961"\w* \w me|strong="H1961"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* deceitful brook, +\q2 \w like|strong="H3644"\w* \w waters|strong="H4325"\w* \w that|strong="H4325"\w* \w fail|strong="H3808"\w*? +\p +\v 19 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, +\q1 “\w If|strong="H1961"\w* \w you|strong="H6440"\w* \w return|strong="H7725"\w*, \w then|strong="H1961"\w* \w I|strong="H3541"\w* \w will|strong="H3068"\w* \w bring|strong="H3318"\w* \w you|strong="H6440"\w* \w again|strong="H7725"\w*, +\q2 \w that|strong="H3068"\w* \w you|strong="H6440"\w* \w may|strong="H1961"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*; +\q1 \w and|strong="H3068"\w* \w if|strong="H1961"\w* \w you|strong="H6440"\w* \w take|strong="H7725"\w* \w out|strong="H3318"\w* \w the|strong="H6440"\w* \w precious|strong="H3368"\w* \w from|strong="H7725"\w* \w the|strong="H6440"\w* \w vile|strong="H2151"\w*, +\q2 \w you|strong="H6440"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w my|strong="H3068"\w* \w mouth|strong="H6310"\w*. +\q1 \w They|strong="H1992"\w* \w will|strong="H3068"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w you|strong="H6440"\w*, +\q2 \w but|strong="H3808"\w* \w you|strong="H6440"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w them|strong="H1992"\w*. +\q1 +\v 20 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w make|strong="H5414"\w* \w you|strong="H3588"\w* \w to|strong="H3201"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w a|strong="H3068"\w* \w fortified|strong="H1219"\w* \w bronze|strong="H5178"\w* \w wall|strong="H2346"\w*. +\q2 \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w fight|strong="H3898"\w* \w against|strong="H3898"\w* \w you|strong="H3588"\w*, +\q2 \w but|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w prevail|strong="H3201"\w* \w against|strong="H3898"\w* \w you|strong="H3588"\w*; +\q1 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w* \w to|strong="H3201"\w* \w save|strong="H3467"\w* \w you|strong="H3588"\w* +\q2 \w and|strong="H3068"\w* \w to|strong="H3201"\w* \w deliver|strong="H5337"\w* \w you|strong="H3588"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 21 “\w I|strong="H3027"\w* \w will|strong="H3027"\w* \w deliver|strong="H5337"\w* \w you|strong="H3027"\w* \w out|strong="H5337"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w wicked|strong="H7451"\w*, +\q2 \w and|strong="H3027"\w* \w I|strong="H3027"\w* \w will|strong="H3027"\w* \w redeem|strong="H6299"\w* \w you|strong="H3027"\w* \w out|strong="H5337"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3027"\w* \w terrible|strong="H6184"\w*.” +\c 16 +\p +\v 1 \w Then|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w You|strong="H3947"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* wife, \w neither|strong="H3808"\w* \w shall|strong="H1121"\w* \w you|strong="H3947"\w* \w have|strong="H1961"\w* \w sons|strong="H1121"\w* \w or|strong="H3808"\w* \w daughters|strong="H1323"\w*, \w in|strong="H1121"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*.” +\v 3 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* \w daughters|strong="H1323"\w* \w who|strong="H3068"\w* \w are|strong="H1121"\w* \w born|strong="H3205"\w* \w in|strong="H5921"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*, \w and|strong="H1121"\w* \w concerning|strong="H5921"\w* \w their|strong="H3068"\w* mothers \w who|strong="H3068"\w* \w bore|strong="H3205"\w* \w them|strong="H5921"\w*, \w and|strong="H1121"\w* \w concerning|strong="H5921"\w* \w their|strong="H3068"\w* \w fathers|strong="H3205"\w* \w who|strong="H3068"\w* \w became|strong="H3205"\w* \w their|strong="H3068"\w* \w father|strong="H3205"\w* \w in|strong="H5921"\w* \w this|strong="H2088"\w* \w land|strong="H4725"\w*: +\v 4 “\w They|strong="H3808"\w* \w will|strong="H1961"\w* \w die|strong="H4191"\w* \w grievous|strong="H8463"\w* \w deaths|strong="H4463"\w*. \w They|strong="H3808"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w lamented|strong="H5594"\w*, \w neither|strong="H3808"\w* \w will|strong="H1961"\w* \w they|strong="H3808"\w* \w be|strong="H1961"\w* \w buried|strong="H6912"\w*. \w They|strong="H3808"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w dung|strong="H1828"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w*. \w They|strong="H3808"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w consumed|strong="H3615"\w* \w by|strong="H5921"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w* \w and|strong="H8064"\w* \w by|strong="H5921"\w* \w famine|strong="H7458"\w*. \w Their|strong="H6440"\w* \w dead|strong="H4191"\w* \w bodies|strong="H5038"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w food|strong="H3978"\w* \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w birds|strong="H5775"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w sky|strong="H8064"\w* \w and|strong="H8064"\w* \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w animals|strong="H1961"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w earth|strong="H8064"\w*.” +\p +\v 5 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H5002"\w*, “Don’t enter \w into|strong="H3212"\w* \w the|strong="H5002"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w mourning|strong="H4798"\w*. Don’t \w go|strong="H3212"\w* \w to|strong="H3068"\w* \w lament|strong="H5594"\w*. Don’t \w bemoan|strong="H5110"\w* \w them|strong="H3588"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* taken \w away|strong="H3212"\w* \w my|strong="H3068"\w* \w peace|strong="H7965"\w* \w from|strong="H3068"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w even|strong="H3588"\w* loving \w kindness|strong="H2617"\w* \w and|strong="H3068"\w* tender \w mercies|strong="H7356"\w*. +\v 6 \w Both|strong="H4191"\w* \w great|strong="H1419"\w* \w and|strong="H1419"\w* \w small|strong="H6996"\w* \w will|strong="H3808"\w* \w die|strong="H4191"\w* \w in|strong="H4191"\w* \w this|strong="H2063"\w* land. \w They|strong="H1992"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H4191"\w* \w buried|strong="H6912"\w*. \w Men|strong="H1419"\w* won’t \w lament|strong="H5594"\w* \w for|strong="H4191"\w* \w them|strong="H1992"\w*, \w cut|strong="H1413"\w* \w themselves|strong="H1992"\w*, \w or|strong="H3808"\w* \w make|strong="H7139"\w* \w themselves|strong="H1992"\w* \w bald|strong="H7139"\w* \w for|strong="H4191"\w* \w them|strong="H1992"\w*. +\v 7 Men won’t \w break|strong="H6536"\w* bread \w for|strong="H5921"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w mourning|strong="H5162"\w*, \w to|strong="H4191"\w* \w comfort|strong="H5162"\w* \w them|strong="H5921"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w dead|strong="H4191"\w*. Men won’t \w give|strong="H8248"\w* \w them|strong="H5921"\w* \w the|strong="H5921"\w* \w cup|strong="H3563"\w* \w of|strong="H5921"\w* \w consolation|strong="H8575"\w* \w to|strong="H4191"\w* \w drink|strong="H8248"\w* \w for|strong="H5921"\w* \w their|strong="H5921"\w* father \w or|strong="H3808"\w* \w for|strong="H5921"\w* \w their|strong="H5921"\w* mother. +\p +\v 8 “\w You|strong="H3808"\w* \w shall|strong="H1004"\w* \w not|strong="H3808"\w* go into \w the|strong="H8354"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w feasting|strong="H4960"\w* \w to|strong="H1004"\w* \w sit|strong="H3427"\w* \w with|strong="H1004"\w* \w them|strong="H3427"\w*, \w to|strong="H1004"\w* eat \w and|strong="H1004"\w* \w to|strong="H1004"\w* \w drink|strong="H8354"\w*.” +\v 9 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3588"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*: “\w Behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* cause \w to|strong="H3478"\w* \w cease|strong="H7673"\w* \w out|strong="H4480"\w* \w of|strong="H3068"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*, \w before|strong="H4480"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w* \w and|strong="H3478"\w* \w in|strong="H3478"\w* \w your|strong="H3068"\w* \w days|strong="H3117"\w*, \w the|strong="H3588"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w mirth|strong="H8057"\w* \w and|strong="H3478"\w* \w the|strong="H3588"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w gladness|strong="H8057"\w*, \w the|strong="H3588"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w bridegroom|strong="H2860"\w* \w and|strong="H3478"\w* \w the|strong="H3588"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w bride|strong="H3618"\w*. +\v 10 \w It|strong="H5921"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w*, \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w tell|strong="H5046"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w all|strong="H3605"\w* \w these|strong="H2088"\w* \w words|strong="H1697"\w*, \w and|strong="H3068"\w* \w they|strong="H3588"\w* ask \w you|strong="H3588"\w*, ‘\w Why|strong="H4100"\w* \w has|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w pronounced|strong="H1696"\w* \w all|strong="H3605"\w* \w this|strong="H2088"\w* \w great|strong="H1419"\w* \w evil|strong="H7451"\w* \w against|strong="H5921"\w* \w us|strong="H5046"\w*?’ \w or|strong="H1419"\w* ‘\w What|strong="H4100"\w* \w is|strong="H3068"\w* \w our|strong="H3068"\w* \w iniquity|strong="H5771"\w*?’ \w or|strong="H1419"\w* ‘\w What|strong="H4100"\w* \w is|strong="H3068"\w* \w our|strong="H3068"\w* \w sin|strong="H2403"\w* \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H1961"\w* \w committed|strong="H2398"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*?’ +\v 11 \w then|strong="H3068"\w* \w you|strong="H5921"\w* \w shall|strong="H3068"\w* tell \w them|strong="H5921"\w*, ‘\w Because|strong="H5921"\w* \w your|strong="H3068"\w* fathers \w have|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w me|strong="H5921"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, ‘\w and|strong="H3068"\w* \w have|strong="H3068"\w* \w walked|strong="H3212"\w* \w after|strong="H5921"\w* other gods, \w have|strong="H3068"\w* \w served|strong="H5647"\w* \w them|strong="H5921"\w*, \w have|strong="H3068"\w* \w worshiped|strong="H7812"\w* \w them|strong="H5921"\w*, \w have|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w me|strong="H5921"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w kept|strong="H8104"\w* \w my|strong="H8104"\w* \w law|strong="H8451"\w*. +\v 12 \w You|strong="H6213"\w* \w have|strong="H7489"\w* \w done|strong="H6213"\w* \w evil|strong="H7451"\w* \w more|strong="H1980"\w* \w than|strong="H1115"\w* \w your|strong="H8085"\w* fathers, \w for|strong="H6213"\w* \w behold|strong="H2005"\w*, \w you|strong="H6213"\w* each \w walk|strong="H1980"\w* \w after|strong="H1980"\w* \w the|strong="H8085"\w* \w stubbornness|strong="H8307"\w* \w of|strong="H3820"\w* \w his|strong="H8085"\w* \w evil|strong="H7451"\w* \w heart|strong="H3820"\w*, \w so|strong="H6213"\w* \w that|strong="H8085"\w* \w you|strong="H6213"\w* don’t \w listen|strong="H8085"\w* \w to|strong="H1980"\w* \w me|strong="H6213"\w*. +\v 13 \w Therefore|strong="H5921"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w cast|strong="H5414"\w* \w you|strong="H5414"\w* \w out|strong="H5414"\w* \w of|strong="H5921"\w* \w this|strong="H2063"\w* land \w into|strong="H5921"\w* \w the|strong="H5921"\w* land \w that|strong="H3045"\w* \w you|strong="H5414"\w* \w have|strong="H3045"\w* \w not|strong="H3808"\w* \w known|strong="H3045"\w*, \w neither|strong="H3808"\w* \w you|strong="H5414"\w* \w nor|strong="H3808"\w* \w your|strong="H5414"\w* fathers. \w There|strong="H8033"\w* \w you|strong="H5414"\w* \w will|strong="H5414"\w* \w serve|strong="H5647"\w* \w other|strong="H2063"\w* gods \w day|strong="H3119"\w* \w and|strong="H3119"\w* \w night|strong="H3915"\w*, \w for|strong="H5921"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w show|strong="H3045"\w* \w you|strong="H5414"\w* \w no|strong="H3808"\w* \w favor|strong="H2594"\w*.’ +\p +\v 14 “\w Therefore|strong="H3651"\w* \w behold|strong="H2009"\w*, \w the|strong="H5002"\w* \w days|strong="H3117"\w* \w come|strong="H5927"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w that|strong="H3117"\w* \w it|strong="H3651"\w* \w will|strong="H3068"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w be|strong="H3808"\w* \w said|strong="H5002"\w*, ‘\w As|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*, \w who|strong="H3068"\w* \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w the|strong="H5002"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w out|strong="H3808"\w* \w of|strong="H1121"\w* \w the|strong="H5002"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*;’ +\v 15 \w but|strong="H3588"\w*, ‘\w As|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*, \w who|strong="H3605"\w* \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w from|strong="H7725"\w* \w the|strong="H3605"\w* land \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w north|strong="H6828"\w*, \w and|strong="H1121"\w* \w from|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* countries \w where|strong="H8033"\w* \w he|strong="H3588"\w* \w had|strong="H3068"\w* \w driven|strong="H5080"\w* \w them|strong="H5414"\w*.’ \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w bring|strong="H7725"\w* \w them|strong="H5414"\w* \w again|strong="H7725"\w* \w into|strong="H7725"\w* \w their|strong="H3605"\w* land \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w gave|strong="H5414"\w* \w to|strong="H7725"\w* \w their|strong="H3605"\w* fathers. +\p +\v 16 “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w for|strong="H5921"\w* \w many|strong="H7227"\w* \w fishermen|strong="H1728"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w and|strong="H3068"\w* \w they|strong="H3651"\w* \w will|strong="H3068"\w* \w fish|strong="H1770"\w* \w them|strong="H5921"\w* \w up|strong="H5921"\w*. Afterward \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w for|strong="H5921"\w* \w many|strong="H7227"\w* \w hunters|strong="H6719"\w*, \w and|strong="H3068"\w* \w they|strong="H3651"\w* \w will|strong="H3068"\w* \w hunt|strong="H6679"\w* \w them|strong="H5921"\w* \w from|strong="H5921"\w* \w every|strong="H3605"\w* \w mountain|strong="H2022"\w*, \w from|strong="H5921"\w* \w every|strong="H3605"\w* \w hill|strong="H2022"\w*, \w and|strong="H3068"\w* \w out|strong="H7971"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w clefts|strong="H5357"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w rocks|strong="H5553"\w*. +\v 17 \w For|strong="H3588"\w* \w my|strong="H3605"\w* \w eyes|strong="H5869"\w* \w are|strong="H5869"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w ways|strong="H1870"\w*. \w They|strong="H3588"\w* \w are|strong="H5869"\w* \w not|strong="H3808"\w* \w hidden|strong="H5641"\w* \w from|strong="H6440"\w* \w my|strong="H3605"\w* \w face|strong="H6440"\w*. \w Their|strong="H3605"\w* \w iniquity|strong="H5771"\w* isn’t \w concealed|strong="H5641"\w* \w from|strong="H6440"\w* \w my|strong="H3605"\w* \w eyes|strong="H5869"\w*. +\v 18 \w First|strong="H7223"\w* \w I|strong="H5921"\w* \w will|strong="H5771"\w* \w recompense|strong="H7999"\w* \w their|strong="H4390"\w* \w iniquity|strong="H5771"\w* \w and|strong="H2403"\w* \w their|strong="H4390"\w* \w sin|strong="H2403"\w* \w double|strong="H4932"\w*, \w because|strong="H5921"\w* \w they|strong="H5921"\w* \w have|strong="H5771"\w* \w polluted|strong="H2490"\w* \w my|strong="H5921"\w* \w land|strong="H5159"\w* \w with|strong="H4390"\w* \w the|strong="H5921"\w* \w carcasses|strong="H5038"\w* \w of|strong="H4390"\w* \w their|strong="H4390"\w* \w detestable|strong="H8251"\w* \w things|strong="H8251"\w*, \w and|strong="H2403"\w* \w have|strong="H5771"\w* \w filled|strong="H4390"\w* \w my|strong="H5921"\w* \w inheritance|strong="H5159"\w* \w with|strong="H4390"\w* \w their|strong="H4390"\w* \w abominations|strong="H8441"\w*.” +\b +\q1 +\v 19 \w Yahweh|strong="H3068"\w*, \w my|strong="H3068"\w* \w strength|strong="H5797"\w*, \w my|strong="H3068"\w* \w stronghold|strong="H4581"\w*, +\q2 \w and|strong="H3068"\w* \w my|strong="H3068"\w* \w refuge|strong="H4498"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w affliction|strong="H6869"\w*, +\q1 \w the|strong="H3068"\w* \w nations|strong="H1471"\w* \w will|strong="H3068"\w* come \w to|strong="H3068"\w* \w you|strong="H3117"\w* \w from|strong="H3117"\w* \w the|strong="H3068"\w* ends \w of|strong="H3068"\w* \w the|strong="H3068"\w* earth, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* say, +\q1 “\w Our|strong="H3068"\w* fathers \w have|strong="H3068"\w* \w inherited|strong="H5157"\w* \w nothing|strong="H1892"\w* \w but|strong="H3068"\w* \w lies|strong="H8267"\w*, +\q2 \w vanity|strong="H1892"\w* \w and|strong="H3068"\w* \w things|strong="H3276"\w* \w in|strong="H3068"\w* \w which|strong="H3068"\w* \w there|strong="H3117"\w* \w is|strong="H3068"\w* \w no|strong="H5157"\w* \w profit|strong="H3276"\w*. +\q1 +\v 20 \w Should|strong="H6213"\w* \w a|strong="H3068"\w* man \w make|strong="H6213"\w* \w to|strong="H6213"\w* \w himself|strong="H6213"\w* gods +\q2 \w which|strong="H1992"\w* \w yet|strong="H3808"\w* \w are|strong="H1992"\w* \w no|strong="H3808"\w* gods?” +\b +\q1 +\v 21 “\w Therefore|strong="H3651"\w* \w behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w cause|strong="H3651"\w* \w them|strong="H3027"\w* \w to|strong="H3068"\w* \w know|strong="H3045"\w*, +\q2 \w this|strong="H2063"\w* \w once|strong="H6471"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w cause|strong="H3651"\w* \w them|strong="H3027"\w* \w to|strong="H3068"\w* \w know|strong="H3045"\w* \w my|strong="H3068"\w* \w hand|strong="H3027"\w* \w and|strong="H3068"\w* \w my|strong="H3068"\w* \w might|strong="H1369"\w*. +\q2 \w Then|strong="H3651"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w my|strong="H3068"\w* \w name|strong="H8034"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.” +\c 17 +\q1 +\v 1 “\w The|strong="H5921"\w* \w sin|strong="H2403"\w* \w of|strong="H4196"\w* \w Judah|strong="H3063"\w* \w is|strong="H3820"\w* \w written|strong="H3789"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w pen|strong="H5842"\w* \w of|strong="H4196"\w* \w iron|strong="H1270"\w*, +\q2 \w and|strong="H3063"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w point|strong="H6856"\w* \w of|strong="H4196"\w* \w a|strong="H3068"\w* \w diamond|strong="H8068"\w*. +\q1 \w It|strong="H5921"\w* \w is|strong="H3820"\w* \w engraved|strong="H2790"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tablet|strong="H3871"\w* \w of|strong="H4196"\w* \w their|strong="H5921"\w* \w heart|strong="H3820"\w*, +\q2 \w and|strong="H3063"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w horns|strong="H7161"\w* \w of|strong="H4196"\w* \w your|strong="H5921"\w* \w altars|strong="H4196"\w*. +\q1 +\v 2 \w Even|strong="H5921"\w* \w their|strong="H5921"\w* \w children|strong="H1121"\w* \w remember|strong="H2142"\w* \w their|strong="H5921"\w* \w altars|strong="H4196"\w* +\q2 \w and|strong="H1121"\w* \w their|strong="H5921"\w* Asherah poles \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w green|strong="H7488"\w* \w trees|strong="H6086"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w high|strong="H1364"\w* \w hills|strong="H1389"\w*. +\q1 +\v 3 \w My|strong="H5414"\w* \w mountain|strong="H2042"\w* \w in|strong="H5414"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*, +\q2 \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w your|strong="H3605"\w* \w substance|strong="H2428"\w* \w and|strong="H7704"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* treasures \w for|strong="H3605"\w* \w a|strong="H3068"\w* plunder, +\q2 \w and|strong="H7704"\w* \w your|strong="H3605"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*, \w because|strong="H3605"\w* \w of|strong="H1366"\w* \w sin|strong="H2403"\w*, \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w borders|strong="H1366"\w*. +\q1 +\v 4 \w You|strong="H3588"\w*, \w even|strong="H5704"\w* \w of|strong="H5159"\w* \w yourself|strong="H3045"\w*, \w will|strong="H5414"\w* \w discontinue|strong="H8058"\w* \w from|strong="H5704"\w* \w your|strong="H5414"\w* \w heritage|strong="H5159"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w gave|strong="H5414"\w* \w you|strong="H3588"\w*. +\q2 \w I|strong="H3588"\w* \w will|strong="H5414"\w* \w cause|strong="H5414"\w* \w you|strong="H3588"\w* \w to|strong="H5704"\w* \w serve|strong="H5647"\w* \w your|strong="H5414"\w* enemies \w in|strong="H5414"\w* \w the|strong="H3588"\w* \w land|strong="H5159"\w* \w which|strong="H3588"\w* \w you|strong="H3588"\w* don’t \w know|strong="H3045"\w*, +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3045"\w* \w kindled|strong="H6919"\w* \w a|strong="H3068"\w* fire \w in|strong="H5414"\w* \w my|strong="H5414"\w* anger \w which|strong="H3588"\w* \w will|strong="H5414"\w* \w burn|strong="H3344"\w* \w forever|strong="H5769"\w*.” +\p +\v 5 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “Cursed \w is|strong="H3068"\w* \w the|strong="H3541"\w* \w man|strong="H1397"\w* \w who|strong="H3068"\w* trusts \w in|strong="H3068"\w* \w man|strong="H1397"\w*, +\q2 relies \w on|strong="H7760"\w* \w strength|strong="H2220"\w* \w of|strong="H3068"\w* \w flesh|strong="H1320"\w*, +\q2 \w and|strong="H3068"\w* \w whose|strong="H1397"\w* \w heart|strong="H3820"\w* departs \w from|strong="H4480"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 6 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w bush|strong="H6176"\w* \w in|strong="H3427"\w* \w the|strong="H7200"\w* \w desert|strong="H6160"\w*, +\q2 \w and|strong="H7200"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w* \w when|strong="H3588"\w* \w good|strong="H2896"\w* \w comes|strong="H1961"\w*, +\q1 \w but|strong="H3588"\w* \w will|strong="H1961"\w* \w inhabit|strong="H3427"\w* \w the|strong="H7200"\w* parched \w places|strong="H2788"\w* \w in|strong="H3427"\w* \w the|strong="H7200"\w* \w wilderness|strong="H4057"\w*, +\q2 \w an|strong="H1961"\w* \w uninhabited|strong="H3427"\w* \w salt|strong="H4420"\w* \w land|strong="H4420"\w*. +\b +\q1 +\v 7 “\w Blessed|strong="H1288"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w man|strong="H1397"\w* \w who|strong="H3068"\w* \w trusts|strong="H4009"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* \w whose|strong="H1397"\w* \w confidence|strong="H4009"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 8 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w tree|strong="H6086"\w* \w planted|strong="H8362"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w*, +\q2 \w who|strong="H3588"\w* \w spreads|strong="H7971"\w* \w out|strong="H7971"\w* \w its|strong="H5921"\w* \w roots|strong="H8328"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w river|strong="H3588"\w*, +\q1 \w and|strong="H7971"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w fear|strong="H3372"\w* \w when|strong="H3588"\w* \w heat|strong="H2527"\w* \w comes|strong="H1961"\w*, +\q2 \w but|strong="H3588"\w* \w its|strong="H5921"\w* \w leaf|strong="H5929"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w green|strong="H7488"\w*, +\q1 \w and|strong="H7971"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* concerned \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w year|strong="H8141"\w* \w of|strong="H8141"\w* \w drought|strong="H1226"\w*. +\q2 \w It|strong="H5921"\w* won’t \w cease|strong="H4185"\w* \w from|strong="H5921"\w* \w yielding|strong="H6213"\w* \w fruit|strong="H6529"\w*. +\q1 +\v 9 \w The|strong="H3605"\w* \w heart|strong="H3820"\w* \w is|strong="H1931"\w* \w deceitful|strong="H6121"\w* \w above|strong="H3820"\w* \w all|strong="H3605"\w* \w things|strong="H3605"\w* +\q2 \w and|strong="H3045"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* exceedingly corrupt. +\q2 \w Who|strong="H4310"\w* \w can|strong="H4310"\w* \w know|strong="H3045"\w* \w it|strong="H1931"\w*? +\b +\q1 +\v 10 “\w I|strong="H5414"\w*, \w Yahweh|strong="H3068"\w*, \w search|strong="H2713"\w* \w the|strong="H5414"\w* \w mind|strong="H3820"\w*. +\q2 \w I|strong="H5414"\w* \w try|strong="H2713"\w* \w the|strong="H5414"\w* \w heart|strong="H3820"\w*, +\q1 \w even|strong="H3068"\w* \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w every|strong="H5414"\w* \w man|strong="H3820"\w* according \w to|strong="H3068"\w* \w his|strong="H5414"\w* \w ways|strong="H1870"\w*, +\q2 according \w to|strong="H3068"\w* \w the|strong="H5414"\w* \w fruit|strong="H6529"\w* \w of|strong="H3068"\w* \w his|strong="H5414"\w* \w doings|strong="H4611"\w*.” +\b +\q1 +\v 11 \w As|strong="H3117"\w* \w the|strong="H6213"\w* \w partridge|strong="H7124"\w* \w that|strong="H3117"\w* sits \w on|strong="H3117"\w* \w eggs|strong="H1716"\w* \w which|strong="H3117"\w* \w she|strong="H3808"\w* \w has|strong="H1961"\w* \w not|strong="H3808"\w* \w laid|strong="H3205"\w*, +\q2 \w so|strong="H6213"\w* \w is|strong="H3117"\w* \w he|strong="H3117"\w* \w who|strong="H3205"\w* gets \w riches|strong="H6239"\w*, \w and|strong="H3117"\w* \w not|strong="H3808"\w* \w by|strong="H3117"\w* \w right|strong="H4941"\w*. +\q1 \w In|strong="H6213"\w* \w the|strong="H6213"\w* \w middle|strong="H2677"\w* \w of|strong="H3117"\w* \w his|strong="H1961"\w* \w days|strong="H3117"\w*, \w they|strong="H3117"\w* \w will|strong="H1961"\w* \w leave|strong="H5800"\w* \w him|strong="H3205"\w*. +\q2 \w At|strong="H3117"\w* \w his|strong="H1961"\w* end, \w he|strong="H3117"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w fool|strong="H5036"\w*. +\q1 +\v 12 \w A|strong="H3068"\w* \w glorious|strong="H3519"\w* \w throne|strong="H3678"\w*, \w set|strong="H7223"\w* \w on|strong="H4725"\w* \w high|strong="H4791"\w* \w from|strong="H4725"\w* \w the|strong="H4725"\w* \w beginning|strong="H7223"\w*, +\q2 \w is|strong="H4725"\w* \w the|strong="H4725"\w* \w place|strong="H4725"\w* \w of|strong="H3678"\w* our \w sanctuary|strong="H4720"\w*. +\q1 +\v 13 \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w hope|strong="H4723"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, +\q2 \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w forsake|strong="H5800"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* disappointed. +\q1 \w Those|strong="H3605"\w* \w who|strong="H3605"\w* \w depart|strong="H3249"\w* \w from|strong="H3478"\w* \w me|strong="H5800"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w written|strong="H3789"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* earth, +\q2 \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w the|strong="H3605"\w* \w spring|strong="H4726"\w* \w of|strong="H3068"\w* \w living|strong="H2416"\w* \w waters|strong="H4325"\w*. +\q1 +\v 14 \w Heal|strong="H7495"\w* \w me|strong="H3467"\w*, \w O|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w healed|strong="H7495"\w*. +\q2 \w Save|strong="H3467"\w* \w me|strong="H3467"\w*, \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w saved|strong="H3467"\w*; +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H3068"\w* \w my|strong="H3068"\w* \w praise|strong="H8416"\w*. +\q1 +\v 15 \w Behold|strong="H2009"\w*, \w they|strong="H1992"\w* ask \w me|strong="H4994"\w*, +\q2 “\w Where|strong="H2009"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*? +\q2 \w Let|strong="H4994"\w* \w it|strong="H3068"\w* \w be|strong="H1697"\w* fulfilled \w now|strong="H4994"\w*.” +\q1 +\v 16 \w As|strong="H3117"\w* \w for|strong="H6440"\w* \w me|strong="H6440"\w*, \w I|strong="H3117"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* hurried \w from|strong="H6440"\w* \w being|strong="H1961"\w* \w a|strong="H3068"\w* \w shepherd|strong="H7462"\w* \w after|strong="H1961"\w* \w you|strong="H6440"\w*. +\q2 \w I|strong="H3117"\w* haven’t desired \w the|strong="H6440"\w* woeful \w day|strong="H3117"\w*. \w You|strong="H6440"\w* \w know|strong="H3045"\w*. +\q2 \w That|strong="H3045"\w* \w which|strong="H3117"\w* \w came|strong="H1961"\w* \w out|strong="H4161"\w* \w of|strong="H3117"\w* \w my|strong="H3045"\w* \w lips|strong="H8193"\w* \w was|strong="H1961"\w* \w before|strong="H6440"\w* \w your|strong="H6440"\w* \w face|strong="H6440"\w*. +\q1 +\v 17 Don’t \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w terror|strong="H4288"\w* \w to|strong="H1961"\w* \w me|strong="H1961"\w*. +\q2 \w You|strong="H3117"\w* \w are|strong="H3117"\w* \w my|strong="H1961"\w* \w refuge|strong="H4268"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w evil|strong="H7451"\w*. +\q1 +\v 18 Let \w them|strong="H1992"\w* \w be|strong="H3117"\w* disappointed \w who|strong="H1992"\w* \w persecute|strong="H7291"\w* \w me|strong="H5921"\w*, +\q2 \w but|strong="H1992"\w* don’t let \w me|strong="H5921"\w* \w be|strong="H3117"\w* disappointed. +\q1 Let \w them|strong="H1992"\w* \w be|strong="H3117"\w* \w dismayed|strong="H2865"\w*, +\q2 \w but|strong="H1992"\w* don’t let \w me|strong="H5921"\w* \w be|strong="H3117"\w* \w dismayed|strong="H2865"\w*. +\q1 \w Bring|strong="H7451"\w* \w on|strong="H5921"\w* \w them|strong="H1992"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w evil|strong="H7451"\w*, +\q2 \w and|strong="H3117"\w* \w destroy|strong="H7665"\w* \w them|strong="H1992"\w* \w with|strong="H5921"\w* \w double|strong="H4932"\w* \w destruction|strong="H7670"\w*. +\p +\v 19 \w Yahweh|strong="H3068"\w* \w said|strong="H3318"\w* \w this|strong="H3541"\w* \w to|strong="H1980"\w* \w me|strong="H3318"\w*: “\w Go|strong="H1980"\w* \w and|strong="H1121"\w* \w stand|strong="H5975"\w* \w in|strong="H1980"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w through|strong="H1980"\w* \w which|strong="H3068"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w come|strong="H1980"\w* \w in|strong="H1980"\w* \w and|strong="H1121"\w* \w by|strong="H3068"\w* \w which|strong="H3068"\w* \w they|strong="H3068"\w* \w go|strong="H1980"\w* \w out|strong="H3318"\w*, \w and|strong="H1121"\w* \w in|strong="H1980"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w gates|strong="H8179"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*. +\v 20 \w Tell|strong="H8085"\w* \w them|strong="H8085"\w*, ‘\w Hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w you|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w all|strong="H3605"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*, \w that|strong="H3605"\w* enter \w in|strong="H3427"\w* \w by|strong="H3068"\w* \w these|strong="H8085"\w* \w gates|strong="H8179"\w*: +\v 21 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w Be|strong="H3068"\w* \w careful|strong="H8104"\w*, \w and|strong="H3068"\w* \w bear|strong="H5375"\w* \w no|strong="H5375"\w* \w burden|strong="H4853"\w* \w on|strong="H3117"\w* \w the|strong="H5375"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w*, \w nor|strong="H3117"\w* \w bring|strong="H5375"\w* \w it|strong="H5375"\w* \w in|strong="H3068"\w* \w by|strong="H3117"\w* \w the|strong="H5375"\w* \w gates|strong="H8179"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*. +\v 22 Don’t \w carry|strong="H6213"\w* \w a|strong="H3068"\w* \w burden|strong="H4853"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w your|strong="H3605"\w* \w houses|strong="H1004"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w*. Don’t \w do|strong="H6213"\w* \w any|strong="H3605"\w* \w work|strong="H4399"\w*, \w but|strong="H3808"\w* \w make|strong="H6213"\w* \w the|strong="H3605"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w* \w holy|strong="H6942"\w*, \w as|strong="H3117"\w* \w I|strong="H3117"\w* \w commanded|strong="H6680"\w* \w your|strong="H3605"\w* fathers. +\v 23 \w But|strong="H3808"\w* \w they|strong="H3808"\w* didn’t \w listen|strong="H8085"\w*. \w They|strong="H3808"\w* didn’t \w turn|strong="H5186"\w* \w their|strong="H3947"\w* \w ear|strong="H8085"\w*, \w but|strong="H3808"\w* \w made|strong="H7185"\w* \w their|strong="H3947"\w* \w neck|strong="H6203"\w* \w stiff|strong="H7185"\w*, \w that|strong="H8085"\w* \w they|strong="H3808"\w* might \w not|strong="H3808"\w* \w hear|strong="H8085"\w*, \w and|strong="H8085"\w* might \w not|strong="H3808"\w* \w receive|strong="H3947"\w* \w instruction|strong="H4148"\w*. +\v 24 \w It|strong="H6213"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w*, \w if|strong="H1961"\w* \w you|strong="H3605"\w* \w diligently|strong="H8085"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w me|strong="H6213"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w to|strong="H3068"\w* \w bring|strong="H6213"\w* \w in|strong="H3068"\w* \w no|strong="H6213"\w* \w burden|strong="H4853"\w* \w through|strong="H3605"\w* \w the|strong="H3605"\w* \w gates|strong="H8179"\w* \w of|strong="H3068"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w*, \w but|strong="H1961"\w* \w to|strong="H3068"\w* \w make|strong="H6213"\w* \w the|strong="H3605"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w* \w holy|strong="H6942"\w*, \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w no|strong="H6213"\w* \w work|strong="H4399"\w* therein; +\v 25 \w then|strong="H4428"\w* \w there|strong="H3427"\w* \w will|strong="H4428"\w* enter \w in|strong="H3427"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w gates|strong="H8179"\w* \w of|strong="H4428"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w kings|strong="H4428"\w* \w and|strong="H3063"\w* \w princes|strong="H8269"\w* \w sitting|strong="H3427"\w* \w on|strong="H5921"\w* \w David|strong="H1732"\w*’s \w throne|strong="H3678"\w*, \w riding|strong="H7392"\w* \w in|strong="H3427"\w* \w chariots|strong="H7393"\w* \w and|strong="H3063"\w* \w on|strong="H5921"\w* \w horses|strong="H5483"\w*, \w they|strong="H1992"\w* \w and|strong="H3063"\w* \w their|strong="H1992"\w* \w princes|strong="H8269"\w*, \w the|strong="H5921"\w* \w men|strong="H1992"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w the|strong="H5921"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*; \w and|strong="H3063"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w will|strong="H4428"\w* \w remain|strong="H3427"\w* \w forever|strong="H5769"\w*. +\v 26 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w come|strong="H3063"\w* \w from|strong="H4480"\w* \w the|strong="H3068"\w* \w cities|strong="H5892"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w from|strong="H4480"\w* \w the|strong="H3068"\w* \w places|strong="H1004"\w* \w around|strong="H5439"\w* \w Jerusalem|strong="H3389"\w*, \w from|strong="H4480"\w* \w the|strong="H3068"\w* land \w of|strong="H1004"\w* \w Benjamin|strong="H1144"\w*, \w from|strong="H4480"\w* \w the|strong="H3068"\w* \w lowland|strong="H8219"\w*, \w from|strong="H4480"\w* \w the|strong="H3068"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*, \w and|strong="H3063"\w* \w from|strong="H4480"\w* \w the|strong="H3068"\w* \w South|strong="H5045"\w*, bringing \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w*, \w sacrifices|strong="H2077"\w*, \w meal|strong="H4503"\w* \w offerings|strong="H5930"\w*, \w and|strong="H3063"\w* \w frankincense|strong="H3828"\w*, \w and|strong="H3063"\w* bringing \w sacrifices|strong="H2077"\w* \w of|strong="H1004"\w* \w thanksgiving|strong="H8426"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 27 \w But|strong="H3808"\w* if \w you|strong="H3117"\w* \w will|strong="H3389"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H3117"\w* \w me|strong="H3808"\w* \w to|strong="H3117"\w* \w make|strong="H8085"\w* \w the|strong="H8085"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w* \w holy|strong="H6942"\w*, \w and|strong="H3117"\w* \w not|strong="H3808"\w* \w to|strong="H3117"\w* \w bear|strong="H5375"\w* \w a|strong="H3068"\w* \w burden|strong="H4853"\w* \w and|strong="H3117"\w* enter \w in|strong="H8085"\w* \w at|strong="H3117"\w* \w the|strong="H8085"\w* \w gates|strong="H8179"\w* \w of|strong="H3117"\w* \w Jerusalem|strong="H3389"\w* \w on|strong="H3117"\w* \w the|strong="H8085"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w*, \w then|strong="H5375"\w* \w I|strong="H3117"\w* \w will|strong="H3389"\w* \w kindle|strong="H3341"\w* \w a|strong="H3068"\w* \w fire|strong="H3341"\w* \w in|strong="H8085"\w* \w its|strong="H5375"\w* \w gates|strong="H8179"\w*, \w and|strong="H3117"\w* \w it|strong="H5375"\w* \w will|strong="H3389"\w* devour \w the|strong="H8085"\w* palaces \w of|strong="H3117"\w* \w Jerusalem|strong="H3389"\w*. \w It|strong="H5375"\w* \w will|strong="H3389"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w quenched|strong="H3518"\w*.”’” +\c 18 +\p +\v 1 \w The|strong="H3068"\w* \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w* \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Arise|strong="H6965"\w*, \w and|strong="H6965"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H8085"\w* \w potter|strong="H3335"\w*’s \w house|strong="H1004"\w*, \w and|strong="H6965"\w* \w there|strong="H8033"\w* \w I|strong="H1697"\w* \w will|strong="H1004"\w* \w cause|strong="H1697"\w* \w you|strong="H3381"\w* \w to|strong="H3381"\w* \w hear|strong="H8085"\w* \w my|strong="H8085"\w* \w words|strong="H1697"\w*.” +\p +\v 3 \w Then|strong="H2009"\w* \w I|strong="H2009"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H5921"\w* \w potter|strong="H3335"\w*’s \w house|strong="H1004"\w*, \w and|strong="H1004"\w* \w behold|strong="H2009"\w*, \w he|strong="H6213"\w* \w was|strong="H1004"\w* \w making|strong="H6213"\w* \w something|strong="H4399"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* wheels. +\v 4 \w When|strong="H7725"\w* \w the|strong="H6213"\w* \w vessel|strong="H3627"\w* \w that|strong="H1931"\w* \w he|strong="H1931"\w* \w made|strong="H6213"\w* \w of|strong="H3027"\w* \w the|strong="H6213"\w* \w clay|strong="H2563"\w* \w was|strong="H1931"\w* \w marred|strong="H7843"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H6213"\w* \w potter|strong="H3335"\w*, \w he|strong="H1931"\w* \w made|strong="H6213"\w* \w it|strong="H1931"\w* \w again|strong="H7725"\w* \w another|strong="H3627"\w* \w vessel|strong="H3627"\w*, \w as|strong="H6213"\w* \w seemed|strong="H5869"\w* \w good|strong="H3474"\w* \w to|strong="H7725"\w* \w the|strong="H6213"\w* \w potter|strong="H3335"\w* \w to|strong="H7725"\w* \w make|strong="H6213"\w* \w it|strong="H1931"\w*. +\p +\v 5 \w Then|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 6 “\w House|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w can|strong="H3201"\w*’t \w I|strong="H2009"\w* \w do|strong="H6213"\w* \w with|strong="H1004"\w* \w you|strong="H6213"\w* \w as|strong="H6213"\w* \w this|strong="H2088"\w* \w potter|strong="H3335"\w*?” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. “\w Behold|strong="H2009"\w*, \w as|strong="H6213"\w* \w the|strong="H5002"\w* \w clay|strong="H2563"\w* \w in|strong="H3478"\w* \w the|strong="H5002"\w* \w potter|strong="H3335"\w*’s \w hand|strong="H3027"\w*, \w so|strong="H3651"\w* \w are|strong="H3478"\w* \w you|strong="H6213"\w* \w in|strong="H3478"\w* \w my|strong="H3068"\w* \w hand|strong="H3027"\w*, \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. +\v 7 \w At|strong="H5921"\w* \w the|strong="H5921"\w* \w instant|strong="H7281"\w* \w I|strong="H5921"\w* \w speak|strong="H1696"\w* \w concerning|strong="H5921"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w*, \w and|strong="H1471"\w* \w concerning|strong="H5921"\w* \w a|strong="H3068"\w* \w kingdom|strong="H4467"\w*, \w to|strong="H1696"\w* \w pluck|strong="H5428"\w* \w up|strong="H5428"\w* \w and|strong="H1471"\w* \w to|strong="H1696"\w* \w break|strong="H5422"\w* \w down|strong="H5422"\w* \w and|strong="H1471"\w* \w to|strong="H1696"\w* \w destroy|strong="H5422"\w* \w it|strong="H5921"\w*, +\v 8 \w if|strong="H1931"\w* \w that|strong="H1931"\w* \w nation|strong="H1471"\w*, \w concerning|strong="H5921"\w* \w which|strong="H1931"\w* \w I|strong="H5921"\w* \w have|strong="H1471"\w* \w spoken|strong="H1696"\w*, \w turns|strong="H7725"\w* \w from|strong="H7725"\w* \w their|strong="H7725"\w* \w evil|strong="H7451"\w*, \w I|strong="H5921"\w* \w will|strong="H1471"\w* \w repent|strong="H5162"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w evil|strong="H7451"\w* \w that|strong="H1931"\w* \w I|strong="H5921"\w* \w thought|strong="H2803"\w* \w to|strong="H1696"\w* \w do|strong="H6213"\w* \w to|strong="H1696"\w* \w them|strong="H5921"\w*. +\v 9 \w At|strong="H5921"\w* \w the|strong="H5921"\w* \w instant|strong="H7281"\w* \w I|strong="H5921"\w* \w speak|strong="H1696"\w* \w concerning|strong="H5921"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w*, \w and|strong="H1471"\w* \w concerning|strong="H5921"\w* \w a|strong="H3068"\w* \w kingdom|strong="H4467"\w*, \w to|strong="H1696"\w* \w build|strong="H1129"\w* \w and|strong="H1471"\w* \w to|strong="H1696"\w* \w plant|strong="H5193"\w* \w it|strong="H5921"\w*, +\v 10 if \w they|strong="H5921"\w* \w do|strong="H6213"\w* \w that|strong="H8085"\w* \w which|strong="H5869"\w* \w is|strong="H2896"\w* \w evil|strong="H7451"\w* \w in|strong="H5921"\w* \w my|strong="H8085"\w* \w sight|strong="H5869"\w*, \w that|strong="H8085"\w* \w they|strong="H5921"\w* \w not|strong="H1115"\w* \w obey|strong="H8085"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*, \w then|strong="H6213"\w* \w I|strong="H5921"\w* \w will|strong="H5869"\w* \w repent|strong="H5162"\w* \w of|strong="H6963"\w* \w the|strong="H5921"\w* \w good|strong="H2896"\w* \w with|strong="H6213"\w* \w which|strong="H5869"\w* \w I|strong="H5921"\w* \w said|strong="H8085"\w* \w I|strong="H5921"\w* \w would|strong="H6213"\w* \w benefit|strong="H3190"\w* \w them|strong="H5921"\w*. +\p +\v 11 “\w Now|strong="H6258"\w* \w therefore|strong="H5921"\w*, speak \w to|strong="H7725"\w* \w the|strong="H5921"\w* \w men|strong="H7451"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w to|strong="H7725"\w* \w the|strong="H5921"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, saying, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Behold|strong="H2009"\w*, \w I|strong="H3541"\w* \w frame|strong="H3335"\w* \w evil|strong="H7451"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w*, \w and|strong="H3063"\w* \w devise|strong="H2803"\w* \w a|strong="H3068"\w* \w plan|strong="H2803"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w*. Everyone \w return|strong="H7725"\w* \w from|strong="H7725"\w* \w his|strong="H3068"\w* \w evil|strong="H7451"\w* \w way|strong="H1870"\w* \w now|strong="H6258"\w*, \w and|strong="H3063"\w* \w amend|strong="H3190"\w* \w your|strong="H3068"\w* \w ways|strong="H1870"\w* \w and|strong="H3063"\w* \w your|strong="H3068"\w* \w doings|strong="H4611"\w*.”’ +\v 12 \w But|strong="H3588"\w* \w they|strong="H3588"\w* say, ‘\w It|strong="H3588"\w* \w is|strong="H3820"\w* \w in|strong="H6213"\w* vain; \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w will|strong="H3820"\w* \w walk|strong="H3212"\w* \w after|strong="H3588"\w* \w our|strong="H3588"\w* own \w plans|strong="H4284"\w*, \w and|strong="H3212"\w* \w we|strong="H3068"\w* \w will|strong="H3820"\w* each \w follow|strong="H3212"\w* \w the|strong="H3588"\w* \w stubbornness|strong="H8307"\w* \w of|strong="H3820"\w* \w his|strong="H6213"\w* \w evil|strong="H7451"\w* \w heart|strong="H3820"\w*.’” +\p +\v 13 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w Ask|strong="H7592"\w* \w now|strong="H4994"\w* \w among|strong="H4310"\w* \w the|strong="H8085"\w* \w nations|strong="H1471"\w*, +\q2 ‘\w Who|strong="H4310"\w* \w has|strong="H3068"\w* \w heard|strong="H8085"\w* \w such|strong="H3651"\w* \w things|strong="H7592"\w*?’ +\q2 \w The|strong="H8085"\w* \w virgin|strong="H1330"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w horrible|strong="H8186"\w* \w thing|strong="H8186"\w*. +\q1 +\v 14 \w Will|strong="H7704"\w* \w the|strong="H5800"\w* \w snow|strong="H7950"\w* \w of|strong="H4325"\w* \w Lebanon|strong="H3844"\w* fail \w from|strong="H4325"\w* \w the|strong="H5800"\w* \w rock|strong="H6697"\w* \w of|strong="H4325"\w* \w the|strong="H5800"\w* \w field|strong="H7704"\w*? +\q2 \w Will|strong="H7704"\w* \w the|strong="H5800"\w* \w cold|strong="H7119"\w* \w waters|strong="H4325"\w* \w that|strong="H4325"\w* \w flow|strong="H5140"\w* \w down|strong="H5140"\w* \w from|strong="H4325"\w* afar \w be|strong="H2114"\w* dried \w up|strong="H5428"\w*? +\q1 +\v 15 \w For|strong="H3588"\w* \w my|strong="H3588"\w* \w people|strong="H5971"\w* \w have|strong="H5971"\w* \w forgotten|strong="H7911"\w* \w me|strong="H7911"\w*. +\q2 \w They|strong="H3588"\w* \w have|strong="H5971"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H3212"\w* \w false|strong="H7723"\w* \w gods|strong="H7723"\w*. +\q1 \w They|strong="H3588"\w* \w have|strong="H5971"\w* \w been|strong="H5769"\w* made \w to|strong="H3212"\w* \w stumble|strong="H3782"\w* \w in|strong="H3212"\w* \w their|strong="H3588"\w* \w ways|strong="H1870"\w* +\q2 \w in|strong="H3212"\w* \w the|strong="H3588"\w* \w ancient|strong="H5769"\w* \w paths|strong="H5410"\w*, +\q2 \w to|strong="H3212"\w* \w walk|strong="H3212"\w* \w in|strong="H3212"\w* byways, \w in|strong="H3212"\w* \w a|strong="H3068"\w* \w way|strong="H1870"\w* \w not|strong="H3808"\w* built \w up|strong="H5549"\w*, +\q1 +\v 16 \w to|strong="H5921"\w* \w make|strong="H7760"\w* \w their|strong="H3605"\w* land \w an|strong="H7760"\w* \w astonishment|strong="H8047"\w*, +\q2 \w and|strong="H7218"\w* \w a|strong="H3068"\w* \w perpetual|strong="H5769"\w* \w hissing|strong="H8292"\w*. +\q1 \w Everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w passes|strong="H5674"\w* \w by|strong="H5921"\w* \w it|strong="H7760"\w* \w will|strong="H3605"\w* \w be|strong="H5769"\w* \w astonished|strong="H8074"\w*, +\q2 \w and|strong="H7218"\w* \w shake|strong="H5110"\w* \w his|strong="H3605"\w* \w head|strong="H7218"\w*. +\q1 +\v 17 \w I|strong="H3117"\w* \w will|strong="H7307"\w* \w scatter|strong="H6327"\w* \w them|strong="H6440"\w* \w as|strong="H3117"\w* \w with|strong="H6440"\w* \w an|strong="H7200"\w* \w east|strong="H6921"\w* \w wind|strong="H7307"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* enemy. +\q2 \w I|strong="H3117"\w* \w will|strong="H7307"\w* \w show|strong="H7200"\w* \w them|strong="H6440"\w* \w the|strong="H6440"\w* \w back|strong="H6203"\w*, \w and|strong="H3117"\w* \w not|strong="H3808"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w*, +\q2 \w in|strong="H3117"\w* \w the|strong="H6440"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w their|strong="H6440"\w* calamity. +\p +\v 18 \w Then|strong="H3588"\w* \w they|strong="H3588"\w* \w said|strong="H1697"\w*, “\w Come|strong="H3212"\w*! \w Let|strong="H3808"\w*’s \w devise|strong="H2803"\w* \w plans|strong="H4284"\w* \w against|strong="H5921"\w* \w Jeremiah|strong="H3414"\w*; \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* won’t perish \w from|strong="H5921"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w*, \w nor|strong="H3808"\w* \w counsel|strong="H6098"\w* \w from|strong="H5921"\w* \w the|strong="H3605"\w* \w wise|strong="H2450"\w*, \w nor|strong="H3808"\w* \w the|strong="H3605"\w* \w word|strong="H1697"\w* \w from|strong="H5921"\w* \w the|strong="H3605"\w* \w prophet|strong="H5030"\w*. \w Come|strong="H3212"\w*, \w and|strong="H3212"\w* \w let|strong="H3808"\w*’s \w strike|strong="H5221"\w* \w him|strong="H5921"\w* \w with|strong="H5921"\w* \w the|strong="H3605"\w* \w tongue|strong="H3956"\w*, \w and|strong="H3212"\w* \w let|strong="H3808"\w*’s \w not|strong="H3808"\w* \w give|strong="H7181"\w* \w heed|strong="H7181"\w* \w to|strong="H3212"\w* \w any|strong="H3605"\w* \w of|strong="H1697"\w* \w his|strong="H3605"\w* \w words|strong="H1697"\w*.” +\q1 +\v 19 \w Give|strong="H7181"\w* \w heed|strong="H7181"\w* \w to|strong="H3068"\w* \w me|strong="H6963"\w*, \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w those|strong="H8085"\w* \w who|strong="H3068"\w* \w contend|strong="H3401"\w* \w with|strong="H3068"\w* \w me|strong="H6963"\w*. +\q1 +\v 20 \w Should|strong="H3588"\w* \w evil|strong="H7451"\w* \w be|strong="H5315"\w* \w recompensed|strong="H7725"\w* \w for|strong="H3588"\w* \w good|strong="H2896"\w*? +\q2 \w For|strong="H3588"\w* \w they|strong="H1992"\w* \w have|strong="H1696"\w* \w dug|strong="H3738"\w* \w a|strong="H3068"\w* \w pit|strong="H7745"\w* \w for|strong="H3588"\w* \w my|strong="H5921"\w* \w soul|strong="H5315"\w*. +\q1 \w Remember|strong="H2142"\w* \w how|strong="H3588"\w* \w I|strong="H3588"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w good|strong="H2896"\w* \w for|strong="H3588"\w* \w them|strong="H1992"\w*, +\q2 \w to|strong="H1696"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w your|strong="H5921"\w* \w wrath|strong="H2534"\w* \w from|strong="H7725"\w* \w them|strong="H1992"\w*. +\q1 +\v 21 \w Therefore|strong="H3651"\w* \w deliver|strong="H5414"\w* \w up|strong="H5414"\w* \w their|strong="H5414"\w* \w children|strong="H1121"\w* \w to|strong="H1961"\w* \w the|strong="H5921"\w* \w famine|strong="H7458"\w*, +\q2 \w and|strong="H1121"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w over|strong="H5921"\w* \w to|strong="H1961"\w* \w the|strong="H5921"\w* \w power|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w*. +\q1 \w Let|strong="H5414"\w* \w their|strong="H5414"\w* wives \w become|strong="H1961"\w* \w childless|strong="H7909"\w* \w and|strong="H1121"\w* widows. +\q2 \w Let|strong="H5414"\w* \w their|strong="H5414"\w* \w men|strong="H1121"\w* \w be|strong="H1961"\w* \w killed|strong="H2026"\w* +\q2 \w and|strong="H1121"\w* \w their|strong="H5414"\w* \w young|strong="H1121"\w* \w men|strong="H1121"\w* \w struck|strong="H5221"\w* \w by|strong="H3027"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w* \w in|strong="H5921"\w* \w battle|strong="H4421"\w*. +\q1 +\v 22 Let \w a|strong="H3068"\w* \w cry|strong="H2201"\w* \w be|strong="H1004"\w* \w heard|strong="H8085"\w* \w from|strong="H5921"\w* \w their|strong="H8085"\w* \w houses|strong="H1004"\w* +\q2 \w when|strong="H3588"\w* \w you|strong="H3588"\w* bring \w a|strong="H3068"\w* \w troop|strong="H1416"\w* \w suddenly|strong="H6597"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*; +\q1 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H7272"\w* \w dug|strong="H3738"\w* \w a|strong="H3068"\w* \w pit|strong="H7882"\w* \w to|strong="H5921"\w* \w take|strong="H3920"\w* \w me|strong="H5921"\w* +\q2 \w and|strong="H1004"\w* \w hidden|strong="H2934"\w* \w snares|strong="H6341"\w* \w for|strong="H3588"\w* \w my|strong="H8085"\w* \w feet|strong="H7272"\w*. +\q1 +\v 23 \w Yet|strong="H3068"\w*, \w Yahweh|strong="H3068"\w*, \w you|strong="H6440"\w* \w know|strong="H3045"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w counsel|strong="H6098"\w* \w against|strong="H5921"\w* \w me|strong="H6440"\w* \w to|strong="H3068"\w* kill \w me|strong="H6440"\w*. +\q2 Don’t \w forgive|strong="H3722"\w* \w their|strong="H3605"\w* \w iniquity|strong="H5771"\w*. +\q2 Don’t \w blot|strong="H4229"\w* \w out|strong="H4229"\w* \w their|strong="H3605"\w* \w sin|strong="H2403"\w* \w from|strong="H6440"\w* \w your|strong="H3068"\w* \w sight|strong="H6440"\w*, +\q1 \w Let|strong="H6256"\w* \w them|strong="H5921"\w* \w be|strong="H1961"\w* \w overthrown|strong="H3782"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*. +\q2 \w Deal|strong="H6213"\w* \w with|strong="H3068"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w time|strong="H6256"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w anger|strong="H6440"\w*. +\c 19 +\p +\v 1 \w Thus|strong="H3541"\w* said \w Yahweh|strong="H3068"\w*, “\w Go|strong="H1980"\w*, \w and|strong="H1980"\w* \w buy|strong="H7069"\w* \w a|strong="H3068"\w* \w potter|strong="H3335"\w*’s \w earthen|strong="H2789"\w* container, \w and|strong="H1980"\w* \w take|strong="H1980"\w* \w some|strong="H5971"\w* \w of|strong="H3068"\w* \w the|strong="H3541"\w* \w elders|strong="H2205"\w* \w of|strong="H3068"\w* \w the|strong="H3541"\w* \w people|strong="H5971"\w* \w and|strong="H1980"\w* \w of|strong="H3068"\w* \w the|strong="H3541"\w* \w elders|strong="H2205"\w* \w of|strong="H3068"\w* \w the|strong="H3541"\w* \w priests|strong="H3548"\w*; +\v 2 \w and|strong="H1121"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H1696"\w* \w the|strong="H7121"\w* \w valley|strong="H1516"\w* \w of|strong="H1121"\w* \w the|strong="H7121"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hinnom|strong="H2011"\w*, \w which|strong="H1697"\w* \w is|strong="H1697"\w* \w by|strong="H7121"\w* \w the|strong="H7121"\w* \w entry|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H7121"\w* \w gate|strong="H8179"\w* Harsith, \w and|strong="H1121"\w* \w proclaim|strong="H7121"\w* \w there|strong="H8033"\w* \w the|strong="H7121"\w* \w words|strong="H1697"\w* \w that|strong="H1697"\w* \w I|strong="H1697"\w* \w will|strong="H1121"\w* \w tell|strong="H1696"\w* \w you|strong="H1696"\w*. +\v 3 \w Say|strong="H1697"\w*, ‘\w Hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*: \w Yahweh|strong="H3068"\w* \w of|strong="H4428"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*, “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w bring|strong="H7451"\w* \w evil|strong="H7451"\w* \w on|strong="H5921"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*, \w which|strong="H3068"\w* \w whoever|strong="H3605"\w* \w hears|strong="H8085"\w*, \w his|strong="H3605"\w* ears \w will|strong="H3068"\w* \w tingle|strong="H6750"\w*. +\v 4 \w Because|strong="H3282"\w* \w they|strong="H1992"\w* \w have|strong="H3045"\w* \w forsaken|strong="H5800"\w* \w me|strong="H5800"\w*, \w and|strong="H3063"\w* \w have|strong="H3045"\w* defiled \w this|strong="H2088"\w* \w place|strong="H4725"\w*, \w and|strong="H3063"\w* \w have|strong="H3045"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w in|strong="H4428"\w* \w it|strong="H3045"\w* \w to|strong="H4428"\w* \w other|strong="H2088"\w* gods \w that|strong="H3045"\w* \w they|strong="H1992"\w* didn’t \w know|strong="H3045"\w*—\w they|strong="H1992"\w*, \w their|strong="H1992"\w* fathers, \w and|strong="H3063"\w* \w the|strong="H3045"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*—\w and|strong="H3063"\w* \w have|strong="H3045"\w* \w filled|strong="H4390"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w* \w with|strong="H4390"\w* \w the|strong="H3045"\w* \w blood|strong="H1818"\w* \w of|strong="H4428"\w* \w innocents|strong="H5355"\w*, +\v 5 \w and|strong="H1121"\w* \w have|strong="H1121"\w* \w built|strong="H1129"\w* \w the|strong="H5921"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w of|strong="H1121"\w* \w Baal|strong="H1168"\w* \w to|strong="H1696"\w* \w burn|strong="H8313"\w* \w their|strong="H8313"\w* \w children|strong="H1121"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* fire \w for|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w to|strong="H1696"\w* \w Baal|strong="H1168"\w*, \w which|strong="H1116"\w* \w I|strong="H5921"\w* didn’t \w command|strong="H6680"\w*, \w nor|strong="H3808"\w* \w speak|strong="H1696"\w*, \w which|strong="H1116"\w* didn’t \w even|strong="H3808"\w* \w enter|strong="H5927"\w* \w into|strong="H5927"\w* \w my|strong="H5921"\w* \w mind|strong="H3820"\w*. +\v 6 \w Therefore|strong="H3651"\w*, \w behold|strong="H2009"\w*, \w the|strong="H5002"\w* \w days|strong="H3117"\w* \w come|strong="H5750"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w that|strong="H3588"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w* \w will|strong="H3068"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w be|strong="H3808"\w* \w called|strong="H7121"\w* ‘\w Topheth|strong="H8612"\w*’, \w nor|strong="H3808"\w* ‘\w The|strong="H5002"\w* \w Valley|strong="H1516"\w* \w of|strong="H1121"\w* \w the|strong="H5002"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hinnom|strong="H2011"\w*’, \w but|strong="H3588"\w* ‘\w The|strong="H5002"\w* \w valley|strong="H1516"\w* \w of|strong="H1121"\w* \w Slaughter|strong="H2028"\w*’. +\p +\v 7 “‘“\w I|strong="H5414"\w* \w will|strong="H2719"\w* \w make|strong="H5414"\w* \w the|strong="H6440"\w* \w counsel|strong="H6098"\w* \w of|strong="H3027"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w* \w void|strong="H1238"\w* \w in|strong="H5315"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*. \w I|strong="H5414"\w* \w will|strong="H2719"\w* \w cause|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H5414"\w* \w fall|strong="H5307"\w* \w by|strong="H3027"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w* \w before|strong="H6440"\w* \w their|strong="H5414"\w* \w enemies|strong="H3027"\w*, \w and|strong="H3063"\w* \w by|strong="H3027"\w* \w the|strong="H6440"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w those|strong="H2088"\w* \w who|strong="H5315"\w* \w seek|strong="H1245"\w* \w their|strong="H5414"\w* \w life|strong="H5315"\w*. \w I|strong="H5414"\w* \w will|strong="H2719"\w* \w give|strong="H5414"\w* \w their|strong="H5414"\w* \w dead|strong="H5315"\w* \w bodies|strong="H5038"\w* \w to|strong="H5414"\w* \w be|strong="H3027"\w* \w food|strong="H3978"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* \w birds|strong="H5775"\w* \w of|strong="H3027"\w* \w the|strong="H6440"\w* \w sky|strong="H8064"\w* \w and|strong="H3063"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* animals \w of|strong="H3027"\w* \w the|strong="H6440"\w* \w earth|strong="H8064"\w*. +\v 8 \w I|strong="H5921"\w* \w will|strong="H5892"\w* \w make|strong="H7760"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w an|strong="H7760"\w* \w astonishment|strong="H8047"\w* \w and|strong="H5892"\w* \w a|strong="H3068"\w* \w hissing|strong="H8322"\w*. \w Everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w passes|strong="H5674"\w* \w by|strong="H5921"\w* \w it|strong="H7760"\w* \w will|strong="H5892"\w* \w be|strong="H5892"\w* \w astonished|strong="H8074"\w* \w and|strong="H5892"\w* \w hiss|strong="H8319"\w* \w because|strong="H5921"\w* \w of|strong="H5892"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w plagues|strong="H4347"\w*. +\v 9 \w I|strong="H5315"\w* \w will|strong="H5315"\w* cause \w them|strong="H1121"\w* \w to|strong="H1121"\w* eat \w the|strong="H1245"\w* \w flesh|strong="H1320"\w* \w of|strong="H1121"\w* \w their|strong="H1245"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w the|strong="H1245"\w* \w flesh|strong="H1320"\w* \w of|strong="H1121"\w* \w their|strong="H1245"\w* \w daughters|strong="H1323"\w*. \w They|strong="H5315"\w* \w will|strong="H5315"\w* each eat \w the|strong="H1245"\w* \w flesh|strong="H1320"\w* \w of|strong="H1121"\w* \w his|strong="H1245"\w* \w friend|strong="H7453"\w* \w in|strong="H1320"\w* \w the|strong="H1245"\w* \w siege|strong="H4692"\w* \w and|strong="H1121"\w* \w in|strong="H1320"\w* \w the|strong="H1245"\w* \w distress|strong="H6693"\w* \w with|strong="H5315"\w* \w which|strong="H1323"\w* \w their|strong="H1245"\w* enemies, \w and|strong="H1121"\w* \w those|strong="H1121"\w* \w who|strong="H1121"\w* \w seek|strong="H1245"\w* \w their|strong="H1245"\w* \w life|strong="H5315"\w*, \w will|strong="H5315"\w* \w distress|strong="H6693"\w* \w them|strong="H1121"\w*.”’ +\p +\v 10 “\w Then|strong="H1980"\w* \w you|strong="H5869"\w* \w shall|strong="H5869"\w* \w break|strong="H7665"\w* \w the|strong="H7665"\w* container \w in|strong="H1980"\w* \w the|strong="H7665"\w* \w sight|strong="H5869"\w* \w of|strong="H5869"\w* \w the|strong="H7665"\w* \w men|strong="H1980"\w* \w who|strong="H1980"\w* \w go|strong="H1980"\w* \w with|strong="H1980"\w* \w you|strong="H5869"\w*, +\v 11 \w and|strong="H3068"\w* \w shall|strong="H3068"\w* tell \w them|strong="H7665"\w*, ‘\w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: “\w Even|strong="H5750"\w* \w so|strong="H3541"\w* \w I|strong="H3541"\w* \w will|strong="H3068"\w* \w break|strong="H7665"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w and|strong="H3068"\w* \w this|strong="H2088"\w* \w city|strong="H5892"\w* \w as|strong="H3068"\w* \w one|strong="H2088"\w* \w breaks|strong="H7665"\w* \w a|strong="H3068"\w* \w potter|strong="H3335"\w*’s \w vessel|strong="H3627"\w*, \w that|strong="H5971"\w* \w can|strong="H3201"\w*’t \w be|strong="H3808"\w* \w made|strong="H3335"\w* \w whole|strong="H7495"\w* \w again|strong="H5750"\w*. \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w bury|strong="H6912"\w* \w in|strong="H3068"\w* \w Topheth|strong="H8612"\w* \w until|strong="H3068"\w* \w there|strong="H2088"\w* \w is|strong="H3068"\w* \w no|strong="H3808"\w* \w place|strong="H4725"\w* \w to|strong="H3201"\w* \w bury|strong="H6912"\w*. +\v 12 \w This|strong="H2088"\w* \w is|strong="H3068"\w* \w what|strong="H2088"\w* \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w to|strong="H3068"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w and|strong="H3068"\w* \w to|strong="H3068"\w* \w its|strong="H5414"\w* \w inhabitants|strong="H3427"\w*, \w even|strong="H3651"\w* \w making|strong="H6213"\w* \w this|strong="H2088"\w* \w city|strong="H5892"\w* \w as|strong="H6213"\w* \w Topheth|strong="H8612"\w*. +\v 13 \w The|strong="H3605"\w* \w houses|strong="H1004"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H3063"\w* \w the|strong="H3605"\w* \w houses|strong="H1004"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w which|strong="H1004"\w* \w are|strong="H8064"\w* \w defiled|strong="H2931"\w*, \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w the|strong="H3605"\w* \w place|strong="H4725"\w* \w of|strong="H4428"\w* \w Topheth|strong="H8612"\w*, \w even|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w houses|strong="H1004"\w* \w on|strong="H5921"\w* \w whose|strong="H3605"\w* \w roofs|strong="H1406"\w* \w they|strong="H5921"\w* \w have|strong="H1961"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H6635"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w* \w and|strong="H3063"\w* \w have|strong="H1961"\w* \w poured|strong="H5258"\w* \w out|strong="H5258"\w* \w drink|strong="H5262"\w* \w offerings|strong="H5262"\w* \w to|strong="H1961"\w* \w other|strong="H3605"\w* gods.”’” +\p +\v 14 \w Then|strong="H7971"\w* \w Jeremiah|strong="H3414"\w* \w came|strong="H3068"\w* \w from|strong="H7971"\w* \w Topheth|strong="H8612"\w*, \w where|strong="H8033"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w sent|strong="H7971"\w* \w him|strong="H7971"\w* \w to|strong="H3068"\w* \w prophesy|strong="H5012"\w*, \w and|strong="H3068"\w* \w he|strong="H8033"\w* \w stood|strong="H5975"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* said \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*: +\v 15 “\w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*, ‘\w Behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w bring|strong="H7451"\w* \w on|strong="H5921"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w and|strong="H3478"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w towns|strong="H5892"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w pronounced|strong="H1696"\w* \w against|strong="H5921"\w* \w it|strong="H5921"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3068"\w* \w made|strong="H7185"\w* \w their|strong="H3605"\w* \w neck|strong="H6203"\w* \w stiff|strong="H7185"\w*, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w may|strong="H3068"\w* \w not|strong="H1115"\w* \w hear|strong="H8085"\w* \w my|strong="H8085"\w* \w words|strong="H1697"\w*.’” +\c 20 +\p +\v 1 \w Now|strong="H8085"\w* \w Pashhur|strong="H6583"\w*, \w the|strong="H8085"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Immer \w the|strong="H8085"\w* \w priest|strong="H3548"\w*, \w who|strong="H1931"\w* \w was|strong="H3068"\w* \w chief|strong="H5057"\w* \w officer|strong="H5057"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w heard|strong="H8085"\w* \w Jeremiah|strong="H3414"\w* \w prophesying|strong="H5012"\w* \w these|strong="H8085"\w* \w things|strong="H1697"\w*. +\v 2 \w Then|strong="H5414"\w* \w Pashhur|strong="H6583"\w* \w struck|strong="H5221"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w* \w and|strong="H3068"\w* \w put|strong="H5414"\w* \w him|strong="H5414"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w stocks|strong="H4115"\w* \w that|strong="H3068"\w* \w were|strong="H1144"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w upper|strong="H5945"\w* \w gate|strong="H8179"\w* \w of|strong="H1004"\w* \w Benjamin|strong="H1144"\w*, \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 3 \w On|strong="H3068"\w* \w the|strong="H3588"\w* \w next|strong="H4283"\w* \w day|strong="H4283"\w*, \w Pashhur|strong="H6583"\w* \w released|strong="H3318"\w* \w Jeremiah|strong="H3414"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w stocks|strong="H4115"\w*. \w Then|strong="H1961"\w* \w Jeremiah|strong="H3414"\w* \w said|strong="H7121"\w* \w to|strong="H3318"\w* \w him|strong="H7121"\w*, “\w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w called|strong="H7121"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w* \w Pashhur|strong="H6583"\w*, \w but|strong="H3588"\w* Magormissabib.\f + \fr 20:3 \ft “Magormissabib” means “surrounded by terror”\f* +\v 4 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w Behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w make|strong="H5414"\w* \w you|strong="H3588"\w* \w a|strong="H3068"\w* \w terror|strong="H4032"\w* \w to|strong="H3068"\w* \w yourself|strong="H5307"\w* \w and|strong="H3063"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* friends. \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w fall|strong="H5307"\w* \w by|strong="H3027"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w* \w of|strong="H4428"\w* \w their|strong="H3605"\w* \w enemies|strong="H3027"\w*, \w and|strong="H3063"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w* \w will|strong="H3068"\w* \w see|strong="H7200"\w* \w it|strong="H5414"\w*. \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w all|strong="H3605"\w* \w Judah|strong="H3063"\w* \w into|strong="H1540"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w and|strong="H3063"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w carry|strong="H1540"\w* \w them|strong="H5414"\w* \w captive|strong="H1540"\w* \w to|strong="H3068"\w* Babylon, \w and|strong="H3063"\w* \w will|strong="H3068"\w* \w kill|strong="H5221"\w* \w them|strong="H5414"\w* \w with|strong="H3068"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*. +\v 5 Moreover \w I|strong="H5414"\w* \w will|strong="H4428"\w* \w give|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w riches|strong="H2633"\w* \w of|strong="H4428"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* gains, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w precious|strong="H3366"\w* \w things|strong="H3605"\w*, yes, \w I|strong="H5414"\w* \w will|strong="H4428"\w* \w give|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* treasures \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w into|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w their|strong="H3605"\w* \w enemies|strong="H3027"\w*. \w They|strong="H3605"\w* \w will|strong="H4428"\w* \w make|strong="H5414"\w* \w them|strong="H5414"\w* captives, \w take|strong="H3947"\w* \w them|strong="H5414"\w*, \w and|strong="H3063"\w* \w carry|strong="H3947"\w* \w them|strong="H5414"\w* \w to|strong="H5414"\w* Babylon. +\v 6 \w You|strong="H3605"\w*, \w Pashhur|strong="H6583"\w*, \w and|strong="H1004"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w your|strong="H3605"\w* \w house|strong="H1004"\w* \w will|strong="H1004"\w* \w go|strong="H3212"\w* \w into|strong="H3212"\w* \w captivity|strong="H7628"\w*. \w You|strong="H3605"\w* \w will|strong="H1004"\w* \w come|strong="H3212"\w* \w to|strong="H4191"\w* Babylon, \w and|strong="H1004"\w* \w there|strong="H8033"\w* \w you|strong="H3605"\w* \w will|strong="H1004"\w* \w die|strong="H4191"\w*, \w and|strong="H1004"\w* \w there|strong="H8033"\w* \w you|strong="H3605"\w* \w will|strong="H1004"\w* \w be|strong="H4191"\w* \w buried|strong="H6912"\w*, \w you|strong="H3605"\w*, \w and|strong="H1004"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* friends, \w to|strong="H4191"\w* \w whom|strong="H1992"\w* \w you|strong="H3605"\w* \w have|strong="H3605"\w* \w prophesied|strong="H5012"\w* \w falsely|strong="H8267"\w*.’” +\b +\q1 +\v 7 \w Yahweh|strong="H3068"\w*, \w you|strong="H3605"\w* \w have|strong="H1961"\w* \w persuaded|strong="H2388"\w* \w me|strong="H2388"\w*, \w and|strong="H3068"\w* \w I|strong="H3117"\w* \w was|strong="H3068"\w* \w persuaded|strong="H2388"\w*. +\q2 \w You|strong="H3605"\w* \w are|strong="H3117"\w* \w stronger|strong="H2388"\w* \w than|strong="H3605"\w* \w I|strong="H3117"\w*, \w and|strong="H3068"\w* \w have|strong="H1961"\w* \w prevailed|strong="H3201"\w*. +\q1 \w I|strong="H3117"\w* \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w laughingstock|strong="H7814"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w*. +\q2 \w Everyone|strong="H3605"\w* \w mocks|strong="H3932"\w* \w me|strong="H2388"\w*. +\q1 +\v 8 \w For|strong="H3588"\w* \w as|strong="H1697"\w* \w often|strong="H1767"\w* \w as|strong="H1697"\w* \w I|strong="H3588"\w* \w speak|strong="H1696"\w*, \w I|strong="H3588"\w* \w cry|strong="H7121"\w* \w out|strong="H2199"\w*; +\q2 \w I|strong="H3588"\w* \w cry|strong="H7121"\w*, “\w Violence|strong="H2555"\w* \w and|strong="H3068"\w* \w destruction|strong="H7701"\w*!” +\q1 \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w has|strong="H3068"\w* \w been|strong="H1961"\w* \w made|strong="H1696"\w* \w a|strong="H3068"\w* \w reproach|strong="H2781"\w* \w to|strong="H1696"\w* \w me|strong="H7121"\w*, +\q2 \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w derision|strong="H7047"\w*, \w all|strong="H3605"\w* \w day|strong="H3117"\w*. +\q1 +\v 9 \w If|strong="H1961"\w* \w I|strong="H3201"\w* \w say|strong="H1696"\w* \w that|strong="H3808"\w* \w I|strong="H3201"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w make|strong="H1197"\w* \w mention|strong="H2142"\w* \w of|strong="H8034"\w* \w him|strong="H2142"\w*, +\q2 \w or|strong="H3808"\w* \w speak|strong="H1696"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w* \w in|strong="H1696"\w* \w his|strong="H1961"\w* \w name|strong="H8034"\w*, +\q1 \w then|strong="H1961"\w* \w there|strong="H1961"\w* \w is|strong="H3820"\w* \w in|strong="H1696"\w* \w my|strong="H1961"\w* \w heart|strong="H3820"\w* \w as|strong="H1961"\w* \w it|strong="H8034"\w* \w were|strong="H1961"\w* \w a|strong="H3068"\w* \w burning|strong="H1197"\w* fire \w shut|strong="H6113"\w* \w up|strong="H6113"\w* \w in|strong="H1696"\w* \w my|strong="H1961"\w* \w bones|strong="H6106"\w*. +\q2 \w I|strong="H3201"\w* \w am|strong="H1961"\w* \w weary|strong="H3811"\w* \w with|strong="H1696"\w* \w holding|strong="H3557"\w* \w it|strong="H8034"\w* \w in|strong="H1696"\w*. +\q2 \w I|strong="H3201"\w* \w can|strong="H3201"\w*’t. +\q1 +\v 10 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H7965"\w* \w heard|strong="H8085"\w* \w the|strong="H3605"\w* \w defaming|strong="H1681"\w* \w of|strong="H4480"\w* \w many|strong="H7227"\w*: +\q2 “\w Terror|strong="H4032"\w* \w on|strong="H4032"\w* \w every|strong="H3605"\w* \w side|strong="H5439"\w*! +\q2 \w Denounce|strong="H5046"\w*, \w and|strong="H8085"\w* \w we|strong="H3068"\w* \w will|strong="H7227"\w* \w denounce|strong="H5046"\w* \w him|strong="H5046"\w*!” +\q1 say \w all|strong="H3605"\w* \w my|strong="H8104"\w* \w familiar|strong="H7965"\w* friends, +\q2 \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w watch|strong="H8104"\w* \w for|strong="H3588"\w* \w my|strong="H8104"\w* \w fall|strong="H6761"\w*. +\q1 “\w Perhaps|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H7227"\w* \w be|strong="H3201"\w* \w persuaded|strong="H6601"\w*, +\q2 \w and|strong="H8085"\w* \w we|strong="H3068"\w* \w will|strong="H7227"\w* \w prevail|strong="H3201"\w* \w against|strong="H4480"\w* \w him|strong="H5046"\w*, +\q2 \w and|strong="H8085"\w* \w we|strong="H3068"\w* \w will|strong="H7227"\w* \w take|strong="H3947"\w* \w our|strong="H3605"\w* \w revenge|strong="H5360"\w* \w on|strong="H4032"\w* \w him|strong="H5046"\w*.” +\q1 +\v 11 \w But|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w with|strong="H3068"\w* \w me|strong="H5921"\w* \w as|strong="H3651"\w* \w an|strong="H3588"\w* awesome \w mighty|strong="H1368"\w* \w one|strong="H3808"\w*. +\q2 \w Therefore|strong="H3651"\w* \w my|strong="H3068"\w* \w persecutors|strong="H7291"\w* \w will|strong="H3068"\w* \w stumble|strong="H3782"\w*, +\q2 \w and|strong="H3068"\w* \w they|strong="H3588"\w* won’t \w prevail|strong="H3201"\w*. +\q1 \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w utterly|strong="H3966"\w* disappointed +\q2 \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* dealt \w wisely|strong="H7919"\w*, +\q2 \w even|strong="H3588"\w* \w with|strong="H3068"\w* \w an|strong="H3588"\w* \w everlasting|strong="H5769"\w* \w dishonor|strong="H3639"\w* \w which|strong="H3068"\w* \w will|strong="H3068"\w* \w never|strong="H3808"\w* \w be|strong="H3808"\w* \w forgotten|strong="H7911"\w*. +\q1 +\v 12 \w But|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w who|strong="H3068"\w* tests \w the|strong="H7200"\w* \w righteous|strong="H6662"\w*, +\q2 \w who|strong="H3068"\w* \w sees|strong="H7200"\w* \w the|strong="H7200"\w* \w heart|strong="H3820"\w* \w and|strong="H3068"\w* \w the|strong="H7200"\w* \w mind|strong="H3820"\w*, +\q1 \w let|strong="H1540"\w* \w me|strong="H7200"\w* \w see|strong="H7200"\w* \w your|strong="H3068"\w* \w vengeance|strong="H5360"\w* \w on|strong="H7200"\w* \w them|strong="H1992"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w revealed|strong="H1540"\w* \w my|strong="H3068"\w* \w cause|strong="H7379"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w*. +\q1 +\v 13 \w Sing|strong="H7891"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*! +\q2 \w Praise|strong="H1984"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w delivered|strong="H5337"\w* \w the|strong="H3588"\w* \w soul|strong="H5315"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* needy \w from|strong="H5315"\w* \w the|strong="H3588"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w evildoers|strong="H7489"\w*. +\q1 +\v 14 \w Cursed|strong="H1288"\w* \w is|strong="H3117"\w* \w the|strong="H3205"\w* \w day|strong="H3117"\w* \w in|strong="H3117"\w* \w which|strong="H3117"\w* \w I|strong="H3117"\w* \w was|strong="H1961"\w* \w born|strong="H3205"\w*. +\q2 Don’t \w let|strong="H1961"\w* \w the|strong="H3205"\w* \w day|strong="H3117"\w* \w in|strong="H3117"\w* \w which|strong="H3117"\w* \w my|strong="H1961"\w* mother \w bore|strong="H3205"\w* \w me|strong="H1288"\w* \w be|strong="H1961"\w* \w blessed|strong="H1288"\w*. +\q1 +\v 15 Cursed \w is|strong="H1121"\w* \w the|strong="H3205"\w* \w man|strong="H1121"\w* \w who|strong="H1121"\w* \w brought|strong="H3205"\w* \w news|strong="H1319"\w* \w to|strong="H3205"\w* \w my|strong="H8055"\w* \w father|strong="H3205"\w*, saying, +\q2 “\w A|strong="H3068"\w* \w boy|strong="H2145"\w* \w is|strong="H1121"\w* \w born|strong="H3205"\w* \w to|strong="H3205"\w* \w you|strong="H3205"\w*,” making \w him|strong="H3205"\w* \w very|strong="H8055"\w* \w glad|strong="H8055"\w*. +\q1 +\v 16 \w Let|strong="H3808"\w* \w that|strong="H8085"\w* man \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w the|strong="H8085"\w* \w cities|strong="H5892"\w* \w which|strong="H1931"\w* \w Yahweh|strong="H3068"\w* \w overthrew|strong="H2015"\w*, +\q2 \w and|strong="H3068"\w* didn’t \w repent|strong="H5162"\w*. +\q1 \w Let|strong="H3808"\w* \w him|strong="H1931"\w* \w hear|strong="H8085"\w* \w a|strong="H3068"\w* \w cry|strong="H2201"\w* \w in|strong="H3068"\w* \w the|strong="H8085"\w* \w morning|strong="H1242"\w*, +\q2 \w and|strong="H3068"\w* \w shouting|strong="H8643"\w* \w at|strong="H3068"\w* noontime, +\q1 +\v 17 because \w he|strong="H3808"\w* didn’t \w kill|strong="H4191"\w* \w me|strong="H4191"\w* \w from|strong="H1961"\w* \w the|strong="H1961"\w* \w womb|strong="H7358"\w*. +\q2 \w So|strong="H1961"\w* \w my|strong="H1961"\w* \w mother|strong="H7358"\w* would \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w my|strong="H1961"\w* \w grave|strong="H6913"\w*, +\q2 \w and|strong="H5769"\w* \w her|strong="H1961"\w* \w womb|strong="H7358"\w* \w always|strong="H5769"\w* \w great|strong="H2030"\w*. +\q1 +\v 18 \w Why|strong="H4100"\w* \w did|strong="H4100"\w* \w I|strong="H3117"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3117"\w* \w the|strong="H7200"\w* \w womb|strong="H7358"\w* \w to|strong="H3318"\w* \w see|strong="H7200"\w* \w labor|strong="H5999"\w* \w and|strong="H3117"\w* \w sorrow|strong="H3015"\w*, +\q2 \w that|strong="H7200"\w* \w my|strong="H7200"\w* \w days|strong="H3117"\w* \w should|strong="H4100"\w* \w be|strong="H3117"\w* \w consumed|strong="H3615"\w* \w with|strong="H3318"\w* \w shame|strong="H1322"\w*? +\c 21 +\p +\v 1 \w The|strong="H3068"\w* \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w* \w from|strong="H1121"\w* \w Yahweh|strong="H3068"\w*, \w when|strong="H1961"\w* \w King|strong="H4428"\w* \w Zedekiah|strong="H6667"\w* \w sent|strong="H7971"\w* \w to|strong="H3068"\w* \w him|strong="H7971"\w* \w Pashhur|strong="H6583"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Malchijah|strong="H4441"\w*, \w and|strong="H1121"\w* \w Zephaniah|strong="H6846"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Maaseiah|strong="H4641"\w*, \w the|strong="H3068"\w* \w priest|strong="H3548"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Please|strong="H4994"\w* \w inquire|strong="H1875"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H3588"\w* \w us|strong="H4994"\w*; \w for|strong="H3588"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w makes|strong="H6213"\w* \w war|strong="H3898"\w* \w against|strong="H5921"\w* \w us|strong="H4994"\w*. \w Perhaps|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w deal|strong="H6213"\w* \w with|strong="H3068"\w* \w us|strong="H4994"\w* \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w wondrous|strong="H6381"\w* \w works|strong="H6381"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w may|strong="H4994"\w* \w withdraw|strong="H5927"\w* \w from|strong="H5921"\w* \w us|strong="H4994"\w*.” +\p +\v 3 \w Then|strong="H3541"\w* \w Jeremiah|strong="H3414"\w* said \w to|strong="H6667"\w* them, “Tell \w Zedekiah|strong="H6667"\w*: +\v 4 ‘\w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*, “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w turn|strong="H5437"\w* \w back|strong="H5437"\w* \w the|strong="H5921"\w* \w weapons|strong="H3627"\w* \w of|strong="H4428"\w* \w war|strong="H4421"\w* \w that|strong="H3068"\w* \w are|strong="H3478"\w* \w in|strong="H5921"\w* \w your|strong="H3068"\w* \w hands|strong="H3027"\w*, \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w you|strong="H5921"\w* \w fight|strong="H3898"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w and|strong="H3478"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w Chaldeans|strong="H3778"\w* \w who|strong="H3068"\w* \w besiege|strong="H6696"\w* \w you|strong="H5921"\w* \w outside|strong="H2351"\w* \w the|strong="H5921"\w* \w walls|strong="H2346"\w*; \w and|strong="H3478"\w* \w I|strong="H2005"\w* \w will|strong="H3068"\w* gather \w them|strong="H5921"\w* \w into|strong="H8432"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H4428"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w*. +\v 5 \w I|strong="H7110"\w* myself \w will|strong="H3027"\w* \w fight|strong="H3898"\w* \w against|strong="H3898"\w* \w you|strong="H3027"\w* \w with|strong="H3898"\w* an \w outstretched|strong="H5186"\w* \w hand|strong="H3027"\w* \w and|strong="H1419"\w* \w with|strong="H3898"\w* \w a|strong="H3068"\w* \w strong|strong="H2389"\w* \w arm|strong="H2220"\w*, even \w in|strong="H1419"\w* \w anger|strong="H2534"\w*, \w in|strong="H1419"\w* \w wrath|strong="H2534"\w*, \w and|strong="H1419"\w* \w in|strong="H1419"\w* \w great|strong="H1419"\w* \w indignation|strong="H7110"\w*. +\v 6 \w I|strong="H5892"\w* \w will|strong="H5892"\w* \w strike|strong="H5221"\w* \w the|strong="H5221"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w*, \w both|strong="H4191"\w* \w man|strong="H4191"\w* \w and|strong="H1419"\w* animal. \w They|strong="H5221"\w* \w will|strong="H5892"\w* \w die|strong="H4191"\w* \w of|strong="H3427"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w pestilence|strong="H1698"\w*. +\v 7 Afterward,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w I|strong="H5414"\w* \w will|strong="H3068"\w* \w deliver|strong="H5414"\w* \w Zedekiah|strong="H6667"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w his|strong="H5414"\w* \w servants|strong="H5650"\w*, \w and|strong="H3063"\w* \w the|strong="H5002"\w* \w people|strong="H5971"\w*, \w even|strong="H3651"\w* \w those|strong="H4480"\w* \w who|strong="H5971"\w* \w are|strong="H5971"\w* \w left|strong="H7604"\w* \w in|strong="H5921"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w from|strong="H4480"\w* \w the|strong="H5002"\w* \w pestilence|strong="H1698"\w*, \w from|strong="H4480"\w* \w the|strong="H5002"\w* \w sword|strong="H2719"\w*, \w and|strong="H3063"\w* \w from|strong="H4480"\w* \w the|strong="H5002"\w* \w famine|strong="H7458"\w*, \w into|strong="H5921"\w* \w the|strong="H5002"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w and|strong="H3063"\w* \w into|strong="H5921"\w* \w the|strong="H5002"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w their|strong="H3068"\w* \w enemies|strong="H3027"\w*, \w and|strong="H3063"\w* \w into|strong="H5921"\w* \w the|strong="H5002"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w those|strong="H4480"\w* \w who|strong="H5971"\w* \w seek|strong="H1245"\w* \w their|strong="H3068"\w* \w life|strong="H5315"\w*. \w He|strong="H3651"\w* \w will|strong="H3068"\w* \w strike|strong="H5221"\w* \w them|strong="H5414"\w* \w with|strong="H3068"\w* \w the|strong="H5002"\w* \w edge|strong="H6310"\w* \w of|strong="H4428"\w* \w the|strong="H5002"\w* \w sword|strong="H2719"\w*. \w He|strong="H3651"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w spare|strong="H2550"\w* \w them|strong="H5414"\w*, \w have|strong="H7355"\w* \w pity|strong="H2347"\w*, \w or|strong="H3808"\w* \w have|strong="H7355"\w* \w mercy|strong="H7355"\w*.”’ +\p +\v 8 “\w You|strong="H5414"\w* \w shall|strong="H3068"\w* say \w to|strong="H3068"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w set|strong="H5414"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w life|strong="H2416"\w* \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w death|strong="H4194"\w*. +\v 9 \w He|strong="H5921"\w* \w who|strong="H5315"\w* \w remains|strong="H1961"\w* \w in|strong="H3427"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w will|strong="H1961"\w* \w die|strong="H4191"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w*, \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w famine|strong="H7458"\w*, \w and|strong="H5892"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w pestilence|strong="H1698"\w*, \w but|strong="H1961"\w* \w he|strong="H5921"\w* \w who|strong="H5315"\w* \w goes|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H5892"\w* passes \w over|strong="H5921"\w* \w to|strong="H3318"\w* \w the|strong="H5921"\w* \w Chaldeans|strong="H3778"\w* \w who|strong="H5315"\w* \w besiege|strong="H6696"\w* \w you|strong="H5921"\w*, \w he|strong="H5921"\w* \w will|strong="H1961"\w* \w live|strong="H3427"\w*, \w and|strong="H5892"\w* \w he|strong="H5921"\w* \w will|strong="H1961"\w* \w escape|strong="H3318"\w* \w with|strong="H5921"\w* \w his|strong="H5921"\w* \w life|strong="H5315"\w*. +\v 10 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w set|strong="H7760"\w* \w my|strong="H5414"\w* \w face|strong="H6440"\w* \w on|strong="H7760"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w for|strong="H3588"\w* \w evil|strong="H7451"\w*, \w and|strong="H3068"\w* \w not|strong="H3808"\w* \w for|strong="H3588"\w* \w good|strong="H2896"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. “\w It|strong="H5414"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w given|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H6440"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w and|strong="H3068"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w burn|strong="H8313"\w* \w it|strong="H5414"\w* \w with|strong="H8313"\w* fire.”’ +\p +\v 11 “\w Concerning|strong="H1697"\w* \w the|strong="H8085"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*: +\v 12 \w House|strong="H1004"\w* \w of|strong="H1004"\w* \w David|strong="H1732"\w*, \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, +\q1 ‘\w Execute|strong="H1777"\w* \w justice|strong="H4941"\w* \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w morning|strong="H1242"\w*, +\q2 \w and|strong="H3068"\w* \w deliver|strong="H5337"\w* \w him|strong="H6440"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w robbed|strong="H1497"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w hand|strong="H3027"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w oppressor|strong="H6231"\w*, +\q1 \w lest|strong="H6435"\w* \w my|strong="H3068"\w* \w wrath|strong="H2534"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w like|strong="H3318"\w* fire, +\q2 \w and|strong="H3068"\w* \w burn|strong="H1197"\w* \w so|strong="H3541"\w* \w that|strong="H3068"\w* \w no|strong="H6435"\w* \w one|strong="H3068"\w* \w can|strong="H1004"\w* \w quench|strong="H3518"\w* \w it|strong="H1242"\w*, +\q2 \w because|strong="H6440"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w evil|strong="H7455"\w* \w of|strong="H1004"\w* \w your|strong="H3068"\w* \w doings|strong="H4611"\w*. +\q1 +\v 13 \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H3068"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w*, \w O|strong="H3068"\w* \w inhabitant|strong="H3427"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* \w valley|strong="H6010"\w*, +\q2 \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* \w rock|strong="H6697"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* \w plain|strong="H4334"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 ‘\w You|strong="H5921"\w* \w that|strong="H3068"\w* say, “\w Who|strong="H4310"\w* \w would|strong="H4310"\w* \w come|strong="H5181"\w* \w down|strong="H3427"\w* \w against|strong="H5921"\w* \w us|strong="H5921"\w*?” +\q2 \w or|strong="H3068"\w*, “\w Who|strong="H4310"\w* \w would|strong="H4310"\w* enter \w into|strong="H5921"\w* \w our|strong="H3068"\w* homes?” +\q1 +\v 14 \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w punish|strong="H6485"\w* \w you|strong="H3605"\w* \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w fruit|strong="H6529"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w doings|strong="H4611"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*; +\q2 ‘\w and|strong="H3068"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w kindle|strong="H3341"\w* \w a|strong="H3068"\w* \w fire|strong="H3341"\w* \w in|strong="H5921"\w* \w her|strong="H3605"\w* \w forest|strong="H3293"\w*, +\q2 \w and|strong="H3068"\w* \w it|strong="H5921"\w* \w will|strong="H3068"\w* devour \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3068"\w* \w around|strong="H5439"\w* \w her|strong="H3605"\w*.’” +\c 22 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w*, “\w Go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H1696"\w* \w the|strong="H3541"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w the|strong="H3541"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w speak|strong="H1696"\w* \w this|strong="H2088"\w* \w word|strong="H1697"\w* \w there|strong="H8033"\w*: +\v 2 ‘\w Hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w who|strong="H5971"\w* \w sits|strong="H3427"\w* \w on|strong="H5921"\w* \w David|strong="H1732"\w*’s \w throne|strong="H3678"\w*—\w you|strong="H5921"\w*, \w your|strong="H3068"\w* \w servants|strong="H5650"\w*, \w and|strong="H3063"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* enter \w in|strong="H3427"\w* \w by|strong="H5921"\w* \w these|strong="H8085"\w* \w gates|strong="H8179"\w*. +\v 3 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Execute|strong="H6213"\w* \w justice|strong="H4941"\w* \w and|strong="H3068"\w* \w righteousness|strong="H6666"\w*, \w and|strong="H3068"\w* \w deliver|strong="H5337"\w* \w him|strong="H3027"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w robbed|strong="H1497"\w* \w out|strong="H8210"\w* \w of|strong="H3068"\w* \w the|strong="H3541"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w the|strong="H3541"\w* \w oppressor|strong="H3238"\w*. \w Do|strong="H6213"\w* \w no|strong="H6213"\w* \w wrong|strong="H3238"\w*. \w Do|strong="H6213"\w* \w no|strong="H6213"\w* \w violence|strong="H2554"\w* \w to|strong="H3068"\w* \w the|strong="H3541"\w* \w foreigner|strong="H1616"\w*, \w the|strong="H3541"\w* \w fatherless|strong="H3490"\w*, \w or|strong="H3068"\w* \w the|strong="H3541"\w* widow. Don’t \w shed|strong="H8210"\w* \w innocent|strong="H5355"\w* \w blood|strong="H1818"\w* \w in|strong="H3068"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*. +\v 4 \w For|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w do|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w indeed|strong="H3588"\w*, \w then|strong="H2088"\w* \w kings|strong="H4428"\w* \w sitting|strong="H3427"\w* \w on|strong="H5921"\w* \w David|strong="H1732"\w*’s \w throne|strong="H3678"\w* \w will|strong="H4428"\w* enter \w in|strong="H3427"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w gates|strong="H8179"\w* \w of|strong="H4428"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w*, \w riding|strong="H7392"\w* \w in|strong="H3427"\w* \w chariots|strong="H7393"\w* \w and|strong="H4428"\w* \w on|strong="H5921"\w* \w horses|strong="H5483"\w*—\w they|strong="H3588"\w*, \w their|strong="H5921"\w* \w servants|strong="H5650"\w*, \w and|strong="H4428"\w* \w their|strong="H5921"\w* \w people|strong="H5971"\w*. +\v 5 \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w hear|strong="H8085"\w* \w these|strong="H2088"\w* \w words|strong="H1697"\w*, \w I|strong="H3588"\w* \w swear|strong="H7650"\w* \w by|strong="H7650"\w* myself,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w that|strong="H3588"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w* \w will|strong="H3068"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w desolation|strong="H2723"\w*.”’” +\p +\v 6 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*: +\q1 “\w You|strong="H3588"\w* \w are|strong="H3068"\w* \w Gilead|strong="H1568"\w* \w to|strong="H3068"\w* \w me|strong="H5921"\w*, +\q2 \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H4428"\w* \w Lebanon|strong="H3844"\w*. +\q1 \w Yet|strong="H3588"\w* \w surely|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w make|strong="H7896"\w* \w you|strong="H3588"\w* \w a|strong="H3068"\w* \w wilderness|strong="H4057"\w*, +\q2 \w cities|strong="H5892"\w* \w which|strong="H3068"\w* \w are|strong="H3068"\w* \w not|strong="H3808"\w* \w inhabited|strong="H3427"\w*. +\q1 +\v 7 \w I|strong="H5921"\w* \w will|strong="H5307"\w* \w prepare|strong="H6942"\w* \w destroyers|strong="H7843"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w*, +\q2 everyone \w with|strong="H5921"\w* \w his|strong="H5921"\w* \w weapons|strong="H3627"\w*, +\q1 \w and|strong="H5307"\w* \w they|strong="H5921"\w* \w will|strong="H5307"\w* \w cut|strong="H3772"\w* \w down|strong="H5307"\w* \w your|strong="H5921"\w* \w choice|strong="H4005"\w* cedars, +\q2 \w and|strong="H5307"\w* \w cast|strong="H5307"\w* \w them|strong="H5921"\w* \w into|strong="H5307"\w* \w the|strong="H5921"\w* fire. +\p +\v 8 “\w Many|strong="H7227"\w* \w nations|strong="H1471"\w* \w will|strong="H3068"\w* \w pass|strong="H5674"\w* \w by|strong="H5921"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w*, \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* \w each|strong="H5892"\w* ask \w his|strong="H3068"\w* \w neighbor|strong="H7453"\w*, ‘\w Why|strong="H4100"\w* \w has|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w done|strong="H6213"\w* \w this|strong="H2063"\w* \w to|strong="H3068"\w* \w this|strong="H2063"\w* \w great|strong="H1419"\w* \w city|strong="H5892"\w*?’ +\v 9 \w Then|strong="H3068"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* answer, ‘\w Because|strong="H5921"\w* \w they|strong="H3068"\w* \w abandoned|strong="H5800"\w* \w the|strong="H5921"\w* \w covenant|strong="H1285"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*, \w worshiped|strong="H7812"\w* other gods, \w and|strong="H3068"\w* \w served|strong="H5647"\w* \w them|strong="H5921"\w*.’” +\q1 +\v 10 Don’t \w weep|strong="H1058"\w* \w for|strong="H3588"\w* \w the|strong="H7200"\w* \w dead|strong="H4191"\w*. +\q2 Don’t \w bemoan|strong="H5110"\w* \w him|strong="H7725"\w*; +\q1 \w but|strong="H3588"\w* \w weep|strong="H1058"\w* \w bitterly|strong="H1058"\w* \w for|strong="H3588"\w* \w him|strong="H7725"\w* \w who|strong="H3588"\w* \w goes|strong="H1980"\w* \w away|strong="H7725"\w*, +\q2 \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H3808"\w* \w return|strong="H7725"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w*, +\q2 \w and|strong="H1980"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w* \w his|strong="H7725"\w* \w native|strong="H4138"\w* country. +\m +\v 11 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* touching \w Shallum|strong="H7967"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w who|strong="H3068"\w* \w reigned|strong="H4427"\w* \w instead|strong="H8478"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w* \w his|strong="H3068"\w* \w father|strong="H1121"\w*, \w and|strong="H1121"\w* \w who|strong="H3068"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*: “\w He|strong="H3588"\w* won’t \w return|strong="H7725"\w* \w there|strong="H8033"\w* \w any|strong="H4480"\w* \w more|strong="H4480"\w*. +\v 12 \w But|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H3808"\w* \w die|strong="H4191"\w* \w in|strong="H4191"\w* \w the|strong="H7200"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w they|strong="H3588"\w* \w have|strong="H7200"\w* \w led|strong="H1540"\w* \w him|strong="H7200"\w* \w captive|strong="H1540"\w*. \w He|strong="H3588"\w* \w will|strong="H3808"\w* \w see|strong="H7200"\w* \w this|strong="H2063"\w* \w land|strong="H4725"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w*.” +\q1 +\v 13 “\w Woe|strong="H1945"\w* \w to|strong="H5414"\w* \w him|strong="H5414"\w* \w who|strong="H3808"\w* \w builds|strong="H1129"\w* \w his|strong="H5414"\w* \w house|strong="H1004"\w* \w by|strong="H5414"\w* \w unrighteousness|strong="H6664"\w*, +\q2 \w and|strong="H4941"\w* \w his|strong="H5414"\w* \w rooms|strong="H5944"\w* \w by|strong="H5414"\w* \w injustice|strong="H3808"\w*; +\q1 \w who|strong="H3808"\w* \w uses|strong="H5647"\w* \w his|strong="H5414"\w* \w neighbor|strong="H7453"\w*’s \w service|strong="H5647"\w* \w without|strong="H3808"\w* \w wages|strong="H6467"\w*, +\q2 \w and|strong="H4941"\w* doesn’t \w give|strong="H5414"\w* \w him|strong="H5414"\w* \w his|strong="H5414"\w* hire; +\q1 +\v 14 \w who|strong="H1129"\w* says, ‘\w I|strong="H1004"\w* \w will|strong="H1004"\w* \w build|strong="H1129"\w* myself \w a|strong="H3068"\w* \w wide|strong="H4060"\w* \w house|strong="H1004"\w* \w and|strong="H1004"\w* \w spacious|strong="H7304"\w* \w rooms|strong="H5944"\w*,’ +\q2 \w and|strong="H1004"\w* cuts \w out|strong="H7167"\w* \w windows|strong="H2474"\w* \w for|strong="H1004"\w* himself, +\q1 \w with|strong="H1004"\w* \w a|strong="H3068"\w* cedar ceiling, +\q2 \w and|strong="H1004"\w* \w painted|strong="H4886"\w* \w with|strong="H1004"\w* \w red|strong="H8350"\w*. +\b +\q1 +\v 15 “\w Should|strong="H3588"\w* \w you|strong="H3588"\w* \w reign|strong="H4427"\w* \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w strive|strong="H4941"\w* \w to|strong="H6213"\w* excel \w in|strong="H6213"\w* cedar? +\q2 Didn’t \w your|strong="H6213"\w* father eat \w and|strong="H4941"\w* \w drink|strong="H8354"\w*, +\q2 \w and|strong="H4941"\w* \w do|strong="H6213"\w* \w justice|strong="H4941"\w* \w and|strong="H4941"\w* \w righteousness|strong="H6666"\w*? +\q2 \w Then|strong="H6213"\w* \w it|strong="H3588"\w* \w was|strong="H3808"\w* \w well|strong="H2896"\w* \w with|strong="H6213"\w* \w him|strong="H6213"\w*. +\q1 +\v 16 \w He|strong="H1931"\w* \w judged|strong="H1777"\w* \w the|strong="H5002"\w* \w cause|strong="H1779"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* \w poor|strong="H6041"\w* \w and|strong="H3068"\w* \w needy|strong="H6041"\w*; +\q2 \w so|strong="H3808"\w* \w then|strong="H3068"\w* \w it|strong="H1931"\w* \w was|strong="H3068"\w* \w well|strong="H2896"\w*. +\q1 Wasn’t \w this|strong="H1931"\w* \w to|strong="H3068"\w* \w know|strong="H1847"\w* \w me|strong="H3808"\w*?” +\q2 \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 17 \w But|strong="H3588"\w* \w your|strong="H5921"\w* \w eyes|strong="H5869"\w* \w and|strong="H5869"\w* \w your|strong="H5921"\w* \w heart|strong="H3820"\w* \w are|strong="H5869"\w* \w only|strong="H3588"\w* \w for|strong="H3588"\w* \w your|strong="H5921"\w* \w covetousness|strong="H1215"\w*, +\q2 \w for|strong="H3588"\w* \w shedding|strong="H8210"\w* \w innocent|strong="H5355"\w* \w blood|strong="H1818"\w*, +\q2 \w for|strong="H3588"\w* \w oppression|strong="H6233"\w*, \w and|strong="H5869"\w* \w for|strong="H3588"\w* \w doing|strong="H6213"\w* \w violence|strong="H4835"\w*.” +\m +\v 18 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w concerning|strong="H3068"\w* \w Jehoiakim|strong="H3079"\w* \w the|strong="H3541"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*: +\q1 “\w They|strong="H3651"\w* won’t \w lament|strong="H5594"\w* \w for|strong="H3068"\w* \w him|strong="H4428"\w*, +\q2 saying, ‘\w Ah|strong="H1945"\w* \w my|strong="H3068"\w* brother!’ \w or|strong="H3808"\w*, ‘\w Ah|strong="H1945"\w* sister!’ +\q1 \w They|strong="H3651"\w* won’t \w lament|strong="H5594"\w* \w for|strong="H3068"\w* \w him|strong="H4428"\w*, +\q2 saying ‘\w Ah|strong="H1945"\w* \w lord|strong="H3068"\w*!’ \w or|strong="H3808"\w*, ‘\w Ah|strong="H1945"\w* \w his|strong="H3068"\w* \w glory|strong="H1935"\w*!’ +\q1 +\v 19 \w He|strong="H3389"\w* \w will|strong="H3389"\w* \w be|strong="H3389"\w* \w buried|strong="H6912"\w* \w with|strong="H3389"\w* \w the|strong="H7993"\w* \w burial|strong="H6900"\w* \w of|strong="H8179"\w* \w a|strong="H3068"\w* \w donkey|strong="H2543"\w*, +\q2 \w drawn|strong="H5498"\w* \w and|strong="H3389"\w* \w cast|strong="H7993"\w* \w out|strong="H7993"\w* \w beyond|strong="H1973"\w* \w the|strong="H7993"\w* \w gates|strong="H8179"\w* \w of|strong="H8179"\w* \w Jerusalem|strong="H3389"\w*.” +\b +\q1 +\v 20 “\w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w Lebanon|strong="H3844"\w*, \w and|strong="H6963"\w* \w cry|strong="H6817"\w* \w out|strong="H5414"\w*. +\q2 \w Lift|strong="H5414"\w* \w up|strong="H5927"\w* \w your|strong="H3605"\w* \w voice|strong="H6963"\w* \w in|strong="H7665"\w* \w Bashan|strong="H1316"\w*, +\q1 \w and|strong="H6963"\w* \w cry|strong="H6817"\w* \w from|strong="H5927"\w* \w Abarim|strong="H5682"\w*; +\q2 \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* lovers \w have|strong="H5414"\w* \w been|strong="H5927"\w* \w destroyed|strong="H7665"\w*. +\q1 +\v 21 \w I|strong="H3588"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w* \w in|strong="H8085"\w* \w your|strong="H8085"\w* \w prosperity|strong="H7962"\w*, +\q2 \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w said|strong="H1696"\w*, ‘\w I|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w*.’ +\q1 \w This|strong="H2088"\w* \w has|strong="H3588"\w* \w been|strong="H3808"\w* \w your|strong="H8085"\w* \w way|strong="H1870"\w* \w from|strong="H8085"\w* \w your|strong="H8085"\w* \w youth|strong="H5271"\w*, +\q2 \w that|strong="H3588"\w* \w you|strong="H3588"\w* didn’t \w obey|strong="H8085"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*. +\q1 +\v 22 \w The|strong="H3605"\w* \w wind|strong="H7307"\w* \w will|strong="H7307"\w* \w feed|strong="H7462"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w shepherds|strong="H7462"\w*, +\q2 \w and|strong="H3212"\w* \w your|strong="H3605"\w* lovers \w will|strong="H7307"\w* \w go|strong="H3212"\w* \w into|strong="H3212"\w* \w captivity|strong="H7628"\w*. +\q1 \w Surely|strong="H3588"\w* \w then|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H7307"\w* \w be|strong="H7451"\w* \w ashamed|strong="H3637"\w* +\q2 \w and|strong="H3212"\w* \w confounded|strong="H3637"\w* \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w wickedness|strong="H7451"\w*. +\q1 +\v 23 \w Inhabitant|strong="H3427"\w* \w of|strong="H3427"\w* \w Lebanon|strong="H3844"\w*, +\q2 \w who|strong="H3427"\w* \w makes|strong="H3427"\w* \w your|strong="H4100"\w* \w nest|strong="H7077"\w* \w in|strong="H3427"\w* \w the|strong="H3205"\w* cedars, +\q1 \w how|strong="H4100"\w* greatly \w to|strong="H3205"\w* \w be|strong="H2256"\w* pitied \w you|strong="H4100"\w* \w will|strong="H4100"\w* \w be|strong="H2256"\w* \w when|strong="H3427"\w* \w pangs|strong="H2256"\w* \w come|strong="H3205"\w* \w on|strong="H3427"\w* \w you|strong="H4100"\w*, +\q2 \w the|strong="H3205"\w* \w pain|strong="H2427"\w* \w as|strong="H3427"\w* \w of|strong="H3427"\w* \w a|strong="H3068"\w* \w woman|strong="H3205"\w* \w in|strong="H3427"\w* \w travail|strong="H3205"\w*! +\p +\v 24 “\w As|strong="H1961"\w* \w I|strong="H3588"\w* \w live|strong="H2416"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w though|strong="H3588"\w* \w Coniah|strong="H3659"\w* \w the|strong="H5002"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiakim|strong="H3079"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w were|strong="H1961"\w* \w the|strong="H5002"\w* \w signet|strong="H2368"\w* \w on|strong="H5921"\w* \w my|strong="H3068"\w* \w right|strong="H3225"\w* \w hand|strong="H3027"\w*, \w I|strong="H3588"\w* \w would|strong="H3068"\w* \w still|strong="H3588"\w* \w pluck|strong="H5423"\w* \w you|strong="H3588"\w* \w from|strong="H5921"\w* \w there|strong="H8033"\w*. +\v 25 \w I|strong="H5414"\w* \w would|strong="H5315"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H6440"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w those|strong="H5315"\w* \w who|strong="H5315"\w* \w seek|strong="H1245"\w* \w your|strong="H5414"\w* \w life|strong="H5315"\w*, \w and|strong="H4428"\w* \w into|strong="H3027"\w* \w the|strong="H6440"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w them|strong="H5414"\w* \w of|strong="H4428"\w* \w whom|strong="H6440"\w* \w you|strong="H5414"\w* \w are|strong="H3027"\w* \w afraid|strong="H3016"\w*, even \w into|strong="H3027"\w* \w the|strong="H6440"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w and|strong="H4428"\w* \w into|strong="H3027"\w* \w the|strong="H6440"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w Chaldeans|strong="H3778"\w*. +\v 26 \w I|strong="H5921"\w* \w will|strong="H3808"\w* \w cast|strong="H2904"\w* \w you|strong="H5921"\w* \w out|strong="H5921"\w* \w with|strong="H5921"\w* \w your|strong="H5921"\w* mother \w who|strong="H3205"\w* \w bore|strong="H3205"\w* \w you|strong="H5921"\w* \w into|strong="H5921"\w* \w another|strong="H3808"\w* country, \w where|strong="H8033"\w* \w you|strong="H5921"\w* \w were|strong="H3205"\w* \w not|strong="H3808"\w* \w born|strong="H3205"\w*; \w and|strong="H8033"\w* \w there|strong="H8033"\w* \w you|strong="H5921"\w* \w will|strong="H3808"\w* \w die|strong="H4191"\w*. +\v 27 \w But|strong="H3808"\w* \w to|strong="H7725"\w* \w the|strong="H5921"\w* land \w to|strong="H7725"\w* \w which|strong="H1992"\w* \w their|strong="H5375"\w* \w soul|strong="H5315"\w* longs \w to|strong="H7725"\w* \w return|strong="H7725"\w*, \w there|strong="H8033"\w* \w they|strong="H1992"\w* \w will|strong="H5315"\w* \w not|strong="H3808"\w* \w return|strong="H7725"\w*.” +\q1 +\v 28 \w Is|strong="H2088"\w* \w this|strong="H2088"\w* \w man|strong="H2088"\w* \w Coniah|strong="H3659"\w* \w a|strong="H3068"\w* despised \w broken|strong="H5310"\w* \w vessel|strong="H3627"\w*? +\q2 \w Is|strong="H2088"\w* \w he|strong="H1931"\w* \w a|strong="H3068"\w* \w vessel|strong="H3627"\w* \w in|strong="H5921"\w* \w which|strong="H1931"\w* \w no|strong="H3808"\w* \w one|strong="H2088"\w* \w delights|strong="H2656"\w*? +\q1 \w Why|strong="H4069"\w* \w are|strong="H3045"\w* \w they|strong="H3808"\w* \w cast|strong="H7993"\w* \w out|strong="H7993"\w*, \w he|strong="H1931"\w* \w and|strong="H3045"\w* \w his|strong="H5921"\w* \w offspring|strong="H2233"\w*, +\q2 \w and|strong="H3045"\w* \w cast|strong="H7993"\w* \w into|strong="H5921"\w* \w a|strong="H3068"\w* land \w which|strong="H1931"\w* \w they|strong="H3808"\w* don’t \w know|strong="H3045"\w*? +\q1 +\v 29 \w O|strong="H3068"\w* earth, earth, earth, +\q2 \w hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*! +\q1 +\v 30 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, +\q2 “\w Record|strong="H3789"\w* \w this|strong="H2088"\w* \w man|strong="H1397"\w* \w as|strong="H3117"\w* \w childless|strong="H6185"\w*, +\q2 \w a|strong="H3068"\w* \w man|strong="H1397"\w* \w who|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w prosper|strong="H6743"\w* \w in|strong="H3427"\w* \w his|strong="H3068"\w* \w days|strong="H3117"\w*; +\q1 \w for|strong="H3588"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w will|strong="H3068"\w* \w a|strong="H3068"\w* \w man|strong="H1397"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w offspring|strong="H2233"\w* \w prosper|strong="H6743"\w*, +\q2 \w sitting|strong="H3427"\w* \w on|strong="H5921"\w* \w David|strong="H1732"\w*’s \w throne|strong="H3678"\w* +\q2 \w and|strong="H3063"\w* \w ruling|strong="H4910"\w* \w in|strong="H3427"\w* \w Judah|strong="H3063"\w*.” +\c 23 +\p +\v 1 “\w Woe|strong="H1945"\w* \w to|strong="H3068"\w* \w the|strong="H5002"\w* \w shepherds|strong="H7462"\w* \w who|strong="H3068"\w* destroy \w and|strong="H3068"\w* \w scatter|strong="H6327"\w* \w the|strong="H5002"\w* \w sheep|strong="H6629"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w pasture|strong="H4830"\w*!” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 2 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5002"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H5002"\w* \w against|strong="H5921"\w* \w the|strong="H5002"\w* \w shepherds|strong="H7462"\w* \w who|strong="H5971"\w* \w feed|strong="H7462"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w*: “\w You|strong="H5921"\w* \w have|strong="H3068"\w* \w scattered|strong="H6327"\w* \w my|strong="H3068"\w* \w flock|strong="H6629"\w*, \w driven|strong="H5080"\w* \w them|strong="H5921"\w* \w away|strong="H5080"\w*, \w and|strong="H3478"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w visited|strong="H6485"\w* \w them|strong="H5921"\w*. \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w visit|strong="H6485"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w* \w the|strong="H5002"\w* \w evil|strong="H7455"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w doings|strong="H4611"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 3 “\w I|strong="H5921"\w* \w will|strong="H6629"\w* \w gather|strong="H6908"\w* \w the|strong="H3605"\w* \w remnant|strong="H7611"\w* \w of|strong="H7611"\w* \w my|strong="H3605"\w* \w flock|strong="H6629"\w* \w out|strong="H5080"\w* \w of|strong="H7611"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* countries \w where|strong="H8033"\w* \w I|strong="H5921"\w* \w have|strong="H3605"\w* \w driven|strong="H5080"\w* \w them|strong="H5921"\w*, \w and|strong="H7725"\w* \w will|strong="H6629"\w* \w bring|strong="H7725"\w* \w them|strong="H5921"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w their|strong="H3605"\w* \w folds|strong="H5116"\w*; \w and|strong="H7725"\w* \w they|strong="H8033"\w* \w will|strong="H6629"\w* \w be|strong="H7725"\w* \w fruitful|strong="H6509"\w* \w and|strong="H7725"\w* \w multiply|strong="H7235"\w*. +\v 4 \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w set|strong="H6965"\w* \w up|strong="H6965"\w* \w shepherds|strong="H7462"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w* \w who|strong="H3068"\w* \w will|strong="H3068"\w* \w feed|strong="H7462"\w* \w them|strong="H5921"\w*. \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w no|strong="H3808"\w* \w longer|strong="H5750"\w* \w be|strong="H3808"\w* \w afraid|strong="H3372"\w* \w or|strong="H3808"\w* \w dismayed|strong="H2865"\w*, \w neither|strong="H3808"\w* \w will|strong="H3068"\w* \w any|strong="H5750"\w* \w be|strong="H3808"\w* \w lacking|strong="H6485"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 5 “\w Behold|strong="H2009"\w*, \w the|strong="H5002"\w* \w days|strong="H3117"\w* \w come|strong="H6965"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w that|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w raise|strong="H6965"\w* \w to|strong="H3068"\w* \w David|strong="H1732"\w* \w a|strong="H3068"\w* \w righteous|strong="H6662"\w* \w Branch|strong="H6780"\w*; +\q1 \w and|strong="H6965"\w* \w he|strong="H3117"\w* \w will|strong="H3068"\w* \w reign|strong="H4427"\w* \w as|strong="H3117"\w* \w king|strong="H4428"\w* \w and|strong="H6965"\w* \w deal|strong="H6213"\w* \w wisely|strong="H7919"\w*, +\q2 \w and|strong="H6965"\w* \w will|strong="H3068"\w* \w execute|strong="H6213"\w* \w justice|strong="H4941"\w* \w and|strong="H6965"\w* \w righteousness|strong="H6666"\w* \w in|strong="H3068"\w* \w the|strong="H5002"\w* land. +\q1 +\v 6 \w In|strong="H3478"\w* \w his|strong="H3068"\w* \w days|strong="H3117"\w* \w Judah|strong="H3063"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w saved|strong="H3467"\w*, +\q2 \w and|strong="H3063"\w* \w Israel|strong="H3478"\w* \w will|strong="H3068"\w* \w dwell|strong="H7931"\w* safely. +\q1 \w This|strong="H2088"\w* \w is|strong="H3068"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w* \w by|strong="H3117"\w* \w which|strong="H3068"\w* \w he|strong="H3117"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w called|strong="H7121"\w*: +\q2 \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w righteousness|strong="H6664"\w*. +\m +\v 7 “\w Therefore|strong="H3651"\w*, \w behold|strong="H2009"\w*, \w the|strong="H5002"\w* \w days|strong="H3117"\w* \w come|strong="H5927"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w that|strong="H3117"\w* \w they|strong="H3117"\w* \w will|strong="H3068"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w say|strong="H3478"\w*, ‘\w As|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*, \w who|strong="H3068"\w* \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w the|strong="H5002"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w out|strong="H3808"\w* \w of|strong="H1121"\w* \w the|strong="H5002"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*;’ +\v 8 \w but|strong="H3588"\w*, ‘\w As|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*, \w who|strong="H3605"\w* \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H3478"\w* \w who|strong="H3605"\w* \w led|strong="H3068"\w* \w the|strong="H3605"\w* \w offspring|strong="H2233"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w out|strong="H5080"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w north|strong="H6828"\w* country, \w and|strong="H3478"\w* \w from|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* countries \w where|strong="H8033"\w* \w I|strong="H3588"\w* \w had|strong="H3068"\w* \w driven|strong="H5080"\w* \w them|strong="H5921"\w*.’ \w Then|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w their|strong="H3605"\w* own land.” +\p +\v 9 \w Concerning|strong="H1697"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w*: +\q1 \w My|strong="H3605"\w* \w heart|strong="H3820"\w* \w within|strong="H7130"\w* \w me|strong="H6440"\w* \w is|strong="H3068"\w* \w broken|strong="H7665"\w*. +\q2 \w All|strong="H3605"\w* \w my|strong="H3605"\w* \w bones|strong="H6106"\w* \w shake|strong="H7363"\w*. +\q1 \w I|strong="H1697"\w* \w am|strong="H1961"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w drunken|strong="H7910"\w* \w man|strong="H1397"\w*, +\q2 \w and|strong="H3068"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w man|strong="H1397"\w* \w whom|strong="H6440"\w* \w wine|strong="H3196"\w* \w has|strong="H3068"\w* \w overcome|strong="H5674"\w*, +\q1 \w because|strong="H6440"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* \w because|strong="H6440"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w holy|strong="H6944"\w* \w words|strong="H1697"\w*. +\q1 +\v 10 “\w For|strong="H3588"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w is|strong="H3651"\w* \w full|strong="H4390"\w* \w of|strong="H6440"\w* \w adulterers|strong="H5003"\w*; +\q2 \w for|strong="H3588"\w* \w because|strong="H3588"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* curse \w the|strong="H6440"\w* \w land|strong="H6440"\w* mourns. +\q1 \w The|strong="H6440"\w* \w pastures|strong="H4999"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w wilderness|strong="H4057"\w* \w have|strong="H1961"\w* \w dried|strong="H3001"\w* \w up|strong="H3001"\w*. +\q2 \w Their|strong="H6440"\w* \w course|strong="H4794"\w* \w is|strong="H3651"\w* \w evil|strong="H7451"\w*, +\q2 \w and|strong="H6440"\w* \w their|strong="H6440"\w* \w might|strong="H1369"\w* \w is|strong="H3651"\w* \w not|strong="H3808"\w* \w right|strong="H3651"\w*; +\q1 +\v 11 \w for|strong="H3588"\w* \w both|strong="H1571"\w* \w prophet|strong="H5030"\w* \w and|strong="H3068"\w* \w priest|strong="H3548"\w* \w are|strong="H3068"\w* \w profane|strong="H2610"\w*. +\q2 \w Yes|strong="H3588"\w*, \w in|strong="H3068"\w* \w my|strong="H3068"\w* \w house|strong="H1004"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w found|strong="H4672"\w* \w their|strong="H3068"\w* \w wickedness|strong="H7451"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 12 \w Therefore|strong="H3651"\w* \w their|strong="H3068"\w* \w way|strong="H1870"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w to|strong="H3068"\w* \w them|strong="H1992"\w* \w as|strong="H1961"\w* \w slippery|strong="H2519"\w* \w places|strong="H1992"\w* \w in|strong="H8141"\w* \w the|strong="H5002"\w* darkness. +\q2 \w They|strong="H1992"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* driven \w on|strong="H5921"\w*, +\q2 \w and|strong="H3068"\w* \w fall|strong="H5307"\w* therein; +\q1 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w bring|strong="H7451"\w* \w evil|strong="H7451"\w* \w on|strong="H5921"\w* \w them|strong="H1992"\w*, +\q2 \w even|strong="H3588"\w* \w the|strong="H5002"\w* \w year|strong="H8141"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w visitation|strong="H6486"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\b +\q1 +\v 13 “\w I|strong="H7200"\w* \w have|strong="H5971"\w* \w seen|strong="H7200"\w* \w folly|strong="H8604"\w* \w in|strong="H3478"\w* \w the|strong="H7200"\w* \w prophets|strong="H5030"\w* \w of|strong="H5971"\w* \w Samaria|strong="H8111"\w*. +\q2 \w They|strong="H5971"\w* \w prophesied|strong="H5012"\w* \w by|strong="H3478"\w* \w Baal|strong="H1168"\w*, +\q2 \w and|strong="H3478"\w* caused \w my|strong="H7200"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w err|strong="H8582"\w*. +\q1 +\v 14 \w In|strong="H3427"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w* \w of|strong="H3027"\w* \w Jerusalem|strong="H3389"\w* \w I|strong="H7200"\w* \w have|strong="H1961"\w* \w also|strong="H3027"\w* \w seen|strong="H7200"\w* \w a|strong="H3068"\w* \w horrible|strong="H8186"\w* \w thing|strong="H8186"\w*: +\q2 \w they|strong="H3605"\w* \w commit|strong="H5003"\w* \w adultery|strong="H5003"\w* \w and|strong="H1980"\w* \w walk|strong="H1980"\w* \w in|strong="H3427"\w* \w lies|strong="H8267"\w*. +\q1 \w They|strong="H3605"\w* \w strengthen|strong="H2388"\w* \w the|strong="H3605"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w evildoers|strong="H7489"\w*, +\q2 \w so|strong="H1980"\w* \w that|strong="H7200"\w* \w no|strong="H1115"\w* \w one|strong="H3605"\w* \w returns|strong="H7725"\w* \w from|strong="H7725"\w* \w his|strong="H3605"\w* \w wickedness|strong="H7451"\w*. +\q1 \w They|strong="H3605"\w* \w have|strong="H1961"\w* \w all|strong="H3605"\w* \w become|strong="H1961"\w* \w to|strong="H1980"\w* \w me|strong="H7725"\w* \w as|strong="H1961"\w* \w Sodom|strong="H5467"\w*, +\q2 \w and|strong="H1980"\w* \w its|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w as|strong="H1961"\w* \w Gomorrah|strong="H6017"\w*.” +\p +\v 15 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w* \w concerning|strong="H5921"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w*: +\q1 “\w Behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* feed \w them|strong="H5921"\w* \w with|strong="H3068"\w* \w wormwood|strong="H3939"\w*, +\q2 \w and|strong="H3068"\w* \w make|strong="H8248"\w* \w them|strong="H5921"\w* \w drink|strong="H8248"\w* \w poisoned|strong="H7219"\w* \w water|strong="H4325"\w*; +\q2 \w for|strong="H3588"\w* \w from|strong="H3318"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w* ungodliness \w has|strong="H3068"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land.” +\p +\v 16 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*, +\q1 “Don’t \w listen|strong="H8085"\w* \w to|strong="H1696"\w* \w the|strong="H5921"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w prophets|strong="H5030"\w* \w who|strong="H3068"\w* \w prophesy|strong="H5012"\w* \w to|strong="H1696"\w* \w you|strong="H5921"\w*. +\q2 \w They|strong="H1992"\w* teach \w you|strong="H5921"\w* vanity. +\q2 \w They|strong="H1992"\w* \w speak|strong="H1696"\w* \w a|strong="H3068"\w* \w vision|strong="H2377"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* own \w heart|strong="H3820"\w*, +\q2 \w and|strong="H3068"\w* \w not|strong="H3808"\w* \w out|strong="H5921"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w mouth|strong="H6310"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 17 \w They|strong="H3068"\w* \w say|strong="H1696"\w* \w continually|strong="H3605"\w* \w to|strong="H1696"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w despise|strong="H5006"\w* \w me|strong="H5921"\w*, +\q2 ‘\w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w said|strong="H1696"\w*, “\w You|strong="H3605"\w* \w will|strong="H3068"\w* \w have|strong="H1961"\w* \w peace|strong="H7965"\w*;”’ +\q1 \w and|strong="H1980"\w* \w to|strong="H1696"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w walks|strong="H1980"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w stubbornness|strong="H8307"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w own|strong="H1961"\w* \w heart|strong="H3820"\w* \w they|strong="H3068"\w* \w say|strong="H1696"\w*, +\q2 ‘\w No|strong="H3808"\w* \w evil|strong="H7451"\w* \w will|strong="H3068"\w* \w come|strong="H1980"\w* \w on|strong="H5921"\w* \w you|strong="H3605"\w*.’ +\q1 +\v 18 \w For|strong="H3588"\w* \w who|strong="H4310"\w* \w has|strong="H3068"\w* \w stood|strong="H5975"\w* \w in|strong="H3068"\w* \w the|strong="H8085"\w* \w council|strong="H5475"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w should|strong="H3068"\w* \w perceive|strong="H7200"\w* \w and|strong="H3068"\w* \w hear|strong="H8085"\w* \w his|strong="H3068"\w* \w word|strong="H1697"\w*? +\q2 \w Who|strong="H4310"\w* \w has|strong="H3068"\w* \w listened|strong="H8085"\w* \w to|strong="H3068"\w* \w my|strong="H8085"\w* \w word|strong="H1697"\w*, \w and|strong="H3068"\w* \w heard|strong="H8085"\w* \w it|strong="H3588"\w*? +\q1 +\v 19 \w Behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w*’s \w storm|strong="H5591"\w*, \w his|strong="H3068"\w* \w wrath|strong="H2534"\w*, \w has|strong="H3068"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w*. +\q2 \w Yes|strong="H2009"\w*, \w a|strong="H3068"\w* \w whirling|strong="H2342"\w* \w storm|strong="H5591"\w*! +\q2 \w It|strong="H5921"\w* \w will|strong="H3068"\w* \w burst|strong="H2342"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w wicked|strong="H7563"\w*. +\q1 +\v 20 \w Yahweh|strong="H3068"\w*’s anger \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w return|strong="H7725"\w* \w until|strong="H5704"\w* \w he|strong="H3117"\w* \w has|strong="H3068"\w* \w executed|strong="H6213"\w* +\q2 \w and|strong="H6965"\w* \w performed|strong="H6213"\w* \w the|strong="H6213"\w* \w intents|strong="H4209"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w heart|strong="H3820"\w*. +\q2 \w In|strong="H3068"\w* \w the|strong="H6213"\w* latter \w days|strong="H3117"\w*, \w you|strong="H3117"\w* \w will|strong="H3068"\w* understand \w it|strong="H6213"\w* perfectly. +\q1 +\v 21 \w I|strong="H3808"\w* didn’t \w send|strong="H7971"\w* \w these|strong="H1992"\w* \w prophets|strong="H5030"\w*, \w yet|strong="H3808"\w* \w they|strong="H1992"\w* \w ran|strong="H7323"\w*. +\q2 \w I|strong="H3808"\w* didn’t \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H1992"\w*, \w yet|strong="H3808"\w* \w they|strong="H1992"\w* \w prophesied|strong="H5012"\w*. +\q1 +\v 22 \w But|strong="H8085"\w* if \w they|strong="H5971"\w* \w had|strong="H5971"\w* \w stood|strong="H5975"\w* \w in|strong="H8085"\w* \w my|strong="H8085"\w* \w council|strong="H5475"\w*, +\q2 \w then|strong="H7725"\w* \w they|strong="H5971"\w* \w would|strong="H5971"\w* \w have|strong="H5971"\w* \w caused|strong="H1697"\w* \w my|strong="H8085"\w* \w people|strong="H5971"\w* \w to|strong="H7725"\w* \w hear|strong="H8085"\w* \w my|strong="H8085"\w* \w words|strong="H1697"\w*, +\q1 \w and|strong="H7725"\w* \w would|strong="H5971"\w* \w have|strong="H5971"\w* \w turned|strong="H7725"\w* \w them|strong="H7725"\w* \w from|strong="H7725"\w* \w their|strong="H8085"\w* \w evil|strong="H7451"\w* \w way|strong="H1870"\w*, +\q2 \w and|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H8085"\w* \w evil|strong="H7451"\w* \w of|strong="H1697"\w* \w their|strong="H8085"\w* \w doings|strong="H4611"\w*. +\b +\q1 +\v 23 “\w Am|strong="H3068"\w* \w I|strong="H3808"\w* \w a|strong="H3068"\w* \w God|strong="H3068"\w* \w at|strong="H3068"\w* \w hand|strong="H7138"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w and|strong="H3068"\w* \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w God|strong="H3068"\w* \w afar|strong="H7350"\w* \w off|strong="H7350"\w*? +\q1 +\v 24 \w Can|strong="H7200"\w* \w anyone|strong="H7200"\w* \w hide|strong="H5641"\w* \w himself|strong="H3068"\w* \w in|strong="H3068"\w* \w secret|strong="H5641"\w* \w places|strong="H4565"\w* +\q2 \w so|strong="H3808"\w* \w that|strong="H7200"\w* \w I|strong="H7200"\w* \w can|strong="H7200"\w*’t \w see|strong="H7200"\w* \w him|strong="H7200"\w*?” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q2 “Don’t \w I|strong="H7200"\w* \w fill|strong="H4390"\w* \w heaven|strong="H8064"\w* \w and|strong="H3068"\w* \w earth|strong="H8064"\w*?” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 25 “\w I|strong="H8085"\w* \w have|strong="H5030"\w* \w heard|strong="H8085"\w* \w what|strong="H8085"\w* \w the|strong="H8085"\w* \w prophets|strong="H5030"\w* \w have|strong="H5030"\w* \w said|strong="H8085"\w*, \w who|strong="H5030"\w* \w prophesy|strong="H5012"\w* \w lies|strong="H8267"\w* \w in|strong="H8085"\w* \w my|strong="H8085"\w* \w name|strong="H8034"\w*, saying, ‘\w I|strong="H8085"\w* \w had|strong="H2492"\w* \w a|strong="H3068"\w* \w dream|strong="H2492"\w*! \w I|strong="H8085"\w* \w had|strong="H2492"\w* \w a|strong="H3068"\w* \w dream|strong="H2492"\w*!’ +\v 26 \w How|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H3820"\w* \w this|strong="H3820"\w* \w be|strong="H3426"\w* \w in|strong="H5030"\w* \w the|strong="H5704"\w* \w heart|strong="H3820"\w* \w of|strong="H3820"\w* \w the|strong="H5704"\w* \w prophets|strong="H5030"\w* \w who|strong="H5030"\w* \w prophesy|strong="H5012"\w* \w lies|strong="H8267"\w*, \w even|strong="H5704"\w* \w the|strong="H5704"\w* \w prophets|strong="H5030"\w* \w of|strong="H3820"\w* \w the|strong="H5704"\w* \w deceit|strong="H8267"\w* \w of|strong="H3820"\w* \w their|strong="H3820"\w* own \w heart|strong="H3820"\w*? +\v 27 \w They|strong="H5971"\w* \w intend|strong="H2803"\w* \w to|strong="H2803"\w* \w cause|strong="H5971"\w* \w my|strong="H5608"\w* \w people|strong="H5971"\w* \w to|strong="H2803"\w* \w forget|strong="H7911"\w* \w my|strong="H5608"\w* \w name|strong="H8034"\w* \w by|strong="H8034"\w* \w their|strong="H7911"\w* \w dreams|strong="H2472"\w* \w which|strong="H5971"\w* \w they|strong="H5971"\w* \w each|strong="H5971"\w* \w tell|strong="H5608"\w* \w his|strong="H7911"\w* \w neighbor|strong="H7453"\w*, \w as|strong="H2803"\w* \w their|strong="H7911"\w* fathers \w forgot|strong="H7911"\w* \w my|strong="H5608"\w* \w name|strong="H8034"\w* because \w of|strong="H8034"\w* \w Baal|strong="H1168"\w*. +\v 28 \w The|strong="H5002"\w* \w prophet|strong="H5030"\w* \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w a|strong="H3068"\w* \w dream|strong="H2472"\w*, let \w him|strong="H1697"\w* \w tell|strong="H1696"\w* \w a|strong="H3068"\w* \w dream|strong="H2472"\w*; \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w my|strong="H3068"\w* \w word|strong="H1697"\w*, let \w him|strong="H1697"\w* \w speak|strong="H1696"\w* \w my|strong="H3068"\w* \w word|strong="H1697"\w* faithfully. \w What|strong="H4100"\w* \w is|strong="H3068"\w* \w the|strong="H5002"\w* \w straw|strong="H8401"\w* \w to|strong="H1696"\w* \w the|strong="H5002"\w* \w wheat|strong="H1250"\w*?” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 29 “Isn’t \w my|strong="H3068"\w* \w word|strong="H1697"\w* \w like|strong="H3808"\w* fire?” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*; “\w and|strong="H3068"\w* \w like|strong="H3808"\w* \w a|strong="H3068"\w* \w hammer|strong="H6360"\w* \w that|strong="H3068"\w* breaks \w the|strong="H5002"\w* \w rock|strong="H5553"\w* \w in|strong="H3068"\w* \w pieces|strong="H6327"\w*? +\p +\v 30 “\w Therefore|strong="H3651"\w* \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H3068"\w* \w against|strong="H5921"\w* \w the|strong="H5002"\w* \w prophets|strong="H5030"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w who|strong="H3068"\w* each \w steal|strong="H1589"\w* \w my|strong="H3068"\w* \w words|strong="H1697"\w* \w from|strong="H5921"\w* \w his|strong="H3068"\w* \w neighbor|strong="H7453"\w*. +\v 31 \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H3068"\w* \w against|strong="H5921"\w* \w the|strong="H5002"\w* \w prophets|strong="H5030"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w who|strong="H3068"\w* \w use|strong="H3947"\w* \w their|strong="H3068"\w* \w tongues|strong="H3956"\w*, \w and|strong="H3068"\w* \w say|strong="H5001"\w*, ‘\w He|strong="H3068"\w* \w says|strong="H5002"\w*.’ +\v 32 \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H3068"\w* \w against|strong="H5921"\w* \w those|strong="H5921"\w* \w who|strong="H5971"\w* \w prophesy|strong="H5012"\w* \w lying|strong="H8267"\w* \w dreams|strong="H2472"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w who|strong="H5971"\w* \w tell|strong="H5608"\w* \w them|strong="H5921"\w*, \w and|strong="H3068"\w* \w cause|strong="H8267"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w to|strong="H3068"\w* \w err|strong="H8582"\w* \w by|strong="H5921"\w* \w their|strong="H3068"\w* \w lies|strong="H8267"\w*, \w and|strong="H3068"\w* \w by|strong="H5921"\w* \w their|strong="H3068"\w* \w vain|strong="H8267"\w* \w boasting|strong="H6350"\w*; \w yet|strong="H3068"\w* \w I|strong="H2005"\w* didn’t \w send|strong="H7971"\w* \w them|strong="H5921"\w* \w or|strong="H3808"\w* \w command|strong="H6680"\w* \w them|strong="H5921"\w*. \w They|strong="H3068"\w* don’t \w profit|strong="H3276"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w at|strong="H5921"\w* \w all|strong="H5921"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 33 “\w When|strong="H3588"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*, \w or|strong="H3068"\w* \w the|strong="H5002"\w* \w prophet|strong="H5030"\w*, \w or|strong="H3068"\w* \w a|strong="H3068"\w* \w priest|strong="H3548"\w*, \w asks|strong="H7592"\w* \w you|strong="H3588"\w*, saying, ‘\w What|strong="H4100"\w* \w is|strong="H3068"\w* \w the|strong="H5002"\w* \w message|strong="H4853"\w* \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w*?’ \w Then|strong="H2088"\w* \w you|strong="H3588"\w* \w shall|strong="H3548"\w* tell \w them|strong="H3588"\w*, ‘“\w What|strong="H4100"\w* \w message|strong="H4853"\w*? \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w cast|strong="H3068"\w* \w you|strong="H3588"\w* \w off|strong="H5203"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*.’ +\v 34 \w As|strong="H3068"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w*, \w the|strong="H5921"\w* \w priest|strong="H3548"\w*, \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w*, \w who|strong="H1931"\w* say, ‘\w The|strong="H5921"\w* \w message|strong="H4853"\w* \w from|strong="H5921"\w* \w Yahweh|strong="H3068"\w*,’ \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w even|strong="H3068"\w* \w punish|strong="H6485"\w* \w that|strong="H5971"\w* man \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w household|strong="H1004"\w*. +\v 35 \w You|strong="H5921"\w* \w will|strong="H3068"\w* \w say|strong="H1696"\w* everyone \w to|strong="H1696"\w* \w his|strong="H3068"\w* \w neighbor|strong="H7453"\w*, \w and|strong="H3068"\w* everyone \w to|strong="H1696"\w* \w his|strong="H3068"\w* \w brother|strong="H7453"\w*, ‘\w What|strong="H4100"\w* \w has|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w answered|strong="H6030"\w*?’ \w and|strong="H3068"\w*, ‘\w What|strong="H4100"\w* \w has|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w*?’ +\v 36 \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w mention|strong="H2142"\w* \w the|strong="H3588"\w* \w message|strong="H1697"\w* \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w*, \w for|strong="H3588"\w* \w every|strong="H1697"\w* \w man|strong="H2416"\w*’s \w own|strong="H1961"\w* \w word|strong="H1697"\w* \w has|strong="H3068"\w* \w become|strong="H1961"\w* \w his|strong="H3068"\w* \w message|strong="H1697"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w perverted|strong="H2015"\w* \w the|strong="H3588"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w living|strong="H2416"\w* \w God|strong="H3068"\w*, \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w our|strong="H3068"\w* \w God|strong="H3068"\w*. +\v 37 \w You|strong="H4100"\w* \w will|strong="H3068"\w* \w say|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3541"\w* \w prophet|strong="H5030"\w*, ‘\w What|strong="H4100"\w* \w has|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w answered|strong="H6030"\w* \w you|strong="H4100"\w*?’ \w and|strong="H3068"\w*, ‘\w What|strong="H4100"\w* \w has|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w spoken|strong="H1696"\w*?’ +\v 38 \w Although|strong="H3808"\w* \w you|strong="H7971"\w* \w say|strong="H1697"\w*, ‘\w The|strong="H3541"\w* \w message|strong="H1697"\w* \w from|strong="H7971"\w* \w Yahweh|strong="H3068"\w*,’ \w therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Because|strong="H3282"\w* \w you|strong="H7971"\w* \w say|strong="H1697"\w* \w this|strong="H2088"\w* \w word|strong="H1697"\w*, “\w The|strong="H3541"\w* \w message|strong="H1697"\w* \w from|strong="H7971"\w* \w Yahweh|strong="H3068"\w*,” \w and|strong="H3068"\w* \w I|strong="H3541"\w* \w have|strong="H3068"\w* \w sent|strong="H7971"\w* \w to|strong="H3068"\w* \w you|strong="H7971"\w*, telling \w you|strong="H7971"\w* \w not|strong="H3808"\w* \w to|strong="H3068"\w* \w say|strong="H1697"\w*, “\w The|strong="H3541"\w* \w message|strong="H1697"\w* \w from|strong="H7971"\w* \w Yahweh|strong="H3068"\w*,” +\v 39 \w therefore|strong="H3651"\w* \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H5892"\w* \w utterly|strong="H5377"\w* \w forget|strong="H5382"\w* \w you|strong="H5414"\w*, \w and|strong="H5892"\w* \w I|strong="H2005"\w* \w will|strong="H5892"\w* \w cast|strong="H5414"\w* \w you|strong="H5414"\w* \w off|strong="H5921"\w* \w with|strong="H5921"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w* \w that|strong="H3651"\w* \w I|strong="H2005"\w* \w gave|strong="H5414"\w* \w to|strong="H5921"\w* \w you|strong="H5414"\w* \w and|strong="H5892"\w* \w to|strong="H5921"\w* \w your|strong="H5414"\w* fathers, \w away|strong="H5414"\w* \w from|strong="H6440"\w* \w my|strong="H5414"\w* \w presence|strong="H6440"\w*. +\v 40 \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w bring|strong="H5414"\w* \w an|strong="H5414"\w* \w everlasting|strong="H5769"\w* \w reproach|strong="H2781"\w* \w on|strong="H5921"\w* \w you|strong="H5414"\w*, \w and|strong="H5769"\w* \w a|strong="H3068"\w* \w perpetual|strong="H5769"\w* \w shame|strong="H2781"\w*, which \w will|strong="H5414"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w forgotten|strong="H7911"\w*.’” +\c 24 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w showed|strong="H7200"\w* \w me|strong="H6440"\w*, \w and|strong="H1121"\w* \w behold|strong="H2009"\w*, \w two|strong="H8147"\w* \w baskets|strong="H1736"\w* \w of|strong="H1121"\w* \w figs|strong="H8384"\w* \w were|strong="H1121"\w* \w set|strong="H3259"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1964"\w*, \w after|strong="H7200"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon \w had|strong="H3068"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w captive|strong="H1540"\w* \w Jeconiah|strong="H3204"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiakim|strong="H3079"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w princes|strong="H8269"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w with|strong="H3068"\w* \w the|strong="H6440"\w* \w craftsmen|strong="H2796"\w* \w and|strong="H1121"\w* \w smiths|strong="H4525"\w*, \w from|strong="H6440"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H1121"\w* \w had|strong="H3068"\w* \w brought|strong="H3068"\w* \w them|strong="H6440"\w* \w to|strong="H3068"\w* Babylon. +\v 2 \w One|strong="H3808"\w* \w basket|strong="H1731"\w* \w had|strong="H1731"\w* \w very|strong="H3966"\w* \w good|strong="H2896"\w* \w figs|strong="H8384"\w*, \w like|strong="H3808"\w* \w the|strong="H3808"\w* \w figs|strong="H8384"\w* \w that|strong="H7451"\w* \w are|strong="H2896"\w* first-ripe; \w and|strong="H2896"\w* \w the|strong="H3808"\w* other \w basket|strong="H1731"\w* \w had|strong="H1731"\w* \w very|strong="H3966"\w* \w bad|strong="H7451"\w* \w figs|strong="H8384"\w*, \w which|strong="H7451"\w* could \w not|strong="H3808"\w* \w be|strong="H3808"\w* eaten, \w they|strong="H3808"\w* \w were|strong="H7451"\w* \w so|strong="H3808"\w* \w bad|strong="H7451"\w*. +\p +\v 3 \w Then|strong="H7200"\w* \w Yahweh|strong="H3068"\w* \w asked|strong="H4100"\w* \w me|strong="H7200"\w*, “\w What|strong="H4100"\w* \w do|strong="H3068"\w* \w you|strong="H3808"\w* \w see|strong="H7200"\w*, \w Jeremiah|strong="H3414"\w*?” +\p \w I|strong="H7200"\w* said, “\w Figs|strong="H8384"\w*. \w The|strong="H7200"\w* \w good|strong="H2896"\w* \w figs|strong="H8384"\w* \w are|strong="H4100"\w* \w very|strong="H3966"\w* \w good|strong="H2896"\w*, \w and|strong="H3068"\w* \w the|strong="H7200"\w* \w bad|strong="H7451"\w* \w are|strong="H4100"\w* \w very|strong="H3966"\w* \w bad|strong="H7451"\w*, \w so|strong="H3808"\w* \w bad|strong="H7451"\w* \w that|strong="H7200"\w* \w they|strong="H3068"\w* \w can|strong="H4100"\w*’t \w be|strong="H3808"\w* eaten.” +\p +\v 4 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 5 “\w Yahweh|strong="H3068"\w*, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*: ‘\w Like|strong="H3651"\w* \w these|strong="H2088"\w* \w good|strong="H2896"\w* \w figs|strong="H8384"\w*, \w so|strong="H3651"\w* \w I|strong="H3541"\w* \w will|strong="H3068"\w* \w regard|strong="H4480"\w* \w the|strong="H3541"\w* \w captives|strong="H1546"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w*, whom \w I|strong="H3541"\w* \w have|strong="H3068"\w* \w sent|strong="H7971"\w* \w out|strong="H7971"\w* \w of|strong="H3068"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w* \w into|strong="H3063"\w* \w the|strong="H3541"\w* \w land|strong="H4725"\w* \w of|strong="H3068"\w* \w the|strong="H3541"\w* \w Chaldeans|strong="H3778"\w*, \w as|strong="H3651"\w* \w good|strong="H2896"\w*. +\v 6 \w For|strong="H5921"\w* \w I|strong="H5921"\w* \w will|strong="H5869"\w* \w set|strong="H7760"\w* \w my|strong="H7760"\w* \w eyes|strong="H5869"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w for|strong="H5921"\w* \w good|strong="H2896"\w*, \w and|strong="H7725"\w* \w I|strong="H5921"\w* \w will|strong="H5869"\w* \w bring|strong="H7725"\w* \w them|strong="H5921"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w this|strong="H2063"\w* land. \w I|strong="H5921"\w* \w will|strong="H5869"\w* \w build|strong="H1129"\w* \w them|strong="H5921"\w*, \w and|strong="H7725"\w* \w not|strong="H3808"\w* \w pull|strong="H2040"\w* \w them|strong="H5921"\w* \w down|strong="H2040"\w*. \w I|strong="H5921"\w* \w will|strong="H5869"\w* \w plant|strong="H5193"\w* \w them|strong="H5921"\w*, \w and|strong="H7725"\w* \w not|strong="H3808"\w* \w pluck|strong="H5428"\w* \w them|strong="H5921"\w* \w up|strong="H1129"\w*. +\v 7 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w a|strong="H3068"\w* \w heart|strong="H3820"\w* \w to|strong="H7725"\w* \w know|strong="H3045"\w* \w me|strong="H5414"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w*. \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w my|strong="H5414"\w* \w people|strong="H5971"\w*, \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w their|strong="H3605"\w* \w God|strong="H3068"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w me|strong="H5414"\w* \w with|strong="H3068"\w* \w their|strong="H3605"\w* \w whole|strong="H3605"\w* \w heart|strong="H3820"\w*. +\p +\v 8 “‘\w As|strong="H3651"\w* \w the|strong="H3588"\w* \w bad|strong="H7451"\w* \w figs|strong="H8384"\w*, \w which|strong="H3068"\w* \w can|strong="H7451"\w*’t \w be|strong="H3808"\w* eaten, \w they|strong="H3588"\w* \w are|strong="H3068"\w* \w so|strong="H3651"\w* \w bad|strong="H7451"\w*,’ \w surely|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w So|strong="H3651"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w up|strong="H5414"\w* \w Zedekiah|strong="H6667"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w his|strong="H5414"\w* \w princes|strong="H8269"\w*, \w and|strong="H3063"\w* \w the|strong="H3588"\w* \w remnant|strong="H7611"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w* \w who|strong="H3068"\w* \w remain|strong="H3427"\w* \w in|strong="H3427"\w* \w this|strong="H2063"\w* land, \w and|strong="H3063"\w* \w those|strong="H3427"\w* \w who|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3588"\w* land \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*. +\v 9 \w I|strong="H5414"\w* \w will|strong="H5414"\w* even \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w up|strong="H5414"\w* \w to|strong="H5414"\w* \w be|strong="H5414"\w* tossed back \w and|strong="H8033"\w* \w forth|strong="H5414"\w* \w among|strong="H8148"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H4725"\w* \w the|strong="H3605"\w* earth \w for|strong="H3605"\w* \w evil|strong="H7451"\w*, \w to|strong="H5414"\w* \w be|strong="H5414"\w* \w a|strong="H3068"\w* \w reproach|strong="H2781"\w* \w and|strong="H8033"\w* \w a|strong="H3068"\w* \w proverb|strong="H4912"\w*, \w a|strong="H3068"\w* \w taunt|strong="H8148"\w* \w and|strong="H8033"\w* \w a|strong="H3068"\w* \w curse|strong="H7045"\w*, \w in|strong="H4725"\w* \w all|strong="H3605"\w* \w places|strong="H4725"\w* \w where|strong="H8033"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w drive|strong="H5080"\w* \w them|strong="H5414"\w*. +\v 10 \w I|strong="H5414"\w* \w will|strong="H2719"\w* \w send|strong="H7971"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w*, \w the|strong="H5921"\w* \w famine|strong="H7458"\w*, \w and|strong="H7971"\w* \w the|strong="H5921"\w* \w pestilence|strong="H1698"\w* \w among|strong="H5921"\w* \w them|strong="H5414"\w*, \w until|strong="H5704"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w consumed|strong="H8552"\w* \w from|strong="H5921"\w* \w off|strong="H5921"\w* \w the|strong="H5921"\w* land \w that|strong="H5414"\w* \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w to|strong="H5704"\w* \w them|strong="H5414"\w* \w and|strong="H7971"\w* \w to|strong="H5704"\w* \w their|strong="H5414"\w* fathers.’” +\c 25 +\p +\v 1 \w The|strong="H3605"\w* \w word|strong="H1697"\w* \w that|strong="H5971"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w Jeremiah|strong="H3414"\w* \w concerning|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w fourth|strong="H7243"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Jehoiakim|strong="H3079"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* (\w this|strong="H1931"\w* \w was|strong="H1961"\w* \w the|strong="H3605"\w* \w first|strong="H1121"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon), +\v 2 \w which|strong="H5971"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H3605"\w* \w prophet|strong="H5030"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H3427"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*: +\v 3 \w From|strong="H4480"\w* \w the|strong="H8085"\w* \w thirteenth|strong="H7969"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w* \w the|strong="H8085"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amon, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w even|strong="H5704"\w* \w to|strong="H1696"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, \w these|strong="H2088"\w* \w twenty-three|strong="H6242"\w* \w years|strong="H8141"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w has|strong="H3068"\w* \w come|strong="H1961"\w* \w to|strong="H1696"\w* \w me|strong="H4480"\w*, \w and|strong="H1121"\w* \w I|strong="H3117"\w* \w have|strong="H1961"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3117"\w*, \w rising|strong="H7925"\w* \w up|strong="H7925"\w* \w early|strong="H7925"\w* \w and|strong="H1121"\w* \w speaking|strong="H1696"\w*; \w but|strong="H3808"\w* \w you|strong="H3117"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* \w listened|strong="H8085"\w*. +\p +\v 4 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w sent|strong="H7971"\w* \w to|strong="H3068"\w* \w you|strong="H3605"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w*, \w rising|strong="H7925"\w* \w up|strong="H7925"\w* \w early|strong="H7925"\w* \w and|strong="H3068"\w* \w sending|strong="H7971"\w* \w them|strong="H7971"\w* (\w but|strong="H3808"\w* \w you|strong="H3605"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w listened|strong="H8085"\w* \w or|strong="H3808"\w* \w inclined|strong="H5186"\w* \w your|strong="H3068"\w* \w ear|strong="H8085"\w* \w to|strong="H3068"\w* \w hear|strong="H8085"\w*), +\v 5 saying, “\w Return|strong="H7725"\w* \w now|strong="H4994"\w* everyone \w from|strong="H4480"\w* \w his|strong="H5414"\w* \w evil|strong="H7451"\w* \w way|strong="H1870"\w*, \w and|strong="H3068"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* \w evil|strong="H7451"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w doings|strong="H4611"\w*, \w and|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* land \w that|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w to|strong="H5704"\w* \w you|strong="H5414"\w* \w and|strong="H3068"\w* \w to|strong="H5704"\w* \w your|strong="H3068"\w* fathers, \w from|strong="H4480"\w* \w of|strong="H3068"\w* \w old|strong="H5769"\w* \w and|strong="H3068"\w* \w even|strong="H5704"\w* \w forever|strong="H5769"\w* \w more|strong="H4480"\w*. +\v 6 Don’t \w go|strong="H3212"\w* after other gods \w to|strong="H3212"\w* \w serve|strong="H5647"\w* \w them|strong="H3027"\w* \w or|strong="H3808"\w* \w worship|strong="H7812"\w* \w them|strong="H3027"\w*, \w and|strong="H3027"\w* don’t \w provoke|strong="H3707"\w* \w me|strong="H3707"\w* \w to|strong="H3212"\w* \w anger|strong="H3707"\w* \w with|strong="H3212"\w* \w the|strong="H5647"\w* \w work|strong="H4639"\w* \w of|strong="H3027"\w* \w your|strong="H3808"\w* \w hands|strong="H3027"\w*; \w then|strong="H3808"\w* \w I|strong="H3808"\w* \w will|strong="H3027"\w* \w do|strong="H5647"\w* \w you|strong="H3808"\w* \w no|strong="H3808"\w* \w harm|strong="H7489"\w*.” +\p +\v 7 “\w Yet|strong="H3068"\w* \w you|strong="H3808"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w listened|strong="H8085"\w* \w to|strong="H3068"\w* \w me|strong="H3707"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w that|strong="H8085"\w* \w you|strong="H3808"\w* \w may|strong="H3068"\w* \w provoke|strong="H3707"\w* \w me|strong="H3707"\w* \w to|strong="H3068"\w* \w anger|strong="H3707"\w* \w with|strong="H3068"\w* \w the|strong="H5002"\w* \w work|strong="H4639"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w hands|strong="H3027"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w own|strong="H3027"\w* \w hurt|strong="H7451"\w*.” +\p +\v 8 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: “\w Because|strong="H3282"\w* \w you|strong="H3808"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w heard|strong="H8085"\w* \w my|strong="H8085"\w* \w words|strong="H1697"\w*, +\v 9 \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w and|strong="H3068"\w* \w take|strong="H3947"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w families|strong="H4940"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w north|strong="H6828"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w and|strong="H3068"\w* \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w to|strong="H3068"\w* \w Nebuchadnezzar|strong="H5019"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w my|strong="H3605"\w* \w servant|strong="H5650"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w bring|strong="H3947"\w* \w them|strong="H5921"\w* \w against|strong="H5921"\w* \w this|strong="H2063"\w* \w land|strong="H4940"\w*, \w and|strong="H3068"\w* \w against|strong="H5921"\w* \w its|strong="H3605"\w* \w inhabitants|strong="H3427"\w*, \w and|strong="H3068"\w* \w against|strong="H5921"\w* \w all|strong="H3605"\w* \w these|strong="H2063"\w* \w nations|strong="H1471"\w* \w around|strong="H5439"\w*. \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w utterly|strong="H2763"\w* \w destroy|strong="H2763"\w* \w them|strong="H5921"\w*, \w and|strong="H3068"\w* \w make|strong="H7760"\w* \w them|strong="H5921"\w* \w an|strong="H3947"\w* \w astonishment|strong="H8047"\w*, \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w hissing|strong="H8322"\w*, \w and|strong="H3068"\w* \w perpetual|strong="H5769"\w* \w desolations|strong="H2723"\w*. +\v 10 Moreover \w I|strong="H6963"\w* \w will|strong="H6963"\w* take \w from|strong="H6963"\w* \w them|strong="H1992"\w* \w the|strong="H6963"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w mirth|strong="H8057"\w* \w and|strong="H6963"\w* \w the|strong="H6963"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w gladness|strong="H8057"\w*, \w the|strong="H6963"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H6963"\w* \w bridegroom|strong="H2860"\w* \w and|strong="H6963"\w* \w the|strong="H6963"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H6963"\w* \w bride|strong="H3618"\w*, \w the|strong="H6963"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H6963"\w* \w millstones|strong="H7347"\w*, \w and|strong="H6963"\w* \w the|strong="H6963"\w* \w light|strong="H5216"\w* \w of|strong="H6963"\w* \w the|strong="H6963"\w* \w lamp|strong="H5216"\w*. +\v 11 \w This|strong="H2063"\w* \w whole|strong="H3605"\w* land \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w desolation|strong="H8047"\w*, \w and|strong="H4428"\w* \w an|strong="H1961"\w* \w astonishment|strong="H8047"\w*; \w and|strong="H4428"\w* \w these|strong="H2063"\w* \w nations|strong="H1471"\w* \w will|strong="H1961"\w* \w serve|strong="H5647"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w seventy|strong="H7657"\w* \w years|strong="H8141"\w*. +\p +\v 12 “\w It|strong="H7760"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w*, \w when|strong="H1961"\w* \w seventy|strong="H7657"\w* \w years|strong="H8141"\w* \w are|strong="H1471"\w* \w accomplished|strong="H4390"\w*, \w that|strong="H1931"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w punish|strong="H6485"\w* \w the|strong="H5002"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w and|strong="H3068"\w* \w that|strong="H1931"\w* \w nation|strong="H1471"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w for|strong="H5921"\w* \w their|strong="H3068"\w* \w iniquity|strong="H5771"\w*. \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w make|strong="H7760"\w* \w the|strong="H5002"\w* land \w of|strong="H4428"\w* \w the|strong="H5002"\w* \w Chaldeans|strong="H3778"\w* \w desolate|strong="H8077"\w* \w forever|strong="H5769"\w*. +\v 13 \w I|strong="H5921"\w* \w will|strong="H1471"\w* bring \w on|strong="H5921"\w* \w that|strong="H3605"\w* land \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w words|strong="H1697"\w* \w which|strong="H1931"\w* \w I|strong="H5921"\w* \w have|strong="H1471"\w* \w pronounced|strong="H1696"\w* \w against|strong="H5921"\w* \w it|strong="H1931"\w*, \w even|strong="H5921"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H2088"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w this|strong="H2088"\w* \w book|strong="H5612"\w*, \w which|strong="H1931"\w* \w Jeremiah|strong="H3414"\w* \w has|strong="H1471"\w* \w prophesied|strong="H5012"\w* \w against|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*. +\v 14 \w For|strong="H3588"\w* \w many|strong="H7227"\w* \w nations|strong="H1471"\w* \w and|strong="H4428"\w* \w great|strong="H1419"\w* \w kings|strong="H4428"\w* \w will|strong="H1471"\w* \w make|strong="H7999"\w* bondservants \w of|strong="H4428"\w* \w them|strong="H1992"\w*, \w even|strong="H1571"\w* \w of|strong="H4428"\w* \w them|strong="H1992"\w*. \w I|strong="H3588"\w* \w will|strong="H1471"\w* \w recompense|strong="H7999"\w* \w them|strong="H1992"\w* \w according|strong="H3027"\w* \w to|strong="H3027"\w* \w their|strong="H1992"\w* \w deeds|strong="H4639"\w*, \w and|strong="H4428"\w* \w according|strong="H3027"\w* \w to|strong="H3027"\w* \w the|strong="H3588"\w* \w work|strong="H4639"\w* \w of|strong="H4428"\w* \w their|strong="H1992"\w* \w hands|strong="H3027"\w*.” +\p +\v 15 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w* \w to|strong="H3478"\w* \w me|strong="H7971"\w*: “\w Take|strong="H3947"\w* \w this|strong="H2063"\w* \w cup|strong="H3563"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w wine|strong="H3196"\w* \w of|strong="H3068"\w* \w wrath|strong="H2534"\w* \w from|strong="H3478"\w* \w my|strong="H3605"\w* \w hand|strong="H3027"\w*, \w and|strong="H3478"\w* cause \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w to|strong="H3478"\w* \w whom|strong="H3588"\w* \w I|strong="H3588"\w* \w send|strong="H7971"\w* \w you|strong="H3588"\w* \w to|strong="H3478"\w* \w drink|strong="H8248"\w* \w it|strong="H3588"\w*. +\v 16 \w They|strong="H6440"\w* \w will|strong="H2719"\w* \w drink|strong="H8354"\w*, \w and|strong="H7971"\w* reel back \w and|strong="H7971"\w* \w forth|strong="H7971"\w*, \w and|strong="H7971"\w* \w be|strong="H6440"\w* insane, \w because|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w* \w that|strong="H2719"\w* \w I|strong="H6440"\w* \w will|strong="H2719"\w* \w send|strong="H7971"\w* \w among|strong="H2719"\w* \w them|strong="H7971"\w*.” +\p +\v 17 \w Then|strong="H3947"\w* \w I|strong="H3027"\w* \w took|strong="H3947"\w* \w the|strong="H3605"\w* \w cup|strong="H3563"\w* \w at|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w*, \w and|strong="H3068"\w* \w made|strong="H8248"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w to|strong="H3068"\w* \w drink|strong="H8248"\w*, \w to|strong="H3068"\w* whom \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w*: +\v 18 \w Jerusalem|strong="H3389"\w*, \w and|strong="H3063"\w* \w the|strong="H5414"\w* \w cities|strong="H5892"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w with|strong="H3389"\w* \w its|strong="H5414"\w* \w kings|strong="H4428"\w* \w and|strong="H3063"\w* \w its|strong="H5414"\w* \w princes|strong="H8269"\w*, \w to|strong="H5414"\w* \w make|strong="H5414"\w* \w them|strong="H5414"\w* \w a|strong="H3068"\w* \w desolation|strong="H8047"\w*, \w an|strong="H5414"\w* \w astonishment|strong="H8047"\w*, \w a|strong="H3068"\w* \w hissing|strong="H8322"\w*, \w and|strong="H3063"\w* \w a|strong="H3068"\w* \w curse|strong="H7045"\w*, \w as|strong="H3117"\w* \w it|strong="H5414"\w* \w is|strong="H2088"\w* \w today|strong="H3117"\w*; +\v 19 \w Pharaoh|strong="H6547"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*, \w with|strong="H4714"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w*, \w his|strong="H3605"\w* \w princes|strong="H8269"\w*, \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*; +\v 20 \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w mixed|strong="H6154"\w* \w people|strong="H6154"\w*, \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* land \w of|strong="H4428"\w* \w Uz|strong="H5780"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*, Ashkelon, \w Gaza|strong="H5804"\w*, \w Ekron|strong="H6138"\w*, \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w remnant|strong="H7611"\w* \w of|strong="H4428"\w* Ashdod; +\v 21 Edom, \w Moab|strong="H4124"\w*, \w and|strong="H1121"\w* \w the|strong="H1121"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*; +\v 22 \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Tyre|strong="H6865"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Sidon|strong="H6721"\w*, \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* isle \w which|strong="H4428"\w* \w is|strong="H3605"\w* \w beyond|strong="H5676"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w*; +\v 23 \w Dedan|strong="H1719"\w*, \w Tema|strong="H8485"\w*, Buz, \w and|strong="H3605"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w have|strong="H3605"\w* \w the|strong="H3605"\w* \w corners|strong="H6285"\w* \w of|strong="H3605"\w* \w their|strong="H3605"\w* beard \w cut|strong="H7112"\w* \w off|strong="H7112"\w*; +\v 24 \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Arabia|strong="H6152"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w mixed|strong="H6154"\w* \w people|strong="H6154"\w* \w who|strong="H3605"\w* \w dwell|strong="H7931"\w* \w in|strong="H4428"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w*; +\v 25 \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Zimri|strong="H2174"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Elam|strong="H5867"\w*, \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w Medes|strong="H4074"\w*; +\v 26 \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w north|strong="H6828"\w*, \w far|strong="H7350"\w* \w and|strong="H4428"\w* \w near|strong="H7138"\w*, \w one|strong="H3605"\w* \w with|strong="H5921"\w* \w another|strong="H6440"\w*; \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* world, \w which|strong="H4428"\w* \w are|strong="H4428"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* earth. \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Sheshach|strong="H8347"\w* \w will|strong="H4428"\w* \w drink|strong="H8354"\w* \w after|strong="H5921"\w* \w them|strong="H5921"\w*. +\p +\v 27 “\w You|strong="H6440"\w* \w shall|strong="H3068"\w* tell \w them|strong="H7971"\w*, ‘\w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*: “\w Drink|strong="H8354"\w*, \w and|strong="H6965"\w* \w be|strong="H3808"\w* \w drunk|strong="H8354"\w*, \w vomit|strong="H7006"\w*, \w fall|strong="H5307"\w*, \w and|strong="H6965"\w* \w rise|strong="H6965"\w* \w no|strong="H3808"\w* \w more|strong="H3808"\w*, \w because|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w* \w which|strong="H3068"\w* \w I|strong="H3541"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w among|strong="H2719"\w* \w you|strong="H6440"\w*.”’ +\v 28 \w It|strong="H3588"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w*, \w if|strong="H3588"\w* \w they|strong="H3588"\w* \w refuse|strong="H3985"\w* \w to|strong="H3068"\w* \w take|strong="H3947"\w* \w the|strong="H3588"\w* \w cup|strong="H3563"\w* \w at|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w to|strong="H3068"\w* \w drink|strong="H8354"\w*, \w then|strong="H1961"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* tell \w them|strong="H3027"\w*, ‘\w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: “\w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w surely|strong="H3588"\w* \w drink|strong="H8354"\w*. +\v 29 \w For|strong="H3588"\w*, \w behold|strong="H2009"\w*, \w I|strong="H3588"\w* \w begin|strong="H2490"\w* \w to|strong="H3068"\w* \w work|strong="H7489"\w* \w evil|strong="H7489"\w* \w at|strong="H3427"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w called|strong="H7121"\w* \w by|strong="H5921"\w* \w my|strong="H3605"\w* \w name|strong="H8034"\w*; \w and|strong="H3068"\w* \w should|strong="H3068"\w* \w you|strong="H3588"\w* \w be|strong="H3808"\w* \w utterly|strong="H7489"\w* \w unpunished|strong="H5352"\w*? \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w unpunished|strong="H5352"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w call|strong="H7121"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w sword|strong="H2719"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* earth, \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*.”’ +\p +\v 30 “\w Therefore|strong="H5921"\w* \w prophesy|strong="H5012"\w* \w against|strong="H5921"\w* \w them|strong="H5414"\w* \w all|strong="H3605"\w* \w these|strong="H3605"\w* \w words|strong="H1697"\w*, \w and|strong="H3068"\w* \w tell|strong="H3605"\w* \w them|strong="H5414"\w*, +\q1 “‘\w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w roar|strong="H7580"\w* \w from|strong="H5921"\w* \w on|strong="H5921"\w* \w high|strong="H4791"\w*, +\q2 \w and|strong="H3068"\w* \w utter|strong="H5414"\w* \w his|strong="H3605"\w* \w voice|strong="H6963"\w* \w from|strong="H5921"\w* \w his|strong="H3605"\w* \w holy|strong="H6944"\w* \w habitation|strong="H5116"\w*. +\q2 \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w mightily|strong="H7580"\w* \w roar|strong="H7580"\w* \w against|strong="H5921"\w* \w his|strong="H3605"\w* \w fold|strong="H5116"\w*. +\q1 \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w a|strong="H3068"\w* \w shout|strong="H6963"\w*, \w as|strong="H1697"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w tread|strong="H1869"\w* grapes, +\q2 \w against|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* earth. +\q1 +\v 31 \w A|strong="H3068"\w* \w noise|strong="H7588"\w* \w will|strong="H3068"\w* come \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w end|strong="H7097"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* earth; +\q2 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w a|strong="H3068"\w* \w controversy|strong="H7379"\w* \w with|strong="H3068"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*. +\q1 \w He|strong="H1931"\w* \w will|strong="H3068"\w* \w enter|strong="H8199"\w* \w into|strong="H8199"\w* \w judgment|strong="H8199"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w*. +\q2 \w As|strong="H5704"\w* \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w wicked|strong="H7563"\w*, \w he|strong="H1931"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*,”’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 32 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*, +\q1 “\w Behold|strong="H2009"\w*, \w evil|strong="H7451"\w* \w will|strong="H3068"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w nation|strong="H1471"\w* \w to|strong="H3318"\w* \w nation|strong="H1471"\w*, +\q2 \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w storm|strong="H5591"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w raised|strong="H5782"\w* \w up|strong="H5782"\w* \w from|strong="H3318"\w* \w the|strong="H3541"\w* uttermost \w parts|strong="H3411"\w* \w of|strong="H3068"\w* \w the|strong="H3541"\w* earth.” +\m +\v 33 \w The|strong="H6440"\w* \w slain|strong="H2491"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w at|strong="H5921"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w from|strong="H6440"\w* \w one|strong="H3808"\w* \w end|strong="H7097"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* earth \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H6440"\w* \w other|strong="H7097"\w* \w end|strong="H7097"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* earth. \w They|strong="H3117"\w* won’t \w be|strong="H1961"\w* \w lamented|strong="H5594"\w*. \w They|strong="H3117"\w* won’t \w be|strong="H1961"\w* gathered \w or|strong="H3808"\w* \w buried|strong="H6912"\w*. \w They|strong="H3117"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w dung|strong="H1828"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w*. +\q1 +\v 34 \w Wail|strong="H3213"\w*, \w you|strong="H3588"\w* \w shepherds|strong="H7462"\w*, \w and|strong="H3117"\w* \w cry|strong="H2199"\w*. +\q2 \w Wallow|strong="H6428"\w* \w in|strong="H3117"\w* dust, \w you|strong="H3588"\w* leader \w of|strong="H3117"\w* \w the|strong="H3588"\w* \w flock|strong="H6629"\w*; +\q1 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H3588"\w* \w slaughter|strong="H2873"\w* \w and|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H3588"\w* \w dispersions|strong="H8600"\w* \w have|strong="H3117"\w* \w fully|strong="H4390"\w* \w come|strong="H5307"\w*, +\q2 \w and|strong="H3117"\w* \w you|strong="H3588"\w* \w will|strong="H3117"\w* \w fall|strong="H5307"\w* \w like|strong="H5307"\w* fine \w pottery|strong="H3627"\w*. +\q1 +\v 35 \w The|strong="H4480"\w* \w shepherds|strong="H7462"\w* \w will|strong="H6629"\w* \w have|strong="H7462"\w* \w no|strong="H4480"\w* \w way|strong="H4498"\w* \w to|strong="H4480"\w* flee. +\q2 \w The|strong="H4480"\w* leader \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w flock|strong="H6629"\w* \w will|strong="H6629"\w* \w have|strong="H7462"\w* \w no|strong="H4480"\w* \w escape|strong="H6413"\w*. +\q1 +\v 36 \w A|strong="H3068"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w cry|strong="H6818"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w shepherds|strong="H7462"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w wailing|strong="H3215"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* leader \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w flock|strong="H6629"\w*, +\q2 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w destroys|strong="H7703"\w* \w their|strong="H3068"\w* \w pasture|strong="H4830"\w*. +\q1 +\v 37 \w The|strong="H6440"\w* \w peaceful|strong="H7965"\w* folds \w are|strong="H3068"\w* \w brought|strong="H3068"\w* \w to|strong="H3068"\w* \w silence|strong="H1826"\w* +\q2 \w because|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w fierce|strong="H2740"\w* \w anger|strong="H6440"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 38 \w He|strong="H3588"\w* \w has|strong="H1961"\w* \w left|strong="H5800"\w* \w his|strong="H6440"\w* \w covert|strong="H5520"\w*, \w as|strong="H1961"\w* \w the|strong="H6440"\w* \w lion|strong="H3715"\w*; +\q2 \w for|strong="H3588"\w* \w their|strong="H6440"\w* \w land|strong="H6440"\w* \w has|strong="H1961"\w* \w become|strong="H1961"\w* \w an|strong="H1961"\w* \w astonishment|strong="H8047"\w* \w because|strong="H3588"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w fierceness|strong="H2740"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w oppression|strong="H3238"\w*, +\q2 \w and|strong="H6440"\w* \w because|strong="H3588"\w* \w of|strong="H6440"\w* \w his|strong="H6440"\w* \w fierce|strong="H2740"\w* \w anger|strong="H6440"\w*. +\c 26 +\p +\v 1 \w In|strong="H3068"\w* \w the|strong="H3068"\w* \w beginning|strong="H7225"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w reign|strong="H4468"\w* \w of|strong="H1121"\w* \w Jehoiakim|strong="H3079"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w this|strong="H2088"\w* \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w from|strong="H1121"\w* \w Yahweh|strong="H3068"\w*: +\v 2 “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Stand|strong="H5975"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3063"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w which|strong="H3068"\w* \w come|strong="H3063"\w* \w to|strong="H1696"\w* \w worship|strong="H7812"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w that|strong="H3605"\w* \w I|strong="H3541"\w* \w command|strong="H6680"\w* \w you|strong="H6680"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H5921"\w*. Don’t \w omit|strong="H1639"\w* \w a|strong="H3068"\w* \w word|strong="H1697"\w*. +\v 3 \w It|strong="H6213"\w* \w may|strong="H7725"\w* \w be|strong="H1870"\w* \w they|strong="H6213"\w* \w will|strong="H8085"\w* \w listen|strong="H8085"\w*, \w and|strong="H7725"\w* \w every|strong="H7725"\w* \w man|strong="H7451"\w* \w turn|strong="H7725"\w* \w from|strong="H7725"\w* \w his|strong="H7725"\w* \w evil|strong="H7451"\w* \w way|strong="H1870"\w*, \w that|strong="H8085"\w* \w I|strong="H8085"\w* \w may|strong="H7725"\w* \w relent|strong="H5162"\w* \w from|strong="H7725"\w* \w the|strong="H6440"\w* \w evil|strong="H7451"\w* \w which|strong="H7451"\w* \w I|strong="H8085"\w* \w intend|strong="H2803"\w* \w to|strong="H7725"\w* \w do|strong="H6213"\w* \w to|strong="H7725"\w* \w them|strong="H7725"\w* \w because|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w evil|strong="H7451"\w* \w of|strong="H6440"\w* \w their|strong="H6440"\w* \w doings|strong="H4611"\w*.’” +\v 4 \w You|strong="H5414"\w* \w shall|strong="H3068"\w* \w tell|strong="H8085"\w* \w them|strong="H5414"\w*, “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘If \w you|strong="H5414"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H3068"\w* \w me|strong="H5414"\w*, \w to|strong="H3068"\w* \w walk|strong="H3212"\w* \w in|strong="H3068"\w* \w my|strong="H8085"\w* \w law|strong="H8451"\w* \w which|strong="H3068"\w* \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w set|strong="H5414"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w*, +\v 5 \w to|strong="H7971"\w* \w listen|strong="H8085"\w* \w to|strong="H7971"\w* \w the|strong="H5921"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w my|strong="H8085"\w* \w servants|strong="H5650"\w* \w the|strong="H5921"\w* \w prophets|strong="H5030"\w* whom \w I|strong="H5921"\w* \w send|strong="H7971"\w* \w to|strong="H7971"\w* \w you|strong="H7971"\w*, \w even|strong="H3808"\w* \w rising|strong="H7925"\w* \w up|strong="H7925"\w* \w early|strong="H7925"\w* \w and|strong="H7971"\w* \w sending|strong="H7971"\w* \w them|strong="H5921"\w*—\w but|strong="H3808"\w* \w you|strong="H7971"\w* \w have|strong="H5030"\w* \w not|strong="H3808"\w* \w listened|strong="H8085"\w*— +\v 6 \w then|strong="H2088"\w* \w I|strong="H5414"\w* \w will|strong="H1471"\w* \w make|strong="H5414"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w* \w like|strong="H1004"\w* \w Shiloh|strong="H7887"\w*, \w and|strong="H1004"\w* \w will|strong="H1471"\w* \w make|strong="H5414"\w* \w this|strong="H2088"\w* \w city|strong="H5892"\w* \w a|strong="H3068"\w* \w curse|strong="H7045"\w* \w to|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* earth.’” +\p +\v 7 \w The|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w* \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w heard|strong="H8085"\w* \w Jeremiah|strong="H3414"\w* \w speaking|strong="H1696"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 8 \w When|strong="H1961"\w* \w Jeremiah|strong="H3414"\w* \w had|strong="H3068"\w* \w finished|strong="H3615"\w* \w speaking|strong="H1696"\w* \w all|strong="H3605"\w* \w that|strong="H5971"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w commanded|strong="H6680"\w* \w him|strong="H6680"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w* \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w seized|strong="H8610"\w* \w him|strong="H6680"\w*, \w saying|strong="H1696"\w*, “\w You|strong="H6680"\w* \w shall|strong="H3548"\w* \w surely|strong="H4191"\w* \w die|strong="H4191"\w*! +\v 9 \w Why|strong="H4069"\w* \w have|strong="H1961"\w* \w you|strong="H3605"\w* \w prophesied|strong="H5012"\w* \w in|strong="H3427"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*, saying, ‘\w This|strong="H2088"\w* \w house|strong="H1004"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w Shiloh|strong="H7887"\w*, \w and|strong="H3068"\w* \w this|strong="H2088"\w* \w city|strong="H5892"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w desolate|strong="H2717"\w*, \w without|strong="H1004"\w* \w inhabitant|strong="H3427"\w*’?” \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w were|strong="H1961"\w* \w crowded|strong="H6950"\w* around \w Jeremiah|strong="H3414"\w* \w in|strong="H3427"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\p +\v 10 \w When|strong="H8085"\w* \w the|strong="H8085"\w* \w princes|strong="H8269"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w heard|strong="H8085"\w* \w these|strong="H8085"\w* \w things|strong="H1697"\w*, \w they|strong="H3068"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5927"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*; \w and|strong="H3063"\w* \w they|strong="H3068"\w* \w sat|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H8085"\w* \w entry|strong="H6607"\w* \w of|strong="H4428"\w* \w the|strong="H8085"\w* \w new|strong="H2319"\w* \w gate|strong="H8179"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 11 \w Then|strong="H2088"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H4941"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w* spoke \w to|strong="H8085"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w and|strong="H4941"\w* \w to|strong="H8085"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, saying, “\w This|strong="H2088"\w* \w man|strong="H3605"\w* \w is|strong="H2088"\w* \w worthy|strong="H4941"\w* \w of|strong="H8269"\w* \w death|strong="H4194"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w prophesied|strong="H5012"\w* \w against|strong="H5012"\w* \w this|strong="H2088"\w* \w city|strong="H5892"\w*, \w as|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H5971"\w* \w heard|strong="H8085"\w* \w with|strong="H5971"\w* \w your|strong="H3605"\w* ears.” +\p +\v 12 \w Then|strong="H2088"\w* \w Jeremiah|strong="H3414"\w* \w spoke|strong="H1697"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w saying|strong="H1697"\w*, “\w Yahweh|strong="H3068"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w* \w to|strong="H3068"\w* \w prophesy|strong="H5012"\w* \w against|strong="H5012"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w* \w and|strong="H3068"\w* \w against|strong="H5012"\w* \w this|strong="H2088"\w* \w city|strong="H5892"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w that|strong="H5971"\w* \w you|strong="H3605"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w*. +\v 13 \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* \w amend|strong="H3190"\w* \w your|strong="H3068"\w* \w ways|strong="H1870"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w doings|strong="H4611"\w*, \w and|strong="H3068"\w* \w obey|strong="H8085"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w*; \w then|strong="H1696"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w relent|strong="H5162"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w evil|strong="H7451"\w* \w that|strong="H8085"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w pronounced|strong="H1696"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w*. +\v 14 But \w as|strong="H6213"\w* \w for|strong="H6213"\w* \w me|strong="H6213"\w*, \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H2005"\w* \w in|strong="H6213"\w* \w your|strong="H6213"\w* \w hand|strong="H3027"\w*. \w Do|strong="H6213"\w* \w with|strong="H6213"\w* \w me|strong="H6213"\w* \w what|strong="H2896"\w* \w is|strong="H3027"\w* \w good|strong="H2896"\w* \w and|strong="H3027"\w* \w right|strong="H3477"\w* \w in|strong="H6213"\w* \w your|strong="H6213"\w* \w eyes|strong="H5869"\w*. +\v 15 \w Only|strong="H3588"\w* \w know|strong="H3045"\w* \w for|strong="H3588"\w* \w certain|strong="H3045"\w* \w that|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w put|strong="H5414"\w* \w me|strong="H5414"\w* \w to|strong="H1696"\w* \w death|strong="H4191"\w*, \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w bring|strong="H5414"\w* \w innocent|strong="H5355"\w* \w blood|strong="H1818"\w* \w on|strong="H5921"\w* \w yourselves|strong="H3605"\w*, \w on|strong="H5921"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w*, \w and|strong="H3068"\w* \w on|strong="H5921"\w* \w its|strong="H3605"\w* \w inhabitants|strong="H3427"\w*; \w for|strong="H3588"\w* \w in|strong="H3427"\w* truth \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w sent|strong="H7971"\w* \w me|strong="H5414"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w* \w to|strong="H1696"\w* \w speak|strong="H1696"\w* \w all|strong="H3605"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w* \w in|strong="H3427"\w* \w your|strong="H3068"\w* ears.” +\p +\v 16 \w Then|strong="H1696"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H3068"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w*: “\w This|strong="H2088"\w* \w man|strong="H3605"\w* \w is|strong="H3068"\w* \w not|strong="H2088"\w* \w worthy|strong="H4941"\w* \w of|strong="H3068"\w* \w death|strong="H4194"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w us|strong="H3588"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*.” +\p +\v 17 \w Then|strong="H6965"\w* certain \w of|strong="H2205"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H2205"\w* \w the|strong="H3605"\w* land \w rose|strong="H6965"\w* \w up|strong="H6965"\w*, \w and|strong="H6965"\w* spoke \w to|strong="H6965"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w assembly|strong="H6951"\w* \w of|strong="H2205"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, saying, +\v 18 “\w Micah|strong="H4320"\w* \w the|strong="H3605"\w* Morashtite \w prophesied|strong="H5012"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w Hezekiah|strong="H2396"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*; \w and|strong="H3063"\w* \w he|strong="H3117"\w* spoke \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, saying, ‘\w Yahweh|strong="H3068"\w* \w of|strong="H4428"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: +\q1 “‘\w Zion|strong="H6726"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w plowed|strong="H2790"\w* \w as|strong="H3117"\w* \w a|strong="H3068"\w* \w field|strong="H7704"\w*, +\q2 \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w* \w will|strong="H3068"\w* \w become|strong="H1961"\w* \w heaps|strong="H5856"\w*, +\q2 \w and|strong="H3063"\w* \w the|strong="H3605"\w* \w mountain|strong="H2022"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w as|strong="H3117"\w* \w the|strong="H3605"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w of|strong="H4428"\w* \w a|strong="H3068"\w* \w forest|strong="H3293"\w*.’ +\m +\v 19 \w Did|strong="H6213"\w* \w Hezekiah|strong="H2396"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w Judah|strong="H3063"\w* \w put|strong="H4191"\w* \w him|strong="H6440"\w* \w to|strong="H1696"\w* \w death|strong="H4191"\w*? Didn’t \w he|strong="H6213"\w* \w fear|strong="H3373"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3063"\w* \w entreat|strong="H2470"\w* \w the|strong="H3605"\w* \w favor|strong="H6440"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3063"\w* \w Yahweh|strong="H3068"\w* \w relented|strong="H5162"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w disaster|strong="H7451"\w* \w which|strong="H3068"\w* \w he|strong="H6213"\w* \w had|strong="H3068"\w* \w pronounced|strong="H1696"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w*? \w We|strong="H6213"\w* \w would|strong="H3068"\w* \w commit|strong="H6213"\w* \w great|strong="H1419"\w* \w evil|strong="H7451"\w* \w against|strong="H5921"\w* \w our|strong="H3068"\w* \w own|strong="H5315"\w* \w souls|strong="H5315"\w* \w that|strong="H3605"\w* \w way|strong="H6440"\w*!” +\p +\v 20 \w There|strong="H1961"\w* \w was|strong="H3068"\w* \w also|strong="H1571"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w who|strong="H3605"\w* \w prophesied|strong="H5012"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*, Uriah \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shemaiah|strong="H8098"\w* \w of|strong="H1121"\w* \w Kiriath|strong="H7157"\w* Jearim; \w and|strong="H1121"\w* \w he|strong="H3068"\w* \w prophesied|strong="H5012"\w* \w against|strong="H5921"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w and|strong="H1121"\w* \w against|strong="H5921"\w* \w this|strong="H2063"\w* land \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H1121"\w* \w Jeremiah|strong="H3414"\w*. +\v 21 \w When|strong="H8085"\w* \w Jehoiakim|strong="H3079"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w with|strong="H1697"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w heard|strong="H8085"\w* \w his|strong="H3605"\w* \w words|strong="H1697"\w*, \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w sought|strong="H1245"\w* \w to|strong="H4191"\w* \w put|strong="H4191"\w* \w him|strong="H4191"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*; \w but|strong="H8085"\w* \w when|strong="H8085"\w* Uriah \w heard|strong="H8085"\w* \w it|strong="H1245"\w*, \w he|strong="H3605"\w* \w was|strong="H1697"\w* \w afraid|strong="H3372"\w*, \w and|strong="H4428"\w* \w fled|strong="H1272"\w*, \w and|strong="H4428"\w* \w went|strong="H4428"\w* \w into|strong="H4714"\w* \w Egypt|strong="H4714"\w*. +\v 22 \w Then|strong="H7971"\w* \w Jehoiakim|strong="H3079"\w* \w the|strong="H7971"\w* \w king|strong="H4428"\w* \w sent|strong="H7971"\w* Elnathan \w the|strong="H7971"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Achbor|strong="H5907"\w* \w and|strong="H1121"\w* certain \w men|strong="H1121"\w* \w with|strong="H4714"\w* \w him|strong="H7971"\w* \w into|strong="H4714"\w* \w Egypt|strong="H4714"\w*. +\v 23 \w They|strong="H5971"\w* fetched Uriah \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w* \w and|strong="H1121"\w* \w brought|strong="H3318"\w* \w him|strong="H5221"\w* \w to|strong="H3318"\w* \w Jehoiakim|strong="H3079"\w* \w the|strong="H5221"\w* \w king|strong="H4428"\w*, \w who|strong="H5971"\w* \w killed|strong="H5221"\w* \w him|strong="H5221"\w* \w with|strong="H3318"\w* \w the|strong="H5221"\w* \w sword|strong="H2719"\w* \w and|strong="H1121"\w* \w cast|strong="H7993"\w* \w his|strong="H5221"\w* \w dead|strong="H5038"\w* \w body|strong="H5038"\w* \w into|strong="H3318"\w* \w the|strong="H5221"\w* \w graves|strong="H6913"\w* \w of|strong="H1121"\w* \w the|strong="H5221"\w* \w common|strong="H1121"\w* \w people|strong="H5971"\w*. +\p +\v 24 \w But|strong="H1961"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* Ahikam \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shaphan|strong="H8227"\w* \w was|strong="H1961"\w* \w with|strong="H5971"\w* \w Jeremiah|strong="H3414"\w*, \w so|strong="H1961"\w* \w that|strong="H5971"\w* \w they|strong="H5971"\w* didn’t \w give|strong="H5414"\w* \w him|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w* \w to|strong="H4191"\w* \w put|strong="H5414"\w* \w him|strong="H5414"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*. +\c 27 +\p +\v 1 \w In|strong="H3068"\w* \w the|strong="H3068"\w* \w beginning|strong="H7225"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w reign|strong="H4467"\w* \w of|strong="H1121"\w* \w Jehoiakim|strong="H3079"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w this|strong="H2088"\w* \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w* \w from|strong="H1121"\w* \w Yahweh|strong="H3068"\w*, \w saying|strong="H1697"\w*, +\v 2 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w to|strong="H3068"\w* \w me|strong="H5414"\w*: “\w Make|strong="H6213"\w* \w bonds|strong="H4147"\w* \w and|strong="H3068"\w* \w bars|strong="H4133"\w*, \w and|strong="H3068"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w on|strong="H5921"\w* \w your|strong="H3068"\w* \w neck|strong="H6677"\w*. +\v 3 \w Then|strong="H7971"\w* \w send|strong="H7971"\w* \w them|strong="H7971"\w* \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Edom, \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w*, \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H7971"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Tyre|strong="H6865"\w*, \w and|strong="H1121"\w* \w to|strong="H7971"\w* \w the|strong="H7971"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Sidon|strong="H6721"\w*, \w by|strong="H3027"\w* \w the|strong="H7971"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H7971"\w* \w messengers|strong="H4397"\w* \w who|strong="H1121"\w* \w come|strong="H3063"\w* \w to|strong="H7971"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H7971"\w* \w Zedekiah|strong="H6667"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*. +\v 4 \w Give|strong="H6680"\w* \w them|strong="H6680"\w* \w a|strong="H3068"\w* \w command|strong="H6680"\w* \w to|strong="H3478"\w* \w their|strong="H3068"\w* masters, saying, ‘\w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*, “\w You|strong="H6680"\w* \w shall|strong="H3068"\w* tell \w your|strong="H3068"\w* masters: +\v 5 ‘\w I|strong="H5414"\w* \w have|strong="H5869"\w* \w made|strong="H6213"\w* \w the|strong="H6440"\w* earth, \w the|strong="H6440"\w* \w men|strong="H1419"\w*, \w and|strong="H1419"\w* \w the|strong="H6440"\w* animals \w that|strong="H5414"\w* \w are|strong="H5869"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* earth \w by|strong="H5921"\w* \w my|strong="H5414"\w* \w great|strong="H1419"\w* \w power|strong="H3581"\w* \w and|strong="H1419"\w* \w by|strong="H5921"\w* \w my|strong="H5414"\w* \w outstretched|strong="H5186"\w* \w arm|strong="H2220"\w*. \w I|strong="H5414"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H6213"\w* \w whom|strong="H6440"\w* \w it|strong="H5414"\w* \w seems|strong="H5869"\w* \w right|strong="H3474"\w* \w to|strong="H6213"\w* \w me|strong="H5414"\w*. +\v 6 \w Now|strong="H6258"\w* \w I|strong="H5414"\w* \w have|strong="H1571"\w* \w given|strong="H5414"\w* \w all|strong="H3605"\w* \w these|strong="H3605"\w* \w lands|strong="H7704"\w* \w into|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w Nebuchadnezzar|strong="H5019"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w my|strong="H5414"\w* \w servant|strong="H5650"\w*. \w I|strong="H5414"\w* \w have|strong="H1571"\w* \w also|strong="H1571"\w* \w given|strong="H5414"\w* \w the|strong="H3605"\w* \w animals|strong="H2416"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w to|strong="H5414"\w* \w him|strong="H5414"\w* \w to|strong="H5414"\w* \w serve|strong="H5647"\w* \w him|strong="H5414"\w*. +\v 7 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w will|strong="H1471"\w* \w serve|strong="H5647"\w* \w him|strong="H5647"\w*, \w his|strong="H3605"\w* \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w his|strong="H3605"\w* \w son|strong="H1121"\w*’s \w son|strong="H1121"\w*, \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w time|strong="H6256"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* own land \w comes|strong="H7227"\w*. \w Then|strong="H1571"\w* \w many|strong="H7227"\w* \w nations|strong="H1471"\w* \w and|strong="H1121"\w* \w great|strong="H1419"\w* \w kings|strong="H4428"\w* \w will|strong="H1471"\w* \w make|strong="H5647"\w* \w him|strong="H5647"\w* \w their|strong="H3605"\w* bondservant. +\p +\v 8 “‘“‘\w It|strong="H5414"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w* \w that|strong="H1931"\w* \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w punish|strong="H6485"\w* \w the|strong="H5002"\w* \w nation|strong="H1471"\w* \w and|strong="H3068"\w* \w the|strong="H5002"\w* \w kingdom|strong="H4467"\w* \w which|strong="H1931"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w serve|strong="H5647"\w* \w the|strong="H5002"\w* \w same|strong="H1931"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w and|strong="H3068"\w* \w that|strong="H1931"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w put|strong="H5414"\w* \w their|strong="H3068"\w* \w neck|strong="H6677"\w* \w under|strong="H5921"\w* \w the|strong="H5002"\w* \w yoke|strong="H5923"\w* \w of|strong="H4428"\w* \w the|strong="H5002"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, ‘\w with|strong="H3068"\w* \w the|strong="H5002"\w* \w sword|strong="H2719"\w*, \w with|strong="H3068"\w* \w famine|strong="H7458"\w*, \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w pestilence|strong="H1698"\w*, \w until|strong="H5704"\w* \w I|strong="H5414"\w* \w have|strong="H1961"\w* \w consumed|strong="H8552"\w* \w them|strong="H5414"\w* \w by|strong="H3027"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w*. +\v 9 \w But|strong="H3808"\w* \w as|strong="H1992"\w* \w for|strong="H4428"\w* \w you|strong="H3808"\w*, don’t \w listen|strong="H8085"\w* \w to|strong="H8085"\w* \w your|strong="H8085"\w* \w prophets|strong="H5030"\w*, \w to|strong="H8085"\w* \w your|strong="H8085"\w* \w diviners|strong="H7080"\w*, \w to|strong="H8085"\w* \w your|strong="H8085"\w* \w dreams|strong="H2472"\w*, \w to|strong="H8085"\w* \w your|strong="H8085"\w* \w soothsayers|strong="H6049"\w*, \w or|strong="H3808"\w* \w to|strong="H8085"\w* \w your|strong="H8085"\w* \w sorcerers|strong="H3786"\w*, \w who|strong="H5030"\w* speak \w to|strong="H8085"\w* \w you|strong="H3808"\w*, saying, “\w You|strong="H3808"\w* \w shall|strong="H4428"\w* \w not|strong="H3808"\w* \w serve|strong="H5647"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon;” +\v 10 \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w prophesy|strong="H5012"\w* \w a|strong="H3068"\w* \w lie|strong="H8267"\w* \w to|strong="H5921"\w* \w you|strong="H3588"\w*, \w to|strong="H5921"\w* \w remove|strong="H7368"\w* \w you|strong="H3588"\w* \w far|strong="H7368"\w* \w from|strong="H5921"\w* \w your|strong="H5921"\w* land, \w so|strong="H4616"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* would \w drive|strong="H5080"\w* \w you|strong="H3588"\w* \w out|strong="H5080"\w*, \w and|strong="H5012"\w* \w you|strong="H3588"\w* would perish. +\v 11 \w But|strong="H3068"\w* \w the|strong="H5002"\w* \w nation|strong="H1471"\w* \w that|strong="H3068"\w* brings \w their|strong="H3068"\w* \w neck|strong="H6677"\w* \w under|strong="H5921"\w* \w the|strong="H5002"\w* \w yoke|strong="H5923"\w* \w of|strong="H4428"\w* \w the|strong="H5002"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w and|strong="H3068"\w* \w serves|strong="H5647"\w* \w him|strong="H5921"\w*, \w that|strong="H3068"\w* \w nation|strong="H1471"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* let \w remain|strong="H3427"\w* \w in|strong="H3427"\w* \w their|strong="H3068"\w* own land,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*; ‘\w and|strong="H3068"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* \w till|strong="H5647"\w* \w it|strong="H5921"\w* \w and|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w it|strong="H5921"\w*.’”’” +\p +\v 12 \w I|strong="H1697"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Zedekiah|strong="H6667"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* according \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w*, \w saying|strong="H1697"\w*, “Bring \w your|strong="H3605"\w* \w necks|strong="H6677"\w* \w under|strong="H5647"\w* \w the|strong="H3605"\w* \w yoke|strong="H5923"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w and|strong="H3063"\w* \w serve|strong="H5647"\w* \w him|strong="H5647"\w* \w and|strong="H3063"\w* \w his|strong="H3605"\w* \w people|strong="H5971"\w*, \w and|strong="H3063"\w* \w live|strong="H2421"\w*. +\v 13 \w Why|strong="H4100"\w* \w will|strong="H3068"\w* \w you|strong="H3808"\w* \w die|strong="H4191"\w*, \w you|strong="H3808"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w*, \w by|strong="H3068"\w* \w the|strong="H5647"\w* \w sword|strong="H2719"\w*, \w by|strong="H3068"\w* \w the|strong="H5647"\w* \w famine|strong="H7458"\w*, \w and|strong="H3068"\w* \w by|strong="H3068"\w* \w the|strong="H5647"\w* \w pestilence|strong="H1698"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w concerning|strong="H3068"\w* \w the|strong="H5647"\w* \w nation|strong="H1471"\w* \w that|strong="H5971"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w serve|strong="H5647"\w* \w the|strong="H5647"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon? +\v 14 Don’t \w listen|strong="H8085"\w* \w to|strong="H8085"\w* \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H8085"\w* \w prophets|strong="H5030"\w* \w who|strong="H5030"\w* \w speak|strong="H1697"\w* \w to|strong="H8085"\w* \w you|strong="H3588"\w*, \w saying|strong="H1697"\w*, ‘\w You|strong="H3588"\w* \w shall|strong="H4428"\w* \w not|strong="H3808"\w* \w serve|strong="H5647"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon;’ \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w prophesy|strong="H5012"\w* \w a|strong="H3068"\w* \w lie|strong="H8267"\w* \w to|strong="H8085"\w* \w you|strong="H3588"\w*. +\v 15 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w sent|strong="H7971"\w* \w them|strong="H1992"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w but|strong="H3588"\w* \w they|strong="H1992"\w* \w prophesy|strong="H5012"\w* \w falsely|strong="H8267"\w* \w in|strong="H3068"\w* \w my|strong="H3068"\w* \w name|strong="H8034"\w*; \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H3068"\w* \w drive|strong="H5080"\w* \w you|strong="H3588"\w* \w out|strong="H7971"\w*, \w and|strong="H3068"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H3068"\w* perish, \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w the|strong="H5002"\w* \w prophets|strong="H5030"\w* \w who|strong="H3068"\w* \w prophesy|strong="H5012"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w*.” +\p +\v 16 \w Also|strong="H3068"\w* \w I|strong="H3588"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H3068"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*, \w saying|strong="H1697"\w*, \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “Don’t \w listen|strong="H8085"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H1004"\w* \w your|strong="H3068"\w* \w prophets|strong="H5030"\w* \w who|strong="H3605"\w* \w prophesy|strong="H5012"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*, \w saying|strong="H1697"\w*, ‘\w Behold|strong="H2009"\w*, \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w will|strong="H3068"\w* \w now|strong="H6258"\w* \w shortly|strong="H4120"\w* \w be|strong="H1697"\w* \w brought|strong="H7725"\w* \w again|strong="H7725"\w* \w from|strong="H7725"\w* Babylon;’ \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w prophesy|strong="H5012"\w* \w a|strong="H3068"\w* \w lie|strong="H8267"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*. +\v 17 Don’t \w listen|strong="H8085"\w* \w to|strong="H1961"\w* \w them|strong="H1961"\w*. \w Serve|strong="H5647"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w and|strong="H4428"\w* \w live|strong="H2421"\w*. \w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w desolation|strong="H2723"\w*? +\v 18 \w But|strong="H3498"\w* \w if|strong="H3426"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w prophets|strong="H5030"\w*, \w and|strong="H3063"\w* \w if|strong="H3426"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w is|strong="H3068"\w* \w with|strong="H1004"\w* \w them|strong="H1992"\w*, \w let|strong="H4994"\w* \w them|strong="H1992"\w* \w now|strong="H4994"\w* \w make|strong="H6293"\w* \w intercession|strong="H6293"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H4428"\w* \w Armies|strong="H6635"\w*, \w that|strong="H3068"\w* \w the|strong="H3068"\w* \w vessels|strong="H3627"\w* \w which|strong="H3068"\w* \w are|strong="H1992"\w* \w left|strong="H3498"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w at|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, don’t \w go|strong="H3068"\w* \w to|strong="H3068"\w* Babylon. +\v 19 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* \w pillars|strong="H5982"\w*, \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*, \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* \w bases|strong="H4350"\w*, \w and|strong="H3068"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w vessels|strong="H3627"\w* \w that|strong="H3588"\w* \w are|strong="H3068"\w* \w left|strong="H3498"\w* \w in|strong="H5921"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w*, +\v 20 \w which|strong="H3063"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon didn’t \w take|strong="H3947"\w* \w when|strong="H1121"\w* \w he|strong="H3605"\w* \w carried|strong="H1540"\w* \w away|strong="H3947"\w* \w captive|strong="H1540"\w* \w Jeconiah|strong="H3204"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiakim|strong="H3079"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w from|strong="H1121"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H3389"\w* Babylon, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nobles|strong="H2715"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w and|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*— +\v 21 \w yes|strong="H3588"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H4428"\w* \w Armies|strong="H6635"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* \w vessels|strong="H3627"\w* \w that|strong="H3588"\w* \w are|strong="H3478"\w* \w left|strong="H3498"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3063"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w at|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*: +\v 22 ‘\w They|strong="H3117"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w carried|strong="H5927"\w* \w to|strong="H5704"\w* Babylon, \w and|strong="H3068"\w* \w there|strong="H8033"\w* \w they|strong="H3117"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w*, \w until|strong="H5704"\w* \w the|strong="H5002"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w visit|strong="H6485"\w* \w them|strong="H7725"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*; ‘\w then|strong="H1961"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w bring|strong="H7725"\w* \w them|strong="H7725"\w* \w up|strong="H5927"\w*, \w and|strong="H3068"\w* \w restore|strong="H7725"\w* \w them|strong="H7725"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*.’” +\c 28 +\p +\v 1 \w That|strong="H5971"\w* \w same|strong="H1931"\w* \w year|strong="H8141"\w*, \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w beginning|strong="H7225"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w reign|strong="H4467"\w* \w of|strong="H1121"\w* \w Zedekiah|strong="H6667"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w fourth|strong="H7243"\w* \w year|strong="H8141"\w*, \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w fifth|strong="H2549"\w* \w month|strong="H2320"\w*, \w Hananiah|strong="H2608"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Azzur|strong="H5809"\w*, \w the|strong="H3605"\w* \w prophet|strong="H5030"\w*, \w who|strong="H3605"\w* \w was|strong="H3068"\w* \w of|strong="H1121"\w* \w Gibeon|strong="H1391"\w*, spoke \w to|strong="H3068"\w* \w me|strong="H1961"\w* \w in|strong="H8141"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w presence|strong="H5869"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, saying, +\v 2 “\w Yahweh|strong="H3068"\w* \w of|strong="H4428"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*, ‘\w I|strong="H3541"\w* \w have|strong="H3068"\w* \w broken|strong="H7665"\w* \w the|strong="H3541"\w* \w yoke|strong="H5923"\w* \w of|strong="H4428"\w* \w the|strong="H3541"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon. +\v 3 \w Within|strong="H1004"\w* \w two|strong="H3947"\w* \w full|strong="H3117"\w* \w years|strong="H8141"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w bring|strong="H7725"\w* \w again|strong="H7725"\w* \w into|strong="H7725"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w that|strong="H3605"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w took|strong="H3947"\w* \w away|strong="H7725"\w* \w from|strong="H4480"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w* \w and|strong="H3068"\w* \w carried|strong="H3068"\w* \w to|strong="H7725"\w* Babylon. +\v 4 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w bring|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w* \w Jeconiah|strong="H3204"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiakim|strong="H3079"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w captives|strong="H1546"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w who|strong="H3605"\w* \w went|strong="H3063"\w* \w to|strong="H7725"\w* Babylon,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*; ‘\w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w break|strong="H7665"\w* \w the|strong="H3605"\w* \w yoke|strong="H5923"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon.’” +\p +\v 5 \w Then|strong="H5975"\w* \w the|strong="H3605"\w* \w prophet|strong="H5030"\w* \w Jeremiah|strong="H3414"\w* said \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w prophet|strong="H5030"\w* \w Hananiah|strong="H2608"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w presence|strong="H5869"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w*, \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w presence|strong="H5869"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w stood|strong="H5975"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, +\v 6 \w even|strong="H3651"\w* \w the|strong="H3605"\w* \w prophet|strong="H5030"\w* \w Jeremiah|strong="H3414"\w* \w said|strong="H1697"\w*, “Amen! \w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w do|strong="H6213"\w* \w so|strong="H3651"\w*. \w May|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w perform|strong="H6213"\w* \w your|strong="H3068"\w* \w words|strong="H1697"\w* \w which|strong="H3068"\w* \w you|strong="H3605"\w* \w have|strong="H3068"\w* \w prophesied|strong="H5012"\w*, \w to|strong="H7725"\w* \w bring|strong="H7725"\w* \w again|strong="H7725"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H6965"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H1697"\w* \w captives|strong="H1473"\w*, \w from|strong="H7725"\w* Babylon \w to|strong="H7725"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*. +\v 7 Nevertheless \w listen|strong="H8085"\w* \w now|strong="H4994"\w* \w to|strong="H1696"\w* \w this|strong="H2088"\w* \w word|strong="H1697"\w* \w that|strong="H5971"\w* \w I|strong="H1697"\w* \w speak|strong="H1696"\w* \w in|strong="H8085"\w* \w your|strong="H3605"\w* ears, \w and|strong="H5971"\w* \w in|strong="H8085"\w* \w the|strong="H3605"\w* ears \w of|strong="H1697"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*: +\v 8 \w The|strong="H6440"\w* \w prophets|strong="H5030"\w* \w who|strong="H5030"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w and|strong="H1419"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w of|strong="H6440"\w* \w old|strong="H5769"\w* \w prophesied|strong="H5012"\w* \w against|strong="H5921"\w* \w many|strong="H7227"\w* countries, \w and|strong="H1419"\w* \w against|strong="H5921"\w* \w great|strong="H1419"\w* \w kingdoms|strong="H4467"\w*, \w of|strong="H6440"\w* \w war|strong="H4421"\w*, \w of|strong="H6440"\w* \w evil|strong="H7451"\w*, \w and|strong="H1419"\w* \w of|strong="H6440"\w* \w pestilence|strong="H1698"\w*. +\v 9 \w As|strong="H1697"\w* \w for|strong="H7971"\w* \w the|strong="H3068"\w* \w prophet|strong="H5030"\w* \w who|strong="H3068"\w* \w prophesies|strong="H5012"\w* \w of|strong="H3068"\w* \w peace|strong="H7965"\w*, \w when|strong="H7971"\w* \w the|strong="H3068"\w* \w word|strong="H1697"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w prophet|strong="H5030"\w* happens, \w then|strong="H7971"\w* \w the|strong="H3068"\w* \w prophet|strong="H5030"\w* \w will|strong="H3068"\w* \w be|strong="H1697"\w* \w known|strong="H3045"\w*, \w that|strong="H3045"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* truly \w sent|strong="H7971"\w* \w him|strong="H7971"\w*.” +\p +\v 10 \w Then|strong="H3947"\w* \w Hananiah|strong="H2608"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w* \w took|strong="H3947"\w* \w the|strong="H5921"\w* bar \w from|strong="H5921"\w* \w off|strong="H5921"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w* \w Jeremiah|strong="H3414"\w*’s \w neck|strong="H6677"\w*, \w and|strong="H5030"\w* \w broke|strong="H7665"\w* \w it|strong="H5921"\w*. +\v 11 \w Hananiah|strong="H2608"\w* spoke \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w presence|strong="H5869"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, saying, “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Even|strong="H5750"\w* \w so|strong="H3541"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w break|strong="H7665"\w* \w the|strong="H3605"\w* \w yoke|strong="H5923"\w* \w of|strong="H4428"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w from|strong="H5921"\w* \w off|strong="H5921"\w* \w the|strong="H3605"\w* \w neck|strong="H6677"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w within|strong="H5921"\w* two \w full|strong="H3117"\w* \w years|strong="H8141"\w*.’” \w Then|strong="H4428"\w* \w the|strong="H3605"\w* \w prophet|strong="H5030"\w* \w Jeremiah|strong="H3414"\w* \w went|strong="H3212"\w* \w his|strong="H3605"\w* \w way|strong="H1870"\w*. +\p +\v 12 \w Then|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w*, \w after|strong="H5921"\w* \w Hananiah|strong="H2608"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w* \w had|strong="H3068"\w* \w broken|strong="H7665"\w* \w the|strong="H5921"\w* bar \w from|strong="H5921"\w* \w off|strong="H5921"\w* \w the|strong="H5921"\w* \w neck|strong="H6677"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w* \w Jeremiah|strong="H3414"\w*, \w saying|strong="H1697"\w*, +\v 13 “\w Go|strong="H1980"\w*, \w and|strong="H1980"\w* tell \w Hananiah|strong="H2608"\w*, saying, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w You|strong="H6213"\w* \w have|strong="H3068"\w* \w broken|strong="H7665"\w* \w the|strong="H3541"\w* \w bars|strong="H4133"\w* \w of|strong="H3068"\w* \w wood|strong="H6086"\w*, \w but|strong="H3068"\w* \w you|strong="H6213"\w* \w have|strong="H3068"\w* \w made|strong="H6213"\w* \w in|strong="H1980"\w* \w their|strong="H3068"\w* \w place|strong="H8478"\w* \w bars|strong="H4133"\w* \w of|strong="H3068"\w* \w iron|strong="H1270"\w*.” +\v 14 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H4428"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*, “\w I|strong="H3588"\w* \w have|strong="H3068"\w* \w put|strong="H5414"\w* \w a|strong="H3068"\w* \w yoke|strong="H5923"\w* \w of|strong="H4428"\w* \w iron|strong="H1270"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w neck|strong="H6677"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w these|strong="H3605"\w* \w nations|strong="H1471"\w*, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w may|strong="H3068"\w* \w serve|strong="H5647"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon; \w and|strong="H3478"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w serve|strong="H5647"\w* \w him|strong="H5414"\w*. \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w also|strong="H1571"\w* \w given|strong="H5414"\w* \w him|strong="H5414"\w* \w the|strong="H3605"\w* \w animals|strong="H2416"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*.”’” +\p +\v 15 \w Then|strong="H2088"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w* \w Jeremiah|strong="H3414"\w* \w said|strong="H8085"\w* \w to|strong="H3068"\w* \w Hananiah|strong="H2608"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w*, “\w Listen|strong="H8085"\w*, \w Hananiah|strong="H2608"\w*! \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w sent|strong="H7971"\w* \w you|strong="H7971"\w*, \w but|strong="H3808"\w* \w you|strong="H7971"\w* \w make|strong="H8085"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* trust \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w lie|strong="H8267"\w*. +\v 16 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w Behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w you|strong="H3588"\w* \w away|strong="H7971"\w* \w from|strong="H6440"\w* \w off|strong="H5921"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* earth. \w This|strong="H3651"\w* \w year|strong="H8141"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w die|strong="H4191"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w rebellion|strong="H5627"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*.’” +\p +\v 17 \w So|strong="H4191"\w* \w Hananiah|strong="H2608"\w* \w the|strong="H4191"\w* \w prophet|strong="H5030"\w* \w died|strong="H4191"\w* \w the|strong="H4191"\w* \w same|strong="H1931"\w* \w year|strong="H8141"\w* \w in|strong="H8141"\w* \w the|strong="H4191"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w*. +\c 29 +\p +\v 1 \w Now|strong="H7971"\w* \w these|strong="H3605"\w* \w are|strong="H5971"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w letter|strong="H5612"\w* \w that|strong="H5971"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H3605"\w* \w prophet|strong="H5030"\w* \w sent|strong="H7971"\w* \w from|strong="H7971"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H7971"\w* \w the|strong="H3605"\w* \w residue|strong="H3499"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w captivity|strong="H1473"\w*, \w and|strong="H7971"\w* \w to|strong="H7971"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w*, \w to|strong="H7971"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w*, \w and|strong="H7971"\w* \w to|strong="H7971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w whom|strong="H5971"\w* \w Nebuchadnezzar|strong="H5019"\w* \w had|strong="H3548"\w* \w carried|strong="H1540"\w* \w away|strong="H7971"\w* \w captive|strong="H1540"\w* \w from|strong="H7971"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H7971"\w* Babylon, +\v 2 (\w after|strong="H3318"\w* \w Jeconiah|strong="H3204"\w* \w the|strong="H3318"\w* \w king|strong="H4428"\w*, \w the|strong="H3318"\w* \w queen|strong="H1377"\w* \w mother|strong="H1377"\w*, \w the|strong="H3318"\w* \w eunuchs|strong="H5631"\w*, \w the|strong="H3318"\w* \w princes|strong="H8269"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w*, \w the|strong="H3318"\w* \w craftsmen|strong="H2796"\w*, \w and|strong="H3063"\w* \w the|strong="H3318"\w* \w smiths|strong="H4525"\w* \w had|strong="H4428"\w* \w departed|strong="H3318"\w* \w from|strong="H3318"\w* \w Jerusalem|strong="H3389"\w*), +\v 3 \w by|strong="H3027"\w* \w the|strong="H7971"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* Elasah \w the|strong="H7971"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shaphan|strong="H8227"\w* \w and|strong="H1121"\w* \w Gemariah|strong="H1587"\w* \w the|strong="H7971"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hilkiah|strong="H2518"\w*, (whom \w Zedekiah|strong="H6667"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w sent|strong="H7971"\w* \w to|strong="H7971"\w* Babylon \w to|strong="H7971"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon). \w It|strong="H7971"\w* said: +\pi1 +\v 4 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w captives|strong="H1473"\w* whom \w I|strong="H3541"\w* \w have|strong="H3068"\w* caused \w to|strong="H3478"\w* \w be|strong="H3068"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w captive|strong="H1540"\w* \w from|strong="H3478"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H3478"\w* Babylon: +\v 5 “\w Build|strong="H1129"\w* \w houses|strong="H1004"\w* \w and|strong="H1004"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w them|strong="H3427"\w*. \w Plant|strong="H5193"\w* \w gardens|strong="H1593"\w* \w and|strong="H1004"\w* eat \w their|strong="H3427"\w* \w fruit|strong="H6529"\w*. +\v 6 \w Take|strong="H3947"\w* wives \w and|strong="H1121"\w* \w father|strong="H3205"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w daughters|strong="H1323"\w*. \w Take|strong="H3947"\w* wives \w for|strong="H1121"\w* \w your|strong="H5414"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w give|strong="H5414"\w* \w your|strong="H5414"\w* \w daughters|strong="H1323"\w* \w to|strong="H5414"\w* husbands, \w that|strong="H5414"\w* \w they|strong="H8033"\w* \w may|strong="H1121"\w* \w bear|strong="H3205"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w daughters|strong="H1323"\w*. \w Multiply|strong="H7235"\w* \w there|strong="H8033"\w*, \w and|strong="H1121"\w* don’t \w be|strong="H1121"\w* \w diminished|strong="H4591"\w*. +\v 7 \w Seek|strong="H1875"\w* \w the|strong="H3588"\w* \w peace|strong="H7965"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w city|strong="H5892"\w* \w where|strong="H8033"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w caused|strong="H1961"\w* \w you|strong="H3588"\w* \w to|strong="H3068"\w* \w be|strong="H1961"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w captive|strong="H1540"\w*, \w and|strong="H3068"\w* \w pray|strong="H6419"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w for|strong="H3588"\w* \w it|strong="H3588"\w*; \w for|strong="H3588"\w* \w in|strong="H3068"\w* \w its|strong="H3588"\w* \w peace|strong="H7965"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w have|strong="H1961"\w* \w peace|strong="H7965"\w*.” +\v 8 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H8085"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*: “Don’t let \w your|strong="H3068"\w* \w prophets|strong="H5030"\w* \w who|strong="H3068"\w* \w are|strong="H3478"\w* \w among|strong="H7130"\w* \w you|strong="H3588"\w* \w and|strong="H3478"\w* \w your|strong="H3068"\w* \w diviners|strong="H7080"\w* \w deceive|strong="H5377"\w* \w you|strong="H3588"\w*. Don’t \w listen|strong="H8085"\w* \w to|strong="H3478"\w* \w your|strong="H3068"\w* \w dreams|strong="H2472"\w* \w which|strong="H3068"\w* \w you|strong="H3588"\w* cause \w to|strong="H3478"\w* \w be|strong="H3068"\w* \w dreamed|strong="H2492"\w*. +\v 9 \w For|strong="H3588"\w* \w they|strong="H1992"\w* \w prophesy|strong="H5012"\w* \w falsely|strong="H8267"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w* \w in|strong="H3068"\w* \w my|strong="H3068"\w* \w name|strong="H8034"\w*. \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w sent|strong="H7971"\w* \w them|strong="H1992"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 10 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w After|strong="H5921"\w* \w seventy|strong="H7657"\w* \w years|strong="H8141"\w* \w are|strong="H1697"\w* \w accomplished|strong="H4390"\w* \w for|strong="H3588"\w* Babylon, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w visit|strong="H6485"\w* \w you|strong="H3588"\w* \w and|strong="H6965"\w* \w perform|strong="H6965"\w* \w my|strong="H3068"\w* \w good|strong="H2896"\w* \w word|strong="H1697"\w* \w toward|strong="H5921"\w* \w you|strong="H3588"\w*, \w in|strong="H8141"\w* causing \w you|strong="H3588"\w* \w to|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*. +\v 11 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w the|strong="H5002"\w* \w thoughts|strong="H4284"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w think|strong="H2803"\w* \w toward|strong="H5921"\w* \w you|strong="H3588"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w thoughts|strong="H4284"\w* \w of|strong="H3068"\w* \w peace|strong="H7965"\w*, \w and|strong="H3068"\w* \w not|strong="H3808"\w* \w of|strong="H3068"\w* \w evil|strong="H7451"\w*, \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w you|strong="H3588"\w* \w hope|strong="H8615"\w* \w and|strong="H3068"\w* \w a|strong="H3068"\w* future. +\v 12 \w You|strong="H7121"\w* \w shall|strong="H8085"\w* \w call|strong="H7121"\w* \w on|strong="H1980"\w* \w me|strong="H7121"\w*, \w and|strong="H1980"\w* \w you|strong="H7121"\w* \w shall|strong="H8085"\w* \w go|strong="H1980"\w* \w and|strong="H1980"\w* \w pray|strong="H6419"\w* \w to|strong="H1980"\w* \w me|strong="H7121"\w*, \w and|strong="H1980"\w* \w I|strong="H8085"\w* \w will|strong="H8085"\w* \w listen|strong="H8085"\w* \w to|strong="H1980"\w* \w you|strong="H7121"\w*. +\v 13 \w You|strong="H3588"\w* \w shall|strong="H3824"\w* \w seek|strong="H1245"\w* \w me|strong="H4672"\w* \w and|strong="H3824"\w* \w find|strong="H4672"\w* \w me|strong="H4672"\w*, \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w search|strong="H1875"\w* \w for|strong="H3588"\w* \w me|strong="H4672"\w* \w with|strong="H3605"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w heart|strong="H3824"\w*. +\v 14 \w I|strong="H4672"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w found|strong="H4672"\w* \w by|strong="H3068"\w* \w you|strong="H3605"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w and|strong="H3068"\w* \w I|strong="H4672"\w* \w will|strong="H3068"\w* \w turn|strong="H7725"\w* \w again|strong="H7725"\w* \w your|strong="H3068"\w* \w captivity|strong="H7622"\w*, \w and|strong="H3068"\w* \w I|strong="H4672"\w* \w will|strong="H3068"\w* \w gather|strong="H6908"\w* \w you|strong="H3605"\w* \w from|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*, \w and|strong="H3068"\w* \w from|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w places|strong="H4725"\w* \w where|strong="H8033"\w* \w I|strong="H4672"\w* \w have|strong="H3068"\w* \w driven|strong="H5080"\w* \w you|strong="H3605"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. “\w I|strong="H4672"\w* \w will|strong="H3068"\w* \w bring|strong="H7725"\w* \w you|strong="H3605"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w place|strong="H4725"\w* \w from|strong="H7725"\w* \w where|strong="H8033"\w* \w I|strong="H4672"\w* caused \w you|strong="H3605"\w* \w to|strong="H7725"\w* \w be|strong="H3068"\w* \w carried|strong="H1540"\w* \w away|strong="H7725"\w* \w captive|strong="H1540"\w*.” +\pi1 +\v 15 \w Because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* said, “\w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w raised|strong="H6965"\w* \w us|strong="H3588"\w* \w up|strong="H6965"\w* \w prophets|strong="H5030"\w* \w in|strong="H3068"\w* Babylon,” +\v 16 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w concerning|strong="H3068"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w who|strong="H3605"\w* \w sits|strong="H3427"\w* \w on|strong="H3427"\w* \w David|strong="H1732"\w*’s \w throne|strong="H3678"\w*, \w and|strong="H3068"\w* \w concerning|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w*, \w your|strong="H3068"\w* brothers \w who|strong="H3605"\w* haven’t \w gone|strong="H3318"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w* \w into|strong="H3318"\w* \w captivity|strong="H1473"\w*, +\v 17 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w on|strong="H3068"\w* \w them|strong="H5414"\w* \w the|strong="H5414"\w* \w sword|strong="H2719"\w*, \w the|strong="H5414"\w* \w famine|strong="H7458"\w*, \w and|strong="H3068"\w* \w the|strong="H5414"\w* \w pestilence|strong="H1698"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w make|strong="H5414"\w* \w them|strong="H5414"\w* \w like|strong="H3808"\w* rotten \w figs|strong="H8384"\w* \w that|strong="H3068"\w* \w can|strong="H3808"\w*’t \w be|strong="H3808"\w* eaten, \w they|strong="H3068"\w* \w are|strong="H3068"\w* \w so|strong="H3541"\w* \w bad|strong="H7455"\w*. +\v 18 \w I|strong="H5414"\w* \w will|strong="H1471"\w* \w pursue|strong="H7291"\w* \w after|strong="H7291"\w* \w them|strong="H5414"\w* \w with|strong="H3605"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w with|strong="H3605"\w* \w the|strong="H3605"\w* \w famine|strong="H7458"\w*, \w and|strong="H2719"\w* \w with|strong="H3605"\w* \w the|strong="H3605"\w* \w pestilence|strong="H1698"\w*, \w and|strong="H2719"\w* \w will|strong="H1471"\w* \w deliver|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H5414"\w* \w be|strong="H1471"\w* tossed back \w and|strong="H2719"\w* \w forth|strong="H5414"\w* \w among|strong="H2781"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* earth, \w to|strong="H5414"\w* \w be|strong="H1471"\w* \w an|strong="H5414"\w* \w object|strong="H8047"\w* \w of|strong="H3605"\w* \w horror|strong="H8047"\w*, \w an|strong="H5414"\w* \w astonishment|strong="H8047"\w*, \w a|strong="H3068"\w* \w hissing|strong="H8322"\w*, \w and|strong="H2719"\w* \w a|strong="H3068"\w* \w reproach|strong="H2781"\w* \w among|strong="H2781"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w where|strong="H8033"\w* \w I|strong="H5414"\w* \w have|strong="H1471"\w* \w driven|strong="H5080"\w* \w them|strong="H5414"\w*, +\v 19 \w because|strong="H8478"\w* \w they|strong="H3068"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w listened|strong="H8085"\w* \w to|strong="H3068"\w* \w my|strong="H8085"\w* \w words|strong="H1697"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w with|strong="H3068"\w* \w which|strong="H3068"\w* \w I|strong="H1697"\w* \w sent|strong="H7971"\w* \w to|strong="H3068"\w* \w them|strong="H7971"\w* \w my|strong="H8085"\w* \w servants|strong="H5650"\w* \w the|strong="H5002"\w* \w prophets|strong="H5030"\w*, \w rising|strong="H7925"\w* \w up|strong="H7925"\w* \w early|strong="H7925"\w* \w and|strong="H3068"\w* \w sending|strong="H7971"\w* \w them|strong="H7971"\w*; \w but|strong="H3808"\w* \w you|strong="H7971"\w* \w would|strong="H3068"\w* \w not|strong="H3808"\w* \w hear|strong="H8085"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\pi1 +\v 20 \w Hear|strong="H8085"\w* \w therefore|strong="H7971"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* \w captives|strong="H1473"\w* whom \w I|strong="H1697"\w* \w have|strong="H3068"\w* \w sent|strong="H7971"\w* \w away|strong="H7971"\w* \w from|strong="H8085"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H3068"\w* Babylon. +\v 21 \w Yahweh|strong="H3068"\w* \w of|strong="H1121"\w* \w Armies|strong="H6635"\w*, \w the|strong="H5414"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w* \w concerning|strong="H3068"\w* Ahab \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kolaiah|strong="H6964"\w*, \w and|strong="H1121"\w* \w concerning|strong="H3068"\w* \w Zedekiah|strong="H6667"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Maaseiah|strong="H4641"\w*, \w who|strong="H3068"\w* \w prophesy|strong="H5012"\w* \w a|strong="H3068"\w* \w lie|strong="H8267"\w* \w to|strong="H3478"\w* \w you|strong="H5414"\w* \w in|strong="H3478"\w* \w my|strong="H5414"\w* \w name|strong="H8034"\w*: “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w deliver|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon; \w and|strong="H1121"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w kill|strong="H5221"\w* \w them|strong="H5414"\w* \w before|strong="H5869"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w*. +\v 22 \w A|strong="H3068"\w* \w curse|strong="H7045"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w taken|strong="H3947"\w* \w up|strong="H7760"\w* \w about|strong="H4428"\w* \w them|strong="H1992"\w* \w by|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w captives|strong="H1546"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w who|strong="H3605"\w* \w are|strong="H1992"\w* \w in|strong="H3068"\w* Babylon, saying, ‘\w Yahweh|strong="H3068"\w* \w make|strong="H7760"\w* \w you|strong="H3605"\w* \w like|strong="H1992"\w* \w Zedekiah|strong="H6667"\w* \w and|strong="H3063"\w* \w like|strong="H1992"\w* Ahab, \w whom|strong="H1992"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w roasted|strong="H7033"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* fire;’ +\v 23 \w because|strong="H3282"\w* \w they|strong="H3068"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* foolish \w things|strong="H1697"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w have|strong="H3068"\w* \w committed|strong="H6213"\w* \w adultery|strong="H5003"\w* \w with|strong="H3068"\w* \w their|strong="H3068"\w* \w neighbors|strong="H7453"\w*’ wives, \w and|strong="H3478"\w* \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w words|strong="H1697"\w* \w in|strong="H3478"\w* \w my|strong="H3068"\w* \w name|strong="H8034"\w* \w falsely|strong="H8267"\w*, \w which|strong="H3068"\w* \w I|strong="H1697"\w* didn’t \w command|strong="H6680"\w* \w them|strong="H6213"\w*. \w I|strong="H1697"\w* \w am|strong="H3068"\w* \w he|strong="H6213"\w* \w who|strong="H3068"\w* \w knows|strong="H3045"\w*, \w and|strong="H3478"\w* \w am|strong="H3068"\w* \w witness|strong="H5707"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 24 Concerning \w Shemaiah|strong="H8098"\w* \w the|strong="H8098"\w* \w Nehelamite|strong="H5161"\w* you shall speak, saying, +\v 25 “\w Yahweh|strong="H3068"\w* \w of|strong="H1121"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*, ‘\w Because|strong="H3282"\w* \w you|strong="H3605"\w* \w have|strong="H3068"\w* \w sent|strong="H7971"\w* \w letters|strong="H5612"\w* \w in|strong="H3478"\w* \w your|strong="H3068"\w* \w own|strong="H3548"\w* \w name|strong="H8034"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w are|strong="H5971"\w* \w at|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w Zephaniah|strong="H6846"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Maaseiah|strong="H4641"\w*, \w the|strong="H3605"\w* \w priest|strong="H3548"\w*, \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w*, saying, +\v 26 “\w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w made|strong="H5414"\w* \w you|strong="H5414"\w* \w priest|strong="H3548"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w place|strong="H8478"\w* \w of|strong="H1004"\w* \w Jehoiada|strong="H3077"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w*, \w that|strong="H3605"\w* \w there|strong="H1961"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w officers|strong="H6496"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w for|strong="H8478"\w* \w every|strong="H3605"\w* \w man|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3068"\w* crazy \w and|strong="H3068"\w* \w makes|strong="H5414"\w* \w himself|strong="H3068"\w* \w a|strong="H3068"\w* \w prophet|strong="H5012"\w*, \w that|strong="H3605"\w* \w you|strong="H5414"\w* \w should|strong="H3068"\w* \w put|strong="H5414"\w* \w him|strong="H5414"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w stocks|strong="H4115"\w* \w and|strong="H3068"\w* \w in|strong="H3068"\w* shackles. +\v 27 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w*, \w why|strong="H4100"\w* \w have|strong="H3808"\w* \w you|strong="H3808"\w* \w not|strong="H3808"\w* \w rebuked|strong="H1605"\w* \w Jeremiah|strong="H3414"\w* \w of|strong="H3414"\w* \w Anathoth|strong="H6069"\w*, \w who|strong="H4100"\w* makes \w himself|strong="H3808"\w* \w a|strong="H3068"\w* \w prophet|strong="H5012"\w* \w to|strong="H3808"\w* \w you|strong="H3808"\w*, +\v 28 \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w has|strong="H3588"\w* \w sent|strong="H7971"\w* \w to|strong="H7971"\w* \w us|strong="H5921"\w* \w in|strong="H3427"\w* Babylon, saying, \w The|strong="H5921"\w* captivity \w is|strong="H1931"\w* \w long|strong="H7971"\w*. \w Build|strong="H1129"\w* \w houses|strong="H1004"\w*, \w and|strong="H7971"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w them|strong="H5921"\w*. \w Plant|strong="H5193"\w* \w gardens|strong="H1593"\w*, \w and|strong="H7971"\w* eat \w their|strong="H5921"\w* \w fruit|strong="H6529"\w*?”’” +\p +\v 29 \w Zephaniah|strong="H6846"\w* \w the|strong="H7121"\w* \w priest|strong="H3548"\w* \w read|strong="H7121"\w* \w this|strong="H2088"\w* \w letter|strong="H5612"\w* \w in|strong="H7121"\w* \w the|strong="H7121"\w* hearing \w of|strong="H5612"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H7121"\w* \w prophet|strong="H5030"\w*. +\v 30 \w Then|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w*, \w saying|strong="H1697"\w*, +\v 31 “\w Send|strong="H7971"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w captives|strong="H1473"\w*, saying, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w concerning|strong="H5921"\w* \w Shemaiah|strong="H8098"\w* \w the|strong="H3605"\w* \w Nehelamite|strong="H5161"\w*: “\w Because|strong="H5921"\w* \w Shemaiah|strong="H8098"\w* \w has|strong="H3068"\w* \w prophesied|strong="H5012"\w* \w to|strong="H3068"\w* \w you|strong="H3605"\w*, \w and|strong="H3068"\w* \w I|strong="H3541"\w* didn’t \w send|strong="H7971"\w* \w him|strong="H5921"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w has|strong="H3068"\w* caused \w you|strong="H3605"\w* \w to|strong="H3068"\w* trust \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w lie|strong="H8267"\w*,” +\v 32 \w therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H5002"\w*, “\w Behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w punish|strong="H6485"\w* \w Shemaiah|strong="H8098"\w* \w the|strong="H5002"\w* \w Nehelamite|strong="H5161"\w* \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w offspring|strong="H2233"\w*. \w He|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* \w man|strong="H2896"\w* \w to|strong="H1696"\w* \w dwell|strong="H3427"\w* \w among|strong="H8432"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*. \w He|strong="H3588"\w* won’t \w see|strong="H7200"\w* \w the|strong="H5002"\w* \w good|strong="H2896"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w to|strong="H1696"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w rebellion|strong="H5627"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*.”’” +\c 30 +\p +\v 1 \w The|strong="H3068"\w* \w word|strong="H1697"\w* \w that|strong="H3068"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w* \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*, ‘\w Write|strong="H3789"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w that|strong="H3605"\w* \w I|strong="H3541"\w* \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3605"\w* \w in|strong="H3478"\w* \w a|strong="H3068"\w* \w book|strong="H5612"\w*. +\v 3 \w For|strong="H3588"\w*, \w behold|strong="H2009"\w*, \w the|strong="H5002"\w* \w days|strong="H3117"\w* \w come|strong="H7725"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, ‘\w that|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w reverse|strong="H7725"\w* \w the|strong="H5002"\w* \w captivity|strong="H7622"\w* \w of|strong="H3068"\w* \w my|strong="H5414"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w Judah|strong="H3063"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. ‘\w I|strong="H3588"\w* \w will|strong="H3068"\w* \w cause|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H5002"\w* land \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w gave|strong="H5414"\w* \w to|strong="H7725"\w* \w their|strong="H3068"\w* fathers, \w and|strong="H3063"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w possess|strong="H3423"\w* \w it|strong="H5414"\w*.’” +\p +\v 4 \w These|strong="H1696"\w* \w are|strong="H3478"\w* \w the|strong="H3068"\w* \w words|strong="H1697"\w* \w that|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w concerning|strong="H1697"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w concerning|strong="H1697"\w* \w Judah|strong="H3063"\w*. +\v 5 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w We|strong="H3588"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w a|strong="H3068"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w trembling|strong="H2731"\w*; +\q2 \w a|strong="H3068"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w fear|strong="H6343"\w*, \w and|strong="H3068"\w* \w not|strong="H3588"\w* \w of|strong="H3068"\w* \w peace|strong="H7965"\w*. +\q1 +\v 6 \w Ask|strong="H7592"\w* \w now|strong="H4994"\w*, \w and|strong="H3027"\w* \w see|strong="H7200"\w* \w whether|strong="H7200"\w* \w a|strong="H3068"\w* \w man|strong="H1397"\w* travails \w with|strong="H5921"\w* \w child|strong="H3205"\w*. +\q2 \w Why|strong="H4069"\w* \w do|strong="H4994"\w* \w I|strong="H5921"\w* \w see|strong="H7200"\w* \w every|strong="H3605"\w* \w man|strong="H1397"\w* \w with|strong="H5921"\w* \w his|strong="H3605"\w* \w hands|strong="H3027"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w waist|strong="H2504"\w*, \w as|strong="H6440"\w* \w a|strong="H3068"\w* \w woman|strong="H3205"\w* \w in|strong="H5921"\w* \w travail|strong="H3205"\w*, +\q2 \w and|strong="H3027"\w* \w all|strong="H3605"\w* \w faces|strong="H6440"\w* \w are|strong="H3027"\w* \w turned|strong="H2015"\w* \w pale|strong="H3420"\w*? +\q1 +\v 7 \w Alas|strong="H1945"\w*, \w for|strong="H3588"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w* \w is|strong="H1931"\w* \w great|strong="H1419"\w*, \w so|strong="H4480"\w* \w that|strong="H3588"\w* \w none|strong="H4480"\w* \w is|strong="H1931"\w* \w like|strong="H3644"\w* \w it|strong="H1931"\w*! +\q2 \w It|strong="H1931"\w* \w is|strong="H1931"\w* \w even|strong="H3588"\w* \w the|strong="H3588"\w* \w time|strong="H6256"\w* \w of|strong="H3117"\w* \w Jacob|strong="H3290"\w*’s \w trouble|strong="H6869"\w*; +\q2 \w but|strong="H3588"\w* \w he|strong="H1931"\w* \w will|strong="H3290"\w* \w be|strong="H3117"\w* \w saved|strong="H3467"\w* \w out|strong="H4480"\w* \w of|strong="H3117"\w* \w it|strong="H1931"\w*. +\q1 +\v 8 \w It|strong="H1931"\w* \w will|strong="H3068"\w* \w come|strong="H1961"\w* \w to|strong="H3068"\w* \w pass|strong="H1961"\w* \w in|strong="H5921"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w break|strong="H7665"\w* \w his|strong="H3068"\w* \w yoke|strong="H5923"\w* \w from|strong="H5921"\w* \w off|strong="H5921"\w* \w your|strong="H3068"\w* \w neck|strong="H6677"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w burst|strong="H5423"\w* \w your|strong="H3068"\w* \w bonds|strong="H4147"\w*. +\q2 \w Strangers|strong="H2114"\w* \w will|strong="H3068"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w make|strong="H5647"\w* \w them|strong="H5921"\w* \w their|strong="H3068"\w* bondservants; +\q1 +\v 9 \w but|strong="H1992"\w* \w they|strong="H1992"\w* \w will|strong="H3068"\w* \w serve|strong="H5647"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 \w and|strong="H6965"\w* \w David|strong="H1732"\w* \w their|strong="H3068"\w* \w king|strong="H4428"\w*, +\q2 \w whom|strong="H1992"\w* \w I|strong="H6965"\w* \w will|strong="H3068"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w to|strong="H3068"\w* \w them|strong="H1992"\w*. +\q1 +\v 10 \w Therefore|strong="H3588"\w* don’t \w be|strong="H3068"\w* \w afraid|strong="H3372"\w*, \w O|strong="H3068"\w* \w Jacob|strong="H3290"\w* \w my|strong="H3068"\w* \w servant|strong="H5650"\w*, \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q2 Don’t \w be|strong="H3068"\w* \w dismayed|strong="H2865"\w*, \w Israel|strong="H3478"\w*. +\q1 \w For|strong="H3588"\w*, \w behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w save|strong="H3467"\w* \w you|strong="H3588"\w* \w from|strong="H7725"\w* \w afar|strong="H7350"\w*, +\q2 \w and|strong="H3478"\w* \w save|strong="H3467"\w* \w your|strong="H3068"\w* \w offspring|strong="H2233"\w* \w from|strong="H7725"\w* \w the|strong="H5002"\w* land \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w captivity|strong="H7628"\w*. +\q1 \w Jacob|strong="H3290"\w* \w will|strong="H3068"\w* \w return|strong="H7725"\w*, +\q2 \w and|strong="H3478"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w quiet|strong="H8252"\w* \w and|strong="H3478"\w* \w at|strong="H3478"\w* \w ease|strong="H7599"\w*. +\q2 \w No|strong="H3372"\w* \w one|strong="H3588"\w* \w will|strong="H3068"\w* \w make|strong="H2729"\w* \w him|strong="H7725"\w* \w afraid|strong="H3372"\w*. +\q1 +\v 11 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w*, \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, \w to|strong="H3068"\w* \w save|strong="H3467"\w* \w you|strong="H3588"\w*; +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w full|strong="H3605"\w* \w end|strong="H3617"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w where|strong="H8033"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w scattered|strong="H6327"\w* \w you|strong="H3588"\w*, +\q2 \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w full|strong="H3605"\w* \w end|strong="H3617"\w* \w of|strong="H3068"\w* \w you|strong="H3588"\w*; +\q1 \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w correct|strong="H3256"\w* \w you|strong="H3588"\w* \w in|strong="H3068"\w* \w measure|strong="H4941"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w in|strong="H3068"\w* \w no|strong="H3808"\w* \w way|strong="H4941"\w* \w leave|strong="H5352"\w* \w you|strong="H3588"\w* \w unpunished|strong="H5352"\w*.” +\p +\v 12 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, +\q1 “\w Your|strong="H3068"\w* \w hurt|strong="H7667"\w* \w is|strong="H3068"\w* \w incurable|strong="H2470"\w*. +\q2 \w Your|strong="H3068"\w* \w wound|strong="H4347"\w* \w is|strong="H3068"\w* \w grievous|strong="H2470"\w*. +\q1 +\v 13 \w There|strong="H1779"\w* \w is|strong="H1779"\w* no one \w to|strong="H8585"\w* \w plead|strong="H1777"\w* \w your|strong="H1777"\w* \w cause|strong="H1779"\w*, +\q2 that you may be bound \w up|strong="H4205"\w*. +\q2 You have no \w healing|strong="H8585"\w* \w medicines|strong="H7499"\w*. +\q1 +\v 14 \w All|strong="H3605"\w* \w your|strong="H3605"\w* lovers \w have|strong="H5771"\w* \w forgotten|strong="H7911"\w* \w you|strong="H3588"\w*. +\q2 \w They|strong="H3588"\w* don’t \w seek|strong="H1875"\w* \w you|strong="H3588"\w*. +\q1 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H5771"\w* \w wounded|strong="H5221"\w* \w you|strong="H3588"\w* \w with|strong="H5921"\w* \w the|strong="H3605"\w* \w wound|strong="H4347"\w* \w of|strong="H7230"\w* \w an|strong="H5221"\w* enemy, +\q2 \w with|strong="H5921"\w* \w the|strong="H3605"\w* \w chastisement|strong="H4148"\w* \w of|strong="H7230"\w* \w a|strong="H3068"\w* cruel \w one|strong="H3605"\w*, +\q1 \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w greatness|strong="H7230"\w* \w of|strong="H7230"\w* \w your|strong="H3605"\w* \w iniquity|strong="H5771"\w*, +\q2 \w because|strong="H3588"\w* \w your|strong="H3605"\w* \w sins|strong="H2403"\w* \w were|strong="H2403"\w* \w increased|strong="H6105"\w*. +\q1 +\v 15 \w Why|strong="H4100"\w* \w do|strong="H6213"\w* \w you|strong="H5921"\w* \w cry|strong="H2199"\w* \w over|strong="H5921"\w* \w your|strong="H5921"\w* \w injury|strong="H7667"\w*? +\q2 \w Your|strong="H5921"\w* \w pain|strong="H4341"\w* \w is|strong="H4100"\w* incurable. +\q1 \w For|strong="H5921"\w* \w the|strong="H5921"\w* \w greatness|strong="H7230"\w* \w of|strong="H7230"\w* \w your|strong="H5921"\w* \w iniquity|strong="H5771"\w*, +\q2 \w because|strong="H5921"\w* \w your|strong="H5921"\w* \w sins|strong="H2403"\w* \w have|strong="H5771"\w* \w increased|strong="H6105"\w*, +\q2 \w I|strong="H5921"\w* \w have|strong="H5771"\w* \w done|strong="H6213"\w* \w these|strong="H6213"\w* \w things|strong="H7230"\w* \w to|strong="H5921"\w* \w you|strong="H5921"\w*. +\q1 +\v 16 \w Therefore|strong="H3651"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* devour \w you|strong="H5414"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* devoured. +\q2 \w All|strong="H3605"\w* \w your|strong="H3605"\w* \w adversaries|strong="H6862"\w*, \w everyone|strong="H3605"\w* \w of|strong="H3605"\w* \w them|strong="H5414"\w*, \w will|strong="H1961"\w* \w go|strong="H3212"\w* \w into|strong="H3212"\w* \w captivity|strong="H7628"\w*. +\q1 \w Those|strong="H3605"\w* \w who|strong="H3605"\w* \w plunder|strong="H4933"\w* \w you|strong="H5414"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w plunder|strong="H4933"\w*. +\q2 \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w make|strong="H5414"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* prey \w on|strong="H1961"\w* \w you|strong="H5414"\w* \w become|strong="H1961"\w* prey. +\q1 +\v 17 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w restore|strong="H5927"\w* health \w to|strong="H3068"\w* \w you|strong="H3588"\w*, +\q2 \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w heal|strong="H7495"\w* \w you|strong="H3588"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w wounds|strong="H4347"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q1 “\w because|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3068"\w* \w called|strong="H7121"\w* \w you|strong="H3588"\w* \w an|strong="H7121"\w* \w outcast|strong="H5080"\w*, +\q2 saying, ‘\w It|strong="H1931"\w* \w is|strong="H3068"\w* \w Zion|strong="H6726"\w*, \w whom|strong="H7121"\w* \w no|strong="H5927"\w* man \w seeks|strong="H1875"\w* \w after|strong="H3588"\w*.’” +\p +\v 18 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w reverse|strong="H7725"\w* \w the|strong="H5921"\w* \w captivity|strong="H7622"\w* \w of|strong="H3068"\w* \w Jacob|strong="H3290"\w*’s \w tents|strong="H4908"\w*, +\q2 \w and|strong="H3068"\w* \w have|strong="H7355"\w* \w compassion|strong="H7355"\w* \w on|strong="H5921"\w* \w his|strong="H3068"\w* \w dwelling|strong="H3427"\w* \w places|strong="H4908"\w*. +\q1 \w The|strong="H5921"\w* \w city|strong="H5892"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w built|strong="H1129"\w* \w on|strong="H5921"\w* \w its|strong="H5921"\w* \w own|strong="H7622"\w* hill, +\q2 \w and|strong="H3068"\w* \w the|strong="H5921"\w* palace \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w inhabited|strong="H3427"\w* \w in|strong="H3427"\w* \w its|strong="H5921"\w* \w own|strong="H7622"\w* \w place|strong="H4908"\w*. +\q1 +\v 19 \w Thanksgiving|strong="H8426"\w* \w will|strong="H3808"\w* \w proceed|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H6963"\w* \w them|strong="H1992"\w* +\q2 \w with|strong="H3318"\w* \w the|strong="H3318"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w those|strong="H1992"\w* \w who|strong="H1992"\w* \w make|strong="H3513"\w* \w merry|strong="H7832"\w*. +\q1 \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w multiply|strong="H7235"\w* \w them|strong="H1992"\w*, +\q2 \w and|strong="H6963"\w* \w they|strong="H1992"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w few|strong="H4591"\w*; +\q1 \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w also|strong="H3318"\w* \w glorify|strong="H3513"\w* \w them|strong="H1992"\w*, +\q2 \w and|strong="H6963"\w* \w they|strong="H1992"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w small|strong="H4591"\w*. +\q1 +\v 20 \w Their|strong="H3605"\w* \w children|strong="H1121"\w* \w also|strong="H1121"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w before|strong="H6440"\w*, +\q2 \w and|strong="H1121"\w* \w their|strong="H3605"\w* \w congregation|strong="H5712"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w established|strong="H3559"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*. +\q2 \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w punish|strong="H6485"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w oppress|strong="H3905"\w* \w them|strong="H5921"\w*. +\q1 +\v 21 \w Their|strong="H3068"\w* prince \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w one|strong="H2088"\w* \w of|strong="H3068"\w* \w them|strong="H7126"\w*, +\q2 \w and|strong="H3068"\w* \w their|strong="H3068"\w* \w ruler|strong="H4910"\w* \w will|strong="H3068"\w* \w proceed|strong="H3318"\w* \w from|strong="H4480"\w* \w among|strong="H7130"\w* \w them|strong="H7126"\w*. +\q1 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w cause|strong="H3318"\w* \w him|strong="H3318"\w* \w to|strong="H3318"\w* \w draw|strong="H7126"\w* \w near|strong="H7126"\w*, +\q2 \w and|strong="H3068"\w* \w he|strong="H1931"\w* \w will|strong="H3068"\w* \w approach|strong="H7126"\w* \w me|strong="H4480"\w*; +\q2 \w for|strong="H3588"\w* \w who|strong="H4310"\w* \w is|strong="H3068"\w* \w he|strong="H1931"\w* \w who|strong="H4310"\w* \w has|strong="H3068"\w* \w had|strong="H3068"\w* boldness \w to|strong="H3318"\w* \w approach|strong="H7126"\w* \w me|strong="H4480"\w*?” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 22 “\w You|strong="H5971"\w* \w shall|strong="H5971"\w* \w be|strong="H1961"\w* \w my|strong="H1961"\w* \w people|strong="H5971"\w*, +\q2 \w and|strong="H5971"\w* \w I|strong="H5971"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w your|strong="H1961"\w* God. +\q1 +\v 23 \w Behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w*’s \w storm|strong="H5591"\w*, \w his|strong="H3068"\w* \w wrath|strong="H2534"\w*, \w has|strong="H3068"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w*, +\q2 \w a|strong="H3068"\w* \w sweeping|strong="H1641"\w* \w storm|strong="H5591"\w*; +\q2 \w it|strong="H5921"\w* \w will|strong="H3068"\w* \w burst|strong="H2342"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w wicked|strong="H7563"\w*. +\q1 +\v 24 \w The|strong="H6213"\w* \w fierce|strong="H2740"\w* \w anger|strong="H2740"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w return|strong="H7725"\w* \w until|strong="H5704"\w* \w he|strong="H3117"\w* \w has|strong="H3068"\w* \w accomplished|strong="H6213"\w*, +\q2 \w and|strong="H6965"\w* \w until|strong="H5704"\w* \w he|strong="H3117"\w* \w has|strong="H3068"\w* \w performed|strong="H6213"\w* \w the|strong="H6213"\w* intentions \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w heart|strong="H3820"\w*. +\q2 \w In|strong="H3068"\w* \w the|strong="H6213"\w* latter \w days|strong="H3117"\w* \w you|strong="H3117"\w* \w will|strong="H3068"\w* understand \w it|strong="H6213"\w*.” +\c 31 +\p +\v 1 “\w At|strong="H3478"\w* \w that|strong="H5971"\w* \w time|strong="H6256"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w I|strong="H6256"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w families|strong="H4940"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w they|strong="H1992"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w*.” +\p +\v 2 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w The|strong="H3541"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w survive|strong="H8300"\w* \w the|strong="H3541"\w* \w sword|strong="H2719"\w* \w found|strong="H4672"\w* \w favor|strong="H2580"\w* \w in|strong="H1980"\w* \w the|strong="H3541"\w* \w wilderness|strong="H4057"\w*; \w even|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w when|strong="H1980"\w* \w I|strong="H3541"\w* \w went|strong="H1980"\w* \w to|strong="H1980"\w* \w cause|strong="H5971"\w* \w him|strong="H4672"\w* \w to|strong="H1980"\w* \w rest|strong="H7280"\w*.” +\p +\v 3 \w Yahweh|strong="H3068"\w* \w appeared|strong="H7200"\w* \w of|strong="H3068"\w* \w old|strong="H5769"\w* \w to|strong="H3068"\w* \w me|strong="H7200"\w*, saying, +\q1 “\w Yes|strong="H3651"\w*, \w I|strong="H5921"\w* \w have|strong="H3068"\w* loved \w you|strong="H5921"\w* \w with|strong="H3068"\w* \w an|strong="H7200"\w* \w everlasting|strong="H5769"\w* \w love|strong="H2617"\w*. +\q2 \w Therefore|strong="H3651"\w* \w I|strong="H5921"\w* \w have|strong="H3068"\w* \w drawn|strong="H4900"\w* \w you|strong="H5921"\w* \w with|strong="H3068"\w* loving \w kindness|strong="H2617"\w*. +\q1 +\v 4 \w I|strong="H3478"\w* \w will|strong="H3478"\w* \w build|strong="H1129"\w* \w you|strong="H1129"\w* \w again|strong="H5750"\w*, +\q2 \w and|strong="H3478"\w* \w you|strong="H1129"\w* \w will|strong="H3478"\w* \w be|strong="H5750"\w* \w built|strong="H1129"\w*, \w O|strong="H3068"\w* \w virgin|strong="H1330"\w* \w of|strong="H3318"\w* \w Israel|strong="H3478"\w*. +\q1 \w You|strong="H1129"\w* \w will|strong="H3478"\w* \w again|strong="H5750"\w* \w be|strong="H5750"\w* \w adorned|strong="H5710"\w* \w with|strong="H3318"\w* \w your|strong="H3318"\w* \w tambourines|strong="H8596"\w*, +\q2 \w and|strong="H3478"\w* \w will|strong="H3478"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w in|strong="H3478"\w* \w the|strong="H1129"\w* \w dances|strong="H4234"\w* \w of|strong="H3318"\w* \w those|strong="H3318"\w* \w who|strong="H3478"\w* make \w merry|strong="H7832"\w*. +\q1 +\v 5 \w Again|strong="H5750"\w* \w you|strong="H2022"\w* \w will|strong="H2022"\w* \w plant|strong="H5193"\w* \w vineyards|strong="H3754"\w* \w on|strong="H2022"\w* \w the|strong="H2490"\w* \w mountains|strong="H2022"\w* \w of|strong="H2022"\w* \w Samaria|strong="H8111"\w*. +\q2 \w The|strong="H2490"\w* \w planters|strong="H5193"\w* \w will|strong="H2022"\w* \w plant|strong="H5193"\w*, +\q2 \w and|strong="H2022"\w* \w will|strong="H2022"\w* \w enjoy|strong="H2490"\w* \w its|strong="H2490"\w* \w fruit|strong="H2490"\w*. +\q1 +\v 6 \w For|strong="H3588"\w* \w there|strong="H3426"\w* \w will|strong="H3068"\w* \w be|strong="H3426"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w watchmen|strong="H5341"\w* \w on|strong="H3117"\w* \w the|strong="H3588"\w* \w hills|strong="H2022"\w* \w of|strong="H3068"\w* Ephraim \w cry|strong="H7121"\w*, +\q2 ‘\w Arise|strong="H6965"\w*! Let’s \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w Zion|strong="H6726"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*.’” +\p +\v 7 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, +\q1 “\w Sing|strong="H7442"\w* \w with|strong="H3068"\w* \w gladness|strong="H8057"\w* \w for|strong="H3588"\w* \w Jacob|strong="H3290"\w*, +\q2 \w and|strong="H3478"\w* \w shout|strong="H7442"\w* \w for|strong="H3588"\w* \w the|strong="H8085"\w* \w chief|strong="H7218"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* \w nations|strong="H1471"\w*. +\q1 \w Publish|strong="H8085"\w*, \w praise|strong="H1984"\w*, \w and|strong="H3478"\w* \w say|strong="H3478"\w*, +\q2 ‘\w Yahweh|strong="H3068"\w*, \w save|strong="H3467"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w*, +\q2 \w the|strong="H8085"\w* \w remnant|strong="H7611"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*!’ +\q1 +\v 8 \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H6828"\w* \w bring|strong="H7725"\w* \w them|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H3205"\w* \w north|strong="H6828"\w* country, +\q2 \w and|strong="H7725"\w* \w gather|strong="H6908"\w* \w them|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H3205"\w* uttermost \w parts|strong="H3411"\w* \w of|strong="H3205"\w* \w the|strong="H3205"\w* earth, +\q1 along \w with|strong="H7725"\w* \w the|strong="H3205"\w* \w blind|strong="H5787"\w* \w and|strong="H7725"\w* \w the|strong="H3205"\w* \w lame|strong="H6455"\w*, +\q2 \w the|strong="H3205"\w* \w woman|strong="H2030"\w* \w with|strong="H7725"\w* \w child|strong="H2030"\w* \w and|strong="H7725"\w* \w her|strong="H7725"\w* \w who|strong="H3205"\w* travails \w with|strong="H7725"\w* \w child|strong="H2030"\w* \w together|strong="H3162"\w*. +\q2 \w They|strong="H3162"\w* \w will|strong="H6828"\w* \w return|strong="H7725"\w* \w as|strong="H7725"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w company|strong="H6951"\w*. +\q1 +\v 9 \w They|strong="H3588"\w* \w will|strong="H1961"\w* \w come|strong="H1961"\w* \w with|strong="H3212"\w* \w weeping|strong="H1065"\w*. +\q2 \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w lead|strong="H2986"\w* \w them|strong="H1961"\w* \w with|strong="H3212"\w* petitions. +\q1 \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w cause|strong="H1961"\w* \w them|strong="H1961"\w* \w to|strong="H3478"\w* \w walk|strong="H3212"\w* \w by|strong="H1870"\w* \w rivers|strong="H5158"\w* \w of|strong="H1870"\w* \w waters|strong="H4325"\w*, +\q2 \w in|strong="H3478"\w* \w a|strong="H3068"\w* \w straight|strong="H3477"\w* \w way|strong="H1870"\w* \w in|strong="H3478"\w* \w which|strong="H1931"\w* \w they|strong="H3588"\w* won’t \w stumble|strong="H3782"\w*; +\q1 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w a|strong="H3068"\w* father \w to|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\q2 Ephraim \w is|strong="H1931"\w* \w my|strong="H1961"\w* \w firstborn|strong="H1060"\w*. +\b +\q1 +\v 10 “\w Hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w you|strong="H5046"\w* \w nations|strong="H1471"\w*, +\q2 \w and|strong="H3478"\w* \w declare|strong="H5046"\w* \w it|strong="H3068"\w* \w in|strong="H3478"\w* \w the|strong="H8085"\w* \w distant|strong="H4801"\w* islands. \w Say|strong="H1697"\w*, +\q1 ‘\w He|strong="H3068"\w* \w who|strong="H3068"\w* \w scattered|strong="H2219"\w* \w Israel|strong="H3478"\w* \w will|strong="H3068"\w* \w gather|strong="H6908"\w* \w him|strong="H5046"\w*, +\q2 \w and|strong="H3478"\w* \w keep|strong="H8104"\w* \w him|strong="H5046"\w*, \w as|strong="H1697"\w* \w a|strong="H3068"\w* \w shepherd|strong="H7462"\w* \w does|strong="H3068"\w* \w his|strong="H8104"\w* \w flock|strong="H5739"\w*.’ +\q1 +\v 11 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w ransomed|strong="H6299"\w* \w Jacob|strong="H3290"\w*, +\q2 \w and|strong="H3068"\w* \w redeemed|strong="H1350"\w* \w him|strong="H3027"\w* \w from|strong="H4480"\w* \w the|strong="H3588"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w him|strong="H3027"\w* \w who|strong="H3068"\w* \w was|strong="H3068"\w* \w stronger|strong="H2389"\w* \w than|strong="H4480"\w* \w he|strong="H3588"\w*. +\q1 +\v 12 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w come|strong="H1961"\w* \w and|strong="H1121"\w* \w sing|strong="H7442"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w height|strong="H4791"\w* \w of|strong="H1121"\w* \w Zion|strong="H6726"\w*, +\q2 \w and|strong="H1121"\w* \w will|strong="H3068"\w* \w flow|strong="H5102"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w goodness|strong="H2898"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*, +\q1 \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w grain|strong="H1715"\w*, \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w*, \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w oil|strong="H3323"\w*, +\q2 \w and|strong="H1121"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w young|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w flock|strong="H6629"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w herd|strong="H1241"\w*. +\q1 \w Their|strong="H3068"\w* \w soul|strong="H5315"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w watered|strong="H7302"\w* \w garden|strong="H1588"\w*. +\q2 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w sorrow|strong="H1669"\w* \w any|strong="H5750"\w* \w more|strong="H3254"\w* \w at|strong="H5921"\w* \w all|strong="H5921"\w*. +\q1 +\v 13 \w Then|strong="H5162"\w* \w the|strong="H2015"\w* \w virgin|strong="H1330"\w* \w will|strong="H2205"\w* \w rejoice|strong="H8055"\w* \w in|strong="H8055"\w* \w the|strong="H2015"\w* \w dance|strong="H4234"\w*, +\q2 \w the|strong="H2015"\w* young \w men|strong="H2205"\w* \w and|strong="H2205"\w* \w the|strong="H2015"\w* \w old|strong="H2205"\w* \w together|strong="H3162"\w*; +\q1 \w for|strong="H5162"\w* I \w will|strong="H2205"\w* \w turn|strong="H2015"\w* \w their|strong="H2015"\w* \w mourning|strong="H5162"\w* \w into|strong="H2015"\w* \w joy|strong="H8342"\w*, +\q2 \w and|strong="H2205"\w* \w will|strong="H2205"\w* \w comfort|strong="H5162"\w* \w them|strong="H8055"\w*, \w and|strong="H2205"\w* \w make|strong="H8055"\w* \w them|strong="H8055"\w* \w rejoice|strong="H8055"\w* from \w their|strong="H2015"\w* \w sorrow|strong="H3015"\w*. +\q1 +\v 14 \w I|strong="H5315"\w* \w will|strong="H3068"\w* \w satiate|strong="H7301"\w* \w the|strong="H5002"\w* \w soul|strong="H5315"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* \w priests|strong="H3548"\w* \w with|strong="H7646"\w* \w fatness|strong="H1880"\w*, +\q2 \w and|strong="H3068"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w satisfied|strong="H7646"\w* \w with|strong="H7646"\w* \w my|strong="H3068"\w* \w goodness|strong="H2898"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\b +\p +\v 15 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w A|strong="H3068"\w* \w voice|strong="H6963"\w* \w is|strong="H3068"\w* \w heard|strong="H8085"\w* \w in|strong="H5921"\w* \w Ramah|strong="H7414"\w*, +\q2 \w lamentation|strong="H5092"\w* \w and|strong="H1121"\w* \w bitter|strong="H8563"\w* \w weeping|strong="H1065"\w*, +\q1 \w Rachel|strong="H7354"\w* \w weeping|strong="H1065"\w* \w for|strong="H3588"\w* \w her|strong="H5921"\w* \w children|strong="H1121"\w*. +\q2 \w She|strong="H3588"\w* \w refuses|strong="H3985"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w comforted|strong="H5162"\w* \w for|strong="H3588"\w* \w her|strong="H5921"\w* \w children|strong="H1121"\w*, +\q2 \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H1121"\w* \w no|strong="H1058"\w* \w more|strong="H3588"\w*.” +\p +\v 16 \w Yahweh|strong="H3068"\w* \w says|strong="H5002"\w*: +\q1 “\w Refrain|strong="H4513"\w* \w your|strong="H3068"\w* \w voice|strong="H6963"\w* \w from|strong="H7725"\w* \w weeping|strong="H1065"\w*, +\q2 \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w* \w from|strong="H7725"\w* \w tears|strong="H1832"\w*, +\q2 \w for|strong="H3588"\w* \w your|strong="H3068"\w* \w work|strong="H6468"\w* \w will|strong="H3068"\w* \w be|strong="H3426"\w* \w rewarded|strong="H7939"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q2 “\w They|strong="H3588"\w* \w will|strong="H3068"\w* \w come|strong="H7725"\w* \w again|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H5002"\w* land \w of|strong="H3068"\w* \w the|strong="H5002"\w* enemy. +\q1 +\v 17 \w There|strong="H3426"\w* \w is|strong="H3068"\w* \w hope|strong="H8615"\w* \w for|strong="H3068"\w* \w your|strong="H3068"\w* latter end,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q2 “\w Your|strong="H3068"\w* \w children|strong="H1121"\w* \w will|strong="H3068"\w* \w come|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w their|strong="H3068"\w* own \w territory|strong="H1366"\w*. +\b +\q1 +\v 18 “\w I|strong="H3588"\w* \w have|strong="H3068"\w* \w surely|strong="H3588"\w* \w heard|strong="H8085"\w* Ephraim \w grieving|strong="H5110"\w* \w thus|strong="H3808"\w*, +\q2 ‘\w You|strong="H3588"\w* \w have|strong="H3068"\w* \w chastised|strong="H3256"\w* \w me|strong="H7725"\w*, +\q2 \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w was|strong="H3068"\w* \w chastised|strong="H3256"\w*, \w as|strong="H3068"\w* \w an|strong="H3588"\w* \w untrained|strong="H3808"\w* \w calf|strong="H5695"\w*. +\q1 \w Turn|strong="H7725"\w* \w me|strong="H7725"\w*, \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w turned|strong="H7725"\w*, +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w my|strong="H8085"\w* \w God|strong="H3068"\w*. +\q1 +\v 19 \w Surely|strong="H3588"\w* \w after|strong="H5921"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w was|strong="H1571"\w* \w turned|strong="H7725"\w*. +\q2 \w I|strong="H3588"\w* \w repented|strong="H5162"\w*. +\q1 \w After|strong="H5921"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w was|strong="H1571"\w* \w instructed|strong="H3045"\w*. +\q2 \w I|strong="H3588"\w* \w struck|strong="H5606"\w* \w my|strong="H5921"\w* \w thigh|strong="H3409"\w*. +\q1 \w I|strong="H3588"\w* \w was|strong="H1571"\w* \w ashamed|strong="H3637"\w*, \w yes|strong="H3588"\w*, \w even|strong="H1571"\w* \w confounded|strong="H3637"\w*, +\q2 \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w bore|strong="H5375"\w* \w the|strong="H5921"\w* \w reproach|strong="H2781"\w* \w of|strong="H5921"\w* \w my|strong="H5921"\w* \w youth|strong="H5271"\w*.’ +\q1 +\v 20 \w Is|strong="H3068"\w* Ephraim \w my|strong="H3068"\w* \w dear|strong="H3357"\w* \w son|strong="H1121"\w*? +\q2 \w Is|strong="H3068"\w* \w he|strong="H3588"\w* \w a|strong="H3068"\w* darling \w child|strong="H3206"\w*? +\q1 \w For|strong="H3588"\w* \w as|strong="H3651"\w* \w often|strong="H1767"\w* \w as|strong="H3651"\w* \w I|strong="H3588"\w* \w speak|strong="H1696"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*, +\q2 \w I|strong="H3588"\w* \w still|strong="H5750"\w* \w earnestly|strong="H2142"\w* \w remember|strong="H2142"\w* \w him|strong="H5921"\w*. +\q1 \w Therefore|strong="H3651"\w* \w my|strong="H3068"\w* \w heart|strong="H4578"\w* \w yearns|strong="H1993"\w* \w for|strong="H3588"\w* \w him|strong="H5921"\w*. +\q2 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w surely|strong="H3588"\w* \w have|strong="H7355"\w* \w mercy|strong="H7355"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\b +\q1 +\v 21 “\w Set|strong="H7760"\w* \w up|strong="H7760"\w* \w road|strong="H1870"\w* signs. +\q2 \w Make|strong="H7760"\w* \w guideposts|strong="H8564"\w*. +\q1 \w Set|strong="H7760"\w* \w your|strong="H7760"\w* \w heart|strong="H3820"\w* \w toward|strong="H1870"\w* \w the|strong="H7725"\w* \w highway|strong="H4546"\w*, +\q2 even \w the|strong="H7725"\w* \w way|strong="H1870"\w* \w by|strong="H1870"\w* \w which|strong="H5892"\w* \w you|strong="H7725"\w* \w went|strong="H1980"\w*. +\q1 \w Turn|strong="H7725"\w* \w again|strong="H7725"\w*, \w virgin|strong="H1330"\w* \w of|strong="H5892"\w* \w Israel|strong="H3478"\w*. +\q2 \w Turn|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H1980"\w* \w these|strong="H7760"\w* \w your|strong="H7760"\w* \w cities|strong="H5892"\w*. +\q1 +\v 22 \w How|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H3068"\w* \w you|strong="H3588"\w* \w go|strong="H5437"\w* \w here|strong="H5704"\w* \w and|strong="H3068"\w* \w there|strong="H2559"\w*, +\q2 \w you|strong="H3588"\w* \w backsliding|strong="H7728"\w* \w daughter|strong="H1323"\w*? +\q1 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w created|strong="H1254"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w thing|strong="H2319"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* earth: +\q2 \w a|strong="H3068"\w* \w woman|strong="H1323"\w* \w will|strong="H3068"\w* \w encompass|strong="H5437"\w* \w a|strong="H3068"\w* \w man|strong="H1397"\w*.” +\b +\p +\v 23 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*: “\w Yet|strong="H5750"\w* \w again|strong="H7725"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* use \w this|strong="H2088"\w* \w speech|strong="H1697"\w* \w in|strong="H3478"\w* \w the|strong="H3541"\w* \w land|strong="H5116"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w in|strong="H3478"\w* \w its|strong="H7725"\w* \w cities|strong="H5892"\w*, \w when|strong="H7725"\w* \w I|strong="H3541"\w* \w reverse|strong="H7725"\w* \w their|strong="H3068"\w* \w captivity|strong="H7622"\w*: ‘\w Yahweh|strong="H3068"\w* \w bless|strong="H1288"\w* \w you|strong="H7725"\w*, \w habitation|strong="H5116"\w* \w of|strong="H3068"\w* \w righteousness|strong="H6664"\w*, \w mountain|strong="H2022"\w* \w of|strong="H3068"\w* \w holiness|strong="H6944"\w*.’ +\v 24 \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w cities|strong="H5892"\w* \w will|strong="H5892"\w* \w dwell|strong="H3427"\w* \w therein|strong="H3427"\w* \w together|strong="H3162"\w*, \w the|strong="H3605"\w* farmers, \w and|strong="H3063"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w go|strong="H5265"\w* \w about|strong="H5892"\w* \w with|strong="H3427"\w* \w flocks|strong="H5739"\w*. +\v 25 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3605"\w* \w satiated|strong="H7301"\w* \w the|strong="H3605"\w* \w weary|strong="H5889"\w* \w soul|strong="H5315"\w*, \w and|strong="H5315"\w* \w I|strong="H3588"\w* \w have|strong="H3605"\w* \w replenished|strong="H4390"\w* \w every|strong="H3605"\w* \w sorrowful|strong="H1669"\w* \w soul|strong="H5315"\w*.” +\p +\v 26 \w On|strong="H5921"\w* \w this|strong="H2063"\w* \w I|strong="H5921"\w* awakened, \w and|strong="H7200"\w* \w saw|strong="H7200"\w*; \w and|strong="H7200"\w* \w my|strong="H7200"\w* \w sleep|strong="H8142"\w* \w was|strong="H8142"\w* \w sweet|strong="H6149"\w* \w to|strong="H5921"\w* \w me|strong="H7200"\w*. +\p +\v 27 “\w Behold|strong="H2009"\w*, \w the|strong="H5002"\w* \w days|strong="H3117"\w* \w come|strong="H3478"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w that|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w sow|strong="H2232"\w* \w the|strong="H5002"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w the|strong="H5002"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w with|strong="H1004"\w* \w the|strong="H5002"\w* \w seed|strong="H2233"\w* \w of|strong="H1004"\w* man \w and|strong="H3063"\w* \w with|strong="H1004"\w* \w the|strong="H5002"\w* \w seed|strong="H2233"\w* \w of|strong="H1004"\w* animal. +\v 28 \w It|strong="H5921"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w* \w that|strong="H3068"\w*, \w like|strong="H1961"\w* \w as|strong="H1961"\w* \w I|strong="H5921"\w* \w have|strong="H1961"\w* \w watched|strong="H8245"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w* \w to|strong="H3068"\w* \w pluck|strong="H5428"\w* \w up|strong="H1129"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w break|strong="H2040"\w* \w down|strong="H5422"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w overthrow|strong="H2040"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w destroy|strong="H5422"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w afflict|strong="H7489"\w*, \w so|strong="H3651"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w watch|strong="H8245"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w* \w to|strong="H3068"\w* \w build|strong="H1129"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w plant|strong="H5193"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 29 “\w In|strong="H3117"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w* \w they|strong="H1992"\w* \w will|strong="H1121"\w* say \w no|strong="H3808"\w* \w more|strong="H5750"\w*, +\q1 “‘\w The|strong="H3117"\w* fathers \w have|strong="H1121"\w* eaten \w sour|strong="H1155"\w* \w grapes|strong="H1155"\w*, +\q2 \w and|strong="H1121"\w* \w the|strong="H3117"\w* \w children|strong="H1121"\w*’s \w teeth|strong="H8127"\w* \w are|strong="H3117"\w* \w set|strong="H6949"\w* \w on|strong="H3117"\w* \w edge|strong="H6949"\w*.’ +\m +\v 30 \w But|strong="H3588"\w* \w everyone|strong="H3605"\w* \w will|strong="H5771"\w* \w die|strong="H4191"\w* \w for|strong="H3588"\w* \w his|strong="H3605"\w* own \w iniquity|strong="H5771"\w*. \w Every|strong="H3605"\w* \w man|strong="H4191"\w* \w who|strong="H3605"\w* eats \w the|strong="H3605"\w* \w sour|strong="H1155"\w* \w grapes|strong="H1155"\w*, \w his|strong="H3605"\w* \w teeth|strong="H8127"\w* \w will|strong="H5771"\w* \w be|strong="H4191"\w* \w set|strong="H6949"\w* \w on|strong="H4191"\w* \w edge|strong="H6949"\w*. +\p +\v 31 “\w Behold|strong="H2009"\w*, \w the|strong="H5002"\w* \w days|strong="H3117"\w* \w come|strong="H3478"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w that|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w make|strong="H3772"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w covenant|strong="H1285"\w* \w with|strong="H1004"\w* \w the|strong="H5002"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3063"\w* \w with|strong="H1004"\w* \w the|strong="H5002"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w*, +\v 32 \w not|strong="H3808"\w* \w according|strong="H3027"\w* \w to|strong="H3318"\w* \w the|strong="H5002"\w* \w covenant|strong="H1285"\w* \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w made|strong="H3772"\w* \w with|strong="H3068"\w* \w their|strong="H3068"\w* fathers \w in|strong="H3068"\w* \w the|strong="H5002"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w took|strong="H2388"\w* \w them|strong="H1992"\w* \w by|strong="H3027"\w* \w the|strong="H5002"\w* \w hand|strong="H3027"\w* \w to|strong="H3318"\w* \w bring|strong="H3318"\w* \w them|strong="H1992"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w which|strong="H3068"\w* \w covenant|strong="H1285"\w* \w of|strong="H3068"\w* \w mine|strong="H3027"\w* \w they|strong="H1992"\w* \w broke|strong="H6565"\w*, \w although|strong="H3808"\w* \w I|strong="H3117"\w* \w was|strong="H3068"\w* \w a|strong="H3068"\w* \w husband|strong="H1166"\w* \w to|strong="H3318"\w* \w them|strong="H1992"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 33 “\w But|strong="H3588"\w* \w this|strong="H2063"\w* \w is|strong="H3068"\w* \w the|strong="H5002"\w* \w covenant|strong="H1285"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w make|strong="H5414"\w* \w with|strong="H1004"\w* \w the|strong="H5002"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w after|strong="H5921"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*: +\q1 “\w I|strong="H3588"\w* \w will|strong="H3068"\w* \w put|strong="H5414"\w* \w my|strong="H5414"\w* \w law|strong="H8451"\w* \w in|strong="H5921"\w* \w their|strong="H3068"\w* \w inward|strong="H1004"\w* \w parts|strong="H7130"\w*, +\q2 \w and|strong="H3478"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w write|strong="H3789"\w* \w it|strong="H5414"\w* \w in|strong="H5921"\w* \w their|strong="H3068"\w* \w heart|strong="H3820"\w*. +\q1 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 \w and|strong="H3478"\w* \w they|strong="H1992"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w my|strong="H5414"\w* \w people|strong="H5971"\w*. +\q1 +\v 34 \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w no|strong="H3808"\w* \w longer|strong="H5750"\w* \w each|strong="H3605"\w* \w teach|strong="H3925"\w* \w his|strong="H3605"\w* \w neighbor|strong="H7453"\w*, +\q2 \w and|strong="H3068"\w* \w every|strong="H3605"\w* \w man|strong="H1419"\w* \w teach|strong="H3925"\w* \w his|strong="H3605"\w* \w brother|strong="H7453"\w*, saying, ‘\w Know|strong="H3045"\w* \w Yahweh|strong="H3068"\w*;’ +\q1 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w all|strong="H3605"\w* \w know|strong="H3045"\w* \w me|strong="H3925"\w*, +\q2 \w from|strong="H5704"\w* \w their|strong="H3605"\w* \w least|strong="H6996"\w* \w to|strong="H5704"\w* \w their|strong="H3605"\w* \w greatest|strong="H1419"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q1 “\w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w forgive|strong="H5545"\w* \w their|strong="H3605"\w* \w iniquity|strong="H5771"\w*, +\q2 \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w remember|strong="H2142"\w* \w their|strong="H3605"\w* \w sin|strong="H2403"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w*.” +\q1 +\v 35 \w Yahweh|strong="H3068"\w*, \w who|strong="H3068"\w* \w gives|strong="H5414"\w* \w the|strong="H5414"\w* \w sun|strong="H8121"\w* \w for|strong="H2708"\w* \w a|strong="H3068"\w* light \w by|strong="H3068"\w* \w day|strong="H3119"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H5414"\w* \w ordinances|strong="H2708"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* \w moon|strong="H3394"\w* \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* \w stars|strong="H3556"\w* \w for|strong="H2708"\w* \w a|strong="H3068"\w* light \w by|strong="H3068"\w* \w night|strong="H3915"\w*, +\q1 \w who|strong="H3068"\w* \w stirs|strong="H7280"\w* \w up|strong="H5414"\w* \w the|strong="H5414"\w* \w sea|strong="H3220"\w*, \w so|strong="H3541"\w* \w that|strong="H3068"\w* \w its|strong="H5414"\w* \w waves|strong="H1530"\w* \w roar|strong="H1993"\w*— +\q2 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w is|strong="H3068"\w* \w his|strong="H5414"\w* \w name|strong="H8034"\w*, \w says|strong="H3541"\w*: +\q1 +\v 36 “\w If|strong="H1961"\w* \w these|strong="H3605"\w* \w ordinances|strong="H2706"\w* \w depart|strong="H4185"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w then|strong="H1961"\w* \w the|strong="H3605"\w* \w offspring|strong="H2233"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w also|strong="H1571"\w* \w will|strong="H3068"\w* \w cease|strong="H7673"\w* \w from|strong="H6440"\w* \w being|strong="H1961"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w forever|strong="H3605"\w*.” +\q1 +\v 37 \w Yahweh|strong="H3068"\w* \w says|strong="H5002"\w*: “If \w heaven|strong="H8064"\w* \w above|strong="H4605"\w* \w can|strong="H6213"\w* \w be|strong="H3068"\w* \w measured|strong="H4058"\w*, +\q2 \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w foundations|strong="H4146"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w* \w searched|strong="H2713"\w* \w out|strong="H2713"\w* \w beneath|strong="H4295"\w*, +\q2 \w then|strong="H1571"\w* \w I|strong="H3541"\w* \w will|strong="H3068"\w* \w also|strong="H1571"\w* \w cast|strong="H3068"\w* \w off|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w offspring|strong="H2233"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w they|strong="H3068"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 38 “\w Behold|strong="H2009"\w*, \w the|strong="H5002"\w* \w days|strong="H3117"\w* \w come|strong="H5892"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w that|strong="H3117"\w* \w the|strong="H5002"\w* \w city|strong="H5892"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w built|strong="H1129"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w from|strong="H3117"\w* \w the|strong="H5002"\w* \w tower|strong="H4026"\w* \w of|strong="H3068"\w* \w Hananel|strong="H2606"\w* \w to|strong="H3068"\w* \w the|strong="H5002"\w* \w gate|strong="H8179"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* \w corner|strong="H6438"\w*. +\v 39 \w The|strong="H5921"\w* \w measuring|strong="H4060"\w* line \w will|strong="H5750"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w further|strong="H5750"\w* \w straight|strong="H5048"\w* onward \w to|strong="H3318"\w* \w the|strong="H5921"\w* \w hill|strong="H1389"\w* \w Gareb|strong="H1619"\w*, \w and|strong="H3318"\w* \w will|strong="H5750"\w* \w turn|strong="H5437"\w* \w toward|strong="H5921"\w* \w Goah|strong="H1601"\w*. +\v 40 \w The|strong="H3605"\w* \w whole|strong="H3605"\w* \w valley|strong="H6010"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w dead|strong="H6297"\w* \w bodies|strong="H6297"\w* \w and|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w ashes|strong="H1880"\w*, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* fields \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w brook|strong="H5158"\w* \w Kidron|strong="H6939"\w*, \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w corner|strong="H6438"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w horse|strong="H5483"\w* \w gate|strong="H8179"\w* \w toward|strong="H5704"\w* \w the|strong="H3605"\w* \w east|strong="H4217"\w*, \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w holy|strong="H6944"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w*. \w It|strong="H5704"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w plucked|strong="H5428"\w* \w up|strong="H5428"\w* \w or|strong="H3808"\w* \w thrown|strong="H2040"\w* \w down|strong="H2040"\w* \w any|strong="H3605"\w* \w more|strong="H5750"\w* \w forever|strong="H5769"\w*.” +\c 32 +\p +\v 1 \w This|strong="H1931"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w word|strong="H1697"\w* \w that|strong="H1931"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w* \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w tenth|strong="H6224"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w Zedekiah|strong="H6667"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w which|strong="H1931"\w* \w was|strong="H3068"\w* \w the|strong="H3068"\w* \w eighteenth|strong="H8083"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w Nebuchadnezzar|strong="H5019"\w*. +\v 2 \w Now|strong="H1961"\w* \w at|strong="H5921"\w* \w that|strong="H4428"\w* \w time|strong="H1961"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon’s \w army|strong="H2428"\w* \w was|strong="H1961"\w* \w besieging|strong="H6696"\w* \w Jerusalem|strong="H3389"\w*. \w Jeremiah|strong="H3414"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w* \w was|strong="H1961"\w* \w shut|strong="H3607"\w* \w up|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w court|strong="H2691"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w guard|strong="H4307"\w*, \w which|strong="H1004"\w* \w was|strong="H1961"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*’s \w house|strong="H1004"\w*. +\p +\v 3 \w For|strong="H3027"\w* \w Zedekiah|strong="H6667"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w had|strong="H3068"\w* \w shut|strong="H3607"\w* \w him|strong="H5414"\w* \w up|strong="H5414"\w*, saying, “\w Why|strong="H4069"\w* \w do|strong="H3068"\w* \w you|strong="H5414"\w* \w prophesy|strong="H5012"\w*, \w and|strong="H3063"\w* say, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w and|strong="H3063"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w take|strong="H3920"\w* \w it|strong="H5414"\w*; +\v 4 \w and|strong="H3063"\w* \w Zedekiah|strong="H6667"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* won’t \w escape|strong="H4422"\w* \w out|strong="H5414"\w* \w of|strong="H4428"\w* \w the|strong="H7200"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H7200"\w* \w Chaldeans|strong="H3778"\w*, \w but|strong="H3588"\w* \w will|strong="H4428"\w* \w surely|strong="H3588"\w* \w be|strong="H3808"\w* \w delivered|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H7200"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w and|strong="H3063"\w* \w will|strong="H4428"\w* \w speak|strong="H1696"\w* \w with|strong="H5973"\w* \w him|strong="H5414"\w* \w mouth|strong="H6310"\w* \w to|strong="H1696"\w* \w mouth|strong="H6310"\w*, \w and|strong="H3063"\w* \w his|strong="H5414"\w* \w eyes|strong="H5869"\w* \w will|strong="H4428"\w* \w see|strong="H7200"\w* \w his|strong="H5414"\w* \w eyes|strong="H5869"\w*; +\v 5 \w and|strong="H3068"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w bring|strong="H3212"\w* \w Zedekiah|strong="H6667"\w* \w to|strong="H5704"\w* Babylon, \w and|strong="H3068"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w there|strong="H8033"\w* \w until|strong="H5704"\w* \w I|strong="H3588"\w* \w visit|strong="H6485"\w* \w him|strong="H6485"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w though|strong="H3588"\w* \w you|strong="H3588"\w* \w fight|strong="H3898"\w* \w with|strong="H3068"\w* \w the|strong="H5002"\w* \w Chaldeans|strong="H3778"\w*, \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w prosper|strong="H6743"\w*”’?” +\p +\v 6 \w Jeremiah|strong="H3414"\w* \w said|strong="H1697"\w*, “\w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 7 ‘\w Behold|strong="H2009"\w*, \w Hanamel|strong="H2601"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shallum|strong="H7967"\w* \w your|strong="H3588"\w* \w uncle|strong="H1730"\w* \w will|strong="H1121"\w* \w come|strong="H4941"\w* \w to|strong="H1121"\w* \w you|strong="H3588"\w*, saying, “\w Buy|strong="H7069"\w* \w my|strong="H3588"\w* \w field|strong="H7704"\w* \w that|strong="H3588"\w* \w is|strong="H2009"\w* \w in|strong="H1121"\w* \w Anathoth|strong="H6068"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w right|strong="H4941"\w* \w of|strong="H1121"\w* \w redemption|strong="H1353"\w* \w is|strong="H2009"\w* yours \w to|strong="H1121"\w* \w buy|strong="H7069"\w* \w it|strong="H3588"\w*.”’” +\p +\v 8 “\w So|strong="H3588"\w* \w Hanamel|strong="H2601"\w* \w my|strong="H3068"\w* \w uncle|strong="H1730"\w*’s \w son|strong="H1121"\w* \w came|strong="H3068"\w* \w to|strong="H3068"\w* \w me|strong="H4994"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w court|strong="H2691"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w guard|strong="H4307"\w* \w according|strong="H4941"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w and|strong="H1121"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w me|strong="H4994"\w*, ‘\w Please|strong="H4994"\w* \w buy|strong="H7069"\w* \w my|strong="H3068"\w* \w field|strong="H7704"\w* \w that|strong="H3588"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w Anathoth|strong="H6068"\w*, \w which|strong="H1931"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w land|strong="H7704"\w* \w of|strong="H1121"\w* \w Benjamin|strong="H1144"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w right|strong="H4941"\w* \w of|strong="H1121"\w* \w inheritance|strong="H3425"\w* \w is|strong="H3068"\w* yours, \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w redemption|strong="H1353"\w* \w is|strong="H3068"\w* yours. \w Buy|strong="H7069"\w* \w it|strong="H1931"\w* \w for|strong="H3588"\w* \w yourself|strong="H3045"\w*.’ +\p “\w Then|strong="H3588"\w* \w I|strong="H3588"\w* \w knew|strong="H3045"\w* \w that|strong="H3588"\w* \w this|strong="H1931"\w* \w was|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*. +\v 9 \w I|strong="H1121"\w* \w bought|strong="H7069"\w* \w the|strong="H7069"\w* \w field|strong="H7704"\w* \w that|strong="H1121"\w* \w was|strong="H1121"\w* \w in|strong="H1121"\w* \w Anathoth|strong="H6068"\w* \w of|strong="H1121"\w* \w Hanamel|strong="H2601"\w* \w my|strong="H2601"\w* \w uncle|strong="H1730"\w*’s \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w weighed|strong="H8254"\w* \w him|strong="H7069"\w* \w the|strong="H7069"\w* \w money|strong="H3701"\w*, \w even|strong="H7651"\w* \w seventeen|strong="H7651"\w* \w shekels|strong="H8255"\w*\f + \fr 32:9 \ft A shekel is about 10 grams or about 0.35 ounces.\f* \w of|strong="H1121"\w* \w silver|strong="H3701"\w*. +\v 10 I \w signed|strong="H3789"\w* \w the|strong="H3789"\w* \w deed|strong="H5612"\w*, \w sealed|strong="H2856"\w* \w it|strong="H3789"\w*, \w called|strong="H5749"\w* \w witnesses|strong="H5707"\w*, \w and|strong="H3701"\w* \w weighed|strong="H8254"\w* \w the|strong="H3789"\w* \w money|strong="H3701"\w* \w in|strong="H3789"\w* \w the|strong="H3789"\w* \w balances|strong="H3976"\w* \w to|strong="H5612"\w* him. +\v 11 \w So|strong="H3947"\w* I \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w deed|strong="H5612"\w* \w of|strong="H5612"\w* \w the|strong="H3947"\w* \w purchase|strong="H4736"\w*, both \w that|strong="H5612"\w* \w which|strong="H5612"\w* was \w sealed|strong="H2856"\w*, containing \w the|strong="H3947"\w* \w terms|strong="H4687"\w* \w and|strong="H2706"\w* \w conditions|strong="H2706"\w*, \w and|strong="H2706"\w* \w that|strong="H5612"\w* \w which|strong="H5612"\w* was \w open|strong="H1540"\w*; +\v 12 \w and|strong="H1121"\w* \w I|strong="H5414"\w* \w delivered|strong="H5414"\w* \w the|strong="H3605"\w* \w deed|strong="H5612"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w purchase|strong="H4736"\w* \w to|strong="H5414"\w* \w Baruch|strong="H1263"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Neriah|strong="H5374"\w*, \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Mahseiah|strong="H4271"\w*, \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w presence|strong="H5869"\w* \w of|strong="H1121"\w* \w Hanamel|strong="H2601"\w* \w my|strong="H5414"\w* \w uncle|strong="H1730"\w*’s \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w presence|strong="H5869"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w witnesses|strong="H5707"\w* \w who|strong="H3605"\w* \w signed|strong="H3789"\w* \w the|strong="H3605"\w* \w deed|strong="H5612"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w purchase|strong="H4736"\w*, \w before|strong="H5869"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w* \w who|strong="H3605"\w* \w sat|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w guard|strong="H4307"\w*. +\p +\v 13 “\w I|strong="H6680"\w* \w commanded|strong="H6680"\w* \w Baruch|strong="H1263"\w* \w before|strong="H5869"\w* \w them|strong="H6680"\w*, saying, +\v 14 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H5414"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*: ‘\w Take|strong="H3947"\w* \w these|strong="H2088"\w* \w deeds|strong="H5612"\w*, \w this|strong="H2088"\w* \w deed|strong="H5612"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* \w purchase|strong="H4736"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w sealed|strong="H2856"\w*, \w and|strong="H3478"\w* \w this|strong="H2088"\w* \w deed|strong="H5612"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w open|strong="H1540"\w*, \w and|strong="H3478"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w in|strong="H3478"\w* \w an|strong="H5414"\w* \w earthen|strong="H2789"\w* \w vessel|strong="H3627"\w*, \w that|strong="H3117"\w* \w they|strong="H3117"\w* \w may|strong="H3068"\w* \w last|strong="H5975"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w*.’ +\v 15 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3588"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*: ‘\w Houses|strong="H1004"\w* \w and|strong="H3478"\w* \w fields|strong="H7704"\w* \w and|strong="H3478"\w* \w vineyards|strong="H3754"\w* \w will|strong="H3068"\w* \w yet|strong="H5750"\w* \w again|strong="H5750"\w* \w be|strong="H5750"\w* \w bought|strong="H7069"\w* \w in|strong="H3478"\w* \w this|strong="H2063"\w* \w land|strong="H7704"\w*.’ +\p +\v 16 \w Now|strong="H5414"\w* after \w I|strong="H5414"\w* \w had|strong="H3068"\w* \w delivered|strong="H5414"\w* \w the|strong="H5414"\w* \w deed|strong="H5612"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w purchase|strong="H4736"\w* \w to|strong="H3068"\w* \w Baruch|strong="H1263"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Neriah|strong="H5374"\w*, \w I|strong="H5414"\w* \w prayed|strong="H6419"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, saying, +\b +\mi +\v 17 “Ah \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*! \w Behold|strong="H2009"\w*, \w you|strong="H3605"\w* \w have|strong="H1697"\w* \w made|strong="H6213"\w* \w the|strong="H3605"\w* \w heavens|strong="H8064"\w* \w and|strong="H8064"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w* \w by|strong="H3808"\w* \w your|strong="H3605"\w* \w great|strong="H1419"\w* \w power|strong="H3581"\w* \w and|strong="H8064"\w* \w by|strong="H3808"\w* \w your|strong="H3605"\w* \w outstretched|strong="H5186"\w* \w arm|strong="H2220"\w*. \w There|strong="H2009"\w* \w is|strong="H1697"\w* \w nothing|strong="H3808"\w* \w too|strong="H4480"\w* \w hard|strong="H6381"\w* \w for|strong="H6213"\w* \w you|strong="H3605"\w*. +\v 18 \w You|strong="H6213"\w* \w show|strong="H6213"\w* loving \w kindness|strong="H2617"\w* \w to|strong="H3068"\w* thousands, \w and|strong="H1121"\w* \w repay|strong="H7999"\w* \w the|strong="H6213"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* fathers \w into|strong="H6213"\w* \w the|strong="H6213"\w* \w bosom|strong="H2436"\w* \w of|strong="H1121"\w* \w their|strong="H3068"\w* \w children|strong="H1121"\w* \w after|strong="H8034"\w* \w them|strong="H6213"\w*. \w The|strong="H6213"\w* \w great|strong="H1419"\w*, \w the|strong="H6213"\w* \w mighty|strong="H1368"\w* \w God|strong="H3068"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H1121"\w* \w Armies|strong="H6635"\w* \w is|strong="H3068"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w*: +\v 19 \w great|strong="H1419"\w* \w in|strong="H5921"\w* \w counsel|strong="H6098"\w*, \w and|strong="H1121"\w* \w mighty|strong="H1419"\w* \w in|strong="H5921"\w* \w work|strong="H5950"\w*; \w whose|strong="H1121"\w* \w eyes|strong="H5869"\w* \w are|strong="H1121"\w* \w open|strong="H6491"\w* \w to|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w ways|strong="H1870"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*, \w to|strong="H5921"\w* \w give|strong="H5414"\w* \w everyone|strong="H3605"\w* \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w his|strong="H3605"\w* \w ways|strong="H1870"\w*, \w and|strong="H1121"\w* \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w fruit|strong="H6529"\w* \w of|strong="H1121"\w* \w his|strong="H3605"\w* \w doings|strong="H4611"\w*; +\v 20 \w who|strong="H3478"\w* \w performed|strong="H6213"\w* signs \w and|strong="H3478"\w* \w wonders|strong="H4159"\w* \w in|strong="H3478"\w* \w the|strong="H6213"\w* land \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, both \w in|strong="H3478"\w* \w Israel|strong="H3478"\w* \w and|strong="H3478"\w* \w among|strong="H8034"\w* \w other|strong="H2088"\w* \w men|strong="H6213"\w*; \w and|strong="H3478"\w* \w made|strong="H6213"\w* \w yourself|strong="H6213"\w* \w a|strong="H3068"\w* \w name|strong="H8034"\w*, \w as|strong="H5704"\w* \w it|strong="H7760"\w* \w is|strong="H2088"\w* \w today|strong="H3117"\w*; +\v 21 \w and|strong="H3478"\w* \w brought|strong="H3318"\w* \w your|strong="H5186"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w* \w out|strong="H3318"\w* \w of|strong="H3027"\w* \w the|strong="H3318"\w* land \w of|strong="H3027"\w* \w Egypt|strong="H4714"\w* \w with|strong="H3318"\w* signs, \w with|strong="H3318"\w* \w wonders|strong="H4159"\w*, \w with|strong="H3318"\w* \w a|strong="H3068"\w* \w strong|strong="H2389"\w* \w hand|strong="H3027"\w*, \w with|strong="H3318"\w* \w an|strong="H3318"\w* \w outstretched|strong="H5186"\w* \w arm|strong="H3027"\w*, \w and|strong="H3478"\w* \w with|strong="H3318"\w* \w great|strong="H1419"\w* \w terror|strong="H4172"\w*; +\v 22 \w and|strong="H2461"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w this|strong="H2063"\w* land, which \w you|strong="H5414"\w* \w swore|strong="H7650"\w* \w to|strong="H5414"\w* \w their|strong="H5414"\w* fathers \w to|strong="H5414"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w*, \w a|strong="H3068"\w* land \w flowing|strong="H2100"\w* \w with|strong="H2100"\w* \w milk|strong="H2461"\w* \w and|strong="H2461"\w* \w honey|strong="H1706"\w*. +\v 23 \w They|strong="H3808"\w* \w came|strong="H1980"\w* \w in|strong="H1980"\w* \w and|strong="H1980"\w* \w possessed|strong="H3423"\w* \w it|strong="H6213"\w*, \w but|strong="H3808"\w* \w they|strong="H3808"\w* didn’t \w obey|strong="H8085"\w* \w your|strong="H3605"\w* \w voice|strong="H6963"\w* \w and|strong="H1980"\w* didn’t \w walk|strong="H1980"\w* \w in|strong="H1980"\w* \w your|strong="H3605"\w* \w law|strong="H8451"\w*. \w They|strong="H3808"\w* \w have|strong="H3605"\w* \w done|strong="H6213"\w* \w nothing|strong="H3808"\w* \w of|strong="H6963"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H6680"\w* \w commanded|strong="H6680"\w* \w them|strong="H6213"\w* \w to|strong="H1980"\w* \w do|strong="H6213"\w*. \w Therefore|strong="H2063"\w* \w you|strong="H6680"\w* \w have|strong="H3605"\w* \w caused|strong="H6213"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w evil|strong="H7451"\w* \w to|strong="H1980"\w* \w come|strong="H1980"\w* \w upon|strong="H1980"\w* \w them|strong="H6213"\w*. +\pi1 +\v 24 “\w Behold|strong="H2009"\w*, \w siege|strong="H5550"\w* \w ramps|strong="H5550"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* built \w against|strong="H5921"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w* \w to|strong="H1696"\w* \w take|strong="H3920"\w* \w it|strong="H5414"\w*. \w The|strong="H6440"\w* \w city|strong="H5892"\w* \w is|strong="H3027"\w* \w given|strong="H5414"\w* \w into|strong="H5921"\w* \w the|strong="H6440"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H6440"\w* \w Chaldeans|strong="H3778"\w* \w who|strong="H3778"\w* \w fight|strong="H3898"\w* \w against|strong="H5921"\w* \w it|strong="H5414"\w*, \w because|strong="H5921"\w* \w of|strong="H3027"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w*, \w of|strong="H3027"\w* \w the|strong="H6440"\w* \w famine|strong="H7458"\w*, \w and|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H6440"\w* \w pestilence|strong="H1698"\w*. \w What|strong="H7200"\w* \w you|strong="H5414"\w* \w have|strong="H1961"\w* \w spoken|strong="H1696"\w* \w has|strong="H1961"\w* \w happened|strong="H1961"\w*. \w Behold|strong="H2009"\w*, \w you|strong="H5414"\w* \w see|strong="H7200"\w* \w it|strong="H5414"\w*. +\v 25 \w You|strong="H5414"\w* \w have|strong="H3027"\w* said \w to|strong="H5414"\w* \w me|strong="H5414"\w*, \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, ‘\w Buy|strong="H7069"\w* \w the|strong="H5414"\w* \w field|strong="H7704"\w* \w for|strong="H3027"\w* \w money|strong="H3701"\w*, \w and|strong="H3701"\w* \w call|strong="H5749"\w* \w witnesses|strong="H5707"\w*;’ whereas \w the|strong="H5414"\w* \w city|strong="H5892"\w* \w is|strong="H3027"\w* \w given|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5414"\w* \w Chaldeans|strong="H3778"\w*.” +\p +\v 26 \w Then|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w*, \w saying|strong="H1697"\w*, +\v 27 “\w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w*. \w Is|strong="H3068"\w* \w there|strong="H2009"\w* \w anything|strong="H3605"\w* \w too|strong="H4480"\w* \w hard|strong="H6381"\w* \w for|strong="H3068"\w* \w me|strong="H4480"\w*? +\v 28 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w Chaldeans|strong="H3778"\w*, \w and|strong="H3068"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w and|strong="H3068"\w* \w he|strong="H3651"\w* \w will|strong="H3068"\w* \w take|strong="H3920"\w* \w it|strong="H5414"\w*. +\v 29 \w The|strong="H5921"\w* \w Chaldeans|strong="H3778"\w*, \w who|strong="H3778"\w* \w fight|strong="H3898"\w* \w against|strong="H5921"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w*, \w will|strong="H1004"\w* \w come|strong="H5892"\w* \w and|strong="H1004"\w* \w set|strong="H3341"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w on|strong="H5921"\w* \w fire|strong="H3341"\w*, \w and|strong="H1004"\w* \w burn|strong="H8313"\w* \w it|strong="H5921"\w* \w with|strong="H8313"\w* \w the|strong="H5921"\w* \w houses|strong="H1004"\w* \w on|strong="H5921"\w* whose \w roofs|strong="H1406"\w* \w they|strong="H5921"\w* \w have|strong="H5892"\w* \w offered|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H5921"\w* \w Baal|strong="H1168"\w*, \w and|strong="H1004"\w* \w poured|strong="H5258"\w* \w out|strong="H5258"\w* \w drink|strong="H5262"\w* \w offerings|strong="H5262"\w* \w to|strong="H5921"\w* \w other|strong="H2063"\w* gods, \w to|strong="H5921"\w* \w provoke|strong="H3707"\w* \w me|strong="H5921"\w* \w to|strong="H5921"\w* \w anger|strong="H3707"\w*. +\p +\v 30 “\w For|strong="H3588"\w* \w the|strong="H5002"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w and|strong="H1121"\w* \w the|strong="H5002"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w have|strong="H1961"\w* \w done|strong="H6213"\w* \w only|strong="H3588"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3478"\w* \w my|strong="H3068"\w* \w sight|strong="H5869"\w* \w from|strong="H3478"\w* \w their|strong="H3068"\w* \w youth|strong="H5271"\w*; \w for|strong="H3588"\w* \w the|strong="H5002"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w have|strong="H1961"\w* \w only|strong="H3588"\w* \w provoked|strong="H3707"\w* \w me|strong="H6213"\w* \w to|strong="H3478"\w* \w anger|strong="H3707"\w* \w with|strong="H3068"\w* \w the|strong="H5002"\w* \w work|strong="H4639"\w* \w of|strong="H1121"\w* \w their|strong="H3068"\w* \w hands|strong="H3027"\w*, \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 31 \w For|strong="H3588"\w* \w this|strong="H2088"\w* \w city|strong="H5892"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w to|strong="H5704"\w* \w me|strong="H6440"\w* \w a|strong="H3068"\w* provocation \w of|strong="H3117"\w* \w my|strong="H5921"\w* \w anger|strong="H2534"\w* \w and|strong="H3117"\w* \w of|strong="H3117"\w* \w my|strong="H5921"\w* \w wrath|strong="H2534"\w* \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w built|strong="H1129"\w* \w it|strong="H5921"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, \w so|strong="H4480"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w should|strong="H3588"\w* \w remove|strong="H5493"\w* \w it|strong="H5921"\w* \w from|strong="H4480"\w* \w before|strong="H6440"\w* \w my|strong="H5921"\w* \w face|strong="H6440"\w*, +\v 32 \w because|strong="H5921"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w which|strong="H1992"\w* \w they|strong="H1992"\w* \w have|strong="H1121"\w* \w done|strong="H6213"\w* \w to|strong="H3478"\w* \w provoke|strong="H3707"\w* \w me|strong="H5921"\w* \w to|strong="H3478"\w* \w anger|strong="H3707"\w*—\w they|strong="H1992"\w*, \w their|strong="H3605"\w* \w kings|strong="H4428"\w*, \w their|strong="H3605"\w* \w princes|strong="H8269"\w*, \w their|strong="H3605"\w* \w priests|strong="H3548"\w*, \w their|strong="H3605"\w* \w prophets|strong="H5030"\w*, \w the|strong="H3605"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*. +\v 33 \w They|strong="H3808"\w* \w have|strong="H6437"\w* \w turned|strong="H6437"\w* \w their|strong="H3947"\w* \w backs|strong="H6203"\w* \w to|strong="H6440"\w* \w me|strong="H6440"\w*, \w and|strong="H7925"\w* \w not|strong="H3808"\w* \w their|strong="H3947"\w* \w faces|strong="H6440"\w*. \w Although|strong="H3808"\w* \w I|strong="H3808"\w* \w taught|strong="H3925"\w* \w them|strong="H6440"\w*, \w rising|strong="H7925"\w* \w up|strong="H7925"\w* \w early|strong="H7925"\w* \w and|strong="H7925"\w* \w teaching|strong="H3925"\w* \w them|strong="H6440"\w*, \w yet|strong="H3808"\w* \w they|strong="H3808"\w* \w have|strong="H6437"\w* \w not|strong="H3808"\w* \w listened|strong="H8085"\w* \w to|strong="H6440"\w* \w receive|strong="H3947"\w* \w instruction|strong="H4148"\w*. +\v 34 \w But|strong="H5921"\w* \w they|strong="H5921"\w* \w set|strong="H7760"\w* \w their|strong="H7760"\w* \w abominations|strong="H8251"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w which|strong="H1004"\w* \w is|strong="H8034"\w* \w called|strong="H7121"\w* \w by|strong="H5921"\w* \w my|strong="H7760"\w* \w name|strong="H8034"\w*, \w to|strong="H5921"\w* \w defile|strong="H2930"\w* \w it|strong="H7760"\w*. +\v 35 \w They|strong="H3808"\w* \w built|strong="H1129"\w* \w the|strong="H5921"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w of|strong="H1121"\w* \w Baal|strong="H1168"\w*, \w which|strong="H1116"\w* \w are|strong="H1121"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w valley|strong="H1516"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hinnom|strong="H2011"\w*, \w to|strong="H5927"\w* \w cause|strong="H6213"\w* \w their|strong="H5921"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w their|strong="H5921"\w* \w daughters|strong="H1323"\w* \w to|strong="H5927"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* fire \w to|strong="H5927"\w* \w Molech|strong="H4432"\w*, \w which|strong="H1116"\w* \w I|strong="H5921"\w* didn’t \w command|strong="H6680"\w* \w them|strong="H5921"\w*. \w It|strong="H5921"\w* didn’t \w even|strong="H3808"\w* \w come|strong="H5927"\w* \w into|strong="H5927"\w* \w my|strong="H5921"\w* \w mind|strong="H3820"\w*, \w that|strong="H4616"\w* \w they|strong="H3808"\w* \w should|strong="H6213"\w* \w do|strong="H6213"\w* \w this|strong="H2063"\w* \w abomination|strong="H8441"\w*, \w to|strong="H5927"\w* \w cause|strong="H6213"\w* \w Judah|strong="H3063"\w* \w to|strong="H5927"\w* \w sin|strong="H2398"\w*.” +\p +\v 36 \w Now|strong="H6258"\w* \w therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5414"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w* \w concerning|strong="H3068"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w*, \w about|strong="H4428"\w* \w which|strong="H3068"\w* \w you|strong="H5414"\w* \w say|strong="H3478"\w*, “\w It|strong="H5414"\w* \w is|strong="H3068"\w* \w given|strong="H5414"\w* \w into|strong="H2719"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w by|strong="H3027"\w* \w the|strong="H5414"\w* \w sword|strong="H2719"\w*, \w by|strong="H3027"\w* \w the|strong="H5414"\w* \w famine|strong="H7458"\w*, \w and|strong="H3478"\w* \w by|strong="H3027"\w* \w the|strong="H5414"\w* \w pestilence|strong="H1698"\w*:” +\v 37 “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H2534"\w* \w gather|strong="H6908"\w* \w them|strong="H7725"\w* \w out|strong="H5080"\w* \w of|strong="H3427"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* countries \w where|strong="H8033"\w* \w I|strong="H2005"\w* \w have|strong="H3605"\w* \w driven|strong="H5080"\w* \w them|strong="H7725"\w* \w in|strong="H3427"\w* \w my|strong="H3605"\w* \w anger|strong="H2534"\w*, \w and|strong="H7725"\w* \w in|strong="H3427"\w* \w my|strong="H3605"\w* \w wrath|strong="H2534"\w*, \w and|strong="H7725"\w* \w in|strong="H3427"\w* \w great|strong="H1419"\w* \w indignation|strong="H7110"\w*; \w and|strong="H7725"\w* \w I|strong="H2005"\w* \w will|strong="H2534"\w* \w bring|strong="H7725"\w* \w them|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*. \w I|strong="H2005"\w* \w will|strong="H2534"\w* \w cause|strong="H7725"\w* \w them|strong="H7725"\w* \w to|strong="H7725"\w* \w dwell|strong="H3427"\w* safely. +\v 38 \w Then|strong="H1961"\w* \w they|strong="H5971"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w my|strong="H1961"\w* \w people|strong="H5971"\w*, \w and|strong="H5971"\w* \w I|strong="H5971"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w their|strong="H1961"\w* God. +\v 39 \w I|strong="H3117"\w* \w will|strong="H1121"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w one|strong="H3605"\w* \w heart|strong="H3820"\w* \w and|strong="H1121"\w* \w one|strong="H3605"\w* \w way|strong="H1870"\w*, \w that|strong="H3605"\w* \w they|strong="H3117"\w* \w may|strong="H1121"\w* \w fear|strong="H3372"\w* \w me|strong="H5414"\w* \w forever|strong="H3605"\w*, \w for|strong="H3117"\w* \w their|strong="H3605"\w* \w good|strong="H2896"\w* \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w good|strong="H2896"\w* \w of|strong="H1121"\w* \w their|strong="H3605"\w* \w children|strong="H1121"\w* \w after|strong="H3117"\w* \w them|strong="H5414"\w*. +\v 40 \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w make|strong="H5414"\w* \w an|strong="H5414"\w* \w everlasting|strong="H5769"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w them|strong="H5414"\w*, \w that|strong="H5414"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w not|strong="H3808"\w* \w turn|strong="H7725"\w* \w away|strong="H5493"\w* \w from|strong="H7725"\w* following \w them|strong="H5414"\w*, \w to|strong="H7725"\w* \w do|strong="H3190"\w* \w them|strong="H5414"\w* \w good|strong="H3190"\w*. \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w put|strong="H5414"\w* \w my|strong="H5414"\w* \w fear|strong="H3374"\w* \w in|strong="H5921"\w* \w their|strong="H5414"\w* \w hearts|strong="H3824"\w*, \w that|strong="H5414"\w* \w they|strong="H3808"\w* \w may|strong="H7725"\w* \w not|strong="H3808"\w* \w depart|strong="H5493"\w* \w from|strong="H7725"\w* \w me|strong="H5414"\w*. +\v 41 Yes, \w I|strong="H5921"\w* \w will|strong="H5315"\w* \w rejoice|strong="H7797"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w* \w to|strong="H5921"\w* \w do|strong="H2895"\w* \w them|strong="H5921"\w* \w good|strong="H2895"\w*, \w and|strong="H3820"\w* \w I|strong="H5921"\w* \w will|strong="H5315"\w* \w plant|strong="H5193"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w this|strong="H2063"\w* land assuredly \w with|strong="H5921"\w* \w my|strong="H3605"\w* \w whole|strong="H3605"\w* \w heart|strong="H3820"\w* \w and|strong="H3820"\w* \w with|strong="H5921"\w* \w my|strong="H3605"\w* \w whole|strong="H3605"\w* \w soul|strong="H5315"\w*.” +\p +\v 42 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Just|strong="H3605"\w* \w as|strong="H3651"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w brought|strong="H3068"\w* \w all|strong="H3605"\w* \w this|strong="H2088"\w* \w great|strong="H1419"\w* \w evil|strong="H7451"\w* \w on|strong="H5921"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*, \w so|strong="H3651"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w bring|strong="H7451"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w good|strong="H2896"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w promised|strong="H1696"\w* \w them|strong="H5921"\w*. +\v 43 \w Fields|strong="H7704"\w* \w will|strong="H3027"\w* \w be|strong="H3027"\w* \w bought|strong="H7069"\w* \w in|strong="H3027"\w* \w this|strong="H2063"\w* \w land|strong="H7704"\w*, \w about|strong="H7704"\w* \w which|strong="H1931"\w* \w you|strong="H5414"\w* say, ‘\w It|strong="H5414"\w* \w is|strong="H1931"\w* \w desolate|strong="H8077"\w*, \w without|strong="H8077"\w* man \w or|strong="H7704"\w* animal. \w It|strong="H5414"\w* \w is|strong="H1931"\w* \w given|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5414"\w* \w Chaldeans|strong="H3778"\w*.’ +\v 44 Men \w will|strong="H3068"\w* \w buy|strong="H7069"\w* \w fields|strong="H7704"\w* \w for|strong="H3588"\w* \w money|strong="H3701"\w*, \w sign|strong="H3789"\w* \w the|strong="H5002"\w* \w deeds|strong="H5612"\w*, \w seal|strong="H2856"\w* \w them|strong="H7725"\w*, \w and|strong="H3063"\w* \w call|strong="H5749"\w* \w witnesses|strong="H5707"\w*, \w in|strong="H3068"\w* \w the|strong="H5002"\w* \w land|strong="H7704"\w* \w of|strong="H3068"\w* \w Benjamin|strong="H1144"\w*, \w and|strong="H3063"\w* \w in|strong="H3068"\w* \w the|strong="H5002"\w* \w places|strong="H5439"\w* \w around|strong="H5439"\w* \w Jerusalem|strong="H3389"\w*, \w in|strong="H3068"\w* \w the|strong="H5002"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w*, \w in|strong="H3068"\w* \w the|strong="H5002"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*, \w in|strong="H3068"\w* \w the|strong="H5002"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* \w lowland|strong="H8219"\w*, \w and|strong="H3063"\w* \w in|strong="H3068"\w* \w the|strong="H5002"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* \w South|strong="H5045"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w cause|strong="H7725"\w* \w their|strong="H3068"\w* \w captivity|strong="H7622"\w* \w to|strong="H7725"\w* \w be|strong="H3068"\w* reversed,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\c 33 +\nb +\v 1 \w Moreover|strong="H5750"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H3068"\w* \w second|strong="H8145"\w* \w time|strong="H8145"\w*, \w while|strong="H5750"\w* \w he|strong="H1931"\w* \w was|strong="H3068"\w* \w still|strong="H5750"\w* locked \w up|strong="H6113"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w court|strong="H2691"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w guard|strong="H4307"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w does|strong="H6213"\w* \w it|strong="H6213"\w*, \w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w forms|strong="H3335"\w* \w it|strong="H6213"\w* \w to|strong="H3068"\w* \w establish|strong="H3559"\w* \w it|strong="H6213"\w*—\w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w*, \w says|strong="H3541"\w*: +\v 3 ‘\w Call|strong="H7121"\w* \w to|strong="H7121"\w* \w me|strong="H5046"\w*, \w and|strong="H6030"\w* \w I|strong="H3045"\w* \w will|strong="H3808"\w* \w answer|strong="H6030"\w* \w you|strong="H5046"\w*, \w and|strong="H6030"\w* \w will|strong="H3808"\w* \w show|strong="H3045"\w* \w you|strong="H5046"\w* \w great|strong="H1419"\w* \w and|strong="H6030"\w* \w difficult|strong="H1419"\w* \w things|strong="H1419"\w*, which \w you|strong="H5046"\w* don’t \w know|strong="H3045"\w*.’ +\v 4 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* \w houses|strong="H1004"\w* \w of|strong="H4428"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w and|strong="H3063"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* \w houses|strong="H1004"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w which|strong="H3068"\w* \w are|strong="H3478"\w* \w broken|strong="H5422"\w* \w down|strong="H5422"\w* \w to|strong="H3478"\w* \w make|strong="H3588"\w* \w a|strong="H3068"\w* defense \w against|strong="H5921"\w* \w the|strong="H5921"\w* mounds \w and|strong="H3063"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w*: +\v 5 ‘\w While|strong="H5921"\w* \w men|strong="H7451"\w* \w come|strong="H2534"\w* \w to|strong="H5921"\w* \w fight|strong="H3898"\w* \w with|strong="H4390"\w* \w the|strong="H3605"\w* \w Chaldeans|strong="H3778"\w*, \w and|strong="H5892"\w* \w to|strong="H5921"\w* \w fill|strong="H4390"\w* \w them|strong="H5921"\w* \w with|strong="H4390"\w* \w the|strong="H3605"\w* \w dead|strong="H6297"\w* \w bodies|strong="H6297"\w* \w of|strong="H5892"\w* \w men|strong="H7451"\w*, \w whom|strong="H6440"\w* \w I|strong="H5921"\w* \w have|strong="H3605"\w* \w killed|strong="H5221"\w* \w in|strong="H5921"\w* \w my|strong="H3605"\w* \w anger|strong="H2534"\w* \w and|strong="H5892"\w* \w in|strong="H5921"\w* \w my|strong="H3605"\w* \w wrath|strong="H2534"\w*, \w and|strong="H5892"\w* \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w whose|strong="H3605"\w* \w wickedness|strong="H7451"\w* \w I|strong="H5921"\w* \w have|strong="H3605"\w* \w hidden|strong="H5641"\w* \w my|strong="H3605"\w* \w face|strong="H6440"\w* \w from|strong="H6440"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w*, +\v 6 \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H1992"\w* \w bring|strong="H5927"\w* \w it|strong="H5927"\w* \w health|strong="H4832"\w* \w and|strong="H5927"\w* \w healing|strong="H4832"\w*, \w and|strong="H5927"\w* \w I|strong="H2005"\w* \w will|strong="H1992"\w* \w cure|strong="H4832"\w* \w them|strong="H1992"\w*; \w and|strong="H5927"\w* \w I|strong="H2005"\w* \w will|strong="H1992"\w* \w reveal|strong="H1540"\w* \w to|strong="H5927"\w* \w them|strong="H1992"\w* \w abundance|strong="H6283"\w* \w of|strong="H7965"\w* \w peace|strong="H7965"\w* \w and|strong="H5927"\w* truth. +\v 7 \w I|strong="H3478"\w* \w will|strong="H3478"\w* \w restore|strong="H7725"\w* \w the|strong="H7725"\w* \w fortunes|strong="H7622"\w* \w of|strong="H7622"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3063"\w* \w will|strong="H3478"\w* \w build|strong="H1129"\w* \w them|strong="H7725"\w* \w as|strong="H3063"\w* \w at|strong="H3478"\w* \w the|strong="H7725"\w* \w first|strong="H7223"\w*. +\v 8 \w I|strong="H3605"\w* \w will|strong="H5771"\w* \w cleanse|strong="H2891"\w* them \w from|strong="H6586"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w iniquity|strong="H5771"\w* \w by|strong="H3605"\w* \w which|strong="H3605"\w* \w they|strong="H3605"\w* \w have|strong="H5771"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w me|strong="H2398"\w*. \w I|strong="H3605"\w* \w will|strong="H5771"\w* \w pardon|strong="H5545"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w iniquities|strong="H5771"\w* \w by|strong="H3605"\w* \w which|strong="H3605"\w* \w they|strong="H3605"\w* \w have|strong="H5771"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w me|strong="H2398"\w* \w and|strong="H2398"\w* \w by|strong="H3605"\w* \w which|strong="H3605"\w* \w they|strong="H3605"\w* \w have|strong="H5771"\w* \w transgressed|strong="H6586"\w* \w against|strong="H2398"\w* \w me|strong="H2398"\w*. +\v 9 \w This|strong="H6213"\w* city \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w to|strong="H1961"\w* \w me|strong="H5921"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w name|strong="H8034"\w* \w of|strong="H8034"\w* \w joy|strong="H8342"\w*, \w for|strong="H5921"\w* \w praise|strong="H8416"\w*, \w and|strong="H8085"\w* \w for|strong="H5921"\w* \w glory|strong="H8597"\w*, \w before|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w of|strong="H8034"\w* \w the|strong="H3605"\w* earth, \w which|strong="H1471"\w* \w will|strong="H1961"\w* \w hear|strong="H8085"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w good|strong="H2896"\w* \w that|strong="H3605"\w* \w I|strong="H5921"\w* \w do|strong="H6213"\w* \w to|strong="H1961"\w* \w them|strong="H5921"\w*, \w and|strong="H8085"\w* \w will|strong="H1961"\w* \w fear|strong="H6342"\w* \w and|strong="H8085"\w* \w tremble|strong="H7264"\w* \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w good|strong="H2896"\w* \w and|strong="H8085"\w* \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peace|strong="H7965"\w* \w that|strong="H3605"\w* \w I|strong="H5921"\w* \w provide|strong="H6213"\w* \w to|strong="H1961"\w* \w it|strong="H5921"\w*.’” +\p +\v 10 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Yet|strong="H5750"\w* \w again|strong="H5750"\w* \w there|strong="H3427"\w* \w will|strong="H3068"\w* \w be|strong="H5750"\w* \w heard|strong="H8085"\w* \w in|strong="H3427"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*, \w about|strong="H8085"\w* \w which|strong="H1931"\w* \w you|strong="H4725"\w* say, ‘\w It|strong="H1931"\w* \w is|strong="H3068"\w* \w waste|strong="H8074"\w*, \w without|strong="H2351"\w* \w man|strong="H2088"\w* \w and|strong="H3063"\w* \w without|strong="H2351"\w* animal, \w even|strong="H5750"\w* \w in|strong="H3427"\w* \w the|strong="H8085"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w in|strong="H3427"\w* \w the|strong="H8085"\w* \w streets|strong="H2351"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, \w that|strong="H8085"\w* \w are|strong="H3068"\w* \w desolate|strong="H8074"\w*, \w without|strong="H2351"\w* \w man|strong="H2088"\w* \w and|strong="H3063"\w* \w without|strong="H2351"\w* \w inhabitant|strong="H3427"\w* \w and|strong="H3063"\w* \w without|strong="H2351"\w* animal,’ +\v 11 \w the|strong="H3588"\w* \w voice|strong="H6963"\w* \w of|strong="H1004"\w* \w joy|strong="H8057"\w* \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w voice|strong="H6963"\w* \w of|strong="H1004"\w* \w gladness|strong="H8057"\w*, \w the|strong="H3588"\w* \w voice|strong="H6963"\w* \w of|strong="H1004"\w* \w the|strong="H3588"\w* \w bridegroom|strong="H2860"\w* \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w voice|strong="H6963"\w* \w of|strong="H1004"\w* \w the|strong="H3588"\w* \w bride|strong="H3618"\w*, \w the|strong="H3588"\w* \w voice|strong="H6963"\w* \w of|strong="H1004"\w* \w those|strong="H3588"\w* \w who|strong="H3068"\w* \w say|strong="H7725"\w*, ‘\w Give|strong="H3034"\w* \w thanks|strong="H3034"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w*, \w for|strong="H3588"\w* \w his|strong="H3068"\w* \w loving|strong="H2896"\w* \w kindness|strong="H2617"\w* \w endures|strong="H5769"\w* \w forever|strong="H5769"\w*;’ \w who|strong="H3068"\w* \w bring|strong="H7725"\w* \w thanksgiving|strong="H8426"\w* \w into|strong="H7725"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w cause|strong="H7725"\w* \w the|strong="H3588"\w* \w captivity|strong="H7622"\w* \w of|strong="H1004"\w* \w the|strong="H3588"\w* land \w to|strong="H7725"\w* \w be|strong="H3068"\w* reversed \w as|strong="H3068"\w* \w at|strong="H3068"\w* \w the|strong="H3588"\w* \w first|strong="H7223"\w*,” says \w Yahweh|strong="H3068"\w*. +\p +\v 12 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: “\w Yet|strong="H5750"\w* \w again|strong="H5750"\w* \w there|strong="H1961"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w in|strong="H3068"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*, \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w waste|strong="H2720"\w*, \w without|strong="H2720"\w* \w man|strong="H3605"\w* \w and|strong="H3068"\w* \w without|strong="H2720"\w* \w animal|strong="H1961"\w*, \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w cities|strong="H5892"\w*, \w a|strong="H3068"\w* \w habitation|strong="H5116"\w* \w of|strong="H3068"\w* \w shepherds|strong="H7462"\w* \w causing|strong="H7462"\w* \w their|strong="H3605"\w* \w flocks|strong="H6629"\w* \w to|strong="H5704"\w* \w lie|strong="H7257"\w* \w down|strong="H7257"\w*. +\v 13 \w In|strong="H5921"\w* \w the|strong="H5921"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w hill|strong="H2022"\w* \w country|strong="H2022"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w lowland|strong="H8219"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w South|strong="H5045"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H3068"\w* \w Benjamin|strong="H1144"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w places|strong="H3027"\w* \w around|strong="H5439"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3063"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w*, \w the|strong="H5921"\w* \w flocks|strong="H6629"\w* \w will|strong="H3068"\w* \w again|strong="H5750"\w* \w pass|strong="H5674"\w* \w under|strong="H5921"\w* \w the|strong="H5921"\w* \w hands|strong="H3027"\w* \w of|strong="H3068"\w* \w him|strong="H5921"\w* \w who|strong="H3068"\w* \w counts|strong="H4487"\w* \w them|strong="H5921"\w*,” says \w Yahweh|strong="H3068"\w*. +\p +\v 14 “\w Behold|strong="H2009"\w*, \w the|strong="H5002"\w* \w days|strong="H3117"\w* \w come|strong="H3478"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w that|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w perform|strong="H6965"\w* \w that|strong="H3117"\w* \w good|strong="H2896"\w* \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w I|strong="H3117"\w* \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w concerning|strong="H5921"\w* \w the|strong="H5002"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w concerning|strong="H5921"\w* \w the|strong="H5002"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w*. +\q1 +\v 15 “\w In|strong="H6213"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w* \w and|strong="H3117"\w* \w at|strong="H1732"\w* \w that|strong="H3117"\w* \w time|strong="H6256"\w*, +\q2 \w I|strong="H3117"\w* \w will|strong="H1931"\w* \w cause|strong="H4941"\w* \w a|strong="H3068"\w* \w Branch|strong="H6780"\w* \w of|strong="H3117"\w* \w righteousness|strong="H6666"\w* \w to|strong="H6213"\w* \w grow|strong="H6779"\w* \w up|strong="H6779"\w* \w to|strong="H6213"\w* \w David|strong="H1732"\w*. +\q2 \w He|strong="H1931"\w* \w will|strong="H1931"\w* \w execute|strong="H6213"\w* \w justice|strong="H4941"\w* \w and|strong="H3117"\w* \w righteousness|strong="H6666"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* land. +\q1 +\v 16 \w In|strong="H3068"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w* \w Judah|strong="H3063"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w saved|strong="H3467"\w*, +\q2 \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w* \w will|strong="H3068"\w* \w dwell|strong="H7931"\w* safely. +\q1 \w This|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w name|strong="H7121"\w* \w by|strong="H3117"\w* \w which|strong="H3068"\w* \w she|strong="H7121"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w called|strong="H7121"\w*: +\q2 \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w righteousness|strong="H6664"\w*.” +\p +\v 17 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w David|strong="H1732"\w* \w will|strong="H3068"\w* \w never|strong="H3808"\w* \w lack|strong="H3772"\w* \w a|strong="H3068"\w* man \w to|strong="H3478"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w throne|strong="H3678"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. +\v 18 \w The|strong="H3605"\w* \w Levitical|strong="H3881"\w* \w priests|strong="H3548"\w* won’t \w lack|strong="H3772"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w to|strong="H5927"\w* \w offer|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w*, \w to|strong="H5927"\w* \w burn|strong="H6999"\w* \w meal|strong="H4503"\w* \w offerings|strong="H5930"\w*, \w and|strong="H3117"\w* \w to|strong="H5927"\w* \w do|strong="H6213"\w* \w sacrifice|strong="H2077"\w* \w continually|strong="H3605"\w*.” +\p +\v 19 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w*, \w saying|strong="H1697"\w*, +\v 20 “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w If|strong="H1961"\w* \w you|strong="H3117"\w* can \w break|strong="H6565"\w* \w my|strong="H3068"\w* \w covenant|strong="H1285"\w* \w of|strong="H3068"\w* \w the|strong="H3541"\w* \w day|strong="H3117"\w* \w and|strong="H3068"\w* \w my|strong="H3068"\w* \w covenant|strong="H1285"\w* \w of|strong="H3068"\w* \w the|strong="H3541"\w* \w night|strong="H3915"\w*, \w so|strong="H3541"\w* \w that|strong="H3117"\w* \w there|strong="H1961"\w* \w will|strong="H3068"\w* \w not|strong="H1115"\w* \w be|strong="H1961"\w* \w day|strong="H3117"\w* \w and|strong="H3068"\w* \w night|strong="H3915"\w* \w in|strong="H3068"\w* \w their|strong="H3068"\w* \w time|strong="H6256"\w*, +\v 21 \w then|strong="H1961"\w* \w my|strong="H1732"\w* \w covenant|strong="H1285"\w* \w could|strong="H1571"\w* \w also|strong="H1571"\w* \w be|strong="H1961"\w* \w broken|strong="H6565"\w* \w with|strong="H1285"\w* \w David|strong="H1732"\w* \w my|strong="H1732"\w* \w servant|strong="H5650"\w*, \w that|strong="H3548"\w* \w he|strong="H1732"\w* won’t \w have|strong="H1961"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w to|strong="H1961"\w* \w reign|strong="H4427"\w* \w on|strong="H5921"\w* \w his|strong="H1732"\w* \w throne|strong="H3678"\w*; \w and|strong="H1121"\w* \w with|strong="H1285"\w* \w the|strong="H5921"\w* \w Levitical|strong="H3881"\w* \w priests|strong="H3548"\w*, \w my|strong="H1732"\w* \w ministers|strong="H8334"\w*. +\v 22 \w As|strong="H3651"\w* \w the|strong="H3651"\w* \w army|strong="H6635"\w* \w of|strong="H5650"\w* \w the|strong="H3651"\w* \w sky|strong="H8064"\w* \w can|strong="H5650"\w*’t \w be|strong="H3808"\w* \w counted|strong="H5608"\w*, \w and|strong="H8064"\w* \w the|strong="H3651"\w* \w sand|strong="H2344"\w* \w of|strong="H5650"\w* \w the|strong="H3651"\w* \w sea|strong="H3220"\w* \w can|strong="H5650"\w*’t \w be|strong="H3808"\w* \w measured|strong="H4058"\w*, \w so|strong="H3651"\w* \w I|strong="H3651"\w* \w will|strong="H5650"\w* \w multiply|strong="H7235"\w* \w the|strong="H3651"\w* \w offspring|strong="H2233"\w* \w of|strong="H5650"\w* \w David|strong="H1732"\w* \w my|strong="H1732"\w* \w servant|strong="H5650"\w* \w and|strong="H8064"\w* \w the|strong="H3651"\w* \w Levites|strong="H3881"\w* \w who|strong="H5650"\w* \w minister|strong="H8334"\w* \w to|strong="H1732"\w* \w me|strong="H5650"\w*.’” +\p +\v 23 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w*, \w saying|strong="H1697"\w*, +\v 24 “Don’t \w consider|strong="H7200"\w* \w what|strong="H4100"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w*, \w saying|strong="H1696"\w*, ‘\w Has|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w cast|strong="H3068"\w* \w off|strong="H3988"\w* \w the|strong="H6440"\w* \w two|strong="H8147"\w* \w families|strong="H4940"\w* \w which|strong="H3068"\w* \w he|strong="H3068"\w* chose?’ \w Thus|strong="H2088"\w* \w they|strong="H3068"\w* \w despise|strong="H3988"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w*, \w that|strong="H5971"\w* \w they|strong="H3068"\w* \w should|strong="H3068"\w* \w be|strong="H1961"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*.” +\v 25 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w If|strong="H7760"\w* \w my|strong="H3068"\w* \w covenant|strong="H1285"\w* \w of|strong="H3068"\w* \w day|strong="H3119"\w* \w and|strong="H3068"\w* \w night|strong="H3915"\w* fails, \w if|strong="H7760"\w* \w I|strong="H3541"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w appointed|strong="H7760"\w* \w the|strong="H3541"\w* \w ordinances|strong="H2708"\w* \w of|strong="H3068"\w* \w heaven|strong="H8064"\w* \w and|strong="H3068"\w* \w earth|strong="H8064"\w*, +\v 26 \w then|strong="H3947"\w* \w I|strong="H3588"\w* \w will|strong="H5650"\w* \w also|strong="H1571"\w* \w cast|strong="H3988"\w* \w away|strong="H7725"\w* \w the|strong="H3588"\w* \w offspring|strong="H2233"\w* \w of|strong="H5650"\w* \w Jacob|strong="H3290"\w*, \w and|strong="H7725"\w* \w of|strong="H5650"\w* \w David|strong="H1732"\w* \w my|strong="H1732"\w* \w servant|strong="H5650"\w*, \w so|strong="H3947"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H5650"\w* \w not|strong="H3588"\w* \w take|strong="H3947"\w* \w of|strong="H5650"\w* \w his|strong="H3947"\w* \w offspring|strong="H2233"\w* \w to|strong="H7725"\w* \w be|strong="H1571"\w* \w rulers|strong="H4910"\w* \w over|strong="H4910"\w* \w the|strong="H3588"\w* \w offspring|strong="H2233"\w* \w of|strong="H5650"\w* \w Abraham|strong="H3947"\w*, \w Isaac|strong="H3446"\w*, \w and|strong="H7725"\w* \w Jacob|strong="H3290"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H5650"\w* \w cause|strong="H7725"\w* \w their|strong="H3947"\w* \w captivity|strong="H7622"\w* \w to|strong="H7725"\w* \w be|strong="H1571"\w* reversed \w and|strong="H7725"\w* \w will|strong="H5650"\w* \w have|strong="H7355"\w* \w mercy|strong="H7355"\w* \w on|strong="H7355"\w* \w them|strong="H7725"\w*.” +\c 34 +\p +\v 1 \w The|strong="H3605"\w* \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w* \w from|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w when|strong="H1961"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w army|strong="H2428"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* earth \w that|strong="H5971"\w* \w were|strong="H1961"\w* \w under|strong="H5921"\w* \w his|strong="H3605"\w* \w dominion|strong="H4475"\w*, \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w*, \w were|strong="H1961"\w* \w fighting|strong="H3898"\w* \w against|strong="H5921"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H3068"\w* \w against|strong="H5921"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w cities|strong="H5892"\w*, \w saying|strong="H1697"\w*: +\v 2 “\w Yahweh|strong="H3068"\w*, \w the|strong="H5414"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*, ‘\w Go|strong="H1980"\w*, \w and|strong="H1980"\w* speak \w to|strong="H1980"\w* \w Zedekiah|strong="H6667"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w and|strong="H1980"\w* tell \w him|strong="H5414"\w*, \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w into|strong="H1980"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w and|strong="H1980"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w burn|strong="H8313"\w* \w it|strong="H5414"\w* \w with|strong="H1980"\w* fire. +\v 3 \w You|strong="H3588"\w* won’t \w escape|strong="H4422"\w* \w out|strong="H5414"\w* \w of|strong="H4428"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w*, \w but|strong="H3588"\w* \w will|strong="H4428"\w* \w surely|strong="H3588"\w* \w be|strong="H3808"\w* \w taken|strong="H8610"\w* \w and|strong="H4428"\w* \w delivered|strong="H5414"\w* \w into|strong="H3027"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w*. \w Your|strong="H5414"\w* \w eyes|strong="H5869"\w* \w will|strong="H4428"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w eyes|strong="H5869"\w* \w of|strong="H4428"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w and|strong="H4428"\w* \w he|strong="H3588"\w* \w will|strong="H4428"\w* \w speak|strong="H1696"\w* \w with|strong="H1696"\w* \w you|strong="H3588"\w* \w mouth|strong="H6310"\w* \w to|strong="H1696"\w* \w mouth|strong="H6310"\w*. \w You|strong="H3588"\w* \w will|strong="H4428"\w* \w go|strong="H4428"\w* \w to|strong="H1696"\w* Babylon.”’ +\p +\v 4 “\w Yet|strong="H3068"\w* \w hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w O|strong="H3068"\w* \w Zedekiah|strong="H6667"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*. \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w concerning|strong="H5921"\w* \w you|strong="H5921"\w*, ‘\w You|strong="H5921"\w* won’t \w die|strong="H4191"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w*. +\v 5 \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w die|strong="H4191"\w* \w in|strong="H3068"\w* \w peace|strong="H7965"\w*; \w and|strong="H3068"\w* \w with|strong="H8313"\w* \w the|strong="H6440"\w* \w burnings|strong="H4955"\w* \w of|strong="H4428"\w* \w your|strong="H3068"\w* fathers, \w the|strong="H6440"\w* \w former|strong="H7223"\w* \w kings|strong="H4428"\w* \w who|strong="H3068"\w* \w were|strong="H1961"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*, \w so|strong="H3651"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w make|strong="H3588"\w* \w a|strong="H3068"\w* \w burning|strong="H8313"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*. \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w lament|strong="H5594"\w* \w you|strong="H3588"\w*, \w saying|strong="H1697"\w*, “\w Ah|strong="H1945"\w* \w Lord|strong="H3068"\w*!” \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w spoken|strong="H1696"\w* \w the|strong="H6440"\w* \w word|strong="H1697"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 6 \w Then|strong="H1696"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H3605"\w* \w prophet|strong="H5030"\w* \w spoke|strong="H1696"\w* \w all|strong="H3605"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w* \w to|strong="H1696"\w* \w Zedekiah|strong="H6667"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w in|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*, +\v 7 \w when|strong="H3588"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon’s \w army|strong="H2428"\w* \w was|strong="H5892"\w* \w fighting|strong="H3898"\w* \w against|strong="H5921"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H3063"\w* \w against|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w that|strong="H3588"\w* \w were|strong="H3063"\w* \w left|strong="H7604"\w*, \w against|strong="H5921"\w* \w Lachish|strong="H3923"\w* \w and|strong="H3063"\w* \w against|strong="H5921"\w* \w Azekah|strong="H5825"\w*; \w for|strong="H3588"\w* \w these|strong="H2007"\w* \w alone|strong="H7604"\w* \w remained|strong="H7604"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w as|strong="H3389"\w* \w fortified|strong="H4013"\w* \w cities|strong="H5892"\w*. +\p +\v 8 \w The|strong="H3605"\w* \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w* \w from|strong="H3772"\w* \w Yahweh|strong="H3068"\w*, \w after|strong="H1961"\w* \w King|strong="H4428"\w* \w Zedekiah|strong="H6667"\w* \w had|strong="H3068"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w at|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, \w to|strong="H3068"\w* \w proclaim|strong="H7121"\w* \w liberty|strong="H1865"\w* \w to|strong="H3068"\w* \w them|strong="H1992"\w*, +\v 9 \w that|strong="H3064"\w* \w every|strong="H7971"\w* \w man|strong="H5680"\w* \w should|strong="H5650"\w* \w let|strong="H7971"\w* \w his|strong="H7971"\w* \w male|strong="H5650"\w* \w servant|strong="H5650"\w*, \w and|strong="H7971"\w* \w every|strong="H7971"\w* \w man|strong="H5680"\w* \w his|strong="H7971"\w* \w female|strong="H8198"\w* \w servant|strong="H5650"\w*, \w who|strong="H5650"\w* \w is|strong="H5650"\w* \w a|strong="H3068"\w* \w Hebrew|strong="H5680"\w* \w or|strong="H1115"\w* \w a|strong="H3068"\w* \w Hebrewess|strong="H5680"\w*, \w go|strong="H7971"\w* \w free|strong="H2670"\w*, \w that|strong="H3064"\w* \w no|strong="H1115"\w* one \w should|strong="H5650"\w* \w make|strong="H5647"\w* bondservants \w of|strong="H5650"\w* \w them|strong="H7971"\w*, \w of|strong="H5650"\w* \w a|strong="H3068"\w* \w Jew|strong="H3064"\w* \w his|strong="H7971"\w* brother. +\v 10 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w and|strong="H7971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w obeyed|strong="H8085"\w* \w who|strong="H3605"\w* \w had|strong="H5971"\w* entered into \w the|strong="H3605"\w* \w covenant|strong="H1285"\w*, \w that|strong="H5971"\w* \w everyone|strong="H3605"\w* \w should|strong="H5650"\w* \w let|strong="H7971"\w* \w his|strong="H3605"\w* \w male|strong="H5650"\w* \w servant|strong="H5650"\w* \w and|strong="H7971"\w* \w everyone|strong="H3605"\w* \w his|strong="H3605"\w* \w female|strong="H8198"\w* \w servant|strong="H5650"\w* \w go|strong="H7971"\w* \w free|strong="H2670"\w*, \w that|strong="H5971"\w* \w no|strong="H1115"\w* \w one|strong="H3605"\w* \w should|strong="H5650"\w* \w make|strong="H8085"\w* bondservants \w of|strong="H8269"\w* \w them|strong="H7971"\w* \w any|strong="H3605"\w* \w more|strong="H5750"\w*. \w They|strong="H5971"\w* \w obeyed|strong="H8085"\w* \w and|strong="H7971"\w* \w let|strong="H7971"\w* \w them|strong="H7971"\w* \w go|strong="H7971"\w*, +\v 11 \w but|strong="H3651"\w* afterwards \w they|strong="H3651"\w* \w turned|strong="H7725"\w*, \w and|strong="H7971"\w* caused \w the|strong="H7725"\w* \w servants|strong="H5650"\w* \w and|strong="H7971"\w* \w the|strong="H7725"\w* \w handmaids|strong="H8198"\w* whom \w they|strong="H3651"\w* \w had|strong="H8198"\w* \w let|strong="H7971"\w* \w go|strong="H7971"\w* \w free|strong="H2670"\w* \w to|strong="H7725"\w* \w return|strong="H7725"\w*, \w and|strong="H7971"\w* \w brought|strong="H7725"\w* \w them|strong="H7725"\w* \w into|strong="H7725"\w* \w subjection|strong="H3533"\w* \w for|strong="H7971"\w* \w servants|strong="H5650"\w* \w and|strong="H7971"\w* \w for|strong="H7971"\w* \w handmaids|strong="H8198"\w*. +\p +\v 12 \w Therefore|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w* \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w saying|strong="H1697"\w*, +\v 13 “\w Yahweh|strong="H3068"\w*, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*: ‘\w I|strong="H3117"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H1004"\w* \w your|strong="H3068"\w* fathers \w in|strong="H3478"\w* \w the|strong="H3541"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w brought|strong="H3318"\w* \w them|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H3541"\w* land \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*, \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H3541"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w bondage|strong="H5650"\w*, saying: +\v 14 \w At|strong="H3808"\w* \w the|strong="H8085"\w* \w end|strong="H7093"\w* \w of|strong="H8141"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w*, \w every|strong="H7971"\w* \w man|strong="H5680"\w* \w of|strong="H8141"\w* \w you|strong="H7971"\w* \w shall|strong="H3808"\w* \w release|strong="H7971"\w* \w his|strong="H7971"\w* brother \w who|strong="H4376"\w* \w is|strong="H7093"\w* \w a|strong="H3068"\w* \w Hebrew|strong="H5680"\w*, \w who|strong="H4376"\w* \w has|strong="H7093"\w* \w been|strong="H5647"\w* \w sold|strong="H4376"\w* \w to|strong="H7971"\w* \w you|strong="H7971"\w*, \w and|strong="H7971"\w* \w has|strong="H7093"\w* \w served|strong="H5647"\w* \w you|strong="H7971"\w* \w six|strong="H8337"\w* \w years|strong="H8141"\w*. \w You|strong="H7971"\w* \w shall|strong="H3808"\w* \w let|strong="H7971"\w* \w him|strong="H7971"\w* \w go|strong="H7971"\w* \w free|strong="H2670"\w* \w from|strong="H8085"\w* \w you|strong="H7971"\w*. \w But|strong="H3808"\w* \w your|strong="H5186"\w* fathers didn’t \w listen|strong="H8085"\w* \w to|strong="H7971"\w* \w me|strong="H7971"\w*, \w and|strong="H7971"\w* didn’t \w incline|strong="H5186"\w* \w their|strong="H8085"\w* \w ear|strong="H8085"\w*. +\v 15 \w You|strong="H6440"\w* \w had|strong="H5869"\w* \w now|strong="H3117"\w* \w turned|strong="H7725"\w*, \w and|strong="H7725"\w* \w had|strong="H5869"\w* \w done|strong="H6213"\w* \w that|strong="H3117"\w* \w which|strong="H1004"\w* \w is|strong="H3117"\w* \w right|strong="H3477"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* \w eyes|strong="H5869"\w*, \w in|strong="H5921"\w* \w every|strong="H7725"\w* \w man|strong="H6440"\w* \w proclaiming|strong="H7121"\w* \w liberty|strong="H1865"\w* \w to|strong="H7725"\w* \w his|strong="H7121"\w* \w neighbor|strong="H7453"\w*. \w You|strong="H6440"\w* \w had|strong="H5869"\w* \w made|strong="H6213"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w which|strong="H1004"\w* \w is|strong="H3117"\w* \w called|strong="H7121"\w* \w by|strong="H5921"\w* \w my|strong="H5921"\w* \w name|strong="H8034"\w*; +\v 16 \w but|strong="H1961"\w* \w you|strong="H7971"\w* \w turned|strong="H7725"\w* \w and|strong="H7971"\w* \w profaned|strong="H2490"\w* \w my|strong="H7971"\w* \w name|strong="H8034"\w*, \w and|strong="H7971"\w* \w every|strong="H7725"\w* \w man|strong="H5315"\w* \w caused|strong="H1961"\w* \w his|strong="H7971"\w* \w servant|strong="H5650"\w* \w and|strong="H7971"\w* \w every|strong="H7725"\w* \w man|strong="H5315"\w* \w his|strong="H7971"\w* \w handmaid|strong="H8198"\w*, whom \w you|strong="H7971"\w* \w had|strong="H1961"\w* \w let|strong="H7971"\w* \w go|strong="H7971"\w* \w free|strong="H2670"\w* \w at|strong="H7725"\w* \w their|strong="H7725"\w* \w pleasure|strong="H5315"\w*, \w to|strong="H7725"\w* \w return|strong="H7725"\w*. \w You|strong="H7971"\w* \w brought|strong="H7725"\w* \w them|strong="H7725"\w* \w into|strong="H7725"\w* \w subjection|strong="H3533"\w*, \w to|strong="H7725"\w* \w be|strong="H1961"\w* \w to|strong="H7725"\w* \w you|strong="H7971"\w* \w for|strong="H7971"\w* \w servants|strong="H5650"\w* \w and|strong="H7971"\w* \w for|strong="H7971"\w* \w handmaids|strong="H8198"\w*.’” +\p +\v 17 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H5002"\w*: “\w You|strong="H5414"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w listened|strong="H8085"\w* \w to|strong="H3068"\w* \w me|strong="H5414"\w*, \w to|strong="H3068"\w* \w proclaim|strong="H7121"\w* \w liberty|strong="H1865"\w*, \w every|strong="H3605"\w* \w man|strong="H3605"\w* \w to|strong="H3068"\w* \w his|strong="H3605"\w* \w brother|strong="H7453"\w*, \w and|strong="H3068"\w* \w every|strong="H3605"\w* \w man|strong="H3605"\w* \w to|strong="H3068"\w* \w his|strong="H3605"\w* \w neighbor|strong="H7453"\w*. \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w proclaim|strong="H7121"\w* \w to|strong="H3068"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w liberty|strong="H1865"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w to|strong="H3068"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w pestilence|strong="H1698"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w famine|strong="H7458"\w*. \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w make|strong="H5414"\w* \w you|strong="H5414"\w* \w be|strong="H3808"\w* tossed back \w and|strong="H3068"\w* \w forth|strong="H5414"\w* \w among|strong="H2719"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* earth. +\v 18 \w I|strong="H5414"\w* \w will|strong="H1697"\w* \w give|strong="H5414"\w* \w the|strong="H6440"\w* \w men|strong="H8147"\w* \w who|strong="H3808"\w* \w have|strong="H1697"\w* \w transgressed|strong="H5674"\w* \w my|strong="H5414"\w* \w covenant|strong="H1285"\w*, \w who|strong="H3808"\w* \w have|strong="H1697"\w* \w not|strong="H3808"\w* \w performed|strong="H6965"\w* \w the|strong="H6440"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H6440"\w* \w covenant|strong="H1285"\w* \w which|strong="H1697"\w* \w they|strong="H3808"\w* \w made|strong="H3772"\w* \w before|strong="H6440"\w* \w me|strong="H5414"\w* \w when|strong="H5674"\w* \w they|strong="H3808"\w* \w cut|strong="H3772"\w* \w the|strong="H6440"\w* \w calf|strong="H5695"\w* \w in|strong="H6440"\w* \w two|strong="H8147"\w* \w and|strong="H6965"\w* \w passed|strong="H5674"\w* \w between|strong="H5674"\w* \w its|strong="H5414"\w* \w parts|strong="H1335"\w*: +\v 19 \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w Judah|strong="H3063"\w*, \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w Jerusalem|strong="H3389"\w*, \w the|strong="H3605"\w* \w eunuchs|strong="H5631"\w*, \w the|strong="H3605"\w* \w priests|strong="H3548"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* land, \w who|strong="H3605"\w* \w passed|strong="H5674"\w* \w between|strong="H5674"\w* \w the|strong="H3605"\w* \w parts|strong="H1335"\w* \w of|strong="H8269"\w* \w the|strong="H3605"\w* \w calf|strong="H5695"\w*. +\v 20 \w I|strong="H5414"\w* \w will|strong="H1961"\w* even \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w their|strong="H5414"\w* \w enemies|strong="H3027"\w* \w and|strong="H8064"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w those|strong="H1961"\w* \w who|strong="H5315"\w* \w seek|strong="H1245"\w* \w their|strong="H5414"\w* \w life|strong="H5315"\w*. \w Their|strong="H5414"\w* \w dead|strong="H5315"\w* \w bodies|strong="H5038"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w food|strong="H3978"\w* \w for|strong="H3027"\w* \w the|strong="H5414"\w* \w birds|strong="H5775"\w* \w of|strong="H3027"\w* \w the|strong="H5414"\w* \w sky|strong="H8064"\w* \w and|strong="H8064"\w* \w for|strong="H3027"\w* \w the|strong="H5414"\w* \w animals|strong="H1961"\w* \w of|strong="H3027"\w* \w the|strong="H5414"\w* \w earth|strong="H8064"\w*. +\p +\v 21 “\w I|strong="H5414"\w* \w will|strong="H4428"\w* \w give|strong="H5414"\w* \w Zedekiah|strong="H6667"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w his|strong="H5414"\w* \w princes|strong="H8269"\w* \w into|strong="H5927"\w* \w the|strong="H5921"\w* \w hands|strong="H3027"\w* \w of|strong="H4428"\w* \w their|strong="H5414"\w* \w enemies|strong="H3027"\w*, \w into|strong="H5927"\w* \w the|strong="H5921"\w* \w hands|strong="H3027"\w* \w of|strong="H4428"\w* \w those|strong="H5921"\w* \w who|strong="H5315"\w* \w seek|strong="H1245"\w* \w their|strong="H5414"\w* \w life|strong="H5315"\w* \w and|strong="H3063"\w* \w into|strong="H5927"\w* \w the|strong="H5921"\w* \w hands|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon’s \w army|strong="H2428"\w*, \w who|strong="H5315"\w* \w has|strong="H4428"\w* \w gone|strong="H5927"\w* \w away|strong="H5927"\w* \w from|strong="H5921"\w* \w you|strong="H5414"\w*. +\v 22 \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w command|strong="H6680"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w and|strong="H3063"\w* \w cause|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w*. \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w fight|strong="H3898"\w* \w against|strong="H5921"\w* \w it|strong="H5414"\w*, \w take|strong="H3920"\w* \w it|strong="H5414"\w*, \w and|strong="H3063"\w* \w burn|strong="H8313"\w* \w it|strong="H5414"\w* \w with|strong="H8313"\w* fire. \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w make|strong="H5414"\w* \w the|strong="H5002"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w* \w a|strong="H3068"\w* \w desolation|strong="H8077"\w*, \w without|strong="H3427"\w* \w inhabitant|strong="H3427"\w*.” +\c 35 +\p +\v 1 \w The|strong="H3068"\w* \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w* \w from|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w Jehoiakim|strong="H3079"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Go|strong="H1980"\w* \w to|strong="H1696"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w Rechabites|strong="H7397"\w*, \w and|strong="H1980"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H8248"\w*, \w and|strong="H1980"\w* \w bring|strong="H1980"\w* \w them|strong="H8248"\w* \w into|strong="H1980"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w into|strong="H1980"\w* \w one|strong="H3068"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w rooms|strong="H3957"\w*, \w and|strong="H1980"\w* \w give|strong="H8248"\w* \w them|strong="H8248"\w* \w wine|strong="H3196"\w* \w to|strong="H1696"\w* \w drink|strong="H8248"\w*.” +\p +\v 3 \w Then|strong="H3947"\w* \w I|strong="H1121"\w* \w took|strong="H3947"\w* \w Jaazaniah|strong="H2970"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jeremiah|strong="H3414"\w*, \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Habazziniah|strong="H2262"\w*, \w with|strong="H1004"\w* \w his|strong="H3605"\w* \w brothers|strong="H1121"\w*, \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w Rechabites|strong="H7397"\w*; +\v 4 \w and|strong="H1121"\w* \w I|strong="H1121"\w* \w brought|strong="H3068"\w* \w them|strong="H1121"\w* into \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, into \w the|strong="H8104"\w* \w room|strong="H1004"\w* \w of|strong="H1121"\w* \w the|strong="H8104"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Hanan|strong="H2605"\w* \w the|strong="H8104"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Igdaliah|strong="H3012"\w*, \w the|strong="H8104"\w* \w man|strong="H1121"\w* \w of|strong="H1121"\w* \w God|strong="H3068"\w*, \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w by|strong="H3068"\w* \w the|strong="H8104"\w* \w room|strong="H1004"\w* \w of|strong="H1121"\w* \w the|strong="H8104"\w* \w princes|strong="H8269"\w*, \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w above|strong="H4605"\w* \w the|strong="H8104"\w* \w room|strong="H1004"\w* \w of|strong="H1121"\w* \w Maaseiah|strong="H4641"\w* \w the|strong="H8104"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shallum|strong="H7967"\w*, \w the|strong="H8104"\w* \w keeper|strong="H8104"\w* \w of|strong="H1121"\w* \w the|strong="H8104"\w* \w threshold|strong="H5592"\w*. +\v 5 \w I|strong="H5414"\w* \w set|strong="H5414"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w Rechabites|strong="H7397"\w* \w bowls|strong="H1375"\w* \w full|strong="H4392"\w* \w of|strong="H1121"\w* \w wine|strong="H3196"\w*, \w and|strong="H1121"\w* \w cups|strong="H1375"\w*; \w and|strong="H1121"\w* \w I|strong="H5414"\w* said \w to|strong="H5414"\w* \w them|strong="H5414"\w*, “\w Drink|strong="H8354"\w* \w wine|strong="H3196"\w*!” +\p +\v 6 \w But|strong="H3588"\w* \w they|strong="H3588"\w* said, “\w We|strong="H3588"\w* \w will|strong="H1121"\w* \w drink|strong="H8354"\w* \w no|strong="H3808"\w* \w wine|strong="H3196"\w*; \w for|strong="H3588"\w* \w Jonadab|strong="H3122"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Rechab|strong="H7394"\w*, \w our|strong="H5921"\w* \w father|strong="H1121"\w*, \w commanded|strong="H6680"\w* \w us|strong="H5921"\w*, saying, ‘\w You|strong="H3588"\w* \w shall|strong="H1121"\w* \w drink|strong="H8354"\w* \w no|strong="H3808"\w* \w wine|strong="H3196"\w*, \w neither|strong="H3808"\w* \w you|strong="H3588"\w* \w nor|strong="H3808"\w* \w your|strong="H5921"\w* \w children|strong="H1121"\w*, \w forever|strong="H5769"\w*. +\v 7 \w You|strong="H3588"\w* \w shall|strong="H1004"\w* \w not|strong="H3808"\w* \w build|strong="H1129"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w*, \w sow|strong="H2232"\w* \w seed|strong="H2233"\w*, \w plant|strong="H5193"\w* \w a|strong="H3068"\w* \w vineyard|strong="H3754"\w*, \w or|strong="H3808"\w* \w have|strong="H1961"\w* \w any|strong="H3605"\w*; \w but|strong="H3588"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w days|strong="H3117"\w* \w you|strong="H3588"\w* \w shall|strong="H1004"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* tents, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H1961"\w* \w live|strong="H3427"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w in|strong="H3427"\w* \w which|strong="H1004"\w* \w you|strong="H3588"\w* \w live|strong="H3427"\w* \w as|strong="H3117"\w* nomads.’ +\v 8 \w We|strong="H3117"\w* \w have|strong="H1121"\w* \w obeyed|strong="H8085"\w* \w the|strong="H3605"\w* \w voice|strong="H6963"\w* \w of|strong="H1121"\w* \w Jonadab|strong="H3082"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Rechab|strong="H7394"\w*, \w our|strong="H3605"\w* \w father|strong="H1121"\w*, \w in|strong="H8085"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w commanded|strong="H6680"\w* \w us|strong="H3117"\w*, \w to|strong="H3117"\w* \w drink|strong="H8354"\w* \w no|strong="H1115"\w* \w wine|strong="H3196"\w* \w all|strong="H3605"\w* \w our|strong="H3605"\w* \w days|strong="H3117"\w*, \w we|strong="H3068"\w*, \w our|strong="H3605"\w* wives, \w our|strong="H3605"\w* \w sons|strong="H1121"\w*, \w or|strong="H8085"\w* \w our|strong="H3605"\w* \w daughters|strong="H1323"\w*; +\v 9 \w and|strong="H1004"\w* \w not|strong="H3808"\w* \w to|strong="H1961"\w* \w build|strong="H1129"\w* \w houses|strong="H1004"\w* \w for|strong="H3427"\w* \w ourselves|strong="H1129"\w* \w to|strong="H1961"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w*. We \w have|strong="H1961"\w* \w no|strong="H3808"\w* \w vineyard|strong="H3754"\w*, \w field|strong="H7704"\w*, \w or|strong="H3808"\w* \w seed|strong="H2233"\w*; +\v 10 \w but|strong="H8085"\w* \w we|strong="H3068"\w* \w have|strong="H3605"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* tents, \w and|strong="H8085"\w* \w have|strong="H3605"\w* \w obeyed|strong="H8085"\w*, \w and|strong="H8085"\w* \w done|strong="H6213"\w* according \w to|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Jonadab|strong="H3122"\w* \w our|strong="H3605"\w* father \w commanded|strong="H6680"\w* \w us|strong="H6213"\w*. +\v 11 \w But|strong="H1961"\w* \w when|strong="H1961"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w came|strong="H1961"\w* \w up|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*, \w we|strong="H3068"\w* said, ‘\w Come|strong="H5927"\w*! \w Let|strong="H1961"\w*’s \w go|strong="H5927"\w* \w to|strong="H5927"\w* \w Jerusalem|strong="H3389"\w* \w for|strong="H6440"\w* \w fear|strong="H6440"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w army|strong="H2428"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w Chaldeans|strong="H3778"\w*, \w and|strong="H4428"\w* \w for|strong="H6440"\w* \w fear|strong="H6440"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w army|strong="H2428"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* Syrians; \w so|strong="H1961"\w* \w we|strong="H3068"\w* \w will|strong="H1961"\w* \w dwell|strong="H3427"\w* \w at|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*.’” +\p +\v 12 \w Then|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w*, \w saying|strong="H1697"\w*, +\v 13 “\w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H5002"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H5002"\w*: ‘\w Go|strong="H1980"\w* \w and|strong="H1980"\w* \w tell|strong="H8085"\w* \w the|strong="H5002"\w* \w men|strong="H1980"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w* \w and|strong="H1980"\w* \w the|strong="H5002"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, “\w Will|strong="H3068"\w* \w you|strong="H3947"\w* \w not|strong="H3808"\w* \w receive|strong="H3947"\w* \w instruction|strong="H4148"\w* \w to|strong="H1980"\w* \w listen|strong="H8085"\w* \w to|strong="H1980"\w* \w my|strong="H8085"\w* \w words|strong="H1697"\w*?” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 14 “\w The|strong="H8085"\w* \w words|strong="H1697"\w* \w of|strong="H1121"\w* \w Jonadab|strong="H3082"\w* \w the|strong="H8085"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Rechab|strong="H7394"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w commanded|strong="H6680"\w* \w his|strong="H8085"\w* \w sons|strong="H1121"\w*, \w not|strong="H3808"\w* \w to|strong="H1696"\w* \w drink|strong="H8354"\w* \w wine|strong="H3196"\w*, \w are|strong="H3117"\w* \w performed|strong="H6965"\w*; \w and|strong="H1121"\w* \w to|strong="H1696"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w* \w they|strong="H3588"\w* \w drink|strong="H8354"\w* \w none|strong="H3808"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w obey|strong="H8085"\w* \w their|strong="H8085"\w* \w father|strong="H1121"\w*’s \w commandment|strong="H4687"\w*; \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1121"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*, \w rising|strong="H6965"\w* \w up|strong="H6965"\w* \w early|strong="H7925"\w* \w and|strong="H1121"\w* \w speaking|strong="H1696"\w*, \w and|strong="H1121"\w* \w you|strong="H3588"\w* \w have|strong="H1121"\w* \w not|strong="H3808"\w* \w listened|strong="H8085"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w*. +\v 15 \w I|strong="H5414"\w* \w have|strong="H5030"\w* \w sent|strong="H7971"\w* \w also|strong="H5030"\w* \w to|strong="H7725"\w* \w you|strong="H5414"\w* \w all|strong="H3605"\w* \w my|strong="H8085"\w* \w servants|strong="H5650"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w*, \w rising|strong="H7925"\w* \w up|strong="H5414"\w* \w early|strong="H7925"\w* \w and|strong="H7971"\w* \w sending|strong="H7971"\w* \w them|strong="H5414"\w*, saying, ‘\w Every|strong="H3605"\w* \w one|strong="H3605"\w* \w of|strong="H3427"\w* \w you|strong="H5414"\w* \w must|strong="H3808"\w* \w return|strong="H7725"\w* \w now|strong="H4994"\w* \w from|strong="H7725"\w* \w his|strong="H3605"\w* \w evil|strong="H7451"\w* \w way|strong="H1870"\w*, \w amend|strong="H3190"\w* \w your|strong="H3605"\w* \w doings|strong="H4611"\w*, \w and|strong="H7971"\w* don’t \w go|strong="H3212"\w* \w after|strong="H7971"\w* \w other|strong="H3605"\w* gods \w to|strong="H7725"\w* \w serve|strong="H5647"\w* \w them|strong="H5414"\w*. \w Then|strong="H7971"\w* \w you|strong="H5414"\w* \w will|strong="H5650"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* land \w which|strong="H5030"\w* \w I|strong="H5414"\w* \w have|strong="H5030"\w* \w given|strong="H5414"\w* \w to|strong="H7725"\w* \w you|strong="H5414"\w* \w and|strong="H7971"\w* \w to|strong="H7725"\w* \w your|strong="H3605"\w* fathers;’ \w but|strong="H3808"\w* \w you|strong="H5414"\w* \w have|strong="H5030"\w* \w not|strong="H3808"\w* \w inclined|strong="H5186"\w* \w your|strong="H3605"\w* \w ear|strong="H8085"\w*, \w nor|strong="H3808"\w* \w listened|strong="H8085"\w* \w to|strong="H7725"\w* \w me|strong="H5414"\w*. +\v 16 \w The|strong="H8085"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jonadab|strong="H3082"\w* \w the|strong="H8085"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Rechab|strong="H7394"\w* \w have|strong="H5971"\w* \w performed|strong="H6965"\w* \w the|strong="H8085"\w* \w commandment|strong="H4687"\w* \w of|strong="H1121"\w* \w their|strong="H8085"\w* \w father|strong="H1121"\w* \w which|strong="H5971"\w* \w he|strong="H3588"\w* \w commanded|strong="H6680"\w* \w them|strong="H6680"\w*, \w but|strong="H3588"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w has|strong="H3588"\w* \w not|strong="H3808"\w* \w listened|strong="H8085"\w* \w to|strong="H8085"\w* \w me|strong="H6680"\w*.”’ +\p +\v 17 “\w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*: ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w bring|strong="H7451"\w* \w on|strong="H5921"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w that|strong="H3605"\w* \w I|strong="H2005"\w* \w have|strong="H3068"\w* \w pronounced|strong="H1696"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w*, \w because|strong="H5921"\w* \w I|strong="H2005"\w* \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H5921"\w*, \w but|strong="H3808"\w* \w they|strong="H3651"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w heard|strong="H8085"\w*; \w and|strong="H3063"\w* \w I|strong="H2005"\w* \w have|strong="H3068"\w* \w called|strong="H7121"\w* \w to|strong="H1696"\w* \w them|strong="H5921"\w*, \w but|strong="H3808"\w* \w they|strong="H3651"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w answered|strong="H6030"\w*.’” +\p +\v 18 \w Jeremiah|strong="H3414"\w* \w said|strong="H8085"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w Rechabites|strong="H7397"\w*, “\w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*: ‘\w Because|strong="H5921"\w* \w you|strong="H6680"\w* \w have|strong="H3068"\w* \w obeyed|strong="H8085"\w* \w the|strong="H3605"\w* \w commandment|strong="H4687"\w* \w of|strong="H1004"\w* \w Jonadab|strong="H3082"\w* \w your|strong="H3068"\w* father, \w and|strong="H3478"\w* \w kept|strong="H8104"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w precepts|strong="H4687"\w*, \w and|strong="H3478"\w* \w done|strong="H6213"\w* \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w commanded|strong="H6680"\w* \w you|strong="H6680"\w*,’ +\v 19 \w therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1121"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*: ‘\w Jonadab|strong="H3122"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Rechab|strong="H7394"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w lack|strong="H3772"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w to|strong="H3478"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w forever|strong="H3605"\w*.’” +\c 36 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H3068"\w* \w fourth|strong="H7243"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Jehoiakim|strong="H3079"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w this|strong="H2088"\w* \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w* \w from|strong="H1121"\w* \w Yahweh|strong="H3068"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Take|strong="H3947"\w* \w a|strong="H3068"\w* \w scroll|strong="H5612"\w* \w of|strong="H3117"\w* \w a|strong="H3068"\w* \w book|strong="H5612"\w*, \w and|strong="H3063"\w* \w write|strong="H3789"\w* \w in|strong="H5921"\w* \w it|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w that|strong="H3605"\w* \w I|strong="H3117"\w* \w have|strong="H1471"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3605"\w* \w against|strong="H5921"\w* \w Israel|strong="H3478"\w*, \w against|strong="H5921"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w against|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*, \w from|strong="H5921"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w I|strong="H3117"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3605"\w*, \w from|strong="H5921"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w Josiah|strong="H2977"\w* \w even|strong="H5704"\w* \w to|strong="H1696"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*. +\v 3 \w It|strong="H6213"\w* \w may|strong="H7725"\w* \w be|strong="H1004"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w will|strong="H1004"\w* \w hear|strong="H8085"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w which|strong="H1004"\w* \w I|strong="H8085"\w* \w intend|strong="H2803"\w* \w to|strong="H7725"\w* \w do|strong="H6213"\w* \w to|strong="H7725"\w* \w them|strong="H7725"\w*, \w that|strong="H3605"\w* \w they|strong="H6213"\w* \w may|strong="H7725"\w* \w each|strong="H3605"\w* \w return|strong="H7725"\w* \w from|strong="H7725"\w* \w his|strong="H3605"\w* \w evil|strong="H7451"\w* \w way|strong="H1870"\w*; \w that|strong="H3605"\w* \w I|strong="H8085"\w* \w may|strong="H7725"\w* \w forgive|strong="H5545"\w* \w their|strong="H3605"\w* \w iniquity|strong="H5771"\w* \w and|strong="H3063"\w* \w their|strong="H3605"\w* \w sin|strong="H2403"\w*.” +\p +\v 4 \w Then|strong="H1696"\w* \w Jeremiah|strong="H3414"\w* \w called|strong="H7121"\w* \w Baruch|strong="H1263"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Neriah|strong="H5374"\w*; \w and|strong="H1121"\w* \w Baruch|strong="H1263"\w* \w wrote|strong="H3789"\w* \w from|strong="H5921"\w* \w the|strong="H3605"\w* \w mouth|strong="H6310"\w* \w of|strong="H1121"\w* \w Jeremiah|strong="H3414"\w* \w all|strong="H3605"\w* \w Yahweh|strong="H3068"\w*’s \w words|strong="H1697"\w*, \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w had|strong="H3068"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H7121"\w*, \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w scroll|strong="H5612"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w book|strong="H5612"\w*. +\v 5 \w Jeremiah|strong="H3414"\w* \w commanded|strong="H6680"\w* \w Baruch|strong="H1263"\w*, saying, “\w I|strong="H6680"\w* \w am|strong="H3068"\w* \w restricted|strong="H6113"\w*. \w I|strong="H6680"\w* \w can|strong="H3201"\w*’t \w go|strong="H3201"\w* into \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 6 \w Therefore|strong="H1571"\w* \w you|strong="H3605"\w* \w go|strong="H5971"\w*, \w and|strong="H3063"\w* \w read|strong="H7121"\w* \w from|strong="H3117"\w* \w the|strong="H3605"\w* \w scroll|strong="H4039"\w* \w which|strong="H3068"\w* \w you|strong="H3605"\w* \w have|strong="H3068"\w* \w written|strong="H3789"\w* \w from|strong="H3117"\w* \w my|strong="H3605"\w* \w mouth|strong="H6310"\w*, \w Yahweh|strong="H3068"\w*’s \w words|strong="H1697"\w*, \w in|strong="H3068"\w* \w the|strong="H3605"\w* ears \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w fast|strong="H6685"\w* \w day|strong="H3117"\w*. \w Also|strong="H1571"\w* \w you|strong="H3605"\w* \w shall|strong="H3068"\w* \w read|strong="H7121"\w* \w them|strong="H7121"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* ears \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w Judah|strong="H3063"\w* \w who|strong="H3605"\w* \w come|strong="H5971"\w* \w out|strong="H3605"\w* \w of|strong="H1004"\w* \w their|strong="H3605"\w* \w cities|strong="H5892"\w*. +\v 7 \w It|strong="H3588"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w present|strong="H5307"\w* \w their|strong="H3068"\w* \w supplication|strong="H8467"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w each|strong="H5971"\w* \w return|strong="H7725"\w* \w from|strong="H7725"\w* \w his|strong="H3068"\w* \w evil|strong="H7451"\w* \w way|strong="H1870"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w pronounced|strong="H1696"\w* \w great|strong="H1419"\w* \w anger|strong="H2534"\w* \w and|strong="H3068"\w* \w wrath|strong="H2534"\w* \w against|strong="H6440"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*.” +\p +\v 8 \w Baruch|strong="H1263"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Neriah|strong="H5374"\w* \w did|strong="H6213"\w* according \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H3605"\w* \w prophet|strong="H5030"\w* \w commanded|strong="H6680"\w* \w him|strong="H7121"\w*, \w reading|strong="H7121"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w Yahweh|strong="H3068"\w*’s \w words|strong="H1697"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 9 \w Now|strong="H1961"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w fifth|strong="H2549"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Jehoiakim|strong="H3079"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w ninth|strong="H8671"\w* \w month|strong="H2320"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w came|strong="H1961"\w* \w from|strong="H6440"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w to|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, \w proclaimed|strong="H7121"\w* \w a|strong="H3068"\w* \w fast|strong="H6685"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. +\v 10 \w Then|strong="H7121"\w* \w Baruch|strong="H1263"\w* \w read|strong="H7121"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H1121"\w* \w Jeremiah|strong="H3414"\w* \w from|strong="H1121"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w room|strong="H1004"\w* \w of|strong="H1121"\w* \w Gemariah|strong="H1587"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shaphan|strong="H8227"\w* \w the|strong="H3605"\w* \w scribe|strong="H5608"\w*, \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w upper|strong="H5945"\w* \w court|strong="H2691"\w*, \w at|strong="H3068"\w* \w the|strong="H3605"\w* \w entry|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w new|strong="H2319"\w* \w gate|strong="H8179"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w in|strong="H3068"\w* \w the|strong="H3605"\w* ears \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*. +\p +\v 11 \w When|strong="H8085"\w* \w Micaiah|strong="H4321"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Gemariah|strong="H1587"\w*, \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shaphan|strong="H8227"\w*, \w had|strong="H3068"\w* \w heard|strong="H8085"\w* \w out|strong="H5921"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w all|strong="H3605"\w* \w Yahweh|strong="H3068"\w*’s \w words|strong="H1697"\w*, +\v 12 \w he|strong="H8033"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w into|strong="H3381"\w* \w the|strong="H3605"\w* \w scribe|strong="H5608"\w*’s \w room|strong="H1004"\w*; \w and|strong="H1121"\w* \w behold|strong="H2009"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w were|strong="H1121"\w* \w sitting|strong="H3427"\w* \w there|strong="H8033"\w*, Elishama \w the|strong="H3605"\w* \w scribe|strong="H5608"\w*, \w Delaiah|strong="H1806"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shemaiah|strong="H8098"\w*, Elnathan \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Achbor|strong="H5907"\w*, \w Gemariah|strong="H1587"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shaphan|strong="H8227"\w*, \w Zedekiah|strong="H6667"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hananiah|strong="H2608"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w*. +\v 13 \w Then|strong="H8085"\w* \w Micaiah|strong="H4321"\w* \w declared|strong="H5046"\w* \w to|strong="H8085"\w* \w them|strong="H7121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w that|strong="H5971"\w* \w he|strong="H3605"\w* \w had|strong="H5971"\w* \w heard|strong="H8085"\w*, \w when|strong="H8085"\w* \w Baruch|strong="H1263"\w* \w read|strong="H7121"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w in|strong="H8085"\w* \w the|strong="H3605"\w* ears \w of|strong="H1697"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*. +\v 14 \w Therefore|strong="H7971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w sent|strong="H7971"\w* \w Jehudi|strong="H3065"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nethaniah|strong="H5418"\w*, \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shelemiah|strong="H8018"\w*, \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Cushi|strong="H3570"\w*, \w to|strong="H3212"\w* \w Baruch|strong="H1263"\w*, saying, “\w Take|strong="H3947"\w* \w in|strong="H3212"\w* \w your|strong="H3605"\w* \w hand|strong="H3027"\w* \w the|strong="H3605"\w* \w scroll|strong="H4039"\w* \w in|strong="H3212"\w* \w which|strong="H5971"\w* \w you|strong="H3605"\w* \w have|strong="H5971"\w* \w read|strong="H7121"\w* \w in|strong="H3212"\w* \w the|strong="H3605"\w* ears \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w and|strong="H1121"\w* \w come|strong="H3212"\w*.” +\p \w So|strong="H3947"\w* \w Baruch|strong="H1263"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Neriah|strong="H5374"\w* \w took|strong="H3947"\w* \w the|strong="H3605"\w* \w scroll|strong="H4039"\w* \w in|strong="H3212"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*, \w and|strong="H1121"\w* \w came|strong="H3212"\w* \w to|strong="H3212"\w* \w them|strong="H7971"\w*. +\v 15 \w They|strong="H7121"\w* \w said|strong="H7121"\w* \w to|strong="H7121"\w* \w him|strong="H7121"\w*, “\w Sit|strong="H3427"\w* \w down|strong="H3427"\w* \w now|strong="H4994"\w*, \w and|strong="H3427"\w* \w read|strong="H7121"\w* \w it|strong="H7121"\w* \w in|strong="H3427"\w* our hearing.” +\p \w So|strong="H7121"\w* \w Baruch|strong="H1263"\w* \w read|strong="H7121"\w* \w it|strong="H7121"\w* \w in|strong="H3427"\w* \w their|strong="H7121"\w* hearing. +\p +\v 16 \w Now|strong="H1961"\w* \w when|strong="H1961"\w* \w they|strong="H1697"\w* \w had|strong="H1961"\w* \w heard|strong="H8085"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w*, \w they|strong="H1697"\w* \w turned|strong="H1961"\w* \w in|strong="H4428"\w* \w fear|strong="H6342"\w* \w one|strong="H3605"\w* toward \w another|strong="H7453"\w*, \w and|strong="H4428"\w* \w said|strong="H1697"\w* \w to|strong="H1961"\w* \w Baruch|strong="H1263"\w*, “\w We|strong="H8085"\w* \w will|strong="H1961"\w* \w surely|strong="H5046"\w* \w tell|strong="H5046"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w these|strong="H8085"\w* \w words|strong="H1697"\w*.” +\v 17 \w They|strong="H6310"\w* \w asked|strong="H7592"\w* \w Baruch|strong="H1263"\w*, \w saying|strong="H1697"\w*, “\w Tell|strong="H5046"\w* \w us|strong="H4994"\w* \w now|strong="H4994"\w*, \w how|strong="H4994"\w* \w did|strong="H1697"\w* \w you|strong="H3605"\w* \w write|strong="H3789"\w* \w all|strong="H3605"\w* \w these|strong="H3789"\w* \w words|strong="H1697"\w* \w at|strong="H3605"\w* \w his|strong="H3605"\w* \w mouth|strong="H6310"\w*?” +\p +\v 18 \w Then|strong="H7121"\w* \w Baruch|strong="H1263"\w* \w answered|strong="H1697"\w* \w them|strong="H5921"\w*, “\w He|strong="H3605"\w* \w dictated|strong="H6310"\w* \w all|strong="H3605"\w* \w these|strong="H7121"\w* \w words|strong="H1697"\w* \w to|strong="H5921"\w* \w me|strong="H5921"\w* \w with|strong="H5921"\w* \w his|strong="H3605"\w* \w mouth|strong="H6310"\w*, \w and|strong="H1697"\w* \w I|strong="H5921"\w* \w wrote|strong="H3789"\w* \w them|strong="H5921"\w* \w with|strong="H5921"\w* \w ink|strong="H1773"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w*.” +\p +\v 19 \w Then|strong="H3045"\w* \w the|strong="H3045"\w* \w princes|strong="H8269"\w* said \w to|strong="H3212"\w* \w Baruch|strong="H1263"\w*, “\w You|strong="H3045"\w* \w and|strong="H3212"\w* \w Jeremiah|strong="H3414"\w* \w go|strong="H3212"\w* \w hide|strong="H5641"\w*. Don’t \w let|strong="H3212"\w* anyone \w know|strong="H3045"\w* where \w you|strong="H3045"\w* \w are|strong="H8269"\w*.” +\p +\v 20 \w They|strong="H1697"\w* \w went|strong="H4428"\w* \w in|strong="H4428"\w* \w to|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w into|strong="H1697"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w*, \w but|strong="H3605"\w* \w they|strong="H1697"\w* \w had|strong="H4428"\w* laid \w up|strong="H6485"\w* \w the|strong="H3605"\w* \w scroll|strong="H4039"\w* \w in|strong="H4428"\w* \w the|strong="H3605"\w* \w room|strong="H3957"\w* \w of|strong="H4428"\w* Elishama \w the|strong="H3605"\w* \w scribe|strong="H5608"\w*. \w Then|strong="H4428"\w* \w they|strong="H1697"\w* \w told|strong="H5046"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w in|strong="H4428"\w* \w the|strong="H3605"\w* hearing \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. +\v 21 \w So|strong="H3947"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w sent|strong="H7971"\w* \w Jehudi|strong="H3065"\w* \w to|strong="H7971"\w* \w get|strong="H3947"\w* \w the|strong="H3605"\w* \w scroll|strong="H4039"\w*, \w and|strong="H7971"\w* \w he|strong="H3605"\w* \w took|strong="H3947"\w* \w it|strong="H7121"\w* \w out|strong="H7971"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w room|strong="H3957"\w* \w of|strong="H4428"\w* Elishama \w the|strong="H3605"\w* \w scribe|strong="H5608"\w*. \w Jehudi|strong="H3065"\w* \w read|strong="H7121"\w* \w it|strong="H7121"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* hearing \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w and|strong="H7971"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* hearing \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w who|strong="H3605"\w* \w stood|strong="H5975"\w* \w beside|strong="H5921"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. +\v 22 \w Now|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w was|strong="H4428"\w* \w sitting|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w winter|strong="H2779"\w* \w house|strong="H1004"\w* \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w ninth|strong="H8671"\w* \w month|strong="H2320"\w*, \w and|strong="H4428"\w* \w there|strong="H3427"\w* \w was|strong="H4428"\w* \w a|strong="H3068"\w* fire \w in|strong="H3427"\w* \w the|strong="H6440"\w* brazier \w burning|strong="H1197"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 23 \w When|strong="H1961"\w* \w Jehudi|strong="H3065"\w* \w had|strong="H1961"\w* \w read|strong="H7121"\w* \w three|strong="H7969"\w* \w or|strong="H5704"\w* \w four|strong="H7969"\w* \w columns|strong="H1817"\w*, \w the|strong="H3605"\w* \w king|strong="H5921"\w* \w cut|strong="H7167"\w* \w it|strong="H7121"\w* \w with|strong="H5921"\w* \w the|strong="H3605"\w* \w penknife|strong="H8593"\w*, \w and|strong="H7969"\w* \w cast|strong="H7993"\w* \w it|strong="H7121"\w* \w into|strong="H5921"\w* \w the|strong="H3605"\w* fire \w that|strong="H3605"\w* \w was|strong="H1961"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* brazier, \w until|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w scroll|strong="H4039"\w* \w was|strong="H1961"\w* \w consumed|strong="H8552"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* fire \w that|strong="H3605"\w* \w was|strong="H1961"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* brazier. +\v 24 \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w* \w who|strong="H3605"\w* \w heard|strong="H8085"\w* \w all|strong="H3605"\w* \w these|strong="H8085"\w* \w words|strong="H1697"\w* \w were|strong="H1697"\w* \w not|strong="H3808"\w* \w afraid|strong="H6342"\w*, \w and|strong="H4428"\w* didn’t \w tear|strong="H7167"\w* \w their|strong="H3605"\w* garments. +\v 25 \w Moreover|strong="H1571"\w* Elnathan \w and|strong="H4428"\w* \w Delaiah|strong="H1806"\w* \w and|strong="H4428"\w* \w Gemariah|strong="H1587"\w* \w had|strong="H4428"\w* \w made|strong="H8313"\w* \w intercession|strong="H6293"\w* \w to|strong="H8085"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w that|strong="H8085"\w* \w he|strong="H3808"\w* \w would|strong="H4428"\w* \w not|strong="H3808"\w* \w burn|strong="H8313"\w* \w the|strong="H8085"\w* \w scroll|strong="H4039"\w*; \w but|strong="H3808"\w* \w he|strong="H3808"\w* \w would|strong="H4428"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H8085"\w* \w them|strong="H8313"\w*. +\v 26 \w The|strong="H3947"\w* \w king|strong="H4428"\w* \w commanded|strong="H6680"\w* \w Jerahmeel|strong="H3396"\w* \w the|strong="H3947"\w* \w king|strong="H4428"\w*’s \w son|strong="H1121"\w*, \w and|strong="H1121"\w* \w Seraiah|strong="H8304"\w* \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Azriel|strong="H5837"\w*, \w and|strong="H1121"\w* \w Shelemiah|strong="H8018"\w* \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Abdeel|strong="H5655"\w*, \w to|strong="H3068"\w* arrest \w Baruch|strong="H1263"\w* \w the|strong="H3947"\w* \w scribe|strong="H5608"\w* \w and|strong="H1121"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H3947"\w* \w prophet|strong="H5030"\w*; \w but|strong="H3947"\w* \w Yahweh|strong="H3068"\w* \w hid|strong="H5641"\w* \w them|strong="H6680"\w*. +\p +\v 27 \w Then|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w*, \w after|strong="H1961"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w had|strong="H3068"\w* \w burned|strong="H8313"\w* \w the|strong="H3068"\w* \w scroll|strong="H4039"\w*, \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w words|strong="H1697"\w* \w which|strong="H3068"\w* \w Baruch|strong="H1263"\w* \w wrote|strong="H3789"\w* \w at|strong="H3068"\w* \w the|strong="H3068"\w* \w mouth|strong="H6310"\w* \w of|strong="H4428"\w* \w Jeremiah|strong="H3414"\w*, \w saying|strong="H1697"\w*, +\v 28 “\w Take|strong="H3947"\w* \w again|strong="H7725"\w* another \w scroll|strong="H4039"\w*, \w and|strong="H3063"\w* \w write|strong="H3789"\w* \w in|strong="H5921"\w* \w it|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w former|strong="H7223"\w* \w words|strong="H1697"\w* \w that|strong="H3605"\w* \w were|strong="H1961"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w first|strong="H7223"\w* \w scroll|strong="H4039"\w*, \w which|strong="H1697"\w* \w Jehoiakim|strong="H3079"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w has|strong="H1961"\w* \w burned|strong="H8313"\w*. +\v 29 \w Concerning|strong="H5921"\w* \w Jehoiakim|strong="H3079"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w you|strong="H5921"\w* \w shall|strong="H3068"\w* say, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w You|strong="H5921"\w* \w have|strong="H3068"\w* \w burned|strong="H8313"\w* \w this|strong="H2063"\w* \w scroll|strong="H4039"\w*, saying, ‘\w Why|strong="H4069"\w* \w have|strong="H3068"\w* \w you|strong="H5921"\w* \w written|strong="H3789"\w* \w therein|strong="H3789"\w*, saying, “\w The|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w will|strong="H3068"\w* certainly \w come|strong="H3063"\w* \w and|strong="H3063"\w* \w destroy|strong="H7843"\w* \w this|strong="H2063"\w* land, \w and|strong="H3063"\w* \w will|strong="H3068"\w* cause \w to|strong="H3068"\w* \w cease|strong="H7673"\w* \w from|strong="H4480"\w* \w there|strong="H4480"\w* man \w and|strong="H3063"\w* \w animal|strong="H7843"\w*”?’” +\v 30 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w concerning|strong="H5921"\w* \w Jehoiakim|strong="H3079"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*: “\w He|strong="H3117"\w* \w will|strong="H3068"\w* \w have|strong="H1961"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w to|strong="H3068"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w David|strong="H1732"\w*’s \w throne|strong="H3678"\w*. \w His|strong="H3068"\w* \w dead|strong="H5038"\w* \w body|strong="H5038"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w cast|strong="H7993"\w* \w out|strong="H7993"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w heat|strong="H2721"\w*, \w and|strong="H3063"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w night|strong="H3915"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w frost|strong="H7140"\w*. +\v 31 \w I|strong="H5921"\w* \w will|strong="H5650"\w* \w punish|strong="H6485"\w* \w him|strong="H5921"\w*, \w his|strong="H3605"\w* \w offspring|strong="H2233"\w*, \w and|strong="H3063"\w* \w his|strong="H3605"\w* \w servants|strong="H5650"\w* \w for|strong="H5921"\w* \w their|strong="H3605"\w* \w iniquity|strong="H5771"\w*. \w I|strong="H5921"\w* \w will|strong="H5650"\w* \w bring|strong="H7451"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3063"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w men|strong="H5650"\w* \w of|strong="H3427"\w* \w Judah|strong="H3063"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w that|strong="H3605"\w* \w I|strong="H5921"\w* \w have|strong="H5650"\w* \w pronounced|strong="H1696"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w*, \w but|strong="H3808"\w* \w they|strong="H3808"\w* didn’t \w listen|strong="H8085"\w*.”’” +\p +\v 32 \w Then|strong="H3947"\w* \w Jeremiah|strong="H3414"\w* \w took|strong="H3947"\w* \w another|strong="H5750"\w* \w scroll|strong="H5612"\w*, \w and|strong="H1121"\w* \w gave|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H5921"\w* \w Baruch|strong="H1263"\w* \w the|strong="H3605"\w* \w scribe|strong="H5608"\w*, \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Neriah|strong="H5374"\w*, \w who|strong="H3605"\w* \w wrote|strong="H3789"\w* \w therein|strong="H3789"\w* \w from|strong="H5921"\w* \w the|strong="H3605"\w* \w mouth|strong="H6310"\w* \w of|strong="H1121"\w* \w Jeremiah|strong="H3414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w* \w which|strong="H1992"\w* \w Jehoiakim|strong="H3079"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w had|strong="H4428"\w* \w burned|strong="H8313"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* fire; \w and|strong="H1121"\w* \w many|strong="H7227"\w* similar \w words|strong="H1697"\w* \w were|strong="H1121"\w* \w added|strong="H3254"\w* \w to|strong="H5921"\w* \w them|strong="H5414"\w*. +\c 37 +\p +\v 1 \w Zedekiah|strong="H6667"\w* \w the|strong="H8478"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w* \w reigned|strong="H4427"\w* \w as|strong="H8478"\w* \w king|strong="H4428"\w* \w instead|strong="H8478"\w* \w of|strong="H1121"\w* \w Coniah|strong="H3659"\w* \w the|strong="H8478"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehoiakim|strong="H3079"\w*, whom \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon \w made|strong="H4427"\w* \w king|strong="H4428"\w* \w in|strong="H4428"\w* \w the|strong="H8478"\w* land \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*. +\v 2 \w But|strong="H3808"\w* \w neither|strong="H3808"\w* \w he|strong="H1931"\w*, \w nor|strong="H3808"\w* \w his|strong="H3068"\w* \w servants|strong="H5650"\w*, \w nor|strong="H3808"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* land, \w listened|strong="H8085"\w* \w to|strong="H1696"\w* \w Yahweh|strong="H3068"\w*’s \w words|strong="H1697"\w*, \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w spoke|strong="H1696"\w* \w by|strong="H3027"\w* \w the|strong="H8085"\w* \w prophet|strong="H5030"\w* \w Jeremiah|strong="H3414"\w*. +\p +\v 3 \w Zedekiah|strong="H6667"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w sent|strong="H7971"\w* \w Jehucal|strong="H3081"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shelemiah|strong="H8018"\w* \w and|strong="H1121"\w* \w Zephaniah|strong="H6846"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Maaseiah|strong="H4641"\w*, \w the|strong="H3068"\w* \w priest|strong="H3548"\w*, \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w prophet|strong="H5030"\w* \w Jeremiah|strong="H3414"\w*, saying, “\w Pray|strong="H6419"\w* \w now|strong="H4994"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w for|strong="H1157"\w* \w us|strong="H4994"\w*.” +\p +\v 4 \w Now|strong="H5414"\w* \w Jeremiah|strong="H3414"\w* \w came|strong="H3318"\w* \w in|strong="H1004"\w* \w and|strong="H1004"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w among|strong="H8432"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w*, \w for|strong="H1004"\w* \w they|strong="H3808"\w* \w had|strong="H5414"\w* \w not|strong="H3808"\w* \w put|strong="H5414"\w* \w him|strong="H5414"\w* \w into|strong="H8432"\w* \w prison|strong="H1004"\w*. +\v 5 \w Pharaoh|strong="H6547"\w*’s \w army|strong="H2428"\w* \w had|strong="H6547"\w* \w come|strong="H5927"\w* \w out|strong="H3318"\w* \w of|strong="H5921"\w* \w Egypt|strong="H4714"\w*; \w and|strong="H3389"\w* \w when|strong="H8085"\w* \w the|strong="H5921"\w* \w Chaldeans|strong="H3778"\w* \w who|strong="H6547"\w* \w were|strong="H4714"\w* \w besieging|strong="H6696"\w* \w Jerusalem|strong="H3389"\w* \w heard|strong="H8085"\w* \w news|strong="H8088"\w* \w of|strong="H5921"\w* \w them|strong="H5921"\w*, \w they|strong="H5921"\w* \w withdrew|strong="H5927"\w* \w from|strong="H3318"\w* \w Jerusalem|strong="H3389"\w*. +\p +\v 6 \w Then|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w prophet|strong="H5030"\w* \w Jeremiah|strong="H3414"\w*, \w saying|strong="H1697"\w*, +\v 7 “\w Yahweh|strong="H3068"\w*, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*, ‘\w You|strong="H7971"\w* \w shall|strong="H3068"\w* tell \w the|strong="H3541"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w who|strong="H3068"\w* \w sent|strong="H7971"\w* \w you|strong="H7971"\w* \w to|strong="H7725"\w* \w me|strong="H7971"\w* \w to|strong="H7725"\w* \w inquire|strong="H1875"\w* \w of|strong="H4428"\w* \w me|strong="H7971"\w*: “\w Behold|strong="H2009"\w*, \w Pharaoh|strong="H6547"\w*’s \w army|strong="H2428"\w*, \w which|strong="H3068"\w* \w has|strong="H3068"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H7725"\w* \w help|strong="H5833"\w* \w you|strong="H7971"\w*, \w will|strong="H3068"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w Egypt|strong="H4714"\w* \w into|strong="H7725"\w* \w their|strong="H3068"\w* own land. +\v 8 \w The|strong="H5921"\w* \w Chaldeans|strong="H3778"\w* \w will|strong="H5892"\w* \w come|strong="H7725"\w* \w again|strong="H7725"\w*, \w and|strong="H7725"\w* \w fight|strong="H3898"\w* \w against|strong="H5921"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w*. \w They|strong="H5921"\w* \w will|strong="H5892"\w* \w take|strong="H3920"\w* \w it|strong="H5921"\w* \w and|strong="H7725"\w* \w burn|strong="H8313"\w* \w it|strong="H5921"\w* \w with|strong="H8313"\w* fire.”’ +\p +\v 9 “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘Don’t \w deceive|strong="H5377"\w* \w yourselves|strong="H5315"\w*, saying, “\w The|strong="H5921"\w* \w Chaldeans|strong="H3778"\w* \w will|strong="H3068"\w* \w surely|strong="H3588"\w* \w depart|strong="H3212"\w* \w from|strong="H5921"\w* \w us|strong="H5921"\w*;” \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w depart|strong="H3212"\w*. +\v 10 \w For|strong="H3588"\w* \w though|strong="H3588"\w* \w you|strong="H3588"\w* \w had|strong="H3588"\w* \w struck|strong="H5221"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w army|strong="H2428"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w Chaldeans|strong="H3778"\w* \w who|strong="H3605"\w* \w fight|strong="H3898"\w* \w against|strong="H3898"\w* \w you|strong="H3588"\w*, \w and|strong="H6965"\w* \w only|strong="H3588"\w* \w wounded|strong="H5221"\w* \w men|strong="H2428"\w* \w remained|strong="H7604"\w* among \w them|strong="H5221"\w*, \w they|strong="H3588"\w* \w would|strong="H3605"\w* \w each|strong="H3605"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w in|strong="H5892"\w* \w his|strong="H3605"\w* tent \w and|strong="H6965"\w* \w burn|strong="H8313"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w with|strong="H8313"\w* fire.’” +\p +\v 11 \w When|strong="H1961"\w* \w the|strong="H6440"\w* \w army|strong="H2428"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w Chaldeans|strong="H3778"\w* \w had|strong="H1961"\w* \w withdrawn|strong="H5927"\w* \w from|strong="H6440"\w* \w Jerusalem|strong="H3389"\w* \w for|strong="H5921"\w* \w fear|strong="H6440"\w* \w of|strong="H6440"\w* \w Pharaoh|strong="H6547"\w*’s \w army|strong="H2428"\w*, +\v 12 \w then|strong="H3318"\w* \w Jeremiah|strong="H3414"\w* \w went|strong="H3212"\w* \w out|strong="H3318"\w* \w of|strong="H8432"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H3318"\w* \w go|strong="H3212"\w* \w into|strong="H8432"\w* \w the|strong="H8432"\w* land \w of|strong="H8432"\w* \w Benjamin|strong="H1144"\w*, \w to|strong="H3318"\w* receive \w his|strong="H8432"\w* \w portion|strong="H2505"\w* \w there|strong="H8033"\w*, \w in|strong="H8432"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w the|strong="H8432"\w* \w people|strong="H5971"\w*. +\v 13 \w When|strong="H1961"\w* \w he|strong="H1931"\w* \w was|strong="H8034"\w* \w in|strong="H1121"\w* \w Benjamin|strong="H1144"\w*’s \w gate|strong="H8179"\w*, \w a|strong="H3068"\w* \w captain|strong="H1167"\w* \w of|strong="H1121"\w* \w the|strong="H3414"\w* \w guard|strong="H6488"\w* \w was|strong="H8034"\w* \w there|strong="H8033"\w*, \w whose|strong="H1121"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Irijah|strong="H3376"\w*, \w the|strong="H3414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shelemiah|strong="H8018"\w*, \w the|strong="H3414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hananiah|strong="H2608"\w*; \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w seized|strong="H8610"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H3414"\w* \w prophet|strong="H5030"\w*, saying, “\w You|strong="H1961"\w* \w are|strong="H1121"\w* defecting \w to|strong="H1961"\w* \w the|strong="H3414"\w* \w Chaldeans|strong="H3778"\w*!” +\p +\v 14 \w Then|strong="H5307"\w* \w Jeremiah|strong="H3414"\w* \w said|strong="H8085"\w*, “\w That|strong="H8085"\w* \w is|strong="H8085"\w* \w false|strong="H8267"\w*! \w I|strong="H5921"\w* am \w not|strong="H3808"\w* defecting \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w Chaldeans|strong="H3778"\w*.” +\p \w But|strong="H3808"\w* \w he|strong="H3808"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w*; \w so|strong="H3808"\w* \w Irijah|strong="H3376"\w* \w seized|strong="H8610"\w* \w Jeremiah|strong="H3414"\w*, \w and|strong="H8085"\w* brought \w him|strong="H5921"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w princes|strong="H8269"\w*. +\v 15 \w The|strong="H5921"\w* \w princes|strong="H8269"\w* \w were|strong="H8269"\w* \w angry|strong="H7107"\w* \w with|strong="H1004"\w* \w Jeremiah|strong="H3414"\w*, \w and|strong="H1004"\w* \w struck|strong="H5221"\w* \w him|strong="H5414"\w*, \w and|strong="H1004"\w* \w put|strong="H5414"\w* \w him|strong="H5414"\w* \w in|strong="H5921"\w* \w prison|strong="H1004"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jonathan|strong="H3083"\w* \w the|strong="H5921"\w* \w scribe|strong="H5608"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H3588"\w* \w made|strong="H6213"\w* \w that|strong="H3588"\w* \w the|strong="H5921"\w* \w prison|strong="H1004"\w*. +\p +\v 16 \w When|strong="H3588"\w* \w Jeremiah|strong="H3414"\w* \w had|strong="H3588"\w* come into \w the|strong="H3588"\w* \w dungeon|strong="H1004"\w* \w house|strong="H1004"\w* \w and|strong="H3117"\w* into \w the|strong="H3588"\w* cells, \w and|strong="H3117"\w* \w Jeremiah|strong="H3414"\w* \w had|strong="H3588"\w* \w remained|strong="H3427"\w* \w there|strong="H8033"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w*, +\v 17 \w then|strong="H3947"\w* \w Zedekiah|strong="H6667"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w sent|strong="H7971"\w* \w and|strong="H3068"\w* \w had|strong="H3068"\w* \w him|strong="H5414"\w* \w brought|strong="H3947"\w* \w out|strong="H7971"\w*. \w The|strong="H5414"\w* \w king|strong="H4428"\w* \w asked|strong="H7592"\w* \w him|strong="H5414"\w* \w secretly|strong="H5643"\w* \w in|strong="H3068"\w* \w his|strong="H5414"\w* \w house|strong="H1004"\w*, “\w Is|strong="H3068"\w* \w there|strong="H3426"\w* \w any|strong="H3426"\w* \w word|strong="H1697"\w* \w from|strong="H3027"\w* \w Yahweh|strong="H3068"\w*?” +\p \w Jeremiah|strong="H3414"\w* \w said|strong="H1697"\w*, “\w There|strong="H3426"\w* \w is|strong="H3068"\w*.” \w He|strong="H3068"\w* \w also|strong="H3068"\w* \w said|strong="H1697"\w*, “\w You|strong="H5414"\w* \w will|strong="H3068"\w* \w be|strong="H3426"\w* \w delivered|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon.” +\p +\v 18 \w Moreover|strong="H3588"\w* \w Jeremiah|strong="H3414"\w* said \w to|strong="H5414"\w* \w King|strong="H4428"\w* \w Zedekiah|strong="H6667"\w*, “\w How|strong="H4100"\w* \w have|strong="H5971"\w* \w I|strong="H3588"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w you|strong="H3588"\w*, \w against|strong="H2398"\w* \w your|strong="H5414"\w* \w servants|strong="H5650"\w*, \w or|strong="H1004"\w* \w against|strong="H2398"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H5971"\w* \w put|strong="H5414"\w* \w me|strong="H5414"\w* \w in|strong="H1004"\w* \w prison|strong="H1004"\w*? +\v 19 \w Now|strong="H4428"\w* \w where|strong="H5921"\w* \w are|strong="H5030"\w* \w your|strong="H5921"\w* \w prophets|strong="H5030"\w* \w who|strong="H5030"\w* \w prophesied|strong="H5012"\w* \w to|strong="H5921"\w* \w you|strong="H5921"\w*, saying, ‘\w The|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w will|strong="H4428"\w* \w not|strong="H3808"\w* come \w against|strong="H5921"\w* \w you|strong="H5921"\w*, \w nor|strong="H3808"\w* \w against|strong="H5921"\w* \w this|strong="H2063"\w* land’? +\v 20 \w Now|strong="H6258"\w* \w please|strong="H4994"\w* \w hear|strong="H8085"\w*, \w my|strong="H8085"\w* lord \w the|strong="H6440"\w* \w king|strong="H4428"\w*: \w please|strong="H4994"\w* \w let|strong="H4994"\w* \w my|strong="H8085"\w* \w supplication|strong="H8467"\w* \w be|strong="H4191"\w* \w presented|strong="H5307"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w that|strong="H8085"\w* \w you|strong="H6440"\w* \w not|strong="H3808"\w* \w cause|strong="H7725"\w* \w me|strong="H6440"\w* \w to|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w Jonathan|strong="H3083"\w* \w the|strong="H6440"\w* \w scribe|strong="H5608"\w*, lest \w I|strong="H6258"\w* \w die|strong="H4191"\w* \w there|strong="H8033"\w*.” +\p +\v 21 \w Then|strong="H5414"\w* \w Zedekiah|strong="H6667"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w commanded|strong="H6680"\w*, \w and|strong="H4428"\w* \w they|strong="H3117"\w* \w committed|strong="H6485"\w* \w Jeremiah|strong="H3414"\w* \w into|strong="H5414"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w guard|strong="H4307"\w*. \w They|strong="H3117"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* \w daily|strong="H3117"\w* \w a|strong="H3068"\w* \w loaf|strong="H3603"\w* \w of|strong="H4428"\w* \w bread|strong="H3899"\w* \w out|strong="H2351"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* bakers’ \w street|strong="H2351"\w*, \w until|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w bread|strong="H3899"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w was|strong="H5892"\w* \w gone|strong="H8552"\w*. Thus \w Jeremiah|strong="H3414"\w* \w remained|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w court|strong="H2691"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w guard|strong="H4307"\w*. +\c 38 +\p +\v 1 \w Shephatiah|strong="H8203"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Mattan|strong="H4977"\w*, \w Gedaliah|strong="H1436"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Pashhur|strong="H6583"\w*, \w Jucal|strong="H3116"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shelemiah|strong="H8018"\w*, \w and|strong="H1121"\w* \w Pashhur|strong="H6583"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Malchijah|strong="H4441"\w* \w heard|strong="H8085"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w that|strong="H5971"\w* \w Jeremiah|strong="H3414"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w He|strong="H3068"\w* \w who|strong="H3068"\w* \w remains|strong="H1961"\w* \w in|strong="H3427"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w will|strong="H3068"\w* \w die|strong="H4191"\w* \w by|strong="H3068"\w* \w the|strong="H3541"\w* \w sword|strong="H2719"\w*, \w by|strong="H3068"\w* \w the|strong="H3541"\w* \w famine|strong="H7458"\w*, \w and|strong="H3068"\w* \w by|strong="H3068"\w* \w the|strong="H3541"\w* \w pestilence|strong="H1698"\w*, \w but|strong="H1961"\w* \w he|strong="H3068"\w* \w who|strong="H3068"\w* \w goes|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3541"\w* \w Chaldeans|strong="H3778"\w* \w will|strong="H3068"\w* \w live|strong="H3427"\w*. \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w escape|strong="H3318"\w* \w with|strong="H3068"\w* \w his|strong="H3068"\w* \w life|strong="H5315"\w* \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w live|strong="H3427"\w*.’ +\v 3 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w This|strong="H2063"\w* \w city|strong="H5892"\w* \w will|strong="H3068"\w* \w surely|strong="H5414"\w* \w be|strong="H3027"\w* \w given|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w army|strong="H2428"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w take|strong="H3920"\w* \w it|strong="H5414"\w*.’” +\p +\v 4 \w Then|strong="H1696"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, “\w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w this|strong="H2088"\w* \w man|strong="H4191"\w* \w be|strong="H4191"\w* \w put|strong="H4191"\w* \w to|strong="H1696"\w* \w death|strong="H4191"\w*, \w because|strong="H3588"\w* \w he|strong="H1931"\w* weakens \w the|strong="H3605"\w* \w hands|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w men|strong="H5971"\w* \w of|strong="H4428"\w* \w war|strong="H4421"\w* \w who|strong="H3605"\w* \w remain|strong="H7604"\w* \w in|strong="H5921"\w* \w this|strong="H2088"\w* \w city|strong="H5892"\w*, \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w hands|strong="H3027"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w in|strong="H5921"\w* \w speaking|strong="H1696"\w* \w such|strong="H2088"\w* \w words|strong="H1697"\w* \w to|strong="H1696"\w* \w them|strong="H5921"\w*; \w for|strong="H3588"\w* \w this|strong="H2088"\w* \w man|strong="H4191"\w* doesn’t \w seek|strong="H1875"\w* \w the|strong="H3605"\w* \w welfare|strong="H7965"\w* \w of|strong="H4428"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*, \w but|strong="H3588"\w* \w harm|strong="H7451"\w*.” +\p +\v 5 \w Zedekiah|strong="H6667"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w said|strong="H1697"\w*, “\w Behold|strong="H2009"\w*, \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w in|strong="H4428"\w* \w your|strong="H3588"\w* \w hand|strong="H3027"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w can|strong="H3201"\w*’t \w do|strong="H3201"\w* \w anything|strong="H1697"\w* \w to|strong="H3201"\w* oppose \w you|strong="H3588"\w*.” +\p +\v 6 \w Then|strong="H3947"\w* \w they|strong="H3588"\w* \w took|strong="H3947"\w* \w Jeremiah|strong="H3414"\w* \w and|strong="H1121"\w* \w threw|strong="H7993"\w* \w him|strong="H7971"\w* \w into|strong="H7993"\w* \w the|strong="H3588"\w* dungeon \w of|strong="H1121"\w* \w Malchijah|strong="H4441"\w* \w the|strong="H3588"\w* king’s \w son|strong="H1121"\w*, \w that|strong="H3588"\w* \w was|strong="H1121"\w* \w in|strong="H1121"\w* \w the|strong="H3588"\w* \w court|strong="H2691"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w guard|strong="H4307"\w*. \w They|strong="H3588"\w* \w let|strong="H7971"\w* \w down|strong="H7993"\w* \w Jeremiah|strong="H3414"\w* \w with|strong="H4325"\w* \w cords|strong="H2256"\w*. \w In|strong="H1121"\w* \w the|strong="H3588"\w* dungeon there \w was|strong="H1121"\w* \w no|strong="H3947"\w* \w water|strong="H4325"\w*, \w but|strong="H3588"\w* \w mire|strong="H2916"\w*; \w and|strong="H1121"\w* \w Jeremiah|strong="H3414"\w* \w sank|strong="H2883"\w* \w in|strong="H1121"\w* \w the|strong="H3588"\w* \w mire|strong="H2916"\w*. +\p +\v 7 \w Now|strong="H3588"\w* \w when|strong="H3588"\w* Ebedmelech \w the|strong="H8085"\w* \w Ethiopian|strong="H3569"\w*, \w a|strong="H3068"\w* \w eunuch|strong="H5631"\w*, \w who|strong="H1931"\w* \w was|strong="H1931"\w* \w in|strong="H3427"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H4428"\w* \w put|strong="H5414"\w* \w Jeremiah|strong="H3414"\w* \w in|strong="H3427"\w* \w the|strong="H8085"\w* \w dungeon|strong="H1004"\w* (\w the|strong="H8085"\w* \w king|strong="H4428"\w* \w was|strong="H1931"\w* \w then|strong="H5414"\w* \w sitting|strong="H3427"\w* \w in|strong="H3427"\w* \w Benjamin|strong="H1144"\w*’s \w gate|strong="H8179"\w*), +\v 8 Ebedmelech \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w the|strong="H3318"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*, \w and|strong="H4428"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3318"\w* \w king|strong="H4428"\w*, \w saying|strong="H1696"\w*, +\v 9 “\w My|strong="H3605"\w* lord \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w these|strong="H6213"\w* \w men|strong="H6213"\w* \w have|strong="H5030"\w* \w done|strong="H6213"\w* \w evil|strong="H7489"\w* \w in|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H5030"\w* \w done|strong="H6213"\w* \w to|strong="H4191"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H3605"\w* \w prophet|strong="H5030"\w*, \w whom|strong="H6440"\w* \w they|strong="H3588"\w* \w have|strong="H5030"\w* \w cast|strong="H7993"\w* \w into|strong="H6213"\w* \w the|strong="H3605"\w* dungeon. \w He|strong="H3588"\w* \w is|strong="H3605"\w* likely \w to|strong="H4191"\w* \w die|strong="H4191"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w place|strong="H8478"\w* \w where|strong="H8478"\w* \w he|strong="H3588"\w* \w is|strong="H3605"\w*, \w because|strong="H3588"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w famine|strong="H7458"\w*; \w for|strong="H3588"\w* \w there|strong="H3605"\w* \w is|strong="H3605"\w* \w no|strong="H6213"\w* \w more|strong="H5750"\w* \w bread|strong="H3899"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*.” +\p +\v 10 \w Then|strong="H2088"\w* \w the|strong="H3947"\w* \w king|strong="H4428"\w* \w commanded|strong="H6680"\w* Ebedmelech \w the|strong="H3947"\w* \w Ethiopian|strong="H3569"\w*, saying, “\w Take|strong="H3947"\w* \w from|strong="H4480"\w* \w here|strong="H2088"\w* \w thirty|strong="H7970"\w* \w men|strong="H3947"\w* \w with|strong="H3027"\w* \w you|strong="H6680"\w*, \w and|strong="H4428"\w* \w take|strong="H3947"\w* \w up|strong="H5927"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H3947"\w* \w prophet|strong="H5030"\w* \w out|strong="H4480"\w* \w of|strong="H4428"\w* \w the|strong="H3947"\w* dungeon, \w before|strong="H4480"\w* \w he|strong="H3027"\w* \w dies|strong="H4191"\w*.” +\p +\v 11 \w So|strong="H3947"\w* Ebedmelech \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w men|strong="H3947"\w* \w with|strong="H1004"\w* \w him|strong="H7971"\w*, \w and|strong="H7971"\w* \w went|strong="H4428"\w* \w into|strong="H3027"\w* \w the|strong="H3947"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w the|strong="H3947"\w* \w king|strong="H4428"\w* \w under|strong="H8478"\w* \w the|strong="H3947"\w* \w treasury|strong="H1004"\w*, \w and|strong="H7971"\w* \w took|strong="H3947"\w* \w from|strong="H3027"\w* \w there|strong="H8033"\w* \w rags|strong="H4418"\w* \w and|strong="H7971"\w* \w worn-out|strong="H1094"\w* garments, \w and|strong="H7971"\w* \w let|strong="H7971"\w* \w them|strong="H7971"\w* \w down|strong="H7971"\w* \w by|strong="H3027"\w* \w cords|strong="H2256"\w* \w into|strong="H3027"\w* \w the|strong="H3947"\w* \w dungeon|strong="H1004"\w* \w to|strong="H7971"\w* \w Jeremiah|strong="H3414"\w*. +\v 12 Ebedmelech \w the|strong="H6213"\w* \w Ethiopian|strong="H3569"\w* \w said|strong="H3651"\w* \w to|strong="H6213"\w* \w Jeremiah|strong="H3414"\w*, “\w Now|strong="H4994"\w* \w put|strong="H7760"\w* \w these|strong="H6213"\w* \w rags|strong="H4418"\w* \w and|strong="H3027"\w* \w worn-out|strong="H1094"\w* garments \w under|strong="H8478"\w* \w your|strong="H7760"\w* armpits \w under|strong="H8478"\w* \w the|strong="H6213"\w* \w cords|strong="H2256"\w*.” +\p \w Jeremiah|strong="H3414"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w*. +\v 13 \w So|strong="H4480"\w* \w they|strong="H2691"\w* \w lifted|strong="H5927"\w* \w Jeremiah|strong="H3414"\w* \w up|strong="H5927"\w* \w with|strong="H3427"\w* \w the|strong="H4480"\w* \w cords|strong="H2256"\w*, \w and|strong="H5927"\w* \w took|strong="H5927"\w* \w him|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H4480"\w* \w of|strong="H3427"\w* \w the|strong="H4480"\w* dungeon; \w and|strong="H5927"\w* \w Jeremiah|strong="H3414"\w* \w remained|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H4480"\w* \w court|strong="H2691"\w* \w of|strong="H3427"\w* \w the|strong="H4480"\w* \w guard|strong="H4307"\w*. +\p +\v 14 \w Then|strong="H3947"\w* \w Zedekiah|strong="H6667"\w* \w the|strong="H3947"\w* \w king|strong="H4428"\w* \w sent|strong="H7971"\w* \w and|strong="H3068"\w* \w took|strong="H3947"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H3947"\w* \w prophet|strong="H5030"\w* \w to|strong="H3068"\w* \w himself|strong="H3068"\w* \w into|strong="H3947"\w* \w the|strong="H3947"\w* \w third|strong="H7992"\w* \w entry|strong="H3996"\w* \w that|strong="H3068"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. \w Then|strong="H3947"\w* \w the|strong="H3947"\w* \w king|strong="H4428"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w*, “\w I|strong="H1697"\w* \w will|strong="H3068"\w* \w ask|strong="H7592"\w* \w you|strong="H7971"\w* \w something|strong="H1697"\w*. \w Hide|strong="H3582"\w* \w nothing|strong="H1697"\w* \w from|strong="H4480"\w* \w me|strong="H7971"\w*.” +\p +\v 15 \w Then|strong="H8085"\w* \w Jeremiah|strong="H3414"\w* \w said|strong="H8085"\w* \w to|strong="H4191"\w* \w Zedekiah|strong="H6667"\w*, “\w If|strong="H3588"\w* \w I|strong="H3588"\w* \w declare|strong="H5046"\w* \w it|strong="H3588"\w* \w to|strong="H4191"\w* \w you|strong="H3588"\w*, \w will|strong="H3808"\w* \w you|strong="H3588"\w* \w not|strong="H3808"\w* \w surely|strong="H4191"\w* \w put|strong="H4191"\w* \w me|strong="H5046"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*? \w If|strong="H3588"\w* \w I|strong="H3588"\w* \w give|strong="H3289"\w* \w you|strong="H3588"\w* \w counsel|strong="H3289"\w*, \w you|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H4191"\w* \w me|strong="H5046"\w*.” +\p +\v 16 \w So|strong="H6213"\w* \w Zedekiah|strong="H6667"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w swore|strong="H7650"\w* \w secretly|strong="H5643"\w* \w to|strong="H4191"\w* \w Jeremiah|strong="H3414"\w*, saying, “\w As|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H5315"\w*, \w who|strong="H3068"\w* \w made|strong="H6213"\w* \w our|strong="H3068"\w* \w souls|strong="H5315"\w*, \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w not|strong="H6213"\w* \w put|strong="H5414"\w* \w you|strong="H5414"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w*, neither \w will|strong="H3068"\w* \w I|strong="H5414"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w into|strong="H6213"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w these|strong="H2063"\w* \w men|strong="H6213"\w* \w who|strong="H3068"\w* \w seek|strong="H1245"\w* \w your|strong="H3068"\w* \w life|strong="H5315"\w*.” +\p +\v 17 \w Then|strong="H3318"\w* \w Jeremiah|strong="H3414"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w Zedekiah|strong="H6667"\w*, “\w Yahweh|strong="H3068"\w*, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*: ‘If \w you|strong="H3808"\w* \w will|strong="H3068"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3541"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon’s \w princes|strong="H8269"\w*, \w then|strong="H3318"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w* \w will|strong="H3068"\w* \w live|strong="H2421"\w*, \w and|strong="H3478"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w burned|strong="H8313"\w* \w with|strong="H8313"\w* fire. \w You|strong="H3808"\w* \w will|strong="H3068"\w* \w live|strong="H2421"\w*, along \w with|strong="H8313"\w* \w your|strong="H3068"\w* \w house|strong="H1004"\w*. +\v 18 \w But|strong="H3808"\w* if \w you|strong="H5414"\w* \w will|strong="H4428"\w* \w not|strong="H3808"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon’s \w princes|strong="H8269"\w*, \w then|strong="H3318"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w will|strong="H4428"\w* \w be|strong="H3808"\w* \w given|strong="H5414"\w* \w into|strong="H3318"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w Chaldeans|strong="H3778"\w*, \w and|strong="H4428"\w* \w they|strong="H3808"\w* \w will|strong="H4428"\w* \w burn|strong="H8313"\w* \w it|strong="H5414"\w* \w with|strong="H8313"\w* fire, \w and|strong="H4428"\w* \w you|strong="H5414"\w* won’t \w escape|strong="H4422"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w their|strong="H5414"\w* \w hand|strong="H3027"\w*.’” +\p +\v 19 \w Zedekiah|strong="H6667"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* said \w to|strong="H5414"\w* \w Jeremiah|strong="H3414"\w*, “\w I|strong="H5414"\w* am \w afraid|strong="H1672"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w Jews|strong="H3064"\w* \w who|strong="H4428"\w* \w have|strong="H3027"\w* \w defected|strong="H5307"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w Chaldeans|strong="H3778"\w*, \w lest|strong="H6435"\w* \w they|strong="H3027"\w* \w deliver|strong="H5414"\w* \w me|strong="H5414"\w* \w into|strong="H5307"\w* \w their|strong="H5414"\w* \w hand|strong="H3027"\w*, \w and|strong="H4428"\w* \w they|strong="H3027"\w* \w mock|strong="H5953"\w* \w me|strong="H5414"\w*.” +\p +\v 20 \w But|strong="H3808"\w* \w Jeremiah|strong="H3414"\w* \w said|strong="H1696"\w*, “\w They|strong="H3068"\w* won’t \w deliver|strong="H5414"\w* \w you|strong="H5414"\w*. \w Obey|strong="H8085"\w*, \w I|strong="H5414"\w* \w beg|strong="H4994"\w* \w you|strong="H5414"\w*, \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w*, \w in|strong="H3068"\w* \w that|strong="H8085"\w* \w which|strong="H3068"\w* \w I|strong="H5414"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H5414"\w*; \w so|strong="H5414"\w* \w it|strong="H5414"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w well|strong="H3190"\w* \w with|strong="H3068"\w* \w you|strong="H5414"\w*, \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w soul|strong="H5315"\w* \w will|strong="H3068"\w* \w live|strong="H2421"\w*. +\v 21 \w But|strong="H7200"\w* \w if|strong="H7200"\w* \w you|strong="H7200"\w* \w refuse|strong="H3986"\w* \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*, \w this|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H7200"\w* \w word|strong="H1697"\w* \w that|strong="H7200"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w shown|strong="H7200"\w* \w me|strong="H7200"\w*: +\v 22 ‘\w Behold|strong="H2009"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* women \w who|strong="H3605"\w* \w are|strong="H1004"\w* \w left|strong="H7604"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*’s \w house|strong="H1004"\w* \w will|strong="H4428"\w* \w be|strong="H3201"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon’s \w princes|strong="H8269"\w*, \w and|strong="H3063"\w* \w those|strong="H3605"\w* women \w will|strong="H4428"\w* say, +\q1 “\w Your|strong="H3605"\w* \w familiar|strong="H7965"\w* friends \w have|strong="H3063"\w* \w turned|strong="H5472"\w* \w on|strong="H1004"\w* \w you|strong="H3605"\w*, +\q2 \w and|strong="H3063"\w* \w have|strong="H3063"\w* \w prevailed|strong="H3201"\w* \w over|strong="H4428"\w* \w you|strong="H3605"\w*. +\q1 \w Your|strong="H3605"\w* \w feet|strong="H7272"\w* \w are|strong="H1004"\w* \w sunk|strong="H2883"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* \w mire|strong="H1206"\w*, +\q2 \w they|strong="H2007"\w* \w have|strong="H3063"\w* \w turned|strong="H5472"\w* \w away|strong="H3318"\w* \w from|strong="H3318"\w* \w you|strong="H3605"\w*.” +\p +\v 23 \w They|strong="H3588"\w* \w will|strong="H4428"\w* \w bring|strong="H3318"\w* \w out|strong="H3318"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* wives \w and|strong="H1121"\w* \w your|strong="H3605"\w* \w children|strong="H1121"\w* \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w Chaldeans|strong="H3778"\w*. \w You|strong="H3588"\w* won’t \w escape|strong="H4422"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w their|strong="H3605"\w* \w hand|strong="H3027"\w*, \w but|strong="H3588"\w* \w will|strong="H4428"\w* \w be|strong="H3808"\w* \w taken|strong="H8610"\w* \w by|strong="H3027"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon. \w You|strong="H3588"\w* \w will|strong="H4428"\w* \w cause|strong="H3318"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w to|strong="H3318"\w* \w be|strong="H3808"\w* \w burned|strong="H8313"\w* \w with|strong="H8313"\w* fire.’” +\p +\v 24 \w Then|strong="H3045"\w* \w Zedekiah|strong="H6667"\w* \w said|strong="H1697"\w* \w to|strong="H4191"\w* \w Jeremiah|strong="H3414"\w*, “\w Let|strong="H3808"\w* \w no|strong="H3808"\w* \w man|strong="H4191"\w* \w know|strong="H3045"\w* \w of|strong="H1697"\w* \w these|strong="H4191"\w* \w words|strong="H1697"\w*, \w and|strong="H1697"\w* \w you|strong="H3045"\w* won’t \w die|strong="H4191"\w*. +\v 25 \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w the|strong="H8085"\w* \w princes|strong="H8269"\w* \w hear|strong="H8085"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H8269"\w* \w talked|strong="H1696"\w* \w with|strong="H1696"\w* \w you|strong="H3588"\w*, \w and|strong="H4428"\w* \w they|strong="H3588"\w* \w come|strong="H4994"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*, \w and|strong="H4428"\w* \w tell|strong="H5046"\w* \w you|strong="H3588"\w*, ‘\w Declare|strong="H5046"\w* \w to|strong="H1696"\w* \w us|strong="H4994"\w* \w now|strong="H4994"\w* \w what|strong="H4100"\w* \w you|strong="H3588"\w* \w have|strong="H8269"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w*; don’t \w hide|strong="H3582"\w* \w it|strong="H3588"\w* \w from|strong="H4480"\w* \w us|strong="H4994"\w*, \w and|strong="H4428"\w* \w we|strong="H3068"\w* \w will|strong="H4428"\w* \w not|strong="H3808"\w* \w put|strong="H4191"\w* \w you|strong="H3588"\w* \w to|strong="H1696"\w* \w death|strong="H4191"\w*; \w also|strong="H4428"\w* \w tell|strong="H5046"\w* \w us|strong="H4994"\w* \w what|strong="H4100"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*;’ +\v 26 \w then|strong="H5307"\w* \w you|strong="H6440"\w* \w shall|strong="H4428"\w* tell \w them|strong="H7725"\w*, ‘\w I|strong="H6440"\w* \w presented|strong="H5307"\w* \w my|strong="H7725"\w* \w supplication|strong="H8467"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*, \w that|strong="H4428"\w* \w he|strong="H8033"\w* \w would|strong="H4428"\w* \w not|strong="H1115"\w* \w cause|strong="H7725"\w* \w me|strong="H6440"\w* \w to|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w Jonathan|strong="H3083"\w*’s \w house|strong="H1004"\w*, \w to|strong="H7725"\w* \w die|strong="H4191"\w* \w there|strong="H8033"\w*.’” +\p +\v 27 \w Then|strong="H8085"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w came|strong="H1697"\w* \w to|strong="H8085"\w* \w Jeremiah|strong="H3414"\w*, \w and|strong="H4428"\w* \w asked|strong="H7592"\w* \w him|strong="H5046"\w*; \w and|strong="H4428"\w* \w he|strong="H3588"\w* \w told|strong="H5046"\w* \w them|strong="H1992"\w* \w according|strong="H4480"\w* \w to|strong="H8085"\w* \w all|strong="H3605"\w* \w these|strong="H1992"\w* \w words|strong="H1697"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w had|strong="H4428"\w* \w commanded|strong="H6680"\w*. \w So|strong="H4480"\w* \w they|strong="H1992"\w* stopped \w speaking|strong="H2790"\w* \w with|strong="H1697"\w* \w him|strong="H5046"\w*, \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w matter|strong="H1697"\w* \w was|strong="H1697"\w* \w not|strong="H3808"\w* \w perceived|strong="H8085"\w*. +\p +\v 28 \w So|strong="H1961"\w* \w Jeremiah|strong="H3414"\w* \w stayed|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3117"\w* \w court|strong="H2691"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w guard|strong="H4307"\w* \w until|strong="H5704"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w Jerusalem|strong="H3389"\w* \w was|strong="H1961"\w* \w taken|strong="H3920"\w*. +\c 39 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H3605"\w* \w ninth|strong="H8671"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w Zedekiah|strong="H6667"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w tenth|strong="H6224"\w* \w month|strong="H2320"\w*, \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w army|strong="H2428"\w* \w came|strong="H3063"\w* \w against|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3063"\w* \w besieged|strong="H6696"\w* \w it|strong="H5921"\w*. +\v 2 \w In|strong="H8141"\w* \w the|strong="H6667"\w* \w eleventh|strong="H6249"\w* \w year|strong="H8141"\w* \w of|strong="H8141"\w* \w Zedekiah|strong="H6667"\w*, \w in|strong="H8141"\w* \w the|strong="H6667"\w* \w fourth|strong="H7243"\w* \w month|strong="H2320"\w*, \w the|strong="H6667"\w* \w ninth|strong="H8672"\w* \w day|strong="H2320"\w* \w of|strong="H8141"\w* \w the|strong="H6667"\w* \w month|strong="H2320"\w*, \w a|strong="H3068"\w* \w breach|strong="H1234"\w* \w was|strong="H5892"\w* \w made|strong="H8141"\w* \w in|strong="H8141"\w* \w the|strong="H6667"\w* \w city|strong="H5892"\w*. +\v 3 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w came|strong="H4428"\w* \w in|strong="H3427"\w*, \w and|strong="H4428"\w* \w sat|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w gate|strong="H8179"\w*: Nergal Sharezer, Samgarnebo, \w Sarsechim|strong="H8310"\w* \w the|strong="H3605"\w* \w Rabsaris|strong="H7249"\w*, Nergal Sharezer \w the|strong="H3605"\w* Rabmag, \w with|strong="H3427"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w rest|strong="H7611"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon. +\v 4 \w When|strong="H1961"\w* \w Zedekiah|strong="H6667"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H4428"\w* \w war|strong="H4421"\w* \w saw|strong="H7200"\w* \w them|strong="H7200"\w*, \w then|strong="H1961"\w* \w they|strong="H3605"\w* \w fled|strong="H1272"\w* \w and|strong="H3063"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w by|strong="H1870"\w* \w night|strong="H3915"\w*, \w by|strong="H1870"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w garden|strong="H1588"\w*, \w through|strong="H4480"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w* \w between|strong="H4421"\w* \w the|strong="H3605"\w* \w two|strong="H4480"\w* \w walls|strong="H2346"\w*; \w and|strong="H3063"\w* \w he|strong="H3605"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w toward|strong="H1870"\w* \w the|strong="H3605"\w* \w Arabah|strong="H6160"\w*. +\p +\v 5 \w But|strong="H1696"\w* \w the|strong="H3947"\w* \w army|strong="H2428"\w* \w of|strong="H4428"\w* \w the|strong="H3947"\w* \w Chaldeans|strong="H3778"\w* \w pursued|strong="H7291"\w* \w them|strong="H3947"\w*, \w and|strong="H4428"\w* \w overtook|strong="H5381"\w* \w Zedekiah|strong="H6667"\w* \w in|strong="H4428"\w* \w the|strong="H3947"\w* \w plains|strong="H6160"\w* \w of|strong="H4428"\w* \w Jericho|strong="H3405"\w*. \w When|strong="H1696"\w* \w they|strong="H3947"\w* \w had|strong="H4428"\w* \w taken|strong="H3947"\w* \w him|strong="H3947"\w*, \w they|strong="H3947"\w* \w brought|strong="H5927"\w* \w him|strong="H3947"\w* \w up|strong="H5927"\w* \w to|strong="H1696"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w to|strong="H1696"\w* \w Riblah|strong="H7247"\w* \w in|strong="H4428"\w* \w the|strong="H3947"\w* land \w of|strong="H4428"\w* \w Hamath|strong="H2574"\w*; \w and|strong="H4428"\w* \w he|strong="H1696"\w* \w pronounced|strong="H1696"\w* \w judgment|strong="H4941"\w* \w on|strong="H5927"\w* \w him|strong="H3947"\w*. +\v 6 \w Then|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon \w killed|strong="H7819"\w* \w Zedekiah|strong="H6667"\w*’s \w sons|strong="H1121"\w* \w in|strong="H4428"\w* \w Riblah|strong="H7247"\w* \w before|strong="H5869"\w* \w his|strong="H3605"\w* \w eyes|strong="H5869"\w*. \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon \w also|strong="H4428"\w* \w killed|strong="H7819"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nobles|strong="H2715"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*. +\v 7 Moreover he \w put|strong="H5786"\w* \w out|strong="H5786"\w* \w Zedekiah|strong="H6667"\w*’s \w eyes|strong="H5869"\w* \w and|strong="H5869"\w* bound \w him|strong="H5869"\w* \w in|strong="H5869"\w* \w fetters|strong="H5178"\w*, \w to|strong="H5869"\w* carry \w him|strong="H5869"\w* \w to|strong="H5869"\w* Babylon. +\p +\v 8 \w The|strong="H8313"\w* \w Chaldeans|strong="H3778"\w* \w burned|strong="H8313"\w* \w the|strong="H8313"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w* \w and|strong="H4428"\w* \w the|strong="H8313"\w* \w people|strong="H5971"\w*’s \w houses|strong="H1004"\w* \w with|strong="H8313"\w* fire \w and|strong="H4428"\w* \w broke|strong="H5422"\w* \w down|strong="H5422"\w* \w the|strong="H8313"\w* \w walls|strong="H2346"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*. +\v 9 \w Then|strong="H5307"\w* \w Nebuzaradan|strong="H5018"\w* \w the|strong="H5921"\w* \w captain|strong="H7227"\w* \w of|strong="H5892"\w* \w the|strong="H5921"\w* \w guard|strong="H2876"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w captive|strong="H1540"\w* \w into|strong="H1540"\w* Babylon \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H5892"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w remained|strong="H7604"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*, \w the|strong="H5921"\w* \w deserters|strong="H5307"\w* \w also|strong="H5971"\w* \w who|strong="H5971"\w* \w fell|strong="H5307"\w* \w away|strong="H1540"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H5971"\w* \w the|strong="H5921"\w* \w rest|strong="H3499"\w* \w of|strong="H5892"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w remained|strong="H7604"\w*. +\v 10 \w But|strong="H1931"\w* \w Nebuzaradan|strong="H5018"\w* \w the|strong="H5414"\w* \w captain|strong="H7227"\w* \w of|strong="H3117"\w* \w the|strong="H5414"\w* \w guard|strong="H2876"\w* \w left|strong="H7604"\w* \w of|strong="H3117"\w* \w the|strong="H5414"\w* \w poor|strong="H1800"\w* \w of|strong="H3117"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w*, \w who|strong="H1931"\w* \w had|strong="H3063"\w* \w nothing|strong="H3972"\w*, \w in|strong="H3117"\w* \w the|strong="H5414"\w* land \w of|strong="H3117"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w vineyards|strong="H3754"\w* \w and|strong="H3063"\w* \w fields|strong="H3010"\w* \w at|strong="H3117"\w* \w the|strong="H5414"\w* \w same|strong="H1931"\w* \w time|strong="H3117"\w*. +\p +\v 11 \w Now|strong="H7227"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w commanded|strong="H6680"\w* \w Nebuzaradan|strong="H5018"\w* \w the|strong="H5921"\w* \w captain|strong="H7227"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w guard|strong="H2876"\w* \w concerning|strong="H5921"\w* \w Jeremiah|strong="H3414"\w*, saying, +\v 12 “\w Take|strong="H3947"\w* \w him|strong="H5921"\w* \w and|strong="H5869"\w* \w take|strong="H3947"\w* \w care|strong="H7760"\w* \w of|strong="H5869"\w* \w him|strong="H5921"\w*. \w Do|strong="H6213"\w* \w him|strong="H5921"\w* \w no|strong="H6213"\w* \w harm|strong="H7451"\w*; \w but|strong="H3588"\w* \w do|strong="H6213"\w* \w to|strong="H1696"\w* \w him|strong="H5921"\w* \w even|strong="H3588"\w* \w as|strong="H6213"\w* \w he|strong="H3588"\w* \w tells|strong="H1696"\w* \w you|strong="H3588"\w*.” +\p +\v 13 \w So|strong="H7971"\w* \w Nebuzaradan|strong="H5018"\w* \w the|strong="H3605"\w* \w captain|strong="H7227"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w guard|strong="H2876"\w*, Nebushazban, \w Rabsaris|strong="H7249"\w*, \w and|strong="H7971"\w* Nergal Sharezer, Rabmag, \w and|strong="H7971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w chief|strong="H7227"\w* \w officers|strong="H7227"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon +\v 14 \w sent|strong="H7971"\w* \w and|strong="H1121"\w* \w took|strong="H3947"\w* \w Jeremiah|strong="H3414"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w court|strong="H2691"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w guard|strong="H4307"\w*, \w and|strong="H1121"\w* \w committed|strong="H5414"\w* \w him|strong="H5414"\w* \w to|strong="H3318"\w* \w Gedaliah|strong="H1436"\w* \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahikam, \w the|strong="H5414"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shaphan|strong="H8227"\w*, \w that|strong="H5971"\w* \w he|strong="H1004"\w* should \w bring|strong="H3318"\w* \w him|strong="H5414"\w* \w home|strong="H1004"\w*. \w So|strong="H3947"\w* \w he|strong="H1004"\w* \w lived|strong="H3427"\w* \w among|strong="H8432"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w*. +\p +\v 15 \w Now|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w* \w while|strong="H1961"\w* \w he|strong="H3068"\w* \w was|strong="H3068"\w* \w shut|strong="H6113"\w* \w up|strong="H6113"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w court|strong="H2691"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w guard|strong="H4307"\w*, \w saying|strong="H1697"\w*, +\v 16 “\w Go|strong="H1980"\w*, \w and|strong="H1980"\w* \w speak|strong="H1697"\w* \w to|strong="H1980"\w* Ebedmelech \w the|strong="H6440"\w* \w Ethiopian|strong="H3569"\w*, \w saying|strong="H1697"\w*, ‘\w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*: “\w Behold|strong="H2005"\w*, \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w bring|strong="H1980"\w* \w my|strong="H3068"\w* \w words|strong="H1697"\w* \w on|strong="H3117"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w* \w for|strong="H6440"\w* \w evil|strong="H7451"\w*, \w and|strong="H1980"\w* \w not|strong="H3808"\w* \w for|strong="H6440"\w* \w good|strong="H2896"\w*; \w and|strong="H1980"\w* \w they|strong="H3117"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w accomplished|strong="H1961"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w* \w in|strong="H1980"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*. +\v 17 \w But|strong="H3808"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w deliver|strong="H5337"\w* \w you|strong="H5414"\w* \w in|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*; “\w and|strong="H3068"\w* \w you|strong="H5414"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w given|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H6440"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* men \w of|strong="H3068"\w* \w whom|strong="H6440"\w* \w you|strong="H5414"\w* \w are|strong="H3117"\w* \w afraid|strong="H3016"\w*. +\v 18 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w surely|strong="H3588"\w* \w save|strong="H4422"\w* \w you|strong="H3588"\w*. \w You|strong="H3588"\w* won’t \w fall|strong="H5307"\w* \w by|strong="H3068"\w* \w the|strong="H5002"\w* \w sword|strong="H2719"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w escape|strong="H4422"\w* \w with|strong="H3068"\w* \w your|strong="H3068"\w* \w life|strong="H5315"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w put|strong="H3068"\w* \w your|strong="H3068"\w* trust \w in|strong="H3068"\w* \w me|strong="H5315"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*.’” +\c 40 +\p +\v 1 \w The|strong="H3605"\w* \w word|strong="H1697"\w* \w which|strong="H1931"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w* \w from|strong="H4480"\w* \w Yahweh|strong="H3068"\w*, \w after|strong="H4480"\w* \w Nebuzaradan|strong="H5018"\w* \w the|strong="H3605"\w* \w captain|strong="H7227"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w guard|strong="H2876"\w* \w had|strong="H3068"\w* \w let|strong="H7971"\w* \w him|strong="H7971"\w* \w go|strong="H7971"\w* \w from|strong="H4480"\w* \w Ramah|strong="H7414"\w*, \w when|strong="H1961"\w* \w he|strong="H1931"\w* \w had|strong="H3068"\w* \w taken|strong="H3947"\w* \w him|strong="H7971"\w* \w being|strong="H1961"\w* bound \w in|strong="H3068"\w* chains \w among|strong="H8432"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w captives|strong="H1546"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H3063"\w* \w Judah|strong="H3063"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w carried|strong="H1540"\w* \w away|strong="H7971"\w* \w captive|strong="H1540"\w* \w to|strong="H3068"\w* Babylon. +\v 2 \w The|strong="H3947"\w* \w captain|strong="H7227"\w* \w of|strong="H3068"\w* \w the|strong="H3947"\w* \w guard|strong="H2876"\w* \w took|strong="H3947"\w* \w Jeremiah|strong="H3414"\w* \w and|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H3947"\w*, “\w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w pronounced|strong="H1696"\w* \w this|strong="H2088"\w* \w evil|strong="H7451"\w* \w on|strong="H3068"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*; +\v 3 \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w brought|strong="H6213"\w* \w it|strong="H3588"\w*, \w and|strong="H3068"\w* \w done|strong="H6213"\w* according \w as|strong="H1697"\w* \w he|strong="H3588"\w* \w spoke|strong="H1696"\w*. \w Because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* \w obeyed|strong="H8085"\w* \w his|strong="H3068"\w* \w voice|strong="H6963"\w*, \w therefore|strong="H3588"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w* \w has|strong="H3068"\w* \w come|strong="H1961"\w* \w on|strong="H3068"\w* \w you|strong="H3588"\w*. +\v 4 \w Now|strong="H6258"\w*, \w behold|strong="H2009"\w*, \w I|strong="H3117"\w* \w release|strong="H6605"\w* \w you|strong="H6440"\w* \w today|strong="H3117"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* chains \w which|strong="H5869"\w* \w are|strong="H3117"\w* \w on|strong="H5921"\w* \w your|strong="H3605"\w* \w hand|strong="H3027"\w*. \w If|strong="H2009"\w* \w it|strong="H7760"\w* \w seems|strong="H3605"\w* \w good|strong="H2896"\w* \w to|strong="H3212"\w* \w you|strong="H6440"\w* \w to|strong="H3212"\w* \w come|strong="H3212"\w* \w with|strong="H5921"\w* \w me|strong="H6440"\w* \w into|strong="H3212"\w* Babylon, \w come|strong="H3212"\w*, \w and|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H5869"\w* \w take|strong="H7760"\w* \w care|strong="H3027"\w* \w of|strong="H3117"\w* \w you|strong="H6440"\w*; \w but|strong="H7200"\w* \w if|strong="H2009"\w* \w it|strong="H7760"\w* \w seems|strong="H3605"\w* \w bad|strong="H7489"\w* \w to|strong="H3212"\w* \w you|strong="H6440"\w* \w to|strong="H3212"\w* \w come|strong="H3212"\w* \w with|strong="H5921"\w* \w me|strong="H6440"\w* \w into|strong="H3212"\w* Babylon, don’t. \w Behold|strong="H2009"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w is|strong="H3117"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*. \w Where|strong="H8033"\w* \w it|strong="H7760"\w* \w seems|strong="H3605"\w* \w good|strong="H2896"\w* \w and|strong="H3117"\w* \w right|strong="H3477"\w* \w to|strong="H3212"\w* \w you|strong="H6440"\w* \w to|strong="H3212"\w* \w go|strong="H3212"\w*, \w go|strong="H3212"\w* \w there|strong="H8033"\w*.” +\v 5 \w Now|strong="H5414"\w* \w while|strong="H5750"\w* \w he|strong="H3605"\w* \w had|strong="H4428"\w* \w not|strong="H3808"\w* \w yet|strong="H5750"\w* \w gone|strong="H3212"\w* \w back|strong="H7725"\w*, “\w Go|strong="H3212"\w* \w back|strong="H7725"\w* \w then|strong="H7971"\w*,” \w he|strong="H3605"\w* said, “\w to|strong="H7725"\w* \w Gedaliah|strong="H1436"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahikam, \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shaphan|strong="H8227"\w*, \w whom|strong="H5971"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon \w has|strong="H4428"\w* \w made|strong="H5414"\w* \w governor|strong="H6485"\w* \w over|strong="H4428"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w and|strong="H1121"\w* \w dwell|strong="H3427"\w* \w with|strong="H3427"\w* \w him|strong="H5414"\w* \w among|strong="H8432"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*; \w or|strong="H3808"\w* \w go|strong="H3212"\w* \w wherever|strong="H3605"\w* \w it|strong="H5414"\w* \w seems|strong="H3605"\w* \w right|strong="H3477"\w* \w to|strong="H7725"\w* \w you|strong="H5414"\w* \w to|strong="H7725"\w* \w go|strong="H3212"\w*.” +\p \w So|strong="H7971"\w* \w the|strong="H3605"\w* \w captain|strong="H7227"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w guard|strong="H2876"\w* \w gave|strong="H5414"\w* \w him|strong="H5414"\w* food \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w present|strong="H5414"\w*, \w and|strong="H1121"\w* \w let|strong="H7971"\w* \w him|strong="H5414"\w* \w go|strong="H3212"\w*. +\v 6 \w Then|strong="H1121"\w* \w Jeremiah|strong="H3414"\w* \w went|strong="H5971"\w* \w to|strong="H1121"\w* \w Gedaliah|strong="H1436"\w* \w the|strong="H8432"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahikam \w to|strong="H1121"\w* \w Mizpah|strong="H4708"\w*, \w and|strong="H1121"\w* \w lived|strong="H3427"\w* \w with|strong="H3427"\w* \w him|strong="H7604"\w* \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w left|strong="H7604"\w* \w in|strong="H3427"\w* \w the|strong="H8432"\w* land. +\p +\v 7 \w Now|strong="H3588"\w* \w when|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w forces|strong="H2428"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w in|strong="H4428"\w* \w the|strong="H3605"\w* \w fields|strong="H7704"\w*, \w even|strong="H3588"\w* \w they|strong="H1992"\w* \w and|strong="H1121"\w* \w their|strong="H3605"\w* \w men|strong="H1121"\w*, \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon \w had|strong="H4428"\w* \w made|strong="H6485"\w* \w Gedaliah|strong="H1436"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahikam \w governor|strong="H8269"\w* \w in|strong="H4428"\w* \w the|strong="H3605"\w* \w land|strong="H7704"\w*, \w and|strong="H1121"\w* \w had|strong="H4428"\w* \w committed|strong="H6485"\w* \w to|strong="H8085"\w* \w him|strong="H3605"\w* \w men|strong="H1121"\w*, \w women|strong="H1992"\w*, \w children|strong="H1121"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w poorest|strong="H1803"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w land|strong="H7704"\w*, \w of|strong="H1121"\w* \w those|strong="H1992"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w not|strong="H3808"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w captive|strong="H1540"\w* \w to|strong="H8085"\w* Babylon, +\v 8 \w then|strong="H1121"\w* \w Ishmael|strong="H3458"\w* \w the|strong="H3458"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nethaniah|strong="H5418"\w*, \w and|strong="H1121"\w* \w Johanan|strong="H3110"\w* \w and|strong="H1121"\w* \w Jonathan|strong="H3129"\w* \w the|strong="H3458"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Kareah|strong="H7143"\w*, \w and|strong="H1121"\w* \w Seraiah|strong="H8304"\w* \w the|strong="H3458"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Tanhumeth|strong="H8576"\w*, \w and|strong="H1121"\w* \w the|strong="H3458"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Ephai|strong="H5778"\w* \w the|strong="H3458"\w* \w Netophathite|strong="H5200"\w*, \w and|strong="H1121"\w* \w Jezaniah|strong="H3153"\w* \w the|strong="H3458"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3458"\w* \w Maacathite|strong="H4602"\w*, \w they|strong="H1992"\w* \w and|strong="H1121"\w* \w their|strong="H1992"\w* \w men|strong="H1121"\w* came \w to|strong="H1121"\w* \w Gedaliah|strong="H1436"\w* \w to|strong="H1121"\w* \w Mizpah|strong="H4708"\w*. +\v 9 \w Gedaliah|strong="H1436"\w* \w the|strong="H5647"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahikam \w the|strong="H5647"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shaphan|strong="H8227"\w* \w swore|strong="H7650"\w* \w to|strong="H1121"\w* \w them|strong="H3190"\w* \w and|strong="H1121"\w* \w to|strong="H1121"\w* \w their|strong="H5647"\w* \w men|strong="H1121"\w*, saying, “Don’t \w be|strong="H1121"\w* \w afraid|strong="H3372"\w* \w to|strong="H1121"\w* \w serve|strong="H5647"\w* \w the|strong="H5647"\w* \w Chaldeans|strong="H3778"\w*. \w Dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5647"\w* land, \w and|strong="H1121"\w* \w serve|strong="H5647"\w* \w the|strong="H5647"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon, \w and|strong="H1121"\w* \w it|strong="H3190"\w* \w will|strong="H4428"\w* \w be|strong="H1121"\w* \w well|strong="H3190"\w* \w with|strong="H3427"\w* \w you|strong="H5647"\w*. +\v 10 \w As|strong="H6440"\w* \w for|strong="H6440"\w* \w me|strong="H6440"\w*, \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H5892"\w* \w dwell|strong="H3427"\w* \w at|strong="H3427"\w* \w Mizpah|strong="H4709"\w*, \w to|strong="H6440"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w Chaldeans|strong="H3778"\w* \w who|strong="H3427"\w* \w will|strong="H5892"\w* \w come|strong="H5892"\w* \w to|strong="H6440"\w* \w us|strong="H6440"\w*; but \w you|strong="H6440"\w*, gather \w wine|strong="H3196"\w* \w and|strong="H5892"\w* \w summer|strong="H7019"\w* \w fruits|strong="H7019"\w* \w and|strong="H5892"\w* \w oil|strong="H8081"\w*, \w and|strong="H5892"\w* \w put|strong="H7760"\w* \w them|strong="H6440"\w* \w in|strong="H3427"\w* \w your|strong="H7760"\w* \w vessels|strong="H3627"\w*, \w and|strong="H5892"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w your|strong="H7760"\w* \w cities|strong="H5892"\w* \w that|strong="H5892"\w* \w you|strong="H6440"\w* \w have|strong="H5892"\w* \w taken|strong="H8610"\w*.” +\p +\v 11 \w Likewise|strong="H1571"\w* \w when|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w in|strong="H5921"\w* \w Moab|strong="H4124"\w*, \w and|strong="H1121"\w* \w among|strong="H5921"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, \w and|strong="H1121"\w* \w in|strong="H5921"\w* Edom, \w and|strong="H1121"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* countries, \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon \w had|strong="H4428"\w* \w left|strong="H5414"\w* \w a|strong="H3068"\w* \w remnant|strong="H7611"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w and|strong="H1121"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H4428"\w* \w set|strong="H5414"\w* \w over|strong="H5921"\w* \w them|strong="H5414"\w* \w Gedaliah|strong="H1436"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahikam, \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shaphan|strong="H8227"\w*, +\v 12 \w then|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w* \w returned|strong="H7725"\w* \w out|strong="H5080"\w* \w of|strong="H4725"\w* \w all|strong="H3605"\w* \w places|strong="H4725"\w* \w where|strong="H8033"\w* \w they|strong="H8033"\w* \w were|strong="H3063"\w* \w driven|strong="H5080"\w*, \w and|strong="H3063"\w* \w came|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w land|strong="H4725"\w* \w of|strong="H4725"\w* \w Judah|strong="H3063"\w*, \w to|strong="H7725"\w* \w Gedaliah|strong="H1436"\w*, \w to|strong="H7725"\w* \w Mizpah|strong="H4708"\w*, \w and|strong="H3063"\w* \w gathered|strong="H7235"\w* \w very|strong="H3966"\w* \w much|strong="H7235"\w* \w wine|strong="H3196"\w* \w and|strong="H3063"\w* \w summer|strong="H7019"\w* \w fruits|strong="H7019"\w*. +\p +\v 13 Moreover \w Johanan|strong="H3110"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kareah|strong="H7143"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w forces|strong="H2428"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w in|strong="H1121"\w* \w the|strong="H3605"\w* \w fields|strong="H7704"\w*, came \w to|strong="H1121"\w* \w Gedaliah|strong="H1436"\w* \w to|strong="H1121"\w* \w Mizpah|strong="H4708"\w*, +\v 14 \w and|strong="H1121"\w* said \w to|strong="H7971"\w* \w him|strong="H5221"\w*, “Do \w you|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Baalis|strong="H1185"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w has|strong="H4428"\w* \w sent|strong="H7971"\w* \w Ishmael|strong="H3458"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nethaniah|strong="H5418"\w* \w to|strong="H7971"\w* \w take|strong="H5221"\w* \w your|strong="H3045"\w* \w life|strong="H5315"\w*?” +\p \w But|strong="H3588"\w* \w Gedaliah|strong="H1436"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahikam didn’t believe \w them|strong="H7971"\w*. +\p +\v 15 \w Then|strong="H3045"\w* \w Johanan|strong="H3110"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kareah|strong="H7143"\w* spoke \w to|strong="H3212"\w* \w Gedaliah|strong="H1436"\w* \w in|strong="H3212"\w* \w Mizpah|strong="H4709"\w* \w secretly|strong="H5643"\w*, saying, “\w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w me|strong="H4994"\w* \w go|strong="H3212"\w*, \w and|strong="H1121"\w* \w I|strong="H3045"\w* \w will|strong="H5315"\w* \w kill|strong="H5221"\w* \w Ishmael|strong="H3458"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nethaniah|strong="H5418"\w*, \w and|strong="H1121"\w* \w no|strong="H3808"\w* \w man|strong="H1121"\w* \w will|strong="H5315"\w* \w know|strong="H3045"\w* \w it|strong="H3045"\w*. \w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w he|strong="H3605"\w* \w take|strong="H5221"\w* \w your|strong="H3605"\w* \w life|strong="H5315"\w*, \w that|strong="H3045"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Jews|strong="H3063"\w* \w who|strong="H3605"\w* \w are|strong="H1121"\w* \w gathered|strong="H6908"\w* \w to|strong="H3212"\w* \w you|strong="H3605"\w* \w should|strong="H4100"\w* \w be|strong="H3808"\w* \w scattered|strong="H6327"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w remnant|strong="H7611"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* perish?” +\p +\v 16 \w But|strong="H3588"\w* \w Gedaliah|strong="H1436"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahikam \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Johanan|strong="H3110"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kareah|strong="H7143"\w*, “\w You|strong="H3588"\w* \w shall|strong="H1121"\w* \w not|strong="H6213"\w* \w do|strong="H6213"\w* \w this|strong="H2088"\w* \w thing|strong="H1697"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w speak|strong="H1696"\w* \w falsely|strong="H8267"\w* \w of|strong="H1121"\w* \w Ishmael|strong="H3458"\w*.” +\c 41 +\p +\v 1 \w Now|strong="H1961"\w* \w in|strong="H4428"\w* \w the|strong="H1961"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w*, \w Ishmael|strong="H3458"\w* \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nethaniah|strong="H5418"\w*, \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Elishama, \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w royal|strong="H4428"\w* \w offspring|strong="H2233"\w* \w and|strong="H1121"\w* \w one|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w chief|strong="H7227"\w* \w officers|strong="H7227"\w* \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w king|strong="H4428"\w*, \w and|strong="H1121"\w* \w ten|strong="H6235"\w* \w men|strong="H1121"\w* \w with|strong="H3899"\w* \w him|strong="H4428"\w*, \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w Gedaliah|strong="H1436"\w* \w the|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahikam \w to|strong="H1961"\w* \w Mizpah|strong="H4709"\w*; \w and|strong="H1121"\w* \w there|strong="H8033"\w* \w they|strong="H8033"\w* ate \w bread|strong="H3899"\w* \w together|strong="H3162"\w* \w in|strong="H4428"\w* \w Mizpah|strong="H4709"\w*. +\v 2 \w Then|strong="H1961"\w* \w Ishmael|strong="H3458"\w* \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nethaniah|strong="H5418"\w* \w arose|strong="H6965"\w*, \w and|strong="H1121"\w* \w the|strong="H5221"\w* \w ten|strong="H6235"\w* \w men|strong="H1121"\w* \w who|strong="H1121"\w* \w were|strong="H1961"\w* \w with|strong="H4428"\w* \w him|strong="H5221"\w*, \w and|strong="H1121"\w* \w struck|strong="H5221"\w* \w Gedaliah|strong="H1436"\w* \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahikam \w the|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shaphan|strong="H8227"\w* \w with|strong="H4428"\w* \w the|strong="H5221"\w* \w sword|strong="H2719"\w* \w and|strong="H1121"\w* \w killed|strong="H5221"\w* \w him|strong="H5221"\w*, whom \w the|strong="H5221"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon \w had|strong="H1961"\w* \w made|strong="H1961"\w* \w governor|strong="H6485"\w* \w over|strong="H4428"\w* \w the|strong="H5221"\w* land. +\v 3 \w Ishmael|strong="H3458"\w* \w also|strong="H3458"\w* \w killed|strong="H5221"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w with|strong="H4421"\w* \w Gedaliah|strong="H1436"\w* \w at|strong="H4421"\w* \w Mizpah|strong="H4709"\w*, \w and|strong="H8033"\w* \w the|strong="H3605"\w* Chaldean \w men|strong="H3605"\w* \w of|strong="H3605"\w* \w war|strong="H4421"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w found|strong="H4672"\w* \w there|strong="H8033"\w*. +\p +\v 4 \w The|strong="H3117"\w* \w second|strong="H8145"\w* \w day|strong="H3117"\w* \w after|strong="H1961"\w* \w he|strong="H3117"\w* \w had|strong="H1961"\w* \w killed|strong="H4191"\w* \w Gedaliah|strong="H1436"\w*, \w and|strong="H3117"\w* \w no|strong="H3808"\w* \w man|strong="H4191"\w* \w knew|strong="H3045"\w* \w it|strong="H3045"\w*, +\v 5 men \w came|strong="H3068"\w* \w from|strong="H3027"\w* \w Shechem|strong="H7927"\w*, \w from|strong="H3027"\w* \w Shiloh|strong="H7887"\w*, \w and|strong="H3068"\w* \w from|strong="H3027"\w* \w Samaria|strong="H8111"\w*, \w even|strong="H3068"\w* \w eighty|strong="H8084"\w* men, having \w their|strong="H3068"\w* \w beards|strong="H2206"\w* \w shaved|strong="H1548"\w* \w and|strong="H3068"\w* \w their|strong="H3068"\w* clothes \w torn|strong="H7167"\w*, \w and|strong="H3068"\w* having \w cut|strong="H1413"\w* themselves, \w with|strong="H1004"\w* \w meal|strong="H4503"\w* \w offerings|strong="H4503"\w* \w and|strong="H3068"\w* \w frankincense|strong="H3828"\w* \w in|strong="H3068"\w* \w their|strong="H3068"\w* \w hand|strong="H3027"\w*, \w to|strong="H3068"\w* bring \w them|strong="H3027"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 6 \w Ishmael|strong="H3458"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nethaniah|strong="H5418"\w* \w went|strong="H1980"\w* \w out|strong="H3318"\w* \w from|strong="H4480"\w* \w Mizpah|strong="H4709"\w* \w to|strong="H1980"\w* \w meet|strong="H7125"\w* \w them|strong="H3318"\w*, \w weeping|strong="H1058"\w* \w all|strong="H1058"\w* \w along|strong="H1980"\w* \w as|strong="H1961"\w* \w he|strong="H4480"\w* \w went|strong="H1980"\w*, \w and|strong="H1121"\w* \w as|strong="H1961"\w* \w he|strong="H4480"\w* \w met|strong="H6298"\w* \w them|strong="H3318"\w*, \w he|strong="H4480"\w* \w said|strong="H3318"\w* \w to|strong="H1980"\w* \w them|strong="H3318"\w*, “\w Come|strong="H1980"\w* \w to|strong="H1980"\w* \w Gedaliah|strong="H1436"\w* \w the|strong="H4480"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahikam.” +\v 7 \w It|strong="H1931"\w* \w was|strong="H1961"\w* \w so|strong="H1961"\w*, \w when|strong="H1961"\w* \w they|strong="H1931"\w* \w came|strong="H1961"\w* \w into|strong="H8432"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w the|strong="H8432"\w* \w city|strong="H5892"\w*, \w that|strong="H1931"\w* \w Ishmael|strong="H3458"\w* \w the|strong="H8432"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nethaniah|strong="H5418"\w* \w killed|strong="H7819"\w* \w them|strong="H8432"\w*, \w and|strong="H1121"\w* cast \w them|strong="H8432"\w* \w into|strong="H8432"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w the|strong="H8432"\w* pit, \w he|strong="H1931"\w*, \w and|strong="H1121"\w* \w the|strong="H8432"\w* \w men|strong="H1121"\w* \w who|strong="H1931"\w* \w were|strong="H1961"\w* \w with|strong="H5892"\w* \w him|strong="H1931"\w*. +\v 8 \w But|strong="H3588"\w* \w ten|strong="H6235"\w* men \w were|strong="H3426"\w* \w found|strong="H4672"\w* \w among|strong="H8432"\w* \w those|strong="H3588"\w* \w who|strong="H4672"\w* said \w to|strong="H4191"\w* \w Ishmael|strong="H3458"\w*, “Don’t \w kill|strong="H4191"\w* \w us|strong="H3588"\w*; \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3426"\w* \w stores|strong="H4301"\w* \w hidden|strong="H4301"\w* \w in|strong="H4191"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w*, \w of|strong="H7704"\w* \w wheat|strong="H2406"\w*, \w and|strong="H8081"\w* \w of|strong="H7704"\w* \w barley|strong="H8184"\w*, \w and|strong="H8081"\w* \w of|strong="H7704"\w* \w oil|strong="H8081"\w*, \w and|strong="H8081"\w* \w of|strong="H7704"\w* \w honey|strong="H1706"\w*.” +\p \w So|strong="H3808"\w* \w he|strong="H3588"\w* \w stopped|strong="H2308"\w*, \w and|strong="H8081"\w* didn’t \w kill|strong="H4191"\w* \w them|strong="H4672"\w* \w among|strong="H8432"\w* \w their|strong="H3588"\w* brothers. +\v 9 \w Now|strong="H3478"\w* \w the|strong="H3605"\w* pit \w in|strong="H3478"\w* \w which|strong="H1931"\w* \w Ishmael|strong="H3458"\w* \w cast|strong="H7993"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w dead|strong="H2491"\w* \w bodies|strong="H6297"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w men|strong="H1121"\w* \w whom|strong="H6440"\w* \w he|strong="H1931"\w* \w had|strong="H3478"\w* \w killed|strong="H5221"\w*, \w by|strong="H3027"\w* \w the|strong="H3605"\w* \w side|strong="H3027"\w* \w of|strong="H1121"\w* \w Gedaliah|strong="H1436"\w* (\w this|strong="H6213"\w* \w was|strong="H3478"\w* \w that|strong="H3605"\w* \w which|strong="H1931"\w* Asa \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w had|strong="H3478"\w* \w made|strong="H6213"\w* \w for|strong="H6213"\w* \w fear|strong="H6440"\w* \w of|strong="H1121"\w* \w Baasha|strong="H1201"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*), \w Ishmael|strong="H3458"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nethaniah|strong="H5418"\w* \w filled|strong="H4390"\w* \w it|strong="H1931"\w* \w with|strong="H4390"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H3478"\w* \w killed|strong="H5221"\w*. +\p +\v 10 \w Then|strong="H5674"\w* \w Ishmael|strong="H3458"\w* \w carried|strong="H7617"\w* \w away|strong="H5674"\w* \w captive|strong="H7617"\w* \w all|strong="H3605"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w left|strong="H7604"\w* \w in|strong="H4428"\w* \w Mizpah|strong="H4709"\w*, even \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w daughters|strong="H1323"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w remained|strong="H7604"\w* \w in|strong="H4428"\w* \w Mizpah|strong="H4709"\w*, \w whom|strong="H5971"\w* \w Nebuzaradan|strong="H5018"\w* \w the|strong="H3605"\w* \w captain|strong="H7227"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w guard|strong="H2876"\w* \w had|strong="H4428"\w* \w committed|strong="H6485"\w* \w to|strong="H3212"\w* \w Gedaliah|strong="H1436"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahikam. \w Ishmael|strong="H3458"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nethaniah|strong="H5418"\w* \w carried|strong="H7617"\w* \w them|strong="H7617"\w* \w away|strong="H5674"\w* \w captive|strong="H7617"\w*, \w and|strong="H1121"\w* \w departed|strong="H3212"\w* \w to|strong="H3212"\w* \w go|strong="H3212"\w* \w over|strong="H5674"\w* \w to|strong="H3212"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*. +\p +\v 11 \w But|strong="H8085"\w* \w when|strong="H8085"\w* \w Johanan|strong="H3110"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kareah|strong="H7143"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w forces|strong="H2428"\w* \w who|strong="H3605"\w* \w were|strong="H1121"\w* \w with|strong="H6213"\w* \w him|strong="H6213"\w*, \w heard|strong="H8085"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w that|strong="H3605"\w* \w Ishmael|strong="H3458"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nethaniah|strong="H5418"\w* \w had|strong="H1121"\w* \w done|strong="H6213"\w*, +\v 12 \w then|strong="H3947"\w* \w they|strong="H3605"\w* \w took|strong="H3947"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H1121"\w*, \w and|strong="H1121"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w fight|strong="H3898"\w* \w with|strong="H5973"\w* \w Ishmael|strong="H3458"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nethaniah|strong="H5418"\w*, \w and|strong="H1121"\w* \w found|strong="H4672"\w* \w him|strong="H4672"\w* \w by|strong="H4325"\w* \w the|strong="H3605"\w* \w great|strong="H7227"\w* \w waters|strong="H4325"\w* \w that|strong="H3605"\w* \w are|strong="H1121"\w* \w in|strong="H3212"\w* \w Gibeon|strong="H1391"\w*. +\v 13 \w Now|strong="H1961"\w* \w when|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w with|strong="H5971"\w* \w Ishmael|strong="H3458"\w* \w saw|strong="H7200"\w* \w Johanan|strong="H3110"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kareah|strong="H7143"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w forces|strong="H2428"\w* \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w with|strong="H5971"\w* \w him|strong="H7200"\w*, \w then|strong="H1961"\w* \w they|strong="H5971"\w* \w were|strong="H1961"\w* \w glad|strong="H8055"\w*. +\v 14 \w So|strong="H4480"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w Ishmael|strong="H3458"\w* \w had|strong="H5971"\w* \w carried|strong="H7617"\w* \w away|strong="H7725"\w* \w captive|strong="H7617"\w* \w from|strong="H4480"\w* \w Mizpah|strong="H4709"\w* \w turned|strong="H7725"\w* \w about|strong="H5437"\w* \w and|strong="H1121"\w* \w came|strong="H3212"\w* \w back|strong="H7725"\w*, \w and|strong="H1121"\w* \w went|strong="H3212"\w* \w to|strong="H7725"\w* \w Johanan|strong="H3110"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kareah|strong="H7143"\w*. +\v 15 But \w Ishmael|strong="H3458"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nethaniah|strong="H5418"\w* \w escaped|strong="H4422"\w* \w from|strong="H6440"\w* \w Johanan|strong="H3110"\w* \w with|strong="H6440"\w* \w eight|strong="H8083"\w* \w men|strong="H1121"\w*, \w and|strong="H1121"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*. +\p +\v 16 \w Then|strong="H3947"\w* \w Johanan|strong="H3110"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kareah|strong="H7143"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w forces|strong="H2428"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w with|strong="H5971"\w* \w him|strong="H5221"\w* \w took|strong="H3947"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w remnant|strong="H7611"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w whom|strong="H5971"\w* \w he|strong="H3605"\w* \w had|strong="H5971"\w* \w recovered|strong="H7725"\w* \w from|strong="H4480"\w* \w Ishmael|strong="H3458"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nethaniah|strong="H5418"\w*, \w from|strong="H4480"\w* \w Mizpah|strong="H4709"\w*, \w after|strong="H4480"\w* \w he|strong="H3605"\w* \w had|strong="H5971"\w* \w killed|strong="H5221"\w* \w Gedaliah|strong="H1436"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahikam—\w the|strong="H3605"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w war|strong="H4421"\w*, \w with|strong="H5971"\w* \w the|strong="H3605"\w* women, \w the|strong="H3605"\w* \w children|strong="H1121"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w eunuchs|strong="H5631"\w*, \w whom|strong="H5971"\w* \w he|strong="H3605"\w* \w had|strong="H5971"\w* \w brought|strong="H7725"\w* \w back|strong="H7725"\w* \w from|strong="H4480"\w* \w Gibeon|strong="H1391"\w*. +\v 17 They \w departed|strong="H3212"\w* \w and|strong="H3212"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w Geruth|strong="H1628"\w* \w Chimham|strong="H3643"\w*, which \w is|strong="H4714"\w* \w by|strong="H3427"\w* \w Bethlehem|strong="H1035"\w*, \w to|strong="H3212"\w* \w go|strong="H3212"\w* \w to|strong="H3212"\w* enter \w into|strong="H3212"\w* \w Egypt|strong="H4714"\w* +\v 18 \w because|strong="H3588"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w Chaldeans|strong="H3778"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H1121"\w* \w afraid|strong="H3372"\w* \w of|strong="H1121"\w* \w them|strong="H6440"\w*, \w because|strong="H3588"\w* \w Ishmael|strong="H3458"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Nethaniah|strong="H5418"\w* \w had|strong="H4428"\w* \w killed|strong="H5221"\w* \w Gedaliah|strong="H1436"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahikam, \w whom|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon \w made|strong="H6485"\w* \w governor|strong="H6485"\w* \w over|strong="H4428"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*. +\c 42 +\p +\v 1 \w Then|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w forces|strong="H2428"\w*, \w and|strong="H1121"\w* \w Johanan|strong="H3110"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kareah|strong="H7143"\w*, \w and|strong="H1121"\w* \w Jezaniah|strong="H3153"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hoshaiah|strong="H1955"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w from|strong="H1121"\w* \w the|strong="H3605"\w* \w least|strong="H6996"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w greatest|strong="H1419"\w*, \w came|strong="H5066"\w* \w near|strong="H5066"\w*, +\v 2 \w and|strong="H3068"\w* said \w to|strong="H5704"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H3605"\w* \w prophet|strong="H5030"\w*, “\w Please|strong="H4994"\w* \w let|strong="H4994"\w* \w our|strong="H3068"\w* \w supplication|strong="H8467"\w* \w be|strong="H3068"\w* \w presented|strong="H7200"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w pray|strong="H6419"\w* \w for|strong="H3588"\w* \w us|strong="H4994"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w even|strong="H5704"\w* \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w remnant|strong="H7611"\w*, \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w are|strong="H5869"\w* \w left|strong="H7604"\w* \w but|strong="H3588"\w* \w a|strong="H3068"\w* \w few|strong="H4592"\w* \w of|strong="H3068"\w* \w many|strong="H7235"\w*, \w as|strong="H5704"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w* \w see|strong="H7200"\w* \w us|strong="H4994"\w*, +\v 3 \w that|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w may|strong="H3068"\w* \w show|strong="H6213"\w* \w us|strong="H5046"\w* \w the|strong="H6213"\w* \w way|strong="H1870"\w* \w in|strong="H3068"\w* \w which|strong="H3068"\w* \w we|strong="H3068"\w* \w should|strong="H3068"\w* \w walk|strong="H3212"\w*, \w and|strong="H3068"\w* \w the|strong="H6213"\w* \w things|strong="H1697"\w* \w that|strong="H3068"\w* \w we|strong="H3068"\w* \w should|strong="H3068"\w* \w do|strong="H6213"\w*.” +\p +\v 4 \w Then|strong="H6030"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H3605"\w* \w prophet|strong="H5030"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w them|strong="H1961"\w*, “\w I|strong="H2005"\w* \w have|strong="H1961"\w* \w heard|strong="H8085"\w* \w you|strong="H3605"\w*. \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w pray|strong="H6419"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w according|strong="H4480"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w words|strong="H1697"\w*; \w and|strong="H3068"\w* \w it|strong="H1961"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w* \w that|strong="H3605"\w* \w whatever|strong="H3605"\w* \w thing|strong="H1697"\w* \w Yahweh|strong="H3068"\w* \w answers|strong="H6030"\w* \w you|strong="H3605"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w declare|strong="H5046"\w* \w it|strong="H1961"\w* \w to|strong="H3068"\w* \w you|strong="H3605"\w*. \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w keep|strong="H4513"\w* \w nothing|strong="H3808"\w* \w back|strong="H4513"\w* \w from|strong="H4480"\w* \w you|strong="H3605"\w*.” +\p +\v 5 \w Then|strong="H1961"\w* \w they|strong="H1992"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w*, “\w May|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w true|strong="H3651"\w* \w and|strong="H3068"\w* faithful \w witness|strong="H5707"\w* \w among|strong="H3808"\w* \w us|strong="H6213"\w*, \w if|strong="H1961"\w* \w we|strong="H3068"\w* don’t \w do|strong="H6213"\w* according \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w word|strong="H1697"\w* \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w sends|strong="H7971"\w* \w you|strong="H3605"\w* \w to|strong="H3068"\w* \w tell|strong="H3605"\w* \w us|strong="H6213"\w*. +\v 6 Whether \w it|strong="H3588"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w*, \w or|strong="H8085"\w* whether \w it|strong="H3588"\w* \w is|strong="H3068"\w* \w bad|strong="H7451"\w*, \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w obey|strong="H8085"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w to|strong="H3068"\w* \w whom|strong="H3588"\w* \w we|strong="H3068"\w* \w send|strong="H7971"\w* \w you|strong="H3588"\w*; \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w well|strong="H3190"\w* \w with|strong="H3068"\w* \w us|strong="H3588"\w*, \w when|strong="H3588"\w* \w we|strong="H3068"\w* \w obey|strong="H8085"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*.” +\p +\v 7 \w After|strong="H7093"\w* \w ten|strong="H6235"\w* \w days|strong="H3117"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w*. +\v 8 \w Then|strong="H7121"\w* \w he|strong="H5704"\w* \w called|strong="H7121"\w* \w Johanan|strong="H3110"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kareah|strong="H7143"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w forces|strong="H2428"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* \w with|strong="H5971"\w* \w him|strong="H7121"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w from|strong="H1121"\w* \w the|strong="H3605"\w* \w least|strong="H6996"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w greatest|strong="H1419"\w*, +\v 9 \w and|strong="H3478"\w* said \w to|strong="H3478"\w* \w them|strong="H7971"\w*, “\w Yahweh|strong="H3068"\w*, \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w whom|strong="H6440"\w* \w you|strong="H6440"\w* \w sent|strong="H7971"\w* \w me|strong="H6440"\w* \w to|strong="H3478"\w* \w present|strong="H5307"\w* \w your|strong="H3068"\w* \w supplication|strong="H8467"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, \w says|strong="H3541"\w*: +\v 10 ‘\w If|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3808"\w* \w still|strong="H3427"\w* \w live|strong="H3427"\w* \w in|strong="H3427"\w* \w this|strong="H2063"\w* land, \w then|strong="H6213"\w* \w I|strong="H3588"\w* \w will|strong="H3808"\w* \w build|strong="H1129"\w* \w you|strong="H3588"\w*, \w and|strong="H7725"\w* \w not|strong="H3808"\w* \w pull|strong="H2040"\w* \w you|strong="H3588"\w* \w down|strong="H3427"\w*, \w and|strong="H7725"\w* \w I|strong="H3588"\w* \w will|strong="H3808"\w* \w plant|strong="H5193"\w* \w you|strong="H3588"\w*, \w and|strong="H7725"\w* \w not|strong="H3808"\w* \w pluck|strong="H5428"\w* \w you|strong="H3588"\w* \w up|strong="H1129"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* grieve \w over|strong="H3427"\w* \w the|strong="H3588"\w* \w distress|strong="H7451"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1129"\w* \w brought|strong="H7725"\w* \w on|strong="H3427"\w* \w you|strong="H3588"\w*. +\v 11 Don’t \w be|strong="H3027"\w* \w afraid|strong="H3372"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w of|strong="H4428"\w* \w whom|strong="H6440"\w* \w you|strong="H3588"\w* \w are|strong="H3027"\w* \w afraid|strong="H3372"\w*. Don’t \w be|strong="H3027"\w* \w afraid|strong="H3372"\w* \w of|strong="H4428"\w* \w him|strong="H6440"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, ‘\w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w* \w to|strong="H3068"\w* \w save|strong="H3467"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w deliver|strong="H5337"\w* \w you|strong="H3588"\w* \w from|strong="H4480"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w*. +\v 12 \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w grant|strong="H5414"\w* \w you|strong="H5414"\w* \w mercy|strong="H7355"\w*, \w that|strong="H5414"\w* \w he|strong="H5414"\w* \w may|strong="H7725"\w* \w have|strong="H7355"\w* \w mercy|strong="H7355"\w* \w on|strong="H7355"\w* \w you|strong="H5414"\w*, \w and|strong="H7725"\w* \w cause|strong="H5414"\w* \w you|strong="H5414"\w* \w to|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w your|strong="H5414"\w* own land. +\p +\v 13 “‘\w But|strong="H3808"\w* if \w you|strong="H3808"\w* \w say|strong="H6963"\w*, “\w We|strong="H8085"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w this|strong="H2063"\w* land,” \w so|strong="H3808"\w* \w that|strong="H8085"\w* \w you|strong="H3808"\w* don’t \w obey|strong="H8085"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w*, +\v 14 \w saying|strong="H6963"\w*, “\w No|strong="H3808"\w*, \w but|strong="H3588"\w* \w we|strong="H3068"\w* \w will|strong="H4714"\w* go \w into|strong="H4714"\w* \w the|strong="H8085"\w* land \w of|strong="H3427"\w* \w Egypt|strong="H4714"\w*, \w where|strong="H8033"\w* \w we|strong="H3068"\w* \w will|strong="H4714"\w* \w see|strong="H7200"\w* \w no|strong="H3808"\w* \w war|strong="H4421"\w*, \w nor|strong="H3808"\w* \w hear|strong="H8085"\w* \w the|strong="H8085"\w* \w sound|strong="H6963"\w* \w of|strong="H3427"\w* \w the|strong="H8085"\w* \w trumpet|strong="H7782"\w*, \w nor|strong="H3808"\w* \w have|strong="H7200"\w* \w hunger|strong="H7456"\w* \w of|strong="H3427"\w* \w bread|strong="H3899"\w*; \w and|strong="H3899"\w* \w there|strong="H8033"\w* \w we|strong="H3068"\w* \w will|strong="H4714"\w* \w dwell|strong="H3427"\w*;”’ +\v 15 \w now|strong="H6258"\w* \w therefore|strong="H3651"\w* \w hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w O|strong="H3068"\w* \w remnant|strong="H7611"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w*! \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H6440"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*, ‘\w If|strong="H3651"\w* \w you|strong="H6440"\w* \w indeed|strong="H8085"\w* \w set|strong="H7760"\w* \w your|strong="H3068"\w* \w faces|strong="H6440"\w* \w to|strong="H3478"\w* enter \w into|strong="H4714"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H3063"\w* \w go|strong="H3068"\w* \w to|strong="H3478"\w* \w live|strong="H1481"\w* \w there|strong="H8033"\w*, +\v 16 \w then|strong="H1961"\w* \w it|strong="H8033"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w that|strong="H4480"\w* \w the|strong="H4480"\w* \w sword|strong="H2719"\w*, \w which|strong="H8033"\w* \w you|strong="H4480"\w* \w fear|strong="H3372"\w*, \w will|strong="H1961"\w* \w overtake|strong="H5381"\w* \w you|strong="H4480"\w* \w there|strong="H8033"\w* \w in|strong="H4191"\w* \w the|strong="H4480"\w* land \w of|strong="H4480"\w* \w Egypt|strong="H4714"\w*; \w and|strong="H4714"\w* \w the|strong="H4480"\w* \w famine|strong="H7458"\w*, \w about|strong="H1961"\w* \w which|strong="H8033"\w* \w you|strong="H4480"\w* \w are|strong="H4714"\w* \w afraid|strong="H3372"\w*, \w will|strong="H1961"\w* \w follow|strong="H1961"\w* \w close|strong="H1692"\w* \w behind|strong="H4480"\w* \w you|strong="H4480"\w* \w there|strong="H8033"\w* \w in|strong="H4191"\w* \w Egypt|strong="H4714"\w*; \w and|strong="H4714"\w* \w you|strong="H4480"\w* \w will|strong="H1961"\w* \w die|strong="H4191"\w* \w there|strong="H8033"\w*. +\v 17 \w So|strong="H1961"\w* \w will|strong="H1961"\w* \w it|strong="H7760"\w* \w be|strong="H1961"\w* \w with|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H7451"\w* \w who|strong="H3605"\w* \w set|strong="H7760"\w* \w their|strong="H3605"\w* \w faces|strong="H6440"\w* \w to|strong="H4191"\w* \w go|strong="H1961"\w* \w into|strong="H5921"\w* \w Egypt|strong="H4714"\w* \w to|strong="H4191"\w* \w live|strong="H1481"\w* \w there|strong="H8033"\w*. \w They|strong="H8033"\w* \w will|strong="H1961"\w* \w die|strong="H4191"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w famine|strong="H7458"\w*, \w and|strong="H4714"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w pestilence|strong="H1698"\w*. \w None|strong="H3808"\w* \w of|strong="H6440"\w* \w them|strong="H5921"\w* \w will|strong="H1961"\w* \w remain|strong="H1961"\w* \w or|strong="H3808"\w* \w escape|strong="H6412"\w* \w from|strong="H6440"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w that|strong="H3605"\w* \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w bring|strong="H7760"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*.’ +\v 18 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*: ‘\w As|strong="H1961"\w* \w my|strong="H3068"\w* \w anger|strong="H2534"\w* \w and|strong="H3478"\w* \w my|strong="H3068"\w* \w wrath|strong="H2534"\w* \w has|strong="H3068"\w* \w been|strong="H1961"\w* \w poured|strong="H5413"\w* \w out|strong="H5413"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, \w so|strong="H3651"\w* \w my|strong="H3068"\w* \w wrath|strong="H2534"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w poured|strong="H5413"\w* \w out|strong="H5413"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*, \w when|strong="H3588"\w* \w you|strong="H3588"\w* enter \w into|strong="H5921"\w* \w Egypt|strong="H4714"\w*; \w and|strong="H3478"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w an|strong="H1961"\w* \w object|strong="H8047"\w* \w of|strong="H3068"\w* \w horror|strong="H8047"\w*, \w an|strong="H1961"\w* \w astonishment|strong="H8047"\w*, \w a|strong="H3068"\w* \w curse|strong="H7045"\w*, \w and|strong="H3478"\w* \w a|strong="H3068"\w* \w reproach|strong="H2781"\w*; \w and|strong="H3478"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w see|strong="H7200"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w*.’ +\p +\v 19 “\w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w concerning|strong="H5921"\w* \w you|strong="H3588"\w*, \w remnant|strong="H7611"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w*, ‘Don’t \w go|strong="H3068"\w* \w into|strong="H5921"\w* \w Egypt|strong="H4714"\w*!’ \w Know|strong="H3045"\w* \w certainly|strong="H3588"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w testified|strong="H5749"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w* \w today|strong="H3117"\w*. +\v 20 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w dealt|strong="H6213"\w* deceitfully \w against|strong="H3068"\w* \w your|strong="H3068"\w* \w own|strong="H5315"\w* \w souls|strong="H5315"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*, saying, ‘\w Pray|strong="H6419"\w* \w for|strong="H3588"\w* \w us|strong="H5046"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*; \w and|strong="H3068"\w* according \w to|strong="H5704"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* says, \w so|strong="H3651"\w* \w declare|strong="H5046"\w* \w to|strong="H5704"\w* \w us|strong="H5046"\w*, \w and|strong="H3068"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w it|strong="H3588"\w*.’ +\v 21 \w I|strong="H3117"\w* \w have|strong="H3068"\w* \w declared|strong="H5046"\w* \w it|strong="H7971"\w* \w to|strong="H3068"\w* \w you|strong="H3605"\w* \w today|strong="H3117"\w*; \w but|strong="H3808"\w* \w you|strong="H3605"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w obeyed|strong="H8085"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w* \w in|strong="H3068"\w* \w anything|strong="H3605"\w* \w for|strong="H7971"\w* \w which|strong="H3068"\w* \w he|strong="H3117"\w* \w has|strong="H3068"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w* \w to|strong="H3068"\w* \w you|strong="H3605"\w*. +\v 22 \w Now|strong="H6258"\w* \w therefore|strong="H6258"\w* \w know|strong="H3045"\w* \w certainly|strong="H3588"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H2719"\w* \w die|strong="H4191"\w* \w by|strong="H4191"\w* \w the|strong="H3588"\w* \w sword|strong="H2719"\w*, \w by|strong="H4191"\w* \w the|strong="H3588"\w* \w famine|strong="H7458"\w*, \w and|strong="H2719"\w* \w by|strong="H4191"\w* \w the|strong="H3588"\w* \w pestilence|strong="H1698"\w* \w in|strong="H4191"\w* \w the|strong="H3588"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w you|strong="H3588"\w* \w desire|strong="H2654"\w* \w to|strong="H4191"\w* \w go|strong="H2719"\w* \w to|strong="H4191"\w* \w live|strong="H1481"\w*.” +\c 43 +\p +\v 1 \w When|strong="H1961"\w* \w Jeremiah|strong="H3414"\w* \w had|strong="H3068"\w* \w finished|strong="H3615"\w* \w speaking|strong="H1696"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3605"\w* \w God|strong="H3068"\w*, \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3605"\w* \w God|strong="H3068"\w* \w had|strong="H3068"\w* \w sent|strong="H7971"\w* \w him|strong="H7971"\w* \w to|strong="H1696"\w* \w them|strong="H7971"\w*, \w even|strong="H3068"\w* \w all|strong="H3605"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w*, +\v 2 \w then|strong="H1696"\w* \w Azariah|strong="H5838"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hoshaiah|strong="H1955"\w*, \w Johanan|strong="H3110"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kareah|strong="H7143"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w proud|strong="H2086"\w* \w men|strong="H1121"\w* \w spoke|strong="H1696"\w*, \w saying|strong="H1696"\w* \w to|strong="H1696"\w* \w Jeremiah|strong="H3414"\w*, “\w You|strong="H3605"\w* \w speak|strong="H1696"\w* \w falsely|strong="H8267"\w*. \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w sent|strong="H7971"\w* \w you|strong="H3605"\w* \w to|strong="H1696"\w* \w say|strong="H1696"\w*, ‘\w You|strong="H3605"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w go|strong="H7971"\w* \w into|strong="H4714"\w* \w Egypt|strong="H4714"\w* \w to|strong="H1696"\w* \w live|strong="H1481"\w* \w there|strong="H8033"\w*;’ +\v 3 \w but|strong="H3588"\w* \w Baruch|strong="H1263"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Neriah|strong="H5374"\w* \w has|strong="H3588"\w* \w turned|strong="H5414"\w* \w you|strong="H3588"\w* \w against|strong="H3027"\w* \w us|strong="H5414"\w*, \w to|strong="H4191"\w* \w deliver|strong="H5414"\w* \w us|strong="H5414"\w* \w into|strong="H1540"\w* \w the|strong="H3588"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w Chaldeans|strong="H3778"\w*, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w may|strong="H1121"\w* \w put|strong="H5414"\w* \w us|strong="H5414"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w* \w or|strong="H1121"\w* \w carry|strong="H1540"\w* \w us|strong="H5414"\w* \w away|strong="H1540"\w* \w captive|strong="H1540"\w* \w to|strong="H4191"\w* Babylon.” +\p +\v 4 \w So|strong="H3808"\w* \w Johanan|strong="H3110"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kareah|strong="H7143"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w forces|strong="H2428"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, didn’t \w obey|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w*, \w to|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* land \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*. +\v 5 \w But|strong="H3947"\w* \w Johanan|strong="H3110"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Kareah|strong="H7143"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w captains|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w forces|strong="H2428"\w* \w took|strong="H3947"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w remnant|strong="H7611"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w who|strong="H3605"\w* \w had|strong="H3063"\w* \w returned|strong="H7725"\w* \w from|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w where|strong="H8033"\w* \w they|strong="H8033"\w* \w had|strong="H3063"\w* \w been|strong="H3605"\w* \w driven|strong="H5080"\w*, \w to|strong="H7725"\w* \w live|strong="H1481"\w* \w in|strong="H1121"\w* \w the|strong="H3605"\w* land \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*— +\v 6 \w the|strong="H3605"\w* \w men|strong="H1121"\w*, \w the|strong="H3605"\w* \w women|strong="H1323"\w*, \w the|strong="H3605"\w* \w children|strong="H1121"\w*, \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w daughters|strong="H1323"\w*, \w and|strong="H1121"\w* \w every|strong="H3605"\w* \w person|strong="H5315"\w* \w who|strong="H3605"\w* \w Nebuzaradan|strong="H5018"\w* \w the|strong="H3605"\w* \w captain|strong="H7227"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w guard|strong="H2876"\w* \w had|strong="H4428"\w* \w left|strong="H3240"\w* \w with|strong="H4428"\w* \w Gedaliah|strong="H1436"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahikam, \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shaphan|strong="H8227"\w*; \w and|strong="H1121"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H3605"\w* \w prophet|strong="H5030"\w*, \w and|strong="H1121"\w* \w Baruch|strong="H1263"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Neriah|strong="H5374"\w*. +\v 7 \w They|strong="H3588"\w* \w came|strong="H3068"\w* \w into|strong="H4714"\w* \w the|strong="H8085"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w for|strong="H3588"\w* \w they|strong="H3588"\w* didn’t \w obey|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w*; \w and|strong="H3068"\w* \w they|strong="H3588"\w* \w came|strong="H3068"\w* \w to|strong="H5704"\w* \w Tahpanhes|strong="H8471"\w*. +\p +\v 8 \w Then|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w* \w in|strong="H3068"\w* \w Tahpanhes|strong="H8471"\w*, \w saying|strong="H1697"\w*, +\v 9 “\w Take|strong="H3947"\w* \w great|strong="H1419"\w* stones \w in|strong="H1004"\w* \w your|strong="H3947"\w* \w hand|strong="H3027"\w* \w and|strong="H1419"\w* \w hide|strong="H2934"\w* \w them|strong="H3027"\w* \w in|strong="H1004"\w* \w mortar|strong="H4423"\w* \w in|strong="H1004"\w* \w the|strong="H3947"\w* \w brick|strong="H4404"\w* \w work|strong="H3027"\w* \w which|strong="H1004"\w* \w is|strong="H3027"\w* \w at|strong="H1004"\w* \w the|strong="H3947"\w* \w entry|strong="H6607"\w* \w of|strong="H1004"\w* \w Pharaoh|strong="H6547"\w*’s \w house|strong="H1004"\w* \w in|strong="H1004"\w* \w Tahpanhes|strong="H8471"\w*, \w in|strong="H1004"\w* \w the|strong="H3947"\w* \w sight|strong="H5869"\w* \w of|strong="H1004"\w* \w the|strong="H3947"\w* \w men|strong="H1419"\w* \w of|strong="H1004"\w* \w Judah|strong="H3064"\w*. +\v 10 Tell \w them|strong="H5921"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H4428"\w* \w Armies|strong="H6635"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*: ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w and|strong="H3478"\w* \w take|strong="H3947"\w* \w Nebuchadnezzar|strong="H5019"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w my|strong="H3068"\w* \w servant|strong="H5650"\w*, \w and|strong="H3478"\w* \w will|strong="H3068"\w* \w set|strong="H7760"\w* \w his|strong="H7760"\w* \w throne|strong="H3678"\w* \w on|strong="H5921"\w* \w these|strong="H3947"\w* stones \w that|strong="H3068"\w* \w I|strong="H2005"\w* \w have|strong="H3068"\w* \w hidden|strong="H2934"\w*; \w and|strong="H3478"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w spread|strong="H5186"\w* \w his|strong="H7760"\w* \w royal|strong="H4428"\w* \w pavilion|strong="H8237"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 11 \w He|strong="H5221"\w* \w will|strong="H4714"\w* come, \w and|strong="H4714"\w* \w will|strong="H4714"\w* \w strike|strong="H5221"\w* \w the|strong="H5221"\w* land \w of|strong="H4194"\w* \w Egypt|strong="H4714"\w*; such \w as|strong="H5221"\w* \w are|strong="H4714"\w* \w for|strong="H4714"\w* \w death|strong="H4194"\w* \w will|strong="H4714"\w* \w be|strong="H2719"\w* put \w to|strong="H4714"\w* \w death|strong="H4194"\w*, \w and|strong="H4714"\w* such \w as|strong="H5221"\w* \w are|strong="H4714"\w* \w for|strong="H4714"\w* \w captivity|strong="H7628"\w* \w to|strong="H4714"\w* \w captivity|strong="H7628"\w*, \w and|strong="H4714"\w* such \w as|strong="H5221"\w* \w are|strong="H4714"\w* \w for|strong="H4714"\w* \w the|strong="H5221"\w* \w sword|strong="H2719"\w* \w to|strong="H4714"\w* \w the|strong="H5221"\w* \w sword|strong="H2719"\w*. +\v 12 \w I|strong="H4714"\w* \w will|strong="H4714"\w* \w kindle|strong="H3341"\w* \w a|strong="H3068"\w* \w fire|strong="H3341"\w* \w in|strong="H1004"\w* \w the|strong="H3318"\w* \w houses|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H3318"\w* gods \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*. \w He|strong="H8033"\w* \w will|strong="H4714"\w* \w burn|strong="H8313"\w* \w them|strong="H7617"\w*, \w and|strong="H1004"\w* \w carry|strong="H3318"\w* \w them|strong="H7617"\w* \w away|strong="H7617"\w* \w captive|strong="H7617"\w*. \w He|strong="H8033"\w* \w will|strong="H4714"\w* \w array|strong="H5844"\w* \w himself|strong="H5844"\w* \w with|strong="H8313"\w* \w the|strong="H3318"\w* land \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*, \w as|strong="H3318"\w* \w a|strong="H3068"\w* \w shepherd|strong="H7462"\w* puts \w on|strong="H1004"\w* \w his|strong="H3318"\w* garment; \w and|strong="H1004"\w* \w he|strong="H8033"\w* \w will|strong="H4714"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w there|strong="H8033"\w* \w in|strong="H1004"\w* \w peace|strong="H7965"\w*. +\v 13 \w He|strong="H1004"\w* \w will|strong="H4714"\w* also \w break|strong="H7665"\w* \w the|strong="H7665"\w* \w pillars|strong="H4676"\w* \w of|strong="H1004"\w* \w Beth|strong="H1004"\w* Shemesh \w that|strong="H1004"\w* \w is|strong="H1004"\w* \w in|strong="H1004"\w* \w the|strong="H7665"\w* land \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*; \w and|strong="H1004"\w* \w he|strong="H1004"\w* \w will|strong="H4714"\w* \w burn|strong="H8313"\w* \w the|strong="H7665"\w* \w houses|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H7665"\w* gods \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w* \w with|strong="H8313"\w* fire.’” +\c 44 +\p +\v 1 \w The|strong="H3605"\w* \w word|strong="H1697"\w* \w that|strong="H3605"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w Jeremiah|strong="H3414"\w* \w concerning|strong="H1697"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w* \w who|strong="H3605"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* land \w of|strong="H1697"\w* \w Egypt|strong="H4714"\w*, \w who|strong="H3605"\w* \w lived|strong="H3427"\w* \w at|strong="H3427"\w* \w Migdol|strong="H4024"\w*, \w and|strong="H4714"\w* \w at|strong="H3427"\w* \w Tahpanhes|strong="H8471"\w*, \w and|strong="H4714"\w* \w at|strong="H3427"\w* \w Memphis|strong="H5297"\w*, \w and|strong="H4714"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* country \w of|strong="H1697"\w* \w Pathros|strong="H6624"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*: ‘\w You|strong="H3605"\w* \w have|strong="H3068"\w* \w seen|strong="H7200"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w that|strong="H7200"\w* \w I|strong="H3117"\w* \w have|strong="H3068"\w* \w brought|strong="H3478"\w* \w on|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3063"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w*. \w Behold|strong="H2005"\w*, \w today|strong="H3117"\w* \w they|strong="H3117"\w* \w are|strong="H3117"\w* \w a|strong="H3068"\w* \w desolation|strong="H2723"\w*, \w and|strong="H3063"\w* \w no|strong="H3605"\w* \w man|strong="H7451"\w* \w dwells|strong="H3427"\w* \w in|strong="H3427"\w* \w them|strong="H5921"\w*, +\v 3 \w because|strong="H6440"\w* \w of|strong="H6440"\w* \w their|strong="H6440"\w* \w wickedness|strong="H7451"\w* \w which|strong="H1992"\w* \w they|strong="H1992"\w* \w have|strong="H3045"\w* \w committed|strong="H6213"\w* \w to|strong="H3212"\w* \w provoke|strong="H3707"\w* \w me|strong="H6440"\w* \w to|strong="H3212"\w* \w anger|strong="H3707"\w*, \w in|strong="H6213"\w* \w that|strong="H3045"\w* \w they|strong="H1992"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w burn|strong="H6999"\w* \w incense|strong="H6999"\w*, \w to|strong="H3212"\w* \w serve|strong="H5647"\w* other gods \w that|strong="H3045"\w* \w they|strong="H1992"\w* didn’t \w know|strong="H3045"\w*, \w neither|strong="H3808"\w* \w they|strong="H1992"\w*, \w nor|strong="H3808"\w* \w you|strong="H6440"\w*, \w nor|strong="H3808"\w* \w your|strong="H6440"\w* fathers. +\v 4 However \w I|strong="H1697"\w* \w sent|strong="H7971"\w* \w to|strong="H7971"\w* \w you|strong="H3605"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w servants|strong="H5650"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w*, \w rising|strong="H7925"\w* \w up|strong="H7925"\w* \w early|strong="H7925"\w* \w and|strong="H7971"\w* \w sending|strong="H7971"\w* \w them|strong="H7971"\w*, \w saying|strong="H1697"\w*, “\w Oh|strong="H4994"\w*, don’t \w do|strong="H6213"\w* \w this|strong="H2063"\w* \w abominable|strong="H8441"\w* \w thing|strong="H1697"\w* \w that|strong="H3605"\w* \w I|strong="H1697"\w* \w hate|strong="H8130"\w*.” +\v 5 \w But|strong="H3808"\w* \w they|strong="H3808"\w* didn’t \w listen|strong="H8085"\w* \w and|strong="H7725"\w* didn’t \w incline|strong="H5186"\w* \w their|strong="H8085"\w* \w ear|strong="H8085"\w*. \w They|strong="H3808"\w* didn’t \w turn|strong="H7725"\w* \w from|strong="H7725"\w* \w their|strong="H8085"\w* \w wickedness|strong="H7451"\w*, \w to|strong="H7725"\w* \w stop|strong="H3808"\w* \w burning|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H7725"\w* \w other|strong="H1115"\w* gods. +\v 6 \w Therefore|strong="H1961"\w* \w my|strong="H1961"\w* \w wrath|strong="H2534"\w* \w and|strong="H3063"\w* \w my|strong="H1961"\w* \w anger|strong="H2534"\w* \w was|strong="H1961"\w* \w poured|strong="H5413"\w* \w out|strong="H2351"\w*, \w and|strong="H3063"\w* \w was|strong="H1961"\w* \w kindled|strong="H1197"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w cities|strong="H5892"\w* \w of|strong="H3117"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w streets|strong="H2351"\w* \w of|strong="H3117"\w* \w Jerusalem|strong="H3389"\w*; \w and|strong="H3063"\w* \w they|strong="H3117"\w* \w are|strong="H3117"\w* \w wasted|strong="H2723"\w* \w and|strong="H3063"\w* \w desolate|strong="H8077"\w*, \w as|strong="H3117"\w* \w it|strong="H1961"\w* \w is|strong="H2088"\w* \w today|strong="H3117"\w*.’ +\p +\v 7 “\w Therefore|strong="H6258"\w* \w now|strong="H6258"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*: ‘\w Why|strong="H4100"\w* \w do|strong="H6213"\w* \w you|strong="H6213"\w* \w commit|strong="H6213"\w* \w great|strong="H1419"\w* \w evil|strong="H7451"\w* \w against|strong="H3068"\w* \w your|strong="H3068"\w* \w own|strong="H5315"\w* \w souls|strong="H5315"\w*, \w to|strong="H3478"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w yourselves|strong="H5315"\w* \w man|strong="H5315"\w* \w and|strong="H3063"\w* woman, \w infant|strong="H3243"\w* \w and|strong="H3063"\w* \w nursing|strong="H3243"\w* \w child|strong="H5768"\w* \w out|strong="H6213"\w* \w of|strong="H3068"\w* \w the|strong="H3541"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w*, \w to|strong="H3478"\w* \w leave|strong="H3498"\w* \w yourselves|strong="H5315"\w* \w no|strong="H6213"\w* \w one|strong="H6213"\w* \w remaining|strong="H3498"\w*, +\v 8 \w in|strong="H3027"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w provoke|strong="H3707"\w* \w me|strong="H2781"\w* \w to|strong="H1961"\w* \w anger|strong="H3707"\w* \w with|strong="H4714"\w* \w the|strong="H3605"\w* \w works|strong="H4639"\w* \w of|strong="H3027"\w* \w your|strong="H3605"\w* \w hands|strong="H3027"\w*, \w burning|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H1961"\w* \w other|strong="H3605"\w* gods \w in|strong="H3027"\w* \w the|strong="H3605"\w* land \w of|strong="H3027"\w* \w Egypt|strong="H4714"\w* \w where|strong="H8033"\w* \w you|strong="H3605"\w* \w have|strong="H1961"\w* \w gone|strong="H1961"\w* \w to|strong="H1961"\w* \w live|strong="H1481"\w*, \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*, \w and|strong="H3027"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w curse|strong="H7045"\w* \w and|strong="H3027"\w* \w a|strong="H3068"\w* \w reproach|strong="H2781"\w* \w among|strong="H2781"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* earth? +\v 9 \w Have|strong="H3063"\w* \w you|strong="H6213"\w* \w forgotten|strong="H7911"\w* \w the|strong="H6213"\w* \w wickedness|strong="H7451"\w* \w of|strong="H4428"\w* \w your|strong="H6213"\w* fathers, \w the|strong="H6213"\w* \w wickedness|strong="H7451"\w* \w of|strong="H4428"\w* \w the|strong="H6213"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w the|strong="H6213"\w* \w wickedness|strong="H7451"\w* \w of|strong="H4428"\w* \w their|strong="H6213"\w* wives, \w your|strong="H6213"\w* own \w wickedness|strong="H7451"\w*, \w and|strong="H3063"\w* \w the|strong="H6213"\w* \w wickedness|strong="H7451"\w* \w of|strong="H4428"\w* \w your|strong="H6213"\w* wives \w which|strong="H7451"\w* \w they|strong="H6213"\w* \w committed|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* land \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w streets|strong="H2351"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*? +\v 10 \w They|strong="H3117"\w* \w are|strong="H3117"\w* \w not|strong="H3808"\w* \w humbled|strong="H1792"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*, \w neither|strong="H3808"\w* \w have|strong="H3117"\w* \w they|strong="H3117"\w* \w feared|strong="H3372"\w*, \w nor|strong="H3808"\w* \w walked|strong="H1980"\w* \w in|strong="H1980"\w* \w my|strong="H5414"\w* \w law|strong="H8451"\w*, \w nor|strong="H3808"\w* \w in|strong="H1980"\w* \w my|strong="H5414"\w* \w statutes|strong="H2708"\w*, \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w set|strong="H5414"\w* \w before|strong="H6440"\w* \w you|strong="H5414"\w* \w and|strong="H1980"\w* \w before|strong="H6440"\w* \w your|strong="H5414"\w* fathers.’ +\p +\v 11 “\w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*: ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w set|strong="H7760"\w* \w my|strong="H3605"\w* \w face|strong="H6440"\w* \w against|strong="H6440"\w* \w you|strong="H6440"\w* \w for|strong="H6440"\w* \w evil|strong="H7451"\w*, \w even|strong="H3651"\w* \w to|strong="H3478"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w all|strong="H3605"\w* \w Judah|strong="H3063"\w*. +\v 12 \w I|strong="H5704"\w* \w will|strong="H1961"\w* \w take|strong="H3947"\w* \w the|strong="H3605"\w* \w remnant|strong="H7611"\w* \w of|strong="H6440"\w* \w Judah|strong="H3063"\w* \w that|strong="H3605"\w* \w have|strong="H1961"\w* \w set|strong="H7760"\w* \w their|strong="H3605"\w* \w faces|strong="H6440"\w* \w to|strong="H5704"\w* \w go|strong="H1961"\w* \w into|strong="H5307"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w of|strong="H6440"\w* \w Egypt|strong="H4714"\w* \w to|strong="H5704"\w* \w live|strong="H1481"\w* \w there|strong="H8033"\w*, \w and|strong="H3063"\w* \w they|strong="H8033"\w* \w will|strong="H1961"\w* \w all|strong="H3605"\w* \w be|strong="H1961"\w* \w consumed|strong="H8552"\w*. \w They|strong="H8033"\w* \w will|strong="H1961"\w* \w fall|strong="H5307"\w* \w in|strong="H4191"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w of|strong="H6440"\w* \w Egypt|strong="H4714"\w*. \w They|strong="H8033"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w consumed|strong="H8552"\w* \w by|strong="H4191"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w* \w and|strong="H3063"\w* \w by|strong="H4191"\w* \w the|strong="H3605"\w* \w famine|strong="H7458"\w*. \w They|strong="H8033"\w* \w will|strong="H1961"\w* \w die|strong="H4191"\w*, \w from|strong="H6440"\w* \w the|strong="H3605"\w* \w least|strong="H6996"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w greatest|strong="H1419"\w*, \w by|strong="H4191"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w* \w and|strong="H3063"\w* \w by|strong="H4191"\w* \w the|strong="H3605"\w* \w famine|strong="H7458"\w*. \w They|strong="H8033"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w an|strong="H1961"\w* \w object|strong="H8047"\w* \w of|strong="H6440"\w* \w horror|strong="H8047"\w*, \w an|strong="H1961"\w* \w astonishment|strong="H8047"\w*, \w a|strong="H3068"\w* \w curse|strong="H7045"\w*, \w and|strong="H3063"\w* \w a|strong="H3068"\w* \w reproach|strong="H2781"\w*. +\v 13 \w For|strong="H5921"\w* \w I|strong="H5921"\w* \w will|strong="H4714"\w* \w punish|strong="H6485"\w* \w those|strong="H5921"\w* \w who|strong="H3427"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* land \w of|strong="H3427"\w* \w Egypt|strong="H4714"\w*, \w as|strong="H3389"\w* \w I|strong="H5921"\w* \w have|strong="H3389"\w* \w punished|strong="H6485"\w* \w Jerusalem|strong="H3389"\w*, \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w*, \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w famine|strong="H7458"\w*, \w and|strong="H3389"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w pestilence|strong="H1698"\w*; +\v 14 \w so|strong="H1961"\w* \w that|strong="H3588"\w* \w none|strong="H3808"\w* \w of|strong="H3427"\w* \w the|strong="H3588"\w* \w remnant|strong="H7611"\w* \w of|strong="H3427"\w* \w Judah|strong="H3063"\w*, \w who|strong="H5315"\w* \w have|strong="H1961"\w* \w gone|strong="H1961"\w* \w into|strong="H7725"\w* \w the|strong="H3588"\w* land \w of|strong="H3427"\w* \w Egypt|strong="H4714"\w* \w to|strong="H7725"\w* \w live|strong="H3427"\w* \w there|strong="H8033"\w*, \w will|strong="H1961"\w* \w escape|strong="H6412"\w* \w or|strong="H3808"\w* \w be|strong="H1961"\w* \w left|strong="H8300"\w* \w to|strong="H7725"\w* \w return|strong="H7725"\w* \w into|strong="H7725"\w* \w the|strong="H3588"\w* land \w of|strong="H3427"\w* \w Judah|strong="H3063"\w*, \w to|strong="H7725"\w* \w which|strong="H1992"\w* \w they|strong="H1992"\w* \w have|strong="H1961"\w* \w a|strong="H3068"\w* \w desire|strong="H5315"\w* \w to|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w dwell|strong="H3427"\w* \w there|strong="H8033"\w*; \w for|strong="H3588"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w will|strong="H1961"\w* \w return|strong="H7725"\w* \w except|strong="H3588"\w* \w those|strong="H1992"\w* \w who|strong="H5315"\w* \w will|strong="H1961"\w* \w escape|strong="H6412"\w*.’” +\p +\v 15 \w Then|strong="H6030"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H1419"\w* \w who|strong="H3605"\w* \w knew|strong="H3045"\w* \w that|strong="H3588"\w* \w their|strong="H3605"\w* wives \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H4714"\w* \w other|strong="H3605"\w* gods, \w and|strong="H6030"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* women \w who|strong="H3605"\w* \w stood|strong="H5975"\w* \w by|strong="H5975"\w*, \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w assembly|strong="H6951"\w*, \w even|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* land \w of|strong="H3427"\w* \w Egypt|strong="H4714"\w*, \w in|strong="H3427"\w* \w Pathros|strong="H6624"\w*, \w answered|strong="H6030"\w* \w Jeremiah|strong="H3414"\w*, saying, +\v 16 “\w As|strong="H1697"\w* \w for|strong="H3068"\w* \w the|strong="H8085"\w* \w word|strong="H1697"\w* \w that|strong="H8085"\w* \w you|strong="H1696"\w* \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w to|strong="H1696"\w* \w us|strong="H8085"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*, \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H8085"\w* \w listen|strong="H8085"\w* \w to|strong="H1696"\w* \w you|strong="H1696"\w*. +\v 17 \w But|strong="H3588"\w* \w we|strong="H3068"\w* \w will|strong="H1961"\w* \w certainly|strong="H3588"\w* \w perform|strong="H6213"\w* \w every|strong="H3605"\w* \w word|strong="H1697"\w* \w that|strong="H3588"\w* \w has|strong="H1961"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w our|strong="H3605"\w* \w mouth|strong="H6310"\w*, \w to|strong="H3318"\w* \w burn|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H3318"\w* \w the|strong="H3605"\w* \w queen|strong="H4446"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w* \w and|strong="H3063"\w* \w to|strong="H3318"\w* \w pour|strong="H5258"\w* \w out|strong="H3318"\w* \w drink|strong="H5262"\w* \w offerings|strong="H5262"\w* \w to|strong="H3318"\w* \w her|strong="H3605"\w*, \w as|strong="H1697"\w* \w we|strong="H3068"\w* \w have|strong="H1961"\w* \w done|strong="H6213"\w*, \w we|strong="H3068"\w* \w and|strong="H3063"\w* \w our|strong="H3605"\w* fathers, \w our|strong="H3605"\w* \w kings|strong="H4428"\w* \w and|strong="H3063"\w* \w our|strong="H3605"\w* \w princes|strong="H8269"\w*, \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w streets|strong="H2351"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*; \w for|strong="H3588"\w* \w then|strong="H1961"\w* \w we|strong="H3068"\w* \w had|strong="H1961"\w* \w plenty|strong="H7646"\w* \w of|strong="H4428"\w* \w food|strong="H3899"\w*, \w and|strong="H3063"\w* \w were|strong="H1961"\w* \w well|strong="H2896"\w*, \w and|strong="H3063"\w* \w saw|strong="H7200"\w* \w no|strong="H3808"\w* \w evil|strong="H7451"\w*. +\v 18 \w But|strong="H3605"\w* \w since|strong="H4480"\w* \w we|strong="H3068"\w* \w stopped|strong="H2308"\w* \w burning|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H6999"\w* \w the|strong="H3605"\w* \w queen|strong="H4446"\w* \w of|strong="H4480"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w and|strong="H8064"\w* \w pouring|strong="H5258"\w* \w out|strong="H4480"\w* \w drink|strong="H5262"\w* \w offerings|strong="H5262"\w* \w to|strong="H6999"\w* \w her|strong="H3605"\w*, \w we|strong="H3068"\w* \w have|strong="H3605"\w* \w lacked|strong="H2637"\w* \w all|strong="H3605"\w* \w things|strong="H3605"\w*, \w and|strong="H8064"\w* \w have|strong="H3605"\w* \w been|strong="H3605"\w* \w consumed|strong="H8552"\w* \w by|strong="H3605"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w* \w and|strong="H8064"\w* \w by|strong="H3605"\w* \w the|strong="H3605"\w* \w famine|strong="H7458"\w*.” +\p +\v 19 \w The|strong="H3588"\w* women said, “\w When|strong="H3588"\w* \w we|strong="H3068"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H6213"\w* \w the|strong="H3588"\w* \w queen|strong="H4446"\w* \w of|strong="H6213"\w* \w the|strong="H3588"\w* \w sky|strong="H8064"\w* \w and|strong="H8064"\w* \w poured|strong="H5258"\w* \w out|strong="H5258"\w* \w drink|strong="H5262"\w* \w offerings|strong="H5262"\w* \w to|strong="H6213"\w* \w her|strong="H6213"\w*, \w did|strong="H6213"\w* \w we|strong="H3068"\w* \w make|strong="H6213"\w* \w her|strong="H6213"\w* \w cakes|strong="H3561"\w* \w to|strong="H6213"\w* \w worship|strong="H6087"\w* \w her|strong="H6213"\w*, \w and|strong="H8064"\w* \w pour|strong="H5258"\w* \w out|strong="H5258"\w* \w drink|strong="H5262"\w* \w offerings|strong="H5262"\w* \w to|strong="H6213"\w* \w her|strong="H6213"\w*, \w without|strong="H1107"\w* \w our|strong="H3588"\w* husbands?” +\p +\v 20 \w Then|strong="H6030"\w* \w Jeremiah|strong="H3414"\w* \w said|strong="H1697"\w* \w to|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*—\w to|strong="H5921"\w* \w the|strong="H3605"\w* \w men|strong="H1397"\w* \w and|strong="H6030"\w* \w to|strong="H5921"\w* \w the|strong="H3605"\w* women, \w even|strong="H5921"\w* \w to|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w who|strong="H3605"\w* \w had|strong="H5971"\w* given \w him|strong="H5921"\w* \w an|strong="H6030"\w* \w answer|strong="H6030"\w*, \w saying|strong="H1697"\w*, +\v 21 “\w The|strong="H5921"\w* \w incense|strong="H6999"\w* \w that|strong="H5971"\w* \w you|strong="H5921"\w* \w burned|strong="H6999"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w cities|strong="H5892"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w streets|strong="H2351"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*, \w you|strong="H5921"\w* \w and|strong="H3063"\w* \w your|strong="H3068"\w* fathers, \w your|strong="H3068"\w* \w kings|strong="H4428"\w* \w and|strong="H3063"\w* \w your|strong="H3068"\w* \w princes|strong="H8269"\w*, \w and|strong="H3063"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* land, didn’t \w Yahweh|strong="H3068"\w* \w remember|strong="H2142"\w* \w them|strong="H5921"\w*, \w and|strong="H3063"\w* didn’t \w it|strong="H5921"\w* \w come|strong="H5927"\w* \w into|strong="H5927"\w* \w his|strong="H3068"\w* \w mind|strong="H3820"\w*? +\v 22 \w Thus|strong="H2088"\w* \w Yahweh|strong="H3068"\w* \w could|strong="H3201"\w* \w no|strong="H3808"\w* \w longer|strong="H5750"\w* \w bear|strong="H5375"\w* \w it|strong="H6213"\w*, \w because|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w evil|strong="H7455"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w doings|strong="H4611"\w* \w and|strong="H3068"\w* \w because|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w abominations|strong="H8441"\w* \w which|strong="H3068"\w* \w you|strong="H6440"\w* \w have|strong="H1961"\w* \w committed|strong="H6213"\w*. \w Therefore|strong="H3068"\w* \w your|strong="H3068"\w* \w land|strong="H6440"\w* \w has|strong="H3068"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w desolation|strong="H8047"\w*, \w an|strong="H6213"\w* \w astonishment|strong="H8047"\w*, \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w curse|strong="H7045"\w*, \w without|strong="H3808"\w* \w inhabitant|strong="H3427"\w*, \w as|strong="H3117"\w* \w it|strong="H6213"\w* \w is|strong="H3068"\w* \w today|strong="H3117"\w*. +\v 23 \w Because|strong="H5921"\w* \w you|strong="H6440"\w* \w have|strong="H3068"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w and|strong="H1980"\w* \w because|strong="H5921"\w* \w you|strong="H6440"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H1980"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w obeyed|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w*, \w nor|strong="H3808"\w* \w walked|strong="H1980"\w* \w in|strong="H5921"\w* \w his|strong="H3068"\w* \w law|strong="H8451"\w*, \w nor|strong="H3808"\w* \w in|strong="H5921"\w* \w his|strong="H3068"\w* \w statutes|strong="H2708"\w*, \w nor|strong="H3808"\w* \w in|strong="H5921"\w* \w his|strong="H3068"\w* \w testimonies|strong="H5715"\w*; \w therefore|strong="H3651"\w* \w this|strong="H2088"\w* \w evil|strong="H7451"\w* \w has|strong="H3068"\w* \w happened|strong="H7122"\w* \w to|strong="H1980"\w* \w you|strong="H6440"\w*, \w as|strong="H3117"\w* \w it|strong="H5921"\w* \w is|strong="H3068"\w* \w today|strong="H3117"\w*.” +\p +\v 24 Moreover \w Jeremiah|strong="H3414"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w including|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* women, “\w Hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w all|strong="H3605"\w* \w Judah|strong="H3063"\w* \w who|strong="H3605"\w* \w are|strong="H5971"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*! +\v 25 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*, ‘\w You|strong="H6213"\w* \w and|strong="H6965"\w* \w your|strong="H3068"\w* wives \w have|strong="H3068"\w* both \w spoken|strong="H1696"\w* \w with|strong="H4390"\w* \w your|strong="H3068"\w* \w mouths|strong="H6310"\w*, \w and|strong="H6965"\w* \w with|strong="H4390"\w* \w your|strong="H3068"\w* \w hands|strong="H3027"\w* \w have|strong="H3068"\w* \w fulfilled|strong="H4390"\w* \w it|strong="H6213"\w*, \w saying|strong="H1696"\w*, “\w We|strong="H6213"\w* \w will|strong="H3068"\w* \w surely|strong="H6213"\w* \w perform|strong="H6213"\w* \w our|strong="H3068"\w* \w vows|strong="H5088"\w* \w that|strong="H3068"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w vowed|strong="H5087"\w*, \w to|strong="H1696"\w* \w burn|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H1696"\w* \w the|strong="H3541"\w* \w queen|strong="H4446"\w* \w of|strong="H3068"\w* \w the|strong="H3541"\w* \w sky|strong="H8064"\w*, \w and|strong="H6965"\w* \w to|strong="H1696"\w* \w pour|strong="H5258"\w* \w out|strong="H5258"\w* \w drink|strong="H5262"\w* \w offerings|strong="H5262"\w* \w to|strong="H1696"\w* \w her|strong="H4390"\w*.” +\p “‘\w Establish|strong="H6965"\w* \w then|strong="H6965"\w* \w your|strong="H3068"\w* \w vows|strong="H5088"\w*, \w and|strong="H6965"\w* \w perform|strong="H6213"\w* \w your|strong="H3068"\w* \w vows|strong="H5088"\w*.’ +\p +\v 26 “\w Therefore|strong="H3651"\w* \w hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w all|strong="H3605"\w* \w Judah|strong="H3063"\w* \w who|strong="H3605"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*: ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w have|strong="H1961"\w* \w sworn|strong="H7650"\w* \w by|strong="H7650"\w* \w my|strong="H8085"\w* \w great|strong="H1419"\w* \w name|strong="H8034"\w*,’ \w says|strong="H1697"\w* \w Yahweh|strong="H3068"\w*, ‘\w that|strong="H3605"\w* \w my|strong="H8085"\w* \w name|strong="H8034"\w* \w will|strong="H3068"\w* \w no|strong="H3605"\w* \w more|strong="H5750"\w* \w be|strong="H1961"\w* \w named|strong="H7121"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w mouth|strong="H6310"\w* \w of|strong="H3068"\w* \w any|strong="H3605"\w* \w man|strong="H1419"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w* \w in|strong="H3427"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*, \w saying|strong="H1697"\w*, “\w As|strong="H1697"\w* \w the|strong="H3605"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*.” +\v 27 \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w watch|strong="H8245"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w* \w for|strong="H5704"\w* \w evil|strong="H7451"\w*, \w and|strong="H3063"\w* \w not|strong="H3808"\w* \w for|strong="H5704"\w* \w good|strong="H2896"\w*; \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H7451"\w* \w of|strong="H5921"\w* \w Judah|strong="H3063"\w* \w who|strong="H3605"\w* \w are|strong="H4714"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* land \w of|strong="H5921"\w* \w Egypt|strong="H4714"\w* \w will|strong="H4714"\w* \w be|strong="H3808"\w* \w consumed|strong="H3615"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w* \w and|strong="H3063"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w famine|strong="H7458"\w*, \w until|strong="H5704"\w* \w they|strong="H3808"\w* \w are|strong="H4714"\w* \w all|strong="H3605"\w* \w gone|strong="H8552"\w*. +\v 28 \w Those|strong="H1992"\w* \w who|strong="H4310"\w* \w escape|strong="H6412"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w* \w will|strong="H4310"\w* \w return|strong="H7725"\w* \w out|strong="H4480"\w* \w of|strong="H1697"\w* \w the|strong="H3605"\w* land \w of|strong="H1697"\w* \w Egypt|strong="H4714"\w* \w into|strong="H7725"\w* \w the|strong="H3605"\w* land \w of|strong="H1697"\w* \w Judah|strong="H3063"\w* \w few|strong="H4557"\w* \w in|strong="H7725"\w* \w number|strong="H4557"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w remnant|strong="H7611"\w* \w of|strong="H1697"\w* \w Judah|strong="H3063"\w*, \w who|strong="H4310"\w* \w have|strong="H3045"\w* \w gone|strong="H4480"\w* \w into|strong="H7725"\w* \w the|strong="H3605"\w* land \w of|strong="H1697"\w* \w Egypt|strong="H4714"\w* \w to|strong="H7725"\w* \w live|strong="H1481"\w* \w there|strong="H8033"\w*, \w will|strong="H4310"\w* \w know|strong="H3045"\w* \w whose|strong="H4310"\w* \w word|strong="H1697"\w* \w will|strong="H4310"\w* \w stand|strong="H6965"\w*, \w mine|strong="H3045"\w* \w or|strong="H4480"\w* \w theirs|strong="H1992"\w*. +\p +\v 29 “‘\w This|strong="H2088"\w* \w will|strong="H3068"\w* \w be|strong="H1697"\w* \w the|strong="H5002"\w* sign \w to|strong="H3068"\w* \w you|strong="H3588"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, ‘\w that|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w punish|strong="H6485"\w* \w you|strong="H3588"\w* \w in|strong="H5921"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w my|strong="H3068"\w* \w words|strong="H1697"\w* \w will|strong="H3068"\w* \w surely|strong="H3588"\w* \w stand|strong="H6965"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w* \w for|strong="H3588"\w* \w evil|strong="H7451"\w*.’ +\v 30 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w Pharaoh|strong="H6548"\w* \w Hophra|strong="H6548"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w into|strong="H4714"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w his|strong="H5414"\w* \w enemies|strong="H3027"\w* \w and|strong="H3063"\w* \w into|strong="H4714"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w those|strong="H5315"\w* \w who|strong="H3068"\w* \w seek|strong="H1245"\w* \w his|strong="H5414"\w* \w life|strong="H5315"\w*, just \w as|strong="H5315"\w* \w I|strong="H2005"\w* \w gave|strong="H5414"\w* \w Zedekiah|strong="H6667"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w into|strong="H4714"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w who|strong="H3068"\w* \w was|strong="H3068"\w* \w his|strong="H5414"\w* enemy \w and|strong="H3063"\w* \w sought|strong="H1245"\w* \w his|strong="H5414"\w* \w life|strong="H5315"\w*.’” +\c 45 +\p +\v 1 \w The|strong="H5921"\w* \w message|strong="H1697"\w* \w that|strong="H1697"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Baruch|strong="H1263"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Neriah|strong="H5374"\w*, \w when|strong="H1696"\w* \w he|strong="H5921"\w* \w wrote|strong="H3789"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w* \w in|strong="H8141"\w* \w a|strong="H3068"\w* \w book|strong="H5612"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w mouth|strong="H6310"\w* \w of|strong="H1121"\w* \w Jeremiah|strong="H3414"\w*, \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w fourth|strong="H7243"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Jehoiakim|strong="H3079"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w* \w to|strong="H3478"\w* \w you|strong="H5921"\w*, \w Baruch|strong="H1263"\w*: +\v 3 ‘\w You|strong="H3588"\w* said, “Woe \w is|strong="H3068"\w* \w me|strong="H4994"\w* \w now|strong="H4994"\w*! \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w added|strong="H3254"\w* \w sorrow|strong="H3015"\w* \w to|strong="H3068"\w* \w my|strong="H3068"\w* \w pain|strong="H4341"\w*! \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w weary|strong="H3021"\w* \w with|strong="H3068"\w* \w my|strong="H3068"\w* groaning, \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w find|strong="H4672"\w* \w no|strong="H3808"\w* \w rest|strong="H4496"\w*.”’ +\p +\v 4 “\w You|strong="H3605"\w* \w shall|strong="H3068"\w* \w tell|strong="H3605"\w* \w him|strong="H1931"\w*, \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Behold|strong="H2009"\w*, \w that|strong="H3605"\w* \w which|strong="H1931"\w* \w I|strong="H3541"\w* \w have|strong="H3068"\w* \w built|strong="H1129"\w*, \w I|strong="H3541"\w* \w will|strong="H3068"\w* \w break|strong="H2040"\w* \w down|strong="H2040"\w*, \w and|strong="H3068"\w* \w that|strong="H3605"\w* \w which|strong="H1931"\w* \w I|strong="H3541"\w* \w have|strong="H3068"\w* \w planted|strong="H5193"\w* \w I|strong="H3541"\w* \w will|strong="H3068"\w* \w pluck|strong="H5428"\w* \w up|strong="H1129"\w*; \w and|strong="H3068"\w* \w this|strong="H1931"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* land. +\v 5 \w Do|strong="H3068"\w* \w you|strong="H3588"\w* \w seek|strong="H1245"\w* \w great|strong="H1419"\w* \w things|strong="H1419"\w* \w for|strong="H3588"\w* \w yourself|strong="H5315"\w*? Don’t \w seek|strong="H1245"\w* \w them|strong="H5414"\w*; \w for|strong="H3588"\w*, \w behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w bring|strong="H5414"\w* \w evil|strong="H7451"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, ‘\w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w let|strong="H5414"\w* \w you|strong="H3588"\w* \w escape|strong="H7998"\w* \w with|strong="H3068"\w* \w your|strong="H3068"\w* \w life|strong="H5315"\w* \w wherever|strong="H3605"\w* \w you|strong="H3588"\w* \w go|strong="H3212"\w*.’” +\c 46 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*. +\p +\v 2 \w Of|strong="H1121"\w* \w Egypt|strong="H4714"\w*: \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* \w army|strong="H2428"\w* \w of|strong="H1121"\w* \w Pharaoh|strong="H6549"\w* Necoh \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w which|strong="H2428"\w* \w was|strong="H1961"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w river|strong="H5104"\w* \w Euphrates|strong="H6578"\w* \w in|strong="H8141"\w* \w Carchemish|strong="H3751"\w*, \w which|strong="H2428"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon \w struck|strong="H5221"\w* \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w fourth|strong="H7243"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Jehoiakim|strong="H3079"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*. +\q1 +\v 3 “\w Prepare|strong="H6186"\w* \w the|strong="H5066"\w* \w buckler|strong="H4043"\w* \w and|strong="H4043"\w* \w shield|strong="H4043"\w*, +\q2 \w and|strong="H4043"\w* \w draw|strong="H6186"\w* \w near|strong="H5066"\w* \w to|strong="H5066"\w* \w battle|strong="H4421"\w*! +\q1 +\v 4 Harness \w the|strong="H5927"\w* \w horses|strong="H5483"\w*, \w and|strong="H5483"\w* \w get|strong="H5927"\w* \w up|strong="H5927"\w*, \w you|strong="H3847"\w* \w horsemen|strong="H6571"\w*, +\q2 \w and|strong="H5483"\w* \w stand|strong="H3320"\w* \w up|strong="H5927"\w* \w with|strong="H3847"\w* \w your|strong="H3320"\w* \w helmets|strong="H3553"\w*. +\q1 \w Polish|strong="H4838"\w* \w the|strong="H5927"\w* \w spears|strong="H7420"\w*, +\q2 \w put|strong="H3847"\w* \w on|strong="H3847"\w* \w the|strong="H5927"\w* coats \w of|strong="H3553"\w* mail. +\q1 +\v 5 \w Why|strong="H4069"\w* \w have|strong="H3068"\w* \w I|strong="H7200"\w* \w seen|strong="H7200"\w* \w it|strong="H7200"\w*? +\q2 \w They|strong="H1992"\w* \w are|strong="H1992"\w* \w dismayed|strong="H2844"\w* \w and|strong="H3068"\w* \w are|strong="H1992"\w* \w turned|strong="H6437"\w* backward. +\q1 \w Their|strong="H3068"\w* \w mighty|strong="H1368"\w* \w ones|strong="H1368"\w* \w are|strong="H1992"\w* \w beaten|strong="H3807"\w* \w down|strong="H3807"\w*, +\q2 \w have|strong="H3068"\w* \w fled|strong="H5127"\w* \w in|strong="H3068"\w* haste, +\q2 \w and|strong="H3068"\w* don’t \w look|strong="H7200"\w* \w back|strong="H6437"\w*. +\q1 \w Terror|strong="H4032"\w* \w is|strong="H3068"\w* \w on|strong="H7200"\w* \w every|strong="H5439"\w* \w side|strong="H5439"\w*,” +\q2 \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 6 “Don’t let \w the|strong="H5921"\w* \w swift|strong="H7031"\w* \w flee|strong="H5127"\w* \w away|strong="H5127"\w*, +\q2 nor \w the|strong="H5921"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w* \w escape|strong="H4422"\w*. +\q1 \w In|strong="H5921"\w* \w the|strong="H5921"\w* \w north|strong="H6828"\w* \w by|strong="H3027"\w* \w the|strong="H5921"\w* \w river|strong="H5104"\w* \w Euphrates|strong="H6578"\w* +\q2 \w they|strong="H5921"\w* \w have|strong="H3027"\w* \w stumbled|strong="H3782"\w* \w and|strong="H3027"\w* \w fallen|strong="H5307"\w*. +\b +\q1 +\v 7 “\w Who|strong="H4310"\w* \w is|strong="H2088"\w* \w this|strong="H2088"\w* \w who|strong="H4310"\w* \w rises|strong="H5927"\w* \w up|strong="H5927"\w* \w like|strong="H5927"\w* \w the|strong="H5927"\w* \w Nile|strong="H2975"\w*, +\q2 \w like|strong="H5927"\w* \w rivers|strong="H5104"\w* \w whose|strong="H4310"\w* \w waters|strong="H4325"\w* \w surge|strong="H1607"\w*? +\q1 +\v 8 \w Egypt|strong="H4714"\w* \w rises|strong="H5927"\w* \w up|strong="H5927"\w* \w like|strong="H5927"\w* \w the|strong="H3680"\w* \w Nile|strong="H2975"\w*, +\q2 \w like|strong="H5927"\w* \w rivers|strong="H5104"\w* \w whose|strong="H5104"\w* \w waters|strong="H4325"\w* \w surge|strong="H1607"\w*. +\q1 \w He|strong="H3427"\w* says, ‘\w I|strong="H4714"\w* \w will|strong="H4714"\w* \w rise|strong="H5927"\w* \w up|strong="H5927"\w*. \w I|strong="H4714"\w* \w will|strong="H4714"\w* \w cover|strong="H3680"\w* \w the|strong="H3680"\w* \w earth|strong="H5927"\w*. +\q2 \w I|strong="H4714"\w* \w will|strong="H4714"\w* \w destroy|strong="H5892"\w* \w cities|strong="H5892"\w* \w and|strong="H5892"\w* \w its|strong="H5927"\w* \w inhabitants|strong="H3427"\w*.’ +\q1 +\v 9 \w Go|strong="H3318"\w* \w up|strong="H5927"\w*, \w you|strong="H3318"\w* \w horses|strong="H5483"\w*! +\q2 \w Rage|strong="H1984"\w*, \w you|strong="H3318"\w* \w chariots|strong="H7393"\w*! +\q1 Let \w the|strong="H3318"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*: +\q2 \w Cush|strong="H3568"\w* \w and|strong="H7393"\w* \w Put|strong="H6316"\w*, \w who|strong="H1368"\w* \w handle|strong="H8610"\w* \w the|strong="H3318"\w* \w shield|strong="H4043"\w*; +\q2 \w and|strong="H7393"\w* \w the|strong="H3318"\w* \w Ludim|strong="H3866"\w*, \w who|strong="H1368"\w* \w handle|strong="H8610"\w* \w and|strong="H7393"\w* \w bend|strong="H1869"\w* \w the|strong="H3318"\w* \w bow|strong="H7198"\w*. +\q1 +\v 10 \w For|strong="H3588"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w* \w is|strong="H1931"\w* \w of|strong="H3117"\w* \w the|strong="H3588"\w* \w Lord|strong="H3069"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H3117"\w* \w Armies|strong="H6635"\w*, +\q2 \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w vengeance|strong="H5360"\w*, +\q2 \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w may|strong="H3117"\w* \w avenge|strong="H5358"\w* \w himself|strong="H1931"\w* \w of|strong="H3117"\w* \w his|strong="H3588"\w* \w adversaries|strong="H6862"\w*. +\q1 \w The|strong="H3588"\w* \w sword|strong="H2719"\w* \w will|strong="H2719"\w* devour \w and|strong="H3117"\w* \w be|strong="H3117"\w* \w satiated|strong="H7646"\w*, +\q2 \w and|strong="H3117"\w* \w will|strong="H2719"\w* \w drink|strong="H7301"\w* \w its|strong="H7301"\w* \w fill|strong="H7301"\w* \w of|strong="H3117"\w* \w their|strong="H3588"\w* \w blood|strong="H1818"\w*; +\q2 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w Lord|strong="H3069"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H3117"\w* \w Armies|strong="H6635"\w*, \w has|strong="H6635"\w* \w a|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w in|strong="H3117"\w* \w the|strong="H3588"\w* \w north|strong="H6828"\w* country \w by|strong="H3117"\w* \w the|strong="H3588"\w* \w river|strong="H5104"\w* \w Euphrates|strong="H6578"\w*. +\q1 +\v 11 \w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w into|strong="H5927"\w* \w Gilead|strong="H1568"\w*, \w and|strong="H4714"\w* \w take|strong="H3947"\w* \w balm|strong="H6875"\w*, \w virgin|strong="H1330"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Egypt|strong="H4714"\w*. +\q2 \w You|strong="H3947"\w* \w use|strong="H3947"\w* \w many|strong="H7235"\w* \w medicines|strong="H7499"\w* \w in|strong="H5927"\w* \w vain|strong="H7723"\w*. +\q2 \w There|strong="H5927"\w* \w is|strong="H4714"\w* \w no|strong="H3947"\w* \w healing|strong="H8585"\w* \w for|strong="H4714"\w* \w you|strong="H3947"\w*. +\q1 +\v 12 \w The|strong="H8085"\w* \w nations|strong="H1471"\w* \w have|strong="H1471"\w* \w heard|strong="H8085"\w* \w of|strong="H4390"\w* \w your|strong="H8085"\w* \w shame|strong="H7036"\w*, +\q2 \w and|strong="H8085"\w* \w the|strong="H8085"\w* earth \w is|strong="H8085"\w* \w full|strong="H4390"\w* \w of|strong="H4390"\w* \w your|strong="H8085"\w* \w cry|strong="H6682"\w*; +\q2 \w for|strong="H3588"\w* \w the|strong="H8085"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w* \w has|strong="H3588"\w* \w stumbled|strong="H3782"\w* \w against|strong="H1471"\w* \w the|strong="H8085"\w* \w mighty|strong="H1368"\w*, +\q2 \w they|strong="H3588"\w* \w both|strong="H8147"\w* \w fall|strong="H5307"\w* \w together|strong="H3162"\w*.” +\b +\p +\v 13 \w The|strong="H5221"\w* \w word|strong="H1697"\w* \w that|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H5221"\w* \w prophet|strong="H5030"\w*, how \w that|strong="H3068"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w should|strong="H3068"\w* come \w and|strong="H3068"\w* \w strike|strong="H5221"\w* \w the|strong="H5221"\w* land \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*: +\q1 +\v 14 “\w Declare|strong="H5046"\w* \w in|strong="H8085"\w* \w Egypt|strong="H4714"\w*, +\q2 \w publish|strong="H8085"\w* \w in|strong="H8085"\w* \w Migdol|strong="H4024"\w*, +\q2 \w and|strong="H4714"\w* \w publish|strong="H8085"\w* \w in|strong="H8085"\w* \w Memphis|strong="H5297"\w* \w and|strong="H4714"\w* \w in|strong="H8085"\w* \w Tahpanhes|strong="H8471"\w*; +\q1 say, ‘\w Stand|strong="H3320"\w* \w up|strong="H3320"\w*, \w and|strong="H4714"\w* \w prepare|strong="H3559"\w*, +\q2 \w for|strong="H3588"\w* \w the|strong="H8085"\w* \w sword|strong="H2719"\w* \w has|strong="H3588"\w* devoured \w around|strong="H5439"\w* \w you|strong="H3588"\w*.’ +\q1 +\v 15 \w Why|strong="H4069"\w* \w are|strong="H3068"\w* \w your|strong="H3068"\w* strong \w ones|strong="H5975"\w* swept \w away|strong="H1920"\w*? +\q2 \w They|strong="H3588"\w* didn’t \w stand|strong="H5975"\w*, \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w pushed|strong="H1920"\w* \w them|strong="H5975"\w*. +\q1 +\v 16 \w He|strong="H5971"\w* \w made|strong="H7235"\w* \w many|strong="H7235"\w* \w to|strong="H7725"\w* \w stumble|strong="H3782"\w*. +\q2 \w Yes|strong="H1571"\w*, \w they|strong="H5971"\w* \w fell|strong="H5307"\w* \w on|strong="H5307"\w* \w one|strong="H1571"\w* \w another|strong="H7453"\w*. +\q1 \w They|strong="H5971"\w* said, ‘\w Arise|strong="H6965"\w*! \w Let|strong="H7725"\w*’s \w go|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w our|strong="H7725"\w* \w own|strong="H5971"\w* \w people|strong="H5971"\w*, +\q2 \w and|strong="H6965"\w* \w to|strong="H7725"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H6440"\w* \w our|strong="H7725"\w* \w birth|strong="H4138"\w*, +\q2 \w from|strong="H7725"\w* \w the|strong="H6440"\w* \w oppressing|strong="H3238"\w* \w sword|strong="H2719"\w*.’ +\q1 +\v 17 \w They|strong="H8033"\w* \w cried|strong="H7121"\w* \w there|strong="H8033"\w*, ‘\w Pharaoh|strong="H6547"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w is|strong="H4428"\w* \w but|strong="H4428"\w* \w a|strong="H3068"\w* \w noise|strong="H7588"\w*; +\q2 \w he|strong="H8033"\w* \w has|strong="H4428"\w* let \w the|strong="H7121"\w* \w appointed|strong="H4150"\w* \w time|strong="H4150"\w* \w pass|strong="H5674"\w* \w by|strong="H5674"\w*.’ +\b +\q1 +\v 18 “\w As|strong="H3068"\w* \w I|strong="H3588"\w* \w live|strong="H2416"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w King|strong="H4428"\w*, +\q2 \w whose|strong="H8034"\w* \w name|strong="H8034"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H4428"\w* \w Armies|strong="H6635"\w*, +\q1 “\w surely|strong="H3588"\w* \w like|strong="H2022"\w* \w Tabor|strong="H8396"\w* \w among|strong="H8034"\w* \w the|strong="H5002"\w* \w mountains|strong="H2022"\w*, +\q2 \w and|strong="H3068"\w* \w like|strong="H2022"\w* \w Carmel|strong="H3760"\w* \w by|strong="H3068"\w* \w the|strong="H5002"\w* \w sea|strong="H3220"\w*, +\q2 \w so|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w come|strong="H6635"\w*. +\q1 +\v 19 \w You|strong="H3588"\w* \w daughter|strong="H1323"\w* \w who|strong="H3427"\w* \w dwells|strong="H3427"\w* \w in|strong="H3427"\w* \w Egypt|strong="H4714"\w*, +\q2 \w furnish|strong="H6213"\w* \w yourself|strong="H6213"\w* \w to|strong="H1961"\w* \w go|strong="H1961"\w* \w into|strong="H6213"\w* \w captivity|strong="H1473"\w*; +\q1 \w for|strong="H3588"\w* \w Memphis|strong="H5297"\w* \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w desolation|strong="H8047"\w*, +\q2 \w and|strong="H4714"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w burned|strong="H3341"\w* \w up|strong="H3341"\w*, +\q2 \w without|strong="H3427"\w* \w inhabitant|strong="H3427"\w*. +\b +\q1 +\v 20 “\w Egypt|strong="H4714"\w* \w is|strong="H4714"\w* \w a|strong="H3068"\w* very beautiful \w heifer|strong="H5697"\w*; +\q2 but \w destruction|strong="H7171"\w* out \w of|strong="H6828"\w* \w the|strong="H6828"\w* \w north|strong="H6828"\w* \w has|strong="H4714"\w* come. +\q2 It \w has|strong="H4714"\w* come. +\q1 +\v 21 \w Also|strong="H1571"\w* \w her|strong="H5921"\w* \w hired|strong="H7916"\w* \w men|strong="H1992"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H7130"\w* \w of|strong="H3117"\w* \w her|strong="H5921"\w* \w are|strong="H3117"\w* \w like|strong="H3808"\w* \w calves|strong="H5695"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w stall|strong="H4770"\w*, +\q2 \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w also|strong="H1571"\w* \w are|strong="H3117"\w* \w turned|strong="H6437"\w* \w back|strong="H6437"\w*. +\q2 \w They|strong="H1992"\w* \w have|strong="H1571"\w* \w fled|strong="H5127"\w* \w away|strong="H5127"\w* \w together|strong="H3162"\w*. +\q1 \w They|strong="H1992"\w* didn’t \w stand|strong="H5975"\w*, +\q2 \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w their|strong="H1992"\w* calamity \w has|strong="H3117"\w* come \w on|strong="H5921"\w* \w them|strong="H1992"\w*, +\q2 \w the|strong="H5921"\w* \w time|strong="H6256"\w* \w of|strong="H3117"\w* \w their|strong="H1992"\w* \w visitation|strong="H6486"\w*. +\q1 +\v 22 \w Its|strong="H3588"\w* \w sound|strong="H6963"\w* \w will|strong="H6963"\w* \w go|strong="H3212"\w* \w like|strong="H6086"\w* \w the|strong="H3588"\w* \w serpent|strong="H5175"\w*, +\q2 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H6963"\w* \w march|strong="H3212"\w* \w with|strong="H3212"\w* \w an|strong="H3588"\w* \w army|strong="H2428"\w*, +\q2 \w and|strong="H3212"\w* \w come|strong="H3212"\w* \w against|strong="H3212"\w* \w her|strong="H3212"\w* \w with|strong="H3212"\w* \w axes|strong="H7134"\w*, \w as|strong="H3588"\w* \w wood|strong="H6086"\w* cutters. +\q1 +\v 23 \w They|strong="H1992"\w* \w will|strong="H3068"\w* \w cut|strong="H3772"\w* \w down|strong="H3772"\w* \w her|strong="H3772"\w* \w forest|strong="H3293"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w though|strong="H3588"\w* \w it|strong="H3588"\w* \w can|strong="H3808"\w*’t \w be|strong="H3808"\w* \w searched|strong="H2713"\w*; +\q1 \w because|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w more|strong="H7231"\w* \w than|strong="H3808"\w* \w the|strong="H5002"\w* locusts, +\q2 \w and|strong="H3068"\w* \w are|strong="H1992"\w* \w innumerable|strong="H4557"\w*. +\q1 +\v 24 \w The|strong="H5414"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Egypt|strong="H4714"\w* \w will|strong="H5971"\w* \w be|strong="H3027"\w* disappointed; +\q2 she \w will|strong="H5971"\w* \w be|strong="H3027"\w* \w delivered|strong="H5414"\w* \w into|strong="H4714"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H1323"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w* \w of|strong="H1323"\w* \w the|strong="H5414"\w* \w north|strong="H6828"\w*.” +\p +\v 25 \w Yahweh|strong="H3068"\w* \w of|strong="H4428"\w* \w Armies|strong="H6635"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, says: “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w punish|strong="H6485"\w* Amon \w of|strong="H4428"\w* \w No|strong="H4996"\w*, \w and|strong="H3478"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H3478"\w* \w Egypt|strong="H4714"\w*, \w with|strong="H3068"\w* \w her|strong="H5921"\w* gods \w and|strong="H3478"\w* \w her|strong="H5921"\w* \w kings|strong="H4428"\w*, \w even|strong="H3068"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H3478"\w* \w those|strong="H5921"\w* \w who|strong="H3068"\w* trust \w in|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 26 \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w deliver|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5002"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w those|strong="H5315"\w* \w who|strong="H3068"\w* \w seek|strong="H1245"\w* \w their|strong="H3068"\w* \w lives|strong="H5315"\w*, \w and|strong="H3068"\w* \w into|strong="H3027"\w* \w the|strong="H5002"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w and|strong="H3068"\w* \w into|strong="H3027"\w* \w the|strong="H5002"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w his|strong="H5414"\w* \w servants|strong="H5650"\w*. Afterwards \w it|strong="H5414"\w* \w will|strong="H3068"\w* \w be|strong="H3027"\w* \w inhabited|strong="H7931"\w*, \w as|strong="H3117"\w* \w in|strong="H3068"\w* \w the|strong="H5002"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w old|strong="H6924"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 27 “\w But|strong="H3588"\w* don’t \w you|strong="H3588"\w* \w be|strong="H3478"\w* \w afraid|strong="H3372"\w*, \w Jacob|strong="H3290"\w* \w my|strong="H7725"\w* \w servant|strong="H5650"\w*. +\q2 Don’t \w be|strong="H3478"\w* \w dismayed|strong="H2865"\w*, \w Israel|strong="H3478"\w*; +\q1 \w for|strong="H3588"\w*, \w behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H3478"\w* \w save|strong="H3467"\w* \w you|strong="H3588"\w* \w from|strong="H7725"\w* \w afar|strong="H7350"\w*, +\q2 \w and|strong="H3478"\w* \w your|strong="H7725"\w* \w offspring|strong="H2233"\w* \w from|strong="H7725"\w* \w the|strong="H3588"\w* land \w of|strong="H5650"\w* \w their|strong="H7725"\w* \w captivity|strong="H7628"\w*. +\q1 \w Jacob|strong="H3290"\w* \w will|strong="H3478"\w* \w return|strong="H7725"\w*, +\q2 \w and|strong="H3478"\w* \w will|strong="H3478"\w* \w be|strong="H3478"\w* \w quiet|strong="H8252"\w* \w and|strong="H3478"\w* \w at|strong="H3478"\w* \w ease|strong="H7599"\w*. +\q2 \w No|strong="H3372"\w* \w one|strong="H3588"\w* \w will|strong="H3478"\w* \w make|strong="H2729"\w* \w him|strong="H7725"\w* \w afraid|strong="H3372"\w*. +\q1 +\v 28 Don’t \w be|strong="H3808"\w* \w afraid|strong="H3372"\w*, \w O|strong="H3068"\w* \w Jacob|strong="H3290"\w* \w my|strong="H3605"\w* \w servant|strong="H5650"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w*; +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w full|strong="H3605"\w* \w end|strong="H3617"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w where|strong="H8033"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w driven|strong="H5080"\w* \w you|strong="H3588"\w*, +\q1 \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w full|strong="H3605"\w* \w end|strong="H3617"\w* \w of|strong="H3068"\w* \w you|strong="H3588"\w*, +\q2 \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w correct|strong="H3256"\w* \w you|strong="H3588"\w* \w in|strong="H3068"\w* \w measure|strong="H4941"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w in|strong="H3068"\w* \w no|strong="H3808"\w* \w way|strong="H4941"\w* \w leave|strong="H5352"\w* \w you|strong="H3588"\w* \w unpunished|strong="H5352"\w*.” +\c 47 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w that|strong="H3068"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H5221"\w* \w prophet|strong="H5030"\w* \w concerning|strong="H1697"\w* \w the|strong="H5221"\w* \w Philistines|strong="H6430"\w*, \w before|strong="H2962"\w* \w Pharaoh|strong="H6547"\w* \w struck|strong="H5221"\w* \w Gaza|strong="H5804"\w*. +\p +\v 2 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w Behold|strong="H2009"\w*, \w waters|strong="H4325"\w* \w rise|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H2199"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w north|strong="H6828"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w become|strong="H1961"\w* \w an|strong="H1961"\w* \w overflowing|strong="H7857"\w* \w stream|strong="H5158"\w*, +\q1 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w overflow|strong="H7857"\w* \w the|strong="H3605"\w* land \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w is|strong="H3068"\w* \w therein|strong="H4393"\w*, +\q2 \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w and|strong="H3068"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w dwell|strong="H3427"\w* \w therein|strong="H4393"\w*. +\q1 \w The|strong="H3605"\w* \w men|strong="H3605"\w* \w will|strong="H3068"\w* \w cry|strong="H2199"\w*, +\q2 \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* land \w will|strong="H3068"\w* \w wail|strong="H3213"\w*. +\q1 +\v 3 \w At|strong="H3808"\w* \w the|strong="H3027"\w* \w noise|strong="H6963"\w* \w of|strong="H1121"\w* \w the|strong="H3027"\w* \w stamping|strong="H8161"\w* \w of|strong="H1121"\w* \w the|strong="H3027"\w* \w hoofs|strong="H6541"\w* \w of|strong="H1121"\w* \w his|strong="H3027"\w* strong \w ones|strong="H1121"\w*, +\q2 \w at|strong="H3808"\w* \w the|strong="H3027"\w* \w rushing|strong="H7494"\w* \w of|strong="H1121"\w* \w his|strong="H3027"\w* \w chariots|strong="H7393"\w*, +\q2 \w at|strong="H3808"\w* \w the|strong="H3027"\w* \w rumbling|strong="H7494"\w* \w of|strong="H1121"\w* \w his|strong="H3027"\w* \w wheels|strong="H1534"\w*, +\q1 \w the|strong="H3027"\w* fathers don’t \w look|strong="H6437"\w* \w back|strong="H6437"\w* \w for|strong="H3027"\w* \w their|strong="H3808"\w* \w children|strong="H1121"\w* +\q2 \w because|strong="H3027"\w* \w their|strong="H3808"\w* \w hands|strong="H3027"\w* \w are|strong="H1121"\w* \w so|strong="H3808"\w* \w feeble|strong="H3808"\w*, +\q1 +\v 4 \w because|strong="H3588"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w comes|strong="H3117"\w* \w to|strong="H3068"\w* \w destroy|strong="H7703"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*, +\q2 \w to|strong="H3068"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w Tyre|strong="H6865"\w* \w and|strong="H3068"\w* \w Sidon|strong="H6721"\w* \w every|strong="H3605"\w* \w helper|strong="H5826"\w* \w who|strong="H3605"\w* \w remains|strong="H8300"\w*; +\q1 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w destroy|strong="H7703"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*, +\q2 \w the|strong="H3605"\w* \w remnant|strong="H7611"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* isle \w of|strong="H3068"\w* \w Caphtor|strong="H3731"\w*. +\q1 +\v 5 \w Baldness|strong="H7144"\w* \w has|strong="H7144"\w* come \w on|strong="H7144"\w* \w Gaza|strong="H5804"\w*; +\q2 Ashkelon \w is|strong="H6010"\w* brought \w to|strong="H5704"\w* nothing. +\q1 \w You|strong="H5704"\w* \w remnant|strong="H7611"\w* \w of|strong="H6010"\w* \w their|strong="H5704"\w* \w valley|strong="H6010"\w*, +\q2 \w how|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H5704"\w* \w you|strong="H5704"\w* \w cut|strong="H1413"\w* yourself? +\b +\q1 +\v 6 “‘\w You|strong="H5704"\w* \w sword|strong="H2719"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w how|strong="H5704"\w* \w long|strong="H5704"\w* \w will|strong="H3068"\w* \w it|strong="H5704"\w* \w be|strong="H3808"\w* \w before|strong="H5704"\w* \w you|strong="H5704"\w* \w are|strong="H3068"\w* \w quiet|strong="H8252"\w*? +\q2 \w Put|strong="H3068"\w* yourself back \w into|strong="H2719"\w* \w your|strong="H3068"\w* \w scabbard|strong="H8593"\w*; +\q2 \w rest|strong="H8252"\w*, \w and|strong="H3068"\w* \w be|strong="H3808"\w* \w still|strong="H1826"\w*.’ +\b +\q1 +\v 7 “How can \w you|strong="H6680"\w* \w be|strong="H3068"\w* \w quiet|strong="H8252"\w*, +\q2 since \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w given|strong="H6680"\w* \w you|strong="H6680"\w* \w a|strong="H3068"\w* \w command|strong="H6680"\w*? +\q1 \w Against|strong="H3068"\w* Ashkelon, \w and|strong="H3068"\w* \w against|strong="H3068"\w* \w the|strong="H3068"\w* \w seashore|strong="H3220"\w*, +\q2 \w there|strong="H8033"\w* \w he|strong="H8033"\w* \w has|strong="H3068"\w* \w appointed|strong="H6680"\w* \w it|strong="H8033"\w*.” +\c 48 +\p +\v 1 \w Of|strong="H3068"\w* \w Moab|strong="H4124"\w*. \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3588"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*: +\q1 “\w Woe|strong="H1945"\w* \w to|strong="H3478"\w* \w Nebo|strong="H5015"\w*! +\q2 \w For|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H3068"\w* \w laid|strong="H3478"\w* \w waste|strong="H7703"\w*. +\q1 \w Kiriathaim|strong="H7156"\w* \w is|strong="H3068"\w* disappointed. +\q2 \w It|strong="H3588"\w* \w is|strong="H3068"\w* \w taken|strong="H3920"\w*. +\q1 \w Misgab|strong="H4869"\w*\f + \fr 48:1 \ft or, The stronghold\f* \w is|strong="H3068"\w* \w put|strong="H3068"\w* \w to|strong="H3478"\w* shame +\q2 \w and|strong="H3478"\w* \w broken|strong="H2865"\w* \w down|strong="H2865"\w*. +\q1 +\v 2 \w The|strong="H5921"\w* \w praise|strong="H8416"\w* \w of|strong="H5921"\w* \w Moab|strong="H4124"\w* \w is|strong="H1571"\w* \w no|strong="H3772"\w* \w more|strong="H5750"\w*. +\q2 \w In|strong="H5921"\w* \w Heshbon|strong="H2809"\w* \w they|strong="H5921"\w* \w have|strong="H1571"\w* \w devised|strong="H2803"\w* \w evil|strong="H7451"\w* \w against|strong="H5921"\w* \w her|strong="H3772"\w*: +\q2 ‘\w Come|strong="H3212"\w*! \w Let|strong="H3212"\w*’s \w cut|strong="H3772"\w* \w her|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w being|strong="H5750"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w*.’ +\q1 \w You|strong="H5921"\w* \w also|strong="H1571"\w*, \w Madmen|strong="H4086"\w*, \w will|strong="H1471"\w* \w be|strong="H5750"\w* \w brought|strong="H3212"\w* \w to|strong="H3212"\w* \w silence|strong="H1826"\w*. +\q2 \w The|strong="H5921"\w* \w sword|strong="H2719"\w* \w will|strong="H1471"\w* \w pursue|strong="H3212"\w* \w you|strong="H5921"\w*. +\q1 +\v 3 \w The|strong="H6963"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w a|strong="H3068"\w* \w cry|strong="H6818"\w* \w from|strong="H6963"\w* \w Horonaim|strong="H2773"\w*, +\q2 \w desolation|strong="H7701"\w* \w and|strong="H1419"\w* \w great|strong="H1419"\w* \w destruction|strong="H7667"\w*! +\q1 +\v 4 \w Moab|strong="H4124"\w* \w is|strong="H4124"\w* \w destroyed|strong="H7665"\w*. +\q2 \w Her|strong="H7665"\w* \w little|strong="H6810"\w* \w ones|strong="H6810"\w* \w have|strong="H6810"\w* caused \w a|strong="H3068"\w* \w cry|strong="H2201"\w* \w to|strong="H8085"\w* \w be|strong="H2201"\w* \w heard|strong="H8085"\w*. +\q1 +\v 5 \w For|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H8085"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w by|strong="H5927"\w* \w the|strong="H8085"\w* \w ascent|strong="H4608"\w* \w of|strong="H4608"\w* \w Luhith|strong="H3872"\w* \w with|strong="H5927"\w* \w continual|strong="H1065"\w* \w weeping|strong="H1065"\w*. +\q2 \w For|strong="H3588"\w* \w at|strong="H5927"\w* \w the|strong="H8085"\w* \w descent|strong="H4174"\w* \w of|strong="H4608"\w* \w Horonaim|strong="H2773"\w* \w they|strong="H3588"\w* \w have|strong="H6862"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w distress|strong="H6862"\w* \w of|strong="H4608"\w* \w the|strong="H8085"\w* \w cry|strong="H6818"\w* \w of|strong="H4608"\w* \w destruction|strong="H7667"\w*. +\q1 +\v 6 \w Flee|strong="H5127"\w*! \w Save|strong="H4422"\w* \w your|strong="H1961"\w* \w lives|strong="H5315"\w*! +\q2 \w Be|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H1961"\w* \w juniper|strong="H6176"\w* \w bush|strong="H6176"\w* \w in|strong="H5315"\w* \w the|strong="H1961"\w* \w wilderness|strong="H4057"\w*. +\q1 +\v 7 \w For|strong="H3588"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1571"\w* trusted \w in|strong="H3162"\w* \w your|strong="H3588"\w* \w works|strong="H4639"\w* \w and|strong="H3548"\w* \w in|strong="H3162"\w* \w your|strong="H3588"\w* treasures, +\q2 \w you|strong="H3588"\w* \w also|strong="H1571"\w* \w will|strong="H1571"\w* \w be|strong="H1571"\w* \w taken|strong="H3920"\w*. +\q1 \w Chemosh|strong="H3645"\w* \w will|strong="H1571"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H3318"\w* \w captivity|strong="H1473"\w*, +\q2 \w his|strong="H3588"\w* \w priests|strong="H3548"\w* \w and|strong="H3548"\w* \w his|strong="H3588"\w* \w princes|strong="H8269"\w* \w together|strong="H3162"\w*. +\q1 +\v 8 \w The|strong="H3605"\w* \w destroyer|strong="H7703"\w* \w will|strong="H3068"\w* \w come|strong="H5892"\w* \w on|strong="H3068"\w* \w every|strong="H3605"\w* \w city|strong="H5892"\w*, +\q2 \w and|strong="H3068"\w* \w no|strong="H3808"\w* \w city|strong="H5892"\w* \w will|strong="H3068"\w* \w escape|strong="H4422"\w*; +\q1 \w the|strong="H3605"\w* \w valley|strong="H6010"\w* \w also|strong="H3068"\w* \w will|strong="H3068"\w* perish, +\q2 \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w plain|strong="H4334"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w destroyed|strong="H8045"\w*, \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* spoken. +\q1 +\v 9 \w Give|strong="H5414"\w* \w wings|strong="H6731"\w* \w to|strong="H3318"\w* \w Moab|strong="H4124"\w*, +\q2 \w that|strong="H3588"\w* \w she|strong="H3588"\w* \w may|strong="H1961"\w* fly \w and|strong="H5892"\w* \w get|strong="H3318"\w* herself \w away|strong="H3318"\w*: +\q1 \w and|strong="H5892"\w* \w her|strong="H5414"\w* \w cities|strong="H5892"\w* \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w desolation|strong="H8047"\w*, +\q2 \w without|strong="H3427"\w* \w anyone|strong="H3588"\w* \w to|strong="H3318"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w them|strong="H5414"\w*. +\b +\q1 +\v 10 “Cursed \w is|strong="H3068"\w* \w he|strong="H6213"\w* \w who|strong="H3068"\w* \w does|strong="H6213"\w* \w the|strong="H6213"\w* \w work|strong="H4399"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w negligently|strong="H7423"\w*; +\q2 \w and|strong="H3068"\w* cursed \w is|strong="H3068"\w* \w he|strong="H6213"\w* \w who|strong="H3068"\w* keeps \w back|strong="H4513"\w* \w his|strong="H3068"\w* \w sword|strong="H2719"\w* \w from|strong="H3068"\w* \w blood|strong="H1818"\w*. +\b +\q1 +\v 11 “\w Moab|strong="H4124"\w* \w has|strong="H4124"\w* \w been|strong="H8252"\w* \w at|strong="H5921"\w* \w ease|strong="H7599"\w* \w from|strong="H5921"\w* \w his|strong="H5921"\w* \w youth|strong="H5271"\w*, +\q2 \w and|strong="H1980"\w* \w he|strong="H1931"\w* \w has|strong="H4124"\w* \w settled|strong="H8252"\w* \w on|strong="H5921"\w* \w his|strong="H5921"\w* \w dregs|strong="H8105"\w*, +\q1 \w and|strong="H1980"\w* \w has|strong="H4124"\w* \w not|strong="H3808"\w* \w been|strong="H8252"\w* \w emptied|strong="H7324"\w* \w from|strong="H5921"\w* \w vessel|strong="H3627"\w* \w to|strong="H1980"\w* \w vessel|strong="H3627"\w*, +\q2 \w neither|strong="H3808"\w* \w has|strong="H4124"\w* \w he|strong="H1931"\w* \w gone|strong="H1980"\w* \w into|strong="H1980"\w* \w captivity|strong="H1473"\w*; +\q1 \w therefore|strong="H3651"\w* \w his|strong="H5921"\w* \w taste|strong="H2940"\w* \w remains|strong="H5975"\w* \w in|strong="H5921"\w* \w him|strong="H5921"\w*, +\q2 \w and|strong="H1980"\w* \w his|strong="H5921"\w* \w scent|strong="H7381"\w* \w is|strong="H1931"\w* \w not|strong="H3808"\w* \w changed|strong="H4171"\w*. +\q1 +\v 12 \w Therefore|strong="H3651"\w* \w behold|strong="H2009"\w*, \w the|strong="H5002"\w* \w days|strong="H3117"\w* \w come|strong="H7971"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w that|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w to|strong="H3068"\w* \w him|strong="H7971"\w* those \w who|strong="H3068"\w* pour \w off|strong="H7971"\w*, +\q1 \w and|strong="H3068"\w* \w they|strong="H3117"\w* \w will|strong="H3068"\w* pour \w him|strong="H7971"\w* \w off|strong="H7971"\w*; +\q2 \w and|strong="H3068"\w* \w they|strong="H3117"\w* \w will|strong="H3068"\w* \w empty|strong="H7324"\w* \w his|strong="H3068"\w* \w vessels|strong="H3627"\w*, +\q2 \w and|strong="H3068"\w* \w break|strong="H5310"\w* \w their|strong="H3068"\w* \w containers|strong="H3627"\w* \w in|strong="H3068"\w* \w pieces|strong="H5310"\w*. +\q1 +\v 13 \w Moab|strong="H4124"\w* \w will|strong="H3478"\w* \w be|strong="H3478"\w* ashamed \w of|strong="H1004"\w* \w Chemosh|strong="H3645"\w*, +\q2 \w as|strong="H1004"\w* \w the|strong="H1004"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w was|strong="H3478"\w* ashamed \w of|strong="H1004"\w* \w Bethel|strong="H1008"\w*, \w their|strong="H1008"\w* \w confidence|strong="H4009"\w*. +\b +\q1 +\v 14 “How do you say, ‘We \w are|strong="H1368"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w*, +\q2 \w and|strong="H2428"\w* \w valiant|strong="H2428"\w* \w men|strong="H1368"\w* \w for|strong="H2428"\w* the \w war|strong="H4421"\w*’? +\q1 +\v 15 \w Moab|strong="H4124"\w* \w is|strong="H3068"\w* \w laid|strong="H5927"\w* \w waste|strong="H7703"\w*, +\q2 \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w have|strong="H3068"\w* \w gone|strong="H5927"\w* \w up|strong="H5927"\w* \w into|strong="H3381"\w* \w his|strong="H3068"\w* \w cities|strong="H5892"\w*, +\q2 \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w chosen|strong="H4005"\w* \w young|strong="H4005"\w* \w men|strong="H8034"\w* \w have|strong="H3068"\w* \w gone|strong="H5927"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H5002"\w* \w slaughter|strong="H2874"\w*,” +\q2 \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w King|strong="H4428"\w*, \w whose|strong="H8034"\w* \w name|strong="H8034"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H4428"\w* \w Armies|strong="H6635"\w*. +\q1 +\v 16 “\w The|strong="H4116"\w* \w calamity|strong="H7451"\w* \w of|strong="H7451"\w* \w Moab|strong="H4124"\w* \w is|strong="H4124"\w* \w near|strong="H7138"\w* \w to|strong="H4116"\w* come, +\q2 \w and|strong="H4116"\w* his \w affliction|strong="H7451"\w* hurries \w fast|strong="H3966"\w*. +\q1 +\v 17 \w All|strong="H3605"\w* \w you|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H3045"\w* \w around|strong="H5439"\w* \w him|strong="H3605"\w*, \w bemoan|strong="H5110"\w* \w him|strong="H3605"\w*; +\q2 \w and|strong="H3045"\w* \w all|strong="H3605"\w* \w you|strong="H3605"\w* \w who|strong="H3605"\w* \w know|strong="H3045"\w* \w his|strong="H3605"\w* \w name|strong="H8034"\w*, say, +\q1 ‘\w How|strong="H3045"\w* \w the|strong="H3605"\w* \w strong|strong="H5797"\w* \w staff|strong="H4294"\w* \w is|strong="H8034"\w* \w broken|strong="H7665"\w*, +\q2 \w the|strong="H3605"\w* \w beautiful|strong="H8597"\w* \w rod|strong="H4294"\w*!’ +\b +\q1 +\v 18 “\w You|strong="H3588"\w* \w daughter|strong="H1323"\w* \w who|strong="H3427"\w* \w dwells|strong="H3427"\w* \w in|strong="H3427"\w* \w Dibon|strong="H1769"\w*, +\q2 \w come|strong="H5927"\w* \w down|strong="H3381"\w* \w from|strong="H3381"\w* \w your|strong="H3588"\w* \w glory|strong="H3519"\w*, +\q2 \w and|strong="H5927"\w* \w sit|strong="H3427"\w* \w in|strong="H3427"\w* \w thirst|strong="H6772"\w*; +\q1 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w destroyer|strong="H7703"\w* \w of|strong="H1323"\w* \w Moab|strong="H4124"\w* \w has|strong="H3588"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5927"\w* \w you|strong="H3588"\w*. +\q2 \w He|strong="H3588"\w* \w has|strong="H3588"\w* \w destroyed|strong="H7843"\w* \w your|strong="H3588"\w* \w strongholds|strong="H4013"\w*. +\q1 +\v 19 \w Inhabitant|strong="H3427"\w* \w of|strong="H3427"\w* \w Aroer|strong="H6177"\w*, \w stand|strong="H5975"\w* \w by|strong="H1870"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w and|strong="H1870"\w* \w watch|strong="H6822"\w*. +\q2 \w Ask|strong="H7592"\w* \w him|strong="H5975"\w* \w who|strong="H3427"\w* \w flees|strong="H5127"\w*, \w and|strong="H1870"\w* \w her|strong="H7592"\w* \w who|strong="H3427"\w* \w escapes|strong="H4422"\w*; +\q2 say, ‘\w What|strong="H4100"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w done|strong="H1961"\w*?’ +\q1 +\v 20 \w Moab|strong="H4124"\w* \w is|strong="H4124"\w* disappointed; +\q2 \w for|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H4124"\w* \w broken|strong="H2865"\w* \w down|strong="H2865"\w*. +\q1 \w Wail|strong="H3213"\w* \w and|strong="H2865"\w* \w cry|strong="H2199"\w*! +\q2 \w Tell|strong="H5046"\w* \w it|strong="H3588"\w* \w by|strong="H4124"\w* \w the|strong="H3588"\w* Arnon, \w that|strong="H3588"\w* \w Moab|strong="H4124"\w* \w is|strong="H4124"\w* laid \w waste|strong="H7703"\w*. +\q1 +\v 21 \w Judgment|strong="H4941"\w* \w has|strong="H4941"\w* \w come|strong="H4941"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w plain|strong="H4334"\w* country— +\q2 \w on|strong="H5921"\w* \w Holon|strong="H2473"\w*, \w on|strong="H5921"\w* \w Jahzah|strong="H3096"\w*, \w on|strong="H5921"\w* \w Mephaath|strong="H4158"\w*, +\q2 +\v 22 \w on|strong="H5921"\w* \w Dibon|strong="H1769"\w*, \w on|strong="H5921"\w* \w Nebo|strong="H5015"\w*, \w on|strong="H5921"\w* Beth Diblathaim, +\q2 +\v 23 \w on|strong="H5921"\w* \w Kiriathaim|strong="H7156"\w*, \w on|strong="H5921"\w* Beth Gamul, \w on|strong="H5921"\w* Beth Meon, +\q2 +\v 24 \w on|strong="H5921"\w* \w Kerioth|strong="H7152"\w*, \w on|strong="H5921"\w* \w Bozrah|strong="H1224"\w*, +\q2 \w and|strong="H5892"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w the|strong="H3605"\w* land \w of|strong="H5892"\w* \w Moab|strong="H4124"\w*, \w far|strong="H7350"\w* \w or|strong="H7350"\w* \w near|strong="H7138"\w*. +\q1 +\v 25 \w The|strong="H5002"\w* \w horn|strong="H7161"\w* \w of|strong="H3068"\w* \w Moab|strong="H4124"\w* \w is|strong="H3068"\w* \w cut|strong="H1438"\w* \w off|strong="H1438"\w*, +\q2 \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w arm|strong="H2220"\w* \w is|strong="H3068"\w* \w broken|strong="H7665"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\b +\q1 +\v 26 “\w Make|strong="H1431"\w* \w him|strong="H5921"\w* \w drunk|strong="H7937"\w*, +\q2 \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w magnified|strong="H1431"\w* \w himself|strong="H1931"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*. +\q1 \w Moab|strong="H4124"\w* \w will|strong="H3068"\w* \w wallow|strong="H5606"\w* \w in|strong="H5921"\w* \w his|strong="H3068"\w* \w vomit|strong="H6892"\w*, +\q2 \w and|strong="H3068"\w* \w he|strong="H1931"\w* \w also|strong="H1571"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w in|strong="H5921"\w* \w derision|strong="H7814"\w*. +\q1 +\v 27 \w For|strong="H3588"\w* wasn’t \w Israel|strong="H3478"\w* \w a|strong="H3068"\w* \w derision|strong="H7814"\w* \w to|strong="H3478"\w* \w you|strong="H3588"\w*? +\q2 \w Was|strong="H1961"\w* \w he|strong="H3588"\w* \w found|strong="H4672"\w* \w among|strong="H4672"\w* \w thieves|strong="H1590"\w*? +\q1 \w For|strong="H3588"\w* \w as|strong="H1697"\w* \w often|strong="H1767"\w* \w as|strong="H1697"\w* \w you|strong="H3588"\w* \w speak|strong="H1697"\w* \w of|strong="H1697"\w* \w him|strong="H4672"\w*, +\q2 \w you|strong="H3588"\w* \w shake|strong="H5110"\w* \w your|strong="H3588"\w* head. +\q1 +\v 28 \w You|strong="H5800"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Moab|strong="H4124"\w*, \w leave|strong="H5800"\w* \w the|strong="H5676"\w* \w cities|strong="H5892"\w*, \w and|strong="H5892"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5676"\w* \w rock|strong="H5553"\w*. +\q2 \w Be|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H5676"\w* \w dove|strong="H3123"\w* \w that|strong="H5892"\w* \w makes|strong="H3427"\w* \w her|strong="H5800"\w* \w nest|strong="H7077"\w* \w over|strong="H3427"\w* \w the|strong="H5676"\w* \w mouth|strong="H6310"\w* \w of|strong="H3427"\w* \w the|strong="H5676"\w* abyss. +\b +\q1 +\v 29 “\w We|strong="H8085"\w* \w have|strong="H1343"\w* \w heard|strong="H8085"\w* \w of|strong="H3820"\w* \w the|strong="H8085"\w* \w pride|strong="H1347"\w* \w of|strong="H3820"\w* \w Moab|strong="H4124"\w*. +\q2 \w He|strong="H3820"\w* \w is|strong="H3820"\w* \w very|strong="H3966"\w* \w proud|strong="H1343"\w* \w in|strong="H8085"\w* \w his|strong="H8085"\w* \w loftiness|strong="H7312"\w*, \w his|strong="H8085"\w* \w pride|strong="H1347"\w*, +\q2 \w his|strong="H8085"\w* \w arrogance|strong="H1346"\w*, \w and|strong="H8085"\w* \w the|strong="H8085"\w* \w arrogance|strong="H1346"\w* \w of|strong="H3820"\w* \w his|strong="H8085"\w* \w heart|strong="H3820"\w*. +\q1 +\v 30 \w I|strong="H3651"\w* \w know|strong="H3045"\w* \w his|strong="H3068"\w* \w wrath|strong="H5678"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w that|strong="H3045"\w* \w it|strong="H6213"\w* \w is|strong="H3068"\w* \w nothing|strong="H3808"\w*; +\q2 \w his|strong="H3068"\w* boastings \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w nothing|strong="H3808"\w*. +\q1 +\v 31 \w Therefore|strong="H3651"\w* \w I|strong="H5921"\w* \w will|strong="H4124"\w* \w wail|strong="H3213"\w* \w for|strong="H5921"\w* \w Moab|strong="H4124"\w*. +\q2 \w Yes|strong="H3651"\w*, \w I|strong="H5921"\w* \w will|strong="H4124"\w* \w cry|strong="H2199"\w* \w out|strong="H2199"\w* \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w Moab|strong="H4124"\w*. +\q2 \w They|strong="H3651"\w* \w will|strong="H4124"\w* \w mourn|strong="H1897"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H5921"\w* Kir Heres. +\q1 +\v 32 \w With|strong="H5921"\w* \w more|strong="H5704"\w* \w than|strong="H5921"\w* \w the|strong="H5921"\w* \w weeping|strong="H1065"\w* \w of|strong="H5921"\w* \w Jazer|strong="H3270"\w* +\q2 \w I|strong="H5704"\w* \w will|strong="H5704"\w* \w weep|strong="H1058"\w* \w for|strong="H5704"\w* \w you|strong="H5921"\w*, \w vine|strong="H1612"\w* \w of|strong="H5921"\w* \w Sibmah|strong="H7643"\w*. +\q1 \w Your|strong="H5921"\w* \w branches|strong="H5189"\w* \w passed|strong="H5674"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*. +\q2 \w They|strong="H5921"\w* \w reached|strong="H5060"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w of|strong="H5921"\w* \w Jazer|strong="H3270"\w*. +\q1 \w The|strong="H5921"\w* \w destroyer|strong="H7703"\w* \w has|strong="H3220"\w* \w fallen|strong="H5307"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w summer|strong="H7019"\w* \w fruits|strong="H7019"\w* +\q2 \w and|strong="H3220"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w vintage|strong="H1210"\w*. +\q1 +\v 33 \w Gladness|strong="H8057"\w* \w and|strong="H8057"\w* \w joy|strong="H8057"\w* \w is|strong="H4124"\w* taken \w away|strong="H7673"\w* \w from|strong="H7673"\w* \w the|strong="H3808"\w* \w fruitful|strong="H3759"\w* \w field|strong="H3759"\w* +\q2 \w and|strong="H8057"\w* \w from|strong="H7673"\w* \w the|strong="H3808"\w* \w land|strong="H3759"\w* \w of|strong="H3196"\w* \w Moab|strong="H4124"\w*. +\q1 \w I|strong="H3808"\w* \w have|strong="H3808"\w* caused \w wine|strong="H3196"\w* \w to|strong="H3808"\w* \w cease|strong="H7673"\w* \w from|strong="H7673"\w* \w the|strong="H3808"\w* \w wine|strong="H3196"\w* \w presses|strong="H3342"\w*. +\q2 \w No|strong="H3808"\w* \w one|strong="H3808"\w* \w will|strong="H3808"\w* \w tread|strong="H1869"\w* \w with|strong="H1869"\w* \w shouting|strong="H1959"\w*. +\q2 \w The|strong="H3808"\w* \w shouting|strong="H1959"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w no|strong="H3808"\w* \w shouting|strong="H1959"\w*. +\q1 +\v 34 \w From|strong="H5704"\w* \w the|strong="H3588"\w* \w cry|strong="H2201"\w* \w of|strong="H6963"\w* \w Heshbon|strong="H2809"\w* \w even|strong="H1571"\w* \w to|strong="H5704"\w* Elealeh, +\q2 \w even|strong="H1571"\w* \w to|strong="H5704"\w* \w Jahaz|strong="H3096"\w* \w they|strong="H3588"\w* \w have|strong="H1961"\w* \w uttered|strong="H5414"\w* \w their|strong="H5414"\w* \w voice|strong="H6963"\w*, +\q2 \w from|strong="H5704"\w* \w Zoar|strong="H6820"\w* \w even|strong="H1571"\w* \w to|strong="H5704"\w* \w Horonaim|strong="H2773"\w*, \w to|strong="H5704"\w* Eglath Shelishiyah; +\q2 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w waters|strong="H4325"\w* \w of|strong="H6963"\w* \w Nimrim|strong="H5249"\w* \w will|strong="H1961"\w* \w also|strong="H1571"\w* \w become|strong="H1961"\w* \w desolate|strong="H4923"\w*. +\q1 +\v 35 Moreover \w I|strong="H3068"\w* \w will|strong="H3068"\w* cause \w to|strong="H3068"\w* \w cease|strong="H7673"\w* \w in|strong="H3068"\w* \w Moab|strong="H4124"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w him|strong="H5927"\w* \w who|strong="H3068"\w* \w offers|strong="H5927"\w* \w in|strong="H3068"\w* \w the|strong="H5002"\w* \w high|strong="H1116"\w* \w place|strong="H1116"\w*, +\q2 \w and|strong="H3068"\w* \w him|strong="H5927"\w* \w who|strong="H3068"\w* \w burns|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* gods. +\q1 +\v 36 \w Therefore|strong="H3651"\w* \w my|strong="H5921"\w* \w heart|strong="H3820"\w* sounds \w for|strong="H5921"\w* \w Moab|strong="H4124"\w* \w like|strong="H3651"\w* \w flutes|strong="H2485"\w*, +\q2 \w and|strong="H6213"\w* \w my|strong="H5921"\w* \w heart|strong="H3820"\w* sounds \w like|strong="H3651"\w* \w flutes|strong="H2485"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w men|strong="H6213"\w* \w of|strong="H5921"\w* Kir Heres. +\q2 \w Therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w abundance|strong="H3502"\w* \w that|strong="H3651"\w* \w he|strong="H3651"\w* \w has|strong="H3820"\w* \w gotten|strong="H6213"\w* \w has|strong="H3820"\w* perished. +\q1 +\v 37 \w For|strong="H3588"\w* \w every|strong="H3605"\w* \w head|strong="H7218"\w* \w is|strong="H3027"\w* \w bald|strong="H7144"\w*, +\q2 \w and|strong="H3027"\w* \w every|strong="H3605"\w* \w beard|strong="H2206"\w* \w clipped|strong="H1639"\w*. +\q1 \w There|strong="H3605"\w* \w are|strong="H3027"\w* \w cuttings|strong="H1417"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w hands|strong="H3027"\w*, +\q2 \w and|strong="H3027"\w* \w sackcloth|strong="H8242"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w waist|strong="H4975"\w*. +\q1 +\v 38 \w On|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w housetops|strong="H1406"\w* \w of|strong="H3068"\w* \w Moab|strong="H4124"\w*, +\q2 \w and|strong="H3068"\w* \w in|strong="H5921"\w* \w its|strong="H3605"\w* \w streets|strong="H7339"\w*, \w there|strong="H3605"\w* \w is|strong="H3068"\w* \w lamentation|strong="H4553"\w* \w everywhere|strong="H3605"\w*; +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w broken|strong="H7665"\w* \w Moab|strong="H4124"\w* \w like|strong="H4124"\w* \w a|strong="H3068"\w* \w vessel|strong="H3627"\w* \w in|strong="H5921"\w* \w which|strong="H3068"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w delights|strong="H2656"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 39 “How \w it|strong="H5439"\w* \w is|strong="H3605"\w* \w broken|strong="H2865"\w* \w down|strong="H2865"\w*! +\q2 How \w they|strong="H3605"\w* \w wail|strong="H3213"\w*! +\q1 How \w Moab|strong="H4124"\w* \w has|strong="H1961"\w* \w turned|strong="H6437"\w* \w the|strong="H3605"\w* \w back|strong="H6437"\w* \w with|strong="H3605"\w* shame! +\q2 \w So|strong="H1961"\w* \w will|strong="H1961"\w* \w Moab|strong="H4124"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w derision|strong="H7814"\w* +\q2 \w and|strong="H6437"\w* \w a|strong="H3068"\w* \w terror|strong="H4288"\w* \w to|strong="H1961"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H1961"\w* \w around|strong="H5439"\w* \w him|strong="H3605"\w*.” +\q1 +\v 40 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Behold|strong="H2009"\w*, \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w fly|strong="H1675"\w* \w as|strong="H3068"\w* \w an|strong="H3588"\w* \w eagle|strong="H5404"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w spread|strong="H6566"\w* \w out|strong="H6566"\w* \w his|strong="H3068"\w* \w wings|strong="H3671"\w* \w against|strong="H3068"\w* \w Moab|strong="H4124"\w*. +\q1 +\v 41 \w Kerioth|strong="H7152"\w* \w is|strong="H1931"\w* \w taken|strong="H3920"\w*, +\q2 \w and|strong="H3117"\w* \w the|strong="H3117"\w* \w strongholds|strong="H4679"\w* \w are|strong="H3117"\w* \w seized|strong="H8610"\w*. +\q1 \w The|strong="H3117"\w* \w heart|strong="H3820"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H3117"\w* \w Moab|strong="H4124"\w* \w at|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* +\q2 \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H3117"\w* \w the|strong="H3117"\w* \w heart|strong="H3820"\w* \w of|strong="H3117"\w* \w a|strong="H3068"\w* woman \w in|strong="H3117"\w* \w her|strong="H1931"\w* \w pangs|strong="H6887"\w*. +\q1 +\v 42 \w Moab|strong="H4124"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w destroyed|strong="H8045"\w* \w from|strong="H5921"\w* \w being|strong="H5971"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w*, +\q2 \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w magnified|strong="H1431"\w* \w himself|strong="H1431"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 43 \w Terror|strong="H6343"\w*, \w the|strong="H5002"\w* \w pit|strong="H6354"\w*, \w and|strong="H3068"\w* \w the|strong="H5002"\w* \w snare|strong="H6341"\w* \w are|strong="H3068"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*, +\q2 \w inhabitant|strong="H3427"\w* \w of|strong="H3068"\w* \w Moab|strong="H4124"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 44 “\w He|strong="H3588"\w* \w who|strong="H3068"\w* flees \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w terror|strong="H6343"\w* \w will|strong="H3068"\w* \w fall|strong="H5307"\w* \w into|strong="H5927"\w* \w the|strong="H6440"\w* \w pit|strong="H6354"\w*; +\q2 \w and|strong="H3068"\w* \w he|strong="H3588"\w* \w who|strong="H3068"\w* gets \w up|strong="H5927"\w* \w out|strong="H4480"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w pit|strong="H6354"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w taken|strong="H3920"\w* \w in|strong="H8141"\w* \w the|strong="H6440"\w* \w snare|strong="H6341"\w*, +\q1 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w bring|strong="H5927"\w* \w on|strong="H5307"\w* \w him|strong="H6440"\w*, \w even|strong="H3588"\w* \w on|strong="H5307"\w* \w Moab|strong="H4124"\w*, +\q2 \w the|strong="H6440"\w* \w year|strong="H8141"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w visitation|strong="H6486"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\b +\q1 +\v 45 “\w Those|strong="H1121"\w* \w who|strong="H1121"\w* \w fled|strong="H5127"\w* \w stand|strong="H5975"\w* \w without|strong="H3588"\w* \w strength|strong="H3581"\w* under \w the|strong="H3588"\w* \w shadow|strong="H6738"\w* \w of|strong="H1121"\w* \w Heshbon|strong="H2809"\w*; +\q2 \w for|strong="H3588"\w* \w a|strong="H3068"\w* fire \w has|strong="H3588"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1121"\w* \w Heshbon|strong="H2809"\w*, +\q2 \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w flame|strong="H3852"\w* \w from|strong="H3318"\w* \w the|strong="H3588"\w* middle \w of|strong="H1121"\w* \w Sihon|strong="H5511"\w*, +\q1 \w and|strong="H1121"\w* \w has|strong="H3588"\w* devoured \w the|strong="H3588"\w* \w corner|strong="H6285"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w*, +\q2 \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w crown|strong="H6936"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w head|strong="H6936"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w tumultuous|strong="H7588"\w* \w ones|strong="H1121"\w*. +\q1 +\v 46 Woe \w to|strong="H1121"\w* \w you|strong="H3588"\w*, \w O|strong="H3068"\w* \w Moab|strong="H4124"\w*! +\q2 \w The|strong="H3588"\w* \w people|strong="H5971"\w* \w of|strong="H1121"\w* \w Chemosh|strong="H3645"\w* \w are|strong="H5971"\w* undone; +\q1 \w for|strong="H3588"\w* \w your|strong="H3947"\w* \w sons|strong="H1121"\w* \w are|strong="H5971"\w* \w taken|strong="H3947"\w* \w away|strong="H3947"\w* \w captive|strong="H7628"\w*, +\q2 \w and|strong="H1121"\w* \w your|strong="H3947"\w* \w daughters|strong="H1323"\w* \w into|strong="H1323"\w* \w captivity|strong="H7628"\w*. +\b +\q1 +\v 47 “\w Yet|strong="H5704"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w reverse|strong="H7725"\w* \w the|strong="H5002"\w* \w captivity|strong="H7622"\w* \w of|strong="H3068"\w* \w Moab|strong="H4124"\w* \w in|strong="H3068"\w* \w the|strong="H5002"\w* latter \w days|strong="H3117"\w*,” +\q2 \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\p \w Thus|strong="H2008"\w* \w far|strong="H5704"\w* \w is|strong="H3068"\w* \w the|strong="H5002"\w* \w judgment|strong="H4941"\w* \w of|strong="H3068"\w* \w Moab|strong="H4124"\w*. +\c 49 +\p +\v 1 \w Of|strong="H1121"\w* \w the|strong="H3541"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*. \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w Has|strong="H3068"\w* \w Israel|strong="H3478"\w* \w no|strong="H3478"\w* \w sons|strong="H1121"\w*? +\q2 \w Has|strong="H3068"\w* \w he|strong="H3068"\w* \w no|strong="H3478"\w* \w heir|strong="H3423"\w*? +\q1 \w Why|strong="H4069"\w* \w then|strong="H4428"\w* \w does|strong="H3068"\w* Malcam \w possess|strong="H3423"\w* \w Gad|strong="H1410"\w*, +\q2 \w and|strong="H1121"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w its|strong="H5892"\w* \w cities|strong="H5892"\w*? +\q1 +\v 2 \w Therefore|strong="H3651"\w* \w behold|strong="H2009"\w*, \w the|strong="H5002"\w* \w days|strong="H3117"\w* \w come|strong="H1961"\w*,” +\q2 \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q1 “\w that|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w cause|strong="H3651"\w* \w an|strong="H1961"\w* \w alarm|strong="H8643"\w* \w of|strong="H1121"\w* \w war|strong="H4421"\w* \w to|strong="H3478"\w* \w be|strong="H1961"\w* \w heard|strong="H8085"\w* \w against|strong="H4421"\w* \w Rabbah|strong="H7237"\w* \w of|strong="H1121"\w* \w the|strong="H5002"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, +\q2 \w and|strong="H1121"\w* \w it|strong="H3651"\w* \w will|strong="H3068"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w desolate|strong="H8077"\w* \w heap|strong="H8510"\w*, +\q2 \w and|strong="H1121"\w* \w her|strong="H3423"\w* \w daughters|strong="H1323"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w burned|strong="H3341"\w* \w with|strong="H3068"\w* \w fire|strong="H3341"\w*; +\q1 \w then|strong="H1961"\w* \w Israel|strong="H3478"\w* \w will|strong="H3068"\w* \w possess|strong="H3423"\w* \w those|strong="H8085"\w* \w who|strong="H3068"\w* \w possessed|strong="H3423"\w* \w him|strong="H8085"\w*,” +\q2 \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 3 “\w Wail|strong="H3213"\w*, \w Heshbon|strong="H2809"\w*, \w for|strong="H3588"\w* \w Ai|strong="H5857"\w* \w is|strong="H4428"\w* laid \w waste|strong="H7703"\w*! +\q2 \w Cry|strong="H6817"\w*, \w you|strong="H3588"\w* \w daughters|strong="H1323"\w* \w of|strong="H4428"\w* \w Rabbah|strong="H7237"\w*! +\q1 Clothe yourself \w in|strong="H4428"\w* \w sackcloth|strong="H8242"\w*. +\q2 \w Lament|strong="H5594"\w*, \w and|strong="H4428"\w* \w run|strong="H3212"\w* \w back|strong="H7751"\w* \w and|strong="H4428"\w* \w forth|strong="H7751"\w* among \w the|strong="H3588"\w* fences; +\q1 \w for|strong="H3588"\w* Malcam \w will|strong="H4428"\w* \w go|strong="H3212"\w* \w into|strong="H3212"\w* \w captivity|strong="H1473"\w*, +\q2 \w his|strong="H3588"\w* \w priests|strong="H3548"\w* \w and|strong="H4428"\w* \w his|strong="H3588"\w* \w princes|strong="H8269"\w* \w together|strong="H3162"\w*. +\q1 +\v 4 \w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H4100"\w* \w boast|strong="H1984"\w* \w in|strong="H1323"\w* \w the|strong="H1984"\w* \w valleys|strong="H6010"\w*, +\q2 \w your|strong="H1984"\w* \w flowing|strong="H2100"\w* \w valley|strong="H6010"\w*, \w backsliding|strong="H7728"\w* \w daughter|strong="H1323"\w*? +\q1 \w You|strong="H4100"\w* trusted \w in|strong="H1323"\w* \w her|strong="H1984"\w* treasures, +\q2 saying, ‘\w Who|strong="H4310"\w* \w will|strong="H4310"\w* come \w to|strong="H1323"\w* \w me|strong="H1984"\w*?’ +\q1 +\v 5 \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H6635"\w* \w bring|strong="H5080"\w* \w a|strong="H3068"\w* \w terror|strong="H6343"\w* \w on|strong="H5921"\w* \w you|strong="H6440"\w*,” +\q2 \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H6440"\w* \w Armies|strong="H6635"\w*, +\q1 “\w from|strong="H6440"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H6440"\w* \w around|strong="H5439"\w* \w you|strong="H6440"\w*. +\q2 \w All|strong="H3605"\w* \w of|strong="H6440"\w* \w you|strong="H6440"\w* \w will|strong="H6635"\w* \w be|strong="H6440"\w* \w driven|strong="H5080"\w* \w completely|strong="H3605"\w* \w out|strong="H5080"\w*, +\q2 \w and|strong="H6440"\w* \w there|strong="H3605"\w* \w will|strong="H6635"\w* \w be|strong="H6440"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w to|strong="H5921"\w* \w gather|strong="H6908"\w* \w together|strong="H6908"\w* \w the|strong="H3605"\w* \w fugitives|strong="H5074"\w*. +\b +\q1 +\v 6 “\w But|strong="H3651"\w* afterward \w I|strong="H3651"\w* \w will|strong="H3068"\w* \w reverse|strong="H7725"\w* \w the|strong="H5002"\w* \w captivity|strong="H7622"\w* \w of|strong="H1121"\w* \w the|strong="H5002"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*,” +\q2 \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\b +\p +\v 7 \w Of|strong="H3068"\w* Edom, \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: +\q1 “\w Is|strong="H3068"\w* \w wisdom|strong="H2451"\w* no \w more|strong="H5750"\w* \w in|strong="H3068"\w* \w Teman|strong="H8487"\w*? +\q2 \w Has|strong="H3068"\w* \w counsel|strong="H6098"\w* perished \w from|strong="H3068"\w* \w the|strong="H3541"\w* prudent? +\q2 \w Has|strong="H3068"\w* \w their|strong="H3068"\w* \w wisdom|strong="H2451"\w* \w vanished|strong="H5628"\w*? +\q1 +\v 8 \w Flee|strong="H5127"\w*! \w Turn|strong="H6437"\w* \w back|strong="H6437"\w*! +\q2 \w Dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w depths|strong="H6009"\w*, \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Dedan|strong="H1719"\w*; +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3588"\w* \w bring|strong="H6485"\w* \w the|strong="H5921"\w* calamity \w of|strong="H3427"\w* \w Esau|strong="H6215"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w* \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w visit|strong="H6485"\w* \w him|strong="H5921"\w*. +\q1 +\v 9 If grape \w gatherers|strong="H1219"\w* \w came|strong="H7843"\w* \w to|strong="H3808"\w* \w you|strong="H3808"\w*, +\q2 would \w they|strong="H3808"\w* \w not|strong="H3808"\w* \w leave|strong="H7604"\w* \w some|strong="H5955"\w* \w gleaning|strong="H5955"\w* \w grapes|strong="H5955"\w*? +\q1 If \w thieves|strong="H1590"\w* \w came|strong="H7843"\w* \w by|strong="H3915"\w* \w night|strong="H3915"\w*, +\q2 wouldn’t \w they|strong="H3808"\w* steal until \w they|strong="H3808"\w* \w had|strong="H1767"\w* \w enough|strong="H1767"\w*? +\q1 +\v 10 \w But|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3588"\w* \w made|strong="H1540"\w* \w Esau|strong="H6215"\w* \w bare|strong="H2834"\w*, +\q2 \w I|strong="H3588"\w* \w have|strong="H3588"\w* \w uncovered|strong="H1540"\w* \w his|strong="H1540"\w* \w secret|strong="H4565"\w* \w places|strong="H4565"\w*, +\q2 \w and|strong="H2233"\w* \w he|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w hide|strong="H2247"\w* \w himself|strong="H1540"\w*. +\q1 \w His|strong="H1540"\w* \w offspring|strong="H2233"\w* \w is|strong="H7703"\w* \w destroyed|strong="H7703"\w*, +\q2 \w with|strong="H1540"\w* \w his|strong="H1540"\w* brothers \w and|strong="H2233"\w* \w his|strong="H1540"\w* \w neighbors|strong="H7934"\w*; +\q2 \w and|strong="H2233"\w* \w he|strong="H3588"\w* \w is|strong="H7703"\w* \w no|strong="H3808"\w* \w more|strong="H3808"\w*. +\q1 +\v 11 \w Leave|strong="H5800"\w* \w your|strong="H5921"\w* \w fatherless|strong="H3490"\w* \w children|strong="H3490"\w*. +\q2 \w I|strong="H5921"\w* \w will|strong="H5800"\w* \w preserve|strong="H2421"\w* \w them|strong="H5921"\w* \w alive|strong="H2421"\w*. +\q2 \w Let|strong="H5800"\w* \w your|strong="H5921"\w* widows trust \w in|strong="H5921"\w* \w me|strong="H5921"\w*.” +\p +\v 12 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Behold|strong="H2009"\w*, \w they|strong="H3588"\w* \w to|strong="H3068"\w* \w whom|strong="H3588"\w* \w it|strong="H1931"\w* didn’t pertain \w to|strong="H3068"\w* \w drink|strong="H8354"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w cup|strong="H3563"\w* \w will|strong="H3068"\w* \w certainly|strong="H3588"\w* \w drink|strong="H8354"\w*; \w and|strong="H3068"\w* \w are|strong="H3068"\w* \w you|strong="H3588"\w* \w he|strong="H1931"\w* \w who|strong="H1931"\w* \w will|strong="H3068"\w* \w altogether|strong="H5352"\w* \w go|strong="H5352"\w* \w unpunished|strong="H5352"\w*? \w You|strong="H3588"\w* won’t \w go|strong="H5352"\w* \w unpunished|strong="H5352"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w surely|strong="H3588"\w* \w drink|strong="H8354"\w*. +\v 13 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w sworn|strong="H7650"\w* \w by|strong="H7650"\w* myself,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w that|strong="H3588"\w* \w Bozrah|strong="H1224"\w* \w will|strong="H3068"\w* \w become|strong="H1961"\w* \w an|strong="H1961"\w* \w astonishment|strong="H8047"\w*, \w a|strong="H3068"\w* \w reproach|strong="H2781"\w*, \w a|strong="H3068"\w* \w waste|strong="H2723"\w*, \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w curse|strong="H7045"\w*. \w All|strong="H3605"\w* \w its|strong="H3605"\w* \w cities|strong="H5892"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w perpetual|strong="H5769"\w* \w wastes|strong="H2723"\w*.” +\q1 +\v 14 \w I|strong="H5921"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w news|strong="H8052"\w* \w from|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H6965"\w* \w an|strong="H7971"\w* \w ambassador|strong="H6735"\w* \w is|strong="H3068"\w* \w sent|strong="H7971"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*, +\q1 saying, “\w Gather|strong="H6908"\w* \w yourselves|strong="H3068"\w* \w together|strong="H6908"\w*! +\q2 \w Come|strong="H6965"\w* \w against|strong="H5921"\w* \w her|strong="H7971"\w*! +\q2 \w Rise|strong="H6965"\w* \w up|strong="H6965"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w battle|strong="H4421"\w*!” +\b +\q1 +\v 15 “\w For|strong="H3588"\w*, \w behold|strong="H2009"\w*, \w I|strong="H3588"\w* \w have|strong="H1471"\w* \w made|strong="H5414"\w* \w you|strong="H5414"\w* \w small|strong="H6996"\w* among \w the|strong="H3588"\w* \w nations|strong="H1471"\w*, +\q2 \w and|strong="H1471"\w* despised among men. +\q1 +\v 16 \w As|strong="H3068"\w* \w for|strong="H3588"\w* \w your|strong="H3068"\w* \w terror|strong="H8606"\w*, +\q2 \w the|strong="H5002"\w* \w pride|strong="H2087"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w heart|strong="H3820"\w* \w has|strong="H3068"\w* \w deceived|strong="H5377"\w* \w you|strong="H3588"\w*, +\q1 \w O|strong="H3068"\w* \w you|strong="H3588"\w* \w who|strong="H3068"\w* \w dwell|strong="H7931"\w* \w in|strong="H3068"\w* \w the|strong="H5002"\w* \w clefts|strong="H2288"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* \w rock|strong="H5553"\w*, +\q2 \w who|strong="H3068"\w* \w hold|strong="H8610"\w* \w the|strong="H5002"\w* \w height|strong="H4791"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* \w hill|strong="H1389"\w*, +\q1 \w though|strong="H3588"\w* \w you|strong="H3588"\w* \w should|strong="H3068"\w* \w make|strong="H3381"\w* \w your|strong="H3068"\w* \w nest|strong="H7064"\w* \w as|strong="H3068"\w* \w high|strong="H4791"\w* \w as|strong="H3068"\w* \w the|strong="H5002"\w* \w eagle|strong="H5404"\w*, +\q2 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w bring|strong="H3381"\w* \w you|strong="H3588"\w* \w down|strong="H3381"\w* \w from|strong="H3381"\w* \w there|strong="H8033"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 17 “Edom \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w an|strong="H1961"\w* \w astonishment|strong="H8047"\w*. +\q2 \w Everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w passes|strong="H5674"\w* \w by|strong="H5921"\w* \w it|strong="H5921"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w astonished|strong="H8074"\w*, +\q2 \w and|strong="H5674"\w* \w will|strong="H1961"\w* \w hiss|strong="H8319"\w* \w at|strong="H5921"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w plagues|strong="H4347"\w*. +\q1 +\v 18 \w As|strong="H3068"\w* \w in|strong="H3427"\w* \w the|strong="H3068"\w* \w overthrow|strong="H4114"\w* \w of|strong="H1121"\w* \w Sodom|strong="H5467"\w* \w and|strong="H1121"\w* \w Gomorrah|strong="H6017"\w* \w and|strong="H1121"\w* \w its|strong="H3808"\w* \w neighbor|strong="H7934"\w* cities,” says \w Yahweh|strong="H3068"\w*, +\q2 “\w no|strong="H3808"\w* \w man|strong="H1121"\w* \w will|strong="H3068"\w* \w dwell|strong="H3427"\w* \w there|strong="H8033"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H3068"\w* \w any|strong="H3808"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w* \w live|strong="H3427"\w* \w therein|strong="H8033"\w*. +\b +\q1 +\v 19 “\w Behold|strong="H2009"\w*, \w he|strong="H3588"\w* \w will|strong="H4310"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w like|strong="H3644"\w* \w a|strong="H3068"\w* lion \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w pride|strong="H1347"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w Jordan|strong="H3383"\w* \w against|strong="H5921"\w* \w the|strong="H6440"\w* strong \w habitation|strong="H5116"\w*; +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H4310"\w* \w suddenly|strong="H2009"\w* \w make|strong="H6485"\w* \w them|strong="H5921"\w* \w run|strong="H7323"\w* \w away|strong="H5927"\w* \w from|strong="H6440"\w* \w it|strong="H5921"\w*, +\q1 \w and|strong="H6440"\w* \w whoever|strong="H4310"\w* \w is|strong="H2088"\w* chosen, +\q2 \w I|strong="H3588"\w* \w will|strong="H4310"\w* \w appoint|strong="H6485"\w* \w him|strong="H6440"\w* \w over|strong="H5921"\w* \w it|strong="H5921"\w*. +\q1 \w For|strong="H3588"\w* \w who|strong="H4310"\w* \w is|strong="H2088"\w* \w like|strong="H3644"\w* \w me|strong="H6440"\w*? +\q2 \w Who|strong="H4310"\w* \w will|strong="H4310"\w* \w appoint|strong="H6485"\w* \w me|strong="H6440"\w* \w a|strong="H3068"\w* \w time|strong="H3259"\w*? +\q2 \w Who|strong="H4310"\w* \w is|strong="H2088"\w* \w the|strong="H6440"\w* \w shepherd|strong="H7462"\w* \w who|strong="H4310"\w* \w will|strong="H4310"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*?” +\q1 +\v 20 \w Therefore|strong="H3651"\w* \w hear|strong="H8085"\w* \w the|strong="H5921"\w* \w counsel|strong="H6098"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w that|strong="H8085"\w* \w he|strong="H3651"\w* \w has|strong="H3068"\w* \w taken|strong="H3427"\w* \w against|strong="H5921"\w* Edom, +\q2 \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w purposes|strong="H4284"\w* \w that|strong="H8085"\w* \w he|strong="H3651"\w* \w has|strong="H3068"\w* \w purposed|strong="H2803"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w Teman|strong="H8487"\w*: +\q1 \w Surely|strong="H8085"\w* \w they|strong="H3651"\w* \w will|strong="H3068"\w* \w drag|strong="H5498"\w* \w them|strong="H5921"\w* \w away|strong="H3289"\w*, +\q2 \w the|strong="H5921"\w* \w little|strong="H6810"\w* \w ones|strong="H6810"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w flock|strong="H6629"\w*. +\q2 \w Surely|strong="H8085"\w* \w he|strong="H3651"\w* \w will|strong="H3068"\w* \w make|strong="H8074"\w* \w their|strong="H3068"\w* \w habitation|strong="H5116"\w* \w desolate|strong="H8074"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w*. +\q1 +\v 21 \w The|strong="H8085"\w* earth trembles \w at|strong="H5307"\w* \w the|strong="H8085"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w their|strong="H8085"\w* \w fall|strong="H5307"\w*; +\q2 there \w is|strong="H6963"\w* \w a|strong="H3068"\w* \w cry|strong="H6818"\w*, \w the|strong="H8085"\w* \w noise|strong="H6963"\w* \w which|strong="H8085"\w* \w is|strong="H6963"\w* \w heard|strong="H8085"\w* \w in|strong="H8085"\w* \w the|strong="H8085"\w* \w Red|strong="H5488"\w* \w Sea|strong="H3220"\w*. +\q1 +\v 22 \w Behold|strong="H2009"\w*, \w he|strong="H1931"\w* \w will|strong="H1961"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H3117"\w* \w fly|strong="H1675"\w* \w as|strong="H3117"\w* \w the|strong="H5921"\w* \w eagle|strong="H5404"\w*, +\q2 \w and|strong="H3117"\w* \w spread|strong="H6566"\w* \w out|strong="H6566"\w* \w his|strong="H5921"\w* \w wings|strong="H3671"\w* \w against|strong="H5921"\w* \w Bozrah|strong="H1224"\w*. +\q2 \w The|strong="H5921"\w* \w heart|strong="H3820"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H3117"\w* Edom \w at|strong="H5921"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H3117"\w* \w the|strong="H5921"\w* \w heart|strong="H3820"\w* \w of|strong="H3117"\w* \w a|strong="H3068"\w* woman \w in|strong="H5921"\w* \w her|strong="H5921"\w* \w pangs|strong="H6887"\w*. +\b +\p +\v 23 \w Of|strong="H3220"\w* \w Damascus|strong="H1834"\w*: +\q1 “\w Hamath|strong="H2574"\w* \w and|strong="H8085"\w* Arpad \w are|strong="H3808"\w* confounded, +\q2 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3588"\w* \w heard|strong="H8085"\w* \w evil|strong="H7451"\w* \w news|strong="H8052"\w*. +\q2 \w They|strong="H3588"\w* \w have|strong="H3588"\w* \w melted|strong="H4127"\w* \w away|strong="H4127"\w*. +\q1 There \w is|strong="H7451"\w* \w sorrow|strong="H1674"\w* \w on|strong="H7451"\w* \w the|strong="H8085"\w* \w sea|strong="H3220"\w*. +\q2 \w It|strong="H3588"\w* \w can|strong="H3201"\w*’t \w be|strong="H3808"\w* \w quiet|strong="H8252"\w*. +\q1 +\v 24 \w Damascus|strong="H1834"\w* \w has|strong="H6869"\w* grown \w feeble|strong="H7503"\w*, +\q2 she \w turns|strong="H6437"\w* herself \w to|strong="H3205"\w* \w flee|strong="H5127"\w*, +\q2 \w and|strong="H2388"\w* trembling \w has|strong="H6869"\w* \w seized|strong="H2388"\w* \w her|strong="H3205"\w*. +\q1 \w Anguish|strong="H6869"\w* \w and|strong="H2388"\w* \w sorrows|strong="H2256"\w* \w have|strong="H6437"\w* \w taken|strong="H2388"\w* \w hold|strong="H2388"\w* \w of|strong="H3205"\w* \w her|strong="H3205"\w*, +\q2 \w as|strong="H2388"\w* \w of|strong="H3205"\w* \w a|strong="H3068"\w* \w woman|strong="H3205"\w* \w in|strong="H2388"\w* \w travail|strong="H3205"\w*. +\q1 +\v 25 How \w is|strong="H5892"\w* \w the|strong="H5800"\w* \w city|strong="H5892"\w* \w of|strong="H5892"\w* \w praise|strong="H8416"\w* \w not|strong="H3808"\w* \w forsaken|strong="H5800"\w*, +\q2 \w the|strong="H5800"\w* \w city|strong="H5892"\w* \w of|strong="H5892"\w* \w my|strong="H5800"\w* \w joy|strong="H4885"\w*? +\q1 +\v 26 \w Therefore|strong="H3651"\w* \w her|strong="H3605"\w* \w young|strong="H3117"\w* \w men|strong="H3605"\w* \w will|strong="H3068"\w* \w fall|strong="H5307"\w* \w in|strong="H3068"\w* \w her|strong="H3605"\w* \w streets|strong="H7339"\w*, +\q2 \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H3068"\w* \w war|strong="H4421"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w brought|strong="H3068"\w* \w to|strong="H3068"\w* \w silence|strong="H1826"\w* \w in|strong="H3068"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w*,” +\q2 \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\q1 +\v 27 “I \w will|strong="H2346"\w* \w kindle|strong="H3341"\w* \w a|strong="H3068"\w* \w fire|strong="H3341"\w* \w in|strong="H2346"\w* \w the|strong="H3341"\w* \w wall|strong="H2346"\w* \w of|strong="H2346"\w* \w Damascus|strong="H1834"\w*, +\q2 \w and|strong="H2346"\w* \w it|strong="H1130"\w* \w will|strong="H2346"\w* devour \w the|strong="H3341"\w* palaces \w of|strong="H2346"\w* Ben Hadad.” +\b +\q1 +\v 28 \w Of|strong="H1121"\w* \w Kedar|strong="H6938"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5221"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H1121"\w* \w Hazor|strong="H2674"\w*, \w which|strong="H3068"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon \w struck|strong="H5221"\w*, \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w Arise|strong="H6965"\w*, \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w Kedar|strong="H6938"\w*, +\q2 \w and|strong="H1121"\w* \w destroy|strong="H7703"\w* \w the|strong="H5221"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5221"\w* \w east|strong="H6924"\w*. +\q1 +\v 29 \w They|strong="H1992"\w* \w will|strong="H6629"\w* \w take|strong="H3947"\w* \w their|strong="H3605"\w* tents \w and|strong="H6629"\w* \w their|strong="H3605"\w* \w flocks|strong="H6629"\w*. +\q2 \w they|strong="H1992"\w* \w will|strong="H6629"\w* \w carry|strong="H5375"\w* \w away|strong="H3947"\w* \w for|strong="H5921"\w* \w themselves|strong="H1992"\w* \w their|strong="H3605"\w* \w curtains|strong="H3407"\w*, +\q2 \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w vessels|strong="H3627"\w*, \w and|strong="H6629"\w* \w their|strong="H3605"\w* \w camels|strong="H1581"\w*; +\q2 \w and|strong="H6629"\w* \w they|strong="H1992"\w* \w will|strong="H6629"\w* \w cry|strong="H7121"\w* \w to|strong="H5921"\w* \w them|strong="H1992"\w*, ‘\w Terror|strong="H4032"\w* \w on|strong="H5921"\w* \w every|strong="H3605"\w* \w side|strong="H5439"\w*!’ +\q1 +\v 30 \w Flee|strong="H5127"\w*! +\q2 \w Wander|strong="H5110"\w* \w far|strong="H3966"\w* \w off|strong="H5921"\w*! +\q1 \w Dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5002"\w* \w depths|strong="H6009"\w*, \w you|strong="H3588"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H4428"\w* \w Hazor|strong="H2674"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*; +\q2 “\w for|strong="H3588"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w has|strong="H3068"\w* \w taken|strong="H3427"\w* \w counsel|strong="H6098"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w*, +\q2 \w and|strong="H3068"\w* \w has|strong="H3068"\w* \w conceived|strong="H2803"\w* \w a|strong="H3068"\w* \w purpose|strong="H6098"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w*. +\q1 +\v 31 \w Arise|strong="H6965"\w*! \w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w that|strong="H3068"\w* \w is|strong="H3068"\w* \w at|strong="H3427"\w* \w ease|strong="H7961"\w*, +\q2 \w that|strong="H3068"\w* \w dwells|strong="H3427"\w* \w without|strong="H3808"\w* care,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*; +\q2 “\w that|strong="H3068"\w* \w has|strong="H3068"\w* \w neither|strong="H3808"\w* \w gates|strong="H1817"\w* \w nor|strong="H3808"\w* \w bars|strong="H1280"\w*, +\q2 \w that|strong="H3068"\w* \w dwells|strong="H3427"\w* alone. +\q1 +\v 32 \w Their|strong="H3605"\w* \w camels|strong="H1581"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w booty|strong="H7998"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w multitude|strong="H1995"\w* \w of|strong="H3068"\w* \w their|strong="H3605"\w* \w livestock|strong="H4735"\w* \w a|strong="H3068"\w* \w plunder|strong="H7998"\w*. +\q1 \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w scatter|strong="H2219"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w winds|strong="H7307"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w have|strong="H1961"\w* \w the|strong="H3605"\w* \w corners|strong="H6285"\w* \w of|strong="H3068"\w* \w their|strong="H3605"\w* beards \w cut|strong="H7112"\w* \w off|strong="H7112"\w*; +\q2 \w and|strong="H3068"\w* \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w bring|strong="H1961"\w* \w their|strong="H3605"\w* calamity \w from|strong="H6285"\w* \w every|strong="H3605"\w* \w side|strong="H6285"\w* \w of|strong="H3068"\w* \w them|strong="H1961"\w*,” +\q2 \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 33 \w Hazor|strong="H2674"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w dwelling|strong="H3427"\w* \w place|strong="H1961"\w* \w of|strong="H1121"\w* \w jackals|strong="H8577"\w*, +\q2 \w a|strong="H3068"\w* \w desolation|strong="H8077"\w* \w forever|strong="H5769"\w*. +\q1 \w No|strong="H3808"\w* \w man|strong="H1121"\w* \w will|strong="H1961"\w* \w dwell|strong="H3427"\w* \w there|strong="H8033"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H1961"\w* \w any|strong="H1961"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w* \w live|strong="H3427"\w* \w therein|strong="H8033"\w*.” +\b +\p +\v 34 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w that|strong="H3068"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H3068"\w* \w prophet|strong="H5030"\w* \w concerning|strong="H1697"\w* \w Elam|strong="H5867"\w*, \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w beginning|strong="H7225"\w* \w of|strong="H4428"\w* \w the|strong="H3068"\w* \w reign|strong="H4438"\w* \w of|strong="H4428"\w* \w Zedekiah|strong="H6667"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w saying|strong="H1697"\w*, +\v 35 “\w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: +\q1 ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w break|strong="H7665"\w* \w the|strong="H3541"\w* \w bow|strong="H7198"\w* \w of|strong="H3068"\w* \w Elam|strong="H5867"\w*, +\q2 \w the|strong="H3541"\w* \w chief|strong="H7225"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w might|strong="H1369"\w*. +\q1 +\v 36 \w I|strong="H3808"\w* \w will|strong="H1961"\w* \w bring|strong="H5080"\w* \w on|strong="H1961"\w* \w Elam|strong="H5867"\w* \w the|strong="H3605"\w* four \w winds|strong="H7307"\w* \w from|strong="H1471"\w* \w the|strong="H3605"\w* four \w quarters|strong="H7098"\w* \w of|strong="H7307"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, +\q2 \w and|strong="H8064"\w* \w will|strong="H1961"\w* \w scatter|strong="H2219"\w* \w them|strong="H1961"\w* toward \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w winds|strong="H7307"\w*. +\q2 \w There|strong="H8033"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w no|strong="H3808"\w* \w nation|strong="H1471"\w* \w where|strong="H8033"\w* \w the|strong="H3605"\w* \w outcasts|strong="H5080"\w* \w of|strong="H7307"\w* \w Elam|strong="H5867"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w come|strong="H1961"\w*. +\q1 +\v 37 \w I|strong="H5704"\w* \w will|strong="H3068"\w* cause \w Elam|strong="H5867"\w* \w to|strong="H5704"\w* \w be|strong="H3068"\w* \w dismayed|strong="H2865"\w* \w before|strong="H6440"\w* \w their|strong="H3068"\w* enemies, +\q2 \w and|strong="H3068"\w* \w before|strong="H6440"\w* \w those|strong="H5921"\w* \w who|strong="H3068"\w* \w seek|strong="H1245"\w* \w their|strong="H3068"\w* \w life|strong="H5315"\w*. +\q1 \w I|strong="H5704"\w* \w will|strong="H3068"\w* \w bring|strong="H7451"\w* \w evil|strong="H7451"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, \w even|strong="H5704"\w* \w my|strong="H3068"\w* \w fierce|strong="H2740"\w* \w anger|strong="H6440"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*; +\q2 ‘\w and|strong="H3068"\w* \w I|strong="H5704"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w* \w after|strong="H5921"\w* \w them|strong="H5921"\w*, +\q2 \w until|strong="H5704"\w* \w I|strong="H5704"\w* \w have|strong="H3068"\w* \w consumed|strong="H3615"\w* \w them|strong="H5921"\w*. +\q1 +\v 38 \w I|strong="H7760"\w* \w will|strong="H3068"\w* \w set|strong="H7760"\w* \w my|strong="H3068"\w* \w throne|strong="H3678"\w* \w in|strong="H3068"\w* \w Elam|strong="H5867"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* destroy \w from|strong="H3068"\w* \w there|strong="H8033"\w* \w king|strong="H4428"\w* \w and|strong="H3068"\w* \w princes|strong="H8269"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 39 ‘\w But|strong="H1961"\w* \w it|strong="H7725"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w* \w in|strong="H3068"\w* \w the|strong="H5002"\w* latter \w days|strong="H3117"\w* +\q2 \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w reverse|strong="H7725"\w* \w the|strong="H5002"\w* \w captivity|strong="H7622"\w* \w of|strong="H3068"\w* \w Elam|strong="H5867"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*.” +\c 50 +\p +\v 1 \w The|strong="H3068"\w* \w word|strong="H1697"\w* \w that|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w concerning|strong="H1697"\w* Babylon, \w concerning|strong="H1697"\w* \w the|strong="H3068"\w* land \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w Chaldeans|strong="H3778"\w*, \w by|strong="H3027"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H3068"\w* \w prophet|strong="H5030"\w*. +\q1 +\v 2 “\w Declare|strong="H5046"\w* among \w the|strong="H8085"\w* \w nations|strong="H1471"\w* \w and|strong="H8085"\w* \w publish|strong="H8085"\w*, +\q2 \w and|strong="H8085"\w* \w set|strong="H5375"\w* \w up|strong="H5375"\w* \w a|strong="H3068"\w* \w standard|strong="H5251"\w*; +\q2 \w publish|strong="H8085"\w*, \w and|strong="H8085"\w* don’t \w conceal|strong="H3582"\w*; +\q1 say, ‘Babylon \w has|strong="H1471"\w* \w been|strong="H2865"\w* \w taken|strong="H3920"\w*, +\q2 \w Bel|strong="H1078"\w* \w is|strong="H8085"\w* disappointed, +\q2 \w Merodach|strong="H4781"\w* \w is|strong="H8085"\w* \w dismayed|strong="H2865"\w*! +\q1 \w Her|strong="H5046"\w* \w images|strong="H6091"\w* \w are|strong="H1471"\w* disappointed. +\q2 \w Her|strong="H5046"\w* \w idols|strong="H1544"\w* \w are|strong="H1471"\w* \w dismayed|strong="H2865"\w*.’ +\q1 +\v 3 \w For|strong="H3588"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w comes|strong="H1961"\w* \w up|strong="H5927"\w* \w out|strong="H5921"\w* \w of|strong="H3427"\w* \w the|strong="H5921"\w* \w north|strong="H6828"\w* \w against|strong="H5921"\w* \w her|strong="H5921"\w*, +\q2 \w which|strong="H1931"\w* \w will|strong="H1961"\w* \w make|strong="H7896"\w* \w her|strong="H5921"\w* land \w desolate|strong="H8047"\w*, +\q2 \w and|strong="H1980"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w will|strong="H1961"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w it|strong="H1931"\w*. +\q1 \w They|strong="H3588"\w* \w have|strong="H1961"\w* \w fled|strong="H1980"\w*. +\q2 \w They|strong="H3588"\w* \w are|strong="H1471"\w* \w gone|strong="H1980"\w*, +\q2 \w both|strong="H5921"\w* man \w and|strong="H1980"\w* \w animal|strong="H1961"\w*. +\b +\q1 +\v 4 “\w In|strong="H1980"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*, \w and|strong="H1121"\w* \w in|strong="H1980"\w* \w that|strong="H3117"\w* \w time|strong="H6256"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w the|strong="H5002"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w will|strong="H3068"\w* \w come|strong="H1980"\w*, +\q2 \w they|strong="H1992"\w* \w and|strong="H1121"\w* \w the|strong="H5002"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w together|strong="H3162"\w*; +\q1 \w they|strong="H1992"\w* \w will|strong="H3068"\w* \w go|strong="H1980"\w* \w on|strong="H3117"\w* \w their|strong="H3068"\w* \w way|strong="H3212"\w* \w weeping|strong="H1058"\w*, +\q2 \w and|strong="H1121"\w* \w will|strong="H3068"\w* \w seek|strong="H1245"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*. +\q1 +\v 5 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w inquire|strong="H7592"\w* \w concerning|strong="H3068"\w* \w Zion|strong="H6726"\w* \w with|strong="H3068"\w* \w their|strong="H3068"\w* \w faces|strong="H6440"\w* \w turned|strong="H3068"\w* \w toward|strong="H1870"\w* \w it|strong="H6440"\w*, +\q2 saying, ‘Come, \w and|strong="H3068"\w* \w join|strong="H3867"\w* \w yourselves|strong="H3068"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w an|strong="H6440"\w* \w everlasting|strong="H5769"\w* \w covenant|strong="H1285"\w* +\q2 \w that|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w forgotten|strong="H7911"\w*.’ +\q1 +\v 6 \w My|strong="H1961"\w* \w people|strong="H5971"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* lost \w sheep|strong="H6629"\w*. +\q2 \w Their|strong="H1961"\w* \w shepherds|strong="H7462"\w* \w have|strong="H1961"\w* \w caused|strong="H1961"\w* \w them|strong="H8582"\w* \w to|strong="H1980"\w* \w go|strong="H1980"\w* \w astray|strong="H8582"\w*. +\q1 \w They|strong="H5971"\w* \w have|strong="H1961"\w* \w turned|strong="H1961"\w* \w them|strong="H8582"\w* \w away|strong="H1980"\w* \w on|strong="H1980"\w* \w the|strong="H1961"\w* \w mountains|strong="H2022"\w*. +\q2 \w They|strong="H5971"\w* \w have|strong="H1961"\w* \w gone|strong="H1980"\w* \w from|strong="H1980"\w* \w mountain|strong="H2022"\w* \w to|strong="H1980"\w* \w hill|strong="H2022"\w*. +\q2 \w They|strong="H5971"\w* \w have|strong="H1961"\w* \w forgotten|strong="H7911"\w* \w their|strong="H1961"\w* \w resting|strong="H7258"\w* \w place|strong="H1961"\w*. +\q1 +\v 7 \w All|strong="H3605"\w* \w who|strong="H3605"\w* \w found|strong="H4672"\w* \w them|strong="H4672"\w* \w have|strong="H3068"\w* devoured \w them|strong="H4672"\w*. +\q2 \w Their|strong="H3605"\w* \w adversaries|strong="H6862"\w* said, ‘\w We|strong="H3605"\w* \w are|strong="H3068"\w* \w not|strong="H3808"\w* guilty, +\q1 \w because|strong="H8478"\w* \w they|strong="H3068"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w the|strong="H3605"\w* \w habitation|strong="H5116"\w* \w of|strong="H3068"\w* \w righteousness|strong="H6664"\w*, +\q2 \w even|strong="H3808"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w hope|strong="H4723"\w* \w of|strong="H3068"\w* \w their|strong="H3605"\w* fathers.’ +\b +\q1 +\v 8 “\w Flee|strong="H5110"\w* \w out|strong="H3318"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w middle|strong="H8432"\w* \w of|strong="H6440"\w* Babylon! +\q2 \w Go|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w Chaldeans|strong="H3778"\w*, +\q2 \w and|strong="H6629"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w the|strong="H6440"\w* \w male|strong="H6260"\w* \w goats|strong="H6260"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w flocks|strong="H6629"\w*. +\q1 +\v 9 \w For|strong="H3588"\w*, \w behold|strong="H2009"\w*, \w I|strong="H3588"\w* \w will|strong="H1471"\w* \w stir|strong="H5782"\w* \w up|strong="H5927"\w* +\q2 \w and|strong="H7725"\w* \w cause|strong="H7387"\w* \w to|strong="H7725"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* Babylon \w a|strong="H3068"\w* \w company|strong="H6951"\w* \w of|strong="H6951"\w* \w great|strong="H1419"\w* \w nations|strong="H1471"\w* \w from|strong="H7725"\w* \w the|strong="H5921"\w* \w north|strong="H6828"\w* country; +\q2 \w and|strong="H7725"\w* \w they|strong="H3588"\w* \w will|strong="H1471"\w* \w set|strong="H6186"\w* \w themselves|strong="H6186"\w* \w in|strong="H5921"\w* \w array|strong="H6186"\w* \w against|strong="H5921"\w* \w her|strong="H5921"\w*. +\q1 \w She|strong="H3588"\w* \w will|strong="H1471"\w* \w be|strong="H3808"\w* \w taken|strong="H3920"\w* \w from|strong="H7725"\w* \w there|strong="H8033"\w*. +\q2 \w Their|strong="H7725"\w* \w arrows|strong="H2671"\w* \w will|strong="H1471"\w* \w be|strong="H3808"\w* \w as|strong="H5927"\w* \w of|strong="H6951"\w* \w an|strong="H8033"\w* \w expert|strong="H6186"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w*. +\q2 \w None|strong="H3808"\w* \w of|strong="H6951"\w* \w them|strong="H5921"\w* \w will|strong="H1471"\w* \w return|strong="H7725"\w* \w in|strong="H5921"\w* \w vain|strong="H7387"\w*. +\q1 +\v 10 \w Chaldea|strong="H3778"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w prey|strong="H7998"\w*. +\q2 \w All|strong="H3605"\w* \w who|strong="H3605"\w* \w prey|strong="H7998"\w* \w on|strong="H3068"\w* \w her|strong="H3605"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w satisfied|strong="H7646"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\b +\q1 +\v 11 “\w Because|strong="H3588"\w* \w you|strong="H3588"\w* are \w glad|strong="H8055"\w*, +\q2 \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w rejoice|strong="H8055"\w*, +\q1 \w O|strong="H3068"\w* \w you|strong="H3588"\w* \w who|strong="H3588"\w* \w plunder|strong="H8154"\w* \w my|strong="H3588"\w* \w heritage|strong="H5159"\w*, +\q2 \w because|strong="H3588"\w* \w you|strong="H3588"\w* are wanton \w as|strong="H3588"\w* \w a|strong="H3068"\w* \w heifer|strong="H5697"\w* \w that|strong="H3588"\w* treads \w out|strong="H6670"\w* \w the|strong="H3588"\w* grain, +\q2 \w and|strong="H8055"\w* \w neigh|strong="H6670"\w* \w as|strong="H3588"\w* strong horses, +\q1 +\v 12 \w your|strong="H2009"\w* mother \w will|strong="H1471"\w* \w be|strong="H1471"\w* \w utterly|strong="H3966"\w* disappointed. +\q2 She \w who|strong="H1471"\w* \w bore|strong="H3205"\w* \w you|strong="H3205"\w* \w will|strong="H1471"\w* \w be|strong="H1471"\w* \w confounded|strong="H2659"\w*. +\q1 \w Behold|strong="H2009"\w*, she \w will|strong="H1471"\w* \w be|strong="H1471"\w* \w the|strong="H3205"\w* least \w of|strong="H3205"\w* \w the|strong="H3205"\w* \w nations|strong="H1471"\w*, +\q2 \w a|strong="H3068"\w* \w wilderness|strong="H4057"\w*, \w a|strong="H3068"\w* \w dry|strong="H6723"\w* \w land|strong="H6723"\w*, \w and|strong="H1471"\w* \w a|strong="H3068"\w* \w desert|strong="H6160"\w*. +\q1 +\v 13 \w Because|strong="H5921"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w wrath|strong="H7110"\w* \w she|strong="H5921"\w* won’t \w be|strong="H1961"\w* \w inhabited|strong="H3427"\w*, +\q2 \w but|strong="H3808"\w* \w she|strong="H5921"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w wholly|strong="H3605"\w* \w desolate|strong="H8074"\w*. +\q1 \w Everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w goes|strong="H5674"\w* \w by|strong="H5921"\w* Babylon \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w astonished|strong="H8074"\w*, +\q2 \w and|strong="H3068"\w* \w hiss|strong="H8319"\w* \w at|strong="H3427"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w plagues|strong="H4347"\w*. +\q1 +\v 14 \w Set|strong="H6186"\w* \w yourselves|strong="H3605"\w* \w in|strong="H5921"\w* \w array|strong="H6186"\w* \w against|strong="H5921"\w* Babylon \w all|strong="H3605"\w* \w around|strong="H5439"\w*, +\q2 \w all|strong="H3605"\w* \w you|strong="H3588"\w* \w who|strong="H3605"\w* \w bend|strong="H1869"\w* \w the|strong="H3605"\w* \w bow|strong="H7198"\w*; +\q2 \w shoot|strong="H3034"\w* \w at|strong="H5921"\w* \w her|strong="H3605"\w*. +\q1 \w Spare|strong="H2550"\w* \w no|strong="H3605"\w* \w arrows|strong="H2671"\w*, +\q2 \w for|strong="H3588"\w* \w she|strong="H3588"\w* \w has|strong="H3068"\w* \w sinned|strong="H2398"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 15 \w Shout|strong="H7321"\w* \w against|strong="H5921"\w* \w her|strong="H5414"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*. +\q2 \w She|strong="H1931"\w* \w has|strong="H3068"\w* \w submitted|strong="H5414"\w* \w herself|strong="H1931"\w*. +\q2 \w Her|strong="H5414"\w* bulwarks \w have|strong="H3068"\w* \w fallen|strong="H5307"\w*. +\q1 \w Her|strong="H5414"\w* \w walls|strong="H2346"\w* \w have|strong="H3068"\w* \w been|strong="H3068"\w* \w thrown|strong="H2040"\w* \w down|strong="H5307"\w*, +\q2 \w for|strong="H3588"\w* \w it|strong="H5414"\w* \w is|strong="H3068"\w* \w the|strong="H5921"\w* \w vengeance|strong="H5360"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 \w Take|strong="H5358"\w* \w vengeance|strong="H5360"\w* \w on|strong="H5921"\w* \w her|strong="H5414"\w*. +\q2 \w As|strong="H6213"\w* \w she|strong="H1931"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w*, \w do|strong="H6213"\w* \w to|strong="H3068"\w* \w her|strong="H5414"\w*. +\q1 +\v 16 \w Cut|strong="H3772"\w* \w off|strong="H3772"\w* \w the|strong="H6440"\w* \w sower|strong="H2232"\w* \w from|strong="H6440"\w* Babylon, +\q2 \w and|strong="H5971"\w* \w him|strong="H6440"\w* \w who|strong="H5971"\w* handles \w the|strong="H6440"\w* \w sickle|strong="H4038"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w time|strong="H6256"\w* \w of|strong="H6440"\w* \w harvest|strong="H7105"\w*. +\q1 \w For|strong="H6440"\w* \w fear|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w oppressing|strong="H3238"\w* \w sword|strong="H2719"\w*, +\q2 \w they|strong="H6256"\w* \w will|strong="H5971"\w* \w each|strong="H5971"\w* \w return|strong="H6437"\w* \w to|strong="H6256"\w* \w their|strong="H6440"\w* \w own|strong="H5971"\w* \w people|strong="H5971"\w*, +\q2 \w and|strong="H5971"\w* \w they|strong="H6256"\w* \w will|strong="H5971"\w* \w each|strong="H5971"\w* \w flee|strong="H5127"\w* \w to|strong="H6256"\w* \w their|strong="H6440"\w* \w own|strong="H5971"\w* \w land|strong="H6440"\w*. +\b +\q1 +\v 17 “\w Israel|strong="H3478"\w* \w is|strong="H2088"\w* \w a|strong="H3068"\w* \w hunted|strong="H5080"\w* \w sheep|strong="H7716"\w*. +\q2 \w The|strong="H5019"\w* lions \w have|strong="H3478"\w* \w driven|strong="H5080"\w* \w him|strong="H4428"\w* \w away|strong="H5080"\w*. +\q1 \w First|strong="H7223"\w*, \w the|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria devoured \w him|strong="H4428"\w*, +\q2 \w and|strong="H3478"\w* \w now|strong="H2088"\w* \w at|strong="H3478"\w* last \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w has|strong="H3478"\w* \w broken|strong="H6105"\w* \w his|strong="H3478"\w* \w bones|strong="H6105"\w*.” +\p +\v 18 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H4428"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3541"\w* \w God|strong="H3068"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w says|strong="H3541"\w*: +\q1 “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w punish|strong="H6485"\w* \w the|strong="H3541"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w and|strong="H3478"\w* \w his|strong="H3068"\w* land, +\q2 \w as|strong="H3651"\w* \w I|strong="H2005"\w* \w have|strong="H3068"\w* \w punished|strong="H6485"\w* \w the|strong="H3541"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria. +\q1 +\v 19 \w I|strong="H5315"\w* \w will|strong="H3478"\w* \w bring|strong="H7725"\w* \w Israel|strong="H3478"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* \w pasture|strong="H7462"\w*, +\q2 \w and|strong="H3478"\w* \w he|strong="H3478"\w* \w will|strong="H3478"\w* \w feed|strong="H7462"\w* \w on|strong="H7462"\w* \w Carmel|strong="H3760"\w* \w and|strong="H3478"\w* \w Bashan|strong="H1316"\w*. +\q2 \w His|strong="H7725"\w* \w soul|strong="H5315"\w* \w will|strong="H3478"\w* \w be|strong="H3478"\w* \w satisfied|strong="H7646"\w* \w on|strong="H7462"\w* \w the|strong="H7725"\w* \w hills|strong="H2022"\w* \w of|strong="H2022"\w* Ephraim \w and|strong="H3478"\w* \w in|strong="H3478"\w* \w Gilead|strong="H1568"\w*. +\q1 +\v 20 \w In|strong="H3478"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*, \w and|strong="H3063"\w* \w in|strong="H3478"\w* \w that|strong="H3588"\w* \w time|strong="H6256"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w the|strong="H5002"\w* \w iniquity|strong="H5771"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w sought|strong="H1245"\w* \w for|strong="H3588"\w*, +\q2 \w and|strong="H3063"\w* \w there|strong="H1992"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w none|strong="H3808"\w*, +\q1 \w also|strong="H3068"\w* \w the|strong="H5002"\w* \w sins|strong="H2403"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w*, +\q2 \w and|strong="H3063"\w* \w they|strong="H1992"\w* won’t \w be|strong="H3808"\w* \w found|strong="H4672"\w*; +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w pardon|strong="H5545"\w* \w them|strong="H1992"\w* \w whom|strong="H1992"\w* \w I|strong="H3588"\w* \w leave|strong="H7604"\w* \w as|strong="H3117"\w* \w a|strong="H3068"\w* \w remnant|strong="H7604"\w*. +\b +\q1 +\v 21 “\w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* land \w of|strong="H3068"\w* \w Merathaim|strong="H4850"\w*, +\q2 \w even|strong="H6213"\w* \w against|strong="H5921"\w* \w it|strong="H5921"\w*, \w and|strong="H3068"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w Pekod|strong="H6489"\w*. +\q1 \w Kill|strong="H2717"\w* \w and|strong="H3068"\w* \w utterly|strong="H2763"\w* \w destroy|strong="H2763"\w* \w after|strong="H5921"\w* \w them|strong="H5921"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w and|strong="H3068"\w* \w do|strong="H6213"\w* \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H5921"\w* \w have|strong="H3068"\w* \w commanded|strong="H6680"\w* \w you|strong="H6680"\w*. +\q1 +\v 22 \w A|strong="H3068"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w battle|strong="H4421"\w* \w is|strong="H6963"\w* \w in|strong="H4421"\w* \w the|strong="H6963"\w* land, +\q2 \w and|strong="H1419"\w* \w of|strong="H6963"\w* \w great|strong="H1419"\w* \w destruction|strong="H7667"\w*. +\q1 +\v 23 How \w the|strong="H3605"\w* \w hammer|strong="H6360"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* earth \w is|strong="H3605"\w* \w cut|strong="H1438"\w* apart \w and|strong="H1471"\w* \w broken|strong="H7665"\w*! +\q2 How Babylon \w has|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w desolation|strong="H8047"\w* among \w the|strong="H3605"\w* \w nations|strong="H1471"\w*! +\q1 +\v 24 \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w laid|strong="H3369"\w* \w a|strong="H3068"\w* \w snare|strong="H3369"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*, +\q2 \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w are|strong="H3068"\w* \w also|strong="H1571"\w* \w taken|strong="H3920"\w*, Babylon, +\q2 \w and|strong="H3068"\w* \w you|strong="H3588"\w* weren’t \w aware|strong="H3045"\w*. +\q1 \w You|strong="H3588"\w* \w are|strong="H3068"\w* \w found|strong="H4672"\w*, +\q2 \w and|strong="H3068"\w* \w also|strong="H1571"\w* \w caught|strong="H3920"\w*, +\q2 \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* fought \w against|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 25 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w opened|strong="H6605"\w* \w his|strong="H3068"\w* \w armory|strong="H3627"\w*, +\q2 \w and|strong="H3068"\w* \w has|strong="H3068"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w the|strong="H3588"\w* \w weapons|strong="H3627"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w indignation|strong="H2195"\w*; +\q2 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w Lord|strong="H3068"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w has|strong="H3068"\w* \w a|strong="H3068"\w* \w work|strong="H4399"\w* \w to|strong="H3318"\w* \w do|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* land \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w Chaldeans|strong="H3778"\w*. +\q1 +\v 26 \w Come|strong="H1961"\w* against \w her|strong="H6605"\w* \w from|strong="H1961"\w* \w the|strong="H1961"\w* \w farthest|strong="H7093"\w* \w border|strong="H7093"\w*. +\q2 \w Open|strong="H6605"\w* \w her|strong="H6605"\w* \w storehouses|strong="H3965"\w*. +\q2 Cast \w her|strong="H6605"\w* \w up|strong="H5549"\w* \w as|strong="H1961"\w* \w heaps|strong="H6194"\w*. +\q1 \w Destroy|strong="H2763"\w* \w her|strong="H6605"\w* \w utterly|strong="H2763"\w*. +\q2 \w Let|strong="H1961"\w* nothing \w of|strong="H7611"\w* \w her|strong="H6605"\w* \w be|strong="H1961"\w* \w left|strong="H7611"\w*. +\q1 +\v 27 \w Kill|strong="H2717"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w bulls|strong="H6499"\w*. +\q2 \w Let|strong="H3381"\w* \w them|strong="H5921"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3605"\w* \w slaughter|strong="H2874"\w*. +\q1 \w Woe|strong="H1945"\w* \w to|strong="H3381"\w* \w them|strong="H5921"\w*! \w For|strong="H3588"\w* \w their|strong="H3605"\w* \w day|strong="H3117"\w* \w has|strong="H3117"\w* \w come|strong="H3381"\w*, +\q2 \w the|strong="H3605"\w* \w time|strong="H6256"\w* \w of|strong="H3117"\w* \w their|strong="H3605"\w* \w visitation|strong="H6486"\w*. +\q1 +\v 28 \w Listen|strong="H6963"\w* \w to|strong="H3068"\w* those \w who|strong="H3068"\w* \w flee|strong="H5127"\w* \w and|strong="H3068"\w* \w escape|strong="H6412"\w* \w out|strong="H5127"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* land \w of|strong="H3068"\w* Babylon, +\q2 \w to|strong="H3068"\w* \w declare|strong="H5046"\w* \w in|strong="H3068"\w* \w Zion|strong="H6726"\w* \w the|strong="H3068"\w* \w vengeance|strong="H5360"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 \w the|strong="H3068"\w* \w vengeance|strong="H5360"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w temple|strong="H1964"\w*. +\b +\q1 +\v 29 “\w Call|strong="H8085"\w* \w together|strong="H8085"\w* \w the|strong="H3605"\w* \w archers|strong="H7198"\w* \w against|strong="H5921"\w* Babylon, +\q2 \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w bend|strong="H1869"\w* \w the|strong="H3605"\w* \w bow|strong="H7198"\w*. +\q1 \w Encamp|strong="H2583"\w* \w against|strong="H5921"\w* \w her|strong="H3605"\w* \w all|strong="H3605"\w* \w around|strong="H5439"\w*. +\q2 \w Let|strong="H1961"\w* \w none|strong="H3605"\w* \w of|strong="H3068"\w* \w it|strong="H5921"\w* \w escape|strong="H6413"\w*. +\q1 \w Pay|strong="H7999"\w* \w her|strong="H3605"\w* \w back|strong="H7999"\w* \w according|strong="H5921"\w* \w to|strong="H3478"\w* \w her|strong="H3605"\w* \w work|strong="H6467"\w*. +\q2 \w According|strong="H5921"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w she|strong="H3588"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w*, \w do|strong="H6213"\w* \w to|strong="H3478"\w* \w her|strong="H3605"\w*; +\q1 \w for|strong="H3588"\w* \w she|strong="H3588"\w* \w has|strong="H3068"\w* \w been|strong="H1961"\w* \w proud|strong="H2102"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w against|strong="H5921"\w* \w the|strong="H3605"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\q1 +\v 30 \w Therefore|strong="H3651"\w* \w her|strong="H3605"\w* \w young|strong="H3117"\w* \w men|strong="H3605"\w* \w will|strong="H3068"\w* \w fall|strong="H5307"\w* \w in|strong="H3068"\w* \w her|strong="H3605"\w* \w streets|strong="H7339"\w*. +\q2 \w All|strong="H3605"\w* \w her|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H3068"\w* \w war|strong="H4421"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w brought|strong="H3068"\w* \w to|strong="H3068"\w* \w silence|strong="H1826"\w* \w in|strong="H3068"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 31 “\w Behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w am|strong="H2005"\w* \w against|strong="H2005"\w* \w you|strong="H3588"\w*, \w you|strong="H3588"\w* \w proud|strong="H2087"\w* \w one|strong="H3588"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H3117"\w* \w Armies|strong="H6635"\w*; +\q2 “\w for|strong="H3588"\w* \w your|strong="H3588"\w* \w day|strong="H3117"\w* \w has|strong="H6635"\w* \w come|strong="H6635"\w*, +\q2 \w the|strong="H5002"\w* \w time|strong="H6256"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H6635"\w* \w visit|strong="H6485"\w* \w you|strong="H3588"\w*. +\q1 +\v 32 \w The|strong="H3605"\w* \w proud|strong="H2087"\w* \w one|strong="H3605"\w* \w will|strong="H5892"\w* \w stumble|strong="H3782"\w* \w and|strong="H6965"\w* \w fall|strong="H5307"\w*, +\q2 \w and|strong="H6965"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w will|strong="H5892"\w* \w raise|strong="H6965"\w* \w him|strong="H3605"\w* \w up|strong="H6965"\w*. +\q1 \w I|strong="H6965"\w* \w will|strong="H5892"\w* \w kindle|strong="H3341"\w* \w a|strong="H3068"\w* \w fire|strong="H3341"\w* \w in|strong="H5892"\w* \w his|strong="H3605"\w* \w cities|strong="H5892"\w*, +\q2 \w and|strong="H6965"\w* \w it|strong="H5439"\w* \w will|strong="H5892"\w* devour \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H5892"\w* \w around|strong="H5439"\w* \w him|strong="H3605"\w*.” +\q1 +\v 33 \w Yahweh|strong="H3068"\w* \w of|strong="H1121"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: “\w The|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w are|strong="H1121"\w* \w oppressed|strong="H6231"\w* \w together|strong="H3162"\w*. +\q2 \w All|strong="H3605"\w* \w who|strong="H3605"\w* \w took|strong="H2388"\w* \w them|strong="H7971"\w* \w captive|strong="H7617"\w* \w hold|strong="H2388"\w* \w them|strong="H7971"\w* \w fast|strong="H2388"\w*. +\q2 \w They|strong="H3068"\w* \w refuse|strong="H3985"\w* \w to|strong="H3478"\w* \w let|strong="H7971"\w* \w them|strong="H7971"\w* \w go|strong="H7971"\w*. +\q1 +\v 34 \w Their|strong="H3068"\w* \w Redeemer|strong="H1350"\w* \w is|strong="H3068"\w* \w strong|strong="H2389"\w*. +\q2 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w is|strong="H3068"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w*. +\q1 \w He|strong="H3068"\w* \w will|strong="H3068"\w* thoroughly \w plead|strong="H7378"\w* \w their|strong="H3068"\w* \w cause|strong="H7379"\w*, +\q2 \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w may|strong="H3068"\w* give \w rest|strong="H7280"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* earth, +\q2 \w and|strong="H3068"\w* \w disquiet|strong="H7264"\w* \w the|strong="H3068"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* Babylon. +\b +\q1 +\v 35 “\w A|strong="H3068"\w* \w sword|strong="H2719"\w* \w is|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H5002"\w* \w Chaldeans|strong="H3778"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w and|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H5002"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* Babylon, +\q2 \w on|strong="H5921"\w* \w her|strong="H5921"\w* \w princes|strong="H8269"\w*, +\q2 \w and|strong="H3068"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w* \w wise|strong="H2450"\w* \w men|strong="H2450"\w*. +\q1 +\v 36 \w A|strong="H3068"\w* \w sword|strong="H2719"\w* \w is|strong="H2719"\w* \w on|strong="H2719"\w* \w the|strong="H2865"\w* boasters, +\q2 \w and|strong="H2719"\w* \w they|strong="H2719"\w* \w will|strong="H2719"\w* \w become|strong="H2973"\w* \w fools|strong="H2973"\w*. +\q1 \w A|strong="H3068"\w* \w sword|strong="H2719"\w* \w is|strong="H2719"\w* \w on|strong="H2719"\w* her \w mighty|strong="H1368"\w* \w men|strong="H1368"\w*, +\q2 \w and|strong="H2719"\w* \w they|strong="H2719"\w* \w will|strong="H2719"\w* \w be|strong="H2719"\w* \w dismayed|strong="H2865"\w*. +\q1 +\v 37 \w A|strong="H3068"\w* \w sword|strong="H2719"\w* \w is|strong="H3605"\w* \w on|strong="H1961"\w* \w their|strong="H3605"\w* \w horses|strong="H5483"\w*, +\q2 \w on|strong="H1961"\w* \w their|strong="H3605"\w* \w chariots|strong="H7393"\w*, +\q2 \w and|strong="H7393"\w* \w on|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w mixed|strong="H6154"\w* \w people|strong="H6154"\w* \w who|strong="H3605"\w* \w are|strong="H5483"\w* \w in|strong="H8432"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w her|strong="H3605"\w*; +\q2 \w and|strong="H7393"\w* \w they|strong="H3605"\w* \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w as|strong="H1961"\w* women. +\q1 \w A|strong="H3068"\w* \w sword|strong="H2719"\w* \w is|strong="H3605"\w* \w on|strong="H1961"\w* \w her|strong="H3605"\w* treasures, +\q2 \w and|strong="H7393"\w* \w they|strong="H3605"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* robbed. +\q1 +\v 38 \w A|strong="H3068"\w* \w drought|strong="H2721"\w* \w is|strong="H1931"\w* \w on|strong="H2721"\w* \w her|strong="H3001"\w* \w waters|strong="H4325"\w*, +\q2 \w and|strong="H4325"\w* \w they|strong="H3588"\w* \w will|strong="H4325"\w* \w be|strong="H4325"\w* \w dried|strong="H3001"\w* \w up|strong="H3001"\w*; +\q1 \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* land \w of|strong="H4325"\w* \w engraved|strong="H6456"\w* \w images|strong="H6456"\w*, +\q2 \w and|strong="H4325"\w* \w they|strong="H3588"\w* \w are|strong="H4325"\w* \w mad|strong="H1984"\w* \w over|strong="H1984"\w* \w idols|strong="H6456"\w*. +\q1 +\v 39 \w Therefore|strong="H3651"\w* \w the|strong="H5704"\w* wild animals \w of|strong="H1323"\w* \w the|strong="H5704"\w* \w desert|strong="H6728"\w* +\q2 \w with|strong="H3427"\w* \w the|strong="H5704"\w* wolves \w will|strong="H3808"\w* \w dwell|strong="H3427"\w* \w there|strong="H3427"\w*. +\q1 \w The|strong="H5704"\w* \w ostriches|strong="H3284"\w* \w will|strong="H3808"\w* \w dwell|strong="H3427"\w* \w therein|strong="H3427"\w*. +\q2 \w It|strong="H3651"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w inhabited|strong="H3427"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w forever|strong="H5704"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H3808"\w* \w it|strong="H3651"\w* \w be|strong="H3808"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w from|strong="H5704"\w* \w generation|strong="H1755"\w* \w to|strong="H5704"\w* \w generation|strong="H1755"\w*. +\q1 +\v 40 \w As|strong="H3068"\w* \w when|strong="H3068"\w* \w God|strong="H3068"\w* \w overthrew|strong="H4114"\w* \w Sodom|strong="H5467"\w* \w and|strong="H1121"\w* \w Gomorrah|strong="H6017"\w* \w and|strong="H1121"\w* \w its|strong="H3808"\w* \w neighbor|strong="H7934"\w* cities,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w so|strong="H3808"\w* \w no|strong="H3808"\w* \w man|strong="H1121"\w* \w will|strong="H3068"\w* \w dwell|strong="H3427"\w* \w there|strong="H8033"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H3068"\w* \w any|strong="H3808"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w* \w live|strong="H3427"\w* \w therein|strong="H8033"\w*. +\b +\q1 +\v 41 “\w Behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w comes|strong="H7227"\w* \w from|strong="H1471"\w* \w the|strong="H2009"\w* \w north|strong="H6828"\w*. +\q2 \w A|strong="H3068"\w* \w great|strong="H1419"\w* \w nation|strong="H1471"\w* \w and|strong="H4428"\w* \w many|strong="H7227"\w* \w kings|strong="H4428"\w* \w will|strong="H1471"\w* \w be|strong="H1471"\w* \w stirred|strong="H5782"\w* \w up|strong="H5782"\w* \w from|strong="H1471"\w* \w the|strong="H2009"\w* uttermost \w parts|strong="H3411"\w* \w of|strong="H4428"\w* \w the|strong="H2009"\w* earth. +\q1 +\v 42 \w They|strong="H1992"\w* \w take|strong="H2388"\w* \w up|strong="H5921"\w* \w bow|strong="H7198"\w* \w and|strong="H6963"\w* \w spear|strong="H3591"\w*. +\q2 \w They|strong="H1992"\w* \w are|strong="H1992"\w* cruel, \w and|strong="H6963"\w* \w have|strong="H7355"\w* \w no|strong="H3808"\w* \w mercy|strong="H7355"\w*. +\q2 \w Their|strong="H1992"\w* \w voice|strong="H6963"\w* \w roars|strong="H1993"\w* \w like|strong="H1993"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*. +\q1 \w They|strong="H1992"\w* \w ride|strong="H7392"\w* \w on|strong="H5921"\w* \w horses|strong="H5483"\w*, +\q2 everyone \w set|strong="H6186"\w* \w in|strong="H5921"\w* \w array|strong="H6186"\w*, +\q2 \w as|strong="H1992"\w* \w a|strong="H3068"\w* man \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w battle|strong="H4421"\w*, +\q2 \w against|strong="H5921"\w* \w you|strong="H5921"\w*, \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* Babylon. +\q1 +\v 43 \w The|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w has|strong="H4428"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w news|strong="H8088"\w* \w of|strong="H4428"\w* \w them|strong="H3027"\w*, +\q2 \w and|strong="H4428"\w* \w his|strong="H8085"\w* \w hands|strong="H3027"\w* \w become|strong="H3205"\w* \w feeble|strong="H7503"\w*. +\q1 \w Anguish|strong="H6869"\w* \w has|strong="H4428"\w* \w taken|strong="H2388"\w* \w hold|strong="H2388"\w* \w of|strong="H4428"\w* \w him|strong="H3205"\w*, +\q2 pains \w as|strong="H2388"\w* \w of|strong="H4428"\w* \w a|strong="H3068"\w* \w woman|strong="H3205"\w* \w in|strong="H4428"\w* \w labor|strong="H3205"\w*. +\q1 +\v 44 \w Behold|strong="H2009"\w*, \w the|strong="H6440"\w* enemy \w will|strong="H4310"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w like|strong="H3644"\w* \w a|strong="H3068"\w* lion +\q2 \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w thickets|strong="H1347"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w Jordan|strong="H3383"\w* \w against|strong="H5921"\w* \w the|strong="H6440"\w* strong \w habitation|strong="H5116"\w*; +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H4310"\w* \w suddenly|strong="H2009"\w* \w make|strong="H6485"\w* \w them|strong="H5921"\w* \w run|strong="H7323"\w* \w away|strong="H5927"\w* \w from|strong="H6440"\w* \w it|strong="H5921"\w*. +\q1 \w Whoever|strong="H4310"\w* \w is|strong="H2088"\w* chosen, +\q2 \w I|strong="H3588"\w* \w will|strong="H4310"\w* \w appoint|strong="H6485"\w* \w him|strong="H6440"\w* \w over|strong="H5921"\w* \w it|strong="H5921"\w*, +\q2 \w for|strong="H3588"\w* \w who|strong="H4310"\w* \w is|strong="H2088"\w* \w like|strong="H3644"\w* \w me|strong="H6440"\w*? +\q1 \w Who|strong="H4310"\w* \w will|strong="H4310"\w* \w appoint|strong="H6485"\w* \w me|strong="H6440"\w* \w a|strong="H3068"\w* \w time|strong="H3259"\w*? +\q2 \w Who|strong="H4310"\w* \w is|strong="H2088"\w* \w the|strong="H6440"\w* \w shepherd|strong="H7462"\w* \w who|strong="H4310"\w* \w can|strong="H4310"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*?” +\q1 +\v 45 \w Therefore|strong="H3651"\w* \w hear|strong="H8085"\w* \w the|strong="H5921"\w* \w counsel|strong="H6098"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* +\q2 \w that|strong="H8085"\w* \w he|strong="H3651"\w* \w has|strong="H3068"\w* \w taken|strong="H3289"\w* \w against|strong="H5921"\w* Babylon; +\q1 \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w purposes|strong="H4284"\w* +\q2 \w that|strong="H8085"\w* \w he|strong="H3651"\w* \w has|strong="H3068"\w* \w purposed|strong="H2803"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w land|strong="H5116"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w Chaldeans|strong="H3778"\w*: +\q1 \w Surely|strong="H8085"\w* \w they|strong="H3651"\w* \w will|strong="H3068"\w* \w drag|strong="H5498"\w* \w them|strong="H5921"\w* \w away|strong="H3289"\w*, +\q2 \w even|strong="H3651"\w* \w the|strong="H5921"\w* \w little|strong="H6810"\w* \w ones|strong="H6810"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w flock|strong="H6629"\w*. +\q2 \w Surely|strong="H8085"\w* \w he|strong="H3651"\w* \w will|strong="H3068"\w* \w make|strong="H8074"\w* \w their|strong="H3068"\w* \w habitation|strong="H5116"\w* \w desolate|strong="H8074"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w*. +\q1 +\v 46 \w The|strong="H8085"\w* earth trembles \w at|strong="H7493"\w* \w the|strong="H8085"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w taking|strong="H8610"\w* \w of|strong="H6963"\w* Babylon. +\q2 \w The|strong="H8085"\w* \w cry|strong="H2201"\w* \w is|strong="H6963"\w* \w heard|strong="H8085"\w* among \w the|strong="H8085"\w* \w nations|strong="H1471"\w*. +\c 51 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H5921"\w* Babylon, +\q2 \w and|strong="H6965"\w* \w against|strong="H5921"\w* \w those|strong="H5921"\w* \w who|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* Lebkamai, \w a|strong="H3068"\w* \w destroying|strong="H7843"\w* \w wind|strong="H7307"\w*. +\q1 +\v 2 \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w send|strong="H7971"\w* \w to|strong="H7971"\w* Babylon \w strangers|strong="H2114"\w*, \w who|strong="H2114"\w* \w will|strong="H1961"\w* \w winnow|strong="H2219"\w* \w her|strong="H7971"\w*. +\q2 \w They|strong="H3588"\w* \w will|strong="H1961"\w* \w empty|strong="H1238"\w* \w her|strong="H7971"\w* land; +\q2 \w for|strong="H3588"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w trouble|strong="H7451"\w* \w they|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w against|strong="H5921"\w* \w her|strong="H7971"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*. +\q1 +\v 3 \w Against|strong="H5927"\w* \w him|strong="H3605"\w* \w who|strong="H3605"\w* \w bends|strong="H1869"\w*, let \w the|strong="H3605"\w* \w archer|strong="H1869"\w* \w bend|strong="H1869"\w* \w his|strong="H3605"\w* \w bow|strong="H7198"\w*, +\q2 also \w against|strong="H5927"\w* \w him|strong="H3605"\w* \w who|strong="H3605"\w* lifts himself \w up|strong="H5927"\w* \w in|strong="H6635"\w* \w his|strong="H3605"\w* coat \w of|strong="H6635"\w* mail. +\q1 Don’t \w spare|strong="H2550"\w* \w her|strong="H3605"\w* young \w men|strong="H3605"\w*! +\q2 \w Utterly|strong="H2763"\w* \w destroy|strong="H2763"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w army|strong="H6635"\w*! +\q1 +\v 4 \w They|strong="H2351"\w* \w will|strong="H2491"\w* \w fall|strong="H5307"\w* \w down|strong="H5307"\w* \w slain|strong="H2491"\w* \w in|strong="H5307"\w* \w the|strong="H2351"\w* land \w of|strong="H2351"\w* \w the|strong="H2351"\w* \w Chaldeans|strong="H3778"\w*, +\q2 \w and|strong="H5307"\w* \w thrust|strong="H1856"\w* \w through|strong="H1856"\w* \w in|strong="H5307"\w* her \w streets|strong="H2351"\w*. +\q1 +\v 5 \w For|strong="H3588"\w* \w Israel|strong="H3478"\w* \w is|strong="H3068"\w* \w not|strong="H3808"\w* forsaken, \w nor|strong="H3808"\w* \w Judah|strong="H3063"\w*, \w by|strong="H3068"\w* \w his|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*; +\q2 \w though|strong="H3588"\w* \w their|strong="H3068"\w* land \w is|strong="H3068"\w* \w full|strong="H4390"\w* \w of|strong="H3068"\w* guilt \w against|strong="H3068"\w* \w the|strong="H3588"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. +\b +\q1 +\v 6 “\w Flee|strong="H5127"\w* \w out|strong="H4422"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* Babylon! +\q2 Everyone \w save|strong="H4422"\w* \w his|strong="H3068"\w* \w own|strong="H5315"\w* \w life|strong="H5315"\w*! +\q1 Don’t \w be|strong="H3068"\w* cut \w off|strong="H1826"\w* \w in|strong="H3068"\w* \w her|strong="H1931"\w* \w iniquity|strong="H5771"\w*, +\q2 \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w the|strong="H3588"\w* \w time|strong="H6256"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w vengeance|strong="H5360"\w*. +\q2 \w He|strong="H1931"\w* \w will|strong="H3068"\w* give \w to|strong="H3068"\w* \w her|strong="H1931"\w* \w a|strong="H3068"\w* \w recompense|strong="H1576"\w*. +\q1 +\v 7 Babylon \w has|strong="H3068"\w* \w been|strong="H3605"\w* \w a|strong="H3068"\w* \w golden|strong="H2091"\w* \w cup|strong="H3563"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w*, +\q2 \w who|strong="H3605"\w* \w made|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth \w drunk|strong="H8354"\w*. +\q1 \w The|strong="H3605"\w* \w nations|strong="H1471"\w* \w have|strong="H3068"\w* \w drunk|strong="H8354"\w* \w of|strong="H3068"\w* \w her|strong="H3605"\w* \w wine|strong="H3196"\w*; +\q2 \w therefore|strong="H3651"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w have|strong="H3068"\w* \w gone|strong="H3068"\w* \w mad|strong="H1984"\w*. +\q1 +\v 8 Babylon \w has|strong="H3947"\w* \w suddenly|strong="H6597"\w* \w fallen|strong="H5307"\w* \w and|strong="H3947"\w* been \w destroyed|strong="H7665"\w*! +\q2 \w Wail|strong="H3213"\w* \w for|strong="H5921"\w* \w her|strong="H3947"\w*! +\q1 \w Take|strong="H3947"\w* \w balm|strong="H6875"\w* \w for|strong="H5921"\w* \w her|strong="H3947"\w* \w pain|strong="H4341"\w*. +\q2 Perhaps \w she|strong="H5921"\w* \w may|strong="H5307"\w* \w be|strong="H7665"\w* \w healed|strong="H7495"\w*. +\b +\q1 +\v 9 “\w We|strong="H3588"\w* would \w have|strong="H3588"\w* \w healed|strong="H7495"\w* Babylon, +\q2 \w but|strong="H3588"\w* \w she|strong="H3588"\w* \w is|strong="H4941"\w* \w not|strong="H3808"\w* \w healed|strong="H7495"\w*. +\q1 \w Forsake|strong="H5800"\w* \w her|strong="H5375"\w*, +\q2 \w and|strong="H8064"\w* \w let|strong="H5800"\w*’s each \w go|strong="H3212"\w* \w into|strong="H3212"\w* \w his|strong="H5375"\w* own country; +\q1 \w for|strong="H3588"\w* \w her|strong="H5375"\w* \w judgment|strong="H4941"\w* \w reaches|strong="H5704"\w* \w to|strong="H5704"\w* \w heaven|strong="H8064"\w*, +\q2 \w and|strong="H8064"\w* \w is|strong="H4941"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w skies|strong="H7834"\w*. +\q1 +\v 10 ‘\w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w produced|strong="H3318"\w* \w our|strong="H3068"\w* \w righteousness|strong="H6666"\w*. +\q2 \w Come|strong="H3318"\w*, \w and|strong="H3068"\w* let’s \w declare|strong="H5608"\w* \w in|strong="H3068"\w* \w Zion|strong="H6726"\w* \w the|strong="H3068"\w* \w work|strong="H4639"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*.’ +\b +\q1 +\v 11 “\w Make|strong="H3588"\w* \w the|strong="H5921"\w* \w arrows|strong="H2671"\w* sharp! +\q2 Hold \w the|strong="H5921"\w* \w shields|strong="H7982"\w* firmly! +\q1 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w stirred|strong="H5782"\w* \w up|strong="H5782"\w* \w the|strong="H5921"\w* \w spirit|strong="H7307"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w Medes|strong="H4074"\w*, +\q2 \w because|strong="H3588"\w* \w his|strong="H3068"\w* \w purpose|strong="H4209"\w* \w is|strong="H3068"\w* \w against|strong="H5921"\w* Babylon, \w to|strong="H3068"\w* \w destroy|strong="H7843"\w* \w it|strong="H1931"\w*; +\q1 \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w the|strong="H5921"\w* \w vengeance|strong="H5360"\w* \w of|strong="H4428"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w the|strong="H5921"\w* \w vengeance|strong="H5360"\w* \w of|strong="H4428"\w* \w his|strong="H3068"\w* \w temple|strong="H1964"\w*. +\q1 +\v 12 \w Set|strong="H6965"\w* \w up|strong="H6965"\w* \w a|strong="H3068"\w* \w standard|strong="H5251"\w* \w against|strong="H1696"\w* \w the|strong="H3588"\w* \w walls|strong="H2346"\w* \w of|strong="H3068"\w* Babylon! +\q2 \w Make|strong="H6213"\w* \w the|strong="H3588"\w* \w watch|strong="H8104"\w* \w strong|strong="H2388"\w*! +\q1 \w Set|strong="H6965"\w* \w the|strong="H3588"\w* \w watchmen|strong="H8104"\w*, +\q2 \w and|strong="H6965"\w* \w prepare|strong="H3559"\w* \w the|strong="H3588"\w* ambushes; +\q1 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w both|strong="H1571"\w* \w purposed|strong="H2161"\w* \w and|strong="H6965"\w* \w done|strong="H6213"\w* +\q2 \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w he|strong="H3588"\w* \w spoke|strong="H1696"\w* \w concerning|strong="H3068"\w* \w the|strong="H3588"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* Babylon. +\q1 +\v 13 \w You|strong="H5921"\w* \w who|strong="H7227"\w* \w dwell|strong="H7931"\w* \w on|strong="H5921"\w* \w many|strong="H7227"\w* \w waters|strong="H4325"\w*, \w abundant|strong="H7227"\w* \w in|strong="H5921"\w* treasures, +\q2 \w your|strong="H5921"\w* \w end|strong="H7093"\w* \w has|strong="H7093"\w* come, \w the|strong="H5921"\w* measure \w of|strong="H4325"\w* \w your|strong="H5921"\w* \w covetousness|strong="H1215"\w*. +\q1 +\v 14 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w has|strong="H3068"\w* \w sworn|strong="H7650"\w* \w by|strong="H5921"\w* \w himself|strong="H5315"\w*, saying, +\q2 ‘\w Surely|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w fill|strong="H4390"\w* \w you|strong="H3588"\w* \w with|strong="H4390"\w* \w men|strong="H5315"\w*, +\q2 \w as|strong="H5315"\w* \w with|strong="H4390"\w* \w locusts|strong="H3218"\w*, +\q2 \w and|strong="H3068"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w lift|strong="H3068"\w* \w up|strong="H5921"\w* \w a|strong="H3068"\w* \w shout|strong="H1959"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w*.’ +\b +\q1 +\v 15 “\w He|strong="H6213"\w* \w has|strong="H6213"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w earth|strong="H8064"\w* \w by|strong="H3559"\w* \w his|strong="H5186"\w* \w power|strong="H3581"\w*. +\q2 \w He|strong="H6213"\w* \w has|strong="H6213"\w* \w established|strong="H3559"\w* \w the|strong="H6213"\w* \w world|strong="H8398"\w* \w by|strong="H3559"\w* \w his|strong="H5186"\w* \w wisdom|strong="H2451"\w*. +\q2 \w By|strong="H3559"\w* \w his|strong="H5186"\w* \w understanding|strong="H8394"\w* \w he|strong="H6213"\w* \w has|strong="H6213"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w the|strong="H6213"\w* \w heavens|strong="H8064"\w*. +\q1 +\v 16 \w When|strong="H3318"\w* \w he|strong="H6213"\w* \w utters|strong="H5414"\w* \w his|strong="H5414"\w* \w voice|strong="H6963"\w*, +\q2 \w there|strong="H5927"\w* \w is|strong="H7307"\w* \w a|strong="H3068"\w* \w roar|strong="H1995"\w* \w of|strong="H6963"\w* \w waters|strong="H4325"\w* \w in|strong="H6213"\w* \w the|strong="H5414"\w* \w heavens|strong="H8064"\w*, +\q2 \w and|strong="H8064"\w* \w he|strong="H6213"\w* \w causes|strong="H5414"\w* \w the|strong="H5414"\w* \w vapors|strong="H5387"\w* \w to|strong="H3318"\w* \w ascend|strong="H5927"\w* \w from|strong="H3318"\w* \w the|strong="H5414"\w* \w ends|strong="H7097"\w* \w of|strong="H6963"\w* \w the|strong="H5414"\w* \w earth|strong="H5927"\w*. +\q1 \w He|strong="H6213"\w* \w makes|strong="H6213"\w* \w lightning|strong="H1300"\w* \w for|strong="H6213"\w* \w the|strong="H5414"\w* \w rain|strong="H4306"\w*, +\q2 \w and|strong="H8064"\w* \w brings|strong="H3318"\w* \w the|strong="H5414"\w* \w wind|strong="H7307"\w* \w out|strong="H3318"\w* \w of|strong="H6963"\w* \w his|strong="H5414"\w* treasuries. +\b +\q1 +\v 17 “\w Every|strong="H3605"\w* \w man|strong="H3605"\w* \w has|strong="H3588"\w* \w become|strong="H1197"\w* \w stupid|strong="H1197"\w* \w and|strong="H7307"\w* \w without|strong="H3808"\w* \w knowledge|strong="H1847"\w*. +\q2 \w Every|strong="H3605"\w* \w goldsmith|strong="H6884"\w* \w is|strong="H3605"\w* disappointed \w by|strong="H3808"\w* \w his|strong="H3605"\w* \w image|strong="H6459"\w*, +\q1 \w for|strong="H3588"\w* \w his|strong="H3605"\w* \w molten|strong="H5262"\w* \w images|strong="H5262"\w* \w are|strong="H5262"\w* \w falsehood|strong="H8267"\w*, +\q2 \w and|strong="H7307"\w* \w there|strong="H3605"\w* \w is|strong="H3605"\w* \w no|strong="H3808"\w* \w breath|strong="H7307"\w* \w in|strong="H3808"\w* \w them|strong="H3588"\w*. +\q1 +\v 18 \w They|strong="H1992"\w* \w are|strong="H1992"\w* \w vanity|strong="H1892"\w*, +\q2 \w a|strong="H3068"\w* \w work|strong="H4639"\w* \w of|strong="H6256"\w* \w delusion|strong="H1892"\w*. +\q2 \w In|strong="H4639"\w* \w the|strong="H6256"\w* \w time|strong="H6256"\w* \w of|strong="H6256"\w* \w their|strong="H1992"\w* \w visitation|strong="H6486"\w*, \w they|strong="H1992"\w* \w will|strong="H1992"\w* perish. +\q1 +\v 19 \w The|strong="H3605"\w* \w portion|strong="H2506"\w* \w of|strong="H3068"\w* \w Jacob|strong="H3290"\w* \w is|strong="H3068"\w* \w not|strong="H3808"\w* \w like|strong="H3808"\w* \w these|strong="H1931"\w*, +\q2 \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w formed|strong="H3335"\w* \w all|strong="H3605"\w* \w things|strong="H3605"\w*, +\q2 \w including|strong="H3605"\w* \w the|strong="H3605"\w* \w tribe|strong="H7626"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w inheritance|strong="H5159"\w*. +\q2 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w is|strong="H3068"\w* \w his|strong="H3605"\w* \w name|strong="H8034"\w*. +\b +\q1 +\v 20 “\w You|strong="H7843"\w* \w are|strong="H1471"\w* \w my|strong="H7843"\w* \w battle|strong="H4421"\w* ax \w and|strong="H1471"\w* \w weapons|strong="H3627"\w* \w of|strong="H3627"\w* \w war|strong="H4421"\w*. +\q2 \w With|strong="H3627"\w* \w you|strong="H7843"\w* \w I|strong="H5310"\w* \w will|strong="H1471"\w* \w break|strong="H5310"\w* \w the|strong="H7843"\w* \w nations|strong="H1471"\w* \w into|strong="H3627"\w* \w pieces|strong="H5310"\w*. +\q2 \w With|strong="H3627"\w* \w you|strong="H7843"\w* \w I|strong="H5310"\w* \w will|strong="H1471"\w* \w destroy|strong="H7843"\w* \w kingdoms|strong="H4467"\w*. +\q1 +\v 21 \w With|strong="H5483"\w* you \w I|strong="H5310"\w* \w will|strong="H7392"\w* \w break|strong="H5310"\w* \w in|strong="H7392"\w* \w pieces|strong="H5310"\w* +\q2 \w the|strong="H7392"\w* \w horse|strong="H5483"\w* \w and|strong="H7393"\w* \w his|strong="H7392"\w* \w rider|strong="H7392"\w*. +\q1 +\v 22 \w With|strong="H2205"\w* \w you|strong="H2205"\w* \w I|strong="H5288"\w* \w will|strong="H5288"\w* \w break|strong="H5310"\w* in \w pieces|strong="H5310"\w* +\q2 \w the|strong="H5310"\w* chariot \w and|strong="H5288"\w* him \w who|strong="H5288"\w* rides therein. +\q1 \w With|strong="H2205"\w* \w you|strong="H2205"\w* \w I|strong="H5288"\w* \w will|strong="H5288"\w* \w break|strong="H5310"\w* in \w pieces|strong="H5310"\w* +\q2 \w man|strong="H5288"\w* \w and|strong="H5288"\w* woman. +\q1 \w With|strong="H2205"\w* \w you|strong="H2205"\w* \w I|strong="H5288"\w* \w will|strong="H5288"\w* \w break|strong="H5310"\w* in \w pieces|strong="H5310"\w* +\q2 \w the|strong="H5310"\w* \w old|strong="H2205"\w* \w man|strong="H5288"\w* \w and|strong="H5288"\w* \w the|strong="H5310"\w* \w youth|strong="H5288"\w*. +\q1 \w With|strong="H2205"\w* \w you|strong="H2205"\w* \w I|strong="H5288"\w* \w will|strong="H5288"\w* \w break|strong="H5310"\w* in \w pieces|strong="H5310"\w* +\q2 \w the|strong="H5310"\w* \w young|strong="H5288"\w* \w man|strong="H5288"\w* \w and|strong="H5288"\w* \w the|strong="H5310"\w* \w virgin|strong="H1330"\w*. +\q1 +\v 23 \w With|strong="H7462"\w* you \w I|strong="H5310"\w* \w will|strong="H5739"\w* \w break|strong="H5310"\w* \w in|strong="H7462"\w* \w pieces|strong="H5310"\w* +\q2 \w the|strong="H7462"\w* \w shepherd|strong="H7462"\w* \w and|strong="H6346"\w* \w his|strong="H7462"\w* \w flock|strong="H5739"\w*. +\q1 \w With|strong="H7462"\w* you \w I|strong="H5310"\w* \w will|strong="H5739"\w* \w break|strong="H5310"\w* \w in|strong="H7462"\w* \w pieces|strong="H5310"\w* +\q2 \w the|strong="H7462"\w* farmer \w and|strong="H6346"\w* \w his|strong="H7462"\w* \w yoke|strong="H6776"\w*. +\q1 \w With|strong="H7462"\w* you \w I|strong="H5310"\w* \w will|strong="H5739"\w* \w break|strong="H5310"\w* \w in|strong="H7462"\w* \w pieces|strong="H5310"\w* +\q2 \w governors|strong="H6346"\w* \w and|strong="H6346"\w* \w deputies|strong="H6346"\w*. +\p +\v 24 “\w I|strong="H3068"\w* \w will|strong="H3068"\w* \w give|strong="H6213"\w* \w to|strong="H3068"\w* Babylon \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w Chaldea|strong="H3778"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w evil|strong="H7451"\w* \w that|strong="H3605"\w* \w they|strong="H3068"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w in|strong="H3427"\w* \w Zion|strong="H6726"\w* \w in|strong="H3427"\w* \w your|strong="H3068"\w* \w sight|strong="H5869"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 25 “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H3068"\w* \w against|strong="H5921"\w* \w you|strong="H5414"\w*, \w destroying|strong="H7843"\w* \w mountain|strong="H2022"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w which|strong="H3068"\w* \w destroys|strong="H7843"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth. +\q1 \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w stretch|strong="H5186"\w* \w out|strong="H5186"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w you|strong="H5414"\w*, +\q2 \w roll|strong="H1556"\w* \w you|strong="H5414"\w* \w down|strong="H5186"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w rocks|strong="H5553"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w make|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w burned|strong="H8316"\w* \w mountain|strong="H2022"\w*. +\q1 +\v 26 \w They|strong="H3588"\w* won’t \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w cornerstone|strong="H6438"\w* \w from|strong="H4480"\w* \w you|strong="H3588"\w*, +\q2 \w nor|strong="H3808"\w* \w a|strong="H3068"\w* stone \w for|strong="H3588"\w* \w foundations|strong="H4146"\w*; +\q2 \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w desolate|strong="H8077"\w* \w forever|strong="H5769"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\b +\q1 +\v 27 “\w Set|strong="H6485"\w* \w up|strong="H5927"\w* \w a|strong="H3068"\w* \w standard|strong="H5251"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land! +\q2 \w Blow|strong="H8628"\w* \w the|strong="H5921"\w* \w trumpet|strong="H7782"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*! +\q1 \w Prepare|strong="H6942"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w* \w against|strong="H5921"\w* \w her|strong="H5375"\w*! +\q2 \w Call|strong="H8085"\w* \w together|strong="H8085"\w* \w against|strong="H5921"\w* \w her|strong="H5375"\w* \w the|strong="H5921"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H5921"\w* Ararat, \w Minni|strong="H4508"\w*, \w and|strong="H8085"\w* Ashkenaz! +\q1 \w Appoint|strong="H6485"\w* \w a|strong="H3068"\w* \w marshal|strong="H2951"\w* \w against|strong="H5921"\w* \w her|strong="H5375"\w*! +\q2 Cause \w the|strong="H5921"\w* \w horses|strong="H5483"\w* \w to|strong="H5927"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w as|strong="H5927"\w* \w the|strong="H5921"\w* swarming \w locusts|strong="H3218"\w*! +\q1 +\v 28 \w Prepare|strong="H6942"\w* \w against|strong="H5921"\w* \w her|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*, +\q2 \w the|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w Medes|strong="H4074"\w*, \w its|strong="H3605"\w* \w governors|strong="H6346"\w*, \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w deputies|strong="H6346"\w*, \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H4428"\w* \w their|strong="H3605"\w* \w dominion|strong="H4475"\w*! +\q1 +\v 29 \w The|strong="H5921"\w* land trembles \w and|strong="H6965"\w* \w is|strong="H3068"\w* \w in|strong="H3427"\w* \w pain|strong="H2342"\w*; +\q2 \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w purposes|strong="H4284"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w against|strong="H5921"\w* Babylon \w stand|strong="H6965"\w*, +\q2 \w to|strong="H3068"\w* \w make|strong="H7760"\w* \w the|strong="H5921"\w* land \w of|strong="H3068"\w* Babylon \w a|strong="H3068"\w* \w desolation|strong="H8047"\w*, \w without|strong="H3427"\w* \w inhabitant|strong="H3427"\w*. +\q1 +\v 30 \w The|strong="H7665"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w of|strong="H3427"\w* Babylon \w have|strong="H1961"\w* \w stopped|strong="H2308"\w* \w fighting|strong="H3898"\w*, +\q2 \w they|strong="H4908"\w* \w remain|strong="H3427"\w* \w in|strong="H3427"\w* \w their|strong="H7665"\w* \w strongholds|strong="H4679"\w*. +\q1 \w Their|strong="H7665"\w* \w might|strong="H1369"\w* \w has|strong="H1961"\w* \w failed|strong="H2308"\w*. +\q2 \w They|strong="H4908"\w* \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w as|strong="H1961"\w* women. +\q1 \w Her|strong="H7665"\w* \w dwelling|strong="H3427"\w* \w places|strong="H4908"\w* \w are|strong="H1368"\w* \w set|strong="H3341"\w* \w on|strong="H3427"\w* \w fire|strong="H3341"\w*. +\q2 \w Her|strong="H7665"\w* \w bars|strong="H1280"\w* \w are|strong="H1368"\w* \w broken|strong="H7665"\w*. +\q1 +\v 31 \w One|strong="H3588"\w* \w runner|strong="H7323"\w* \w will|strong="H4428"\w* \w run|strong="H7323"\w* \w to|strong="H4428"\w* \w meet|strong="H7125"\w* \w another|strong="H5046"\w*, +\q2 \w and|strong="H4428"\w* \w one|strong="H3588"\w* \w messenger|strong="H5046"\w* \w to|strong="H4428"\w* \w meet|strong="H7125"\w* \w another|strong="H5046"\w*, +\q2 \w to|strong="H4428"\w* \w show|strong="H5046"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w that|strong="H3588"\w* \w his|strong="H5046"\w* \w city|strong="H5892"\w* \w is|strong="H5892"\w* \w taken|strong="H3920"\w* \w on|strong="H5892"\w* \w every|strong="H7323"\w* \w quarter|strong="H7097"\w*. +\q1 +\v 32 So \w the|strong="H8313"\w* \w passages|strong="H4569"\w* \w are|strong="H4421"\w* \w seized|strong="H8610"\w*. +\q2 They have \w burned|strong="H8313"\w* \w the|strong="H8313"\w* reeds \w with|strong="H8313"\w* fire. +\q2 \w The|strong="H8313"\w* men \w of|strong="H4569"\w* \w war|strong="H4421"\w* \w are|strong="H4421"\w* frightened.” +\p +\v 33 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3588"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w says|strong="H3541"\w*: +\q1 “\w The|strong="H3588"\w* \w daughter|strong="H1323"\w* \w of|strong="H3068"\w* Babylon \w is|strong="H3068"\w* \w like|strong="H3478"\w* \w a|strong="H3068"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w* \w at|strong="H3478"\w* \w the|strong="H3588"\w* \w time|strong="H6256"\w* \w when|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H3068"\w* \w trodden|strong="H1869"\w*. +\q2 \w Yet|strong="H5750"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w while|strong="H5750"\w*, \w and|strong="H3478"\w* \w the|strong="H3588"\w* \w time|strong="H6256"\w* \w of|strong="H3068"\w* \w harvest|strong="H7105"\w* comes \w for|strong="H3588"\w* \w her|strong="H1323"\w*.” +\b +\q1 +\v 34 “\w Nebuchadnezzar|strong="H5019"\w* \w the|strong="H4390"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w has|strong="H4428"\w* \w devoured|strong="H1104"\w* \w me|strong="H1740"\w*. +\q2 \w He|strong="H4428"\w* \w has|strong="H4428"\w* \w crushed|strong="H2000"\w* \w me|strong="H1740"\w*. +\q2 \w He|strong="H4428"\w* \w has|strong="H4428"\w* \w made|strong="H3322"\w* \w me|strong="H1740"\w* \w an|strong="H4428"\w* \w empty|strong="H7385"\w* \w vessel|strong="H3627"\w*. +\q1 \w He|strong="H4428"\w* \w has|strong="H4428"\w*, \w like|strong="H4390"\w* \w a|strong="H3068"\w* \w monster|strong="H8577"\w*, \w swallowed|strong="H1104"\w* \w me|strong="H1740"\w* \w up|strong="H1104"\w*. +\q2 \w He|strong="H4428"\w* \w has|strong="H4428"\w* \w filled|strong="H4390"\w* \w his|strong="H4390"\w* mouth \w with|strong="H4390"\w* \w my|strong="H4390"\w* \w delicacies|strong="H5730"\w*. +\q2 \w He|strong="H4428"\w* \w has|strong="H4428"\w* cast \w me|strong="H1740"\w* \w out|strong="H1740"\w*. +\q1 +\v 35 May \w the|strong="H5921"\w* \w violence|strong="H2555"\w* done \w to|strong="H5921"\w* \w me|strong="H5921"\w* \w and|strong="H3389"\w* \w to|strong="H5921"\w* \w my|strong="H5921"\w* \w flesh|strong="H7607"\w* \w be|strong="H3389"\w* \w on|strong="H5921"\w* Babylon!” +\q2 \w the|strong="H5921"\w* \w inhabitant|strong="H3427"\w* \w of|strong="H3427"\w* \w Zion|strong="H6726"\w* \w will|strong="H3389"\w* say; \w and|strong="H3389"\w*, +\q1 “May \w my|strong="H5921"\w* \w blood|strong="H1818"\w* \w be|strong="H3389"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Chaldea|strong="H3778"\w*!” +\q2 \w will|strong="H3389"\w* \w Jerusalem|strong="H3389"\w* say. +\b +\p +\v 36 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w plead|strong="H7378"\w* \w your|strong="H3068"\w* \w cause|strong="H7379"\w*, +\q2 \w and|strong="H3068"\w* \w take|strong="H5358"\w* \w vengeance|strong="H5360"\w* \w for|strong="H3068"\w* \w you|strong="H3651"\w*. +\q1 \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w dry|strong="H3001"\w* \w up|strong="H3001"\w* \w her|strong="H3001"\w* \w sea|strong="H3220"\w*, +\q2 \w and|strong="H3068"\w* \w make|strong="H3001"\w* \w her|strong="H3001"\w* \w fountain|strong="H4726"\w* \w dry|strong="H3001"\w*. +\q1 +\v 37 Babylon \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w heaps|strong="H1530"\w*, +\q2 \w a|strong="H3068"\w* \w dwelling|strong="H3427"\w* \w place|strong="H1961"\w* \w for|strong="H3427"\w* \w jackals|strong="H8577"\w*, +\q2 \w an|strong="H1961"\w* \w astonishment|strong="H8047"\w*, \w and|strong="H3427"\w* \w a|strong="H3068"\w* \w hissing|strong="H8322"\w*, +\q2 \w without|strong="H3427"\w* \w inhabitant|strong="H3427"\w*. +\q1 +\v 38 \w They|strong="H3162"\w* \w will|strong="H3162"\w* \w roar|strong="H7580"\w* \w together|strong="H3162"\w* \w like|strong="H3162"\w* \w young|strong="H3715"\w* \w lions|strong="H3715"\w*. +\q2 \w They|strong="H3162"\w* \w will|strong="H3162"\w* \w growl|strong="H5286"\w* \w as|strong="H5286"\w* \w lions|strong="H3715"\w*’ \w cubs|strong="H1484"\w*. +\q1 +\v 39 \w When|strong="H3068"\w* \w they|strong="H3068"\w* \w are|strong="H3068"\w* inflamed, \w I|strong="H3808"\w* \w will|strong="H3068"\w* \w make|strong="H7896"\w* \w their|strong="H3068"\w* \w feast|strong="H4960"\w*, +\q2 \w and|strong="H3068"\w* \w I|strong="H3808"\w* \w will|strong="H3068"\w* \w make|strong="H7896"\w* \w them|strong="H7896"\w* \w drunk|strong="H7937"\w*, +\q1 \w that|strong="H3068"\w* \w they|strong="H3068"\w* \w may|strong="H3068"\w* \w rejoice|strong="H5937"\w*, +\q2 \w and|strong="H3068"\w* \w sleep|strong="H8142"\w* \w a|strong="H3068"\w* \w perpetual|strong="H5769"\w* \w sleep|strong="H8142"\w*, +\q2 \w and|strong="H3068"\w* \w not|strong="H3808"\w* \w wake|strong="H6974"\w* \w up|strong="H7896"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\b +\q1 +\v 40 “I \w will|strong="H3381"\w* \w bring|strong="H3381"\w* \w them|strong="H3381"\w* \w down|strong="H3381"\w* \w like|strong="H3381"\w* \w lambs|strong="H3733"\w* \w to|strong="H3381"\w* \w the|strong="H5973"\w* \w slaughter|strong="H2873"\w*, +\q2 \w like|strong="H3381"\w* \w rams|strong="H3733"\w* \w with|strong="H5973"\w* \w male|strong="H6260"\w* \w goats|strong="H6260"\w*. +\b +\q1 +\v 41 “How \w Sheshach|strong="H8347"\w* \w is|strong="H3605"\w* \w taken|strong="H3920"\w*! +\q2 How \w the|strong="H3605"\w* \w praise|strong="H8416"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* earth \w is|strong="H3605"\w* \w seized|strong="H8610"\w*! +\q2 How \w Babylon|strong="H8347"\w* \w has|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w desolation|strong="H8047"\w* among \w the|strong="H3605"\w* \w nations|strong="H1471"\w*! +\q1 +\v 42 \w The|strong="H5921"\w* \w sea|strong="H3220"\w* \w has|strong="H3220"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w on|strong="H5921"\w* Babylon. +\q2 \w She|strong="H5921"\w* \w is|strong="H1995"\w* \w covered|strong="H3680"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w multitude|strong="H1995"\w* \w of|strong="H5921"\w* \w its|strong="H5921"\w* \w waves|strong="H1530"\w*. +\q1 +\v 43 \w Her|strong="H3605"\w* \w cities|strong="H5892"\w* \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w desolation|strong="H8047"\w*, +\q2 \w a|strong="H3068"\w* \w dry|strong="H6723"\w* \w land|strong="H6723"\w*, \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w desert|strong="H6160"\w*, +\q2 \w a|strong="H3068"\w* \w land|strong="H6723"\w* \w in|strong="H3427"\w* \w which|strong="H2004"\w* \w no|strong="H3808"\w* \w man|strong="H1121"\w* \w dwells|strong="H3427"\w*. +\q2 \w No|strong="H3808"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w* \w passes|strong="H5674"\w* \w by|strong="H5674"\w* \w it|strong="H1961"\w*. +\q1 +\v 44 \w I|strong="H5921"\w* \w will|strong="H1471"\w* execute \w judgment|strong="H6485"\w* \w on|strong="H5921"\w* \w Bel|strong="H1078"\w* \w in|strong="H5921"\w* Babylon, +\q2 \w and|strong="H1471"\w* \w I|strong="H5921"\w* \w will|strong="H1471"\w* \w bring|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H2346"\w* \w his|strong="H5921"\w* \w mouth|strong="H6310"\w* \w that|strong="H1471"\w* \w which|strong="H1471"\w* \w he|strong="H3808"\w* \w has|strong="H3318"\w* \w swallowed|strong="H1105"\w* \w up|strong="H5921"\w*. +\q1 \w The|strong="H5921"\w* \w nations|strong="H1471"\w* \w will|strong="H1471"\w* \w not|strong="H3808"\w* \w flow|strong="H5102"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w* \w to|strong="H3318"\w* \w him|strong="H5921"\w*. +\q2 \w Yes|strong="H1571"\w*, \w the|strong="H5921"\w* \w wall|strong="H2346"\w* \w of|strong="H2346"\w* Babylon \w will|strong="H1471"\w* \w fall|strong="H5307"\w*. +\b +\q1 +\v 45 “\w My|strong="H3068"\w* \w people|strong="H5971"\w*, \w go|strong="H3318"\w* \w away|strong="H3318"\w* \w from|strong="H3318"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w her|strong="H3318"\w*, +\q2 \w and|strong="H3068"\w* \w each|strong="H5971"\w* \w of|strong="H3068"\w* \w you|strong="H8432"\w* \w save|strong="H4422"\w* \w yourselves|strong="H5315"\w* \w from|strong="H3318"\w* \w Yahweh|strong="H3068"\w*’s \w fierce|strong="H2740"\w* \w anger|strong="H2740"\w*. +\q1 +\v 46 Don’t let \w your|strong="H5921"\w* \w heart|strong="H3824"\w* \w faint|strong="H7401"\w*. +\q2 Don’t \w fear|strong="H3372"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w news|strong="H8052"\w* \w that|strong="H8085"\w* \w will|strong="H3824"\w* \w be|strong="H8141"\w* \w heard|strong="H8085"\w* \w in|strong="H8141"\w* \w the|strong="H5921"\w* land. +\q1 \w For|strong="H5921"\w* \w news|strong="H8052"\w* \w will|strong="H3824"\w* come \w one|strong="H8085"\w* \w year|strong="H8141"\w*, +\q2 \w and|strong="H8085"\w* \w after|strong="H5921"\w* \w that|strong="H8085"\w* \w in|strong="H8141"\w* \w another|strong="H8052"\w* \w year|strong="H8141"\w* \w news|strong="H8052"\w* \w will|strong="H3824"\w* come, +\q2 \w and|strong="H8085"\w* \w violence|strong="H2555"\w* \w in|strong="H8141"\w* \w the|strong="H5921"\w* land, +\q2 \w ruler|strong="H4910"\w* \w against|strong="H5921"\w* \w ruler|strong="H4910"\w*. +\q1 +\v 47 \w Therefore|strong="H3651"\w* \w behold|strong="H2009"\w*, \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w come|strong="H5307"\w* \w that|strong="H3605"\w* \w I|strong="H3117"\w* \w will|strong="H3117"\w* execute \w judgment|strong="H6485"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w engraved|strong="H6456"\w* \w images|strong="H6456"\w* \w of|strong="H3117"\w* Babylon; +\q2 \w and|strong="H3117"\w* \w her|strong="H3605"\w* \w whole|strong="H3605"\w* land \w will|strong="H3117"\w* \w be|strong="H3117"\w* confounded. +\q2 \w All|strong="H3605"\w* \w her|strong="H3605"\w* \w slain|strong="H2491"\w* \w will|strong="H3117"\w* \w fall|strong="H5307"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H3117"\w* \w her|strong="H3605"\w*. +\q1 +\v 48 \w Then|strong="H3588"\w* \w the|strong="H3605"\w* \w heavens|strong="H8064"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*, +\q2 \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w is|strong="H3068"\w* therein, +\q1 \w will|strong="H3068"\w* \w sing|strong="H7442"\w* \w for|strong="H3588"\w* \w joy|strong="H7442"\w* \w over|strong="H5921"\w* Babylon; +\q2 \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w destroyers|strong="H7703"\w* \w will|strong="H3068"\w* come \w to|strong="H3068"\w* \w her|strong="H3605"\w* \w from|strong="H5921"\w* \w the|strong="H3605"\w* \w north|strong="H6828"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\b +\q1 +\v 49 “\w As|strong="H1571"\w* Babylon \w has|strong="H3478"\w* \w caused|strong="H5307"\w* \w the|strong="H3605"\w* \w slain|strong="H2491"\w* \w of|strong="H3605"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w fall|strong="H5307"\w*, +\q2 \w so|strong="H1571"\w* \w the|strong="H3605"\w* \w slain|strong="H2491"\w* \w of|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land \w will|strong="H3478"\w* \w fall|strong="H5307"\w* \w at|strong="H3478"\w* Babylon. +\q1 +\v 50 \w You|strong="H5921"\w* \w who|strong="H3068"\w* \w have|strong="H3068"\w* \w escaped|strong="H6412"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w*, \w go|strong="H1980"\w*! +\q2 Don’t \w stand|strong="H5975"\w* \w still|strong="H5975"\w*! +\q1 \w Remember|strong="H2142"\w* \w Yahweh|strong="H3068"\w* \w from|strong="H5921"\w* \w afar|strong="H7350"\w*, +\q2 \w and|strong="H1980"\w* \w let|strong="H2142"\w* \w Jerusalem|strong="H3389"\w* \w come|strong="H1980"\w* \w into|strong="H1980"\w* \w your|strong="H3068"\w* \w mind|strong="H3824"\w*.” +\b +\q1 +\v 51 “\w We|strong="H3588"\w* \w are|strong="H3068"\w* confounded +\q2 \w because|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w reproach|strong="H2781"\w*. +\q1 \w Confusion|strong="H3639"\w* \w has|strong="H3068"\w* \w covered|strong="H3680"\w* \w our|strong="H3068"\w* \w faces|strong="H6440"\w*, +\q2 \w for|strong="H3588"\w* \w strangers|strong="H2114"\w* \w have|strong="H3068"\w* come \w into|strong="H5921"\w* \w the|strong="H6440"\w* \w sanctuaries|strong="H4720"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*.” +\b +\q1 +\v 52 “\w Therefore|strong="H3651"\w* \w behold|strong="H2009"\w*, \w the|strong="H3605"\w* \w days|strong="H3117"\w* come,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w that|strong="H3605"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* execute \w judgment|strong="H6485"\w* \w on|strong="H5921"\w* \w her|strong="H3605"\w* \w engraved|strong="H6456"\w* \w images|strong="H6456"\w*; +\q2 \w and|strong="H3068"\w* \w through|strong="H5921"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* land \w the|strong="H3605"\w* \w wounded|strong="H2491"\w* \w will|strong="H3068"\w* groan. +\q1 +\v 53 \w Though|strong="H3588"\w* Babylon \w should|strong="H3068"\w* \w mount|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w the|strong="H5002"\w* \w sky|strong="H8064"\w*, +\q2 \w and|strong="H3068"\w* \w though|strong="H3588"\w* \w she|strong="H3588"\w* \w should|strong="H3068"\w* \w fortify|strong="H1219"\w* \w the|strong="H5002"\w* \w height|strong="H4791"\w* \w of|strong="H3068"\w* \w her|strong="H3588"\w* \w strength|strong="H5797"\w*, +\q2 \w yet|strong="H3588"\w* \w destroyers|strong="H7703"\w* \w will|strong="H3068"\w* \w come|strong="H5927"\w* \w to|strong="H3068"\w* \w her|strong="H3588"\w* \w from|strong="H5927"\w* \w me|strong="H5927"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\b +\q1 +\v 54 “\w The|strong="H6963"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w a|strong="H3068"\w* \w cry|strong="H2201"\w* comes \w from|strong="H6963"\w* Babylon, +\q2 \w and|strong="H1419"\w* \w of|strong="H6963"\w* \w great|strong="H1419"\w* \w destruction|strong="H7667"\w* \w from|strong="H6963"\w* \w the|strong="H6963"\w* land \w of|strong="H6963"\w* \w the|strong="H6963"\w* \w Chaldeans|strong="H3778"\w*! +\q1 +\v 55 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w lays|strong="H5414"\w* Babylon \w waste|strong="H7703"\w*, +\q2 \w and|strong="H3068"\w* \w destroys|strong="H7703"\w* \w out|strong="H4480"\w* \w of|strong="H3068"\w* \w her|strong="H5414"\w* \w the|strong="H3588"\w* \w great|strong="H1419"\w* \w voice|strong="H6963"\w*! +\q1 \w Their|strong="H3068"\w* \w waves|strong="H1530"\w* \w roar|strong="H1993"\w* \w like|strong="H1993"\w* \w many|strong="H7227"\w* \w waters|strong="H4325"\w*. +\q2 \w The|strong="H3588"\w* \w noise|strong="H6963"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w voice|strong="H6963"\w* \w is|strong="H3068"\w* \w uttered|strong="H5414"\w*. +\q1 +\v 56 \w For|strong="H3588"\w* \w the|strong="H5921"\w* \w destroyer|strong="H7703"\w* \w has|strong="H3068"\w* \w come|strong="H1368"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w*, +\q2 \w even|strong="H3588"\w* \w on|strong="H5921"\w* Babylon. +\q1 \w Her|strong="H5921"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w are|strong="H3068"\w* \w taken|strong="H3920"\w*. +\q2 \w Their|strong="H3068"\w* \w bows|strong="H7198"\w* \w are|strong="H3068"\w* \w broken|strong="H2865"\w* \w in|strong="H5921"\w* \w pieces|strong="H2865"\w*, +\q1 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* retribution. +\q2 \w He|strong="H3588"\w* \w will|strong="H3068"\w* \w surely|strong="H3588"\w* \w repay|strong="H7999"\w*. +\q1 +\v 57 \w I|strong="H3808"\w* \w will|strong="H3068"\w* \w make|strong="H7937"\w* \w her|strong="H7937"\w* \w princes|strong="H8269"\w*, \w her|strong="H7937"\w* \w wise|strong="H2450"\w* \w men|strong="H1368"\w*, +\q2 \w her|strong="H7937"\w* \w governors|strong="H6346"\w*, \w her|strong="H7937"\w* \w deputies|strong="H6346"\w*, \w and|strong="H3068"\w* \w her|strong="H7937"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w* \w drunk|strong="H7937"\w*. +\q1 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w sleep|strong="H8142"\w* \w a|strong="H3068"\w* \w perpetual|strong="H5769"\w* \w sleep|strong="H8142"\w*, +\q2 \w and|strong="H3068"\w* \w not|strong="H3808"\w* \w wake|strong="H6974"\w* \w up|strong="H4428"\w*,” +\q2 \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w King|strong="H4428"\w*, \w whose|strong="H8034"\w* \w name|strong="H8034"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H4428"\w* \w Armies|strong="H6635"\w*. +\p +\v 58 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: +\q1 “\w The|strong="H3541"\w* \w wide|strong="H7342"\w* \w walls|strong="H2346"\w* \w of|strong="H3068"\w* Babylon \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w utterly|strong="H6209"\w* overthrown. +\q2 \w Her|strong="H8179"\w* \w high|strong="H1364"\w* \w gates|strong="H8179"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w burned|strong="H3341"\w* \w with|strong="H3068"\w* \w fire|strong="H3341"\w*. +\q1 \w The|strong="H3541"\w* \w peoples|strong="H5971"\w* \w will|strong="H3068"\w* \w labor|strong="H3021"\w* \w for|strong="H3068"\w* \w vanity|strong="H7385"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H3541"\w* \w nations|strong="H5971"\w* \w for|strong="H3068"\w* \w the|strong="H3541"\w* \w fire|strong="H3341"\w*; +\q2 \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w weary|strong="H3021"\w*.” +\p +\v 59 \w The|strong="H6680"\w* \w word|strong="H1697"\w* \w which|strong="H1697"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H6680"\w* \w prophet|strong="H5030"\w* \w commanded|strong="H6680"\w* \w Seraiah|strong="H8304"\w* \w the|strong="H6680"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Neriah|strong="H5374"\w*, \w the|strong="H6680"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Mahseiah|strong="H4271"\w*, \w when|strong="H1121"\w* \w he|strong="H8141"\w* \w went|strong="H3212"\w* \w with|strong="H1697"\w* \w Zedekiah|strong="H6667"\w* \w the|strong="H6680"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w to|strong="H3212"\w* Babylon \w in|strong="H8141"\w* \w the|strong="H6680"\w* \w fourth|strong="H7243"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w his|strong="H6680"\w* \w reign|strong="H4427"\w*. \w Now|strong="H3212"\w* \w Seraiah|strong="H8304"\w* \w was|strong="H1697"\w* \w chief|strong="H8269"\w* \w quartermaster|strong="H8269"\w*. +\v 60 \w Jeremiah|strong="H3414"\w* \w wrote|strong="H3789"\w* \w in|strong="H3789"\w* \w a|strong="H3068"\w* \w book|strong="H5612"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w that|strong="H3605"\w* should come \w on|strong="H7451"\w* Babylon, even \w all|strong="H3605"\w* \w these|strong="H3789"\w* \w words|strong="H1697"\w* \w that|strong="H3605"\w* \w are|strong="H1697"\w* \w written|strong="H3789"\w* \w concerning|strong="H1697"\w* Babylon. +\v 61 \w Jeremiah|strong="H3414"\w* \w said|strong="H1697"\w* \w to|strong="H1697"\w* \w Seraiah|strong="H8304"\w*, “\w When|strong="H7200"\w* \w you|strong="H3605"\w* come \w to|strong="H1697"\w* Babylon, \w then|strong="H7200"\w* \w see|strong="H7200"\w* \w that|strong="H7200"\w* \w you|strong="H3605"\w* \w read|strong="H7121"\w* \w all|strong="H3605"\w* \w these|strong="H7121"\w* \w words|strong="H1697"\w*, +\v 62 \w and|strong="H3068"\w* \w say|strong="H1696"\w*, ‘\w Yahweh|strong="H3068"\w*, \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w spoken|strong="H1696"\w* \w concerning|strong="H3068"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*, \w to|strong="H1696"\w* \w cut|strong="H3772"\w* \w it|strong="H3588"\w* \w off|strong="H3772"\w*, \w that|strong="H3588"\w* \w no|strong="H1115"\w* \w one|strong="H2088"\w* \w will|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w it|strong="H3588"\w*, \w neither|strong="H1115"\w* \w man|strong="H2088"\w* \w nor|strong="H1115"\w* \w animal|strong="H1961"\w*, \w but|strong="H3588"\w* \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w desolate|strong="H8077"\w* \w forever|strong="H5769"\w*.’ +\v 63 \w It|strong="H7121"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w*, \w when|strong="H1961"\w* \w you|strong="H5921"\w* \w have|strong="H1961"\w* \w finished|strong="H3615"\w* \w reading|strong="H7121"\w* \w this|strong="H2088"\w* \w book|strong="H5612"\w*, \w that|strong="H7121"\w* \w you|strong="H5921"\w* \w shall|strong="H2088"\w* \w bind|strong="H7194"\w* \w a|strong="H3068"\w* stone \w to|strong="H1961"\w* \w it|strong="H7121"\w*, \w and|strong="H2088"\w* \w cast|strong="H7993"\w* \w it|strong="H7121"\w* \w into|strong="H8432"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w the|strong="H5921"\w* \w Euphrates|strong="H6578"\w*. +\v 64 \w Then|strong="H6965"\w* \w you|strong="H6440"\w* \w shall|strong="H3808"\w* \w say|strong="H1697"\w*, ‘\w Thus|strong="H3602"\w* \w will|strong="H1697"\w* Babylon \w sink|strong="H8257"\w*, \w and|strong="H6965"\w* \w will|strong="H1697"\w* \w not|strong="H3808"\w* \w rise|strong="H6965"\w* \w again|strong="H6965"\w* \w because|strong="H5921"\w* \w of|strong="H1697"\w* \w the|strong="H6440"\w* \w evil|strong="H7451"\w* \w that|strong="H1697"\w* \w I|strong="H5704"\w* \w will|strong="H1697"\w* \w bring|strong="H7451"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w*; \w and|strong="H6965"\w* \w they|strong="H3808"\w* \w will|strong="H1697"\w* \w be|strong="H3808"\w* \w weary|strong="H3286"\w*.’” +\p \w Thus|strong="H3602"\w* \w far|strong="H5704"\w* \w are|strong="H1697"\w* \w the|strong="H6440"\w* \w words|strong="H1697"\w* \w of|strong="H1697"\w* \w Jeremiah|strong="H3414"\w*. +\c 52 +\p +\v 1 \w Zedekiah|strong="H6667"\w* \w was|strong="H8034"\w* \w twenty-one|strong="H6242"\w* \w years|strong="H8141"\w* \w old|strong="H1121"\w* \w when|strong="H1121"\w* \w he|strong="H3389"\w* began \w to|strong="H3389"\w* \w reign|strong="H4427"\w*. \w He|strong="H3389"\w* \w reigned|strong="H4427"\w* \w eleven|strong="H6240"\w* \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w Jerusalem|strong="H3389"\w*. \w His|strong="H6667"\w* mother’s \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w Hamutal|strong="H2537"\w* \w the|strong="H3414"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Jeremiah|strong="H3414"\w* \w of|strong="H1121"\w* \w Libnah|strong="H3841"\w*. +\v 2 \w He|strong="H6213"\w* \w did|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, according \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w Jehoiakim|strong="H3079"\w* \w had|strong="H3068"\w* \w done|strong="H6213"\w*. +\v 3 \w For|strong="H3588"\w* \w through|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w anger|strong="H6440"\w* \w this|strong="H3588"\w* \w happened|strong="H1961"\w* \w in|strong="H5921"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H3063"\w* \w Judah|strong="H3063"\w*, \w until|strong="H5704"\w* \w he|strong="H3588"\w* \w had|strong="H3068"\w* \w cast|strong="H7993"\w* \w them|strong="H5921"\w* \w out|strong="H7993"\w* \w from|strong="H6440"\w* \w his|strong="H3068"\w* \w presence|strong="H6440"\w*. +\p \w Zedekiah|strong="H6667"\w* \w rebelled|strong="H4775"\w* \w against|strong="H5921"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon. +\v 4 \w In|strong="H8141"\w* \w the|strong="H3605"\w* \w ninth|strong="H8671"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* \w reign|strong="H4427"\w*, \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w tenth|strong="H6224"\w* \w month|strong="H2320"\w*, \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w tenth|strong="H6224"\w* \w day|strong="H2320"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w month|strong="H2320"\w*, \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w came|strong="H1961"\w*, \w he|strong="H1931"\w* \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w army|strong="H2428"\w*, \w against|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H4428"\w* \w encamped|strong="H2583"\w* \w against|strong="H5921"\w* \w it|strong="H1931"\w*; \w and|strong="H4428"\w* \w they|strong="H5921"\w* \w built|strong="H1129"\w* \w forts|strong="H1785"\w* \w against|strong="H5921"\w* \w it|strong="H1931"\w* \w round|strong="H5439"\w* \w about|strong="H5439"\w*. +\v 5 \w So|strong="H5704"\w* \w the|strong="H5704"\w* \w city|strong="H5892"\w* \w was|strong="H5892"\w* \w besieged|strong="H4692"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w eleventh|strong="H6249"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* \w Zedekiah|strong="H6667"\w*. +\p +\v 6 \w In|strong="H5892"\w* \w the|strong="H2388"\w* \w fourth|strong="H7243"\w* \w month|strong="H2320"\w*, \w in|strong="H5892"\w* \w the|strong="H2388"\w* \w ninth|strong="H8672"\w* \w day|strong="H2320"\w* \w of|strong="H5892"\w* \w the|strong="H2388"\w* \w month|strong="H2320"\w*, \w the|strong="H2388"\w* \w famine|strong="H7458"\w* \w was|strong="H1961"\w* \w severe|strong="H2388"\w* \w in|strong="H5892"\w* \w the|strong="H2388"\w* \w city|strong="H5892"\w*, \w so|strong="H1961"\w* \w that|strong="H5971"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w bread|strong="H3899"\w* \w for|strong="H5892"\w* \w the|strong="H2388"\w* \w people|strong="H5971"\w* \w of|strong="H5892"\w* \w the|strong="H2388"\w* land. +\v 7 \w Then|strong="H3318"\w* \w a|strong="H3068"\w* \w breach|strong="H1234"\w* \w was|strong="H5892"\w* \w made|strong="H3605"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H4428"\w* \w war|strong="H4421"\w* \w fled|strong="H1272"\w*, \w and|strong="H4428"\w* \w went|strong="H3212"\w* \w out|strong="H3318"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w by|strong="H5921"\w* \w night|strong="H3915"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w gate|strong="H8179"\w* \w between|strong="H4421"\w* \w the|strong="H3605"\w* \w two|strong="H2346"\w* \w walls|strong="H2346"\w*, \w which|strong="H5892"\w* \w was|strong="H5892"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w garden|strong="H1588"\w*. \w Now|strong="H3212"\w* \w the|strong="H3605"\w* \w Chaldeans|strong="H3778"\w* \w were|strong="H4428"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w all|strong="H3605"\w* \w around|strong="H5439"\w*. \w The|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H4428"\w* \w war|strong="H4421"\w* \w went|strong="H3212"\w* \w toward|strong="H1870"\w* \w the|strong="H3605"\w* \w Arabah|strong="H6160"\w*, +\v 8 \w but|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H2428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w Chaldeans|strong="H3778"\w* \w pursued|strong="H7291"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*, \w and|strong="H4428"\w* \w overtook|strong="H5381"\w* \w Zedekiah|strong="H6667"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w plains|strong="H6160"\w* \w of|strong="H4428"\w* \w Jericho|strong="H3405"\w*; \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w army|strong="H2428"\w* \w was|strong="H4428"\w* \w scattered|strong="H6327"\w* \w from|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 9 \w Then|strong="H1696"\w* \w they|strong="H4428"\w* \w took|strong="H8610"\w* \w the|strong="H5927"\w* \w king|strong="H4428"\w*, \w and|strong="H4428"\w* \w carried|strong="H5927"\w* \w him|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H1696"\w* \w the|strong="H5927"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w to|strong="H1696"\w* \w Riblah|strong="H7247"\w* \w in|strong="H4428"\w* \w the|strong="H5927"\w* land \w of|strong="H4428"\w* \w Hamath|strong="H2574"\w*; \w and|strong="H4428"\w* \w he|strong="H1696"\w* \w pronounced|strong="H1696"\w* \w judgment|strong="H4941"\w* \w on|strong="H5927"\w* \w him|strong="H5927"\w*. +\v 10 \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon \w killed|strong="H7819"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Zedekiah|strong="H6667"\w* \w before|strong="H5869"\w* \w his|strong="H3605"\w* \w eyes|strong="H5869"\w*. \w He|strong="H3605"\w* \w also|strong="H1571"\w* \w killed|strong="H7819"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w in|strong="H4428"\w* \w Riblah|strong="H7247"\w*. +\v 11 \w He|strong="H3117"\w* \w put|strong="H5414"\w* \w out|strong="H5414"\w* \w the|strong="H5414"\w* \w eyes|strong="H5869"\w* \w of|strong="H4428"\w* \w Zedekiah|strong="H6667"\w*; \w and|strong="H4428"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon bound \w him|strong="H5414"\w* \w in|strong="H1004"\w* \w fetters|strong="H5178"\w*, \w and|strong="H4428"\w* carried \w him|strong="H5414"\w* \w to|strong="H5704"\w* Babylon, \w and|strong="H4428"\w* \w put|strong="H5414"\w* \w him|strong="H5414"\w* \w in|strong="H1004"\w* \w prison|strong="H1004"\w* \w until|strong="H5704"\w* \w the|strong="H5414"\w* \w day|strong="H3117"\w* \w of|strong="H4428"\w* \w his|strong="H5414"\w* \w death|strong="H4194"\w*. +\p +\v 12 \w Now|strong="H7227"\w* \w in|strong="H8141"\w* \w the|strong="H6440"\w* \w fifth|strong="H2549"\w* \w month|strong="H2320"\w*, \w in|strong="H8141"\w* \w the|strong="H6440"\w* \w tenth|strong="H6218"\w* \w day|strong="H2320"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w month|strong="H2320"\w*, \w which|strong="H1931"\w* \w was|strong="H1931"\w* \w the|strong="H6440"\w* \w nineteenth|strong="H8672"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* \w Nebuchadnezzar|strong="H5019"\w*, \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w Nebuzaradan|strong="H5018"\w* \w the|strong="H6440"\w* \w captain|strong="H7227"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w guard|strong="H2876"\w*, \w who|strong="H1931"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w came|strong="H4428"\w* into \w Jerusalem|strong="H3389"\w*. +\v 13 \w He|strong="H3068"\w* \w burned|strong="H8313"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w house|strong="H1004"\w*; \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w houses|strong="H1004"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*, \w even|strong="H3068"\w* \w every|strong="H3605"\w* \w great|strong="H1419"\w* \w house|strong="H1004"\w*, \w he|strong="H3068"\w* \w burned|strong="H8313"\w* \w with|strong="H8313"\w* fire. +\v 14 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w army|strong="H2428"\w* \w of|strong="H2346"\w* \w the|strong="H3605"\w* \w Chaldeans|strong="H3778"\w*, \w who|strong="H3605"\w* \w were|strong="H2428"\w* \w with|strong="H3389"\w* \w the|strong="H3605"\w* \w captain|strong="H7227"\w* \w of|strong="H2346"\w* \w the|strong="H3605"\w* \w guard|strong="H2876"\w*, \w broke|strong="H5422"\w* \w down|strong="H5422"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w walls|strong="H2346"\w* \w of|strong="H2346"\w* \w Jerusalem|strong="H3389"\w* \w all|strong="H3605"\w* \w around|strong="H5439"\w*. +\v 15 \w Then|strong="H5307"\w* \w Nebuzaradan|strong="H5018"\w* \w the|strong="H1540"\w* \w captain|strong="H7227"\w* \w of|strong="H4428"\w* \w the|strong="H1540"\w* \w guard|strong="H2876"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w captive|strong="H1540"\w* \w of|strong="H4428"\w* \w the|strong="H1540"\w* \w poorest|strong="H1803"\w* \w of|strong="H4428"\w* \w the|strong="H1540"\w* \w people|strong="H5971"\w*, \w and|strong="H4428"\w* \w the|strong="H1540"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H1540"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w were|strong="H5971"\w* \w left|strong="H7604"\w* \w in|strong="H4428"\w* \w the|strong="H1540"\w* \w city|strong="H5892"\w*, \w and|strong="H4428"\w* those \w who|strong="H5971"\w* \w fell|strong="H5307"\w* \w away|strong="H1540"\w*, \w who|strong="H5971"\w* \w defected|strong="H5307"\w* \w to|strong="H4428"\w* \w the|strong="H1540"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w and|strong="H4428"\w* \w the|strong="H1540"\w* \w rest|strong="H3499"\w* \w of|strong="H4428"\w* \w the|strong="H1540"\w* \w multitude|strong="H7227"\w*. +\v 16 \w But|strong="H7604"\w* \w Nebuzaradan|strong="H5018"\w* \w the|strong="H5018"\w* \w captain|strong="H7227"\w* \w of|strong="H7227"\w* \w the|strong="H5018"\w* \w guard|strong="H2876"\w* \w left|strong="H7604"\w* \w of|strong="H7227"\w* \w the|strong="H5018"\w* \w poorest|strong="H1803"\w* \w of|strong="H7227"\w* \w the|strong="H5018"\w* land \w to|strong="H7227"\w* be vineyard keepers \w and|strong="H7227"\w* farmers. +\p +\v 17 \w The|strong="H3605"\w* \w Chaldeans|strong="H3778"\w* \w broke|strong="H7665"\w* \w the|strong="H3605"\w* \w pillars|strong="H5982"\w* \w of|strong="H1004"\w* \w bronze|strong="H5178"\w* \w that|strong="H3605"\w* \w were|strong="H1004"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w bases|strong="H4350"\w* \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w bronze|strong="H5178"\w* \w sea|strong="H3220"\w* \w that|strong="H3605"\w* \w were|strong="H1004"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w in|strong="H3068"\w* \w pieces|strong="H7665"\w*, \w and|strong="H3068"\w* \w carried|strong="H5375"\w* \w all|strong="H3605"\w* \w of|strong="H1004"\w* \w their|strong="H3605"\w* \w bronze|strong="H5178"\w* \w to|strong="H3068"\w* Babylon. +\v 18 \w They|strong="H3605"\w* also \w took|strong="H3947"\w* \w away|strong="H3947"\w* \w the|strong="H3605"\w* \w pots|strong="H5518"\w*, \w the|strong="H3605"\w* \w shovels|strong="H3257"\w*, \w the|strong="H3605"\w* \w snuffers|strong="H4212"\w*, \w the|strong="H3605"\w* \w basins|strong="H4219"\w*, \w the|strong="H3605"\w* \w spoons|strong="H3709"\w*, \w and|strong="H5178"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w vessels|strong="H3627"\w* \w of|strong="H3627"\w* \w bronze|strong="H5178"\w* \w with|strong="H3627"\w* \w which|strong="H3627"\w* \w they|strong="H3605"\w* \w ministered|strong="H8334"\w*. +\v 19 \w The|strong="H3947"\w* \w captain|strong="H7227"\w* \w of|strong="H3709"\w* \w the|strong="H3947"\w* \w guard|strong="H2876"\w* \w took|strong="H3947"\w* \w away|strong="H3947"\w* \w the|strong="H3947"\w* \w cups|strong="H5592"\w*, \w the|strong="H3947"\w* fire \w pans|strong="H3709"\w*, \w the|strong="H3947"\w* \w basins|strong="H4219"\w*, \w the|strong="H3947"\w* \w pots|strong="H5518"\w*, \w the|strong="H3947"\w* lamp stands, \w the|strong="H3947"\w* \w spoons|strong="H3709"\w*, \w and|strong="H3701"\w* \w the|strong="H3947"\w* \w bowls|strong="H4219"\w*; \w that|strong="H3701"\w* \w which|strong="H2091"\w* \w was|strong="H2091"\w* \w of|strong="H3709"\w* \w gold|strong="H2091"\w*, \w as|strong="H3947"\w* \w gold|strong="H2091"\w*, \w and|strong="H3701"\w* \w that|strong="H3701"\w* \w which|strong="H2091"\w* \w was|strong="H2091"\w* \w of|strong="H3709"\w* \w silver|strong="H3701"\w*, \w as|strong="H3947"\w* \w silver|strong="H3701"\w*. +\p +\v 20 \w They|strong="H3068"\w* \w took|strong="H1961"\w* \w the|strong="H3605"\w* \w two|strong="H8147"\w* \w pillars|strong="H5982"\w*, \w the|strong="H3605"\w* \w one|strong="H3605"\w* \w sea|strong="H3220"\w*, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w twelve|strong="H8147"\w* \w bronze|strong="H5178"\w* \w bulls|strong="H1241"\w* \w that|strong="H3605"\w* \w were|strong="H1961"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w bases|strong="H4350"\w*, \w which|strong="H3068"\w* \w King|strong="H4428"\w* \w Solomon|strong="H8010"\w* \w had|strong="H3068"\w* \w made|strong="H6213"\w* \w for|strong="H6213"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. \w The|strong="H3605"\w* \w bronze|strong="H5178"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* \w vessels|strong="H3627"\w* \w was|strong="H3068"\w* \w without|strong="H3808"\w* \w weight|strong="H4948"\w*. +\v 21 As \w for|strong="H8147"\w* \w the|strong="H5437"\w* \w pillars|strong="H5982"\w*, \w the|strong="H5437"\w* \w height|strong="H6967"\w* \w of|strong="H5982"\w* \w the|strong="H5437"\w* \w one|strong="H8147"\w* \w pillar|strong="H5982"\w* \w was|strong="H6967"\w* \w eighteen|strong="H8083"\w* cubits;\f + \fr 52:21 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w and|strong="H8147"\w* \w a|strong="H3068"\w* \w line|strong="H2339"\w* \w of|strong="H5982"\w* \w twelve|strong="H8147"\w* cubits \w encircled|strong="H5437"\w* \w it|strong="H5437"\w*; \w and|strong="H8147"\w* its \w thickness|strong="H5672"\w* \w was|strong="H6967"\w* four fingers. \w It|strong="H5437"\w* \w was|strong="H6967"\w* \w hollow|strong="H5014"\w*. +\v 22 \w A|strong="H3068"\w* \w capital|strong="H3805"\w* \w of|strong="H5982"\w* \w bronze|strong="H5178"\w* \w was|strong="H6967"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*; \w and|strong="H2568"\w* \w the|strong="H3605"\w* \w height|strong="H6967"\w* \w of|strong="H5982"\w* \w the|strong="H3605"\w* \w one|strong="H3605"\w* \w capital|strong="H3805"\w* \w was|strong="H6967"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w*,\f + \fr 52:22 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w with|strong="H5921"\w* \w network|strong="H7639"\w* \w and|strong="H2568"\w* \w pomegranates|strong="H7416"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w capital|strong="H3805"\w* \w all|strong="H3605"\w* \w around|strong="H5439"\w*, \w all|strong="H3605"\w* \w of|strong="H5982"\w* \w bronze|strong="H5178"\w*. \w The|strong="H3605"\w* \w second|strong="H8145"\w* \w pillar|strong="H5982"\w* also \w had|strong="H7416"\w* \w the|strong="H3605"\w* same, \w with|strong="H5921"\w* \w pomegranates|strong="H7416"\w*. +\v 23 \w There|strong="H1961"\w* \w were|strong="H1961"\w* \w ninety-six|strong="H8337"\w* \w pomegranates|strong="H7416"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w sides|strong="H5439"\w*; \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w pomegranates|strong="H7416"\w* \w were|strong="H1961"\w* \w one|strong="H3605"\w* \w hundred|strong="H3967"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w network|strong="H7639"\w* \w all|strong="H3605"\w* \w around|strong="H5439"\w*. +\p +\v 24 \w The|strong="H3947"\w* \w captain|strong="H7227"\w* \w of|strong="H7218"\w* \w the|strong="H3947"\w* \w guard|strong="H2876"\w* \w took|strong="H3947"\w* \w Seraiah|strong="H8304"\w* \w the|strong="H3947"\w* \w chief|strong="H7218"\w* \w priest|strong="H3548"\w*, \w and|strong="H3548"\w* \w Zephaniah|strong="H6846"\w* \w the|strong="H3947"\w* \w second|strong="H4932"\w* \w priest|strong="H3548"\w*, \w and|strong="H3548"\w* \w the|strong="H3947"\w* \w three|strong="H7969"\w* \w keepers|strong="H8104"\w* \w of|strong="H7218"\w* \w the|strong="H3947"\w* \w threshold|strong="H5592"\w*, +\v 25 \w and|strong="H4428"\w* \w out|strong="H4672"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w* \w he|strong="H4480"\w* \w took|strong="H3947"\w* \w an|strong="H1961"\w* \w officer|strong="H5631"\w* \w who|strong="H5971"\w* \w was|strong="H1961"\w* \w set|strong="H6496"\w* \w over|strong="H5921"\w* \w the|strong="H6440"\w* \w men|strong="H5971"\w* \w of|strong="H4428"\w* \w war|strong="H4421"\w*; \w and|strong="H4428"\w* \w seven|strong="H7651"\w* \w men|strong="H5971"\w* \w of|strong="H4428"\w* \w those|strong="H4480"\w* \w who|strong="H5971"\w* \w saw|strong="H7200"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w face|strong="H6440"\w*, \w who|strong="H5971"\w* \w were|strong="H1961"\w* \w found|strong="H4672"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w*; \w and|strong="H4428"\w* \w the|strong="H6440"\w* \w scribe|strong="H5608"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w captain|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w army|strong="H6635"\w*, \w who|strong="H5971"\w* \w mustered|strong="H6633"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*; \w and|strong="H4428"\w* \w sixty|strong="H8346"\w* \w men|strong="H5971"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*, \w who|strong="H5971"\w* \w were|strong="H1961"\w* \w found|strong="H4672"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w middle|strong="H8432"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w*. +\v 26 \w Nebuzaradan|strong="H5018"\w* \w the|strong="H3947"\w* \w captain|strong="H7227"\w* \w of|strong="H4428"\w* \w the|strong="H3947"\w* \w guard|strong="H2876"\w* \w took|strong="H3947"\w* \w them|strong="H3947"\w*, \w and|strong="H4428"\w* \w brought|strong="H3947"\w* \w them|strong="H3947"\w* \w to|strong="H3212"\w* \w the|strong="H3947"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w to|strong="H3212"\w* \w Riblah|strong="H7247"\w*. +\v 27 \w The|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w struck|strong="H5221"\w* \w them|strong="H5921"\w*, \w and|strong="H3063"\w* \w put|strong="H4191"\w* \w them|strong="H5921"\w* \w to|strong="H4191"\w* \w death|strong="H4191"\w* \w at|strong="H5921"\w* \w Riblah|strong="H7247"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H4428"\w* \w Hamath|strong="H2574"\w*. +\p \w So|strong="H4191"\w* \w Judah|strong="H3063"\w* \w was|strong="H4428"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w captive|strong="H1540"\w* \w out|strong="H5921"\w* \w of|strong="H4428"\w* \w his|strong="H5921"\w* land. +\v 28 \w This|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H1540"\w* number \w of|strong="H8141"\w* \w the|strong="H1540"\w* \w people|strong="H5971"\w* \w whom|strong="H5971"\w* \w Nebuchadnezzar|strong="H5019"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w captive|strong="H1540"\w*: +\m \w in|strong="H8141"\w* \w the|strong="H1540"\w* \w seventh|strong="H7651"\w* \w year|strong="H8141"\w*, \w three|strong="H7969"\w* thousand \w twenty-three|strong="H6242"\w* \w Jews|strong="H3064"\w*; +\m +\v 29 \w in|strong="H8141"\w* \w the|strong="H8147"\w* \w eighteenth|strong="H8083"\w* \w year|strong="H8141"\w* \w of|strong="H8141"\w* \w Nebuchadnezzar|strong="H5019"\w*, \w he|strong="H8147"\w* carried away captive \w from|strong="H5315"\w* \w Jerusalem|strong="H3389"\w* \w eight|strong="H8083"\w* \w hundred|strong="H3967"\w* \w thirty-two|strong="H7970"\w* \w persons|strong="H5315"\w*; +\m +\v 30 \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w twenty-third|strong="H6242"\w* \w year|strong="H8141"\w* \w of|strong="H8141"\w* \w Nebuchadnezzar|strong="H5019"\w*, \w Nebuzaradan|strong="H5018"\w* \w the|strong="H3605"\w* \w captain|strong="H7227"\w* \w of|strong="H8141"\w* \w the|strong="H3605"\w* \w guard|strong="H2876"\w* \w carried|strong="H1540"\w* \w away|strong="H1540"\w* \w captive|strong="H1540"\w* \w of|strong="H8141"\w* \w the|strong="H3605"\w* \w Jews|strong="H3064"\w* \w seven|strong="H7651"\w* \w hundred|strong="H3967"\w* forty-five \w people|strong="H5315"\w*. +\m \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5315"\w* \w numbered|strong="H3967"\w* \w four|strong="H7969"\w* thousand \w six|strong="H8337"\w* \w hundred|strong="H3967"\w*. +\p +\v 31 \w In|strong="H8141"\w* \w the|strong="H5375"\w* \w thirty-seventh|strong="H7970"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w the|strong="H5375"\w* \w captivity|strong="H1546"\w* \w of|strong="H4428"\w* \w Jehoiachin|strong="H3078"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w in|strong="H8141"\w* \w the|strong="H5375"\w* \w twelfth|strong="H8147"\w* \w month|strong="H2320"\w*, \w in|strong="H8141"\w* \w the|strong="H5375"\w* \w twenty-fifth|strong="H6242"\w* \w day|strong="H2320"\w* \w of|strong="H4428"\w* \w the|strong="H5375"\w* \w month|strong="H2320"\w*, Evilmerodach \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w in|strong="H8141"\w* \w the|strong="H5375"\w* \w first|strong="H7218"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w his|strong="H5375"\w* \w reign|strong="H4438"\w*, \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w the|strong="H5375"\w* \w head|strong="H7218"\w* \w of|strong="H4428"\w* \w Jehoiachin|strong="H3078"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w released|strong="H3318"\w* \w him|strong="H3318"\w* \w from|strong="H3318"\w* \w prison|strong="H1004"\w*. +\v 32 \w He|strong="H5414"\w* \w spoke|strong="H1696"\w* \w kindly|strong="H2896"\w* \w to|strong="H1696"\w* \w him|strong="H5414"\w*, \w and|strong="H4428"\w* \w set|strong="H5414"\w* \w his|strong="H5414"\w* \w throne|strong="H3678"\w* \w above|strong="H4605"\w* \w the|strong="H5414"\w* \w throne|strong="H3678"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w kings|strong="H4428"\w* \w who|strong="H4428"\w* \w were|strong="H4428"\w* \w with|strong="H1696"\w* \w him|strong="H5414"\w* \w in|strong="H4428"\w* Babylon, +\v 33 \w and|strong="H3117"\w* \w changed|strong="H8138"\w* \w his|strong="H3605"\w* \w prison|strong="H3608"\w* garments. \w Jehoiachin|strong="H8138"\w* ate \w bread|strong="H3899"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w* \w continually|strong="H8548"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w his|strong="H3605"\w* \w life|strong="H2416"\w*. +\v 34 \w For|strong="H5704"\w* \w his|strong="H3605"\w* allowance, \w there|strong="H3117"\w* \w was|strong="H1697"\w* \w a|strong="H3068"\w* \w continual|strong="H8548"\w* allowance \w given|strong="H5414"\w* \w him|strong="H5414"\w* \w by|strong="H3117"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w every|strong="H3605"\w* \w day|strong="H3117"\w* \w a|strong="H3068"\w* \w portion|strong="H1697"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* \w death|strong="H4194"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w his|strong="H3605"\w* \w life|strong="H2416"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/26-LAMeng-web.usfm b/bibles/eng-web_usfm/26-LAMeng-web.usfm new file mode 100644 index 0000000..c323206 --- /dev/null +++ b/bibles/eng-web_usfm/26-LAMeng-web.usfm @@ -0,0 +1,714 @@ +\id LAM 25-LAM-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Lamentations +\toc1 The Lamentations of Jeremiah +\toc2 Lamentations +\toc3 Lam +\mt2 The +\mt1 Lamentations +\mt2 of Jeremiah +\c 1 +\p +\v 1 How \w the|strong="H1961"\w* \w city|strong="H5892"\w* \w sits|strong="H3427"\w* solitary, +\q2 \w that|strong="H5971"\w* \w was|strong="H1961"\w* \w full|strong="H7227"\w* \w of|strong="H3427"\w* \w people|strong="H5971"\w*! +\q1 \w She|strong="H5892"\w* \w has|strong="H1961"\w* \w become|strong="H1961"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* widow, +\q2 \w who|strong="H5971"\w* \w was|strong="H1961"\w* \w great|strong="H7227"\w* \w among|strong="H3427"\w* \w the|strong="H1961"\w* \w nations|strong="H1471"\w*! +\q1 \w She|strong="H5892"\w* \w who|strong="H5971"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w princess|strong="H8282"\w* \w among|strong="H3427"\w* \w the|strong="H1961"\w* \w provinces|strong="H4082"\w* +\q2 \w has|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* slave! +\b +\q1 +\v 2 \w She|strong="H5921"\w* \w weeps|strong="H1058"\w* \w bitterly|strong="H1058"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w night|strong="H3915"\w*. +\q2 \w Her|strong="H3605"\w* \w tears|strong="H1832"\w* \w are|strong="H1961"\w* \w on|strong="H5921"\w* \w her|strong="H3605"\w* \w cheeks|strong="H3895"\w*. +\q1 \w Among|strong="H5921"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w lovers|strong="H7453"\w* +\q2 \w she|strong="H5921"\w* \w has|strong="H1961"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w to|strong="H1961"\w* \w comfort|strong="H5162"\w* \w her|strong="H3605"\w*. +\q1 \w All|strong="H3605"\w* \w her|strong="H3605"\w* \w friends|strong="H7453"\w* \w have|strong="H1961"\w* dealt treacherously \w with|strong="H5921"\w* \w her|strong="H3605"\w*. +\q2 \w They|strong="H5921"\w* \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w her|strong="H3605"\w* enemies. +\b +\q1 +\v 3 \w Judah|strong="H3063"\w* \w has|strong="H3063"\w* \w gone|strong="H1540"\w* \w into|strong="H1540"\w* \w captivity|strong="H1540"\w* \w because|strong="H7230"\w* \w of|strong="H3427"\w* \w affliction|strong="H6040"\w* +\q2 \w and|strong="H3063"\w* \w because|strong="H7230"\w* \w of|strong="H3427"\w* \w great|strong="H7230"\w* \w servitude|strong="H5656"\w*. +\q1 \w She|strong="H1931"\w* \w dwells|strong="H3427"\w* \w among|strong="H3427"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*. +\q2 \w She|strong="H1931"\w* \w finds|strong="H4672"\w* \w no|strong="H3808"\w* \w rest|strong="H4494"\w*. +\q2 \w All|strong="H3605"\w* \w her|strong="H3605"\w* \w persecutors|strong="H7291"\w* \w overtook|strong="H5381"\w* \w her|strong="H3605"\w* \w in|strong="H3427"\w* \w her|strong="H3605"\w* \w distress|strong="H4712"\w*. +\b +\q1 +\v 4 \w The|strong="H3605"\w* \w roads|strong="H1870"\w* \w to|strong="H1870"\w* \w Zion|strong="H6726"\w* mourn, +\q2 \w because|strong="H1097"\w* \w no|strong="H1097"\w* \w one|strong="H3605"\w* comes \w to|strong="H1870"\w* \w the|strong="H3605"\w* \w solemn|strong="H4150"\w* \w assembly|strong="H4150"\w*. +\q1 \w All|strong="H3605"\w* \w her|strong="H3605"\w* \w gates|strong="H8179"\w* \w are|strong="H1870"\w* \w desolate|strong="H8074"\w*. +\q2 \w Her|strong="H3605"\w* \w priests|strong="H3548"\w* sigh. +\q1 \w Her|strong="H3605"\w* \w virgins|strong="H1330"\w* \w are|strong="H1870"\w* \w afflicted|strong="H3013"\w*, +\q2 \w and|strong="H3548"\w* \w she|strong="H1931"\w* \w herself|strong="H1931"\w* \w is|strong="H1931"\w* \w in|strong="H1870"\w* \w bitterness|strong="H4751"\w*. +\b +\q1 +\v 5 \w Her|strong="H5921"\w* \w adversaries|strong="H6862"\w* \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w the|strong="H6440"\w* \w head|strong="H7218"\w*. +\q2 \w Her|strong="H5921"\w* \w enemies|strong="H6862"\w* \w prosper|strong="H7951"\w*; +\q1 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*\f + \fr 1:5 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w has|strong="H3068"\w* \w afflicted|strong="H3013"\w* \w her|strong="H5921"\w* \w for|strong="H3588"\w* \w the|strong="H6440"\w* \w multitude|strong="H7230"\w* \w of|strong="H3068"\w* \w her|strong="H5921"\w* \w transgressions|strong="H6588"\w*. +\q2 \w Her|strong="H5921"\w* young \w children|strong="H5768"\w* \w have|strong="H1961"\w* \w gone|strong="H1980"\w* \w into|strong="H1980"\w* \w captivity|strong="H7628"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w adversary|strong="H6862"\w*. +\b +\q1 +\v 6 \w All|strong="H3605"\w* \w majesty|strong="H1926"\w* \w has|strong="H1961"\w* \w departed|strong="H3212"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* Zion. +\q2 \w Her|strong="H3605"\w* \w princes|strong="H8269"\w* \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w like|strong="H1961"\w* deer \w that|strong="H3605"\w* \w find|strong="H4672"\w* \w no|strong="H3808"\w* \w pasture|strong="H4829"\w*. +\q2 \w They|strong="H3808"\w* \w have|strong="H1961"\w* \w gone|strong="H3318"\w* \w without|strong="H3808"\w* \w strength|strong="H3581"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w pursuer|strong="H7291"\w*. +\b +\q1 +\v 7 \w Jerusalem|strong="H3389"\w* \w remembers|strong="H2142"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w her|strong="H3605"\w* \w affliction|strong="H6040"\w* \w and|strong="H3117"\w* \w of|strong="H3117"\w* \w her|strong="H3605"\w* \w miseries|strong="H4788"\w* +\q2 \w all|strong="H3605"\w* \w her|strong="H3605"\w* pleasant \w things|strong="H3605"\w* \w that|strong="H5971"\w* \w were|strong="H1961"\w* \w from|strong="H5921"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w old|strong="H6924"\w*; +\q1 \w when|strong="H1961"\w* \w her|strong="H3605"\w* \w people|strong="H5971"\w* \w fell|strong="H5307"\w* \w into|strong="H5307"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w adversary|strong="H6862"\w*, +\q2 \w and|strong="H3117"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w helped|strong="H5826"\w* \w her|strong="H3605"\w*. +\q1 \w The|strong="H3605"\w* \w adversaries|strong="H6862"\w* \w saw|strong="H7200"\w* \w her|strong="H3605"\w*. +\q2 \w They|strong="H3117"\w* \w mocked|strong="H7832"\w* \w at|strong="H5921"\w* \w her|strong="H3605"\w* desolations. +\b +\q1 +\v 8 \w Jerusalem|strong="H3389"\w* \w has|strong="H1961"\w* \w grievously|strong="H2399"\w* \w sinned|strong="H2398"\w*. +\q2 \w Therefore|strong="H3651"\w* \w she|strong="H1931"\w* \w has|strong="H1961"\w* \w become|strong="H1961"\w* \w unclean|strong="H6172"\w*. +\q1 \w All|strong="H3605"\w* \w who|strong="H3605"\w* \w honored|strong="H3513"\w* \w her|strong="H3605"\w* \w despise|strong="H2107"\w* \w her|strong="H3605"\w*, +\q2 \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H1961"\w* \w seen|strong="H7200"\w* \w her|strong="H3605"\w* \w nakedness|strong="H6172"\w*. +\q2 \w Yes|strong="H3588"\w*, \w she|strong="H1931"\w* sighs \w and|strong="H7725"\w* \w turns|strong="H7725"\w* backward. +\b +\q1 +\v 9 \w Her|strong="H7200"\w* \w filthiness|strong="H2932"\w* \w was|strong="H3068"\w* \w in|strong="H3068"\w* \w her|strong="H7200"\w* \w skirts|strong="H7757"\w*. +\q2 \w She|strong="H3588"\w* didn’t \w remember|strong="H2142"\w* \w her|strong="H7200"\w* latter end. +\q1 \w Therefore|strong="H3588"\w* \w she|strong="H3588"\w* \w has|strong="H3068"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w* astoundingly. +\q2 \w She|strong="H3588"\w* \w has|strong="H3068"\w* \w no|strong="H3808"\w* \w comforter|strong="H5162"\w*. +\q1 “\w See|strong="H7200"\w*, \w Yahweh|strong="H3068"\w*, \w my|strong="H3068"\w* \w affliction|strong="H6040"\w*; +\q2 \w for|strong="H3588"\w* \w the|strong="H7200"\w* enemy \w has|strong="H3068"\w* \w magnified|strong="H1431"\w* \w himself|strong="H1431"\w*.” +\b +\q1 +\v 10 \w The|strong="H3605"\w* \w adversary|strong="H6862"\w* \w has|strong="H3588"\w* \w spread|strong="H6566"\w* \w out|strong="H6566"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w pleasant|strong="H4261"\w* \w things|strong="H3605"\w*; +\q2 \w for|strong="H3588"\w* \w she|strong="H3588"\w* \w has|strong="H3588"\w* \w seen|strong="H7200"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w have|strong="H1471"\w* entered \w into|strong="H5921"\w* \w her|strong="H3605"\w* \w sanctuary|strong="H4720"\w*, +\q2 \w concerning|strong="H5921"\w* \w whom|strong="H3588"\w* \w you|strong="H3588"\w* \w commanded|strong="H6680"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w should|strong="H3588"\w* \w not|strong="H3808"\w* enter \w into|strong="H5921"\w* \w your|strong="H3605"\w* \w assembly|strong="H6951"\w*. +\b +\q1 +\v 11 \w All|strong="H3605"\w* \w her|strong="H3605"\w* \w people|strong="H5971"\w* sigh. +\q2 \w They|strong="H3588"\w* \w seek|strong="H1245"\w* \w bread|strong="H3899"\w*. +\q2 \w They|strong="H3588"\w* \w have|strong="H1961"\w* \w given|strong="H5414"\w* \w their|strong="H3605"\w* pleasant \w things|strong="H3605"\w* \w for|strong="H3588"\w* \w food|strong="H3899"\w* \w to|strong="H7725"\w* refresh \w their|strong="H3605"\w* \w soul|strong="H5315"\w*. +\q1 “\w Look|strong="H7200"\w*, \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w see|strong="H7200"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w despised|strong="H2151"\w*.” +\b +\q1 +\v 12 “\w Is|strong="H3068"\w* \w it|strong="H7200"\w* \w nothing|strong="H3808"\w* \w to|strong="H3068"\w* \w you|strong="H3605"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* \w who|strong="H3605"\w* \w pass|strong="H5674"\w* \w by|strong="H5674"\w*? +\q2 \w Look|strong="H7200"\w*, \w and|strong="H3068"\w* \w see|strong="H7200"\w* \w if|strong="H7200"\w* \w there|strong="H3426"\w* \w is|strong="H3068"\w* \w any|strong="H3605"\w* \w sorrow|strong="H4341"\w* \w like|strong="H1870"\w* \w my|strong="H3605"\w* \w sorrow|strong="H4341"\w*, +\q2 \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w brought|strong="H5674"\w* \w on|strong="H3117"\w* \w me|strong="H7200"\w*, +\q2 \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w afflicted|strong="H3013"\w* \w me|strong="H7200"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w fierce|strong="H2740"\w* \w anger|strong="H2740"\w*. +\b +\q1 +\v 13 “\w From|strong="H7725"\w* \w on|strong="H3117"\w* \w high|strong="H4791"\w* \w has|strong="H3117"\w* \w he|strong="H3117"\w* \w sent|strong="H7971"\w* fire \w into|strong="H7725"\w* \w my|strong="H5414"\w* \w bones|strong="H6106"\w*, +\q2 \w and|strong="H7971"\w* \w it|strong="H5414"\w* prevails \w against|strong="H7971"\w* \w them|strong="H5414"\w*. +\q1 \w He|strong="H3117"\w* \w has|strong="H3117"\w* \w spread|strong="H6566"\w* \w a|strong="H3068"\w* \w net|strong="H7568"\w* \w for|strong="H7971"\w* \w my|strong="H5414"\w* \w feet|strong="H7272"\w*. +\q2 \w He|strong="H3117"\w* \w has|strong="H3117"\w* \w turned|strong="H7725"\w* \w me|strong="H5414"\w* \w back|strong="H7725"\w*. +\q2 \w He|strong="H3117"\w* \w has|strong="H3117"\w* \w made|strong="H5414"\w* \w me|strong="H5414"\w* \w desolate|strong="H8076"\w* \w and|strong="H7971"\w* \w I|strong="H3117"\w* \w faint|strong="H1739"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w* \w long|strong="H3117"\w*. +\b +\q1 +\v 14 “\w The|strong="H5921"\w* \w yoke|strong="H5923"\w* \w of|strong="H3027"\w* \w my|strong="H5414"\w* \w transgressions|strong="H6588"\w* \w is|strong="H3027"\w* \w bound|strong="H8244"\w* \w by|strong="H3027"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w*. +\q2 \w They|strong="H3808"\w* \w are|strong="H3027"\w* \w knit|strong="H8276"\w* \w together|strong="H5921"\w*. +\q2 \w They|strong="H3808"\w* \w have|strong="H3027"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w on|strong="H5921"\w* \w my|strong="H5414"\w* \w neck|strong="H6677"\w*. +\q2 \w He|strong="H5414"\w* \w made|strong="H5414"\w* \w my|strong="H5414"\w* \w strength|strong="H3581"\w* \w fail|strong="H5414"\w*. +\q1 \w The|strong="H5921"\w* Lord\f + \fr 1:14 \ft The word translated “Lord” is “Adonai.”\f* \w has|strong="H3027"\w* \w delivered|strong="H5414"\w* \w me|strong="H5414"\w* \w into|strong="H5927"\w* \w their|strong="H5414"\w* \w hands|strong="H3027"\w*, +\q2 \w against|strong="H5921"\w* whom \w I|strong="H5414"\w* am \w not|strong="H3808"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w stand|strong="H6965"\w*. +\b +\q1 +\v 15 “\w The|strong="H3605"\w* Lord \w has|strong="H3063"\w* \w set|strong="H1869"\w* \w at|strong="H5921"\w* \w nothing|strong="H3605"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* mighty \w men|strong="H3605"\w* \w within|strong="H7130"\w* \w me|strong="H5921"\w*. +\q2 \w He|strong="H3605"\w* \w has|strong="H3063"\w* \w called|strong="H7121"\w* \w a|strong="H3068"\w* \w solemn|strong="H4150"\w* \w assembly|strong="H4150"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w* \w to|strong="H5921"\w* \w crush|strong="H7665"\w* \w my|strong="H3605"\w* young \w men|strong="H3605"\w*. +\q2 \w The|strong="H3605"\w* Lord \w has|strong="H3063"\w* \w trodden|strong="H1869"\w* \w the|strong="H3605"\w* \w virgin|strong="H1330"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Judah|strong="H3063"\w* \w as|strong="H3063"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w wine|strong="H1660"\w* \w press|strong="H1660"\w*. +\b +\q1 +\v 16 “\w For|strong="H3588"\w* these \w things|strong="H1961"\w* \w I|strong="H3588"\w* \w weep|strong="H1058"\w*. +\q2 \w My|strong="H5921"\w* \w eye|strong="H5869"\w*, \w my|strong="H5921"\w* \w eye|strong="H5869"\w* runs \w down|strong="H3381"\w* \w with|strong="H5921"\w* \w water|strong="H4325"\w*, +\q2 \w because|strong="H3588"\w* \w the|strong="H5921"\w* \w comforter|strong="H5162"\w* \w who|strong="H1121"\w* \w should|strong="H3588"\w* refresh \w my|strong="H5921"\w* \w soul|strong="H5315"\w* \w is|strong="H5315"\w* \w far|strong="H7368"\w* \w from|strong="H4480"\w* \w me|strong="H5315"\w*. +\q1 \w My|strong="H5921"\w* \w children|strong="H1121"\w* \w are|strong="H1121"\w* \w desolate|strong="H8074"\w*, +\q2 \w because|strong="H3588"\w* \w the|strong="H5921"\w* enemy \w has|strong="H1961"\w* \w prevailed|strong="H1396"\w*.” +\b +\q1 +\v 17 \w Zion|strong="H6726"\w* \w spreads|strong="H6566"\w* \w out|strong="H6566"\w* \w her|strong="H5439"\w* \w hands|strong="H3027"\w*. +\q2 \w There|strong="H1961"\w* \w is|strong="H3068"\w* \w no|strong="H1961"\w* \w one|strong="H1961"\w* \w to|strong="H3068"\w* \w comfort|strong="H5162"\w* \w her|strong="H5439"\w*. +\q1 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w* \w concerning|strong="H3068"\w* \w Jacob|strong="H3290"\w*, +\q2 \w that|strong="H3068"\w* \w those|strong="H1961"\w* \w who|strong="H3068"\w* \w are|strong="H3027"\w* \w around|strong="H5439"\w* \w him|strong="H3027"\w* \w should|strong="H3068"\w* \w be|strong="H1961"\w* \w his|strong="H3068"\w* \w adversaries|strong="H6862"\w*. +\q2 \w Jerusalem|strong="H3389"\w* \w is|strong="H3068"\w* among \w them|strong="H3027"\w* \w as|strong="H1961"\w* \w an|strong="H1961"\w* \w unclean|strong="H5079"\w* \w thing|strong="H5079"\w*. +\b +\q1 +\v 18 “\w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w righteous|strong="H6662"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w rebelled|strong="H4784"\w* \w against|strong="H4784"\w* \w his|strong="H3605"\w* \w commandment|strong="H6310"\w*. +\q1 \w Please|strong="H4994"\w* \w hear|strong="H8085"\w* \w all|strong="H3605"\w* \w you|strong="H3588"\w* \w peoples|strong="H5971"\w*, +\q2 \w and|strong="H1980"\w* \w see|strong="H7200"\w* \w my|strong="H8085"\w* \w sorrow|strong="H4341"\w*. +\q2 \w My|strong="H8085"\w* \w virgins|strong="H1330"\w* \w and|strong="H1980"\w* \w my|strong="H8085"\w* young \w men|strong="H5971"\w* \w have|strong="H3068"\w* \w gone|strong="H1980"\w* \w into|strong="H1980"\w* \w captivity|strong="H7628"\w*. +\b +\q1 +\v 19 “\w I|strong="H3588"\w* \w called|strong="H7121"\w* \w for|strong="H3588"\w* \w my|strong="H1245"\w* lovers, +\q2 \w but|strong="H3588"\w* \w they|strong="H1992"\w* \w deceived|strong="H7411"\w* \w me|strong="H5315"\w*. +\q1 \w My|strong="H1245"\w* \w priests|strong="H3548"\w* \w and|strong="H7725"\w* \w my|strong="H1245"\w* \w elders|strong="H2205"\w* \w gave|strong="H7121"\w* \w up|strong="H7725"\w* \w the|strong="H3588"\w* \w spirit|strong="H5315"\w* \w in|strong="H5315"\w* \w the|strong="H3588"\w* \w city|strong="H5892"\w*, +\q2 \w while|strong="H3588"\w* \w they|strong="H1992"\w* \w sought|strong="H1245"\w* food \w for|strong="H3588"\w* \w themselves|strong="H5315"\w* \w to|strong="H7725"\w* refresh \w their|strong="H1245"\w* \w souls|strong="H5315"\w*. +\b +\q1 +\v 20 “\w Look|strong="H7200"\w*, \w Yahweh|strong="H3068"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w in|strong="H3068"\w* \w distress|strong="H6862"\w*. +\q2 \w My|strong="H3068"\w* \w heart|strong="H3820"\w* \w is|strong="H3068"\w* \w troubled|strong="H2560"\w*. +\q1 \w My|strong="H3068"\w* \w heart|strong="H3820"\w* \w turns|strong="H2015"\w* \w over|strong="H3068"\w* \w within|strong="H7130"\w* \w me|strong="H7200"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w grievously|strong="H4784"\w* \w rebelled|strong="H4784"\w*. +\q1 \w Abroad|strong="H2351"\w*, \w the|strong="H7200"\w* \w sword|strong="H2719"\w* bereaves. +\q2 \w At|strong="H3068"\w* \w home|strong="H1004"\w*, \w it|strong="H3588"\w* \w is|strong="H3068"\w* \w like|strong="H1004"\w* \w death|strong="H4194"\w*. +\b +\q1 +\v 21 “\w They|strong="H3588"\w* \w have|strong="H1961"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* sigh. +\q2 \w There|strong="H1961"\w* \w is|strong="H3117"\w* \w no|strong="H6213"\w* \w one|strong="H3605"\w* \w to|strong="H1961"\w* \w comfort|strong="H5162"\w* \w me|strong="H7121"\w*. +\q1 \w All|strong="H3605"\w* \w my|strong="H8085"\w* enemies \w have|strong="H1961"\w* \w heard|strong="H8085"\w* \w of|strong="H3117"\w* \w my|strong="H8085"\w* \w trouble|strong="H7451"\w*. +\q2 \w They|strong="H3588"\w* \w are|strong="H3117"\w* \w glad|strong="H7797"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w done|strong="H6213"\w* \w it|strong="H7121"\w*. +\q1 \w You|strong="H3588"\w* \w will|strong="H1961"\w* \w bring|strong="H6213"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w proclaimed|strong="H7121"\w*, +\q2 \w and|strong="H3117"\w* \w they|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H3644"\w* \w me|strong="H7121"\w*. +\b +\q1 +\v 22 “Let \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w wickedness|strong="H7451"\w* come \w before|strong="H6440"\w* \w you|strong="H3588"\w*. +\q2 \w Do|strong="H5953"\w* \w to|strong="H5921"\w* \w them|strong="H5921"\w* \w as|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3605"\w* \w done|strong="H5953"\w* \w to|strong="H5921"\w* \w me|strong="H6440"\w* \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w transgressions|strong="H6588"\w*. +\q1 \w For|strong="H3588"\w* \w my|strong="H3605"\w* sighs \w are|strong="H6588"\w* \w many|strong="H7227"\w*, +\q2 \w and|strong="H6440"\w* \w my|strong="H3605"\w* \w heart|strong="H3820"\w* \w is|strong="H3820"\w* \w faint|strong="H1742"\w*. +\c 2 +\p +\v 1 \w How|strong="H2142"\w* \w has|strong="H3478"\w* \w the|strong="H3117"\w* \w Lord|strong="H5743"\w* \w covered|strong="H5743"\w* \w the|strong="H3117"\w* \w daughter|strong="H1323"\w* \w of|strong="H3117"\w* \w Zion|strong="H6726"\w* \w with|strong="H3117"\w* \w a|strong="H3068"\w* \w cloud|strong="H5743"\w* \w in|strong="H3478"\w* \w his|strong="H3478"\w* anger! +\q2 \w He|strong="H3117"\w* \w has|strong="H3478"\w* \w cast|strong="H7993"\w* \w the|strong="H3117"\w* \w beauty|strong="H8597"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w* \w down|strong="H7993"\w* \w from|strong="H3478"\w* \w heaven|strong="H8064"\w* \w to|strong="H3478"\w* \w the|strong="H3117"\w* \w earth|strong="H8064"\w*, +\q2 \w and|strong="H3478"\w* hasn’t \w remembered|strong="H2142"\w* \w his|strong="H3478"\w* \w footstool|strong="H1916"\w* \w in|strong="H3478"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w his|strong="H3478"\w* anger. +\b +\q1 +\v 2 \w The|strong="H3605"\w* Lord \w has|strong="H3063"\w* \w swallowed|strong="H1104"\w* \w up|strong="H1104"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* dwellings \w of|strong="H1323"\w* \w Jacob|strong="H3290"\w* +\q2 \w without|strong="H3808"\w* \w pity|strong="H2550"\w*. +\q1 \w He|strong="H3605"\w* \w has|strong="H3063"\w* \w thrown|strong="H2040"\w* \w down|strong="H2040"\w* \w in|strong="H3063"\w* \w his|strong="H3605"\w* \w wrath|strong="H5678"\w* \w the|strong="H3605"\w* \w strongholds|strong="H4013"\w* \w of|strong="H1323"\w* \w the|strong="H3605"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Judah|strong="H3063"\w*. +\q2 \w He|strong="H3605"\w* \w has|strong="H3063"\w* \w brought|strong="H5060"\w* \w them|strong="H5060"\w* \w down|strong="H2040"\w* \w to|strong="H2490"\w* \w the|strong="H3605"\w* ground. +\q2 \w He|strong="H3605"\w* \w has|strong="H3063"\w* \w profaned|strong="H2490"\w* \w the|strong="H3605"\w* \w kingdom|strong="H4467"\w* \w and|strong="H3063"\w* \w its|strong="H3605"\w* \w princes|strong="H8269"\w*. +\b +\q1 +\v 3 \w He|strong="H3605"\w* \w has|strong="H3478"\w* \w cut|strong="H1438"\w* \w off|strong="H1438"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w horn|strong="H7161"\w* \w of|strong="H6440"\w* \w Israel|strong="H3478"\w* \w in|strong="H3478"\w* \w fierce|strong="H2750"\w* \w anger|strong="H6440"\w*. +\q2 \w He|strong="H3605"\w* \w has|strong="H3478"\w* \w drawn|strong="H7725"\w* \w back|strong="H7725"\w* \w his|strong="H3605"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w from|strong="H7725"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* enemy. +\q1 \w He|strong="H3605"\w* \w has|strong="H3478"\w* \w burned|strong="H1197"\w* \w up|strong="H1197"\w* \w Jacob|strong="H3290"\w* \w like|strong="H3478"\w* \w a|strong="H3068"\w* \w flaming|strong="H3852"\w* fire, +\q2 \w which|strong="H3478"\w* devours \w all|strong="H3605"\w* \w around|strong="H5439"\w*. +\b +\q1 +\v 4 \w He|strong="H3605"\w* \w has|strong="H5869"\w* \w bent|strong="H1869"\w* \w his|strong="H3605"\w* \w bow|strong="H7198"\w* \w like|strong="H8210"\w* \w an|strong="H2026"\w* \w enemy|strong="H6862"\w*. +\q2 \w He|strong="H3605"\w* \w has|strong="H5869"\w* \w stood|strong="H5324"\w* \w with|strong="H6726"\w* \w his|strong="H3605"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w as|strong="H5869"\w* \w an|strong="H2026"\w* \w adversary|strong="H6862"\w*. +\q1 \w He|strong="H3605"\w* \w has|strong="H5869"\w* \w killed|strong="H2026"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w were|strong="H5869"\w* \w pleasant|strong="H4261"\w* \w to|strong="H1323"\w* \w the|strong="H3605"\w* \w eye|strong="H5869"\w*. +\q2 \w In|strong="H5869"\w* \w the|strong="H3605"\w* tent \w of|strong="H1323"\w* \w the|strong="H3605"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Zion|strong="H6726"\w*, \w he|strong="H3605"\w* \w has|strong="H5869"\w* \w poured|strong="H8210"\w* \w out|strong="H8210"\w* \w his|strong="H3605"\w* \w wrath|strong="H2534"\w* \w like|strong="H8210"\w* fire. +\b +\q1 +\v 5 \w The|strong="H3605"\w* Lord \w has|strong="H1961"\w* \w become|strong="H1961"\w* \w as|strong="H1961"\w* \w an|strong="H1961"\w* enemy. +\q2 \w He|strong="H3605"\w* \w has|strong="H1961"\w* \w swallowed|strong="H1104"\w* \w up|strong="H1104"\w* \w Israel|strong="H3478"\w*. +\q1 \w He|strong="H3605"\w* \w has|strong="H1961"\w* \w swallowed|strong="H1104"\w* \w up|strong="H1104"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* palaces. +\q2 \w He|strong="H3605"\w* \w has|strong="H1961"\w* \w destroyed|strong="H7843"\w* \w his|strong="H3605"\w* \w strongholds|strong="H4013"\w*. +\q2 \w He|strong="H3605"\w* \w has|strong="H1961"\w* \w multiplied|strong="H7235"\w* \w mourning|strong="H8386"\w* \w and|strong="H3063"\w* lamentation \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Judah|strong="H3063"\w*. +\b +\q1 +\v 6 \w He|strong="H3068"\w* \w has|strong="H3068"\w* \w violently|strong="H2554"\w* taken \w away|strong="H2554"\w* \w his|strong="H3068"\w* \w tabernacle|strong="H7900"\w*, +\q2 \w as|strong="H3068"\w* if \w it|strong="H3068"\w* \w were|strong="H4428"\w* \w a|strong="H3068"\w* \w garden|strong="H1588"\w*. +\q1 \w He|strong="H3068"\w* \w has|strong="H3068"\w* \w destroyed|strong="H7843"\w* \w his|strong="H3068"\w* \w place|strong="H4150"\w* \w of|strong="H4428"\w* \w assembly|strong="H4150"\w*. +\q2 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* caused \w solemn|strong="H4150"\w* \w assembly|strong="H4150"\w* \w and|strong="H3068"\w* \w Sabbath|strong="H7676"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w forgotten|strong="H7911"\w* \w in|strong="H3068"\w* \w Zion|strong="H6726"\w*. +\q2 \w In|strong="H3068"\w* \w the|strong="H3068"\w* \w indignation|strong="H2195"\w* \w of|strong="H4428"\w* \w his|strong="H3068"\w* \w anger|strong="H2195"\w*, \w he|strong="H3068"\w* \w has|strong="H3068"\w* \w despised|strong="H5006"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w priest|strong="H3548"\w*. +\b +\q1 +\v 7 \w The|strong="H5414"\w* \w Lord|strong="H3068"\w* \w has|strong="H3068"\w* \w cast|strong="H5414"\w* \w off|strong="H2186"\w* \w his|strong="H5414"\w* \w altar|strong="H4196"\w*. +\q2 \w He|strong="H3117"\w* \w has|strong="H3068"\w* \w abhorred|strong="H5010"\w* \w his|strong="H5414"\w* \w sanctuary|strong="H4720"\w*. +\q1 \w He|strong="H3117"\w* \w has|strong="H3068"\w* \w given|strong="H5414"\w* \w the|strong="H5414"\w* \w walls|strong="H2346"\w* \w of|strong="H1004"\w* \w her|strong="H5414"\w* palaces \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H1004"\w* \w the|strong="H5414"\w* enemy. +\q2 \w They|strong="H3117"\w* \w have|strong="H3068"\w* \w made|strong="H5414"\w* \w a|strong="H3068"\w* \w noise|strong="H6963"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, +\q2 \w as|strong="H3117"\w* \w in|strong="H3068"\w* \w the|strong="H5414"\w* \w day|strong="H3117"\w* \w of|strong="H1004"\w* \w a|strong="H3068"\w* \w solemn|strong="H4150"\w* \w assembly|strong="H4150"\w*. +\b +\q1 +\v 8 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w purposed|strong="H2803"\w* \w to|strong="H7725"\w* \w destroy|strong="H7843"\w* \w the|strong="H3068"\w* \w wall|strong="H2346"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w daughter|strong="H1323"\w* \w of|strong="H3068"\w* \w Zion|strong="H6726"\w*. +\q2 \w He|strong="H3068"\w* \w has|strong="H3068"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w the|strong="H3068"\w* \w line|strong="H6957"\w*. +\q2 \w He|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w withdrawn|strong="H7725"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w* \w from|strong="H7725"\w* \w destroying|strong="H7843"\w*; +\q1 \w He|strong="H3068"\w* \w has|strong="H3068"\w* \w made|strong="H7725"\w* \w the|strong="H3068"\w* \w rampart|strong="H2426"\w* \w and|strong="H3068"\w* \w wall|strong="H2346"\w* lament. +\q2 \w They|strong="H3068"\w* languish \w together|strong="H3162"\w*. +\b +\q1 +\v 9 \w Her|strong="H4672"\w* \w gates|strong="H8179"\w* \w have|strong="H3068"\w* \w sunk|strong="H2883"\w* into \w the|strong="H3068"\w* ground. +\q2 \w He|strong="H3068"\w* \w has|strong="H3068"\w* \w destroyed|strong="H7665"\w* \w and|strong="H3068"\w* \w broken|strong="H7665"\w* \w her|strong="H4672"\w* \w bars|strong="H1280"\w*. +\q1 \w Her|strong="H4672"\w* \w king|strong="H4428"\w* \w and|strong="H3068"\w* \w her|strong="H4672"\w* \w princes|strong="H8269"\w* \w are|strong="H1471"\w* \w among|strong="H4672"\w* \w the|strong="H3068"\w* \w nations|strong="H1471"\w* \w where|strong="H3808"\w* \w the|strong="H3068"\w* \w law|strong="H8451"\w* \w is|strong="H3068"\w* \w not|strong="H3808"\w*. +\q2 \w Yes|strong="H1571"\w*, \w her|strong="H4672"\w* \w prophets|strong="H5030"\w* \w find|strong="H4672"\w* \w no|strong="H3808"\w* \w vision|strong="H2377"\w* \w from|strong="H1471"\w* \w Yahweh|strong="H3068"\w*. +\b +\q1 +\v 10 \w The|strong="H5921"\w* \w elders|strong="H2205"\w* \w of|strong="H1323"\w* \w the|strong="H5921"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Zion|strong="H6726"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w ground|strong="H6083"\w*. +\q2 \w They|strong="H5921"\w* \w keep|strong="H3427"\w* \w silence|strong="H1826"\w*. +\q1 \w They|strong="H5921"\w* \w have|strong="H1323"\w* \w cast|strong="H5927"\w* \w up|strong="H5927"\w* \w dust|strong="H6083"\w* \w on|strong="H5921"\w* \w their|strong="H5921"\w* \w heads|strong="H7218"\w*. +\q2 \w They|strong="H5921"\w* \w have|strong="H1323"\w* \w clothed|strong="H2296"\w* \w themselves|strong="H7218"\w* \w with|strong="H5921"\w* \w sackcloth|strong="H8242"\w*. +\q2 \w The|strong="H5921"\w* \w virgins|strong="H1330"\w* \w of|strong="H1323"\w* \w Jerusalem|strong="H3389"\w* \w hang|strong="H3389"\w* \w down|strong="H3381"\w* \w their|strong="H5921"\w* \w heads|strong="H7218"\w* \w to|strong="H3381"\w* \w the|strong="H5921"\w* \w ground|strong="H6083"\w*. +\b +\q1 +\v 11 \w My|strong="H5921"\w* \w eyes|strong="H5869"\w* \w fail|strong="H3615"\w* \w with|strong="H5921"\w* \w tears|strong="H1832"\w*. +\q2 \w My|strong="H5921"\w* \w heart|strong="H4578"\w* \w is|strong="H5869"\w* \w troubled|strong="H2560"\w*. +\q1 \w My|strong="H5921"\w* bile \w is|strong="H5869"\w* \w poured|strong="H8210"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* earth, +\q2 \w because|strong="H5921"\w* \w of|strong="H1323"\w* \w the|strong="H5921"\w* \w destruction|strong="H7667"\w* \w of|strong="H1323"\w* \w the|strong="H5921"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w my|strong="H5921"\w* \w people|strong="H5971"\w*, +\q2 \w because|strong="H5921"\w* \w the|strong="H5921"\w* young \w children|strong="H5768"\w* \w and|strong="H5971"\w* \w the|strong="H5921"\w* \w infants|strong="H5768"\w* \w swoon|strong="H5848"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w streets|strong="H7339"\w* \w of|strong="H1323"\w* \w the|strong="H5921"\w* \w city|strong="H7151"\w*. +\b +\q1 +\v 12 \w They|strong="H5315"\w* ask \w their|strong="H8210"\w* mothers, +\q2 “Where \w is|strong="H5315"\w* \w grain|strong="H1715"\w* \w and|strong="H5892"\w* \w wine|strong="H3196"\w*?” +\q2 when \w they|strong="H5315"\w* \w swoon|strong="H5848"\w* \w as|strong="H5315"\w* \w the|strong="H5892"\w* \w wounded|strong="H2491"\w* \w in|strong="H5315"\w* \w the|strong="H5892"\w* \w streets|strong="H7339"\w* \w of|strong="H5892"\w* \w the|strong="H5892"\w* \w city|strong="H5892"\w*, +\q2 when \w their|strong="H8210"\w* \w soul|strong="H5315"\w* \w is|strong="H5315"\w* \w poured|strong="H8210"\w* \w out|strong="H8210"\w* \w into|strong="H5892"\w* \w their|strong="H8210"\w* mothers’ \w bosom|strong="H2436"\w*. +\b +\q1 +\v 13 \w What|strong="H4100"\w* \w shall|strong="H1323"\w* \w I|strong="H3588"\w* \w testify|strong="H5749"\w* \w to|strong="H3389"\w* \w you|strong="H3588"\w*? +\q2 \w What|strong="H4100"\w* \w shall|strong="H1323"\w* \w I|strong="H3588"\w* \w liken|strong="H1819"\w* \w to|strong="H3389"\w* \w you|strong="H3588"\w*, \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Jerusalem|strong="H3389"\w*? +\q1 \w What|strong="H4100"\w* \w shall|strong="H1323"\w* \w I|strong="H3588"\w* \w compare|strong="H1819"\w* \w to|strong="H3389"\w* \w you|strong="H3588"\w*, +\q2 \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H4310"\w* \w comfort|strong="H5162"\w* \w you|strong="H3588"\w*, \w virgin|strong="H1330"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Zion|strong="H6726"\w*? +\q1 \w For|strong="H3588"\w* \w your|strong="H3588"\w* \w breach|strong="H7667"\w* \w is|strong="H4310"\w* \w as|strong="H3389"\w* big \w as|strong="H3389"\w* \w the|strong="H3588"\w* \w sea|strong="H3220"\w*. +\q2 \w Who|strong="H4310"\w* \w can|strong="H4310"\w* \w heal|strong="H7495"\w* \w you|strong="H3588"\w*? +\b +\q1 +\v 14 \w Your|strong="H5921"\w* \w prophets|strong="H5030"\w* \w have|strong="H5030"\w* \w seen|strong="H2372"\w* \w false|strong="H7723"\w* \w and|strong="H7725"\w* \w foolish|strong="H8602"\w* \w visions|strong="H7723"\w* \w for|strong="H5921"\w* \w you|strong="H5921"\w*. +\q2 \w They|strong="H3808"\w* \w have|strong="H5030"\w* \w not|strong="H3808"\w* \w uncovered|strong="H1540"\w* \w your|strong="H5921"\w* \w iniquity|strong="H5771"\w*, +\q2 \w to|strong="H7725"\w* \w reverse|strong="H7725"\w* \w your|strong="H5921"\w* \w captivity|strong="H7622"\w*, +\q2 \w but|strong="H3808"\w* \w have|strong="H5030"\w* \w seen|strong="H2372"\w* \w for|strong="H5921"\w* \w you|strong="H5921"\w* \w false|strong="H7723"\w* revelations \w and|strong="H7725"\w* causes \w of|strong="H5921"\w* \w banishment|strong="H4065"\w*. +\b +\q1 +\v 15 \w All|strong="H3605"\w* \w that|strong="H3605"\w* \w pass|strong="H5674"\w* \w by|strong="H5921"\w* \w clap|strong="H5606"\w* \w their|strong="H3605"\w* \w hands|strong="H3709"\w* \w at|strong="H5921"\w* \w you|strong="H3605"\w*. +\q2 \w They|strong="H5921"\w* \w hiss|strong="H8319"\w* \w and|strong="H5892"\w* \w wag|strong="H5128"\w* \w their|strong="H3605"\w* \w head|strong="H7218"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Jerusalem|strong="H3389"\w*, saying, +\q1 “\w Is|strong="H1870"\w* \w this|strong="H2063"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w that|strong="H3605"\w* \w men|strong="H7218"\w* called ‘\w The|strong="H3605"\w* \w perfection|strong="H3632"\w* \w of|strong="H1323"\w* \w beauty|strong="H3308"\w*, +\q2 \w the|strong="H3605"\w* \w joy|strong="H4885"\w* \w of|strong="H1323"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* earth’?” +\b +\q1 +\v 16 \w All|strong="H3605"\w* \w your|strong="H3605"\w* enemies \w have|strong="H4672"\w* \w opened|strong="H6475"\w* \w their|strong="H3605"\w* \w mouth|strong="H6310"\w* \w wide|strong="H6310"\w* \w against|strong="H5921"\w* \w you|strong="H3605"\w*. +\q2 \w They|strong="H3117"\w* \w hiss|strong="H8319"\w* \w and|strong="H3117"\w* \w gnash|strong="H2786"\w* \w their|strong="H3605"\w* \w teeth|strong="H8127"\w*. +\q2 \w They|strong="H3117"\w* \w say|strong="H6310"\w*, “\w We|strong="H3117"\w* \w have|strong="H4672"\w* \w swallowed|strong="H1104"\w* \w her|strong="H3605"\w* \w up|strong="H1104"\w*. +\q1 \w Certainly|strong="H7200"\w* \w this|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H7200"\w* \w we|strong="H3068"\w* \w looked|strong="H7200"\w* \w for|strong="H5921"\w*. +\q2 \w We|strong="H3117"\w* \w have|strong="H4672"\w* \w found|strong="H4672"\w* \w it|strong="H5921"\w*. +\q2 \w We|strong="H3117"\w* \w have|strong="H4672"\w* \w seen|strong="H7200"\w* \w it|strong="H5921"\w*.” +\b +\q1 +\v 17 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w* \w that|strong="H3117"\w* \w which|strong="H3068"\w* \w he|strong="H3117"\w* \w planned|strong="H2161"\w*. +\q2 \w He|strong="H3117"\w* \w has|strong="H3068"\w* \w fulfilled|strong="H6213"\w* \w his|strong="H3068"\w* word \w that|strong="H3117"\w* \w he|strong="H3117"\w* \w commanded|strong="H6680"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w old|strong="H6924"\w*. +\q1 \w He|strong="H3117"\w* \w has|strong="H3068"\w* \w thrown|strong="H2040"\w* \w down|strong="H2040"\w*, +\q2 \w and|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w pitied|strong="H2550"\w*. +\q1 \w He|strong="H3117"\w* \w has|strong="H3068"\w* \w caused|strong="H6213"\w* \w the|strong="H5921"\w* \w enemy|strong="H6862"\w* \w to|strong="H3068"\w* \w rejoice|strong="H8055"\w* \w over|strong="H5921"\w* \w you|strong="H6680"\w*. +\q2 \w He|strong="H3117"\w* \w has|strong="H3068"\w* \w exalted|strong="H7311"\w* \w the|strong="H5921"\w* \w horn|strong="H7161"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w adversaries|strong="H6862"\w*. +\b +\q1 +\v 18 \w Their|strong="H5414"\w* \w heart|strong="H3820"\w* \w cried|strong="H6817"\w* \w to|strong="H3381"\w* \w the|strong="H5414"\w* Lord. +\q2 \w O|strong="H3068"\w* \w wall|strong="H2346"\w* \w of|strong="H1323"\w* \w the|strong="H5414"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Zion|strong="H6726"\w*, +\q2 \w let|strong="H5414"\w* \w tears|strong="H1832"\w* \w run|strong="H3381"\w* \w down|strong="H3381"\w* \w like|strong="H3381"\w* \w a|strong="H3068"\w* \w river|strong="H5158"\w* \w day|strong="H3119"\w* \w and|strong="H5869"\w* \w night|strong="H3915"\w*. +\q1 \w Give|strong="H5414"\w* \w yourself|strong="H3820"\w* \w no|strong="H5414"\w* \w relief|strong="H6314"\w*. +\q2 Don’t \w let|strong="H5414"\w* \w your|strong="H5414"\w* \w eyes|strong="H5869"\w* \w rest|strong="H1826"\w*. +\b +\q1 +\v 19 \w Arise|strong="H6965"\w*, \w cry|strong="H7442"\w* \w out|strong="H8210"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w night|strong="H3915"\w*, +\q2 \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w beginning|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H3605"\w* watches! +\q1 \w Pour|strong="H8210"\w* \w out|strong="H8210"\w* \w your|strong="H3605"\w* \w heart|strong="H3820"\w* \w like|strong="H3820"\w* \w water|strong="H4325"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w face|strong="H6440"\w* \w of|strong="H7218"\w* \w the|strong="H3605"\w* Lord. +\q2 \w Lift|strong="H5375"\w* \w up|strong="H6965"\w* \w your|strong="H3605"\w* \w hands|strong="H3709"\w* \w toward|strong="H5921"\w* \w him|strong="H6440"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w life|strong="H5315"\w* \w of|strong="H7218"\w* \w your|strong="H3605"\w* young \w children|strong="H5768"\w*, +\q2 \w who|strong="H3605"\w* \w faint|strong="H5848"\w* \w for|strong="H5921"\w* \w hunger|strong="H7458"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w head|strong="H7218"\w* \w of|strong="H7218"\w* \w every|strong="H3605"\w* \w street|strong="H2351"\w*. +\b +\q1 +\v 20 “\w Look|strong="H7200"\w*, \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w see|strong="H7200"\w* \w to|strong="H3068"\w* \w whom|strong="H4310"\w* \w you|strong="H7200"\w* \w have|strong="H3068"\w* \w done|strong="H5953"\w* \w thus|strong="H3541"\w*! +\q2 \w Should|strong="H3068"\w* \w the|strong="H7200"\w* women eat \w their|strong="H3068"\w* \w offspring|strong="H6529"\w*, +\q2 \w the|strong="H7200"\w* \w children|strong="H5768"\w* \w that|strong="H7200"\w* \w they|strong="H3068"\w* held \w and|strong="H3068"\w* bounced \w on|strong="H7200"\w* \w their|strong="H3068"\w* knees? +\q2 \w Should|strong="H3068"\w* \w the|strong="H7200"\w* \w priest|strong="H3548"\w* \w and|strong="H3068"\w* \w the|strong="H7200"\w* \w prophet|strong="H5030"\w* \w be|strong="H3068"\w* \w killed|strong="H2026"\w* \w in|strong="H3068"\w* \w the|strong="H7200"\w* \w sanctuary|strong="H4720"\w* \w of|strong="H3068"\w* \w the|strong="H7200"\w* \w Lord|strong="H3068"\w*? +\b +\q1 +\v 21 “\w The|strong="H3117"\w* \w youth|strong="H5288"\w* \w and|strong="H3117"\w* \w the|strong="H3117"\w* \w old|strong="H2205"\w* \w man|strong="H5288"\w* \w lie|strong="H7901"\w* \w on|strong="H3117"\w* \w the|strong="H3117"\w* ground \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w streets|strong="H2351"\w*. +\q2 \w My|strong="H5307"\w* \w virgins|strong="H1330"\w* \w and|strong="H3117"\w* \w my|strong="H5307"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w have|strong="H2550"\w* \w fallen|strong="H5307"\w* \w by|strong="H3117"\w* \w the|strong="H3117"\w* \w sword|strong="H2719"\w*. +\q1 \w You|strong="H3117"\w* \w have|strong="H2550"\w* \w killed|strong="H2026"\w* \w them|strong="H2026"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H3808"\w* anger. +\q2 \w You|strong="H3117"\w* \w have|strong="H2550"\w* \w slaughtered|strong="H2873"\w*, \w and|strong="H3117"\w* \w not|strong="H3808"\w* \w pitied|strong="H2550"\w*. +\b +\q1 +\v 22 “\w You|strong="H3117"\w* \w have|strong="H1961"\w* \w called|strong="H7121"\w*, \w as|strong="H3117"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w solemn|strong="H4150"\w* \w assembly|strong="H4150"\w*, \w my|strong="H3068"\w* \w terrors|strong="H4032"\w* \w on|strong="H3117"\w* \w every|strong="H5439"\w* \w side|strong="H5439"\w*. +\q2 \w There|strong="H1961"\w* \w was|strong="H3068"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w that|strong="H3117"\w* \w escaped|strong="H6412"\w* \w or|strong="H3808"\w* \w remained|strong="H1961"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s anger. +\q2 \w My|strong="H3068"\w* enemy \w has|strong="H3068"\w* \w consumed|strong="H3615"\w* \w those|strong="H1961"\w* \w whom|strong="H7121"\w* \w I|strong="H3117"\w* \w have|strong="H1961"\w* cared \w for|strong="H7121"\w* \w and|strong="H3068"\w* \w brought|strong="H1961"\w* \w up|strong="H7235"\w*. +\c 3 +\q1 +\v 1 \w I|strong="H7200"\w* am \w the|strong="H7200"\w* \w man|strong="H1397"\w* \w who|strong="H1397"\w* has \w seen|strong="H7200"\w* \w affliction|strong="H6040"\w* +\q2 \w by|strong="H1397"\w* \w the|strong="H7200"\w* \w rod|strong="H7626"\w* \w of|strong="H7626"\w* \w his|strong="H7200"\w* \w wrath|strong="H5678"\w*. +\q1 +\v 2 \w He|strong="H3808"\w* has \w led|strong="H3212"\w* \w me|strong="H3808"\w* \w and|strong="H3212"\w* caused \w me|strong="H3808"\w* \w to|strong="H3212"\w* \w walk|strong="H3212"\w* \w in|strong="H3212"\w* \w darkness|strong="H2822"\w*, +\q2 \w and|strong="H3212"\w* \w not|strong="H3808"\w* \w in|strong="H3212"\w* light. +\q1 +\v 3 \w Surely|strong="H7725"\w* \w he|strong="H3117"\w* \w turns|strong="H7725"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w* \w against|strong="H3027"\w* \w me|strong="H7725"\w* +\q2 \w again|strong="H7725"\w* \w and|strong="H7725"\w* \w again|strong="H7725"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w* \w long|strong="H3117"\w*. +\b +\q1 +\v 4 \w He|strong="H5785"\w* \w has|strong="H1320"\w* made \w my|strong="H7665"\w* \w flesh|strong="H1320"\w* \w and|strong="H7665"\w* \w my|strong="H7665"\w* \w skin|strong="H5785"\w* \w old|strong="H1086"\w*. +\q2 \w He|strong="H5785"\w* \w has|strong="H1320"\w* \w broken|strong="H7665"\w* \w my|strong="H7665"\w* \w bones|strong="H6106"\w*. +\q1 +\v 5 \w He|strong="H5921"\w* has \w built|strong="H1129"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*, +\q2 \w and|strong="H1129"\w* \w surrounded|strong="H5362"\w* \w me|strong="H5921"\w* \w with|strong="H5921"\w* \w bitterness|strong="H7219"\w* \w and|strong="H1129"\w* \w hardship|strong="H8513"\w*. +\q1 +\v 6 \w He|strong="H3427"\w* has made \w me|strong="H4191"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w dark|strong="H4285"\w* \w places|strong="H4285"\w*, +\q2 \w as|strong="H3427"\w* \w those|strong="H3427"\w* \w who|strong="H3427"\w* have \w been|strong="H5769"\w* \w long|strong="H5769"\w* \w dead|strong="H4191"\w*. +\b +\q1 +\v 7 \w He|strong="H3808"\w* \w has|strong="H3318"\w* \w walled|strong="H1443"\w* \w me|strong="H1157"\w* \w about|strong="H1157"\w*, \w so|strong="H3808"\w* \w that|strong="H3808"\w* \w I|strong="H3808"\w* \w can|strong="H3808"\w*’t \w go|strong="H3318"\w* \w out|strong="H3318"\w*. +\q2 \w He|strong="H3808"\w* \w has|strong="H3318"\w* \w made|strong="H3513"\w* \w my|strong="H3318"\w* \w chain|strong="H5178"\w* \w heavy|strong="H3513"\w*. +\q1 +\v 8 \w Yes|strong="H3588"\w*, \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w cry|strong="H2199"\w*, \w and|strong="H8605"\w* \w call|strong="H7768"\w* \w for|strong="H3588"\w* \w help|strong="H7768"\w*, +\q2 \w he|strong="H3588"\w* shuts \w out|strong="H2199"\w* \w my|strong="H3588"\w* \w prayer|strong="H8605"\w*. +\q1 +\v 9 He has \w walled|strong="H1443"\w* \w up|strong="H1443"\w* \w my|strong="H1443"\w* \w ways|strong="H1870"\w* \w with|strong="H1870"\w* \w cut|strong="H1496"\w* \w stone|strong="H1496"\w*. +\q2 He has \w made|strong="H5753"\w* \w my|strong="H1443"\w* \w paths|strong="H5410"\w* \w crooked|strong="H5753"\w*. +\b +\q1 +\v 10 \w He|strong="H1931"\w* \w is|strong="H1931"\w* to me \w as|strong="H4565"\w* \w a|strong="H3068"\w* \w bear|strong="H1677"\w* lying \w in|strong="H1931"\w* wait, +\q2 \w as|strong="H4565"\w* \w a|strong="H3068"\w* lion \w in|strong="H1931"\w* \w hiding|strong="H4565"\w*. +\q1 +\v 11 \w He|strong="H7760"\w* has \w turned|strong="H5493"\w* \w away|strong="H5493"\w* \w my|strong="H7760"\w* \w path|strong="H1870"\w*, +\q2 \w and|strong="H1870"\w* pulled \w me|strong="H7760"\w* \w in|strong="H5493"\w* \w pieces|strong="H6582"\w*. +\q2 \w He|strong="H7760"\w* has \w made|strong="H7760"\w* \w me|strong="H7760"\w* \w desolate|strong="H8076"\w*. +\q1 +\v 12 He has \w bent|strong="H1869"\w* \w his|strong="H1869"\w* \w bow|strong="H7198"\w*, +\q2 \w and|strong="H7198"\w* \w set|strong="H5324"\w* \w me|strong="H5324"\w* as \w a|strong="H3068"\w* \w mark|strong="H4307"\w* for \w the|strong="H1869"\w* \w arrow|strong="H2671"\w*. +\b +\q1 +\v 13 \w He|strong="H1121"\w* \w has|strong="H1121"\w* caused \w the|strong="H1121"\w* shafts \w of|strong="H1121"\w* \w his|strong="H1121"\w* quiver \w to|strong="H1121"\w* enter into my \w kidneys|strong="H3629"\w*. +\q2 +\v 14 \w I|strong="H3117"\w* \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w derision|strong="H7814"\w* \w to|strong="H1961"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w*, +\q2 \w and|strong="H3117"\w* \w their|strong="H3605"\w* \w song|strong="H5058"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w* \w long|strong="H3117"\w*. +\q1 +\v 15 He has \w filled|strong="H7646"\w* \w me|strong="H7301"\w* \w with|strong="H7646"\w* \w bitterness|strong="H4844"\w*. +\q2 He has \w stuffed|strong="H7646"\w* \w me|strong="H7301"\w* \w with|strong="H7646"\w* \w wormwood|strong="H3939"\w*. +\b +\q1 +\v 16 He has also \w broken|strong="H1638"\w* \w my|strong="H1638"\w* \w teeth|strong="H8127"\w* \w with|strong="H8127"\w* \w gravel|strong="H2687"\w*. +\q2 He has \w covered|strong="H3728"\w* me \w with|strong="H8127"\w* ashes. +\q1 +\v 17 \w You|strong="H5315"\w* \w have|strong="H7965"\w* \w removed|strong="H2186"\w* \w my|strong="H2186"\w* \w soul|strong="H5315"\w* \w far|strong="H5315"\w* \w away|strong="H2186"\w* \w from|strong="H5315"\w* \w peace|strong="H7965"\w*. +\q2 \w I|strong="H5315"\w* forgot \w prosperity|strong="H7965"\w*. +\q1 +\v 18 \w I|strong="H3068"\w* said, “\w My|strong="H3068"\w* \w strength|strong="H5331"\w* \w has|strong="H3068"\w* perished, +\q2 along \w with|strong="H3068"\w* \w my|strong="H3068"\w* \w expectation|strong="H8431"\w* \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.” +\b +\q1 +\v 19 \w Remember|strong="H2142"\w* \w my|strong="H2142"\w* \w affliction|strong="H6040"\w* \w and|strong="H6040"\w* \w my|strong="H2142"\w* \w misery|strong="H6040"\w*, +\q2 \w the|strong="H2142"\w* \w wormwood|strong="H3939"\w* \w and|strong="H6040"\w* \w the|strong="H2142"\w* \w bitterness|strong="H7219"\w*. +\q1 +\v 20 \w My|strong="H5921"\w* \w soul|strong="H5315"\w* \w still|strong="H2142"\w* \w remembers|strong="H2142"\w* \w them|strong="H5921"\w*, +\q2 \w and|strong="H5315"\w* \w is|strong="H5315"\w* \w bowed|strong="H7743"\w* \w down|strong="H7743"\w* \w within|strong="H5921"\w* \w me|strong="H5315"\w*. +\q1 +\v 21 \w This|strong="H2063"\w* \w I|strong="H5921"\w* \w recall|strong="H7725"\w* \w to|strong="H7725"\w* \w my|strong="H5921"\w* \w mind|strong="H3820"\w*; +\q2 \w therefore|strong="H3651"\w* \w I|strong="H5921"\w* \w have|strong="H3176"\w* \w hope|strong="H3176"\w*. +\b +\q1 +\v 22 \w It|strong="H3588"\w* \w is|strong="H3068"\w* \w because|strong="H3588"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s loving \w kindnesses|strong="H2617"\w* \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w are|strong="H3068"\w* \w not|strong="H3808"\w* \w consumed|strong="H3615"\w*, +\q2 \w because|strong="H3588"\w* \w his|strong="H3068"\w* \w mercies|strong="H7356"\w* don’t \w fail|strong="H3615"\w*. +\q1 +\v 23 \w They|strong="H1242"\w* \w are|strong="H7227"\w* \w new|strong="H2319"\w* \w every|strong="H1242"\w* \w morning|strong="H1242"\w*. +\q2 \w Great|strong="H7227"\w* \w is|strong="H7227"\w* your faithfulness. +\q1 +\v 24 “\w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w my|strong="H3068"\w* \w portion|strong="H2506"\w*,” says \w my|strong="H3068"\w* \w soul|strong="H5315"\w*. +\q2 “\w Therefore|strong="H3651"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w hope|strong="H3176"\w* \w in|strong="H5921"\w* \w him|strong="H5921"\w*.” +\b +\q1 +\v 25 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w* \w to|strong="H3068"\w* \w those|strong="H5315"\w* \w who|strong="H3068"\w* \w wait|strong="H6960"\w* \w for|strong="H3068"\w* \w him|strong="H5315"\w*, +\q2 \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w soul|strong="H5315"\w* \w who|strong="H3068"\w* \w seeks|strong="H1875"\w* \w him|strong="H5315"\w*. +\q1 +\v 26 \w It|strong="H3068"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w* \w that|strong="H3068"\w* \w a|strong="H3068"\w* \w man|strong="H2896"\w* \w should|strong="H3068"\w* \w hope|strong="H3175"\w* +\q2 \w and|strong="H3068"\w* quietly \w wait|strong="H1748"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w salvation|strong="H8668"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 +\v 27 \w It|strong="H3588"\w* \w is|strong="H2896"\w* \w good|strong="H2896"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H1397"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w bear|strong="H5375"\w* \w the|strong="H3588"\w* \w yoke|strong="H5923"\w* \w in|strong="H2896"\w* \w his|strong="H5375"\w* \w youth|strong="H5271"\w*. +\b +\q1 +\v 28 Let \w him|strong="H5921"\w* \w sit|strong="H3427"\w* alone \w and|strong="H3427"\w* \w keep|strong="H3427"\w* \w silence|strong="H1826"\w*, +\q2 \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w laid|strong="H5190"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*. +\q1 +\v 29 \w Let|strong="H5414"\w* \w him|strong="H5414"\w* \w put|strong="H5414"\w* \w his|strong="H5414"\w* \w mouth|strong="H6310"\w* \w in|strong="H5414"\w* \w the|strong="H5414"\w* \w dust|strong="H6083"\w*, +\q2 \w if|strong="H3426"\w* \w it|strong="H5414"\w* \w is|strong="H3426"\w* \w so|strong="H5414"\w* \w that|strong="H5414"\w* \w there|strong="H3426"\w* \w may|strong="H5414"\w* \w be|strong="H3426"\w* \w hope|strong="H8615"\w*. +\q1 +\v 30 \w Let|strong="H5414"\w* \w him|strong="H5414"\w* \w give|strong="H5414"\w* \w his|strong="H5414"\w* \w cheek|strong="H3895"\w* \w to|strong="H5414"\w* \w him|strong="H5414"\w* \w who|strong="H5221"\w* \w strikes|strong="H5221"\w* \w him|strong="H5414"\w*. +\q2 \w Let|strong="H5414"\w* \w him|strong="H5414"\w* \w be|strong="H5414"\w* \w filled|strong="H7646"\w* \w full|strong="H7646"\w* \w of|strong="H7646"\w* \w reproach|strong="H2781"\w*. +\b +\q1 +\v 31 \w For|strong="H3588"\w* \w the|strong="H3588"\w* Lord \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w cast|strong="H2186"\w* \w off|strong="H2186"\w* \w forever|strong="H5769"\w*. +\q2 +\v 32 \w For|strong="H3588"\w* \w though|strong="H3588"\w* \w he|strong="H3588"\w* \w causes|strong="H3013"\w* \w grief|strong="H3013"\w*, +\q2 \w yet|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H2617"\w* \w have|strong="H7355"\w* \w compassion|strong="H7355"\w* according \w to|strong="H2617"\w* \w the|strong="H3588"\w* \w multitude|strong="H7230"\w* \w of|strong="H7230"\w* \w his|strong="H3588"\w* loving \w kindnesses|strong="H2617"\w*. +\q1 +\v 33 \w For|strong="H3588"\w* \w he|strong="H3588"\w* \w does|strong="H3808"\w* \w not|strong="H3808"\w* \w afflict|strong="H6031"\w* \w willingly|strong="H3820"\w*, +\q2 \w nor|strong="H3808"\w* \w grieve|strong="H3013"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*. +\b +\q1 +\v 34 \w To|strong="H7272"\w* \w crush|strong="H1792"\w* \w under|strong="H8478"\w* \w foot|strong="H7272"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* prisoners \w of|strong="H8478"\w* \w the|strong="H3605"\w* earth, +\q2 +\v 35 \w to|strong="H6440"\w* \w turn|strong="H5186"\w* \w away|strong="H5186"\w* \w the|strong="H6440"\w* \w right|strong="H4941"\w* \w of|strong="H6440"\w* \w a|strong="H3068"\w* \w man|strong="H1397"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w Most|strong="H5945"\w* \w High|strong="H5945"\w*, +\q2 +\v 36 \w to|strong="H7200"\w* \w subvert|strong="H5791"\w* \w a|strong="H3068"\w* \w man|strong="H7200"\w* \w in|strong="H7200"\w* \w his|strong="H7200"\w* \w cause|strong="H7379"\w*, \w the|strong="H7200"\w* Lord doesn’t \w approve|strong="H7200"\w*. +\b +\q1 +\v 37 \w Who|strong="H4310"\w* \w is|strong="H2088"\w* \w he|strong="H3808"\w* \w who|strong="H4310"\w* says, \w and|strong="H2088"\w* \w it|strong="H1961"\w* \w comes|strong="H1961"\w* \w to|strong="H1961"\w* \w pass|strong="H1961"\w*, +\q2 \w when|strong="H1961"\w* \w the|strong="H6680"\w* Lord doesn’t \w command|strong="H6680"\w* \w it|strong="H1961"\w*? +\q1 +\v 38 Doesn’t \w evil|strong="H7451"\w* \w and|strong="H2896"\w* \w good|strong="H2896"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H6310"\w* \w the|strong="H3318"\w* \w mouth|strong="H6310"\w* \w of|strong="H6310"\w* \w the|strong="H3318"\w* \w Most|strong="H5945"\w* \w High|strong="H5945"\w*? +\q2 +\v 39 \w Why|strong="H4100"\w* \w should|strong="H4100"\w* \w a|strong="H3068"\w* \w living|strong="H2416"\w* \w man|strong="H1397"\w* complain, +\q2 \w a|strong="H3068"\w* \w man|strong="H1397"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* punishment \w of|strong="H5921"\w* \w his|strong="H5921"\w* \w sins|strong="H2399"\w*? +\b +\q1 +\v 40 \w Let|strong="H7725"\w* \w us|strong="H7725"\w* \w search|strong="H2713"\w* \w and|strong="H3068"\w* \w try|strong="H2713"\w* \w our|strong="H3068"\w* \w ways|strong="H1870"\w*, +\q2 \w and|strong="H3068"\w* \w turn|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 41 Let’s \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w our|strong="H5375"\w* \w heart|strong="H3824"\w* \w with|strong="H8064"\w* \w our|strong="H5375"\w* \w hands|strong="H3709"\w* \w to|strong="H3824"\w* \w God|strong="H8064"\w*\f + \fr 3:41 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w in|strong="H8064"\w* \w the|strong="H5375"\w* \w heavens|strong="H8064"\w*. +\q2 +\v 42 “\w We|strong="H5168"\w* \w have|strong="H3808"\w* \w transgressed|strong="H6586"\w* \w and|strong="H6586"\w* \w have|strong="H3808"\w* \w rebelled|strong="H4784"\w*. +\q2 \w You|strong="H3808"\w* \w have|strong="H3808"\w* \w not|strong="H3808"\w* \w pardoned|strong="H5545"\w*. +\b +\q1 +\v 43 “\w You|strong="H3808"\w* \w have|strong="H2550"\w* \w covered|strong="H5526"\w* us \w with|strong="H5526"\w* anger \w and|strong="H2026"\w* \w pursued|strong="H7291"\w* us. +\q2 \w You|strong="H3808"\w* \w have|strong="H2550"\w* \w killed|strong="H2026"\w*. +\q2 \w You|strong="H3808"\w* \w have|strong="H2550"\w* \w not|strong="H3808"\w* \w pitied|strong="H2550"\w*. +\q1 +\v 44 You have \w covered|strong="H5526"\w* yourself \w with|strong="H5674"\w* \w a|strong="H3068"\w* \w cloud|strong="H6051"\w*, +\q2 \w so|strong="H5674"\w* \w that|strong="H5674"\w* no \w prayer|strong="H8605"\w* \w can|strong="H8605"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w*. +\q1 +\v 45 \w You|strong="H7760"\w* \w have|strong="H5971"\w* \w made|strong="H7760"\w* \w us|strong="H7760"\w* \w an|strong="H7760"\w* off-scouring \w and|strong="H5971"\w* \w refuse|strong="H3973"\w* +\q2 \w in|strong="H7130"\w* \w the|strong="H7760"\w* \w middle|strong="H7130"\w* \w of|strong="H5971"\w* \w the|strong="H7760"\w* \w peoples|strong="H5971"\w*. +\b +\q1 +\v 46 “\w All|strong="H3605"\w* \w our|strong="H3605"\w* enemies \w have|strong="H3605"\w* \w opened|strong="H6475"\w* \w their|strong="H3605"\w* \w mouth|strong="H6310"\w* \w wide|strong="H6310"\w* \w against|strong="H5921"\w* \w us|strong="H5921"\w*. +\q2 +\v 47 \w Terror|strong="H6343"\w* \w and|strong="H1961"\w* \w the|strong="H1961"\w* \w pit|strong="H6354"\w* \w have|strong="H1961"\w* \w come|strong="H1961"\w* \w on|strong="H1961"\w* \w us|strong="H1961"\w*, +\q2 \w devastation|strong="H7612"\w* \w and|strong="H1961"\w* \w destruction|strong="H7667"\w*.” +\b +\q1 +\v 48 \w My|strong="H5921"\w* \w eye|strong="H5869"\w* runs \w down|strong="H3381"\w* \w with|strong="H5921"\w* \w streams|strong="H6388"\w* \w of|strong="H1323"\w* \w water|strong="H4325"\w*, +\q2 \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w destruction|strong="H7667"\w* \w of|strong="H1323"\w* \w the|strong="H5921"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w my|strong="H5921"\w* \w people|strong="H5971"\w*. +\q1 +\v 49 \w My|strong="H3808"\w* \w eye|strong="H5869"\w* \w pours|strong="H5064"\w* \w down|strong="H5064"\w* +\q2 \w and|strong="H5869"\w* doesn’t \w cease|strong="H1820"\w*, +\q2 \w without|strong="H3808"\w* \w any|strong="H3808"\w* \w intermission|strong="H2014"\w*, +\q1 +\v 50 \w until|strong="H5704"\w* \w Yahweh|strong="H3068"\w* \w looks|strong="H7200"\w* \w down|strong="H8259"\w*, +\q2 \w and|strong="H3068"\w* \w sees|strong="H7200"\w* \w from|strong="H5704"\w* \w heaven|strong="H8064"\w*. +\q1 +\v 51 \w My|strong="H3605"\w* \w eye|strong="H5869"\w* affects \w my|strong="H3605"\w* \w soul|strong="H5315"\w*, +\q2 \w because|strong="H3605"\w* \w of|strong="H1323"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w my|strong="H3605"\w* \w city|strong="H5892"\w*. +\b +\q1 +\v 52 \w They|strong="H2600"\w* have \w chased|strong="H6679"\w* \w me|strong="H6679"\w* relentlessly like \w a|strong="H3068"\w* \w bird|strong="H6833"\w*, +\q2 those who \w are|strong="H2600"\w* my enemies \w without|strong="H2600"\w* \w cause|strong="H2600"\w*. +\q1 +\v 53 They have \w cut|strong="H6789"\w* \w off|strong="H6789"\w* \w my|strong="H3034"\w* \w life|strong="H2416"\w* \w in|strong="H3034"\w* \w the|strong="H3034"\w* dungeon, +\q2 \w and|strong="H3034"\w* have \w cast|strong="H3034"\w* \w a|strong="H3068"\w* stone on \w me|strong="H6789"\w*. +\q1 +\v 54 \w Waters|strong="H4325"\w* \w flowed|strong="H6687"\w* \w over|strong="H5921"\w* \w my|strong="H5921"\w* \w head|strong="H7218"\w*. +\q2 \w I|strong="H5921"\w* said, “\w I|strong="H5921"\w* am \w cut|strong="H1504"\w* \w off|strong="H1504"\w*.” +\b +\q1 +\v 55 \w I|strong="H3068"\w* \w called|strong="H7121"\w* \w on|strong="H3068"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w*, \w Yahweh|strong="H3068"\w*, +\q2 out \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w lowest|strong="H8482"\w* dungeon. +\q1 +\v 56 \w You|strong="H6963"\w* \w heard|strong="H8085"\w* \w my|strong="H8085"\w* \w voice|strong="H6963"\w*: +\q2 “Don’t \w hide|strong="H5956"\w* \w your|strong="H8085"\w* \w ear|strong="H8085"\w* \w from|strong="H8085"\w* \w my|strong="H8085"\w* sighing, +\q2 \w and|strong="H6963"\w* \w my|strong="H8085"\w* \w cry|strong="H7775"\w*.” +\b +\q1 +\v 57 \w You|strong="H3117"\w* \w came|strong="H7126"\w* \w near|strong="H7126"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w called|strong="H7121"\w* \w on|strong="H3117"\w* \w you|strong="H3117"\w*. +\q2 \w You|strong="H3117"\w* \w said|strong="H7121"\w*, “Don’t \w be|strong="H3117"\w* \w afraid|strong="H3372"\w*.” +\b +\q1 +\v 58 Lord, \w you|strong="H5315"\w* \w have|strong="H7378"\w* \w pleaded|strong="H7378"\w* \w the|strong="H7378"\w* \w causes|strong="H7379"\w* \w of|strong="H5315"\w* \w my|strong="H7378"\w* \w soul|strong="H5315"\w*. +\q2 \w You|strong="H5315"\w* \w have|strong="H7378"\w* \w redeemed|strong="H1350"\w* \w my|strong="H7378"\w* \w life|strong="H5315"\w*. +\q1 +\v 59 \w Yahweh|strong="H3068"\w*, \w you|strong="H7200"\w* \w have|strong="H3068"\w* \w seen|strong="H7200"\w* \w my|strong="H3068"\w* \w wrong|strong="H4941"\w*. +\q2 \w Judge|strong="H8199"\w* \w my|strong="H3068"\w* \w cause|strong="H4941"\w*. +\q1 +\v 60 \w You|strong="H3605"\w* \w have|strong="H7200"\w* \w seen|strong="H7200"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w vengeance|strong="H5360"\w* +\q2 \w and|strong="H7200"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w plans|strong="H4284"\w* \w against|strong="H4284"\w* \w me|strong="H7200"\w*. +\b +\q1 +\v 61 \w You|strong="H3605"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w their|strong="H3605"\w* \w reproach|strong="H2781"\w*, \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w plans|strong="H4284"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*, +\q1 +\v 62 \w the|strong="H3605"\w* \w lips|strong="H8193"\w* \w of|strong="H3117"\w* \w those|strong="H3605"\w* \w that|strong="H3605"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*, +\q2 \w and|strong="H6965"\w* \w their|strong="H3605"\w* plots \w against|strong="H5921"\w* \w me|strong="H5921"\w* \w all|strong="H3605"\w* \w day|strong="H3117"\w* \w long|strong="H3117"\w*. +\q1 +\v 63 \w You|strong="H3427"\w* \w see|strong="H5027"\w* \w their|strong="H3427"\w* \w sitting|strong="H3427"\w* \w down|strong="H3427"\w* \w and|strong="H3427"\w* \w their|strong="H3427"\w* \w rising|strong="H7012"\w* \w up|strong="H3427"\w*. +\q2 I am \w their|strong="H3427"\w* \w song|strong="H4485"\w*. +\b +\q1 +\v 64 \w You|strong="H7725"\w* \w will|strong="H3068"\w* \w pay|strong="H7725"\w* \w them|strong="H7725"\w* \w back|strong="H7725"\w*, \w Yahweh|strong="H3068"\w*, +\q2 \w according|strong="H3027"\w* \w to|strong="H7725"\w* \w the|strong="H3068"\w* \w work|strong="H4639"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w hands|strong="H3027"\w*. +\q1 +\v 65 \w You|strong="H5414"\w* \w will|strong="H3820"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w hardness|strong="H4044"\w* \w of|strong="H3820"\w* \w heart|strong="H3820"\w*, +\q2 \w your|strong="H5414"\w* \w curse|strong="H8381"\w* \w to|strong="H5414"\w* \w them|strong="H5414"\w*. +\q1 +\v 66 \w You|strong="H7291"\w* \w will|strong="H3068"\w* \w pursue|strong="H7291"\w* \w them|strong="H7291"\w* \w in|strong="H3068"\w* anger, +\q2 \w and|strong="H3068"\w* \w destroy|strong="H8045"\w* \w them|strong="H7291"\w* \w from|strong="H8478"\w* \w under|strong="H8478"\w* \w the|strong="H3068"\w* \w heavens|strong="H8064"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\c 4 +\q1 +\v 1 How \w the|strong="H3605"\w* \w gold|strong="H2091"\w* \w has|strong="H3605"\w* \w become|strong="H2091"\w* \w dim|strong="H6004"\w*! +\q2 \w The|strong="H3605"\w* \w most|strong="H6944"\w* \w pure|strong="H2896"\w* \w gold|strong="H2091"\w* \w has|strong="H3605"\w* \w changed|strong="H8132"\w*! +\q1 \w The|strong="H3605"\w* stones \w of|strong="H7218"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H6944"\w* \w are|strong="H2896"\w* \w poured|strong="H8210"\w* \w out|strong="H8210"\w* +\q2 \w at|strong="H7218"\w* \w the|strong="H3605"\w* \w head|strong="H7218"\w* \w of|strong="H7218"\w* \w every|strong="H3605"\w* \w street|strong="H2351"\w*. +\b +\q1 +\v 2 \w The|strong="H3027"\w* \w precious|strong="H3368"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Zion|strong="H6726"\w*, +\q2 \w comparable|strong="H5537"\w* \w to|strong="H3027"\w* \w fine|strong="H6337"\w* \w gold|strong="H6337"\w*, +\q1 \w how|strong="H2803"\w* \w they|strong="H3027"\w* \w are|strong="H1121"\w* \w esteemed|strong="H2803"\w* \w as|strong="H2803"\w* \w earthen|strong="H2789"\w* \w pitchers|strong="H5035"\w*, +\q2 \w the|strong="H3027"\w* \w work|strong="H4639"\w* \w of|strong="H1121"\w* \w the|strong="H3027"\w* \w hands|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H3027"\w* \w potter|strong="H3335"\w*! +\b +\q1 +\v 3 \w Even|strong="H1571"\w* \w the|strong="H3588"\w* jackals \w offer|strong="H2502"\w* \w their|strong="H3588"\w* \w breast|strong="H7699"\w*. +\q2 \w They|strong="H3588"\w* \w nurse|strong="H3243"\w* \w their|strong="H3588"\w* \w young|strong="H1482"\w* \w ones|strong="H1482"\w*. +\q1 \w But|strong="H3588"\w* \w the|strong="H3588"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w my|strong="H3588"\w* \w people|strong="H5971"\w* \w has|strong="H3588"\w* become cruel, +\q2 \w like|strong="H4057"\w* \w the|strong="H3588"\w* \w ostriches|strong="H3283"\w* \w in|strong="H5971"\w* \w the|strong="H3588"\w* \w wilderness|strong="H4057"\w*. +\b +\q1 +\v 4 \w The|strong="H7592"\w* \w tongue|strong="H3956"\w* \w of|strong="H3899"\w* \w the|strong="H7592"\w* \w nursing|strong="H3243"\w* \w child|strong="H5768"\w* \w clings|strong="H1692"\w* \w to|strong="H3899"\w* \w the|strong="H7592"\w* \w roof|strong="H2441"\w* \w of|strong="H3899"\w* \w his|strong="H6566"\w* \w mouth|strong="H2441"\w* \w for|strong="H7592"\w* \w thirst|strong="H6772"\w*. +\q2 \w The|strong="H7592"\w* young \w children|strong="H5768"\w* \w ask|strong="H7592"\w* \w for|strong="H7592"\w* \w bread|strong="H3899"\w*, +\q2 \w and|strong="H3899"\w* no \w one|strong="H3956"\w* breaks \w it|strong="H6566"\w* \w for|strong="H7592"\w* \w them|strong="H1992"\w*. +\b +\q1 +\v 5 \w Those|strong="H5921"\w* who ate \w delicacies|strong="H4574"\w* \w are|strong="H8074"\w* \w desolate|strong="H8074"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w streets|strong="H2351"\w*. +\q2 \w Those|strong="H5921"\w* who \w were|strong="H5921"\w* brought \w up|strong="H5921"\w* \w in|strong="H5921"\w* \w purple|strong="H8438"\w* \w embrace|strong="H2263"\w* dunghills. +\b +\q1 +\v 6 \w For|strong="H3027"\w* \w the|strong="H3027"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1323"\w* \w the|strong="H3027"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w my|strong="H3027"\w* \w people|strong="H5971"\w* \w is|strong="H3027"\w* \w greater|strong="H1431"\w* \w than|strong="H3808"\w* \w the|strong="H3027"\w* \w sin|strong="H2403"\w* \w of|strong="H1323"\w* \w Sodom|strong="H5467"\w*, +\q2 \w which|strong="H5971"\w* \w was|strong="H3027"\w* \w overthrown|strong="H2015"\w* \w as|strong="H3644"\w* \w in|strong="H3027"\w* \w a|strong="H3068"\w* \w moment|strong="H7281"\w*. +\q2 \w No|strong="H3808"\w* \w hands|strong="H3027"\w* \w were|strong="H5971"\w* laid \w on|strong="H3027"\w* \w her|strong="H1323"\w*. +\b +\q1 +\v 7 Her nobles \w were|strong="H5139"\w* \w purer|strong="H2141"\w* \w than|strong="H6106"\w* \w snow|strong="H7950"\w*. +\q2 They \w were|strong="H5139"\w* \w whiter|strong="H6705"\w* \w than|strong="H6106"\w* \w milk|strong="H2461"\w*. +\q1 They \w were|strong="H5139"\w* more ruddy \w in|strong="H7950"\w* \w body|strong="H6106"\w* \w than|strong="H6106"\w* \w rubies|strong="H6443"\w*. +\q2 Their \w polishing|strong="H1508"\w* was \w like|strong="H7950"\w* \w sapphire|strong="H5601"\w*. +\b +\q1 +\v 8 \w Their|strong="H5921"\w* \w appearance|strong="H8389"\w* \w is|strong="H1961"\w* \w blacker|strong="H2821"\w* \w than|strong="H3808"\w* \w a|strong="H3068"\w* \w coal|strong="H7815"\w*. +\q2 \w They|strong="H3808"\w* \w are|strong="H6106"\w* \w not|strong="H3808"\w* \w known|strong="H5234"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w streets|strong="H2351"\w*. +\q1 \w Their|strong="H5921"\w* \w skin|strong="H5785"\w* clings \w to|strong="H1961"\w* \w their|strong="H5921"\w* \w bones|strong="H6106"\w*. +\q2 \w It|strong="H5921"\w* \w is|strong="H1961"\w* \w withered|strong="H3001"\w*. +\q2 \w It|strong="H5921"\w* \w has|strong="H1961"\w* \w become|strong="H1961"\w* \w like|strong="H1961"\w* \w wood|strong="H6086"\w*. +\b +\q1 +\v 9 \w Those|strong="H1992"\w* \w who|strong="H1992"\w* \w are|strong="H1992"\w* \w killed|strong="H2491"\w* \w with|strong="H2100"\w* \w the|strong="H1961"\w* \w sword|strong="H2719"\w* \w are|strong="H1992"\w* \w better|strong="H2896"\w* \w than|strong="H2896"\w* \w those|strong="H1992"\w* \w who|strong="H1992"\w* \w are|strong="H1992"\w* \w killed|strong="H2491"\w* \w with|strong="H2100"\w* \w hunger|strong="H7458"\w*; +\q2 \w for|strong="H7704"\w* \w these|strong="H1992"\w* \w pine|strong="H2100"\w* \w away|strong="H2100"\w*, \w stricken|strong="H1856"\w* \w through|strong="H1856"\w*, +\q2 \w for|strong="H7704"\w* lack \w of|strong="H7704"\w* \w the|strong="H1961"\w* \w fruits|strong="H8570"\w* \w of|strong="H7704"\w* \w the|strong="H1961"\w* \w field|strong="H7704"\w*. +\b +\q1 +\v 10 \w The|strong="H3027"\w* \w hands|strong="H3027"\w* \w of|strong="H1323"\w* \w the|strong="H3027"\w* \w pitiful|strong="H7362"\w* \w women|strong="H1323"\w* \w have|strong="H1961"\w* \w boiled|strong="H1310"\w* \w their|strong="H1961"\w* \w own|strong="H1961"\w* \w children|strong="H3206"\w*. +\q2 \w They|strong="H5971"\w* \w were|strong="H1961"\w* \w their|strong="H1961"\w* \w food|strong="H1262"\w* \w in|strong="H3027"\w* \w the|strong="H3027"\w* \w destruction|strong="H7667"\w* \w of|strong="H1323"\w* \w the|strong="H3027"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w my|strong="H1961"\w* \w people|strong="H5971"\w*. +\b +\q1 +\v 11 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w accomplished|strong="H3615"\w* \w his|strong="H3068"\w* \w wrath|strong="H2534"\w*. +\q2 \w He|strong="H3068"\w* \w has|strong="H3068"\w* \w poured|strong="H8210"\w* \w out|strong="H8210"\w* \w his|strong="H3068"\w* \w fierce|strong="H2740"\w* \w anger|strong="H2534"\w*. +\q1 \w He|strong="H3068"\w* \w has|strong="H3068"\w* \w kindled|strong="H3341"\w* \w a|strong="H3068"\w* \w fire|strong="H3341"\w* \w in|strong="H3068"\w* \w Zion|strong="H6726"\w*, +\q2 \w which|strong="H3068"\w* \w has|strong="H3068"\w* \w devoured|strong="H3615"\w* its \w foundations|strong="H3247"\w*. +\b +\q1 +\v 12 \w The|strong="H3605"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* earth didn’t believe, +\q2 \w neither|strong="H3808"\w* \w did|strong="H3808"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w world|strong="H8398"\w*, +\q2 \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w adversary|strong="H6862"\w* \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w enemy|strong="H6862"\w* \w would|strong="H4428"\w* enter into \w the|strong="H3605"\w* \w gates|strong="H8179"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*. +\b +\q1 +\v 13 \w It|strong="H7130"\w* \w is|strong="H6662"\w* \w because|strong="H5771"\w* \w of|strong="H1818"\w* \w the|strong="H3548"\w* \w sins|strong="H2403"\w* \w of|strong="H1818"\w* \w her|strong="H7130"\w* \w prophets|strong="H5030"\w* +\q2 \w and|strong="H3548"\w* \w the|strong="H3548"\w* \w iniquities|strong="H5771"\w* \w of|strong="H1818"\w* \w her|strong="H7130"\w* \w priests|strong="H3548"\w*, +\q2 \w that|strong="H3548"\w* \w have|strong="H5030"\w* \w shed|strong="H8210"\w* \w the|strong="H3548"\w* \w blood|strong="H1818"\w* \w of|strong="H1818"\w* \w the|strong="H3548"\w* \w just|strong="H6662"\w* \w in|strong="H7130"\w* \w the|strong="H3548"\w* \w middle|strong="H7130"\w* \w of|strong="H1818"\w* \w her|strong="H7130"\w*. +\b +\q1 +\v 14 \w They|strong="H3808"\w* \w wander|strong="H5128"\w* \w as|strong="H2351"\w* \w blind|strong="H5787"\w* \w men|strong="H5787"\w* \w in|strong="H3808"\w* \w the|strong="H5060"\w* \w streets|strong="H2351"\w*. +\q2 \w They|strong="H3808"\w* \w are|strong="H1818"\w* \w polluted|strong="H1351"\w* \w with|strong="H1351"\w* \w blood|strong="H1818"\w*, +\q2 \w So|strong="H3808"\w* \w that|strong="H3808"\w* \w men|strong="H5787"\w* \w can|strong="H3201"\w*’t \w touch|strong="H5060"\w* \w their|strong="H5060"\w* \w garments|strong="H3830"\w*. +\b +\q1 +\v 15 “\w Go|strong="H5493"\w* \w away|strong="H5493"\w*!” \w they|strong="H3588"\w* \w cried|strong="H7121"\w* \w to|strong="H7121"\w* \w them|strong="H7121"\w*. +\q2 “\w Unclean|strong="H2931"\w*! \w Go|strong="H5493"\w* \w away|strong="H5493"\w*! \w Go|strong="H5493"\w* \w away|strong="H5493"\w*! Don’t \w touch|strong="H5060"\w*! +\q1 \w When|strong="H3588"\w* \w they|strong="H3588"\w* fled \w away|strong="H5493"\w* \w and|strong="H1471"\w* \w wandered|strong="H5128"\w*, \w men|strong="H7121"\w* \w said|strong="H7121"\w* \w among|strong="H3808"\w* \w the|strong="H3588"\w* \w nations|strong="H1471"\w*, +\q2 “\w They|strong="H3588"\w* \w can|strong="H3254"\w*’t \w live|strong="H1481"\w* here \w any|strong="H5060"\w* \w more|strong="H3254"\w*.” +\b +\q1 +\v 16 \w Yahweh|strong="H3068"\w*’s \w anger|strong="H6440"\w* \w has|strong="H3068"\w* \w scattered|strong="H2505"\w* \w them|strong="H6440"\w*. +\q2 \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w pay|strong="H5027"\w* \w attention|strong="H6440"\w* \w to|strong="H3068"\w* \w them|strong="H6440"\w* \w any|strong="H5375"\w* \w more|strong="H3254"\w*. +\q1 \w They|strong="H3068"\w* didn’t \w respect|strong="H5027"\w* \w the|strong="H6440"\w* \w persons|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w priests|strong="H3548"\w*. +\q2 \w They|strong="H3068"\w* didn’t \w favor|strong="H6440"\w* \w the|strong="H6440"\w* \w elders|strong="H2205"\w*. +\b +\q1 +\v 17 \w Our|strong="H3615"\w* \w eyes|strong="H5869"\w* \w still|strong="H1471"\w* \w fail|strong="H3615"\w*, +\q2 looking \w in|strong="H1471"\w* \w vain|strong="H1892"\w* \w for|strong="H5869"\w* \w our|strong="H3615"\w* \w help|strong="H5833"\w*. +\q2 \w In|strong="H1471"\w* \w our|strong="H3615"\w* \w watching|strong="H6822"\w* \w we|strong="H3068"\w* \w have|strong="H5869"\w* \w watched|strong="H6822"\w* \w for|strong="H5869"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w that|strong="H1471"\w* could \w not|strong="H3808"\w* \w save|strong="H3467"\w*. +\b +\q1 +\v 18 \w They|strong="H3588"\w* \w hunt|strong="H6679"\w* \w our|strong="H3588"\w* \w steps|strong="H6806"\w*, +\q2 \w so|strong="H7126"\w* \w that|strong="H3588"\w* \w we|strong="H3068"\w* can’t \w go|strong="H3212"\w* \w in|strong="H3117"\w* \w our|strong="H3588"\w* \w streets|strong="H7339"\w*. +\q1 \w Our|strong="H3588"\w* \w end|strong="H7093"\w* \w is|strong="H3117"\w* \w near|strong="H7126"\w*. +\q2 \w Our|strong="H3588"\w* \w days|strong="H3117"\w* \w are|strong="H3117"\w* \w fulfilled|strong="H4390"\w*, +\q2 \w for|strong="H3588"\w* \w our|strong="H3588"\w* \w end|strong="H7093"\w* \w has|strong="H3117"\w* \w come|strong="H3212"\w*. +\b +\q1 +\v 19 \w Our|strong="H5921"\w* \w pursuers|strong="H7291"\w* \w were|strong="H1961"\w* \w swifter|strong="H7031"\w* \w than|strong="H5921"\w* \w the|strong="H5921"\w* \w eagles|strong="H5404"\w* \w of|strong="H2022"\w* \w the|strong="H5921"\w* \w sky|strong="H8064"\w*. +\q2 \w They|strong="H5921"\w* \w chased|strong="H7291"\w* \w us|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w*. +\q2 \w They|strong="H5921"\w* \w set|strong="H1814"\w* \w an|strong="H1961"\w* ambush \w for|strong="H5921"\w* \w us|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*. +\b +\q1 +\v 20 \w The|strong="H3068"\w* \w breath|strong="H7307"\w* \w of|strong="H3068"\w* \w our|strong="H3068"\w* nostrils, +\q2 \w the|strong="H3068"\w* \w anointed|strong="H4899"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w was|strong="H3068"\w* \w taken|strong="H3920"\w* \w in|strong="H3068"\w* \w their|strong="H3068"\w* \w pits|strong="H7825"\w*; +\q1 \w of|strong="H3068"\w* whom \w we|strong="H3068"\w* said, +\q2 under \w his|strong="H3068"\w* \w shadow|strong="H6738"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w live|strong="H2421"\w* among \w the|strong="H3068"\w* \w nations|strong="H1471"\w*. +\b +\q1 +\v 21 \w Rejoice|strong="H7797"\w* \w and|strong="H3427"\w* \w be|strong="H1571"\w* \w glad|strong="H7797"\w*, \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* Edom, +\q2 \w who|strong="H3427"\w* \w dwells|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* land \w of|strong="H1323"\w* \w Uz|strong="H5780"\w*. +\q1 \w The|strong="H5921"\w* \w cup|strong="H3563"\w* \w will|strong="H1571"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w to|strong="H5921"\w* \w you|strong="H5921"\w* \w also|strong="H1571"\w*. +\q2 \w You|strong="H5921"\w* \w will|strong="H1571"\w* \w be|strong="H1571"\w* \w drunken|strong="H7937"\w*, +\q2 \w and|strong="H3427"\w* \w will|strong="H1571"\w* \w make|strong="H7937"\w* \w yourself|strong="H5921"\w* \w naked|strong="H6168"\w*. +\b +\q1 +\v 22 \w The|strong="H5921"\w* \w punishment|strong="H5771"\w* \w of|strong="H1323"\w* \w your|strong="H5921"\w* \w iniquity|strong="H5771"\w* \w is|strong="H5771"\w* \w accomplished|strong="H8552"\w*, \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Zion|strong="H6726"\w*. +\q2 \w He|strong="H3808"\w* \w will|strong="H3808"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w* \w carry|strong="H1540"\w* \w you|strong="H5921"\w* \w away|strong="H1540"\w* \w into|strong="H1540"\w* \w captivity|strong="H1540"\w*. +\q1 \w He|strong="H3808"\w* \w will|strong="H3808"\w* \w visit|strong="H6485"\w* \w your|strong="H5921"\w* \w iniquity|strong="H5771"\w*, \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* Edom. +\q2 \w He|strong="H3808"\w* \w will|strong="H3808"\w* \w uncover|strong="H1540"\w* \w your|strong="H5921"\w* \w sins|strong="H2403"\w*. +\c 5 +\q1 +\v 1 \w Remember|strong="H2142"\w*, \w Yahweh|strong="H3068"\w*, \w what|strong="H4100"\w* \w has|strong="H3068"\w* \w come|strong="H1961"\w* \w on|strong="H7200"\w* \w us|strong="H7200"\w*. +\q2 \w Look|strong="H7200"\w*, \w and|strong="H3068"\w* \w see|strong="H7200"\w* \w our|strong="H3068"\w* \w reproach|strong="H2781"\w*. +\q1 +\v 2 Our \w inheritance|strong="H5159"\w* \w has|strong="H5159"\w* been \w turned|strong="H2015"\w* \w over|strong="H2015"\w* \w to|strong="H1004"\w* \w strangers|strong="H2114"\w*, +\q2 our \w houses|strong="H1004"\w* \w to|strong="H1004"\w* \w aliens|strong="H2114"\w*. +\q1 +\v 3 We \w are|strong="H1961"\w* \w orphans|strong="H3490"\w* \w and|strong="H1961"\w* \w fatherless|strong="H3490"\w*. +\q2 \w Our|strong="H1961"\w* mothers \w are|strong="H1961"\w* \w as|strong="H1961"\w* widows. +\q1 +\v 4 We must \w pay|strong="H3701"\w* \w for|strong="H6086"\w* \w water|strong="H4325"\w* \w to|strong="H4325"\w* \w drink|strong="H8354"\w*. +\q2 \w Our|strong="H8354"\w* \w wood|strong="H6086"\w* \w is|strong="H3701"\w* sold \w to|strong="H4325"\w* us. +\q1 +\v 5 \w Our|strong="H5921"\w* \w pursuers|strong="H7291"\w* \w are|strong="H3808"\w* \w on|strong="H5921"\w* \w our|strong="H5921"\w* \w necks|strong="H6677"\w*. +\q2 We \w are|strong="H3808"\w* \w weary|strong="H3021"\w*, \w and|strong="H6677"\w* \w have|strong="H3808"\w* \w no|strong="H3808"\w* \w rest|strong="H5117"\w*. +\q1 +\v 6 We \w have|strong="H7646"\w* \w given|strong="H5414"\w* \w our|strong="H5414"\w* \w hands|strong="H3027"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w Egyptians|strong="H4713"\w*, +\q2 \w and|strong="H3027"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* Assyrians, \w to|strong="H5414"\w* \w be|strong="H3027"\w* \w satisfied|strong="H7646"\w* \w with|strong="H7646"\w* \w bread|strong="H3899"\w*. +\q1 +\v 7 \w Our|strong="H5445"\w* fathers \w sinned|strong="H2398"\w*, \w and|strong="H2398"\w* \w are|strong="H5771"\w* no more. +\q2 We \w have|strong="H5771"\w* \w borne|strong="H5445"\w* \w their|strong="H5445"\w* \w iniquities|strong="H5771"\w*. +\q1 +\v 8 \w Servants|strong="H5650"\w* \w rule|strong="H4910"\w* \w over|strong="H3027"\w* \w us|strong="H3027"\w*. +\q2 There \w is|strong="H3027"\w* no \w one|strong="H3027"\w* \w to|strong="H3027"\w* \w deliver|strong="H6561"\w* \w us|strong="H3027"\w* \w out|strong="H3027"\w* \w of|strong="H3027"\w* \w their|strong="H6561"\w* \w hand|strong="H3027"\w*. +\q1 +\v 9 \w We|strong="H5315"\w* get \w our|strong="H6440"\w* \w bread|strong="H3899"\w* \w at|strong="H6440"\w* \w the|strong="H6440"\w* peril \w of|strong="H6440"\w* \w our|strong="H6440"\w* \w lives|strong="H5315"\w*, +\q2 \w because|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w* \w in|strong="H5315"\w* \w the|strong="H6440"\w* \w wilderness|strong="H4057"\w*. +\q1 +\v 10 \w Our|strong="H6440"\w* \w skin|strong="H5785"\w* \w is|strong="H6440"\w* \w black|strong="H3648"\w* \w like|strong="H6440"\w* \w an|strong="H6440"\w* \w oven|strong="H8574"\w*, +\q2 \w because|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w burning|strong="H2152"\w* \w heat|strong="H2152"\w* \w of|strong="H6440"\w* \w famine|strong="H7458"\w*. +\q1 +\v 11 \w They|strong="H3063"\w* \w ravished|strong="H6031"\w* \w the|strong="H3063"\w* \w women|strong="H1330"\w* \w in|strong="H5892"\w* \w Zion|strong="H6726"\w*, +\q2 \w the|strong="H3063"\w* \w virgins|strong="H1330"\w* \w in|strong="H5892"\w* \w the|strong="H3063"\w* \w cities|strong="H5892"\w* \w of|strong="H5892"\w* \w Judah|strong="H3063"\w*. +\q1 +\v 12 \w Princes|strong="H8269"\w* \w were|strong="H3027"\w* \w hanged|strong="H8518"\w* \w up|strong="H8518"\w* \w by|strong="H3027"\w* \w their|strong="H6440"\w* \w hands|strong="H3027"\w*. +\q2 \w The|strong="H6440"\w* \w faces|strong="H6440"\w* \w of|strong="H3027"\w* \w elders|strong="H2205"\w* \w were|strong="H3027"\w* \w not|strong="H3808"\w* honored. +\q1 +\v 13 \w The|strong="H5375"\w* \w young|strong="H5288"\w* \w men|strong="H5288"\w* \w carry|strong="H5375"\w* millstones. +\q2 \w The|strong="H5375"\w* \w children|strong="H5288"\w* \w stumbled|strong="H3782"\w* \w under|strong="H3782"\w* loads \w of|strong="H6086"\w* \w wood|strong="H6086"\w*. +\q1 +\v 14 \w The|strong="H8179"\w* \w elders|strong="H2205"\w* \w have|strong="H8179"\w* \w ceased|strong="H7673"\w* \w from|strong="H7673"\w* \w the|strong="H8179"\w* \w gate|strong="H8179"\w*, +\q2 \w and|strong="H2205"\w* \w the|strong="H8179"\w* young \w men|strong="H2205"\w* \w from|strong="H7673"\w* their \w music|strong="H5058"\w*. +\q1 +\v 15 \w The|strong="H2015"\w* \w joy|strong="H4885"\w* \w of|strong="H3820"\w* \w our|strong="H7673"\w* \w heart|strong="H3820"\w* \w has|strong="H3820"\w* \w ceased|strong="H7673"\w*. +\q2 \w Our|strong="H7673"\w* \w dance|strong="H4234"\w* \w is|strong="H3820"\w* \w turned|strong="H2015"\w* \w into|strong="H2015"\w* mourning. +\q1 +\v 16 \w The|strong="H3588"\w* \w crown|strong="H5850"\w* \w has|strong="H3588"\w* \w fallen|strong="H5307"\w* \w from|strong="H5307"\w* \w our|strong="H3588"\w* \w head|strong="H7218"\w*. +\q2 Woe \w to|strong="H7218"\w* \w us|strong="H4994"\w*, \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3588"\w* \w sinned|strong="H2398"\w*! +\q1 +\v 17 \w For|strong="H5921"\w* \w this|strong="H2088"\w* \w our|strong="H5921"\w* \w heart|strong="H3820"\w* \w is|strong="H2088"\w* \w faint|strong="H1739"\w*. +\q2 \w For|strong="H5921"\w* \w these|strong="H2088"\w* \w things|strong="H1961"\w* \w our|strong="H5921"\w* \w eyes|strong="H5869"\w* \w are|strong="H5869"\w* \w dim|strong="H2821"\w*: +\q1 +\v 18 \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w mountain|strong="H2022"\w* \w of|strong="H2022"\w* \w Zion|strong="H6726"\w*, \w which|strong="H2022"\w* \w is|strong="H6726"\w* \w desolate|strong="H8074"\w*. +\q2 \w The|strong="H5921"\w* \w foxes|strong="H7776"\w* \w walk|strong="H1980"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*. +\b +\q1 +\v 19 \w You|strong="H3427"\w*, \w Yahweh|strong="H3068"\w*, \w remain|strong="H3427"\w* \w forever|strong="H5769"\w*. +\q2 \w Your|strong="H3068"\w* \w throne|strong="H3678"\w* \w is|strong="H3068"\w* \w from|strong="H3068"\w* \w generation|strong="H1755"\w* \w to|strong="H3068"\w* \w generation|strong="H1755"\w*. +\q1 +\v 20 \w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H3117"\w* \w forget|strong="H7911"\w* \w us|strong="H3117"\w* \w forever|strong="H5331"\w*, +\q2 \w and|strong="H3117"\w* \w forsake|strong="H5800"\w* \w us|strong="H3117"\w* \w for|strong="H3117"\w* \w so|strong="H5800"\w* \w long|strong="H3117"\w* \w a|strong="H3068"\w* \w time|strong="H3117"\w*? +\q1 +\v 21 \w Turn|strong="H7725"\w* \w us|strong="H7725"\w* \w to|strong="H7725"\w* yourself, \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w turned|strong="H7725"\w*. +\q2 \w Renew|strong="H2318"\w* \w our|strong="H3068"\w* \w days|strong="H3117"\w* \w as|strong="H3117"\w* \w of|strong="H3068"\w* \w old|strong="H6924"\w*. +\q1 +\v 22 \w But|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* \w utterly|strong="H3966"\w* \w rejected|strong="H3988"\w* \w us|strong="H5921"\w*. +\q2 \w You|strong="H3588"\w* are \w very|strong="H3966"\w* \w angry|strong="H7107"\w* \w against|strong="H5921"\w* \w us|strong="H5921"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/27-EZKeng-web.usfm b/bibles/eng-web_usfm/27-EZKeng-web.usfm new file mode 100644 index 0000000..5178484 --- /dev/null +++ b/bibles/eng-web_usfm/27-EZKeng-web.usfm @@ -0,0 +1,2232 @@ +\id EZK 6-EZK-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Ezekiel +\toc1 The Book of Ezekiel +\toc2 Ezekiel +\toc3 Eze +\mt2 The Book of +\mt1 Ezekiel +\c 1 +\p +\v 1 \w Now|strong="H1961"\w* \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w thirtieth|strong="H7970"\w* \w year|strong="H8141"\w*, \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w fourth|strong="H7243"\w* \w month|strong="H2320"\w*, \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w fifth|strong="H2568"\w* \w day|strong="H2320"\w* \w of|strong="H8141"\w* \w the|strong="H5921"\w* \w month|strong="H2320"\w*, \w as|strong="H1961"\w* \w I|strong="H5921"\w* \w was|strong="H1961"\w* \w among|strong="H8432"\w* \w the|strong="H5921"\w* \w captives|strong="H1473"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w river|strong="H5104"\w* \w Chebar|strong="H3529"\w*, \w the|strong="H5921"\w* \w heavens|strong="H8064"\w* \w were|strong="H1961"\w* \w opened|strong="H6605"\w*, \w and|strong="H8064"\w* \w I|strong="H5921"\w* \w saw|strong="H7200"\w* \w visions|strong="H4759"\w* \w of|strong="H8141"\w* \w God|strong="H8064"\w*.\f + \fr 1:1 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* +\p +\v 2 \w In|strong="H8141"\w* \w the|strong="H8141"\w* \w fifth|strong="H2549"\w* \w of|strong="H4428"\w* \w the|strong="H8141"\w* \w month|strong="H2320"\w*, \w which|strong="H1931"\w* \w was|strong="H1931"\w* \w the|strong="H8141"\w* \w fifth|strong="H2549"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* Jehoiachin’s \w captivity|strong="H1546"\w*, +\v 3 \w Yahweh|strong="H3068"\w*’s\f + \fr 1:3 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Ezekiel|strong="H3168"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w*, \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Buzi, \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w Chaldeans|strong="H3778"\w* \w by|strong="H3027"\w* \w the|strong="H5921"\w* \w river|strong="H5104"\w* \w Chebar|strong="H3529"\w*; \w and|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w was|strong="H3068"\w* \w there|strong="H8033"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*. +\p +\v 4 \w I|strong="H2009"\w* \w looked|strong="H7200"\w*, \w and|strong="H1419"\w* \w behold|strong="H2009"\w*,\f + \fr 1:4 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w a|strong="H3068"\w* \w stormy|strong="H5591"\w* \w wind|strong="H7307"\w* \w came|strong="H7307"\w* \w out|strong="H4480"\w* \w of|strong="H7307"\w* \w the|strong="H7200"\w* \w north|strong="H6828"\w*: \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w cloud|strong="H6051"\w*, \w with|strong="H5869"\w* \w flashing|strong="H3947"\w* lightning, \w and|strong="H1419"\w* \w a|strong="H3068"\w* \w brightness|strong="H5051"\w* \w around|strong="H5439"\w* \w it|strong="H8432"\w*, \w and|strong="H1419"\w* \w out|strong="H4480"\w* \w of|strong="H7307"\w* \w the|strong="H7200"\w* \w middle|strong="H8432"\w* \w of|strong="H7307"\w* \w it|strong="H8432"\w* \w as|strong="H5869"\w* \w it|strong="H8432"\w* \w were|strong="H5869"\w* \w glowing|strong="H2830"\w* \w metal|strong="H2830"\w*, \w out|strong="H4480"\w* \w of|strong="H7307"\w* \w the|strong="H7200"\w* \w middle|strong="H8432"\w* \w of|strong="H7307"\w* \w the|strong="H7200"\w* fire. +\v 5 \w Out|strong="H8432"\w* \w of|strong="H8432"\w* its \w center|strong="H8432"\w* came \w the|strong="H8432"\w* \w likeness|strong="H1823"\w* \w of|strong="H8432"\w* four \w living|strong="H2416"\w* \w creatures|strong="H2416"\w*. \w This|strong="H2088"\w* \w was|strong="H2088"\w* \w their|strong="H8432"\w* \w appearance|strong="H4758"\w*: \w They|strong="H2007"\w* \w had|strong="H2416"\w* \w the|strong="H8432"\w* \w likeness|strong="H1823"\w* \w of|strong="H8432"\w* \w a|strong="H3068"\w* \w man|strong="H2088"\w*. +\v 6 Everyone had four \w faces|strong="H6440"\w*, \w and|strong="H6440"\w* \w each|strong="H3671"\w* \w one|strong="H3671"\w* \w of|strong="H6440"\w* \w them|strong="H6440"\w* had four \w wings|strong="H3671"\w*. +\v 7 \w Their|strong="H7272"\w* \w feet|strong="H7272"\w* \w were|strong="H5869"\w* \w straight|strong="H3477"\w* \w feet|strong="H7272"\w*. \w The|strong="H5869"\w* \w sole|strong="H3709"\w* \w of|strong="H5869"\w* \w their|strong="H7272"\w* \w feet|strong="H7272"\w* \w was|strong="H3477"\w* \w like|strong="H7272"\w* \w the|strong="H5869"\w* \w sole|strong="H3709"\w* \w of|strong="H5869"\w* \w a|strong="H3068"\w* \w calf|strong="H5695"\w*’s \w foot|strong="H7272"\w*; \w and|strong="H5869"\w* \w they|strong="H7272"\w* \w sparkled|strong="H5340"\w* \w like|strong="H7272"\w* \w burnished|strong="H7044"\w* \w bronze|strong="H5178"\w*. +\v 8 \w They|strong="H5921"\w* \w had|strong="H3027"\w* \w the|strong="H6440"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w a|strong="H3068"\w* \w man|strong="H6440"\w* \w under|strong="H8478"\w* \w their|strong="H6440"\w* \w wings|strong="H3671"\w* \w on|strong="H5921"\w* \w their|strong="H6440"\w* four \w sides|strong="H7253"\w*. \w The|strong="H6440"\w* four \w of|strong="H3027"\w* \w them|strong="H5921"\w* \w had|strong="H3027"\w* \w their|strong="H6440"\w* \w faces|strong="H6440"\w* \w and|strong="H3027"\w* \w their|strong="H6440"\w* \w wings|strong="H3671"\w* \w like|strong="H5921"\w* \w this|strong="H6440"\w*: +\v 9 \w Their|strong="H6440"\w* \w wings|strong="H3671"\w* \w were|strong="H3671"\w* \w joined|strong="H2266"\w* \w to|strong="H3212"\w* \w one|strong="H3808"\w* \w another|strong="H3808"\w*. \w They|strong="H3808"\w* didn’t \w turn|strong="H5437"\w* when \w they|strong="H3808"\w* \w went|strong="H3212"\w*. \w Each|strong="H3671"\w* \w one|strong="H3808"\w* \w went|strong="H3212"\w* \w straight|strong="H5676"\w* \w forward|strong="H6440"\w*. +\p +\v 10 \w As|strong="H6440"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* \w likeness|strong="H1823"\w* \w of|strong="H6440"\w* \w their|strong="H6440"\w* \w faces|strong="H6440"\w*, \w they|strong="H6440"\w* \w had|strong="H3225"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H6440"\w* \w a|strong="H3068"\w* \w man|strong="H6440"\w*. \w The|strong="H6440"\w* four \w of|strong="H6440"\w* \w them|strong="H6440"\w* \w had|strong="H3225"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H6440"\w* \w a|strong="H3068"\w* lion \w on|strong="H6440"\w* \w the|strong="H6440"\w* \w right|strong="H3225"\w* \w side|strong="H3225"\w*. \w The|strong="H6440"\w* four \w of|strong="H6440"\w* \w them|strong="H6440"\w* \w had|strong="H3225"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H6440"\w* \w an|strong="H6440"\w* \w ox|strong="H7794"\w* \w on|strong="H6440"\w* \w the|strong="H6440"\w* \w left|strong="H8040"\w* \w side|strong="H3225"\w*. \w The|strong="H6440"\w* four \w of|strong="H6440"\w* \w them|strong="H6440"\w* also \w had|strong="H3225"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H6440"\w* \w an|strong="H6440"\w* \w eagle|strong="H5404"\w*. +\v 11 Such \w were|strong="H8147"\w* \w their|strong="H6440"\w* \w faces|strong="H6440"\w*. \w Their|strong="H6440"\w* \w wings|strong="H3671"\w* \w were|strong="H8147"\w* \w spread|strong="H3671"\w* \w out|strong="H6440"\w* \w above|strong="H4605"\w*. \w Two|strong="H8147"\w* \w wings|strong="H3671"\w* \w of|strong="H6440"\w* \w each|strong="H8147"\w* \w one|strong="H3671"\w* \w touched|strong="H2266"\w* \w another|strong="H3671"\w*, \w and|strong="H6440"\w* \w two|strong="H8147"\w* \w covered|strong="H3680"\w* \w their|strong="H6440"\w* \w bodies|strong="H1472"\w*. +\v 12 Each \w one|strong="H3808"\w* \w went|strong="H3212"\w* \w straight|strong="H5676"\w* \w forward|strong="H6440"\w*. \w Where|strong="H8033"\w* \w the|strong="H6440"\w* \w spirit|strong="H7307"\w* \w was|strong="H1961"\w* \w to|strong="H3212"\w* \w go|strong="H3212"\w*, \w they|strong="H8033"\w* \w went|strong="H3212"\w*. \w They|strong="H8033"\w* didn’t \w turn|strong="H5437"\w* \w when|strong="H1961"\w* \w they|strong="H8033"\w* \w went|strong="H3212"\w*. +\v 13 \w As|strong="H3318"\w* \w for|strong="H3318"\w* \w the|strong="H4480"\w* \w likeness|strong="H1823"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w living|strong="H2416"\w* \w creatures|strong="H2416"\w*, \w their|strong="H3318"\w* \w appearance|strong="H4758"\w* \w was|strong="H1931"\w* \w like|strong="H4758"\w* \w burning|strong="H1197"\w* \w coals|strong="H1513"\w* \w of|strong="H4480"\w* \w fire|strong="H1513"\w*, \w like|strong="H4758"\w* \w the|strong="H4480"\w* \w appearance|strong="H4758"\w* \w of|strong="H4480"\w* \w torches|strong="H3940"\w*. \w The|strong="H4480"\w* \w fire|strong="H1513"\w* \w went|strong="H1980"\w* \w up|strong="H3318"\w* \w and|strong="H1980"\w* \w down|strong="H1980"\w* \w among|strong="H4480"\w* \w the|strong="H4480"\w* \w living|strong="H2416"\w* \w creatures|strong="H2416"\w*. \w The|strong="H4480"\w* \w fire|strong="H1513"\w* \w was|strong="H1931"\w* \w bright|strong="H5051"\w*, \w and|strong="H1980"\w* \w lightning|strong="H1300"\w* \w went|strong="H1980"\w* \w out|strong="H3318"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w fire|strong="H1513"\w*. +\v 14 \w The|strong="H7725"\w* \w living|strong="H2416"\w* \w creatures|strong="H2416"\w* \w ran|strong="H7519"\w* \w and|strong="H7725"\w* \w returned|strong="H7725"\w* \w as|strong="H7725"\w* \w the|strong="H7725"\w* \w appearance|strong="H4758"\w* \w of|strong="H4758"\w* \w a|strong="H3068"\w* flash \w of|strong="H4758"\w* lightning. +\p +\v 15 \w Now|strong="H2009"\w* \w as|strong="H6440"\w* \w I|strong="H2009"\w* \w saw|strong="H7200"\w* \w the|strong="H6440"\w* \w living|strong="H2416"\w* \w creatures|strong="H2416"\w*, \w behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w was|strong="H6440"\w* \w one|strong="H2416"\w* wheel \w on|strong="H7200"\w* \w the|strong="H6440"\w* earth beside \w the|strong="H6440"\w* \w living|strong="H2416"\w* \w creatures|strong="H2416"\w*, \w for|strong="H6440"\w* each \w of|strong="H6440"\w* \w the|strong="H6440"\w* four \w faces|strong="H6440"\w* \w of|strong="H6440"\w* \w it|strong="H7200"\w*. +\v 16 \w The|strong="H8432"\w* \w appearance|strong="H4758"\w* \w of|strong="H5869"\w* \w the|strong="H8432"\w* wheels \w and|strong="H5869"\w* \w their|strong="H8432"\w* \w work|strong="H4639"\w* \w was|strong="H1961"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w beryl|strong="H8658"\w*. \w The|strong="H8432"\w* four \w of|strong="H5869"\w* \w them|strong="H8432"\w* \w had|strong="H1961"\w* \w one|strong="H1961"\w* \w likeness|strong="H1823"\w*. \w Their|strong="H8432"\w* \w appearance|strong="H4758"\w* \w and|strong="H5869"\w* \w their|strong="H8432"\w* \w work|strong="H4639"\w* \w was|strong="H1961"\w* \w as|strong="H1961"\w* \w it|strong="H8432"\w* \w were|strong="H1961"\w* \w a|strong="H3068"\w* wheel \w within|strong="H8432"\w* \w a|strong="H3068"\w* wheel. +\v 17 \w When|strong="H5921"\w* \w they|strong="H3808"\w* \w went|strong="H3212"\w*, \w they|strong="H3808"\w* \w went|strong="H3212"\w* \w in|strong="H5921"\w* \w their|strong="H5921"\w* four \w directions|strong="H7253"\w*. \w They|strong="H3808"\w* didn’t \w turn|strong="H5437"\w* \w when|strong="H5921"\w* \w they|strong="H3808"\w* \w went|strong="H3212"\w*. +\v 18 \w As|strong="H5869"\w* \w for|strong="H5869"\w* \w their|strong="H1992"\w* \w rims|strong="H1354"\w*, \w they|strong="H1992"\w* \w were|strong="H5869"\w* \w high|strong="H1363"\w* \w and|strong="H5869"\w* \w dreadful|strong="H3374"\w*; \w and|strong="H5869"\w* \w the|strong="H5439"\w* four \w of|strong="H5869"\w* \w them|strong="H1992"\w* \w had|strong="H5869"\w* \w their|strong="H1992"\w* \w rims|strong="H1354"\w* \w full|strong="H4392"\w* \w of|strong="H5869"\w* \w eyes|strong="H5869"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*. +\p +\v 19 \w When|strong="H5375"\w* \w the|strong="H5921"\w* \w living|strong="H2416"\w* \w creatures|strong="H2416"\w* \w went|strong="H3212"\w*, \w the|strong="H5921"\w* wheels \w went|strong="H3212"\w* \w beside|strong="H5921"\w* \w them|strong="H5921"\w*. \w When|strong="H5375"\w* \w the|strong="H5921"\w* \w living|strong="H2416"\w* \w creatures|strong="H2416"\w* \w were|strong="H5921"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* earth, \w the|strong="H5921"\w* wheels \w were|strong="H5921"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w*. +\v 20 \w Wherever|strong="H8033"\w* \w the|strong="H5921"\w* \w spirit|strong="H7307"\w* \w was|strong="H1961"\w* \w to|strong="H3212"\w* \w go|strong="H3212"\w*, \w they|strong="H3588"\w* \w went|strong="H3212"\w*. \w The|strong="H5921"\w* \w spirit|strong="H7307"\w* \w was|strong="H1961"\w* \w to|strong="H3212"\w* \w go|strong="H3212"\w* \w there|strong="H8033"\w*. \w The|strong="H5921"\w* wheels \w were|strong="H1961"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w beside|strong="H5921"\w* \w them|strong="H5921"\w*; \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w spirit|strong="H7307"\w* \w of|strong="H7307"\w* \w the|strong="H5921"\w* \w living|strong="H2416"\w* \w creature|strong="H2416"\w* \w was|strong="H1961"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* wheels. +\v 21 \w When|strong="H3588"\w* \w those|strong="H5921"\w* \w went|strong="H3212"\w*, these \w went|strong="H3212"\w*. \w When|strong="H3588"\w* \w those|strong="H5921"\w* \w stood|strong="H5975"\w*, these \w stood|strong="H5975"\w*. \w When|strong="H3588"\w* \w those|strong="H5921"\w* \w were|strong="H5921"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* earth, \w the|strong="H5921"\w* wheels \w were|strong="H5921"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w beside|strong="H5921"\w* \w them|strong="H5921"\w*; \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w spirit|strong="H7307"\w* \w of|strong="H7307"\w* \w the|strong="H5921"\w* \w living|strong="H2416"\w* \w creature|strong="H2416"\w* \w was|strong="H7307"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* wheels. +\p +\v 22 \w Over|strong="H5921"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w living|strong="H2416"\w* \w creature|strong="H2416"\w* there \w was|strong="H7218"\w* \w the|strong="H5921"\w* \w likeness|strong="H1823"\w* \w of|strong="H7218"\w* \w an|strong="H7218"\w* \w expanse|strong="H7549"\w*, \w like|strong="H1823"\w* \w an|strong="H7218"\w* \w awesome|strong="H3372"\w* \w crystal|strong="H7140"\w* \w to|strong="H5921"\w* \w look|strong="H5869"\w* \w at|strong="H5921"\w*, \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w over|strong="H5921"\w* \w their|strong="H5921"\w* \w heads|strong="H7218"\w* \w above|strong="H4605"\w*. +\v 23 \w Under|strong="H8478"\w* \w the|strong="H8478"\w* \w expanse|strong="H7549"\w*, \w their|strong="H3680"\w* \w wings|strong="H3671"\w* \w were|strong="H8147"\w* \w straight|strong="H3477"\w*, \w one|strong="H3671"\w* toward \w the|strong="H8478"\w* \w other|strong="H8147"\w*. \w Each|strong="H8147"\w* \w one|strong="H3671"\w* \w had|strong="H2007"\w* \w two|strong="H8147"\w* \w which|strong="H3477"\w* \w covered|strong="H3680"\w* \w on|strong="H8478"\w* this \w side|strong="H8147"\w*, \w and|strong="H8147"\w* \w each|strong="H8147"\w* \w one|strong="H3671"\w* \w had|strong="H2007"\w* \w two|strong="H8147"\w* \w which|strong="H3477"\w* \w covered|strong="H3680"\w* \w their|strong="H3680"\w* \w bodies|strong="H1472"\w* \w on|strong="H8478"\w* \w that|strong="H7549"\w* \w side|strong="H8147"\w*. +\v 24 \w When|strong="H8085"\w* \w they|strong="H5975"\w* \w went|strong="H3212"\w*, \w I|strong="H8085"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w their|strong="H8085"\w* \w wings|strong="H3671"\w* \w like|strong="H7227"\w* \w the|strong="H8085"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w great|strong="H7227"\w* \w waters|strong="H4325"\w*, \w like|strong="H7227"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w Almighty|strong="H7706"\w*, \w a|strong="H3068"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w tumult|strong="H1999"\w* \w like|strong="H7227"\w* \w the|strong="H8085"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w an|strong="H8085"\w* \w army|strong="H4264"\w*. \w When|strong="H8085"\w* \w they|strong="H5975"\w* \w stood|strong="H5975"\w*, \w they|strong="H5975"\w* \w let|strong="H7503"\w* \w down|strong="H7503"\w* \w their|strong="H8085"\w* \w wings|strong="H3671"\w*. +\p +\v 25 \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w voice|strong="H6963"\w* \w above|strong="H5921"\w* \w the|strong="H5921"\w* \w expanse|strong="H7549"\w* \w that|strong="H1961"\w* \w was|strong="H1961"\w* \w over|strong="H5921"\w* \w their|strong="H5921"\w* \w heads|strong="H7218"\w*. \w When|strong="H1961"\w* \w they|strong="H5921"\w* \w stood|strong="H5975"\w*, \w they|strong="H5921"\w* \w let|strong="H7503"\w* \w down|strong="H7503"\w* \w their|strong="H5921"\w* \w wings|strong="H3671"\w*. +\v 26 \w Above|strong="H4605"\w* \w the|strong="H5921"\w* \w expanse|strong="H7549"\w* \w that|strong="H7549"\w* \w was|strong="H7218"\w* \w over|strong="H5921"\w* \w their|strong="H5921"\w* \w heads|strong="H7218"\w* \w was|strong="H7218"\w* \w the|strong="H5921"\w* \w likeness|strong="H1823"\w* \w of|strong="H7218"\w* \w a|strong="H3068"\w* \w throne|strong="H3678"\w*, \w as|strong="H1823"\w* \w the|strong="H5921"\w* \w appearance|strong="H4758"\w* \w of|strong="H7218"\w* \w a|strong="H3068"\w* \w sapphire|strong="H5601"\w*\f + \fr 1:26 \ft or, lapis lazuli\f* \w stone|strong="H5601"\w*. \w On|strong="H5921"\w* \w the|strong="H5921"\w* \w likeness|strong="H1823"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w throne|strong="H3678"\w* \w was|strong="H7218"\w* \w a|strong="H3068"\w* \w likeness|strong="H1823"\w* \w as|strong="H1823"\w* \w the|strong="H5921"\w* \w appearance|strong="H4758"\w* \w of|strong="H7218"\w* \w a|strong="H3068"\w* \w man|strong="H7218"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w* \w above|strong="H4605"\w*. +\v 27 \w I|strong="H7200"\w* \w saw|strong="H7200"\w* \w as|strong="H5869"\w* \w it|strong="H7200"\w* \w were|strong="H5869"\w* \w glowing|strong="H2830"\w* \w metal|strong="H2830"\w*, \w as|strong="H5869"\w* \w the|strong="H7200"\w* \w appearance|strong="H4758"\w* \w of|strong="H1004"\w* fire \w within|strong="H1004"\w* \w it|strong="H7200"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*, \w from|strong="H5869"\w* \w the|strong="H7200"\w* \w appearance|strong="H4758"\w* \w of|strong="H1004"\w* \w his|strong="H7200"\w* \w waist|strong="H4975"\w* \w and|strong="H1004"\w* \w upward|strong="H4605"\w*; \w and|strong="H1004"\w* \w from|strong="H5869"\w* \w the|strong="H7200"\w* \w appearance|strong="H4758"\w* \w of|strong="H1004"\w* \w his|strong="H7200"\w* \w waist|strong="H4975"\w* \w and|strong="H1004"\w* \w downward|strong="H4295"\w* \w I|strong="H7200"\w* \w saw|strong="H7200"\w* \w as|strong="H5869"\w* \w it|strong="H7200"\w* \w were|strong="H5869"\w* \w the|strong="H7200"\w* \w appearance|strong="H4758"\w* \w of|strong="H1004"\w* fire, \w and|strong="H1004"\w* \w there|strong="H7200"\w* \w was|strong="H1004"\w* \w brightness|strong="H5051"\w* \w around|strong="H5439"\w* \w him|strong="H7200"\w*. +\v 28 \w As|strong="H3117"\w* \w the|strong="H6440"\w* \w appearance|strong="H4758"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w rainbow|strong="H7198"\w* \w that|strong="H7200"\w* \w is|strong="H3068"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w cloud|strong="H6051"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w rain|strong="H1653"\w*, \w so|strong="H3651"\w* \w was|strong="H3068"\w* \w the|strong="H6440"\w* \w appearance|strong="H4758"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w brightness|strong="H5051"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*. +\p \w This|strong="H3651"\w* \w was|strong="H3068"\w* \w the|strong="H6440"\w* \w appearance|strong="H4758"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w likeness|strong="H1823"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w*. \w When|strong="H1961"\w* \w I|strong="H3117"\w* \w saw|strong="H7200"\w* \w it|strong="H1931"\w*, \w I|strong="H3117"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w my|strong="H8085"\w* \w face|strong="H6440"\w*, \w and|strong="H3068"\w* \w I|strong="H3117"\w* \w heard|strong="H8085"\w* \w a|strong="H3068"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w one|strong="H1931"\w* \w that|strong="H7200"\w* \w spoke|strong="H1696"\w*. +\c 2 +\p +\v 1 \w He|strong="H5921"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H5921"\w*, “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w stand|strong="H5975"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w feet|strong="H7272"\w*, \w and|strong="H1121"\w* \w I|strong="H5921"\w* \w will|strong="H1121"\w* \w speak|strong="H1696"\w* \w with|strong="H1696"\w* \w you|strong="H5921"\w*.” +\v 2 \w The|strong="H5921"\w* \w Spirit|strong="H7307"\w* \w entered|strong="H5975"\w* \w into|strong="H5921"\w* \w me|strong="H5921"\w* \w when|strong="H8085"\w* \w he|strong="H5921"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H5921"\w*, \w and|strong="H8085"\w* \w set|strong="H5975"\w* \w me|strong="H5921"\w* \w on|strong="H5921"\w* \w my|strong="H8085"\w* \w feet|strong="H7272"\w*; \w and|strong="H8085"\w* \w I|strong="H5921"\w* \w heard|strong="H8085"\w* \w him|strong="H5921"\w* \w who|strong="H5975"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H5921"\w*. +\p +\v 3 \w He|strong="H3117"\w* said \w to|strong="H5704"\w* \w me|strong="H7971"\w*, “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w I|strong="H3117"\w* \w send|strong="H7971"\w* \w you|strong="H7971"\w* \w to|strong="H5704"\w* \w the|strong="H3117"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w to|strong="H5704"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w of|strong="H1121"\w* \w rebels|strong="H4775"\w* \w who|strong="H1121"\w* \w have|strong="H1121"\w* \w rebelled|strong="H4775"\w* \w against|strong="H4775"\w* \w me|strong="H7971"\w*. \w They|strong="H1992"\w* \w and|strong="H1121"\w* \w their|strong="H1992"\w* fathers \w have|strong="H1121"\w* \w transgressed|strong="H6586"\w* \w against|strong="H4775"\w* \w me|strong="H7971"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w very|strong="H6106"\w* \w day|strong="H3117"\w*. +\v 4 \w The|strong="H6440"\w* \w children|strong="H1121"\w* \w are|strong="H1121"\w* \w impudent|strong="H7186"\w* \w and|strong="H1121"\w* stiff-hearted. \w I|strong="H3541"\w* am \w sending|strong="H7971"\w* \w you|strong="H6440"\w* \w to|strong="H7971"\w* \w them|strong="H7971"\w*, \w and|strong="H1121"\w* \w you|strong="H6440"\w* \w shall|strong="H1121"\w* tell \w them|strong="H7971"\w*, ‘\w This|strong="H3541"\w* \w is|strong="H3820"\w* \w what|strong="H3541"\w* \w the|strong="H6440"\w* \w Lord|strong="H3069"\w*\f + \fr 2:4 \ft The word translated “Lord” is “Adonai.”\f* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*.’ +\v 5 \w They|strong="H1992"\w*, \w whether|strong="H3045"\w* \w they|strong="H1992"\w* \w will|strong="H1961"\w* \w hear|strong="H8085"\w*, \w or|strong="H8085"\w* \w whether|strong="H3045"\w* \w they|strong="H1992"\w* \w will|strong="H1961"\w* \w refuse|strong="H3588"\w*—\w for|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w a|strong="H3068"\w* \w rebellious|strong="H4805"\w* \w house|strong="H1004"\w*—\w yet|strong="H3588"\w* \w they|strong="H1992"\w* \w will|strong="H1961"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w there|strong="H1961"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w a|strong="H3068"\w* \w prophet|strong="H5030"\w* \w among|strong="H8432"\w* \w them|strong="H1992"\w*. +\v 6 \w You|strong="H3588"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, don’t \w be|strong="H1697"\w* \w afraid|strong="H3372"\w* \w of|strong="H1121"\w* \w them|strong="H1992"\w*, neither \w be|strong="H1697"\w* \w afraid|strong="H3372"\w* \w of|strong="H1121"\w* \w their|strong="H6440"\w* \w words|strong="H1697"\w*, \w though|strong="H3588"\w* \w briers|strong="H5621"\w* \w and|strong="H1121"\w* \w thorns|strong="H5544"\w* \w are|strong="H1992"\w* \w with|strong="H1004"\w* \w you|strong="H3588"\w*, \w and|strong="H1121"\w* \w you|strong="H3588"\w* \w dwell|strong="H3427"\w* \w among|strong="H3427"\w* \w scorpions|strong="H6137"\w*. Don’t \w be|strong="H1697"\w* \w afraid|strong="H3372"\w* \w of|strong="H1121"\w* \w their|strong="H6440"\w* \w words|strong="H1697"\w*, \w nor|strong="H1121"\w* \w be|strong="H1697"\w* \w dismayed|strong="H2865"\w* \w at|strong="H3427"\w* \w their|strong="H6440"\w* \w looks|strong="H6440"\w*, \w though|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w a|strong="H3068"\w* \w rebellious|strong="H4805"\w* \w house|strong="H1004"\w*. +\v 7 \w You|strong="H3588"\w* \w shall|strong="H1697"\w* \w speak|strong="H1696"\w* \w my|strong="H8085"\w* \w words|strong="H1697"\w* \w to|strong="H1696"\w* \w them|strong="H1992"\w*, whether \w they|strong="H1992"\w* \w will|strong="H1697"\w* \w hear|strong="H8085"\w* \w or|strong="H8085"\w* whether \w they|strong="H1992"\w* \w will|strong="H1697"\w* \w refuse|strong="H3588"\w*; \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* most \w rebellious|strong="H4805"\w*. +\v 8 \w But|strong="H1961"\w* \w you|strong="H5414"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w hear|strong="H8085"\w* \w what|strong="H6310"\w* \w I|strong="H5414"\w* \w tell|strong="H1696"\w* \w you|strong="H5414"\w*. Don’t \w be|strong="H1961"\w* \w rebellious|strong="H4805"\w* \w like|strong="H1961"\w* \w that|strong="H8085"\w* \w rebellious|strong="H4805"\w* \w house|strong="H1004"\w*. \w Open|strong="H6475"\w* \w your|strong="H5414"\w* \w mouth|strong="H6310"\w*, \w and|strong="H1121"\w* \w eat|strong="H6310"\w* \w that|strong="H8085"\w* \w which|strong="H1004"\w* \w I|strong="H5414"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w*.” +\p +\v 9 \w When|strong="H7200"\w* \w I|strong="H2009"\w* \w looked|strong="H7200"\w*, \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w hand|strong="H3027"\w* \w was|strong="H3027"\w* \w stretched|strong="H7971"\w* \w out|strong="H7971"\w* \w to|strong="H7971"\w* \w me|strong="H7971"\w*; \w and|strong="H7971"\w* \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w scroll|strong="H5612"\w* \w of|strong="H3027"\w* \w a|strong="H3068"\w* \w book|strong="H5612"\w* \w was|strong="H3027"\w* \w in|strong="H3027"\w* \w it|strong="H7200"\w*. +\v 10 \w He|strong="H1931"\w* \w spread|strong="H6566"\w* \w it|strong="H1931"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*. \w It|strong="H1931"\w* \w was|strong="H1931"\w* \w written|strong="H3789"\w* \w within|strong="H6440"\w* \w and|strong="H6440"\w* \w without|strong="H6440"\w*; \w and|strong="H6440"\w* \w lamentations|strong="H7015"\w*, \w mourning|strong="H1899"\w*, \w and|strong="H6440"\w* \w woe|strong="H1958"\w* \w were|strong="H6440"\w* \w written|strong="H3789"\w* \w in|strong="H3789"\w* \w it|strong="H1931"\w*. +\c 3 +\p +\v 1 \w He|strong="H1004"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w*, “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, eat \w what|strong="H2063"\w* \w you|strong="H4672"\w* \w find|strong="H4672"\w*. Eat \w this|strong="H2063"\w* \w scroll|strong="H4039"\w*, \w and|strong="H1121"\w* \w go|strong="H3212"\w*, \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H1696"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*.” +\p +\v 2 \w So|strong="H2063"\w* I \w opened|strong="H6605"\w* \w my|strong="H6605"\w* \w mouth|strong="H6310"\w*, \w and|strong="H6310"\w* \w he|strong="H6310"\w* caused me \w to|strong="H6310"\w* \w eat|strong="H6310"\w* \w the|strong="H6605"\w* \w scroll|strong="H4039"\w*. +\p +\v 3 \w He|strong="H5414"\w* \w said|strong="H6310"\w* \w to|strong="H1961"\w* \w me|strong="H5414"\w*, “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w eat|strong="H6310"\w* \w this|strong="H2063"\w* \w scroll|strong="H4039"\w* \w that|strong="H5414"\w* \w I|strong="H5414"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w and|strong="H1121"\w* \w fill|strong="H4390"\w* \w your|strong="H5414"\w* \w belly|strong="H4578"\w* \w and|strong="H1121"\w* \w your|strong="H5414"\w* \w bowels|strong="H4578"\w* \w with|strong="H4390"\w* \w it|strong="H5414"\w*.” +\p \w Then|strong="H1961"\w* \w I|strong="H5414"\w* ate \w it|strong="H5414"\w*. \w It|strong="H5414"\w* \w was|strong="H1961"\w* \w as|strong="H1961"\w* \w sweet|strong="H4966"\w* \w as|strong="H1961"\w* \w honey|strong="H1706"\w* \w in|strong="H1121"\w* \w my|strong="H5414"\w* \w mouth|strong="H6310"\w*. +\p +\v 4 \w He|strong="H1004"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w*, “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w go|strong="H3212"\w* \w to|strong="H1696"\w* \w the|strong="H1697"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w speak|strong="H1696"\w* \w my|strong="H1696"\w* \w words|strong="H1697"\w* \w to|strong="H1696"\w* \w them|strong="H1121"\w*. +\v 5 \w For|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H5971"\w* \w not|strong="H3808"\w* \w sent|strong="H7971"\w* \w to|strong="H3478"\w* \w a|strong="H3068"\w* \w people|strong="H5971"\w* \w of|strong="H1004"\w* \w a|strong="H3068"\w* \w strange|strong="H6012"\w* \w speech|strong="H8193"\w* \w and|strong="H3478"\w* \w of|strong="H1004"\w* \w a|strong="H3068"\w* \w hard|strong="H3515"\w* \w language|strong="H3956"\w*, \w but|strong="H3588"\w* \w to|strong="H3478"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*— +\v 6 \w not|strong="H3808"\w* \w to|strong="H7971"\w* \w many|strong="H7227"\w* \w peoples|strong="H5971"\w* \w of|strong="H1697"\w* \w a|strong="H3068"\w* \w strange|strong="H6012"\w* \w speech|strong="H8193"\w* \w and|strong="H7971"\w* \w of|strong="H1697"\w* \w a|strong="H3068"\w* \w hard|strong="H3515"\w* \w language|strong="H3956"\w*, whose \w words|strong="H1697"\w* \w you|strong="H7971"\w* \w can|strong="H3808"\w*’t \w understand|strong="H8085"\w*. \w Surely|strong="H8085"\w*, if \w I|strong="H1697"\w* \w sent|strong="H7971"\w* \w you|strong="H7971"\w* \w to|strong="H7971"\w* \w them|strong="H1992"\w*, \w they|strong="H1992"\w* \w would|strong="H5971"\w* \w listen|strong="H8085"\w* \w to|strong="H7971"\w* \w you|strong="H7971"\w*. +\v 7 \w But|strong="H3588"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w will|strong="H3478"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H3478"\w* \w you|strong="H3588"\w*, \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w will|strong="H3478"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H3478"\w* \w me|strong="H3808"\w*; \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w are|strong="H1992"\w* \w obstinate|strong="H7186"\w*\f + \fr 3:7 \ft Literally, have a hard forehead\f* \w and|strong="H3478"\w* hard-hearted. +\v 8 \w Behold|strong="H2009"\w*, \w I|strong="H5414"\w* \w have|strong="H5414"\w* \w made|strong="H5414"\w* \w your|strong="H5414"\w* \w face|strong="H6440"\w* \w hard|strong="H2389"\w* \w against|strong="H6440"\w* \w their|strong="H5414"\w* \w faces|strong="H6440"\w*, \w and|strong="H6440"\w* \w your|strong="H5414"\w* \w forehead|strong="H4696"\w* \w hard|strong="H2389"\w* \w against|strong="H6440"\w* \w their|strong="H5414"\w* \w foreheads|strong="H4696"\w*. +\v 9 \w I|strong="H3588"\w* \w have|strong="H5414"\w* \w made|strong="H5414"\w* \w your|strong="H5414"\w* \w forehead|strong="H4696"\w* \w as|strong="H3588"\w* \w a|strong="H3068"\w* \w diamond|strong="H8068"\w*, \w harder|strong="H2389"\w* \w than|strong="H3808"\w* \w flint|strong="H6864"\w*. Don’t \w be|strong="H3808"\w* \w afraid|strong="H3372"\w* \w of|strong="H1004"\w* \w them|strong="H5414"\w*, \w neither|strong="H3808"\w* \w be|strong="H3808"\w* \w dismayed|strong="H2865"\w* \w at|strong="H1004"\w* \w their|strong="H5414"\w* \w looks|strong="H6440"\w*, \w though|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w a|strong="H3068"\w* \w rebellious|strong="H4805"\w* \w house|strong="H1004"\w*.” +\p +\v 10 \w Moreover|strong="H1696"\w* \w he|strong="H3605"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H3947"\w*, “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w receive|strong="H3947"\w* \w in|strong="H8085"\w* \w your|strong="H3605"\w* \w heart|strong="H3824"\w* \w and|strong="H1121"\w* \w hear|strong="H8085"\w* \w with|strong="H1696"\w* \w your|strong="H3605"\w* ears \w all|strong="H3605"\w* \w my|strong="H8085"\w* \w words|strong="H1697"\w* \w that|strong="H3605"\w* \w I|strong="H1697"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3605"\w*. +\v 11 \w Go|strong="H3212"\w* \w to|strong="H1696"\w* \w them|strong="H8085"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* \w captivity|strong="H1473"\w*, \w to|strong="H1696"\w* \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w your|strong="H8085"\w* \w people|strong="H5971"\w*, \w and|strong="H1121"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H8085"\w*, \w and|strong="H1121"\w* \w tell|strong="H1696"\w* \w them|strong="H8085"\w*, ‘\w This|strong="H3541"\w* \w is|strong="H1121"\w* \w what|strong="H3541"\w* \w the|strong="H8085"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*,’ whether \w they|strong="H5971"\w* \w will|strong="H5971"\w* \w hear|strong="H8085"\w*, \w or|strong="H8085"\w* whether \w they|strong="H5971"\w* \w will|strong="H5971"\w* \w refuse|strong="H2308"\w*.” +\p +\v 12 \w Then|strong="H5375"\w* \w the|strong="H8085"\w* \w Spirit|strong="H7307"\w* \w lifted|strong="H5375"\w* \w me|strong="H6963"\w* \w up|strong="H5375"\w*, \w and|strong="H3068"\w* \w I|strong="H8085"\w* \w heard|strong="H8085"\w* behind \w me|strong="H6963"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w rushing|strong="H7494"\w*, \w saying|strong="H6963"\w*, “\w Blessed|strong="H1288"\w* \w be|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w from|strong="H8085"\w* \w his|strong="H5375"\w* \w place|strong="H4725"\w*.” +\v 13 \w I|strong="H6963"\w* \w heard|strong="H6963"\w* \w the|strong="H5980"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H5980"\w* \w wings|strong="H3671"\w* \w of|strong="H6963"\w* \w the|strong="H5980"\w* \w living|strong="H2416"\w* \w creatures|strong="H2416"\w* \w as|strong="H5980"\w* they \w touched|strong="H5401"\w* \w one|strong="H2416"\w* \w another|strong="H3671"\w*, \w and|strong="H1419"\w* \w the|strong="H5980"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H5980"\w* wheels \w beside|strong="H5980"\w* them, even \w the|strong="H5980"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w rushing|strong="H7494"\w*. +\v 14 \w So|strong="H3947"\w* \w the|strong="H5921"\w* \w Spirit|strong="H7307"\w* \w lifted|strong="H5375"\w* \w me|strong="H5921"\w* \w up|strong="H5375"\w*, \w and|strong="H3068"\w* \w took|strong="H3947"\w* \w me|strong="H5921"\w* \w away|strong="H3947"\w*; \w and|strong="H3068"\w* \w I|strong="H5921"\w* \w went|strong="H3212"\w* \w in|strong="H5921"\w* \w bitterness|strong="H4751"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w heat|strong="H2534"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w spirit|strong="H7307"\w*; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w was|strong="H3068"\w* \w strong|strong="H2388"\w* \w on|strong="H5921"\w* \w me|strong="H5921"\w*. +\v 15 \w Then|strong="H3117"\w* \w I|strong="H3117"\w* came \w to|strong="H3117"\w* \w them|strong="H1992"\w* \w of|strong="H3117"\w* \w the|strong="H8432"\w* \w captivity|strong="H1473"\w* \w at|strong="H3427"\w* Tel Aviv \w who|strong="H3427"\w* \w lived|strong="H3427"\w* \w by|strong="H3117"\w* \w the|strong="H8432"\w* \w river|strong="H5104"\w* \w Chebar|strong="H3529"\w*, \w and|strong="H3117"\w* \w to|strong="H3117"\w* \w where|strong="H8033"\w* \w they|strong="H1992"\w* \w lived|strong="H3427"\w*; \w and|strong="H3117"\w* \w I|strong="H3117"\w* \w sat|strong="H3427"\w* \w there|strong="H8033"\w* overwhelmed \w among|strong="H8432"\w* \w them|strong="H1992"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. +\p +\v 16 \w At|strong="H3068"\w* \w the|strong="H3068"\w* \w end|strong="H7097"\w* \w of|strong="H3068"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1961"\w*, \w saying|strong="H1697"\w*, +\v 17 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w I|strong="H5414"\w* \w have|strong="H1121"\w* \w made|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w watchman|strong="H6822"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. Therefore \w hear|strong="H8085"\w* \w the|strong="H8085"\w* \w word|strong="H1697"\w* \w from|strong="H4480"\w* \w my|strong="H8085"\w* \w mouth|strong="H6310"\w*, \w and|strong="H1121"\w* \w warn|strong="H2094"\w* \w them|strong="H5414"\w* \w from|strong="H4480"\w* \w me|strong="H5414"\w*. +\v 18 \w When|strong="H2421"\w* \w I|strong="H3808"\w* \w tell|strong="H1696"\w* \w the|strong="H1870"\w* \w wicked|strong="H7563"\w*, ‘\w You|strong="H3808"\w* \w will|strong="H7563"\w* \w surely|strong="H4191"\w* \w die|strong="H4191"\w*;’ \w and|strong="H3027"\w* \w you|strong="H3808"\w* \w give|strong="H1696"\w* \w him|strong="H3027"\w* \w no|strong="H3808"\w* \w warning|strong="H2094"\w*, \w nor|strong="H3808"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w warn|strong="H2094"\w* \w the|strong="H1870"\w* \w wicked|strong="H7563"\w* \w from|strong="H3027"\w* \w his|strong="H3027"\w* \w wicked|strong="H7563"\w* \w way|strong="H1870"\w*, \w to|strong="H1696"\w* \w save|strong="H2421"\w* \w his|strong="H3027"\w* \w life|strong="H2421"\w*, \w that|strong="H1931"\w* \w wicked|strong="H7563"\w* \w man|strong="H7563"\w* \w will|strong="H7563"\w* \w die|strong="H4191"\w* \w in|strong="H4191"\w* \w his|strong="H3027"\w* \w iniquity|strong="H5771"\w*; \w but|strong="H3808"\w* \w I|strong="H3808"\w* \w will|strong="H7563"\w* \w require|strong="H1245"\w* \w his|strong="H3027"\w* \w blood|strong="H1818"\w* \w at|strong="H4191"\w* \w your|strong="H1245"\w* \w hand|strong="H3027"\w*. +\v 19 \w Yet|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w warn|strong="H2094"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w*, \w and|strong="H7725"\w* \w he|strong="H1931"\w* doesn’t \w turn|strong="H7725"\w* \w from|strong="H7725"\w* \w his|strong="H7725"\w* \w wickedness|strong="H7562"\w*, \w nor|strong="H3808"\w* \w from|strong="H7725"\w* \w his|strong="H7725"\w* \w wicked|strong="H7563"\w* \w way|strong="H1870"\w*, \w he|strong="H1931"\w* \w will|strong="H5315"\w* \w die|strong="H4191"\w* \w in|strong="H4191"\w* \w his|strong="H7725"\w* \w iniquity|strong="H5771"\w*; \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H7563"\w* \w delivered|strong="H5337"\w* \w your|strong="H7725"\w* \w soul|strong="H5315"\w*.” +\p +\v 20 “\w Again|strong="H7725"\w*, \w when|strong="H3588"\w* \w a|strong="H3068"\w* \w righteous|strong="H6662"\w* \w man|strong="H6662"\w* \w turns|strong="H7725"\w* \w from|strong="H7725"\w* \w his|strong="H5414"\w* \w righteousness|strong="H6666"\w* \w and|strong="H7725"\w* \w commits|strong="H6213"\w* \w iniquity|strong="H5766"\w*, \w and|strong="H7725"\w* \w I|strong="H3588"\w* \w lay|strong="H5414"\w* \w a|strong="H3068"\w* \w stumbling|strong="H4383"\w* \w block|strong="H4383"\w* \w before|strong="H6440"\w* \w him|strong="H5414"\w*, \w he|strong="H1931"\w* \w will|strong="H6662"\w* \w die|strong="H4191"\w*. \w Because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3027"\w* \w not|strong="H3808"\w* \w given|strong="H5414"\w* \w him|strong="H5414"\w* \w warning|strong="H2094"\w*, \w he|strong="H1931"\w* \w will|strong="H6662"\w* \w die|strong="H4191"\w* \w in|strong="H6213"\w* \w his|strong="H5414"\w* \w sin|strong="H2403"\w*, \w and|strong="H7725"\w* \w his|strong="H5414"\w* \w righteous|strong="H6662"\w* \w deeds|strong="H6666"\w* \w which|strong="H1931"\w* \w he|strong="H1931"\w* \w has|strong="H3588"\w* \w done|strong="H6213"\w* \w will|strong="H6662"\w* \w not|strong="H3808"\w* \w be|strong="H4191"\w* \w remembered|strong="H2142"\w*; \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H6662"\w* \w require|strong="H1245"\w* \w his|strong="H5414"\w* \w blood|strong="H1818"\w* \w at|strong="H4191"\w* \w your|strong="H5414"\w* \w hand|strong="H3027"\w*. +\v 21 \w Nevertheless|strong="H3588"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w warn|strong="H2094"\w* \w the|strong="H3588"\w* \w righteous|strong="H6662"\w* \w man|strong="H6662"\w*, \w that|strong="H3588"\w* \w the|strong="H3588"\w* \w righteous|strong="H6662"\w* \w not|strong="H3808"\w* \w sin|strong="H2398"\w*, \w and|strong="H5315"\w* \w he|strong="H1931"\w* \w does|strong="H3808"\w* \w not|strong="H3808"\w* \w sin|strong="H2398"\w*, \w he|strong="H1931"\w* \w will|strong="H6662"\w* \w surely|strong="H3588"\w* \w live|strong="H2421"\w*, \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w took|strong="H2094"\w* \w warning|strong="H2094"\w*; \w and|strong="H5315"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* \w delivered|strong="H5337"\w* \w your|strong="H3588"\w* \w soul|strong="H5315"\w*.” +\p +\v 22 \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w was|strong="H3068"\w* \w there|strong="H8033"\w* \w on|strong="H5921"\w* \w me|strong="H5921"\w*; \w and|strong="H6965"\w* \w he|strong="H8033"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H5921"\w*, “\w Arise|strong="H6965"\w*, \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w plain|strong="H1237"\w*, \w and|strong="H6965"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w talk|strong="H1696"\w* \w with|strong="H3068"\w* \w you|strong="H5921"\w* \w there|strong="H8033"\w*.” +\p +\v 23 \w Then|strong="H6965"\w* \w I|strong="H2009"\w* \w arose|strong="H6965"\w*, \w and|strong="H6965"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H5307"\w* \w the|strong="H6440"\w* \w plain|strong="H1237"\w*, \w and|strong="H6965"\w* \w behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w stood|strong="H5975"\w* \w there|strong="H8033"\w*, \w like|strong="H3318"\w* \w the|strong="H6440"\w* \w glory|strong="H3519"\w* \w which|strong="H3068"\w* \w I|strong="H2009"\w* \w saw|strong="H7200"\w* \w by|strong="H5921"\w* \w the|strong="H6440"\w* \w river|strong="H5104"\w* \w Chebar|strong="H3529"\w*. \w Then|strong="H6965"\w* \w I|strong="H2009"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w my|strong="H3068"\w* \w face|strong="H6440"\w*. +\p +\v 24 \w Then|strong="H1696"\w* \w the|strong="H5921"\w* \w Spirit|strong="H7307"\w* \w entered|strong="H5975"\w* \w into|strong="H8432"\w* \w me|strong="H5921"\w* \w and|strong="H1004"\w* \w set|strong="H5975"\w* \w me|strong="H5921"\w* \w on|strong="H5921"\w* \w my|strong="H5921"\w* \w feet|strong="H7272"\w*. \w He|strong="H1004"\w* \w spoke|strong="H1696"\w* \w with|strong="H1004"\w* \w me|strong="H5921"\w*, \w and|strong="H1004"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H5921"\w*, “\w Go|strong="H7272"\w*, \w shut|strong="H5462"\w* \w yourself|strong="H7272"\w* \w inside|strong="H8432"\w* \w your|strong="H5921"\w* \w house|strong="H1004"\w*. +\v 25 \w But|strong="H3808"\w* \w you|strong="H5414"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w behold|strong="H2009"\w*, \w they|strong="H3808"\w* \w will|strong="H1121"\w* \w put|strong="H5414"\w* \w ropes|strong="H5688"\w* \w on|strong="H5921"\w* \w you|strong="H5414"\w*, \w and|strong="H1121"\w* \w will|strong="H1121"\w* bind \w you|strong="H5414"\w* \w with|strong="H5921"\w* \w them|strong="H5414"\w*, \w and|strong="H1121"\w* \w you|strong="H5414"\w* \w will|strong="H1121"\w* \w not|strong="H3808"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w among|strong="H8432"\w* \w them|strong="H5414"\w*. +\v 26 \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w make|strong="H3198"\w* \w your|strong="H3588"\w* \w tongue|strong="H3956"\w* \w stick|strong="H1692"\w* \w to|strong="H1961"\w* \w the|strong="H3588"\w* \w roof|strong="H2441"\w* \w of|strong="H1004"\w* \w your|strong="H3588"\w* \w mouth|strong="H2441"\w* \w so|strong="H1961"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* mute \w and|strong="H1004"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* able \w to|strong="H1961"\w* \w correct|strong="H3198"\w* \w them|strong="H1992"\w*, \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w a|strong="H3068"\w* \w rebellious|strong="H4805"\w* \w house|strong="H1004"\w*. +\v 27 \w But|strong="H3588"\w* \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w speak|strong="H1696"\w* \w with|strong="H1004"\w* \w you|strong="H3588"\w*, \w I|strong="H3588"\w* \w will|strong="H1004"\w* \w open|strong="H6605"\w* \w your|strong="H8085"\w* \w mouth|strong="H6310"\w*, \w and|strong="H1004"\w* \w you|strong="H3588"\w* \w shall|strong="H1004"\w* \w tell|strong="H1696"\w* \w them|strong="H1992"\w*, ‘\w This|strong="H3541"\w* \w is|strong="H6310"\w* \w what|strong="H3541"\w* \w the|strong="H8085"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*.’ \w He|strong="H3588"\w* \w who|strong="H1992"\w* \w hears|strong="H8085"\w*, \w let|strong="H2308"\w* \w him|strong="H8085"\w* \w hear|strong="H8085"\w*; \w and|strong="H1004"\w* \w he|strong="H3588"\w* \w who|strong="H1992"\w* \w refuses|strong="H2310"\w*, \w let|strong="H2308"\w* \w him|strong="H8085"\w* \w refuse|strong="H3588"\w*; \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w a|strong="H3068"\w* \w rebellious|strong="H4805"\w* \w house|strong="H1004"\w*.” +\c 4 +\p +\v 1 “\w You|strong="H5414"\w* \w also|strong="H1121"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w tile|strong="H3843"\w*, \w and|strong="H1121"\w* \w lay|strong="H5414"\w* \w it|strong="H5414"\w* \w before|strong="H6440"\w* \w yourself|strong="H5921"\w*, \w and|strong="H1121"\w* portray \w on|strong="H5921"\w* \w it|strong="H5414"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w*, \w even|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*. +\v 2 \w Lay|strong="H5414"\w* \w siege|strong="H4692"\w* \w against|strong="H5921"\w* \w it|strong="H5414"\w*, \w build|strong="H1129"\w* \w forts|strong="H1785"\w* \w against|strong="H5921"\w* \w it|strong="H5414"\w*, \w and|strong="H4264"\w* \w cast|strong="H8210"\w* \w up|strong="H5414"\w* \w a|strong="H3068"\w* mound \w against|strong="H5921"\w* \w it|strong="H5414"\w*. Also \w set|strong="H7760"\w* \w camps|strong="H4264"\w* \w against|strong="H5921"\w* \w it|strong="H5414"\w* \w and|strong="H4264"\w* \w plant|strong="H7760"\w* \w battering|strong="H3733"\w* \w rams|strong="H3733"\w* \w against|strong="H5921"\w* \w it|strong="H5414"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*. +\v 3 \w Take|strong="H3947"\w* \w for|strong="H5921"\w* \w yourself|strong="H5921"\w* \w an|strong="H1961"\w* \w iron|strong="H1270"\w* \w pan|strong="H4227"\w* \w and|strong="H3478"\w* \w set|strong="H5414"\w* \w it|strong="H5414"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w wall|strong="H7023"\w* \w of|strong="H1004"\w* \w iron|strong="H1270"\w* \w between|strong="H5921"\w* \w you|strong="H5414"\w* \w and|strong="H3478"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w*. \w Then|strong="H1961"\w* \w set|strong="H5414"\w* \w your|strong="H5414"\w* \w face|strong="H6440"\w* \w toward|strong="H5921"\w* \w it|strong="H5414"\w*. \w It|strong="H5414"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w besieged|strong="H6696"\w*, \w and|strong="H3478"\w* \w you|strong="H5414"\w* \w shall|strong="H3478"\w* \w lay|strong="H5414"\w* \w siege|strong="H4692"\w* \w against|strong="H5921"\w* \w it|strong="H5414"\w*. \w This|strong="H1931"\w* \w shall|strong="H3478"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* sign \w to|strong="H3478"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. +\p +\v 4 “Moreover \w lie|strong="H7901"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w left|strong="H8042"\w* \w side|strong="H6654"\w*, \w and|strong="H3478"\w* \w lay|strong="H7901"\w* \w the|strong="H5921"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w on|strong="H5921"\w* \w it|strong="H7760"\w*. \w According|strong="H5921"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w number|strong="H4557"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w days|strong="H3117"\w* \w that|strong="H3117"\w* \w you|strong="H5921"\w* \w shall|strong="H3478"\w* \w lie|strong="H7901"\w* \w on|strong="H5921"\w* \w it|strong="H7760"\w*, \w you|strong="H5921"\w* \w shall|strong="H3478"\w* \w bear|strong="H5375"\w* \w their|strong="H5375"\w* \w iniquity|strong="H5771"\w*. +\v 5 \w For|strong="H1004"\w* \w I|strong="H3117"\w* \w have|strong="H3478"\w* \w appointed|strong="H5414"\w* \w the|strong="H5414"\w* \w years|strong="H8141"\w* \w of|strong="H1004"\w* \w their|strong="H5375"\w* \w iniquity|strong="H5771"\w* \w to|strong="H3478"\w* \w be|strong="H3478"\w* \w to|strong="H3478"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w number|strong="H4557"\w* \w of|strong="H1004"\w* \w days|strong="H3117"\w*, even \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w ninety|strong="H8673"\w* \w days|strong="H3117"\w*. \w So|strong="H5414"\w* \w you|strong="H5414"\w* \w shall|strong="H3478"\w* \w bear|strong="H5375"\w* \w the|strong="H5414"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1004"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. +\p +\v 6 “\w Again|strong="H8145"\w*, \w when|strong="H3117"\w* \w you|strong="H5414"\w* \w have|strong="H3063"\w* \w accomplished|strong="H3615"\w* \w these|strong="H1004"\w*, \w you|strong="H5414"\w* \w shall|strong="H1004"\w* \w lie|strong="H7901"\w* \w on|strong="H5921"\w* \w your|strong="H5414"\w* right \w side|strong="H6654"\w*, \w and|strong="H3063"\w* \w shall|strong="H1004"\w* \w bear|strong="H5375"\w* \w the|strong="H5921"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w*. \w I|strong="H3117"\w* \w have|strong="H3063"\w* \w appointed|strong="H5414"\w* forty \w days|strong="H3117"\w*, \w each|strong="H3117"\w* \w day|strong="H3117"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w*, \w to|strong="H5921"\w* \w you|strong="H5414"\w*. +\v 7 \w You|strong="H6440"\w* \w shall|strong="H6440"\w* \w set|strong="H3559"\w* \w your|strong="H5921"\w* \w face|strong="H6440"\w* \w toward|strong="H5921"\w* \w the|strong="H6440"\w* \w siege|strong="H4692"\w* \w of|strong="H6440"\w* \w Jerusalem|strong="H3389"\w*, \w with|strong="H5921"\w* \w your|strong="H5921"\w* \w arm|strong="H2220"\w* \w uncovered|strong="H2834"\w*; \w and|strong="H3389"\w* \w you|strong="H6440"\w* \w shall|strong="H6440"\w* \w prophesy|strong="H5012"\w* \w against|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 8 \w Behold|strong="H2009"\w*, \w I|strong="H3117"\w* \w put|strong="H5414"\w* \w ropes|strong="H5688"\w* \w on|strong="H5921"\w* \w you|strong="H5414"\w*, \w and|strong="H3117"\w* \w you|strong="H5414"\w* \w shall|strong="H3117"\w* \w not|strong="H3808"\w* \w turn|strong="H2015"\w* \w yourself|strong="H5921"\w* \w from|strong="H5921"\w* \w one|strong="H3808"\w* \w side|strong="H6654"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w other|strong="H6654"\w*, \w until|strong="H5704"\w* \w you|strong="H5414"\w* \w have|strong="H3117"\w* \w accomplished|strong="H3615"\w* \w the|strong="H5921"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H5414"\w* \w siege|strong="H4692"\w*. +\p +\v 9 “\w Take|strong="H3947"\w* \w for|strong="H5921"\w* \w yourself|strong="H6213"\w* \w also|strong="H6213"\w* \w wheat|strong="H2406"\w*, \w barley|strong="H8184"\w*, \w beans|strong="H6321"\w*, \w lentils|strong="H5742"\w*, \w millet|strong="H1764"\w*, \w and|strong="H3967"\w* \w spelt|strong="H3698"\w*, \w and|strong="H3967"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w in|strong="H5921"\w* \w one|strong="H6213"\w* \w vessel|strong="H3627"\w*. \w Make|strong="H6213"\w* \w bread|strong="H3899"\w* \w of|strong="H3117"\w* \w it|strong="H5414"\w*. \w According|strong="H5921"\w* \w to|strong="H6213"\w* \w the|strong="H5921"\w* \w number|strong="H4557"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w days|strong="H3117"\w* \w that|strong="H3117"\w* \w you|strong="H5414"\w* \w will|strong="H5414"\w* \w lie|strong="H7901"\w* \w on|strong="H5921"\w* \w your|strong="H5414"\w* \w side|strong="H6654"\w*, \w even|strong="H6213"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w ninety|strong="H8673"\w* \w days|strong="H3117"\w*, \w you|strong="H5414"\w* \w shall|strong="H3117"\w* \w eat|strong="H3899"\w* \w of|strong="H3117"\w* \w it|strong="H5414"\w*. +\v 10 \w Your|strong="H5704"\w* \w food|strong="H3978"\w* \w which|strong="H3117"\w* \w you|strong="H3117"\w* \w shall|strong="H3117"\w* \w eat|strong="H3978"\w* \w shall|strong="H3117"\w* \w be|strong="H3117"\w* \w by|strong="H3117"\w* \w weight|strong="H4946"\w*, \w twenty|strong="H6242"\w* \w shekels|strong="H8255"\w*\f + \fr 4:10 \ft A shekel is about 10 grams or about 0.35 ounces.\f* \w a|strong="H3068"\w* \w day|strong="H3117"\w*. \w From|strong="H3117"\w* \w time|strong="H6256"\w* \w to|strong="H5704"\w* \w time|strong="H6256"\w* \w you|strong="H3117"\w* \w shall|strong="H3117"\w* \w eat|strong="H3978"\w* \w it|strong="H5704"\w*. +\v 11 \w You|strong="H5704"\w* \w shall|strong="H4325"\w* \w drink|strong="H8354"\w* \w water|strong="H4325"\w* \w by|strong="H5704"\w* \w measure|strong="H4884"\w*, \w the|strong="H5704"\w* \w sixth|strong="H8345"\w* \w part|strong="H8345"\w* \w of|strong="H4325"\w* \w a|strong="H3068"\w* \w hin|strong="H1969"\w*.\f + \fr 4:11 \ft A hin is about 6.5 liters or 1.7 gallons.\f* \w From|strong="H5704"\w* \w time|strong="H6256"\w* \w to|strong="H5704"\w* \w time|strong="H6256"\w* \w you|strong="H5704"\w* \w shall|strong="H4325"\w* \w drink|strong="H8354"\w*. +\v 12 \w You|strong="H5869"\w* \w shall|strong="H5869"\w* eat \w it|strong="H1931"\w* \w as|strong="H5869"\w* \w barley|strong="H8184"\w* \w cakes|strong="H5692"\w*, \w and|strong="H5869"\w* \w you|strong="H5869"\w* \w shall|strong="H5869"\w* \w bake|strong="H5746"\w* \w it|strong="H1931"\w* \w in|strong="H5869"\w* their \w sight|strong="H5869"\w* \w with|strong="H5869"\w* \w dung|strong="H1561"\w* \w that|strong="H1931"\w* comes \w out|strong="H6627"\w* \w of|strong="H5869"\w* man.” +\v 13 \w Yahweh|strong="H3068"\w* said, “\w Even|strong="H3068"\w* \w thus|strong="H3602"\w* \w will|strong="H3068"\w* \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w eat|strong="H3899"\w* \w their|strong="H3068"\w* \w bread|strong="H3899"\w* \w unclean|strong="H2931"\w*, \w among|strong="H2931"\w* \w the|strong="H3068"\w* \w nations|strong="H1471"\w* \w where|strong="H8033"\w* \w I|strong="H1121"\w* \w will|strong="H3068"\w* \w drive|strong="H5080"\w* \w them|strong="H1121"\w*.” +\p +\v 14 \w Then|strong="H2009"\w* \w I|strong="H5704"\w* \w said|strong="H6310"\w*, “Ah \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*! \w Behold|strong="H2009"\w*, \w my|strong="H2930"\w* \w soul|strong="H5315"\w* \w has|strong="H2009"\w* \w not|strong="H3808"\w* \w been|strong="H2930"\w* \w polluted|strong="H2930"\w*; \w for|strong="H5704"\w* \w from|strong="H5315"\w* \w my|strong="H2930"\w* \w youth|strong="H5271"\w* \w up|strong="H5704"\w* \w even|strong="H5704"\w* \w until|strong="H5704"\w* \w now|strong="H6258"\w* \w I|strong="H5704"\w* \w have|strong="H6258"\w* \w not|strong="H3808"\w* eaten \w of|strong="H6310"\w* \w that|strong="H5315"\w* \w which|strong="H5038"\w* \w dies|strong="H5038"\w* \w of|strong="H6310"\w* \w itself|strong="H5038"\w*, \w or|strong="H3808"\w* \w is|strong="H5315"\w* \w torn|strong="H2966"\w* \w of|strong="H6310"\w* animals. \w No|strong="H3808"\w* \w abominable|strong="H6292"\w* \w meat|strong="H1320"\w* \w has|strong="H2009"\w* come \w into|strong="H5704"\w* \w my|strong="H2930"\w* \w mouth|strong="H6310"\w*!” +\p +\v 15 \w Then|strong="H5414"\w* \w he|strong="H6213"\w* said \w to|strong="H6213"\w* \w me|strong="H5414"\w*, “\w Behold|strong="H7200"\w*, \w I|strong="H5414"\w* \w have|strong="H7200"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w* cow’s \w dung|strong="H1561"\w* \w for|strong="H5921"\w* \w man|strong="H7200"\w*’s \w dung|strong="H1561"\w*, \w and|strong="H3899"\w* \w you|strong="H5414"\w* \w shall|strong="H6213"\w* \w prepare|strong="H6213"\w* \w your|strong="H5414"\w* \w bread|strong="H3899"\w* \w on|strong="H5921"\w* \w it|strong="H5414"\w*.” +\p +\v 16 Moreover \w he|strong="H3389"\w* said \w to|strong="H3389"\w* \w me|strong="H3389"\w*, “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H1121"\w* \w break|strong="H7665"\w* \w the|strong="H7665"\w* \w staff|strong="H4294"\w* \w of|strong="H1121"\w* \w bread|strong="H3899"\w* \w in|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*. \w They|strong="H3389"\w* \w will|strong="H1121"\w* \w eat|strong="H3899"\w* \w bread|strong="H3899"\w* \w by|strong="H4325"\w* \w weight|strong="H4948"\w*, \w and|strong="H1121"\w* \w with|strong="H3389"\w* fearfulness. \w They|strong="H3389"\w* \w will|strong="H1121"\w* \w drink|strong="H8354"\w* \w water|strong="H4325"\w* \w by|strong="H4325"\w* \w measure|strong="H4884"\w*, \w and|strong="H1121"\w* \w in|strong="H1121"\w* dismay; +\v 17 \w that|strong="H4616"\w* they \w may|strong="H4325"\w* \w lack|strong="H2637"\w* \w bread|strong="H3899"\w* \w and|strong="H3899"\w* \w water|strong="H4325"\w*, \w be|strong="H4325"\w* dismayed \w one|strong="H8074"\w* \w with|strong="H3899"\w* another, \w and|strong="H3899"\w* pine \w away|strong="H4743"\w* \w in|strong="H3899"\w* \w their|strong="H8074"\w* \w iniquity|strong="H5771"\w*. +\c 5 +\p +\v 1 “\w You|strong="H5921"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w sharp|strong="H2299"\w* \w sword|strong="H2719"\w*. \w You|strong="H5921"\w* \w shall|strong="H1121"\w* \w take|strong="H3947"\w* \w it|strong="H5921"\w* \w as|strong="H1121"\w* \w a|strong="H3068"\w* barber’s \w razor|strong="H8593"\w* \w to|strong="H5921"\w* \w yourself|strong="H5921"\w*, \w and|strong="H1121"\w* \w shall|strong="H1121"\w* cause \w it|strong="H5921"\w* \w to|strong="H5921"\w* \w pass|strong="H5674"\w* \w over|strong="H5921"\w* \w your|strong="H3947"\w* \w head|strong="H7218"\w* \w and|strong="H1121"\w* \w over|strong="H5921"\w* \w your|strong="H3947"\w* \w beard|strong="H2206"\w*. \w Then|strong="H3947"\w* \w take|strong="H3947"\w* \w balances|strong="H3976"\w* \w to|strong="H5921"\w* \w weigh|strong="H4948"\w* \w and|strong="H1121"\w* \w divide|strong="H2505"\w* \w the|strong="H5921"\w* \w hair|strong="H7218"\w*. +\v 2 \w A|strong="H3068"\w* \w third|strong="H7992"\w* \w part|strong="H7992"\w* \w you|strong="H3117"\w* \w shall|strong="H3117"\w* \w burn|strong="H1197"\w* \w in|strong="H3117"\w* \w the|strong="H3947"\w* fire \w in|strong="H3117"\w* \w the|strong="H3947"\w* \w middle|strong="H8432"\w* \w of|strong="H3117"\w* \w the|strong="H3947"\w* \w city|strong="H5892"\w*, \w when|strong="H3117"\w* \w the|strong="H3947"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3947"\w* \w siege|strong="H4692"\w* \w are|strong="H3117"\w* \w fulfilled|strong="H4390"\w*. \w You|strong="H3117"\w* \w shall|strong="H3117"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w third|strong="H7992"\w* \w part|strong="H7992"\w*, \w and|strong="H3117"\w* \w strike|strong="H5221"\w* \w with|strong="H4390"\w* \w the|strong="H3947"\w* \w sword|strong="H2719"\w* \w around|strong="H5439"\w* \w it|strong="H8432"\w*. \w A|strong="H3068"\w* \w third|strong="H7992"\w* \w part|strong="H7992"\w* \w you|strong="H3117"\w* \w shall|strong="H3117"\w* \w scatter|strong="H2219"\w* \w to|strong="H3117"\w* \w the|strong="H3947"\w* \w wind|strong="H7307"\w*, \w and|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H2719"\w* \w draw|strong="H7324"\w* \w out|strong="H7324"\w* \w a|strong="H3068"\w* \w sword|strong="H2719"\w* \w after|strong="H3117"\w* \w them|strong="H5221"\w*. +\v 3 \w You|strong="H3947"\w* \w shall|strong="H3671"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w small|strong="H4592"\w* \w number|strong="H4557"\w* \w of|strong="H4557"\w* \w these|strong="H3947"\w* \w and|strong="H8033"\w* \w bind|strong="H6696"\w* \w them|strong="H3947"\w* \w in|strong="H8033"\w* \w the|strong="H3947"\w* folds \w of|strong="H4557"\w* \w your|strong="H3947"\w* robe. +\v 4 \w Of|strong="H1004"\w* \w these|strong="H1992"\w* \w again|strong="H5750"\w* \w you|strong="H3605"\w* \w shall|strong="H3478"\w* \w take|strong="H3947"\w*, \w and|strong="H3478"\w* \w cast|strong="H7993"\w* \w them|strong="H1992"\w* \w into|strong="H8432"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* fire, \w and|strong="H3478"\w* \w burn|strong="H8313"\w* \w them|strong="H1992"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* fire. \w From|strong="H4480"\w* \w it|strong="H8432"\w* \w a|strong="H3068"\w* fire \w will|strong="H3478"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H8432"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. +\p +\v 5 “\w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w This|strong="H2063"\w* \w is|strong="H3389"\w* \w Jerusalem|strong="H3389"\w*. \w I|strong="H3541"\w* \w have|strong="H1471"\w* \w set|strong="H7760"\w* \w her|strong="H5439"\w* \w in|strong="H8432"\w* \w the|strong="H3069"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w the|strong="H3069"\w* \w nations|strong="H1471"\w*, \w and|strong="H3389"\w* countries \w are|strong="H1471"\w* \w around|strong="H5439"\w* \w her|strong="H5439"\w*. +\v 6 \w She|strong="H3588"\w* \w has|strong="H3588"\w* \w rebelled|strong="H4784"\w* \w against|strong="H4480"\w* \w my|strong="H3588"\w* \w ordinances|strong="H4941"\w* \w in|strong="H1980"\w* \w doing|strong="H4480"\w* \w wickedness|strong="H7564"\w* \w more|strong="H4480"\w* \w than|strong="H4480"\w* \w the|strong="H3588"\w* \w nations|strong="H1471"\w*, \w and|strong="H1980"\w* \w against|strong="H4480"\w* \w my|strong="H3588"\w* \w statutes|strong="H2708"\w* \w more|strong="H4480"\w* \w than|strong="H4480"\w* \w the|strong="H3588"\w* countries \w that|strong="H3588"\w* \w are|strong="H1471"\w* \w around|strong="H5439"\w* \w her|strong="H5439"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H1471"\w* \w rejected|strong="H3988"\w* \w my|strong="H3588"\w* \w ordinances|strong="H4941"\w*, \w and|strong="H1980"\w* \w as|strong="H3588"\w* \w for|strong="H3588"\w* \w my|strong="H3588"\w* \w statutes|strong="H2708"\w*, \w they|strong="H3588"\w* \w have|strong="H1471"\w* \w not|strong="H3808"\w* \w walked|strong="H1980"\w* \w in|strong="H1980"\w* \w them|strong="H5439"\w*.’ +\p +\v 7 “\w Therefore|strong="H3651"\w* \w the|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Because|strong="H4480"\w* \w you|strong="H6213"\w* \w are|strong="H1471"\w* \w more|strong="H4480"\w* turbulent \w than|strong="H4480"\w* \w the|strong="H3069"\w* \w nations|strong="H1471"\w* \w that|strong="H1471"\w* \w are|strong="H1471"\w* \w around|strong="H5439"\w* \w you|strong="H6213"\w*, \w and|strong="H1980"\w* \w have|strong="H1471"\w* \w not|strong="H3808"\w* \w walked|strong="H1980"\w* \w in|strong="H1980"\w* \w my|strong="H6213"\w* \w statutes|strong="H2708"\w*, \w neither|strong="H3808"\w* \w have|strong="H1471"\w* \w kept|strong="H6213"\w* \w my|strong="H6213"\w* \w ordinances|strong="H4941"\w*, \w neither|strong="H3808"\w* \w have|strong="H1471"\w* \w followed|strong="H1980"\w* \w the|strong="H3069"\w* \w ordinances|strong="H4941"\w* \w of|strong="H4480"\w* \w the|strong="H3069"\w* \w nations|strong="H1471"\w* \w that|strong="H1471"\w* \w are|strong="H1471"\w* \w around|strong="H5439"\w* \w you|strong="H6213"\w*; +\v 8 \w therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w*, \w even|strong="H1571"\w* \w I|strong="H2005"\w*, \w am|strong="H2005"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w*; \w and|strong="H4941"\w* \w I|strong="H2005"\w* \w will|strong="H1471"\w* \w execute|strong="H6213"\w* \w judgments|strong="H4941"\w* \w among|strong="H8432"\w* \w you|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w sight|strong="H5869"\w* \w of|strong="H5869"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*. +\v 9 \w I|strong="H3282"\w* \w will|strong="H3808"\w* \w do|strong="H6213"\w* \w in|strong="H6213"\w* \w you|strong="H3605"\w* \w that|strong="H3605"\w* \w which|strong="H3605"\w* \w I|strong="H3282"\w* \w have|strong="H3605"\w* \w not|strong="H3808"\w* \w done|strong="H6213"\w*, \w and|strong="H6213"\w* \w which|strong="H3605"\w* \w I|strong="H3282"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w do|strong="H6213"\w* \w anything|strong="H3605"\w* \w like|strong="H3644"\w* \w it|strong="H6213"\w* \w any|strong="H3605"\w* \w more|strong="H5750"\w*, \w because|strong="H3282"\w* \w of|strong="H3605"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w abominations|strong="H8441"\w*. +\v 10 \w Therefore|strong="H3651"\w* \w the|strong="H3605"\w* fathers \w will|strong="H1121"\w* eat \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w within|strong="H8432"\w* \w you|strong="H3605"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w will|strong="H1121"\w* eat \w their|strong="H3605"\w* fathers. \w I|strong="H3651"\w* \w will|strong="H1121"\w* \w execute|strong="H6213"\w* \w judgments|strong="H8201"\w* \w on|strong="H6213"\w* \w you|strong="H3605"\w*; \w and|strong="H1121"\w* \w I|strong="H3651"\w* \w will|strong="H1121"\w* \w scatter|strong="H2219"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w remnant|strong="H7611"\w* \w of|strong="H1121"\w* \w you|strong="H3605"\w* \w to|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w winds|strong="H7307"\w*. +\v 11 \w Therefore|strong="H3651"\w* \w as|strong="H1571"\w* \w I|strong="H3651"\w* \w live|strong="H2416"\w*,’ \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, ‘\w surely|strong="H3651"\w*, \w because|strong="H3282"\w* \w you|strong="H3605"\w* \w have|strong="H5869"\w* \w defiled|strong="H2930"\w* \w my|strong="H3605"\w* \w sanctuary|strong="H4720"\w* \w with|strong="H3605"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w detestable|strong="H8251"\w* \w things|strong="H8251"\w*, \w and|strong="H5869"\w* \w with|strong="H3605"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w abominations|strong="H8441"\w*, \w therefore|strong="H3651"\w* \w I|strong="H3651"\w* \w will|strong="H1571"\w* \w also|strong="H1571"\w* \w diminish|strong="H1639"\w* \w you|strong="H3605"\w*. \w My|strong="H3605"\w* \w eye|strong="H5869"\w* won’t \w spare|strong="H2550"\w*, \w and|strong="H5869"\w* \w I|strong="H3651"\w* \w will|strong="H1571"\w* \w have|strong="H5869"\w* \w no|strong="H3808"\w* \w pity|strong="H2347"\w*. +\v 12 \w A|strong="H3068"\w* \w third|strong="H7992"\w* \w part|strong="H7992"\w* \w of|strong="H7307"\w* \w you|strong="H3605"\w* \w will|strong="H2719"\w* \w die|strong="H4191"\w* \w with|strong="H3605"\w* \w the|strong="H3605"\w* \w pestilence|strong="H1698"\w*, \w and|strong="H2719"\w* \w they|strong="H3605"\w* \w will|strong="H2719"\w* \w be|strong="H4191"\w* \w consumed|strong="H3615"\w* \w with|strong="H3605"\w* \w famine|strong="H7458"\w* \w within|strong="H8432"\w* \w you|strong="H3605"\w*. \w A|strong="H3068"\w* \w third|strong="H7992"\w* \w part|strong="H7992"\w* \w will|strong="H2719"\w* \w fall|strong="H5307"\w* \w by|strong="H4191"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w* \w around|strong="H5439"\w* \w you|strong="H3605"\w*. \w A|strong="H3068"\w* \w third|strong="H7992"\w* \w part|strong="H7992"\w* \w I|strong="H3605"\w* \w will|strong="H2719"\w* \w scatter|strong="H2219"\w* \w to|strong="H4191"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w winds|strong="H7307"\w*, \w and|strong="H2719"\w* \w will|strong="H2719"\w* \w draw|strong="H7324"\w* \w out|strong="H7324"\w* \w a|strong="H3068"\w* \w sword|strong="H2719"\w* \w after|strong="H7992"\w* \w them|strong="H5439"\w*. +\p +\v 13 “‘Thus \w my|strong="H3068"\w* \w anger|strong="H2534"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w accomplished|strong="H3615"\w*, \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* cause \w my|strong="H3068"\w* \w wrath|strong="H2534"\w* \w toward|strong="H3068"\w* \w them|strong="H5117"\w* \w to|strong="H1696"\w* \w rest|strong="H5117"\w*, \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w comforted|strong="H5162"\w*. \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w in|strong="H3068"\w* \w my|strong="H3068"\w* \w zeal|strong="H7068"\w*, \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w accomplished|strong="H3615"\w* \w my|strong="H3068"\w* \w wrath|strong="H2534"\w* \w on|strong="H5117"\w* \w them|strong="H5117"\w*. +\p +\v 14 “‘Moreover \w I|strong="H5414"\w* \w will|strong="H1471"\w* \w make|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w desolation|strong="H2723"\w* \w and|strong="H5869"\w* \w a|strong="H3068"\w* \w reproach|strong="H2781"\w* \w among|strong="H2781"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w that|strong="H3605"\w* \w are|strong="H1471"\w* \w around|strong="H5439"\w* \w you|strong="H5414"\w*, \w in|strong="H5414"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H5869"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w pass|strong="H5674"\w* \w by|strong="H5674"\w*. +\v 15 \w So|strong="H6213"\w* \w it|strong="H6213"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w reproach|strong="H2781"\w* \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w taunt|strong="H1422"\w*, \w an|strong="H6213"\w* \w instruction|strong="H4148"\w* \w and|strong="H3068"\w* \w an|strong="H6213"\w* \w astonishment|strong="H4923"\w*, \w to|strong="H1696"\w* \w the|strong="H6213"\w* \w nations|strong="H1471"\w* \w that|strong="H3068"\w* \w are|strong="H1471"\w* \w around|strong="H5439"\w* \w you|strong="H6213"\w*, \w when|strong="H1961"\w* \w I|strong="H3068"\w* \w execute|strong="H6213"\w* \w judgments|strong="H8201"\w* \w on|strong="H3068"\w* \w you|strong="H6213"\w* \w in|strong="H3068"\w* \w anger|strong="H2534"\w* \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w wrath|strong="H2534"\w*, \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w wrathful|strong="H2534"\w* \w rebukes|strong="H8433"\w*—\w I|strong="H3068"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H1961"\w* \w spoken|strong="H1696"\w* \w it|strong="H6213"\w*— +\v 16 \w when|strong="H1961"\w* \w I|strong="H5921"\w* \w send|strong="H7971"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w the|strong="H5921"\w* \w evil|strong="H7451"\w* \w arrows|strong="H2671"\w* \w of|strong="H4294"\w* \w famine|strong="H7458"\w* \w that|strong="H7451"\w* \w are|strong="H2671"\w* \w for|strong="H5921"\w* \w destruction|strong="H4889"\w*, \w which|strong="H7451"\w* \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w send|strong="H7971"\w* \w to|strong="H7971"\w* \w destroy|strong="H7843"\w* \w you|strong="H7971"\w*. \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w increase|strong="H3254"\w* \w the|strong="H5921"\w* \w famine|strong="H7458"\w* \w on|strong="H5921"\w* \w you|strong="H7971"\w* \w and|strong="H7971"\w* \w will|strong="H1961"\w* \w break|strong="H7665"\w* \w your|strong="H5921"\w* \w staff|strong="H4294"\w* \w of|strong="H4294"\w* \w bread|strong="H3899"\w*. +\v 17 \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w on|strong="H5921"\w* \w you|strong="H7971"\w* \w famine|strong="H7458"\w* \w and|strong="H3068"\w* \w evil|strong="H7451"\w* \w animals|strong="H2416"\w*, \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* \w bereave|strong="H7921"\w* \w you|strong="H7971"\w*. \w Pestilence|strong="H1698"\w* \w and|strong="H3068"\w* \w blood|strong="H1818"\w* \w will|strong="H3068"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w you|strong="H7971"\w*. \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w bring|strong="H5674"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w* \w on|strong="H5921"\w* \w you|strong="H7971"\w*. \w I|strong="H5921"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w it|strong="H5921"\w*.’” +\c 6 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w set|strong="H7760"\w* \w your|strong="H7760"\w* \w face|strong="H6440"\w* \w toward|strong="H6440"\w* \w the|strong="H6440"\w* \w mountains|strong="H2022"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w prophesy|strong="H5012"\w* \w to|strong="H3478"\w* \w them|strong="H6440"\w*, +\v 3 \w and|strong="H3478"\w* \w say|strong="H1697"\w*, ‘\w You|strong="H5921"\w* \w mountains|strong="H2022"\w* \w of|strong="H1697"\w* \w Israel|strong="H3478"\w*, \w hear|strong="H8085"\w* \w the|strong="H5921"\w* \w word|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*! \w The|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w* \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w hills|strong="H1389"\w*, \w to|strong="H3478"\w* \w the|strong="H5921"\w* watercourses \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w valleys|strong="H1516"\w*: “\w Behold|strong="H2009"\w*, \w I|strong="H3541"\w*, \w even|strong="H5921"\w* \w I|strong="H3541"\w*, \w will|strong="H3478"\w* bring \w a|strong="H3068"\w* \w sword|strong="H2719"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*, \w and|strong="H3478"\w* \w I|strong="H3541"\w* \w will|strong="H3478"\w* \w destroy|strong="H2719"\w* \w your|strong="H5921"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*. +\v 4 \w Your|strong="H6440"\w* \w altars|strong="H4196"\w* \w will|strong="H2491"\w* \w become|strong="H8074"\w* \w desolate|strong="H8074"\w*, \w and|strong="H6440"\w* \w your|strong="H6440"\w* \w incense|strong="H2553"\w* \w altars|strong="H4196"\w* \w will|strong="H2491"\w* \w be|strong="H6440"\w* \w broken|strong="H7665"\w*. \w I|strong="H6440"\w* \w will|strong="H2491"\w* \w cast|strong="H5307"\w* \w down|strong="H5307"\w* \w your|strong="H6440"\w* \w slain|strong="H2491"\w* men \w before|strong="H6440"\w* \w your|strong="H6440"\w* \w idols|strong="H1544"\w*. +\v 5 \w I|strong="H5414"\w* \w will|strong="H3478"\w* \w lay|strong="H5414"\w* \w the|strong="H6440"\w* \w dead|strong="H6297"\w* \w bodies|strong="H6297"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w before|strong="H6440"\w* \w their|strong="H5414"\w* \w idols|strong="H1544"\w*. \w I|strong="H5414"\w* \w will|strong="H3478"\w* \w scatter|strong="H2219"\w* \w your|strong="H5414"\w* \w bones|strong="H6106"\w* \w around|strong="H5439"\w* \w your|strong="H5414"\w* \w altars|strong="H4196"\w*. +\v 6 \w In|strong="H5892"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w dwelling|strong="H4186"\w* \w places|strong="H1116"\w*, \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w will|strong="H5892"\w* \w be|strong="H5892"\w* \w laid|strong="H2717"\w* \w waste|strong="H2717"\w* \w and|strong="H5892"\w* \w the|strong="H3605"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w will|strong="H5892"\w* \w be|strong="H5892"\w* \w desolate|strong="H2717"\w*, \w so|strong="H4616"\w* \w that|strong="H3605"\w* \w your|strong="H3605"\w* \w altars|strong="H4196"\w* \w may|strong="H4196"\w* \w be|strong="H5892"\w* \w laid|strong="H2717"\w* \w waste|strong="H2717"\w* \w and|strong="H5892"\w* \w made|strong="H4639"\w* \w desolate|strong="H2717"\w*, \w and|strong="H5892"\w* \w your|strong="H3605"\w* \w idols|strong="H1544"\w* \w may|strong="H4196"\w* \w be|strong="H5892"\w* \w broken|strong="H7665"\w* \w and|strong="H5892"\w* \w cease|strong="H7673"\w*, \w and|strong="H5892"\w* \w your|strong="H3605"\w* \w incense|strong="H2553"\w* \w altars|strong="H4196"\w* \w may|strong="H4196"\w* \w be|strong="H5892"\w* \w cut|strong="H1438"\w* \w down|strong="H1438"\w*, \w and|strong="H5892"\w* \w your|strong="H3605"\w* \w works|strong="H4639"\w* \w may|strong="H4196"\w* \w be|strong="H5892"\w* \w abolished|strong="H4229"\w*. +\v 7 \w The|strong="H3588"\w* \w slain|strong="H2491"\w* \w will|strong="H3068"\w* \w fall|strong="H5307"\w* \w among|strong="H8432"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 8 “‘“Yet \w I|strong="H1961"\w* \w will|strong="H1961"\w* \w leave|strong="H3498"\w* \w a|strong="H3068"\w* \w remnant|strong="H3498"\w*, \w in|strong="H3498"\w* \w that|strong="H1471"\w* \w you|strong="H1961"\w* \w will|strong="H1961"\w* \w have|strong="H1961"\w* \w some|strong="H3498"\w* \w that|strong="H1471"\w* \w escape|strong="H6412"\w* \w the|strong="H1961"\w* \w sword|strong="H2719"\w* \w among|strong="H2719"\w* \w the|strong="H1961"\w* \w nations|strong="H1471"\w*, \w when|strong="H1961"\w* \w you|strong="H1961"\w* \w are|strong="H1471"\w* \w scattered|strong="H2219"\w* through \w the|strong="H1961"\w* countries. +\v 9 \w Those|strong="H3605"\w* \w of|strong="H6440"\w* \w you|strong="H6440"\w* \w that|strong="H3605"\w* \w escape|strong="H6412"\w* \w will|strong="H1471"\w* \w remember|strong="H2142"\w* \w me|strong="H6440"\w* \w among|strong="H5921"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w where|strong="H8033"\w* \w they|strong="H8033"\w* \w are|strong="H1471"\w* \w carried|strong="H7617"\w* \w captive|strong="H7617"\w*, \w how|strong="H2142"\w* \w I|strong="H5921"\w* \w have|strong="H5869"\w* \w been|strong="H2142"\w* \w broken|strong="H7665"\w* \w with|strong="H6213"\w* \w their|strong="H3605"\w* lewd \w heart|strong="H3820"\w*, \w which|strong="H1471"\w* \w has|strong="H3820"\w* \w departed|strong="H5493"\w* \w from|strong="H5493"\w* \w me|strong="H6440"\w*, \w and|strong="H5869"\w* \w with|strong="H6213"\w* \w their|strong="H3605"\w* \w eyes|strong="H5869"\w*, \w which|strong="H1471"\w* \w play|strong="H2181"\w* \w the|strong="H3605"\w* \w prostitute|strong="H2181"\w* \w after|strong="H5921"\w* \w their|strong="H3605"\w* \w idols|strong="H1544"\w*. \w Then|strong="H6213"\w* \w they|strong="H8033"\w* \w will|strong="H1471"\w* \w loathe|strong="H6962"\w* \w themselves|strong="H6213"\w* \w in|strong="H5921"\w* \w their|strong="H3605"\w* \w own|strong="H6440"\w* \w sight|strong="H5869"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w evils|strong="H7451"\w* \w which|strong="H1471"\w* \w they|strong="H8033"\w* \w have|strong="H5869"\w* \w committed|strong="H6213"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w abominations|strong="H8441"\w*. +\v 10 \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w said|strong="H1696"\w* \w in|strong="H3068"\w* \w vain|strong="H2600"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w would|strong="H3068"\w* \w do|strong="H6213"\w* \w this|strong="H2063"\w* \w evil|strong="H7451"\w* \w to|strong="H1696"\w* \w them|strong="H6213"\w*.”’ +\p +\v 11 “\w The|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Strike|strong="H5221"\w* \w with|strong="H1004"\w* \w your|strong="H3605"\w* \w hand|strong="H3709"\w*, \w and|strong="H3478"\w* \w stamp|strong="H7554"\w* \w with|strong="H1004"\w* \w your|strong="H3605"\w* \w foot|strong="H7272"\w*, \w and|strong="H3478"\w* \w say|strong="H3478"\w*, “Alas!”, \w because|strong="H3605"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w abominations|strong="H8441"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*; \w for|strong="H1004"\w* \w they|strong="H3478"\w* \w will|strong="H3478"\w* \w fall|strong="H5307"\w* \w by|strong="H3478"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w by|strong="H3478"\w* \w the|strong="H3605"\w* \w famine|strong="H7458"\w*, \w and|strong="H3478"\w* \w by|strong="H3478"\w* \w the|strong="H3605"\w* \w pestilence|strong="H1698"\w*. +\v 12 \w He|strong="H7604"\w* \w who|strong="H7604"\w* \w is|strong="H2719"\w* \w far|strong="H7350"\w* \w off|strong="H7350"\w* \w will|strong="H2719"\w* \w die|strong="H4191"\w* \w of|strong="H3615"\w* \w the|strong="H4191"\w* \w pestilence|strong="H1698"\w*. \w He|strong="H7604"\w* \w who|strong="H7604"\w* \w is|strong="H2719"\w* \w near|strong="H7138"\w* \w will|strong="H2719"\w* \w fall|strong="H5307"\w* \w by|strong="H4191"\w* \w the|strong="H4191"\w* \w sword|strong="H2719"\w*. \w He|strong="H7604"\w* \w who|strong="H7604"\w* \w remains|strong="H7604"\w* \w and|strong="H2719"\w* \w is|strong="H2719"\w* \w besieged|strong="H5341"\w* \w will|strong="H2719"\w* \w die|strong="H4191"\w* \w by|strong="H4191"\w* \w the|strong="H4191"\w* \w famine|strong="H7458"\w*. \w Thus|strong="H4191"\w* \w I|strong="H7350"\w* \w will|strong="H2719"\w* \w accomplish|strong="H3615"\w* \w my|strong="H3615"\w* \w wrath|strong="H2534"\w* \w on|strong="H5307"\w* \w them|strong="H3615"\w*. +\v 13 \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w when|strong="H3588"\w* \w their|strong="H3605"\w* \w slain|strong="H2491"\w* \w men|strong="H7218"\w* \w are|strong="H3068"\w* \w among|strong="H8432"\w* \w their|strong="H3605"\w* \w idols|strong="H1544"\w* \w around|strong="H5439"\w* \w their|strong="H3605"\w* \w altars|strong="H4196"\w*, \w on|strong="H3068"\w* \w every|strong="H3605"\w* \w high|strong="H7311"\w* \w hill|strong="H2022"\w*, \w on|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tops|strong="H7218"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w*, \w under|strong="H8478"\w* \w every|strong="H3605"\w* \w green|strong="H7488"\w* \w tree|strong="H6086"\w*, \w and|strong="H3068"\w* \w under|strong="H8478"\w* \w every|strong="H3605"\w* \w thick|strong="H5687"\w* oak—\w the|strong="H3605"\w* \w places|strong="H4725"\w* \w where|strong="H8033"\w* \w they|strong="H3588"\w* \w offered|strong="H7311"\w* pleasant \w aroma|strong="H7381"\w* \w to|strong="H3068"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w idols|strong="H1544"\w*. +\v 14 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w stretch|strong="H5186"\w* \w out|strong="H5186"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w them|strong="H5414"\w* \w and|strong="H3068"\w* \w make|strong="H5414"\w* \w the|strong="H3605"\w* land \w desolate|strong="H8077"\w* \w and|strong="H3068"\w* \w waste|strong="H4923"\w*, \w from|strong="H5921"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* \w toward|strong="H5921"\w* \w Diblah|strong="H1689"\w*, \w throughout|strong="H3605"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w habitations|strong="H4186"\w*. \w Then|strong="H5414"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.’” +\b +\c 7 +\p +\v 1 \w Moreover|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w You|strong="H5921"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w the|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* land \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, ‘\w An|strong="H3478"\w* \w end|strong="H7093"\w*! \w The|strong="H5921"\w* \w end|strong="H7093"\w* \w has|strong="H3478"\w* \w come|strong="H3478"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* four \w corners|strong="H3671"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* land. +\v 3 \w Now|strong="H6258"\w* \w the|strong="H3605"\w* \w end|strong="H7093"\w* \w is|strong="H1870"\w* \w on|strong="H5921"\w* \w you|strong="H5414"\w*, \w and|strong="H7971"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w send|strong="H7971"\w* \w my|strong="H5414"\w* anger \w on|strong="H5921"\w* \w you|strong="H5414"\w*, \w and|strong="H7971"\w* \w will|strong="H5414"\w* \w judge|strong="H8199"\w* \w you|strong="H5414"\w* \w according|strong="H5921"\w* \w to|strong="H7971"\w* \w your|strong="H3605"\w* \w ways|strong="H1870"\w*. \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w bring|strong="H5414"\w* \w on|strong="H5921"\w* \w you|strong="H5414"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w abominations|strong="H8441"\w*. +\v 4 \w My|strong="H5414"\w* \w eye|strong="H5869"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w spare|strong="H2550"\w* \w you|strong="H3588"\w*, \w neither|strong="H3808"\w* \w will|strong="H3068"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w pity|strong="H2347"\w*; \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w bring|strong="H5414"\w* \w your|strong="H3068"\w* \w ways|strong="H1870"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w abominations|strong="H8441"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w among|strong="H8432"\w* \w you|strong="H3588"\w*. \w Then|strong="H1961"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w*.’ +\p +\v 5 “\w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w A|strong="H3068"\w* \w disaster|strong="H7451"\w*! \w A|strong="H3068"\w* unique \w disaster|strong="H7451"\w*! \w Behold|strong="H2009"\w*, \w it|strong="H2009"\w* comes. +\v 6 \w An|strong="H7093"\w* \w end|strong="H7093"\w* \w has|strong="H2009"\w* come. \w The|strong="H2009"\w* \w end|strong="H7093"\w* \w has|strong="H2009"\w* come! \w It|strong="H2009"\w* awakes against \w you|strong="H2009"\w*. \w Behold|strong="H2009"\w*, \w it|strong="H2009"\w* comes. +\v 7 \w Your|strong="H3808"\w* \w doom|strong="H6843"\w* \w has|strong="H3117"\w* come \w to|strong="H6256"\w* \w you|strong="H3117"\w*, \w inhabitant|strong="H3427"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* land! \w The|strong="H3117"\w* \w time|strong="H6256"\w* \w has|strong="H3117"\w* come! \w The|strong="H3117"\w* \w day|strong="H3117"\w* \w is|strong="H3117"\w* \w near|strong="H7138"\w*, \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w tumult|strong="H4103"\w*, \w and|strong="H3117"\w* \w not|strong="H3808"\w* \w of|strong="H3117"\w* \w joyful|strong="H1906"\w* \w shouting|strong="H1906"\w*, \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w mountains|strong="H2022"\w*. +\v 8 \w Now|strong="H6258"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w shortly|strong="H7138"\w* \w pour|strong="H8210"\w* \w out|strong="H8210"\w* \w my|strong="H5414"\w* \w wrath|strong="H2534"\w* \w on|strong="H5921"\w* \w you|strong="H5414"\w*, \w and|strong="H1870"\w* \w accomplish|strong="H3615"\w* \w my|strong="H5414"\w* \w anger|strong="H2534"\w* \w against|strong="H5921"\w* \w you|strong="H5414"\w*, \w and|strong="H1870"\w* \w will|strong="H5414"\w* \w judge|strong="H8199"\w* \w you|strong="H5414"\w* \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w your|strong="H3605"\w* \w ways|strong="H1870"\w*. \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w bring|strong="H5414"\w* \w on|strong="H5921"\w* \w you|strong="H5414"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w abominations|strong="H8441"\w*. +\v 9 \w My|strong="H5414"\w* \w eye|strong="H5869"\w* won’t \w spare|strong="H2550"\w*, \w neither|strong="H3808"\w* \w will|strong="H3068"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w pity|strong="H2347"\w*. \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w punish|strong="H5221"\w* \w you|strong="H3588"\w* \w according|strong="H5921"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w ways|strong="H1870"\w*. \w Your|strong="H3068"\w* \w abominations|strong="H8441"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w among|strong="H8432"\w* \w you|strong="H3588"\w*. \w Then|strong="H1961"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w strike|strong="H5221"\w*. +\p +\v 10 “‘\w Behold|strong="H2009"\w*, \w the|strong="H3117"\w* \w day|strong="H3117"\w*! \w Behold|strong="H2009"\w*, \w it|strong="H3117"\w* \w comes|strong="H3318"\w*! \w Your|strong="H3318"\w* \w doom|strong="H6843"\w* \w has|strong="H3117"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w*. \w The|strong="H3117"\w* \w rod|strong="H4294"\w* \w has|strong="H3117"\w* \w blossomed|strong="H6524"\w*. \w Pride|strong="H2087"\w* \w has|strong="H3117"\w* \w budded|strong="H6524"\w*. +\v 11 \w Violence|strong="H2555"\w* \w has|strong="H4294"\w* \w risen|strong="H6965"\w* \w up|strong="H6965"\w* into \w a|strong="H3068"\w* \w rod|strong="H4294"\w* \w of|strong="H4294"\w* \w wickedness|strong="H7562"\w*. \w None|strong="H3808"\w* \w of|strong="H4294"\w* \w them|strong="H1992"\w* \w will|strong="H3808"\w* \w remain|strong="H6965"\w*, \w nor|strong="H3808"\w* \w of|strong="H4294"\w* \w their|strong="H1992"\w* \w multitude|strong="H1995"\w*, \w nor|strong="H3808"\w* \w of|strong="H4294"\w* \w their|strong="H1992"\w* \w wealth|strong="H1995"\w*. \w There|strong="H1992"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w nothing|strong="H3808"\w* \w of|strong="H4294"\w* value \w among|strong="H3808"\w* \w them|strong="H1992"\w*. +\v 12 \w The|strong="H3605"\w* \w time|strong="H6256"\w* \w has|strong="H3117"\w* \w come|strong="H5060"\w*! \w The|strong="H3605"\w* \w day|strong="H3117"\w* draws \w near|strong="H5060"\w*. Don’t \w let|strong="H8055"\w* \w the|strong="H3605"\w* \w buyer|strong="H7069"\w* \w rejoice|strong="H8055"\w*, \w nor|strong="H3117"\w* \w the|strong="H3605"\w* \w seller|strong="H4376"\w* mourn; \w for|strong="H3588"\w* \w wrath|strong="H2740"\w* \w is|strong="H3117"\w* \w on|strong="H3117"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w multitude|strong="H1995"\w*. +\v 13 \w For|strong="H3588"\w* \w the|strong="H3605"\w* \w seller|strong="H4376"\w* won’t \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w that|strong="H3588"\w* \w which|strong="H2416"\w* \w is|strong="H3605"\w* \w sold|strong="H4376"\w*, \w although|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H5771"\w* \w still|strong="H5750"\w* \w alive|strong="H2416"\w*; \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w vision|strong="H2377"\w* concerns \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w multitude|strong="H1995"\w* \w of|strong="H3605"\w* \w it|strong="H3588"\w*. \w None|strong="H3808"\w* \w will|strong="H3808"\w* \w return|strong="H7725"\w*. \w None|strong="H3808"\w* \w will|strong="H3808"\w* \w strengthen|strong="H2388"\w* \w himself|strong="H2388"\w* \w in|strong="H7725"\w* \w the|strong="H3605"\w* \w iniquity|strong="H5771"\w* \w of|strong="H3605"\w* \w his|strong="H3605"\w* \w life|strong="H2416"\w*. +\v 14 \w They|strong="H3588"\w* \w have|strong="H3605"\w* \w blown|strong="H8628"\w* \w the|strong="H3605"\w* \w trumpet|strong="H8619"\w*, \w and|strong="H1980"\w* \w have|strong="H3605"\w* \w made|strong="H3559"\w* \w all|strong="H3605"\w* \w ready|strong="H3559"\w*; \w but|strong="H3588"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w goes|strong="H1980"\w* \w to|strong="H1980"\w* \w the|strong="H3605"\w* \w battle|strong="H4421"\w*, \w for|strong="H3588"\w* \w my|strong="H3605"\w* \w wrath|strong="H2740"\w* \w is|strong="H3605"\w* \w on|strong="H1980"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w multitude|strong="H1995"\w*. +\p +\v 15 “‘\w The|strong="H2351"\w* \w sword|strong="H2719"\w* \w is|strong="H5892"\w* \w outside|strong="H2351"\w*, \w and|strong="H1004"\w* \w the|strong="H2351"\w* \w pestilence|strong="H1698"\w* \w and|strong="H1004"\w* \w the|strong="H2351"\w* \w famine|strong="H7458"\w* \w within|strong="H1004"\w*. \w He|strong="H1004"\w* who \w is|strong="H5892"\w* \w in|strong="H1004"\w* \w the|strong="H2351"\w* \w field|strong="H7704"\w* \w will|strong="H2719"\w* \w die|strong="H4191"\w* \w by|strong="H4191"\w* \w the|strong="H2351"\w* \w sword|strong="H2719"\w*. \w He|strong="H1004"\w* who \w is|strong="H5892"\w* \w in|strong="H1004"\w* \w the|strong="H2351"\w* \w city|strong="H5892"\w* \w will|strong="H2719"\w* \w be|strong="H4191"\w* devoured \w by|strong="H4191"\w* \w famine|strong="H7458"\w* \w and|strong="H1004"\w* \w pestilence|strong="H1698"\w*. +\v 16 \w But|strong="H1961"\w* \w of|strong="H2022"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w escape|strong="H6412"\w*, \w they|strong="H3605"\w* \w will|strong="H1961"\w* \w escape|strong="H6412"\w* \w and|strong="H2022"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w on|strong="H1961"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w* \w like|strong="H1961"\w* \w doves|strong="H3123"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w valleys|strong="H1516"\w*, \w all|strong="H3605"\w* \w of|strong="H2022"\w* \w them|strong="H1961"\w* moaning, \w everyone|strong="H3605"\w* \w in|strong="H1961"\w* \w his|strong="H3605"\w* \w iniquity|strong="H5771"\w*. +\v 17 \w All|strong="H3605"\w* \w hands|strong="H3027"\w* \w will|strong="H3027"\w* \w be|strong="H3027"\w* \w feeble|strong="H7503"\w*, \w and|strong="H3027"\w* \w all|strong="H3605"\w* \w knees|strong="H1290"\w* \w will|strong="H3027"\w* \w be|strong="H3027"\w* \w weak|strong="H3212"\w* \w as|strong="H3605"\w* \w water|strong="H4325"\w*. +\v 18 \w They|strong="H3605"\w* \w will|strong="H6440"\w* also \w clothe|strong="H3680"\w* \w themselves|strong="H6440"\w* \w with|strong="H6440"\w* \w sackcloth|strong="H8242"\w*, \w and|strong="H7218"\w* \w horror|strong="H6427"\w* \w will|strong="H6440"\w* \w cover|strong="H3680"\w* \w them|strong="H6440"\w*. Shame \w will|strong="H6440"\w* \w be|strong="H6440"\w* \w on|strong="H2296"\w* \w all|strong="H3605"\w* \w faces|strong="H6440"\w*, \w and|strong="H7218"\w* \w baldness|strong="H7144"\w* \w on|strong="H2296"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w heads|strong="H7218"\w*. +\v 19 \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w cast|strong="H7993"\w* \w their|strong="H3068"\w* \w silver|strong="H3701"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w streets|strong="H2351"\w*, \w and|strong="H3068"\w* \w their|strong="H3068"\w* \w gold|strong="H2091"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w as|strong="H3117"\w* \w an|strong="H1961"\w* \w unclean|strong="H5079"\w* \w thing|strong="H5079"\w*. \w Their|strong="H3068"\w* \w silver|strong="H3701"\w* \w and|strong="H3068"\w* \w their|strong="H3068"\w* \w gold|strong="H2091"\w* won’t \w be|strong="H1961"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w deliver|strong="H5337"\w* \w them|strong="H7993"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w wrath|strong="H5678"\w*. \w They|strong="H3588"\w* won’t \w satisfy|strong="H7646"\w* \w their|strong="H3068"\w* \w souls|strong="H5315"\w* \w or|strong="H3808"\w* \w fill|strong="H4390"\w* \w their|strong="H3068"\w* bellies; \w because|strong="H3588"\w* \w it|strong="H3588"\w* \w has|strong="H3068"\w* \w been|strong="H1961"\w* \w the|strong="H3588"\w* \w stumbling|strong="H4383"\w* \w block|strong="H4383"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w iniquity|strong="H5771"\w*. +\v 20 \w As|strong="H6213"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w beauty|strong="H6643"\w* \w of|strong="H5921"\w* \w his|strong="H5414"\w* \w ornament|strong="H5716"\w*, \w he|strong="H3651"\w* \w set|strong="H7760"\w* \w it|strong="H5414"\w* \w in|strong="H5921"\w* \w majesty|strong="H1347"\w*; \w but|strong="H3651"\w* \w they|strong="H3651"\w* \w made|strong="H6213"\w* \w the|strong="H5921"\w* \w images|strong="H6754"\w* \w of|strong="H5921"\w* \w their|strong="H5414"\w* \w abominations|strong="H8441"\w* \w and|strong="H6213"\w* \w their|strong="H5414"\w* \w detestable|strong="H8251"\w* \w things|strong="H8251"\w* therein. \w Therefore|strong="H3651"\w* \w I|strong="H5414"\w* \w have|strong="H5414"\w* \w made|strong="H6213"\w* \w it|strong="H5414"\w* \w to|strong="H6213"\w* \w them|strong="H5414"\w* \w as|strong="H6213"\w* \w an|strong="H6213"\w* \w unclean|strong="H5079"\w* \w thing|strong="H5079"\w*. +\v 21 \w I|strong="H5414"\w* \w will|strong="H7563"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5414"\w* \w strangers|strong="H2114"\w* \w for|strong="H3027"\w* \w a|strong="H3068"\w* \w prey|strong="H7998"\w*, \w and|strong="H3027"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w wicked|strong="H7563"\w* \w of|strong="H3027"\w* \w the|strong="H5414"\w* earth \w for|strong="H3027"\w* \w a|strong="H3068"\w* \w plunder|strong="H7998"\w*; \w and|strong="H3027"\w* \w they|strong="H3027"\w* \w will|strong="H7563"\w* \w profane|strong="H2490"\w* \w it|strong="H5414"\w*. +\v 22 \w I|strong="H6440"\w* \w will|strong="H6440"\w* \w also|strong="H1992"\w* \w turn|strong="H5437"\w* \w my|strong="H2490"\w* \w face|strong="H6440"\w* \w from|strong="H6440"\w* \w them|strong="H1992"\w*, \w and|strong="H6440"\w* \w they|strong="H1992"\w* \w will|strong="H6440"\w* \w profane|strong="H2490"\w* \w my|strong="H2490"\w* \w secret|strong="H6845"\w* \w place|strong="H6845"\w*. \w Robbers|strong="H6530"\w* \w will|strong="H6440"\w* enter into \w it|strong="H6440"\w*, \w and|strong="H6440"\w* \w profane|strong="H2490"\w* \w it|strong="H6440"\w*. +\p +\v 23 “‘\w Make|strong="H6213"\w* \w chains|strong="H7569"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* land \w is|strong="H5892"\w* \w full|strong="H4390"\w* \w of|strong="H5892"\w* \w bloody|strong="H1818"\w* \w crimes|strong="H4941"\w*, \w and|strong="H4941"\w* \w the|strong="H3588"\w* \w city|strong="H5892"\w* \w is|strong="H5892"\w* \w full|strong="H4390"\w* \w of|strong="H5892"\w* \w violence|strong="H2555"\w*. +\v 24 Therefore \w I|strong="H1004"\w* \w will|strong="H1471"\w* \w bring|strong="H7451"\w* \w the|strong="H3423"\w* \w worst|strong="H7451"\w* \w of|strong="H1004"\w* \w the|strong="H3423"\w* \w nations|strong="H1471"\w*, \w and|strong="H1004"\w* \w they|strong="H6942"\w* \w will|strong="H1471"\w* \w possess|strong="H3423"\w* \w their|strong="H3423"\w* \w houses|strong="H1004"\w*. \w I|strong="H1004"\w* \w will|strong="H1471"\w* \w also|strong="H1471"\w* \w make|strong="H7673"\w* \w the|strong="H3423"\w* \w pride|strong="H1347"\w* \w of|strong="H1004"\w* \w the|strong="H3423"\w* \w strong|strong="H5794"\w* \w to|strong="H1004"\w* \w cease|strong="H7673"\w*. \w Their|strong="H3423"\w* \w holy|strong="H6942"\w* \w places|strong="H1004"\w* \w will|strong="H1471"\w* \w be|strong="H1471"\w* \w profaned|strong="H2490"\w*. +\v 25 \w Destruction|strong="H7089"\w* comes! \w They|strong="H7965"\w* will \w seek|strong="H1245"\w* \w peace|strong="H7965"\w*, \w and|strong="H7965"\w* \w there|strong="H7965"\w* will \w be|strong="H7965"\w* none. +\v 26 \w Mischief|strong="H1943"\w* \w will|strong="H1961"\w* \w come|strong="H1961"\w* \w on|strong="H5921"\w* \w mischief|strong="H1943"\w*, \w and|strong="H3548"\w* \w rumor|strong="H8052"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w rumor|strong="H8052"\w*. \w They|strong="H5921"\w* \w will|strong="H1961"\w* \w seek|strong="H1245"\w* \w a|strong="H3068"\w* \w vision|strong="H2377"\w* \w of|strong="H2205"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w*; \w but|strong="H1961"\w* \w the|strong="H5921"\w* \w law|strong="H8451"\w* \w will|strong="H1961"\w* perish \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w priest|strong="H3548"\w*, \w and|strong="H3548"\w* \w counsel|strong="H6098"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w elders|strong="H2205"\w*. +\v 27 \w The|strong="H3588"\w* \w king|strong="H4428"\w* \w will|strong="H3068"\w* mourn, \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w prince|strong="H5387"\w* \w will|strong="H3068"\w* \w be|strong="H3027"\w* \w clothed|strong="H3847"\w* \w with|strong="H3847"\w* \w desolation|strong="H8077"\w*. \w The|strong="H3588"\w* \w hands|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* land \w will|strong="H3068"\w* \w be|strong="H3027"\w* troubled. \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w to|strong="H3068"\w* \w them|strong="H3027"\w* \w after|strong="H3588"\w* \w their|strong="H3068"\w* \w way|strong="H1870"\w*, \w and|strong="H3068"\w* \w according|strong="H4941"\w* \w to|strong="H3068"\w* \w their|strong="H3068"\w* \w own|strong="H5971"\w* \w judgments|strong="H4941"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w judge|strong="H8199"\w* \w them|strong="H3027"\w*. \w Then|strong="H6213"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.’” +\c 8 +\p +\v 1 \w In|strong="H3427"\w* \w the|strong="H6440"\w* \w sixth|strong="H8345"\w* \w year|strong="H8141"\w*, \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w sixth|strong="H8345"\w* \w month|strong="H2320"\w*, \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w fifth|strong="H2568"\w* \w day|strong="H2320"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w month|strong="H2320"\w*, \w as|strong="H1961"\w* \w I|strong="H5921"\w* \w sat|strong="H3427"\w* \w in|strong="H3427"\w* \w my|strong="H5921"\w* \w house|strong="H1004"\w*, \w and|strong="H3063"\w* \w the|strong="H6440"\w* \w elders|strong="H2205"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w sat|strong="H3427"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*, \w the|strong="H6440"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w me|strong="H6440"\w* \w there|strong="H8033"\w*. +\v 2 \w Then|strong="H2009"\w* \w I|strong="H2009"\w* \w saw|strong="H7200"\w*, \w and|strong="H5869"\w* \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w likeness|strong="H1823"\w* \w as|strong="H5869"\w* \w the|strong="H7200"\w* \w appearance|strong="H4758"\w* \w of|strong="H5869"\w* fire—\w from|strong="H5869"\w* \w the|strong="H7200"\w* \w appearance|strong="H4758"\w* \w of|strong="H5869"\w* \w his|strong="H7200"\w* \w waist|strong="H4975"\w* \w and|strong="H5869"\w* \w downward|strong="H4295"\w*, fire, \w and|strong="H5869"\w* \w from|strong="H5869"\w* \w his|strong="H7200"\w* \w waist|strong="H4975"\w* \w and|strong="H5869"\w* \w upward|strong="H4605"\w*, \w as|strong="H5869"\w* \w the|strong="H7200"\w* \w appearance|strong="H4758"\w* \w of|strong="H5869"\w* \w brightness|strong="H2096"\w*, \w as|strong="H5869"\w* \w it|strong="H7200"\w* \w were|strong="H5869"\w* \w glowing|strong="H2830"\w* \w metal|strong="H2830"\w*. +\v 3 \w He|strong="H8033"\w* \w stretched|strong="H7971"\w* \w out|strong="H7971"\w* \w the|strong="H3947"\w* \w form|strong="H8403"\w* \w of|strong="H3027"\w* \w a|strong="H3068"\w* \w hand|strong="H3027"\w*, \w and|strong="H7971"\w* \w took|strong="H3947"\w* \w me|strong="H7971"\w* \w by|strong="H3027"\w* \w a|strong="H3068"\w* \w lock|strong="H6734"\w* \w of|strong="H3027"\w* \w my|strong="H3947"\w* \w head|strong="H7218"\w*; \w and|strong="H7971"\w* \w the|strong="H3947"\w* \w Spirit|strong="H7307"\w* \w lifted|strong="H5375"\w* \w me|strong="H7971"\w* \w up|strong="H5375"\w* \w between|strong="H7307"\w* \w earth|strong="H8064"\w* \w and|strong="H7971"\w* \w the|strong="H3947"\w* \w sky|strong="H8064"\w*, \w and|strong="H7971"\w* \w brought|strong="H3947"\w* \w me|strong="H7971"\w* \w in|strong="H3027"\w* \w the|strong="H3947"\w* \w visions|strong="H4759"\w* \w of|strong="H3027"\w* \w God|strong="H7971"\w* \w to|strong="H7971"\w* \w Jerusalem|strong="H3389"\w*, \w to|strong="H7971"\w* \w the|strong="H3947"\w* \w door|strong="H6607"\w* \w of|strong="H3027"\w* \w the|strong="H3947"\w* \w gate|strong="H8179"\w* \w of|strong="H3027"\w* \w the|strong="H3947"\w* \w inner|strong="H6442"\w* \w court|strong="H8179"\w* \w that|strong="H3027"\w* looks \w toward|strong="H3027"\w* \w the|strong="H3947"\w* \w north|strong="H6828"\w*, \w where|strong="H8033"\w* \w there|strong="H8033"\w* \w was|strong="H7307"\w* \w the|strong="H3947"\w* \w seat|strong="H4186"\w* \w of|strong="H3027"\w* \w the|strong="H3947"\w* \w image|strong="H5566"\w* \w of|strong="H3027"\w* \w jealousy|strong="H7068"\w*, \w which|strong="H8033"\w* provokes \w to|strong="H7971"\w* \w jealousy|strong="H7068"\w*. +\v 4 \w Behold|strong="H2009"\w*, \w the|strong="H7200"\w* \w glory|strong="H3519"\w* \w of|strong="H4758"\w* \w the|strong="H7200"\w* God \w of|strong="H4758"\w* \w Israel|strong="H3478"\w* \w was|strong="H3478"\w* \w there|strong="H8033"\w*, according \w to|strong="H3478"\w* \w the|strong="H7200"\w* \w appearance|strong="H4758"\w* \w that|strong="H7200"\w* \w I|strong="H2009"\w* \w saw|strong="H7200"\w* \w in|strong="H3478"\w* \w the|strong="H7200"\w* \w plain|strong="H1237"\w*. +\p +\v 5 \w Then|strong="H2009"\w* \w he|strong="H2088"\w* said \w to|strong="H1870"\w* \w me|strong="H4994"\w*, “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H5375"\w* \w eyes|strong="H5869"\w* \w now|strong="H4994"\w* \w the|strong="H5375"\w* \w way|strong="H1870"\w* \w toward|strong="H1870"\w* \w the|strong="H5375"\w* \w north|strong="H6828"\w*.” +\p \w So|strong="H5375"\w* \w I|strong="H2009"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w my|strong="H5375"\w* \w eyes|strong="H5869"\w* \w the|strong="H5375"\w* \w way|strong="H1870"\w* \w toward|strong="H1870"\w* \w the|strong="H5375"\w* \w north|strong="H6828"\w*, \w and|strong="H1121"\w* \w saw|strong="H2009"\w*, \w northward|strong="H6828"\w* \w of|strong="H1121"\w* \w the|strong="H5375"\w* \w gate|strong="H8179"\w* \w of|strong="H1121"\w* \w the|strong="H5375"\w* \w altar|strong="H4196"\w* \w this|strong="H2088"\w* \w image|strong="H5566"\w* \w of|strong="H1121"\w* \w jealousy|strong="H7068"\w* \w in|strong="H1121"\w* \w the|strong="H5375"\w* entry. +\p +\v 6 \w He|strong="H6213"\w* said \w to|strong="H7725"\w* \w me|strong="H7725"\w*, “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w do|strong="H6213"\w* \w you|strong="H5921"\w* \w see|strong="H7200"\w* \w what|strong="H6213"\w* \w they|strong="H1992"\w* \w do|strong="H6213"\w*? \w Even|strong="H5750"\w* \w the|strong="H5921"\w* \w great|strong="H1419"\w* \w abominations|strong="H8441"\w* \w that|strong="H7200"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w commit|strong="H6213"\w* \w here|strong="H6311"\w*, \w that|strong="H7200"\w* \w I|strong="H5921"\w* \w should|strong="H3478"\w* \w go|strong="H7725"\w* \w far|strong="H7368"\w* \w off|strong="H5921"\w* \w from|strong="H7725"\w* \w my|strong="H7200"\w* \w sanctuary|strong="H4720"\w*? \w But|strong="H7200"\w* \w you|strong="H5921"\w* \w will|strong="H3478"\w* \w again|strong="H7725"\w* \w see|strong="H7200"\w* \w yet|strong="H5750"\w* \w other|strong="H5750"\w* \w great|strong="H1419"\w* \w abominations|strong="H8441"\w*.” +\p +\v 7 \w He|strong="H7023"\w* brought \w me|strong="H7200"\w* \w to|strong="H7200"\w* \w the|strong="H7200"\w* \w door|strong="H6607"\w* \w of|strong="H6607"\w* \w the|strong="H7200"\w* \w court|strong="H2691"\w*; \w and|strong="H7200"\w* \w when|strong="H7200"\w* \w I|strong="H2009"\w* \w looked|strong="H7200"\w*, \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w hole|strong="H2356"\w* \w in|strong="H6607"\w* \w the|strong="H7200"\w* \w wall|strong="H7023"\w*. +\v 8 \w Then|strong="H2009"\w* \w he|strong="H7023"\w* said \w to|strong="H1121"\w* \w me|strong="H4994"\w*, “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w dig|strong="H2864"\w* \w now|strong="H4994"\w* \w in|strong="H1121"\w* \w the|strong="H2009"\w* \w wall|strong="H7023"\w*.” +\p \w When|strong="H1121"\w* \w I|strong="H2009"\w* \w had|strong="H1121"\w* \w dug|strong="H2864"\w* \w in|strong="H1121"\w* \w the|strong="H2009"\w* \w wall|strong="H7023"\w*, \w I|strong="H2009"\w* \w saw|strong="H2009"\w* \w a|strong="H3068"\w* \w door|strong="H6607"\w*. +\p +\v 9 \w He|strong="H6213"\w* said \w to|strong="H6213"\w* \w me|strong="H7200"\w*, “Go \w in|strong="H6213"\w*, \w and|strong="H7200"\w* \w see|strong="H7200"\w* \w the|strong="H7200"\w* \w wicked|strong="H7451"\w* \w abominations|strong="H8441"\w* \w that|strong="H7200"\w* \w they|strong="H1992"\w* \w do|strong="H6213"\w* \w here|strong="H6311"\w*.” +\p +\v 10 \w So|strong="H7200"\w* \w I|strong="H2009"\w* \w went|strong="H3478"\w* \w in|strong="H5921"\w* \w and|strong="H3478"\w* \w looked|strong="H7200"\w*, \w and|strong="H3478"\w* \w saw|strong="H7200"\w* \w every|strong="H3605"\w* \w form|strong="H8403"\w* \w of|strong="H1004"\w* \w creeping|strong="H7431"\w* \w things|strong="H7431"\w*, \w abominable|strong="H8263"\w* animals, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w idols|strong="H1544"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w portrayed|strong="H2707"\w* \w around|strong="H5439"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w wall|strong="H7023"\w*. +\v 11 \w Seventy|strong="H7657"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w elders|strong="H2205"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*. \w In|strong="H3478"\w* \w the|strong="H6440"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w them|strong="H6440"\w* \w Jaazaniah|strong="H2970"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shaphan|strong="H8227"\w* \w stood|strong="H5975"\w*, \w every|strong="H5975"\w* \w man|strong="H2205"\w* \w with|strong="H1004"\w* \w his|strong="H6440"\w* \w censer|strong="H4730"\w* \w in|strong="H3478"\w* \w his|strong="H6440"\w* \w hand|strong="H3027"\w*; \w and|strong="H1121"\w* \w the|strong="H6440"\w* smell \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w cloud|strong="H6051"\w* \w of|strong="H1121"\w* \w incense|strong="H7004"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w*. +\p +\v 12 \w Then|strong="H6213"\w* \w he|strong="H3588"\w* said \w to|strong="H3478"\w* \w me|strong="H7200"\w*, “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H2205"\w*, \w have|strong="H3068"\w* \w you|strong="H3588"\w* \w seen|strong="H7200"\w* \w what|strong="H6213"\w* \w the|strong="H7200"\w* \w elders|strong="H2205"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w do|strong="H6213"\w* \w in|strong="H3478"\w* \w the|strong="H7200"\w* \w dark|strong="H2822"\w*, \w every|strong="H6213"\w* \w man|strong="H2205"\w* \w in|strong="H3478"\w* \w his|strong="H3068"\w* \w rooms|strong="H2315"\w* \w of|strong="H1121"\w* \w imagery|strong="H4906"\w*? \w For|strong="H3588"\w* \w they|strong="H3588"\w* \w say|strong="H3478"\w*, ‘\w Yahweh|strong="H3068"\w* doesn’t \w see|strong="H7200"\w* \w us|strong="H6213"\w*. \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w the|strong="H7200"\w* land.’” +\v 13 \w He|strong="H6213"\w* said \w also|strong="H6213"\w* \w to|strong="H7725"\w* \w me|strong="H7725"\w*, “\w You|strong="H7725"\w* \w will|strong="H5750"\w* \w again|strong="H7725"\w* \w see|strong="H7200"\w* \w more|strong="H5750"\w* \w of|strong="H6213"\w* \w the|strong="H7200"\w* \w great|strong="H1419"\w* \w abominations|strong="H8441"\w* \w which|strong="H1992"\w* \w they|strong="H1992"\w* \w do|strong="H6213"\w*.” +\p +\v 14 \w Then|strong="H2009"\w* \w he|strong="H8033"\w* \w brought|strong="H3068"\w* \w me|strong="H1004"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w door|strong="H6607"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w gate|strong="H8179"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w toward|strong="H3068"\w* \w the|strong="H3068"\w* \w north|strong="H6828"\w*; \w and|strong="H3068"\w* \w I|strong="H2009"\w* \w saw|strong="H2009"\w* \w the|strong="H3068"\w* women \w sit|strong="H3427"\w* \w there|strong="H8033"\w* \w weeping|strong="H1058"\w* \w for|strong="H3068"\w* \w Tammuz|strong="H8542"\w*. +\v 15 \w Then|strong="H7725"\w* \w he|strong="H7725"\w* said \w to|strong="H7725"\w* \w me|strong="H7725"\w*, “\w Have|strong="H1121"\w* \w you|strong="H7725"\w* \w seen|strong="H7200"\w* \w this|strong="H7200"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*? \w You|strong="H7725"\w* \w will|strong="H1121"\w* \w again|strong="H7725"\w* \w see|strong="H7200"\w* \w yet|strong="H5750"\w* \w greater|strong="H1419"\w* \w abominations|strong="H8441"\w* \w than|strong="H1419"\w* these.” +\p +\v 16 \w He|strong="H3068"\w* \w brought|strong="H3068"\w* \w me|strong="H6440"\w* into \w the|strong="H6440"\w* \w inner|strong="H6442"\w* \w court|strong="H2691"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*; \w and|strong="H3068"\w* \w I|strong="H2009"\w* \w saw|strong="H2009"\w* \w at|strong="H3068"\w* \w the|strong="H6440"\w* \w door|strong="H6607"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1004"\w*, between \w the|strong="H6440"\w* porch \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w*, \w there|strong="H2009"\w* \w were|strong="H1992"\w* \w about|strong="H2009"\w* \w twenty-five|strong="H6242"\w* \w men|strong="H1992"\w* \w with|strong="H1004"\w* \w their|strong="H3068"\w* backs \w toward|strong="H6440"\w* \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1004"\w* \w and|strong="H3068"\w* \w their|strong="H3068"\w* \w faces|strong="H6440"\w* \w toward|strong="H6440"\w* \w the|strong="H6440"\w* \w east|strong="H6924"\w*. \w They|strong="H1992"\w* \w were|strong="H1992"\w* \w worshiping|strong="H7812"\w* \w the|strong="H6440"\w* \w sun|strong="H8121"\w* \w toward|strong="H6440"\w* \w the|strong="H6440"\w* \w east|strong="H6924"\w*. +\p +\v 17 \w Then|strong="H7971"\w* \w he|strong="H3588"\w* said \w to|strong="H7725"\w* \w me|strong="H7971"\w*, “\w Have|strong="H1121"\w* \w you|strong="H3588"\w* \w seen|strong="H7200"\w* \w this|strong="H6213"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*? \w Is|strong="H1121"\w* \w it|strong="H3588"\w* \w a|strong="H3068"\w* \w light|strong="H7043"\w* \w thing|strong="H7043"\w* \w to|strong="H7725"\w* \w the|strong="H7200"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w commit|strong="H6213"\w* \w the|strong="H7200"\w* \w abominations|strong="H8441"\w* \w which|strong="H1004"\w* \w they|strong="H3588"\w* \w commit|strong="H6213"\w* \w here|strong="H6311"\w*? \w For|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H1121"\w* \w filled|strong="H4390"\w* \w the|strong="H7200"\w* land \w with|strong="H4390"\w* \w violence|strong="H2555"\w*, \w and|strong="H1121"\w* \w have|strong="H1121"\w* \w turned|strong="H7725"\w* \w again|strong="H7725"\w* \w to|strong="H7725"\w* \w provoke|strong="H3707"\w* \w me|strong="H7971"\w* \w to|strong="H7725"\w* \w anger|strong="H3707"\w*. \w Behold|strong="H2005"\w*, \w they|strong="H3588"\w* \w put|strong="H7971"\w* \w the|strong="H7200"\w* \w branch|strong="H2156"\w* \w to|strong="H7725"\w* \w their|strong="H7725"\w* nose. +\v 18 \w Therefore|strong="H1571"\w* \w I|strong="H3808"\w* \w will|strong="H1571"\w* \w also|strong="H1571"\w* \w deal|strong="H6213"\w* \w in|strong="H6213"\w* \w wrath|strong="H2534"\w*. \w My|strong="H8085"\w* \w eye|strong="H5869"\w* won’t \w spare|strong="H2550"\w*, \w neither|strong="H3808"\w* \w will|strong="H1571"\w* \w I|strong="H3808"\w* \w have|strong="H5869"\w* \w pity|strong="H2347"\w*. \w Though|strong="H1571"\w* \w they|strong="H3808"\w* \w cry|strong="H7121"\w* \w in|strong="H6213"\w* \w my|strong="H8085"\w* ears \w with|strong="H6213"\w* \w a|strong="H3068"\w* \w loud|strong="H1419"\w* \w voice|strong="H6963"\w*, \w yet|strong="H1571"\w* \w I|strong="H3808"\w* \w will|strong="H1571"\w* \w not|strong="H3808"\w* \w hear|strong="H8085"\w* \w them|strong="H6213"\w*.” +\c 9 +\p +\v 1 \w Then|strong="H7126"\w* \w he|strong="H3027"\w* \w cried|strong="H7121"\w* \w in|strong="H5892"\w* \w my|strong="H3027"\w* ears \w with|strong="H3027"\w* \w a|strong="H3068"\w* \w loud|strong="H1419"\w* \w voice|strong="H6963"\w*, \w saying|strong="H6963"\w*, “\w Cause|strong="H7121"\w* \w those|strong="H7126"\w* \w who|strong="H7121"\w* \w are|strong="H3027"\w* \w in|strong="H5892"\w* \w charge|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H7121"\w* \w city|strong="H5892"\w* \w to|strong="H3027"\w* \w draw|strong="H7126"\w* \w near|strong="H7126"\w*, \w each|strong="H5892"\w* \w man|strong="H1419"\w* \w with|strong="H3027"\w* \w his|strong="H7121"\w* \w destroying|strong="H4892"\w* \w weapon|strong="H3627"\w* \w in|strong="H5892"\w* \w his|strong="H7121"\w* \w hand|strong="H3027"\w*.” +\v 2 \w Behold|strong="H2009"\w*, \w six|strong="H8337"\w* men \w came|strong="H3847"\w* \w from|strong="H3027"\w* \w the|strong="H8432"\w* \w way|strong="H1870"\w* \w of|strong="H3027"\w* \w the|strong="H8432"\w* \w upper|strong="H5945"\w* \w gate|strong="H8179"\w*, \w which|strong="H4196"\w* lies \w toward|strong="H1870"\w* \w the|strong="H8432"\w* \w north|strong="H6828"\w*, \w every|strong="H5975"\w* \w man|strong="H8179"\w* \w with|strong="H3847"\w* \w his|strong="H3027"\w* \w slaughter|strong="H4660"\w* \w weapon|strong="H3627"\w* \w in|strong="H8432"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w*. \w One|strong="H3027"\w* \w man|strong="H8179"\w* \w in|strong="H8432"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H3027"\w* \w them|strong="H3027"\w* \w was|strong="H3027"\w* \w clothed|strong="H3847"\w* \w in|strong="H8432"\w* linen, \w with|strong="H3847"\w* \w a|strong="H3068"\w* \w writer|strong="H5608"\w*’s \w inkhorn|strong="H7083"\w* \w by|strong="H3027"\w* \w his|strong="H3027"\w* \w side|strong="H6828"\w*. \w They|strong="H5608"\w* \w went|strong="H3027"\w* \w in|strong="H8432"\w*, \w and|strong="H3027"\w* \w stood|strong="H5975"\w* \w beside|strong="H3027"\w* \w the|strong="H8432"\w* \w bronze|strong="H5178"\w* \w altar|strong="H4196"\w*. +\p +\v 3 \w The|strong="H5921"\w* \w glory|strong="H3519"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* God \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w cherub|strong="H3742"\w*, whereupon \w it|strong="H7121"\w* \w was|strong="H1961"\w*, \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w threshold|strong="H4670"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*; \w and|strong="H3478"\w* \w he|strong="H1004"\w* \w called|strong="H7121"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* man \w clothed|strong="H3847"\w* \w in|strong="H5921"\w* linen, \w who|strong="H3478"\w* \w had|strong="H1961"\w* \w the|strong="H5921"\w* \w writer|strong="H5608"\w*’s \w inkhorn|strong="H7083"\w* \w by|strong="H5921"\w* \w his|strong="H7121"\w* \w side|strong="H4975"\w*. +\v 4 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w him|strong="H5921"\w*, “\w Go|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w through|strong="H5674"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3068"\w* \w set|strong="H6213"\w* \w a|strong="H3068"\w* \w mark|strong="H8420"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w foreheads|strong="H4696"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w men|strong="H6213"\w* \w that|strong="H3605"\w* sigh \w and|strong="H3068"\w* \w that|strong="H3605"\w* cry \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w abominations|strong="H8441"\w* \w that|strong="H3605"\w* \w are|strong="H3068"\w* \w done|strong="H6213"\w* \w within|strong="H8432"\w* \w it|strong="H5921"\w*.” +\p +\v 5 \w To|strong="H5921"\w* \w the|strong="H5921"\w* others \w he|strong="H5921"\w* said \w in|strong="H5921"\w* \w my|strong="H5921"\w* hearing, “\w Go|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w after|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H5869"\w* \w strike|strong="H5221"\w*. Don’t let \w your|strong="H5921"\w* \w eye|strong="H5869"\w* \w spare|strong="H2550"\w*, neither \w have|strong="H5869"\w* \w pity|strong="H2347"\w*. +\v 6 \w Kill|strong="H2026"\w* \w utterly|strong="H4889"\w* \w the|strong="H3605"\w* \w old|strong="H2205"\w* \w man|strong="H2205"\w*, \w the|strong="H3605"\w* young \w man|strong="H2205"\w*, \w the|strong="H3605"\w* \w virgin|strong="H1330"\w*, \w little|strong="H2945"\w* \w children|strong="H2945"\w* \w and|strong="H1004"\w* \w women|strong="H1330"\w*; \w but|strong="H3605"\w* don’t \w come|strong="H5066"\w* \w near|strong="H5066"\w* \w any|strong="H3605"\w* \w man|strong="H2205"\w* \w on|strong="H5921"\w* \w whom|strong="H6440"\w* \w is|strong="H3605"\w* \w the|strong="H3605"\w* \w mark|strong="H8420"\w*. \w Begin|strong="H2490"\w* \w at|strong="H5921"\w* \w my|strong="H3605"\w* \w sanctuary|strong="H4720"\w*.” +\p \w Then|strong="H2490"\w* \w they|strong="H5921"\w* \w began|strong="H2490"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w old|strong="H2205"\w* \w men|strong="H2205"\w* \w who|strong="H3605"\w* \w were|strong="H1004"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*. +\p +\v 7 \w He|strong="H1004"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w them|strong="H5221"\w*, “\w Defile|strong="H2930"\w* \w the|strong="H5221"\w* \w house|strong="H1004"\w*, \w and|strong="H1004"\w* \w fill|strong="H4390"\w* \w the|strong="H5221"\w* \w courts|strong="H2691"\w* \w with|strong="H4390"\w* \w the|strong="H5221"\w* \w slain|strong="H2491"\w*. \w Go|strong="H3318"\w* \w out|strong="H3318"\w*!” +\p \w They|strong="H5221"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H1004"\w* \w struck|strong="H5221"\w* \w in|strong="H1004"\w* \w the|strong="H5221"\w* \w city|strong="H5892"\w*. +\p +\v 8 \w While|strong="H1961"\w* \w they|strong="H5921"\w* \w were|strong="H3478"\w* \w killing|strong="H5221"\w*, \w and|strong="H3478"\w* \w I|strong="H5921"\w* \w was|strong="H1961"\w* \w left|strong="H7604"\w*, \w I|strong="H5921"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w my|strong="H3605"\w* \w face|strong="H6440"\w*, \w and|strong="H3478"\w* \w cried|strong="H2199"\w*, \w and|strong="H3478"\w* said, “Ah \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*! \w Will|strong="H1961"\w* \w you|strong="H6440"\w* \w destroy|strong="H7843"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w residue|strong="H7611"\w* \w of|strong="H6440"\w* \w Israel|strong="H3478"\w* \w in|strong="H5921"\w* \w your|strong="H3605"\w* \w pouring|strong="H8210"\w* \w out|strong="H8210"\w* \w of|strong="H6440"\w* \w your|strong="H3605"\w* \w wrath|strong="H2534"\w* \w on|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*?” +\p +\v 9 \w Then|strong="H3588"\w* \w he|strong="H3588"\w* said \w to|strong="H3478"\w* \w me|strong="H7200"\w*, “\w The|strong="H7200"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1004"\w* \w the|strong="H7200"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w Judah|strong="H3063"\w* \w is|strong="H3068"\w* \w exceedingly|strong="H3966"\w* \w great|strong="H1419"\w*, \w and|strong="H3063"\w* \w the|strong="H7200"\w* land \w is|strong="H3068"\w* \w full|strong="H4390"\w* \w of|strong="H1004"\w* \w blood|strong="H1818"\w*, \w and|strong="H3063"\w* \w the|strong="H7200"\w* \w city|strong="H5892"\w* \w full|strong="H4390"\w* \w of|strong="H1004"\w* \w perversion|strong="H4297"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w say|strong="H3478"\w*, ‘\w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w forsaken|strong="H5800"\w* \w the|strong="H7200"\w* land, \w and|strong="H3063"\w* \w Yahweh|strong="H3068"\w* doesn’t \w see|strong="H7200"\w*.’ +\v 10 \w As|strong="H1571"\w* \w for|strong="H5869"\w* \w me|strong="H5414"\w* \w also|strong="H1571"\w*, \w my|strong="H5414"\w* \w eye|strong="H5869"\w* won’t \w spare|strong="H2550"\w*, \w neither|strong="H3808"\w* \w will|strong="H1571"\w* \w I|strong="H5414"\w* \w have|strong="H5869"\w* \w pity|strong="H2347"\w*, \w but|strong="H3808"\w* \w I|strong="H5414"\w* \w will|strong="H1571"\w* \w bring|strong="H5414"\w* \w their|strong="H5414"\w* \w way|strong="H1870"\w* \w on|strong="H1870"\w* \w their|strong="H5414"\w* \w head|strong="H7218"\w*.” +\p +\v 11 \w Behold|strong="H2009"\w*, \w the|strong="H6213"\w* man \w clothed|strong="H3830"\w* \w in|strong="H6213"\w* linen, \w who|strong="H6213"\w* \w had|strong="H6680"\w* \w the|strong="H6213"\w* \w inkhorn|strong="H7083"\w* \w by|strong="H6213"\w* \w his|strong="H7725"\w* \w side|strong="H4975"\w*, \w reported|strong="H7725"\w* \w the|strong="H6213"\w* \w matter|strong="H1697"\w*, \w saying|strong="H1697"\w*, “\w I|strong="H2009"\w* \w have|strong="H1697"\w* \w done|strong="H6213"\w* \w as|strong="H1697"\w* \w you|strong="H6680"\w* \w have|strong="H1697"\w* \w commanded|strong="H6680"\w* \w me|strong="H7725"\w*.” +\c 10 +\p +\v 1 \w Then|strong="H2009"\w* \w I|strong="H2009"\w* \w looked|strong="H7200"\w*, \w and|strong="H7218"\w* \w see|strong="H7200"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w expanse|strong="H7549"\w* \w that|strong="H7200"\w* \w was|strong="H7218"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w head|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w cherubim|strong="H3742"\w* \w there|strong="H2009"\w* \w appeared|strong="H7200"\w* \w above|strong="H5921"\w* \w them|strong="H5921"\w* \w as|strong="H1823"\w* \w it|strong="H5921"\w* \w were|strong="H3742"\w* \w a|strong="H3068"\w* \w sapphire|strong="H5601"\w*\f + \fr 10:1 \ft or, lapis lazuli \f* \w stone|strong="H5601"\w*, \w as|strong="H1823"\w* \w the|strong="H5921"\w* \w appearance|strong="H4758"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w likeness|strong="H1823"\w* \w of|strong="H7218"\w* \w a|strong="H3068"\w* \w throne|strong="H3678"\w*. +\v 2 \w He|strong="H5921"\w* spoke \w to|strong="H5921"\w* \w the|strong="H5921"\w* man \w clothed|strong="H3847"\w* \w in|strong="H5921"\w* linen, \w and|strong="H5869"\w* said, “Go \w in|strong="H5921"\w* \w between|strong="H5921"\w* \w the|strong="H5921"\w* \w whirling|strong="H1534"\w* \w wheels|strong="H1534"\w*, \w even|strong="H5869"\w* \w under|strong="H8478"\w* \w the|strong="H5921"\w* \w cherub|strong="H3742"\w*, \w and|strong="H5869"\w* \w fill|strong="H4390"\w* \w both|strong="H5921"\w* \w your|strong="H5921"\w* \w hands|strong="H2651"\w* \w with|strong="H4390"\w* \w coals|strong="H1513"\w* \w of|strong="H5892"\w* \w fire|strong="H1513"\w* \w from|strong="H5921"\w* \w between|strong="H5921"\w* \w the|strong="H5921"\w* \w cherubim|strong="H3742"\w*, \w and|strong="H5869"\w* \w scatter|strong="H2236"\w* \w them|strong="H5921"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*.” +\p \w He|strong="H5921"\w* \w went|strong="H5892"\w* \w in|strong="H5921"\w* \w as|strong="H8478"\w* \w I|strong="H5921"\w* watched. +\v 3 Now \w the|strong="H4390"\w* \w cherubim|strong="H3742"\w* \w stood|strong="H5975"\w* \w on|strong="H5975"\w* \w the|strong="H4390"\w* \w right|strong="H3225"\w* \w side|strong="H3225"\w* \w of|strong="H1004"\w* \w the|strong="H4390"\w* \w house|strong="H1004"\w* \w when|strong="H4390"\w* \w the|strong="H4390"\w* man \w went|strong="H1004"\w* \w in|strong="H1004"\w*; \w and|strong="H1004"\w* \w the|strong="H4390"\w* \w cloud|strong="H6051"\w* \w filled|strong="H4390"\w* \w the|strong="H4390"\w* \w inner|strong="H6442"\w* \w court|strong="H2691"\w*. +\v 4 \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w mounted|strong="H4390"\w* \w up|strong="H7311"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w cherub|strong="H3742"\w*, \w and|strong="H3068"\w* \w stood|strong="H3068"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w threshold|strong="H4670"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*; \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w was|strong="H3068"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w the|strong="H5921"\w* \w cloud|strong="H6051"\w*, \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w court|strong="H2691"\w* \w was|strong="H3068"\w* \w full|strong="H4390"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w brightness|strong="H5051"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w*. +\v 5 \w The|strong="H8085"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w wings|strong="H3671"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w cherubim|strong="H3742"\w* \w was|strong="H6963"\w* \w heard|strong="H8085"\w* \w even|strong="H5704"\w* \w to|strong="H1696"\w* \w the|strong="H8085"\w* \w outer|strong="H2435"\w* \w court|strong="H2691"\w*, \w as|strong="H5704"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* God \w Almighty|strong="H7706"\w* \w when|strong="H8085"\w* \w he|strong="H5704"\w* \w speaks|strong="H1696"\w*. +\p +\v 6 \w It|strong="H1961"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w pass|strong="H1961"\w*, \w when|strong="H1961"\w* \w he|strong="H6680"\w* \w commanded|strong="H6680"\w* \w the|strong="H3947"\w* man \w clothed|strong="H3847"\w* \w in|strong="H3847"\w* linen, saying, “\w Take|strong="H3947"\w* fire \w from|strong="H3947"\w* between \w the|strong="H3947"\w* \w whirling|strong="H1534"\w* \w wheels|strong="H1534"\w*, \w from|strong="H3947"\w* between \w the|strong="H3947"\w* \w cherubim|strong="H3742"\w*,” \w that|strong="H1961"\w* \w he|strong="H6680"\w* \w went|strong="H1961"\w* \w in|strong="H3847"\w* \w and|strong="H5975"\w* \w stood|strong="H5975"\w* beside \w a|strong="H3068"\w* \w wheel|strong="H1534"\w*. +\v 7 \w The|strong="H5414"\w* \w cherub|strong="H3742"\w* \w stretched|strong="H7971"\w* \w out|strong="H3318"\w* \w his|strong="H5375"\w* \w hand|strong="H3027"\w* \w from|strong="H3318"\w* between \w the|strong="H5414"\w* \w cherubim|strong="H3742"\w* \w to|strong="H3318"\w* \w the|strong="H5414"\w* fire \w that|strong="H5414"\w* \w was|strong="H3027"\w* between \w the|strong="H5414"\w* \w cherubim|strong="H3742"\w*, \w and|strong="H7971"\w* \w took|strong="H3947"\w* \w some|strong="H3027"\w* \w of|strong="H3027"\w* \w it|strong="H5414"\w*, \w and|strong="H7971"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w into|strong="H3318"\w* \w the|strong="H5414"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w him|strong="H5414"\w* \w who|strong="H3742"\w* \w was|strong="H3027"\w* \w clothed|strong="H3847"\w* \w in|strong="H3847"\w* linen, \w who|strong="H3742"\w* \w took|strong="H3947"\w* \w it|strong="H5414"\w* \w and|strong="H7971"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*. +\v 8 \w The|strong="H7200"\w* \w form|strong="H8403"\w* \w of|strong="H3027"\w* \w a|strong="H3068"\w* \w man|strong="H7200"\w*’s \w hand|strong="H3027"\w* \w appeared|strong="H7200"\w* here \w in|strong="H3027"\w* \w the|strong="H7200"\w* \w cherubim|strong="H3742"\w* \w under|strong="H8478"\w* \w their|strong="H7200"\w* \w wings|strong="H3671"\w*. +\p +\v 9 \w I|strong="H2009"\w* \w looked|strong="H7200"\w*, \w and|strong="H5869"\w* \w behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w were|strong="H5869"\w* four wheels beside \w the|strong="H7200"\w* \w cherubim|strong="H3742"\w*, \w one|strong="H7200"\w* wheel beside \w one|strong="H7200"\w* \w cherub|strong="H3742"\w*, \w and|strong="H5869"\w* \w another|strong="H7200"\w* wheel beside \w another|strong="H7200"\w* \w cherub|strong="H3742"\w*. \w The|strong="H7200"\w* \w appearance|strong="H4758"\w* \w of|strong="H5869"\w* \w the|strong="H7200"\w* wheels \w was|strong="H3742"\w* \w like|strong="H4758"\w* \w a|strong="H3068"\w* \w beryl|strong="H8658"\w* stone. +\v 10 \w As|strong="H1961"\w* \w for|strong="H1961"\w* \w their|strong="H8432"\w* \w appearance|strong="H4758"\w*, \w the|strong="H8432"\w* four \w of|strong="H8432"\w* \w them|strong="H8432"\w* \w had|strong="H1961"\w* \w one|strong="H1961"\w* \w likeness|strong="H1823"\w*, \w like|strong="H1961"\w* \w a|strong="H3068"\w* wheel \w within|strong="H8432"\w* \w a|strong="H3068"\w* wheel. +\v 11 \w When|strong="H3588"\w* \w they|strong="H3588"\w* \w went|strong="H3212"\w*, \w they|strong="H3588"\w* \w went|strong="H3212"\w* \w in|strong="H3212"\w* \w their|strong="H3588"\w* four \w directions|strong="H7253"\w*. \w They|strong="H3588"\w* didn’t \w turn|strong="H6437"\w* \w as|strong="H3588"\w* \w they|strong="H3588"\w* \w went|strong="H3212"\w*, \w but|strong="H3588"\w* \w to|strong="H3212"\w* \w the|strong="H3588"\w* \w place|strong="H4725"\w* \w where|strong="H4725"\w* \w the|strong="H3588"\w* \w head|strong="H7218"\w* \w looked|strong="H6437"\w* \w they|strong="H3588"\w* \w followed|strong="H3212"\w* \w it|strong="H3588"\w*. \w They|strong="H3588"\w* didn’t \w turn|strong="H6437"\w* \w as|strong="H3588"\w* \w they|strong="H3588"\w* \w went|strong="H3212"\w*. +\v 12 \w Their|strong="H3605"\w* \w whole|strong="H3605"\w* \w body|strong="H1320"\w*, \w including|strong="H3605"\w* \w their|strong="H3605"\w* \w backs|strong="H1354"\w*, \w their|strong="H3605"\w* \w hands|strong="H3027"\w*, \w their|strong="H3605"\w* \w wings|strong="H3671"\w*, \w and|strong="H3027"\w* \w the|strong="H3605"\w* wheels, \w were|strong="H5869"\w* \w full|strong="H4392"\w* \w of|strong="H3027"\w* \w eyes|strong="H5869"\w* \w all|strong="H3605"\w* \w around|strong="H5439"\w*, \w even|strong="H5869"\w* \w the|strong="H3605"\w* wheels \w that|strong="H3605"\w* \w the|strong="H3605"\w* four \w of|strong="H3027"\w* \w them|strong="H3027"\w* \w had|strong="H5869"\w*. +\v 13 \w As|strong="H7121"\w* \w for|strong="H7121"\w* \w the|strong="H7121"\w* \w wheels|strong="H1534"\w*, \w they|strong="H7121"\w* were \w called|strong="H7121"\w* \w in|strong="H7121"\w* \w my|strong="H7121"\w* hearing, “\w the|strong="H7121"\w* \w whirling|strong="H1534"\w* \w wheels|strong="H1534"\w*”. +\v 14 Every \w one|strong="H7992"\w* \w of|strong="H6440"\w* \w them|strong="H6440"\w* \w had|strong="H3742"\w* four \w faces|strong="H6440"\w*. \w The|strong="H6440"\w* \w first|strong="H6440"\w* \w face|strong="H6440"\w* \w was|strong="H6440"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w cherub|strong="H3742"\w*. \w The|strong="H6440"\w* \w second|strong="H8145"\w* \w face|strong="H6440"\w* \w was|strong="H6440"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H6440"\w* \w a|strong="H3068"\w* \w man|strong="H6440"\w*. \w The|strong="H6440"\w* \w third|strong="H7992"\w* \w face|strong="H6440"\w* \w was|strong="H6440"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H6440"\w* \w a|strong="H3068"\w* lion. \w The|strong="H6440"\w* \w fourth|strong="H7243"\w* \w was|strong="H6440"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H6440"\w* \w an|strong="H6440"\w* \w eagle|strong="H5404"\w*. +\p +\v 15 \w The|strong="H7200"\w* \w cherubim|strong="H3742"\w* mounted \w up|strong="H7200"\w*. \w This|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H7200"\w* \w living|strong="H2416"\w* \w creature|strong="H2416"\w* \w that|strong="H7200"\w* \w I|strong="H7200"\w* \w saw|strong="H7200"\w* \w by|strong="H7200"\w* \w the|strong="H7200"\w* \w river|strong="H5104"\w* \w Chebar|strong="H3529"\w*. +\v 16 \w When|strong="H5375"\w* \w the|strong="H5921"\w* \w cherubim|strong="H3742"\w* \w went|strong="H3212"\w*, \w the|strong="H5921"\w* wheels \w went|strong="H3212"\w* \w beside|strong="H5921"\w* \w them|strong="H1992"\w*; \w and|strong="H3212"\w* \w when|strong="H5375"\w* \w the|strong="H5921"\w* \w cherubim|strong="H3742"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w their|strong="H5375"\w* \w wings|strong="H3671"\w* \w to|strong="H3212"\w* mount \w up|strong="H5375"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* earth, \w the|strong="H5921"\w* wheels \w also|strong="H1571"\w* didn’t \w turn|strong="H5437"\w* \w from|strong="H5921"\w* \w beside|strong="H5921"\w* \w them|strong="H1992"\w*. +\v 17 \w When|strong="H3588"\w* \w they|strong="H3588"\w* \w stood|strong="H5975"\w*, these \w stood|strong="H5975"\w*. \w When|strong="H3588"\w* \w they|strong="H3588"\w* mounted \w up|strong="H7311"\w*, these mounted \w up|strong="H7311"\w* \w with|strong="H5975"\w* \w them|strong="H5975"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w spirit|strong="H7307"\w* \w of|strong="H7307"\w* \w the|strong="H3588"\w* \w living|strong="H2416"\w* \w creature|strong="H2416"\w* \w was|strong="H7307"\w* \w in|strong="H5975"\w* \w them|strong="H5975"\w*. +\p +\v 18 \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w threshold|strong="H4670"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w and|strong="H3068"\w* \w stood|strong="H5975"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w cherubim|strong="H3742"\w*. +\v 19 \w The|strong="H5921"\w* \w cherubim|strong="H3742"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w their|strong="H3068"\w* \w wings|strong="H3671"\w* \w and|strong="H3478"\w* mounted \w up|strong="H5375"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* earth \w in|strong="H5921"\w* \w my|strong="H3068"\w* \w sight|strong="H5869"\w* \w when|strong="H3318"\w* \w they|strong="H3068"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*, \w with|strong="H1004"\w* \w the|strong="H5921"\w* wheels \w beside|strong="H5921"\w* \w them|strong="H5921"\w*. \w Then|strong="H3318"\w* \w they|strong="H3068"\w* \w stood|strong="H5975"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w door|strong="H6607"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w east|strong="H5921"\w* \w gate|strong="H8179"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*; \w and|strong="H3478"\w* \w the|strong="H5921"\w* \w glory|strong="H3519"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w was|strong="H3068"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w* \w above|strong="H4605"\w*. +\p +\v 20 \w This|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H7200"\w* \w living|strong="H2416"\w* \w creature|strong="H2416"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w saw|strong="H7200"\w* \w under|strong="H8478"\w* \w the|strong="H7200"\w* God \w of|strong="H8478"\w* \w Israel|strong="H3478"\w* \w by|strong="H3478"\w* \w the|strong="H7200"\w* \w river|strong="H5104"\w* \w Chebar|strong="H3529"\w*; \w and|strong="H3478"\w* \w I|strong="H3588"\w* \w knew|strong="H3045"\w* \w that|strong="H3588"\w* \w they|strong="H1992"\w* \w were|strong="H3478"\w* \w cherubim|strong="H3742"\w*. +\v 21 \w Every|strong="H8478"\w* \w one|strong="H3671"\w* \w had|strong="H3027"\w* four \w faces|strong="H6440"\w*, \w and|strong="H3027"\w* \w every|strong="H8478"\w* \w one|strong="H3671"\w* four \w wings|strong="H3671"\w*. \w The|strong="H6440"\w* \w likeness|strong="H1823"\w* \w of|strong="H3027"\w* \w the|strong="H6440"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w a|strong="H3068"\w* \w man|strong="H6440"\w* \w was|strong="H3027"\w* \w under|strong="H8478"\w* \w their|strong="H6440"\w* \w wings|strong="H3671"\w*. +\v 22 \w As|strong="H6440"\w* \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w likeness|strong="H1823"\w* \w of|strong="H6440"\w* \w their|strong="H6440"\w* \w faces|strong="H6440"\w*, \w they|strong="H1992"\w* \w were|strong="H1992"\w* \w the|strong="H6440"\w* \w faces|strong="H6440"\w* \w which|strong="H1992"\w* \w I|strong="H5921"\w* \w saw|strong="H7200"\w* \w by|strong="H5921"\w* \w the|strong="H6440"\w* \w river|strong="H5104"\w* \w Chebar|strong="H3529"\w*, \w their|strong="H6440"\w* \w appearances|strong="H4758"\w* \w and|strong="H3212"\w* \w themselves|strong="H1992"\w*. \w They|strong="H1992"\w* each \w went|strong="H3212"\w* \w straight|strong="H5676"\w* \w forward|strong="H6440"\w*. +\c 11 +\p +\v 1 \w Moreover|strong="H2009"\w* \w the|strong="H7200"\w* \w Spirit|strong="H7307"\w* \w lifted|strong="H5375"\w* \w me|strong="H7200"\w* \w up|strong="H5375"\w* \w and|strong="H1121"\w* \w brought|strong="H5375"\w* \w me|strong="H7200"\w* \w to|strong="H3068"\w* \w the|strong="H7200"\w* \w east|strong="H6921"\w* \w gate|strong="H8179"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, \w which|strong="H3068"\w* \w looks|strong="H7200"\w* \w eastward|strong="H6921"\w*. \w Behold|strong="H2009"\w*, \w twenty-five|strong="H6242"\w* \w men|strong="H1121"\w* \w were|strong="H5971"\w* \w at|strong="H3068"\w* \w the|strong="H7200"\w* \w door|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w gate|strong="H8179"\w*; \w and|strong="H1121"\w* \w I|strong="H2009"\w* \w saw|strong="H7200"\w* \w among|strong="H8432"\w* \w them|strong="H7200"\w* \w Jaazaniah|strong="H2970"\w* \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Azzur|strong="H5809"\w*, \w and|strong="H1121"\w* \w Pelatiah|strong="H6410"\w* \w the|strong="H7200"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Benaiah|strong="H1141"\w*, \w princes|strong="H8269"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w*. +\v 2 \w He|strong="H2803"\w* said \w to|strong="H1121"\w* \w me|strong="H2803"\w*, “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w these|strong="H2063"\w* \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w men|strong="H1121"\w* \w who|strong="H1121"\w* \w devise|strong="H2803"\w* iniquity, \w and|strong="H1121"\w* \w who|strong="H1121"\w* \w give|strong="H3289"\w* \w wicked|strong="H7451"\w* \w counsel|strong="H6098"\w* \w in|strong="H5892"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w*; +\v 3 \w who|strong="H1931"\w* say, ‘\w The|strong="H1129"\w* time \w is|strong="H1931"\w* \w not|strong="H3808"\w* \w near|strong="H7138"\w* \w to|strong="H1004"\w* \w build|strong="H1129"\w* \w houses|strong="H1004"\w*. \w This|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H1129"\w* cauldron, \w and|strong="H1004"\w* \w we|strong="H3068"\w* \w are|strong="H1004"\w* \w the|strong="H1129"\w* \w meat|strong="H1320"\w*.’ +\v 4 \w Therefore|strong="H3651"\w* \w prophesy|strong="H5012"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w*. \w Prophesy|strong="H5012"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*.” +\p +\v 5 \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w me|strong="H5921"\w*, \w and|strong="H3478"\w* \w he|strong="H3651"\w* \w said|strong="H3651"\w* \w to|strong="H3478"\w* \w me|strong="H5921"\w*, “Speak, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Thus|strong="H3541"\w* \w you|strong="H5921"\w* \w have|strong="H3068"\w* \w said|strong="H3651"\w*, \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*; \w for|strong="H5921"\w* \w I|strong="H3541"\w* \w know|strong="H3045"\w* \w the|strong="H5921"\w* \w things|strong="H3478"\w* \w that|strong="H3045"\w* \w come|strong="H5307"\w* \w into|strong="H5307"\w* \w your|strong="H3068"\w* \w mind|strong="H7307"\w*. +\v 6 \w You|strong="H7235"\w* \w have|strong="H5892"\w* \w multiplied|strong="H7235"\w* \w your|strong="H7235"\w* \w slain|strong="H2491"\w* \w in|strong="H5892"\w* \w this|strong="H2063"\w* \w city|strong="H5892"\w*, \w and|strong="H5892"\w* \w you|strong="H7235"\w* \w have|strong="H5892"\w* \w filled|strong="H4390"\w* \w its|strong="H4390"\w* \w streets|strong="H2351"\w* \w with|strong="H4390"\w* \w the|strong="H4390"\w* \w slain|strong="H2491"\w*.” +\p +\v 7 “‘\w Therefore|strong="H3651"\w* \w the|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Your|strong="H7760"\w* \w slain|strong="H2491"\w* \w whom|strong="H1992"\w* \w you|strong="H7760"\w* \w have|strong="H1992"\w* \w laid|strong="H7760"\w* \w in|strong="H8432"\w* \w the|strong="H3069"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w it|strong="H7760"\w*, \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w the|strong="H3069"\w* \w meat|strong="H1320"\w*, \w and|strong="H3318"\w* \w this|strong="H3651"\w* \w is|strong="H1931"\w* \w the|strong="H3069"\w* cauldron; \w but|strong="H1992"\w* \w you|strong="H7760"\w* \w will|strong="H1320"\w* \w be|strong="H1320"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H8432"\w* \w the|strong="H3069"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w it|strong="H7760"\w*. +\v 8 \w You|strong="H5921"\w* \w have|strong="H5921"\w* \w feared|strong="H3372"\w* \w the|strong="H5002"\w* \w sword|strong="H2719"\w*; \w and|strong="H2719"\w* \w I|strong="H5921"\w* \w will|strong="H2719"\w* bring \w the|strong="H5002"\w* \w sword|strong="H2719"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\v 9 “\w I|strong="H5414"\w* \w will|strong="H3027"\w* \w bring|strong="H3318"\w* \w you|strong="H5414"\w* \w out|strong="H3318"\w* \w of|strong="H3027"\w* \w the|strong="H5414"\w* \w middle|strong="H8432"\w* \w of|strong="H3027"\w* \w it|strong="H5414"\w*, \w and|strong="H3027"\w* \w deliver|strong="H5414"\w* \w you|strong="H5414"\w* \w into|strong="H8432"\w* \w the|strong="H5414"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w strangers|strong="H2114"\w*, \w and|strong="H3027"\w* \w will|strong="H3027"\w* \w execute|strong="H6213"\w* \w judgments|strong="H8201"\w* \w among|strong="H8432"\w* \w you|strong="H5414"\w*. +\v 10 \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w fall|strong="H5307"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w*. \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w judge|strong="H8199"\w* \w you|strong="H3588"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. \w Then|strong="H5307"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 11 \w This|strong="H1931"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w your|strong="H1961"\w* cauldron, \w neither|strong="H3808"\w* \w will|strong="H1961"\w* \w you|strong="H3808"\w* \w be|strong="H1961"\w* \w the|strong="H8432"\w* \w meat|strong="H1320"\w* \w in|strong="H3478"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H1366"\w* \w it|strong="H1931"\w*. \w I|strong="H3808"\w* \w will|strong="H1961"\w* \w judge|strong="H8199"\w* \w you|strong="H3808"\w* \w in|strong="H3478"\w* \w the|strong="H8432"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Israel|strong="H3478"\w*. +\v 12 \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w walked|strong="H1980"\w* \w in|strong="H1980"\w* \w my|strong="H3068"\w* \w statutes|strong="H2706"\w*. \w You|strong="H3588"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w executed|strong="H6213"\w* \w my|strong="H3068"\w* \w ordinances|strong="H4941"\w*, \w but|strong="H3588"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w after|strong="H3588"\w* \w the|strong="H3588"\w* \w ordinances|strong="H4941"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w nations|strong="H1471"\w* \w that|strong="H3588"\w* \w are|strong="H1471"\w* \w around|strong="H5439"\w* \w you|strong="H3588"\w*.”’” +\p +\v 13 \w When|strong="H1961"\w* \w I|strong="H5921"\w* \w prophesied|strong="H5012"\w*, \w Pelatiah|strong="H6410"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Benaiah|strong="H1141"\w* \w died|strong="H4191"\w*. \w Then|strong="H1961"\w* \w I|strong="H5921"\w* \w fell|strong="H5307"\w* \w down|strong="H5307"\w* \w on|strong="H5921"\w* \w my|strong="H5921"\w* \w face|strong="H6440"\w*, \w and|strong="H1121"\w* \w cried|strong="H2199"\w* \w with|strong="H6213"\w* \w a|strong="H3068"\w* \w loud|strong="H1419"\w* \w voice|strong="H6963"\w*, \w and|strong="H1121"\w* said, “Ah \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*! \w Will|strong="H1961"\w* \w you|strong="H6440"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w full|strong="H3617"\w* \w end|strong="H3617"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w remnant|strong="H7611"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*?” +\p +\v 14 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 15 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w your|strong="H3068"\w* \w brothers|strong="H1121"\w*, \w even|strong="H3068"\w* \w your|strong="H3068"\w* \w brothers|strong="H1121"\w*, \w the|strong="H3605"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* \w relatives|strong="H1121"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w all|strong="H3605"\w* \w of|strong="H1121"\w* \w them|strong="H5414"\w*, \w are|strong="H1121"\w* \w the|strong="H3605"\w* \w ones|strong="H1121"\w* \w to|strong="H3478"\w* whom \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w* \w have|strong="H3068"\w* said, ‘\w Go|strong="H3068"\w* \w far|strong="H7368"\w* \w away|strong="H7368"\w* \w from|strong="H5921"\w* \w Yahweh|strong="H3068"\w*. \w This|strong="H1931"\w* land \w has|strong="H3068"\w* \w been|strong="H3605"\w* \w given|strong="H5414"\w* \w to|strong="H3478"\w* \w us|strong="H5414"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w possession|strong="H4181"\w*.’ +\p +\v 16 “\w Therefore|strong="H3651"\w* say, ‘\w The|strong="H3588"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Whereas|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w removed|strong="H7368"\w* \w them|strong="H1961"\w* \w far|strong="H7368"\w* \w off|strong="H7368"\w* \w among|strong="H8033"\w* \w the|strong="H3588"\w* \w nations|strong="H1471"\w*, \w and|strong="H8033"\w* \w whereas|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w scattered|strong="H6327"\w* \w them|strong="H1961"\w* \w among|strong="H8033"\w* \w the|strong="H3588"\w* countries, \w yet|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w to|strong="H1961"\w* \w them|strong="H1961"\w* \w a|strong="H3068"\w* \w sanctuary|strong="H4720"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w while|strong="H4592"\w* \w in|strong="H8033"\w* \w the|strong="H3588"\w* countries \w where|strong="H8033"\w* \w they|strong="H3588"\w* \w have|strong="H1961"\w* \w come|strong="H1961"\w*.”’ +\p +\v 17 “\w Therefore|strong="H3651"\w* \w say|strong="H3478"\w*, ‘\w The|strong="H5414"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w I|strong="H5414"\w* \w will|strong="H5971"\w* \w gather|strong="H6908"\w* \w you|strong="H5414"\w* \w from|strong="H4480"\w* \w the|strong="H5414"\w* \w peoples|strong="H5971"\w*, \w and|strong="H3478"\w* \w assemble|strong="H6908"\w* \w you|strong="H5414"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H5414"\w* countries \w where|strong="H4480"\w* \w you|strong="H5414"\w* \w have|strong="H5971"\w* \w been|strong="H5971"\w* \w scattered|strong="H6327"\w*, \w and|strong="H3478"\w* \w I|strong="H5414"\w* \w will|strong="H5971"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w the|strong="H5414"\w* land \w of|strong="H4480"\w* \w Israel|strong="H3478"\w*.” +\p +\v 18 “‘\w They|strong="H8033"\w* \w will|strong="H8033"\w* come \w there|strong="H8033"\w*, \w and|strong="H8033"\w* \w they|strong="H8033"\w* \w will|strong="H8033"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w detestable|strong="H8251"\w* \w things|strong="H8251"\w* \w and|strong="H8033"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w abominations|strong="H8441"\w* \w from|strong="H4480"\w* \w there|strong="H8033"\w*. +\v 19 \w I|strong="H5414"\w* \w will|strong="H3820"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w one|strong="H1320"\w* \w heart|strong="H3820"\w*, \w and|strong="H3820"\w* \w I|strong="H5414"\w* \w will|strong="H3820"\w* \w put|strong="H5414"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w spirit|strong="H7307"\w* \w within|strong="H7130"\w* \w them|strong="H5414"\w*. \w I|strong="H5414"\w* \w will|strong="H3820"\w* \w take|strong="H5493"\w* \w the|strong="H5414"\w* stony \w heart|strong="H3820"\w* \w out|strong="H5414"\w* \w of|strong="H7307"\w* \w their|strong="H5414"\w* \w flesh|strong="H1320"\w*, \w and|strong="H3820"\w* \w will|strong="H3820"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w a|strong="H3068"\w* \w heart|strong="H3820"\w* \w of|strong="H7307"\w* \w flesh|strong="H1320"\w*, +\v 20 \w that|strong="H5971"\w* \w they|strong="H6213"\w* \w may|strong="H1961"\w* \w walk|strong="H3212"\w* \w in|strong="H6213"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w*, \w and|strong="H4941"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w ordinances|strong="H4941"\w*, \w and|strong="H4941"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w*. \w They|strong="H6213"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w my|strong="H8104"\w* \w people|strong="H5971"\w*, \w and|strong="H4941"\w* \w I|strong="H3212"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w their|strong="H1961"\w* God. +\v 21 \w But|strong="H1870"\w* \w as|strong="H1980"\w* \w for|strong="H5414"\w* \w them|strong="H5414"\w* whose \w heart|strong="H3820"\w* \w walks|strong="H1980"\w* \w after|strong="H1980"\w* \w the|strong="H5002"\w* \w heart|strong="H3820"\w* \w of|strong="H7218"\w* \w their|strong="H5414"\w* \w detestable|strong="H8251"\w* \w things|strong="H8251"\w* \w and|strong="H1980"\w* \w their|strong="H5414"\w* \w abominations|strong="H8441"\w*, \w I|strong="H5414"\w* \w will|strong="H3820"\w* \w bring|strong="H5414"\w* \w their|strong="H5414"\w* \w way|strong="H1870"\w* \w on|strong="H1980"\w* \w their|strong="H5414"\w* own \w heads|strong="H7218"\w*,’ \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 22 \w Then|strong="H5375"\w* \w the|strong="H5921"\w* \w cherubim|strong="H3742"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w their|strong="H5375"\w* \w wings|strong="H3671"\w*, \w and|strong="H3478"\w* \w the|strong="H5921"\w* wheels \w were|strong="H3478"\w* \w beside|strong="H5921"\w* \w them|strong="H5921"\w*. \w The|strong="H5921"\w* \w glory|strong="H3519"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* God \w of|strong="H5921"\w* \w Israel|strong="H3478"\w* \w was|strong="H3478"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w* \w above|strong="H4605"\w*. +\v 23 \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*, \w and|strong="H3068"\w* \w stood|strong="H5975"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w mountain|strong="H2022"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w east|strong="H6924"\w* \w side|strong="H6924"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*. +\v 24 \w The|strong="H5921"\w* \w Spirit|strong="H7307"\w* \w lifted|strong="H5375"\w* \w me|strong="H7200"\w* \w up|strong="H5927"\w*, \w and|strong="H7200"\w* \w brought|strong="H5927"\w* \w me|strong="H7200"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w vision|strong="H4758"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w Spirit|strong="H7307"\w* \w of|strong="H7307"\w* God \w into|strong="H5927"\w* \w Chaldea|strong="H3778"\w*, \w to|strong="H5927"\w* \w the|strong="H5921"\w* \w captives|strong="H1473"\w*. +\p \w So|strong="H5927"\w* \w the|strong="H5921"\w* \w vision|strong="H4758"\w* \w that|strong="H7200"\w* \w I|strong="H5921"\w* \w had|strong="H3778"\w* \w seen|strong="H7200"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5921"\w* \w me|strong="H7200"\w*. +\v 25 \w Then|strong="H1696"\w* \w I|strong="H1697"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w captives|strong="H1473"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w things|strong="H1697"\w* \w that|strong="H7200"\w* \w Yahweh|strong="H3068"\w* \w had|strong="H3068"\w* \w shown|strong="H7200"\w* \w me|strong="H7200"\w*. +\c 12 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w also|strong="H3068"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w you|strong="H3588"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H8085"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* \w rebellious|strong="H4805"\w* \w house|strong="H1004"\w*, \w who|strong="H1121"\w* \w have|strong="H5869"\w* \w eyes|strong="H5869"\w* \w to|strong="H8085"\w* \w see|strong="H7200"\w*, \w and|strong="H1121"\w* don’t \w see|strong="H7200"\w*, \w who|strong="H1121"\w* \w have|strong="H5869"\w* ears \w to|strong="H8085"\w* \w hear|strong="H8085"\w*, \w and|strong="H1121"\w* don’t \w hear|strong="H8085"\w*; \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w a|strong="H3068"\w* \w rebellious|strong="H4805"\w* \w house|strong="H1004"\w*. +\p +\v 3 “\w Therefore|strong="H3588"\w*, \w you|strong="H3588"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w prepare|strong="H6213"\w* \w your|strong="H7200"\w* \w baggage|strong="H3627"\w* \w for|strong="H3588"\w* moving, \w and|strong="H1121"\w* move \w by|strong="H6213"\w* \w day|strong="H3119"\w* \w in|strong="H6213"\w* \w their|strong="H1992"\w* \w sight|strong="H5869"\w*. \w You|strong="H3588"\w* \w shall|strong="H1121"\w* move \w from|strong="H1121"\w* \w your|strong="H7200"\w* \w place|strong="H4725"\w* \w to|strong="H6213"\w* \w another|strong="H7200"\w* \w place|strong="H4725"\w* \w in|strong="H6213"\w* \w their|strong="H1992"\w* \w sight|strong="H5869"\w*. \w It|strong="H3588"\w* \w may|strong="H6213"\w* \w be|strong="H1121"\w* \w they|strong="H1992"\w* \w will|strong="H5869"\w* \w consider|strong="H7200"\w*, \w though|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w a|strong="H3068"\w* \w rebellious|strong="H4805"\w* \w house|strong="H1004"\w*. +\v 4 \w You|strong="H5869"\w* \w shall|strong="H5869"\w* \w bring|strong="H3318"\w* \w out|strong="H3318"\w* \w your|strong="H3318"\w* \w baggage|strong="H3627"\w* \w by|strong="H3318"\w* \w day|strong="H3119"\w* \w in|strong="H5869"\w* \w their|strong="H3318"\w* \w sight|strong="H5869"\w*, \w as|strong="H3318"\w* \w baggage|strong="H3627"\w* \w for|strong="H3627"\w* moving. \w You|strong="H5869"\w* \w shall|strong="H5869"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* yourself \w at|strong="H3318"\w* \w evening|strong="H6153"\w* \w in|strong="H5869"\w* \w their|strong="H3318"\w* \w sight|strong="H5869"\w*, \w as|strong="H3318"\w* \w when|strong="H3318"\w* men \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H3318"\w* \w exile|strong="H1473"\w*. +\v 5 \w Dig|strong="H2864"\w* \w through|strong="H2864"\w* \w the|strong="H3318"\w* \w wall|strong="H7023"\w* \w in|strong="H5869"\w* \w their|strong="H3318"\w* \w sight|strong="H5869"\w*, \w and|strong="H5869"\w* \w carry|strong="H3318"\w* \w your|strong="H3318"\w* baggage \w out|strong="H3318"\w* \w that|strong="H5869"\w* way. +\v 6 \w In|strong="H5921"\w* \w their|strong="H5375"\w* \w sight|strong="H5869"\w* \w you|strong="H3588"\w* \w shall|strong="H3478"\w* \w bear|strong="H5375"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w your|strong="H5414"\w* \w shoulder|strong="H3802"\w*, \w and|strong="H3478"\w* \w carry|strong="H5375"\w* \w it|strong="H5414"\w* \w out|strong="H3318"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w dark|strong="H5939"\w*. \w You|strong="H3588"\w* \w shall|strong="H3478"\w* \w cover|strong="H3680"\w* \w your|strong="H5414"\w* \w face|strong="H6440"\w*, \w so|strong="H5414"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* don’t \w see|strong="H7200"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H5869"\w* \w set|strong="H5414"\w* \w you|strong="H3588"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w sign|strong="H4159"\w* \w to|strong="H3318"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*.” +\p +\v 7 \w I|strong="H5921"\w* \w did|strong="H6213"\w* \w so|strong="H3651"\w* \w as|strong="H6213"\w* \w I|strong="H5921"\w* \w was|strong="H3027"\w* \w commanded|strong="H6680"\w*. \w I|strong="H5921"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w my|strong="H5921"\w* \w baggage|strong="H3627"\w* \w by|strong="H3027"\w* \w day|strong="H3119"\w*, \w as|strong="H6213"\w* \w baggage|strong="H3627"\w* \w for|strong="H5921"\w* moving, \w and|strong="H3027"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w evening|strong="H6153"\w* \w I|strong="H5921"\w* \w dug|strong="H2864"\w* \w through|strong="H3027"\w* \w the|strong="H5921"\w* \w wall|strong="H7023"\w* \w with|strong="H6213"\w* \w my|strong="H5921"\w* \w hand|strong="H3027"\w*. \w I|strong="H5921"\w* \w brought|strong="H3318"\w* \w it|strong="H5921"\w* \w out|strong="H3318"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w dark|strong="H5939"\w*, \w and|strong="H3027"\w* \w bore|strong="H5375"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w my|strong="H5921"\w* \w shoulder|strong="H3802"\w* \w in|strong="H5921"\w* \w their|strong="H5375"\w* \w sight|strong="H5869"\w*. +\p +\v 8 \w In|strong="H3068"\w* \w the|strong="H3068"\w* \w morning|strong="H1242"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 9 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, hasn’t \w the|strong="H6213"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w the|strong="H6213"\w* \w rebellious|strong="H4805"\w* \w house|strong="H1004"\w*, said \w to|strong="H3478"\w* \w you|strong="H6213"\w*, ‘\w What|strong="H4100"\w* \w are|strong="H1121"\w* \w you|strong="H6213"\w* \w doing|strong="H6213"\w*?’ +\p +\v 10 “\w Say|strong="H3478"\w* \w to|strong="H3478"\w* \w them|strong="H1992"\w*, ‘\w The|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w This|strong="H2088"\w* \w burden|strong="H4853"\w* concerns \w the|strong="H3605"\w* \w prince|strong="H5387"\w* \w in|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w among|strong="H8432"\w* \w whom|strong="H1992"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w*.”’ +\p +\v 11 “Say, ‘\w I|strong="H3651"\w* am \w your|strong="H6213"\w* \w sign|strong="H4159"\w*. \w As|strong="H6213"\w* \w I|strong="H3651"\w* have \w done|strong="H6213"\w*, \w so|strong="H3651"\w* \w will|strong="H6213"\w* \w it|strong="H6213"\w* be \w done|strong="H6213"\w* \w to|strong="H3212"\w* \w them|strong="H6213"\w*. \w They|strong="H3651"\w* \w will|strong="H6213"\w* \w go|strong="H3212"\w* \w into|strong="H3212"\w* \w exile|strong="H1473"\w*, \w into|strong="H3212"\w* \w captivity|strong="H7628"\w*. +\p +\v 12 “‘\w The|strong="H6440"\w* \w prince|strong="H5387"\w* \w who|strong="H1931"\w* \w is|strong="H1931"\w* \w among|strong="H8432"\w* \w them|strong="H6440"\w* \w will|strong="H5869"\w* \w bear|strong="H5375"\w* \w his|strong="H5375"\w* baggage \w on|strong="H7200"\w* \w his|strong="H5375"\w* \w shoulder|strong="H3802"\w* \w in|strong="H8432"\w* \w the|strong="H6440"\w* \w dark|strong="H5939"\w*, \w and|strong="H5869"\w* \w will|strong="H5869"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*. \w They|strong="H3808"\w* \w will|strong="H5869"\w* \w dig|strong="H2864"\w* \w through|strong="H8432"\w* \w the|strong="H6440"\w* \w wall|strong="H7023"\w* \w to|strong="H3318"\w* \w carry|strong="H5375"\w* \w things|strong="H3808"\w* \w out|strong="H3318"\w* \w that|strong="H7200"\w* \w way|strong="H6440"\w*. \w He|strong="H1931"\w* \w will|strong="H5869"\w* \w cover|strong="H3680"\w* \w his|strong="H5375"\w* \w face|strong="H6440"\w*, \w because|strong="H6440"\w* \w he|strong="H1931"\w* \w will|strong="H5869"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w with|strong="H6440"\w* \w his|strong="H5375"\w* \w eyes|strong="H5869"\w*. +\v 13 \w I|strong="H5921"\w* \w will|strong="H3808"\w* \w also|strong="H3778"\w* \w spread|strong="H6566"\w* \w my|strong="H7200"\w* \w net|strong="H7568"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H8033"\w* \w he|strong="H8033"\w* \w will|strong="H3808"\w* \w be|strong="H4191"\w* \w taken|strong="H8610"\w* \w in|strong="H5921"\w* \w my|strong="H7200"\w* \w snare|strong="H4686"\w*. \w I|strong="H5921"\w* \w will|strong="H3808"\w* \w bring|strong="H4191"\w* \w him|strong="H5921"\w* \w to|strong="H4191"\w* Babylon \w to|strong="H4191"\w* \w the|strong="H5921"\w* land \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w Chaldeans|strong="H3778"\w*; \w yet|strong="H3808"\w* \w he|strong="H8033"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w see|strong="H7200"\w* \w it|strong="H5921"\w*, though \w he|strong="H8033"\w* \w will|strong="H3808"\w* \w die|strong="H4191"\w* \w there|strong="H8033"\w*. +\v 14 \w I|strong="H3605"\w* \w will|strong="H2719"\w* \w scatter|strong="H2219"\w* toward \w every|strong="H3605"\w* \w wind|strong="H7307"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H2719"\w* \w around|strong="H5439"\w* \w him|strong="H3605"\w* \w to|strong="H7307"\w* \w help|strong="H5828"\w* \w him|strong="H3605"\w*, \w and|strong="H2719"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* bands. \w I|strong="H3605"\w* \w will|strong="H2719"\w* \w draw|strong="H7324"\w* \w out|strong="H7324"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w* after \w them|strong="H5439"\w*. +\p +\v 15 “‘\w They|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w disperse|strong="H2219"\w* \w them|strong="H6327"\w* among \w the|strong="H3588"\w* \w nations|strong="H1471"\w* \w and|strong="H3068"\w* \w scatter|strong="H2219"\w* \w them|strong="H6327"\w* \w through|strong="H3588"\w* \w the|strong="H3588"\w* countries. +\v 16 \w But|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w leave|strong="H3498"\w* \w a|strong="H3068"\w* \w few|strong="H4557"\w* \w men|strong="H3605"\w* \w of|strong="H3068"\w* \w them|strong="H1992"\w* \w from|strong="H1471"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w from|strong="H1471"\w* \w the|strong="H3605"\w* \w famine|strong="H7458"\w*, \w and|strong="H3068"\w* \w from|strong="H1471"\w* \w the|strong="H3605"\w* \w pestilence|strong="H1698"\w*, \w that|strong="H3588"\w* \w they|strong="H1992"\w* \w may|strong="H3068"\w* \w declare|strong="H5608"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w abominations|strong="H8441"\w* \w among|strong="H2719"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w where|strong="H8033"\w* \w they|strong="H1992"\w* \w come|strong="H3045"\w*. \w Then|strong="H4616"\w* \w they|strong="H1992"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.’” +\p +\v 17 \w Moreover|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 18 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w eat|strong="H3899"\w* \w your|strong="H8354"\w* \w bread|strong="H3899"\w* \w with|strong="H3899"\w* \w quaking|strong="H7494"\w*, \w and|strong="H1121"\w* \w drink|strong="H8354"\w* \w your|strong="H8354"\w* \w water|strong="H4325"\w* \w with|strong="H3899"\w* \w trembling|strong="H7269"\w* \w and|strong="H1121"\w* \w with|strong="H3899"\w* fearfulness. +\v 19 \w Tell|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* land, ‘\w The|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w concerning|strong="H3069"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H3478"\w* \w the|strong="H3605"\w* land \w of|strong="H3427"\w* \w Israel|strong="H3478"\w*: “\w They|strong="H5971"\w* \w will|strong="H5971"\w* \w eat|strong="H3899"\w* \w their|strong="H3605"\w* \w bread|strong="H3899"\w* \w with|strong="H3427"\w* fearfulness \w and|strong="H3478"\w* \w drink|strong="H8354"\w* \w their|strong="H3605"\w* \w water|strong="H4325"\w* \w in|strong="H3427"\w* dismay, \w that|strong="H5971"\w* \w her|strong="H3605"\w* land \w may|strong="H5971"\w* \w be|strong="H3478"\w* \w desolate|strong="H3456"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w that|strong="H5971"\w* \w is|strong="H3478"\w* \w therein|strong="H4393"\w*, \w because|strong="H4616"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* \w violence|strong="H2555"\w* \w of|strong="H3427"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w dwell|strong="H3427"\w* \w therein|strong="H4393"\w*. +\v 20 \w The|strong="H3588"\w* \w cities|strong="H5892"\w* \w that|strong="H3588"\w* \w are|strong="H3068"\w* \w inhabited|strong="H3427"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w laid|strong="H2717"\w* \w waste|strong="H2717"\w*, \w and|strong="H3068"\w* \w the|strong="H3588"\w* land \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w desolation|strong="H8077"\w*. \w Then|strong="H1961"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w*.”’” +\p +\v 21 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 22 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w what|strong="H4100"\w* \w is|strong="H2088"\w* \w this|strong="H2088"\w* \w proverb|strong="H4912"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w have|strong="H1121"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* land \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, saying, ‘\w The|strong="H3605"\w* \w days|strong="H3117"\w* \w are|strong="H3117"\w* prolonged, \w and|strong="H1121"\w* \w every|strong="H3605"\w* \w vision|strong="H2377"\w* fails’? +\v 23 \w Tell|strong="H1696"\w* \w them|strong="H7126"\w* \w therefore|strong="H3651"\w*, ‘\w The|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w I|strong="H3588"\w* \w will|strong="H3478"\w* \w make|strong="H7673"\w* \w this|strong="H2088"\w* \w proverb|strong="H4912"\w* \w to|strong="H1696"\w* \w cease|strong="H7673"\w*, \w and|strong="H3478"\w* \w they|strong="H3588"\w* \w will|strong="H3478"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w use|strong="H4911"\w* \w it|strong="H7126"\w* \w as|strong="H1697"\w* \w a|strong="H3068"\w* \w proverb|strong="H4912"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*;”’ \w but|strong="H3588"\w* \w tell|strong="H1696"\w* \w them|strong="H7126"\w*, ‘“\w The|strong="H3605"\w* \w days|strong="H3117"\w* \w are|strong="H3117"\w* \w at|strong="H3478"\w* \w hand|strong="H7126"\w*, \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w fulfillment|strong="H1697"\w* \w of|strong="H3117"\w* \w every|strong="H3605"\w* \w vision|strong="H2377"\w*. +\v 24 \w For|strong="H3588"\w* \w there|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w any|strong="H3605"\w* \w false|strong="H7723"\w* \w vision|strong="H2377"\w* \w nor|strong="H3808"\w* \w flattering|strong="H2509"\w* \w divination|strong="H4738"\w* \w within|strong="H8432"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. +\v 25 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w speak|strong="H1696"\w*, \w and|strong="H3068"\w* \w the|strong="H5002"\w* \w word|strong="H1697"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w speak|strong="H1696"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w performed|strong="H6213"\w*. \w It|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w deferred|strong="H4900"\w*; \w for|strong="H3588"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w days|strong="H3117"\w*, \w rebellious|strong="H4805"\w* \w house|strong="H1004"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w speak|strong="H1696"\w* \w the|strong="H5002"\w* \w word|strong="H1697"\w* \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w perform|strong="H6213"\w* \w it|strong="H3588"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.’” +\p +\v 26 \w Again|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 27 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w behold|strong="H2009"\w*, \w they|strong="H3117"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w say|strong="H3478"\w*, ‘\w The|strong="H3117"\w* \w vision|strong="H2377"\w* \w that|strong="H3117"\w* \w he|strong="H1931"\w* \w sees|strong="H2372"\w* \w is|strong="H1931"\w* \w for|strong="H1004"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w* \w to|strong="H3478"\w* \w come|strong="H7350"\w*, \w and|strong="H1121"\w* \w he|strong="H1931"\w* \w prophesies|strong="H5012"\w* \w of|strong="H1121"\w* \w times|strong="H6256"\w* \w that|strong="H3117"\w* \w are|strong="H3117"\w* \w far|strong="H7350"\w* \w off|strong="H7350"\w*.’ +\p +\v 28 “\w Therefore|strong="H3651"\w* \w tell|strong="H1696"\w* \w them|strong="H6213"\w*, ‘\w The|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H5002"\w*: “\w None|strong="H3808"\w* \w of|strong="H1697"\w* \w my|strong="H3605"\w* \w words|strong="H1697"\w* \w will|strong="H1697"\w* \w be|strong="H3808"\w* \w deferred|strong="H4900"\w* \w any|strong="H3605"\w* \w more|strong="H5750"\w*, \w but|strong="H3808"\w* \w the|strong="H3605"\w* \w word|strong="H1697"\w* \w which|strong="H1697"\w* \w I|strong="H3541"\w* \w speak|strong="H1696"\w* \w will|strong="H1697"\w* \w be|strong="H3808"\w* \w performed|strong="H6213"\w*,” \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*.’” +\c 13 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w prophesy|strong="H5012"\w* \w against|strong="H5012"\w* \w the|strong="H8085"\w* \w prophets|strong="H5030"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w who|strong="H3068"\w* \w prophesy|strong="H5012"\w*, \w and|strong="H1121"\w* \w say|strong="H1697"\w* \w to|strong="H3478"\w* \w those|strong="H8085"\w* \w who|strong="H3068"\w* \w prophesy|strong="H5012"\w* out \w of|strong="H1121"\w* \w their|strong="H3068"\w* own \w heart|strong="H3820"\w*, ‘\w Hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*: +\v 3 \w The|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w Woe|strong="H1945"\w* \w to|strong="H1980"\w* \w the|strong="H5921"\w* \w foolish|strong="H5036"\w* \w prophets|strong="H5030"\w*, \w who|strong="H5030"\w* \w follow|strong="H1980"\w* \w their|strong="H7200"\w* own \w spirit|strong="H7307"\w*, \w and|strong="H1980"\w* \w have|strong="H5030"\w* \w seen|strong="H7200"\w* \w nothing|strong="H1115"\w*! +\v 4 \w Israel|strong="H3478"\w*, \w your|strong="H1961"\w* \w prophets|strong="H5030"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w like|strong="H1961"\w* \w foxes|strong="H7776"\w* \w in|strong="H3478"\w* \w the|strong="H1961"\w* \w waste|strong="H2723"\w* \w places|strong="H2723"\w*. +\v 5 \w You|strong="H5921"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w gone|strong="H5927"\w* \w up|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H5921"\w* \w gaps|strong="H6556"\w* \w or|strong="H3808"\w* built \w up|strong="H5927"\w* \w the|strong="H5921"\w* \w wall|strong="H1447"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w stand|strong="H5975"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w battle|strong="H4421"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w day|strong="H3117"\w*. +\v 6 \w They|strong="H3068"\w* \w have|strong="H3068"\w* \w seen|strong="H2372"\w* \w falsehood|strong="H7723"\w* \w and|strong="H6965"\w* \w lying|strong="H3577"\w* \w divination|strong="H7081"\w*, \w who|strong="H3068"\w* \w say|strong="H1697"\w*, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H5002"\w*;’ \w but|strong="H3808"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w sent|strong="H7971"\w* \w them|strong="H7971"\w*. \w They|strong="H3068"\w* \w have|strong="H3068"\w* \w made|strong="H3068"\w* men \w to|strong="H3068"\w* \w hope|strong="H3176"\w* \w that|strong="H3068"\w* \w the|strong="H5002"\w* \w word|strong="H1697"\w* \w would|strong="H3068"\w* \w be|strong="H3808"\w* \w confirmed|strong="H6965"\w*. +\v 7 Haven’t \w you|strong="H3808"\w* \w seen|strong="H2372"\w* \w a|strong="H3068"\w* \w false|strong="H7723"\w* \w vision|strong="H4236"\w*, \w and|strong="H3068"\w* haven’t \w you|strong="H3808"\w* \w spoken|strong="H1696"\w* \w a|strong="H3068"\w* \w lying|strong="H3577"\w* \w divination|strong="H4738"\w*, \w in|strong="H3068"\w* \w that|strong="H3068"\w* \w you|strong="H3808"\w* \w say|strong="H1696"\w*, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H5002"\w*;’ \w but|strong="H3808"\w* \w I|strong="H3808"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w spoken|strong="H1696"\w*?” +\p +\v 8 “‘\w Therefore|strong="H3651"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H5002"\w*: “\w Because|strong="H3282"\w* \w you|strong="H3651"\w* \w have|strong="H3282"\w* \w spoken|strong="H1696"\w* \w falsehood|strong="H7723"\w* \w and|strong="H1696"\w* \w seen|strong="H2372"\w* \w lies|strong="H3577"\w*, \w therefore|strong="H3651"\w*, \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H2005"\w* \w against|strong="H1696"\w* \w you|strong="H3651"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\v 9 “\w My|strong="H3045"\w* \w hand|strong="H3027"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w against|strong="H3027"\w* \w the|strong="H3588"\w* \w prophets|strong="H5030"\w* \w who|strong="H5971"\w* \w see|strong="H2374"\w* \w false|strong="H7723"\w* \w visions|strong="H7723"\w* \w and|strong="H3478"\w* \w who|strong="H5971"\w* \w utter|strong="H7080"\w* \w lying|strong="H3577"\w* \w divinations|strong="H7080"\w*. \w They|strong="H3588"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w in|strong="H3478"\w* \w the|strong="H3588"\w* \w council|strong="H5475"\w* \w of|strong="H1004"\w* \w my|strong="H3045"\w* \w people|strong="H5971"\w*, \w neither|strong="H3808"\w* \w will|strong="H1961"\w* \w they|strong="H3588"\w* \w be|strong="H1961"\w* \w written|strong="H3789"\w* \w in|strong="H3478"\w* \w the|strong="H3588"\w* \w writing|strong="H3791"\w* \w of|strong="H1004"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w neither|strong="H3808"\w* \w will|strong="H1961"\w* \w they|strong="H3588"\w* enter \w into|strong="H3027"\w* \w the|strong="H3588"\w* land \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. \w Then|strong="H1961"\w* \w you|strong="H3588"\w* \w will|strong="H1961"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w the|strong="H3588"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 10 “‘\w Because|strong="H3282"\w*, \w even|strong="H1129"\w* \w because|strong="H3282"\w* \w they|strong="H3282"\w* \w have|strong="H5971"\w* \w seduced|strong="H2937"\w* \w my|strong="H1129"\w* \w people|strong="H5971"\w*, saying, “\w Peace|strong="H7965"\w*;” \w and|strong="H5971"\w* \w there|strong="H2009"\w* \w is|strong="H1931"\w* no \w peace|strong="H7965"\w*. \w When|strong="H2009"\w* \w one|strong="H1931"\w* \w builds|strong="H1129"\w* \w up|strong="H1129"\w* \w a|strong="H3068"\w* \w wall|strong="H2434"\w*, \w behold|strong="H2009"\w*, \w they|strong="H3282"\w* \w plaster|strong="H2902"\w* \w it|strong="H1931"\w* \w with|strong="H5971"\w* \w whitewash|strong="H8602"\w*. +\v 11 Tell \w those|strong="H1961"\w* who \w plaster|strong="H2902"\w* \w it|strong="H1961"\w* \w with|strong="H2902"\w* \w whitewash|strong="H8602"\w* \w that|strong="H5307"\w* \w it|strong="H1961"\w* \w will|strong="H1961"\w* \w fall|strong="H5307"\w*. \w There|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w an|strong="H1961"\w* \w overflowing|strong="H7857"\w* \w shower|strong="H1653"\w*; \w and|strong="H5307"\w* \w you|strong="H7307"\w*, great hailstones, \w will|strong="H1961"\w* \w fall|strong="H5307"\w*. \w A|strong="H3068"\w* \w stormy|strong="H5591"\w* \w wind|strong="H7307"\w* \w will|strong="H1961"\w* \w tear|strong="H1234"\w* \w it|strong="H1961"\w*. +\v 12 \w Behold|strong="H2009"\w*, \w when|strong="H5307"\w* \w the|strong="H2009"\w* \w wall|strong="H7023"\w* \w has|strong="H2009"\w* \w fallen|strong="H5307"\w*, won’t \w it|strong="H3808"\w* \w be|strong="H3808"\w* said \w to|strong="H3808"\w* \w you|strong="H3808"\w*, “\w Where|strong="H3808"\w* \w is|strong="H2009"\w* \w the|strong="H2009"\w* \w plaster|strong="H2902"\w* \w with|strong="H2902"\w* \w which|strong="H7023"\w* \w you|strong="H3808"\w* \w have|strong="H3808"\w* \w plastered|strong="H2902"\w* \w it|strong="H3808"\w*?” +\p +\v 13 “‘\w Therefore|strong="H3651"\w* \w the|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w I|strong="H3541"\w* \w will|strong="H1961"\w* \w even|strong="H3651"\w* \w tear|strong="H1234"\w* \w it|strong="H3651"\w* \w with|strong="H3651"\w* \w a|strong="H3068"\w* \w stormy|strong="H5591"\w* \w wind|strong="H7307"\w* \w in|strong="H1961"\w* \w my|strong="H1961"\w* \w wrath|strong="H2534"\w*. \w There|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w an|strong="H1961"\w* \w overflowing|strong="H7857"\w* \w shower|strong="H1653"\w* \w in|strong="H1961"\w* \w my|strong="H1961"\w* \w anger|strong="H2534"\w*, \w and|strong="H7307"\w* great hailstones \w in|strong="H1961"\w* \w wrath|strong="H2534"\w* \w to|strong="H1961"\w* \w consume|strong="H3617"\w* \w it|strong="H3651"\w*. +\v 14 \w So|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w break|strong="H2040"\w* \w down|strong="H5307"\w* \w the|strong="H3588"\w* \w wall|strong="H7023"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w plastered|strong="H2902"\w* \w with|strong="H3068"\w* \w whitewash|strong="H8602"\w*, \w and|strong="H3068"\w* \w bring|strong="H5060"\w* \w it|strong="H3588"\w* \w down|strong="H5307"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* ground, \w so|strong="H3588"\w* \w that|strong="H3588"\w* \w its|strong="H3045"\w* \w foundation|strong="H3247"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w uncovered|strong="H1540"\w*. \w It|strong="H3588"\w* \w will|strong="H3068"\w* \w fall|strong="H5307"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w consumed|strong="H3615"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w it|strong="H3588"\w*. \w Then|strong="H5307"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 15 Thus I \w will|strong="H2534"\w* \w accomplish|strong="H3615"\w* \w my|strong="H3615"\w* \w wrath|strong="H2534"\w* \w on|strong="H2534"\w* \w the|strong="H3615"\w* \w wall|strong="H7023"\w*, \w and|strong="H2534"\w* \w on|strong="H2534"\w* those who have \w plastered|strong="H2902"\w* \w it|strong="H3615"\w* \w with|strong="H2902"\w* \w whitewash|strong="H8602"\w*. I \w will|strong="H2534"\w* tell \w you|strong="H3615"\w*, ‘\w The|strong="H3615"\w* \w wall|strong="H7023"\w* \w is|strong="H2534"\w* no more, nor those who \w plastered|strong="H2902"\w* \w it|strong="H3615"\w*— +\v 16 \w to|strong="H3478"\w* wit, \w the|strong="H5002"\w* \w prophets|strong="H5030"\w* \w of|strong="H5030"\w* \w Israel|strong="H3478"\w* \w who|strong="H3478"\w* \w prophesy|strong="H5012"\w* \w concerning|strong="H5012"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3478"\w* \w who|strong="H3478"\w* \w see|strong="H2374"\w* \w visions|strong="H2377"\w* \w of|strong="H5030"\w* \w peace|strong="H7965"\w* \w for|strong="H3389"\w* \w her|strong="H3389"\w*, \w and|strong="H3478"\w* \w there|strong="H7965"\w* \w is|strong="H3478"\w* \w no|strong="H5030"\w* \w peace|strong="H7965"\w*,’” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*.’” +\p +\v 17 \w You|strong="H6440"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w set|strong="H7760"\w* \w your|strong="H5921"\w* \w face|strong="H6440"\w* \w against|strong="H5921"\w* \w the|strong="H6440"\w* \w daughters|strong="H1323"\w* \w of|strong="H1121"\w* \w your|strong="H5921"\w* \w people|strong="H5971"\w*, \w who|strong="H5971"\w* \w prophesy|strong="H5012"\w* \w out|strong="H5921"\w* \w of|strong="H1121"\w* \w their|strong="H7760"\w* \w own|strong="H5971"\w* \w heart|strong="H3820"\w*; \w and|strong="H1121"\w* \w prophesy|strong="H5012"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w*, +\v 18 \w and|strong="H3027"\w* say, “\w The|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Woe|strong="H1945"\w* \w to|strong="H6213"\w* \w the|strong="H3605"\w* women \w who|strong="H3605"\w* \w sew|strong="H8609"\w* magic \w bands|strong="H7218"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* elbows \w and|strong="H3027"\w* \w make|strong="H6213"\w* \w veils|strong="H4555"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w head|strong="H7218"\w* \w of|strong="H3027"\w* \w persons|strong="H5315"\w* \w of|strong="H3027"\w* \w every|strong="H3605"\w* \w stature|strong="H6967"\w* \w to|strong="H6213"\w* \w hunt|strong="H6679"\w* \w souls|strong="H5315"\w*! \w Will|strong="H5971"\w* \w you|strong="H3605"\w* \w hunt|strong="H6679"\w* \w the|strong="H3605"\w* \w souls|strong="H5315"\w* \w of|strong="H3027"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w* \w and|strong="H3027"\w* \w save|strong="H2421"\w* \w souls|strong="H5315"\w* \w alive|strong="H2421"\w* \w for|strong="H5921"\w* \w yourselves|strong="H5315"\w*? +\v 19 \w You|strong="H3808"\w* \w have|strong="H5971"\w* \w profaned|strong="H2490"\w* \w me|strong="H5315"\w* \w among|strong="H5971"\w* \w my|strong="H8085"\w* \w people|strong="H5971"\w* \w for|strong="H4191"\w* \w handfuls|strong="H8168"\w* \w of|strong="H5971"\w* \w barley|strong="H8184"\w* \w and|strong="H3899"\w* \w for|strong="H4191"\w* \w pieces|strong="H6595"\w* \w of|strong="H5971"\w* \w bread|strong="H3899"\w*, \w to|strong="H4191"\w* \w kill|strong="H4191"\w* \w the|strong="H8085"\w* \w souls|strong="H5315"\w* \w who|strong="H5971"\w* \w should|strong="H3899"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w* \w and|strong="H3899"\w* \w to|strong="H4191"\w* \w save|strong="H2421"\w* \w the|strong="H8085"\w* \w souls|strong="H5315"\w* \w alive|strong="H2421"\w* \w who|strong="H5971"\w* \w should|strong="H3899"\w* \w not|strong="H3808"\w* \w live|strong="H2421"\w*, \w by|strong="H4191"\w* \w your|strong="H8085"\w* \w lying|strong="H3577"\w* \w to|strong="H4191"\w* \w my|strong="H8085"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w listen|strong="H8085"\w* \w to|strong="H4191"\w* \w lies|strong="H3577"\w*.’ +\p +\v 20 “\w Therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H2005"\w* \w against|strong="H5921"\w* \w your|strong="H5921"\w* magic \w bands|strong="H3704"\w*, \w with|strong="H5921"\w* \w which|strong="H8033"\w* \w you|strong="H7971"\w* \w hunt|strong="H6679"\w* \w the|strong="H5921"\w* \w souls|strong="H5315"\w* \w to|strong="H7971"\w* make \w them|strong="H5921"\w* \w fly|strong="H6524"\w*, \w and|strong="H7971"\w* \w I|strong="H2005"\w* \w will|strong="H5315"\w* \w tear|strong="H7167"\w* \w them|strong="H5921"\w* \w from|strong="H5921"\w* \w your|strong="H5921"\w* \w arms|strong="H2220"\w*. \w I|strong="H2005"\w* \w will|strong="H5315"\w* \w let|strong="H7971"\w* \w the|strong="H5921"\w* \w souls|strong="H5315"\w* \w fly|strong="H6524"\w* \w free|strong="H7971"\w*, \w even|strong="H3651"\w* \w the|strong="H5921"\w* \w souls|strong="H5315"\w* whom \w you|strong="H7971"\w* ensnare \w like|strong="H3651"\w* \w birds|strong="H6524"\w*. +\v 21 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w also|strong="H3068"\w* \w tear|strong="H7167"\w* \w your|strong="H3068"\w* \w veils|strong="H4555"\w* \w and|strong="H3068"\w* \w deliver|strong="H5337"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w out|strong="H3045"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*; \w and|strong="H3068"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w no|strong="H3808"\w* \w longer|strong="H5750"\w* \w be|strong="H1961"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w* \w to|strong="H3068"\w* \w be|strong="H1961"\w* ensnared. \w Then|strong="H1961"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w*. +\v 22 \w Because|strong="H3282"\w* \w with|strong="H3027"\w* \w lies|strong="H8267"\w* \w you|strong="H7725"\w* \w have|strong="H3027"\w* \w grieved|strong="H3512"\w* \w the|strong="H7725"\w* \w heart|strong="H3820"\w* \w of|strong="H3027"\w* \w the|strong="H7725"\w* \w righteous|strong="H6662"\w*, whom \w I|strong="H3282"\w* \w have|strong="H3027"\w* \w not|strong="H3808"\w* \w made|strong="H2388"\w* \w sad|strong="H7451"\w*; \w and|strong="H7725"\w* \w strengthened|strong="H2388"\w* \w the|strong="H7725"\w* \w hands|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H7725"\w* \w wicked|strong="H7563"\w*, \w that|strong="H3027"\w* \w he|strong="H3027"\w* \w should|strong="H7563"\w* \w not|strong="H3808"\w* \w return|strong="H7725"\w* \w from|strong="H7725"\w* \w his|strong="H7725"\w* \w wicked|strong="H7563"\w* \w way|strong="H1870"\w*, \w and|strong="H7725"\w* \w be|strong="H3808"\w* \w saved|strong="H2421"\w* \w alive|strong="H2421"\w*. +\v 23 \w Therefore|strong="H3651"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w see|strong="H2372"\w* \w false|strong="H7723"\w* \w visions|strong="H7723"\w* \w nor|strong="H3808"\w* \w practice|strong="H7080"\w* \w divination|strong="H7081"\w*. \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w deliver|strong="H5337"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w out|strong="H3045"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*. \w Then|strong="H3651"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.’” +\c 14 +\p +\v 1 \w Then|strong="H3478"\w* some \w of|strong="H3427"\w* \w the|strong="H6440"\w* \w elders|strong="H2205"\w* \w of|strong="H3427"\w* \w Israel|strong="H3478"\w* \w came|strong="H3478"\w* \w to|strong="H3478"\w* \w me|strong="H6440"\w* \w and|strong="H3478"\w* \w sat|strong="H3427"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*. +\v 2 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 3 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w these|strong="H6440"\w* \w men|strong="H1121"\w* \w have|strong="H1121"\w* \w taken|strong="H5927"\w* \w their|strong="H5414"\w* \w idols|strong="H1544"\w* \w into|strong="H5927"\w* \w their|strong="H5414"\w* \w heart|strong="H3820"\w*, \w and|strong="H1121"\w* \w put|strong="H5414"\w* \w the|strong="H6440"\w* \w stumbling|strong="H4383"\w* \w block|strong="H4383"\w* \w of|strong="H1121"\w* \w their|strong="H5414"\w* \w iniquity|strong="H5771"\w* \w before|strong="H6440"\w* \w their|strong="H5414"\w* \w face|strong="H6440"\w*. Should \w I|strong="H5414"\w* \w be|strong="H1121"\w* \w inquired|strong="H1875"\w* \w of|strong="H1121"\w* \w at|strong="H5921"\w* \w all|strong="H5414"\w* \w by|strong="H5921"\w* \w them|strong="H5414"\w*? +\v 4 \w Therefore|strong="H3651"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H6440"\w* \w and|strong="H3478"\w* \w tell|strong="H1696"\w* \w them|strong="H6440"\w*, ‘\w The|strong="H6440"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Every|strong="H7760"\w* \w man|strong="H6440"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w who|strong="H3068"\w* \w takes|strong="H7760"\w* \w his|strong="H7760"\w* \w idols|strong="H1544"\w* \w into|strong="H5927"\w* \w his|strong="H7760"\w* \w heart|strong="H3820"\w* \w and|strong="H3478"\w* \w puts|strong="H7760"\w* \w the|strong="H6440"\w* \w stumbling|strong="H4383"\w* \w block|strong="H4383"\w* \w of|strong="H1004"\w* \w his|strong="H7760"\w* \w iniquity|strong="H5771"\w* \w before|strong="H6440"\w* \w his|strong="H7760"\w* \w face|strong="H6440"\w* \w then|strong="H6030"\w* \w comes|strong="H5927"\w* \w to|strong="H1696"\w* \w the|strong="H6440"\w* \w prophet|strong="H5030"\w*, \w I|strong="H3541"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w answer|strong="H6030"\w* \w him|strong="H6440"\w* \w there|strong="H5927"\w* according \w to|strong="H1696"\w* \w the|strong="H6440"\w* \w multitude|strong="H7230"\w* \w of|strong="H1004"\w* \w his|strong="H7760"\w* \w idols|strong="H1544"\w*, +\v 5 \w that|strong="H3605"\w* \w I|strong="H5921"\w* \w may|strong="H3478"\w* \w take|strong="H8610"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w in|strong="H5921"\w* \w their|strong="H3605"\w* own \w heart|strong="H3820"\w*, \w because|strong="H5921"\w* \w they|strong="H5921"\w* \w are|strong="H3478"\w* \w all|strong="H3605"\w* \w estranged|strong="H2114"\w* \w from|strong="H5921"\w* \w me|strong="H5921"\w* \w through|strong="H5921"\w* \w their|strong="H3605"\w* \w idols|strong="H1544"\w*.”’ +\p +\v 6 “\w Therefore|strong="H3651"\w* \w tell|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, ‘\w The|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Return|strong="H7725"\w*, \w and|strong="H3478"\w* \w turn|strong="H7725"\w* \w yourselves|strong="H3605"\w* \w from|strong="H7725"\w* \w your|strong="H3605"\w* \w idols|strong="H1544"\w*! \w Turn|strong="H7725"\w* \w away|strong="H7725"\w* \w your|strong="H3605"\w* \w faces|strong="H6440"\w* \w from|strong="H7725"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w abominations|strong="H8441"\w*. +\p +\v 7 “‘“\w For|strong="H3588"\w* everyone \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w or|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w strangers|strong="H1616"\w* \w who|strong="H3068"\w* \w live|strong="H1481"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w who|strong="H3068"\w* \w separates|strong="H5144"\w* \w himself|strong="H3820"\w* \w from|strong="H6440"\w* \w me|strong="H6440"\w* \w and|strong="H3478"\w* \w takes|strong="H7760"\w* \w his|strong="H7760"\w* \w idols|strong="H1544"\w* \w into|strong="H5927"\w* \w his|strong="H7760"\w* \w heart|strong="H3820"\w*, \w and|strong="H3478"\w* \w puts|strong="H7760"\w* \w the|strong="H6440"\w* \w stumbling|strong="H4383"\w* \w block|strong="H4383"\w* \w of|strong="H1004"\w* \w his|strong="H7760"\w* \w iniquity|strong="H5771"\w* \w before|strong="H6440"\w* \w his|strong="H7760"\w* \w face|strong="H6440"\w*, \w and|strong="H3478"\w* \w comes|strong="H5927"\w* \w to|strong="H3478"\w* \w the|strong="H6440"\w* \w prophet|strong="H5030"\w* \w to|strong="H3478"\w* \w inquire|strong="H1875"\w* \w for|strong="H3588"\w* \w himself|strong="H3820"\w* \w of|strong="H1004"\w* \w me|strong="H6440"\w*, \w I|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w answer|strong="H6030"\w* \w him|strong="H6440"\w* \w by|strong="H3068"\w* \w myself|strong="H3820"\w*. +\v 8 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w set|strong="H5414"\w* \w my|strong="H5414"\w* \w face|strong="H6440"\w* \w against|strong="H6440"\w* \w that|strong="H3588"\w* \w man|strong="H6440"\w* \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w make|strong="H5414"\w* \w him|strong="H5414"\w* \w an|strong="H5414"\w* \w astonishment|strong="H8074"\w*, \w for|strong="H3588"\w* \w a|strong="H3068"\w* sign \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w proverb|strong="H4912"\w*, \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w cut|strong="H3772"\w* \w him|strong="H5414"\w* \w off|strong="H3772"\w* \w from|strong="H6440"\w* \w among|strong="H8432"\w* \w my|strong="H5414"\w* \w people|strong="H5971"\w*. \w Then|strong="H5414"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 9 “‘“\w If|strong="H3588"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w* \w is|strong="H3068"\w* \w deceived|strong="H6601"\w* \w and|strong="H3478"\w* \w speaks|strong="H1696"\w* \w a|strong="H3068"\w* \w word|strong="H1697"\w*, \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w deceived|strong="H6601"\w* \w that|strong="H3588"\w* \w prophet|strong="H5030"\w*, \w and|strong="H3478"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w stretch|strong="H5186"\w* \w out|strong="H5186"\w* \w my|strong="H3068"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H3478"\w* \w will|strong="H3068"\w* \w destroy|strong="H8045"\w* \w him|strong="H5921"\w* \w from|strong="H5921"\w* \w among|strong="H8432"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*. +\v 10 \w They|strong="H5375"\w* \w will|strong="H1961"\w* \w bear|strong="H5375"\w* \w their|strong="H5375"\w* \w iniquity|strong="H5771"\w*. \w The|strong="H5375"\w* \w iniquity|strong="H5771"\w* \w of|strong="H5030"\w* \w the|strong="H5375"\w* \w prophet|strong="H5030"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* even \w as|strong="H1961"\w* \w the|strong="H5375"\w* \w iniquity|strong="H5771"\w* \w of|strong="H5030"\w* \w him|strong="H5375"\w* \w who|strong="H5030"\w* \w seeks|strong="H1875"\w* \w him|strong="H5375"\w*, +\v 11 \w that|strong="H5971"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w may|strong="H1961"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w go|strong="H5971"\w* \w astray|strong="H8582"\w* \w from|strong="H3478"\w* \w me|strong="H1961"\w*, \w neither|strong="H3808"\w* \w defile|strong="H2930"\w* themselves \w any|strong="H3605"\w* \w more|strong="H5750"\w* \w with|strong="H1004"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w transgressions|strong="H6588"\w*; \w but|strong="H3808"\w* \w that|strong="H5971"\w* \w they|strong="H3808"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w*, \w and|strong="H3478"\w* \w I|strong="H3808"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w their|strong="H3605"\w* \w God|strong="H3069"\w*,” \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*.’” +\p +\v 12 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 13 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w when|strong="H3588"\w* \w a|strong="H3068"\w* land \w sins|strong="H2398"\w* \w against|strong="H5921"\w* \w me|strong="H7971"\w* \w by|strong="H3027"\w* \w committing|strong="H4603"\w* \w a|strong="H3068"\w* \w trespass|strong="H4604"\w*, \w and|strong="H1121"\w* \w I|strong="H3588"\w* \w stretch|strong="H5186"\w* \w out|strong="H5186"\w* \w my|strong="H5921"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*, \w and|strong="H1121"\w* \w break|strong="H7665"\w* \w the|strong="H5921"\w* \w staff|strong="H4294"\w* \w of|strong="H1121"\w* \w its|strong="H5921"\w* \w bread|strong="H3899"\w* \w and|strong="H1121"\w* \w send|strong="H7971"\w* \w famine|strong="H7458"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*, \w and|strong="H1121"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H4480"\w* \w it|strong="H5921"\w* \w man|strong="H1121"\w* \w and|strong="H1121"\w* animal— +\v 14 though \w these|strong="H1992"\w* \w three|strong="H7969"\w* \w men|strong="H1992"\w*, \w Noah|strong="H5146"\w*, \w Daniel|strong="H1840"\w*, \w and|strong="H6666"\w* Job, \w were|strong="H1961"\w* \w in|strong="H8432"\w* \w it|strong="H8432"\w*, \w they|strong="H1992"\w* \w would|strong="H5315"\w* \w deliver|strong="H5337"\w* \w only|strong="H5337"\w* \w their|strong="H1992"\w* \w own|strong="H1961"\w* \w souls|strong="H5315"\w* \w by|strong="H1961"\w* \w their|strong="H1992"\w* \w righteousness|strong="H6666"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 15 “\w If|strong="H3863"\w* \w I|strong="H6440"\w* \w cause|strong="H1961"\w* \w evil|strong="H7451"\w* \w animals|strong="H2416"\w* \w to|strong="H1961"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*, \w and|strong="H6440"\w* \w they|strong="H6440"\w* ravage \w it|strong="H6440"\w* \w and|strong="H6440"\w* \w it|strong="H6440"\w* \w is|strong="H1961"\w* \w made|strong="H1961"\w* \w desolate|strong="H8077"\w*, \w so|strong="H1961"\w* \w that|strong="H2416"\w* \w no|strong="H1097"\w* \w man|strong="H7451"\w* \w may|strong="H1961"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w because|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w animals|strong="H2416"\w*— +\v 16 though \w these|strong="H1992"\w* \w three|strong="H7969"\w* \w men|strong="H1121"\w* \w were|strong="H1961"\w* \w in|strong="H8432"\w* \w it|strong="H8432"\w*, \w as|strong="H1961"\w* \w I|strong="H1121"\w* \w live|strong="H2416"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, “\w they|strong="H1992"\w* would \w deliver|strong="H5337"\w* \w neither|strong="H5337"\w* \w sons|strong="H1121"\w* \w nor|strong="H1121"\w* \w daughters|strong="H1323"\w*. \w They|strong="H1992"\w* \w only|strong="H5337"\w* would \w be|strong="H1961"\w* \w delivered|strong="H5337"\w*, \w but|strong="H1961"\w* \w the|strong="H5002"\w* land would \w be|strong="H1961"\w* \w desolate|strong="H8077"\w*. +\p +\v 17 “\w Or|strong="H4480"\w* \w if|strong="H1931"\w* \w I|strong="H5921"\w* \w bring|strong="H5674"\w* \w a|strong="H3068"\w* \w sword|strong="H2719"\w* \w on|strong="H5921"\w* \w that|strong="H1931"\w* land, \w and|strong="H2719"\w* say, ‘\w Sword|strong="H2719"\w*, \w go|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H5921"\w* land, \w so|strong="H4480"\w* \w that|strong="H1931"\w* \w I|strong="H5921"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H4480"\w* \w it|strong="H1931"\w* \w man|strong="H5674"\w* \w and|strong="H2719"\w* animal’— +\v 18 \w though|strong="H3588"\w* \w these|strong="H1992"\w* \w three|strong="H7969"\w* \w men|strong="H1121"\w* \w were|strong="H1121"\w* \w in|strong="H8432"\w* \w it|strong="H3588"\w*, \w as|strong="H3588"\w* \w I|strong="H3588"\w* \w live|strong="H2416"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, “\w they|strong="H1992"\w* would \w deliver|strong="H5337"\w* \w neither|strong="H3808"\w* \w sons|strong="H1121"\w* \w nor|strong="H3808"\w* \w daughters|strong="H1323"\w*, \w but|strong="H3588"\w* \w they|strong="H1992"\w* \w only|strong="H3588"\w* would \w be|strong="H3808"\w* \w delivered|strong="H5337"\w* \w themselves|strong="H1992"\w*. +\p +\v 19 “\w Or|strong="H4480"\w* \w if|strong="H1931"\w* \w I|strong="H5921"\w* \w send|strong="H7971"\w* \w a|strong="H3068"\w* \w pestilence|strong="H1698"\w* \w into|strong="H5921"\w* \w that|strong="H1931"\w* land, \w and|strong="H7971"\w* \w pour|strong="H8210"\w* \w out|strong="H8210"\w* \w my|strong="H5921"\w* \w wrath|strong="H2534"\w* \w on|strong="H5921"\w* \w it|strong="H1931"\w* \w in|strong="H5921"\w* \w blood|strong="H1818"\w*, \w to|strong="H7971"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H4480"\w* \w it|strong="H1931"\w* man \w and|strong="H7971"\w* animal— +\v 20 though \w Noah|strong="H5146"\w*, \w Daniel|strong="H1840"\w*, \w and|strong="H1121"\w* Job, \w were|strong="H1121"\w* \w in|strong="H8432"\w* \w it|strong="H8432"\w*, \w as|strong="H5315"\w* \w I|strong="H5315"\w* \w live|strong="H2416"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, “\w they|strong="H1992"\w* \w would|strong="H5315"\w* \w deliver|strong="H5337"\w* \w neither|strong="H5337"\w* \w son|strong="H1121"\w* \w nor|strong="H1121"\w* \w daughter|strong="H1323"\w*; \w they|strong="H1992"\w* \w would|strong="H5315"\w* \w deliver|strong="H5337"\w* \w only|strong="H5337"\w* \w their|strong="H1992"\w* \w own|strong="H5315"\w* \w souls|strong="H5315"\w* \w by|strong="H5337"\w* \w their|strong="H1992"\w* \w righteousness|strong="H6666"\w*.” +\p +\v 21 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w How|strong="H3588"\w* much \w more|strong="H4480"\w* \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w send|strong="H7971"\w* \w my|strong="H7971"\w* four \w severe|strong="H7451"\w* \w judgments|strong="H8201"\w* \w on|strong="H7971"\w* \w Jerusalem|strong="H3389"\w*—\w the|strong="H3588"\w* \w sword|strong="H2719"\w*, \w the|strong="H3588"\w* \w famine|strong="H7458"\w*, \w the|strong="H3588"\w* \w evil|strong="H7451"\w* \w animals|strong="H2416"\w*, \w and|strong="H7971"\w* \w the|strong="H3588"\w* \w pestilence|strong="H1698"\w*—\w to|strong="H7971"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H4480"\w* \w it|strong="H3588"\w* \w man|strong="H7451"\w* \w and|strong="H7971"\w* \w animal|strong="H2416"\w*! +\v 22 \w Yet|strong="H3605"\w*, \w behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w will|strong="H1121"\w* \w be|strong="H1121"\w* \w left|strong="H3498"\w* \w a|strong="H3068"\w* \w remnant|strong="H6413"\w* \w in|strong="H5921"\w* \w it|strong="H5921"\w* \w that|strong="H7200"\w* \w will|strong="H1121"\w* \w be|strong="H1121"\w* \w carried|strong="H3318"\w* \w out|strong="H3318"\w*, \w both|strong="H3605"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w daughters|strong="H1323"\w*. \w Behold|strong="H2009"\w*, \w they|strong="H5921"\w* \w will|strong="H1121"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w to|strong="H3318"\w* \w you|strong="H3605"\w*, \w and|strong="H1121"\w* \w you|strong="H3605"\w* \w will|strong="H1121"\w* \w see|strong="H7200"\w* \w their|strong="H3605"\w* \w way|strong="H1870"\w* \w and|strong="H1121"\w* \w their|strong="H3605"\w* \w doings|strong="H5949"\w*. \w Then|strong="H3318"\w* \w you|strong="H3605"\w* \w will|strong="H1121"\w* \w be|strong="H1121"\w* \w comforted|strong="H5162"\w* \w concerning|strong="H5921"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w* \w that|strong="H7200"\w* \w I|strong="H2005"\w* \w have|strong="H1121"\w* \w brought|strong="H3318"\w* \w on|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, \w even|strong="H5921"\w* \w concerning|strong="H5921"\w* \w all|strong="H3605"\w* \w that|strong="H7200"\w* \w I|strong="H2005"\w* \w have|strong="H1121"\w* \w brought|strong="H3318"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 23 \w They|strong="H3588"\w* \w will|strong="H3808"\w* \w comfort|strong="H5162"\w* \w you|strong="H3588"\w*, \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w see|strong="H7200"\w* \w their|strong="H3605"\w* \w way|strong="H1870"\w* \w and|strong="H1870"\w* \w their|strong="H3605"\w* \w doings|strong="H5949"\w*; \w then|strong="H6213"\w* \w you|strong="H3588"\w* \w will|strong="H3808"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3045"\w* \w not|strong="H3808"\w* \w done|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3045"\w* \w done|strong="H6213"\w* \w in|strong="H6213"\w* \w it|strong="H3588"\w* \w without|strong="H3808"\w* \w cause|strong="H2600"\w*,” \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\c 15 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w what|strong="H4100"\w* \w is|strong="H4100"\w* \w the|strong="H3605"\w* \w vine|strong="H1612"\w* \w tree|strong="H6086"\w* \w more|strong="H1961"\w* \w than|strong="H3605"\w* \w any|strong="H3605"\w* \w tree|strong="H6086"\w*, \w the|strong="H3605"\w* \w vine|strong="H1612"\w* \w branch|strong="H2156"\w* \w which|strong="H4100"\w* \w is|strong="H4100"\w* among \w the|strong="H3605"\w* \w trees|strong="H6086"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w forest|strong="H3293"\w*? +\v 3 \w Will|strong="H6213"\w* \w wood|strong="H6086"\w* \w be|strong="H6086"\w* \w taken|strong="H3947"\w* \w of|strong="H3627"\w* \w it|strong="H5921"\w* \w to|strong="H5921"\w* \w make|strong="H6213"\w* \w anything|strong="H3605"\w*? \w Will|strong="H6213"\w* \w men|strong="H6213"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w pin|strong="H3489"\w* \w of|strong="H3627"\w* \w it|strong="H5921"\w* \w to|strong="H5921"\w* \w hang|strong="H8518"\w* \w any|strong="H3605"\w* \w vessel|strong="H3627"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*? +\v 4 \w Behold|strong="H2009"\w*, \w it|strong="H5414"\w* \w is|strong="H2009"\w* \w cast|strong="H5414"\w* \w into|strong="H8432"\w* \w the|strong="H5414"\w* fire \w for|strong="H5414"\w* fuel; \w the|strong="H5414"\w* fire \w has|strong="H2009"\w* devoured \w both|strong="H8147"\w* \w its|strong="H5414"\w* \w ends|strong="H7098"\w*, \w and|strong="H8147"\w* \w the|strong="H5414"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w it|strong="H5414"\w* \w is|strong="H2009"\w* \w burned|strong="H2787"\w*. \w Is|strong="H2009"\w* \w it|strong="H5414"\w* \w profitable|strong="H6743"\w* \w for|strong="H5414"\w* \w any|strong="H5414"\w* \w work|strong="H4399"\w*? +\v 5 \w Behold|strong="H2009"\w*, \w when|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H1961"\w* \w whole|strong="H8549"\w*, \w it|strong="H3588"\w* \w was|strong="H1961"\w* suitable \w for|strong="H3588"\w* \w no|strong="H3808"\w* \w work|strong="H4399"\w*. \w How|strong="H3588"\w* \w much|strong="H6213"\w* \w less|strong="H3588"\w*, \w when|strong="H3588"\w* \w the|strong="H3588"\w* fire \w has|strong="H1961"\w* devoured \w it|strong="H3588"\w*, \w and|strong="H6213"\w* \w it|strong="H3588"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w burned|strong="H2787"\w*, \w will|strong="H1961"\w* \w it|strong="H3588"\w* \w yet|strong="H5750"\w* \w be|strong="H1961"\w* suitable \w for|strong="H3588"\w* \w any|strong="H5750"\w* \w work|strong="H4399"\w*?” +\p +\v 6 \w Therefore|strong="H3651"\w* \w the|strong="H5414"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w As|strong="H3651"\w* \w the|strong="H5414"\w* \w vine|strong="H1612"\w* \w wood|strong="H6086"\w* \w among|strong="H3427"\w* \w the|strong="H5414"\w* \w trees|strong="H6086"\w* \w of|strong="H3427"\w* \w the|strong="H5414"\w* \w forest|strong="H3293"\w*, \w which|strong="H6086"\w* \w I|strong="H5414"\w* \w have|strong="H5414"\w* \w given|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* fire \w for|strong="H3427"\w* fuel, \w so|strong="H3651"\w* \w I|strong="H5414"\w* \w will|strong="H3389"\w* \w give|strong="H5414"\w* \w the|strong="H5414"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*. +\v 7 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w set|strong="H7760"\w* \w my|strong="H5414"\w* \w face|strong="H6440"\w* \w against|strong="H6440"\w* \w them|strong="H5414"\w*. \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w the|strong="H6440"\w* fire, \w but|strong="H3588"\w* \w the|strong="H6440"\w* fire \w will|strong="H3068"\w* \w still|strong="H3588"\w* devour \w them|strong="H5414"\w*. \w Then|strong="H3318"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w set|strong="H7760"\w* \w my|strong="H5414"\w* \w face|strong="H6440"\w* \w against|strong="H6440"\w* \w them|strong="H5414"\w*. +\v 8 \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w make|strong="H5414"\w* \w the|strong="H5002"\w* land \w desolate|strong="H8077"\w*, \w because|strong="H3282"\w* \w they|strong="H3282"\w* \w have|strong="H5414"\w* \w acted|strong="H4603"\w* \w unfaithfully|strong="H4604"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\c 16 +\p +\v 1 \w Again|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, cause \w Jerusalem|strong="H3389"\w* \w to|strong="H3389"\w* \w know|strong="H3045"\w* \w her|strong="H3045"\w* \w abominations|strong="H8441"\w*; +\v 3 \w and|strong="H3389"\w* say, ‘\w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w to|strong="H3389"\w* \w Jerusalem|strong="H3389"\w*: “\w Your|strong="H3541"\w* \w origin|strong="H4351"\w* \w and|strong="H3389"\w* \w your|strong="H3541"\w* \w birth|strong="H4138"\w* \w is|strong="H3389"\w* \w of|strong="H3069"\w* \w the|strong="H3069"\w* land \w of|strong="H3069"\w* \w the|strong="H3069"\w* \w Canaanite|strong="H3669"\w*. An Amorite \w was|strong="H3389"\w* \w your|strong="H3541"\w* father, \w and|strong="H3389"\w* \w your|strong="H3541"\w* mother \w was|strong="H3389"\w* \w a|strong="H3068"\w* \w Hittite|strong="H2850"\w*. +\v 4 \w As|strong="H3117"\w* \w for|strong="H4325"\w* \w your|strong="H3808"\w* \w birth|strong="H3205"\w*, \w in|strong="H3117"\w* \w the|strong="H3205"\w* \w day|strong="H3117"\w* \w you|strong="H3117"\w* \w were|strong="H4325"\w* \w born|strong="H3205"\w* \w your|strong="H3808"\w* \w navel|strong="H8270"\w* \w was|strong="H3117"\w* \w not|strong="H3808"\w* \w cut|strong="H3772"\w*. \w You|strong="H3117"\w* weren’t \w washed|strong="H7364"\w* \w in|strong="H3117"\w* \w water|strong="H4325"\w* \w to|strong="H3117"\w* cleanse \w you|strong="H3117"\w*. \w You|strong="H3117"\w* weren’t \w salted|strong="H4414"\w* \w at|strong="H3117"\w* \w all|strong="H3772"\w*, \w nor|strong="H3808"\w* \w wrapped|strong="H2853"\w* \w in|strong="H3117"\w* blankets \w at|strong="H3117"\w* \w all|strong="H3772"\w*. +\v 5 \w No|strong="H3808"\w* \w eye|strong="H5869"\w* \w pitied|strong="H2550"\w* \w you|strong="H6440"\w*, \w to|strong="H6213"\w* \w do|strong="H6213"\w* \w any|strong="H6213"\w* \w of|strong="H3117"\w* \w these|strong="H6213"\w* \w things|strong="H3808"\w* \w to|strong="H6213"\w* \w you|strong="H6440"\w*, \w to|strong="H6213"\w* \w have|strong="H5869"\w* \w compassion|strong="H2550"\w* \w on|strong="H5921"\w* \w you|strong="H6440"\w*; \w but|strong="H3808"\w* \w you|strong="H6440"\w* \w were|strong="H3117"\w* \w cast|strong="H7993"\w* \w out|strong="H7993"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w open|strong="H6440"\w* \w field|strong="H7704"\w*, \w because|strong="H5921"\w* \w you|strong="H6440"\w* \w were|strong="H3117"\w* \w abhorred|strong="H1604"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w you|strong="H6440"\w* \w were|strong="H3117"\w* \w born|strong="H3205"\w*. +\p +\v 6 “‘“\w When|strong="H7200"\w* \w I|strong="H5921"\w* \w passed|strong="H5674"\w* \w by|strong="H5921"\w* \w you|strong="H5921"\w*, \w and|strong="H7200"\w* \w saw|strong="H7200"\w* \w you|strong="H5921"\w* wallowing \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w blood|strong="H1818"\w*, \w I|strong="H5921"\w* said \w to|strong="H5921"\w* \w you|strong="H5921"\w*, ‘Though \w you|strong="H5921"\w* \w are|strong="H1818"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w blood|strong="H1818"\w*, \w live|strong="H2421"\w*!’ \w Yes|strong="H7200"\w*, \w I|strong="H5921"\w* said \w to|strong="H5921"\w* \w you|strong="H5921"\w*, ‘Though \w you|strong="H5921"\w* \w are|strong="H1818"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w blood|strong="H1818"\w*, \w live|strong="H2421"\w*!’ +\v 7 \w I|strong="H5414"\w* \w caused|strong="H5414"\w* \w you|strong="H5414"\w* \w to|strong="H5414"\w* \w multiply|strong="H7235"\w* \w as|strong="H5414"\w* \w that|strong="H5414"\w* \w which|strong="H7704"\w* \w grows|strong="H6779"\w* \w in|strong="H5414"\w* \w the|strong="H5414"\w* \w field|strong="H7704"\w*, \w and|strong="H7704"\w* \w you|strong="H5414"\w* \w increased|strong="H7235"\w* \w and|strong="H7704"\w* \w grew|strong="H1431"\w* \w great|strong="H1431"\w*, \w and|strong="H7704"\w* \w you|strong="H5414"\w* attained \w to|strong="H5414"\w* \w excellent|strong="H1431"\w* beauty. \w Your|strong="H5414"\w* \w breasts|strong="H7699"\w* \w were|strong="H7699"\w* \w formed|strong="H3559"\w*, \w and|strong="H7704"\w* \w your|strong="H5414"\w* \w hair|strong="H8181"\w* \w grew|strong="H1431"\w*; \w yet|strong="H5414"\w* \w you|strong="H5414"\w* \w were|strong="H7699"\w* \w naked|strong="H5903"\w* \w and|strong="H7704"\w* \w bare|strong="H6181"\w*. +\p +\v 8 “‘“\w Now|strong="H1961"\w* \w when|strong="H1961"\w* \w I|strong="H2009"\w* \w passed|strong="H5674"\w* \w by|strong="H5921"\w* \w you|strong="H5921"\w*, \w and|strong="H7200"\w* \w looked|strong="H7200"\w* \w at|strong="H5921"\w* \w you|strong="H5921"\w*, \w behold|strong="H2009"\w*, \w your|strong="H5921"\w* \w time|strong="H6256"\w* \w was|strong="H1961"\w* \w the|strong="H5002"\w* \w time|strong="H6256"\w* \w of|strong="H5921"\w* \w love|strong="H1730"\w*; \w and|strong="H7200"\w* \w I|strong="H2009"\w* \w spread|strong="H6566"\w* \w my|strong="H7200"\w* \w garment|strong="H3671"\w* \w over|strong="H5921"\w* \w you|strong="H5921"\w* \w and|strong="H7200"\w* \w covered|strong="H3680"\w* \w your|strong="H5921"\w* \w nakedness|strong="H6172"\w*. \w Yes|strong="H2009"\w*, \w I|strong="H2009"\w* pledged myself \w to|strong="H1961"\w* \w you|strong="H5921"\w* \w and|strong="H7200"\w* entered \w into|strong="H5921"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w you|strong="H5921"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, “\w and|strong="H7200"\w* \w you|strong="H5921"\w* \w became|strong="H1961"\w* \w mine|strong="H5674"\w*. +\p +\v 9 “‘“Then \w I|strong="H5921"\w* \w washed|strong="H7364"\w* \w you|strong="H5921"\w* \w with|strong="H5921"\w* \w water|strong="H4325"\w*. Yes, \w I|strong="H5921"\w* thoroughly \w washed|strong="H7364"\w* \w away|strong="H7857"\w* \w your|strong="H5921"\w* \w blood|strong="H1818"\w* \w from|strong="H5921"\w* \w you|strong="H5921"\w*, \w and|strong="H1818"\w* \w I|strong="H5921"\w* \w anointed|strong="H5480"\w* \w you|strong="H5921"\w* \w with|strong="H5921"\w* \w oil|strong="H8081"\w*. +\v 10 I \w clothed|strong="H3847"\w* \w you|strong="H3847"\w* also \w with|strong="H3847"\w* \w embroidered|strong="H7553"\w* \w work|strong="H7553"\w* \w and|strong="H8336"\w* \w put|strong="H3847"\w* leather \w sandals|strong="H5274"\w* \w on|strong="H3847"\w* \w you|strong="H3847"\w*. I \w dressed|strong="H3847"\w* \w you|strong="H3847"\w* \w with|strong="H3847"\w* \w fine|strong="H8336"\w* \w linen|strong="H8336"\w* \w and|strong="H8336"\w* \w covered|strong="H3680"\w* \w you|strong="H3847"\w* \w with|strong="H3847"\w* \w silk|strong="H4897"\w*. +\v 11 \w I|strong="H5414"\w* \w decked|strong="H5710"\w* \w you|strong="H5414"\w* \w with|strong="H5921"\w* \w ornaments|strong="H5716"\w*, \w put|strong="H5414"\w* \w bracelets|strong="H6781"\w* \w on|strong="H5921"\w* \w your|strong="H5414"\w* \w hands|strong="H3027"\w*, \w and|strong="H3027"\w* \w put|strong="H5414"\w* \w a|strong="H3068"\w* \w chain|strong="H7242"\w* \w on|strong="H5921"\w* \w your|strong="H5414"\w* \w neck|strong="H1627"\w*. +\v 12 \w I|strong="H5414"\w* \w put|strong="H5414"\w* \w a|strong="H3068"\w* \w ring|strong="H5141"\w* \w on|strong="H5921"\w* \w your|strong="H5414"\w* nose, \w earrings|strong="H5141"\w* \w in|strong="H5921"\w* \w your|strong="H5414"\w* ears, \w and|strong="H7218"\w* \w a|strong="H3068"\w* \w beautiful|strong="H8597"\w* \w crown|strong="H5850"\w* \w on|strong="H5921"\w* \w your|strong="H5414"\w* \w head|strong="H7218"\w*. +\v 13 Thus \w you|strong="H8081"\w* \w were|strong="H3701"\w* \w decked|strong="H5710"\w* \w with|strong="H5710"\w* \w gold|strong="H2091"\w* \w and|strong="H3701"\w* \w silver|strong="H3701"\w*. \w Your|strong="H6743"\w* clothing \w was|strong="H3966"\w* \w of|strong="H2091"\w* \w fine|strong="H5560"\w* \w linen|strong="H8336"\w*, \w silk|strong="H4897"\w*, \w and|strong="H3701"\w* \w embroidered|strong="H7553"\w* \w work|strong="H7553"\w*. \w You|strong="H8081"\w* ate \w fine|strong="H5560"\w* \w flour|strong="H5560"\w*, \w honey|strong="H1706"\w*, \w and|strong="H3701"\w* \w oil|strong="H8081"\w*. \w You|strong="H8081"\w* \w were|strong="H3701"\w* \w exceedingly|strong="H3966"\w* \w beautiful|strong="H3302"\w*, \w and|strong="H3701"\w* \w you|strong="H8081"\w* \w prospered|strong="H6743"\w* \w to|strong="H3701"\w* \w royal|strong="H4410"\w* estate. +\v 14 \w Your|strong="H5921"\w* \w renown|strong="H8034"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w among|strong="H5921"\w* \w the|strong="H5002"\w* \w nations|strong="H1471"\w* \w for|strong="H3588"\w* \w your|strong="H5921"\w* \w beauty|strong="H3308"\w*; \w for|strong="H3588"\w* \w it|strong="H7760"\w* \w was|strong="H8034"\w* \w perfect|strong="H3632"\w*, \w through|strong="H5921"\w* \w my|strong="H7760"\w* \w majesty|strong="H1926"\w* \w which|strong="H1931"\w* \w I|strong="H3588"\w* \w had|strong="H3588"\w* \w put|strong="H7760"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 15 “‘“\w But|strong="H1961"\w* \w you|strong="H3605"\w* trusted \w in|strong="H5921"\w* \w your|strong="H3605"\w* \w beauty|strong="H3308"\w*, \w and|strong="H5674"\w* \w played|strong="H2181"\w* \w the|strong="H3605"\w* \w prostitute|strong="H2181"\w* \w because|strong="H5921"\w* \w of|strong="H8034"\w* \w your|strong="H3605"\w* \w renown|strong="H8034"\w*, \w and|strong="H5674"\w* \w poured|strong="H8210"\w* \w out|strong="H8210"\w* \w your|strong="H3605"\w* prostitution \w on|strong="H5921"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w passed|strong="H5674"\w* \w by|strong="H5921"\w*. \w It|strong="H5921"\w* \w was|strong="H8034"\w* \w his|strong="H3605"\w*. +\v 16 \w You|strong="H5921"\w* \w took|strong="H3947"\w* some \w of|strong="H5921"\w* \w your|strong="H3947"\w* garments, \w and|strong="H6213"\w* \w made|strong="H6213"\w* \w for|strong="H5921"\w* \w yourselves|strong="H5921"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* decked \w with|strong="H6213"\w* \w various|strong="H2921"\w* \w colors|strong="H2921"\w*, \w and|strong="H6213"\w* \w played|strong="H2181"\w* \w the|strong="H5921"\w* \w prostitute|strong="H2181"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*. \w This|strong="H6213"\w* shouldn’t \w happen|strong="H1961"\w*, \w neither|strong="H3808"\w* \w shall|strong="H3808"\w* \w it|strong="H5921"\w* \w be|strong="H1961"\w*. +\v 17 \w You|strong="H5414"\w* \w also|strong="H6213"\w* \w took|strong="H3947"\w* \w your|strong="H5414"\w* \w beautiful|strong="H8597"\w* \w jewels|strong="H3627"\w* \w of|strong="H3627"\w* \w my|strong="H5414"\w* \w gold|strong="H2091"\w* \w and|strong="H3701"\w* \w of|strong="H3627"\w* \w my|strong="H5414"\w* \w silver|strong="H3701"\w*, \w which|strong="H2091"\w* \w I|strong="H5414"\w* \w had|strong="H5414"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w*, \w and|strong="H3701"\w* \w made|strong="H6213"\w* \w for|strong="H6213"\w* \w yourself|strong="H6213"\w* \w images|strong="H6754"\w* \w of|strong="H3627"\w* \w men|strong="H2145"\w*, \w and|strong="H3701"\w* \w played|strong="H2181"\w* \w the|strong="H5414"\w* \w prostitute|strong="H2181"\w* \w with|strong="H6213"\w* \w them|strong="H5414"\w*. +\v 18 \w You|strong="H5414"\w* \w took|strong="H3947"\w* \w your|strong="H5414"\w* \w embroidered|strong="H7553"\w* garments, \w covered|strong="H3680"\w* \w them|strong="H5414"\w*, \w and|strong="H6440"\w* \w set|strong="H5414"\w* \w my|strong="H5414"\w* \w oil|strong="H8081"\w* \w and|strong="H6440"\w* \w my|strong="H5414"\w* \w incense|strong="H7004"\w* \w before|strong="H6440"\w* \w them|strong="H5414"\w*. +\v 19 \w My|strong="H5414"\w* \w bread|strong="H3899"\w* \w also|strong="H3899"\w* \w which|strong="H3069"\w* \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w you|strong="H5414"\w*, \w fine|strong="H5560"\w* \w flour|strong="H5560"\w*, \w oil|strong="H8081"\w*, \w and|strong="H3899"\w* \w honey|strong="H1706"\w*, \w with|strong="H6440"\w* \w which|strong="H3069"\w* \w I|strong="H5414"\w* fed \w you|strong="H5414"\w*, \w you|strong="H5414"\w* even \w set|strong="H5414"\w* \w it|strong="H5414"\w* \w before|strong="H6440"\w* \w them|strong="H5414"\w* \w for|strong="H6440"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w*; \w and|strong="H3899"\w* \w so|strong="H1961"\w* \w it|strong="H5414"\w* \w was|strong="H1961"\w*,” \w says|strong="H5002"\w* \w the|strong="H6440"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 20 “‘“Moreover \w you|strong="H3947"\w* \w have|strong="H1121"\w* \w taken|strong="H3947"\w* \w your|strong="H3947"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w your|strong="H3947"\w* \w daughters|strong="H1323"\w*, whom \w you|strong="H3947"\w* \w have|strong="H1121"\w* \w borne|strong="H3205"\w* \w to|strong="H3205"\w* \w me|strong="H3947"\w*, \w and|strong="H1121"\w* \w you|strong="H3947"\w* \w have|strong="H1121"\w* \w sacrificed|strong="H2076"\w* \w these|strong="H3947"\w* \w to|strong="H3205"\w* \w them|strong="H3947"\w* \w to|strong="H3205"\w* \w be|strong="H1121"\w* devoured. \w Was|strong="H1121"\w* \w your|strong="H3947"\w* prostitution \w a|strong="H3068"\w* \w small|strong="H4592"\w* \w matter|strong="H4592"\w*, +\v 21 \w that|strong="H5414"\w* \w you|strong="H5414"\w* \w have|strong="H1121"\w* \w slain|strong="H7819"\w* \w my|strong="H5414"\w* \w children|strong="H1121"\w* \w and|strong="H1121"\w* \w delivered|strong="H5414"\w* \w them|strong="H5414"\w* \w up|strong="H5414"\w*, \w in|strong="H1121"\w* causing \w them|strong="H5414"\w* \w to|strong="H5414"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H5414"\w* fire \w to|strong="H5414"\w* \w them|strong="H5414"\w*? +\v 22 \w In|strong="H3117"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w abominations|strong="H8441"\w* \w and|strong="H3117"\w* \w your|strong="H3605"\w* prostitution \w you|strong="H3605"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* \w remembered|strong="H2142"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H3605"\w* \w youth|strong="H5271"\w*, \w when|strong="H1961"\w* \w you|strong="H3605"\w* \w were|strong="H1961"\w* \w naked|strong="H5903"\w* \w and|strong="H3117"\w* \w bare|strong="H6181"\w*, \w and|strong="H3117"\w* \w were|strong="H1961"\w* wallowing \w in|strong="H3117"\w* \w your|strong="H3605"\w* \w blood|strong="H1818"\w*. +\p +\v 23 “‘“\w It|strong="H1961"\w* \w has|strong="H1961"\w* \w happened|strong="H1961"\w* \w after|strong="H1961"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w wickedness|strong="H7451"\w*—woe, woe \w to|strong="H1961"\w* \w you|strong="H3605"\w*!” \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*— +\v 24 “\w that|strong="H3605"\w* \w you|strong="H3605"\w* \w have|strong="H1129"\w* \w built|strong="H1129"\w* \w for|strong="H6213"\w* \w yourselves|strong="H3605"\w* \w a|strong="H3068"\w* vaulted \w place|strong="H7413"\w*, \w and|strong="H6213"\w* \w have|strong="H1129"\w* \w made|strong="H6213"\w* \w yourselves|strong="H3605"\w* \w a|strong="H3068"\w* lofty \w place|strong="H7413"\w* \w in|strong="H6213"\w* \w every|strong="H3605"\w* \w street|strong="H7339"\w*. +\v 25 \w You|strong="H3605"\w* \w have|strong="H1129"\w* \w built|strong="H1129"\w* \w your|strong="H3605"\w* lofty \w place|strong="H7413"\w* \w at|strong="H7218"\w* \w the|strong="H3605"\w* \w head|strong="H7218"\w* \w of|strong="H7218"\w* \w every|strong="H3605"\w* \w way|strong="H1870"\w*, \w and|strong="H7218"\w* \w have|strong="H1129"\w* \w made|strong="H1129"\w* \w your|strong="H3605"\w* \w beauty|strong="H3308"\w* \w an|strong="H1129"\w* abomination, \w and|strong="H7218"\w* \w have|strong="H1129"\w* \w opened|strong="H6589"\w* \w your|strong="H3605"\w* \w feet|strong="H7272"\w* \w to|strong="H1870"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w passed|strong="H5674"\w* \w by|strong="H5674"\w*, \w and|strong="H7218"\w* \w multiplied|strong="H7235"\w* \w your|strong="H3605"\w* prostitution. +\v 26 \w You|strong="H1320"\w* \w have|strong="H1121"\w* \w also|strong="H1121"\w* committed sexual immorality \w with|strong="H4714"\w* \w the|strong="H2181"\w* \w Egyptians|strong="H4714"\w*, \w your|strong="H7235"\w* \w neighbors|strong="H7934"\w*, \w great|strong="H7235"\w* \w of|strong="H1121"\w* \w flesh|strong="H1320"\w*; \w and|strong="H1121"\w* \w have|strong="H1121"\w* \w multiplied|strong="H7235"\w* \w your|strong="H7235"\w* prostitution, \w to|strong="H4714"\w* \w provoke|strong="H3707"\w* \w me|strong="H3707"\w* \w to|strong="H4714"\w* \w anger|strong="H3707"\w*. +\v 27 \w See|strong="H2009"\w* \w therefore|strong="H5921"\w*, \w I|strong="H5414"\w* \w have|strong="H6430"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w* \w over|strong="H5921"\w* \w you|strong="H5414"\w*, \w and|strong="H3027"\w* \w have|strong="H6430"\w* \w diminished|strong="H1639"\w* \w your|strong="H5414"\w* \w portion|strong="H2706"\w*, \w and|strong="H3027"\w* \w delivered|strong="H5414"\w* \w you|strong="H5414"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w will|strong="H5315"\w* \w of|strong="H1323"\w* \w those|strong="H5921"\w* \w who|strong="H5315"\w* \w hate|strong="H8130"\w* \w you|strong="H5414"\w*, \w the|strong="H5921"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w the|strong="H5921"\w* \w Philistines|strong="H6430"\w*, \w who|strong="H5315"\w* \w are|strong="H3027"\w* \w ashamed|strong="H3637"\w* \w of|strong="H1323"\w* \w your|strong="H5414"\w* \w lewd|strong="H2154"\w* \w way|strong="H1870"\w*. +\v 28 \w You|strong="H3808"\w* \w have|strong="H1121"\w* \w played|strong="H2181"\w* \w the|strong="H2181"\w* \w prostitute|strong="H2181"\w* \w also|strong="H1571"\w* \w with|strong="H7646"\w* \w the|strong="H2181"\w* \w Assyrians|strong="H1121"\w*, \w because|strong="H1115"\w* \w you|strong="H3808"\w* \w were|strong="H1121"\w* insatiable; \w yes|strong="H1571"\w*, \w you|strong="H3808"\w* \w have|strong="H1121"\w* \w played|strong="H2181"\w* \w the|strong="H2181"\w* \w prostitute|strong="H2181"\w* \w with|strong="H7646"\w* \w them|strong="H1121"\w*, \w and|strong="H1121"\w* \w yet|strong="H1571"\w* \w you|strong="H3808"\w* weren’t \w satisfied|strong="H7646"\w*. +\v 29 \w You|strong="H3808"\w* \w have|strong="H1571"\w* \w moreover|strong="H1571"\w* \w multiplied|strong="H7235"\w* \w your|strong="H7235"\w* prostitution \w to|strong="H3808"\w* \w the|strong="H1571"\w* land \w of|strong="H7646"\w* \w merchants|strong="H3667"\w*, \w to|strong="H3808"\w* \w Chaldea|strong="H3778"\w*; \w and|strong="H1571"\w* \w yet|strong="H1571"\w* \w you|strong="H3808"\w* weren’t \w satisfied|strong="H7646"\w* \w with|strong="H7646"\w* \w this|strong="H2063"\w*. +\p +\v 30 “‘“\w How|strong="H4100"\w* \w weak|strong="H3605"\w* \w is|strong="H4100"\w* \w your|strong="H3605"\w* \w heart|strong="H3826"\w*,” \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, “since \w you|strong="H3605"\w* \w do|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* \w things|strong="H3605"\w*, \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H4639"\w* \w an|strong="H6213"\w* impudent \w prostitute|strong="H2181"\w*; +\v 31 \w in|strong="H6213"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w build|strong="H1129"\w* \w your|strong="H3605"\w* vaulted \w place|strong="H1961"\w* \w at|strong="H6213"\w* \w the|strong="H3605"\w* \w head|strong="H7218"\w* \w of|strong="H7218"\w* \w every|strong="H3605"\w* \w way|strong="H1870"\w*, \w and|strong="H7218"\w* \w make|strong="H6213"\w* \w your|strong="H3605"\w* lofty \w place|strong="H1961"\w* \w in|strong="H6213"\w* \w every|strong="H3605"\w* \w street|strong="H7339"\w*, \w and|strong="H7218"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* \w been|strong="H1961"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w prostitute|strong="H2181"\w*, \w in|strong="H6213"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* scorn pay. +\p +\v 32 “‘“\w Adulterous|strong="H5003"\w* wife, \w who|strong="H2114"\w* \w takes|strong="H3947"\w* \w strangers|strong="H2114"\w* \w instead|strong="H8478"\w* \w of|strong="H8478"\w* \w her|strong="H3947"\w* husband! +\v 33 People \w give|strong="H5414"\w* \w gifts|strong="H5083"\w* \w to|strong="H5414"\w* \w all|strong="H3605"\w* \w prostitutes|strong="H2181"\w*; \w but|strong="H3605"\w* \w you|strong="H5414"\w* \w give|strong="H5414"\w* \w your|strong="H3605"\w* \w gifts|strong="H5083"\w* \w to|strong="H5414"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* lovers, \w and|strong="H3605"\w* \w bribe|strong="H7809"\w* \w them|strong="H5414"\w*, \w that|strong="H3605"\w* \w they|strong="H3605"\w* \w may|strong="H5414"\w* come \w to|strong="H5414"\w* \w you|strong="H5414"\w* \w on|strong="H3605"\w* \w every|strong="H3605"\w* \w side|strong="H5439"\w* \w for|strong="H3605"\w* \w your|strong="H3605"\w* prostitution. +\v 34 \w You|strong="H5414"\w* \w are|strong="H1961"\w* \w different|strong="H2016"\w* \w from|strong="H4480"\w* other women \w in|strong="H5414"\w* \w your|strong="H5414"\w* prostitution, \w in|strong="H5414"\w* \w that|strong="H5414"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* follows \w you|strong="H5414"\w* \w to|strong="H1961"\w* \w play|strong="H2181"\w* \w the|strong="H5414"\w* \w prostitute|strong="H2181"\w*; \w and|strong="H1961"\w* whereas \w you|strong="H5414"\w* \w give|strong="H5414"\w* hire, \w and|strong="H1961"\w* \w no|strong="H3808"\w* hire \w is|strong="H1961"\w* \w given|strong="H5414"\w* \w to|strong="H1961"\w* \w you|strong="H5414"\w*, \w therefore|strong="H1961"\w* \w you|strong="H5414"\w* \w are|strong="H1961"\w* \w different|strong="H2016"\w*.”’ +\p +\v 35 “\w Therefore|strong="H3651"\w*, \w prostitute|strong="H2181"\w*, \w hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*: +\v 36 ‘\w The|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w Because|strong="H5921"\w* \w your|strong="H3605"\w* \w filthiness|strong="H5178"\w* \w was|strong="H1121"\w* \w poured|strong="H8210"\w* \w out|strong="H8210"\w*, \w and|strong="H1121"\w* \w your|strong="H3605"\w* \w nakedness|strong="H6172"\w* \w uncovered|strong="H1540"\w* \w through|strong="H5921"\w* \w your|strong="H3605"\w* prostitution \w with|strong="H5921"\w* \w your|strong="H3605"\w* lovers; \w and|strong="H1121"\w* \w because|strong="H5921"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w idols|strong="H1544"\w* \w of|strong="H1121"\w* \w your|strong="H3605"\w* \w abominations|strong="H8441"\w*, \w and|strong="H1121"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w blood|strong="H1818"\w* \w of|strong="H1121"\w* \w your|strong="H3605"\w* \w children|strong="H1121"\w*, \w that|strong="H3605"\w* \w you|strong="H5414"\w* \w gave|strong="H5414"\w* \w to|strong="H5921"\w* \w them|strong="H5414"\w*; +\v 37 \w therefore|strong="H3651"\w* \w see|strong="H7200"\w*, \w I|strong="H2005"\w* \w will|strong="H3605"\w* \w gather|strong="H6908"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* lovers, \w with|strong="H5921"\w* whom \w you|strong="H3605"\w* \w have|strong="H7200"\w* \w taken|strong="H1540"\w* \w pleasure|strong="H6149"\w*, \w and|strong="H7200"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* whom \w you|strong="H3605"\w* \w have|strong="H7200"\w* loved, \w with|strong="H5921"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* whom \w you|strong="H3605"\w* \w have|strong="H7200"\w* \w hated|strong="H8130"\w*. \w I|strong="H2005"\w* \w will|strong="H3605"\w* \w even|strong="H3651"\w* \w gather|strong="H6908"\w* \w them|strong="H5921"\w* \w against|strong="H5921"\w* \w you|strong="H3605"\w* \w on|strong="H5921"\w* \w every|strong="H3605"\w* \w side|strong="H5439"\w*, \w and|strong="H7200"\w* \w will|strong="H3605"\w* \w uncover|strong="H1540"\w* \w your|strong="H3605"\w* \w nakedness|strong="H6172"\w* \w to|strong="H5921"\w* \w them|strong="H5921"\w*, \w that|strong="H7200"\w* \w they|strong="H3651"\w* may \w see|strong="H7200"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w nakedness|strong="H6172"\w*. +\v 38 \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w judge|strong="H8199"\w* \w you|strong="H5414"\w* \w as|strong="H5414"\w* women who break \w wedlock|strong="H5003"\w* \w and|strong="H4941"\w* \w shed|strong="H8210"\w* \w blood|strong="H1818"\w* \w are|strong="H8199"\w* \w judged|strong="H8199"\w*; \w and|strong="H4941"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w bring|strong="H5414"\w* \w on|strong="H5414"\w* \w you|strong="H5414"\w* \w the|strong="H5414"\w* \w blood|strong="H1818"\w* \w of|strong="H1818"\w* \w wrath|strong="H2534"\w* \w and|strong="H4941"\w* \w jealousy|strong="H7068"\w*. +\v 39 \w I|strong="H5414"\w* \w will|strong="H3027"\w* \w also|strong="H3027"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w into|strong="H3027"\w* \w their|strong="H5414"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w they|strong="H3027"\w* \w will|strong="H3027"\w* throw \w down|strong="H5422"\w* \w your|strong="H5414"\w* vaulted \w place|strong="H5414"\w*, \w and|strong="H3027"\w* \w break|strong="H2040"\w* \w down|strong="H5422"\w* \w your|strong="H5414"\w* lofty \w places|strong="H7413"\w*. \w They|strong="H3027"\w* \w will|strong="H3027"\w* \w strip|strong="H6584"\w* \w you|strong="H5414"\w* \w of|strong="H3027"\w* \w your|strong="H5414"\w* clothes \w and|strong="H3027"\w* \w take|strong="H3947"\w* \w your|strong="H5414"\w* \w beautiful|strong="H8597"\w* \w jewels|strong="H3627"\w*. \w They|strong="H3027"\w* \w will|strong="H3027"\w* \w leave|strong="H3240"\w* \w you|strong="H5414"\w* \w naked|strong="H5903"\w* \w and|strong="H3027"\w* \w bare|strong="H6181"\w*. +\v 40 \w They|strong="H5921"\w* \w will|strong="H2719"\w* also \w bring|strong="H5927"\w* \w up|strong="H5927"\w* \w a|strong="H3068"\w* \w company|strong="H6951"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w*, \w and|strong="H2719"\w* \w they|strong="H5921"\w* \w will|strong="H2719"\w* \w stone|strong="H7275"\w* \w you|strong="H5921"\w* \w with|strong="H5921"\w* stones, \w and|strong="H2719"\w* thrust \w you|strong="H5921"\w* \w through|strong="H5921"\w* \w with|strong="H5921"\w* \w their|strong="H5921"\w* \w swords|strong="H2719"\w*. +\v 41 \w They|strong="H3808"\w* \w will|strong="H1571"\w* \w burn|strong="H8313"\w* \w your|strong="H5414"\w* \w houses|strong="H1004"\w* \w with|strong="H8313"\w* fire, \w and|strong="H1004"\w* \w execute|strong="H6213"\w* \w judgments|strong="H8201"\w* \w on|strong="H1004"\w* \w you|strong="H5414"\w* \w in|strong="H6213"\w* \w the|strong="H5414"\w* \w sight|strong="H5869"\w* \w of|strong="H1004"\w* \w many|strong="H7227"\w* women. \w I|strong="H5414"\w* \w will|strong="H1571"\w* \w cause|strong="H5414"\w* \w you|strong="H5414"\w* \w to|strong="H6213"\w* \w cease|strong="H7673"\w* \w from|strong="H5869"\w* \w playing|strong="H2181"\w* \w the|strong="H5414"\w* \w prostitute|strong="H2181"\w*, \w and|strong="H1004"\w* \w you|strong="H5414"\w* \w will|strong="H1571"\w* \w also|strong="H1571"\w* \w give|strong="H5414"\w* \w no|strong="H3808"\w* hire \w any|strong="H5750"\w* \w more|strong="H5750"\w*. +\v 42 \w So|strong="H4480"\w* \w I|strong="H3808"\w* \w will|strong="H3808"\w* cause \w my|strong="H5493"\w* \w wrath|strong="H2534"\w* \w toward|strong="H4480"\w* \w you|strong="H5117"\w* \w to|strong="H4480"\w* \w rest|strong="H5117"\w*, \w and|strong="H8252"\w* \w my|strong="H5493"\w* \w jealousy|strong="H7068"\w* \w will|strong="H3808"\w* \w depart|strong="H5493"\w* \w from|strong="H4480"\w* \w you|strong="H5117"\w*. \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w quiet|strong="H8252"\w*, \w and|strong="H8252"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w angry|strong="H3707"\w* \w any|strong="H4480"\w* \w more|strong="H4480"\w*. +\p +\v 43 “‘“\w Because|strong="H5921"\w* \w you|strong="H5414"\w* \w have|strong="H1571"\w* \w not|strong="H3808"\w* \w remembered|strong="H2142"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H3605"\w* \w youth|strong="H5271"\w*, \w but|strong="H3808"\w* \w have|strong="H1571"\w* raged \w against|strong="H5921"\w* \w me|strong="H5414"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* \w things|strong="H3605"\w*; \w therefore|strong="H5921"\w*, \w behold|strong="H3808"\w*, \w I|strong="H3117"\w* \w also|strong="H1571"\w* \w will|strong="H1571"\w* \w bring|strong="H5414"\w* \w your|strong="H3605"\w* \w way|strong="H1870"\w* \w on|strong="H5921"\w* \w your|strong="H3605"\w* \w head|strong="H7218"\w*,” \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*: “\w and|strong="H3117"\w* \w you|strong="H5414"\w* \w shall|strong="H3117"\w* \w not|strong="H3808"\w* \w commit|strong="H6213"\w* \w this|strong="H6213"\w* \w lewdness|strong="H2154"\w* \w with|strong="H6213"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w abominations|strong="H8441"\w*. +\p +\v 44 “‘“\w Behold|strong="H2009"\w*, \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* uses \w proverbs|strong="H4911"\w* \w will|strong="H1323"\w* \w use|strong="H4911"\w* \w this|strong="H4911"\w* \w proverb|strong="H4911"\w* \w against|strong="H5921"\w* \w you|strong="H3605"\w*, saying, ‘\w As|strong="H3605"\w* \w is|strong="H2009"\w* \w the|strong="H3605"\w* mother, \w so|strong="H5921"\w* \w is|strong="H2009"\w* \w her|strong="H3605"\w* \w daughter|strong="H1323"\w*.’ +\v 45 You \w are|strong="H1121"\w* \w the|strong="H1121"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w your|strong="H1121"\w* mother, \w who|strong="H1121"\w* loathes \w her|strong="H1602"\w* husband \w and|strong="H1121"\w* \w her|strong="H1602"\w* \w children|strong="H1121"\w*; \w and|strong="H1121"\w* you \w are|strong="H1121"\w* \w the|strong="H1121"\w* sister \w of|strong="H1121"\w* \w your|strong="H1121"\w* sisters, \w who|strong="H1121"\w* \w loathed|strong="H1602"\w* \w their|strong="H1602"\w* husbands \w and|strong="H1121"\w* \w their|strong="H1602"\w* \w children|strong="H1121"\w*. \w Your|strong="H1121"\w* mother \w was|strong="H1121"\w* \w a|strong="H3068"\w* \w Hittite|strong="H2850"\w*, \w and|strong="H1121"\w* \w your|strong="H1121"\w* \w father|strong="H1121"\w* an Amorite. +\v 46 \w Your|strong="H5921"\w* \w elder|strong="H1419"\w* sister \w is|strong="H1931"\w* \w Samaria|strong="H8111"\w*, \w who|strong="H1931"\w* \w dwells|strong="H3427"\w* \w at|strong="H3427"\w* \w your|strong="H5921"\w* \w left|strong="H8040"\w* \w hand|strong="H3225"\w*, \w she|strong="H1931"\w* \w and|strong="H1419"\w* \w her|strong="H5921"\w* \w daughters|strong="H1323"\w*; \w and|strong="H1419"\w* \w your|strong="H5921"\w* \w younger|strong="H6996"\w* sister, \w who|strong="H1931"\w* \w dwells|strong="H3427"\w* \w at|strong="H3427"\w* \w your|strong="H5921"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w*, \w is|strong="H1931"\w* \w Sodom|strong="H5467"\w* \w with|strong="H5921"\w* \w her|strong="H5921"\w* \w daughters|strong="H1323"\w*. +\v 47 \w Yet|strong="H3808"\w* \w you|strong="H3605"\w* \w have|strong="H4592"\w* \w not|strong="H3808"\w* \w walked|strong="H1980"\w* \w in|strong="H1980"\w* \w their|strong="H3605"\w* \w ways|strong="H1870"\w*, \w nor|strong="H3808"\w* \w done|strong="H6213"\w* \w their|strong="H3605"\w* \w abominations|strong="H8441"\w*; \w but|strong="H3808"\w* \w soon|strong="H4592"\w* \w you|strong="H3605"\w* \w were|strong="H1870"\w* \w more|strong="H3808"\w* \w corrupt|strong="H7843"\w* \w than|strong="H3808"\w* \w they|strong="H3808"\w* \w in|strong="H1980"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w ways|strong="H1870"\w*. +\v 48 \w As|strong="H6213"\w* \w I|strong="H6213"\w* \w live|strong="H2416"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, “\w Sodom|strong="H5467"\w* \w your|strong="H6213"\w* sister \w has|strong="H6213"\w* \w not|strong="H6213"\w* \w done|strong="H6213"\w*, \w she|strong="H1931"\w* nor \w her|strong="H1931"\w* \w daughters|strong="H1323"\w*, \w as|strong="H6213"\w* \w you|strong="H6213"\w* \w have|strong="H1323"\w* \w done|strong="H6213"\w*, \w you|strong="H6213"\w* \w and|strong="H6213"\w* \w your|strong="H6213"\w* \w daughters|strong="H1323"\w*. +\p +\v 49 “‘“\w Behold|strong="H2009"\w*, \w this|strong="H2088"\w* \w was|strong="H1961"\w* \w the|strong="H2388"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1323"\w* \w your|strong="H1961"\w* sister \w Sodom|strong="H5467"\w*: \w pride|strong="H1347"\w*, fullness \w of|strong="H1323"\w* \w bread|strong="H3899"\w*, \w and|strong="H3027"\w* prosperous \w ease|strong="H7962"\w* \w was|strong="H1961"\w* \w in|strong="H3899"\w* \w her|strong="H1961"\w* \w and|strong="H3027"\w* \w in|strong="H3899"\w* \w her|strong="H1961"\w* \w daughters|strong="H1323"\w*. \w She|strong="H3808"\w* \w also|strong="H3027"\w* didn’t \w strengthen|strong="H2388"\w* \w the|strong="H2388"\w* \w hand|strong="H3027"\w* \w of|strong="H1323"\w* \w the|strong="H2388"\w* \w poor|strong="H6041"\w* \w and|strong="H3027"\w* \w needy|strong="H6041"\w*. +\v 50 \w They|strong="H6213"\w* \w were|strong="H7200"\w* arrogant \w and|strong="H6440"\w* \w committed|strong="H6213"\w* \w abomination|strong="H8441"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*. \w Therefore|strong="H6213"\w* \w I|strong="H7200"\w* \w took|strong="H5493"\w* \w them|strong="H6440"\w* \w away|strong="H5493"\w* \w when|strong="H7200"\w* \w I|strong="H7200"\w* \w saw|strong="H7200"\w* \w it|strong="H6213"\w*. +\v 51 \w Samaria|strong="H8111"\w* hasn’t \w committed|strong="H6213"\w* \w half|strong="H2677"\w* \w of|strong="H3605"\w* \w your|strong="H3605"\w* \w sins|strong="H2403"\w*; \w but|strong="H3808"\w* \w you|strong="H3605"\w* \w have|strong="H3605"\w* \w multiplied|strong="H7235"\w* \w your|strong="H3605"\w* \w abominations|strong="H8441"\w* \w more|strong="H7235"\w* \w than|strong="H7235"\w* \w they|strong="H3808"\w*, \w and|strong="H6213"\w* \w have|strong="H3605"\w* \w justified|strong="H6663"\w* \w your|strong="H3605"\w* sisters \w by|strong="H3808"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w abominations|strong="H8441"\w* \w which|strong="H2403"\w* \w you|strong="H3605"\w* \w have|strong="H3605"\w* \w done|strong="H6213"\w*. +\v 52 \w You|strong="H4480"\w* \w also|strong="H1571"\w* \w bear|strong="H5375"\w* \w your|strong="H5375"\w* own \w shame|strong="H3639"\w* \w yourself|strong="H5375"\w*, \w in|strong="H1571"\w* \w that|strong="H4480"\w* \w you|strong="H4480"\w* \w have|strong="H1571"\w* \w given|strong="H5375"\w* \w judgment|strong="H6419"\w* \w for|strong="H6419"\w* \w your|strong="H5375"\w* sisters; \w through|strong="H4480"\w* \w your|strong="H5375"\w* \w sins|strong="H2403"\w* \w that|strong="H4480"\w* \w you|strong="H4480"\w* \w have|strong="H1571"\w* \w committed|strong="H8581"\w* \w more|strong="H4480"\w* \w abominable|strong="H8581"\w* \w than|strong="H4480"\w* \w they|strong="H2004"\w*, \w they|strong="H2004"\w* \w are|strong="H2403"\w* \w more|strong="H4480"\w* \w righteous|strong="H6663"\w* \w than|strong="H4480"\w* \w you|strong="H4480"\w*. \w Yes|strong="H1571"\w*, \w be|strong="H1571"\w* \w also|strong="H1571"\w* confounded, \w and|strong="H2403"\w* \w bear|strong="H5375"\w* \w your|strong="H5375"\w* \w shame|strong="H3639"\w*, \w in|strong="H1571"\w* \w that|strong="H4480"\w* \w you|strong="H4480"\w* \w have|strong="H1571"\w* \w justified|strong="H6663"\w* \w your|strong="H5375"\w* sisters. +\p +\v 53 “‘“\w I|strong="H8432"\w* \w will|strong="H1323"\w* \w reverse|strong="H7725"\w* \w their|strong="H7725"\w* \w captivity|strong="H7622"\w*, \w the|strong="H8432"\w* \w captivity|strong="H7622"\w* \w of|strong="H1323"\w* \w Sodom|strong="H5467"\w* \w and|strong="H7725"\w* \w her|strong="H7725"\w* \w daughters|strong="H1323"\w*, \w and|strong="H7725"\w* \w the|strong="H8432"\w* \w captivity|strong="H7622"\w* \w of|strong="H1323"\w* \w Samaria|strong="H8111"\w* \w and|strong="H7725"\w* \w her|strong="H7725"\w* \w daughters|strong="H1323"\w*, \w and|strong="H7725"\w* \w the|strong="H8432"\w* \w captivity|strong="H7622"\w* \w of|strong="H1323"\w* \w your|strong="H7725"\w* \w captives|strong="H7628"\w* \w among|strong="H8432"\w* \w them|strong="H7725"\w*; +\v 54 \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w may|strong="H6213"\w* \w bear|strong="H5375"\w* \w your|strong="H3605"\w* own \w shame|strong="H3639"\w*, \w and|strong="H6213"\w* \w may|strong="H6213"\w* \w be|strong="H5375"\w* \w ashamed|strong="H3637"\w* \w because|strong="H4616"\w* \w of|strong="H3605"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w have|strong="H3605"\w* \w done|strong="H6213"\w*, \w in|strong="H6213"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w are|strong="H6213"\w* \w a|strong="H3068"\w* \w comfort|strong="H5162"\w* \w to|strong="H6213"\w* \w them|strong="H6213"\w*. +\v 55 \w Your|strong="H7725"\w* sisters, \w Sodom|strong="H5467"\w* \w and|strong="H7725"\w* \w her|strong="H7725"\w* \w daughters|strong="H1323"\w*, \w will|strong="H1323"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w their|strong="H7725"\w* \w former|strong="H6927"\w* \w estate|strong="H6927"\w*; \w and|strong="H7725"\w* \w Samaria|strong="H8111"\w* \w and|strong="H7725"\w* \w her|strong="H7725"\w* \w daughters|strong="H1323"\w* \w will|strong="H1323"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w their|strong="H7725"\w* \w former|strong="H6927"\w* \w estate|strong="H6927"\w*; \w and|strong="H7725"\w* \w you|strong="H7725"\w* \w and|strong="H7725"\w* \w your|strong="H7725"\w* \w daughters|strong="H1323"\w* \w will|strong="H1323"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w your|strong="H7725"\w* \w former|strong="H6927"\w* \w estate|strong="H6927"\w*. +\v 56 \w For|strong="H3117"\w* \w your|strong="H1961"\w* sister \w Sodom|strong="H5467"\w* \w was|strong="H1961"\w* \w not|strong="H3808"\w* \w mentioned|strong="H8052"\w* \w by|strong="H3117"\w* \w your|strong="H1961"\w* \w mouth|strong="H6310"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H1961"\w* \w pride|strong="H1347"\w*, +\v 57 \w before|strong="H2962"\w* \w your|strong="H3605"\w* \w wickedness|strong="H7451"\w* \w was|strong="H7451"\w* \w uncovered|strong="H1540"\w*, \w as|strong="H3644"\w* \w at|strong="H6430"\w* \w the|strong="H3605"\w* \w time|strong="H6256"\w* \w of|strong="H1323"\w* \w the|strong="H3605"\w* \w reproach|strong="H2781"\w* \w of|strong="H1323"\w* \w the|strong="H3605"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* Syria, \w and|strong="H6430"\w* \w of|strong="H1323"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H6430"\w* \w around|strong="H5439"\w* \w her|strong="H3605"\w*, \w the|strong="H3605"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w the|strong="H3605"\w* \w Philistines|strong="H6430"\w*, \w who|strong="H3605"\w* \w despise|strong="H7590"\w* \w you|strong="H3605"\w* \w all|strong="H3605"\w* \w around|strong="H5439"\w*. +\v 58 \w You|strong="H5375"\w* \w have|strong="H3068"\w* \w borne|strong="H5375"\w* \w your|strong="H3068"\w* \w lewdness|strong="H2154"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w abominations|strong="H8441"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 59 “‘\w For|strong="H3588"\w* \w the|strong="H3588"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w I|strong="H3588"\w* \w will|strong="H3069"\w* \w also|strong="H3541"\w* \w deal|strong="H6213"\w* \w with|strong="H1285"\w* \w you|strong="H3588"\w* \w as|strong="H6213"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* \w done|strong="H6213"\w*, \w who|strong="H3588"\w* \w have|strong="H3588"\w* despised \w the|strong="H3588"\w* oath \w in|strong="H6213"\w* \w breaking|strong="H6565"\w* \w the|strong="H3588"\w* \w covenant|strong="H1285"\w*. +\v 60 Nevertheless \w I|strong="H3117"\w* \w will|strong="H3117"\w* \w remember|strong="H2142"\w* \w my|strong="H6965"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w you|strong="H3117"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H2142"\w* \w youth|strong="H5271"\w*, \w and|strong="H6965"\w* \w I|strong="H3117"\w* \w will|strong="H3117"\w* \w establish|strong="H6965"\w* \w an|strong="H6965"\w* \w everlasting|strong="H5769"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w you|strong="H3117"\w*. +\v 61 \w Then|strong="H3947"\w* \w you|strong="H5414"\w* \w will|strong="H5414"\w* \w remember|strong="H2142"\w* \w your|strong="H5414"\w* \w ways|strong="H1870"\w* \w and|strong="H1419"\w* \w be|strong="H3808"\w* \w ashamed|strong="H3637"\w* \w when|strong="H4480"\w* \w you|strong="H5414"\w* \w receive|strong="H3947"\w* \w your|strong="H5414"\w* sisters, \w your|strong="H5414"\w* \w elder|strong="H1419"\w* sisters \w and|strong="H1419"\w* \w your|strong="H5414"\w* \w younger|strong="H6996"\w*; \w and|strong="H1419"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H5414"\w* \w you|strong="H5414"\w* \w for|strong="H5414"\w* \w daughters|strong="H1323"\w*, \w but|strong="H3808"\w* \w not|strong="H3808"\w* \w by|strong="H1870"\w* \w your|strong="H5414"\w* \w covenant|strong="H1285"\w*. +\v 62 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w establish|strong="H6965"\w* \w my|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w*. \w Then|strong="H6965"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*; +\v 63 \w that|strong="H3605"\w* \w you|strong="H6440"\w* \w may|strong="H1961"\w* \w remember|strong="H2142"\w*, \w and|strong="H6440"\w* \w be|strong="H1961"\w* confounded, \w and|strong="H6440"\w* \w never|strong="H3808"\w* \w open|strong="H6440"\w* \w your|strong="H3605"\w* \w mouth|strong="H6310"\w* \w any|strong="H3605"\w* \w more|strong="H5750"\w* \w because|strong="H6440"\w* \w of|strong="H6440"\w* \w your|strong="H3605"\w* \w shame|strong="H3639"\w*, \w when|strong="H1961"\w* \w I|strong="H3808"\w* \w have|strong="H1961"\w* \w forgiven|strong="H3722"\w* \w you|strong="H6440"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w you|strong="H6440"\w* \w have|strong="H1961"\w* \w done|strong="H6213"\w*,” \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*.’” +\c 17 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, tell \w a|strong="H3068"\w* \w riddle|strong="H2420"\w*, \w and|strong="H1121"\w* \w speak|strong="H4911"\w* \w a|strong="H3068"\w* \w parable|strong="H4912"\w* \w to|strong="H3478"\w* \w the|strong="H1121"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*; +\v 3 \w and|strong="H1419"\w* say, ‘\w The|strong="H3947"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w A|strong="H3068"\w* \w great|strong="H1419"\w* \w eagle|strong="H5404"\w* \w with|strong="H5404"\w* \w great|strong="H1419"\w* \w wings|strong="H3671"\w* \w and|strong="H1419"\w* \w long|strong="H1419"\w* \w feathers|strong="H5133"\w*, \w full|strong="H4392"\w* \w of|strong="H4392"\w* \w feathers|strong="H5133"\w* \w which|strong="H3844"\w* had \w various|strong="H7553"\w* \w colors|strong="H7553"\w*, came \w to|strong="H3947"\w* \w Lebanon|strong="H3844"\w* \w and|strong="H1419"\w* \w took|strong="H3947"\w* \w the|strong="H3947"\w* \w top|strong="H6788"\w* \w of|strong="H4392"\w* \w the|strong="H3947"\w* cedar. +\v 4 \w He|strong="H7760"\w* cropped \w off|strong="H6998"\w* \w the|strong="H7760"\w* \w topmost|strong="H7218"\w* \w of|strong="H5892"\w* \w its|strong="H7760"\w* \w young|strong="H3242"\w* \w twigs|strong="H3242"\w*, \w and|strong="H5892"\w* carried \w it|strong="H7760"\w* \w to|strong="H5892"\w* \w a|strong="H3068"\w* land \w of|strong="H5892"\w* traffic. \w He|strong="H7760"\w* planted \w it|strong="H7760"\w* \w in|strong="H5892"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w* \w of|strong="H5892"\w* \w merchants|strong="H7402"\w*. +\p +\v 5 “‘“\w He|strong="H5414"\w* also \w took|strong="H3947"\w* \w some|strong="H7227"\w* \w of|strong="H4325"\w* \w the|strong="H5921"\w* \w seed|strong="H2233"\w* \w of|strong="H4325"\w* \w the|strong="H5921"\w* \w land|strong="H7704"\w* \w and|strong="H7704"\w* \w planted|strong="H5414"\w* \w it|strong="H5414"\w* \w in|strong="H5921"\w* \w fruitful|strong="H2233"\w* \w soil|strong="H7704"\w*. \w He|strong="H5414"\w* \w placed|strong="H5414"\w* \w it|strong="H5414"\w* \w beside|strong="H5921"\w* \w many|strong="H7227"\w* \w waters|strong="H4325"\w*. \w He|strong="H5414"\w* \w set|strong="H7760"\w* \w it|strong="H5414"\w* \w as|strong="H5414"\w* \w a|strong="H3068"\w* \w willow|strong="H6851"\w* \w tree|strong="H6851"\w*. +\v 6 \w It|strong="H6213"\w* \w grew|strong="H6779"\w* \w and|strong="H7971"\w* \w became|strong="H1961"\w* \w a|strong="H3068"\w* \w spreading|strong="H5628"\w* \w vine|strong="H1612"\w* \w of|strong="H8478"\w* \w low|strong="H8217"\w* \w stature|strong="H6967"\w*, whose \w branches|strong="H1808"\w* \w turned|strong="H6437"\w* \w toward|strong="H6437"\w* \w him|strong="H7971"\w*, \w and|strong="H7971"\w* \w its|strong="H6213"\w* \w roots|strong="H8328"\w* \w were|strong="H1961"\w* \w under|strong="H8478"\w* \w him|strong="H7971"\w*. \w So|strong="H6213"\w* \w it|strong="H6213"\w* \w became|strong="H1961"\w* \w a|strong="H3068"\w* \w vine|strong="H1612"\w*, \w produced|strong="H6213"\w* \w branches|strong="H1808"\w*, \w and|strong="H7971"\w* \w shot|strong="H7971"\w* \w out|strong="H7971"\w* \w sprigs|strong="H6288"\w*. +\p +\v 7 “‘“\w There|strong="H2009"\w* \w was|strong="H1961"\w* \w also|strong="H2063"\w* \w another|strong="H3671"\w* \w great|strong="H1419"\w* \w eagle|strong="H5404"\w* \w with|strong="H5921"\w* \w great|strong="H1419"\w* \w wings|strong="H3671"\w* \w and|strong="H7971"\w* \w many|strong="H7227"\w* \w feathers|strong="H5133"\w*. \w Behold|strong="H2009"\w*, \w this|strong="H2063"\w* \w vine|strong="H1612"\w* \w bent|strong="H3719"\w* \w its|strong="H5921"\w* \w roots|strong="H8328"\w* \w toward|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H7971"\w* \w shot|strong="H7971"\w* \w out|strong="H7971"\w* \w its|strong="H5921"\w* \w branches|strong="H1808"\w* \w toward|strong="H5921"\w* \w him|strong="H5921"\w*, \w from|strong="H5921"\w* \w the|strong="H5921"\w* ground \w where|strong="H5921"\w* \w it|strong="H5921"\w* \w was|strong="H1961"\w* \w planted|strong="H4302"\w*, \w that|strong="H1961"\w* \w he|strong="H5921"\w* might \w water|strong="H8248"\w* \w it|strong="H5921"\w*. +\v 8 \w It|strong="H1931"\w* \w was|strong="H1961"\w* \w planted|strong="H8362"\w* \w in|strong="H6213"\w* \w a|strong="H3068"\w* \w good|strong="H2896"\w* \w soil|strong="H7704"\w* \w by|strong="H4325"\w* \w many|strong="H7227"\w* \w waters|strong="H4325"\w*, \w that|strong="H1931"\w* \w it|strong="H1931"\w* might \w produce|strong="H6529"\w* \w branches|strong="H6057"\w* \w and|strong="H6213"\w* \w that|strong="H1931"\w* \w it|strong="H1931"\w* might \w bear|strong="H5375"\w* \w fruit|strong="H6529"\w*, \w that|strong="H1931"\w* \w it|strong="H1931"\w* might \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w good|strong="H2896"\w* \w vine|strong="H1612"\w*.”’ +\p +\v 9 “Say, ‘\w The|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Will|strong="H5971"\w* \w it|strong="H5375"\w* \w prosper|strong="H6743"\w*? Won’t \w he|strong="H3605"\w* \w pull|strong="H5423"\w* \w up|strong="H5375"\w* \w its|strong="H3605"\w* \w roots|strong="H8328"\w* \w and|strong="H1419"\w* \w cut|strong="H7082"\w* \w off|strong="H5423"\w* \w its|strong="H3605"\w* \w fruit|strong="H6529"\w*, \w that|strong="H5971"\w* \w it|strong="H5375"\w* \w may|strong="H5971"\w* \w wither|strong="H3001"\w*, \w that|strong="H5971"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* fresh \w springing|strong="H6780"\w* \w leaves|strong="H2964"\w* \w may|strong="H5971"\w* \w wither|strong="H3001"\w*? \w It|strong="H5375"\w* \w can|strong="H2220"\w*’t \w be|strong="H3808"\w* \w raised|strong="H5375"\w* \w from|strong="H5971"\w* \w its|strong="H3605"\w* \w roots|strong="H8328"\w* \w by|strong="H3808"\w* \w a|strong="H3068"\w* \w strong|strong="H1419"\w* \w arm|strong="H2220"\w* \w or|strong="H3808"\w* \w many|strong="H7227"\w* \w people|strong="H5971"\w*. +\v 10 \w Yes|strong="H2009"\w*, \w behold|strong="H2009"\w*, being \w planted|strong="H8362"\w*, \w will|strong="H7307"\w* \w it|strong="H5921"\w* \w prosper|strong="H6743"\w*? Won’t \w it|strong="H5921"\w* \w utterly|strong="H3001"\w* \w wither|strong="H3001"\w* \w when|strong="H5060"\w* \w the|strong="H5921"\w* \w east|strong="H6921"\w* \w wind|strong="H7307"\w* \w touches|strong="H5060"\w* \w it|strong="H5921"\w*? \w It|strong="H5921"\w* \w will|strong="H7307"\w* \w wither|strong="H3001"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* ground \w where|strong="H5921"\w* \w it|strong="H5921"\w* \w grew|strong="H6780"\w*.”’” +\p +\v 11 \w Moreover|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 12 “Say \w now|strong="H4994"\w* \w to|strong="H3389"\w* \w the|strong="H3947"\w* \w rebellious|strong="H4805"\w* \w house|strong="H1004"\w*, ‘Don’t \w you|strong="H3947"\w* \w know|strong="H3045"\w* \w what|strong="H4100"\w* \w these|strong="H3947"\w* \w things|strong="H3808"\w* mean?’ \w Tell|strong="H3045"\w* \w them|strong="H3947"\w*, ‘\w Behold|strong="H2009"\w*, \w the|strong="H3947"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w came|strong="H4428"\w* \w to|strong="H3389"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H4428"\w* \w took|strong="H3947"\w* \w its|strong="H3045"\w* \w king|strong="H4428"\w*, \w and|strong="H4428"\w* \w its|strong="H3045"\w* \w princes|strong="H8269"\w*, \w and|strong="H4428"\w* \w brought|strong="H3947"\w* \w them|strong="H3947"\w* \w to|strong="H3389"\w* \w him|strong="H3947"\w* \w to|strong="H3389"\w* Babylon. +\v 13 \w He|strong="H1285"\w* \w took|strong="H3947"\w* \w one|strong="H2233"\w* \w of|strong="H2233"\w* \w the|strong="H3947"\w* \w royal|strong="H4410"\w* \w offspring|strong="H2233"\w*,\f + \fr 17:13 \ft or, seed\f* \w and|strong="H1285"\w* \w made|strong="H3772"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w him|strong="H3947"\w*. \w He|strong="H1285"\w* also \w brought|strong="H3947"\w* \w him|strong="H3947"\w* under \w an|strong="H3947"\w* oath, \w and|strong="H1285"\w* \w took|strong="H3947"\w* \w away|strong="H3947"\w* \w the|strong="H3947"\w* mighty \w of|strong="H2233"\w* \w the|strong="H3947"\w* land, +\v 14 \w that|strong="H1961"\w* \w the|strong="H5375"\w* \w kingdom|strong="H4467"\w* \w might|strong="H4467"\w* \w be|strong="H1961"\w* \w brought|strong="H5375"\w* \w low|strong="H8217"\w*, \w that|strong="H1961"\w* \w it|strong="H5375"\w* \w might|strong="H4467"\w* \w not|strong="H1115"\w* \w lift|strong="H5375"\w* itself \w up|strong="H5375"\w*, \w but|strong="H1961"\w* \w that|strong="H1961"\w* \w by|strong="H5975"\w* \w keeping|strong="H8104"\w* \w his|strong="H5375"\w* \w covenant|strong="H1285"\w* \w it|strong="H5375"\w* \w might|strong="H4467"\w* \w stand|strong="H5975"\w*. +\v 15 \w But|strong="H5971"\w* \w he|strong="H6213"\w* \w rebelled|strong="H4775"\w* \w against|strong="H4714"\w* \w him|strong="H5414"\w* \w in|strong="H6213"\w* \w sending|strong="H7971"\w* \w his|strong="H5414"\w* \w ambassadors|strong="H4397"\w* \w into|strong="H6213"\w* \w Egypt|strong="H4714"\w*, \w that|strong="H5971"\w* \w they|strong="H6213"\w* \w might|strong="H5971"\w* \w give|strong="H5414"\w* \w him|strong="H5414"\w* \w horses|strong="H5483"\w* \w and|strong="H7971"\w* \w many|strong="H7227"\w* \w people|strong="H5971"\w*. \w Will|strong="H5971"\w* \w he|strong="H6213"\w* \w prosper|strong="H6743"\w*? \w Will|strong="H5971"\w* \w he|strong="H6213"\w* \w who|strong="H5971"\w* \w does|strong="H6213"\w* \w such|strong="H6213"\w* \w things|strong="H7227"\w* \w escape|strong="H4422"\w*? \w Will|strong="H5971"\w* \w he|strong="H6213"\w* \w break|strong="H6565"\w* \w the|strong="H5414"\w* \w covenant|strong="H1285"\w*, \w and|strong="H7971"\w* \w still|strong="H5971"\w* \w escape|strong="H4422"\w*? +\p +\v 16 “‘\w As|strong="H4427"\w* \w I|strong="H3808"\w* \w live|strong="H2416"\w*,’ \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, ‘\w surely|strong="H4191"\w* \w in|strong="H4428"\w* \w the|strong="H5002"\w* \w place|strong="H4725"\w* \w where|strong="H4725"\w* \w the|strong="H5002"\w* \w king|strong="H4428"\w* dwells \w who|strong="H4428"\w* \w made|strong="H4427"\w* \w him|strong="H4427"\w* \w king|strong="H4428"\w*, whose oath \w he|strong="H3808"\w* despised, \w and|strong="H4428"\w* whose \w covenant|strong="H1285"\w* \w he|strong="H3808"\w* \w broke|strong="H6565"\w*, \w even|strong="H3808"\w* \w with|strong="H1285"\w* \w him|strong="H4427"\w* \w in|strong="H4428"\w* \w the|strong="H5002"\w* \w middle|strong="H8432"\w* \w of|strong="H4428"\w* Babylon \w he|strong="H3808"\w* \w will|strong="H4428"\w* \w die|strong="H4191"\w*. +\v 17 \w Pharaoh|strong="H6547"\w* \w with|strong="H6213"\w* \w his|strong="H6213"\w* \w mighty|strong="H1419"\w* \w army|strong="H2428"\w* \w and|strong="H1419"\w* \w great|strong="H1419"\w* \w company|strong="H6951"\w* won’t \w help|strong="H4421"\w* \w him|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w war|strong="H4421"\w*, \w when|strong="H6213"\w* \w they|strong="H3808"\w* \w cast|strong="H8210"\w* \w up|strong="H1129"\w* mounds \w and|strong="H1419"\w* \w build|strong="H1129"\w* \w forts|strong="H1785"\w* \w to|strong="H6213"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w many|strong="H7227"\w* \w persons|strong="H5315"\w*. +\v 18 \w For|strong="H6213"\w* \w he|strong="H6213"\w* \w has|strong="H3027"\w* despised \w the|strong="H3605"\w* oath \w by|strong="H3027"\w* \w breaking|strong="H6565"\w* \w the|strong="H3605"\w* \w covenant|strong="H1285"\w*; \w and|strong="H3027"\w* \w behold|strong="H2009"\w*, \w he|strong="H6213"\w* \w had|strong="H5414"\w* \w given|strong="H5414"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w yet|strong="H3808"\w* \w has|strong="H3027"\w* \w done|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* \w things|strong="H3605"\w*. \w He|strong="H6213"\w* won’t \w escape|strong="H4422"\w*. +\p +\v 19 “\w Therefore|strong="H3651"\w* \w the|strong="H5414"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w As|strong="H3651"\w* \w I|strong="H5414"\w* \w live|strong="H2416"\w*, \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w surely|strong="H5414"\w* \w bring|strong="H5414"\w* \w on|strong="H5414"\w* \w his|strong="H5414"\w* own \w head|strong="H7218"\w* \w my|strong="H5414"\w* oath \w that|strong="H3651"\w* \w he|strong="H3651"\w* \w has|strong="H5414"\w* despised \w and|strong="H7218"\w* \w my|strong="H5414"\w* \w covenant|strong="H1285"\w* \w that|strong="H3651"\w* \w he|strong="H3651"\w* \w has|strong="H5414"\w* \w broken|strong="H6331"\w*. +\v 20 \w I|strong="H5921"\w* \w will|strong="H8033"\w* \w spread|strong="H6566"\w* \w my|strong="H5921"\w* \w net|strong="H7568"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H8033"\w* \w he|strong="H8033"\w* \w will|strong="H8033"\w* \w be|strong="H8610"\w* \w taken|strong="H8610"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* \w snare|strong="H4686"\w*. \w I|strong="H5921"\w* \w will|strong="H8033"\w* bring \w him|strong="H5921"\w* \w to|strong="H5921"\w* Babylon, \w and|strong="H8033"\w* \w will|strong="H8033"\w* \w enter|strong="H8199"\w* \w into|strong="H8199"\w* \w judgment|strong="H8199"\w* \w with|strong="H5921"\w* \w him|strong="H5921"\w* \w there|strong="H8033"\w* \w for|strong="H5921"\w* \w his|strong="H5921"\w* \w trespass|strong="H4604"\w* \w that|strong="H8199"\w* \w he|strong="H8033"\w* \w has|strong="H8199"\w* \w trespassed|strong="H4603"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*. +\v 21 \w All|strong="H3605"\w* \w his|strong="H3605"\w* \w fugitives|strong="H5307"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* bands \w will|strong="H3068"\w* \w fall|strong="H5307"\w* \w by|strong="H3068"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w and|strong="H3068"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w remain|strong="H7604"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w scattered|strong="H6566"\w* \w toward|strong="H3068"\w* \w every|strong="H3605"\w* \w wind|strong="H7307"\w*. \w Then|strong="H1696"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w it|strong="H3588"\w*.’ +\p +\v 22 “\w The|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w I|strong="H5414"\w* \w will|strong="H5414"\w* \w also|strong="H3541"\w* \w take|strong="H3947"\w* some \w of|strong="H2022"\w* \w the|strong="H5921"\w* \w lofty|strong="H7311"\w* \w top|strong="H7218"\w* \w of|strong="H2022"\w* \w the|strong="H5921"\w* cedar, \w and|strong="H7218"\w* \w will|strong="H5414"\w* \w plant|strong="H8362"\w* \w it|strong="H5414"\w*. \w I|strong="H5414"\w* \w will|strong="H5414"\w* crop \w off|strong="H5921"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w topmost|strong="H7218"\w* \w of|strong="H2022"\w* \w its|strong="H5414"\w* \w young|strong="H3127"\w* \w twigs|strong="H3127"\w* \w a|strong="H3068"\w* \w tender|strong="H7390"\w* \w one|strong="H7390"\w*, \w and|strong="H7218"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w plant|strong="H8362"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w high|strong="H1364"\w* \w and|strong="H7218"\w* \w lofty|strong="H7311"\w* \w mountain|strong="H2022"\w*. +\v 23 \w I|strong="H8478"\w* \w will|strong="H1961"\w* \w plant|strong="H8362"\w* \w it|strong="H6213"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w mountain|strong="H2022"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w height|strong="H4791"\w* \w of|strong="H2022"\w* \w Israel|strong="H3478"\w*; \w and|strong="H3478"\w* \w it|strong="H6213"\w* \w will|strong="H1961"\w* \w produce|strong="H6529"\w* \w boughs|strong="H6057"\w*, \w and|strong="H3478"\w* \w bear|strong="H5375"\w* \w fruit|strong="H6529"\w*, \w and|strong="H3478"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* good cedar. \w Birds|strong="H6833"\w* \w of|strong="H2022"\w* \w every|strong="H3605"\w* \w kind|strong="H3671"\w* \w will|strong="H1961"\w* \w dwell|strong="H7931"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w shade|strong="H6738"\w* \w of|strong="H2022"\w* \w its|strong="H3605"\w* \w branches|strong="H1808"\w*. +\v 24 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w trees|strong="H6086"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w brought|strong="H6213"\w* \w down|strong="H8213"\w* \w the|strong="H3605"\w* \w high|strong="H1364"\w* \w tree|strong="H6086"\w*, \w have|strong="H3068"\w* \w exalted|strong="H1361"\w* \w the|strong="H3605"\w* \w low|strong="H8213"\w* \w tree|strong="H6086"\w*, \w have|strong="H3068"\w* \w dried|strong="H3001"\w* \w up|strong="H3001"\w* \w the|strong="H3605"\w* \w green|strong="H3892"\w* \w tree|strong="H6086"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w made|strong="H6213"\w* \w the|strong="H3605"\w* \w dry|strong="H3001"\w* \w tree|strong="H6086"\w* \w flourish|strong="H6524"\w*. +\p “‘\w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w it|strong="H3588"\w*.’” +\c 18 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w* \w again|strong="H1961"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w What|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H5921"\w* mean, \w that|strong="H3478"\w* \w you|strong="H5921"\w* \w use|strong="H4911"\w* \w this|strong="H2088"\w* \w proverb|strong="H4912"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, saying, +\q1 ‘\w The|strong="H5921"\w* fathers \w have|strong="H1121"\w* eaten \w sour|strong="H1155"\w* \w grapes|strong="H1155"\w*, +\q2 \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w*’s \w teeth|strong="H8127"\w* \w are|strong="H1121"\w* \w set|strong="H6949"\w* \w on|strong="H5921"\w* \w edge|strong="H6949"\w*’? +\p +\v 3 “\w As|strong="H1961"\w* \w I|strong="H2088"\w* \w live|strong="H2416"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, “\w you|strong="H2088"\w* \w shall|strong="H3478"\w* \w not|strong="H2088"\w* \w use|strong="H4911"\w* \w this|strong="H2088"\w* \w proverb|strong="H4912"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\v 4 \w Behold|strong="H2005"\w*, \w all|strong="H3605"\w* \w souls|strong="H5315"\w* \w are|strong="H1121"\w* mine; \w as|strong="H5315"\w* \w the|strong="H3605"\w* \w soul|strong="H5315"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w father|strong="H1121"\w*, \w so|strong="H4191"\w* \w also|strong="H1121"\w* \w the|strong="H3605"\w* \w soul|strong="H5315"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w is|strong="H1931"\w* mine. \w The|strong="H3605"\w* \w soul|strong="H5315"\w* \w who|strong="H3605"\w* \w sins|strong="H2398"\w*, \w he|strong="H1931"\w* \w shall|strong="H1121"\w* \w die|strong="H4191"\w*. +\b +\q1 +\v 5 “\w But|strong="H3588"\w* \w if|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H6662"\w* \w is|strong="H6662"\w* \w just|strong="H6662"\w*, +\q2 \w and|strong="H4941"\w* \w does|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H3588"\w* \w is|strong="H6662"\w* \w lawful|strong="H4941"\w* \w and|strong="H4941"\w* \w right|strong="H4941"\w*, +\q1 +\v 6 \w and|strong="H3478"\w* \w has|strong="H3478"\w* \w not|strong="H3808"\w* eaten \w on|strong="H1004"\w* \w the|strong="H5375"\w* \w mountains|strong="H2022"\w*, +\q2 hasn’t \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w eyes|strong="H5869"\w* \w to|strong="H3478"\w* \w the|strong="H5375"\w* \w idols|strong="H1544"\w* \w of|strong="H1004"\w* \w the|strong="H5375"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, +\q1 hasn’t \w defiled|strong="H2930"\w* \w his|strong="H5375"\w* \w neighbor|strong="H7453"\w*’s wife, +\q2 hasn’t \w come|strong="H7126"\w* \w near|strong="H7126"\w* \w a|strong="H3068"\w* \w woman|strong="H5079"\w* \w in|strong="H3478"\w* \w her|strong="H5375"\w* \w impurity|strong="H5079"\w*, +\q1 +\v 7 \w and|strong="H7725"\w* \w has|strong="H5414"\w* \w not|strong="H3808"\w* \w wronged|strong="H3238"\w* \w any|strong="H5414"\w*, +\q2 \w but|strong="H3808"\w* \w has|strong="H5414"\w* \w restored|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H5414"\w* \w debtor|strong="H2326"\w* \w his|strong="H5414"\w* \w pledge|strong="H2258"\w*, +\q1 \w has|strong="H5414"\w* \w taken|strong="H5414"\w* \w nothing|strong="H3808"\w* \w by|strong="H5414"\w* \w robbery|strong="H1500"\w*, +\q2 \w has|strong="H5414"\w* \w given|strong="H5414"\w* \w his|strong="H5414"\w* \w bread|strong="H3899"\w* \w to|strong="H7725"\w* \w the|strong="H5414"\w* \w hungry|strong="H7457"\w*, +\q2 \w and|strong="H7725"\w* \w has|strong="H5414"\w* \w covered|strong="H3680"\w* \w the|strong="H5414"\w* \w naked|strong="H5903"\w* \w with|strong="H3899"\w* \w a|strong="H3068"\w* garment; +\q1 +\v 8 \w he|strong="H6213"\w* \w who|strong="H6213"\w* hasn’t lent \w to|strong="H7725"\w* \w them|strong="H5414"\w* \w with|strong="H6213"\w* \w interest|strong="H5392"\w*, +\q2 hasn’t \w taken|strong="H3947"\w* \w any|strong="H6213"\w* \w increase|strong="H8636"\w* \w from|strong="H7725"\w* \w them|strong="H5414"\w*, +\q1 \w who|strong="H6213"\w* \w has|strong="H3027"\w* \w withdrawn|strong="H7725"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w* \w from|strong="H7725"\w* \w iniquity|strong="H5766"\w*, +\q2 \w has|strong="H3027"\w* \w executed|strong="H6213"\w* true \w justice|strong="H4941"\w* \w between|strong="H4941"\w* man \w and|strong="H7725"\w* man, +\q1 +\v 9 \w has|strong="H6213"\w* \w walked|strong="H1980"\w* \w in|strong="H1980"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w*, +\q2 \w and|strong="H1980"\w* \w has|strong="H6213"\w* \w kept|strong="H8104"\w* \w my|strong="H8104"\w* \w ordinances|strong="H4941"\w*, +\q2 \w to|strong="H1980"\w* \w deal|strong="H6213"\w* \w truly|strong="H6213"\w*; +\q1 \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w just|strong="H6662"\w*, +\q2 \w he|strong="H1931"\w* \w shall|strong="H6662"\w* \w surely|strong="H2421"\w* \w live|strong="H2421"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\b +\p +\v 10 “\w If|strong="H1121"\w* \w he|strong="H6213"\w* \w fathers|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w who|strong="H1121"\w* \w is|strong="H1121"\w* \w a|strong="H3068"\w* \w robber|strong="H6530"\w* \w who|strong="H1121"\w* \w sheds|strong="H8210"\w* \w blood|strong="H1818"\w*, \w and|strong="H1121"\w* \w who|strong="H1121"\w* \w does|strong="H6213"\w* \w any|strong="H6213"\w* \w one|strong="H1121"\w* \w of|strong="H1121"\w* \w these|strong="H6213"\w* things, +\v 11 \w or|strong="H3808"\w* \w who|strong="H3605"\w* \w does|strong="H6213"\w* \w not|strong="H3808"\w* \w do|strong="H6213"\w* \w any|strong="H3605"\w* \w of|strong="H2022"\w* \w those|strong="H3605"\w* \w things|strong="H3605"\w* +\q1 \w but|strong="H3588"\w* \w has|strong="H3588"\w* eaten \w at|strong="H6213"\w* \w the|strong="H3605"\w* \w mountain|strong="H2022"\w* shrines +\q2 \w and|strong="H2022"\w* \w defiled|strong="H2930"\w* \w his|strong="H3605"\w* \w neighbor|strong="H7453"\w*’s wife, +\q1 +\v 12 \w has|strong="H5869"\w* \w wronged|strong="H3238"\w* \w the|strong="H5375"\w* \w poor|strong="H6041"\w* \w and|strong="H7725"\w* \w needy|strong="H6041"\w*, +\q2 \w has|strong="H5869"\w* \w taken|strong="H5375"\w* \w by|strong="H3808"\w* \w robbery|strong="H1500"\w*, +\q1 \w has|strong="H5869"\w* \w not|strong="H3808"\w* \w restored|strong="H7725"\w* \w the|strong="H5375"\w* \w pledge|strong="H2258"\w*, +\q2 \w and|strong="H7725"\w* \w has|strong="H5869"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w eyes|strong="H5869"\w* \w to|strong="H7725"\w* \w the|strong="H5375"\w* \w idols|strong="H1544"\w*, +\q2 \w has|strong="H5869"\w* \w committed|strong="H6213"\w* \w abomination|strong="H8441"\w*, +\q1 +\v 13 \w has|strong="H1961"\w* lent \w with|strong="H6213"\w* \w interest|strong="H5392"\w*, +\q2 \w and|strong="H6213"\w* \w has|strong="H1961"\w* \w taken|strong="H3947"\w* \w increase|strong="H8636"\w* \w from|strong="H3947"\w* \w the|strong="H3605"\w* poor, +\m \w shall|strong="H3808"\w* \w he|strong="H6213"\w* \w then|strong="H1961"\w* \w live|strong="H2421"\w*? \w He|strong="H6213"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w live|strong="H2421"\w*. \w He|strong="H6213"\w* \w has|strong="H1961"\w* \w done|strong="H6213"\w* \w all|strong="H3605"\w* \w these|strong="H6213"\w* \w abominations|strong="H8441"\w*. \w He|strong="H6213"\w* \w shall|strong="H3808"\w* \w surely|strong="H4191"\w* \w die|strong="H4191"\w*. \w His|strong="H3605"\w* \w blood|strong="H1818"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w on|strong="H1961"\w* \w him|strong="H5414"\w*. +\p +\v 14 “\w Now|strong="H2009"\w*, \w behold|strong="H2009"\w*, \w if|strong="H2009"\w* \w he|strong="H6213"\w* \w fathers|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w* \w who|strong="H3605"\w* \w sees|strong="H7200"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w father|strong="H3205"\w*’s \w sins|strong="H2403"\w* \w which|strong="H2004"\w* \w he|strong="H6213"\w* \w has|strong="H2009"\w* \w done|strong="H6213"\w*, \w and|strong="H1121"\w* fears, \w and|strong="H1121"\w* doesn’t \w do|strong="H6213"\w* \w likewise|strong="H2004"\w*, +\q1 +\v 15 \w who|strong="H3478"\w* hasn’t eaten \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w*, +\q2 hasn’t \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w his|strong="H5375"\w* \w eyes|strong="H5869"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w idols|strong="H1544"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, +\q2 hasn’t \w defiled|strong="H2930"\w* \w his|strong="H5375"\w* \w neighbor|strong="H7453"\w*’s wife, +\q1 +\v 16 hasn’t \w wronged|strong="H3238"\w* \w any|strong="H5414"\w*, +\q2 hasn’t \w taken|strong="H2254"\w* \w anything|strong="H3899"\w* \w to|strong="H5414"\w* \w pledge|strong="H2254"\w*, +\q1 hasn’t \w taken|strong="H2254"\w* \w by|strong="H5414"\w* \w robbery|strong="H1500"\w*, +\q2 \w but|strong="H3808"\w* \w has|strong="H5414"\w* \w given|strong="H5414"\w* \w his|strong="H5414"\w* \w bread|strong="H3899"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w hungry|strong="H7457"\w*, +\q2 \w and|strong="H3899"\w* \w has|strong="H5414"\w* \w covered|strong="H3680"\w* \w the|strong="H5414"\w* \w naked|strong="H5903"\w* \w with|strong="H3899"\w* \w a|strong="H3068"\w* garment; +\q1 +\v 17 \w who|strong="H1931"\w* \w has|strong="H3027"\w* \w withdrawn|strong="H7725"\w* \w his|strong="H3947"\w* \w hand|strong="H3027"\w* \w from|strong="H7725"\w* \w the|strong="H3947"\w* \w poor|strong="H6041"\w*, +\q2 \w who|strong="H1931"\w* hasn’t \w received|strong="H3947"\w* \w interest|strong="H5392"\w* \w or|strong="H3808"\w* \w increase|strong="H8636"\w*, +\q1 \w has|strong="H3027"\w* \w executed|strong="H6213"\w* \w my|strong="H3947"\w* \w ordinances|strong="H4941"\w*, +\q2 \w has|strong="H3027"\w* \w walked|strong="H1980"\w* \w in|strong="H1980"\w* \w my|strong="H3947"\w* \w statutes|strong="H2708"\w*; +\m \w he|strong="H1931"\w* \w shall|strong="H3027"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w* \w for|strong="H6213"\w* \w the|strong="H3947"\w* \w iniquity|strong="H5771"\w* \w of|strong="H3027"\w* \w his|strong="H3947"\w* father. \w He|strong="H1931"\w* \w shall|strong="H3027"\w* \w surely|strong="H4191"\w* \w live|strong="H2421"\w*. +\v 18 \w As|strong="H6213"\w* \w for|strong="H3588"\w* \w his|strong="H6213"\w* father, \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w cruelly|strong="H6233"\w* \w oppressed|strong="H6231"\w*, \w robbed|strong="H1497"\w* \w his|strong="H6213"\w* brother, \w and|strong="H5971"\w* \w did|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H5971"\w* \w is|strong="H2896"\w* \w not|strong="H3808"\w* \w good|strong="H2896"\w* \w among|strong="H8432"\w* \w his|strong="H6213"\w* \w people|strong="H5971"\w*, \w behold|strong="H2009"\w*, \w he|strong="H3588"\w* \w will|strong="H5971"\w* \w die|strong="H4191"\w* \w in|strong="H6213"\w* \w his|strong="H6213"\w* \w iniquity|strong="H5771"\w*. +\p +\v 19 “\w Yet|strong="H3808"\w* \w you|strong="H3605"\w* say, ‘\w Why|strong="H4069"\w* doesn’t \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w bear|strong="H5375"\w* \w the|strong="H3605"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w father|strong="H1121"\w*?’ \w When|strong="H2421"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w has|strong="H3605"\w* \w done|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H2708"\w* \w is|strong="H3605"\w* \w lawful|strong="H4941"\w* \w and|strong="H1121"\w* \w right|strong="H4941"\w*, \w and|strong="H1121"\w* \w has|strong="H3605"\w* \w kept|strong="H8104"\w* \w all|strong="H3605"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w*, \w and|strong="H1121"\w* \w has|strong="H3605"\w* \w done|strong="H6213"\w* \w them|strong="H6213"\w*, \w he|strong="H6213"\w* \w will|strong="H1121"\w* \w surely|strong="H2421"\w* \w live|strong="H2421"\w*. +\v 20 \w The|strong="H5921"\w* \w soul|strong="H5315"\w* \w who|strong="H1931"\w* \w sins|strong="H2398"\w*, \w he|strong="H1931"\w* \w shall|strong="H1121"\w* \w die|strong="H4191"\w*. \w The|strong="H5921"\w* \w son|strong="H1121"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w bear|strong="H5375"\w* \w the|strong="H5921"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w father|strong="H1121"\w*, \w neither|strong="H3808"\w* \w shall|strong="H1121"\w* \w the|strong="H5921"\w* \w father|strong="H1121"\w* \w bear|strong="H5375"\w* \w the|strong="H5921"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w*. \w The|strong="H5921"\w* \w righteousness|strong="H6666"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w righteous|strong="H6662"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w wickedness|strong="H7564"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w wicked|strong="H7563"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*. +\p +\v 21 “\w But|strong="H3588"\w* \w if|strong="H3588"\w* \w the|strong="H3605"\w* \w wicked|strong="H7563"\w* \w turns|strong="H7725"\w* \w from|strong="H7725"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w sins|strong="H2403"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w committed|strong="H6213"\w*, \w and|strong="H7725"\w* \w keeps|strong="H8104"\w* \w all|strong="H3605"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w*, \w and|strong="H7725"\w* \w does|strong="H6213"\w* \w that|strong="H3588"\w* \w which|strong="H2708"\w* \w is|strong="H7563"\w* \w lawful|strong="H4941"\w* \w and|strong="H7725"\w* \w right|strong="H4941"\w*, \w he|strong="H3588"\w* \w shall|strong="H7563"\w* \w surely|strong="H4191"\w* \w live|strong="H2421"\w*. \w He|strong="H3588"\w* \w shall|strong="H7563"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*. +\v 22 \w None|strong="H3808"\w* \w of|strong="H3605"\w* \w his|strong="H3605"\w* \w transgressions|strong="H6588"\w* \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w has|strong="H3605"\w* \w committed|strong="H6213"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w remembered|strong="H2142"\w* \w against|strong="H6213"\w* \w him|strong="H6213"\w*. \w In|strong="H6213"\w* \w his|strong="H3605"\w* \w righteousness|strong="H6666"\w* \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w has|strong="H3605"\w* \w done|strong="H6213"\w*, \w he|strong="H6213"\w* \w shall|strong="H3808"\w* \w live|strong="H2421"\w*. +\v 23 \w Have|strong="H7563"\w* \w I|strong="H3808"\w* \w any|strong="H3808"\w* \w pleasure|strong="H2654"\w* \w in|strong="H7725"\w* \w the|strong="H5002"\w* \w death|strong="H4194"\w* \w of|strong="H1870"\w* \w the|strong="H5002"\w* \w wicked|strong="H7563"\w*?” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, “\w and|strong="H7725"\w* \w not|strong="H3808"\w* \w rather|strong="H3808"\w* \w that|strong="H3808"\w* \w he|strong="H3808"\w* \w should|strong="H7563"\w* \w return|strong="H7725"\w* \w from|strong="H7725"\w* \w his|strong="H7725"\w* \w way|strong="H1870"\w*, \w and|strong="H7725"\w* \w live|strong="H2421"\w*? +\p +\v 24 “\w But|strong="H3808"\w* \w when|strong="H7725"\w* \w the|strong="H3605"\w* \w righteous|strong="H6662"\w* \w turns|strong="H7725"\w* \w away|strong="H7725"\w* \w from|strong="H7725"\w* \w his|strong="H3605"\w* \w righteousness|strong="H6666"\w*, \w and|strong="H7725"\w* \w commits|strong="H6213"\w* \w iniquity|strong="H5766"\w*, \w and|strong="H7725"\w* \w does|strong="H6213"\w* according \w to|strong="H7725"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w abominations|strong="H8441"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* \w wicked|strong="H7563"\w* \w man|strong="H7563"\w* \w does|strong="H6213"\w*, \w should|strong="H6213"\w* \w he|strong="H6213"\w* \w live|strong="H2425"\w*? \w None|strong="H3808"\w* \w of|strong="H3605"\w* \w his|strong="H3605"\w* \w righteous|strong="H6662"\w* \w deeds|strong="H6666"\w* \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w has|strong="H3605"\w* \w done|strong="H6213"\w* \w will|strong="H6662"\w* \w be|strong="H4191"\w* \w remembered|strong="H2142"\w*. \w In|strong="H6213"\w* \w his|strong="H3605"\w* \w trespass|strong="H4604"\w* \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w has|strong="H3605"\w* \w trespassed|strong="H4603"\w*, \w and|strong="H7725"\w* \w in|strong="H6213"\w* \w his|strong="H3605"\w* \w sin|strong="H2403"\w* \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w has|strong="H3605"\w* \w sinned|strong="H2398"\w*, \w in|strong="H6213"\w* \w them|strong="H7725"\w* \w he|strong="H6213"\w* \w shall|strong="H7563"\w* \w die|strong="H4191"\w*. +\p +\v 25 “\w Yet|strong="H3808"\w* \w you|strong="H3808"\w* \w say|strong="H3478"\w*, ‘\w The|strong="H8085"\w* \w way|strong="H1870"\w* \w of|strong="H1004"\w* \w the|strong="H8085"\w* Lord \w is|strong="H1870"\w* \w not|strong="H3808"\w* \w equal|strong="H8505"\w*.’ \w Hear|strong="H8085"\w* \w now|strong="H4994"\w*, \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*: \w Is|strong="H1870"\w* \w my|strong="H8085"\w* \w way|strong="H1870"\w* \w not|strong="H3808"\w* \w equal|strong="H8505"\w*? Aren’t \w your|strong="H8085"\w* \w ways|strong="H1870"\w* \w unequal|strong="H8505"\w*? +\v 26 \w When|strong="H7725"\w* \w the|strong="H5921"\w* \w righteous|strong="H6662"\w* \w man|strong="H6662"\w* \w turns|strong="H7725"\w* \w away|strong="H7725"\w* \w from|strong="H7725"\w* \w his|strong="H7725"\w* \w righteousness|strong="H6666"\w*, \w and|strong="H7725"\w* \w commits|strong="H6213"\w* \w iniquity|strong="H5766"\w*, \w and|strong="H7725"\w* \w dies|strong="H4191"\w* \w in|strong="H5921"\w* \w it|strong="H5921"\w*, \w then|strong="H6213"\w* \w he|strong="H6213"\w* \w dies|strong="H4191"\w* \w in|strong="H5921"\w* \w his|strong="H7725"\w* \w iniquity|strong="H5766"\w* \w that|strong="H6213"\w* \w he|strong="H6213"\w* \w has|strong="H6213"\w* \w done|strong="H6213"\w*. +\v 27 \w Again|strong="H7725"\w*, \w when|strong="H2421"\w* \w the|strong="H6213"\w* \w wicked|strong="H7563"\w* \w man|strong="H7563"\w* \w turns|strong="H7725"\w* \w away|strong="H7725"\w* \w from|strong="H7725"\w* \w his|strong="H7725"\w* \w wickedness|strong="H7564"\w* \w that|strong="H1931"\w* \w he|strong="H1931"\w* \w has|strong="H5315"\w* \w committed|strong="H6213"\w*, \w and|strong="H7725"\w* \w does|strong="H6213"\w* \w that|strong="H1931"\w* \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w lawful|strong="H4941"\w* \w and|strong="H7725"\w* \w right|strong="H4941"\w*, \w he|strong="H1931"\w* \w will|strong="H5315"\w* \w save|strong="H2421"\w* \w his|strong="H7725"\w* \w soul|strong="H5315"\w* \w alive|strong="H2421"\w*. +\v 28 \w Because|strong="H3605"\w* \w he|strong="H6213"\w* \w considers|strong="H7200"\w*, \w and|strong="H7725"\w* \w turns|strong="H7725"\w* \w away|strong="H7725"\w* \w from|strong="H7725"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w transgressions|strong="H6588"\w* \w that|strong="H7200"\w* \w he|strong="H6213"\w* \w has|strong="H3605"\w* \w committed|strong="H6213"\w*, \w he|strong="H6213"\w* \w shall|strong="H3808"\w* \w surely|strong="H4191"\w* \w live|strong="H2421"\w*. \w He|strong="H6213"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*. +\v 29 \w Yet|strong="H3808"\w* \w the|strong="H1870"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* says, ‘\w The|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H1004"\w* \w the|strong="H1870"\w* Lord \w is|strong="H1870"\w* \w not|strong="H3808"\w* fair.’ \w House|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, aren’t \w my|strong="H3478"\w* \w ways|strong="H1870"\w* fair? Aren’t \w your|strong="H3808"\w* \w ways|strong="H1870"\w* unfair? +\p +\v 30 “\w Therefore|strong="H3651"\w* \w I|strong="H3651"\w* \w will|strong="H1961"\w* \w judge|strong="H8199"\w* \w you|strong="H3605"\w*, \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w everyone|strong="H3605"\w* according \w to|strong="H7725"\w* \w his|strong="H3605"\w* \w ways|strong="H1870"\w*,” \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. “\w Return|strong="H7725"\w*, \w and|strong="H3478"\w* \w turn|strong="H7725"\w* \w yourselves|strong="H3605"\w* \w from|strong="H7725"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w transgressions|strong="H6588"\w*, \w so|strong="H3651"\w* \w iniquity|strong="H5771"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w your|strong="H3605"\w* \w ruin|strong="H4383"\w*. +\v 31 \w Cast|strong="H7993"\w* \w away|strong="H7993"\w* \w from|strong="H5921"\w* \w you|strong="H3605"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w transgressions|strong="H6588"\w* \w in|strong="H5921"\w* \w which|strong="H1004"\w* \w you|strong="H3605"\w* \w have|strong="H3478"\w* \w transgressed|strong="H6586"\w*; \w and|strong="H3478"\w* \w make|strong="H6213"\w* \w yourself|strong="H6213"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w heart|strong="H3820"\w* \w and|strong="H3478"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w spirit|strong="H7307"\w*. \w For|strong="H5921"\w* \w why|strong="H4100"\w* \w will|strong="H3478"\w* \w you|strong="H3605"\w* \w die|strong="H4191"\w*, \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*? +\v 32 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H2654"\w* \w no|strong="H3808"\w* \w pleasure|strong="H2654"\w* \w in|strong="H4191"\w* \w the|strong="H5002"\w* \w death|strong="H4194"\w* \w of|strong="H4194"\w* \w him|strong="H7725"\w* \w who|strong="H3588"\w* \w dies|strong="H4191"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. “\w Therefore|strong="H3588"\w* \w turn|strong="H7725"\w* yourselves, \w and|strong="H7725"\w* \w live|strong="H2421"\w*! +\c 19 +\p +\v 1 “Moreover, \w take|strong="H5375"\w* \w up|strong="H5375"\w* \w a|strong="H3068"\w* \w lamentation|strong="H7015"\w* \w for|strong="H3478"\w* \w the|strong="H5375"\w* \w princes|strong="H5387"\w* \w of|strong="H5387"\w* \w Israel|strong="H3478"\w*, +\v 2 \w and|strong="H7235"\w* say, +\q1 ‘\w What|strong="H4100"\w* was \w your|strong="H7235"\w* mother? +\q2 \w A|strong="H3068"\w* \w lioness|strong="H3833"\w*. +\q1 \w She|strong="H4100"\w* \w couched|strong="H7257"\w* \w among|strong="H8432"\w* \w lions|strong="H3715"\w*, +\q2 \w in|strong="H8432"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w the|strong="H8432"\w* \w young|strong="H3715"\w* \w lions|strong="H3715"\w* \w she|strong="H4100"\w* \w nourished|strong="H7235"\w* \w her|strong="H7235"\w* \w cubs|strong="H1482"\w*. +\q1 +\v 3 She \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w one|strong="H1961"\w* \w of|strong="H5927"\w* \w her|strong="H1961"\w* \w cubs|strong="H1482"\w*. +\q2 He \w became|strong="H1961"\w* \w a|strong="H3068"\w* \w young|strong="H3715"\w* \w lion|strong="H3715"\w*. +\q1 He \w learned|strong="H3925"\w* \w to|strong="H5927"\w* \w catch|strong="H2963"\w* \w the|strong="H5927"\w* \w prey|strong="H2964"\w*. +\q2 He devoured men. +\q1 +\v 4 \w The|strong="H8085"\w* \w nations|strong="H1471"\w* \w also|strong="H1471"\w* \w heard|strong="H8085"\w* \w of|strong="H8085"\w* \w him|strong="H8085"\w*. +\q2 He \w was|strong="H4714"\w* \w taken|strong="H8610"\w* \w in|strong="H8085"\w* \w their|strong="H8085"\w* \w pit|strong="H7845"\w*; +\q2 \w and|strong="H4714"\w* \w they|strong="H1471"\w* brought \w him|strong="H8085"\w* \w with|strong="H4714"\w* \w hooks|strong="H2397"\w* \w to|strong="H4714"\w* \w the|strong="H8085"\w* land \w of|strong="H8085"\w* \w Egypt|strong="H4714"\w*. +\b +\q1 +\v 5 “‘\w Now|strong="H3588"\w* \w when|strong="H3588"\w* \w she|strong="H3588"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w she|strong="H3588"\w* \w had|strong="H3588"\w* \w waited|strong="H3176"\w*, +\q2 \w and|strong="H7200"\w* \w her|strong="H3947"\w* \w hope|strong="H3176"\w* \w was|strong="H8615"\w* lost, +\q1 \w then|strong="H3947"\w* \w she|strong="H3588"\w* \w took|strong="H3947"\w* \w another|strong="H7200"\w* \w of|strong="H3947"\w* \w her|strong="H3947"\w* \w cubs|strong="H1482"\w*, +\q2 \w and|strong="H7200"\w* \w made|strong="H7760"\w* \w him|strong="H7200"\w* \w a|strong="H3068"\w* \w young|strong="H3715"\w* \w lion|strong="H3715"\w*. +\q1 +\v 6 \w He|strong="H1980"\w* \w went|strong="H1980"\w* \w up|strong="H1980"\w* \w and|strong="H1980"\w* \w down|strong="H1980"\w* \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w lions|strong="H3715"\w*. +\q2 \w He|strong="H1980"\w* \w became|strong="H1961"\w* \w a|strong="H3068"\w* \w young|strong="H3715"\w* \w lion|strong="H3715"\w*. +\q1 \w He|strong="H1980"\w* \w learned|strong="H3925"\w* \w to|strong="H1980"\w* \w catch|strong="H2963"\w* \w the|strong="H8432"\w* \w prey|strong="H2964"\w*. +\q2 \w He|strong="H1980"\w* devoured \w men|strong="H1980"\w*. +\q1 +\v 7 \w He|strong="H5892"\w* \w knew|strong="H3045"\w* \w their|strong="H3045"\w* palaces, +\q2 \w and|strong="H6963"\w* \w laid|strong="H2717"\w* \w waste|strong="H2717"\w* \w their|strong="H3045"\w* \w cities|strong="H5892"\w*. +\q1 \w The|strong="H3045"\w* land \w was|strong="H5892"\w* \w desolate|strong="H2717"\w* \w with|strong="H3045"\w* \w its|strong="H3045"\w* \w fullness|strong="H4393"\w*, +\q2 because \w of|strong="H5892"\w* \w the|strong="H3045"\w* \w noise|strong="H6963"\w* \w of|strong="H5892"\w* \w his|strong="H3045"\w* \w roaring|strong="H7581"\w*. +\q1 +\v 8 \w Then|strong="H5414"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w* attacked \w him|strong="H5414"\w* \w on|strong="H5921"\w* \w every|strong="H5439"\w* \w side|strong="H5439"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w provinces|strong="H4082"\w*. +\q2 \w They|strong="H5921"\w* \w spread|strong="H6566"\w* \w their|strong="H5414"\w* \w net|strong="H7568"\w* \w over|strong="H5921"\w* \w him|strong="H5414"\w*. +\q2 \w He|strong="H5414"\w* \w was|strong="H5414"\w* \w taken|strong="H8610"\w* \w in|strong="H5921"\w* \w their|strong="H5414"\w* \w pit|strong="H7845"\w*. +\q1 +\v 9 \w They|strong="H3808"\w* \w put|strong="H5414"\w* \w him|strong="H5414"\w* \w in|strong="H3478"\w* \w a|strong="H3068"\w* \w cage|strong="H5474"\w* \w with|strong="H4428"\w* \w hooks|strong="H2397"\w*, +\q2 \w and|strong="H3478"\w* \w brought|strong="H5414"\w* \w him|strong="H5414"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon. +\q1 \w They|strong="H3808"\w* \w brought|strong="H5414"\w* \w him|strong="H5414"\w* \w into|strong="H5414"\w* strongholds, +\q2 \w so|strong="H4616"\w* \w that|strong="H8085"\w* \w his|strong="H5414"\w* \w voice|strong="H6963"\w* \w should|strong="H3478"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w be|strong="H3808"\w* \w heard|strong="H8085"\w* \w on|strong="H8085"\w* \w the|strong="H8085"\w* \w mountains|strong="H2022"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. +\b +\q1 +\v 10 “‘\w Your|strong="H5921"\w* mother \w was|strong="H1961"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w vine|strong="H1612"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w blood|strong="H1818"\w*, \w planted|strong="H8362"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w*. +\q2 \w It|strong="H5921"\w* \w was|strong="H1961"\w* \w fruitful|strong="H6509"\w* \w and|strong="H1818"\w* \w full|strong="H7227"\w* \w of|strong="H4325"\w* \w branches|strong="H6058"\w* \w by|strong="H5921"\w* \w reason|strong="H5921"\w* \w of|strong="H4325"\w* \w many|strong="H7227"\w* \w waters|strong="H4325"\w*. +\q1 +\v 11 \w It|strong="H5921"\w* \w had|strong="H1961"\w* \w strong|strong="H5797"\w* \w branches|strong="H1808"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w scepters|strong="H7626"\w* \w of|strong="H4294"\w* \w those|strong="H5921"\w* who \w ruled|strong="H4910"\w*. +\q2 \w Their|strong="H7200"\w* \w stature|strong="H6967"\w* \w was|strong="H1961"\w* \w exalted|strong="H1361"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* thick \w boughs|strong="H5688"\w*. +\q1 \w They|strong="H5921"\w* \w were|strong="H1961"\w* \w seen|strong="H7200"\w* \w in|strong="H5921"\w* \w their|strong="H7200"\w* \w height|strong="H6967"\w* +\q2 \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w multitude|strong="H7230"\w* \w of|strong="H4294"\w* \w their|strong="H7200"\w* \w branches|strong="H1808"\w*. +\q1 +\v 12 \w But|strong="H5428"\w* \w it|strong="H7993"\w* \w was|strong="H7307"\w* \w plucked|strong="H5428"\w* \w up|strong="H3001"\w* \w in|strong="H7307"\w* \w fury|strong="H2534"\w*. +\q2 \w It|strong="H7993"\w* \w was|strong="H7307"\w* \w cast|strong="H7993"\w* \w down|strong="H7993"\w* \w to|strong="H7307"\w* \w the|strong="H7993"\w* ground, +\q1 \w and|strong="H5797"\w* \w the|strong="H7993"\w* \w east|strong="H6921"\w* \w wind|strong="H7307"\w* \w dried|strong="H3001"\w* \w up|strong="H3001"\w* \w its|strong="H7993"\w* \w fruit|strong="H6529"\w*. +\q2 \w Its|strong="H7993"\w* \w strong|strong="H5797"\w* \w branches|strong="H4294"\w* \w were|strong="H4294"\w* \w broken|strong="H6561"\w* \w off|strong="H6561"\w* \w and|strong="H5797"\w* \w withered|strong="H3001"\w*. +\q2 \w The|strong="H7993"\w* fire consumed \w them|strong="H7993"\w*. +\q1 +\v 13 \w Now|strong="H6258"\w* it \w is|strong="H4057"\w* \w planted|strong="H8362"\w* \w in|strong="H8362"\w* \w the|strong="H6258"\w* \w wilderness|strong="H4057"\w*, +\q2 \w in|strong="H8362"\w* \w a|strong="H3068"\w* \w dry|strong="H6723"\w* \w and|strong="H4057"\w* \w thirsty|strong="H6772"\w* \w land|strong="H6723"\w*. +\q1 +\v 14 Fire \w has|strong="H1961"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4294"\w* \w its|strong="H1961"\w* \w branches|strong="H4294"\w*. +\q2 \w It|strong="H1931"\w* \w has|strong="H1961"\w* devoured \w its|strong="H1961"\w* \w fruit|strong="H6529"\w*, +\q2 \w so|strong="H1961"\w* \w that|strong="H1931"\w* \w there|strong="H1961"\w* \w is|strong="H1931"\w* \w in|strong="H4910"\w* \w it|strong="H1931"\w* \w no|strong="H3808"\w* \w strong|strong="H5797"\w* \w branch|strong="H4294"\w* \w to|strong="H3318"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w scepter|strong="H7626"\w* \w to|strong="H3318"\w* \w rule|strong="H4910"\w*.’ +\m \w This|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w lamentation|strong="H7015"\w*, \w and|strong="H3318"\w* \w shall|strong="H3808"\w* \w be|strong="H1961"\w* \w for|strong="H3318"\w* \w a|strong="H3068"\w* \w lamentation|strong="H7015"\w*.” +\c 20 +\p +\v 1 \w In|strong="H3427"\w* \w the|strong="H6440"\w* \w seventh|strong="H7637"\w* \w year|strong="H8141"\w*, \w in|strong="H3427"\w* \w the|strong="H6440"\w* \w fifth|strong="H2549"\w* \w month|strong="H2320"\w*, \w the|strong="H6440"\w* \w tenth|strong="H6218"\w* \w day|strong="H2320"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w month|strong="H2320"\w*, some \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w elders|strong="H2205"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w came|strong="H1961"\w* \w to|strong="H3478"\w* \w inquire|strong="H1875"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3478"\w* \w sat|strong="H3427"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*. +\p +\v 2 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 3 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H2205"\w*, \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H5002"\w* \w elders|strong="H2205"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w tell|strong="H1696"\w* \w them|strong="H1121"\w*, ‘\w The|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H5002"\w*: “\w Is|strong="H3478"\w* \w it|strong="H1696"\w* \w to|strong="H1696"\w* \w inquire|strong="H1875"\w* \w of|strong="H1121"\w* \w me|strong="H1696"\w* \w that|strong="H3478"\w* \w you|strong="H1696"\w* \w have|strong="H1121"\w* \w come|strong="H3478"\w*? \w As|strong="H1121"\w* \w I|strong="H3541"\w* \w live|strong="H2416"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, “\w I|strong="H3541"\w* \w will|strong="H3478"\w* \w not|strong="H1696"\w* \w be|strong="H1121"\w* \w inquired|strong="H1875"\w* \w of|strong="H1121"\w* \w by|strong="H3478"\w* \w you|strong="H1696"\w*.”’ +\p +\v 4 “\w Will|strong="H1121"\w* \w you|strong="H3045"\w* \w judge|strong="H8199"\w* \w them|strong="H1121"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*? \w Will|strong="H1121"\w* \w you|strong="H3045"\w* \w judge|strong="H8199"\w* \w them|strong="H1121"\w*? Cause \w them|strong="H1121"\w* \w to|strong="H1121"\w* \w know|strong="H3045"\w* \w the|strong="H3045"\w* \w abominations|strong="H8441"\w* \w of|strong="H1121"\w* \w their|strong="H3045"\w* fathers. +\v 5 \w Tell|strong="H3045"\w* \w them|strong="H3027"\w*, ‘\w The|strong="H3069"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w In|strong="H3478"\w* \w the|strong="H3069"\w* \w day|strong="H3117"\w* \w when|strong="H3117"\w* \w I|strong="H3117"\w* \w chose|strong="H5375"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w swore|strong="H5375"\w* \w to|strong="H3478"\w* \w the|strong="H3069"\w* \w offspring|strong="H2233"\w* \w of|strong="H1004"\w* \w the|strong="H3069"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w*, \w and|strong="H3478"\w* \w made|strong="H3045"\w* \w myself|strong="H3045"\w* \w known|strong="H3045"\w* \w to|strong="H3478"\w* \w them|strong="H3027"\w* \w in|strong="H3478"\w* \w the|strong="H3069"\w* land \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*, \w when|strong="H3117"\w* \w I|strong="H3117"\w* \w swore|strong="H5375"\w* \w to|strong="H3478"\w* \w them|strong="H3027"\w*, saying, ‘\w I|strong="H3117"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*;’ +\v 6 \w in|strong="H3117"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w* \w I|strong="H3117"\w* \w swore|strong="H5375"\w* \w to|strong="H3318"\w* \w them|strong="H3027"\w* \w to|strong="H3318"\w* \w bring|strong="H3318"\w* \w them|strong="H3027"\w* \w out|strong="H3318"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* land \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w* \w into|strong="H3318"\w* \w a|strong="H3068"\w* land \w that|strong="H3605"\w* \w I|strong="H3117"\w* \w had|strong="H3027"\w* \w searched|strong="H8446"\w* \w out|strong="H3318"\w* \w for|strong="H3027"\w* \w them|strong="H3027"\w*, \w flowing|strong="H2100"\w* \w with|strong="H2100"\w* \w milk|strong="H2461"\w* \w and|strong="H3117"\w* \w honey|strong="H1706"\w*, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H3605"\w* \w glory|strong="H6643"\w* \w of|strong="H3117"\w* \w all|strong="H3605"\w* lands. +\v 7 \w I|strong="H4714"\w* said \w to|strong="H3068"\w* \w them|strong="H7993"\w*, ‘Each \w of|strong="H3068"\w* \w you|strong="H5869"\w* \w throw|strong="H7993"\w* \w away|strong="H7993"\w* \w the|strong="H3068"\w* \w abominations|strong="H8251"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w eyes|strong="H5869"\w*. Don’t \w defile|strong="H2930"\w* \w yourselves|strong="H5869"\w* \w with|strong="H3068"\w* \w the|strong="H3068"\w* \w idols|strong="H1544"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*. \w I|strong="H4714"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*.’ +\p +\v 8 “‘“\w But|strong="H3808"\w* \w they|strong="H3808"\w* \w rebelled|strong="H4784"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w* \w and|strong="H5869"\w* wouldn’t \w listen|strong="H8085"\w* \w to|strong="H5921"\w* \w me|strong="H5921"\w*. \w They|strong="H3808"\w* didn’t \w all|strong="H5921"\w* \w throw|strong="H7993"\w* \w away|strong="H7993"\w* \w the|strong="H5921"\w* \w abominations|strong="H8251"\w* \w of|strong="H5869"\w* \w their|strong="H8085"\w* \w eyes|strong="H5869"\w*. \w They|strong="H3808"\w* \w also|strong="H5869"\w* didn’t \w forsake|strong="H5800"\w* \w the|strong="H5921"\w* \w idols|strong="H1544"\w* \w of|strong="H5869"\w* \w Egypt|strong="H4714"\w*. \w Then|strong="H8085"\w* \w I|strong="H5921"\w* \w said|strong="H8085"\w* \w I|strong="H5921"\w* would \w pour|strong="H8210"\w* \w out|strong="H8210"\w* \w my|strong="H8085"\w* \w wrath|strong="H2534"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, \w to|strong="H5921"\w* \w accomplish|strong="H3615"\w* \w my|strong="H8085"\w* \w anger|strong="H2534"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H5869"\w* \w the|strong="H5921"\w* land \w of|strong="H5869"\w* \w Egypt|strong="H4714"\w*. +\v 9 \w But|strong="H1992"\w* \w I|strong="H3045"\w* \w worked|strong="H6213"\w* \w for|strong="H6213"\w* \w my|strong="H3045"\w* \w name|strong="H8034"\w*’s \w sake|strong="H4616"\w*, \w that|strong="H3045"\w* \w it|strong="H6213"\w* \w should|strong="H6213"\w* \w not|strong="H1115"\w* \w be|strong="H8034"\w* \w profaned|strong="H2490"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w sight|strong="H5869"\w* \w of|strong="H5869"\w* \w the|strong="H6213"\w* \w nations|strong="H1471"\w* \w among|strong="H8432"\w* \w which|strong="H1471"\w* \w they|strong="H1992"\w* \w were|strong="H5869"\w*, \w in|strong="H6213"\w* \w whose|strong="H1471"\w* \w sight|strong="H5869"\w* \w I|strong="H3045"\w* \w made|strong="H6213"\w* \w myself|strong="H3045"\w* \w known|strong="H3045"\w* \w to|strong="H3318"\w* \w them|strong="H1992"\w* \w in|strong="H6213"\w* \w bringing|strong="H3318"\w* \w them|strong="H1992"\w* \w out|strong="H3318"\w* \w of|strong="H5869"\w* \w the|strong="H6213"\w* land \w of|strong="H5869"\w* \w Egypt|strong="H4714"\w*. +\v 10 \w So|strong="H3318"\w* \w I|strong="H4714"\w* caused \w them|strong="H3318"\w* \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4057"\w* \w the|strong="H3318"\w* land \w of|strong="H4057"\w* \w Egypt|strong="H4714"\w* \w and|strong="H4714"\w* \w brought|strong="H3318"\w* \w them|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H3318"\w* \w wilderness|strong="H4057"\w*. +\v 11 \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w my|strong="H5414"\w* \w statutes|strong="H2708"\w* \w and|strong="H4941"\w* \w showed|strong="H6213"\w* \w them|strong="H5414"\w* \w my|strong="H5414"\w* \w ordinances|strong="H4941"\w*, \w which|strong="H2708"\w* if \w a|strong="H3068"\w* \w man|strong="H3045"\w* \w does|strong="H6213"\w*, \w he|strong="H6213"\w* \w will|strong="H5414"\w* \w live|strong="H2425"\w* \w in|strong="H6213"\w* \w them|strong="H5414"\w*. +\v 12 \w Moreover|strong="H1571"\w* \w also|strong="H1571"\w* \w I|strong="H3588"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w my|strong="H5414"\w* \w Sabbaths|strong="H7676"\w*, \w to|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* sign \w between|strong="H3045"\w* \w me|strong="H5414"\w* \w and|strong="H3068"\w* \w them|strong="H5414"\w*, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w might|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w sanctifies|strong="H6942"\w* \w them|strong="H5414"\w*. +\p +\v 13 “‘“\w But|strong="H3808"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w rebelled|strong="H4784"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*. \w They|strong="H3808"\w* didn’t \w walk|strong="H1980"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* \w statutes|strong="H2708"\w* \w and|strong="H1980"\w* \w they|strong="H3808"\w* \w rejected|strong="H3988"\w* \w my|strong="H5921"\w* \w ordinances|strong="H4941"\w*, \w which|strong="H1004"\w* if \w a|strong="H3068"\w* man keeps, \w he|strong="H6213"\w* \w shall|strong="H3478"\w* \w live|strong="H2425"\w* \w in|strong="H5921"\w* \w them|strong="H5921"\w*. \w They|strong="H3808"\w* \w greatly|strong="H3966"\w* \w profaned|strong="H2490"\w* \w my|strong="H5921"\w* \w Sabbaths|strong="H7676"\w*. \w Then|strong="H1980"\w* \w I|strong="H5921"\w* said \w I|strong="H5921"\w* \w would|strong="H3478"\w* \w pour|strong="H8210"\w* \w out|strong="H8210"\w* \w my|strong="H5921"\w* \w wrath|strong="H2534"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*, \w to|strong="H1980"\w* \w consume|strong="H3615"\w* \w them|strong="H5921"\w*. +\v 14 \w But|strong="H1115"\w* \w I|strong="H6213"\w* \w worked|strong="H6213"\w* \w for|strong="H6213"\w* \w my|strong="H3318"\w* \w name|strong="H8034"\w*’s \w sake|strong="H4616"\w*, \w that|strong="H1471"\w* \w it|strong="H6213"\w* \w should|strong="H6213"\w* \w not|strong="H1115"\w* \w be|strong="H8034"\w* \w profaned|strong="H2490"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w sight|strong="H5869"\w* \w of|strong="H5869"\w* \w the|strong="H6213"\w* \w nations|strong="H1471"\w*, \w in|strong="H6213"\w* \w whose|strong="H1471"\w* \w sight|strong="H5869"\w* \w I|strong="H6213"\w* \w brought|strong="H3318"\w* \w them|strong="H6213"\w* \w out|strong="H3318"\w*. +\v 15 \w Moreover|strong="H1571"\w* \w also|strong="H1571"\w* \w I|strong="H5414"\w* \w swore|strong="H5375"\w* \w to|strong="H5414"\w* \w them|strong="H5414"\w* \w in|strong="H3027"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w* \w that|strong="H3605"\w* \w I|strong="H5414"\w* \w would|strong="H3605"\w* \w not|strong="H1115"\w* \w bring|strong="H5375"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H3605"\w* land \w which|strong="H1931"\w* \w I|strong="H5414"\w* \w had|strong="H5414"\w* \w given|strong="H5414"\w* \w them|strong="H5414"\w*, \w flowing|strong="H2100"\w* \w with|strong="H2100"\w* \w milk|strong="H2461"\w* \w and|strong="H3027"\w* \w honey|strong="H1706"\w*, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H3605"\w* \w glory|strong="H6643"\w* \w of|strong="H3027"\w* \w all|strong="H3605"\w* lands, +\v 16 \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w rejected|strong="H3988"\w* \w my|strong="H2490"\w* \w ordinances|strong="H4941"\w*, \w and|strong="H1980"\w* didn’t \w walk|strong="H1980"\w* \w in|strong="H1980"\w* \w my|strong="H2490"\w* \w statutes|strong="H2708"\w*, \w and|strong="H1980"\w* \w profaned|strong="H2490"\w* \w my|strong="H2490"\w* \w Sabbaths|strong="H7676"\w*; \w for|strong="H3588"\w* \w their|strong="H3588"\w* \w heart|strong="H3820"\w* \w went|strong="H1980"\w* \w after|strong="H3588"\w* \w their|strong="H3588"\w* \w idols|strong="H1544"\w*. +\v 17 Nevertheless \w my|strong="H5921"\w* \w eye|strong="H5869"\w* \w spared|strong="H2347"\w* \w them|strong="H5921"\w*, \w and|strong="H5869"\w* \w I|strong="H5921"\w* didn’t \w destroy|strong="H7843"\w* \w them|strong="H5921"\w*. \w I|strong="H5921"\w* didn’t \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w full|strong="H3617"\w* \w end|strong="H3617"\w* \w of|strong="H5869"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*. +\v 18 \w I|strong="H1121"\w* said \w to|strong="H3212"\w* \w their|strong="H8104"\w* \w children|strong="H1121"\w* \w in|strong="H3212"\w* \w the|strong="H8104"\w* \w wilderness|strong="H4057"\w*, ‘Don’t \w walk|strong="H3212"\w* \w in|strong="H3212"\w* \w the|strong="H8104"\w* \w statutes|strong="H2706"\w* \w of|strong="H1121"\w* \w your|strong="H8104"\w* fathers. Don’t \w observe|strong="H8104"\w* \w their|strong="H8104"\w* \w ordinances|strong="H4941"\w* \w or|strong="H1121"\w* \w defile|strong="H2930"\w* \w yourselves|strong="H2930"\w* \w with|strong="H3212"\w* \w their|strong="H8104"\w* \w idols|strong="H1544"\w*. +\v 19 \w I|strong="H3068"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \w Walk|strong="H3212"\w* \w in|strong="H3068"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w*, \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w ordinances|strong="H4941"\w*, \w and|strong="H3068"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w*. +\v 20 \w Make|strong="H3045"\w* \w my|strong="H3068"\w* \w Sabbaths|strong="H7676"\w* \w holy|strong="H6942"\w*. \w They|strong="H3588"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* sign \w between|strong="H3045"\w* \w me|strong="H1961"\w* \w and|strong="H3068"\w* \w you|strong="H3588"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H1961"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*.’ +\p +\v 21 “‘“\w But|strong="H3808"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w rebelled|strong="H4784"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*. \w They|strong="H3808"\w* didn’t \w walk|strong="H1980"\w* \w in|strong="H5921"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w*, \w and|strong="H1121"\w* didn’t \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w ordinances|strong="H4941"\w* \w to|strong="H1980"\w* \w do|strong="H6213"\w* \w them|strong="H5921"\w*, \w which|strong="H2708"\w* \w if|strong="H1121"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w does|strong="H6213"\w*, \w he|strong="H6213"\w* \w shall|strong="H1121"\w* \w live|strong="H2425"\w* \w in|strong="H5921"\w* \w them|strong="H5921"\w*. \w They|strong="H3808"\w* \w profaned|strong="H2490"\w* \w my|strong="H8104"\w* \w Sabbaths|strong="H7676"\w*. \w Then|strong="H1980"\w* \w I|strong="H5921"\w* said \w I|strong="H5921"\w* \w would|strong="H6213"\w* \w pour|strong="H8210"\w* \w out|strong="H8210"\w* \w my|strong="H8104"\w* \w wrath|strong="H2534"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, \w to|strong="H1980"\w* \w accomplish|strong="H6213"\w* \w my|strong="H8104"\w* \w anger|strong="H2534"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*. +\v 22 Nevertheless \w I|strong="H3027"\w* \w withdrew|strong="H7725"\w* \w my|strong="H7725"\w* \w hand|strong="H3027"\w* \w and|strong="H7725"\w* \w worked|strong="H6213"\w* \w for|strong="H6213"\w* \w my|strong="H7725"\w* \w name|strong="H8034"\w*’s \w sake|strong="H4616"\w*, \w that|strong="H1471"\w* \w it|strong="H6213"\w* \w should|strong="H6213"\w* \w not|strong="H1115"\w* \w be|strong="H3027"\w* \w profaned|strong="H2490"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w sight|strong="H5869"\w* \w of|strong="H3027"\w* \w the|strong="H6213"\w* \w nations|strong="H1471"\w*, \w in|strong="H6213"\w* \w whose|strong="H1471"\w* \w sight|strong="H5869"\w* \w I|strong="H3027"\w* \w brought|strong="H3318"\w* \w them|strong="H7725"\w* \w out|strong="H3318"\w*. +\v 23 \w Moreover|strong="H1571"\w* \w I|strong="H1571"\w* \w swore|strong="H5375"\w* \w to|strong="H3027"\w* \w them|strong="H3027"\w* \w in|strong="H3027"\w* \w the|strong="H5375"\w* \w wilderness|strong="H4057"\w*, \w that|strong="H1471"\w* \w I|strong="H1571"\w* would \w scatter|strong="H2219"\w* \w them|strong="H3027"\w* among \w the|strong="H5375"\w* \w nations|strong="H1471"\w* \w and|strong="H3027"\w* \w disperse|strong="H2219"\w* \w them|strong="H3027"\w* \w through|strong="H3027"\w* \w the|strong="H5375"\w* countries, +\v 24 \w because|strong="H3282"\w* \w they|strong="H3808"\w* \w had|strong="H1961"\w* \w not|strong="H3808"\w* \w executed|strong="H6213"\w* \w my|strong="H2490"\w* \w ordinances|strong="H4941"\w*, \w but|strong="H3808"\w* \w had|strong="H1961"\w* \w rejected|strong="H3988"\w* \w my|strong="H2490"\w* \w statutes|strong="H2708"\w*, \w and|strong="H4941"\w* \w had|strong="H1961"\w* \w profaned|strong="H2490"\w* \w my|strong="H2490"\w* \w Sabbaths|strong="H7676"\w*, \w and|strong="H4941"\w* \w their|strong="H1961"\w* \w eyes|strong="H5869"\w* \w were|strong="H1961"\w* \w after|strong="H1961"\w* \w their|strong="H1961"\w* fathers’ \w idols|strong="H1544"\w*. +\v 25 \w Moreover|strong="H1571"\w* \w also|strong="H1571"\w* \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w statutes|strong="H2706"\w* \w that|strong="H5414"\w* \w were|strong="H5414"\w* \w not|strong="H3808"\w* \w good|strong="H2896"\w*, \w and|strong="H4941"\w* \w ordinances|strong="H4941"\w* \w in|strong="H5414"\w* \w which|strong="H2706"\w* \w they|strong="H3808"\w* couldn’t \w live|strong="H2421"\w*. +\v 26 \w I|strong="H3045"\w* \w polluted|strong="H2930"\w* \w them|strong="H5674"\w* \w in|strong="H3068"\w* \w their|strong="H3605"\w* own \w gifts|strong="H4979"\w*, \w in|strong="H3068"\w* \w that|strong="H3045"\w* \w they|strong="H3068"\w* \w caused|strong="H5674"\w* \w all|strong="H3605"\w* \w that|strong="H3045"\w* opens \w the|strong="H3605"\w* \w womb|strong="H7356"\w* \w to|strong="H3068"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H3605"\w* fire, \w that|strong="H3045"\w* \w I|strong="H3045"\w* \w might|strong="H3068"\w* \w make|strong="H3045"\w* \w them|strong="H5674"\w* \w desolate|strong="H8074"\w*, \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w end|strong="H4616"\w* \w that|strong="H3045"\w* \w they|strong="H3068"\w* \w might|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3045"\w* \w I|strong="H3045"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.”’ +\p +\v 27 “\w Therefore|strong="H3651"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H3069"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w tell|strong="H1696"\w* \w them|strong="H1121"\w*, ‘\w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Moreover|strong="H3541"\w*, \w in|strong="H3478"\w* \w this|strong="H2063"\w* \w your|strong="H3478"\w* fathers \w have|strong="H1121"\w* \w blasphemed|strong="H1442"\w* \w me|strong="H1696"\w*, \w in|strong="H3478"\w* \w that|strong="H3651"\w* \w they|strong="H3651"\w* \w have|strong="H1121"\w* \w committed|strong="H4603"\w* \w a|strong="H3068"\w* \w trespass|strong="H4604"\w* \w against|strong="H1696"\w* \w me|strong="H1696"\w*. +\v 28 \w For|strong="H3027"\w* \w when|strong="H7200"\w* \w I|strong="H5414"\w* \w had|strong="H5414"\w* \w brought|strong="H5375"\w* \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H3605"\w* land \w which|strong="H8033"\w* \w I|strong="H5414"\w* \w swore|strong="H5375"\w* \w to|strong="H5414"\w* \w give|strong="H5414"\w* \w to|strong="H5414"\w* \w them|strong="H5414"\w*, \w then|strong="H5375"\w* \w they|strong="H8033"\w* \w saw|strong="H7200"\w* \w every|strong="H3605"\w* \w high|strong="H7311"\w* \w hill|strong="H1389"\w* \w and|strong="H3027"\w* \w every|strong="H3605"\w* \w thick|strong="H5687"\w* \w tree|strong="H6086"\w*, \w and|strong="H3027"\w* \w they|strong="H8033"\w* \w offered|strong="H2076"\w* \w there|strong="H8033"\w* \w their|strong="H3605"\w* \w sacrifices|strong="H2077"\w*, \w and|strong="H3027"\w* \w there|strong="H8033"\w* \w they|strong="H8033"\w* \w presented|strong="H5414"\w* \w the|strong="H3605"\w* \w provocation|strong="H3708"\w* \w of|strong="H3027"\w* \w their|strong="H3605"\w* \w offering|strong="H7133"\w*. \w There|strong="H8033"\w* \w they|strong="H8033"\w* \w also|strong="H3027"\w* \w made|strong="H7760"\w* \w their|strong="H3605"\w* pleasant \w aroma|strong="H7381"\w*, \w and|strong="H3027"\w* \w there|strong="H8033"\w* \w they|strong="H8033"\w* \w poured|strong="H5258"\w* \w out|strong="H5258"\w* \w their|strong="H3605"\w* \w drink|strong="H5262"\w* \w offerings|strong="H5262"\w*. +\v 29 \w Then|strong="H2088"\w* \w I|strong="H3117"\w* \w said|strong="H7121"\w* \w to|strong="H5704"\w* \w them|strong="H7121"\w*, ‘\w What|strong="H4100"\w* \w does|strong="H4100"\w* \w the|strong="H3117"\w* \w high|strong="H1116"\w* \w place|strong="H1116"\w* \w where|strong="H8033"\w* \w you|strong="H3117"\w* go mean?’ \w So|strong="H7121"\w* \w its|strong="H5704"\w* \w name|strong="H8034"\w* \w is|strong="H2088"\w* \w called|strong="H7121"\w* \w Bamah|strong="H1117"\w*\f + \fr 20:29 \ft “Bamah” means “High Place”.\f* \w to|strong="H5704"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w*.”’ +\p +\v 30 “\w Therefore|strong="H3651"\w* tell \w the|strong="H3069"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, ‘\w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Do|strong="H1870"\w* \w you|strong="H3651"\w* \w pollute|strong="H2930"\w* \w yourselves|strong="H2930"\w* \w in|strong="H3478"\w* \w the|strong="H3069"\w* \w way|strong="H1870"\w* \w of|strong="H1004"\w* \w your|strong="H2930"\w* fathers? \w Do|strong="H1870"\w* \w you|strong="H3651"\w* \w play|strong="H2181"\w* \w the|strong="H3069"\w* \w prostitute|strong="H2181"\w* \w after|strong="H1004"\w* \w their|strong="H1870"\w* \w abominations|strong="H8251"\w*? +\v 31 \w When|strong="H3117"\w* \w you|strong="H3605"\w* \w offer|strong="H5375"\w* \w your|strong="H3605"\w* \w gifts|strong="H4979"\w*, \w when|strong="H3117"\w* \w you|strong="H3605"\w* \w make|strong="H2930"\w* \w your|strong="H3605"\w* \w sons|strong="H1121"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H3605"\w* fire, \w do|strong="H3605"\w* \w you|strong="H3605"\w* \w pollute|strong="H2930"\w* \w yourselves|strong="H2930"\w* \w with|strong="H1004"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w idols|strong="H1544"\w* \w to|strong="H5704"\w* \w this|strong="H5674"\w* \w day|strong="H3117"\w*? \w Should|strong="H3117"\w* \w I|strong="H3117"\w* \w be|strong="H1121"\w* \w inquired|strong="H1875"\w* \w of|strong="H1121"\w* \w by|strong="H5674"\w* \w you|strong="H3605"\w*, \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*? \w As|strong="H5704"\w* \w I|strong="H3117"\w* \w live|strong="H2416"\w*, \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, \w I|strong="H3117"\w* \w will|strong="H3478"\w* \w not|strong="H5375"\w* \w be|strong="H1121"\w* \w inquired|strong="H1875"\w* \w of|strong="H1121"\w* \w by|strong="H5674"\w* \w you|strong="H3605"\w*! +\p +\v 32 “‘“\w That|strong="H1471"\w* \w which|strong="H1471"\w* \w comes|strong="H1961"\w* \w into|strong="H5927"\w* \w your|strong="H5921"\w* \w mind|strong="H7307"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w at|strong="H5921"\w* \w all|strong="H5921"\w*, \w in|strong="H5921"\w* \w that|strong="H1471"\w* \w you|strong="H5921"\w* say, ‘We \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*, \w as|strong="H1961"\w* \w the|strong="H5921"\w* \w families|strong="H4940"\w* \w of|strong="H7307"\w* \w the|strong="H5921"\w* countries, \w to|strong="H5927"\w* \w serve|strong="H8334"\w* \w wood|strong="H6086"\w* \w and|strong="H6086"\w* stone.’ +\v 33 \w As|strong="H4427"\w* \w I|strong="H5921"\w* \w live|strong="H2416"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, “\w surely|strong="H4427"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w mighty|strong="H2389"\w* \w hand|strong="H3027"\w*, \w with|strong="H5921"\w* \w an|strong="H5921"\w* \w outstretched|strong="H5186"\w* \w arm|strong="H2220"\w*, \w and|strong="H3027"\w* \w with|strong="H5921"\w* \w wrath|strong="H2534"\w* \w poured|strong="H8210"\w* \w out|strong="H5186"\w*, \w I|strong="H5921"\w* \w will|strong="H3027"\w* \w be|strong="H3808"\w* \w king|strong="H4427"\w* \w over|strong="H5921"\w* \w you|strong="H5921"\w*. +\v 34 \w I|strong="H3027"\w* \w will|strong="H5971"\w* \w bring|strong="H3318"\w* \w you|strong="H4480"\w* \w out|strong="H3318"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w peoples|strong="H5971"\w*, \w and|strong="H3027"\w* \w will|strong="H5971"\w* \w gather|strong="H6908"\w* \w you|strong="H4480"\w* \w out|strong="H3318"\w* \w of|strong="H3027"\w* \w the|strong="H4480"\w* countries \w in|strong="H3027"\w* \w which|strong="H5971"\w* \w you|strong="H4480"\w* \w are|strong="H5971"\w* \w scattered|strong="H6327"\w* \w with|strong="H3318"\w* \w a|strong="H3068"\w* \w mighty|strong="H2389"\w* \w hand|strong="H3027"\w*, \w with|strong="H3318"\w* \w an|strong="H4480"\w* \w outstretched|strong="H5186"\w* \w arm|strong="H2220"\w*, \w and|strong="H3027"\w* \w with|strong="H3318"\w* \w wrath|strong="H2534"\w* \w poured|strong="H8210"\w* \w out|strong="H3318"\w*. +\v 35 \w I|strong="H6440"\w* \w will|strong="H5971"\w* bring \w you|strong="H6440"\w* \w into|strong="H8199"\w* \w the|strong="H6440"\w* \w wilderness|strong="H4057"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w peoples|strong="H5971"\w*, \w and|strong="H5971"\w* \w there|strong="H8033"\w* \w I|strong="H6440"\w* \w will|strong="H5971"\w* \w enter|strong="H8199"\w* \w into|strong="H8199"\w* \w judgment|strong="H8199"\w* \w with|strong="H6440"\w* \w you|strong="H6440"\w* \w face|strong="H6440"\w* \w to|strong="H6440"\w* \w face|strong="H6440"\w*. +\v 36 Just \w as|strong="H3651"\w* \w I|strong="H3651"\w* \w entered|strong="H8199"\w* \w into|strong="H8199"\w* \w judgment|strong="H8199"\w* \w with|strong="H4714"\w* \w your|strong="H8199"\w* fathers \w in|strong="H4714"\w* \w the|strong="H5002"\w* \w wilderness|strong="H4057"\w* \w of|strong="H4057"\w* \w the|strong="H5002"\w* land \w of|strong="H4057"\w* \w Egypt|strong="H4714"\w*, \w so|strong="H3651"\w* \w I|strong="H3651"\w* \w will|strong="H4714"\w* \w enter|strong="H8199"\w* \w into|strong="H8199"\w* \w judgment|strong="H8199"\w* \w with|strong="H4714"\w* \w you|strong="H3651"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\v 37 “\w I|strong="H8478"\w* \w will|strong="H1285"\w* cause \w you|strong="H8478"\w* \w to|strong="H5674"\w* \w pass|strong="H5674"\w* \w under|strong="H8478"\w* \w the|strong="H8478"\w* \w rod|strong="H7626"\w*, \w and|strong="H1285"\w* \w I|strong="H8478"\w* \w will|strong="H1285"\w* \w bring|strong="H5674"\w* \w you|strong="H8478"\w* \w into|strong="H5674"\w* \w the|strong="H8478"\w* \w bond|strong="H4562"\w* \w of|strong="H7626"\w* \w the|strong="H8478"\w* \w covenant|strong="H1285"\w*. +\v 38 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w purge|strong="H1305"\w* \w out|strong="H3318"\w* \w from|strong="H4480"\w* \w among|strong="H4480"\w* \w you|strong="H3588"\w* \w the|strong="H3588"\w* \w rebels|strong="H4775"\w* \w and|strong="H3478"\w* \w those|strong="H4480"\w* \w who|strong="H3068"\w* disobey \w me|strong="H4480"\w*. \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w bring|strong="H3318"\w* \w them|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* land \w where|strong="H4033"\w* \w they|strong="H3588"\w* live, \w but|strong="H3588"\w* \w they|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* enter \w into|strong="H3318"\w* \w the|strong="H3588"\w* land \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*. \w Then|strong="H3318"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 39 “‘\w As|strong="H1004"\w* \w for|strong="H8034"\w* \w you|strong="H3808"\w*, \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w the|strong="H8085"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Go|strong="H3212"\w*, everyone \w serve|strong="H5647"\w* \w his|strong="H8085"\w* \w idols|strong="H1544"\w*, \w and|strong="H3478"\w* hereafter \w also|strong="H3541"\w*, if \w you|strong="H3808"\w* \w will|strong="H3478"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H3478"\w* \w me|strong="H3808"\w*; \w but|strong="H3808"\w* \w you|strong="H3808"\w* \w shall|strong="H3478"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w profane|strong="H2490"\w* \w my|strong="H8085"\w* \w holy|strong="H6944"\w* \w name|strong="H8034"\w* \w with|strong="H1004"\w* \w your|strong="H8085"\w* \w gifts|strong="H4979"\w* \w and|strong="H3478"\w* \w with|strong="H1004"\w* \w your|strong="H8085"\w* \w idols|strong="H1544"\w*. +\v 40 \w For|strong="H3588"\w* \w in|strong="H3478"\w* \w my|strong="H3605"\w* \w holy|strong="H6944"\w* \w mountain|strong="H2022"\w*, \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w mountain|strong="H2022"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w height|strong="H4791"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*,” \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, “\w there|strong="H8033"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w all|strong="H3605"\w* \w of|strong="H1004"\w* \w them|strong="H5647"\w*, \w shall|strong="H3478"\w* \w serve|strong="H5647"\w* \w me|strong="H1875"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* land. \w There|strong="H8033"\w* \w I|strong="H3588"\w* \w will|strong="H3478"\w* \w accept|strong="H7521"\w* \w them|strong="H5647"\w*, \w and|strong="H3478"\w* \w there|strong="H8033"\w* \w I|strong="H3588"\w* \w will|strong="H3478"\w* \w require|strong="H1875"\w* \w your|strong="H3605"\w* \w offerings|strong="H8641"\w* \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w first|strong="H7225"\w* \w fruits|strong="H7225"\w* \w of|strong="H1004"\w* \w your|strong="H3605"\w* \w offerings|strong="H8641"\w*, \w with|strong="H1004"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w*. +\v 41 \w I|strong="H4480"\w* \w will|strong="H1471"\w* \w accept|strong="H7521"\w* \w you|strong="H4480"\w* \w as|strong="H3318"\w* \w a|strong="H3068"\w* pleasant \w aroma|strong="H7381"\w* \w when|strong="H3318"\w* \w I|strong="H4480"\w* \w bring|strong="H3318"\w* \w you|strong="H4480"\w* \w out|strong="H3318"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w peoples|strong="H5971"\w* \w and|strong="H5971"\w* \w gather|strong="H6908"\w* \w you|strong="H4480"\w* \w out|strong="H3318"\w* \w of|strong="H5869"\w* \w the|strong="H4480"\w* countries \w in|strong="H5971"\w* \w which|strong="H1471"\w* \w you|strong="H4480"\w* \w have|strong="H5869"\w* \w been|strong="H5971"\w* \w scattered|strong="H6327"\w*. \w I|strong="H4480"\w* \w will|strong="H1471"\w* \w be|strong="H1471"\w* \w sanctified|strong="H6942"\w* \w in|strong="H5971"\w* \w you|strong="H4480"\w* \w in|strong="H5971"\w* \w the|strong="H4480"\w* \w sight|strong="H5869"\w* \w of|strong="H5869"\w* \w the|strong="H4480"\w* \w nations|strong="H1471"\w*. +\v 42 \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w bring|strong="H5375"\w* \w you|strong="H3588"\w* \w into|strong="H3027"\w* \w the|strong="H3588"\w* land \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w into|strong="H3027"\w* \w the|strong="H3588"\w* country \w which|strong="H3068"\w* \w I|strong="H3588"\w* \w swore|strong="H5375"\w* \w to|strong="H3478"\w* \w give|strong="H5414"\w* \w to|strong="H3478"\w* \w your|strong="H3068"\w* fathers. +\v 43 \w There|strong="H8033"\w* \w you|strong="H6440"\w* \w will|strong="H8033"\w* \w remember|strong="H2142"\w* \w your|strong="H3605"\w* \w ways|strong="H1870"\w*, \w and|strong="H6440"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w deeds|strong="H5949"\w* \w in|strong="H6213"\w* \w which|strong="H8033"\w* \w you|strong="H6440"\w* \w have|strong="H3605"\w* \w polluted|strong="H2930"\w* \w yourselves|strong="H2930"\w*. \w Then|strong="H6213"\w* \w you|strong="H6440"\w* \w will|strong="H8033"\w* \w loathe|strong="H6962"\w* \w yourselves|strong="H2930"\w* \w in|strong="H6213"\w* \w your|strong="H3605"\w* \w own|strong="H6440"\w* \w sight|strong="H6440"\w* \w for|strong="H6213"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w evils|strong="H7451"\w* \w that|strong="H3605"\w* \w you|strong="H6440"\w* \w have|strong="H3605"\w* \w committed|strong="H6213"\w*. +\v 44 \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w dealt|strong="H6213"\w* \w with|strong="H1004"\w* \w you|strong="H3588"\w* \w for|strong="H3588"\w* \w my|strong="H3068"\w* \w name|strong="H8034"\w*’s \w sake|strong="H4616"\w*, \w not|strong="H3808"\w* according \w to|strong="H3478"\w* \w your|strong="H3068"\w* \w evil|strong="H7451"\w* \w ways|strong="H1870"\w*, \w nor|strong="H3808"\w* according \w to|strong="H3478"\w* \w your|strong="H3068"\w* \w corrupt|strong="H7843"\w* \w doings|strong="H5949"\w*, \w you|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.’” +\p +\v 45 \w Yahweh|strong="H3068"\w*’s word came to me, saying, +\v 46 “Son of man, set your face toward the south, and preach toward the south, and prophesy against the forest of the field in the south. +\v 47 Tell the forest of the south, ‘Hear \w Yahweh|strong="H3068"\w*’s word: The Lord \w Yahweh|strong="H3068"\w* says, “Behold, I will kindle \w a|strong="H3068"\w* fire in you, and it will devour every green tree in you, and every dry tree. The burning flame will not be quenched, and all faces from the south to the north will be burned by it. +\v 48 All flesh will see that I, \w Yahweh|strong="H3068"\w*, have kindled it. It will not be quenched.”’” +\p +\v 49 Then I said, “Ah Lord \w Yahweh|strong="H3068"\w*! They say of me, ‘Isn’t he \w a|strong="H3068"\w* speaker of parables?’” +\c 21 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w set|strong="H7760"\w* \w your|strong="H7760"\w* \w face|strong="H6440"\w* \w toward|strong="H1870"\w* Jerusalem, \w and|strong="H1121"\w* \w preach|strong="H5197"\w* \w toward|strong="H1870"\w* \w the|strong="H6440"\w* sanctuaries, \w and|strong="H1121"\w* \w prophesy|strong="H5012"\w* \w against|strong="H6440"\w* \w the|strong="H6440"\w* \w land|strong="H7704"\w* \w of|strong="H1121"\w* Israel. +\v 3 \w Tell|strong="H8085"\w* \w the|strong="H3605"\w* \w land|strong="H6440"\w* \w of|strong="H3068"\w* Israel, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H3068"\w* \w against|strong="H6440"\w* \w you|strong="H6440"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* draw \w my|strong="H8085"\w* sword \w out|strong="H3518"\w* \w of|strong="H3068"\w* \w its|strong="H3605"\w* sheath, \w and|strong="H3068"\w* \w will|strong="H3068"\w* cut \w off|strong="H6440"\w* \w from|strong="H6440"\w* \w you|strong="H6440"\w* \w the|strong="H3605"\w* righteous \w and|strong="H3068"\w* \w the|strong="H3605"\w* wicked. +\v 4 \w Seeing|strong="H7200"\w* \w then|strong="H3588"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* cut \w off|strong="H7200"\w* \w from|strong="H3068"\w* \w you|strong="H3588"\w* \w the|strong="H3605"\w* righteous \w and|strong="H3068"\w* \w the|strong="H3605"\w* wicked, \w therefore|strong="H3588"\w* \w my|strong="H3605"\w* sword \w will|strong="H3068"\w* \w go|strong="H3068"\w* \w out|strong="H3518"\w* \w of|strong="H3068"\w* \w its|strong="H3605"\w* sheath \w against|strong="H3068"\w* \w all|strong="H3605"\w* \w flesh|strong="H1320"\w* \w from|strong="H3068"\w* \w the|strong="H3605"\w* south \w to|strong="H3068"\w* \w the|strong="H3605"\w* north. +\v 5 All flesh \w will|strong="H3808"\w* know \w that|strong="H1931"\w* \w I|strong="H3808"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3808"\w* drawn \w my|strong="H3808"\w* sword \w out|strong="H3808"\w* \w of|strong="H3069"\w* \w its|strong="H3808"\w* sheath. \w It|strong="H1931"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* return \w any|strong="H3808"\w* \w more|strong="H3808"\w*.”’ +\p +\v 6 “\w Therefore|strong="H3068"\w* sigh, \w you|strong="H1697"\w* son \w of|strong="H3068"\w* man. \w You|strong="H1697"\w* \w shall|strong="H3068"\w* sigh \w before|strong="H1961"\w* \w their|strong="H3068"\w* eyes \w with|strong="H3068"\w* \w a|strong="H3068"\w* broken heart\f + \fr 21:6 \ft literally, the breaking of your thighs\f* \w and|strong="H3068"\w* \w with|strong="H3068"\w* bitterness. +\v 7 \w It|strong="H7760"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w*, \w when|strong="H1121"\w* \w they|strong="H3478"\w* ask \w you|strong="H6440"\w*, ‘Why do \w you|strong="H6440"\w* sigh?’ \w that|strong="H3478"\w* \w you|strong="H6440"\w* \w shall|strong="H1121"\w* \w say|strong="H3478"\w*, ‘\w Because|strong="H6440"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* news, \w for|strong="H6440"\w* \w it|strong="H7760"\w* \w comes|strong="H6440"\w*! \w Every|strong="H7760"\w* heart \w will|strong="H3478"\w* melt, \w all|strong="H6440"\w* hands \w will|strong="H3478"\w* \w be|strong="H1121"\w* feeble, \w every|strong="H7760"\w* spirit \w will|strong="H3478"\w* faint, \w and|strong="H1121"\w* \w all|strong="H6440"\w* knees \w will|strong="H3478"\w* \w be|strong="H1121"\w* weak \w as|strong="H3389"\w* water. Behold, \w it|strong="H7760"\w* \w comes|strong="H6440"\w*, \w and|strong="H1121"\w* \w it|strong="H7760"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w done|strong="H7760"\w*, says \w the|strong="H6440"\w* Lord \w Yahweh|strong="H3068"\w*.’” +\p +\v 8 \w Yahweh|strong="H3068"\w*’s word \w came|strong="H3318"\w* \w to|strong="H3318"\w* \w me|strong="H4480"\w*, saying, +\v 9 “Son \w of|strong="H4480"\w* \w man|strong="H7563"\w*, prophesy, \w and|strong="H2719"\w* say, ‘\w Yahweh|strong="H3068"\w* \w says|strong="H3282"\w*: +\q1 “\w A|strong="H3068"\w* \w sword|strong="H2719"\w*! \w A|strong="H3068"\w* \w sword|strong="H2719"\w*! +\q2 \w It|strong="H3651"\w* \w is|strong="H7563"\w* sharpened, +\q2 \w and|strong="H2719"\w* \w also|strong="H3318"\w* polished. +\q1 +\v 10 \w It|strong="H3588"\w* \w is|strong="H3068"\w* sharpened \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w may|strong="H3068"\w* \w make|strong="H3045"\w* \w a|strong="H3068"\w* slaughter. +\q2 \w It|strong="H3588"\w* \w is|strong="H3068"\w* polished \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w may|strong="H3068"\w* \w be|strong="H3808"\w* \w as|strong="H3068"\w* lightning. +\q1 \w Should|strong="H3068"\w* \w we|strong="H3068"\w* \w then|strong="H3318"\w* \w make|strong="H3045"\w* mirth? +\q2 \w The|strong="H3605"\w* rod \w of|strong="H3068"\w* \w my|strong="H3605"\w* son condemns \w every|strong="H3605"\w* tree. +\q1 +\v 11 \w It|strong="H5869"\w* \w is|strong="H1121"\w* given \w to|strong="H1121"\w* \w be|strong="H1121"\w* polished, +\q2 \w that|strong="H1121"\w* \w it|strong="H5869"\w* \w may|strong="H1121"\w* \w be|strong="H1121"\w* handled. +\q1 \w The|strong="H5869"\w* sword \w is|strong="H1121"\w* sharpened. +\q2 Yes, \w it|strong="H5869"\w* \w is|strong="H1121"\w* polished +\q2 \w to|strong="H1121"\w* give \w it|strong="H5869"\w* into \w the|strong="H5869"\w* hand \w of|strong="H1121"\w* \w the|strong="H5869"\w* killer.”’ +\q1 +\v 12 Cry \w and|strong="H3027"\w* wail, son \w of|strong="H3027"\w* \w man|strong="H3605"\w*; +\q2 \w for|strong="H3588"\w* \w it|strong="H5921"\w* \w is|strong="H3820"\w* \w on|strong="H5921"\w* \w my|strong="H3605"\w* \w people|strong="H3820"\w*. +\q2 \w It|strong="H5921"\w* \w is|strong="H3820"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* princes \w of|strong="H3027"\w* Israel. +\q1 \w They|strong="H3588"\w* \w are|strong="H3027"\w* \w delivered|strong="H3027"\w* \w over|strong="H5921"\w* \w to|strong="H3212"\w* \w the|strong="H3605"\w* \w sword|strong="H3027"\w* \w with|strong="H5921"\w* \w my|strong="H3605"\w* \w people|strong="H3820"\w*. +\q2 \w Therefore|strong="H5921"\w* beat \w your|strong="H3605"\w* thigh. +\b +\p +\v 13 “\w For|strong="H3068"\w* \w there|strong="H1961"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* trial. \w What|strong="H1697"\w* \w if|strong="H1961"\w* \w even|strong="H3068"\w* \w the|strong="H3068"\w* rod \w that|strong="H3068"\w* condemns \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w no|strong="H1961"\w* \w more|strong="H1961"\w*?” \w says|strong="H1697"\w* \w the|strong="H3068"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 14 “\w You|strong="H1571"\w* \w therefore|strong="H1571"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w prophesy|strong="H5012"\w*, +\q2 \w and|strong="H1121"\w* strike \w your|strong="H1571"\w* hands \w together|strong="H1571"\w*. +\q1 Let \w the|strong="H3541"\w* \w sword|strong="H2719"\w* \w be|strong="H1121"\w* doubled \w the|strong="H3541"\w* third time, +\q2 \w the|strong="H3541"\w* \w sword|strong="H2719"\w* \w of|strong="H1121"\w* \w the|strong="H3541"\w* fatally wounded. +\q1 \w It|strong="H2719"\w* \w is|strong="H1571"\w* \w the|strong="H3541"\w* \w sword|strong="H2719"\w* \w of|strong="H1121"\w* \w the|strong="H3541"\w* great \w one|strong="H1121"\w* \w who|strong="H1121"\w* \w is|strong="H1571"\w* fatally wounded, +\q2 \w which|strong="H2719"\w* enters \w into|strong="H2719"\w* \w their|strong="H1571"\w* rooms. +\q1 +\v 15 \w I|strong="H3988"\w* \w have|strong="H1961"\w* set \w the|strong="H3605"\w* threatening \w sword|strong="H1300"\w* \w against|strong="H3605"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* gates, +\q2 \w that|strong="H3605"\w* \w their|strong="H3605"\w* heart \w may|strong="H1961"\w* melt, +\q2 \w and|strong="H1121"\w* \w their|strong="H3605"\w* stumblings \w be|strong="H1961"\w* multiplied. +\q1 Ah! \w It|strong="H1961"\w* \w is|strong="H3605"\w* \w made|strong="H1961"\w* \w as|strong="H1961"\w* \w lightning|strong="H1300"\w*. +\q2 \w It|strong="H1961"\w* \w is|strong="H3605"\w* pointed \w for|strong="H4616"\w* \w slaughter|strong="H2874"\w*. +\q1 +\v 16 Gather \w yourselves|strong="H3027"\w* \w together|strong="H3709"\w*. +\q2 \w Go|strong="H2719"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* right. +\q1 \w Set|strong="H5414"\w* \w yourselves|strong="H3027"\w* \w in|strong="H3027"\w* array. +\q2 \w Go|strong="H2719"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w left|strong="H5414"\w*, +\q2 wherever \w your|strong="H5414"\w* face \w is|strong="H1931"\w* \w set|strong="H5414"\w*. +\q1 +\v 17 \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w also|strong="H3478"\w* \w strike|strong="H5606"\w* \w my|strong="H3605"\w* hands \w together|strong="H2199"\w*, +\q2 \w and|strong="H1121"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w cause|strong="H3651"\w* \w my|strong="H3605"\w* wrath \w to|strong="H3478"\w* \w rest|strong="H1961"\w*. +\q2 \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H1961"\w* spoken \w it|strong="H1931"\w*.” +\p +\v 18 \w Yahweh|strong="H3068"\w*’s word \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w me|strong="H1961"\w* \w again|strong="H1961"\w*, saying, +\v 19 “\w Also|strong="H1121"\w*, \w you|strong="H5221"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, appoint \w two|strong="H5221"\w* ways, \w that|strong="H1931"\w* \w the|strong="H5221"\w* \w sword|strong="H2719"\w* \w of|strong="H1121"\w* \w the|strong="H5221"\w* king \w of|strong="H1121"\w* Babylon \w may|strong="H1121"\w* come. \w They|strong="H1931"\w* both \w will|strong="H2719"\w* come \w out|strong="H1419"\w* \w of|strong="H1121"\w* \w one|strong="H7992"\w* land, \w and|strong="H1121"\w* mark \w out|strong="H1419"\w* \w a|strong="H3068"\w* place. Mark \w it|strong="H1931"\w* \w out|strong="H1419"\w* \w at|strong="H1121"\w* \w the|strong="H5221"\w* head \w of|strong="H1121"\w* \w the|strong="H5221"\w* way \w to|strong="H1121"\w* \w the|strong="H5221"\w* \w city|strong="H1931"\w*. +\v 20 \w You|strong="H5414"\w* \w shall|strong="H3820"\w* \w appoint|strong="H5414"\w* \w a|strong="H3068"\w* \w way|strong="H5921"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w* \w to|strong="H5921"\w* come \w to|strong="H5921"\w* Rabbah \w of|strong="H8179"\w* \w the|strong="H3605"\w* children \w of|strong="H8179"\w* Ammon, \w and|strong="H2719"\w* \w to|strong="H5921"\w* Judah \w in|strong="H5921"\w* \w Jerusalem|strong="H4616"\w* \w the|strong="H3605"\w* fortified. +\v 21 \w For|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H6440"\w* \w of|strong="H6440"\w* Babylon stood \w at|strong="H6440"\w* \w the|strong="H6440"\w* parting \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w way|strong="H6440"\w*, \w at|strong="H6440"\w* \w the|strong="H6440"\w* \w head|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* two ways, \w to|strong="H6440"\w* use divination. \w He|strong="H6440"\w* shook \w the|strong="H6440"\w* arrows back \w and|strong="H6440"\w* \w forth|strong="H6440"\w*. \w He|strong="H6440"\w* consulted \w the|strong="H6440"\w* teraphim.\f + \fr 21:21 \ft teraphim were household idols that may have been associated with inheritance rights to the household property.\f* \w He|strong="H6440"\w* \w looked|strong="H6440"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* liver. +\v 22 \w In|strong="H3068"\w* \w his|strong="H3068"\w* \w right|strong="H3068"\w* \w hand|strong="H3709"\w* \w was|strong="H3068"\w* \w the|strong="H5221"\w* lot \w for|strong="H3068"\w* Jerusalem, \w to|strong="H1696"\w* \w set|strong="H5117"\w* battering rams, \w to|strong="H1696"\w* open \w the|strong="H5221"\w* mouth \w in|strong="H3068"\w* \w the|strong="H5221"\w* \w slaughter|strong="H5221"\w*, \w to|strong="H1696"\w* \w lift|strong="H3068"\w* up \w the|strong="H5221"\w* voice \w with|strong="H3068"\w* shouting, \w to|strong="H1696"\w* \w set|strong="H5117"\w* battering rams \w against|strong="H1696"\w* \w the|strong="H5221"\w* gates, \w to|strong="H1696"\w* \w cast|strong="H3068"\w* up mounds, \w and|strong="H3068"\w* \w to|strong="H1696"\w* build forts. +\v 23 \w It|strong="H1961"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w to|strong="H3068"\w* \w them|strong="H1961"\w* \w as|strong="H1697"\w* \w a|strong="H3068"\w* false divination \w in|strong="H3068"\w* \w their|strong="H3068"\w* sight, \w who|strong="H3068"\w* \w have|strong="H1961"\w* sworn oaths \w to|strong="H3068"\w* \w them|strong="H1961"\w*; \w but|strong="H1961"\w* \w he|strong="H3068"\w* brings iniquity \w to|strong="H3068"\w* memory, \w that|strong="H3068"\w* \w they|strong="H3068"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w taken|strong="H1961"\w*. +\p +\v 24 “Therefore \w the|strong="H7760"\w* Lord \w Yahweh|strong="H3068"\w* says: ‘\w Because|strong="H3027"\w* \w you|strong="H7760"\w* \w have|strong="H1121"\w* caused \w your|strong="H7760"\w* iniquity \w to|strong="H3318"\w* \w be|strong="H3027"\w* remembered, \w in|strong="H4428"\w* \w that|strong="H4428"\w* \w your|strong="H7760"\w* transgressions \w are|strong="H1121"\w* uncovered, \w so|strong="H3318"\w* \w that|strong="H4428"\w* \w in|strong="H4428"\w* \w all|strong="H1254"\w* \w your|strong="H7760"\w* doings \w your|strong="H7760"\w* sins appear; \w because|strong="H3027"\w* \w you|strong="H7760"\w* \w have|strong="H1121"\w* \w come|strong="H3318"\w* \w to|strong="H3318"\w* memory, \w you|strong="H7760"\w* \w will|strong="H4428"\w* \w be|strong="H3027"\w* \w taken|strong="H7760"\w* \w with|strong="H3318"\w* \w the|strong="H7760"\w* \w hand|strong="H3027"\w*. +\p +\v 25 “‘\w You|strong="H7760"\w*, deadly wounded wicked \w one|strong="H1121"\w*, \w the|strong="H7760"\w* prince \w of|strong="H1121"\w* Israel, \w whose|strong="H1121"\w* day \w has|strong="H3063"\w* \w come|strong="H3063"\w*, \w in|strong="H1121"\w* \w the|strong="H7760"\w* time \w of|strong="H1121"\w* \w the|strong="H7760"\w* iniquity \w of|strong="H1121"\w* \w the|strong="H7760"\w* end, +\v 26 \w the|strong="H7200"\w* Lord \w Yahweh|strong="H3068"\w* says: “Remove \w the|strong="H7200"\w* turban, \w and|strong="H4428"\w* \w take|strong="H5975"\w* \w off|strong="H7200"\w* \w the|strong="H7200"\w* crown. \w This|strong="H7200"\w* \w will|strong="H4428"\w* \w not|strong="H3588"\w* \w be|strong="H4428"\w* \w as|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H4428"\w*. Exalt \w that|strong="H3588"\w* \w which|strong="H3588"\w* \w is|strong="H1870"\w* low, \w and|strong="H4428"\w* humble \w that|strong="H3588"\w* \w which|strong="H3588"\w* \w is|strong="H1870"\w* \w high|strong="H7218"\w*. +\v 27 \w I|strong="H5921"\w* \w will|strong="H1961"\w* overturn, overturn, overturn \w it|strong="H7760"\w*. \w This|strong="H7760"\w* \w also|strong="H3389"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w no|strong="H7760"\w* \w more|strong="H5921"\w*, \w until|strong="H5921"\w* \w he|strong="H3389"\w* \w comes|strong="H1961"\w* \w whose|strong="H8179"\w* \w right|strong="H3225"\w* \w it|strong="H7760"\w* \w is|strong="H1961"\w*; \w and|strong="H6963"\w* \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w give|strong="H7760"\w* \w it|strong="H7760"\w*.”’ +\p +\v 28 “\w You|strong="H5869"\w*, son \w of|strong="H5869"\w* man, prophesy \w and|strong="H5869"\w* say, ‘\w The|strong="H2142"\w* Lord \w Yahweh|strong="H3068"\w* says \w this|strong="H1931"\w* concerning \w the|strong="H2142"\w* children \w of|strong="H5869"\w* Ammon, \w and|strong="H5869"\w* concerning \w their|strong="H2142"\w* reproach: +\q1 “\w A|strong="H3068"\w* sword! \w A|strong="H3068"\w* sword \w is|strong="H1931"\w* drawn! +\q2 \w It|strong="H1931"\w* \w is|strong="H1931"\w* polished \w for|strong="H5869"\w* \w the|strong="H2142"\w* slaughter, +\q1 \w to|strong="H1961"\w* \w cause|strong="H1961"\w* \w it|strong="H1931"\w* \w to|strong="H1961"\w* devour, +\q2 \w that|strong="H1931"\w* \w it|strong="H1931"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* lightning; +\q1 +\v 29 \w while|strong="H3541"\w* \w they|strong="H3651"\w* \w see|strong="H7200"\w* \w for|strong="H3605"\w* \w you|strong="H3605"\w* false \w visions|strong="H7200"\w*, +\q2 \w while|strong="H3541"\w* \w they|strong="H3651"\w* divine lies \w to|strong="H7200"\w* \w you|strong="H3605"\w*, +\q1 \w to|strong="H7200"\w* \w lay|strong="H8610"\w* \w you|strong="H3605"\w* \w on|strong="H7200"\w* \w the|strong="H3605"\w* necks \w of|strong="H3709"\w* \w the|strong="H3605"\w* wicked \w who|strong="H3605"\w* \w are|strong="H6588"\w* deadly wounded, +\q2 \w whose|strong="H3605"\w* day \w has|strong="H3605"\w* \w come|strong="H2142"\w* \w in|strong="H7200"\w* \w the|strong="H3605"\w* time \w of|strong="H3709"\w* \w the|strong="H3605"\w* \w iniquity|strong="H5771"\w* \w of|strong="H3709"\w* \w the|strong="H3605"\w* end. +\q1 +\v 30 Cause \w it|strong="H3117"\w* \w to|strong="H3478"\w* return into its sheath. +\q2 \w In|strong="H3478"\w* \w the|strong="H3117"\w* place where \w you|strong="H3117"\w* \w were|strong="H3478"\w* created, +\q2 \w in|strong="H3478"\w* \w the|strong="H3117"\w* land \w of|strong="H3117"\w* \w your|strong="H3117"\w* birth, \w I|strong="H3117"\w* \w will|strong="H3478"\w* judge \w you|strong="H3117"\w*. +\q1 +\v 31 \w I|strong="H3541"\w* \w will|strong="H3808"\w* pour \w out|strong="H5493"\w* \w my|strong="H5493"\w* indignation \w on|strong="H3069"\w* \w you|strong="H3808"\w*. +\q2 \w I|strong="H3541"\w* \w will|strong="H3808"\w* blow \w on|strong="H3069"\w* \w you|strong="H3808"\w* \w with|strong="H7311"\w* \w the|strong="H3069"\w* fire \w of|strong="H3069"\w* \w my|strong="H5493"\w* wrath. +\q1 \w I|strong="H3541"\w* \w will|strong="H3808"\w* deliver \w you|strong="H3808"\w* \w into|strong="H5493"\w* \w the|strong="H3069"\w* hand \w of|strong="H3069"\w* brutish men, +\q2 skillful \w to|strong="H3808"\w* destroy. +\q1 +\v 32 \w You|strong="H5414"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w for|strong="H5704"\w* fuel \w to|strong="H5704"\w* \w the|strong="H5414"\w* fire. +\q2 \w Your|strong="H5414"\w* blood \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w in|strong="H5414"\w* \w the|strong="H5414"\w* middle \w of|strong="H4941"\w* \w the|strong="H5414"\w* land. +\q1 \w You|strong="H5414"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* remembered \w no|strong="H3808"\w* \w more|strong="H3808"\w*; +\q2 \w for|strong="H5704"\w* \w I|strong="H5414"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H1961"\w* spoken \w it|strong="H5414"\w*.”’” +\c 22 +\p +\v 1 \w Moreover|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w You|strong="H3605"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w will|strong="H1121"\w* \w you|strong="H3605"\w* \w judge|strong="H8199"\w*? \w Will|strong="H1121"\w* \w you|strong="H3605"\w* \w judge|strong="H8199"\w* \w the|strong="H3605"\w* \w bloody|strong="H1818"\w* \w city|strong="H5892"\w*? \w Then|strong="H3045"\w* cause \w her|strong="H3605"\w* \w to|strong="H1121"\w* \w know|strong="H3045"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w abominations|strong="H8441"\w*. +\v 3 \w You|strong="H5921"\w* \w shall|strong="H5892"\w* say, ‘\w The|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w A|strong="H3068"\w* \w city|strong="H5892"\w* \w that|strong="H5892"\w* \w sheds|strong="H8210"\w* \w blood|strong="H1818"\w* \w within|strong="H8432"\w* \w herself|strong="H5921"\w*, \w that|strong="H5892"\w* \w her|strong="H5921"\w* \w time|strong="H6256"\w* \w may|strong="H6213"\w* \w come|strong="H5892"\w*, \w and|strong="H5892"\w* \w that|strong="H5892"\w* \w makes|strong="H6213"\w* \w idols|strong="H1544"\w* \w against|strong="H5921"\w* \w herself|strong="H5921"\w* \w to|strong="H6213"\w* \w defile|strong="H2930"\w* \w her|strong="H5921"\w*! +\v 4 \w You|strong="H5414"\w* \w have|strong="H1471"\w* \w become|strong="H2930"\w* guilty \w in|strong="H8141"\w* \w your|strong="H3605"\w* \w blood|strong="H1818"\w* \w that|strong="H3605"\w* \w you|strong="H5414"\w* \w have|strong="H1471"\w* \w shed|strong="H8210"\w*, \w and|strong="H3117"\w* \w are|strong="H3117"\w* \w defiled|strong="H2930"\w* \w in|strong="H8141"\w* \w your|strong="H3605"\w* \w idols|strong="H1544"\w* \w which|strong="H1471"\w* \w you|strong="H5414"\w* \w have|strong="H1471"\w* \w made|strong="H6213"\w*! \w You|strong="H5414"\w* \w have|strong="H1471"\w* \w caused|strong="H5414"\w* \w your|strong="H3605"\w* \w days|strong="H3117"\w* \w to|strong="H5704"\w* \w draw|strong="H7126"\w* \w near|strong="H7126"\w*, \w and|strong="H3117"\w* \w have|strong="H1471"\w* \w come|strong="H7126"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* end \w of|strong="H3117"\w* \w your|strong="H3605"\w* \w years|strong="H8141"\w*. \w Therefore|strong="H3651"\w* \w I|strong="H3117"\w* \w have|strong="H1471"\w* \w made|strong="H6213"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w reproach|strong="H2781"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*, \w and|strong="H3117"\w* \w a|strong="H3068"\w* \w mocking|strong="H7048"\w* \w to|strong="H5704"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* countries. +\v 5 \w Those|strong="H4480"\w* \w who|strong="H7350"\w* \w are|strong="H7227"\w* \w near|strong="H7138"\w* \w and|strong="H8034"\w* \w those|strong="H4480"\w* \w who|strong="H7350"\w* \w are|strong="H7227"\w* \w far|strong="H7350"\w* \w from|strong="H4480"\w* \w you|strong="H4480"\w* \w will|strong="H7227"\w* \w mock|strong="H7046"\w* \w you|strong="H4480"\w*, \w you|strong="H4480"\w* \w infamous|strong="H2931"\w* \w one|strong="H4480"\w*, \w full|strong="H7227"\w* \w of|strong="H8034"\w* \w tumult|strong="H4103"\w*. +\p +\v 6 “‘“\w Behold|strong="H2009"\w*, \w the|strong="H1961"\w* \w princes|strong="H5387"\w* \w of|strong="H1818"\w* \w Israel|strong="H3478"\w*, everyone according \w to|strong="H3478"\w* \w his|strong="H3478"\w* \w power|strong="H2220"\w*, \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w in|strong="H3478"\w* \w you|strong="H2009"\w* \w to|strong="H3478"\w* \w shed|strong="H8210"\w* \w blood|strong="H1818"\w*. +\v 7 \w In|strong="H6213"\w* \w you|strong="H6213"\w* have \w they|strong="H6213"\w* \w treated|strong="H7043"\w* father \w and|strong="H6213"\w* mother \w with|strong="H6213"\w* \w contempt|strong="H7043"\w*.\f + \fr 22:7 \ft Literally, \fqa made light of father and mother.\f* \w Among|strong="H8432"\w* \w you|strong="H6213"\w* \w they|strong="H6213"\w* have \w oppressed|strong="H3238"\w* \w the|strong="H6213"\w* \w foreigner|strong="H1616"\w*. \w In|strong="H6213"\w* \w you|strong="H6213"\w* \w they|strong="H6213"\w* have \w wronged|strong="H3238"\w* \w the|strong="H6213"\w* \w fatherless|strong="H3490"\w* \w and|strong="H6213"\w* \w the|strong="H6213"\w* widow. +\v 8 You \w have|strong="H7676"\w* despised \w my|strong="H2490"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w*, \w and|strong="H6944"\w* \w have|strong="H7676"\w* \w profaned|strong="H2490"\w* \w my|strong="H2490"\w* \w Sabbaths|strong="H7676"\w*. +\v 9 \w Slanderous|strong="H7400"\w* \w men|strong="H6213"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w in|strong="H6213"\w* \w you|strong="H6213"\w* \w to|strong="H1961"\w* \w shed|strong="H8210"\w* \w blood|strong="H1818"\w*. \w In|strong="H6213"\w* \w you|strong="H6213"\w* \w they|strong="H6213"\w* \w have|strong="H1961"\w* eaten \w on|strong="H1961"\w* \w the|strong="H6213"\w* \w mountains|strong="H2022"\w*. \w They|strong="H6213"\w* \w have|strong="H1961"\w* \w committed|strong="H6213"\w* \w lewdness|strong="H2154"\w* \w among|strong="H8432"\w* \w you|strong="H6213"\w*. +\v 10 \w In|strong="H6031"\w* \w you|strong="H1540"\w* have \w they|strong="H1540"\w* \w uncovered|strong="H1540"\w* \w their|strong="H1540"\w* fathers’ \w nakedness|strong="H6172"\w*. \w In|strong="H6031"\w* \w you|strong="H1540"\w* have \w they|strong="H1540"\w* \w humbled|strong="H6031"\w* \w her|strong="H1540"\w* \w who|strong="H2931"\w* \w was|strong="H2931"\w* \w unclean|strong="H2931"\w* \w in|strong="H6031"\w* \w her|strong="H1540"\w* \w impurity|strong="H5079"\w*. +\v 11 \w One|strong="H6213"\w* \w has|strong="H6213"\w* \w committed|strong="H6213"\w* \w abomination|strong="H8441"\w* \w with|strong="H6213"\w* \w his|strong="H6213"\w* \w neighbor|strong="H7453"\w*’s wife, \w and|strong="H6213"\w* \w another|strong="H7453"\w* \w has|strong="H6213"\w* \w lewdly|strong="H2154"\w* \w defiled|strong="H2930"\w* \w his|strong="H6213"\w* \w daughter-in-law|strong="H3618"\w*. \w Another|strong="H7453"\w* \w in|strong="H6213"\w* \w you|strong="H6213"\w* \w has|strong="H6213"\w* \w humbled|strong="H6031"\w* \w his|strong="H6213"\w* sister, \w his|strong="H6213"\w* father’s \w daughter|strong="H1323"\w*. +\v 12 \w In|strong="H7453"\w* \w you|strong="H3947"\w* \w have|strong="H3947"\w* \w they|strong="H3947"\w* \w taken|strong="H3947"\w* \w bribes|strong="H7810"\w* \w to|strong="H4616"\w* \w shed|strong="H8210"\w* \w blood|strong="H1818"\w*. \w You|strong="H3947"\w* \w have|strong="H3947"\w* \w taken|strong="H3947"\w* \w interest|strong="H5392"\w* \w and|strong="H1818"\w* \w increase|strong="H8636"\w*, \w and|strong="H1818"\w* \w you|strong="H3947"\w* \w have|strong="H3947"\w* greedily \w gained|strong="H1214"\w* \w of|strong="H1818"\w* \w your|strong="H3947"\w* \w neighbors|strong="H7453"\w* \w by|strong="H7453"\w* \w oppression|strong="H6233"\w*, \w and|strong="H1818"\w* \w have|strong="H3947"\w* \w forgotten|strong="H7911"\w* \w me|strong="H3947"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 13 “‘“\w Behold|strong="H2009"\w*, \w therefore|strong="H5921"\w* \w I|strong="H2009"\w* \w have|strong="H1961"\w* \w struck|strong="H5221"\w* \w my|strong="H5921"\w* \w hand|strong="H3709"\w* \w at|strong="H5921"\w* \w your|strong="H5921"\w* \w dishonest|strong="H1215"\w* \w gain|strong="H1215"\w* \w which|strong="H1818"\w* \w you|strong="H5921"\w* \w have|strong="H1961"\w* \w made|strong="H6213"\w*, \w and|strong="H6213"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w which|strong="H1818"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w shed|strong="H1818"\w* \w within|strong="H8432"\w* \w you|strong="H5921"\w*. +\v 14 \w Can|strong="H6213"\w* \w your|strong="H3068"\w* \w heart|strong="H3820"\w* \w endure|strong="H5975"\w*, \w or|strong="H3117"\w* \w can|strong="H6213"\w* \w your|strong="H3068"\w* \w hands|strong="H3027"\w* \w be|strong="H3027"\w* \w strong|strong="H2388"\w*, \w in|strong="H3068"\w* \w the|strong="H6213"\w* \w days|strong="H3117"\w* \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w deal|strong="H6213"\w* \w with|strong="H3068"\w* \w you|strong="H3117"\w*? \w I|strong="H3117"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w it|strong="H6213"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w it|strong="H6213"\w*. +\v 15 \w I|strong="H4480"\w* \w will|strong="H1471"\w* \w scatter|strong="H2219"\w* \w you|strong="H4480"\w* \w among|strong="H4480"\w* \w the|strong="H4480"\w* \w nations|strong="H1471"\w*, \w and|strong="H1471"\w* \w disperse|strong="H2219"\w* \w you|strong="H4480"\w* \w through|strong="H4480"\w* \w the|strong="H4480"\w* countries. \w I|strong="H4480"\w* \w will|strong="H1471"\w* purge \w your|strong="H4480"\w* \w filthiness|strong="H2932"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w you|strong="H4480"\w*. +\v 16 \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w profaned|strong="H2490"\w* \w in|strong="H3068"\w* \w yourself|strong="H3045"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w sight|strong="H5869"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w nations|strong="H1471"\w*. \w Then|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.”’” +\p +\v 17 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 18 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w has|strong="H1961"\w* \w become|strong="H1961"\w* \w dross|strong="H5509"\w* \w to|strong="H3478"\w* \w me|strong="H1961"\w*. \w All|strong="H3605"\w* \w of|strong="H1121"\w* \w them|strong="H8432"\w* \w are|strong="H1121"\w* \w bronze|strong="H5178"\w*, tin, \w iron|strong="H1270"\w*, \w and|strong="H1121"\w* \w lead|strong="H5777"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w furnace|strong="H3564"\w*. \w They|strong="H3478"\w* \w are|strong="H1121"\w* \w the|strong="H3605"\w* \w dross|strong="H5509"\w* \w of|strong="H1121"\w* \w silver|strong="H3701"\w*. +\v 19 \w Therefore|strong="H3651"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Because|strong="H3282"\w* \w you|strong="H3605"\w* \w have|strong="H1961"\w* \w all|strong="H3605"\w* \w become|strong="H1961"\w* \w dross|strong="H5509"\w*, \w therefore|strong="H3651"\w*, \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H1961"\w* \w gather|strong="H6908"\w* \w you|strong="H3605"\w* \w into|strong="H8432"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w Jerusalem|strong="H3389"\w*. +\v 20 \w As|strong="H3651"\w* \w they|strong="H3651"\w* \w gather|strong="H6908"\w* \w silver|strong="H3701"\w*, \w bronze|strong="H5178"\w*, \w iron|strong="H1270"\w*, \w lead|strong="H5777"\w*, \w and|strong="H3701"\w* tin \w into|strong="H8432"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w the|strong="H5921"\w* \w furnace|strong="H3564"\w*, \w to|strong="H5921"\w* \w blow|strong="H5301"\w* \w the|strong="H5921"\w* fire \w on|strong="H5921"\w* \w it|strong="H5921"\w*, \w to|strong="H5921"\w* \w melt|strong="H5413"\w* \w it|strong="H5921"\w*, \w so|strong="H3651"\w* \w I|strong="H5921"\w* \w will|strong="H2534"\w* \w gather|strong="H6908"\w* \w you|strong="H5921"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* \w anger|strong="H2534"\w* \w and|strong="H3701"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* \w wrath|strong="H2534"\w*, \w and|strong="H3701"\w* \w I|strong="H5921"\w* \w will|strong="H2534"\w* \w lay|strong="H3240"\w* \w you|strong="H5921"\w* \w there|strong="H8432"\w* \w and|strong="H3701"\w* \w melt|strong="H5413"\w* \w you|strong="H5921"\w*. +\v 21 Yes, \w I|strong="H5921"\w* \w will|strong="H5678"\w* \w gather|strong="H3664"\w* \w you|strong="H5921"\w*, \w and|strong="H5678"\w* \w blow|strong="H5301"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* fire \w of|strong="H8432"\w* \w my|strong="H5921"\w* \w wrath|strong="H5678"\w*, \w and|strong="H5678"\w* \w you|strong="H5921"\w* \w will|strong="H5678"\w* be \w melted|strong="H5413"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w it|strong="H5921"\w*. +\v 22 \w As|strong="H3651"\w* \w silver|strong="H3701"\w* \w is|strong="H3068"\w* \w melted|strong="H5413"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w furnace|strong="H3564"\w*, \w so|strong="H3651"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w melted|strong="H5413"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w it|strong="H5921"\w*; \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w poured|strong="H8210"\w* \w out|strong="H8210"\w* \w my|strong="H3068"\w* \w wrath|strong="H2534"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*.’” +\p +\v 23 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 24 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, tell \w her|strong="H1931"\w*, ‘\w You|strong="H3117"\w* \w are|strong="H3117"\w* \w a|strong="H3068"\w* land \w that|strong="H3117"\w* \w is|strong="H1931"\w* \w not|strong="H3808"\w* \w cleansed|strong="H2891"\w* \w nor|strong="H3808"\w* \w rained|strong="H1656"\w* \w on|strong="H3117"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w indignation|strong="H2195"\w*.’ +\v 25 \w There|strong="H8432"\w* \w is|strong="H5315"\w* \w a|strong="H3068"\w* \w conspiracy|strong="H7195"\w* \w of|strong="H8432"\w* \w her|strong="H3947"\w* \w prophets|strong="H5030"\w* \w within|strong="H8432"\w* \w it|strong="H8432"\w*, \w like|strong="H7580"\w* \w a|strong="H3068"\w* \w roaring|strong="H7580"\w* lion \w ravening|strong="H2963"\w* \w the|strong="H3947"\w* \w prey|strong="H2964"\w*. \w They|strong="H5315"\w* \w have|strong="H5030"\w* devoured \w souls|strong="H5315"\w*. \w They|strong="H5315"\w* \w take|strong="H3947"\w* \w treasure|strong="H2633"\w* \w and|strong="H5030"\w* \w precious|strong="H3366"\w* \w things|strong="H3366"\w*. \w They|strong="H5315"\w* \w have|strong="H5030"\w* \w made|strong="H7235"\w* \w many|strong="H7235"\w* widows \w within|strong="H8432"\w* \w it|strong="H8432"\w*. +\v 26 \w Her|strong="H3045"\w* \w priests|strong="H3548"\w* \w have|strong="H5869"\w* \w done|strong="H2554"\w* \w violence|strong="H2554"\w* \w to|strong="H2490"\w* \w my|strong="H3045"\w* \w law|strong="H8451"\w* \w and|strong="H3548"\w* \w have|strong="H5869"\w* \w profaned|strong="H2490"\w* \w my|strong="H3045"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w*. \w They|strong="H3808"\w* \w have|strong="H5869"\w* \w made|strong="H3045"\w* \w no|strong="H3808"\w* distinction \w between|strong="H8432"\w* \w the|strong="H8432"\w* \w holy|strong="H6944"\w* \w and|strong="H3548"\w* \w the|strong="H8432"\w* \w common|strong="H2455"\w*, \w neither|strong="H3808"\w* \w have|strong="H5869"\w* \w they|strong="H3808"\w* caused \w men|strong="H2490"\w* \w to|strong="H2490"\w* \w discern|strong="H3045"\w* \w between|strong="H8432"\w* \w the|strong="H8432"\w* \w unclean|strong="H2931"\w* \w and|strong="H3548"\w* \w the|strong="H8432"\w* \w clean|strong="H2889"\w*, \w and|strong="H3548"\w* \w have|strong="H5869"\w* \w hidden|strong="H5956"\w* \w their|strong="H8432"\w* \w eyes|strong="H5869"\w* \w from|strong="H5869"\w* \w my|strong="H3045"\w* \w Sabbaths|strong="H7676"\w*. \w So|strong="H3808"\w* \w I|strong="H3045"\w* am \w profaned|strong="H2490"\w* \w among|strong="H8432"\w* \w them|strong="H8432"\w*. +\v 27 \w Her|strong="H7130"\w* \w princes|strong="H8269"\w* \w within|strong="H7130"\w* \w it|strong="H7130"\w* \w are|strong="H8269"\w* \w like|strong="H8210"\w* \w wolves|strong="H2061"\w* \w ravening|strong="H2963"\w* \w the|strong="H7130"\w* \w prey|strong="H2964"\w*, \w to|strong="H4616"\w* \w shed|strong="H8210"\w* \w blood|strong="H1818"\w* \w and|strong="H1818"\w* \w to|strong="H4616"\w* \w destroy|strong="H2963"\w* \w souls|strong="H5315"\w*, \w that|strong="H5315"\w* \w they|strong="H5315"\w* \w may|strong="H5315"\w* \w get|strong="H1214"\w* \w dishonest|strong="H1215"\w* \w gain|strong="H1215"\w*. +\v 28 \w Her|strong="H2902"\w* \w prophets|strong="H5030"\w* \w have|strong="H3068"\w* \w plastered|strong="H2902"\w* \w for|strong="H3068"\w* \w them|strong="H3068"\w* \w with|strong="H3068"\w* \w whitewash|strong="H8602"\w*, \w seeing|strong="H2374"\w* \w false|strong="H7723"\w* \w visions|strong="H7723"\w*, \w and|strong="H3068"\w* \w divining|strong="H7080"\w* \w lies|strong="H3577"\w* \w to|strong="H1696"\w* \w them|strong="H3068"\w*, \w saying|strong="H1696"\w*, ‘\w The|strong="H3069"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*,’ \w when|strong="H1696"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w not|strong="H3808"\w* \w spoken|strong="H1696"\w*. +\v 29 \w The|strong="H3808"\w* \w people|strong="H5971"\w* \w of|strong="H5971"\w* \w the|strong="H3808"\w* land \w have|strong="H5971"\w* used \w oppression|strong="H6233"\w* \w and|strong="H4941"\w* \w exercised|strong="H1497"\w* \w robbery|strong="H1498"\w*. Yes, \w they|strong="H3808"\w* \w have|strong="H5971"\w* troubled \w the|strong="H3808"\w* \w poor|strong="H6041"\w* \w and|strong="H4941"\w* \w needy|strong="H6041"\w*, \w and|strong="H4941"\w* \w have|strong="H5971"\w* \w oppressed|strong="H6231"\w* \w the|strong="H3808"\w* \w foreigner|strong="H1616"\w* \w wrongfully|strong="H4941"\w*. +\p +\v 30 “\w I|strong="H3808"\w* \w sought|strong="H1245"\w* \w for|strong="H1157"\w* \w a|strong="H3068"\w* \w man|strong="H6440"\w* \w among|strong="H4672"\w* \w them|strong="H1992"\w* \w who|strong="H1992"\w* would \w build|strong="H1443"\w* \w up|strong="H5975"\w* \w the|strong="H6440"\w* \w wall|strong="H1447"\w* \w and|strong="H6440"\w* \w stand|strong="H5975"\w* \w in|strong="H4672"\w* \w the|strong="H6440"\w* \w gap|strong="H6556"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w for|strong="H1157"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*, \w that|strong="H3808"\w* \w I|strong="H3808"\w* would \w not|strong="H3808"\w* \w destroy|strong="H7843"\w* \w it|strong="H6440"\w*; \w but|strong="H3808"\w* \w I|strong="H3808"\w* \w found|strong="H4672"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w*. +\v 31 \w Therefore|strong="H5921"\w* \w I|strong="H5414"\w* \w have|strong="H5414"\w* \w poured|strong="H8210"\w* \w out|strong="H8210"\w* \w my|strong="H5414"\w* \w indignation|strong="H2195"\w* \w on|strong="H5921"\w* \w them|strong="H5414"\w*. \w I|strong="H5414"\w* \w have|strong="H5414"\w* \w consumed|strong="H3615"\w* \w them|strong="H5414"\w* \w with|strong="H5921"\w* \w the|strong="H5002"\w* fire \w of|strong="H7218"\w* \w my|strong="H5414"\w* \w wrath|strong="H5678"\w*. \w I|strong="H5414"\w* \w have|strong="H5414"\w* \w brought|strong="H5414"\w* \w their|strong="H5414"\w* own \w way|strong="H1870"\w* \w on|strong="H5921"\w* \w their|strong="H5414"\w* \w heads|strong="H7218"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\c 23 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w again|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w there|strong="H1961"\w* \w were|strong="H1961"\w* \w two|strong="H8147"\w* \w women|strong="H1323"\w*, \w the|strong="H1961"\w* \w daughters|strong="H1323"\w* \w of|strong="H1121"\w* \w one|strong="H1121"\w* mother. +\v 3 \w They|strong="H8033"\w* \w played|strong="H2181"\w* \w the|strong="H6213"\w* \w prostitute|strong="H2181"\w* \w in|strong="H6213"\w* \w Egypt|strong="H4714"\w*. \w They|strong="H8033"\w* \w played|strong="H2181"\w* \w the|strong="H6213"\w* \w prostitute|strong="H2181"\w* \w in|strong="H6213"\w* \w their|strong="H6213"\w* \w youth|strong="H5271"\w*. \w Their|strong="H6213"\w* \w breasts|strong="H7699"\w* \w were|strong="H4714"\w* \w fondled|strong="H1717"\w* \w there|strong="H8033"\w*, \w and|strong="H4714"\w* \w their|strong="H6213"\w* youthful \w nipples|strong="H1717"\w* \w were|strong="H4714"\w* caressed \w there|strong="H8033"\w*. +\v 4 \w Their|strong="H1961"\w* \w names|strong="H8034"\w* \w were|strong="H1961"\w* Oholah \w the|strong="H3205"\w* \w elder|strong="H1419"\w*, \w and|strong="H1121"\w* Oholibah \w her|strong="H3205"\w* sister. \w They|strong="H3389"\w* \w became|strong="H3205"\w* mine, \w and|strong="H1121"\w* \w they|strong="H3389"\w* \w bore|strong="H3205"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w daughters|strong="H1323"\w*. \w As|strong="H1961"\w* \w for|strong="H8034"\w* \w their|strong="H1961"\w* \w names|strong="H8034"\w*, \w Samaria|strong="H8111"\w* \w is|strong="H8034"\w* Oholah, \w and|strong="H1121"\w* \w Jerusalem|strong="H3389"\w* Oholibah. +\p +\v 5 “Oholah \w played|strong="H2181"\w* \w the|strong="H5921"\w* \w prostitute|strong="H2181"\w* \w when|strong="H5921"\w* \w she|strong="H5921"\w* was \w mine|strong="H8478"\w*. \w She|strong="H5921"\w* \w doted|strong="H5689"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w* \w lovers|strong="H5689"\w*, \w on|strong="H5921"\w* \w the|strong="H5921"\w* Assyrians \w her|strong="H5921"\w* \w neighbors|strong="H7138"\w*, +\v 6 \w who|strong="H3605"\w* \w were|strong="H5483"\w* \w clothed|strong="H3847"\w* \w with|strong="H3847"\w* \w blue|strong="H8504"\w*—\w governors|strong="H6346"\w* \w and|strong="H8504"\w* \w rulers|strong="H5461"\w*, \w all|strong="H3605"\w* \w of|strong="H3605"\w* \w them|strong="H3847"\w* \w desirable|strong="H2531"\w* \w young|strong="H2531"\w* \w men|strong="H3605"\w*, \w horsemen|strong="H6571"\w* \w riding|strong="H7392"\w* \w on|strong="H3847"\w* \w horses|strong="H5483"\w*. +\v 7 \w She|strong="H1544"\w* \w gave|strong="H5414"\w* \w herself|strong="H5921"\w* \w as|strong="H1121"\w* \w a|strong="H3068"\w* prostitute \w to|strong="H5921"\w* \w them|strong="H5414"\w*, \w all|strong="H3605"\w* \w of|strong="H1121"\w* \w them|strong="H5414"\w* \w the|strong="H3605"\w* \w choicest|strong="H4005"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* Assyria. \w She|strong="H1544"\w* \w defiled|strong="H2930"\w* \w herself|strong="H5921"\w* \w with|strong="H5921"\w* \w the|strong="H3605"\w* \w idols|strong="H1544"\w* \w of|strong="H1121"\w* \w whomever|strong="H3605"\w* \w she|strong="H1544"\w* \w lusted|strong="H5689"\w* \w after|strong="H5921"\w*. +\v 8 \w She|strong="H3588"\w* hasn’t \w left|strong="H5800"\w* \w her|strong="H5921"\w* prostitution \w since|strong="H3588"\w* \w leaving|strong="H5800"\w* \w Egypt|strong="H4714"\w*; \w for|strong="H3588"\w* \w in|strong="H5921"\w* \w her|strong="H5921"\w* \w youth|strong="H5271"\w* \w they|strong="H1992"\w* \w lay|strong="H7901"\w* \w with|strong="H6213"\w* \w her|strong="H5921"\w*. \w They|strong="H1992"\w* caressed \w her|strong="H5921"\w* youthful \w nipples|strong="H1717"\w* \w and|strong="H4714"\w* \w they|strong="H1992"\w* \w poured|strong="H8210"\w* \w out|strong="H8210"\w* \w their|strong="H1992"\w* prostitution \w on|strong="H5921"\w* \w her|strong="H5921"\w*. +\p +\v 9 “\w Therefore|strong="H3651"\w* \w I|strong="H5414"\w* \w delivered|strong="H5414"\w* \w her|strong="H5414"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w her|strong="H5414"\w* \w lovers|strong="H5689"\w*, \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w Assyrians|strong="H1121"\w* \w on|strong="H5921"\w* whom \w she|strong="H5921"\w* \w doted|strong="H5689"\w*. +\v 10 \w These|strong="H1992"\w* \w uncovered|strong="H1540"\w* \w her|strong="H1540"\w* \w nakedness|strong="H6172"\w*. \w They|strong="H1992"\w* \w took|strong="H3947"\w* \w her|strong="H1540"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w her|strong="H1540"\w* \w daughters|strong="H1323"\w*, \w and|strong="H1121"\w* \w they|strong="H1992"\w* \w killed|strong="H2026"\w* \w her|strong="H1540"\w* \w with|strong="H6213"\w* \w the|strong="H3947"\w* \w sword|strong="H2719"\w*. She \w became|strong="H1961"\w* \w a|strong="H3068"\w* \w byword|strong="H8034"\w* \w among|strong="H8034"\w* \w women|strong="H1323"\w*; \w for|strong="H6213"\w* \w they|strong="H1992"\w* \w executed|strong="H6213"\w* \w judgments|strong="H8196"\w* \w on|strong="H1961"\w* \w her|strong="H1540"\w*. +\p +\v 11 “\w Her|strong="H7200"\w* sister Oholibah \w saw|strong="H7200"\w* \w this|strong="H7200"\w*, yet she was \w more|strong="H4480"\w* \w corrupt|strong="H7843"\w* \w in|strong="H7200"\w* \w her|strong="H7200"\w* lusting \w than|strong="H4480"\w* she, \w and|strong="H7200"\w* \w in|strong="H7200"\w* \w her|strong="H7200"\w* prostitution which was \w more|strong="H4480"\w* \w depraved|strong="H7843"\w* \w than|strong="H4480"\w* \w the|strong="H7200"\w* prostitution \w of|strong="H4480"\w* \w her|strong="H7200"\w* sister. +\v 12 She \w lusted|strong="H5689"\w* after \w the|strong="H3605"\w* \w Assyrians|strong="H1121"\w*, \w governors|strong="H6346"\w* \w and|strong="H1121"\w* \w rulers|strong="H5461"\w*—\w her|strong="H3605"\w* \w neighbors|strong="H7138"\w*, \w clothed|strong="H3847"\w* \w most|strong="H3847"\w* \w gorgeously|strong="H4358"\w*, \w horsemen|strong="H6571"\w* \w riding|strong="H7392"\w* \w on|strong="H3847"\w* \w horses|strong="H5483"\w*, \w all|strong="H3605"\w* \w of|strong="H1121"\w* \w them|strong="H1121"\w* \w desirable|strong="H2531"\w* \w young|strong="H1121"\w* \w men|strong="H1121"\w*. +\v 13 \w I|strong="H3588"\w* \w saw|strong="H7200"\w* \w that|strong="H3588"\w* \w she|strong="H3588"\w* \w was|strong="H1870"\w* \w defiled|strong="H2930"\w*. \w They|strong="H3588"\w* \w both|strong="H8147"\w* \w went|strong="H8147"\w* \w the|strong="H7200"\w* same \w way|strong="H1870"\w*. +\p +\v 14 “\w She|strong="H5921"\w* \w increased|strong="H3254"\w* \w her|strong="H5921"\w* prostitution; \w for|strong="H5921"\w* \w she|strong="H5921"\w* \w saw|strong="H7200"\w* men \w portrayed|strong="H2707"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w wall|strong="H7023"\w*, \w the|strong="H5921"\w* \w images|strong="H6754"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w Chaldeans|strong="H3778"\w* \w portrayed|strong="H2707"\w* \w with|strong="H5921"\w* \w red|strong="H8350"\w*, +\v 15 dressed \w with|strong="H3605"\w* belts \w on|strong="H3605"\w* \w their|strong="H3605"\w* waists, \w with|strong="H3605"\w* \w flowing|strong="H5628"\w* \w turbans|strong="H2871"\w* \w on|strong="H3605"\w* \w their|strong="H3605"\w* \w heads|strong="H7218"\w*, \w all|strong="H3605"\w* \w of|strong="H1121"\w* \w them|strong="H1121"\w* \w looking|strong="H4758"\w* \w like|strong="H4758"\w* \w princes|strong="H7991"\w*, after \w the|strong="H3605"\w* \w likeness|strong="H1823"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w Babylonians|strong="H1121"\w* \w in|strong="H1121"\w* \w Chaldea|strong="H3778"\w*, \w the|strong="H3605"\w* land \w of|strong="H1121"\w* \w their|strong="H3605"\w* \w birth|strong="H4138"\w*. +\v 16 \w As|strong="H5869"\w* soon \w as|strong="H5869"\w* \w she|strong="H5921"\w* \w saw|strong="H4758"\w* \w them|strong="H5921"\w*, \w she|strong="H5921"\w* \w lusted|strong="H5689"\w* \w after|strong="H5921"\w* \w them|strong="H5921"\w* \w and|strong="H7971"\w* \w sent|strong="H7971"\w* \w messengers|strong="H4397"\w* \w to|strong="H7971"\w* \w them|strong="H5921"\w* \w into|strong="H5921"\w* \w Chaldea|strong="H3778"\w*. +\v 17 \w The|strong="H1121"\w* \w Babylonians|strong="H1121"\w* came \w to|strong="H1121"\w* her into \w the|strong="H1121"\w* \w bed|strong="H4904"\w* \w of|strong="H1121"\w* \w love|strong="H1730"\w*, \w and|strong="H1121"\w* \w they|strong="H1992"\w* \w defiled|strong="H2930"\w* her \w with|strong="H5315"\w* \w their|strong="H1992"\w* prostitution. She \w was|strong="H5315"\w* \w polluted|strong="H2930"\w* \w with|strong="H5315"\w* \w them|strong="H1992"\w*, \w and|strong="H1121"\w* her \w soul|strong="H5315"\w* \w was|strong="H5315"\w* \w alienated|strong="H3363"\w* \w from|strong="H5315"\w* \w them|strong="H1992"\w*. +\v 18 \w So|strong="H5921"\w* \w she|strong="H5921"\w* \w uncovered|strong="H1540"\w* \w her|strong="H1540"\w* prostitution \w and|strong="H5315"\w* \w uncovered|strong="H1540"\w* \w her|strong="H1540"\w* \w nakedness|strong="H6172"\w*. Then \w my|strong="H5921"\w* \w soul|strong="H5315"\w* \w was|strong="H5315"\w* \w alienated|strong="H5361"\w* \w from|strong="H5921"\w* \w her|strong="H1540"\w*, just \w like|strong="H5921"\w* \w my|strong="H5921"\w* \w soul|strong="H5315"\w* \w was|strong="H5315"\w* \w alienated|strong="H5361"\w* \w from|strong="H5921"\w* \w her|strong="H1540"\w* sister. +\v 19 \w Yet|strong="H3117"\w* she \w multiplied|strong="H7235"\w* \w her|strong="H7235"\w* prostitution, \w remembering|strong="H2142"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w her|strong="H7235"\w* \w youth|strong="H5271"\w*, \w in|strong="H3117"\w* \w which|strong="H3117"\w* she \w had|strong="H7235"\w* \w played|strong="H2181"\w* \w the|strong="H3117"\w* \w prostitute|strong="H2181"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* land \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w*. +\v 20 \w She|strong="H5921"\w* \w lusted|strong="H5689"\w* \w after|strong="H5921"\w* \w their|strong="H5921"\w* \w lovers|strong="H5689"\w*, \w whose|strong="H6370"\w* \w flesh|strong="H1320"\w* \w is|strong="H1320"\w* \w as|strong="H5921"\w* \w the|strong="H5921"\w* \w flesh|strong="H1320"\w* \w of|strong="H5921"\w* \w donkeys|strong="H2543"\w*, \w and|strong="H5483"\w* \w whose|strong="H6370"\w* \w issue|strong="H2231"\w* \w is|strong="H1320"\w* \w like|strong="H5921"\w* \w the|strong="H5921"\w* \w issue|strong="H2231"\w* \w of|strong="H5921"\w* \w horses|strong="H5483"\w*. +\v 21 \w Thus|strong="H4616"\w* \w you|strong="H6213"\w* called \w to|strong="H6213"\w* memory \w the|strong="H6213"\w* \w lewdness|strong="H2154"\w* \w of|strong="H6213"\w* \w your|strong="H6213"\w* \w youth|strong="H5271"\w*, \w in|strong="H6213"\w* \w the|strong="H6213"\w* caressing \w of|strong="H6213"\w* \w your|strong="H6213"\w* \w nipples|strong="H1717"\w* \w by|strong="H6485"\w* \w the|strong="H6213"\w* \w Egyptians|strong="H4714"\w* \w because|strong="H4616"\w* \w of|strong="H6213"\w* \w your|strong="H6213"\w* youthful \w breasts|strong="H7699"\w*. +\p +\v 22 “\w Therefore|strong="H3651"\w*, Oholibah, \w the|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H5315"\w* \w raise|strong="H5782"\w* \w up|strong="H5782"\w* \w your|strong="H5921"\w* lovers \w against|strong="H5921"\w* \w you|strong="H5921"\w*, \w from|strong="H5921"\w* \w whom|strong="H1992"\w* \w your|strong="H5921"\w* \w soul|strong="H5315"\w* \w is|strong="H5315"\w* \w alienated|strong="H5361"\w*, \w and|strong="H5315"\w* \w I|strong="H2005"\w* \w will|strong="H5315"\w* bring \w them|strong="H1992"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w* \w on|strong="H5921"\w* \w every|strong="H5439"\w* \w side|strong="H5439"\w*: +\v 23 \w the|strong="H3605"\w* \w Babylonians|strong="H1121"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Chaldeans|strong="H3778"\w*, \w Pekod|strong="H6489"\w*, \w Shoa|strong="H7772"\w*, \w Koa|strong="H6970"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Assyrians|strong="H1121"\w* \w with|strong="H3605"\w* \w them|strong="H7121"\w*; \w all|strong="H3605"\w* \w of|strong="H1121"\w* \w them|strong="H7121"\w* \w desirable|strong="H2531"\w* \w young|strong="H1121"\w* \w men|strong="H1121"\w*, \w governors|strong="H6346"\w* \w and|strong="H1121"\w* \w rulers|strong="H5461"\w*, \w princes|strong="H7991"\w* \w and|strong="H1121"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w renown|strong="H7121"\w*, \w all|strong="H3605"\w* \w of|strong="H1121"\w* \w them|strong="H7121"\w* \w riding|strong="H7392"\w* \w on|strong="H7392"\w* \w horses|strong="H5483"\w*. +\v 24 \w They|strong="H5921"\w* \w will|strong="H5971"\w* \w come|strong="H5971"\w* \w against|strong="H5921"\w* \w you|strong="H5414"\w* \w with|strong="H5921"\w* \w weapons|strong="H2021"\w*, \w chariots|strong="H7393"\w*, \w and|strong="H4941"\w* \w wagons|strong="H1534"\w*, \w and|strong="H4941"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w company|strong="H6951"\w* \w of|strong="H6440"\w* \w peoples|strong="H5971"\w*. \w They|strong="H5921"\w* \w will|strong="H5971"\w* \w set|strong="H7760"\w* \w themselves|strong="H7760"\w* \w against|strong="H5921"\w* \w you|strong="H5414"\w* \w with|strong="H5921"\w* \w buckler|strong="H4043"\w*, \w shield|strong="H4043"\w*, \w and|strong="H4941"\w* \w helmet|strong="H6959"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*. \w I|strong="H5414"\w* \w will|strong="H5971"\w* \w commit|strong="H5414"\w* \w the|strong="H6440"\w* \w judgment|strong="H4941"\w* \w to|strong="H5921"\w* \w them|strong="H5414"\w*, \w and|strong="H4941"\w* \w they|strong="H5921"\w* \w will|strong="H5971"\w* \w judge|strong="H8199"\w* \w you|strong="H5414"\w* \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w their|strong="H5414"\w* \w judgments|strong="H4941"\w*. +\v 25 \w I|strong="H5414"\w* \w will|strong="H2719"\w* \w set|strong="H5414"\w* \w my|strong="H5414"\w* \w jealousy|strong="H7068"\w* \w against|strong="H2719"\w* \w you|strong="H5414"\w*, \w and|strong="H1121"\w* \w they|strong="H1992"\w* \w will|strong="H2719"\w* \w deal|strong="H6213"\w* \w with|strong="H6213"\w* \w you|strong="H5414"\w* \w in|strong="H6213"\w* \w fury|strong="H2534"\w*. \w They|strong="H1992"\w* \w will|strong="H2719"\w* \w take|strong="H3947"\w* \w away|strong="H5493"\w* \w your|strong="H5414"\w* nose \w and|strong="H1121"\w* \w your|strong="H5414"\w* ears. \w Your|strong="H5414"\w* remnant \w will|strong="H2719"\w* \w fall|strong="H5307"\w* \w by|strong="H5414"\w* \w the|strong="H5414"\w* \w sword|strong="H2719"\w*. \w They|strong="H1992"\w* \w will|strong="H2719"\w* \w take|strong="H3947"\w* \w your|strong="H5414"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w your|strong="H5414"\w* \w daughters|strong="H1323"\w*; \w and|strong="H1121"\w* \w the|strong="H5414"\w* rest \w of|strong="H1121"\w* \w you|strong="H5414"\w* \w will|strong="H2719"\w* \w be|strong="H1121"\w* devoured \w by|strong="H5414"\w* \w the|strong="H5414"\w* fire. +\v 26 \w They|strong="H3947"\w* will also \w strip|strong="H6584"\w* \w you|strong="H3947"\w* \w of|strong="H3627"\w* \w your|strong="H3947"\w* clothes \w and|strong="H3947"\w* \w take|strong="H3947"\w* \w away|strong="H3947"\w* \w your|strong="H3947"\w* \w beautiful|strong="H8597"\w* \w jewels|strong="H3627"\w*. +\v 27 \w Thus|strong="H3808"\w* \w I|strong="H4714"\w* \w will|strong="H5869"\w* \w make|strong="H7673"\w* \w your|strong="H5375"\w* \w lewdness|strong="H2154"\w* \w to|strong="H4714"\w* \w cease|strong="H7673"\w* \w from|strong="H4480"\w* \w you|strong="H3808"\w*, \w and|strong="H5869"\w* \w remove|strong="H7673"\w* \w your|strong="H5375"\w* \w prostitution|strong="H2184"\w* \w from|strong="H4480"\w* \w the|strong="H5375"\w* land \w of|strong="H5869"\w* \w Egypt|strong="H4714"\w*, \w so|strong="H4480"\w* \w that|strong="H4480"\w* \w you|strong="H3808"\w* \w will|strong="H5869"\w* \w not|strong="H3808"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H5375"\w* \w eyes|strong="H5869"\w* \w to|strong="H4714"\w* \w them|strong="H5375"\w*, \w nor|strong="H3808"\w* \w remember|strong="H2142"\w* \w Egypt|strong="H4714"\w* \w any|strong="H4480"\w* \w more|strong="H4480"\w*.’ +\p +\v 28 “\w For|strong="H3588"\w* \w the|strong="H3588"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H5315"\w* \w deliver|strong="H5414"\w* \w you|strong="H3588"\w* \w into|strong="H3027"\w* \w the|strong="H3588"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w them|strong="H5414"\w* \w whom|strong="H1992"\w* \w you|strong="H3588"\w* \w hate|strong="H8130"\w*, \w into|strong="H3027"\w* \w the|strong="H3588"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w them|strong="H5414"\w* \w from|strong="H5315"\w* \w whom|strong="H1992"\w* \w your|strong="H5414"\w* \w soul|strong="H5315"\w* \w is|strong="H5315"\w* \w alienated|strong="H5361"\w*. +\v 29 \w They|strong="H6213"\w* \w will|strong="H6213"\w* \w deal|strong="H6213"\w* \w with|strong="H6213"\w* \w you|strong="H3605"\w* \w in|strong="H6213"\w* \w hatred|strong="H8135"\w*, \w and|strong="H6213"\w* \w will|strong="H6213"\w* \w take|strong="H3947"\w* \w away|strong="H3947"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w labor|strong="H3018"\w*, \w and|strong="H6213"\w* \w will|strong="H6213"\w* \w leave|strong="H5800"\w* \w you|strong="H3605"\w* \w naked|strong="H5903"\w* \w and|strong="H6213"\w* \w bare|strong="H6181"\w*. \w The|strong="H3605"\w* \w nakedness|strong="H6172"\w* \w of|strong="H3605"\w* \w your|strong="H3605"\w* prostitution \w will|strong="H6213"\w* \w be|strong="H3605"\w* \w uncovered|strong="H1540"\w*, \w both|strong="H3605"\w* \w your|strong="H3605"\w* \w lewdness|strong="H2154"\w* \w and|strong="H6213"\w* \w your|strong="H3605"\w* prostitution. +\v 30 \w These|strong="H6213"\w* things \w will|strong="H1471"\w* \w be|strong="H1471"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w you|strong="H5921"\w* \w because|strong="H5921"\w* \w you|strong="H5921"\w* \w have|strong="H1471"\w* \w played|strong="H2181"\w* \w the|strong="H5921"\w* \w prostitute|strong="H2181"\w* \w after|strong="H5921"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*, \w and|strong="H1471"\w* \w because|strong="H5921"\w* \w you|strong="H5921"\w* \w are|strong="H1471"\w* \w polluted|strong="H2930"\w* \w with|strong="H6213"\w* \w their|strong="H5921"\w* \w idols|strong="H1544"\w*. +\v 31 \w You|strong="H5414"\w* \w have|strong="H3027"\w* \w walked|strong="H1980"\w* \w in|strong="H1980"\w* \w the|strong="H5414"\w* \w way|strong="H1870"\w* \w of|strong="H3027"\w* \w your|strong="H5414"\w* sister; therefore \w I|strong="H5414"\w* \w will|strong="H3027"\w* \w give|strong="H5414"\w* \w her|strong="H5414"\w* \w cup|strong="H3563"\w* \w into|strong="H1980"\w* \w your|strong="H5414"\w* \w hand|strong="H3027"\w*.’ +\p +\v 32 “\w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 ‘\w You|strong="H1961"\w* \w will|strong="H1961"\w* \w drink|strong="H8354"\w* \w of|strong="H3069"\w* \w your|strong="H1961"\w* sister’s \w cup|strong="H3563"\w*, +\q2 \w which|strong="H3069"\w* \w is|strong="H1961"\w* \w deep|strong="H6013"\w* \w and|strong="H8354"\w* \w large|strong="H7342"\w*. +\q1 \w You|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* ridiculed \w and|strong="H8354"\w* \w held|strong="H3557"\w* \w in|strong="H1961"\w* \w derision|strong="H3932"\w*. +\q2 \w It|strong="H1961"\w* \w contains|strong="H3557"\w* \w much|strong="H4767"\w*. +\q1 +\v 33 You \w will|strong="H8111"\w* \w be|strong="H8111"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w drunkenness|strong="H7943"\w* \w and|strong="H8111"\w* \w sorrow|strong="H3015"\w*, +\q2 \w with|strong="H4390"\w* \w the|strong="H4390"\w* \w cup|strong="H3563"\w* \w of|strong="H4390"\w* \w astonishment|strong="H8047"\w* \w and|strong="H8111"\w* \w desolation|strong="H8077"\w*, +\q2 \w with|strong="H4390"\w* \w the|strong="H4390"\w* \w cup|strong="H3563"\w* \w of|strong="H4390"\w* \w your|strong="H4390"\w* sister \w Samaria|strong="H8111"\w*. +\q1 +\v 34 \w You|strong="H3588"\w* \w will|strong="H3069"\w* \w even|strong="H3588"\w* \w drink|strong="H8354"\w* \w it|strong="H3588"\w* \w and|strong="H8354"\w* \w drain|strong="H4680"\w* \w it|strong="H3588"\w* \w out|strong="H4680"\w*. +\q2 \w You|strong="H3588"\w* \w will|strong="H3069"\w* \w gnaw|strong="H1633"\w* \w the|strong="H5002"\w* \w broken|strong="H5423"\w* pieces \w of|strong="H3069"\w* \w it|strong="H3588"\w*, +\q2 \w and|strong="H8354"\w* \w will|strong="H3069"\w* \w tear|strong="H5423"\w* \w your|strong="H3588"\w* \w breasts|strong="H7699"\w*; +\m \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1696"\w* \w spoken|strong="H1696"\w* \w it|strong="H3588"\w*,’ \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 35 “\w Therefore|strong="H3651"\w* \w the|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Because|strong="H3282"\w* \w you|strong="H3651"\w* \w have|strong="H1571"\w* \w forgotten|strong="H7911"\w* \w me|strong="H7993"\w* \w and|strong="H1571"\w* \w cast|strong="H7993"\w* \w me|strong="H7993"\w* behind \w your|strong="H5375"\w* \w back|strong="H1458"\w*, \w therefore|strong="H3651"\w* \w you|strong="H3651"\w* \w also|strong="H1571"\w* \w bear|strong="H5375"\w* \w your|strong="H5375"\w* \w lewdness|strong="H2154"\w* \w and|strong="H1571"\w* \w your|strong="H5375"\w* prostitution.’” +\p +\v 36 \w Yahweh|strong="H3068"\w* said moreover \w to|strong="H3068"\w* \w me|strong="H5046"\w*: “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w will|strong="H3068"\w* \w you|strong="H5046"\w* \w judge|strong="H8199"\w* Oholah \w and|strong="H1121"\w* Oholibah? \w Then|strong="H3068"\w* \w declare|strong="H5046"\w* \w to|strong="H3068"\w* \w them|strong="H5046"\w* \w their|strong="H3068"\w* \w abominations|strong="H8441"\w*. +\v 37 \w For|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H1121"\w* \w committed|strong="H5003"\w* \w adultery|strong="H5003"\w*, \w and|strong="H1121"\w* \w blood|strong="H1818"\w* \w is|strong="H1571"\w* \w in|strong="H1121"\w* \w their|strong="H3588"\w* \w hands|strong="H3027"\w*. \w They|strong="H3588"\w* \w have|strong="H1121"\w* \w committed|strong="H5003"\w* \w adultery|strong="H5003"\w* \w with|strong="H3027"\w* \w their|strong="H3588"\w* \w idols|strong="H1544"\w*. \w They|strong="H3588"\w* \w have|strong="H1121"\w* \w also|strong="H1571"\w* \w caused|strong="H5674"\w* \w their|strong="H3588"\w* \w sons|strong="H1121"\w*, \w whom|strong="H3588"\w* \w they|strong="H3588"\w* \w bore|strong="H3205"\w* \w to|strong="H3027"\w* \w me|strong="H5674"\w*, \w to|strong="H3027"\w* \w pass|strong="H5674"\w* \w through|strong="H3027"\w* \w the|strong="H3588"\w* fire \w to|strong="H3027"\w* \w them|strong="H3027"\w* \w to|strong="H3027"\w* \w be|strong="H3027"\w* devoured. +\v 38 \w Moreover|strong="H5750"\w* \w this|strong="H2063"\w* \w they|strong="H3117"\w* \w have|strong="H3117"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w me|strong="H6213"\w*: \w they|strong="H3117"\w* \w have|strong="H3117"\w* \w defiled|strong="H2930"\w* \w my|strong="H2490"\w* \w sanctuary|strong="H4720"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w same|strong="H1931"\w* \w day|strong="H3117"\w*, \w and|strong="H3117"\w* \w have|strong="H3117"\w* \w profaned|strong="H2490"\w* \w my|strong="H2490"\w* \w Sabbaths|strong="H7676"\w*. +\v 39 \w For|strong="H6213"\w* \w when|strong="H3117"\w* \w they|strong="H3117"\w* \w had|strong="H1121"\w* \w slain|strong="H7819"\w* \w their|strong="H8432"\w* \w children|strong="H1121"\w* \w to|strong="H6213"\w* \w their|strong="H8432"\w* \w idols|strong="H1544"\w*, \w then|strong="H2009"\w* \w they|strong="H3117"\w* came \w the|strong="H3541"\w* \w same|strong="H1931"\w* \w day|strong="H3117"\w* \w into|strong="H8432"\w* \w my|strong="H2490"\w* \w sanctuary|strong="H4720"\w* \w to|strong="H6213"\w* \w profane|strong="H2490"\w* \w it|strong="H1931"\w*; \w and|strong="H1121"\w* \w behold|strong="H2009"\w*, \w they|strong="H3117"\w* \w have|strong="H1121"\w* \w done|strong="H6213"\w* \w this|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H3541"\w* \w middle|strong="H8432"\w* \w of|strong="H1121"\w* \w my|strong="H2490"\w* \w house|strong="H1004"\w*. +\p +\v 40 “\w Furthermore|strong="H2009"\w* \w you|strong="H3588"\w* sisters \w have|strong="H5869"\w* \w sent|strong="H7971"\w* \w for|strong="H3588"\w* men \w who|strong="H4397"\w* \w come|strong="H7971"\w* \w from|strong="H7971"\w* \w far|strong="H4801"\w* \w away|strong="H7971"\w*, \w to|strong="H7971"\w* \w whom|strong="H5869"\w* \w a|strong="H3068"\w* \w messenger|strong="H4397"\w* \w was|strong="H4397"\w* \w sent|strong="H7971"\w*, \w and|strong="H7971"\w* \w behold|strong="H2009"\w*, \w they|strong="H3588"\w* \w came|strong="H4397"\w*; \w for|strong="H3588"\w* \w whom|strong="H5869"\w* \w you|strong="H3588"\w* \w washed|strong="H7364"\w* \w yourself|strong="H5710"\w*, \w painted|strong="H3583"\w* \w your|strong="H3588"\w* \w eyes|strong="H5869"\w*, \w decorated|strong="H5710"\w* \w yourself|strong="H5710"\w* \w with|strong="H7364"\w* \w ornaments|strong="H5716"\w*, +\v 41 \w and|strong="H6440"\w* \w sat|strong="H3427"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w stately|strong="H3520"\w* \w bed|strong="H4296"\w*, \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w table|strong="H7979"\w* \w prepared|strong="H6186"\w* \w before|strong="H6440"\w* \w it|strong="H7760"\w*, whereupon \w you|strong="H6440"\w* \w set|strong="H7760"\w* \w my|strong="H7760"\w* \w incense|strong="H7004"\w* \w and|strong="H6440"\w* \w my|strong="H7760"\w* \w oil|strong="H8081"\w*. +\p +\v 42 “\w The|strong="H5921"\w* \w voice|strong="H6963"\w* \w of|strong="H3027"\w* \w a|strong="H3068"\w* \w multitude|strong="H1995"\w* being \w at|strong="H5921"\w* \w ease|strong="H7961"\w* \w was|strong="H6963"\w* \w with|strong="H5921"\w* \w her|strong="H5414"\w*. \w With|strong="H5921"\w* \w men|strong="H7218"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w common|strong="H7230"\w* \w sort|strong="H7230"\w* \w were|strong="H3027"\w* \w brought|strong="H5414"\w* \w drunkards|strong="H5433"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*; \w and|strong="H3027"\w* \w they|strong="H5921"\w* \w put|strong="H5414"\w* \w bracelets|strong="H6781"\w* \w on|strong="H5921"\w* \w their|strong="H5414"\w* \w hands|strong="H3027"\w*, \w and|strong="H3027"\w* \w beautiful|strong="H8597"\w* \w crowns|strong="H5850"\w* \w on|strong="H5921"\w* \w their|strong="H5414"\w* \w heads|strong="H7218"\w*. +\v 43 \w Then|strong="H6258"\w* \w I|strong="H6258"\w* said \w of|strong="H1931"\w* \w her|strong="H1931"\w* \w who|strong="H1931"\w* \w was|strong="H1931"\w* \w old|strong="H1087"\w* \w in|strong="H2181"\w* \w adulteries|strong="H5004"\w*, ‘\w Now|strong="H6258"\w* \w they|strong="H1931"\w* \w will|strong="H1931"\w* \w play|strong="H2181"\w* \w the|strong="H2181"\w* \w prostitute|strong="H2181"\w* \w with|strong="H2181"\w* \w her|strong="H1931"\w*, \w and|strong="H6258"\w* \w she|strong="H1931"\w* \w with|strong="H2181"\w* \w them|strong="H1931"\w*.’ +\v 44 \w They|strong="H3651"\w* went \w in|strong="H2181"\w* \w to|strong="H2154"\w* \w her|strong="H3651"\w*, \w as|strong="H3651"\w* \w they|strong="H3651"\w* go \w in|strong="H2181"\w* \w to|strong="H2154"\w* \w a|strong="H3068"\w* \w prostitute|strong="H2181"\w*. \w So|strong="H3651"\w* \w they|strong="H3651"\w* went \w in|strong="H2181"\w* \w to|strong="H2154"\w* Oholah \w and|strong="H3651"\w* \w to|strong="H2154"\w* Oholibah, \w the|strong="H2181"\w* \w lewd|strong="H2154"\w* women. +\v 45 \w Righteous|strong="H6662"\w* \w men|strong="H6662"\w* \w will|strong="H6662"\w* \w judge|strong="H8199"\w* \w them|strong="H1992"\w* \w with|strong="H3027"\w* \w the|strong="H3588"\w* \w judgment|strong="H4941"\w* \w of|strong="H3027"\w* \w adulteresses|strong="H5003"\w* \w and|strong="H4941"\w* \w with|strong="H3027"\w* \w the|strong="H3588"\w* \w judgment|strong="H4941"\w* \w of|strong="H3027"\w* \w women|strong="H1992"\w* \w who|strong="H1992"\w* \w shed|strong="H8210"\w* \w blood|strong="H1818"\w*, \w because|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w adulteresses|strong="H5003"\w*, \w and|strong="H4941"\w* \w blood|strong="H1818"\w* \w is|strong="H3027"\w* \w in|strong="H3027"\w* \w their|strong="H1992"\w* \w hands|strong="H3027"\w*. +\p +\v 46 “\w For|strong="H3588"\w* \w the|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w I|strong="H3588"\w* \w will|strong="H5414"\w* \w bring|strong="H5927"\w* \w up|strong="H5927"\w* \w a|strong="H3068"\w* mob \w against|strong="H5921"\w* \w them|strong="H5414"\w*, \w and|strong="H5927"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H5927"\w* \w be|strong="H5414"\w* tossed \w back|strong="H5927"\w* \w and|strong="H5927"\w* \w forth|strong="H5414"\w* \w and|strong="H5927"\w* robbed. +\v 47 \w The|strong="H5921"\w* \w company|strong="H6951"\w* \w will|strong="H2719"\w* \w stone|strong="H7275"\w* \w them|strong="H5921"\w* \w with|strong="H8313"\w* stones \w and|strong="H1121"\w* \w dispatch|strong="H1254"\w* \w them|strong="H5921"\w* \w with|strong="H8313"\w* \w their|strong="H8313"\w* \w swords|strong="H2719"\w*. \w They|strong="H5921"\w* \w will|strong="H2719"\w* \w kill|strong="H2026"\w* \w their|strong="H8313"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w their|strong="H8313"\w* \w daughters|strong="H1323"\w*, \w and|strong="H1121"\w* \w burn|strong="H8313"\w* \w up|strong="H5921"\w* \w their|strong="H8313"\w* \w houses|strong="H1004"\w* \w with|strong="H8313"\w* fire. +\p +\v 48 “‘\w Thus|strong="H3808"\w* \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w cause|strong="H6213"\w* \w lewdness|strong="H2154"\w* \w to|strong="H6213"\w* \w cease|strong="H7673"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H3605"\w* land, \w that|strong="H3605"\w* \w all|strong="H3605"\w* women \w may|strong="H6213"\w* \w be|strong="H3808"\w* \w taught|strong="H3256"\w* \w not|strong="H3808"\w* \w to|strong="H6213"\w* \w be|strong="H3808"\w* \w lewd|strong="H2154"\w* \w like|strong="H3808"\w* \w you|strong="H3605"\w*. +\v 49 \w They|strong="H3588"\w* \w will|strong="H5414"\w* \w recompense|strong="H5414"\w* \w your|strong="H5414"\w* \w lewdness|strong="H2154"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*, \w and|strong="H3045"\w* \w you|strong="H3588"\w* \w will|strong="H5414"\w* \w bear|strong="H5375"\w* \w the|strong="H5921"\w* \w sins|strong="H2399"\w* \w of|strong="H5921"\w* \w your|strong="H5414"\w* \w idols|strong="H1544"\w*. \w Then|strong="H5375"\w* \w you|strong="H3588"\w* \w will|strong="H5414"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* am \w the|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*.’” +\c 24 +\p +\v 1 \w Again|strong="H1961"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w ninth|strong="H8671"\w* \w year|strong="H8141"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w tenth|strong="H6224"\w* \w month|strong="H2320"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w tenth|strong="H6224"\w* \w day|strong="H2320"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w month|strong="H2320"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1961"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w write|strong="H3789"\w* \w the|strong="H3117"\w* \w name|strong="H8034"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w*, \w this|strong="H2088"\w* \w same|strong="H6106"\w* \w day|strong="H3117"\w*. \w The|strong="H3117"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon \w drew|strong="H3117"\w* close \w to|strong="H3117"\w* \w Jerusalem|strong="H3389"\w* \w this|strong="H2088"\w* \w same|strong="H6106"\w* \w day|strong="H3117"\w*. +\v 3 \w Utter|strong="H4911"\w* \w a|strong="H3068"\w* \w parable|strong="H4912"\w* \w to|strong="H1004"\w* \w the|strong="H3069"\w* \w rebellious|strong="H4805"\w* \w house|strong="H1004"\w*, \w and|strong="H1004"\w* tell them, ‘\w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, +\q1 “\w Put|strong="H8239"\w* \w the|strong="H3069"\w* cauldron \w on|strong="H1004"\w* \w the|strong="H3069"\w* fire. +\q2 \w Put|strong="H8239"\w* \w it|strong="H4325"\w* \w on|strong="H1004"\w*, +\q2 \w and|strong="H1004"\w* \w also|strong="H1571"\w* \w pour|strong="H3332"\w* \w water|strong="H4325"\w* \w into|strong="H3332"\w* \w it|strong="H4325"\w*. +\q1 +\v 4 \w Gather|strong="H4390"\w* \w its|strong="H3605"\w* \w pieces|strong="H5409"\w* into \w it|strong="H2896"\w*, +\q2 even \w every|strong="H3605"\w* \w good|strong="H2896"\w* \w piece|strong="H5409"\w*: +\q2 \w the|strong="H3605"\w* \w thigh|strong="H3409"\w* \w and|strong="H2896"\w* \w the|strong="H3605"\w* \w shoulder|strong="H3802"\w*. +\q2 \w Fill|strong="H4390"\w* \w it|strong="H2896"\w* \w with|strong="H4390"\w* \w the|strong="H3605"\w* \w choice|strong="H4005"\w* \w bones|strong="H6106"\w*. +\q1 +\v 5 \w Take|strong="H3947"\w* \w the|strong="H3947"\w* \w choice|strong="H4005"\w* \w of|strong="H8432"\w* \w the|strong="H3947"\w* \w flock|strong="H6629"\w*, +\q2 \w and|strong="H6629"\w* \w also|strong="H1571"\w* \w a|strong="H3068"\w* \w pile|strong="H1754"\w* \w of|strong="H8432"\w* \w wood|strong="H6106"\w* \w for|strong="H8478"\w* \w the|strong="H3947"\w* \w bones|strong="H6106"\w* \w under|strong="H8478"\w* \w the|strong="H3947"\w* cauldron. +\q1 \w Make|strong="H3947"\w* \w it|strong="H8432"\w* \w boil|strong="H1310"\w* \w well|strong="H1571"\w*. +\q2 \w Yes|strong="H1571"\w*, let \w its|strong="H8478"\w* \w bones|strong="H6106"\w* \w be|strong="H1571"\w* \w boiled|strong="H1310"\w* \w within|strong="H8432"\w* \w it|strong="H8432"\w*.” +\m +\v 6 “‘\w Therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “Woe \w to|strong="H3318"\w* \w the|strong="H5921"\w* \w bloody|strong="H1818"\w* \w city|strong="H5892"\w*, +\q2 \w to|strong="H3318"\w* \w the|strong="H5921"\w* cauldron \w whose|strong="H5518"\w* \w rust|strong="H2457"\w* \w is|strong="H3651"\w* \w in|strong="H5921"\w* \w it|strong="H5921"\w*, +\q2 \w and|strong="H5892"\w* \w whose|strong="H5518"\w* \w rust|strong="H2457"\w* hasn’t \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H5892"\w* \w it|strong="H5921"\w*! +\q1 \w Take|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H5892"\w* \w it|strong="H5921"\w* \w piece|strong="H5409"\w* \w after|strong="H4480"\w* \w piece|strong="H5409"\w* +\q2 \w without|strong="H3808"\w* casting \w lots|strong="H1486"\w* \w for|strong="H5921"\w* \w it|strong="H5921"\w*. +\b +\q1 +\v 7 “‘“\w For|strong="H3588"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w she|strong="H3588"\w* \w shed|strong="H8210"\w* \w is|strong="H1961"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w her|strong="H5921"\w*. +\q2 \w She|strong="H3588"\w* \w set|strong="H7760"\w* \w it|strong="H7760"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w bare|strong="H6706"\w* \w rock|strong="H5553"\w*. +\q1 \w She|strong="H3588"\w* didn’t \w pour|strong="H8210"\w* \w it|strong="H7760"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w ground|strong="H6083"\w*, +\q2 \w to|strong="H1961"\w* \w cover|strong="H3680"\w* \w it|strong="H7760"\w* \w with|strong="H5921"\w* \w dust|strong="H6083"\w*. +\q1 +\v 8 \w That|strong="H5414"\w* \w it|strong="H5414"\w* \w may|strong="H5414"\w* \w cause|strong="H5414"\w* \w wrath|strong="H2534"\w* \w to|strong="H5927"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w take|strong="H5358"\w* \w vengeance|strong="H5359"\w*, +\q2 \w I|strong="H5414"\w* \w have|strong="H5414"\w* \w set|strong="H5414"\w* \w her|strong="H5414"\w* \w blood|strong="H1818"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w bare|strong="H6706"\w* \w rock|strong="H5553"\w*, +\q2 \w that|strong="H5414"\w* \w it|strong="H5414"\w* should \w not|strong="H1115"\w* \w be|strong="H5414"\w* \w covered|strong="H3680"\w*.” +\m +\v 9 “‘\w Therefore|strong="H3651"\w* \w the|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “Woe \w to|strong="H5892"\w* \w the|strong="H3069"\w* \w bloody|strong="H1818"\w* \w city|strong="H5892"\w*! +\q2 \w I|strong="H3541"\w* \w also|strong="H1571"\w* \w will|strong="H1571"\w* \w make|strong="H1431"\w* \w the|strong="H3069"\w* \w pile|strong="H4071"\w* \w great|strong="H1431"\w*. +\q1 +\v 10 \w Heap|strong="H7235"\w* \w on|strong="H7235"\w* \w the|strong="H7235"\w* \w wood|strong="H6086"\w*. +\q2 \w Make|strong="H8552"\w* \w the|strong="H7235"\w* \w fire|strong="H1814"\w* hot. +\q1 \w Boil|strong="H8552"\w* \w the|strong="H7235"\w* \w meat|strong="H1320"\w* \w well|strong="H4841"\w*. +\q2 \w Make|strong="H8552"\w* \w the|strong="H7235"\w* broth thick, +\q2 \w and|strong="H6086"\w* let \w the|strong="H7235"\w* \w bones|strong="H6106"\w* \w be|strong="H6086"\w* \w burned|strong="H2787"\w*. +\q1 +\v 11 \w Then|strong="H4616"\w* \w set|strong="H5975"\w* \w it|strong="H5921"\w* \w empty|strong="H7386"\w* \w on|strong="H5921"\w* \w its|strong="H5921"\w* \w coals|strong="H1513"\w*, +\q2 \w that|strong="H4616"\w* \w it|strong="H5921"\w* \w may|strong="H5178"\w* be \w hot|strong="H3179"\w*, +\q1 \w and|strong="H5975"\w* \w its|strong="H5921"\w* \w bronze|strong="H5178"\w* \w may|strong="H5178"\w* \w burn|strong="H2787"\w*, +\q2 \w and|strong="H5975"\w* \w that|strong="H4616"\w* \w its|strong="H5921"\w* \w filthiness|strong="H2932"\w* \w may|strong="H5178"\w* be \w molten|strong="H5413"\w* \w in|strong="H5921"\w* \w it|strong="H5921"\w*, +\q2 \w that|strong="H4616"\w* \w its|strong="H5921"\w* \w rust|strong="H2457"\w* \w may|strong="H5178"\w* be \w consumed|strong="H8552"\w*. +\q1 +\v 12 \w She|strong="H3808"\w* \w is|strong="H3808"\w* \w weary|strong="H3811"\w* \w with|strong="H3318"\w* \w toil|strong="H8383"\w*; +\q2 \w yet|strong="H3808"\w* \w her|strong="H3318"\w* \w great|strong="H7227"\w* \w rust|strong="H2457"\w*, +\q2 \w rust|strong="H2457"\w* \w by|strong="H3318"\w* fire, doesn’t \w leave|strong="H3318"\w* \w her|strong="H3318"\w*. +\p +\v 13 “‘“\w In|strong="H5750"\w* \w your|strong="H3808"\w* \w filthiness|strong="H2932"\w* \w is|strong="H2932"\w* \w lewdness|strong="H2154"\w*. \w Because|strong="H3282"\w* \w I|strong="H5704"\w* \w have|strong="H3282"\w* \w cleansed|strong="H2891"\w* \w you|strong="H5704"\w* \w and|strong="H5750"\w* \w you|strong="H5704"\w* weren’t \w cleansed|strong="H2891"\w*, \w you|strong="H5704"\w* won’t \w be|strong="H3808"\w* \w cleansed|strong="H2891"\w* \w from|strong="H5704"\w* \w your|strong="H3808"\w* \w filthiness|strong="H2932"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*, \w until|strong="H5704"\w* \w I|strong="H5704"\w* \w have|strong="H3282"\w* caused \w my|strong="H5117"\w* \w wrath|strong="H2534"\w* \w toward|strong="H5704"\w* \w you|strong="H5704"\w* \w to|strong="H5704"\w* \w rest|strong="H5117"\w*. +\p +\v 14 “‘“\w I|strong="H3808"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w it|strong="H6213"\w*. \w It|strong="H6213"\w* \w will|strong="H3068"\w* \w happen|strong="H6213"\w*, \w and|strong="H3068"\w* \w I|strong="H3808"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w it|strong="H6213"\w*. \w I|strong="H3808"\w* won’t \w go|strong="H3068"\w* \w back|strong="H6544"\w*. \w I|strong="H3808"\w* won’t \w spare|strong="H2347"\w*. \w I|strong="H3808"\w* won’t \w repent|strong="H5162"\w*. According \w to|strong="H1696"\w* \w your|strong="H3068"\w* \w ways|strong="H1870"\w* \w and|strong="H3068"\w* according \w to|strong="H1696"\w* \w your|strong="H3068"\w* \w doings|strong="H5949"\w*, \w they|strong="H3068"\w* \w will|strong="H3068"\w* \w judge|strong="H8199"\w* \w you|strong="H6213"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.’” +\p +\v 15 \w Also|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 16 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H5869"\w* \w take|strong="H3947"\w* \w away|strong="H3947"\w* \w from|strong="H4480"\w* \w you|strong="H3947"\w* \w the|strong="H3947"\w* \w desire|strong="H4261"\w* \w of|strong="H1121"\w* \w your|strong="H3947"\w* \w eyes|strong="H5869"\w* \w with|strong="H5869"\w* \w one|strong="H3808"\w* \w stroke|strong="H4046"\w*; \w yet|strong="H3808"\w* \w you|strong="H3947"\w* \w shall|strong="H1121"\w* \w neither|strong="H3808"\w* \w mourn|strong="H5594"\w* \w nor|strong="H3808"\w* \w weep|strong="H1058"\w*, \w neither|strong="H3808"\w* \w shall|strong="H1121"\w* \w your|strong="H3947"\w* \w tears|strong="H1832"\w* \w run|strong="H1832"\w* down. +\v 17 Sigh, \w but|strong="H3808"\w* \w not|strong="H3808"\w* aloud. \w Make|strong="H6213"\w* \w no|strong="H3808"\w* mourning \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w dead|strong="H4191"\w*. \w Bind|strong="H2280"\w* \w your|strong="H5921"\w* headdress \w on|strong="H5921"\w* \w you|strong="H5921"\w*, \w and|strong="H3899"\w* \w put|strong="H7760"\w* \w your|strong="H5921"\w* \w sandals|strong="H5275"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w feet|strong="H7272"\w*. Don’t \w cover|strong="H5844"\w* \w your|strong="H5921"\w* \w lips|strong="H8222"\w*, \w and|strong="H3899"\w* don’t \w eat|strong="H3899"\w* mourner’s \w bread|strong="H3899"\w*.” +\p +\v 18 \w So|strong="H6213"\w* \w I|strong="H6680"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H6213"\w* \w people|strong="H5971"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w morning|strong="H1242"\w*, \w and|strong="H5971"\w* \w at|strong="H4191"\w* \w evening|strong="H6153"\w* \w my|strong="H6213"\w* \w wife|strong="H1696"\w* \w died|strong="H4191"\w*. \w So|strong="H6213"\w* \w I|strong="H6680"\w* \w did|strong="H6213"\w* \w in|strong="H6213"\w* \w the|strong="H6213"\w* \w morning|strong="H1242"\w* \w as|strong="H6213"\w* \w I|strong="H6680"\w* \w was|strong="H6213"\w* \w commanded|strong="H6680"\w*. +\p +\v 19 \w The|strong="H3588"\w* \w people|strong="H5971"\w* \w asked|strong="H4100"\w* \w me|strong="H5046"\w*, “Won’t \w you|strong="H3588"\w* \w tell|strong="H5046"\w* \w us|strong="H5046"\w* \w what|strong="H4100"\w* \w these|strong="H6213"\w* \w things|strong="H3808"\w* mean \w to|strong="H6213"\w* \w us|strong="H5046"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w act|strong="H6213"\w* \w like|strong="H3808"\w* \w this|strong="H6213"\w*?” +\p +\v 20 \w Then|strong="H1961"\w* \w I|strong="H1697"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w them|strong="H1961"\w*, “\w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1961"\w*, \w saying|strong="H1697"\w*, +\v 21 ‘Speak \w to|strong="H3478"\w* \w the|strong="H3069"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, “\w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3478"\w* \w profane|strong="H2490"\w* \w my|strong="H2490"\w* \w sanctuary|strong="H4720"\w*, \w the|strong="H3069"\w* \w pride|strong="H1347"\w* \w of|strong="H1121"\w* \w your|strong="H5800"\w* \w power|strong="H5797"\w*, \w the|strong="H3069"\w* \w desire|strong="H5315"\w* \w of|strong="H1121"\w* \w your|strong="H5800"\w* \w eyes|strong="H5869"\w*, \w and|strong="H1121"\w* \w that|strong="H5315"\w* \w which|strong="H1004"\w* \w your|strong="H5800"\w* \w soul|strong="H5315"\w* pities; \w and|strong="H1121"\w* \w your|strong="H5800"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w your|strong="H5800"\w* \w daughters|strong="H1323"\w* \w whom|strong="H5869"\w* \w you|strong="H5800"\w* \w have|strong="H5869"\w* \w left|strong="H5800"\w* \w behind|strong="H5800"\w* \w will|strong="H3478"\w* \w fall|strong="H5307"\w* \w by|strong="H3478"\w* \w the|strong="H3069"\w* \w sword|strong="H2719"\w*. +\v 22 \w You|strong="H5921"\w* \w will|strong="H3808"\w* \w do|strong="H6213"\w* \w as|strong="H6213"\w* \w I|strong="H5921"\w* \w have|strong="H3808"\w* \w done|strong="H6213"\w*. \w You|strong="H5921"\w* won’t \w cover|strong="H5844"\w* \w your|strong="H5921"\w* \w lips|strong="H8222"\w* \w or|strong="H3808"\w* \w eat|strong="H3899"\w* mourner’s \w bread|strong="H3899"\w*. +\v 23 \w Your|strong="H5921"\w* \w turbans|strong="H6287"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w heads|strong="H7218"\w*, \w and|strong="H7218"\w* \w your|strong="H5921"\w* \w sandals|strong="H5275"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w feet|strong="H7272"\w*. \w You|strong="H5921"\w* won’t \w mourn|strong="H5594"\w* \w or|strong="H3808"\w* \w weep|strong="H1058"\w*; \w but|strong="H3808"\w* \w you|strong="H5921"\w* \w will|strong="H3808"\w* pine \w away|strong="H4743"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w iniquities|strong="H5771"\w*, \w and|strong="H7218"\w* moan \w one|strong="H3808"\w* \w toward|strong="H5921"\w* \w another|strong="H3808"\w*. +\v 24 \w Thus|strong="H1961"\w* \w Ezekiel|strong="H3168"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w sign|strong="H4159"\w* \w to|strong="H1961"\w* \w you|strong="H3588"\w*; according \w to|strong="H1961"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H1961"\w* \w done|strong="H6213"\w*, \w you|strong="H3588"\w* \w will|strong="H1961"\w* \w do|strong="H6213"\w*. \w When|strong="H3588"\w* \w this|strong="H6213"\w* \w comes|strong="H1961"\w*, \w then|strong="H1961"\w* \w you|strong="H3588"\w* \w will|strong="H1961"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*.’”’” +\p +\v 25 “\w You|strong="H3117"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, shouldn’t \w it|strong="H3117"\w* \w be|strong="H3808"\w* \w in|strong="H3117"\w* \w the|strong="H3947"\w* \w day|strong="H3117"\w* \w when|strong="H3117"\w* \w I|strong="H3117"\w* \w take|strong="H3947"\w* \w from|strong="H5315"\w* \w them|strong="H1992"\w* \w their|strong="H3947"\w* \w strength|strong="H4581"\w*, \w the|strong="H3947"\w* \w joy|strong="H4885"\w* \w of|strong="H1121"\w* \w their|strong="H3947"\w* \w glory|strong="H8597"\w*, \w the|strong="H3947"\w* \w desire|strong="H5315"\w* \w of|strong="H1121"\w* \w their|strong="H3947"\w* \w eyes|strong="H5869"\w*, \w and|strong="H1121"\w* \w that|strong="H3117"\w* whereupon \w they|strong="H1992"\w* \w set|strong="H4853"\w* \w their|strong="H3947"\w* \w heart|strong="H5315"\w*—\w their|strong="H3947"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w their|strong="H3947"\w* \w daughters|strong="H1323"\w*— +\v 26 \w that|strong="H3117"\w* \w in|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w he|strong="H1931"\w* \w who|strong="H1931"\w* \w escapes|strong="H6412"\w* \w will|strong="H1931"\w* come \w to|strong="H3117"\w* \w you|strong="H3117"\w*, \w to|strong="H3117"\w* cause \w you|strong="H3117"\w* \w to|strong="H3117"\w* \w hear|strong="H2045"\w* \w it|strong="H1931"\w* \w with|strong="H3117"\w* \w your|strong="H3117"\w* ears? +\v 27 \w In|strong="H3068"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w* \w your|strong="H3068"\w* \w mouth|strong="H6310"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w opened|strong="H6605"\w* \w to|strong="H1696"\w* \w him|strong="H1931"\w* \w who|strong="H1931"\w* \w has|strong="H3068"\w* \w escaped|strong="H6412"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w speak|strong="H1696"\w* \w and|strong="H3068"\w* \w be|strong="H1961"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* mute. \w So|strong="H1961"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w sign|strong="H4159"\w* \w to|strong="H1696"\w* \w them|strong="H1961"\w*. \w Then|strong="H1961"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w*.” +\c 25 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w set|strong="H7760"\w* \w your|strong="H5921"\w* \w face|strong="H6440"\w* \w toward|strong="H5921"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, \w and|strong="H1121"\w* \w prophesy|strong="H5012"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 3 \w Tell|strong="H8085"\w* \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, ‘\w Hear|strong="H8085"\w* \w the|strong="H8085"\w* \w word|strong="H1697"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*! \w The|strong="H8085"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w Because|strong="H3588"\w* \w you|strong="H3588"\w* \w said|strong="H1697"\w*, ‘\w Aha|strong="H1889"\w*!’ \w against|strong="H1697"\w* \w my|strong="H8085"\w* \w sanctuary|strong="H4720"\w* \w when|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H3478"\w* \w profaned|strong="H2490"\w*, \w and|strong="H1121"\w* \w against|strong="H1697"\w* \w the|strong="H8085"\w* land \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w when|strong="H3588"\w* \w it|strong="H3588"\w* \w was|strong="H3478"\w* \w made|strong="H8074"\w* \w desolate|strong="H8074"\w*, \w and|strong="H1121"\w* \w against|strong="H1697"\w* \w the|strong="H8085"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w went|strong="H1980"\w* \w into|strong="H1980"\w* \w captivity|strong="H1473"\w*, +\v 4 \w therefore|strong="H3651"\w*, \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H1121"\w* \w deliver|strong="H5414"\w* \w you|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w east|strong="H6924"\w* \w for|strong="H3427"\w* \w a|strong="H3068"\w* \w possession|strong="H4181"\w*. \w They|strong="H1992"\w* \w will|strong="H1121"\w* \w set|strong="H5414"\w* \w their|strong="H5414"\w* \w encampments|strong="H2918"\w* \w in|strong="H3427"\w* \w you|strong="H5414"\w* \w and|strong="H1121"\w* \w make|strong="H5414"\w* \w their|strong="H5414"\w* \w dwellings|strong="H4908"\w* \w in|strong="H3427"\w* \w you|strong="H5414"\w*. \w They|strong="H1992"\w* \w will|strong="H1121"\w* eat \w your|strong="H5414"\w* \w fruit|strong="H6529"\w* \w and|strong="H1121"\w* \w they|strong="H1992"\w* \w will|strong="H1121"\w* \w drink|strong="H8354"\w* \w your|strong="H5414"\w* \w milk|strong="H2461"\w*. +\v 5 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w make|strong="H5414"\w* \w Rabbah|strong="H7237"\w* \w a|strong="H3068"\w* \w stable|strong="H5116"\w* \w for|strong="H3588"\w* \w camels|strong="H1581"\w* \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w a|strong="H3068"\w* \w resting|strong="H4769"\w* \w place|strong="H5414"\w* \w for|strong="H3588"\w* \w flocks|strong="H6629"\w*. \w Then|strong="H5414"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.” +\v 6 \w For|strong="H3588"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3478"\w* \w clapped|strong="H4222"\w* \w your|strong="H3605"\w* \w hands|strong="H3027"\w*, \w stamped|strong="H7554"\w* \w with|strong="H3027"\w* \w the|strong="H3605"\w* \w feet|strong="H7272"\w*, \w and|strong="H3478"\w* \w rejoiced|strong="H8055"\w* \w with|strong="H3027"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w contempt|strong="H5315"\w* \w of|strong="H3027"\w* \w your|strong="H3605"\w* \w soul|strong="H5315"\w* \w against|strong="H3027"\w* \w the|strong="H3605"\w* land \w of|strong="H3027"\w* \w Israel|strong="H3478"\w*, +\v 7 \w therefore|strong="H3651"\w*, \w behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w deliver|strong="H5414"\w* \w you|strong="H3588"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* plunder \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*. \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w cut|strong="H3772"\w* \w you|strong="H3588"\w* \w off|strong="H3772"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* \w peoples|strong="H5971"\w*, \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w cause|strong="H5414"\w* \w you|strong="H3588"\w* \w to|strong="H3068"\w* \w perish|strong="H3772"\w* \w out|strong="H5186"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* countries. \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w destroy|strong="H8045"\w* \w you|strong="H3588"\w*. \w Then|strong="H3651"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 8 “‘\w The|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Because|strong="H3282"\w* \w Moab|strong="H4124"\w* \w and|strong="H3063"\w* \w Seir|strong="H8165"\w* say, ‘\w Behold|strong="H2009"\w*, \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w is|strong="H2009"\w* \w like|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*,’ +\v 9 \w therefore|strong="H3651"\w*, \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H5892"\w* \w open|strong="H6605"\w* \w the|strong="H3651"\w* \w side|strong="H3802"\w* \w of|strong="H5892"\w* \w Moab|strong="H4124"\w* \w from|strong="H5892"\w* \w the|strong="H3651"\w* \w cities|strong="H5892"\w*, \w from|strong="H5892"\w* \w his|strong="H6605"\w* \w cities|strong="H5892"\w* \w which|strong="H5892"\w* \w are|strong="H5892"\w* \w on|strong="H5892"\w* \w its|strong="H6605"\w* \w frontiers|strong="H7097"\w*, \w the|strong="H3651"\w* \w glory|strong="H6643"\w* \w of|strong="H5892"\w* \w the|strong="H3651"\w* country, Beth Jeshimoth, Baal Meon, \w and|strong="H5892"\w* \w Kiriathaim|strong="H7156"\w*, +\v 10 \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w east|strong="H6924"\w*, \w to|strong="H5921"\w* go \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*; \w and|strong="H1121"\w* \w I|strong="H5414"\w* \w will|strong="H1471"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w possession|strong="H4181"\w*, \w that|strong="H1471"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w may|strong="H1471"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w remembered|strong="H2142"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*. +\v 11 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w execute|strong="H6213"\w* \w judgments|strong="H8201"\w* \w on|strong="H3068"\w* \w Moab|strong="H4124"\w*. \w Then|strong="H6213"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 12 “‘\w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Because|strong="H3282"\w* Edom \w has|strong="H3063"\w* \w dealt|strong="H6213"\w* \w against|strong="H6213"\w* \w the|strong="H3069"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w by|strong="H6213"\w* \w taking|strong="H5358"\w* \w vengeance|strong="H5359"\w*, \w and|strong="H3063"\w* \w has|strong="H3063"\w* greatly offended, \w and|strong="H3063"\w* \w taken|strong="H5358"\w* \w revenge|strong="H5358"\w* \w on|strong="H1004"\w* \w them|strong="H6213"\w*,” +\v 13 \w therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w I|strong="H5414"\w* \w will|strong="H2719"\w* \w stretch|strong="H5186"\w* \w out|strong="H5186"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* Edom, \w and|strong="H3027"\w* \w will|strong="H2719"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w man|strong="H5307"\w* \w and|strong="H3027"\w* animal \w from|strong="H4480"\w* \w it|strong="H5414"\w*; \w and|strong="H3027"\w* \w I|strong="H5414"\w* \w will|strong="H2719"\w* \w make|strong="H5414"\w* \w it|strong="H5414"\w* \w desolate|strong="H2723"\w* \w from|strong="H4480"\w* \w Teman|strong="H8487"\w*. \w They|strong="H3651"\w* \w will|strong="H2719"\w* \w fall|strong="H5307"\w* \w by|strong="H3027"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w* \w even|strong="H3651"\w* \w to|strong="H5921"\w* \w Dedan|strong="H1719"\w*. +\v 14 \w I|strong="H5414"\w* \w will|strong="H5971"\w* \w lay|strong="H5414"\w* \w my|strong="H5414"\w* \w vengeance|strong="H5360"\w* \w on|strong="H3027"\w* Edom \w by|strong="H3027"\w* \w the|strong="H5002"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w my|strong="H5414"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*. \w They|strong="H6213"\w* \w will|strong="H5971"\w* \w do|strong="H6213"\w* \w in|strong="H3478"\w* Edom \w according|strong="H3027"\w* \w to|strong="H3478"\w* \w my|strong="H5414"\w* \w anger|strong="H2534"\w* \w and|strong="H3478"\w* \w according|strong="H3027"\w* \w to|strong="H3478"\w* \w my|strong="H5414"\w* \w wrath|strong="H2534"\w*. \w Then|strong="H5414"\w* \w they|strong="H6213"\w* \w will|strong="H5971"\w* \w know|strong="H3045"\w* \w my|strong="H5414"\w* \w vengeance|strong="H5360"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 15 “‘\w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Because|strong="H3282"\w* \w the|strong="H3069"\w* \w Philistines|strong="H6430"\w* \w have|strong="H6430"\w* \w taken|strong="H5358"\w* \w revenge|strong="H5360"\w*, \w and|strong="H5769"\w* \w have|strong="H6430"\w* \w taken|strong="H5358"\w* \w vengeance|strong="H5360"\w* \w with|strong="H6213"\w* \w contempt|strong="H5315"\w* \w of|strong="H5315"\w* \w soul|strong="H5315"\w* \w to|strong="H6213"\w* \w destroy|strong="H4889"\w* \w with|strong="H6213"\w* \w perpetual|strong="H5769"\w* hostility,” +\v 16 \w therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3027"\w* \w stretch|strong="H5186"\w* \w out|strong="H5186"\w* \w my|strong="H5921"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w Philistines|strong="H6430"\w*, \w and|strong="H3027"\w* \w I|strong="H2005"\w* \w will|strong="H3027"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w the|strong="H5921"\w* \w Cherethites|strong="H3774"\w*, \w and|strong="H3027"\w* \w destroy|strong="H3772"\w* \w the|strong="H5921"\w* \w remnant|strong="H7611"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w coast|strong="H3027"\w*. +\v 17 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w execute|strong="H6213"\w* \w great|strong="H1419"\w* \w vengeance|strong="H5360"\w* \w on|strong="H3068"\w* \w them|strong="H5414"\w* \w with|strong="H3068"\w* \w wrathful|strong="H2534"\w* \w rebukes|strong="H8433"\w*. \w Then|strong="H5414"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w lay|strong="H5414"\w* \w my|strong="H5414"\w* \w vengeance|strong="H5360"\w* \w on|strong="H3068"\w* \w them|strong="H5414"\w*.”’” +\c 26 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H3068"\w* \w eleventh|strong="H6249"\w* \w year|strong="H8141"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* first \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w month|strong="H2320"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1961"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w because|strong="H5921"\w* \w Tyre|strong="H6865"\w* \w has|strong="H3389"\w* said \w against|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, ‘\w Aha|strong="H1889"\w*! \w She|strong="H5921"\w* \w is|strong="H1121"\w* \w broken|strong="H7665"\w*! \w She|strong="H5921"\w* \w who|strong="H5971"\w* \w was|strong="H1121"\w* \w the|strong="H5921"\w* \w gateway|strong="H1817"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w peoples|strong="H5971"\w* \w has|strong="H3389"\w* \w been|strong="H5971"\w* \w returned|strong="H5437"\w* \w to|strong="H5921"\w* \w me|strong="H5921"\w*. \w I|strong="H5921"\w* \w will|strong="H5971"\w* \w be|strong="H1121"\w* \w replenished|strong="H4390"\w*, \w now|strong="H5921"\w* \w that|strong="H5971"\w* \w she|strong="H5921"\w* \w is|strong="H1121"\w* \w laid|strong="H2717"\w* \w waste|strong="H2717"\w*;’ +\v 3 \w therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H2005"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w*, \w Tyre|strong="H6865"\w*, \w and|strong="H1471"\w* \w will|strong="H1471"\w* \w cause|strong="H3651"\w* \w many|strong="H7227"\w* \w nations|strong="H1471"\w* \w to|strong="H5927"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w*, \w as|strong="H3651"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* causes \w its|strong="H5921"\w* \w waves|strong="H1530"\w* \w to|strong="H5927"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w*. +\v 4 \w They|strong="H5414"\w* \w will|strong="H5414"\w* \w destroy|strong="H7843"\w* \w the|strong="H5414"\w* \w walls|strong="H2346"\w* \w of|strong="H2346"\w* \w Tyre|strong="H6865"\w*, \w and|strong="H6083"\w* \w break|strong="H2040"\w* \w down|strong="H2040"\w* \w her|strong="H5414"\w* \w towers|strong="H4026"\w*. \w I|strong="H5414"\w* \w will|strong="H5414"\w* also \w scrape|strong="H5500"\w* \w her|strong="H5414"\w* \w dust|strong="H6083"\w* \w from|strong="H4480"\w* \w her|strong="H5414"\w*, \w and|strong="H6083"\w* \w make|strong="H5414"\w* \w her|strong="H5414"\w* \w a|strong="H3068"\w* \w bare|strong="H6706"\w* \w rock|strong="H5553"\w*. +\v 5 \w She|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w place|strong="H1961"\w* \w for|strong="H3588"\w* \w the|strong="H5002"\w* \w spreading|strong="H4894"\w* \w of|strong="H8432"\w* \w nets|strong="H2764"\w* \w in|strong="H8432"\w* \w the|strong="H5002"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w the|strong="H5002"\w* \w sea|strong="H3220"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w spoken|strong="H1696"\w* \w it|strong="H3588"\w*,’ \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. ‘\w She|strong="H3588"\w* \w will|strong="H1961"\w* \w become|strong="H1961"\w* plunder \w for|strong="H3588"\w* \w the|strong="H5002"\w* \w nations|strong="H1471"\w*. +\v 6 \w Her|strong="H3045"\w* \w daughters|strong="H1323"\w* \w who|strong="H3068"\w* \w are|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w slain|strong="H2026"\w* \w with|strong="H3068"\w* \w the|strong="H3588"\w* \w sword|strong="H2719"\w*. \w Then|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.’ +\p +\v 7 “\w For|strong="H3588"\w* \w the|strong="H3588"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H4428"\w* bring \w on|strong="H3069"\w* \w Tyre|strong="H6865"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w kings|strong="H4428"\w*, \w from|strong="H5971"\w* \w the|strong="H3588"\w* \w north|strong="H6828"\w*, \w with|strong="H5971"\w* \w horses|strong="H5483"\w*, \w with|strong="H5971"\w* \w chariots|strong="H7393"\w*, \w with|strong="H5971"\w* \w horsemen|strong="H6571"\w*, \w and|strong="H4428"\w* \w an|strong="H3588"\w* \w army|strong="H5971"\w* \w with|strong="H5971"\w* \w many|strong="H7227"\w* \w people|strong="H5971"\w*. +\v 8 \w He|strong="H5414"\w* \w will|strong="H2719"\w* \w kill|strong="H2026"\w* \w your|strong="H5414"\w* \w daughters|strong="H1323"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w field|strong="H7704"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w*. \w He|strong="H5414"\w* \w will|strong="H2719"\w* \w make|strong="H5414"\w* \w forts|strong="H1785"\w* \w against|strong="H5921"\w* \w you|strong="H5414"\w*, \w cast|strong="H8210"\w* \w up|strong="H6965"\w* \w a|strong="H3068"\w* mound \w against|strong="H5921"\w* \w you|strong="H5414"\w*, \w and|strong="H6965"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w the|strong="H5921"\w* \w buckler|strong="H6793"\w* \w against|strong="H5921"\w* \w you|strong="H5414"\w*. +\v 9 \w He|strong="H5414"\w* \w will|strong="H2719"\w* \w set|strong="H5414"\w* \w his|strong="H5414"\w* \w battering|strong="H6904"\w* \w engines|strong="H4239"\w* \w against|strong="H2719"\w* \w your|strong="H5414"\w* \w walls|strong="H2346"\w*, \w and|strong="H2719"\w* \w with|strong="H2719"\w* \w his|strong="H5414"\w* \w axes|strong="H2719"\w* \w he|strong="H5414"\w* \w will|strong="H2719"\w* \w break|strong="H5422"\w* \w down|strong="H5422"\w* \w your|strong="H5414"\w* \w towers|strong="H4026"\w*. +\v 10 \w By|strong="H5892"\w* reason \w of|strong="H5892"\w* \w the|strong="H3680"\w* \w abundance|strong="H8229"\w* \w of|strong="H5892"\w* \w his|strong="H3680"\w* \w horses|strong="H5483"\w*, \w their|strong="H3680"\w* \w dust|strong="H1534"\w* \w will|strong="H5892"\w* \w cover|strong="H3680"\w* \w you|strong="H6963"\w*. \w Your|strong="H3680"\w* \w walls|strong="H2346"\w* \w will|strong="H5892"\w* \w shake|strong="H7493"\w* \w at|strong="H5892"\w* \w the|strong="H3680"\w* \w noise|strong="H6963"\w* \w of|strong="H5892"\w* \w the|strong="H3680"\w* \w horsemen|strong="H6571"\w*, \w of|strong="H5892"\w* \w the|strong="H3680"\w* \w wagons|strong="H1534"\w*, \w and|strong="H6963"\w* \w of|strong="H5892"\w* \w the|strong="H3680"\w* \w chariots|strong="H7393"\w*, \w when|strong="H6963"\w* \w he|strong="H5892"\w* enters \w into|strong="H5892"\w* \w your|strong="H3680"\w* \w gates|strong="H8179"\w*, \w as|strong="H5892"\w* men \w enter|strong="H3996"\w* \w into|strong="H5892"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w* \w which|strong="H5892"\w* \w is|strong="H5892"\w* \w broken|strong="H1234"\w* \w open|strong="H1234"\w*. +\v 11 \w He|strong="H3605"\w* \w will|strong="H5971"\w* \w tread|strong="H7429"\w* \w down|strong="H3381"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w streets|strong="H2351"\w* \w with|strong="H3381"\w* \w the|strong="H3605"\w* \w hoofs|strong="H6541"\w* \w of|strong="H5971"\w* \w his|strong="H3605"\w* \w horses|strong="H5483"\w*. \w He|strong="H3605"\w* \w will|strong="H5971"\w* \w kill|strong="H2026"\w* \w your|strong="H3605"\w* \w people|strong="H5971"\w* \w with|strong="H3381"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*. \w The|strong="H3605"\w* \w pillars|strong="H4676"\w* \w of|strong="H5971"\w* \w your|strong="H3605"\w* \w strength|strong="H5797"\w* \w will|strong="H5971"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3605"\w* ground. +\v 12 \w They|strong="H7997"\w* \w will|strong="H1004"\w* \w make|strong="H7760"\w* \w a|strong="H3068"\w* \w plunder|strong="H7997"\w* \w of|strong="H1004"\w* \w your|strong="H7760"\w* \w riches|strong="H2428"\w* \w and|strong="H1004"\w* \w make|strong="H7760"\w* \w a|strong="H3068"\w* \w prey|strong="H7997"\w* \w of|strong="H1004"\w* \w your|strong="H7760"\w* \w merchandise|strong="H7404"\w*. \w They|strong="H7997"\w* \w will|strong="H1004"\w* \w break|strong="H2040"\w* \w down|strong="H5422"\w* \w your|strong="H7760"\w* \w walls|strong="H2346"\w* \w and|strong="H1004"\w* \w destroy|strong="H5422"\w* \w your|strong="H7760"\w* \w pleasant|strong="H2532"\w* \w houses|strong="H1004"\w*. \w They|strong="H7997"\w* \w will|strong="H1004"\w* \w lay|strong="H7760"\w* \w your|strong="H7760"\w* stones, \w your|strong="H7760"\w* \w timber|strong="H6086"\w*, \w and|strong="H1004"\w* \w your|strong="H7760"\w* \w dust|strong="H6083"\w* \w in|strong="H1004"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H1004"\w* \w the|strong="H8432"\w* \w waters|strong="H4325"\w*. +\v 13 \w I|strong="H3808"\w* \w will|strong="H3808"\w* cause \w the|strong="H8085"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w your|strong="H8085"\w* \w songs|strong="H7892"\w* \w to|strong="H8085"\w* \w cease|strong="H7673"\w*. \w The|strong="H8085"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w your|strong="H8085"\w* \w harps|strong="H3658"\w* won’t \w be|strong="H3808"\w* \w heard|strong="H8085"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*. +\v 14 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w make|strong="H5414"\w* \w you|strong="H3588"\w* \w a|strong="H3068"\w* \w bare|strong="H6706"\w* \w rock|strong="H5553"\w*. \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w place|strong="H5414"\w* \w for|strong="H3588"\w* \w the|strong="H5002"\w* \w spreading|strong="H4894"\w* \w of|strong="H3068"\w* \w nets|strong="H2764"\w*. \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w built|strong="H1129"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w have|strong="H1961"\w* \w spoken|strong="H1696"\w* \w it|strong="H5414"\w*,’ \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 15 “\w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w to|strong="H3808"\w* \w Tyre|strong="H6865"\w*: ‘Won’t \w the|strong="H3069"\w* islands \w shake|strong="H7493"\w* \w at|strong="H3808"\w* \w the|strong="H3069"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w your|strong="H3808"\w* \w fall|strong="H4658"\w*, \w when|strong="H6963"\w* \w the|strong="H3069"\w* \w wounded|strong="H2491"\w* groan, \w when|strong="H6963"\w* \w the|strong="H3069"\w* \w slaughter|strong="H2027"\w* \w is|strong="H6963"\w* \w made|strong="H2026"\w* \w within|strong="H8432"\w* \w you|strong="H3808"\w*? +\v 16 \w Then|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H5387"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w* \w will|strong="H3220"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H5493"\w* \w their|strong="H3605"\w* \w thrones|strong="H3678"\w*, \w and|strong="H3381"\w* lay \w aside|strong="H5493"\w* \w their|strong="H3605"\w* \w robes|strong="H4598"\w*, \w and|strong="H3381"\w* \w strip|strong="H6584"\w* \w off|strong="H6584"\w* \w their|strong="H3605"\w* \w embroidered|strong="H7553"\w* garments. \w They|strong="H5921"\w* \w will|strong="H3220"\w* \w clothe|strong="H3847"\w* \w themselves|strong="H5921"\w* \w with|strong="H3847"\w* \w trembling|strong="H2731"\w*. \w They|strong="H5921"\w* \w will|strong="H3220"\w* \w sit|strong="H3427"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* ground, \w and|strong="H3381"\w* \w will|strong="H3220"\w* \w tremble|strong="H2729"\w* \w every|strong="H3605"\w* \w moment|strong="H7281"\w*, \w and|strong="H3381"\w* \w be|strong="H3220"\w* \w astonished|strong="H8074"\w* \w at|strong="H3427"\w* \w you|strong="H3605"\w*. +\v 17 \w They|strong="H5921"\w* \w will|strong="H1961"\w* \w take|strong="H5375"\w* \w up|strong="H5375"\w* \w a|strong="H3068"\w* \w lamentation|strong="H7015"\w* \w over|strong="H5921"\w* \w you|strong="H5414"\w*, \w and|strong="H5892"\w* \w tell|strong="H3605"\w* \w you|strong="H5414"\w*, +\q1 “How \w you|strong="H5414"\w* \w are|strong="H5892"\w* destroyed, +\q2 \w who|strong="H3605"\w* \w were|strong="H1961"\w* \w inhabited|strong="H3427"\w* \w by|strong="H5921"\w* seafaring \w men|strong="H3605"\w*, +\q1 \w the|strong="H3605"\w* \w renowned|strong="H1984"\w* \w city|strong="H5892"\w*, +\q2 \w who|strong="H3605"\w* \w was|strong="H1961"\w* \w strong|strong="H2389"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w*, +\q1 \w she|strong="H1931"\w* \w and|strong="H5892"\w* \w her|strong="H3605"\w* \w inhabitants|strong="H3427"\w*, +\q2 \w who|strong="H3605"\w* \w caused|strong="H5414"\w* \w their|strong="H3605"\w* \w terror|strong="H2851"\w* \w to|strong="H1961"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w lived|strong="H3427"\w* \w there|strong="H1961"\w*!” +\q1 +\v 18 \w Now|strong="H6258"\w* \w the|strong="H3117"\w* islands \w will|strong="H3117"\w* \w tremble|strong="H2729"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H3318"\w* \w fall|strong="H4658"\w*. +\q2 Yes, \w the|strong="H3117"\w* islands \w that|strong="H3117"\w* \w are|strong="H3117"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w sea|strong="H3220"\w* \w will|strong="H3117"\w* \w be|strong="H3117"\w* dismayed \w at|strong="H3117"\w* \w your|strong="H3318"\w* \w departure|strong="H3318"\w*.’ +\p +\v 19 “\w For|strong="H3588"\w* \w the|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w When|strong="H3588"\w* \w I|strong="H3588"\w* \w make|strong="H5414"\w* \w you|strong="H3588"\w* \w a|strong="H3068"\w* \w desolate|strong="H2717"\w* \w city|strong="H5892"\w*, \w like|strong="H3808"\w* \w the|strong="H5921"\w* \w cities|strong="H5892"\w* \w that|strong="H3588"\w* \w are|strong="H5892"\w* \w not|strong="H3808"\w* \w inhabited|strong="H3427"\w*, \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w bring|strong="H5927"\w* \w up|strong="H5927"\w* \w the|strong="H5921"\w* \w deep|strong="H8415"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*, \w and|strong="H5892"\w* \w the|strong="H5921"\w* \w great|strong="H7227"\w* \w waters|strong="H4325"\w* \w cover|strong="H3680"\w* \w you|strong="H3588"\w*, +\v 20 \w then|strong="H4616"\w* \w I|strong="H5414"\w* \w will|strong="H5971"\w* \w bring|strong="H3381"\w* \w you|strong="H5414"\w* \w down|strong="H3381"\w* \w with|strong="H3427"\w* \w those|strong="H3427"\w* \w who|strong="H5971"\w* \w descend|strong="H3381"\w* \w into|strong="H3381"\w* \w the|strong="H5414"\w* pit, \w to|strong="H3381"\w* \w the|strong="H5414"\w* \w people|strong="H5971"\w* \w of|strong="H3427"\w* \w old|strong="H5769"\w* \w time|strong="H5769"\w*, \w and|strong="H5971"\w* \w will|strong="H5971"\w* \w make|strong="H5414"\w* \w you|strong="H5414"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5414"\w* \w lower|strong="H8482"\w* \w parts|strong="H8482"\w* \w of|strong="H3427"\w* \w the|strong="H5414"\w* earth, \w in|strong="H3427"\w* \w the|strong="H5414"\w* \w places|strong="H2723"\w* \w that|strong="H5971"\w* \w are|strong="H5971"\w* \w desolate|strong="H2723"\w* \w of|strong="H3427"\w* \w old|strong="H5769"\w*, \w with|strong="H3427"\w* \w those|strong="H3427"\w* \w who|strong="H5971"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H5414"\w* pit, \w that|strong="H5971"\w* \w you|strong="H5414"\w* \w be|strong="H3808"\w* \w not|strong="H3808"\w* \w inhabited|strong="H3427"\w*; \w and|strong="H5971"\w* \w I|strong="H5414"\w* \w will|strong="H5971"\w* \w set|strong="H5414"\w* \w glory|strong="H6643"\w* \w in|strong="H3427"\w* \w the|strong="H5414"\w* land \w of|strong="H3427"\w* \w the|strong="H5414"\w* \w living|strong="H2416"\w*. +\v 21 \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w make|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w terror|strong="H1091"\w*, \w and|strong="H5769"\w* \w you|strong="H5414"\w* \w will|strong="H5414"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w have|strong="H4672"\w* \w any|strong="H5750"\w* \w being|strong="H5750"\w*. Though \w you|strong="H5414"\w* \w are|strong="H1091"\w* \w sought|strong="H1245"\w* \w for|strong="H1245"\w*, \w yet|strong="H5750"\w* \w you|strong="H5414"\w* \w will|strong="H5414"\w* \w never|strong="H3808"\w* \w be|strong="H3808"\w* \w found|strong="H4672"\w* \w again|strong="H5750"\w*,’ \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*.” +\c 27 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w again|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w You|strong="H5921"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w take|strong="H5375"\w* \w up|strong="H5375"\w* \w a|strong="H3068"\w* \w lamentation|strong="H7015"\w* \w over|strong="H5921"\w* \w Tyre|strong="H6865"\w*; +\v 3 \w and|strong="H5971"\w* tell \w Tyre|strong="H6865"\w*, ‘\w You|strong="H5921"\w* \w who|strong="H5971"\w* \w dwell|strong="H3427"\w* \w at|strong="H3427"\w* \w the|strong="H5921"\w* \w entry|strong="H3997"\w* \w of|strong="H3427"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*, \w who|strong="H5971"\w* \w are|strong="H5971"\w* \w the|strong="H5921"\w* \w merchant|strong="H7402"\w* \w of|strong="H3427"\w* \w the|strong="H5921"\w* \w peoples|strong="H5971"\w* \w to|strong="H5921"\w* \w many|strong="H7227"\w* islands, \w the|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w You|strong="H5921"\w*, \w Tyre|strong="H6865"\w*, \w have|strong="H5971"\w* said, +\q2 ‘\w I|strong="H3541"\w* am \w perfect|strong="H3632"\w* \w in|strong="H3427"\w* \w beauty|strong="H3308"\w*.’ +\q1 +\v 4 \w Your|strong="H1129"\w* \w borders|strong="H1366"\w* \w are|strong="H3820"\w* \w in|strong="H1129"\w* \w the|strong="H1129"\w* \w heart|strong="H3820"\w* \w of|strong="H1366"\w* \w the|strong="H1129"\w* \w seas|strong="H3220"\w*. +\q2 \w Your|strong="H1129"\w* \w builders|strong="H1129"\w* \w have|strong="H1129"\w* \w perfected|strong="H3634"\w* \w your|strong="H1129"\w* \w beauty|strong="H3308"\w*. +\q1 +\v 5 \w They|strong="H5921"\w* \w have|strong="H1129"\w* \w made|strong="H6213"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w planks|strong="H3871"\w* \w of|strong="H5921"\w* \w cypress|strong="H1265"\w* \w trees|strong="H1265"\w* \w from|strong="H5921"\w* \w Senir|strong="H8149"\w*. +\q2 \w They|strong="H5921"\w* \w have|strong="H1129"\w* \w taken|strong="H3947"\w* \w a|strong="H3068"\w* cedar \w from|strong="H5921"\w* \w Lebanon|strong="H3844"\w* \w to|strong="H5921"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w mast|strong="H8650"\w* \w for|strong="H5921"\w* \w you|strong="H3605"\w*. +\q1 +\v 6 \w They|strong="H6213"\w* \w have|strong="H1323"\w* \w made|strong="H6213"\w* \w your|strong="H6213"\w* \w oars|strong="H4880"\w* \w of|strong="H1323"\w* \w the|strong="H6213"\w* oaks \w of|strong="H1323"\w* \w Bashan|strong="H1316"\w*. +\q2 \w They|strong="H6213"\w* \w have|strong="H1323"\w* \w made|strong="H6213"\w* \w your|strong="H6213"\w* \w benches|strong="H7175"\w* \w of|strong="H1323"\w* \w ivory|strong="H8127"\w* \w inlaid|strong="H6213"\w* \w in|strong="H6213"\w* cypress wood \w from|strong="H1323"\w* \w the|strong="H6213"\w* islands \w of|strong="H1323"\w* \w Kittim|strong="H3794"\w*. +\q1 +\v 7 \w Your|strong="H1961"\w* \w sail|strong="H5251"\w* \w was|strong="H1961"\w* \w of|strong="H4714"\w* \w fine|strong="H8336"\w* \w linen|strong="H8336"\w* \w with|strong="H4714"\w* \w embroidered|strong="H7553"\w* \w work|strong="H7553"\w* \w from|strong="H1961"\w* \w Egypt|strong="H4714"\w*, +\q2 \w that|strong="H1961"\w* \w it|strong="H1961"\w* might \w be|strong="H1961"\w* \w to|strong="H1961"\w* \w you|strong="H4714"\w* \w for|strong="H4714"\w* \w a|strong="H3068"\w* \w banner|strong="H5251"\w*. +\q2 \w Blue|strong="H8504"\w* \w and|strong="H4714"\w* \w purple|strong="H8504"\w* \w from|strong="H1961"\w* \w the|strong="H1961"\w* islands \w of|strong="H4714"\w* Elishah \w was|strong="H1961"\w* \w your|strong="H1961"\w* \w awning|strong="H4374"\w*. +\q1 +\v 8 \w The|strong="H1961"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Sidon|strong="H6721"\w* \w and|strong="H3427"\w* Arvad \w were|strong="H1961"\w* \w your|strong="H1961"\w* \w rowers|strong="H7751"\w*. +\q2 \w Your|strong="H1961"\w* \w wise|strong="H2450"\w* \w men|strong="H2450"\w*, \w Tyre|strong="H6865"\w*, \w were|strong="H1961"\w* \w in|strong="H3427"\w* \w you|strong="H3427"\w*. +\q2 \w They|strong="H1992"\w* \w were|strong="H1961"\w* \w your|strong="H1961"\w* \w pilots|strong="H2259"\w*. +\q1 +\v 9 \w The|strong="H3605"\w* \w old|strong="H2205"\w* \w men|strong="H2450"\w* \w of|strong="H2205"\w* \w Gebal|strong="H1380"\w* +\q2 \w and|strong="H2388"\w* \w its|strong="H3605"\w* \w wise|strong="H2450"\w* \w men|strong="H2450"\w* \w were|strong="H1961"\w* \w your|strong="H3605"\w* \w repairers|strong="H2388"\w* \w of|strong="H2205"\w* ship seams \w in|strong="H3220"\w* \w you|strong="H3605"\w*. +\q1 \w All|strong="H3605"\w* \w the|strong="H3605"\w* ships \w of|strong="H2205"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w* \w with|strong="H3605"\w* \w their|strong="H3605"\w* \w mariners|strong="H4419"\w* \w were|strong="H1961"\w* \w in|strong="H3220"\w* \w you|strong="H3605"\w* +\q2 \w to|strong="H1961"\w* \w deal|strong="H6148"\w* \w in|strong="H3220"\w* \w your|strong="H3605"\w* \w merchandise|strong="H4627"\w*. +\b +\q1 +\v 10 “‘“\w Persia|strong="H6539"\w*, \w Lud|strong="H3865"\w*, \w and|strong="H4043"\w* \w Put|strong="H5414"\w* \w were|strong="H1961"\w* \w in|strong="H4421"\w* \w your|strong="H5414"\w* \w army|strong="H2428"\w*, +\q2 \w your|strong="H5414"\w* \w men|strong="H2428"\w* \w of|strong="H2428"\w* \w war|strong="H4421"\w*. +\q1 \w They|strong="H1992"\w* \w hung|strong="H8518"\w* \w the|strong="H5414"\w* \w shield|strong="H4043"\w* \w and|strong="H4043"\w* \w helmet|strong="H3553"\w* \w in|strong="H4421"\w* \w you|strong="H5414"\w*. +\q2 \w They|strong="H1992"\w* \w showed|strong="H5414"\w* \w your|strong="H5414"\w* \w beauty|strong="H1926"\w*. +\q1 +\v 11 \w The|strong="H5921"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* Arvad \w with|strong="H5921"\w* \w your|strong="H5921"\w* \w army|strong="H2428"\w* \w were|strong="H1961"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w walls|strong="H2346"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*, +\q2 \w and|strong="H1121"\w* \w valiant|strong="H2428"\w* \w men|strong="H1121"\w* \w were|strong="H1961"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w towers|strong="H4026"\w*. +\q1 \w They|strong="H1992"\w* \w hung|strong="H8518"\w* \w their|strong="H1992"\w* \w shields|strong="H7982"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w walls|strong="H2346"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*. +\q2 \w They|strong="H1992"\w* \w have|strong="H1961"\w* \w perfected|strong="H3634"\w* \w your|strong="H5921"\w* \w beauty|strong="H3308"\w*. +\p +\v 12 “‘“\w Tarshish|strong="H8659"\w* \w was|strong="H5414"\w* \w your|strong="H3605"\w* \w merchant|strong="H5503"\w* \w by|strong="H5414"\w* reason \w of|strong="H7230"\w* \w the|strong="H3605"\w* \w multitude|strong="H7230"\w* \w of|strong="H7230"\w* \w all|strong="H3605"\w* \w kinds|strong="H1952"\w* \w of|strong="H7230"\w* \w riches|strong="H1952"\w*. \w They|strong="H3605"\w* \w traded|strong="H5414"\w* \w for|strong="H3605"\w* \w your|strong="H3605"\w* \w wares|strong="H5801"\w* \w with|strong="H5801"\w* \w silver|strong="H3701"\w*, \w iron|strong="H1270"\w*, tin, \w and|strong="H3701"\w* \w lead|strong="H5777"\w*. +\p +\v 13 “‘“\w Javan|strong="H3120"\w*, \w Tubal|strong="H8422"\w*, \w and|strong="H5178"\w* \w Meshech|strong="H4902"\w* \w were|strong="H1992"\w* \w your|strong="H5414"\w* \w traders|strong="H7402"\w*. \w They|strong="H1992"\w* \w traded|strong="H7402"\w* \w the|strong="H5414"\w* \w persons|strong="H5315"\w* \w of|strong="H3627"\w* \w men|strong="H1992"\w* \w and|strong="H5178"\w* \w vessels|strong="H3627"\w* \w of|strong="H3627"\w* \w bronze|strong="H5178"\w* \w for|strong="H3627"\w* \w your|strong="H5414"\w* \w merchandise|strong="H4627"\w*. +\p +\v 14 “‘“\w They|strong="H5414"\w* \w of|strong="H1004"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Togarmah|strong="H8425"\w* \w traded|strong="H5414"\w* \w for|strong="H1004"\w* \w your|strong="H5414"\w* \w wares|strong="H5801"\w* \w with|strong="H1004"\w* \w horses|strong="H5483"\w*, \w war|strong="H6571"\w* \w horses|strong="H5483"\w*, \w and|strong="H1004"\w* \w mules|strong="H6505"\w*. +\p +\v 15 “‘“\w The|strong="H7725"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w Dedan|strong="H1719"\w* \w traded|strong="H7402"\w* \w with|strong="H3027"\w* \w you|strong="H7725"\w*. \w Many|strong="H7227"\w* islands \w were|strong="H1121"\w* \w the|strong="H7725"\w* \w market|strong="H5506"\w* \w of|strong="H1121"\w* \w your|strong="H7725"\w* \w hand|strong="H3027"\w*. \w They|strong="H3027"\w* \w brought|strong="H7725"\w* \w you|strong="H7725"\w* \w horns|strong="H7161"\w* \w of|strong="H1121"\w* \w ivory|strong="H8127"\w* \w and|strong="H1121"\w* \w ebony|strong="H1894"\w* \w in|strong="H7227"\w* exchange. +\p +\v 16 “‘“Syria \w was|strong="H5414"\w* \w your|strong="H5414"\w* \w merchant|strong="H5503"\w* \w by|strong="H5414"\w* reason \w of|strong="H7230"\w* \w the|strong="H5414"\w* \w multitude|strong="H7230"\w* \w of|strong="H7230"\w* \w your|strong="H5414"\w* handiworks. \w They|strong="H5414"\w* \w traded|strong="H5414"\w* \w for|strong="H5414"\w* \w your|strong="H5414"\w* \w wares|strong="H5801"\w* \w with|strong="H5801"\w* \w emeralds|strong="H5306"\w*, purple, \w embroidered|strong="H7553"\w* \w work|strong="H4639"\w*, fine linen, \w coral|strong="H7215"\w*, \w and|strong="H4639"\w* \w rubies|strong="H3539"\w*. +\p +\v 17 “‘“\w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w the|strong="H5414"\w* land \w of|strong="H8081"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w your|strong="H5414"\w* \w traders|strong="H7402"\w*. \w They|strong="H1992"\w* \w traded|strong="H7402"\w* \w wheat|strong="H2406"\w* \w of|strong="H8081"\w* \w Minnith|strong="H4511"\w*, confections, \w honey|strong="H1706"\w*, \w oil|strong="H8081"\w*, \w and|strong="H3063"\w* \w balm|strong="H6875"\w* \w for|strong="H3478"\w* \w your|strong="H5414"\w* \w merchandise|strong="H4627"\w*. +\p +\v 18 “‘“\w Damascus|strong="H1834"\w* \w was|strong="H3605"\w* \w your|strong="H3605"\w* \w merchant|strong="H5503"\w* \w for|strong="H3605"\w* \w the|strong="H3605"\w* \w multitude|strong="H7230"\w* \w of|strong="H7230"\w* \w your|strong="H3605"\w* handiworks \w by|strong="H3605"\w* reason \w of|strong="H7230"\w* \w the|strong="H3605"\w* \w multitude|strong="H7230"\w* \w of|strong="H7230"\w* \w all|strong="H3605"\w* \w kinds|strong="H1952"\w* \w of|strong="H7230"\w* \w riches|strong="H1952"\w*, \w with|strong="H3605"\w* \w the|strong="H3605"\w* \w wine|strong="H3196"\w* \w of|strong="H7230"\w* \w Helbon|strong="H2463"\w*, \w and|strong="H3196"\w* \w white|strong="H6713"\w* \w wool|strong="H6785"\w*. +\p +\v 19 “‘“\w Vedan|strong="H2051"\w* \w and|strong="H1270"\w* \w Javan|strong="H3120"\w* \w traded|strong="H5414"\w* \w with|strong="H5801"\w* yarn \w for|strong="H5414"\w* \w your|strong="H5414"\w* \w wares|strong="H5801"\w*; \w wrought|strong="H6219"\w* \w iron|strong="H1270"\w*, \w cassia|strong="H6916"\w*, \w and|strong="H1270"\w* \w calamus|strong="H7070"\w* \w were|strong="H1961"\w* among \w your|strong="H5414"\w* \w merchandise|strong="H4627"\w*. +\p +\v 20 “‘“\w Dedan|strong="H1719"\w* was your \w merchant|strong="H7402"\w* \w in|strong="H7402"\w* \w precious|strong="H2667"\w* saddle blankets \w for|strong="H2667"\w* \w riding|strong="H7396"\w*. +\p +\v 21 “‘“\w Arabia|strong="H6152"\w* \w and|strong="H3027"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w princes|strong="H5387"\w* \w of|strong="H3027"\w* \w Kedar|strong="H6938"\w* \w were|strong="H1992"\w* \w your|strong="H3605"\w* favorite dealers \w in|strong="H3027"\w* \w lambs|strong="H3733"\w*, \w rams|strong="H3733"\w*, \w and|strong="H3027"\w* \w goats|strong="H6260"\w*. \w In|strong="H3027"\w* \w these|strong="H1992"\w*, \w they|strong="H1992"\w* \w were|strong="H1992"\w* \w your|strong="H3605"\w* \w merchants|strong="H5503"\w*. +\p +\v 22 “‘“\w The|strong="H3605"\w* \w traders|strong="H7402"\w* \w of|strong="H7218"\w* \w Sheba|strong="H7614"\w* \w and|strong="H2091"\w* \w Raamah|strong="H7484"\w* \w were|strong="H1992"\w* \w your|strong="H3605"\w* \w traders|strong="H7402"\w*. \w They|strong="H1992"\w* \w traded|strong="H7402"\w* \w for|strong="H3605"\w* \w your|strong="H3605"\w* \w wares|strong="H5801"\w* \w with|strong="H3605"\w* \w the|strong="H3605"\w* \w best|strong="H7218"\w* \w of|strong="H7218"\w* \w all|strong="H3605"\w* \w spices|strong="H1314"\w*, \w all|strong="H3605"\w* \w precious|strong="H3368"\w* stones, \w and|strong="H2091"\w* \w gold|strong="H2091"\w*. +\p +\v 23 “‘“\w Haran|strong="H2771"\w*, \w Canneh|strong="H3656"\w*, \w Eden|strong="H5729"\w*, the \w traders|strong="H7402"\w* \w of|strong="H7402"\w* \w Sheba|strong="H7614"\w*, Asshur \w and|strong="H7614"\w* \w Chilmad|strong="H3638"\w*, were your \w traders|strong="H7402"\w*. +\v 24 \w These|strong="H1992"\w* \w were|strong="H1992"\w* your \w traders|strong="H7402"\w* \w in|strong="H1992"\w* \w choice|strong="H4360"\w* wares, \w in|strong="H1992"\w* wrappings \w of|strong="H2256"\w* \w blue|strong="H8504"\w* \w and|strong="H8504"\w* \w embroidered|strong="H7553"\w* \w work|strong="H7553"\w*, \w and|strong="H8504"\w* \w in|strong="H1992"\w* cedar \w chests|strong="H1595"\w* \w of|strong="H2256"\w* rich clothing \w bound|strong="H2280"\w* \w with|strong="H2280"\w* \w cords|strong="H2256"\w*, among your \w merchandise|strong="H4819"\w*. +\q1 +\v 25 “‘“\w The|strong="H4390"\w* ships \w of|strong="H4390"\w* \w Tarshish|strong="H8659"\w* \w were|strong="H3820"\w* \w your|strong="H3513"\w* caravans \w for|strong="H4390"\w* \w your|strong="H3513"\w* \w merchandise|strong="H4627"\w*. +\q2 \w You|strong="H3513"\w* \w were|strong="H3820"\w* \w replenished|strong="H4390"\w* +\q2 \w and|strong="H3220"\w* \w made|strong="H3513"\w* \w very|strong="H3966"\w* \w glorious|strong="H3513"\w* \w in|strong="H3220"\w* \w the|strong="H4390"\w* \w heart|strong="H3820"\w* \w of|strong="H4390"\w* \w the|strong="H4390"\w* \w seas|strong="H3220"\w*. +\q1 +\v 26 \w Your|strong="H7665"\w* \w rowers|strong="H7751"\w* \w have|strong="H7751"\w* brought \w you|strong="H7307"\w* \w into|strong="H3220"\w* \w great|strong="H7227"\w* \w waters|strong="H4325"\w*. +\q2 \w The|strong="H7665"\w* \w east|strong="H6921"\w* \w wind|strong="H7307"\w* \w has|strong="H3820"\w* \w broken|strong="H7665"\w* \w you|strong="H7307"\w* \w in|strong="H7227"\w* \w the|strong="H7665"\w* \w heart|strong="H3820"\w* \w of|strong="H7307"\w* \w the|strong="H7665"\w* \w seas|strong="H3220"\w*. +\q1 +\v 27 \w Your|strong="H3605"\w* \w riches|strong="H1952"\w*, \w your|strong="H3605"\w* \w wares|strong="H5801"\w*, \w your|strong="H3605"\w* \w merchandise|strong="H4627"\w*, +\q2 \w your|strong="H3605"\w* \w mariners|strong="H4419"\w*, \w your|strong="H3605"\w* \w pilots|strong="H2259"\w*, \w your|strong="H3605"\w* \w repairers|strong="H2388"\w* \w of|strong="H3117"\w* ship seams, +\q1 \w the|strong="H3605"\w* \w dealers|strong="H6148"\w* \w in|strong="H3117"\w* \w your|strong="H3605"\w* \w merchandise|strong="H4627"\w*, +\q2 \w and|strong="H3117"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H3117"\w* \w war|strong="H4421"\w* \w who|strong="H3605"\w* \w are|strong="H3117"\w* \w in|strong="H3117"\w* \w you|strong="H3605"\w*, +\q1 \w with|strong="H3117"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w company|strong="H6951"\w* \w which|strong="H4421"\w* \w is|strong="H3820"\w* \w among|strong="H8432"\w* \w you|strong="H3605"\w*, +\q2 \w will|strong="H3820"\w* \w fall|strong="H5307"\w* \w into|strong="H8432"\w* \w the|strong="H3605"\w* \w heart|strong="H3820"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w seas|strong="H3220"\w* \w in|strong="H3117"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H3605"\w* \w ruin|strong="H4658"\w*. +\q1 +\v 28 \w At|strong="H2201"\w* \w the|strong="H6963"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H6963"\w* \w cry|strong="H2201"\w* \w of|strong="H6963"\w* your \w pilots|strong="H2259"\w*, +\q2 \w the|strong="H6963"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w* \w will|strong="H6963"\w* \w shake|strong="H7493"\w*. +\q1 +\v 29 \w All|strong="H3605"\w* \w who|strong="H3605"\w* \w handle|strong="H8610"\w* \w the|strong="H3605"\w* \w oars|strong="H4880"\w*, +\q2 \w the|strong="H3605"\w* \w mariners|strong="H4419"\w* \w and|strong="H5975"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w pilots|strong="H2259"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w*, +\q2 \w will|strong="H3220"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H3381"\w* \w their|strong="H3605"\w* ships. +\q1 \w They|strong="H3605"\w* \w will|strong="H3220"\w* \w stand|strong="H5975"\w* \w on|strong="H5975"\w* \w the|strong="H3605"\w* land, +\q2 +\v 30 \w and|strong="H6963"\w* \w will|strong="H8085"\w* cause \w their|strong="H8085"\w* \w voice|strong="H6963"\w* \w to|strong="H5927"\w* \w be|strong="H6963"\w* \w heard|strong="H8085"\w* \w over|strong="H5921"\w* \w you|strong="H5921"\w*, +\q2 \w and|strong="H6963"\w* \w will|strong="H8085"\w* \w cry|strong="H2199"\w* \w bitterly|strong="H4751"\w*. +\q1 \w They|strong="H5921"\w* \w will|strong="H8085"\w* \w cast|strong="H5927"\w* \w up|strong="H5927"\w* \w dust|strong="H6083"\w* \w on|strong="H5921"\w* \w their|strong="H8085"\w* \w heads|strong="H7218"\w*. +\q2 \w They|strong="H5921"\w* \w will|strong="H8085"\w* \w wallow|strong="H6428"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w ashes|strong="H6083"\w*. +\q1 +\v 31 \w They|strong="H5315"\w* \w will|strong="H5315"\w* \w make|strong="H7139"\w* \w themselves|strong="H5315"\w* \w bald|strong="H7139"\w* \w for|strong="H5315"\w* \w you|strong="H5315"\w*, +\q2 \w and|strong="H8242"\w* clothe \w themselves|strong="H5315"\w* \w with|strong="H2296"\w* \w sackcloth|strong="H8242"\w*. +\q1 \w They|strong="H5315"\w* \w will|strong="H5315"\w* \w weep|strong="H1058"\w* \w for|strong="H5315"\w* \w you|strong="H5315"\w* \w in|strong="H5315"\w* \w bitterness|strong="H4751"\w* \w of|strong="H5315"\w* \w soul|strong="H5315"\w*, +\q2 \w with|strong="H2296"\w* \w bitter|strong="H4751"\w* \w mourning|strong="H4553"\w*. +\q1 +\v 32 \w In|strong="H5921"\w* \w their|strong="H5375"\w* \w wailing|strong="H5204"\w* \w they|strong="H5921"\w* \w will|strong="H4310"\w* \w take|strong="H5375"\w* \w up|strong="H5375"\w* \w a|strong="H3068"\w* \w lamentation|strong="H7015"\w* \w for|strong="H5921"\w* \w you|strong="H5921"\w*, +\q2 \w and|strong="H3220"\w* \w lament|strong="H6969"\w* \w over|strong="H5921"\w* \w you|strong="H5921"\w*, saying, +\q1 ‘\w Who|strong="H4310"\w* \w is|strong="H4310"\w* \w there|strong="H8432"\w* \w like|strong="H5921"\w* \w Tyre|strong="H6865"\w*, +\q2 \w like|strong="H5921"\w* \w her|strong="H5375"\w* \w who|strong="H4310"\w* \w is|strong="H4310"\w* \w brought|strong="H5375"\w* \w to|strong="H5921"\w* silence \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*?’ +\q1 +\v 33 \w When|strong="H3318"\w* \w your|strong="H3318"\w* \w wares|strong="H5801"\w* \w came|strong="H3318"\w* \w from|strong="H3318"\w* \w the|strong="H3318"\w* \w seas|strong="H3220"\w*, +\q2 \w you|strong="H5971"\w* \w filled|strong="H7646"\w* \w many|strong="H7227"\w* \w peoples|strong="H5971"\w*. +\q1 \w You|strong="H5971"\w* \w enriched|strong="H6238"\w* \w the|strong="H3318"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H3318"\w* earth +\q2 \w with|strong="H7646"\w* \w the|strong="H3318"\w* \w multitude|strong="H7230"\w* \w of|strong="H4428"\w* \w your|strong="H3318"\w* \w riches|strong="H1952"\w* \w and|strong="H4428"\w* \w of|strong="H4428"\w* \w your|strong="H3318"\w* \w merchandise|strong="H4627"\w*. +\q1 +\v 34 \w In|strong="H8432"\w* \w the|strong="H3605"\w* \w time|strong="H6256"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w were|strong="H4325"\w* \w broken|strong="H7665"\w* \w by|strong="H4325"\w* \w the|strong="H3605"\w* \w seas|strong="H3220"\w*, +\q2 \w in|strong="H8432"\w* \w the|strong="H3605"\w* \w depths|strong="H4615"\w* \w of|strong="H4325"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w*, +\q2 \w your|strong="H3605"\w* \w merchandise|strong="H4627"\w* \w and|strong="H4325"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w company|strong="H6951"\w* \w fell|strong="H5307"\w* \w within|strong="H8432"\w* \w you|strong="H3605"\w*. +\q1 +\v 35 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* islands \w are|strong="H4428"\w* \w astonished|strong="H8074"\w* \w at|strong="H3427"\w* \w you|strong="H6440"\w*, +\q2 \w and|strong="H4428"\w* \w their|strong="H3605"\w* \w kings|strong="H4428"\w* \w are|strong="H4428"\w* \w horribly|strong="H8178"\w* \w afraid|strong="H8175"\w*. +\q2 \w They|strong="H5921"\w* \w are|strong="H4428"\w* \w troubled|strong="H7481"\w* \w in|strong="H3427"\w* \w their|strong="H3605"\w* \w face|strong="H6440"\w*. +\q1 +\v 36 \w The|strong="H5921"\w* \w merchants|strong="H5503"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w peoples|strong="H5971"\w* \w hiss|strong="H8319"\w* \w at|strong="H5921"\w* \w you|strong="H5921"\w*. +\q2 \w You|strong="H5921"\w* \w have|strong="H1961"\w* \w come|strong="H1961"\w* \w to|strong="H5704"\w* \w a|strong="H3068"\w* terrible end, +\q2 \w and|strong="H5971"\w* \w you|strong="H5921"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w no|strong="H1961"\w* \w more|strong="H5704"\w*.”’” +\c 28 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w again|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, tell \w the|strong="H5414"\w* \w prince|strong="H5057"\w* \w of|strong="H1121"\w* \w Tyre|strong="H6865"\w*, ‘\w The|strong="H5414"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w Because|strong="H3282"\w* \w your|strong="H5414"\w* \w heart|strong="H3820"\w* \w is|strong="H3820"\w* \w lifted|strong="H1361"\w* \w up|strong="H5414"\w*, +\q2 \w and|strong="H1121"\w* \w you|strong="H5414"\w* \w have|strong="H1121"\w* said, ‘\w I|strong="H5414"\w* am \w a|strong="H3068"\w* \w god|strong="H3069"\w*, +\q1 \w I|strong="H5414"\w* \w sit|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5414"\w* \w seat|strong="H4186"\w* \w of|strong="H1121"\w* \w God|strong="H3069"\w*, +\q2 \w in|strong="H3427"\w* \w the|strong="H5414"\w* \w middle|strong="H3820"\w* \w of|strong="H1121"\w* \w the|strong="H5414"\w* \w seas|strong="H3220"\w*;’ +\q1 \w yet|strong="H3808"\w* \w you|strong="H5414"\w* \w are|strong="H1121"\w* \w man|strong="H1121"\w*, +\q2 \w and|strong="H1121"\w* \w no|strong="H3808"\w* \w god|strong="H3069"\w*, +\q2 though \w you|strong="H5414"\w* \w set|strong="H5414"\w* \w your|strong="H5414"\w* \w heart|strong="H3820"\w* \w as|strong="H3427"\w* \w the|strong="H5414"\w* \w heart|strong="H3820"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w god|strong="H3069"\w*— +\q1 +\v 3 \w behold|strong="H2009"\w*, \w you|strong="H3605"\w* \w are|strong="H2450"\w* \w wiser|strong="H2450"\w* \w than|strong="H3808"\w* \w Daniel|strong="H1840"\w*. +\q2 \w There|strong="H2009"\w* \w is|strong="H2009"\w* \w no|strong="H3808"\w* \w secret|strong="H5640"\w* \w that|strong="H3605"\w* \w is|strong="H2009"\w* \w hidden|strong="H5640"\w* \w from|strong="H3605"\w* \w you|strong="H3605"\w*. +\q1 +\v 4 \w By|strong="H2091"\w* \w your|strong="H6213"\w* \w wisdom|strong="H2451"\w* \w and|strong="H3701"\w* \w by|strong="H2091"\w* \w your|strong="H6213"\w* \w understanding|strong="H8394"\w* \w you|strong="H6213"\w* \w have|strong="H2428"\w* \w gotten|strong="H6213"\w* \w yourself|strong="H6213"\w* \w riches|strong="H2428"\w*, +\q2 \w and|strong="H3701"\w* \w have|strong="H2428"\w* \w gotten|strong="H6213"\w* \w gold|strong="H2091"\w* \w and|strong="H3701"\w* \w silver|strong="H3701"\w* \w into|strong="H6213"\w* \w your|strong="H6213"\w* treasuries. +\q1 +\v 5 \w By|strong="H2451"\w* \w your|strong="H7235"\w* \w great|strong="H7230"\w* \w wisdom|strong="H2451"\w* +\q2 \w and|strong="H2451"\w* \w by|strong="H2451"\w* \w your|strong="H7235"\w* trading \w you|strong="H7235"\w* \w have|strong="H2428"\w* \w increased|strong="H7235"\w* \w your|strong="H7235"\w* \w riches|strong="H2428"\w*, +\q2 \w and|strong="H2451"\w* \w your|strong="H7235"\w* \w heart|strong="H3824"\w* \w is|strong="H2451"\w* \w lifted|strong="H1361"\w* \w up|strong="H1361"\w* \w because|strong="H7230"\w* \w of|strong="H7230"\w* \w your|strong="H7235"\w* \w riches|strong="H2428"\w*—” +\p +\v 6 “‘\w therefore|strong="H3651"\w* \w the|strong="H5414"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w Because|strong="H3282"\w* \w you|strong="H5414"\w* \w have|strong="H5414"\w* \w set|strong="H5414"\w* \w your|strong="H5414"\w* \w heart|strong="H3820"\w* \w as|strong="H3824"\w* \w the|strong="H5414"\w* \w heart|strong="H3820"\w* \w of|strong="H3820"\w* \w God|strong="H3069"\w*, +\q2 +\v 7 \w therefore|strong="H3651"\w*, \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H1471"\w* bring \w strangers|strong="H2114"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*, +\q2 \w the|strong="H5921"\w* \w terrible|strong="H6184"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*. +\q1 \w They|strong="H3651"\w* \w will|strong="H1471"\w* \w draw|strong="H7324"\w* \w their|strong="H5921"\w* \w swords|strong="H2719"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w beauty|strong="H3308"\w* \w of|strong="H5921"\w* \w your|strong="H5921"\w* \w wisdom|strong="H2451"\w*. +\q2 \w They|strong="H3651"\w* \w will|strong="H1471"\w* \w defile|strong="H2490"\w* \w your|strong="H5921"\w* \w brightness|strong="H3314"\w*. +\q1 +\v 8 \w They|strong="H3820"\w* \w will|strong="H3820"\w* \w bring|strong="H3381"\w* \w you|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H4191"\w* \w pit|strong="H7845"\w*. +\q2 \w You|strong="H3381"\w* \w will|strong="H3820"\w* \w die|strong="H4191"\w* \w the|strong="H4191"\w* \w death|strong="H4191"\w* \w of|strong="H3820"\w* those \w who|strong="H2491"\w* \w are|strong="H2491"\w* \w slain|strong="H2491"\w* +\q2 \w in|strong="H4191"\w* \w the|strong="H4191"\w* \w heart|strong="H3820"\w* \w of|strong="H3820"\w* \w the|strong="H4191"\w* \w seas|strong="H3220"\w*. +\q1 +\v 9 \w Will|strong="H3027"\w* \w you|strong="H6440"\w* \w yet|strong="H3808"\w* say \w before|strong="H6440"\w* \w him|strong="H6440"\w* \w who|strong="H3808"\w* \w kills|strong="H2026"\w* \w you|strong="H6440"\w*, ‘\w I|strong="H3808"\w* am \w God|strong="H3808"\w*’? +\q2 \w But|strong="H3808"\w* \w you|strong="H6440"\w* \w are|strong="H3027"\w* \w man|strong="H6440"\w*, \w and|strong="H3027"\w* \w not|strong="H3808"\w* \w God|strong="H3808"\w*, +\q2 \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w him|strong="H6440"\w* \w who|strong="H3808"\w* wounds \w you|strong="H6440"\w*. +\q1 +\v 10 \w You|strong="H3588"\w* \w will|strong="H3027"\w* \w die|strong="H4191"\w* \w the|strong="H5002"\w* \w death|strong="H4194"\w* \w of|strong="H3027"\w* \w the|strong="H5002"\w* \w uncircumcised|strong="H6189"\w* +\q2 \w by|strong="H3027"\w* \w the|strong="H5002"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w strangers|strong="H2114"\w*; +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3027"\w* \w spoken|strong="H1696"\w* \w it|strong="H3588"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*.’” +\b +\p +\v 11 \w Moreover|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 12 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w take|strong="H5375"\w* \w up|strong="H5375"\w* \w a|strong="H3068"\w* \w lamentation|strong="H7015"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Tyre|strong="H6865"\w*, \w and|strong="H1121"\w* tell \w him|strong="H5921"\w*, ‘\w The|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w You|strong="H5921"\w* \w were|strong="H1121"\w* \w the|strong="H5921"\w* \w seal|strong="H2856"\w* \w of|strong="H1121"\w* \w full|strong="H4392"\w* measure, +\q2 \w full|strong="H4392"\w* \w of|strong="H1121"\w* \w wisdom|strong="H2451"\w*, +\q2 \w and|strong="H1121"\w* \w perfect|strong="H3632"\w* \w in|strong="H5921"\w* \w beauty|strong="H3308"\w*. +\q1 +\v 13 \w You|strong="H3605"\w* \w were|strong="H1961"\w* \w in|strong="H3117"\w* \w Eden|strong="H5731"\w*, +\q2 \w the|strong="H3605"\w* \w garden|strong="H1588"\w* \w of|strong="H3117"\w* God. +\q1 \w Every|strong="H3605"\w* \w precious|strong="H3368"\w* \w stone|strong="H5601"\w* adorned \w you|strong="H3605"\w*: +\q2 ruby, \w topaz|strong="H6357"\w*, \w emerald|strong="H5306"\w*, +\q2 chrysolite, \w onyx|strong="H7718"\w*, \w jasper|strong="H3471"\w*, +\q2 \w sapphire|strong="H5601"\w*,\f + \fr 28:13 \ft or, lapis lazuli \f* \w turquoise|strong="H5306"\w*, \w and|strong="H3117"\w* \w beryl|strong="H8658"\w*. +\q1 \w Gold|strong="H2091"\w* \w work|strong="H4399"\w* \w of|strong="H3117"\w* \w tambourines|strong="H8596"\w* +\q2 \w and|strong="H3117"\w* \w of|strong="H3117"\w* \w pipes|strong="H5345"\w* \w was|strong="H1961"\w* \w in|strong="H3117"\w* \w you|strong="H3605"\w*. +\q2 \w They|strong="H3117"\w* \w were|strong="H1961"\w* \w prepared|strong="H3559"\w* \w in|strong="H3117"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w were|strong="H1961"\w* \w created|strong="H1254"\w*. +\q1 +\v 14 \w You|strong="H5414"\w* \w were|strong="H1961"\w* \w the|strong="H5414"\w* \w anointed|strong="H4473"\w* \w cherub|strong="H3742"\w* \w who|strong="H1980"\w* \w covers|strong="H5526"\w*. +\q2 \w Then|strong="H1961"\w* \w I|strong="H5414"\w* \w set|strong="H5414"\w* \w you|strong="H5414"\w* \w up|strong="H5414"\w* \w on|strong="H1980"\w* \w the|strong="H5414"\w* \w holy|strong="H6944"\w* \w mountain|strong="H2022"\w* \w of|strong="H2022"\w* \w God|strong="H5414"\w*. +\q2 \w You|strong="H5414"\w* \w have|strong="H1961"\w* \w walked|strong="H1980"\w* \w up|strong="H5414"\w* \w and|strong="H1980"\w* \w down|strong="H1980"\w* \w in|strong="H1980"\w* \w the|strong="H5414"\w* \w middle|strong="H8432"\w* \w of|strong="H2022"\w* \w the|strong="H5414"\w* stones \w of|strong="H2022"\w* fire. +\q1 +\v 15 \w You|strong="H3117"\w* \w were|strong="H3117"\w* \w perfect|strong="H8549"\w* \w in|strong="H3117"\w* \w your|strong="H5704"\w* \w ways|strong="H1870"\w* \w from|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w you|strong="H3117"\w* \w were|strong="H3117"\w* \w created|strong="H1254"\w*, +\q2 \w until|strong="H5704"\w* \w unrighteousness|strong="H5766"\w* \w was|strong="H3117"\w* \w found|strong="H4672"\w* \w in|strong="H3117"\w* \w you|strong="H3117"\w*. +\q1 +\v 16 \w By|strong="H2398"\w* \w the|strong="H8432"\w* \w abundance|strong="H7230"\w* \w of|strong="H2022"\w* \w your|strong="H4390"\w* commerce, \w your|strong="H4390"\w* insides \w were|strong="H2022"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w violence|strong="H2555"\w*, +\q2 \w and|strong="H2022"\w* \w you|strong="H8432"\w* \w have|strong="H2022"\w* \w sinned|strong="H2398"\w*. +\q1 Therefore \w I|strong="H8432"\w* \w have|strong="H2022"\w* \w cast|strong="H2490"\w* \w you|strong="H8432"\w* \w as|strong="H7230"\w* \w profane|strong="H2490"\w* \w out|strong="H8432"\w* \w of|strong="H2022"\w* God’s \w mountain|strong="H2022"\w*. +\q2 \w I|strong="H8432"\w* \w have|strong="H2022"\w* destroyed \w you|strong="H8432"\w*, \w covering|strong="H5526"\w* \w cherub|strong="H3742"\w*, +\q2 \w from|strong="H8432"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H2022"\w* \w the|strong="H8432"\w* stones \w of|strong="H2022"\w* fire. +\q1 +\v 17 \w Your|strong="H5414"\w* \w heart|strong="H3820"\w* \w was|strong="H3820"\w* \w lifted|strong="H1361"\w* \w up|strong="H5414"\w* \w because|strong="H5921"\w* \w of|strong="H4428"\w* \w your|strong="H5414"\w* \w beauty|strong="H3308"\w*. +\q2 \w You|strong="H5414"\w* \w have|strong="H7200"\w* \w corrupted|strong="H7843"\w* \w your|strong="H5414"\w* \w wisdom|strong="H2451"\w* \w by|strong="H5921"\w* \w reason|strong="H6440"\w* \w of|strong="H4428"\w* \w your|strong="H5414"\w* \w splendor|strong="H3314"\w*. +\q1 \w I|strong="H5414"\w* \w have|strong="H7200"\w* \w cast|strong="H7993"\w* \w you|strong="H5414"\w* \w to|strong="H5921"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w*. +\q2 \w I|strong="H5414"\w* \w have|strong="H7200"\w* \w laid|strong="H5414"\w* \w you|strong="H5414"\w* \w before|strong="H6440"\w* \w kings|strong="H4428"\w*, +\q2 \w that|strong="H7200"\w* \w they|strong="H5921"\w* \w may|strong="H4428"\w* \w see|strong="H7200"\w* \w you|strong="H5414"\w*. +\q1 +\v 18 \w By|strong="H5921"\w* \w the|strong="H3605"\w* \w multitude|strong="H7230"\w* \w of|strong="H5869"\w* \w your|strong="H3605"\w* \w iniquities|strong="H5771"\w*, +\q2 \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w unrighteousness|strong="H5766"\w* \w of|strong="H5869"\w* \w your|strong="H3605"\w* commerce, +\q2 \w you|strong="H5414"\w* \w have|strong="H5869"\w* \w profaned|strong="H2490"\w* \w your|strong="H3605"\w* \w sanctuaries|strong="H4720"\w*. +\q1 \w Therefore|strong="H5921"\w* \w I|strong="H5414"\w* \w have|strong="H5869"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w a|strong="H3068"\w* fire \w from|strong="H3318"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H5869"\w* \w you|strong="H5414"\w*. +\q2 \w It|strong="H5414"\w* \w has|strong="H5869"\w* devoured \w you|strong="H5414"\w*. +\q1 \w I|strong="H5414"\w* \w have|strong="H5869"\w* \w turned|strong="H5414"\w* \w you|strong="H5414"\w* \w to|strong="H3318"\w* ashes \w on|strong="H5921"\w* \w the|strong="H3605"\w* earth +\q2 \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H5869"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w see|strong="H7200"\w* \w you|strong="H5414"\w*. +\q1 +\v 19 \w All|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w know|strong="H3045"\w* \w you|strong="H3605"\w* \w among|strong="H5921"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w astonished|strong="H8074"\w* \w at|strong="H5921"\w* \w you|strong="H3605"\w*. +\q2 \w You|strong="H3605"\w* \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w terror|strong="H1091"\w*, +\q2 \w and|strong="H5971"\w* \w you|strong="H3605"\w* \w will|strong="H1961"\w* exist \w no|strong="H3605"\w* \w more|strong="H5704"\w*.”’” +\b +\p +\v 20 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 21 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w set|strong="H7760"\w* \w your|strong="H5921"\w* \w face|strong="H6440"\w* \w toward|strong="H5921"\w* \w Sidon|strong="H6721"\w*, \w and|strong="H1121"\w* \w prophesy|strong="H5012"\w* \w against|strong="H5921"\w* \w it|strong="H7760"\w*, +\v 22 \w and|strong="H3068"\w* say, ‘\w The|strong="H5921"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w Behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w*, \w Sidon|strong="H6721"\w*. +\q2 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w glorified|strong="H3513"\w* \w among|strong="H8432"\w* \w you|strong="H3588"\w*. +\q1 \w Then|strong="H6213"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w executed|strong="H6213"\w* \w judgments|strong="H8201"\w* \w in|strong="H5921"\w* \w her|strong="H5921"\w*, +\q2 \w and|strong="H3068"\w* \w am|strong="H3068"\w* \w sanctified|strong="H6942"\w* \w in|strong="H5921"\w* \w her|strong="H5921"\w*. +\q1 +\v 23 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w pestilence|strong="H1698"\w* \w into|strong="H8432"\w* \w her|strong="H7971"\w*, +\q2 \w and|strong="H3068"\w* \w blood|strong="H1818"\w* \w into|strong="H8432"\w* \w her|strong="H7971"\w* \w streets|strong="H2351"\w*. +\q1 \w The|strong="H5921"\w* \w wounded|strong="H2491"\w* \w will|strong="H3068"\w* \w fall|strong="H5307"\w* \w within|strong="H8432"\w* \w her|strong="H7971"\w*, +\q2 \w with|strong="H3068"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w* \w on|strong="H5921"\w* \w her|strong="H7971"\w* \w on|strong="H5921"\w* \w every|strong="H5439"\w* \w side|strong="H5439"\w*. +\q2 \w Then|strong="H7971"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 24 “‘“\w There|strong="H1961"\w* \w will|strong="H1961"\w* \w no|strong="H3808"\w* \w longer|strong="H5750"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w pricking|strong="H3992"\w* \w brier|strong="H5544"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w nor|strong="H3808"\w* \w a|strong="H3068"\w* hurting \w thorn|strong="H6975"\w* \w of|strong="H1004"\w* \w any|strong="H3605"\w* \w that|strong="H3588"\w* \w are|strong="H3478"\w* \w around|strong="H5439"\w* \w them|strong="H5439"\w* \w that|strong="H3588"\w* scorned \w them|strong="H5439"\w*. \w Then|strong="H1961"\w* \w they|strong="H3588"\w* \w will|strong="H1961"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 25 “‘\w The|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w When|strong="H4480"\w* \w I|strong="H5414"\w* \w have|strong="H5869"\w* \w gathered|strong="H6908"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* \w peoples|strong="H5971"\w* \w among|strong="H4480"\w* \w whom|strong="H5971"\w* \w they|strong="H5921"\w* \w are|strong="H5971"\w* \w scattered|strong="H6327"\w*, \w and|strong="H3478"\w* am shown \w as|strong="H5971"\w* \w holy|strong="H6942"\w* \w among|strong="H4480"\w* \w them|strong="H5414"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w sight|strong="H5869"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*, \w then|strong="H5414"\w* \w they|strong="H5921"\w* \w will|strong="H1471"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w their|strong="H5414"\w* \w own|strong="H5971"\w* land \w which|strong="H1471"\w* \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w to|strong="H3478"\w* \w my|strong="H5414"\w* \w servant|strong="H5650"\w* \w Jacob|strong="H3290"\w*. +\v 26 \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w it|strong="H5921"\w* securely. \w Yes|strong="H3588"\w*, \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w build|strong="H1129"\w* \w houses|strong="H1004"\w*, \w plant|strong="H5193"\w* \w vineyards|strong="H3754"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w dwell|strong="H3427"\w* securely \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w executed|strong="H6213"\w* \w judgments|strong="H8201"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w around|strong="H5439"\w* \w them|strong="H5921"\w* \w who|strong="H3605"\w* \w have|strong="H3068"\w* \w treated|strong="H6213"\w* \w them|strong="H5921"\w* \w with|strong="H1004"\w* contempt. \w Then|strong="H6213"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3605"\w* \w God|strong="H3068"\w*.”’” +\c 29 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H3068"\w* \w tenth|strong="H6224"\w* \w year|strong="H8141"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w tenth|strong="H6224"\w* \w month|strong="H2320"\w*, \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w twelfth|strong="H8147"\w* \w day|strong="H2320"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w month|strong="H2320"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1961"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w set|strong="H7760"\w* \w your|strong="H3605"\w* \w face|strong="H6440"\w* \w against|strong="H5921"\w* \w Pharaoh|strong="H6547"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H1121"\w* \w prophesy|strong="H5012"\w* \w against|strong="H5921"\w* \w him|strong="H6440"\w* \w and|strong="H1121"\w* \w against|strong="H5921"\w* \w all|strong="H3605"\w* \w Egypt|strong="H4714"\w*. +\v 3 \w Speak|strong="H1696"\w* \w and|strong="H4428"\w* \w say|strong="H1696"\w*, ‘\w The|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H2005"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w*, \w Pharaoh|strong="H6547"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*, +\q2 \w the|strong="H5921"\w* \w great|strong="H1419"\w* \w monster|strong="H8577"\w* \w that|strong="H4428"\w* \w lies|strong="H7257"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H4428"\w* \w his|strong="H5921"\w* \w rivers|strong="H2975"\w*, +\q1 \w that|strong="H4428"\w* \w has|strong="H4428"\w* \w said|strong="H1696"\w*, ‘\w My|strong="H5921"\w* \w river|strong="H2975"\w* \w is|strong="H4428"\w* \w my|strong="H5921"\w* own, +\q2 \w and|strong="H4428"\w* \w I|strong="H2005"\w* \w have|strong="H1696"\w* \w made|strong="H6213"\w* \w it|strong="H5921"\w* \w for|strong="H5921"\w* myself.’ +\q1 +\v 4 \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w put|strong="H5414"\w* \w hooks|strong="H2397"\w* \w in|strong="H8432"\w* \w your|strong="H3605"\w* \w jaws|strong="H3895"\w*, +\q2 \w and|strong="H5927"\w* \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w make|strong="H5414"\w* \w the|strong="H3605"\w* \w fish|strong="H1710"\w* \w of|strong="H8432"\w* \w your|strong="H3605"\w* \w rivers|strong="H2975"\w* \w stick|strong="H1692"\w* \w to|strong="H5927"\w* \w your|strong="H3605"\w* \w scales|strong="H7193"\w*. +\q1 \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w bring|strong="H5927"\w* \w you|strong="H5414"\w* \w up|strong="H5927"\w* \w out|strong="H5414"\w* \w of|strong="H8432"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w your|strong="H3605"\w* \w rivers|strong="H2975"\w*, +\q2 \w with|strong="H5927"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fish|strong="H1710"\w* \w of|strong="H8432"\w* \w your|strong="H3605"\w* \w rivers|strong="H2975"\w* \w which|strong="H3605"\w* \w stick|strong="H1692"\w* \w to|strong="H5927"\w* \w your|strong="H3605"\w* \w scales|strong="H7193"\w*. +\q1 +\v 5 \w I|strong="H5414"\w*’ll \w cast|strong="H5307"\w* \w you|strong="H5414"\w* \w out|strong="H5414"\w* \w into|strong="H5307"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w*, +\q2 \w you|strong="H5414"\w* \w and|strong="H8064"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w fish|strong="H1710"\w* \w of|strong="H6440"\w* \w your|strong="H3605"\w* \w rivers|strong="H2975"\w*. +\q1 \w You|strong="H5414"\w*’ll \w fall|strong="H5307"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w open|strong="H6440"\w* \w field|strong="H7704"\w*. +\q2 \w You|strong="H5414"\w* won’t \w be|strong="H3808"\w* \w brought|strong="H5414"\w* \w together|strong="H6908"\w* \w or|strong="H3808"\w* \w gathered|strong="H6908"\w*. +\q1 \w I|strong="H5414"\w* \w have|strong="H5414"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w* \w for|strong="H5921"\w* food \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w animals|strong="H2416"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w* +\q2 \w and|strong="H8064"\w* \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w birds|strong="H5775"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*. +\p +\v 6 “‘“\w All|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w a|strong="H3068"\w* \w staff|strong="H4938"\w* \w of|strong="H1004"\w* \w reed|strong="H7070"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. +\v 7 \w When|strong="H5921"\w* \w they|strong="H5921"\w* \w took|strong="H8610"\w* \w hold|strong="H8610"\w* \w of|strong="H3709"\w* \w you|strong="H3605"\w* \w by|strong="H5921"\w* \w your|strong="H3605"\w* \w hand|strong="H3709"\w*, \w you|strong="H3605"\w* \w broke|strong="H7665"\w* \w and|strong="H4975"\w* \w tore|strong="H1234"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w shoulders|strong="H3802"\w*. \w When|strong="H5921"\w* \w they|strong="H5921"\w* \w leaned|strong="H8172"\w* \w on|strong="H5921"\w* \w you|strong="H3605"\w*, \w you|strong="H3605"\w* \w broke|strong="H7665"\w* \w and|strong="H4975"\w* paralyzed \w all|strong="H3605"\w* \w of|strong="H3709"\w* \w their|strong="H3605"\w* thighs.” +\p +\v 8 “‘\w Therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H2719"\w* bring \w a|strong="H3068"\w* \w sword|strong="H2719"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*, \w and|strong="H2719"\w* \w will|strong="H2719"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* man \w and|strong="H2719"\w* animal \w from|strong="H4480"\w* \w you|strong="H5921"\w*. +\v 9 \w The|strong="H3588"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w desolation|strong="H8077"\w* \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w waste|strong="H2723"\w*. \w Then|strong="H1961"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w*. +\p “‘“\w Because|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* said, ‘\w The|strong="H3588"\w* \w river|strong="H2975"\w* \w is|strong="H3068"\w* \w mine|strong="H3045"\w*, \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w made|strong="H6213"\w* \w it|strong="H3588"\w*,’ +\v 10 \w therefore|strong="H3651"\w*, \w behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H2005"\w* \w against|strong="H4714"\w* \w you|strong="H5414"\w* \w and|strong="H4714"\w* \w against|strong="H4714"\w* \w your|strong="H5414"\w* \w rivers|strong="H2975"\w*. \w I|strong="H2005"\w* \w will|strong="H4714"\w* \w make|strong="H5414"\w* \w the|strong="H5414"\w* \w land|strong="H1366"\w* \w of|strong="H1366"\w* \w Egypt|strong="H4714"\w* \w an|strong="H5414"\w* \w utter|strong="H5414"\w* \w waste|strong="H2723"\w* \w and|strong="H4714"\w* \w desolation|strong="H8077"\w*, \w from|strong="H5704"\w* \w the|strong="H5414"\w* \w tower|strong="H4024"\w* \w of|strong="H1366"\w* Seveneh \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5414"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Ethiopia|strong="H3568"\w*. +\v 11 \w No|strong="H3808"\w* \w foot|strong="H7272"\w* \w of|strong="H8141"\w* \w man|strong="H5674"\w* \w will|strong="H3808"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w it|strong="H3808"\w*, \w nor|strong="H3808"\w* \w will|strong="H3808"\w* \w any|strong="H3808"\w* animal \w foot|strong="H7272"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w it|strong="H3808"\w*. \w It|strong="H3808"\w* won’t \w be|strong="H3808"\w* \w inhabited|strong="H3427"\w* \w for|strong="H3427"\w* forty \w years|strong="H8141"\w*. +\v 12 \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w make|strong="H5414"\w* \w the|strong="H5414"\w* land \w of|strong="H8141"\w* \w Egypt|strong="H4714"\w* \w a|strong="H3068"\w* \w desolation|strong="H8077"\w* \w in|strong="H8141"\w* \w the|strong="H5414"\w* \w middle|strong="H8432"\w* \w of|strong="H8141"\w* \w the|strong="H5414"\w* countries \w that|strong="H1471"\w* \w are|strong="H1471"\w* \w desolate|strong="H8074"\w*. \w Her|strong="H5414"\w* \w cities|strong="H5892"\w* \w among|strong="H8432"\w* \w the|strong="H5414"\w* \w cities|strong="H5892"\w* \w that|strong="H1471"\w* \w are|strong="H1471"\w* \w laid|strong="H5414"\w* \w waste|strong="H2717"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w desolation|strong="H8077"\w* forty \w years|strong="H8141"\w*. \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w scatter|strong="H2219"\w* \w the|strong="H5414"\w* \w Egyptians|strong="H4714"\w* \w among|strong="H8432"\w* \w the|strong="H5414"\w* \w nations|strong="H1471"\w*, \w and|strong="H5892"\w* \w will|strong="H1961"\w* \w disperse|strong="H2219"\w* \w them|strong="H5414"\w* \w through|strong="H8432"\w* \w the|strong="H5414"\w* countries.” +\p +\v 13 “‘\w For|strong="H3588"\w* \w the|strong="H3588"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w At|strong="H6908"\w* \w the|strong="H3588"\w* \w end|strong="H7093"\w* \w of|strong="H8141"\w* forty \w years|strong="H8141"\w* \w I|strong="H3588"\w* \w will|strong="H5971"\w* \w gather|strong="H6908"\w* \w the|strong="H3588"\w* \w Egyptians|strong="H4714"\w* \w from|strong="H4480"\w* \w the|strong="H3588"\w* \w peoples|strong="H5971"\w* \w where|strong="H8033"\w* \w they|strong="H3588"\w* \w were|strong="H5971"\w* \w scattered|strong="H6327"\w*. +\v 14 \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w reverse|strong="H7725"\w* \w the|strong="H5921"\w* \w captivity|strong="H7622"\w* \w of|strong="H5921"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H7725"\w* \w will|strong="H1961"\w* \w cause|strong="H7725"\w* \w them|strong="H5921"\w* \w to|strong="H7725"\w* \w return|strong="H7725"\w* \w into|strong="H7725"\w* \w the|strong="H5921"\w* land \w of|strong="H5921"\w* \w Pathros|strong="H6624"\w*, \w into|strong="H7725"\w* \w the|strong="H5921"\w* land \w of|strong="H5921"\w* \w their|strong="H7725"\w* \w birth|strong="H4351"\w*. \w There|strong="H8033"\w* \w they|strong="H8033"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w lowly|strong="H8217"\w* \w kingdom|strong="H4467"\w*. +\v 15 \w It|strong="H5921"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w the|strong="H5921"\w* \w lowest|strong="H8217"\w* \w of|strong="H4480"\w* \w the|strong="H5921"\w* \w kingdoms|strong="H4467"\w*. \w It|strong="H5921"\w* won’t \w lift|strong="H5375"\w* itself \w up|strong="H5375"\w* \w above|strong="H5921"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w* \w any|strong="H4480"\w* \w more|strong="H4480"\w*. \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w diminish|strong="H4591"\w* \w them|strong="H5921"\w* \w so|strong="H4480"\w* \w that|strong="H1471"\w* \w they|strong="H3808"\w* \w will|strong="H1961"\w* \w no|strong="H3808"\w* \w longer|strong="H5750"\w* \w rule|strong="H7287"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*. +\v 16 \w It|strong="H3588"\w* \w will|strong="H1961"\w* \w no|strong="H3808"\w* \w longer|strong="H5750"\w* \w be|strong="H1961"\w* \w the|strong="H3588"\w* \w confidence|strong="H4009"\w* \w of|strong="H1004"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w bringing|strong="H2142"\w* \w iniquity|strong="H5771"\w* \w to|strong="H3478"\w* memory, \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w turn|strong="H6437"\w* \w to|strong="H3478"\w* \w look|strong="H6437"\w* \w after|strong="H1961"\w* \w them|strong="H1961"\w*. \w Then|strong="H1961"\w* \w they|strong="H3588"\w* \w will|strong="H1961"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w the|strong="H3588"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*.”’” +\b +\p +\v 17 \w It|strong="H1961"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w pass|strong="H1961"\w* \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w twenty-seventh|strong="H6242"\w* \w year|strong="H8141"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w first|strong="H7223"\w* \w day|strong="H2320"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w month|strong="H2320"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1961"\w*, \w saying|strong="H1697"\w*, +\v 18 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* Babylon \w caused|strong="H1961"\w* \w his|strong="H3605"\w* \w army|strong="H2428"\w* \w to|strong="H1961"\w* \w serve|strong="H5647"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w service|strong="H5656"\w* \w against|strong="H5921"\w* \w Tyre|strong="H6865"\w*. \w Every|strong="H3605"\w* \w head|strong="H7218"\w* \w was|strong="H1961"\w* \w made|strong="H1961"\w* \w bald|strong="H7139"\w*, \w and|strong="H1121"\w* \w every|strong="H3605"\w* \w shoulder|strong="H3802"\w* \w was|strong="H1961"\w* worn; \w yet|strong="H3808"\w* \w he|strong="H3605"\w* \w had|strong="H1961"\w* \w no|strong="H3808"\w* \w wages|strong="H7939"\w*, \w nor|strong="H3808"\w* \w did|strong="H3808"\w* \w his|strong="H3605"\w* \w army|strong="H2428"\w*, \w from|strong="H5921"\w* \w Tyre|strong="H6865"\w*, \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w service|strong="H5656"\w* \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w had|strong="H1961"\w* \w served|strong="H5647"\w* \w against|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 19 \w Therefore|strong="H3651"\w* \w the|strong="H5414"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w the|strong="H5414"\w* land \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w to|strong="H1961"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon. \w He|strong="H3651"\w* \w will|strong="H1961"\w* \w carry|strong="H5375"\w* \w off|strong="H5375"\w* \w her|strong="H5414"\w* \w multitude|strong="H1995"\w*, \w take|strong="H5375"\w* \w her|strong="H5414"\w* \w plunder|strong="H7998"\w*, \w and|strong="H4428"\w* \w take|strong="H5375"\w* \w her|strong="H5414"\w* \w prey|strong="H7998"\w*. \w That|strong="H3651"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w the|strong="H5414"\w* \w wages|strong="H7939"\w* \w for|strong="H4714"\w* \w his|strong="H5375"\w* \w army|strong="H2426"\w*. +\v 20 \w I|strong="H5414"\w* \w have|strong="H5414"\w* \w given|strong="H5414"\w* \w him|strong="H5414"\w* \w the|strong="H5002"\w* land \w of|strong="H3069"\w* \w Egypt|strong="H4714"\w* \w as|strong="H6213"\w* \w his|strong="H5414"\w* payment \w for|strong="H6213"\w* \w which|strong="H3069"\w* \w he|strong="H6213"\w* \w served|strong="H5647"\w*, because \w they|strong="H6213"\w* \w worked|strong="H6213"\w* \w for|strong="H6213"\w* \w me|strong="H5414"\w*,’ \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 21 “\w In|strong="H3478"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w cause|strong="H5414"\w* \w a|strong="H3068"\w* \w horn|strong="H7161"\w* \w to|strong="H3478"\w* \w sprout|strong="H6779"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w open|strong="H6610"\w* \w your|strong="H3068"\w* \w mouth|strong="H6310"\w* \w among|strong="H8432"\w* \w them|strong="H5414"\w*. \w Then|strong="H5414"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.” +\c 30 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w again|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w prophesy|strong="H5012"\w*, \w and|strong="H1121"\w* say, ‘\w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w Wail|strong="H3213"\w*, ‘\w Alas|strong="H1929"\w* \w for|strong="H3117"\w* \w the|strong="H3069"\w* \w day|strong="H3117"\w*!’ +\q2 +\v 3 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w day|strong="H3117"\w* \w is|strong="H3068"\w* \w near|strong="H7138"\w*, +\q2 \w even|strong="H3588"\w* \w Yahweh|strong="H3068"\w*’s \w day|strong="H3117"\w* \w is|strong="H3068"\w* \w near|strong="H7138"\w*. +\q1 \w It|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w clouds|strong="H6051"\w*, +\q2 \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w nations|strong="H1471"\w*. +\q1 +\v 4 \w A|strong="H3068"\w* \w sword|strong="H2719"\w* \w will|strong="H1961"\w* \w come|strong="H1961"\w* \w on|strong="H5307"\w* \w Egypt|strong="H4714"\w*, +\q2 \w and|strong="H4714"\w* \w anguish|strong="H2479"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w in|strong="H5307"\w* \w Ethiopia|strong="H3568"\w*, +\q2 \w when|strong="H1961"\w* \w the|strong="H3947"\w* \w slain|strong="H2491"\w* \w fall|strong="H5307"\w* \w in|strong="H5307"\w* \w Egypt|strong="H4714"\w*. +\q1 \w They|strong="H3947"\w* \w take|strong="H3947"\w* \w away|strong="H3947"\w* \w her|strong="H3947"\w* \w multitude|strong="H1995"\w*, +\q2 \w and|strong="H4714"\w* \w her|strong="H3947"\w* \w foundations|strong="H3247"\w* \w are|strong="H4714"\w* \w broken|strong="H2040"\w* \w down|strong="H5307"\w*. +\p +\v 5 “‘“\w Ethiopia|strong="H3568"\w*, \w Put|strong="H6316"\w*, \w Lud|strong="H3865"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w mixed|strong="H6154"\w* \w people|strong="H1121"\w*, Cub, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* land \w that|strong="H3605"\w* \w is|strong="H3605"\w* \w allied|strong="H1285"\w* \w with|strong="H1285"\w* \w them|strong="H5307"\w*, \w will|strong="H2719"\w* \w fall|strong="H5307"\w* \w with|strong="H1285"\w* \w them|strong="H5307"\w* \w by|strong="H3605"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*.” +\p +\v 6 “‘\w Yahweh|strong="H3068"\w* \w says|strong="H5002"\w*: +\q1 “\w They|strong="H3068"\w* \w also|strong="H3068"\w* \w who|strong="H3068"\w* \w uphold|strong="H5564"\w* \w Egypt|strong="H4714"\w* \w will|strong="H3068"\w* \w fall|strong="H5307"\w*. +\q2 \w The|strong="H5002"\w* \w pride|strong="H1347"\w* \w of|strong="H3068"\w* \w her|strong="H3381"\w* \w power|strong="H5797"\w* \w will|strong="H3068"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w*. +\q1 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w fall|strong="H5307"\w* \w by|strong="H3068"\w* \w the|strong="H5002"\w* \w sword|strong="H2719"\w* \w in|strong="H3068"\w* \w it|strong="H3381"\w* \w from|strong="H3381"\w* \w the|strong="H5002"\w* \w tower|strong="H4024"\w* \w of|strong="H3068"\w* Seveneh,” +\q2 \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 7 “\w They|strong="H5892"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w desolate|strong="H8074"\w* \w in|strong="H8432"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H5892"\w* \w the|strong="H8432"\w* countries \w that|strong="H5892"\w* \w are|strong="H5892"\w* \w desolate|strong="H8074"\w*. +\q2 \w Her|strong="H8074"\w* \w cities|strong="H5892"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w cities|strong="H5892"\w* \w that|strong="H5892"\w* \w are|strong="H5892"\w* \w wasted|strong="H2717"\w*. +\q1 +\v 8 \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* +\q2 \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w set|strong="H5414"\w* \w a|strong="H3068"\w* fire \w in|strong="H3068"\w* \w Egypt|strong="H4714"\w*, +\q2 \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w helpers|strong="H5826"\w* \w are|strong="H3068"\w* \w destroyed|strong="H7665"\w*. +\p +\v 9 “‘“\w In|strong="H3117"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w* \w messengers|strong="H4397"\w* \w will|strong="H1961"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w in|strong="H3117"\w* \w ships|strong="H6716"\w* \w to|strong="H3318"\w* \w make|strong="H2729"\w* \w the|strong="H6440"\w* careless \w Ethiopians|strong="H3568"\w* \w afraid|strong="H2729"\w*. \w There|strong="H2009"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w anguish|strong="H2479"\w* \w on|strong="H3117"\w* \w them|strong="H6440"\w*, \w as|strong="H3117"\w* \w in|strong="H3117"\w* \w the|strong="H6440"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w*; \w for|strong="H3588"\w*, \w behold|strong="H2009"\w*, \w it|strong="H1931"\w* \w comes|strong="H3318"\w*.” +\p +\v 10 “‘\w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w I|strong="H3541"\w* \w will|strong="H4428"\w* \w also|strong="H3541"\w* \w make|strong="H3027"\w* \w the|strong="H3069"\w* \w multitude|strong="H1995"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w* \w to|strong="H3027"\w* \w cease|strong="H7673"\w*, +\q2 \w by|strong="H3027"\w* \w the|strong="H3069"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon. +\q1 +\v 11 \w He|strong="H1931"\w* \w and|strong="H5971"\w* \w his|strong="H5921"\w* \w people|strong="H5971"\w* \w with|strong="H4390"\w* \w him|strong="H5921"\w*, +\q2 \w the|strong="H5921"\w* \w terrible|strong="H6184"\w* \w of|strong="H4390"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*, +\q1 \w will|strong="H1471"\w* \w be|strong="H1471"\w* brought \w in|strong="H5921"\w* \w to|strong="H5921"\w* \w destroy|strong="H7843"\w* \w the|strong="H5921"\w* land. +\q2 \w They|strong="H5921"\w* \w will|strong="H1471"\w* \w draw|strong="H7324"\w* \w their|strong="H4390"\w* \w swords|strong="H2719"\w* \w against|strong="H5921"\w* \w Egypt|strong="H4714"\w*, +\q2 \w and|strong="H5971"\w* \w fill|strong="H4390"\w* \w the|strong="H5921"\w* land \w with|strong="H4390"\w* \w the|strong="H5921"\w* \w slain|strong="H2491"\w*. +\q1 +\v 12 \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w make|strong="H5414"\w* \w the|strong="H5414"\w* \w rivers|strong="H2975"\w* \w dry|strong="H2724"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w sell|strong="H4376"\w* \w the|strong="H5414"\w* \w land|strong="H2724"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w evil|strong="H7451"\w* \w men|strong="H7451"\w*. +\q1 \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w make|strong="H5414"\w* \w the|strong="H5414"\w* \w land|strong="H2724"\w* \w desolate|strong="H8074"\w*, +\q2 \w and|strong="H3068"\w* \w all|strong="H4393"\w* \w that|strong="H3068"\w* \w is|strong="H3068"\w* \w therein|strong="H4393"\w*, +\q2 \w by|strong="H3027"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w foreigners|strong="H2114"\w*. +\q2 \w I|strong="H5414"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w it|strong="H5414"\w*.” +\p +\v 13 “‘\w The|strong="H5414"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w I|strong="H5414"\w* \w will|strong="H1961"\w* \w also|strong="H3541"\w* destroy \w the|strong="H5414"\w* \w idols|strong="H1544"\w*, +\q2 \w and|strong="H4714"\w* \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w cause|strong="H5414"\w* \w the|strong="H5414"\w* \w images|strong="H1544"\w* \w to|strong="H1961"\w* \w cease|strong="H7673"\w* \w from|strong="H1961"\w* \w Memphis|strong="H5297"\w*. +\q1 \w There|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w a|strong="H3068"\w* \w prince|strong="H5387"\w* \w from|strong="H1961"\w* \w the|strong="H5414"\w* land \w of|strong="H5387"\w* \w Egypt|strong="H4714"\w*. +\q2 \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w put|strong="H5414"\w* \w a|strong="H3068"\w* \w fear|strong="H3374"\w* \w in|strong="H5750"\w* \w the|strong="H5414"\w* land \w of|strong="H5387"\w* \w Egypt|strong="H4714"\w*. +\q1 +\v 14 \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w make|strong="H6213"\w* \w Pathros|strong="H6624"\w* \w desolate|strong="H8074"\w*, +\q2 \w and|strong="H6213"\w* \w will|strong="H5414"\w* \w set|strong="H5414"\w* \w a|strong="H3068"\w* fire \w in|strong="H6213"\w* \w Zoan|strong="H6814"\w*, +\q2 \w and|strong="H6213"\w* \w will|strong="H5414"\w* \w execute|strong="H6213"\w* \w judgments|strong="H8201"\w* \w on|strong="H6213"\w* \w No|strong="H6213"\w*. +\q1 +\v 15 \w I|strong="H5921"\w* \w will|strong="H4714"\w* \w pour|strong="H8210"\w* \w my|strong="H5921"\w* \w wrath|strong="H2534"\w* \w on|strong="H5921"\w* \w Sin|strong="H5512"\w*, +\q2 \w the|strong="H5921"\w* \w stronghold|strong="H4581"\w* \w of|strong="H5921"\w* \w Egypt|strong="H4714"\w*. +\q2 \w I|strong="H5921"\w* \w will|strong="H4714"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w the|strong="H5921"\w* \w multitude|strong="H1995"\w* \w of|strong="H5921"\w* \w No|strong="H4996"\w*. +\q1 +\v 16 \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w set|strong="H5414"\w* \w a|strong="H3068"\w* fire \w in|strong="H5414"\w* \w Egypt|strong="H4714"\w* +\q2 \w Sin|strong="H5512"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w in|strong="H5414"\w* \w great|strong="H2342"\w* \w anguish|strong="H2342"\w*. +\q1 \w No|strong="H5414"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w broken|strong="H1234"\w* \w up|strong="H5414"\w*. +\q2 \w Memphis|strong="H5297"\w* \w will|strong="H1961"\w* \w have|strong="H1961"\w* \w adversaries|strong="H6862"\w* \w in|strong="H5414"\w* \w the|strong="H5414"\w* \w daytime|strong="H3119"\w*. +\q1 +\v 17 \w The|strong="H3212"\w* young men \w of|strong="H2719"\w* Aven \w and|strong="H3212"\w* \w of|strong="H2719"\w* Pibeseth \w will|strong="H2719"\w* \w fall|strong="H5307"\w* \w by|strong="H3212"\w* \w the|strong="H3212"\w* \w sword|strong="H2719"\w*. +\q2 \w They|strong="H2007"\w* \w will|strong="H2719"\w* \w go|strong="H3212"\w* \w into|strong="H3212"\w* \w captivity|strong="H7628"\w*. +\q1 +\v 18 \w At|strong="H3117"\w* \w Tehaphnehes|strong="H8471"\w* \w also|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w will|strong="H4714"\w* withdraw \w itself|strong="H1931"\w*, +\q2 \w when|strong="H3117"\w* \w I|strong="H3117"\w* \w break|strong="H7665"\w* \w the|strong="H3117"\w* \w yokes|strong="H4133"\w* \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w* \w there|strong="H8033"\w*. +\q1 \w The|strong="H3117"\w* \w pride|strong="H1347"\w* \w of|strong="H3117"\w* \w her|strong="H3680"\w* \w power|strong="H5797"\w* \w will|strong="H4714"\w* \w cease|strong="H7673"\w* \w in|strong="H3117"\w* \w her|strong="H3680"\w*. +\q2 \w As|strong="H3117"\w* \w for|strong="H4714"\w* \w her|strong="H3680"\w*, \w a|strong="H3068"\w* \w cloud|strong="H6051"\w* \w will|strong="H4714"\w* \w cover|strong="H3680"\w* \w her|strong="H3680"\w*, +\q2 \w and|strong="H3117"\w* \w her|strong="H3680"\w* \w daughters|strong="H1323"\w* \w will|strong="H4714"\w* \w go|strong="H3212"\w* \w into|strong="H3212"\w* \w captivity|strong="H7628"\w*. +\q1 +\v 19 Thus \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w execute|strong="H6213"\w* \w judgments|strong="H8201"\w* \w on|strong="H3068"\w* \w Egypt|strong="H4714"\w*. +\q2 \w Then|strong="H6213"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.”’” +\b +\p +\v 20 \w In|strong="H8141"\w* \w the|strong="H3068"\w* \w eleventh|strong="H6240"\w* \w year|strong="H8141"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w seventh|strong="H7651"\w* \w day|strong="H2320"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w month|strong="H2320"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1961"\w*, \w saying|strong="H1697"\w*, +\v 21 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w I|strong="H5414"\w* \w have|strong="H1121"\w* \w broken|strong="H7665"\w* \w the|strong="H5414"\w* \w arm|strong="H2220"\w* \w of|strong="H1121"\w* \w Pharaoh|strong="H6547"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*. \w Behold|strong="H2009"\w*, \w it|strong="H5414"\w* \w has|strong="H4428"\w* \w not|strong="H3808"\w* \w been|strong="H3808"\w* \w bound|strong="H2280"\w* \w up|strong="H5414"\w*, \w to|strong="H5414"\w* apply \w medicines|strong="H7499"\w*, \w to|strong="H5414"\w* \w put|strong="H5414"\w* \w a|strong="H3068"\w* \w bandage|strong="H2848"\w* \w to|strong="H5414"\w* \w bind|strong="H2280"\w* \w it|strong="H5414"\w*, \w that|strong="H5414"\w* \w it|strong="H5414"\w* \w may|strong="H4428"\w* become \w strong|strong="H2388"\w* \w to|strong="H5414"\w* \w hold|strong="H2388"\w* \w the|strong="H5414"\w* \w sword|strong="H2719"\w*. +\v 22 \w Therefore|strong="H3651"\w* \w the|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H2005"\w* \w against|strong="H3027"\w* \w Pharaoh|strong="H6547"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H4428"\w* \w will|strong="H4428"\w* \w break|strong="H7665"\w* \w his|strong="H3027"\w* \w arms|strong="H2220"\w*, \w the|strong="H3069"\w* \w strong|strong="H2389"\w* \w arm|strong="H2220"\w*, \w and|strong="H4428"\w* \w that|strong="H3651"\w* \w which|strong="H3069"\w* \w was|strong="H4428"\w* \w broken|strong="H7665"\w*. \w I|strong="H2005"\w* \w will|strong="H4428"\w* \w cause|strong="H3651"\w* \w the|strong="H3069"\w* \w sword|strong="H2719"\w* \w to|strong="H3027"\w* \w fall|strong="H5307"\w* \w out|strong="H5307"\w* \w of|strong="H4428"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w*. +\v 23 \w I|strong="H4714"\w* \w will|strong="H1471"\w* \w scatter|strong="H2219"\w* \w the|strong="H6327"\w* \w Egyptians|strong="H4714"\w* among \w the|strong="H6327"\w* \w nations|strong="H1471"\w*, \w and|strong="H4714"\w* \w will|strong="H1471"\w* \w disperse|strong="H2219"\w* \w them|strong="H6327"\w* \w through|strong="H6327"\w* \w the|strong="H6327"\w* countries. +\v 24 \w I|strong="H5414"\w* \w will|strong="H4428"\w* \w strengthen|strong="H2388"\w* \w the|strong="H6440"\w* \w arms|strong="H2220"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w and|strong="H4428"\w* \w put|strong="H5414"\w* \w my|strong="H5414"\w* \w sword|strong="H2719"\w* \w in|strong="H4428"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w*; \w but|strong="H2388"\w* \w I|strong="H5414"\w* \w will|strong="H4428"\w* \w break|strong="H7665"\w* \w the|strong="H6440"\w* \w arms|strong="H2220"\w* \w of|strong="H4428"\w* \w Pharaoh|strong="H6547"\w*, \w and|strong="H4428"\w* \w he|strong="H5414"\w* \w will|strong="H4428"\w* \w groan|strong="H5008"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w with|strong="H6440"\w* \w the|strong="H6440"\w* \w groaning|strong="H5009"\w* \w of|strong="H4428"\w* \w a|strong="H3068"\w* \w mortally|strong="H2491"\w* \w wounded|strong="H2491"\w* \w man|strong="H2491"\w*. +\v 25 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w hold|strong="H2388"\w* \w up|strong="H5414"\w* \w the|strong="H3588"\w* \w arms|strong="H2220"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w but|strong="H3588"\w* \w the|strong="H3588"\w* \w arms|strong="H2220"\w* \w of|strong="H4428"\w* \w Pharaoh|strong="H6547"\w* \w will|strong="H3068"\w* \w fall|strong="H5307"\w* \w down|strong="H5307"\w*. \w Then|strong="H5307"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w put|strong="H5414"\w* \w my|strong="H5414"\w* \w sword|strong="H2719"\w* \w into|strong="H5307"\w* \w the|strong="H3588"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon, \w and|strong="H3068"\w* \w he|strong="H3588"\w* \w stretches|strong="H5186"\w* \w it|strong="H5414"\w* \w out|strong="H5186"\w* \w on|strong="H5307"\w* \w the|strong="H3588"\w* land \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*. +\v 26 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w scatter|strong="H2219"\w* \w the|strong="H3588"\w* \w Egyptians|strong="H4714"\w* among \w the|strong="H3588"\w* \w nations|strong="H1471"\w* \w and|strong="H3068"\w* \w disperse|strong="H2219"\w* \w them|strong="H6327"\w* \w through|strong="H3588"\w* \w the|strong="H3588"\w* countries. \w Then|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.’” +\c 31 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H3068"\w* \w eleventh|strong="H6240"\w* \w year|strong="H8141"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w third|strong="H7992"\w* \w month|strong="H2320"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* first \w day|strong="H2320"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w month|strong="H2320"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1961"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, tell \w Pharaoh|strong="H6547"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w* \w and|strong="H1121"\w* \w his|strong="H4428"\w* \w multitude|strong="H1995"\w*: +\q1 ‘\w Whom|strong="H4310"\w* \w are|strong="H1121"\w* \w you|strong="H4310"\w* \w like|strong="H1819"\w* \w in|strong="H4428"\w* \w your|strong="H4428"\w* \w greatness|strong="H1433"\w*? +\q1 +\v 3 \w Behold|strong="H2009"\w*, \w the|strong="H1961"\w* Assyrian \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w cedar|strong="H6967"\w* \w in|strong="H3303"\w* \w Lebanon|strong="H3844"\w* +\q2 \w with|strong="H1961"\w* \w beautiful|strong="H3303"\w* \w branches|strong="H6057"\w*, +\q1 \w and|strong="H3844"\w* \w with|strong="H1961"\w* \w a|strong="H3068"\w* forest-like \w shade|strong="H6751"\w*, +\q2 \w of|strong="H6967"\w* \w high|strong="H6967"\w* \w stature|strong="H6967"\w*; +\q2 \w and|strong="H3844"\w* \w its|strong="H1961"\w* \w top|strong="H6788"\w* \w was|strong="H1961"\w* \w among|strong="H3303"\w* \w the|strong="H1961"\w* thick \w boughs|strong="H6057"\w*. +\q1 +\v 4 \w The|strong="H3605"\w* \w waters|strong="H4325"\w* \w nourished|strong="H1431"\w* \w it|strong="H5439"\w*. +\q2 \w The|strong="H3605"\w* \w deep|strong="H8415"\w* \w made|strong="H3605"\w* \w it|strong="H5439"\w* \w to|strong="H1980"\w* \w grow|strong="H1431"\w*. +\q1 \w Its|strong="H3605"\w* \w rivers|strong="H5104"\w* \w ran|strong="H1980"\w* \w all|strong="H3605"\w* \w around|strong="H5439"\w* \w its|strong="H3605"\w* \w plantation|strong="H4302"\w*. +\q2 \w It|strong="H5439"\w* \w sent|strong="H7971"\w* \w out|strong="H7971"\w* \w its|strong="H3605"\w* \w channels|strong="H8585"\w* \w to|strong="H1980"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w trees|strong="H6086"\w* \w of|strong="H4325"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*. +\q1 +\v 5 \w Therefore|strong="H3651"\w* \w its|strong="H3605"\w* \w stature|strong="H6967"\w* \w was|strong="H4325"\w* \w exalted|strong="H1361"\w* \w above|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w trees|strong="H6086"\w* \w of|strong="H4325"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*; +\q2 \w and|strong="H7971"\w* \w its|strong="H3605"\w* \w boughs|strong="H5634"\w* \w were|strong="H4325"\w* \w multiplied|strong="H7235"\w*. +\q1 \w Its|strong="H3605"\w* \w branches|strong="H6288"\w* \w became|strong="H7235"\w* \w long|strong="H7227"\w* \w by|strong="H5921"\w* \w reason|strong="H5921"\w* \w of|strong="H4325"\w* \w many|strong="H7227"\w* \w waters|strong="H4325"\w*, +\q2 \w when|strong="H7971"\w* \w it|strong="H5921"\w* \w spread|strong="H7971"\w* \w them|strong="H5921"\w* \w out|strong="H7971"\w*. +\q1 +\v 6 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w birds|strong="H5775"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w* \w made|strong="H3605"\w* \w their|strong="H3605"\w* \w nests|strong="H7077"\w* \w in|strong="H3427"\w* \w its|strong="H3605"\w* \w boughs|strong="H5589"\w*. +\q2 \w Under|strong="H8478"\w* \w its|strong="H3605"\w* \w branches|strong="H6288"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w animals|strong="H2416"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w gave|strong="H3205"\w* \w birth|strong="H3205"\w* \w to|strong="H3205"\w* \w their|strong="H3605"\w* \w young|strong="H3205"\w*. +\q2 \w All|strong="H3605"\w* \w great|strong="H7227"\w* \w nations|strong="H1471"\w* \w lived|strong="H3427"\w* \w under|strong="H8478"\w* \w its|strong="H3605"\w* \w shadow|strong="H6738"\w*. +\q1 +\v 7 \w Thus|strong="H1961"\w* \w it|strong="H3588"\w* \w was|strong="H1961"\w* \w beautiful|strong="H3302"\w* \w in|strong="H7227"\w* \w its|strong="H3588"\w* \w greatness|strong="H1433"\w*, +\q2 \w in|strong="H7227"\w* \w the|strong="H3588"\w* length \w of|strong="H4325"\w* \w its|strong="H3588"\w* \w branches|strong="H1808"\w*; +\q2 \w for|strong="H3588"\w* \w its|strong="H3588"\w* \w root|strong="H8328"\w* \w was|strong="H1961"\w* \w by|strong="H4325"\w* \w many|strong="H7227"\w* \w waters|strong="H4325"\w*. +\q1 +\v 8 \w The|strong="H3605"\w* cedars \w in|strong="H6086"\w* \w the|strong="H3605"\w* \w garden|strong="H1588"\w* \w of|strong="H6086"\w* \w God|strong="H3808"\w* could \w not|strong="H3808"\w* \w hide|strong="H6004"\w* \w it|strong="H1961"\w*. +\q2 \w The|strong="H3605"\w* \w cypress|strong="H1265"\w* \w trees|strong="H6086"\w* \w were|strong="H1961"\w* \w not|strong="H3808"\w* \w like|strong="H1819"\w* \w its|strong="H3605"\w* \w branches|strong="H6288"\w*. +\q1 \w The|strong="H3605"\w* pine \w trees|strong="H6086"\w* \w were|strong="H1961"\w* \w not|strong="H3808"\w* \w like|strong="H1819"\w* \w its|strong="H3605"\w* \w branches|strong="H6288"\w*; +\q2 \w nor|strong="H3808"\w* \w was|strong="H1961"\w* \w any|strong="H3605"\w* \w tree|strong="H6086"\w* \w in|strong="H6086"\w* \w the|strong="H3605"\w* \w garden|strong="H1588"\w* \w of|strong="H6086"\w* \w God|strong="H3808"\w* \w like|strong="H1819"\w* \w it|strong="H1961"\w* \w in|strong="H6086"\w* \w its|strong="H3605"\w* \w beauty|strong="H3308"\w*. +\q1 +\v 9 \w I|strong="H3605"\w* \w made|strong="H6213"\w* \w it|strong="H6213"\w* \w beautiful|strong="H3303"\w* \w by|strong="H3605"\w* \w the|strong="H3605"\w* \w multitude|strong="H7230"\w* \w of|strong="H7230"\w* \w its|strong="H3605"\w* \w branches|strong="H1808"\w*, +\q2 \w so|strong="H6213"\w* \w that|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w trees|strong="H6086"\w* \w of|strong="H7230"\w* \w Eden|strong="H5731"\w*, +\q2 \w that|strong="H3605"\w* \w were|strong="H3605"\w* \w in|strong="H6213"\w* \w the|strong="H3605"\w* \w garden|strong="H1588"\w* \w of|strong="H7230"\w* God, \w envied|strong="H7065"\w* \w it|strong="H6213"\w*.’ +\p +\v 10 “\w Therefore|strong="H3651"\w* \w thus|strong="H3541"\w* \w said|strong="H3651"\w* \w the|strong="H5414"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*: ‘\w Because|strong="H3282"\w* \w he|strong="H3651"\w* \w is|strong="H3651"\w* \w exalted|strong="H7311"\w* \w in|strong="H5414"\w* \w stature|strong="H6967"\w*, \w and|strong="H3824"\w* \w he|strong="H3651"\w* \w has|strong="H5414"\w* \w set|strong="H5414"\w* \w his|strong="H5414"\w* \w top|strong="H6788"\w* among \w the|strong="H5414"\w* thick \w branches|strong="H5688"\w*, \w and|strong="H3824"\w* \w his|strong="H5414"\w* \w heart|strong="H3824"\w* \w is|strong="H3651"\w* \w lifted|strong="H7311"\w* \w up|strong="H7311"\w* \w in|strong="H5414"\w* \w his|strong="H5414"\w* \w height|strong="H6967"\w*, +\v 11 \w I|strong="H5414"\w* \w will|strong="H1471"\w* \w deliver|strong="H5414"\w* \w him|strong="H5414"\w* \w into|strong="H6213"\w* \w the|strong="H5414"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H5414"\w* mighty \w one|strong="H6213"\w* \w of|strong="H3027"\w* \w the|strong="H5414"\w* \w nations|strong="H1471"\w*. \w He|strong="H6213"\w* \w will|strong="H1471"\w* \w surely|strong="H5414"\w* \w deal|strong="H6213"\w* \w with|strong="H6213"\w* \w him|strong="H5414"\w*. \w I|strong="H5414"\w* \w have|strong="H1471"\w* \w driven|strong="H1644"\w* \w him|strong="H5414"\w* \w out|strong="H1644"\w* \w for|strong="H6213"\w* \w his|strong="H5414"\w* \w wickedness|strong="H7562"\w*. +\v 12 \w Foreigners|strong="H2114"\w*, \w the|strong="H3605"\w* \w tyrants|strong="H6184"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*, \w have|strong="H5971"\w* \w cut|strong="H3772"\w* \w him|strong="H3381"\w* \w off|strong="H3772"\w* \w and|strong="H5971"\w* \w have|strong="H5971"\w* \w left|strong="H5203"\w* \w him|strong="H3381"\w*. \w His|strong="H3605"\w* \w branches|strong="H1808"\w* \w have|strong="H5971"\w* \w fallen|strong="H5307"\w* \w on|strong="H5307"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w* \w and|strong="H5971"\w* \w in|strong="H7665"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w valleys|strong="H1516"\w*, \w and|strong="H5971"\w* \w his|strong="H3605"\w* \w boughs|strong="H6288"\w* \w are|strong="H5971"\w* \w broken|strong="H7665"\w* \w by|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* watercourses \w of|strong="H2022"\w* \w the|strong="H3605"\w* land. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* earth \w have|strong="H5971"\w* \w gone|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H3772"\w* \w his|strong="H3605"\w* \w shadow|strong="H6738"\w* \w and|strong="H5971"\w* \w have|strong="H5971"\w* \w left|strong="H5203"\w* \w him|strong="H3381"\w*. +\v 13 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w birds|strong="H5775"\w* \w of|strong="H7704"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w* \w will|strong="H1961"\w* \w dwell|strong="H7931"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w ruin|strong="H4658"\w*, \w and|strong="H8064"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w animals|strong="H2416"\w* \w of|strong="H7704"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w his|strong="H3605"\w* \w branches|strong="H6288"\w*, +\v 14 \w to|strong="H3381"\w* \w the|strong="H3605"\w* \w end|strong="H4616"\w* \w that|strong="H3588"\w* \w none|strong="H3808"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w trees|strong="H6086"\w* \w by|strong="H5975"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w exalt|strong="H1361"\w* \w themselves|strong="H5414"\w* \w in|strong="H8432"\w* \w their|strong="H3605"\w* \w stature|strong="H6967"\w*, \w and|strong="H1121"\w* don’t \w set|strong="H5414"\w* \w their|strong="H3605"\w* \w top|strong="H6788"\w* \w among|strong="H8432"\w* \w the|strong="H3605"\w* thick \w boughs|strong="H5688"\w*. \w Their|strong="H3605"\w* \w mighty|strong="H1121"\w* \w ones|strong="H1121"\w* don’t \w stand|strong="H5975"\w* \w up|strong="H5975"\w* \w on|strong="H5975"\w* \w their|strong="H3605"\w* \w height|strong="H6967"\w*, \w even|strong="H3588"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w drink|strong="H8354"\w* \w water|strong="H4325"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H1121"\w* \w all|strong="H3605"\w* \w delivered|strong="H5414"\w* \w to|strong="H3381"\w* \w death|strong="H4194"\w*, \w to|strong="H3381"\w* \w the|strong="H3605"\w* \w lower|strong="H8482"\w* \w parts|strong="H8482"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* earth, \w among|strong="H8432"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*, \w with|strong="H3381"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3605"\w* pit.’ +\p +\v 15 “\w The|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w In|strong="H5921"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w when|strong="H3117"\w* \w he|strong="H3117"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w Sheol|strong="H7585"\w*,\f + \fr 31:15 \ft Sheol is the place of the dead.\f* \w I|strong="H3117"\w* caused \w a|strong="H3068"\w* \w mourning|strong="H6937"\w*. \w I|strong="H3117"\w* \w covered|strong="H3680"\w* \w the|strong="H3605"\w* \w deep|strong="H8415"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H3117"\w* \w I|strong="H3117"\w* \w restrained|strong="H3607"\w* \w its|strong="H3605"\w* \w rivers|strong="H5104"\w*. \w The|strong="H3605"\w* \w great|strong="H7227"\w* \w waters|strong="H4325"\w* \w were|strong="H4325"\w* \w stopped|strong="H3607"\w*. \w I|strong="H3117"\w* caused \w Lebanon|strong="H3844"\w* \w to|strong="H3381"\w* \w mourn|strong="H6937"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H3117"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w trees|strong="H6086"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w fainted|strong="H5969"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 16 \w I|strong="H3605"\w* \w made|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w to|strong="H3381"\w* \w shake|strong="H7493"\w* \w at|strong="H2896"\w* \w the|strong="H3605"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w his|strong="H3605"\w* \w fall|strong="H4658"\w*, \w when|strong="H6963"\w* \w I|strong="H3605"\w* \w cast|strong="H4325"\w* \w him|strong="H6963"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w Sheol|strong="H7585"\w*\f + \fr 31:16 \ft Sheol is the place of the dead.\f* \w with|strong="H3381"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w descend|strong="H3381"\w* \w into|strong="H3381"\w* \w the|strong="H3605"\w* \w pit|strong="H7585"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w trees|strong="H6086"\w* \w of|strong="H6963"\w* \w Eden|strong="H5731"\w*, \w the|strong="H3605"\w* \w choice|strong="H4005"\w* \w and|strong="H6086"\w* \w best|strong="H2896"\w* \w of|strong="H6963"\w* \w Lebanon|strong="H3844"\w*, \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w drink|strong="H8354"\w* \w water|strong="H4325"\w*, \w were|strong="H4325"\w* \w comforted|strong="H5162"\w* \w in|strong="H6086"\w* \w the|strong="H3605"\w* \w lower|strong="H8482"\w* \w parts|strong="H8482"\w* \w of|strong="H6963"\w* \w the|strong="H3605"\w* earth. +\v 17 \w They|strong="H1992"\w* \w also|strong="H1571"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w Sheol|strong="H7585"\w* \w with|strong="H3427"\w* \w him|strong="H3381"\w* \w to|strong="H3381"\w* \w those|strong="H1992"\w* \w who|strong="H3427"\w* \w are|strong="H1992"\w* \w slain|strong="H2491"\w* \w by|strong="H3427"\w* \w the|strong="H8432"\w* \w sword|strong="H2719"\w*; \w yes|strong="H1571"\w*, \w those|strong="H1992"\w* \w who|strong="H3427"\w* \w were|strong="H1992"\w* \w his|strong="H8432"\w* \w arm|strong="H2220"\w*, \w who|strong="H3427"\w* \w lived|strong="H3427"\w* \w under|strong="H3427"\w* \w his|strong="H8432"\w* \w shadow|strong="H6738"\w* \w in|strong="H3427"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H3427"\w* \w the|strong="H8432"\w* \w nations|strong="H1471"\w*. +\p +\v 18 “‘\w To|strong="H3381"\w* \w whom|strong="H4310"\w* \w are|strong="H4310"\w* \w you|strong="H3605"\w* \w thus|strong="H3602"\w* \w like|strong="H1819"\w* \w in|strong="H8432"\w* \w glory|strong="H3519"\w* \w and|strong="H6086"\w* \w in|strong="H8432"\w* \w greatness|strong="H1433"\w* \w among|strong="H8432"\w* \w the|strong="H3605"\w* \w trees|strong="H6086"\w* \w of|strong="H8432"\w* \w Eden|strong="H5731"\w*? \w Yet|strong="H3605"\w* \w you|strong="H3605"\w* \w will|strong="H4310"\w* \w be|strong="H6086"\w* \w brought|strong="H3381"\w* \w down|strong="H3381"\w* \w with|strong="H3381"\w* \w the|strong="H3605"\w* \w trees|strong="H6086"\w* \w of|strong="H8432"\w* \w Eden|strong="H5731"\w* \w to|strong="H3381"\w* \w the|strong="H3605"\w* \w lower|strong="H8482"\w* \w parts|strong="H8482"\w* \w of|strong="H8432"\w* \w the|strong="H3605"\w* earth. \w You|strong="H3605"\w* \w will|strong="H4310"\w* \w lie|strong="H7901"\w* \w in|strong="H8432"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w the|strong="H3605"\w* \w uncircumcised|strong="H6189"\w*, \w with|strong="H3381"\w* \w those|strong="H3605"\w* \w who|strong="H4310"\w* \w are|strong="H4310"\w* \w slain|strong="H2491"\w* \w by|strong="H3605"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*. +\p “‘\w This|strong="H1931"\w* \w is|strong="H1931"\w* \w Pharaoh|strong="H6547"\w* \w and|strong="H6086"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w multitude|strong="H1995"\w*,’ \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*.” +\c 32 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H3068"\w* \w twelfth|strong="H8147"\w* \w year|strong="H8141"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w twelfth|strong="H8147"\w* \w month|strong="H2320"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* first \w day|strong="H2320"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w month|strong="H2320"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1961"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w take|strong="H5375"\w* \w up|strong="H5375"\w* \w a|strong="H3068"\w* \w lamentation|strong="H7015"\w* \w over|strong="H5921"\w* \w Pharaoh|strong="H6547"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H1121"\w* tell \w him|strong="H5921"\w*, +\q1 ‘\w You|strong="H5921"\w* \w were|strong="H1121"\w* \w likened|strong="H1819"\w* \w to|strong="H5921"\w* \w a|strong="H3068"\w* \w young|strong="H1121"\w* \w lion|strong="H3715"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*; +\q2 \w yet|strong="H5921"\w* \w you|strong="H5921"\w* \w are|strong="H1121"\w* \w as|strong="H1121"\w* \w a|strong="H3068"\w* monster \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w seas|strong="H3220"\w*. +\q1 \w You|strong="H5921"\w* \w broke|strong="H1518"\w* \w out|strong="H5921"\w* \w with|strong="H5921"\w* \w your|strong="H5921"\w* \w rivers|strong="H5104"\w*, +\q2 \w and|strong="H1121"\w* \w troubled|strong="H7515"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w with|strong="H5921"\w* \w your|strong="H5921"\w* \w feet|strong="H7272"\w*, +\q2 \w and|strong="H1121"\w* fouled \w their|strong="H5375"\w* \w rivers|strong="H5104"\w*.’” +\q1 +\v 3 \w The|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q2 “\w I|strong="H3541"\w* \w will|strong="H5971"\w* \w spread|strong="H6566"\w* \w out|strong="H6566"\w* \w my|strong="H5921"\w* \w net|strong="H7568"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w company|strong="H6951"\w* \w of|strong="H6951"\w* \w many|strong="H7227"\w* \w peoples|strong="H5971"\w*. +\q2 \w They|strong="H5921"\w* \w will|strong="H5971"\w* \w bring|strong="H5927"\w* \w you|strong="H5921"\w* \w up|strong="H5927"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* \w net|strong="H7568"\w*. +\q1 +\v 4 \w I|strong="H5921"\w* \w will|strong="H8064"\w* \w leave|strong="H5203"\w* \w you|strong="H6440"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w land|strong="H7704"\w*. +\q2 \w I|strong="H5921"\w* \w will|strong="H8064"\w* \w cast|strong="H2904"\w* \w you|strong="H6440"\w* \w out|strong="H4480"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w open|strong="H6440"\w* \w field|strong="H7704"\w*, +\q1 \w and|strong="H8064"\w* \w will|strong="H8064"\w* cause \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w birds|strong="H5775"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w* \w to|strong="H5921"\w* \w settle|strong="H7931"\w* \w on|strong="H5921"\w* \w you|strong="H6440"\w*. +\q2 \w I|strong="H5921"\w* \w will|strong="H8064"\w* \w satisfy|strong="H7646"\w* \w the|strong="H3605"\w* \w animals|strong="H2416"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w earth|strong="H8064"\w* \w with|strong="H7646"\w* \w you|strong="H6440"\w*. +\q1 +\v 5 \w I|strong="H5414"\w* \w will|strong="H1320"\w* \w lay|strong="H5414"\w* \w your|strong="H5414"\w* \w flesh|strong="H1320"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w*, +\q2 \w and|strong="H2022"\w* \w fill|strong="H4390"\w* \w the|strong="H5921"\w* \w valleys|strong="H1516"\w* \w with|strong="H4390"\w* \w your|strong="H5414"\w* \w height|strong="H7419"\w*. +\q1 +\v 6 \w I|strong="H4480"\w* \w will|strong="H2022"\w* also \w water|strong="H8248"\w* \w the|strong="H4480"\w* land \w in|strong="H1818"\w* \w which|strong="H2022"\w* \w you|strong="H4480"\w* swim \w with|strong="H4390"\w* \w your|strong="H4480"\w* \w blood|strong="H1818"\w*, +\q2 even \w to|strong="H4480"\w* \w the|strong="H4480"\w* \w mountains|strong="H2022"\w*. +\q2 \w The|strong="H4480"\w* watercourses \w will|strong="H2022"\w* \w be|strong="H2022"\w* \w full|strong="H4390"\w* \w of|strong="H2022"\w* \w you|strong="H4480"\w*. +\q1 +\v 7 \w When|strong="H6051"\w* \w I|strong="H3808"\w* \w extinguish|strong="H3518"\w* \w you|strong="H3808"\w*, \w I|strong="H3808"\w* \w will|strong="H8064"\w* \w cover|strong="H3680"\w* \w the|strong="H3680"\w* \w heavens|strong="H8064"\w* +\q2 \w and|strong="H8064"\w* \w make|strong="H6937"\w* \w its|strong="H6051"\w* \w stars|strong="H3556"\w* \w dark|strong="H6937"\w*. +\q1 \w I|strong="H3808"\w* \w will|strong="H8064"\w* \w cover|strong="H3680"\w* \w the|strong="H3680"\w* \w sun|strong="H8121"\w* \w with|strong="H3680"\w* \w a|strong="H3068"\w* \w cloud|strong="H6051"\w*, +\q2 \w and|strong="H8064"\w* \w the|strong="H3680"\w* \w moon|strong="H3394"\w* won’t \w give|strong="H3394"\w* \w its|strong="H6051"\w* light. +\q1 +\v 8 \w I|strong="H5414"\w* \w will|strong="H8064"\w* \w make|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w bright|strong="H3974"\w* \w lights|strong="H3974"\w* \w of|strong="H5921"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w* \w dark|strong="H2822"\w* \w over|strong="H5921"\w* \w you|strong="H5414"\w*, +\q2 \w and|strong="H8064"\w* \w set|strong="H5414"\w* \w darkness|strong="H2822"\w* \w on|strong="H5921"\w* \w your|strong="H3605"\w* \w land|strong="H8064"\w*,” \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 9 “\w I|strong="H5921"\w* \w will|strong="H1471"\w* \w also|strong="H1471"\w* \w trouble|strong="H3707"\w* \w the|strong="H5921"\w* \w hearts|strong="H3820"\w* \w of|strong="H5971"\w* \w many|strong="H7227"\w* \w peoples|strong="H5971"\w*, +\q2 \w when|strong="H5921"\w* \w I|strong="H5921"\w* \w bring|strong="H3045"\w* \w your|strong="H5921"\w* \w destruction|strong="H7667"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*, +\q2 \w into|strong="H5921"\w* \w the|strong="H5921"\w* countries \w which|strong="H1471"\w* \w you|strong="H5921"\w* \w have|strong="H5971"\w* \w not|strong="H3808"\w* \w known|strong="H3045"\w*. +\q1 +\v 10 Yes, \w I|strong="H3117"\w* \w will|strong="H4428"\w* \w make|strong="H8074"\w* \w many|strong="H7227"\w* \w peoples|strong="H5971"\w* \w amazed|strong="H8074"\w* \w at|strong="H5921"\w* \w you|strong="H6440"\w*, +\q2 \w and|strong="H4428"\w* \w their|strong="H6440"\w* \w kings|strong="H4428"\w* \w will|strong="H4428"\w* \w be|strong="H5315"\w* \w horribly|strong="H8178"\w* \w afraid|strong="H2729"\w* \w for|strong="H5921"\w* \w you|strong="H6440"\w*, +\q1 \w when|strong="H3117"\w* \w I|strong="H3117"\w* \w brandish|strong="H5774"\w* \w my|strong="H5921"\w* \w sword|strong="H2719"\w* \w before|strong="H6440"\w* \w them|strong="H5921"\w*. +\q2 \w They|strong="H3117"\w* \w will|strong="H4428"\w* \w tremble|strong="H2729"\w* \w at|strong="H5921"\w* \w every|strong="H3117"\w* \w moment|strong="H7281"\w*, +\q1 \w every|strong="H3117"\w* \w man|strong="H5315"\w* \w for|strong="H5921"\w* \w his|strong="H6440"\w* \w own|strong="H5315"\w* \w life|strong="H5315"\w*, +\q2 \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w day|strong="H3117"\w* \w of|strong="H4428"\w* \w your|strong="H5921"\w* \w fall|strong="H4658"\w*.” +\q1 +\v 11 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q2 “\w The|strong="H3588"\w* \w sword|strong="H2719"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w will|strong="H4428"\w* come \w on|strong="H2719"\w* \w you|strong="H3588"\w*. +\q1 +\v 12 \w I|strong="H4714"\w* \w will|strong="H1471"\w* cause \w your|strong="H3605"\w* \w multitude|strong="H1995"\w* \w to|strong="H4714"\w* \w fall|strong="H5307"\w* \w by|strong="H3605"\w* \w the|strong="H3605"\w* \w swords|strong="H2719"\w* \w of|strong="H1368"\w* \w the|strong="H3605"\w* \w mighty|strong="H1368"\w*. +\q2 \w They|strong="H3605"\w* \w are|strong="H1471"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w ruthless|strong="H6184"\w* \w of|strong="H1368"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*. +\q1 \w They|strong="H3605"\w* \w will|strong="H1471"\w* \w bring|strong="H5307"\w* \w the|strong="H3605"\w* \w pride|strong="H1347"\w* \w of|strong="H1368"\w* \w Egypt|strong="H4714"\w* \w to|strong="H4714"\w* \w nothing|strong="H3605"\w*, +\q2 \w and|strong="H4714"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w multitude|strong="H1995"\w* \w will|strong="H1471"\w* \w be|strong="H1471"\w* \w destroyed|strong="H8045"\w*. +\q1 +\v 13 \w I|strong="H5921"\w* \w will|strong="H3808"\w* \w destroy|strong="H3605"\w* \w also|strong="H5750"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* animals \w from|strong="H5921"\w* \w beside|strong="H5921"\w* \w many|strong="H7227"\w* \w waters|strong="H4325"\w*. +\q2 \w The|strong="H3605"\w* \w foot|strong="H7272"\w* \w of|strong="H4325"\w* \w man|strong="H3605"\w* won’t \w trouble|strong="H1804"\w* \w them|strong="H5921"\w* \w any|strong="H3605"\w* \w more|strong="H5750"\w*, +\q2 \w nor|strong="H3808"\w* \w will|strong="H3808"\w* \w the|strong="H3605"\w* \w hoofs|strong="H6541"\w* \w of|strong="H4325"\w* animals \w trouble|strong="H1804"\w* \w them|strong="H5921"\w*. +\q1 +\v 14 Then \w I|strong="H3212"\w* \w will|strong="H4325"\w* make \w their|strong="H3212"\w* \w waters|strong="H4325"\w* clear, +\q2 \w and|strong="H3212"\w* cause \w their|strong="H3212"\w* \w rivers|strong="H5104"\w* \w to|strong="H3212"\w* \w run|strong="H4325"\w* \w like|strong="H3212"\w* \w oil|strong="H8081"\w*,” +\q2 \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 15 “\w When|strong="H3588"\w* \w I|strong="H3588"\w* \w make|strong="H5414"\w* \w the|strong="H3605"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w* \w desolate|strong="H8074"\w* \w and|strong="H3068"\w* \w waste|strong="H8074"\w*, +\q2 \w a|strong="H3068"\w* land \w destitute|strong="H8074"\w* \w of|strong="H3068"\w* \w that|strong="H3588"\w* \w of|strong="H3068"\w* \w which|strong="H3068"\w* \w it|strong="H5414"\w* \w was|strong="H3068"\w* \w full|strong="H4393"\w*, +\q1 \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w strike|strong="H5221"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w dwell|strong="H3427"\w* \w therein|strong="H4393"\w*, +\q2 \w then|strong="H5414"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 16 “‘“\w This|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H3605"\w* \w lamentation|strong="H7015"\w* \w with|strong="H5921"\w* \w which|strong="H1931"\w* \w they|strong="H5921"\w* \w will|strong="H1471"\w* \w lament|strong="H6969"\w*. \w The|strong="H3605"\w* \w daughters|strong="H1323"\w* \w of|strong="H1323"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w will|strong="H1471"\w* \w lament|strong="H6969"\w* \w with|strong="H5921"\w* \w this|strong="H1931"\w*. \w They|strong="H5921"\w* \w will|strong="H1471"\w* \w lament|strong="H6969"\w* \w with|strong="H5921"\w* \w it|strong="H1931"\w* \w over|strong="H5921"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H4714"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w multitude|strong="H1995"\w*,” \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*.’” +\b +\p +\v 17 \w Also|strong="H3068"\w* \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w twelfth|strong="H8147"\w* \w year|strong="H8141"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w fifteenth|strong="H2568"\w* \w day|strong="H2320"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w month|strong="H2320"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1961"\w*, \w saying|strong="H1697"\w*, +\v 18 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w wail|strong="H5091"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w multitude|strong="H1995"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H1121"\w* cast \w them|strong="H5921"\w* \w down|strong="H3381"\w*, \w even|strong="H5921"\w* \w her|strong="H5921"\w* \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w daughters|strong="H1323"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* famous \w nations|strong="H1471"\w*, \w to|strong="H3381"\w* \w the|strong="H5921"\w* \w lower|strong="H8482"\w* \w parts|strong="H8482"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* earth, \w with|strong="H5921"\w* \w those|strong="H5921"\w* \w who|strong="H1121"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w the|strong="H5921"\w* pit. +\v 19 \w Whom|strong="H4310"\w* \w do|strong="H3381"\w* \w you|strong="H3381"\w* pass \w in|strong="H6189"\w* \w beauty|strong="H5276"\w*? \w Go|strong="H3381"\w* \w down|strong="H3381"\w*, \w and|strong="H3381"\w* be \w laid|strong="H7901"\w* \w with|strong="H3381"\w* \w the|strong="H3381"\w* \w uncircumcised|strong="H6189"\w*. +\v 20 \w They|strong="H3605"\w* \w will|strong="H2719"\w* \w fall|strong="H5307"\w* \w among|strong="H8432"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H2491"\w* \w slain|strong="H2491"\w* \w by|strong="H5414"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*. She \w is|strong="H3605"\w* \w delivered|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*. \w Draw|strong="H4900"\w* \w her|strong="H3605"\w* \w away|strong="H5307"\w* \w with|strong="H3605"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w multitudes|strong="H1995"\w*. +\v 21 \w The|strong="H8432"\w* \w strong|strong="H1368"\w* \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w mighty|strong="H1368"\w* \w will|strong="H2719"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H3381"\w* \w out|strong="H8432"\w* \w of|strong="H8432"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w Sheol|strong="H7585"\w*\f + \fr 32:21 \ft Sheol is the place of the dead.\f* \w with|strong="H1696"\w* \w those|strong="H1696"\w* \w who|strong="H1368"\w* \w help|strong="H5826"\w* \w him|strong="H3381"\w*. \w They|strong="H2719"\w* \w have|strong="H1696"\w* \w gone|strong="H3381"\w* \w down|strong="H3381"\w*. \w The|strong="H8432"\w* \w uncircumcised|strong="H6189"\w* \w lie|strong="H7901"\w* \w still|strong="H7901"\w*, \w slain|strong="H2491"\w* \w by|strong="H2491"\w* \w the|strong="H8432"\w* \w sword|strong="H2719"\w*. +\p +\v 22 “Asshur \w is|strong="H3605"\w* \w there|strong="H8033"\w* \w with|strong="H3605"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w company|strong="H6951"\w*. \w Her|strong="H3605"\w* \w graves|strong="H6913"\w* \w are|strong="H6913"\w* \w all|strong="H3605"\w* \w around|strong="H5439"\w* \w her|strong="H3605"\w*. \w All|strong="H3605"\w* \w of|strong="H6951"\w* \w them|strong="H5439"\w* \w are|strong="H6913"\w* \w slain|strong="H2491"\w*, \w fallen|strong="H5307"\w* \w by|strong="H3605"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, +\v 23 \w whose|strong="H3605"\w* \w graves|strong="H6913"\w* \w are|strong="H6913"\w* \w set|strong="H5414"\w* \w in|strong="H5307"\w* \w the|strong="H3605"\w* uttermost \w parts|strong="H3411"\w* \w of|strong="H6951"\w* \w the|strong="H3605"\w* pit, \w and|strong="H2719"\w* \w her|strong="H3605"\w* \w company|strong="H6951"\w* \w is|strong="H3605"\w* \w around|strong="H5439"\w* \w her|strong="H3605"\w* \w grave|strong="H6913"\w*, \w all|strong="H3605"\w* \w of|strong="H6951"\w* \w them|strong="H5414"\w* \w slain|strong="H2491"\w*, \w fallen|strong="H5307"\w* \w by|strong="H5414"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w who|strong="H3605"\w* \w caused|strong="H5414"\w* \w terror|strong="H2851"\w* \w in|strong="H5307"\w* \w the|strong="H3605"\w* land \w of|strong="H6951"\w* \w the|strong="H3605"\w* \w living|strong="H2416"\w*. +\p +\v 24 “\w There|strong="H8033"\w* \w is|strong="H3605"\w* \w Elam|strong="H5867"\w* \w and|strong="H2719"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w multitude|strong="H1995"\w* \w around|strong="H5439"\w* \w her|strong="H3605"\w* \w grave|strong="H6900"\w*; \w all|strong="H3605"\w* \w of|strong="H3605"\w* \w them|strong="H5414"\w* \w slain|strong="H2491"\w*, \w fallen|strong="H5307"\w* \w by|strong="H5414"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w who|strong="H3605"\w* \w have|strong="H5414"\w* \w gone|strong="H3381"\w* \w down|strong="H3381"\w* \w uncircumcised|strong="H6189"\w* \w into|strong="H3381"\w* \w the|strong="H3605"\w* \w lower|strong="H8482"\w* \w parts|strong="H8482"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* earth, \w who|strong="H3605"\w* \w caused|strong="H5414"\w* \w their|strong="H3605"\w* \w terror|strong="H2851"\w* \w in|strong="H6189"\w* \w the|strong="H3605"\w* land \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w living|strong="H2416"\w*, \w and|strong="H2719"\w* \w have|strong="H5414"\w* \w borne|strong="H5375"\w* \w their|strong="H3605"\w* \w shame|strong="H3639"\w* \w with|strong="H3381"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3605"\w* pit. +\v 25 \w They|strong="H3588"\w* \w have|strong="H5414"\w* \w made|strong="H5414"\w* Elam \w a|strong="H3068"\w* \w bed|strong="H4904"\w* \w among|strong="H8432"\w* \w the|strong="H3605"\w* \w slain|strong="H2491"\w* \w with|strong="H3381"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w multitude|strong="H1995"\w*. \w Her|strong="H3605"\w* \w graves|strong="H6913"\w* \w are|strong="H6913"\w* \w around|strong="H5439"\w* \w her|strong="H3605"\w*, \w all|strong="H3605"\w* \w of|strong="H8432"\w* \w them|strong="H5414"\w* \w uncircumcised|strong="H6189"\w*, \w slain|strong="H2491"\w* \w by|strong="H5414"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*; \w for|strong="H3588"\w* \w their|strong="H3605"\w* \w terror|strong="H2851"\w* \w was|strong="H5414"\w* \w caused|strong="H5414"\w* \w in|strong="H8432"\w* \w the|strong="H3605"\w* land \w of|strong="H8432"\w* \w the|strong="H3605"\w* \w living|strong="H2416"\w*, \w and|strong="H2719"\w* \w they|strong="H3588"\w* \w have|strong="H5414"\w* \w borne|strong="H5375"\w* \w their|strong="H3605"\w* \w shame|strong="H3639"\w* \w with|strong="H3381"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3605"\w* pit. \w He|strong="H3588"\w* \w is|strong="H3605"\w* \w put|strong="H5414"\w* \w among|strong="H8432"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H6913"\w* \w slain|strong="H2491"\w*. +\p +\v 26 “\w There|strong="H8033"\w* \w is|strong="H3605"\w* \w Meshech|strong="H4902"\w*, \w Tubal|strong="H8422"\w*, \w and|strong="H2719"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w multitude|strong="H1995"\w*. \w Their|strong="H3605"\w* \w graves|strong="H6913"\w* \w are|strong="H6913"\w* \w around|strong="H5439"\w* \w them|strong="H5414"\w*, \w all|strong="H3605"\w* \w of|strong="H3605"\w* \w them|strong="H5414"\w* \w uncircumcised|strong="H6189"\w*, \w slain|strong="H2490"\w* \w by|strong="H5414"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w caused|strong="H5414"\w* \w their|strong="H3605"\w* \w terror|strong="H2851"\w* \w in|strong="H6189"\w* \w the|strong="H3605"\w* land \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w living|strong="H2416"\w*. +\v 27 \w They|strong="H3588"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w lie|strong="H7901"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w mighty|strong="H1368"\w* \w who|strong="H1368"\w* \w are|strong="H6106"\w* \w fallen|strong="H5307"\w* \w of|strong="H3627"\w* \w the|strong="H5921"\w* \w uncircumcised|strong="H6189"\w*, \w who|strong="H1368"\w* \w have|strong="H1961"\w* \w gone|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w Sheol|strong="H7585"\w* \w with|strong="H5921"\w* \w their|strong="H5414"\w* \w weapons|strong="H3627"\w* \w of|strong="H3627"\w* \w war|strong="H4421"\w* \w and|strong="H7218"\w* \w have|strong="H1961"\w* \w laid|strong="H5414"\w* \w their|strong="H5414"\w* \w swords|strong="H2719"\w* \w under|strong="H8478"\w* \w their|strong="H5414"\w* \w heads|strong="H7218"\w*. \w Their|strong="H5414"\w* \w iniquities|strong="H5771"\w* \w are|strong="H6106"\w* \w on|strong="H5921"\w* \w their|strong="H5414"\w* \w bones|strong="H6106"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H1961"\w* \w the|strong="H5921"\w* \w terror|strong="H2851"\w* \w of|strong="H3627"\w* \w the|strong="H5921"\w* \w mighty|strong="H1368"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H3627"\w* \w the|strong="H5921"\w* \w living|strong="H2416"\w*. +\p +\v 28 “But \w you|strong="H8432"\w* \w will|strong="H2719"\w* \w be|strong="H2719"\w* \w broken|strong="H7665"\w* \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w uncircumcised|strong="H6189"\w*, \w and|strong="H2719"\w* \w will|strong="H2719"\w* \w lie|strong="H7901"\w* \w with|strong="H7901"\w* those \w who|strong="H2491"\w* \w are|strong="H2491"\w* \w slain|strong="H2491"\w* \w by|strong="H2491"\w* \w the|strong="H8432"\w* \w sword|strong="H2719"\w*. +\p +\v 29 “\w There|strong="H8033"\w* \w is|strong="H3605"\w* Edom, \w her|strong="H3605"\w* \w kings|strong="H4428"\w*, \w and|strong="H4428"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w princes|strong="H5387"\w*, \w who|strong="H3605"\w* \w in|strong="H4428"\w* \w their|strong="H3605"\w* \w might|strong="H1369"\w* \w are|strong="H1992"\w* \w laid|strong="H5414"\w* \w with|strong="H3381"\w* \w those|strong="H1992"\w* \w who|strong="H3605"\w* \w are|strong="H1992"\w* \w slain|strong="H2491"\w* \w by|strong="H5414"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*. \w They|strong="H1992"\w* \w will|strong="H4428"\w* \w lie|strong="H7901"\w* \w with|strong="H3381"\w* \w the|strong="H3605"\w* \w uncircumcised|strong="H6189"\w*, \w and|strong="H4428"\w* \w with|strong="H3381"\w* \w those|strong="H1992"\w* \w who|strong="H3605"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3605"\w* pit. +\p +\v 30 “\w There|strong="H8033"\w* \w are|strong="H2491"\w* \w the|strong="H3605"\w* \w princes|strong="H5257"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w north|strong="H6828"\w*, \w all|strong="H3605"\w* \w of|strong="H3605"\w* \w them|strong="H3381"\w*, \w and|strong="H2719"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w Sidonians|strong="H6722"\w*, \w who|strong="H3605"\w* \w have|strong="H3605"\w* \w gone|strong="H3381"\w* \w down|strong="H3381"\w* \w with|strong="H3381"\w* \w the|strong="H3605"\w* \w slain|strong="H2491"\w*. \w They|strong="H8033"\w* \w are|strong="H2491"\w* \w put|strong="H3381"\w* \w to|strong="H3381"\w* \w shame|strong="H3639"\w* \w in|strong="H6189"\w* \w the|strong="H3605"\w* \w terror|strong="H2851"\w* \w which|strong="H8033"\w* \w they|strong="H8033"\w* caused \w by|strong="H3605"\w* \w their|strong="H3605"\w* \w might|strong="H1369"\w*. \w They|strong="H8033"\w* \w lie|strong="H7901"\w* \w uncircumcised|strong="H6189"\w* \w with|strong="H3381"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H2491"\w* \w slain|strong="H2491"\w* \w by|strong="H3605"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w and|strong="H2719"\w* \w bear|strong="H5375"\w* \w their|strong="H3605"\w* \w shame|strong="H3639"\w* \w with|strong="H3381"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w go|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3605"\w* pit. +\p +\v 31 “\w Pharaoh|strong="H6547"\w* \w will|strong="H2719"\w* \w see|strong="H7200"\w* \w them|strong="H5921"\w* \w and|strong="H2719"\w* \w will|strong="H2719"\w* \w be|strong="H2719"\w* \w comforted|strong="H5162"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w multitude|strong="H1995"\w*, \w even|strong="H5921"\w* \w Pharaoh|strong="H6547"\w* \w and|strong="H2719"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w army|strong="H2428"\w*, \w slain|strong="H2491"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*,” \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\v 32 “\w For|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H5414"\w* \w put|strong="H5414"\w* \w his|strong="H3605"\w* \w terror|strong="H2851"\w* \w in|strong="H8432"\w* \w the|strong="H3605"\w* land \w of|strong="H8432"\w* \w the|strong="H3605"\w* \w living|strong="H2416"\w*. \w He|strong="H3588"\w* \w will|strong="H2719"\w* \w be|strong="H5414"\w* \w laid|strong="H5414"\w* \w among|strong="H8432"\w* \w the|strong="H3605"\w* \w uncircumcised|strong="H6189"\w*, \w with|strong="H7901"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H2491"\w* \w slain|strong="H2491"\w* \w by|strong="H5414"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w even|strong="H3588"\w* \w Pharaoh|strong="H6547"\w* \w and|strong="H2719"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w multitude|strong="H1995"\w*,” \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\c 33 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w your|strong="H5414"\w* \w people|strong="H5971"\w*, \w and|strong="H1121"\w* \w tell|strong="H1696"\w* \w them|strong="H5414"\w*, ‘\w When|strong="H3588"\w* \w I|strong="H3588"\w* \w bring|strong="H3947"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* land, \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* land \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w from|strong="H5921"\w* \w among|strong="H5921"\w* \w them|strong="H5414"\w*, \w and|strong="H1121"\w* \w set|strong="H5414"\w* \w him|strong="H5414"\w* \w for|strong="H3588"\w* \w their|strong="H5414"\w* \w watchman|strong="H6822"\w*, +\v 3 \w if|strong="H7200"\w*, \w when|strong="H7200"\w* \w he|strong="H5921"\w* \w sees|strong="H7200"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w* \w come|strong="H5971"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* land, \w he|strong="H5921"\w* \w blows|strong="H8628"\w* \w the|strong="H5921"\w* \w trumpet|strong="H7782"\w* \w and|strong="H5971"\w* \w warns|strong="H2094"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w*, +\v 4 \w then|strong="H1961"\w* whoever \w hears|strong="H8085"\w* \w the|strong="H8085"\w* \w sound|strong="H6963"\w* \w of|strong="H7218"\w* \w the|strong="H8085"\w* \w trumpet|strong="H7782"\w* \w and|strong="H6963"\w* doesn’t \w heed|strong="H8085"\w* \w the|strong="H8085"\w* \w warning|strong="H2094"\w*, \w if|strong="H1961"\w* \w the|strong="H8085"\w* \w sword|strong="H2719"\w* \w comes|strong="H1961"\w* \w and|strong="H6963"\w* \w takes|strong="H3947"\w* \w him|strong="H3947"\w* \w away|strong="H3947"\w*, \w his|strong="H3947"\w* \w blood|strong="H1818"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w on|strong="H1961"\w* \w his|strong="H3947"\w* \w own|strong="H1961"\w* \w head|strong="H7218"\w*. +\v 5 \w He|strong="H1931"\w* \w heard|strong="H8085"\w* \w the|strong="H8085"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H8085"\w* \w trumpet|strong="H7782"\w* \w and|strong="H6963"\w* didn’t \w take|strong="H1961"\w* \w warning|strong="H2094"\w*. \w His|strong="H8085"\w* \w blood|strong="H1818"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w on|strong="H1961"\w* \w him|strong="H6963"\w*; whereas \w if|strong="H1961"\w* \w he|strong="H1931"\w* \w had|strong="H1961"\w* \w heeded|strong="H8085"\w* \w the|strong="H8085"\w* \w warning|strong="H2094"\w*, \w he|strong="H1931"\w* \w would|strong="H5315"\w* \w have|strong="H1961"\w* \w delivered|strong="H4422"\w* \w his|strong="H8085"\w* \w soul|strong="H5315"\w*. +\v 6 \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w the|strong="H7200"\w* \w watchman|strong="H6822"\w* \w sees|strong="H7200"\w* \w the|strong="H7200"\w* \w sword|strong="H2719"\w* \w come|strong="H5971"\w* \w and|strong="H3027"\w* doesn’t \w blow|strong="H8628"\w* \w the|strong="H7200"\w* \w trumpet|strong="H7782"\w*, \w and|strong="H3027"\w* \w the|strong="H7200"\w* \w people|strong="H5971"\w* aren’t \w warned|strong="H2094"\w*, \w and|strong="H3027"\w* \w the|strong="H7200"\w* \w sword|strong="H2719"\w* \w comes|strong="H1992"\w* \w and|strong="H3027"\w* \w takes|strong="H3947"\w* \w any|strong="H5315"\w* \w person|strong="H5315"\w* \w from|strong="H5315"\w* \w among|strong="H5971"\w* \w them|strong="H1992"\w*, \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w taken|strong="H3947"\w* \w away|strong="H3947"\w* \w in|strong="H5315"\w* \w his|strong="H3947"\w* \w iniquity|strong="H5771"\w*, \w but|strong="H3588"\w* \w his|strong="H3947"\w* \w blood|strong="H1818"\w* \w I|strong="H3588"\w* \w will|strong="H5971"\w* \w require|strong="H1875"\w* \w at|strong="H7200"\w* \w the|strong="H7200"\w* \w watchman|strong="H6822"\w*’s \w hand|strong="H3027"\w*.’ +\p +\v 7 “\w So|strong="H4480"\w* \w you|strong="H5414"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w I|strong="H5414"\w* \w have|strong="H1121"\w* \w set|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w watchman|strong="H6822"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. Therefore \w hear|strong="H8085"\w* \w the|strong="H8085"\w* \w word|strong="H1697"\w* \w from|strong="H4480"\w* \w my|strong="H8085"\w* \w mouth|strong="H6310"\w*, \w and|strong="H1121"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* warnings \w from|strong="H4480"\w* \w me|strong="H5414"\w*. +\v 8 \w When|strong="H1696"\w* \w I|strong="H3808"\w* \w tell|strong="H1696"\w* \w the|strong="H1870"\w* \w wicked|strong="H7563"\w*, ‘\w O|strong="H3068"\w* \w wicked|strong="H7563"\w* \w man|strong="H7563"\w*, \w you|strong="H3808"\w* \w will|strong="H7563"\w* \w surely|strong="H4191"\w* \w die|strong="H4191"\w*,’ \w and|strong="H3027"\w* \w you|strong="H3808"\w* don’t \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w warn|strong="H2094"\w* \w the|strong="H1870"\w* \w wicked|strong="H7563"\w* \w from|strong="H3027"\w* \w his|strong="H3027"\w* \w way|strong="H1870"\w*, \w that|strong="H1931"\w* \w wicked|strong="H7563"\w* \w man|strong="H7563"\w* \w will|strong="H7563"\w* \w die|strong="H4191"\w* \w in|strong="H4191"\w* \w his|strong="H3027"\w* \w iniquity|strong="H5771"\w*, \w but|strong="H3808"\w* \w I|strong="H3808"\w* \w will|strong="H7563"\w* \w require|strong="H1245"\w* \w his|strong="H3027"\w* \w blood|strong="H1818"\w* \w at|strong="H4191"\w* \w your|strong="H1245"\w* \w hand|strong="H3027"\w*. +\v 9 \w Nevertheless|strong="H3588"\w*, \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w warn|strong="H2094"\w* \w the|strong="H3588"\w* \w wicked|strong="H7563"\w* \w of|strong="H1870"\w* \w his|strong="H7725"\w* \w way|strong="H1870"\w* \w to|strong="H7725"\w* \w turn|strong="H7725"\w* \w from|strong="H4480"\w* \w it|strong="H1931"\w*, \w and|strong="H7725"\w* \w he|strong="H1931"\w* doesn’t \w turn|strong="H7725"\w* \w from|strong="H4480"\w* \w his|strong="H7725"\w* \w way|strong="H1870"\w*; \w he|strong="H1931"\w* \w will|strong="H5315"\w* \w die|strong="H4191"\w* \w in|strong="H4191"\w* \w his|strong="H7725"\w* \w iniquity|strong="H5771"\w*, \w but|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H7563"\w* \w delivered|strong="H5337"\w* \w your|strong="H7725"\w* \w soul|strong="H5315"\w*. +\p +\v 10 “\w You|strong="H3588"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, tell \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*: ‘\w You|strong="H3588"\w* \w say|strong="H3478"\w* \w this|strong="H3651"\w*, “\w Our|strong="H5921"\w* \w transgressions|strong="H6588"\w* \w and|strong="H1121"\w* \w our|strong="H5921"\w* \w sins|strong="H2403"\w* \w are|strong="H1121"\w* \w on|strong="H5921"\w* \w us|strong="H5921"\w*, \w and|strong="H1121"\w* \w we|strong="H3068"\w* pine \w away|strong="H4743"\w* \w in|strong="H5921"\w* \w them|strong="H5921"\w*. \w How|strong="H3588"\w* \w then|strong="H3651"\w* \w can|strong="H1004"\w* \w we|strong="H3068"\w* \w live|strong="H2421"\w*?”’ +\v 11 Tell \w them|strong="H7725"\w*, ‘“\w As|strong="H3588"\w* \w I|strong="H3588"\w* \w live|strong="H2421"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, “\w I|strong="H3588"\w* \w have|strong="H3478"\w* \w no|strong="H3478"\w* \w pleasure|strong="H2654"\w* \w in|strong="H3478"\w* \w the|strong="H5002"\w* \w death|strong="H4194"\w* \w of|strong="H1004"\w* \w the|strong="H5002"\w* \w wicked|strong="H7563"\w*, \w but|strong="H3588"\w* \w that|strong="H3588"\w* \w the|strong="H5002"\w* \w wicked|strong="H7563"\w* \w turn|strong="H7725"\w* \w from|strong="H7725"\w* \w his|strong="H7725"\w* \w way|strong="H1870"\w* \w and|strong="H3478"\w* \w live|strong="H2421"\w*. \w Turn|strong="H7725"\w*, \w turn|strong="H7725"\w* \w from|strong="H7725"\w* \w your|strong="H7725"\w* \w evil|strong="H7451"\w* \w ways|strong="H1870"\w*! \w For|strong="H3588"\w* \w why|strong="H4100"\w* \w will|strong="H3478"\w* \w you|strong="H3588"\w* \w die|strong="H4191"\w*, \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*?”’ +\p +\v 12 “\w You|strong="H3117"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H7563"\w*, tell \w the|strong="H7725"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w your|strong="H7725"\w* \w people|strong="H5971"\w*, ‘\w The|strong="H7725"\w* \w righteousness|strong="H6666"\w* \w of|strong="H1121"\w* \w the|strong="H7725"\w* \w righteous|strong="H6662"\w* \w will|strong="H5971"\w* \w not|strong="H3808"\w* \w deliver|strong="H5337"\w* \w him|strong="H7725"\w* \w in|strong="H3117"\w* \w the|strong="H7725"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w his|strong="H7725"\w* disobedience. \w And|strong="H1121"\w* \w as|strong="H3117"\w* \w for|strong="H3117"\w* \w the|strong="H7725"\w* \w wickedness|strong="H7562"\w* \w of|strong="H1121"\w* \w the|strong="H7725"\w* \w wicked|strong="H7563"\w*, \w he|strong="H3117"\w* \w will|strong="H5971"\w* \w not|strong="H3808"\w* \w fall|strong="H3782"\w* \w by|strong="H3117"\w* \w it|strong="H7725"\w* \w in|strong="H3117"\w* \w the|strong="H7725"\w* \w day|strong="H3117"\w* \w that|strong="H5971"\w* \w he|strong="H3117"\w* \w turns|strong="H7725"\w* \w from|strong="H7725"\w* \w his|strong="H7725"\w* \w wickedness|strong="H7562"\w*; \w neither|strong="H3808"\w* \w will|strong="H5971"\w* \w he|strong="H3117"\w* \w who|strong="H5971"\w* \w is|strong="H3117"\w* \w righteous|strong="H6662"\w* \w be|strong="H3808"\w* \w able|strong="H3201"\w* \w to|strong="H7725"\w* \w live|strong="H2421"\w* \w by|strong="H3117"\w* \w it|strong="H7725"\w* \w in|strong="H3117"\w* \w the|strong="H7725"\w* \w day|strong="H3117"\w* \w that|strong="H5971"\w* \w he|strong="H3117"\w* \w sins|strong="H2398"\w*. +\v 13 \w When|strong="H2421"\w* \w I|strong="H5921"\w* \w tell|strong="H3605"\w* \w the|strong="H3605"\w* \w righteous|strong="H6662"\w* \w that|strong="H3605"\w* \w he|strong="H1931"\w* \w will|strong="H6662"\w* \w surely|strong="H4191"\w* \w live|strong="H2421"\w*, \w if|strong="H1931"\w* \w he|strong="H1931"\w* trusts \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w righteousness|strong="H6666"\w* \w and|strong="H6213"\w* \w commits|strong="H6213"\w* \w iniquity|strong="H5766"\w*, \w none|strong="H3808"\w* \w of|strong="H5921"\w* \w his|strong="H3605"\w* \w righteous|strong="H6662"\w* \w deeds|strong="H6666"\w* \w will|strong="H6662"\w* \w be|strong="H4191"\w* \w remembered|strong="H2142"\w*; \w but|strong="H3808"\w* \w he|strong="H1931"\w* \w will|strong="H6662"\w* \w die|strong="H4191"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w iniquity|strong="H5766"\w* \w that|strong="H3605"\w* \w he|strong="H1931"\w* \w has|strong="H3605"\w* \w committed|strong="H6213"\w*. +\v 14 \w Again|strong="H7725"\w*, \w when|strong="H7725"\w* \w I|strong="H6666"\w* \w say|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H6213"\w* \w wicked|strong="H7563"\w*, “\w You|strong="H7725"\w* \w will|strong="H7563"\w* \w surely|strong="H4191"\w* \w die|strong="H4191"\w*,” if \w he|strong="H6213"\w* \w turns|strong="H7725"\w* \w from|strong="H7725"\w* \w his|strong="H7725"\w* \w sin|strong="H2403"\w* \w and|strong="H7725"\w* \w does|strong="H6213"\w* \w that|strong="H6213"\w* \w which|strong="H2403"\w* \w is|strong="H7563"\w* \w lawful|strong="H4941"\w* \w and|strong="H7725"\w* \w right|strong="H4941"\w*, +\v 15 if \w the|strong="H6213"\w* \w wicked|strong="H7563"\w* \w restore|strong="H7725"\w* \w the|strong="H6213"\w* \w pledge|strong="H2258"\w*, \w give|strong="H7725"\w* \w again|strong="H7725"\w* \w that|strong="H2416"\w* \w which|strong="H2416"\w* \w he|strong="H6213"\w* \w had|strong="H2416"\w* \w taken|strong="H6213"\w* \w by|strong="H4191"\w* \w robbery|strong="H1500"\w*, \w walk|strong="H1980"\w* \w in|strong="H1980"\w* \w the|strong="H6213"\w* \w statutes|strong="H2708"\w* \w of|strong="H4191"\w* \w life|strong="H2416"\w*, \w committing|strong="H6213"\w* \w no|strong="H3808"\w* \w iniquity|strong="H5766"\w*, \w he|strong="H6213"\w* \w will|strong="H7563"\w* \w surely|strong="H4191"\w* \w live|strong="H2421"\w*. \w He|strong="H6213"\w* \w will|strong="H7563"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*. +\v 16 \w None|strong="H3808"\w* \w of|strong="H3605"\w* \w his|strong="H3605"\w* \w sins|strong="H2403"\w* \w that|strong="H3605"\w* \w he|strong="H6213"\w* \w has|strong="H3605"\w* \w committed|strong="H6213"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w remembered|strong="H2142"\w* \w against|strong="H2398"\w* \w him|strong="H6213"\w*. \w He|strong="H6213"\w* \w has|strong="H3605"\w* \w done|strong="H6213"\w* \w that|strong="H3605"\w* \w which|strong="H2403"\w* \w is|strong="H3605"\w* \w lawful|strong="H4941"\w* \w and|strong="H4941"\w* \w right|strong="H4941"\w*. \w He|strong="H6213"\w* \w will|strong="H3808"\w* \w surely|strong="H2421"\w* \w live|strong="H2421"\w*. +\p +\v 17 “‘\w Yet|strong="H3808"\w* \w the|strong="H1870"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w your|strong="H3808"\w* \w people|strong="H5971"\w* say, “\w The|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H1121"\w* \w the|strong="H1870"\w* Lord \w is|strong="H1870"\w* \w not|strong="H3808"\w* fair;” \w but|strong="H3808"\w* \w as|strong="H5971"\w* \w for|strong="H1121"\w* \w them|strong="H1992"\w*, \w their|strong="H1992"\w* \w way|strong="H1870"\w* \w is|strong="H1870"\w* \w not|strong="H3808"\w* fair. +\v 18 \w When|strong="H7725"\w* \w the|strong="H6213"\w* \w righteous|strong="H6662"\w* \w turns|strong="H7725"\w* \w from|strong="H7725"\w* \w his|strong="H7725"\w* \w righteousness|strong="H6666"\w* \w and|strong="H7725"\w* \w commits|strong="H6213"\w* \w iniquity|strong="H5766"\w*, \w he|strong="H6213"\w* \w will|strong="H6662"\w* \w even|strong="H6213"\w* \w die|strong="H4191"\w* therein. +\v 19 \w When|strong="H2421"\w* \w the|strong="H5921"\w* \w wicked|strong="H7563"\w* \w turns|strong="H7725"\w* \w from|strong="H7725"\w* \w his|strong="H7725"\w* \w wickedness|strong="H7564"\w* \w and|strong="H7725"\w* \w does|strong="H6213"\w* \w that|strong="H1931"\w* \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w lawful|strong="H4941"\w* \w and|strong="H7725"\w* \w right|strong="H4941"\w*, \w he|strong="H1931"\w* \w will|strong="H7563"\w* \w live|strong="H2421"\w* \w by|strong="H5921"\w* \w it|strong="H1931"\w*. +\v 20 \w Yet|strong="H3808"\w* \w you|strong="H3808"\w* \w say|strong="H3478"\w*, “\w The|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H1004"\w* \w the|strong="H1870"\w* Lord \w is|strong="H1870"\w* \w not|strong="H3808"\w* fair.” \w House|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w I|strong="H3808"\w* \w will|strong="H3478"\w* \w judge|strong="H8199"\w* \w every|strong="H3478"\w* \w one|strong="H3808"\w* \w of|strong="H1004"\w* \w you|strong="H3808"\w* \w after|strong="H1004"\w* \w his|strong="H3478"\w* \w ways|strong="H1870"\w*.’” +\b +\p +\v 21 \w In|strong="H8141"\w* \w the|strong="H5221"\w* \w twelfth|strong="H8147"\w* \w year|strong="H8141"\w* \w of|strong="H8141"\w* \w our|strong="H1961"\w* \w captivity|strong="H1546"\w*, \w in|strong="H8141"\w* \w the|strong="H5221"\w* \w tenth|strong="H6224"\w* \w month|strong="H2320"\w*, \w in|strong="H8141"\w* \w the|strong="H5221"\w* \w fifth|strong="H2568"\w* \w day|strong="H2320"\w* \w of|strong="H8141"\w* \w the|strong="H5221"\w* \w month|strong="H2320"\w*, \w one|strong="H1961"\w* \w who|strong="H6412"\w* \w had|strong="H1961"\w* \w escaped|strong="H6412"\w* \w out|strong="H8147"\w* \w of|strong="H8141"\w* \w Jerusalem|strong="H3389"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w me|strong="H5221"\w*, saying, “\w The|strong="H5221"\w* \w city|strong="H5892"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w defeated|strong="H5221"\w*!” +\v 22 \w Now|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w had|strong="H3068"\w* \w been|strong="H1961"\w* \w on|strong="H3027"\w* \w me|strong="H6440"\w* \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w evening|strong="H6153"\w*, \w before|strong="H6440"\w* \w he|strong="H5704"\w* \w who|strong="H3068"\w* \w had|strong="H3068"\w* \w escaped|strong="H6412"\w* \w came|strong="H1961"\w*; \w and|strong="H3068"\w* \w he|strong="H5704"\w* \w had|strong="H3068"\w* \w opened|strong="H6605"\w* \w my|strong="H3068"\w* \w mouth|strong="H6310"\w* \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w came|strong="H1961"\w* \w to|strong="H5704"\w* \w me|strong="H6440"\w* \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w morning|strong="H1242"\w*; \w and|strong="H3068"\w* \w my|strong="H3068"\w* \w mouth|strong="H6310"\w* \w was|strong="H3068"\w* \w opened|strong="H6605"\w*, \w and|strong="H3068"\w* \w I|strong="H5704"\w* \w was|strong="H3068"\w* \w no|strong="H3808"\w* \w longer|strong="H5750"\w* mute. +\p +\v 23 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 24 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w those|strong="H5921"\w* \w who|strong="H1121"\w* \w inhabit|strong="H3427"\w* \w the|strong="H5921"\w* \w waste|strong="H2723"\w* \w places|strong="H2723"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* land \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* speak, saying, ‘Abraham \w was|strong="H1961"\w* \w one|strong="H1121"\w*, \w and|strong="H1121"\w* \w he|strong="H5414"\w* \w inherited|strong="H3423"\w* \w the|strong="H5921"\w* land; \w but|strong="H1961"\w* \w we|strong="H3068"\w* \w are|strong="H1121"\w* \w many|strong="H7227"\w*. \w The|strong="H5921"\w* land \w is|strong="H3478"\w* \w given|strong="H5414"\w* \w us|strong="H5414"\w* \w for|strong="H5921"\w* \w inheritance|strong="H3423"\w*.’ +\v 25 \w Therefore|strong="H3651"\w* tell \w them|strong="H5921"\w*, ‘\w The|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w You|strong="H5921"\w* eat \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w*, \w and|strong="H5869"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w your|strong="H5921"\w* \w eyes|strong="H5869"\w* \w to|strong="H5921"\w* \w your|strong="H5921"\w* \w idols|strong="H1544"\w*, \w and|strong="H5869"\w* \w shed|strong="H8210"\w* \w blood|strong="H1818"\w*. \w So|strong="H3651"\w* should \w you|strong="H5921"\w* \w possess|strong="H3423"\w* \w the|strong="H5921"\w* land? +\v 26 \w You|strong="H5921"\w* \w stand|strong="H5975"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w sword|strong="H2719"\w*, \w you|strong="H5921"\w* \w work|strong="H6213"\w* \w abomination|strong="H8441"\w*, \w and|strong="H2719"\w* \w every|strong="H6213"\w* \w one|strong="H6213"\w* \w of|strong="H5921"\w* \w you|strong="H5921"\w* \w defiles|strong="H2930"\w* \w his|strong="H5921"\w* \w neighbor|strong="H7453"\w*’s wife. \w So|strong="H6213"\w* \w should|strong="H6213"\w* \w you|strong="H5921"\w* \w possess|strong="H3423"\w* \w the|strong="H5921"\w* land?”’ +\p +\v 27 “\w You|strong="H5414"\w* \w shall|strong="H2719"\w* tell \w them|strong="H5414"\w*, ‘\w The|strong="H6440"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w As|strong="H6440"\w* \w I|strong="H5414"\w* \w live|strong="H2416"\w*, \w surely|strong="H4191"\w* \w those|strong="H5921"\w* \w who|strong="H2416"\w* \w are|strong="H6440"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w waste|strong="H2723"\w* \w places|strong="H2723"\w* \w will|strong="H2719"\w* \w fall|strong="H5307"\w* \w by|strong="H5921"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w*. \w I|strong="H5414"\w* \w will|strong="H2719"\w* \w give|strong="H5414"\w* \w whoever|strong="H4191"\w* \w is|strong="H6440"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w open|strong="H6440"\w* \w field|strong="H7704"\w* \w to|strong="H4191"\w* \w the|strong="H6440"\w* \w animals|strong="H2416"\w* \w to|strong="H4191"\w* \w be|strong="H4191"\w* devoured, \w and|strong="H6440"\w* \w those|strong="H5921"\w* \w who|strong="H2416"\w* \w are|strong="H6440"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* strongholds \w and|strong="H6440"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w caves|strong="H4631"\w* \w will|strong="H2719"\w* \w die|strong="H4191"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w pestilence|strong="H1698"\w*. +\v 28 \w I|strong="H5414"\w* \w will|strong="H3478"\w* \w make|strong="H5414"\w* \w the|strong="H5414"\w* \w land|strong="H1347"\w* \w a|strong="H3068"\w* \w desolation|strong="H8077"\w* \w and|strong="H3478"\w* \w an|strong="H5414"\w* \w astonishment|strong="H8074"\w*. \w The|strong="H5414"\w* \w pride|strong="H1347"\w* \w of|strong="H2022"\w* \w her|strong="H5414"\w* \w power|strong="H5797"\w* \w will|strong="H3478"\w* \w cease|strong="H7673"\w*. \w The|strong="H5414"\w* \w mountains|strong="H2022"\w* \w of|strong="H2022"\w* \w Israel|strong="H3478"\w* \w will|strong="H3478"\w* \w be|strong="H3478"\w* \w desolate|strong="H8074"\w*, \w so|strong="H5414"\w* \w that|strong="H3478"\w* \w no|strong="H5414"\w* \w one|strong="H8074"\w* \w will|strong="H3478"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w*. +\v 29 \w Then|strong="H5414"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w made|strong="H6213"\w* \w the|strong="H3605"\w* land \w a|strong="H3068"\w* \w desolation|strong="H8077"\w* \w and|strong="H3068"\w* \w an|strong="H6213"\w* \w astonishment|strong="H4923"\w* \w because|strong="H3588"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w abominations|strong="H8441"\w* \w which|strong="H3068"\w* \w they|strong="H3588"\w* \w have|strong="H3068"\w* \w committed|strong="H6213"\w*.”’ +\p +\v 30 “\w As|strong="H1697"\w* \w for|strong="H3068"\w* \w you|strong="H4100"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w the|strong="H8085"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w* \w talk|strong="H1696"\w* \w about|strong="H1697"\w* \w you|strong="H4100"\w* \w by|strong="H3068"\w* \w the|strong="H8085"\w* \w walls|strong="H7023"\w* \w and|strong="H1121"\w* \w in|strong="H3068"\w* \w the|strong="H8085"\w* \w doors|strong="H6607"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* \w houses|strong="H1004"\w*, \w and|strong="H1121"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w one|strong="H1121"\w* another, everyone \w to|strong="H1696"\w* \w his|strong="H3068"\w* brother, \w saying|strong="H1697"\w*, ‘\w Please|strong="H4994"\w* \w come|strong="H3318"\w* \w and|strong="H1121"\w* \w hear|strong="H8085"\w* \w what|strong="H4100"\w* \w the|strong="H8085"\w* \w word|strong="H1697"\w* \w is|strong="H3068"\w* \w that|strong="H5971"\w* \w comes|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w Yahweh|strong="H3068"\w*.’ +\v 31 \w They|strong="H1992"\w* \w come|strong="H1980"\w* \w to|strong="H1980"\w* \w you|strong="H3588"\w* \w as|strong="H1697"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w come|strong="H1980"\w*, \w and|strong="H1980"\w* \w they|strong="H1992"\w* \w sit|strong="H3427"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w* \w as|strong="H1697"\w* \w my|strong="H8085"\w* \w people|strong="H5971"\w*, \w and|strong="H1980"\w* \w they|strong="H1992"\w* \w hear|strong="H8085"\w* \w your|strong="H6440"\w* \w words|strong="H1697"\w*, \w but|strong="H3588"\w* don’t \w do|strong="H6213"\w* \w them|strong="H1992"\w*; \w for|strong="H3588"\w* \w with|strong="H1980"\w* \w their|strong="H6440"\w* \w mouth|strong="H6310"\w* \w they|strong="H1992"\w* \w show|strong="H6213"\w* \w much|strong="H6310"\w* \w love|strong="H5690"\w*, \w but|strong="H3588"\w* \w their|strong="H6440"\w* \w heart|strong="H3820"\w* \w goes|strong="H1980"\w* \w after|strong="H3588"\w* \w their|strong="H6440"\w* \w gain|strong="H1215"\w*. +\v 32 \w Behold|strong="H2005"\w*, \w you|strong="H6213"\w* \w are|strong="H1697"\w* \w to|strong="H6213"\w* \w them|strong="H6213"\w* \w as|strong="H1697"\w* \w a|strong="H3068"\w* \w very|strong="H6213"\w* \w lovely|strong="H5690"\w* \w song|strong="H7892"\w* \w of|strong="H1697"\w* \w one|strong="H3303"\w* \w who|strong="H6213"\w* \w has|strong="H1697"\w* \w a|strong="H3068"\w* \w pleasant|strong="H3303"\w* \w voice|strong="H6963"\w*, \w and|strong="H6963"\w* \w can|strong="H6213"\w* \w play|strong="H5059"\w* \w well|strong="H2895"\w* \w on|strong="H6213"\w* \w an|strong="H6213"\w* \w instrument|strong="H5059"\w*; \w for|strong="H6213"\w* \w they|strong="H6213"\w* \w hear|strong="H8085"\w* \w your|strong="H8085"\w* \w words|strong="H1697"\w*, \w but|strong="H8085"\w* \w they|strong="H6213"\w* don’t \w do|strong="H6213"\w* \w them|strong="H6213"\w*. +\p +\v 33 “\w When|strong="H3588"\w* \w this|strong="H3588"\w* \w comes|strong="H1961"\w* \w to|strong="H1961"\w* \w pass|strong="H1961"\w*—\w behold|strong="H2009"\w*, \w it|strong="H3588"\w* \w comes|strong="H1961"\w*—\w then|strong="H1961"\w* \w they|strong="H3588"\w* \w will|strong="H1961"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w a|strong="H3068"\w* \w prophet|strong="H5030"\w* \w has|strong="H1961"\w* \w been|strong="H1961"\w* \w among|strong="H8432"\w* \w them|strong="H8432"\w*.” +\c 34 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w prophesy|strong="H5012"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w shepherds|strong="H7462"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w Prophesy|strong="H5012"\w*, \w and|strong="H1121"\w* tell \w them|strong="H5921"\w*, \w even|strong="H3808"\w* \w the|strong="H5921"\w* \w shepherds|strong="H7462"\w*, ‘\w The|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Woe|strong="H1945"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w shepherds|strong="H7462"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w who|strong="H1121"\w* \w feed|strong="H7462"\w* \w themselves|strong="H7462"\w*! Shouldn’t \w the|strong="H5921"\w* \w shepherds|strong="H7462"\w* \w feed|strong="H7462"\w* \w the|strong="H5921"\w* \w sheep|strong="H6629"\w*? +\v 3 \w You|strong="H3808"\w* \w eat|strong="H7462"\w* \w the|strong="H3808"\w* \w fat|strong="H2459"\w*. \w You|strong="H3808"\w* \w clothe|strong="H3847"\w* \w yourself|strong="H3847"\w* \w with|strong="H3847"\w* \w the|strong="H3808"\w* \w wool|strong="H6785"\w*. \w You|strong="H3808"\w* \w kill|strong="H2076"\w* \w the|strong="H3808"\w* fatlings, \w but|strong="H3808"\w* \w you|strong="H3808"\w* don’t \w feed|strong="H7462"\w* \w the|strong="H3808"\w* \w sheep|strong="H6629"\w*. +\v 4 \w You|strong="H7725"\w* haven’t \w strengthened|strong="H2388"\w* \w the|strong="H7725"\w* \w diseased|strong="H2470"\w*. \w You|strong="H7725"\w* haven’t \w healed|strong="H7495"\w* \w that|strong="H3808"\w* which \w was|strong="H3808"\w* \w sick|strong="H2470"\w*. \w You|strong="H7725"\w* haven’t \w bound|strong="H2280"\w* \w up|strong="H2280"\w* \w that|strong="H3808"\w* which \w was|strong="H3808"\w* \w broken|strong="H7665"\w*. \w You|strong="H7725"\w* haven’t \w brought|strong="H7725"\w* \w back|strong="H7725"\w* \w that|strong="H3808"\w* which \w was|strong="H3808"\w* \w driven|strong="H5080"\w* \w away|strong="H7725"\w*. \w You|strong="H7725"\w* haven’t \w sought|strong="H1245"\w* \w that|strong="H3808"\w* which \w was|strong="H3808"\w* lost, \w but|strong="H3808"\w* \w you|strong="H7725"\w* \w have|strong="H3808"\w* \w ruled|strong="H7287"\w* \w over|strong="H7287"\w* \w them|strong="H7725"\w* \w with|strong="H7725"\w* \w force|strong="H2394"\w* \w and|strong="H7725"\w* \w with|strong="H7725"\w* rigor. +\v 5 \w They|strong="H3605"\w* \w were|strong="H1961"\w* \w scattered|strong="H6327"\w*, \w because|strong="H1097"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H1097"\w* \w shepherd|strong="H7462"\w*. \w They|strong="H3605"\w* \w became|strong="H1961"\w* food \w to|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w animals|strong="H2416"\w* \w of|strong="H7704"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*, \w and|strong="H7704"\w* \w were|strong="H1961"\w* \w scattered|strong="H6327"\w*. +\v 6 \w My|strong="H3605"\w* \w sheep|strong="H6629"\w* \w wandered|strong="H7686"\w* \w through|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w* \w and|strong="H6629"\w* \w on|strong="H5921"\w* \w every|strong="H3605"\w* \w high|strong="H7311"\w* \w hill|strong="H2022"\w*. Yes, \w my|strong="H3605"\w* \w sheep|strong="H6629"\w* \w were|strong="H2022"\w* \w scattered|strong="H6327"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* earth. \w There|strong="H2022"\w* \w was|strong="H6629"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w who|strong="H3605"\w* \w searched|strong="H1245"\w* \w or|strong="H1875"\w* \w sought|strong="H1245"\w*.” +\p +\v 7 “‘\w Therefore|strong="H3651"\w*, \w you|strong="H3651"\w* \w shepherds|strong="H7462"\w*, \w hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*: +\v 8 “\w As|strong="H1961"\w* \w I|strong="H3282"\w* \w live|strong="H2416"\w*,” \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, “\w surely|strong="H1961"\w* \w because|strong="H3282"\w* \w my|strong="H3605"\w* \w sheep|strong="H6629"\w* \w became|strong="H1961"\w* \w a|strong="H3068"\w* prey, \w and|strong="H6629"\w* \w my|strong="H3605"\w* \w sheep|strong="H6629"\w* \w became|strong="H1961"\w* food \w to|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w animals|strong="H2416"\w* \w of|strong="H7704"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*, \w because|strong="H3282"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w shepherd|strong="H7462"\w*, \w and|strong="H6629"\w* \w my|strong="H3605"\w* \w shepherds|strong="H7462"\w* didn’t \w search|strong="H1875"\w* \w for|strong="H3605"\w* \w my|strong="H3605"\w* \w sheep|strong="H6629"\w*, \w but|strong="H3808"\w* \w the|strong="H3605"\w* \w shepherds|strong="H7462"\w* \w fed|strong="H7462"\w* \w themselves|strong="H7462"\w*, \w and|strong="H6629"\w* didn’t \w feed|strong="H7462"\w* \w my|strong="H3605"\w* \w sheep|strong="H6629"\w*, +\v 9 \w therefore|strong="H3651"\w*, \w you|strong="H3651"\w* \w shepherds|strong="H7462"\w*, \w hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*!” +\v 10 \w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H1961"\w* \w against|strong="H3027"\w* \w the|strong="H3069"\w* \w shepherds|strong="H7462"\w*. \w I|strong="H2005"\w* \w will|strong="H1961"\w* \w require|strong="H1875"\w* \w my|strong="H1961"\w* \w sheep|strong="H6629"\w* \w at|strong="H1961"\w* \w their|strong="H5337"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w cause|strong="H6310"\w* \w them|strong="H3027"\w* \w to|strong="H1961"\w* \w cease|strong="H7673"\w* \w from|strong="H3027"\w* \w feeding|strong="H7462"\w* \w the|strong="H3069"\w* \w sheep|strong="H6629"\w*. \w The|strong="H3069"\w* \w shepherds|strong="H7462"\w* won’t \w feed|strong="H7462"\w* \w themselves|strong="H7462"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*. \w I|strong="H2005"\w* \w will|strong="H1961"\w* \w deliver|strong="H5337"\w* \w my|strong="H1961"\w* \w sheep|strong="H6629"\w* \w from|strong="H3027"\w* \w their|strong="H5337"\w* \w mouth|strong="H6310"\w*, \w that|strong="H3027"\w* \w they|strong="H3808"\w* \w may|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* food \w for|strong="H3027"\w* \w them|strong="H3027"\w*.” +\p +\v 11 “‘\w For|strong="H3588"\w* \w the|strong="H3588"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Behold|strong="H2005"\w*, \w I|strong="H3588"\w* myself, \w even|strong="H3588"\w* \w I|strong="H3588"\w*, \w will|strong="H3069"\w* \w search|strong="H1875"\w* \w for|strong="H3588"\w* \w my|strong="H3588"\w* \w sheep|strong="H6629"\w*, \w and|strong="H6629"\w* \w will|strong="H3069"\w* \w seek|strong="H1875"\w* \w them|strong="H3588"\w* \w out|strong="H1875"\w*. +\v 12 \w As|strong="H3117"\w* \w a|strong="H3068"\w* \w shepherd|strong="H7462"\w* \w seeks|strong="H1243"\w* \w out|strong="H5337"\w* \w his|strong="H3605"\w* \w flock|strong="H6629"\w* \w in|strong="H3117"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H3605"\w* \w he|strong="H3117"\w* \w is|strong="H3117"\w* \w among|strong="H8432"\w* \w his|strong="H3605"\w* \w sheep|strong="H6629"\w* \w that|strong="H3605"\w* \w are|strong="H3117"\w* \w scattered|strong="H6327"\w* \w abroad|strong="H6327"\w*, \w so|strong="H3651"\w* \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w seek|strong="H1239"\w* \w out|strong="H5337"\w* \w my|strong="H3605"\w* \w sheep|strong="H6629"\w*. \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w deliver|strong="H5337"\w* \w them|strong="H8432"\w* \w out|strong="H5337"\w* \w of|strong="H3117"\w* \w all|strong="H3605"\w* \w places|strong="H4725"\w* \w where|strong="H8033"\w* \w they|strong="H3117"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w scattered|strong="H6327"\w* \w in|strong="H3117"\w* \w the|strong="H3605"\w* \w cloudy|strong="H6051"\w* \w and|strong="H3117"\w* \w dark|strong="H6205"\w* \w day|strong="H3117"\w*. +\v 13 \w I|strong="H3478"\w* \w will|strong="H5971"\w* \w bring|strong="H3318"\w* \w them|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w*, \w and|strong="H3478"\w* \w gather|strong="H6908"\w* \w them|strong="H3318"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* countries, \w and|strong="H3478"\w* \w will|strong="H5971"\w* \w bring|strong="H3318"\w* \w them|strong="H3318"\w* \w into|strong="H3318"\w* \w their|strong="H3605"\w* \w own|strong="H5971"\w* land. \w I|strong="H3478"\w* \w will|strong="H5971"\w* \w feed|strong="H7462"\w* \w them|strong="H3318"\w* \w on|strong="H3318"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w* \w of|strong="H2022"\w* \w Israel|strong="H3478"\w*, \w by|strong="H3318"\w* \w the|strong="H3605"\w* watercourses, \w and|strong="H3478"\w* \w in|strong="H3478"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabited|strong="H4186"\w* \w places|strong="H4186"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w country|strong="H2022"\w*. +\v 14 \w I|strong="H3478"\w* \w will|strong="H1961"\w* \w feed|strong="H7462"\w* \w them|strong="H1961"\w* \w with|strong="H3478"\w* \w good|strong="H2896"\w* \w pasture|strong="H4829"\w*, \w and|strong="H3478"\w* \w their|strong="H1961"\w* \w fold|strong="H5116"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w on|strong="H1961"\w* \w the|strong="H1961"\w* \w mountains|strong="H2022"\w* \w of|strong="H2022"\w* \w the|strong="H1961"\w* \w height|strong="H4791"\w* \w of|strong="H2022"\w* \w Israel|strong="H3478"\w*. \w There|strong="H8033"\w* \w they|strong="H8033"\w* \w will|strong="H1961"\w* \w lie|strong="H7257"\w* \w down|strong="H7257"\w* \w in|strong="H3478"\w* \w a|strong="H3068"\w* \w good|strong="H2896"\w* \w fold|strong="H5116"\w*. \w They|strong="H8033"\w* \w will|strong="H1961"\w* \w feed|strong="H7462"\w* \w on|strong="H1961"\w* \w rich|strong="H8082"\w* \w pasture|strong="H4829"\w* \w on|strong="H1961"\w* \w the|strong="H1961"\w* \w mountains|strong="H2022"\w* \w of|strong="H2022"\w* \w Israel|strong="H3478"\w*. +\v 15 \w I|strong="H5002"\w* myself \w will|strong="H3069"\w* \w be|strong="H3069"\w* \w the|strong="H5002"\w* \w shepherd|strong="H7462"\w* \w of|strong="H6629"\w* \w my|strong="H7462"\w* \w sheep|strong="H6629"\w*, \w and|strong="H6629"\w* \w I|strong="H5002"\w* \w will|strong="H3069"\w* cause \w them|strong="H7462"\w* \w to|strong="H6629"\w* \w lie|strong="H7257"\w* \w down|strong="H7257"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\v 16 “\w I|strong="H7665"\w* \w will|strong="H7725"\w* \w seek|strong="H1245"\w* \w that|strong="H7725"\w* which \w was|strong="H2389"\w* lost, \w and|strong="H7725"\w* \w will|strong="H7725"\w* \w bring|strong="H7725"\w* \w back|strong="H7725"\w* \w that|strong="H7725"\w* which \w was|strong="H2389"\w* \w driven|strong="H5080"\w* \w away|strong="H7725"\w*, \w and|strong="H7725"\w* \w will|strong="H7725"\w* \w bind|strong="H2280"\w* \w up|strong="H2280"\w* \w that|strong="H7725"\w* which \w was|strong="H2389"\w* \w broken|strong="H7665"\w*, \w and|strong="H7725"\w* \w will|strong="H7725"\w* \w strengthen|strong="H2388"\w* \w that|strong="H7725"\w* which \w was|strong="H2389"\w* \w sick|strong="H2470"\w*; \w but|strong="H2388"\w* \w I|strong="H7665"\w* \w will|strong="H7725"\w* \w destroy|strong="H8045"\w* \w the|strong="H7725"\w* \w fat|strong="H8082"\w* \w and|strong="H7725"\w* \w the|strong="H7725"\w* \w strong|strong="H2388"\w*. \w I|strong="H7665"\w* \w will|strong="H7725"\w* \w feed|strong="H7462"\w* \w them|strong="H7725"\w* \w in|strong="H7725"\w* \w justice|strong="H4941"\w*.”’ +\p +\v 17 “As \w for|strong="H8199"\w* you, \w O|strong="H3068"\w* \w my|strong="H8199"\w* \w flock|strong="H6629"\w*, \w the|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w judge|strong="H8199"\w* \w between|strong="H8199"\w* \w sheep|strong="H6629"\w* \w and|strong="H6629"\w* \w sheep|strong="H6629"\w*, \w the|strong="H3069"\w* \w rams|strong="H6260"\w* \w and|strong="H6629"\w* \w the|strong="H3069"\w* \w male|strong="H6260"\w* \w goats|strong="H6260"\w*. +\v 18 Does \w it|strong="H7429"\w* seem \w a|strong="H3068"\w* \w small|strong="H4592"\w* \w thing|strong="H4592"\w* \w to|strong="H4325"\w* \w you|strong="H4480"\w* \w to|strong="H4325"\w* \w have|strong="H7462"\w* \w fed|strong="H7462"\w* \w on|strong="H7462"\w* \w the|strong="H4480"\w* \w good|strong="H2896"\w* \w pasture|strong="H4829"\w*, \w but|strong="H3498"\w* \w you|strong="H4480"\w* must \w tread|strong="H7429"\w* \w down|strong="H7429"\w* \w with|strong="H4325"\w* \w your|strong="H4480"\w* \w feet|strong="H7272"\w* \w the|strong="H4480"\w* \w residue|strong="H3499"\w* \w of|strong="H4325"\w* \w your|strong="H4480"\w* \w pasture|strong="H4829"\w*? \w And|strong="H2896"\w* \w to|strong="H4325"\w* \w have|strong="H7462"\w* \w drunk|strong="H8354"\w* \w of|strong="H4325"\w* \w the|strong="H4480"\w* \w clear|strong="H4950"\w* \w waters|strong="H4325"\w*, \w but|strong="H3498"\w* must \w you|strong="H4480"\w* \w foul|strong="H7515"\w* \w the|strong="H4480"\w* \w residue|strong="H3499"\w* \w with|strong="H4325"\w* \w your|strong="H4480"\w* \w feet|strong="H7272"\w*? +\v 19 \w As|strong="H7272"\w* \w for|strong="H7272"\w* \w my|strong="H7462"\w* \w sheep|strong="H6629"\w*, \w they|strong="H7272"\w* \w eat|strong="H7462"\w* \w that|strong="H7462"\w* which \w you|strong="H4833"\w* \w have|strong="H7462"\w* \w trodden|strong="H4823"\w* \w with|strong="H6629"\w* \w your|strong="H8354"\w* \w feet|strong="H7272"\w*, \w and|strong="H6629"\w* \w they|strong="H7272"\w* \w drink|strong="H8354"\w* \w that|strong="H7462"\w* which \w you|strong="H4833"\w* \w have|strong="H7462"\w* \w fouled|strong="H4833"\w* \w with|strong="H6629"\w* \w your|strong="H8354"\w* \w feet|strong="H7272"\w*.’ +\p +\v 20 “\w Therefore|strong="H3651"\w* \w the|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w to|strong="H3069"\w* them: ‘\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w*, \w even|strong="H3651"\w* \w I|strong="H2005"\w*, \w will|strong="H3069"\w* \w judge|strong="H8199"\w* \w between|strong="H8199"\w* \w the|strong="H3069"\w* \w fat|strong="H1274"\w* \w sheep|strong="H7716"\w* \w and|strong="H7716"\w* \w the|strong="H3069"\w* \w lean|strong="H7330"\w* \w sheep|strong="H7716"\w*. +\v 21 \w Because|strong="H3282"\w* \w you|strong="H3605"\w* \w thrust|strong="H1920"\w* \w with|strong="H3605"\w* \w side|strong="H3802"\w* \w and|strong="H6654"\w* \w with|strong="H3605"\w* \w shoulder|strong="H3802"\w*, \w and|strong="H6654"\w* \w push|strong="H5055"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w diseased|strong="H2470"\w* \w with|strong="H3605"\w* \w your|strong="H3605"\w* \w horns|strong="H7161"\w*, \w until|strong="H5704"\w* \w you|strong="H3605"\w* \w have|strong="H3605"\w* \w scattered|strong="H6327"\w* \w them|strong="H6327"\w* \w abroad|strong="H2351"\w*, +\v 22 \w therefore|strong="H1961"\w* \w I|strong="H3808"\w* \w will|strong="H1961"\w* \w save|strong="H3467"\w* \w my|strong="H1961"\w* \w flock|strong="H6629"\w*, \w and|strong="H6629"\w* \w they|strong="H3808"\w* \w will|strong="H1961"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* prey. \w I|strong="H3808"\w* \w will|strong="H1961"\w* \w judge|strong="H8199"\w* \w between|strong="H8199"\w* \w sheep|strong="H6629"\w* \w and|strong="H6629"\w* \w sheep|strong="H6629"\w*. +\v 23 \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w set|strong="H6965"\w* \w up|strong="H6965"\w* \w one|strong="H1931"\w* \w shepherd|strong="H7462"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w*, \w and|strong="H6965"\w* \w he|strong="H1931"\w* \w will|strong="H1961"\w* \w feed|strong="H7462"\w* \w them|strong="H5921"\w*, \w even|strong="H5921"\w* \w my|strong="H1732"\w* \w servant|strong="H5650"\w* \w David|strong="H1732"\w*. \w He|strong="H1931"\w* \w will|strong="H1961"\w* \w feed|strong="H7462"\w* \w them|strong="H5921"\w*, \w and|strong="H6965"\w* \w he|strong="H1931"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w their|strong="H5921"\w* \w shepherd|strong="H7462"\w*. +\v 24 \w I|strong="H5650"\w*, \w Yahweh|strong="H3068"\w*, \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w my|strong="H3068"\w* \w servant|strong="H5650"\w* \w David|strong="H1732"\w* \w prince|strong="H5387"\w* \w among|strong="H8432"\w* \w them|strong="H8432"\w*. \w I|strong="H5650"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H1961"\w* \w spoken|strong="H1696"\w* \w it|strong="H8432"\w*. +\p +\v 25 “‘\w I|strong="H3772"\w* \w will|strong="H3293"\w* \w make|strong="H3772"\w* \w with|strong="H1285"\w* \w them|strong="H3427"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w of|strong="H3427"\w* \w peace|strong="H7965"\w*, \w and|strong="H1285"\w* \w will|strong="H3293"\w* cause \w evil|strong="H7451"\w* \w animals|strong="H2416"\w* \w to|strong="H3427"\w* \w cease|strong="H7673"\w* \w out|strong="H4480"\w* \w of|strong="H3427"\w* \w the|strong="H4480"\w* land. \w They|strong="H1285"\w* \w will|strong="H3293"\w* \w dwell|strong="H3427"\w* securely \w in|strong="H3427"\w* \w the|strong="H4480"\w* \w wilderness|strong="H4057"\w* \w and|strong="H1285"\w* \w sleep|strong="H3462"\w* \w in|strong="H3427"\w* \w the|strong="H4480"\w* \w woods|strong="H3293"\w*. +\v 26 \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w make|strong="H5414"\w* \w them|strong="H5414"\w* \w and|strong="H3381"\w* \w the|strong="H5414"\w* \w places|strong="H5439"\w* \w around|strong="H5439"\w* \w my|strong="H5414"\w* \w hill|strong="H1389"\w* \w a|strong="H3068"\w* \w blessing|strong="H1293"\w*. \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w cause|strong="H5414"\w* \w the|strong="H5414"\w* \w shower|strong="H1653"\w* \w to|strong="H3381"\w* \w come|strong="H1961"\w* \w down|strong="H3381"\w* \w in|strong="H5414"\w* \w its|strong="H5414"\w* \w season|strong="H6256"\w*. \w There|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w showers|strong="H1653"\w* \w of|strong="H6256"\w* \w blessing|strong="H1293"\w*. +\v 27 \w The|strong="H5921"\w* \w tree|strong="H6086"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w field|strong="H7704"\w* \w will|strong="H3068"\w* \w yield|strong="H5414"\w* \w its|strong="H5414"\w* \w fruit|strong="H6529"\w*, \w and|strong="H3068"\w* \w the|strong="H5921"\w* earth \w will|strong="H3068"\w* \w yield|strong="H5414"\w* \w its|strong="H5414"\w* \w increase|strong="H2981"\w*, \w and|strong="H3068"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* secure \w in|strong="H5921"\w* \w their|strong="H3068"\w* \w land|strong="H7704"\w*. \w Then|strong="H1961"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w*, \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w broken|strong="H7665"\w* \w the|strong="H5921"\w* \w bars|strong="H4133"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w yoke|strong="H5923"\w*, \w and|strong="H3068"\w* \w have|strong="H1961"\w* \w delivered|strong="H5414"\w* \w them|strong="H5414"\w* \w out|strong="H5414"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w those|strong="H5921"\w* \w who|strong="H3068"\w* \w made|strong="H5414"\w* \w slaves|strong="H5647"\w* \w of|strong="H3068"\w* \w them|strong="H5414"\w*. +\v 28 \w They|strong="H3808"\w* \w will|strong="H1961"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* prey \w to|strong="H1961"\w* \w the|strong="H1961"\w* \w nations|strong="H1471"\w*, \w neither|strong="H3808"\w* \w will|strong="H1961"\w* \w the|strong="H1961"\w* \w animals|strong="H2416"\w* \w of|strong="H3427"\w* \w the|strong="H1961"\w* earth devour \w them|strong="H1961"\w*; \w but|strong="H3808"\w* \w they|strong="H3808"\w* \w will|strong="H1961"\w* \w dwell|strong="H3427"\w* securely, \w and|strong="H1471"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w will|strong="H1961"\w* \w make|strong="H2729"\w* \w them|strong="H1961"\w* \w afraid|strong="H2729"\w*. +\v 29 \w I|strong="H3808"\w* \w will|strong="H1961"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w to|strong="H1961"\w* \w them|strong="H5375"\w* \w a|strong="H3068"\w* \w plantation|strong="H4302"\w* \w for|strong="H8034"\w* \w renown|strong="H8034"\w*, \w and|strong="H6965"\w* \w they|strong="H3808"\w* \w will|strong="H1961"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w be|strong="H1961"\w* consumed \w with|strong="H6965"\w* \w famine|strong="H7458"\w* \w in|strong="H8034"\w* \w the|strong="H5375"\w* land, \w and|strong="H6965"\w* \w not|strong="H3808"\w* \w bear|strong="H5375"\w* \w the|strong="H5375"\w* \w shame|strong="H3639"\w* \w of|strong="H8034"\w* \w the|strong="H5375"\w* \w nations|strong="H1471"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*. +\v 30 \w They|strong="H1992"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w their|strong="H3068"\w* \w God|strong="H3068"\w* \w am|strong="H3068"\w* \w with|strong="H1004"\w* \w them|strong="H1992"\w*, \w and|strong="H3478"\w* \w that|strong="H3588"\w* \w they|strong="H1992"\w*, \w the|strong="H5002"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w are|strong="H1992"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w*, \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 31 You my \w sheep|strong="H6629"\w*, \w the|strong="H5002"\w* \w sheep|strong="H6629"\w* \w of|strong="H6629"\w* my \w pasture|strong="H4830"\w*, are men, \w and|strong="H6629"\w* \w I|strong="H5002"\w* am \w your|strong="H6629"\w* \w God|strong="H3069"\w*,’ \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*.” +\c 35 +\p +\v 1 \w Moreover|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w set|strong="H7760"\w* \w your|strong="H5921"\w* \w face|strong="H6440"\w* \w against|strong="H5921"\w* \w Mount|strong="H2022"\w* \w Seir|strong="H8165"\w*, \w and|strong="H1121"\w* \w prophesy|strong="H5012"\w* \w against|strong="H5921"\w* \w it|strong="H7760"\w*, +\v 3 \w and|strong="H3027"\w* tell \w it|strong="H5414"\w*, ‘\w The|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H2005"\w* \w against|strong="H5921"\w* \w you|strong="H5414"\w*, \w Mount|strong="H2022"\w* \w Seir|strong="H8165"\w*, \w and|strong="H3027"\w* \w I|strong="H2005"\w* \w will|strong="H3027"\w* \w stretch|strong="H5186"\w* \w out|strong="H5186"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w* \w against|strong="H5921"\w* \w you|strong="H5414"\w*. \w I|strong="H2005"\w* \w will|strong="H3027"\w* \w make|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w desolation|strong="H8077"\w* \w and|strong="H3027"\w* \w an|strong="H5414"\w* \w astonishment|strong="H4923"\w*. +\v 4 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w lay|strong="H7760"\w* \w your|strong="H3068"\w* \w cities|strong="H5892"\w* \w waste|strong="H2723"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w desolate|strong="H8077"\w*. \w Then|strong="H1961"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 5 “‘“\w Because|strong="H5921"\w* \w you|strong="H5921"\w* \w have|strong="H1961"\w* \w had|strong="H1961"\w* \w a|strong="H3068"\w* \w perpetual|strong="H5769"\w* hostility, \w and|strong="H1121"\w* \w have|strong="H1961"\w* \w given|strong="H3027"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w power|strong="H3027"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w time|strong="H6256"\w* \w of|strong="H1121"\w* \w their|strong="H5921"\w* calamity, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w time|strong="H6256"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w iniquity|strong="H5771"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w end|strong="H7093"\w*, +\v 6 \w therefore|strong="H3651"\w*, \w as|strong="H6213"\w* \w I|strong="H3588"\w* \w live|strong="H2416"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, “\w I|strong="H3588"\w* \w will|strong="H3808"\w* \w prepare|strong="H6213"\w* \w you|strong="H3588"\w* \w for|strong="H3588"\w* \w blood|strong="H1818"\w*, \w and|strong="H6213"\w* \w blood|strong="H1818"\w* \w will|strong="H3808"\w* \w pursue|strong="H7291"\w* \w you|strong="H3588"\w*. \w Since|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* \w not|strong="H3808"\w* \w hated|strong="H8130"\w* \w blood|strong="H1818"\w*, \w therefore|strong="H3651"\w* \w blood|strong="H1818"\w* \w will|strong="H3808"\w* \w pursue|strong="H7291"\w* \w you|strong="H3588"\w*. +\v 7 Thus \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w make|strong="H5414"\w* \w Mount|strong="H2022"\w* \w Seir|strong="H8165"\w* \w an|strong="H5414"\w* astonishment \w and|strong="H7725"\w* \w a|strong="H3068"\w* \w desolation|strong="H8077"\w*. \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H4480"\w* \w it|strong="H5414"\w* \w him|strong="H5414"\w* who \w passes|strong="H5674"\w* \w through|strong="H5674"\w* \w and|strong="H7725"\w* \w him|strong="H5414"\w* who \w returns|strong="H7725"\w*. +\v 8 \w I|strong="H3605"\w* \w will|strong="H2719"\w* \w fill|strong="H4390"\w* \w its|strong="H3605"\w* \w mountains|strong="H2022"\w* \w with|strong="H4390"\w* \w its|strong="H3605"\w* \w slain|strong="H2491"\w*. \w The|strong="H3605"\w* \w slain|strong="H2491"\w* \w with|strong="H4390"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w* \w will|strong="H2719"\w* \w fall|strong="H5307"\w* \w in|strong="H5307"\w* \w your|strong="H3605"\w* \w hills|strong="H1389"\w* \w and|strong="H2719"\w* \w in|strong="H5307"\w* \w your|strong="H3605"\w* \w valleys|strong="H1516"\w* \w and|strong="H2719"\w* \w in|strong="H5307"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* watercourses. +\v 9 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w make|strong="H5414"\w* \w you|strong="H3588"\w* \w a|strong="H3068"\w* \w perpetual|strong="H5769"\w* \w desolation|strong="H8077"\w*, \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w cities|strong="H5892"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w inhabited|strong="H3427"\w*. \w Then|strong="H5414"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 10 “‘“\w Because|strong="H3282"\w* \w you|strong="H3282"\w* \w have|strong="H1961"\w* said, ‘\w These|strong="H8147"\w* \w two|strong="H8147"\w* \w nations|strong="H1471"\w* \w and|strong="H3068"\w* \w these|strong="H8147"\w* \w two|strong="H8147"\w* countries \w will|strong="H3068"\w* \w be|strong="H1961"\w* mine, \w and|strong="H3068"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w possess|strong="H3423"\w* \w it|strong="H8033"\w*,’ although \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w there|strong="H8033"\w*, +\v 11 \w therefore|strong="H3651"\w*, \w as|strong="H6213"\w* \w I|strong="H3651"\w* \w live|strong="H2416"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, “\w I|strong="H3651"\w* \w will|strong="H3069"\w* \w do|strong="H6213"\w* according \w to|strong="H6213"\w* \w your|strong="H3045"\w* \w anger|strong="H7068"\w*, \w and|strong="H6213"\w* according \w to|strong="H6213"\w* \w your|strong="H3045"\w* \w envy|strong="H7068"\w* \w which|strong="H2416"\w* \w you|strong="H6213"\w* \w have|strong="H3045"\w* \w shown|strong="H6213"\w* \w out|strong="H6213"\w* \w of|strong="H3069"\w* \w your|strong="H3045"\w* \w hatred|strong="H8135"\w* \w against|strong="H6213"\w* \w them|strong="H6213"\w*; \w and|strong="H6213"\w* \w I|strong="H3651"\w* \w will|strong="H3069"\w* \w make|strong="H6213"\w* \w myself|strong="H3045"\w* \w known|strong="H3045"\w* \w among|strong="H8199"\w* \w them|strong="H6213"\w* \w when|strong="H6213"\w* \w I|strong="H3651"\w* \w judge|strong="H8199"\w* \w you|strong="H6213"\w*. +\v 12 \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* insults \w which|strong="H3068"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w spoken|strong="H8085"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, saying, ‘\w They|strong="H3588"\w* \w have|strong="H3068"\w* \w been|strong="H3605"\w* \w laid|strong="H5414"\w* \w desolate|strong="H8074"\w*. \w They|strong="H3588"\w* \w have|strong="H3068"\w* \w been|strong="H3605"\w* \w given|strong="H5414"\w* \w to|strong="H3478"\w* \w us|strong="H5414"\w* \w to|strong="H3478"\w* devour.’ +\v 13 \w You|strong="H5921"\w* \w have|strong="H1697"\w* \w magnified|strong="H1431"\w* \w yourselves|strong="H1431"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w* \w with|strong="H5921"\w* \w your|strong="H5921"\w* \w mouth|strong="H6310"\w*, \w and|strong="H8085"\w* \w have|strong="H1697"\w* \w multiplied|strong="H6280"\w* \w your|strong="H5921"\w* \w words|strong="H1697"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*. \w I|strong="H5921"\w* \w have|strong="H1697"\w* \w heard|strong="H8085"\w* \w it|strong="H5921"\w*.” +\v 14 \w The|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w When|strong="H6213"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* earth \w rejoices|strong="H8055"\w*, \w I|strong="H3541"\w* \w will|strong="H3069"\w* \w make|strong="H6213"\w* \w you|strong="H3605"\w* \w desolate|strong="H8077"\w*. +\v 15 \w As|strong="H1961"\w* \w you|strong="H3588"\w* \w rejoiced|strong="H8057"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w inheritance|strong="H5159"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w because|strong="H3588"\w* \w it|strong="H5921"\w* \w was|strong="H3068"\w* \w desolate|strong="H8074"\w*, \w so|strong="H3651"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w to|strong="H3478"\w* \w you|strong="H3588"\w*. \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w desolate|strong="H8074"\w*, \w Mount|strong="H2022"\w* \w Seir|strong="H8165"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* Edom, \w even|strong="H3588"\w* \w all|strong="H3605"\w* \w of|strong="H1004"\w* \w it|strong="H5921"\w*. \w Then|strong="H1961"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w*.’” +\c 36 +\p +\v 1 \w You|strong="H2022"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w prophesy|strong="H5012"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w mountains|strong="H2022"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w and|strong="H1121"\w* \w say|strong="H1697"\w*, “\w You|strong="H2022"\w* \w mountains|strong="H2022"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*. +\v 2 \w The|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Because|strong="H5921"\w* \w the|strong="H5921"\w* enemy \w has|strong="H1961"\w* said \w against|strong="H5921"\w* \w you|strong="H5921"\w*, “\w Aha|strong="H1889"\w*!” \w and|strong="H5769"\w*, “\w The|strong="H5921"\w* \w ancient|strong="H5769"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w are|strong="H1961"\w* ours \w in|strong="H5921"\w* \w possession|strong="H4181"\w*!”’ +\v 3 \w therefore|strong="H3651"\w* \w prophesy|strong="H5012"\w*, \w and|strong="H5971"\w* say, ‘\w The|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Because|strong="H5921"\w*, \w even|strong="H3651"\w* \w because|strong="H5921"\w* \w they|strong="H3651"\w* \w have|strong="H1961"\w* \w made|strong="H8074"\w* \w you|strong="H5921"\w* \w desolate|strong="H8074"\w*, \w and|strong="H5971"\w* swallowed \w you|strong="H5921"\w* \w up|strong="H5927"\w* \w on|strong="H5921"\w* \w every|strong="H5439"\w* \w side|strong="H5439"\w*, \w that|strong="H5971"\w* \w you|strong="H5921"\w* \w might|strong="H5971"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w possession|strong="H4181"\w* \w to|strong="H5927"\w* \w the|strong="H5921"\w* \w residue|strong="H7611"\w* \w of|strong="H7611"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*, \w and|strong="H5971"\w* \w you|strong="H5921"\w* \w are|strong="H5971"\w* \w taken|strong="H5927"\w* \w up|strong="H5927"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w lips|strong="H8193"\w* \w of|strong="H7611"\w* \w talkers|strong="H3956"\w*, \w and|strong="H5971"\w* \w the|strong="H5921"\w* \w evil|strong="H1681"\w* \w report|strong="H1681"\w* \w of|strong="H7611"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w*;” +\v 4 \w therefore|strong="H3651"\w*, \w you|strong="H3651"\w* \w mountains|strong="H2022"\w* \w of|strong="H1697"\w* \w Israel|strong="H3478"\w*, \w hear|strong="H8085"\w* \w the|strong="H8085"\w* \w word|strong="H1697"\w* \w of|strong="H1697"\w* \w the|strong="H8085"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*: \w The|strong="H8085"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w mountains|strong="H2022"\w* \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w hills|strong="H1389"\w*, \w to|strong="H3478"\w* \w the|strong="H8085"\w* watercourses \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w valleys|strong="H1516"\w*, \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w desolate|strong="H8076"\w* \w wastes|strong="H2723"\w* \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w cities|strong="H5892"\w* \w that|strong="H8085"\w* \w are|strong="H1471"\w* \w forsaken|strong="H5800"\w*, \w which|strong="H1471"\w* \w have|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* prey \w and|strong="H3478"\w* \w derision|strong="H3933"\w* \w to|strong="H3478"\w* \w the|strong="H8085"\w* \w residue|strong="H7611"\w* \w of|strong="H1697"\w* \w the|strong="H8085"\w* \w nations|strong="H1471"\w* \w that|strong="H8085"\w* \w are|strong="H1471"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*; +\v 5 \w therefore|strong="H3651"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Surely|strong="H5414"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* fire \w of|strong="H7611"\w* \w my|strong="H5414"\w* \w jealousy|strong="H7068"\w* \w I|strong="H5414"\w* \w have|strong="H1471"\w* \w spoken|strong="H1696"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* \w residue|strong="H7611"\w* \w of|strong="H7611"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*, \w and|strong="H1471"\w* \w against|strong="H5921"\w* \w all|strong="H3605"\w* Edom, \w that|strong="H3605"\w* \w have|strong="H1471"\w* \w appointed|strong="H5414"\w* \w my|strong="H5414"\w* land \w to|strong="H1696"\w* \w themselves|strong="H5315"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w possession|strong="H4181"\w* \w with|strong="H1696"\w* \w the|strong="H3605"\w* \w joy|strong="H8057"\w* \w of|strong="H7611"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w heart|strong="H3824"\w*, \w with|strong="H1696"\w* \w despite|strong="H5921"\w* \w of|strong="H7611"\w* \w soul|strong="H5315"\w*, \w to|strong="H1696"\w* \w cast|strong="H5414"\w* \w it|strong="H5414"\w* \w out|strong="H5414"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* prey.”’ +\v 6 \w Therefore|strong="H3651"\w* \w prophesy|strong="H5012"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H2022"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w tell|strong="H1696"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w*, \w the|strong="H5921"\w* \w hills|strong="H1389"\w*, \w the|strong="H5921"\w* watercourses \w and|strong="H3478"\w* \w the|strong="H5921"\w* \w valleys|strong="H1516"\w*, ‘\w The|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w have|strong="H1471"\w* \w spoken|strong="H1696"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* \w jealousy|strong="H7068"\w* \w and|strong="H3478"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* \w wrath|strong="H2534"\w*, \w because|strong="H5921"\w* \w you|strong="H5921"\w* \w have|strong="H1471"\w* \w borne|strong="H5375"\w* \w the|strong="H5921"\w* \w shame|strong="H3639"\w* \w of|strong="H2022"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*.” +\v 7 \w Therefore|strong="H3651"\w* \w the|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w I|strong="H3541"\w* \w have|strong="H1471"\w* \w sworn|strong="H3027"\w*, ‘\w Surely|strong="H3651"\w* \w the|strong="H3069"\w* \w nations|strong="H1471"\w* \w that|strong="H1471"\w* \w are|strong="H1992"\w* \w around|strong="H5439"\w* \w you|strong="H3808"\w* \w will|strong="H1471"\w* \w bear|strong="H5375"\w* \w their|strong="H5375"\w* \w shame|strong="H3639"\w*.’ +\p +\v 8 “‘“\w But|strong="H3588"\w* \w you|strong="H3588"\w*, \w mountains|strong="H2022"\w* \w of|strong="H2022"\w* \w Israel|strong="H3478"\w*, \w you|strong="H3588"\w* \w shall|strong="H5971"\w* shoot \w out|strong="H5414"\w* \w your|strong="H5414"\w* \w branches|strong="H6057"\w* \w and|strong="H3478"\w* \w yield|strong="H5414"\w* \w your|strong="H5414"\w* \w fruit|strong="H6529"\w* \w to|strong="H3478"\w* \w my|strong="H5414"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H5971"\w* \w at|strong="H3478"\w* \w hand|strong="H5414"\w* \w to|strong="H3478"\w* \w come|strong="H7126"\w*. +\v 9 \w For|strong="H3588"\w*, \w behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w am|strong="H2005"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*, \w and|strong="H6437"\w* \w I|strong="H3588"\w* \w will|strong="H5647"\w* come \w to|strong="H6437"\w* \w you|strong="H3588"\w*, \w and|strong="H6437"\w* \w you|strong="H3588"\w* \w will|strong="H5647"\w* \w be|strong="H5647"\w* \w tilled|strong="H5647"\w* \w and|strong="H6437"\w* \w sown|strong="H2232"\w*. +\v 10 \w I|strong="H5921"\w* \w will|strong="H3478"\w* \w multiply|strong="H7235"\w* \w men|strong="H3605"\w* \w on|strong="H5921"\w* \w you|strong="H3605"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w even|strong="H1129"\w* \w all|strong="H3605"\w* \w of|strong="H1004"\w* \w it|strong="H5921"\w*. \w The|strong="H3605"\w* \w cities|strong="H5892"\w* \w will|strong="H3478"\w* \w be|strong="H3478"\w* \w inhabited|strong="H3427"\w* \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w waste|strong="H2723"\w* \w places|strong="H2723"\w* \w will|strong="H3478"\w* \w be|strong="H3478"\w* \w built|strong="H1129"\w*. +\v 11 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w multiply|strong="H7235"\w* \w man|strong="H3045"\w* \w and|strong="H3068"\w* animal \w on|strong="H5921"\w* \w you|strong="H3588"\w*. \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w increase|strong="H7235"\w* \w and|strong="H3068"\w* \w be|strong="H3068"\w* \w fruitful|strong="H6509"\w*. \w I|strong="H3588"\w* \w will|strong="H3068"\w* cause \w you|strong="H3588"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w inhabited|strong="H3427"\w* \w as|strong="H3068"\w* \w you|strong="H3588"\w* \w were|strong="H3427"\w* \w before|strong="H5921"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w do|strong="H3068"\w* \w better|strong="H2895"\w* \w than|strong="H7235"\w* \w at|strong="H3427"\w* \w your|strong="H3068"\w* \w beginnings|strong="H7221"\w*. \w Then|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\v 12 Yes, \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w cause|strong="H5971"\w* \w men|strong="H5971"\w* \w to|strong="H3478"\w* \w walk|strong="H3212"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*, \w even|strong="H5750"\w* \w my|strong="H5921"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*. \w They|strong="H3808"\w* \w will|strong="H1961"\w* \w possess|strong="H3423"\w* \w you|strong="H5921"\w*, \w and|strong="H3478"\w* \w you|strong="H5921"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w their|strong="H5921"\w* \w inheritance|strong="H5159"\w*, \w and|strong="H3478"\w* \w you|strong="H5921"\w* \w will|strong="H1961"\w* \w never|strong="H3808"\w* \w again|strong="H5750"\w* \w bereave|strong="H7921"\w* \w them|strong="H5921"\w* \w of|strong="H5971"\w* \w their|strong="H5921"\w* \w children|strong="H7921"\w*.” +\p +\v 13 “‘\w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Because|strong="H3282"\w* \w they|strong="H3282"\w* say \w to|strong="H1961"\w* \w you|strong="H3282"\w*, ‘\w You|strong="H3282"\w* \w are|strong="H1471"\w* \w a|strong="H3068"\w* devourer \w of|strong="H3069"\w* men, \w and|strong="H1471"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w a|strong="H3068"\w* bereaver \w of|strong="H3069"\w* \w your|strong="H1961"\w* \w nation|strong="H1471"\w*;’ +\v 14 \w therefore|strong="H3651"\w* \w you|strong="H3808"\w* \w shall|strong="H1471"\w* devour men \w no|strong="H3808"\w* \w more|strong="H5750"\w*, \w and|strong="H1471"\w* \w not|strong="H3808"\w* \w bereave|strong="H3782"\w* \w your|strong="H3808"\w* \w nation|strong="H1471"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\v 15 “\w I|strong="H3808"\w* won’t \w let|strong="H3808"\w* \w you|strong="H3808"\w* \w hear|strong="H8085"\w* \w the|strong="H5002"\w* \w shame|strong="H3639"\w* \w of|strong="H5971"\w* \w the|strong="H5002"\w* \w nations|strong="H1471"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*. \w You|strong="H3808"\w* won’t \w bear|strong="H5375"\w* \w the|strong="H5002"\w* \w reproach|strong="H2781"\w* \w of|strong="H5971"\w* \w the|strong="H5002"\w* \w peoples|strong="H5971"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*, \w and|strong="H5971"\w* \w you|strong="H3808"\w* won’t \w cause|strong="H5971"\w* \w your|strong="H5375"\w* \w nation|strong="H1471"\w* \w to|strong="H8085"\w* \w stumble|strong="H3782"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*.’” +\p +\v 16 \w Moreover|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 17 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w when|strong="H1961"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w lived|strong="H3427"\w* \w in|strong="H3427"\w* \w their|strong="H6440"\w* \w own|strong="H1961"\w* \w land|strong="H6440"\w*, \w they|strong="H5921"\w* \w defiled|strong="H2930"\w* \w it|strong="H5921"\w* \w by|strong="H5921"\w* \w their|strong="H6440"\w* \w ways|strong="H1870"\w* \w and|strong="H1121"\w* \w by|strong="H5921"\w* \w their|strong="H6440"\w* \w deeds|strong="H5949"\w*. \w Their|strong="H6440"\w* \w way|strong="H1870"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w was|strong="H1961"\w* \w as|strong="H1961"\w* \w the|strong="H6440"\w* \w uncleanness|strong="H2932"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w woman|strong="H5079"\w* \w in|strong="H3427"\w* \w her|strong="H5921"\w* \w impurity|strong="H5079"\w*. +\v 18 \w Therefore|strong="H5921"\w* \w I|strong="H5921"\w* \w poured|strong="H8210"\w* \w out|strong="H8210"\w* \w my|strong="H5921"\w* \w wrath|strong="H2534"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w which|strong="H1818"\w* \w they|strong="H5921"\w* had \w poured|strong="H8210"\w* \w out|strong="H8210"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* land, \w and|strong="H1818"\w* \w because|strong="H5921"\w* \w they|strong="H5921"\w* had \w defiled|strong="H2930"\w* \w it|strong="H5921"\w* \w with|strong="H5921"\w* \w their|strong="H5921"\w* \w idols|strong="H1544"\w*. +\v 19 \w I|strong="H5949"\w* \w scattered|strong="H6327"\w* \w them|strong="H6327"\w* \w among|strong="H8199"\w* \w the|strong="H1870"\w* \w nations|strong="H1471"\w*, \w and|strong="H1870"\w* \w they|strong="H1870"\w* \w were|strong="H1471"\w* \w dispersed|strong="H6327"\w* \w through|strong="H1870"\w* \w the|strong="H1870"\w* countries. \w I|strong="H5949"\w* \w judged|strong="H8199"\w* \w them|strong="H6327"\w* according \w to|strong="H1870"\w* \w their|strong="H1870"\w* \w way|strong="H1870"\w* \w and|strong="H1870"\w* according \w to|strong="H1870"\w* \w their|strong="H1870"\w* \w deeds|strong="H5949"\w*. +\v 20 \w When|strong="H3318"\w* \w they|strong="H8033"\w* \w came|strong="H3318"\w* \w to|strong="H3318"\w* \w the|strong="H3068"\w* \w nations|strong="H1471"\w* \w where|strong="H8033"\w* \w they|strong="H8033"\w* \w went|strong="H3318"\w*, \w they|strong="H8033"\w* \w profaned|strong="H2490"\w* \w my|strong="H3068"\w* \w holy|strong="H6944"\w* \w name|strong="H8034"\w*, \w in|strong="H3068"\w* \w that|strong="H5971"\w* \w men|strong="H5971"\w* \w said|strong="H3318"\w* \w of|strong="H3068"\w* \w them|strong="H3318"\w*, ‘\w These|strong="H5971"\w* \w are|strong="H5971"\w* \w Yahweh|strong="H3068"\w*’s \w people|strong="H5971"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w left|strong="H3318"\w* \w his|strong="H3068"\w* land.’ +\v 21 \w But|strong="H5921"\w* \w I|strong="H5921"\w* \w had|strong="H3478"\w* \w respect|strong="H5921"\w* \w for|strong="H5921"\w* \w my|strong="H5921"\w* \w holy|strong="H6944"\w* \w name|strong="H8034"\w*, \w which|strong="H1471"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w had|strong="H3478"\w* \w profaned|strong="H2490"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w* \w where|strong="H8033"\w* \w they|strong="H8033"\w* \w went|strong="H3478"\w*. +\p +\v 22 “\w Therefore|strong="H3651"\w* tell \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, ‘\w The|strong="H3588"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w I|strong="H3588"\w* don’t \w do|strong="H6213"\w* \w this|strong="H3651"\w* \w for|strong="H3588"\w* \w your|strong="H6213"\w* \w sake|strong="H4616"\w*, \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w but|strong="H3588"\w* \w for|strong="H3588"\w* \w my|strong="H2490"\w* \w holy|strong="H6944"\w* \w name|strong="H8034"\w*, \w which|strong="H1471"\w* \w you|strong="H3588"\w* \w have|strong="H1471"\w* \w profaned|strong="H2490"\w* \w among|strong="H8034"\w* \w the|strong="H3588"\w* \w nations|strong="H1471"\w* \w where|strong="H8033"\w* \w you|strong="H3588"\w* \w went|strong="H3478"\w*. +\v 23 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w sanctify|strong="H6942"\w* \w my|strong="H3068"\w* \w great|strong="H1419"\w* \w name|strong="H8034"\w*, \w which|strong="H3068"\w* \w has|strong="H3068"\w* \w been|strong="H3068"\w* \w profaned|strong="H2490"\w* \w among|strong="H8432"\w* \w the|strong="H5002"\w* \w nations|strong="H1471"\w*, \w which|strong="H3068"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w profaned|strong="H2490"\w* \w among|strong="H8432"\w* \w them|strong="H8432"\w*. \w Then|strong="H3588"\w* \w the|strong="H5002"\w* \w nations|strong="H1471"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, “\w when|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* proven \w holy|strong="H6942"\w* \w in|strong="H3068"\w* \w you|strong="H3588"\w* \w before|strong="H5869"\w* \w their|strong="H3068"\w* \w eyes|strong="H5869"\w*. +\p +\v 24 “‘“\w For|strong="H3605"\w* \w I|strong="H4480"\w* \w will|strong="H1471"\w* \w take|strong="H3947"\w* \w you|strong="H3605"\w* \w from|strong="H4480"\w* \w among|strong="H4480"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w and|strong="H1471"\w* \w gather|strong="H6908"\w* \w you|strong="H3605"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* countries, \w and|strong="H1471"\w* \w will|strong="H1471"\w* \w bring|strong="H3947"\w* \w you|strong="H3605"\w* \w into|strong="H3947"\w* \w your|strong="H3605"\w* own land. +\v 25 \w I|strong="H5921"\w* \w will|strong="H4325"\w* \w sprinkle|strong="H2236"\w* \w clean|strong="H2889"\w* \w water|strong="H4325"\w* \w on|strong="H5921"\w* \w you|strong="H3605"\w*, \w and|strong="H4325"\w* \w you|strong="H3605"\w* \w will|strong="H4325"\w* \w be|strong="H4325"\w* \w clean|strong="H2889"\w*. \w I|strong="H5921"\w* \w will|strong="H4325"\w* \w cleanse|strong="H2891"\w* \w you|strong="H3605"\w* \w from|strong="H5921"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w filthiness|strong="H2932"\w* \w and|strong="H4325"\w* \w from|strong="H5921"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w idols|strong="H1544"\w*. +\v 26 \w I|strong="H5414"\w* \w will|strong="H3820"\w* \w also|strong="H3820"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w heart|strong="H3820"\w*, \w and|strong="H3820"\w* \w I|strong="H5414"\w* \w will|strong="H3820"\w* \w put|strong="H5414"\w* \w a|strong="H3068"\w* \w new|strong="H2319"\w* \w spirit|strong="H7307"\w* \w within|strong="H7130"\w* \w you|strong="H5414"\w*. \w I|strong="H5414"\w* \w will|strong="H3820"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w* \w the|strong="H5414"\w* stony \w heart|strong="H3820"\w* \w out|strong="H5414"\w* \w of|strong="H7307"\w* \w your|strong="H5414"\w* \w flesh|strong="H1320"\w*, \w and|strong="H3820"\w* \w I|strong="H5414"\w* \w will|strong="H3820"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w heart|strong="H3820"\w* \w of|strong="H7307"\w* \w flesh|strong="H1320"\w*. +\v 27 \w I|strong="H5414"\w* \w will|strong="H7307"\w* \w put|strong="H5414"\w* \w my|strong="H8104"\w* \w Spirit|strong="H7307"\w* \w within|strong="H7130"\w* \w you|strong="H5414"\w*, \w and|strong="H4941"\w* \w cause|strong="H4941"\w* \w you|strong="H5414"\w* \w to|strong="H3212"\w* \w walk|strong="H3212"\w* \w in|strong="H6213"\w* \w my|strong="H8104"\w* \w statutes|strong="H2706"\w*. \w You|strong="H5414"\w* \w will|strong="H7307"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w ordinances|strong="H4941"\w* \w and|strong="H4941"\w* \w do|strong="H6213"\w* \w them|strong="H5414"\w*. +\v 28 \w You|strong="H5414"\w* \w will|strong="H1961"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5414"\w* land \w that|strong="H5971"\w* \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w to|strong="H1961"\w* \w your|strong="H5414"\w* fathers. \w You|strong="H5414"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w my|strong="H5414"\w* \w people|strong="H5971"\w*, \w and|strong="H5971"\w* \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w your|strong="H5414"\w* \w God|strong="H5414"\w*. +\v 29 \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w save|strong="H3467"\w* \w you|strong="H5414"\w* \w from|strong="H5921"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w uncleanness|strong="H2932"\w*. \w I|strong="H5414"\w* \w will|strong="H5414"\w* \w call|strong="H7121"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w grain|strong="H1715"\w* \w and|strong="H1715"\w* \w will|strong="H5414"\w* \w multiply|strong="H7235"\w* \w it|strong="H5414"\w*, \w and|strong="H1715"\w* \w lay|strong="H5414"\w* \w no|strong="H3808"\w* \w famine|strong="H7458"\w* \w on|strong="H5921"\w* \w you|strong="H5414"\w*. +\v 30 \w I|strong="H3808"\w* \w will|strong="H1471"\w* \w multiply|strong="H7235"\w* \w the|strong="H3947"\w* \w fruit|strong="H6529"\w* \w of|strong="H7704"\w* \w the|strong="H3947"\w* \w tree|strong="H6086"\w* \w and|strong="H6086"\w* \w the|strong="H3947"\w* \w increase|strong="H7235"\w* \w of|strong="H7704"\w* \w the|strong="H3947"\w* \w field|strong="H7704"\w*, \w that|strong="H1471"\w* \w you|strong="H3947"\w* \w may|strong="H1471"\w* \w receive|strong="H3947"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w the|strong="H3947"\w* \w reproach|strong="H2781"\w* \w of|strong="H7704"\w* \w famine|strong="H7458"\w* \w among|strong="H2781"\w* \w the|strong="H3947"\w* \w nations|strong="H1471"\w*. +\p +\v 31 “‘“\w Then|strong="H3808"\w* \w you|strong="H6440"\w* \w will|strong="H3808"\w* \w remember|strong="H2142"\w* \w your|strong="H5921"\w* \w evil|strong="H7451"\w* \w ways|strong="H1870"\w*, \w and|strong="H6440"\w* \w your|strong="H5921"\w* \w deeds|strong="H4611"\w* \w that|strong="H7451"\w* \w were|strong="H5921"\w* \w not|strong="H3808"\w* \w good|strong="H2896"\w*; \w and|strong="H6440"\w* \w you|strong="H6440"\w* \w will|strong="H3808"\w* \w loathe|strong="H6962"\w* \w yourselves|strong="H5921"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w own|strong="H6440"\w* \w sight|strong="H6440"\w* \w for|strong="H5921"\w* \w your|strong="H5921"\w* \w iniquities|strong="H5771"\w* \w and|strong="H6440"\w* \w for|strong="H5921"\w* \w your|strong="H5921"\w* \w abominations|strong="H8441"\w*. +\v 32 \w I|strong="H3045"\w* don’t \w do|strong="H6213"\w* \w this|strong="H6213"\w* \w for|strong="H6213"\w* \w your|strong="H3045"\w* \w sake|strong="H4616"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. “\w Let|strong="H3808"\w* \w it|strong="H6213"\w* \w be|strong="H3808"\w* \w known|strong="H3045"\w* \w to|strong="H3478"\w* \w you|strong="H6213"\w*. \w Be|strong="H3808"\w* \w ashamed|strong="H3637"\w* \w and|strong="H3478"\w* \w confounded|strong="H3637"\w* \w for|strong="H6213"\w* \w your|strong="H3045"\w* \w ways|strong="H1870"\w*, \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*.” +\p +\v 33 “‘\w The|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w In|strong="H3427"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H3605"\w* \w I|strong="H3117"\w* \w cleanse|strong="H2891"\w* \w you|strong="H3605"\w* \w from|strong="H3117"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w iniquities|strong="H5771"\w*, \w I|strong="H3117"\w* \w will|strong="H5892"\w* cause \w the|strong="H3605"\w* \w cities|strong="H5892"\w* \w to|strong="H3117"\w* \w be|strong="H3117"\w* \w inhabited|strong="H3427"\w* \w and|strong="H3117"\w* \w the|strong="H3605"\w* \w waste|strong="H2723"\w* \w places|strong="H2723"\w* \w will|strong="H5892"\w* \w be|strong="H3117"\w* \w built|strong="H1129"\w*. +\v 34 \w The|strong="H3605"\w* land \w that|strong="H3605"\w* \w was|strong="H1961"\w* \w desolate|strong="H8074"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w tilled|strong="H5647"\w* \w instead|strong="H8478"\w* \w of|strong="H5869"\w* \w being|strong="H1961"\w* \w a|strong="H3068"\w* \w desolation|strong="H8077"\w* \w in|strong="H5869"\w* \w the|strong="H3605"\w* \w sight|strong="H5869"\w* \w of|strong="H5869"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w passed|strong="H5674"\w* \w by|strong="H5674"\w*. +\v 35 \w They|strong="H5892"\w* \w will|strong="H1961"\w* say, ‘\w This|strong="H1977"\w* land \w that|strong="H5892"\w* \w was|strong="H1961"\w* \w desolate|strong="H8074"\w* \w has|strong="H1961"\w* \w become|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H1961"\w* \w garden|strong="H1588"\w* \w of|strong="H3427"\w* \w Eden|strong="H5731"\w*. \w The|strong="H1961"\w* \w waste|strong="H8074"\w*, \w desolate|strong="H8074"\w*, \w and|strong="H5892"\w* \w ruined|strong="H2040"\w* \w cities|strong="H5892"\w* \w are|strong="H5892"\w* \w fortified|strong="H1219"\w* \w and|strong="H5892"\w* \w inhabited|strong="H3427"\w*.’ +\v 36 \w Then|strong="H1696"\w* \w the|strong="H3588"\w* \w nations|strong="H1471"\w* \w that|strong="H3588"\w* \w are|strong="H1471"\w* \w left|strong="H7604"\w* \w around|strong="H5439"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w built|strong="H1129"\w* \w the|strong="H3588"\w* \w ruined|strong="H2040"\w* \w places|strong="H8074"\w* \w and|strong="H3068"\w* \w planted|strong="H5193"\w* \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w desolate|strong="H8074"\w*. \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w it|strong="H3588"\w*, \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w it|strong="H3588"\w*.” +\p +\v 37 “‘\w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w For|strong="H6213"\w* \w this|strong="H2063"\w*, \w moreover|strong="H3541"\w*, \w I|strong="H3541"\w* \w will|strong="H3478"\w* \w be|strong="H5750"\w* \w inquired|strong="H1875"\w* \w of|strong="H1004"\w* \w by|strong="H3478"\w* \w the|strong="H3069"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* \w do|strong="H6213"\w* \w it|strong="H6213"\w* \w for|strong="H6213"\w* \w them|strong="H6213"\w*: \w I|strong="H3541"\w* \w will|strong="H3478"\w* \w increase|strong="H7235"\w* \w them|strong="H6213"\w* \w with|strong="H1004"\w* \w men|strong="H6213"\w* \w like|strong="H1004"\w* \w a|strong="H3068"\w* \w flock|strong="H6629"\w*. +\v 38 \w As|strong="H1961"\w* \w the|strong="H3588"\w* \w flock|strong="H6629"\w* \w for|strong="H3588"\w* sacrifice, \w as|strong="H1961"\w* \w the|strong="H3588"\w* \w flock|strong="H6629"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w* \w in|strong="H3068"\w* \w her|strong="H3045"\w* \w appointed|strong="H4150"\w* \w feasts|strong="H4150"\w*, \w so|strong="H3651"\w* \w the|strong="H3588"\w* \w waste|strong="H2720"\w* \w cities|strong="H5892"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w filled|strong="H4392"\w* \w with|strong="H3068"\w* \w flocks|strong="H6629"\w* \w of|strong="H3068"\w* men. \w Then|strong="H1961"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w*.’” +\c 37 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w was|strong="H3068"\w* \w on|strong="H5921"\w* \w me|strong="H5921"\w*, \w and|strong="H3068"\w* \w he|strong="H1931"\w* \w brought|strong="H3318"\w* \w me|strong="H5921"\w* \w out|strong="H3318"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w*, \w and|strong="H3068"\w* \w set|strong="H5117"\w* \w me|strong="H5921"\w* \w down|strong="H5117"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w valley|strong="H1237"\w*; \w and|strong="H3068"\w* \w it|strong="H1931"\w* \w was|strong="H3068"\w* \w full|strong="H4392"\w* \w of|strong="H3068"\w* \w bones|strong="H6106"\w*. +\v 2 \w He|strong="H5921"\w* \w caused|strong="H5674"\w* \w me|strong="H6440"\w* \w to|strong="H5921"\w* \w pass|strong="H5674"\w* \w by|strong="H5921"\w* \w them|strong="H5921"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*; \w and|strong="H6440"\w* \w behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w were|strong="H7227"\w* \w very|strong="H3966"\w* \w many|strong="H7227"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w open|strong="H6440"\w* \w valley|strong="H1237"\w*, \w and|strong="H6440"\w* \w behold|strong="H2009"\w*, \w they|strong="H5921"\w* \w were|strong="H7227"\w* \w very|strong="H3966"\w* \w dry|strong="H3002"\w*. +\v 3 \w He|strong="H1121"\w* said \w to|strong="H1121"\w* \w me|strong="H2421"\w*, “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w can|strong="H3045"\w* these \w bones|strong="H6106"\w* \w live|strong="H2421"\w*?” +\p \w I|strong="H3045"\w* answered, “\w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, \w you|strong="H3045"\w* \w know|strong="H3045"\w*.” +\p +\v 4 Again \w he|strong="H3068"\w* \w said|strong="H1697"\w* \w to|strong="H3068"\w* \w me|strong="H5921"\w*, “\w Prophesy|strong="H5012"\w* \w over|strong="H5921"\w* \w these|strong="H8085"\w* \w bones|strong="H6106"\w*, \w and|strong="H3068"\w* \w tell|strong="H8085"\w* \w them|strong="H5921"\w*, ‘\w You|strong="H5921"\w* \w dry|strong="H3002"\w* \w bones|strong="H6106"\w*, \w hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*. +\v 5 \w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w to|strong="H7307"\w* these \w bones|strong="H6106"\w*: “\w Behold|strong="H2009"\w*, \w I|strong="H3541"\w* \w will|strong="H7307"\w* cause \w breath|strong="H7307"\w* \w to|strong="H7307"\w* enter into \w you|strong="H2009"\w*, \w and|strong="H2421"\w* \w you|strong="H2009"\w* \w will|strong="H7307"\w* \w live|strong="H2421"\w*. +\v 6 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w lay|strong="H5414"\w* \w sinews|strong="H1517"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w bring|strong="H5927"\w* \w up|strong="H5927"\w* \w flesh|strong="H1320"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w cover|strong="H7159"\w* \w you|strong="H3588"\w* \w with|strong="H3068"\w* \w skin|strong="H5785"\w*, \w and|strong="H3068"\w* \w put|strong="H5414"\w* \w breath|strong="H7307"\w* \w in|strong="H5921"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w live|strong="H2421"\w*. \w Then|strong="H5414"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.”’” +\p +\v 7 \w So|strong="H1961"\w* \w I|strong="H2009"\w* \w prophesied|strong="H5012"\w* \w as|strong="H1961"\w* \w I|strong="H2009"\w* \w was|strong="H1961"\w* \w commanded|strong="H6680"\w*. \w As|strong="H1961"\w* \w I|strong="H2009"\w* \w prophesied|strong="H5012"\w*, \w there|strong="H2009"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w noise|strong="H6963"\w*, \w and|strong="H6963"\w* \w behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w was|strong="H1961"\w* \w an|strong="H7126"\w* \w earthquake|strong="H7494"\w*. \w Then|strong="H1961"\w* \w the|strong="H6680"\w* \w bones|strong="H6106"\w* \w came|strong="H1961"\w* \w together|strong="H7126"\w*, \w bone|strong="H6106"\w* \w to|strong="H1961"\w* \w its|strong="H1961"\w* \w bone|strong="H6106"\w*. +\v 8 \w I|strong="H2009"\w* \w saw|strong="H7200"\w*, \w and|strong="H7200"\w*, \w behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w were|strong="H2009"\w* \w sinews|strong="H1517"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, \w and|strong="H7200"\w* \w flesh|strong="H1320"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w*, \w and|strong="H7200"\w* \w skin|strong="H5785"\w* \w covered|strong="H7159"\w* \w them|strong="H5921"\w* \w above|strong="H4605"\w*; \w but|strong="H7200"\w* \w there|strong="H2009"\w* \w was|strong="H7307"\w* \w no|strong="H7200"\w* \w breath|strong="H7307"\w* \w in|strong="H5921"\w* \w them|strong="H5921"\w*. +\p +\v 9 \w Then|strong="H3541"\w* \w he|strong="H3541"\w* said \w to|strong="H1121"\w* \w me|strong="H2421"\w*, “\w Prophesy|strong="H5012"\w* \w to|strong="H1121"\w* \w the|strong="H3069"\w* \w wind|strong="H7307"\w*, \w prophesy|strong="H5012"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w and|strong="H1121"\w* tell \w the|strong="H3069"\w* \w wind|strong="H7307"\w*, ‘\w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Come|strong="H2421"\w* \w from|strong="H1121"\w* \w the|strong="H3069"\w* four \w winds|strong="H7307"\w*, \w breath|strong="H7307"\w*, \w and|strong="H1121"\w* \w breathe|strong="H5301"\w* \w on|strong="H2421"\w* \w these|strong="H5012"\w* \w slain|strong="H2026"\w*, \w that|strong="H1121"\w* \w they|strong="H3541"\w* \w may|strong="H1121"\w* \w live|strong="H2421"\w*.”’” +\p +\v 10 \w So|strong="H3966"\w* \w I|strong="H5921"\w* \w prophesied|strong="H5012"\w* \w as|strong="H6680"\w* \w he|strong="H5921"\w* \w commanded|strong="H6680"\w* \w me|strong="H5921"\w*, \w and|strong="H1419"\w* \w the|strong="H5921"\w* \w breath|strong="H7307"\w* \w came|strong="H7307"\w* \w into|strong="H5921"\w* \w them|strong="H5921"\w*, \w and|strong="H1419"\w* \w they|strong="H5921"\w* \w lived|strong="H2421"\w*, \w and|strong="H1419"\w* \w stood|strong="H5975"\w* \w up|strong="H5975"\w* \w on|strong="H5921"\w* \w their|strong="H5921"\w* \w feet|strong="H7272"\w*, \w an|strong="H2421"\w* \w exceedingly|strong="H3966"\w* \w great|strong="H1419"\w* \w army|strong="H2428"\w*. +\p +\v 11 \w Then|strong="H2009"\w* \w he|strong="H3605"\w* said \w to|strong="H3478"\w* \w me|strong="H3605"\w*, “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w these|strong="H1992"\w* \w bones|strong="H6106"\w* \w are|strong="H1992"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w Behold|strong="H2009"\w*, \w they|strong="H1992"\w* \w say|strong="H3478"\w*, ‘\w Our|strong="H3605"\w* \w bones|strong="H6106"\w* \w are|strong="H1992"\w* \w dried|strong="H3001"\w* \w up|strong="H3001"\w*, \w and|strong="H1121"\w* \w our|strong="H3605"\w* \w hope|strong="H8615"\w* \w is|strong="H2009"\w* lost. \w We|strong="H3605"\w* \w are|strong="H1992"\w* \w completely|strong="H3605"\w* \w cut|strong="H1504"\w* \w off|strong="H1504"\w*.’ +\v 12 \w Therefore|strong="H3651"\w* \w prophesy|strong="H5012"\w*, \w and|strong="H3478"\w* tell \w them|strong="H5927"\w*, ‘\w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Behold|strong="H2009"\w*, \w I|strong="H3541"\w* \w will|strong="H5971"\w* \w open|strong="H6605"\w* \w your|strong="H6605"\w* \w graves|strong="H6913"\w*, \w and|strong="H3478"\w* \w cause|strong="H3651"\w* \w you|strong="H3651"\w* \w to|strong="H3478"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H6605"\w* \w of|strong="H5971"\w* \w your|strong="H6605"\w* \w graves|strong="H6913"\w*, \w my|strong="H6605"\w* \w people|strong="H5971"\w*; \w and|strong="H3478"\w* \w I|strong="H3541"\w* \w will|strong="H5971"\w* \w bring|strong="H5927"\w* \w you|strong="H3651"\w* \w into|strong="H5927"\w* \w the|strong="H3069"\w* land \w of|strong="H5971"\w* \w Israel|strong="H3478"\w*. +\v 13 \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w opened|strong="H6605"\w* \w your|strong="H3068"\w* \w graves|strong="H6913"\w* \w and|strong="H3068"\w* caused \w you|strong="H3588"\w* \w to|strong="H3068"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H3045"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w graves|strong="H6913"\w*, \w my|strong="H3068"\w* \w people|strong="H5971"\w*. +\v 14 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w put|strong="H5414"\w* \w my|strong="H5414"\w* \w Spirit|strong="H7307"\w* \w in|strong="H5921"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w live|strong="H2421"\w*. \w Then|strong="H1696"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w place|strong="H5414"\w* \w you|strong="H3588"\w* \w in|strong="H5921"\w* \w your|strong="H3068"\w* own land; \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w spoken|strong="H1696"\w* \w it|strong="H5414"\w* \w and|strong="H3068"\w* \w performed|strong="H6213"\w* \w it|strong="H5414"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*.’” +\b +\p +\v 15 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w again|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 16 “\w You|strong="H3605"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w take|strong="H3947"\w* \w one|strong="H3605"\w* \w stick|strong="H6086"\w* \w and|strong="H1121"\w* \w write|strong="H3789"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*, ‘\w For|strong="H5921"\w* \w Judah|strong="H3063"\w*, \w and|strong="H1121"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w his|strong="H3605"\w* \w companions|strong="H2270"\w*.’ \w Then|strong="H3947"\w* \w take|strong="H3947"\w* another \w stick|strong="H6086"\w*, \w and|strong="H1121"\w* \w write|strong="H3789"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*, ‘\w For|strong="H5921"\w* \w Joseph|strong="H3130"\w*, \w the|strong="H3605"\w* \w stick|strong="H6086"\w* \w of|strong="H1121"\w* Ephraim, \w and|strong="H1121"\w* \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w his|strong="H3605"\w* \w companions|strong="H2270"\w*.’ +\v 17 \w Then|strong="H1961"\w* \w join|strong="H7126"\w* \w them|strong="H3027"\w* \w for|strong="H3027"\w* yourself \w to|strong="H1961"\w* \w one|strong="H1961"\w* another \w into|strong="H3027"\w* \w one|strong="H1961"\w* \w stick|strong="H6086"\w*, \w that|strong="H3027"\w* \w they|strong="H3027"\w* \w may|strong="H1961"\w* \w become|strong="H1961"\w* \w one|strong="H1961"\w* \w in|strong="H6086"\w* \w your|strong="H1961"\w* \w hand|strong="H3027"\w*. +\p +\v 18 “\w When|strong="H1121"\w* \w the|strong="H5046"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w your|strong="H3808"\w* \w people|strong="H5971"\w* speak \w to|strong="H1121"\w* \w you|strong="H5046"\w*, saying, ‘Won’t \w you|strong="H5046"\w* \w show|strong="H5046"\w* \w us|strong="H5046"\w* \w what|strong="H4100"\w* \w you|strong="H5046"\w* mean \w by|strong="H3808"\w* \w these|strong="H5971"\w*?’ +\v 19 \w tell|strong="H1696"\w* \w them|strong="H5414"\w*, ‘\w The|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Behold|strong="H2009"\w*, \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w take|strong="H3947"\w* \w the|strong="H5921"\w* \w stick|strong="H6086"\w* \w of|strong="H3027"\w* \w Joseph|strong="H3130"\w*, \w which|strong="H6086"\w* \w is|strong="H3027"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H3027"\w* Ephraim, \w and|strong="H3063"\w* \w the|strong="H5921"\w* \w tribes|strong="H7626"\w* \w of|strong="H3027"\w* \w Israel|strong="H3478"\w* \w his|strong="H5414"\w* \w companions|strong="H2270"\w*; \w and|strong="H3063"\w* \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w put|strong="H5414"\w* \w them|strong="H5414"\w* \w with|strong="H6213"\w* \w it|strong="H5414"\w*, \w with|strong="H6213"\w* \w the|strong="H5921"\w* \w stick|strong="H6086"\w* \w of|strong="H3027"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w make|strong="H6213"\w* \w them|strong="H5414"\w* \w one|strong="H1961"\w* \w stick|strong="H6086"\w*, \w and|strong="H3063"\w* \w they|strong="H5921"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w one|strong="H1961"\w* \w in|strong="H5921"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w*. +\v 20 \w The|strong="H5921"\w* \w sticks|strong="H6086"\w* \w on|strong="H5921"\w* \w which|strong="H5869"\w* \w you|strong="H5921"\w* \w write|strong="H3789"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w in|strong="H5921"\w* \w your|strong="H5921"\w* \w hand|strong="H3027"\w* \w before|strong="H5869"\w* \w their|strong="H5921"\w* \w eyes|strong="H5869"\w*.”’ +\v 21 \w Say|strong="H1696"\w* \w to|strong="H1696"\w* \w them|strong="H3947"\w*, ‘\w The|strong="H3947"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Behold|strong="H2009"\w*, \w I|strong="H3541"\w* \w will|strong="H1471"\w* \w take|strong="H3947"\w* \w the|strong="H3947"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w from|strong="H3478"\w* \w among|strong="H3478"\w* \w the|strong="H3947"\w* \w nations|strong="H1471"\w* \w where|strong="H8033"\w* \w they|strong="H8033"\w* \w have|strong="H1121"\w* \w gone|strong="H1980"\w*, \w and|strong="H1121"\w* \w will|strong="H1471"\w* \w gather|strong="H6908"\w* \w them|strong="H3947"\w* \w on|strong="H1980"\w* \w every|strong="H5439"\w* \w side|strong="H5439"\w*, \w and|strong="H1121"\w* \w bring|strong="H3947"\w* \w them|strong="H3947"\w* \w into|strong="H1980"\w* \w their|strong="H3947"\w* own land. +\v 22 \w I|strong="H3808"\w* \w will|strong="H1961"\w* \w make|strong="H6213"\w* \w them|strong="H6213"\w* \w one|strong="H3605"\w* \w nation|strong="H1471"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* land, \w on|strong="H1961"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. \w One|strong="H3605"\w* \w king|strong="H4428"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w king|strong="H4428"\w* \w to|strong="H3478"\w* \w them|strong="H6213"\w* \w all|strong="H3605"\w*. \w They|strong="H3808"\w* \w will|strong="H1961"\w* \w no|strong="H3808"\w* \w longer|strong="H5750"\w* \w be|strong="H1961"\w* \w two|strong="H8147"\w* \w nations|strong="H1471"\w*. \w They|strong="H3808"\w* won’t \w be|strong="H1961"\w* \w divided|strong="H2673"\w* \w into|strong="H6213"\w* \w two|strong="H8147"\w* \w kingdoms|strong="H4467"\w* \w any|strong="H3605"\w* \w more|strong="H5750"\w* \w at|strong="H3478"\w* \w all|strong="H3605"\w*. +\v 23 \w They|strong="H3808"\w* won’t \w defile|strong="H2930"\w* \w themselves|strong="H2891"\w* \w any|strong="H3605"\w* \w more|strong="H5750"\w* \w with|strong="H5971"\w* \w their|strong="H3605"\w* \w idols|strong="H1544"\w*, \w nor|strong="H3808"\w* \w with|strong="H5971"\w* \w their|strong="H3605"\w* \w detestable|strong="H8251"\w* \w things|strong="H8251"\w*, \w nor|strong="H3808"\w* \w with|strong="H5971"\w* \w any|strong="H3605"\w* \w of|strong="H5971"\w* \w their|strong="H3605"\w* \w transgressions|strong="H6588"\w*; \w but|strong="H3808"\w* \w I|strong="H3808"\w* \w will|strong="H1961"\w* \w save|strong="H3467"\w* \w them|strong="H1961"\w* \w out|strong="H3605"\w* \w of|strong="H5971"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w dwelling|strong="H4186"\w* \w places|strong="H4186"\w* \w in|strong="H5750"\w* \w which|strong="H5971"\w* \w they|strong="H3808"\w* \w have|strong="H1961"\w* \w sinned|strong="H2398"\w*, \w and|strong="H5971"\w* \w will|strong="H1961"\w* \w cleanse|strong="H2891"\w* \w them|strong="H1961"\w*. \w So|strong="H1961"\w* \w they|strong="H3808"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w*, \w and|strong="H5971"\w* \w I|strong="H3808"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w their|strong="H3605"\w* \w God|strong="H3808"\w*. +\p +\v 24 “‘“\w My|strong="H8104"\w* \w servant|strong="H5650"\w* \w David|strong="H1732"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w king|strong="H4428"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w*. \w They|strong="H5921"\w* \w all|strong="H3605"\w* \w will|strong="H1961"\w* \w have|strong="H1961"\w* \w one|strong="H3605"\w* \w shepherd|strong="H7462"\w*. \w They|strong="H5921"\w* \w will|strong="H1961"\w* \w also|strong="H1732"\w* \w walk|strong="H3212"\w* \w in|strong="H5921"\w* \w my|strong="H8104"\w* \w ordinances|strong="H4941"\w* \w and|strong="H4428"\w* \w observe|strong="H8104"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w*, \w and|strong="H4428"\w* \w do|strong="H6213"\w* \w them|strong="H5921"\w*. +\v 25 \w They|strong="H1992"\w* \w will|strong="H5650"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* land \w that|strong="H5414"\w* \w I|strong="H5414"\w* \w have|strong="H1121"\w* \w given|strong="H5414"\w* \w to|strong="H5704"\w* \w Jacob|strong="H3290"\w* \w my|strong="H5414"\w* \w servant|strong="H5650"\w*, \w in|strong="H3427"\w* \w which|strong="H1992"\w* \w your|strong="H5414"\w* fathers \w lived|strong="H3427"\w*. \w They|strong="H1992"\w* \w will|strong="H5650"\w* \w dwell|strong="H3427"\w* \w therein|strong="H3427"\w*, \w they|strong="H1992"\w*, \w and|strong="H1121"\w* \w their|strong="H5414"\w* \w children|strong="H1121"\w*, \w and|strong="H1121"\w* \w their|strong="H5414"\w* \w children|strong="H1121"\w*’s \w children|strong="H1121"\w*, \w forever|strong="H5769"\w*. \w David|strong="H1732"\w* \w my|strong="H5414"\w* \w servant|strong="H5650"\w* \w will|strong="H5650"\w* \w be|strong="H1121"\w* \w their|strong="H5414"\w* \w prince|strong="H5387"\w* \w forever|strong="H5769"\w*. +\v 26 \w Moreover|strong="H1961"\w* \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w make|strong="H5414"\w* \w a|strong="H3068"\w* \w covenant|strong="H1285"\w* \w of|strong="H8432"\w* \w peace|strong="H7965"\w* \w with|strong="H1285"\w* \w them|strong="H5414"\w*. \w It|strong="H5414"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w an|strong="H1961"\w* \w everlasting|strong="H5769"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w them|strong="H5414"\w*. \w I|strong="H5414"\w* \w will|strong="H1961"\w* \w place|strong="H5414"\w* \w them|strong="H5414"\w*, \w multiply|strong="H7235"\w* \w them|strong="H5414"\w*, \w and|strong="H5769"\w* \w will|strong="H1961"\w* \w set|strong="H5414"\w* \w my|strong="H5414"\w* \w sanctuary|strong="H4720"\w* \w among|strong="H8432"\w* \w them|strong="H5414"\w* \w forever|strong="H5769"\w* \w more|strong="H7235"\w*. +\v 27 \w My|strong="H5921"\w* tent \w also|strong="H5971"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w with|strong="H5921"\w* \w them|strong="H1992"\w*. \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w their|strong="H1992"\w* God, \w and|strong="H5971"\w* \w they|strong="H1992"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w my|strong="H5921"\w* \w people|strong="H5971"\w*. +\v 28 \w The|strong="H3588"\w* \w nations|strong="H1471"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w sanctifies|strong="H6942"\w* \w Israel|strong="H3478"\w*, \w when|strong="H3588"\w* \w my|strong="H3068"\w* \w sanctuary|strong="H4720"\w* \w is|strong="H3068"\w* \w among|strong="H8432"\w* \w them|strong="H8432"\w* \w forever|strong="H5769"\w* \w more|strong="H5769"\w*.”’” +\c 38 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1697"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w set|strong="H7760"\w* \w your|strong="H5921"\w* \w face|strong="H6440"\w* \w toward|strong="H5921"\w* \w Gog|strong="H1463"\w*, \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H1121"\w* \w Magog|strong="H4031"\w*, \w the|strong="H6440"\w* \w prince|strong="H5387"\w* \w of|strong="H1121"\w* Rosh, \w Meshech|strong="H4902"\w*, \w and|strong="H1121"\w* \w Tubal|strong="H8422"\w*, \w and|strong="H1121"\w* \w prophesy|strong="H5012"\w* \w against|strong="H5921"\w* \w him|strong="H6440"\w*, +\v 3 \w and|strong="H7218"\w* say, ‘\w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H2005"\w* \w against|strong="H2005"\w* you, \w Gog|strong="H1463"\w*, \w prince|strong="H5387"\w* \w of|strong="H7218"\w* Rosh, \w Meshech|strong="H4902"\w*, \w and|strong="H7218"\w* \w Tubal|strong="H8422"\w*. +\v 4 \w I|strong="H5414"\w* \w will|strong="H2719"\w* \w turn|strong="H7725"\w* \w you|strong="H5414"\w* \w around|strong="H7725"\w*, \w and|strong="H7725"\w* \w put|strong="H5414"\w* \w hooks|strong="H2397"\w* \w into|strong="H7725"\w* \w your|strong="H3605"\w* \w jaws|strong="H3895"\w*, \w and|strong="H7725"\w* \w I|strong="H5414"\w* \w will|strong="H2719"\w* \w bring|strong="H3318"\w* \w you|strong="H5414"\w* \w out|strong="H3318"\w*, \w with|strong="H3847"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w army|strong="H2428"\w*, \w horses|strong="H5483"\w* \w and|strong="H7725"\w* \w horsemen|strong="H6571"\w*, \w all|strong="H3605"\w* \w of|strong="H6951"\w* \w them|strong="H5414"\w* \w clothed|strong="H3847"\w* \w in|strong="H3847"\w* \w full|strong="H3605"\w* \w armor|strong="H3847"\w*, \w a|strong="H3068"\w* \w great|strong="H7227"\w* \w company|strong="H6951"\w* \w with|strong="H3847"\w* \w buckler|strong="H4043"\w* \w and|strong="H7725"\w* \w shield|strong="H4043"\w*, \w all|strong="H3605"\w* \w of|strong="H6951"\w* \w them|strong="H5414"\w* \w handling|strong="H8610"\w* \w swords|strong="H2719"\w*; +\v 5 \w Persia|strong="H6539"\w*, \w Cush|strong="H3568"\w*, \w and|strong="H4043"\w* \w Put|strong="H6316"\w* \w with|strong="H3605"\w* them, \w all|strong="H3605"\w* \w of|strong="H3605"\w* them \w with|strong="H3605"\w* \w shield|strong="H4043"\w* \w and|strong="H4043"\w* \w helmet|strong="H3553"\w*; +\v 6 \w Gomer|strong="H1586"\w*, \w and|strong="H1004"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* hordes; \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Togarmah|strong="H8425"\w* \w in|strong="H1004"\w* \w the|strong="H3605"\w* uttermost \w parts|strong="H3411"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w north|strong="H6828"\w*, \w and|strong="H1004"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* hordes—even \w many|strong="H7227"\w* \w peoples|strong="H5971"\w* \w with|strong="H1004"\w* \w you|strong="H3605"\w*. +\p +\v 7 “‘“\w Be|strong="H1961"\w* \w prepared|strong="H3559"\w*, yes, \w prepare|strong="H3559"\w* \w yourself|strong="H5921"\w*, \w you|strong="H3605"\w*, \w and|strong="H3605"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w companies|strong="H6951"\w* \w who|strong="H3605"\w* \w are|strong="H1961"\w* \w assembled|strong="H6950"\w* \w to|strong="H1961"\w* \w you|strong="H3605"\w*, \w and|strong="H3605"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w guard|strong="H4929"\w* \w to|strong="H1961"\w* \w them|strong="H5921"\w*. +\v 8 \w After|strong="H5921"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w* \w you|strong="H3605"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w visited|strong="H6485"\w*. \w In|strong="H3427"\w* \w the|strong="H3605"\w* latter \w years|strong="H8141"\w* \w you|strong="H3605"\w* \w will|strong="H1961"\w* \w come|strong="H1961"\w* \w into|strong="H7725"\w* \w the|strong="H3605"\w* land \w that|strong="H5971"\w* \w is|strong="H1931"\w* \w brought|strong="H3318"\w* \w back|strong="H7725"\w* \w from|strong="H7725"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w that|strong="H5971"\w* \w is|strong="H1931"\w* \w gathered|strong="H6908"\w* \w out|strong="H3318"\w* \w of|strong="H3117"\w* \w many|strong="H7227"\w* \w peoples|strong="H5971"\w*, \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w*, \w which|strong="H1931"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w a|strong="H3068"\w* \w continual|strong="H8548"\w* \w waste|strong="H2723"\w*; \w but|strong="H1961"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w brought|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w and|strong="H3478"\w* \w they|strong="H3117"\w* \w will|strong="H1961"\w* \w dwell|strong="H3427"\w* securely, \w all|strong="H3605"\w* \w of|strong="H3117"\w* \w them|strong="H5921"\w*. +\v 9 \w You|strong="H3605"\w* \w will|strong="H1961"\w* \w ascend|strong="H5927"\w*. \w You|strong="H3605"\w* \w will|strong="H1961"\w* \w come|strong="H5927"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w storm|strong="H7722"\w*. \w You|strong="H3605"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w cloud|strong="H6051"\w* \w to|strong="H5927"\w* \w cover|strong="H3680"\w* \w the|strong="H3605"\w* land, \w you|strong="H3605"\w* \w and|strong="H5971"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* hordes, \w and|strong="H5971"\w* \w many|strong="H7227"\w* \w peoples|strong="H5971"\w* \w with|strong="H5971"\w* \w you|strong="H3605"\w*.” +\p +\v 10 “‘\w The|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w It|strong="H1931"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w in|strong="H5921"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w things|strong="H1697"\w* \w will|strong="H1961"\w* \w come|strong="H5927"\w* \w into|strong="H5927"\w* \w your|strong="H5921"\w* \w mind|strong="H3824"\w*, \w and|strong="H3117"\w* \w you|strong="H5921"\w* \w will|strong="H1961"\w* \w devise|strong="H2803"\w* \w an|strong="H1961"\w* \w evil|strong="H7451"\w* \w plan|strong="H2803"\w*. +\v 11 \w You|strong="H3605"\w* \w will|strong="H2346"\w* say, ‘\w I|strong="H5921"\w* \w will|strong="H2346"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H3605"\w* land \w of|strong="H3427"\w* \w unwalled|strong="H6519"\w* \w villages|strong="H6519"\w*. \w I|strong="H5921"\w* \w will|strong="H2346"\w* \w go|strong="H5927"\w* \w to|strong="H5927"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H1280"\w* \w at|strong="H3427"\w* \w rest|strong="H8252"\w*, \w who|strong="H3605"\w* \w dwell|strong="H3427"\w* securely, \w all|strong="H3605"\w* \w of|strong="H3427"\w* \w them|strong="H5921"\w* \w dwelling|strong="H3427"\w* \w without|strong="H3427"\w* \w walls|strong="H2346"\w*, \w and|strong="H5927"\w* having neither \w bars|strong="H1280"\w* \w nor|strong="H1817"\w* \w gates|strong="H1817"\w*, +\v 12 \w to|strong="H7725"\w* \w take|strong="H7725"\w* \w the|strong="H5921"\w* \w plunder|strong="H7998"\w* \w and|strong="H7725"\w* \w to|strong="H7725"\w* \w take|strong="H7725"\w* \w prey|strong="H7998"\w*; \w to|strong="H7725"\w* \w turn|strong="H7725"\w* \w your|strong="H5921"\w* \w hand|strong="H3027"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w waste|strong="H2723"\w* \w places|strong="H2723"\w* \w that|strong="H5971"\w* \w are|strong="H5971"\w* \w inhabited|strong="H3427"\w*, \w and|strong="H7725"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w are|strong="H5971"\w* \w gathered|strong="H6213"\w* \w out|strong="H5921"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*, \w who|strong="H5971"\w* \w have|strong="H5971"\w* \w gotten|strong="H6213"\w* \w livestock|strong="H4735"\w* \w and|strong="H7725"\w* \w goods|strong="H7075"\w*, \w who|strong="H5971"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5921"\w* \w middle|strong="H2872"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* earth.’ +\v 13 \w Sheba|strong="H7614"\w*, \w Dedan|strong="H1719"\w*, \w and|strong="H3701"\w* \w the|strong="H3605"\w* \w merchants|strong="H5503"\w* \w of|strong="H6951"\w* \w Tarshish|strong="H8659"\w*, \w with|strong="H3605"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w young|strong="H3715"\w* \w lions|strong="H3715"\w*, \w will|strong="H6951"\w* ask \w you|strong="H3605"\w*, ‘\w Have|strong="H3605"\w* \w you|strong="H3605"\w* come \w to|strong="H3701"\w* \w take|strong="H3947"\w* \w the|strong="H3605"\w* \w plunder|strong="H7998"\w*? \w Have|strong="H3605"\w* \w you|strong="H3605"\w* \w assembled|strong="H6950"\w* \w your|strong="H3605"\w* \w company|strong="H6951"\w* \w to|strong="H3701"\w* \w take|strong="H3947"\w* \w the|strong="H3605"\w* \w prey|strong="H7998"\w*, \w to|strong="H3701"\w* \w carry|strong="H5375"\w* \w away|strong="H3947"\w* \w silver|strong="H3701"\w* \w and|strong="H3701"\w* \w gold|strong="H2091"\w*, \w to|strong="H3701"\w* \w take|strong="H3947"\w* \w away|strong="H3947"\w* \w livestock|strong="H4735"\w* \w and|strong="H3701"\w* \w goods|strong="H7075"\w*, \w to|strong="H3701"\w* \w take|strong="H3947"\w* \w great|strong="H1419"\w* \w plunder|strong="H7998"\w*?’”’ +\p +\v 14 “\w Therefore|strong="H3651"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w prophesy|strong="H5012"\w*, \w and|strong="H1121"\w* \w tell|strong="H3045"\w* \w Gog|strong="H1463"\w*, ‘\w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w In|strong="H3427"\w* \w that|strong="H3045"\w* \w day|strong="H3117"\w* \w when|strong="H3117"\w* \w my|strong="H3045"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w* \w dwells|strong="H3427"\w* securely, \w will|strong="H5971"\w* \w you|strong="H3117"\w* \w not|strong="H3808"\w* \w know|strong="H3045"\w* \w it|strong="H1931"\w*? +\v 15 \w You|strong="H3605"\w* \w will|strong="H5971"\w* \w come|strong="H5971"\w* \w from|strong="H5971"\w* \w your|strong="H3605"\w* \w place|strong="H4725"\w* \w out|strong="H3605"\w* \w of|strong="H6951"\w* \w the|strong="H3605"\w* uttermost \w parts|strong="H3411"\w* \w of|strong="H6951"\w* \w the|strong="H3605"\w* \w north|strong="H6828"\w*, \w you|strong="H3605"\w*, \w and|strong="H1419"\w* \w many|strong="H7227"\w* \w peoples|strong="H5971"\w* \w with|strong="H5971"\w* \w you|strong="H3605"\w*, \w all|strong="H3605"\w* \w of|strong="H6951"\w* them \w riding|strong="H7392"\w* \w on|strong="H7392"\w* \w horses|strong="H5483"\w*, \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w company|strong="H6951"\w* \w and|strong="H1419"\w* \w a|strong="H3068"\w* \w mighty|strong="H1419"\w* \w army|strong="H2428"\w*. +\v 16 \w You|strong="H5921"\w* \w will|strong="H1961"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w my|strong="H5921"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w* \w as|strong="H3117"\w* \w a|strong="H3068"\w* \w cloud|strong="H6051"\w* \w to|strong="H3478"\w* \w cover|strong="H3680"\w* \w the|strong="H5921"\w* land. \w It|strong="H5921"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* latter \w days|strong="H3117"\w* \w that|strong="H3045"\w* \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w bring|strong="H5927"\w* \w you|strong="H5921"\w* \w against|strong="H5921"\w* \w my|strong="H5921"\w* land, \w that|strong="H3045"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w* \w may|strong="H1961"\w* \w know|strong="H3045"\w* \w me|strong="H5921"\w* \w when|strong="H1961"\w* \w I|strong="H3117"\w* \w am|strong="H1961"\w* \w sanctified|strong="H6942"\w* \w in|strong="H5921"\w* \w you|strong="H5921"\w*, \w Gog|strong="H1463"\w*, \w before|strong="H5869"\w* \w their|strong="H5921"\w* \w eyes|strong="H5869"\w*.” +\p +\v 17 “‘\w The|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Are|strong="H3117"\w* \w you|strong="H5921"\w* \w he|strong="H1931"\w* \w of|strong="H3117"\w* \w whom|strong="H1992"\w* \w I|strong="H3117"\w* \w spoke|strong="H1696"\w* \w in|strong="H8141"\w* \w old|strong="H8141"\w* \w time|strong="H3117"\w* \w by|strong="H3027"\w* \w my|strong="H5921"\w* \w servants|strong="H5650"\w* \w the|strong="H5921"\w* \w prophets|strong="H5030"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w*, \w who|strong="H1931"\w* \w prophesied|strong="H5012"\w* \w in|strong="H8141"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w* \w for|strong="H5921"\w* \w years|strong="H8141"\w* \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w would|strong="H3478"\w* bring \w you|strong="H5921"\w* \w against|strong="H5921"\w* \w them|strong="H1992"\w*? +\v 18 \w It|strong="H1931"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w in|strong="H5921"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w when|strong="H1961"\w* \w Gog|strong="H1463"\w* \w comes|strong="H1961"\w* \w against|strong="H5921"\w* \w the|strong="H5002"\w* land \w of|strong="H3117"\w* \w Israel|strong="H3478"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, “\w that|strong="H3117"\w* \w my|strong="H5921"\w* \w wrath|strong="H2534"\w* \w will|strong="H1961"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w into|strong="H5927"\w* \w my|strong="H5921"\w* nostrils. +\v 19 \w For|strong="H5921"\w* \w in|strong="H5921"\w* \w my|strong="H5921"\w* \w jealousy|strong="H7068"\w* \w and|strong="H3478"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* fire \w of|strong="H3117"\w* \w my|strong="H5921"\w* \w wrath|strong="H5678"\w* \w I|strong="H3117"\w* \w have|strong="H1961"\w* \w spoken|strong="H1696"\w*. \w Surely|strong="H1961"\w* \w in|strong="H5921"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w there|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w shaking|strong="H7494"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H3117"\w* \w Israel|strong="H3478"\w*, +\v 20 \w so|strong="H5921"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* \w fish|strong="H1709"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w*, \w the|strong="H3605"\w* \w birds|strong="H5775"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w the|strong="H3605"\w* \w animals|strong="H2416"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*, \w all|strong="H3605"\w* \w creeping|strong="H7431"\w* \w things|strong="H7431"\w* \w who|strong="H3605"\w* \w creep|strong="H7430"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*, \w and|strong="H8064"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H8064"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w* \w will|strong="H8064"\w* \w shake|strong="H7493"\w* \w at|strong="H5921"\w* \w my|strong="H3605"\w* \w presence|strong="H6440"\w*. \w Then|strong="H5307"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w* \w will|strong="H8064"\w* \w be|strong="H8064"\w* \w thrown|strong="H2040"\w* \w down|strong="H5307"\w*, \w the|strong="H3605"\w* \w steep|strong="H4095"\w* \w places|strong="H4095"\w* \w will|strong="H8064"\w* \w fall|strong="H5307"\w*, \w and|strong="H8064"\w* \w every|strong="H3605"\w* \w wall|strong="H2346"\w* \w will|strong="H8064"\w* \w fall|strong="H5307"\w* \w to|strong="H5921"\w* \w the|strong="H3605"\w* \w ground|strong="H7704"\w*. +\v 21 \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w call|strong="H7121"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w sword|strong="H2719"\w* \w against|strong="H5921"\w* \w him|strong="H7121"\w* \w to|strong="H1961"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w mountains|strong="H2022"\w*,” \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. “\w Every|strong="H3605"\w* \w man|strong="H3605"\w*’s \w sword|strong="H2719"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w against|strong="H5921"\w* \w his|strong="H3605"\w* brother. +\v 22 \w I|strong="H5921"\w* \w will|strong="H5971"\w* \w enter|strong="H8199"\w* \w into|strong="H8199"\w* \w judgment|strong="H8199"\w* \w with|strong="H5921"\w* \w him|strong="H5921"\w* \w with|strong="H5921"\w* \w pestilence|strong="H1698"\w* \w and|strong="H5971"\w* \w with|strong="H5921"\w* \w blood|strong="H1818"\w*. \w I|strong="H5921"\w* \w will|strong="H5971"\w* \w rain|strong="H1653"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*, \w on|strong="H5921"\w* \w his|strong="H5921"\w* hordes, \w and|strong="H5971"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w many|strong="H7227"\w* \w peoples|strong="H5971"\w* \w who|strong="H5971"\w* \w are|strong="H5971"\w* \w with|strong="H5921"\w* \w him|strong="H5921"\w*, \w torrential|strong="H7857"\w* \w rains|strong="H1653"\w* \w with|strong="H5921"\w* \w great|strong="H7227"\w* hailstones, fire, \w and|strong="H5971"\w* \w sulfur|strong="H1614"\w*. +\v 23 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w magnify|strong="H1431"\w* \w myself|strong="H3045"\w* \w and|strong="H3068"\w* \w sanctify|strong="H6942"\w* \w myself|strong="H3045"\w*, \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w make|strong="H3045"\w* \w myself|strong="H3045"\w* \w known|strong="H3045"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w eyes|strong="H5869"\w* \w of|strong="H3068"\w* \w many|strong="H7227"\w* \w nations|strong="H1471"\w*. \w Then|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.”’ +\c 39 +\p +\v 1 “\w You|strong="H5921"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w prophesy|strong="H5012"\w* \w against|strong="H5921"\w* \w Gog|strong="H1463"\w*, \w and|strong="H1121"\w* say, ‘\w The|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H2005"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w*, \w Gog|strong="H1463"\w*, \w prince|strong="H5387"\w* \w of|strong="H1121"\w* Rosh, \w Meshech|strong="H4902"\w*, \w and|strong="H1121"\w* \w Tubal|strong="H8422"\w*. +\v 2 \w I|strong="H5921"\w* \w will|strong="H3478"\w* \w turn|strong="H7725"\w* \w you|strong="H5921"\w* \w around|strong="H5921"\w*, \w will|strong="H3478"\w* \w lead|strong="H5927"\w* \w you|strong="H5921"\w* \w on|strong="H5921"\w*, \w and|strong="H3478"\w* \w will|strong="H3478"\w* \w cause|strong="H7725"\w* \w you|strong="H5921"\w* \w to|strong="H7725"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H7725"\w* \w the|strong="H5921"\w* uttermost \w parts|strong="H3411"\w* \w of|strong="H2022"\w* \w the|strong="H5921"\w* \w north|strong="H6828"\w*; \w and|strong="H3478"\w* \w I|strong="H5921"\w* \w will|strong="H3478"\w* \w bring|strong="H7725"\w* \w you|strong="H5921"\w* \w onto|strong="H5921"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w* \w of|strong="H2022"\w* \w Israel|strong="H3478"\w*. +\v 3 \w I|strong="H3027"\w* \w will|strong="H3027"\w* \w strike|strong="H5221"\w* \w your|strong="H5221"\w* \w bow|strong="H7198"\w* \w out|strong="H5307"\w* \w of|strong="H3027"\w* \w your|strong="H5221"\w* \w left|strong="H8040"\w* \w hand|strong="H3027"\w*, \w and|strong="H3027"\w* \w will|strong="H3027"\w* cause \w your|strong="H5221"\w* \w arrows|strong="H2671"\w* \w to|strong="H3027"\w* \w fall|strong="H5307"\w* \w out|strong="H5307"\w* \w of|strong="H3027"\w* \w your|strong="H5221"\w* \w right|strong="H3225"\w* \w hand|strong="H3027"\w*. +\v 4 \w You|strong="H5414"\w* \w will|strong="H5971"\w* \w fall|strong="H5307"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w* \w of|strong="H2022"\w* \w Israel|strong="H3478"\w*, \w you|strong="H5414"\w*, \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* hordes, \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w who|strong="H3605"\w* \w are|strong="H5971"\w* \w with|strong="H5921"\w* \w you|strong="H5414"\w*. \w I|strong="H5414"\w* \w will|strong="H5971"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w ravenous|strong="H5861"\w* \w birds|strong="H6833"\w* \w of|strong="H2022"\w* \w every|strong="H3605"\w* \w sort|strong="H3671"\w* \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w animals|strong="H2416"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w to|strong="H3478"\w* \w be|strong="H3478"\w* devoured. +\v 5 \w You|strong="H3588"\w* \w will|strong="H7704"\w* \w fall|strong="H5307"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w open|strong="H6440"\w* \w field|strong="H7704"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1696"\w* \w spoken|strong="H1696"\w* \w it|strong="H5921"\w*,” \w says|strong="H5002"\w* \w the|strong="H6440"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\v 6 “\w I|strong="H3588"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w a|strong="H3068"\w* fire \w on|strong="H3427"\w* \w Magog|strong="H4031"\w* \w and|strong="H3068"\w* \w on|strong="H3427"\w* \w those|strong="H3427"\w* \w who|strong="H3068"\w* \w dwell|strong="H3427"\w* securely \w in|strong="H3427"\w* \w the|strong="H3588"\w* islands. \w Then|strong="H7971"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 7 “‘“\w I|strong="H3588"\w* \w will|strong="H3068"\w* \w make|strong="H3045"\w* \w my|strong="H3068"\w* \w holy|strong="H6944"\w* \w name|strong="H8034"\w* \w known|strong="H3045"\w* \w among|strong="H8432"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*. \w I|strong="H3588"\w* won’t allow \w my|strong="H3068"\w* \w holy|strong="H6944"\w* \w name|strong="H8034"\w* \w to|strong="H3478"\w* \w be|strong="H3808"\w* \w profaned|strong="H2490"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*. \w Then|strong="H3588"\w* \w the|strong="H3588"\w* \w nations|strong="H1471"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3588"\w* \w Holy|strong="H6944"\w* \w One|strong="H6918"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\v 8 \w Behold|strong="H2009"\w*, \w it|strong="H1931"\w* \w comes|strong="H1961"\w*, \w and|strong="H3117"\w* \w it|strong="H1931"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w done|strong="H1961"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. “\w This|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H5002"\w* \w day|strong="H3117"\w* \w about|strong="H1961"\w* \w which|strong="H1931"\w* \w I|strong="H3117"\w* \w have|strong="H1961"\w* \w spoken|strong="H1696"\w*. +\p +\v 9 “‘“\w Those|strong="H3318"\w* \w who|strong="H3478"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3318"\w* \w cities|strong="H5892"\w* \w of|strong="H3027"\w* \w Israel|strong="H3478"\w* \w will|strong="H3478"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H3478"\w* \w will|strong="H3478"\w* \w make|strong="H1197"\w* \w fires|strong="H1197"\w* \w of|strong="H3027"\w* \w the|strong="H3318"\w* \w weapons|strong="H5402"\w* \w and|strong="H3478"\w* \w burn|strong="H1197"\w* \w them|strong="H3027"\w*, both \w the|strong="H3318"\w* \w shields|strong="H4043"\w* \w and|strong="H3478"\w* \w the|strong="H3318"\w* \w bucklers|strong="H4043"\w*, \w the|strong="H3318"\w* \w bows|strong="H7198"\w* \w and|strong="H3478"\w* \w the|strong="H3318"\w* \w arrows|strong="H2671"\w*, \w and|strong="H3478"\w* \w the|strong="H3318"\w* \w war|strong="H4731"\w* \w clubs|strong="H4731"\w* \w and|strong="H3478"\w* \w the|strong="H3318"\w* \w spears|strong="H7420"\w*, \w and|strong="H3478"\w* \w they|strong="H8141"\w* \w will|strong="H3478"\w* \w make|strong="H1197"\w* \w fires|strong="H1197"\w* \w with|strong="H3427"\w* \w them|strong="H3027"\w* \w for|strong="H3027"\w* \w seven|strong="H7651"\w* \w years|strong="H8141"\w*; +\v 10 \w so|strong="H4480"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H3808"\w* \w take|strong="H5375"\w* \w no|strong="H3808"\w* \w wood|strong="H6086"\w* \w out|strong="H4480"\w* \w of|strong="H7704"\w* \w the|strong="H5002"\w* \w field|strong="H7704"\w*, \w and|strong="H6086"\w* \w not|strong="H3808"\w* \w cut|strong="H2404"\w* \w down|strong="H2404"\w* \w any|strong="H4480"\w* \w out|strong="H4480"\w* \w of|strong="H7704"\w* \w the|strong="H5002"\w* \w forests|strong="H3293"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H3808"\w* \w make|strong="H1197"\w* \w fires|strong="H1197"\w* \w with|strong="H1197"\w* \w the|strong="H5002"\w* \w weapons|strong="H5402"\w*. \w They|strong="H3588"\w* \w will|strong="H3808"\w* \w plunder|strong="H7997"\w* \w those|strong="H4480"\w* \w who|strong="H3588"\w* \w plundered|strong="H7997"\w* \w them|strong="H5375"\w*, \w and|strong="H6086"\w* rob \w those|strong="H4480"\w* \w who|strong="H3588"\w* \w robbed|strong="H7997"\w* \w them|strong="H5375"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 11 “‘“\w It|strong="H5414"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w in|strong="H3478"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w*, \w that|strong="H3605"\w* \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w to|strong="H3478"\w* \w Gog|strong="H1463"\w* \w a|strong="H3068"\w* \w place|strong="H4725"\w* \w for|strong="H7121"\w* \w burial|strong="H6913"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*, \w the|strong="H3605"\w* \w valley|strong="H1516"\w* \w of|strong="H3117"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w on|strong="H3117"\w* \w the|strong="H3605"\w* \w east|strong="H6926"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w*; \w and|strong="H3478"\w* \w it|strong="H5414"\w* \w will|strong="H1961"\w* \w stop|strong="H2629"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w*. \w They|strong="H3117"\w* \w will|strong="H1961"\w* \w bury|strong="H6912"\w* \w Gog|strong="H1463"\w* \w and|strong="H3478"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w multitude|strong="H1995"\w* \w there|strong="H8033"\w*, \w and|strong="H3478"\w* \w they|strong="H3117"\w* \w will|strong="H1961"\w* \w call|strong="H7121"\w* \w it|strong="H5414"\w* ‘\w The|strong="H3605"\w* \w valley|strong="H1516"\w* \w of|strong="H3117"\w* Hamon \w Gog|strong="H1463"\w*’. +\p +\v 12 “‘“\w The|strong="H2891"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w will|strong="H3478"\w* \w be|strong="H3478"\w* \w burying|strong="H6912"\w* \w them|strong="H4616"\w* \w for|strong="H4616"\w* \w seven|strong="H7651"\w* \w months|strong="H2320"\w*, \w that|strong="H4616"\w* \w they|strong="H2320"\w* \w may|strong="H3478"\w* \w cleanse|strong="H2891"\w* \w the|strong="H2891"\w* land. +\v 13 Yes, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* land \w will|strong="H1961"\w* \w bury|strong="H6912"\w* \w them|strong="H1961"\w*; \w and|strong="H3117"\w* \w they|strong="H3117"\w* \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w famous|strong="H8034"\w* \w in|strong="H3117"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H5971"\w* \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w glorified|strong="H3513"\w*,” \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 14 “‘“\w They|strong="H5921"\w* \w will|strong="H6440"\w* set \w apart|strong="H5674"\w* \w men|strong="H7651"\w* \w of|strong="H6440"\w* \w continual|strong="H8548"\w* \w employment|strong="H8548"\w* who \w will|strong="H6440"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*. \w Those|strong="H5921"\w* who \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w will|strong="H6440"\w* \w go|strong="H5674"\w* \w with|strong="H5921"\w* \w those|strong="H5921"\w* who \w bury|strong="H6912"\w* \w those|strong="H5921"\w* who \w remain|strong="H3498"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w*, \w to|strong="H5921"\w* \w cleanse|strong="H2891"\w* \w it|strong="H5921"\w*. \w After|strong="H5921"\w* \w the|strong="H6440"\w* \w end|strong="H7097"\w* \w of|strong="H6440"\w* \w seven|strong="H7651"\w* \w months|strong="H2320"\w* \w they|strong="H5921"\w* \w will|strong="H6440"\w* \w search|strong="H2713"\w*. +\v 15 Those \w who|strong="H1129"\w* \w search|strong="H7200"\w* \w through|strong="H5674"\w* \w the|strong="H7200"\w* land \w will|strong="H5704"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w*; \w and|strong="H7200"\w* \w when|strong="H7200"\w* \w anyone|strong="H7200"\w* \w sees|strong="H7200"\w* \w a|strong="H3068"\w* \w man|strong="H5674"\w*’s \w bone|strong="H6106"\w*, \w then|strong="H5674"\w* \w he|strong="H5704"\w* \w will|strong="H5704"\w* \w set|strong="H1129"\w* \w up|strong="H1129"\w* \w a|strong="H3068"\w* \w sign|strong="H6725"\w* \w by|strong="H5674"\w* \w it|strong="H7200"\w*, \w until|strong="H5704"\w* \w the|strong="H7200"\w* undertakers \w have|strong="H7200"\w* \w buried|strong="H6912"\w* \w it|strong="H7200"\w* \w in|strong="H6912"\w* \w the|strong="H7200"\w* \w valley|strong="H1516"\w* \w of|strong="H1516"\w* Hamon Gog. +\v 16 \w Hamonah|strong="H1997"\w* \w will|strong="H1571"\w* \w also|strong="H1571"\w* \w be|strong="H8034"\w* \w the|strong="H1571"\w* \w name|strong="H8034"\w* \w of|strong="H5892"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w*. Thus \w they|strong="H1571"\w* \w will|strong="H1571"\w* \w cleanse|strong="H2891"\w* \w the|strong="H1571"\w* land.”’ +\p +\v 17 “\w You|strong="H3605"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘Speak \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w birds|strong="H6833"\w* \w of|strong="H1121"\w* \w every|strong="H3605"\w* \w sort|strong="H3671"\w*, \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w every|strong="H3605"\w* \w animal|strong="H2416"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*, “\w Assemble|strong="H6908"\w* \w yourselves|strong="H3605"\w*, \w and|strong="H1121"\w* \w come|strong="H3478"\w*; \w gather|strong="H6908"\w* \w yourselves|strong="H3605"\w* \w on|strong="H5921"\w* \w every|strong="H3605"\w* \w side|strong="H5439"\w* \w to|strong="H3478"\w* \w my|strong="H3605"\w* \w sacrifice|strong="H2077"\w* \w that|strong="H3605"\w* \w I|strong="H3541"\w* \w sacrifice|strong="H2077"\w* \w for|strong="H5921"\w* \w you|strong="H3605"\w*, \w even|strong="H5921"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w sacrifice|strong="H2077"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w may|strong="H3478"\w* eat \w meat|strong="H1320"\w* \w and|strong="H1121"\w* \w drink|strong="H8354"\w* \w blood|strong="H1818"\w*. +\v 18 \w You|strong="H3605"\w* \w shall|strong="H5387"\w* eat \w the|strong="H3605"\w* \w flesh|strong="H1320"\w* \w of|strong="H1368"\w* \w the|strong="H3605"\w* \w mighty|strong="H1368"\w*, \w and|strong="H6499"\w* \w drink|strong="H8354"\w* \w the|strong="H3605"\w* \w blood|strong="H1818"\w* \w of|strong="H1368"\w* \w the|strong="H3605"\w* \w princes|strong="H5387"\w* \w of|strong="H1368"\w* \w the|strong="H3605"\w* earth, \w of|strong="H1368"\w* \w rams|strong="H3733"\w*, \w of|strong="H1368"\w* \w lambs|strong="H3733"\w*, \w and|strong="H6499"\w* \w of|strong="H1368"\w* \w goats|strong="H6260"\w*, \w of|strong="H1368"\w* \w bulls|strong="H6499"\w*, \w all|strong="H3605"\w* \w of|strong="H1368"\w* them \w fatlings|strong="H4806"\w* \w of|strong="H1368"\w* \w Bashan|strong="H1316"\w*. +\v 19 \w You|strong="H2076"\w* \w shall|strong="H1818"\w* eat \w fat|strong="H2459"\w* \w until|strong="H2459"\w* \w you|strong="H2076"\w* \w are|strong="H1818"\w* \w full|strong="H7654"\w*, \w and|strong="H1818"\w* \w drink|strong="H8354"\w* \w blood|strong="H1818"\w* \w until|strong="H2459"\w* \w you|strong="H2076"\w* \w are|strong="H1818"\w* \w drunk|strong="H8354"\w*, \w of|strong="H2077"\w* \w my|strong="H8354"\w* \w sacrifice|strong="H2077"\w* \w which|strong="H1818"\w* I have \w sacrificed|strong="H2076"\w* \w for|strong="H2077"\w* \w you|strong="H2076"\w*. +\v 20 \w You|strong="H3605"\w* \w shall|strong="H1368"\w* \w be|strong="H3069"\w* \w filled|strong="H7646"\w* \w at|strong="H5921"\w* \w my|strong="H3605"\w* \w table|strong="H7979"\w* \w with|strong="H7646"\w* \w horses|strong="H5483"\w* \w and|strong="H7393"\w* \w charioteers|strong="H7393"\w*, \w with|strong="H7646"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w*, \w and|strong="H7393"\w* \w with|strong="H7646"\w* \w all|strong="H3605"\w* \w men|strong="H1368"\w* \w of|strong="H1368"\w* \w war|strong="H4421"\w*,” \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*.’ +\p +\v 21 “\w I|strong="H5414"\w* \w will|strong="H1471"\w* \w set|strong="H7760"\w* \w my|strong="H5414"\w* \w glory|strong="H3519"\w* \w among|strong="H7200"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*. \w Then|strong="H5414"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w will|strong="H1471"\w* \w see|strong="H7200"\w* \w my|strong="H5414"\w* \w judgment|strong="H4941"\w* \w that|strong="H7200"\w* \w I|strong="H5414"\w* \w have|strong="H1471"\w* \w executed|strong="H6213"\w*, \w and|strong="H4941"\w* \w my|strong="H5414"\w* \w hand|strong="H3027"\w* \w that|strong="H7200"\w* \w I|strong="H5414"\w* \w have|strong="H1471"\w* \w laid|strong="H7760"\w* \w on|strong="H7200"\w* \w them|strong="H5414"\w*. +\v 22 \w So|strong="H4480"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*, \w from|strong="H4480"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w* \w and|strong="H3478"\w* \w forward|strong="H1973"\w*. +\v 23 \w The|strong="H3605"\w* \w nations|strong="H1471"\w* \w will|strong="H1471"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w went|strong="H3478"\w* \w into|strong="H1540"\w* \w captivity|strong="H1540"\w* \w for|strong="H3588"\w* \w their|strong="H3605"\w* \w iniquity|strong="H5771"\w*, \w because|strong="H3588"\w* \w they|strong="H1992"\w* \w trespassed|strong="H4603"\w* \w against|strong="H5921"\w* \w me|strong="H5414"\w*, \w and|strong="H3478"\w* \w I|strong="H3588"\w* \w hid|strong="H5641"\w* \w my|strong="H5414"\w* \w face|strong="H6440"\w* \w from|strong="H6440"\w* \w them|strong="H5414"\w*; \w so|strong="H5414"\w* \w I|strong="H3588"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w into|strong="H1540"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H1004"\w* \w their|strong="H3605"\w* \w adversaries|strong="H6862"\w*, \w and|strong="H3478"\w* \w they|strong="H1992"\w* \w all|strong="H3605"\w* \w fell|strong="H5307"\w* \w by|strong="H3027"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*. +\v 24 \w I|strong="H6440"\w* \w did|strong="H6213"\w* \w to|strong="H6213"\w* \w them|strong="H1992"\w* according \w to|strong="H6213"\w* \w their|strong="H6440"\w* \w uncleanness|strong="H2932"\w* \w and|strong="H6440"\w* according \w to|strong="H6213"\w* \w their|strong="H6440"\w* \w transgressions|strong="H6588"\w*. \w I|strong="H6440"\w* \w hid|strong="H5641"\w* \w my|strong="H5641"\w* \w face|strong="H6440"\w* \w from|strong="H6440"\w* \w them|strong="H1992"\w*. +\p +\v 25 “\w Therefore|strong="H3651"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Now|strong="H6258"\w* \w I|strong="H3541"\w* \w will|strong="H3478"\w* \w reverse|strong="H7725"\w* \w the|strong="H3605"\w* \w captivity|strong="H7622"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w* \w and|strong="H3478"\w* \w have|strong="H7355"\w* \w mercy|strong="H7355"\w* \w on|strong="H7355"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. \w I|strong="H3541"\w* \w will|strong="H3478"\w* \w be|strong="H8034"\w* \w jealous|strong="H7065"\w* \w for|strong="H8034"\w* \w my|strong="H3605"\w* \w holy|strong="H6944"\w* \w name|strong="H8034"\w*. +\v 26 \w They|strong="H5921"\w* \w will|strong="H3427"\w* \w forget|strong="H5375"\w* \w their|strong="H3605"\w* \w shame|strong="H3639"\w* \w and|strong="H3427"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w trespasses|strong="H4604"\w* \w by|strong="H5921"\w* \w which|strong="H3605"\w* \w they|strong="H5921"\w* \w have|strong="H3605"\w* \w trespassed|strong="H4603"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*, \w when|strong="H3427"\w* \w they|strong="H5921"\w* \w dwell|strong="H3427"\w* securely \w in|strong="H3427"\w* \w their|strong="H3605"\w* land. \w No|strong="H3605"\w* \w one|strong="H3605"\w* \w will|strong="H3427"\w* \w make|strong="H2729"\w* \w them|strong="H5921"\w* \w afraid|strong="H2729"\w* +\v 27 \w when|strong="H7725"\w* \w I|strong="H4480"\w* \w have|strong="H5869"\w* \w brought|strong="H7725"\w* \w them|strong="H7725"\w* \w back|strong="H7725"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w peoples|strong="H5971"\w*, \w gathered|strong="H6908"\w* \w them|strong="H7725"\w* \w out|strong="H4480"\w* \w of|strong="H5869"\w* \w their|strong="H7725"\w* enemies’ lands, \w and|strong="H7725"\w* am shown \w holy|strong="H6942"\w* \w among|strong="H4480"\w* \w them|strong="H7725"\w* \w in|strong="H7227"\w* \w the|strong="H4480"\w* \w sight|strong="H5869"\w* \w of|strong="H5869"\w* \w many|strong="H7227"\w* \w nations|strong="H1471"\w*. +\v 28 \w They|strong="H1992"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*, \w in|strong="H5921"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* caused \w them|strong="H1992"\w* \w to|strong="H3068"\w* \w go|strong="H1540"\w* \w into|strong="H1540"\w* \w captivity|strong="H1540"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*, \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w gathered|strong="H3664"\w* \w them|strong="H1992"\w* \w to|strong="H3068"\w* \w their|strong="H3068"\w* own land. \w Then|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w leave|strong="H3498"\w* \w none|strong="H3808"\w* \w of|strong="H3068"\w* \w them|strong="H1992"\w* \w captive|strong="H1540"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*. +\v 29 \w I|strong="H5921"\w* won’t \w hide|strong="H5641"\w* \w my|strong="H5921"\w* \w face|strong="H6440"\w* \w from|strong="H6440"\w* \w them|strong="H1992"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*, \w for|strong="H5921"\w* \w I|strong="H5921"\w* \w have|strong="H3478"\w* \w poured|strong="H8210"\w* \w out|strong="H8210"\w* \w my|strong="H5921"\w* \w Spirit|strong="H7307"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*,’ \w says|strong="H5002"\w* \w the|strong="H6440"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*.” +\c 40 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H5921"\w* \w twenty-fifth|strong="H6242"\w* \w year|strong="H8141"\w* \w of|strong="H3068"\w* \w our|strong="H3068"\w* \w captivity|strong="H1546"\w*, \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w beginning|strong="H7218"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w year|strong="H8141"\w*, \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w tenth|strong="H6218"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w month|strong="H2320"\w*, \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w fourteenth|strong="H6240"\w* \w year|strong="H8141"\w* \w after|strong="H5921"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w was|strong="H3068"\w* \w struck|strong="H5221"\w*, \w in|strong="H8141"\w* \w the|strong="H5921"\w* \w same|strong="H6106"\w* \w day|strong="H3117"\w*, \w Yahweh|strong="H3068"\w*’s \w hand|strong="H3027"\w* \w was|strong="H3068"\w* \w on|strong="H5921"\w* \w me|strong="H5921"\w*, \w and|strong="H3068"\w* \w he|strong="H3117"\w* \w brought|strong="H1961"\w* \w me|strong="H5921"\w* \w there|strong="H8033"\w*. +\v 2 \w In|strong="H5921"\w* \w the|strong="H5921"\w* \w visions|strong="H4759"\w* \w of|strong="H5892"\w* God \w he|strong="H5921"\w* \w brought|strong="H3478"\w* \w me|strong="H5921"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H5892"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w set|strong="H5117"\w* \w me|strong="H5921"\w* \w down|strong="H5117"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w high|strong="H1364"\w* \w mountain|strong="H2022"\w*, \w on|strong="H5921"\w* \w which|strong="H5892"\w* \w was|strong="H3478"\w* something \w like|strong="H3478"\w* \w the|strong="H5921"\w* \w frame|strong="H4011"\w* \w of|strong="H5892"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w south|strong="H5045"\w*. +\v 3 \w He|strong="H1931"\w* \w brought|strong="H3027"\w* \w me|strong="H5975"\w* \w there|strong="H8033"\w*; \w and|strong="H3027"\w*, \w behold|strong="H2009"\w*, \w there|strong="H8033"\w* \w was|strong="H1931"\w* \w a|strong="H3068"\w* \w man|strong="H8179"\w* \w whose|strong="H8179"\w* \w appearance|strong="H4758"\w* \w was|strong="H1931"\w* \w like|strong="H4758"\w* \w the|strong="H3027"\w* \w appearance|strong="H4758"\w* \w of|strong="H3027"\w* \w bronze|strong="H5178"\w*, \w with|strong="H3027"\w* \w a|strong="H3068"\w* \w line|strong="H6616"\w* \w of|strong="H3027"\w* \w flax|strong="H6593"\w* \w in|strong="H5975"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w* \w and|strong="H3027"\w* \w a|strong="H3068"\w* \w measuring|strong="H4060"\w* \w reed|strong="H7070"\w*; \w and|strong="H3027"\w* \w he|strong="H1931"\w* \w stood|strong="H5975"\w* \w in|strong="H5975"\w* \w the|strong="H3027"\w* \w gate|strong="H8179"\w*. +\v 4 \w The|strong="H3605"\w* \w man|strong="H1121"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H7200"\w*, “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w see|strong="H7200"\w* \w with|strong="H1004"\w* \w your|strong="H3605"\w* \w eyes|strong="H5869"\w*, \w and|strong="H1121"\w* \w hear|strong="H8085"\w* \w with|strong="H1004"\w* \w your|strong="H3605"\w* ears, \w and|strong="H1121"\w* \w set|strong="H7760"\w* \w your|strong="H3605"\w* \w heart|strong="H3820"\w* \w on|strong="H7200"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3478"\w* \w show|strong="H7200"\w* \w you|strong="H3588"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H5869"\w* \w been|strong="H5046"\w* \w brought|strong="H7760"\w* \w here|strong="H2008"\w* \w so|strong="H4616"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H3478"\w* \w show|strong="H7200"\w* \w them|strong="H7760"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*. \w Declare|strong="H5046"\w* \w all|strong="H3605"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w see|strong="H7200"\w* \w to|strong="H1696"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*.” +\p +\v 5 \w Behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w was|strong="H1004"\w* \w a|strong="H3068"\w* \w wall|strong="H2346"\w* \w on|strong="H3027"\w* \w the|strong="H5439"\w* \w outside|strong="H2351"\w* \w of|strong="H1004"\w* \w the|strong="H5439"\w* \w house|strong="H1004"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*, \w and|strong="H3027"\w* \w in|strong="H1004"\w* \w the|strong="H5439"\w* man’s \w hand|strong="H3027"\w* \w a|strong="H3068"\w* \w measuring|strong="H4060"\w* \w reed|strong="H7070"\w* \w six|strong="H8337"\w* cubits\f + \fr 40:5 \ft A normal cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. A handbreadth is about 4.3 inches or 11 centimeters, so the long cubit described here would be about 22.3 inches or 57 centimeters long. Thus, a 6 long cubit measuring reed would have been about 3 yards 26.6 inches or about 3.42 meters long.\f* \w long|strong="H2948"\w*, \w of|strong="H1004"\w* \w a|strong="H3068"\w* cubit \w and|strong="H3027"\w* \w a|strong="H3068"\w* \w hand|strong="H3027"\w* \w width|strong="H7341"\w* \w each|strong="H5439"\w*. \w So|strong="H3027"\w* \w he|strong="H1004"\w* \w measured|strong="H4058"\w* \w the|strong="H5439"\w* \w thickness|strong="H7341"\w* \w of|strong="H1004"\w* \w the|strong="H5439"\w* \w building|strong="H1146"\w*, \w one|strong="H5439"\w* \w reed|strong="H7070"\w*; \w and|strong="H3027"\w* \w the|strong="H5439"\w* \w height|strong="H6967"\w*, \w one|strong="H5439"\w* \w reed|strong="H7070"\w*. +\p +\v 6 \w Then|strong="H5927"\w* \w he|strong="H6440"\w* \w came|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H6440"\w* \w gate|strong="H8179"\w* \w which|strong="H8179"\w* \w looks|strong="H6440"\w* \w toward|strong="H1870"\w* \w the|strong="H6440"\w* \w east|strong="H6921"\w*, \w and|strong="H6440"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w its|strong="H4058"\w* \w steps|strong="H4609"\w*. \w He|strong="H6440"\w* \w measured|strong="H4058"\w* \w the|strong="H6440"\w* \w threshold|strong="H5592"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w gate|strong="H8179"\w*, \w one|strong="H7341"\w* \w reed|strong="H7070"\w* \w wide|strong="H7341"\w*; \w and|strong="H6440"\w* \w the|strong="H6440"\w* other \w threshold|strong="H5592"\w*, \w one|strong="H7341"\w* \w reed|strong="H7070"\w* \w wide|strong="H7341"\w*. +\v 7 \w Every|strong="H8179"\w* lodge \w was|strong="H1004"\w* \w one|strong="H7341"\w* \w reed|strong="H7070"\w* long \w and|strong="H1004"\w* \w one|strong="H7341"\w* \w reed|strong="H7070"\w* \w wide|strong="H7341"\w*. Between \w the|strong="H1004"\w* lodges \w was|strong="H1004"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w*. \w The|strong="H1004"\w* \w threshold|strong="H5592"\w* \w of|strong="H1004"\w* \w the|strong="H1004"\w* \w gate|strong="H8179"\w* \w by|strong="H8179"\w* \w the|strong="H1004"\w* porch \w of|strong="H1004"\w* \w the|strong="H1004"\w* \w gate|strong="H8179"\w* toward \w the|strong="H1004"\w* \w house|strong="H1004"\w* \w was|strong="H1004"\w* \w one|strong="H7341"\w* \w reed|strong="H7070"\w*. +\p +\v 8 \w He|strong="H1004"\w* \w measured|strong="H4058"\w* also \w the|strong="H4058"\w* porch \w of|strong="H1004"\w* \w the|strong="H4058"\w* \w gate|strong="H8179"\w* toward \w the|strong="H4058"\w* \w house|strong="H1004"\w*, \w one|strong="H1004"\w* \w reed|strong="H7070"\w*. +\v 9 Then \w he|strong="H1004"\w* \w measured|strong="H4058"\w* \w the|strong="H4058"\w* porch \w of|strong="H1004"\w* \w the|strong="H4058"\w* \w gate|strong="H8179"\w*, \w eight|strong="H8083"\w* cubits; \w and|strong="H1004"\w* \w its|strong="H4058"\w* posts, \w two|strong="H8147"\w* cubits; \w and|strong="H1004"\w* \w the|strong="H4058"\w* porch \w of|strong="H1004"\w* \w the|strong="H4058"\w* \w gate|strong="H8179"\w* \w was|strong="H1004"\w* toward \w the|strong="H4058"\w* \w house|strong="H1004"\w*. +\p +\v 10 \w The|strong="H1870"\w* \w side|strong="H6311"\w* rooms \w of|strong="H1870"\w* \w the|strong="H1870"\w* \w gate|strong="H8179"\w* \w eastward|strong="H6921"\w* \w were|strong="H7969"\w* \w three|strong="H7969"\w* \w on|strong="H1870"\w* \w this|strong="H1870"\w* \w side|strong="H6311"\w*, \w and|strong="H1870"\w* \w three|strong="H7969"\w* \w on|strong="H1870"\w* \w that|strong="H8179"\w* \w side|strong="H6311"\w*. \w The|strong="H1870"\w* \w three|strong="H7969"\w* \w of|strong="H1870"\w* \w them|strong="H1870"\w* \w were|strong="H7969"\w* \w of|strong="H1870"\w* one \w measure|strong="H4060"\w*. \w The|strong="H1870"\w* posts \w had|strong="H7969"\w* one \w measure|strong="H4060"\w* \w on|strong="H1870"\w* \w this|strong="H1870"\w* \w side|strong="H6311"\w* \w and|strong="H1870"\w* \w on|strong="H1870"\w* \w that|strong="H8179"\w* \w side|strong="H6311"\w*. +\v 11 \w He|strong="H4058"\w* \w measured|strong="H4058"\w* \w the|strong="H4058"\w* \w width|strong="H7341"\w* \w of|strong="H8179"\w* \w the|strong="H4058"\w* \w opening|strong="H6607"\w* \w of|strong="H8179"\w* \w the|strong="H4058"\w* \w gate|strong="H8179"\w*, \w ten|strong="H6235"\w* cubits; \w and|strong="H7969"\w* \w the|strong="H4058"\w* length \w of|strong="H8179"\w* \w the|strong="H4058"\w* \w gate|strong="H8179"\w*, \w thirteen|strong="H7969"\w* cubits; +\v 12 \w and|strong="H6440"\w* \w a|strong="H3068"\w* \w border|strong="H1366"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* lodges, one cubit \w on|strong="H6440"\w* \w this|strong="H6440"\w* \w side|strong="H6311"\w*, \w and|strong="H6440"\w* \w a|strong="H3068"\w* \w border|strong="H1366"\w*, one cubit \w on|strong="H6440"\w* \w that|strong="H1366"\w* \w side|strong="H6311"\w*; \w and|strong="H6440"\w* \w the|strong="H6440"\w* \w side|strong="H6311"\w* rooms, \w six|strong="H8337"\w* cubits \w on|strong="H6440"\w* \w this|strong="H6440"\w* \w side|strong="H6311"\w*, \w and|strong="H6440"\w* \w six|strong="H8337"\w* cubits \w on|strong="H6440"\w* \w that|strong="H1366"\w* \w side|strong="H6311"\w*. +\v 13 \w He|strong="H2568"\w* \w measured|strong="H4058"\w* \w the|strong="H4058"\w* \w gate|strong="H8179"\w* \w from|strong="H4058"\w* \w the|strong="H4058"\w* \w roof|strong="H1406"\w* \w of|strong="H8179"\w* \w the|strong="H4058"\w* \w one|strong="H7341"\w* \w side|strong="H5048"\w* \w room|strong="H8372"\w* \w to|strong="H8179"\w* \w the|strong="H4058"\w* \w roof|strong="H1406"\w* \w of|strong="H8179"\w* \w the|strong="H4058"\w* \w other|strong="H5048"\w*, \w a|strong="H3068"\w* \w width|strong="H7341"\w* \w of|strong="H8179"\w* \w twenty-five|strong="H6242"\w* \w cubits|strong="H2568"\w*, \w door|strong="H6607"\w* \w against|strong="H5048"\w* \w door|strong="H6607"\w*. +\v 14 \w He|strong="H6213"\w* \w also|strong="H6213"\w* \w made|strong="H6213"\w* posts, \w sixty|strong="H8346"\w* cubits; \w and|strong="H8346"\w* \w the|strong="H6213"\w* \w court|strong="H2691"\w* reached \w to|strong="H6213"\w* \w the|strong="H6213"\w* posts, \w around|strong="H5439"\w* \w the|strong="H6213"\w* \w gate|strong="H8179"\w*. +\v 15 \w From|strong="H6440"\w* \w the|strong="H6440"\w* \w forefront|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w gate|strong="H8179"\w* \w at|strong="H5921"\w* \w the|strong="H6440"\w* \w entrance|strong="H8179"\w* \w to|strong="H5921"\w* \w the|strong="H6440"\w* \w forefront|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w inner|strong="H6442"\w* porch \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w gate|strong="H8179"\w* \w were|strong="H5921"\w* \w fifty|strong="H2572"\w* cubits. +\v 16 There \w were|strong="H5439"\w* closed \w windows|strong="H2474"\w* \w to|strong="H8179"\w* \w the|strong="H5439"\w* \w side|strong="H5439"\w* \w rooms|strong="H5439"\w*, \w and|strong="H8179"\w* \w to|strong="H8179"\w* \w their|strong="H5439"\w* posts \w within|strong="H6441"\w* \w the|strong="H5439"\w* \w gate|strong="H8179"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*, \w and|strong="H8179"\w* \w likewise|strong="H3651"\w* \w to|strong="H8179"\w* \w the|strong="H5439"\w* arches. \w Windows|strong="H2474"\w* \w were|strong="H5439"\w* \w around|strong="H5439"\w* \w inward|strong="H6441"\w*. \w Palm|strong="H8561"\w* \w trees|strong="H8561"\w* \w were|strong="H5439"\w* \w on|strong="H8372"\w* \w each|strong="H5439"\w* post. +\p +\v 17 \w Then|strong="H2009"\w* \w he|strong="H6213"\w* \w brought|strong="H6213"\w* \w me|strong="H6213"\w* \w into|strong="H6213"\w* \w the|strong="H6213"\w* \w outer|strong="H2435"\w* \w court|strong="H2691"\w*. \w Behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w were|strong="H2009"\w* \w rooms|strong="H3957"\w* \w and|strong="H7970"\w* \w a|strong="H3068"\w* \w pavement|strong="H7531"\w* \w made|strong="H6213"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w court|strong="H2691"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*. \w Thirty|strong="H7970"\w* \w rooms|strong="H3957"\w* \w were|strong="H2009"\w* \w on|strong="H6213"\w* \w the|strong="H6213"\w* \w pavement|strong="H7531"\w*. +\v 18 \w The|strong="H5980"\w* \w pavement|strong="H7531"\w* \w was|strong="H8179"\w* \w by|strong="H8179"\w* \w the|strong="H5980"\w* \w side|strong="H3802"\w* \w of|strong="H8179"\w* \w the|strong="H5980"\w* \w gates|strong="H8179"\w*, \w corresponding|strong="H5980"\w* \w to|strong="H8179"\w* \w the|strong="H5980"\w* length \w of|strong="H8179"\w* \w the|strong="H5980"\w* \w gates|strong="H8179"\w*, even \w the|strong="H5980"\w* \w lower|strong="H8481"\w* \w pavement|strong="H7531"\w*. +\v 19 Then \w he|strong="H6440"\w* \w measured|strong="H4058"\w* \w the|strong="H6440"\w* \w width|strong="H7341"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w forefront|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w lower|strong="H8481"\w* \w gate|strong="H8179"\w* \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w forefront|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w inner|strong="H6442"\w* \w court|strong="H2691"\w* \w outside|strong="H2351"\w*, \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* cubits, both \w on|strong="H6440"\w* \w the|strong="H6440"\w* \w east|strong="H6921"\w* \w and|strong="H3967"\w* \w on|strong="H6440"\w* \w the|strong="H6440"\w* \w north|strong="H6828"\w*. +\p +\v 20 \w He|strong="H6440"\w* \w measured|strong="H4058"\w* \w the|strong="H6440"\w* length \w and|strong="H6440"\w* \w width|strong="H7341"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w gate|strong="H8179"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w outer|strong="H2435"\w* \w court|strong="H2691"\w* \w which|strong="H8179"\w* \w faces|strong="H6440"\w* \w toward|strong="H1870"\w* \w the|strong="H6440"\w* \w north|strong="H6828"\w*. +\v 21 \w The|strong="H1961"\w* lodges \w of|strong="H8179"\w* \w it|strong="H1961"\w* \w were|strong="H1961"\w* \w three|strong="H7969"\w* \w on|strong="H1961"\w* \w this|strong="H7223"\w* \w side|strong="H6311"\w* \w and|strong="H6242"\w* \w three|strong="H7969"\w* \w on|strong="H1961"\w* \w that|strong="H8179"\w* \w side|strong="H6311"\w*. \w Its|strong="H1961"\w* posts \w and|strong="H6242"\w* \w its|strong="H1961"\w* arches \w were|strong="H1961"\w* \w the|strong="H1961"\w* same \w as|strong="H1961"\w* \w the|strong="H1961"\w* \w measure|strong="H4060"\w* \w of|strong="H8179"\w* \w the|strong="H1961"\w* \w first|strong="H7223"\w* \w gate|strong="H8179"\w*: \w its|strong="H1961"\w* length \w was|strong="H1961"\w* \w fifty|strong="H2572"\w* \w cubits|strong="H2568"\w*, \w and|strong="H6242"\w* \w the|strong="H1961"\w* \w width|strong="H7341"\w* \w twenty-five|strong="H6242"\w* \w cubits|strong="H2568"\w*. +\v 22 \w Its|strong="H5927"\w* \w windows|strong="H2474"\w*, \w its|strong="H5927"\w* arches, \w and|strong="H6440"\w* \w its|strong="H5927"\w* \w palm|strong="H8561"\w* \w trees|strong="H8561"\w* \w were|strong="H1870"\w* \w the|strong="H6440"\w* same \w as|strong="H5927"\w* \w the|strong="H6440"\w* \w measure|strong="H4060"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w gate|strong="H8179"\w* \w which|strong="H8179"\w* \w faces|strong="H6440"\w* \w toward|strong="H1870"\w* \w the|strong="H6440"\w* \w east|strong="H6921"\w*. \w They|strong="H6440"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w it|strong="H6440"\w* \w by|strong="H1870"\w* \w seven|strong="H7651"\w* \w steps|strong="H4609"\w*. \w Its|strong="H5927"\w* arches \w were|strong="H1870"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*. +\v 23 There \w was|strong="H8179"\w* \w a|strong="H3068"\w* \w gate|strong="H8179"\w* \w to|strong="H8179"\w* \w the|strong="H4058"\w* \w inner|strong="H6442"\w* \w court|strong="H2691"\w* facing \w the|strong="H4058"\w* \w other|strong="H5048"\w* \w gate|strong="H8179"\w*, on \w the|strong="H4058"\w* \w north|strong="H6828"\w* \w and|strong="H3967"\w* on \w the|strong="H4058"\w* \w east|strong="H6921"\w*. \w He|strong="H4058"\w* \w measured|strong="H4058"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* cubits \w from|strong="H4058"\w* \w gate|strong="H8179"\w* \w to|strong="H8179"\w* \w gate|strong="H8179"\w*. +\p +\v 24 \w He|strong="H4058"\w* \w led|strong="H3212"\w* \w me|strong="H3212"\w* \w toward|strong="H1870"\w* \w the|strong="H1870"\w* \w south|strong="H1864"\w*; \w and|strong="H3212"\w* \w behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w was|strong="H1870"\w* \w a|strong="H3068"\w* \w gate|strong="H8179"\w* \w toward|strong="H1870"\w* \w the|strong="H1870"\w* \w south|strong="H1864"\w*. \w He|strong="H4058"\w* \w measured|strong="H4058"\w* \w its|strong="H4058"\w* posts \w and|strong="H3212"\w* \w its|strong="H4058"\w* arches according \w to|strong="H3212"\w* these \w measurements|strong="H4060"\w*. +\v 25 There \w were|strong="H5439"\w* \w windows|strong="H2474"\w* \w in|strong="H2568"\w* \w it|strong="H5439"\w* \w and|strong="H6242"\w* \w in|strong="H2568"\w* \w its|strong="H5439"\w* arches \w all|strong="H5439"\w* \w around|strong="H5439"\w*, \w like|strong="H5439"\w* \w the|strong="H5439"\w* other \w windows|strong="H2474"\w*: \w the|strong="H5439"\w* length was \w fifty|strong="H2572"\w* \w cubits|strong="H2568"\w*, \w and|strong="H6242"\w* \w the|strong="H5439"\w* \w width|strong="H7341"\w* \w twenty-five|strong="H6242"\w* \w cubits|strong="H2568"\w*. +\v 26 \w There|strong="H6440"\w* \w were|strong="H6440"\w* \w seven|strong="H7651"\w* \w steps|strong="H4609"\w* \w to|strong="H6440"\w* \w go|strong="H4609"\w* \w up|strong="H5930"\w* \w to|strong="H6440"\w* \w it|strong="H6440"\w*, \w and|strong="H6440"\w* \w its|strong="H6440"\w* arches \w were|strong="H6440"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*. \w It|strong="H6440"\w* had \w palm|strong="H8561"\w* \w trees|strong="H8561"\w*, \w one|strong="H7651"\w* \w on|strong="H6440"\w* \w this|strong="H6440"\w* \w side|strong="H6311"\w*, \w and|strong="H6440"\w* \w another|strong="H6440"\w* \w on|strong="H6440"\w* \w that|strong="H5930"\w* \w side|strong="H6311"\w*, \w on|strong="H6440"\w* \w its|strong="H6440"\w* posts. +\v 27 There \w was|strong="H1870"\w* \w a|strong="H3068"\w* \w gate|strong="H8179"\w* \w to|strong="H1870"\w* \w the|strong="H1870"\w* \w inner|strong="H6442"\w* \w court|strong="H2691"\w* \w toward|strong="H1870"\w* \w the|strong="H1870"\w* \w south|strong="H1864"\w*. \w He|strong="H4058"\w* \w measured|strong="H4058"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* cubits \w from|strong="H4058"\w* \w gate|strong="H8179"\w* \w to|strong="H1870"\w* \w gate|strong="H8179"\w* \w toward|strong="H1870"\w* \w the|strong="H1870"\w* \w south|strong="H1864"\w*. +\p +\v 28 Then \w he|strong="H4058"\w* brought me \w to|strong="H8179"\w* \w the|strong="H4058"\w* \w inner|strong="H6442"\w* \w court|strong="H2691"\w* \w by|strong="H8179"\w* \w the|strong="H4058"\w* \w south|strong="H1864"\w* \w gate|strong="H8179"\w*. \w He|strong="H4058"\w* \w measured|strong="H4058"\w* \w the|strong="H4058"\w* \w south|strong="H1864"\w* \w gate|strong="H8179"\w* according \w to|strong="H8179"\w* these \w measurements|strong="H4060"\w*; +\v 29 \w with|strong="H6242"\w* \w its|strong="H5439"\w* lodges, \w its|strong="H5439"\w* posts, \w and|strong="H6242"\w* \w its|strong="H5439"\w* arches, according \w to|strong="H6242"\w* \w these|strong="H5439"\w* \w measurements|strong="H4060"\w*. \w There|strong="H4060"\w* \w were|strong="H5439"\w* \w windows|strong="H2474"\w* \w in|strong="H4060"\w* \w it|strong="H5439"\w* \w and|strong="H6242"\w* \w in|strong="H4060"\w* \w its|strong="H5439"\w* arches \w all|strong="H5439"\w* \w around|strong="H5439"\w*. \w It|strong="H5439"\w* was \w fifty|strong="H2572"\w* \w cubits|strong="H2568"\w* long, \w and|strong="H6242"\w* \w twenty-five|strong="H6242"\w* \w cubits|strong="H2568"\w* \w wide|strong="H7341"\w*. +\v 30 There \w were|strong="H5439"\w* arches \w all|strong="H5439"\w* \w around|strong="H5439"\w*, \w twenty-five|strong="H6242"\w* \w cubits|strong="H2568"\w* long \w and|strong="H6242"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w* \w wide|strong="H7341"\w*. +\v 31 Its arches \w were|strong="H2691"\w* toward \w the|strong="H4608"\w* \w outer|strong="H2435"\w* \w court|strong="H2691"\w*. \w Palm|strong="H8561"\w* \w trees|strong="H8561"\w* \w were|strong="H2691"\w* \w on|strong="H4609"\w* its posts. \w The|strong="H4608"\w* \w ascent|strong="H4608"\w* \w to|strong="H4608"\w* it \w had|strong="H4608"\w* \w eight|strong="H8083"\w* \w steps|strong="H4609"\w*. +\p +\v 32 \w He|strong="H4058"\w* brought me into \w the|strong="H1870"\w* \w inner|strong="H6442"\w* \w court|strong="H2691"\w* \w toward|strong="H1870"\w* \w the|strong="H1870"\w* \w east|strong="H6921"\w*. \w He|strong="H4058"\w* \w measured|strong="H4058"\w* \w the|strong="H1870"\w* \w gate|strong="H8179"\w* according \w to|strong="H1870"\w* these \w measurements|strong="H4060"\w*; +\v 33 \w with|strong="H6242"\w* \w its|strong="H5439"\w* lodges, \w its|strong="H5439"\w* posts, \w and|strong="H6242"\w* \w its|strong="H5439"\w* arches, according \w to|strong="H6242"\w* \w these|strong="H5439"\w* \w measurements|strong="H4060"\w*. \w There|strong="H4060"\w* \w were|strong="H5439"\w* \w windows|strong="H2474"\w* \w in|strong="H4060"\w* \w it|strong="H5439"\w* \w and|strong="H6242"\w* \w in|strong="H4060"\w* \w its|strong="H5439"\w* arches \w all|strong="H5439"\w* \w around|strong="H5439"\w*. \w It|strong="H5439"\w* was \w fifty|strong="H2572"\w* \w cubits|strong="H2568"\w* long, \w and|strong="H6242"\w* \w twenty-five|strong="H6242"\w* \w cubits|strong="H2568"\w* \w wide|strong="H7341"\w*. +\v 34 Its arches \w were|strong="H2691"\w* toward \w the|strong="H4608"\w* \w outer|strong="H2435"\w* \w court|strong="H2691"\w*. \w Palm|strong="H8561"\w* \w trees|strong="H8561"\w* \w were|strong="H2691"\w* \w on|strong="H4609"\w* its posts \w on|strong="H4609"\w* this \w side|strong="H6311"\w* \w and|strong="H8561"\w* \w on|strong="H4609"\w* \w that|strong="H2691"\w* \w side|strong="H6311"\w*. \w The|strong="H4608"\w* \w ascent|strong="H4608"\w* \w to|strong="H4608"\w* it \w had|strong="H4608"\w* \w eight|strong="H8083"\w* \w steps|strong="H4609"\w*. +\p +\v 35 \w He|strong="H4058"\w* brought me \w to|strong="H8179"\w* \w the|strong="H4058"\w* \w north|strong="H6828"\w* \w gate|strong="H8179"\w*, \w and|strong="H6828"\w* \w he|strong="H4058"\w* \w measured|strong="H4058"\w* \w it|strong="H4058"\w* according \w to|strong="H8179"\w* these \w measurements|strong="H4060"\w*— +\v 36 \w its|strong="H5439"\w* lodges, \w its|strong="H5439"\w* posts, \w and|strong="H6242"\w* \w its|strong="H5439"\w* arches. There \w were|strong="H5439"\w* \w windows|strong="H2474"\w* \w in|strong="H2568"\w* \w it|strong="H5439"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*. \w The|strong="H5439"\w* length was \w fifty|strong="H2572"\w* \w cubits|strong="H2568"\w* \w and|strong="H6242"\w* \w the|strong="H5439"\w* \w width|strong="H7341"\w* \w twenty-five|strong="H6242"\w* \w cubits|strong="H2568"\w*. +\v 37 Its posts \w were|strong="H2691"\w* toward \w the|strong="H4608"\w* \w outer|strong="H2435"\w* \w court|strong="H2691"\w*. \w Palm|strong="H8561"\w* \w trees|strong="H8561"\w* \w were|strong="H2691"\w* \w on|strong="H4609"\w* its posts \w on|strong="H4609"\w* this \w side|strong="H6311"\w* \w and|strong="H8561"\w* \w on|strong="H4609"\w* \w that|strong="H2691"\w* \w side|strong="H6311"\w*. \w The|strong="H4608"\w* \w ascent|strong="H4608"\w* \w to|strong="H4608"\w* it \w had|strong="H4608"\w* \w eight|strong="H8083"\w* \w steps|strong="H4609"\w*. +\p +\v 38 \w A|strong="H3068"\w* \w room|strong="H3957"\w* \w with|strong="H8033"\w* its \w door|strong="H6607"\w* \w was|strong="H8179"\w* \w by|strong="H8179"\w* \w the|strong="H8033"\w* posts \w at|strong="H8033"\w* \w the|strong="H8033"\w* \w gates|strong="H8179"\w*. \w They|strong="H8033"\w* \w washed|strong="H1740"\w* \w the|strong="H8033"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w there|strong="H8033"\w*. +\v 39 \w In|strong="H7979"\w* \w the|strong="H7819"\w* porch \w of|strong="H8179"\w* \w the|strong="H7819"\w* \w gate|strong="H8179"\w* \w were|strong="H2403"\w* \w two|strong="H8147"\w* \w tables|strong="H7979"\w* \w on|strong="H7979"\w* this \w side|strong="H6311"\w* \w and|strong="H5930"\w* \w two|strong="H8147"\w* \w tables|strong="H7979"\w* \w on|strong="H7979"\w* \w that|strong="H8179"\w* \w side|strong="H6311"\w*, \w on|strong="H7979"\w* \w which|strong="H8179"\w* \w to|strong="H8179"\w* \w kill|strong="H7819"\w* \w the|strong="H7819"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w the|strong="H7819"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w*, \w and|strong="H5930"\w* \w the|strong="H7819"\w* trespass \w offering|strong="H5930"\w*. +\v 40 \w On|strong="H5927"\w* \w the|strong="H5927"\w* \w one|strong="H8147"\w* \w side|strong="H3802"\w* \w outside|strong="H2351"\w*, \w as|strong="H5927"\w* \w one|strong="H8147"\w* \w goes|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H5927"\w* \w entry|strong="H6607"\w* \w of|strong="H8179"\w* \w the|strong="H5927"\w* \w gate|strong="H8179"\w* \w toward|strong="H5927"\w* \w the|strong="H5927"\w* \w north|strong="H6828"\w*, \w were|strong="H8147"\w* \w two|strong="H8147"\w* \w tables|strong="H7979"\w*; \w and|strong="H5927"\w* \w on|strong="H5927"\w* \w the|strong="H5927"\w* \w other|strong="H8147"\w* \w side|strong="H3802"\w*, \w which|strong="H8179"\w* \w belonged|strong="H5927"\w* \w to|strong="H5927"\w* \w the|strong="H5927"\w* porch \w of|strong="H8179"\w* \w the|strong="H5927"\w* \w gate|strong="H8179"\w*, \w were|strong="H8147"\w* \w two|strong="H8147"\w* \w tables|strong="H7979"\w*. +\v 41 Four \w tables|strong="H7979"\w* \w were|strong="H8179"\w* \w on|strong="H7979"\w* this \w side|strong="H3802"\w*, \w and|strong="H8179"\w* four \w tables|strong="H7979"\w* \w on|strong="H7979"\w* \w that|strong="H8179"\w* \w side|strong="H3802"\w*, \w by|strong="H8179"\w* \w the|strong="H7819"\w* \w side|strong="H3802"\w* \w of|strong="H8179"\w* \w the|strong="H7819"\w* \w gate|strong="H8179"\w*: \w eight|strong="H8083"\w* \w tables|strong="H7979"\w*, \w on|strong="H7979"\w* \w which|strong="H8179"\w* \w they|strong="H8179"\w* \w killed|strong="H7819"\w* \w the|strong="H7819"\w* sacrifices. +\v 42 There \w were|strong="H3627"\w* four \w cut|strong="H1496"\w* \w stone|strong="H1496"\w* \w tables|strong="H7979"\w* \w for|strong="H3627"\w* \w the|strong="H7819"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w*, \w a|strong="H3068"\w* cubit \w and|strong="H5930"\w* \w a|strong="H3068"\w* \w half|strong="H2677"\w* long, \w a|strong="H3068"\w* cubit \w and|strong="H5930"\w* \w a|strong="H3068"\w* \w half|strong="H2677"\w* \w wide|strong="H7341"\w*, \w and|strong="H5930"\w* \w one|strong="H7341"\w* cubit \w high|strong="H1363"\w*. \w They|strong="H5930"\w* \w laid|strong="H3240"\w* \w the|strong="H7819"\w* \w instruments|strong="H3627"\w* \w with|strong="H3627"\w* \w which|strong="H3627"\w* \w they|strong="H5930"\w* \w killed|strong="H7819"\w* \w the|strong="H7819"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w and|strong="H5930"\w* \w the|strong="H7819"\w* \w sacrifice|strong="H2077"\w* \w on|strong="H3627"\w* \w them|strong="H7819"\w*. +\v 43 \w The|strong="H5439"\w* \w hooks|strong="H8240"\w*, \w a|strong="H3068"\w* \w hand|strong="H2948"\w* width \w long|strong="H2948"\w*, \w were|strong="H1004"\w* \w fastened|strong="H3559"\w* \w within|strong="H1004"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*. \w The|strong="H5439"\w* \w meat|strong="H1320"\w* \w of|strong="H1004"\w* \w the|strong="H5439"\w* \w offering|strong="H7133"\w* \w was|strong="H1004"\w* \w on|strong="H1004"\w* \w the|strong="H5439"\w* \w tables|strong="H7979"\w*. +\p +\v 44 \w Outside|strong="H2351"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w inner|strong="H6442"\w* \w gate|strong="H8179"\w* \w were|strong="H1870"\w* \w rooms|strong="H3957"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* \w singers|strong="H7891"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w inner|strong="H6442"\w* \w court|strong="H2691"\w*, \w which|strong="H3957"\w* \w was|strong="H1870"\w* \w at|strong="H6440"\w* \w the|strong="H6440"\w* \w side|strong="H3802"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w north|strong="H6828"\w* \w gate|strong="H8179"\w*. \w They|strong="H6440"\w* \w faced|strong="H6440"\w* \w toward|strong="H1870"\w* \w the|strong="H6440"\w* \w south|strong="H1864"\w*. One \w at|strong="H6440"\w* \w the|strong="H6440"\w* \w side|strong="H3802"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w east|strong="H6921"\w* \w gate|strong="H8179"\w* \w faced|strong="H6440"\w* \w toward|strong="H1870"\w* \w the|strong="H6440"\w* \w north|strong="H6828"\w*. +\v 45 \w He|strong="H1004"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H6440"\w*, “\w This|strong="H2090"\w* \w room|strong="H1004"\w*, \w which|strong="H1004"\w* \w faces|strong="H6440"\w* \w toward|strong="H1870"\w* \w the|strong="H6440"\w* \w south|strong="H1864"\w*, \w is|strong="H1870"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* \w priests|strong="H3548"\w* \w who|strong="H3548"\w* \w perform|strong="H8104"\w* \w the|strong="H6440"\w* \w duty|strong="H4931"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w*. +\v 46 \w The|strong="H6440"\w* \w room|strong="H3957"\w* \w which|strong="H3068"\w* \w faces|strong="H6440"\w* \w toward|strong="H1870"\w* \w the|strong="H6440"\w* \w north|strong="H6828"\w* \w is|strong="H3068"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* \w priests|strong="H3548"\w* \w who|strong="H3068"\w* \w perform|strong="H8104"\w* \w the|strong="H6440"\w* \w duty|strong="H4931"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w*. \w These|strong="H1992"\w* \w are|strong="H1992"\w* \w the|strong="H6440"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Zadok|strong="H6659"\w*, \w who|strong="H3068"\w* \w from|strong="H6440"\w* among \w the|strong="H6440"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w* \w come|strong="H7131"\w* \w near|strong="H7131"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3068"\w* \w minister|strong="H8334"\w* \w to|strong="H3068"\w* \w him|strong="H6440"\w*.” +\v 47 \w He|strong="H1004"\w* \w measured|strong="H4058"\w* \w the|strong="H6440"\w* \w court|strong="H2691"\w*, \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* cubits \w long|strong="H6440"\w* \w and|strong="H3967"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* cubits \w wide|strong="H7341"\w*, \w square|strong="H7251"\w*. \w The|strong="H6440"\w* \w altar|strong="H4196"\w* \w was|strong="H1004"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w*. +\p +\v 48 Then \w he|strong="H2568"\w* brought \w me|strong="H1004"\w* \w to|strong="H1004"\w* \w the|strong="H4058"\w* porch \w of|strong="H1004"\w* \w the|strong="H4058"\w* \w house|strong="H1004"\w*, \w and|strong="H1004"\w* \w measured|strong="H4058"\w* \w each|strong="H6311"\w* post \w of|strong="H1004"\w* \w the|strong="H4058"\w* porch, \w five|strong="H2568"\w* \w cubits|strong="H2568"\w* \w on|strong="H1004"\w* \w this|strong="H1004"\w* \w side|strong="H6311"\w*, \w and|strong="H1004"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w* \w on|strong="H1004"\w* \w that|strong="H8179"\w* \w side|strong="H6311"\w*. \w The|strong="H4058"\w* \w width|strong="H7341"\w* \w of|strong="H1004"\w* \w the|strong="H4058"\w* \w gate|strong="H8179"\w* \w was|strong="H1004"\w* \w three|strong="H7969"\w* \w cubits|strong="H2568"\w* \w on|strong="H1004"\w* \w this|strong="H1004"\w* \w side|strong="H6311"\w* \w and|strong="H1004"\w* \w three|strong="H7969"\w* \w cubits|strong="H2568"\w* \w on|strong="H1004"\w* \w that|strong="H8179"\w* \w side|strong="H6311"\w*. +\v 49 \w The|strong="H5927"\w* length \w of|strong="H5982"\w* \w the|strong="H5927"\w* porch \w was|strong="H5982"\w* \w twenty|strong="H6242"\w* cubits \w and|strong="H6242"\w* \w the|strong="H5927"\w* \w width|strong="H7341"\w* \w eleven|strong="H6249"\w* cubits, even \w by|strong="H5927"\w* \w the|strong="H5927"\w* \w steps|strong="H4609"\w* \w by|strong="H5927"\w* which \w they|strong="H5927"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w it|strong="H5927"\w*. \w There|strong="H5927"\w* were \w pillars|strong="H5982"\w* \w by|strong="H5927"\w* \w the|strong="H5927"\w* \w posts|strong="H5982"\w*, \w one|strong="H7341"\w* \w on|strong="H5927"\w* \w this|strong="H5927"\w* \w side|strong="H6311"\w*, \w and|strong="H6242"\w* another \w on|strong="H5927"\w* \w that|strong="H5927"\w* \w side|strong="H6311"\w*. +\c 41 +\p +\v 1 \w He|strong="H4058"\w* brought me \w to|strong="H8337"\w* \w the|strong="H4058"\w* \w nave|strong="H1964"\w* \w and|strong="H7341"\w* \w measured|strong="H4058"\w* \w the|strong="H4058"\w* posts, \w six|strong="H8337"\w* cubits \w wide|strong="H7341"\w* \w on|strong="H8337"\w* \w the|strong="H4058"\w* \w one|strong="H7341"\w* \w side|strong="H6311"\w* \w and|strong="H7341"\w* \w six|strong="H8337"\w* cubits \w wide|strong="H7341"\w* \w on|strong="H8337"\w* \w the|strong="H4058"\w* \w other|strong="H6311"\w* \w side|strong="H6311"\w*, which was \w the|strong="H4058"\w* \w width|strong="H7341"\w* \w of|strong="H7341"\w* \w the|strong="H4058"\w* tent. +\v 2 \w The|strong="H4058"\w* \w width|strong="H7341"\w* \w of|strong="H7341"\w* \w the|strong="H4058"\w* \w entrance|strong="H6607"\w* \w was|strong="H3802"\w* \w ten|strong="H6235"\w* \w cubits|strong="H2568"\w*,\f + \fr 41:2 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w and|strong="H6242"\w* \w the|strong="H4058"\w* \w sides|strong="H3802"\w* \w of|strong="H7341"\w* \w the|strong="H4058"\w* \w entrance|strong="H6607"\w* were \w five|strong="H2568"\w* \w cubits|strong="H2568"\w* \w on|strong="H7341"\w* \w the|strong="H4058"\w* \w one|strong="H7341"\w* \w side|strong="H3802"\w*, \w and|strong="H6242"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w* \w on|strong="H7341"\w* \w the|strong="H4058"\w* \w other|strong="H6311"\w* \w side|strong="H3802"\w*. \w He|strong="H2568"\w* \w measured|strong="H4058"\w* \w its|strong="H4058"\w* length, forty \w cubits|strong="H2568"\w*, \w and|strong="H6242"\w* \w the|strong="H4058"\w* \w width|strong="H7341"\w*, \w twenty|strong="H6242"\w* \w cubits|strong="H2568"\w*. +\p +\v 3 Then \w he|strong="H8147"\w* \w went|strong="H8147"\w* \w inward|strong="H6441"\w* \w and|strong="H8147"\w* \w measured|strong="H4058"\w* \w each|strong="H8147"\w* post \w of|strong="H7341"\w* \w the|strong="H4058"\w* \w entrance|strong="H6607"\w*, \w two|strong="H8147"\w* cubits; \w and|strong="H8147"\w* \w the|strong="H4058"\w* \w entrance|strong="H6607"\w*, \w six|strong="H8337"\w* cubits; \w and|strong="H8147"\w* \w the|strong="H4058"\w* \w width|strong="H7341"\w* \w of|strong="H7341"\w* \w the|strong="H4058"\w* \w entrance|strong="H6607"\w*, \w seven|strong="H7651"\w* cubits. +\v 4 \w He|strong="H6440"\w* \w measured|strong="H4058"\w* \w its|strong="H4058"\w* length, \w twenty|strong="H6242"\w* cubits, \w and|strong="H6242"\w* \w the|strong="H6440"\w* \w width|strong="H7341"\w*, \w twenty|strong="H6242"\w* cubits, \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w nave|strong="H1964"\w*. \w He|strong="H6440"\w* said \w to|strong="H6440"\w* \w me|strong="H6440"\w*, “\w This|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H6440"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w*.” +\p +\v 5 Then \w he|strong="H1004"\w* \w measured|strong="H4058"\w* \w the|strong="H5439"\w* \w wall|strong="H7023"\w* \w of|strong="H1004"\w* \w the|strong="H5439"\w* \w house|strong="H1004"\w*, \w six|strong="H8337"\w* cubits; \w and|strong="H1004"\w* \w the|strong="H5439"\w* \w width|strong="H7341"\w* \w of|strong="H1004"\w* \w every|strong="H5439"\w* \w side|strong="H5439"\w* \w room|strong="H1004"\w*, four cubits, \w all|strong="H5439"\w* \w around|strong="H5439"\w* \w the|strong="H5439"\w* \w house|strong="H1004"\w* \w on|strong="H1004"\w* \w every|strong="H5439"\w* \w side|strong="H5439"\w*. +\v 6 \w The|strong="H5439"\w* \w side|strong="H5439"\w* \w rooms|strong="H1004"\w* \w were|strong="H1961"\w* \w in|strong="H1004"\w* \w three|strong="H7969"\w* \w stories|strong="H6763"\w*, \w one|strong="H3808"\w* \w over|strong="H6763"\w* \w another|strong="H6763"\w*, \w and|strong="H1004"\w* \w thirty|strong="H7970"\w* \w in|strong="H1004"\w* \w each|strong="H5439"\w* \w story|strong="H6471"\w*. \w They|strong="H3808"\w* entered \w into|strong="H1961"\w* \w the|strong="H5439"\w* \w wall|strong="H7023"\w* \w which|strong="H1004"\w* \w belonged|strong="H1961"\w* \w to|strong="H1961"\w* \w the|strong="H5439"\w* \w house|strong="H1004"\w* \w for|strong="H1004"\w* \w the|strong="H5439"\w* \w side|strong="H5439"\w* \w rooms|strong="H1004"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*, \w that|strong="H3808"\w* \w they|strong="H3808"\w* might \w be|strong="H1961"\w* supported \w and|strong="H1004"\w* \w not|strong="H3808"\w* penetrate \w the|strong="H5439"\w* \w wall|strong="H7023"\w* \w of|strong="H1004"\w* \w the|strong="H5439"\w* \w house|strong="H1004"\w*. +\v 7 \w The|strong="H5921"\w* \w side|strong="H5439"\w* \w rooms|strong="H1004"\w* \w were|strong="H1004"\w* \w wider|strong="H7337"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w higher|strong="H4605"\w* levels, \w because|strong="H3588"\w* \w the|strong="H5921"\w* \w walls|strong="H6763"\w* \w were|strong="H1004"\w* narrower \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w higher|strong="H4605"\w* levels. \w Therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w width|strong="H7341"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w increased|strong="H5927"\w* \w upward|strong="H4605"\w*; \w and|strong="H1004"\w* \w so|strong="H3651"\w* \w one|strong="H3588"\w* \w went|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w lowest|strong="H8481"\w* level \w to|strong="H5927"\w* \w the|strong="H5921"\w* \w highest|strong="H5945"\w* \w through|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H8484"\w* level. +\p +\v 8 \w I|strong="H7200"\w* \w saw|strong="H7200"\w* also \w that|strong="H7200"\w* \w the|strong="H7200"\w* \w house|strong="H1004"\w* had \w a|strong="H3068"\w* \w raised|strong="H1363"\w* base \w all|strong="H5439"\w* \w around|strong="H5439"\w*. \w The|strong="H7200"\w* \w foundations|strong="H4328"\w* \w of|strong="H1004"\w* \w the|strong="H7200"\w* \w side|strong="H5439"\w* \w rooms|strong="H1004"\w* \w were|strong="H1004"\w* \w a|strong="H3068"\w* \w full|strong="H4393"\w* \w reed|strong="H7070"\w* \w of|strong="H1004"\w* \w six|strong="H8337"\w* great cubits. +\v 9 \w The|strong="H2351"\w* \w thickness|strong="H7341"\w* \w of|strong="H1004"\w* \w the|strong="H2351"\w* \w outer|strong="H2351"\w* \w wall|strong="H7023"\w* \w of|strong="H1004"\w* \w the|strong="H2351"\w* \w side|strong="H6763"\w* \w rooms|strong="H1004"\w* \w was|strong="H1004"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w*. \w That|strong="H1004"\w* \w which|strong="H1004"\w* \w was|strong="H1004"\w* \w left|strong="H3240"\w* \w was|strong="H1004"\w* \w the|strong="H2351"\w* \w place|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H2351"\w* \w side|strong="H6763"\w* \w rooms|strong="H1004"\w* \w that|strong="H1004"\w* belonged \w to|strong="H1004"\w* \w the|strong="H2351"\w* \w house|strong="H1004"\w*. +\v 10 Between \w the|strong="H5439"\w* \w rooms|strong="H3957"\w* \w was|strong="H1004"\w* \w a|strong="H3068"\w* \w width|strong="H7341"\w* \w of|strong="H1004"\w* \w twenty|strong="H6242"\w* cubits \w around|strong="H5439"\w* \w the|strong="H5439"\w* \w house|strong="H1004"\w* \w on|strong="H1004"\w* \w every|strong="H5439"\w* \w side|strong="H5439"\w*. +\v 11 \w The|strong="H1870"\w* \w doors|strong="H6607"\w* \w of|strong="H1870"\w* \w the|strong="H1870"\w* \w side|strong="H5439"\w* \w rooms|strong="H5439"\w* \w were|strong="H5439"\w* \w toward|strong="H1870"\w* \w an|strong="H6828"\w* \w open|strong="H4725"\w* \w area|strong="H5439"\w* \w that|strong="H4725"\w* \w was|strong="H4725"\w* \w left|strong="H3240"\w*, \w one|strong="H5439"\w* \w door|strong="H6607"\w* \w toward|strong="H1870"\w* \w the|strong="H1870"\w* \w north|strong="H6828"\w*, \w and|strong="H2568"\w* \w another|strong="H6763"\w* \w door|strong="H6607"\w* \w toward|strong="H1870"\w* \w the|strong="H1870"\w* \w south|strong="H1864"\w*. \w The|strong="H1870"\w* \w width|strong="H7341"\w* \w of|strong="H1870"\w* \w the|strong="H1870"\w* \w open|strong="H4725"\w* \w area|strong="H5439"\w* \w was|strong="H4725"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*. +\p +\v 12 \w The|strong="H6440"\w* \w building|strong="H1146"\w* \w that|strong="H3220"\w* \w was|strong="H1870"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w separate|strong="H1508"\w* \w place|strong="H1508"\w* \w at|strong="H6440"\w* \w the|strong="H6440"\w* \w side|strong="H6285"\w* \w toward|strong="H1870"\w* \w the|strong="H6440"\w* \w west|strong="H3220"\w* \w was|strong="H1870"\w* \w seventy|strong="H7657"\w* \w cubits|strong="H2568"\w* \w wide|strong="H7341"\w*; \w and|strong="H2568"\w* \w the|strong="H6440"\w* \w wall|strong="H7023"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w building|strong="H1146"\w* \w was|strong="H1870"\w* \w five|strong="H2568"\w* \w cubits|strong="H2568"\w* \w thick|strong="H7341"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*, \w and|strong="H2568"\w* \w its|strong="H5439"\w* length \w ninety|strong="H8673"\w* \w cubits|strong="H2568"\w*. +\p +\v 13 So \w he|strong="H1004"\w* \w measured|strong="H4058"\w* \w the|strong="H4058"\w* \w temple|strong="H1004"\w*, \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* cubits long; \w and|strong="H3967"\w* \w the|strong="H4058"\w* \w separate|strong="H1508"\w* \w place|strong="H1004"\w*, \w and|strong="H3967"\w* \w the|strong="H4058"\w* \w building|strong="H1140"\w*, \w with|strong="H1004"\w* \w its|strong="H4058"\w* \w walls|strong="H7023"\w*, \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* cubits long; +\v 14 also \w the|strong="H6440"\w* \w width|strong="H7341"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w temple|strong="H1004"\w*, \w and|strong="H3967"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w separate|strong="H1508"\w* \w place|strong="H1004"\w* \w toward|strong="H6440"\w* \w the|strong="H6440"\w* \w east|strong="H6921"\w*, \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* cubits. +\p +\v 15 \w He|strong="H5921"\w* \w measured|strong="H4058"\w* \w the|strong="H6440"\w* \w length|strong="H5921"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w building|strong="H1146"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w separate|strong="H1508"\w* \w place|strong="H1508"\w* \w which|strong="H1508"\w* \w was|strong="H6440"\w* \w at|strong="H5921"\w* \w its|strong="H5921"\w* back, \w and|strong="H3967"\w* \w its|strong="H5921"\w* galleries \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w one|strong="H3967"\w* \w side|strong="H6311"\w* \w and|strong="H3967"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w other|strong="H6311"\w* \w side|strong="H6311"\w*, \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* cubits \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w inner|strong="H6442"\w* \w temple|strong="H1964"\w*, \w and|strong="H3967"\w* \w the|strong="H6440"\w* porches \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w court|strong="H2691"\w*, +\v 16 \w the|strong="H5704"\w* \w thresholds|strong="H5592"\w*, \w and|strong="H6086"\w* \w the|strong="H5704"\w* \w closed|strong="H3680"\w* \w windows|strong="H2474"\w*, \w and|strong="H6086"\w* \w the|strong="H5704"\w* galleries \w around|strong="H5439"\w* \w on|strong="H7969"\w* \w their|strong="H3680"\w* \w three|strong="H7969"\w* \w stories|strong="H7969"\w*, \w opposite|strong="H5048"\w* \w the|strong="H5704"\w* \w threshold|strong="H5592"\w*, \w with|strong="H3680"\w* \w wood|strong="H6086"\w* ceilings \w all|strong="H5439"\w* \w around|strong="H5439"\w*, \w and|strong="H6086"\w* \w from|strong="H5704"\w* \w the|strong="H5704"\w* ground \w up|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w windows|strong="H2474"\w*, (now \w the|strong="H5704"\w* \w windows|strong="H2474"\w* \w were|strong="H7969"\w* \w covered|strong="H3680"\w*), +\v 17 \w to|strong="H5704"\w* \w the|strong="H3605"\w* space \w above|strong="H5921"\w* \w the|strong="H3605"\w* \w door|strong="H6607"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w inner|strong="H6442"\w* \w house|strong="H1004"\w*, \w and|strong="H1004"\w* \w outside|strong="H2351"\w*, \w and|strong="H1004"\w* \w by|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w wall|strong="H7023"\w* \w all|strong="H3605"\w* \w around|strong="H5439"\w* \w inside|strong="H1004"\w* \w and|strong="H1004"\w* \w outside|strong="H2351"\w*, \w by|strong="H5921"\w* \w measure|strong="H4060"\w*. +\v 18 \w It|strong="H6213"\w* \w was|strong="H6440"\w* \w made|strong="H6213"\w* \w with|strong="H6213"\w* \w cherubim|strong="H3742"\w* \w and|strong="H6440"\w* \w palm|strong="H8561"\w* \w trees|strong="H8561"\w*. \w A|strong="H3068"\w* \w palm|strong="H8561"\w* \w tree|strong="H8561"\w* \w was|strong="H6440"\w* between \w cherub|strong="H3742"\w* \w and|strong="H6440"\w* \w cherub|strong="H3742"\w*, \w and|strong="H6440"\w* \w every|strong="H6213"\w* \w cherub|strong="H3742"\w* \w had|strong="H3742"\w* \w two|strong="H8147"\w* \w faces|strong="H6440"\w*, +\v 19 \w so|strong="H6213"\w* \w that|strong="H3605"\w* \w there|strong="H3605"\w* \w was|strong="H1004"\w* \w the|strong="H3605"\w* \w face|strong="H6440"\w* \w of|strong="H1004"\w* \w a|strong="H3068"\w* \w man|strong="H3605"\w* \w toward|strong="H6440"\w* \w the|strong="H3605"\w* \w palm|strong="H8561"\w* \w tree|strong="H8561"\w* \w on|strong="H1004"\w* \w the|strong="H3605"\w* \w one|strong="H3605"\w* \w side|strong="H5439"\w*, \w and|strong="H1004"\w* \w the|strong="H3605"\w* \w face|strong="H6440"\w* \w of|strong="H1004"\w* \w a|strong="H3068"\w* \w young|strong="H3715"\w* \w lion|strong="H3715"\w* \w toward|strong="H6440"\w* \w the|strong="H3605"\w* \w palm|strong="H8561"\w* \w tree|strong="H8561"\w* \w on|strong="H1004"\w* \w the|strong="H3605"\w* \w other|strong="H3605"\w* \w side|strong="H5439"\w*. \w It|strong="H6213"\w* \w was|strong="H1004"\w* \w made|strong="H6213"\w* \w like|strong="H1004"\w* \w this|strong="H6213"\w* \w through|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w all|strong="H3605"\w* \w around|strong="H5439"\w*. +\v 20 \w Cherubim|strong="H3742"\w* \w and|strong="H6213"\w* \w palm|strong="H8561"\w* \w trees|strong="H8561"\w* \w were|strong="H3742"\w* \w made|strong="H6213"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* ground \w to|strong="H5704"\w* \w above|strong="H5921"\w* \w the|strong="H5921"\w* \w door|strong="H6607"\w*. \w The|strong="H5921"\w* \w wall|strong="H7023"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w temple|strong="H1964"\w* \w was|strong="H3742"\w* \w like|strong="H5704"\w* \w this|strong="H6213"\w*. +\p +\v 21 \w The|strong="H6440"\w* \w door|strong="H4201"\w* \w posts|strong="H4201"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w nave|strong="H1964"\w* \w were|strong="H6944"\w* \w squared|strong="H7251"\w*. \w As|strong="H6440"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w nave|strong="H1964"\w*, \w its|strong="H6440"\w* \w appearance|strong="H4758"\w* \w was|strong="H6440"\w* \w as|strong="H6440"\w* \w the|strong="H6440"\w* \w appearance|strong="H4758"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w temple|strong="H1964"\w*. +\v 22 \w The|strong="H6440"\w* \w altar|strong="H4196"\w* \w was|strong="H3068"\w* \w of|strong="H3068"\w* \w wood|strong="H6086"\w*, \w three|strong="H7969"\w* cubits \w high|strong="H1364"\w*, \w and|strong="H3068"\w* \w its|strong="H6440"\w* length \w two|strong="H8147"\w* cubits. \w Its|strong="H6440"\w* \w corners|strong="H4740"\w*, \w its|strong="H6440"\w* base, \w and|strong="H3068"\w* \w its|strong="H6440"\w* \w walls|strong="H7023"\w* \w were|strong="H8147"\w* \w of|strong="H3068"\w* \w wood|strong="H6086"\w*. \w He|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H6440"\w*, “\w This|strong="H2088"\w* \w is|strong="H3068"\w* \w the|strong="H6440"\w* \w table|strong="H7979"\w* \w that|strong="H3068"\w* \w is|strong="H3068"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*.” +\v 23 \w The|strong="H8147"\w* \w temple|strong="H1964"\w* \w and|strong="H8147"\w* \w the|strong="H8147"\w* \w sanctuary|strong="H6944"\w* \w had|strong="H1817"\w* \w two|strong="H8147"\w* \w doors|strong="H1817"\w*. +\v 24 \w The|strong="H8147"\w* \w doors|strong="H1817"\w* \w had|strong="H1817"\w* \w two|strong="H8147"\w* \w leaves|strong="H1817"\w* \w each|strong="H1817"\w*, \w two|strong="H8147"\w* \w turning|strong="H4142"\w* \w leaves|strong="H1817"\w*: \w two|strong="H8147"\w* \w for|strong="H8147"\w* \w the|strong="H8147"\w* \w one|strong="H8147"\w* \w door|strong="H1817"\w*, \w and|strong="H8147"\w* \w two|strong="H8147"\w* \w leaves|strong="H1817"\w* \w for|strong="H8147"\w* \w the|strong="H8147"\w* \w other|strong="H8147"\w*. +\v 25 \w There|strong="H3742"\w* \w were|strong="H3742"\w* \w made|strong="H6213"\w* \w on|strong="H6213"\w* \w them|strong="H6440"\w*, \w on|strong="H6213"\w* \w the|strong="H6440"\w* \w doors|strong="H1817"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w nave|strong="H1964"\w*, \w cherubim|strong="H3742"\w* \w and|strong="H6086"\w* \w palm|strong="H8561"\w* \w trees|strong="H6086"\w*, \w like|strong="H6213"\w* \w those|strong="H6213"\w* \w made|strong="H6213"\w* \w on|strong="H6213"\w* \w the|strong="H6440"\w* \w walls|strong="H7023"\w*. \w There|strong="H3742"\w* \w was|strong="H6440"\w* \w a|strong="H3068"\w* \w threshold|strong="H5646"\w* \w of|strong="H6440"\w* \w wood|strong="H6086"\w* \w on|strong="H6213"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* porch \w outside|strong="H2351"\w*. +\v 26 There \w were|strong="H1004"\w* closed \w windows|strong="H2474"\w* \w and|strong="H1004"\w* \w palm|strong="H8561"\w* \w trees|strong="H8561"\w* \w on|strong="H1004"\w* \w the|strong="H1004"\w* \w one|strong="H6763"\w* \w side|strong="H3802"\w* \w and|strong="H1004"\w* \w on|strong="H1004"\w* \w the|strong="H1004"\w* \w other|strong="H6311"\w* \w side|strong="H3802"\w*, \w on|strong="H1004"\w* \w the|strong="H1004"\w* \w sides|strong="H6763"\w* \w of|strong="H1004"\w* \w the|strong="H1004"\w* porch. \w This|strong="H1004"\w* \w is|strong="H1004"\w* how \w the|strong="H1004"\w* \w side|strong="H3802"\w* \w rooms|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H1004"\w* \w temple|strong="H1004"\w* \w and|strong="H1004"\w* \w the|strong="H1004"\w* \w thresholds|strong="H5646"\w* \w were|strong="H1004"\w* arranged. +\c 42 +\p +\v 1 \w Then|strong="H3318"\w* \w he|strong="H3318"\w* \w brought|strong="H3318"\w* \w me|strong="H5048"\w* \w out|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H3318"\w* \w outer|strong="H2435"\w* \w court|strong="H2691"\w*, \w the|strong="H3318"\w* \w way|strong="H1870"\w* \w toward|strong="H1870"\w* \w the|strong="H3318"\w* \w north|strong="H6828"\w*. \w Then|strong="H3318"\w* \w he|strong="H3318"\w* \w brought|strong="H3318"\w* \w me|strong="H5048"\w* \w into|strong="H3318"\w* \w the|strong="H3318"\w* \w room|strong="H3957"\w* \w that|strong="H2691"\w* \w was|strong="H1870"\w* \w opposite|strong="H5048"\w* \w the|strong="H3318"\w* \w separate|strong="H1508"\w* \w place|strong="H1508"\w*, \w and|strong="H1870"\w* \w which|strong="H3957"\w* \w was|strong="H1870"\w* \w opposite|strong="H5048"\w* \w the|strong="H3318"\w* \w building|strong="H1146"\w* \w toward|strong="H1870"\w* \w the|strong="H3318"\w* \w north|strong="H6828"\w*. +\v 2 \w Facing|strong="H6440"\w* \w the|strong="H6440"\w* length \w of|strong="H6440"\w* \w one|strong="H3967"\w* \w hundred|strong="H3967"\w* cubits\f + \fr 42:2 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w was|strong="H6440"\w* \w the|strong="H6440"\w* \w north|strong="H6828"\w* \w door|strong="H6607"\w*, \w and|strong="H3967"\w* \w the|strong="H6440"\w* \w width|strong="H7341"\w* \w was|strong="H6440"\w* \w fifty|strong="H2572"\w* cubits. +\v 3 \w Opposite|strong="H5048"\w* \w the|strong="H6440"\w* \w twenty|strong="H6242"\w* cubits \w which|strong="H7531"\w* belonged \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w inner|strong="H6442"\w* \w court|strong="H2691"\w*, \w and|strong="H6242"\w* \w opposite|strong="H5048"\w* \w the|strong="H6440"\w* \w pavement|strong="H7531"\w* \w which|strong="H7531"\w* belonged \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w outer|strong="H2435"\w* \w court|strong="H2691"\w*, \w was|strong="H6440"\w* gallery \w against|strong="H6440"\w* gallery \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w three|strong="H7992"\w* stories. +\v 4 \w Before|strong="H6440"\w* \w the|strong="H6440"\w* \w rooms|strong="H3957"\w* \w was|strong="H1870"\w* \w a|strong="H3068"\w* \w walk|strong="H4109"\w* \w of|strong="H6440"\w* \w ten|strong="H6235"\w* cubits’ \w width|strong="H7341"\w* \w inward|strong="H6442"\w*, \w a|strong="H3068"\w* \w way|strong="H1870"\w* \w of|strong="H6440"\w* \w one|strong="H7341"\w* cubit; \w and|strong="H6440"\w* \w their|strong="H6440"\w* \w doors|strong="H6607"\w* \w were|strong="H1870"\w* \w toward|strong="H1870"\w* \w the|strong="H6440"\w* \w north|strong="H6828"\w*. +\v 5 \w Now|strong="H3588"\w* \w the|strong="H3588"\w* \w upper|strong="H5945"\w* \w rooms|strong="H3957"\w* \w were|strong="H2007"\w* \w shorter|strong="H7114"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* galleries took away from \w these|strong="H2007"\w* \w more|strong="H3588"\w* \w than|strong="H3588"\w* from \w the|strong="H3588"\w* \w lower|strong="H8481"\w* \w and|strong="H3957"\w* \w the|strong="H3588"\w* \w middle|strong="H8484"\w* \w in|strong="H7114"\w* \w the|strong="H3588"\w* \w building|strong="H1146"\w*. +\v 6 \w For|strong="H3588"\w* \w they|strong="H3588"\w* \w were|strong="H2007"\w* \w in|strong="H5921"\w* \w three|strong="H8027"\w* stories, \w and|strong="H5982"\w* \w they|strong="H3588"\w* didn’t \w have|strong="H3588"\w* \w pillars|strong="H5982"\w* \w as|strong="H3651"\w* \w the|strong="H5921"\w* \w pillars|strong="H5982"\w* \w of|strong="H5982"\w* \w the|strong="H5921"\w* \w courts|strong="H2691"\w*. \w Therefore|strong="H3651"\w* \w the|strong="H5921"\w* uppermost \w was|strong="H5982"\w* set back \w more|strong="H3651"\w* \w than|strong="H5921"\w* \w the|strong="H5921"\w* \w lowest|strong="H8481"\w* \w and|strong="H5982"\w* \w the|strong="H5921"\w* \w middle|strong="H8484"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* ground. +\v 7 \w The|strong="H6440"\w* \w wall|strong="H1447"\w* \w that|strong="H2691"\w* \w was|strong="H1870"\w* \w outside|strong="H2351"\w* \w by|strong="H1870"\w* \w the|strong="H6440"\w* \w side|strong="H5980"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w rooms|strong="H3957"\w*, \w toward|strong="H1870"\w* \w the|strong="H6440"\w* \w outer|strong="H2435"\w* \w court|strong="H2691"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w rooms|strong="H3957"\w*, \w was|strong="H1870"\w* \w fifty|strong="H2572"\w* cubits \w long|strong="H6440"\w*. +\v 8 \w For|strong="H3588"\w* \w the|strong="H6440"\w* \w length|strong="H5921"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w rooms|strong="H3957"\w* \w that|strong="H3588"\w* \w were|strong="H2009"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w outer|strong="H2435"\w* \w court|strong="H2691"\w* \w was|strong="H6440"\w* \w fifty|strong="H2572"\w* cubits. \w Behold|strong="H2009"\w*, \w those|strong="H5921"\w* \w facing|strong="H6440"\w* \w the|strong="H6440"\w* \w temple|strong="H1964"\w* \w were|strong="H2009"\w* \w one|strong="H3588"\w* \w hundred|strong="H3967"\w* cubits. +\v 9 \w From|strong="H8478"\w* \w under|strong="H8478"\w* \w these|strong="H2007"\w* \w rooms|strong="H3957"\w* \w was|strong="H2691"\w* \w the|strong="H8478"\w* \w entry|strong="H3996"\w* \w on|strong="H8478"\w* \w the|strong="H8478"\w* \w east|strong="H6921"\w* \w side|strong="H2007"\w*, \w as|strong="H8478"\w* one goes into \w them|strong="H2007"\w* \w from|strong="H8478"\w* \w the|strong="H8478"\w* \w outer|strong="H2435"\w* \w court|strong="H2691"\w*. +\p +\v 10 \w In|strong="H6440"\w* \w the|strong="H6440"\w* \w thickness|strong="H7341"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w wall|strong="H1444"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w court|strong="H2691"\w* \w toward|strong="H1870"\w* \w the|strong="H6440"\w* \w east|strong="H6921"\w*, \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w separate|strong="H1508"\w* \w place|strong="H1508"\w*, \w and|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w building|strong="H1146"\w*, \w there|strong="H6440"\w* \w were|strong="H1870"\w* \w rooms|strong="H3957"\w*. +\v 11 \w The|strong="H3605"\w* \w way|strong="H1870"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w* \w was|strong="H1870"\w* \w like|strong="H3651"\w* \w the|strong="H3605"\w* \w appearance|strong="H4758"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w rooms|strong="H3957"\w* \w which|strong="H3957"\w* \w were|strong="H1870"\w* \w toward|strong="H1870"\w* \w the|strong="H3605"\w* \w north|strong="H6828"\w*. \w Their|strong="H3605"\w* length \w and|strong="H4941"\w* \w width|strong="H7341"\w* \w were|strong="H1870"\w* \w the|strong="H3605"\w* \w same|strong="H3651"\w*. \w All|strong="H3605"\w* \w their|strong="H3605"\w* \w exits|strong="H4161"\w* had \w the|strong="H3605"\w* \w same|strong="H3651"\w* arrangement \w and|strong="H4941"\w* \w doors|strong="H6607"\w*. +\v 12 \w Like|strong="H1870"\w* \w the|strong="H6440"\w* \w doors|strong="H6607"\w* \w of|strong="H7218"\w* \w the|strong="H6440"\w* \w rooms|strong="H3957"\w* \w that|strong="H3957"\w* \w were|strong="H7218"\w* \w toward|strong="H1870"\w* \w the|strong="H6440"\w* \w south|strong="H1864"\w* \w was|strong="H7218"\w* \w a|strong="H3068"\w* \w door|strong="H6607"\w* \w at|strong="H6440"\w* \w the|strong="H6440"\w* \w head|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w*, even \w the|strong="H6440"\w* \w way|strong="H1870"\w* \w directly|strong="H1903"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w wall|strong="H1448"\w* \w toward|strong="H1870"\w* \w the|strong="H6440"\w* \w east|strong="H6921"\w*, \w as|strong="H6440"\w* \w one|strong="H6607"\w* enters into \w them|strong="H6440"\w*. +\p +\v 13 \w Then|strong="H3588"\w* \w he|strong="H3588"\w* said \w to|strong="H3068"\w* \w me|strong="H6440"\w*, “\w The|strong="H6440"\w* \w north|strong="H6828"\w* \w rooms|strong="H3957"\w* \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w south|strong="H1864"\w* \w rooms|strong="H3957"\w*, \w which|strong="H3068"\w* \w are|strong="H3068"\w* \w opposite|strong="H6440"\w* \w the|strong="H6440"\w* \w separate|strong="H1508"\w* \w place|strong="H4725"\w*, \w are|strong="H3068"\w* \w the|strong="H6440"\w* \w holy|strong="H6944"\w* \w rooms|strong="H3957"\w*, \w where|strong="H8033"\w* \w the|strong="H6440"\w* \w priests|strong="H3548"\w* \w who|strong="H3068"\w* \w are|strong="H3068"\w* \w near|strong="H7138"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w shall|strong="H3548"\w* eat \w the|strong="H6440"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w*. \w There|strong="H8033"\w* \w they|strong="H3588"\w* \w shall|strong="H3548"\w* \w lay|strong="H3240"\w* \w the|strong="H6440"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w*, \w with|strong="H3068"\w* \w the|strong="H6440"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w the|strong="H6440"\w* \w sin|strong="H2403"\w* \w offering|strong="H4503"\w*, \w and|strong="H3068"\w* \w the|strong="H6440"\w* trespass \w offering|strong="H4503"\w*; \w for|strong="H3588"\w* \w the|strong="H6440"\w* \w place|strong="H4725"\w* \w is|strong="H3068"\w* \w holy|strong="H6944"\w*. +\v 14 \w When|strong="H3588"\w* \w the|strong="H3588"\w* \w priests|strong="H3548"\w* enter \w in|strong="H3847"\w*, \w then|strong="H3318"\w* \w they|strong="H3588"\w* \w shall|strong="H3548"\w* \w not|strong="H3808"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H5971"\w* \w the|strong="H3588"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w* \w into|strong="H3318"\w* \w the|strong="H3588"\w* \w outer|strong="H2435"\w* \w court|strong="H2691"\w* \w until|strong="H3588"\w* \w they|strong="H3588"\w* \w lay|strong="H3240"\w* \w their|strong="H3588"\w* garments \w in|strong="H3847"\w* \w which|strong="H5971"\w* \w they|strong="H3588"\w* \w minister|strong="H8334"\w* \w there|strong="H8033"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H5971"\w* \w holy|strong="H6944"\w*. \w Then|strong="H3318"\w* \w they|strong="H3588"\w* \w shall|strong="H3548"\w* \w put|strong="H3847"\w* \w on|strong="H3847"\w* other garments, \w and|strong="H3548"\w* \w shall|strong="H3548"\w* \w approach|strong="H7126"\w* \w that|strong="H3588"\w* \w which|strong="H5971"\w* \w is|strong="H8033"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w*.” +\p +\v 15 Now \w when|strong="H3615"\w* \w he|strong="H1004"\w* had \w finished|strong="H3615"\w* \w measuring|strong="H4060"\w* \w the|strong="H6440"\w* \w inner|strong="H6442"\w* \w house|strong="H1004"\w*, \w he|strong="H1004"\w* \w brought|strong="H3318"\w* \w me|strong="H6440"\w* \w out|strong="H3318"\w* \w by|strong="H1870"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w gate|strong="H8179"\w* \w which|strong="H1004"\w* \w faces|strong="H6440"\w* \w toward|strong="H1870"\w* \w the|strong="H6440"\w* \w east|strong="H6921"\w*, \w and|strong="H1004"\w* \w measured|strong="H4058"\w* \w it|strong="H5439"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*. +\v 16 \w He|strong="H2568"\w* \w measured|strong="H4058"\w* \w on|strong="H4060"\w* \w the|strong="H5439"\w* \w east|strong="H6921"\w* \w side|strong="H5439"\w* \w with|strong="H7070"\w* \w the|strong="H5439"\w* \w measuring|strong="H4060"\w* \w reed|strong="H7070"\w* \w five|strong="H2568"\w* hundred \w reeds|strong="H7070"\w*, \w with|strong="H7070"\w* \w the|strong="H5439"\w* \w measuring|strong="H4060"\w* \w reed|strong="H7070"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*. +\v 17 \w He|strong="H2568"\w* \w measured|strong="H4058"\w* \w on|strong="H4060"\w* \w the|strong="H5439"\w* \w north|strong="H6828"\w* \w side|strong="H5439"\w* \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w reeds|strong="H7070"\w* \w with|strong="H7070"\w* \w the|strong="H5439"\w* \w measuring|strong="H4060"\w* \w reed|strong="H7070"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*. +\v 18 \w He|strong="H2568"\w* \w measured|strong="H4058"\w* \w on|strong="H4060"\w* \w the|strong="H4058"\w* \w south|strong="H1864"\w* \w side|strong="H7307"\w* \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w reeds|strong="H7070"\w* \w with|strong="H7070"\w* \w the|strong="H4058"\w* \w measuring|strong="H4060"\w* \w reed|strong="H7070"\w*. +\v 19 \w He|strong="H2568"\w* \w turned|strong="H5437"\w* \w about|strong="H5437"\w* \w to|strong="H3220"\w* \w the|strong="H5437"\w* \w west|strong="H3220"\w* \w side|strong="H7307"\w*, \w and|strong="H3967"\w* \w measured|strong="H4058"\w* \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w reeds|strong="H7070"\w* \w with|strong="H3220"\w* \w the|strong="H5437"\w* \w measuring|strong="H4060"\w* \w reed|strong="H7070"\w*. +\v 20 \w He|strong="H2568"\w* \w measured|strong="H4058"\w* \w it|strong="H5439"\w* \w on|strong="H5439"\w* \w the|strong="H5439"\w* four \w sides|strong="H5439"\w*. \w It|strong="H5439"\w* \w had|strong="H6944"\w* \w a|strong="H3068"\w* \w wall|strong="H2346"\w* \w around|strong="H5439"\w* \w it|strong="H5439"\w*, \w the|strong="H5439"\w* length \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w cubits|strong="H2568"\w*, \w and|strong="H3967"\w* \w the|strong="H5439"\w* \w width|strong="H7341"\w* \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w cubits|strong="H2568"\w*, \w to|strong="H7307"\w* make \w a|strong="H3068"\w* separation \w between|strong="H7307"\w* \w that|strong="H6944"\w* \w which|strong="H7307"\w* \w was|strong="H7307"\w* \w holy|strong="H6944"\w* \w and|strong="H3967"\w* \w that|strong="H6944"\w* \w which|strong="H7307"\w* \w was|strong="H7307"\w* \w common|strong="H2455"\w*. +\c 43 +\p +\v 1 Afterward \w he|strong="H3212"\w* \w brought|strong="H3212"\w* \w me|strong="H3212"\w* \w to|strong="H3212"\w* \w the|strong="H1870"\w* \w gate|strong="H8179"\w*, even \w the|strong="H1870"\w* \w gate|strong="H8179"\w* \w that|strong="H8179"\w* looks \w toward|strong="H1870"\w* \w the|strong="H1870"\w* \w east|strong="H6921"\w*. +\v 2 \w Behold|strong="H2009"\w*, \w the|strong="H1870"\w* \w glory|strong="H3519"\w* \w of|strong="H6963"\w* \w the|strong="H1870"\w* God \w of|strong="H6963"\w* \w Israel|strong="H3478"\w* \w came|strong="H3478"\w* \w from|strong="H3478"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H6963"\w* \w the|strong="H1870"\w* \w east|strong="H6921"\w*. \w His|strong="H3478"\w* \w voice|strong="H6963"\w* \w was|strong="H3478"\w* \w like|strong="H3478"\w* \w the|strong="H1870"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w many|strong="H7227"\w* \w waters|strong="H4325"\w*; \w and|strong="H3478"\w* \w the|strong="H1870"\w* earth \w was|strong="H3478"\w* illuminated \w with|strong="H3478"\w* \w his|strong="H3478"\w* \w glory|strong="H3519"\w*. +\v 3 \w It|strong="H7200"\w* \w was|strong="H5892"\w* \w like|strong="H4758"\w* \w the|strong="H6440"\w* \w appearance|strong="H4758"\w* \w of|strong="H5892"\w* \w the|strong="H6440"\w* \w vision|strong="H4758"\w* \w which|strong="H5892"\w* \w I|strong="H7200"\w* \w saw|strong="H7200"\w*, even according \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w vision|strong="H4758"\w* \w that|strong="H7200"\w* \w I|strong="H7200"\w* \w saw|strong="H7200"\w* \w when|strong="H7200"\w* \w I|strong="H7200"\w* \w came|strong="H5307"\w* \w to|strong="H6440"\w* \w destroy|strong="H7843"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w*; \w and|strong="H5892"\w* \w the|strong="H6440"\w* \w visions|strong="H7200"\w* \w were|strong="H5892"\w* \w like|strong="H4758"\w* \w the|strong="H6440"\w* \w vision|strong="H4758"\w* \w that|strong="H7200"\w* \w I|strong="H7200"\w* \w saw|strong="H7200"\w* \w by|strong="H5892"\w* \w the|strong="H6440"\w* \w river|strong="H5104"\w* \w Chebar|strong="H3529"\w*; \w and|strong="H5892"\w* \w I|strong="H7200"\w* \w fell|strong="H5307"\w* \w on|strong="H5307"\w* \w my|strong="H7200"\w* \w face|strong="H6440"\w*. +\v 4 \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w came|strong="H3068"\w* \w into|strong="H3519"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w by|strong="H3068"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w gate|strong="H8179"\w* \w which|strong="H3068"\w* \w faces|strong="H6440"\w* \w toward|strong="H1870"\w* \w the|strong="H6440"\w* \w east|strong="H6921"\w*. +\v 5 \w The|strong="H5375"\w* \w Spirit|strong="H7307"\w* \w took|strong="H5375"\w* \w me|strong="H1004"\w* \w up|strong="H5375"\w* \w and|strong="H3068"\w* \w brought|strong="H5375"\w* \w me|strong="H1004"\w* \w into|strong="H3519"\w* \w the|strong="H5375"\w* \w inner|strong="H6442"\w* \w court|strong="H2691"\w*; \w and|strong="H3068"\w* \w behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w filled|strong="H4390"\w* \w the|strong="H5375"\w* \w house|strong="H1004"\w*. +\p +\v 6 \w I|strong="H8085"\w* \w heard|strong="H8085"\w* \w one|strong="H1961"\w* \w speaking|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w* \w out|strong="H1696"\w* \w of|strong="H1004"\w* \w the|strong="H8085"\w* \w house|strong="H1004"\w*, \w and|strong="H1004"\w* \w a|strong="H3068"\w* man \w stood|strong="H5975"\w* \w by|strong="H5975"\w* \w me|strong="H1696"\w*. +\v 7 \w He|strong="H8033"\w* said \w to|strong="H3478"\w* \w me|strong="H3808"\w*, “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w this|strong="H8432"\w* \w is|strong="H8034"\w* \w the|strong="H8432"\w* \w place|strong="H4725"\w* \w of|strong="H1121"\w* \w my|strong="H2930"\w* \w throne|strong="H3678"\w* \w and|strong="H1121"\w* \w the|strong="H8432"\w* \w place|strong="H4725"\w* \w of|strong="H1121"\w* \w the|strong="H8432"\w* \w soles|strong="H3709"\w* \w of|strong="H1121"\w* \w my|strong="H2930"\w* \w feet|strong="H7272"\w*, \w where|strong="H8033"\w* \w I|strong="H3808"\w* \w will|strong="H4428"\w* \w dwell|strong="H7931"\w* \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w forever|strong="H5769"\w*. \w The|strong="H8432"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w will|strong="H4428"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w defile|strong="H2930"\w* \w my|strong="H2930"\w* \w holy|strong="H6944"\w* \w name|strong="H8034"\w*, \w neither|strong="H3808"\w* \w they|strong="H1992"\w* \w nor|strong="H3808"\w* \w their|strong="H1992"\w* \w kings|strong="H4428"\w*, \w by|strong="H3478"\w* \w their|strong="H1992"\w* \w prostitution|strong="H2184"\w* \w and|strong="H1121"\w* \w by|strong="H3478"\w* \w the|strong="H8432"\w* \w dead|strong="H6297"\w* \w bodies|strong="H6297"\w* \w of|strong="H1121"\w* \w their|strong="H1992"\w* \w kings|strong="H4428"\w* \w in|strong="H3478"\w* \w their|strong="H1992"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*; +\v 8 \w in|strong="H6213"\w* \w their|strong="H5414"\w* \w setting|strong="H5414"\w* \w of|strong="H8034"\w* \w their|strong="H5414"\w* \w threshold|strong="H5592"\w* \w by|strong="H8034"\w* \w my|strong="H5414"\w* \w threshold|strong="H5592"\w* \w and|strong="H6213"\w* \w their|strong="H5414"\w* \w door|strong="H5592"\w* \w post|strong="H4201"\w* beside \w my|strong="H5414"\w* \w door|strong="H5592"\w* \w post|strong="H4201"\w*. \w There|strong="H8034"\w* \w was|strong="H8034"\w* \w a|strong="H3068"\w* \w wall|strong="H7023"\w* between \w me|strong="H5414"\w* \w and|strong="H6213"\w* \w them|strong="H5414"\w*; \w and|strong="H6213"\w* \w they|strong="H6213"\w* \w have|strong="H5414"\w* \w defiled|strong="H2930"\w* \w my|strong="H5414"\w* \w holy|strong="H6944"\w* \w name|strong="H8034"\w* \w by|strong="H8034"\w* \w their|strong="H5414"\w* \w abominations|strong="H8441"\w* \w which|strong="H7023"\w* \w they|strong="H6213"\w* \w have|strong="H5414"\w* \w committed|strong="H6213"\w*. \w Therefore|strong="H6213"\w* \w I|strong="H5414"\w* \w have|strong="H5414"\w* consumed \w them|strong="H5414"\w* \w in|strong="H6213"\w* \w my|strong="H5414"\w* anger. +\v 9 \w Now|strong="H6258"\w* \w let|strong="H6258"\w* \w them|strong="H8432"\w* \w put|strong="H7368"\w* \w away|strong="H7368"\w* \w their|strong="H8432"\w* \w prostitution|strong="H2184"\w*, \w and|strong="H4428"\w* \w the|strong="H8432"\w* \w dead|strong="H6297"\w* \w bodies|strong="H6297"\w* \w of|strong="H4428"\w* \w their|strong="H8432"\w* \w kings|strong="H4428"\w* \w far|strong="H7368"\w* \w from|strong="H4480"\w* \w me|strong="H4480"\w*. \w Then|strong="H6258"\w* \w I|strong="H6258"\w* \w will|strong="H4428"\w* \w dwell|strong="H7931"\w* \w among|strong="H8432"\w* \w them|strong="H8432"\w* \w forever|strong="H5769"\w*. +\p +\v 10 “\w You|strong="H5046"\w*, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w show|strong="H5046"\w* \w the|strong="H5046"\w* \w house|strong="H1004"\w* \w to|strong="H3478"\w* \w the|strong="H5046"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w that|strong="H3478"\w* \w they|strong="H3478"\w* \w may|strong="H3478"\w* \w be|strong="H1121"\w* \w ashamed|strong="H3637"\w* \w of|strong="H1121"\w* \w their|strong="H5046"\w* \w iniquities|strong="H5771"\w*; \w and|strong="H1121"\w* \w let|strong="H5046"\w* \w them|strong="H5046"\w* \w measure|strong="H4058"\w* \w the|strong="H5046"\w* \w pattern|strong="H8508"\w*. +\v 11 If \w they|strong="H6213"\w* \w are|strong="H5869"\w* \w ashamed|strong="H3637"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w that|strong="H3045"\w* \w they|strong="H6213"\w* \w have|strong="H5869"\w* \w done|strong="H6213"\w*, \w make|strong="H6213"\w* \w known|strong="H3045"\w* \w to|strong="H6213"\w* \w them|strong="H6213"\w* \w the|strong="H3605"\w* \w form|strong="H6699"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*, \w its|strong="H3605"\w* \w fashion|strong="H8498"\w*, \w its|strong="H3605"\w* \w exits|strong="H4161"\w*, \w its|strong="H3605"\w* \w entrances|strong="H4126"\w*, \w its|strong="H3605"\w* structure, \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w ordinances|strong="H2708"\w*, \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w forms|strong="H6699"\w*, \w and|strong="H1004"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w laws|strong="H8451"\w*; \w and|strong="H1004"\w* \w write|strong="H3789"\w* \w it|strong="H6213"\w* \w in|strong="H6213"\w* \w their|strong="H3605"\w* \w sight|strong="H5869"\w*, \w that|strong="H3045"\w* \w they|strong="H6213"\w* \w may|strong="H6213"\w* \w keep|strong="H8104"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w form|strong="H6699"\w* \w of|strong="H1004"\w* \w it|strong="H6213"\w*, \w and|strong="H1004"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w ordinances|strong="H2708"\w*, \w and|strong="H1004"\w* \w do|strong="H6213"\w* \w them|strong="H6213"\w*. +\p +\v 12 “\w This|strong="H2063"\w* \w is|strong="H2009"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*. \w On|strong="H5921"\w* \w the|strong="H3605"\w* \w top|strong="H7218"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w mountain|strong="H2022"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w limit|strong="H1366"\w* \w around|strong="H5439"\w* \w it|strong="H5921"\w* \w shall|strong="H1004"\w* \w be|strong="H1004"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w*. \w Behold|strong="H2009"\w*, \w this|strong="H2063"\w* \w is|strong="H2009"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*. +\p +\v 13 “\w These|strong="H2088"\w* \w are|strong="H8193"\w* \w the|strong="H5439"\w* \w measurements|strong="H4060"\w* \w of|strong="H1366"\w* \w the|strong="H5439"\w* \w altar|strong="H4196"\w* \w by|strong="H4196"\w* cubits (\w the|strong="H5439"\w* cubit\f + \fr 43:13 \ft A normal cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. A hand width is about 4.3 inches or 11 cm.\f* \w is|strong="H2088"\w* \w a|strong="H3068"\w* cubit \w and|strong="H4196"\w* \w a|strong="H3068"\w* \w hand|strong="H2948"\w* \w width|strong="H7341"\w*): \w the|strong="H5439"\w* \w bottom|strong="H2436"\w* \w shall|strong="H1366"\w* \w be|strong="H8193"\w* \w a|strong="H3068"\w* cubit, \w and|strong="H4196"\w* \w the|strong="H5439"\w* \w width|strong="H7341"\w* \w a|strong="H3068"\w* cubit, \w and|strong="H4196"\w* \w its|strong="H5439"\w* \w border|strong="H1366"\w* \w around|strong="H5439"\w* \w its|strong="H5439"\w* \w edge|strong="H8193"\w* \w a|strong="H3068"\w* \w span|strong="H2239"\w*;\f + \fr 43:13 \ft A span is the length from the tip of a man’s thumb to the tip of his little finger when his hand is stretched out (about half a cubit, or 9 inches, or 22.8 cm.)\f* \w and|strong="H4196"\w* \w this|strong="H2088"\w* \w shall|strong="H1366"\w* \w be|strong="H8193"\w* \w the|strong="H5439"\w* \w base|strong="H2436"\w* \w of|strong="H1366"\w* \w the|strong="H5439"\w* \w altar|strong="H4196"\w*. +\v 14 \w From|strong="H5704"\w* \w the|strong="H5704"\w* \w bottom|strong="H2436"\w* \w on|strong="H7341"\w* \w the|strong="H5704"\w* ground \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w lower|strong="H8481"\w* \w ledge|strong="H5835"\w* \w shall|strong="H8147"\w* be \w two|strong="H8147"\w* cubits, \w and|strong="H1419"\w* \w the|strong="H5704"\w* \w width|strong="H7341"\w* \w one|strong="H6996"\w* cubit; \w and|strong="H1419"\w* \w from|strong="H5704"\w* \w the|strong="H5704"\w* \w lesser|strong="H6996"\w* \w ledge|strong="H5835"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w greater|strong="H1419"\w* \w ledge|strong="H5835"\w* \w shall|strong="H8147"\w* be four cubits, \w and|strong="H1419"\w* \w the|strong="H5704"\w* \w width|strong="H7341"\w* \w a|strong="H3068"\w* cubit. +\v 15 \w The|strong="H4605"\w* upper altar shall \w be|strong="H7161"\w* four cubits; \w and|strong="H4605"\w* from \w the|strong="H4605"\w* altar hearth \w and|strong="H4605"\w* \w upward|strong="H4605"\w* there shall \w be|strong="H7161"\w* four \w horns|strong="H7161"\w*. +\v 16 \w The|strong="H8147"\w* altar hearth \w shall|strong="H8147"\w* be \w twelve|strong="H8147"\w* cubits long \w by|strong="H8147"\w* \w twelve|strong="H8147"\w* \w wide|strong="H7341"\w*, \w square|strong="H7251"\w* \w in|strong="H8147"\w* its four \w sides|strong="H7253"\w*. +\v 17 \w The|strong="H5439"\w* \w ledge|strong="H5835"\w* \w shall|strong="H1366"\w* be \w fourteen|strong="H6240"\w* cubits long \w by|strong="H4609"\w* \w fourteen|strong="H6240"\w* \w wide|strong="H7341"\w* in \w its|strong="H5439"\w* four \w sides|strong="H5439"\w*; \w and|strong="H6437"\w* \w the|strong="H5439"\w* \w border|strong="H1366"\w* \w about|strong="H5439"\w* \w it|strong="H5439"\w* \w shall|strong="H1366"\w* be \w half|strong="H2677"\w* \w a|strong="H3068"\w* cubit; \w and|strong="H6437"\w* \w its|strong="H5439"\w* \w bottom|strong="H2436"\w* \w shall|strong="H1366"\w* be \w a|strong="H3068"\w* cubit \w around|strong="H5439"\w*; \w and|strong="H6437"\w* \w its|strong="H5439"\w* \w steps|strong="H4609"\w* \w shall|strong="H1366"\w* \w look|strong="H6437"\w* \w toward|strong="H6437"\w* \w the|strong="H5439"\w* \w east|strong="H6921"\w*.” +\p +\v 18 \w He|strong="H3117"\w* said \w to|strong="H5927"\w* \w me|strong="H5921"\w*, “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w the|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w These|strong="H6213"\w* \w are|strong="H3117"\w* \w the|strong="H5921"\w* \w ordinances|strong="H2708"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w when|strong="H3117"\w* \w they|strong="H3117"\w* \w make|strong="H6213"\w* \w it|strong="H5921"\w*, \w to|strong="H5927"\w* \w offer|strong="H5927"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*, \w and|strong="H1121"\w* \w to|strong="H5927"\w* \w sprinkle|strong="H2236"\w* \w blood|strong="H1818"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 19 \w You|strong="H5414"\w* \w shall|strong="H3548"\w* \w give|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H5002"\w* \w Levitical|strong="H3881"\w* \w priests|strong="H3548"\w* \w who|strong="H3548"\w* \w are|strong="H1992"\w* \w of|strong="H1121"\w* \w the|strong="H5002"\w* \w offspring|strong="H2233"\w* \w of|strong="H1121"\w* \w Zadok|strong="H6659"\w*, \w who|strong="H3548"\w* \w are|strong="H1992"\w* \w near|strong="H7138"\w* \w to|strong="H5414"\w* \w me|strong="H5414"\w*, \w to|strong="H5414"\w* \w minister|strong="H8334"\w* \w to|strong="H5414"\w* \w me|strong="H5414"\w*,’ \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, ‘\w a|strong="H3068"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w* \w for|strong="H1121"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*. +\v 20 \w You|strong="H5414"\w* \w shall|strong="H1366"\w* \w take|strong="H3947"\w* \w of|strong="H1366"\w* \w its|strong="H5414"\w* \w blood|strong="H1818"\w* \w and|strong="H1818"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w its|strong="H5414"\w* four \w horns|strong="H7161"\w*, \w and|strong="H1818"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* four \w corners|strong="H6438"\w* \w of|strong="H1366"\w* \w the|strong="H5921"\w* \w ledge|strong="H5835"\w*, \w and|strong="H1818"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*. \w You|strong="H5414"\w* \w shall|strong="H1366"\w* \w cleanse|strong="H2398"\w* \w it|strong="H5414"\w* \w and|strong="H1818"\w* \w make|strong="H5414"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w it|strong="H5414"\w* \w that|strong="H5414"\w* \w way|strong="H5921"\w*. +\v 21 \w You|strong="H3947"\w* \w shall|strong="H1004"\w* also \w take|strong="H3947"\w* \w the|strong="H3947"\w* \w bull|strong="H6499"\w* \w of|strong="H1004"\w* \w the|strong="H3947"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*, \w and|strong="H1004"\w* \w it|strong="H3947"\w* \w shall|strong="H1004"\w* \w be|strong="H1004"\w* \w burned|strong="H8313"\w* \w in|strong="H1004"\w* \w the|strong="H3947"\w* \w appointed|strong="H4662"\w* \w place|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H3947"\w* \w house|strong="H1004"\w*, \w outside|strong="H2351"\w* \w of|strong="H1004"\w* \w the|strong="H3947"\w* \w sanctuary|strong="H4720"\w*. +\p +\v 22 “\w On|strong="H3117"\w* \w the|strong="H3117"\w* \w second|strong="H8145"\w* \w day|strong="H3117"\w* \w you|strong="H3117"\w* \w shall|strong="H3117"\w* \w offer|strong="H7126"\w* \w a|strong="H3068"\w* \w male|strong="H8163"\w* \w goat|strong="H5795"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w* \w for|strong="H4196"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*; \w and|strong="H3117"\w* \w they|strong="H3117"\w* \w shall|strong="H3117"\w* \w cleanse|strong="H2398"\w* \w the|strong="H3117"\w* \w altar|strong="H4196"\w*, \w as|strong="H3117"\w* \w they|strong="H3117"\w* \w cleansed|strong="H2398"\w* \w it|strong="H7126"\w* \w with|strong="H3117"\w* \w the|strong="H3117"\w* \w bull|strong="H6499"\w*. +\v 23 \w When|strong="H3615"\w* \w you|strong="H4480"\w* \w have|strong="H1121"\w* \w finished|strong="H3615"\w* \w cleansing|strong="H2398"\w* \w it|strong="H7126"\w*, \w you|strong="H4480"\w* \w shall|strong="H1121"\w* \w offer|strong="H7126"\w* \w a|strong="H3068"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w* \w and|strong="H1121"\w* \w a|strong="H3068"\w* ram \w out|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w flock|strong="H6629"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*. +\v 24 \w You|strong="H6440"\w* \w shall|strong="H3548"\w* \w bring|strong="H7126"\w* \w them|strong="H5921"\w* \w near|strong="H7126"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w priests|strong="H3548"\w* \w shall|strong="H3548"\w* \w cast|strong="H7993"\w* \w salt|strong="H4417"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w shall|strong="H3548"\w* \w offer|strong="H7126"\w* \w them|strong="H5921"\w* \w up|strong="H5927"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 25 “\w Seven|strong="H7651"\w* \w days|strong="H3117"\w* \w you|strong="H3117"\w* \w shall|strong="H1121"\w* \w prepare|strong="H6213"\w* \w every|strong="H3117"\w* \w day|strong="H3117"\w* \w a|strong="H3068"\w* \w goat|strong="H8163"\w* \w for|strong="H6213"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*. \w They|strong="H3117"\w* \w shall|strong="H1121"\w* \w also|strong="H6213"\w* \w prepare|strong="H6213"\w* \w a|strong="H3068"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w* \w and|strong="H1121"\w* \w a|strong="H3068"\w* ram \w out|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H6213"\w* \w flock|strong="H6629"\w*, \w without|strong="H8549"\w* \w defect|strong="H8549"\w*. +\v 26 \w Seven|strong="H7651"\w* \w days|strong="H3117"\w* \w shall|strong="H3117"\w* \w they|strong="H3117"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H3027"\w* \w the|strong="H3117"\w* \w altar|strong="H4196"\w* \w and|strong="H3117"\w* \w purify|strong="H2891"\w* \w it|strong="H3117"\w*. \w So|strong="H3027"\w* \w shall|strong="H3117"\w* \w they|strong="H3117"\w* \w consecrate|strong="H4390"\w* \w it|strong="H3117"\w*. +\v 27 \w When|strong="H1961"\w* \w they|strong="H3117"\w* \w have|strong="H1961"\w* \w accomplished|strong="H3615"\w* \w the|strong="H5002"\w* \w days|strong="H3117"\w*, \w it|strong="H5921"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w that|strong="H3117"\w* \w on|strong="H5921"\w* \w the|strong="H5002"\w* \w eighth|strong="H8066"\w* \w day|strong="H3117"\w* \w and|strong="H3117"\w* \w onward|strong="H1973"\w*, \w the|strong="H5002"\w* \w priests|strong="H3548"\w* \w shall|strong="H3548"\w* \w make|strong="H6213"\w* \w your|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w* \w on|strong="H5921"\w* \w the|strong="H5002"\w* \w altar|strong="H4196"\w* \w and|strong="H3117"\w* \w your|strong="H5921"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*. \w Then|strong="H1961"\w* \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w accept|strong="H7521"\w* \w you|strong="H5921"\w*,’ \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*.” +\c 44 +\p +\v 1 \w Then|strong="H7725"\w* \w he|strong="H1931"\w* \w brought|strong="H7725"\w* \w me|strong="H7725"\w* \w back|strong="H7725"\w* \w by|strong="H1870"\w* \w the|strong="H7725"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w the|strong="H7725"\w* \w outer|strong="H2435"\w* \w gate|strong="H8179"\w* \w of|strong="H1870"\w* \w the|strong="H7725"\w* \w sanctuary|strong="H4720"\w*, \w which|strong="H1931"\w* looks \w toward|strong="H1870"\w* \w the|strong="H7725"\w* \w east|strong="H6921"\w*; \w and|strong="H7725"\w* \w it|strong="H1931"\w* \w was|strong="H1931"\w* \w shut|strong="H5462"\w*. +\v 2 \w Yahweh|strong="H3068"\w* said \w to|strong="H3478"\w* \w me|strong="H1961"\w*, “\w This|strong="H2088"\w* \w gate|strong="H8179"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w shut|strong="H5462"\w*. \w It|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w opened|strong="H6605"\w*, \w no|strong="H3808"\w* \w man|strong="H2088"\w* \w shall|strong="H3068"\w* enter \w in|strong="H3478"\w* \w by|strong="H3068"\w* \w it|strong="H3588"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3588"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, \w has|strong="H3068"\w* entered \w in|strong="H3478"\w* \w by|strong="H3068"\w* \w it|strong="H3588"\w*. \w Therefore|strong="H3588"\w* \w it|strong="H3588"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w shut|strong="H5462"\w*. +\v 3 \w As|strong="H3068"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* \w prince|strong="H5387"\w*, \w he|strong="H1931"\w* \w shall|strong="H3068"\w* \w sit|strong="H3427"\w* \w in|strong="H3427"\w* \w it|strong="H1931"\w* \w as|strong="H3068"\w* \w prince|strong="H5387"\w* \w to|strong="H3318"\w* \w eat|strong="H3899"\w* \w bread|strong="H3899"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*. \w He|strong="H1931"\w* \w shall|strong="H3068"\w* enter \w by|strong="H3068"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* porch \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w gate|strong="H8179"\w*, \w and|strong="H3068"\w* \w shall|strong="H3068"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w the|strong="H6440"\w* \w same|strong="H1931"\w* \w way|strong="H1870"\w*.” +\p +\v 4 \w Then|strong="H2009"\w* \w he|strong="H3068"\w* \w brought|strong="H3068"\w* \w me|strong="H6440"\w* \w by|strong="H3068"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w north|strong="H6828"\w* \w gate|strong="H8179"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w*; \w and|strong="H3068"\w* \w I|strong="H2009"\w* \w looked|strong="H7200"\w*, \w and|strong="H3068"\w* \w behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w* \w filled|strong="H4390"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*; \w so|strong="H7200"\w* \w I|strong="H2009"\w* \w fell|strong="H5307"\w* \w on|strong="H1870"\w* \w my|strong="H3068"\w* \w face|strong="H6440"\w*. +\p +\v 5 \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H7200"\w*, “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w mark|strong="H7760"\w* \w well|strong="H5869"\w*, \w and|strong="H1121"\w* \w see|strong="H7200"\w* \w with|strong="H1004"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w*, \w and|strong="H1121"\w* \w hear|strong="H8085"\w* \w with|strong="H1004"\w* \w your|strong="H3068"\w* ears \w all|strong="H3605"\w* \w that|strong="H7200"\w* \w I|strong="H7760"\w* \w tell|strong="H1696"\w* \w you|strong="H3605"\w* \w concerning|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w ordinances|strong="H2708"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w laws|strong="H8451"\w*; \w and|strong="H1121"\w* \w mark|strong="H7760"\w* \w well|strong="H5869"\w* \w the|strong="H3605"\w* \w entrance|strong="H3996"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*, \w with|strong="H1004"\w* \w every|strong="H3605"\w* exit \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H4720"\w*. +\v 6 \w You|strong="H3605"\w* \w shall|strong="H3478"\w* \w tell|strong="H3605"\w* \w the|strong="H3605"\w* \w rebellious|strong="H4805"\w*, \w even|strong="H3541"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, ‘\w The|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w You|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, let \w that|strong="H3605"\w* \w be|strong="H3478"\w* \w enough|strong="H7227"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w abominations|strong="H8441"\w*, +\v 7 \w in|strong="H1004"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w have|strong="H1961"\w* \w brought|strong="H7126"\w* \w in|strong="H1004"\w* \w foreigners|strong="H1121"\w*, \w uncircumcised|strong="H6189"\w* \w in|strong="H1004"\w* \w heart|strong="H3820"\w* \w and|strong="H1121"\w* \w uncircumcised|strong="H6189"\w* \w in|strong="H1004"\w* \w flesh|strong="H1320"\w*, \w to|strong="H1961"\w* \w be|strong="H1961"\w* \w in|strong="H1004"\w* \w my|strong="H3605"\w* \w sanctuary|strong="H4720"\w*, \w to|strong="H1961"\w* \w profane|strong="H2490"\w* \w it|strong="H7126"\w*, even \w my|strong="H3605"\w* \w house|strong="H1004"\w*, \w when|strong="H1961"\w* \w you|strong="H3605"\w* \w offer|strong="H7126"\w* \w my|strong="H3605"\w* \w bread|strong="H3899"\w*, \w the|strong="H3605"\w* \w fat|strong="H2459"\w* \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w blood|strong="H1818"\w*; \w and|strong="H1121"\w* \w they|strong="H3605"\w* \w have|strong="H1961"\w* \w broken|strong="H6565"\w* \w my|strong="H3605"\w* \w covenant|strong="H1285"\w*, \w to|strong="H1961"\w* add \w to|strong="H1961"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w abominations|strong="H8441"\w*. +\v 8 \w You|strong="H7760"\w* \w have|strong="H3808"\w* \w not|strong="H3808"\w* \w performed|strong="H7760"\w* \w the|strong="H8104"\w* \w duty|strong="H4931"\w* \w of|strong="H6944"\w* \w my|strong="H8104"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w*; \w but|strong="H3808"\w* \w you|strong="H7760"\w* \w have|strong="H3808"\w* \w set|strong="H7760"\w* performers \w of|strong="H6944"\w* \w my|strong="H8104"\w* \w duty|strong="H4931"\w* \w in|strong="H3808"\w* \w my|strong="H8104"\w* \w sanctuary|strong="H6944"\w* \w for|strong="H3808"\w* yourselves.” +\v 9 \w The|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*, “\w No|strong="H3808"\w* \w foreigner|strong="H1121"\w*, \w uncircumcised|strong="H6189"\w* \w in|strong="H3478"\w* \w heart|strong="H3820"\w* \w and|strong="H1121"\w* \w uncircumcised|strong="H6189"\w* \w in|strong="H3478"\w* \w flesh|strong="H1320"\w*, \w shall|strong="H1121"\w* enter \w into|strong="H8432"\w* \w my|strong="H3605"\w* \w sanctuary|strong="H4720"\w*, \w of|strong="H1121"\w* \w any|strong="H3605"\w* \w foreigners|strong="H1121"\w* \w who|strong="H3605"\w* \w are|strong="H1121"\w* \w among|strong="H8432"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\p +\v 10 “‘“\w But|strong="H3588"\w* \w the|strong="H5921"\w* \w Levites|strong="H3881"\w* \w who|strong="H3478"\w* \w went|strong="H3478"\w* \w far|strong="H7368"\w* \w from|strong="H5921"\w* \w me|strong="H5921"\w* \w when|strong="H3588"\w* \w Israel|strong="H3478"\w* \w went|strong="H3478"\w* \w astray|strong="H8582"\w*, \w who|strong="H3478"\w* \w went|strong="H3478"\w* \w astray|strong="H8582"\w* \w from|strong="H5921"\w* \w me|strong="H5921"\w* \w after|strong="H5921"\w* \w their|strong="H5375"\w* \w idols|strong="H1544"\w*, \w they|strong="H3588"\w* \w will|strong="H3478"\w* \w bear|strong="H5375"\w* \w their|strong="H5375"\w* \w iniquity|strong="H5771"\w*. +\v 11 \w Yet|strong="H5975"\w* \w they|strong="H1992"\w* \w shall|strong="H5971"\w* \w be|strong="H1961"\w* \w ministers|strong="H8334"\w* \w in|strong="H1004"\w* \w my|strong="H1961"\w* \w sanctuary|strong="H4720"\w*, \w having|strong="H1961"\w* \w oversight|strong="H6486"\w* \w at|strong="H1004"\w* \w the|strong="H6440"\w* \w gates|strong="H8179"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w*, \w and|strong="H1004"\w* \w ministering|strong="H8334"\w* \w in|strong="H1004"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w*. \w They|strong="H1992"\w* \w shall|strong="H5971"\w* \w kill|strong="H7819"\w* \w the|strong="H6440"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w and|strong="H1004"\w* \w the|strong="H6440"\w* \w sacrifice|strong="H2077"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w*, \w and|strong="H1004"\w* \w they|strong="H1992"\w* \w shall|strong="H5971"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w them|strong="H1992"\w* \w to|strong="H1961"\w* \w minister|strong="H8334"\w* \w to|strong="H1961"\w* \w them|strong="H1992"\w*. +\v 12 \w Because|strong="H5921"\w* \w they|strong="H3651"\w* \w ministered|strong="H8334"\w* \w to|strong="H3478"\w* \w them|strong="H5921"\w* \w before|strong="H6440"\w* \w their|strong="H5375"\w* \w idols|strong="H1544"\w*, \w and|strong="H3478"\w* \w became|strong="H1961"\w* \w a|strong="H3068"\w* \w stumbling|strong="H4383"\w* \w block|strong="H4383"\w* \w of|strong="H1004"\w* \w iniquity|strong="H5771"\w* \w to|strong="H3478"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w therefore|strong="H3651"\w* \w I|strong="H5921"\w* \w have|strong="H1961"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w my|strong="H5921"\w* \w hand|strong="H3027"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w*,” \w says|strong="H5002"\w* \w the|strong="H6440"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, “\w and|strong="H3478"\w* \w they|strong="H3651"\w* \w will|strong="H1961"\w* \w bear|strong="H5375"\w* \w their|strong="H5375"\w* \w iniquity|strong="H5771"\w*. +\v 13 \w They|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w come|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H6213"\w* \w me|strong="H5921"\w*, \w to|strong="H6213"\w* \w execute|strong="H6213"\w* \w the|strong="H3605"\w* office \w of|strong="H5921"\w* \w priest|strong="H3547"\w* \w to|strong="H6213"\w* \w me|strong="H5921"\w*, \w nor|strong="H3808"\w* \w to|strong="H6213"\w* \w come|strong="H5066"\w* \w near|strong="H5066"\w* \w to|strong="H6213"\w* \w any|strong="H3605"\w* \w of|strong="H5921"\w* \w my|strong="H3605"\w* \w holy|strong="H6944"\w* \w things|strong="H6944"\w*, \w to|strong="H6213"\w* \w the|strong="H3605"\w* \w things|strong="H6944"\w* \w that|strong="H3605"\w* \w are|strong="H6213"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w*; \w but|strong="H3808"\w* \w they|strong="H3808"\w* \w will|strong="H3808"\w* \w bear|strong="H5375"\w* \w their|strong="H3605"\w* \w shame|strong="H3639"\w* \w and|strong="H6213"\w* \w their|strong="H3605"\w* \w abominations|strong="H8441"\w* \w which|strong="H3605"\w* \w they|strong="H3808"\w* \w have|strong="H3605"\w* \w committed|strong="H6213"\w*. +\v 14 \w Yet|strong="H3605"\w* \w I|strong="H5414"\w* \w will|strong="H1004"\w* \w make|strong="H6213"\w* \w them|strong="H5414"\w* \w performers|strong="H6213"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w duty|strong="H4931"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w*, \w for|strong="H6213"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w service|strong="H5656"\w* \w and|strong="H1004"\w* \w for|strong="H6213"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w will|strong="H1004"\w* \w be|strong="H5414"\w* \w done|strong="H6213"\w* therein. +\p +\v 15 “‘“\w But|strong="H1992"\w* \w the|strong="H6440"\w* \w Levitical|strong="H3881"\w* \w priests|strong="H3548"\w*, \w the|strong="H6440"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Zadok|strong="H6659"\w*, \w who|strong="H3548"\w* \w performed|strong="H8104"\w* \w the|strong="H6440"\w* \w duty|strong="H4931"\w* \w of|strong="H1121"\w* \w my|strong="H8104"\w* \w sanctuary|strong="H4720"\w* \w when|strong="H1121"\w* \w the|strong="H6440"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w went|strong="H3478"\w* \w astray|strong="H8582"\w* \w from|strong="H6440"\w* \w me|strong="H6440"\w*, \w shall|strong="H3548"\w* \w come|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H3478"\w* \w me|strong="H6440"\w* \w to|strong="H3478"\w* \w minister|strong="H8334"\w* \w to|strong="H3478"\w* \w me|strong="H6440"\w*. \w They|strong="H1992"\w* \w shall|strong="H3548"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w* \w to|strong="H3478"\w* \w offer|strong="H7126"\w* \w to|strong="H3478"\w* \w me|strong="H6440"\w* \w the|strong="H6440"\w* \w fat|strong="H2459"\w* \w and|strong="H1121"\w* \w the|strong="H6440"\w* \w blood|strong="H1818"\w*,” \w says|strong="H5002"\w* \w the|strong="H6440"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\v 16 “\w They|strong="H1992"\w* shall enter into \w my|strong="H8104"\w* \w sanctuary|strong="H4720"\w*, \w and|strong="H7126"\w* \w they|strong="H1992"\w* shall \w come|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H8104"\w* \w my|strong="H8104"\w* \w table|strong="H7979"\w*, \w to|strong="H8104"\w* \w minister|strong="H8334"\w* \w to|strong="H8104"\w* \w me|strong="H8104"\w*, \w and|strong="H7126"\w* \w they|strong="H1992"\w* shall \w keep|strong="H8104"\w* \w my|strong="H8104"\w* instruction. +\p +\v 17 “‘“\w It|strong="H5921"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w that|strong="H2691"\w* \w when|strong="H1961"\w* \w they|strong="H3808"\w* \w enter|strong="H5927"\w* \w in|strong="H5921"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w gates|strong="H8179"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w inner|strong="H6442"\w* \w court|strong="H2691"\w*, \w they|strong="H3808"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w* \w clothed|strong="H3847"\w* \w with|strong="H1004"\w* \w linen|strong="H6593"\w* garments. \w No|strong="H3808"\w* \w wool|strong="H6785"\w* \w shall|strong="H1004"\w* \w come|strong="H5927"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w while|strong="H1961"\w* \w they|strong="H3808"\w* \w minister|strong="H8334"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w gates|strong="H8179"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w inner|strong="H6442"\w* \w court|strong="H2691"\w*, \w and|strong="H1004"\w* \w within|strong="H1004"\w*. +\v 18 \w They|strong="H3808"\w* \w shall|strong="H3808"\w* \w have|strong="H1961"\w* \w linen|strong="H6593"\w* \w turbans|strong="H6287"\w* \w on|strong="H5921"\w* \w their|strong="H5921"\w* \w heads|strong="H7218"\w*, \w and|strong="H7218"\w* \w shall|strong="H3808"\w* \w have|strong="H1961"\w* \w linen|strong="H6593"\w* trousers \w on|strong="H5921"\w* \w their|strong="H5921"\w* waists. \w They|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* clothe \w themselves|strong="H7218"\w* \w with|strong="H5921"\w* \w anything|strong="H3808"\w* \w that|strong="H3808"\w* makes \w them|strong="H5921"\w* \w sweat|strong="H3154"\w*. +\v 19 \w When|strong="H3318"\w* \w they|strong="H1992"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H3318"\w* \w outer|strong="H2435"\w* \w court|strong="H2691"\w*, \w even|strong="H3808"\w* \w into|strong="H3318"\w* \w the|strong="H3318"\w* \w outer|strong="H2435"\w* \w court|strong="H2691"\w* \w to|strong="H3318"\w* \w the|strong="H3318"\w* \w people|strong="H5971"\w*, \w they|strong="H1992"\w* \w shall|strong="H5971"\w* \w put|strong="H3847"\w* \w off|strong="H6584"\w* \w their|strong="H1992"\w* garments \w in|strong="H3847"\w* \w which|strong="H1992"\w* \w they|strong="H1992"\w* \w minister|strong="H8334"\w* \w and|strong="H5971"\w* \w lay|strong="H3240"\w* \w them|strong="H1992"\w* \w in|strong="H3847"\w* \w the|strong="H3318"\w* \w holy|strong="H6944"\w* \w rooms|strong="H3957"\w*. \w They|strong="H1992"\w* \w shall|strong="H5971"\w* \w put|strong="H3847"\w* \w on|strong="H3847"\w* other garments, \w that|strong="H5971"\w* \w they|strong="H1992"\w* \w not|strong="H3808"\w* \w sanctify|strong="H6942"\w* \w the|strong="H3318"\w* \w people|strong="H5971"\w* \w with|strong="H3847"\w* \w their|strong="H1992"\w* garments. +\p +\v 20 “‘“\w They|strong="H3808"\w* \w shall|strong="H3808"\w* \w not|strong="H3808"\w* \w shave|strong="H1548"\w* \w their|strong="H7971"\w* \w heads|strong="H7218"\w*, \w or|strong="H3808"\w* allow \w their|strong="H7971"\w* \w locks|strong="H6545"\w* \w to|strong="H7971"\w* \w grow|strong="H7971"\w* \w long|strong="H7971"\w*. \w They|strong="H3808"\w* \w shall|strong="H3808"\w* \w only|strong="H3697"\w* \w cut|strong="H1548"\w* \w off|strong="H1548"\w* \w the|strong="H7971"\w* \w hair|strong="H7218"\w* \w of|strong="H7218"\w* \w their|strong="H7971"\w* \w heads|strong="H7218"\w*. +\v 21 \w None|strong="H3808"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w shall|strong="H3548"\w* \w drink|strong="H8354"\w* \w wine|strong="H3196"\w* when \w they|strong="H3808"\w* enter into \w the|strong="H3605"\w* \w inner|strong="H6442"\w* \w court|strong="H2691"\w*. +\v 22 \w They|strong="H3588"\w* \w shall|strong="H3548"\w* \w not|strong="H3808"\w* \w take|strong="H3947"\w* \w for|strong="H3588"\w* \w their|strong="H3947"\w* wives \w a|strong="H3068"\w* widow, \w or|strong="H3808"\w* \w her|strong="H3947"\w* \w who|strong="H3548"\w* \w is|strong="H3478"\w* \w put|strong="H3947"\w* \w away|strong="H3947"\w*; \w but|strong="H3588"\w* \w they|strong="H3588"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* \w virgins|strong="H1330"\w* \w of|strong="H1004"\w* \w the|strong="H3588"\w* \w offspring|strong="H2233"\w* \w of|strong="H1004"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w or|strong="H3808"\w* \w a|strong="H3068"\w* widow \w who|strong="H3548"\w* \w is|strong="H3478"\w* \w the|strong="H3588"\w* widow \w of|strong="H1004"\w* \w a|strong="H3068"\w* \w priest|strong="H3548"\w*. +\v 23 \w They|strong="H5971"\w* \w shall|strong="H5971"\w* \w teach|strong="H3384"\w* \w my|strong="H3045"\w* \w people|strong="H5971"\w* \w the|strong="H3045"\w* difference \w between|strong="H3045"\w* \w the|strong="H3045"\w* \w holy|strong="H6944"\w* \w and|strong="H5971"\w* \w the|strong="H3045"\w* \w common|strong="H2455"\w*, \w and|strong="H5971"\w* \w cause|strong="H5971"\w* \w them|strong="H3384"\w* \w to|strong="H5971"\w* \w discern|strong="H3045"\w* \w between|strong="H3045"\w* \w the|strong="H3045"\w* \w unclean|strong="H2931"\w* \w and|strong="H5971"\w* \w the|strong="H3045"\w* \w clean|strong="H2889"\w*. +\p +\v 24 “‘“\w In|strong="H5921"\w* \w a|strong="H3068"\w* \w controversy|strong="H7379"\w* \w they|strong="H1992"\w* \w shall|strong="H8451"\w* \w stand|strong="H5975"\w* \w to|strong="H5921"\w* \w judge|strong="H8199"\w*. \w They|strong="H1992"\w* \w shall|strong="H8451"\w* \w judge|strong="H8199"\w* \w it|strong="H5921"\w* \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w my|strong="H8104"\w* \w ordinances|strong="H4941"\w*. \w They|strong="H1992"\w* \w shall|strong="H8451"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w laws|strong="H8451"\w* \w and|strong="H4941"\w* \w my|strong="H8104"\w* \w statutes|strong="H2708"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w my|strong="H8104"\w* \w appointed|strong="H4150"\w* \w feasts|strong="H4150"\w*. \w They|strong="H1992"\w* \w shall|strong="H8451"\w* \w make|strong="H4941"\w* \w my|strong="H8104"\w* \w Sabbaths|strong="H7676"\w* \w holy|strong="H6942"\w*. +\p +\v 25 “‘“\w They|strong="H3588"\w* \w shall|strong="H1121"\w* \w go|strong="H1961"\w* \w in|strong="H4191"\w* \w to|strong="H4191"\w* \w no|strong="H3808"\w* \w dead|strong="H4191"\w* person \w to|strong="H4191"\w* \w defile|strong="H2930"\w* themselves; \w but|strong="H3588"\w* \w for|strong="H3588"\w* \w father|strong="H1121"\w*, \w or|strong="H3808"\w* \w for|strong="H3588"\w* mother, \w or|strong="H3808"\w* \w for|strong="H3588"\w* \w son|strong="H1121"\w*, \w or|strong="H3808"\w* \w for|strong="H3588"\w* \w daughter|strong="H1323"\w*, \w for|strong="H3588"\w* brother, \w or|strong="H3808"\w* \w for|strong="H3588"\w* sister \w who|strong="H1121"\w* \w has|strong="H1961"\w* \w had|strong="H1961"\w* \w no|strong="H3808"\w* husband, \w they|strong="H3588"\w* \w may|strong="H1961"\w* \w defile|strong="H2930"\w* themselves. +\v 26 \w After|strong="H3117"\w* \w he|strong="H3117"\w* \w is|strong="H3117"\w* \w cleansed|strong="H2893"\w*, \w they|strong="H3117"\w* \w shall|strong="H3117"\w* \w reckon|strong="H5608"\w* \w to|strong="H3117"\w* \w him|strong="H5608"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. +\v 27 \w In|strong="H3117"\w* \w the|strong="H5002"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w he|strong="H3117"\w* goes into \w the|strong="H5002"\w* \w sanctuary|strong="H6944"\w*, into \w the|strong="H5002"\w* \w inner|strong="H6442"\w* \w court|strong="H2691"\w*, \w to|strong="H3117"\w* \w minister|strong="H8334"\w* \w in|strong="H3117"\w* \w the|strong="H5002"\w* \w sanctuary|strong="H6944"\w*, \w he|strong="H3117"\w* \w shall|strong="H3117"\w* \w offer|strong="H7126"\w* \w his|strong="H7126"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 28 “‘\w They|strong="H3808"\w* \w shall|strong="H3478"\w* \w have|strong="H1961"\w* \w an|strong="H1961"\w* \w inheritance|strong="H5159"\w*: \w I|strong="H5414"\w* \w am|strong="H1961"\w* \w their|strong="H5414"\w* \w inheritance|strong="H5159"\w*; \w and|strong="H3478"\w* \w you|strong="H5414"\w* \w shall|strong="H3478"\w* \w give|strong="H5414"\w* \w them|strong="H5414"\w* \w no|strong="H3808"\w* \w possession|strong="H5159"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. \w I|strong="H5414"\w* \w am|strong="H1961"\w* \w their|strong="H5414"\w* \w possession|strong="H5159"\w*. +\v 29 \w They|strong="H1992"\w* \w shall|strong="H3478"\w* eat \w the|strong="H3605"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w sin|strong="H2403"\w* \w offering|strong="H4503"\w*, \w and|strong="H3478"\w* \w the|strong="H3605"\w* trespass \w offering|strong="H4503"\w*; \w and|strong="H3478"\w* \w every|strong="H3605"\w* \w devoted|strong="H2764"\w* \w thing|strong="H2764"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w* \w shall|strong="H3478"\w* \w be|strong="H1961"\w* \w theirs|strong="H1992"\w*. +\v 30 \w The|strong="H3605"\w* \w first|strong="H7225"\w* \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w first|strong="H7225"\w* \w fruits|strong="H1061"\w* \w of|strong="H1004"\w* \w every|strong="H3605"\w* \w thing|strong="H3605"\w*, \w and|strong="H1004"\w* \w every|strong="H3605"\w* \w offering|strong="H8641"\w* \w of|strong="H1004"\w* \w everything|strong="H3605"\w*, \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w offerings|strong="H8641"\w*, \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w for|strong="H1004"\w* \w the|strong="H3605"\w* \w priest|strong="H3548"\w*. \w You|strong="H5414"\w* \w shall|strong="H3548"\w* also \w give|strong="H5414"\w* \w to|strong="H1961"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w* \w the|strong="H3605"\w* \w first|strong="H7225"\w* \w of|strong="H1004"\w* \w your|strong="H3605"\w* \w dough|strong="H6182"\w*, \w to|strong="H1961"\w* \w cause|strong="H5414"\w* \w a|strong="H3068"\w* \w blessing|strong="H1293"\w* \w to|strong="H1961"\w* \w rest|strong="H5117"\w* \w on|strong="H5117"\w* \w your|strong="H3605"\w* \w house|strong="H1004"\w*. +\v 31 \w The|strong="H3605"\w* \w priests|strong="H3548"\w* \w shall|strong="H3548"\w* \w not|strong="H3808"\w* eat \w of|strong="H4480"\w* \w anything|strong="H3605"\w* \w that|strong="H3605"\w* \w dies|strong="H5038"\w* \w of|strong="H4480"\w* \w itself|strong="H5038"\w* \w or|strong="H3808"\w* \w is|strong="H3605"\w* \w torn|strong="H2966"\w*, \w whether|strong="H4480"\w* \w it|strong="H5038"\w* \w is|strong="H3605"\w* \w bird|strong="H5775"\w* \w or|strong="H3808"\w* \w animal|strong="H2966"\w*. +\c 45 +\p +\v 1 “‘“Moreover, \w when|strong="H3068"\w* \w you|strong="H3605"\w* \w divide|strong="H5307"\w* \w by|strong="H3068"\w* \w lot|strong="H5307"\w* \w the|strong="H3605"\w* \w land|strong="H5159"\w* \w for|strong="H3068"\w* \w inheritance|strong="H5159"\w*, \w you|strong="H3605"\w* \w shall|strong="H3068"\w* \w offer|strong="H7311"\w* \w an|strong="H4480"\w* \w offering|strong="H8641"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w portion|strong="H6944"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w land|strong="H5159"\w*. \w The|strong="H3605"\w* length \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w the|strong="H3605"\w* length \w of|strong="H3068"\w* \w twenty-five|strong="H6242"\w* thousand reeds, \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w width|strong="H7341"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w ten|strong="H6235"\w* thousand. \w It|strong="H1931"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w holy|strong="H6944"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w border|strong="H1366"\w* \w all|strong="H3605"\w* \w around|strong="H5439"\w*. +\v 2 \w Of|strong="H6944"\w* \w this|strong="H2088"\w* \w there|strong="H1961"\w* \w shall|strong="H2088"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w by|strong="H1961"\w* \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* \w square|strong="H7251"\w* \w for|strong="H1961"\w* \w the|strong="H5439"\w* \w holy|strong="H6944"\w* \w place|strong="H6944"\w*, \w and|strong="H3967"\w* \w fifty|strong="H2572"\w* \w cubits|strong="H2568"\w*\f + \fr 45:2 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w for|strong="H1961"\w* \w its|strong="H5439"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w* \w all|strong="H5439"\w* \w around|strong="H5439"\w*. +\v 3 \w Of|strong="H4480"\w* \w this|strong="H2063"\w* \w measure|strong="H4058"\w* \w you|strong="H4480"\w* \w shall|strong="H2063"\w* \w measure|strong="H4058"\w* \w a|strong="H3068"\w* length \w of|strong="H4480"\w* \w twenty-five|strong="H6242"\w* thousand, \w and|strong="H6242"\w* \w a|strong="H3068"\w* \w width|strong="H7341"\w* \w of|strong="H4480"\w* \w ten|strong="H6235"\w* thousand. \w In|strong="H6235"\w* \w it|strong="H1961"\w* \w shall|strong="H2063"\w* \w be|strong="H1961"\w* \w the|strong="H4480"\w* \w sanctuary|strong="H6944"\w*, \w which|strong="H4720"\w* \w is|strong="H1961"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w*. +\v 4 \w It|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w portion|strong="H6944"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w land|strong="H4725"\w*; \w it|strong="H1931"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w priests|strong="H3548"\w*, \w the|strong="H3068"\w* \w ministers|strong="H8334"\w* \w of|strong="H1004"\w* \w the|strong="H3068"\w* \w sanctuary|strong="H6944"\w*, \w who|strong="H1931"\w* \w come|strong="H1961"\w* \w near|strong="H7131"\w* \w to|strong="H3068"\w* \w minister|strong="H8334"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w It|strong="H1931"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w place|strong="H4725"\w* \w for|strong="H3068"\w* \w their|strong="H3068"\w* \w houses|strong="H1004"\w* \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w place|strong="H4725"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w sanctuary|strong="H6944"\w*. +\v 5 \w Twenty-five|strong="H6242"\w* thousand \w cubits|strong="H2568"\w* \w in|strong="H1004"\w* length \w and|strong="H6242"\w* \w ten|strong="H6235"\w* thousand \w in|strong="H1004"\w* \w width|strong="H7341"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w* \w for|strong="H1004"\w* \w the|strong="H1961"\w* \w Levites|strong="H3881"\w*, \w the|strong="H1961"\w* \w ministers|strong="H8334"\w* \w of|strong="H1004"\w* \w the|strong="H1961"\w* \w house|strong="H1004"\w*, \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w possession|strong="H1992"\w* \w for|strong="H1004"\w* \w themselves|strong="H1992"\w*, \w for|strong="H1004"\w* \w twenty|strong="H6242"\w* \w rooms|strong="H3957"\w*. +\p +\v 6 “‘“\w You|strong="H5414"\w* \w shall|strong="H3478"\w* \w appoint|strong="H5414"\w* \w the|strong="H3605"\w* possession \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w five|strong="H2568"\w* thousand \w cubits|strong="H2568"\w* \w wide|strong="H7341"\w* \w and|strong="H3478"\w* \w twenty-five|strong="H6242"\w* thousand \w long|strong="H3605"\w*, \w side|strong="H5980"\w* \w by|strong="H3478"\w* \w side|strong="H5980"\w* \w with|strong="H1004"\w* \w the|strong="H3605"\w* \w offering|strong="H8641"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w holy|strong="H6944"\w* \w portion|strong="H6944"\w*. \w It|strong="H5414"\w* \w shall|strong="H3478"\w* \w be|strong="H1961"\w* \w for|strong="H1004"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. +\p +\v 7 “‘“\w What|strong="H2088"\w* \w is|strong="H2088"\w* \w for|strong="H6440"\w* \w the|strong="H6440"\w* \w prince|strong="H5387"\w* \w shall|strong="H5892"\w* \w be|strong="H5892"\w* \w on|strong="H5892"\w* \w the|strong="H6440"\w* \w one|strong="H2088"\w* \w side|strong="H6285"\w* \w and|strong="H5892"\w* \w on|strong="H5892"\w* \w the|strong="H6440"\w* \w other|strong="H2088"\w* \w side|strong="H6285"\w* \w of|strong="H5892"\w* \w the|strong="H6440"\w* \w holy|strong="H6944"\w* \w allotment|strong="H8641"\w* \w and|strong="H5892"\w* \w of|strong="H5892"\w* \w the|strong="H6440"\w* possession \w of|strong="H5892"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w*, \w in|strong="H5892"\w* \w front|strong="H6440"\w* \w of|strong="H5892"\w* \w the|strong="H6440"\w* \w holy|strong="H6944"\w* \w allotment|strong="H8641"\w* \w and|strong="H5892"\w* \w in|strong="H5892"\w* \w front|strong="H6440"\w* \w of|strong="H5892"\w* \w the|strong="H6440"\w* possession \w of|strong="H5892"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w*, \w on|strong="H5892"\w* \w the|strong="H6440"\w* \w west|strong="H3220"\w* \w side|strong="H6285"\w* \w westward|strong="H3220"\w*, \w and|strong="H5892"\w* \w on|strong="H5892"\w* \w the|strong="H6440"\w* \w east|strong="H6921"\w* \w side|strong="H6285"\w* \w eastward|strong="H6924"\w*, \w and|strong="H5892"\w* \w in|strong="H5892"\w* length \w corresponding|strong="H5980"\w* \w to|strong="H6440"\w* \w one|strong="H2088"\w* \w of|strong="H5892"\w* \w the|strong="H6440"\w* \w portions|strong="H2506"\w*, \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w west|strong="H3220"\w* \w border|strong="H1366"\w* \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w east|strong="H6921"\w* \w border|strong="H1366"\w*. +\v 8 \w In|strong="H3478"\w* \w the|strong="H5414"\w* land \w it|strong="H5414"\w* \w shall|strong="H5971"\w* \w be|strong="H1961"\w* \w to|strong="H3478"\w* \w him|strong="H5414"\w* \w for|strong="H1004"\w* \w a|strong="H3068"\w* possession \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. \w My|strong="H5414"\w* \w princes|strong="H5387"\w* \w shall|strong="H5971"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w oppress|strong="H3238"\w* \w my|strong="H5414"\w* \w people|strong="H5971"\w*, \w but|strong="H3808"\w* \w they|strong="H3808"\w* \w shall|strong="H5971"\w* \w give|strong="H5414"\w* \w the|strong="H5414"\w* land \w to|strong="H3478"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* according \w to|strong="H3478"\w* \w their|strong="H5414"\w* \w tribes|strong="H7626"\w*.” +\p +\v 9 “‘\w The|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H5002"\w*: “\w Enough|strong="H7227"\w*, \w you|strong="H5921"\w* \w princes|strong="H5387"\w* \w of|strong="H5971"\w* \w Israel|strong="H3478"\w*! \w Remove|strong="H5493"\w* \w violence|strong="H2555"\w* \w and|strong="H3478"\w* plunder, \w and|strong="H3478"\w* \w execute|strong="H6213"\w* \w justice|strong="H4941"\w* \w and|strong="H3478"\w* \w righteousness|strong="H6666"\w*! \w Stop|strong="H5493"\w* dispossessing \w my|strong="H5921"\w* \w people|strong="H5971"\w*!” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\v 10 “\w You|strong="H1961"\w* \w shall|strong="H6664"\w* \w have|strong="H1961"\w* \w just|strong="H6664"\w* \w balances|strong="H3976"\w*, \w a|strong="H3068"\w* \w just|strong="H6664"\w* ephah,\f + \fr 45:10 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w and|strong="H6664"\w* \w a|strong="H3068"\w* \w just|strong="H6664"\w* \w bath|strong="H1324"\w*. +\v 11 \w The|strong="H5375"\w* ephah \w and|strong="H1961"\w* \w the|strong="H5375"\w* \w bath|strong="H1324"\w* \w shall|strong="H2563"\w* \w be|strong="H1961"\w* \w of|strong="H4643"\w* \w one|strong="H1961"\w* \w measure|strong="H4971"\w*, \w that|strong="H1961"\w* \w the|strong="H5375"\w* \w bath|strong="H1324"\w* \w may|strong="H1961"\w* \w contain|strong="H5375"\w* \w one|strong="H1961"\w* \w tenth|strong="H6224"\w* \w of|strong="H4643"\w* \w a|strong="H3068"\w* \w homer|strong="H2563"\w*,\f + \fr 45:11 \ft 1 homer is about 220 liters or 6 bushels\f* \w and|strong="H1961"\w* \w the|strong="H5375"\w* ephah \w one|strong="H1961"\w* \w tenth|strong="H6224"\w* \w of|strong="H4643"\w* \w a|strong="H3068"\w* \w homer|strong="H2563"\w*. \w Its|strong="H1961"\w* \w measure|strong="H4971"\w* \w shall|strong="H2563"\w* \w be|strong="H1961"\w* \w the|strong="H5375"\w* same \w as|strong="H1961"\w* \w the|strong="H5375"\w* \w homer|strong="H2563"\w*. +\v 12 \w The|strong="H1961"\w* \w shekel|strong="H8255"\w*\f + \fr 45:12 \ft A shekel is about 10 grams or about 0.35 ounces.\f* shall \w be|strong="H1961"\w* \w twenty|strong="H6242"\w* \w gerahs|strong="H1626"\w*.\f + \fr 45:12 \ft a gerah is about 0.5 grams or about 7.7 grains\f* \w Twenty|strong="H6242"\w* \w shekels|strong="H8255"\w* plus \w twenty-five|strong="H6242"\w* \w shekels|strong="H8255"\w* plus \w fifteen|strong="H2568"\w* \w shekels|strong="H8255"\w* shall \w be|strong="H1961"\w* \w your|strong="H1961"\w* mina.\f + \fr 45:12 \ft A mina is about 600 grams or 1.3 U. S. pounds.\f* +\p +\v 13 “‘“\w This|strong="H2063"\w* is \w the|strong="H7311"\w* \w offering|strong="H8641"\w* \w that|strong="H2063"\w* you \w shall|strong="H2063"\w* \w offer|strong="H7311"\w*: \w the|strong="H7311"\w* \w sixth|strong="H8345"\w* \w part|strong="H8345"\w* \w of|strong="H2563"\w* \w an|strong="H7311"\w* ephah from \w a|strong="H3068"\w* \w homer|strong="H2563"\w* \w of|strong="H2563"\w* \w wheat|strong="H2406"\w*, \w and|strong="H7311"\w* you \w shall|strong="H2063"\w* \w give|strong="H7311"\w* \w the|strong="H7311"\w* \w sixth|strong="H8345"\w* \w part|strong="H8345"\w* \w of|strong="H2563"\w* \w an|strong="H7311"\w* ephah from \w a|strong="H3068"\w* \w homer|strong="H2563"\w* \w of|strong="H2563"\w* \w barley|strong="H8184"\w*, +\v 14 \w and|strong="H2706"\w* \w the|strong="H3588"\w* set \w portion|strong="H2706"\w* \w of|strong="H4480"\w* \w oil|strong="H8081"\w*, \w of|strong="H4480"\w* \w the|strong="H3588"\w* \w bath|strong="H1324"\w* \w of|strong="H4480"\w* \w oil|strong="H8081"\w*, \w one|strong="H4480"\w* \w tenth|strong="H4643"\w* \w of|strong="H4480"\w* \w a|strong="H3068"\w* \w bath|strong="H1324"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H3588"\w* \w cor|strong="H3734"\w*, \w which|strong="H3588"\w* \w is|strong="H8081"\w* \w ten|strong="H6235"\w* \w baths|strong="H1324"\w*, \w even|strong="H3588"\w* \w a|strong="H3068"\w* \w homer|strong="H2563"\w* (\w for|strong="H3588"\w* \w ten|strong="H6235"\w* \w baths|strong="H1324"\w* \w are|strong="H6235"\w* \w a|strong="H3068"\w* \w homer|strong="H2563"\w*),\f + \fr 45:14 \ft 1 cor is the same as 1 homer in volume, and is about 211 liters, 55.9 gallons, or 6 bushels. 1 bath is about 21.1 liters, 5.59 gallons, or 2.4 pecks.\f* +\v 15 \w and|strong="H3967"\w* \w one|strong="H4480"\w* \w lamb|strong="H7716"\w* \w of|strong="H4480"\w* \w the|strong="H5002"\w* \w flock|strong="H6629"\w* \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w two|strong="H4480"\w* \w hundred|strong="H3967"\w*, \w from|strong="H4480"\w* \w the|strong="H5002"\w* well-watered \w pastures|strong="H4945"\w* \w of|strong="H4480"\w* \w Israel|strong="H3478"\w*—\w for|strong="H5921"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, \w and|strong="H3967"\w* \w for|strong="H5921"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w to|strong="H3478"\w* \w make|strong="H3722"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w them|strong="H5921"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\v 16 “\w All|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H5971"\w* \w the|strong="H3605"\w* land \w shall|strong="H5971"\w* \w give|strong="H1961"\w* \w to|strong="H3478"\w* \w this|strong="H2063"\w* \w offering|strong="H8641"\w* \w for|strong="H3478"\w* \w the|strong="H3605"\w* \w prince|strong="H5387"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*. +\v 17 \w It|strong="H1931"\w* \w shall|strong="H3478"\w* \w be|strong="H1961"\w* \w the|strong="H3605"\w* \w prince|strong="H5387"\w*’s \w part|strong="H1931"\w* \w to|strong="H3478"\w* \w give|strong="H6213"\w* \w the|strong="H3605"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w*, \w the|strong="H3605"\w* \w meal|strong="H4503"\w* \w offerings|strong="H8002"\w*, \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w drink|strong="H5262"\w* \w offerings|strong="H8002"\w*, \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w feasts|strong="H4150"\w*, \w and|strong="H3478"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w new|strong="H2320"\w* \w moons|strong="H2320"\w*, \w and|strong="H3478"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w Sabbaths|strong="H7676"\w*, \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w appointed|strong="H4150"\w* \w feasts|strong="H4150"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. \w He|strong="H1931"\w* \w shall|strong="H3478"\w* \w prepare|strong="H6213"\w* \w the|strong="H3605"\w* \w sin|strong="H2403"\w* \w offering|strong="H4503"\w*, \w the|strong="H3605"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w the|strong="H3605"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, \w and|strong="H3478"\w* \w the|strong="H3605"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w to|strong="H3478"\w* \w make|strong="H6213"\w* \w atonement|strong="H3722"\w* \w for|strong="H5921"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*.” +\p +\v 18 “‘\w The|strong="H3947"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w In|strong="H1121"\w* \w the|strong="H3947"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*, \w on|strong="H3069"\w* \w the|strong="H3947"\w* \w first|strong="H7223"\w* \w day|strong="H2320"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w month|strong="H2320"\w*, \w you|strong="H3947"\w* \w shall|strong="H1121"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*, \w and|strong="H1121"\w* \w you|strong="H3947"\w* \w shall|strong="H1121"\w* \w cleanse|strong="H2398"\w* \w the|strong="H3947"\w* \w sanctuary|strong="H4720"\w*. +\v 19 \w The|strong="H5921"\w* \w priest|strong="H3548"\w* \w shall|strong="H3548"\w* \w take|strong="H3947"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w* \w and|strong="H1004"\w* \w put|strong="H5414"\w* \w it|strong="H5414"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w door|strong="H4201"\w* \w posts|strong="H4201"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w*, \w and|strong="H1004"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* four \w corners|strong="H6438"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w ledge|strong="H5835"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*, \w and|strong="H1004"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w posts|strong="H4201"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w gate|strong="H8179"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w inner|strong="H6442"\w* \w court|strong="H2691"\w*. +\v 20 \w So|strong="H3651"\w* \w you|strong="H6213"\w* \w shall|strong="H1004"\w* \w do|strong="H6213"\w* \w on|strong="H1004"\w* \w the|strong="H6213"\w* \w seventh|strong="H7651"\w* \w day|strong="H2320"\w* \w of|strong="H1004"\w* \w the|strong="H6213"\w* \w month|strong="H2320"\w* \w for|strong="H6213"\w* everyone \w who|strong="H6213"\w* errs, \w and|strong="H1004"\w* \w for|strong="H6213"\w* \w him|strong="H6213"\w* \w who|strong="H6213"\w* \w is|strong="H3651"\w* \w simple|strong="H6612"\w*. \w So|strong="H3651"\w* \w you|strong="H6213"\w* \w shall|strong="H1004"\w* \w make|strong="H6213"\w* \w atonement|strong="H3722"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w house|strong="H1004"\w*. +\p +\v 21 “‘“\w In|strong="H3117"\w* \w the|strong="H3117"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*, \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w fourteenth|strong="H6240"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w month|strong="H2320"\w*, \w you|strong="H3117"\w* \w shall|strong="H3117"\w* \w have|strong="H1961"\w* \w the|strong="H3117"\w* \w Passover|strong="H6453"\w*, \w a|strong="H3068"\w* \w feast|strong="H2282"\w* \w of|strong="H3117"\w* \w seven|strong="H7620"\w* \w days|strong="H3117"\w*; \w unleavened|strong="H4682"\w* \w bread|strong="H4682"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* eaten. +\v 22 \w On|strong="H3117"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w* \w the|strong="H3605"\w* \w prince|strong="H5387"\w* \w shall|strong="H5971"\w* \w prepare|strong="H6213"\w* \w for|strong="H6213"\w* \w himself|strong="H1931"\w* \w and|strong="H3117"\w* \w for|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* land \w a|strong="H3068"\w* \w bull|strong="H6499"\w* \w for|strong="H6213"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H2403"\w*. +\v 23 \w The|strong="H6213"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* \w feast|strong="H2282"\w* \w he|strong="H3117"\w* \w shall|strong="H3068"\w* \w prepare|strong="H6213"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w seven|strong="H7651"\w* \w bulls|strong="H6499"\w* \w and|strong="H3068"\w* \w seven|strong="H7651"\w* rams \w without|strong="H8549"\w* \w defect|strong="H8549"\w* \w daily|strong="H3117"\w* \w the|strong="H6213"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*; \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w male|strong="H8163"\w* \w goat|strong="H5795"\w* \w daily|strong="H3117"\w* \w for|strong="H6213"\w* \w a|strong="H3068"\w* \w sin|strong="H2403"\w* \w offering|strong="H5930"\w*. +\v 24 \w He|strong="H6213"\w* \w shall|strong="H6213"\w* \w prepare|strong="H6213"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w an|strong="H6213"\w* ephah\f + \fr 45:24 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w for|strong="H6213"\w* \w a|strong="H3068"\w* \w bull|strong="H6499"\w*, \w an|strong="H6213"\w* ephah \w for|strong="H6213"\w* \w a|strong="H3068"\w* ram, \w and|strong="H6499"\w* \w a|strong="H3068"\w* \w hin|strong="H1969"\w*\f + \fr 45:24 \ft A hin is about 6.5 liters or 1.7 gallons.\f* \w of|strong="H1969"\w* \w oil|strong="H8081"\w* \w to|strong="H6213"\w* \w an|strong="H6213"\w* ephah. +\p +\v 25 “‘“\w In|strong="H6213"\w* \w the|strong="H6213"\w* \w seventh|strong="H7651"\w* \w month|strong="H2320"\w*, \w on|strong="H3117"\w* \w the|strong="H6213"\w* \w fifteenth|strong="H2568"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H6213"\w* \w month|strong="H2320"\w*, \w during|strong="H3117"\w* \w the|strong="H6213"\w* \w feast|strong="H2282"\w*, \w he|strong="H3117"\w* \w shall|strong="H3117"\w* \w do|strong="H6213"\w* \w like|strong="H6213"\w* \w that|strong="H3117"\w* \w for|strong="H6213"\w* \w seven|strong="H7651"\w* \w days|strong="H3117"\w*. \w He|strong="H3117"\w* \w shall|strong="H3117"\w* \w make|strong="H6213"\w* \w the|strong="H6213"\w* same provision \w for|strong="H6213"\w* \w sin|strong="H2403"\w* \w offering|strong="H4503"\w*, \w the|strong="H6213"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*, \w the|strong="H6213"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w and|strong="H3117"\w* \w the|strong="H6213"\w* \w oil|strong="H8081"\w*.” +\c 46 +\p +\v 1 “‘\w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w The|strong="H3069"\w* \w gate|strong="H8179"\w* \w of|strong="H3117"\w* \w the|strong="H3069"\w* \w inner|strong="H6442"\w* \w court|strong="H2691"\w* \w that|strong="H3117"\w* looks \w toward|strong="H6437"\w* \w the|strong="H3069"\w* \w east|strong="H6921"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w shut|strong="H5462"\w* \w the|strong="H3069"\w* \w six|strong="H8337"\w* \w working|strong="H4639"\w* \w days|strong="H3117"\w*; \w but|strong="H1961"\w* \w on|strong="H3117"\w* \w the|strong="H3069"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w* \w it|strong="H1961"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w opened|strong="H6605"\w*, \w and|strong="H3117"\w* \w on|strong="H3117"\w* \w the|strong="H3069"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3069"\w* \w new|strong="H2320"\w* \w moon|strong="H2320"\w* \w it|strong="H1961"\w* \w shall|strong="H3117"\w* \w be|strong="H1961"\w* \w opened|strong="H6605"\w*. +\v 2 \w The|strong="H5921"\w* \w prince|strong="H5387"\w* \w shall|strong="H3548"\w* \w enter|strong="H5975"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w the|strong="H5921"\w* porch \w of|strong="H1870"\w* \w the|strong="H5921"\w* \w gate|strong="H8179"\w* \w outside|strong="H2351"\w*, \w and|strong="H3548"\w* \w shall|strong="H3548"\w* \w stand|strong="H5975"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w post|strong="H4201"\w* \w of|strong="H1870"\w* \w the|strong="H5921"\w* \w gate|strong="H8179"\w*; \w and|strong="H3548"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w* \w shall|strong="H3548"\w* \w prepare|strong="H6213"\w* \w his|strong="H5921"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w and|strong="H3548"\w* \w his|strong="H5921"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w and|strong="H3548"\w* \w he|strong="H5704"\w* \w shall|strong="H3548"\w* \w worship|strong="H7812"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w threshold|strong="H4670"\w* \w of|strong="H1870"\w* \w the|strong="H5921"\w* \w gate|strong="H8179"\w*. \w Then|strong="H3318"\w* \w he|strong="H5704"\w* \w shall|strong="H3548"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*, \w but|strong="H3808"\w* \w the|strong="H5921"\w* \w gate|strong="H8179"\w* \w shall|strong="H3548"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w shut|strong="H5462"\w* \w until|strong="H5704"\w* \w the|strong="H5921"\w* \w evening|strong="H6153"\w*. +\v 3 \w The|strong="H6440"\w* \w people|strong="H5971"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w shall|strong="H3068"\w* \w worship|strong="H7812"\w* \w at|strong="H3068"\w* \w the|strong="H6440"\w* \w door|strong="H6607"\w* \w of|strong="H3068"\w* \w that|strong="H5971"\w* \w gate|strong="H8179"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w on|strong="H3068"\w* \w the|strong="H6440"\w* \w Sabbaths|strong="H7676"\w* \w and|strong="H3068"\w* \w on|strong="H3068"\w* \w the|strong="H6440"\w* \w new|strong="H2320"\w* \w moons|strong="H2320"\w*. +\v 4 \w The|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w that|strong="H3117"\w* \w the|strong="H3068"\w* \w prince|strong="H5387"\w* \w shall|strong="H3068"\w* \w offer|strong="H7126"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w on|strong="H3117"\w* \w the|strong="H3068"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w*, \w six|strong="H8337"\w* \w lambs|strong="H3532"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w* \w and|strong="H3068"\w* \w a|strong="H3068"\w* ram \w without|strong="H8549"\w* \w defect|strong="H8549"\w*; +\v 5 \w and|strong="H3027"\w* \w the|strong="H3027"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w shall|strong="H3027"\w* \w be|strong="H3027"\w* \w an|strong="H4503"\w* ephah \w for|strong="H3027"\w* \w the|strong="H3027"\w* ram, \w and|strong="H3027"\w* \w the|strong="H3027"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w for|strong="H3027"\w* \w the|strong="H3027"\w* \w lambs|strong="H3532"\w* \w as|strong="H3532"\w* \w he|strong="H3027"\w* \w is|strong="H3027"\w* \w able|strong="H3027"\w* \w to|strong="H3027"\w* \w give|strong="H4991"\w*, \w and|strong="H3027"\w* \w a|strong="H3068"\w* \w hin|strong="H1969"\w*\f + \fr 46:5 \ft A hin is about 6.5 liters or 1.7 gallons.\f* \w of|strong="H3027"\w* \w oil|strong="H8081"\w* \w to|strong="H3027"\w* \w an|strong="H4503"\w* ephah.\f + \fr 46:5 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* +\v 6 \w On|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w the|strong="H3117"\w* \w new|strong="H2320"\w* \w moon|strong="H2320"\w* \w it|strong="H1961"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w young|strong="H1121"\w* \w bull|strong="H6499"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*, \w six|strong="H8337"\w* \w lambs|strong="H3532"\w*, \w and|strong="H1121"\w* \w a|strong="H3068"\w* ram. \w They|strong="H3117"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w*. +\v 7 \w He|strong="H6213"\w* \w shall|strong="H3027"\w* \w prepare|strong="H6213"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*: \w an|strong="H6213"\w* ephah \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w bull|strong="H6499"\w*, \w and|strong="H3027"\w* \w an|strong="H6213"\w* ephah \w for|strong="H6213"\w* \w the|strong="H6213"\w* ram, \w and|strong="H3027"\w* \w for|strong="H6213"\w* \w the|strong="H6213"\w* \w lambs|strong="H3532"\w* \w according|strong="H3027"\w* \w as|strong="H6213"\w* \w he|strong="H6213"\w* \w is|strong="H3027"\w* \w able|strong="H3027"\w*, \w and|strong="H3027"\w* \w a|strong="H3068"\w* \w hin|strong="H1969"\w* \w of|strong="H3027"\w* \w oil|strong="H8081"\w* \w to|strong="H6213"\w* \w an|strong="H6213"\w* ephah. +\v 8 \w When|strong="H3318"\w* \w the|strong="H3318"\w* \w prince|strong="H5387"\w* enters, \w he|strong="H3318"\w* \w shall|strong="H5387"\w* \w go|strong="H3318"\w* \w in|strong="H1870"\w* \w by|strong="H1870"\w* \w the|strong="H3318"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w the|strong="H3318"\w* porch \w of|strong="H1870"\w* \w the|strong="H3318"\w* \w gate|strong="H8179"\w*, \w and|strong="H1870"\w* \w he|strong="H3318"\w* \w shall|strong="H5387"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w by|strong="H1870"\w* \w its|strong="H3318"\w* \w way|strong="H1870"\w*. +\p +\v 9 “‘“\w But|strong="H3588"\w* \w when|strong="H3588"\w* \w the|strong="H6440"\w* \w people|strong="H5971"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w come|strong="H3318"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H6440"\w* \w appointed|strong="H4150"\w* \w feasts|strong="H4150"\w*, \w he|strong="H3588"\w* \w who|strong="H5971"\w* enters \w by|strong="H3068"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w north|strong="H6828"\w* \w gate|strong="H8179"\w* \w to|strong="H7725"\w* \w worship|strong="H7812"\w* \w shall|strong="H3068"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w by|strong="H3068"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w south|strong="H5045"\w* \w gate|strong="H8179"\w*; \w and|strong="H3068"\w* \w he|strong="H3588"\w* \w who|strong="H5971"\w* enters \w by|strong="H3068"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w south|strong="H5045"\w* \w gate|strong="H8179"\w* \w shall|strong="H3068"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w by|strong="H3068"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w north|strong="H6828"\w* \w gate|strong="H8179"\w*. \w He|strong="H3588"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w return|strong="H7725"\w* \w by|strong="H3068"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w gate|strong="H8179"\w* \w by|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H3588"\w* \w came|strong="H3318"\w* \w in|strong="H3068"\w*, \w but|strong="H3588"\w* \w shall|strong="H3068"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w straight|strong="H3318"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 10 \w The|strong="H8432"\w* \w prince|strong="H5387"\w* \w shall|strong="H5387"\w* \w go|strong="H3318"\w* \w in|strong="H8432"\w* \w with|strong="H3318"\w* \w them|strong="H3318"\w* \w when|strong="H3318"\w* \w they|strong="H3318"\w* \w go|strong="H3318"\w* \w in|strong="H8432"\w*. \w When|strong="H3318"\w* \w they|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*, \w he|strong="H3318"\w* \w shall|strong="H5387"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*. +\p +\v 11 “‘“\w In|strong="H3027"\w* \w the|strong="H1961"\w* \w feasts|strong="H4150"\w* \w and|strong="H3027"\w* \w in|strong="H3027"\w* \w the|strong="H1961"\w* \w appointed|strong="H4150"\w* holidays, \w the|strong="H1961"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w shall|strong="H3027"\w* \w be|strong="H1961"\w* \w an|strong="H1961"\w* ephah\f + \fr 46:11 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w for|strong="H3027"\w* \w a|strong="H3068"\w* \w bull|strong="H6499"\w*, \w and|strong="H3027"\w* \w an|strong="H1961"\w* ephah \w for|strong="H3027"\w* \w a|strong="H3068"\w* ram, \w and|strong="H3027"\w* \w for|strong="H3027"\w* \w the|strong="H1961"\w* \w lambs|strong="H3532"\w* \w as|strong="H1961"\w* \w he|strong="H3027"\w* \w is|strong="H3027"\w* \w able|strong="H3027"\w* \w to|strong="H1961"\w* \w give|strong="H4991"\w*, \w and|strong="H3027"\w* \w a|strong="H3068"\w* \w hin|strong="H1969"\w* \w of|strong="H3027"\w* \w oil|strong="H8081"\w* \w to|strong="H1961"\w* \w an|strong="H1961"\w* ephah. +\v 12 \w When|strong="H3588"\w* \w the|strong="H3588"\w* \w prince|strong="H5387"\w* prepares \w a|strong="H3068"\w* \w free|strong="H6605"\w* \w will|strong="H3068"\w* \w offering|strong="H5930"\w*, \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w or|strong="H3117"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w as|strong="H3117"\w* \w a|strong="H3068"\w* \w free|strong="H6605"\w* \w will|strong="H3068"\w* \w offering|strong="H5930"\w* \w to|strong="H3318"\w* \w Yahweh|strong="H3068"\w*, \w one|strong="H6213"\w* \w shall|strong="H3068"\w* \w open|strong="H6605"\w* \w for|strong="H3588"\w* \w him|strong="H6213"\w* \w the|strong="H3588"\w* \w gate|strong="H8179"\w* \w that|strong="H3588"\w* looks \w toward|strong="H6437"\w* \w the|strong="H3588"\w* \w east|strong="H6921"\w*; \w and|strong="H3068"\w* \w he|strong="H3588"\w* \w shall|strong="H3068"\w* \w prepare|strong="H6213"\w* \w his|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w*, \w as|strong="H3117"\w* \w he|strong="H3588"\w* \w does|strong="H6213"\w* \w on|strong="H3117"\w* \w the|strong="H3588"\w* \w Sabbath|strong="H7676"\w* \w day|strong="H3117"\w*. \w Then|strong="H3318"\w* \w he|strong="H3588"\w* \w shall|strong="H3068"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*; \w and|strong="H3068"\w* \w after|strong="H3117"\w* \w his|strong="H3068"\w* \w going|strong="H3318"\w* \w out|strong="H3318"\w* \w one|strong="H6213"\w* \w shall|strong="H3068"\w* \w shut|strong="H5462"\w* \w the|strong="H3588"\w* \w gate|strong="H8179"\w*. +\p +\v 13 “‘“\w You|strong="H3117"\w* \w shall|strong="H3068"\w* \w prepare|strong="H6213"\w* \w a|strong="H3068"\w* \w lamb|strong="H3532"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w* \w without|strong="H8549"\w* \w defect|strong="H8549"\w* \w for|strong="H6213"\w* \w a|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offering|strong="H5930"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w daily|strong="H3117"\w*. \w Morning|strong="H1242"\w* \w by|strong="H8141"\w* \w morning|strong="H1242"\w* \w you|strong="H3117"\w* \w shall|strong="H3068"\w* \w prepare|strong="H6213"\w* \w it|strong="H6213"\w*. +\v 14 \w You|strong="H5921"\w* \w shall|strong="H3068"\w* \w prepare|strong="H6213"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w with|strong="H3068"\w* \w it|strong="H5921"\w* \w morning|strong="H1242"\w* \w by|strong="H5921"\w* \w morning|strong="H1242"\w*, \w the|strong="H5921"\w* \w sixth|strong="H8345"\w* \w part|strong="H7992"\w* \w of|strong="H3068"\w* \w an|strong="H6213"\w* ephah,\f + \fr 46:14 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w third|strong="H7992"\w* \w part|strong="H7992"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w hin|strong="H1969"\w* \w of|strong="H3068"\w* \w oil|strong="H8081"\w* \w to|strong="H3068"\w* \w moisten|strong="H7450"\w* \w the|strong="H5921"\w* \w fine|strong="H5560"\w* \w flour|strong="H5560"\w*; \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w continually|strong="H8548"\w* \w by|strong="H5921"\w* \w a|strong="H3068"\w* \w perpetual|strong="H5769"\w* \w ordinance|strong="H2708"\w*. +\v 15 Thus \w they|strong="H6213"\w* \w shall|strong="H6213"\w* \w prepare|strong="H6213"\w* \w the|strong="H6213"\w* \w lamb|strong="H3532"\w*, \w the|strong="H6213"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w and|strong="H1242"\w* \w the|strong="H6213"\w* \w oil|strong="H8081"\w*, \w morning|strong="H1242"\w* \w by|strong="H1242"\w* \w morning|strong="H1242"\w*, \w for|strong="H6213"\w* \w a|strong="H3068"\w* \w continual|strong="H8548"\w* \w burnt|strong="H5930"\w* \w offering|strong="H4503"\w*.” +\p +\v 16 “‘\w The|strong="H3588"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w If|strong="H3588"\w* \w the|strong="H3588"\w* \w prince|strong="H5387"\w* \w gives|strong="H5414"\w* \w a|strong="H3068"\w* \w gift|strong="H4979"\w* \w to|strong="H1961"\w* \w any|strong="H5414"\w* \w of|strong="H1121"\w* \w his|strong="H5414"\w* \w sons|strong="H1121"\w*, \w it|strong="H5414"\w* \w is|strong="H1931"\w* \w his|strong="H5414"\w* \w inheritance|strong="H5159"\w*. \w It|strong="H5414"\w* \w shall|strong="H1121"\w* \w belong|strong="H1961"\w* \w to|strong="H1961"\w* \w his|strong="H5414"\w* \w sons|strong="H1121"\w*. \w It|strong="H5414"\w* \w is|strong="H1931"\w* \w their|strong="H5414"\w* \w possession|strong="H5159"\w* \w by|strong="H5414"\w* \w inheritance|strong="H5159"\w*. +\v 17 \w But|strong="H3588"\w* \w if|strong="H3588"\w* \w he|strong="H3588"\w* \w gives|strong="H5414"\w* \w of|strong="H1121"\w* \w his|strong="H5414"\w* \w inheritance|strong="H5159"\w* \w a|strong="H3068"\w* \w gift|strong="H4979"\w* \w to|strong="H5704"\w* \w one|strong="H1121"\w* \w of|strong="H1121"\w* \w his|strong="H5414"\w* \w servants|strong="H5650"\w*, \w it|strong="H5414"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w his|strong="H5414"\w* \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w liberty|strong="H1865"\w*; \w then|strong="H1961"\w* \w it|strong="H5414"\w* \w shall|strong="H1121"\w* \w return|strong="H7725"\w* \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w prince|strong="H5387"\w*; \w but|strong="H3588"\w* \w as|strong="H5704"\w* \w for|strong="H3588"\w* \w his|strong="H5414"\w* \w inheritance|strong="H5159"\w*, \w it|strong="H5414"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w for|strong="H3588"\w* \w his|strong="H5414"\w* \w sons|strong="H1121"\w*. +\v 18 Moreover \w the|strong="H3947"\w* \w prince|strong="H5387"\w* \w shall|strong="H1121"\w* \w not|strong="H3808"\w* \w take|strong="H3947"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w people|strong="H5971"\w*’s \w inheritance|strong="H5159"\w*, \w to|strong="H1121"\w* \w thrust|strong="H3238"\w* \w them|strong="H3947"\w* \w out|strong="H3947"\w* \w of|strong="H1121"\w* \w their|strong="H3947"\w* \w possession|strong="H5159"\w*. \w He|strong="H3808"\w* \w shall|strong="H1121"\w* \w give|strong="H5157"\w* \w inheritance|strong="H5159"\w* \w to|strong="H1121"\w* \w his|strong="H3947"\w* \w sons|strong="H1121"\w* \w out|strong="H3947"\w* \w of|strong="H1121"\w* \w his|strong="H3947"\w* \w own|strong="H5971"\w* \w possession|strong="H5159"\w*, \w that|strong="H5971"\w* \w my|strong="H3947"\w* \w people|strong="H5971"\w* \w not|strong="H3808"\w* \w each|strong="H5971"\w* \w be|strong="H3808"\w* \w scattered|strong="H6327"\w* \w from|strong="H1121"\w* \w his|strong="H3947"\w* \w possession|strong="H5159"\w*.”’” +\p +\v 19 \w Then|strong="H2009"\w* \w he|strong="H8033"\w* \w brought|strong="H3548"\w* \w me|strong="H5921"\w* \w through|strong="H5921"\w* \w the|strong="H5921"\w* \w entry|strong="H3996"\w*, \w which|strong="H8033"\w* \w was|strong="H4725"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w side|strong="H3802"\w* \w of|strong="H8179"\w* \w the|strong="H5921"\w* \w gate|strong="H8179"\w*, \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w holy|strong="H6944"\w* \w rooms|strong="H3957"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w*, \w which|strong="H8033"\w* \w looked|strong="H6437"\w* \w toward|strong="H5921"\w* \w the|strong="H5921"\w* \w north|strong="H6828"\w*. \w Behold|strong="H2009"\w*, \w there|strong="H8033"\w* \w was|strong="H4725"\w* \w a|strong="H3068"\w* \w place|strong="H4725"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w back|strong="H6437"\w* \w part|strong="H3411"\w* \w westward|strong="H3220"\w*. +\v 20 \w He|strong="H8033"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w me|strong="H3318"\w*, “\w This|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H3318"\w* \w place|strong="H4725"\w* \w where|strong="H8033"\w* \w the|strong="H3318"\w* \w priests|strong="H3548"\w* \w shall|strong="H3548"\w* \w boil|strong="H1310"\w* \w the|strong="H3318"\w* trespass \w offering|strong="H4503"\w* \w and|strong="H3548"\w* \w the|strong="H3318"\w* \w sin|strong="H2403"\w* \w offering|strong="H4503"\w*, \w and|strong="H3548"\w* \w where|strong="H8033"\w* \w they|strong="H8033"\w* \w shall|strong="H3548"\w* \w bake|strong="H1310"\w* \w the|strong="H3318"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w*, \w that|strong="H5971"\w* \w they|strong="H8033"\w* \w not|strong="H1115"\w* \w bring|strong="H3318"\w* \w them|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H3318"\w* \w outer|strong="H2435"\w* \w court|strong="H2691"\w*, \w to|strong="H3318"\w* \w sanctify|strong="H6942"\w* \w the|strong="H3318"\w* \w people|strong="H5971"\w*.” +\p +\v 21 \w Then|strong="H3318"\w* \w he|strong="H3318"\w* \w brought|strong="H3318"\w* \w me|strong="H5674"\w* \w out|strong="H3318"\w* \w into|strong="H3318"\w* \w the|strong="H5674"\w* \w outer|strong="H2435"\w* \w court|strong="H2691"\w* \w and|strong="H3318"\w* \w caused|strong="H5674"\w* \w me|strong="H5674"\w* \w to|strong="H3318"\w* \w pass|strong="H5674"\w* \w by|strong="H5674"\w* \w the|strong="H5674"\w* four \w corners|strong="H4740"\w* \w of|strong="H3318"\w* \w the|strong="H5674"\w* \w court|strong="H2691"\w*; \w and|strong="H3318"\w* \w behold|strong="H2009"\w*, \w in|strong="H3318"\w* \w every|strong="H4740"\w* \w corner|strong="H4740"\w* \w of|strong="H3318"\w* \w the|strong="H5674"\w* \w court|strong="H2691"\w* \w there|strong="H2009"\w* \w was|strong="H2691"\w* \w a|strong="H3068"\w* \w court|strong="H2691"\w*. +\v 22 \w In|strong="H7970"\w* \w the|strong="H4060"\w* four \w corners|strong="H4740"\w* \w of|strong="H7341"\w* \w the|strong="H4060"\w* \w court|strong="H2691"\w* \w there|strong="H4060"\w* \w were|strong="H2691"\w* \w courts|strong="H2691"\w* \w enclosed|strong="H7000"\w*, forty cubits\f + \fr 46:22 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* long \w and|strong="H7970"\w* \w thirty|strong="H7970"\w* \w wide|strong="H7341"\w*. These four \w in|strong="H7970"\w* \w the|strong="H4060"\w* \w corners|strong="H4740"\w* \w were|strong="H2691"\w* \w the|strong="H4060"\w* same \w size|strong="H4060"\w*. +\v 23 \w There|strong="H8478"\w* \w was|strong="H6213"\w* \w a|strong="H3068"\w* wall \w around|strong="H5439"\w* \w in|strong="H6213"\w* \w them|strong="H6213"\w*, \w around|strong="H5439"\w* \w the|strong="H6213"\w* four, \w and|strong="H6213"\w* \w boiling|strong="H4018"\w* \w places|strong="H4018"\w* \w were|strong="H5439"\w* \w made|strong="H6213"\w* \w under|strong="H8478"\w* \w the|strong="H6213"\w* walls \w all|strong="H5439"\w* \w around|strong="H5439"\w*. +\v 24 Then \w he|strong="H8033"\w* said \w to|strong="H1004"\w* \w me|strong="H1004"\w*, “\w These|strong="H5971"\w* \w are|strong="H5971"\w* \w the|strong="H8033"\w* \w boiling|strong="H1310"\w* \w houses|strong="H1004"\w*, \w where|strong="H8033"\w* \w the|strong="H8033"\w* \w ministers|strong="H8334"\w* \w of|strong="H1004"\w* \w the|strong="H8033"\w* \w house|strong="H1004"\w* \w shall|strong="H5971"\w* \w boil|strong="H1310"\w* \w the|strong="H8033"\w* \w sacrifice|strong="H2077"\w* \w of|strong="H1004"\w* \w the|strong="H8033"\w* \w people|strong="H5971"\w*.” +\c 47 +\p +\v 1 \w He|strong="H3588"\w* \w brought|strong="H3318"\w* \w me|strong="H6440"\w* \w back|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H6440"\w* \w door|strong="H6607"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w temple|strong="H1004"\w*; \w and|strong="H7725"\w* \w behold|strong="H2009"\w*, \w waters|strong="H4325"\w* \w flowed|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H7725"\w* \w under|strong="H8478"\w* \w the|strong="H6440"\w* \w threshold|strong="H4670"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w temple|strong="H1004"\w* \w eastward|strong="H6921"\w*, \w for|strong="H3588"\w* \w the|strong="H6440"\w* \w front|strong="H6440"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w temple|strong="H1004"\w* \w faced|strong="H6440"\w* \w toward|strong="H6440"\w* \w the|strong="H6440"\w* \w east|strong="H6921"\w*. \w The|strong="H6440"\w* \w waters|strong="H4325"\w* \w came|strong="H3318"\w* \w down|strong="H3381"\w* \w from|strong="H7725"\w* \w underneath|strong="H8478"\w*, \w from|strong="H7725"\w* \w the|strong="H6440"\w* \w right|strong="H3233"\w* \w side|strong="H3802"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w temple|strong="H1004"\w*, \w on|strong="H8478"\w* \w the|strong="H6440"\w* \w south|strong="H5045"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w*. +\v 2 \w Then|strong="H3318"\w* \w he|strong="H4480"\w* \w brought|strong="H3318"\w* \w me|strong="H4480"\w* \w out|strong="H3318"\w* \w by|strong="H1870"\w* \w the|strong="H4480"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w the|strong="H4480"\w* \w gate|strong="H8179"\w* \w northward|strong="H6828"\w*, \w and|strong="H1870"\w* \w led|strong="H3318"\w* \w me|strong="H4480"\w* \w around|strong="H5437"\w* \w by|strong="H1870"\w* \w the|strong="H4480"\w* \w way|strong="H1870"\w* \w outside|strong="H2351"\w* \w to|strong="H3318"\w* \w the|strong="H4480"\w* \w outer|strong="H2351"\w* \w gate|strong="H8179"\w*, \w by|strong="H1870"\w* \w the|strong="H4480"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* \w the|strong="H4480"\w* \w gate|strong="H8179"\w* \w that|strong="H4325"\w* looks \w toward|strong="H1870"\w* \w the|strong="H4480"\w* \w east|strong="H6921"\w*. \w Behold|strong="H2009"\w*, \w waters|strong="H4325"\w* ran \w out|strong="H3318"\w* \w on|strong="H1870"\w* \w the|strong="H4480"\w* \w right|strong="H3233"\w* \w side|strong="H3802"\w*. +\p +\v 3 \w When|strong="H3318"\w* \w the|strong="H5674"\w* \w man|strong="H5674"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w eastward|strong="H6921"\w* \w with|strong="H3318"\w* \w the|strong="H5674"\w* \w line|strong="H6957"\w* \w in|strong="H3027"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w*, \w he|strong="H3027"\w* \w measured|strong="H4058"\w* \w one|strong="H3027"\w* thousand cubits,\f + \fr 47:3 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w and|strong="H3027"\w* \w he|strong="H3027"\w* \w caused|strong="H5674"\w* \w me|strong="H5674"\w* \w to|strong="H3318"\w* \w pass|strong="H5674"\w* \w through|strong="H3027"\w* \w the|strong="H5674"\w* \w waters|strong="H4325"\w*, \w waters|strong="H4325"\w* \w that|strong="H4325"\w* \w were|strong="H4325"\w* \w to|strong="H3318"\w* \w the|strong="H5674"\w* ankles. +\v 4 \w Again|strong="H5674"\w* \w he|strong="H4058"\w* \w measured|strong="H4058"\w* one thousand, \w and|strong="H4325"\w* \w caused|strong="H5674"\w* \w me|strong="H5674"\w* \w to|strong="H4325"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H5674"\w* \w waters|strong="H4325"\w*, \w waters|strong="H4325"\w* \w that|strong="H4325"\w* \w were|strong="H4325"\w* \w to|strong="H4325"\w* \w the|strong="H5674"\w* \w knees|strong="H1290"\w*. \w Again|strong="H5674"\w* \w he|strong="H4058"\w* \w measured|strong="H4058"\w* one thousand, \w and|strong="H4325"\w* \w caused|strong="H5674"\w* \w me|strong="H5674"\w* \w to|strong="H4325"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w waters|strong="H4325"\w* \w that|strong="H4325"\w* \w were|strong="H4325"\w* \w to|strong="H4325"\w* \w the|strong="H5674"\w* \w waist|strong="H4975"\w*. +\v 5 Afterward \w he|strong="H3588"\w* \w measured|strong="H4058"\w* \w one|strong="H3808"\w* thousand; \w and|strong="H4325"\w* \w it|strong="H3588"\w* \w was|strong="H4325"\w* \w a|strong="H3068"\w* \w river|strong="H5158"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w could|strong="H3201"\w* \w not|strong="H3808"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w waters|strong="H4325"\w* \w had|strong="H3588"\w* \w risen|strong="H1342"\w*, \w waters|strong="H4325"\w* \w to|strong="H3201"\w* \w swim|strong="H7813"\w* \w in|strong="H3808"\w*, \w a|strong="H3068"\w* \w river|strong="H5158"\w* \w that|strong="H3588"\w* \w could|strong="H3201"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* walked \w through|strong="H5674"\w*. +\p +\v 6 \w He|strong="H7725"\w* said \w to|strong="H7725"\w* \w me|strong="H7725"\w*, “\w Son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w have|strong="H1121"\w* \w you|strong="H7725"\w* \w seen|strong="H7200"\w* \w this|strong="H7200"\w*?” +\p \w Then|strong="H7725"\w* \w he|strong="H7725"\w* \w brought|strong="H7725"\w* \w me|strong="H7725"\w* \w and|strong="H1121"\w* caused \w me|strong="H7725"\w* \w to|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H7200"\w* \w bank|strong="H8193"\w* \w of|strong="H1121"\w* \w the|strong="H7200"\w* \w river|strong="H5158"\w*. +\v 7 \w Now|strong="H2009"\w* \w when|strong="H7725"\w* \w I|strong="H2009"\w* had \w returned|strong="H7725"\w*, \w behold|strong="H2009"\w*, \w on|strong="H7725"\w* \w the|strong="H7725"\w* \w bank|strong="H8193"\w* \w of|strong="H6086"\w* \w the|strong="H7725"\w* \w river|strong="H5158"\w* \w were|strong="H7227"\w* \w very|strong="H3966"\w* \w many|strong="H7227"\w* \w trees|strong="H6086"\w* \w on|strong="H7725"\w* \w the|strong="H7725"\w* \w one|strong="H2088"\w* \w side|strong="H2088"\w* \w and|strong="H7725"\w* \w on|strong="H7725"\w* \w the|strong="H7725"\w* \w other|strong="H2088"\w*. +\v 8 \w Then|strong="H3318"\w* \w he|strong="H5921"\w* \w said|strong="H3318"\w* \w to|strong="H3381"\w* \w me|strong="H5921"\w*, “\w These|strong="H7495"\w* \w waters|strong="H4325"\w* \w flow|strong="H3381"\w* \w out|strong="H3318"\w* \w toward|strong="H5921"\w* \w the|strong="H5921"\w* \w eastern|strong="H6930"\w* \w region|strong="H1552"\w* \w and|strong="H3318"\w* \w will|strong="H4325"\w* \w go|strong="H3318"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w the|strong="H5921"\w* \w Arabah|strong="H6160"\w*. \w Then|strong="H3318"\w* \w they|strong="H5921"\w* \w will|strong="H4325"\w* \w go|strong="H3318"\w* \w toward|strong="H5921"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w and|strong="H3318"\w* \w flow|strong="H3381"\w* \w into|strong="H3381"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w which|strong="H4325"\w* \w will|strong="H4325"\w* \w be|strong="H3220"\w* made \w to|strong="H3381"\w* \w flow|strong="H3381"\w* \w out|strong="H3318"\w*; \w and|strong="H3318"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w will|strong="H4325"\w* \w be|strong="H3220"\w* \w healed|strong="H7495"\w*. +\v 9 \w It|strong="H3588"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w that|strong="H3588"\w* \w every|strong="H3605"\w* \w living|strong="H2416"\w* \w creature|strong="H5315"\w* \w which|strong="H8033"\w* \w swarms|strong="H8317"\w*, \w in|strong="H5315"\w* \w every|strong="H3605"\w* \w place|strong="H1961"\w* \w where|strong="H8033"\w* \w the|strong="H3605"\w* \w rivers|strong="H5158"\w* \w come|strong="H1961"\w*, \w will|strong="H1961"\w* \w live|strong="H2421"\w*. \w Then|strong="H1961"\w* \w there|strong="H8033"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H7227"\w* \w multitude|strong="H7227"\w* \w of|strong="H4325"\w* \w fish|strong="H1710"\w*; \w for|strong="H3588"\w* \w these|strong="H3605"\w* \w waters|strong="H4325"\w* \w have|strong="H1961"\w* \w come|strong="H1961"\w* \w there|strong="H8033"\w*, \w and|strong="H8033"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w of|strong="H4325"\w* \w the|strong="H3605"\w* sea \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w healed|strong="H7495"\w*, \w and|strong="H8033"\w* \w everything|strong="H3605"\w* \w will|strong="H1961"\w* \w live|strong="H2421"\w* \w wherever|strong="H3605"\w* \w the|strong="H3605"\w* \w river|strong="H5158"\w* \w comes|strong="H1961"\w*. +\v 10 \w It|strong="H5921"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w that|strong="H5704"\w* \w fishermen|strong="H1728"\w* \w will|strong="H1961"\w* \w stand|strong="H5975"\w* \w by|strong="H5921"\w* \w it|strong="H5921"\w*. \w From|strong="H5921"\w* En Gedi \w even|strong="H5704"\w* \w to|strong="H5704"\w* En Eglaim \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w place|strong="H1961"\w* \w for|strong="H5704"\w* \w the|strong="H5921"\w* \w spreading|strong="H4894"\w* \w of|strong="H5921"\w* \w nets|strong="H2764"\w*. \w Their|strong="H5921"\w* \w fish|strong="H1710"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w after|strong="H5921"\w* \w their|strong="H5921"\w* \w kinds|strong="H4327"\w*, \w as|strong="H5704"\w* \w the|strong="H5921"\w* \w fish|strong="H1710"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w great|strong="H1419"\w* \w sea|strong="H3220"\w*, \w exceedingly|strong="H3966"\w* \w many|strong="H7227"\w*. +\v 11 \w But|strong="H3808"\w* \w its|strong="H5414"\w* \w swamps|strong="H1207"\w* \w and|strong="H3808"\w* \w marshes|strong="H1207"\w* \w will|strong="H5414"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w healed|strong="H7495"\w*. \w They|strong="H3808"\w* \w will|strong="H5414"\w* \w be|strong="H3808"\w* \w given|strong="H5414"\w* \w up|strong="H5414"\w* \w to|strong="H5414"\w* \w salt|strong="H4417"\w*. +\v 12 \w By|strong="H5921"\w* \w the|strong="H3605"\w* \w river|strong="H5158"\w* \w banks|strong="H8193"\w*, \w on|strong="H5921"\w* \w both|strong="H4480"\w* \w sides|strong="H2088"\w*, \w will|strong="H1961"\w* \w grow|strong="H5927"\w* \w every|strong="H3605"\w* \w tree|strong="H6086"\w* \w for|strong="H3588"\w* \w food|strong="H3978"\w*, \w whose|strong="H3605"\w* \w leaf|strong="H5929"\w* won’t \w wither|strong="H5034"\w*, \w neither|strong="H3808"\w* \w will|strong="H1961"\w* \w its|strong="H3605"\w* \w fruit|strong="H6529"\w* \w fail|strong="H8552"\w*. \w It|strong="H5921"\w* \w will|strong="H1961"\w* \w produce|strong="H6529"\w* \w new|strong="H2320"\w* \w fruit|strong="H6529"\w* \w every|strong="H3605"\w* \w month|strong="H2320"\w*, \w because|strong="H3588"\w* \w its|strong="H3605"\w* \w waters|strong="H4325"\w* \w issue|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H4325"\w* \w the|strong="H3605"\w* \w sanctuary|strong="H4720"\w*. \w Its|strong="H3605"\w* \w fruit|strong="H6529"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w for|strong="H3588"\w* \w food|strong="H3978"\w*, \w and|strong="H6086"\w* \w its|strong="H3605"\w* \w leaf|strong="H5929"\w* \w for|strong="H3588"\w* \w healing|strong="H8644"\w*.” +\p +\v 13 \w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w This|strong="H3541"\w* \w shall|strong="H3478"\w* \w be|strong="H3478"\w* \w the|strong="H3069"\w* \w border|strong="H1366"\w* \w by|strong="H3478"\w* \w which|strong="H3478"\w* \w you|strong="H3478"\w* \w shall|strong="H3478"\w* \w divide|strong="H5157"\w* \w the|strong="H3069"\w* \w land|strong="H1366"\w* \w for|strong="H3478"\w* \w inheritance|strong="H5157"\w* according \w to|strong="H3478"\w* \w the|strong="H3069"\w* \w twelve|strong="H8147"\w* \w tribes|strong="H7626"\w* \w of|strong="H7626"\w* \w Israel|strong="H3478"\w*. \w Joseph|strong="H3130"\w* \w shall|strong="H3478"\w* \w have|strong="H3478"\w* \w two|strong="H8147"\w* \w portions|strong="H2256"\w*. +\v 14 \w You|strong="H5414"\w* \w shall|strong="H3027"\w* \w inherit|strong="H5157"\w* \w it|strong="H5414"\w*, \w one|strong="H5375"\w* \w as|strong="H5159"\w* well \w as|strong="H5159"\w* another; \w for|strong="H3027"\w* \w I|strong="H5414"\w* \w swore|strong="H5375"\w* \w to|strong="H5414"\w* \w give|strong="H5414"\w* \w it|strong="H5414"\w* \w to|strong="H5414"\w* \w your|strong="H5414"\w* fathers. \w This|strong="H2063"\w* \w land|strong="H5159"\w* \w will|strong="H3027"\w* \w fall|strong="H5307"\w* \w to|strong="H5414"\w* \w you|strong="H5414"\w* \w for|strong="H3027"\w* \w inheritance|strong="H5159"\w*. +\p +\v 15 “\w This|strong="H2088"\w* \w shall|strong="H1366"\w* \w be|strong="H1870"\w* \w the|strong="H4480"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w the|strong="H4480"\w* \w land|strong="H1366"\w*: +\p “\w On|strong="H1870"\w* \w the|strong="H4480"\w* \w north|strong="H6828"\w* \w side|strong="H6285"\w*, \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w great|strong="H1419"\w* \w sea|strong="H3220"\w*, \w by|strong="H1870"\w* \w the|strong="H4480"\w* \w way|strong="H1870"\w* \w of|strong="H1366"\w* \w Hethlon|strong="H2855"\w*, \w to|strong="H1870"\w* \w the|strong="H4480"\w* entrance \w of|strong="H1366"\w* \w Zedad|strong="H6657"\w*; +\v 16 \w Hamath|strong="H2574"\w*, \w Berothah|strong="H1268"\w*, \w Sibraim|strong="H5453"\w* (\w which|strong="H1366"\w* \w is|strong="H1834"\w* between \w the|strong="H2574"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Damascus|strong="H1834"\w* \w and|strong="H2574"\w* \w the|strong="H2574"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Hamath|strong="H2574"\w*), \w to|strong="H1834"\w* Hazer Hatticon, \w which|strong="H1366"\w* \w is|strong="H1834"\w* \w by|strong="H1366"\w* \w the|strong="H2574"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Hauran|strong="H2362"\w*. +\v 17 \w The|strong="H4480"\w* \w border|strong="H1366"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w sea|strong="H3220"\w* \w shall|strong="H1366"\w* \w be|strong="H1961"\w* Hazar Enon \w at|strong="H1961"\w* \w the|strong="H4480"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Damascus|strong="H1834"\w*; \w and|strong="H3220"\w* \w on|strong="H1961"\w* \w the|strong="H4480"\w* \w north|strong="H6828"\w* \w northward|strong="H6828"\w* \w is|strong="H1961"\w* \w the|strong="H4480"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Hamath|strong="H2574"\w*. \w This|strong="H1961"\w* \w is|strong="H1961"\w* \w the|strong="H4480"\w* \w north|strong="H6828"\w* \w side|strong="H6285"\w*. +\p +\v 18 “\w The|strong="H5921"\w* \w east|strong="H6921"\w* \w side|strong="H6285"\w*, \w between|strong="H5921"\w* \w Hauran|strong="H2362"\w*, \w Damascus|strong="H1834"\w*, \w Gilead|strong="H1568"\w*, \w and|strong="H3478"\w* \w the|strong="H5921"\w* \w land|strong="H1366"\w* \w of|strong="H1366"\w* \w Israel|strong="H3478"\w*, \w shall|strong="H3478"\w* \w be|strong="H3478"\w* \w the|strong="H5921"\w* \w Jordan|strong="H3383"\w*; \w from|strong="H5921"\w* \w the|strong="H5921"\w* north \w border|strong="H1366"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w east|strong="H6921"\w* \w sea|strong="H3220"\w* \w you|strong="H5921"\w* \w shall|strong="H3478"\w* \w measure|strong="H4058"\w*. \w This|strong="H3478"\w* \w is|strong="H3478"\w* \w the|strong="H5921"\w* \w east|strong="H6921"\w* \w side|strong="H6285"\w*. +\p +\v 19 “\w The|strong="H5704"\w* \w south|strong="H5045"\w* \w side|strong="H6285"\w* \w southward|strong="H5045"\w* \w shall|strong="H4325"\w* \w be|strong="H3220"\w* \w from|strong="H6285"\w* \w Tamar|strong="H8559"\w* \w as|strong="H5704"\w* \w far|strong="H5704"\w* \w as|strong="H5704"\w* \w the|strong="H5704"\w* \w waters|strong="H4325"\w* \w of|strong="H4325"\w* Meriboth \w Kadesh|strong="H6946"\w*, \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w brook|strong="H5158"\w*, \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w great|strong="H1419"\w* \w sea|strong="H3220"\w*. This \w is|strong="H4325"\w* \w the|strong="H5704"\w* \w south|strong="H5045"\w* \w side|strong="H6285"\w* \w southward|strong="H5045"\w*. +\p +\v 20 “\w The|strong="H5704"\w* \w west|strong="H3220"\w* \w side|strong="H6285"\w* \w shall|strong="H1366"\w* \w be|strong="H3220"\w* \w the|strong="H5704"\w* \w great|strong="H1419"\w* \w sea|strong="H3220"\w*, \w from|strong="H6285"\w* \w the|strong="H5704"\w* \w south|strong="H3220"\w* \w border|strong="H1366"\w* \w as|strong="H5704"\w* \w far|strong="H5704"\w* \w as|strong="H5704"\w* \w opposite|strong="H5227"\w* \w the|strong="H5704"\w* entrance \w of|strong="H1366"\w* \w Hamath|strong="H2574"\w*. \w This|strong="H2063"\w* \w is|strong="H1419"\w* \w the|strong="H5704"\w* \w west|strong="H3220"\w* \w side|strong="H6285"\w*. +\p +\v 21 “\w So|strong="H2063"\w* \w you|strong="H3478"\w* \w shall|strong="H3478"\w* \w divide|strong="H2505"\w* \w this|strong="H2063"\w* land \w to|strong="H3478"\w* yourselves according \w to|strong="H3478"\w* \w the|strong="H2505"\w* \w tribes|strong="H7626"\w* \w of|strong="H7626"\w* \w Israel|strong="H3478"\w*. +\v 22 \w You|strong="H8432"\w* \w shall|strong="H1121"\w* \w divide|strong="H5307"\w* \w it|strong="H8432"\w* \w by|strong="H3478"\w* \w lot|strong="H5307"\w* \w for|strong="H1121"\w* \w an|strong="H1961"\w* \w inheritance|strong="H5159"\w* \w to|strong="H3478"\w* \w you|strong="H8432"\w* \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w the|strong="H8432"\w* \w aliens|strong="H1616"\w* \w who|strong="H1616"\w* \w live|strong="H1481"\w* \w among|strong="H8432"\w* \w you|strong="H8432"\w*, \w who|strong="H1616"\w* \w will|strong="H1961"\w* \w father|strong="H3205"\w* \w children|strong="H1121"\w* \w among|strong="H8432"\w* \w you|strong="H8432"\w*. \w Then|strong="H1961"\w* \w they|strong="H3478"\w* \w shall|strong="H1121"\w* \w be|strong="H1961"\w* \w to|strong="H3478"\w* \w you|strong="H8432"\w* \w as|strong="H1961"\w* \w the|strong="H8432"\w* native-born \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. \w They|strong="H3478"\w* \w shall|strong="H1121"\w* \w have|strong="H1961"\w* \w inheritance|strong="H5159"\w* \w with|strong="H3478"\w* \w you|strong="H8432"\w* \w among|strong="H8432"\w* \w the|strong="H8432"\w* \w tribes|strong="H7626"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\v 23 \w In|strong="H5414"\w* whatever \w tribe|strong="H7626"\w* \w the|strong="H5002"\w* \w stranger|strong="H1616"\w* \w lives|strong="H1481"\w*, \w there|strong="H8033"\w* \w you|strong="H5414"\w* \w shall|strong="H3069"\w* \w give|strong="H5414"\w* \w him|strong="H5414"\w* \w his|strong="H5414"\w* \w inheritance|strong="H5159"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\c 48 +\p +\v 1 “\w Now|strong="H1961"\w* these \w are|strong="H3027"\w* \w the|strong="H1870"\w* \w names|strong="H8034"\w* \w of|strong="H3027"\w* \w the|strong="H1870"\w* \w tribes|strong="H7626"\w*: \w From|strong="H3027"\w* \w the|strong="H1870"\w* \w north|strong="H6828"\w* \w end|strong="H7097"\w*, \w beside|strong="H3027"\w* \w the|strong="H1870"\w* \w way|strong="H1870"\w* \w of|strong="H3027"\w* \w Hethlon|strong="H2855"\w* \w to|strong="H1961"\w* \w the|strong="H1870"\w* entrance \w of|strong="H3027"\w* \w Hamath|strong="H2574"\w*, Hazar Enan \w at|strong="H1961"\w* \w the|strong="H1870"\w* \w border|strong="H1366"\w* \w of|strong="H3027"\w* \w Damascus|strong="H1834"\w*, \w northward|strong="H6828"\w* \w beside|strong="H3027"\w* \w Hamath|strong="H2574"\w* (\w and|strong="H3027"\w* \w they|strong="H3027"\w* \w shall|strong="H3027"\w* \w have|strong="H1961"\w* \w their|strong="H1961"\w* \w sides|strong="H6285"\w* \w east|strong="H6921"\w* \w and|strong="H3027"\w* \w west|strong="H3220"\w*), \w Dan|strong="H1835"\w*, \w one|strong="H1961"\w* \w portion|strong="H7097"\w*. +\p +\v 2 “\w By|strong="H5921"\w* \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Dan|strong="H1835"\w*, \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w east|strong="H6921"\w* \w side|strong="H6285"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w west|strong="H3220"\w* \w side|strong="H6285"\w*, Asher, one portion. +\p +\v 3 “\w By|strong="H5921"\w* \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* Asher, \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w east|strong="H6921"\w* \w side|strong="H6285"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w west|strong="H3220"\w* \w side|strong="H6285"\w*, \w Naphtali|strong="H5321"\w*, one portion. +\p +\v 4 “\w By|strong="H5921"\w* \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Naphtali|strong="H5321"\w*, \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w east|strong="H6921"\w* \w side|strong="H6285"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w west|strong="H3220"\w* \w side|strong="H6285"\w*, \w Manasseh|strong="H4519"\w*, one portion. +\p +\v 5 “\w By|strong="H5921"\w* \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Manasseh|strong="H4519"\w*, \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w east|strong="H6921"\w* \w side|strong="H6285"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w west|strong="H3220"\w* \w side|strong="H6285"\w*, Ephraim, one portion. +\p +\v 6 “\w By|strong="H5921"\w* \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* Ephraim, \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w east|strong="H6921"\w* \w side|strong="H6285"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w west|strong="H3220"\w* \w side|strong="H6285"\w*, \w Reuben|strong="H7205"\w*, one portion. +\p +\v 7 “\w By|strong="H5921"\w* \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Reuben|strong="H7205"\w*, \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w east|strong="H6921"\w* \w side|strong="H6285"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w west|strong="H3220"\w* \w side|strong="H6285"\w*, \w Judah|strong="H3063"\w*, one portion. +\p +\v 8 “\w By|strong="H5921"\w* \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Judah|strong="H3063"\w*, \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w east|strong="H6921"\w* \w side|strong="H6285"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w west|strong="H3220"\w* \w side|strong="H6285"\w*, \w shall|strong="H1366"\w* \w be|strong="H1961"\w* \w the|strong="H5921"\w* \w offering|strong="H8641"\w* \w which|strong="H3063"\w* \w you|strong="H5921"\w* \w shall|strong="H1366"\w* \w offer|strong="H7311"\w*, \w twenty-five|strong="H6242"\w* thousand reeds \w in|strong="H5921"\w* \w width|strong="H7341"\w*, \w and|strong="H3063"\w* \w in|strong="H5921"\w* \w length|strong="H5921"\w* \w as|strong="H5704"\w* \w one|strong="H1961"\w* \w of|strong="H1366"\w* \w the|strong="H5921"\w* \w portions|strong="H2506"\w*, \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w east|strong="H6921"\w* \w side|strong="H6285"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w west|strong="H3220"\w* \w side|strong="H6285"\w*; \w and|strong="H3063"\w* \w the|strong="H5921"\w* \w sanctuary|strong="H4720"\w* \w shall|strong="H1366"\w* \w be|strong="H1961"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H1366"\w* \w it|strong="H5921"\w*. +\p +\v 9 “\w The|strong="H3068"\w* \w offering|strong="H8641"\w* \w that|strong="H3068"\w* you \w shall|strong="H3068"\w* \w offer|strong="H7311"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w twenty-five|strong="H6242"\w* thousand reeds \w in|strong="H3068"\w* length, \w and|strong="H3068"\w* \w ten|strong="H6235"\w* thousand \w in|strong="H3068"\w* \w width|strong="H7341"\w*. +\v 10 \w For|strong="H3068"\w* these, \w even|strong="H3068"\w* \w for|strong="H3068"\w* \w the|strong="H8432"\w* \w priests|strong="H3548"\w*, \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w the|strong="H8432"\w* \w holy|strong="H6944"\w* \w offering|strong="H8641"\w*: \w toward|strong="H3068"\w* \w the|strong="H8432"\w* \w north|strong="H6828"\w* \w twenty-five|strong="H6242"\w* thousand \w in|strong="H3068"\w* length, \w and|strong="H3068"\w* \w toward|strong="H3068"\w* \w the|strong="H8432"\w* \w west|strong="H3220"\w* \w ten|strong="H6235"\w* thousand \w in|strong="H3068"\w* \w width|strong="H7341"\w*, \w and|strong="H3068"\w* \w toward|strong="H3068"\w* \w the|strong="H8432"\w* \w east|strong="H6921"\w* \w ten|strong="H6235"\w* thousand \w in|strong="H3068"\w* \w width|strong="H7341"\w*, \w and|strong="H3068"\w* \w toward|strong="H3068"\w* \w the|strong="H8432"\w* \w south|strong="H5045"\w* \w twenty-five|strong="H6242"\w* thousand \w in|strong="H3068"\w* length; \w and|strong="H3068"\w* \w the|strong="H8432"\w* \w sanctuary|strong="H6944"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w shall|strong="H3548"\w* \w be|strong="H1961"\w* \w in|strong="H3068"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w it|strong="H8432"\w*. +\v 11 \w It|strong="H6942"\w* \w shall|strong="H3548"\w* \w be|strong="H3808"\w* \w for|strong="H1121"\w* \w the|strong="H8104"\w* \w priests|strong="H3548"\w* \w who|strong="H3548"\w* \w are|strong="H1121"\w* \w sanctified|strong="H6942"\w* \w of|strong="H1121"\w* \w the|strong="H8104"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Zadok|strong="H6659"\w*, \w who|strong="H3548"\w* \w have|strong="H1121"\w* \w kept|strong="H8104"\w* \w my|strong="H8104"\w* instruction, \w who|strong="H3548"\w* didn’t \w go|strong="H8582"\w* \w astray|strong="H8582"\w* \w when|strong="H1121"\w* \w the|strong="H8104"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w went|strong="H3478"\w* \w astray|strong="H8582"\w*, \w as|strong="H1121"\w* \w the|strong="H8104"\w* \w Levites|strong="H3881"\w* \w went|strong="H3478"\w* \w astray|strong="H8582"\w*. +\v 12 \w It|strong="H1961"\w* \w shall|strong="H3881"\w* \w be|strong="H1961"\w* \w to|strong="H1961"\w* \w them|strong="H1961"\w* \w an|strong="H1961"\w* \w offering|strong="H8641"\w* \w from|strong="H3881"\w* \w the|strong="H1961"\w* \w offering|strong="H8641"\w* \w of|strong="H1366"\w* \w the|strong="H1961"\w* \w land|strong="H1366"\w*, \w a|strong="H3068"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w* \w thing|strong="H6944"\w*, \w by|strong="H1961"\w* \w the|strong="H1961"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w the|strong="H1961"\w* \w Levites|strong="H3881"\w*. +\p +\v 13 “\w Alongside|strong="H5980"\w* \w the|strong="H3605"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w*, \w the|strong="H3605"\w* \w Levites|strong="H3881"\w* \w shall|strong="H3548"\w* \w have|strong="H3548"\w* \w twenty-five|strong="H6242"\w* thousand \w cubits|strong="H2568"\w* \w in|strong="H6235"\w* length \w and|strong="H6242"\w* \w ten|strong="H6235"\w* thousand \w in|strong="H6235"\w* \w width|strong="H7341"\w*. \w All|strong="H3605"\w* \w the|strong="H3605"\w* length \w shall|strong="H3548"\w* \w be|strong="H3548"\w* \w twenty-five|strong="H6242"\w* thousand, \w and|strong="H6242"\w* \w the|strong="H3605"\w* \w width|strong="H7341"\w* \w ten|strong="H6235"\w* thousand. +\v 14 \w They|strong="H3588"\w* \w shall|strong="H3068"\w* \w sell|strong="H4376"\w* \w none|strong="H3808"\w* \w of|strong="H3068"\w* \w it|strong="H3588"\w*, \w nor|strong="H3808"\w* \w exchange|strong="H4171"\w* \w it|strong="H3588"\w*, \w nor|strong="H3808"\w* \w shall|strong="H3068"\w* \w the|strong="H3588"\w* \w first|strong="H7225"\w* \w fruits|strong="H7225"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* land \w be|strong="H3808"\w* alienated, \w for|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H3068"\w* \w holy|strong="H6944"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 15 “\w The|strong="H6440"\w* \w five|strong="H2568"\w* thousand \w cubits|strong="H2568"\w* \w that|strong="H1931"\w* \w are|strong="H5892"\w* \w left|strong="H3498"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w width|strong="H7341"\w*, \w in|strong="H5921"\w* \w front|strong="H6440"\w* \w of|strong="H5892"\w* \w the|strong="H6440"\w* \w twenty-five|strong="H6242"\w* thousand, \w shall|strong="H5892"\w* \w be|strong="H1961"\w* \w for|strong="H5921"\w* \w common|strong="H2455"\w* \w use|strong="H1961"\w*, \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w*, \w for|strong="H5921"\w* \w dwelling|strong="H4186"\w* \w and|strong="H6242"\w* \w for|strong="H5921"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*; \w and|strong="H6242"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w* \w shall|strong="H5892"\w* \w be|strong="H1961"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w middle|strong="H8432"\w* \w of|strong="H5892"\w* \w it|strong="H1931"\w*. +\v 16 These \w shall|strong="H6828"\w* \w be|strong="H3220"\w* \w its|strong="H3220"\w* \w measurements|strong="H4060"\w*: \w the|strong="H3967"\w* \w north|strong="H6828"\w* \w side|strong="H6285"\w* four thousand \w and|strong="H3967"\w* \w five|strong="H2568"\w* \w hundred|strong="H3967"\w*, \w and|strong="H3967"\w* \w the|strong="H3967"\w* \w south|strong="H5045"\w* \w side|strong="H6285"\w* four thousand \w and|strong="H3967"\w* \w five|strong="H2568"\w* \w hundred|strong="H3967"\w*, \w and|strong="H3967"\w* \w on|strong="H6285"\w* \w the|strong="H3967"\w* \w east|strong="H6921"\w* \w side|strong="H6285"\w* four thousand \w and|strong="H3967"\w* \w five|strong="H2568"\w* \w hundred|strong="H3967"\w*, \w and|strong="H3967"\w* \w the|strong="H3967"\w* \w west|strong="H3220"\w* \w side|strong="H6285"\w* four thousand \w and|strong="H3967"\w* \w five|strong="H2568"\w* \w hundred|strong="H3967"\w*. +\v 17 \w The|strong="H1961"\w* \w city|strong="H5892"\w* \w shall|strong="H5892"\w* \w have|strong="H1961"\w* \w pasture|strong="H4054"\w* \w lands|strong="H4054"\w*: toward \w the|strong="H1961"\w* \w north|strong="H6828"\w* \w two|strong="H3220"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w*, \w and|strong="H3967"\w* toward \w the|strong="H1961"\w* \w south|strong="H5045"\w* \w two|strong="H3220"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w*, \w and|strong="H3967"\w* toward \w the|strong="H1961"\w* \w east|strong="H6921"\w* \w two|strong="H3220"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w*, \w and|strong="H3967"\w* toward \w the|strong="H1961"\w* \w west|strong="H3220"\w* \w two|strong="H3220"\w* \w hundred|strong="H3967"\w* \w fifty|strong="H2572"\w*. +\v 18 \w The|strong="H5647"\w* \w remainder|strong="H3498"\w* \w of|strong="H5892"\w* \w the|strong="H5647"\w* length, \w alongside|strong="H5980"\w* \w the|strong="H5647"\w* \w holy|strong="H6944"\w* \w offering|strong="H8641"\w*, \w shall|strong="H5892"\w* \w be|strong="H1961"\w* \w ten|strong="H6235"\w* thousand \w eastward|strong="H6921"\w* \w and|strong="H3899"\w* \w ten|strong="H6235"\w* thousand \w westward|strong="H3220"\w*; \w and|strong="H3899"\w* \w it|strong="H1961"\w* \w shall|strong="H5892"\w* \w be|strong="H1961"\w* \w alongside|strong="H5980"\w* \w the|strong="H5647"\w* \w holy|strong="H6944"\w* \w offering|strong="H8641"\w*. \w Its|strong="H3220"\w* \w increase|strong="H8393"\w* \w shall|strong="H5892"\w* \w be|strong="H1961"\w* \w for|strong="H5892"\w* \w food|strong="H3899"\w* \w to|strong="H1961"\w* \w those|strong="H1961"\w* \w who|strong="H8641"\w* \w labor|strong="H5647"\w* \w in|strong="H5892"\w* \w the|strong="H5647"\w* \w city|strong="H5892"\w*. +\v 19 \w Those|strong="H3605"\w* \w who|strong="H3605"\w* \w labor|strong="H5647"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*, \w out|strong="H3605"\w* \w of|strong="H7626"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H7626"\w* \w Israel|strong="H3478"\w*, \w shall|strong="H3478"\w* \w cultivate|strong="H5647"\w* \w it|strong="H3605"\w*. +\v 20 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w offering|strong="H8641"\w* \w shall|strong="H5892"\w* \w be|strong="H5892"\w* \w a|strong="H3068"\w* \w square|strong="H7243"\w* \w of|strong="H5892"\w* \w twenty-five|strong="H6242"\w* thousand \w by|strong="H5892"\w* \w twenty-five|strong="H6242"\w* thousand. \w You|strong="H3605"\w* \w shall|strong="H5892"\w* \w offer|strong="H7311"\w* \w it|strong="H7311"\w* \w as|strong="H5892"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w offering|strong="H8641"\w*, \w with|strong="H5892"\w* \w the|strong="H3605"\w* possession \w of|strong="H5892"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*. +\p +\v 21 “\w The|strong="H6440"\w* \w remainder|strong="H3498"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w* \w for|strong="H5704"\w* \w the|strong="H6440"\w* \w prince|strong="H5387"\w*, \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w one|strong="H2088"\w* \w side|strong="H2088"\w* \w and|strong="H6242"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w other|strong="H2088"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w holy|strong="H6944"\w* \w offering|strong="H8641"\w* \w and|strong="H6242"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* possession \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w*; \w in|strong="H5921"\w* \w front|strong="H6440"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w twenty-five|strong="H6242"\w* thousand \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w offering|strong="H8641"\w* \w toward|strong="H5921"\w* \w the|strong="H6440"\w* \w east|strong="H6921"\w* \w border|strong="H1366"\w*, \w and|strong="H6242"\w* \w westward|strong="H3220"\w* \w in|strong="H5921"\w* \w front|strong="H6440"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w twenty-five|strong="H6242"\w* thousand \w toward|strong="H5921"\w* \w the|strong="H6440"\w* \w west|strong="H3220"\w* \w border|strong="H1366"\w*, \w alongside|strong="H5980"\w* \w the|strong="H6440"\w* \w portions|strong="H2506"\w*, \w it|strong="H5921"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w* \w for|strong="H5704"\w* \w the|strong="H6440"\w* \w prince|strong="H5387"\w*. \w The|strong="H6440"\w* \w holy|strong="H6944"\w* \w offering|strong="H8641"\w* \w and|strong="H6242"\w* \w the|strong="H6440"\w* \w sanctuary|strong="H6944"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w shall|strong="H1004"\w* \w be|strong="H1961"\w* \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w middle|strong="H8432"\w* \w of|strong="H1004"\w* \w it|strong="H5921"\w*. +\v 22 \w Moreover|strong="H1961"\w*, \w from|strong="H3881"\w* \w the|strong="H8432"\w* possession \w of|strong="H5892"\w* \w the|strong="H8432"\w* \w Levites|strong="H3881"\w*, \w and|strong="H3063"\w* \w from|strong="H3881"\w* \w the|strong="H8432"\w* possession \w of|strong="H5892"\w* \w the|strong="H8432"\w* \w city|strong="H5892"\w*, \w being|strong="H1961"\w* \w in|strong="H8432"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H5892"\w* \w that|strong="H3881"\w* \w which|strong="H5892"\w* \w is|strong="H5892"\w* \w the|strong="H8432"\w* \w prince|strong="H5387"\w*’s, \w between|strong="H8432"\w* \w the|strong="H8432"\w* \w border|strong="H1366"\w* \w of|strong="H5892"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w the|strong="H8432"\w* \w border|strong="H1366"\w* \w of|strong="H5892"\w* \w Benjamin|strong="H1144"\w*, \w shall|strong="H5892"\w* \w be|strong="H1961"\w* \w for|strong="H5892"\w* \w the|strong="H8432"\w* \w prince|strong="H5387"\w*. +\p +\v 23 “\w As|strong="H5704"\w* \w for|strong="H5704"\w* \w the|strong="H5704"\w* \w rest|strong="H3499"\w* \w of|strong="H7626"\w* \w the|strong="H5704"\w* \w tribes|strong="H7626"\w*: \w from|strong="H6285"\w* \w the|strong="H5704"\w* \w east|strong="H6921"\w* \w side|strong="H6285"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w west|strong="H3220"\w* \w side|strong="H6285"\w*, \w Benjamin|strong="H1144"\w*, one portion. +\p +\v 24 “\w By|strong="H5921"\w* \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Benjamin|strong="H1144"\w*, \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w east|strong="H6921"\w* \w side|strong="H6285"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w west|strong="H3220"\w* \w side|strong="H6285"\w*, \w Simeon|strong="H8095"\w*, one portion. +\p +\v 25 “\w By|strong="H5921"\w* \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Simeon|strong="H8095"\w*, \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w east|strong="H6921"\w* \w side|strong="H6285"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w west|strong="H3220"\w* \w side|strong="H6285"\w*, \w Issachar|strong="H3485"\w*, one portion. +\p +\v 26 “\w By|strong="H5921"\w* \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Issachar|strong="H3485"\w*, \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w east|strong="H6921"\w* \w side|strong="H6285"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w west|strong="H3220"\w* \w side|strong="H6285"\w*, \w Zebulun|strong="H2074"\w*, one portion. +\p +\v 27 “\w By|strong="H5921"\w* \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Zebulun|strong="H2074"\w*, \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w east|strong="H6921"\w* \w side|strong="H6285"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w west|strong="H3220"\w* \w side|strong="H6285"\w*, \w Gad|strong="H1410"\w*, one portion. +\p +\v 28 “\w By|strong="H5921"\w* \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w of|strong="H1366"\w* \w Gad|strong="H1410"\w*, \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w south|strong="H5045"\w* \w side|strong="H6285"\w* \w southward|strong="H5045"\w*, \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w shall|strong="H1366"\w* \w be|strong="H1961"\w* \w even|strong="H5921"\w* \w from|strong="H5921"\w* \w Tamar|strong="H8559"\w* \w to|strong="H1961"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w of|strong="H1366"\w* Meribath \w Kadesh|strong="H6946"\w*, \w to|strong="H1961"\w* \w the|strong="H5921"\w* \w brook|strong="H5158"\w*, \w to|strong="H1961"\w* \w the|strong="H5921"\w* \w great|strong="H1419"\w* \w sea|strong="H3220"\w*. +\p +\v 29 “\w This|strong="H2063"\w* \w is|strong="H3478"\w* \w the|strong="H5002"\w* \w land|strong="H5159"\w* \w which|strong="H3478"\w* \w you|strong="H5159"\w* \w shall|strong="H3478"\w* \w divide|strong="H5307"\w* \w by|strong="H3478"\w* \w lot|strong="H5307"\w* \w to|strong="H3478"\w* \w the|strong="H5002"\w* \w tribes|strong="H7626"\w* \w of|strong="H7626"\w* \w Israel|strong="H3478"\w* \w for|strong="H3478"\w* \w inheritance|strong="H5159"\w*, \w and|strong="H3478"\w* \w these|strong="H2063"\w* \w are|strong="H3478"\w* \w their|strong="H5307"\w* several \w portions|strong="H4256"\w*, \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 30 “These \w are|strong="H5892"\w* \w the|strong="H5892"\w* \w exits|strong="H8444"\w* \w of|strong="H5892"\w* \w the|strong="H5892"\w* \w city|strong="H5892"\w*: \w On|strong="H5892"\w* \w the|strong="H5892"\w* \w north|strong="H6828"\w* \w side|strong="H6285"\w* four thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* reeds \w by|strong="H5892"\w* \w measure|strong="H4060"\w*; +\v 31 \w and|strong="H3063"\w* \w the|strong="H5921"\w* \w gates|strong="H8179"\w* \w of|strong="H7626"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w* \w shall|strong="H3478"\w* \w be|strong="H8034"\w* \w named|strong="H8034"\w* \w after|strong="H5921"\w* \w the|strong="H5921"\w* \w tribes|strong="H7626"\w* \w of|strong="H7626"\w* \w Israel|strong="H3478"\w*, \w three|strong="H7969"\w* \w gates|strong="H8179"\w* \w northward|strong="H6828"\w*: \w the|strong="H5921"\w* \w gate|strong="H8179"\w* \w of|strong="H7626"\w* \w Reuben|strong="H7205"\w*, \w one|strong="H5892"\w*; \w the|strong="H5921"\w* \w gate|strong="H8179"\w* \w of|strong="H7626"\w* \w Judah|strong="H3063"\w*, \w one|strong="H5892"\w*; \w the|strong="H5921"\w* \w gate|strong="H8179"\w* \w of|strong="H7626"\w* \w Levi|strong="H3878"\w*, \w one|strong="H5892"\w*. +\p +\v 32 “\w At|strong="H1144"\w* \w the|strong="H8179"\w* \w east|strong="H6921"\w* \w side|strong="H6285"\w* \w four|strong="H7969"\w* thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* reeds, \w and|strong="H3967"\w* \w three|strong="H7969"\w* \w gates|strong="H8179"\w*: even \w the|strong="H8179"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* \w Joseph|strong="H3130"\w*, \w one|strong="H3967"\w*; \w the|strong="H8179"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* \w Benjamin|strong="H1144"\w*, \w one|strong="H3967"\w*; \w the|strong="H8179"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* \w Dan|strong="H1835"\w*, \w one|strong="H3967"\w*. +\p +\v 33 “\w At|strong="H7969"\w* \w the|strong="H8179"\w* \w south|strong="H5045"\w* \w side|strong="H6285"\w* \w four|strong="H7969"\w* thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* reeds \w by|strong="H8179"\w* \w measure|strong="H4060"\w*, \w and|strong="H3967"\w* \w three|strong="H7969"\w* \w gates|strong="H8179"\w*: \w the|strong="H8179"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* \w Simeon|strong="H8095"\w*, \w one|strong="H3967"\w*; \w the|strong="H8179"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* \w Issachar|strong="H3485"\w*, \w one|strong="H3967"\w*; \w the|strong="H8179"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* \w Zebulun|strong="H2074"\w*, \w one|strong="H3967"\w*. +\p +\v 34 “\w At|strong="H3220"\w* \w the|strong="H8179"\w* \w west|strong="H3220"\w* \w side|strong="H6285"\w* \w four|strong="H7969"\w* thousand \w five|strong="H2568"\w* \w hundred|strong="H3967"\w* reeds, \w with|strong="H3220"\w* their \w three|strong="H7969"\w* \w gates|strong="H8179"\w*: \w the|strong="H8179"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* \w Gad|strong="H1410"\w*, \w one|strong="H3967"\w*; \w the|strong="H8179"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* Asher, \w one|strong="H3967"\w*; \w the|strong="H8179"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* \w Naphtali|strong="H5321"\w*, \w one|strong="H3967"\w*. +\p +\v 35 “\w It|strong="H5439"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w eighteen|strong="H8083"\w* thousand reeds \w in|strong="H3068"\w* circumference; \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w city|strong="H5892"\w* \w from|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w*, ‘\w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w there|strong="H8033"\w*.’ \ No newline at end of file diff --git a/bibles/eng-web_usfm/28-DANeng-web.usfm b/bibles/eng-web_usfm/28-DANeng-web.usfm new file mode 100644 index 0000000..9c61aee --- /dev/null +++ b/bibles/eng-web_usfm/28-DANeng-web.usfm @@ -0,0 +1,583 @@ +\id DAN 27-DAN-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Daniel +\toc1 The Book of Daniel +\toc2 Daniel +\toc3 Dan +\mt2 The Book of +\mt1 Daniel +\c 1 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H5921"\w* \w third|strong="H7969"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w reign|strong="H4438"\w* \w of|strong="H4428"\w* \w Jehoiakim|strong="H3079"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w Nebuchadnezzar|strong="H5019"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Babylon \w came|strong="H3063"\w* \w to|strong="H5921"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H3063"\w* \w besieged|strong="H6696"\w* \w it|strong="H5921"\w*. +\v 2 \w The|strong="H5414"\w* Lord\f + \fr 1:2 \ft The word translated “Lord” is “Adonai.”\f* \w gave|strong="H5414"\w* \w Jehoiakim|strong="H3079"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w* \w into|strong="H3027"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w*, \w with|strong="H1004"\w* \w some|strong="H3027"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w vessels|strong="H3627"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w God|strong="H5414"\w*;\f + \fr 1:2 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w and|strong="H3063"\w* \w he|strong="H1004"\w* carried \w them|strong="H5414"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* land \w of|strong="H4428"\w* \w Shinar|strong="H8152"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w his|strong="H5414"\w* \w god|strong="H5414"\w*. \w He|strong="H1004"\w* \w brought|strong="H5414"\w* \w the|strong="H5414"\w* \w vessels|strong="H3627"\w* \w into|strong="H3027"\w* \w the|strong="H5414"\w* treasure \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w his|strong="H5414"\w* \w god|strong="H5414"\w*. +\p +\v 3 \w The|strong="H4480"\w* \w king|strong="H4428"\w* spoke \w to|strong="H3478"\w* Ashpenaz, \w the|strong="H4480"\w* \w master|strong="H7227"\w* \w of|strong="H1121"\w* \w his|strong="H3478"\w* \w eunuchs|strong="H5631"\w*, \w that|strong="H3478"\w* \w he|strong="H4480"\w* \w should|strong="H3478"\w* bring \w in|strong="H3478"\w* \w some|strong="H4480"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, even \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w royal|strong="H4428"\w* \w offspring|strong="H2233"\w*\f + \fr 1:3 \ft or, seed\f* \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H4480"\w* \w nobles|strong="H6579"\w*: +\v 4 \w youths|strong="H3206"\w* \w in|strong="H4428"\w* whom \w was|strong="H4428"\w* \w no|strong="H3605"\w* \w defect|strong="H3971"\w*, \w but|strong="H3605"\w* well-favored, \w skillful|strong="H3045"\w* \w in|strong="H4428"\w* \w all|strong="H3605"\w* \w wisdom|strong="H2451"\w*, \w endowed|strong="H3045"\w* \w with|strong="H3045"\w* \w knowledge|strong="H1847"\w*, \w understanding|strong="H7919"\w* \w science|strong="H4093"\w*, \w and|strong="H4428"\w* \w who|strong="H3605"\w* \w had|strong="H4428"\w* \w the|strong="H3605"\w* \w ability|strong="H3581"\w* \w to|strong="H4428"\w* \w stand|strong="H5975"\w* \w in|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w palace|strong="H1964"\w*; \w and|strong="H4428"\w* \w that|strong="H3045"\w* \w he|strong="H3605"\w* \w should|strong="H4428"\w* \w teach|strong="H3925"\w* \w them|strong="H5975"\w* \w the|strong="H3605"\w* \w learning|strong="H5612"\w* \w and|strong="H4428"\w* \w the|strong="H3605"\w* \w language|strong="H3956"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w Chaldeans|strong="H3778"\w*. +\v 5 \w The|strong="H6440"\w* \w king|strong="H4428"\w* \w appointed|strong="H5975"\w* \w for|strong="H6440"\w* \w them|strong="H6440"\w* \w a|strong="H3068"\w* \w daily|strong="H3117"\w* \w portion|strong="H1697"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w delicacies|strong="H6598"\w* \w and|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w wine|strong="H3196"\w* \w which|strong="H1697"\w* \w he|strong="H3117"\w* \w drank|strong="H4960"\w*, \w and|strong="H4428"\w* \w that|strong="H3117"\w* \w they|strong="H3117"\w* \w should|strong="H8141"\w* \w be|strong="H1697"\w* \w nourished|strong="H1431"\w* \w three|strong="H7969"\w* \w years|strong="H8141"\w*, \w that|strong="H3117"\w* \w at|strong="H3117"\w* \w its|strong="H5975"\w* \w end|strong="H7117"\w* \w they|strong="H3117"\w* \w should|strong="H8141"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*. +\p +\v 6 \w Now|strong="H1961"\w* among these \w of|strong="H1121"\w* \w the|strong="H1961"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w were|strong="H1961"\w* \w Daniel|strong="H1840"\w*, \w Hananiah|strong="H2608"\w*, \w Mishael|strong="H4332"\w*, \w and|strong="H1121"\w* \w Azariah|strong="H5838"\w*. +\v 7 \w The|strong="H7760"\w* \w prince|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H7760"\w* \w eunuchs|strong="H5631"\w* \w gave|strong="H7760"\w* \w names|strong="H8034"\w* \w to|strong="H8034"\w* \w them|strong="H1992"\w*: \w to|strong="H8034"\w* \w Daniel|strong="H1840"\w* \w he|strong="H7760"\w* \w gave|strong="H7760"\w* \w the|strong="H7760"\w* \w name|strong="H8034"\w* \w Belteshazzar|strong="H1095"\w*; \w to|strong="H8034"\w* \w Hananiah|strong="H2608"\w*, \w Shadrach|strong="H7714"\w*; \w to|strong="H8034"\w* \w Mishael|strong="H4332"\w*, \w Meshach|strong="H4335"\w*; \w and|strong="H8269"\w* \w to|strong="H8034"\w* \w Azariah|strong="H5838"\w*, Abednego. +\p +\v 8 \w But|strong="H3808"\w* \w Daniel|strong="H1840"\w* \w purposed|strong="H7760"\w* \w in|strong="H5921"\w* \w his|strong="H7760"\w* \w heart|strong="H3820"\w* \w that|strong="H4428"\w* \w he|strong="H3808"\w* \w would|strong="H4428"\w* \w not|strong="H3808"\w* \w defile|strong="H1351"\w* \w himself|strong="H3820"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w delicacies|strong="H6598"\w*, \w nor|strong="H3808"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w wine|strong="H3196"\w* \w which|strong="H8269"\w* \w he|strong="H3808"\w* \w drank|strong="H4960"\w*. \w Therefore|strong="H5921"\w* \w he|strong="H3808"\w* \w requested|strong="H1245"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w prince|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w eunuchs|strong="H5631"\w* \w that|strong="H4428"\w* \w he|strong="H3808"\w* might \w not|strong="H3808"\w* \w defile|strong="H1351"\w* \w himself|strong="H3820"\w*. +\v 9 \w Now|strong="H5414"\w* \w God|strong="H5414"\w* \w made|strong="H5414"\w* \w Daniel|strong="H1840"\w* \w find|strong="H5414"\w* \w kindness|strong="H2617"\w* \w and|strong="H6440"\w* \w compassion|strong="H7356"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w sight|strong="H6440"\w* \w of|strong="H8269"\w* \w the|strong="H6440"\w* \w prince|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H6440"\w* \w eunuchs|strong="H5631"\w*. +\v 10 \w The|strong="H6440"\w* \w prince|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w eunuchs|strong="H5631"\w* said \w to|strong="H6440"\w* \w Daniel|strong="H1840"\w*, “\w I|strong="H7200"\w* \w fear|strong="H3373"\w* \w my|strong="H7200"\w* lord \w the|strong="H6440"\w* \w king|strong="H4428"\w*, \w who|strong="H4428"\w* \w has|strong="H4428"\w* \w appointed|strong="H4487"\w* \w your|strong="H6440"\w* \w food|strong="H3978"\w* \w and|strong="H4428"\w* \w your|strong="H6440"\w* \w drink|strong="H4960"\w*. \w For|strong="H6440"\w* \w why|strong="H4100"\w* \w should|strong="H4100"\w* \w he|strong="H4480"\w* \w see|strong="H7200"\w* \w your|strong="H6440"\w* \w faces|strong="H6440"\w* \w worse|strong="H6440"\w* \w looking|strong="H7200"\w* \w than|strong="H4480"\w* \w the|strong="H6440"\w* \w youths|strong="H3206"\w* \w who|strong="H4428"\w* \w are|strong="H4100"\w* \w of|strong="H4428"\w* \w your|strong="H6440"\w* \w own|strong="H6440"\w* \w age|strong="H1524"\w*? \w Then|strong="H4428"\w* \w you|strong="H6440"\w* \w would|strong="H4100"\w* \w endanger|strong="H2325"\w* \w my|strong="H7200"\w* \w head|strong="H7218"\w* \w with|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*.” +\p +\v 11 Then \w Daniel|strong="H1840"\w* said \w to|strong="H5921"\w* \w the|strong="H5921"\w* steward whom \w the|strong="H5921"\w* \w prince|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H5921"\w* \w eunuchs|strong="H5631"\w* \w had|strong="H8269"\w* \w appointed|strong="H4487"\w* \w over|strong="H5921"\w* \w Daniel|strong="H1840"\w*, \w Hananiah|strong="H2608"\w*, \w Mishael|strong="H4332"\w*, \w and|strong="H8269"\w* \w Azariah|strong="H5838"\w*: +\v 12 “\w Test|strong="H5254"\w* \w your|strong="H5414"\w* \w servants|strong="H5650"\w*, \w I|strong="H3117"\w* \w beg|strong="H4994"\w* \w you|strong="H5414"\w*, \w ten|strong="H6235"\w* \w days|strong="H3117"\w*; \w and|strong="H3117"\w* \w let|strong="H4994"\w* \w them|strong="H5414"\w* \w give|strong="H5414"\w* \w us|strong="H5414"\w* \w vegetables|strong="H2235"\w* \w to|strong="H5414"\w* eat \w and|strong="H3117"\w* \w water|strong="H4325"\w* \w to|strong="H5414"\w* \w drink|strong="H8354"\w*. +\v 13 \w Then|strong="H6213"\w* let \w our|strong="H7200"\w* \w faces|strong="H6440"\w* \w be|strong="H4428"\w* \w examined|strong="H7200"\w* \w before|strong="H6440"\w* \w you|strong="H6440"\w*, \w and|strong="H4428"\w* \w the|strong="H6440"\w* \w face|strong="H6440"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w youths|strong="H3206"\w* \w who|strong="H5650"\w* eat \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*’s \w delicacies|strong="H6598"\w*; \w and|strong="H4428"\w* \w as|strong="H6213"\w* \w you|strong="H6440"\w* \w see|strong="H7200"\w*, \w deal|strong="H6213"\w* \w with|strong="H5973"\w* \w your|strong="H6440"\w* \w servants|strong="H5650"\w*.” +\v 14 \w So|strong="H2088"\w* \w he|strong="H3117"\w* \w listened|strong="H8085"\w* \w to|strong="H3117"\w* \w them|strong="H8085"\w* \w in|strong="H8085"\w* \w this|strong="H2088"\w* \w matter|strong="H1697"\w*, \w and|strong="H3117"\w* \w tested|strong="H5254"\w* \w them|strong="H8085"\w* \w for|strong="H3117"\w* \w ten|strong="H6235"\w* \w days|strong="H3117"\w*. +\p +\v 15 \w At|strong="H3117"\w* \w the|strong="H3605"\w* \w end|strong="H7117"\w* \w of|strong="H4428"\w* \w ten|strong="H6235"\w* \w days|strong="H3117"\w*, \w their|strong="H3605"\w* faces \w appeared|strong="H7200"\w* \w fairer|strong="H2896"\w* \w and|strong="H4428"\w* \w they|strong="H3117"\w* \w were|strong="H3117"\w* \w fatter|strong="H1277"\w* \w in|strong="H4428"\w* \w flesh|strong="H1320"\w* \w than|strong="H4480"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w youths|strong="H3206"\w* \w who|strong="H3605"\w* ate \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w delicacies|strong="H6598"\w*. +\v 16 \w So|strong="H1961"\w* \w the|strong="H5414"\w* steward \w took|strong="H5375"\w* \w away|strong="H5375"\w* \w their|strong="H5375"\w* \w delicacies|strong="H6598"\w* \w and|strong="H3196"\w* \w the|strong="H5414"\w* \w wine|strong="H3196"\w* \w that|strong="H5414"\w* \w they|strong="H5375"\w* \w were|strong="H1961"\w* \w given|strong="H5414"\w* \w to|strong="H1961"\w* \w drink|strong="H4960"\w*, \w and|strong="H3196"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w vegetables|strong="H2235"\w*. +\p +\v 17 \w Now|strong="H5414"\w* \w as|strong="H5414"\w* \w for|strong="H3605"\w* \w these|strong="H3605"\w* four \w youths|strong="H3206"\w*, \w God|strong="H5414"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w knowledge|strong="H4093"\w* \w and|strong="H2451"\w* \w skill|strong="H2451"\w* \w in|strong="H5414"\w* \w all|strong="H3605"\w* \w learning|strong="H5612"\w* \w and|strong="H2451"\w* \w wisdom|strong="H2451"\w*; \w and|strong="H2451"\w* \w Daniel|strong="H1840"\w* \w had|strong="H5414"\w* \w understanding|strong="H7919"\w* \w in|strong="H5414"\w* \w all|strong="H3605"\w* \w visions|strong="H2377"\w* \w and|strong="H2451"\w* \w dreams|strong="H2472"\w*. +\p +\v 18 \w At|strong="H3117"\w* \w the|strong="H6440"\w* \w end|strong="H7117"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w days|strong="H3117"\w* \w which|strong="H8269"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w had|strong="H4428"\w* \w appointed|strong="H7117"\w* \w for|strong="H6440"\w* bringing \w them|strong="H6440"\w* \w in|strong="H4428"\w*, \w the|strong="H6440"\w* \w prince|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H6440"\w* \w eunuchs|strong="H5631"\w* \w brought|strong="H4428"\w* \w them|strong="H6440"\w* \w in|strong="H4428"\w* \w before|strong="H6440"\w* \w Nebuchadnezzar|strong="H5019"\w*. +\v 19 \w The|strong="H3605"\w* \w king|strong="H4428"\w* \w talked|strong="H1696"\w* \w with|strong="H1696"\w* \w them|strong="H6440"\w*; \w and|strong="H4428"\w* \w among|strong="H4672"\w* \w them|strong="H6440"\w* \w all|strong="H3605"\w* \w was|strong="H4428"\w* \w found|strong="H4672"\w* \w no|strong="H3808"\w* \w one|strong="H3605"\w* \w like|strong="H3808"\w* \w Daniel|strong="H1840"\w*, \w Hananiah|strong="H2608"\w*, \w Mishael|strong="H4332"\w*, \w and|strong="H4428"\w* \w Azariah|strong="H5838"\w*. Therefore \w they|strong="H3808"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*. +\v 20 \w In|strong="H5921"\w* \w every|strong="H3605"\w* \w matter|strong="H1697"\w* \w of|strong="H4428"\w* \w wisdom|strong="H2451"\w* \w and|strong="H4428"\w* understanding \w concerning|strong="H5921"\w* \w which|strong="H1992"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w* \w inquired|strong="H1245"\w* \w of|strong="H4428"\w* \w them|strong="H1992"\w*, \w he|strong="H3605"\w* \w found|strong="H4672"\w* \w them|strong="H1992"\w* \w ten|strong="H6235"\w* \w times|strong="H3027"\w* \w better|strong="H3027"\w* \w than|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w magicians|strong="H2748"\w* \w and|strong="H4428"\w* enchanters \w who|strong="H3605"\w* \w were|strong="H1992"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w realm|strong="H4438"\w*. +\p +\v 21 \w Daniel|strong="H1840"\w* \w continued|strong="H1961"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* first \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* \w Cyrus|strong="H3566"\w*. +\c 2 +\p +\v 1 \w In|strong="H5921"\w* \w the|strong="H5921"\w* \w second|strong="H8147"\w* \w year|strong="H8141"\w* \w of|strong="H8141"\w* \w the|strong="H5921"\w* \w reign|strong="H4438"\w* \w of|strong="H8141"\w* \w Nebuchadnezzar|strong="H5019"\w*, \w Nebuchadnezzar|strong="H5019"\w* \w dreamed|strong="H2492"\w* \w dreams|strong="H2472"\w*; \w and|strong="H8141"\w* \w his|strong="H5921"\w* \w spirit|strong="H7307"\w* \w was|strong="H1961"\w* \w troubled|strong="H6470"\w*, \w and|strong="H8141"\w* \w his|strong="H5921"\w* \w sleep|strong="H8142"\w* \w went|strong="H8147"\w* \w from|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 2 \w Then|strong="H5975"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* commanded \w that|strong="H4428"\w* \w the|strong="H6440"\w* \w magicians|strong="H2748"\w*, \w the|strong="H6440"\w* enchanters, \w the|strong="H6440"\w* \w sorcerers|strong="H3784"\w*, \w and|strong="H4428"\w* \w the|strong="H6440"\w* \w Chaldeans|strong="H3778"\w* \w be|strong="H4428"\w* \w called|strong="H7121"\w* \w to|strong="H6440"\w* \w tell|strong="H5046"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w his|strong="H7121"\w* \w dreams|strong="H2472"\w*. \w So|strong="H7121"\w* \w they|strong="H6440"\w* \w came|strong="H4428"\w* \w in|strong="H4428"\w* \w and|strong="H4428"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w*. +\v 3 \w The|strong="H3045"\w* \w king|strong="H4428"\w* said \w to|strong="H4428"\w* \w them|strong="H1992"\w*, “\w I|strong="H3045"\w* \w have|strong="H3045"\w* \w dreamed|strong="H2492"\w* \w a|strong="H3068"\w* \w dream|strong="H2472"\w*, \w and|strong="H4428"\w* \w my|strong="H3045"\w* \w spirit|strong="H7307"\w* \w is|strong="H4428"\w* \w troubled|strong="H6470"\w* \w to|strong="H4428"\w* \w know|strong="H3045"\w* \w the|strong="H3045"\w* \w dream|strong="H2472"\w*.” +\p +\v 4 \w Then|strong="H1696"\w* \w the|strong="H1696"\w* \w Chaldeans|strong="H3778"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H1696"\w* \w king|strong="H4428"\w* \w in|strong="H4428"\w* \w the|strong="H1696"\w* Syrian language, “\w O|strong="H3068"\w* \w king|strong="H4428"\w*, \w live|strong="H2418"\w* \w forever|strong="H5957"\w*! \w Tell|strong="H1696"\w* \w your|strong="H4428"\w* \w servants|strong="H5649"\w* \w the|strong="H1696"\w* \w dream|strong="H2493"\w*, \w and|strong="H4428"\w* \w we|strong="H3068"\w* \w will|strong="H4428"\w* show \w the|strong="H1696"\w* \w interpretation|strong="H6591"\w*.” +\p +\v 5 \w The|strong="H4481"\w* \w king|strong="H4430"\w* \w answered|strong="H6032"\w* \w the|strong="H4481"\w* \w Chaldeans|strong="H3779"\w*, “\w The|strong="H4481"\w* \w thing|strong="H4406"\w* \w has|strong="H4430"\w* gone \w from|strong="H4481"\w* \w me|strong="H4481"\w*. \w If|strong="H2006"\w* \w you|strong="H4481"\w* don’t \w make|strong="H3046"\w* \w known|strong="H3046"\w* \w to|strong="H3046"\w* \w me|strong="H4481"\w* \w the|strong="H4481"\w* \w dream|strong="H2493"\w* \w and|strong="H6032"\w* \w its|strong="H6591"\w* \w interpretation|strong="H6591"\w*, \w you|strong="H4481"\w* \w will|strong="H4430"\w* \w be|strong="H3809"\w* \w cut|strong="H5648"\w* \w in|strong="H5648"\w* \w pieces|strong="H1917"\w*, \w and|strong="H6032"\w* your \w houses|strong="H1005"\w* \w will|strong="H4430"\w* \w be|strong="H3809"\w* \w made|strong="H5648"\w* \w a|strong="H3068"\w* \w dunghill|strong="H5122"\w*. +\v 6 \w But|strong="H4481"\w* \w if|strong="H2006"\w* \w you|strong="H4481"\w* show \w the|strong="H4481"\w* \w dream|strong="H2493"\w* \w and|strong="H3367"\w* \w its|strong="H6591"\w* \w interpretation|strong="H6591"\w*, \w you|strong="H4481"\w* will \w receive|strong="H6902"\w* \w from|strong="H4481"\w* \w me|strong="H6925"\w* \w gifts|strong="H4978"\w*, \w rewards|strong="H5023"\w*, \w and|strong="H3367"\w* \w great|strong="H7690"\w* \w honor|strong="H3367"\w*. \w Therefore|strong="H4481"\w* show \w me|strong="H6925"\w* \w the|strong="H4481"\w* \w dream|strong="H2493"\w* \w and|strong="H3367"\w* \w its|strong="H6591"\w* \w interpretation|strong="H6591"\w*.” +\p +\v 7 They \w answered|strong="H6032"\w* \w the|strong="H2324"\w* \w second|strong="H8579"\w* \w time|strong="H8579"\w* \w and|strong="H6032"\w* \w said|strong="H6032"\w*, “Let \w the|strong="H2324"\w* \w king|strong="H4430"\w* tell his \w servants|strong="H5649"\w* \w the|strong="H2324"\w* \w dream|strong="H2493"\w*, \w and|strong="H6032"\w* \w we|strong="H3068"\w* \w will|strong="H4430"\w* show \w the|strong="H2324"\w* \w interpretation|strong="H6591"\w*.” +\p +\v 8 \w The|strong="H3606"\w* \w king|strong="H4430"\w* \w answered|strong="H6032"\w*, “\w I|strong="H4481"\w* \w know|strong="H3046"\w* \w of|strong="H4481"\w* \w a|strong="H3068"\w* \w certainty|strong="H3330"\w* \w that|strong="H1768"\w* \w you|strong="H1768"\w* \w are|strong="H1768"\w* trying \w to|strong="H3046"\w* \w gain|strong="H2084"\w* \w time|strong="H5732"\w*, \w because|strong="H6903"\w* \w you|strong="H1768"\w* \w see|strong="H2370"\w* \w the|strong="H3606"\w* \w thing|strong="H4406"\w* \w has|strong="H1768"\w* gone \w from|strong="H4481"\w* \w me|strong="H4481"\w*. +\v 9 \w But|strong="H1768"\w* \w if|strong="H2006"\w* \w you|strong="H1768"\w* don’t \w make|strong="H3046"\w* \w known|strong="H3046"\w* \w to|strong="H6925"\w* \w me|strong="H6925"\w* \w the|strong="H6925"\w* \w dream|strong="H2493"\w*, \w there|strong="H1768"\w* \w is|strong="H1768"\w* \w but|strong="H1768"\w* \w one|strong="H2298"\w* \w law|strong="H1882"\w* \w for|strong="H5705"\w* \w you|strong="H1768"\w*; \w for|strong="H5705"\w* \w you|strong="H1768"\w* \w have|strong="H1768"\w* \w prepared|strong="H2164"\w* \w lying|strong="H3538"\w* \w and|strong="H2493"\w* \w corrupt|strong="H7844"\w* \w words|strong="H4406"\w* \w to|strong="H6925"\w* speak \w before|strong="H6925"\w* \w me|strong="H6925"\w*, \w until|strong="H5705"\w* \w the|strong="H6925"\w* \w situation|strong="H5732"\w* \w changes|strong="H8133"\w*. Therefore tell \w me|strong="H6925"\w* \w the|strong="H6925"\w* \w dream|strong="H2493"\w*, \w and|strong="H2493"\w* \w I|strong="H1768"\w* \w will|strong="H1768"\w* \w know|strong="H3046"\w* \w that|strong="H1768"\w* \w you|strong="H1768"\w* \w can|strong="H1768"\w* show \w me|strong="H6925"\w* \w its|strong="H6591"\w* \w interpretation|strong="H6591"\w*.” +\p +\v 10 \w The|strong="H3606"\w* \w Chaldeans|strong="H3779"\w* \w answered|strong="H6032"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w* \w and|strong="H6032"\w* \w said|strong="H6032"\w*, “\w There|strong="H6903"\w* \w is|strong="H1768"\w* \w not|strong="H3809"\w* \w a|strong="H3068"\w* man \w on|strong="H5922"\w* \w the|strong="H3606"\w* \w earth|strong="H3007"\w* \w who|strong="H1768"\w* \w can|strong="H3202"\w* show \w the|strong="H3606"\w* \w king|strong="H4430"\w*’s \w matter|strong="H4406"\w*, \w because|strong="H6903"\w* \w no|strong="H3809"\w* \w king|strong="H4430"\w*, \w lord|strong="H7229"\w*, \w or|strong="H3809"\w* \w ruler|strong="H7990"\w* \w has|strong="H1768"\w* \w asked|strong="H7593"\w* \w such|strong="H1836"\w* \w a|strong="H3068"\w* \w thing|strong="H4406"\w* \w of|strong="H4430"\w* \w any|strong="H3606"\w* \w magician|strong="H2749"\w*, enchanter, \w or|strong="H3809"\w* \w Chaldean|strong="H3779"\w*. +\v 11 \w It|strong="H1321"\w* \w is|strong="H1768"\w* \w a|strong="H3068"\w* \w rare|strong="H3358"\w* \w thing|strong="H4406"\w* \w that|strong="H1768"\w* \w the|strong="H6925"\w* \w king|strong="H4430"\w* requires, \w and|strong="H4430"\w* \w there|strong="H1768"\w* \w is|strong="H1768"\w* \w no|strong="H3809"\w* \w other|strong="H3861"\w* \w who|strong="H1768"\w* \w can|strong="H1768"\w* show \w it|strong="H1321"\w* \w before|strong="H6925"\w* \w the|strong="H6925"\w* \w king|strong="H4430"\w* \w except|strong="H3861"\w* \w the|strong="H6925"\w* gods, \w whose|strong="H1768"\w* \w dwelling|strong="H4070"\w* \w is|strong="H1768"\w* \w not|strong="H3809"\w* \w with|strong="H5974"\w* \w flesh|strong="H1321"\w*.” +\p +\v 12 \w Because|strong="H6903"\w* \w of|strong="H4430"\w* \w this|strong="H1836"\w*, \w the|strong="H3606"\w* \w king|strong="H4430"\w* \w was|strong="H4430"\w* \w angry|strong="H1149"\w* \w and|strong="H4430"\w* \w very|strong="H7690"\w* \w furious|strong="H7108"\w*, \w and|strong="H4430"\w* commanded \w that|strong="H3606"\w* \w all|strong="H3606"\w* \w the|strong="H3606"\w* \w wise|strong="H2445"\w* \w men|strong="H2445"\w* \w of|strong="H4430"\w* Babylon be destroyed. +\v 13 So \w the|strong="H6992"\w* \w decree|strong="H1882"\w* \w went|strong="H1841"\w* \w out|strong="H5312"\w*, \w and|strong="H1156"\w* \w the|strong="H6992"\w* \w wise|strong="H2445"\w* \w men|strong="H2445"\w* were \w to|strong="H1156"\w* \w be|strong="H1841"\w* \w slain|strong="H6992"\w*. They \w sought|strong="H1156"\w* \w Daniel|strong="H1841"\w* \w and|strong="H1156"\w* \w his|strong="H1156"\w* \w companions|strong="H2269"\w* \w to|strong="H1156"\w* \w be|strong="H1841"\w* \w slain|strong="H6992"\w*. +\p +\v 14 \w Then|strong="H1768"\w* \w Daniel|strong="H1841"\w* \w returned|strong="H8421"\w* \w answer|strong="H8421"\w* \w with|strong="H8421"\w* \w counsel|strong="H2942"\w* \w and|strong="H4430"\w* prudence \w to|strong="H2942"\w* Arioch \w the|strong="H1768"\w* \w captain|strong="H7229"\w* \w of|strong="H4430"\w* \w the|strong="H1768"\w* \w king|strong="H4430"\w*’s \w guard|strong="H2877"\w*, \w who|strong="H1768"\w* \w had|strong="H4430"\w* \w gone|strong="H5312"\w* \w out|strong="H5312"\w* \w to|strong="H2942"\w* \w kill|strong="H6992"\w* \w the|strong="H1768"\w* \w wise|strong="H2445"\w* \w men|strong="H2445"\w* \w of|strong="H4430"\w* Babylon. +\v 15 \w He|strong="H1768"\w* \w answered|strong="H6032"\w* Arioch \w the|strong="H5922"\w* \w king|strong="H4430"\w*’s \w captain|strong="H7990"\w*, “\w Why|strong="H4101"\w* \w is|strong="H1768"\w* \w the|strong="H5922"\w* \w decree|strong="H1882"\w* \w so|strong="H1768"\w* \w urgent|strong="H2685"\w* \w from|strong="H4481"\w* \w the|strong="H5922"\w* \w king|strong="H4430"\w*?” \w Then|strong="H1768"\w* Arioch \w made|strong="H3046"\w* \w the|strong="H5922"\w* \w thing|strong="H4406"\w* \w known|strong="H3046"\w* \w to|strong="H5922"\w* \w Daniel|strong="H1841"\w*. +\v 16 \w Daniel|strong="H1841"\w* \w went|strong="H5954"\w* \w in|strong="H5954"\w*, \w and|strong="H4430"\w* \w desired|strong="H1156"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w king|strong="H4430"\w* \w that|strong="H1768"\w* \w he|strong="H1768"\w* would appoint \w him|strong="H4481"\w* \w a|strong="H3068"\w* \w time|strong="H2166"\w*, \w and|strong="H4430"\w* \w he|strong="H1768"\w* would show \w the|strong="H4481"\w* \w king|strong="H4430"\w* \w the|strong="H4481"\w* \w interpretation|strong="H6591"\w*. +\p +\v 17 Then \w Daniel|strong="H1841"\w* \w went|strong="H1841"\w* \w to|strong="H3046"\w* \w his|strong="H3046"\w* \w house|strong="H1005"\w* \w and|strong="H1005"\w* \w made|strong="H3046"\w* \w the|strong="H3046"\w* \w thing|strong="H4406"\w* \w known|strong="H3046"\w* \w to|strong="H3046"\w* \w Hananiah|strong="H2608"\w*, \w Mishael|strong="H4333"\w*, \w and|strong="H1005"\w* \w Azariah|strong="H5839"\w*, \w his|strong="H3046"\w* \w companions|strong="H2269"\w*: +\v 18 \w that|strong="H1768"\w* \w they|strong="H1768"\w* would \w desire|strong="H1156"\w* \w mercies|strong="H7359"\w* \w of|strong="H4481"\w* \w the|strong="H5922"\w* God \w of|strong="H4481"\w* \w heaven|strong="H8065"\w* \w concerning|strong="H5922"\w* \w this|strong="H1836"\w* \w secret|strong="H7328"\w*, \w that|strong="H1768"\w* \w Daniel|strong="H1841"\w* \w and|strong="H8065"\w* \w his|strong="H5922"\w* \w companions|strong="H2269"\w* would \w not|strong="H3809"\w* perish \w with|strong="H5974"\w* \w the|strong="H5922"\w* \w rest|strong="H7606"\w* \w of|strong="H4481"\w* \w the|strong="H5922"\w* \w wise|strong="H2445"\w* \w men|strong="H2445"\w* \w of|strong="H4481"\w* Babylon. +\v 19 \w Then|strong="H1768"\w* \w the|strong="H1768"\w* \w secret|strong="H7328"\w* \w was|strong="H1841"\w* \w revealed|strong="H1541"\w* \w to|strong="H1541"\w* \w Daniel|strong="H1841"\w* \w in|strong="H1768"\w* \w a|strong="H3068"\w* \w vision|strong="H2376"\w* \w of|strong="H1768"\w* \w the|strong="H1768"\w* \w night|strong="H3916"\w*. \w Then|strong="H1768"\w* \w Daniel|strong="H1841"\w* \w blessed|strong="H1289"\w* \w the|strong="H1768"\w* God \w of|strong="H1768"\w* \w heaven|strong="H8065"\w*. +\v 20 \w Daniel|strong="H1841"\w* \w answered|strong="H6032"\w*, +\q1 “\w Blessed|strong="H1289"\w* \w be|strong="H1934"\w* \w the|strong="H4481"\w* \w name|strong="H8036"\w* \w of|strong="H4481"\w* God \w forever|strong="H5957"\w* \w and|strong="H6032"\w* \w ever|strong="H5957"\w*; +\q2 \w for|strong="H5705"\w* \w wisdom|strong="H2452"\w* \w and|strong="H6032"\w* \w might|strong="H1370"\w* \w are|strong="H1768"\w* \w his|strong="H4481"\w*. +\q1 +\v 21 \w He|strong="H1932"\w* \w changes|strong="H8133"\w* \w the|strong="H3046"\w* \w times|strong="H5732"\w* \w and|strong="H4430"\w* \w the|strong="H3046"\w* \w seasons|strong="H2166"\w*. +\q2 \w He|strong="H1932"\w* \w removes|strong="H5709"\w* \w kings|strong="H4430"\w* \w and|strong="H4430"\w* \w sets|strong="H6966"\w* \w up|strong="H6966"\w* \w kings|strong="H4430"\w*. +\q1 \w He|strong="H1932"\w* \w gives|strong="H3052"\w* \w wisdom|strong="H2452"\w* \w to|strong="H3046"\w* \w the|strong="H3046"\w* \w wise|strong="H2445"\w*, +\q2 \w and|strong="H4430"\w* \w knowledge|strong="H4486"\w* \w to|strong="H3046"\w* those who \w have|strong="H4430"\w* \w understanding|strong="H4486"\w*. +\q1 +\v 22 \w He|strong="H1932"\w* \w reveals|strong="H1541"\w* \w the|strong="H3046"\w* \w deep|strong="H5994"\w* \w and|strong="H5094"\w* secret \w things|strong="H5642"\w*. +\q2 \w He|strong="H1932"\w* \w knows|strong="H3046"\w* \w what|strong="H4101"\w* \w is|strong="H1932"\w* in \w the|strong="H3046"\w* \w darkness|strong="H2816"\w*, +\q2 \w and|strong="H5094"\w* \w the|strong="H3046"\w* \w light|strong="H5094"\w* \w dwells|strong="H8271"\w* \w with|strong="H5974"\w* \w him|strong="H5974"\w*. +\q1 +\v 23 \w I|strong="H4481"\w* \w thank|strong="H3029"\w* \w you|strong="H1768"\w* \w and|strong="H4430"\w* \w praise|strong="H7624"\w* \w you|strong="H1768"\w*, +\q2 \w O|strong="H3068"\w* God \w of|strong="H4481"\w* \w my|strong="H4430"\w* fathers, +\q1 \w who|strong="H1768"\w* \w have|strong="H1768"\w* \w given|strong="H3052"\w* \w me|strong="H3052"\w* \w wisdom|strong="H2452"\w* \w and|strong="H4430"\w* \w might|strong="H1370"\w*, +\q2 \w and|strong="H4430"\w* \w have|strong="H1768"\w* \w now|strong="H3705"\w* \w made|strong="H3046"\w* \w known|strong="H3046"\w* \w to|strong="H3046"\w* \w me|strong="H3052"\w* \w what|strong="H1768"\w* \w we|strong="H3068"\w* \w desired|strong="H1156"\w* \w of|strong="H4481"\w* \w you|strong="H1768"\w*; +\q2 \w for|strong="H1768"\w* \w you|strong="H1768"\w* \w have|strong="H1768"\w* \w made|strong="H3046"\w* \w known|strong="H3046"\w* \w to|strong="H3046"\w* us \w the|strong="H4481"\w* \w king|strong="H4430"\w*’s \w matter|strong="H4406"\w*.” +\p +\v 24 \w Therefore|strong="H3606"\w* \w Daniel|strong="H1841"\w* \w went|strong="H5954"\w* \w in|strong="H5954"\w* \w to|strong="H5922"\w* Arioch, \w whom|strong="H1768"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w* \w had|strong="H4430"\w* \w appointed|strong="H4483"\w* \w to|strong="H5922"\w* destroy \w the|strong="H3606"\w* \w wise|strong="H2445"\w* \w men|strong="H2445"\w* \w of|strong="H4430"\w* Babylon. \w He|strong="H1768"\w* \w went|strong="H5954"\w* \w and|strong="H4430"\w* said \w this|strong="H1836"\w* \w to|strong="H5922"\w* \w him|strong="H5922"\w*: “Don’t destroy \w the|strong="H3606"\w* \w wise|strong="H2445"\w* \w men|strong="H2445"\w* \w of|strong="H4430"\w* Babylon. \w Bring|strong="H5954"\w* \w me|strong="H5922"\w* \w in|strong="H5954"\w* \w before|strong="H6925"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w*, \w and|strong="H4430"\w* \w I|strong="H1836"\w* \w will|strong="H1768"\w* show \w to|strong="H5922"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w* \w the|strong="H3606"\w* \w interpretation|strong="H6591"\w*.” +\p +\v 25 \w Then|strong="H1768"\w* Arioch \w brought|strong="H5954"\w* \w in|strong="H5954"\w* \w Daniel|strong="H1841"\w* \w before|strong="H6925"\w* \w the|strong="H4481"\w* \w king|strong="H4430"\w* \w in|strong="H5954"\w* haste, \w and|strong="H4430"\w* said \w this|strong="H4481"\w* \w to|strong="H6925"\w* \w him|strong="H4481"\w*: “\w I|strong="H4481"\w* \w have|strong="H1768"\w* \w found|strong="H7912"\w* \w a|strong="H3068"\w* \w man|strong="H1400"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w children|strong="H1123"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w captivity|strong="H1547"\w* \w of|strong="H4481"\w* \w Judah|strong="H3061"\w* \w who|strong="H1768"\w* \w will|strong="H1768"\w* \w make|strong="H3046"\w* \w known|strong="H3046"\w* \w to|strong="H6925"\w* \w the|strong="H4481"\w* \w king|strong="H4430"\w* \w the|strong="H4481"\w* \w interpretation|strong="H6591"\w*.” +\p +\v 26 \w The|strong="H1768"\w* \w king|strong="H4430"\w* \w answered|strong="H6032"\w* \w Daniel|strong="H1841"\w*, \w whose|strong="H1768"\w* \w name|strong="H8036"\w* \w was|strong="H1841"\w* \w Belteshazzar|strong="H1096"\w*, “\w Are|strong="H1768"\w* \w you|strong="H1768"\w* \w able|strong="H3546"\w* \w to|strong="H3046"\w* \w make|strong="H3046"\w* \w known|strong="H3046"\w* \w to|strong="H3046"\w* me \w the|strong="H1768"\w* \w dream|strong="H2493"\w* \w which|strong="H1768"\w* \w I|strong="H1768"\w* \w have|strong="H1768"\w* \w seen|strong="H2370"\w*, \w and|strong="H6032"\w* \w its|strong="H6591"\w* \w interpretation|strong="H6591"\w*?” +\p +\v 27 \w Daniel|strong="H1841"\w* \w answered|strong="H6032"\w* \w before|strong="H6925"\w* \w the|strong="H6925"\w* \w king|strong="H4430"\w*, \w and|strong="H6032"\w* \w said|strong="H6032"\w*, “\w The|strong="H6925"\w* \w secret|strong="H7328"\w* \w which|strong="H1768"\w* \w the|strong="H6925"\w* \w king|strong="H4430"\w* \w has|strong="H1768"\w* \w demanded|strong="H7593"\w* \w can|strong="H3202"\w*’t \w be|strong="H3809"\w* shown \w to|strong="H3202"\w* \w the|strong="H6925"\w* \w king|strong="H4430"\w* \w by|strong="H6925"\w* \w wise|strong="H2445"\w* \w men|strong="H2445"\w*, enchanters, \w magicians|strong="H2749"\w*, \w or|strong="H3809"\w* \w soothsayers|strong="H1505"\w*; +\v 28 \w but|strong="H1297"\w* \w there|strong="H1297"\w* \w is|strong="H1768"\w* \w a|strong="H3068"\w* God \w in|strong="H5922"\w* \w heaven|strong="H8065"\w* \w who|strong="H1768"\w* \w reveals|strong="H1541"\w* \w secrets|strong="H7328"\w*, \w and|strong="H4430"\w* \w he|strong="H1768"\w* \w has|strong="H1768"\w* \w made|strong="H3046"\w* \w known|strong="H3046"\w* \w to|strong="H5922"\w* \w King|strong="H4430"\w* \w Nebuchadnezzar|strong="H5020"\w* \w what|strong="H4101"\w* \w will|strong="H4101"\w* \w be|strong="H1934"\w* \w in|strong="H5922"\w* \w the|strong="H5922"\w* latter \w days|strong="H3118"\w*. \w Your|strong="H1768"\w* \w dream|strong="H2493"\w* \w and|strong="H4430"\w* \w the|strong="H5922"\w* \w visions|strong="H2376"\w* \w of|strong="H4430"\w* \w your|strong="H1768"\w* \w head|strong="H7217"\w* \w on|strong="H5922"\w* \w your|strong="H1768"\w* \w bed|strong="H4903"\w* \w are|strong="H1768"\w* \w these|strong="H1836"\w*: +\p +\v 29 “\w As|strong="H1768"\w* \w for|strong="H5922"\w* \w you|strong="H1768"\w*, \w O|strong="H3068"\w* \w king|strong="H4430"\w*, \w your|strong="H4903"\w* \w thoughts|strong="H7476"\w* \w came|strong="H5559"\w* \w on|strong="H5922"\w* \w your|strong="H4903"\w* \w bed|strong="H4903"\w*, \w what|strong="H4101"\w* \w should|strong="H4101"\w* happen hereafter; \w and|strong="H4430"\w* \w he|strong="H1768"\w* \w who|strong="H1768"\w* \w reveals|strong="H1541"\w* \w secrets|strong="H7328"\w* \w has|strong="H1768"\w* \w made|strong="H3046"\w* \w known|strong="H3046"\w* \w to|strong="H5922"\w* \w you|strong="H1768"\w* \w what|strong="H4101"\w* \w will|strong="H4101"\w* happen. +\v 30 \w But|strong="H3861"\w* \w as|strong="H3606"\w* \w for|strong="H5922"\w* \w me|strong="H5922"\w*, \w this|strong="H1836"\w* \w secret|strong="H7328"\w* \w is|strong="H1768"\w* \w not|strong="H3809"\w* \w revealed|strong="H1541"\w* \w to|strong="H5922"\w* \w me|strong="H5922"\w* \w for|strong="H5922"\w* \w any|strong="H3606"\w* \w wisdom|strong="H2452"\w* \w that|strong="H1768"\w* \w I|strong="H4481"\w* \w have|strong="H1768"\w* \w more|strong="H5922"\w* \w than|strong="H4481"\w* \w any|strong="H3606"\w* \w living|strong="H2417"\w*, \w but|strong="H3861"\w* \w to|strong="H5922"\w* \w the|strong="H3606"\w* \w intent|strong="H1701"\w* \w that|strong="H1768"\w* \w the|strong="H3606"\w* \w interpretation|strong="H6591"\w* \w may|strong="H2417"\w* \w be|strong="H3809"\w* \w made|strong="H3046"\w* \w known|strong="H3046"\w* \w to|strong="H5922"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w*, \w and|strong="H4430"\w* \w that|strong="H1768"\w* \w you|strong="H1768"\w* \w may|strong="H2417"\w* \w know|strong="H3046"\w* \w the|strong="H3606"\w* \w thoughts|strong="H7476"\w* \w of|strong="H4481"\w* \w your|strong="H1768"\w* \w heart|strong="H3825"\w*. +\p +\v 31 “\w You|strong="H6903"\w*, \w O|strong="H3068"\w* \w king|strong="H4430"\w*, \w saw|strong="H2370"\w*, \w and|strong="H4430"\w* behold,\f + \fr 2:31 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w a|strong="H3068"\w* \w great|strong="H7229"\w* \w image|strong="H6755"\w*. \w This|strong="H1797"\w* \w image|strong="H6755"\w*, \w which|strong="H6755"\w* \w was|strong="H1934"\w* mighty, \w and|strong="H4430"\w* whose \w brightness|strong="H2122"\w* \w was|strong="H1934"\w* \w excellent|strong="H3493"\w*, \w stood|strong="H6966"\w* \w before|strong="H6903"\w* \w you|strong="H6903"\w*; \w and|strong="H4430"\w* its \w appearance|strong="H7299"\w* \w was|strong="H1934"\w* terrifying. +\v 32 \w As|strong="H1768"\w* \w for|strong="H1768"\w* \w this|strong="H1932"\w* \w image|strong="H6755"\w*, its \w head|strong="H7217"\w* \w was|strong="H1932"\w* \w of|strong="H1768"\w* \w fine|strong="H2869"\w* \w gold|strong="H1722"\w*, its chest \w and|strong="H1722"\w* its \w arms|strong="H1872"\w* \w of|strong="H1768"\w* \w silver|strong="H3702"\w*, its \w belly|strong="H4577"\w* \w and|strong="H1722"\w* its \w thighs|strong="H3410"\w* \w of|strong="H1768"\w* \w bronze|strong="H5174"\w*, +\v 33 \w its|strong="H4481"\w* \w legs|strong="H8243"\w* \w of|strong="H4481"\w* \w iron|strong="H6523"\w*, \w its|strong="H4481"\w* \w feet|strong="H7271"\w* \w part|strong="H4481"\w* \w of|strong="H4481"\w* \w iron|strong="H6523"\w* \w and|strong="H6523"\w* \w part|strong="H4481"\w* \w of|strong="H4481"\w* \w clay|strong="H2635"\w*. +\v 34 \w You|strong="H1768"\w* \w saw|strong="H2370"\w* \w until|strong="H5705"\w* \w a|strong="H3068"\w* stone \w was|strong="H1934"\w* \w cut|strong="H1505"\w* \w out|strong="H1505"\w* \w without|strong="H3809"\w* \w hands|strong="H3028"\w*, \w which|strong="H1768"\w* \w struck|strong="H4223"\w* \w the|strong="H5922"\w* \w image|strong="H6755"\w* \w on|strong="H5922"\w* \w its|strong="H5705"\w* \w feet|strong="H7271"\w* \w that|strong="H1768"\w* \w were|strong="H1934"\w* \w of|strong="H5922"\w* \w iron|strong="H6523"\w* \w and|strong="H6523"\w* \w clay|strong="H2635"\w*, \w and|strong="H6523"\w* broke \w them|strong="H1994"\w* \w in|strong="H5922"\w* \w pieces|strong="H1855"\w*. +\v 35 \w Then|strong="H1768"\w* \w the|strong="H3606"\w* \w iron|strong="H6523"\w*, \w the|strong="H3606"\w* \w clay|strong="H2635"\w*, \w the|strong="H3606"\w* \w bronze|strong="H5174"\w*, \w the|strong="H3606"\w* \w silver|strong="H3702"\w*, \w and|strong="H6523"\w* \w the|strong="H3606"\w* \w gold|strong="H1722"\w* \w were|strong="H1934"\w* broken \w in|strong="H7912"\w* \w pieces|strong="H1855"\w* \w together|strong="H2298"\w*, \w and|strong="H6523"\w* \w became|strong="H1934"\w* like \w the|strong="H3606"\w* \w chaff|strong="H5784"\w* \w of|strong="H4481"\w* \w the|strong="H3606"\w* \w summer|strong="H7007"\w* threshing floors. \w The|strong="H3606"\w* \w wind|strong="H7308"\w* \w carried|strong="H5376"\w* \w them|strong="H1994"\w* \w away|strong="H5376"\w*, \w so|strong="H1768"\w* \w that|strong="H1768"\w* \w no|strong="H3809"\w* \w place|strong="H1934"\w* \w was|strong="H1934"\w* \w found|strong="H7912"\w* \w for|strong="H1768"\w* \w them|strong="H1994"\w*. \w The|strong="H3606"\w* stone \w that|strong="H1768"\w* \w struck|strong="H4223"\w* \w the|strong="H3606"\w* \w image|strong="H6755"\w* \w became|strong="H1934"\w* \w a|strong="H3068"\w* \w great|strong="H7229"\w* \w mountain|strong="H2906"\w* \w and|strong="H6523"\w* \w filled|strong="H4391"\w* \w the|strong="H3606"\w* \w whole|strong="H3606"\w* earth. +\p +\v 36 “\w This|strong="H1836"\w* \w is|strong="H6591"\w* \w the|strong="H6925"\w* \w dream|strong="H2493"\w*; \w and|strong="H4430"\w* \w we|strong="H3068"\w* \w will|strong="H4430"\w* tell \w its|strong="H6591"\w* \w interpretation|strong="H6591"\w* \w before|strong="H6925"\w* \w the|strong="H6925"\w* \w king|strong="H4430"\w*. +\v 37 \w You|strong="H1768"\w*, \w O|strong="H3068"\w* \w king|strong="H4430"\w*, \w are|strong="H1768"\w* \w king|strong="H4430"\w* \w of|strong="H4437"\w* \w kings|strong="H4430"\w*, \w to|strong="H4430"\w* \w whom|strong="H1768"\w* \w the|strong="H1768"\w* God \w of|strong="H4437"\w* \w heaven|strong="H8065"\w* \w has|strong="H1768"\w* \w given|strong="H3052"\w* \w the|strong="H1768"\w* \w kingdom|strong="H4437"\w*, \w the|strong="H1768"\w* \w power|strong="H2632"\w*, \w the|strong="H1768"\w* \w strength|strong="H8632"\w*, \w and|strong="H4430"\w* \w the|strong="H1768"\w* \w glory|strong="H3367"\w*. +\v 38 \w Wherever|strong="H1768"\w* \w the|strong="H3606"\w* \w children|strong="H1123"\w* \w of|strong="H1123"\w* men \w dwell|strong="H1753"\w*, \w he|strong="H1768"\w* \w has|strong="H1768"\w* \w given|strong="H3052"\w* \w the|strong="H3606"\w* \w animals|strong="H2423"\w* \w of|strong="H1123"\w* \w the|strong="H3606"\w* \w field|strong="H1251"\w* \w and|strong="H1722"\w* \w the|strong="H3606"\w* \w birds|strong="H5776"\w* \w of|strong="H1123"\w* \w the|strong="H3606"\w* \w sky|strong="H8065"\w* into \w your|strong="H3052"\w* \w hand|strong="H3028"\w*, \w and|strong="H1722"\w* \w has|strong="H1768"\w* \w made|strong="H7981"\w* \w you|strong="H1768"\w* \w rule|strong="H7981"\w* \w over|strong="H7981"\w* \w them|strong="H3052"\w* \w all|strong="H3606"\w*. \w You|strong="H1768"\w* \w are|strong="H1768"\w* \w the|strong="H3606"\w* \w head|strong="H7217"\w* \w of|strong="H1123"\w* \w gold|strong="H1722"\w*. +\p +\v 39 “\w After|strong="H4481"\w* \w you|strong="H1768"\w*, another \w kingdom|strong="H4437"\w* \w will|strong="H1768"\w* \w arise|strong="H6966"\w* \w that|strong="H1768"\w* \w is|strong="H1768"\w* inferior \w to|strong="H4481"\w* \w you|strong="H1768"\w*; \w and|strong="H4437"\w* another \w third|strong="H8523"\w* \w kingdom|strong="H4437"\w* \w of|strong="H4481"\w* \w bronze|strong="H5174"\w*, \w which|strong="H1768"\w* \w will|strong="H1768"\w* \w rule|strong="H7981"\w* \w over|strong="H7981"\w* \w all|strong="H3606"\w* \w the|strong="H3606"\w* earth. +\v 40 \w The|strong="H3606"\w* \w fourth|strong="H7244"\w* \w kingdom|strong="H4437"\w* \w will|strong="H1768"\w* \w be|strong="H1934"\w* \w strong|strong="H8624"\w* \w as|strong="H3606"\w* \w iron|strong="H6523"\w*, \w because|strong="H6903"\w* \w iron|strong="H6523"\w* \w breaks|strong="H7490"\w* \w in|strong="H4437"\w* \w pieces|strong="H1855"\w* \w and|strong="H6523"\w* subdues \w all|strong="H3606"\w* \w things|strong="H3606"\w*; \w and|strong="H6523"\w* \w as|strong="H3606"\w* \w iron|strong="H6523"\w* \w that|strong="H1768"\w* \w crushes|strong="H1855"\w* \w all|strong="H3606"\w* these, \w it|strong="H1934"\w* \w will|strong="H1768"\w* \w break|strong="H7490"\w* \w in|strong="H4437"\w* \w pieces|strong="H1855"\w* \w and|strong="H6523"\w* \w crush|strong="H1855"\w*. +\v 41 \w Whereas|strong="H1768"\w* \w you|strong="H1768"\w* \w saw|strong="H2370"\w* \w the|strong="H3606"\w* \w feet|strong="H7271"\w* \w and|strong="H6523"\w* toes, \w part|strong="H4481"\w* \w of|strong="H4481"\w* potters’ \w clay|strong="H2635"\w* \w and|strong="H6523"\w* \w part|strong="H4481"\w* \w of|strong="H4481"\w* \w iron|strong="H6523"\w*, \w it|strong="H1934"\w* \w will|strong="H1768"\w* \w be|strong="H1934"\w* \w a|strong="H3068"\w* \w divided|strong="H6386"\w* \w kingdom|strong="H4437"\w*; \w but|strong="H1768"\w* \w there|strong="H6903"\w* \w will|strong="H1768"\w* \w be|strong="H1934"\w* \w in|strong="H4437"\w* \w it|strong="H1934"\w* \w of|strong="H4481"\w* \w the|strong="H3606"\w* \w strength|strong="H5326"\w* \w of|strong="H4481"\w* \w the|strong="H3606"\w* \w iron|strong="H6523"\w*, \w because|strong="H6903"\w* \w you|strong="H1768"\w* \w saw|strong="H2370"\w* \w the|strong="H3606"\w* \w iron|strong="H6523"\w* \w mixed|strong="H6151"\w* \w with|strong="H6151"\w* \w miry|strong="H2917"\w* \w clay|strong="H2635"\w*. +\v 42 \w As|strong="H8624"\w* \w the|strong="H4481"\w* toes \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w feet|strong="H7271"\w* \w were|strong="H1934"\w* \w part|strong="H4481"\w* \w of|strong="H4481"\w* \w iron|strong="H6523"\w*, \w and|strong="H6523"\w* \w part|strong="H4481"\w* \w of|strong="H4481"\w* \w clay|strong="H2635"\w*, \w so|strong="H4481"\w* \w the|strong="H4481"\w* \w kingdom|strong="H4437"\w* will \w be|strong="H1934"\w* \w partly|strong="H4481"\w* \w strong|strong="H8624"\w* \w and|strong="H6523"\w* \w partly|strong="H4481"\w* \w brittle|strong="H8406"\w*. +\v 43 \w Whereas|strong="H1768"\w* \w you|strong="H1768"\w* \w saw|strong="H2370"\w* \w the|strong="H1768"\w* \w iron|strong="H6523"\w* \w mixed|strong="H6151"\w* \w with|strong="H5974"\w* \w miry|strong="H2917"\w* \w clay|strong="H2635"\w*, \w they|strong="H1768"\w* \w will|strong="H1768"\w* mingle \w themselves|strong="H1934"\w* \w with|strong="H5974"\w* \w the|strong="H1768"\w* \w seed|strong="H2234"\w* \w of|strong="H1768"\w* men; \w but|strong="H1768"\w* \w they|strong="H1768"\w* won’t cling \w to|strong="H5974"\w* \w one|strong="H1836"\w* \w another|strong="H1836"\w*, \w even|strong="H1888"\w* \w as|strong="H1768"\w* \w iron|strong="H6523"\w* \w does|strong="H1934"\w* \w not|strong="H3809"\w* \w mix|strong="H6151"\w* \w with|strong="H5974"\w* \w clay|strong="H2635"\w*. +\p +\v 44 “\w In|strong="H4430"\w* \w the|strong="H3606"\w* \w days|strong="H3118"\w* \w of|strong="H4437"\w* \w those|strong="H1768"\w* \w kings|strong="H4430"\w* \w the|strong="H3606"\w* God \w of|strong="H4437"\w* \w heaven|strong="H8065"\w* \w will|strong="H1768"\w* \w set|strong="H6966"\w* \w up|strong="H6966"\w* \w a|strong="H3068"\w* \w kingdom|strong="H4437"\w* \w which|strong="H1768"\w* \w will|strong="H1768"\w* \w never|strong="H5957"\w* \w be|strong="H3809"\w* \w destroyed|strong="H2255"\w*, \w nor|strong="H3809"\w* \w will|strong="H1768"\w* its \w sovereignty|strong="H4437"\w* \w be|strong="H3809"\w* \w left|strong="H7662"\w* \w to|strong="H4430"\w* another \w people|strong="H5972"\w*; \w but|strong="H1768"\w* \w it|strong="H1932"\w* \w will|strong="H1768"\w* break \w in|strong="H4430"\w* \w pieces|strong="H1855"\w* \w and|strong="H4430"\w* \w consume|strong="H5487"\w* \w all|strong="H3606"\w* these \w kingdoms|strong="H4437"\w*, \w and|strong="H4430"\w* \w it|strong="H1932"\w* \w will|strong="H1768"\w* \w stand|strong="H6966"\w* \w forever|strong="H5957"\w*. +\v 45 \w Because|strong="H6903"\w* \w you|strong="H1768"\w* \w saw|strong="H2370"\w* \w that|strong="H1768"\w* \w a|strong="H3068"\w* stone \w was|strong="H1934"\w* \w cut|strong="H1505"\w* \w out|strong="H1505"\w* \w of|strong="H4430"\w* \w the|strong="H3606"\w* \w mountain|strong="H2906"\w* \w without|strong="H3809"\w* \w hands|strong="H3028"\w*, \w and|strong="H4430"\w* \w that|strong="H1768"\w* \w it|strong="H1934"\w* broke \w in|strong="H4430"\w* \w pieces|strong="H1855"\w* \w the|strong="H3606"\w* \w iron|strong="H6523"\w*, \w the|strong="H3606"\w* \w bronze|strong="H5174"\w*, \w the|strong="H3606"\w* \w clay|strong="H2635"\w*, \w the|strong="H3606"\w* \w silver|strong="H3702"\w*, \w and|strong="H4430"\w* \w the|strong="H3606"\w* \w gold|strong="H1722"\w*, \w the|strong="H3606"\w* \w great|strong="H7229"\w* God \w has|strong="H1768"\w* \w made|strong="H3046"\w* \w known|strong="H3046"\w* \w to|strong="H3046"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w* \w what|strong="H4101"\w* \w will|strong="H4101"\w* happen hereafter. \w The|strong="H3606"\w* \w dream|strong="H2493"\w* \w is|strong="H1768"\w* \w certain|strong="H3330"\w*, \w and|strong="H4430"\w* \w its|strong="H6591"\w* \w interpretation|strong="H6591"\w* \w sure|strong="H3330"\w*.” +\p +\v 46 \w Then|strong="H4430"\w* \w King|strong="H4430"\w* \w Nebuchadnezzar|strong="H5020"\w* \w fell|strong="H5308"\w* \w on|strong="H5922"\w* \w his|strong="H5922"\w* face, \w worshiped|strong="H5457"\w* \w Daniel|strong="H1841"\w*, \w and|strong="H5308"\w* commanded \w that|strong="H5922"\w* they \w should|strong="H4430"\w* \w offer|strong="H5260"\w* \w an|strong="H4430"\w* \w offering|strong="H4504"\w* \w and|strong="H5308"\w* sweet odors \w to|strong="H5922"\w* \w him|strong="H5922"\w*. +\v 47 \w The|strong="H4481"\w* \w king|strong="H4430"\w* \w answered|strong="H6032"\w* \w to|strong="H3202"\w* \w Daniel|strong="H1841"\w*, \w and|strong="H6032"\w* \w said|strong="H6032"\w*, “\w Of|strong="H4481"\w* \w a|strong="H3068"\w* \w truth|strong="H7187"\w* \w your|strong="H1768"\w* God \w is|strong="H1768"\w* \w the|strong="H4481"\w* God \w of|strong="H4481"\w* gods, \w and|strong="H6032"\w* \w the|strong="H4481"\w* \w Lord|strong="H4756"\w* \w of|strong="H4481"\w* \w kings|strong="H4430"\w*, \w and|strong="H6032"\w* \w a|strong="H3068"\w* \w revealer|strong="H1541"\w* \w of|strong="H4481"\w* \w secrets|strong="H7328"\w*, \w since|strong="H1768"\w* \w you|strong="H1768"\w* \w have|strong="H1768"\w* \w been|strong="H3202"\w* \w able|strong="H3202"\w* \w to|strong="H3202"\w* \w reveal|strong="H1541"\w* \w this|strong="H1836"\w* \w secret|strong="H7328"\w*.” +\p +\v 48 \w Then|strong="H4430"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w* \w made|strong="H7236"\w* \w Daniel|strong="H1841"\w* \w great|strong="H7229"\w* \w and|strong="H4430"\w* \w gave|strong="H3052"\w* \w him|strong="H5922"\w* \w many|strong="H7690"\w* \w great|strong="H7229"\w* \w gifts|strong="H4978"\w*, \w and|strong="H4430"\w* \w made|strong="H7236"\w* \w him|strong="H5922"\w* \w rule|strong="H7981"\w* \w over|strong="H5922"\w* \w the|strong="H3606"\w* \w whole|strong="H3606"\w* \w province|strong="H4083"\w* \w of|strong="H4430"\w* Babylon \w and|strong="H4430"\w* \w to|strong="H5922"\w* \w be|strong="H1841"\w* \w chief|strong="H7229"\w* governor \w over|strong="H5922"\w* \w all|strong="H3606"\w* \w the|strong="H3606"\w* \w wise|strong="H2445"\w* \w men|strong="H2445"\w* \w of|strong="H4430"\w* Babylon. +\v 49 \w Daniel|strong="H1841"\w* \w requested|strong="H1156"\w* \w of|strong="H4481"\w* \w the|strong="H5922"\w* \w king|strong="H4430"\w*, \w and|strong="H4336"\w* \w he|strong="H1768"\w* \w appointed|strong="H4483"\w* \w Shadrach|strong="H7715"\w*, \w Meshach|strong="H4336"\w*, \w and|strong="H4336"\w* Abednego \w over|strong="H5922"\w* \w the|strong="H5922"\w* \w affairs|strong="H5673"\w* \w of|strong="H4481"\w* \w the|strong="H5922"\w* \w province|strong="H4083"\w* \w of|strong="H4481"\w* Babylon, \w but|strong="H1768"\w* \w Daniel|strong="H1841"\w* \w was|strong="H1841"\w* \w in|strong="H5922"\w* \w the|strong="H5922"\w* \w king|strong="H4430"\w*’s \w gate|strong="H8651"\w*. +\c 3 +\p +\v 1 \w Nebuchadnezzar|strong="H5020"\w* \w the|strong="H5020"\w* \w king|strong="H4430"\w* \w made|strong="H5648"\w* \w an|strong="H5648"\w* \w image|strong="H6755"\w* \w of|strong="H4430"\w* \w gold|strong="H1722"\w*, \w whose|strong="H1768"\w* \w height|strong="H7314"\w* \w was|strong="H4430"\w* \w sixty|strong="H8361"\w* cubits\f + \fr 3:1 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w and|strong="H4430"\w* its \w width|strong="H6613"\w* \w six|strong="H8353"\w* cubits. \w He|strong="H1768"\w* \w set|strong="H6966"\w* it \w up|strong="H6966"\w* \w in|strong="H4430"\w* \w the|strong="H5020"\w* \w plain|strong="H1236"\w* \w of|strong="H4430"\w* \w Dura|strong="H1757"\w*, \w in|strong="H4430"\w* \w the|strong="H5020"\w* \w province|strong="H4083"\w* \w of|strong="H4430"\w* Babylon. +\v 2 \w Then|strong="H1768"\w* \w Nebuchadnezzar|strong="H5020"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w* \w sent|strong="H7972"\w* \w to|strong="H4430"\w* gather \w together|strong="H3673"\w* \w the|strong="H3606"\w* local \w governors|strong="H6347"\w*, \w the|strong="H3606"\w* deputies, \w and|strong="H4430"\w* \w the|strong="H3606"\w* \w governors|strong="H6347"\w*, \w the|strong="H3606"\w* \w judges|strong="H1884"\w*, \w the|strong="H3606"\w* \w treasurers|strong="H1411"\w*, \w the|strong="H3606"\w* counselors, \w the|strong="H3606"\w* \w sheriffs|strong="H8614"\w*, \w and|strong="H4430"\w* \w all|strong="H3606"\w* \w the|strong="H3606"\w* \w rulers|strong="H7984"\w* \w of|strong="H4430"\w* \w the|strong="H3606"\w* \w provinces|strong="H4083"\w*, \w to|strong="H4430"\w* come \w to|strong="H4430"\w* \w the|strong="H3606"\w* \w dedication|strong="H2597"\w* \w of|strong="H4430"\w* \w the|strong="H3606"\w* \w image|strong="H6755"\w* \w which|strong="H1768"\w* \w Nebuchadnezzar|strong="H5020"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w* \w had|strong="H4430"\w* \w set|strong="H6966"\w* \w up|strong="H6966"\w*. +\v 3 \w Then|strong="H6903"\w* \w the|strong="H3606"\w* local \w governors|strong="H6347"\w*, \w the|strong="H3606"\w* deputies, \w and|strong="H4430"\w* \w the|strong="H3606"\w* \w governors|strong="H6347"\w*, \w the|strong="H3606"\w* \w judges|strong="H1884"\w*, \w the|strong="H3606"\w* \w treasurers|strong="H1411"\w*, \w the|strong="H3606"\w* counselors, \w the|strong="H3606"\w* \w sheriffs|strong="H8614"\w*, \w and|strong="H4430"\w* \w all|strong="H3606"\w* \w the|strong="H3606"\w* \w rulers|strong="H7984"\w* \w of|strong="H4430"\w* \w the|strong="H3606"\w* \w provinces|strong="H4083"\w* \w were|strong="H1768"\w* \w gathered|strong="H3673"\w* \w together|strong="H3673"\w* \w to|strong="H4430"\w* \w the|strong="H3606"\w* \w dedication|strong="H2597"\w* \w of|strong="H4430"\w* \w the|strong="H3606"\w* \w image|strong="H6755"\w* \w that|strong="H1768"\w* \w Nebuchadnezzar|strong="H5020"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w* \w had|strong="H4430"\w* \w set|strong="H6966"\w* \w up|strong="H6966"\w*; \w and|strong="H4430"\w* \w they|strong="H3606"\w* \w stood|strong="H6966"\w* \w before|strong="H6903"\w* \w the|strong="H3606"\w* \w image|strong="H6755"\w* \w that|strong="H1768"\w* \w Nebuchadnezzar|strong="H5020"\w* \w had|strong="H4430"\w* \w set|strong="H6966"\w* \w up|strong="H6966"\w*. +\p +\v 4 Then \w the|strong="H7123"\w* \w herald|strong="H3744"\w* \w cried|strong="H7123"\w* \w aloud|strong="H2429"\w*, “\w To|strong="H2429"\w* you it is commanded, \w peoples|strong="H5972"\w*, nations, and \w languages|strong="H3961"\w*, +\v 5 \w that|strong="H1768"\w* whenever \w you|strong="H1768"\w* \w hear|strong="H8086"\w* \w the|strong="H3606"\w* \w sound|strong="H7032"\w* \w of|strong="H4430"\w* \w the|strong="H3606"\w* \w horn|strong="H7162"\w*, \w flute|strong="H4953"\w*, \w zither|strong="H7030"\w*, \w lyre|strong="H7030"\w*, \w harp|strong="H6460"\w*, pipe, \w and|strong="H5308"\w* \w all|strong="H3606"\w* \w kinds|strong="H2178"\w* \w of|strong="H4430"\w* \w music|strong="H2170"\w*, \w you|strong="H1768"\w* \w fall|strong="H5308"\w* \w down|strong="H5308"\w* \w and|strong="H5308"\w* \w worship|strong="H5457"\w* \w the|strong="H3606"\w* \w golden|strong="H1722"\w* \w image|strong="H6755"\w* \w that|strong="H1768"\w* \w Nebuchadnezzar|strong="H5020"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w* \w has|strong="H1768"\w* \w set|strong="H6966"\w* \w up|strong="H6966"\w*. +\v 6 \w Whoever|strong="H4479"\w* doesn’t \w fall|strong="H5308"\w* \w down|strong="H5308"\w* \w and|strong="H5308"\w* \w worship|strong="H5457"\w* \w shall|strong="H5457"\w* \w be|strong="H3809"\w* \w cast|strong="H7412"\w* \w into|strong="H1459"\w* \w the|strong="H1768"\w* middle \w of|strong="H1768"\w* \w a|strong="H3068"\w* \w burning|strong="H3345"\w* \w fiery|strong="H5135"\w* furnace \w the|strong="H1768"\w* \w same|strong="H1459"\w* \w hour|strong="H8160"\w*.” +\p +\v 7 \w Therefore|strong="H3606"\w* \w at|strong="H6903"\w* \w that|strong="H1768"\w* \w time|strong="H2166"\w*, \w when|strong="H1768"\w* \w all|strong="H3606"\w* \w the|strong="H3606"\w* \w peoples|strong="H5972"\w* \w heard|strong="H8086"\w* \w the|strong="H3606"\w* \w sound|strong="H7032"\w* \w of|strong="H4430"\w* \w the|strong="H3606"\w* \w horn|strong="H7162"\w*, \w flute|strong="H4953"\w*, \w zither|strong="H7030"\w*, \w lyre|strong="H7030"\w*, \w harp|strong="H6460"\w*, pipe, \w and|strong="H5308"\w* \w all|strong="H3606"\w* \w kinds|strong="H2178"\w* \w of|strong="H4430"\w* \w music|strong="H2170"\w*, \w all|strong="H3606"\w* \w the|strong="H3606"\w* \w peoples|strong="H5972"\w*, \w the|strong="H3606"\w* nations, \w and|strong="H5308"\w* \w the|strong="H3606"\w* \w languages|strong="H3961"\w* \w fell|strong="H5308"\w* \w down|strong="H5308"\w* \w and|strong="H5308"\w* \w worshiped|strong="H5457"\w* \w the|strong="H3606"\w* \w golden|strong="H1722"\w* \w image|strong="H6755"\w* \w that|strong="H1768"\w* \w Nebuchadnezzar|strong="H5020"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w* \w had|strong="H4430"\w* \w set|strong="H6966"\w* \w up|strong="H6966"\w*. +\p +\v 8 \w Therefore|strong="H3606"\w* \w at|strong="H6903"\w* \w that|strong="H1768"\w* \w time|strong="H2166"\w* \w certain|strong="H1400"\w* \w Chaldeans|strong="H3779"\w* \w came|strong="H7127"\w* \w near|strong="H7127"\w* \w and|strong="H7127"\w* brought accusation \w against|strong="H6903"\w* \w the|strong="H3606"\w* \w Jews|strong="H3062"\w*. +\v 9 They \w answered|strong="H6032"\w* \w Nebuchadnezzar|strong="H5020"\w* \w the|strong="H5020"\w* \w king|strong="H4430"\w*, “\w O|strong="H3068"\w* \w king|strong="H4430"\w*, \w live|strong="H2418"\w* \w for|strong="H2418"\w* \w ever|strong="H5957"\w*! +\v 10 \w You|strong="H1768"\w*, \w O|strong="H3068"\w* \w king|strong="H4430"\w*, \w have|strong="H7761"\w* \w made|strong="H7761"\w* \w a|strong="H3068"\w* \w decree|strong="H2942"\w* \w that|strong="H1768"\w* \w every|strong="H3606"\w* man \w who|strong="H1768"\w* \w hears|strong="H8086"\w* \w the|strong="H3606"\w* \w sound|strong="H7032"\w* \w of|strong="H4430"\w* \w the|strong="H3606"\w* \w horn|strong="H7162"\w*, \w flute|strong="H4953"\w*, \w zither|strong="H7030"\w*, \w lyre|strong="H7030"\w*, \w harp|strong="H6460"\w*, pipe, \w and|strong="H5308"\w* \w all|strong="H3606"\w* \w kinds|strong="H2178"\w* \w of|strong="H4430"\w* \w music|strong="H2170"\w* \w shall|strong="H3606"\w* \w fall|strong="H5308"\w* \w down|strong="H5308"\w* \w and|strong="H5308"\w* \w worship|strong="H5457"\w* \w the|strong="H3606"\w* \w golden|strong="H1722"\w* \w image|strong="H6755"\w*; +\v 11 \w and|strong="H5308"\w* \w whoever|strong="H4479"\w* doesn’t \w fall|strong="H5308"\w* \w down|strong="H5308"\w* \w and|strong="H5308"\w* \w worship|strong="H5457"\w* \w shall|strong="H5457"\w* \w be|strong="H3809"\w* \w cast|strong="H7412"\w* \w into|strong="H1459"\w* \w the|strong="H1768"\w* middle \w of|strong="H1768"\w* \w a|strong="H3068"\w* \w burning|strong="H3345"\w* \w fiery|strong="H5135"\w* furnace. +\v 12 \w There|strong="H1768"\w* \w are|strong="H1768"\w* \w certain|strong="H1400"\w* \w Jews|strong="H3062"\w* \w whom|strong="H1768"\w* \w you|strong="H1768"\w* \w have|strong="H7761"\w* \w appointed|strong="H4483"\w* \w over|strong="H5922"\w* \w the|strong="H5922"\w* \w affairs|strong="H5673"\w* \w of|strong="H4430"\w* \w the|strong="H5922"\w* \w province|strong="H4083"\w* \w of|strong="H4430"\w* Babylon: \w Shadrach|strong="H7715"\w*, \w Meshach|strong="H4336"\w*, \w and|strong="H4336"\w* Abednego. These \w men|strong="H1400"\w*, \w O|strong="H3068"\w* \w king|strong="H4430"\w*, \w have|strong="H7761"\w* \w not|strong="H3809"\w* respected \w you|strong="H1768"\w*. \w They|strong="H1768"\w* don’t \w serve|strong="H6399"\w* \w your|strong="H6399"\w* gods, \w and|strong="H4336"\w* don’t \w worship|strong="H5457"\w* \w the|strong="H5922"\w* \w golden|strong="H1722"\w* \w image|strong="H6755"\w* \w which|strong="H1768"\w* \w you|strong="H1768"\w* \w have|strong="H7761"\w* \w set|strong="H6966"\w* \w up|strong="H6966"\w*.” +\p +\v 13 \w Then|strong="H4430"\w* \w Nebuchadnezzar|strong="H5020"\w* \w in|strong="H4430"\w* \w rage|strong="H7266"\w* \w and|strong="H4336"\w* \w fury|strong="H2528"\w* commanded \w that|strong="H1400"\w* \w Shadrach|strong="H7715"\w*, \w Meshach|strong="H4336"\w*, \w and|strong="H4336"\w* Abednego be brought. \w Then|strong="H4430"\w* these \w men|strong="H1400"\w* \w were|strong="H1400"\w* brought \w before|strong="H6925"\w* \w the|strong="H6925"\w* \w king|strong="H4430"\w*. +\v 14 \w Nebuchadnezzar|strong="H5020"\w* \w answered|strong="H6032"\w* them, “\w Is|strong="H1768"\w* it \w true|strong="H6656"\w*, \w Shadrach|strong="H7715"\w*, \w Meshach|strong="H4336"\w*, \w and|strong="H6032"\w* Abednego, \w that|strong="H1768"\w* \w you|strong="H1768"\w* don’t \w serve|strong="H6399"\w* \w my|strong="H6399"\w* gods \w and|strong="H6032"\w* \w you|strong="H1768"\w* don’t \w worship|strong="H5457"\w* \w the|strong="H5020"\w* \w golden|strong="H1722"\w* \w image|strong="H6755"\w* \w which|strong="H1768"\w* \w I|strong="H1768"\w* \w have|strong="H5020"\w* \w set|strong="H6966"\w* \w up|strong="H6966"\w*? +\v 15 \w Now|strong="H3705"\w* \w if|strong="H2006"\w* \w you|strong="H1768"\w* \w are|strong="H1768"\w* \w ready|strong="H6263"\w* whenever \w you|strong="H1768"\w* \w hear|strong="H8086"\w* \w the|strong="H3606"\w* \w sound|strong="H7032"\w* \w of|strong="H4481"\w* \w the|strong="H3606"\w* \w horn|strong="H7162"\w*, \w flute|strong="H4953"\w*, \w zither|strong="H7030"\w*, \w lyre|strong="H7030"\w*, \w harp|strong="H6460"\w*, pipe, \w and|strong="H5308"\w* \w all|strong="H3606"\w* \w kinds|strong="H2178"\w* \w of|strong="H4481"\w* \w music|strong="H2170"\w* \w to|strong="H5308"\w* \w fall|strong="H5308"\w* \w down|strong="H5308"\w* \w and|strong="H5308"\w* \w worship|strong="H5457"\w* \w the|strong="H3606"\w* \w image|strong="H6755"\w* \w which|strong="H1768"\w* \w I|strong="H4481"\w* \w have|strong="H1768"\w* \w made|strong="H5648"\w*, good; \w but|strong="H1768"\w* \w if|strong="H2006"\w* \w you|strong="H1768"\w* don’t \w worship|strong="H5457"\w*, \w you|strong="H1768"\w* \w shall|strong="H5732"\w* \w be|strong="H3809"\w* \w cast|strong="H7412"\w* \w the|strong="H3606"\w* \w same|strong="H1459"\w* \w hour|strong="H8160"\w* \w into|strong="H1459"\w* \w the|strong="H3606"\w* middle \w of|strong="H4481"\w* \w a|strong="H3068"\w* \w burning|strong="H3345"\w* \w fiery|strong="H5135"\w* furnace. \w Who|strong="H1768"\w* \w is|strong="H1768"\w* \w that|strong="H1768"\w* god \w who|strong="H1768"\w* \w will|strong="H1768"\w* \w deliver|strong="H7804"\w* \w you|strong="H1768"\w* \w out|strong="H5648"\w* \w of|strong="H4481"\w* \w my|strong="H4481"\w* \w hands|strong="H3028"\w*?” +\p +\v 16 \w Shadrach|strong="H7715"\w*, \w Meshach|strong="H4336"\w*, \w and|strong="H6032"\w* Abednego \w answered|strong="H6032"\w* \w the|strong="H5922"\w* \w king|strong="H4430"\w*, “\w Nebuchadnezzar|strong="H5020"\w*, \w we|strong="H3068"\w* \w have|strong="H5020"\w* \w no|strong="H3809"\w* \w need|strong="H2818"\w* \w to|strong="H5922"\w* \w answer|strong="H6600"\w* \w you|strong="H5922"\w* \w in|strong="H5922"\w* \w this|strong="H1836"\w* \w matter|strong="H6600"\w*. +\v 17 \w If|strong="H2006"\w* \w it|strong="H2006"\w* happens, \w our|strong="H4481"\w* God \w whom|strong="H1768"\w* \w we|strong="H3068"\w* \w serve|strong="H6399"\w* \w is|strong="H1768"\w* \w able|strong="H3202"\w* \w to|strong="H3202"\w* \w deliver|strong="H7804"\w* \w us|strong="H7804"\w* \w from|strong="H4481"\w* \w the|strong="H4481"\w* \w burning|strong="H3345"\w* \w fiery|strong="H5135"\w* furnace; \w and|strong="H4430"\w* \w he|strong="H1768"\w* \w will|strong="H1768"\w* \w deliver|strong="H7804"\w* \w us|strong="H7804"\w* out \w of|strong="H4481"\w* \w your|strong="H6399"\w* \w hand|strong="H3028"\w*, \w O|strong="H3068"\w* \w king|strong="H4430"\w*. +\v 18 \w But|strong="H1768"\w* \w if|strong="H2006"\w* \w not|strong="H3809"\w*, let \w it|strong="H1934"\w* \w be|strong="H1934"\w* \w known|strong="H3046"\w* \w to|strong="H3046"\w* \w you|strong="H1768"\w*, \w O|strong="H3068"\w* \w king|strong="H4430"\w*, \w that|strong="H1768"\w* \w we|strong="H3068"\w* \w will|strong="H1768"\w* \w not|strong="H3809"\w* \w serve|strong="H6399"\w* \w your|strong="H6399"\w* gods \w or|strong="H2006"\w* \w worship|strong="H5457"\w* \w the|strong="H3046"\w* \w golden|strong="H1722"\w* \w image|strong="H6755"\w* \w which|strong="H1768"\w* \w you|strong="H1768"\w* \w have|strong="H1934"\w* \w set|strong="H6966"\w* \w up|strong="H6966"\w*.” +\p +\v 19 \w Then|strong="H1768"\w* \w Nebuchadnezzar|strong="H5020"\w* \w was|strong="H5020"\w* \w full|strong="H4391"\w* \w of|strong="H5922"\w* \w fury|strong="H2528"\w*, \w and|strong="H6032"\w* \w the|strong="H5922"\w* \w form|strong="H6755"\w* \w of|strong="H5922"\w* \w his|strong="H5922"\w* appearance \w was|strong="H5020"\w* \w changed|strong="H8133"\w* \w against|strong="H5922"\w* \w Shadrach|strong="H7715"\w*, \w Meshach|strong="H4336"\w*, \w and|strong="H6032"\w* Abednego. \w He|strong="H1768"\w* \w spoke|strong="H6032"\w*, \w and|strong="H6032"\w* commanded \w that|strong="H1768"\w* \w they|strong="H1768"\w* should heat \w the|strong="H5922"\w* furnace \w seven|strong="H7655"\w* \w times|strong="H7655"\w* \w more|strong="H5922"\w* \w than|strong="H1768"\w* \w it|strong="H5922"\w* \w was|strong="H5020"\w* \w usually|strong="H2370"\w* heated. +\v 20 \w He|strong="H1768"\w* commanded \w certain|strong="H1400"\w* \w mighty|strong="H1401"\w* \w men|strong="H1400"\w* \w who|strong="H1768"\w* \w were|strong="H1400"\w* \w in|strong="H1768"\w* \w his|strong="H1768"\w* \w army|strong="H2429"\w* \w to|strong="H2429"\w* \w bind|strong="H3729"\w* \w Shadrach|strong="H7715"\w*, \w Meshach|strong="H4336"\w*, \w and|strong="H4336"\w* Abednego, \w and|strong="H4336"\w* \w to|strong="H2429"\w* \w cast|strong="H7412"\w* them \w into|strong="H7412"\w* \w the|strong="H1768"\w* \w burning|strong="H3345"\w* \w fiery|strong="H5135"\w* furnace. +\v 21 Then these \w men|strong="H1400"\w* \w were|strong="H1400"\w* \w bound|strong="H3729"\w* in their pants, their tunics, and their mantles, and their other \w clothes|strong="H3831"\w*, and \w were|strong="H1400"\w* \w cast|strong="H7412"\w* \w into|strong="H1459"\w* the middle \w of|strong="H1459"\w* the \w burning|strong="H3345"\w* \w fiery|strong="H5135"\w* furnace. +\v 22 \w Therefore|strong="H3606"\w* \w because|strong="H6903"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w*’s \w commandment|strong="H4406"\w* \w was|strong="H4430"\w* \w urgent|strong="H2685"\w* \w and|strong="H4336"\w* \w the|strong="H3606"\w* furnace \w exceedingly|strong="H3493"\w* hot, \w the|strong="H3606"\w* \w flame|strong="H7631"\w* \w of|strong="H4481"\w* \w the|strong="H3606"\w* \w fire|strong="H5135"\w* \w killed|strong="H6992"\w* \w those|strong="H1994"\w* \w men|strong="H1400"\w* \w who|strong="H1768"\w* took \w up|strong="H5267"\w* \w Shadrach|strong="H7715"\w*, \w Meshach|strong="H4336"\w*, \w and|strong="H4336"\w* Abednego. +\v 23 These \w three|strong="H8532"\w* \w men|strong="H1400"\w*, \w Shadrach|strong="H7715"\w*, \w Meshach|strong="H4336"\w*, \w and|strong="H4336"\w* Abednego, \w fell|strong="H5308"\w* \w down|strong="H5308"\w* \w bound|strong="H3729"\w* \w into|strong="H1459"\w* the middle \w of|strong="H1459"\w* the \w burning|strong="H3345"\w* \w fiery|strong="H5135"\w* furnace. +\p +\v 24 \w Then|strong="H4430"\w* \w Nebuchadnezzar|strong="H5020"\w* \w the|strong="H5020"\w* \w king|strong="H4430"\w* \w was|strong="H4430"\w* astonished \w and|strong="H6032"\w* rose \w up|strong="H6966"\w* \w in|strong="H4430"\w* haste. \w He|strong="H5020"\w* \w spoke|strong="H6032"\w* \w and|strong="H6032"\w* \w said|strong="H6032"\w* \w to|strong="H4430"\w* \w his|strong="H5020"\w* \w counselors|strong="H1907"\w*, “Didn’t \w we|strong="H3068"\w* \w cast|strong="H7412"\w* \w three|strong="H8532"\w* \w men|strong="H1400"\w* \w bound|strong="H3729"\w* \w into|strong="H1459"\w* \w the|strong="H5020"\w* middle \w of|strong="H4430"\w* \w the|strong="H5020"\w* \w fire|strong="H5135"\w*?” +\p \w They|strong="H3809"\w* \w answered|strong="H6032"\w* \w the|strong="H5020"\w* \w king|strong="H4430"\w*, “\w True|strong="H3330"\w*, \w O|strong="H3068"\w* \w king|strong="H4430"\w*.” +\p +\v 25 \w He|strong="H1768"\w* \w answered|strong="H6032"\w*, “\w Look|strong="H1888"\w*, \w I|strong="H1768"\w* \w see|strong="H2370"\w* four \w men|strong="H1400"\w* \w loose|strong="H8271"\w*, \w walking|strong="H1981"\w* \w in|strong="H1981"\w* \w the|strong="H1768"\w* middle \w of|strong="H1247"\w* \w the|strong="H1768"\w* \w fire|strong="H5135"\w*, \w and|strong="H6032"\w* \w they|strong="H1768"\w* \w are|strong="H1768"\w* unharmed. \w The|strong="H1768"\w* \w appearance|strong="H7299"\w* \w of|strong="H1247"\w* \w the|strong="H1768"\w* \w fourth|strong="H7244"\w* \w is|strong="H1768"\w* \w like|strong="H1821"\w* \w a|strong="H3068"\w* \w son|strong="H1247"\w* \w of|strong="H1247"\w* \w the|strong="H1768"\w* gods.\f + \fr 3:25 \ft Or, the Son of God.\f*” +\p +\v 26 \w Then|strong="H1768"\w* \w Nebuchadnezzar|strong="H5020"\w* \w came|strong="H7127"\w* \w near|strong="H7127"\w* \w to|strong="H5312"\w* \w the|strong="H4481"\w* \w mouth|strong="H8651"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w burning|strong="H3345"\w* \w fiery|strong="H5135"\w* furnace. \w He|strong="H1768"\w* \w spoke|strong="H6032"\w* \w and|strong="H6032"\w* \w said|strong="H6032"\w*, “\w Shadrach|strong="H7715"\w*, \w Meshach|strong="H4336"\w*, \w and|strong="H6032"\w* Abednego, \w you|strong="H1768"\w* \w servants|strong="H5649"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w Most|strong="H5943"\w* \w High|strong="H5943"\w* God, \w come|strong="H7127"\w* \w out|strong="H5312"\w*, \w and|strong="H6032"\w* \w come|strong="H7127"\w* \w here|strong="H5312"\w*!” +\p \w Then|strong="H1768"\w* \w Shadrach|strong="H7715"\w*, \w Meshach|strong="H4336"\w*, \w and|strong="H6032"\w* Abednego \w came|strong="H7127"\w* \w out|strong="H5312"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* middle \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w fire|strong="H5135"\w*. +\v 27 \w The|strong="H1768"\w* local \w governors|strong="H6347"\w*, \w the|strong="H1768"\w* deputies, \w and|strong="H4430"\w* \w the|strong="H1768"\w* \w governors|strong="H6347"\w*, \w and|strong="H4430"\w* \w the|strong="H1768"\w* \w king|strong="H4430"\w*’s \w counselors|strong="H1907"\w*, being \w gathered|strong="H3673"\w* \w together|strong="H3673"\w*, \w saw|strong="H2370"\w* these \w men|strong="H1400"\w*, \w that|strong="H1768"\w* \w the|strong="H1768"\w* \w fire|strong="H5135"\w* \w had|strong="H4430"\w* \w no|strong="H3809"\w* \w power|strong="H7981"\w* \w on|strong="H7981"\w* their \w bodies|strong="H1655"\w*. \w The|strong="H1768"\w* \w hair|strong="H8177"\w* \w of|strong="H4430"\w* their \w head|strong="H7217"\w* wasn’t \w singed|strong="H2761"\w*. Their pants weren’t \w changed|strong="H8133"\w*. \w The|strong="H1768"\w* \w smell|strong="H7382"\w* \w of|strong="H4430"\w* \w fire|strong="H5135"\w* wasn’t \w even|strong="H1768"\w* \w on|strong="H7981"\w* them. +\p +\v 28 \w Nebuchadnezzar|strong="H5020"\w* \w spoke|strong="H6032"\w* \w and|strong="H6032"\w* \w said|strong="H6032"\w*, “\w Blessed|strong="H1289"\w* \w be|strong="H3809"\w* \w the|strong="H3606"\w* God \w of|strong="H4430"\w* \w Shadrach|strong="H7715"\w*, \w Meshach|strong="H4336"\w*, \w and|strong="H6032"\w* Abednego, \w who|strong="H1768"\w* \w has|strong="H1768"\w* \w sent|strong="H7972"\w* \w his|strong="H5922"\w* \w angel|strong="H4398"\w* \w and|strong="H6032"\w* \w delivered|strong="H7804"\w* \w his|strong="H5922"\w* \w servants|strong="H5649"\w* \w who|strong="H1768"\w* \w trusted|strong="H7365"\w* \w in|strong="H5922"\w* \w him|strong="H5922"\w*, \w and|strong="H6032"\w* \w have|strong="H5020"\w* \w changed|strong="H8133"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w*’s \w word|strong="H4406"\w*, \w and|strong="H6032"\w* \w have|strong="H5020"\w* \w yielded|strong="H3052"\w* \w their|strong="H3606"\w* \w bodies|strong="H1655"\w*, \w that|strong="H1768"\w* \w they|strong="H3606"\w* might \w not|strong="H3809"\w* \w serve|strong="H6399"\w* \w nor|strong="H3809"\w* \w worship|strong="H5457"\w* \w any|strong="H3606"\w* god \w except|strong="H3861"\w* \w their|strong="H3606"\w* own God. +\v 29 \w Therefore|strong="H3606"\w* \w I|strong="H4481"\w* \w make|strong="H7761"\w* \w a|strong="H3068"\w* \w decree|strong="H2942"\w* \w that|strong="H1768"\w* \w every|strong="H3606"\w* \w people|strong="H5972"\w*, nation, \w and|strong="H4336"\w* \w language|strong="H3961"\w* \w which|strong="H1768"\w* speak anything evil \w against|strong="H5922"\w* \w the|strong="H3606"\w* God \w of|strong="H4481"\w* \w Shadrach|strong="H7715"\w*, \w Meshach|strong="H4336"\w*, \w and|strong="H4336"\w* Abednego \w shall|strong="H3606"\w* \w be|strong="H3809"\w* \w cut|strong="H5648"\w* \w in|strong="H5922"\w* \w pieces|strong="H1917"\w*, \w and|strong="H4336"\w* \w their|strong="H3606"\w* \w houses|strong="H1005"\w* \w shall|strong="H3606"\w* \w be|strong="H3809"\w* \w made|strong="H5648"\w* \w a|strong="H3068"\w* \w dunghill|strong="H5122"\w*, \w because|strong="H6903"\w* \w there|strong="H6903"\w* \w is|strong="H1768"\w* \w no|strong="H3809"\w* other god \w who|strong="H1768"\w* \w is|strong="H1768"\w* \w able|strong="H3202"\w* \w to|strong="H5922"\w* \w deliver|strong="H5338"\w* like \w this|strong="H1836"\w*.” +\p +\v 30 \w Then|strong="H4430"\w* \w the|strong="H4430"\w* \w king|strong="H4430"\w* \w promoted|strong="H6744"\w* \w Shadrach|strong="H7715"\w*, \w Meshach|strong="H4336"\w*, \w and|strong="H4336"\w* Abednego \w in|strong="H4430"\w* \w the|strong="H4430"\w* \w province|strong="H4083"\w* \w of|strong="H4430"\w* Babylon. +\c 4 +\pi1 +\v 1 \w Nebuchadnezzar|strong="H5020"\w* \w the|strong="H5020"\w* king, +\pi1 \w to|strong="H1934"\w* all \w the|strong="H5020"\w* peoples, nations, \w and|strong="H1005"\w* languages, who dwell \w in|strong="H1965"\w* all \w the|strong="H5020"\w* earth: +\pi1 Peace \w be|strong="H1934"\w* multiplied \w to|strong="H1934"\w* you. +\pi1 +\v 2 \w It|strong="H5922"\w* has seemed good \w to|strong="H5922"\w* \w me|strong="H5922"\w* \w to|strong="H5922"\w* show \w the|strong="H5922"\w* signs \w and|strong="H1763"\w* wonders \w that|strong="H1763"\w* \w the|strong="H5922"\w* Most High God has worked \w toward|strong="H5922"\w* \w me|strong="H5922"\w*. +\q1 +\v 3 How great \w are|strong="H1768"\w* \w his|strong="H4481"\w* signs! +\q2 How mighty \w are|strong="H1768"\w* \w his|strong="H4481"\w* wonders! +\q1 \w His|strong="H4481"\w* kingdom \w is|strong="H1768"\w* \w an|strong="H3606"\w* everlasting kingdom. +\q2 \w His|strong="H4481"\w* dominion \w is|strong="H1768"\w* \w from|strong="H4481"\w* generation \w to|strong="H2942"\w* generation. +\pi1 +\v 4 I, Nebuchadnezzar, was at rest \w in|strong="H5954"\w* my house, \w and|strong="H2493"\w* flourishing \w in|strong="H5954"\w* my palace. +\v 5 \w I|strong="H1768"\w* saw \w a|strong="H3068"\w* \w dream|strong="H2493"\w* \w which|strong="H1768"\w* made \w me|strong="H6925"\w* afraid; \w and|strong="H2493"\w* \w the|strong="H6925"\w* thoughts \w on|strong="H5705"\w* \w my|strong="H1768"\w* bed \w and|strong="H2493"\w* \w the|strong="H6925"\w* visions \w of|strong="H1768"\w* \w my|strong="H1768"\w* head troubled \w me|strong="H6925"\w*. +\v 6 \w Therefore|strong="H3606"\w* \w I|strong="H1768"\w* \w made|strong="H3046"\w* \w a|strong="H3068"\w* decree \w to|strong="H3046"\w* bring \w in|strong="H7229"\w* \w all|strong="H3606"\w* \w the|strong="H3606"\w* wise men \w of|strong="H1768"\w* Babylon before me, \w that|strong="H1768"\w* \w they|strong="H3606"\w* might \w make|strong="H3046"\w* \w known|strong="H3046"\w* \w to|strong="H3046"\w* me \w the|strong="H3606"\w* \w interpretation|strong="H6591"\w* \w of|strong="H1768"\w* \w the|strong="H3606"\w* \w dream|strong="H2493"\w*. +\v 7 Then \w the|strong="H5922"\w* magicians, \w the|strong="H5922"\w* enchanters, \w the|strong="H5922"\w* Chaldeans, \w and|strong="H1934"\w* \w the|strong="H5922"\w* soothsayers came \w in|strong="H5922"\w*; \w and|strong="H1934"\w* I told \w them|strong="H5922"\w* \w the|strong="H5922"\w* dream, but they didn’t make \w known|strong="H1934"\w* \w to|strong="H5922"\w* \w me|strong="H5922"\w* its interpretation. +\v 8 \w But|strong="H3606"\w* at last, Daniel \w came|strong="H4291"\w* \w in|strong="H8631"\w* before me, \w whose|strong="H3606"\w* name \w was|strong="H3606"\w* Belteshazzar according \w to|strong="H8065"\w* \w the|strong="H3606"\w* name \w of|strong="H3606"\w* my god, \w and|strong="H8065"\w* \w in|strong="H8631"\w* whom \w is|strong="H3606"\w* \w the|strong="H3606"\w* spirit \w of|strong="H3606"\w* \w the|strong="H3606"\w* holy gods. I told \w the|strong="H3606"\w* dream before him, saying, +\pi1 +\v 9 “Belteshazzar, master \w of|strong="H4481"\w* \w the|strong="H3606"\w* magicians, \w because|strong="H4481"\w* \w I|strong="H4481"\w* know \w that|strong="H3606"\w* \w the|strong="H3606"\w* spirit \w of|strong="H4481"\w* \w the|strong="H3606"\w* holy gods \w is|strong="H3606"\w* \w in|strong="H1753"\w* \w you|strong="H4481"\w* \w and|strong="H8065"\w* \w no|strong="H3606"\w* secret troubles \w you|strong="H4481"\w*, tell \w me|strong="H4481"\w* \w the|strong="H3606"\w* visions \w of|strong="H4481"\w* \w my|strong="H4481"\w* dream \w that|strong="H3606"\w* \w I|strong="H4481"\w* have seen, \w and|strong="H8065"\w* \w its|strong="H4481"\w* interpretation. +\v 10 \w These|strong="H4481"\w* \w were|strong="H1934"\w* \w the|strong="H5922"\w* \w visions|strong="H2376"\w* \w of|strong="H4481"\w* \w my|strong="H5922"\w* \w head|strong="H7217"\w* \w on|strong="H5922"\w* \w my|strong="H5922"\w* \w bed|strong="H4903"\w*: \w I|strong="H4481"\w* \w saw|strong="H2370"\w*, \w and|strong="H8065"\w* behold, \w a|strong="H3068"\w* tree \w in|strong="H5922"\w* \w the|strong="H5922"\w* middle \w of|strong="H4481"\w* \w the|strong="H5922"\w* earth; \w and|strong="H8065"\w* \w its|strong="H4481"\w* height \w was|strong="H1934"\w* great. +\v 11 \w The|strong="H4481"\w* tree grew \w and|strong="H3652"\w* \w was|strong="H2423"\w* strong. \w Its|strong="H7113"\w* height reached \w to|strong="H2429"\w* \w the|strong="H4481"\w* sky \w and|strong="H3652"\w* \w its|strong="H7113"\w* sight \w to|strong="H2429"\w* \w the|strong="H4481"\w* end \w of|strong="H4481"\w* all \w the|strong="H4481"\w* earth. +\v 12 Its leaves \w were|strong="H1768"\w* beautiful, \w and|strong="H6523"\w* it \w had|strong="H1768"\w* much fruit, \w and|strong="H6523"\w* \w in|strong="H2508"\w* it \w was|strong="H2423"\w* food \w for|strong="H1768"\w* all. \w The|strong="H1768"\w* \w animals|strong="H2423"\w* \w of|strong="H2920"\w* \w the|strong="H1768"\w* \w field|strong="H1251"\w* \w had|strong="H1768"\w* shade under it, \w and|strong="H6523"\w* \w the|strong="H1768"\w* birds \w of|strong="H2920"\w* \w the|strong="H1768"\w* \w sky|strong="H8065"\w* lived \w in|strong="H2508"\w* its branches, \w and|strong="H6523"\w* all flesh \w was|strong="H2423"\w* fed \w from|strong="H1768"\w* it. +\pi1 +\v 13 “\w I|strong="H4481"\w* saw \w in|strong="H5922"\w* \w the|strong="H5922"\w* visions \w of|strong="H4481"\w* \w my|strong="H5922"\w* head \w on|strong="H5922"\w* \w my|strong="H5922"\w* bed, \w and|strong="H5732"\w* behold, \w a|strong="H3068"\w* holy watcher \w came|strong="H2423"\w* down \w from|strong="H4481"\w* \w the|strong="H5922"\w* sky. +\v 14 \w He|strong="H1768"\w* cried aloud \w and|strong="H4437"\w* said \w this|strong="H5922"\w*: ‘Cut down \w the|strong="H5922"\w* tree, \w and|strong="H4437"\w* cut off \w its|strong="H3046"\w* branches! Shake off \w its|strong="H3046"\w* leaves \w and|strong="H4437"\w* scatter \w its|strong="H3046"\w* fruit! Let \w the|strong="H5922"\w* animals get away \w from|strong="H1768"\w* under \w it|strong="H5922"\w* \w and|strong="H4437"\w* \w the|strong="H5922"\w* birds \w from|strong="H1768"\w* \w its|strong="H3046"\w* branches. +\v 15 Nevertheless leave \w the|strong="H3606"\w* stump \w of|strong="H4437"\w* \w its|strong="H6591"\w* roots \w in|strong="H4430"\w* \w the|strong="H3606"\w* earth, \w even|strong="H1768"\w* \w with|strong="H6903"\w* \w a|strong="H3068"\w* band \w of|strong="H4437"\w* iron \w and|strong="H4430"\w* bronze, \w in|strong="H4430"\w* \w the|strong="H3606"\w* tender grass \w of|strong="H4437"\w* \w the|strong="H3606"\w* field; \w and|strong="H4430"\w* let it \w be|strong="H3809"\w* wet \w with|strong="H6903"\w* \w the|strong="H3606"\w* dew \w of|strong="H4437"\w* \w the|strong="H3606"\w* sky. Let \w his|strong="H3046"\w* portion \w be|strong="H3809"\w* \w with|strong="H6903"\w* \w the|strong="H3606"\w* animals \w in|strong="H4430"\w* \w the|strong="H3606"\w* grass \w of|strong="H4437"\w* \w the|strong="H3606"\w* earth. +\v 16 Let \w his|strong="H1768"\w* heart \w be|strong="H8160"\w* changed \w from|strong="H1768"\w* man’s, \w and|strong="H6032"\w* let \w an|strong="H4430"\w* animal’s heart \w be|strong="H8160"\w* given \w to|strong="H8036"\w* him. \w Then|strong="H1768"\w* let \w seven|strong="H2298"\w* \w times|strong="H2298"\w* pass over him. +\pi1 +\v 17 “‘\w The|strong="H3606"\w* sentence \w is|strong="H1768"\w* by \w the|strong="H3606"\w* decree \w of|strong="H1768"\w* \w the|strong="H3606"\w* watchers \w and|strong="H8065"\w* \w the|strong="H3606"\w* demand by \w the|strong="H3606"\w* word \w of|strong="H1768"\w* \w the|strong="H3606"\w* holy ones, \w to|strong="H8065"\w* \w the|strong="H3606"\w* intent \w that|strong="H1768"\w* \w the|strong="H3606"\w* living may know \w that|strong="H1768"\w* \w the|strong="H3606"\w* Most High rules \w in|strong="H8631"\w* \w the|strong="H3606"\w* kingdom \w of|strong="H1768"\w* men, \w and|strong="H8065"\w* gives it \w to|strong="H8065"\w* \w whomever|strong="H1768"\w* \w he|strong="H1768"\w* \w will|strong="H1768"\w*, \w and|strong="H8065"\w* sets up over it \w the|strong="H3606"\w* lowest \w of|strong="H1768"\w* men.’ +\pi1 +\v 18 “\w This|strong="H3606"\w* dream I, King Nebuchadnezzar, have seen; \w and|strong="H8065"\w* you, Belteshazzar, declare \w the|strong="H3606"\w* interpretation, \w because|strong="H3606"\w* \w all|strong="H3606"\w* \w the|strong="H3606"\w* wise men \w of|strong="H3606"\w* my kingdom are not able \w to|strong="H8065"\w* make known \w to|strong="H8065"\w* me \w the|strong="H3606"\w* interpretation; \w but|strong="H3606"\w* you are able, \w for|strong="H4203"\w* \w the|strong="H3606"\w* spirit \w of|strong="H3606"\w* \w the|strong="H3606"\w* holy gods \w is|strong="H3606"\w* \w in|strong="H1753"\w* you.” +\pi1 +\v 19 \w Then|strong="H1768"\w* Daniel, \w whose|strong="H1768"\w* name \w was|strong="H4430"\w* Belteshazzar, \w was|strong="H4430"\w* stricken mute \w for|strong="H1768"\w* \w a|strong="H3068"\w* while, \w and|strong="H4430"\w* \w his|strong="H1768"\w* thoughts troubled him. \w The|strong="H1768"\w* \w king|strong="H4430"\w* answered, “Belteshazzar, don’t let \w the|strong="H1768"\w* dream \w or|strong="H4430"\w* \w the|strong="H1768"\w* interpretation, trouble \w you|strong="H1768"\w*.” +\pi1 Belteshazzar answered, “\w My|strong="H4430"\w* lord, may \w the|strong="H1768"\w* dream be \w for|strong="H1768"\w* \w those|strong="H1768"\w* \w who|strong="H1768"\w* hate \w you|strong="H1768"\w*, \w and|strong="H4430"\w* its interpretation \w to|strong="H4430"\w* \w your|strong="H1768"\w* adversaries. +\v 20 \w The|strong="H5922"\w* tree \w that|strong="H1768"\w* \w you|strong="H1768"\w* \w saw|strong="H2370"\w*, \w which|strong="H1768"\w* grew \w and|strong="H4430"\w* \w was|strong="H4430"\w* strong, \w whose|strong="H1768"\w* height reached \w to|strong="H5922"\w* \w the|strong="H5922"\w* \w sky|strong="H8065"\w* \w and|strong="H4430"\w* \w its|strong="H5705"\w* sight \w to|strong="H5922"\w* all \w the|strong="H5922"\w* earth; +\v 21 \w whose|strong="H1768"\w* leaves \w were|strong="H1768"\w* beautiful \w and|strong="H4430"\w* \w its|strong="H6591"\w* fruit plentiful, \w and|strong="H4430"\w* \w in|strong="H5922"\w* \w it|strong="H5922"\w* \w was|strong="H4430"\w* food \w for|strong="H5922"\w* all; under \w which|strong="H1768"\w* \w the|strong="H5922"\w* animals \w of|strong="H4430"\w* \w the|strong="H5922"\w* field lived, \w and|strong="H4430"\w* \w on|strong="H5922"\w* \w whose|strong="H1768"\w* branches \w the|strong="H5922"\w* birds \w of|strong="H4430"\w* \w the|strong="H5922"\w* sky \w had|strong="H4430"\w* their habitation— +\v 22 \w it|strong="H5922"\w* \w is|strong="H1768"\w* \w you|strong="H1768"\w*, \w O|strong="H3068"\w* king, \w that|strong="H1768"\w* \w have|strong="H1934"\w* grown \w and|strong="H4437"\w* become strong; \w for|strong="H5922"\w* \w your|strong="H1768"\w* greatness \w has|strong="H1768"\w* grown, \w and|strong="H4437"\w* reaches \w to|strong="H5922"\w* \w the|strong="H5922"\w* \w sky|strong="H8065"\w*, \w and|strong="H4437"\w* \w your|strong="H1768"\w* dominion \w to|strong="H5922"\w* \w the|strong="H5922"\w* end \w of|strong="H4481"\w* \w the|strong="H5922"\w* earth. +\pi1 +\v 23 “\w Whereas|strong="H1768"\w* \w the|strong="H4481"\w* king saw \w a|strong="H3068"\w* holy watcher coming down \w from|strong="H4481"\w* \w the|strong="H4481"\w* \w sky|strong="H8065"\w* \w and|strong="H4437"\w* saying, ‘Cut down \w the|strong="H4481"\w* tree, \w and|strong="H4437"\w* destroy \w it|strong="H4481"\w*; nevertheless \w leave|strong="H7662"\w* \w the|strong="H4481"\w* \w stump|strong="H6136"\w* \w of|strong="H4481"\w* \w its|strong="H3046"\w* \w roots|strong="H8330"\w* \w in|strong="H4437"\w* \w the|strong="H4481"\w* earth, \w even|strong="H1768"\w* with \w a|strong="H3068"\w* band \w of|strong="H4481"\w* iron \w and|strong="H4437"\w* bronze, \w in|strong="H4437"\w* \w the|strong="H4481"\w* tender grass \w of|strong="H4481"\w* \w the|strong="H4481"\w* field, \w and|strong="H4437"\w* let \w it|strong="H4481"\w* be wet with \w the|strong="H4481"\w* dew \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w sky|strong="H8065"\w*. Let \w his|strong="H4481"\w* portion be with \w the|strong="H4481"\w* animals \w of|strong="H4481"\w* \w the|strong="H4481"\w* field, until seven times pass \w over|strong="H7990"\w* \w him|strong="H4481"\w*.’ +\pi1 +\v 24 “\w This|strong="H5922"\w* is \w the|strong="H5922"\w* interpretation, \w O|strong="H3068"\w* \w king|strong="H4430"\w*, \w and|strong="H4430"\w* \w it|strong="H5922"\w* is \w the|strong="H5922"\w* decree \w of|strong="H4430"\w* \w the|strong="H5922"\w* Most High, which \w has|strong="H4430"\w* come \w on|strong="H5922"\w* \w my|strong="H5922"\w* lord \w the|strong="H5922"\w* \w king|strong="H4430"\w*: +\v 25 \w You|strong="H5922"\w* \w will|strong="H4430"\w* be driven from men \w and|strong="H4430"\w* \w your|strong="H5020"\w* dwelling \w shall|strong="H3606"\w* be \w with|strong="H5922"\w* \w the|strong="H3606"\w* animals \w of|strong="H4430"\w* \w the|strong="H3606"\w* field. \w You|strong="H5922"\w* \w will|strong="H4430"\w* be made \w to|strong="H5922"\w* eat grass \w as|strong="H3606"\w* oxen, \w and|strong="H4430"\w* \w will|strong="H4430"\w* be wet \w with|strong="H5922"\w* \w the|strong="H3606"\w* dew \w of|strong="H4430"\w* \w the|strong="H3606"\w* sky, \w and|strong="H4430"\w* seven times \w shall|strong="H3606"\w* pass \w over|strong="H5922"\w* \w you|strong="H5922"\w*, until \w you|strong="H5922"\w* know \w that|strong="H3606"\w* \w the|strong="H3606"\w* Most High rules \w in|strong="H5922"\w* \w the|strong="H3606"\w* kingdom \w of|strong="H4430"\w* men, \w and|strong="H4430"\w* gives \w it|strong="H5922"\w* \w to|strong="H5922"\w* whomever \w he|strong="H5020"\w* \w will|strong="H4430"\w*. +\v 26 \w Whereas|strong="H1768"\w* \w it|strong="H5922"\w* \w was|strong="H1934"\w* commanded \w to|strong="H5922"\w* leave \w the|strong="H5922"\w* stump \w of|strong="H4437"\w* \w the|strong="H5922"\w* roots \w of|strong="H4437"\w* \w the|strong="H5922"\w* tree, \w your|strong="H1768"\w* \w kingdom|strong="H4437"\w* \w shall|strong="H4437"\w* \w be|strong="H1934"\w* sure \w to|strong="H5922"\w* \w you|strong="H1768"\w* \w after|strong="H7118"\w* \w you|strong="H1768"\w* know \w that|strong="H1768"\w* Heaven rules. +\v 27 Therefore, \w O|strong="H3068"\w* \w king|strong="H4430"\w*, let \w my|strong="H4430"\w* counsel \w be|strong="H3809"\w* acceptable \w to|strong="H4430"\w* \w you|strong="H1768"\w*, \w and|strong="H6032"\w* break off \w your|strong="H1768"\w* sins by righteousness, \w and|strong="H6032"\w* \w your|strong="H1768"\w* iniquities by showing mercy \w to|strong="H4430"\w* \w the|strong="H1768"\w* poor. Perhaps \w there|strong="H1768"\w* may \w be|strong="H3809"\w* \w a|strong="H3068"\w* lengthening \w of|strong="H1005"\w* \w your|strong="H1768"\w* tranquility.” +\pi1 +\v 28 All \w this|strong="H4481"\w* \w came|strong="H5020"\w* on \w the|strong="H4481"\w* \w King|strong="H4430"\w* \w Nebuchadnezzar|strong="H5020"\w*. +\v 29 \w At|strong="H5705"\w* \w the|strong="H5922"\w* end \w of|strong="H4481"\w* twelve months \w he|strong="H1768"\w* \w was|strong="H2423"\w* walking \w in|strong="H5922"\w* \w the|strong="H5922"\w* \w royal|strong="H4437"\w* palace \w of|strong="H4481"\w* Babylon. +\v 30 \w The|strong="H5922"\w* king spoke \w and|strong="H8065"\w* said, “\w Is|strong="H1768"\w* not \w this|strong="H5922"\w* \w great|strong="H7236"\w* Babylon, \w which|strong="H1768"\w* \w I|strong="H4481"\w* \w have|strong="H5020"\w* built \w for|strong="H5922"\w* \w the|strong="H5922"\w* royal dwelling place \w by|strong="H4481"\w* \w the|strong="H5922"\w* might \w of|strong="H4481"\w* \w my|strong="H5922"\w* power \w and|strong="H8065"\w* \w for|strong="H5922"\w* \w the|strong="H5922"\w* glory \w of|strong="H4481"\w* \w my|strong="H5922"\w* majesty?” +\pi1 +\v 31 While \w the|strong="H5922"\w* word \w was|strong="H7985"\w* \w in|strong="H5922"\w* \w the|strong="H5922"\w* king’s mouth, \w a|strong="H3068"\w* voice \w came|strong="H1768"\w* \w from|strong="H1768"\w* \w the|strong="H5922"\w* \w sky|strong="H8065"\w*, saying, “\w O|strong="H3068"\w* King \w Nebuchadnezzar|strong="H5020"\w*, \w to|strong="H5922"\w* \w you|strong="H1768"\w* \w it|strong="H5922"\w* \w is|strong="H1768"\w* spoken: ‘\w The|strong="H5922"\w* \w kingdom|strong="H4437"\w* \w has|strong="H1768"\w* departed \w from|strong="H1768"\w* \w you|strong="H1768"\w*. +\v 32 \w You|strong="H1768"\w* \w shall|strong="H4101"\w* \w be|strong="H3809"\w* driven \w from|strong="H1768"\w* men, \w and|strong="H8065"\w* \w your|strong="H1768"\w* dwelling \w shall|strong="H4101"\w* \w be|strong="H3809"\w* \w with|strong="H5648"\w* \w the|strong="H3606"\w* animals \w of|strong="H1768"\w* \w the|strong="H3606"\w* field. \w You|strong="H1768"\w* \w shall|strong="H4101"\w* \w be|strong="H3809"\w* \w made|strong="H5648"\w* \w to|strong="H2429"\w* eat grass like oxen. Seven times \w shall|strong="H4101"\w* \w pass|strong="H3809"\w* over \w you|strong="H1768"\w*, until \w you|strong="H1768"\w* know \w that|strong="H1768"\w* \w the|strong="H3606"\w* \w Most|strong="H2429"\w* High rules \w in|strong="H1753"\w* \w the|strong="H3606"\w* kingdom \w of|strong="H1768"\w* men, \w and|strong="H8065"\w* gives it \w to|strong="H2429"\w* \w whomever|strong="H1768"\w* \w he|strong="H1768"\w* \w will|strong="H6634"\w*.’” +\pi1 +\v 33 \w This|strong="H5922"\w* \w was|strong="H7238"\w* fulfilled \w the|strong="H5922"\w* same hour \w on|strong="H5922"\w* Nebuchadnezzar. He \w was|strong="H7238"\w* driven \w from|strong="H3367"\w* \w men|strong="H4437"\w* \w and|strong="H4437"\w* ate grass like oxen; \w and|strong="H4437"\w* \w his|strong="H5922"\w* body \w was|strong="H7238"\w* wet \w with|strong="H8421"\w* \w the|strong="H5922"\w* dew \w of|strong="H4437"\w* \w the|strong="H5922"\w* sky until \w his|strong="H5922"\w* hair had grown like eagles’ feathers, \w and|strong="H4437"\w* \w his|strong="H5922"\w* nails like birds’ claws. +\pi1 +\v 34 At \w the|strong="H3606"\w* end \w of|strong="H4430"\w* \w the|strong="H3606"\w* days \w I|strong="H1768"\w*, \w Nebuchadnezzar|strong="H5020"\w*, \w lifted|strong="H5020"\w* \w up|strong="H7313"\w* \w my|strong="H4430"\w* eyes \w to|strong="H3202"\w* \w heaven|strong="H8065"\w*, \w and|strong="H4430"\w* \w my|strong="H4430"\w* understanding returned \w to|strong="H3202"\w* me; \w and|strong="H4430"\w* \w I|strong="H1768"\w* blessed \w the|strong="H3606"\w* Most High, \w and|strong="H4430"\w* \w I|strong="H1768"\w* \w praised|strong="H7624"\w* \w and|strong="H4430"\w* \w honored|strong="H1922"\w* him \w who|strong="H1768"\w* lives forever, +\q1 \w for|strong="H1768"\w* \w his|strong="H3606"\w* dominion \w is|strong="H1768"\w* \w an|strong="H4430"\w* everlasting dominion, +\q2 \w and|strong="H4430"\w* \w his|strong="H3606"\w* kingdom \w from|strong="H1768"\w* generation \w to|strong="H3202"\w* generation. +\q1 +\v 35 All the inhabitants of the earth are reputed as nothing; +\q2 and he does according to his will in the army of heaven, +\q2 and among the inhabitants of the earth; +\q1 and no one can stop his hand, +\q2 or ask him, “What are you doing?” +\pi1 +\v 36 At the same time my understanding returned to me; and for the glory of my kingdom, my majesty and brightness returned to me. My counselors and my lords sought me; and I was established in my kingdom, and excellent greatness was added to me. +\v 37 Now I, Nebuchadnezzar, praise and extol and honor the King of heaven; for all his works are truth, and his ways justice; and those who walk in pride he is able to abase. +\c 5 +\p +\v 1 \w Belshazzar|strong="H1113"\w* \w the|strong="H4430"\w* \w king|strong="H4430"\w* \w made|strong="H5648"\w* \w a|strong="H3068"\w* \w great|strong="H7229"\w* \w feast|strong="H3900"\w* \w to|strong="H4430"\w* \w a|strong="H3068"\w* thousand \w of|strong="H4430"\w* his \w lords|strong="H7261"\w*, \w and|strong="H4430"\w* \w drank|strong="H8355"\w* \w wine|strong="H2562"\w* \w before|strong="H6903"\w* \w the|strong="H4430"\w* thousand. +\v 2 \w Belshazzar|strong="H1113"\w*, while \w he|strong="H1768"\w* tasted \w the|strong="H4481"\w* \w wine|strong="H2562"\w*, \w commanded|strong="H4481"\w* \w that|strong="H1768"\w* \w the|strong="H4481"\w* \w golden|strong="H1722"\w* \w and|strong="H4430"\w* \w silver|strong="H3702"\w* \w vessels|strong="H3984"\w* \w which|strong="H1768"\w* \w Nebuchadnezzar|strong="H5020"\w* \w his|strong="H4481"\w* father \w had|strong="H4430"\w* \w taken|strong="H5312"\w* \w out|strong="H5312"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w temple|strong="H1965"\w* \w which|strong="H1768"\w* \w was|strong="H4430"\w* \w in|strong="H4430"\w* \w Jerusalem|strong="H3390"\w* be \w brought|strong="H5312"\w* \w to|strong="H4481"\w* \w him|strong="H4481"\w*, \w that|strong="H1768"\w* \w the|strong="H4481"\w* \w king|strong="H4430"\w* \w and|strong="H4430"\w* \w his|strong="H4481"\w* \w lords|strong="H7261"\w*, \w his|strong="H4481"\w* \w wives|strong="H7695"\w* \w and|strong="H4430"\w* \w his|strong="H4481"\w* \w concubines|strong="H3904"\w*, \w might|strong="H3904"\w* \w drink|strong="H8355"\w* \w from|strong="H4481"\w* them. +\v 3 \w Then|strong="H1768"\w* \w they|strong="H1768"\w* \w brought|strong="H5312"\w* \w the|strong="H4481"\w* \w golden|strong="H1722"\w* \w vessels|strong="H3984"\w* \w that|strong="H1768"\w* \w were|strong="H1768"\w* \w taken|strong="H5312"\w* \w out|strong="H5312"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w temple|strong="H1005"\w* \w of|strong="H4481"\w* God’s \w house|strong="H1005"\w* \w which|strong="H1768"\w* \w was|strong="H4430"\w* at \w Jerusalem|strong="H3390"\w*; \w and|strong="H4430"\w* \w the|strong="H4481"\w* \w king|strong="H4430"\w* \w and|strong="H4430"\w* \w his|strong="H4481"\w* \w lords|strong="H7261"\w*, \w his|strong="H4481"\w* \w wives|strong="H7695"\w* \w and|strong="H4430"\w* \w his|strong="H4481"\w* \w concubines|strong="H3904"\w*, \w drank|strong="H8355"\w* \w from|strong="H4481"\w* them. +\v 4 They \w drank|strong="H8355"\w* \w wine|strong="H2562"\w*, \w and|strong="H6523"\w* \w praised|strong="H7624"\w* \w the|strong="H7624"\w* gods of \w gold|strong="H1722"\w*, \w and|strong="H6523"\w* of \w silver|strong="H3702"\w*, of \w bronze|strong="H5174"\w*, of \w iron|strong="H6523"\w*, of wood, \w and|strong="H6523"\w* of stone. +\p +\v 5 \w In|strong="H5922"\w* \w the|strong="H5922"\w* same \w hour|strong="H8160"\w*, \w the|strong="H5922"\w* fingers \w of|strong="H4430"\w* \w a|strong="H3068"\w* man’s \w hand|strong="H3028"\w* \w came|strong="H1768"\w* \w out|strong="H5312"\w* \w and|strong="H4430"\w* \w wrote|strong="H3790"\w* near \w the|strong="H5922"\w* lamp stand \w on|strong="H5922"\w* \w the|strong="H5922"\w* \w plaster|strong="H1528"\w* \w of|strong="H4430"\w* \w the|strong="H5922"\w* \w wall|strong="H3797"\w* \w of|strong="H4430"\w* \w the|strong="H5922"\w* \w king|strong="H4430"\w*’s \w palace|strong="H1965"\w*. \w The|strong="H5922"\w* \w king|strong="H4430"\w* \w saw|strong="H2370"\w* \w the|strong="H5922"\w* \w part|strong="H6447"\w* \w of|strong="H4430"\w* \w the|strong="H5922"\w* \w hand|strong="H3028"\w* \w that|strong="H1768"\w* \w wrote|strong="H3790"\w*. +\v 6 \w Then|strong="H4430"\w* \w the|strong="H4430"\w* \w king|strong="H4430"\w*’s \w face|strong="H2122"\w* \w was|strong="H4430"\w* \w changed|strong="H8133"\w* \w in|strong="H8133"\w* him, \w and|strong="H4430"\w* his \w thoughts|strong="H7476"\w* troubled him; \w and|strong="H4430"\w* \w the|strong="H4430"\w* \w joints|strong="H7001"\w* \w of|strong="H4430"\w* his thighs \w were|strong="H2783"\w* loosened, \w and|strong="H4430"\w* his knees struck \w one|strong="H1668"\w* \w against|strong="H1668"\w* \w another|strong="H1668"\w*. +\p +\v 7 \w The|strong="H3606"\w* \w king|strong="H4430"\w* \w cried|strong="H7123"\w* \w aloud|strong="H2429"\w* \w to|strong="H5922"\w* \w bring|strong="H5954"\w* \w in|strong="H5954"\w* \w the|strong="H3606"\w* enchanters, \w the|strong="H3606"\w* \w Chaldeans|strong="H3779"\w*, \w and|strong="H6032"\w* \w the|strong="H3606"\w* \w soothsayers|strong="H1505"\w*. \w The|strong="H3606"\w* \w king|strong="H4430"\w* \w spoke|strong="H6032"\w* \w and|strong="H6032"\w* \w said|strong="H6032"\w* \w to|strong="H5922"\w* \w the|strong="H3606"\w* \w wise|strong="H2445"\w* \w men|strong="H2445"\w* \w of|strong="H4437"\w* Babylon, “Whoever reads \w this|strong="H1836"\w* \w writing|strong="H3792"\w* \w and|strong="H6032"\w* shows \w me|strong="H5922"\w* \w its|strong="H6591"\w* \w interpretation|strong="H6591"\w* \w shall|strong="H4437"\w* be \w clothed|strong="H3848"\w* \w with|strong="H3848"\w* purple, \w and|strong="H6032"\w* \w have|strong="H7981"\w* \w a|strong="H3068"\w* \w chain|strong="H2002"\w* \w of|strong="H4437"\w* \w gold|strong="H1722"\w* \w about|strong="H5922"\w* \w his|strong="H5922"\w* \w neck|strong="H6676"\w*, \w and|strong="H6032"\w* \w shall|strong="H4437"\w* be \w the|strong="H3606"\w* \w third|strong="H8523"\w* \w ruler|strong="H7981"\w* \w in|strong="H5954"\w* \w the|strong="H3606"\w* \w kingdom|strong="H4437"\w*.” +\p +\v 8 \w Then|strong="H4430"\w* \w all|strong="H3606"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w*’s \w wise|strong="H2445"\w* \w men|strong="H2445"\w* \w came|strong="H5954"\w* \w in|strong="H5954"\w*; \w but|strong="H3606"\w* \w they|strong="H3606"\w* \w could|strong="H3546"\w* \w not|strong="H3809"\w* \w read|strong="H7123"\w* \w the|strong="H3606"\w* \w writing|strong="H3792"\w*, \w and|strong="H4430"\w* couldn’t \w make|strong="H3046"\w* \w known|strong="H3046"\w* \w to|strong="H3046"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w* \w the|strong="H3606"\w* \w interpretation|strong="H6591"\w*. +\v 9 \w Then|strong="H4430"\w* \w King|strong="H4430"\w* \w Belshazzar|strong="H1113"\w* \w was|strong="H4430"\w* \w greatly|strong="H7690"\w* troubled, \w and|strong="H4430"\w* \w his|strong="H5922"\w* \w face|strong="H2122"\w* \w was|strong="H4430"\w* \w changed|strong="H8133"\w* \w in|strong="H5922"\w* \w him|strong="H5922"\w*, \w and|strong="H4430"\w* \w his|strong="H5922"\w* \w lords|strong="H7261"\w* \w were|strong="H7261"\w* \w perplexed|strong="H7672"\w*. +\p +\v 10 \w The|strong="H4430"\w* \w queen|strong="H4433"\w* by \w reason|strong="H6903"\w* \w of|strong="H1005"\w* \w the|strong="H4430"\w* \w words|strong="H4406"\w* \w of|strong="H1005"\w* \w the|strong="H4430"\w* \w king|strong="H4430"\w* \w and|strong="H6032"\w* \w his|strong="H5954"\w* \w lords|strong="H7261"\w* \w came|strong="H5954"\w* \w into|strong="H5954"\w* \w the|strong="H4430"\w* \w banquet|strong="H4961"\w* \w house|strong="H1005"\w*. \w The|strong="H4430"\w* \w queen|strong="H4433"\w* \w spoke|strong="H6032"\w* \w and|strong="H6032"\w* \w said|strong="H6032"\w*, “\w O|strong="H3068"\w* \w king|strong="H4430"\w*, \w live|strong="H2418"\w* \w forever|strong="H5957"\w*; don’t let your \w thoughts|strong="H7476"\w* trouble \w you|strong="H6903"\w*, nor let your \w face|strong="H2122"\w* \w be|strong="H2122"\w* \w changed|strong="H8133"\w*. +\v 11 \w There|strong="H1768"\w* \w is|strong="H1768"\w* \w a|strong="H3068"\w* \w man|strong="H1400"\w* \w in|strong="H4430"\w* \w your|strong="H1768"\w* \w kingdom|strong="H4437"\w* \w in|strong="H4430"\w* \w whom|strong="H1768"\w* \w is|strong="H1768"\w* \w the|strong="H5020"\w* \w spirit|strong="H7308"\w* \w of|strong="H4437"\w* \w the|strong="H5020"\w* \w holy|strong="H6922"\w* gods; \w and|strong="H4430"\w* \w in|strong="H4430"\w* \w the|strong="H5020"\w* \w days|strong="H3118"\w* \w of|strong="H4437"\w* \w your|strong="H1768"\w* father, \w light|strong="H5094"\w* \w and|strong="H4430"\w* \w understanding|strong="H7924"\w* \w and|strong="H4430"\w* \w wisdom|strong="H2452"\w*, like \w the|strong="H5020"\w* \w wisdom|strong="H2452"\w* \w of|strong="H4437"\w* \w the|strong="H5020"\w* gods, \w were|strong="H1400"\w* \w found|strong="H7912"\w* \w in|strong="H4430"\w* \w him|strong="H6966"\w*. \w The|strong="H5020"\w* \w king|strong="H4430"\w*, \w Nebuchadnezzar|strong="H5020"\w*, \w your|strong="H1768"\w* father—yes, \w the|strong="H5020"\w* \w king|strong="H4430"\w*, \w your|strong="H1768"\w* father—\w made|strong="H6966"\w* \w him|strong="H6966"\w* \w master|strong="H7229"\w* \w of|strong="H4437"\w* \w the|strong="H5020"\w* \w magicians|strong="H2749"\w*, enchanters, \w Chaldeans|strong="H3779"\w*, \w and|strong="H4430"\w* \w soothsayers|strong="H1505"\w*, +\v 12 \w because|strong="H6903"\w* \w an|strong="H4430"\w* \w excellent|strong="H3493"\w* \w spirit|strong="H7308"\w*, \w knowledge|strong="H4486"\w*, \w understanding|strong="H7924"\w*, \w interpreting|strong="H6590"\w* \w of|strong="H4430"\w* \w dreams|strong="H2493"\w*, showing \w of|strong="H4430"\w* dark sentences, \w and|strong="H4430"\w* \w dissolving|strong="H8271"\w* \w of|strong="H4430"\w* \w doubts|strong="H7001"\w* \w were|strong="H1768"\w* \w found|strong="H7912"\w* \w in|strong="H4430"\w* \w the|strong="H3606"\w* same \w Daniel|strong="H1841"\w*, \w whom|strong="H1768"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w* \w named|strong="H8036"\w* \w Belteshazzar|strong="H1096"\w*. \w Now|strong="H3705"\w* \w let|strong="H3705"\w* \w Daniel|strong="H1841"\w* \w be|strong="H1841"\w* \w called|strong="H7123"\w*, \w and|strong="H4430"\w* \w he|strong="H1768"\w* \w will|strong="H1768"\w* show \w the|strong="H3606"\w* \w interpretation|strong="H6591"\w*.” +\p +\v 13 \w Then|strong="H1768"\w* \w Daniel|strong="H1841"\w* \w was|strong="H1841"\w* \w brought|strong="H5954"\w* \w in|strong="H5954"\w* \w before|strong="H6925"\w* \w the|strong="H4481"\w* \w king|strong="H4430"\w*. \w The|strong="H4481"\w* \w king|strong="H4430"\w* \w spoke|strong="H6032"\w* \w and|strong="H6032"\w* \w said|strong="H6032"\w* \w to|strong="H6925"\w* \w Daniel|strong="H1841"\w*, “\w Are|strong="H1768"\w* \w you|strong="H1768"\w* \w that|strong="H1768"\w* \w Daniel|strong="H1841"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w children|strong="H1123"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w captivity|strong="H1547"\w* \w of|strong="H4481"\w* \w Judah|strong="H3061"\w*, \w whom|strong="H1768"\w* \w the|strong="H4481"\w* \w king|strong="H4430"\w* \w my|strong="H4430"\w* father \w brought|strong="H5954"\w* out \w of|strong="H4481"\w* \w Judah|strong="H3061"\w*? +\v 14 \w I|strong="H1768"\w* \w have|strong="H1768"\w* \w heard|strong="H8086"\w* \w of|strong="H5922"\w* \w you|strong="H1768"\w*, \w that|strong="H1768"\w* \w the|strong="H5922"\w* \w spirit|strong="H7308"\w* \w of|strong="H5922"\w* \w the|strong="H5922"\w* gods \w is|strong="H1768"\w* \w in|strong="H5922"\w* \w you|strong="H1768"\w* \w and|strong="H2452"\w* \w that|strong="H1768"\w* \w light|strong="H5094"\w*, \w understanding|strong="H7924"\w*, \w and|strong="H2452"\w* \w excellent|strong="H3493"\w* \w wisdom|strong="H2452"\w* \w are|strong="H1768"\w* \w found|strong="H7912"\w* \w in|strong="H5922"\w* \w you|strong="H1768"\w*. +\v 15 \w Now|strong="H3705"\w* \w the|strong="H6925"\w* \w wise|strong="H2445"\w* \w men|strong="H2445"\w*, \w the|strong="H6925"\w* enchanters, \w have|strong="H1768"\w* been \w brought|strong="H5954"\w* \w in|strong="H5954"\w* \w before|strong="H6925"\w* \w me|strong="H6925"\w*, \w that|strong="H1768"\w* \w they|strong="H1768"\w* should \w read|strong="H7123"\w* \w this|strong="H1836"\w* \w writing|strong="H3792"\w*, \w and|strong="H3792"\w* \w make|strong="H3046"\w* \w known|strong="H3046"\w* \w to|strong="H6925"\w* \w me|strong="H6925"\w* \w its|strong="H6591"\w* \w interpretation|strong="H6591"\w*; \w but|strong="H1768"\w* \w they|strong="H1768"\w* \w could|strong="H3546"\w* \w not|strong="H3809"\w* show \w the|strong="H6925"\w* \w interpretation|strong="H6591"\w* \w of|strong="H2445"\w* \w the|strong="H6925"\w* \w thing|strong="H4406"\w*. +\v 16 \w But|strong="H1768"\w* \w I|strong="H1768"\w* \w have|strong="H7981"\w* \w heard|strong="H8086"\w* \w of|strong="H4437"\w* \w you|strong="H1768"\w*, \w that|strong="H1768"\w* \w you|strong="H1768"\w* \w can|strong="H3202"\w* \w give|strong="H6590"\w* \w interpretations|strong="H6590"\w* \w and|strong="H1722"\w* \w dissolve|strong="H8271"\w* \w doubts|strong="H7001"\w*. \w Now|strong="H3705"\w* \w if|strong="H2006"\w* \w you|strong="H1768"\w* \w can|strong="H3202"\w* \w read|strong="H7123"\w* \w the|strong="H5922"\w* \w writing|strong="H3792"\w* \w and|strong="H1722"\w* \w make|strong="H3046"\w* \w known|strong="H3046"\w* \w to|strong="H5922"\w* \w me|strong="H5922"\w* \w its|strong="H6591"\w* \w interpretation|strong="H6591"\w*, \w you|strong="H1768"\w* \w shall|strong="H4437"\w* \w be|strong="H3705"\w* \w clothed|strong="H3848"\w* \w with|strong="H3848"\w* purple, \w and|strong="H1722"\w* \w have|strong="H7981"\w* \w a|strong="H3068"\w* \w chain|strong="H2002"\w* \w of|strong="H4437"\w* \w gold|strong="H1722"\w* \w around|strong="H5922"\w* \w your|strong="H1768"\w* \w neck|strong="H6676"\w*, \w and|strong="H1722"\w* \w shall|strong="H4437"\w* \w be|strong="H3705"\w* \w the|strong="H5922"\w* \w third|strong="H8531"\w* \w ruler|strong="H7981"\w* \w in|strong="H5922"\w* \w the|strong="H5922"\w* \w kingdom|strong="H4437"\w*.” +\p +\v 17 \w Then|strong="H4430"\w* \w Daniel|strong="H1841"\w* \w answered|strong="H6032"\w* \w before|strong="H6925"\w* \w the|strong="H6925"\w* \w king|strong="H4430"\w*, “Let \w your|strong="H3052"\w* \w gifts|strong="H4978"\w* \w be|strong="H1934"\w* \w to|strong="H6925"\w* yourself, \w and|strong="H6032"\w* \w give|strong="H3052"\w* \w your|strong="H3052"\w* \w rewards|strong="H5023"\w* \w to|strong="H6925"\w* another. \w Nevertheless|strong="H1297"\w*, I \w will|strong="H4430"\w* \w read|strong="H7123"\w* \w the|strong="H6925"\w* \w writing|strong="H3792"\w* \w to|strong="H6925"\w* \w the|strong="H6925"\w* \w king|strong="H4430"\w*, \w and|strong="H6032"\w* \w make|strong="H3046"\w* \w known|strong="H3046"\w* \w to|strong="H6925"\w* \w him|strong="H6925"\w* \w the|strong="H6925"\w* \w interpretation|strong="H6591"\w*. +\p +\v 18 “\w To|strong="H4430"\w* you, \w king|strong="H4430"\w*, \w the|strong="H5020"\w* \w Most|strong="H5943"\w* \w High|strong="H5943"\w* God \w gave|strong="H3052"\w* \w Nebuchadnezzar|strong="H5020"\w* \w your|strong="H5020"\w* father \w the|strong="H5020"\w* \w kingdom|strong="H4437"\w*, \w and|strong="H4430"\w* \w greatness|strong="H7238"\w*, \w and|strong="H4430"\w* \w glory|strong="H3367"\w*, \w and|strong="H4430"\w* \w majesty|strong="H7238"\w*. +\v 19 \w Because|strong="H4481"\w* \w of|strong="H4481"\w* \w the|strong="H3606"\w* \w greatness|strong="H7238"\w* \w that|strong="H1768"\w* \w he|strong="H1768"\w* \w gave|strong="H3052"\w* \w him|strong="H4481"\w*, \w all|strong="H3606"\w* \w the|strong="H3606"\w* \w peoples|strong="H5972"\w*, nations, \w and|strong="H1763"\w* \w languages|strong="H3961"\w* \w trembled|strong="H1934"\w* \w and|strong="H1763"\w* \w feared|strong="H1763"\w* \w before|strong="H6925"\w* \w him|strong="H4481"\w*. \w He|strong="H1768"\w* \w killed|strong="H6992"\w* \w whom|strong="H1768"\w* \w he|strong="H1768"\w* wanted \w to|strong="H6925"\w*, \w and|strong="H1763"\w* \w he|strong="H1768"\w* \w kept|strong="H1934"\w* \w alive|strong="H2418"\w* \w whom|strong="H1768"\w* \w he|strong="H1768"\w* wanted \w to|strong="H6925"\w*. \w He|strong="H1768"\w* raised \w up|strong="H7313"\w* \w whom|strong="H1768"\w* \w he|strong="H1768"\w* wanted \w to|strong="H6925"\w*, \w and|strong="H1763"\w* \w he|strong="H1768"\w* put \w down|strong="H1934"\w* \w whom|strong="H1768"\w* \w he|strong="H1768"\w* wanted \w to|strong="H6925"\w*. +\v 20 \w But|strong="H1768"\w* \w when|strong="H1768"\w* \w his|strong="H4481"\w* \w heart|strong="H3825"\w* \w was|strong="H3825"\w* \w lifted|strong="H7313"\w* \w up|strong="H7313"\w*, \w and|strong="H4437"\w* \w his|strong="H4481"\w* \w spirit|strong="H7308"\w* \w was|strong="H3825"\w* \w hardened|strong="H8631"\w* \w so|strong="H1768"\w* \w that|strong="H1768"\w* \w he|strong="H1768"\w* dealt proudly, \w he|strong="H1768"\w* \w was|strong="H3825"\w* \w deposed|strong="H5182"\w* \w from|strong="H4481"\w* \w his|strong="H4481"\w* \w kingly|strong="H4437"\w* \w throne|strong="H3764"\w*, \w and|strong="H4437"\w* \w they|strong="H1768"\w* \w took|strong="H5709"\w* \w his|strong="H4481"\w* \w glory|strong="H3367"\w* \w from|strong="H4481"\w* \w him|strong="H4481"\w*. +\v 21 \w He|strong="H1768"\w* \w was|strong="H1655"\w* \w driven|strong="H2957"\w* \w from|strong="H4481"\w* \w the|strong="H5922"\w* \w sons|strong="H1123"\w* \w of|strong="H4481"\w* \w men|strong="H4437"\w*, \w and|strong="H8065"\w* \w his|strong="H5922"\w* \w heart|strong="H3825"\w* \w was|strong="H1655"\w* \w made|strong="H3046"\w* \w like|strong="H2939"\w* \w the|strong="H5922"\w* \w animals|strong="H2423"\w*’, \w and|strong="H8065"\w* \w his|strong="H5922"\w* \w dwelling|strong="H4070"\w* \w was|strong="H1655"\w* \w with|strong="H5974"\w* \w the|strong="H5922"\w* \w wild|strong="H6167"\w* \w donkeys|strong="H6167"\w*. \w He|strong="H1768"\w* \w was|strong="H1655"\w* \w fed|strong="H2939"\w* \w with|strong="H5974"\w* \w grass|strong="H6211"\w* \w like|strong="H2939"\w* \w oxen|strong="H8450"\w*, \w and|strong="H8065"\w* \w his|strong="H5922"\w* \w body|strong="H1655"\w* \w was|strong="H1655"\w* \w wet|strong="H6647"\w* \w with|strong="H5974"\w* \w the|strong="H5922"\w* \w dew|strong="H2920"\w* \w of|strong="H4481"\w* \w the|strong="H5922"\w* \w sky|strong="H8065"\w*, \w until|strong="H5705"\w* \w he|strong="H1768"\w* \w knew|strong="H3046"\w* \w that|strong="H1768"\w* \w the|strong="H5922"\w* \w Most|strong="H5943"\w* \w High|strong="H5943"\w* God \w rules|strong="H7990"\w* \w in|strong="H5922"\w* \w the|strong="H5922"\w* \w kingdom|strong="H4437"\w* \w of|strong="H4481"\w* \w men|strong="H4437"\w*, \w and|strong="H8065"\w* \w that|strong="H1768"\w* \w he|strong="H1768"\w* \w sets|strong="H6966"\w* \w up|strong="H6966"\w* \w over|strong="H5922"\w* \w it|strong="H5922"\w* \w whomever|strong="H1768"\w* \w he|strong="H1768"\w* \w will|strong="H6634"\w*. +\p +\v 22 “\w You|strong="H1768"\w*, \w his|strong="H1768"\w* \w son|strong="H1247"\w*, \w Belshazzar|strong="H1113"\w*, \w have|strong="H1768"\w* \w not|strong="H3809"\w* \w humbled|strong="H8214"\w* \w your|strong="H1768"\w* \w heart|strong="H3825"\w*, \w though|strong="H6903"\w* \w you|strong="H1768"\w* \w knew|strong="H3046"\w* \w all|strong="H3606"\w* \w this|strong="H1836"\w*, +\v 23 \w but|strong="H1768"\w* \w have|strong="H1768"\w* \w lifted|strong="H7313"\w* \w up|strong="H7313"\w* \w yourself|strong="H7313"\w* \w against|strong="H5922"\w* \w the|strong="H3606"\w* \w Lord|strong="H4756"\w* \w of|strong="H1005"\w* \w heaven|strong="H8065"\w*; \w and|strong="H6523"\w* \w they|strong="H3606"\w* \w have|strong="H1768"\w* brought \w the|strong="H3606"\w* \w vessels|strong="H3984"\w* \w of|strong="H1005"\w* \w his|strong="H5922"\w* \w house|strong="H1005"\w* \w before|strong="H6925"\w* \w you|strong="H1768"\w*, \w and|strong="H6523"\w* \w you|strong="H1768"\w* \w and|strong="H6523"\w* \w your|strong="H1768"\w* \w lords|strong="H7261"\w*, \w your|strong="H1768"\w* \w wives|strong="H7695"\w*, \w and|strong="H6523"\w* \w your|strong="H1768"\w* \w concubines|strong="H3904"\w*, \w have|strong="H1768"\w* \w drunk|strong="H8355"\w* \w wine|strong="H2562"\w* \w from|strong="H1768"\w* \w them|strong="H5922"\w*. \w You|strong="H1768"\w* \w have|strong="H1768"\w* \w praised|strong="H7624"\w* \w the|strong="H3606"\w* gods \w of|strong="H1005"\w* \w silver|strong="H3702"\w* \w and|strong="H6523"\w* \w gold|strong="H1722"\w*, \w of|strong="H1005"\w* \w bronze|strong="H5174"\w*, \w iron|strong="H6523"\w*, wood, \w and|strong="H6523"\w* stone, \w which|strong="H1768"\w* don’t \w see|strong="H2370"\w*, \w or|strong="H3809"\w* \w hear|strong="H8086"\w*, \w or|strong="H3809"\w* \w know|strong="H3046"\w*; \w and|strong="H6523"\w* \w you|strong="H1768"\w* \w have|strong="H1768"\w* \w not|strong="H3809"\w* \w glorified|strong="H1922"\w* \w the|strong="H3606"\w* God \w in|strong="H5922"\w* \w whose|strong="H1768"\w* \w hand|strong="H3028"\w* \w your|strong="H1768"\w* \w breath|strong="H5396"\w* \w is|strong="H1768"\w*, \w and|strong="H6523"\w* \w whose|strong="H1768"\w* \w are|strong="H1768"\w* \w all|strong="H3606"\w* \w your|strong="H1768"\w* ways. +\v 24 \w Then|strong="H1768"\w* \w the|strong="H4481"\w* \w part|strong="H4481"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w hand|strong="H3028"\w* \w was|strong="H3792"\w* \w sent|strong="H7972"\w* \w from|strong="H4481"\w* \w before|strong="H6925"\w* \w him|strong="H4481"\w*, \w and|strong="H3792"\w* \w this|strong="H1836"\w* \w writing|strong="H3792"\w* \w was|strong="H3792"\w* inscribed. +\p +\v 25 “\w This|strong="H1836"\w* \w is|strong="H1768"\w* \w the|strong="H1768"\w* \w writing|strong="H3792"\w* \w that|strong="H1768"\w* \w was|strong="H3792"\w* inscribed: ‘\w MENE|strong="H4484"\w*, \w MENE|strong="H4484"\w*, \w TEKEL|strong="H8625"\w*, \w UPHARSIN|strong="H6537"\w*.’ +\p +\v 26 “\w This|strong="H1836"\w* \w is|strong="H4406"\w* \w the|strong="H1836"\w* \w interpretation|strong="H6591"\w* \w of|strong="H4437"\w* \w the|strong="H1836"\w* \w thing|strong="H4406"\w*: +\m \w MENE|strong="H4484"\w*: God \w has|strong="H4437"\w* counted \w your|strong="H4483"\w* \w kingdom|strong="H4437"\w*, \w and|strong="H4437"\w* brought it \w to|strong="H4483"\w* \w an|strong="H4437"\w* \w end|strong="H8000"\w*. +\m +\v 27 \w TEKEL|strong="H8625"\w*: you are \w weighed|strong="H8625"\w* \w in|strong="H7912"\w* the \w balances|strong="H3977"\w*, \w and|strong="H3977"\w* are \w found|strong="H7912"\w* \w wanting|strong="H2627"\w*. +\m +\v 28 \w PERES|strong="H6537"\w*: \w your|strong="H3052"\w* \w kingdom|strong="H4437"\w* \w is|strong="H4437"\w* \w divided|strong="H6537"\w*, \w and|strong="H4076"\w* \w given|strong="H3052"\w* \w to|strong="H3052"\w* \w the|strong="H3052"\w* \w Medes|strong="H4076"\w* \w and|strong="H4076"\w* \w Persians|strong="H6540"\w*.” +\p +\v 29 \w Then|strong="H1768"\w* \w Belshazzar|strong="H1113"\w* commanded, \w and|strong="H1722"\w* \w they|strong="H1768"\w* \w clothed|strong="H3848"\w* \w Daniel|strong="H1841"\w* \w with|strong="H3848"\w* purple, \w and|strong="H1722"\w* put \w a|strong="H3068"\w* \w chain|strong="H2002"\w* \w of|strong="H4437"\w* \w gold|strong="H1722"\w* \w about|strong="H5922"\w* \w his|strong="H5922"\w* \w neck|strong="H6676"\w*, \w and|strong="H1722"\w* made \w proclamation|strong="H3745"\w* \w concerning|strong="H5922"\w* \w him|strong="H5922"\w*, \w that|strong="H1768"\w* \w he|strong="H1768"\w* should \w be|strong="H1934"\w* \w the|strong="H5922"\w* \w third|strong="H8531"\w* \w ruler|strong="H7990"\w* \w in|strong="H5922"\w* \w the|strong="H5922"\w* \w kingdom|strong="H4437"\w*. +\p +\v 30 \w In|strong="H4430"\w* \w that|strong="H4430"\w* \w night|strong="H3916"\w* \w Belshazzar|strong="H1113"\w* \w the|strong="H4430"\w* \w Chaldean|strong="H3779"\w* \w King|strong="H4430"\w* \w was|strong="H4430"\w* \w slain|strong="H6992"\w*. +\v 31 Darius the Mede received the kingdom, being about sixty-two years old. +\c 6 +\p +\v 1 It pleased \w Darius|strong="H1868"\w* \w to|strong="H1868"\w* set over \w the|strong="H1868"\w* \w kingdom|strong="H4437"\w* one hundred twenty local governors, who should be throughout \w the|strong="H1868"\w* whole \w kingdom|strong="H4437"\w*; +\v 2 \w and|strong="H4437"\w* \w over|strong="H5922"\w* \w them|strong="H5922"\w* three presidents, \w of|strong="H4437"\w* \w whom|strong="H1768"\w* Daniel \w was|strong="H1934"\w* one, \w that|strong="H1768"\w* these local governors \w might|strong="H1934"\w* give \w account|strong="H5922"\w* \w to|strong="H5922"\w* \w them|strong="H5922"\w*, \w and|strong="H4437"\w* \w that|strong="H1768"\w* \w the|strong="H3606"\w* king should suffer \w no|strong="H3606"\w* loss. +\v 3 \w Then|strong="H1768"\w* \w this|strong="H4481"\w* \w Daniel|strong="H1841"\w* \w was|strong="H1934"\w* distinguished above \w the|strong="H4481"\w* \w presidents|strong="H5632"\w* \w and|strong="H4430"\w* \w the|strong="H4481"\w* local governors, \w because|strong="H4481"\w* \w an|strong="H4430"\w* excellent spirit \w was|strong="H1934"\w* \w in|strong="H4430"\w* \w him|strong="H4481"\w*; \w and|strong="H4430"\w* \w the|strong="H4481"\w* \w king|strong="H4430"\w* thought \w to|strong="H4481"\w* set \w him|strong="H4481"\w* \w over|strong="H5924"\w* \w the|strong="H4481"\w* whole realm. +\p +\v 4 \w Then|strong="H6903"\w* \w the|strong="H3606"\w* \w presidents|strong="H5632"\w* \w and|strong="H4430"\w* \w the|strong="H3606"\w* local governors \w sought|strong="H1934"\w* \w to|strong="H5922"\w* find occasion \w against|strong="H5922"\w* \w Daniel|strong="H1841"\w* \w as|strong="H3606"\w* touching \w the|strong="H3606"\w* \w kingdom|strong="H4437"\w*; \w but|strong="H1768"\w* \w they|strong="H3606"\w* \w could|strong="H1768"\w* find \w no|strong="H3606"\w* occasion \w or|strong="H4430"\w* fault, \w because|strong="H6903"\w* \w he|strong="H1768"\w* \w was|strong="H1934"\w* faithful. \w There|strong="H6903"\w* wasn’t \w any|strong="H3606"\w* error \w or|strong="H4430"\w* fault found \w in|strong="H5922"\w* \w him|strong="H5922"\w*. +\v 5 \w Then|strong="H6903"\w* these \w men|strong="H4437"\w* said, “\w We|strong="H1768"\w* won’t \w find|strong="H7912"\w* \w any|strong="H3606"\w* \w occasion|strong="H5931"\w* \w against|strong="H5922"\w* \w this|strong="H1932"\w* \w Daniel|strong="H1841"\w*, unless \w we|strong="H3068"\w* \w find|strong="H7912"\w* \w it|strong="H5922"\w* \w against|strong="H5922"\w* \w him|strong="H5922"\w* \w concerning|strong="H5922"\w* \w the|strong="H3606"\w* law \w of|strong="H4437"\w* \w his|strong="H5922"\w* God.” +\p +\v 6 \w Then|strong="H1768"\w* \w these|strong="H1836"\w* presidents \w and|strong="H1841"\w* local governors assembled together \w to|strong="H5922"\w* \w the|strong="H3606"\w* king, \w and|strong="H1841"\w* said \w this|strong="H1836"\w* \w to|strong="H5922"\w* \w him|strong="H5922"\w*, “King Darius, live forever! +\v 7 \w All|strong="H5957"\w* \w the|strong="H5922"\w* \w presidents|strong="H5632"\w* \w of|strong="H4430"\w* \w the|strong="H5922"\w* kingdom, \w the|strong="H5922"\w* deputies \w and|strong="H4430"\w* \w the|strong="H5922"\w* local governors, \w the|strong="H5922"\w* counselors \w and|strong="H4430"\w* \w the|strong="H5922"\w* governors, \w have|strong="H1868"\w* consulted \w together|strong="H7284"\w* \w to|strong="H5922"\w* establish \w a|strong="H3068"\w* \w royal|strong="H4430"\w* statute \w and|strong="H4430"\w* \w to|strong="H5922"\w* make \w a|strong="H3068"\w* strong decree, \w that|strong="H5922"\w* whoever asks \w a|strong="H3068"\w* petition \w of|strong="H4430"\w* any god \w or|strong="H4430"\w* man \w for|strong="H5922"\w* thirty days, except \w of|strong="H4430"\w* \w you|strong="H5922"\w*, \w O|strong="H3068"\w* \w king|strong="H4430"\w*, \w he|strong="H3652"\w* shall \w be|strong="H5957"\w* cast into \w the|strong="H5922"\w* den \w of|strong="H4430"\w* lions. +\v 8 \w Now|strong="H4430"\w*, \w O|strong="H3068"\w* \w king|strong="H4430"\w*, \w establish|strong="H6966"\w* \w the|strong="H3606"\w* decree \w and|strong="H4430"\w* sign \w the|strong="H3606"\w* writing, \w that|strong="H1768"\w* \w it|strong="H4481"\w* not be changed, \w according|strong="H4481"\w* \w to|strong="H5705"\w* \w the|strong="H3606"\w* law \w of|strong="H4481"\w* \w the|strong="H3606"\w* Medes \w and|strong="H4430"\w* Persians, \w which|strong="H1768"\w* doesn’t alter.” +\v 9 Therefore \w King|strong="H4430"\w* Darius \w signed|strong="H7560"\w* \w the|strong="H1768"\w* \w writing|strong="H3792"\w* \w and|strong="H4430"\w* \w the|strong="H1768"\w* \w decree|strong="H1882"\w*. +\p +\v 10 When Daniel knew \w that|strong="H3606"\w* \w the|strong="H3606"\w* \w writing|strong="H3792"\w* \w was|strong="H4430"\w* \w signed|strong="H7560"\w*, \w he|strong="H6903"\w* went into \w his|strong="H3606"\w* house (\w now|strong="H4430"\w* \w his|strong="H3606"\w* windows were open \w in|strong="H4430"\w* \w his|strong="H3606"\w* room toward Jerusalem) \w and|strong="H4430"\w* \w he|strong="H6903"\w* kneeled on \w his|strong="H3606"\w* knees three times \w a|strong="H3068"\w* day, \w and|strong="H4430"\w* prayed, \w and|strong="H4430"\w* gave thanks \w before|strong="H6903"\w* \w his|strong="H3606"\w* God, \w as|strong="H3606"\w* \w he|strong="H6903"\w* did \w before|strong="H6903"\w*. +\v 11 \w Then|strong="H6903"\w* \w these|strong="H1836"\w* men assembled together, \w and|strong="H1005"\w* found \w Daniel|strong="H1841"\w* \w making|strong="H3046"\w* petition \w and|strong="H1005"\w* supplication \w before|strong="H6925"\w* \w his|strong="H5922"\w* God. +\v 12 Then they \w came|strong="H7284"\w* near, \w and|strong="H1841"\w* spoke \w before|strong="H6925"\w* \w the|strong="H6925"\w* king concerning \w the|strong="H6925"\w* king’s decree: “Haven’t you signed \w a|strong="H3068"\w* decree \w that|strong="H1400"\w* every \w man|strong="H1400"\w* who \w makes|strong="H1156"\w* \w a|strong="H3068"\w* \w petition|strong="H1156"\w* \w to|strong="H6925"\w* any god or \w man|strong="H1400"\w* within thirty days, except \w to|strong="H6925"\w* you, \w O|strong="H3068"\w* king, shall \w be|strong="H1841"\w* cast into \w the|strong="H6925"\w* den \w of|strong="H6925"\w* lions?” +\p \w The|strong="H6925"\w* king answered, “This thing is true, according \w to|strong="H6925"\w* \w the|strong="H6925"\w* law \w of|strong="H6925"\w* \w the|strong="H6925"\w* Medes \w and|strong="H1841"\w* Persians, which doesn’t alter.” +\p +\v 13 \w Then|strong="H1768"\w* \w they|strong="H3606"\w* \w answered|strong="H6032"\w* \w and|strong="H6032"\w* \w said|strong="H6032"\w* \w before|strong="H6925"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w*, “\w That|strong="H1768"\w* Daniel, \w who|strong="H1768"\w* \w is|strong="H1768"\w* \w of|strong="H4481"\w* \w the|strong="H3606"\w* children \w of|strong="H4481"\w* \w the|strong="H3606"\w* captivity \w of|strong="H4481"\w* Judah, doesn’t respect \w you|strong="H1768"\w*, \w O|strong="H3068"\w* \w king|strong="H4430"\w*, \w nor|strong="H3809"\w* \w the|strong="H3606"\w* \w decree|strong="H1882"\w* \w that|strong="H1768"\w* \w you|strong="H1768"\w* \w have|strong="H1768"\w* \w signed|strong="H7560"\w*, \w but|strong="H3861"\w* \w makes|strong="H1156"\w* \w his|strong="H5922"\w* \w petition|strong="H1156"\w* three times \w a|strong="H3068"\w* \w day|strong="H3118"\w*.” +\v 14 \w Then|strong="H1768"\w* \w the|strong="H5922"\w* \w king|strong="H4430"\w*, \w when|strong="H1768"\w* \w he|strong="H1768"\w* heard \w these|strong="H4481"\w* words, \w was|strong="H1841"\w* very displeased, \w and|strong="H6032"\w* \w set|strong="H7761"\w* \w his|strong="H5922"\w* heart \w on|strong="H5922"\w* \w Daniel|strong="H1841"\w* \w to|strong="H5922"\w* deliver \w him|strong="H5922"\w*; \w and|strong="H6032"\w* \w he|strong="H1768"\w* labored until \w the|strong="H5922"\w* going down \w of|strong="H4481"\w* \w the|strong="H5922"\w* sun \w to|strong="H5922"\w* rescue \w him|strong="H5922"\w*. +\p +\v 15 \w Then|strong="H1768"\w* these men assembled together \w to|strong="H5922"\w* \w the|strong="H5922"\w* \w king|strong="H4430"\w*, \w and|strong="H4430"\w* said \w to|strong="H5922"\w* \w the|strong="H5922"\w* \w king|strong="H4430"\w*, “Know, \w O|strong="H3068"\w* \w king|strong="H4430"\w*, \w that|strong="H1768"\w* \w it|strong="H5922"\w* \w is|strong="H1768"\w* \w a|strong="H3068"\w* law \w of|strong="H4430"\w* \w the|strong="H5922"\w* Medes \w and|strong="H4430"\w* Persians, \w that|strong="H1768"\w* no decree nor statute \w which|strong="H1768"\w* \w the|strong="H5922"\w* \w king|strong="H4430"\w* establishes may \w be|strong="H1934"\w* changed.” +\p +\v 16 \w Then|strong="H1768"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w* commanded, \w and|strong="H4430"\w* \w they|strong="H3606"\w* brought Daniel \w and|strong="H4430"\w* cast \w him|strong="H5922"\w* into \w the|strong="H3606"\w* den \w of|strong="H4430"\w* lions. \w The|strong="H3606"\w* \w king|strong="H4430"\w* spoke \w and|strong="H4430"\w* said \w to|strong="H5922"\w* Daniel, “\w Your|strong="H1768"\w* God \w whom|strong="H1768"\w* \w you|strong="H1768"\w* serve continually, \w he|strong="H1768"\w* \w will|strong="H1768"\w* deliver \w you|strong="H1768"\w*.” +\p +\v 17 \w A|strong="H3068"\w* stone \w was|strong="H1841"\w* \w brought|strong="H1841"\w*, \w and|strong="H6032"\w* laid on \w the|strong="H1768"\w* mouth \w of|strong="H4430"\w* \w the|strong="H1768"\w* \w den|strong="H1358"\w*; \w and|strong="H6032"\w* \w the|strong="H1768"\w* \w king|strong="H4430"\w* sealed \w it|strong="H1932"\w* \w with|strong="H1841"\w* \w his|strong="H7804"\w* own signet, \w and|strong="H6032"\w* \w with|strong="H1841"\w* \w the|strong="H1768"\w* signet \w of|strong="H4430"\w* \w his|strong="H7804"\w* lords; \w that|strong="H1768"\w* nothing might \w be|strong="H1841"\w* changed concerning \w Daniel|strong="H1841"\w*. +\v 18 \w Then|strong="H1768"\w* \w the|strong="H5922"\w* \w king|strong="H4430"\w* \w went|strong="H1841"\w* \w to|strong="H5922"\w* \w his|strong="H5922"\w* palace, \w and|strong="H4430"\w* passed \w the|strong="H5922"\w* night fasting. \w No|strong="H3809"\w* musical instruments \w were|strong="H1768"\w* \w brought|strong="H1841"\w* \w before|strong="H5922"\w* \w him|strong="H5922"\w*; \w and|strong="H4430"\w* \w his|strong="H5922"\w* sleep fled \w from|strong="H8133"\w* \w him|strong="H5922"\w*. +\p +\v 19 \w Then|strong="H4430"\w* \w the|strong="H5922"\w* \w king|strong="H4430"\w* arose very early \w in|strong="H5954"\w* \w the|strong="H5922"\w* morning, \w and|strong="H4430"\w* \w went|strong="H5954"\w* \w in|strong="H5954"\w* haste \w to|strong="H5922"\w* \w the|strong="H5922"\w* den \w of|strong="H4430"\w* lions. +\v 20 \w When|strong="H1768"\w* \w he|strong="H1768"\w* \w came|strong="H1768"\w* near \w to|strong="H4430"\w* \w the|strong="H1768"\w* \w den|strong="H1358"\w* \w to|strong="H4430"\w* Daniel, \w he|strong="H1768"\w* cried with \w a|strong="H3068"\w* troubled voice. \w The|strong="H1768"\w* \w king|strong="H4430"\w* spoke \w and|strong="H4430"\w* said \w to|strong="H4430"\w* Daniel, “Daniel, servant \w of|strong="H4430"\w* \w the|strong="H1768"\w* living God, \w is|strong="H1768"\w* \w your|strong="H1768"\w* God, \w whom|strong="H1768"\w* \w you|strong="H1768"\w* serve continually, able \w to|strong="H4430"\w* deliver \w you|strong="H1768"\w* \w from|strong="H1768"\w* \w the|strong="H1768"\w* lions?” +\p +\v 21 \w Then|strong="H1768"\w* \w Daniel|strong="H1841"\w* \w said|strong="H6032"\w* \w to|strong="H3202"\w* \w the|strong="H4481"\w* \w king|strong="H4430"\w*, “\w O|strong="H3068"\w* \w king|strong="H4430"\w*, live forever! +\v 22 \w My|strong="H4430"\w* God \w has|strong="H4430"\w* sent his angel, \w and|strong="H4430"\w* \w has|strong="H4430"\w* shut \w the|strong="H5974"\w* lions’ mouths, \w and|strong="H4430"\w* they \w have|strong="H4430"\w* not hurt me, because innocence \w was|strong="H4430"\w* found \w in|strong="H4430"\w* me before \w him|strong="H5974"\w*; \w and|strong="H4430"\w* \w also|strong="H4430"\w* before you, \w O|strong="H3068"\w* \w king|strong="H4430"\w*, I \w have|strong="H4430"\w* done no harm.” +\p +\v 23 \w Then|strong="H6903"\w* \w the|strong="H3606"\w* \w king|strong="H4430"\w* \w was|strong="H4430"\w* exceedingly glad, \w and|strong="H4430"\w* commanded \w that|strong="H1768"\w* \w they|strong="H3606"\w* \w should|strong="H4430"\w* take Daniel \w up|strong="H6925"\w* \w out|strong="H5648"\w* \w of|strong="H4430"\w* \w the|strong="H3606"\w* den. \w So|strong="H1768"\w* Daniel \w was|strong="H4430"\w* taken \w up|strong="H6925"\w* \w out|strong="H5648"\w* \w of|strong="H4430"\w* \w the|strong="H3606"\w* den, \w and|strong="H4430"\w* \w no|strong="H3809"\w* kind \w of|strong="H4430"\w* harm \w was|strong="H4430"\w* \w found|strong="H7912"\w* on \w him|strong="H6925"\w*, \w because|strong="H6903"\w* \w he|strong="H1768"\w* \w had|strong="H4430"\w* trusted \w in|strong="H4430"\w* \w his|strong="H7972"\w* God. +\p +\v 24 \w The|strong="H3606"\w* \w king|strong="H4430"\w* \w commanded|strong="H4481"\w*, \w and|strong="H4430"\w* \w they|strong="H3606"\w* \w brought|strong="H1841"\w* \w those|strong="H1768"\w* men \w who|strong="H1768"\w* \w had|strong="H4430"\w* accused \w Daniel|strong="H1841"\w*, \w and|strong="H4430"\w* \w they|strong="H3606"\w* cast \w them|strong="H5922"\w* into \w the|strong="H3606"\w* \w den|strong="H1358"\w* \w of|strong="H4481"\w* lions—\w them|strong="H5922"\w*, \w their|strong="H3606"\w* children, \w and|strong="H4430"\w* \w their|strong="H3606"\w* wives; \w and|strong="H4430"\w* \w the|strong="H3606"\w* lions mauled \w them|strong="H5922"\w*, \w and|strong="H4430"\w* broke \w all|strong="H3606"\w* \w their|strong="H3606"\w* bones \w in|strong="H5922"\w* pieces \w before|strong="H4481"\w* \w they|strong="H3606"\w* \w came|strong="H1768"\w* \w to|strong="H5922"\w* \w the|strong="H3606"\w* bottom \w of|strong="H4481"\w* \w the|strong="H3606"\w* \w den|strong="H1358"\w*. +\p +\v 25 \w Then|strong="H1768"\w* \w King|strong="H4430"\w* Darius wrote \w to|strong="H5705"\w* \w all|strong="H3606"\w* \w the|strong="H3606"\w* peoples, nations, \w and|strong="H4430"\w* languages \w who|strong="H1768"\w* dwell \w in|strong="H4430"\w* \w all|strong="H3606"\w* \w the|strong="H3606"\w* earth: +\pi1 “Peace \w be|strong="H3809"\w* multiplied \w to|strong="H5705"\w* \w you|strong="H1768"\w*. +\pi1 +\v 26 “\w I|strong="H1768"\w* make \w a|strong="H3068"\w* decree \w that|strong="H1768"\w* \w in|strong="H1753"\w* \w all|strong="H3606"\w* \w the|strong="H3606"\w* dominion \w of|strong="H4430"\w* \w my|strong="H4430"\w* kingdom men tremble \w and|strong="H4430"\w* fear before \w the|strong="H3606"\w* God \w of|strong="H4430"\w* Daniel. +\q1 “\w For|strong="H1768"\w* \w he|strong="H1768"\w* \w is|strong="H1768"\w* \w the|strong="H3606"\w* \w living|strong="H1753"\w* God, +\q2 \w and|strong="H4430"\w* steadfast forever. +\q1 \w His|strong="H1768"\w* kingdom \w is|strong="H1768"\w* \w that|strong="H1768"\w* \w which|strong="H1768"\w* \w will|strong="H1768"\w* not \w be|strong="H8001"\w* destroyed. +\q2 \w His|strong="H1768"\w* dominion \w will|strong="H1768"\w* \w be|strong="H8001"\w* \w even|strong="H1768"\w* \w to|strong="H4430"\w* \w the|strong="H3606"\w* end. +\q1 +\v 27 \w He|strong="H1768"\w* delivers \w and|strong="H4437"\w* rescues. +\q2 \w He|strong="H1768"\w* works signs \w and|strong="H4437"\w* wonders \w in|strong="H4437"\w* heaven \w and|strong="H4437"\w* \w in|strong="H4437"\w* earth, +\q2 \w who|strong="H1768"\w* \w has|strong="H1768"\w* delivered \w Daniel|strong="H1841"\w* \w from|strong="H4481"\w* \w the|strong="H3606"\w* power \w of|strong="H4481"\w* \w the|strong="H3606"\w* lions.” +\p +\v 28 \w So|strong="H1768"\w* \w this|strong="H4481"\w* \w Daniel|strong="H1841"\w* prospered \w in|strong="H5648"\w* \w the|strong="H4481"\w* reign \w of|strong="H4481"\w* Darius \w and|strong="H8065"\w* \w in|strong="H5648"\w* \w the|strong="H4481"\w* reign \w of|strong="H4481"\w* Cyrus \w the|strong="H4481"\w* Persian. +\c 7 +\p +\v 1 \w In|strong="H5922"\w* \w the|strong="H5922"\w* \w first|strong="H2298"\w* \w year|strong="H8140"\w* \w of|strong="H4430"\w* \w Belshazzar|strong="H1113"\w* \w king|strong="H4430"\w* \w of|strong="H4430"\w* Babylon, \w Daniel|strong="H1841"\w* \w had|strong="H4430"\w* \w a|strong="H3068"\w* \w dream|strong="H2493"\w* \w and|strong="H4430"\w* \w visions|strong="H2376"\w* \w of|strong="H4430"\w* \w his|strong="H5922"\w* \w head|strong="H7217"\w* while \w on|strong="H5922"\w* \w his|strong="H5922"\w* \w bed|strong="H4903"\w*. \w Then|strong="H4430"\w* \w he|strong="H1841"\w* \w wrote|strong="H3790"\w* \w the|strong="H5922"\w* \w dream|strong="H2493"\w* \w and|strong="H4430"\w* told \w the|strong="H5922"\w* \w sum|strong="H7217"\w* \w of|strong="H4430"\w* \w the|strong="H5922"\w* \w matters|strong="H4406"\w*. +\p +\v 2 \w Daniel|strong="H1841"\w* \w spoke|strong="H6032"\w* \w and|strong="H6032"\w* \w said|strong="H6032"\w*, “I \w saw|strong="H2370"\w* \w in|strong="H7229"\w* my \w vision|strong="H2376"\w* \w by|strong="H5974"\w* \w night|strong="H3916"\w*, \w and|strong="H6032"\w*, behold, \w the|strong="H2370"\w* four \w winds|strong="H7308"\w* \w of|strong="H7308"\w* \w the|strong="H2370"\w* \w sky|strong="H8065"\w* broke out on \w the|strong="H2370"\w* \w great|strong="H7229"\w* \w sea|strong="H3221"\w*. +\v 3 Four \w great|strong="H7260"\w* \w animals|strong="H2423"\w* \w came|strong="H5559"\w* \w up|strong="H5559"\w* \w from|strong="H4481"\w* \w the|strong="H4481"\w* \w sea|strong="H3221"\w*, \w different|strong="H8133"\w* \w from|strong="H4481"\w* \w one|strong="H1668"\w* \w another|strong="H1668"\w*. +\p +\v 4 “\w The|strong="H5922"\w* \w first|strong="H6933"\w* \w was|strong="H1934"\w* like \w a|strong="H3068"\w* lion, \w and|strong="H7271"\w* \w had|strong="H2370"\w* \w eagle|strong="H5403"\w*’s \w wings|strong="H1611"\w*. \w I|strong="H4481"\w* watched \w until|strong="H5705"\w* \w its|strong="H5705"\w* \w wings|strong="H1611"\w* \w were|strong="H1934"\w* \w plucked|strong="H4804"\w*, \w and|strong="H7271"\w* \w it|strong="H5922"\w* \w was|strong="H1934"\w* \w lifted|strong="H5191"\w* \w up|strong="H6966"\w* \w from|strong="H4481"\w* \w the|strong="H5922"\w* earth \w and|strong="H7271"\w* \w made|strong="H6966"\w* \w to|strong="H5922"\w* \w stand|strong="H6966"\w* \w on|strong="H5922"\w* two \w feet|strong="H7271"\w* \w as|strong="H1768"\w* \w a|strong="H3068"\w* man. \w A|strong="H3068"\w* man’s \w heart|strong="H3825"\w* \w was|strong="H1934"\w* \w given|strong="H3052"\w* \w to|strong="H5922"\w* \w it|strong="H5922"\w*. +\p +\v 5 “Behold, there \w was|strong="H2423"\w* another animal, \w a|strong="H3068"\w* \w second|strong="H8578"\w*, \w like|strong="H1821"\w* \w a|strong="H3068"\w* \w bear|strong="H1678"\w*. \w It|strong="H1321"\w* \w was|strong="H2423"\w* \w raised|strong="H6966"\w* \w up|strong="H6966"\w* on \w one|strong="H2298"\w* \w side|strong="H7859"\w*, \w and|strong="H3652"\w* \w three|strong="H8532"\w* \w ribs|strong="H5967"\w* \w were|strong="H2423"\w* \w in|strong="H6966"\w* its \w mouth|strong="H6433"\w* between its \w teeth|strong="H8128"\w*. \w They|strong="H3652"\w* said this \w to|strong="H6966"\w* \w it|strong="H1321"\w*: ‘\w Arise|strong="H6966"\w*! Devour \w much|strong="H7690"\w* \w flesh|strong="H1321"\w*!’ +\p +\v 6 “After \w this|strong="H1836"\w* \w I|strong="H1836"\w* \w saw|strong="H2370"\w*, \w and|strong="H1934"\w* behold, \w another|strong="H1836"\w*, \w like|strong="H7217"\w* \w a|strong="H3068"\w* \w leopard|strong="H5245"\w*, \w which|strong="H1768"\w* \w had|strong="H2370"\w* \w on|strong="H5922"\w* its \w back|strong="H1355"\w* four \w wings|strong="H1611"\w* \w of|strong="H5922"\w* \w a|strong="H3068"\w* \w bird|strong="H5776"\w*. \w The|strong="H5922"\w* animal also \w had|strong="H2370"\w* four \w heads|strong="H7217"\w*; \w and|strong="H1934"\w* \w dominion|strong="H7985"\w* \w was|strong="H1934"\w* \w given|strong="H3052"\w* \w to|strong="H5922"\w* \w it|strong="H5922"\w*. +\p +\v 7 “\w After|strong="H4481"\w* \w this|strong="H1836"\w* \w I|strong="H4481"\w* \w saw|strong="H2370"\w* \w in|strong="H8133"\w* \w the|strong="H3606"\w* \w night|strong="H3916"\w* \w visions|strong="H2376"\w*, \w and|strong="H6523"\w*, behold, \w there|strong="H1768"\w* \w was|strong="H1934"\w* \w a|strong="H3068"\w* \w fourth|strong="H7244"\w* animal, \w awesome|strong="H1763"\w*, \w powerful|strong="H8624"\w*, \w and|strong="H6523"\w* \w exceedingly|strong="H3493"\w* \w strong|strong="H8624"\w*. \w It|strong="H1934"\w* \w had|strong="H2370"\w* \w great|strong="H7260"\w* \w iron|strong="H6523"\w* \w teeth|strong="H8128"\w*. \w It|strong="H1934"\w* devoured \w and|strong="H6523"\w* broke \w in|strong="H8133"\w* \w pieces|strong="H1855"\w*, \w and|strong="H6523"\w* \w stamped|strong="H7512"\w* \w the|strong="H3606"\w* \w residue|strong="H7606"\w* with \w its|strong="H4481"\w* \w feet|strong="H7271"\w*. \w It|strong="H1934"\w* \w was|strong="H1934"\w* \w different|strong="H8133"\w* \w from|strong="H4481"\w* \w all|strong="H3606"\w* \w the|strong="H3606"\w* \w animals|strong="H2423"\w* \w that|strong="H1768"\w* \w were|strong="H1934"\w* \w before|strong="H6925"\w* \w it|strong="H1934"\w*. \w It|strong="H1934"\w* \w had|strong="H2370"\w* \w ten|strong="H6236"\w* \w horns|strong="H7162"\w*. +\p +\v 8 “\w I|strong="H4481"\w* \w considered|strong="H1934"\w* \w the|strong="H4481"\w* \w horns|strong="H7162"\w*, \w and|strong="H1934"\w* behold, there \w came|strong="H5559"\w* \w up|strong="H5559"\w* \w among|strong="H4481"\w* them \w another|strong="H1668"\w* \w horn|strong="H7162"\w*, \w a|strong="H3068"\w* \w little|strong="H2192"\w* \w one|strong="H1668"\w*, \w before|strong="H6925"\w* \w which|strong="H4481"\w* \w three|strong="H8532"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w first|strong="H6933"\w* \w horns|strong="H7162"\w* \w were|strong="H1934"\w* plucked \w up|strong="H5559"\w* \w by|strong="H6925"\w* \w the|strong="H4481"\w* \w roots|strong="H6132"\w*; \w and|strong="H1934"\w* behold, in \w this|strong="H1668"\w* \w horn|strong="H7162"\w* \w were|strong="H1934"\w* \w eyes|strong="H5870"\w* like \w the|strong="H4481"\w* \w eyes|strong="H5870"\w* \w of|strong="H4481"\w* \w a|strong="H3068"\w* man, \w and|strong="H1934"\w* \w a|strong="H3068"\w* \w mouth|strong="H6433"\w* \w speaking|strong="H4449"\w* arrogantly. +\q1 +\v 9 “\w I|strong="H1768"\w* watched \w until|strong="H5705"\w* \w thrones|strong="H3764"\w* \w were|strong="H1934"\w* placed, +\q2 \w and|strong="H1934"\w* one \w who|strong="H1768"\w* \w was|strong="H1934"\w* \w Ancient|strong="H6268"\w* \w of|strong="H6268"\w* \w Days|strong="H3118"\w* \w sat|strong="H3488"\w*. +\q1 \w His|strong="H5705"\w* clothing \w was|strong="H1934"\w* \w white|strong="H2358"\w* \w as|strong="H1768"\w* \w snow|strong="H8517"\w*, +\q2 \w and|strong="H1934"\w* \w the|strong="H1768"\w* \w hair|strong="H8177"\w* \w of|strong="H6268"\w* \w his|strong="H5705"\w* \w head|strong="H7217"\w* \w like|strong="H7217"\w* \w pure|strong="H5343"\w* \w wool|strong="H6015"\w*. +\q1 \w His|strong="H5705"\w* \w throne|strong="H3764"\w* \w was|strong="H1934"\w* \w fiery|strong="H5135"\w* \w flames|strong="H7631"\w*, +\q2 \w and|strong="H1934"\w* \w its|strong="H5705"\w* \w wheels|strong="H1535"\w* \w burning|strong="H1815"\w* \w fire|strong="H5135"\w*. +\q1 +\v 10 \w A|strong="H3068"\w* \w fiery|strong="H5135"\w* \w stream|strong="H5103"\w* \w issued|strong="H5047"\w* \w and|strong="H4481"\w* \w came|strong="H1768"\w* \w out|strong="H5312"\w* \w from|strong="H4481"\w* \w before|strong="H6925"\w* \w him|strong="H4481"\w*. +\q2 Thousands \w of|strong="H4481"\w* thousands \w ministered|strong="H8120"\w* \w to|strong="H6925"\w* \w him|strong="H4481"\w*. +\q2 Ten \w thousand|strong="H7240"\w* times ten \w thousand|strong="H7240"\w* \w stood|strong="H6966"\w* \w before|strong="H6925"\w* \w him|strong="H4481"\w*. +\q1 \w The|strong="H4481"\w* \w judgment|strong="H1780"\w* \w was|strong="H1780"\w* \w set|strong="H6966"\w*. +\q2 \w The|strong="H4481"\w* \w books|strong="H5609"\w* \w were|strong="H1768"\w* \w opened|strong="H6606"\w*. +\p +\v 11 “\w I|strong="H4481"\w* watched \w at|strong="H5705"\w* \w that|strong="H1768"\w* time \w because|strong="H4481"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w voice|strong="H7032"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* \w arrogant|strong="H7260"\w* \w words|strong="H4406"\w* \w which|strong="H1768"\w* \w the|strong="H4481"\w* \w horn|strong="H7162"\w* \w spoke|strong="H4449"\w*. \w I|strong="H4481"\w* watched \w even|strong="H1768"\w* \w until|strong="H5705"\w* \w the|strong="H4481"\w* animal \w was|strong="H1934"\w* \w slain|strong="H6992"\w*, \w and|strong="H1934"\w* \w its|strong="H5705"\w* \w body|strong="H1655"\w* destroyed, \w and|strong="H1934"\w* \w it|strong="H1934"\w* \w was|strong="H1934"\w* \w given|strong="H3052"\w* \w to|strong="H5705"\w* \w be|strong="H1934"\w* burned with fire. +\v 12 \w As|strong="H5705"\w* \w for|strong="H5705"\w* \w the|strong="H5705"\w* \w rest|strong="H7606"\w* \w of|strong="H2166"\w* \w the|strong="H5705"\w* \w animals|strong="H2423"\w*, \w their|strong="H3052"\w* \w dominion|strong="H7985"\w* \w was|strong="H7985"\w* \w taken|strong="H5709"\w* \w away|strong="H5709"\w*; yet \w their|strong="H3052"\w* \w lives|strong="H2417"\w* \w were|strong="H2417"\w* \w prolonged|strong="H3052"\w* \w for|strong="H5705"\w* \w a|strong="H3068"\w* \w season|strong="H2166"\w* \w and|strong="H2166"\w* \w a|strong="H3068"\w* \w time|strong="H5732"\w*. +\p +\v 13 “I \w saw|strong="H2370"\w* in \w the|strong="H6925"\w* \w night|strong="H3916"\w* \w visions|strong="H2376"\w*, \w and|strong="H8065"\w* behold, there \w came|strong="H4291"\w* \w with|strong="H5974"\w* \w the|strong="H6925"\w* \w clouds|strong="H6050"\w* \w of|strong="H1247"\w* \w the|strong="H6925"\w* \w sky|strong="H8065"\w* one \w like|strong="H5974"\w* \w a|strong="H3068"\w* \w son|strong="H1247"\w* \w of|strong="H1247"\w* man, \w and|strong="H8065"\w* \w he|strong="H5705"\w* \w came|strong="H4291"\w* even \w to|strong="H6925"\w* \w the|strong="H6925"\w* \w Ancient|strong="H6268"\w* \w of|strong="H1247"\w* \w Days|strong="H3118"\w*, \w and|strong="H8065"\w* they brought \w him|strong="H6925"\w* \w near|strong="H7127"\w* \w before|strong="H6925"\w* \w him|strong="H6925"\w*. +\v 14 \w Dominion|strong="H7985"\w* \w was|strong="H7985"\w* \w given|strong="H3052"\w* \w him|strong="H3052"\w*, \w and|strong="H4437"\w* \w glory|strong="H3367"\w*, \w and|strong="H4437"\w* \w a|strong="H3068"\w* \w kingdom|strong="H4437"\w*, \w that|strong="H1768"\w* \w all|strong="H3606"\w* \w the|strong="H3606"\w* \w peoples|strong="H5972"\w*, nations, \w and|strong="H4437"\w* \w languages|strong="H3961"\w* should \w serve|strong="H6399"\w* \w him|strong="H3052"\w*. \w His|strong="H5709"\w* \w dominion|strong="H7985"\w* \w is|strong="H1768"\w* \w an|strong="H3606"\w* \w everlasting|strong="H5957"\w* \w dominion|strong="H7985"\w*, \w which|strong="H1768"\w* \w will|strong="H1768"\w* \w not|strong="H3809"\w* \w pass|strong="H3809"\w* \w away|strong="H5709"\w*, \w and|strong="H4437"\w* \w his|strong="H5709"\w* \w kingdom|strong="H4437"\w* one \w that|strong="H1768"\w* \w will|strong="H1768"\w* \w not|strong="H3809"\w* \w be|strong="H3809"\w* \w destroyed|strong="H2255"\w*. +\p +\v 15 “As for me, \w Daniel|strong="H1841"\w*, my \w spirit|strong="H7308"\w* \w was|strong="H1841"\w* \w grieved|strong="H3735"\w* \w within|strong="H1459"\w* my \w body|strong="H5085"\w*, \w and|strong="H1841"\w* the \w visions|strong="H2376"\w* \w of|strong="H7217"\w* my \w head|strong="H7217"\w* troubled me. +\v 16 \w I|strong="H4481"\w* \w came|strong="H7127"\w* \w near|strong="H7127"\w* \w to|strong="H5922"\w* \w one|strong="H2298"\w* \w of|strong="H4481"\w* those who \w stood|strong="H6966"\w* \w by|strong="H4481"\w*, \w and|strong="H7127"\w* \w asked|strong="H1156"\w* \w him|strong="H5922"\w* \w the|strong="H3606"\w* \w truth|strong="H3330"\w* \w concerning|strong="H5922"\w* \w all|strong="H3606"\w* \w this|strong="H1836"\w*. +\p “\w So|strong="H4481"\w* he told \w me|strong="H5922"\w*, \w and|strong="H7127"\w* \w made|strong="H3046"\w* \w me|strong="H5922"\w* \w know|strong="H3046"\w* \w the|strong="H3606"\w* \w interpretation|strong="H6591"\w* \w of|strong="H4481"\w* \w the|strong="H3606"\w* \w things|strong="H4406"\w*. +\v 17 ‘\w These|strong="H4481"\w* \w great|strong="H7260"\w* \w animals|strong="H2423"\w*, \w which|strong="H1768"\w* \w are|strong="H1768"\w* four, \w are|strong="H1768"\w* four \w kings|strong="H4430"\w*, \w who|strong="H1768"\w* \w will|strong="H1768"\w* \w arise|strong="H6966"\w* \w out|strong="H6966"\w* \w of|strong="H4481"\w* \w the|strong="H4481"\w* earth. +\v 18 But \w the|strong="H5705"\w* \w saints|strong="H6922"\w* \w of|strong="H4437"\w* \w the|strong="H5705"\w* Most \w High|strong="H5946"\w* \w will|strong="H5946"\w* \w receive|strong="H6902"\w* \w the|strong="H5705"\w* \w kingdom|strong="H4437"\w*, \w and|strong="H4437"\w* \w possess|strong="H2631"\w* \w the|strong="H5705"\w* \w kingdom|strong="H4437"\w* \w forever|strong="H5957"\w*, even \w forever|strong="H5957"\w* \w and|strong="H4437"\w* \w ever|strong="H5957"\w*.’ +\p +\v 19 “\w Then|strong="H1768"\w* \w I|strong="H4481"\w* \w desired|strong="H6634"\w* \w to|strong="H5922"\w* \w know|strong="H3321"\w* \w the|strong="H3605"\w* \w truth|strong="H3321"\w* \w concerning|strong="H5922"\w* \w the|strong="H3605"\w* \w fourth|strong="H7244"\w* animal, \w which|strong="H1768"\w* \w was|strong="H1934"\w* \w different|strong="H8133"\w* \w from|strong="H4481"\w* \w all|strong="H3605"\w* \w of|strong="H4481"\w* \w them|strong="H5922"\w*, \w exceedingly|strong="H3493"\w* \w terrible|strong="H1763"\w*, \w whose|strong="H1768"\w* \w teeth|strong="H8128"\w* \w were|strong="H1934"\w* \w of|strong="H4481"\w* \w iron|strong="H6523"\w*, \w and|strong="H6523"\w* \w its|strong="H3605"\w* \w nails|strong="H2953"\w* \w of|strong="H4481"\w* \w bronze|strong="H5174"\w*; \w which|strong="H1768"\w* devoured, broke \w in|strong="H5922"\w* \w pieces|strong="H1855"\w*, \w and|strong="H6523"\w* \w stamped|strong="H7512"\w* \w the|strong="H3605"\w* \w residue|strong="H7606"\w* \w with|strong="H3605"\w* \w its|strong="H3605"\w* \w feet|strong="H7271"\w*; +\v 20 \w and|strong="H5308"\w* \w concerning|strong="H5922"\w* \w the|strong="H5922"\w* \w ten|strong="H6236"\w* \w horns|strong="H7162"\w* \w that|strong="H1768"\w* \w were|strong="H1768"\w* \w on|strong="H5922"\w* \w its|strong="H4481"\w* \w head|strong="H7217"\w* \w and|strong="H5308"\w* \w the|strong="H5922"\w* other \w horn|strong="H7162"\w* \w which|strong="H1768"\w* \w came|strong="H5559"\w* \w up|strong="H5559"\w*, \w and|strong="H5308"\w* \w before|strong="H6925"\w* \w which|strong="H1768"\w* \w three|strong="H8532"\w* \w fell|strong="H5308"\w*, \w even|strong="H1768"\w* \w that|strong="H1768"\w* \w horn|strong="H7162"\w* \w that|strong="H1768"\w* \w had|strong="H1768"\w* \w eyes|strong="H5870"\w* \w and|strong="H5308"\w* \w a|strong="H3068"\w* \w mouth|strong="H6433"\w* \w that|strong="H1768"\w* \w spoke|strong="H4449"\w* arrogantly, \w whose|strong="H1768"\w* \w look|strong="H2376"\w* \w was|strong="H7162"\w* \w more|strong="H5922"\w* \w stout|strong="H7229"\w* \w than|strong="H4481"\w* \w its|strong="H4481"\w* \w fellows|strong="H2273"\w*. +\v 21 I \w saw|strong="H2370"\w*, \w and|strong="H1934"\w* \w the|strong="H5974"\w* \w same|strong="H1797"\w* \w horn|strong="H7162"\w* \w made|strong="H5648"\w* \w war|strong="H7129"\w* \w with|strong="H5974"\w* \w the|strong="H5974"\w* \w saints|strong="H6922"\w*, \w and|strong="H1934"\w* \w prevailed|strong="H3202"\w* \w against|strong="H5974"\w* \w them|strong="H3202"\w*, +\v 22 \w until|strong="H5705"\w* \w the|strong="H1768"\w* \w Ancient|strong="H6268"\w* \w of|strong="H4437"\w* \w Days|strong="H3118"\w* \w came|strong="H4291"\w*, \w and|strong="H4437"\w* \w judgment|strong="H1780"\w* \w was|strong="H1780"\w* \w given|strong="H3052"\w* \w to|strong="H5705"\w* \w the|strong="H1768"\w* \w saints|strong="H6922"\w* \w of|strong="H4437"\w* \w the|strong="H1768"\w* Most \w High|strong="H5946"\w*, \w and|strong="H4437"\w* \w the|strong="H1768"\w* \w time|strong="H2166"\w* \w came|strong="H4291"\w* \w that|strong="H1768"\w* \w the|strong="H1768"\w* \w saints|strong="H6922"\w* \w possessed|strong="H2631"\w* \w the|strong="H1768"\w* \w kingdom|strong="H4437"\w*. +\p +\v 23 “\w So|strong="H1768"\w* \w he|strong="H1768"\w* said, ‘\w The|strong="H3606"\w* \w fourth|strong="H7244"\w* animal \w will|strong="H1768"\w* \w be|strong="H1934"\w* \w a|strong="H3068"\w* \w fourth|strong="H7244"\w* \w kingdom|strong="H4437"\w* on earth, \w which|strong="H1768"\w* \w will|strong="H1768"\w* \w be|strong="H1934"\w* \w different|strong="H8133"\w* \w from|strong="H4481"\w* \w all|strong="H3606"\w* \w the|strong="H3606"\w* \w kingdoms|strong="H4437"\w*, \w and|strong="H1855"\w* \w will|strong="H1768"\w* devour \w the|strong="H3606"\w* \w whole|strong="H3606"\w* earth, \w and|strong="H1855"\w* \w will|strong="H1768"\w* \w tread|strong="H1759"\w* \w it|strong="H1934"\w* \w down|strong="H1759"\w* \w and|strong="H1855"\w* break \w it|strong="H1934"\w* \w in|strong="H8133"\w* \w pieces|strong="H1855"\w*. +\v 24 \w As|strong="H4437"\w* \w for|strong="H4481"\w* \w the|strong="H4481"\w* \w ten|strong="H6236"\w* \w horns|strong="H7162"\w*, \w ten|strong="H6236"\w* \w kings|strong="H4430"\w* \w will|strong="H1932"\w* \w arise|strong="H6966"\w* \w out|strong="H6966"\w* \w of|strong="H4481"\w* \w this|strong="H1932"\w* \w kingdom|strong="H4437"\w*. Another \w will|strong="H1932"\w* \w arise|strong="H6966"\w* \w after|strong="H4481"\w* them; \w and|strong="H4430"\w* \w he|strong="H1932"\w* \w will|strong="H1932"\w* be \w different|strong="H8133"\w* \w from|strong="H4481"\w* \w the|strong="H4481"\w* former, \w and|strong="H4430"\w* \w he|strong="H1932"\w* \w will|strong="H1932"\w* put down \w three|strong="H8532"\w* \w kings|strong="H4430"\w*. +\v 25 \w He|strong="H5705"\w* \w will|strong="H5732"\w* \w speak|strong="H4449"\w* \w words|strong="H4406"\w* \w against|strong="H6655"\w* \w the|strong="H5705"\w* \w Most|strong="H5943"\w* \w High|strong="H5943"\w*, \w and|strong="H5943"\w* \w will|strong="H5732"\w* \w wear|strong="H1080"\w* \w out|strong="H1080"\w* \w the|strong="H5705"\w* \w saints|strong="H6922"\w* \w of|strong="H3028"\w* \w the|strong="H5705"\w* \w Most|strong="H5943"\w* \w High|strong="H5943"\w*. \w He|strong="H5705"\w* \w will|strong="H5732"\w* plan \w to|strong="H5705"\w* \w change|strong="H8133"\w* \w the|strong="H5705"\w* \w times|strong="H5732"\w* \w and|strong="H5943"\w* \w the|strong="H5705"\w* \w law|strong="H1882"\w*; \w and|strong="H5943"\w* they \w will|strong="H5732"\w* \w be|strong="H5732"\w* \w given|strong="H3052"\w* into \w his|strong="H5705"\w* \w hand|strong="H3028"\w* \w until|strong="H5705"\w* \w a|strong="H3068"\w* \w time|strong="H5732"\w* \w and|strong="H5943"\w* \w times|strong="H5732"\w* \w and|strong="H5943"\w* \w half|strong="H6387"\w* \w a|strong="H3068"\w* \w time|strong="H5732"\w*. +\p +\v 26 “‘But \w the|strong="H5705"\w* \w judgment|strong="H1780"\w* \w will|strong="H7985"\w* \w be|strong="H1780"\w* \w set|strong="H3488"\w*, \w and|strong="H5705"\w* they \w will|strong="H7985"\w* take \w away|strong="H5709"\w* \w his|strong="H5709"\w* \w dominion|strong="H7985"\w*, \w to|strong="H5705"\w* \w consume|strong="H8046"\w* \w and|strong="H5705"\w* \w to|strong="H5705"\w* destroy it \w to|strong="H5705"\w* \w the|strong="H5705"\w* \w end|strong="H5491"\w*. +\v 27 \w The|strong="H3606"\w* \w kingdom|strong="H4437"\w* \w and|strong="H4437"\w* \w the|strong="H3606"\w* \w dominion|strong="H7985"\w*, \w and|strong="H4437"\w* \w the|strong="H3606"\w* \w greatness|strong="H7238"\w* \w of|strong="H4437"\w* \w the|strong="H3606"\w* \w kingdoms|strong="H4437"\w* \w under|strong="H8460"\w* \w the|strong="H3606"\w* \w whole|strong="H3606"\w* \w sky|strong="H8065"\w*, \w will|strong="H1768"\w* \w be|strong="H5957"\w* \w given|strong="H3052"\w* \w to|strong="H3052"\w* \w the|strong="H3606"\w* \w people|strong="H5972"\w* \w of|strong="H4437"\w* \w the|strong="H3606"\w* \w saints|strong="H6922"\w* \w of|strong="H4437"\w* \w the|strong="H3606"\w* Most \w High|strong="H5946"\w*. \w His|strong="H3606"\w* \w kingdom|strong="H4437"\w* \w is|strong="H1768"\w* \w an|strong="H3606"\w* \w everlasting|strong="H5957"\w* \w kingdom|strong="H4437"\w*, \w and|strong="H4437"\w* \w all|strong="H3606"\w* \w dominions|strong="H7985"\w* \w will|strong="H1768"\w* \w serve|strong="H6399"\w* \w and|strong="H4437"\w* \w obey|strong="H8086"\w* \w him|strong="H3052"\w*.’ +\p +\v 28 “Here \w is|strong="H1768"\w* \w the|strong="H5922"\w* \w end|strong="H5491"\w* \w of|strong="H5922"\w* \w the|strong="H5922"\w* \w matter|strong="H4406"\w*. \w As|strong="H1768"\w* \w for|strong="H5922"\w* \w me|strong="H5922"\w*, \w Daniel|strong="H1841"\w*, \w my|strong="H5922"\w* \w thoughts|strong="H7476"\w* troubled \w me|strong="H5922"\w* \w greatly|strong="H7690"\w*, \w and|strong="H1841"\w* \w my|strong="H5922"\w* \w face|strong="H2122"\w* \w was|strong="H1841"\w* \w changed|strong="H8133"\w* \w in|strong="H5922"\w* \w me|strong="H5922"\w*; \w but|strong="H1768"\w* \w I|strong="H1768"\w* \w kept|strong="H5202"\w* \w the|strong="H5922"\w* \w matter|strong="H4406"\w* \w in|strong="H5922"\w* \w my|strong="H5922"\w* \w heart|strong="H3821"\w*.” +\c 8 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H7200"\w* \w third|strong="H7969"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w the|strong="H7200"\w* \w reign|strong="H4438"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* \w Belshazzar|strong="H1112"\w*, \w a|strong="H3068"\w* \w vision|strong="H2377"\w* \w appeared|strong="H7200"\w* \w to|strong="H4428"\w* \w me|strong="H7200"\w*, \w even|strong="H1840"\w* \w to|strong="H4428"\w* \w me|strong="H7200"\w*, \w Daniel|strong="H1840"\w*, \w after|strong="H7200"\w* \w that|strong="H7200"\w* \w which|strong="H4428"\w* \w appeared|strong="H7200"\w* \w to|strong="H4428"\w* \w me|strong="H7200"\w* \w at|strong="H4428"\w* \w the|strong="H7200"\w* \w first|strong="H8462"\w*. +\v 2 \w I|strong="H5921"\w* \w saw|strong="H7200"\w* \w the|strong="H5921"\w* \w vision|strong="H2377"\w*. \w Now|strong="H1961"\w* \w it|strong="H5921"\w* \w was|strong="H1961"\w* \w so|strong="H1961"\w*, \w that|strong="H7200"\w* \w when|strong="H1961"\w* \w I|strong="H5921"\w* \w saw|strong="H7200"\w*, \w I|strong="H5921"\w* \w was|strong="H1961"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w citadel|strong="H1002"\w* \w of|strong="H5921"\w* \w Susa|strong="H7800"\w*, \w which|strong="H4082"\w* \w is|strong="H1961"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w province|strong="H4082"\w* \w of|strong="H5921"\w* \w Elam|strong="H5867"\w*. \w I|strong="H5921"\w* \w saw|strong="H7200"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w vision|strong="H2377"\w*, \w and|strong="H7200"\w* \w I|strong="H5921"\w* \w was|strong="H1961"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* river Ulai. +\v 3 \w Then|strong="H2009"\w* \w I|strong="H2009"\w* \w lifted|strong="H5375"\w* \w up|strong="H5927"\w* \w my|strong="H7200"\w* \w eyes|strong="H5869"\w* \w and|strong="H5869"\w* \w saw|strong="H7200"\w*, \w and|strong="H5869"\w* \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* ram \w which|strong="H5869"\w* \w had|strong="H5869"\w* \w two|strong="H8145"\w* \w horns|strong="H7161"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* river. \w The|strong="H6440"\w* \w two|strong="H8145"\w* \w horns|strong="H7161"\w* \w were|strong="H5869"\w* \w high|strong="H1364"\w*, \w but|strong="H7200"\w* \w one|strong="H4480"\w* \w was|strong="H7161"\w* \w higher|strong="H1364"\w* \w than|strong="H4480"\w* \w the|strong="H6440"\w* \w other|strong="H8145"\w*, \w and|strong="H5869"\w* \w the|strong="H6440"\w* \w higher|strong="H1364"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* \w last|strong="H5975"\w*. +\v 4 \w I|strong="H7200"\w* \w saw|strong="H7200"\w* \w the|strong="H3605"\w* ram \w pushing|strong="H5055"\w* \w westward|strong="H3220"\w*, \w northward|strong="H6828"\w*, \w and|strong="H3027"\w* \w southward|strong="H5045"\w*. \w No|strong="H3808"\w* \w animals|strong="H2416"\w* \w could|strong="H5337"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. \w There|strong="H5975"\w* wasn’t \w any|strong="H3605"\w* \w who|strong="H3605"\w* \w could|strong="H5337"\w* \w deliver|strong="H5337"\w* \w out|strong="H7200"\w* \w of|strong="H3027"\w* \w his|strong="H3605"\w* \w hand|strong="H3027"\w*, \w but|strong="H3808"\w* \w he|strong="H6213"\w* \w did|strong="H6213"\w* \w according|strong="H3027"\w* \w to|strong="H6213"\w* \w his|strong="H3605"\w* \w will|strong="H7522"\w*, \w and|strong="H3027"\w* \w magnified|strong="H1431"\w* \w himself|strong="H3027"\w*. +\p +\v 5 \w As|strong="H1961"\w* \w I|strong="H2009"\w* \w was|strong="H1961"\w* considering, \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w male|strong="H6842"\w* \w goat|strong="H5795"\w* \w came|strong="H1961"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w west|strong="H4628"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* earth, \w and|strong="H5869"\w* didn’t \w touch|strong="H5060"\w* \w the|strong="H3605"\w* \w ground|strong="H6440"\w*. \w The|strong="H3605"\w* \w goat|strong="H5795"\w* \w had|strong="H1961"\w* \w a|strong="H3068"\w* \w notable|strong="H2380"\w* \w horn|strong="H7161"\w* \w between|strong="H5921"\w* \w his|strong="H3605"\w* \w eyes|strong="H5869"\w*. +\v 6 \w He|strong="H5704"\w* came \w to|strong="H5704"\w* \w the|strong="H6440"\w* ram \w that|strong="H7200"\w* \w had|strong="H1167"\w* \w the|strong="H6440"\w* two \w horns|strong="H7161"\w*, \w which|strong="H7161"\w* \w I|strong="H5704"\w* \w saw|strong="H7200"\w* \w standing|strong="H5975"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w river|strong="H5704"\w*, \w and|strong="H6440"\w* \w ran|strong="H7323"\w* \w on|strong="H7200"\w* \w him|strong="H6440"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* \w fury|strong="H2534"\w* \w of|strong="H6440"\w* \w his|strong="H6440"\w* \w power|strong="H3581"\w*. +\v 7 \w I|strong="H7200"\w* \w saw|strong="H7200"\w* \w him|strong="H6440"\w* \w come|strong="H1961"\w* \w close|strong="H5060"\w* \w to|strong="H1961"\w* \w the|strong="H6440"\w* ram, \w and|strong="H3027"\w* \w he|strong="H8147"\w* \w was|strong="H1961"\w* moved \w with|strong="H6440"\w* \w anger|strong="H6440"\w* \w against|strong="H6440"\w* \w him|strong="H6440"\w*, \w and|strong="H3027"\w* \w struck|strong="H5221"\w* \w the|strong="H6440"\w* ram, \w and|strong="H3027"\w* \w broke|strong="H7665"\w* \w his|strong="H6440"\w* \w two|strong="H8147"\w* \w horns|strong="H7161"\w*. \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w power|strong="H3027"\w* \w in|strong="H6440"\w* \w the|strong="H6440"\w* ram \w to|strong="H1961"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*; \w but|strong="H3808"\w* \w he|strong="H8147"\w* \w cast|strong="H7993"\w* \w him|strong="H6440"\w* \w down|strong="H5221"\w* \w to|strong="H1961"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w* \w and|strong="H3027"\w* \w trampled|strong="H7429"\w* \w on|strong="H7200"\w* \w him|strong="H6440"\w*. \w There|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w who|strong="H5975"\w* \w could|strong="H5337"\w* \w deliver|strong="H5337"\w* \w the|strong="H6440"\w* ram \w out|strong="H7993"\w* \w of|strong="H3027"\w* \w his|strong="H6440"\w* \w hand|strong="H3027"\w*. +\v 8 \w The|strong="H5704"\w* \w male|strong="H6842"\w* \w goat|strong="H5795"\w* \w magnified|strong="H1431"\w* \w himself|strong="H1431"\w* \w exceedingly|strong="H3966"\w*. \w When|strong="H5704"\w* \w he|strong="H5704"\w* \w was|strong="H7307"\w* \w strong|strong="H6105"\w*, \w the|strong="H5704"\w* \w great|strong="H1419"\w* \w horn|strong="H7161"\w* \w was|strong="H7307"\w* \w broken|strong="H7665"\w*; \w and|strong="H8064"\w* \w instead|strong="H8478"\w* \w of|strong="H7307"\w* \w it|strong="H5927"\w* \w there|strong="H5927"\w* \w came|strong="H5927"\w* \w up|strong="H5927"\w* four \w notable|strong="H2380"\w* \w horns|strong="H7161"\w* \w toward|strong="H5927"\w* \w the|strong="H5704"\w* four \w winds|strong="H7307"\w* \w of|strong="H7307"\w* \w the|strong="H5704"\w* \w sky|strong="H8064"\w*. +\p +\v 9 \w Out|strong="H3318"\w* \w of|strong="H4480"\w* \w one|strong="H4480"\w* \w of|strong="H4480"\w* \w them|strong="H1992"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w a|strong="H3068"\w* \w little|strong="H4704"\w* \w horn|strong="H7161"\w* \w which|strong="H1992"\w* \w grew|strong="H1431"\w* \w exceedingly|strong="H3499"\w* \w great|strong="H1431"\w*—\w toward|strong="H4480"\w* \w the|strong="H4480"\w* \w south|strong="H5045"\w*, \w and|strong="H3318"\w* \w toward|strong="H4480"\w* \w the|strong="H4480"\w* \w east|strong="H4217"\w*, \w and|strong="H3318"\w* \w toward|strong="H4480"\w* \w the|strong="H4480"\w* \w glorious|strong="H6643"\w* land. +\v 10 \w It|strong="H5704"\w* \w grew|strong="H1431"\w* \w great|strong="H1431"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H4480"\w* \w army|strong="H6635"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w sky|strong="H8064"\w*; \w and|strong="H8064"\w* \w it|strong="H5704"\w* \w cast|strong="H5307"\w* \w down|strong="H5307"\w* \w some|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w army|strong="H6635"\w* \w and|strong="H8064"\w* \w of|strong="H4480"\w* \w the|strong="H4480"\w* \w stars|strong="H3556"\w* \w to|strong="H5704"\w* \w the|strong="H4480"\w* ground \w and|strong="H8064"\w* \w trampled|strong="H7429"\w* \w on|strong="H5307"\w* \w them|strong="H5307"\w*. +\v 11 Yes, \w it|strong="H7993"\w* \w magnified|strong="H1431"\w* \w itself|strong="H1431"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H4480"\w* \w prince|strong="H8269"\w* \w of|strong="H8269"\w* \w the|strong="H4480"\w* \w army|strong="H6635"\w*; \w and|strong="H8269"\w* \w it|strong="H7993"\w* \w took|strong="H7311"\w* \w away|strong="H7993"\w* \w from|strong="H4480"\w* \w him|strong="H4480"\w* \w the|strong="H4480"\w* \w continual|strong="H8548"\w* \w burnt|strong="H8548"\w* \w offering|strong="H4480"\w*, \w and|strong="H8269"\w* \w the|strong="H4480"\w* \w place|strong="H4349"\w* \w of|strong="H8269"\w* \w his|strong="H4480"\w* \w sanctuary|strong="H4720"\w* \w was|strong="H6635"\w* \w cast|strong="H7993"\w* \w down|strong="H7993"\w*. +\v 12 \w The|strong="H5921"\w* \w army|strong="H6635"\w* \w was|strong="H6635"\w* \w given|strong="H5414"\w* \w over|strong="H5921"\w* \w to|strong="H5921"\w* \w it|strong="H5414"\w* \w together|strong="H5921"\w* \w with|strong="H6213"\w* \w the|strong="H5921"\w* \w continual|strong="H8548"\w* \w burnt|strong="H8548"\w* \w offering|strong="H6213"\w* \w through|strong="H5921"\w* disobedience. \w It|strong="H5414"\w* \w cast|strong="H7993"\w* \w down|strong="H7993"\w* truth \w to|strong="H5921"\w* \w the|strong="H5921"\w* ground, \w and|strong="H6213"\w* \w it|strong="H5414"\w* \w did|strong="H6213"\w* \w its|strong="H5414"\w* pleasure \w and|strong="H6213"\w* \w prospered|strong="H6743"\w*. +\p +\v 13 \w Then|strong="H1696"\w* \w I|strong="H5414"\w* \w heard|strong="H8085"\w* \w a|strong="H3068"\w* \w holy|strong="H6944"\w* \w one|strong="H6918"\w* \w speaking|strong="H1696"\w*; \w and|strong="H8085"\w* another \w holy|strong="H6944"\w* \w one|strong="H6918"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w that|strong="H8085"\w* \w certain|strong="H6422"\w* \w one|strong="H6918"\w* \w who|strong="H6635"\w* \w spoke|strong="H1696"\w*, “\w How|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H6635"\w* \w the|strong="H8085"\w* \w vision|strong="H2377"\w* \w about|strong="H8085"\w* \w the|strong="H8085"\w* \w continual|strong="H8548"\w* \w burnt|strong="H8548"\w* offering, \w and|strong="H8085"\w* \w the|strong="H8085"\w* disobedience \w that|strong="H8085"\w* \w makes|strong="H5414"\w* \w desolate|strong="H8074"\w*, \w to|strong="H1696"\w* \w give|strong="H5414"\w* both \w the|strong="H8085"\w* \w sanctuary|strong="H6944"\w* \w and|strong="H8085"\w* \w the|strong="H8085"\w* \w army|strong="H6635"\w* \w to|strong="H1696"\w* \w be|strong="H5414"\w* \w trodden|strong="H4823"\w* \w under|strong="H5414"\w* \w foot|strong="H4823"\w* \w be|strong="H5414"\w*?” +\p +\v 14 \w He|strong="H5704"\w* said \w to|strong="H5704"\w* \w me|strong="H6153"\w*, “\w To|strong="H5704"\w* \w two|strong="H3967"\w* thousand \w and|strong="H3967"\w* \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w evenings|strong="H6153"\w* \w and|strong="H3967"\w* \w mornings|strong="H1242"\w*. Then \w the|strong="H5704"\w* \w sanctuary|strong="H6944"\w* \w will|strong="H5704"\w* \w be|strong="H6944"\w* \w cleansed|strong="H6663"\w*.” +\p +\v 15 \w When|strong="H1961"\w* \w I|strong="H2009"\w*, \w even|strong="H1840"\w* \w I|strong="H2009"\w* \w Daniel|strong="H1840"\w*, \w had|strong="H1961"\w* \w seen|strong="H7200"\w* \w the|strong="H7200"\w* \w vision|strong="H2377"\w*, \w I|strong="H2009"\w* \w sought|strong="H1245"\w* \w to|strong="H1961"\w* \w understand|strong="H7200"\w* \w it|strong="H7200"\w*. \w Then|strong="H1961"\w* \w behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w stood|strong="H5975"\w* \w before|strong="H5048"\w* \w me|strong="H7200"\w* someone \w with|strong="H1961"\w* \w the|strong="H7200"\w* \w appearance|strong="H4758"\w* \w of|strong="H4758"\w* \w a|strong="H3068"\w* \w man|strong="H1397"\w*. +\v 16 \w I|strong="H8085"\w* \w heard|strong="H8085"\w* \w a|strong="H3068"\w* man’s \w voice|strong="H6963"\w* \w between|strong="H6963"\w* \w the|strong="H8085"\w* banks \w of|strong="H6963"\w* \w the|strong="H8085"\w* Ulai, \w which|strong="H8085"\w* \w called|strong="H7121"\w* \w and|strong="H6963"\w* \w said|strong="H7121"\w*, “\w Gabriel|strong="H1403"\w*, \w make|strong="H8085"\w* \w this|strong="H1975"\w* man \w understand|strong="H8085"\w* \w the|strong="H8085"\w* \w vision|strong="H4758"\w*.” +\p +\v 17 \w So|strong="H5975"\w* \w he|strong="H3588"\w* \w came|strong="H5307"\w* \w near|strong="H6440"\w* \w where|strong="H5921"\w* \w I|strong="H3588"\w* \w stood|strong="H5975"\w*; \w and|strong="H1121"\w* \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w came|strong="H5307"\w*, \w I|strong="H3588"\w* \w was|strong="H1121"\w* \w frightened|strong="H1204"\w*, \w and|strong="H1121"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w my|strong="H5921"\w* \w face|strong="H6440"\w*; \w but|strong="H3588"\w* \w he|strong="H3588"\w* said \w to|strong="H5921"\w* \w me|strong="H6440"\w*, “Understand, \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w man|strong="H1121"\w*, \w for|strong="H3588"\w* \w the|strong="H6440"\w* \w vision|strong="H2377"\w* belongs \w to|strong="H5921"\w* \w the|strong="H6440"\w* \w time|strong="H6256"\w* \w of|strong="H1121"\w* \w the|strong="H6440"\w* \w end|strong="H7093"\w*.” +\p +\v 18 \w Now|strong="H1696"\w* \w as|strong="H6440"\w* \w he|strong="H5921"\w* \w was|strong="H6440"\w* \w speaking|strong="H1696"\w* \w with|strong="H5973"\w* \w me|strong="H6440"\w*, \w I|strong="H5921"\w* \w fell|strong="H7290"\w* \w into|strong="H5921"\w* \w a|strong="H3068"\w* \w deep|strong="H7290"\w* \w sleep|strong="H7290"\w* \w with|strong="H5973"\w* \w my|strong="H5921"\w* \w face|strong="H6440"\w* \w toward|strong="H5921"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w*; \w but|strong="H1696"\w* \w he|strong="H5921"\w* \w touched|strong="H5060"\w* \w me|strong="H6440"\w* \w and|strong="H6440"\w* \w set|strong="H5975"\w* \w me|strong="H6440"\w* \w upright|strong="H5975"\w*. +\p +\v 19 \w He|strong="H3588"\w* said, “\w Behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w make|strong="H3045"\w* \w you|strong="H3588"\w* \w know|strong="H3045"\w* \w what|strong="H3045"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w in|strong="H1961"\w* \w the|strong="H3588"\w* latter \w time|strong="H4150"\w* \w of|strong="H7093"\w* \w the|strong="H3588"\w* \w indignation|strong="H2195"\w*, \w for|strong="H3588"\w* \w it|strong="H3588"\w* \w belongs|strong="H1961"\w* \w to|strong="H1961"\w* \w the|strong="H3588"\w* \w appointed|strong="H4150"\w* \w time|strong="H4150"\w* \w of|strong="H7093"\w* \w the|strong="H3588"\w* \w end|strong="H7093"\w*. +\v 20 \w The|strong="H7200"\w* ram \w which|strong="H7161"\w* \w you|strong="H7200"\w* \w saw|strong="H7200"\w*, \w that|strong="H7200"\w* \w had|strong="H4428"\w* \w the|strong="H7200"\w* two \w horns|strong="H7161"\w*, \w they|strong="H1167"\w* \w are|strong="H4428"\w* \w the|strong="H7200"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Media|strong="H4074"\w* \w and|strong="H4428"\w* \w Persia|strong="H6539"\w*. +\v 21 \w The|strong="H5869"\w* \w rough|strong="H8163"\w* \w male|strong="H8163"\w* \w goat|strong="H8163"\w* \w is|strong="H1931"\w* \w the|strong="H5869"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Greece|strong="H3120"\w*. \w The|strong="H5869"\w* \w great|strong="H1419"\w* \w horn|strong="H7161"\w* \w that|strong="H1931"\w* \w is|strong="H1931"\w* between \w his|strong="H4428"\w* \w eyes|strong="H5869"\w* \w is|strong="H1931"\w* \w the|strong="H5869"\w* \w first|strong="H7223"\w* \w king|strong="H4428"\w*. +\v 22 \w As|strong="H8478"\w* \w for|strong="H8478"\w* \w that|strong="H1471"\w* \w which|strong="H1471"\w* \w was|strong="H4438"\w* \w broken|strong="H7665"\w*, \w in|strong="H5975"\w* \w the|strong="H8478"\w* \w place|strong="H8478"\w* \w where|strong="H8478"\w* four \w stood|strong="H5975"\w* \w up|strong="H5975"\w*, four \w kingdoms|strong="H4438"\w* \w will|strong="H1471"\w* \w stand|strong="H5975"\w* \w up|strong="H5975"\w* \w out|strong="H1471"\w* \w of|strong="H4438"\w* \w the|strong="H8478"\w* \w nation|strong="H1471"\w*, \w but|strong="H3808"\w* \w not|strong="H3808"\w* \w with|strong="H5975"\w* \w his|strong="H8478"\w* \w power|strong="H3581"\w*. +\p +\v 23 “\w In|strong="H4428"\w* \w the|strong="H6440"\w* latter \w time|strong="H6440"\w* \w of|strong="H4428"\w* \w their|strong="H6440"\w* \w kingdom|strong="H4438"\w*, \w when|strong="H5975"\w* \w the|strong="H6440"\w* \w transgressors|strong="H6586"\w* \w have|strong="H4428"\w* \w come|strong="H8552"\w* \w to|strong="H6440"\w* \w the|strong="H6440"\w* \w full|strong="H8552"\w*, \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w fierce|strong="H5794"\w* \w face|strong="H6440"\w*, \w and|strong="H4428"\w* \w understanding|strong="H6440"\w* \w riddles|strong="H2420"\w*, \w will|strong="H4428"\w* \w stand|strong="H5975"\w* \w up|strong="H5975"\w*. +\v 24 \w His|strong="H6213"\w* \w power|strong="H3581"\w* \w will|strong="H5971"\w* \w be|strong="H3808"\w* \w mighty|strong="H6099"\w*, \w but|strong="H3808"\w* \w not|strong="H3808"\w* \w by|strong="H3808"\w* \w his|strong="H6213"\w* \w own|strong="H5971"\w* \w power|strong="H3581"\w*. \w He|strong="H6213"\w* \w will|strong="H5971"\w* \w destroy|strong="H7843"\w* awesomely, \w and|strong="H5971"\w* \w will|strong="H5971"\w* \w prosper|strong="H6743"\w* \w in|strong="H6213"\w* \w what|strong="H6213"\w* \w he|strong="H6213"\w* \w does|strong="H6213"\w*. \w He|strong="H6213"\w* \w will|strong="H5971"\w* \w destroy|strong="H7843"\w* \w the|strong="H6213"\w* \w mighty|strong="H6099"\w* \w ones|strong="H6918"\w* \w and|strong="H5971"\w* \w the|strong="H6213"\w* \w holy|strong="H6918"\w* \w people|strong="H5971"\w*. +\v 25 \w Through|strong="H3027"\w* \w his|strong="H5921"\w* \w policy|strong="H7922"\w* \w he|strong="H3027"\w* \w will|strong="H3027"\w* cause \w deceit|strong="H4820"\w* \w to|strong="H5921"\w* \w prosper|strong="H6743"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w hand|strong="H3027"\w*. \w He|strong="H3027"\w* \w will|strong="H3027"\w* \w magnify|strong="H1431"\w* \w himself|strong="H3027"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w heart|strong="H3824"\w*, \w and|strong="H3027"\w* \w he|strong="H3027"\w* \w will|strong="H3027"\w* \w destroy|strong="H7843"\w* \w many|strong="H7227"\w* \w in|strong="H5921"\w* \w their|strong="H5921"\w* security. \w He|strong="H3027"\w* \w will|strong="H3027"\w* \w also|strong="H3027"\w* \w stand|strong="H5975"\w* \w up|strong="H5975"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w prince|strong="H8269"\w* \w of|strong="H3027"\w* \w princes|strong="H8269"\w*, \w but|strong="H5921"\w* \w he|strong="H3027"\w* \w will|strong="H3027"\w* \w be|strong="H3027"\w* \w broken|strong="H7665"\w* \w without|strong="H7665"\w* \w human|strong="H3027"\w* \w hands|strong="H3027"\w*. +\p +\v 26 “\w The|strong="H3588"\w* \w vision|strong="H2377"\w* \w of|strong="H3117"\w* \w the|strong="H3588"\w* \w evenings|strong="H6153"\w* \w and|strong="H3117"\w* \w mornings|strong="H1242"\w* \w which|strong="H1931"\w* \w has|strong="H3117"\w* been told \w is|strong="H1931"\w* true; \w but|strong="H3588"\w* seal \w up|strong="H5640"\w* \w the|strong="H3588"\w* \w vision|strong="H2377"\w*, \w for|strong="H3588"\w* \w it|strong="H1931"\w* belongs \w to|strong="H3117"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w* \w to|strong="H3117"\w* come.” +\p +\v 27 \w I|strong="H3117"\w*, \w Daniel|strong="H1840"\w*, \w fainted|strong="H1961"\w*, \w and|strong="H6965"\w* \w was|strong="H1961"\w* \w sick|strong="H2470"\w* \w for|strong="H5921"\w* \w some|strong="H3117"\w* \w days|strong="H3117"\w*. \w Then|strong="H1961"\w* \w I|strong="H3117"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w and|strong="H6965"\w* \w did|strong="H6213"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*’s \w business|strong="H4399"\w*. \w I|strong="H3117"\w* \w wondered|strong="H8074"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w vision|strong="H4758"\w*, \w but|strong="H1961"\w* \w no|strong="H6213"\w* \w one|strong="H1961"\w* understood \w it|strong="H5921"\w*. +\c 9 +\p +\v 1 \w In|strong="H5921"\w* \w the|strong="H5921"\w* \w first|strong="H1121"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Darius|strong="H1867"\w* \w the|strong="H5921"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Ahasuerus, \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w offspring|strong="H2233"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w Medes|strong="H4074"\w*, \w who|strong="H1121"\w* \w was|strong="H1121"\w* \w made|strong="H4427"\w* \w king|strong="H4427"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* \w realm|strong="H4438"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w Chaldeans|strong="H3778"\w*— +\v 2 \w in|strong="H8141"\w* \w the|strong="H3068"\w* first \w year|strong="H8141"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w reign|strong="H4427"\w* \w I|strong="H1697"\w*, \w Daniel|strong="H1840"\w*, understood \w by|strong="H8141"\w* \w the|strong="H3068"\w* \w books|strong="H5612"\w* \w the|strong="H3068"\w* \w number|strong="H4557"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w years|strong="H8141"\w* \w about|strong="H1961"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s\f + \fr 9:2 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. \f* \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jeremiah|strong="H3414"\w* \w the|strong="H3068"\w* \w prophet|strong="H5030"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* accomplishing \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w desolations|strong="H2723"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, \w even|strong="H3068"\w* \w seventy|strong="H7657"\w* \w years|strong="H8141"\w*. +\v 3 \w I|strong="H5414"\w* \w set|strong="H5414"\w* \w my|strong="H5414"\w* \w face|strong="H6440"\w* \w to|strong="H5414"\w* \w the|strong="H6440"\w* Lord \w God|strong="H5414"\w*, \w to|strong="H5414"\w* \w seek|strong="H1245"\w* \w by|strong="H5414"\w* \w prayer|strong="H8605"\w* \w and|strong="H6440"\w* petitions, \w with|strong="H6440"\w* \w fasting|strong="H6685"\w* \w and|strong="H6440"\w* \w sackcloth|strong="H8242"\w* \w and|strong="H6440"\w* ashes. +\p +\v 4 \w I|strong="H3068"\w* \w prayed|strong="H6419"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w my|strong="H8104"\w* \w God|strong="H3068"\w*, \w and|strong="H3068"\w* \w made|strong="H6419"\w* \w confession|strong="H3034"\w*, \w and|strong="H3068"\w* said, +\pi1 “Oh, \w Lord|strong="H3068"\w*, \w the|strong="H8104"\w* \w great|strong="H1419"\w* \w and|strong="H3068"\w* \w dreadful|strong="H3372"\w* \w God|strong="H3068"\w*, \w who|strong="H3068"\w* \w keeps|strong="H8104"\w* \w covenant|strong="H1285"\w* \w and|strong="H3068"\w* loving \w kindness|strong="H2617"\w* \w with|strong="H3068"\w* those \w who|strong="H3068"\w* \w love|strong="H2617"\w* \w him|strong="H8104"\w* \w and|strong="H3068"\w* \w keep|strong="H8104"\w* \w his|strong="H8104"\w* \w commandments|strong="H4687"\w*, +\v 5 \w we|strong="H3068"\w* have \w sinned|strong="H2398"\w*, \w and|strong="H4941"\w* have dealt \w perversely|strong="H5753"\w*, \w and|strong="H4941"\w* have \w done|strong="H2398"\w* \w wickedly|strong="H7561"\w*, \w and|strong="H4941"\w* have \w rebelled|strong="H4775"\w*, even \w turning|strong="H5493"\w* \w aside|strong="H5493"\w* \w from|strong="H5493"\w* \w your|strong="H5493"\w* \w precepts|strong="H4687"\w* \w and|strong="H4941"\w* \w from|strong="H5493"\w* \w your|strong="H5493"\w* \w ordinances|strong="H4941"\w*. +\v 6 \w We|strong="H8085"\w* haven’t \w listened|strong="H8085"\w* \w to|strong="H1696"\w* \w your|strong="H3605"\w* \w servants|strong="H5650"\w* \w the|strong="H3605"\w* \w prophets|strong="H5030"\w*, \w who|strong="H3605"\w* \w spoke|strong="H1696"\w* \w in|strong="H4428"\w* \w your|strong="H3605"\w* \w name|strong="H8034"\w* \w to|strong="H1696"\w* \w our|strong="H3605"\w* \w kings|strong="H4428"\w*, \w our|strong="H3605"\w* \w princes|strong="H8269"\w*, \w and|strong="H4428"\w* \w our|strong="H3605"\w* fathers, \w and|strong="H4428"\w* \w to|strong="H1696"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* land. +\pi1 +\v 7 “Lord, \w righteousness|strong="H6666"\w* belongs \w to|strong="H3478"\w* \w you|strong="H6440"\w*, \w but|strong="H3605"\w* \w to|strong="H3478"\w* \w us|strong="H6440"\w* \w confusion|strong="H1322"\w* \w of|strong="H3117"\w* \w face|strong="H6440"\w*, \w as|strong="H3117"\w* \w it|strong="H8033"\w* \w is|strong="H2088"\w* \w today|strong="H3117"\w*; \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H3117"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w to|strong="H3478"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3117"\w* \w Jerusalem|strong="H3389"\w*, \w and|strong="H3063"\w* \w to|strong="H3478"\w* \w all|strong="H3605"\w* \w Israel|strong="H3478"\w*, \w who|strong="H3605"\w* \w are|strong="H3117"\w* \w near|strong="H7138"\w* \w and|strong="H3063"\w* \w who|strong="H3605"\w* \w are|strong="H3117"\w* \w far|strong="H7350"\w* \w off|strong="H7350"\w*, \w through|strong="H3605"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* countries \w where|strong="H8033"\w* \w you|strong="H6440"\w* \w have|strong="H3478"\w* \w driven|strong="H5080"\w* \w them|strong="H6440"\w*, \w because|strong="H6440"\w* \w of|strong="H3117"\w* \w their|strong="H3605"\w* \w trespass|strong="H4604"\w* \w that|strong="H3605"\w* \w they|strong="H3117"\w* \w have|strong="H3478"\w* \w trespassed|strong="H4603"\w* \w against|strong="H6440"\w* \w you|strong="H6440"\w*. +\v 8 \w Lord|strong="H3068"\w*, \w to|strong="H3068"\w* \w us|strong="H6440"\w* belongs \w confusion|strong="H1322"\w* \w of|strong="H4428"\w* \w face|strong="H6440"\w*, \w to|strong="H3068"\w* \w our|strong="H3068"\w* \w kings|strong="H4428"\w*, \w to|strong="H3068"\w* \w our|strong="H3068"\w* \w princes|strong="H8269"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w our|strong="H3068"\w* fathers, \w because|strong="H6440"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w* \w against|strong="H6440"\w* \w you|strong="H6440"\w*. +\v 9 \w To|strong="H3588"\w* \w the|strong="H3588"\w* Lord \w our|strong="H3588"\w* God belong \w mercies|strong="H7356"\w* \w and|strong="H7356"\w* \w forgiveness|strong="H5547"\w*, \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3588"\w* \w rebelled|strong="H4775"\w* \w against|strong="H4775"\w* \w him|strong="H3588"\w*. +\v 10 \w We|strong="H8085"\w* haven’t \w obeyed|strong="H8085"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w*, \w to|strong="H3068"\w* \w walk|strong="H3212"\w* \w in|strong="H3068"\w* \w his|strong="H5414"\w* \w laws|strong="H8451"\w*, \w which|strong="H3068"\w* \w he|strong="H3068"\w* \w set|strong="H5414"\w* \w before|strong="H6440"\w* \w us|strong="H5414"\w* \w by|strong="H3027"\w* \w his|strong="H5414"\w* \w servants|strong="H5650"\w* \w the|strong="H6440"\w* \w prophets|strong="H5030"\w*. +\v 11 \w Yes|strong="H3588"\w*, \w all|strong="H3605"\w* \w Israel|strong="H3478"\w* \w have|strong="H5650"\w* \w transgressed|strong="H5674"\w* \w your|strong="H3605"\w* \w law|strong="H8451"\w*, \w turning|strong="H5493"\w* \w aside|strong="H5493"\w*, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w should|strong="H3588"\w* \w not|strong="H1115"\w* \w obey|strong="H8085"\w* \w your|strong="H3605"\w* \w voice|strong="H6963"\w*. +\pi1 “\w Therefore|strong="H5921"\w* \w the|strong="H3605"\w* \w curse|strong="H7621"\w* \w and|strong="H4872"\w* \w the|strong="H3605"\w* \w oath|strong="H7621"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w of|strong="H6963"\w* \w Moses|strong="H4872"\w* \w the|strong="H3605"\w* \w servant|strong="H5650"\w* \w of|strong="H6963"\w* God \w has|strong="H3478"\w* \w been|strong="H5674"\w* \w poured|strong="H5413"\w* \w out|strong="H5413"\w* \w on|strong="H5921"\w* \w us|strong="H5921"\w*, \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H5650"\w* \w sinned|strong="H2398"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 12 \w He|strong="H6213"\w* \w has|strong="H1697"\w* \w confirmed|strong="H6965"\w* \w his|strong="H3605"\w* \w words|strong="H1697"\w*, \w which|strong="H1697"\w* \w he|strong="H6213"\w* \w spoke|strong="H1696"\w* \w against|strong="H5921"\w* \w us|strong="H5921"\w* \w and|strong="H6965"\w* \w against|strong="H5921"\w* \w our|strong="H3605"\w* \w judges|strong="H8199"\w* \w who|strong="H3605"\w* \w judged|strong="H8199"\w* \w us|strong="H5921"\w*, \w by|strong="H5921"\w* bringing \w on|strong="H5921"\w* \w us|strong="H5921"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w evil|strong="H7451"\w*; \w for|strong="H5921"\w* \w under|strong="H8478"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w sky|strong="H8064"\w*, \w such|strong="H1696"\w* \w has|strong="H1697"\w* \w not|strong="H3808"\w* \w been|strong="H3808"\w* \w done|strong="H6213"\w* \w as|strong="H1697"\w* \w has|strong="H1697"\w* \w been|strong="H3808"\w* \w done|strong="H6213"\w* \w to|strong="H1696"\w* \w Jerusalem|strong="H3389"\w*. +\v 13 \w As|strong="H3068"\w* \w it|strong="H5921"\w* \w is|strong="H3068"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w* \w of|strong="H3068"\w* \w Moses|strong="H4872"\w*, \w all|strong="H3605"\w* \w this|strong="H2063"\w* \w evil|strong="H7451"\w* \w has|strong="H3068"\w* \w come|strong="H7725"\w* \w on|strong="H5921"\w* \w us|strong="H7725"\w*. \w Yet|strong="H3068"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w entreated|strong="H2470"\w* \w the|strong="H3605"\w* \w favor|strong="H6440"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, \w that|strong="H3605"\w* \w we|strong="H3068"\w* \w should|strong="H3068"\w* \w turn|strong="H7725"\w* \w from|strong="H7725"\w* \w our|strong="H3068"\w* \w iniquities|strong="H5771"\w* \w and|strong="H4872"\w* \w have|strong="H3068"\w* \w discernment|strong="H7919"\w* \w in|strong="H5921"\w* \w your|strong="H3068"\w* \w truth|strong="H3808"\w*. +\v 14 \w Therefore|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w watched|strong="H8245"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w evil|strong="H7451"\w*, \w and|strong="H3068"\w* \w brought|strong="H6213"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w us|strong="H5921"\w*; \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w is|strong="H3068"\w* \w righteous|strong="H6662"\w* \w in|strong="H5921"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w works|strong="H4639"\w* \w which|strong="H3068"\w* \w he|strong="H3588"\w* \w does|strong="H6213"\w*, \w and|strong="H3068"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w obeyed|strong="H8085"\w* \w his|strong="H3605"\w* \w voice|strong="H6963"\w*. +\pi1 +\v 15 “\w Now|strong="H6258"\w*, Lord \w our|strong="H3318"\w* \w God|strong="H3027"\w*, \w who|strong="H5971"\w* \w has|strong="H3117"\w* \w brought|strong="H3318"\w* \w your|strong="H6213"\w* \w people|strong="H5971"\w* \w out|strong="H3318"\w* \w of|strong="H3117"\w* \w the|strong="H6213"\w* land \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w* \w with|strong="H6213"\w* \w a|strong="H3068"\w* \w mighty|strong="H2389"\w* \w hand|strong="H3027"\w*, \w and|strong="H3117"\w* \w have|strong="H5971"\w* \w gotten|strong="H6213"\w* \w yourself|strong="H6213"\w* \w renown|strong="H8034"\w*, \w as|strong="H3117"\w* \w it|strong="H6213"\w* \w is|strong="H2088"\w* \w today|strong="H3117"\w*, \w we|strong="H3068"\w* \w have|strong="H5971"\w* \w sinned|strong="H2398"\w*. \w We|strong="H3117"\w* \w have|strong="H5971"\w* \w done|strong="H6213"\w* \w wickedly|strong="H7561"\w*. +\v 16 Lord, according \w to|strong="H7725"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w righteousness|strong="H6666"\w*, \w please|strong="H4994"\w* \w let|strong="H4994"\w* \w your|strong="H3605"\w* \w anger|strong="H2534"\w* \w and|strong="H7725"\w* \w your|strong="H3605"\w* \w wrath|strong="H2534"\w* \w be|strong="H4994"\w* \w turned|strong="H7725"\w* \w away|strong="H7725"\w* \w from|strong="H7725"\w* \w your|strong="H3605"\w* \w city|strong="H5892"\w* \w Jerusalem|strong="H3389"\w*, \w your|strong="H3605"\w* \w holy|strong="H6944"\w* \w mountain|strong="H2022"\w*; \w because|strong="H3588"\w* \w for|strong="H3588"\w* \w our|strong="H3605"\w* \w sins|strong="H2399"\w* \w and|strong="H7725"\w* \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w iniquities|strong="H5771"\w* \w of|strong="H5892"\w* \w our|strong="H3605"\w* fathers, \w Jerusalem|strong="H3389"\w* \w and|strong="H7725"\w* \w your|strong="H3605"\w* \w people|strong="H5971"\w* \w have|strong="H5971"\w* \w become|strong="H7725"\w* \w a|strong="H3068"\w* \w reproach|strong="H2781"\w* \w to|strong="H7725"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H5971"\w* \w around|strong="H5439"\w* \w us|strong="H4994"\w*. +\pi1 +\v 17 “\w Now|strong="H6258"\w* \w therefore|strong="H5921"\w*, \w our|strong="H5921"\w* God, \w listen|strong="H8085"\w* \w to|strong="H5921"\w* \w the|strong="H6440"\w* \w prayer|strong="H8605"\w* \w of|strong="H6440"\w* \w your|strong="H5921"\w* \w servant|strong="H5650"\w* \w and|strong="H5650"\w* \w to|strong="H5921"\w* \w his|strong="H8085"\w* petitions, \w and|strong="H5650"\w* cause \w your|strong="H5921"\w* \w face|strong="H6440"\w* \w to|strong="H5921"\w* shine \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w sanctuary|strong="H4720"\w* \w that|strong="H8085"\w* \w is|strong="H5650"\w* \w desolate|strong="H8076"\w*, \w for|strong="H5921"\w* \w the|strong="H6440"\w* Lord’s \w sake|strong="H4616"\w*. +\v 18 \w My|strong="H8085"\w* \w God|strong="H3808"\w*, \w turn|strong="H5186"\w* \w your|strong="H5921"\w* \w ear|strong="H8085"\w* \w and|strong="H5892"\w* \w hear|strong="H8085"\w*. \w Open|strong="H6440"\w* \w your|strong="H5921"\w* \w eyes|strong="H5869"\w* \w and|strong="H5892"\w* \w see|strong="H7200"\w* \w our|strong="H7200"\w* \w desolations|strong="H8077"\w*, \w and|strong="H5892"\w* \w the|strong="H6440"\w* \w city|strong="H5892"\w* \w which|strong="H5869"\w* \w is|strong="H8034"\w* \w called|strong="H7121"\w* \w by|strong="H5921"\w* \w your|strong="H5921"\w* \w name|strong="H8034"\w*; \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w do|strong="H5869"\w* \w not|strong="H3808"\w* \w present|strong="H5307"\w* \w our|strong="H7200"\w* petitions \w before|strong="H6440"\w* \w you|strong="H3588"\w* \w for|strong="H3588"\w* \w our|strong="H7200"\w* \w righteousness|strong="H6666"\w*, \w but|strong="H3588"\w* \w for|strong="H3588"\w* \w your|strong="H5921"\w* \w great|strong="H7227"\w* \w mercies|strong="H7356"\w*’ \w sake|strong="H5921"\w*. +\v 19 Lord, \w hear|strong="H8085"\w*. Lord, \w forgive|strong="H5545"\w*. Lord, \w listen|strong="H8085"\w* \w and|strong="H5971"\w* \w do|strong="H6213"\w*. Don’t defer, \w for|strong="H3588"\w* \w your|strong="H5921"\w* \w own|strong="H5971"\w* \w sake|strong="H4616"\w*, \w my|strong="H8085"\w* God, \w because|strong="H3588"\w* \w your|strong="H5921"\w* \w city|strong="H5892"\w* \w and|strong="H5971"\w* \w your|strong="H5921"\w* \w people|strong="H5971"\w* \w are|strong="H5971"\w* \w called|strong="H7121"\w* \w by|strong="H5921"\w* \w your|strong="H5921"\w* \w name|strong="H8034"\w*.” +\b +\p +\v 20 \w While|strong="H5750"\w* \w I|strong="H5921"\w* \w was|strong="H3068"\w* \w speaking|strong="H1696"\w*, \w praying|strong="H6419"\w*, \w and|strong="H3478"\w* \w confessing|strong="H3034"\w* \w my|strong="H3068"\w* \w sin|strong="H2403"\w* \w and|strong="H3478"\w* \w the|strong="H6440"\w* \w sin|strong="H2403"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* \w presenting|strong="H5307"\w* \w my|strong="H3068"\w* \w supplication|strong="H8467"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w* \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w holy|strong="H6944"\w* \w mountain|strong="H2022"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*— +\v 21 \w yes|strong="H7200"\w*, \w while|strong="H5750"\w* \w I|strong="H7200"\w* \w was|strong="H4503"\w* \w speaking|strong="H1696"\w* \w in|strong="H1696"\w* \w prayer|strong="H8605"\w*—\w the|strong="H7200"\w* \w man|strong="H7200"\w* \w Gabriel|strong="H1403"\w*, whom \w I|strong="H7200"\w* \w had|strong="H5750"\w* \w seen|strong="H7200"\w* \w in|strong="H1696"\w* \w the|strong="H7200"\w* \w vision|strong="H2377"\w* \w at|strong="H7200"\w* \w the|strong="H7200"\w* \w beginning|strong="H8462"\w*, \w being|strong="H5750"\w* caused \w to|strong="H1696"\w* \w fly|strong="H3286"\w* \w swiftly|strong="H3288"\w*, \w touched|strong="H5060"\w* \w me|strong="H7200"\w* \w about|strong="H6256"\w* \w the|strong="H7200"\w* \w time|strong="H6256"\w* \w of|strong="H6256"\w* \w the|strong="H7200"\w* \w evening|strong="H6153"\w* \w offering|strong="H4503"\w*. +\v 22 \w He|strong="H1696"\w* \w instructed|strong="H1696"\w* \w me|strong="H3318"\w* \w and|strong="H3318"\w* \w talked|strong="H1696"\w* \w with|strong="H5973"\w* \w me|strong="H3318"\w*, \w and|strong="H3318"\w* \w said|strong="H1696"\w*, “\w Daniel|strong="H1840"\w*, \w I|strong="H6258"\w* \w have|strong="H7919"\w* \w now|strong="H6258"\w* \w come|strong="H3318"\w* \w to|strong="H1696"\w* \w give|strong="H1696"\w* \w you|strong="H5973"\w* \w wisdom|strong="H7919"\w* \w and|strong="H3318"\w* \w understanding|strong="H7919"\w*. +\v 23 \w At|strong="H3318"\w* \w the|strong="H3588"\w* \w beginning|strong="H8462"\w* \w of|strong="H1697"\w* \w your|strong="H3588"\w* petitions \w the|strong="H3588"\w* \w commandment|strong="H1697"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w*, \w and|strong="H1697"\w* \w I|strong="H3588"\w* \w have|strong="H1697"\w* \w come|strong="H3318"\w* \w to|strong="H3318"\w* \w tell|strong="H5046"\w* \w you|strong="H3588"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H1697"\w* greatly beloved. \w Therefore|strong="H3588"\w* consider \w the|strong="H3588"\w* \w matter|strong="H1697"\w* \w and|strong="H1697"\w* understand \w the|strong="H3588"\w* \w vision|strong="H4758"\w*. +\p +\v 24 “\w Seventy|strong="H7657"\w* \w weeks|strong="H7620"\w* \w are|strong="H5971"\w* \w decreed|strong="H2852"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w people|strong="H5971"\w* \w and|strong="H5971"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w holy|strong="H6944"\w* \w city|strong="H5892"\w*, \w to|strong="H5921"\w* \w finish|strong="H3607"\w* disobedience, \w to|strong="H5921"\w* \w make|strong="H3722"\w* \w an|strong="H5892"\w* end \w of|strong="H5892"\w* \w sins|strong="H2403"\w*, \w to|strong="H5921"\w* \w make|strong="H3722"\w* \w reconciliation|strong="H3722"\w* \w for|strong="H5921"\w* \w iniquity|strong="H5771"\w*, \w to|strong="H5921"\w* bring \w in|strong="H5921"\w* \w everlasting|strong="H5769"\w* \w righteousness|strong="H6664"\w*, \w to|strong="H5921"\w* \w seal|strong="H2856"\w* \w up|strong="H2856"\w* \w vision|strong="H2377"\w* \w and|strong="H5971"\w* \w prophecy|strong="H5030"\w*, \w and|strong="H5971"\w* \w to|strong="H5921"\w* \w anoint|strong="H4886"\w* \w the|strong="H5921"\w* \w most|strong="H6944"\w* \w holy|strong="H6944"\w*. +\p +\v 25 “\w Know|strong="H3045"\w* \w therefore|strong="H3045"\w* \w and|strong="H7725"\w* \w discern|strong="H3045"\w* \w that|strong="H3045"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w going|strong="H4161"\w* \w out|strong="H4480"\w* \w of|strong="H1697"\w* \w the|strong="H4480"\w* \w commandment|strong="H1697"\w* \w to|strong="H5704"\w* \w restore|strong="H7725"\w* \w and|strong="H7725"\w* \w build|strong="H1129"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H5704"\w* \w the|strong="H4480"\w* \w Anointed|strong="H4899"\w* \w One|strong="H4480"\w*,\f + \fr 9:25 \ft “Anointed One” can also be translated “Messiah” (same as “Christ”).\f* \w the|strong="H4480"\w* \w prince|strong="H5057"\w*, \w will|strong="H3389"\w* \w be|strong="H1697"\w* \w seven|strong="H7651"\w* \w weeks|strong="H7620"\w* \w and|strong="H7725"\w* \w sixty-two|strong="H8346"\w* \w weeks|strong="H7620"\w*. \w It|strong="H7725"\w* \w will|strong="H3389"\w* \w be|strong="H1697"\w* \w built|strong="H1129"\w* \w again|strong="H7725"\w*, \w with|strong="H1697"\w* \w street|strong="H7339"\w* \w and|strong="H7725"\w* \w moat|strong="H2742"\w*, \w even|strong="H5704"\w* \w in|strong="H7725"\w* troubled \w times|strong="H6256"\w*. +\v 26 \w After|strong="H7093"\w* \w the|strong="H5704"\w* \w sixty-two|strong="H8346"\w* \w weeks|strong="H7620"\w* \w the|strong="H5704"\w* \w Anointed|strong="H4899"\w* \w One|strong="H5892"\w*\f + \fr 9:26 \ft “Anointed One” can also be translated “Messiah” (same as “Christ”).\f* \w will|strong="H5971"\w* \w be|strong="H5892"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*, \w and|strong="H5971"\w* \w will|strong="H5971"\w* \w have|strong="H5971"\w* nothing. \w The|strong="H5704"\w* \w people|strong="H5971"\w* \w of|strong="H5892"\w* \w the|strong="H5704"\w* \w prince|strong="H5057"\w* \w who|strong="H5971"\w* \w come|strong="H5971"\w* \w will|strong="H5971"\w* \w destroy|strong="H7843"\w* \w the|strong="H5704"\w* \w city|strong="H5892"\w* \w and|strong="H5971"\w* \w the|strong="H5704"\w* \w sanctuary|strong="H6944"\w*. \w Its|strong="H3772"\w* \w end|strong="H7093"\w* \w will|strong="H5971"\w* \w be|strong="H5892"\w* \w with|strong="H5971"\w* \w a|strong="H3068"\w* \w flood|strong="H7858"\w*, \w and|strong="H5971"\w* \w war|strong="H4421"\w* \w will|strong="H5971"\w* \w be|strong="H5892"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w end|strong="H7093"\w*. \w Desolations|strong="H8074"\w* \w are|strong="H5971"\w* \w determined|strong="H2782"\w*. +\v 27 \w He|strong="H5704"\w* \w will|strong="H7227"\w* \w make|strong="H8074"\w* \w a|strong="H3068"\w* \w firm|strong="H1396"\w* \w covenant|strong="H1285"\w* \w with|strong="H1285"\w* \w many|strong="H7227"\w* \w for|strong="H5704"\w* \w one|strong="H3671"\w* \w week|strong="H7620"\w*. \w In|strong="H5921"\w* \w the|strong="H5921"\w* \w middle|strong="H2677"\w* \w of|strong="H2077"\w* \w the|strong="H5921"\w* \w week|strong="H7620"\w* \w he|strong="H5704"\w* \w will|strong="H7227"\w* cause \w the|strong="H5921"\w* \w sacrifice|strong="H2077"\w* \w and|strong="H1285"\w* \w the|strong="H5921"\w* \w offering|strong="H4503"\w* \w to|strong="H5704"\w* \w cease|strong="H7673"\w*. \w On|strong="H5921"\w* \w the|strong="H5921"\w* \w wing|strong="H3671"\w* \w of|strong="H2077"\w* \w abominations|strong="H8251"\w* \w will|strong="H7227"\w* come \w one|strong="H3671"\w* \w who|strong="H7227"\w* \w makes|strong="H8074"\w* \w desolate|strong="H8074"\w*; \w and|strong="H1285"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w decreed|strong="H2782"\w* \w full|strong="H7227"\w* \w end|strong="H3617"\w*, wrath \w will|strong="H7227"\w* \w be|strong="H1285"\w* \w poured|strong="H5413"\w* \w out|strong="H5413"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w desolate|strong="H8074"\w*.” +\c 10 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H7121"\w* \w third|strong="H7969"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w Cyrus|strong="H3566"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Persia|strong="H6539"\w* \w a|strong="H3068"\w* \w message|strong="H1697"\w* \w was|strong="H8034"\w* \w revealed|strong="H1540"\w* \w to|strong="H4428"\w* \w Daniel|strong="H1840"\w*, \w whose|strong="H8034"\w* \w name|strong="H8034"\w* \w was|strong="H8034"\w* \w called|strong="H7121"\w* \w Belteshazzar|strong="H1095"\w*; \w and|strong="H4428"\w* \w the|strong="H7121"\w* \w message|strong="H1697"\w* \w was|strong="H8034"\w* true, \w even|strong="H1840"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w warfare|strong="H6635"\w*. \w He|strong="H8141"\w* understood \w the|strong="H7121"\w* \w message|strong="H1697"\w*, \w and|strong="H4428"\w* \w had|strong="H4428"\w* understanding \w of|strong="H4428"\w* \w the|strong="H7121"\w* \w vision|strong="H4758"\w*. +\p +\v 2 \w In|strong="H3117"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w* \w I|strong="H3117"\w*, \w Daniel|strong="H1840"\w*, \w was|strong="H1961"\w* mourning \w three|strong="H7969"\w* \w whole|strong="H3117"\w* \w weeks|strong="H7620"\w*. +\v 3 \w I|strong="H3117"\w* ate \w no|strong="H3808"\w* \w pleasant|strong="H2530"\w* \w food|strong="H3899"\w*. \w No|strong="H3808"\w* \w meat|strong="H1320"\w* \w or|strong="H3808"\w* \w wine|strong="H3196"\w* \w came|strong="H1320"\w* \w into|strong="H5704"\w* \w my|strong="H4390"\w* \w mouth|strong="H6310"\w*. \w I|strong="H3117"\w* didn’t \w anoint|strong="H5480"\w* \w myself|strong="H1320"\w* \w at|strong="H3117"\w* \w all|strong="H5704"\w*, \w until|strong="H5704"\w* \w three|strong="H7969"\w* \w whole|strong="H3117"\w* \w weeks|strong="H7620"\w* \w were|strong="H3117"\w* \w fulfilled|strong="H4390"\w*. +\p +\v 4 \w In|strong="H5921"\w* \w the|strong="H5921"\w* \w twenty-fourth|strong="H6242"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w first|strong="H7223"\w* \w month|strong="H2320"\w*, \w as|strong="H3117"\w* \w I|strong="H3117"\w* \w was|strong="H1961"\w* \w by|strong="H3027"\w* \w the|strong="H5921"\w* \w side|strong="H3027"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w great|strong="H1419"\w* \w river|strong="H5104"\w*, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w Hiddekel|strong="H2313"\w*,\f + \fr 10:4 \ft or, Tigris River\f* +\v 5 \w I|strong="H2009"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w my|strong="H7200"\w* \w eyes|strong="H5869"\w* \w and|strong="H5869"\w* \w looked|strong="H7200"\w*, \w and|strong="H5869"\w* \w behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w was|strong="H4975"\w* \w a|strong="H3068"\w* \w man|strong="H5375"\w* \w clothed|strong="H3847"\w* \w in|strong="H3847"\w* linen, whose \w waist|strong="H4975"\w* \w was|strong="H4975"\w* adorned \w with|strong="H3847"\w* \w pure|strong="H3800"\w* \w gold|strong="H3800"\w* \w of|strong="H5869"\w* Uphaz. +\v 6 \w His|strong="H6440"\w* \w body|strong="H1472"\w* \w also|strong="H5869"\w* \w was|strong="H1697"\w* \w like|strong="H4758"\w* \w beryl|strong="H8658"\w*, \w and|strong="H6963"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w* \w as|strong="H1697"\w* \w the|strong="H6440"\w* \w appearance|strong="H4758"\w* \w of|strong="H1697"\w* \w lightning|strong="H1300"\w*, \w and|strong="H6963"\w* \w his|strong="H6440"\w* \w eyes|strong="H5869"\w* \w as|strong="H1697"\w* flaming \w torches|strong="H3940"\w*. \w His|strong="H6440"\w* \w arms|strong="H2220"\w* \w and|strong="H6963"\w* \w his|strong="H6440"\w* \w feet|strong="H4772"\w* \w were|strong="H5869"\w* \w like|strong="H4758"\w* \w burnished|strong="H7044"\w* \w bronze|strong="H5178"\w*. \w The|strong="H6440"\w* \w voice|strong="H6963"\w* \w of|strong="H1697"\w* \w his|strong="H6440"\w* \w words|strong="H1697"\w* \w was|strong="H1697"\w* \w like|strong="H4758"\w* \w the|strong="H6440"\w* \w voice|strong="H6963"\w* \w of|strong="H1697"\w* \w a|strong="H3068"\w* \w multitude|strong="H1995"\w*. +\p +\v 7 \w I|strong="H5921"\w*, \w Daniel|strong="H1840"\w*, \w alone|strong="H1840"\w* \w saw|strong="H7200"\w* \w the|strong="H5921"\w* \w vision|strong="H4759"\w*, \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w men|strong="H1419"\w* \w who|strong="H3808"\w* \w were|strong="H1961"\w* \w with|strong="H5973"\w* \w me|strong="H7200"\w* didn’t \w see|strong="H7200"\w* \w the|strong="H5921"\w* \w vision|strong="H4759"\w*, \w but|strong="H3808"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w quaking|strong="H2731"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*, \w and|strong="H1419"\w* \w they|strong="H3808"\w* \w fled|strong="H1272"\w* \w to|strong="H1961"\w* \w hide|strong="H2244"\w* \w themselves|strong="H2244"\w*. +\v 8 \w So|strong="H3808"\w* \w I|strong="H5921"\w* \w was|strong="H3808"\w* \w left|strong="H7604"\w* \w alone|strong="H7604"\w* \w and|strong="H1419"\w* \w saw|strong="H7200"\w* \w this|strong="H2063"\w* \w great|strong="H1419"\w* \w vision|strong="H4759"\w*. \w No|strong="H3808"\w* \w strength|strong="H3581"\w* \w remained|strong="H7604"\w* \w in|strong="H5921"\w* \w me|strong="H7200"\w*; \w for|strong="H5921"\w* \w my|strong="H7200"\w* \w face|strong="H7200"\w* grew \w deathly|strong="H4889"\w* pale, \w and|strong="H1419"\w* \w I|strong="H5921"\w* \w retained|strong="H6113"\w* \w no|strong="H3808"\w* \w strength|strong="H3581"\w*. +\v 9 \w Yet|strong="H5921"\w* \w I|strong="H5921"\w* \w heard|strong="H8085"\w* \w the|strong="H6440"\w* \w voice|strong="H6963"\w* \w of|strong="H1697"\w* \w his|strong="H8085"\w* \w words|strong="H1697"\w*. \w When|strong="H1961"\w* \w I|strong="H5921"\w* \w heard|strong="H8085"\w* \w the|strong="H6440"\w* \w voice|strong="H6963"\w* \w of|strong="H1697"\w* \w his|strong="H8085"\w* \w words|strong="H1697"\w*, \w then|strong="H1961"\w* \w I|strong="H5921"\w* \w fell|strong="H1961"\w* \w into|strong="H5921"\w* \w a|strong="H3068"\w* \w deep|strong="H7290"\w* \w sleep|strong="H7290"\w* \w on|strong="H5921"\w* \w my|strong="H8085"\w* \w face|strong="H6440"\w*, \w with|strong="H5921"\w* \w my|strong="H8085"\w* \w face|strong="H6440"\w* \w toward|strong="H5921"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w*. +\p +\v 10 \w Behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w hand|strong="H3027"\w* \w touched|strong="H5060"\w* \w me|strong="H5921"\w*, which \w set|strong="H5128"\w* \w me|strong="H5921"\w* \w on|strong="H5921"\w* \w my|strong="H5921"\w* \w knees|strong="H1290"\w* \w and|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w palms|strong="H3709"\w* \w of|strong="H3027"\w* \w my|strong="H5921"\w* \w hands|strong="H3027"\w*. +\v 11 \w He|strong="H3588"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H7971"\w*, “\w Daniel|strong="H1840"\w*, \w you|strong="H3588"\w* greatly beloved \w man|strong="H2088"\w*, understand \w the|strong="H5921"\w* \w words|strong="H1697"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w speak|strong="H1696"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*, \w and|strong="H7971"\w* \w stand|strong="H5975"\w* \w upright|strong="H5975"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1697"\w* \w been|strong="H6258"\w* \w sent|strong="H7971"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*, \w now|strong="H6258"\w*.” \w When|strong="H3588"\w* \w he|strong="H3588"\w* \w had|strong="H3588"\w* \w spoken|strong="H1696"\w* \w this|strong="H2088"\w* \w word|strong="H1697"\w* \w to|strong="H1696"\w* \w me|strong="H7971"\w*, \w I|strong="H3588"\w* \w stood|strong="H5975"\w* \w trembling|strong="H7460"\w*. +\p +\v 12 \w Then|strong="H5414"\w* \w he|strong="H3588"\w* \w said|strong="H1697"\w* \w to|strong="H5414"\w* \w me|strong="H5414"\w*, “Don’t \w be|strong="H1697"\w* \w afraid|strong="H3372"\w*, \w Daniel|strong="H1840"\w*; \w for|strong="H3588"\w* \w from|strong="H4480"\w* \w the|strong="H6440"\w* \w first|strong="H7223"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w set|strong="H5414"\w* \w your|strong="H5414"\w* \w heart|strong="H3820"\w* \w to|strong="H5414"\w* \w understand|strong="H8085"\w*, \w and|strong="H3117"\w* \w to|strong="H5414"\w* \w humble|strong="H6031"\w* \w yourself|strong="H6031"\w* \w before|strong="H6440"\w* \w your|strong="H5414"\w* \w God|strong="H5414"\w*, \w your|strong="H5414"\w* \w words|strong="H1697"\w* \w were|strong="H3117"\w* \w heard|strong="H8085"\w*. \w I|strong="H3588"\w* \w have|strong="H1697"\w* come \w for|strong="H3588"\w* \w your|strong="H5414"\w* \w words|strong="H1697"\w*’ \w sake|strong="H1697"\w*. +\v 13 \w But|strong="H2009"\w* \w the|strong="H3117"\w* \w prince|strong="H8269"\w* \w of|strong="H4428"\w* \w the|strong="H3117"\w* \w kingdom|strong="H4438"\w* \w of|strong="H4428"\w* \w Persia|strong="H6539"\w* \w withstood|strong="H5975"\w* \w me|strong="H5048"\w* \w twenty-one|strong="H6242"\w* \w days|strong="H3117"\w*; \w but|strong="H2009"\w*, \w behold|strong="H2009"\w*, \w Michael|strong="H4317"\w*, \w one|strong="H7223"\w* \w of|strong="H4428"\w* \w the|strong="H3117"\w* \w chief|strong="H8269"\w* \w princes|strong="H8269"\w*, \w came|strong="H4428"\w* \w to|strong="H3117"\w* \w help|strong="H5826"\w* \w me|strong="H5048"\w* \w because|strong="H3117"\w* \w I|strong="H3117"\w* \w remained|strong="H3498"\w* \w there|strong="H8033"\w* \w with|strong="H3117"\w* \w the|strong="H3117"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Persia|strong="H6539"\w*. +\v 14 \w Now|strong="H3117"\w* \w I|strong="H3588"\w* \w have|strong="H5971"\w* \w come|strong="H7136"\w* \w to|strong="H3117"\w* \w make|strong="H7136"\w* \w you|strong="H3588"\w* understand \w what|strong="H3588"\w* \w will|strong="H5971"\w* \w happen|strong="H7136"\w* \w to|strong="H3117"\w* \w your|strong="H3588"\w* \w people|strong="H5971"\w* \w in|strong="H3117"\w* \w the|strong="H3588"\w* latter \w days|strong="H3117"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w vision|strong="H2377"\w* \w is|strong="H3117"\w* \w yet|strong="H5750"\w* \w for|strong="H3588"\w* many \w days|strong="H3117"\w*.” +\p +\v 15 \w When|strong="H1696"\w* \w he|strong="H5414"\w* \w had|strong="H5414"\w* \w spoken|strong="H1696"\w* \w these|strong="H1696"\w* \w words|strong="H1697"\w* \w to|strong="H1696"\w* \w me|strong="H5414"\w*, \w I|strong="H5414"\w* \w set|strong="H5414"\w* \w my|strong="H5414"\w* \w face|strong="H6440"\w* \w toward|strong="H6440"\w* \w the|strong="H6440"\w* \w ground|strong="H6440"\w* \w and|strong="H6440"\w* \w was|strong="H1697"\w* mute. +\v 16 \w Behold|strong="H2009"\w*, \w one|strong="H3808"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w likeness|strong="H1823"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w* \w touched|strong="H5060"\w* \w my|strong="H5921"\w* \w lips|strong="H8193"\w*. \w Then|strong="H1696"\w* \w I|strong="H2009"\w* \w opened|strong="H6605"\w* \w my|strong="H5921"\w* \w mouth|strong="H6310"\w*, \w and|strong="H1121"\w* \w spoke|strong="H1696"\w* \w and|strong="H1121"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w him|strong="H5921"\w* \w who|strong="H1121"\w* \w stood|strong="H5975"\w* \w before|strong="H5048"\w* \w me|strong="H5921"\w*, “\w My|strong="H5921"\w* lord, \w by|strong="H5921"\w* \w reason|strong="H5921"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w vision|strong="H4759"\w* \w my|strong="H5921"\w* \w sorrows|strong="H6735"\w* \w have|strong="H1121"\w* overtaken \w me|strong="H5921"\w*, \w and|strong="H1121"\w* \w I|strong="H2009"\w* \w retain|strong="H6113"\w* \w no|strong="H3808"\w* \w strength|strong="H3581"\w*. +\v 17 \w For|strong="H5650"\w* \w how|strong="H1963"\w* \w can|strong="H3201"\w* \w the|strong="H5975"\w* \w servant|strong="H5650"\w* \w of|strong="H5650"\w* \w this|strong="H2088"\w* \w my|strong="H1696"\w* lord \w talk|strong="H1696"\w* \w with|strong="H5973"\w* \w this|strong="H2088"\w* \w my|strong="H1696"\w* lord? \w For|strong="H5650"\w* \w as|strong="H1696"\w* \w for|strong="H5650"\w* \w me|strong="H1696"\w*, immediately \w there|strong="H2088"\w* \w remained|strong="H7604"\w* \w no|strong="H3808"\w* \w strength|strong="H3581"\w* \w in|strong="H1696"\w* \w me|strong="H1696"\w*. \w There|strong="H2088"\w* \w was|strong="H2088"\w* \w no|strong="H3808"\w* \w breath|strong="H5397"\w* \w left|strong="H7604"\w* \w in|strong="H1696"\w* \w me|strong="H1696"\w*.” +\p +\v 18 \w Then|strong="H3254"\w* one \w like|strong="H4758"\w* \w the|strong="H2388"\w* \w appearance|strong="H4758"\w* \w of|strong="H4758"\w* \w a|strong="H3068"\w* man \w touched|strong="H5060"\w* \w me|strong="H3254"\w* \w again|strong="H3254"\w*, \w and|strong="H2388"\w* \w he|strong="H3254"\w* \w strengthened|strong="H2388"\w* \w me|strong="H3254"\w*. +\v 19 \w He|strong="H3588"\w* \w said|strong="H1696"\w*, “Greatly beloved man, don’t \w be|strong="H3372"\w* \w afraid|strong="H3372"\w*. \w Peace|strong="H7965"\w* \w be|strong="H3372"\w* \w to|strong="H1696"\w* \w you|strong="H3588"\w*. \w Be|strong="H3372"\w* \w strong|strong="H2388"\w*. \w Yes|strong="H3588"\w*, \w be|strong="H3372"\w* \w strong|strong="H2388"\w*.” +\p \w When|strong="H3588"\w* \w he|strong="H3588"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w*, \w I|strong="H3588"\w* \w was|strong="H1696"\w* \w strengthened|strong="H2388"\w*, \w and|strong="H2388"\w* \w said|strong="H1696"\w*, “Let \w my|strong="H1696"\w* lord \w speak|strong="H1696"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H7965"\w* \w strengthened|strong="H2388"\w* \w me|strong="H1696"\w*.” +\p +\v 20 \w Then|strong="H3318"\w* \w he|strong="H3318"\w* \w said|strong="H3318"\w*, “\w Do|strong="H4100"\w* \w you|strong="H7725"\w* \w know|strong="H3045"\w* \w why|strong="H4100"\w* \w I|strong="H2009"\w* \w have|strong="H3045"\w* \w come|strong="H3318"\w* \w to|strong="H7725"\w* \w you|strong="H7725"\w*? \w Now|strong="H6258"\w* \w I|strong="H2009"\w* \w will|strong="H4100"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w fight|strong="H3898"\w* \w with|strong="H5973"\w* \w the|strong="H7725"\w* \w prince|strong="H8269"\w* \w of|strong="H8269"\w* \w Persia|strong="H6539"\w*. \w When|strong="H3318"\w* \w I|strong="H2009"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*, \w behold|strong="H2009"\w*, \w the|strong="H7725"\w* \w prince|strong="H8269"\w* \w of|strong="H8269"\w* \w Greece|strong="H3120"\w* \w will|strong="H4100"\w* \w come|strong="H3318"\w*. +\v 21 \w But|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H8269"\w* \w tell|strong="H5046"\w* \w you|strong="H3588"\w* \w that|strong="H3588"\w* \w which|strong="H8269"\w* \w is|strong="H3588"\w* \w inscribed|strong="H7559"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w writing|strong="H3791"\w* \w of|strong="H8269"\w* truth. There \w is|strong="H3588"\w* no \w one|strong="H3588"\w* \w who|strong="H3588"\w* \w holds|strong="H2388"\w* \w with|strong="H5973"\w* \w me|strong="H5046"\w* \w against|strong="H5921"\w* \w these|strong="H5046"\w* \w but|strong="H3588"\w* \w Michael|strong="H4317"\w* \w your|strong="H5921"\w* \w prince|strong="H8269"\w*. +\c 11 +\p +\v 1 “\w As|strong="H8141"\w* \w for|strong="H5975"\w* \w me|strong="H2388"\w*, \w in|strong="H8141"\w* \w the|strong="H2388"\w* first \w year|strong="H8141"\w* \w of|strong="H8141"\w* \w Darius|strong="H1867"\w* \w the|strong="H2388"\w* \w Mede|strong="H4075"\w*, \w I|strong="H8141"\w* \w stood|strong="H5975"\w* \w up|strong="H5975"\w* \w to|strong="H5975"\w* \w confirm|strong="H2388"\w* \w and|strong="H2388"\w* \w strengthen|strong="H2388"\w* \w him|strong="H5975"\w*. +\p +\v 2 “\w Now|strong="H6258"\w* \w I|strong="H2009"\w* \w will|strong="H4428"\w* \w show|strong="H5046"\w* \w you|strong="H3605"\w* \w the|strong="H3605"\w* truth. \w Behold|strong="H2009"\w*, \w three|strong="H7969"\w* \w more|strong="H5750"\w* \w kings|strong="H4428"\w* \w will|strong="H4428"\w* \w stand|strong="H5975"\w* \w up|strong="H5975"\w* \w in|strong="H4428"\w* \w Persia|strong="H6539"\w*. \w The|strong="H3605"\w* \w fourth|strong="H7243"\w* \w will|strong="H4428"\w* \w be|strong="H5750"\w* \w far|strong="H6239"\w* \w richer|strong="H6238"\w* \w than|strong="H1419"\w* \w all|strong="H3605"\w* \w of|strong="H4428"\w* \w them|strong="H5975"\w*. \w When|strong="H5750"\w* \w he|strong="H3605"\w* \w has|strong="H4428"\w* grown \w strong|strong="H2393"\w* \w through|strong="H3605"\w* \w his|strong="H3605"\w* \w riches|strong="H6239"\w*, \w he|strong="H3605"\w* \w will|strong="H4428"\w* \w stir|strong="H5782"\w* \w up|strong="H5975"\w* \w all|strong="H3605"\w* \w against|strong="H5782"\w* \w the|strong="H3605"\w* \w realm|strong="H4438"\w* \w of|strong="H4428"\w* \w Greece|strong="H3120"\w*. +\v 3 \w A|strong="H3068"\w* \w mighty|strong="H1368"\w* \w king|strong="H4428"\w* \w will|strong="H4428"\w* \w stand|strong="H5975"\w* \w up|strong="H5975"\w*, \w who|strong="H4428"\w* \w will|strong="H4428"\w* \w rule|strong="H4910"\w* \w with|strong="H6213"\w* \w great|strong="H7227"\w* \w dominion|strong="H4910"\w*, \w and|strong="H4428"\w* \w do|strong="H6213"\w* according \w to|strong="H6213"\w* \w his|strong="H6213"\w* \w will|strong="H4428"\w*. +\v 4 \w When|strong="H3588"\w* \w he|strong="H3588"\w* \w stands|strong="H5975"\w* \w up|strong="H5975"\w*, \w his|strong="H3588"\w* \w kingdom|strong="H4438"\w* \w will|strong="H8064"\w* \w be|strong="H3808"\w* \w broken|strong="H7665"\w* \w and|strong="H8064"\w* \w will|strong="H8064"\w* \w be|strong="H3808"\w* \w divided|strong="H2673"\w* toward \w the|strong="H3588"\w* four \w winds|strong="H7307"\w* \w of|strong="H7307"\w* \w the|strong="H3588"\w* \w sky|strong="H8064"\w*, \w but|strong="H3588"\w* \w not|strong="H3808"\w* \w to|strong="H5975"\w* \w his|strong="H3588"\w* posterity, \w nor|strong="H3808"\w* according \w to|strong="H5975"\w* \w his|strong="H3588"\w* \w dominion|strong="H4910"\w* \w with|strong="H8064"\w* \w which|strong="H7307"\w* \w he|strong="H3588"\w* \w ruled|strong="H4910"\w*; \w for|strong="H3588"\w* \w his|strong="H3588"\w* \w kingdom|strong="H4438"\w* \w will|strong="H8064"\w* \w be|strong="H3808"\w* \w plucked|strong="H5428"\w* \w up|strong="H5975"\w*, \w even|strong="H3588"\w* \w for|strong="H3588"\w* others besides these. +\p +\v 5 “\w The|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w south|strong="H5045"\w* \w will|strong="H4428"\w* \w be|strong="H4428"\w* \w strong|strong="H2388"\w*. \w One|strong="H4480"\w* \w of|strong="H4428"\w* \w his|strong="H5921"\w* \w princes|strong="H8269"\w* \w will|strong="H4428"\w* become \w stronger|strong="H2388"\w* \w than|strong="H4480"\w* \w him|strong="H5921"\w*, \w and|strong="H4428"\w* \w have|strong="H8269"\w* \w dominion|strong="H4475"\w*. \w His|strong="H5921"\w* \w dominion|strong="H4475"\w* \w will|strong="H4428"\w* \w be|strong="H4428"\w* \w a|strong="H3068"\w* \w great|strong="H7227"\w* \w dominion|strong="H4475"\w*. +\v 6 \w At|strong="H4428"\w* \w the|strong="H5414"\w* \w end|strong="H7093"\w* \w of|strong="H4428"\w* \w years|strong="H8141"\w* \w they|strong="H3808"\w* \w will|strong="H4428"\w* \w join|strong="H2266"\w* \w themselves|strong="H6213"\w* \w together|strong="H2266"\w*; \w and|strong="H4428"\w* \w the|strong="H5414"\w* \w daughter|strong="H1323"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w south|strong="H5045"\w* \w will|strong="H4428"\w* \w come|strong="H3205"\w* \w to|strong="H6213"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w north|strong="H6828"\w* \w to|strong="H6213"\w* \w make|strong="H6213"\w* \w an|strong="H6213"\w* \w agreement|strong="H4339"\w*, \w but|strong="H3808"\w* \w she|strong="H1931"\w* \w will|strong="H4428"\w* \w not|strong="H3808"\w* \w retain|strong="H6113"\w* \w the|strong="H5414"\w* \w strength|strong="H3581"\w* \w of|strong="H4428"\w* \w her|strong="H5414"\w* \w arm|strong="H2220"\w*. \w He|strong="H1931"\w* \w will|strong="H4428"\w* \w also|strong="H6213"\w* \w not|strong="H3808"\w* \w stand|strong="H5975"\w*, \w nor|strong="H3808"\w* \w will|strong="H4428"\w* \w his|strong="H5414"\w* \w arm|strong="H2220"\w*; \w but|strong="H3808"\w* \w she|strong="H1931"\w* \w will|strong="H4428"\w* \w be|strong="H3808"\w* \w given|strong="H5414"\w* \w up|strong="H5975"\w*, \w with|strong="H6213"\w* \w those|strong="H1931"\w* \w who|strong="H1931"\w* \w brought|strong="H3205"\w* \w her|strong="H5414"\w*, \w and|strong="H4428"\w* \w he|strong="H1931"\w* \w who|strong="H1931"\w* \w became|strong="H3205"\w* \w the|strong="H5414"\w* \w father|strong="H3205"\w* \w of|strong="H4428"\w* \w her|strong="H5414"\w*, \w and|strong="H4428"\w* \w he|strong="H1931"\w* \w who|strong="H1931"\w* \w strengthened|strong="H2388"\w* \w her|strong="H5414"\w* \w in|strong="H8141"\w* \w those|strong="H1931"\w* \w times|strong="H6256"\w*. +\p +\v 7 “\w But|strong="H2388"\w* \w out|strong="H2388"\w* \w of|strong="H4428"\w* \w a|strong="H3068"\w* shoot \w from|strong="H5975"\w* \w her|strong="H6213"\w* \w roots|strong="H8328"\w* \w one|strong="H6213"\w* \w will|strong="H4428"\w* \w stand|strong="H5975"\w* \w up|strong="H5975"\w* \w in|strong="H6213"\w* \w his|strong="H6213"\w* \w place|strong="H3653"\w*, \w who|strong="H4428"\w* \w will|strong="H4428"\w* come \w to|strong="H6213"\w* \w the|strong="H6213"\w* \w army|strong="H2428"\w* \w and|strong="H4428"\w* \w will|strong="H4428"\w* \w enter|strong="H5975"\w* \w into|strong="H6213"\w* \w the|strong="H6213"\w* \w fortress|strong="H4581"\w* \w of|strong="H4428"\w* \w the|strong="H6213"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H6213"\w* \w north|strong="H6828"\w*, \w and|strong="H4428"\w* \w will|strong="H4428"\w* \w deal|strong="H6213"\w* \w against|strong="H2388"\w* \w them|strong="H6213"\w* \w and|strong="H4428"\w* \w will|strong="H4428"\w* \w prevail|strong="H2388"\w*. +\v 8 \w He|strong="H1931"\w* \w will|strong="H4428"\w* \w also|strong="H1571"\w* carry \w their|strong="H5975"\w* gods \w with|strong="H5973"\w* \w their|strong="H5975"\w* molten \w images|strong="H5257"\w*, \w and|strong="H3701"\w* \w with|strong="H5973"\w* \w their|strong="H5975"\w* \w goodly|strong="H2532"\w* \w vessels|strong="H3627"\w* \w of|strong="H4428"\w* \w silver|strong="H3701"\w* \w and|strong="H3701"\w* \w of|strong="H4428"\w* \w gold|strong="H2091"\w*, \w captive|strong="H7628"\w* \w into|strong="H4714"\w* \w Egypt|strong="H4714"\w*. \w He|strong="H1931"\w* \w will|strong="H4428"\w* \w refrain|strong="H5975"\w* some \w years|strong="H8141"\w* \w from|strong="H2091"\w* \w the|strong="H5975"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H5975"\w* \w north|strong="H6828"\w*. +\v 9 \w He|strong="H7725"\w* \w will|strong="H4428"\w* \w come|strong="H7725"\w* \w into|strong="H7725"\w* \w the|strong="H7725"\w* \w realm|strong="H4438"\w* \w of|strong="H4428"\w* \w the|strong="H7725"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H7725"\w* \w south|strong="H5045"\w*, \w but|strong="H7725"\w* \w he|strong="H7725"\w* \w will|strong="H4428"\w* \w return|strong="H7725"\w* \w into|strong="H7725"\w* \w his|strong="H7725"\w* own land. +\v 10 \w His|strong="H7725"\w* \w sons|strong="H1121"\w* \w will|strong="H1121"\w* \w wage|strong="H1624"\w* \w war|strong="H2428"\w*, \w and|strong="H1121"\w* \w will|strong="H1121"\w* assemble \w a|strong="H3068"\w* \w multitude|strong="H1995"\w* \w of|strong="H1121"\w* \w great|strong="H7227"\w* \w forces|strong="H2428"\w* \w which|strong="H2428"\w* \w will|strong="H1121"\w* \w come|strong="H7725"\w* \w on|strong="H5674"\w*, \w and|strong="H1121"\w* \w overflow|strong="H7857"\w*, \w and|strong="H1121"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w*. \w They|strong="H5704"\w* \w will|strong="H1121"\w* \w return|strong="H7725"\w* \w and|strong="H1121"\w* \w wage|strong="H1624"\w* \w war|strong="H2428"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w his|strong="H7725"\w* \w fortress|strong="H4581"\w*. +\p +\v 11 “\w The|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w south|strong="H5045"\w* \w will|strong="H4428"\w* \w be|strong="H3027"\w* \w moved|strong="H3318"\w* \w with|strong="H5973"\w* anger \w and|strong="H4428"\w* \w will|strong="H4428"\w* \w come|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H4428"\w* \w fight|strong="H3898"\w* \w with|strong="H5973"\w* \w him|strong="H5414"\w*, even \w with|strong="H5973"\w* \w the|strong="H5414"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H5414"\w* \w north|strong="H6828"\w*. \w He|strong="H5414"\w* \w will|strong="H4428"\w* \w send|strong="H5414"\w* \w out|strong="H3318"\w* \w a|strong="H3068"\w* \w great|strong="H7227"\w* \w multitude|strong="H1995"\w*, \w and|strong="H4428"\w* \w the|strong="H5414"\w* \w multitude|strong="H1995"\w* \w will|strong="H4428"\w* \w be|strong="H3027"\w* \w given|strong="H5414"\w* \w into|strong="H3318"\w* \w his|strong="H5414"\w* \w hand|strong="H3027"\w*. +\v 12 \w The|strong="H5375"\w* \w multitude|strong="H1995"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w carried|strong="H5375"\w* \w off|strong="H7311"\w*, \w and|strong="H3824"\w* \w his|strong="H5375"\w* \w heart|strong="H3824"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w exalted|strong="H7311"\w*. \w He|strong="H3808"\w* \w will|strong="H3808"\w* \w cast|strong="H5307"\w* \w down|strong="H5307"\w* \w tens|strong="H7239"\w* \w of|strong="H1995"\w* \w thousands|strong="H7239"\w*, \w but|strong="H3808"\w* \w he|strong="H3808"\w* won’t \w prevail|strong="H5810"\w*. +\v 13 \w The|strong="H4480"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H4480"\w* \w north|strong="H6828"\w* \w will|strong="H4428"\w* \w return|strong="H7725"\w*, \w and|strong="H7725"\w* \w will|strong="H4428"\w* send \w out|strong="H4480"\w* \w a|strong="H3068"\w* \w multitude|strong="H1995"\w* \w greater|strong="H1419"\w* \w than|strong="H4480"\w* \w the|strong="H4480"\w* \w former|strong="H7223"\w*. \w He|strong="H4480"\w* \w will|strong="H4428"\w* \w come|strong="H7725"\w* \w on|strong="H5975"\w* \w at|strong="H4428"\w* \w the|strong="H4480"\w* \w end|strong="H7093"\w* \w of|strong="H4428"\w* \w the|strong="H4480"\w* \w times|strong="H6256"\w*, even \w of|strong="H4428"\w* \w years|strong="H8141"\w*, \w with|strong="H4428"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w army|strong="H2428"\w* \w and|strong="H7725"\w* \w with|strong="H4428"\w* \w abundant|strong="H7227"\w* \w supplies|strong="H7399"\w*. +\p +\v 14 “\w In|strong="H5921"\w* \w those|strong="H1992"\w* \w times|strong="H6256"\w* \w many|strong="H7227"\w* \w will|strong="H4428"\w* \w stand|strong="H5975"\w* \w up|strong="H5375"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w south|strong="H5045"\w*. \w Also|strong="H4428"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w violent|strong="H6530"\w* \w among|strong="H5921"\w* \w your|strong="H5921"\w* \w people|strong="H5971"\w* \w will|strong="H4428"\w* \w lift|strong="H5375"\w* \w themselves|strong="H1992"\w* \w up|strong="H5375"\w* \w to|strong="H5921"\w* \w establish|strong="H5975"\w* \w the|strong="H5921"\w* \w vision|strong="H2377"\w*, \w but|strong="H1992"\w* \w they|strong="H1992"\w* \w will|strong="H4428"\w* \w fall|strong="H3782"\w*. +\v 15 \w So|strong="H3808"\w* \w the|strong="H5975"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H5975"\w* \w north|strong="H6828"\w* \w will|strong="H4428"\w* \w come|strong="H5971"\w* \w and|strong="H4428"\w* \w cast|strong="H8210"\w* \w up|strong="H5975"\w* \w a|strong="H3068"\w* mound, \w and|strong="H4428"\w* \w take|strong="H3920"\w* \w a|strong="H3068"\w* \w well-fortified|strong="H4013"\w* \w city|strong="H5892"\w*. \w The|strong="H5975"\w* \w forces|strong="H2220"\w* \w of|strong="H4428"\w* \w the|strong="H5975"\w* \w south|strong="H5045"\w* won’t \w stand|strong="H5975"\w*, \w neither|strong="H3808"\w* \w will|strong="H4428"\w* \w his|strong="H3808"\w* select \w troops|strong="H5971"\w*, \w neither|strong="H3808"\w* \w will|strong="H4428"\w* \w there|strong="H5975"\w* \w be|strong="H3808"\w* \w any|strong="H3808"\w* \w strength|strong="H3581"\w* \w to|strong="H4428"\w* \w stand|strong="H5975"\w*. +\v 16 But \w he|strong="H6213"\w* \w who|strong="H5975"\w* \w comes|strong="H6440"\w* \w against|strong="H6440"\w* \w him|strong="H6440"\w* \w will|strong="H7522"\w* \w do|strong="H6213"\w* \w according|strong="H3027"\w* \w to|strong="H6213"\w* \w his|strong="H6440"\w* \w own|strong="H3027"\w* \w will|strong="H7522"\w*, \w and|strong="H3027"\w* \w no|strong="H6213"\w* \w one|strong="H6213"\w* \w will|strong="H7522"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. \w He|strong="H6213"\w* \w will|strong="H7522"\w* \w stand|strong="H5975"\w* \w in|strong="H6213"\w* \w the|strong="H6440"\w* \w glorious|strong="H6643"\w* \w land|strong="H6440"\w*, \w and|strong="H3027"\w* \w destruction|strong="H3615"\w* \w will|strong="H7522"\w* \w be|strong="H3027"\w* \w in|strong="H6213"\w* \w his|strong="H6440"\w* \w hand|strong="H3027"\w*. +\v 17 \w He|strong="H6213"\w* \w will|strong="H1961"\w* \w set|strong="H7760"\w* \w his|strong="H3605"\w* \w face|strong="H6440"\w* \w to|strong="H1961"\w* \w come|strong="H1961"\w* \w with|strong="H5973"\w* \w the|strong="H3605"\w* \w strength|strong="H8633"\w* \w of|strong="H1323"\w* \w his|strong="H3605"\w* \w whole|strong="H3605"\w* \w kingdom|strong="H4438"\w*, \w and|strong="H6440"\w* \w with|strong="H5973"\w* \w him|strong="H5414"\w* equitable conditions. \w He|strong="H6213"\w* \w will|strong="H1961"\w* \w perform|strong="H6213"\w* \w them|strong="H5414"\w*. \w He|strong="H6213"\w* \w will|strong="H1961"\w* \w give|strong="H5414"\w* \w him|strong="H5414"\w* \w the|strong="H3605"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w women|strong="H1323"\w*, \w to|strong="H1961"\w* \w destroy|strong="H7843"\w* \w the|strong="H3605"\w* \w kingdom|strong="H4438"\w*, \w but|strong="H3808"\w* \w she|strong="H6440"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w stand|strong="H5975"\w*, \w and|strong="H6440"\w* won’t \w be|strong="H1961"\w* \w for|strong="H6213"\w* \w him|strong="H5414"\w*. +\v 18 After \w this|strong="H6440"\w* \w he|strong="H6440"\w* \w will|strong="H7227"\w* \w turn|strong="H7725"\w* \w his|strong="H7725"\w* \w face|strong="H6440"\w* \w to|strong="H7725"\w* \w the|strong="H6440"\w* islands, \w and|strong="H7725"\w* \w will|strong="H7227"\w* \w take|strong="H3920"\w* \w many|strong="H7227"\w*, \w but|strong="H7725"\w* \w a|strong="H3068"\w* \w prince|strong="H7101"\w* \w will|strong="H7227"\w* \w cause|strong="H7725"\w* \w the|strong="H6440"\w* \w reproach|strong="H2781"\w* offered \w by|strong="H6440"\w* \w him|strong="H6440"\w* \w to|strong="H7725"\w* \w cease|strong="H7673"\w*. Yes, \w moreover|strong="H1115"\w*, \w he|strong="H6440"\w* \w will|strong="H7227"\w* \w cause|strong="H7725"\w* \w his|strong="H7725"\w* \w reproach|strong="H2781"\w* \w to|strong="H7725"\w* \w turn|strong="H7725"\w* \w on|strong="H6440"\w* \w him|strong="H6440"\w*. +\v 19 \w Then|strong="H5307"\w* \w he|strong="H3808"\w* \w will|strong="H3808"\w* \w turn|strong="H7725"\w* \w his|strong="H7725"\w* \w face|strong="H6440"\w* \w toward|strong="H6440"\w* \w the|strong="H6440"\w* \w fortresses|strong="H4581"\w* \w of|strong="H6440"\w* \w his|strong="H7725"\w* \w own|strong="H6440"\w* \w land|strong="H6440"\w*; \w but|strong="H3808"\w* \w he|strong="H3808"\w* \w will|strong="H3808"\w* \w stumble|strong="H3782"\w* \w and|strong="H7725"\w* \w fall|strong="H5307"\w*, \w and|strong="H7725"\w* won’t \w be|strong="H3808"\w* \w found|strong="H4672"\w*. +\p +\v 20 “\w Then|strong="H5975"\w* \w one|strong="H3808"\w* \w who|strong="H4421"\w* \w will|strong="H3808"\w* cause \w a|strong="H3068"\w* tax collector \w to|strong="H5921"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H5921"\w* \w kingdom|strong="H4438"\w* \w to|strong="H5921"\w* maintain \w its|strong="H5921"\w* \w glory|strong="H1925"\w* \w will|strong="H3808"\w* \w stand|strong="H5975"\w* \w up|strong="H5975"\w* \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w place|strong="H3653"\w*; \w but|strong="H3808"\w* \w within|strong="H5921"\w* few \w days|strong="H3117"\w* \w he|strong="H3117"\w* \w shall|strong="H3117"\w* \w be|strong="H3808"\w* \w destroyed|strong="H7665"\w*, \w not|strong="H3808"\w* \w in|strong="H5921"\w* \w anger|strong="H5674"\w*, \w and|strong="H3117"\w* \w not|strong="H3808"\w* \w in|strong="H5921"\w* \w battle|strong="H4421"\w*. +\p +\v 21 “\w In|strong="H5921"\w* \w his|strong="H5414"\w* \w place|strong="H5414"\w* \w a|strong="H3068"\w* contemptible \w person|strong="H4438"\w* \w will|strong="H5414"\w* \w stand|strong="H5975"\w* \w up|strong="H5975"\w*, \w to|strong="H5921"\w* whom \w they|strong="H3808"\w* \w had|strong="H5414"\w* \w not|strong="H3808"\w* \w given|strong="H5414"\w* \w the|strong="H5921"\w* \w honor|strong="H1935"\w* \w of|strong="H4438"\w* \w the|strong="H5921"\w* \w kingdom|strong="H4438"\w*; \w but|strong="H3808"\w* \w he|strong="H5414"\w* \w will|strong="H5414"\w* come \w in|strong="H5921"\w* \w time|strong="H7962"\w* \w of|strong="H4438"\w* security, \w and|strong="H2388"\w* \w will|strong="H5414"\w* \w obtain|strong="H2388"\w* \w the|strong="H5921"\w* \w kingdom|strong="H4438"\w* \w by|strong="H5921"\w* \w flatteries|strong="H2519"\w*. +\v 22 \w The|strong="H6440"\w* \w overwhelming|strong="H7857"\w* \w forces|strong="H2220"\w* \w will|strong="H1571"\w* \w be|strong="H1571"\w* \w overwhelmed|strong="H7857"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, \w and|strong="H6440"\w* \w will|strong="H1571"\w* \w be|strong="H1571"\w* \w broken|strong="H7665"\w*. \w Yes|strong="H1571"\w*, \w also|strong="H1571"\w* \w the|strong="H6440"\w* \w prince|strong="H5057"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* \w covenant|strong="H1285"\w*. +\v 23 \w After|strong="H4480"\w* \w the|strong="H6213"\w* treaty \w made|strong="H6213"\w* \w with|strong="H6213"\w* \w him|strong="H6213"\w* \w he|strong="H6213"\w* \w will|strong="H1471"\w* \w work|strong="H6213"\w* \w deceitfully|strong="H4820"\w*; \w for|strong="H6213"\w* \w he|strong="H6213"\w* \w will|strong="H1471"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H1471"\w* \w will|strong="H1471"\w* \w become|strong="H6213"\w* \w strong|strong="H6105"\w* \w with|strong="H6213"\w* \w few|strong="H4592"\w* \w people|strong="H1471"\w*. +\v 24 \w In|strong="H5921"\w* \w time|strong="H6256"\w* \w of|strong="H5921"\w* security \w he|strong="H5704"\w* \w will|strong="H3808"\w* come \w even|strong="H5704"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w fattest|strong="H4924"\w* \w places|strong="H4924"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w province|strong="H4082"\w*. \w He|strong="H5704"\w* \w will|strong="H3808"\w* \w do|strong="H6213"\w* \w that|strong="H6256"\w* \w which|strong="H1992"\w* \w his|strong="H5921"\w* fathers \w have|strong="H3808"\w* \w not|strong="H3808"\w* \w done|strong="H6213"\w*, \w nor|strong="H3808"\w* \w his|strong="H5921"\w* fathers’ fathers. \w He|strong="H5704"\w* \w will|strong="H3808"\w* scatter \w among|strong="H5921"\w* \w them|strong="H1992"\w* \w prey|strong="H7998"\w*, \w plunder|strong="H7998"\w*, \w and|strong="H6213"\w* \w wealth|strong="H3808"\w*. Yes, \w he|strong="H5704"\w* \w will|strong="H3808"\w* \w devise|strong="H2803"\w* \w his|strong="H5921"\w* \w plans|strong="H4284"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w strongholds|strong="H4013"\w*, \w but|strong="H3808"\w* \w only|strong="H5704"\w* \w for|strong="H5704"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w*. +\p +\v 25 “\w He|strong="H3588"\w* \w will|strong="H4428"\w* \w stir|strong="H5782"\w* \w up|strong="H5975"\w* \w his|strong="H5921"\w* \w power|strong="H3581"\w* \w and|strong="H4428"\w* \w his|strong="H5921"\w* \w courage|strong="H3824"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w south|strong="H5045"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w army|strong="H2428"\w*; \w and|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w south|strong="H5045"\w* \w will|strong="H4428"\w* \w wage|strong="H4421"\w* \w war|strong="H4421"\w* \w in|strong="H5921"\w* \w battle|strong="H4421"\w* \w with|strong="H5921"\w* \w an|strong="H3588"\w* \w exceedingly|strong="H3966"\w* \w great|strong="H1419"\w* \w and|strong="H4428"\w* \w mighty|strong="H6099"\w* \w army|strong="H2428"\w*, \w but|strong="H3588"\w* \w he|strong="H3588"\w* won’t \w stand|strong="H5975"\w*; \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H4428"\w* \w devise|strong="H2803"\w* \w plans|strong="H4284"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*. +\v 26 Yes, those \w who|strong="H7227"\w* eat \w of|strong="H2428"\w* \w his|strong="H7665"\w* \w delicacies|strong="H6598"\w* \w will|strong="H7227"\w* \w destroy|strong="H7665"\w* \w him|strong="H5307"\w*, \w and|strong="H2428"\w* \w his|strong="H7665"\w* \w army|strong="H2428"\w* \w will|strong="H7227"\w* \w be|strong="H7665"\w* swept \w away|strong="H5307"\w*. \w Many|strong="H7227"\w* \w will|strong="H7227"\w* \w fall|strong="H5307"\w* \w down|strong="H5307"\w* \w slain|strong="H2491"\w*. +\v 27 \w As|strong="H3824"\w* \w for|strong="H3588"\w* \w both|strong="H8147"\w* \w these|strong="H1696"\w* \w kings|strong="H4428"\w*, \w their|strong="H5921"\w* \w hearts|strong="H3824"\w* \w will|strong="H4428"\w* \w be|strong="H3808"\w* \w to|strong="H1696"\w* do evil, \w and|strong="H4428"\w* \w they|strong="H3588"\w* \w will|strong="H4428"\w* \w speak|strong="H1696"\w* \w lies|strong="H3577"\w* \w at|strong="H5921"\w* \w one|strong="H3808"\w* \w table|strong="H7979"\w*; \w but|strong="H3588"\w* \w it|strong="H5921"\w* won’t \w prosper|strong="H6743"\w*, \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w end|strong="H7093"\w* \w will|strong="H4428"\w* \w still|strong="H5750"\w* \w be|strong="H3808"\w* \w at|strong="H5921"\w* \w the|strong="H5921"\w* \w appointed|strong="H4150"\w* \w time|strong="H4150"\w*. +\v 28 \w Then|strong="H6213"\w* \w he|strong="H6213"\w* \w will|strong="H3824"\w* \w return|strong="H7725"\w* \w into|strong="H7725"\w* \w his|strong="H7725"\w* land \w with|strong="H1285"\w* \w great|strong="H1419"\w* \w wealth|strong="H7399"\w*. \w His|strong="H7725"\w* \w heart|strong="H3824"\w* \w will|strong="H3824"\w* \w be|strong="H7725"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w holy|strong="H6944"\w* \w covenant|strong="H1285"\w*. \w He|strong="H6213"\w* \w will|strong="H3824"\w* \w take|strong="H7725"\w* \w action|strong="H6213"\w*, \w and|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w his|strong="H7725"\w* own land. +\p +\v 29 “\w He|strong="H3808"\w* \w will|strong="H1961"\w* \w return|strong="H7725"\w* \w at|strong="H7725"\w* \w the|strong="H7725"\w* \w appointed|strong="H4150"\w* \w time|strong="H4150"\w* \w and|strong="H7725"\w* \w come|strong="H1961"\w* \w into|strong="H7725"\w* \w the|strong="H7725"\w* \w south|strong="H5045"\w*; \w but|strong="H3808"\w* \w it|strong="H7725"\w* won’t \w be|strong="H1961"\w* \w in|strong="H7725"\w* \w the|strong="H7725"\w* latter \w time|strong="H4150"\w* \w as|strong="H1961"\w* \w it|strong="H7725"\w* \w was|strong="H1961"\w* \w in|strong="H7725"\w* \w the|strong="H7725"\w* \w former|strong="H7223"\w*. +\v 30 \w For|strong="H5921"\w* \w ships|strong="H6716"\w* \w of|strong="H5921"\w* \w Kittim|strong="H3794"\w* \w will|strong="H6716"\w* \w come|strong="H7725"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*. \w Therefore|strong="H5921"\w* \w he|strong="H6213"\w* \w will|strong="H6716"\w* \w be|strong="H7725"\w* \w grieved|strong="H3512"\w*, \w and|strong="H7725"\w* \w will|strong="H6716"\w* \w return|strong="H7725"\w*, \w and|strong="H7725"\w* \w have|strong="H1285"\w* \w indignation|strong="H2194"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w holy|strong="H6944"\w* \w covenant|strong="H1285"\w*, \w and|strong="H7725"\w* \w will|strong="H6716"\w* \w take|strong="H7725"\w* \w action|strong="H6213"\w*. \w He|strong="H6213"\w* \w will|strong="H6716"\w* \w even|strong="H3512"\w* \w return|strong="H7725"\w*, \w and|strong="H7725"\w* \w have|strong="H1285"\w* \w regard|strong="H5921"\w* \w to|strong="H7725"\w* \w those|strong="H5921"\w* \w who|strong="H6213"\w* \w forsake|strong="H5800"\w* \w the|strong="H5921"\w* \w holy|strong="H6944"\w* \w covenant|strong="H1285"\w*. +\p +\v 31 “\w Forces|strong="H2220"\w* \w from|strong="H4480"\w* \w him|strong="H5414"\w* \w will|strong="H5414"\w* \w profane|strong="H2490"\w* \w the|strong="H5414"\w* \w sanctuary|strong="H4720"\w*, even \w the|strong="H5414"\w* \w fortress|strong="H4581"\w*, \w and|strong="H5975"\w* \w will|strong="H5414"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w* \w the|strong="H5414"\w* \w continual|strong="H8548"\w* \w burnt|strong="H8548"\w* \w offering|strong="H4480"\w*. \w Then|strong="H5414"\w* \w they|strong="H2490"\w* \w will|strong="H5414"\w* \w set|strong="H5414"\w* \w up|strong="H5975"\w* \w the|strong="H5414"\w* \w abomination|strong="H8251"\w* \w that|strong="H5414"\w* \w makes|strong="H5414"\w* \w desolate|strong="H8074"\w*. +\v 32 \w He|strong="H6213"\w* \w will|strong="H5971"\w* \w corrupt|strong="H2610"\w* \w those|strong="H2388"\w* \w who|strong="H5971"\w* \w do|strong="H6213"\w* \w wickedly|strong="H7561"\w* \w against|strong="H2388"\w* \w the|strong="H6213"\w* \w covenant|strong="H1285"\w* \w by|strong="H6213"\w* \w flatteries|strong="H2514"\w*; \w but|strong="H2388"\w* \w the|strong="H6213"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w know|strong="H3045"\w* \w their|strong="H2388"\w* God \w will|strong="H5971"\w* \w be|strong="H5971"\w* \w strong|strong="H2388"\w* \w and|strong="H5971"\w* \w take|strong="H2388"\w* \w action|strong="H6213"\w*. +\p +\v 33 “\w Those|strong="H3782"\w* \w who|strong="H5971"\w* \w are|strong="H3117"\w* \w wise|strong="H7919"\w* \w among|strong="H5971"\w* \w the|strong="H3117"\w* \w people|strong="H5971"\w* \w will|strong="H5971"\w* \w instruct|strong="H7919"\w* \w many|strong="H7227"\w*; \w yet|strong="H3117"\w* \w they|strong="H3117"\w* \w will|strong="H5971"\w* \w fall|strong="H3782"\w* \w by|strong="H3117"\w* \w the|strong="H3117"\w* \w sword|strong="H2719"\w* \w and|strong="H3117"\w* \w by|strong="H3117"\w* \w flame|strong="H3852"\w*, \w by|strong="H3117"\w* \w captivity|strong="H7628"\w* \w and|strong="H3117"\w* \w by|strong="H3117"\w* plunder, \w many|strong="H7227"\w* \w days|strong="H3117"\w*. +\v 34 \w Now|strong="H7227"\w* \w when|strong="H5921"\w* \w they|strong="H5921"\w* \w fall|strong="H3782"\w*, \w they|strong="H5921"\w* \w will|strong="H7227"\w* \w be|strong="H4592"\w* \w helped|strong="H5826"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w help|strong="H5826"\w*; \w but|strong="H5826"\w* \w many|strong="H7227"\w* \w will|strong="H7227"\w* \w join|strong="H3867"\w* \w themselves|strong="H5921"\w* \w to|strong="H5921"\w* \w them|strong="H5921"\w* \w with|strong="H5921"\w* \w flatteries|strong="H2519"\w*. +\v 35 \w Some|strong="H4480"\w* \w of|strong="H4480"\w* \w those|strong="H4480"\w* \w who|strong="H3588"\w* \w are|strong="H3782"\w* \w wise|strong="H7919"\w* \w will|strong="H5704"\w* \w fall|strong="H3782"\w*—\w to|strong="H5704"\w* \w refine|strong="H6884"\w* \w them|strong="H5704"\w*, \w and|strong="H3782"\w* \w to|strong="H5704"\w* \w purify|strong="H1305"\w*, \w and|strong="H3782"\w* \w to|strong="H5704"\w* \w make|strong="H3835"\w* \w them|strong="H5704"\w* \w white|strong="H3835"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w time|strong="H6256"\w* \w of|strong="H4480"\w* \w the|strong="H3588"\w* \w end|strong="H7093"\w*, \w because|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H7093"\w* \w yet|strong="H5750"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w time|strong="H6256"\w* \w appointed|strong="H4150"\w*. +\p +\v 36 “\w The|strong="H3605"\w* \w king|strong="H4428"\w* \w will|strong="H4428"\w* \w do|strong="H6213"\w* \w according|strong="H5921"\w* \w to|strong="H1696"\w* \w his|strong="H3605"\w* \w will|strong="H4428"\w*. \w He|strong="H3588"\w* \w will|strong="H4428"\w* \w exalt|strong="H7311"\w* \w himself|strong="H1431"\w* \w and|strong="H4428"\w* \w magnify|strong="H1431"\w* \w himself|strong="H1431"\w* \w above|strong="H5921"\w* \w every|strong="H3605"\w* god, \w and|strong="H4428"\w* \w will|strong="H4428"\w* \w speak|strong="H1696"\w* \w marvelous|strong="H6381"\w* \w things|strong="H3605"\w* \w against|strong="H5921"\w* \w the|strong="H3605"\w* God \w of|strong="H4428"\w* gods. \w He|strong="H3588"\w* \w will|strong="H4428"\w* \w prosper|strong="H6743"\w* \w until|strong="H5704"\w* \w the|strong="H3605"\w* \w indignation|strong="H2195"\w* \w is|strong="H3605"\w* \w accomplished|strong="H3615"\w*, \w for|strong="H3588"\w* \w that|strong="H3588"\w* \w which|strong="H3588"\w* \w is|strong="H3605"\w* \w determined|strong="H2782"\w* \w will|strong="H4428"\w* \w be|strong="H4428"\w* \w done|strong="H6213"\w*. +\v 37 \w He|strong="H3588"\w* won’t \w regard|strong="H5921"\w* \w the|strong="H3605"\w* gods \w of|strong="H5921"\w* \w his|strong="H3605"\w* fathers, \w or|strong="H3808"\w* \w the|strong="H3605"\w* \w desire|strong="H2532"\w* \w of|strong="H5921"\w* women, \w or|strong="H3808"\w* \w regard|strong="H5921"\w* \w any|strong="H3605"\w* \w god|strong="H3808"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H3808"\w* \w magnify|strong="H1431"\w* \w himself|strong="H1431"\w* \w above|strong="H5921"\w* \w all|strong="H3605"\w*. +\v 38 \w But|strong="H3808"\w* \w in|strong="H5921"\w* \w their|strong="H5921"\w* \w place|strong="H3653"\w*, \w he|strong="H3808"\w* \w will|strong="H3808"\w* \w honor|strong="H3513"\w* \w the|strong="H5921"\w* \w god|strong="H3808"\w* \w of|strong="H5921"\w* \w fortresses|strong="H4581"\w*. \w He|strong="H3808"\w* \w will|strong="H3808"\w* \w honor|strong="H3513"\w* \w a|strong="H3068"\w* \w god|strong="H3808"\w* whom \w his|strong="H5921"\w* fathers didn’t \w know|strong="H3045"\w* \w with|strong="H5921"\w* \w gold|strong="H2091"\w*, \w silver|strong="H3701"\w*, \w and|strong="H3701"\w* \w with|strong="H5921"\w* \w precious|strong="H3368"\w* stones \w and|strong="H3701"\w* \w pleasant|strong="H2530"\w* \w things|strong="H3513"\w*. +\v 39 \w He|strong="H6213"\w* \w will|strong="H7227"\w* \w deal|strong="H6213"\w* \w with|strong="H5973"\w* \w the|strong="H6213"\w* \w strongest|strong="H4581"\w* \w fortresses|strong="H4581"\w* \w by|strong="H5973"\w* \w the|strong="H6213"\w* \w help|strong="H6213"\w* \w of|strong="H6213"\w* \w a|strong="H3068"\w* \w foreign|strong="H5236"\w* god. \w He|strong="H6213"\w* \w will|strong="H7227"\w* \w increase|strong="H7235"\w* \w with|strong="H5973"\w* \w glory|strong="H3519"\w* whoever \w acknowledges|strong="H5234"\w* \w him|strong="H6213"\w*. \w He|strong="H6213"\w* \w will|strong="H7227"\w* \w cause|strong="H6213"\w* \w them|strong="H6213"\w* \w to|strong="H6213"\w* \w rule|strong="H4910"\w* \w over|strong="H4910"\w* \w many|strong="H7227"\w*, \w and|strong="H6213"\w* \w will|strong="H7227"\w* \w divide|strong="H2505"\w* \w the|strong="H6213"\w* land \w for|strong="H6213"\w* \w a|strong="H3068"\w* \w price|strong="H4242"\w*. +\p +\v 40 “\w At|strong="H5921"\w* \w the|strong="H5921"\w* \w time|strong="H6256"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w end|strong="H7093"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w south|strong="H5045"\w* \w will|strong="H4428"\w* contend \w with|strong="H5973"\w* \w him|strong="H5921"\w*; \w and|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w north|strong="H6828"\w* \w will|strong="H4428"\w* \w come|strong="H5674"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w* \w like|strong="H5973"\w* \w a|strong="H3068"\w* \w whirlwind|strong="H8175"\w*, \w with|strong="H5973"\w* \w chariots|strong="H7393"\w*, \w with|strong="H5973"\w* \w horsemen|strong="H6571"\w*, \w and|strong="H4428"\w* \w with|strong="H5973"\w* \w many|strong="H7227"\w* ships. \w He|strong="H5921"\w* \w will|strong="H4428"\w* \w enter|strong="H5674"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* countries, \w and|strong="H4428"\w* \w will|strong="H4428"\w* \w overflow|strong="H7857"\w* \w and|strong="H4428"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w*. +\v 41 \w He|strong="H3027"\w* \w will|strong="H1121"\w* enter \w also|strong="H3027"\w* \w into|strong="H3027"\w* \w the|strong="H3027"\w* \w glorious|strong="H6643"\w* land, \w and|strong="H1121"\w* \w many|strong="H7227"\w* countries \w will|strong="H1121"\w* \w be|strong="H3027"\w* \w overthrown|strong="H3782"\w*; \w but|strong="H7227"\w* these \w will|strong="H1121"\w* \w be|strong="H3027"\w* \w delivered|strong="H4422"\w* \w out|strong="H4422"\w* \w of|strong="H1121"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w*: Edom, \w Moab|strong="H4124"\w*, \w and|strong="H1121"\w* \w the|strong="H3027"\w* \w chief|strong="H7225"\w* \w of|strong="H1121"\w* \w the|strong="H3027"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*. +\v 42 \w He|strong="H3027"\w* \w will|strong="H1961"\w* \w also|strong="H3027"\w* \w stretch|strong="H7971"\w* \w out|strong="H7971"\w* \w his|strong="H7971"\w* \w hand|strong="H3027"\w* \w on|strong="H3027"\w* \w the|strong="H7971"\w* countries. \w The|strong="H7971"\w* land \w of|strong="H3027"\w* \w Egypt|strong="H4714"\w* won’t \w escape|strong="H6413"\w*. +\v 43 \w But|strong="H3605"\w* \w he|strong="H3605"\w* \w will|strong="H4714"\w* \w have|strong="H3605"\w* \w power|strong="H4910"\w* \w over|strong="H4910"\w* \w the|strong="H3605"\w* \w treasures|strong="H4362"\w* \w of|strong="H3605"\w* \w gold|strong="H2091"\w* \w and|strong="H3701"\w* \w of|strong="H3605"\w* \w silver|strong="H3701"\w*, \w and|strong="H3701"\w* \w over|strong="H4910"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w precious|strong="H2530"\w* \w things|strong="H3605"\w* \w of|strong="H3605"\w* \w Egypt|strong="H4714"\w*. \w The|strong="H3605"\w* \w Libyans|strong="H3864"\w* \w and|strong="H3701"\w* \w the|strong="H3605"\w* \w Ethiopians|strong="H3569"\w* \w will|strong="H4714"\w* follow \w his|strong="H3605"\w* \w steps|strong="H4703"\w*. +\v 44 \w But|strong="H7227"\w* \w news|strong="H8052"\w* \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w the|strong="H3318"\w* \w east|strong="H4217"\w* \w and|strong="H1419"\w* \w out|strong="H3318"\w* \w of|strong="H3318"\w* \w the|strong="H3318"\w* \w north|strong="H6828"\w* \w will|strong="H7227"\w* trouble \w him|strong="H3318"\w*; \w and|strong="H1419"\w* \w he|strong="H3318"\w* \w will|strong="H7227"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w with|strong="H3318"\w* \w great|strong="H1419"\w* \w fury|strong="H2534"\w* \w to|strong="H3318"\w* \w destroy|strong="H8045"\w* \w and|strong="H1419"\w* \w utterly|strong="H2763"\w* \w to|strong="H3318"\w* sweep \w away|strong="H3318"\w* \w many|strong="H7227"\w*. +\v 45 \w He|strong="H5704"\w* \w will|strong="H2022"\w* \w plant|strong="H5193"\w* \w the|strong="H5704"\w* tents \w of|strong="H2022"\w* \w his|strong="H5704"\w* palace \w between|strong="H5704"\w* \w the|strong="H5704"\w* \w sea|strong="H3220"\w* \w and|strong="H2022"\w* \w the|strong="H5704"\w* \w glorious|strong="H6643"\w* \w holy|strong="H6944"\w* \w mountain|strong="H2022"\w*; \w yet|strong="H5704"\w* \w he|strong="H5704"\w* \w will|strong="H2022"\w* come \w to|strong="H5704"\w* \w his|strong="H5704"\w* \w end|strong="H7093"\w*, \w and|strong="H2022"\w* no one \w will|strong="H2022"\w* \w help|strong="H5826"\w* \w him|strong="H5826"\w*. +\c 12 +\p +\v 1 “\w At|strong="H5921"\w* \w that|strong="H5971"\w* \w time|strong="H6256"\w* \w Michael|strong="H4317"\w* \w will|strong="H1961"\w* \w stand|strong="H5975"\w* \w up|strong="H5975"\w*, \w the|strong="H3605"\w* \w great|strong="H1419"\w* \w prince|strong="H8269"\w* \w who|strong="H3605"\w* \w stands|strong="H5975"\w* \w for|strong="H5704"\w* \w the|strong="H3605"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w your|strong="H3605"\w* \w people|strong="H5971"\w*; \w and|strong="H1121"\w* \w there|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w of|strong="H1121"\w* \w trouble|strong="H6869"\w*, \w such|strong="H1931"\w* \w as|strong="H5704"\w* \w never|strong="H3808"\w* \w was|strong="H1961"\w* \w since|strong="H5704"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w that|strong="H5971"\w* \w same|strong="H1931"\w* \w time|strong="H6256"\w*. \w At|strong="H5921"\w* \w that|strong="H5971"\w* \w time|strong="H6256"\w* \w your|strong="H3605"\w* \w people|strong="H5971"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w delivered|strong="H4422"\w*, \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H1931"\w* \w found|strong="H4672"\w* \w written|strong="H3789"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w book|strong="H5612"\w*. +\v 2 \w Many|strong="H7227"\w* \w of|strong="H2781"\w* those \w who|strong="H7227"\w* \w sleep|strong="H3463"\w* \w in|strong="H7227"\w* \w the|strong="H2416"\w* \w dust|strong="H6083"\w* \w of|strong="H2781"\w* \w the|strong="H2416"\w* \w earth|strong="H6083"\w* \w will|strong="H7227"\w* \w awake|strong="H6974"\w*, \w some|strong="H7227"\w* \w to|strong="H5769"\w* \w everlasting|strong="H5769"\w* \w life|strong="H2416"\w*, \w and|strong="H5769"\w* \w some|strong="H7227"\w* \w to|strong="H5769"\w* \w shame|strong="H2781"\w* \w and|strong="H5769"\w* \w everlasting|strong="H5769"\w* \w contempt|strong="H1860"\w*. +\v 3 Those \w who|strong="H7227"\w* \w are|strong="H7227"\w* \w wise|strong="H7919"\w* \w will|strong="H7227"\w* \w shine|strong="H2094"\w* \w as|strong="H7919"\w* \w the|strong="H6663"\w* \w brightness|strong="H2096"\w* \w of|strong="H3556"\w* \w the|strong="H6663"\w* \w expanse|strong="H7549"\w*. Those \w who|strong="H7227"\w* turn \w many|strong="H7227"\w* \w to|strong="H5769"\w* \w righteousness|strong="H6663"\w* \w will|strong="H7227"\w* \w shine|strong="H2094"\w* \w as|strong="H7919"\w* \w the|strong="H6663"\w* \w stars|strong="H3556"\w* \w forever|strong="H5769"\w* \w and|strong="H5769"\w* \w ever|strong="H5769"\w*. +\v 4 \w But|strong="H7227"\w* \w you|strong="H5704"\w*, \w Daniel|strong="H1840"\w*, \w shut|strong="H2856"\w* \w up|strong="H2856"\w* \w the|strong="H5704"\w* \w words|strong="H1697"\w* \w and|strong="H1697"\w* \w seal|strong="H2856"\w* \w the|strong="H5704"\w* \w book|strong="H5612"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w time|strong="H6256"\w* \w of|strong="H1697"\w* \w the|strong="H5704"\w* \w end|strong="H7093"\w*. \w Many|strong="H7227"\w* \w will|strong="H1697"\w* run \w back|strong="H7751"\w* \w and|strong="H1697"\w* \w forth|strong="H7751"\w*, \w and|strong="H1697"\w* \w knowledge|strong="H1847"\w* \w will|strong="H1697"\w* \w be|strong="H1697"\w* \w increased|strong="H7235"\w*.” +\p +\v 5 \w Then|strong="H2009"\w* \w I|strong="H2009"\w*, \w Daniel|strong="H1840"\w*, \w looked|strong="H7200"\w*, \w and|strong="H7200"\w* \w behold|strong="H2009"\w*, \w two|strong="H8147"\w* others \w stood|strong="H5975"\w*, \w one|strong="H7200"\w* \w on|strong="H7200"\w* \w the|strong="H7200"\w* \w river|strong="H2975"\w* \w bank|strong="H8193"\w* \w on|strong="H7200"\w* \w this|strong="H7200"\w* \w side|strong="H8147"\w*, \w and|strong="H7200"\w* \w the|strong="H7200"\w* \w other|strong="H8147"\w* \w on|strong="H7200"\w* \w the|strong="H7200"\w* \w river|strong="H2975"\w* \w bank|strong="H8193"\w* \w on|strong="H7200"\w* \w that|strong="H7200"\w* \w side|strong="H8147"\w*. +\v 6 One said \w to|strong="H5704"\w* \w the|strong="H5704"\w* man \w clothed|strong="H3847"\w* \w in|strong="H3847"\w* linen, \w who|strong="H4605"\w* \w was|strong="H4325"\w* \w above|strong="H4605"\w* \w the|strong="H5704"\w* \w waters|strong="H4325"\w* \w of|strong="H4325"\w* \w the|strong="H5704"\w* \w river|strong="H2975"\w*, “\w How|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H4325"\w* \w it|strong="H5704"\w* \w be|strong="H6382"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* \w end|strong="H7093"\w* \w of|strong="H4325"\w* \w these|strong="H4605"\w* \w wonders|strong="H6382"\w*?” +\p +\v 7 \w I|strong="H3588"\w* \w heard|strong="H8085"\w* \w the|strong="H3605"\w* \w man|strong="H3605"\w* \w clothed|strong="H3847"\w* \w in|strong="H8085"\w* linen, \w who|strong="H3605"\w* \w was|strong="H3027"\w* \w above|strong="H4605"\w* \w the|strong="H3605"\w* \w waters|strong="H4325"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w river|strong="H2975"\w*, \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w held|strong="H7311"\w* \w up|strong="H7311"\w* \w his|strong="H3605"\w* \w right|strong="H3225"\w* \w hand|strong="H3027"\w* \w and|strong="H8064"\w* \w his|strong="H3605"\w* \w left|strong="H8040"\w* \w hand|strong="H3027"\w* \w to|strong="H3027"\w* \w heaven|strong="H8064"\w*, \w and|strong="H8064"\w* \w swore|strong="H7650"\w* \w by|strong="H3027"\w* \w him|strong="H3027"\w* \w who|strong="H3605"\w* \w lives|strong="H2416"\w* \w forever|strong="H5769"\w* \w that|strong="H3588"\w* \w it|strong="H3588"\w* \w will|strong="H5971"\w* \w be|strong="H3027"\w* \w for|strong="H3588"\w* \w a|strong="H3068"\w* \w time|strong="H4150"\w*, \w times|strong="H4150"\w*, \w and|strong="H8064"\w* \w a|strong="H3068"\w* \w half|strong="H2677"\w*; \w and|strong="H8064"\w* \w when|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H5971"\w* \w finished|strong="H3615"\w* breaking \w in|strong="H8085"\w* \w pieces|strong="H5310"\w* \w the|strong="H3605"\w* \w power|strong="H3027"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w holy|strong="H6944"\w* \w people|strong="H5971"\w*, \w all|strong="H3605"\w* \w these|strong="H8085"\w* \w things|strong="H6944"\w* \w will|strong="H5971"\w* \w be|strong="H3027"\w* \w finished|strong="H3615"\w*. +\p +\v 8 \w I|strong="H3808"\w* \w heard|strong="H8085"\w*, \w but|strong="H3808"\w* \w I|strong="H3808"\w* didn’t \w understand|strong="H8085"\w*. \w Then|strong="H8085"\w* \w I|strong="H3808"\w* \w said|strong="H8085"\w*, “\w My|strong="H8085"\w* lord, \w what|strong="H4100"\w* \w will|strong="H3808"\w* \w be|strong="H3808"\w* \w the|strong="H8085"\w* outcome \w of|strong="H8085"\w* \w these|strong="H8085"\w* \w things|strong="H3808"\w*?” +\p +\v 9 \w He|strong="H3588"\w* \w said|strong="H1697"\w*, “\w Go|strong="H3212"\w* \w your|strong="H3588"\w* \w way|strong="H3212"\w*, \w Daniel|strong="H1840"\w*; \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w words|strong="H1697"\w* \w are|strong="H1697"\w* \w shut|strong="H2856"\w* \w up|strong="H2856"\w* \w and|strong="H3212"\w* \w sealed|strong="H2856"\w* \w until|strong="H5704"\w* \w the|strong="H3588"\w* \w time|strong="H6256"\w* \w of|strong="H1697"\w* \w the|strong="H3588"\w* \w end|strong="H7093"\w*. +\v 10 \w Many|strong="H7227"\w* \w will|strong="H7563"\w* \w purify|strong="H1305"\w* themselves, \w and|strong="H3605"\w* \w make|strong="H3835"\w* themselves \w white|strong="H3835"\w*, \w and|strong="H3605"\w* \w be|strong="H3808"\w* \w refined|strong="H6884"\w*, \w but|strong="H3808"\w* \w the|strong="H3605"\w* \w wicked|strong="H7563"\w* \w will|strong="H7563"\w* \w do|strong="H3605"\w* \w wickedly|strong="H7561"\w*; \w and|strong="H3605"\w* \w none|strong="H3808"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w wicked|strong="H7563"\w* \w will|strong="H7563"\w* \w understand|strong="H7919"\w*, \w but|strong="H3808"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H7563"\w* \w wise|strong="H7919"\w* \w will|strong="H7563"\w* \w understand|strong="H7919"\w*. +\p +\v 11 “\w From|strong="H5493"\w* \w the|strong="H5414"\w* \w time|strong="H6256"\w* \w that|strong="H3117"\w* \w the|strong="H5414"\w* \w continual|strong="H8548"\w* \w burnt|strong="H8548"\w* offering \w is|strong="H3117"\w* \w taken|strong="H5493"\w* \w away|strong="H5493"\w* \w and|strong="H3967"\w* \w the|strong="H5414"\w* \w abomination|strong="H8251"\w* \w that|strong="H3117"\w* \w makes|strong="H5414"\w* \w desolate|strong="H8074"\w* \w set|strong="H5414"\w* \w up|strong="H5414"\w*, \w there|strong="H3117"\w* \w will|strong="H5414"\w* \w be|strong="H3117"\w* \w one|strong="H3967"\w* thousand \w two|strong="H3967"\w* \w hundred|strong="H3967"\w* \w ninety|strong="H8673"\w* \w days|strong="H3117"\w*. +\v 12 Blessed \w is|strong="H3117"\w* \w he|strong="H3117"\w* who \w waits|strong="H2442"\w*, \w and|strong="H3967"\w* \w comes|strong="H3117"\w* \w to|strong="H3117"\w* \w the|strong="H3117"\w* \w one|strong="H3967"\w* thousand \w three|strong="H7969"\w* \w hundred|strong="H3967"\w* \w thirty-five|strong="H7970"\w* \w days|strong="H3117"\w*. +\p +\v 13 “\w But|strong="H3117"\w* \w go|strong="H3212"\w* \w your|strong="H5117"\w* \w way|strong="H3212"\w* \w until|strong="H3117"\w* \w the|strong="H3117"\w* \w end|strong="H7093"\w*; \w for|strong="H3117"\w* \w you|strong="H3117"\w* \w will|strong="H3117"\w* \w rest|strong="H5117"\w*, \w and|strong="H3117"\w* \w will|strong="H3117"\w* \w stand|strong="H5975"\w* \w in|strong="H3117"\w* \w your|strong="H5117"\w* inheritance \w at|strong="H3117"\w* \w the|strong="H3117"\w* \w end|strong="H7093"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w*.” \ No newline at end of file diff --git a/bibles/eng-web_usfm/29-HOSeng-web.usfm b/bibles/eng-web_usfm/29-HOSeng-web.usfm new file mode 100644 index 0000000..dfb6913 --- /dev/null +++ b/bibles/eng-web_usfm/29-HOSeng-web.usfm @@ -0,0 +1,849 @@ +\id HOS 28-HOS-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Hosea +\toc1 The Book of Hosea +\toc2 Hosea +\toc3 Hos +\mt2 The Book of +\mt1 Hosea +\c 1 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s\f + \fr 1:1 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w word|strong="H1697"\w* \w that|strong="H3117"\w* \w came|strong="H1961"\w* \w to|strong="H3478"\w* \w Hosea|strong="H1954"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Beeri, \w in|strong="H3478"\w* \w the|strong="H3068"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w Uzziah|strong="H5818"\w*, \w Jotham|strong="H3147"\w*, Ahaz, \w and|strong="H1121"\w* \w Hezekiah|strong="H2396"\w*, \w kings|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w and|strong="H1121"\w* \w in|strong="H3478"\w* \w the|strong="H3068"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joash|strong="H3101"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*. +\p +\v 2 \w When|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w at|strong="H3068"\w* \w first|strong="H8462"\w* \w by|strong="H3068"\w* \w Hosea|strong="H1954"\w*, \w Yahweh|strong="H3068"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w Hosea|strong="H1954"\w*, “\w Go|strong="H3212"\w*, \w take|strong="H3947"\w* \w for|strong="H3588"\w* yourself \w a|strong="H3068"\w* \w wife|strong="H1696"\w* \w of|strong="H3068"\w* prostitution \w and|strong="H3068"\w* \w children|strong="H3206"\w* \w of|strong="H3068"\w* unfaithfulness; \w for|strong="H3588"\w* \w the|strong="H3588"\w* land \w commits|strong="H2181"\w* \w great|strong="H2181"\w* \w adultery|strong="H2181"\w*, forsaking \w Yahweh|strong="H3068"\w*.” +\p +\v 3 \w So|strong="H3947"\w* \w he|strong="H3947"\w* \w went|strong="H3212"\w* \w and|strong="H1121"\w* \w took|strong="H3947"\w* \w Gomer|strong="H1586"\w* \w the|strong="H3947"\w* \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Diblaim|strong="H1691"\w*; \w and|strong="H1121"\w* she \w conceived|strong="H2029"\w*, \w and|strong="H1121"\w* \w bore|strong="H3205"\w* \w him|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*. +\p +\v 4 \w Yahweh|strong="H3068"\w* \w said|strong="H7121"\w* \w to|strong="H3478"\w* \w him|strong="H7121"\w*, “\w Call|strong="H7121"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w* \w Jezreel|strong="H3157"\w*, \w for|strong="H3588"\w* \w yet|strong="H5750"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w while|strong="H5750"\w*, \w and|strong="H3478"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w avenge|strong="H6485"\w* \w the|strong="H5921"\w* \w blood|strong="H1818"\w* \w of|strong="H1004"\w* \w Jezreel|strong="H3157"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jehu|strong="H3058"\w*, \w and|strong="H3478"\w* \w will|strong="H3068"\w* \w cause|strong="H7121"\w* \w the|strong="H5921"\w* \w kingdom|strong="H4468"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w to|strong="H3478"\w* \w cease|strong="H7673"\w*. +\v 5 \w It|strong="H1931"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w in|strong="H3478"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w break|strong="H7665"\w* \w the|strong="H3117"\w* \w bow|strong="H7198"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w* \w in|strong="H3478"\w* \w the|strong="H3117"\w* \w valley|strong="H6010"\w* \w of|strong="H3117"\w* \w Jezreel|strong="H3157"\w*.” +\p +\v 6 \w She|strong="H3588"\w* \w conceived|strong="H2029"\w* \w again|strong="H5750"\w*, \w and|strong="H3478"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w daughter|strong="H1323"\w*. +\p \w Then|strong="H5375"\w* \w he|strong="H3588"\w* \w said|strong="H7121"\w* \w to|strong="H3478"\w* \w him|strong="H3205"\w*, “\w Call|strong="H7121"\w* \w her|strong="H5375"\w* \w name|strong="H8034"\w* \w Lo-Ruhamah|strong="H3819"\w*,\f + \fr 1:6 \ft Lo-Ruhamah means “not loved”.\f* \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3478"\w* \w no|strong="H3808"\w* \w longer|strong="H5750"\w* \w have|strong="H7355"\w* \w mercy|strong="H7355"\w* \w on|strong="H7355"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w should|strong="H3588"\w* \w in|strong="H3478"\w* \w any|strong="H5750"\w* way \w pardon|strong="H5375"\w* \w them|strong="H7121"\w*. +\v 7 \w But|strong="H3808"\w* \w I|strong="H3808"\w* \w will|strong="H3068"\w* \w have|strong="H7355"\w* \w mercy|strong="H7355"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w will|strong="H3068"\w* \w save|strong="H3467"\w* \w them|strong="H3068"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*,\f + \fr 1:7 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w and|strong="H3063"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w save|strong="H3467"\w* \w them|strong="H3068"\w* \w by|strong="H3068"\w* \w bow|strong="H7198"\w*, \w sword|strong="H2719"\w*, \w battle|strong="H4421"\w*, \w horses|strong="H5483"\w*, \w or|strong="H3808"\w* \w horsemen|strong="H6571"\w*.” +\p +\v 8 Now \w when|strong="H1121"\w* she \w had|strong="H3205"\w* \w weaned|strong="H1580"\w* \w Lo-Ruhamah|strong="H3819"\w*, she \w conceived|strong="H2029"\w*, \w and|strong="H1121"\w* \w bore|strong="H3205"\w* \w a|strong="H3068"\w* \w son|strong="H1121"\w*. +\p +\v 9 \w He|strong="H3588"\w* \w said|strong="H7121"\w*, “\w Call|strong="H7121"\w* \w his|strong="H7121"\w* \w name|strong="H8034"\w* \w Lo-Ammi|strong="H3818"\w*,\f + \fr 1:9 \ft Lo-Ammi means “not my people”.\f* \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H5971"\w* \w not|strong="H3808"\w* \w my|strong="H1961"\w* \w people|strong="H5971"\w*, \w and|strong="H5971"\w* \w I|strong="H3588"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* yours. +\v 10 Yet the number of the children of Israel will be as the sand of the sea, which can’t be measured or counted; and it will come to pass that, in the place where it was said to them, ‘You are not my people,’ they will be called ‘sons of the living God.’ +\v 11 The children of Judah and the children of Israel will be gathered together, and they will appoint themselves one head, and will go up from the land; for great will be the day of Jezreel. +\c 2 +\p +\v 1 “\w Say|strong="H3478"\w* \w to|strong="H3478"\w* \w your|strong="H1961"\w* \w brothers|strong="H1121"\w*, ‘\w My|strong="H1961"\w* \w people|strong="H5971"\w*!’\f + \fr 2:1 \ft ‘Ammi’ in Hebrew\f* +\q2 \w and|strong="H1121"\w* \w to|strong="H3478"\w* \w your|strong="H1961"\w* sisters, ‘\w My|strong="H1961"\w* loved \w one|strong="H3808"\w*!’\f + \fr 2:1 \ft ‘Ruhamah’ in Hebrew\f* +\q1 +\v 2 Contend \w with|strong="H3117"\w* \w your|strong="H7760"\w* mother! +\q2 Contend, \w for|strong="H3588"\w* \w she|strong="H3588"\w* \w is|strong="H3117"\w* \w not|strong="H3588"\w* \w my|strong="H7760"\w* wife, +\q2 \w neither|strong="H4480"\w* am \w I|strong="H3588"\w* \w her|strong="H7760"\w* husband; +\q1 \w and|strong="H1121"\w* \w let|strong="H7760"\w* \w her|strong="H7760"\w* \w put|strong="H7760"\w* \w away|strong="H5927"\w* \w her|strong="H7760"\w* prostitution \w from|strong="H4480"\w* \w her|strong="H7760"\w* face, +\q2 \w and|strong="H1121"\w* \w her|strong="H7760"\w* adulteries \w from|strong="H4480"\w* \w between|strong="H4480"\w* \w her|strong="H7760"\w* breasts; +\q1 +\v 3 lest \w I|strong="H5971"\w* strip her naked, +\q2 \w and|strong="H5971"\w* make her bare \w as|strong="H5971"\w* \w in|strong="H5971"\w* \w the|strong="H5971"\w* day \w that|strong="H5971"\w* she \w was|strong="H5971"\w* born, +\q1 \w and|strong="H5971"\w* make her \w like|strong="H5971"\w* \w a|strong="H3068"\w* wilderness, +\q2 \w and|strong="H5971"\w* set her \w like|strong="H5971"\w* \w a|strong="H3068"\w* dry land, +\q2 \w and|strong="H5971"\w* kill her \w with|strong="H5971"\w* thirst. +\q1 +\v 4 \w Indeed|strong="H3588"\w*, \w on|strong="H6440"\w* \w her|strong="H5493"\w* children \w I|strong="H3588"\w* \w will|strong="H3808"\w* \w have|strong="H3588"\w* \w no|strong="H3808"\w* mercy, +\q2 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H6440"\w* children \w of|strong="H6440"\w* unfaithfulness. +\q1 +\v 5 \w For|strong="H3117"\w* \w their|strong="H7760"\w* mother \w has|strong="H3117"\w* played \w the|strong="H3205"\w* prostitute. +\q2 She \w who|strong="H3205"\w* conceived \w them|strong="H7760"\w* \w has|strong="H3117"\w* \w done|strong="H7760"\w* shamefully; +\q1 \w for|strong="H3117"\w* she said, ‘\w I|strong="H3117"\w* \w will|strong="H3117"\w* go \w after|strong="H3117"\w* \w my|strong="H7760"\w* lovers, +\q2 \w who|strong="H3205"\w* \w give|strong="H7760"\w* \w me|strong="H7760"\w* \w my|strong="H7760"\w* bread \w and|strong="H3117"\w* \w my|strong="H7760"\w* water, +\q2 \w my|strong="H7760"\w* wool \w and|strong="H3117"\w* \w my|strong="H7760"\w* flax, +\q2 \w my|strong="H7760"\w* oil \w and|strong="H3117"\w* \w my|strong="H7760"\w* drink.’ +\q1 +\v 6 \w Therefore|strong="H3588"\w* \w behold|strong="H3808"\w*,\f + \fr 2:6 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w I|strong="H3588"\w* \w will|strong="H1121"\w* hedge \w up|strong="H1121"\w* \w your|strong="H3588"\w* way \w with|strong="H1121"\w* thorns, +\q2 \w and|strong="H1121"\w* \w I|strong="H3588"\w* \w will|strong="H1121"\w* build \w a|strong="H3068"\w* wall against \w her|strong="H3588"\w*, +\q2 \w that|strong="H3588"\w* \w she|strong="H3588"\w* \w can|strong="H3808"\w*’t \w find|strong="H7355"\w* \w her|strong="H3588"\w* way. +\q1 +\v 7 \w She|strong="H3588"\w* \w will|strong="H5414"\w* \w follow|strong="H3212"\w* \w after|strong="H3588"\w* \w her|strong="H5414"\w* lovers, +\q2 \w but|strong="H3588"\w* \w she|strong="H3588"\w* won’t overtake \w them|strong="H5414"\w*; +\q1 \w and|strong="H3212"\w* \w she|strong="H3588"\w* \w will|strong="H5414"\w* seek \w them|strong="H5414"\w*, +\q2 \w but|strong="H3588"\w* won’t \w find|strong="H5414"\w* \w them|strong="H5414"\w*. +\q1 \w Then|strong="H5414"\w* \w she|strong="H3588"\w* \w will|strong="H5414"\w* say, ‘\w I|strong="H3588"\w* \w will|strong="H5414"\w* \w go|strong="H3212"\w* \w and|strong="H3212"\w* return \w to|strong="H3212"\w* \w my|strong="H5414"\w* first husband, +\q2 \w for|strong="H3588"\w* \w then|strong="H5414"\w* \w it|strong="H5414"\w* \w was|strong="H4325"\w* better \w with|strong="H3212"\w* \w me|strong="H5414"\w* \w than|strong="H3588"\w* \w now|strong="H3588"\w*.’ +\q1 +\v 8 \w For|strong="H3651"\w* \w she|strong="H3651"\w* didn’t know \w that|strong="H3651"\w* \w I|strong="H2005"\w* gave \w her|strong="H4672"\w* \w the|strong="H1870"\w* grain, \w the|strong="H1870"\w* new wine, \w and|strong="H1870"\w* \w the|strong="H1870"\w* oil, +\q2 \w and|strong="H1870"\w* multiplied \w to|strong="H1870"\w* \w her|strong="H4672"\w* silver \w and|strong="H1870"\w* gold, which \w they|strong="H3651"\w* used \w for|strong="H3651"\w* Baal. +\q1 +\v 9 \w Therefore|strong="H6258"\w* \w I|strong="H3588"\w* \w will|strong="H3808"\w* \w take|strong="H7725"\w* \w back|strong="H7725"\w* \w my|strong="H1245"\w* grain \w in|strong="H3212"\w* \w its|strong="H7725"\w* \w time|strong="H6258"\w*, +\q2 \w and|strong="H7725"\w* \w my|strong="H1245"\w* new wine \w in|strong="H3212"\w* \w its|strong="H7725"\w* season, +\q2 \w and|strong="H7725"\w* \w will|strong="H3808"\w* pluck \w away|strong="H7725"\w* \w my|strong="H1245"\w* wool \w and|strong="H7725"\w* \w my|strong="H1245"\w* flax \w which|strong="H3588"\w* \w should|strong="H3588"\w* \w have|strong="H4672"\w* covered \w her|strong="H4672"\w* nakedness. +\q1 +\v 10 \w Now|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H5414"\w* uncover \w her|strong="H5414"\w* lewdness \w in|strong="H6213"\w* \w the|strong="H3588"\w* sight \w of|strong="H6213"\w* \w her|strong="H5414"\w* lovers, +\q2 \w and|strong="H3701"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w will|strong="H5414"\w* \w deliver|strong="H5414"\w* \w her|strong="H5414"\w* \w out|strong="H5414"\w* \w of|strong="H6213"\w* \w my|strong="H5414"\w* \w hand|strong="H5414"\w*. +\q1 +\v 11 \w I|strong="H3651"\w* \w will|strong="H7725"\w* \w also|strong="H6256"\w* \w cause|strong="H3651"\w* \w all|strong="H5337"\w* \w her|strong="H3947"\w* celebrations \w to|strong="H7725"\w* \w cease|strong="H7725"\w*: +\q2 \w her|strong="H3947"\w* \w feasts|strong="H4150"\w*, \w her|strong="H3947"\w* \w new|strong="H8492"\w* moons, \w her|strong="H3947"\w* Sabbaths, \w and|strong="H7725"\w* \w all|strong="H5337"\w* \w her|strong="H3947"\w* \w solemn|strong="H4150"\w* \w assemblies|strong="H4150"\w*. +\q1 +\v 12 \w I|strong="H6258"\w* \w will|strong="H5869"\w* \w lay|strong="H1540"\w* waste \w her|strong="H1540"\w* vines \w and|strong="H3027"\w* \w her|strong="H1540"\w* fig trees, +\q2 \w about|strong="H3027"\w* \w which|strong="H5869"\w* \w she|strong="H3808"\w* \w has|strong="H5869"\w* said, ‘These \w are|strong="H5869"\w* \w my|strong="H5337"\w* wages \w that|strong="H3027"\w* \w my|strong="H5337"\w* lovers \w have|strong="H5869"\w* \w given|strong="H3027"\w* \w me|strong="H5337"\w*,’ +\q2 \w and|strong="H3027"\w* \w I|strong="H6258"\w* \w will|strong="H5869"\w* \w make|strong="H3027"\w* \w them|strong="H3027"\w* \w a|strong="H3068"\w* forest, +\q2 \w and|strong="H3027"\w* \w the|strong="H3027"\w* animals \w of|strong="H3027"\w* \w the|strong="H3027"\w* field \w shall|strong="H5869"\w* eat \w them|strong="H3027"\w*. +\q1 +\v 13 \w I|strong="H3605"\w* \w will|strong="H7673"\w* visit \w on|strong="H3605"\w* \w her|strong="H3605"\w* \w the|strong="H3605"\w* \w days|strong="H2282"\w* \w of|strong="H2282"\w* \w the|strong="H3605"\w* Baals, +\q2 \w to|strong="H4150"\w* \w which|strong="H2282"\w* \w she|strong="H2320"\w* burned incense +\q1 when \w she|strong="H2320"\w* decked herself \w with|strong="H4150"\w* \w her|strong="H3605"\w* earrings \w and|strong="H4150"\w* \w her|strong="H3605"\w* jewels, +\q2 \w and|strong="H4150"\w* went after \w her|strong="H3605"\w* lovers +\q2 \w and|strong="H4150"\w* forgot \w me|strong="H3605"\w*,” says \w Yahweh|strong="H3068"\w*. +\q1 +\v 14 “Therefore behold, \w I|strong="H5414"\w* \w will|strong="H5414"\w* allure \w her|strong="H5414"\w*, +\q2 \w and|strong="H7704"\w* \w bring|strong="H5414"\w* \w her|strong="H5414"\w* \w into|strong="H5414"\w* \w the|strong="H5414"\w* wilderness, +\q2 \w and|strong="H7704"\w* speak tenderly \w to|strong="H5414"\w* \w her|strong="H5414"\w*. +\q1 +\v 15 \w I|strong="H3117"\w* \w will|strong="H3068"\w* give \w her|strong="H5921"\w* vineyards \w from|strong="H5921"\w* \w there|strong="H1992"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H5002"\w* valley \w of|strong="H3068"\w* Achor \w for|strong="H5921"\w* \w a|strong="H3068"\w* door \w of|strong="H3068"\w* hope; +\q1 \w and|strong="H3068"\w* \w she|strong="H5921"\w* \w will|strong="H3068"\w* respond \w there|strong="H1992"\w* +\q2 \w as|strong="H3117"\w* \w in|strong="H5921"\w* \w the|strong="H5002"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w her|strong="H5921"\w* youth, +\q2 \w and|strong="H3068"\w* \w as|strong="H3117"\w* \w in|strong="H5921"\w* \w the|strong="H5002"\w* \w day|strong="H3117"\w* \w when|strong="H3117"\w* \w she|strong="H5921"\w* \w came|strong="H3068"\w* \w up|strong="H5921"\w* \w out|strong="H5921"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* land \w of|strong="H3068"\w* Egypt. +\q1 +\v 16 \w It|strong="H5921"\w* \w will|strong="H3820"\w* \w be|strong="H3820"\w* \w in|strong="H5921"\w* \w that|strong="H3651"\w* day,” \w says|strong="H1696"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w that|strong="H3651"\w* \w you|strong="H5921"\w* \w will|strong="H3820"\w* call \w me|strong="H5921"\w* ‘\w my|strong="H5921"\w* husband,’ +\q2 \w and|strong="H3212"\w* \w no|strong="H1696"\w* longer call \w me|strong="H5921"\w* ‘\w my|strong="H5921"\w* master.’ +\q1 +\v 17 \w For|strong="H4714"\w* \w I|strong="H3117"\w* \w will|strong="H4714"\w* \w take|strong="H5927"\w* \w away|strong="H5927"\w* \w the|strong="H5414"\w* names \w of|strong="H3117"\w* \w the|strong="H5414"\w* Baals \w out|strong="H5414"\w* \w of|strong="H3117"\w* \w her|strong="H5414"\w* mouth, +\q2 \w and|strong="H6030"\w* \w they|strong="H3117"\w* \w will|strong="H4714"\w* \w no|strong="H5414"\w* longer \w be|strong="H3117"\w* \w mentioned|strong="H5927"\w* \w by|strong="H3117"\w* name. +\q1 +\v 18 \w In|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w make|strong="H7121"\w* \w a|strong="H3068"\w* covenant \w for|strong="H7121"\w* \w them|strong="H7121"\w* \w with|strong="H3068"\w* \w the|strong="H5002"\w* \w animals|strong="H1961"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* field, +\q2 \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w the|strong="H5002"\w* birds \w of|strong="H3068"\w* \w the|strong="H5002"\w* sky, +\q2 \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w the|strong="H5002"\w* creeping \w things|strong="H1961"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* ground. +\q1 \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w break|strong="H3068"\w* \w the|strong="H5002"\w* bow, \w the|strong="H5002"\w* sword, \w and|strong="H3068"\w* \w the|strong="H5002"\w* \w battle|strong="H3117"\w* \w out|strong="H3808"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* land, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w make|strong="H7121"\w* \w them|strong="H7121"\w* \w lie|strong="H1961"\w* \w down|strong="H7121"\w* safely. +\q1 +\v 19 \w I|strong="H3808"\w* \w will|strong="H3808"\w* betroth \w you|strong="H3808"\w* \w to|strong="H6310"\w* \w me|strong="H5493"\w* forever. +\q2 Yes, \w I|strong="H3808"\w* \w will|strong="H3808"\w* betroth \w you|strong="H3808"\w* \w to|strong="H6310"\w* \w me|strong="H5493"\w* \w in|strong="H5493"\w* righteousness, \w in|strong="H5493"\w* justice, \w in|strong="H5493"\w* loving kindness, \w and|strong="H6310"\w* \w in|strong="H5493"\w* compassion. +\q1 +\v 20 \w I|strong="H3117"\w* \w will|strong="H2719"\w* even betroth \w you|strong="H3117"\w* \w to|strong="H3117"\w* \w me|strong="H4480"\w* \w in|strong="H3117"\w* faithfulness; +\q2 \w and|strong="H3117"\w* \w you|strong="H3117"\w* \w shall|strong="H3117"\w* know \w Yahweh|strong="H3068"\w*. +\q1 +\v 21 \w It|strong="H4941"\w* \w will|strong="H6664"\w* happen \w in|strong="H4941"\w* \w that|strong="H5769"\w* day, \w that|strong="H5769"\w* I \w will|strong="H6664"\w* respond,” says \w Yahweh|strong="H3068"\w*. +\q2 “I \w will|strong="H6664"\w* respond \w to|strong="H4941"\w* \w the|strong="H4941"\w* heavens, +\q2 \w and|strong="H4941"\w* they \w will|strong="H6664"\w* respond \w to|strong="H4941"\w* \w the|strong="H4941"\w* earth; +\q2 +\v 22 \w and|strong="H3068"\w* \w the|strong="H3068"\w* earth \w will|strong="H3068"\w* respond \w to|strong="H3068"\w* \w the|strong="H3068"\w* grain, \w and|strong="H3068"\w* \w the|strong="H3068"\w* new wine, \w and|strong="H3068"\w* \w the|strong="H3068"\w* oil; +\q2 \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* respond \w to|strong="H3068"\w* Jezreel. +\q1 +\v 23 \w I|strong="H3117"\w* \w will|strong="H3068"\w* sow \w her|strong="H1931"\w* \w to|strong="H3068"\w* \w me|strong="H6030"\w* \w in|strong="H3068"\w* \w the|strong="H5002"\w* \w earth|strong="H8064"\w*; +\q2 \w and|strong="H3068"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w have|strong="H1961"\w* \w mercy|strong="H3068"\w* \w on|strong="H3117"\w* \w her|strong="H1931"\w* \w who|strong="H1931"\w* \w had|strong="H3068"\w* \w not|strong="H1961"\w* obtained \w mercy|strong="H3068"\w*; +\q2 \w and|strong="H3068"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w tell|strong="H6030"\w* \w those|strong="H1992"\w* \w who|strong="H1931"\w* \w were|strong="H1961"\w* \w not|strong="H1961"\w* \w my|strong="H3068"\w* \w people|strong="H1931"\w*, ‘\w You|strong="H3117"\w* \w are|strong="H3117"\w* \w my|strong="H3068"\w* \w people|strong="H1931"\w*;’ +\q2 \w and|strong="H3068"\w* \w they|strong="H1992"\w* \w will|strong="H3068"\w* say, ‘\w You|strong="H3117"\w* \w are|strong="H3117"\w* \w My|strong="H3068"\w* \w God|strong="H3068"\w*!’” +\c 3 +\p +\v 1 \w Yahweh|strong="H3068"\w* said \w to|strong="H3478"\w* \w me|strong="H3212"\w*, “\w Go|strong="H3212"\w* \w again|strong="H5750"\w*, love \w a|strong="H3068"\w* woman loved \w by|strong="H3068"\w* \w another|strong="H7453"\w*, \w and|strong="H1121"\w* \w an|strong="H3068"\w* \w adulteress|strong="H5003"\w*, \w even|strong="H5750"\w* \w as|strong="H3068"\w* \w Yahweh|strong="H3068"\w* loves \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, though \w they|strong="H1992"\w* \w turn|strong="H6437"\w* \w to|strong="H3478"\w* \w other|strong="H5750"\w* gods, \w and|strong="H1121"\w* love cakes \w of|strong="H1121"\w* raisins.” +\p +\v 2 So I \w bought|strong="H3739"\w* her \w for|strong="H3701"\w* myself \w for|strong="H3701"\w* \w fifteen|strong="H2568"\w* pieces \w of|strong="H3701"\w* \w silver|strong="H3701"\w* \w and|strong="H3701"\w* \w a|strong="H3068"\w* \w homer|strong="H2563"\w*\f + \fr 3:2 \ft 1 homer is about 220 liters or 6 bushels\f* \w and|strong="H3701"\w* \w a|strong="H3068"\w* \w half|strong="H3963"\w* \w of|strong="H3701"\w* \w barley|strong="H8184"\w*. +\v 3 \w I|strong="H3117"\w* said \w to|strong="H1961"\w* \w her|strong="H1571"\w*, “\w You|strong="H3117"\w* \w shall|strong="H3117"\w* \w stay|strong="H3427"\w* \w with|strong="H3427"\w* \w me|strong="H1961"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w*. \w You|strong="H3117"\w* \w shall|strong="H3117"\w* \w not|strong="H3808"\w* \w play|strong="H2181"\w* \w the|strong="H3117"\w* \w prostitute|strong="H2181"\w*, \w and|strong="H3117"\w* \w you|strong="H3117"\w* \w shall|strong="H3117"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w with|strong="H3427"\w* \w any|strong="H1571"\w* other man. \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w also|strong="H1571"\w* \w be|strong="H1961"\w* \w so|strong="H1961"\w* toward \w you|strong="H3117"\w*.” +\p +\v 4 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w shall|strong="H1121"\w* \w live|strong="H3427"\w* \w many|strong="H7227"\w* \w days|strong="H3117"\w* \w without|strong="H3427"\w* \w king|strong="H4428"\w*, \w without|strong="H3427"\w* \w prince|strong="H8269"\w*, \w without|strong="H3427"\w* \w sacrifice|strong="H2077"\w*, \w without|strong="H3427"\w* sacred stone, \w and|strong="H1121"\w* \w without|strong="H3427"\w* ephod \w or|strong="H3117"\w* \w idols|strong="H8655"\w*. +\v 5 Afterward \w the|strong="H3068"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w shall|strong="H3068"\w* \w return|strong="H7725"\w* \w and|strong="H1121"\w* \w seek|strong="H1245"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H1121"\w* \w David|strong="H1732"\w* \w their|strong="H3068"\w* \w king|strong="H4428"\w*, \w and|strong="H1121"\w* \w shall|strong="H3068"\w* \w come|strong="H7725"\w* \w with|strong="H3068"\w* \w trembling|strong="H6342"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H1121"\w* \w to|strong="H7725"\w* \w his|strong="H3068"\w* blessings \w in|strong="H3478"\w* \w the|strong="H3068"\w* last \w days|strong="H3117"\w*. +\c 4 +\p +\v 1 \w Hear|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, \w you|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, +\q2 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w a|strong="H3068"\w* \w charge|strong="H1697"\w* \w against|strong="H5973"\w* \w the|strong="H8085"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1121"\w* \w the|strong="H8085"\w* land: +\q1 “\w Indeed|strong="H3588"\w* \w there|strong="H3427"\w* \w is|strong="H3068"\w* \w no|strong="H3478"\w* \w truth|strong="H1847"\w*, \w nor|strong="H1121"\w* \w goodness|strong="H2617"\w*, +\q2 \w nor|strong="H1121"\w* \w knowledge|strong="H1847"\w* \w of|strong="H1121"\w* \w God|strong="H3068"\w* \w in|strong="H3427"\w* \w the|strong="H8085"\w* land. +\q1 +\v 2 There \w is|strong="H1818"\w* cursing, \w lying|strong="H3584"\w*, \w murder|strong="H7523"\w*, \w stealing|strong="H1589"\w*, \w and|strong="H1818"\w* \w committing|strong="H5003"\w* \w adultery|strong="H5003"\w*; +\q2 \w they|strong="H5003"\w* \w break|strong="H6555"\w* boundaries, \w and|strong="H1818"\w* \w bloodshed|strong="H1818"\w* causes \w bloodshed|strong="H1818"\w*. +\q1 +\v 3 \w Therefore|strong="H3651"\w* \w the|strong="H3605"\w* \w land|strong="H7704"\w* \w will|strong="H1571"\w* \w mourn|strong="H5921"\w*, +\q2 \w and|strong="H8064"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w dwells|strong="H3427"\w* \w in|strong="H3427"\w* \w it|strong="H5921"\w* \w will|strong="H1571"\w* waste \w away|strong="H3605"\w*, +\q1 \w with|strong="H5921"\w* \w all|strong="H3605"\w* \w living|strong="H2416"\w* \w things|strong="H3605"\w* \w in|strong="H3427"\w* \w her|strong="H3605"\w*, +\q2 \w even|strong="H1571"\w* \w the|strong="H3605"\w* \w animals|strong="H2416"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w and|strong="H8064"\w* \w the|strong="H3605"\w* \w birds|strong="H5775"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*; +\q2 \w yes|strong="H1571"\w*, \w the|strong="H3605"\w* \w fish|strong="H1709"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w* \w also|strong="H1571"\w* die. +\b +\q1 +\v 4 “\w Yet|strong="H3198"\w* let no man bring \w a|strong="H3068"\w* charge, neither let any man \w accuse|strong="H7378"\w*; +\q2 \w for|strong="H7378"\w* \w your|strong="H7378"\w* \w people|strong="H5971"\w* \w are|strong="H5971"\w* \w like|strong="H5971"\w* those \w who|strong="H5971"\w* bring charges \w against|strong="H7378"\w* \w a|strong="H3068"\w* \w priest|strong="H3548"\w*. +\q1 +\v 5 \w You|strong="H3117"\w* \w will|strong="H1571"\w* \w stumble|strong="H3782"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w*, +\q2 \w and|strong="H3117"\w* \w the|strong="H3117"\w* \w prophet|strong="H5030"\w* \w will|strong="H1571"\w* \w also|strong="H1571"\w* \w stumble|strong="H3782"\w* \w with|strong="H5973"\w* \w you|strong="H3117"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w night|strong="H3915"\w*; +\q2 \w and|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H1571"\w* \w destroy|strong="H1820"\w* \w your|strong="H1571"\w* mother. +\q1 +\v 6 \w My|strong="H3588"\w* \w people|strong="H5971"\w* \w are|strong="H5971"\w* \w destroyed|strong="H1820"\w* \w for|strong="H3588"\w* \w lack|strong="H1097"\w* \w of|strong="H1121"\w* \w knowledge|strong="H1847"\w*. +\q2 \w Because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H5971"\w* \w rejected|strong="H3988"\w* \w knowledge|strong="H1847"\w*, \w I|strong="H3588"\w* \w will|strong="H5971"\w* \w also|strong="H1571"\w* \w reject|strong="H3988"\w* \w you|strong="H3588"\w*, +\q2 \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w may|strong="H5971"\w* \w be|strong="H1121"\w* \w no|strong="H1097"\w* \w priest|strong="H3547"\w* \w to|strong="H1121"\w* \w me|strong="H7911"\w*. +\q1 \w Because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H5971"\w* \w forgotten|strong="H7911"\w* \w your|strong="H3588"\w* God’s \w law|strong="H8451"\w*, +\q2 \w I|strong="H3588"\w* \w will|strong="H5971"\w* \w also|strong="H1571"\w* \w forget|strong="H7911"\w* \w your|strong="H3588"\w* \w children|strong="H1121"\w*. +\q1 +\v 7 \w As|strong="H3651"\w* \w they|strong="H3651"\w* were \w multiplied|strong="H7235"\w*, \w so|strong="H3651"\w* \w they|strong="H3651"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w me|strong="H7235"\w*. +\q2 \w I|strong="H3651"\w* \w will|strong="H3519"\w* \w change|strong="H4171"\w* \w their|strong="H4171"\w* \w glory|strong="H3519"\w* \w into|strong="H3519"\w* \w shame|strong="H7036"\w*. +\q1 +\v 8 \w They|strong="H5971"\w* feed \w on|strong="H5375"\w* \w the|strong="H5375"\w* \w sin|strong="H2403"\w* \w of|strong="H5971"\w* \w my|strong="H5375"\w* \w people|strong="H5971"\w*, +\q2 \w and|strong="H5971"\w* \w set|strong="H5375"\w* \w their|strong="H5375"\w* \w heart|strong="H5315"\w* \w on|strong="H5375"\w* \w their|strong="H5375"\w* \w iniquity|strong="H5771"\w*. +\q1 +\v 9 \w It|strong="H5921"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w people|strong="H5971"\w*, \w like|strong="H1961"\w* \w priest|strong="H3548"\w*; +\q2 \w and|strong="H7725"\w* \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w punish|strong="H6485"\w* \w them|strong="H5921"\w* \w for|strong="H5921"\w* \w their|strong="H7725"\w* \w ways|strong="H1870"\w*, +\q2 \w and|strong="H7725"\w* \w will|strong="H1961"\w* \w repay|strong="H7725"\w* \w them|strong="H5921"\w* \w for|strong="H5921"\w* \w their|strong="H7725"\w* \w deeds|strong="H4611"\w*. +\q1 +\v 10 \w They|strong="H3588"\w* \w will|strong="H3068"\w* eat, \w and|strong="H3068"\w* \w not|strong="H3808"\w* \w have|strong="H3068"\w* \w enough|strong="H7646"\w*. +\q2 \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w play|strong="H2181"\w* \w the|strong="H3588"\w* \w prostitute|strong="H2181"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w increase|strong="H6555"\w*; +\q2 \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3068"\w* \w abandoned|strong="H5800"\w* listening \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 11 \w Prostitution|strong="H2184"\w*, \w wine|strong="H3196"\w*, \w and|strong="H3196"\w* \w new|strong="H8492"\w* \w wine|strong="H3196"\w* \w take|strong="H3947"\w* \w away|strong="H3947"\w* \w understanding|strong="H3820"\w*. +\q2 +\v 12 \w My|strong="H5046"\w* \w people|strong="H5971"\w* \w consult|strong="H7592"\w* \w with|strong="H5971"\w* \w their|strong="H3588"\w* \w wooden|strong="H6086"\w* idol, +\q2 \w and|strong="H6086"\w* answer \w to|strong="H5971"\w* \w a|strong="H3068"\w* \w stick|strong="H6086"\w* \w of|strong="H7307"\w* \w wood|strong="H6086"\w*. +\q1 \w Indeed|strong="H3588"\w* \w the|strong="H3588"\w* \w spirit|strong="H7307"\w* \w of|strong="H7307"\w* prostitution \w has|strong="H3588"\w* \w led|strong="H8582"\w* \w them|strong="H8582"\w* \w astray|strong="H8582"\w*, +\q2 \w and|strong="H6086"\w* \w they|strong="H3588"\w* \w have|strong="H5971"\w* \w been|strong="H5046"\w* \w unfaithful|strong="H2181"\w* \w to|strong="H5971"\w* \w their|strong="H3588"\w* God. +\q1 +\v 13 \w They|strong="H3588"\w* \w sacrifice|strong="H2076"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tops|strong="H7218"\w* \w of|strong="H1323"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w*, +\q2 \w and|strong="H7218"\w* \w burn|strong="H6999"\w* \w incense|strong="H6999"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w hills|strong="H1389"\w*, \w under|strong="H8478"\w* oaks, \w poplars|strong="H3839"\w*, \w and|strong="H7218"\w* terebinths, +\q2 \w because|strong="H3588"\w* \w its|strong="H5921"\w* \w shade|strong="H6738"\w* \w is|strong="H2896"\w* \w good|strong="H2896"\w*. +\q1 \w Therefore|strong="H3651"\w* \w your|strong="H5921"\w* \w daughters|strong="H1323"\w* \w play|strong="H2181"\w* \w the|strong="H5921"\w* \w prostitute|strong="H2181"\w*, +\q2 \w and|strong="H7218"\w* \w your|strong="H5921"\w* \w brides|strong="H3618"\w* \w commit|strong="H5003"\w* \w adultery|strong="H5003"\w*. +\q1 +\v 14 \w I|strong="H3588"\w* \w will|strong="H5971"\w* \w not|strong="H3808"\w* \w punish|strong="H6485"\w* \w your|strong="H5921"\w* \w daughters|strong="H1323"\w* \w when|strong="H3588"\w* \w they|strong="H1992"\w* \w play|strong="H2181"\w* \w the|strong="H5921"\w* \w prostitute|strong="H2181"\w*, +\q2 \w nor|strong="H3808"\w* \w your|strong="H5921"\w* \w brides|strong="H3618"\w* \w when|strong="H3588"\w* \w they|strong="H1992"\w* \w commit|strong="H5003"\w* \w adultery|strong="H5003"\w*; +\q1 \w because|strong="H3588"\w* \w the|strong="H5921"\w* \w men|strong="H5971"\w* \w consort|strong="H6504"\w* \w with|strong="H5973"\w* \w prostitutes|strong="H2181"\w*, +\q2 \w and|strong="H5971"\w* \w they|strong="H1992"\w* \w sacrifice|strong="H2076"\w* \w with|strong="H5973"\w* \w the|strong="H5921"\w* shrine \w prostitutes|strong="H2181"\w*; +\q2 \w so|strong="H3808"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w without|strong="H3808"\w* understanding \w will|strong="H5971"\w* \w come|strong="H5971"\w* \w to|strong="H5921"\w* ruin. +\b +\q1 +\v 15 “Though \w you|strong="H5927"\w*, \w Israel|strong="H3478"\w*, \w play|strong="H2181"\w* \w the|strong="H3068"\w* \w prostitute|strong="H2181"\w*, +\q2 \w yet|strong="H3068"\w* don’t let \w Judah|strong="H3063"\w* offend; +\q2 \w and|strong="H3063"\w* don’t \w come|strong="H5927"\w* \w to|strong="H3478"\w* \w Gilgal|strong="H1537"\w*, +\q2 neither \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3478"\w* Beth Aven, +\q2 nor \w swear|strong="H7650"\w*, ‘\w As|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w lives|strong="H2416"\w*.’ +\q1 +\v 16 \w For|strong="H3588"\w* \w Israel|strong="H3478"\w* \w has|strong="H3068"\w* behaved extremely \w stubbornly|strong="H5637"\w*, \w like|strong="H3478"\w* \w a|strong="H3068"\w* \w stubborn|strong="H5637"\w* \w heifer|strong="H6510"\w*. +\q2 \w Then|strong="H6258"\w* \w how|strong="H3588"\w* \w will|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w feed|strong="H7462"\w* \w them|strong="H7462"\w* \w like|strong="H3478"\w* \w a|strong="H3068"\w* \w lamb|strong="H3532"\w* \w in|strong="H3478"\w* \w a|strong="H3068"\w* meadow? +\q1 +\v 17 Ephraim \w is|strong="H2266"\w* \w joined|strong="H2266"\w* \w to|strong="H2266"\w* \w idols|strong="H6091"\w*. +\q2 \w Leave|strong="H3240"\w* \w him|strong="H3240"\w* \w alone|strong="H3240"\w*! +\q1 +\v 18 \w Their|strong="H5493"\w* \w drink|strong="H5435"\w* has \w become|strong="H2181"\w* \w sour|strong="H5493"\w*. +\q2 \w They|strong="H4043"\w* \w play|strong="H2181"\w* \w the|strong="H5493"\w* \w prostitute|strong="H2181"\w* \w continually|strong="H2181"\w*. +\q2 \w Her|strong="H5493"\w* \w rulers|strong="H4043"\w* dearly love \w their|strong="H5493"\w* shameful way. +\q1 +\v 19 \w The|strong="H6887"\w* \w wind|strong="H7307"\w* \w has|strong="H7307"\w* \w wrapped|strong="H6887"\w* her \w up|strong="H6887"\w* \w in|strong="H2077"\w* its \w wings|strong="H3671"\w*; +\q2 \w and|strong="H2077"\w* they \w shall|strong="H7307"\w* \w be|strong="H7307"\w* disappointed because \w of|strong="H7307"\w* their \w sacrifices|strong="H2077"\w*. +\b +\c 5 +\p +\v 1 “\w Listen|strong="H8085"\w* \w to|strong="H3478"\w* \w this|strong="H2063"\w*, \w you|strong="H3588"\w* \w priests|strong="H3548"\w*! +\q2 \w Listen|strong="H8085"\w*, \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, +\q2 \w and|strong="H3478"\w* \w give|strong="H7181"\w* \w ear|strong="H8085"\w*, \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w*! +\q1 \w For|strong="H3588"\w* \w the|strong="H5921"\w* \w judgment|strong="H4941"\w* \w is|strong="H3478"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w*; +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w a|strong="H3068"\w* \w snare|strong="H6341"\w* \w at|strong="H5921"\w* \w Mizpah|strong="H4709"\w*, +\q2 \w and|strong="H3478"\w* \w a|strong="H3068"\w* \w net|strong="H7568"\w* \w spread|strong="H6566"\w* \w on|strong="H5921"\w* \w Tabor|strong="H8396"\w*. +\q1 +\v 2 \w The|strong="H3605"\w* rebels \w are|strong="H7846"\w* \w deep|strong="H6009"\w* \w in|strong="H3605"\w* \w slaughter|strong="H7819"\w*, +\q2 \w but|strong="H3605"\w* \w I|strong="H3605"\w* \w discipline|strong="H4148"\w* \w all|strong="H3605"\w* \w of|strong="H3605"\w* \w them|strong="H7819"\w*. +\q1 +\v 3 \w I|strong="H3588"\w* \w know|strong="H3045"\w* Ephraim, +\q2 \w and|strong="H3478"\w* \w Israel|strong="H3478"\w* \w is|strong="H3478"\w* \w not|strong="H3808"\w* \w hidden|strong="H3582"\w* \w from|strong="H4480"\w* \w me|strong="H4480"\w*; +\q1 \w for|strong="H3588"\w* \w now|strong="H6258"\w*, Ephraim, \w you|strong="H3588"\w* \w have|strong="H3045"\w* \w played|strong="H2181"\w* \w the|strong="H3588"\w* \w prostitute|strong="H2181"\w*. +\q2 \w Israel|strong="H3478"\w* \w is|strong="H3478"\w* \w defiled|strong="H2930"\w*. +\q1 +\v 4 \w Their|strong="H3068"\w* \w deeds|strong="H4611"\w* won’t \w allow|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H7725"\w* \w turn|strong="H7725"\w* \w to|strong="H7725"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w spirit|strong="H7307"\w* \w of|strong="H3068"\w* prostitution \w is|strong="H3068"\w* \w within|strong="H7130"\w* \w them|strong="H5414"\w*, +\q2 \w and|strong="H3068"\w* \w they|strong="H3588"\w* don’t \w know|strong="H3045"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 5 \w The|strong="H6440"\w* \w pride|strong="H1347"\w* \w of|strong="H6440"\w* \w Israel|strong="H3478"\w* \w testifies|strong="H6030"\w* \w to|strong="H3478"\w* \w his|strong="H6440"\w* \w face|strong="H6440"\w*. +\q2 \w Therefore|strong="H1571"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* Ephraim \w will|strong="H3478"\w* \w stumble|strong="H3782"\w* \w in|strong="H3478"\w* \w their|strong="H6440"\w* \w iniquity|strong="H5771"\w*. +\q2 \w Judah|strong="H3063"\w* \w also|strong="H1571"\w* \w will|strong="H3478"\w* \w stumble|strong="H3782"\w* \w with|strong="H5973"\w* \w them|strong="H6440"\w*. +\q1 +\v 6 \w They|strong="H1992"\w* \w will|strong="H3068"\w* \w go|strong="H3212"\w* \w with|strong="H3068"\w* \w their|strong="H3068"\w* \w flocks|strong="H6629"\w* \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w their|strong="H3068"\w* \w herds|strong="H1241"\w* \w to|strong="H3212"\w* \w seek|strong="H1245"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w but|strong="H3808"\w* \w they|strong="H1992"\w* won’t \w find|strong="H4672"\w* \w him|strong="H4672"\w*. +\q2 \w He|strong="H3068"\w* \w has|strong="H3068"\w* \w withdrawn|strong="H2502"\w* \w himself|strong="H3068"\w* \w from|strong="H3068"\w* \w them|strong="H1992"\w*. +\q1 +\v 7 \w They|strong="H3588"\w* \w are|strong="H1121"\w* unfaithful \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*; +\q2 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3068"\w* \w borne|strong="H3205"\w* \w illegitimate|strong="H2114"\w* \w children|strong="H1121"\w*. +\q2 \w Now|strong="H6258"\w* \w the|strong="H3588"\w* \w new|strong="H2320"\w* \w moon|strong="H2320"\w* \w will|strong="H3068"\w* devour \w them|strong="H3205"\w* \w with|strong="H3068"\w* \w their|strong="H3068"\w* fields. +\b +\q1 +\v 8 “\w Blow|strong="H8628"\w* \w the|strong="H8628"\w* \w cornet|strong="H7782"\w* \w in|strong="H7782"\w* \w Gibeah|strong="H1390"\w*, +\q2 \w and|strong="H7414"\w* \w the|strong="H8628"\w* \w trumpet|strong="H7782"\w* \w in|strong="H7782"\w* \w Ramah|strong="H7414"\w*! +\q2 \w Sound|strong="H7321"\w* \w a|strong="H3068"\w* \w battle|strong="H7321"\w* \w cry|strong="H7321"\w* \w at|strong="H1144"\w* Beth Aven, behind you, \w Benjamin|strong="H1144"\w*! +\q1 +\v 9 Ephraim \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w desolation|strong="H8047"\w* \w in|strong="H3478"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w rebuke|strong="H8433"\w*. +\q2 \w Among|strong="H3478"\w* \w the|strong="H3117"\w* \w tribes|strong="H7626"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w*, \w I|strong="H3117"\w* \w have|strong="H1961"\w* \w made|strong="H3045"\w* \w known|strong="H3045"\w* \w that|strong="H3045"\w* \w which|strong="H3478"\w* \w will|strong="H1961"\w* \w surely|strong="H1961"\w* \w be|strong="H1961"\w*. +\q1 +\v 10 \w The|strong="H5921"\w* \w princes|strong="H8269"\w* \w of|strong="H8269"\w* \w Judah|strong="H3063"\w* \w are|strong="H4325"\w* \w like|strong="H1961"\w* \w those|strong="H5921"\w* \w who|strong="H3063"\w* \w remove|strong="H5253"\w* \w a|strong="H3068"\w* \w landmark|strong="H1366"\w*. +\q2 \w I|strong="H5921"\w* \w will|strong="H1961"\w* \w pour|strong="H8210"\w* \w out|strong="H8210"\w* \w my|strong="H5921"\w* \w wrath|strong="H5678"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w like|strong="H1961"\w* \w water|strong="H4325"\w*. +\q1 +\v 11 Ephraim \w is|strong="H4941"\w* \w oppressed|strong="H6231"\w*, +\q2 \w he|strong="H3588"\w* \w is|strong="H4941"\w* \w crushed|strong="H7533"\w* \w in|strong="H1980"\w* \w judgment|strong="H4941"\w*, +\q2 \w because|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H4941"\w* intent \w in|strong="H1980"\w* \w his|strong="H3588"\w* pursuit \w of|strong="H4941"\w* idols. +\q1 +\v 12 Therefore \w I|strong="H1004"\w* am \w to|strong="H1004"\w* Ephraim \w like|strong="H1004"\w* \w a|strong="H3068"\w* \w moth|strong="H6211"\w*, +\q2 \w and|strong="H3063"\w* \w to|strong="H1004"\w* \w the|strong="H1004"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w like|strong="H1004"\w* \w rottenness|strong="H7538"\w*. +\b +\q1 +\v 13 “\w When|strong="H7200"\w* Ephraim \w saw|strong="H7200"\w* \w his|strong="H7971"\w* \w sickness|strong="H2483"\w*, +\q2 \w and|strong="H3063"\w* \w Judah|strong="H3063"\w* \w his|strong="H7971"\w* \w wound|strong="H4205"\w*, +\q2 \w then|strong="H7971"\w* Ephraim \w went|strong="H3212"\w* \w to|strong="H3201"\w* Assyria, +\q2 \w and|strong="H3063"\w* \w sent|strong="H7971"\w* \w to|strong="H3201"\w* \w King|strong="H4428"\w* \w Jareb|strong="H3377"\w*: +\q1 \w but|strong="H3808"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w not|strong="H3808"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w heal|strong="H7495"\w* \w you|strong="H7971"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H4428"\w* \w he|strong="H1931"\w* \w cure|strong="H1455"\w* \w you|strong="H7971"\w* \w of|strong="H4428"\w* \w your|strong="H7200"\w* \w wound|strong="H4205"\w*. +\q1 +\v 14 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H1004"\w* \w be|strong="H1004"\w* \w to|strong="H3212"\w* Ephraim \w like|strong="H1004"\w* \w a|strong="H3068"\w* \w lion|strong="H3715"\w*, +\q2 \w and|strong="H3063"\w* \w like|strong="H1004"\w* \w a|strong="H3068"\w* \w young|strong="H3715"\w* \w lion|strong="H3715"\w* \w to|strong="H3212"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w*. +\q1 \w I|strong="H3588"\w* myself \w will|strong="H1004"\w* \w tear|strong="H2963"\w* \w in|strong="H1004"\w* \w pieces|strong="H2963"\w* \w and|strong="H3063"\w* \w go|strong="H3212"\w* \w away|strong="H5375"\w*. +\q2 \w I|strong="H3588"\w* \w will|strong="H1004"\w* \w carry|strong="H5375"\w* \w off|strong="H5375"\w*, \w and|strong="H3063"\w* there \w will|strong="H1004"\w* \w be|strong="H1004"\w* \w no|strong="H5375"\w* \w one|strong="H3588"\w* \w to|strong="H3212"\w* \w deliver|strong="H5337"\w*. +\q1 +\v 15 \w I|strong="H5704"\w* \w will|strong="H5704"\w* \w go|strong="H3212"\w* \w and|strong="H7725"\w* \w return|strong="H7725"\w* \w to|strong="H5704"\w* \w my|strong="H1245"\w* \w place|strong="H4725"\w*, +\q2 \w until|strong="H5704"\w* \w they|strong="H1992"\w* acknowledge \w their|strong="H6440"\w* offense, +\q2 \w and|strong="H7725"\w* \w seek|strong="H1245"\w* \w my|strong="H1245"\w* \w face|strong="H6440"\w*. +\q2 \w In|strong="H3212"\w* \w their|strong="H6440"\w* \w affliction|strong="H6862"\w* \w they|strong="H1992"\w* \w will|strong="H5704"\w* \w seek|strong="H1245"\w* \w me|strong="H6440"\w* \w earnestly|strong="H7836"\w*.” +\b +\c 6 +\p +\v 1 “\w Come|strong="H3212"\w*! \w Let|strong="H3212"\w*’s \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*; +\q2 \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w has|strong="H3068"\w* \w torn|strong="H2963"\w* \w us|strong="H7725"\w* \w to|strong="H7725"\w* \w pieces|strong="H2963"\w*, +\q2 \w and|strong="H3068"\w* \w he|strong="H1931"\w* \w will|strong="H3068"\w* \w heal|strong="H7495"\w* \w us|strong="H7725"\w*; +\q1 \w he|strong="H1931"\w* \w has|strong="H3068"\w* injured \w us|strong="H7725"\w*, +\q2 \w and|strong="H3068"\w* \w he|strong="H1931"\w* \w will|strong="H3068"\w* \w bind|strong="H2280"\w* \w up|strong="H2280"\w* \w our|strong="H3068"\w* \w wounds|strong="H5221"\w*. +\q1 +\v 2 \w After|strong="H3117"\w* \w two|strong="H2421"\w* \w days|strong="H3117"\w* \w he|strong="H3117"\w* \w will|strong="H3117"\w* \w revive|strong="H2421"\w* \w us|strong="H6440"\w*. +\q2 \w On|strong="H3117"\w* \w the|strong="H6440"\w* \w third|strong="H7992"\w* \w day|strong="H3117"\w* \w he|strong="H3117"\w* \w will|strong="H3117"\w* \w raise|strong="H6965"\w* \w us|strong="H6440"\w* \w up|strong="H6965"\w*, +\q2 \w and|strong="H6965"\w* \w we|strong="H3068"\w* \w will|strong="H3117"\w* \w live|strong="H2421"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*. +\q1 +\v 3 Let’s \w acknowledge|strong="H3045"\w* \w Yahweh|strong="H3068"\w*. +\q2 Let’s \w press|strong="H7291"\w* \w on|strong="H3068"\w* \w to|strong="H3068"\w* \w know|strong="H3045"\w* \w Yahweh|strong="H3068"\w*. +\q1 \w As|strong="H3068"\w* surely \w as|strong="H3068"\w* \w the|strong="H3068"\w* sun rises, +\q2 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* appear. +\q1 \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w come|strong="H3045"\w* \w to|strong="H3068"\w* \w us|strong="H3045"\w* \w like|strong="H3068"\w* \w the|strong="H3068"\w* \w rain|strong="H1653"\w*, +\q2 \w like|strong="H3068"\w* \w the|strong="H3068"\w* \w spring|strong="H4456"\w* \w rain|strong="H1653"\w* \w that|strong="H3045"\w* waters \w the|strong="H3068"\w* earth.” +\b +\q1 +\v 4 “Ephraim, \w what|strong="H4100"\w* \w shall|strong="H3063"\w* \w I|strong="H4100"\w* \w do|strong="H6213"\w* \w to|strong="H1980"\w* \w you|strong="H6213"\w*? +\q2 \w Judah|strong="H3063"\w*, \w what|strong="H4100"\w* \w shall|strong="H3063"\w* \w I|strong="H4100"\w* \w do|strong="H6213"\w* \w to|strong="H1980"\w* \w you|strong="H6213"\w*? +\q2 \w For|strong="H6213"\w* \w your|strong="H6213"\w* \w love|strong="H2617"\w* \w is|strong="H2617"\w* \w like|strong="H1980"\w* \w a|strong="H3068"\w* \w morning|strong="H1242"\w* \w cloud|strong="H6051"\w*, +\q2 \w and|strong="H1980"\w* \w like|strong="H1980"\w* \w the|strong="H6213"\w* \w dew|strong="H2919"\w* \w that|strong="H6213"\w* \w disappears|strong="H1980"\w* \w early|strong="H7925"\w*. +\q1 +\v 5 \w Therefore|strong="H3651"\w* \w I|strong="H5921"\w* \w have|strong="H5030"\w* \w cut|strong="H2672"\w* \w them|strong="H5921"\w* \w to|strong="H3318"\w* \w pieces|strong="H2672"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w prophets|strong="H5030"\w*; +\q2 \w I|strong="H5921"\w* \w killed|strong="H2026"\w* \w them|strong="H5921"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w words|strong="H6310"\w* \w of|strong="H6310"\w* \w my|strong="H5921"\w* \w mouth|strong="H6310"\w*. +\q2 \w Your|strong="H5921"\w* \w judgments|strong="H4941"\w* \w are|strong="H5030"\w* \w like|strong="H3651"\w* \w a|strong="H3068"\w* flash \w of|strong="H6310"\w* lightning. +\q1 +\v 6 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w desire|strong="H2654"\w* \w mercy|strong="H2617"\w*, \w and|strong="H5930"\w* \w not|strong="H3808"\w* \w sacrifice|strong="H2077"\w*; +\q2 \w and|strong="H5930"\w* \w the|strong="H3588"\w* \w knowledge|strong="H1847"\w* \w of|strong="H2077"\w* \w God|strong="H3808"\w* \w more|strong="H3808"\w* \w than|strong="H3808"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w*. +\q1 +\v 7 \w But|strong="H1992"\w* \w they|strong="H1992"\w*, \w like|strong="H1992"\w* Adam, \w have|strong="H1992"\w* \w broken|strong="H5674"\w* \w the|strong="H5674"\w* \w covenant|strong="H1285"\w*. +\q2 \w They|strong="H1992"\w* \w were|strong="H1992"\w* unfaithful \w to|strong="H8033"\w* \w me|strong="H5674"\w* \w there|strong="H8033"\w*. +\q1 +\v 8 \w Gilead|strong="H1568"\w* \w is|strong="H1818"\w* \w a|strong="H3068"\w* \w city|strong="H7151"\w* \w of|strong="H1818"\w* those who \w work|strong="H6466"\w* iniquity; +\q2 \w it|strong="H1818"\w* \w is|strong="H1818"\w* stained \w with|strong="H7151"\w* \w blood|strong="H1818"\w*. +\q1 +\v 9 \w As|strong="H6213"\w* gangs \w of|strong="H1870"\w* robbers \w wait|strong="H2442"\w* \w to|strong="H6213"\w* ambush \w a|strong="H3068"\w* man, +\q2 \w so|strong="H6213"\w* \w the|strong="H3588"\w* \w company|strong="H1416"\w* \w of|strong="H1870"\w* \w priests|strong="H3548"\w* \w murder|strong="H7523"\w* \w on|strong="H1870"\w* \w the|strong="H3588"\w* \w path|strong="H1870"\w* \w toward|strong="H1870"\w* \w Shechem|strong="H7927"\w*, +\q2 \w committing|strong="H6213"\w* shameful crimes. +\q1 +\v 10 \w In|strong="H3478"\w* \w the|strong="H7200"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w I|strong="H7200"\w* \w have|strong="H3478"\w* \w seen|strong="H7200"\w* \w a|strong="H3068"\w* \w horrible|strong="H8186"\w* \w thing|strong="H8186"\w*. +\q2 \w There|strong="H8033"\w* \w is|strong="H3478"\w* \w prostitution|strong="H2184"\w* \w in|strong="H3478"\w* Ephraim. +\q2 \w Israel|strong="H3478"\w* \w is|strong="H3478"\w* \w defiled|strong="H2930"\w*. +\b +\q1 +\v 11 “\w Also|strong="H1571"\w*, \w Judah|strong="H3063"\w*, \w there|strong="H7725"\w* \w is|strong="H1571"\w* \w a|strong="H3068"\w* \w harvest|strong="H7105"\w* \w appointed|strong="H7896"\w* \w for|strong="H5971"\w* \w you|strong="H7725"\w*, +\q2 \w when|strong="H7725"\w* \w I|strong="H1571"\w* \w restore|strong="H7725"\w* \w the|strong="H7725"\w* \w fortunes|strong="H7622"\w* \w of|strong="H5971"\w* \w my|strong="H7725"\w* \w people|strong="H5971"\w*. +\c 7 +\p +\v 1 \w When|strong="H3588"\w* \w I|strong="H3588"\w* \w would|strong="H3478"\w* \w heal|strong="H7495"\w* \w Israel|strong="H3478"\w*, +\q2 \w then|strong="H3588"\w* \w the|strong="H3588"\w* \w iniquity|strong="H5771"\w* \w of|strong="H6466"\w* Ephraim \w is|strong="H3478"\w* \w uncovered|strong="H1540"\w*, +\q2 \w also|strong="H3478"\w* \w the|strong="H3588"\w* \w wickedness|strong="H7451"\w* \w of|strong="H6466"\w* \w Samaria|strong="H8111"\w*; +\q2 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w commit|strong="H6466"\w* \w falsehood|strong="H8267"\w*, +\q2 \w and|strong="H3478"\w* \w the|strong="H3588"\w* \w thief|strong="H1590"\w* enters \w in|strong="H3478"\w*, +\q2 \w and|strong="H3478"\w* \w the|strong="H3588"\w* gang \w of|strong="H6466"\w* \w robbers|strong="H1590"\w* ravages \w outside|strong="H2351"\w*. +\q1 +\v 2 \w They|strong="H3605"\w* don’t \w consider|strong="H2142"\w* \w in|strong="H6440"\w* \w their|strong="H3605"\w* \w hearts|strong="H3824"\w* \w that|strong="H3605"\w* \w I|strong="H6258"\w* \w remember|strong="H2142"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w wickedness|strong="H7451"\w*. +\q2 \w Now|strong="H6258"\w* \w their|strong="H3605"\w* \w own|strong="H1961"\w* \w deeds|strong="H4611"\w* \w have|strong="H1961"\w* \w engulfed|strong="H5437"\w* \w them|strong="H6440"\w*. +\q2 \w They|strong="H3605"\w* \w are|strong="H1961"\w* \w before|strong="H6440"\w* \w my|strong="H3605"\w* \w face|strong="H6440"\w*. +\q1 +\v 3 \w They|strong="H4428"\w* \w make|strong="H8055"\w* \w the|strong="H8055"\w* \w king|strong="H4428"\w* \w glad|strong="H8055"\w* \w with|strong="H4428"\w* \w their|strong="H7451"\w* \w wickedness|strong="H7451"\w*, +\q2 \w and|strong="H4428"\w* \w the|strong="H8055"\w* \w princes|strong="H8269"\w* \w with|strong="H4428"\w* \w their|strong="H7451"\w* \w lies|strong="H3585"\w*. +\q1 +\v 4 \w They|strong="H5704"\w* are \w all|strong="H3605"\w* \w adulterers|strong="H5003"\w*. +\q2 \w They|strong="H5704"\w* are \w burning|strong="H1197"\w* \w like|strong="H3644"\w* \w an|strong="H7673"\w* \w oven|strong="H8574"\w* \w that|strong="H3605"\w* \w the|strong="H3605"\w* baker \w stops|strong="H7673"\w* stirring, +\q2 \w from|strong="H5704"\w* \w the|strong="H3605"\w* \w kneading|strong="H3888"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w dough|strong="H1217"\w*, \w until|strong="H5704"\w* \w it|strong="H5704"\w* \w is|strong="H3605"\w* \w leavened|strong="H2556"\w*. +\q1 +\v 5 \w On|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H4428"\w* \w our|strong="H3027"\w* \w king|strong="H4428"\w*, \w the|strong="H3117"\w* \w princes|strong="H8269"\w* \w made|strong="H2470"\w* \w themselves|strong="H2470"\w* \w sick|strong="H2470"\w* \w with|strong="H3117"\w* \w the|strong="H3117"\w* \w heat|strong="H2534"\w* \w of|strong="H4428"\w* \w wine|strong="H3196"\w*. +\q2 \w He|strong="H3117"\w* joined \w his|strong="H3027"\w* \w hand|strong="H3027"\w* \w with|strong="H3117"\w* mockers. +\q1 +\v 6 \w For|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3605"\w* prepared \w their|strong="H3605"\w* \w heart|strong="H3820"\w* \w like|strong="H1197"\w* \w an|strong="H7126"\w* \w oven|strong="H8574"\w*, +\q2 \w while|strong="H1931"\w* \w they|strong="H3588"\w* lie \w in|strong="H3820"\w* wait. +\q2 \w Their|strong="H3605"\w* anger \w smolders|strong="H3463"\w* \w all|strong="H3605"\w* \w night|strong="H3915"\w*. +\q2 \w In|strong="H3820"\w* \w the|strong="H3605"\w* \w morning|strong="H1242"\w* \w it|strong="H1931"\w* \w burns|strong="H1197"\w* \w as|strong="H3588"\w* \w a|strong="H3068"\w* \w flaming|strong="H3852"\w* fire. +\q1 +\v 7 \w They|strong="H3605"\w* \w are|strong="H4428"\w* \w all|strong="H3605"\w* \w hot|strong="H2552"\w* \w as|strong="H3605"\w* \w an|strong="H7121"\w* \w oven|strong="H8574"\w*, +\q2 \w and|strong="H4428"\w* devour \w their|strong="H3605"\w* \w judges|strong="H8199"\w*. +\q1 \w All|strong="H3605"\w* \w their|strong="H3605"\w* \w kings|strong="H4428"\w* \w have|strong="H3605"\w* \w fallen|strong="H5307"\w*. +\q2 \w There|strong="H3605"\w* \w is|strong="H3605"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w among|strong="H8199"\w* \w them|strong="H7121"\w* \w who|strong="H3605"\w* \w calls|strong="H7121"\w* \w to|strong="H4428"\w* \w me|strong="H7121"\w*. +\q1 +\v 8 Ephraim \w mixes|strong="H1101"\w* \w himself|strong="H1931"\w* \w among|strong="H5971"\w* \w the|strong="H1961"\w* \w nations|strong="H5971"\w*. +\q2 Ephraim \w is|strong="H1931"\w* \w a|strong="H3068"\w* pancake \w not|strong="H1961"\w* \w turned|strong="H2015"\w* \w over|strong="H2015"\w*. +\q1 +\v 9 \w Strangers|strong="H2114"\w* \w have|strong="H3045"\w* devoured \w his|strong="H3045"\w* \w strength|strong="H3581"\w*, +\q2 \w and|strong="H3045"\w* \w he|strong="H1931"\w* doesn’t \w realize|strong="H3045"\w* \w it|strong="H1931"\w*. +\q1 \w Indeed|strong="H1571"\w*, \w gray|strong="H7872"\w* \w hairs|strong="H7872"\w* \w are|strong="H1571"\w* here \w and|strong="H3045"\w* \w there|strong="H2236"\w* \w on|strong="H1571"\w* \w him|strong="H1931"\w*, +\q2 \w and|strong="H3045"\w* \w he|strong="H1931"\w* doesn’t \w realize|strong="H3045"\w* \w it|strong="H1931"\w*. +\q1 +\v 10 \w The|strong="H3605"\w* \w pride|strong="H1347"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w testifies|strong="H6030"\w* \w to|strong="H7725"\w* \w his|strong="H3605"\w* \w face|strong="H6440"\w*; +\q2 \w yet|strong="H3068"\w* \w they|strong="H3068"\w* haven’t \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3605"\w* \w God|strong="H3068"\w*, +\q2 \w nor|strong="H3808"\w* \w sought|strong="H1245"\w* \w him|strong="H6440"\w*, \w for|strong="H6440"\w* \w all|strong="H3605"\w* \w this|strong="H2063"\w*. +\b +\q1 +\v 11 “Ephraim \w is|strong="H3820"\w* \w like|strong="H1961"\w* \w an|strong="H1961"\w* easily \w deceived|strong="H6601"\w* \w dove|strong="H3123"\w*, \w without|strong="H3123"\w* \w understanding|strong="H3820"\w*. +\q2 \w They|strong="H7121"\w* \w call|strong="H7121"\w* \w to|strong="H1980"\w* \w Egypt|strong="H4714"\w*. +\q2 \w They|strong="H7121"\w* \w go|strong="H1980"\w* \w to|strong="H1980"\w* Assyria. +\q1 +\v 12 \w When|strong="H5921"\w* \w they|strong="H5921"\w* \w go|strong="H3212"\w*, \w I|strong="H5921"\w* \w will|strong="H8064"\w* \w spread|strong="H6566"\w* \w my|strong="H5921"\w* \w net|strong="H7568"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w*. +\q2 \w I|strong="H5921"\w* \w will|strong="H8064"\w* \w bring|strong="H3381"\w* \w them|strong="H5921"\w* \w down|strong="H3381"\w* \w like|strong="H3381"\w* \w the|strong="H5921"\w* \w birds|strong="H5775"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w sky|strong="H8064"\w*. +\q2 \w I|strong="H5921"\w* \w will|strong="H8064"\w* \w chastise|strong="H3256"\w* \w them|strong="H5921"\w*, \w as|strong="H8064"\w* \w their|strong="H5921"\w* \w congregation|strong="H5712"\w* \w has|strong="H8064"\w* \w heard|strong="H8088"\w*. +\q1 +\v 13 Woe \w to|strong="H1696"\w* \w them|strong="H1992"\w*! +\q2 \w For|strong="H3588"\w* \w they|strong="H1992"\w* \w have|strong="H1696"\w* wandered \w from|strong="H4480"\w* \w me|strong="H5921"\w*. +\q1 \w Destruction|strong="H7701"\w* \w to|strong="H1696"\w* \w them|strong="H1992"\w*! +\q2 \w For|strong="H3588"\w* \w they|strong="H1992"\w* \w have|strong="H1696"\w* \w trespassed|strong="H6586"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*. +\q1 \w Though|strong="H3588"\w* \w I|strong="H3588"\w* would \w redeem|strong="H6299"\w* \w them|strong="H1992"\w*, +\q2 \w yet|strong="H3588"\w* \w they|strong="H1992"\w* \w have|strong="H1696"\w* \w spoken|strong="H1696"\w* \w lies|strong="H3577"\w* \w against|strong="H5921"\w* \w me|strong="H5921"\w*. +\q1 +\v 14 \w They|strong="H3588"\w* haven’t \w cried|strong="H2199"\w* \w to|strong="H5921"\w* \w me|strong="H5921"\w* \w with|strong="H5921"\w* \w their|strong="H5921"\w* \w heart|strong="H3820"\w*, +\q2 \w but|strong="H3588"\w* \w they|strong="H3588"\w* \w howl|strong="H3213"\w* \w on|strong="H5921"\w* \w their|strong="H5921"\w* \w beds|strong="H4904"\w*. +\q1 \w They|strong="H3588"\w* \w assemble|strong="H2199"\w* \w themselves|strong="H1481"\w* \w for|strong="H3588"\w* \w grain|strong="H1715"\w* \w and|strong="H1715"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w*. +\q2 \w They|strong="H3588"\w* \w turn|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* \w me|strong="H5921"\w*. +\q1 +\v 15 Though I \w have|strong="H2803"\w* \w taught|strong="H3256"\w* \w and|strong="H2388"\w* \w strengthened|strong="H2388"\w* \w their|strong="H2388"\w* \w arms|strong="H2220"\w*, +\q2 yet \w they|strong="H7451"\w* \w plot|strong="H2803"\w* \w evil|strong="H7451"\w* \w against|strong="H2388"\w* \w me|strong="H2388"\w*. +\q1 +\v 16 \w They|strong="H3808"\w* \w return|strong="H7725"\w*, \w but|strong="H3808"\w* \w not|strong="H3808"\w* \w to|strong="H7725"\w* \w the|strong="H7725"\w* Most \w High|strong="H5920"\w*. +\q2 \w They|strong="H3808"\w* \w are|strong="H4714"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* faulty \w bow|strong="H7198"\w*. +\q2 \w Their|strong="H7725"\w* \w princes|strong="H8269"\w* \w will|strong="H1961"\w* \w fall|strong="H5307"\w* \w by|strong="H1961"\w* \w the|strong="H7725"\w* \w sword|strong="H2719"\w* \w for|strong="H4714"\w* \w the|strong="H7725"\w* \w rage|strong="H2195"\w* \w of|strong="H8269"\w* \w their|strong="H7725"\w* \w tongue|strong="H3956"\w*. +\q2 \w This|strong="H7725"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w their|strong="H7725"\w* \w derision|strong="H3933"\w* \w in|strong="H7725"\w* \w the|strong="H7725"\w* land \w of|strong="H8269"\w* \w Egypt|strong="H4714"\w*. +\b +\c 8 +\p +\v 1 “\w Put|strong="H3068"\w* \w the|strong="H5921"\w* \w trumpet|strong="H7782"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w lips|strong="H2441"\w*! +\q2 Something \w like|strong="H1004"\w* \w an|strong="H3068"\w* \w eagle|strong="H5404"\w* \w is|strong="H3068"\w* \w over|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*, +\q2 \w because|strong="H5921"\w* \w they|strong="H3068"\w* \w have|strong="H3068"\w* \w broken|strong="H5674"\w* \w my|strong="H3068"\w* \w covenant|strong="H1285"\w* +\q2 \w and|strong="H3068"\w* \w rebelled|strong="H6586"\w* \w against|strong="H5921"\w* \w my|strong="H3068"\w* \w law|strong="H8451"\w*. +\q1 +\v 2 \w They|strong="H3478"\w* \w cry|strong="H2199"\w* \w to|strong="H3478"\w* \w me|strong="H3045"\w*, ‘\w My|strong="H3045"\w* God, \w we|strong="H3068"\w*, \w Israel|strong="H3478"\w*, \w acknowledge|strong="H3045"\w* \w you|strong="H3045"\w*!’ +\q2 +\v 3 \w Israel|strong="H3478"\w* \w has|strong="H3478"\w* \w cast|strong="H2186"\w* \w off|strong="H2186"\w* \w that|strong="H3478"\w* \w which|strong="H3478"\w* \w is|strong="H2896"\w* \w good|strong="H2896"\w*. +\q2 \w The|strong="H7291"\w* enemy \w will|strong="H3478"\w* \w pursue|strong="H7291"\w* \w him|strong="H7291"\w*. +\q1 +\v 4 \w They|strong="H1992"\w* \w have|strong="H3045"\w* \w set|strong="H6213"\w* \w up|strong="H6213"\w* \w kings|strong="H4427"\w*, \w but|strong="H3808"\w* \w not|strong="H3808"\w* \w by|strong="H2091"\w* \w me|strong="H4480"\w*. +\q2 \w They|strong="H1992"\w* \w have|strong="H3045"\w* \w made|strong="H6213"\w* \w princes|strong="H8323"\w*, \w and|strong="H3701"\w* \w I|strong="H3045"\w* didn’t approve. +\q2 \w Of|strong="H4480"\w* \w their|strong="H1992"\w* \w silver|strong="H3701"\w* \w and|strong="H3701"\w* \w their|strong="H1992"\w* \w gold|strong="H2091"\w* \w they|strong="H1992"\w* \w have|strong="H3045"\w* \w made|strong="H6213"\w* \w themselves|strong="H1992"\w* \w idols|strong="H6091"\w*, +\q2 \w that|strong="H3045"\w* \w they|strong="H1992"\w* \w may|strong="H6213"\w* \w be|strong="H3808"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*. +\q1 +\v 5 \w Let|strong="H3808"\w* \w Samaria|strong="H8111"\w* throw \w out|strong="H5704"\w* \w his|strong="H3808"\w* \w calf|strong="H5695"\w* idol! +\q2 \w My|strong="H3808"\w* anger \w burns|strong="H2734"\w* \w against|strong="H2734"\w* \w them|strong="H5704"\w*! +\q2 \w How|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H3808"\w* \w it|strong="H5704"\w* \w be|strong="H3808"\w* \w until|strong="H5704"\w* \w they|strong="H3808"\w* \w are|strong="H3808"\w* capable \w of|strong="H3808"\w* purity? +\q1 +\v 6 \w For|strong="H3588"\w* \w this|strong="H6213"\w* \w is|strong="H1931"\w* \w even|strong="H3588"\w* \w from|strong="H3478"\w* \w Israel|strong="H3478"\w*! +\q2 \w The|strong="H3588"\w* \w workman|strong="H2796"\w* \w made|strong="H6213"\w* \w it|strong="H1931"\w*, \w and|strong="H3478"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w no|strong="H3808"\w* \w God|strong="H3808"\w*; +\q2 \w indeed|strong="H3588"\w*, \w the|strong="H3588"\w* \w calf|strong="H5695"\w* \w of|strong="H6213"\w* \w Samaria|strong="H8111"\w* \w shall|strong="H3478"\w* \w be|strong="H1961"\w* \w broken|strong="H7616"\w* \w in|strong="H3478"\w* \w pieces|strong="H7616"\w*. +\q1 +\v 7 \w For|strong="H3588"\w* \w they|strong="H3588"\w* \w sow|strong="H2232"\w* \w the|strong="H3588"\w* \w wind|strong="H7307"\w*, +\q2 \w and|strong="H6213"\w* \w they|strong="H3588"\w* \w will|strong="H7307"\w* \w reap|strong="H7114"\w* \w the|strong="H3588"\w* \w whirlwind|strong="H5492"\w*. +\q1 \w He|strong="H3588"\w* \w has|strong="H3588"\w* \w no|strong="H6213"\w* \w standing|strong="H7054"\w* \w grain|strong="H7054"\w*. +\q2 \w The|strong="H3588"\w* \w stalk|strong="H7054"\w* \w will|strong="H7307"\w* \w yield|strong="H6213"\w* \w no|strong="H6213"\w* head. +\q2 \w If|strong="H3588"\w* \w it|strong="H3588"\w* \w does|strong="H6213"\w* \w yield|strong="H6213"\w*, \w strangers|strong="H2114"\w* \w will|strong="H7307"\w* \w swallow|strong="H1104"\w* \w it|strong="H3588"\w* \w up|strong="H1104"\w*. +\q1 +\v 8 \w Israel|strong="H3478"\w* \w is|strong="H3478"\w* \w swallowed|strong="H1104"\w* \w up|strong="H1104"\w*. +\q2 \w Now|strong="H6258"\w* \w they|strong="H3478"\w* \w are|strong="H1471"\w* \w among|strong="H3478"\w* \w the|strong="H1961"\w* \w nations|strong="H1471"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* worthless \w thing|strong="H3627"\w*. +\q1 +\v 9 \w For|strong="H3588"\w* \w they|strong="H1992"\w* \w have|strong="H3588"\w* \w gone|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* Assyria, +\q2 \w like|strong="H5927"\w* \w a|strong="H3068"\w* \w wild|strong="H6501"\w* \w donkey|strong="H6501"\w* wandering alone. +\q2 Ephraim \w has|strong="H3588"\w* \w hired|strong="H8566"\w* lovers \w for|strong="H3588"\w* himself. +\q1 +\v 10 \w But|strong="H3588"\w* \w although|strong="H3588"\w* \w they|strong="H3588"\w* sold \w themselves|strong="H6908"\w* among \w the|strong="H3588"\w* \w nations|strong="H1471"\w*, +\q2 \w I|strong="H3588"\w* \w will|strong="H1471"\w* \w now|strong="H6258"\w* \w gather|strong="H6908"\w* \w them|strong="H2490"\w*; +\q2 \w and|strong="H4428"\w* \w they|strong="H3588"\w* \w begin|strong="H2490"\w* \w to|strong="H2490"\w* waste \w away|strong="H4853"\w* \w because|strong="H3588"\w* \w of|strong="H4428"\w* \w the|strong="H3588"\w* oppression \w of|strong="H4428"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* mighty ones. +\q1 +\v 11 \w Because|strong="H3588"\w* Ephraim \w has|strong="H1961"\w* \w multiplied|strong="H7235"\w* \w altars|strong="H4196"\w* \w for|strong="H3588"\w* \w sinning|strong="H2398"\w*, +\q2 \w they|strong="H3588"\w* \w became|strong="H1961"\w* \w for|strong="H3588"\w* \w him|strong="H7235"\w* \w altars|strong="H4196"\w* \w for|strong="H3588"\w* \w sinning|strong="H2398"\w*. +\q1 +\v 12 \w I|strong="H3644"\w* \w wrote|strong="H3789"\w* \w for|strong="H2803"\w* \w him|strong="H3644"\w* \w the|strong="H3789"\w* many \w things|strong="H3644"\w* \w of|strong="H8451"\w* \w my|strong="H2803"\w* \w law|strong="H8451"\w*, +\q2 \w but|strong="H2114"\w* \w they|strong="H3644"\w* \w were|strong="H3644"\w* \w regarded|strong="H2803"\w* \w as|strong="H2803"\w* \w a|strong="H3068"\w* \w strange|strong="H2114"\w* \w thing|strong="H2114"\w*. +\q1 +\v 13 \w As|strong="H3068"\w* \w for|strong="H4714"\w* \w the|strong="H3068"\w* \w sacrifices|strong="H2077"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w offerings|strong="H2077"\w*, +\q2 \w they|strong="H1992"\w* \w sacrifice|strong="H2077"\w* \w meat|strong="H1320"\w* \w and|strong="H3068"\w* eat \w it|strong="H7725"\w*, +\q2 \w but|strong="H3808"\w* \w Yahweh|strong="H3068"\w* doesn’t \w accept|strong="H7521"\w* \w them|strong="H1992"\w*. +\q1 \w Now|strong="H6258"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w remember|strong="H2142"\w* \w their|strong="H3068"\w* \w iniquity|strong="H5771"\w*, +\q2 \w and|strong="H3068"\w* \w punish|strong="H6485"\w* \w their|strong="H3068"\w* \w sins|strong="H2403"\w*. +\q2 \w They|strong="H1992"\w* \w will|strong="H3068"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w Egypt|strong="H4714"\w*. +\q1 +\v 14 \w For|strong="H6213"\w* \w Israel|strong="H3478"\w* \w has|strong="H3478"\w* \w forgotten|strong="H7911"\w* \w his|strong="H7971"\w* \w Maker|strong="H6213"\w* \w and|strong="H3063"\w* \w built|strong="H1129"\w* \w palaces|strong="H1964"\w*; +\q2 \w and|strong="H3063"\w* \w Judah|strong="H3063"\w* \w has|strong="H3478"\w* \w multiplied|strong="H7235"\w* \w fortified|strong="H1219"\w* \w cities|strong="H5892"\w*; +\q2 \w but|strong="H7911"\w* \w I|strong="H3478"\w* \w will|strong="H3478"\w* \w send|strong="H7971"\w* \w a|strong="H3068"\w* fire \w on|strong="H7971"\w* \w his|strong="H7971"\w* \w cities|strong="H5892"\w*, +\q2 \w and|strong="H3063"\w* \w it|strong="H6213"\w* \w will|strong="H3478"\w* devour \w its|strong="H6213"\w* fortresses.” +\b +\c 9 +\p +\v 1 Don’t \w rejoice|strong="H8055"\w*, \w Israel|strong="H3478"\w*, \w to|strong="H3478"\w* jubilation \w like|strong="H3478"\w* \w the|strong="H3605"\w* \w nations|strong="H5971"\w*; +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w were|strong="H3478"\w* \w unfaithful|strong="H2181"\w* \w to|strong="H3478"\w* \w your|strong="H3605"\w* God. +\q2 \w You|strong="H3588"\w* love \w the|strong="H3605"\w* wages \w of|strong="H5971"\w* \w a|strong="H3068"\w* \w prostitute|strong="H2181"\w* \w at|strong="H5921"\w* \w every|strong="H3605"\w* \w grain|strong="H1715"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w*. +\q1 +\v 2 \w The|strong="H3808"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w* \w and|strong="H8492"\w* \w the|strong="H3808"\w* \w wine|strong="H8492"\w* \w press|strong="H3342"\w* won’t \w feed|strong="H7462"\w* \w them|strong="H7462"\w*, +\q2 \w and|strong="H8492"\w* \w the|strong="H3808"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w* \w will|strong="H3808"\w* \w fail|strong="H3584"\w* her. +\q1 +\v 3 \w They|strong="H3068"\w* won’t \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w Yahweh|strong="H3068"\w*’s land; +\q2 \w but|strong="H3808"\w* Ephraim \w will|strong="H3068"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w Egypt|strong="H4714"\w*, +\q2 \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* eat \w unclean|strong="H2931"\w* food \w in|strong="H3427"\w* Assyria. +\q1 +\v 4 \w They|strong="H3588"\w* won’t \w pour|strong="H5258"\w* \w out|strong="H5258"\w* \w wine|strong="H3196"\w* \w offerings|strong="H2077"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H3068"\w* \w they|strong="H3588"\w* \w be|strong="H3808"\w* pleasing \w to|strong="H3068"\w* \w him|strong="H2930"\w*. +\q2 \w Their|strong="H3605"\w* \w sacrifices|strong="H2077"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w to|strong="H3068"\w* \w them|strong="H3588"\w* \w like|strong="H1004"\w* \w the|strong="H3605"\w* \w bread|strong="H3899"\w* \w of|strong="H1004"\w* mourners; +\q2 \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w eat|strong="H3899"\w* \w of|strong="H1004"\w* \w it|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w polluted|strong="H2930"\w*; +\q2 \w for|strong="H3588"\w* \w their|strong="H3605"\w* \w bread|strong="H3899"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w for|strong="H3588"\w* \w their|strong="H3605"\w* \w appetite|strong="H5315"\w*. +\q2 \w It|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* come into \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\q1 +\v 5 \w What|strong="H4100"\w* \w will|strong="H3068"\w* \w you|strong="H3117"\w* \w do|strong="H6213"\w* \w in|strong="H3068"\w* \w the|strong="H6213"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w solemn|strong="H4150"\w* \w assembly|strong="H4150"\w*, +\q2 \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H6213"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* \w feast|strong="H2282"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*? +\q1 +\v 6 \w For|strong="H3588"\w*, \w behold|strong="H2009"\w*, \w when|strong="H3588"\w* \w they|strong="H3588"\w* flee \w destruction|strong="H7701"\w*, +\q2 \w Egypt|strong="H4714"\w* \w will|strong="H4714"\w* \w gather|strong="H6908"\w* \w them|strong="H3423"\w* \w up|strong="H6908"\w*. +\q2 \w Memphis|strong="H4644"\w* \w will|strong="H4714"\w* \w bury|strong="H6912"\w* \w them|strong="H3423"\w*. +\q2 \w Nettles|strong="H7057"\w* \w will|strong="H4714"\w* \w possess|strong="H3423"\w* \w their|strong="H3588"\w* \w pleasant|strong="H4261"\w* \w things|strong="H4261"\w* \w of|strong="H3423"\w* \w silver|strong="H3701"\w*. +\q2 \w Thorns|strong="H2336"\w* \w will|strong="H4714"\w* \w be|strong="H3701"\w* \w in|strong="H1980"\w* \w their|strong="H3588"\w* tents. +\q1 +\v 7 \w The|strong="H5921"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w visitation|strong="H6486"\w* \w have|strong="H3045"\w* \w come|strong="H3478"\w*. +\q2 \w The|strong="H5921"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w reckoning|strong="H6486"\w* \w have|strong="H3045"\w* \w come|strong="H3478"\w*. +\q1 \w Israel|strong="H3478"\w* \w will|strong="H3478"\w* \w consider|strong="H3045"\w* \w the|strong="H5921"\w* \w prophet|strong="H5030"\w* \w to|strong="H3478"\w* \w be|strong="H3478"\w* \w a|strong="H3068"\w* fool, +\q2 \w and|strong="H3478"\w* \w the|strong="H5921"\w* \w man|strong="H7696"\w* \w who|strong="H3478"\w* \w is|strong="H3117"\w* \w inspired|strong="H7307"\w* \w to|strong="H3478"\w* \w be|strong="H3478"\w* insane, +\q2 \w because|strong="H5921"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w abundance|strong="H7230"\w* \w of|strong="H3117"\w* \w your|strong="H5921"\w* \w sins|strong="H5771"\w*, +\q2 \w and|strong="H3478"\w* \w because|strong="H5921"\w* \w your|strong="H5921"\w* \w hostility|strong="H4895"\w* \w is|strong="H3117"\w* \w great|strong="H7227"\w*. +\q1 +\v 8 \w A|strong="H3068"\w* \w prophet|strong="H5030"\w* watches \w over|strong="H5921"\w* Ephraim \w with|strong="H5973"\w* \w my|strong="H3605"\w* God. +\q2 \w A|strong="H3068"\w* \w fowler|strong="H3352"\w*’s \w snare|strong="H6341"\w* \w is|strong="H1870"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w of|strong="H1004"\w* \w his|strong="H3605"\w* \w paths|strong="H1870"\w*, +\q2 \w and|strong="H1004"\w* \w hostility|strong="H4895"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w his|strong="H3605"\w* God. +\q1 +\v 9 \w They|strong="H3117"\w* \w have|strong="H5771"\w* \w deeply|strong="H6009"\w* \w corrupted|strong="H7843"\w* \w themselves|strong="H5771"\w*, +\q2 \w as|strong="H3117"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w Gibeah|strong="H1390"\w*. +\q2 \w He|strong="H3117"\w* \w will|strong="H3117"\w* \w remember|strong="H2142"\w* \w their|strong="H2142"\w* \w iniquity|strong="H5771"\w*. +\q2 \w He|strong="H3117"\w* \w will|strong="H3117"\w* \w punish|strong="H6485"\w* \w them|strong="H6485"\w* \w for|strong="H3117"\w* \w their|strong="H2142"\w* \w sins|strong="H2403"\w*. +\q1 +\v 10 \w I|strong="H7200"\w* \w found|strong="H4672"\w* \w Israel|strong="H3478"\w* \w like|strong="H1961"\w* \w grapes|strong="H6025"\w* \w in|strong="H3478"\w* \w the|strong="H7200"\w* \w wilderness|strong="H4057"\w*. +\q2 \w I|strong="H7200"\w* \w saw|strong="H7200"\w* \w your|strong="H7200"\w* fathers \w as|strong="H1961"\w* \w the|strong="H7200"\w* \w first|strong="H7225"\w* ripe \w in|strong="H3478"\w* \w the|strong="H7200"\w* \w fig|strong="H8384"\w* \w tree|strong="H8384"\w* \w at|strong="H3478"\w* \w its|strong="H1961"\w* \w first|strong="H7225"\w* season; +\q2 \w but|strong="H1961"\w* \w they|strong="H1992"\w* \w came|strong="H1961"\w* \w to|strong="H3478"\w* \w Baal|strong="H1187"\w* \w Peor|strong="H1187"\w*, \w and|strong="H3478"\w* consecrated \w themselves|strong="H1992"\w* \w to|strong="H3478"\w* \w the|strong="H7200"\w* \w shameful|strong="H1322"\w* \w thing|strong="H1322"\w*, +\q2 \w and|strong="H3478"\w* \w became|strong="H1961"\w* \w abominable|strong="H8251"\w* \w like|strong="H1961"\w* \w that|strong="H7200"\w* \w which|strong="H1992"\w* \w they|strong="H1992"\w* loved. +\q1 +\v 11 As \w for|strong="H3205"\w* Ephraim, their \w glory|strong="H3519"\w* \w will|strong="H3519"\w* \w fly|strong="H5774"\w* \w away|strong="H5774"\w* \w like|strong="H5774"\w* \w a|strong="H3068"\w* \w bird|strong="H5775"\w*. +\q2 There \w will|strong="H3519"\w* \w be|strong="H3519"\w* no \w birth|strong="H3205"\w*, no one with \w child|strong="H3205"\w*, \w and|strong="H5775"\w* no \w conception|strong="H2032"\w*. +\q1 +\v 12 \w Though|strong="H3588"\w* \w they|strong="H1992"\w* \w bring|strong="H1431"\w* \w up|strong="H1431"\w* \w their|strong="H1992"\w* \w children|strong="H1121"\w*, +\q2 \w yet|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H1571"\w* \w bereave|strong="H7921"\w* \w them|strong="H1992"\w*, \w so|strong="H1571"\w* \w that|strong="H3588"\w* \w not|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w shall|strong="H1121"\w* \w be|strong="H1121"\w* \w left|strong="H5493"\w*. +\q2 \w Indeed|strong="H3588"\w*, woe \w also|strong="H1571"\w* \w to|strong="H1121"\w* \w them|strong="H1992"\w* \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w depart|strong="H5493"\w* \w from|strong="H5493"\w* \w them|strong="H1992"\w*! +\q1 +\v 13 \w I|strong="H7200"\w* \w have|strong="H1121"\w* \w seen|strong="H7200"\w* Ephraim, \w like|strong="H3318"\w* \w Tyre|strong="H6865"\w*, \w planted|strong="H8362"\w* \w in|strong="H1121"\w* \w a|strong="H3068"\w* pleasant \w place|strong="H5116"\w*; +\q2 \w but|strong="H7200"\w* Ephraim \w will|strong="H1121"\w* \w bring|strong="H3318"\w* \w out|strong="H3318"\w* \w his|strong="H7200"\w* \w children|strong="H1121"\w* \w to|strong="H3318"\w* \w the|strong="H7200"\w* \w murderer|strong="H2026"\w*. +\q1 +\v 14 \w Give|strong="H5414"\w* \w them|strong="H5414"\w*—\w Yahweh|strong="H3068"\w* \w what|strong="H4100"\w* \w will|strong="H3068"\w* \w you|strong="H5414"\w* \w give|strong="H5414"\w*? +\q2 \w Give|strong="H5414"\w* \w them|strong="H5414"\w* \w a|strong="H3068"\w* \w miscarrying|strong="H7921"\w* \w womb|strong="H7358"\w* \w and|strong="H3068"\w* \w dry|strong="H6784"\w* \w breasts|strong="H7699"\w*. +\b +\q1 +\v 15 “\w All|strong="H3605"\w* \w their|strong="H3605"\w* \w wickedness|strong="H7451"\w* \w is|strong="H3605"\w* \w in|strong="H5921"\w* \w Gilgal|strong="H1537"\w*; +\q2 \w for|strong="H3588"\w* \w there|strong="H8033"\w* \w I|strong="H3588"\w* \w hated|strong="H8130"\w* \w them|strong="H5921"\w*. +\q2 \w Because|strong="H3588"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w wickedness|strong="H7451"\w* \w of|strong="H1004"\w* \w their|strong="H3605"\w* \w deeds|strong="H4611"\w*, \w I|strong="H3588"\w* \w will|strong="H1004"\w* \w drive|strong="H1644"\w* \w them|strong="H5921"\w* \w out|strong="H1644"\w* \w of|strong="H1004"\w* \w my|strong="H3605"\w* \w house|strong="H1004"\w*! +\q2 \w I|strong="H3588"\w* \w will|strong="H1004"\w* love \w them|strong="H5921"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w*. +\q2 \w All|strong="H3605"\w* \w their|strong="H3605"\w* \w princes|strong="H8269"\w* \w are|strong="H1004"\w* \w rebels|strong="H5637"\w*. +\q1 +\v 16 Ephraim \w is|strong="H1571"\w* \w struck|strong="H5221"\w*. +\q2 \w Their|strong="H3588"\w* \w root|strong="H8328"\w* \w has|strong="H3588"\w* \w dried|strong="H3001"\w* \w up|strong="H3001"\w*. +\q2 \w They|strong="H3588"\w* \w will|strong="H1571"\w* \w bear|strong="H3205"\w* \w no|strong="H6213"\w* \w fruit|strong="H6529"\w*. +\q2 \w Even|strong="H1571"\w* \w though|strong="H3588"\w* \w they|strong="H3588"\w* \w give|strong="H3205"\w* \w birth|strong="H3205"\w*, \w yet|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H1571"\w* \w kill|strong="H4191"\w* \w the|strong="H3588"\w* \w beloved|strong="H4261"\w* \w ones|strong="H4261"\w* \w of|strong="H3205"\w* \w their|strong="H3588"\w* womb.” +\b +\q1 +\v 17 \w My|strong="H8085"\w* \w God|strong="H3808"\w* \w will|strong="H1961"\w* \w cast|strong="H3988"\w* \w them|strong="H1961"\w* \w away|strong="H3988"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* didn’t \w listen|strong="H8085"\w* \w to|strong="H1961"\w* \w him|strong="H8085"\w*; +\q2 \w and|strong="H8085"\w* \w they|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w wanderers|strong="H5074"\w* \w among|strong="H3808"\w* \w the|strong="H8085"\w* \w nations|strong="H1471"\w*. +\c 10 +\p +\v 1 \w Israel|strong="H3478"\w* \w is|strong="H2896"\w* \w a|strong="H3068"\w* \w luxuriant|strong="H1238"\w* \w vine|strong="H1612"\w* \w that|strong="H3478"\w* \w produces|strong="H7737"\w* \w his|strong="H3478"\w* \w fruit|strong="H6529"\w*. +\q2 According \w to|strong="H3478"\w* \w the|strong="H3190"\w* \w abundance|strong="H7230"\w* \w of|strong="H4196"\w* \w his|strong="H3478"\w* \w fruit|strong="H6529"\w* \w he|strong="H3478"\w* \w has|strong="H3478"\w* \w multiplied|strong="H7235"\w* \w his|strong="H3478"\w* \w altars|strong="H4196"\w*. +\q2 \w As|strong="H7230"\w* \w their|strong="H7235"\w* land \w has|strong="H3478"\w* \w prospered|strong="H2896"\w*, \w they|strong="H3478"\w* \w have|strong="H3478"\w* \w adorned|strong="H3190"\w* \w their|strong="H7235"\w* sacred stones. +\q1 +\v 2 \w Their|strong="H7703"\w* \w heart|strong="H3820"\w* \w is|strong="H1931"\w* \w divided|strong="H2505"\w*. +\q2 \w Now|strong="H6258"\w* \w they|strong="H1931"\w* \w will|strong="H3820"\w* \w be|strong="H3820"\w* found guilty. +\q2 \w He|strong="H1931"\w* \w will|strong="H3820"\w* demolish \w their|strong="H7703"\w* \w altars|strong="H4196"\w*. +\q2 \w He|strong="H1931"\w* \w will|strong="H3820"\w* \w destroy|strong="H7703"\w* \w their|strong="H7703"\w* sacred stones. +\q1 +\v 3 \w Surely|strong="H3588"\w* \w now|strong="H6258"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* say, “\w We|strong="H3588"\w* \w have|strong="H3068"\w* \w no|strong="H3808"\w* \w king|strong="H4428"\w*; \w for|strong="H3588"\w* \w we|strong="H3068"\w* don’t \w fear|strong="H3372"\w* \w Yahweh|strong="H3068"\w*; +\q2 \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w*, \w what|strong="H4100"\w* \w can|strong="H4100"\w* \w he|strong="H3588"\w* \w do|strong="H6213"\w* \w for|strong="H3588"\w* \w us|strong="H6213"\w*?” +\q1 +\v 4 \w They|strong="H5921"\w* \w make|strong="H3772"\w* \w promises|strong="H1697"\w*, swearing \w falsely|strong="H7723"\w* \w in|strong="H5921"\w* \w making|strong="H3772"\w* \w covenants|strong="H1285"\w*. +\q2 \w Therefore|strong="H5921"\w* \w judgment|strong="H4941"\w* springs \w up|strong="H5921"\w* \w like|strong="H1697"\w* \w poisonous|strong="H7219"\w* \w weeds|strong="H7219"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w furrows|strong="H8525"\w* \w of|strong="H1697"\w* \w the|strong="H5921"\w* \w field|strong="H7704"\w*. +\q1 +\v 5 \w The|strong="H5921"\w* \w inhabitants|strong="H7934"\w* \w of|strong="H4480"\w* \w Samaria|strong="H8111"\w* \w will|strong="H5971"\w* \w be|strong="H5971"\w* \w in|strong="H5921"\w* terror \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w calves|strong="H5697"\w* \w of|strong="H4480"\w* Beth Aven, +\q2 \w for|strong="H3588"\w* \w its|strong="H5921"\w* \w people|strong="H5971"\w* \w will|strong="H5971"\w* \w mourn|strong="H5921"\w* \w over|strong="H5921"\w* \w it|strong="H5921"\w*, +\q2 \w along|strong="H5921"\w* \w with|strong="H5921"\w* \w its|strong="H5921"\w* \w priests|strong="H3649"\w* \w who|strong="H5971"\w* \w rejoiced|strong="H1523"\w* \w over|strong="H5921"\w* \w it|strong="H5921"\w*, +\q2 \w for|strong="H3588"\w* \w its|strong="H5921"\w* \w glory|strong="H3519"\w*, \w because|strong="H3588"\w* \w it|strong="H5921"\w* \w has|strong="H3588"\w* \w departed|strong="H1540"\w* \w from|strong="H4480"\w* \w it|strong="H5921"\w*. +\q1 +\v 6 \w It|strong="H3947"\w* \w also|strong="H1571"\w* \w will|strong="H4428"\w* \w be|strong="H3478"\w* \w carried|strong="H2986"\w* \w to|strong="H3478"\w* Assyria \w for|strong="H4428"\w* \w a|strong="H3068"\w* \w present|strong="H4503"\w* \w to|strong="H3478"\w* \w a|strong="H3068"\w* great \w king|strong="H4428"\w*. +\q2 Ephraim \w will|strong="H4428"\w* \w receive|strong="H3947"\w* \w shame|strong="H1317"\w*, +\q2 \w and|strong="H3478"\w* \w Israel|strong="H3478"\w* \w will|strong="H4428"\w* \w be|strong="H3478"\w* ashamed \w of|strong="H4428"\w* \w his|strong="H3947"\w* own \w counsel|strong="H6098"\w*. +\q1 +\v 7 \w Samaria|strong="H8111"\w* \w and|strong="H4428"\w* \w her|strong="H5921"\w* \w king|strong="H4428"\w* float away +\q2 \w like|strong="H5921"\w* \w a|strong="H3068"\w* twig \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w water|strong="H4325"\w*. +\q1 +\v 8 \w The|strong="H5921"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w also|strong="H3478"\w* \w of|strong="H2022"\w* Aven, \w the|strong="H5921"\w* \w sin|strong="H2403"\w* \w of|strong="H2022"\w* \w Israel|strong="H3478"\w*, \w will|strong="H3478"\w* \w be|strong="H3478"\w* \w destroyed|strong="H8045"\w*. +\q2 \w The|strong="H5921"\w* \w thorn|strong="H6975"\w* \w and|strong="H3478"\w* \w the|strong="H5921"\w* \w thistle|strong="H1863"\w* \w will|strong="H3478"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w on|strong="H5921"\w* \w their|strong="H5921"\w* \w altars|strong="H4196"\w*. +\q2 \w They|strong="H5921"\w* \w will|strong="H3478"\w* tell \w the|strong="H5921"\w* \w mountains|strong="H2022"\w*, “\w Cover|strong="H3680"\w* \w us|strong="H5921"\w*!” \w and|strong="H3478"\w* \w the|strong="H5921"\w* \w hills|strong="H1389"\w*, “\w Fall|strong="H5307"\w* \w on|strong="H5921"\w* \w us|strong="H5921"\w*!” +\b +\q1 +\v 9 “\w Israel|strong="H3478"\w*, \w you|strong="H5921"\w* \w have|strong="H1121"\w* \w sinned|strong="H2398"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w Gibeah|strong="H1390"\w*. +\q2 \w There|strong="H8033"\w* \w they|strong="H3117"\w* \w remained|strong="H5975"\w*. +\q2 \w The|strong="H5921"\w* \w battle|strong="H4421"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w iniquity|strong="H5932"\w* doesn’t \w overtake|strong="H5381"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w Gibeah|strong="H1390"\w*. +\q1 +\v 10 \w When|strong="H5921"\w* \w it|strong="H5921"\w* \w is|strong="H5869"\w* \w my|strong="H5921"\w* desire, \w I|strong="H5921"\w* \w will|strong="H5971"\w* \w chastise|strong="H3256"\w* \w them|strong="H5921"\w*; +\q2 \w and|strong="H5971"\w* \w the|strong="H5921"\w* \w nations|strong="H5971"\w* \w will|strong="H5971"\w* \w be|strong="H5869"\w* gathered \w against|strong="H5921"\w* \w them|strong="H5921"\w* +\q2 \w when|strong="H5921"\w* \w they|strong="H5921"\w* \w are|strong="H5971"\w* \w bound|strong="H3256"\w* \w to|strong="H5921"\w* \w their|strong="H5921"\w* \w two|strong="H8147"\w* transgressions. +\q1 +\v 11 Ephraim \w is|strong="H3063"\w* \w a|strong="H3068"\w* \w trained|strong="H3925"\w* \w heifer|strong="H5697"\w* \w that|strong="H3063"\w* loves \w to|strong="H5921"\w* \w thresh|strong="H1758"\w*, +\q2 \w so|strong="H5674"\w* \w I|strong="H5921"\w* \w will|strong="H3063"\w* \w put|strong="H7392"\w* \w a|strong="H3068"\w* yoke \w on|strong="H5921"\w* \w her|strong="H5921"\w* beautiful \w neck|strong="H6676"\w*. +\q2 \w I|strong="H5921"\w* \w will|strong="H3063"\w* \w set|strong="H7392"\w* \w a|strong="H3068"\w* \w rider|strong="H7392"\w* \w on|strong="H5921"\w* Ephraim. +\q2 \w Judah|strong="H3063"\w* \w will|strong="H3063"\w* \w plow|strong="H2790"\w*. +\q2 \w Jacob|strong="H3290"\w* \w will|strong="H3063"\w* \w break|strong="H1758"\w* \w his|strong="H5921"\w* \w clods|strong="H7702"\w*. +\q1 +\v 12 \w Sow|strong="H2232"\w* \w to|strong="H5704"\w* \w yourselves|strong="H3068"\w* \w in|strong="H3068"\w* \w righteousness|strong="H6666"\w*, +\q2 \w reap|strong="H7114"\w* \w according|strong="H6310"\w* \w to|strong="H5704"\w* \w kindness|strong="H2617"\w*. +\q1 \w Break|strong="H5214"\w* \w up|strong="H5704"\w* \w your|strong="H3068"\w* \w fallow|strong="H5215"\w* \w ground|strong="H5215"\w*, +\q2 \w for|strong="H5704"\w* \w it|strong="H5704"\w* \w is|strong="H3068"\w* \w time|strong="H6256"\w* \w to|strong="H5704"\w* \w seek|strong="H1875"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w until|strong="H5704"\w* \w he|strong="H5704"\w* \w comes|strong="H1875"\w* \w and|strong="H3068"\w* rains \w righteousness|strong="H6666"\w* \w on|strong="H3068"\w* \w you|strong="H5704"\w*. +\q1 +\v 13 \w You|strong="H3588"\w* \w have|strong="H3588"\w* \w plowed|strong="H2790"\w* \w wickedness|strong="H7562"\w*. +\q2 \w You|strong="H3588"\w* \w have|strong="H3588"\w* \w reaped|strong="H7114"\w* \w iniquity|strong="H5766"\w*. +\q2 \w You|strong="H3588"\w* \w have|strong="H3588"\w* eaten \w the|strong="H3588"\w* \w fruit|strong="H6529"\w* \w of|strong="H1870"\w* \w lies|strong="H3585"\w*, +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* trusted \w in|strong="H1870"\w* \w your|strong="H3588"\w* \w way|strong="H1870"\w*, \w in|strong="H1870"\w* \w the|strong="H3588"\w* \w multitude|strong="H7230"\w* \w of|strong="H1870"\w* \w your|strong="H3588"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w*. +\q1 +\v 14 \w Therefore|strong="H5921"\w* \w a|strong="H3068"\w* \w battle|strong="H4421"\w* roar \w will|strong="H5971"\w* \w arise|strong="H6965"\w* \w among|strong="H5921"\w* \w your|strong="H3605"\w* \w people|strong="H5971"\w*, +\q2 \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w fortresses|strong="H4013"\w* \w will|strong="H5971"\w* \w be|strong="H1121"\w* \w destroyed|strong="H7703"\w*, +\q2 \w as|strong="H3117"\w* \w Shalman|strong="H8020"\w* \w destroyed|strong="H7703"\w* Beth Arbel \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w battle|strong="H4421"\w*. +\q2 \w The|strong="H3605"\w* mother \w was|strong="H3117"\w* \w dashed|strong="H7376"\w* \w in|strong="H5921"\w* \w pieces|strong="H7376"\w* \w with|strong="H5921"\w* \w her|strong="H3605"\w* \w children|strong="H1121"\w*. +\q1 +\v 15 \w So|strong="H6213"\w* \w Bethel|strong="H1008"\w* \w will|strong="H4428"\w* \w do|strong="H6213"\w* \w to|strong="H3478"\w* \w you|strong="H6440"\w* \w because|strong="H6440"\w* \w of|strong="H4428"\w* \w your|strong="H6440"\w* \w great|strong="H6213"\w* \w wickedness|strong="H7451"\w*. +\q2 \w At|strong="H3478"\w* \w daybreak|strong="H7837"\w* \w the|strong="H6440"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w* \w will|strong="H4428"\w* \w be|strong="H3478"\w* \w destroyed|strong="H1820"\w*. +\b +\c 11 +\p +\v 1 “\w When|strong="H3588"\w* \w Israel|strong="H3478"\w* \w was|strong="H3478"\w* \w a|strong="H3068"\w* \w child|strong="H5288"\w*, \w then|strong="H3588"\w* \w I|strong="H3588"\w* loved \w him|strong="H7121"\w*, +\q2 \w and|strong="H1121"\w* \w called|strong="H7121"\w* \w my|strong="H3588"\w* \w son|strong="H1121"\w* out \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*. +\q1 +\v 2 \w They|strong="H3651"\w* \w called|strong="H7121"\w* \w to|strong="H1980"\w* \w them|strong="H6440"\w*, \w so|strong="H3651"\w* \w they|strong="H3651"\w* \w went|strong="H1980"\w* \w from|strong="H6440"\w* \w them|strong="H6440"\w*. +\q2 \w They|strong="H3651"\w* \w sacrificed|strong="H2076"\w* \w to|strong="H1980"\w* \w the|strong="H6440"\w* \w Baals|strong="H1168"\w*, +\q2 \w and|strong="H1980"\w* \w burned|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H1980"\w* \w engraved|strong="H6456"\w* \w images|strong="H6456"\w*. +\q1 +\v 3 \w Yet|strong="H3588"\w* \w I|strong="H3588"\w* \w taught|strong="H3045"\w* Ephraim \w to|strong="H5921"\w* walk. +\q2 \w I|strong="H3588"\w* \w took|strong="H3947"\w* \w them|strong="H5921"\w* \w by|strong="H5921"\w* \w their|strong="H3947"\w* \w arms|strong="H2220"\w*, +\q2 \w but|strong="H3588"\w* \w they|strong="H3588"\w* didn’t \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w healed|strong="H7495"\w* \w them|strong="H5921"\w*. +\q1 +\v 4 \w I|strong="H5921"\w* \w drew|strong="H4900"\w* \w them|strong="H5921"\w* \w with|strong="H5921"\w* \w cords|strong="H5688"\w* \w of|strong="H5921"\w* \w a|strong="H3068"\w* man, \w with|strong="H5921"\w* ties \w of|strong="H5921"\w* love; +\q2 \w and|strong="H4900"\w* \w I|strong="H5921"\w* \w was|strong="H1961"\w* \w to|strong="H1961"\w* \w them|strong="H5921"\w* \w like|strong="H1961"\w* \w those|strong="H5921"\w* who \w lift|strong="H7311"\w* \w up|strong="H7311"\w* \w the|strong="H5921"\w* \w yoke|strong="H5923"\w* \w on|strong="H5921"\w* \w their|strong="H5921"\w* necks; +\q2 \w and|strong="H4900"\w* \w I|strong="H5921"\w* \w bent|strong="H5186"\w* \w down|strong="H5186"\w* \w to|strong="H1961"\w* \w him|strong="H5921"\w* \w and|strong="H4900"\w* \w I|strong="H5921"\w* fed \w him|strong="H5921"\w*. +\b +\q1 +\v 5 “\w They|strong="H3588"\w* won’t \w return|strong="H7725"\w* \w into|strong="H7725"\w* \w the|strong="H3588"\w* land \w of|strong="H4428"\w* \w Egypt|strong="H4714"\w*; +\q2 \w but|strong="H3588"\w* \w the|strong="H3588"\w* Assyrian \w will|strong="H4428"\w* \w be|strong="H3808"\w* \w their|strong="H7725"\w* \w king|strong="H4428"\w*, +\q2 \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w refused|strong="H3985"\w* \w to|strong="H7725"\w* \w repent|strong="H7725"\w*. +\q1 +\v 6 \w The|strong="H3615"\w* \w sword|strong="H2719"\w* \w will|strong="H2719"\w* \w fall|strong="H2342"\w* \w on|strong="H5892"\w* \w their|strong="H3615"\w* \w cities|strong="H5892"\w*, +\q2 \w and|strong="H5892"\w* \w will|strong="H2719"\w* \w destroy|strong="H3615"\w* \w the|strong="H3615"\w* bars \w of|strong="H5892"\w* \w their|strong="H3615"\w* gates, +\q2 \w and|strong="H5892"\w* \w will|strong="H2719"\w* \w put|strong="H3615"\w* \w an|strong="H3615"\w* \w end|strong="H3615"\w* \w to|strong="H5892"\w* \w their|strong="H3615"\w* plans. +\q1 +\v 7 \w My|strong="H7311"\w* \w people|strong="H5971"\w* \w are|strong="H5971"\w* determined \w to|strong="H7121"\w* \w turn|strong="H5971"\w* \w from|strong="H5971"\w* \w me|strong="H7121"\w*. +\q2 Though \w they|strong="H3808"\w* \w call|strong="H7121"\w* \w to|strong="H7121"\w* \w the|strong="H7121"\w* Most \w High|strong="H7311"\w*, +\q2 \w he|strong="H3808"\w* \w certainly|strong="H3808"\w* won’t \w exalt|strong="H7311"\w* \w them|strong="H7121"\w*. +\b +\q1 +\v 8 “How can \w I|strong="H5414"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w up|strong="H5414"\w*, Ephraim? +\q2 How can \w I|strong="H5414"\w* \w hand|strong="H5414"\w* \w you|strong="H5414"\w* \w over|strong="H5921"\w*, \w Israel|strong="H3478"\w*? +\q2 How can \w I|strong="H5414"\w* \w make|strong="H7760"\w* \w you|strong="H5414"\w* \w like|strong="H3478"\w* Admah? +\q2 How can \w I|strong="H5414"\w* \w make|strong="H7760"\w* \w you|strong="H5414"\w* \w like|strong="H3478"\w* \w Zeboiim|strong="H6636"\w*? +\q1 \w My|strong="H5414"\w* \w heart|strong="H3820"\w* \w is|strong="H3820"\w* \w turned|strong="H2015"\w* \w within|strong="H5921"\w* \w me|strong="H5414"\w*, +\q2 \w my|strong="H5414"\w* compassion \w is|strong="H3820"\w* aroused. +\q1 +\v 9 \w I|strong="H3588"\w* \w will|strong="H5892"\w* \w not|strong="H3808"\w* \w execute|strong="H6213"\w* \w the|strong="H3588"\w* \w fierceness|strong="H2740"\w* \w of|strong="H5892"\w* \w my|strong="H7725"\w* \w anger|strong="H2740"\w*. +\q2 \w I|strong="H3588"\w* \w will|strong="H5892"\w* \w not|strong="H3808"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w destroy|strong="H7843"\w* Ephraim, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* am \w God|strong="H3808"\w*, \w and|strong="H7725"\w* \w not|strong="H3808"\w* man—\w the|strong="H3588"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w among|strong="H7130"\w* \w you|strong="H3588"\w*. +\q2 \w I|strong="H3588"\w* \w will|strong="H5892"\w* \w not|strong="H3808"\w* \w come|strong="H7725"\w* \w in|strong="H6213"\w* \w wrath|strong="H2740"\w*. +\q1 +\v 10 \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w walk|strong="H3212"\w* \w after|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w who|strong="H1931"\w* \w will|strong="H3068"\w* \w roar|strong="H7580"\w* \w like|strong="H1121"\w* \w a|strong="H3068"\w* lion; +\q2 \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w will|strong="H3068"\w* \w roar|strong="H7580"\w*, \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w children|strong="H1121"\w* \w will|strong="H3068"\w* \w come|strong="H3212"\w* \w trembling|strong="H2729"\w* \w from|strong="H1121"\w* \w the|strong="H3588"\w* \w west|strong="H3220"\w*. +\q1 +\v 11 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w come|strong="H2729"\w* \w trembling|strong="H2729"\w* \w like|strong="H1004"\w* \w a|strong="H3068"\w* \w bird|strong="H6833"\w* \w out|strong="H5921"\w* \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*, +\q2 \w and|strong="H3068"\w* \w like|strong="H1004"\w* \w a|strong="H3068"\w* \w dove|strong="H3123"\w* \w out|strong="H5921"\w* \w of|strong="H1004"\w* \w the|strong="H5002"\w* land \w of|strong="H1004"\w* Assyria; +\q1 \w and|strong="H3068"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w settle|strong="H3427"\w* \w them|strong="H5921"\w* \w in|strong="H3427"\w* \w their|strong="H3068"\w* \w houses|strong="H1004"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\b +\q1 +\v 12 Ephraim surrounds me with falsehood, +\q2 and the house of Israel with deceit. +\q2 Judah still strays from God, +\q2 and is unfaithful to the Holy One. +\c 12 +\p +\v 1 Ephraim feeds \w on|strong="H1004"\w* wind, +\q2 \w and|strong="H3063"\w* chases \w the|strong="H5437"\w* east wind. +\q2 \w He|strong="H1004"\w* continually multiplies \w lies|strong="H3585"\w* \w and|strong="H3063"\w* desolation. +\q2 \w They|strong="H3478"\w* \w make|strong="H5437"\w* \w a|strong="H3068"\w* covenant \w with|strong="H5973"\w* Assyria, +\q2 \w and|strong="H3063"\w* oil \w is|strong="H3478"\w* \w carried|strong="H5437"\w* \w into|strong="H3063"\w* Egypt. +\q1 +\v 2 \w Yahweh|strong="H3068"\w* \w also|strong="H3117"\w* \w has|strong="H3117"\w* \w a|strong="H3068"\w* controversy \w with|strong="H5973"\w* Judah, +\q2 \w and|strong="H3117"\w* \w will|strong="H4714"\w* punish Jacob according \w to|strong="H3117"\w* \w his|strong="H3605"\w* ways; +\q2 according \w to|strong="H3117"\w* \w his|strong="H3605"\w* \w deeds|strong="H4714"\w* \w he|strong="H3117"\w* \w will|strong="H4714"\w* repay \w him|strong="H5973"\w*. +\q1 +\v 3 \w In|strong="H5921"\w* \w the|strong="H5921"\w* womb \w he|strong="H3068"\w* \w took|strong="H7725"\w* \w his|strong="H3068"\w* brother \w by|strong="H5921"\w* \w the|strong="H5921"\w* heel, +\q2 \w and|strong="H3063"\w* \w in|strong="H5921"\w* \w his|strong="H3068"\w* manhood \w he|strong="H3068"\w* \w contended|strong="H7379"\w* \w with|strong="H5973"\w* \w God|strong="H3068"\w*. +\q1 +\v 4 Indeed, he struggled \w with|strong="H8280"\w* the angel, and prevailed; +\q2 he wept, and made supplication to him. +\q2 He found him at Bethel, and there he spoke \w with|strong="H8280"\w* us— +\q2 +\v 5 even \w Yahweh|strong="H3068"\w*, \w the|strong="H1696"\w* \w God|strong="H1008"\w* \w of|strong="H4397"\w* Armies. +\q2 \w Yahweh|strong="H3068"\w* \w is|strong="H8033"\w* \w his|strong="H4672"\w* name \w of|strong="H4397"\w* renown! +\q1 +\v 6 \w Therefore|strong="H3068"\w* turn \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\q2 Keep kindness \w and|strong="H3068"\w* justice, +\q2 \w and|strong="H3068"\w* wait \w continually|strong="H3068"\w* \w for|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\b +\q1 +\v 7 \w A|strong="H3068"\w* merchant \w has|strong="H4941"\w* dishonest scales \w in|strong="H7725"\w* \w his|strong="H8104"\w* hand. +\q2 \w He|strong="H7725"\w* loves \w to|strong="H7725"\w* defraud. +\q1 +\v 8 Ephraim said, “Surely \w I|strong="H3027"\w* \w have|strong="H3027"\w* \w become|strong="H3027"\w* rich. +\q2 \w I|strong="H3027"\w* \w have|strong="H3027"\w* found myself wealth. +\q2 \w In|strong="H3027"\w* all \w my|strong="H3027"\w* wealth \w they|strong="H3027"\w* won’t find \w in|strong="H3027"\w* \w me|strong="H3027"\w* any iniquity \w that|strong="H3027"\w* \w is|strong="H3027"\w* sin.” +\b +\q1 +\v 9 “\w But|strong="H3808"\w* \w I|strong="H3808"\w* am \w Yahweh|strong="H3068"\w* \w your|strong="H3605"\w* \w God|strong="H3808"\w* \w from|strong="H3605"\w* \w the|strong="H3605"\w* land \w of|strong="H3605"\w* Egypt. +\q2 \w I|strong="H3808"\w* \w will|strong="H3808"\w* \w yet|strong="H3808"\w* again make \w you|strong="H3605"\w* dwell \w in|strong="H4672"\w* tents, +\q2 \w as|strong="H3605"\w* \w in|strong="H4672"\w* \w the|strong="H3605"\w* days \w of|strong="H3605"\w* \w the|strong="H3605"\w* solemn feast. +\q1 +\v 10 \w I|strong="H3117"\w* \w have|strong="H3068"\w* \w also|strong="H3068"\w* spoken \w to|strong="H3068"\w* \w the|strong="H3068"\w* prophets, +\q2 \w and|strong="H3068"\w* \w I|strong="H3117"\w* \w have|strong="H3068"\w* multiplied visions; +\q2 \w and|strong="H3068"\w* \w by|strong="H3117"\w* \w the|strong="H3068"\w* ministry \w of|strong="H3068"\w* \w the|strong="H3068"\w* prophets \w I|strong="H3117"\w* \w have|strong="H3068"\w* used parables. +\q1 +\v 11 If Gilead \w is|strong="H3027"\w* wicked, +\q2 surely \w they|strong="H5921"\w* \w are|strong="H3027"\w* worthless. +\q1 \w In|strong="H5921"\w* Gilgal \w they|strong="H5921"\w* sacrifice bulls. +\q2 Indeed, \w their|strong="H5921"\w* altars \w are|strong="H3027"\w* \w like|strong="H1819"\w* heaps \w in|strong="H5921"\w* \w the|strong="H5921"\w* furrows \w of|strong="H3027"\w* \w the|strong="H5921"\w* field. +\q1 +\v 12 Jacob fled \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w country|strong="H7704"\w* \w of|strong="H7704"\w* Aram. +\q2 Israel \w served|strong="H1961"\w* \w to|strong="H1961"\w* get \w a|strong="H3068"\w* wife. +\q2 \w For|strong="H5921"\w* \w a|strong="H3068"\w* wife \w he|strong="H5921"\w* tended flocks \w and|strong="H4196"\w* herds. +\q1 +\v 13 \w By|strong="H3478"\w* \w a|strong="H3068"\w* prophet \w Yahweh|strong="H3068"\w* \w brought|strong="H3478"\w* \w Israel|strong="H3478"\w* up out \w of|strong="H7704"\w* Egypt, +\q2 \w and|strong="H3478"\w* \w by|strong="H3478"\w* \w a|strong="H3068"\w* prophet \w he|strong="H3478"\w* \w was|strong="H3478"\w* \w preserved|strong="H8104"\w*. +\q1 +\v 14 Ephraim \w has|strong="H3068"\w* bitterly provoked anger. +\q2 \w Therefore|strong="H3068"\w* \w his|strong="H8104"\w* blood \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w left|strong="H3478"\w* \w on|strong="H3068"\w* \w him|strong="H5927"\w*, +\q2 \w and|strong="H3478"\w* \w his|strong="H8104"\w* \w Lord|strong="H3068"\w*\f + \fr 12:14 \ft The word translated “Lord” is “Adonai.”\f* \w will|strong="H3068"\w* repay \w his|strong="H8104"\w* contempt. +\c 13 +\p +\v 1 \w When|strong="H1696"\w* Ephraim \w spoke|strong="H1696"\w*, there \w was|strong="H3478"\w* \w trembling|strong="H7578"\w*. +\q2 \w He|strong="H1931"\w* \w exalted|strong="H5375"\w* \w himself|strong="H1931"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w*, +\q2 \w but|strong="H1696"\w* \w when|strong="H1696"\w* \w he|strong="H1931"\w* became guilty \w through|strong="H1696"\w* \w Baal|strong="H1168"\w*, \w he|strong="H1931"\w* \w died|strong="H4191"\w*. +\q1 +\v 2 \w Now|strong="H6258"\w* \w they|strong="H1992"\w* \w sin|strong="H2398"\w* \w more|strong="H3254"\w* \w and|strong="H3701"\w* \w more|strong="H3254"\w*, +\q2 \w and|strong="H3701"\w* \w have|strong="H3605"\w* \w made|strong="H6213"\w* \w themselves|strong="H1992"\w* \w molten|strong="H4541"\w* \w images|strong="H4541"\w* \w of|strong="H4639"\w* \w their|strong="H3605"\w* \w silver|strong="H3701"\w*, +\q2 \w even|strong="H6213"\w* \w idols|strong="H6091"\w* \w according|strong="H3701"\w* \w to|strong="H6213"\w* \w their|strong="H3605"\w* own \w understanding|strong="H8394"\w*, +\q2 \w all|strong="H3605"\w* \w of|strong="H4639"\w* \w them|strong="H1992"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H4639"\w* \w the|strong="H3605"\w* \w craftsmen|strong="H2796"\w*. +\q2 \w They|strong="H1992"\w* \w say|strong="H3254"\w* \w of|strong="H4639"\w* \w them|strong="H1992"\w*, ‘\w They|strong="H1992"\w* \w offer|strong="H2076"\w* human \w sacrifice|strong="H2076"\w* \w and|strong="H3701"\w* \w kiss|strong="H5401"\w* \w the|strong="H3605"\w* \w calves|strong="H5695"\w*.’ +\q1 +\v 3 \w Therefore|strong="H3651"\w* \w they|strong="H3651"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H1961"\w* \w morning|strong="H1242"\w* \w mist|strong="H6051"\w*, +\q2 \w like|strong="H1961"\w* \w the|strong="H1961"\w* \w dew|strong="H2919"\w* \w that|strong="H3651"\w* \w passes|strong="H1980"\w* \w away|strong="H1980"\w* \w early|strong="H7925"\w*, +\q2 \w like|strong="H1961"\w* \w the|strong="H1961"\w* \w chaff|strong="H4671"\w* \w that|strong="H3651"\w* \w is|strong="H3651"\w* driven \w with|strong="H1980"\w* \w the|strong="H1961"\w* \w whirlwind|strong="H5590"\w* \w out|strong="H1980"\w* \w of|strong="H1637"\w* \w the|strong="H1961"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w*, +\q2 \w and|strong="H1980"\w* \w like|strong="H1961"\w* \w the|strong="H1961"\w* \w smoke|strong="H6227"\w* \w out|strong="H1980"\w* \w of|strong="H1637"\w* \w the|strong="H1961"\w* chimney. +\b +\q1 +\v 4 “\w Yet|strong="H3068"\w* \w I|strong="H3045"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w* \w from|strong="H3068"\w* \w the|strong="H3068"\w* land \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w*; +\q2 \w and|strong="H3068"\w* \w you|strong="H3045"\w* \w shall|strong="H3068"\w* \w acknowledge|strong="H3045"\w* \w no|strong="H3808"\w* \w god|strong="H3068"\w* \w but|strong="H3808"\w* \w me|strong="H3467"\w*, +\q2 \w and|strong="H3068"\w* \w besides|strong="H2108"\w* \w me|strong="H3467"\w* \w there|strong="H3045"\w* \w is|strong="H3068"\w* \w no|strong="H3808"\w* \w savior|strong="H3467"\w*. +\q1 +\v 5 \w I|strong="H3045"\w* \w knew|strong="H3045"\w* \w you|strong="H3045"\w* \w in|strong="H3045"\w* \w the|strong="H3045"\w* \w wilderness|strong="H4057"\w*, +\q2 \w in|strong="H3045"\w* \w the|strong="H3045"\w* land \w of|strong="H4057"\w* great \w drought|strong="H8514"\w*. +\q1 +\v 6 \w According|strong="H5921"\w* \w to|strong="H5921"\w* \w their|strong="H5921"\w* \w pasture|strong="H4830"\w*, \w so|strong="H3651"\w* \w were|strong="H5921"\w* \w they|strong="H3651"\w* \w filled|strong="H7646"\w*; +\q2 \w they|strong="H3651"\w* \w were|strong="H5921"\w* \w filled|strong="H7646"\w*, \w and|strong="H3820"\w* \w their|strong="H5921"\w* \w heart|strong="H3820"\w* \w was|strong="H3820"\w* \w exalted|strong="H7311"\w*. +\q2 \w Therefore|strong="H3651"\w* \w they|strong="H3651"\w* \w have|strong="H7646"\w* \w forgotten|strong="H7911"\w* \w me|strong="H5921"\w*. +\q1 +\v 7 \w Therefore|strong="H5921"\w* \w I|strong="H5921"\w* \w am|strong="H1961"\w* \w like|strong="H3644"\w* \w a|strong="H3068"\w* \w lion|strong="H7826"\w* \w to|strong="H1961"\w* \w them|strong="H5921"\w*. +\q2 \w Like|strong="H3644"\w* \w a|strong="H3068"\w* \w leopard|strong="H5246"\w*, \w I|strong="H5921"\w* \w will|strong="H1961"\w* lurk \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w path|strong="H1870"\w*. +\q1 +\v 8 \w I|strong="H8033"\w* \w will|strong="H3820"\w* \w meet|strong="H6298"\w* \w them|strong="H6298"\w* \w like|strong="H3820"\w* \w a|strong="H3068"\w* \w bear|strong="H1677"\w* \w that|strong="H2416"\w* \w is|strong="H3820"\w* \w bereaved|strong="H7909"\w* \w of|strong="H7704"\w* \w her|strong="H7167"\w* \w cubs|strong="H7909"\w*, +\q2 \w and|strong="H8033"\w* \w will|strong="H3820"\w* \w tear|strong="H7167"\w* \w the|strong="H8033"\w* covering \w of|strong="H7704"\w* \w their|strong="H7167"\w* \w heart|strong="H3820"\w*. +\q2 \w There|strong="H8033"\w* \w I|strong="H8033"\w* \w will|strong="H3820"\w* devour \w them|strong="H6298"\w* \w like|strong="H3820"\w* \w a|strong="H3068"\w* \w lioness|strong="H3833"\w*. +\q2 \w The|strong="H8033"\w* \w wild|strong="H7704"\w* \w animal|strong="H2416"\w* \w will|strong="H3820"\w* \w tear|strong="H7167"\w* \w them|strong="H6298"\w*. +\q1 +\v 9 \w You|strong="H3588"\w* \w are|strong="H3478"\w* \w destroyed|strong="H7843"\w*, \w Israel|strong="H3478"\w*, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H3478"\w* against \w me|strong="H3588"\w*, +\q2 against \w your|strong="H3588"\w* \w helper|strong="H5828"\w*. +\q1 +\v 10 Where \w is|strong="H3605"\w* \w your|strong="H3605"\w* \w king|strong="H4428"\w* \w now|strong="H5414"\w*, \w that|strong="H3605"\w* \w he|strong="H3605"\w* \w may|strong="H4428"\w* \w save|strong="H3467"\w* \w you|strong="H5414"\w* \w in|strong="H4428"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w cities|strong="H5892"\w*? +\q2 \w And|strong="H4428"\w* \w your|strong="H3605"\w* \w judges|strong="H8199"\w*, \w of|strong="H4428"\w* whom \w you|strong="H5414"\w* said, ‘\w Give|strong="H5414"\w* \w me|strong="H5414"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w princes|strong="H8269"\w*’? +\q1 +\v 11 \w I|strong="H5414"\w* \w have|strong="H5414"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w king|strong="H4428"\w* \w in|strong="H4428"\w* \w my|strong="H5414"\w* \w anger|strong="H5678"\w*, +\q2 \w and|strong="H4428"\w* \w have|strong="H5414"\w* \w taken|strong="H3947"\w* \w him|strong="H5414"\w* \w away|strong="H3947"\w* \w in|strong="H4428"\w* \w my|strong="H5414"\w* \w wrath|strong="H5678"\w*. +\q1 +\v 12 \w The|strong="H6887"\w* \w guilt|strong="H5771"\w* \w of|strong="H2403"\w* Ephraim \w is|strong="H5771"\w* \w stored|strong="H6845"\w* \w up|strong="H6845"\w*. +\q2 \w His|strong="H6845"\w* \w sin|strong="H2403"\w* \w is|strong="H5771"\w* \w stored|strong="H6845"\w* \w up|strong="H6845"\w*. +\q1 +\v 13 \w The|strong="H3588"\w* \w sorrows|strong="H2256"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* travailing \w woman|strong="H3205"\w* \w will|strong="H1121"\w* \w come|strong="H3205"\w* \w on|strong="H5975"\w* \w him|strong="H3205"\w*. +\q2 \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w an|strong="H3588"\w* \w unwise|strong="H2450"\w* \w son|strong="H1121"\w*, +\q2 \w for|strong="H3588"\w* \w when|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w time|strong="H6256"\w*, \w he|strong="H1931"\w* doesn’t \w come|strong="H3205"\w* \w to|strong="H6256"\w* \w the|strong="H3588"\w* \w opening|strong="H4866"\w* \w of|strong="H1121"\w* \w the|strong="H3588"\w* \w womb|strong="H4866"\w*. +\q1 +\v 14 \w I|strong="H3027"\w* \w will|strong="H5869"\w* \w ransom|strong="H6299"\w* \w them|strong="H3027"\w* \w from|strong="H3027"\w* \w the|strong="H3027"\w* \w power|strong="H3027"\w* \w of|strong="H3027"\w* \w Sheol|strong="H7585"\w*.\f + \fr 13:14 \ft Sheol is the place of the dead.\f* +\q2 \w I|strong="H3027"\w* \w will|strong="H5869"\w* \w redeem|strong="H1350"\w* \w them|strong="H3027"\w* \w from|strong="H3027"\w* \w death|strong="H4194"\w*! +\q2 \w Death|strong="H4194"\w*, \w where|strong="H3027"\w* \w are|strong="H5869"\w* \w your|strong="H5641"\w* \w plagues|strong="H1698"\w*? +\q2 \w Sheol|strong="H7585"\w*, \w where|strong="H3027"\w* \w is|strong="H3027"\w* \w your|strong="H5641"\w* \w destruction|strong="H6987"\w*? +\b +\q1 “\w Compassion|strong="H5164"\w* \w will|strong="H5869"\w* \w be|strong="H3027"\w* \w hidden|strong="H5641"\w* \w from|strong="H3027"\w* \w my|strong="H5641"\w* \w eyes|strong="H5869"\w*. +\q2 +\v 15 \w Though|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H3068"\w* \w fruitful|strong="H6500"\w* \w among|strong="H6500"\w* \w his|strong="H3605"\w* brothers, \w an|strong="H3588"\w* \w east|strong="H6921"\w* \w wind|strong="H7307"\w* \w will|strong="H3068"\w* \w come|strong="H5927"\w*, +\q2 \w the|strong="H3605"\w* \w breath|strong="H7307"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w coming|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5927"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w*; +\q2 \w and|strong="H3068"\w* \w his|strong="H3605"\w* \w spring|strong="H4599"\w* \w will|strong="H3068"\w* \w become|strong="H2717"\w* \w dry|strong="H2717"\w*, +\q2 \w and|strong="H3068"\w* \w his|strong="H3605"\w* \w fountain|strong="H4726"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w dried|strong="H2717"\w* \w up|strong="H5927"\w*. +\q2 \w He|strong="H1931"\w* \w will|strong="H3068"\w* \w plunder|strong="H8154"\w* \w the|strong="H3605"\w* storehouse \w of|strong="H3068"\w* treasure. +\q1 +\v 16 Samaria will bear her guilt, +\q2 for she has rebelled against her God. +\q2 They will fall by the sword. +\q2 Their infants will be dashed in pieces, +\q2 and their pregnant women will be ripped open.” +\b +\c 14 +\q1 +\v 1 Israel, return \w to|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3588"\w* God; +\q2 \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* \w fallen|strong="H5307"\w* \w because|strong="H3588"\w* \w of|strong="H2719"\w* \w your|strong="H3588"\w* sin. +\q1 +\v 2 \w Take|strong="H7725"\w* words \w with|strong="H3068"\w* \w you|strong="H3588"\w*, \w and|strong="H3478"\w* \w return|strong="H7725"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w*. +\q2 Tell \w him|strong="H7725"\w*, “Forgive \w all|strong="H5704"\w* \w our|strong="H3068"\w* \w sins|strong="H5771"\w*, +\q2 \w and|strong="H3478"\w* accept \w that|strong="H3588"\w* \w which|strong="H3068"\w* \w is|strong="H3068"\w* good; +\q2 \w so|strong="H7725"\w* \w we|strong="H3068"\w* offer bulls \w as|strong="H5704"\w* \w we|strong="H3068"\w* vowed \w of|strong="H3068"\w* \w our|strong="H3068"\w* lips. +\q1 +\v 3 Assyria \w can|strong="H3947"\w*’t save \w us|strong="H7725"\w*. +\q2 \w We|strong="H3605"\w* won’t ride \w on|strong="H3068"\w* horses; +\q2 \w neither|strong="H5973"\w* \w will|strong="H3068"\w* \w we|strong="H3068"\w* \w say|strong="H7725"\w* \w any|strong="H3605"\w* \w more|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H3605"\w* \w work|strong="H1697"\w* \w of|strong="H3068"\w* \w our|strong="H3068"\w* hands, ‘\w Our|strong="H3068"\w* gods!’ +\q2 \w for|strong="H3068"\w* \w in|strong="H3068"\w* \w you|strong="H3605"\w* \w the|strong="H3605"\w* fatherless finds \w mercy|strong="H3068"\w*.” +\b +\q1 +\v 4 “\w I|strong="H5921"\w* \w will|strong="H3027"\w* heal \w their|strong="H5921"\w* waywardness. +\q2 \w I|strong="H5921"\w* \w will|strong="H3027"\w* \w love|strong="H7355"\w* \w them|strong="H5921"\w* freely; +\q2 \w for|strong="H5921"\w* \w my|strong="H5921"\w* anger \w is|strong="H3027"\w* turned \w away|strong="H5750"\w* \w from|strong="H5921"\w* \w them|strong="H5921"\w*. +\q1 +\v 5 \w I|strong="H3588"\w* \w will|strong="H7725"\w* \w be|strong="H7725"\w* \w like|strong="H7725"\w* \w the|strong="H3588"\w* dew \w to|strong="H7725"\w* Israel. +\q2 \w He|strong="H3588"\w* \w will|strong="H7725"\w* blossom \w like|strong="H7725"\w* \w the|strong="H3588"\w* lily, +\q2 \w and|strong="H7725"\w* send \w down|strong="H3588"\w* \w his|strong="H7725"\w* roots \w like|strong="H7725"\w* Lebanon. +\q1 +\v 6 \w His|strong="H5221"\w* branches \w will|strong="H1961"\w* spread, +\q2 \w and|strong="H3478"\w* \w his|strong="H5221"\w* beauty \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H5221"\w* olive tree, +\q2 \w and|strong="H3478"\w* \w his|strong="H5221"\w* fragrance \w like|strong="H1961"\w* \w Lebanon|strong="H3844"\w*. +\q1 +\v 7 Men \w will|strong="H1961"\w* dwell \w in|strong="H3212"\w* \w his|strong="H1961"\w* shade. +\q2 They \w will|strong="H1961"\w* revive \w like|strong="H1961"\w* \w the|strong="H1961"\w* grain, +\q2 \w and|strong="H3212"\w* blossom \w like|strong="H1961"\w* \w the|strong="H1961"\w* vine. +\q2 \w Their|strong="H1961"\w* \w fragrance|strong="H7381"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H1961"\w* wine \w of|strong="H7381"\w* \w Lebanon|strong="H3844"\w*. +\q1 +\v 8 Ephraim, what \w have|strong="H1612"\w* \w I|strong="H6738"\w* \w to|strong="H7725"\w* \w do|strong="H1612"\w* any \w more|strong="H7725"\w* \w with|strong="H3427"\w* idols? +\q2 \w I|strong="H6738"\w* \w answer|strong="H7725"\w*, \w and|strong="H7725"\w* \w will|strong="H3844"\w* \w take|strong="H7725"\w* care \w of|strong="H3427"\w* \w him|strong="H7725"\w*. +\q2 \w I|strong="H6738"\w* am \w like|strong="H7725"\w* \w a|strong="H3068"\w* green cypress \w tree|strong="H1612"\w*; +\q2 \w from|strong="H7725"\w* \w me|strong="H7725"\w* \w your|strong="H7725"\w* fruit \w is|strong="H1715"\w* found.” +\b +\q1 +\v 9 \w Who|strong="H4672"\w* \w is|strong="H4100"\w* wise, \w that|strong="H4480"\w* \w he|strong="H4480"\w* \w may|strong="H4480"\w* understand these things? +\q2 \w Who|strong="H4672"\w* \w is|strong="H4100"\w* prudent, \w that|strong="H4480"\w* \w he|strong="H4480"\w* \w may|strong="H4480"\w* know \w them|strong="H4672"\w*? +\q2 \w For|strong="H4480"\w* \w the|strong="H4480"\w* ways \w of|strong="H4480"\w* \w Yahweh|strong="H3068"\w* \w are|strong="H4100"\w* right, +\q2 \w and|strong="H6030"\w* \w the|strong="H4480"\w* righteous walk \w in|strong="H4672"\w* \w them|strong="H4672"\w*, +\q2 \w but|strong="H6030"\w* \w the|strong="H4480"\w* rebellious stumble \w in|strong="H4672"\w* \w them|strong="H4672"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/30-JOLeng-web.usfm b/bibles/eng-web_usfm/30-JOLeng-web.usfm new file mode 100644 index 0000000..0e8cb19 --- /dev/null +++ b/bibles/eng-web_usfm/30-JOLeng-web.usfm @@ -0,0 +1,343 @@ +\id JOL 29-JOL-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Joel +\toc1 The Book of Joel +\toc2 Joel +\toc3 Jol +\mt2 The Book of +\mt1 Joel +\c 1 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s\f + \fr 1:1 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w word|strong="H1697"\w* \w that|strong="H3068"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Joel|strong="H3100"\w*, \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Pethuel|strong="H6602"\w*. +\q1 +\v 2 \w Hear|strong="H8085"\w* \w this|strong="H2063"\w*, \w you|strong="H3605"\w* \w elders|strong="H2205"\w*, +\q2 \w and|strong="H3117"\w* \w listen|strong="H8085"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* land! +\q1 \w Has|strong="H1961"\w* \w this|strong="H2063"\w* \w ever|strong="H3117"\w* \w happened|strong="H1961"\w* \w in|strong="H3427"\w* \w your|strong="H3605"\w* \w days|strong="H3117"\w*, +\q2 \w or|strong="H8085"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H3605"\w* fathers? +\q1 +\v 3 \w Tell|strong="H5608"\w* \w your|strong="H5921"\w* \w children|strong="H1121"\w* \w about|strong="H5921"\w* \w it|strong="H5921"\w*, +\q2 \w and|strong="H1121"\w* \w have|strong="H1121"\w* \w your|strong="H5921"\w* \w children|strong="H1121"\w* \w tell|strong="H5608"\w* \w their|strong="H5921"\w* \w children|strong="H1121"\w*, +\q2 \w and|strong="H1121"\w* \w their|strong="H5921"\w* \w children|strong="H1121"\w*, \w another|strong="H1755"\w* \w generation|strong="H1755"\w*. +\q1 +\v 4 \w What|strong="H3499"\w* \w the|strong="H3499"\w* swarming \w locust|strong="H3218"\w* \w has|strong="H3218"\w* \w left|strong="H3499"\w*, \w the|strong="H3499"\w* great \w locust|strong="H3218"\w* \w has|strong="H3218"\w* eaten. +\q2 \w What|strong="H3499"\w* \w the|strong="H3499"\w* great \w locust|strong="H3218"\w* \w has|strong="H3218"\w* \w left|strong="H3499"\w*, \w the|strong="H3499"\w* \w grasshopper|strong="H2625"\w* \w has|strong="H3218"\w* eaten. +\q2 \w What|strong="H3499"\w* \w the|strong="H3499"\w* \w grasshopper|strong="H2625"\w* \w has|strong="H3218"\w* \w left|strong="H3499"\w*, \w the|strong="H3499"\w* \w caterpillar|strong="H2625"\w* \w has|strong="H3218"\w* eaten. +\q1 +\v 5 \w Wake|strong="H6974"\w* \w up|strong="H5921"\w*, \w you|strong="H3588"\w* \w drunkards|strong="H7910"\w*, \w and|strong="H6310"\w* \w weep|strong="H1058"\w*! +\q2 \w Wail|strong="H3213"\w*, \w all|strong="H3605"\w* \w you|strong="H3588"\w* \w drinkers|strong="H8354"\w* \w of|strong="H6310"\w* \w wine|strong="H3196"\w*, \w because|strong="H3588"\w* \w of|strong="H6310"\w* \w the|strong="H3605"\w* \w sweet|strong="H6071"\w* \w wine|strong="H3196"\w*, +\q2 \w for|strong="H3588"\w* \w it|strong="H5921"\w* \w is|strong="H3605"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w your|strong="H3605"\w* \w mouth|strong="H6310"\w*. +\q1 +\v 6 \w For|strong="H3588"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w* \w has|strong="H3588"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w on|strong="H5921"\w* \w my|strong="H5921"\w* land, \w strong|strong="H6099"\w*, \w and|strong="H1471"\w* \w without|strong="H3588"\w* \w number|strong="H4557"\w*. +\q2 \w His|strong="H5921"\w* \w teeth|strong="H8127"\w* \w are|strong="H1471"\w* \w the|strong="H5921"\w* \w teeth|strong="H8127"\w* \w of|strong="H4557"\w* \w a|strong="H3068"\w* \w lion|strong="H3833"\w*, +\q2 \w and|strong="H1471"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w the|strong="H5921"\w* \w fangs|strong="H4973"\w* \w of|strong="H4557"\w* \w a|strong="H3068"\w* \w lioness|strong="H3833"\w*. +\q1 +\v 7 \w He|strong="H7760"\w* \w has|strong="H1612"\w* \w laid|strong="H7760"\w* \w my|strong="H7760"\w* \w vine|strong="H1612"\w* \w waste|strong="H8047"\w*, +\q2 \w and|strong="H1612"\w* \w stripped|strong="H2834"\w* \w my|strong="H7760"\w* \w fig|strong="H8384"\w* \w tree|strong="H8384"\w*. +\q2 \w He|strong="H7760"\w* \w has|strong="H1612"\w* \w stripped|strong="H2834"\w* \w its|strong="H7760"\w* bark, \w and|strong="H1612"\w* \w thrown|strong="H7993"\w* \w it|strong="H7760"\w* \w away|strong="H7993"\w*. +\q2 \w Its|strong="H7760"\w* \w branches|strong="H8299"\w* \w are|strong="H8299"\w* \w made|strong="H7760"\w* \w white|strong="H3835"\w*. +\q1 +\v 8 \w Mourn|strong="H5921"\w* \w like|strong="H5921"\w* \w a|strong="H3068"\w* \w virgin|strong="H1330"\w* \w dressed|strong="H2296"\w* \w in|strong="H5921"\w* \w sackcloth|strong="H8242"\w* +\q2 \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w husband|strong="H1167"\w* \w of|strong="H5921"\w* \w her|strong="H5921"\w* \w youth|strong="H5271"\w*! +\q1 +\v 9 \w The|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w drink|strong="H5262"\w* \w offering|strong="H4503"\w* \w are|strong="H3068"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\q2 \w The|strong="H3068"\w* \w priests|strong="H3548"\w*, \w Yahweh|strong="H3068"\w*’s \w ministers|strong="H8334"\w*, mourn. +\q1 +\v 10 \w The|strong="H3588"\w* \w field|strong="H7704"\w* \w is|strong="H7704"\w* laid \w waste|strong="H7703"\w*. +\q2 \w The|strong="H3588"\w* \w land|strong="H7704"\w* mourns, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w grain|strong="H1715"\w* \w is|strong="H7704"\w* \w destroyed|strong="H7703"\w*, +\q2 \w The|strong="H3588"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w* \w has|strong="H3588"\w* \w dried|strong="H3001"\w* \w up|strong="H3001"\w*, +\q2 \w and|strong="H7704"\w* \w the|strong="H3588"\w* \w oil|strong="H3323"\w* languishes. +\q1 +\v 11 \w Be|strong="H3588"\w* confounded, \w you|strong="H3588"\w* farmers! +\q2 \w Wail|strong="H3213"\w*, \w you|strong="H3588"\w* vineyard keepers, +\q2 \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w wheat|strong="H2406"\w* \w and|strong="H7704"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w barley|strong="H8184"\w*; +\q2 \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w harvest|strong="H7105"\w* \w of|strong="H7704"\w* \w the|strong="H5921"\w* \w field|strong="H7704"\w* \w has|strong="H3588"\w* perished. +\q1 +\v 12 \w The|strong="H3605"\w* \w vine|strong="H1612"\w* \w has|strong="H3588"\w* \w dried|strong="H3001"\w* \w up|strong="H3001"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w fig|strong="H8384"\w* \w tree|strong="H6086"\w* \w withered|strong="H3001"\w*— +\q2 \w the|strong="H3605"\w* \w pomegranate|strong="H7416"\w* \w tree|strong="H6086"\w*, \w the|strong="H3605"\w* \w palm|strong="H8558"\w* \w tree|strong="H6086"\w* \w also|strong="H1571"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w apple|strong="H8598"\w* \w tree|strong="H6086"\w*, +\q2 \w even|strong="H1571"\w* \w all|strong="H3605"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w trees|strong="H6086"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w* \w are|strong="H1121"\w* \w withered|strong="H3001"\w*; +\q2 \w for|strong="H3588"\w* \w joy|strong="H8342"\w* \w has|strong="H3588"\w* \w withered|strong="H3001"\w* \w away|strong="H4480"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w men|strong="H1121"\w*. +\q1 +\v 13 \w Put|strong="H2296"\w* \w on|strong="H2296"\w* \w sackcloth|strong="H8242"\w* \w and|strong="H1004"\w* \w mourn|strong="H5594"\w*, \w you|strong="H3588"\w* \w priests|strong="H3548"\w*! +\q2 \w Wail|strong="H3213"\w*, \w you|strong="H3588"\w* \w ministers|strong="H8334"\w* \w of|strong="H1004"\w* \w the|strong="H3588"\w* \w altar|strong="H4196"\w*. +\q1 \w Come|strong="H2296"\w*, \w lie|strong="H3885"\w* \w all|strong="H3885"\w* \w night|strong="H3885"\w* \w in|strong="H1004"\w* \w sackcloth|strong="H8242"\w*, \w you|strong="H3588"\w* \w ministers|strong="H8334"\w* \w of|strong="H1004"\w* \w my|strong="H3588"\w* God,\f + \fr 1:13 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* +\q2 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w and|strong="H1004"\w* \w the|strong="H3588"\w* \w drink|strong="H5262"\w* \w offering|strong="H4503"\w* \w are|strong="H1004"\w* \w withheld|strong="H4513"\w* \w from|strong="H4513"\w* \w your|strong="H3588"\w* God’s \w house|strong="H1004"\w*. +\q1 +\v 14 \w Sanctify|strong="H6942"\w* \w a|strong="H3068"\w* \w fast|strong="H6685"\w*. +\q2 \w Call|strong="H7121"\w* \w a|strong="H3068"\w* \w solemn|strong="H6116"\w* \w assembly|strong="H6116"\w*. +\q2 Gather \w the|strong="H3605"\w* \w elders|strong="H2205"\w* \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* land \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*, \w your|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* \w cry|strong="H7121"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 15 Alas \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w day|strong="H3117"\w*! +\q2 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w at|strong="H3068"\w* \w hand|strong="H7138"\w*, +\q2 \w and|strong="H3068"\w* \w it|strong="H3588"\w* \w will|strong="H3068"\w* come \w as|strong="H3117"\w* \w destruction|strong="H7701"\w* \w from|strong="H3117"\w* \w the|strong="H3588"\w* \w Almighty|strong="H7706"\w*. +\q1 +\v 16 Isn’t \w the|strong="H3772"\w* \w food|strong="H1004"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w before|strong="H5048"\w* \w our|strong="H5048"\w* \w eyes|strong="H5869"\w*, +\q2 \w joy|strong="H8057"\w* \w and|strong="H1004"\w* \w gladness|strong="H8057"\w* \w from|strong="H3772"\w* \w the|strong="H3772"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w our|strong="H5048"\w* \w God|strong="H3808"\w*? +\q1 +\v 17 \w The|strong="H3588"\w* \w seeds|strong="H6507"\w* rot \w under|strong="H8478"\w* \w their|strong="H3588"\w* \w clods|strong="H4053"\w*. +\q2 \w The|strong="H3588"\w* granaries \w are|strong="H8074"\w* \w laid|strong="H8074"\w* \w desolate|strong="H8074"\w*. +\q2 \w The|strong="H3588"\w* \w barns|strong="H4460"\w* \w are|strong="H8074"\w* \w broken|strong="H2040"\w* \w down|strong="H2040"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w grain|strong="H1715"\w* \w has|strong="H3588"\w* \w withered|strong="H3001"\w*. +\q1 +\v 18 \w How|strong="H4100"\w* \w the|strong="H3588"\w* animals groan! +\q2 \w The|strong="H3588"\w* \w herds|strong="H1241"\w* \w of|strong="H6629"\w* livestock \w are|strong="H1992"\w* perplexed, \w because|strong="H3588"\w* \w they|strong="H1992"\w* \w have|strong="H1571"\w* no \w pasture|strong="H4829"\w*. +\q2 \w Yes|strong="H3588"\w*, \w the|strong="H3588"\w* \w flocks|strong="H6629"\w* \w of|strong="H6629"\w* \w sheep|strong="H6629"\w* \w are|strong="H1992"\w* \w made|strong="H1571"\w* desolate. +\q1 +\v 19 \w Yahweh|strong="H3068"\w*, \w I|strong="H3588"\w* \w cry|strong="H7121"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w*, +\q2 \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w fire|strong="H3857"\w* \w has|strong="H3068"\w* devoured \w the|strong="H3605"\w* \w pastures|strong="H4999"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w wilderness|strong="H4057"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w flame|strong="H3852"\w* \w has|strong="H3068"\w* \w burned|strong="H3857"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w trees|strong="H6086"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w field|strong="H7704"\w*. +\q1 +\v 20 \w Yes|strong="H3588"\w*, \w the|strong="H3588"\w* animals \w of|strong="H4325"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w* \w pant|strong="H6165"\w* \w to|strong="H4325"\w* \w you|strong="H3588"\w*, +\q2 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w water|strong="H4325"\w* brooks \w have|strong="H1571"\w* \w dried|strong="H3001"\w* \w up|strong="H3001"\w*, +\q2 \w and|strong="H7704"\w* \w the|strong="H3588"\w* fire \w has|strong="H3588"\w* devoured \w the|strong="H3588"\w* \w pastures|strong="H4999"\w* \w of|strong="H4325"\w* \w the|strong="H3588"\w* \w wilderness|strong="H4057"\w*. +\b +\c 2 +\q1 +\v 1 \w Blow|strong="H8628"\w* \w the|strong="H3605"\w* \w trumpet|strong="H7782"\w* \w in|strong="H3427"\w* \w Zion|strong="H6726"\w*, +\q2 \w and|strong="H3068"\w* \w sound|strong="H7321"\w* \w an|strong="H8628"\w* \w alarm|strong="H7321"\w* \w in|strong="H3427"\w* \w my|strong="H3605"\w* \w holy|strong="H6944"\w* \w mountain|strong="H2022"\w*! +\q1 Let \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* land \w tremble|strong="H7264"\w*, +\q2 \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w comes|strong="H3117"\w*, +\q2 \w for|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H3068"\w* \w close|strong="H7138"\w* \w at|strong="H3427"\w* \w hand|strong="H7138"\w*: +\q1 +\v 2 \w A|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w darkness|strong="H2822"\w* \w and|strong="H3117"\w* gloominess, +\q2 \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w clouds|strong="H6051"\w* \w and|strong="H3117"\w* \w thick|strong="H6205"\w* \w darkness|strong="H2822"\w*. +\q1 \w As|strong="H5704"\w* \w the|strong="H5921"\w* \w dawn|strong="H7837"\w* \w spreading|strong="H6566"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w*, +\q2 \w a|strong="H3068"\w* \w great|strong="H7227"\w* \w and|strong="H3117"\w* \w strong|strong="H6099"\w* \w people|strong="H5971"\w*; +\q2 \w there|strong="H1961"\w* \w has|strong="H1961"\w* \w never|strong="H3808"\w* \w been|strong="H1961"\w* \w the|strong="H5921"\w* \w like|strong="H3644"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H1961"\w* \w there|strong="H1961"\w* \w be|strong="H1961"\w* \w any|strong="H4480"\w* \w more|strong="H3254"\w* \w after|strong="H4480"\w* \w them|strong="H5921"\w*, +\q2 \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H5921"\w* \w years|strong="H8141"\w* \w of|strong="H3117"\w* \w many|strong="H7227"\w* \w generations|strong="H1755"\w*. +\q1 +\v 3 \w A|strong="H3068"\w* \w fire|strong="H3857"\w* devours \w before|strong="H6440"\w* \w them|strong="H6440"\w*, +\q2 \w and|strong="H6440"\w* behind \w them|strong="H6440"\w*, \w a|strong="H3068"\w* \w flame|strong="H3852"\w* \w burns|strong="H3857"\w*. +\q1 \w The|strong="H6440"\w* \w land|strong="H6440"\w* \w is|strong="H1571"\w* \w as|strong="H1961"\w* \w the|strong="H6440"\w* \w garden|strong="H1588"\w* \w of|strong="H6440"\w* \w Eden|strong="H5731"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*, +\q2 \w and|strong="H6440"\w* behind \w them|strong="H6440"\w*, \w a|strong="H3068"\w* \w desolate|strong="H8077"\w* \w wilderness|strong="H4057"\w*. +\q1 \w Yes|strong="H1571"\w*, \w and|strong="H6440"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w has|strong="H1961"\w* \w escaped|strong="H6413"\w* \w them|strong="H6440"\w*. +\q1 +\v 4 \w Their|strong="H3651"\w* \w appearance|strong="H4758"\w* \w is|strong="H3651"\w* \w as|strong="H3651"\w* \w the|strong="H3651"\w* \w appearance|strong="H4758"\w* \w of|strong="H4758"\w* \w horses|strong="H5483"\w*, +\q2 \w and|strong="H5483"\w* \w they|strong="H3651"\w* \w run|strong="H7323"\w* \w as|strong="H3651"\w* \w horsemen|strong="H6571"\w*. +\q1 +\v 5 \w Like|strong="H7540"\w* \w the|strong="H5921"\w* \w noise|strong="H6963"\w* \w of|strong="H2022"\w* \w chariots|strong="H4818"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w tops|strong="H7218"\w* \w of|strong="H2022"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w*, \w they|strong="H5921"\w* \w leap|strong="H7540"\w*, +\q2 \w like|strong="H7540"\w* \w the|strong="H5921"\w* \w noise|strong="H6963"\w* \w of|strong="H2022"\w* \w a|strong="H3068"\w* \w flame|strong="H3851"\w* \w of|strong="H2022"\w* fire \w that|strong="H5971"\w* devours \w the|strong="H5921"\w* \w stubble|strong="H7179"\w*, +\q2 \w like|strong="H7540"\w* \w a|strong="H3068"\w* \w strong|strong="H6099"\w* \w people|strong="H5971"\w* \w set|strong="H6186"\w* \w in|strong="H5921"\w* \w battle|strong="H4421"\w* \w array|strong="H6186"\w*. +\q1 +\v 6 \w At|strong="H6908"\w* \w their|strong="H3605"\w* \w presence|strong="H6440"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w are|strong="H5971"\w* \w in|strong="H6440"\w* \w anguish|strong="H2342"\w*. +\q2 \w All|strong="H3605"\w* \w faces|strong="H6440"\w* \w have|strong="H5971"\w* \w grown|strong="H6908"\w* \w pale|strong="H6289"\w*. +\q1 +\v 7 \w They|strong="H3808"\w* \w run|strong="H7323"\w* \w like|strong="H1870"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w*. +\q2 \w They|strong="H3808"\w* \w climb|strong="H5927"\w* \w the|strong="H5927"\w* \w wall|strong="H2346"\w* \w like|strong="H1870"\w* \w warriors|strong="H1368"\w*. +\q2 \w They|strong="H3808"\w* each \w march|strong="H3212"\w* \w in|strong="H3212"\w* \w his|strong="H3808"\w* \w line|strong="H1870"\w*, \w and|strong="H3212"\w* \w they|strong="H3808"\w* don’t swerve \w off|strong="H5927"\w* \w course|strong="H1870"\w*. +\q1 +\v 8 \w One|strong="H3808"\w* doesn’t \w jostle|strong="H1766"\w* \w another|strong="H3808"\w*. +\q2 \w They|strong="H3808"\w* each \w march|strong="H3212"\w* \w in|strong="H3212"\w* \w their|strong="H5307"\w* own \w path|strong="H4546"\w*. +\q2 \w They|strong="H3808"\w* \w burst|strong="H5307"\w* \w through|strong="H1157"\w* \w the|strong="H3808"\w* \w defenses|strong="H7973"\w* +\q2 \w and|strong="H3212"\w* don’t \w break|strong="H1214"\w* \w ranks|strong="H1214"\w*. +\q1 +\v 9 \w They|strong="H7323"\w* \w rush|strong="H8264"\w* \w on|strong="H5927"\w* \w the|strong="H5927"\w* \w city|strong="H5892"\w*. +\q2 \w They|strong="H7323"\w* \w run|strong="H7323"\w* \w on|strong="H5927"\w* \w the|strong="H5927"\w* \w wall|strong="H2346"\w*. +\q2 \w They|strong="H7323"\w* \w climb|strong="H5927"\w* \w up|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H5927"\w* \w houses|strong="H1004"\w*. +\q2 \w They|strong="H7323"\w* \w enter|strong="H5927"\w* \w in|strong="H1004"\w* \w at|strong="H1004"\w* \w the|strong="H5927"\w* \w windows|strong="H2474"\w* \w like|strong="H1004"\w* \w thieves|strong="H1590"\w*. +\q1 +\v 10 \w The|strong="H6440"\w* \w earth|strong="H8121"\w* \w quakes|strong="H7264"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*. +\q2 \w The|strong="H6440"\w* \w heavens|strong="H8064"\w* \w tremble|strong="H7264"\w*. +\q2 \w The|strong="H6440"\w* \w sun|strong="H8121"\w* \w and|strong="H8064"\w* \w the|strong="H6440"\w* \w moon|strong="H3394"\w* \w are|strong="H8064"\w* \w darkened|strong="H6937"\w*, +\q2 \w and|strong="H8064"\w* \w the|strong="H6440"\w* \w stars|strong="H3556"\w* withdraw \w their|strong="H6440"\w* \w shining|strong="H5051"\w*. +\q1 +\v 11 \w Yahweh|strong="H3068"\w* \w thunders|strong="H6963"\w* \w his|strong="H5414"\w* \w voice|strong="H6963"\w* \w before|strong="H6440"\w* \w his|strong="H5414"\w* \w army|strong="H4264"\w*, +\q2 \w for|strong="H3588"\w* \w his|strong="H5414"\w* \w forces|strong="H4264"\w* \w are|strong="H3117"\w* \w very|strong="H3966"\w* \w great|strong="H1419"\w*; +\q2 \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w is|strong="H3068"\w* \w strong|strong="H6099"\w* \w who|strong="H4310"\w* \w obeys|strong="H6963"\w* \w his|strong="H5414"\w* \w command|strong="H1697"\w*; +\q2 \w for|strong="H3588"\w* \w the|strong="H6440"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w great|strong="H1419"\w* \w and|strong="H3068"\w* \w very|strong="H3966"\w* \w awesome|strong="H3372"\w*, +\q2 \w and|strong="H3068"\w* \w who|strong="H4310"\w* \w can|strong="H4310"\w* \w endure|strong="H3557"\w* \w it|strong="H5414"\w*? +\q1 +\v 12 “\w Yet|strong="H1571"\w* \w even|strong="H1571"\w* \w now|strong="H6258"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w turn|strong="H7725"\w* \w to|strong="H5704"\w* \w me|strong="H7725"\w* \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w*, +\q2 \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w fasting|strong="H6685"\w*, \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w weeping|strong="H1065"\w*, \w and|strong="H3068"\w* \w with|strong="H3068"\w* \w mourning|strong="H4553"\w*.” +\q1 +\v 13 \w Tear|strong="H7167"\w* \w your|strong="H3068"\w* \w heart|strong="H3824"\w* \w and|strong="H3068"\w* \w not|strong="H3588"\w* \w your|strong="H3068"\w* garments, +\q2 \w and|strong="H3068"\w* \w turn|strong="H7725"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*, \w your|strong="H3068"\w* \w God|strong="H3068"\w*; +\q2 \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H3068"\w* \w gracious|strong="H2587"\w* \w and|strong="H3068"\w* \w merciful|strong="H7349"\w*, +\q2 slow \w to|strong="H7725"\w* \w anger|strong="H3824"\w*, \w and|strong="H3068"\w* \w abundant|strong="H7227"\w* \w in|strong="H5921"\w* loving \w kindness|strong="H2617"\w*, +\q2 \w and|strong="H3068"\w* \w relents|strong="H5162"\w* \w from|strong="H7725"\w* sending \w calamity|strong="H7451"\w*. +\q1 +\v 14 \w Who|strong="H4310"\w* \w knows|strong="H3045"\w*? \w He|strong="H3068"\w* \w may|strong="H3068"\w* \w turn|strong="H7725"\w* \w and|strong="H3068"\w* \w relent|strong="H5162"\w*, +\q2 \w and|strong="H3068"\w* \w leave|strong="H7604"\w* \w a|strong="H3068"\w* \w blessing|strong="H1293"\w* \w behind|strong="H7604"\w* \w him|strong="H7725"\w*, +\q2 \w even|strong="H3068"\w* \w a|strong="H3068"\w* \w meal|strong="H4503"\w* \w offering|strong="H4503"\w* \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w drink|strong="H5262"\w* \w offering|strong="H4503"\w* \w to|strong="H7725"\w* \w Yahweh|strong="H3068"\w*, \w your|strong="H3068"\w* \w God|strong="H3068"\w*. +\q1 +\v 15 \w Blow|strong="H8628"\w* \w the|strong="H7121"\w* \w trumpet|strong="H7782"\w* \w in|strong="H7121"\w* \w Zion|strong="H6726"\w*! +\q2 \w Sanctify|strong="H6942"\w* \w a|strong="H3068"\w* \w fast|strong="H6685"\w*. +\q2 \w Call|strong="H7121"\w* \w a|strong="H3068"\w* \w solemn|strong="H6116"\w* \w assembly|strong="H6116"\w*. +\q1 +\v 16 \w Gather|strong="H6908"\w* \w the|strong="H3318"\w* \w people|strong="H5971"\w*. +\q2 \w Sanctify|strong="H6942"\w* \w the|strong="H3318"\w* \w assembly|strong="H6951"\w*. +\q2 \w Assemble|strong="H6908"\w* \w the|strong="H3318"\w* \w elders|strong="H2205"\w*. +\q2 \w Gather|strong="H6908"\w* \w the|strong="H3318"\w* \w children|strong="H5768"\w*, \w and|strong="H5971"\w* \w those|strong="H3318"\w* \w who|strong="H5971"\w* \w nurse|strong="H3243"\w* \w from|strong="H3318"\w* \w breasts|strong="H7699"\w*. +\q1 Let \w the|strong="H3318"\w* \w bridegroom|strong="H2860"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H2205"\w* \w his|strong="H6942"\w* \w room|strong="H2315"\w*, +\q2 \w and|strong="H5971"\w* \w the|strong="H3318"\w* \w bride|strong="H3618"\w* \w out|strong="H3318"\w* \w of|strong="H2205"\w* \w her|strong="H3318"\w* \w chamber|strong="H2315"\w*. +\q1 +\v 17 \w Let|strong="H5414"\w* \w the|strong="H5921"\w* \w priests|strong="H3548"\w*, \w the|strong="H5921"\w* \w ministers|strong="H8334"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w weep|strong="H1058"\w* \w between|strong="H5921"\w* \w the|strong="H5921"\w* porch \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*, +\q2 \w and|strong="H3068"\w* \w let|strong="H5414"\w* \w them|strong="H5414"\w* say, “\w Spare|strong="H2347"\w* \w your|strong="H3068"\w* \w people|strong="H5971"\w*, \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* don’t \w give|strong="H5414"\w* \w your|strong="H3068"\w* \w heritage|strong="H5159"\w* \w to|strong="H3068"\w* \w reproach|strong="H2781"\w*, +\q2 \w that|strong="H5971"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w* \w should|strong="H3068"\w* \w rule|strong="H4910"\w* \w over|strong="H5921"\w* \w them|strong="H5414"\w*. +\q1 \w Why|strong="H4100"\w* \w should|strong="H3068"\w* \w they|strong="H3068"\w* say \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w peoples|strong="H5971"\w*, +\q2 ‘\w Where|strong="H4100"\w* \w is|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*?’” +\q1 +\v 18 \w Then|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w jealous|strong="H7065"\w* \w for|strong="H5921"\w* \w his|strong="H3068"\w* land, +\q2 \w and|strong="H3068"\w* \w had|strong="H3068"\w* \w pity|strong="H2550"\w* \w on|strong="H5921"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*. +\q1 +\v 19 \w Yahweh|strong="H3068"\w* \w answered|strong="H6030"\w* \w his|strong="H5414"\w* \w people|strong="H5971"\w*, +\q2 “\w Behold|strong="H2005"\w*,\f + \fr 2:19 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w you|strong="H5414"\w* \w grain|strong="H1715"\w*, \w new|strong="H8492"\w* \w wine|strong="H8492"\w*, \w and|strong="H3068"\w* \w oil|strong="H3323"\w*, +\q2 \w and|strong="H3068"\w* \w you|strong="H5414"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w satisfied|strong="H7646"\w* \w with|strong="H7646"\w* \w them|strong="H5414"\w*; +\q2 \w and|strong="H3068"\w* \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w make|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w reproach|strong="H2781"\w* \w among|strong="H2781"\w* \w the|strong="H5414"\w* \w nations|strong="H1471"\w*. +\q1 +\v 20 \w But|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3220"\w* \w remove|strong="H7368"\w* \w the|strong="H6440"\w* \w northern|strong="H6830"\w* \w army|strong="H5927"\w* \w far|strong="H7368"\w* \w away|strong="H5080"\w* \w from|strong="H6440"\w* \w you|strong="H3588"\w*, +\q2 \w and|strong="H6440"\w* \w will|strong="H3220"\w* \w drive|strong="H5080"\w* \w it|strong="H5921"\w* \w into|strong="H5927"\w* \w a|strong="H3068"\w* \w barren|strong="H6723"\w* \w and|strong="H6440"\w* \w desolate|strong="H8077"\w* \w land|strong="H6440"\w*, +\q2 \w its|strong="H5921"\w* \w front|strong="H6440"\w* \w into|strong="H5927"\w* \w the|strong="H6440"\w* \w eastern|strong="H6931"\w* \w sea|strong="H3220"\w*, +\q2 \w and|strong="H6440"\w* \w its|strong="H5921"\w* \w back|strong="H5927"\w* \w into|strong="H5927"\w* \w the|strong="H6440"\w* \w western|strong="H3220"\w* \w sea|strong="H3220"\w*; +\q2 \w and|strong="H6440"\w* \w its|strong="H5921"\w* stench \w will|strong="H3220"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w*, +\q2 \w and|strong="H6440"\w* \w its|strong="H5921"\w* bad \w smell|strong="H6709"\w* \w will|strong="H3220"\w* \w rise|strong="H5927"\w*.” +\q1 \w Surely|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w done|strong="H6213"\w* \w great|strong="H1431"\w* \w things|strong="H1431"\w*. +\q1 +\v 21 Land, don’t \w be|strong="H3068"\w* \w afraid|strong="H3372"\w*. +\q2 \w Be|strong="H3068"\w* \w glad|strong="H8055"\w* \w and|strong="H3068"\w* \w rejoice|strong="H8055"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w done|strong="H6213"\w* \w great|strong="H1431"\w* \w things|strong="H1431"\w*. +\q1 +\v 22 Don’t \w be|strong="H5414"\w* \w afraid|strong="H3372"\w*, \w you|strong="H3588"\w* animals \w of|strong="H7704"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w*; +\q2 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w pastures|strong="H4999"\w* \w of|strong="H7704"\w* \w the|strong="H3588"\w* \w wilderness|strong="H4057"\w* \w spring|strong="H1876"\w* \w up|strong="H5375"\w*, +\q2 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w tree|strong="H6086"\w* \w bears|strong="H5375"\w* \w its|strong="H5414"\w* \w fruit|strong="H6529"\w*. +\q2 \w The|strong="H3588"\w* \w fig|strong="H8384"\w* \w tree|strong="H6086"\w* \w and|strong="H6086"\w* \w the|strong="H3588"\w* \w vine|strong="H1612"\w* \w yield|strong="H5414"\w* \w their|strong="H5375"\w* \w strength|strong="H2428"\w*. +\b +\q1 +\v 23 “\w Be|strong="H3068"\w* \w glad|strong="H8055"\w* \w then|strong="H5414"\w*, \w you|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Zion|strong="H6726"\w*, +\q2 \w and|strong="H1121"\w* \w rejoice|strong="H8055"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w your|strong="H3068"\w* \w God|strong="H3068"\w*; +\q2 \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w gives|strong="H5414"\w* \w you|strong="H3588"\w* \w the|strong="H3588"\w* \w early|strong="H4175"\w* \w rain|strong="H1653"\w* \w in|strong="H3068"\w* \w just|strong="H6666"\w* measure, +\q2 \w and|strong="H1121"\w* \w he|strong="H3588"\w* \w causes|strong="H5414"\w* \w the|strong="H3588"\w* \w rain|strong="H1653"\w* \w to|strong="H3381"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*, +\q2 \w the|strong="H3588"\w* \w early|strong="H4175"\w* \w rain|strong="H1653"\w* \w and|strong="H1121"\w* \w the|strong="H3588"\w* \w latter|strong="H4456"\w* \w rain|strong="H1653"\w*, \w as|strong="H3068"\w* \w before|strong="H7223"\w*. +\q1 +\v 24 \w The|strong="H4390"\w* \w threshing|strong="H1637"\w* \w floors|strong="H1637"\w* \w will|strong="H3342"\w* be \w full|strong="H4390"\w* \w of|strong="H4390"\w* \w wheat|strong="H1250"\w*, +\q2 \w and|strong="H8492"\w* \w the|strong="H4390"\w* \w vats|strong="H3342"\w* \w will|strong="H3342"\w* \w overflow|strong="H7783"\w* \w with|strong="H4390"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w* \w and|strong="H8492"\w* \w oil|strong="H3323"\w*. +\q1 +\v 25 \w I|strong="H8141"\w* \w will|strong="H2428"\w* \w restore|strong="H7999"\w* \w to|strong="H7971"\w* \w you|strong="H7971"\w* \w the|strong="H7971"\w* \w years|strong="H8141"\w* \w that|strong="H8141"\w* \w the|strong="H7971"\w* swarming \w locust|strong="H3218"\w* \w has|strong="H3218"\w* eaten, +\q2 \w the|strong="H7971"\w* \w great|strong="H1419"\w* \w locust|strong="H3218"\w*, \w the|strong="H7971"\w* \w grasshopper|strong="H2625"\w*, \w and|strong="H7971"\w* \w the|strong="H7971"\w* \w caterpillar|strong="H2625"\w*, +\q2 \w my|strong="H7971"\w* \w great|strong="H1419"\w* \w army|strong="H2428"\w*, \w which|strong="H2428"\w* \w I|strong="H8141"\w* \w sent|strong="H7971"\w* among \w you|strong="H7971"\w*. +\q1 +\v 26 \w You|strong="H6213"\w* \w will|strong="H3068"\w* \w have|strong="H3068"\w* \w plenty|strong="H7646"\w* \w to|strong="H3068"\w* eat \w and|strong="H3068"\w* \w be|strong="H3808"\w* \w satisfied|strong="H7646"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w praise|strong="H1984"\w* \w the|strong="H6213"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w your|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 \w who|strong="H5971"\w* \w has|strong="H3068"\w* \w dealt|strong="H6213"\w* \w wondrously|strong="H6381"\w* \w with|strong="H5973"\w* \w you|strong="H6213"\w*; +\q2 \w and|strong="H3068"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w will|strong="H3068"\w* \w never|strong="H3808"\w* again \w be|strong="H3808"\w* disappointed. +\q1 +\v 27 \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w among|strong="H7130"\w* \w Israel|strong="H3478"\w*, +\q2 \w and|strong="H3478"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3478"\w* \w there|strong="H3045"\w* \w is|strong="H3068"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w else|strong="H5750"\w*; +\q2 \w and|strong="H3478"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w will|strong="H3068"\w* \w never|strong="H3808"\w* \w again|strong="H5750"\w* \w be|strong="H3808"\w* disappointed. +\b +\q1 +\v 28 “It will happen afterward, that I will pour out my Spirit on all flesh; +\q2 and your sons and your daughters will prophesy. +\q2 Your old men will dream dreams. +\q2 Your young men will see visions. +\q1 +\v 29 And also on the servants and on the handmaids in those days, +\q2 I will pour out my Spirit. +\q1 +\v 30 I will show wonders in the heavens and in the earth: +\q2 blood, fire, and pillars of smoke. +\q1 +\v 31 The sun will be turned into darkness, +\q2 and the moon into blood, +\q2 before the great and terrible day of \w Yahweh|strong="H3068"\w* comes. +\q1 +\v 32 It will happen that whoever will call on \w Yahweh|strong="H3068"\w*’s name shall be saved; +\q2 for in Mount Zion and in Jerusalem there will be those who escape, +\q2 as \w Yahweh|strong="H3068"\w* has said, +\q2 and among the remnant, those whom \w Yahweh|strong="H3068"\w* calls. +\b +\c 3 +\q1 +\v 1 “\w For|strong="H5921"\w*, \w behold|strong="H7200"\w*, \w in|strong="H5921"\w* \w those|strong="H3605"\w* days, +\q2 \w and|strong="H1121"\w* \w in|strong="H5921"\w* \w that|strong="H7200"\w* \w time|strong="H1961"\w*, +\q2 \w when|strong="H1961"\w* \w I|strong="H5921"\w* \w restore|strong="H2492"\w* \w the|strong="H3605"\w* fortunes \w of|strong="H1121"\w* Judah \w and|strong="H1121"\w* Jerusalem, +\q1 +\v 2 \w I|strong="H3117"\w* \w will|strong="H5650"\w* gather \w all|strong="H5921"\w* nations, +\q2 \w and|strong="H3117"\w* \w will|strong="H5650"\w* bring \w them|strong="H1992"\w* \w down|strong="H5921"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* valley \w of|strong="H3117"\w* Jehoshaphat; +\q2 \w and|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H5650"\w* execute judgment \w on|strong="H5921"\w* \w them|strong="H1992"\w* \w there|strong="H1992"\w* \w for|strong="H5921"\w* \w my|strong="H5921"\w* \w people|strong="H1571"\w*, +\q2 \w and|strong="H3117"\w* \w for|strong="H5921"\w* \w my|strong="H5921"\w* heritage, Israel, \w whom|strong="H1992"\w* \w they|strong="H1992"\w* \w have|strong="H1571"\w* scattered \w among|strong="H5921"\w* \w the|strong="H5921"\w* nations. +\q2 \w They|strong="H1992"\w* \w have|strong="H1571"\w* divided \w my|strong="H5921"\w* land, +\q2 +\v 3 \w and|strong="H8064"\w* \w have|strong="H5414"\w* \w cast|strong="H5414"\w* lots \w for|strong="H8064"\w* \w my|strong="H5414"\w* \w people|strong="H1818"\w*, +\q2 \w and|strong="H8064"\w* \w have|strong="H5414"\w* \w given|strong="H5414"\w* \w a|strong="H3068"\w* boy \w for|strong="H8064"\w* \w a|strong="H3068"\w* prostitute, +\q2 \w and|strong="H8064"\w* sold \w a|strong="H3068"\w* girl \w for|strong="H8064"\w* wine, \w that|strong="H5414"\w* \w they|strong="H6227"\w* \w may|strong="H5414"\w* drink. +\b +\q1 +\v 4 “Yes, \w and|strong="H3068"\w* \w what|strong="H3372"\w* \w are|strong="H3117"\w* \w you|strong="H6440"\w* \w to|strong="H3068"\w* \w me|strong="H6440"\w*, Tyre \w and|strong="H3068"\w* Sidon, +\q2 \w and|strong="H3068"\w* \w all|strong="H1419"\w* \w the|strong="H6440"\w* regions \w of|strong="H3068"\w* Philistia? +\q1 \w Will|strong="H3068"\w* \w you|strong="H6440"\w* repay \w me|strong="H6440"\w*? +\q2 \w And|strong="H3068"\w* if \w you|strong="H6440"\w* repay \w me|strong="H6440"\w*, +\q2 \w I|strong="H3117"\w* \w will|strong="H3068"\w* swiftly \w and|strong="H3068"\w* speedily return \w your|strong="H3068"\w* repayment \w on|strong="H3117"\w* \w your|strong="H3068"\w* \w own|strong="H6440"\w* \w head|strong="H6440"\w*. +\q1 +\v 5 \w Because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w taken|strong="H1961"\w* \w my|strong="H3605"\w* silver \w and|strong="H3068"\w* \w my|strong="H3605"\w* gold, +\q2 \w and|strong="H3068"\w* \w have|strong="H1961"\w* \w carried|strong="H3068"\w* \w my|strong="H3605"\w* finest treasures \w into|strong="H1961"\w* \w your|strong="H3068"\w* temples, +\q2 +\v 6 and have sold the children of Judah and the children of Jerusalem to the sons of the Greeks, +\q2 that you may remove them far from their border. +\q1 +\v 7 Behold, I will stir them up out of the place where you have sold them, +\q2 and will return your repayment on your own head; +\q1 +\v 8 and I will sell your sons and your daughters into the hands of the children of Judah, +\q2 and they will sell them to the men of Sheba, +\q2 to \w a|strong="H3068"\w* faraway nation, +\q2 for \w Yahweh|strong="H3068"\w* has spoken it.” +\b +\q1 +\v 9 Proclaim this among the nations: +\q2 “Prepare for war! +\q2 Stir up the mighty men. +\q1 Let all the warriors draw near. +\q2 Let them come up. +\v 10 Beat your plowshares into swords, +\q2 and your pruning hooks into spears. +\q2 Let the weak say, ‘I am strong.’ +\q1 +\v 11 Hurry and come, all you surrounding nations, +\q2 and gather yourselves together.” +\q1 Cause your mighty ones to come down there, \w Yahweh|strong="H3068"\w*. +\q1 +\v 12 “Let the nations arouse themselves, +\q2 and come up to the valley of Jehoshaphat; +\q2 for there I will sit to judge all the surrounding nations. +\q1 +\v 13 Put in the sickle; +\q2 for the harvest is ripe. +\q2 Come, tread, for the wine press is full, +\q2 the vats overflow, for their wickedness is great.” +\q1 +\v 14 Multitudes, multitudes in the valley of decision! +\q2 For the day of \w Yahweh|strong="H3068"\w* is near in the valley of decision. +\q1 +\v 15 The sun and the moon are darkened, +\q2 and the stars withdraw their shining. +\q1 +\v 16 \w Yahweh|strong="H3068"\w* will roar from Zion, +\q2 and thunder from Jerusalem; +\q2 and the heavens and the earth will shake; +\q2 but \w Yahweh|strong="H3068"\w* will be \w a|strong="H3068"\w* refuge to his people, +\q2 and \w a|strong="H3068"\w* stronghold to the children of Israel. +\q1 +\v 17 “So you will know that I am \w Yahweh|strong="H3068"\w*, your God, +\q2 dwelling in Zion, my holy mountain. +\q1 Then Jerusalem will be holy, +\q2 and no strangers will pass through her any more. +\q1 +\v 18 It will happen in that day, +\q2 that the mountains will drop down sweet wine, +\q2 the hills will flow with milk, +\q2 all the brooks of Judah will flow with waters; +\q2 and \w a|strong="H3068"\w* fountain will flow out from \w Yahweh|strong="H3068"\w*’s house, +\q2 and will water the valley of Shittim. +\q1 +\v 19 Egypt will be \w a|strong="H3068"\w* desolation +\q2 and Edom will be \w a|strong="H3068"\w* desolate wilderness, +\q2 for the violence done to the children of Judah, +\q2 because they have shed innocent blood in their land. +\q1 +\v 20 But Judah will be inhabited forever, +\q2 and Jerusalem from generation to generation. +\q1 +\v 21 I will cleanse their blood +\q2 that I have not cleansed, +\q2 for \w Yahweh|strong="H3068"\w* dwells in Zion.” \ No newline at end of file diff --git a/bibles/eng-web_usfm/31-AMOeng-web.usfm b/bibles/eng-web_usfm/31-AMOeng-web.usfm new file mode 100644 index 0000000..5cdc78f --- /dev/null +++ b/bibles/eng-web_usfm/31-AMOeng-web.usfm @@ -0,0 +1,551 @@ +\id AMO 30-AMO-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Amos +\toc1 The Book of Amos +\toc2 Amos +\toc3 Amo +\mt2 The Book of +\mt1 Amos +\c 1 +\p +\v 1 \w The|strong="H6440"\w* \w words|strong="H1697"\w* \w of|strong="H1121"\w* \w Amos|strong="H5986"\w*, \w who|strong="H1121"\w* \w was|strong="H1961"\w* \w among|strong="H5921"\w* \w the|strong="H6440"\w* herdsmen \w of|strong="H1121"\w* \w Tekoa|strong="H8620"\w*, \w which|strong="H1697"\w* \w he|strong="H3117"\w* \w saw|strong="H2372"\w* \w concerning|strong="H5921"\w* \w Israel|strong="H3478"\w* \w in|strong="H8141"\w* \w the|strong="H6440"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w Uzziah|strong="H5818"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w and|strong="H1121"\w* \w in|strong="H8141"\w* \w the|strong="H6440"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w Jeroboam|strong="H3379"\w* \w the|strong="H6440"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Joash|strong="H3101"\w*, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, two \w years|strong="H8141"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w earthquake|strong="H7494"\w*. +\v 2 \w He|strong="H3068"\w* said: +\q1 “\w Yahweh|strong="H3068"\w*\f + \fr 1:2 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w will|strong="H3068"\w* \w roar|strong="H7580"\w* \w from|strong="H3068"\w* \w Zion|strong="H6726"\w*, +\q2 \w and|strong="H3068"\w* \w utter|strong="H5414"\w* \w his|strong="H5414"\w* \w voice|strong="H6963"\w* \w from|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*; +\q1 \w and|strong="H3068"\w* \w the|strong="H5414"\w* \w pastures|strong="H4999"\w* \w of|strong="H3068"\w* \w the|strong="H5414"\w* \w shepherds|strong="H7462"\w* \w will|strong="H3068"\w* mourn, +\q2 \w and|strong="H3068"\w* \w the|strong="H5414"\w* \w top|strong="H7218"\w* \w of|strong="H3068"\w* \w Carmel|strong="H3760"\w* \w will|strong="H3068"\w* \w wither|strong="H3001"\w*.” +\p +\v 3 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w For|strong="H5921"\w* \w three|strong="H7969"\w* \w transgressions|strong="H6588"\w* \w of|strong="H3068"\w* \w Damascus|strong="H1834"\w*, yes, \w for|strong="H5921"\w* \w four|strong="H7969"\w*, +\q2 \w I|strong="H3541"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w its|strong="H5921"\w* punishment, +\q2 \w because|strong="H5921"\w* \w they|strong="H3068"\w* \w have|strong="H3068"\w* \w threshed|strong="H1758"\w* \w Gilead|strong="H1568"\w* \w with|strong="H3068"\w* \w threshing|strong="H1758"\w* \w instruments|strong="H2742"\w* \w of|strong="H3068"\w* \w iron|strong="H1270"\w*; +\q1 +\v 4 but \w I|strong="H1004"\w* \w will|strong="H1004"\w* \w send|strong="H7971"\w* \w a|strong="H3068"\w* fire into \w the|strong="H7971"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Hazael|strong="H2371"\w*, +\q2 \w and|strong="H7971"\w* \w it|strong="H7971"\w* \w will|strong="H1004"\w* devour \w the|strong="H7971"\w* palaces \w of|strong="H1004"\w* Ben Hadad. +\q1 +\v 5 \w I|strong="H3772"\w* \w will|strong="H3068"\w* \w break|strong="H7665"\w* \w the|strong="H3068"\w* \w bar|strong="H1280"\w* \w of|strong="H1004"\w* \w Damascus|strong="H1834"\w*, +\q2 \w and|strong="H3068"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w the|strong="H3068"\w* \w inhabitant|strong="H3427"\w* \w from|strong="H3772"\w* \w the|strong="H3068"\w* \w valley|strong="H1237"\w* \w of|strong="H1004"\w* Aven, +\q2 \w and|strong="H3068"\w* \w him|strong="H3772"\w* \w who|strong="H5971"\w* \w holds|strong="H8551"\w* \w the|strong="H3068"\w* \w scepter|strong="H7626"\w* \w from|strong="H3772"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Eden|strong="H5730"\w*; +\q2 \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w people|strong="H5971"\w* \w of|strong="H1004"\w* Syria \w shall|strong="H3068"\w* \w go|strong="H1540"\w* \w into|strong="H1540"\w* \w captivity|strong="H1540"\w* \w to|strong="H3068"\w* \w Kir|strong="H7024"\w*,” +\p says \w Yahweh|strong="H3068"\w*. +\p +\v 6 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w For|strong="H5921"\w* \w three|strong="H7969"\w* \w transgressions|strong="H6588"\w* \w of|strong="H3068"\w* \w Gaza|strong="H5804"\w*, yes, \w for|strong="H5921"\w* \w four|strong="H7969"\w*, +\q2 \w I|strong="H3541"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w its|strong="H5921"\w* punishment, +\q2 \w because|strong="H5921"\w* \w they|strong="H3068"\w* \w carried|strong="H1540"\w* \w away|strong="H7725"\w* \w captive|strong="H1540"\w* \w the|strong="H5921"\w* \w whole|strong="H8003"\w* community, +\q2 \w to|strong="H7725"\w* \w deliver|strong="H5462"\w* \w them|strong="H5921"\w* \w up|strong="H5462"\w* \w to|strong="H7725"\w* Edom; +\q1 +\v 7 but \w I|strong="H7971"\w* \w will|strong="H2346"\w* \w send|strong="H7971"\w* \w a|strong="H3068"\w* fire \w on|strong="H7971"\w* \w the|strong="H7971"\w* \w wall|strong="H2346"\w* \w of|strong="H2346"\w* \w Gaza|strong="H5804"\w*, +\q2 \w and|strong="H7971"\w* \w it|strong="H7971"\w* \w will|strong="H2346"\w* devour \w its|strong="H7971"\w* palaces. +\q1 +\v 8 \w I|strong="H5921"\w* \w will|strong="H3027"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w the|strong="H5921"\w* \w inhabitant|strong="H3427"\w* \w from|strong="H7725"\w* Ashdod, +\q2 \w and|strong="H7725"\w* \w him|strong="H5921"\w* \w who|strong="H3427"\w* \w holds|strong="H8551"\w* \w the|strong="H5921"\w* \w scepter|strong="H7626"\w* \w from|strong="H7725"\w* Ashkelon; +\q1 \w and|strong="H7725"\w* \w I|strong="H5921"\w* \w will|strong="H3027"\w* \w turn|strong="H7725"\w* \w my|strong="H5921"\w* \w hand|strong="H3027"\w* \w against|strong="H5921"\w* \w Ekron|strong="H6138"\w*; +\q2 \w and|strong="H7725"\w* \w the|strong="H5921"\w* \w remnant|strong="H7611"\w* \w of|strong="H3027"\w* \w the|strong="H5921"\w* \w Philistines|strong="H6430"\w* \w will|strong="H3027"\w* \w perish|strong="H3772"\w*,” +\p says \w the|strong="H5921"\w* \w Lord|strong="H3069"\w*\f + \fr 1:8 \ft The word translated “Lord” is “Adonai.”\f* \w Yahweh|strong="H3068"\w*. +\p +\v 9 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w For|strong="H5921"\w* \w three|strong="H7969"\w* \w transgressions|strong="H6588"\w* \w of|strong="H3068"\w* \w Tyre|strong="H6865"\w*, yes, \w for|strong="H5921"\w* \w four|strong="H7969"\w*, +\q2 \w I|strong="H3541"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w its|strong="H5921"\w* punishment; +\q2 \w because|strong="H5921"\w* \w they|strong="H3068"\w* \w delivered|strong="H5462"\w* \w up|strong="H5462"\w* \w the|strong="H5921"\w* \w whole|strong="H8003"\w* community \w to|strong="H7725"\w* Edom, +\q2 \w and|strong="H3068"\w* didn’t \w remember|strong="H2142"\w* \w the|strong="H5921"\w* brotherly \w covenant|strong="H1285"\w*; +\q1 +\v 10 but \w I|strong="H7971"\w* \w will|strong="H2346"\w* \w send|strong="H7971"\w* \w a|strong="H3068"\w* fire \w on|strong="H7971"\w* \w the|strong="H7971"\w* \w wall|strong="H2346"\w* \w of|strong="H2346"\w* \w Tyre|strong="H6865"\w*, +\q2 \w and|strong="H7971"\w* \w it|strong="H7971"\w* \w will|strong="H2346"\w* devour \w its|strong="H7971"\w* palaces.” +\p +\v 11 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w For|strong="H5921"\w* \w three|strong="H7969"\w* \w transgressions|strong="H6588"\w* \w of|strong="H3068"\w* Edom, yes, \w for|strong="H5921"\w* \w four|strong="H7969"\w*, +\q2 \w I|strong="H3541"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w its|strong="H5921"\w* punishment, +\q2 \w because|strong="H5921"\w* \w he|strong="H3068"\w* \w pursued|strong="H7291"\w* \w his|strong="H8104"\w* brother \w with|strong="H3068"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w* +\q2 \w and|strong="H3068"\w* \w cast|strong="H3068"\w* \w off|strong="H5921"\w* \w all|strong="H7843"\w* \w pity|strong="H7356"\w*, +\q2 \w and|strong="H3068"\w* \w his|strong="H8104"\w* \w anger|strong="H5678"\w* raged \w continually|strong="H5703"\w*, +\q2 \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w kept|strong="H8104"\w* \w his|strong="H8104"\w* \w wrath|strong="H5678"\w* \w forever|strong="H5703"\w*; +\q1 +\v 12 but \w I|strong="H7971"\w* \w will|strong="H1224"\w* \w send|strong="H7971"\w* \w a|strong="H3068"\w* fire \w on|strong="H7971"\w* \w Teman|strong="H8487"\w*, +\q2 \w and|strong="H7971"\w* \w it|strong="H7971"\w* \w will|strong="H1224"\w* devour \w the|strong="H7971"\w* palaces of \w Bozrah|strong="H1224"\w*.” +\p +\v 13 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w For|strong="H5921"\w* \w three|strong="H7969"\w* \w transgressions|strong="H6588"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, yes, \w for|strong="H5921"\w* \w four|strong="H7969"\w*, +\q2 \w I|strong="H3541"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w its|strong="H5921"\w* punishment, +\q2 \w because|strong="H5921"\w* \w they|strong="H3068"\w* \w have|strong="H3068"\w* \w ripped|strong="H1234"\w* \w open|strong="H1234"\w* \w the|strong="H5921"\w* \w pregnant|strong="H2030"\w* \w women|strong="H2030"\w* \w of|strong="H1121"\w* \w Gilead|strong="H1568"\w*, +\q2 \w that|strong="H3068"\w* \w they|strong="H3068"\w* \w may|strong="H3068"\w* \w enlarge|strong="H7337"\w* \w their|strong="H3068"\w* \w border|strong="H1366"\w*. +\q1 +\v 14 \w But|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H3117"\w* \w kindle|strong="H3341"\w* \w a|strong="H3068"\w* \w fire|strong="H3341"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w wall|strong="H2346"\w* \w of|strong="H3117"\w* \w Rabbah|strong="H7237"\w*, +\q2 \w and|strong="H3117"\w* \w it|strong="H3117"\w* \w will|strong="H3117"\w* devour its palaces, +\q2 \w with|strong="H3117"\w* \w shouting|strong="H8643"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w battle|strong="H4421"\w*, +\q2 \w with|strong="H3117"\w* \w a|strong="H3068"\w* \w storm|strong="H5591"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H3117"\w* \w whirlwind|strong="H5591"\w*; +\q1 +\v 15 \w and|strong="H1980"\w* \w their|strong="H3068"\w* \w king|strong="H4428"\w* \w will|strong="H3068"\w* \w go|strong="H1980"\w* \w into|strong="H1980"\w* \w captivity|strong="H1473"\w*, +\q2 \w he|strong="H1931"\w* \w and|strong="H1980"\w* \w his|strong="H3068"\w* \w princes|strong="H8269"\w* \w together|strong="H3162"\w*,” +\p says \w Yahweh|strong="H3068"\w*. +\c 2 +\p +\v 1 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w For|strong="H5921"\w* \w three|strong="H7969"\w* \w transgressions|strong="H6588"\w* \w of|strong="H4428"\w* \w Moab|strong="H4124"\w*, yes, \w for|strong="H5921"\w* \w four|strong="H7969"\w*, +\q2 \w I|strong="H3541"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w its|strong="H5921"\w* punishment, +\q2 \w because|strong="H5921"\w* \w he|strong="H3068"\w* \w burned|strong="H8313"\w* \w the|strong="H5921"\w* \w bones|strong="H6106"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* Edom \w into|strong="H7725"\w* \w lime|strong="H7875"\w*; +\q1 +\v 2 \w but|strong="H4191"\w* \w I|strong="H6963"\w* \w will|strong="H4124"\w* \w send|strong="H7971"\w* \w a|strong="H3068"\w* fire \w on|strong="H7971"\w* \w Moab|strong="H4124"\w*, +\q2 \w and|strong="H7971"\w* \w it|strong="H7971"\w* \w will|strong="H4124"\w* devour \w the|strong="H7971"\w* palaces \w of|strong="H6963"\w* \w Kerioth|strong="H7152"\w*; +\q2 \w and|strong="H7971"\w* \w Moab|strong="H4124"\w* \w will|strong="H4124"\w* \w die|strong="H4191"\w* \w with|strong="H4191"\w* \w tumult|strong="H7588"\w*, \w with|strong="H4191"\w* \w shouting|strong="H8643"\w*, \w and|strong="H7971"\w* \w with|strong="H4191"\w* \w the|strong="H7971"\w* \w sound|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H7971"\w* \w trumpet|strong="H7782"\w*; +\q1 +\v 3 \w and|strong="H3068"\w* \w I|strong="H3772"\w* \w will|strong="H3068"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w the|strong="H3605"\w* \w judge|strong="H8199"\w* \w from|strong="H3772"\w* \w among|strong="H7130"\w* \w them|strong="H2026"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w kill|strong="H2026"\w* \w all|strong="H3605"\w* \w its|strong="H3605"\w* \w princes|strong="H8269"\w* \w with|strong="H5973"\w* \w him|strong="H5973"\w*,” +\p says \w Yahweh|strong="H3068"\w*. +\p +\v 4 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w For|strong="H5921"\w* \w three|strong="H7969"\w* \w transgressions|strong="H6588"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w*, yes, \w for|strong="H5921"\w* \w four|strong="H7969"\w*, +\q2 \w I|strong="H3541"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w its|strong="H5921"\w* punishment, +\q2 \w because|strong="H5921"\w* \w they|strong="H3068"\w* \w have|strong="H3068"\w* \w rejected|strong="H3988"\w* \w Yahweh|strong="H3068"\w*’s \w law|strong="H8451"\w*, +\q2 \w and|strong="H1980"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w kept|strong="H8104"\w* \w his|strong="H8104"\w* \w statutes|strong="H2706"\w*, +\q2 \w and|strong="H1980"\w* \w their|strong="H3068"\w* \w lies|strong="H3577"\w* \w have|strong="H3068"\w* \w led|strong="H1980"\w* \w them|strong="H5921"\w* \w astray|strong="H8582"\w*, +\q2 \w after|strong="H5921"\w* \w which|strong="H3068"\w* \w their|strong="H3068"\w* fathers \w walked|strong="H1980"\w*; +\q1 +\v 5 but \w I|strong="H7971"\w* \w will|strong="H3063"\w* \w send|strong="H7971"\w* \w a|strong="H3068"\w* fire \w on|strong="H7971"\w* \w Judah|strong="H3063"\w*, +\q2 \w and|strong="H3063"\w* \w it|strong="H7971"\w* \w will|strong="H3063"\w* devour \w the|strong="H7971"\w* palaces \w of|strong="H3389"\w* \w Jerusalem|strong="H3389"\w*.” +\p +\v 6 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w For|strong="H5921"\w* \w three|strong="H7969"\w* \w transgressions|strong="H6588"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, yes, \w for|strong="H5921"\w* \w four|strong="H7969"\w*, +\q2 \w I|strong="H3541"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w its|strong="H5921"\w* punishment, +\q2 \w because|strong="H5921"\w* \w they|strong="H3068"\w* \w have|strong="H3068"\w* \w sold|strong="H4376"\w* \w the|strong="H5921"\w* \w righteous|strong="H6662"\w* \w for|strong="H5921"\w* \w silver|strong="H3701"\w*, +\q2 \w and|strong="H3478"\w* \w the|strong="H5921"\w* needy \w for|strong="H5921"\w* \w a|strong="H3068"\w* pair \w of|strong="H3068"\w* \w sandals|strong="H5275"\w*; +\q2 +\v 7 \w They|strong="H5921"\w* \w trample|strong="H7602"\w* \w the|strong="H5921"\w* \w heads|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w poor|strong="H1800"\w* \w into|strong="H3212"\w* \w the|strong="H5921"\w* \w dust|strong="H6083"\w* \w of|strong="H7218"\w* \w the|strong="H5921"\w* \w earth|strong="H6083"\w* +\q2 \w and|strong="H3212"\w* deny justice \w to|strong="H3212"\w* \w the|strong="H5921"\w* oppressed. +\q1 \w A|strong="H3068"\w* \w man|strong="H1800"\w* \w and|strong="H3212"\w* \w his|strong="H5921"\w* father \w use|strong="H2490"\w* \w the|strong="H5921"\w* \w same|strong="H8034"\w* \w maiden|strong="H5291"\w*, \w to|strong="H3212"\w* \w profane|strong="H2490"\w* \w my|strong="H5921"\w* \w holy|strong="H6944"\w* \w name|strong="H8034"\w*. +\q2 +\v 8 \w They|strong="H5921"\w* lay \w themselves|strong="H5921"\w* \w down|strong="H5186"\w* \w beside|strong="H5921"\w* \w every|strong="H3605"\w* \w altar|strong="H4196"\w* \w on|strong="H5921"\w* clothes \w taken|strong="H2254"\w* \w in|strong="H5921"\w* \w pledge|strong="H2254"\w*. +\q2 \w In|strong="H5921"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w their|strong="H3605"\w* God\f + \fr 2:8 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w they|strong="H5921"\w* \w drink|strong="H8354"\w* \w the|strong="H3605"\w* \w wine|strong="H3196"\w* \w of|strong="H1004"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w have|strong="H3605"\w* \w been|strong="H3605"\w* \w fined|strong="H6064"\w*. +\q1 +\v 9 Yet \w I|strong="H6440"\w* \w destroyed|strong="H8045"\w* \w the|strong="H6440"\w* Amorite \w before|strong="H6440"\w* \w them|strong="H6440"\w*, +\q2 whose \w height|strong="H1363"\w* \w was|strong="H1931"\w* \w like|strong="H6440"\w* \w the|strong="H6440"\w* \w height|strong="H1363"\w* \w of|strong="H6440"\w* \w the|strong="H6440"\w* cedars, +\q2 \w and|strong="H6440"\w* \w he|strong="H1931"\w* \w was|strong="H1931"\w* \w strong|strong="H2634"\w* \w as|strong="H8478"\w* \w the|strong="H6440"\w* oaks; +\q2 yet \w I|strong="H6440"\w* \w destroyed|strong="H8045"\w* \w his|strong="H6440"\w* \w fruit|strong="H6529"\w* \w from|strong="H6440"\w* \w above|strong="H4605"\w*, +\q2 \w and|strong="H6440"\w* \w his|strong="H6440"\w* \w roots|strong="H8328"\w* \w from|strong="H6440"\w* \w beneath|strong="H8478"\w*. +\q1 +\v 10 Also \w I|strong="H4714"\w* \w brought|strong="H5927"\w* \w you|strong="H3212"\w* \w up|strong="H5927"\w* \w out|strong="H3423"\w* \w of|strong="H8141"\w* \w the|strong="H3423"\w* land \w of|strong="H8141"\w* \w Egypt|strong="H4714"\w* +\q2 \w and|strong="H3212"\w* \w led|strong="H3212"\w* \w you|strong="H3212"\w* forty \w years|strong="H8141"\w* \w in|strong="H8141"\w* \w the|strong="H3423"\w* \w wilderness|strong="H4057"\w*, +\q2 \w to|strong="H3212"\w* \w possess|strong="H3423"\w* \w the|strong="H3423"\w* land \w of|strong="H8141"\w* \w the|strong="H3423"\w* Amorite. +\q1 +\v 11 \w I|strong="H6965"\w* \w raised|strong="H6965"\w* \w up|strong="H6965"\w* some \w of|strong="H1121"\w* \w your|strong="H3068"\w* \w sons|strong="H1121"\w* \w for|strong="H3068"\w* \w prophets|strong="H5030"\w*, +\q2 \w and|strong="H1121"\w* some \w of|strong="H1121"\w* \w your|strong="H3068"\w* \w young|strong="H1121"\w* \w men|strong="H1121"\w* \w for|strong="H3068"\w* \w Nazirites|strong="H5139"\w*. +\q1 Isn’t \w this|strong="H2063"\w* \w true|strong="H3068"\w*, +\q2 \w you|strong="H6965"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*?” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 12 “\w But|strong="H3808"\w* \w you|strong="H6680"\w* \w gave|strong="H6680"\w* \w the|strong="H5921"\w* \w Nazirites|strong="H5139"\w* \w wine|strong="H3196"\w* \w to|strong="H5921"\w* \w drink|strong="H8248"\w*, +\q2 \w and|strong="H3196"\w* \w commanded|strong="H6680"\w* \w the|strong="H5921"\w* \w prophets|strong="H5030"\w*, saying, ‘Don’t \w prophesy|strong="H5012"\w*!’ +\q1 +\v 13 \w Behold|strong="H2009"\w*,\f + \fr 2:13 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w I|strong="H2009"\w* will crush \w you|strong="H8478"\w* \w in|strong="H8478"\w* \w your|strong="H8478"\w* \w place|strong="H8478"\w*, +\q2 \w as|strong="H8478"\w* \w a|strong="H3068"\w* \w cart|strong="H5699"\w* crushes \w that|strong="H2009"\w* \w is|strong="H2009"\w* \w full|strong="H4395"\w* \w of|strong="H8478"\w* grain. +\q1 +\v 14 \w Flight|strong="H4498"\w* \w will|strong="H5315"\w* perish \w from|strong="H5315"\w* \w the|strong="H3808"\w* \w swift|strong="H7031"\w*. +\q2 \w The|strong="H3808"\w* \w strong|strong="H2389"\w* won’t strengthen \w his|strong="H4422"\w* \w force|strong="H3581"\w*. +\q2 \w The|strong="H3808"\w* \w mighty|strong="H1368"\w* won’t \w deliver|strong="H4422"\w* \w himself|strong="H5315"\w*. +\q1 +\v 15 \w He|strong="H3808"\w* \w who|strong="H5315"\w* handles \w the|strong="H5975"\w* \w bow|strong="H7198"\w* won’t \w stand|strong="H5975"\w*. +\q2 \w He|strong="H3808"\w* \w who|strong="H5315"\w* \w is|strong="H5315"\w* \w swift|strong="H7031"\w* \w of|strong="H5315"\w* \w foot|strong="H7272"\w* won’t \w escape|strong="H4422"\w*. +\q2 \w He|strong="H3808"\w* \w who|strong="H5315"\w* \w rides|strong="H7392"\w* \w the|strong="H5975"\w* \w horse|strong="H5483"\w* won’t \w deliver|strong="H4422"\w* \w himself|strong="H5315"\w*. +\q1 +\v 16 \w He|strong="H1931"\w* \w who|strong="H1931"\w* \w is|strong="H3068"\w* courageous \w among|strong="H1368"\w* \w the|strong="H5002"\w* \w mighty|strong="H1368"\w* +\q2 \w will|strong="H3068"\w* \w flee|strong="H5127"\w* \w away|strong="H5127"\w* \w naked|strong="H6174"\w* \w on|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*,” +\p \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\c 3 +\p +\v 1 \w Hear|strong="H8085"\w* \w this|strong="H2088"\w* \w word|strong="H1697"\w* \w that|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w* \w against|strong="H5921"\w* \w you|strong="H3605"\w*, \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w against|strong="H5921"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w family|strong="H4940"\w* \w which|strong="H3068"\w* \w I|strong="H5921"\w* \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w out|strong="H5921"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w land|strong="H4940"\w* \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w saying|strong="H1697"\w*: +\q1 +\v 2 “\w I|strong="H5921"\w* \w have|strong="H3045"\w* \w only|strong="H7535"\w* \w chosen|strong="H3045"\w* \w you|strong="H3605"\w* \w of|strong="H4940"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w families|strong="H4940"\w* \w of|strong="H4940"\w* \w the|strong="H3605"\w* earth. +\q2 \w Therefore|strong="H3651"\w* \w I|strong="H5921"\w* \w will|strong="H5771"\w* \w punish|strong="H6485"\w* \w you|strong="H3605"\w* \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w of|strong="H4940"\w* \w your|strong="H3605"\w* \w sins|strong="H5771"\w*.” +\q1 +\v 3 Do \w two|strong="H8147"\w* \w walk|strong="H3212"\w* \w together|strong="H3162"\w*, +\q2 \w unless|strong="H1115"\w* \w they|strong="H3162"\w* \w have|strong="H8147"\w* \w agreed|strong="H3259"\w*? +\q1 +\v 4 \w Will|strong="H5414"\w* \w a|strong="H3068"\w* \w lion|strong="H3715"\w* \w roar|strong="H7580"\w* \w in|strong="H5414"\w* \w the|strong="H5414"\w* thicket, +\q2 \w when|strong="H6963"\w* \w he|strong="H5414"\w* \w has|strong="H3293"\w* \w no|strong="H1115"\w* \w prey|strong="H2964"\w*? +\q1 Does \w a|strong="H3068"\w* \w young|strong="H3715"\w* \w lion|strong="H3715"\w* \w cry|strong="H6963"\w* \w out|strong="H5414"\w* \w of|strong="H6963"\w* \w his|strong="H5414"\w* \w den|strong="H4585"\w*, +\q2 if \w he|strong="H5414"\w* \w has|strong="H3293"\w* \w caught|strong="H3920"\w* \w nothing|strong="H1115"\w*? +\q1 +\v 5 \w Can|strong="H3808"\w* \w a|strong="H3068"\w* \w bird|strong="H6833"\w* \w fall|strong="H5307"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w trap|strong="H4170"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w earth|strong="H5927"\w*, +\q2 \w where|strong="H5921"\w* \w no|strong="H3808"\w* \w snare|strong="H4170"\w* \w is|strong="H3808"\w* \w set|strong="H5927"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w*? +\q1 \w Does|strong="H3808"\w* \w a|strong="H3068"\w* \w snare|strong="H4170"\w* \w spring|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H4480"\w* \w the|strong="H5921"\w* ground, +\q2 \w when|strong="H5307"\w* \w there|strong="H5927"\w* \w is|strong="H3808"\w* \w nothing|strong="H3808"\w* \w to|strong="H5927"\w* \w catch|strong="H3920"\w*? +\q1 +\v 6 \w Does|strong="H6213"\w* \w the|strong="H6213"\w* \w trumpet|strong="H7782"\w* alarm \w sound|strong="H8628"\w* \w in|strong="H3068"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w*, +\q2 \w without|strong="H3808"\w* \w the|strong="H6213"\w* \w people|strong="H5971"\w* \w being|strong="H1961"\w* \w afraid|strong="H2729"\w*? +\q1 \w Does|strong="H6213"\w* \w evil|strong="H7451"\w* \w happen|strong="H1961"\w* \w to|strong="H3068"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w*, +\q2 \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* hasn’t \w done|strong="H6213"\w* \w it|strong="H6213"\w*? +\q1 +\v 7 \w Surely|strong="H3588"\w* \w the|strong="H3588"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H5650"\w* \w do|strong="H6213"\w* \w nothing|strong="H3808"\w*, +\q2 \w unless|strong="H3588"\w* \w he|strong="H3588"\w* \w reveals|strong="H1540"\w* \w his|strong="H1540"\w* \w secret|strong="H5475"\w* \w to|strong="H6213"\w* \w his|strong="H1540"\w* \w servants|strong="H5650"\w* \w the|strong="H3588"\w* \w prophets|strong="H5030"\w*. +\q1 +\v 8 \w The|strong="H3069"\w* lion \w has|strong="H4310"\w* \w roared|strong="H7580"\w*. +\q2 \w Who|strong="H4310"\w* \w will|strong="H4310"\w* \w not|strong="H3808"\w* \w fear|strong="H3372"\w*? +\q1 \w The|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H4310"\w* \w spoken|strong="H1696"\w*. +\q2 \w Who|strong="H4310"\w* \w can|strong="H4310"\w* \w but|strong="H3808"\w* \w prophesy|strong="H5012"\w*? +\q1 +\v 9 \w Proclaim|strong="H8085"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* palaces \w at|strong="H5921"\w* Ashdod, +\q2 \w and|strong="H4714"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* palaces \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w land|strong="H7130"\w* \w of|strong="H2022"\w* \w Egypt|strong="H4714"\w*, +\q1 \w and|strong="H4714"\w* say, “Assemble \w yourselves|strong="H8432"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w* \w of|strong="H2022"\w* \w Samaria|strong="H8111"\w*, +\q2 \w and|strong="H4714"\w* \w see|strong="H7200"\w* \w what|strong="H7200"\w* unrest \w is|strong="H4714"\w* \w in|strong="H5921"\w* \w her|strong="H5921"\w*, +\q2 \w and|strong="H4714"\w* \w what|strong="H7200"\w* \w oppression|strong="H6217"\w* \w is|strong="H4714"\w* \w among|strong="H8432"\w* \w them|strong="H5921"\w*.” +\q1 +\v 10 “\w Indeed|strong="H3808"\w* \w they|strong="H3068"\w* don’t \w know|strong="H3045"\w* \w to|strong="H3068"\w* \w do|strong="H6213"\w* \w right|strong="H5229"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w Who|strong="H3068"\w* hoard plunder \w and|strong="H3068"\w* loot \w in|strong="H3068"\w* \w their|strong="H3068"\w* palaces.” +\p +\v 11 \w Therefore|strong="H3651"\w* \w the|strong="H3069"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w An|strong="H4480"\w* \w adversary|strong="H6862"\w* \w will|strong="H3069"\w* overrun \w the|strong="H3069"\w* land; +\q2 \w and|strong="H3381"\w* \w he|strong="H3651"\w* \w will|strong="H3069"\w* \w pull|strong="H3381"\w* \w down|strong="H3381"\w* \w your|strong="H4480"\w* strongholds, +\q2 \w and|strong="H3381"\w* \w your|strong="H4480"\w* fortresses \w will|strong="H3069"\w* \w be|strong="H3069"\w* plundered.” +\p +\v 12 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w As|strong="H3651"\w* \w the|strong="H3541"\w* \w shepherd|strong="H7462"\w* \w rescues|strong="H5337"\w* \w out|strong="H5337"\w* \w of|strong="H1121"\w* \w the|strong="H3541"\w* \w mouth|strong="H6310"\w* \w of|strong="H1121"\w* \w the|strong="H3541"\w* lion \w two|strong="H8147"\w* \w legs|strong="H3767"\w*, +\q2 \w or|strong="H1121"\w* \w a|strong="H3068"\w* piece \w of|strong="H1121"\w* \w an|strong="H3068"\w* ear, +\q2 \w so|strong="H3651"\w* \w shall|strong="H3068"\w* \w the|strong="H3541"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w* \w be|strong="H3068"\w* \w rescued|strong="H5337"\w* \w who|strong="H3068"\w* \w sit|strong="H3427"\w* \w in|strong="H3427"\w* \w Samaria|strong="H8111"\w* \w on|strong="H3427"\w* \w the|strong="H3541"\w* \w corner|strong="H6285"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w couch|strong="H6210"\w*, +\q2 \w and|strong="H1121"\w* \w on|strong="H3427"\w* \w the|strong="H3541"\w* silken cushions \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w bed|strong="H4296"\w*.” +\p +\v 13 “\w Listen|strong="H8085"\w*, \w and|strong="H1004"\w* \w testify|strong="H5749"\w* \w against|strong="H5749"\w* \w the|strong="H5002"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5002"\w* \w God|strong="H3069"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w*. +\q1 +\v 14 “\w For|strong="H3588"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w visit|strong="H6485"\w* \w the|strong="H5921"\w* \w transgressions|strong="H6588"\w* \w of|strong="H3117"\w* \w Israel|strong="H3478"\w* \w on|strong="H5921"\w* \w him|strong="H5921"\w*, +\q2 \w I|strong="H3588"\w* \w will|strong="H3478"\w* \w also|strong="H3478"\w* \w visit|strong="H6485"\w* \w the|strong="H5921"\w* \w altars|strong="H4196"\w* \w of|strong="H3117"\w* \w Bethel|strong="H1008"\w*; +\q2 \w and|strong="H3478"\w* \w the|strong="H5921"\w* \w horns|strong="H7161"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w* \w will|strong="H3478"\w* \w be|strong="H3478"\w* \w cut|strong="H1438"\w* \w off|strong="H1438"\w*, +\q2 \w and|strong="H3478"\w* \w fall|strong="H5307"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* ground. +\q1 +\v 15 \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w strike|strong="H5221"\w* \w the|strong="H5002"\w* \w winter|strong="H2779"\w* \w house|strong="H1004"\w* \w with|strong="H1004"\w* \w the|strong="H5002"\w* \w summer|strong="H7019"\w* \w house|strong="H1004"\w*; +\q2 \w and|strong="H3068"\w* \w the|strong="H5002"\w* \w houses|strong="H1004"\w* \w of|strong="H1004"\w* \w ivory|strong="H8127"\w* \w will|strong="H3068"\w* \w perish|strong="H5486"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H5002"\w* \w great|strong="H7227"\w* \w houses|strong="H1004"\w* \w will|strong="H3068"\w* \w have|strong="H3068"\w* \w an|strong="H5221"\w* \w end|strong="H5486"\w*,” +\p \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\c 4 +\p +\v 1 \w Listen|strong="H8085"\w* \w to|strong="H8085"\w* \w this|strong="H2088"\w* \w word|strong="H1697"\w*, \w you|strong="H2022"\w* \w cows|strong="H6510"\w* \w of|strong="H1697"\w* \w Bashan|strong="H1316"\w*, \w who|strong="H2088"\w* \w are|strong="H1697"\w* \w on|strong="H8085"\w* \w the|strong="H8085"\w* \w mountain|strong="H2022"\w* \w of|strong="H1697"\w* \w Samaria|strong="H8111"\w*, \w who|strong="H2088"\w* \w oppress|strong="H6231"\w* \w the|strong="H8085"\w* \w poor|strong="H1800"\w*, \w who|strong="H2088"\w* \w crush|strong="H7533"\w* \w the|strong="H8085"\w* \w needy|strong="H1800"\w*, \w who|strong="H2088"\w* \w tell|strong="H8085"\w* \w their|strong="H8085"\w* husbands, “Bring \w us|strong="H8085"\w* \w drinks|strong="H8354"\w*!” +\q1 +\v 2 \w The|strong="H5921"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3117"\w* \w sworn|strong="H7650"\w* \w by|strong="H5921"\w* \w his|strong="H5375"\w* \w holiness|strong="H6944"\w*, +\q2 “\w Behold|strong="H2009"\w*, \w the|strong="H5921"\w* \w days|strong="H3117"\w* \w shall|strong="H3117"\w* come \w on|strong="H5921"\w* \w you|strong="H3588"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H3117"\w* \w take|strong="H5375"\w* \w you|strong="H3588"\w* \w away|strong="H5375"\w* \w with|strong="H5921"\w* \w hooks|strong="H6793"\w*, +\q2 \w and|strong="H3117"\w* \w the|strong="H5921"\w* \w last|strong="H3588"\w* \w of|strong="H3117"\w* \w you|strong="H3588"\w* \w with|strong="H5921"\w* \w fish|strong="H1729"\w* \w hooks|strong="H6793"\w*. +\q1 +\v 3 \w You|strong="H3318"\w* \w will|strong="H3068"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w at|strong="H3068"\w* \w the|strong="H5002"\w* \w breaks|strong="H3318"\w* \w in|strong="H3068"\w* \w the|strong="H5002"\w* wall, +\q2 everyone \w straight|strong="H5048"\w* \w before|strong="H5048"\w* \w her|strong="H3318"\w*; +\q2 \w and|strong="H3068"\w* \w you|strong="H3318"\w* \w will|strong="H3068"\w* \w cast|strong="H7993"\w* \w yourselves|strong="H3068"\w* \w into|strong="H3318"\w* \w Harmon|strong="H2038"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 4 “Go \w to|strong="H3117"\w* \w Bethel|strong="H1008"\w*, \w and|strong="H3117"\w* sin; +\q2 \w to|strong="H3117"\w* \w Gilgal|strong="H1537"\w*, \w and|strong="H3117"\w* sin \w more|strong="H7235"\w*. +\q1 Bring \w your|strong="H7235"\w* \w sacrifices|strong="H2077"\w* \w every|strong="H1242"\w* \w morning|strong="H1242"\w*, +\q2 \w your|strong="H7235"\w* \w tithes|strong="H4643"\w* \w every|strong="H1242"\w* \w three|strong="H7969"\w* \w days|strong="H3117"\w*, +\q2 +\v 5 \w offer|strong="H6999"\w* \w a|strong="H3068"\w* \w sacrifice|strong="H6999"\w* \w of|strong="H1121"\w* \w thanksgiving|strong="H8426"\w* \w of|strong="H1121"\w* \w that|strong="H3588"\w* \w which|strong="H3478"\w* \w is|strong="H3651"\w* \w leavened|strong="H2557"\w*, +\q2 \w and|strong="H1121"\w* \w proclaim|strong="H7121"\w* free \w will|strong="H3478"\w* \w offerings|strong="H5071"\w* \w and|strong="H1121"\w* brag \w about|strong="H8085"\w* \w them|strong="H7121"\w*; +\q2 \w for|strong="H3588"\w* \w this|strong="H3651"\w* pleases \w you|strong="H3588"\w*, \w you|strong="H3588"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 6 “\w I|strong="H5414"\w* \w also|strong="H1571"\w* \w have|strong="H3068"\w* \w given|strong="H5414"\w* \w you|strong="H5414"\w* \w cleanness|strong="H5356"\w* \w of|strong="H3068"\w* \w teeth|strong="H8127"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w your|strong="H3068"\w* \w cities|strong="H5892"\w*, +\q2 \w and|strong="H3068"\w* \w lack|strong="H2640"\w* \w of|strong="H3068"\w* \w bread|strong="H3899"\w* \w in|strong="H3068"\w* \w every|strong="H3605"\w* \w town|strong="H5892"\w*; +\q2 \w yet|strong="H1571"\w* \w you|strong="H5414"\w* haven’t \w returned|strong="H7725"\w* \w to|strong="H5704"\w* \w me|strong="H5414"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 7 “\w I|strong="H5921"\w* \w also|strong="H1571"\w* \w have|strong="H1571"\w* \w withheld|strong="H4513"\w* \w the|strong="H5921"\w* \w rain|strong="H1653"\w* \w from|strong="H4480"\w* \w you|strong="H5921"\w*, +\q2 \w when|strong="H4480"\w* \w there|strong="H4480"\w* \w were|strong="H7969"\w* \w yet|strong="H5750"\w* \w three|strong="H7969"\w* \w months|strong="H2320"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w harvest|strong="H7105"\w*; +\q2 \w and|strong="H5892"\w* \w I|strong="H5921"\w* caused \w it|strong="H5921"\w* \w to|strong="H5921"\w* \w rain|strong="H1653"\w* \w on|strong="H5921"\w* \w one|strong="H3808"\w* \w city|strong="H5892"\w*, +\q2 \w and|strong="H5892"\w* caused \w it|strong="H5921"\w* \w not|strong="H3808"\w* \w to|strong="H5921"\w* \w rain|strong="H1653"\w* \w on|strong="H5921"\w* \w another|strong="H5750"\w* \w city|strong="H5892"\w*. +\q1 \w One|strong="H3808"\w* \w field|strong="H2513"\w* \w was|strong="H5892"\w* \w rained|strong="H4305"\w* \w on|strong="H5921"\w*, +\q2 \w and|strong="H5892"\w* \w the|strong="H5921"\w* \w field|strong="H2513"\w* \w where|strong="H5921"\w* \w it|strong="H5921"\w* didn’t \w rain|strong="H1653"\w* \w withered|strong="H3001"\w*. +\q1 +\v 8 \w So|strong="H3808"\w* \w two|strong="H8147"\w* \w or|strong="H3808"\w* \w three|strong="H7969"\w* \w cities|strong="H5892"\w* \w staggered|strong="H5128"\w* \w to|strong="H5704"\w* \w one|strong="H3808"\w* \w city|strong="H5892"\w* \w to|strong="H5704"\w* \w drink|strong="H8354"\w* \w water|strong="H4325"\w*, +\q2 \w and|strong="H3068"\w* \w were|strong="H4325"\w* \w not|strong="H3808"\w* \w satisfied|strong="H7646"\w*; +\q2 \w yet|strong="H5704"\w* \w you|strong="H5704"\w* haven’t \w returned|strong="H7725"\w* \w to|strong="H5704"\w* \w me|strong="H7725"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 9 “\w I|strong="H5704"\w* \w struck|strong="H5221"\w* \w you|strong="H5704"\w* \w with|strong="H3068"\w* \w blight|strong="H7711"\w* \w and|strong="H3068"\w* \w mildew|strong="H3420"\w* \w many|strong="H7235"\w* times \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w gardens|strong="H1593"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w vineyards|strong="H3754"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H5002"\w* swarming \w locusts|strong="H1501"\w* \w have|strong="H3068"\w* devoured \w your|strong="H3068"\w* \w fig|strong="H8384"\w* \w trees|strong="H2132"\w* \w and|strong="H3068"\w* \w your|strong="H3068"\w* \w olive|strong="H2132"\w* \w trees|strong="H2132"\w*; +\q2 \w yet|strong="H5704"\w* \w you|strong="H5704"\w* haven’t \w returned|strong="H7725"\w* \w to|strong="H5704"\w* \w me|strong="H7725"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 10 “\w I|strong="H5704"\w* \w sent|strong="H7971"\w* \w plagues|strong="H1870"\w* \w among|strong="H5973"\w* \w you|strong="H7971"\w* \w like|strong="H5973"\w* \w I|strong="H5704"\w* \w did|strong="H3068"\w* \w Egypt|strong="H4714"\w*. +\q2 \w I|strong="H5704"\w* \w have|strong="H3068"\w* \w slain|strong="H2026"\w* \w your|strong="H3068"\w* \w young|strong="H7971"\w* \w men|strong="H4264"\w* \w with|strong="H5973"\w* \w the|strong="H5002"\w* \w sword|strong="H2719"\w*, +\q2 \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w carried|strong="H5927"\w* \w away|strong="H7971"\w* \w your|strong="H3068"\w* \w horses|strong="H5483"\w*. +\q1 \w I|strong="H5704"\w* filled \w your|strong="H3068"\w* nostrils \w with|strong="H5973"\w* \w the|strong="H5002"\w* stench \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w camp|strong="H4264"\w*, +\q2 \w yet|strong="H5704"\w* \w you|strong="H7971"\w* haven’t \w returned|strong="H7725"\w* \w to|strong="H5704"\w* \w me|strong="H7971"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 11 “\w I|strong="H5704"\w* \w have|strong="H1961"\w* \w overthrown|strong="H2015"\w* some \w of|strong="H3068"\w* \w you|strong="H5704"\w*, +\q2 \w as|strong="H5704"\w* \w when|strong="H1961"\w* \w God|strong="H3068"\w* \w overthrew|strong="H2015"\w* \w Sodom|strong="H5467"\w* \w and|strong="H3068"\w* \w Gomorrah|strong="H6017"\w*, +\q2 \w and|strong="H3068"\w* \w you|strong="H5704"\w* \w were|strong="H1961"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w burning|strong="H8316"\w* stick \w plucked|strong="H5337"\w* \w out|strong="H5337"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* \w fire|strong="H8316"\w*; +\q2 \w yet|strong="H5704"\w* \w you|strong="H5704"\w* haven’t \w returned|strong="H7725"\w* \w to|strong="H5704"\w* \w me|strong="H7725"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 12 “\w Therefore|strong="H3651"\w* \w I|strong="H3588"\w* \w will|strong="H3478"\w* \w do|strong="H6213"\w* \w this|strong="H2063"\w* \w to|strong="H3478"\w* \w you|strong="H3588"\w*, \w Israel|strong="H3478"\w*; +\q2 \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3478"\w* \w do|strong="H6213"\w* \w this|strong="H2063"\w* \w to|strong="H3478"\w* \w you|strong="H3588"\w*, +\q2 \w prepare|strong="H3559"\w* \w to|strong="H3478"\w* \w meet|strong="H7125"\w* \w your|strong="H6213"\w* God, \w Israel|strong="H3478"\w*. +\q1 +\v 13 \w For|strong="H3588"\w*, \w behold|strong="H2009"\w*, \w he|strong="H3588"\w* \w who|strong="H3068"\w* \w forms|strong="H3335"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w*, \w creates|strong="H1254"\w* \w the|strong="H5921"\w* \w wind|strong="H7307"\w*, \w declares|strong="H5046"\w* \w to|strong="H3068"\w* man \w what|strong="H4100"\w* \w is|strong="H3068"\w* \w his|strong="H3068"\w* \w thought|strong="H7808"\w*, +\q2 \w who|strong="H3068"\w* \w makes|strong="H6213"\w* \w the|strong="H5921"\w* \w morning|strong="H7837"\w* \w darkness|strong="H5890"\w*, \w and|strong="H3068"\w* \w treads|strong="H1869"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* earth: +\q2 \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w is|strong="H3068"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w*.” +\c 5 +\p +\v 1 \w Listen|strong="H8085"\w* \w to|strong="H3478"\w* \w this|strong="H2088"\w* \w word|strong="H1697"\w* \w which|strong="H1697"\w* \w I|strong="H5921"\w* \w take|strong="H5375"\w* \w up|strong="H5375"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w lamentation|strong="H7015"\w* \w over|strong="H5921"\w* \w you|strong="H5921"\w*, \w O|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*: +\q1 +\v 2 “\w The|strong="H5921"\w* \w virgin|strong="H1330"\w* \w of|strong="H5921"\w* \w Israel|strong="H3478"\w* \w has|strong="H3478"\w* \w fallen|strong="H5307"\w*; +\q2 \w She|strong="H5921"\w* \w shall|strong="H3478"\w* \w rise|strong="H6965"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w*. +\q1 \w She|strong="H5921"\w* \w is|strong="H3478"\w* \w cast|strong="H5307"\w* \w down|strong="H5307"\w* \w on|strong="H5921"\w* \w her|strong="H5921"\w* land; +\q2 \w there|strong="H6965"\w* \w is|strong="H3478"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w to|strong="H3478"\w* \w raise|strong="H6965"\w* \w her|strong="H5921"\w* \w up|strong="H6965"\w*.” +\p +\v 3 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w The|strong="H3588"\w* \w city|strong="H5892"\w* \w that|strong="H3588"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w a|strong="H3068"\w* thousand \w shall|strong="H3478"\w* \w have|strong="H3478"\w* \w a|strong="H3068"\w* \w hundred|strong="H3967"\w* \w left|strong="H7604"\w*, +\q2 \w and|strong="H3967"\w* \w that|strong="H3588"\w* \w which|strong="H1004"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w one|strong="H3588"\w* \w hundred|strong="H3967"\w* \w shall|strong="H3478"\w* \w have|strong="H3478"\w* \w ten|strong="H6235"\w* \w left|strong="H7604"\w* \w to|strong="H3318"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*.” +\p +\v 4 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w to|strong="H3478"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*: +\q1 “\w Seek|strong="H1875"\w* \w me|strong="H1875"\w*, \w and|strong="H3478"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w live|strong="H2421"\w*; +\q1 +\v 5 \w but|strong="H3588"\w* don’t \w seek|strong="H1875"\w* \w Bethel|strong="H1008"\w*, +\q2 \w nor|strong="H3808"\w* \w enter|strong="H5674"\w* \w into|strong="H1540"\w* \w Gilgal|strong="H1537"\w*, +\q2 \w and|strong="H1008"\w* don’t \w pass|strong="H5674"\w* \w to|strong="H1961"\w* Beersheba; +\q1 \w for|strong="H3588"\w* \w Gilgal|strong="H1537"\w* \w shall|strong="H3808"\w* \w surely|strong="H3588"\w* \w go|strong="H5674"\w* \w into|strong="H1540"\w* \w captivity|strong="H1540"\w*, +\q2 \w and|strong="H1008"\w* \w Bethel|strong="H1008"\w* \w shall|strong="H3808"\w* \w come|strong="H1961"\w* \w to|strong="H1961"\w* \w nothing|strong="H3808"\w*. +\q1 +\v 6 \w Seek|strong="H1875"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w you|strong="H6435"\w* \w will|strong="H3068"\w* \w live|strong="H2421"\w*, +\q2 \w lest|strong="H6435"\w* \w he|strong="H3068"\w* \w break|strong="H6743"\w* \w out|strong="H3518"\w* \w like|strong="H1004"\w* fire \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Joseph|strong="H3130"\w*, +\q2 \w and|strong="H3068"\w* \w it|strong="H3068"\w* devour, \w and|strong="H3068"\w* \w there|strong="H3068"\w* \w be|strong="H3068"\w* \w no|strong="H6435"\w* \w one|strong="H2421"\w* \w to|strong="H3068"\w* \w quench|strong="H3518"\w* \w it|strong="H3068"\w* \w in|strong="H3068"\w* \w Bethel|strong="H1008"\w*. +\q1 +\v 7 You who \w turn|strong="H2015"\w* \w justice|strong="H4941"\w* \w to|strong="H4941"\w* \w wormwood|strong="H3939"\w*, +\q2 \w and|strong="H4941"\w* cast \w down|strong="H3240"\w* \w righteousness|strong="H6666"\w* \w to|strong="H4941"\w* \w the|strong="H2015"\w* earth! +\q1 +\v 8 Seek \w him|strong="H6440"\w* \w who|strong="H3068"\w* \w made|strong="H6213"\w* \w the|strong="H6440"\w* \w Pleiades|strong="H3598"\w* \w and|strong="H3068"\w* \w Orion|strong="H3685"\w*, +\q2 \w and|strong="H3068"\w* \w turns|strong="H2015"\w* \w the|strong="H6440"\w* \w shadow|strong="H6757"\w* \w of|strong="H3068"\w* \w death|strong="H6757"\w* \w into|strong="H2015"\w* \w the|strong="H6440"\w* \w morning|strong="H1242"\w*, +\q2 \w and|strong="H3068"\w* \w makes|strong="H6213"\w* \w the|strong="H6440"\w* \w day|strong="H3117"\w* \w dark|strong="H2821"\w* \w with|strong="H3068"\w* \w night|strong="H3915"\w*; +\q2 \w who|strong="H3068"\w* \w calls|strong="H7121"\w* \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w waters|strong="H4325"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w sea|strong="H3220"\w*, +\q2 \w and|strong="H3068"\w* \w pours|strong="H8210"\w* \w them|strong="H5921"\w* \w out|strong="H8210"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* earth, \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w*, +\q1 +\v 9 who brings sudden \w destruction|strong="H7701"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w strong|strong="H5794"\w*, +\q2 \w so|strong="H5921"\w* \w that|strong="H5921"\w* \w destruction|strong="H7701"\w* comes \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w fortress|strong="H4013"\w*. +\q1 +\v 10 \w They|strong="H1696"\w* \w hate|strong="H8130"\w* \w him|strong="H8130"\w* \w who|strong="H3198"\w* \w reproves|strong="H3198"\w* \w in|strong="H1696"\w* \w the|strong="H1696"\w* \w gate|strong="H8179"\w*, +\q2 \w and|strong="H1696"\w* \w they|strong="H1696"\w* \w abhor|strong="H8581"\w* \w him|strong="H8130"\w* \w who|strong="H3198"\w* \w speaks|strong="H1696"\w* \w blamelessly|strong="H8549"\w*. +\q1 +\v 11 \w Therefore|strong="H3651"\w*, \w because|strong="H5921"\w* \w you|strong="H5921"\w* trample \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w poor|strong="H1800"\w* \w and|strong="H1004"\w* \w take|strong="H3947"\w* taxes \w from|strong="H4480"\w* \w him|strong="H5921"\w* \w of|strong="H1004"\w* \w wheat|strong="H1250"\w*, +\q2 \w you|strong="H5921"\w* \w have|strong="H1129"\w* \w built|strong="H1129"\w* \w houses|strong="H1004"\w* \w of|strong="H1004"\w* \w cut|strong="H1496"\w* \w stone|strong="H1496"\w*, \w but|strong="H3808"\w* \w you|strong="H5921"\w* \w will|strong="H1004"\w* \w not|strong="H3808"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w them|strong="H5921"\w*. +\q1 \w You|strong="H5921"\w* \w have|strong="H1129"\w* \w planted|strong="H5193"\w* \w pleasant|strong="H2531"\w* \w vineyards|strong="H3754"\w*, +\q2 \w but|strong="H3808"\w* \w you|strong="H5921"\w* \w shall|strong="H1004"\w* \w not|strong="H3808"\w* \w drink|strong="H8354"\w* \w their|strong="H3947"\w* \w wine|strong="H3196"\w*. +\q1 +\v 12 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w how|strong="H3588"\w* \w many|strong="H7227"\w* \w are|strong="H6588"\w* \w your|strong="H3947"\w* offenses, +\q2 \w and|strong="H3045"\w* \w how|strong="H3588"\w* \w great|strong="H7227"\w* \w are|strong="H6588"\w* \w your|strong="H3947"\w* \w sins|strong="H2403"\w*— +\q2 \w you|strong="H3588"\w* \w who|strong="H6662"\w* \w afflict|strong="H6887"\w* \w the|strong="H3588"\w* \w just|strong="H6662"\w*, +\q2 \w who|strong="H6662"\w* \w take|strong="H3947"\w* \w a|strong="H3068"\w* \w bribe|strong="H3724"\w*, +\q2 \w and|strong="H3045"\w* \w who|strong="H6662"\w* \w turn|strong="H5186"\w* \w away|strong="H3947"\w* \w the|strong="H3588"\w* needy \w in|strong="H7227"\w* \w the|strong="H3588"\w* \w courts|strong="H8179"\w*. +\q1 +\v 13 \w Therefore|strong="H3651"\w* \w a|strong="H3068"\w* \w prudent|strong="H7919"\w* \w person|strong="H7919"\w* \w keeps|strong="H1826"\w* \w silent|strong="H1826"\w* \w in|strong="H7919"\w* \w such|strong="H3651"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w*, +\q2 \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w an|strong="H3588"\w* \w evil|strong="H7451"\w* \w time|strong="H6256"\w*. +\q1 +\v 14 \w Seek|strong="H1875"\w* \w good|strong="H2896"\w*, \w and|strong="H3068"\w* \w not|strong="H1961"\w* \w evil|strong="H7451"\w*, +\q2 \w that|strong="H3068"\w* \w you|strong="H3651"\w* \w may|strong="H1961"\w* \w live|strong="H2421"\w*; +\q2 \w and|strong="H3068"\w* \w so|strong="H3651"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w with|strong="H3068"\w* \w you|strong="H3651"\w*, +\q2 \w as|strong="H1961"\w* \w you|strong="H3651"\w* say. +\q1 +\v 15 \w Hate|strong="H8130"\w* \w evil|strong="H7451"\w*, love \w good|strong="H2896"\w*, +\q2 \w and|strong="H3068"\w* \w establish|strong="H3322"\w* \w justice|strong="H4941"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w courts|strong="H8179"\w*. +\q2 \w It|strong="H3322"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w that|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w gracious|strong="H2603"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w remnant|strong="H7611"\w* \w of|strong="H3068"\w* \w Joseph|strong="H3130"\w*.” +\p +\v 16 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w the|strong="H3605"\w* \w Lord|strong="H3068"\w*, \w says|strong="H3541"\w*: +\q1 “\w Wailing|strong="H4553"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* wide \w ways|strong="H7339"\w*. +\q2 \w They|strong="H3651"\w* \w will|strong="H3068"\w* say \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w streets|strong="H2351"\w*, ‘\w Alas|strong="H1930"\w*! \w Alas|strong="H1930"\w*!’ +\q2 \w They|strong="H3651"\w* \w will|strong="H3068"\w* \w call|strong="H7121"\w* \w the|strong="H3605"\w* farmer \w to|strong="H3068"\w* \w mourning|strong="H4553"\w*, +\q2 \w and|strong="H3068"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H3068"\w* \w skillful|strong="H3045"\w* \w in|strong="H3068"\w* \w lamentation|strong="H4553"\w* \w to|strong="H3068"\w* \w wailing|strong="H4553"\w*. +\q1 +\v 17 \w In|strong="H3068"\w* \w all|strong="H3605"\w* \w vineyards|strong="H3754"\w* \w there|strong="H3605"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w wailing|strong="H4553"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H3605"\w* \w middle|strong="H7130"\w* \w of|strong="H3068"\w* \w you|strong="H3588"\w*,” says \w Yahweh|strong="H3068"\w*. +\q1 +\v 18 “\w Woe|strong="H1945"\w* \w to|strong="H3068"\w* \w you|strong="H3117"\w* \w who|strong="H1931"\w* desire \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*! +\q2 \w Why|strong="H4100"\w* \w do|strong="H3068"\w* \w you|strong="H3117"\w* \w long|strong="H3117"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*? +\q1 \w It|strong="H1931"\w* \w is|strong="H3068"\w* \w darkness|strong="H2822"\w*, +\q2 \w and|strong="H3068"\w* \w not|strong="H3808"\w* light. +\q1 +\v 19 \w As|strong="H6440"\w* if \w a|strong="H3068"\w* \w man|strong="H6440"\w* \w fled|strong="H5127"\w* \w from|strong="H6440"\w* \w a|strong="H3068"\w* lion, +\q2 \w and|strong="H3027"\w* \w a|strong="H3068"\w* \w bear|strong="H1677"\w* \w met|strong="H6293"\w* \w him|strong="H6440"\w*; +\q1 \w or|strong="H1004"\w* \w he|strong="H1004"\w* \w went|strong="H3027"\w* \w into|strong="H5921"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w and|strong="H3027"\w* \w leaned|strong="H5564"\w* \w his|strong="H6440"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w wall|strong="H7023"\w*, +\q2 \w and|strong="H3027"\w* \w a|strong="H3068"\w* \w snake|strong="H5175"\w* \w bit|strong="H5391"\w* \w him|strong="H6440"\w*. +\q1 +\v 20 Won’t \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w be|strong="H3808"\w* \w darkness|strong="H2822"\w*, \w and|strong="H3068"\w* \w not|strong="H3808"\w* \w light|strong="H5051"\w*? +\q2 \w Even|strong="H3808"\w* very \w dark|strong="H2822"\w*, \w and|strong="H3068"\w* \w no|strong="H3808"\w* \w brightness|strong="H5051"\w* \w in|strong="H3068"\w* \w it|strong="H3117"\w*? +\q1 +\v 21 \w I|strong="H3808"\w* \w hate|strong="H8130"\w*, \w I|strong="H3808"\w* \w despise|strong="H3988"\w* \w your|strong="H3808"\w* \w feasts|strong="H2282"\w*, +\q2 \w and|strong="H8130"\w* \w I|strong="H3808"\w* \w can|strong="H3808"\w*’t stand \w your|strong="H3808"\w* \w solemn|strong="H6116"\w* \w assemblies|strong="H6116"\w*. +\q1 +\v 22 \w Yes|strong="H3588"\w*, \w though|strong="H3588"\w* \w you|strong="H3588"\w* \w offer|strong="H5927"\w* \w me|strong="H7521"\w* \w your|strong="H3588"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H8002"\w* \w and|strong="H5930"\w* \w meal|strong="H4503"\w* \w offerings|strong="H8002"\w*, +\q2 \w I|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w accept|strong="H7521"\w* \w them|strong="H5927"\w*; +\q2 \w neither|strong="H3808"\w* \w will|strong="H3808"\w* \w I|strong="H3588"\w* \w regard|strong="H5027"\w* \w the|strong="H3588"\w* \w peace|strong="H8002"\w* \w offerings|strong="H8002"\w* \w of|strong="H4503"\w* \w your|strong="H3588"\w* fat animals. +\q1 +\v 23 \w Take|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H5493"\w* \w me|strong="H5921"\w* \w the|strong="H5921"\w* \w noise|strong="H1995"\w* \w of|strong="H5921"\w* \w your|strong="H5921"\w* \w songs|strong="H7892"\w*! +\q2 \w I|strong="H5921"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w music|strong="H7892"\w* \w of|strong="H5921"\w* \w your|strong="H5921"\w* \w harps|strong="H5035"\w*. +\q1 +\v 24 \w But|strong="H4325"\w* let \w justice|strong="H4941"\w* \w roll|strong="H1556"\w* \w on|strong="H4325"\w* \w like|strong="H4941"\w* \w rivers|strong="H5158"\w*, +\q2 \w and|strong="H4941"\w* \w righteousness|strong="H6666"\w* \w like|strong="H4941"\w* \w a|strong="H3068"\w* mighty \w stream|strong="H5158"\w*. +\p +\v 25 “\w Did|strong="H3478"\w* \w you|strong="H1004"\w* \w bring|strong="H5066"\w* \w to|strong="H3478"\w* \w me|strong="H5066"\w* \w sacrifices|strong="H2077"\w* \w and|strong="H3478"\w* \w offerings|strong="H4503"\w* \w in|strong="H8141"\w* \w the|strong="H5066"\w* \w wilderness|strong="H4057"\w* forty \w years|strong="H8141"\w*, \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*? +\v 26 \w You|strong="H6213"\w* \w also|strong="H6213"\w* \w carried|strong="H5375"\w* \w the|strong="H5375"\w* tent \w of|strong="H3556"\w* \w your|strong="H5375"\w* king \w and|strong="H6213"\w* \w the|strong="H5375"\w* shrine \w of|strong="H3556"\w* \w your|strong="H5375"\w* \w images|strong="H6754"\w*, \w the|strong="H5375"\w* \w star|strong="H3556"\w* \w of|strong="H3556"\w* \w your|strong="H5375"\w* god, which \w you|strong="H6213"\w* \w made|strong="H6213"\w* \w for|strong="H6213"\w* \w yourselves|strong="H5375"\w*. +\v 27 \w Therefore|strong="H3068"\w* \w I|strong="H3068"\w* \w will|strong="H3068"\w* cause \w you|strong="H1540"\w* \w to|strong="H3068"\w* \w go|strong="H1540"\w* \w into|strong="H1540"\w* \w captivity|strong="H1540"\w* \w beyond|strong="H1973"\w* \w Damascus|strong="H1834"\w*,” says \w Yahweh|strong="H3068"\w*, \w whose|strong="H8034"\w* \w name|strong="H8034"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\c 6 +\p +\v 1 \w Woe|strong="H1945"\w* \w to|strong="H3478"\w* \w those|strong="H1992"\w* \w who|strong="H3478"\w* \w are|strong="H1992"\w* \w at|strong="H3478"\w* \w ease|strong="H7600"\w* \w in|strong="H3478"\w* \w Zion|strong="H6726"\w*, +\q2 \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w those|strong="H1992"\w* \w who|strong="H3478"\w* \w are|strong="H1992"\w* secure \w on|strong="H1004"\w* \w the|strong="H1004"\w* \w mountain|strong="H2022"\w* \w of|strong="H1004"\w* \w Samaria|strong="H8111"\w*, +\q2 \w the|strong="H1004"\w* notable \w men|strong="H1992"\w* \w of|strong="H1004"\w* \w the|strong="H1004"\w* \w chief|strong="H7225"\w* \w of|strong="H1004"\w* \w the|strong="H1004"\w* \w nations|strong="H1471"\w*, +\q2 \w to|strong="H3478"\w* \w whom|strong="H1992"\w* \w the|strong="H1004"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w come|strong="H3478"\w*! +\q1 +\v 2 \w Go|strong="H3212"\w* \w to|strong="H3381"\w* \w Calneh|strong="H3641"\w*, \w and|strong="H3212"\w* \w see|strong="H7200"\w*. +\q2 \w From|strong="H4480"\w* \w there|strong="H8033"\w* \w go|strong="H3212"\w* \w to|strong="H3381"\w* Hamath \w the|strong="H7200"\w* \w great|strong="H7227"\w*. +\q2 \w Then|strong="H5674"\w* \w go|strong="H3212"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w Gath|strong="H1661"\w* \w of|strong="H1366"\w* \w the|strong="H7200"\w* \w Philistines|strong="H6430"\w*. +\q1 \w Are|strong="H7227"\w* \w they|strong="H8033"\w* \w better|strong="H2896"\w* \w than|strong="H4480"\w* these \w kingdoms|strong="H4467"\w*? +\q2 \w Is|strong="H2896"\w* \w their|strong="H7200"\w* \w border|strong="H1366"\w* \w greater|strong="H7227"\w* \w than|strong="H4480"\w* \w your|strong="H7200"\w* \w border|strong="H1366"\w*? +\q1 +\v 3 Alas \w for|strong="H3117"\w* \w you|strong="H3117"\w* who \w put|strong="H5066"\w* far \w away|strong="H7451"\w* \w the|strong="H3117"\w* \w evil|strong="H7451"\w* \w day|strong="H3117"\w*, +\q2 \w and|strong="H3117"\w* cause \w the|strong="H3117"\w* \w seat|strong="H7675"\w* \w of|strong="H3117"\w* \w violence|strong="H2555"\w* \w to|strong="H3117"\w* \w come|strong="H5066"\w* \w near|strong="H5066"\w*, +\q2 +\v 4 who \w lie|strong="H7901"\w* \w on|strong="H5921"\w* \w beds|strong="H4296"\w* \w of|strong="H8432"\w* \w ivory|strong="H8127"\w*, +\q2 \w and|strong="H6629"\w* \w stretch|strong="H5628"\w* \w themselves|strong="H5921"\w* \w on|strong="H5921"\w* \w their|strong="H5921"\w* \w couches|strong="H4296"\w*, +\q2 \w and|strong="H6629"\w* eat \w the|strong="H5921"\w* \w lambs|strong="H3733"\w* \w out|strong="H5921"\w* \w of|strong="H8432"\w* \w the|strong="H5921"\w* \w flock|strong="H6629"\w*, +\q2 \w and|strong="H6629"\w* \w the|strong="H5921"\w* \w calves|strong="H5695"\w* \w out|strong="H5921"\w* \w of|strong="H8432"\w* \w the|strong="H5921"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w the|strong="H5921"\w* \w stall|strong="H4770"\w*, +\q2 +\v 5 \w who|strong="H1992"\w* strum \w on|strong="H5921"\w* \w the|strong="H5921"\w* strings \w of|strong="H3627"\w* \w a|strong="H3068"\w* \w harp|strong="H5035"\w*, +\q2 \w who|strong="H1992"\w* \w invent|strong="H2803"\w* \w for|strong="H5921"\w* \w themselves|strong="H1992"\w* \w instruments|strong="H3627"\w* \w of|strong="H3627"\w* \w music|strong="H7892"\w*, \w like|strong="H2803"\w* \w David|strong="H1732"\w*; +\q2 +\v 6 \w who|strong="H8354"\w* \w drink|strong="H8354"\w* \w wine|strong="H3196"\w* \w in|strong="H5921"\w* \w bowls|strong="H4219"\w*, +\q2 \w and|strong="H8081"\w* \w anoint|strong="H4886"\w* \w themselves|strong="H2470"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* best \w oils|strong="H8081"\w*, +\q2 \w but|strong="H3808"\w* \w they|strong="H5921"\w* \w are|strong="H3130"\w* \w not|strong="H3808"\w* \w grieved|strong="H2470"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w affliction|strong="H7667"\w* \w of|strong="H5921"\w* \w Joseph|strong="H3130"\w*. +\q1 +\v 7 \w Therefore|strong="H3651"\w* \w they|strong="H3651"\w* will \w now|strong="H6258"\w* \w go|strong="H1540"\w* \w captive|strong="H1540"\w* \w with|strong="H7218"\w* \w the|strong="H5493"\w* \w first|strong="H7218"\w* \w who|strong="H5493"\w* \w go|strong="H1540"\w* \w captive|strong="H1540"\w*. +\q2 \w The|strong="H5493"\w* feasting \w and|strong="H7218"\w* lounging will end. +\q1 +\v 8 “\w The|strong="H5002"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w sworn|strong="H7650"\w* \w by|strong="H7650"\w* \w himself|strong="H5315"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5002"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*: +\q2 “\w I|strong="H5315"\w* \w abhor|strong="H8374"\w* \w the|strong="H5002"\w* \w pride|strong="H1347"\w* \w of|strong="H3068"\w* \w Jacob|strong="H3290"\w*, +\q2 \w and|strong="H3068"\w* \w detest|strong="H8130"\w* \w his|strong="H3068"\w* fortresses. +\q2 \w Therefore|strong="H3068"\w* \w I|strong="H5315"\w* \w will|strong="H3068"\w* \w deliver|strong="H5462"\w* \w up|strong="H5462"\w* \w the|strong="H5002"\w* \w city|strong="H5892"\w* \w with|strong="H3068"\w* \w all|strong="H4393"\w* \w that|strong="H5315"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w it|strong="H4393"\w*. +\q1 +\v 9 \w It|strong="H1961"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w that|strong="H1004"\w* \w if|strong="H1961"\w* \w ten|strong="H6235"\w* men \w remain|strong="H3498"\w* \w in|strong="H1004"\w* \w one|strong="H1961"\w* \w house|strong="H1004"\w*, +\q2 they \w will|strong="H1961"\w* \w die|strong="H4191"\w*. +\p +\v 10 “\w When|strong="H3588"\w* \w a|strong="H3068"\w* \w man|strong="H5375"\w*’s relative \w carries|strong="H5375"\w* \w him|strong="H5973"\w*, \w even|strong="H3588"\w* \w he|strong="H3588"\w* \w who|strong="H3068"\w* \w burns|strong="H2142"\w* \w him|strong="H5973"\w*, \w to|strong="H3318"\w* \w bring|strong="H3318"\w* bodies \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w*, \w and|strong="H3068"\w* asks \w him|strong="H5973"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w innermost|strong="H3411"\w* \w parts|strong="H3411"\w* \w of|strong="H1004"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w*, ‘\w Is|strong="H3068"\w* \w there|strong="H4480"\w* \w yet|strong="H5750"\w* \w any|strong="H4480"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*?’ \w And|strong="H3068"\w* \w he|strong="H3588"\w* says, ‘\w No|strong="H3808"\w*;’ \w then|strong="H3318"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* say, ‘Hush! \w Indeed|strong="H3588"\w* \w we|strong="H3068"\w* \w must|strong="H5375"\w* \w not|strong="H3808"\w* \w mention|strong="H2142"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*.’ +\b +\q1 +\v 11 “\w For|strong="H3588"\w*, \w behold|strong="H2009"\w*, \w Yahweh|strong="H3068"\w* \w commands|strong="H6680"\w*, \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w great|strong="H1419"\w* \w house|strong="H1004"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w smashed|strong="H5221"\w* \w to|strong="H3068"\w* \w pieces|strong="H7447"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w little|strong="H6996"\w* \w house|strong="H1004"\w* into bits. +\q1 +\v 12 \w Do|strong="H2790"\w* \w horses|strong="H5483"\w* \w run|strong="H7323"\w* \w on|strong="H7323"\w* \w the|strong="H3588"\w* \w rocky|strong="H5553"\w* \w crags|strong="H5553"\w*? +\q2 Does \w one|strong="H3588"\w* \w plow|strong="H2790"\w* there \w with|strong="H4941"\w* \w oxen|strong="H1241"\w*? +\q1 \w But|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3588"\w* \w turned|strong="H2015"\w* \w justice|strong="H4941"\w* \w into|strong="H2015"\w* \w poison|strong="H7219"\w*, +\q2 \w and|strong="H4941"\w* \w the|strong="H3588"\w* \w fruit|strong="H6529"\w* \w of|strong="H4941"\w* \w righteousness|strong="H6666"\w* \w into|strong="H2015"\w* \w bitterness|strong="H7219"\w*, +\q1 +\v 13 \w you|strong="H3947"\w* \w who|strong="H3808"\w* \w rejoice|strong="H8055"\w* \w in|strong="H8055"\w* \w a|strong="H3068"\w* \w thing|strong="H1697"\w* \w of|strong="H1697"\w* \w nothing|strong="H3808"\w*, \w who|strong="H3808"\w* \w say|strong="H1697"\w*, +\q2 ‘Haven’t \w we|strong="H3068"\w* \w taken|strong="H3947"\w* \w for|strong="H3808"\w* ourselves \w horns|strong="H7161"\w* \w by|strong="H3808"\w* \w our|strong="H3947"\w* own \w strength|strong="H2392"\w*?’ +\q1 +\v 14 \w For|strong="H3588"\w*, \w behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w* \w a|strong="H3068"\w* \w nation|strong="H1471"\w*, \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*,” +\q2 \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H5002"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w*; +\q2 “\w and|strong="H6965"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w afflict|strong="H3905"\w* \w you|strong="H3588"\w* \w from|strong="H5921"\w* \w the|strong="H5002"\w* entrance \w of|strong="H1004"\w* \w Hamath|strong="H2574"\w* \w to|strong="H5704"\w* \w the|strong="H5002"\w* \w brook|strong="H5158"\w* \w of|strong="H1004"\w* \w the|strong="H5002"\w* \w Arabah|strong="H6160"\w*.” +\c 7 +\p +\v 1 \w Thus|strong="H3541"\w* \w the|strong="H7200"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w showed|strong="H7200"\w* \w me|strong="H7200"\w*: \w behold|strong="H2009"\w*, \w he|strong="H3541"\w* \w formed|strong="H3335"\w* \w locusts|strong="H1462"\w* \w in|strong="H4428"\w* \w the|strong="H7200"\w* \w beginning|strong="H8462"\w* \w of|strong="H4428"\w* \w the|strong="H7200"\w* shooting \w up|strong="H5927"\w* \w of|strong="H4428"\w* \w the|strong="H7200"\w* latter \w growth|strong="H3954"\w*; \w and|strong="H4428"\w* \w behold|strong="H2009"\w*, \w it|strong="H7200"\w* \w was|strong="H4428"\w* \w the|strong="H7200"\w* latter \w growth|strong="H3954"\w* \w after|strong="H5927"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w*’s \w harvest|strong="H1488"\w*. +\v 2 \w When|strong="H3588"\w* \w they|strong="H3588"\w* \w finished|strong="H3615"\w* eating \w the|strong="H3588"\w* \w grass|strong="H6212"\w* \w of|strong="H3615"\w* \w the|strong="H3588"\w* land, \w then|strong="H1961"\w* \w I|strong="H3588"\w* said, “\w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, \w forgive|strong="H5545"\w*, \w I|strong="H3588"\w* \w beg|strong="H4994"\w* \w you|strong="H3588"\w*! \w How|strong="H3588"\w* \w could|strong="H4310"\w* \w Jacob|strong="H3290"\w* \w stand|strong="H6965"\w*? \w For|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w small|strong="H6996"\w*.” +\p +\v 3 \w Yahweh|strong="H3068"\w* \w relented|strong="H5162"\w* \w concerning|strong="H5921"\w* \w this|strong="H2063"\w*. “\w It|strong="H5921"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w*,” says \w Yahweh|strong="H3068"\w*. +\p +\v 4 \w Thus|strong="H3541"\w* \w the|strong="H7200"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w showed|strong="H7200"\w* \w me|strong="H7200"\w*: \w behold|strong="H2009"\w*, \w the|strong="H7200"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w called|strong="H7121"\w* \w for|strong="H7121"\w* judgment \w by|strong="H7121"\w* fire; \w and|strong="H7200"\w* \w it|strong="H7121"\w* dried \w up|strong="H7200"\w* \w the|strong="H7200"\w* \w great|strong="H7227"\w* \w deep|strong="H8415"\w*, \w and|strong="H7200"\w* \w would|strong="H7227"\w* \w have|strong="H7200"\w* devoured \w the|strong="H7200"\w* \w land|strong="H2506"\w*. +\v 5 \w Then|strong="H6965"\w* \w I|strong="H3588"\w* said, “\w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, \w stop|strong="H2308"\w*, \w I|strong="H3588"\w* \w beg|strong="H4994"\w* \w you|strong="H3588"\w*! \w How|strong="H3588"\w* \w could|strong="H4310"\w* \w Jacob|strong="H3290"\w* \w stand|strong="H6965"\w*? \w For|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w small|strong="H6996"\w*.” +\p +\v 6 \w Yahweh|strong="H3068"\w* \w relented|strong="H5162"\w* \w concerning|strong="H5921"\w* \w this|strong="H2063"\w*. “\w This|strong="H2063"\w* \w also|strong="H1571"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w*,” says \w the|strong="H5921"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 7 \w Thus|strong="H3541"\w* \w he|strong="H3027"\w* \w showed|strong="H7200"\w* \w me|strong="H7200"\w*: \w behold|strong="H2009"\w*, \w the|strong="H5921"\w* Lord \w stood|strong="H5324"\w* \w beside|strong="H5921"\w* \w a|strong="H3068"\w* \w wall|strong="H2346"\w* made \w by|strong="H3027"\w* \w a|strong="H3068"\w* plumb line, \w with|strong="H5921"\w* \w a|strong="H3068"\w* plumb line \w in|strong="H5921"\w* \w his|strong="H5921"\w* \w hand|strong="H3027"\w*. +\v 8 \w Yahweh|strong="H3068"\w* said \w to|strong="H3478"\w* \w me|strong="H7200"\w*, “\w Amos|strong="H5986"\w*, \w what|strong="H4100"\w* \w do|strong="H3068"\w* \w you|strong="H7760"\w* \w see|strong="H7200"\w*?” +\p \w I|strong="H2005"\w* said, “\w A|strong="H3068"\w* plumb line.” +\p \w Then|strong="H3254"\w* \w the|strong="H7200"\w* \w Lord|strong="H3068"\w* said, “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w set|strong="H7760"\w* \w a|strong="H3068"\w* plumb line \w in|strong="H3478"\w* \w the|strong="H7200"\w* \w middle|strong="H7130"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*. \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w again|strong="H5750"\w* \w pass|strong="H5674"\w* \w by|strong="H5674"\w* \w them|strong="H7760"\w* \w any|strong="H5750"\w* \w more|strong="H3254"\w*. +\v 9 \w The|strong="H5921"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w of|strong="H1004"\w* \w Isaac|strong="H3446"\w* \w will|strong="H3478"\w* \w be|strong="H3478"\w* \w desolate|strong="H8074"\w*, \w the|strong="H5921"\w* \w sanctuaries|strong="H4720"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w will|strong="H3478"\w* \w be|strong="H3478"\w* \w laid|strong="H8074"\w* \w waste|strong="H2717"\w*; \w and|strong="H6965"\w* \w I|strong="H5921"\w* \w will|strong="H3478"\w* \w rise|strong="H6965"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jeroboam|strong="H3379"\w* \w with|strong="H1004"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w*.” +\p +\v 10 \w Then|strong="H7971"\w* Amaziah \w the|strong="H3605"\w* \w priest|strong="H3548"\w* \w of|strong="H4428"\w* \w Bethel|strong="H1008"\w* \w sent|strong="H7971"\w* \w to|strong="H3478"\w* \w Jeroboam|strong="H3379"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w saying|strong="H1697"\w*, “\w Amos|strong="H5986"\w* \w has|strong="H3478"\w* \w conspired|strong="H7194"\w* \w against|strong="H5921"\w* \w you|strong="H3605"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w middle|strong="H7130"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. \w The|strong="H3605"\w* \w land|strong="H7130"\w* \w is|strong="H1697"\w* \w not|strong="H3808"\w* \w able|strong="H3201"\w* \w to|strong="H3478"\w* \w bear|strong="H3557"\w* \w all|strong="H3605"\w* \w his|strong="H3605"\w* \w words|strong="H1697"\w*. +\v 11 \w For|strong="H3588"\w* \w Amos|strong="H5986"\w* \w says|strong="H3541"\w*, ‘\w Jeroboam|strong="H3379"\w* \w will|strong="H3478"\w* \w die|strong="H4191"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w*, \w and|strong="H3478"\w* \w Israel|strong="H3478"\w* \w shall|strong="H3478"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w led|strong="H1540"\w* \w away|strong="H1540"\w* \w captive|strong="H1540"\w* \w out|strong="H5921"\w* \w of|strong="H5921"\w* \w his|strong="H5921"\w* land.’” +\p +\v 12 Amaziah \w also|strong="H3899"\w* said \w to|strong="H3212"\w* \w Amos|strong="H5986"\w*, “\w You|strong="H3212"\w* \w seer|strong="H2374"\w*, \w go|strong="H3212"\w*, \w flee|strong="H1272"\w* \w away|strong="H3212"\w* \w into|strong="H3212"\w* \w the|strong="H8033"\w* land \w of|strong="H3899"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w there|strong="H8033"\w* \w eat|strong="H3899"\w* \w bread|strong="H3899"\w*, \w and|strong="H3063"\w* \w prophesy|strong="H5012"\w* \w there|strong="H8033"\w*, +\v 13 \w but|strong="H3588"\w* don’t \w prophesy|strong="H5012"\w* \w again|strong="H5750"\w* \w any|strong="H5750"\w* \w more|strong="H3254"\w* \w at|strong="H1004"\w* \w Bethel|strong="H1008"\w*; \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w the|strong="H3588"\w* \w king|strong="H4428"\w*’s \w sanctuary|strong="H4720"\w*, \w and|strong="H4428"\w* \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w royal|strong="H4428"\w* \w house|strong="H1004"\w*!” +\p +\v 14 \w Then|strong="H6030"\w* \w Amos|strong="H5986"\w* \w answered|strong="H6030"\w* Amaziah, “\w I|strong="H3588"\w* \w was|strong="H1121"\w* \w no|strong="H3808"\w* \w prophet|strong="H5030"\w*, \w neither|strong="H3808"\w* \w was|strong="H1121"\w* \w I|strong="H3588"\w* \w a|strong="H3068"\w* \w prophet|strong="H5030"\w*’s \w son|strong="H1121"\w*, \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w was|strong="H1121"\w* \w a|strong="H3068"\w* herdsman, \w and|strong="H1121"\w* \w a|strong="H3068"\w* farmer \w of|strong="H1121"\w* \w sycamore|strong="H8256"\w* \w figs|strong="H1103"\w*; +\v 15 \w and|strong="H3478"\w* \w Yahweh|strong="H3068"\w* \w took|strong="H3947"\w* \w me|strong="H3947"\w* \w from|strong="H3478"\w* \w following|strong="H3212"\w* \w the|strong="H3947"\w* \w flock|strong="H6629"\w*, \w and|strong="H3478"\w* \w Yahweh|strong="H3068"\w* said \w to|strong="H3478"\w* \w me|strong="H3947"\w*, ‘\w Go|strong="H3212"\w*, \w prophesy|strong="H5012"\w* \w to|strong="H3478"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*.’ +\v 16 \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* \w listen|strong="H8085"\w* \w to|strong="H3478"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*: ‘\w You|strong="H5921"\w* \w say|strong="H1697"\w*, Don’t \w prophesy|strong="H5012"\w* \w against|strong="H5921"\w* \w Israel|strong="H3478"\w*, \w and|strong="H3478"\w* don’t \w preach|strong="H5197"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Isaac|strong="H3446"\w*.’ +\v 17 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: ‘\w Your|strong="H3068"\w* wife \w shall|strong="H3068"\w* \w be|strong="H4191"\w* \w a|strong="H3068"\w* \w prostitute|strong="H2181"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w city|strong="H5892"\w*, \w and|strong="H1121"\w* \w your|strong="H3068"\w* \w sons|strong="H1121"\w* \w and|strong="H1121"\w* \w your|strong="H3068"\w* \w daughters|strong="H1323"\w* \w shall|strong="H3068"\w* \w fall|strong="H5307"\w* \w by|strong="H5921"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w*, \w and|strong="H1121"\w* \w your|strong="H3068"\w* land \w shall|strong="H3068"\w* \w be|strong="H4191"\w* \w divided|strong="H2505"\w* \w by|strong="H5921"\w* \w line|strong="H2256"\w*; \w and|strong="H1121"\w* \w you|strong="H5921"\w* \w yourself|strong="H5307"\w* \w shall|strong="H3068"\w* \w die|strong="H4191"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* land \w that|strong="H3068"\w* \w is|strong="H3068"\w* \w unclean|strong="H2931"\w*, \w and|strong="H1121"\w* \w Israel|strong="H3478"\w* \w shall|strong="H3068"\w* \w surely|strong="H4191"\w* \w be|strong="H4191"\w* \w led|strong="H1540"\w* \w away|strong="H1540"\w* \w captive|strong="H1540"\w* \w out|strong="H5921"\w* \w of|strong="H1121"\w* \w his|strong="H3068"\w* land.’” +\c 8 +\p +\v 1 \w Thus|strong="H3541"\w* \w the|strong="H7200"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w* \w showed|strong="H7200"\w* \w me|strong="H7200"\w*: \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w basket|strong="H3619"\w* \w of|strong="H3069"\w* \w summer|strong="H7019"\w* \w fruit|strong="H7019"\w*. +\p +\v 2 \w He|strong="H3068"\w* said, “\w Amos|strong="H5986"\w*, \w what|strong="H4100"\w* \w do|strong="H3068"\w* \w you|strong="H3808"\w* \w see|strong="H7200"\w*?” +\p \w I|strong="H7200"\w* said, “\w A|strong="H3068"\w* \w basket|strong="H3619"\w* \w of|strong="H3068"\w* \w summer|strong="H7019"\w* \w fruit|strong="H7019"\w*.” +\p \w Then|strong="H3254"\w* \w Yahweh|strong="H3068"\w* said \w to|strong="H3478"\w* \w me|strong="H7200"\w*, +\q1 “\w The|strong="H7200"\w* \w end|strong="H7093"\w* \w has|strong="H3068"\w* \w come|strong="H5674"\w* \w on|strong="H5674"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w*. +\q2 \w I|strong="H7200"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w again|strong="H5750"\w* \w pass|strong="H5674"\w* \w by|strong="H5674"\w* \w them|strong="H7200"\w* \w any|strong="H5750"\w* \w more|strong="H3254"\w*. +\q1 +\v 3 \w The|strong="H3605"\w* \w songs|strong="H7892"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w temple|strong="H1964"\w* \w will|strong="H7227"\w* \w be|strong="H3117"\w* \w wailing|strong="H3213"\w* \w in|strong="H3117"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w*,” \w says|strong="H5002"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*. +\q2 “\w The|strong="H3605"\w* \w dead|strong="H6297"\w* \w bodies|strong="H6297"\w* \w will|strong="H7227"\w* \w be|strong="H3117"\w* \w many|strong="H7227"\w*. \w In|strong="H3117"\w* \w every|strong="H3605"\w* \w place|strong="H4725"\w* \w they|strong="H3117"\w* \w will|strong="H7227"\w* \w throw|strong="H7993"\w* \w them|strong="H7993"\w* \w out|strong="H7993"\w* \w with|strong="H3117"\w* \w silence|strong="H2013"\w*. +\q1 +\v 4 \w Hear|strong="H8085"\w* \w this|strong="H2063"\w*, \w you|strong="H7673"\w* who \w desire|strong="H7602"\w* \w to|strong="H8085"\w* \w swallow|strong="H7602"\w* \w up|strong="H7602"\w* \w the|strong="H8085"\w* needy, +\q2 \w and|strong="H8085"\w* cause \w the|strong="H8085"\w* \w poor|strong="H6035"\w* \w of|strong="H8085"\w* \w the|strong="H8085"\w* land \w to|strong="H8085"\w* \w fail|strong="H7673"\w*, +\q2 +\v 5 saying, ‘\w When|strong="H4970"\w* \w will|strong="H4820"\w* \w the|strong="H5674"\w* \w new|strong="H2320"\w* \w moon|strong="H2320"\w* \w be|strong="H2320"\w* \w gone|strong="H5674"\w*, \w that|strong="H5674"\w* \w we|strong="H3068"\w* \w may|strong="H1431"\w* \w sell|strong="H7666"\w* \w grain|strong="H1250"\w*? +\q2 \w And|strong="H5674"\w* \w the|strong="H5674"\w* \w Sabbath|strong="H7676"\w*, \w that|strong="H5674"\w* \w we|strong="H3068"\w* \w may|strong="H1431"\w* market \w wheat|strong="H1250"\w*, +\q2 making \w the|strong="H5674"\w* ephah\f + \fr 8:5 \ft 1 ephah is about 22 liters or about 2/3 of a bushel \f* \w small|strong="H6994"\w*, \w and|strong="H5674"\w* \w the|strong="H5674"\w* \w shekel|strong="H8255"\w*\f + \fr 8:5 \ft a normal shekel is about 10 grams or about 0.35 ounces.\f* large, +\q2 \w and|strong="H5674"\w* dealing falsely \w with|strong="H5674"\w* \w balances|strong="H3976"\w* \w of|strong="H8255"\w* \w deceit|strong="H4820"\w*; +\q1 +\v 6 \w that|strong="H5668"\w* \w we|strong="H3068"\w* \w may|strong="H5668"\w* \w buy|strong="H7069"\w* \w the|strong="H7069"\w* \w poor|strong="H1800"\w* \w for|strong="H3701"\w* \w silver|strong="H3701"\w*, +\q2 \w and|strong="H3701"\w* \w the|strong="H7069"\w* \w needy|strong="H1800"\w* \w for|strong="H3701"\w* \w a|strong="H3068"\w* pair \w of|strong="H3701"\w* \w sandals|strong="H5275"\w*, +\q2 \w and|strong="H3701"\w* \w sell|strong="H7666"\w* \w the|strong="H7069"\w* sweepings \w with|strong="H1800"\w* \w the|strong="H7069"\w* \w wheat|strong="H1250"\w*?’” +\q1 +\v 7 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w sworn|strong="H7650"\w* \w by|strong="H7650"\w* \w the|strong="H3605"\w* \w pride|strong="H1347"\w* \w of|strong="H3068"\w* \w Jacob|strong="H3290"\w*, +\q2 “Surely \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w never|strong="H5331"\w* \w forget|strong="H7911"\w* \w any|strong="H3605"\w* \w of|strong="H3068"\w* \w their|strong="H3605"\w* \w works|strong="H4639"\w*. +\q1 +\v 8 Won’t \w the|strong="H3605"\w* land \w tremble|strong="H7264"\w* \w for|strong="H5921"\w* \w this|strong="H2063"\w*, +\q2 \w and|strong="H4714"\w* \w everyone|strong="H3605"\w* \w mourn|strong="H5921"\w* \w who|strong="H3605"\w* \w dwells|strong="H3427"\w* \w in|strong="H3427"\w* \w it|strong="H5921"\w*? +\q1 Yes, \w it|strong="H5921"\w* \w will|strong="H4714"\w* \w rise|strong="H5927"\w* \w up|strong="H5927"\w* \w wholly|strong="H3605"\w* \w like|strong="H3808"\w* \w the|strong="H3605"\w* \w River|strong="H2975"\w*; +\q2 \w and|strong="H4714"\w* \w it|strong="H5921"\w* \w will|strong="H4714"\w* \w be|strong="H3808"\w* \w stirred|strong="H7264"\w* \w up|strong="H5927"\w* \w and|strong="H4714"\w* sink again, \w like|strong="H3808"\w* \w the|strong="H3605"\w* \w River|strong="H2975"\w* \w of|strong="H3427"\w* \w Egypt|strong="H4714"\w*. +\q1 +\v 9 \w It|strong="H1931"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w in|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3069"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w that|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w cause|strong="H1961"\w* \w the|strong="H5002"\w* \w sun|strong="H8121"\w* \w to|strong="H1961"\w* \w go|strong="H1961"\w* down \w at|strong="H3117"\w* \w noon|strong="H6672"\w*, +\q2 \w and|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w darken|strong="H2821"\w* \w the|strong="H5002"\w* \w earth|strong="H8121"\w* \w in|strong="H3117"\w* \w the|strong="H5002"\w* clear \w day|strong="H3117"\w*. +\q1 +\v 10 \w I|strong="H3117"\w* \w will|strong="H3117"\w* \w turn|strong="H2015"\w* \w your|strong="H3605"\w* \w feasts|strong="H2282"\w* \w into|strong="H2015"\w* mourning, +\q2 \w and|strong="H3117"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w songs|strong="H7892"\w* \w into|strong="H2015"\w* \w lamentation|strong="H7015"\w*; +\q1 \w and|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H3117"\w* \w make|strong="H7760"\w* \w you|strong="H3605"\w* \w wear|strong="H5927"\w* \w sackcloth|strong="H8242"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* bodies, +\q2 \w and|strong="H3117"\w* \w baldness|strong="H7144"\w* \w on|strong="H5921"\w* \w every|strong="H3605"\w* \w head|strong="H7218"\w*. +\q1 \w I|strong="H3117"\w* \w will|strong="H3117"\w* \w make|strong="H7760"\w* \w it|strong="H7760"\w* \w like|strong="H5927"\w* \w the|strong="H3605"\w* mourning \w for|strong="H5921"\w* \w an|strong="H7760"\w* \w only|strong="H3173"\w* \w son|strong="H3173"\w*, +\q2 \w and|strong="H3117"\w* \w its|strong="H3605"\w* end \w like|strong="H5927"\w* \w a|strong="H3068"\w* \w bitter|strong="H4751"\w* \w day|strong="H3117"\w*. +\q1 +\v 11 \w Behold|strong="H2009"\w*, \w the|strong="H5002"\w* \w days|strong="H3117"\w* \w come|strong="H7971"\w*,” \w says|strong="H5002"\w* \w the|strong="H5002"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w that|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w a|strong="H3068"\w* \w famine|strong="H7458"\w* \w in|strong="H3068"\w* \w the|strong="H5002"\w* land, +\q2 \w not|strong="H3808"\w* \w a|strong="H3068"\w* \w famine|strong="H7458"\w* \w of|strong="H3068"\w* \w bread|strong="H3899"\w*, +\q2 \w nor|strong="H3808"\w* \w a|strong="H3068"\w* \w thirst|strong="H6772"\w* \w for|strong="H3588"\w* \w water|strong="H4325"\w*, +\q2 \w but|strong="H3588"\w* \w of|strong="H3068"\w* \w hearing|strong="H8085"\w* \w Yahweh|strong="H3068"\w*’s \w words|strong="H1697"\w*. +\q1 +\v 12 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w wander|strong="H5128"\w* \w from|strong="H5704"\w* \w sea|strong="H3220"\w* \w to|strong="H5704"\w* \w sea|strong="H3220"\w*, +\q2 \w and|strong="H3068"\w* \w from|strong="H5704"\w* \w the|strong="H3068"\w* \w north|strong="H6828"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3068"\w* \w east|strong="H4217"\w*; +\q2 \w they|strong="H3068"\w* \w will|strong="H3068"\w* run \w back|strong="H7751"\w* \w and|strong="H3068"\w* \w forth|strong="H7751"\w* \w to|strong="H5704"\w* \w seek|strong="H1245"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w find|strong="H4672"\w* \w it|strong="H5704"\w*. +\q1 +\v 13 \w In|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w the|strong="H3117"\w* \w beautiful|strong="H3303"\w* \w virgins|strong="H1330"\w* +\q2 \w and|strong="H3117"\w* \w the|strong="H3117"\w* \w young|strong="H3117"\w* men \w will|strong="H1931"\w* \w faint|strong="H5968"\w* \w for|strong="H3117"\w* \w thirst|strong="H6772"\w*. +\q1 +\v 14 Those \w who|strong="H2416"\w* \w swear|strong="H7650"\w* \w by|strong="H7650"\w* \w the|strong="H6965"\w* sin \w of|strong="H1870"\w* \w Samaria|strong="H8111"\w*, +\q2 \w and|strong="H6965"\w* say, ‘\w As|strong="H6965"\w* \w your|strong="H3808"\w* \w god|strong="H3808"\w*, \w Dan|strong="H1835"\w*, \w lives|strong="H2416"\w*,’ +\q2 \w and|strong="H6965"\w*, ‘\w As|strong="H6965"\w* \w the|strong="H6965"\w* \w way|strong="H1870"\w* \w of|strong="H1870"\w* Beersheba \w lives|strong="H2416"\w*,’ +\q2 \w they|strong="H3808"\w* \w will|strong="H3808"\w* \w fall|strong="H5307"\w*, \w and|strong="H6965"\w* \w never|strong="H3808"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w again|strong="H5750"\w*.” +\c 9 +\p +\v 1 \w I|strong="H5921"\w* \w saw|strong="H7200"\w* \w the|strong="H3605"\w* Lord \w standing|strong="H5324"\w* \w beside|strong="H5921"\w* \w the|strong="H3605"\w* \w altar|strong="H4196"\w*, \w and|strong="H7218"\w* \w he|strong="H3605"\w* said, “\w Strike|strong="H5221"\w* \w the|strong="H3605"\w* \w tops|strong="H7218"\w* \w of|strong="H7218"\w* \w the|strong="H3605"\w* \w pillars|strong="H3730"\w*, \w that|strong="H7200"\w* \w the|strong="H3605"\w* \w thresholds|strong="H5592"\w* \w may|strong="H2719"\w* \w shake|strong="H7493"\w*. \w Break|strong="H1214"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* pieces \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w head|strong="H7218"\w* \w of|strong="H7218"\w* \w all|strong="H3605"\w* \w of|strong="H7218"\w* \w them|strong="H5921"\w*. \w I|strong="H5921"\w* \w will|strong="H2719"\w* \w kill|strong="H2026"\w* \w the|strong="H3605"\w* last \w of|strong="H7218"\w* \w them|strong="H5921"\w* \w with|strong="H5921"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*. \w Not|strong="H3808"\w* \w one|strong="H3605"\w* \w of|strong="H7218"\w* \w them|strong="H5921"\w* \w will|strong="H2719"\w* \w flee|strong="H5127"\w* \w away|strong="H5127"\w*. \w Not|strong="H3808"\w* \w one|strong="H3605"\w* \w of|strong="H7218"\w* \w them|strong="H5921"\w* \w will|strong="H2719"\w* \w escape|strong="H4422"\w*. +\v 2 Though \w they|strong="H8033"\w* \w dig|strong="H2864"\w* \w into|strong="H3381"\w* \w Sheol|strong="H7585"\w*,\f + \fr 9:2 \ft Sheol is the place of the dead.\f* \w there|strong="H8033"\w* \w my|strong="H3947"\w* \w hand|strong="H3027"\w* \w will|strong="H8064"\w* \w take|strong="H3947"\w* \w them|strong="H3027"\w*; \w and|strong="H8064"\w* though \w they|strong="H8033"\w* \w climb|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3381"\w* \w heaven|strong="H8064"\w*, \w there|strong="H8033"\w* \w I|strong="H3027"\w* \w will|strong="H8064"\w* \w bring|strong="H5927"\w* \w them|strong="H3027"\w* \w down|strong="H3381"\w*. +\v 3 Though \w they|strong="H8033"\w* \w hide|strong="H5641"\w* \w themselves|strong="H2244"\w* \w in|strong="H3220"\w* \w the|strong="H3947"\w* \w top|strong="H7218"\w* \w of|strong="H7218"\w* \w Carmel|strong="H3760"\w*, \w I|strong="H6680"\w* \w will|strong="H5869"\w* \w search|strong="H2664"\w* \w and|strong="H5869"\w* \w take|strong="H3947"\w* \w them|strong="H6680"\w* \w out|strong="H3947"\w* \w from|strong="H3947"\w* \w there|strong="H8033"\w*; \w and|strong="H5869"\w* though \w they|strong="H8033"\w* \w be|strong="H5869"\w* \w hidden|strong="H5641"\w* \w from|strong="H3947"\w* \w my|strong="H3947"\w* \w sight|strong="H5869"\w* \w in|strong="H3220"\w* \w the|strong="H3947"\w* \w bottom|strong="H7172"\w* \w of|strong="H7218"\w* \w the|strong="H3947"\w* \w sea|strong="H3220"\w*, \w there|strong="H8033"\w* \w I|strong="H6680"\w* \w will|strong="H5869"\w* \w command|strong="H6680"\w* \w the|strong="H3947"\w* \w serpent|strong="H5175"\w*, \w and|strong="H5869"\w* \w it|strong="H8033"\w* \w will|strong="H5869"\w* \w bite|strong="H5391"\w* \w them|strong="H6680"\w*. +\v 4 Though \w they|strong="H8033"\w* \w go|strong="H3212"\w* \w into|strong="H3212"\w* \w captivity|strong="H7628"\w* \w before|strong="H6440"\w* \w their|strong="H7760"\w* enemies, \w there|strong="H8033"\w* \w I|strong="H5921"\w* \w will|strong="H5869"\w* \w command|strong="H6680"\w* \w the|strong="H6440"\w* \w sword|strong="H2719"\w*, \w and|strong="H3212"\w* \w it|strong="H7760"\w* \w will|strong="H5869"\w* \w kill|strong="H2026"\w* \w them|strong="H5921"\w*. \w I|strong="H5921"\w* \w will|strong="H5869"\w* \w set|strong="H7760"\w* \w my|strong="H7760"\w* \w eyes|strong="H5869"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w for|strong="H5921"\w* \w evil|strong="H7451"\w*, \w and|strong="H3212"\w* \w not|strong="H3808"\w* \w for|strong="H5921"\w* \w good|strong="H2896"\w*. +\v 5 \w For|strong="H4714"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H3427"\w* \w Armies|strong="H6635"\w*, \w is|strong="H3605"\w* \w he|strong="H3605"\w* \w who|strong="H3605"\w* \w touches|strong="H5060"\w* \w the|strong="H3605"\w* land \w and|strong="H4714"\w* \w it|strong="H5927"\w* \w melts|strong="H4127"\w*, \w and|strong="H4714"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w it|strong="H5927"\w* \w will|strong="H4714"\w* mourn; \w and|strong="H4714"\w* \w it|strong="H5927"\w* \w will|strong="H4714"\w* \w rise|strong="H5927"\w* \w up|strong="H5927"\w* \w wholly|strong="H3605"\w* \w like|strong="H5927"\w* \w the|strong="H3605"\w* \w River|strong="H2975"\w*, \w and|strong="H4714"\w* \w will|strong="H4714"\w* \w sink|strong="H8257"\w* again, \w like|strong="H5927"\w* \w the|strong="H3605"\w* \w River|strong="H2975"\w* \w of|strong="H3427"\w* \w Egypt|strong="H4714"\w*. +\v 6 \w It|strong="H7121"\w* \w is|strong="H3068"\w* \w he|strong="H3068"\w* \w who|strong="H3068"\w* \w builds|strong="H1129"\w* \w his|strong="H3068"\w* rooms \w in|strong="H5921"\w* \w the|strong="H6440"\w* \w heavens|strong="H8064"\w*, \w and|strong="H3068"\w* \w has|strong="H3068"\w* \w founded|strong="H3245"\w* \w his|strong="H3068"\w* vault \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w earth|strong="H8064"\w*; \w he|strong="H3068"\w* \w who|strong="H3068"\w* \w calls|strong="H7121"\w* \w for|strong="H5921"\w* \w the|strong="H6440"\w* \w waters|strong="H4325"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w sea|strong="H3220"\w*, \w and|strong="H3068"\w* \w pours|strong="H8210"\w* \w them|strong="H5921"\w* \w out|strong="H8210"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w earth|strong="H8064"\w*—\w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w*. +\v 7 \w Are|strong="H1121"\w* \w you|strong="H3808"\w* \w not|strong="H3808"\w* \w like|strong="H3478"\w* \w the|strong="H5002"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w the|strong="H5002"\w* \w Ethiopians|strong="H3569"\w* \w to|strong="H3478"\w* \w me|strong="H3808"\w*, \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*?” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. “Haven’t \w I|strong="H4714"\w* \w brought|strong="H5927"\w* \w up|strong="H5927"\w* \w Israel|strong="H3478"\w* \w out|strong="H3808"\w* \w of|strong="H1121"\w* \w the|strong="H5002"\w* land \w of|strong="H1121"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H1121"\w* \w the|strong="H5002"\w* \w Philistines|strong="H6430"\w* \w from|strong="H5927"\w* \w Caphtor|strong="H3731"\w*, \w and|strong="H1121"\w* \w the|strong="H5002"\w* Syrians \w from|strong="H5927"\w* \w Kir|strong="H7024"\w*? +\v 8 \w Behold|strong="H2009"\w*, \w the|strong="H6440"\w* \w eyes|strong="H5869"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w are|strong="H5869"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w sinful|strong="H2400"\w* \w kingdom|strong="H4467"\w*, \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w destroy|strong="H8045"\w* \w it|strong="H5921"\w* \w from|strong="H6440"\w* \w off|strong="H5921"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* earth, \w except|strong="H3588"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w utterly|strong="H8045"\w* \w destroy|strong="H8045"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 9 “\w For|strong="H3588"\w* \w behold|strong="H2009"\w*, \w I|strong="H3588"\w* \w will|strong="H1471"\w* \w command|strong="H6680"\w*, \w and|strong="H3478"\w* \w I|strong="H3588"\w* \w will|strong="H1471"\w* \w sift|strong="H5128"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w* \w among|strong="H3808"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w as|strong="H3588"\w* \w grain|strong="H3605"\w* \w is|strong="H2009"\w* \w sifted|strong="H5128"\w* \w in|strong="H3478"\w* \w a|strong="H3068"\w* \w sieve|strong="H3531"\w*, \w yet|strong="H3588"\w* \w not|strong="H3808"\w* \w the|strong="H3605"\w* least \w kernel|strong="H6872"\w* \w will|strong="H1471"\w* \w fall|strong="H5307"\w* \w on|strong="H5307"\w* \w the|strong="H3605"\w* earth. +\v 10 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w sinners|strong="H2400"\w* \w of|strong="H5971"\w* \w my|strong="H3605"\w* \w people|strong="H5971"\w* \w will|strong="H5971"\w* \w die|strong="H4191"\w* \w by|strong="H4191"\w* \w the|strong="H3605"\w* \w sword|strong="H2719"\w*, \w who|strong="H3605"\w* say, ‘\w Evil|strong="H7451"\w* won’t \w overtake|strong="H5066"\w* \w nor|strong="H3808"\w* \w meet|strong="H6923"\w* \w us|strong="H7451"\w*.’ +\v 11 \w In|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H1931"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w the|strong="H3117"\w* tent \w of|strong="H3117"\w* \w David|strong="H1732"\w* \w who|strong="H1931"\w* \w is|strong="H1931"\w* \w fallen|strong="H5307"\w* \w and|strong="H6965"\w* close \w up|strong="H6965"\w* \w its|strong="H6965"\w* \w breaches|strong="H6556"\w*, \w and|strong="H6965"\w* \w I|strong="H3117"\w* \w will|strong="H1931"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w its|strong="H6965"\w* \w ruins|strong="H2034"\w*, \w and|strong="H6965"\w* \w I|strong="H3117"\w* \w will|strong="H1931"\w* \w build|strong="H1129"\w* \w it|strong="H1931"\w* \w as|strong="H3117"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w old|strong="H5769"\w*, +\v 12 \w that|strong="H3605"\w* \w they|strong="H3068"\w* \w may|strong="H3068"\w* \w possess|strong="H3423"\w* \w the|strong="H3605"\w* \w remnant|strong="H7611"\w* \w of|strong="H3068"\w* Edom \w and|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w who|strong="H3605"\w* \w are|strong="H1471"\w* \w called|strong="H7121"\w* \w by|strong="H5921"\w* \w my|strong="H3605"\w* \w name|strong="H8034"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w who|strong="H3605"\w* \w does|strong="H6213"\w* \w this|strong="H2063"\w*. +\q1 +\v 13 “\w Behold|strong="H2009"\w*, \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w come|strong="H5066"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w that|strong="H3605"\w* \w the|strong="H3605"\w* \w plowman|strong="H2790"\w* \w shall|strong="H3068"\w* \w overtake|strong="H5066"\w* \w the|strong="H3605"\w* \w reaper|strong="H7114"\w*, +\q2 \w and|strong="H3068"\w* \w the|strong="H3605"\w* \w one|strong="H3605"\w* \w treading|strong="H1869"\w* \w grapes|strong="H6025"\w* \w him|strong="H3605"\w* \w who|strong="H3605"\w* \w sows|strong="H4900"\w* \w seed|strong="H2233"\w*; +\q2 \w and|strong="H3068"\w* \w sweet|strong="H6071"\w* \w wine|strong="H6071"\w* \w will|strong="H3068"\w* \w drip|strong="H5197"\w* \w from|strong="H3117"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w*, +\q2 \w and|strong="H3068"\w* flow \w from|strong="H3117"\w* \w the|strong="H3605"\w* \w hills|strong="H1389"\w*. +\q1 +\v 14 \w I|strong="H3478"\w* \w will|strong="H5971"\w* \w bring|strong="H7725"\w* \w my|strong="H7725"\w* \w people|strong="H5971"\w* \w Israel|strong="H3478"\w* \w back|strong="H7725"\w* \w from|strong="H7725"\w* \w captivity|strong="H7622"\w*, +\q2 \w and|strong="H3478"\w* \w they|strong="H6213"\w* \w will|strong="H5971"\w* \w rebuild|strong="H1129"\w* \w the|strong="H6213"\w* \w ruined|strong="H8074"\w* \w cities|strong="H5892"\w*, \w and|strong="H3478"\w* \w inhabit|strong="H3427"\w* \w them|strong="H7725"\w*; +\q2 \w and|strong="H3478"\w* \w they|strong="H6213"\w* \w will|strong="H5971"\w* \w plant|strong="H5193"\w* \w vineyards|strong="H3754"\w*, \w and|strong="H3478"\w* \w drink|strong="H8354"\w* \w wine|strong="H3196"\w* \w from|strong="H7725"\w* \w them|strong="H7725"\w*. +\q1 \w They|strong="H6213"\w* \w shall|strong="H5971"\w* \w also|strong="H6213"\w* \w make|strong="H6213"\w* \w gardens|strong="H1593"\w*, +\q2 \w and|strong="H3478"\w* eat \w their|strong="H7725"\w* \w fruit|strong="H6529"\w*. +\q1 +\v 15 \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w plant|strong="H5193"\w* \w them|strong="H5414"\w* \w on|strong="H5921"\w* \w their|strong="H3068"\w* land, +\q2 \w and|strong="H3068"\w* \w they|strong="H1992"\w* \w will|strong="H3068"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w be|strong="H3808"\w* \w plucked|strong="H5428"\w* \w up|strong="H5414"\w* \w out|strong="H5414"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* land \w which|strong="H3068"\w* \w I|strong="H5414"\w* \w have|strong="H3068"\w* \w given|strong="H5414"\w* \w them|strong="H5414"\w*,” +\q2 says \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/32-OBAeng-web.usfm b/bibles/eng-web_usfm/32-OBAeng-web.usfm new file mode 100644 index 0000000..4a200e3 --- /dev/null +++ b/bibles/eng-web_usfm/32-OBAeng-web.usfm @@ -0,0 +1,33 @@ +\id OBA 31-OBA-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Obadiah +\toc1 The Book of Obadiah +\toc2 Obadiah +\toc3 Oba +\mt2 The Book of +\mt1 Obadiah +\c 1 +\p +\v 1 \w The|strong="H5921"\w* \w vision|strong="H2377"\w* \w of|strong="H3068"\w* \w Obadiah|strong="H5662"\w*. \w This|strong="H3541"\w* \w is|strong="H3068"\w* \w what|strong="H3541"\w* \w the|strong="H5921"\w* \w Lord|strong="H3068"\w*\f + \fr 1:1 \ft The word translated “Lord” is “Adonai.”\f* \w Yahweh|strong="H3068"\w*\f + \fr 1:1 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w says|strong="H3541"\w* \w about|strong="H5921"\w* Edom. \w We|strong="H8085"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w news|strong="H8052"\w* \w from|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H6965"\w* \w an|strong="H7971"\w* \w ambassador|strong="H6735"\w* \w is|strong="H3068"\w* \w sent|strong="H7971"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w*, saying, “\w Arise|strong="H6965"\w*, \w and|strong="H6965"\w* \w let|strong="H7971"\w*’s \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H5921"\w* \w her|strong="H7971"\w* \w in|strong="H5921"\w* \w battle|strong="H4421"\w*. +\v 2 \w Behold|strong="H2009"\w*,\f + \fr 1:2 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w I|strong="H5414"\w* \w have|strong="H1471"\w* \w made|strong="H5414"\w* \w you|strong="H5414"\w* \w small|strong="H6996"\w* among \w the|strong="H5414"\w* \w nations|strong="H1471"\w*. \w You|strong="H5414"\w* \w are|strong="H1471"\w* \w greatly|strong="H3966"\w* despised. +\v 3 \w The|strong="H3381"\w* \w pride|strong="H2087"\w* \w of|strong="H3820"\w* \w your|strong="H3381"\w* \w heart|strong="H3820"\w* \w has|strong="H4310"\w* \w deceived|strong="H5377"\w* \w you|strong="H3381"\w*, \w you|strong="H3381"\w* \w who|strong="H4310"\w* \w dwell|strong="H7931"\w* \w in|strong="H7931"\w* \w the|strong="H3381"\w* \w clefts|strong="H2288"\w* \w of|strong="H3820"\w* \w the|strong="H3381"\w* \w rock|strong="H5553"\w*, \w whose|strong="H4310"\w* \w habitation|strong="H7931"\w* \w is|strong="H3820"\w* \w high|strong="H4791"\w*, \w who|strong="H4310"\w* says \w in|strong="H7931"\w* \w his|strong="H7931"\w* \w heart|strong="H3820"\w*, ‘\w Who|strong="H4310"\w* \w will|strong="H4310"\w* \w bring|strong="H3381"\w* \w me|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w the|strong="H3381"\w* ground?’ +\v 4 Though \w you|strong="H7760"\w* \w mount|strong="H5404"\w* \w on|strong="H7760"\w* \w high|strong="H1361"\w* \w as|strong="H3068"\w* \w the|strong="H5002"\w* \w eagle|strong="H5404"\w*, \w and|strong="H3068"\w* though \w your|strong="H3068"\w* \w nest|strong="H7064"\w* \w is|strong="H3068"\w* \w set|strong="H7760"\w* \w among|strong="H8033"\w* \w the|strong="H5002"\w* \w stars|strong="H3556"\w*, \w I|strong="H7760"\w* \w will|strong="H3068"\w* \w bring|strong="H3381"\w* \w you|strong="H7760"\w* \w down|strong="H3381"\w* \w from|strong="H3381"\w* \w there|strong="H8033"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 5 “If \w thieves|strong="H1590"\w* came \w to|strong="H3808"\w* \w you|strong="H3808"\w*, if \w robbers|strong="H7703"\w* \w by|strong="H3915"\w* \w night|strong="H3915"\w*—oh, \w what|strong="H1767"\w* disaster awaits \w you|strong="H3808"\w*—wouldn’t \w they|strong="H3808"\w* only \w steal|strong="H1589"\w* until \w they|strong="H3808"\w* \w had|strong="H1767"\w* \w enough|strong="H1767"\w*? If grape pickers came \w to|strong="H3808"\w* \w you|strong="H3808"\w*, wouldn’t \w they|strong="H3808"\w* \w leave|strong="H7604"\w* \w some|strong="H5955"\w* \w gleaning|strong="H5955"\w* \w grapes|strong="H5955"\w*? +\v 6 How \w Esau|strong="H6215"\w* will be \w ransacked|strong="H2664"\w*! How \w his|strong="H6215"\w* \w hidden|strong="H4710"\w* \w treasures|strong="H4710"\w* are sought \w out|strong="H2664"\w*! +\v 7 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w men|strong="H3605"\w* \w of|strong="H1366"\w* \w your|strong="H3605"\w* alliance \w have|strong="H7965"\w* \w brought|strong="H7760"\w* \w you|strong="H3605"\w* \w on|strong="H7760"\w* \w your|strong="H3605"\w* \w way|strong="H7971"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w border|strong="H1366"\w*. \w The|strong="H3605"\w* \w men|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H3201"\w* \w at|strong="H3201"\w* \w peace|strong="H7965"\w* \w with|strong="H1285"\w* \w you|strong="H3605"\w* \w have|strong="H7965"\w* \w deceived|strong="H5377"\w* \w you|strong="H3605"\w*, \w and|strong="H7971"\w* \w prevailed|strong="H3201"\w* \w against|strong="H7971"\w* \w you|strong="H3605"\w*. Friends \w who|strong="H3605"\w* \w eat|strong="H3899"\w* \w your|strong="H3605"\w* \w bread|strong="H3899"\w* \w lay|strong="H7760"\w* \w a|strong="H3068"\w* snare \w under|strong="H8478"\w* \w you|strong="H3605"\w*. \w There|strong="H7965"\w* \w is|strong="H3605"\w* \w no|strong="H3605"\w* \w understanding|strong="H8394"\w* \w in|strong="H3899"\w* \w him|strong="H7971"\w*.” +\p +\v 8 “Won’t \w I|strong="H3117"\w* \w in|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*”, \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “destroy \w the|strong="H5002"\w* \w wise|strong="H2450"\w* \w men|strong="H2450"\w* \w out|strong="H3808"\w* \w of|strong="H3068"\w* Edom, \w and|strong="H3068"\w* \w understanding|strong="H8394"\w* \w out|strong="H3808"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* \w mountain|strong="H2022"\w* \w of|strong="H3068"\w* \w Esau|strong="H6215"\w*? +\v 9 \w Your|strong="H3772"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w*, \w Teman|strong="H8487"\w*, \w will|strong="H2022"\w* \w be|strong="H2022"\w* \w dismayed|strong="H2865"\w*, \w to|strong="H4616"\w* \w the|strong="H3772"\w* \w end|strong="H4616"\w* \w that|strong="H4616"\w* everyone \w may|strong="H1368"\w* \w be|strong="H2022"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H3772"\w* \w the|strong="H3772"\w* \w mountain|strong="H2022"\w* \w of|strong="H2022"\w* \w Esau|strong="H6215"\w* \w by|strong="H2022"\w* \w slaughter|strong="H6993"\w*. +\v 10 \w For|strong="H3772"\w* \w the|strong="H3680"\w* \w violence|strong="H2555"\w* done \w to|strong="H5769"\w* \w your|strong="H3772"\w* brother \w Jacob|strong="H3290"\w*, shame \w will|strong="H3290"\w* \w cover|strong="H3680"\w* \w you|strong="H3772"\w*, \w and|strong="H5769"\w* \w you|strong="H3772"\w* \w will|strong="H3290"\w* \w be|strong="H5769"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w forever|strong="H5769"\w*. +\v 11 \w In|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w you|strong="H5921"\w* \w stood|strong="H5975"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w other|strong="H5048"\w* \w side|strong="H5048"\w*, \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w strangers|strong="H2114"\w* \w carried|strong="H7617"\w* \w away|strong="H7617"\w* \w his|strong="H5921"\w* \w substance|strong="H2428"\w* \w and|strong="H3117"\w* \w foreigners|strong="H2114"\w* \w entered|strong="H5975"\w* \w into|strong="H5921"\w* \w his|strong="H5921"\w* \w gates|strong="H8179"\w* \w and|strong="H3117"\w* \w cast|strong="H3032"\w* \w lots|strong="H1486"\w* \w for|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*, \w even|strong="H1571"\w* \w you|strong="H5921"\w* \w were|strong="H3117"\w* \w like|strong="H5921"\w* \w one|strong="H1571"\w* \w of|strong="H3117"\w* \w them|strong="H1992"\w*. +\v 12 \w But|strong="H7200"\w* don’t \w look|strong="H7200"\w* down \w on|strong="H3117"\w* \w your|strong="H7200"\w* brother \w in|strong="H3117"\w* \w the|strong="H7200"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w his|strong="H7200"\w* \w disaster|strong="H5235"\w*, \w and|strong="H1121"\w* don’t \w rejoice|strong="H8055"\w* over \w the|strong="H7200"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w* \w in|strong="H3117"\w* \w the|strong="H7200"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w their|strong="H7200"\w* destruction. Don’t \w speak|strong="H6310"\w* \w proudly|strong="H1431"\w* \w in|strong="H3117"\w* \w the|strong="H7200"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w distress|strong="H6869"\w*. +\v 13 Don’t enter \w into|strong="H7200"\w* \w the|strong="H7200"\w* \w gate|strong="H8179"\w* \w of|strong="H3117"\w* \w my|strong="H7200"\w* \w people|strong="H5971"\w* \w in|strong="H3117"\w* \w the|strong="H7200"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w their|strong="H7200"\w* \w calamity|strong="H7451"\w*. Don’t \w look|strong="H7200"\w* \w down|strong="H7971"\w* \w on|strong="H3117"\w* \w their|strong="H7200"\w* \w affliction|strong="H7451"\w* \w in|strong="H3117"\w* \w the|strong="H7200"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w their|strong="H7200"\w* \w calamity|strong="H7451"\w*, \w neither|strong="H1571"\w* seize \w their|strong="H7200"\w* \w wealth|strong="H2428"\w* \w on|strong="H3117"\w* \w the|strong="H7200"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w their|strong="H7200"\w* \w calamity|strong="H7451"\w*. +\v 14 Don’t \w stand|strong="H5975"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* crossroads \w to|strong="H5921"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w those|strong="H5921"\w* \w of|strong="H3117"\w* \w his|strong="H5921"\w* \w who|strong="H6412"\w* \w escape|strong="H6412"\w*. Don’t \w deliver|strong="H5462"\w* \w up|strong="H5975"\w* \w those|strong="H5921"\w* \w of|strong="H3117"\w* \w his|strong="H5921"\w* \w who|strong="H6412"\w* \w remain|strong="H5975"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w distress|strong="H6869"\w*. +\v 15 \w For|strong="H3588"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w near|strong="H7138"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*! \w As|strong="H3117"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w*, \w it|strong="H5921"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w done|strong="H6213"\w* \w to|strong="H7725"\w* \w you|strong="H3588"\w*. \w Your|strong="H3068"\w* \w deeds|strong="H7218"\w* \w will|strong="H3068"\w* \w return|strong="H7725"\w* \w upon|strong="H5921"\w* \w your|strong="H3068"\w* own \w head|strong="H7218"\w*. +\v 16 \w For|strong="H3588"\w* \w as|strong="H1961"\w* \w you|strong="H3588"\w* \w have|strong="H1961"\w* \w drunk|strong="H8354"\w* \w on|strong="H5921"\w* \w my|strong="H3605"\w* \w holy|strong="H6944"\w* \w mountain|strong="H2022"\w*, \w so|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w will|strong="H1961"\w* \w drink|strong="H8354"\w* \w continually|strong="H8548"\w*. \w Yes|strong="H3588"\w*, \w they|strong="H3588"\w* \w will|strong="H1961"\w* \w drink|strong="H8354"\w*, \w swallow|strong="H3886"\w* \w down|strong="H3886"\w*, \w and|strong="H1471"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w though|strong="H3588"\w* \w they|strong="H3588"\w* \w had|strong="H1961"\w* \w not|strong="H3808"\w* \w been|strong="H1961"\w*. +\v 17 \w But|strong="H1961"\w* \w in|strong="H1004"\w* \w Mount|strong="H2022"\w* \w Zion|strong="H6726"\w*, \w there|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w those|strong="H1961"\w* \w who|strong="H6413"\w* \w escape|strong="H6413"\w*, \w and|strong="H1004"\w* \w it|strong="H3423"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w holy|strong="H6944"\w*. \w The|strong="H3423"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w* \w will|strong="H1961"\w* \w possess|strong="H3423"\w* \w their|strong="H3423"\w* \w possessions|strong="H4180"\w*. +\v 18 \w The|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w fire|strong="H1814"\w*, \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Joseph|strong="H3130"\w* \w a|strong="H3068"\w* \w flame|strong="H3852"\w*, \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Esau|strong="H6215"\w* \w for|strong="H3588"\w* \w stubble|strong="H7179"\w*. \w They|strong="H3588"\w* \w will|strong="H3068"\w* burn \w among|strong="H3808"\w* \w them|strong="H1961"\w* \w and|strong="H3068"\w* devour \w them|strong="H1961"\w*. \w There|strong="H1961"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w any|strong="H1961"\w* \w remaining|strong="H8300"\w* \w to|strong="H1696"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Esau|strong="H6215"\w*.” \w Indeed|strong="H3588"\w*, \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w*. +\p +\v 19 Those \w of|strong="H2022"\w* \w the|strong="H3423"\w* \w South|strong="H5045"\w* \w will|strong="H7704"\w* \w possess|strong="H3423"\w* \w the|strong="H3423"\w* \w mountain|strong="H2022"\w* \w of|strong="H2022"\w* \w Esau|strong="H6215"\w*, \w and|strong="H2022"\w* those \w of|strong="H2022"\w* \w the|strong="H3423"\w* \w lowland|strong="H8219"\w*, \w the|strong="H3423"\w* \w Philistines|strong="H6430"\w*. \w They|strong="H6430"\w* \w will|strong="H7704"\w* \w possess|strong="H3423"\w* \w the|strong="H3423"\w* \w field|strong="H7704"\w* \w of|strong="H2022"\w* Ephraim, \w and|strong="H2022"\w* \w the|strong="H3423"\w* \w field|strong="H7704"\w* \w of|strong="H2022"\w* \w Samaria|strong="H8111"\w*. \w Benjamin|strong="H1144"\w* \w will|strong="H7704"\w* \w possess|strong="H3423"\w* \w Gilead|strong="H1568"\w*. +\v 20 \w The|strong="H5704"\w* \w captives|strong="H1546"\w* \w of|strong="H1121"\w* \w this|strong="H2088"\w* \w army|strong="H2426"\w* \w of|strong="H1121"\w* \w the|strong="H5704"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w who|strong="H1121"\w* \w are|strong="H1121"\w* \w among|strong="H3478"\w* \w the|strong="H5704"\w* \w Canaanites|strong="H3669"\w*, \w will|strong="H3478"\w* \w possess|strong="H3423"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Zarephath|strong="H6886"\w*; \w and|strong="H1121"\w* \w the|strong="H5704"\w* \w captives|strong="H1546"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*, \w who|strong="H1121"\w* \w are|strong="H1121"\w* \w in|strong="H3478"\w* \w Sepharad|strong="H5614"\w*, \w will|strong="H3478"\w* \w possess|strong="H3423"\w* \w the|strong="H5704"\w* \w cities|strong="H5892"\w* \w of|strong="H1121"\w* \w the|strong="H5704"\w* \w Negev|strong="H5045"\w*. +\v 21 Saviors \w will|strong="H3068"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w on|strong="H3068"\w* \w Mount|strong="H2022"\w* \w Zion|strong="H6726"\w* \w to|strong="H3068"\w* \w judge|strong="H8199"\w* \w the|strong="H3068"\w* \w mountains|strong="H2022"\w* \w of|strong="H3068"\w* \w Esau|strong="H6215"\w*, \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w kingdom|strong="H4410"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s. \ No newline at end of file diff --git a/bibles/eng-web_usfm/33-JONeng-web.usfm b/bibles/eng-web_usfm/33-JONeng-web.usfm new file mode 100644 index 0000000..b749ba5 --- /dev/null +++ b/bibles/eng-web_usfm/33-JONeng-web.usfm @@ -0,0 +1,105 @@ +\id JON 2-JON-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Jonah +\toc1 The Book of Jonah +\toc2 Jonah +\toc3 Jon +\mt2 The Book of +\mt1 Jonah +\c 1 +\p +\v 1 \w Now|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s\f + \fr 1:1 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jonah|strong="H3124"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amittai, \w saying|strong="H1697"\w*, +\v 2 “\w Arise|strong="H6965"\w*, \w go|strong="H3212"\w* \w to|strong="H3212"\w* \w Nineveh|strong="H5210"\w*, \w that|strong="H3588"\w* \w great|strong="H1419"\w* \w city|strong="H5892"\w*, \w and|strong="H6965"\w* \w preach|strong="H7121"\w* \w against|strong="H5921"\w* \w it|strong="H7121"\w*, \w for|strong="H3588"\w* \w their|strong="H6440"\w* \w wickedness|strong="H7451"\w* \w has|strong="H3588"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*.” +\p +\v 3 \w But|strong="H3068"\w* \w Jonah|strong="H3124"\w* \w rose|strong="H6965"\w* \w up|strong="H6965"\w* \w to|strong="H3381"\w* \w flee|strong="H1272"\w* \w to|strong="H3381"\w* \w Tarshish|strong="H8659"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w He|strong="H3068"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w to|strong="H3381"\w* \w Joppa|strong="H3305"\w*, \w and|strong="H6965"\w* \w found|strong="H4672"\w* \w a|strong="H3068"\w* ship \w going|strong="H3381"\w* \w to|strong="H3381"\w* \w Tarshish|strong="H8659"\w*; \w so|strong="H5414"\w* \w he|strong="H3068"\w* \w paid|strong="H5414"\w* \w its|strong="H5414"\w* \w fare|strong="H7939"\w*, \w and|strong="H6965"\w* \w went|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w it|strong="H5414"\w*, \w to|strong="H3381"\w* \w go|strong="H3381"\w* \w with|strong="H5973"\w* \w them|strong="H5414"\w* \w to|strong="H3381"\w* \w Tarshish|strong="H8659"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 4 \w But|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w sent|strong="H3068"\w* \w out|strong="H2904"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w wind|strong="H7307"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w sea|strong="H3220"\w*, \w and|strong="H3068"\w* \w there|strong="H1961"\w* \w was|strong="H3068"\w* \w a|strong="H3068"\w* \w mighty|strong="H1419"\w* \w storm|strong="H5591"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w sea|strong="H3220"\w*, \w so|strong="H1961"\w* \w that|strong="H3068"\w* \w the|strong="H3068"\w* ship \w was|strong="H3068"\w* likely \w to|strong="H3068"\w* \w break|strong="H7665"\w* \w up|strong="H3220"\w*. +\v 5 \w Then|strong="H3372"\w* \w the|strong="H5921"\w* \w mariners|strong="H4419"\w* \w were|strong="H3627"\w* \w afraid|strong="H3372"\w*, \w and|strong="H3381"\w* \w every|strong="H2199"\w* man \w cried|strong="H2199"\w* \w to|strong="H3381"\w* \w his|strong="H5921"\w* god. \w They|strong="H5921"\w* \w threw|strong="H2904"\w* \w the|strong="H5921"\w* \w cargo|strong="H3627"\w* \w that|strong="H3627"\w* \w was|strong="H3627"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w ship|strong="H5600"\w* \w into|strong="H3381"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w to|strong="H3381"\w* \w lighten|strong="H7043"\w* \w the|strong="H5921"\w* \w ship|strong="H5600"\w*. \w But|strong="H7290"\w* \w Jonah|strong="H3124"\w* \w had|strong="H3124"\w* \w gone|strong="H3381"\w* \w down|strong="H3381"\w* \w into|strong="H3381"\w* \w the|strong="H5921"\w* \w innermost|strong="H3411"\w* \w parts|strong="H3411"\w* \w of|strong="H3627"\w* \w the|strong="H5921"\w* \w ship|strong="H5600"\w* \w and|strong="H3381"\w* \w he|strong="H5921"\w* \w was|strong="H3627"\w* laying \w down|strong="H3381"\w*, \w and|strong="H3381"\w* \w was|strong="H3627"\w* fast \w asleep|strong="H7290"\w*. +\v 6 \w So|strong="H7121"\w* \w the|strong="H7121"\w* ship \w master|strong="H7227"\w* \w came|strong="H7126"\w* \w to|strong="H6965"\w* \w him|strong="H7121"\w*, \w and|strong="H6965"\w* \w said|strong="H7121"\w* \w to|strong="H6965"\w* \w him|strong="H7121"\w*, “\w What|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H3808"\w* mean, \w sleeper|strong="H7290"\w*? \w Arise|strong="H6965"\w*, \w call|strong="H7121"\w* \w on|strong="H6965"\w* \w your|strong="H3808"\w* \w God|strong="H3808"\w*!\f + \fr 1:6 \ft or, gods\f* Maybe \w your|strong="H3808"\w* \w God|strong="H3808"\w*\f + \fr 1:6 \ft or, gods \f* \w will|strong="H3808"\w* notice \w us|strong="H7121"\w*, \w so|strong="H7121"\w* \w that|strong="H7121"\w* \w we|strong="H3068"\w* won’t perish.” +\p +\v 7 \w They|strong="H5921"\w* \w all|strong="H3045"\w* said \w to|strong="H3212"\w* each \w other|strong="H7453"\w*, “\w Come|strong="H3212"\w*! \w Let|strong="H3212"\w*’s \w cast|strong="H5307"\w* \w lots|strong="H1486"\w*, \w that|strong="H3045"\w* \w we|strong="H3068"\w* \w may|strong="H4310"\w* \w know|strong="H3045"\w* \w who|strong="H4310"\w* \w is|strong="H4310"\w* responsible \w for|strong="H5921"\w* \w this|strong="H2063"\w* \w evil|strong="H7451"\w* \w that|strong="H3045"\w* \w is|strong="H4310"\w* \w on|strong="H5921"\w* \w us|strong="H5921"\w*.” \w So|strong="H2063"\w* \w they|strong="H5921"\w* \w cast|strong="H5307"\w* \w lots|strong="H1486"\w*, \w and|strong="H3212"\w* \w the|strong="H5921"\w* \w lot|strong="H1486"\w* \w fell|strong="H5307"\w* \w on|strong="H5921"\w* \w Jonah|strong="H3124"\w*. +\v 8 \w Then|strong="H2088"\w* \w they|strong="H4100"\w* \w asked|strong="H4100"\w* \w him|strong="H5046"\w*, “\w Tell|strong="H5046"\w* \w us|strong="H4994"\w*, \w please|strong="H4994"\w*, \w for|strong="H7451"\w* \w whose|strong="H4310"\w* \w cause|strong="H5971"\w* \w this|strong="H2088"\w* \w evil|strong="H7451"\w* \w is|strong="H2088"\w* \w on|strong="H4399"\w* \w us|strong="H4994"\w*. \w What|strong="H4100"\w* \w is|strong="H2088"\w* \w your|strong="H4994"\w* \w occupation|strong="H4399"\w*? \w Where|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H5046"\w* \w come|strong="H4994"\w* \w from|strong="H7451"\w*? \w What|strong="H4100"\w* \w is|strong="H2088"\w* \w your|strong="H4994"\w* country? \w Of|strong="H5971"\w* \w what|strong="H4100"\w* \w people|strong="H5971"\w* \w are|strong="H5971"\w* \w you|strong="H5046"\w*?” +\p +\v 9 \w He|strong="H6213"\w* said \w to|strong="H3068"\w* \w them|strong="H6213"\w*, “\w I|strong="H3068"\w* \w am|strong="H3068"\w* \w a|strong="H3068"\w* \w Hebrew|strong="H5680"\w*, \w and|strong="H3068"\w* \w I|strong="H3068"\w* \w fear|strong="H3373"\w* \w Yahweh|strong="H3068"\w*, \w the|strong="H6213"\w* \w God|strong="H3068"\w*\f + \fr 1:9 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w of|strong="H3068"\w* \w heaven|strong="H8064"\w*, \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w made|strong="H6213"\w* \w the|strong="H6213"\w* \w sea|strong="H3220"\w* \w and|strong="H3068"\w* \w the|strong="H6213"\w* \w dry|strong="H3004"\w* \w land|strong="H3004"\w*.” +\p +\v 10 \w Then|strong="H6213"\w* \w the|strong="H6440"\w* \w men|strong="H1419"\w* \w were|strong="H1992"\w* \w exceedingly|strong="H1419"\w* \w afraid|strong="H3372"\w*, \w and|strong="H3068"\w* said \w to|strong="H3068"\w* \w him|strong="H6440"\w*, “\w What|strong="H4100"\w* \w have|strong="H3068"\w* \w you|strong="H3588"\w* \w done|strong="H6213"\w*?” \w For|strong="H3588"\w* \w the|strong="H6440"\w* \w men|strong="H1419"\w* \w knew|strong="H3045"\w* \w that|strong="H3588"\w* \w he|strong="H1931"\w* \w was|strong="H3068"\w* \w fleeing|strong="H1272"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w had|strong="H3068"\w* \w told|strong="H5046"\w* \w them|strong="H1992"\w*. +\v 11 \w Then|strong="H1980"\w* \w they|strong="H3588"\w* said \w to|strong="H1980"\w* \w him|strong="H5921"\w*, “\w What|strong="H4100"\w* \w shall|strong="H6213"\w* \w we|strong="H3068"\w* \w do|strong="H6213"\w* \w to|strong="H1980"\w* \w you|strong="H3588"\w*, \w that|strong="H3588"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w may|strong="H6213"\w* \w be|strong="H3220"\w* \w calm|strong="H8367"\w* \w to|strong="H1980"\w* \w us|strong="H5921"\w*?” \w For|strong="H3588"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w grew|strong="H1980"\w* \w more|strong="H3588"\w* \w and|strong="H1980"\w* \w more|strong="H3588"\w* \w stormy|strong="H5590"\w*. +\p +\v 12 \w He|strong="H3588"\w* said \w to|strong="H5921"\w* \w them|strong="H5921"\w*, “\w Take|strong="H5375"\w* \w me|strong="H5921"\w* \w up|strong="H5375"\w*, \w and|strong="H1419"\w* \w throw|strong="H2904"\w* \w me|strong="H5921"\w* \w into|strong="H5921"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*. \w Then|strong="H2088"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w will|strong="H7945"\w* \w be|strong="H3220"\w* \w calm|strong="H8367"\w* \w for|strong="H3588"\w* \w you|strong="H3588"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w because|strong="H3588"\w* \w of|strong="H5921"\w* \w me|strong="H5921"\w* \w this|strong="H2088"\w* \w great|strong="H1419"\w* \w storm|strong="H5591"\w* \w is|strong="H2088"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*.” +\p +\v 13 \w Nevertheless|strong="H3588"\w* \w the|strong="H5921"\w* \w men|strong="H1980"\w* \w rowed|strong="H2864"\w* \w hard|strong="H2864"\w* \w to|strong="H1980"\w* \w get|strong="H1980"\w* \w them|strong="H5921"\w* \w back|strong="H7725"\w* \w to|strong="H1980"\w* \w the|strong="H5921"\w* \w land|strong="H3004"\w*; \w but|strong="H3588"\w* \w they|strong="H3588"\w* \w could|strong="H3201"\w* \w not|strong="H3808"\w*, \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w grew|strong="H1980"\w* \w more|strong="H3808"\w* \w and|strong="H1980"\w* \w more|strong="H3808"\w* \w stormy|strong="H5590"\w* \w against|strong="H5921"\w* \w them|strong="H5921"\w*. +\v 14 \w Therefore|strong="H5921"\w* \w they|strong="H3588"\w* \w cried|strong="H7121"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w said|strong="H7121"\w*, “\w We|strong="H3588"\w* \w beg|strong="H4994"\w* \w you|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w we|strong="H3068"\w* \w beg|strong="H4994"\w* \w you|strong="H3588"\w*, don’t \w let|strong="H4994"\w* \w us|strong="H5414"\w* die \w for|strong="H3588"\w* \w this|strong="H2088"\w* \w man|strong="H5315"\w*’s \w life|strong="H5315"\w*, \w and|strong="H3068"\w* don’t \w lay|strong="H5414"\w* \w on|strong="H5921"\w* \w us|strong="H5414"\w* \w innocent|strong="H5355"\w* \w blood|strong="H1818"\w*; \w for|strong="H3588"\w* \w you|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w as|strong="H6213"\w* \w it|strong="H5414"\w* \w pleased|strong="H2654"\w* \w you|strong="H3588"\w*.” +\v 15 \w So|strong="H5375"\w* \w they|strong="H5375"\w* \w took|strong="H5375"\w* \w up|strong="H5375"\w* \w Jonah|strong="H3124"\w* \w and|strong="H5975"\w* \w threw|strong="H2904"\w* \w him|strong="H5975"\w* \w into|strong="H3220"\w* \w the|strong="H5375"\w* \w sea|strong="H3220"\w*; \w and|strong="H5975"\w* \w the|strong="H5375"\w* \w sea|strong="H3220"\w* \w ceased|strong="H5975"\w* \w its|strong="H5975"\w* \w raging|strong="H2197"\w*. +\v 16 \w Then|strong="H3372"\w* \w the|strong="H3068"\w* \w men|strong="H1419"\w* \w feared|strong="H3372"\w* \w Yahweh|strong="H3068"\w* \w exceedingly|strong="H1419"\w*; \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w offered|strong="H2076"\w* \w a|strong="H3068"\w* \w sacrifice|strong="H2077"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w made|strong="H5087"\w* \w vows|strong="H5088"\w*. +\p +\v 17 \w Yahweh|strong="H3068"\w* prepared \w a|strong="H3068"\w* huge fish to swallow up Jonah, and Jonah was in the belly of the fish three days and three nights. +\c 2 +\p +\v 1 \w Then|strong="H1961"\w* \w Jonah|strong="H3124"\w* prayed \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w his|strong="H3068"\w* \w God|strong="H3068"\w*, \w out|strong="H1419"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w fish|strong="H1709"\w*’s \w belly|strong="H4578"\w*. +\v 2 \w He|strong="H3068"\w* said, +\q1 “\w I|strong="H3068"\w* called \w because|strong="H3068"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* affliction \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w He|strong="H3068"\w* answered me. +\q1 Out \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w belly|strong="H4578"\w* \w of|strong="H3068"\w* Sheol\f + \fr 2:2 \ft Sheol is the place of the dead.\f* \w I|strong="H3068"\w* cried. +\q2 \w You|strong="H6419"\w* heard \w my|strong="H3068"\w* voice. +\q1 +\v 3 \w For|strong="H7121"\w* \w you|strong="H6963"\w* threw \w me|strong="H6963"\w* into \w the|strong="H8085"\w* depths, +\q2 \w in|strong="H3068"\w* \w the|strong="H8085"\w* \w heart|strong="H8085"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* seas. +\q1 \w The|strong="H8085"\w* flood \w was|strong="H3068"\w* \w all|strong="H7121"\w* around \w me|strong="H6963"\w*. +\q2 \w All|strong="H7121"\w* \w your|strong="H3068"\w* waves \w and|strong="H3068"\w* \w your|strong="H3068"\w* billows \w passed|strong="H3068"\w* \w over|strong="H3068"\w* \w me|strong="H6963"\w*. +\q1 +\v 4 \w I|strong="H5921"\w* said, ‘\w I|strong="H5921"\w* \w have|strong="H5104"\w* \w been|strong="H5674"\w* banished \w from|strong="H5921"\w* \w your|strong="H3605"\w* sight; +\q2 \w yet|strong="H3605"\w* \w I|strong="H5921"\w* \w will|strong="H3824"\w* look \w again|strong="H5674"\w* \w toward|strong="H5921"\w* \w your|strong="H3605"\w* holy temple.’ +\q1 +\v 5 \w The|strong="H3254"\w* waters surrounded \w me|strong="H5048"\w*, +\q2 \w even|strong="H5869"\w* \w to|strong="H5869"\w* \w the|strong="H3254"\w* soul. +\q1 \w The|strong="H3254"\w* deep was around \w me|strong="H5048"\w*. +\q2 \w The|strong="H3254"\w* weeds \w were|strong="H5869"\w* wrapped around \w my|strong="H5048"\w* head. +\q1 +\v 6 \w I|strong="H5704"\w* \w went|strong="H5437"\w* \w down|strong="H5437"\w* \w to|strong="H5704"\w* \w the|strong="H5704"\w* bottoms \w of|strong="H7218"\w* \w the|strong="H5704"\w* mountains. +\q2 \w The|strong="H5704"\w* earth barred \w me|strong="H5315"\w* \w in|strong="H5315"\w* \w forever|strong="H5704"\w*; +\q2 \w yet|strong="H5704"\w* \w you|strong="H5704"\w* \w have|strong="H8415"\w* \w brought|strong="H5437"\w* \w my|strong="H5704"\w* \w life|strong="H5315"\w* \w up|strong="H2280"\w* \w from|strong="H5315"\w* \w the|strong="H5704"\w* pit, \w Yahweh|strong="H3068"\w* \w my|strong="H5704"\w* God. +\b +\q1 +\v 7 “\w When|strong="H3068"\w* \w my|strong="H3068"\w* soul fainted \w within|strong="H1157"\w* \w me|strong="H1157"\w*, \w I|strong="H3068"\w* remembered \w Yahweh|strong="H3068"\w*. +\q2 \w My|strong="H3068"\w* prayer \w came|strong="H5927"\w* \w in|strong="H3068"\w* \w to|strong="H3381"\w* \w you|strong="H3381"\w*, \w into|strong="H3381"\w* \w your|strong="H3068"\w* holy temple. +\q1 +\v 8 \w Those|strong="H5921"\w* \w who|strong="H3068"\w* \w regard|strong="H5921"\w* vain idols forsake \w their|strong="H3068"\w* \w own|strong="H5315"\w* \w mercy|strong="H3068"\w*. +\q2 +\v 9 \w But|strong="H5800"\w* I \w will|strong="H2617"\w* sacrifice \w to|strong="H8104"\w* \w you|strong="H5800"\w* with \w the|strong="H8104"\w* voice \w of|strong="H1892"\w* thanksgiving. +\q2 I \w will|strong="H2617"\w* \w pay|strong="H8104"\w* \w that|strong="H7723"\w* \w which|strong="H2617"\w* I \w have|strong="H8104"\w* vowed. +\q1 Salvation belongs \w to|strong="H8104"\w* \w Yahweh|strong="H3068"\w*.” +\p +\v 10 \w Then|strong="H3068"\w* \w Yahweh|strong="H3068"\w* spoke \w to|strong="H3068"\w* \w the|strong="H3068"\w* fish, \w and|strong="H3068"\w* \w it|strong="H7999"\w* vomited out Jonah \w on|strong="H3068"\w* \w the|strong="H3068"\w* dry land. +\c 3 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Jonah|strong="H3124"\w* \w the|strong="H3068"\w* \w second|strong="H8145"\w* \w time|strong="H8145"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Arise|strong="H6965"\w*, \w go|strong="H3212"\w* \w to|strong="H1696"\w* \w Nineveh|strong="H5210"\w*, \w that|strong="H5892"\w* \w great|strong="H1419"\w* \w city|strong="H5892"\w*, \w and|strong="H6965"\w* \w preach|strong="H7121"\w* \w to|strong="H1696"\w* \w it|strong="H7121"\w* \w the|strong="H7121"\w* message \w that|strong="H5892"\w* \w I|strong="H6965"\w* \w give|strong="H1696"\w* \w you|strong="H1696"\w*.” +\p +\v 3 \w So|strong="H1961"\w* \w Jonah|strong="H3124"\w* \w arose|strong="H6965"\w*, \w and|strong="H6965"\w* \w went|strong="H3212"\w* \w to|strong="H3212"\w* \w Nineveh|strong="H5210"\w*, according \w to|strong="H3212"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*. \w Now|strong="H1961"\w* \w Nineveh|strong="H5210"\w* \w was|strong="H3068"\w* \w an|strong="H1961"\w* \w exceedingly|strong="H1419"\w* \w great|strong="H1419"\w* \w city|strong="H5892"\w*, \w three|strong="H7969"\w* \w days|strong="H3117"\w*’ \w journey|strong="H4109"\w* across. +\v 4 \w Jonah|strong="H3124"\w* \w began|strong="H2490"\w* \w to|strong="H3117"\w* enter \w into|strong="H2015"\w* \w the|strong="H3117"\w* \w city|strong="H5892"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w*’s \w journey|strong="H4109"\w*, \w and|strong="H3117"\w* \w he|strong="H3117"\w* \w cried|strong="H7121"\w* out, \w and|strong="H3117"\w* \w said|strong="H7121"\w*, “\w In|strong="H3117"\w* forty \w days|strong="H3117"\w*, \w Nineveh|strong="H5210"\w* \w will|strong="H5892"\w* \w be|strong="H5750"\w* \w overthrown|strong="H2015"\w*!” +\p +\v 5 \w The|strong="H7121"\w* people \w of|strong="H7121"\w* \w Nineveh|strong="H5210"\w* believed God; \w and|strong="H1419"\w* \w they|strong="H5704"\w* \w proclaimed|strong="H7121"\w* \w a|strong="H3068"\w* \w fast|strong="H6685"\w* \w and|strong="H1419"\w* \w put|strong="H3847"\w* \w on|strong="H3847"\w* \w sackcloth|strong="H8242"\w*, \w from|strong="H5704"\w* \w their|strong="H7121"\w* \w greatest|strong="H1419"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w their|strong="H7121"\w* \w least|strong="H6996"\w*. +\v 6 \w The|strong="H5921"\w* news \w reached|strong="H5060"\w* \w the|strong="H5921"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Nineveh|strong="H5210"\w*, \w and|strong="H6965"\w* \w he|strong="H5921"\w* \w arose|strong="H6965"\w* \w from|strong="H5921"\w* \w his|strong="H5921"\w* \w throne|strong="H3678"\w*, \w took|strong="H4428"\w* \w off|strong="H5921"\w* \w his|strong="H5921"\w* \w royal|strong="H4428"\w* robe, \w covered|strong="H3680"\w* \w himself|strong="H3427"\w* \w with|strong="H5921"\w* \w sackcloth|strong="H8242"\w*, \w and|strong="H6965"\w* \w sat|strong="H3427"\w* \w in|strong="H3427"\w* ashes. +\v 7 \w He|strong="H1241"\w* made \w a|strong="H3068"\w* \w proclamation|strong="H2199"\w* \w and|strong="H4428"\w* published through \w Nineveh|strong="H5210"\w* \w by|strong="H4325"\w* \w the|strong="H8354"\w* \w decree|strong="H2940"\w* \w of|strong="H4428"\w* \w the|strong="H8354"\w* \w king|strong="H4428"\w* \w and|strong="H4428"\w* \w his|strong="H4428"\w* \w nobles|strong="H1419"\w*, saying, “Let \w neither|strong="H8354"\w* \w man|strong="H1419"\w* \w nor|strong="H1241"\w* animal, \w herd|strong="H1241"\w* \w nor|strong="H1241"\w* \w flock|strong="H6629"\w*, \w taste|strong="H2938"\w* \w anything|strong="H3972"\w*; let \w them|strong="H7462"\w* \w not|strong="H4325"\w* \w feed|strong="H7462"\w*, \w nor|strong="H1241"\w* \w drink|strong="H8354"\w* \w water|strong="H4325"\w*; +\v 8 \w but|strong="H1870"\w* \w let|strong="H7725"\w* \w them|strong="H7725"\w* \w be|strong="H1870"\w* \w covered|strong="H3680"\w* \w with|strong="H3680"\w* \w sackcloth|strong="H8242"\w*, \w both|strong="H4480"\w* \w man|strong="H7451"\w* \w and|strong="H7725"\w* animal, \w and|strong="H7725"\w* \w let|strong="H7725"\w* \w them|strong="H7725"\w* \w cry|strong="H7121"\w* \w mightily|strong="H2394"\w* \w to|strong="H7725"\w* God. Yes, \w let|strong="H7725"\w* \w them|strong="H7725"\w* \w turn|strong="H7725"\w* everyone \w from|strong="H4480"\w* \w his|strong="H7121"\w* \w evil|strong="H7451"\w* \w way|strong="H1870"\w* \w and|strong="H7725"\w* \w from|strong="H4480"\w* \w the|strong="H4480"\w* \w violence|strong="H2555"\w* \w that|strong="H7121"\w* \w is|strong="H1870"\w* \w in|strong="H7725"\w* \w his|strong="H7121"\w* \w hands|strong="H3709"\w*. +\v 9 \w Who|strong="H4310"\w* \w knows|strong="H3045"\w* \w whether|strong="H3045"\w* \w God|strong="H3808"\w* \w will|strong="H4310"\w* \w not|strong="H3808"\w* \w turn|strong="H7725"\w* \w and|strong="H7725"\w* \w relent|strong="H5162"\w*, \w and|strong="H7725"\w* \w turn|strong="H7725"\w* \w away|strong="H7725"\w* \w from|strong="H7725"\w* \w his|strong="H7725"\w* \w fierce|strong="H2740"\w* \w anger|strong="H2740"\w*, \w so|strong="H3808"\w* \w that|strong="H3045"\w* \w we|strong="H3068"\w* might \w not|strong="H3808"\w* perish?” +\p +\v 10 \w God|strong="H3808"\w* \w saw|strong="H7200"\w* \w their|strong="H1992"\w* \w works|strong="H4639"\w*, \w that|strong="H3588"\w* \w they|strong="H1992"\w* \w turned|strong="H7725"\w* \w from|strong="H7725"\w* \w their|strong="H1992"\w* \w evil|strong="H7451"\w* \w way|strong="H1870"\w*. \w God|strong="H3808"\w* \w relented|strong="H5162"\w* \w of|strong="H1870"\w* \w the|strong="H5921"\w* \w disaster|strong="H7451"\w* \w which|strong="H1992"\w* \w he|strong="H3588"\w* \w said|strong="H1696"\w* \w he|strong="H3588"\w* \w would|strong="H6213"\w* \w do|strong="H6213"\w* \w to|strong="H1696"\w* \w them|strong="H1992"\w*, \w and|strong="H7725"\w* \w he|strong="H3588"\w* didn’t \w do|strong="H6213"\w* \w it|strong="H5921"\w*. +\c 4 +\p +\v 1 \w But|strong="H7451"\w* it \w displeased|strong="H7489"\w* \w Jonah|strong="H3124"\w* \w exceedingly|strong="H1419"\w*, \w and|strong="H1419"\w* he \w was|strong="H7451"\w* \w angry|strong="H2734"\w*. +\v 2 \w He|strong="H3588"\w* \w prayed|strong="H6419"\w* \w to|strong="H5704"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* \w said|strong="H1697"\w*, “\w Please|strong="H7451"\w*, \w Yahweh|strong="H3068"\w*, wasn’t \w this|strong="H2088"\w* \w what|strong="H1697"\w* \w I|strong="H3588"\w* \w said|strong="H1697"\w* \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w was|strong="H3068"\w* \w still|strong="H3588"\w* \w in|strong="H5921"\w* \w my|strong="H3068"\w* \w own|strong="H1961"\w* country? \w Therefore|strong="H3651"\w* \w I|strong="H3588"\w* hurried \w to|strong="H5704"\w* \w flee|strong="H1272"\w* \w to|strong="H5704"\w* \w Tarshish|strong="H8659"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w knew|strong="H3045"\w* \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H1697"\w* \w a|strong="H3068"\w* \w gracious|strong="H2587"\w* \w God|strong="H3068"\w* \w and|strong="H3068"\w* \w merciful|strong="H7349"\w*, slow \w to|strong="H5704"\w* anger, \w and|strong="H3068"\w* \w abundant|strong="H7227"\w* \w in|strong="H5921"\w* loving \w kindness|strong="H2617"\w*, \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w relent|strong="H5162"\w* \w of|strong="H3068"\w* \w doing|strong="H7451"\w* \w harm|strong="H7451"\w*. +\v 3 \w Therefore|strong="H6258"\w* \w now|strong="H6258"\w*, \w Yahweh|strong="H3068"\w*, \w take|strong="H3947"\w*, \w I|strong="H3588"\w* \w beg|strong="H4994"\w* \w you|strong="H3588"\w*, \w my|strong="H3068"\w* \w life|strong="H5315"\w* \w from|strong="H4480"\w* \w me|strong="H4994"\w*, \w for|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H3068"\w* \w better|strong="H2896"\w* \w for|strong="H3588"\w* \w me|strong="H4994"\w* \w to|strong="H3068"\w* \w die|strong="H4194"\w* \w than|strong="H4480"\w* \w to|strong="H3068"\w* \w live|strong="H2416"\w*.” +\p +\v 4 \w Yahweh|strong="H3068"\w* said, “\w Is|strong="H3068"\w* \w it|strong="H3190"\w* \w right|strong="H3068"\w* \w for|strong="H3068"\w* \w you|strong="H3190"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w angry|strong="H2734"\w*?” +\p +\v 5 \w Then|strong="H1961"\w* \w Jonah|strong="H3124"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3427"\w* \w the|strong="H7200"\w* \w city|strong="H5892"\w* \w and|strong="H5892"\w* \w sat|strong="H3427"\w* \w on|strong="H7200"\w* \w the|strong="H7200"\w* \w east|strong="H6924"\w* \w side|strong="H6924"\w* \w of|strong="H3427"\w* \w the|strong="H7200"\w* \w city|strong="H5892"\w*, \w and|strong="H5892"\w* \w there|strong="H8033"\w* \w made|strong="H6213"\w* \w himself|strong="H6213"\w* \w a|strong="H3068"\w* \w booth|strong="H5521"\w* \w and|strong="H5892"\w* \w sat|strong="H3427"\w* \w under|strong="H8478"\w* \w it|strong="H6213"\w* \w in|strong="H3427"\w* \w the|strong="H7200"\w* \w shade|strong="H6738"\w*, \w until|strong="H5704"\w* \w he|strong="H5704"\w* might \w see|strong="H7200"\w* \w what|strong="H4100"\w* \w would|strong="H6213"\w* \w become|strong="H1961"\w* \w of|strong="H3427"\w* \w the|strong="H7200"\w* \w city|strong="H5892"\w*. +\v 6 \w Yahweh|strong="H3068"\w* \w God|strong="H3068"\w* \w prepared|strong="H4487"\w* \w a|strong="H3068"\w* vine \w and|strong="H3068"\w* \w made|strong="H1961"\w* \w it|strong="H5921"\w* \w to|strong="H3068"\w* \w come|strong="H5927"\w* \w up|strong="H5927"\w* \w over|strong="H5921"\w* \w Jonah|strong="H3124"\w*, \w that|strong="H3068"\w* \w it|strong="H5921"\w* \w might|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w shade|strong="H6738"\w* \w over|strong="H5921"\w* \w his|strong="H3068"\w* \w head|strong="H7218"\w* \w to|strong="H3068"\w* \w deliver|strong="H5337"\w* \w him|strong="H5921"\w* \w from|strong="H5921"\w* \w his|strong="H3068"\w* discomfort. \w So|strong="H1961"\w* \w Jonah|strong="H3124"\w* \w was|strong="H3068"\w* \w exceedingly|strong="H1419"\w* \w glad|strong="H8055"\w* \w because|strong="H5921"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* vine. +\v 7 \w But|strong="H5221"\w* God \w prepared|strong="H4487"\w* \w a|strong="H3068"\w* \w worm|strong="H8438"\w* \w at|strong="H5927"\w* \w dawn|strong="H7837"\w* \w the|strong="H5221"\w* \w next|strong="H4283"\w* \w day|strong="H4283"\w*, \w and|strong="H5927"\w* \w it|strong="H5927"\w* chewed \w on|strong="H5927"\w* \w the|strong="H5221"\w* vine \w so|strong="H5927"\w* \w that|strong="H5927"\w* \w it|strong="H5927"\w* \w withered|strong="H3001"\w*. +\v 8 \w When|strong="H1961"\w* \w the|strong="H5921"\w* \w sun|strong="H8121"\w* \w arose|strong="H2224"\w*, God \w prepared|strong="H4487"\w* \w a|strong="H3068"\w* sultry \w east|strong="H6921"\w* \w wind|strong="H7307"\w*; \w and|strong="H7218"\w* \w the|strong="H5921"\w* \w sun|strong="H8121"\w* \w beat|strong="H5221"\w* \w on|strong="H5921"\w* \w Jonah|strong="H3124"\w*’s \w head|strong="H7218"\w*, \w so|strong="H1961"\w* \w that|strong="H5315"\w* \w he|strong="H5921"\w* \w was|strong="H1961"\w* \w faint|strong="H5968"\w* \w and|strong="H7218"\w* \w requested|strong="H7592"\w* \w for|strong="H5921"\w* \w himself|strong="H5315"\w* \w that|strong="H5315"\w* \w he|strong="H5921"\w* \w might|strong="H2416"\w* \w die|strong="H4191"\w*. \w He|strong="H5921"\w* said, “\w It|strong="H5921"\w* \w is|strong="H5315"\w* \w better|strong="H2896"\w* \w for|strong="H5921"\w* \w me|strong="H5315"\w* \w to|strong="H4191"\w* \w die|strong="H4191"\w* \w than|strong="H2896"\w* \w to|strong="H4191"\w* \w live|strong="H2416"\w*.” +\p +\v 9 \w God|strong="H3190"\w* said \w to|strong="H5704"\w* \w Jonah|strong="H3124"\w*, “\w Is|strong="H4194"\w* \w it|strong="H5921"\w* right \w for|strong="H5704"\w* \w you|strong="H5921"\w* \w to|strong="H5704"\w* be \w angry|strong="H2734"\w* \w about|strong="H5921"\w* \w the|strong="H5921"\w* vine?” +\p \w He|strong="H5704"\w* said, “\w I|strong="H5704"\w* am right \w to|strong="H5704"\w* be \w angry|strong="H2734"\w*, \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w death|strong="H4194"\w*.” +\p +\v 10 \w Yahweh|strong="H3068"\w* said, “\w You|strong="H5921"\w* \w have|strong="H1961"\w* \w been|strong="H1961"\w* \w concerned|strong="H2347"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* vine, \w for|strong="H5921"\w* \w which|strong="H3068"\w* \w you|strong="H5921"\w* \w have|strong="H1961"\w* \w not|strong="H3808"\w* \w labored|strong="H5998"\w*, \w neither|strong="H3808"\w* \w made|strong="H1961"\w* \w it|strong="H5921"\w* \w grow|strong="H1431"\w*; \w which|strong="H3068"\w* \w came|strong="H1961"\w* \w up|strong="H1431"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w night|strong="H3915"\w* \w and|strong="H1121"\w* perished \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w night|strong="H3915"\w*. +\v 11 Shouldn’t \w I|strong="H5921"\w* \w be|strong="H3426"\w* \w concerned|strong="H3045"\w* \w for|strong="H5921"\w* \w Nineveh|strong="H5210"\w*, \w that|strong="H3045"\w* \w great|strong="H1419"\w* \w city|strong="H5892"\w*, \w in|strong="H5921"\w* \w which|strong="H5892"\w* \w are|strong="H3426"\w* \w more|strong="H7235"\w* \w than|strong="H7235"\w* \w one|strong="H3808"\w* hundred \w twenty|strong="H8147"\w* \w thousand|strong="H7239"\w* persons \w who|strong="H7227"\w* \w can|strong="H3045"\w*’t \w discern|strong="H3045"\w* \w between|strong="H3045"\w* \w their|strong="H5921"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w and|strong="H1419"\w* \w their|strong="H5921"\w* \w left|strong="H8040"\w* \w hand|strong="H3225"\w*, \w and|strong="H1419"\w* \w also|strong="H3045"\w* \w many|strong="H7227"\w* animals?” \ No newline at end of file diff --git a/bibles/eng-web_usfm/34-MICeng-web.usfm b/bibles/eng-web_usfm/34-MICeng-web.usfm new file mode 100644 index 0000000..7c4be42 --- /dev/null +++ b/bibles/eng-web_usfm/34-MICeng-web.usfm @@ -0,0 +1,502 @@ +\id MIC 33-MIC-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Micah +\toc1 The Book of Micah +\toc2 Micah +\toc3 Mic +\mt2 The Book of +\mt1 Micah +\c 1 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s\f + \fr 1:1 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w word|strong="H1697"\w* \w that|strong="H3117"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Micah|strong="H4318"\w* \w of|strong="H4428"\w* Morasheth \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w Jotham|strong="H3147"\w*, Ahaz, \w and|strong="H3063"\w* \w Hezekiah|strong="H2396"\w*, \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*, \w which|strong="H3068"\w* \w he|strong="H3117"\w* \w saw|strong="H2372"\w* \w concerning|strong="H5921"\w* \w Samaria|strong="H8111"\w* \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w*. +\q1 +\v 2 \w Hear|strong="H8085"\w*, \w you|strong="H3605"\w* \w peoples|strong="H5971"\w*, \w all|strong="H3605"\w* \w of|strong="H5971"\w* \w you|strong="H3605"\w*! +\q2 \w Listen|strong="H8085"\w*, \w O|strong="H3068"\w* earth, \w and|strong="H5971"\w* \w all|strong="H3605"\w* \w that|strong="H5971"\w* \w is|strong="H3605"\w* \w therein|strong="H4393"\w*. +\q1 \w Let|strong="H1961"\w* \w the|strong="H3605"\w* \w Lord|strong="H3069"\w*\f + \fr 1:2 \ft The word translated “Lord” is “Adonai.”\f* \w Yahweh|strong="H3068"\w* \w be|strong="H1961"\w* \w witness|strong="H5707"\w* \w against|strong="H8085"\w* \w you|strong="H3605"\w*, +\q2 \w the|strong="H3605"\w* \w Lord|strong="H3069"\w* \w from|strong="H8085"\w* \w his|strong="H3605"\w* \w holy|strong="H6944"\w* \w temple|strong="H1964"\w*. +\q1 +\v 3 \w For|strong="H3588"\w* \w behold|strong="H2009"\w*,\f + \fr 1:3 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w Yahweh|strong="H3068"\w* \w comes|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w place|strong="H4725"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w come|strong="H3318"\w* \w down|strong="H3381"\w* \w and|strong="H3068"\w* \w tread|strong="H1869"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* earth. +\q1 +\v 4 \w The|strong="H6440"\w* \w mountains|strong="H2022"\w* \w melt|strong="H4549"\w* \w under|strong="H8478"\w* \w him|strong="H6440"\w*, +\q2 \w and|strong="H6440"\w* \w the|strong="H6440"\w* \w valleys|strong="H6010"\w* \w split|strong="H1234"\w* apart \w like|strong="H2022"\w* \w wax|strong="H1749"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* fire, +\q2 \w like|strong="H2022"\w* \w waters|strong="H4325"\w* \w that|strong="H4325"\w* \w are|strong="H4325"\w* \w poured|strong="H5064"\w* \w down|strong="H5064"\w* \w a|strong="H3068"\w* \w steep|strong="H4174"\w* \w place|strong="H8478"\w*. +\b +\q1 +\v 5 “\w All|strong="H3605"\w* \w this|strong="H2063"\w* \w is|strong="H4310"\w* \w for|strong="H1004"\w* \w the|strong="H3605"\w* disobedience \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w*, +\q2 \w and|strong="H3063"\w* \w for|strong="H1004"\w* \w the|strong="H3605"\w* \w sins|strong="H2403"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*. +\q1 \w What|strong="H4310"\w* \w is|strong="H4310"\w* \w the|strong="H3605"\w* disobedience \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w*? +\q2 Isn’t \w it|strong="H2063"\w* \w Samaria|strong="H8111"\w*? +\q1 \w And|strong="H3063"\w* \w what|strong="H4310"\w* \w are|strong="H3478"\w* \w the|strong="H3605"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w*? +\q2 Aren’t \w they|strong="H3808"\w* \w Jerusalem|strong="H3389"\w*? +\q1 +\v 6 Therefore \w I|strong="H7760"\w* \w will|strong="H7704"\w* \w make|strong="H7760"\w* \w Samaria|strong="H8111"\w* \w like|strong="H8111"\w* \w a|strong="H3068"\w* rubble \w heap|strong="H5856"\w* \w of|strong="H7704"\w* \w the|strong="H7760"\w* \w field|strong="H7704"\w*, +\q2 \w like|strong="H8111"\w* \w places|strong="H4302"\w* \w for|strong="H7704"\w* \w planting|strong="H4302"\w* \w vineyards|strong="H3754"\w*; +\q1 \w and|strong="H7704"\w* \w I|strong="H7760"\w* \w will|strong="H7704"\w* \w pour|strong="H5064"\w* \w down|strong="H5064"\w* \w its|strong="H7760"\w* stones \w into|strong="H1540"\w* \w the|strong="H7760"\w* \w valley|strong="H1516"\w*, +\q2 \w and|strong="H7704"\w* \w I|strong="H7760"\w* \w will|strong="H7704"\w* \w uncover|strong="H1540"\w* \w its|strong="H7760"\w* \w foundations|strong="H3247"\w*. +\q1 +\v 7 \w All|strong="H3605"\w* \w her|strong="H3605"\w* \w idols|strong="H6091"\w* \w will|strong="H5704"\w* \w be|strong="H7725"\w* \w beaten|strong="H3807"\w* \w to|strong="H5704"\w* \w pieces|strong="H3807"\w*, +\q2 \w all|strong="H3605"\w* \w her|strong="H3605"\w* temple \w gifts|strong="H7725"\w* \w will|strong="H5704"\w* \w be|strong="H7725"\w* \w burned|strong="H8313"\w* \w with|strong="H8313"\w* fire, +\q2 \w and|strong="H7725"\w* \w I|strong="H3588"\w* \w will|strong="H5704"\w* \w destroy|strong="H8313"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w images|strong="H6456"\w*; +\q1 \w for|strong="H3588"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* hire \w of|strong="H3605"\w* \w a|strong="H3068"\w* \w prostitute|strong="H2181"\w* \w has|strong="H3588"\w* \w she|strong="H3588"\w* \w gathered|strong="H6908"\w* \w them|strong="H7725"\w*, +\q2 \w and|strong="H7725"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* hire \w of|strong="H3605"\w* \w a|strong="H3068"\w* \w prostitute|strong="H2181"\w* \w shall|strong="H2181"\w* \w they|strong="H3588"\w* \w return|strong="H7725"\w*.” +\b +\q1 +\v 8 \w For|strong="H5921"\w* \w this|strong="H2063"\w* \w I|strong="H5921"\w* \w will|strong="H1323"\w* \w lament|strong="H5594"\w* \w and|strong="H3212"\w* \w wail|strong="H3213"\w*. +\q2 \w I|strong="H5921"\w* \w will|strong="H1323"\w* \w go|strong="H3212"\w* \w stripped|strong="H7758"\w* \w and|strong="H3212"\w* \w naked|strong="H6174"\w*. +\q2 \w I|strong="H5921"\w* \w will|strong="H1323"\w* \w howl|strong="H3213"\w* \w like|strong="H6213"\w* \w the|strong="H5921"\w* \w jackals|strong="H8577"\w* +\q2 \w and|strong="H3212"\w* \w mourn|strong="H5594"\w* \w like|strong="H6213"\w* \w the|strong="H5921"\w* \w ostriches|strong="H3284"\w*. +\q1 +\v 9 \w For|strong="H3588"\w* \w her|strong="H5060"\w* \w wounds|strong="H4347"\w* \w are|strong="H5971"\w* incurable; +\q2 \w for|strong="H3588"\w* \w it|strong="H3588"\w* \w has|strong="H3063"\w* \w come|strong="H5060"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Judah|strong="H3063"\w*. +\q1 \w It|strong="H3588"\w* \w reaches|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H3588"\w* \w gate|strong="H8179"\w* \w of|strong="H8179"\w* \w my|strong="H3588"\w* \w people|strong="H5971"\w*, +\q2 \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w Jerusalem|strong="H3389"\w*. +\q1 +\v 10 Don’t \w tell|strong="H5046"\w* it \w in|strong="H5046"\w* \w Gath|strong="H1661"\w*. +\q2 Don’t \w weep|strong="H1058"\w* \w at|strong="H6083"\w* \w all|strong="H1058"\w*. +\q2 \w At|strong="H6083"\w* Beth Ophrah\f + \fr 1:10 \ft Beth Ophrah means literally “House of Dust.”\f* \w I|strong="H5046"\w* have rolled myself \w in|strong="H5046"\w* \w the|strong="H5046"\w* \w dust|strong="H6083"\w*. +\q1 +\v 11 \w Pass|strong="H5674"\w* \w on|strong="H5674"\w*, \w inhabitant|strong="H3427"\w* \w of|strong="H3427"\w* \w Shaphir|strong="H8208"\w*, \w in|strong="H3427"\w* \w nakedness|strong="H6181"\w* \w and|strong="H3318"\w* \w shame|strong="H1322"\w*. +\q2 \w The|strong="H3947"\w* \w inhabitant|strong="H3427"\w* \w of|strong="H3427"\w* \w Zaanan|strong="H6630"\w* won’t \w come|strong="H3318"\w* \w out|strong="H3318"\w*. +\q2 \w The|strong="H3947"\w* wailing \w of|strong="H3427"\w* Beth Ezel \w will|strong="H3808"\w* \w take|strong="H3947"\w* \w from|strong="H4480"\w* \w you|strong="H3947"\w* \w his|strong="H3947"\w* protection. +\q1 +\v 12 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w inhabitant|strong="H3427"\w* \w of|strong="H3068"\w* \w Maroth|strong="H4796"\w* waits anxiously \w for|strong="H3588"\w* \w good|strong="H2896"\w*, +\q2 \w because|strong="H3588"\w* \w evil|strong="H7451"\w* \w has|strong="H3068"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w* \w from|strong="H3381"\w* \w Yahweh|strong="H3068"\w* \w to|strong="H3381"\w* \w the|strong="H3588"\w* \w gate|strong="H8179"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*. +\q1 +\v 13 \w Harness|strong="H7573"\w* \w the|strong="H3588"\w* \w chariot|strong="H4818"\w* \w to|strong="H3478"\w* \w the|strong="H3588"\w* \w swift|strong="H7409"\w* steed, \w inhabitant|strong="H3427"\w* \w of|strong="H1323"\w* \w Lachish|strong="H3923"\w*. +\q2 \w She|strong="H1931"\w* \w was|strong="H3478"\w* \w the|strong="H3588"\w* \w beginning|strong="H7225"\w* \w of|strong="H1323"\w* \w sin|strong="H2403"\w* \w to|strong="H3478"\w* \w the|strong="H3588"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Zion|strong="H6726"\w*; +\q2 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w transgressions|strong="H6588"\w* \w of|strong="H1323"\w* \w Israel|strong="H3478"\w* \w were|strong="H3478"\w* \w found|strong="H4672"\w* \w in|strong="H3427"\w* \w you|strong="H3588"\w*. +\q1 +\v 14 \w Therefore|strong="H3651"\w* \w you|strong="H5414"\w* \w will|strong="H4428"\w* \w give|strong="H5414"\w* \w a|strong="H3068"\w* \w parting|strong="H7964"\w* \w gift|strong="H5414"\w* \w to|strong="H3478"\w* Moresheth Gath. +\q2 \w The|strong="H5921"\w* \w houses|strong="H1004"\w* \w of|strong="H4428"\w* Achzib \w will|strong="H4428"\w* \w be|strong="H3478"\w* \w a|strong="H3068"\w* deceitful \w thing|strong="H3651"\w* \w to|strong="H3478"\w* \w the|strong="H5921"\w* \w kings|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*. +\q1 +\v 15 \w I|strong="H5704"\w* \w will|strong="H3478"\w* \w yet|strong="H5750"\w* bring \w a|strong="H3068"\w* \w conqueror|strong="H3423"\w* \w to|strong="H5704"\w* \w you|strong="H5704"\w*, \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Mareshah|strong="H4762"\w*. +\q2 \w The|strong="H5704"\w* \w glory|strong="H3519"\w* \w of|strong="H3427"\w* \w Israel|strong="H3478"\w* \w will|strong="H3478"\w* \w come|strong="H3478"\w* \w to|strong="H5704"\w* \w Adullam|strong="H5725"\w*. +\q1 +\v 16 \w Shave|strong="H7139"\w* \w your|strong="H5921"\w* heads, +\q2 \w and|strong="H1121"\w* \w cut|strong="H1494"\w* \w off|strong="H5921"\w* \w your|strong="H5921"\w* \w hair|strong="H1494"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w your|strong="H5921"\w* \w delight|strong="H8588"\w*. +\q1 \w Enlarge|strong="H7337"\w* \w your|strong="H5921"\w* \w baldness|strong="H7144"\w* \w like|strong="H1121"\w* \w the|strong="H5921"\w* vulture, +\q2 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H1121"\w* \w gone|strong="H1540"\w* \w into|strong="H1540"\w* \w captivity|strong="H1540"\w* \w from|strong="H4480"\w* \w you|strong="H3588"\w*! +\b +\c 2 +\q1 +\v 1 \w Woe|strong="H1945"\w* \w to|strong="H6213"\w* \w those|strong="H1945"\w* \w who|strong="H3588"\w* \w devise|strong="H2803"\w* iniquity +\q2 \w and|strong="H3027"\w* \w work|strong="H6213"\w* \w evil|strong="H7451"\w* \w on|strong="H5921"\w* \w their|strong="H5921"\w* \w beds|strong="H4904"\w*! +\q1 \w When|strong="H3588"\w* \w the|strong="H5921"\w* \w morning|strong="H1242"\w* \w is|strong="H3426"\w* light, \w they|strong="H3588"\w* \w practice|strong="H6213"\w* \w it|strong="H5921"\w*, +\q2 \w because|strong="H3588"\w* \w it|strong="H5921"\w* \w is|strong="H3426"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w power|strong="H3027"\w* \w of|strong="H3027"\w* \w their|strong="H5921"\w* \w hand|strong="H3027"\w*. +\q1 +\v 2 \w They|strong="H5375"\w* \w covet|strong="H2530"\w* \w fields|strong="H7704"\w* \w and|strong="H1004"\w* \w seize|strong="H1497"\w* \w them|strong="H5375"\w*, +\q2 \w and|strong="H1004"\w* \w houses|strong="H1004"\w*, \w then|strong="H5375"\w* \w take|strong="H5375"\w* \w them|strong="H5375"\w* \w away|strong="H5375"\w*. +\q1 \w They|strong="H5375"\w* \w oppress|strong="H6231"\w* \w a|strong="H3068"\w* \w man|strong="H1397"\w* \w and|strong="H1004"\w* \w his|strong="H5375"\w* \w house|strong="H1004"\w*, +\q2 even \w a|strong="H3068"\w* \w man|strong="H1397"\w* \w and|strong="H1004"\w* \w his|strong="H5375"\w* \w heritage|strong="H5159"\w*. +\q1 +\v 3 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: +\q1 “\w Behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w planning|strong="H2803"\w* \w against|strong="H5921"\w* \w these|strong="H2063"\w* \w people|strong="H3808"\w* \w a|strong="H3068"\w* \w disaster|strong="H7451"\w*, +\q2 \w from|strong="H5921"\w* \w which|strong="H1931"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w remove|strong="H4185"\w* \w your|strong="H3068"\w* \w necks|strong="H6677"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H3068"\w* \w you|strong="H3588"\w* \w walk|strong="H3212"\w* \w haughtily|strong="H7317"\w*, +\q2 \w for|strong="H3588"\w* \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w an|strong="H8033"\w* \w evil|strong="H7451"\w* \w time|strong="H6256"\w*. +\q1 +\v 4 \w In|strong="H5921"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w* \w they|strong="H3117"\w* \w will|strong="H5971"\w* \w take|strong="H5375"\w* \w up|strong="H5375"\w* \w a|strong="H3068"\w* \w parable|strong="H4912"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w*, +\q2 \w and|strong="H3117"\w* \w lament|strong="H5091"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w doleful|strong="H5093"\w* \w lamentation|strong="H5092"\w*, saying, +\q2 ‘\w We|strong="H3117"\w* \w are|strong="H3117"\w* \w utterly|strong="H7703"\w* \w ruined|strong="H7703"\w*! +\q2 \w My|strong="H5921"\w* \w people|strong="H5971"\w*’s \w possession|strong="H2505"\w* \w is|strong="H1931"\w* \w divided|strong="H2505"\w* \w up|strong="H5375"\w*. +\q2 Indeed \w he|strong="H1931"\w* \w takes|strong="H5375"\w* \w it|strong="H1931"\w* \w from|strong="H5921"\w* \w me|strong="H5921"\w* \w and|strong="H3117"\w* assigns \w our|strong="H5921"\w* \w fields|strong="H7704"\w* \w to|strong="H5921"\w* traitors!’” +\q1 +\v 5 \w Therefore|strong="H3651"\w* \w you|strong="H3808"\w* \w will|strong="H3068"\w* \w have|strong="H1961"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w who|strong="H3068"\w* divides \w the|strong="H3068"\w* \w land|strong="H1486"\w* \w by|strong="H3068"\w* \w lot|strong="H1486"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w assembly|strong="H6951"\w*. +\q1 +\v 6 “Don’t \w prophesy|strong="H5197"\w*!”—\w they|strong="H3808"\w* \w prophesy|strong="H5197"\w*— +\q2 “Don’t \w prophesy|strong="H5197"\w* about these \w things|strong="H3808"\w*. +\q2 \w Disgrace|strong="H3639"\w* won’t overtake us.” +\q1 +\v 7 \w Shall|strong="H3068"\w* \w it|strong="H1980"\w* \w be|strong="H3808"\w* \w said|strong="H1697"\w*, \w O|strong="H3068"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w*, +\q2 “\w Is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w* angry? +\q2 \w Are|strong="H1697"\w* \w these|strong="H1004"\w* \w his|strong="H3068"\w* \w doings|strong="H4611"\w*? +\q2 Don’t \w my|strong="H3068"\w* \w words|strong="H1697"\w* \w do|strong="H3190"\w* \w good|strong="H3190"\w* \w to|strong="H1980"\w* \w him|strong="H5973"\w* \w who|strong="H3068"\w* \w walks|strong="H1980"\w* blamelessly?” +\q1 +\v 8 \w But|strong="H7725"\w* lately \w my|strong="H6965"\w* \w people|strong="H5971"\w* \w have|strong="H5971"\w* \w risen|strong="H6965"\w* \w up|strong="H6965"\w* \w as|strong="H5971"\w* \w an|strong="H6965"\w* enemy. +\q2 \w You|strong="H7725"\w* \w strip|strong="H6584"\w* \w the|strong="H7725"\w* \w robe|strong="H8008"\w* \w and|strong="H6965"\w* \w clothing|strong="H8008"\w* \w from|strong="H7725"\w* those \w who|strong="H5971"\w* \w pass|strong="H5674"\w* \w by|strong="H5674"\w* without \w a|strong="H3068"\w* care, \w returning|strong="H7725"\w* \w from|strong="H7725"\w* \w battle|strong="H4421"\w*. +\q1 +\v 9 \w You|strong="H5921"\w* \w drive|strong="H1644"\w* \w the|strong="H5921"\w* women \w of|strong="H1004"\w* \w my|strong="H3947"\w* \w people|strong="H5971"\w* \w out|strong="H1644"\w* \w from|strong="H5921"\w* \w their|strong="H3947"\w* \w pleasant|strong="H8588"\w* \w houses|strong="H1004"\w*; +\q2 \w from|strong="H5921"\w* \w their|strong="H3947"\w* young \w children|strong="H5768"\w* \w you|strong="H5921"\w* \w take|strong="H3947"\w* \w away|strong="H3947"\w* \w my|strong="H3947"\w* blessing \w forever|strong="H5769"\w*. +\q1 +\v 10 \w Arise|strong="H6965"\w*, \w and|strong="H6965"\w* \w depart|strong="H3212"\w*! +\q2 \w For|strong="H3588"\w* \w this|strong="H2063"\w* \w is|strong="H3808"\w* \w not|strong="H3808"\w* \w your|strong="H3588"\w* \w resting|strong="H4496"\w* \w place|strong="H4496"\w*, +\q2 \w because|strong="H3588"\w* \w of|strong="H2256"\w* \w uncleanness|strong="H2930"\w* \w that|strong="H3588"\w* destroys, +\q2 \w even|strong="H3588"\w* \w with|strong="H3212"\w* \w a|strong="H3068"\w* \w grievous|strong="H4834"\w* \w destruction|strong="H2256"\w*. +\q1 +\v 11 \w If|strong="H3863"\w* \w a|strong="H3068"\w* \w man|strong="H2088"\w* \w walking|strong="H1980"\w* \w in|strong="H1980"\w* \w a|strong="H3068"\w* \w spirit|strong="H7307"\w* \w of|strong="H7307"\w* \w falsehood|strong="H8267"\w* \w lies|strong="H8267"\w*, saying, +\q2 “\w I|strong="H2088"\w* \w will|strong="H1961"\w* \w prophesy|strong="H5197"\w* \w to|strong="H1980"\w* \w you|strong="H5971"\w* \w of|strong="H7307"\w* \w wine|strong="H3196"\w* \w and|strong="H1980"\w* \w of|strong="H7307"\w* \w strong|strong="H7941"\w* \w drink|strong="H7941"\w*,” +\q2 \w he|strong="H1980"\w* \w would|strong="H3863"\w* \w be|strong="H1961"\w* \w the|strong="H1961"\w* \w prophet|strong="H5197"\w* \w of|strong="H7307"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*. +\q1 +\v 12 \w I|strong="H7760"\w* \w will|strong="H3478"\w* \w surely|strong="H6908"\w* \w assemble|strong="H6908"\w* \w all|strong="H3605"\w* \w of|strong="H8432"\w* \w you|strong="H3605"\w*, \w Jacob|strong="H3290"\w*. +\q2 \w I|strong="H7760"\w* \w will|strong="H3478"\w* \w surely|strong="H6908"\w* \w gather|strong="H6908"\w* \w the|strong="H3605"\w* \w remnant|strong="H7611"\w* \w of|strong="H8432"\w* \w Israel|strong="H3478"\w*. +\q1 \w I|strong="H7760"\w* \w will|strong="H3478"\w* \w put|strong="H7760"\w* \w them|strong="H7760"\w* \w together|strong="H3162"\w* \w as|strong="H3605"\w* \w the|strong="H3605"\w* \w sheep|strong="H6629"\w* \w of|strong="H8432"\w* \w Bozrah|strong="H1223"\w*, +\q2 \w as|strong="H3605"\w* \w a|strong="H3068"\w* \w flock|strong="H6629"\w* \w in|strong="H3478"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H8432"\w* \w their|strong="H3605"\w* \w pasture|strong="H1699"\w*. +\q2 \w They|strong="H3478"\w* \w will|strong="H3478"\w* swarm \w with|strong="H3478"\w* \w people|strong="H6908"\w*. +\q1 +\v 13 \w He|strong="H3068"\w* \w who|strong="H3068"\w* \w breaks|strong="H6555"\w* \w open|strong="H6440"\w* \w the|strong="H6440"\w* \w way|strong="H5674"\w* \w goes|strong="H3318"\w* \w up|strong="H5927"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*. +\q2 \w They|strong="H3068"\w* \w break|strong="H6555"\w* \w through|strong="H5674"\w* \w the|strong="H6440"\w* \w gate|strong="H8179"\w*, \w and|strong="H3068"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*. +\q2 \w Their|strong="H3068"\w* \w king|strong="H4428"\w* \w passes|strong="H5674"\w* \w on|strong="H5674"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*, +\q2 \w with|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w at|strong="H3068"\w* \w their|strong="H3068"\w* \w head|strong="H7218"\w*. +\c 3 +\p +\v 1 \w I|strong="H3045"\w* \w said|strong="H8085"\w*, +\q1 “\w Please|strong="H4994"\w* \w listen|strong="H8085"\w*, \w you|strong="H3045"\w* \w heads|strong="H7218"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w*, +\q2 \w and|strong="H3478"\w* \w rulers|strong="H7101"\w* \w of|strong="H1004"\w* \w the|strong="H8085"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*: +\q2 Isn’t \w it|strong="H3045"\w* \w for|strong="H1004"\w* \w you|strong="H3045"\w* \w to|strong="H3478"\w* \w know|strong="H3045"\w* \w justice|strong="H4941"\w*? +\q1 +\v 2 \w You|strong="H5921"\w* \w who|strong="H2896"\w* \w hate|strong="H8130"\w* \w the|strong="H5921"\w* \w good|strong="H2896"\w*, +\q2 \w and|strong="H2896"\w* love \w the|strong="H5921"\w* \w evil|strong="H7451"\w*; +\q2 \w who|strong="H2896"\w* \w tear|strong="H1497"\w* \w off|strong="H5921"\w* \w their|strong="H5921"\w* \w skin|strong="H5785"\w*, +\q2 \w and|strong="H2896"\w* \w their|strong="H5921"\w* \w flesh|strong="H7607"\w* \w from|strong="H5921"\w* \w off|strong="H5921"\w* \w their|strong="H5921"\w* \w bones|strong="H6106"\w*; +\q2 +\v 3 \w who|strong="H5971"\w* \w also|strong="H5971"\w* eat \w the|strong="H5921"\w* \w flesh|strong="H1320"\w* \w of|strong="H8432"\w* \w my|strong="H5921"\w* \w people|strong="H5971"\w*, +\q2 \w and|strong="H5971"\w* peel \w their|strong="H5921"\w* \w skin|strong="H5785"\w* \w from|strong="H5921"\w* \w off|strong="H6584"\w* \w them|strong="H5921"\w*, +\q2 \w and|strong="H5971"\w* \w break|strong="H6476"\w* \w their|strong="H5921"\w* \w bones|strong="H6106"\w*, +\q2 \w and|strong="H5971"\w* \w chop|strong="H6566"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w pieces|strong="H6566"\w*, \w as|strong="H5971"\w* \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w pot|strong="H5518"\w*, +\q2 \w and|strong="H5971"\w* \w as|strong="H5971"\w* \w meat|strong="H1320"\w* \w within|strong="H8432"\w* \w the|strong="H5921"\w* cauldron. +\q1 +\v 4 \w Then|strong="H6030"\w* \w they|strong="H1992"\w* \w will|strong="H3068"\w* \w cry|strong="H2199"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w but|strong="H3808"\w* \w he|strong="H1931"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w answer|strong="H6030"\w* \w them|strong="H1992"\w*. +\q1 Yes, \w he|strong="H1931"\w* \w will|strong="H3068"\w* \w hide|strong="H5641"\w* \w his|strong="H3068"\w* \w face|strong="H6440"\w* \w from|strong="H6440"\w* \w them|strong="H1992"\w* \w at|strong="H3068"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w*, +\q2 \w because|strong="H6440"\w* \w they|strong="H1992"\w* \w made|strong="H3068"\w* \w their|strong="H3068"\w* \w deeds|strong="H4611"\w* \w evil|strong="H7489"\w*.” +\p +\v 5 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w* \w concerning|strong="H5921"\w* \w the|strong="H5921"\w* \w prophets|strong="H5030"\w* \w who|strong="H5971"\w* \w lead|strong="H8582"\w* \w my|strong="H5414"\w* \w people|strong="H5971"\w* \w astray|strong="H8582"\w*—\w for|strong="H5921"\w* \w those|strong="H5921"\w* \w who|strong="H5971"\w* feed \w their|strong="H3068"\w* \w teeth|strong="H8127"\w*, \w they|strong="H3068"\w* \w proclaim|strong="H7121"\w*, “\w Peace|strong="H7965"\w*!” \w and|strong="H3068"\w* whoever doesn’t \w provide|strong="H5414"\w* \w for|strong="H5921"\w* \w their|strong="H3068"\w* \w mouths|strong="H6310"\w*, \w they|strong="H3068"\w* \w prepare|strong="H6942"\w* \w war|strong="H4421"\w* \w against|strong="H5921"\w* \w him|strong="H5414"\w*: +\q1 +\v 6 “\w Therefore|strong="H3651"\w* \w night|strong="H3915"\w* \w is|strong="H3117"\w* \w over|strong="H5921"\w* \w you|strong="H5921"\w*, \w with|strong="H5921"\w* \w no|strong="H5030"\w* \w vision|strong="H2377"\w*, +\q2 \w and|strong="H3117"\w* \w it|strong="H5921"\w* \w is|strong="H3117"\w* \w dark|strong="H2821"\w* \w to|strong="H5921"\w* \w you|strong="H5921"\w*, \w that|strong="H3117"\w* \w you|strong="H5921"\w* \w may|strong="H3117"\w* not \w divine|strong="H7080"\w*; +\q2 \w and|strong="H3117"\w* \w the|strong="H5921"\w* \w sun|strong="H8121"\w* \w will|strong="H3117"\w* \w go|strong="H8121"\w* \w down|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w prophets|strong="H5030"\w*, +\q2 \w and|strong="H3117"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w will|strong="H3117"\w* \w be|strong="H3117"\w* \w black|strong="H6937"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w*. +\q1 +\v 7 \w The|strong="H3605"\w* \w seers|strong="H2374"\w* shall \w be|strong="H2374"\w* disappointed, +\q2 \w and|strong="H3605"\w* \w the|strong="H3605"\w* \w diviners|strong="H7080"\w* \w confounded|strong="H2659"\w*. +\q1 \w Yes|strong="H3588"\w*, \w they|strong="H3588"\w* shall \w all|strong="H3605"\w* \w cover|strong="H5844"\w* \w their|strong="H3605"\w* \w lips|strong="H8222"\w*, +\q2 \w for|strong="H3588"\w* \w there|strong="H3605"\w* \w is|strong="H3605"\w* \w no|strong="H3605"\w* \w answer|strong="H4617"\w* \w from|strong="H5921"\w* God.”\f + \fr 3:7 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* +\q1 +\v 8 \w But|strong="H3068"\w* \w as|strong="H3068"\w* \w for|strong="H3068"\w* \w me|strong="H5046"\w*, \w I|strong="H3478"\w* \w am|strong="H3068"\w* \w full|strong="H4390"\w* \w of|strong="H3068"\w* \w power|strong="H3581"\w* \w by|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w Spirit|strong="H7307"\w*, +\q2 \w and|strong="H3478"\w* \w of|strong="H3068"\w* \w judgment|strong="H4941"\w*, \w and|strong="H3478"\w* \w of|strong="H3068"\w* \w might|strong="H1369"\w*, +\q2 \w to|strong="H3478"\w* \w declare|strong="H5046"\w* \w to|strong="H3478"\w* \w Jacob|strong="H3290"\w* \w his|strong="H3068"\w* disobedience, +\q2 \w and|strong="H3478"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w* \w his|strong="H3068"\w* \w sin|strong="H2403"\w*. +\q1 +\v 9 \w Please|strong="H4994"\w* \w listen|strong="H8085"\w* \w to|strong="H3478"\w* \w this|strong="H2063"\w*, \w you|strong="H3605"\w* \w heads|strong="H7218"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w*, +\q2 \w and|strong="H3478"\w* \w rulers|strong="H7101"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, +\q2 \w who|strong="H3605"\w* \w abhor|strong="H8581"\w* \w justice|strong="H4941"\w*, +\q2 \w and|strong="H3478"\w* \w pervert|strong="H6140"\w* \w all|strong="H3605"\w* \w equity|strong="H3477"\w*, +\q2 +\v 10 \w who|strong="H3389"\w* \w build|strong="H1129"\w* \w up|strong="H1129"\w* \w Zion|strong="H6726"\w* \w with|strong="H3389"\w* \w blood|strong="H1818"\w*, +\q2 \w and|strong="H3389"\w* \w Jerusalem|strong="H3389"\w* \w with|strong="H3389"\w* \w iniquity|strong="H5766"\w*. +\q1 +\v 11 \w Her|strong="H5921"\w* \w leaders|strong="H7218"\w* \w judge|strong="H8199"\w* \w for|strong="H5921"\w* \w bribes|strong="H7810"\w*, +\q2 \w and|strong="H3068"\w* \w her|strong="H5921"\w* \w priests|strong="H3548"\w* \w teach|strong="H3384"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w price|strong="H4242"\w*, +\q2 \w and|strong="H3068"\w* \w her|strong="H5921"\w* \w prophets|strong="H5030"\w* \w of|strong="H3068"\w* \w it|strong="H5921"\w* tell fortunes \w for|strong="H5921"\w* \w money|strong="H3701"\w*; +\q1 \w yet|strong="H3068"\w* \w they|strong="H3068"\w* \w lean|strong="H8172"\w* \w on|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* say, +\q2 “Isn’t \w Yahweh|strong="H3068"\w* \w among|strong="H7130"\w* \w us|strong="H5921"\w*? +\q2 \w No|strong="H3808"\w* \w disaster|strong="H7451"\w* \w will|strong="H3068"\w* come \w on|strong="H5921"\w* \w us|strong="H5921"\w*.” +\q1 +\v 12 \w Therefore|strong="H3651"\w* \w Zion|strong="H6726"\w* \w for|strong="H1004"\w* \w your|strong="H1961"\w* \w sake|strong="H1558"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w plowed|strong="H2790"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w field|strong="H7704"\w*, +\q2 \w and|strong="H1004"\w* \w Jerusalem|strong="H3389"\w* \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w heaps|strong="H5856"\w* \w of|strong="H1004"\w* rubble, +\q2 \w and|strong="H1004"\w* \w the|strong="H1961"\w* \w mountain|strong="H2022"\w* \w of|strong="H1004"\w* \w the|strong="H1961"\w* \w temple|strong="H1004"\w* \w like|strong="H1961"\w* \w the|strong="H1961"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w* \w of|strong="H1004"\w* \w a|strong="H3068"\w* \w forest|strong="H3293"\w*. +\b +\c 4 +\q1 +\v 1 \w But|strong="H1961"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* latter \w days|strong="H3117"\w*, +\q2 \w it|strong="H1931"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w* \w that|strong="H5971"\w* \w the|strong="H5921"\w* \w mountain|strong="H2022"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1004"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w established|strong="H3559"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w top|strong="H7218"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w*, +\q2 \w and|strong="H3068"\w* \w it|strong="H1931"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w exalted|strong="H5375"\w* \w above|strong="H5921"\w* \w the|strong="H5921"\w* \w hills|strong="H1389"\w*; +\q2 \w and|strong="H3068"\w* \w peoples|strong="H5971"\w* \w will|strong="H3068"\w* \w stream|strong="H5102"\w* \w to|strong="H3068"\w* \w it|strong="H1931"\w*. +\q1 +\v 2 \w Many|strong="H7227"\w* \w nations|strong="H1471"\w* \w will|strong="H3068"\w* \w go|strong="H1980"\w* \w and|strong="H1980"\w* \w say|strong="H1697"\w*, +\q2 “\w Come|strong="H1980"\w*! \w Let|strong="H3212"\w*’s \w go|strong="H1980"\w* \w up|strong="H5927"\w* \w to|strong="H1980"\w* \w the|strong="H3588"\w* \w mountain|strong="H2022"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H1980"\w* \w to|strong="H1980"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H3588"\w* \w God|strong="H3068"\w* \w of|strong="H1004"\w* \w Jacob|strong="H3290"\w*; +\q2 \w and|strong="H1980"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w teach|strong="H3384"\w* \w us|strong="H3384"\w* \w of|strong="H1004"\w* \w his|strong="H3068"\w* \w ways|strong="H1870"\w*, +\q2 \w and|strong="H1980"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w walk|strong="H1980"\w* \w in|strong="H1980"\w* \w his|strong="H3068"\w* \w paths|strong="H1870"\w*.” +\q1 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w law|strong="H8451"\w* \w will|strong="H3068"\w* \w go|strong="H1980"\w* \w out|strong="H3318"\w* \w of|strong="H1004"\w* \w Zion|strong="H6726"\w*, +\q2 \w and|strong="H1980"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w from|strong="H3318"\w* \w Jerusalem|strong="H3389"\w*; +\q1 +\v 3 \w and|strong="H5971"\w* \w he|strong="H5704"\w* \w will|strong="H1471"\w* \w judge|strong="H8199"\w* \w between|strong="H4421"\w* \w many|strong="H7227"\w* \w peoples|strong="H5971"\w*, +\q2 \w and|strong="H5971"\w* \w will|strong="H1471"\w* \w decide|strong="H3198"\w* \w concerning|strong="H1471"\w* \w strong|strong="H6099"\w* \w nations|strong="H1471"\w* \w afar|strong="H7350"\w* \w off|strong="H7350"\w*. +\q2 \w They|strong="H3808"\w* \w will|strong="H1471"\w* \w beat|strong="H3807"\w* \w their|strong="H5375"\w* \w swords|strong="H2719"\w* \w into|strong="H8199"\w* plowshares, +\q2 \w and|strong="H5971"\w* \w their|strong="H5375"\w* \w spears|strong="H2595"\w* \w into|strong="H8199"\w* \w pruning|strong="H4211"\w* \w hooks|strong="H4211"\w*. +\q1 \w Nation|strong="H1471"\w* \w will|strong="H1471"\w* \w not|strong="H3808"\w* \w lift|strong="H5375"\w* \w up|strong="H5375"\w* \w sword|strong="H2719"\w* \w against|strong="H4421"\w* \w nation|strong="H1471"\w*, +\q2 \w neither|strong="H3808"\w* \w will|strong="H1471"\w* \w they|strong="H3808"\w* \w learn|strong="H3925"\w* \w war|strong="H4421"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*. +\q1 +\v 4 \w But|strong="H3588"\w* \w every|strong="H3068"\w* man \w will|strong="H3068"\w* \w sit|strong="H3427"\w* \w under|strong="H8478"\w* \w his|strong="H3068"\w* \w vine|strong="H1612"\w* \w and|strong="H3068"\w* \w under|strong="H8478"\w* \w his|strong="H3068"\w* \w fig|strong="H8384"\w* \w tree|strong="H8384"\w*. +\q2 \w No|strong="H1696"\w* \w one|strong="H6310"\w* \w will|strong="H3068"\w* \w make|strong="H2729"\w* \w them|strong="H8478"\w* \w afraid|strong="H2729"\w*, +\q2 \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w mouth|strong="H6310"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w has|strong="H3068"\w* \w spoken|strong="H1696"\w*. +\v 5 \w Indeed|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H5971"\w* \w may|strong="H3068"\w* \w walk|strong="H3212"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w their|strong="H3605"\w* gods, +\q2 \w but|strong="H3588"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w walk|strong="H3212"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w name|strong="H8034"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w* \w forever|strong="H5769"\w* \w and|strong="H3068"\w* \w ever|strong="H5769"\w*. +\q1 +\v 6 “\w In|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w I|strong="H3117"\w* \w will|strong="H3068"\w* \w assemble|strong="H6908"\w* \w that|strong="H3117"\w* \w which|strong="H1931"\w* \w is|strong="H3068"\w* \w lame|strong="H6760"\w*, +\q2 \w and|strong="H3068"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w gather|strong="H6908"\w* \w that|strong="H3117"\w* \w which|strong="H1931"\w* \w is|strong="H3068"\w* \w driven|strong="H5080"\w* \w away|strong="H5080"\w*, +\q2 \w and|strong="H3068"\w* \w that|strong="H3117"\w* \w which|strong="H1931"\w* \w I|strong="H3117"\w* \w have|strong="H3068"\w* \w afflicted|strong="H7489"\w*; +\q2 +\v 7 \w and|strong="H3068"\w* \w I|strong="H5704"\w* \w will|strong="H3068"\w* \w make|strong="H7760"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w lame|strong="H6760"\w* \w a|strong="H3068"\w* \w remnant|strong="H7611"\w*, +\q2 \w and|strong="H3068"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w cast|strong="H3068"\w* \w far|strong="H5704"\w* \w off|strong="H5921"\w* \w a|strong="H3068"\w* \w strong|strong="H6099"\w* \w nation|strong="H1471"\w*: +\q2 \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w reign|strong="H4427"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w* \w on|strong="H5921"\w* \w Mount|strong="H2022"\w* \w Zion|strong="H6726"\w* \w from|strong="H5921"\w* \w then|strong="H6258"\w* \w on|strong="H5921"\w*, \w even|strong="H5704"\w* \w forever|strong="H5769"\w*.” +\q1 +\v 8 \w You|strong="H5704"\w*, \w tower|strong="H4026"\w* \w of|strong="H1323"\w* \w the|strong="H5704"\w* \w flock|strong="H5739"\w*, \w the|strong="H5704"\w* \w hill|strong="H6076"\w* \w of|strong="H1323"\w* \w the|strong="H5704"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Zion|strong="H6726"\w*, +\q2 \w to|strong="H5704"\w* \w you|strong="H5704"\w* \w it|strong="H5704"\w* \w will|strong="H3389"\w* come. +\q1 Yes, \w the|strong="H5704"\w* \w former|strong="H7223"\w* \w dominion|strong="H4475"\w* \w will|strong="H3389"\w* come, +\q2 \w the|strong="H5704"\w* \w kingdom|strong="H4467"\w* \w of|strong="H1323"\w* \w the|strong="H5704"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Jerusalem|strong="H3389"\w*. +\b +\q1 +\v 9 \w Now|strong="H6258"\w* \w why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H3588"\w* \w cry|strong="H7321"\w* \w out|strong="H2388"\w* \w aloud|strong="H7321"\w*? +\q2 \w Is|strong="H4100"\w* \w there|strong="H6258"\w* no \w king|strong="H4428"\w* \w in|strong="H4428"\w* \w you|strong="H3588"\w*? +\q2 \w Has|strong="H4428"\w* \w your|strong="H3588"\w* \w counselor|strong="H3289"\w* perished, +\q2 \w that|strong="H3588"\w* pains \w have|strong="H6258"\w* \w taken|strong="H2388"\w* \w hold|strong="H2388"\w* \w of|strong="H4428"\w* \w you|strong="H3588"\w* \w as|strong="H3588"\w* \w of|strong="H4428"\w* \w a|strong="H3068"\w* \w woman|strong="H3205"\w* \w in|strong="H4428"\w* \w travail|strong="H3205"\w*? +\q1 +\v 10 \w Be|strong="H3068"\w* \w in|strong="H3068"\w* \w pain|strong="H2342"\w*, \w and|strong="H3068"\w* \w labor|strong="H3205"\w* \w to|strong="H5704"\w* \w give|strong="H3205"\w* \w birth|strong="H3205"\w*, \w daughter|strong="H1323"\w* \w of|strong="H3068"\w* \w Zion|strong="H6726"\w*, +\q2 \w like|strong="H3318"\w* \w a|strong="H3068"\w* \w woman|strong="H1323"\w* \w in|strong="H3068"\w* \w travail|strong="H3205"\w*; +\q2 \w for|strong="H3588"\w* \w now|strong="H6258"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w city|strong="H7151"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w dwell|strong="H7931"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w field|strong="H7704"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w come|strong="H3318"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* Babylon. +\q1 \w There|strong="H8033"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w rescued|strong="H5337"\w*. +\q2 \w There|strong="H8033"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w redeem|strong="H1350"\w* \w you|strong="H3588"\w* \w from|strong="H3318"\w* \w the|strong="H3588"\w* \w hand|strong="H3709"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* enemies. +\b +\q1 +\v 11 \w Now|strong="H6258"\w* \w many|strong="H7227"\w* \w nations|strong="H1471"\w* \w have|strong="H5869"\w* assembled \w against|strong="H5921"\w* \w you|strong="H5921"\w*, \w that|strong="H1471"\w* say, +\q2 “\w Let|strong="H6258"\w* \w her|strong="H5921"\w* \w be|strong="H1471"\w* \w defiled|strong="H2610"\w*, +\q2 \w and|strong="H5869"\w* \w let|strong="H6258"\w* \w our|strong="H5921"\w* \w eye|strong="H5869"\w* \w gloat|strong="H2372"\w* \w over|strong="H5921"\w* \w Zion|strong="H6726"\w*.” +\q1 +\v 12 \w But|strong="H3588"\w* \w they|strong="H1992"\w* don’t \w know|strong="H3045"\w* \w the|strong="H3588"\w* \w thoughts|strong="H4284"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w neither|strong="H3808"\w* \w do|strong="H3068"\w* \w they|strong="H1992"\w* \w understand|strong="H3045"\w* \w his|strong="H3068"\w* \w counsel|strong="H6098"\w*; +\q2 \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* \w gathered|strong="H6908"\w* \w them|strong="H1992"\w* \w like|strong="H3808"\w* \w the|strong="H3588"\w* \w sheaves|strong="H5995"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w threshing|strong="H1637"\w* \w floor|strong="H1637"\w*. +\q1 +\v 13 \w Arise|strong="H6965"\w* \w and|strong="H6965"\w* \w thresh|strong="H1758"\w*, \w daughter|strong="H1323"\w* \w of|strong="H3068"\w* \w Zion|strong="H6726"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w make|strong="H7760"\w* \w your|strong="H3068"\w* \w horn|strong="H7161"\w* \w iron|strong="H1270"\w*, +\q2 \w and|strong="H6965"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w make|strong="H7760"\w* \w your|strong="H3068"\w* \w hoofs|strong="H6541"\w* \w bronze|strong="H5154"\w*. +\q1 \w You|strong="H3588"\w* \w will|strong="H3068"\w* beat \w in|strong="H3068"\w* \w pieces|strong="H1854"\w* \w many|strong="H7227"\w* \w peoples|strong="H5971"\w*. +\q1 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w devote|strong="H2763"\w* \w their|strong="H3605"\w* \w gain|strong="H1215"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H6965"\w* \w their|strong="H3605"\w* \w substance|strong="H2428"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w Lord|strong="H3068"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* earth. +\b +\c 5 +\q1 +\v 1 \w Now|strong="H1961"\w* \w you|strong="H3117"\w* \w shall|strong="H3478"\w* gather yourself \w in|strong="H3478"\w* troops, +\q2 daughter \w of|strong="H3117"\w* troops. +\q1 \w He|strong="H3117"\w* \w has|strong="H1961"\w* \w laid|strong="H3478"\w* siege \w against|strong="H4480"\w* \w us|strong="H3117"\w*. +\q2 \w They|strong="H3117"\w* \w will|strong="H1961"\w* strike \w the|strong="H4480"\w* judge \w of|strong="H3117"\w* \w Israel|strong="H3478"\w* \w with|strong="H3318"\w* \w a|strong="H3068"\w* rod \w on|strong="H3117"\w* \w the|strong="H4480"\w* cheek. +\q1 +\v 2 \w But|strong="H3651"\w* \w you|strong="H5414"\w*, Bethlehem Ephrathah, +\q2 \w being|strong="H1121"\w* small \w among|strong="H5921"\w* \w the|strong="H5921"\w* clans \w of|strong="H1121"\w* Judah, +\q2 \w out|strong="H5414"\w* \w of|strong="H1121"\w* \w you|strong="H5414"\w* \w one|strong="H1121"\w* \w will|strong="H3478"\w* \w come|strong="H7725"\w* \w out|strong="H5414"\w* \w to|strong="H5704"\w* \w me|strong="H5414"\w* \w who|strong="H1121"\w* \w is|strong="H3478"\w* \w to|strong="H5704"\w* \w be|strong="H1121"\w* ruler \w in|strong="H5921"\w* \w Israel|strong="H3478"\w*; +\q2 \w whose|strong="H1121"\w* goings \w out|strong="H5414"\w* \w are|strong="H1121"\w* \w from|strong="H7725"\w* \w of|strong="H1121"\w* \w old|strong="H1121"\w*, \w from|strong="H7725"\w* ancient \w times|strong="H6256"\w*. +\q1 +\v 3 \w Therefore|strong="H6258"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* abandon \w them|strong="H5975"\w* \w until|strong="H5704"\w* \w the|strong="H3588"\w* \w time|strong="H6258"\w* \w that|strong="H3588"\w* \w she|strong="H3588"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* \w in|strong="H3427"\w* labor \w gives|strong="H5975"\w* birth. +\q2 \w Then|strong="H6258"\w* \w the|strong="H3588"\w* rest \w of|strong="H3068"\w* \w his|strong="H3068"\w* brothers \w will|strong="H3068"\w* return \w to|strong="H5704"\w* \w the|strong="H3588"\w* children \w of|strong="H3068"\w* Israel. +\q1 +\v 4 \w He|strong="H3588"\w* \w shall|strong="H2088"\w* \w stand|strong="H6965"\w*, \w and|strong="H6965"\w* \w shall|strong="H2088"\w* \w shepherd|strong="H7462"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* strength \w of|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w in|strong="H5921"\w* \w the|strong="H5921"\w* majesty \w of|strong="H5921"\w* \w the|strong="H5921"\w* name \w of|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w his|strong="H5921"\w* God. +\q2 \w They|strong="H3588"\w* \w will|strong="H1961"\w* live, \w for|strong="H3588"\w* \w then|strong="H1961"\w* \w he|strong="H3588"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* great \w to|strong="H1961"\w* \w the|strong="H5921"\w* ends \w of|strong="H5921"\w* \w the|strong="H5921"\w* earth. +\q1 +\v 5 \w He|strong="H3588"\w* \w will|strong="H2719"\w* \w be|strong="H2719"\w* \w our|strong="H5337"\w* peace \w when|strong="H3588"\w* Assyria invades \w our|strong="H5337"\w* \w land|strong="H1366"\w* +\q2 \w and|strong="H2719"\w* \w when|strong="H3588"\w* \w he|strong="H3588"\w* marches \w through|strong="H3588"\w* \w our|strong="H5337"\w* fortresses, +\q2 \w then|strong="H3588"\w* \w we|strong="H3068"\w* \w will|strong="H2719"\w* raise \w against|strong="H2719"\w* \w him|strong="H3588"\w* seven \w shepherds|strong="H7462"\w*, +\q2 \w and|strong="H2719"\w* eight leaders \w of|strong="H1366"\w* men. +\q1 +\v 6 \w They|strong="H3068"\w* \w will|strong="H3068"\w* rule \w the|strong="H5921"\w* \w land|strong="H7130"\w* \w of|strong="H1121"\w* Assyria \w with|strong="H3068"\w* \w the|strong="H5921"\w* sword, +\q2 \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w land|strong="H7130"\w* \w of|strong="H1121"\w* Nimrod \w in|strong="H5921"\w* \w its|strong="H5921"\w* gates. +\q1 \w He|strong="H3068"\w* \w will|strong="H3068"\w* deliver \w us|strong="H5921"\w* \w from|strong="H5921"\w* \w the|strong="H5921"\w* Assyrian, +\q2 \w when|strong="H1961"\w* \w he|strong="H3068"\w* invades \w our|strong="H3068"\w* \w land|strong="H7130"\w*, +\q2 \w and|strong="H1121"\w* \w when|strong="H1961"\w* \w he|strong="H3068"\w* marches \w within|strong="H7130"\w* \w our|strong="H3068"\w* \w border|strong="H1961"\w*. +\q1 +\v 7 \w The|strong="H5674"\w* \w remnant|strong="H7611"\w* \w of|strong="H7611"\w* \w Jacob|strong="H3290"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w among|strong="H7130"\w* \w many|strong="H7227"\w* \w peoples|strong="H5971"\w* +\q2 \w like|strong="H1961"\w* dew \w from|strong="H1471"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w like|strong="H1961"\w* showers \w on|strong="H5674"\w* \w the|strong="H5674"\w* grass, +\q2 \w that|strong="H5971"\w* don’t wait \w for|strong="H5971"\w* \w man|strong="H5674"\w* +\q2 \w nor|strong="H5674"\w* wait \w for|strong="H5971"\w* \w the|strong="H5674"\w* sons \w of|strong="H7611"\w* \w men|strong="H5971"\w*. +\q1 +\v 8 \w The|strong="H3605"\w* remnant \w of|strong="H3027"\w* Jacob \w will|strong="H3027"\w* \w be|strong="H3027"\w* \w among|strong="H5921"\w* \w the|strong="H3605"\w* nations, +\q2 \w among|strong="H5921"\w* many peoples, +\q2 \w like|strong="H5921"\w* \w a|strong="H3068"\w* lion \w among|strong="H5921"\w* \w the|strong="H3605"\w* animals \w of|strong="H3027"\w* \w the|strong="H3605"\w* forest, +\q2 \w like|strong="H5921"\w* \w a|strong="H3068"\w* young lion \w among|strong="H5921"\w* \w the|strong="H3605"\w* flocks \w of|strong="H3027"\w* sheep; +\q2 \w who|strong="H3605"\w*, if \w he|strong="H3605"\w* goes \w through|strong="H3027"\w*, treads \w down|strong="H3772"\w* \w and|strong="H3027"\w* tears \w in|strong="H5921"\w* pieces, +\q2 \w and|strong="H3027"\w* \w there|strong="H3605"\w* \w is|strong="H3027"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w to|strong="H5921"\w* deliver. +\q1 +\v 9 \w Let|strong="H1961"\w* \w your|strong="H3068"\w* hand \w be|strong="H1961"\w* lifted \w up|strong="H1961"\w* above \w your|strong="H3068"\w* adversaries, +\q2 \w and|strong="H3068"\w* \w let|strong="H1961"\w* \w all|strong="H3772"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* enemies \w be|strong="H1961"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*. +\q1 +\v 10 “\w It|strong="H3772"\w* \w will|strong="H5892"\w* happen \w in|strong="H5892"\w* \w that|strong="H3605"\w* day”, says \w Yahweh|strong="H3068"\w*, +\q2 “\w that|strong="H3605"\w* \w I|strong="H3772"\w* \w will|strong="H5892"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w your|strong="H3605"\w* horses \w from|strong="H3772"\w* among \w you|strong="H3605"\w* +\q2 \w and|strong="H5892"\w* \w will|strong="H5892"\w* \w destroy|strong="H3772"\w* \w your|strong="H3605"\w* chariots. +\q1 +\v 11 \w I|strong="H3808"\w* \w will|strong="H1961"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w the|strong="H3772"\w* cities \w of|strong="H3027"\w* \w your|strong="H1961"\w* land +\q2 \w and|strong="H3027"\w* \w will|strong="H1961"\w* tear \w down|strong="H3772"\w* \w all|strong="H3772"\w* \w your|strong="H1961"\w* strongholds. +\q1 +\v 12 \w I|strong="H3808"\w* \w will|strong="H3027"\w* \w destroy|strong="H3772"\w* witchcraft \w from|strong="H3772"\w* \w your|strong="H3808"\w* \w hand|strong="H3027"\w*. +\q2 \w You|strong="H3808"\w* \w shall|strong="H3027"\w* \w have|strong="H3027"\w* \w no|strong="H3808"\w* soothsayers. +\q1 +\v 13 \w I|strong="H5892"\w* \w will|strong="H5892"\w* cut off \w your|strong="H7130"\w* engraved images \w and|strong="H5892"\w* \w your|strong="H7130"\w* pillars \w from|strong="H5892"\w* \w among|strong="H7130"\w* \w you|strong="H7130"\w*; +\q2 \w and|strong="H5892"\w* \w you|strong="H7130"\w* \w shall|strong="H5892"\w* no more worship \w the|strong="H7130"\w* work \w of|strong="H5892"\w* \w your|strong="H7130"\w* hands. +\q1 +\v 14 \w I|strong="H3808"\w* \w will|strong="H1471"\w* uproot \w your|strong="H8085"\w* Asherah poles \w from|strong="H8085"\w* \w among|strong="H3808"\w* \w you|strong="H6213"\w*; +\q2 \w and|strong="H8085"\w* \w I|strong="H3808"\w* \w will|strong="H1471"\w* \w destroy|strong="H6213"\w* \w your|strong="H8085"\w* cities. +\q1 +\v 15 I will execute vengeance in anger +\q2 and wrath on the nations that didn’t listen.” +\c 6 +\p +\v 1 \w Listen|strong="H8085"\w* \w now|strong="H4994"\w* \w to|strong="H3068"\w* \w what|strong="H6963"\w* \w Yahweh|strong="H3068"\w* says: +\q1 “\w Arise|strong="H6965"\w*, \w plead|strong="H7378"\w* \w your|strong="H3068"\w* \w case|strong="H7378"\w* \w before|strong="H6965"\w* \w the|strong="H8085"\w* \w mountains|strong="H2022"\w*, +\q2 \w and|strong="H6965"\w* \w let|strong="H4994"\w* \w the|strong="H8085"\w* \w hills|strong="H1389"\w* \w hear|strong="H8085"\w* \w what|strong="H6963"\w* \w you|strong="H2022"\w* \w have|strong="H3068"\w* \w to|strong="H3068"\w* \w say|strong="H6963"\w*. +\q1 +\v 2 \w Hear|strong="H8085"\w*, \w you|strong="H3588"\w* \w mountains|strong="H2022"\w*, \w Yahweh|strong="H3068"\w*’s \w indictment|strong="H7379"\w*, +\q2 \w and|strong="H3478"\w* \w you|strong="H3588"\w* enduring \w foundations|strong="H4146"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* earth; +\q2 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w a|strong="H3068"\w* \w case|strong="H7379"\w* \w against|strong="H5973"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*, +\q2 \w and|strong="H3478"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w contend|strong="H7379"\w* \w with|strong="H5973"\w* \w Israel|strong="H3478"\w*. +\q1 +\v 3 \w My|strong="H6213"\w* \w people|strong="H5971"\w*, \w what|strong="H4100"\w* \w have|strong="H5971"\w* \w I|strong="H4100"\w* \w done|strong="H6213"\w* \w to|strong="H6213"\w* \w you|strong="H6213"\w*? +\q2 \w How|strong="H4100"\w* \w have|strong="H5971"\w* \w I|strong="H4100"\w* burdened \w you|strong="H6213"\w*? +\q2 \w Answer|strong="H6030"\w* \w me|strong="H6213"\w*! +\q1 +\v 4 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w brought|strong="H5927"\w* \w you|strong="H3588"\w* \w up|strong="H5927"\w* \w out|strong="H7971"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w land|strong="H6440"\w* \w of|strong="H1004"\w* \w Egypt|strong="H4714"\w*, +\q2 \w and|strong="H4872"\w* \w redeemed|strong="H6299"\w* \w you|strong="H3588"\w* \w out|strong="H7971"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w bondage|strong="H5650"\w*. +\q2 \w I|strong="H3588"\w* \w sent|strong="H7971"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w* \w Moses|strong="H4872"\w*, Aaron, \w and|strong="H4872"\w* \w Miriam|strong="H4813"\w*. +\q1 +\v 5 \w My|strong="H3068"\w* \w people|strong="H5971"\w*, \w remember|strong="H2142"\w* \w now|strong="H4994"\w* \w what|strong="H4100"\w* \w Balak|strong="H1111"\w* \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w* \w devised|strong="H3289"\w*, +\q2 \w and|strong="H1121"\w* \w what|strong="H4100"\w* \w Balaam|strong="H1109"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Beor|strong="H1160"\w* \w answered|strong="H6030"\w* \w him|strong="H6030"\w* \w from|strong="H4480"\w* \w Shittim|strong="H7851"\w* \w to|strong="H5704"\w* \w Gilgal|strong="H1537"\w*, +\q2 \w that|strong="H3045"\w* \w you|strong="H5704"\w* \w may|strong="H4994"\w* \w know|strong="H3045"\w* \w the|strong="H3068"\w* \w righteous|strong="H6666"\w* \w acts|strong="H6666"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*.” +\b +\q1 +\v 6 \w How|strong="H4100"\w* \w shall|strong="H3068"\w* \w I|strong="H4100"\w* \w come|strong="H6923"\w* \w before|strong="H6923"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w and|strong="H1121"\w* \w bow|strong="H3721"\w* myself \w before|strong="H6923"\w* \w the|strong="H3068"\w* \w exalted|strong="H4791"\w* \w God|strong="H3068"\w*? +\q1 \w Shall|strong="H3068"\w* \w I|strong="H4100"\w* \w come|strong="H6923"\w* \w before|strong="H6923"\w* \w him|strong="H3068"\w* \w with|strong="H3068"\w* \w burnt|strong="H5930"\w* \w offerings|strong="H5930"\w*, +\q2 \w with|strong="H3068"\w* \w calves|strong="H5695"\w* \w a|strong="H3068"\w* \w year|strong="H8141"\w* \w old|strong="H1121"\w*? +\q1 +\v 7 \w Will|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w be|strong="H3068"\w* \w pleased|strong="H7521"\w* \w with|strong="H3068"\w* \w thousands|strong="H7233"\w* \w of|strong="H3068"\w* rams? +\q2 \w With|strong="H3068"\w* tens \w of|strong="H3068"\w* \w thousands|strong="H7233"\w* \w of|strong="H3068"\w* \w rivers|strong="H5158"\w* \w of|strong="H3068"\w* \w oil|strong="H8081"\w*? +\q1 \w Shall|strong="H3068"\w* \w I|strong="H5414"\w* \w give|strong="H5414"\w* \w my|strong="H5414"\w* \w firstborn|strong="H1060"\w* \w for|strong="H3068"\w* \w my|strong="H5414"\w* disobedience? +\q2 \w The|strong="H5414"\w* \w fruit|strong="H6529"\w* \w of|strong="H3068"\w* \w my|strong="H5414"\w* \w body|strong="H5315"\w* \w for|strong="H3068"\w* \w the|strong="H5414"\w* \w sin|strong="H2403"\w* \w of|strong="H3068"\w* \w my|strong="H5414"\w* \w soul|strong="H5315"\w*? +\q1 +\v 8 \w He|strong="H3588"\w* \w has|strong="H3068"\w* \w shown|strong="H6213"\w* \w you|strong="H3588"\w*, \w O|strong="H3068"\w* \w man|strong="H2896"\w*, \w what|strong="H4100"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w*. +\q2 \w What|strong="H4100"\w* \w does|strong="H6213"\w* \w Yahweh|strong="H3068"\w* \w require|strong="H1875"\w* \w of|strong="H3068"\w* \w you|strong="H3588"\w*, \w but|strong="H3588"\w* \w to|strong="H3212"\w* \w act|strong="H6213"\w* \w justly|strong="H4941"\w*, +\q2 \w to|strong="H3212"\w* \w love|strong="H2617"\w* \w mercy|strong="H2617"\w*, \w and|strong="H3068"\w* \w to|strong="H3212"\w* \w walk|strong="H3212"\w* \w humbly|strong="H6800"\w* \w with|strong="H5973"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*? +\b +\q1 +\v 9 \w Yahweh|strong="H3068"\w*’s \w voice|strong="H6963"\w* \w calls|strong="H7121"\w* \w to|strong="H3068"\w* \w the|strong="H8085"\w* \w city|strong="H5892"\w*— +\q2 \w and|strong="H3068"\w* \w wisdom|strong="H8454"\w* \w fears|strong="H3372"\w* \w your|strong="H3068"\w* \w name|strong="H8034"\w*— +\q1 “\w Listen|strong="H8085"\w* \w to|strong="H3068"\w* \w the|strong="H8085"\w* \w rod|strong="H4294"\w*, +\q2 \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w who|strong="H4310"\w* \w appointed|strong="H3259"\w* \w it|strong="H7121"\w*. +\q1 +\v 10 \w Are|strong="H7563"\w* there \w yet|strong="H5750"\w* treasures \w of|strong="H1004"\w* \w wickedness|strong="H7562"\w* \w in|strong="H1004"\w* \w the|strong="H1004"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H1004"\w* \w wicked|strong="H7563"\w*, +\q2 \w and|strong="H1004"\w* \w a|strong="H3068"\w* \w short|strong="H7332"\w* ephah\f + \fr 6:10 \ft An ephah is a measure of volume (about 22 liters or about 2/3 of a bushel), and a short ephah is made smaller than a full ephah for the purpose of cheating customers.\f* \w that|strong="H1004"\w* \w is|strong="H7563"\w* accursed? +\q1 +\v 11 Shall \w I|strong="H2135"\w* tolerate \w dishonest|strong="H4820"\w* \w scales|strong="H3976"\w*, +\q2 \w and|strong="H4820"\w* \w a|strong="H3068"\w* \w bag|strong="H3599"\w* \w of|strong="H7562"\w* \w deceitful|strong="H4820"\w* weights? +\q1 +\v 12 \w Her|strong="H4390"\w* \w rich|strong="H6223"\w* \w men|strong="H6223"\w* \w are|strong="H6310"\w* \w full|strong="H4390"\w* \w of|strong="H3427"\w* \w violence|strong="H2555"\w*, +\q2 \w her|strong="H4390"\w* \w inhabitants|strong="H3427"\w* \w speak|strong="H1696"\w* \w lies|strong="H8267"\w*, +\q2 \w and|strong="H3427"\w* \w their|strong="H4390"\w* \w tongue|strong="H3956"\w* \w is|strong="H6310"\w* \w deceitful|strong="H8267"\w* \w in|strong="H3427"\w* \w their|strong="H4390"\w* \w speech|strong="H6310"\w*. +\q1 +\v 13 \w Therefore|strong="H5921"\w* \w I|strong="H5921"\w* \w also|strong="H1571"\w* \w have|strong="H1571"\w* \w struck|strong="H5221"\w* \w you|strong="H5921"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w grievous|strong="H2470"\w* wound. +\q2 \w I|strong="H5921"\w* \w have|strong="H1571"\w* \w made|strong="H8074"\w* \w you|strong="H5921"\w* \w desolate|strong="H8074"\w* \w because|strong="H5921"\w* \w of|strong="H5921"\w* \w your|strong="H5921"\w* \w sins|strong="H2403"\w*. +\q1 +\v 14 \w You|strong="H5414"\w* \w shall|strong="H2719"\w* eat, \w but|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w satisfied|strong="H7646"\w*. +\q2 \w Your|strong="H5414"\w* hunger \w will|strong="H2719"\w* \w be|strong="H3808"\w* \w within|strong="H7130"\w* \w you|strong="H5414"\w*. +\q2 \w You|strong="H5414"\w* \w will|strong="H2719"\w* store \w up|strong="H5414"\w*, \w but|strong="H3808"\w* \w not|strong="H3808"\w* save, +\q2 \w and|strong="H2719"\w* \w that|strong="H5414"\w* \w which|strong="H2719"\w* \w you|strong="H5414"\w* save \w I|strong="H5414"\w* \w will|strong="H2719"\w* \w give|strong="H5414"\w* \w up|strong="H5414"\w* \w to|strong="H5414"\w* \w the|strong="H5414"\w* \w sword|strong="H2719"\w*. +\q1 +\v 15 \w You|strong="H3808"\w* \w will|strong="H3808"\w* \w sow|strong="H2232"\w*, \w but|strong="H3808"\w* won’t \w reap|strong="H7114"\w*. +\q2 \w You|strong="H3808"\w* \w will|strong="H3808"\w* \w tread|strong="H1869"\w* \w the|strong="H8354"\w* \w olives|strong="H2132"\w*, \w but|strong="H3808"\w* won’t \w anoint|strong="H5480"\w* yourself \w with|strong="H1869"\w* \w oil|strong="H8081"\w*; +\q2 \w and|strong="H8081"\w* crush \w grapes|strong="H8492"\w*, \w but|strong="H3808"\w* won’t \w drink|strong="H8354"\w* \w the|strong="H8354"\w* \w wine|strong="H3196"\w*. +\q1 +\v 16 \w For|strong="H2708"\w* \w the|strong="H3605"\w* \w statutes|strong="H2708"\w* \w of|strong="H1004"\w* \w Omri|strong="H6018"\w* \w are|strong="H5971"\w* \w kept|strong="H8104"\w*, +\q2 \w and|strong="H3212"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w works|strong="H4639"\w* \w of|strong="H1004"\w* Ahab’s \w house|strong="H1004"\w*. +\q2 \w You|strong="H5414"\w* \w walk|strong="H3212"\w* \w in|strong="H3427"\w* \w their|strong="H3605"\w* \w counsels|strong="H4156"\w*, +\q2 \w that|strong="H5971"\w* \w I|strong="H5414"\w* \w may|strong="H5971"\w* \w make|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* ruin, +\q2 \w and|strong="H3212"\w* \w your|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w a|strong="H3068"\w* \w hissing|strong="H8322"\w*. +\q2 \w You|strong="H5414"\w* \w will|strong="H5971"\w* \w bear|strong="H5375"\w* \w the|strong="H3605"\w* \w reproach|strong="H2781"\w* \w of|strong="H1004"\w* \w my|strong="H8104"\w* \w people|strong="H5971"\w*.” +\b +\c 7 +\q1 +\v 1 Misery \w is|strong="H5315"\w* mine! +\q2 \w Indeed|strong="H3588"\w*, \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w like|strong="H1961"\w* \w one|strong="H1961"\w* \w who|strong="H5315"\w* gathers \w the|strong="H3588"\w* \w summer|strong="H7019"\w* \w fruits|strong="H7019"\w*, \w as|strong="H1961"\w* \w gleanings|strong="H5955"\w* \w of|strong="H5315"\w* \w the|strong="H3588"\w* vineyard. +\q2 \w There|strong="H1961"\w* \w is|strong="H5315"\w* \w no|strong="H1961"\w* cluster \w of|strong="H5315"\w* \w grapes|strong="H5955"\w* \w to|strong="H1961"\w* eat. +\q2 \w My|strong="H1961"\w* \w soul|strong="H5315"\w* desires \w to|strong="H1961"\w* eat \w the|strong="H3588"\w* early \w fig|strong="H1063"\w*. +\q1 +\v 2 \w The|strong="H3605"\w* \w godly|strong="H2623"\w* \w man|strong="H2623"\w* \w has|strong="H3605"\w* perished \w out|strong="H4480"\w* \w of|strong="H4480"\w* \w the|strong="H3605"\w* earth, +\q2 \w and|strong="H1818"\w* \w there|strong="H4480"\w* \w is|strong="H3605"\w* \w no|strong="H4480"\w* \w one|strong="H3605"\w* \w upright|strong="H3477"\w* \w among|strong="H4480"\w* \w men|strong="H3605"\w*. +\q2 \w They|strong="H3605"\w* \w all|strong="H3605"\w* lie \w in|strong="H3477"\w* wait \w for|strong="H3605"\w* \w blood|strong="H1818"\w*; +\q2 \w every|strong="H3605"\w* \w man|strong="H2623"\w* \w hunts|strong="H6679"\w* \w his|strong="H3605"\w* brother \w with|strong="H3605"\w* \w a|strong="H3068"\w* \w net|strong="H2764"\w*. +\q1 +\v 3 \w Their|strong="H5921"\w* \w hands|strong="H3709"\w* \w are|strong="H8199"\w* \w on|strong="H5921"\w* \w that|strong="H1931"\w* \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w evil|strong="H7451"\w* \w to|strong="H1696"\w* \w do|strong="H3190"\w* \w it|strong="H1931"\w* \w diligently|strong="H3190"\w*. +\q2 \w The|strong="H5921"\w* \w ruler|strong="H8269"\w* \w and|strong="H1419"\w* \w judge|strong="H8199"\w* \w ask|strong="H7592"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w bribe|strong="H7966"\w*. +\q1 \w The|strong="H5921"\w* powerful \w man|strong="H5315"\w* dictates \w the|strong="H5921"\w* \w evil|strong="H7451"\w* \w desire|strong="H5315"\w* \w of|strong="H8269"\w* \w his|strong="H5921"\w* \w soul|strong="H5315"\w*. +\q2 Thus \w they|strong="H5921"\w* conspire \w together|strong="H5921"\w*. +\q1 +\v 4 \w The|strong="H3117"\w* \w best|strong="H2896"\w* \w of|strong="H3117"\w* \w them|strong="H1961"\w* \w is|strong="H3117"\w* \w like|strong="H1961"\w* \w a|strong="H3068"\w* \w brier|strong="H2312"\w*. +\q2 \w The|strong="H3117"\w* \w most|strong="H2896"\w* \w upright|strong="H3477"\w* \w is|strong="H3117"\w* worse \w than|strong="H2896"\w* \w a|strong="H3068"\w* \w thorn|strong="H4534"\w* \w hedge|strong="H4534"\w*. +\q1 \w The|strong="H3117"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H1961"\w* \w watchmen|strong="H6822"\w*, +\q2 even \w your|strong="H1961"\w* \w visitation|strong="H6486"\w*, \w has|strong="H1961"\w* \w come|strong="H1961"\w*; +\q2 \w now|strong="H6258"\w* \w is|strong="H3117"\w* \w the|strong="H3117"\w* \w time|strong="H3117"\w* \w of|strong="H3117"\w* \w their|strong="H1961"\w* \w confusion|strong="H3998"\w*. +\q1 +\v 5 Don’t trust \w in|strong="H7901"\w* \w a|strong="H3068"\w* \w neighbor|strong="H7453"\w*. +\q2 Don’t \w put|strong="H6310"\w* confidence \w in|strong="H7901"\w* \w a|strong="H3068"\w* \w friend|strong="H7453"\w*. +\q2 \w With|strong="H7901"\w* \w the|strong="H8104"\w* woman \w lying|strong="H7901"\w* \w in|strong="H7901"\w* \w your|strong="H8104"\w* embrace, +\q2 \w be|strong="H6310"\w* \w careful|strong="H8104"\w* \w of|strong="H6310"\w* \w the|strong="H8104"\w* \w words|strong="H6310"\w* \w of|strong="H6310"\w* \w your|strong="H8104"\w* \w mouth|strong="H6310"\w*! +\q1 +\v 6 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w son|strong="H1121"\w* dishonors \w the|strong="H3588"\w* \w father|strong="H1121"\w*, +\q2 \w the|strong="H3588"\w* \w daughter|strong="H1323"\w* \w rises|strong="H6965"\w* \w up|strong="H6965"\w* \w against|strong="H6965"\w* \w her|strong="H3618"\w* mother, +\q2 \w the|strong="H3588"\w* \w daughter-in-law|strong="H3618"\w* \w against|strong="H6965"\w* \w her|strong="H3618"\w* \w mother-in-law|strong="H2545"\w*; +\q2 \w a|strong="H3068"\w* \w man|strong="H1121"\w*’s \w enemies|strong="H6965"\w* \w are|strong="H1121"\w* \w the|strong="H3588"\w* \w men|strong="H1121"\w* \w of|strong="H1121"\w* \w his|strong="H6965"\w* own \w house|strong="H1004"\w*. +\q1 +\v 7 \w But|strong="H8085"\w* \w as|strong="H3068"\w* \w for|strong="H3068"\w* \w me|strong="H3468"\w*, \w I|strong="H8085"\w* \w will|strong="H3068"\w* \w look|strong="H3068"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w I|strong="H8085"\w* \w will|strong="H3068"\w* \w wait|strong="H3176"\w* \w for|strong="H3068"\w* \w the|strong="H8085"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w my|strong="H8085"\w* \w salvation|strong="H3468"\w*. +\q2 \w My|strong="H8085"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w hear|strong="H8085"\w* \w me|strong="H3468"\w*. +\q1 +\v 8 Don’t \w rejoice|strong="H8055"\w* \w against|strong="H6965"\w* \w me|strong="H6965"\w*, \w my|strong="H3068"\w* enemy. +\q2 \w When|strong="H3588"\w* \w I|strong="H3588"\w* \w fall|strong="H5307"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w arise|strong="H6965"\w*. +\q2 \w When|strong="H3588"\w* \w I|strong="H3588"\w* \w sit|strong="H3427"\w* \w in|strong="H3427"\w* \w darkness|strong="H2822"\w*, \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w a|strong="H3068"\w* light \w to|strong="H3068"\w* \w me|strong="H6965"\w*. +\q1 +\v 9 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w bear|strong="H5375"\w* \w the|strong="H7200"\w* \w indignation|strong="H2197"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, +\q2 \w because|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w him|strong="H6213"\w*, +\q2 \w until|strong="H5704"\w* \w he|strong="H3588"\w* \w pleads|strong="H7378"\w* \w my|strong="H3068"\w* \w case|strong="H7379"\w* \w and|strong="H3068"\w* \w executes|strong="H6213"\w* \w judgment|strong="H4941"\w* \w for|strong="H3588"\w* \w me|strong="H7200"\w*. +\q2 \w He|strong="H3588"\w* \w will|strong="H3068"\w* \w bring|strong="H3318"\w* \w me|strong="H7200"\w* \w out|strong="H3318"\w* \w to|strong="H5704"\w* \w the|strong="H7200"\w* \w light|strong="H5375"\w*. +\q2 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w see|strong="H7200"\w* \w his|strong="H5375"\w* \w righteousness|strong="H6666"\w*. +\q1 +\v 10 \w Then|strong="H1961"\w* \w my|strong="H3068"\w* enemy \w will|strong="H3068"\w* \w see|strong="H7200"\w* \w it|strong="H7200"\w*, +\q2 \w and|strong="H3068"\w* shame \w will|strong="H3068"\w* \w cover|strong="H3680"\w* \w her|strong="H7200"\w* \w who|strong="H3068"\w* said \w to|strong="H3068"\w* \w me|strong="H7200"\w*, +\q2 “Where \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*?” +\q1 \w My|strong="H3068"\w* \w eyes|strong="H5869"\w* \w will|strong="H3068"\w* \w see|strong="H7200"\w* \w her|strong="H7200"\w*. +\q2 \w Now|strong="H6258"\w* she \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w trodden|strong="H4823"\w* \w down|strong="H4823"\w* \w like|strong="H1961"\w* \w the|strong="H7200"\w* \w mire|strong="H2916"\w* \w of|strong="H3068"\w* \w the|strong="H7200"\w* \w streets|strong="H2351"\w*. +\q1 +\v 11 \w A|strong="H3068"\w* \w day|strong="H3117"\w* \w to|strong="H3117"\w* \w build|strong="H1129"\w* \w your|strong="H1129"\w* \w walls|strong="H1447"\w*! +\q2 \w In|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w he|strong="H1931"\w* \w will|strong="H1931"\w* extend \w your|strong="H1129"\w* \w boundary|strong="H2706"\w*. +\q1 +\v 12 \w In|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w they|strong="H3117"\w* \w will|strong="H5892"\w* \w come|strong="H5892"\w* \w to|strong="H5704"\w* \w you|strong="H3117"\w* \w from|strong="H4480"\w* Assyria \w and|strong="H3117"\w* \w the|strong="H4480"\w* \w cities|strong="H5892"\w* \w of|strong="H3117"\w* \w Egypt|strong="H4693"\w*, +\q2 \w and|strong="H3117"\w* \w from|strong="H4480"\w* \w Egypt|strong="H4693"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w the|strong="H4480"\w* \w River|strong="H5104"\w*, +\q2 \w and|strong="H3117"\w* \w from|strong="H4480"\w* \w sea|strong="H3220"\w* \w to|strong="H5704"\w* \w sea|strong="H3220"\w*, +\q2 \w and|strong="H3117"\w* \w mountain|strong="H2022"\w* \w to|strong="H5704"\w* \w mountain|strong="H2022"\w*. +\q1 +\v 13 \w Yet|strong="H5921"\w* \w the|strong="H5921"\w* land \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w desolate|strong="H8077"\w* \w because|strong="H5921"\w* \w of|strong="H3427"\w* \w those|strong="H5921"\w* \w who|strong="H3427"\w* \w dwell|strong="H3427"\w* \w therein|strong="H3427"\w*, +\q2 \w for|strong="H5921"\w* \w the|strong="H5921"\w* \w fruit|strong="H6529"\w* \w of|strong="H3427"\w* \w their|strong="H5921"\w* \w doings|strong="H4611"\w*. +\q1 +\v 14 \w Shepherd|strong="H7462"\w* \w your|strong="H3117"\w* \w people|strong="H5971"\w* \w with|strong="H3117"\w* \w your|strong="H3117"\w* \w staff|strong="H7626"\w*, +\q2 \w the|strong="H8432"\w* \w flock|strong="H6629"\w* \w of|strong="H3117"\w* \w your|strong="H3117"\w* \w heritage|strong="H5159"\w*, +\q2 \w who|strong="H5971"\w* \w dwell|strong="H7931"\w* \w by|strong="H3117"\w* \w themselves|strong="H7462"\w* \w in|strong="H7931"\w* \w a|strong="H3068"\w* \w forest|strong="H3293"\w*. +\q1 Let \w them|strong="H8432"\w* \w feed|strong="H7462"\w* \w in|strong="H7931"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H3117"\w* fertile \w pasture|strong="H7462"\w* \w land|strong="H5159"\w*, +\q2 \w in|strong="H7931"\w* \w Bashan|strong="H1316"\w* \w and|strong="H3117"\w* \w Gilead|strong="H1568"\w*, \w as|strong="H3117"\w* \w in|strong="H7931"\w* \w the|strong="H8432"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w old|strong="H5769"\w*. +\q1 +\v 15 “\w As|strong="H3117"\w* \w in|strong="H3117"\w* \w the|strong="H7200"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w your|strong="H7200"\w* \w coming|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3117"\w* \w the|strong="H7200"\w* land \w of|strong="H3117"\w* \w Egypt|strong="H4714"\w*, +\q2 \w I|strong="H3117"\w* \w will|strong="H4714"\w* \w show|strong="H7200"\w* \w them|strong="H7200"\w* \w marvelous|strong="H6381"\w* \w things|strong="H6381"\w*.” +\q1 +\v 16 \w The|strong="H3605"\w* \w nations|strong="H1471"\w* \w will|strong="H1471"\w* \w see|strong="H7200"\w* \w and|strong="H3027"\w* \w be|strong="H3027"\w* ashamed \w of|strong="H3027"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w might|strong="H1369"\w*. +\q2 \w They|strong="H5921"\w* \w will|strong="H1471"\w* \w lay|strong="H7760"\w* \w their|strong="H3605"\w* \w hand|strong="H3027"\w* \w on|strong="H5921"\w* \w their|strong="H3605"\w* \w mouth|strong="H6310"\w*. +\q2 \w Their|strong="H3605"\w* ears \w will|strong="H1471"\w* \w be|strong="H3027"\w* \w deaf|strong="H2790"\w*. +\q1 +\v 17 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w lick|strong="H3897"\w* \w the|strong="H3068"\w* \w dust|strong="H6083"\w* \w like|strong="H4526"\w* \w a|strong="H3068"\w* \w serpent|strong="H5175"\w*. +\q2 \w Like|strong="H4526"\w* \w crawling|strong="H2119"\w* \w things|strong="H3372"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w earth|strong="H6083"\w*, \w they|strong="H3068"\w* \w will|strong="H3068"\w* \w come|strong="H6342"\w* \w trembling|strong="H7264"\w* \w out|strong="H4480"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* dens. +\q2 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w come|strong="H6342"\w* \w with|strong="H3068"\w* \w fear|strong="H3372"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w our|strong="H3068"\w* \w God|strong="H3068"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w afraid|strong="H3372"\w* \w because|strong="H4480"\w* \w of|strong="H3068"\w* \w you|strong="H4480"\w*. +\q1 +\v 18 \w Who|strong="H4310"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w God|strong="H3808"\w* \w like|strong="H3644"\w* \w you|strong="H3588"\w*, \w who|strong="H4310"\w* \w pardons|strong="H5375"\w* \w iniquity|strong="H5771"\w*, +\q2 \w and|strong="H2388"\w* \w passes|strong="H5674"\w* \w over|strong="H5921"\w* \w the|strong="H5921"\w* disobedience \w of|strong="H7611"\w* \w the|strong="H5921"\w* \w remnant|strong="H7611"\w* \w of|strong="H7611"\w* \w his|strong="H5375"\w* \w heritage|strong="H5159"\w*? +\q1 \w He|strong="H1931"\w* doesn’t \w retain|strong="H2388"\w* \w his|strong="H5375"\w* \w anger|strong="H5375"\w* \w forever|strong="H5703"\w*, +\q2 \w because|strong="H3588"\w* \w he|strong="H1931"\w* \w delights|strong="H2654"\w* \w in|strong="H5921"\w* loving \w kindness|strong="H2617"\w*. +\q1 +\v 19 \w He|strong="H3605"\w* \w will|strong="H5771"\w* \w again|strong="H7725"\w* \w have|strong="H7355"\w* \w compassion|strong="H7355"\w* \w on|strong="H7355"\w* \w us|strong="H7725"\w*. +\q2 \w He|strong="H3605"\w* \w will|strong="H5771"\w* \w tread|strong="H3533"\w* \w our|strong="H3605"\w* \w iniquities|strong="H5771"\w* \w under|strong="H3533"\w* \w foot|strong="H3533"\w*. +\q2 \w You|strong="H3605"\w* \w will|strong="H5771"\w* \w cast|strong="H7993"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w sins|strong="H2403"\w* \w into|strong="H7725"\w* \w the|strong="H3605"\w* \w depths|strong="H4688"\w* \w of|strong="H3605"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w*. +\q1 +\v 20 \w You|strong="H5414"\w* \w will|strong="H5414"\w* \w give|strong="H5414"\w* truth \w to|strong="H5414"\w* \w Jacob|strong="H3290"\w*, +\q2 \w and|strong="H3117"\w* \w mercy|strong="H2617"\w* \w to|strong="H5414"\w* Abraham, +\q2 \w as|strong="H3117"\w* \w you|strong="H5414"\w* \w have|strong="H3117"\w* \w sworn|strong="H7650"\w* \w to|strong="H5414"\w* \w our|strong="H5414"\w* fathers \w from|strong="H3117"\w* \w the|strong="H5414"\w* \w days|strong="H3117"\w* \w of|strong="H3117"\w* \w old|strong="H6924"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/35-NAMeng-web.usfm b/bibles/eng-web_usfm/35-NAMeng-web.usfm new file mode 100644 index 0000000..134059c --- /dev/null +++ b/bibles/eng-web_usfm/35-NAMeng-web.usfm @@ -0,0 +1,69 @@ +\id NAM 34-NAM-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Nahum +\toc1 The Book of Nahum +\toc2 Nahum +\toc3 Nah +\mt2 The Book of +\mt1 Nahum +\c 1 +\p +\v 1 \w A|strong="H3068"\w* revelation \w about|strong="H4853"\w* \w Nineveh|strong="H5210"\w*. \w The|strong="H5612"\w* \w book|strong="H5612"\w* \w of|strong="H5612"\w* \w the|strong="H5612"\w* \w vision|strong="H2377"\w* \w of|strong="H5612"\w* \w Nahum|strong="H5151"\w* \w the|strong="H5612"\w* Elkoshite. +\v 2 \w Yahweh|strong="H3068"\w*\f + \fr 1:2 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w jealous|strong="H7072"\w* \w God|strong="H3068"\w*\f + \fr 1:2 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w and|strong="H3068"\w* avenges. \w Yahweh|strong="H3068"\w* avenges \w and|strong="H3068"\w* \w is|strong="H3068"\w* full \w of|strong="H3068"\w* \w wrath|strong="H2534"\w*. \w Yahweh|strong="H3068"\w* \w takes|strong="H5358"\w* \w vengeance|strong="H5358"\w* \w on|strong="H3068"\w* \w his|strong="H3068"\w* \w adversaries|strong="H6862"\w*, \w and|strong="H3068"\w* \w he|strong="H1931"\w* maintains \w wrath|strong="H2534"\w* \w against|strong="H2534"\w* \w his|strong="H3068"\w* \w enemies|strong="H6862"\w*. +\v 3 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* slow \w to|strong="H3068"\w* anger, \w and|strong="H3068"\w* \w great|strong="H1419"\w* \w in|strong="H3068"\w* \w power|strong="H3581"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w by|strong="H3068"\w* \w no|strong="H3808"\w* \w means|strong="H5352"\w* \w leave|strong="H5352"\w* \w the|strong="H3068"\w* guilty \w unpunished|strong="H5352"\w*. \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w his|strong="H3068"\w* \w way|strong="H1870"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w whirlwind|strong="H5492"\w* \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w storm|strong="H5492"\w*, \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w clouds|strong="H6051"\w* \w are|strong="H3068"\w* \w the|strong="H3068"\w* dust \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w feet|strong="H7272"\w*. +\v 4 \w He|strong="H3605"\w* \w rebukes|strong="H1605"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w* \w and|strong="H3220"\w* \w makes|strong="H3001"\w* \w it|strong="H3001"\w* \w dry|strong="H3001"\w*, \w and|strong="H3220"\w* \w dries|strong="H3001"\w* \w up|strong="H3001"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w rivers|strong="H5104"\w*. \w Bashan|strong="H1316"\w* \w and|strong="H3220"\w* \w Carmel|strong="H3760"\w* languish. \w The|strong="H3605"\w* \w flower|strong="H6525"\w* \w of|strong="H3605"\w* \w Lebanon|strong="H3844"\w* languishes. +\v 5 \w The|strong="H3605"\w* \w mountains|strong="H2022"\w* \w quake|strong="H7493"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, \w and|strong="H6440"\w* \w the|strong="H3605"\w* \w hills|strong="H1389"\w* \w melt|strong="H4127"\w* \w away|strong="H5375"\w*. \w The|strong="H3605"\w* earth trembles \w at|strong="H3427"\w* \w his|strong="H3605"\w* \w presence|strong="H6440"\w*, yes, \w the|strong="H3605"\w* \w world|strong="H8398"\w*, \w and|strong="H6440"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w it|strong="H5375"\w*. +\v 6 \w Who|strong="H4310"\w* \w can|strong="H4310"\w* \w stand|strong="H5975"\w* \w before|strong="H6440"\w* \w his|strong="H6440"\w* \w indignation|strong="H2195"\w*? \w Who|strong="H4310"\w* \w can|strong="H4310"\w* \w endure|strong="H5975"\w* \w the|strong="H6440"\w* \w fierceness|strong="H2740"\w* \w of|strong="H6440"\w* \w his|strong="H6440"\w* \w anger|strong="H2534"\w*? \w His|strong="H6440"\w* \w wrath|strong="H2534"\w* \w is|strong="H4310"\w* \w poured|strong="H5413"\w* \w out|strong="H4480"\w* \w like|strong="H2534"\w* fire, \w and|strong="H6965"\w* \w the|strong="H6440"\w* \w rocks|strong="H6697"\w* \w are|strong="H4310"\w* \w broken|strong="H5422"\w* apart \w by|strong="H5975"\w* \w him|strong="H6440"\w*. +\v 7 \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w*, \w a|strong="H3068"\w* \w stronghold|strong="H4581"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w trouble|strong="H6869"\w*; \w and|strong="H3068"\w* \w he|strong="H3117"\w* \w knows|strong="H3045"\w* those \w who|strong="H3068"\w* \w take|strong="H2620"\w* \w refuge|strong="H2620"\w* \w in|strong="H3068"\w* \w him|strong="H3045"\w*. +\v 8 \w But|strong="H7291"\w* \w with|strong="H6213"\w* \w an|strong="H6213"\w* \w overflowing|strong="H5674"\w* \w flood|strong="H7858"\w*, \w he|strong="H6213"\w* \w will|strong="H4725"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w full|strong="H3617"\w* \w end|strong="H3617"\w* \w of|strong="H4725"\w* \w her|strong="H6213"\w* \w place|strong="H4725"\w*, \w and|strong="H6213"\w* \w will|strong="H4725"\w* \w pursue|strong="H7291"\w* \w his|strong="H6213"\w* enemies \w into|strong="H6213"\w* \w darkness|strong="H2822"\w*. +\v 9 \w What|strong="H4100"\w* \w do|strong="H6213"\w* \w you|strong="H6213"\w* \w plot|strong="H2803"\w* \w against|strong="H6965"\w* \w Yahweh|strong="H3068"\w*? \w He|strong="H1931"\w* \w will|strong="H3068"\w* \w make|strong="H6213"\w* \w a|strong="H3068"\w* \w full|strong="H3617"\w* \w end|strong="H3617"\w*. \w Affliction|strong="H6869"\w* won’t \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w the|strong="H6213"\w* second \w time|strong="H6471"\w*. +\v 10 \w For|strong="H3588"\w* \w entangled|strong="H5440"\w* \w like|strong="H5704"\w* \w thorns|strong="H5518"\w*, \w and|strong="H5704"\w* \w drunken|strong="H5433"\w* \w as|strong="H5704"\w* \w with|strong="H4390"\w* \w their|strong="H4390"\w* \w drink|strong="H5435"\w*, \w they|strong="H3588"\w* \w are|strong="H4390"\w* consumed \w utterly|strong="H5704"\w* \w like|strong="H5704"\w* \w dry|strong="H3002"\w* \w stubble|strong="H7179"\w*. +\v 11 \w One|strong="H4480"\w* \w has|strong="H3068"\w* \w gone|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H3068"\w* \w you|strong="H5921"\w* \w who|strong="H3068"\w* \w devises|strong="H2803"\w* \w evil|strong="H7451"\w* \w against|strong="H5921"\w* \w Yahweh|strong="H3068"\w*, \w who|strong="H3068"\w* counsels \w wickedness|strong="H7451"\w*. +\p +\v 12 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “Though \w they|strong="H3651"\w* \w are|strong="H3068"\w* \w in|strong="H3068"\w* \w full|strong="H8003"\w* strength \w and|strong="H3068"\w* \w likewise|strong="H3651"\w* \w many|strong="H7227"\w*, \w even|strong="H5750"\w* \w so|strong="H3651"\w* \w they|strong="H3651"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w cut|strong="H1494"\w* \w down|strong="H1494"\w* \w and|strong="H3068"\w* \w pass|strong="H5674"\w* \w away|strong="H5674"\w*. Though \w I|strong="H3541"\w* \w have|strong="H3068"\w* \w afflicted|strong="H6031"\w* \w you|strong="H3808"\w*, \w I|strong="H3541"\w* \w will|strong="H3068"\w* \w afflict|strong="H6031"\w* \w you|strong="H3808"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w*. +\v 13 \w Now|strong="H6258"\w* \w I|strong="H5921"\w* will \w break|strong="H7665"\w* \w his|strong="H5921"\w* \w yoke|strong="H4132"\w* \w from|strong="H5921"\w* \w off|strong="H5921"\w* \w you|strong="H5921"\w*, \w and|strong="H7665"\w* will \w burst|strong="H5423"\w* \w your|strong="H5921"\w* \w bonds|strong="H4147"\w* \w apart|strong="H5423"\w*.” +\p +\v 14 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w commanded|strong="H6680"\w* \w concerning|strong="H5921"\w* \w you|strong="H3588"\w*: “\w No|strong="H3808"\w* \w more|strong="H5750"\w* descendants \w will|strong="H3068"\w* bear \w your|strong="H3068"\w* \w name|strong="H8034"\w*. \w Out|strong="H5921"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w your|strong="H3068"\w* gods, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w the|strong="H5921"\w* engraved \w image|strong="H6459"\w* \w and|strong="H3068"\w* \w the|strong="H5921"\w* \w molten|strong="H4541"\w* \w image|strong="H6459"\w*. \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w make|strong="H7760"\w* \w your|strong="H3068"\w* \w grave|strong="H6913"\w*, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w are|strong="H3068"\w* \w vile|strong="H7043"\w*.” +\p +\v 15 Behold,\f + \fr 1:15 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* on the mountains the feet of him who brings good news, who publishes peace! Keep your feasts, Judah! Perform your vows, for the wicked one will no more pass through you. He is utterly cut off. +\c 2 +\p +\v 1 \w He|strong="H3588"\w* \w who|strong="H3605"\w* dashes \w in|strong="H5921"\w* pieces \w has|strong="H3063"\w* \w come|strong="H5674"\w* \w up|strong="H5921"\w* \w against|strong="H5921"\w* \w you|strong="H3588"\w*. \w Keep|strong="H2287"\w* \w the|strong="H3605"\w* fortress! \w Watch|strong="H2009"\w* \w the|strong="H3605"\w* \w way|strong="H5674"\w*! Strengthen \w your|strong="H3605"\w* waist! Fortify \w your|strong="H3605"\w* power mightily! +\p +\v 2 \w For|strong="H5921"\w* \w Yahweh|strong="H3068"\w* restores \w the|strong="H6440"\w* excellency \w of|strong="H6440"\w* Jacob \w as|strong="H5927"\w* \w the|strong="H6440"\w* excellency \w of|strong="H6440"\w* Israel, \w for|strong="H5921"\w* \w the|strong="H6440"\w* destroyers \w have|strong="H5921"\w* destroyed \w them|strong="H5921"\w* \w and|strong="H6440"\w* ruined \w their|strong="H6440"\w* vine branches. +\p +\v 3 \w The|strong="H3588"\w* shield \w of|strong="H3068"\w* \w his|strong="H3068"\w* mighty \w men|strong="H3478"\w* \w is|strong="H3068"\w* \w made|strong="H7725"\w* red. \w The|strong="H3588"\w* valiant \w men|strong="H3478"\w* \w are|strong="H3478"\w* \w in|strong="H3478"\w* scarlet. \w The|strong="H3588"\w* chariots flash \w with|strong="H3068"\w* steel \w in|strong="H3478"\w* \w the|strong="H3588"\w* day \w of|strong="H3068"\w* \w his|strong="H3068"\w* preparation, \w and|strong="H3478"\w* \w the|strong="H3588"\w* pine spears \w are|strong="H3478"\w* brandished. +\v 4 \w The|strong="H3117"\w* \w chariots|strong="H7393"\w* rage \w in|strong="H3117"\w* \w the|strong="H3117"\w* streets. \w They|strong="H3117"\w* rush back \w and|strong="H3117"\w* \w forth|strong="H3559"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* wide ways. \w Their|strong="H3559"\w* appearance \w is|strong="H3117"\w* \w like|strong="H4043"\w* \w torches|strong="H6393"\w*. \w They|strong="H3117"\w* run \w like|strong="H4043"\w* \w the|strong="H3117"\w* lightnings. +\v 5 \w He|strong="H2351"\w* summons \w his|strong="H1984"\w* picked troops. \w They|strong="H7323"\w* stumble \w on|strong="H7323"\w* \w their|strong="H1984"\w* way. \w They|strong="H7323"\w* \w dash|strong="H7323"\w* \w to|strong="H7323"\w* \w its|strong="H1984"\w* wall, \w and|strong="H7393"\w* \w the|strong="H1984"\w* protective shield \w is|strong="H4758"\w* put \w in|strong="H7393"\w* place. +\v 6 \w The|strong="H2142"\w* gates \w of|strong="H2346"\w* \w the|strong="H2142"\w* rivers \w are|strong="H3782"\w* opened, \w and|strong="H4116"\w* \w the|strong="H2142"\w* palace is dissolved. +\v 7 \w It|strong="H4127"\w* \w is|strong="H5104"\w* decreed: she \w is|strong="H5104"\w* uncovered, she \w is|strong="H5104"\w* carried \w away|strong="H4127"\w*; \w and|strong="H8179"\w* \w her|strong="H6605"\w* servants moan \w as|strong="H8179"\w* \w with|strong="H4127"\w* \w the|strong="H6605"\w* voice \w of|strong="H8179"\w* doves, beating \w on|strong="H5104"\w* their breasts. +\v 8 \w But|strong="H5921"\w* \w Nineveh|strong="H5324"\w* has \w been|strong="H5927"\w* \w from|strong="H5921"\w* \w of|strong="H6963"\w* old \w like|strong="H5927"\w* \w a|strong="H3068"\w* pool \w of|strong="H6963"\w* water, \w yet|strong="H5927"\w* \w they|strong="H5921"\w* flee \w away|strong="H1540"\w*. “Stop! Stop!” \w they|strong="H5921"\w* \w cry|strong="H6963"\w*, \w but|strong="H5921"\w* \w no|strong="H5927"\w* \w one|strong="H5324"\w* looks \w back|strong="H5927"\w*. +\v 9 \w Take|strong="H5975"\w* \w the|strong="H3117"\w* plunder \w of|strong="H3117"\w* silver. \w Take|strong="H5975"\w* \w the|strong="H3117"\w* plunder \w of|strong="H3117"\w* gold, \w for|strong="H4325"\w* \w there|strong="H1992"\w* \w is|strong="H1931"\w* \w no|strong="H5975"\w* end \w of|strong="H3117"\w* treasure, an abundance \w of|strong="H3117"\w* \w every|strong="H5127"\w* precious \w thing|strong="H1931"\w*. +\v 10 \w She|strong="H3627"\w* \w is|strong="H3701"\w* empty, void, \w and|strong="H3701"\w* waste. \w The|strong="H3605"\w* heart melts, \w the|strong="H3605"\w* knees knock together, \w their|strong="H3605"\w* bodies \w and|strong="H3701"\w* faces \w have|strong="H3605"\w* grown pale. +\v 11 Where \w is|strong="H3820"\w* \w the|strong="H3605"\w* den \w of|strong="H6440"\w* \w the|strong="H3605"\w* lions, \w and|strong="H6440"\w* \w the|strong="H3605"\w* feeding \w place|strong="H3605"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* young lions, where \w the|strong="H3605"\w* lion \w and|strong="H6440"\w* \w the|strong="H3605"\w* lioness walked \w with|strong="H6440"\w* \w the|strong="H3605"\w* lion’s cubs, \w and|strong="H6440"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w made|strong="H3605"\w* \w them|strong="H6440"\w* afraid? +\v 12 \w The|strong="H8033"\w* \w lion|strong="H3715"\w* tore \w in|strong="H1980"\w* pieces enough \w for|strong="H8033"\w* \w his|strong="H1980"\w* \w cubs|strong="H1482"\w*, \w and|strong="H1980"\w* strangled prey \w for|strong="H8033"\w* \w his|strong="H1980"\w* \w lionesses|strong="H3833"\w*, \w and|strong="H1980"\w* filled \w his|strong="H1980"\w* caves \w with|strong="H1980"\w* \w the|strong="H8033"\w* kill \w and|strong="H1980"\w* \w his|strong="H1980"\w* dens \w with|strong="H1980"\w* prey. +\v 13 “Behold, \w I|strong="H1767"\w* am against \w you|strong="H1767"\w*,” says \w Yahweh|strong="H3068"\w* \w of|strong="H4390"\w* Armies, “\w and|strong="H3833"\w* \w I|strong="H1767"\w* will burn \w her|strong="H4390"\w* chariots \w in|strong="H2963"\w* \w the|strong="H4390"\w* smoke, \w and|strong="H3833"\w* \w the|strong="H4390"\w* sword will devour \w your|strong="H4390"\w* \w young|strong="H3833"\w* \w lions|strong="H3833"\w*; \w and|strong="H3833"\w* \w I|strong="H1767"\w* will cut off \w your|strong="H4390"\w* \w prey|strong="H2964"\w* \w from|strong="H1767"\w* \w the|strong="H4390"\w* earth, \w and|strong="H3833"\w* \w the|strong="H4390"\w* voice \w of|strong="H4390"\w* \w your|strong="H4390"\w* \w messengers|strong="H4390"\w* will no longer be heard.” +\c 3 +\p +\v 1 \w Woe|strong="H1945"\w* \w to|strong="H5892"\w* \w the|strong="H3605"\w* \w bloody|strong="H1818"\w* \w city|strong="H5892"\w*! \w It|strong="H3808"\w* \w is|strong="H3605"\w* \w all|strong="H3605"\w* \w full|strong="H3605"\w* \w of|strong="H5892"\w* \w lies|strong="H3585"\w* \w and|strong="H5892"\w* \w robbery|strong="H6563"\w*—\w no|strong="H3808"\w* end \w to|strong="H5892"\w* \w the|strong="H3605"\w* \w prey|strong="H2964"\w*. +\v 2 \w The|strong="H6963"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H6963"\w* \w whip|strong="H7752"\w*, \w the|strong="H6963"\w* \w noise|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H6963"\w* \w rattling|strong="H7494"\w* \w of|strong="H6963"\w* wheels, prancing \w horses|strong="H5483"\w*, \w and|strong="H6963"\w* \w bounding|strong="H7540"\w* \w chariots|strong="H4818"\w*, +\v 3 \w the|strong="H5927"\w* \w horseman|strong="H6571"\w* \w charging|strong="H5927"\w*, \w and|strong="H2719"\w* \w the|strong="H5927"\w* \w flashing|strong="H3851"\w* \w sword|strong="H2719"\w*, \w the|strong="H5927"\w* \w glittering|strong="H1300"\w* \w spear|strong="H2595"\w*, \w and|strong="H2719"\w* \w a|strong="H3068"\w* \w multitude|strong="H7230"\w* \w of|strong="H7230"\w* \w slain|strong="H2491"\w*, \w and|strong="H2719"\w* \w a|strong="H3068"\w* \w great|strong="H7230"\w* heap \w of|strong="H7230"\w* \w corpses|strong="H6297"\w*, \w and|strong="H2719"\w* \w there|strong="H5927"\w* \w is|strong="H2719"\w* \w no|strong="H5927"\w* \w end|strong="H7097"\w* \w of|strong="H7230"\w* \w the|strong="H5927"\w* \w bodies|strong="H6297"\w*. \w They|strong="H2719"\w* \w stumble|strong="H3782"\w* \w on|strong="H5927"\w* \w their|strong="H5927"\w* \w bodies|strong="H6297"\w* +\v 4 \w because|strong="H7230"\w* \w of|strong="H4940"\w* \w the|strong="H2181"\w* \w multitude|strong="H7230"\w* \w of|strong="H4940"\w* \w the|strong="H2181"\w* prostitution \w of|strong="H4940"\w* \w the|strong="H2181"\w* alluring \w prostitute|strong="H2181"\w*, \w the|strong="H2181"\w* \w mistress|strong="H1172"\w* \w of|strong="H4940"\w* witchcraft, \w who|strong="H2896"\w* \w sells|strong="H4376"\w* \w nations|strong="H1471"\w* through her prostitution, \w and|strong="H1471"\w* \w families|strong="H4940"\w* through her witchcraft. +\v 5 “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w am|strong="H3068"\w* \w against|strong="H5921"\w* \w you|strong="H6440"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, “\w and|strong="H3068"\w* \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w lift|strong="H3068"\w* \w your|strong="H3068"\w* \w skirts|strong="H7757"\w* \w over|strong="H5921"\w* \w your|strong="H3068"\w* \w face|strong="H6440"\w*. \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w show|strong="H7200"\w* \w the|strong="H6440"\w* \w nations|strong="H1471"\w* \w your|strong="H3068"\w* \w nakedness|strong="H4626"\w*, \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w kingdoms|strong="H4467"\w* \w your|strong="H3068"\w* \w shame|strong="H7036"\w*. +\v 6 \w I|strong="H5921"\w* will \w throw|strong="H7993"\w* \w abominable|strong="H8251"\w* \w filth|strong="H8251"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w* \w and|strong="H8251"\w* \w make|strong="H7760"\w* \w you|strong="H5921"\w* \w vile|strong="H5034"\w*, \w and|strong="H8251"\w* will \w make|strong="H7760"\w* \w you|strong="H5921"\w* \w a|strong="H3068"\w* \w spectacle|strong="H7210"\w*. +\v 7 \w It|strong="H7200"\w* \w will|strong="H4310"\w* \w happen|strong="H1961"\w* \w that|strong="H7200"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H4310"\w* \w look|strong="H7200"\w* \w at|strong="H7200"\w* \w you|strong="H3605"\w* \w will|strong="H4310"\w* \w flee|strong="H5074"\w* \w from|strong="H4480"\w* \w you|strong="H3605"\w*, \w and|strong="H7200"\w* say, ‘\w Nineveh|strong="H5210"\w* \w is|strong="H4310"\w* laid \w waste|strong="H7703"\w*! \w Who|strong="H4310"\w* \w will|strong="H4310"\w* \w mourn|strong="H5110"\w* \w for|strong="H1245"\w* \w her|strong="H3605"\w*?’ \w Where|strong="H4480"\w* \w will|strong="H4310"\w* \w I|strong="H7200"\w* \w seek|strong="H1245"\w* \w comforters|strong="H5162"\w* \w for|strong="H1245"\w* \w you|strong="H3605"\w*?” +\p +\v 8 \w Are|strong="H4325"\w* \w you|strong="H3190"\w* \w better|strong="H3190"\w* \w than|strong="H3190"\w* \w No-Amon|strong="H4996"\w*,\f + \fr 3:8 \ft or, Thebes\f* \w who|strong="H3427"\w* \w was|strong="H4325"\w* \w situated|strong="H3427"\w* \w among|strong="H3427"\w* \w the|strong="H5439"\w* \w rivers|strong="H2975"\w*,\f + \fr 3:8 \ft or, Nile\f* \w who|strong="H3427"\w* \w had|strong="H4325"\w* \w the|strong="H5439"\w* \w waters|strong="H4325"\w* \w around|strong="H5439"\w* \w her|strong="H5439"\w*, whose \w rampart|strong="H2426"\w* \w was|strong="H4325"\w* \w the|strong="H5439"\w* \w sea|strong="H3220"\w*, \w and|strong="H3427"\w* \w her|strong="H5439"\w* \w wall|strong="H2346"\w* \w was|strong="H4325"\w* \w of|strong="H3427"\w* \w the|strong="H5439"\w* \w sea|strong="H3220"\w*? +\v 9 \w Cush|strong="H3568"\w* \w and|strong="H4714"\w* \w Egypt|strong="H4714"\w* \w were|strong="H1961"\w* \w her|strong="H1961"\w* boundless \w strength|strong="H6109"\w*. \w Put|strong="H6316"\w* \w and|strong="H4714"\w* \w Libya|strong="H6316"\w* \w were|strong="H1961"\w* \w her|strong="H1961"\w* \w helpers|strong="H5833"\w*. +\v 10 \w Yet|strong="H1571"\w* \w was|strong="H1931"\w* \w she|strong="H1931"\w* \w carried|strong="H1980"\w* \w away|strong="H1980"\w*. \w She|strong="H1931"\w* \w went|strong="H1980"\w* \w into|strong="H1980"\w* \w captivity|strong="H7628"\w*. \w Her|strong="H3605"\w* young \w children|strong="H5768"\w* \w also|strong="H1571"\w* \w were|strong="H1419"\w* \w dashed|strong="H7376"\w* \w in|strong="H5921"\w* \w pieces|strong="H7376"\w* \w at|strong="H5921"\w* \w the|strong="H3605"\w* \w head|strong="H7218"\w* \w of|strong="H7218"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w streets|strong="H2351"\w*, \w and|strong="H1980"\w* \w they|strong="H5921"\w* \w cast|strong="H3032"\w* \w lots|strong="H1486"\w* \w for|strong="H5921"\w* \w her|strong="H3605"\w* \w honorable|strong="H3513"\w* \w men|strong="H1419"\w*, \w and|strong="H1980"\w* \w all|strong="H3605"\w* \w her|strong="H3605"\w* \w great|strong="H1419"\w* \w men|strong="H1419"\w* \w were|strong="H1419"\w* \w bound|strong="H7576"\w* \w in|strong="H5921"\w* \w chains|strong="H2131"\w*. +\v 11 \w You|strong="H1571"\w* \w also|strong="H1571"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w drunken|strong="H7937"\w*. \w You|strong="H1571"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w hidden|strong="H5956"\w*. \w You|strong="H1571"\w* \w also|strong="H1571"\w* \w will|strong="H1961"\w* \w seek|strong="H1245"\w* \w a|strong="H3068"\w* \w stronghold|strong="H4581"\w* because \w of|strong="H4581"\w* \w the|strong="H1245"\w* enemy. +\v 12 \w All|strong="H3605"\w* \w your|strong="H3605"\w* \w fortresses|strong="H4013"\w* \w will|strong="H5307"\w* \w be|strong="H6310"\w* \w like|strong="H5973"\w* \w fig|strong="H8384"\w* \w trees|strong="H8384"\w* \w with|strong="H5973"\w* \w the|strong="H3605"\w* first-ripe \w figs|strong="H8384"\w*. If \w they|strong="H5921"\w* \w are|strong="H6310"\w* \w shaken|strong="H5128"\w*, \w they|strong="H5921"\w* \w fall|strong="H5307"\w* \w into|strong="H5307"\w* \w the|strong="H3605"\w* \w mouth|strong="H6310"\w* \w of|strong="H6310"\w* \w the|strong="H3605"\w* eater. +\v 13 \w Behold|strong="H2009"\w*, \w your|strong="H6605"\w* \w troops|strong="H5971"\w* \w among|strong="H7130"\w* \w you|strong="H7130"\w* \w are|strong="H5971"\w* women. \w The|strong="H7130"\w* \w gates|strong="H8179"\w* \w of|strong="H8179"\w* \w your|strong="H6605"\w* \w land|strong="H7130"\w* \w are|strong="H5971"\w* \w set|strong="H6605"\w* \w wide|strong="H6605"\w* \w open|strong="H6605"\w* \w to|strong="H5971"\w* \w your|strong="H6605"\w* enemies. \w The|strong="H7130"\w* fire \w has|strong="H2009"\w* devoured \w your|strong="H6605"\w* \w bars|strong="H1280"\w*. +\p +\v 14 \w Draw|strong="H7579"\w* \w water|strong="H4325"\w* \w for|strong="H4325"\w* \w the|strong="H2388"\w* \w siege|strong="H4692"\w*. \w Strengthen|strong="H2388"\w* \w your|strong="H2388"\w* \w fortresses|strong="H4013"\w*. Go \w into|strong="H4325"\w* \w the|strong="H2388"\w* \w clay|strong="H2563"\w*, \w and|strong="H2388"\w* \w tread|strong="H7429"\w* \w the|strong="H2388"\w* \w mortar|strong="H2563"\w*. \w Make|strong="H2388"\w* \w the|strong="H2388"\w* \w brick|strong="H4404"\w* kiln \w strong|strong="H2388"\w*. +\v 15 \w There|strong="H8033"\w* \w the|strong="H3772"\w* fire \w will|strong="H2719"\w* devour \w you|strong="H3772"\w*. \w The|strong="H3772"\w* \w sword|strong="H2719"\w* \w will|strong="H2719"\w* \w cut|strong="H3772"\w* \w you|strong="H3772"\w* \w off|strong="H3772"\w*. \w It|strong="H8033"\w* \w will|strong="H2719"\w* devour \w you|strong="H3772"\w* \w like|strong="H8033"\w* \w the|strong="H3772"\w* grasshopper. \w Multiply|strong="H3513"\w* \w like|strong="H8033"\w* \w grasshoppers|strong="H3218"\w*. \w Multiply|strong="H3513"\w* \w like|strong="H8033"\w* \w the|strong="H3772"\w* \w locust|strong="H3218"\w*. +\v 16 \w You|strong="H7235"\w* have \w increased|strong="H7235"\w* \w your|strong="H7235"\w* \w merchants|strong="H7402"\w* \w more|strong="H7235"\w* \w than|strong="H7235"\w* \w the|strong="H6584"\w* \w stars|strong="H3556"\w* \w of|strong="H3556"\w* \w the|strong="H6584"\w* skies. \w The|strong="H6584"\w* grasshopper \w strips|strong="H6584"\w* \w and|strong="H8064"\w* flees \w away|strong="H5774"\w*. +\v 17 \w Your|strong="H3045"\w* \w guards|strong="H3045"\w* \w are|strong="H3117"\w* \w like|strong="H3808"\w* \w the|strong="H3117"\w* \w locusts|strong="H1462"\w*, \w and|strong="H3117"\w* \w your|strong="H3045"\w* officials \w like|strong="H3808"\w* \w the|strong="H3117"\w* swarms \w of|strong="H3117"\w* \w locusts|strong="H1462"\w*, \w which|strong="H4725"\w* settle \w on|strong="H3117"\w* \w the|strong="H3117"\w* \w walls|strong="H1448"\w* \w on|strong="H3117"\w* \w a|strong="H3068"\w* \w cold|strong="H7135"\w* \w day|strong="H3117"\w*, \w but|strong="H3808"\w* \w when|strong="H3117"\w* \w the|strong="H3117"\w* \w sun|strong="H8121"\w* appears, \w they|strong="H3117"\w* \w flee|strong="H5074"\w* \w away|strong="H5074"\w*, \w and|strong="H3117"\w* \w their|strong="H3045"\w* \w place|strong="H4725"\w* \w is|strong="H3117"\w* \w not|strong="H3808"\w* \w known|strong="H3045"\w* \w where|strong="H4725"\w* \w they|strong="H3117"\w* \w are|strong="H3117"\w*. +\p +\v 18 \w Your|strong="H5921"\w* \w shepherds|strong="H7462"\w* \w slumber|strong="H5123"\w*, \w king|strong="H4428"\w* \w of|strong="H4428"\w* Assyria. \w Your|strong="H5921"\w* nobles \w lie|strong="H7931"\w* \w down|strong="H7931"\w*. \w Your|strong="H5921"\w* \w people|strong="H5971"\w* \w are|strong="H5971"\w* \w scattered|strong="H6335"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w mountains|strong="H2022"\w*, \w and|strong="H4428"\w* \w there|strong="H2022"\w* \w is|strong="H4428"\w* no \w one|strong="H4428"\w* \w to|strong="H5921"\w* \w gather|strong="H6908"\w* \w them|strong="H5921"\w*. +\v 19 \w There|strong="H3605"\w* \w is|strong="H4310"\w* \w no|strong="H3808"\w* \w healing|strong="H3545"\w* \w your|strong="H3605"\w* \w wound|strong="H4347"\w*, \w for|strong="H3588"\w* \w your|strong="H3605"\w* \w injury|strong="H7667"\w* \w is|strong="H4310"\w* fatal. \w All|strong="H3605"\w* \w who|strong="H4310"\w* \w hear|strong="H8085"\w* \w the|strong="H3605"\w* \w report|strong="H8088"\w* \w of|strong="H3709"\w* \w you|strong="H3588"\w* \w clap|strong="H8628"\w* \w their|strong="H3605"\w* \w hands|strong="H3709"\w* \w over|strong="H5921"\w* \w you|strong="H3588"\w*, \w for|strong="H3588"\w* \w who|strong="H4310"\w* hasn’t felt \w your|strong="H3605"\w* endless \w cruelty|strong="H7451"\w*? \ No newline at end of file diff --git a/bibles/eng-web_usfm/36-HABeng-web.usfm b/bibles/eng-web_usfm/36-HABeng-web.usfm new file mode 100644 index 0000000..06b53a6 --- /dev/null +++ b/bibles/eng-web_usfm/36-HABeng-web.usfm @@ -0,0 +1,142 @@ +\id HAB 35-HAB-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Habakkuk +\toc1 The Book of Habakkuk +\toc2 Habakkuk +\toc3 Hab +\mt2 The Book of +\mt1 Habakkuk +\c 1 +\p +\v 1 \w The|strong="H2372"\w* revelation \w which|strong="H5030"\w* \w Habakkuk|strong="H2265"\w* \w the|strong="H2372"\w* \w prophet|strong="H5030"\w* \w saw|strong="H2372"\w*. +\v 2 \w Yahweh|strong="H3068"\w*,\f + \fr 1:2 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w how|strong="H5704"\w* \w long|strong="H5704"\w* \w will|strong="H3068"\w* \w I|strong="H5704"\w* \w cry|strong="H2199"\w*, \w and|strong="H3068"\w* \w you|strong="H5704"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w hear|strong="H8085"\w*? \w I|strong="H5704"\w* \w cry|strong="H2199"\w* \w out|strong="H2199"\w* \w to|strong="H5704"\w* \w you|strong="H5704"\w* “\w Violence|strong="H2555"\w*!” \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w you|strong="H5704"\w* \w not|strong="H3808"\w* \w save|strong="H3467"\w*? +\v 3 \w Why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H4100"\w* \w show|strong="H7200"\w* \w me|strong="H7200"\w* \w iniquity|strong="H5999"\w*, \w and|strong="H7200"\w* \w look|strong="H7200"\w* \w at|strong="H7200"\w* perversity? \w For|strong="H1961"\w* \w destruction|strong="H7701"\w* \w and|strong="H7200"\w* \w violence|strong="H2555"\w* \w are|strong="H4100"\w* \w before|strong="H5048"\w* \w me|strong="H7200"\w*. \w There|strong="H1961"\w* \w is|strong="H4100"\w* \w strife|strong="H7379"\w*, \w and|strong="H7200"\w* \w contention|strong="H4066"\w* rises \w up|strong="H5375"\w*. +\v 4 \w Therefore|strong="H3651"\w* \w the|strong="H5921"\w* \w law|strong="H8451"\w* \w is|strong="H7563"\w* paralyzed, \w and|strong="H4941"\w* \w justice|strong="H4941"\w* \w never|strong="H3808"\w* prevails; \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w wicked|strong="H7563"\w* \w surround|strong="H3803"\w* \w the|strong="H5921"\w* \w righteous|strong="H6662"\w*; \w therefore|strong="H3651"\w* \w justice|strong="H4941"\w* \w comes|strong="H3318"\w* \w out|strong="H3318"\w* \w perverted|strong="H6127"\w*. +\p +\v 5 “\w Look|strong="H7200"\w* \w among|strong="H7200"\w* \w the|strong="H7200"\w* \w nations|strong="H1471"\w*, \w watch|strong="H7200"\w*, \w and|strong="H3117"\w* \w wonder|strong="H8539"\w* marvelously; \w for|strong="H3588"\w* \w I|strong="H3588"\w* am \w working|strong="H6466"\w* \w a|strong="H3068"\w* \w work|strong="H6467"\w* \w in|strong="H3117"\w* \w your|strong="H7200"\w* \w days|strong="H3117"\w* \w which|strong="H1471"\w* \w you|strong="H3588"\w* \w will|strong="H1471"\w* \w not|strong="H3808"\w* believe \w though|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H3117"\w* \w told|strong="H5608"\w* \w you|strong="H3588"\w*. +\v 6 \w For|strong="H3588"\w*, \w behold|strong="H2005"\w*,\f + \fr 1:6 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w I|strong="H3588"\w* \w am|strong="H1980"\w* \w raising|strong="H6965"\w* \w up|strong="H6965"\w* \w the|strong="H3588"\w* \w Chaldeans|strong="H3778"\w*, \w that|strong="H3588"\w* \w bitter|strong="H4751"\w* \w and|strong="H1980"\w* \w hasty|strong="H4116"\w* \w nation|strong="H1471"\w* \w who|strong="H3588"\w* \w march|strong="H1980"\w* \w through|strong="H1980"\w* \w the|strong="H3588"\w* width \w of|strong="H4908"\w* \w the|strong="H3588"\w* earth, \w to|strong="H1980"\w* \w possess|strong="H3423"\w* \w dwelling|strong="H4908"\w* \w places|strong="H4908"\w* \w that|strong="H3588"\w* \w are|strong="H1471"\w* \w not|strong="H3808"\w* theirs. +\v 7 \w They|strong="H1931"\w* \w are|strong="H4941"\w* \w feared|strong="H3372"\w* \w and|strong="H4941"\w* dreaded. \w Their|strong="H3318"\w* \w judgment|strong="H4941"\w* \w and|strong="H4941"\w* \w their|strong="H3318"\w* \w dignity|strong="H7613"\w* \w proceed|strong="H3318"\w* \w from|strong="H4480"\w* themselves. +\v 8 \w Their|strong="H7043"\w* \w horses|strong="H5483"\w* also \w are|strong="H5483"\w* \w swifter|strong="H7043"\w* \w than|strong="H7043"\w* \w leopards|strong="H5246"\w*, \w and|strong="H5483"\w* \w are|strong="H5483"\w* more \w fierce|strong="H2300"\w* \w than|strong="H7043"\w* \w the|strong="H7043"\w* \w evening|strong="H6153"\w* \w wolves|strong="H2061"\w*. \w Their|strong="H7043"\w* \w horsemen|strong="H6571"\w* press proudly \w on|strong="H5483"\w*. Yes, \w their|strong="H7043"\w* \w horsemen|strong="H6571"\w* \w come|strong="H7350"\w* \w from|strong="H7350"\w* \w afar|strong="H7350"\w*. They \w fly|strong="H5774"\w* \w as|strong="H6153"\w* an \w eagle|strong="H5404"\w* \w that|strong="H6153"\w* hurries \w to|strong="H2363"\w* devour. +\v 9 \w All|strong="H3605"\w* \w of|strong="H6440"\w* \w them|strong="H6440"\w* come \w for|strong="H6440"\w* \w violence|strong="H2555"\w*. \w Their|strong="H3605"\w* hordes \w face|strong="H6440"\w* \w forward|strong="H6440"\w*. \w They|strong="H3605"\w* gather \w prisoners|strong="H7628"\w* \w like|strong="H6440"\w* \w sand|strong="H2344"\w*. +\v 10 Yes, \w they|strong="H1931"\w* \w scoff|strong="H7046"\w* \w at|strong="H4428"\w* \w kings|strong="H4428"\w*, \w and|strong="H4428"\w* \w princes|strong="H7336"\w* \w are|strong="H4428"\w* \w a|strong="H3068"\w* \w derision|strong="H7832"\w* \w to|strong="H4428"\w* \w them|strong="H1931"\w*. \w They|strong="H1931"\w* \w laugh|strong="H7832"\w* \w at|strong="H4428"\w* \w every|strong="H3605"\w* stronghold, \w for|strong="H4428"\w* \w they|strong="H1931"\w* build \w up|strong="H6651"\w* \w an|strong="H4428"\w* earthen ramp \w and|strong="H4428"\w* \w take|strong="H3920"\w* \w it|strong="H1931"\w*. +\v 11 \w Then|strong="H5674"\w* \w they|strong="H2098"\w* \w sweep|strong="H2498"\w* \w by|strong="H5674"\w* \w like|strong="H7307"\w* \w the|strong="H5674"\w* \w wind|strong="H7307"\w* \w and|strong="H5674"\w* \w go|strong="H5674"\w* \w on|strong="H5674"\w*. \w They|strong="H2098"\w* are indeed guilty, \w whose|strong="H2098"\w* \w strength|strong="H3581"\w* \w is|strong="H7307"\w* their god.” +\p +\v 12 Aren’t \w you|strong="H7760"\w* \w from|strong="H3068"\w* \w everlasting|strong="H6924"\w*, \w Yahweh|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*,\f + \fr 1:12 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w my|strong="H3068"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w*? \w We|strong="H4191"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w die|strong="H4191"\w*. \w Yahweh|strong="H3068"\w*, \w you|strong="H7760"\w* \w have|strong="H3068"\w* \w appointed|strong="H7760"\w* \w them|strong="H7760"\w* \w for|strong="H3068"\w* \w judgment|strong="H4941"\w*. \w You|strong="H7760"\w*, \w Rock|strong="H6697"\w*, \w have|strong="H3068"\w* \w established|strong="H3245"\w* \w him|strong="H7760"\w* \w to|strong="H4191"\w* \w punish|strong="H3198"\w*. +\v 13 \w You|strong="H3808"\w* \w who|strong="H6662"\w* \w have|strong="H5869"\w* purer \w eyes|strong="H5869"\w* \w than|strong="H4480"\w* \w to|strong="H3201"\w* \w see|strong="H7200"\w* \w evil|strong="H7451"\w*, \w and|strong="H5869"\w* \w who|strong="H6662"\w* \w cannot|strong="H3808"\w* \w look|strong="H7200"\w* \w on|strong="H7200"\w* perversity, \w why|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H3808"\w* \w tolerate|strong="H3201"\w* \w those|strong="H4480"\w* \w who|strong="H6662"\w* deal treacherously \w and|strong="H5869"\w* \w keep|strong="H2790"\w* \w silent|strong="H2790"\w* \w when|strong="H7200"\w* \w the|strong="H7200"\w* \w wicked|strong="H7563"\w* \w swallows|strong="H1104"\w* \w up|strong="H1104"\w* \w the|strong="H7200"\w* \w man|strong="H7563"\w* \w who|strong="H6662"\w* \w is|strong="H4100"\w* \w more|strong="H4480"\w* \w righteous|strong="H6662"\w* \w than|strong="H4480"\w* \w he|strong="H4480"\w*, +\v 14 \w and|strong="H6213"\w* \w make|strong="H6213"\w* \w men|strong="H6213"\w* \w like|strong="H3808"\w* \w the|strong="H6213"\w* \w fish|strong="H1709"\w* \w of|strong="H3220"\w* \w the|strong="H6213"\w* \w sea|strong="H3220"\w*, \w like|strong="H3808"\w* \w the|strong="H6213"\w* \w creeping|strong="H7431"\w* \w things|strong="H7431"\w* \w that|strong="H7431"\w* \w have|strong="H4910"\w* \w no|strong="H3808"\w* \w ruler|strong="H4910"\w* \w over|strong="H4910"\w* \w them|strong="H6213"\w*? +\v 15 \w He|strong="H3651"\w* takes \w up|strong="H5927"\w* \w all|strong="H3605"\w* \w of|strong="H5921"\w* \w them|strong="H5921"\w* \w with|strong="H5921"\w* \w the|strong="H3605"\w* \w hook|strong="H2443"\w*. \w He|strong="H3651"\w* catches \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* \w net|strong="H2764"\w* \w and|strong="H5927"\w* gathers \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w his|strong="H3605"\w* dragnet. \w Therefore|strong="H3651"\w* \w he|strong="H3651"\w* \w rejoices|strong="H8055"\w* \w and|strong="H5927"\w* \w is|strong="H3651"\w* \w glad|strong="H8055"\w*. +\v 16 \w Therefore|strong="H3651"\w* \w he|strong="H3588"\w* \w sacrifices|strong="H6999"\w* \w to|strong="H5921"\w* \w his|strong="H5921"\w* \w net|strong="H2764"\w* \w and|strong="H2076"\w* \w burns|strong="H6999"\w* \w incense|strong="H6999"\w* \w to|strong="H5921"\w* \w his|strong="H5921"\w* dragnet, \w because|strong="H3588"\w* \w by|strong="H5921"\w* \w them|strong="H1992"\w* \w his|strong="H5921"\w* life \w is|strong="H3651"\w* luxurious \w and|strong="H2076"\w* \w his|strong="H5921"\w* \w food|strong="H3978"\w* \w is|strong="H3651"\w* good. +\v 17 \w Will|strong="H1471"\w* \w he|strong="H3651"\w* \w therefore|strong="H3651"\w* \w continually|strong="H8548"\w* \w empty|strong="H7324"\w* \w his|strong="H5921"\w* \w net|strong="H2764"\w*, \w and|strong="H1471"\w* \w kill|strong="H2026"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w* \w without|strong="H3808"\w* \w mercy|strong="H2550"\w*? +\c 2 +\p +\v 1 \w I|strong="H5921"\w* \w will|strong="H4100"\w* \w stand|strong="H5975"\w* \w at|strong="H5921"\w* \w my|strong="H7200"\w* \w watch|strong="H6822"\w* \w and|strong="H7725"\w* \w set|strong="H5975"\w* myself \w on|strong="H5921"\w* \w the|strong="H5921"\w* ramparts, \w and|strong="H7725"\w* \w will|strong="H4100"\w* \w look|strong="H7200"\w* \w out|strong="H7200"\w* \w to|strong="H1696"\w* \w see|strong="H7200"\w* \w what|strong="H4100"\w* \w he|strong="H5921"\w* \w will|strong="H4100"\w* \w say|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H7725"\w*, \w and|strong="H7725"\w* \w what|strong="H4100"\w* \w I|strong="H5921"\w* \w will|strong="H4100"\w* \w answer|strong="H7725"\w* \w concerning|strong="H5921"\w* \w my|strong="H7200"\w* complaint. +\p +\v 2 \w Yahweh|strong="H3068"\w* \w answered|strong="H6030"\w* \w me|strong="H5921"\w*, “\w Write|strong="H3789"\w* \w the|strong="H5921"\w* \w vision|strong="H2377"\w*, \w and|strong="H3068"\w* \w make|strong="H7121"\w* \w it|strong="H7121"\w* plain \w on|strong="H5921"\w* \w tablets|strong="H3871"\w*, \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w who|strong="H3068"\w* \w runs|strong="H7323"\w* \w may|strong="H3068"\w* \w read|strong="H7121"\w* \w it|strong="H7121"\w*. +\v 3 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w vision|strong="H2377"\w* \w is|strong="H7093"\w* \w yet|strong="H5750"\w* \w for|strong="H3588"\w* \w the|strong="H3588"\w* \w appointed|strong="H4150"\w* \w time|strong="H4150"\w*, \w and|strong="H4150"\w* \w it|strong="H3588"\w* hurries toward \w the|strong="H3588"\w* \w end|strong="H7093"\w*, \w and|strong="H4150"\w* won’t \w prove|strong="H3576"\w* \w false|strong="H3576"\w*. \w Though|strong="H3588"\w* \w it|strong="H3588"\w* takes \w time|strong="H4150"\w*, \w wait|strong="H2442"\w* \w for|strong="H3588"\w* \w it|strong="H3588"\w*, \w because|strong="H3588"\w* \w it|strong="H3588"\w* \w will|strong="H3808"\w* \w surely|strong="H3588"\w* \w come|strong="H5750"\w*. \w It|strong="H3588"\w* won’t \w delay|strong="H4102"\w*. +\v 4 \w Behold|strong="H2009"\w*, \w his|strong="H3808"\w* \w soul|strong="H5315"\w* \w is|strong="H5315"\w* puffed \w up|strong="H6075"\w*. \w It|strong="H3808"\w* \w is|strong="H5315"\w* \w not|strong="H3808"\w* \w upright|strong="H3474"\w* \w in|strong="H5315"\w* \w him|strong="H5315"\w*, \w but|strong="H3808"\w* \w the|strong="H3808"\w* \w righteous|strong="H6662"\w* \w will|strong="H6662"\w* \w live|strong="H2421"\w* \w by|strong="H3808"\w* \w his|strong="H3808"\w* faith. +\v 5 \w Yes|strong="H3588"\w*, \w moreover|strong="H3588"\w*, \w wine|strong="H3196"\w* \w is|strong="H1931"\w* treacherous: \w an|strong="H3588"\w* arrogant \w man|strong="H1397"\w* \w who|strong="H3605"\w* doesn’t \w stay|strong="H5115"\w* \w at|strong="H6908"\w* \w home|strong="H5115"\w*, \w who|strong="H3605"\w* \w enlarges|strong="H7337"\w* \w his|strong="H3605"\w* \w desire|strong="H5315"\w* \w as|strong="H5315"\w* \w Sheol|strong="H7585"\w*;\f + \fr 2:5 \ft Sheol is the place of the dead. \f* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w like|strong="H3808"\w* \w death|strong="H4194"\w* \w and|strong="H5971"\w* \w can|strong="H4194"\w*’t \w be|strong="H3808"\w* \w satisfied|strong="H7646"\w*, \w but|strong="H3588"\w* \w gathers|strong="H6908"\w* \w to|strong="H5315"\w* \w himself|strong="H5315"\w* \w all|strong="H3605"\w* \w nations|strong="H1471"\w* \w and|strong="H5971"\w* heaps \w to|strong="H5315"\w* \w himself|strong="H5315"\w* \w all|strong="H3605"\w* \w peoples|strong="H5971"\w*. +\p +\v 6 Won’t \w all|strong="H3605"\w* \w these|strong="H3605"\w* \w take|strong="H5375"\w* \w up|strong="H5375"\w* \w a|strong="H3068"\w* \w parable|strong="H4912"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H4912"\w* \w a|strong="H3068"\w* \w taunting|strong="H4426"\w* \w proverb|strong="H4912"\w* \w against|strong="H5921"\w* \w him|strong="H5921"\w*, \w and|strong="H4912"\w* say, ‘\w Woe|strong="H1945"\w* \w to|strong="H5704"\w* \w him|strong="H5921"\w* \w who|strong="H3605"\w* \w increases|strong="H7235"\w* \w that|strong="H3605"\w* \w which|strong="H3605"\w* \w is|strong="H3605"\w* \w not|strong="H3808"\w* \w his|strong="H3605"\w*, \w and|strong="H4912"\w* \w who|strong="H3605"\w* enriches \w himself|strong="H3513"\w* \w by|strong="H5921"\w* extortion! \w How|strong="H4970"\w* \w long|strong="H5704"\w*?’ +\v 7 Won’t \w your|strong="H3808"\w* debtors \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w suddenly|strong="H6621"\w*, \w and|strong="H6965"\w* \w wake|strong="H6974"\w* \w up|strong="H6965"\w* \w those|strong="H1961"\w* \w who|strong="H3808"\w* \w make|strong="H6965"\w* \w you|strong="H3808"\w* \w tremble|strong="H2111"\w*, \w and|strong="H6965"\w* \w you|strong="H3808"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w their|strong="H1961"\w* victim? +\v 8 \w Because|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H5971"\w* \w plundered|strong="H7997"\w* \w many|strong="H7227"\w* \w nations|strong="H1471"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w remnant|strong="H3499"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w will|strong="H1471"\w* \w plunder|strong="H7997"\w* \w you|strong="H3588"\w* \w because|strong="H3588"\w* \w of|strong="H3427"\w* \w men|strong="H5971"\w*’s \w blood|strong="H1818"\w*, \w and|strong="H5971"\w* \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w violence|strong="H2555"\w* \w done|strong="H3605"\w* \w to|strong="H5971"\w* \w the|strong="H3605"\w* land, \w to|strong="H5971"\w* \w the|strong="H3605"\w* \w city|strong="H7151"\w* \w and|strong="H5971"\w* \w to|strong="H5971"\w* \w all|strong="H3605"\w* \w who|strong="H3605"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w it|strong="H3588"\w*. +\p +\v 9 \w Woe|strong="H1945"\w* \w to|strong="H1004"\w* \w him|strong="H7760"\w* \w who|strong="H1945"\w* \w gets|strong="H1214"\w* \w an|strong="H7760"\w* \w evil|strong="H7451"\w* \w gain|strong="H1215"\w* \w for|strong="H1004"\w* \w his|strong="H7760"\w* \w house|strong="H1004"\w*, \w that|strong="H7451"\w* \w he|strong="H1004"\w* \w may|strong="H1004"\w* \w set|strong="H7760"\w* \w his|strong="H7760"\w* \w nest|strong="H7064"\w* \w on|strong="H7760"\w* \w high|strong="H4791"\w*, \w that|strong="H7451"\w* \w he|strong="H1004"\w* \w may|strong="H1004"\w* \w be|strong="H1004"\w* \w delivered|strong="H5337"\w* \w from|strong="H5337"\w* \w the|strong="H7760"\w* \w hand|strong="H3709"\w* \w of|strong="H1004"\w* \w evil|strong="H7451"\w*! +\v 10 \w You|strong="H3289"\w* \w have|strong="H5971"\w* \w devised|strong="H3289"\w* \w shame|strong="H1322"\w* \w to|strong="H1004"\w* \w your|strong="H5971"\w* \w house|strong="H1004"\w* \w by|strong="H2398"\w* \w cutting|strong="H7096"\w* \w off|strong="H7096"\w* \w many|strong="H7227"\w* \w peoples|strong="H5971"\w*, \w and|strong="H1004"\w* \w have|strong="H5971"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w your|strong="H5971"\w* \w soul|strong="H5315"\w*. +\v 11 \w For|strong="H3588"\w* \w the|strong="H3588"\w* stone \w will|strong="H2199"\w* \w cry|strong="H2199"\w* \w out|strong="H2199"\w* \w of|strong="H6086"\w* \w the|strong="H3588"\w* \w wall|strong="H7023"\w*, \w and|strong="H6030"\w* \w the|strong="H3588"\w* beam \w out|strong="H2199"\w* \w of|strong="H6086"\w* \w the|strong="H3588"\w* woodwork \w will|strong="H2199"\w* \w answer|strong="H6030"\w* \w it|strong="H3588"\w*. +\p +\v 12 \w Woe|strong="H1945"\w* \w to|strong="H5892"\w* \w him|strong="H3559"\w* \w who|strong="H1945"\w* \w builds|strong="H1129"\w* \w a|strong="H3068"\w* \w town|strong="H7151"\w* \w with|strong="H5892"\w* \w blood|strong="H1818"\w*, \w and|strong="H5892"\w* \w establishes|strong="H3559"\w* \w a|strong="H3068"\w* \w city|strong="H5892"\w* \w by|strong="H3559"\w* \w iniquity|strong="H5766"\w*! +\v 13 \w Behold|strong="H2009"\w*, isn’t \w it|strong="H3808"\w* \w from|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w that|strong="H5971"\w* \w the|strong="H3068"\w* \w peoples|strong="H5971"\w* \w labor|strong="H3021"\w* \w for|strong="H3068"\w* \w the|strong="H3068"\w* fire, \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w nations|strong="H5971"\w* \w weary|strong="H3021"\w* themselves \w for|strong="H3068"\w* \w vanity|strong="H7385"\w*? +\v 14 \w For|strong="H3588"\w* \w the|strong="H5921"\w* earth \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w filled|strong="H4390"\w* \w with|strong="H4390"\w* \w the|strong="H5921"\w* \w knowledge|strong="H3045"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w glory|strong="H3519"\w*, \w as|strong="H3068"\w* \w the|strong="H5921"\w* \w waters|strong="H4325"\w* \w cover|strong="H3680"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*. +\p +\v 15 “\w Woe|strong="H1945"\w* \w to|strong="H5921"\w* \w him|strong="H5921"\w* \w who|strong="H1945"\w* gives \w his|strong="H5921"\w* \w neighbor|strong="H7453"\w* \w drink|strong="H8248"\w*, pouring \w your|strong="H5921"\w* inflaming wine \w until|strong="H5921"\w* \w they|strong="H5921"\w* are \w drunk|strong="H7937"\w*, \w so|strong="H4616"\w* \w that|strong="H4616"\w* \w you|strong="H5921"\w* \w may|strong="H4616"\w* \w gaze|strong="H5027"\w* \w at|strong="H5921"\w* \w their|strong="H5921"\w* naked bodies! +\v 16 \w You|strong="H5921"\w* \w are|strong="H3068"\w* \w filled|strong="H7646"\w* \w with|strong="H7646"\w* \w shame|strong="H7036"\w*, \w and|strong="H3068"\w* \w not|strong="H1571"\w* \w glory|strong="H3519"\w*. \w You|strong="H5921"\w* \w will|strong="H3068"\w* \w also|strong="H1571"\w* \w drink|strong="H8354"\w* \w and|strong="H3068"\w* \w be|strong="H3068"\w* exposed! \w The|strong="H5921"\w* \w cup|strong="H3563"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w will|strong="H3068"\w* \w come|strong="H5437"\w* \w around|strong="H5437"\w* \w to|strong="H3068"\w* \w you|strong="H5921"\w*, \w and|strong="H3068"\w* \w disgrace|strong="H7036"\w* \w will|strong="H3068"\w* cover \w your|strong="H3068"\w* \w glory|strong="H3519"\w*. +\v 17 \w For|strong="H3588"\w* \w the|strong="H3605"\w* \w violence|strong="H2555"\w* \w done|strong="H3605"\w* \w to|strong="H3427"\w* \w Lebanon|strong="H3844"\w* \w will|strong="H3844"\w* \w overwhelm|strong="H3680"\w* \w you|strong="H3588"\w*, \w and|strong="H1818"\w* \w the|strong="H3605"\w* \w destruction|strong="H7701"\w* \w of|strong="H3427"\w* \w the|strong="H3605"\w* animals \w will|strong="H3844"\w* \w terrify|strong="H2865"\w* \w you|strong="H3588"\w*, \w because|strong="H3588"\w* \w of|strong="H3427"\w* \w men|strong="H3605"\w*’s \w blood|strong="H1818"\w* \w and|strong="H1818"\w* \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w violence|strong="H2555"\w* \w done|strong="H3605"\w* \w to|strong="H3427"\w* \w the|strong="H3605"\w* land, \w to|strong="H3427"\w* \w every|strong="H3605"\w* \w city|strong="H7151"\w* \w and|strong="H1818"\w* \w to|strong="H3427"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w them|strong="H3427"\w*. +\p +\v 18 “\w What|strong="H4100"\w* \w value|strong="H3276"\w* \w does|strong="H6213"\w* \w the|strong="H5921"\w* engraved \w image|strong="H6459"\w* \w have|strong="H3588"\w*, \w that|strong="H3588"\w* \w its|strong="H5921"\w* \w maker|strong="H6213"\w* \w has|strong="H4100"\w* engraved \w it|strong="H5921"\w*; \w the|strong="H5921"\w* \w molten|strong="H4541"\w* \w image|strong="H6459"\w*, \w even|strong="H3588"\w* \w the|strong="H5921"\w* \w teacher|strong="H3384"\w* \w of|strong="H5921"\w* \w lies|strong="H8267"\w*, \w that|strong="H3588"\w* \w he|strong="H3588"\w* \w who|strong="H3588"\w* \w fashions|strong="H3335"\w* \w its|strong="H5921"\w* \w form|strong="H3335"\w* trusts \w in|strong="H5921"\w* \w it|strong="H5921"\w*, \w to|strong="H5921"\w* \w make|strong="H6213"\w* mute \w idols|strong="H6459"\w*? +\v 19 \w Woe|strong="H1945"\w* \w to|strong="H7307"\w* \w him|strong="H1931"\w* \w who|strong="H3605"\w* \w says|strong="H1748"\w* \w to|strong="H7307"\w* \w the|strong="H3605"\w* \w wood|strong="H6086"\w*, ‘\w Awake|strong="H5782"\w*!’ \w or|strong="H3701"\w* \w to|strong="H7307"\w* \w the|strong="H3605"\w* \w mute|strong="H1748"\w* stone, ‘\w Arise|strong="H5782"\w*!’ \w Shall|strong="H1931"\w* \w this|strong="H1931"\w* \w teach|strong="H3384"\w*? \w Behold|strong="H2009"\w*, \w it|strong="H1931"\w* \w is|strong="H1931"\w* \w overlaid|strong="H8610"\w* \w with|strong="H3605"\w* \w gold|strong="H2091"\w* \w and|strong="H3701"\w* \w silver|strong="H3701"\w*, \w and|strong="H3701"\w* \w there|strong="H2009"\w* \w is|strong="H1931"\w* \w no|strong="H3605"\w* \w breath|strong="H7307"\w* \w at|strong="H7307"\w* \w all|strong="H3605"\w* \w within|strong="H7130"\w* \w it|strong="H1931"\w*. +\v 20 \w But|strong="H3605"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w in|strong="H3068"\w* \w his|strong="H3605"\w* \w holy|strong="H6944"\w* \w temple|strong="H1964"\w*. Let \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth \w be|strong="H3068"\w* \w silent|strong="H2013"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*!” +\c 3 +\p +\v 1 \w A|strong="H3068"\w* \w prayer|strong="H8605"\w* \w of|strong="H5921"\w* \w Habakkuk|strong="H2265"\w*, \w the|strong="H5921"\w* \w prophet|strong="H5030"\w*, set \w to|strong="H5921"\w* victorious music. +\q1 +\v 2 \w Yahweh|strong="H3068"\w*, \w I|strong="H3045"\w* \w have|strong="H7355"\w* \w heard|strong="H8085"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w fame|strong="H8088"\w*. +\q2 \w I|strong="H3045"\w* \w stand|strong="H3372"\w* \w in|strong="H8141"\w* \w awe|strong="H3372"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w deeds|strong="H6467"\w*, \w Yahweh|strong="H3068"\w*. +\q1 Renew \w your|strong="H3068"\w* \w work|strong="H6467"\w* \w in|strong="H8141"\w* \w the|strong="H8085"\w* \w middle|strong="H7130"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* \w years|strong="H8141"\w*. +\q2 \w In|strong="H8141"\w* \w the|strong="H8085"\w* \w middle|strong="H7130"\w* \w of|strong="H3068"\w* \w the|strong="H8085"\w* \w years|strong="H8141"\w* \w make|strong="H3045"\w* \w it|strong="H3045"\w* \w known|strong="H3045"\w*. +\q2 \w In|strong="H8141"\w* \w wrath|strong="H7267"\w*, \w you|strong="H3045"\w* \w remember|strong="H2142"\w* \w mercy|strong="H7355"\w*. +\q1 +\v 3 \w God|strong="H8064"\w* came \w from|strong="H8064"\w* \w Teman|strong="H8487"\w*, +\q2 \w the|strong="H3680"\w* \w Holy|strong="H6918"\w* \w One|strong="H6918"\w* \w from|strong="H8064"\w* \w Mount|strong="H2022"\w* \w Paran|strong="H6290"\w*. \qs \+w Selah|strong="H5542"\+w*.\qs* +\b +\q1 \w His|strong="H4390"\w* \w glory|strong="H1935"\w* \w covered|strong="H3680"\w* \w the|strong="H3680"\w* \w heavens|strong="H8064"\w*, +\q2 \w and|strong="H8064"\w* \w his|strong="H4390"\w* \w praise|strong="H8416"\w* \w filled|strong="H4390"\w* \w the|strong="H3680"\w* \w earth|strong="H8064"\w*. +\q1 +\v 4 \w His|strong="H3027"\w* splendor \w is|strong="H3027"\w* \w like|strong="H1961"\w* \w the|strong="H3027"\w* sunrise. +\q2 \w Rays|strong="H7161"\w* shine \w from|strong="H3027"\w* \w his|strong="H3027"\w* \w hand|strong="H3027"\w*, \w where|strong="H8033"\w* \w his|strong="H3027"\w* \w power|strong="H3027"\w* \w is|strong="H3027"\w* hidden. +\q1 +\v 5 \w Plague|strong="H1698"\w* \w went|strong="H3212"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, +\q2 \w and|strong="H3212"\w* \w pestilence|strong="H1698"\w* \w followed|strong="H3212"\w* \w his|strong="H6440"\w* \w feet|strong="H7272"\w*. +\q1 +\v 6 \w He|strong="H7200"\w* \w stood|strong="H5975"\w*, \w and|strong="H5769"\w* shook \w the|strong="H7200"\w* earth. +\q2 \w He|strong="H7200"\w* \w looked|strong="H7200"\w*, \w and|strong="H5769"\w* \w made|strong="H5975"\w* \w the|strong="H7200"\w* \w nations|strong="H1471"\w* tremble. +\q2 \w The|strong="H7200"\w* \w ancient|strong="H5769"\w* \w mountains|strong="H2042"\w* \w were|strong="H1471"\w* crumbled. +\q2 \w The|strong="H7200"\w* age-old \w hills|strong="H1389"\w* \w collapsed|strong="H7817"\w*. +\q2 \w His|strong="H7200"\w* \w ways|strong="H1979"\w* \w are|strong="H1471"\w* \w eternal|strong="H5769"\w*. +\q1 +\v 7 \w I|strong="H7200"\w* \w saw|strong="H7200"\w* \w the|strong="H7200"\w* tents \w of|strong="H8478"\w* \w Cushan|strong="H3572"\w* \w in|strong="H7200"\w* affliction. +\q2 \w The|strong="H7200"\w* dwellings \w of|strong="H8478"\w* \w the|strong="H7200"\w* land \w of|strong="H8478"\w* \w Midian|strong="H4080"\w* \w trembled|strong="H7264"\w*. +\q1 +\v 8 \w Was|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w displeased|strong="H2734"\w* \w with|strong="H3068"\w* \w the|strong="H5921"\w* \w rivers|strong="H5104"\w*? +\q2 \w Was|strong="H3068"\w* \w your|strong="H3068"\w* \w anger|strong="H5678"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w rivers|strong="H5104"\w*, +\q2 \w or|strong="H3068"\w* \w your|strong="H3068"\w* \w wrath|strong="H5678"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w*, +\q2 \w that|strong="H3588"\w* \w you|strong="H3588"\w* \w rode|strong="H7392"\w* \w on|strong="H5921"\w* \w your|strong="H3068"\w* \w horses|strong="H5483"\w*, +\q2 \w on|strong="H5921"\w* \w your|strong="H3068"\w* \w chariots|strong="H4818"\w* \w of|strong="H3068"\w* \w salvation|strong="H3444"\w*? +\q1 +\v 9 You uncovered \w your|strong="H5104"\w* \w bow|strong="H7198"\w*. +\q2 You called for \w your|strong="H5104"\w* \w sworn|strong="H7621"\w* \w arrows|strong="H7198"\w*. \qs \+w Selah|strong="H5542"\+w*.\qs* +\q1 You \w split|strong="H1234"\w* \w the|strong="H1234"\w* earth \w with|strong="H7198"\w* \w rivers|strong="H5104"\w*. +\q1 +\v 10 \w The|strong="H7200"\w* \w mountains|strong="H2022"\w* \w saw|strong="H7200"\w* \w you|strong="H5414"\w*, \w and|strong="H3027"\w* \w were|strong="H4325"\w* \w afraid|strong="H2342"\w*. +\q2 \w The|strong="H7200"\w* \w storm|strong="H2230"\w* \w of|strong="H3027"\w* \w waters|strong="H4325"\w* \w passed|strong="H5674"\w* \w by|strong="H3027"\w*. +\q2 \w The|strong="H7200"\w* \w deep|strong="H8415"\w* \w roared|strong="H5414"\w* \w and|strong="H3027"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w its|strong="H5414"\w* \w hands|strong="H3027"\w* \w on|strong="H5674"\w* \w high|strong="H5375"\w*. +\q1 +\v 11 \w The|strong="H5975"\w* \w sun|strong="H8121"\w* \w and|strong="H1980"\w* \w moon|strong="H3394"\w* \w stood|strong="H5975"\w* \w still|strong="H5975"\w* \w in|strong="H1980"\w* \w the|strong="H5975"\w* sky +\q2 \w at|strong="H5975"\w* \w the|strong="H5975"\w* \w light|strong="H5051"\w* \w of|strong="H2671"\w* your \w arrows|strong="H2671"\w* \w as|strong="H1980"\w* \w they|strong="H2671"\w* \w went|strong="H1980"\w*, +\q2 \w at|strong="H5975"\w* \w the|strong="H5975"\w* \w shining|strong="H5051"\w* \w of|strong="H2671"\w* your \w glittering|strong="H1300"\w* \w spear|strong="H2595"\w*. +\q1 +\v 12 \w You|strong="H1471"\w* \w marched|strong="H6805"\w* \w through|strong="H6805"\w* \w the|strong="H1471"\w* land \w in|strong="H1471"\w* \w wrath|strong="H2195"\w*. +\q2 \w You|strong="H1471"\w* \w threshed|strong="H1758"\w* \w the|strong="H1471"\w* \w nations|strong="H1471"\w* \w in|strong="H1471"\w* \w anger|strong="H2195"\w*. +\q1 +\v 13 \w You|strong="H5704"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w for|strong="H5704"\w* \w the|strong="H5704"\w* \w salvation|strong="H3468"\w* \w of|strong="H1004"\w* \w your|strong="H3318"\w* \w people|strong="H5971"\w*, +\q2 \w for|strong="H5704"\w* \w the|strong="H5704"\w* \w salvation|strong="H3468"\w* \w of|strong="H1004"\w* \w your|strong="H3318"\w* \w anointed|strong="H4899"\w*. +\q1 \w You|strong="H5704"\w* crushed \w the|strong="H5704"\w* \w head|strong="H7218"\w* \w of|strong="H1004"\w* \w the|strong="H5704"\w* land \w of|strong="H1004"\w* wickedness. +\q2 \w You|strong="H5704"\w* stripped \w them|strong="H3318"\w* \w head|strong="H7218"\w* \w to|strong="H5704"\w* foot. \qs \+w Selah|strong="H5542"\+w*.\qs* +\b +\q1 +\v 14 \w You|strong="H3644"\w* \w pierced|strong="H5344"\w* \w the|strong="H6327"\w* \w heads|strong="H7218"\w* \w of|strong="H4294"\w* \w his|strong="H5344"\w* warriors \w with|strong="H6041"\w* their own \w spears|strong="H4294"\w*. +\q2 \w They|strong="H6041"\w* came \w as|strong="H3644"\w* \w a|strong="H3068"\w* \w whirlwind|strong="H5590"\w* \w to|strong="H7218"\w* \w scatter|strong="H6327"\w* \w me|strong="H3644"\w*, +\q2 gloating \w as|strong="H3644"\w* \w if|strong="H3644"\w* \w to|strong="H7218"\w* devour \w the|strong="H6327"\w* \w wretched|strong="H6041"\w* \w in|strong="H7218"\w* \w secret|strong="H4565"\w*. +\q1 +\v 15 \w You|strong="H4325"\w* \w trampled|strong="H1869"\w* \w the|strong="H1869"\w* \w sea|strong="H3220"\w* \w with|strong="H4325"\w* your \w horses|strong="H5483"\w*, +\q2 churning \w mighty|strong="H7227"\w* \w waters|strong="H4325"\w*. +\q1 +\v 16 \w I|strong="H3117"\w* \w heard|strong="H8085"\w*, \w and|strong="H3117"\w* \w my|strong="H8085"\w* \w body|strong="H6106"\w* \w trembled|strong="H7264"\w*. +\q2 \w My|strong="H8085"\w* \w lips|strong="H8193"\w* \w quivered|strong="H6750"\w* \w at|strong="H3117"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w*. +\q1 \w Rottenness|strong="H7538"\w* enters \w into|strong="H5927"\w* \w my|strong="H8085"\w* \w bones|strong="H6106"\w*, \w and|strong="H3117"\w* \w I|strong="H3117"\w* \w tremble|strong="H7264"\w* \w in|strong="H8085"\w* \w my|strong="H8085"\w* \w place|strong="H8478"\w* +\q2 \w because|strong="H8478"\w* \w I|strong="H3117"\w* must \w wait|strong="H5117"\w* \w quietly|strong="H5117"\w* \w for|strong="H8478"\w* \w the|strong="H8085"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w trouble|strong="H6869"\w*, +\q2 \w for|strong="H8478"\w* \w the|strong="H8085"\w* \w coming|strong="H5927"\w* \w up|strong="H5927"\w* \w of|strong="H3117"\w* \w the|strong="H8085"\w* \w people|strong="H5971"\w* \w who|strong="H5971"\w* \w invade|strong="H1464"\w* \w us|strong="H3117"\w*. +\q1 +\v 17 \w For|strong="H3588"\w* \w even|strong="H3588"\w* \w though|strong="H3588"\w* \w the|strong="H3588"\w* \w fig|strong="H8384"\w* \w tree|strong="H8384"\w* doesn’t \w flourish|strong="H6524"\w*, +\q2 \w nor|strong="H3808"\w* \w fruit|strong="H2981"\w* \w be|strong="H3808"\w* \w in|strong="H6213"\w* \w the|strong="H3588"\w* \w vines|strong="H1612"\w*, +\q2 \w the|strong="H3588"\w* labor \w of|strong="H4639"\w* \w the|strong="H3588"\w* \w olive|strong="H2132"\w* fails, +\q2 \w the|strong="H3588"\w* \w fields|strong="H7709"\w* \w yield|strong="H6213"\w* \w no|strong="H3808"\w* food, +\q2 \w the|strong="H3588"\w* \w flocks|strong="H6629"\w* \w are|strong="H4639"\w* \w cut|strong="H1504"\w* \w off|strong="H1504"\w* \w from|strong="H6213"\w* \w the|strong="H3588"\w* \w fold|strong="H4356"\w*, +\q2 \w and|strong="H6629"\w* there \w is|strong="H4639"\w* \w no|strong="H3808"\w* \w herd|strong="H1241"\w* \w in|strong="H6213"\w* \w the|strong="H3588"\w* \w stalls|strong="H7517"\w*, +\q1 +\v 18 \w yet|strong="H3068"\w* \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w rejoice|strong="H1523"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w joyful|strong="H1523"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w my|strong="H3068"\w* \w salvation|strong="H3468"\w*! +\q1 +\v 19 \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w Lord|strong="H3069"\w*,\f + \fr 3:19 \ft The word translated “Lord” is “Adonai.”\f* is \w my|strong="H7760"\w* \w strength|strong="H2428"\w*. +\q2 \w He|strong="H5921"\w* \w makes|strong="H7760"\w* \w my|strong="H7760"\w* \w feet|strong="H7272"\w* \w like|strong="H7272"\w* deer’s \w feet|strong="H7272"\w*, +\q2 \w and|strong="H2428"\w* enables \w me|strong="H5921"\w* \w to|strong="H5921"\w* \w go|strong="H1869"\w* \w in|strong="H5921"\w* \w high|strong="H1116"\w* \w places|strong="H1116"\w*. +\p \w For|strong="H5921"\w* \w the|strong="H5921"\w* \w music|strong="H5058"\w* \w director|strong="H5329"\w*, \w on|strong="H5921"\w* \w my|strong="H7760"\w* \w stringed|strong="H5058"\w* \w instruments|strong="H5058"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/37-ZEPeng-web.usfm b/bibles/eng-web_usfm/37-ZEPeng-web.usfm new file mode 100644 index 0000000..94208c9 --- /dev/null +++ b/bibles/eng-web_usfm/37-ZEPeng-web.usfm @@ -0,0 +1,78 @@ +\id ZEP 36-ZEP-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Zephaniah +\toc1 The Book of Zephaniah +\toc2 Zephaniah +\toc3 Zep +\mt2 The Book of +\mt1 Zephaniah +\c 1 +\p +\v 1 \w Yahweh|strong="H3068"\w*’s\f + \fr 1:1 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w word|strong="H1697"\w* \w which|strong="H3068"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Zephaniah|strong="H6846"\w*, \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Cushi|strong="H3569"\w*, \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Gedaliah|strong="H1436"\w*, \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amariah, \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Hezekiah|strong="H2396"\w*, \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w days|strong="H3117"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w*, \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* Amon, \w king|strong="H4428"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*. +\p +\v 2 \w I|strong="H5921"\w* \w will|strong="H3068"\w* utterly sweep \w away|strong="H3605"\w* \w everything|strong="H3605"\w* \w from|strong="H6440"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* earth, \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 3 \w I|strong="H5921"\w* \w will|strong="H3068"\w* sweep away \w man|strong="H7563"\w* \w and|strong="H3068"\w* animal. \w I|strong="H5921"\w* \w will|strong="H3068"\w* sweep away \w the|strong="H6440"\w* \w birds|strong="H5775"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w sky|strong="H8064"\w*, \w the|strong="H6440"\w* \w fish|strong="H1709"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w sea|strong="H3220"\w*, \w and|strong="H3068"\w* \w the|strong="H6440"\w* heaps \w of|strong="H3068"\w* rubble \w with|strong="H3068"\w* \w the|strong="H6440"\w* \w wicked|strong="H7563"\w*. \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w man|strong="H7563"\w* \w from|strong="H6440"\w* \w the|strong="H6440"\w* \w surface|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w earth|strong="H8064"\w*, \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 4 \w I|strong="H5921"\w* \w will|strong="H3063"\w* \w stretch|strong="H5186"\w* \w out|strong="H5186"\w* \w my|strong="H3605"\w* \w hand|strong="H3027"\w* \w against|strong="H5921"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w against|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3027"\w* \w Jerusalem|strong="H3389"\w*. \w I|strong="H5921"\w* \w will|strong="H3063"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w the|strong="H3605"\w* \w remnant|strong="H7605"\w* \w of|strong="H3027"\w* \w Baal|strong="H1168"\w* \w from|strong="H4480"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w*—\w the|strong="H3605"\w* \w name|strong="H8034"\w* \w of|strong="H3027"\w* \w the|strong="H3605"\w* \w idolatrous|strong="H3649"\w* \w and|strong="H3063"\w* pagan \w priests|strong="H3548"\w*, +\v 5 \w those|strong="H5921"\w* \w who|strong="H3068"\w* \w worship|strong="H7812"\w* \w the|strong="H5921"\w* \w army|strong="H6635"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w sky|strong="H8064"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w housetops|strong="H1406"\w*, \w those|strong="H5921"\w* \w who|strong="H3068"\w* \w worship|strong="H7812"\w* \w and|strong="H3068"\w* \w swear|strong="H7650"\w* \w by|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w also|strong="H3068"\w* \w swear|strong="H7650"\w* \w by|strong="H5921"\w* \w Malcam|strong="H4445"\w*, +\v 6 those \w who|strong="H3068"\w* \w have|strong="H3068"\w* \w turned|strong="H5472"\w* \w back|strong="H5472"\w* \w from|strong="H3068"\w* following \w Yahweh|strong="H3068"\w*, \w and|strong="H3068"\w* those \w who|strong="H3068"\w* haven’t \w sought|strong="H1245"\w* \w Yahweh|strong="H3068"\w* \w nor|strong="H3808"\w* \w inquired|strong="H1875"\w* \w after|strong="H1875"\w* \w him|strong="H1245"\w*. +\p +\v 7 \w Be|strong="H3068"\w* \w silent|strong="H2013"\w* \w at|strong="H3068"\w* \w the|strong="H6440"\w* \w presence|strong="H6440"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w Lord|strong="H3068"\w*\f + \fr 1:7 \ft The word translated “Lord” is “Adonai.”\f* \w Yahweh|strong="H3068"\w*, \w for|strong="H3588"\w* \w the|strong="H6440"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w at|strong="H3068"\w* \w hand|strong="H7138"\w*. \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w prepared|strong="H3559"\w* \w a|strong="H3068"\w* \w sacrifice|strong="H2077"\w*. \w He|strong="H3588"\w* \w has|strong="H3068"\w* \w consecrated|strong="H6942"\w* \w his|strong="H3068"\w* \w guests|strong="H7121"\w*. +\v 8 \w It|strong="H5921"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w*’s \w sacrifice|strong="H2077"\w* \w that|strong="H3605"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w punish|strong="H6485"\w* \w the|strong="H3605"\w* \w princes|strong="H8269"\w*, \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w sons|strong="H1121"\w*, \w and|strong="H1121"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H3117"\w* \w clothed|strong="H3847"\w* \w with|strong="H3847"\w* \w foreign|strong="H5237"\w* \w clothing|strong="H3847"\w*. +\v 9 \w In|strong="H5921"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w*, \w I|strong="H3117"\w* \w will|strong="H1004"\w* \w punish|strong="H6485"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w leap|strong="H1801"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w threshold|strong="H4670"\w*, \w who|strong="H3605"\w* \w fill|strong="H4390"\w* \w their|strong="H3605"\w* master’s \w house|strong="H1004"\w* \w with|strong="H4390"\w* \w violence|strong="H2555"\w* \w and|strong="H3117"\w* \w deceit|strong="H4820"\w*. +\p +\v 10 \w In|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, \w there|strong="H1961"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w the|strong="H5002"\w* \w noise|strong="H6963"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w cry|strong="H6818"\w* \w from|strong="H4480"\w* \w the|strong="H5002"\w* \w fish|strong="H1709"\w* \w gate|strong="H8179"\w*, \w a|strong="H3068"\w* \w wailing|strong="H3215"\w* \w from|strong="H4480"\w* \w the|strong="H5002"\w* \w second|strong="H4932"\w* quarter, \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w crashing|strong="H7667"\w* \w from|strong="H4480"\w* \w the|strong="H5002"\w* \w hills|strong="H1389"\w*. +\v 11 \w Wail|strong="H3213"\w*, \w you|strong="H3588"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3427"\w* \w Maktesh|strong="H4389"\w*, \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H3427"\w* \w Canaan|strong="H3667"\w* \w are|strong="H5971"\w* \w undone|strong="H1820"\w*! \w All|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H5971"\w* loaded \w with|strong="H3427"\w* \w silver|strong="H3701"\w* \w are|strong="H5971"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*. +\v 12 \w It|strong="H1931"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w* \w at|strong="H5921"\w* \w that|strong="H1931"\w* \w time|strong="H6256"\w*, \w that|strong="H1931"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w search|strong="H2664"\w* \w Jerusalem|strong="H3389"\w* \w with|strong="H3068"\w* \w lamps|strong="H5216"\w*, \w and|strong="H3068"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w punish|strong="H6485"\w* \w the|strong="H5921"\w* \w men|strong="H6485"\w* \w who|strong="H1931"\w* \w are|strong="H3068"\w* \w settled|strong="H7087"\w* \w on|strong="H5921"\w* \w their|strong="H3068"\w* \w dregs|strong="H8105"\w*, \w who|strong="H1931"\w* say \w in|strong="H5921"\w* \w their|strong="H3068"\w* \w heart|strong="H3824"\w*, “\w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w do|strong="H3190"\w* \w good|strong="H3190"\w*, \w neither|strong="H3808"\w* \w will|strong="H3068"\w* \w he|strong="H1931"\w* \w do|strong="H3190"\w* \w evil|strong="H7489"\w*.” +\v 13 \w Their|strong="H1961"\w* \w wealth|strong="H2428"\w* \w will|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w plunder|strong="H4933"\w*, \w and|strong="H1004"\w* \w their|strong="H1961"\w* \w houses|strong="H1004"\w* \w a|strong="H3068"\w* \w desolation|strong="H8077"\w*. Yes, \w they|strong="H3808"\w* \w will|strong="H1961"\w* \w build|strong="H1129"\w* \w houses|strong="H1004"\w*, \w but|strong="H3808"\w* won’t \w inhabit|strong="H3427"\w* \w them|strong="H1961"\w*. \w They|strong="H3808"\w* \w will|strong="H1961"\w* \w plant|strong="H5193"\w* \w vineyards|strong="H3754"\w*, \w but|strong="H3808"\w* won’t \w drink|strong="H8354"\w* \w their|strong="H1961"\w* \w wine|strong="H3196"\w*. +\p +\v 14 \w The|strong="H3068"\w* \w great|strong="H1419"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w near|strong="H7138"\w*. \w It|strong="H8033"\w* \w is|strong="H3068"\w* \w near|strong="H7138"\w* \w and|strong="H3068"\w* hurries \w greatly|strong="H3966"\w*, \w the|strong="H3068"\w* \w voice|strong="H6963"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w The|strong="H3068"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w* \w cries|strong="H6963"\w* \w there|strong="H8033"\w* \w bitterly|strong="H4751"\w*. +\v 15 \w That|strong="H3117"\w* \w day|strong="H3117"\w* \w is|strong="H1931"\w* \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w wrath|strong="H5678"\w*, \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w distress|strong="H6869"\w* \w and|strong="H3117"\w* \w anguish|strong="H6869"\w*, \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w trouble|strong="H6869"\w* \w and|strong="H3117"\w* ruin, \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w darkness|strong="H2822"\w* \w and|strong="H3117"\w* \w gloom|strong="H6205"\w*, \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w clouds|strong="H6051"\w* \w and|strong="H3117"\w* blackness, +\v 16 \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w the|strong="H5921"\w* \w trumpet|strong="H7782"\w* \w and|strong="H3117"\w* \w alarm|strong="H8643"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w fortified|strong="H1219"\w* \w cities|strong="H5892"\w* \w and|strong="H3117"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w high|strong="H1364"\w* battlements. +\v 17 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w bring|strong="H1980"\w* such \w distress|strong="H6887"\w* \w on|strong="H1980"\w* \w men|strong="H1980"\w* \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w walk|strong="H1980"\w* \w like|strong="H8210"\w* \w blind|strong="H5787"\w* \w men|strong="H1980"\w* \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w have|strong="H3068"\w* \w sinned|strong="H2398"\w* \w against|strong="H2398"\w* \w Yahweh|strong="H3068"\w*. \w Their|strong="H3068"\w* \w blood|strong="H1818"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w poured|strong="H8210"\w* \w out|strong="H8210"\w* \w like|strong="H8210"\w* \w dust|strong="H6083"\w* \w and|strong="H1980"\w* \w their|strong="H3068"\w* \w flesh|strong="H3894"\w* \w like|strong="H8210"\w* \w dung|strong="H1561"\w*. +\v 18 \w Neither|strong="H3808"\w* \w their|strong="H3605"\w* \w silver|strong="H3701"\w* \w nor|strong="H3808"\w* \w their|strong="H3605"\w* \w gold|strong="H2091"\w* \w will|strong="H3068"\w* \w be|strong="H3808"\w* \w able|strong="H3201"\w* \w to|strong="H3201"\w* \w deliver|strong="H5337"\w* \w them|strong="H6213"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w wrath|strong="H5678"\w*, \w but|strong="H3588"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* land \w will|strong="H3068"\w* \w be|strong="H3808"\w* devoured \w by|strong="H3117"\w* \w the|strong="H3605"\w* fire \w of|strong="H3068"\w* \w his|strong="H3605"\w* \w jealousy|strong="H7068"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w make|strong="H6213"\w* \w an|strong="H6213"\w* \w end|strong="H3617"\w*, \w yes|strong="H3588"\w*, \w a|strong="H3068"\w* \w terrible|strong="H6213"\w* \w end|strong="H3617"\w*, \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3605"\w* land. +\c 2 +\p +\v 1 \w Gather|strong="H7197"\w* yourselves \w together|strong="H7197"\w*, yes, \w gather|strong="H7197"\w* \w together|strong="H7197"\w*, \w you|strong="H3808"\w* \w nation|strong="H1471"\w* \w that|strong="H1471"\w* \w has|strong="H1471"\w* \w no|strong="H3808"\w* \w shame|strong="H3700"\w*, +\v 2 \w before|strong="H2962"\w* \w the|strong="H5921"\w* \w appointed|strong="H2706"\w* \w time|strong="H3117"\w* \w when|strong="H3117"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w passes|strong="H5674"\w* \w as|strong="H3117"\w* \w the|strong="H5921"\w* \w chaff|strong="H4671"\w*, \w before|strong="H2962"\w* \w the|strong="H5921"\w* \w fierce|strong="H2740"\w* \w anger|strong="H2740"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w comes|strong="H5674"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*, \w before|strong="H2962"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w anger|strong="H2740"\w* \w comes|strong="H5674"\w* \w on|strong="H5921"\w* \w you|strong="H5921"\w*. +\v 3 \w Seek|strong="H1245"\w* \w Yahweh|strong="H3068"\w*, \w all|strong="H3605"\w* \w you|strong="H3605"\w* \w humble|strong="H6035"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* land, \w who|strong="H3605"\w* \w have|strong="H3068"\w* kept \w his|strong="H3605"\w* \w ordinances|strong="H4941"\w*. \w Seek|strong="H1245"\w* \w righteousness|strong="H6664"\w*. \w Seek|strong="H1245"\w* \w humility|strong="H6038"\w*. \w It|strong="H3117"\w* \w may|strong="H3068"\w* \w be|strong="H3068"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w hidden|strong="H5641"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s anger. +\v 4 \w For|strong="H3588"\w* \w Gaza|strong="H5804"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w forsaken|strong="H5800"\w*, \w and|strong="H1961"\w* Ashkelon \w a|strong="H3068"\w* \w desolation|strong="H8077"\w*. \w They|strong="H3588"\w* \w will|strong="H1961"\w* \w drive|strong="H1644"\w* \w out|strong="H1644"\w* Ashdod \w at|strong="H1961"\w* \w noonday|strong="H6672"\w*, \w and|strong="H1961"\w* \w Ekron|strong="H6138"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* rooted \w up|strong="H6131"\w*. +\v 5 \w Woe|strong="H1945"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w sea|strong="H3220"\w* \w coast|strong="H2256"\w*, \w the|strong="H5921"\w* \w nation|strong="H1471"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w Cherethites|strong="H3774"\w*! \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w is|strong="H3068"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w*, \w Canaan|strong="H3667"\w*, \w the|strong="H5921"\w* land \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w Philistines|strong="H6430"\w*. \w I|strong="H5921"\w* \w will|strong="H3068"\w* destroy \w you|strong="H5921"\w* \w until|strong="H3068"\w* \w there|strong="H3427"\w* \w is|strong="H3068"\w* no \w inhabitant|strong="H3427"\w*. +\v 6 \w The|strong="H1961"\w* \w sea|strong="H3220"\w* \w coast|strong="H2256"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w pastures|strong="H5116"\w*, \w with|strong="H3220"\w* \w cottages|strong="H3741"\w* \w for|strong="H1961"\w* \w shepherds|strong="H7462"\w* \w and|strong="H6629"\w* \w folds|strong="H1448"\w* \w for|strong="H1961"\w* \w flocks|strong="H6629"\w*. +\v 7 \w The|strong="H5921"\w* \w coast|strong="H2256"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w for|strong="H3588"\w* \w the|strong="H5921"\w* \w remnant|strong="H7611"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w*. \w They|strong="H3588"\w* \w will|strong="H3068"\w* find \w pasture|strong="H7462"\w*. \w In|strong="H5921"\w* \w the|strong="H5921"\w* \w houses|strong="H1004"\w* \w of|strong="H1004"\w* Ashkelon, \w they|strong="H3588"\w* \w will|strong="H3068"\w* \w lie|strong="H7257"\w* \w down|strong="H7257"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w evening|strong="H6153"\w*, \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w*, \w their|strong="H3068"\w* \w God|strong="H3068"\w*,\f + \fr 2:7 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w will|strong="H3068"\w* \w visit|strong="H6485"\w* \w them|strong="H5921"\w* \w and|strong="H3063"\w* \w restore|strong="H7725"\w* \w them|strong="H5921"\w*. +\v 8 \w I|strong="H5921"\w* \w have|strong="H5971"\w* \w heard|strong="H8085"\w* \w the|strong="H5921"\w* \w reproach|strong="H2781"\w* \w of|strong="H1121"\w* \w Moab|strong="H4124"\w* \w and|strong="H1121"\w* \w the|strong="H5921"\w* \w insults|strong="H2778"\w* \w of|strong="H1121"\w* \w the|strong="H5921"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w*, \w with|strong="H5921"\w* \w which|strong="H5971"\w* \w they|strong="H5921"\w* \w have|strong="H5971"\w* \w reproached|strong="H2778"\w* \w my|strong="H8085"\w* \w people|strong="H5971"\w* \w and|strong="H1121"\w* \w magnified|strong="H1431"\w* \w themselves|strong="H1431"\w* \w against|strong="H5921"\w* \w their|strong="H8085"\w* \w border|strong="H1366"\w*. +\v 9 \w Therefore|strong="H3651"\w*, \w as|strong="H5704"\w* \w I|strong="H3588"\w* \w live|strong="H2416"\w*, \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1121"\w* \w Armies|strong="H6635"\w*, \w the|strong="H5002"\w* \w God|strong="H3068"\w* \w of|strong="H1121"\w* \w Israel|strong="H3478"\w*, \w surely|strong="H3588"\w* \w Moab|strong="H4124"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w as|strong="H5704"\w* \w Sodom|strong="H5467"\w*, \w and|strong="H1121"\w* \w the|strong="H5002"\w* \w children|strong="H1121"\w* \w of|strong="H1121"\w* \w Ammon|strong="H5983"\w* \w as|strong="H5704"\w* \w Gomorrah|strong="H6017"\w*, \w a|strong="H3068"\w* \w possession|strong="H5157"\w* \w of|strong="H1121"\w* \w nettles|strong="H2738"\w* \w and|strong="H1121"\w* \w salt|strong="H4417"\w* \w pits|strong="H4379"\w*, \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w perpetual|strong="H5769"\w* \w desolation|strong="H8077"\w*. \w The|strong="H5002"\w* \w remnant|strong="H7611"\w* \w of|strong="H1121"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w will|strong="H3068"\w* plunder \w them|strong="H1961"\w*, \w and|strong="H1121"\w* \w the|strong="H5002"\w* \w survivors|strong="H7611"\w* \w of|strong="H1121"\w* \w my|strong="H3068"\w* \w nation|strong="H1471"\w* \w will|strong="H3068"\w* \w inherit|strong="H5157"\w* \w them|strong="H1961"\w*. +\v 10 \w This|strong="H2063"\w* \w they|strong="H1992"\w* \w will|strong="H3068"\w* \w have|strong="H3068"\w* \w for|strong="H3588"\w* \w their|strong="H3068"\w* \w pride|strong="H1347"\w*, \w because|strong="H3588"\w* \w they|strong="H1992"\w* \w have|strong="H3068"\w* \w reproached|strong="H2778"\w* \w and|strong="H3068"\w* \w magnified|strong="H1431"\w* \w themselves|strong="H1992"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w people|strong="H5971"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\v 11 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w awesome|strong="H3372"\w* \w to|strong="H3068"\w* \w them|strong="H5921"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H3068"\w* \w famish|strong="H7329"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* gods \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w land|strong="H4725"\w*. \w Men|strong="H3605"\w* \w will|strong="H3068"\w* \w worship|strong="H7812"\w* \w him|strong="H5921"\w*, \w everyone|strong="H3605"\w* \w from|strong="H5921"\w* \w his|strong="H3605"\w* \w place|strong="H4725"\w*, \w even|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* shores \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*. +\p +\v 12 \w You|strong="H1571"\w* Cushites \w also|strong="H1571"\w*, \w you|strong="H1571"\w* \w will|strong="H1571"\w* \w be|strong="H1571"\w* \w killed|strong="H2491"\w* \w by|strong="H1571"\w* \w my|strong="H1571"\w* \w sword|strong="H2719"\w*. +\p +\v 13 \w He|strong="H3027"\w* \w will|strong="H3027"\w* \w stretch|strong="H5186"\w* \w out|strong="H5186"\w* \w his|strong="H7760"\w* \w hand|strong="H3027"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w north|strong="H6828"\w*, destroy Assyria, \w and|strong="H3027"\w* \w will|strong="H3027"\w* \w make|strong="H7760"\w* \w Nineveh|strong="H5210"\w* \w a|strong="H3068"\w* \w desolation|strong="H8077"\w*, \w as|strong="H5921"\w* \w dry|strong="H6723"\w* \w as|strong="H5921"\w* \w the|strong="H5921"\w* \w wilderness|strong="H4057"\w*. +\v 14 \w Herds|strong="H5739"\w* \w will|strong="H1471"\w* \w lie|strong="H7257"\w* \w down|strong="H7257"\w* \w in|strong="H8432"\w* \w the|strong="H3605"\w* \w middle|strong="H8432"\w* \w of|strong="H6963"\w* \w her|strong="H3605"\w*, \w all|strong="H3605"\w* \w kinds|strong="H3605"\w* \w of|strong="H6963"\w* \w animals|strong="H2416"\w*. \w Both|strong="H1571"\w* \w the|strong="H3605"\w* \w pelican|strong="H6893"\w* \w and|strong="H6963"\w* \w the|strong="H3605"\w* porcupine \w will|strong="H1471"\w* \w lodge|strong="H3885"\w* \w in|strong="H8432"\w* \w its|strong="H3605"\w* \w capitals|strong="H3730"\w*. \w Their|strong="H3605"\w* \w calls|strong="H6963"\w* \w will|strong="H1471"\w* echo \w through|strong="H8432"\w* \w the|strong="H3605"\w* \w windows|strong="H2474"\w*. \w Desolation|strong="H2721"\w* \w will|strong="H1471"\w* \w be|strong="H1571"\w* \w in|strong="H8432"\w* \w the|strong="H3605"\w* \w thresholds|strong="H5592"\w*, \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3588"\w* \w laid|strong="H6168"\w* \w bare|strong="H6168"\w* \w the|strong="H3605"\w* cedar beams. +\v 15 \w This|strong="H2063"\w* \w is|strong="H3027"\w* \w the|strong="H3605"\w* \w joyous|strong="H5947"\w* \w city|strong="H5892"\w* \w that|strong="H3605"\w* \w lived|strong="H3427"\w* carelessly, \w that|strong="H3605"\w* said \w in|strong="H3427"\w* \w her|strong="H3605"\w* \w heart|strong="H3824"\w*, “\w I|strong="H5921"\w* \w am|strong="H1961"\w*, \w and|strong="H3027"\w* \w there|strong="H1961"\w* \w is|strong="H3027"\w* \w no|strong="H3605"\w* \w one|strong="H3605"\w* \w besides|strong="H5921"\w* \w me|strong="H5921"\w*.” How \w she|strong="H2063"\w* \w has|strong="H1961"\w* \w become|strong="H1961"\w* \w a|strong="H3068"\w* \w desolation|strong="H8047"\w*, \w a|strong="H3068"\w* \w place|strong="H3027"\w* \w for|strong="H5921"\w* \w animals|strong="H2416"\w* \w to|strong="H1961"\w* \w lie|strong="H1961"\w* \w down|strong="H3427"\w* \w in|strong="H3427"\w*! \w Everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w passes|strong="H5674"\w* \w by|strong="H3027"\w* \w her|strong="H3605"\w* \w will|strong="H1961"\w* \w hiss|strong="H8319"\w* \w and|strong="H3027"\w* \w shake|strong="H5128"\w* \w their|strong="H3605"\w* fists. +\c 3 +\p +\v 1 \w Woe|strong="H1945"\w* \w to|strong="H5892"\w* her \w who|strong="H1945"\w* \w is|strong="H5892"\w* rebellious \w and|strong="H5892"\w* \w polluted|strong="H1351"\w*, \w the|strong="H5892"\w* \w oppressing|strong="H3238"\w* \w city|strong="H5892"\w*! +\v 2 \w She|strong="H3808"\w* didn’t \w obey|strong="H8085"\w* \w the|strong="H8085"\w* \w voice|strong="H6963"\w*. \w She|strong="H3808"\w* didn’t \w receive|strong="H3947"\w* \w correction|strong="H4148"\w*. \w She|strong="H3808"\w* didn’t trust \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. \w She|strong="H3808"\w* didn’t \w draw|strong="H7126"\w* \w near|strong="H7126"\w* \w to|strong="H3068"\w* \w her|strong="H3947"\w* \w God|strong="H3068"\w*. +\p +\v 3 \w Her|strong="H7130"\w* \w princes|strong="H8269"\w* \w within|strong="H7130"\w* \w her|strong="H7130"\w* \w are|strong="H8199"\w* \w roaring|strong="H7580"\w* lions. \w Her|strong="H7130"\w* \w judges|strong="H8199"\w* \w are|strong="H8199"\w* \w evening|strong="H6153"\w* \w wolves|strong="H2061"\w*. \w They|strong="H3808"\w* \w leave|strong="H1633"\w* \w nothing|strong="H3808"\w* until \w the|strong="H8199"\w* next \w day|strong="H1242"\w*. +\v 4 \w Her|strong="H2490"\w* \w prophets|strong="H5030"\w* \w are|strong="H5030"\w* arrogant \w and|strong="H3548"\w* treacherous \w people|strong="H2490"\w*. \w Her|strong="H2490"\w* \w priests|strong="H3548"\w* \w have|strong="H5030"\w* \w profaned|strong="H2490"\w* \w the|strong="H3548"\w* \w sanctuary|strong="H6944"\w*. \w They|strong="H3548"\w* \w have|strong="H5030"\w* \w done|strong="H2554"\w* \w violence|strong="H2554"\w* \w to|strong="H2490"\w* \w the|strong="H3548"\w* \w law|strong="H8451"\w*. +\v 5 \w Yahweh|strong="H3068"\w*, \w within|strong="H7130"\w* \w her|strong="H5414"\w*, \w is|strong="H3068"\w* \w righteous|strong="H6662"\w*. \w He|strong="H6213"\w* \w will|strong="H3068"\w* \w do|strong="H6213"\w* \w no|strong="H3808"\w* \w wrong|strong="H5767"\w*. \w Every|strong="H1242"\w* \w morning|strong="H1242"\w* \w he|strong="H6213"\w* \w brings|strong="H5414"\w* \w his|strong="H5414"\w* \w justice|strong="H4941"\w* \w to|strong="H3068"\w* light. \w He|strong="H6213"\w* doesn’t \w fail|strong="H5737"\w*, \w but|strong="H3808"\w* \w the|strong="H5414"\w* \w unjust|strong="H5766"\w* \w know|strong="H3045"\w* \w no|strong="H3808"\w* \w shame|strong="H1322"\w*. +\p +\v 6 \w I|strong="H3772"\w* \w have|strong="H1471"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w nations|strong="H1471"\w*. \w Their|strong="H3772"\w* battlements \w are|strong="H1471"\w* \w desolate|strong="H8074"\w*. \w I|strong="H3772"\w* \w have|strong="H1471"\w* \w made|strong="H3772"\w* \w their|strong="H3772"\w* \w streets|strong="H2351"\w* \w waste|strong="H2717"\w*, \w so|strong="H5674"\w* \w that|strong="H1471"\w* \w no|strong="H1097"\w* \w one|strong="H1097"\w* \w passes|strong="H5674"\w* \w by|strong="H5674"\w*. \w Their|strong="H3772"\w* \w cities|strong="H5892"\w* \w are|strong="H1471"\w* \w destroyed|strong="H3772"\w*, \w so|strong="H5674"\w* \w that|strong="H1471"\w* \w there|strong="H3427"\w* \w is|strong="H5892"\w* \w no|strong="H1097"\w* \w man|strong="H5674"\w*, \w so|strong="H5674"\w* \w that|strong="H1471"\w* \w there|strong="H3427"\w* \w is|strong="H5892"\w* \w no|strong="H1097"\w* \w inhabitant|strong="H3427"\w*. +\v 7 \w I|strong="H5921"\w* said, “\w Just|strong="H3605"\w* \w fear|strong="H3372"\w* \w me|strong="H5921"\w*. \w Receive|strong="H3947"\w* \w correction|strong="H4148"\w*,” \w so|strong="H3947"\w* \w that|strong="H3605"\w* \w her|strong="H3605"\w* \w dwelling|strong="H4585"\w* won’t \w be|strong="H3808"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*, \w according|strong="H5921"\w* \w to|strong="H5921"\w* \w all|strong="H3605"\w* \w that|strong="H3605"\w* \w I|strong="H5921"\w* \w have|strong="H3605"\w* \w appointed|strong="H6485"\w* \w concerning|strong="H5921"\w* \w her|strong="H3605"\w*. \w But|strong="H3808"\w* \w they|strong="H3808"\w* \w rose|strong="H7925"\w* \w early|strong="H7925"\w* \w and|strong="H7925"\w* \w corrupted|strong="H7843"\w* \w all|strong="H3605"\w* \w their|strong="H3605"\w* \w doings|strong="H5949"\w*. +\p +\v 8 “\w Therefore|strong="H3651"\w* \w wait|strong="H2442"\w* \w for|strong="H3588"\w* \w me|strong="H5921"\w*”, \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w until|strong="H3588"\w* \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w rise|strong="H6965"\w* \w up|strong="H6965"\w* \w to|strong="H3068"\w* \w the|strong="H3605"\w* \w prey|strong="H5706"\w*, \w for|strong="H3588"\w* \w my|strong="H3605"\w* \w determination|strong="H4941"\w* \w is|strong="H3068"\w* \w to|strong="H3068"\w* \w gather|strong="H6908"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*, \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w may|strong="H3068"\w* \w assemble|strong="H6908"\w* \w the|strong="H3605"\w* \w kingdoms|strong="H4467"\w* \w to|strong="H3068"\w* \w pour|strong="H8210"\w* \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w my|strong="H3605"\w* \w indignation|strong="H2195"\w*, \w even|strong="H3588"\w* \w all|strong="H3605"\w* \w my|strong="H3605"\w* \w fierce|strong="H2740"\w* \w anger|strong="H2740"\w*, \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth \w will|strong="H3068"\w* \w be|strong="H3068"\w* devoured \w with|strong="H3068"\w* \w the|strong="H3605"\w* fire \w of|strong="H3068"\w* \w my|strong="H3605"\w* \w jealousy|strong="H7068"\w*. +\p +\v 9 \w For|strong="H3588"\w* \w then|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w purify|strong="H1305"\w* \w the|strong="H3605"\w* \w lips|strong="H8193"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w*, \w that|strong="H3588"\w* \w they|strong="H3588"\w* \w may|strong="H3068"\w* \w all|strong="H3605"\w* \w call|strong="H7121"\w* \w on|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*, \w to|strong="H3068"\w* \w serve|strong="H5647"\w* \w him|strong="H7121"\w* \w shoulder|strong="H7926"\w* \w to|strong="H3068"\w* \w shoulder|strong="H7926"\w*. +\v 10 \w From|strong="H5676"\w* \w beyond|strong="H5676"\w* \w the|strong="H5676"\w* \w rivers|strong="H5104"\w* \w of|strong="H1323"\w* \w Cush|strong="H3568"\w*, \w my|strong="H6327"\w* \w worshipers|strong="H6282"\w*, even \w the|strong="H5676"\w* \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w my|strong="H6327"\w* \w dispersed|strong="H6327"\w* people, \w will|strong="H1323"\w* \w bring|strong="H2986"\w* \w my|strong="H6327"\w* \w offering|strong="H4503"\w*. +\v 11 \w In|strong="H3117"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w* \w you|strong="H3588"\w* \w will|strong="H3808"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* disappointed \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w doings|strong="H5949"\w* \w in|strong="H3117"\w* \w which|strong="H1931"\w* \w you|strong="H3588"\w* \w have|strong="H3117"\w* \w transgressed|strong="H6586"\w* \w against|strong="H6586"\w* \w me|strong="H3254"\w*; \w for|strong="H3588"\w* \w then|strong="H3254"\w* \w I|strong="H3588"\w* \w will|strong="H3808"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w* \w out|strong="H3605"\w* \w from|strong="H5493"\w* \w among|strong="H7130"\w* \w you|strong="H3588"\w* \w your|strong="H3605"\w* \w proudly|strong="H1346"\w* \w exulting|strong="H5947"\w* \w ones|strong="H5947"\w*, \w and|strong="H3117"\w* \w you|strong="H3588"\w* \w will|strong="H3808"\w* \w no|strong="H3808"\w* \w more|strong="H3254"\w* \w be|strong="H3808"\w* \w arrogant|strong="H1346"\w* \w in|strong="H3117"\w* \w my|strong="H3605"\w* \w holy|strong="H6944"\w* \w mountain|strong="H2022"\w*. +\v 12 \w But|strong="H5971"\w* \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w leave|strong="H7604"\w* \w among|strong="H7130"\w* \w you|strong="H7130"\w* \w an|strong="H3068"\w* \w afflicted|strong="H6041"\w* \w and|strong="H3068"\w* \w poor|strong="H6041"\w* \w people|strong="H5971"\w*, \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* \w take|strong="H2620"\w* \w refuge|strong="H2620"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*. +\v 13 \w The|strong="H3588"\w* \w remnant|strong="H7611"\w* \w of|strong="H6310"\w* \w Israel|strong="H3478"\w* \w will|strong="H3478"\w* \w not|strong="H3808"\w* \w do|strong="H6213"\w* \w iniquity|strong="H5766"\w* \w nor|strong="H3808"\w* \w speak|strong="H1696"\w* \w lies|strong="H3577"\w*, \w neither|strong="H3808"\w* \w will|strong="H3478"\w* \w a|strong="H3068"\w* \w deceitful|strong="H8649"\w* \w tongue|strong="H3956"\w* \w be|strong="H3808"\w* \w found|strong="H4672"\w* \w in|strong="H3478"\w* \w their|strong="H1992"\w* \w mouth|strong="H6310"\w*, \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w will|strong="H3478"\w* \w feed|strong="H7462"\w* \w and|strong="H3478"\w* \w lie|strong="H7257"\w* \w down|strong="H7257"\w*, \w and|strong="H3478"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w will|strong="H3478"\w* \w make|strong="H6213"\w* \w them|strong="H1992"\w* \w afraid|strong="H2729"\w*.” +\p +\v 14 \w Sing|strong="H7442"\w*, \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Zion|strong="H6726"\w*! \w Shout|strong="H7321"\w*, \w Israel|strong="H3478"\w*! \w Be|strong="H3820"\w* \w glad|strong="H8055"\w* \w and|strong="H3478"\w* \w rejoice|strong="H8055"\w* \w with|strong="H3389"\w* \w all|strong="H3605"\w* \w your|strong="H3605"\w* \w heart|strong="H3820"\w*, \w daughter|strong="H1323"\w* \w of|strong="H1323"\w* \w Jerusalem|strong="H3389"\w*. +\v 15 \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w taken|strong="H5493"\w* \w away|strong="H5493"\w* \w your|strong="H3068"\w* \w judgments|strong="H4941"\w*. \w He|strong="H3068"\w* \w has|strong="H3068"\w* thrown \w out|strong="H6437"\w* \w your|strong="H3068"\w* enemy. \w The|strong="H3068"\w* \w King|strong="H4428"\w* \w of|strong="H4428"\w* \w Israel|strong="H3478"\w*, \w Yahweh|strong="H3068"\w*, \w is|strong="H3068"\w* \w among|strong="H7130"\w* \w you|strong="H3808"\w*. \w You|strong="H3808"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w afraid|strong="H3372"\w* \w of|strong="H4428"\w* \w evil|strong="H7451"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*. +\v 16 \w In|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w it|strong="H1931"\w* \w will|strong="H3389"\w* \w be|strong="H3027"\w* said \w to|strong="H3027"\w* \w Jerusalem|strong="H3389"\w*, “Don’t \w be|strong="H3027"\w* \w afraid|strong="H3372"\w*, \w Zion|strong="H6726"\w*. Don’t \w let|strong="H7503"\w* \w your|strong="H3372"\w* \w hands|strong="H3027"\w* \w be|strong="H3027"\w* \w weak|strong="H7503"\w*.” +\v 17 \w Yahweh|strong="H3068"\w*, \w your|strong="H3068"\w* \w God|strong="H3068"\w*, \w is|strong="H3068"\w* \w among|strong="H7130"\w* \w you|strong="H5921"\w*, \w a|strong="H3068"\w* \w mighty|strong="H1368"\w* \w one|strong="H1368"\w* \w who|strong="H3068"\w* \w will|strong="H3068"\w* \w save|strong="H3467"\w*. \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w rejoice|strong="H1523"\w* \w over|strong="H5921"\w* \w you|strong="H5921"\w* \w with|strong="H3068"\w* \w joy|strong="H8057"\w*. \w He|strong="H3068"\w* \w will|strong="H3068"\w* calm \w you|strong="H5921"\w* \w in|strong="H5921"\w* \w his|strong="H3068"\w* love. \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w rejoice|strong="H1523"\w* \w over|strong="H5921"\w* \w you|strong="H5921"\w* \w with|strong="H3068"\w* \w singing|strong="H7440"\w*. +\v 18 \w I|strong="H5921"\w* \w will|strong="H1961"\w* remove \w those|strong="H4480"\w* who \w grieve|strong="H3013"\w* \w about|strong="H1961"\w* \w the|strong="H5921"\w* \w appointed|strong="H4150"\w* \w feasts|strong="H4150"\w* \w from|strong="H4480"\w* \w you|strong="H5921"\w*. \w They|strong="H5921"\w* \w are|strong="H1961"\w* \w a|strong="H3068"\w* \w burden|strong="H4864"\w* \w and|strong="H4150"\w* \w a|strong="H3068"\w* \w reproach|strong="H2781"\w* \w to|strong="H1961"\w* \w you|strong="H5921"\w*. +\v 19 \w Behold|strong="H2005"\w*,\f + \fr 3:19 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w at|strong="H6213"\w* \w that|strong="H3605"\w* \w time|strong="H6256"\w* \w I|strong="H2005"\w* \w will|strong="H1931"\w* \w deal|strong="H6213"\w* \w with|strong="H6213"\w* \w all|strong="H3605"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w afflict|strong="H6031"\w* \w you|strong="H3605"\w*; \w and|strong="H6213"\w* \w I|strong="H2005"\w* \w will|strong="H1931"\w* \w save|strong="H3467"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w are|strong="H6213"\w* \w lame|strong="H6760"\w* \w and|strong="H6213"\w* \w gather|strong="H6908"\w* \w those|strong="H3605"\w* \w who|strong="H3605"\w* \w were|strong="H3605"\w* \w driven|strong="H5080"\w* \w away|strong="H5080"\w*. \w I|strong="H2005"\w* \w will|strong="H1931"\w* \w give|strong="H7760"\w* \w them|strong="H6213"\w* \w praise|strong="H8416"\w* \w and|strong="H6213"\w* \w honor|strong="H8034"\w*, \w whose|strong="H8034"\w* \w shame|strong="H1322"\w* \w has|strong="H6256"\w* \w been|strong="H3605"\w* \w in|strong="H6213"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth. +\v 20 \w At|strong="H3068"\w* \w that|strong="H3588"\w* \w time|strong="H6256"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w bring|strong="H7725"\w* \w you|strong="H3588"\w* \w in|strong="H3068"\w*, \w and|strong="H3068"\w* \w at|strong="H3068"\w* \w that|strong="H3588"\w* \w time|strong="H6256"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w gather|strong="H6908"\w* \w you|strong="H3588"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w you|strong="H3588"\w* \w honor|strong="H8034"\w* \w and|strong="H3068"\w* \w praise|strong="H8416"\w* \w among|strong="H8034"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* earth \w when|strong="H3588"\w* \w I|strong="H3588"\w* \w restore|strong="H7725"\w* \w your|strong="H3068"\w* \w fortunes|strong="H7622"\w* \w before|strong="H5869"\w* \w your|strong="H3068"\w* \w eyes|strong="H5869"\w*, says \w Yahweh|strong="H3068"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/38-HAGeng-web.usfm b/bibles/eng-web_usfm/38-HAGeng-web.usfm new file mode 100644 index 0000000..a9333bb --- /dev/null +++ b/bibles/eng-web_usfm/38-HAGeng-web.usfm @@ -0,0 +1,61 @@ +\id HAG 7-HAG-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Haggai +\toc1 The Book of Haggai +\toc2 Haggai +\toc3 Hag +\mt2 The Book of +\mt1 Haggai +\c 1 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H3068"\w* \w second|strong="H8147"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Darius|strong="H1867"\w* \w the|strong="H3068"\w* \w king|strong="H4428"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w sixth|strong="H8345"\w* \w month|strong="H2320"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w first|strong="H1121"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w month|strong="H2320"\w*, \w Yahweh|strong="H3068"\w*’s\f + \fr 1:1 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w by|strong="H3027"\w* \w Haggai|strong="H2292"\w* \w the|strong="H3068"\w* \w prophet|strong="H5030"\w*, \w to|strong="H3068"\w* \w Zerubbabel|strong="H2216"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shealtiel|strong="H7597"\w*, \w governor|strong="H6346"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w and|strong="H1121"\w* \w to|strong="H3068"\w* \w Joshua|strong="H3091"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehozadak|strong="H3087"\w*, \w the|strong="H3068"\w* \w high|strong="H1419"\w* \w priest|strong="H3548"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w This|strong="H2088"\w* \w is|strong="H3068"\w* \w what|strong="H2088"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: \w These|strong="H2088"\w* \w people|strong="H5971"\w* say, ‘\w The|strong="H3541"\w* \w time|strong="H6256"\w* hasn’t \w yet|strong="H3068"\w* \w come|strong="H5971"\w*, \w the|strong="H3541"\w* \w time|strong="H6256"\w* \w for|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w to|strong="H3068"\w* \w be|strong="H3808"\w* \w built|strong="H1129"\w*.’” +\p +\v 3 \w Then|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w by|strong="H3027"\w* \w Haggai|strong="H2292"\w* \w the|strong="H3068"\w* \w prophet|strong="H5030"\w*, \w saying|strong="H1697"\w*, +\v 4 “\w Is|strong="H2088"\w* \w it|strong="H2088"\w* \w a|strong="H3068"\w* \w time|strong="H6256"\w* \w for|strong="H3427"\w* \w you|strong="H3427"\w* yourselves \w to|strong="H6256"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w your|strong="H2088"\w* \w paneled|strong="H5603"\w* \w houses|strong="H1004"\w*, \w while|strong="H2088"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w* lies \w waste|strong="H2720"\w*? +\v 5 \w Now|strong="H6258"\w* \w therefore|strong="H5921"\w* \w this|strong="H3541"\w* \w is|strong="H3068"\w* \w what|strong="H3541"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: ‘\w Consider|strong="H7760"\w* \w your|strong="H3068"\w* \w ways|strong="H1870"\w*. +\v 6 \w You|strong="H3847"\w* \w have|strong="H4592"\w* \w sown|strong="H2232"\w* \w much|strong="H7235"\w*, \w and|strong="H8354"\w* bring \w in|strong="H3847"\w* \w little|strong="H4592"\w*. \w You|strong="H3847"\w* eat, but \w you|strong="H3847"\w* don’t \w have|strong="H4592"\w* \w enough|strong="H4592"\w*. \w You|strong="H3847"\w* \w drink|strong="H8354"\w*, but \w you|strong="H3847"\w* aren’t \w filled|strong="H7654"\w* \w with|strong="H3847"\w* \w drink|strong="H8354"\w*. \w You|strong="H3847"\w* \w clothe|strong="H3847"\w* \w yourselves|strong="H3847"\w*, but \w no|strong="H8354"\w* one \w is|strong="H6872"\w* \w warm|strong="H2527"\w*; \w and|strong="H8354"\w* \w he|strong="H7235"\w* \w who|strong="H8354"\w* \w earns|strong="H7936"\w* \w wages|strong="H7936"\w* \w earns|strong="H7936"\w* \w wages|strong="H7936"\w* \w to|strong="H7235"\w* \w put|strong="H3847"\w* \w them|strong="H3847"\w* into \w a|strong="H3068"\w* \w bag|strong="H6872"\w* \w with|strong="H3847"\w* \w holes|strong="H5344"\w* \w in|strong="H3847"\w* \w it|strong="H8354"\w*.’ +\p +\v 7 “\w This|strong="H3541"\w* \w is|strong="H3068"\w* \w what|strong="H3541"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: ‘\w Consider|strong="H7760"\w* \w your|strong="H3068"\w* \w ways|strong="H1870"\w*. +\v 8 \w Go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w mountain|strong="H2022"\w*, \w bring|strong="H5927"\w* \w wood|strong="H6086"\w*, \w and|strong="H3068"\w* \w build|strong="H1129"\w* \w the|strong="H3068"\w* \w house|strong="H1004"\w*. \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w take|strong="H5927"\w* \w pleasure|strong="H7521"\w* \w in|strong="H3068"\w* \w it|strong="H5927"\w*, \w and|strong="H3068"\w* \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w glorified|strong="H3513"\w*,” says \w Yahweh|strong="H3068"\w*. +\v 9 “\w You|strong="H4100"\w* \w looked|strong="H6437"\w* \w for|strong="H3068"\w* \w much|strong="H7235"\w*, \w and|strong="H3068"\w*, \w behold|strong="H2009"\w*,\f + \fr 1:9 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w it|strong="H1931"\w* \w came|strong="H3068"\w* \w to|strong="H3068"\w* \w little|strong="H4592"\w*; \w and|strong="H3068"\w* \w when|strong="H3068"\w* \w you|strong="H4100"\w* \w brought|strong="H7323"\w* \w it|strong="H1931"\w* \w home|strong="H1004"\w*, \w I|strong="H2009"\w* blew \w it|strong="H1931"\w* \w away|strong="H6437"\w*. \w Why|strong="H4100"\w*?” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w*, “\w Because|strong="H3282"\w* \w of|strong="H1004"\w* \w my|strong="H3068"\w* \w house|strong="H1004"\w* \w that|strong="H1931"\w* lies \w waste|strong="H2720"\w*, \w while|strong="H4592"\w* each \w of|strong="H1004"\w* \w you|strong="H4100"\w* \w is|strong="H3068"\w* busy \w with|strong="H1004"\w* \w his|strong="H3068"\w* own \w house|strong="H1004"\w*. +\v 10 \w Therefore|strong="H3651"\w* \w for|strong="H5921"\w* \w your|strong="H5921"\w* \w sake|strong="H5921"\w* \w the|strong="H5921"\w* \w heavens|strong="H8064"\w* \w withhold|strong="H3607"\w* \w the|strong="H5921"\w* \w dew|strong="H2919"\w*, \w and|strong="H8064"\w* \w the|strong="H5921"\w* \w earth|strong="H8064"\w* withholds \w its|strong="H5921"\w* \w fruit|strong="H2981"\w*. +\v 11 \w I|strong="H5921"\w* \w called|strong="H7121"\w* \w for|strong="H5921"\w* \w a|strong="H3068"\w* \w drought|strong="H2721"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* land, \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w*, \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w grain|strong="H1715"\w*, \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w*, \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w oil|strong="H3323"\w*, \w on|strong="H5921"\w* \w that|strong="H3605"\w* \w which|strong="H2022"\w* \w the|strong="H3605"\w* ground \w produces|strong="H3318"\w*, \w on|strong="H5921"\w* \w men|strong="H3605"\w*, \w on|strong="H5921"\w* livestock, \w and|strong="H2022"\w* \w on|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w labor|strong="H3018"\w* \w of|strong="H2022"\w* \w the|strong="H3605"\w* \w hands|strong="H3709"\w*.” +\p +\v 12 \w Then|strong="H7971"\w* \w Zerubbabel|strong="H2216"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shealtiel|strong="H7597"\w* \w and|strong="H1121"\w* \w Joshua|strong="H3091"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehozadak|strong="H3087"\w*, \w the|strong="H3605"\w* \w high|strong="H1419"\w* \w priest|strong="H3548"\w*, \w with|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w remnant|strong="H7611"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w obeyed|strong="H8085"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3605"\w* \w God|strong="H3068"\w*’s\f + \fr 1:12 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w voice|strong="H6963"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w words|strong="H1697"\w* \w of|strong="H1121"\w* \w Haggai|strong="H2292"\w* \w the|strong="H3605"\w* \w prophet|strong="H5030"\w*, \w as|strong="H1697"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3605"\w* \w God|strong="H3068"\w* \w had|strong="H3068"\w* \w sent|strong="H7971"\w* \w him|strong="H6440"\w*; \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w feared|strong="H3372"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 13 \w Then|strong="H3068"\w* \w Haggai|strong="H2292"\w*, \w Yahweh|strong="H3068"\w*’s \w messenger|strong="H4397"\w*, spoke \w Yahweh|strong="H3068"\w*’s \w message|strong="H3068"\w* \w to|strong="H3068"\w* \w the|strong="H5002"\w* \w people|strong="H5971"\w*, saying, “\w I|strong="H3068"\w* \w am|strong="H3068"\w* \w with|strong="H3068"\w* \w you|strong="H5971"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 14 \w Yahweh|strong="H3068"\w* \w stirred|strong="H5782"\w* \w up|strong="H5782"\w* \w the|strong="H3605"\w* \w spirit|strong="H7307"\w* \w of|strong="H1121"\w* \w Zerubbabel|strong="H2216"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shealtiel|strong="H7597"\w*, \w governor|strong="H6346"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w spirit|strong="H7307"\w* \w of|strong="H1121"\w* \w Joshua|strong="H3091"\w* \w the|strong="H3605"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehozadak|strong="H3087"\w*, \w the|strong="H3605"\w* \w high|strong="H1419"\w* \w priest|strong="H3548"\w*, \w and|strong="H1121"\w* \w the|strong="H3605"\w* \w spirit|strong="H7307"\w* \w of|strong="H1121"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w remnant|strong="H7611"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*; \w and|strong="H1121"\w* \w they|strong="H3068"\w* \w came|strong="H3068"\w* \w and|strong="H1121"\w* \w worked|strong="H6213"\w* \w on|strong="H3068"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1121"\w* \w Armies|strong="H6635"\w*, \w their|strong="H3605"\w* \w God|strong="H3068"\w*, +\v 15 \w in|strong="H8141"\w* \w the|strong="H3117"\w* \w twenty-fourth|strong="H6242"\w* \w day|strong="H3117"\w* \w of|strong="H4428"\w* \w the|strong="H3117"\w* \w month|strong="H2320"\w*, \w in|strong="H8141"\w* \w the|strong="H3117"\w* \w sixth|strong="H8345"\w* \w month|strong="H2320"\w*, \w in|strong="H8141"\w* \w the|strong="H3117"\w* \w second|strong="H8147"\w* \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w Darius|strong="H1867"\w* \w the|strong="H3117"\w* \w king|strong="H4428"\w*. +\c 2 +\p +\v 1 \w In|strong="H3068"\w* \w the|strong="H3068"\w* \w seventh|strong="H7637"\w* \w month|strong="H2320"\w*, \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w twenty-first|strong="H6242"\w* \w day|strong="H2320"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w month|strong="H2320"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w by|strong="H3027"\w* \w Haggai|strong="H2292"\w* \w the|strong="H3068"\w* \w prophet|strong="H5030"\w*, \w saying|strong="H1697"\w*, +\v 2 “Speak \w now|strong="H4994"\w* \w to|strong="H1121"\w* \w Zerubbabel|strong="H2216"\w* \w the|strong="H3091"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shealtiel|strong="H7597"\w*, \w governor|strong="H6346"\w* \w of|strong="H1121"\w* \w Judah|strong="H3063"\w*, \w and|strong="H1121"\w* \w to|strong="H1121"\w* \w Joshua|strong="H3091"\w* \w the|strong="H3091"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehozadak|strong="H3087"\w*, \w the|strong="H3091"\w* \w high|strong="H1419"\w* \w priest|strong="H3548"\w*, \w and|strong="H1121"\w* \w to|strong="H1121"\w* \w the|strong="H3091"\w* \w remnant|strong="H7611"\w* \w of|strong="H1121"\w* \w the|strong="H3091"\w* \w people|strong="H5971"\w*, saying, +\v 3 ‘\w Who|strong="H4310"\w* \w is|strong="H2088"\w* \w left|strong="H7604"\w* \w among|strong="H4310"\w* \w you|strong="H3808"\w* \w who|strong="H4310"\w* \w saw|strong="H7200"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w* \w in|strong="H1004"\w* \w its|strong="H7604"\w* \w former|strong="H7223"\w* \w glory|strong="H3519"\w*? \w How|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H3808"\w* \w see|strong="H7200"\w* \w it|strong="H7200"\w* \w now|strong="H6258"\w*? Isn’t \w it|strong="H7200"\w* \w in|strong="H1004"\w* \w your|strong="H7200"\w* \w eyes|strong="H5869"\w* \w as|strong="H3644"\w* \w nothing|strong="H3808"\w*? +\v 4 \w Yet|strong="H3588"\w* \w now|strong="H6258"\w* \w be|strong="H3068"\w* \w strong|strong="H2388"\w*, \w Zerubbabel|strong="H2216"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. ‘\w Be|strong="H3068"\w* \w strong|strong="H2388"\w*, \w Joshua|strong="H3091"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehozadak|strong="H3087"\w*, \w the|strong="H3605"\w* \w high|strong="H1419"\w* \w priest|strong="H3548"\w*. \w Be|strong="H3068"\w* \w strong|strong="H2388"\w*, \w all|strong="H3605"\w* \w you|strong="H3588"\w* \w people|strong="H5971"\w* \w of|strong="H1121"\w* \w the|strong="H3605"\w* land,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, ‘\w and|strong="H1121"\w* \w work|strong="H6213"\w*, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1121"\w* \w Armies|strong="H6635"\w*. +\v 5 \w This|strong="H1697"\w* \w is|strong="H1697"\w* \w the|strong="H8432"\w* \w word|strong="H1697"\w* \w that|strong="H1697"\w* \w I|strong="H1697"\w* \w covenanted|strong="H3772"\w* \w with|strong="H1697"\w* \w you|strong="H8432"\w* \w when|strong="H3318"\w* \w you|strong="H8432"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w of|strong="H1697"\w* \w Egypt|strong="H4714"\w*, \w and|strong="H4714"\w* \w my|strong="H3318"\w* \w Spirit|strong="H7307"\w* \w lived|strong="H8432"\w* \w among|strong="H8432"\w* \w you|strong="H8432"\w*. ‘Don’t \w be|strong="H1697"\w* \w afraid|strong="H3372"\w*.’ +\v 6 \w For|strong="H3588"\w* \w this|strong="H1931"\w* \w is|strong="H3068"\w* \w what|strong="H3541"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: ‘\w Yet|strong="H5750"\w* \w once|strong="H5750"\w* \w more|strong="H5750"\w*, \w it|strong="H1931"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w while|strong="H5750"\w*, \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w shake|strong="H7493"\w* \w the|strong="H3588"\w* \w heavens|strong="H8064"\w*, \w the|strong="H3588"\w* \w earth|strong="H8064"\w*, \w the|strong="H3588"\w* \w sea|strong="H3220"\w*, \w and|strong="H3068"\w* \w the|strong="H3588"\w* \w dry|strong="H2724"\w* \w land|strong="H2724"\w*; +\v 7 \w and|strong="H3068"\w* \w I|strong="H2088"\w* \w will|strong="H3068"\w* \w shake|strong="H7493"\w* \w all|strong="H3605"\w* \w nations|strong="H1471"\w*. \w The|strong="H3605"\w* treasure \w of|strong="H1004"\w* \w all|strong="H3605"\w* \w nations|strong="H1471"\w* \w will|strong="H3068"\w* \w come|strong="H6635"\w*, \w and|strong="H3068"\w* \w I|strong="H2088"\w* \w will|strong="H3068"\w* \w fill|strong="H4390"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w* \w with|strong="H4390"\w* \w glory|strong="H3519"\w*, says \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w*. +\v 8 \w The|strong="H5002"\w* \w silver|strong="H3701"\w* \w is|strong="H3068"\w* mine, \w and|strong="H3068"\w* \w the|strong="H5002"\w* \w gold|strong="H2091"\w* \w is|strong="H3068"\w* mine,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\v 9 ‘\w The|strong="H5002"\w* latter \w glory|strong="H3519"\w* \w of|strong="H1004"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w greater|strong="H1419"\w* \w than|strong="H4480"\w* \w the|strong="H5002"\w* \w former|strong="H7223"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w*; ‘\w and|strong="H3068"\w* \w in|strong="H3068"\w* \w this|strong="H2088"\w* \w place|strong="H4725"\w* \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w peace|strong="H7965"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w*.” +\p +\v 10 \w In|strong="H8141"\w* \w the|strong="H3068"\w* \w twenty-fourth|strong="H6242"\w* day \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w ninth|strong="H8671"\w* month, \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w second|strong="H8147"\w* \w year|strong="H8141"\w* \w of|strong="H3068"\w* \w Darius|strong="H1867"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w by|strong="H8141"\w* \w Haggai|strong="H2292"\w* \w the|strong="H3068"\w* \w prophet|strong="H5030"\w*, \w saying|strong="H1697"\w*, +\v 11 “\w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: \w Ask|strong="H7592"\w* \w now|strong="H4994"\w* \w the|strong="H3541"\w* \w priests|strong="H3548"\w* \w concerning|strong="H3068"\w* \w the|strong="H3541"\w* \w law|strong="H8451"\w*, saying, +\v 12 ‘\w If|strong="H2005"\w* someone \w carries|strong="H5375"\w* \w holy|strong="H6944"\w* \w meat|strong="H1320"\w* \w in|strong="H1320"\w* \w the|strong="H3605"\w* \w fold|strong="H3671"\w* \w of|strong="H3605"\w* \w his|strong="H3605"\w* \w garment|strong="H3671"\w*, \w and|strong="H6030"\w* \w with|strong="H3899"\w* \w his|strong="H3605"\w* \w fold|strong="H3671"\w* \w touches|strong="H5060"\w* \w bread|strong="H3899"\w*, \w stew|strong="H5138"\w*, \w wine|strong="H3196"\w*, \w oil|strong="H8081"\w*, \w or|strong="H3808"\w* \w any|strong="H3605"\w* \w food|strong="H3899"\w*, \w will|strong="H1320"\w* \w it|strong="H5375"\w* \w become|strong="H6942"\w* \w holy|strong="H6944"\w*?’” +\p \w The|strong="H3605"\w* \w priests|strong="H3548"\w* \w answered|strong="H6030"\w*, “\w No|strong="H3808"\w*.” +\p +\v 13 \w Then|strong="H6030"\w* \w Haggai|strong="H2292"\w* \w said|strong="H6030"\w*, “If \w one|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H5315"\w* \w unclean|strong="H2931"\w* \w by|strong="H3605"\w* reason \w of|strong="H3605"\w* \w a|strong="H3068"\w* \w dead|strong="H5315"\w* \w body|strong="H5315"\w* \w touches|strong="H5060"\w* \w any|strong="H3605"\w* \w of|strong="H3605"\w* \w these|strong="H3605"\w*, \w will|strong="H5315"\w* \w it|strong="H2930"\w* \w be|strong="H5315"\w* \w unclean|strong="H2931"\w*?” +\p \w The|strong="H3605"\w* \w priests|strong="H3548"\w* \w answered|strong="H6030"\w*, “\w It|strong="H2930"\w* \w will|strong="H5315"\w* \w be|strong="H5315"\w* \w unclean|strong="H2931"\w*.” +\p +\v 14 \w Then|strong="H6030"\w* \w Haggai|strong="H2292"\w* \w answered|strong="H6030"\w*, “‘\w So|strong="H3651"\w* \w is|strong="H3068"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w*, \w and|strong="H3068"\w* \w so|strong="H3651"\w* \w is|strong="H3068"\w* \w this|strong="H2088"\w* \w nation|strong="H1471"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*; ‘\w and|strong="H3068"\w* \w so|strong="H3651"\w* \w is|strong="H3068"\w* \w every|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H3068"\w* \w their|strong="H3605"\w* \w hands|strong="H3027"\w*. \w That|strong="H5971"\w* \w which|strong="H1931"\w* \w they|strong="H3651"\w* \w offer|strong="H7126"\w* \w there|strong="H8033"\w* \w is|strong="H3068"\w* \w unclean|strong="H2931"\w*. +\v 15 \w Now|strong="H6258"\w*, \w please|strong="H4994"\w* \w consider|strong="H7760"\w* \w from|strong="H4480"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w* \w and|strong="H3068"\w* backward, \w before|strong="H4480"\w* \w a|strong="H3068"\w* stone \w was|strong="H3068"\w* \w laid|strong="H7760"\w* \w on|strong="H3117"\w* \w a|strong="H3068"\w* stone \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1964"\w*. +\v 16 Through all \w that|strong="H1961"\w* \w time|strong="H1961"\w*, \w when|strong="H1961"\w* \w one|strong="H1961"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w a|strong="H3068"\w* \w heap|strong="H6194"\w* \w of|strong="H6194"\w* \w twenty|strong="H6242"\w* \w measures|strong="H6333"\w*, \w there|strong="H1961"\w* \w were|strong="H1961"\w* only \w ten|strong="H6235"\w*. \w When|strong="H1961"\w* \w one|strong="H1961"\w* \w came|strong="H1961"\w* \w to|strong="H1961"\w* \w the|strong="H1961"\w* \w wine|strong="H3342"\w* \w vat|strong="H3342"\w* \w to|strong="H1961"\w* \w draw|strong="H2834"\w* \w out|strong="H2834"\w* \w fifty|strong="H2572"\w*, \w there|strong="H1961"\w* \w were|strong="H1961"\w* only \w twenty|strong="H6242"\w*. +\v 17 \w I|strong="H3027"\w* \w struck|strong="H5221"\w* \w you|strong="H3605"\w* \w with|strong="H3068"\w* \w blight|strong="H7711"\w*, \w mildew|strong="H3420"\w*, \w and|strong="H3068"\w* \w hail|strong="H1259"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w work|strong="H4639"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w hands|strong="H3027"\w*; \w yet|strong="H3068"\w* \w you|strong="H3605"\w* didn’t turn \w to|strong="H3068"\w* \w me|strong="H5221"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 18 ‘\w Consider|strong="H7760"\w*, \w please|strong="H4994"\w*, \w from|strong="H4480"\w* \w this|strong="H2088"\w* \w day|strong="H3117"\w* \w and|strong="H3068"\w* backward, \w from|strong="H4480"\w* \w the|strong="H3068"\w* \w twenty-fourth|strong="H6242"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w ninth|strong="H8671"\w* month, \w since|strong="H4480"\w* \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w the|strong="H3068"\w* \w foundation|strong="H3245"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1964"\w* \w was|strong="H3068"\w* \w laid|strong="H7760"\w*, \w consider|strong="H7760"\w* \w it|strong="H7760"\w*. +\v 19 \w Is|strong="H2088"\w* \w the|strong="H5375"\w* \w seed|strong="H2233"\w* \w yet|strong="H5750"\w* \w in|strong="H3117"\w* \w the|strong="H5375"\w* \w barn|strong="H4035"\w*? Yes, \w the|strong="H5375"\w* \w vine|strong="H1612"\w*, \w the|strong="H5375"\w* \w fig|strong="H8384"\w* \w tree|strong="H6086"\w*, \w the|strong="H5375"\w* \w pomegranate|strong="H7416"\w*, \w and|strong="H3117"\w* \w the|strong="H5375"\w* \w olive|strong="H2132"\w* \w tree|strong="H6086"\w* haven’t produced. \w From|strong="H4480"\w* \w today|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H3808"\w* \w bless|strong="H1288"\w* \w you|strong="H3117"\w*.’” +\p +\v 20 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w the|strong="H3068"\w* \w second|strong="H8145"\w* \w time|strong="H8145"\w* \w to|strong="H3068"\w* \w Haggai|strong="H2292"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w twenty-fourth|strong="H6242"\w* \w day|strong="H2320"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* \w month|strong="H2320"\w*, \w saying|strong="H1697"\w*, +\v 21 “Speak \w to|strong="H3063"\w* \w Zerubbabel|strong="H2216"\w*, \w governor|strong="H6346"\w* \w of|strong="H6346"\w* \w Judah|strong="H3063"\w*, saying, ‘I \w will|strong="H8064"\w* \w shake|strong="H7493"\w* \w the|strong="H2216"\w* \w heavens|strong="H8064"\w* \w and|strong="H3063"\w* \w the|strong="H2216"\w* \w earth|strong="H8064"\w*. +\v 22 I \w will|strong="H1471"\w* \w overthrow|strong="H2015"\w* \w the|strong="H2015"\w* \w throne|strong="H3678"\w* \w of|strong="H3678"\w* \w kingdoms|strong="H4467"\w*. I \w will|strong="H1471"\w* \w destroy|strong="H8045"\w* \w the|strong="H2015"\w* \w strength|strong="H2392"\w* \w of|strong="H3678"\w* \w the|strong="H2015"\w* \w kingdoms|strong="H4467"\w* \w of|strong="H3678"\w* \w the|strong="H2015"\w* \w nations|strong="H1471"\w*. I \w will|strong="H1471"\w* \w overthrow|strong="H2015"\w* \w the|strong="H2015"\w* \w chariots|strong="H4818"\w* \w and|strong="H2719"\w* those \w who|strong="H1471"\w* \w ride|strong="H7392"\w* \w in|strong="H1471"\w* \w them|strong="H3381"\w*. \w The|strong="H2015"\w* \w horses|strong="H5483"\w* \w and|strong="H2719"\w* \w their|strong="H2015"\w* \w riders|strong="H7392"\w* \w will|strong="H1471"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w*, everyone \w by|strong="H3678"\w* \w the|strong="H2015"\w* \w sword|strong="H2719"\w* \w of|strong="H3678"\w* \w his|strong="H2015"\w* brother. +\v 23 \w In|strong="H3068"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w*, \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1121"\w* \w Armies|strong="H6635"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w take|strong="H3947"\w* \w you|strong="H3588"\w*, \w Zerubbabel|strong="H2216"\w* \w my|strong="H3068"\w* \w servant|strong="H5650"\w*, \w the|strong="H5002"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Shealtiel|strong="H7597"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, ‘\w and|strong="H1121"\w* \w will|strong="H3068"\w* \w make|strong="H7760"\w* \w you|strong="H3588"\w* \w like|strong="H1121"\w* \w a|strong="H3068"\w* \w signet|strong="H2368"\w* ring, \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w chosen|strong="H3947"\w* \w you|strong="H3588"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1121"\w* \w Armies|strong="H6635"\w*.” \ No newline at end of file diff --git a/bibles/eng-web_usfm/39-ZECeng-web.usfm b/bibles/eng-web_usfm/39-ZECeng-web.usfm new file mode 100644 index 0000000..29f6304 --- /dev/null +++ b/bibles/eng-web_usfm/39-ZECeng-web.usfm @@ -0,0 +1,455 @@ +\id ZEC 38-ZEC-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Zechariah +\toc1 The Book of Zechariah +\toc2 Zechariah +\toc3 Zec +\mt2 The Book of +\mt1 Zechariah +\c 1 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H3068"\w* \w eighth|strong="H8066"\w* \w month|strong="H2320"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w second|strong="H8147"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Darius|strong="H1867"\w*, \w Yahweh|strong="H3068"\w*’s\f + \fr 1:1 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w prophet|strong="H5030"\w* \w Zechariah|strong="H2148"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Berechiah|strong="H1296"\w*, \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Iddo|strong="H5714"\w*, \w saying|strong="H1697"\w*, +\v 2 “\w Yahweh|strong="H3068"\w* \w was|strong="H3068"\w* \w very|strong="H7107"\w* \w displeased|strong="H7107"\w* \w with|strong="H3068"\w* \w your|strong="H3068"\w* fathers. +\v 3 \w Therefore|strong="H3068"\w* tell \w them|strong="H7725"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H5002"\w*: ‘\w Return|strong="H7725"\w* \w to|strong="H7725"\w* \w me|strong="H7725"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, ‘\w and|strong="H3068"\w* \w I|strong="H3541"\w* \w will|strong="H3068"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w you|strong="H7725"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\v 4 Don’t \w you|strong="H7725"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w your|strong="H3068"\w* fathers, \w to|strong="H7725"\w* \w whom|strong="H7121"\w* \w the|strong="H5002"\w* \w former|strong="H7223"\w* \w prophets|strong="H5030"\w* \w proclaimed|strong="H7121"\w*, saying: \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H5002"\w*, ‘\w Return|strong="H7725"\w* \w now|strong="H4994"\w* \w from|strong="H7725"\w* \w your|strong="H3068"\w* \w evil|strong="H7451"\w* \w ways|strong="H1870"\w* \w and|strong="H3068"\w* \w from|strong="H7725"\w* \w your|strong="H3068"\w* \w evil|strong="H7451"\w* \w doings|strong="H4611"\w*;’ \w but|strong="H3808"\w* \w they|strong="H3068"\w* didn’t \w hear|strong="H8085"\w* \w nor|strong="H3808"\w* \w listen|strong="H8085"\w* \w to|strong="H7725"\w* \w me|strong="H4994"\w*, \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 5 \w Your|strong="H2421"\w* fathers, \w where|strong="H1992"\w* \w are|strong="H1992"\w* \w they|strong="H1992"\w*? \w And|strong="H5769"\w* \w the|strong="H2421"\w* \w prophets|strong="H5030"\w*, do \w they|strong="H1992"\w* \w live|strong="H2421"\w* \w forever|strong="H5769"\w*? +\v 6 \w But|strong="H3808"\w* \w my|strong="H3068"\w* \w words|strong="H1697"\w* \w and|strong="H3068"\w* \w my|strong="H3068"\w* \w decrees|strong="H2706"\w*, \w which|strong="H3068"\w* \w I|strong="H1697"\w* \w commanded|strong="H6680"\w* \w my|strong="H3068"\w* \w servants|strong="H5650"\w* \w the|strong="H6213"\w* \w prophets|strong="H5030"\w*, didn’t \w they|strong="H3651"\w* \w overtake|strong="H5381"\w* \w your|strong="H3068"\w* fathers? +\p “\w Then|strong="H3651"\w* \w they|strong="H3651"\w* \w repented|strong="H7725"\w* \w and|strong="H3068"\w* \w said|strong="H1697"\w*, ‘\w Just|strong="H1697"\w* \w as|strong="H1697"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* determined \w to|strong="H7725"\w* \w do|strong="H6213"\w* \w to|strong="H7725"\w* \w us|strong="H7725"\w*, according \w to|strong="H7725"\w* \w our|strong="H3068"\w* \w ways|strong="H1870"\w* \w and|strong="H3068"\w* according \w to|strong="H7725"\w* \w our|strong="H3068"\w* \w practices|strong="H6213"\w*, \w so|strong="H3651"\w* \w he|strong="H3651"\w* \w has|strong="H3068"\w* \w dealt|strong="H6213"\w* \w with|strong="H3068"\w* \w us|strong="H7725"\w*.’” +\p +\v 7 \w On|strong="H3117"\w* \w the|strong="H3068"\w* \w twenty-fourth|strong="H6242"\w* \w day|strong="H3117"\w* \w of|strong="H1121"\w* \w the|strong="H3068"\w* \w eleventh|strong="H6249"\w* \w month|strong="H2320"\w*, \w which|strong="H1931"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w month|strong="H2320"\w* \w Shebat|strong="H7627"\w*, \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w second|strong="H8147"\w* \w year|strong="H8141"\w* \w of|strong="H1121"\w* \w Darius|strong="H1867"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w the|strong="H3068"\w* \w prophet|strong="H5030"\w* \w Zechariah|strong="H2148"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Berechiah|strong="H1296"\w*, \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Iddo|strong="H5714"\w*, \w saying|strong="H1697"\w*, +\v 8 “\w I|strong="H2009"\w* \w had|strong="H1931"\w* \w a|strong="H3068"\w* \w vision|strong="H7200"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w night|strong="H3915"\w*, \w and|strong="H3915"\w* \w behold|strong="H2009"\w*,\f + \fr 1:8 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w a|strong="H3068"\w* \w man|strong="H7200"\w* \w riding|strong="H7392"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* red \w horse|strong="H5483"\w*, \w and|strong="H3915"\w* \w he|strong="H1931"\w* \w stood|strong="H5975"\w* \w among|strong="H5921"\w* \w the|strong="H5921"\w* \w myrtle|strong="H1918"\w* \w trees|strong="H1918"\w* \w that|strong="H7200"\w* \w were|strong="H5483"\w* \w in|strong="H5921"\w* \w a|strong="H3068"\w* \w ravine|strong="H4699"\w*; \w and|strong="H3915"\w* \w behind|strong="H5975"\w* \w him|strong="H5921"\w* \w there|strong="H2009"\w* \w were|strong="H5483"\w* red, brown, \w and|strong="H3915"\w* \w white|strong="H3836"\w* \w horses|strong="H5483"\w*. +\v 9 \w Then|strong="H1696"\w* \w I|strong="H7200"\w* \w asked|strong="H4100"\w*, ‘\w My|strong="H7200"\w* lord, \w what|strong="H4100"\w* \w are|strong="H1992"\w* \w these|strong="H1992"\w*?’” +\p \w The|strong="H7200"\w* \w angel|strong="H4397"\w* \w who|strong="H1992"\w* \w talked|strong="H1696"\w* \w with|strong="H1696"\w* \w me|strong="H7200"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H7200"\w*, “\w I|strong="H7200"\w* \w will|strong="H4100"\w* \w show|strong="H7200"\w* \w you|strong="H4100"\w* \w what|strong="H4100"\w* \w these|strong="H1992"\w* \w are|strong="H1992"\w*.” +\p +\v 10 \w The|strong="H3068"\w* \w man|strong="H6030"\w* \w who|strong="H3068"\w* \w stood|strong="H5975"\w* among \w the|strong="H3068"\w* \w myrtle|strong="H1918"\w* \w trees|strong="H1918"\w* \w answered|strong="H6030"\w*, “\w They|strong="H3068"\w* \w are|strong="H3068"\w* \w the|strong="H3068"\w* \w ones|strong="H5975"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w sent|strong="H7971"\w* \w to|strong="H1980"\w* \w go|strong="H1980"\w* \w back|strong="H1980"\w* \w and|strong="H1980"\w* \w forth|strong="H7971"\w* \w through|strong="H1980"\w* \w the|strong="H3068"\w* earth.” +\p +\v 11 \w They|strong="H3068"\w* reported \w to|strong="H1980"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w who|strong="H3605"\w* \w stood|strong="H5975"\w* \w among|strong="H3427"\w* \w the|strong="H3605"\w* \w myrtle|strong="H1918"\w* \w trees|strong="H1918"\w*, \w and|strong="H1980"\w* \w said|strong="H6030"\w*, “\w We|strong="H1980"\w* \w have|strong="H3068"\w* \w walked|strong="H1980"\w* \w back|strong="H1980"\w* \w and|strong="H1980"\w* \w forth|strong="H1980"\w* \w through|strong="H1980"\w* \w the|strong="H3605"\w* earth, \w and|strong="H1980"\w* \w behold|strong="H2009"\w*, \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth \w is|strong="H3068"\w* \w at|strong="H3427"\w* \w rest|strong="H8252"\w* \w and|strong="H1980"\w* \w in|strong="H3427"\w* \w peace|strong="H8252"\w*.” +\p +\v 12 \w Then|strong="H6030"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w replied|strong="H6030"\w*, “\w O|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w how|strong="H4970"\w* \w long|strong="H5704"\w* \w will|strong="H3068"\w* \w you|strong="H5704"\w* \w not|strong="H3808"\w* \w have|strong="H7355"\w* \w mercy|strong="H7355"\w* \w on|strong="H3068"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H3063"\w* \w on|strong="H3068"\w* \w the|strong="H3068"\w* \w cities|strong="H5892"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w*, \w against|strong="H3068"\w* \w which|strong="H3068"\w* \w you|strong="H5704"\w* \w have|strong="H7355"\w* \w had|strong="H3068"\w* \w indignation|strong="H2194"\w* \w these|strong="H2088"\w* \w seventy|strong="H7657"\w* \w years|strong="H8141"\w*?” +\p +\v 13 \w Yahweh|strong="H3068"\w* \w answered|strong="H6030"\w* \w the|strong="H3068"\w* \w angel|strong="H4397"\w* \w who|strong="H3068"\w* \w talked|strong="H1696"\w* \w with|strong="H3068"\w* \w me|strong="H1696"\w* \w with|strong="H3068"\w* \w kind|strong="H2896"\w* \w and|strong="H3068"\w* \w comforting|strong="H5150"\w* \w words|strong="H1697"\w*. +\v 14 \w So|strong="H3541"\w* \w the|strong="H3541"\w* \w angel|strong="H4397"\w* \w who|strong="H3068"\w* \w talked|strong="H1696"\w* \w with|strong="H3068"\w* \w me|strong="H7121"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H7121"\w*, “\w Proclaim|strong="H7121"\w*, \w saying|strong="H1696"\w*, ‘\w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: “\w I|strong="H3541"\w* \w am|strong="H3068"\w* \w jealous|strong="H7065"\w* \w for|strong="H7121"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H3068"\w* \w for|strong="H7121"\w* \w Zion|strong="H6726"\w* \w with|strong="H3068"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w jealousy|strong="H7068"\w*. +\v 15 \w I|strong="H5921"\w* am \w very|strong="H1419"\w* \w angry|strong="H7107"\w* \w with|strong="H5921"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w* \w that|strong="H1471"\w* \w are|strong="H1992"\w* \w at|strong="H5921"\w* \w ease|strong="H7600"\w*; \w for|strong="H5921"\w* \w I|strong="H5921"\w* \w was|strong="H7451"\w* \w but|strong="H1992"\w* \w a|strong="H3068"\w* \w little|strong="H4592"\w* \w displeased|strong="H7107"\w*, \w but|strong="H1992"\w* \w they|strong="H1992"\w* added \w to|strong="H5921"\w* \w the|strong="H5921"\w* \w calamity|strong="H7451"\w*.” +\v 16 \w Therefore|strong="H3651"\w* \w Yahweh|strong="H3068"\w* \w says|strong="H5002"\w*: “\w I|strong="H3541"\w* \w have|strong="H3068"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Jerusalem|strong="H3389"\w* \w with|strong="H1004"\w* \w mercy|strong="H7356"\w*. \w My|strong="H3068"\w* \w house|strong="H1004"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w built|strong="H1129"\w* \w in|strong="H5921"\w* \w it|strong="H5921"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w*, “\w and|strong="H3068"\w* \w a|strong="H3068"\w* line \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w stretched|strong="H5186"\w* \w out|strong="H5186"\w* \w over|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*.”’ +\p +\v 17 “\w Proclaim|strong="H7121"\w* \w further|strong="H5750"\w*, saying, ‘\w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: “\w My|strong="H3068"\w* \w cities|strong="H5892"\w* \w will|strong="H3068"\w* \w again|strong="H5750"\w* \w overflow|strong="H6327"\w* \w with|strong="H3068"\w* \w prosperity|strong="H2896"\w*, \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w again|strong="H5750"\w* \w comfort|strong="H5162"\w* \w Zion|strong="H6726"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w again|strong="H5750"\w* choose \w Jerusalem|strong="H3389"\w*.”’” +\p +\v 18 I lifted up my eyes and saw, and behold, four horns. +\v 19 I asked the angel who talked with me, “What are these?” +\p He answered me, “These are the horns which have scattered Judah, Israel, and Jerusalem.” +\p +\v 20 \w Yahweh|strong="H3068"\w* showed me four craftsmen. +\v 21 Then I asked, “What are these coming to do?” +\p He said, “These are the horns which scattered Judah, so that no man lifted up his head; but these have come to terrify them, to cast down the horns of the nations that lifted up their horn against the land of Judah to scatter it.” +\c 2 +\p +\v 1 \w I|strong="H2009"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w my|strong="H7200"\w* \w eyes|strong="H5869"\w*, \w and|strong="H5869"\w* \w saw|strong="H7200"\w*, \w and|strong="H5869"\w* \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w man|strong="H5375"\w* \w with|strong="H5869"\w* \w a|strong="H3068"\w* measuring line \w in|strong="H5869"\w* \w his|strong="H5375"\w* hand. +\v 2 \w Then|strong="H1696"\w* \w I|strong="H4100"\w* \w asked|strong="H4100"\w*, “\w Where|strong="H4100"\w* \w are|strong="H3478"\w* \w you|strong="H4100"\w* going?” +\p \w He|strong="H3389"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H1696"\w*, “\w To|strong="H1696"\w* measure \w Jerusalem|strong="H3389"\w*, \w to|strong="H1696"\w* see \w what|strong="H4100"\w* \w is|strong="H4100"\w* \w its|strong="H7161"\w* width \w and|strong="H3063"\w* \w what|strong="H4100"\w* \w is|strong="H4100"\w* \w its|strong="H7161"\w* length.” +\p +\v 3 \w Behold|strong="H7200"\w*, \w the|strong="H7200"\w* angel \w who|strong="H3068"\w* talked \w with|strong="H3068"\w* \w me|strong="H7200"\w* \w went|strong="H3068"\w* \w out|strong="H7200"\w*, \w and|strong="H3068"\w* \w another|strong="H7200"\w* angel \w went|strong="H3068"\w* \w out|strong="H7200"\w* \w to|strong="H3068"\w* \w meet|strong="H7200"\w* \w him|strong="H7200"\w*, +\v 4 \w and|strong="H3063"\w* \w said|strong="H6310"\w* \w to|strong="H6213"\w* \w him|strong="H6213"\w*, “Run, \w speak|strong="H6310"\w* \w to|strong="H6213"\w* \w this|strong="H6213"\w* young \w man|strong="H5375"\w*, \w saying|strong="H6310"\w*, ‘Jerusalem \w will|strong="H1471"\w* \w be|strong="H3808"\w* inhabited \w as|strong="H6213"\w* villages \w without|strong="H3808"\w* walls, because \w of|strong="H7218"\w* \w the|strong="H5375"\w* multitude \w of|strong="H7218"\w* \w men|strong="H7218"\w* \w and|strong="H3063"\w* livestock \w in|strong="H6213"\w* \w it|strong="H6213"\w*. +\v 5 \w For|strong="H3027"\w* \w I|strong="H2009"\w*,’ says \w Yahweh|strong="H3068"\w*, ‘\w will|strong="H5869"\w* \w be|strong="H3027"\w* \w to|strong="H3027"\w* \w her|strong="H5375"\w* \w a|strong="H3068"\w* wall \w of|strong="H3027"\w* fire \w around|strong="H3027"\w* \w it|strong="H7200"\w*, \w and|strong="H3027"\w* \w I|strong="H2009"\w* \w will|strong="H5869"\w* \w be|strong="H3027"\w* \w the|strong="H7200"\w* glory \w in|strong="H3027"\w* \w the|strong="H7200"\w* middle \w of|strong="H3027"\w* \w her|strong="H5375"\w*. +\p +\v 6 \w Come|strong="H1980"\w*! \w Come|strong="H1980"\w*! Flee \w from|strong="H1980"\w* \w the|strong="H7200"\w* land \w of|strong="H7341"\w* \w the|strong="H7200"\w* north,’ says \w Yahweh|strong="H3068"\w*; ‘\w for|strong="H3389"\w* \w I|strong="H7200"\w* \w have|strong="H7200"\w* \w spread|strong="H1980"\w* \w you|strong="H4100"\w* \w abroad|strong="H1980"\w* \w as|strong="H3389"\w* \w the|strong="H7200"\w* four winds \w of|strong="H7341"\w* \w the|strong="H7200"\w* sky,’ says \w Yahweh|strong="H3068"\w*. +\v 7 ‘\w Come|strong="H3318"\w*, Zion! \w Escape|strong="H3318"\w*, \w you|strong="H1696"\w* \w who|strong="H4397"\w* dwell \w with|strong="H1696"\w* \w the|strong="H3318"\w* daughter \w of|strong="H4397"\w* Babylon.’ +\v 8 \w For|strong="H3427"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3427"\w* Armies \w says|strong="H1696"\w*: ‘\w For|strong="H3427"\w* honor \w he|strong="H3389"\w* \w has|strong="H1696"\w* sent \w me|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H8432"\w* nations which plundered \w you|strong="H8432"\w*; \w for|strong="H3427"\w* \w he|strong="H3389"\w* \w who|strong="H3427"\w* touches \w you|strong="H8432"\w* touches \w the|strong="H8432"\w* apple \w of|strong="H3427"\w* \w his|strong="H8432"\w* eye. +\v 9 \w For|strong="H3068"\w*, behold, \w I|strong="H3068"\w* \w will|strong="H3068"\w* shake \w my|strong="H3068"\w* hand \w over|strong="H3068"\w* \w them|strong="H5439"\w*, \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* plunder \w to|strong="H3068"\w* \w those|strong="H1961"\w* \w who|strong="H3068"\w* \w served|strong="H1961"\w* \w them|strong="H5439"\w*; \w and|strong="H3068"\w* \w you|strong="H8432"\w* \w will|strong="H3068"\w* know \w that|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* Armies \w has|strong="H3068"\w* \w sent|strong="H3068"\w* \w me|strong="H1961"\w*. +\v 10 Sing \w and|strong="H3068"\w* rejoice, daughter \w of|strong="H3068"\w* \w Zion|strong="H6566"\w*! \w For|strong="H3588"\w* behold, \w I|strong="H3588"\w* come \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* dwell within \w you|strong="H3588"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\v 11 Many nations \w shall|strong="H1323"\w* \w join|strong="H3427"\w* themselves \w to|strong="H1323"\w* \w Yahweh|strong="H3068"\w* \w in|strong="H3427"\w* \w that|strong="H4422"\w* day, \w and|strong="H3427"\w* \w shall|strong="H1323"\w* \w be|strong="H6726"\w* \w my|strong="H4422"\w* \w people|strong="H3427"\w*; \w and|strong="H3427"\w* I \w will|strong="H1323"\w* \w dwell|strong="H3427"\w* \w among|strong="H3427"\w* \w you|strong="H6726"\w*, \w and|strong="H3427"\w* \w you|strong="H6726"\w* \w shall|strong="H1323"\w* know \w that|strong="H4422"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1323"\w* Armies \w has|strong="H6726"\w* sent me \w to|strong="H1323"\w* \w you|strong="H6726"\w*. +\v 12 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* inherit Judah \w as|strong="H3068"\w* \w his|strong="H3068"\w* portion \w in|strong="H3068"\w* \w the|strong="H3588"\w* holy land, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w again|strong="H7971"\w* choose \w Jerusalem|strong="H3519"\w*. +\v 13 \w Be|strong="H1961"\w* silent, \w all|strong="H3045"\w* flesh, \w before|strong="H5921"\w* \w Yahweh|strong="H3068"\w*; \w for|strong="H3588"\w* \w he|strong="H3588"\w* \w has|strong="H3068"\w* roused \w himself|strong="H3027"\w* \w from|strong="H5921"\w* \w his|strong="H3068"\w* holy habitation!” +\c 3 +\p +\v 1 \w He|strong="H3068"\w* \w showed|strong="H7200"\w* \w me|strong="H6440"\w* \w Joshua|strong="H3091"\w* \w the|strong="H6440"\w* \w high|strong="H1419"\w* \w priest|strong="H3548"\w* \w standing|strong="H5975"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w*, \w and|strong="H3068"\w* \w Satan|strong="H7854"\w* \w standing|strong="H5975"\w* \w at|strong="H5921"\w* \w his|strong="H3068"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w to|strong="H3068"\w* \w be|strong="H3068"\w* \w his|strong="H3068"\w* \w adversary|strong="H7854"\w*. +\v 2 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w Satan|strong="H7854"\w*, “\w Yahweh|strong="H3068"\w* \w rebuke|strong="H1605"\w* \w you|strong="H3808"\w*, \w Satan|strong="H7854"\w*! Yes, \w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w has|strong="H3068"\w* chosen \w Jerusalem|strong="H3389"\w* \w rebuke|strong="H1605"\w* \w you|strong="H3808"\w*! Isn’t \w this|strong="H2088"\w* \w a|strong="H3068"\w* burning stick \w plucked|strong="H5337"\w* \w out|strong="H5337"\w* \w of|strong="H3068"\w* \w the|strong="H3068"\w* fire?” +\p +\v 3 \w Now|strong="H1961"\w* \w Joshua|strong="H3091"\w* \w was|strong="H1961"\w* \w clothed|strong="H3847"\w* \w with|strong="H3847"\w* \w filthy|strong="H6674"\w* garments, \w and|strong="H6440"\w* \w was|strong="H1961"\w* \w standing|strong="H5975"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w angel|strong="H4397"\w*. +\v 4 \w He|strong="H5921"\w* \w answered|strong="H6030"\w* \w and|strong="H6030"\w* \w spoke|strong="H6030"\w* \w to|strong="H5921"\w* \w those|strong="H5921"\w* \w who|strong="H5975"\w* \w stood|strong="H5975"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w*, saying, “\w Take|strong="H5493"\w* \w the|strong="H6440"\w* \w filthy|strong="H6674"\w* garments \w off|strong="H5493"\w* \w him|strong="H6440"\w*.” \w To|strong="H5921"\w* \w him|strong="H6440"\w* \w he|strong="H5921"\w* \w said|strong="H6030"\w*, “\w Behold|strong="H7200"\w*, \w I|strong="H5921"\w* \w have|strong="H5771"\w* \w caused|strong="H5674"\w* \w your|strong="H5921"\w* \w iniquity|strong="H5771"\w* \w to|strong="H5921"\w* \w pass|strong="H5674"\w* \w from|strong="H5493"\w* \w you|strong="H6440"\w*, \w and|strong="H6030"\w* \w I|strong="H5921"\w* \w will|strong="H5771"\w* \w clothe|strong="H3847"\w* \w you|strong="H6440"\w* \w with|strong="H3847"\w* rich \w clothing|strong="H3847"\w*.” +\p +\v 5 \w I|strong="H5921"\w* said, “\w Let|strong="H7760"\w* \w them|strong="H5921"\w* \w set|strong="H7760"\w* \w a|strong="H3068"\w* \w clean|strong="H2889"\w* \w turban|strong="H6797"\w* \w on|strong="H5921"\w* \w his|strong="H7760"\w* \w head|strong="H7218"\w*.” +\p \w So|strong="H5975"\w* \w they|strong="H3068"\w* \w set|strong="H7760"\w* \w a|strong="H3068"\w* \w clean|strong="H2889"\w* \w turban|strong="H6797"\w* \w on|strong="H5921"\w* \w his|strong="H7760"\w* \w head|strong="H7218"\w*, \w and|strong="H3068"\w* \w clothed|strong="H3847"\w* \w him|strong="H5921"\w*; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w was|strong="H3068"\w* \w standing|strong="H5975"\w* \w by|strong="H5921"\w*. +\p +\v 6 \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w solemnly|strong="H5749"\w* assured \w Joshua|strong="H3091"\w*, saying, +\v 7 “\w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: ‘If \w you|strong="H5414"\w* \w will|strong="H3068"\w* \w walk|strong="H3212"\w* \w in|strong="H3068"\w* \w my|strong="H8104"\w* \w ways|strong="H1870"\w*, \w and|strong="H3068"\w* if \w you|strong="H5414"\w* \w will|strong="H3068"\w* \w follow|strong="H3212"\w* \w my|strong="H8104"\w* \w instructions|strong="H1870"\w*, \w then|strong="H1571"\w* \w you|strong="H5414"\w* \w also|strong="H1571"\w* \w shall|strong="H3068"\w* \w judge|strong="H1777"\w* \w my|strong="H8104"\w* \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w shall|strong="H3068"\w* \w also|strong="H1571"\w* \w keep|strong="H8104"\w* \w my|strong="H8104"\w* \w courts|strong="H2691"\w*, \w and|strong="H3068"\w* \w I|strong="H5414"\w* \w will|strong="H3068"\w* \w give|strong="H5414"\w* \w you|strong="H5414"\w* \w a|strong="H3068"\w* \w place|strong="H5414"\w* \w of|strong="H1004"\w* access among \w these|strong="H1004"\w* \w who|strong="H3068"\w* \w stand|strong="H5975"\w* \w by|strong="H3068"\w*. +\v 8 \w Hear|strong="H8085"\w* \w now|strong="H4994"\w*, \w Joshua|strong="H3091"\w* \w the|strong="H6440"\w* \w high|strong="H1419"\w* \w priest|strong="H3548"\w*, \w you|strong="H3588"\w* \w and|strong="H1419"\w* \w your|strong="H6440"\w* \w fellows|strong="H7453"\w* \w who|strong="H3548"\w* \w sit|strong="H3427"\w* \w before|strong="H6440"\w* \w you|strong="H3588"\w*, \w for|strong="H3588"\w* \w they|strong="H1992"\w* \w are|strong="H1992"\w* \w men|strong="H1419"\w* \w who|strong="H3548"\w* \w are|strong="H1992"\w* \w a|strong="H3068"\w* \w sign|strong="H4159"\w*; \w for|strong="H3588"\w*, \w behold|strong="H2005"\w*, \w I|strong="H3588"\w* \w will|strong="H5650"\w* bring \w out|strong="H6440"\w* \w my|strong="H8085"\w* \w servant|strong="H5650"\w*, \w the|strong="H6440"\w* \w Branch|strong="H6780"\w*. +\v 9 \w For|strong="H3588"\w*, \w behold|strong="H2009"\w*, \w the|strong="H6440"\w* stone \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3068"\w* \w set|strong="H5414"\w* \w before|strong="H6440"\w* \w Joshua|strong="H3091"\w*: \w on|strong="H5921"\w* \w one|strong="H1931"\w* stone \w are|strong="H3117"\w* \w seven|strong="H7651"\w* \w eyes|strong="H5869"\w*; \w behold|strong="H2009"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w engrave|strong="H6605"\w* \w its|strong="H5414"\w* \w inscription|strong="H6603"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, ‘\w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w remove|strong="H4185"\w* \w the|strong="H6440"\w* \w iniquity|strong="H5771"\w* \w of|strong="H3068"\w* \w that|strong="H3588"\w* \w land|strong="H6440"\w* \w in|strong="H5921"\w* \w one|strong="H1931"\w* \w day|strong="H3117"\w*. +\v 10 \w In|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*,’ \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, ‘\w you|strong="H3117"\w* \w will|strong="H3068"\w* \w invite|strong="H7121"\w* \w every|strong="H3117"\w* man \w his|strong="H3068"\w* \w neighbor|strong="H7453"\w* \w under|strong="H8478"\w* \w the|strong="H5002"\w* \w vine|strong="H1612"\w* \w and|strong="H3068"\w* \w under|strong="H8478"\w* \w the|strong="H5002"\w* \w fig|strong="H8384"\w* \w tree|strong="H8384"\w*.’” +\c 4 +\p +\v 1 \w The|strong="H7725"\w* \w angel|strong="H4397"\w* \w who|strong="H4397"\w* \w talked|strong="H1696"\w* \w with|strong="H1696"\w* \w me|strong="H7725"\w* \w came|strong="H7725"\w* \w again|strong="H7725"\w* \w and|strong="H7725"\w* \w wakened|strong="H5782"\w* \w me|strong="H7725"\w*, \w as|strong="H1696"\w* \w a|strong="H3068"\w* man \w who|strong="H4397"\w* \w is|strong="H1696"\w* \w wakened|strong="H5782"\w* \w out|strong="H7725"\w* \w of|strong="H4397"\w* \w his|strong="H7725"\w* \w sleep|strong="H8142"\w*. +\v 2 \w He|strong="H3605"\w* said \w to|strong="H5921"\w* \w me|strong="H7200"\w*, “\w What|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H3605"\w* \w see|strong="H7200"\w*?” +\p \w I|strong="H2009"\w* said, “\w I|strong="H2009"\w* \w have|strong="H7200"\w* \w seen|strong="H7200"\w*, \w and|strong="H2091"\w* \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w lamp|strong="H5216"\w* stand \w all|strong="H3605"\w* \w of|strong="H7218"\w* \w gold|strong="H2091"\w*, \w with|strong="H5921"\w* \w its|strong="H3605"\w* \w bowl|strong="H1543"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w top|strong="H7218"\w* \w of|strong="H7218"\w* \w it|strong="H5921"\w*, \w and|strong="H2091"\w* \w its|strong="H3605"\w* \w seven|strong="H7651"\w* \w lamps|strong="H5216"\w* \w on|strong="H5921"\w* \w it|strong="H5921"\w*; \w there|strong="H2009"\w* \w are|strong="H4100"\w* \w seven|strong="H7651"\w* \w pipes|strong="H4166"\w* \w to|strong="H5921"\w* \w each|strong="H3605"\w* \w of|strong="H7218"\w* \w the|strong="H3605"\w* \w lamps|strong="H5216"\w* \w which|strong="H4100"\w* \w are|strong="H4100"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w top|strong="H7218"\w* \w of|strong="H7218"\w* \w it|strong="H5921"\w*; +\v 3 \w and|strong="H8147"\w* \w two|strong="H8147"\w* \w olive|strong="H2132"\w* \w trees|strong="H2132"\w* \w by|strong="H5921"\w* \w it|strong="H5921"\w*, \w one|strong="H8147"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w right|strong="H3225"\w* \w side|strong="H3225"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* \w bowl|strong="H1543"\w*, \w and|strong="H8147"\w* \w the|strong="H5921"\w* \w other|strong="H8147"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w left|strong="H8040"\w* \w side|strong="H3225"\w* \w of|strong="H5921"\w* \w it|strong="H5921"\w*.” +\p +\v 4 \w I|strong="H4100"\w* \w answered|strong="H6030"\w* \w and|strong="H6030"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H1696"\w* \w angel|strong="H4397"\w* \w who|strong="H4397"\w* \w talked|strong="H1696"\w* \w with|strong="H1696"\w* \w me|strong="H1696"\w*, \w saying|strong="H1696"\w*, “\w What|strong="H4100"\w* \w are|strong="H4100"\w* \w these|strong="H1696"\w*, \w my|strong="H1696"\w* lord?” +\p +\v 5 \w Then|strong="H6030"\w* \w the|strong="H3045"\w* \w angel|strong="H4397"\w* \w who|strong="H1992"\w* \w talked|strong="H1696"\w* \w with|strong="H1696"\w* \w me|strong="H1696"\w* \w answered|strong="H6030"\w* \w me|strong="H1696"\w*, “Don’t \w you|strong="H3045"\w* \w know|strong="H3045"\w* \w what|strong="H4100"\w* \w these|strong="H1992"\w* \w are|strong="H1992"\w*?” +\p \w I|strong="H3045"\w* \w said|strong="H1696"\w*, “\w No|strong="H3808"\w*, \w my|strong="H3045"\w* lord.” +\p +\v 6 \w Then|strong="H6030"\w* \w he|strong="H3588"\w* \w answered|strong="H6030"\w* \w and|strong="H3068"\w* \w spoke|strong="H1697"\w* \w to|strong="H3068"\w* \w me|strong="H6030"\w*, \w saying|strong="H1697"\w*, “\w This|strong="H2088"\w* \w is|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w to|strong="H3068"\w* \w Zerubbabel|strong="H2216"\w*, \w saying|strong="H1697"\w*, ‘\w Not|strong="H3808"\w* \w by|strong="H3068"\w* \w might|strong="H3581"\w*, \w nor|strong="H3808"\w* \w by|strong="H3068"\w* \w power|strong="H3581"\w*, \w but|strong="H3588"\w* \w by|strong="H3068"\w* \w my|strong="H3068"\w* \w Spirit|strong="H7307"\w*,’ \w says|strong="H1697"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\v 7 \w Who|strong="H4310"\w* \w are|strong="H4310"\w* \w you|strong="H6440"\w*, \w great|strong="H1419"\w* \w mountain|strong="H2022"\w*? \w Before|strong="H6440"\w* \w Zerubbabel|strong="H2216"\w* \w you|strong="H6440"\w* \w are|strong="H4310"\w* \w a|strong="H3068"\w* \w plain|strong="H4334"\w*; \w and|strong="H1419"\w* \w he|strong="H6440"\w* \w will|strong="H4310"\w* \w bring|strong="H3318"\w* \w out|strong="H3318"\w* \w the|strong="H6440"\w* capstone \w with|strong="H6440"\w* \w shouts|strong="H8663"\w* \w of|strong="H2022"\w* ‘\w Grace|strong="H2580"\w*, \w grace|strong="H2580"\w*, \w to|strong="H3318"\w* \w it|strong="H6440"\w*!’” +\p +\v 8 \w Moreover|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1961"\w*, \w saying|strong="H1697"\w*, +\v 9 “\w The|strong="H3588"\w* \w hands|strong="H3027"\w* \w of|strong="H1004"\w* \w Zerubbabel|strong="H2216"\w* \w have|strong="H3068"\w* \w laid|strong="H3245"\w* \w the|strong="H3588"\w* \w foundation|strong="H3245"\w* \w of|strong="H1004"\w* \w this|strong="H2088"\w* \w house|strong="H1004"\w*. \w His|strong="H3068"\w* \w hands|strong="H3027"\w* \w shall|strong="H3068"\w* \w also|strong="H3068"\w* \w finish|strong="H1214"\w* \w it|strong="H3588"\w*; \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w* \w has|strong="H3068"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w*. +\v 10 \w Indeed|strong="H3588"\w*, \w who|strong="H4310"\w* despises \w the|strong="H3605"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w small|strong="H6996"\w* \w things|strong="H3605"\w*? \w For|strong="H3588"\w* \w these|strong="H1992"\w* \w seven|strong="H7651"\w* \w shall|strong="H3068"\w* \w rejoice|strong="H8055"\w*, \w and|strong="H3068"\w* \w shall|strong="H3068"\w* \w see|strong="H7200"\w* \w the|strong="H3605"\w* plumb line \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w Zerubbabel|strong="H2216"\w*. \w These|strong="H1992"\w* \w are|strong="H3117"\w* \w Yahweh|strong="H3068"\w*’s \w eyes|strong="H5869"\w*, \w which|strong="H3068"\w* \w run|strong="H5869"\w* \w back|strong="H7751"\w* \w and|strong="H3068"\w* \w forth|strong="H7751"\w* \w through|strong="H3027"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* earth.” +\p +\v 11 \w Then|strong="H6030"\w* \w I|strong="H5921"\w* \w asked|strong="H4100"\w* \w him|strong="H5921"\w*, “\w What|strong="H4100"\w* \w are|strong="H4100"\w* \w these|strong="H8147"\w* \w two|strong="H8147"\w* \w olive|strong="H2132"\w* \w trees|strong="H2132"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w right|strong="H3225"\w* \w side|strong="H3225"\w* \w of|strong="H5921"\w* \w the|strong="H5921"\w* lamp stand \w and|strong="H6030"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w left|strong="H8040"\w* \w side|strong="H3225"\w* \w of|strong="H5921"\w* \w it|strong="H5921"\w*?” +\p +\v 12 \w I|strong="H5921"\w* \w asked|strong="H4100"\w* \w him|strong="H5921"\w* \w the|strong="H5921"\w* \w second|strong="H8145"\w* \w time|strong="H8145"\w*, “\w What|strong="H4100"\w* \w are|strong="H3027"\w* \w these|strong="H8147"\w* \w two|strong="H8147"\w* \w olive|strong="H2132"\w* \w branches|strong="H7641"\w*, \w which|strong="H4100"\w* \w are|strong="H3027"\w* \w beside|strong="H5921"\w* \w the|strong="H5921"\w* \w two|strong="H8147"\w* \w golden|strong="H2091"\w* spouts \w that|strong="H3027"\w* pour \w the|strong="H5921"\w* \w golden|strong="H2091"\w* \w oil|strong="H7324"\w* \w out|strong="H7324"\w* \w of|strong="H3027"\w* \w themselves|strong="H5921"\w*?” +\p +\v 13 \w He|strong="H3808"\w* answered \w me|strong="H3808"\w*, “Don’t \w you|strong="H3045"\w* \w know|strong="H3045"\w* \w what|strong="H4100"\w* these \w are|strong="H4100"\w*?” +\p \w I|strong="H3045"\w* said, “\w No|strong="H3808"\w*, \w my|strong="H3045"\w* lord.” +\p +\v 14 \w Then|strong="H5975"\w* \w he|strong="H3605"\w* said, “\w These|strong="H8147"\w* \w are|strong="H1121"\w* \w the|strong="H3605"\w* \w two|strong="H8147"\w* \w anointed|strong="H3323"\w* \w ones|strong="H1121"\w* \w who|strong="H3605"\w* \w stand|strong="H5975"\w* \w by|strong="H5921"\w* \w the|strong="H3605"\w* Lord\f + \fr 4:14 \ft The word translated “Lord” is “Adonai.”\f* \w of|strong="H1121"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* earth.” +\c 5 +\p +\v 1 \w Then|strong="H2009"\w* \w again|strong="H7725"\w* \w I|strong="H2009"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w my|strong="H7200"\w* \w eyes|strong="H5869"\w* \w and|strong="H7725"\w* \w saw|strong="H7200"\w*, \w and|strong="H7725"\w* \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w flying|strong="H5774"\w* \w scroll|strong="H4039"\w*. +\v 2 \w He|strong="H6242"\w* said \w to|strong="H7200"\w* \w me|strong="H7200"\w*, “\w What|strong="H4100"\w* \w do|strong="H4100"\w* \w you|strong="H4100"\w* \w see|strong="H7200"\w*?” +\p \w I|strong="H7200"\w* answered, “\w I|strong="H7200"\w* \w see|strong="H7200"\w* \w a|strong="H3068"\w* \w flying|strong="H5774"\w* \w scroll|strong="H4039"\w*; its length \w is|strong="H4100"\w* \w twenty|strong="H6242"\w* cubits,\f + \fr 5:2 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \w and|strong="H6242"\w* its \w width|strong="H7341"\w* \w ten|strong="H6235"\w* cubits.” +\p +\v 3 \w Then|strong="H3318"\w* \w he|strong="H3588"\w* \w said|strong="H3318"\w* \w to|strong="H3318"\w* \w me|strong="H6440"\w*, “\w This|strong="H2088"\w* \w is|strong="H2088"\w* \w the|strong="H3605"\w* \w curse|strong="H7650"\w* \w that|strong="H3588"\w* \w goes|strong="H3318"\w* \w out|strong="H3318"\w* \w over|strong="H5921"\w* \w the|strong="H3605"\w* \w surface|strong="H6440"\w* \w of|strong="H6440"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w land|strong="H6440"\w*, \w for|strong="H3588"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w steals|strong="H1589"\w* \w shall|strong="H6440"\w* \w be|strong="H6440"\w* cut \w off|strong="H5921"\w* \w according|strong="H5921"\w* \w to|strong="H3318"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w one|strong="H2088"\w* \w side|strong="H2088"\w*; \w and|strong="H6440"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w swears|strong="H7650"\w* falsely \w shall|strong="H6440"\w* \w be|strong="H6440"\w* cut \w off|strong="H5921"\w* \w according|strong="H5921"\w* \w to|strong="H3318"\w* \w it|strong="H5921"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w other|strong="H2088"\w* \w side|strong="H2088"\w*. +\v 4 \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w cause|strong="H8267"\w* \w it|strong="H8432"\w* \w to|strong="H3318"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w*, “\w and|strong="H3068"\w* \w it|strong="H8432"\w* \w will|strong="H3068"\w* enter \w into|strong="H8432"\w* \w the|strong="H5002"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w the|strong="H5002"\w* \w thief|strong="H1590"\w*, \w and|strong="H3068"\w* \w into|strong="H8432"\w* \w the|strong="H5002"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w him|strong="H3318"\w* \w who|strong="H3068"\w* \w swears|strong="H7650"\w* \w falsely|strong="H8267"\w* \w by|strong="H7650"\w* \w my|strong="H3068"\w* \w name|strong="H8034"\w*; \w and|strong="H3068"\w* \w it|strong="H8432"\w* \w will|strong="H3068"\w* \w remain|strong="H3885"\w* \w in|strong="H3068"\w* \w the|strong="H5002"\w* \w middle|strong="H8432"\w* \w of|strong="H1004"\w* \w his|strong="H3068"\w* \w house|strong="H1004"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w destroy|strong="H3615"\w* \w it|strong="H8432"\w* \w with|strong="H1004"\w* \w its|strong="H3318"\w* \w timber|strong="H6086"\w* \w and|strong="H3068"\w* \w its|strong="H3318"\w* stones.” +\p +\v 5 \w Then|strong="H1696"\w* \w the|strong="H7200"\w* \w angel|strong="H4397"\w* \w who|strong="H4397"\w* \w talked|strong="H1696"\w* \w with|strong="H1696"\w* \w me|strong="H4994"\w* \w came|strong="H3318"\w* \w forward|strong="H3318"\w* \w and|strong="H5869"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H4994"\w*, “\w Lift|strong="H5375"\w* \w up|strong="H5375"\w* \w now|strong="H4994"\w* \w your|strong="H5375"\w* \w eyes|strong="H5869"\w* \w and|strong="H5869"\w* \w see|strong="H7200"\w* \w what|strong="H4100"\w* \w this|strong="H2063"\w* \w is|strong="H4100"\w* \w that|strong="H7200"\w* \w is|strong="H4100"\w* \w appearing|strong="H7200"\w*.” +\p +\v 6 \w I|strong="H4100"\w* \w said|strong="H3318"\w*, “\w What|strong="H4100"\w* \w is|strong="H1931"\w* \w it|strong="H1931"\w*?” +\p \w He|strong="H1931"\w* \w said|strong="H3318"\w*, “\w This|strong="H2063"\w* \w is|strong="H1931"\w* \w the|strong="H3605"\w* ephah\f + \fr 5:6 \ft An ephah is a measure of volume of about 22 liters, 5.8 U. S. gallons, or about 2/3 of a bushel. \f* basket \w that|strong="H3605"\w* \w is|strong="H1931"\w* appearing.” \w He|strong="H1931"\w* \w said|strong="H3318"\w* moreover, “\w This|strong="H2063"\w* \w is|strong="H1931"\w* \w their|strong="H3605"\w* \w appearance|strong="H5869"\w* \w in|strong="H5869"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land— +\v 7 \w and|strong="H3427"\w* \w behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w lead|strong="H5777"\w* \w cover|strong="H3603"\w* weighing \w one|strong="H5375"\w* \w talent|strong="H3603"\w*\f + \fr 5:7 \ft A talent is about 30 kilograms or 66 pounds.\f* \w was|strong="H3427"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w*—\w and|strong="H3427"\w* \w there|strong="H2009"\w* \w was|strong="H3427"\w* \w a|strong="H3068"\w* woman \w sitting|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H5375"\w* \w middle|strong="H8432"\w* \w of|strong="H3427"\w* \w the|strong="H5375"\w* ephah\f + \fr 5:7 \ft 1 ephah is about 22 liters or about 2/3 of a bushel\f* basket.” +\v 8 \w He|strong="H6310"\w* \w said|strong="H6310"\w*, “\w This|strong="H2063"\w* \w is|strong="H6310"\w* \w Wickedness|strong="H7564"\w*;” \w and|strong="H6310"\w* \w he|strong="H6310"\w* \w threw|strong="H7993"\w* \w her|strong="H2063"\w* \w down|strong="H7993"\w* \w into|strong="H8432"\w* \w the|strong="H8432"\w* \w middle|strong="H8432"\w* \w of|strong="H6310"\w* \w the|strong="H8432"\w* ephah basket; \w and|strong="H6310"\w* \w he|strong="H6310"\w* \w threw|strong="H7993"\w* \w the|strong="H8432"\w* \w lead|strong="H5777"\w* weight \w on|strong="H6310"\w* \w its|strong="H7993"\w* \w mouth|strong="H6310"\w*. +\p +\v 9 \w Then|strong="H3318"\w* \w I|strong="H2009"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w my|strong="H7200"\w* \w eyes|strong="H5869"\w* \w and|strong="H8064"\w* \w saw|strong="H7200"\w*, \w and|strong="H8064"\w* \w behold|strong="H2009"\w*, \w there|strong="H2009"\w* \w were|strong="H5869"\w* \w two|strong="H8147"\w* women; \w and|strong="H8064"\w* \w the|strong="H7200"\w* \w wind|strong="H7307"\w* \w was|strong="H7307"\w* \w in|strong="H8064"\w* \w their|strong="H5375"\w* \w wings|strong="H3671"\w*. \w Now|strong="H2009"\w* \w they|strong="H2007"\w* \w had|strong="H5869"\w* \w wings|strong="H3671"\w* \w like|strong="H3318"\w* \w the|strong="H7200"\w* \w wings|strong="H3671"\w* \w of|strong="H7307"\w* \w a|strong="H3068"\w* \w stork|strong="H2624"\w*, \w and|strong="H8064"\w* \w they|strong="H2007"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w the|strong="H7200"\w* ephah basket \w between|strong="H7307"\w* \w earth|strong="H8064"\w* \w and|strong="H8064"\w* \w the|strong="H7200"\w* \w sky|strong="H8064"\w*. +\v 10 \w Then|strong="H1696"\w* \w I|strong="H3212"\w* \w said|strong="H1696"\w* \w to|strong="H1696"\w* \w the|strong="H1696"\w* \w angel|strong="H4397"\w* \w who|strong="H1992"\w* \w talked|strong="H1696"\w* \w with|strong="H1696"\w* \w me|strong="H1696"\w*, “\w Where|strong="H1992"\w* \w are|strong="H1992"\w* \w these|strong="H1992"\w* carrying \w the|strong="H1696"\w* ephah basket?” +\p +\v 11 \w He|strong="H8033"\w* said \w to|strong="H5921"\w* \w me|strong="H5921"\w*, “\w To|strong="H5921"\w* \w build|strong="H1129"\w* \w her|strong="H5921"\w* \w a|strong="H3068"\w* \w house|strong="H1004"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* land \w of|strong="H1004"\w* \w Shinar|strong="H8152"\w*. \w When|strong="H5921"\w* \w it|strong="H5921"\w* \w is|strong="H8033"\w* \w prepared|strong="H3559"\w*, \w she|strong="H5921"\w* \w will|strong="H1004"\w* \w be|strong="H1004"\w* \w set|strong="H3559"\w* \w there|strong="H8033"\w* \w in|strong="H5921"\w* \w her|strong="H5921"\w* own \w place|strong="H1004"\w*.” +\c 6 +\p +\v 1 \w Again|strong="H7725"\w* \w I|strong="H2009"\w* \w lifted|strong="H5375"\w* \w up|strong="H5375"\w* \w my|strong="H7200"\w* \w eyes|strong="H5869"\w*, \w and|strong="H7725"\w* \w saw|strong="H7200"\w*, \w and|strong="H7725"\w* \w behold|strong="H2009"\w*, four \w chariots|strong="H4818"\w* \w came|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H7725"\w* between \w two|strong="H8147"\w* \w mountains|strong="H2022"\w*; \w and|strong="H7725"\w* \w the|strong="H7200"\w* \w mountains|strong="H2022"\w* \w were|strong="H5869"\w* \w mountains|strong="H2022"\w* \w of|strong="H2022"\w* \w bronze|strong="H5178"\w*. +\v 2 \w In|strong="H7223"\w* \w the|strong="H7223"\w* \w first|strong="H7223"\w* \w chariot|strong="H4818"\w* \w were|strong="H5483"\w* red \w horses|strong="H5483"\w*. \w In|strong="H7223"\w* \w the|strong="H7223"\w* \w second|strong="H8145"\w* \w chariot|strong="H4818"\w* \w were|strong="H5483"\w* \w black|strong="H7838"\w* \w horses|strong="H5483"\w*. +\v 3 \w In|strong="H4818"\w* \w the|strong="H7992"\w* \w third|strong="H7992"\w* \w chariot|strong="H4818"\w* \w were|strong="H5483"\w* \w white|strong="H3836"\w* \w horses|strong="H5483"\w*. \w In|strong="H4818"\w* \w the|strong="H7992"\w* \w fourth|strong="H7243"\w* \w chariot|strong="H4818"\w* \w were|strong="H5483"\w* \w dappled|strong="H1261"\w* \w horses|strong="H5483"\w*, all \w of|strong="H4818"\w* them powerful. +\v 4 \w Then|strong="H6030"\w* \w I|strong="H4100"\w* \w asked|strong="H4100"\w* \w the|strong="H1696"\w* \w angel|strong="H4397"\w* \w who|strong="H4397"\w* \w talked|strong="H1696"\w* \w with|strong="H1696"\w* \w me|strong="H1696"\w*, “\w What|strong="H4100"\w* \w are|strong="H4100"\w* \w these|strong="H1696"\w*, \w my|strong="H1696"\w* lord?” +\p +\v 5 \w The|strong="H3605"\w* \w angel|strong="H4397"\w* \w answered|strong="H6030"\w* \w me|strong="H5921"\w*, “\w These|strong="H3605"\w* \w are|strong="H8064"\w* \w the|strong="H3605"\w* four \w winds|strong="H7307"\w* \w of|strong="H7307"\w* \w the|strong="H3605"\w* \w sky|strong="H8064"\w*, \w which|strong="H7307"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w standing|strong="H3320"\w* \w before|strong="H5921"\w* \w the|strong="H3605"\w* Lord \w of|strong="H7307"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w earth|strong="H8064"\w*. +\v 6 \w The|strong="H3318"\w* one \w with|strong="H3318"\w* \w the|strong="H3318"\w* \w black|strong="H7838"\w* \w horses|strong="H5483"\w* \w goes|strong="H3318"\w* \w out|strong="H3318"\w* \w toward|strong="H3318"\w* \w the|strong="H3318"\w* \w north|strong="H6828"\w* country; \w and|strong="H5483"\w* \w the|strong="H3318"\w* \w white|strong="H3836"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w after|strong="H3318"\w* \w them|strong="H3318"\w*; \w and|strong="H5483"\w* \w the|strong="H3318"\w* \w dappled|strong="H1261"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w toward|strong="H3318"\w* \w the|strong="H3318"\w* \w south|strong="H8486"\w* country.” +\v 7 \w The|strong="H3318"\w* strong \w went|strong="H1980"\w* \w out|strong="H3318"\w*, \w and|strong="H1980"\w* \w sought|strong="H1245"\w* \w to|strong="H1980"\w* \w go|strong="H1980"\w* \w that|strong="H3212"\w* \w they|strong="H3318"\w* might \w walk|strong="H1980"\w* \w back|strong="H1980"\w* \w and|strong="H1980"\w* \w forth|strong="H3318"\w* \w through|strong="H1980"\w* \w the|strong="H3318"\w* earth. \w He|strong="H1980"\w* \w said|strong="H3318"\w*, “\w Go|strong="H1980"\w* \w around|strong="H1980"\w* \w and|strong="H1980"\w* \w through|strong="H1980"\w* \w the|strong="H3318"\w* earth!” \w So|strong="H1980"\w* \w they|strong="H3318"\w* \w walked|strong="H1980"\w* \w back|strong="H1980"\w* \w and|strong="H1980"\w* \w forth|strong="H3318"\w* \w through|strong="H1980"\w* \w the|strong="H3318"\w* earth. +\p +\v 8 \w Then|strong="H1696"\w* \w he|strong="H1696"\w* \w called|strong="H2199"\w* \w to|strong="H1696"\w* \w me|strong="H7200"\w*, \w and|strong="H7200"\w* \w spoke|strong="H1696"\w* \w to|strong="H1696"\w* \w me|strong="H7200"\w*, \w saying|strong="H1696"\w*, “\w Behold|strong="H7200"\w*, \w those|strong="H3318"\w* who \w go|strong="H3318"\w* \w toward|strong="H3318"\w* \w the|strong="H7200"\w* \w north|strong="H6828"\w* country \w have|strong="H7200"\w* \w quieted|strong="H5117"\w* \w my|strong="H7200"\w* \w spirit|strong="H7307"\w* \w in|strong="H1696"\w* \w the|strong="H7200"\w* \w north|strong="H6828"\w* country.” +\p +\v 9 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1961"\w*, \w saying|strong="H1697"\w*, +\v 10 “\w Take|strong="H3947"\w* \w of|strong="H1121"\w* \w them|strong="H3947"\w* \w of|strong="H1121"\w* \w the|strong="H3947"\w* \w captivity|strong="H1473"\w*, even \w of|strong="H1121"\w* \w Heldai|strong="H2469"\w*, \w of|strong="H1121"\w* \w Tobijah|strong="H2900"\w*, \w and|strong="H1121"\w* \w of|strong="H1121"\w* \w Jedaiah|strong="H3048"\w*; \w and|strong="H1121"\w* come \w the|strong="H3947"\w* \w same|strong="H1931"\w* \w day|strong="H3117"\w*, \w and|strong="H1121"\w* go \w into|strong="H3947"\w* \w the|strong="H3947"\w* \w house|strong="H1004"\w* \w of|strong="H1121"\w* \w Josiah|strong="H2977"\w* \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zephaniah|strong="H6846"\w*, \w where|strong="H1004"\w* \w they|strong="H3117"\w* \w have|strong="H1121"\w* come \w from|strong="H1121"\w* Babylon. +\v 11 Yes, \w take|strong="H3947"\w* \w silver|strong="H3701"\w* \w and|strong="H1121"\w* \w gold|strong="H2091"\w*, \w and|strong="H1121"\w* \w make|strong="H6213"\w* \w crowns|strong="H5850"\w*, \w and|strong="H1121"\w* \w set|strong="H7760"\w* \w them|strong="H6213"\w* \w on|strong="H7760"\w* \w the|strong="H3947"\w* \w head|strong="H7218"\w* \w of|strong="H1121"\w* \w Joshua|strong="H3091"\w* \w the|strong="H3947"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Jehozadak|strong="H3087"\w*, \w the|strong="H3947"\w* \w high|strong="H1419"\w* \w priest|strong="H3548"\w*; +\v 12 \w and|strong="H3068"\w* speak \w to|strong="H3068"\w* \w him|strong="H8478"\w*, saying, ‘\w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*, “\w Behold|strong="H2009"\w*, \w the|strong="H3541"\w* man \w whose|strong="H8034"\w* \w name|strong="H8034"\w* \w is|strong="H3068"\w* \w the|strong="H3541"\w* \w Branch|strong="H6780"\w*! \w He|strong="H3068"\w* \w will|strong="H3068"\w* \w grow|strong="H6779"\w* \w up|strong="H1129"\w* \w out|strong="H6779"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w place|strong="H8478"\w*; \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w build|strong="H1129"\w* \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1964"\w*. +\v 13 \w He|strong="H1931"\w* \w will|strong="H3068"\w* \w build|strong="H1129"\w* \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1964"\w*. \w He|strong="H1931"\w* \w will|strong="H3068"\w* \w bear|strong="H5375"\w* \w the|strong="H5921"\w* \w glory|strong="H1935"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w sit|strong="H3427"\w* \w and|strong="H3068"\w* \w rule|strong="H4910"\w* \w on|strong="H5921"\w* \w his|strong="H5375"\w* \w throne|strong="H3678"\w*. \w He|strong="H1931"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w priest|strong="H3548"\w* \w on|strong="H5921"\w* \w his|strong="H5375"\w* \w throne|strong="H3678"\w*. \w The|strong="H5921"\w* \w counsel|strong="H6098"\w* \w of|strong="H3068"\w* \w peace|strong="H7965"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w between|strong="H7965"\w* \w them|strong="H5921"\w* \w both|strong="H8147"\w*. +\v 14 \w The|strong="H3068"\w* \w crowns|strong="H5850"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w to|strong="H3068"\w* \w Helem|strong="H2494"\w*, \w to|strong="H3068"\w* \w Tobijah|strong="H2900"\w*, \w to|strong="H3068"\w* \w Jedaiah|strong="H3048"\w*, \w and|strong="H1121"\w* \w to|strong="H3068"\w* \w Hen|strong="H2581"\w* \w the|strong="H3068"\w* \w son|strong="H1121"\w* \w of|strong="H1121"\w* \w Zephaniah|strong="H6846"\w*, \w for|strong="H3068"\w* \w a|strong="H3068"\w* \w memorial|strong="H2146"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1964"\w*. +\p +\v 15 \w Those|strong="H8085"\w* \w who|strong="H3068"\w* \w are|strong="H3068"\w* \w far|strong="H7350"\w* \w off|strong="H7350"\w* \w shall|strong="H3068"\w* \w come|strong="H1961"\w* \w and|strong="H3068"\w* \w build|strong="H1129"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w temple|strong="H1964"\w*; \w and|strong="H3068"\w* \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w has|strong="H3068"\w* \w sent|strong="H7971"\w* \w me|strong="H7971"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w*. \w This|strong="H3588"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w*, \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w diligently|strong="H8085"\w* \w obey|strong="H8085"\w* \w Yahweh|strong="H3068"\w* \w your|strong="H3068"\w* \w God|strong="H3068"\w*’s \w voice|strong="H6963"\w*.”’”\f + \fr 6:15 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* +\c 7 +\p +\v 1 \w In|strong="H8141"\w* \w the|strong="H3068"\w* fourth \w year|strong="H8141"\w* \w of|strong="H4428"\w* \w King|strong="H4428"\w* \w Darius|strong="H1867"\w*, \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Zechariah|strong="H2148"\w* \w in|strong="H8141"\w* \w the|strong="H3068"\w* fourth \w day|strong="H2320"\w* \w of|strong="H4428"\w* \w the|strong="H3068"\w* \w ninth|strong="H8671"\w* \w month|strong="H2320"\w*, \w the|strong="H3068"\w* \w month|strong="H2320"\w* \w of|strong="H4428"\w* \w Chislev|strong="H3691"\w*. +\v 2 \w The|strong="H6440"\w* people \w of|strong="H3068"\w* \w Bethel|strong="H1008"\w* \w sent|strong="H7971"\w* \w Sharezer|strong="H8272"\w* \w and|strong="H3068"\w* Regem Melech \w and|strong="H3068"\w* \w their|strong="H3068"\w* men \w to|strong="H3068"\w* \w entreat|strong="H2470"\w* \w Yahweh|strong="H3068"\w*’s \w favor|strong="H6440"\w*, +\v 3 \w and|strong="H3068"\w* \w to|strong="H3068"\w* speak \w to|strong="H3068"\w* \w the|strong="H6213"\w* \w priests|strong="H3548"\w* \w of|strong="H1004"\w* \w the|strong="H6213"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w the|strong="H6213"\w* \w prophets|strong="H5030"\w*, saying, “\w Should|strong="H3068"\w* \w I|strong="H2088"\w* \w weep|strong="H1058"\w* \w in|strong="H8141"\w* \w the|strong="H6213"\w* \w fifth|strong="H2549"\w* \w month|strong="H2320"\w*, \w separating|strong="H5144"\w* myself, \w as|strong="H6213"\w* \w I|strong="H2088"\w* \w have|strong="H3068"\w* \w done|strong="H6213"\w* \w these|strong="H2088"\w* \w so|strong="H6213"\w* \w many|strong="H4100"\w* \w years|strong="H8141"\w*?” +\p +\v 4 \w Then|strong="H1961"\w* \w the|strong="H3068"\w* \w word|strong="H1697"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1961"\w*, \w saying|strong="H1697"\w*, +\v 5 “Speak \w to|strong="H5971"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w of|strong="H8141"\w* \w the|strong="H3605"\w* land \w and|strong="H3548"\w* \w to|strong="H5971"\w* \w the|strong="H3605"\w* \w priests|strong="H3548"\w*, saying, ‘\w When|strong="H3588"\w* \w you|strong="H3588"\w* \w fasted|strong="H6684"\w* \w and|strong="H3548"\w* \w mourned|strong="H5594"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w fifth|strong="H2549"\w* \w and|strong="H3548"\w* \w in|strong="H8141"\w* \w the|strong="H3605"\w* \w seventh|strong="H7637"\w* month \w for|strong="H3588"\w* \w these|strong="H2088"\w* \w seventy|strong="H7657"\w* \w years|strong="H8141"\w*, \w did|strong="H5971"\w* \w you|strong="H3588"\w* \w at|strong="H5971"\w* \w all|strong="H3605"\w* \w fast|strong="H6684"\w* \w to|strong="H5971"\w* \w me|strong="H3588"\w*, \w really|strong="H2088"\w* \w to|strong="H5971"\w* \w me|strong="H3588"\w*? +\v 6 \w When|strong="H3588"\w* \w you|strong="H3588"\w* eat \w and|strong="H8354"\w* \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w drink|strong="H8354"\w*, don’t \w you|strong="H3588"\w* eat \w for|strong="H3588"\w* yourselves \w and|strong="H8354"\w* \w drink|strong="H8354"\w* \w for|strong="H3588"\w* yourselves? +\v 7 Aren’t \w these|strong="H7121"\w* \w the|strong="H3068"\w* \w words|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w proclaimed|strong="H7121"\w* \w by|strong="H3027"\w* \w the|strong="H3068"\w* \w former|strong="H7223"\w* \w prophets|strong="H5030"\w* \w when|strong="H1961"\w* \w Jerusalem|strong="H3389"\w* \w was|strong="H3068"\w* \w inhabited|strong="H3427"\w* \w and|strong="H3068"\w* \w in|strong="H3427"\w* \w prosperity|strong="H7961"\w*, \w and|strong="H3068"\w* \w its|strong="H5439"\w* \w cities|strong="H5892"\w* \w around|strong="H5439"\w* \w her|strong="H5439"\w*, \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w South|strong="H5045"\w* \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w lowland|strong="H8219"\w* \w were|strong="H1961"\w* \w inhabited|strong="H3427"\w*?’” +\p +\v 8 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w Zechariah|strong="H2148"\w*, \w saying|strong="H1697"\w*, +\v 9 “\w Thus|strong="H3541"\w* \w has|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* spoken, saying, ‘\w Execute|strong="H6213"\w* \w true|strong="H3068"\w* \w judgment|strong="H4941"\w*, \w and|strong="H3068"\w* \w show|strong="H6213"\w* \w kindness|strong="H2617"\w* \w and|strong="H3068"\w* \w compassion|strong="H7356"\w* \w every|strong="H6213"\w* man \w to|strong="H3068"\w* \w his|strong="H3068"\w* brother. +\v 10 Don’t \w oppress|strong="H6231"\w* \w the|strong="H6231"\w* widow, \w the|strong="H6231"\w* \w fatherless|strong="H3490"\w*, \w the|strong="H6231"\w* \w foreigner|strong="H1616"\w*, \w nor|strong="H7451"\w* \w the|strong="H6231"\w* \w poor|strong="H6041"\w*; \w and|strong="H6041"\w* let none \w of|strong="H3824"\w* \w you|strong="H6231"\w* \w devise|strong="H2803"\w* \w evil|strong="H7451"\w* \w against|strong="H3824"\w* \w his|strong="H2803"\w* brother \w in|strong="H1616"\w* \w your|strong="H6231"\w* \w heart|strong="H3824"\w*.’ +\v 11 \w But|strong="H3513"\w* \w they|strong="H5414"\w* \w refused|strong="H3985"\w* \w to|strong="H5414"\w* \w listen|strong="H8085"\w*, \w and|strong="H8085"\w* \w turned|strong="H5414"\w* \w their|strong="H5414"\w* \w backs|strong="H3802"\w*, \w and|strong="H8085"\w* \w stopped|strong="H3513"\w* \w their|strong="H5414"\w* ears, \w that|strong="H8085"\w* \w they|strong="H5414"\w* might \w not|strong="H5414"\w* \w hear|strong="H8085"\w*. +\v 12 Yes, \w they|strong="H3068"\w* \w made|strong="H7760"\w* \w their|strong="H3068"\w* \w hearts|strong="H3820"\w* \w as|strong="H1697"\w* \w hard|strong="H1419"\w* \w as|strong="H1697"\w* \w flint|strong="H8068"\w*, lest \w they|strong="H3068"\w* \w might|strong="H3068"\w* \w hear|strong="H8085"\w* \w the|strong="H8085"\w* \w law|strong="H8451"\w* \w and|strong="H3068"\w* \w the|strong="H8085"\w* \w words|strong="H1697"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w had|strong="H3068"\w* \w sent|strong="H7971"\w* \w by|strong="H3027"\w* \w his|strong="H7760"\w* \w Spirit|strong="H7307"\w* \w by|strong="H3027"\w* \w the|strong="H8085"\w* \w former|strong="H7223"\w* \w prophets|strong="H5030"\w*. \w Therefore|strong="H7971"\w* \w great|strong="H1419"\w* \w wrath|strong="H7110"\w* \w came|strong="H1961"\w* \w from|strong="H3027"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\v 13 \w It|strong="H7121"\w* \w has|strong="H3068"\w* \w come|strong="H1961"\w* \w to|strong="H3068"\w* \w pass|strong="H1961"\w* \w that|strong="H8085"\w*, \w as|strong="H1961"\w* \w he|strong="H3651"\w* \w called|strong="H7121"\w* \w and|strong="H3068"\w* \w they|strong="H3651"\w* \w refused|strong="H3808"\w* \w to|strong="H3068"\w* \w listen|strong="H8085"\w*, \w so|strong="H3651"\w* \w they|strong="H3651"\w* \w will|strong="H3068"\w* \w call|strong="H7121"\w* \w and|strong="H3068"\w* \w I|strong="H3651"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w*,” \w said|strong="H7121"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*; +\v 14 “\w but|strong="H3808"\w* \w I|strong="H5921"\w* \w will|strong="H1471"\w* scatter \w them|strong="H5921"\w* \w with|strong="H5921"\w* \w a|strong="H3068"\w* \w whirlwind|strong="H5590"\w* \w among|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w which|strong="H1471"\w* \w they|strong="H3808"\w* \w have|strong="H3045"\w* \w not|strong="H3808"\w* \w known|strong="H3045"\w*. \w Thus|strong="H3808"\w* \w the|strong="H3605"\w* land \w was|strong="H3605"\w* \w desolate|strong="H8047"\w* \w after|strong="H5921"\w* \w them|strong="H5921"\w*, \w so|strong="H3808"\w* \w that|strong="H3045"\w* \w no|strong="H3808"\w* \w man|strong="H3605"\w* \w passed|strong="H5674"\w* \w through|strong="H5674"\w* \w nor|strong="H3808"\w* \w returned|strong="H7725"\w*; \w for|strong="H5921"\w* \w they|strong="H3808"\w* \w made|strong="H7760"\w* \w the|strong="H3605"\w* \w pleasant|strong="H2532"\w* land \w desolate|strong="H8047"\w*.” +\c 8 +\p +\v 1 \w The|strong="H3068"\w* \w word|strong="H1697"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1961"\w*. +\v 2 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: “\w I|strong="H3541"\w* \w am|strong="H3068"\w* \w jealous|strong="H7065"\w* \w for|strong="H3068"\w* \w Zion|strong="H6726"\w* \w with|strong="H3068"\w* \w great|strong="H1419"\w* \w jealousy|strong="H7068"\w*, \w and|strong="H3068"\w* \w I|strong="H3541"\w* \w am|strong="H3068"\w* \w jealous|strong="H7065"\w* \w for|strong="H3068"\w* \w her|strong="H7065"\w* \w with|strong="H3068"\w* \w great|strong="H1419"\w* \w wrath|strong="H2534"\w*.” +\p +\v 3 \w Yahweh|strong="H3068"\w* \w says|strong="H3541"\w*: “\w I|strong="H3541"\w* \w have|strong="H3068"\w* \w returned|strong="H7725"\w* \w to|strong="H7725"\w* \w Zion|strong="H6726"\w*, \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w dwell|strong="H7931"\w* \w in|strong="H3068"\w* \w the|strong="H3541"\w* \w middle|strong="H8432"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*. \w Jerusalem|strong="H3389"\w* \w shall|strong="H3068"\w* \w be|strong="H3068"\w* \w called|strong="H7121"\w* ‘\w The|strong="H3541"\w* \w City|strong="H5892"\w* \w of|strong="H3068"\w* Truth;’ \w and|strong="H3068"\w* \w the|strong="H3541"\w* \w mountain|strong="H2022"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, ‘\w The|strong="H3541"\w* \w Holy|strong="H6944"\w* \w Mountain|strong="H2022"\w*.’” +\p +\v 4 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: “\w Old|strong="H2205"\w* \w men|strong="H2205"\w* \w and|strong="H3068"\w* \w old|strong="H2205"\w* \w women|strong="H2205"\w* \w will|strong="H3068"\w* \w again|strong="H5750"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w the|strong="H3541"\w* \w streets|strong="H7339"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w*, \w every|strong="H3117"\w* \w man|strong="H2205"\w* \w with|strong="H3068"\w* \w his|strong="H3068"\w* \w staff|strong="H4938"\w* \w in|strong="H3427"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w* \w because|strong="H7230"\w* \w of|strong="H3068"\w* \w their|strong="H3068"\w* \w old|strong="H2205"\w* \w age|strong="H3117"\w*. +\v 5 \w The|strong="H4390"\w* \w streets|strong="H7339"\w* \w of|strong="H5892"\w* \w the|strong="H4390"\w* \w city|strong="H5892"\w* \w will|strong="H5892"\w* \w be|strong="H5892"\w* \w full|strong="H4390"\w* \w of|strong="H5892"\w* \w boys|strong="H3206"\w* \w and|strong="H5892"\w* \w girls|strong="H3207"\w* \w playing|strong="H7832"\w* \w in|strong="H5892"\w* \w its|strong="H4390"\w* \w streets|strong="H7339"\w*.” +\p +\v 6 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H5002"\w*: “\w If|strong="H3588"\w* \w it|strong="H3588"\w* \w is|strong="H3068"\w* \w marvelous|strong="H6381"\w* \w in|strong="H3068"\w* \w the|strong="H5002"\w* \w eyes|strong="H5869"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* \w remnant|strong="H7611"\w* \w of|strong="H3068"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w in|strong="H3068"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*, \w should|strong="H3068"\w* \w it|strong="H3588"\w* \w also|strong="H1571"\w* \w be|strong="H3068"\w* \w marvelous|strong="H6381"\w* \w in|strong="H3068"\w* \w my|strong="H3068"\w* \w eyes|strong="H5869"\w*?” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\p +\v 7 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: “\w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H3068"\w* \w save|strong="H3467"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w* \w from|strong="H3068"\w* \w the|strong="H3541"\w* \w east|strong="H4217"\w* country \w and|strong="H3068"\w* \w from|strong="H3068"\w* \w the|strong="H3541"\w* \w west|strong="H3996"\w* country. +\v 8 \w I|strong="H8432"\w* \w will|strong="H1961"\w* \w bring|strong="H1961"\w* \w them|strong="H8432"\w*, \w and|strong="H5971"\w* \w they|strong="H5971"\w* \w will|strong="H1961"\w* \w dwell|strong="H7931"\w* \w within|strong="H8432"\w* \w Jerusalem|strong="H3389"\w*. \w They|strong="H5971"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w my|strong="H1961"\w* \w people|strong="H5971"\w*, \w and|strong="H5971"\w* \w I|strong="H8432"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w their|strong="H8432"\w* God, \w in|strong="H7931"\w* truth \w and|strong="H5971"\w* \w in|strong="H7931"\w* \w righteousness|strong="H6666"\w*.” +\p +\v 9 \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: “Let \w your|strong="H3068"\w* \w hands|strong="H3027"\w* \w be|strong="H1697"\w* \w strong|strong="H2388"\w*, \w you|strong="H3117"\w* \w who|strong="H3068"\w* \w hear|strong="H8085"\w* \w in|strong="H3068"\w* \w these|strong="H8085"\w* \w days|strong="H3117"\w* \w these|strong="H8085"\w* \w words|strong="H1697"\w* \w from|strong="H3027"\w* \w the|strong="H8085"\w* \w mouth|strong="H6310"\w* \w of|strong="H1004"\w* \w the|strong="H8085"\w* \w prophets|strong="H5030"\w* \w who|strong="H3068"\w* \w were|strong="H3117"\w* \w in|strong="H3068"\w* \w the|strong="H8085"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w the|strong="H8085"\w* \w foundation|strong="H3245"\w* \w of|strong="H1004"\w* \w the|strong="H8085"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w* \w was|strong="H3068"\w* \w laid|strong="H3245"\w*, \w even|strong="H1129"\w* \w the|strong="H8085"\w* \w temple|strong="H1004"\w*, \w that|strong="H3117"\w* \w it|strong="H3117"\w* \w might|strong="H3068"\w* \w be|strong="H1697"\w* \w built|strong="H1129"\w*. +\v 10 \w For|strong="H3588"\w* \w before|strong="H6440"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w* \w there|strong="H1961"\w* \w was|strong="H1961"\w* \w no|strong="H3808"\w* \w wages|strong="H7939"\w* \w for|strong="H3588"\w* \w man|strong="H3605"\w* \w nor|strong="H3808"\w* \w any|strong="H3605"\w* \w wages|strong="H7939"\w* \w for|strong="H3588"\w* \w an|strong="H1961"\w* \w animal|strong="H1961"\w*, \w neither|strong="H3808"\w* \w was|strong="H1961"\w* \w there|strong="H1961"\w* \w any|strong="H3605"\w* \w peace|strong="H7965"\w* \w to|strong="H3318"\w* \w him|strong="H6440"\w* \w who|strong="H3605"\w* \w went|strong="H3318"\w* \w out|strong="H3318"\w* \w or|strong="H3808"\w* \w came|strong="H1961"\w* \w in|strong="H3117"\w*, \w because|strong="H3588"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* \w adversary|strong="H6862"\w*. \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w set|strong="H7971"\w* \w all|strong="H3605"\w* \w men|strong="H3605"\w* \w everyone|strong="H3605"\w* \w against|strong="H6440"\w* \w his|strong="H3605"\w* \w neighbor|strong="H7453"\w*. +\v 11 \w But|strong="H3808"\w* \w now|strong="H6258"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w to|strong="H3068"\w* \w the|strong="H5002"\w* \w remnant|strong="H7611"\w* \w of|strong="H3068"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w as|strong="H3117"\w* \w in|strong="H3068"\w* \w the|strong="H5002"\w* \w former|strong="H7223"\w* \w days|strong="H3117"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\v 12 “\w For|strong="H3588"\w* \w the|strong="H3605"\w* \w seed|strong="H2233"\w* \w of|strong="H2233"\w* \w peace|strong="H7965"\w* \w and|strong="H8064"\w* \w the|strong="H3605"\w* \w vine|strong="H1612"\w* \w will|strong="H5971"\w* \w yield|strong="H5414"\w* \w its|strong="H3605"\w* \w fruit|strong="H6529"\w*, \w and|strong="H8064"\w* \w the|strong="H3605"\w* ground \w will|strong="H5971"\w* \w give|strong="H5414"\w* \w its|strong="H3605"\w* \w increase|strong="H2981"\w*, \w and|strong="H8064"\w* \w the|strong="H3605"\w* \w heavens|strong="H8064"\w* \w will|strong="H5971"\w* \w give|strong="H5414"\w* \w their|strong="H3605"\w* \w dew|strong="H2919"\w*. \w I|strong="H3588"\w* \w will|strong="H5971"\w* \w cause|strong="H5414"\w* \w the|strong="H3605"\w* \w remnant|strong="H7611"\w* \w of|strong="H2233"\w* \w this|strong="H2088"\w* \w people|strong="H5971"\w* \w to|strong="H5414"\w* \w inherit|strong="H5157"\w* \w all|strong="H3605"\w* \w these|strong="H2088"\w* \w things|strong="H3605"\w*. +\v 13 \w It|strong="H3651"\w* \w shall|strong="H3478"\w* \w come|strong="H1961"\w* \w to|strong="H3478"\w* \w pass|strong="H1961"\w* \w that|strong="H1471"\w*, \w as|strong="H1961"\w* \w you|strong="H3651"\w* \w were|strong="H3478"\w* \w a|strong="H3068"\w* \w curse|strong="H7045"\w* \w among|strong="H3478"\w* \w the|strong="H2388"\w* \w nations|strong="H1471"\w*, \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Israel|strong="H3478"\w*, \w so|strong="H3651"\w* \w I|strong="H3651"\w* \w will|strong="H1961"\w* \w save|strong="H3467"\w* \w you|strong="H3651"\w*, \w and|strong="H3063"\w* \w you|strong="H3651"\w* \w shall|strong="H3478"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w blessing|strong="H1293"\w*. Don’t \w be|strong="H1961"\w* \w afraid|strong="H3372"\w*. \w Let|strong="H3651"\w* \w your|strong="H1961"\w* \w hands|strong="H3027"\w* \w be|strong="H1961"\w* \w strong|strong="H2388"\w*.” +\p +\v 14 \w For|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: “\w As|strong="H3068"\w* \w I|strong="H3588"\w* \w thought|strong="H2161"\w* \w to|strong="H3068"\w* \w do|strong="H7489"\w* \w evil|strong="H7489"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w* \w when|strong="H3588"\w* \w your|strong="H3068"\w* fathers \w provoked|strong="H7107"\w* \w me|strong="H3808"\w* \w to|strong="H3068"\w* \w wrath|strong="H7107"\w*,” \w says|strong="H3541"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, “\w and|strong="H3068"\w* \w I|strong="H3588"\w* didn’t \w repent|strong="H5162"\w*, +\v 15 \w so|strong="H3651"\w* \w again|strong="H7725"\w* \w I|strong="H3117"\w* \w have|strong="H3063"\w* \w thought|strong="H2161"\w* \w in|strong="H1004"\w* \w these|strong="H1004"\w* \w days|strong="H3117"\w* \w to|strong="H7725"\w* \w do|strong="H3190"\w* \w good|strong="H3190"\w* \w to|strong="H7725"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H3063"\w* \w to|strong="H7725"\w* \w the|strong="H3117"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w*. Don’t \w be|strong="H3117"\w* \w afraid|strong="H3372"\w*. +\v 16 \w These|strong="H1696"\w* \w are|strong="H1697"\w* \w the|strong="H6213"\w* \w things|strong="H1697"\w* \w that|strong="H1697"\w* \w you|strong="H6213"\w* \w shall|strong="H1697"\w* \w do|strong="H6213"\w*: \w speak|strong="H1696"\w* \w every|strong="H1697"\w* \w man|strong="H8179"\w* \w the|strong="H6213"\w* truth \w with|strong="H6213"\w* \w his|strong="H6213"\w* \w neighbor|strong="H7453"\w*. \w Execute|strong="H6213"\w* \w the|strong="H6213"\w* \w judgment|strong="H4941"\w* \w of|strong="H1697"\w* truth \w and|strong="H4941"\w* \w peace|strong="H7965"\w* \w in|strong="H6213"\w* \w your|strong="H6213"\w* \w gates|strong="H8179"\w*, +\v 17 \w and|strong="H3068"\w* let \w none|strong="H3605"\w* \w of|strong="H3068"\w* \w you|strong="H3588"\w* \w devise|strong="H2803"\w* \w evil|strong="H7451"\w* \w in|strong="H3068"\w* \w your|strong="H3068"\w* \w hearts|strong="H3824"\w* \w against|strong="H8130"\w* \w his|strong="H3605"\w* \w neighbor|strong="H7453"\w*, \w and|strong="H3068"\w* love \w no|strong="H3605"\w* \w false|strong="H8267"\w* \w oath|strong="H7621"\w*; \w for|strong="H3588"\w* \w all|strong="H3605"\w* \w these|strong="H3605"\w* \w are|strong="H3068"\w* \w things|strong="H3605"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w hate|strong="H8130"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\p +\v 18 \w The|strong="H3068"\w* \w word|strong="H1697"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w came|strong="H1961"\w* \w to|strong="H3068"\w* \w me|strong="H1961"\w*. +\v 19 \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: “\w The|strong="H3541"\w* fasts \w of|strong="H1004"\w* \w the|strong="H3541"\w* \w fourth|strong="H7243"\w*, \w fifth|strong="H2549"\w*, \w seventh|strong="H7637"\w*, \w and|strong="H3063"\w* \w tenth|strong="H6224"\w* \w months|strong="H7637"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* \w for|strong="H3068"\w* \w the|strong="H3541"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w joy|strong="H8057"\w*, \w gladness|strong="H8057"\w*, \w and|strong="H3063"\w* \w cheerful|strong="H2896"\w* \w feasts|strong="H4150"\w*. \w Therefore|strong="H3068"\w* love truth \w and|strong="H3063"\w* \w peace|strong="H7965"\w*.” +\p +\v 20 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: “\w Many|strong="H7227"\w* \w peoples|strong="H5971"\w* \w and|strong="H3068"\w* \w the|strong="H3541"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w many|strong="H7227"\w* \w cities|strong="H5892"\w* \w will|strong="H3068"\w* \w yet|strong="H5750"\w* \w come|strong="H5971"\w*. +\v 21 \w The|strong="H6440"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w one|strong="H1571"\w* \w will|strong="H3068"\w* \w go|strong="H1980"\w* \w to|strong="H1980"\w* \w another|strong="H1571"\w*, saying, ‘\w Let|strong="H3212"\w*’s \w go|strong="H1980"\w* \w speedily|strong="H1980"\w* \w to|strong="H1980"\w* \w entreat|strong="H2470"\w* \w the|strong="H6440"\w* \w favor|strong="H6440"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*, \w and|strong="H1980"\w* \w to|strong="H1980"\w* \w seek|strong="H1245"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. \w I|strong="H1571"\w* \w will|strong="H3068"\w* \w go|strong="H1980"\w* \w also|strong="H1571"\w*.’ +\v 22 Yes, \w many|strong="H7227"\w* \w peoples|strong="H5971"\w* \w and|strong="H3068"\w* \w strong|strong="H6099"\w* \w nations|strong="H1471"\w* \w will|strong="H3068"\w* \w come|strong="H5971"\w* \w to|strong="H3068"\w* \w seek|strong="H1245"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w in|strong="H3068"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w entreat|strong="H2470"\w* \w the|strong="H6440"\w* \w favor|strong="H6440"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*.” +\v 23 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*: “\w In|strong="H3068"\w* \w those|strong="H1992"\w* \w days|strong="H3117"\w*, \w ten|strong="H6235"\w* \w men|strong="H3605"\w* \w out|strong="H2388"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w languages|strong="H3956"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w will|strong="H3068"\w* \w take|strong="H2388"\w* \w hold|strong="H2388"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w skirt|strong="H3671"\w* \w of|strong="H3068"\w* \w him|strong="H5973"\w* \w who|strong="H3605"\w* \w is|strong="H3068"\w* \w a|strong="H3068"\w* \w Jew|strong="H3064"\w*, saying, ‘\w We|strong="H3588"\w* \w will|strong="H3068"\w* \w go|strong="H3212"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*, \w for|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w heard|strong="H8085"\w* \w that|strong="H3588"\w* \w God|strong="H3068"\w* \w is|strong="H3068"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*.’” +\c 9 +\p +\v 1 \w A|strong="H3068"\w* revelation. +\q1 \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w is|strong="H3068"\w* \w against|strong="H1697"\w* \w the|strong="H3605"\w* land \w of|strong="H3068"\w* \w Hadrach|strong="H2317"\w*, +\q2 \w and|strong="H3478"\w* \w will|strong="H3068"\w* \w rest|strong="H4496"\w* \w upon|strong="H4853"\w* \w Damascus|strong="H1834"\w*— +\q1 \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w eye|strong="H5869"\w* \w of|strong="H3068"\w* \w man|strong="H3605"\w* +\q2 \w and|strong="H3478"\w* \w of|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w tribes|strong="H7626"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w* \w is|strong="H3068"\w* \w toward|strong="H3068"\w* \w Yahweh|strong="H3068"\w*— +\q1 +\v 2 \w and|strong="H3966"\w* \w Hamath|strong="H2574"\w*, \w also|strong="H1571"\w*, \w which|strong="H3588"\w* \w borders|strong="H1379"\w* \w on|strong="H1571"\w* \w it|strong="H3588"\w*, +\q2 \w Tyre|strong="H6865"\w* \w and|strong="H3966"\w* \w Sidon|strong="H6721"\w*, \w because|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H1571"\w* \w very|strong="H3966"\w* \w wise|strong="H2449"\w*. +\q1 +\v 3 \w Tyre|strong="H6865"\w* \w built|strong="H1129"\w* herself \w a|strong="H3068"\w* stronghold, +\q2 \w and|strong="H3701"\w* heaped \w up|strong="H1129"\w* \w silver|strong="H3701"\w* \w like|strong="H3701"\w* \w the|strong="H1129"\w* \w dust|strong="H6083"\w*, +\q2 \w and|strong="H3701"\w* \w fine|strong="H3701"\w* \w gold|strong="H2742"\w* \w like|strong="H3701"\w* \w the|strong="H1129"\w* \w mire|strong="H2916"\w* \w of|strong="H2351"\w* \w the|strong="H1129"\w* \w streets|strong="H2351"\w*. +\q1 +\v 4 \w Behold|strong="H2009"\w*, \w the|strong="H5221"\w* Lord \w will|strong="H1931"\w* \w dispossess|strong="H3423"\w* \w her|strong="H5221"\w*, +\q2 \w and|strong="H3220"\w* \w he|strong="H1931"\w* \w will|strong="H1931"\w* \w strike|strong="H5221"\w* \w her|strong="H5221"\w* \w power|strong="H2428"\w* \w in|strong="H3220"\w* \w the|strong="H5221"\w* \w sea|strong="H3220"\w*; +\q2 \w and|strong="H3220"\w* \w she|strong="H1931"\w* \w will|strong="H1931"\w* \w be|strong="H3220"\w* devoured \w with|strong="H3220"\w* fire. +\b +\q1 +\v 5 Ashkelon \w will|strong="H4428"\w* \w see|strong="H7200"\w* \w it|strong="H3588"\w*, \w and|strong="H4428"\w* \w fear|strong="H3372"\w*; +\q2 \w Gaza|strong="H5804"\w* \w also|strong="H4428"\w*, \w and|strong="H4428"\w* \w will|strong="H4428"\w* \w writhe|strong="H2342"\w* \w in|strong="H3427"\w* agony; +\q2 \w as|strong="H3588"\w* \w will|strong="H4428"\w* \w Ekron|strong="H6138"\w*, \w for|strong="H3588"\w* \w her|strong="H7200"\w* \w expectation|strong="H4007"\w* \w will|strong="H4428"\w* \w be|strong="H3808"\w* disappointed; +\q2 \w and|strong="H4428"\w* \w the|strong="H7200"\w* \w king|strong="H4428"\w* \w will|strong="H4428"\w* perish \w from|strong="H7200"\w* \w Gaza|strong="H5804"\w*, +\q2 \w and|strong="H4428"\w* Ashkelon \w will|strong="H4428"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w inhabited|strong="H3427"\w*. +\q1 +\v 6 Foreigners \w will|strong="H6430"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* Ashdod, +\q2 \w and|strong="H6430"\w* \w I|strong="H3772"\w* \w will|strong="H6430"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w the|strong="H3772"\w* \w pride|strong="H1347"\w* \w of|strong="H3427"\w* \w the|strong="H3772"\w* \w Philistines|strong="H6430"\w*. +\q1 +\v 7 \w I|strong="H1571"\w* \w will|strong="H1961"\w* \w take|strong="H5493"\w* \w away|strong="H5493"\w* \w his|strong="H5493"\w* \w blood|strong="H1818"\w* \w out|strong="H7604"\w* \w of|strong="H6310"\w* \w his|strong="H5493"\w* \w mouth|strong="H6310"\w*, +\q2 \w and|strong="H3063"\w* \w his|strong="H5493"\w* \w abominations|strong="H8251"\w* \w from|strong="H5493"\w* between \w his|strong="H5493"\w* \w teeth|strong="H8127"\w*; +\q1 \w and|strong="H3063"\w* \w he|strong="H1931"\w* \w also|strong="H1571"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w remnant|strong="H7604"\w* \w for|strong="H8127"\w* \w our|strong="H1961"\w* God; +\q2 \w and|strong="H3063"\w* \w he|strong="H1931"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* chieftain \w in|strong="H7604"\w* \w Judah|strong="H3063"\w*, +\q2 \w and|strong="H3063"\w* \w Ekron|strong="H6138"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w Jebusite|strong="H2983"\w*. +\q1 +\v 8 \w I|strong="H3588"\w* \w will|strong="H5869"\w* \w encamp|strong="H2583"\w* \w around|strong="H5921"\w* \w my|strong="H7200"\w* \w house|strong="H1004"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w army|strong="H4675"\w*, +\q2 \w that|strong="H3588"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w or|strong="H3808"\w* \w return|strong="H7725"\w*; +\q2 \w and|strong="H7725"\w* \w no|strong="H3808"\w* \w oppressor|strong="H5065"\w* \w will|strong="H5869"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w them|strong="H5921"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*: +\q2 \w for|strong="H3588"\w* \w now|strong="H6258"\w* \w I|strong="H3588"\w* \w have|strong="H5869"\w* \w seen|strong="H7200"\w* \w with|strong="H1004"\w* \w my|strong="H7200"\w* \w eyes|strong="H5869"\w*. +\b +\q1 +\v 9 \w Rejoice|strong="H1523"\w* \w greatly|strong="H3966"\w*, \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Zion|strong="H6726"\w*! +\q2 \w Shout|strong="H7321"\w*, \w daughter|strong="H1323"\w* \w of|strong="H1121"\w* \w Jerusalem|strong="H3389"\w*! +\q1 \w Behold|strong="H2009"\w*, \w your|strong="H5921"\w* \w King|strong="H4428"\w* comes \w to|strong="H5921"\w* \w you|strong="H5921"\w*! +\q2 \w He|strong="H1931"\w* \w is|strong="H1931"\w* \w righteous|strong="H6662"\w*, \w and|strong="H1121"\w* \w having|strong="H4428"\w* \w salvation|strong="H3467"\w*; +\q2 \w lowly|strong="H6041"\w*, \w and|strong="H1121"\w* \w riding|strong="H7392"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w donkey|strong="H2543"\w*, +\q2 \w even|strong="H5921"\w* \w on|strong="H5921"\w* \w a|strong="H3068"\w* \w colt|strong="H5895"\w*, \w the|strong="H5921"\w* \w foal|strong="H5895"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w donkey|strong="H2543"\w*. +\q1 +\v 10 \w I|strong="H5704"\w* \w will|strong="H1471"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w the|strong="H5704"\w* \w chariot|strong="H7393"\w* \w from|strong="H3772"\w* Ephraim +\q2 \w and|strong="H3389"\w* \w the|strong="H5704"\w* \w horse|strong="H5483"\w* \w from|strong="H3772"\w* \w Jerusalem|strong="H3389"\w*. +\q1 \w The|strong="H5704"\w* \w battle|strong="H4421"\w* \w bow|strong="H7198"\w* \w will|strong="H1471"\w* \w be|strong="H1471"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w*; +\q2 \w and|strong="H3389"\w* \w he|strong="H5704"\w* \w will|strong="H1471"\w* \w speak|strong="H1696"\w* \w peace|strong="H7965"\w* \w to|strong="H1696"\w* \w the|strong="H5704"\w* \w nations|strong="H1471"\w*. +\q1 \w His|strong="H3772"\w* \w dominion|strong="H4915"\w* \w will|strong="H1471"\w* \w be|strong="H1471"\w* \w from|strong="H3772"\w* \w sea|strong="H3220"\w* \w to|strong="H1696"\w* \w sea|strong="H3220"\w*, +\q2 \w and|strong="H3389"\w* \w from|strong="H3772"\w* \w the|strong="H5704"\w* \w River|strong="H5104"\w* \w to|strong="H1696"\w* \w the|strong="H5704"\w* \w ends|strong="H5704"\w* \w of|strong="H7393"\w* \w the|strong="H5704"\w* earth. +\b +\q1 +\v 11 \w As|strong="H1571"\w* \w for|strong="H7971"\w* \w you|strong="H7971"\w* \w also|strong="H1571"\w*, +\q2 because \w of|strong="H4325"\w* \w the|strong="H7971"\w* \w blood|strong="H1818"\w* \w of|strong="H4325"\w* \w your|strong="H7971"\w* \w covenant|strong="H1285"\w*, +\q2 \w I|strong="H1571"\w* \w have|strong="H1571"\w* \w set|strong="H7971"\w* \w free|strong="H7971"\w* \w your|strong="H7971"\w* prisoners \w from|strong="H7971"\w* \w the|strong="H7971"\w* pit \w in|strong="H7971"\w* \w which|strong="H4325"\w* \w is|strong="H1571"\w* \w no|strong="H7971"\w* \w water|strong="H4325"\w*. +\q1 +\v 12 \w Turn|strong="H7725"\w* \w to|strong="H7725"\w* \w the|strong="H3117"\w* \w stronghold|strong="H1225"\w*, \w you|strong="H3117"\w* prisoners \w of|strong="H3117"\w* \w hope|strong="H8615"\w*! +\q2 \w Even|strong="H1571"\w* \w today|strong="H3117"\w* \w I|strong="H3117"\w* \w declare|strong="H5046"\w* \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H1571"\w* \w restore|strong="H7725"\w* \w double|strong="H4932"\w* \w to|strong="H7725"\w* \w you|strong="H3117"\w*. +\q1 +\v 13 \w For|strong="H3588"\w* \w indeed|strong="H3588"\w* \w I|strong="H3588"\w* \w bend|strong="H1869"\w* \w Judah|strong="H3063"\w* \w as|strong="H3588"\w* \w a|strong="H3068"\w* \w bow|strong="H7198"\w* \w for|strong="H3588"\w* \w me|strong="H5921"\w*. +\q2 \w I|strong="H3588"\w* \w have|strong="H1121"\w* \w loaded|strong="H7760"\w* \w the|strong="H5921"\w* \w bow|strong="H7198"\w* \w with|strong="H4390"\w* Ephraim. +\q1 \w I|strong="H3588"\w* \w will|strong="H2719"\w* \w stir|strong="H5782"\w* \w up|strong="H5782"\w* \w your|strong="H5921"\w* \w sons|strong="H1121"\w*, \w Zion|strong="H6726"\w*, +\q2 \w against|strong="H5921"\w* \w your|strong="H5921"\w* \w sons|strong="H1121"\w*, \w Greece|strong="H3120"\w*, +\q2 \w and|strong="H1121"\w* \w will|strong="H2719"\w* \w make|strong="H7760"\w* \w you|strong="H3588"\w* \w like|strong="H1121"\w* \w the|strong="H5921"\w* \w sword|strong="H2719"\w* \w of|strong="H1121"\w* \w a|strong="H3068"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w*. +\b +\q1 +\v 14 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w seen|strong="H7200"\w* \w over|strong="H5921"\w* \w them|strong="H5921"\w*. +\q2 \w His|strong="H3068"\w* \w arrow|strong="H2671"\w* \w will|strong="H3068"\w* \w flash|strong="H1300"\w* \w like|strong="H3318"\w* \w lightning|strong="H1300"\w*. +\q1 \w The|strong="H5921"\w* \w Lord|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w blow|strong="H8628"\w* \w the|strong="H5921"\w* \w trumpet|strong="H7782"\w*, +\q2 \w and|strong="H1980"\w* \w will|strong="H3068"\w* \w go|strong="H1980"\w* \w with|strong="H1980"\w* \w whirlwinds|strong="H5591"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w south|strong="H8486"\w*. +\q1 +\v 15 \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w will|strong="H3068"\w* \w defend|strong="H1598"\w* \w them|strong="H5921"\w*. +\q2 \w They|strong="H3068"\w* \w will|strong="H3068"\w* destroy \w and|strong="H3068"\w* overcome \w with|strong="H4390"\w* \w sling|strong="H7050"\w* \w stones|strong="H2106"\w*. +\q1 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w drink|strong="H8354"\w*, \w and|strong="H3068"\w* \w roar|strong="H1993"\w* \w as|strong="H3644"\w* \w through|strong="H5921"\w* \w wine|strong="H3196"\w*. +\q2 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w filled|strong="H4390"\w* \w like|strong="H3644"\w* \w bowls|strong="H4219"\w*, +\q2 \w like|strong="H3644"\w* \w the|strong="H5921"\w* \w corners|strong="H2106"\w* \w of|strong="H3068"\w* \w the|strong="H5921"\w* \w altar|strong="H4196"\w*. +\b +\q1 +\v 16 \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w save|strong="H3467"\w* \w them|strong="H5921"\w* \w in|strong="H5921"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w* \w as|strong="H3117"\w* \w the|strong="H5921"\w* \w flock|strong="H6629"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w people|strong="H5971"\w*; +\q2 \w for|strong="H3588"\w* \w they|strong="H3588"\w* \w are|strong="H3117"\w* \w like|strong="H5921"\w* \w the|strong="H5921"\w* jewels \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w crown|strong="H5145"\w*, +\q2 \w lifted|strong="H5971"\w* \w on|strong="H5921"\w* high \w over|strong="H5921"\w* \w his|strong="H3068"\w* land. +\q1 +\v 17 \w For|strong="H3588"\w* \w how|strong="H4100"\w* great \w is|strong="H4100"\w* \w his|strong="H3588"\w* \w goodness|strong="H2898"\w*, +\q2 \w and|strong="H1715"\w* \w how|strong="H4100"\w* great \w is|strong="H4100"\w* \w his|strong="H3588"\w* \w beauty|strong="H3308"\w*! +\q1 \w Grain|strong="H1715"\w* \w will|strong="H4100"\w* \w make|strong="H3588"\w* \w the|strong="H3588"\w* young men \w flourish|strong="H5107"\w*, +\q2 \w and|strong="H1715"\w* \w new|strong="H8492"\w* \w wine|strong="H8492"\w* \w the|strong="H3588"\w* \w virgins|strong="H1330"\w*. +\c 10 +\q1 +\v 1 \w Ask|strong="H7592"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w rain|strong="H4306"\w* \w in|strong="H3068"\w* \w the|strong="H5414"\w* \w spring|strong="H4456"\w* \w time|strong="H6256"\w*, +\q2 \w Yahweh|strong="H3068"\w* \w who|strong="H3068"\w* \w makes|strong="H6213"\w* \w storm|strong="H2385"\w* \w clouds|strong="H2385"\w*, +\q2 \w and|strong="H3068"\w* \w he|strong="H6213"\w* \w gives|strong="H5414"\w* \w rain|strong="H4306"\w* \w showers|strong="H1653"\w* \w to|strong="H3068"\w* everyone \w for|strong="H6213"\w* \w the|strong="H5414"\w* \w plants|strong="H6212"\w* \w in|strong="H3068"\w* \w the|strong="H5414"\w* \w field|strong="H7704"\w*. +\q1 +\v 2 \w For|strong="H3588"\w* \w the|strong="H5921"\w* \w teraphim|strong="H8655"\w*\f + \fr 10:2 \ft teraphim were household idols that may have been associated with inheritance rights to the household property.\f* \w have|strong="H7462"\w* \w spoken|strong="H1696"\w* \w vanity|strong="H1892"\w*, +\q2 \w and|strong="H6629"\w* \w the|strong="H5921"\w* \w diviners|strong="H7080"\w* \w have|strong="H7462"\w* \w seen|strong="H2372"\w* \w a|strong="H3068"\w* \w lie|strong="H8267"\w*; +\q2 \w and|strong="H6629"\w* \w they|strong="H3588"\w* \w have|strong="H7462"\w* \w told|strong="H1696"\w* \w false|strong="H8267"\w* \w dreams|strong="H2472"\w*. +\q1 \w They|strong="H3588"\w* \w comfort|strong="H5162"\w* \w in|strong="H5921"\w* \w vain|strong="H7723"\w*. +\q2 \w Therefore|strong="H3651"\w* \w they|strong="H3588"\w* \w go|strong="H5265"\w* \w their|strong="H5921"\w* \w way|strong="H5265"\w* \w like|strong="H3644"\w* \w sheep|strong="H6629"\w*. +\q2 \w They|strong="H3588"\w* \w are|strong="H2472"\w* \w oppressed|strong="H6031"\w*, \w because|strong="H3588"\w* there \w is|strong="H3651"\w* \w no|strong="H1696"\w* \w shepherd|strong="H7462"\w*. +\b +\q1 +\v 3 \w My|strong="H3068"\w* anger \w is|strong="H3068"\w* \w kindled|strong="H2734"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w shepherds|strong="H7462"\w*, +\q2 \w and|strong="H3063"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w punish|strong="H6485"\w* \w the|strong="H5921"\w* \w male|strong="H6260"\w* \w goats|strong="H6260"\w*, +\q2 \w for|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w* \w has|strong="H3068"\w* \w visited|strong="H6485"\w* \w his|strong="H7760"\w* \w flock|strong="H5739"\w*, \w the|strong="H5921"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w*, +\q2 \w and|strong="H3063"\w* \w will|strong="H3068"\w* \w make|strong="H7760"\w* \w them|strong="H5921"\w* \w as|strong="H3068"\w* \w his|strong="H7760"\w* \w majestic|strong="H1935"\w* \w horse|strong="H5483"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w battle|strong="H4421"\w*. +\q1 +\v 4 \w From|strong="H4480"\w* \w him|strong="H3318"\w* \w will|strong="H7198"\w* \w come|strong="H3318"\w* \w the|strong="H3605"\w* \w cornerstone|strong="H6438"\w*, +\q2 \w from|strong="H4480"\w* \w him|strong="H3318"\w* \w the|strong="H3605"\w* \w tent|strong="H3489"\w* \w peg|strong="H3489"\w*, +\q2 \w from|strong="H4480"\w* \w him|strong="H3318"\w* \w the|strong="H3605"\w* \w battle|strong="H4421"\w* \w bow|strong="H7198"\w*, +\q2 \w from|strong="H4480"\w* \w him|strong="H3318"\w* \w every|strong="H3605"\w* \w ruler|strong="H5065"\w* \w together|strong="H3162"\w*. +\q2 +\v 5 \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w mighty|strong="H1368"\w* \w men|strong="H1368"\w*, +\q2 treading \w down|strong="H3588"\w* muddy \w streets|strong="H2351"\w* \w in|strong="H3068"\w* \w the|strong="H3588"\w* \w battle|strong="H4421"\w*. +\q1 \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w fight|strong="H3898"\w*, \w because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w with|strong="H5973"\w* \w them|strong="H1961"\w*. +\q2 \w The|strong="H3588"\w* \w riders|strong="H7392"\w* \w on|strong="H7392"\w* \w horses|strong="H5483"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w confounded|strong="H3001"\w*. +\b +\q1 +\v 6 “\w I|strong="H3588"\w* \w will|strong="H3068"\w* \w strengthen|strong="H1396"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w*, +\q2 \w and|strong="H3063"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w save|strong="H3467"\w* \w the|strong="H3588"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Joseph|strong="H3130"\w*. +\q1 \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w bring|strong="H7725"\w* \w them|strong="H7725"\w* \w back|strong="H7725"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w mercy|strong="H7355"\w* \w on|strong="H3068"\w* \w them|strong="H7725"\w*. +\q1 \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w as|strong="H1961"\w* \w though|strong="H3588"\w* \w I|strong="H3588"\w* \w had|strong="H3068"\w* \w not|strong="H3808"\w* \w cast|strong="H3068"\w* \w them|strong="H7725"\w* \w off|strong="H2186"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H1961"\w* \w Yahweh|strong="H3068"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*, \w and|strong="H3063"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w hear|strong="H6030"\w* \w them|strong="H7725"\w*. +\q1 +\v 7 Ephraim \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w like|strong="H3644"\w* \w a|strong="H3068"\w* \w mighty|strong="H1368"\w* \w man|strong="H1368"\w*, +\q2 \w and|strong="H1121"\w* \w their|strong="H3068"\w* \w heart|strong="H3820"\w* \w will|strong="H3068"\w* \w rejoice|strong="H8055"\w* \w as|strong="H1961"\w* \w through|strong="H7200"\w* \w wine|strong="H3196"\w*. +\q1 \w Yes|strong="H7200"\w*, \w their|strong="H3068"\w* \w children|strong="H1121"\w* \w will|strong="H3068"\w* \w see|strong="H7200"\w* \w it|strong="H7200"\w* \w and|strong="H1121"\w* \w rejoice|strong="H8055"\w*. +\q2 \w Their|strong="H3068"\w* \w heart|strong="H3820"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w glad|strong="H8055"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*. +\q1 +\v 8 \w I|strong="H3588"\w* \w will|strong="H3588"\w* signal \w for|strong="H3588"\w* \w them|strong="H3588"\w* \w and|strong="H7235"\w* \w gather|strong="H6908"\w* \w them|strong="H3588"\w*, +\q2 \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H3588"\w* \w redeemed|strong="H6299"\w* \w them|strong="H3588"\w*. +\q2 \w They|strong="H3588"\w* \w will|strong="H3588"\w* \w increase|strong="H7235"\w* \w as|strong="H3644"\w* \w they|strong="H3588"\w* \w were|strong="H3644"\w* before. +\q1 +\v 9 \w I|strong="H2142"\w* \w will|strong="H5971"\w* \w sow|strong="H2232"\w* \w them|strong="H7725"\w* \w among|strong="H5971"\w* \w the|strong="H7725"\w* \w peoples|strong="H5971"\w*. +\q2 \w They|strong="H5971"\w* \w will|strong="H5971"\w* \w remember|strong="H2142"\w* \w me|strong="H7725"\w* \w in|strong="H1121"\w* \w far|strong="H4801"\w* \w countries|strong="H4801"\w*. +\q2 \w They|strong="H5971"\w* \w will|strong="H5971"\w* \w live|strong="H2421"\w* \w with|strong="H5971"\w* \w their|strong="H7725"\w* \w children|strong="H1121"\w* \w and|strong="H1121"\w* \w will|strong="H5971"\w* \w return|strong="H7725"\w*. +\q1 +\v 10 \w I|strong="H4714"\w* \w will|strong="H4714"\w* \w bring|strong="H7725"\w* \w them|strong="H7725"\w* \w again|strong="H7725"\w* also \w out|strong="H4672"\w* \w of|strong="H3808"\w* \w the|strong="H7725"\w* land \w of|strong="H3808"\w* \w Egypt|strong="H4714"\w*, +\q2 \w and|strong="H7725"\w* \w gather|strong="H6908"\w* \w them|strong="H7725"\w* \w out|strong="H4672"\w* \w of|strong="H3808"\w* Assyria. +\q1 \w I|strong="H4714"\w* \w will|strong="H4714"\w* \w bring|strong="H7725"\w* \w them|strong="H7725"\w* \w into|strong="H7725"\w* \w the|strong="H7725"\w* land \w of|strong="H3808"\w* \w Gilead|strong="H1568"\w* \w and|strong="H7725"\w* \w Lebanon|strong="H3844"\w*; +\q2 \w and|strong="H7725"\w* \w there|strong="H4672"\w* won’t \w be|strong="H3808"\w* room \w enough|strong="H4672"\w* \w for|strong="H4714"\w* \w them|strong="H7725"\w*. +\q1 +\v 11 \w He|strong="H3605"\w* \w will|strong="H4714"\w* \w pass|strong="H5674"\w* \w through|strong="H5674"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w* \w of|strong="H7626"\w* \w affliction|strong="H6869"\w*, +\q2 \w and|strong="H4714"\w* \w will|strong="H4714"\w* \w strike|strong="H5221"\w* \w the|strong="H3605"\w* \w waves|strong="H1530"\w* \w in|strong="H5493"\w* \w the|strong="H3605"\w* \w sea|strong="H3220"\w*, +\q2 \w and|strong="H4714"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w depths|strong="H4688"\w* \w of|strong="H7626"\w* \w the|strong="H3605"\w* \w Nile|strong="H2975"\w* \w will|strong="H4714"\w* \w dry|strong="H3001"\w* \w up|strong="H3001"\w*; +\q2 \w and|strong="H4714"\w* \w the|strong="H3605"\w* \w pride|strong="H1347"\w* \w of|strong="H7626"\w* Assyria \w will|strong="H4714"\w* \w be|strong="H3220"\w* \w brought|strong="H3381"\w* \w down|strong="H3381"\w*, +\q2 \w and|strong="H4714"\w* \w the|strong="H3605"\w* \w scepter|strong="H7626"\w* \w of|strong="H7626"\w* \w Egypt|strong="H4714"\w* \w will|strong="H4714"\w* \w depart|strong="H5493"\w*. +\q1 +\v 12 \w I|strong="H1980"\w* \w will|strong="H3068"\w* \w strengthen|strong="H1396"\w* \w them|strong="H3068"\w* \w in|strong="H1980"\w* \w Yahweh|strong="H3068"\w*. +\q2 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w walk|strong="H1980"\w* \w up|strong="H1980"\w* \w and|strong="H1980"\w* \w down|strong="H1980"\w* \w in|strong="H1980"\w* \w his|strong="H3068"\w* \w name|strong="H8034"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\c 11 +\q1 +\v 1 \w Open|strong="H6605"\w* \w your|strong="H6605"\w* \w doors|strong="H1817"\w*, \w Lebanon|strong="H3844"\w*, +\q2 that \w the|strong="H6605"\w* fire may devour \w your|strong="H6605"\w* cedars. +\q1 +\v 2 \w Wail|strong="H3213"\w*, \w cypress|strong="H1265"\w* \w tree|strong="H1265"\w*, \w for|strong="H3588"\w* \w the|strong="H3588"\w* cedar \w has|strong="H3588"\w* \w fallen|strong="H5307"\w*, +\q2 \w because|strong="H3588"\w* \w the|strong="H3588"\w* stately ones \w are|strong="H7703"\w* \w destroyed|strong="H7703"\w*. +\q1 \w Wail|strong="H3213"\w*, \w you|strong="H3588"\w* oaks \w of|strong="H3293"\w* \w Bashan|strong="H1316"\w*, +\q2 \w for|strong="H3588"\w* \w the|strong="H3588"\w* strong \w forest|strong="H3293"\w* \w has|strong="H3588"\w* \w come|strong="H3381"\w* \w down|strong="H3381"\w*. +\q1 +\v 3 \w A|strong="H3068"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H3588"\w* \w wailing|strong="H3215"\w* \w of|strong="H6963"\w* \w the|strong="H3588"\w* \w shepherds|strong="H7462"\w*! +\q2 \w For|strong="H3588"\w* \w their|strong="H3588"\w* \w glory|strong="H1347"\w* \w is|strong="H6963"\w* \w destroyed|strong="H7703"\w*—\w a|strong="H3068"\w* \w voice|strong="H6963"\w* \w of|strong="H6963"\w* \w the|strong="H3588"\w* \w roaring|strong="H7581"\w* \w of|strong="H6963"\w* \w young|strong="H3715"\w* \w lions|strong="H3715"\w*! +\q2 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w pride|strong="H1347"\w* \w of|strong="H6963"\w* \w the|strong="H3588"\w* \w Jordan|strong="H3383"\w* \w is|strong="H6963"\w* \w ruined|strong="H7703"\w*. +\p +\v 4 \w Yahweh|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w* \w says|strong="H3541"\w*: “\w Feed|strong="H7462"\w* \w the|strong="H3541"\w* \w flock|strong="H6629"\w* \w of|strong="H3068"\w* \w slaughter|strong="H2028"\w*. +\v 5 \w Their|strong="H3068"\w* buyers \w slaughter|strong="H2026"\w* \w them|strong="H5921"\w* \w and|strong="H3068"\w* \w go|strong="H3068"\w* \w unpunished|strong="H3808"\w*. \w Those|strong="H5921"\w* \w who|strong="H3068"\w* \w sell|strong="H4376"\w* \w them|strong="H5921"\w* say, ‘\w Blessed|strong="H1288"\w* \w be|strong="H3808"\w* \w Yahweh|strong="H3068"\w*, \w for|strong="H5921"\w* \w I|strong="H5921"\w* \w am|strong="H3068"\w* \w rich|strong="H6238"\w*;’ \w and|strong="H3068"\w* \w their|strong="H3068"\w* own \w shepherds|strong="H7462"\w* don’t \w pity|strong="H2550"\w* \w them|strong="H5921"\w*. +\v 6 \w For|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w pity|strong="H2550"\w* \w the|strong="H5002"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H4428"\w* \w the|strong="H5002"\w* land,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*; “\w but|strong="H3588"\w*, \w behold|strong="H2009"\w*, \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w deliver|strong="H5337"\w* \w every|strong="H3068"\w* \w one|strong="H3808"\w* \w of|strong="H4428"\w* \w the|strong="H5002"\w* men \w into|strong="H5921"\w* \w his|strong="H3068"\w* \w neighbor|strong="H7453"\w*’s \w hand|strong="H3027"\w* \w and|strong="H3068"\w* \w into|strong="H5921"\w* \w the|strong="H5002"\w* \w hand|strong="H3027"\w* \w of|strong="H4428"\w* \w his|strong="H3068"\w* \w king|strong="H4428"\w*. \w They|strong="H3588"\w* \w will|strong="H3068"\w* \w strike|strong="H3807"\w* \w the|strong="H5002"\w* land, \w and|strong="H3068"\w* \w out|strong="H4672"\w* \w of|strong="H4428"\w* \w their|strong="H3068"\w* \w hand|strong="H3027"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w deliver|strong="H5337"\w* \w them|strong="H5921"\w*.” +\p +\v 7 \w So|strong="H3651"\w* \w I|strong="H3651"\w* \w fed|strong="H7462"\w* \w the|strong="H3947"\w* \w flock|strong="H6629"\w* \w to|strong="H7121"\w* \w be|strong="H2256"\w* slaughtered, especially \w the|strong="H3947"\w* \w oppressed|strong="H6041"\w* \w of|strong="H6629"\w* \w the|strong="H3947"\w* \w flock|strong="H6629"\w*. \w I|strong="H3651"\w* \w took|strong="H3947"\w* \w for|strong="H7121"\w* myself \w two|strong="H8147"\w* \w staffs|strong="H4731"\w*. \w The|strong="H3947"\w* \w one|strong="H8147"\w* \w I|strong="H3651"\w* \w called|strong="H7121"\w* “\w Favor|strong="H5278"\w*” \w and|strong="H6041"\w* \w the|strong="H3947"\w* \w other|strong="H8147"\w* \w I|strong="H3651"\w* \w called|strong="H7121"\w* “Union”, \w and|strong="H6041"\w* \w I|strong="H3651"\w* \w fed|strong="H7462"\w* \w the|strong="H3947"\w* \w flock|strong="H6629"\w*. +\v 8 \w I|strong="H5315"\w* \w cut|strong="H3582"\w* \w off|strong="H3582"\w* \w the|strong="H1571"\w* \w three|strong="H7969"\w* \w shepherds|strong="H7462"\w* \w in|strong="H5315"\w* \w one|strong="H1571"\w* \w month|strong="H3391"\w*; \w for|strong="H5315"\w* \w my|strong="H7462"\w* \w soul|strong="H5315"\w* \w was|strong="H5315"\w* weary \w of|strong="H5315"\w* \w them|strong="H7462"\w*, \w and|strong="H5315"\w* \w their|strong="H1571"\w* \w soul|strong="H5315"\w* \w also|strong="H1571"\w* loathed \w me|strong="H5315"\w*. +\v 9 \w Then|strong="H3808"\w* \w I|strong="H3808"\w* said, “\w I|strong="H3808"\w* \w will|strong="H1320"\w* \w not|strong="H3808"\w* \w feed|strong="H7462"\w* \w you|strong="H3808"\w*. \w That|strong="H1320"\w* \w which|strong="H4191"\w* \w dies|strong="H4191"\w*, \w let|strong="H7604"\w* \w it|strong="H3808"\w* \w die|strong="H4191"\w*; \w and|strong="H4191"\w* \w that|strong="H1320"\w* \w which|strong="H4191"\w* \w is|strong="H1320"\w* \w to|strong="H4191"\w* \w be|strong="H4191"\w* \w cut|strong="H3582"\w* \w off|strong="H3582"\w*, \w let|strong="H7604"\w* \w it|strong="H3808"\w* \w be|strong="H4191"\w* \w cut|strong="H3582"\w* \w off|strong="H3582"\w*; \w and|strong="H4191"\w* \w let|strong="H7604"\w* those \w who|strong="H7604"\w* \w are|strong="H1320"\w* \w left|strong="H7604"\w* \w eat|strong="H7462"\w* each other’s \w flesh|strong="H1320"\w*.” +\v 10 \w I|strong="H3772"\w* \w took|strong="H3947"\w* \w my|strong="H3605"\w* \w staff|strong="H4731"\w* \w Favor|strong="H5278"\w* \w and|strong="H5971"\w* \w cut|strong="H3772"\w* \w it|strong="H3947"\w* apart, \w that|strong="H5971"\w* \w I|strong="H3772"\w* \w might|strong="H5971"\w* \w break|strong="H6565"\w* \w my|strong="H3605"\w* \w covenant|strong="H1285"\w* \w that|strong="H5971"\w* \w I|strong="H3772"\w* \w had|strong="H5971"\w* \w made|strong="H3772"\w* \w with|strong="H1285"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w*. +\v 11 \w It|strong="H1931"\w* \w was|strong="H3068"\w* \w broken|strong="H6565"\w* \w in|strong="H3068"\w* \w that|strong="H3588"\w* \w day|strong="H3117"\w*; \w and|strong="H3068"\w* \w thus|strong="H3651"\w* \w the|strong="H3588"\w* \w poor|strong="H6041"\w* \w of|strong="H3068"\w* \w the|strong="H3588"\w* \w flock|strong="H6629"\w* \w that|strong="H3588"\w* listened \w to|strong="H3068"\w* \w me|strong="H8104"\w* \w knew|strong="H3045"\w* \w that|strong="H3588"\w* \w it|strong="H1931"\w* \w was|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w*. +\v 12 \w I|strong="H3808"\w* said \w to|strong="H5869"\w* them, “If \w you|strong="H3808"\w* \w think|strong="H5869"\w* \w it|strong="H3808"\w* \w best|strong="H2896"\w*, \w give|strong="H3051"\w* \w me|strong="H3051"\w* \w my|strong="H2308"\w* \w wages|strong="H7939"\w*; \w and|strong="H3701"\w* if \w not|strong="H3808"\w*, keep them.” \w So|strong="H3808"\w* \w they|strong="H3808"\w* \w weighed|strong="H8254"\w* \w for|strong="H5869"\w* \w my|strong="H2308"\w* \w wages|strong="H7939"\w* \w thirty|strong="H7970"\w* pieces \w of|strong="H5869"\w* \w silver|strong="H3701"\w*. +\v 13 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w me|strong="H5921"\w*, “\w Throw|strong="H7993"\w* \w it|strong="H5921"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w potter|strong="H3335"\w*—\w the|strong="H5921"\w* handsome \w price|strong="H3701"\w* \w that|strong="H3068"\w* \w I|strong="H5921"\w* \w was|strong="H3068"\w* \w valued|strong="H3365"\w* \w at|strong="H5921"\w* \w by|strong="H5921"\w* \w them|strong="H5921"\w*!” \w I|strong="H5921"\w* \w took|strong="H3947"\w* \w the|strong="H5921"\w* \w thirty|strong="H7970"\w* pieces \w of|strong="H1004"\w* \w silver|strong="H3701"\w* \w and|strong="H3068"\w* \w threw|strong="H7993"\w* \w them|strong="H5921"\w* \w to|strong="H3068"\w* \w the|strong="H5921"\w* \w potter|strong="H3335"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w*. +\v 14 \w Then|strong="H3063"\w* \w I|strong="H3478"\w* \w cut|strong="H1438"\w* apart \w my|strong="H6565"\w* \w other|strong="H8145"\w* \w staff|strong="H4731"\w*, Union, \w that|strong="H3478"\w* \w I|strong="H3478"\w* \w might|strong="H3478"\w* \w break|strong="H6565"\w* \w the|strong="H6565"\w* brotherhood between \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Israel|strong="H3478"\w*. +\p +\v 15 \w Yahweh|strong="H3068"\w* said \w to|strong="H3068"\w* \w me|strong="H3947"\w*, “\w Take|strong="H3947"\w* \w for|strong="H3068"\w* yourself \w yet|strong="H5750"\w* \w again|strong="H5750"\w* \w the|strong="H3947"\w* \w equipment|strong="H3627"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* foolish \w shepherd|strong="H7462"\w*. +\v 16 \w For|strong="H3588"\w*, \w behold|strong="H2009"\w*, \w I|strong="H3588"\w* \w will|strong="H1320"\w* \w raise|strong="H6965"\w* \w up|strong="H6965"\w* \w a|strong="H3068"\w* \w shepherd|strong="H7462"\w* \w in|strong="H1320"\w* \w the|strong="H3588"\w* land \w who|strong="H3588"\w* \w will|strong="H1320"\w* \w not|strong="H3808"\w* \w visit|strong="H6485"\w* \w those|strong="H3588"\w* \w who|strong="H3588"\w* \w are|strong="H1245"\w* \w cut|strong="H3582"\w* \w off|strong="H3582"\w*, \w neither|strong="H3808"\w* \w will|strong="H1320"\w* \w seek|strong="H1245"\w* \w those|strong="H3588"\w* \w who|strong="H3588"\w* \w are|strong="H1245"\w* \w scattered|strong="H5289"\w*, \w nor|strong="H3808"\w* \w heal|strong="H7495"\w* \w that|strong="H3588"\w* \w which|strong="H6485"\w* \w is|strong="H2009"\w* \w broken|strong="H7665"\w*, \w nor|strong="H3808"\w* \w feed|strong="H7462"\w* \w that|strong="H3588"\w* \w which|strong="H6485"\w* \w is|strong="H2009"\w* sound; \w but|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H1320"\w* \w eat|strong="H7462"\w* \w the|strong="H3588"\w* \w meat|strong="H1320"\w* \w of|strong="H1320"\w* \w the|strong="H3588"\w* \w fat|strong="H1277"\w* \w sheep|strong="H6561"\w*, \w and|strong="H6965"\w* \w will|strong="H1320"\w* \w tear|strong="H6561"\w* \w their|strong="H1245"\w* \w hoofs|strong="H6541"\w* \w in|strong="H1320"\w* \w pieces|strong="H7665"\w*. +\v 17 \w Woe|strong="H1945"\w* \w to|strong="H5921"\w* \w the|strong="H5921"\w* worthless \w shepherd|strong="H7473"\w* \w who|strong="H1945"\w* \w leaves|strong="H5800"\w* \w the|strong="H5921"\w* \w flock|strong="H6629"\w*! \w The|strong="H5921"\w* \w sword|strong="H2719"\w* \w will|strong="H5869"\w* strike \w his|strong="H5921"\w* \w arm|strong="H2220"\w* \w and|strong="H5869"\w* \w his|strong="H5921"\w* \w right|strong="H3225"\w* \w eye|strong="H5869"\w*. \w His|strong="H5921"\w* \w arm|strong="H2220"\w* \w will|strong="H5869"\w* \w be|strong="H5869"\w* \w completely|strong="H3001"\w* \w withered|strong="H3001"\w*, \w and|strong="H5869"\w* \w his|strong="H5921"\w* \w right|strong="H3225"\w* \w eye|strong="H5869"\w* \w will|strong="H5869"\w* \w be|strong="H5869"\w* \w totally|strong="H3001"\w* blinded!” +\c 12 +\p +\v 1 \w A|strong="H3068"\w* revelation \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w word|strong="H1697"\w* \w concerning|strong="H5921"\w* \w Israel|strong="H3478"\w*: \w Yahweh|strong="H3068"\w*, \w who|strong="H3068"\w* \w stretches|strong="H5186"\w* \w out|strong="H5186"\w* \w the|strong="H5002"\w* \w heavens|strong="H8064"\w* \w and|strong="H3478"\w* \w lays|strong="H3245"\w* \w the|strong="H5002"\w* \w foundation|strong="H3245"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* \w earth|strong="H8064"\w*, \w and|strong="H3478"\w* \w forms|strong="H3335"\w* \w the|strong="H5002"\w* \w spirit|strong="H7307"\w* \w of|strong="H3068"\w* man \w within|strong="H7130"\w* \w him|strong="H5921"\w* \w says|strong="H5002"\w*: +\v 2 “\w Behold|strong="H2009"\w*, \w I|strong="H2009"\w* \w will|strong="H1961"\w* \w make|strong="H7760"\w* \w Jerusalem|strong="H3389"\w* \w a|strong="H3068"\w* \w cup|strong="H5592"\w* \w of|strong="H5971"\w* \w reeling|strong="H7478"\w* \w to|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w surrounding|strong="H5439"\w* \w peoples|strong="H5971"\w*, \w and|strong="H3063"\w* \w it|strong="H7760"\w* \w will|strong="H1961"\w* \w also|strong="H1571"\w* \w be|strong="H1961"\w* \w on|strong="H5921"\w* \w Judah|strong="H3063"\w* \w in|strong="H5921"\w* \w the|strong="H3605"\w* \w siege|strong="H4692"\w* \w against|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*. +\v 3 \w It|strong="H7760"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w in|strong="H5921"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w* \w that|strong="H5971"\w* \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w make|strong="H7760"\w* \w Jerusalem|strong="H3389"\w* \w a|strong="H3068"\w* \w burdensome|strong="H6006"\w* stone \w for|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w*. \w All|strong="H3605"\w* \w who|strong="H3605"\w* \w burden|strong="H6006"\w* \w themselves|strong="H7760"\w* \w with|strong="H5921"\w* \w it|strong="H7760"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w severely|strong="H8295"\w* wounded, \w and|strong="H3117"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w of|strong="H3117"\w* \w the|strong="H3605"\w* earth \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w gathered|strong="H1471"\w* \w together|strong="H5921"\w* \w against|strong="H5921"\w* \w it|strong="H7760"\w*. +\v 4 \w In|strong="H5921"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w I|strong="H3117"\w* \w will|strong="H3068"\w* \w strike|strong="H5221"\w* \w every|strong="H3605"\w* \w horse|strong="H5483"\w* \w with|strong="H1004"\w* terror \w and|strong="H3063"\w* \w his|strong="H3605"\w* \w rider|strong="H7392"\w* \w with|strong="H1004"\w* \w madness|strong="H7697"\w*. \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w open|strong="H6491"\w* \w my|strong="H3605"\w* \w eyes|strong="H5869"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Judah|strong="H3063"\w*, \w and|strong="H3063"\w* \w will|strong="H3068"\w* \w strike|strong="H5221"\w* \w every|strong="H3605"\w* \w horse|strong="H5483"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w with|strong="H1004"\w* \w blindness|strong="H5788"\w*. +\v 5 \w The|strong="H3068"\w* chieftains \w of|strong="H3068"\w* \w Judah|strong="H3063"\w* \w will|strong="H3068"\w* say \w in|strong="H3427"\w* \w their|strong="H3068"\w* \w heart|strong="H3820"\w*, ‘\w The|strong="H3068"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H3068"\w* \w Jerusalem|strong="H3389"\w* \w are|strong="H3068"\w* \w my|strong="H3068"\w* strength \w in|strong="H3427"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w their|strong="H3068"\w* \w God|strong="H3068"\w*.’ +\p +\v 6 \w In|strong="H3427"\w* \w that|strong="H5971"\w* \w day|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H5971"\w* \w make|strong="H7760"\w* \w the|strong="H3605"\w* chieftains \w of|strong="H3117"\w* \w Judah|strong="H3063"\w* \w like|strong="H5921"\w* \w a|strong="H3068"\w* \w pan|strong="H3595"\w* \w of|strong="H3117"\w* fire \w among|strong="H5921"\w* \w wood|strong="H6086"\w*, \w and|strong="H3063"\w* \w like|strong="H5921"\w* \w a|strong="H3068"\w* flaming \w torch|strong="H3940"\w* \w among|strong="H5921"\w* \w sheaves|strong="H5995"\w*. \w They|strong="H3117"\w* \w will|strong="H5971"\w* devour \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w surrounding|strong="H5439"\w* \w peoples|strong="H5971"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w right|strong="H3225"\w* \w hand|strong="H3225"\w* \w and|strong="H3063"\w* \w on|strong="H5921"\w* \w the|strong="H3605"\w* \w left|strong="H8040"\w*; \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w* \w will|strong="H5971"\w* \w yet|strong="H5750"\w* \w again|strong="H5750"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w their|strong="H3605"\w* \w own|strong="H5971"\w* \w place|strong="H8478"\w*, \w even|strong="H5750"\w* \w in|strong="H3427"\w* \w Jerusalem|strong="H3389"\w*. +\p +\v 7 \w Yahweh|strong="H3068"\w* \w also|strong="H3068"\w* \w will|strong="H3068"\w* \w save|strong="H3467"\w* \w the|strong="H5921"\w* tents \w of|strong="H1004"\w* \w Judah|strong="H3063"\w* \w first|strong="H7223"\w*, \w that|strong="H3068"\w* \w the|strong="H5921"\w* \w glory|strong="H8597"\w* \w of|strong="H1004"\w* \w David|strong="H1732"\w*’s \w house|strong="H1004"\w* \w and|strong="H3063"\w* \w the|strong="H5921"\w* \w glory|strong="H8597"\w* \w of|strong="H1004"\w* \w the|strong="H5921"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1004"\w* \w Jerusalem|strong="H3389"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w magnified|strong="H1431"\w* \w above|strong="H5921"\w* \w Judah|strong="H3063"\w*. +\v 8 \w In|strong="H3427"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w defend|strong="H1598"\w* \w the|strong="H6440"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1004"\w* \w Jerusalem|strong="H3389"\w*. \w He|strong="H1931"\w* \w who|strong="H1931"\w* \w is|strong="H3068"\w* \w feeble|strong="H3782"\w* \w among|strong="H3427"\w* \w them|strong="H6440"\w* \w at|strong="H3427"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w David|strong="H1732"\w*, \w and|strong="H3068"\w* \w David|strong="H1732"\w*’s \w house|strong="H1004"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w God|strong="H3068"\w*, \w like|strong="H1961"\w* \w Yahweh|strong="H3068"\w*’s \w angel|strong="H4397"\w* \w before|strong="H6440"\w* \w them|strong="H6440"\w*. +\v 9 \w It|strong="H1931"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w in|strong="H5921"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w*, \w that|strong="H3605"\w* \w I|strong="H3117"\w* \w will|strong="H1961"\w* \w seek|strong="H1245"\w* \w to|strong="H1961"\w* \w destroy|strong="H8045"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w that|strong="H3605"\w* \w come|strong="H1961"\w* \w against|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*. +\p +\v 10 \w I|strong="H5921"\w* \w will|strong="H1004"\w* \w pour|strong="H8210"\w* \w on|strong="H5921"\w* \w David|strong="H1732"\w*’s \w house|strong="H1004"\w* \w and|strong="H1004"\w* \w on|strong="H5921"\w* \w the|strong="H5921"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1004"\w* \w Jerusalem|strong="H3389"\w* \w the|strong="H5921"\w* \w spirit|strong="H7307"\w* \w of|strong="H1004"\w* \w grace|strong="H2580"\w* \w and|strong="H1004"\w* \w of|strong="H1004"\w* \w supplication|strong="H8469"\w*. \w They|strong="H5921"\w* \w will|strong="H1004"\w* \w look|strong="H5027"\w* \w to|strong="H5921"\w* \w me|strong="H5921"\w*\f + \fr 12:10 \ft After “me”, the Hebrew has the two letters “Aleph Tav” (the first and last letters of the Hebrew alphabet), not as a word, but as a grammatical marker.\f* whom \w they|strong="H5921"\w* \w have|strong="H3389"\w* \w pierced|strong="H1856"\w*; \w and|strong="H1004"\w* \w they|strong="H5921"\w* \w shall|strong="H1004"\w* \w mourn|strong="H5594"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w* \w as|strong="H3389"\w* \w one|strong="H3173"\w* \w mourns|strong="H5594"\w* \w for|strong="H5921"\w* \w his|strong="H1732"\w* \w only|strong="H3173"\w* \w son|strong="H3173"\w*, \w and|strong="H1004"\w* \w will|strong="H1004"\w* grieve \w bitterly|strong="H4843"\w* \w for|strong="H5921"\w* \w him|strong="H5921"\w* \w as|strong="H3389"\w* \w one|strong="H3173"\w* grieves \w for|strong="H5921"\w* \w his|strong="H1732"\w* \w firstborn|strong="H1060"\w*. +\v 11 \w In|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w there|strong="H3117"\w* \w will|strong="H3389"\w* \w be|strong="H3117"\w* \w a|strong="H3068"\w* \w great|strong="H1431"\w* \w mourning|strong="H4553"\w* \w in|strong="H3117"\w* \w Jerusalem|strong="H3389"\w*, \w like|strong="H3117"\w* \w the|strong="H3117"\w* \w mourning|strong="H4553"\w* \w of|strong="H3117"\w* \w Hadadrimmon|strong="H1910"\w* \w in|strong="H3117"\w* \w the|strong="H3117"\w* \w valley|strong="H1237"\w* \w of|strong="H3117"\w* \w Megiddo|strong="H4023"\w*. +\v 12 \w The|strong="H1732"\w* \w land|strong="H4940"\w* \w will|strong="H1004"\w* \w mourn|strong="H5594"\w*, \w every|strong="H4940"\w* \w family|strong="H4940"\w* apart; \w the|strong="H1732"\w* \w family|strong="H4940"\w* \w of|strong="H1004"\w* \w David|strong="H1732"\w*’s \w house|strong="H1004"\w* apart, \w and|strong="H1004"\w* \w their|strong="H1732"\w* wives apart; \w the|strong="H1732"\w* \w family|strong="H4940"\w* \w of|strong="H1004"\w* \w the|strong="H1732"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Nathan|strong="H5416"\w* apart, \w and|strong="H1004"\w* \w their|strong="H1732"\w* wives apart; +\v 13 \w the|strong="H1004"\w* \w family|strong="H4940"\w* \w of|strong="H1004"\w* \w the|strong="H1004"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Levi|strong="H3878"\w* apart, \w and|strong="H1004"\w* their wives apart; \w the|strong="H1004"\w* \w family|strong="H4940"\w* \w of|strong="H1004"\w* \w the|strong="H1004"\w* \w Shimeites|strong="H8097"\w* apart, \w and|strong="H1004"\w* their wives apart; +\v 14 \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w families|strong="H4940"\w* \w who|strong="H3605"\w* \w remain|strong="H7604"\w*, \w every|strong="H3605"\w* \w family|strong="H4940"\w* apart, \w and|strong="H3605"\w* \w their|strong="H3605"\w* wives apart. +\c 13 +\p +\v 1 “\w In|strong="H3427"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w there|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w fountain|strong="H4726"\w* \w opened|strong="H6605"\w* \w to|strong="H1961"\w* \w David|strong="H1732"\w*’s \w house|strong="H1004"\w* \w and|strong="H3117"\w* \w to|strong="H1961"\w* \w the|strong="H3117"\w* \w inhabitants|strong="H3427"\w* \w of|strong="H1004"\w* \w Jerusalem|strong="H3389"\w*, \w for|strong="H3427"\w* \w sin|strong="H2403"\w* \w and|strong="H3117"\w* \w for|strong="H3427"\w* \w uncleanness|strong="H5079"\w*. +\p +\v 2 \w It|strong="H1931"\w* \w will|strong="H3068"\w* \w come|strong="H1961"\w* \w to|strong="H3068"\w* \w pass|strong="H5674"\w* \w in|strong="H3068"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w*, \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w the|strong="H5002"\w* \w names|strong="H8034"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* \w idols|strong="H6091"\w* \w out|strong="H4480"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* land, \w and|strong="H3068"\w* \w they|strong="H3117"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w remembered|strong="H2142"\w* \w no|strong="H3808"\w* \w more|strong="H4480"\w*. \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w also|strong="H1571"\w* \w cause|strong="H1961"\w* \w the|strong="H5002"\w* \w prophets|strong="H5030"\w* \w and|strong="H3068"\w* \w the|strong="H5002"\w* \w spirit|strong="H7307"\w* \w of|strong="H3068"\w* \w impurity|strong="H2932"\w* \w to|strong="H3068"\w* \w pass|strong="H5674"\w* \w out|strong="H4480"\w* \w of|strong="H3068"\w* \w the|strong="H5002"\w* land. +\v 3 \w It|strong="H3588"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w* \w that|strong="H3588"\w* \w when|strong="H3588"\w* \w anyone|strong="H3588"\w* \w still|strong="H5750"\w* \w prophesies|strong="H5012"\w*, \w then|strong="H1961"\w* \w his|strong="H3068"\w* \w father|strong="H3205"\w* \w and|strong="H3068"\w* \w his|strong="H3068"\w* mother \w who|strong="H3068"\w* \w bore|strong="H3205"\w* \w him|strong="H3205"\w* \w will|strong="H3068"\w* \w tell|strong="H1696"\w* \w him|strong="H3205"\w*, ‘\w You|strong="H3588"\w* \w must|strong="H3808"\w* die, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w speak|strong="H1696"\w* \w lies|strong="H8267"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w name|strong="H8034"\w*;’ \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w father|strong="H3205"\w* \w and|strong="H3068"\w* \w his|strong="H3068"\w* mother \w who|strong="H3068"\w* \w bore|strong="H3205"\w* \w him|strong="H3205"\w* \w will|strong="H3068"\w* \w stab|strong="H1856"\w* \w him|strong="H3205"\w* \w when|strong="H3588"\w* \w he|strong="H3588"\w* \w prophesies|strong="H5012"\w*. +\v 4 \w It|strong="H1931"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w in|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w the|strong="H3117"\w* \w prophets|strong="H5030"\w* \w will|strong="H1961"\w* \w each|strong="H3117"\w* \w be|strong="H1961"\w* ashamed \w of|strong="H3117"\w* \w his|strong="H1961"\w* \w vision|strong="H2384"\w* \w when|strong="H1961"\w* \w he|strong="H1931"\w* \w prophesies|strong="H5012"\w*; \w they|strong="H3117"\w* won’t \w wear|strong="H3847"\w* \w a|strong="H3068"\w* \w hairy|strong="H8181"\w* mantle \w to|strong="H1961"\w* \w deceive|strong="H3584"\w*, +\v 5 \w but|strong="H3588"\w* \w he|strong="H3588"\w* \w will|strong="H3808"\w* say, ‘\w I|strong="H3588"\w* am \w no|strong="H3808"\w* \w prophet|strong="H5030"\w*, \w I|strong="H3588"\w* am \w a|strong="H3068"\w* \w tiller|strong="H5647"\w* \w of|strong="H5030"\w* \w the|strong="H3588"\w* ground; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H5030"\w* \w been|strong="H5647"\w* \w made|strong="H5647"\w* \w a|strong="H3068"\w* bondservant \w from|strong="H5030"\w* \w my|strong="H3588"\w* \w youth|strong="H5271"\w*.’ +\v 6 \w One|strong="H3027"\w* \w will|strong="H1004"\w* say \w to|strong="H3027"\w* \w him|strong="H5221"\w*, ‘\w What|strong="H4100"\w* \w are|strong="H3027"\w* \w these|strong="H5221"\w* \w wounds|strong="H4347"\w* between \w your|strong="H5221"\w* \w arms|strong="H3027"\w*?’ \w Then|strong="H4100"\w* \w he|strong="H1004"\w* \w will|strong="H1004"\w* answer, ‘Those \w with|strong="H1004"\w* \w which|strong="H1004"\w* \w I|strong="H4100"\w* \w was|strong="H1004"\w* \w wounded|strong="H5221"\w* \w in|strong="H1004"\w* \w the|strong="H5221"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w my|strong="H3027"\w* friends.’ +\b +\q1 +\v 7 “\w Awake|strong="H5782"\w*, \w sword|strong="H2719"\w*, \w against|strong="H5921"\w* \w my|strong="H3068"\w* \w shepherd|strong="H7462"\w*, +\q2 \w and|strong="H3068"\w* \w against|strong="H5921"\w* \w the|strong="H5002"\w* \w man|strong="H1397"\w* \w who|strong="H3068"\w* \w is|strong="H3068"\w* close \w to|strong="H7725"\w* \w me|strong="H7725"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\q1 “\w Strike|strong="H5221"\w* \w the|strong="H5002"\w* \w shepherd|strong="H7462"\w*, \w and|strong="H3068"\w* \w the|strong="H5002"\w* \w sheep|strong="H6629"\w* \w will|strong="H3068"\w* \w be|strong="H3027"\w* \w scattered|strong="H6327"\w*; +\q2 \w and|strong="H3068"\w* \w I|strong="H5921"\w* \w will|strong="H3068"\w* \w turn|strong="H7725"\w* \w my|strong="H3068"\w* \w hand|strong="H3027"\w* \w against|strong="H5921"\w* \w the|strong="H5002"\w* \w little|strong="H6819"\w* \w ones|strong="H6819"\w*. +\q1 +\v 8 \w It|strong="H1961"\w* \w shall|strong="H3068"\w* \w happen|strong="H1961"\w* \w that|strong="H3605"\w* \w in|strong="H3068"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* land,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, +\q2 “\w two|strong="H8147"\w* \w parts|strong="H6310"\w* \w in|strong="H3068"\w* \w it|strong="H1961"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w and|strong="H3068"\w* \w die|strong="H1478"\w*; +\q2 \w but|strong="H1961"\w* \w the|strong="H3605"\w* \w third|strong="H7992"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w left|strong="H3498"\w* \w in|strong="H3068"\w* \w it|strong="H1961"\w*. +\q1 +\v 9 \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w bring|strong="H7121"\w* \w the|strong="H3068"\w* \w third|strong="H7992"\w* \w part|strong="H7992"\w* \w into|strong="H3701"\w* \w the|strong="H3068"\w* fire, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w refine|strong="H6884"\w* \w them|strong="H7121"\w* \w as|strong="H3068"\w* \w silver|strong="H3701"\w* \w is|strong="H3068"\w* \w refined|strong="H6884"\w*, +\q2 \w and|strong="H3068"\w* \w will|strong="H3068"\w* \w test|strong="H6884"\w* \w them|strong="H7121"\w* \w like|strong="H3701"\w* \w gold|strong="H2091"\w* \w is|strong="H3068"\w* \w tested|strong="H6884"\w*. +\q1 \w They|strong="H3068"\w* \w will|strong="H3068"\w* \w call|strong="H7121"\w* \w on|strong="H3068"\w* \w my|strong="H3068"\w* \w name|strong="H8034"\w*, \w and|strong="H3068"\w* \w I|strong="H3068"\w* \w will|strong="H3068"\w* \w hear|strong="H6030"\w* \w them|strong="H7121"\w*. +\q2 \w I|strong="H3068"\w* \w will|strong="H3068"\w* say, ‘\w It|strong="H1931"\w* \w is|strong="H3068"\w* \w my|strong="H3068"\w* \w people|strong="H5971"\w*;’ +\q2 \w and|strong="H3068"\w* \w they|strong="H3068"\w* \w will|strong="H3068"\w* say, ‘\w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w my|strong="H3068"\w* \w God|strong="H3068"\w*.’” +\c 14 +\p +\v 1 \w Behold|strong="H2009"\w*, \w a|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w comes|strong="H3117"\w*, \w when|strong="H3117"\w* \w your|strong="H3068"\w* \w plunder|strong="H7998"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w divided|strong="H2505"\w* \w within|strong="H7130"\w* \w you|strong="H3117"\w*. +\v 2 \w For|strong="H1004"\w* \w I|strong="H3808"\w* \w will|strong="H1471"\w* gather \w all|strong="H3605"\w* \w nations|strong="H1471"\w* \w against|strong="H4480"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H3318"\w* \w battle|strong="H4421"\w*; \w and|strong="H1004"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w will|strong="H1471"\w* \w be|strong="H3808"\w* \w taken|strong="H3920"\w*, \w the|strong="H3605"\w* \w houses|strong="H1004"\w* \w rifled|strong="H8155"\w*, \w and|strong="H1004"\w* \w the|strong="H3605"\w* women \w ravished|strong="H7693"\w*. \w Half|strong="H2677"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w* \w will|strong="H1471"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w into|strong="H3318"\w* \w captivity|strong="H1473"\w*, \w and|strong="H1004"\w* \w the|strong="H3605"\w* \w rest|strong="H3499"\w* \w of|strong="H1004"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w* \w will|strong="H1471"\w* \w not|strong="H3808"\w* \w be|strong="H3808"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w from|strong="H4480"\w* \w the|strong="H3605"\w* \w city|strong="H5892"\w*. +\v 3 \w Then|strong="H3318"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w and|strong="H3068"\w* \w fight|strong="H3898"\w* \w against|strong="H3898"\w* \w those|strong="H1992"\w* \w nations|strong="H1471"\w*, \w as|strong="H3117"\w* \w when|strong="H3117"\w* \w he|strong="H3117"\w* \w fought|strong="H3898"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w day|strong="H3117"\w* \w of|strong="H3068"\w* \w battle|strong="H7128"\w*. +\v 4 \w His|strong="H6440"\w* \w feet|strong="H7272"\w* \w will|strong="H3389"\w* \w stand|strong="H5975"\w* \w in|strong="H5921"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w Mount|strong="H2022"\w* \w of|strong="H3117"\w* \w Olives|strong="H2132"\w*, \w which|strong="H1931"\w* \w is|strong="H1931"\w* \w before|strong="H6440"\w* \w Jerusalem|strong="H3389"\w* \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w east|strong="H4217"\w*; \w and|strong="H3117"\w* \w the|strong="H6440"\w* \w Mount|strong="H2022"\w* \w of|strong="H3117"\w* \w Olives|strong="H2132"\w* \w will|strong="H3389"\w* \w be|strong="H3117"\w* \w split|strong="H1234"\w* \w in|strong="H5921"\w* \w two|strong="H3220"\w* \w from|strong="H6440"\w* \w east|strong="H4217"\w* \w to|strong="H5921"\w* \w west|strong="H3220"\w*, making \w a|strong="H3068"\w* \w very|strong="H3966"\w* \w great|strong="H1419"\w* \w valley|strong="H1516"\w*. \w Half|strong="H2677"\w* \w of|strong="H3117"\w* \w the|strong="H6440"\w* \w mountain|strong="H2022"\w* \w will|strong="H3389"\w* \w move|strong="H4185"\w* \w toward|strong="H5921"\w* \w the|strong="H6440"\w* \w north|strong="H6828"\w*, \w and|strong="H3117"\w* \w half|strong="H2677"\w* \w of|strong="H3117"\w* \w it|strong="H1931"\w* \w toward|strong="H5921"\w* \w the|strong="H6440"\w* \w south|strong="H5045"\w*. +\v 5 \w You|strong="H3588"\w* \w shall|strong="H3068"\w* \w flee|strong="H5127"\w* \w by|strong="H3117"\w* \w the|strong="H3605"\w* \w valley|strong="H1516"\w* \w of|strong="H4428"\w* \w my|strong="H3605"\w* \w mountains|strong="H2022"\w*, \w for|strong="H3588"\w* \w the|strong="H3605"\w* \w valley|strong="H1516"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w mountains|strong="H2022"\w* \w shall|strong="H3068"\w* \w reach|strong="H5060"\w* \w to|strong="H3068"\w* Azel. \w Yes|strong="H3588"\w*, \w you|strong="H3588"\w* \w shall|strong="H3068"\w* \w flee|strong="H5127"\w*, \w just|strong="H3605"\w* \w like|strong="H5973"\w* \w you|strong="H3588"\w* \w fled|strong="H5127"\w* \w from|strong="H6440"\w* \w before|strong="H6440"\w* \w the|strong="H3605"\w* \w earthquake|strong="H7494"\w* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w days|strong="H3117"\w* \w of|strong="H4428"\w* \w Uzziah|strong="H5818"\w* \w king|strong="H4428"\w* \w of|strong="H4428"\w* \w Judah|strong="H3063"\w*. \w Yahweh|strong="H3068"\w* \w my|strong="H3605"\w* \w God|strong="H3068"\w* \w will|strong="H3068"\w* \w come|strong="H5060"\w*, \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w holy|strong="H6918"\w* \w ones|strong="H6918"\w* \w with|strong="H5973"\w* \w you|strong="H3588"\w*.\f + \fr 14:5 \ft Septuagint reads “him” instead of “you”.\f* +\p +\v 6 \w It|strong="H1931"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w in|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w there|strong="H1961"\w* \w will|strong="H1961"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* light, cold, \w or|strong="H3808"\w* frost. +\v 7 \w It|strong="H1931"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* unique \w day|strong="H3117"\w* \w which|strong="H1931"\w* \w is|strong="H3068"\w* \w known|strong="H3045"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w*—\w not|strong="H3808"\w* \w day|strong="H3117"\w*, \w and|strong="H3068"\w* \w not|strong="H3808"\w* \w night|strong="H3915"\w*; \w but|strong="H3808"\w* \w it|strong="H1931"\w* \w will|strong="H3068"\w* \w come|strong="H1961"\w* \w to|strong="H3068"\w* \w pass|strong="H1961"\w* \w that|strong="H3045"\w* \w at|strong="H3068"\w* \w evening|strong="H6153"\w* \w time|strong="H6256"\w* \w there|strong="H1961"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* light. +\p +\v 8 \w It|strong="H1931"\w* \w will|strong="H1961"\w* \w happen|strong="H1961"\w* \w in|strong="H3117"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w living|strong="H2416"\w* \w waters|strong="H4325"\w* \w will|strong="H1961"\w* \w go|strong="H3318"\w* \w out|strong="H3318"\w* \w from|strong="H3318"\w* \w Jerusalem|strong="H3389"\w*, \w half|strong="H2677"\w* \w of|strong="H3117"\w* \w them|strong="H3318"\w* \w toward|strong="H3318"\w* \w the|strong="H3117"\w* \w eastern|strong="H6931"\w* \w sea|strong="H3220"\w*, \w and|strong="H3117"\w* \w half|strong="H2677"\w* \w of|strong="H3117"\w* \w them|strong="H3318"\w* \w toward|strong="H3318"\w* \w the|strong="H3117"\w* \w western|strong="H3220"\w* \w sea|strong="H3220"\w*. \w It|strong="H1931"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w so|strong="H1961"\w* \w in|strong="H3117"\w* \w summer|strong="H7019"\w* \w and|strong="H3117"\w* \w in|strong="H3117"\w* \w winter|strong="H2779"\w*. +\p +\v 9 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w King|strong="H4428"\w* \w over|strong="H5921"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* earth. \w In|strong="H5921"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w one|strong="H3605"\w*, \w and|strong="H3068"\w* \w his|strong="H3605"\w* \w name|strong="H8034"\w* \w one|strong="H3605"\w*. +\p +\v 10 \w All|strong="H3605"\w* \w the|strong="H3605"\w* \w land|strong="H4725"\w* \w will|strong="H4428"\w* \w be|strong="H3389"\w* \w made|strong="H3605"\w* \w like|strong="H5704"\w* \w the|strong="H3605"\w* \w Arabah|strong="H6160"\w*, \w from|strong="H5704"\w* \w Geba|strong="H1387"\w* \w to|strong="H5704"\w* \w Rimmon|strong="H7417"\w* \w south|strong="H5045"\w* \w of|strong="H4428"\w* \w Jerusalem|strong="H3389"\w*; \w and|strong="H4428"\w* \w she|strong="H5704"\w* \w will|strong="H4428"\w* \w be|strong="H3389"\w* \w lifted|strong="H4428"\w* \w up|strong="H5704"\w* \w and|strong="H4428"\w* \w will|strong="H4428"\w* \w dwell|strong="H3427"\w* \w in|strong="H3427"\w* \w her|strong="H3605"\w* \w place|strong="H4725"\w*, \w from|strong="H5704"\w* \w Benjamin|strong="H1144"\w*’s \w gate|strong="H8179"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w place|strong="H4725"\w* \w of|strong="H4428"\w* \w the|strong="H3605"\w* \w first|strong="H7223"\w* \w gate|strong="H8179"\w*, \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w corner|strong="H6434"\w* \w gate|strong="H8179"\w*, \w and|strong="H4428"\w* \w from|strong="H5704"\w* \w the|strong="H3605"\w* \w tower|strong="H4026"\w* \w of|strong="H4428"\w* \w Hananel|strong="H2606"\w* \w to|strong="H5704"\w* \w the|strong="H3605"\w* \w king|strong="H4428"\w*’s \w wine|strong="H3342"\w* \w presses|strong="H3342"\w*. +\v 11 Men \w will|strong="H1961"\w* \w dwell|strong="H3427"\w* \w therein|strong="H3427"\w*, \w and|strong="H3389"\w* \w there|strong="H1961"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w no|strong="H3808"\w* \w more|strong="H5750"\w* \w curse|strong="H2764"\w*; \w but|strong="H3808"\w* \w Jerusalem|strong="H3389"\w* \w will|strong="H1961"\w* \w dwell|strong="H3427"\w* safely. +\p +\v 12 \w This|strong="H2063"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w the|strong="H3605"\w* \w plague|strong="H4046"\w* \w with|strong="H3068"\w* \w which|strong="H1931"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w strike|strong="H5062"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w peoples|strong="H5971"\w* \w who|strong="H3605"\w* \w have|strong="H1961"\w* \w fought|strong="H6633"\w* \w against|strong="H5921"\w* \w Jerusalem|strong="H3389"\w*: \w their|strong="H3605"\w* \w flesh|strong="H1320"\w* \w will|strong="H3068"\w* consume \w away|strong="H4743"\w* \w while|strong="H1961"\w* \w they|strong="H3068"\w* \w stand|strong="H5975"\w* \w on|strong="H5921"\w* \w their|strong="H3605"\w* \w feet|strong="H7272"\w*, \w and|strong="H3068"\w* \w their|strong="H3605"\w* \w eyes|strong="H5869"\w* \w will|strong="H3068"\w* consume \w away|strong="H4743"\w* \w in|strong="H5921"\w* \w their|strong="H3605"\w* \w sockets|strong="H2356"\w*, \w and|strong="H3068"\w* \w their|strong="H3605"\w* \w tongue|strong="H3956"\w* \w will|strong="H3068"\w* consume \w away|strong="H4743"\w* \w in|strong="H5921"\w* \w their|strong="H3605"\w* \w mouth|strong="H6310"\w*. +\v 13 \w It|strong="H1931"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w* \w in|strong="H5921"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w a|strong="H3068"\w* \w great|strong="H7227"\w* \w panic|strong="H4103"\w* \w from|strong="H5921"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w among|strong="H5921"\w* \w them|strong="H5921"\w*; \w and|strong="H3068"\w* \w they|strong="H3117"\w* \w will|strong="H3068"\w* \w each|strong="H3117"\w* \w seize|strong="H2388"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w neighbor|strong="H7453"\w*, \w and|strong="H3068"\w* \w his|strong="H3068"\w* \w hand|strong="H3027"\w* \w will|strong="H3068"\w* \w rise|strong="H5927"\w* \w up|strong="H5927"\w* \w against|strong="H5921"\w* \w the|strong="H5921"\w* \w hand|strong="H3027"\w* \w of|strong="H3068"\w* \w his|strong="H3068"\w* \w neighbor|strong="H7453"\w*. +\v 14 \w Judah|strong="H3063"\w* \w also|strong="H1571"\w* \w will|strong="H1471"\w* \w fight|strong="H3898"\w* \w at|strong="H3898"\w* \w Jerusalem|strong="H3389"\w*; \w and|strong="H3063"\w* \w the|strong="H3605"\w* \w wealth|strong="H2428"\w* \w of|strong="H7230"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w surrounding|strong="H5439"\w* \w nations|strong="H1471"\w* \w will|strong="H1471"\w* \w be|strong="H1571"\w* \w gathered|strong="H1471"\w* \w together|strong="H1571"\w*: \w gold|strong="H2091"\w*, \w silver|strong="H3701"\w*, \w and|strong="H3063"\w* clothing, \w in|strong="H3063"\w* \w great|strong="H3966"\w* \w abundance|strong="H7230"\w*. +\p +\v 15 \w A|strong="H3068"\w* \w plague|strong="H4046"\w* \w like|strong="H1961"\w* \w this|strong="H2063"\w* \w will|strong="H1961"\w* \w fall|strong="H1961"\w* \w on|strong="H1961"\w* \w the|strong="H3605"\w* \w horse|strong="H5483"\w*, \w on|strong="H1961"\w* \w the|strong="H3605"\w* \w mule|strong="H6505"\w*, \w on|strong="H1961"\w* \w the|strong="H3605"\w* \w camel|strong="H1581"\w*, \w on|strong="H1961"\w* \w the|strong="H3605"\w* \w donkey|strong="H2543"\w*, \w and|strong="H5483"\w* \w on|strong="H1961"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w animals|strong="H1961"\w* \w that|strong="H3605"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w in|strong="H1961"\w* \w those|strong="H1992"\w* \w camps|strong="H4264"\w*. +\p +\v 16 \w It|strong="H5921"\w* \w will|strong="H3068"\w* \w happen|strong="H1961"\w* \w that|strong="H3605"\w* \w everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w is|strong="H3068"\w* \w left|strong="H3498"\w* \w of|strong="H4428"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w that|strong="H3605"\w* \w came|strong="H1961"\w* \w against|strong="H5921"\w* \w Jerusalem|strong="H3389"\w* \w will|strong="H3068"\w* \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w from|strong="H5921"\w* \w year|strong="H8141"\w* \w to|strong="H3068"\w* \w year|strong="H8141"\w* \w to|strong="H3068"\w* \w worship|strong="H7812"\w* \w the|strong="H3605"\w* \w King|strong="H4428"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H4428"\w* \w Armies|strong="H6635"\w*, \w and|strong="H3068"\w* \w to|strong="H3068"\w* \w keep|strong="H2287"\w* \w the|strong="H3605"\w* \w feast|strong="H2282"\w* \w of|strong="H4428"\w* \w booths|strong="H5521"\w*. +\v 17 \w It|strong="H5921"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w that|strong="H3068"\w* whoever \w of|strong="H4428"\w* \w all|strong="H5921"\w* \w the|strong="H5921"\w* \w families|strong="H4940"\w* \w of|strong="H4428"\w* \w the|strong="H5921"\w* \w earth|strong="H5927"\w* doesn’t \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w Jerusalem|strong="H3389"\w* \w to|strong="H3068"\w* \w worship|strong="H7812"\w* \w the|strong="H5921"\w* \w King|strong="H4428"\w*, \w Yahweh|strong="H3068"\w* \w of|strong="H4428"\w* \w Armies|strong="H6635"\w*, \w on|strong="H5921"\w* \w them|strong="H5921"\w* \w there|strong="H1961"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w no|strong="H3808"\w* \w rain|strong="H1653"\w*. +\v 18 \w If|strong="H1961"\w* \w the|strong="H5921"\w* \w family|strong="H4940"\w* \w of|strong="H3068"\w* \w Egypt|strong="H4714"\w* doesn’t \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w and|strong="H3068"\w* doesn’t \w come|strong="H5927"\w*, \w neither|strong="H3808"\w* \w will|strong="H3068"\w* \w it|strong="H5921"\w* rain \w on|strong="H5921"\w* \w them|strong="H5921"\w*. \w This|strong="H3068"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w the|strong="H5921"\w* \w plague|strong="H4046"\w* \w with|strong="H3068"\w* \w which|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w strike|strong="H5062"\w* \w the|strong="H5921"\w* \w nations|strong="H1471"\w* \w that|strong="H3068"\w* don’t \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H3068"\w* \w keep|strong="H2287"\w* \w the|strong="H5921"\w* \w feast|strong="H2282"\w* \w of|strong="H3068"\w* \w booths|strong="H5521"\w*. +\v 19 \w This|strong="H2063"\w* \w will|strong="H1961"\w* \w be|strong="H1961"\w* \w the|strong="H3605"\w* \w punishment|strong="H2403"\w* \w of|strong="H2282"\w* \w Egypt|strong="H4714"\w* \w and|strong="H4714"\w* \w the|strong="H3605"\w* \w punishment|strong="H2403"\w* \w of|strong="H2282"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w* \w that|strong="H3605"\w* don’t \w go|strong="H5927"\w* \w up|strong="H5927"\w* \w to|strong="H5927"\w* \w keep|strong="H2287"\w* \w the|strong="H3605"\w* \w feast|strong="H2282"\w* \w of|strong="H2282"\w* \w booths|strong="H5521"\w*. +\p +\v 20 \w In|strong="H5921"\w* \w that|strong="H3117"\w* \w day|strong="H3117"\w* \w there|strong="H1961"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* inscribed \w on|strong="H5921"\w* \w the|strong="H6440"\w* \w bells|strong="H4698"\w* \w of|strong="H1004"\w* \w the|strong="H6440"\w* \w horses|strong="H5483"\w*, “\w HOLY|strong="H6944"\w* \w TO|strong="H3068"\w* \w YAHWEH|strong="H3068"\w*”; \w and|strong="H3068"\w* \w the|strong="H6440"\w* \w pots|strong="H5518"\w* \w in|strong="H5921"\w* \w Yahweh|strong="H3068"\w*’s \w house|strong="H1004"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w like|strong="H1961"\w* \w the|strong="H6440"\w* \w bowls|strong="H4219"\w* \w before|strong="H6440"\w* \w the|strong="H6440"\w* \w altar|strong="H4196"\w*. +\v 21 Yes, \w every|strong="H3605"\w* \w pot|strong="H5518"\w* \w in|strong="H3068"\w* \w Jerusalem|strong="H3389"\w* \w and|strong="H3063"\w* \w in|strong="H3068"\w* \w Judah|strong="H3063"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w holy|strong="H6944"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w*; \w and|strong="H3063"\w* \w all|strong="H3605"\w* \w those|strong="H1992"\w* \w who|strong="H3605"\w* \w sacrifice|strong="H2076"\w* \w will|strong="H3068"\w* \w come|strong="H1961"\w* \w and|strong="H3063"\w* \w take|strong="H3947"\w* \w of|strong="H1004"\w* \w them|strong="H1992"\w*, \w and|strong="H3063"\w* \w cook|strong="H1310"\w* \w in|strong="H3068"\w* \w them|strong="H1992"\w*. \w In|strong="H3068"\w* \w that|strong="H3605"\w* \w day|strong="H3117"\w* \w there|strong="H1961"\w* \w will|strong="H3068"\w* \w no|strong="H3808"\w* \w longer|strong="H5750"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w Canaanite|strong="H3669"\w*\f + \fr 14:21 \ft or, merchant\f* \w in|strong="H3068"\w* \w the|strong="H3605"\w* \w house|strong="H1004"\w* \w of|strong="H1004"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/40-MALeng-web.usfm b/bibles/eng-web_usfm/40-MALeng-web.usfm new file mode 100644 index 0000000..383620f --- /dev/null +++ b/bibles/eng-web_usfm/40-MALeng-web.usfm @@ -0,0 +1,88 @@ +\id MAL 39-MAL-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Malachi +\toc1 The Book of Malachi +\toc2 Malachi +\toc3 Mal +\mt2 The Book of +\mt1 Malachi +\c 1 +\p +\v 1 \w A|strong="H3068"\w* revelation, \w Yahweh|strong="H3068"\w*’s\f + \fr 1:1 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.\f* \w word|strong="H1697"\w* \w to|strong="H3478"\w* \w Israel|strong="H3478"\w* \w by|strong="H3027"\w* \w Malachi|strong="H4401"\w*. +\p +\v 2 “\w I|strong="H3808"\w* \w have|strong="H3068"\w* loved \w you|strong="H3808"\w*,” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*. +\p \w Yet|strong="H3068"\w* \w you|strong="H3808"\w* say, “\w How|strong="H4100"\w* \w have|strong="H3068"\w* \w you|strong="H3808"\w* loved us?” +\p “Wasn’t \w Esau|strong="H6215"\w* \w Jacob|strong="H3290"\w*’s brother?” \w says|strong="H5002"\w* \w Yahweh|strong="H3068"\w*, “\w Yet|strong="H3068"\w* \w I|strong="H3808"\w* loved \w Jacob|strong="H3290"\w*; +\v 3 but \w Esau|strong="H6215"\w* \w I|strong="H7760"\w* \w hated|strong="H8130"\w*, \w and|strong="H2022"\w* \w made|strong="H7760"\w* \w his|strong="H7760"\w* \w mountains|strong="H2022"\w* \w a|strong="H3068"\w* \w desolation|strong="H8077"\w*, \w and|strong="H2022"\w* \w gave|strong="H7760"\w* \w his|strong="H7760"\w* \w heritage|strong="H5159"\w* \w to|strong="H5159"\w* \w the|strong="H7760"\w* jackals \w of|strong="H2022"\w* \w the|strong="H7760"\w* \w wilderness|strong="H4057"\w*.” +\v 4 \w Whereas|strong="H3588"\w* Edom \w says|strong="H3541"\w*, “\w We|strong="H3588"\w* \w are|strong="H1992"\w* \w beaten|strong="H7567"\w* \w down|strong="H2040"\w*, \w but|strong="H3588"\w* \w we|strong="H3068"\w* \w will|strong="H3068"\w* \w return|strong="H7725"\w* \w and|strong="H3068"\w* \w build|strong="H1129"\w* \w the|strong="H3588"\w* \w waste|strong="H2723"\w* \w places|strong="H2723"\w*,” \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w* \w says|strong="H3541"\w*, “\w They|strong="H1992"\w* \w shall|strong="H3068"\w* \w build|strong="H1129"\w*, \w but|strong="H3588"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* throw \w down|strong="H2040"\w*; \w and|strong="H3068"\w* \w men|strong="H5971"\w* \w will|strong="H3068"\w* \w call|strong="H7121"\w* \w them|strong="H1992"\w* ‘\w The|strong="H3588"\w* Wicked \w Land|strong="H1366"\w*,’ \w even|strong="H5704"\w* \w the|strong="H3588"\w* \w people|strong="H5971"\w* \w against|strong="H3068"\w* \w whom|strong="H1992"\w* \w Yahweh|strong="H3068"\w* shows wrath \w forever|strong="H5769"\w*.” +\p +\v 5 \w Your|strong="H3068"\w* \w eyes|strong="H5869"\w* \w will|strong="H3068"\w* \w see|strong="H7200"\w*, \w and|strong="H3478"\w* \w you|strong="H5921"\w* \w will|strong="H3068"\w* \w say|strong="H3478"\w*, “\w Yahweh|strong="H3068"\w* \w is|strong="H3068"\w* \w great|strong="H1431"\w*—\w even|strong="H5869"\w* \w beyond|strong="H5921"\w* \w the|strong="H5921"\w* \w border|strong="H1366"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*!” +\p +\v 6 “\w A|strong="H3068"\w* \w son|strong="H1121"\w* \w honors|strong="H3513"\w* \w his|strong="H3068"\w* \w father|strong="H1121"\w*, \w and|strong="H1121"\w* \w a|strong="H3068"\w* \w servant|strong="H5650"\w* \w his|strong="H3068"\w* master. \w If|strong="H1121"\w* \w I|strong="H5650"\w* \w am|strong="H3068"\w* \w a|strong="H3068"\w* \w father|strong="H1121"\w*, \w then|strong="H4100"\w* \w where|strong="H4100"\w* \w is|strong="H3068"\w* \w my|strong="H3068"\w* \w honor|strong="H3519"\w*? \w And|strong="H1121"\w* \w if|strong="H1121"\w* \w I|strong="H5650"\w* \w am|strong="H3068"\w* \w a|strong="H3068"\w* master, \w where|strong="H4100"\w* \w is|strong="H3068"\w* \w the|strong="H3068"\w* \w respect|strong="H4172"\w* due \w me|strong="H5650"\w*?” says \w Yahweh|strong="H3068"\w* \w of|strong="H1121"\w* \w Armies|strong="H6635"\w* \w to|strong="H3068"\w* \w you|strong="H4100"\w* \w priests|strong="H3548"\w* \w who|strong="H3068"\w* despise \w my|strong="H3068"\w* \w name|strong="H8034"\w*. “\w You|strong="H4100"\w* say, ‘\w How|strong="H4100"\w* \w have|strong="H3068"\w* \w we|strong="H3068"\w* despised \w your|strong="H3068"\w* \w name|strong="H8034"\w*?’ +\v 7 \w You|strong="H5921"\w* \w offer|strong="H5066"\w* \w polluted|strong="H1351"\w* \w bread|strong="H3899"\w* \w on|strong="H5921"\w* \w my|strong="H3068"\w* \w altar|strong="H4196"\w*. \w You|strong="H5921"\w* say, ‘\w How|strong="H4100"\w* \w have|strong="H3068"\w* \w we|strong="H3068"\w* \w polluted|strong="H1351"\w* \w you|strong="H5921"\w*?’ \w In|strong="H5921"\w* \w that|strong="H1931"\w* \w you|strong="H5921"\w* say, ‘\w Yahweh|strong="H3068"\w*’s \w table|strong="H7979"\w* \w is|strong="H3068"\w* contemptible.’ +\v 8 \w When|strong="H3588"\w* \w you|strong="H3588"\w* \w offer|strong="H7126"\w* \w the|strong="H6440"\w* \w blind|strong="H5787"\w* \w for|strong="H3588"\w* \w sacrifice|strong="H2076"\w*, isn’t \w that|strong="H3588"\w* \w evil|strong="H7451"\w*? \w And|strong="H3068"\w* \w when|strong="H3588"\w* \w you|strong="H3588"\w* \w offer|strong="H7126"\w* \w the|strong="H6440"\w* \w lame|strong="H6455"\w* \w and|strong="H3068"\w* \w sick|strong="H2470"\w*, isn’t \w that|strong="H3588"\w* \w evil|strong="H7451"\w*? \w Present|strong="H7126"\w* \w it|strong="H7126"\w* \w now|strong="H4994"\w* \w to|strong="H3068"\w* \w your|strong="H3068"\w* \w governor|strong="H6346"\w*! \w Will|strong="H3068"\w* \w he|strong="H3588"\w* \w be|strong="H3068"\w* \w pleased|strong="H7521"\w* \w with|strong="H3068"\w* \w you|strong="H3588"\w*? \w Or|strong="H3068"\w* \w will|strong="H3068"\w* \w he|strong="H3588"\w* \w accept|strong="H7521"\w* \w your|strong="H3068"\w* \w person|strong="H6440"\w*?” says \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\p +\v 9 “\w Now|strong="H6258"\w*, \w please|strong="H4994"\w* \w entreat|strong="H2470"\w* \w the|strong="H6440"\w* \w favor|strong="H6440"\w* \w of|strong="H3068"\w* \w God|strong="H3068"\w*,\f + \fr 1:9 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* \w that|strong="H3068"\w* \w he|strong="H3068"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w gracious|strong="H2603"\w* \w to|strong="H3068"\w* \w us|strong="H4994"\w*. \w With|strong="H3068"\w* \w this|strong="H2063"\w*, \w will|strong="H3068"\w* \w he|strong="H3068"\w* \w accept|strong="H5375"\w* \w any|strong="H4480"\w* \w of|strong="H3068"\w* \w you|strong="H6440"\w*?” says \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\p +\v 10 “\w Oh|strong="H4310"\w* \w that|strong="H3068"\w* \w there|strong="H2656"\w* \w were|strong="H3027"\w* \w one|strong="H3808"\w* \w among|strong="H4310"\w* \w you|strong="H3808"\w* \w who|strong="H4310"\w* \w would|strong="H4310"\w* \w shut|strong="H5462"\w* \w the|strong="H3068"\w* \w doors|strong="H1817"\w*, \w that|strong="H3068"\w* \w you|strong="H3808"\w* \w might|strong="H3068"\w* \w not|strong="H3808"\w* kindle fire \w on|strong="H3027"\w* \w my|strong="H3068"\w* \w altar|strong="H4196"\w* \w in|strong="H3068"\w* \w vain|strong="H2600"\w*! \w I|strong="H3808"\w* \w have|strong="H3068"\w* \w no|strong="H3808"\w* \w pleasure|strong="H2656"\w* \w in|strong="H3068"\w* \w you|strong="H3808"\w*,” says \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, “\w neither|strong="H3808"\w* \w will|strong="H3068"\w* \w I|strong="H3808"\w* \w accept|strong="H7521"\w* \w an|strong="H3068"\w* \w offering|strong="H4503"\w* \w at|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*. +\v 11 \w For|strong="H3588"\w* \w from|strong="H1471"\w* \w the|strong="H3605"\w* \w rising|strong="H4217"\w* \w of|strong="H3068"\w* \w the|strong="H3605"\w* \w sun|strong="H8121"\w* \w even|strong="H5704"\w* \w to|strong="H5704"\w* \w its|strong="H3605"\w* \w going|strong="H8121"\w* \w down|strong="H3996"\w*, \w my|strong="H3605"\w* \w name|strong="H8034"\w* \w is|strong="H3068"\w* \w great|strong="H1419"\w* \w among|strong="H8034"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*, \w and|strong="H3068"\w* \w in|strong="H3068"\w* \w every|strong="H3605"\w* \w place|strong="H4725"\w* \w incense|strong="H6999"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w offered|strong="H6999"\w* \w to|strong="H5704"\w* \w my|strong="H3605"\w* \w name|strong="H8034"\w*, \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w pure|strong="H2889"\w* \w offering|strong="H4503"\w*; \w for|strong="H3588"\w* \w my|strong="H3605"\w* \w name|strong="H8034"\w* \w is|strong="H3068"\w* \w great|strong="H1419"\w* \w among|strong="H8034"\w* \w the|strong="H3605"\w* \w nations|strong="H1471"\w*,” says \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\v 12 “\w But|strong="H1931"\w* you \w profane|strong="H2490"\w* \w it|strong="H1931"\w* when you say, ‘\w Yahweh|strong="H3068"\w*’s \w table|strong="H7979"\w* \w is|strong="H1931"\w* \w polluted|strong="H2490"\w*, \w and|strong="H7979"\w* \w its|strong="H2490"\w* \w fruit|strong="H2490"\w*, even \w its|strong="H2490"\w* food, \w is|strong="H1931"\w* contemptible.’ +\v 13 \w You|strong="H3027"\w* say \w also|strong="H3068"\w*, ‘\w Behold|strong="H2009"\w*,\f + \fr 1:13 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* what \w a|strong="H3068"\w* \w weariness|strong="H4972"\w* \w it|strong="H5301"\w* \w is|strong="H3068"\w*!’ \w And|strong="H3068"\w* \w you|strong="H3027"\w* \w have|strong="H3068"\w* sniffed \w at|strong="H3068"\w* \w it|strong="H5301"\w*”, says \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*; “\w and|strong="H3068"\w* \w you|strong="H3027"\w* \w have|strong="H3068"\w* \w brought|strong="H3068"\w* \w that|strong="H3068"\w* \w which|strong="H3068"\w* \w was|strong="H3068"\w* \w taken|strong="H1497"\w* \w by|strong="H3027"\w* \w violence|strong="H1497"\w*, \w the|strong="H3068"\w* \w lame|strong="H6455"\w*, \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w sick|strong="H2470"\w*; thus \w you|strong="H3027"\w* bring \w the|strong="H3068"\w* \w offering|strong="H4503"\w*. \w Should|strong="H3068"\w* \w I|strong="H2009"\w* \w accept|strong="H7521"\w* \w this|strong="H3068"\w* \w at|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*?” says \w Yahweh|strong="H3068"\w*. +\p +\v 14 “\w But|strong="H3588"\w* \w the|strong="H3588"\w* \w deceiver|strong="H5230"\w* \w is|strong="H3068"\w* cursed \w who|strong="H3068"\w* \w has|strong="H3068"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w flock|strong="H5739"\w* \w a|strong="H3068"\w* \w male|strong="H2145"\w*, \w and|strong="H3068"\w* \w vows|strong="H5087"\w* \w and|strong="H3068"\w* \w sacrifices|strong="H2076"\w* \w to|strong="H3068"\w* \w the|strong="H3588"\w* \w Lord|strong="H3068"\w*\f + \fr 1:14 \ft The word translated “Lord” is “Adonai.”\f* \w a|strong="H3068"\w* defective \w thing|strong="H3588"\w*; \w for|strong="H3588"\w* \w I|strong="H3588"\w* \w am|strong="H3068"\w* \w a|strong="H3068"\w* \w great|strong="H1419"\w* \w King|strong="H4428"\w*,” says \w Yahweh|strong="H3068"\w* \w of|strong="H4428"\w* \w Armies|strong="H6635"\w*, “\w and|strong="H3068"\w* \w my|strong="H3068"\w* \w name|strong="H8034"\w* \w is|strong="H3068"\w* \w awesome|strong="H3372"\w* \w among|strong="H8034"\w* \w the|strong="H3588"\w* \w nations|strong="H1471"\w*.” +\c 2 +\p +\v 1 “\w Now|strong="H6258"\w*, \w you|strong="H6258"\w* \w priests|strong="H3548"\w*, \w this|strong="H2063"\w* \w commandment|strong="H4687"\w* \w is|strong="H3548"\w* \w for|strong="H3548"\w* \w you|strong="H6258"\w*. +\v 2 \w If|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w listen|strong="H8085"\w*, \w and|strong="H3068"\w* \w if|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w take|strong="H7760"\w* \w it|strong="H5414"\w* \w to|strong="H3068"\w* \w heart|strong="H3820"\w*, \w to|strong="H3068"\w* \w give|strong="H5414"\w* \w glory|strong="H3519"\w* \w to|strong="H3068"\w* \w my|strong="H8085"\w* \w name|strong="H8034"\w*,” says \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*, “\w then|strong="H7971"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w send|strong="H7971"\w* \w the|strong="H5921"\w* \w curse|strong="H3994"\w* \w on|strong="H5921"\w* \w you|strong="H3588"\w*, \w and|strong="H3068"\w* \w I|strong="H3588"\w* \w will|strong="H3068"\w* \w curse|strong="H3994"\w* \w your|strong="H3068"\w* \w blessings|strong="H1293"\w*. \w Indeed|strong="H3588"\w*, \w I|strong="H3588"\w* \w have|strong="H3068"\w* cursed \w them|strong="H5414"\w* already, \w because|strong="H3588"\w* \w you|strong="H3588"\w* \w do|strong="H3068"\w* \w not|strong="H3808"\w* \w take|strong="H7760"\w* \w it|strong="H5414"\w* \w to|strong="H3068"\w* \w heart|strong="H3820"\w*. +\v 3 \w Behold|strong="H2005"\w*, \w I|strong="H2005"\w* \w will|strong="H2233"\w* \w rebuke|strong="H1605"\w* \w your|strong="H5921"\w* \w offspring|strong="H2233"\w*,\f + \fr 2:3 \ft or, seed\f* \w and|strong="H6440"\w* \w will|strong="H2233"\w* \w spread|strong="H2219"\w* \w dung|strong="H6569"\w* \w on|strong="H5921"\w* \w your|strong="H5921"\w* \w faces|strong="H6440"\w*, \w even|strong="H5921"\w* \w the|strong="H6440"\w* \w dung|strong="H6569"\w* \w of|strong="H6440"\w* \w your|strong="H5921"\w* \w feasts|strong="H2282"\w*; \w and|strong="H6440"\w* \w you|strong="H6440"\w* \w will|strong="H2233"\w* \w be|strong="H6440"\w* \w taken|strong="H5375"\w* \w away|strong="H5375"\w* \w with|strong="H5921"\w* \w it|strong="H5921"\w*. +\v 4 \w You|strong="H3588"\w* \w will|strong="H3068"\w* \w know|strong="H3045"\w* \w that|strong="H3588"\w* \w I|strong="H3588"\w* \w have|strong="H1961"\w* \w sent|strong="H7971"\w* \w this|strong="H2063"\w* \w commandment|strong="H4687"\w* \w to|strong="H3068"\w* \w you|strong="H3588"\w*, \w that|strong="H3588"\w* \w my|strong="H3068"\w* \w covenant|strong="H1285"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w with|strong="H3068"\w* \w Levi|strong="H3878"\w*,” says \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\v 5 “\w My|strong="H5414"\w* \w covenant|strong="H1285"\w* \w was|strong="H8034"\w* \w with|strong="H1285"\w* \w him|strong="H5414"\w* \w of|strong="H6440"\w* \w life|strong="H2416"\w* \w and|strong="H6440"\w* \w peace|strong="H7965"\w*; \w and|strong="H6440"\w* \w I|strong="H5414"\w* \w gave|strong="H5414"\w* \w them|strong="H5414"\w* \w to|strong="H1961"\w* \w him|strong="H5414"\w* \w that|strong="H1931"\w* \w he|strong="H1931"\w* \w might|strong="H2416"\w* \w be|strong="H1961"\w* reverent \w toward|strong="H6440"\w* \w me|strong="H5414"\w*; \w and|strong="H6440"\w* \w he|strong="H1931"\w* \w was|strong="H8034"\w* reverent \w toward|strong="H6440"\w* \w me|strong="H5414"\w*, \w and|strong="H6440"\w* \w stood|strong="H2865"\w* \w in|strong="H6440"\w* \w awe|strong="H2865"\w* \w of|strong="H6440"\w* \w my|strong="H5414"\w* \w name|strong="H8034"\w*. +\v 6 \w The|strong="H7725"\w* \w law|strong="H8451"\w* \w of|strong="H6310"\w* \w truth|strong="H3808"\w* \w was|strong="H1961"\w* \w in|strong="H1980"\w* \w his|strong="H7725"\w* \w mouth|strong="H6310"\w*, \w and|strong="H1980"\w* \w unrighteousness|strong="H5766"\w* \w was|strong="H1961"\w* \w not|strong="H3808"\w* \w found|strong="H4672"\w* \w in|strong="H1980"\w* \w his|strong="H7725"\w* \w lips|strong="H8193"\w*. \w He|strong="H3808"\w* \w walked|strong="H1980"\w* \w with|strong="H1980"\w* \w me|strong="H7725"\w* \w in|strong="H1980"\w* \w peace|strong="H7965"\w* \w and|strong="H1980"\w* \w uprightness|strong="H4334"\w*, \w and|strong="H1980"\w* \w turned|strong="H7725"\w* \w many|strong="H7227"\w* \w away|strong="H7725"\w* \w from|strong="H7725"\w* \w iniquity|strong="H5771"\w*. +\v 7 \w For|strong="H3588"\w* \w the|strong="H3588"\w* \w priest|strong="H3548"\w*’s \w lips|strong="H8193"\w* \w should|strong="H3068"\w* \w keep|strong="H8104"\w* \w knowledge|strong="H1847"\w*, \w and|strong="H3068"\w* \w they|strong="H3588"\w* \w should|strong="H3068"\w* \w seek|strong="H1245"\w* \w the|strong="H3588"\w* \w law|strong="H8451"\w* \w at|strong="H3068"\w* \w his|strong="H8104"\w* \w mouth|strong="H6310"\w*; \w for|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H3068"\w* \w the|strong="H3588"\w* \w messenger|strong="H4397"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\v 8 \w But|strong="H1870"\w* \w you|strong="H4480"\w* \w have|strong="H3068"\w* \w turned|strong="H5493"\w* \w away|strong="H5493"\w* \w from|strong="H4480"\w* \w the|strong="H3068"\w* \w path|strong="H1870"\w*. \w You|strong="H4480"\w* \w have|strong="H3068"\w* caused \w many|strong="H7227"\w* \w to|strong="H3068"\w* \w stumble|strong="H3782"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w law|strong="H8451"\w*. \w You|strong="H4480"\w* \w have|strong="H3068"\w* \w corrupted|strong="H7843"\w* \w the|strong="H3068"\w* \w covenant|strong="H1285"\w* \w of|strong="H3068"\w* \w Levi|strong="H3878"\w*,” says \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\v 9 “\w Therefore|strong="H1571"\w* \w I|strong="H5414"\w* \w have|strong="H5971"\w* \w also|strong="H1571"\w* \w made|strong="H5414"\w* \w you|strong="H5414"\w* contemptible \w and|strong="H5971"\w* wicked \w before|strong="H6440"\w* \w all|strong="H3605"\w* \w the|strong="H3605"\w* \w people|strong="H5971"\w*, \w according|strong="H6310"\w* \w to|strong="H5414"\w* \w the|strong="H3605"\w* \w way|strong="H1870"\w* \w you|strong="H5414"\w* \w have|strong="H5971"\w* \w not|strong="H5414"\w* \w kept|strong="H8104"\w* \w my|strong="H8104"\w* \w ways|strong="H1870"\w*, \w but|strong="H1571"\w* \w have|strong="H5971"\w* \w had|strong="H5414"\w* \w respect|strong="H5375"\w* \w for|strong="H6440"\w* \w persons|strong="H6440"\w* \w in|strong="H6440"\w* \w the|strong="H3605"\w* \w law|strong="H8451"\w*. +\v 10 Don’t \w we|strong="H3068"\w* \w all|strong="H3605"\w* \w have|strong="H3605"\w* \w one|strong="H3605"\w* father? Hasn’t \w one|strong="H3605"\w* \w God|strong="H3808"\w* \w created|strong="H1254"\w* us? \w Why|strong="H4069"\w* \w do|strong="H3605"\w* \w we|strong="H3068"\w* deal treacherously \w every|strong="H3605"\w* \w man|strong="H3605"\w* \w against|strong="H3605"\w* \w his|strong="H3605"\w* brother, \w profaning|strong="H2490"\w* \w the|strong="H3605"\w* \w covenant|strong="H1285"\w* \w of|strong="H3605"\w* \w our|strong="H3605"\w* fathers? +\v 11 \w Judah|strong="H3063"\w* \w has|strong="H3068"\w* \w dealt|strong="H6213"\w* treacherously, \w and|strong="H3063"\w* \w an|strong="H6213"\w* \w abomination|strong="H8441"\w* \w is|strong="H3068"\w* \w committed|strong="H6213"\w* \w in|strong="H3478"\w* \w Israel|strong="H3478"\w* \w and|strong="H3063"\w* \w in|strong="H3478"\w* \w Jerusalem|strong="H3389"\w*; \w for|strong="H3588"\w* \w Judah|strong="H3063"\w* \w has|strong="H3068"\w* \w profaned|strong="H2490"\w* \w the|strong="H3588"\w* \w holiness|strong="H6944"\w* \w of|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w which|strong="H3068"\w* \w he|strong="H3588"\w* loves, \w and|strong="H3063"\w* \w has|strong="H3068"\w* \w married|strong="H1166"\w* \w the|strong="H3588"\w* \w daughter|strong="H1323"\w* \w of|strong="H3068"\w* \w a|strong="H3068"\w* \w foreign|strong="H5236"\w* \w god|strong="H3068"\w*. +\v 12 \w Yahweh|strong="H3068"\w* \w will|strong="H3068"\w* \w cut|strong="H3772"\w* \w off|strong="H3772"\w* \w the|strong="H6213"\w* \w man|strong="H6030"\w* \w who|strong="H3068"\w* \w does|strong="H6213"\w* \w this|strong="H6213"\w*, \w him|strong="H6213"\w* \w who|strong="H3068"\w* wakes \w and|strong="H3068"\w* \w him|strong="H6213"\w* \w who|strong="H3068"\w* \w answers|strong="H6030"\w*, \w out|strong="H6213"\w* \w of|strong="H3068"\w* \w the|strong="H6213"\w* tents \w of|strong="H3068"\w* \w Jacob|strong="H3290"\w* \w and|strong="H3068"\w* \w him|strong="H6213"\w* \w who|strong="H3068"\w* offers \w an|strong="H6213"\w* \w offering|strong="H4503"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\p +\v 13 “\w This|strong="H2063"\w* \w again|strong="H5750"\w* \w you|strong="H3947"\w* \w do|strong="H6213"\w*: \w you|strong="H3947"\w* \w cover|strong="H3680"\w* \w Yahweh|strong="H3068"\w*’s \w altar|strong="H4196"\w* \w with|strong="H3068"\w* \w tears|strong="H1832"\w*, \w with|strong="H3068"\w* \w weeping|strong="H1065"\w*, \w and|strong="H3068"\w* \w with|strong="H3068"\w* sighing, \w because|strong="H3027"\w* \w he|strong="H6213"\w* doesn’t \w regard|strong="H6437"\w* \w the|strong="H3947"\w* \w offering|strong="H4503"\w* \w any|strong="H5750"\w* \w more|strong="H5750"\w*, neither \w receives|strong="H3947"\w* \w it|strong="H6213"\w* \w with|strong="H3068"\w* \w good|strong="H7522"\w* \w will|strong="H3068"\w* \w at|strong="H3068"\w* \w your|strong="H3068"\w* \w hand|strong="H3027"\w*. +\v 14 \w Yet|strong="H3588"\w* \w you|strong="H3588"\w* say, ‘\w Why|strong="H4100"\w*?’ \w Because|strong="H3588"\w* \w Yahweh|strong="H3068"\w* \w has|strong="H3068"\w* \w been|strong="H3068"\w* \w witness|strong="H5749"\w* \w between|strong="H5921"\w* \w you|strong="H3588"\w* \w and|strong="H3068"\w* \w the|strong="H5921"\w* wife \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w youth|strong="H5271"\w*, \w against|strong="H5921"\w* \w whom|strong="H3588"\w* \w you|strong="H3588"\w* \w have|strong="H3068"\w* dealt treacherously, \w though|strong="H3588"\w* \w she|strong="H1931"\w* \w is|strong="H3068"\w* \w your|strong="H3068"\w* \w companion|strong="H2278"\w* \w and|strong="H3068"\w* \w the|strong="H5921"\w* wife \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w covenant|strong="H1285"\w*. +\v 15 \w Did|strong="H6213"\w* \w he|strong="H6213"\w* \w not|strong="H3808"\w* \w make|strong="H6213"\w* \w you|strong="H6213"\w* \w one|strong="H3808"\w*, \w although|strong="H3808"\w* \w he|strong="H6213"\w* \w had|strong="H3808"\w* \w the|strong="H6213"\w* \w residue|strong="H7605"\w* \w of|strong="H7307"\w* \w the|strong="H6213"\w* \w Spirit|strong="H7307"\w*? \w Why|strong="H4100"\w* \w one|strong="H3808"\w*? \w He|strong="H6213"\w* \w sought|strong="H1245"\w* godly \w offspring|strong="H2233"\w*. \w Therefore|strong="H6213"\w* \w take|strong="H8104"\w* \w heed|strong="H8104"\w* \w to|strong="H6213"\w* \w your|strong="H8104"\w* \w spirit|strong="H7307"\w*, \w and|strong="H6213"\w* \w let|strong="H3808"\w* \w no|strong="H3808"\w* \w one|strong="H3808"\w* \w deal|strong="H6213"\w* treacherously \w against|strong="H7307"\w* \w the|strong="H6213"\w* wife \w of|strong="H7307"\w* \w his|strong="H8104"\w* \w youth|strong="H5271"\w*. +\v 16 \w One|strong="H3808"\w* \w who|strong="H3068"\w* \w hates|strong="H8130"\w* \w and|strong="H3478"\w* \w divorces|strong="H7971"\w*”, says \w Yahweh|strong="H3068"\w*, \w the|strong="H5921"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w Israel|strong="H3478"\w*, “\w covers|strong="H3680"\w* \w his|strong="H8104"\w* \w garment|strong="H3830"\w* \w with|strong="H3068"\w* \w violence|strong="H2555"\w*!” says \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. “\w Therefore|strong="H5921"\w* \w pay|strong="H8104"\w* \w attention|strong="H8104"\w* \w to|strong="H3478"\w* \w your|strong="H3068"\w* \w spirit|strong="H7307"\w*, \w that|strong="H3588"\w* \w you|strong="H3588"\w* don’t \w be|strong="H3808"\w* unfaithful. +\p +\v 17 \w You|strong="H3605"\w* \w have|strong="H3068"\w* \w wearied|strong="H3021"\w* \w Yahweh|strong="H3068"\w* \w with|strong="H3068"\w* \w your|strong="H3068"\w* \w words|strong="H1697"\w*. \w Yet|strong="H3068"\w* \w you|strong="H3605"\w* \w say|strong="H1697"\w*, ‘\w How|strong="H4100"\w* \w have|strong="H3068"\w* \w we|strong="H3068"\w* \w wearied|strong="H3021"\w* \w him|strong="H6213"\w*?’ \w In|strong="H3068"\w* \w that|strong="H3605"\w* \w you|strong="H3605"\w* \w say|strong="H1697"\w*, ‘\w Everyone|strong="H3605"\w* \w who|strong="H3605"\w* \w does|strong="H6213"\w* \w evil|strong="H7451"\w* \w is|strong="H3068"\w* \w good|strong="H2896"\w* \w in|strong="H3068"\w* \w Yahweh|strong="H3068"\w*’s \w sight|strong="H5869"\w*, \w and|strong="H3068"\w* \w he|strong="H1931"\w* \w delights|strong="H2654"\w* \w in|strong="H3068"\w* \w them|strong="H6213"\w*;’ \w or|strong="H2896"\w* ‘\w Where|strong="H4100"\w* \w is|strong="H3068"\w* \w the|strong="H3605"\w* \w God|strong="H3068"\w* \w of|strong="H3068"\w* \w justice|strong="H4941"\w*?’ +\c 3 +\p +\v 1 “\w Behold|strong="H2009"\w*, \w I|strong="H2005"\w* \w send|strong="H7971"\w* \w my|strong="H3068"\w* \w messenger|strong="H4397"\w*, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w prepare|strong="H6437"\w* \w the|strong="H6440"\w* \w way|strong="H1870"\w* \w before|strong="H6440"\w* \w me|strong="H6440"\w*! \w The|strong="H6440"\w* \w Lord|strong="H3068"\w*, \w whom|strong="H6440"\w* \w you|strong="H6440"\w* \w seek|strong="H1245"\w*, \w will|strong="H3068"\w* \w suddenly|strong="H6597"\w* \w come|strong="H6635"\w* \w to|strong="H3068"\w* \w his|strong="H3068"\w* \w temple|strong="H1964"\w*. \w Behold|strong="H2009"\w*, \w the|strong="H6440"\w* \w messenger|strong="H4397"\w* \w of|strong="H3068"\w* \w the|strong="H6440"\w* \w covenant|strong="H1285"\w*, \w whom|strong="H6440"\w* \w you|strong="H6440"\w* \w desire|strong="H1245"\w*, \w is|strong="H3068"\w* \w coming|strong="H2009"\w*!” says \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\v 2 “\w But|strong="H3588"\w* \w who|strong="H4310"\w* \w can|strong="H4310"\w* \w endure|strong="H5975"\w* \w the|strong="H7200"\w* \w day|strong="H3117"\w* \w of|strong="H3117"\w* \w his|strong="H3526"\w* coming? \w And|strong="H3117"\w* \w who|strong="H4310"\w* \w will|strong="H4310"\w* \w stand|strong="H5975"\w* \w when|strong="H3588"\w* \w he|strong="H1931"\w* \w appears|strong="H7200"\w*? \w For|strong="H3588"\w* \w he|strong="H1931"\w* \w is|strong="H1931"\w* \w like|strong="H6884"\w* \w a|strong="H3068"\w* \w refiner|strong="H6884"\w*’s fire, \w and|strong="H3117"\w* \w like|strong="H6884"\w* launderers’ \w soap|strong="H1287"\w*; +\v 3 \w and|strong="H1121"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w sit|strong="H3427"\w* \w as|strong="H1961"\w* \w a|strong="H3068"\w* \w refiner|strong="H6884"\w* \w and|strong="H1121"\w* \w purifier|strong="H2891"\w* \w of|strong="H1121"\w* \w silver|strong="H3701"\w*, \w and|strong="H1121"\w* \w he|strong="H3068"\w* \w will|strong="H3068"\w* \w purify|strong="H2891"\w* \w the|strong="H3068"\w* \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Levi|strong="H3878"\w*, \w and|strong="H1121"\w* \w refine|strong="H6884"\w* \w them|strong="H1961"\w* \w as|strong="H1961"\w* \w gold|strong="H2091"\w* \w and|strong="H1121"\w* \w silver|strong="H3701"\w*; \w and|strong="H1121"\w* \w they|strong="H3068"\w* \w shall|strong="H3068"\w* \w offer|strong="H5066"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w offerings|strong="H4503"\w* \w in|strong="H3427"\w* \w righteousness|strong="H6666"\w*. +\v 4 \w Then|strong="H3068"\w* \w the|strong="H3068"\w* \w offering|strong="H4503"\w* \w of|strong="H3068"\w* \w Judah|strong="H3063"\w* \w and|strong="H3063"\w* \w Jerusalem|strong="H3389"\w* \w will|strong="H3068"\w* \w be|strong="H3068"\w* \w pleasant|strong="H6149"\w* \w to|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w as|strong="H3117"\w* \w in|strong="H8141"\w* \w the|strong="H3068"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w old|strong="H5769"\w* \w and|strong="H3063"\w* \w as|strong="H3117"\w* \w in|strong="H8141"\w* \w ancient|strong="H5769"\w* \w years|strong="H8141"\w*. +\p +\v 5 \w I|strong="H3808"\w* \w will|strong="H3068"\w* \w come|strong="H1961"\w* \w near|strong="H7126"\w* \w to|strong="H3068"\w* \w you|strong="H3808"\w* \w to|strong="H3068"\w* \w judgment|strong="H4941"\w*. \w I|strong="H3808"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w swift|strong="H4116"\w* \w witness|strong="H5707"\w* \w against|strong="H3068"\w* \w the|strong="H3068"\w* \w sorcerers|strong="H3784"\w*, \w against|strong="H3068"\w* \w the|strong="H3068"\w* \w adulterers|strong="H5003"\w*, \w against|strong="H3068"\w* \w the|strong="H3068"\w* perjurers, \w and|strong="H3068"\w* \w against|strong="H3068"\w* \w those|strong="H1961"\w* \w who|strong="H3068"\w* \w oppress|strong="H6231"\w* \w the|strong="H3068"\w* \w hireling|strong="H7916"\w* \w in|strong="H3068"\w* \w his|strong="H3068"\w* \w wages|strong="H7939"\w*, \w the|strong="H3068"\w* widow, \w and|strong="H3068"\w* \w the|strong="H3068"\w* \w fatherless|strong="H3490"\w*, \w and|strong="H3068"\w* \w who|strong="H3068"\w* \w deprive|strong="H5186"\w* \w the|strong="H3068"\w* \w foreigner|strong="H1616"\w* \w of|strong="H3068"\w* \w justice|strong="H4941"\w*, \w and|strong="H3068"\w* don’t \w fear|strong="H3372"\w* \w me|strong="H3372"\w*,” says \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\p +\v 6 “\w For|strong="H3588"\w* \w I|strong="H3588"\w*, \w Yahweh|strong="H3068"\w*, don’t \w change|strong="H8138"\w*; \w therefore|strong="H3588"\w* \w you|strong="H3588"\w*, \w sons|strong="H1121"\w* \w of|strong="H1121"\w* \w Jacob|strong="H3290"\w*, \w are|strong="H1121"\w* \w not|strong="H3808"\w* \w consumed|strong="H3615"\w*. +\v 7 \w From|strong="H7725"\w* \w the|strong="H8104"\w* \w days|strong="H3117"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* fathers \w you|strong="H3117"\w* \w have|strong="H3068"\w* \w turned|strong="H7725"\w* \w away|strong="H5493"\w* \w from|strong="H7725"\w* \w my|strong="H8104"\w* \w ordinances|strong="H2706"\w* \w and|strong="H3068"\w* \w have|strong="H3068"\w* \w not|strong="H3808"\w* \w kept|strong="H8104"\w* \w them|strong="H7725"\w*. \w Return|strong="H7725"\w* \w to|strong="H7725"\w* \w me|strong="H7725"\w*, \w and|strong="H3068"\w* \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w return|strong="H7725"\w* \w to|strong="H7725"\w* \w you|strong="H3117"\w*,” says \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. “\w But|strong="H3808"\w* \w you|strong="H3117"\w* \w say|strong="H7725"\w*, ‘\w How|strong="H4100"\w* \w shall|strong="H3068"\w* \w we|strong="H3068"\w* \w return|strong="H7725"\w*?’ +\p +\v 8 \w Will|strong="H4100"\w* \w a|strong="H3068"\w* man \w rob|strong="H6906"\w* God? \w Yet|strong="H3588"\w* \w you|strong="H3588"\w* \w rob|strong="H6906"\w* \w me|strong="H3588"\w*! \w But|strong="H3588"\w* \w you|strong="H3588"\w* say, ‘\w How|strong="H4100"\w* \w have|strong="H3588"\w* \w we|strong="H3068"\w* \w robbed|strong="H6906"\w* \w you|strong="H3588"\w*?’ \w In|strong="H4643"\w* \w tithes|strong="H4643"\w* \w and|strong="H4643"\w* \w offerings|strong="H8641"\w*. +\v 9 \w You|strong="H3605"\w* \w are|strong="H1471"\w* cursed \w with|strong="H3605"\w* \w the|strong="H3605"\w* \w curse|strong="H3994"\w*; \w for|strong="H3605"\w* \w you|strong="H3605"\w* \w rob|strong="H6906"\w* \w me|strong="H3605"\w*, even \w this|strong="H3605"\w* \w whole|strong="H3605"\w* \w nation|strong="H1471"\w*. +\v 10 \w Bring|strong="H1961"\w* \w the|strong="H3605"\w* \w whole|strong="H3605"\w* \w tithe|strong="H4643"\w* \w into|strong="H1961"\w* \w the|strong="H3605"\w* storehouse, \w that|strong="H3605"\w* \w there|strong="H1961"\w* \w may|strong="H1961"\w* \w be|strong="H1961"\w* \w food|strong="H2964"\w* \w in|strong="H3068"\w* \w my|strong="H3605"\w* \w house|strong="H1004"\w*, \w and|strong="H3068"\w* test \w me|strong="H4994"\w* \w now|strong="H4994"\w* \w in|strong="H3068"\w* \w this|strong="H2063"\w*,” says \w Yahweh|strong="H3068"\w* \w of|strong="H1004"\w* \w Armies|strong="H6635"\w*, “\w if|strong="H1961"\w* \w I|strong="H5704"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w open|strong="H6605"\w* \w you|strong="H3605"\w* \w the|strong="H3605"\w* windows \w of|strong="H1004"\w* \w heaven|strong="H8064"\w*, \w and|strong="H3068"\w* pour \w you|strong="H3605"\w* \w out|strong="H7324"\w* \w a|strong="H3068"\w* \w blessing|strong="H1293"\w*, \w that|strong="H3605"\w* \w there|strong="H1961"\w* \w will|strong="H3068"\w* \w not|strong="H3808"\w* \w be|strong="H1961"\w* \w enough|strong="H1767"\w* \w room|strong="H1004"\w* \w for|strong="H5704"\w*. +\v 11 \w I|strong="H3808"\w* \w will|strong="H3068"\w* \w rebuke|strong="H1605"\w* \w the|strong="H3068"\w* devourer \w for|strong="H3068"\w* \w your|strong="H3068"\w* sakes, \w and|strong="H3068"\w* \w he|strong="H3068"\w* \w shall|strong="H3068"\w* \w not|strong="H3808"\w* \w destroy|strong="H7843"\w* \w the|strong="H3068"\w* \w fruits|strong="H6529"\w* \w of|strong="H3068"\w* \w your|strong="H3068"\w* \w ground|strong="H7704"\w*; \w neither|strong="H3808"\w* \w shall|strong="H3068"\w* \w your|strong="H3068"\w* \w vine|strong="H1612"\w* \w cast|strong="H3068"\w* \w its|strong="H7843"\w* \w fruit|strong="H6529"\w* \w before|strong="H3808"\w* \w its|strong="H7843"\w* \w time|strong="H6635"\w* \w in|strong="H3068"\w* \w the|strong="H3068"\w* \w field|strong="H7704"\w*,” says \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\v 12 “\w All|strong="H3605"\w* \w nations|strong="H1471"\w* \w shall|strong="H3068"\w* call \w you|strong="H3588"\w* blessed, \w for|strong="H3588"\w* \w you|strong="H3588"\w* \w will|strong="H3068"\w* \w be|strong="H1961"\w* \w a|strong="H3068"\w* \w delightful|strong="H2656"\w* land,” says \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*. +\p +\v 13 “\w Your|strong="H3068"\w* \w words|strong="H1697"\w* \w have|strong="H3068"\w* \w been|strong="H2388"\w* harsh \w against|strong="H5921"\w* \w me|strong="H5921"\w*,” \w says|strong="H1696"\w* \w Yahweh|strong="H3068"\w*. “\w Yet|strong="H3068"\w* \w you|strong="H5921"\w* \w say|strong="H1696"\w*, ‘\w What|strong="H4100"\w* \w have|strong="H3068"\w* \w we|strong="H3068"\w* \w spoken|strong="H1696"\w* \w against|strong="H5921"\w* \w you|strong="H5921"\w*?’ +\v 14 \w You|strong="H3588"\w* \w have|strong="H3068"\w* said, ‘\w It|strong="H3588"\w* \w is|strong="H3068"\w* \w vain|strong="H7723"\w* \w to|strong="H1980"\w* \w serve|strong="H5647"\w* \w God|strong="H3068"\w*,’ \w and|strong="H1980"\w* ‘\w What|strong="H4100"\w* \w profit|strong="H1215"\w* \w is|strong="H3068"\w* \w it|strong="H3588"\w* \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w followed|strong="H1980"\w* \w his|strong="H8104"\w* \w instructions|strong="H8104"\w* \w and|strong="H1980"\w* \w that|strong="H3588"\w* \w we|strong="H3068"\w* \w have|strong="H3068"\w* \w walked|strong="H1980"\w* \w mournfully|strong="H6941"\w* \w before|strong="H6440"\w* \w Yahweh|strong="H3068"\w* \w of|strong="H3068"\w* \w Armies|strong="H6635"\w*? +\v 15 \w Now|strong="H6258"\w* \w we|strong="H3068"\w* call \w the|strong="H6213"\w* \w proud|strong="H2086"\w* happy; \w yes|strong="H1571"\w*, \w those|strong="H6213"\w* \w who|strong="H6213"\w* \w work|strong="H6213"\w* \w wickedness|strong="H7564"\w* \w are|strong="H1571"\w* \w built|strong="H1129"\w* \w up|strong="H1129"\w*; \w yes|strong="H1571"\w*, \w they|strong="H6213"\w* tempt God, \w and|strong="H6213"\w* \w escape|strong="H4422"\w*.’ +\p +\v 16 \w Then|strong="H1696"\w* \w those|strong="H8085"\w* \w who|strong="H3068"\w* \w feared|strong="H3372"\w* \w Yahweh|strong="H3068"\w* \w spoke|strong="H1696"\w* \w one|strong="H3068"\w* \w with|strong="H3068"\w* \w another|strong="H7453"\w*; \w and|strong="H3068"\w* \w Yahweh|strong="H3068"\w* \w listened|strong="H8085"\w* \w and|strong="H3068"\w* \w heard|strong="H8085"\w*, \w and|strong="H3068"\w* \w a|strong="H3068"\w* \w book|strong="H5612"\w* \w of|strong="H3068"\w* \w memory|strong="H8034"\w* \w was|strong="H3068"\w* \w written|strong="H3789"\w* \w before|strong="H6440"\w* \w him|strong="H6440"\w* \w for|strong="H6440"\w* \w those|strong="H8085"\w* \w who|strong="H3068"\w* \w feared|strong="H3372"\w* \w Yahweh|strong="H3068"\w* \w and|strong="H3068"\w* \w who|strong="H3068"\w* honored \w his|strong="H3068"\w* \w name|strong="H8034"\w*. +\v 17 \w They|strong="H3117"\w* \w shall|strong="H3068"\w* \w be|strong="H1961"\w* mine,” says \w Yahweh|strong="H3068"\w* \w of|strong="H1121"\w* \w Armies|strong="H6635"\w*, “\w my|strong="H3068"\w* \w own|strong="H1961"\w* \w possession|strong="H5459"\w* \w in|strong="H5921"\w* \w the|strong="H5921"\w* \w day|strong="H3117"\w* \w that|strong="H3117"\w* \w I|strong="H3117"\w* \w make|strong="H6213"\w*. \w I|strong="H3117"\w* \w will|strong="H3068"\w* \w spare|strong="H2550"\w* \w them|strong="H5921"\w*, \w as|strong="H3117"\w* \w a|strong="H3068"\w* \w man|strong="H1121"\w* \w spares|strong="H2550"\w* \w his|strong="H3068"\w* \w own|strong="H1961"\w* \w son|strong="H1121"\w* \w who|strong="H3068"\w* \w serves|strong="H5647"\w* \w him|strong="H5921"\w*. +\v 18 \w Then|strong="H7725"\w* \w you|strong="H7725"\w* \w shall|strong="H7563"\w* \w return|strong="H7725"\w* \w and|strong="H7725"\w* \w discern|strong="H7200"\w* between \w the|strong="H7200"\w* \w righteous|strong="H6662"\w* \w and|strong="H7725"\w* \w the|strong="H7200"\w* \w wicked|strong="H7563"\w*, between \w him|strong="H7725"\w* \w who|strong="H6662"\w* \w serves|strong="H5647"\w* \w God|strong="H3808"\w* \w and|strong="H7725"\w* \w him|strong="H7725"\w* \w who|strong="H6662"\w* doesn’t \w serve|strong="H5647"\w* \w him|strong="H7725"\w*. +\c 4 +\p +\v 1 “For behold, the day comes, burning like \w a|strong="H3068"\w* furnace, when all the proud and all who work wickedness will be stubble. The day that comes will burn them up,” says \w Yahweh|strong="H3068"\w* of Armies, “so that it will leave them neither root nor branch. +\v 2 But to you who fear my name shall the sun of righteousness arise with healing in its wings. You will go out and leap like calves of the stall. +\v 3 You shall tread down the wicked; for they will be ashes under the soles of your feet in the day that I make,” says \w Yahweh|strong="H3068"\w* of Armies. +\p +\v 4 “Remember the law of Moses my servant, which I commanded to him in Horeb for all Israel, even statutes and ordinances. +\p +\v 5 Behold, I will send you Elijah the prophet before the great and terrible day of \w Yahweh|strong="H3068"\w* comes. +\v 6 He will turn the hearts of the fathers to the children and the hearts of the children to their fathers, lest I come and strike the earth with \w a|strong="H3068"\w* curse.” \ No newline at end of file diff --git a/bibles/eng-web_usfm/41-TOBeng-web.usfm b/bibles/eng-web_usfm/41-TOBeng-web.usfm new file mode 100644 index 0000000..33a107c --- /dev/null +++ b/bibles/eng-web_usfm/41-TOBeng-web.usfm @@ -0,0 +1,406 @@ +\id TOB - Tobit +\h Tobit +\toc1 Tobit +\toc2 Tobit +\toc3 Tob +\mt1 Tobit +\ip \bk Tobit\bk* is recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches. +\c 1 +\p +\v 1 The book of the words of Tobit, the son of Tobiel, the son of Ananiel, the son of Aduel, the son of Gabael, of the seed of Asiel, of the tribe of Naphtali; +\v 2 who in the days of Enemessar\f + \fr 1:2 \ft That is, \fqa Shalmaneser. \ft Compare 2 Kings 17:3, 23. \f* king of the Assyrians was carried away captive out of Thisbe, which is on the right hand of Kedesh Naphtali in Galilee above Asher. +\p +\v 3 I, Tobit walked in the ways of truth and righteousness all the days of my life, and I did many alms deeds to my kindred and my nation, who went with me into the land of the Assyrians, to Nineveh. +\v 4 When I was in my own country, in the land of Israel, while I was yet young, all the tribe of Naphtali my father fell away from the house of Jerusalem, which was chosen out of all the tribes of Israel, that all the tribes should sacrifice there, and the temple of the habitation of the Most High was hallowed and built therein for all ages. +\v 5 All the tribes which fell away together sacrificed to the heifer Baal, and so did the house of Naphtali my father. +\v 6 I alone went often to Jerusalem at the feasts, as it has been ordained to all Israel by an everlasting decree, having the first fruits and the tenths of my increase, and that which was first shorn; and I gave them at the altar to the priests the sons of Aaron. +\v 7 I gave a tenth part of all my increase to the sons of Levi, who ministered at Jerusalem. A second tenth part I sold away, and went, and spent it each year at Jerusalem. +\v 8 A third tenth I gave to them to whom it was appropriate, as Deborah my father’s mother had commanded me, because I was left an orphan by my father. +\v 9 When I became a man, I took as wife Anna of the seed of our own family. With her, I became the father of Tobias. +\v 10 When I was carried away captive to Nineveh, all my kindred and my relatives ate of the bread of the Gentiles; +\v 11 but I kept myself from eating, +\v 12 because I remembered God with all my soul. +\v 13 So the Most High gave me grace and favor\f + \fr 1:13 \ft Gr. \fqa beauty. \f* in the sight of Enemessar, and I was his purchasing agent. +\v 14 And I went into Media, and left ten talents of silver in trust with Gabael, the brother of Gabrias, at Rages of Media. +\p +\v 15 And when Enemessar was dead, Sennacherib his son reigned in his place. In his time, the highways were troubled,\f + \fr 1:15 \ft Gr. \fqa his highways were troubled. \f* and I could no longer go into Media. +\v 16 In the days of Enemessar, I did many alms deeds to my kindred: I gave my bread to the hungry, +\v 17 and my garments to the naked. If I saw any of my race dead, and thrown out on\f + \fr 1:17 \ft Some ancient authorities read \fqa behind. \f* the wall of Ninevah, I buried him. +\v 18 If Sennacherib the king killed any, when he came fleeing from Judea, I buried them privately; for in his wrath he killed many; and the bodies were sought for by the king, and were not found. +\v 19 But one of the Ninevites went and showed to the king concerning me, how I buried them, and hid myself; and when I knew that I was sought for to be put to death, I withdrew myself for fear. +\v 20 And all my goods were forcibly taken away, and there was nothing left to me, save my wife Anna and my son Tobias. +\v 21 No more than fifty five days passed before two of his sons killed him, and they fled into the mountains of Ararat. And Sarchedonus\f + \fr 1:21 \ft That is, \fqa Esar-haddon, \ft and so in verse 22. \f* his son reigned in his place; and he appointed Achiacharus my brother Anael’s son over all the accounts of his kingdom, and over all his affairs. +\v 22 Achiacharus requested me, and I came to Nineveh. Now Achiacharus was cupbearer, keeper of the signet, steward, and overseer of the accounts. Sarchedonus appointed him next to himself, but he was my brother’s son. +\c 2 +\p +\v 1 Now when I had come home again, and my wife Anna was restored to me, and my son Tobias, in the feast of Pentecost, which is the holy feast of the seven weeks, there was a good dinner prepared for me, and I sat down to eat. +\v 2 I saw abundance of meat, and I said to my son, “Go and bring whatever poor man you find of our kindred, who is mindful of the Lord. Behold, I wait for you.” +\p +\v 3 Then he came, and said, “Father, one of our race is strangled, and has been cast out in the marketplace.” +\v 4 Before I had tasted anything, I sprang up, and took him up into a chamber until the sun had set. +\v 5 Then I returned, washed myself, ate my bread in heaviness, +\v 6 and remembered the prophecy of Amos, as he said, +\q1 \x + \xo 2:6 \xt Amos 8:10\x*“Your feasts will be turned into mourning, +\q2 and all your mirth into lamentation. +\p +\v 7 So I wept: and when the sun had set, I went and dug a grave, and buried him. +\v 8 My neighbors mocked me, and said, “He is no longer afraid to be put to death for this matter; and yet he fled away. Behold, he buries the dead again.” +\v 9 The same night I returned from burying him, and slept by the wall of my courtyard, being polluted; and my face was uncovered. +\v 10 I didn’t know that there were sparrows in the wall. My eyes were open and the sparrows dropped warm dung into my eyes, and white films came over my eyes. I went to the physicians, and they didn’t help me; but Achiacharus nourished me, until I went\f + \fr 2:10 \ft Some authorities read \fqa until he went. \f* into Elymais. +\p +\v 11 My wife Anna wove cloth in the women’s chambers, +\v 12 and sent the work back to the owners. They on their part paid her wages, and also gave her a kid. +\v 13 But when it came to my house, it began to cry, and I said to her, “Where did this kid come from? Is it stolen? Give it back to the owners; for it is not lawful to eat anything that is stolen.” +\v 14 But she said, “It has been given to me for a gift more than the wages.” +\p I didn’t believe her, and I asked her to return it to the owners; and I was ashamed of her. +\p But she answered and said to me, “Where are your alms and your righteous deeds? Behold, you and all your works are known.\f + \fr 2:14 \ft Gr. \fqa all things are known with you. \f*” +\c 3 +\p +\v 1 I was grieved and wept, and prayed in sorrow, saying, +\p +\v 2 “O Lord, you are righteous, and all your works and all your ways are mercy and truth, and you judge true and righteous judgment forever. +\v 3 Remember me, and look at me. Don’t take vengeance on me for my sins and my ignorances, and the sins of my fathers who sinned before you. +\v 4 For they disobeyed your commandments. You gave us as plunder, for captivity, for death, and for a proverb of reproach to all the nations among whom we are dispersed. +\v 5 Now your judgments are many and true, that you should deal with me according to my sins and the sins of my fathers, because we didn’t keep your commandments, for we didn’t walk in truth before you. +\v 6 Now deal with me according to that which is pleasing in your sight. Command my spirit to be taken from me, that I may be released, and become earth. For it is more profitable for me to die rather than to live, because I have heard false reproaches, and there is much sorrow in me. Command that I be released from my distress, now, and go to the everlasting place. Don’t turn your face away from me.” +\p +\v 7 The same day it happened to Sarah the daughter of Raguel in Ecbatana of Media, that she also was reproached by her father’s maidservants; +\v 8 because that she had been given to seven husbands, and Asmodaeus the evil spirit\f + \fr 3:8 \ft Gr. \fqa demon. \f* killed them, before they had lain with her. And they said to her, “Do you not know that you strangle your husbands? You have had already seven husbands, and you haven’t borne the name of any one of them. +\v 9 Why do you scourge us? If they are dead, go your ways with them. Let us never see either son or daughter from you.” +\v 10 When she heard these things, she was grieved exceedingly, so that she thought about hanging herself. Then she said, “I am the only daughter of my father. If I do this, it will be a reproach to him, and I will bring down his old age with sorrow to the grave.\f + \fr 3:10 \ft Gr. \fqa Hades. \f*” +\v 11 Then she prayed by the window, and said, “Blessed are you, O Lord my God, and blessed is your holy and honorable name forever! Let all your works praise you forever! +\v 12 And now, Lord, I have set my eyes and my face toward you. +\v 13 Command that I be released from the earth, and that I no longer hear reproach. +\v 14 You know, Lord, that I am pure from all sin with man, +\v 15 and that I never polluted my name or the name of my father in the land of my captivity. I am the only daughter of my father, and he has no child that will be his heir, nor brother near him, nor son belonging to him, that I should keep myself for a wife to him. Seven husbands of mine are dead already. Why should I live? If it doesn’t please you to kill me, command some regard to be had of me, and pity taken of me, and that I hear no more reproach.” +\p +\v 16 The prayer of both was heard before the glory of the great God. +\v 17 Raphael also was sent to heal them both, to scale away the white films from Tobit’s eyes, and to give Sarah the daughter of Raguel for a wife to Tobias the son of Tobit; and to bind Asmodaeus the evil spirit\f + \fr 3:17 \ft Gr. \fqa demon. \f*; because it belonged to Tobias that he should inherit her. At that very time, Tobit returned and entered into his house, and Sarah the daughter of Raguel came down from her upper chamber. +\c 4 +\p +\v 1 In that day Tobit remembered the money which he had left in trust with Gabael in Rages of Media, +\v 2 and he said to himself, I have asked for death; why do I not call my son Tobias, that I may explain to him about the money before I die? +\v 3 And he called him, and said, +\p “My child, if I die, bury me. Don’t despise your mother. Honor her all the days of your life, and do that which is pleasing to her, and don’t grieve her. +\v 4 Remember, my child, that she has seen many dangers for you, when you were in her womb. When she is dead, bury her by me in one grave. +\v 5 My child, be mindful of the Lord our God all your days, and don’t let your will be set to sin and to transgress his commandments: do righteousness all the days of your life, and don’t follow the ways of unrighteousness. +\v 6 For if you do what is true, your deeds will prosperously succeed for you, and for all those who do righteousness. +\v 7 Give alms from your possessions. When you give alms, don’t let your eye be envious. Don’t turn away your face from any poor man, and the face of God won’t be turned away from you. +\v 8 As your possessions are, give alms of it according to your abundance. If you have little, don’t be afraid to give alms according to that little; +\v 9 for you lay up a good treasure for yourself against the day of necessity; +\v 10 because alms-giving delivers from death, and doesn’t allow you to come into darkness. +\v 11 Alms is a good gift in the sight of the Most High for all that give it. +\v 12 Beware, my child, of all fornication, and take first a wife of the seed of your fathers. Don’t take a strange wife, who is not of your father’s tribe; for we are the descendants of the prophets. Remember, my child, that Noah, Abraham, Isaac, and Jacob, our fathers of old time, all took wives of their kindred, and were blessed in their children, and their seed will inherit the land. +\v 13 And now, my child, love your kindred, and don’t scorn your kindred and the sons and the daughters of your people in your heart, to take a wife of them; for in scornfulness is destruction and much trouble, and in idleness is decay and great lack; for idleness is the mother of famine. +\v 14 Don’t let the wages of any man who works for you wait with you, but give it to him out of hand. If you serve God, you will be rewarded. Take heed to yourself, my child, in all your works, and be discreet in all your behavior. +\v 15 And what you yourself hate, do to no man. Don’t drink wine to drunkenness, and don’t let drunkenness go with you on your way. +\v 16 Give of your bread to the hungry, and of your garments to those who are naked. Give alms from all your abundance. Don’t let your eye be envious when you give alms. +\v 17 Pour out your bread on the burial\f + \fr 4:17 \ft Or, \fqa tomb \f* of the just, and give nothing to sinners. +\v 18 Ask counsel of every man who is wise, and don’t despise any counsel that is profitable. +\v 19 Bless the Lord your God at all times, and ask of him that your ways may be made straight, and that all your paths and counsels may prosper; for every nation has no counsel; but the Lord himself gives all good things, and he humbles whom he will, as he will. And now, my child, remember my commandments, and let them not be blotted out of your mind. +\v 20 And now I explain to you about the ten talents of silver, which I left in trust with Gabael the son of Gabrias at Rages of Media. +\v 21 And fear not, my child, because we are made poor. You have much wealth, if you fear God, and depart from all sin, and do that which is pleasing in his sight.” +\c 5 +\p +\v 1 Then Tobias answered and said to him, “Father, I will do all things, whatever you have commanded me. +\v 2 But how could I receive the money, since I don’t know him?” +\p +\v 3 He gave him the handwriting, and said to him, “Seek a man who will go with you, and I will give him wages, while I still live; and go and receive the money.” +\p +\v 4 He went to seek a man, and found Raphael who was an angel; +\v 5 and he didn’t know it. He said to him, “Can I go with you to Rages of Media? Do you know those places well?” +\p +\v 6 The angel said to him, “I will go with you. I know the way well. I have lodged with our brother Gabael.” +\p +\v 7 Tobias said to him, “Wait for me, and I will tell my father.” +\p +\v 8 He said to him, “Go, and don’t wait. And he went in and said to his father, “Behold, I have found someone who will go with me.” +\p But he said, “Call him to me, that I may know of what tribe he is, and whether he be a trustworthy man to go with you.” +\p +\v 9 So he called him, and he came in, and they saluted one another. +\v 10 And Tobit said to him, “Brother, of what tribe and of what family are you? Tell me.” +\p +\v 11 He said to him, “Do you seek a tribe and a family, or a hired man which will go with your son?” +\p And Tobit said to him, “I want to know, brother, your kindred and your name.” +\p +\v 12 And he said, “I am Azarias, the son of Ananias the great, of your kindred.” +\p +\v 13 And he said to him, “Welcome, brother. Don’t be angry with me, because I sought to know your tribe and family. You are my brother, of an honest and good lineage; for I knew Ananias and Jathan, the sons of Shemaiah the great, when we went together to Jerusalem to worship, and offered the firstborn, and the tenths of our increase; and they didn’t go astray in the error of our kindred. My brother, you are of a great stock. +\v 14 But tell me, what wages shall I give you? A drachma a day, and those things that be necessary for you, as to my son? +\v 15 And moreover, if you both return safe and sound, I will add something to your wages.” +\p +\v 16 And so they agreed. And he said to Tobias, “Prepare yourself for the journey. May God prosper you.” So his son prepared what was needful for the journey, and his father said to him, “Go with this man; but God, who dwells in heaven, will prosper your journey. May his angel go with you.” +\p Then they both departed, and the young man’s dog went with them. +\v 17 But Anna his mother wept, and said to Tobit, “Why have you sent away our child? Isn’t he the staff of our hand, in going in and out before us? +\v 18 Don’t be greedy to add money to money; but let it be as refuse compared to our child. +\v 19 For what the Lord has given us to live is enough for us.” +\p +\v 20 Tobit said to her, “Don’t worry, my sister. He will return safe and sound, and your eyes will see him. +\v 21 For a good angel will go with him. His journey will be prospered, and he will return safe and sound.” +\p +\v 22 So she stopped weeping. +\c 6 +\p +\v 1 Now as they went on their journey, they came at evening to the river Tigris, and they lodged there. +\v 2 But the young man went down to wash himself, and a fish leaped out of the river, and would have swallowed up the young man. +\v 3 But the angel said to him, “Grab the fish!” +\p So the young man grabbed the fish, and hauled it up onto the land. +\p +\v 4 And the angel said to him, “Cut the fish open, and take the heart, the liver, and the bile, and keep them with you.” +\v 5 And the young man did as the angel commanded him; but they roasted the fish, and ate it. And they both went on their way, till they drew near to Ecbatana. +\p +\v 6 The young man said to the angel, “Brother Azarias, of what use is the heart, the liver, and the bile of the fish?” +\p +\v 7 He said to him, “About the heart and the liver: If a demon or an evil spirit troubles anyone, we must burn those and make smoke of them before the man or the woman, and the affliction will flee. +\v 8 But as for the bile, it is good to anoint a man that has white films in his eyes, and he will be healed.” +\p +\v 9 But when they drew near to Rages, +\v 10 the angel said to the young man, “Brother, today we will lodge with Raguel. He is your kinsman. He has an only daughter named Sarah. I will speak about her, that she should be given to you for a wife. +\v 11 For her inheritance belongs to you, and you only are of her kindred. +\v 12 The maid is fair and wise. And now hear me, and I will speak to her father. When we return from Rages we will celebrate the marriage; for I know that Raguel may in no way marry her to another according to the law of Moses, or else he would be liable to death, because it belongs to you to take the inheritance, rather than any other.” +\p +\v 13 Then the young man said to the angel, “Brother Azarias, I have heard that this maid has been given to seven men, and that they all perished in the bride-chamber. +\v 14 Now I am the only son of my father, and I am afraid, lest I go in and die, even as those before me. For a demon loves her, which harms no man, but those which come to her. Now I fear lest I die, and bring my father’s and my mother’s life to the grave with sorrow because of me. They have no other son to bury them.” +\p +\v 15 But the angel said to him, “Don’t you remember the words which your father commanded you, that you should take a wife of your own kindred? Now hear me, brother; for she will be your wife. Don’t worry about the demon; for this night she will be given you as wife. +\v 16 And when\f + \fr 6:16 \ft Gr. \fqa if. \f* you come into the bride-chamber, you shall take the ashes of incense, and shall lay upon them some of the heart and liver of the fish, and shall make smoke with them. +\v 17 The demon will smell it, and flee away, and never come again any more. But when you go near to her, both of you rise up, and cry to God who is merciful. He will save you, and have mercy on you. Don’t be afraid, for she was prepared for you from the beginning; and you will save her, and she will go with you. And I suppose that you will have children with her.” +\p When Tobias heard these things, he loved her, and his soul was strongly joined to her. +\c 7 +\p +\v 1 They came to Ecbatana, and arrived at the house of Raguel. But Sarah met them; and she greeted them, and they her. Then she brought them into the house. +\v 2 Raguel said to Edna his wife, “This young man really resembles Tobit my cousin!” +\v 3 And Raguel asked them, “Where are you two from, kindred?” +\p They said to him, “We are of the sons of Naphtali, who are captives in Nineveh.” +\p +\v 4 He said to them, “Do you know Tobit our brother?” +\p They said, “We know him.” +\p Then he said to them, “Is he in good health?” +\p +\v 5 They said, “He is both alive, and in good health.” Tobias said, “He is my father.” +\p +\v 6 And Raguel sprang up, and kissed him, wept, +\v 7 blessed him, and said to him, “You are the son of an honest and good man.” When he had heard that Tobit had lost his sight, he was grieved, and wept; +\v 8 and Edna his wife and Sarah his daughter wept. They received them gladly; and they killed a ram of the flock, and served them meat. +\p But Tobias said to Raphael, “Brother Azarias, speak of those things of which you talked about in the way, and let the matter be finished.” +\p +\v 9 So he communicated the thing to Raguel. Raguel said to Tobias, “Eat, drink, and make merry: +\v 10 for it belongs to you to take my child. However I will tell you the truth. +\v 11 I have given my child to seven men of our relatives, and whenever they came in to her, they died in the night. But for the present be merry.” +\p And Tobias said, “I will taste nothing here, until you all make a covenant and enter into that covenant with me.” +\p +\v 12 Raguel said, “Take her to yourself from now on according to custom. You are her relative, and she is yours. The merciful God will give all good success to you.” +\v 13 And he called his daughter Sarah, and took her by the hand, and gave her to be wife of Tobias, and said, “Behold, take her to yourself after the law of Moses, and lead her away to your father.” And he blessed them. +\v 14 He called Edna his wife, then took a book, wrote a contract, and sealed it. +\v 15 Then they began to eat. +\p +\v 16 And Raguel called his wife Edna, and said to her, “Sister, prepare the other chamber, and bring her in there.” +\v 17 She did as he asked her, and brought her in there. She wept, and she received the tears of her daughter, and said to her, +\v 18 “Be comforted, my child. May the Lord of heaven and earth give you favor\f + \fr 7:18 \ft Many ancient authorities read \fqa joy. \f* for this your sorrow. Be comforted, my daughter.” +\c 8 +\p +\v 1 When they had finished their supper, they brought Tobias in to her. +\v 2 But as he went, he remembered the words of Raphael, and took the ashes of the incense, and put the heart and the liver of the fish on them, and made smoke with them. +\v 3 When the demon smelled that smell, it fled into the uppermost parts of Egypt, and the angel bound him. +\v 4 But after they were both shut in together, Tobias rose up from the bed, and said, “Sister, arise, and let’s pray that the Lord may have mercy on us.” +\v 5 And Tobias began to say, “Blessed are you, O God of our fathers, and blessed is your holy and glorious name forever. Let the heavens bless you, and all your creatures. +\v 6 You made Adam, and gave him Eve his wife for a helper and support. From them came the seed of men. You said, it is not good that the man should be alone. Let’s make him a helper like him. +\v 7 And now, O Lord, I take not this my sister for lust, but in truth. Command that I may find mercy and grow old with her.” +\p +\v 8 She said with him, “Amen.” And they both slept that night. +\p +\v 9 Raguel arose, and went and dug a grave, +\v 10 saying, “Lest he also should die.” +\v 11 And Raguel came into his house, +\v 12 and said to Edna his wife, “Send one of the maidservants, and let them see if he is alive. If not, we will bury him, and no man will know it.” +\p +\v 13 So the maidservant opened the door, and went in, and found them both sleeping, +\v 14 and came out, and told them that he was alive. +\p +\v 15 Then Raguel blessed God, saying, “Blessed are you, O God, with all pure and holy blessing! Let your saints bless you, and all your creatures! Let all your angels and your elect bless you forever! +\v 16 Blessed are you, because you have made me glad; and it has not happened to me as I suspected; but you have dealt with us according to your great mercy. +\v 17 Blessed are you, because you have had mercy on two that were the only begotten children of their parents. Show them mercy, O Lord. Fulfill their life in health with gladness and mercy. +\p +\v 18 He commanded his servants to fill the grave. +\v 19 He kept the wedding feast for them fourteen days. +\v 20 Before the days of the wedding feast were finished, Raguel sware to him, that he should not depart till the fourteen days of the wedding feast were fulfilled; +\v 21 and that then he should take half of his goods, and go in safety to his father; and the rest, said he, when my wife and I die. +\c 9 +\p +\v 1 And Tobias called Raphael, and said to him, +\v 2 “Brother Azarias, take with you a servant and two camels, and go to Rages of Media to Gabael, and receive the money for me, and bring him to the wedding feast, +\v 3 because Raguel has sworn that I must not depart. +\v 4 My father counts the days; and if I wait long, he will be very grieved. +\v 5 So Raphael went on his way, and lodged with Gabael, and gave him the handwriting; so he brought forth the bags with their seals, and gave them to him. +\v 6 Then they rose up early in the morning together, and came to the wedding feast. Tobias blessed his wife. +\c 10 +\p +\v 1 Tobit his father counted every day. When the days of the journey were expired, and they didn’t come, +\v 2 he said, “Is he perchance detained?\f + \fr 10:2 \ft Many ancient authorities read \fqa “Are they perchance put to shame?” \f* Or is Gabael perchance dead, and there is no one to give him the money?” +\v 3 He was very grieved. +\p +\v 4 But his wife said to him, “The child has perished, seeing he waits long.” She began to bewail him, and said, +\v 5 “I care about nothing,\f + \fr 10:5 \ft Some authorities read \fqa “Woe is me.”\f* my child, since I have let you go, the light of my eyes.” +\v 6 Tobit said to her, “Hold your peace. Don’t worry. He is in good health.” +\p +\v 7 And she said to him, “Hold your peace. Don’t deceive me. My child has perished.” And she went out every day into the way by which they went, and ate no bread in the day-time, and didn’t stop bewailing her son Tobias for whole nights, until the fourteen days of the wedding feast were expired, which Raguel had sworn that he should spend there. +\p Then Tobias said to Raguel, “Send me away, for my father and my mother look no more to see me.” +\v 8 But his father-in-law said to him, “Stay with me, and I will send to your father, and they will declare to him how things go with you.” +\v 9 Tobias said, “No. Send me away to my father.” +\p +\v 10 Raguel arose, and gave him Sarah his wife, and half his goods, servants and cattle and money; +\v 11 and he blessed them, and sent them away, saying, “The God of heaven will prosper you, my children, before I die.” +\v 12 And he said to his daughter, “Honor your father-in-law and your mother-in-law. They are now your parents. Let me hear a good report of you.” Then he kissed her. +\p Edna said to Tobias, “May the Lord of heaven restore you, dear brother, and grant to me that I may see your children of my daughter Sarah, that I may rejoice before the Lord. Behold, I commit my daughter to you in special trust. Don’t cause her grief. +\c 11 +\p +\v 1 After these things Tobias also went his way, blessing God because he had prospered his journey; and he blessed Raguel and Edna his wife. Then he went on his way until they drew near to Nineveh. +\v 2 Raphael said to Tobias, “Don’t you know, brother, how you left your father? +\v 3 Let’s run forward before your wife, and prepare the house. +\v 4 But take in your hand the bile of the fish.” So they went their way, and the dog went after them. +\p +\v 5 Anna sat looking around toward the path for her son. +\v 6 She saw him coming, and said to his father, “Behold, your son is coming with the man that went with him!” +\p +\v 7 Raphael said, “I know, Tobias, that your father will open his eyes. +\v 8 Therefore anoint his eyes with the bile, and being pricked with it, he will rub, and will make the white films fall away. Then he will see you.” +\p +\v 9 Anna ran to him, and fell upon the neck of her son, and said to him, “I have seen you, my child! I am ready to die.” They both wept. +\p +\v 10 Tobit went toward the door and stumbled; but his son ran to him, +\v 11 and took hold of his father. He rubbed the bile on his father’s eyes, saying, “Cheer up, my father.” +\v 12 When his eyes began to hurt, he rubbed them. +\v 13 Then the white films peeled away from the corners of his eyes; and he saw his son, and fell upon his neck. +\p +\v 14 He wept, and said, “Blessed are you, O God, and blessed is your name forever! Blessed are all your holy angels! +\v 15 For you scourged, and had mercy on me. Behold, I see my son Tobias.” And his son went in rejoicing, and told his father the great things that had happened to him in Media. +\p +\v 16 Tobit went out to meet his daughter-in-law at the gate of Nineveh, rejoicing and blessing God. Those who saw him go marveled, because he had received his sight. +\v 17 Tobit gave thanks before them, because God had shown mercy on him. When Tobit came near to Sarah his daughter-in-law, he blessed her, saying, “Welcome, daughter! Blessed is God who has brought you to us, and blessed are your father and your mother.” And there was joy among all his kindred who were at Nineveh. +\v 18 Achiacharus and Nasbas his brother’s son came. +\v 19 Tobias’ wedding feast was kept seven days with great gladness. +\c 12 +\p +\v 1 And Tobit called his son Tobias, and said to him, “See, my child, that the man which went with you have his wages, and you must give him more.” +\p +\v 2 And he said to him, “Father, it is no harm to me to give him the half of those things which I have brought; +\v 3 for he has led me for you in safety, and he cured my wife, and brought my money, and likewise cured you.” +\p +\v 4 The old man said, “It is due to him.” +\p +\v 5 And he called the angel, and said to him, “Take half of all that you have brought.” +\p +\v 6 Then he called them both privately, and said to them, “Bless God, and give him thanks, and magnify him, and give him thanks in the sight of all that live, for the things which he has done with you. It is good to bless God and exalt his name, showing forth with honor the works of God. Don’t be slack to give him thanks. +\v 7 It is good to conceal the secret of a king, but to reveal gloriously the works of God. Do good, and evil won’t find you. +\v 8 Good is prayer with fasting, alms, and righteousness. A little with righteousness is better than much with unrighteousness. It is better to give alms than to lay up gold. +\v 9 Alms delivers from death, and it purges away all sin. Those who give alms and do righteousness will be filled with life; +\v 10 but those who sin are enemies to their own life. +\v 11 Surely I will conceal nothing from you. I have said, ‘It is good to conceal the secret of a king, but to reveal gloriously the works of God.’ +\v 12 And now, when you prayed, and Sarah your daughter-in-law, I brought the memorial of your prayer before the Holy One. When you buried the dead, I was with you likewise. +\v 13 And when you didn’t delay to rise up, and leave your dinner, that you might go and cover the dead, your good deed was not hidden from me. I was with you. +\v 14 And now God sent me to heal you and Sarah your daughter-in-law. +\v 15 I am Raphael, one of the seven holy angels which present the prayers of the saints and go in before the glory of the Holy One.” +\p +\v 16 And they were both troubled, and fell upon their faces; for they were afraid. +\v 17 And he said to them, “Don’t be afraid. You will all have peace; but bless God forever. +\v 18 For I came not of any favor of my own, but by the will of your God. Therefore bless him forever. +\v 19 All these days I appeared to you. I didn’t eat or drink, but you all saw a vision. +\v 20 Now give God thanks, because I ascend to him who sent me. Write in a book all the things which have been done.” +\v 21 Then they rose up, and saw him no more. +\v 22 They confessed the great and wonderful works of God, and how the angel of the Lord had appeared to them. +\c 13 +\p +\v 1 And Tobit wrote a prayer for rejoicing, and said, +\q1 “Blessed is God who lives forever! +\q2 Blessed is his kingdom! +\q1 +\v 2 For he scourges, and shows mercy. +\q2 He leads down to the grave,\f + \fr 13:2 \ft Gr. \fqa Hades. \f* and brings up again. +\q2 There is no one who will escape his hand. +\q1 +\v 3 Give thanks to him before the Gentiles, all you children of Israel! +\q2 For he has scattered us among them. +\q1 +\v 4 Declare his greatness, there. +\q2 Extol him before all the living, +\q1 because he is our Lord, +\q2 and God is our Father forever. +\q1 +\v 5 He will scourge us for our iniquities, and will again show mercy, +\q2 and will gather us out of all the nations among whom you are all scattered. +\q1 +\v 6 If you turn to him with your whole heart and with your whole soul, +\q2 to do truth before him, +\q1 then he will turn to you, +\q2 and won’t hide his face from you. +\q1 See what he will do with you. +\q2 Give him thanks with your whole mouth. +\q1 Bless the Lord of righteousness. +\q2 Exalt the everlasting King. +\q1 I give him thanks in the land of my captivity, +\q2 and show his strength and majesty to a nation of sinners. +\q1 Turn, you sinners, and do righteousness before him. +\q2 Who can tell if he will accept you and have mercy on you? +\q1 +\v 7 I exalt my God. +\q2 My soul exalts the King of heaven, +\q2 and rejoices in his greatness. +\q1 +\v 8 Let all men speak, +\q2 and let them give him thanks in Jerusalem. +\q1 +\v 9 O Jerusalem, the holy city, +\q2 he will scourge you for the works of your sons, +\q2 and will again have mercy on the sons of the righteous. +\q1 +\v 10 Give thanks to the Lord with goodness, +\q2 and bless the everlasting King, +\q1 that his tabernacle may be built in you again with joy, +\q2 and that he may make glad in you those who are captives, +\q2 and love in you forever those who are miserable. +\q1 +\v 11 Many nations will come from afar to the name of the Lord God +\q2 with gifts in their hands, even gifts to the King of heaven. +\q1 Generations of generations will praise you, +\q2 and sing songs of rejoicing. +\q1 +\v 12 All those who hate you are cursed. +\q2 All those who love you forever will be blessed. +\q1 +\v 13 Rejoice and be exceedingly glad for the sons of the righteous; +\q2 for they will be gathered together and will bless the Lord of the righteous. +\q1 +\v 14 Oh blessed are those who love you. +\q2 They will rejoice for your peace. +\q1 Blessed are all those who mourned for all your scourges; +\q2 because they will rejoice for you when they have seen all your glory. +\q1 They will be made glad forever. +\q2 +\v 15 Let my soul bless God the great King. +\q1 +\v 16 For Jerusalem will be built with sapphires, emeralds, and precious stones; +\q2 your walls and towers and battlements with pure gold. +\q1 +\v 17 The streets of Jerusalem will be paved with beryl, carbuncle, and stones of Ophir. +\q2 +\v 18 All her streets will say, “Hallelujah!” +\q2 and give praise, saying, “Blessed be God, who has exalted you forever!” +\c 14 +\p +\v 1 Then Tobit finished giving thanks. +\v 2 He was fifty-eight years old when he lost his sight. After eight years, he received it again. He gave alms and he feared the Lord God more and more, and gave thanks to him. +\p +\v 3 Now he grew very old; and he called his son with the six sons of his son, and said to him, “My child, take your sons. Behold, I have grown old, and am ready to depart out of this life. +\v 4 Go into Media, my child, for I surely believe all the things which Jonah the prophet spoke of Nineveh, that it will be overthrown, but in Media there will rather be peace for a season. Our kindred will be scattered in the earth from the good land. Jerusalem will be desolate, and the house of God in it will be burned up, and will be desolate for a time. +\v 5 God will again have mercy on them, and bring them back into the land, and they will build the house, but not like to the former house, until the times of that age are fulfilled. Afterward they will return from the places of their captivity, and build up Jerusalem with honor. The house of God will be built in it forever with a glorious building, even as the prophets spoke concerning it. +\v 6 And all the nations will turn to fear the Lord God truly, and will bury their idols. +\v 7 All the nations will bless the Lord, and his people will give thanks to God, and the Lord will exalt his people; and all those who love the Lord God in truth and righteousness will rejoice, showing mercy to our kindred. +\v 8 And now, my child, depart from Nineveh, because those things which the prophet Jonah spoke will surely come to pass. +\v 9 But you must keep the law and the ordinances, and show yourself merciful and righteous, that it may be well with you. +\v 10 Bury me decently, and your mother with me. Don’t stay at Nineveh. See, my child, what Aman did to Achiacharus who nourished him, how out of light he brought him into darkness, and all the recompense that he made him. Achiacharus was saved, but the other had his recompense, and he went down into darkness. Manasses gave alms, and escaped the snare of death which he set for him; but Aman fell into the snare, and perished. +\v 11 And now, my children, consider what alms does, and how righteousness delivers.” +\p While he was saying these things, he gave up the ghost in the bed; but he was one hundred fifty eight years old. Tobias buried him magnificently. +\v 12 When Anna died, he buried her with his father. But Tobias departed with his wife and his sons to Ecbatana to Raguel his father-in-law, +\v 13 and he grew old in honor, and he buried his father-in-law and mother-in-law magnificently, and he inherited their possessions, and his father Tobit’s. +\v 14 He died at Ecbatana of Media, being one hundred twenty seven years old. +\v 15 Before he died, he heard of the destruction of Nineveh, which Nebuchadnezzar and Ahasuerus took captive. Before his death, he rejoiced over Nineveh. \ No newline at end of file diff --git a/bibles/eng-web_usfm/42-JDTeng-web.usfm b/bibles/eng-web_usfm/42-JDTeng-web.usfm new file mode 100644 index 0000000..c5aea90 --- /dev/null +++ b/bibles/eng-web_usfm/42-JDTeng-web.usfm @@ -0,0 +1,505 @@ +\id JDT Judith +\h Judith +\toc1 Judith +\toc2 Judith +\toc3 Jdt +\mt1 Judith +\ip \bk Judith\bk* is recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches. +\c 1 +\p +\v 1 In the twelfth year of the reign of Nebuchadnezzar, who reigned over the Assyrians in Nineveh, the great city, in the days of Arphaxad, who reigned over the Medes in Ecbatana, +\v 2 and built around Ecbatana walls of hewn stones three cubits broad and six cubits long, and made the height of the wall seventy cubits, and its breadth fifty cubits, +\v 3 and set its towers at its gates one hundred cubits high, and its breadth in the foundation was sixty cubits, +\v 4 and made its gates, even gates that were raised to the height of seventy cubits, and their breadth forty cubits, for his mighty army to go out of, and the setting in array of his footmen— +\v 5 in those days King Nebuchadnezzar made war with King Arphaxad in the great plain. This plain is on the borders of Ragau. +\v 6 There came to meet him all that lived in the hill country, and all that lived by Euphrates, Tigris, and Hydaspes, and in the plain of Arioch the king of the Elymaeans. Many nations of the sons of Chelod assembled themselves to the battle. +\p +\v 7 And Nebuchadnezzar king of the Assyrians sent to all who lived in Persia, and to all who lived westward, to those who lived in Cilicia, Damascus, Libanus, Antilibanus, and to all who lived along the sea coast, +\v 8 and to those among the nations that were of Carmel and Gilead, and to the higher Galilee and the great plain of Esdraelon, +\v 9 and to all who were in Samaria and its cities, and beyond Jordan to Jerusalem, Betane, Chellus, Kadesh, the river of Egypt, Tahpanhes, Rameses, and all the land of Goshen, +\v 10 until you come above Tanis and Memphis, and to all that lived in Egypt, until you come to the borders of Ethiopia. +\v 11 All those who lived in all the land made light of the commandment of Nebuchadnezzar king of the Assyrians, and didn’t go with him to the war; for they were not afraid of him, but he was before them as one man. They turned away his messengers from their presence without effect, and with disgrace. +\p +\v 12 And Nebuchadnezzar was exceedingly angry with all this land, and he swore by his throne and kingdom that he would surely be avenged upon all the coasts of Cilicia, Damascus, and Syria, that he would kill with his sword all the inhabitants of the land of Moab, the children of Ammon, all Judea, and all who were in Egypt, until you come to the borders of the two seas. +\v 13 And he set the battle in array with his army against King Arphaxad in the seventeenth year; and he prevailed in his battle, and turned to flight all the army of Arphaxad, with all his horses and all his chariots. +\v 14 He took possession of his cities. He came to Ecbatana and took the towers, plundered its streets, and turned its beauty into shame. +\v 15 He took Arphaxad in the mountains of Ragau, struck him through with his darts, and utterly destroyed him to this day. +\v 16 He returned with them to Nineveh, he and all his company of sundry nations—an exceedingly great multitude of men of war. There he took his ease and banqueted, he and his army, for one hundred twenty days. +\c 2 +\p +\v 1 In the eighteenth year, the twenty-second day of the first month, there was talk in the house of Nebuchadnezzar king of the Assyrians that he should be avenged on all the land, even as he spoke. +\v 2 He called together all his servants and all his great men, and communicated with them his secret counsel, and with his own mouth, recounted the wickedness of all the land. +\v 3 They decreed to destroy all flesh which didn’t follow the word of his mouth. +\p +\v 4 It came to pass, when he had ended his counsel, Nebuchadnezzar king of the Assyrians called Holofernes the chief captain of his army, who was second to himself, and said to him, +\v 5 “The great king, the lord of all the earth, says: ‘Behold, you shall go out from my presence, and take with you men who trust in their strength, to one hundred twenty thousand footmen and twelve thousand horses with their riders. +\v 6 And you shall go out against all the west country, because they disobeyed the commandment of my mouth. +\v 7 You shall declare to them that they should prepare earth and water, because I will go out in my wrath against them, and will cover the whole face of the earth with the feet of my army, who will plunder them. +\v 8 Their slain will fill their valleys and brooks, and the river will be filled with their dead until it overflows. +\v 9 I will lead them as captives to the utmost parts of all the earth. +\v 10 But you shall go forth, and take all their coasts for me first. If they will yield themselves to you,\f + \fr 2:10 \ft Gr. \fqa they will yield...and you shall reserve.\f* then you must reserve them for me until the day of their reproof. +\v 11 As for those who resist, your eye shall not spare; but you shall give them up to be slain and to be plundered in all your land. +\v 12 For as I live, and by the power of my kingdom, I have spoken, and I will do this with my hand. +\v 13 Moreover, you shall not transgress anything of the commandments of your lord, but you shall surely accomplish them, as I have commanded you. You shall not defer to do them.’” +\p +\v 14 So Holofernes went out from the presence of his lord, and called all the governors, the captains, and officers of the army of Asshur. +\v 15 He counted chosen men for the battle, as his lord had commanded him, to one hundred twenty thousand, with twelve thousand archers on horseback. +\v 16 He arranged them as a great multitude is ordered for the war. +\v 17 He took camels, donkeys, and mules for their baggage, an exceedingly great multitude, and sheep, oxen, and goats without number for their provision, +\v 18 and a large supply of rations for every man, and a huge amount of gold and silver out of the king’s house. +\v 19 He went out, he and all his army, on their journey, to go before King Nebuchadnezzar, and to cover all the face of the earth westward with their chariots, horsemen, and chosen footmen. +\v 20 A great company of various nations went out with them like locusts and like the sand of the earth. For they could not be counted by reason of their multitude. +\p +\v 21 And they departed out of Nineveh three days’ journey toward the plain of Bectileth, and encamped from Bectileth near the mountain which is at the left hand of the Upper Cilicia. +\v 22 And he took all his army, his footmen, horsemen, and chariots, and went away from there into the hill country, +\v 23 and destroyed Put and Lud, and plundered all the children of Rasses and the children of Ishmael, which were along the wilderness to the south of the land of the Chellians. +\v 24 And he went over Euphrates, and went through Mesopotamia, and broke down all the high cities that were upon the river Arbonai, until you come to the sea. +\v 25 And he took possession of the borders of Cilicia, and killed all who resisted him, and came to the borders of Japheth, which were toward the south, opposite Arabia. +\v 26 He surrounded all the children of Midian, and set their tents on fire, and plundered their sheepfolds. +\v 27 He went down into the plain of Damascus in the days of wheat harvest, and set all their fields on fire, and utterly destroyed their flocks and herds, plundered their cities, laid their plains waste, and struck all their young men with the edge of the sword. +\p +\v 28 And the fear and the dread of him fell upon those who lived on the sea coast, upon those who were in Sidon and Tyre, those who lived in Sur and Ocina, and all who lived in Jemnaan. Those who lived in Azotus and Ascalon feared him exceedingly. +\c 3 +\p +\v 1 And they sent to him messengers with words of peace, saying, +\v 2 “Behold, we the servants of Nebuchadnezzar the great king lie before you. Use us as it is pleasing in your sight. +\v 3 Behold, our dwellings, and all our country, and all our fields of wheat, and our flocks and herds, and all the sheepfolds of our tents, lie before your face. Use them as it may please you. +\v 4 Behold, even our cities and those who dwell in them are your servants. Come and deal with them as it is good in your eyes.” +\p +\v 5 So the men came to Holofernes, and declared to him according to these words. +\p +\v 6 He came down toward the sea coast, he and his army, and set garrisons in the high cities, and took out of them chosen men for allies. +\v 7 They received him, they and all the country round about them, with garlands and dances and timbrels. +\v 8 He cast down all their borders, and cut down their sacred groves. It had been given to him to destroy all the gods of the land, that all the nations would worship Nebuchadnezzar only, and that all their tongues and their tribes would call upon him as a god. +\p +\v 9 Then he came toward Esdraelon near to Dotaea, which is opposite the great ridge of Judea. +\v 10 He encamped between Geba and Scythopolis. He was there a whole month, that he might gather together all the baggage of his army. +\c 4 +\p +\v 1 The children of Israel who lived in Judea heard all that Holofernes the chief captain of Nebuchadnezzar king of the Assyrians had done to the nations, and how he had plundered all their temples and destroyed them utterly. +\v 2 They were exceedingly afraid at his approach, and were troubled for Jerusalem and for the temple of the Lord their God; +\v 3 because they had newly come up from the captivity, and all the people of Judea were recently gathered together; and the vessels, the altar, and the house were sanctified after being profaned. +\p +\v 4 And they sent into every coast of Samaria, to Konae, to Beth-horon, Belmaim, Jericho, to Choba, Aesora, and to the valley of Salem; +\v 5 and they occupied beforehand all the tops of the high mountains, fortified the villages that were in them, and stored supplies for the provision of war, for their fields were newly reaped. +\v 6 Joakim the high priest, who was in those days at Jerusalem, wrote to those who lived in Bethulia and Betomesthaim, which is opposite Esdraelon toward the plain that is near to Dothaim, +\v 7 charging them to seize upon the ascents of the hill country; because by them was the entrance into Judea, and it was easy to stop them from approaching, inasmuch as the approach was narrow, with space for two men at the most. +\v 8 And the children of Israel did as Joakim the high priest had commanded them, as did the senate of all the people of Israel, which was in session at Jerusalem. +\p +\v 9 And every man of Israel cried to God with great earnestness, and with great earnestness they humbled their souls. +\v 10 They, their wives, their children, their cattle, and every sojourner, hireling, and servant bought with their money put sackcloth on their loins. +\v 11 Every man and woman of Israel, including the little children and the inhabitants of Jerusalem, fell prostrate before the temple, cast ashes upon their heads, and spread out their sackcloth before the Lord. They put sackcloth around the altar. +\v 12 They cried to the God of Israel earnestly with one consent, that he would not give their children as prey, their wives as plunder, the cities of their inheritance to destruction, and the sanctuary to being profaned and being made a reproach, for the nations to rejoice at. +\v 13 The Lord heard their voice, and looked at their affliction. The people continued fasting many days in all Judea and Jerusalem before the sanctuary of the Lord Almighty. +\v 14 And Joakim the high priest, and all the priests who stood before the Lord, and those who ministered to the Lord, had their loins dressed in sackcloth and offered the continual burnt offering, the vows, and the free gifts of the people. +\v 15 They had ashes on their turbans. They cried to the Lord with all their power, that he would look upon all the house of Israel for good. +\c 5 +\p +\v 1 Holofernes, the chief captain of the army of Asshur, was told that the children of Israel had prepared for war, had shut up the passages of the hill country, had fortified all the tops of the high hills, and had set up barricades in the plains. +\v 2 Then he was exceedingly angry, and he called all the princes of Moab, the captains of Ammon, and all the governors of the sea coast, +\v 3 and he said to them, “Tell me now, you sons of Canaan, who are these people who dwell in the hill country? What are the cities that they inhabit? How large is their army? Where is their power and their strength? What king is set over them, to be the leader of their army? +\v 4 Why have they turned their backs, that they should not come and meet me, more than all who dwell in the west?” +\p +\v 5 Then Achior, the leader of all the children of Ammon, said to him, “Let my lord now hear a word from the mouth of your servant, and I will tell you the truth concerning these people who dwell in this hill country, near to the place where you dwell. No lie will come out of the mouth of your servant. +\v 6 These people are descended from the Chaldeans. +\v 7 They sojourned before this in Mesopotamia, because they didn’t want to follow the gods of their fathers, which were in the land of the Chaldeans. +\v 8 They departed from the way of their parents, and worshiped the God of heaven, the God whom they knew. Their parents cast them out from the face of their gods, and they fled into Mesopotamia and sojourned there many days. +\v 9 Then their God commanded them to depart from the place where they sojourned, and to go into the land of Canaan. They lived there, and prospered with gold and silver, and with exceedingly much cattle. +\v 10 Then they went down into Egypt, for a famine covered all the land of Canaan. They sojourned there until they had grown up. They became a great multitude there, so that one could not count the population of their nation. +\v 11 Then the king of Egypt rose up against them, and dealt subtly with them, and brought them low, making them labor in brick,\f + \fr 5:11 \ft Some authorities read \fqa and he brought them low with clay and brick, etc. \f* and made them slaves. +\v 12 They cried to their God, and he struck all the land of Egypt with incurable plagues; so the Egyptians cast them out of their sight. +\v 13 God dried up the Red sea before them, +\v 14 and brought them into the way of Sinai Kadesh-Barnea and they cast out all that lived in the wilderness. +\v 15 They lived in the land of the Amorites, and they destroyed by their strength everyone in Heshbon. Passing over Jordan, they possessed all the hill country. +\v 16 They cast out before them the Canaanite, the Perizzite, the Jebusite, the Shechemite, and all the Girgashites, and they lived in that country many days. +\p +\v 17 And while they didn’t sin before their God, they prospered, because God who hates iniquity was with them. +\v 18 But when they departed from the way which he appointed them, they were destroyed in many severe battles, and were led captives into a land that was not theirs. The temple of their God was razed to the ground, and their cities were taken by their adversaries. +\v 19 And now they have returned to their God, and have come up from the dispersion where they were dispersed, and have possessed Jerusalem, where their sanctuary is, and are settled in the hill country; for it was desolate. +\p +\v 20 And now, my lord and master, if there is any error in this people, and they sin against their God, we will find out what this thing is in which they stumble, and we will go up and overcome them. +\v 21 But if there is no lawlessness in their nation, let my lord now pass by, lest their Lord defend them, and their God be for them, and we will be a reproach before all the earth.” +\p +\v 22 It came to pass, when Achior had finished speaking these words, all the people standing around the tent complained. The great men of Holofernes, and all who lived by the sea side and in Moab, said that he should be cut to pieces. +\v 23 For, they said, “We will not be afraid of the children of Israel, because, behold, they are a people that has no power nor might to make the battle strong. +\v 24 Therefore now we will go up, and they will be a prey to be devoured by all your army, Lord Holofernes.” +\c 6 +\p +\v 1 And when the disturbance of the men that were around the council had ceased, Holofernes the chief captain of the army of Asshur said to Achior and to all the children of Moab\f + \fr 6:1 \ft Some authorities read \fqa Ammon. \ft Compare ver. 5. \f* before all the people of the foreigners: +\p +\v 2 “And who are you, Achior, and the mercenaries of Ephraim,\f + \fr 6:2 \ft Some authorities read \fqa Ammon. \ft Compare ver. 5. \f* that you have prophesied among us as today, and have said that we should not make war with the race of Israel, because their God will defend them? And who is God but Nebuchadnezzar? +\v 3 He will send forth his might, and will destroy them from the face of the earth, and their God will not deliver them; but we his servants will strike them as one man. They will not sustain the might of our cavalry. +\v 4 For with them we will burn them up. Their mountains will be drunken with their blood. Their plains will be filled with their dead bodies. Their footsteps will not stand before us, but they will surely perish, says King Nebuchadnezzar, lord of all the earth; for he said, ‘The words that I have spoken\f + \fr 6:4 \ft Gr. \fqa he has spoken. \f* will not be in vain.’ +\p +\v 5 But you, Achior, hireling of Ammon, who have spoken these words in the day of your iniquity, will see my face no more from this day, until I am avenged of the race of those that came out of Egypt. +\v 6 And then the sword of my army, and the multitude of those who serve me, will pass through your sides, and you will fall among their slain when I return. +\v 7 Then my servants will bring you back into the hill country, and will set you in one of the cities by the passes. +\v 8 You will not perish until you are destroyed with them. +\v 9 And if you hope in your heart that they will not be taken, don’t let your countenance fall. I have spoken it, and none of my words will fall to the ground.” +\p +\v 10 Then Holofernes commanded his servants who waited in his tent to take Achior, and bring him back to Bethulia, and deliver him into the hands of the children of Israel. +\v 11 So his servants took him, and brought him out of the camp into the plain, and they moved from the midst of the plains into the hill country, and came to the springs that were under Bethulia. +\v 12 When the men of the city saw them on the top of the hill, they took up their weapons, and went out of the city against them to the top of the hill. Every man that used a sling kept them from coming up, and threw stones at them. +\v 13 They took cover under the hill, bound Achior, cast him down, left him at the foot of the hill, and went away to their lord. +\p +\v 14 But the children of Israel descended from their city, and came to him, untied him, led him away into Bethulia, and presented him to the rulers of their city, +\v 15 which were in those days Ozias the son of Micah, of the tribe of Simeon, and Chabris the son of Gothoniel, and Charmis the son of Melchiel. +\v 16 Then they called together all the elders of the city; and all their young men ran together, with their women, to the assembly. They set Achior in the midst of all their people. Then Ozias asked him what had happened. +\v 17 He answered and declared to them the words of the council of Holofernes, and all the words that he had spoken in the midst of the princes of the children of Asshur, and all the great words that Holofernes had spoken against the house of Israel. +\v 18 Then the people fell down and worshiped God, and cried, saying, +\v 19 “O Lord God of heaven, behold their arrogance, and pity the low estate of our race. Look upon the face of those who are sanctified to you this day.” +\v 20 They comforted Achior, and praised him exceedingly. +\v 21 Then Ozias took him out of the assembly into his house, and made a feast for the elders. They called on the God of Israel for help all that night. +\c 7 +\p +\v 1 The next day Holofernes commanded all his army and all the people who had come to be his allies, that they should move their camp toward Bethulia, seize the passes of the hill country, and make war against the children of Israel. +\v 2 Every mighty man of them moved that day. The army of their men of war was one hundred seventy thousand footmen, plus twelve thousand horsemen, besides the baggage and the men who were on foot among them—an exceedingly great multitude. +\v 3 They encamped in the valley near Bethulia, by the fountain. They spread themselves in breadth over Dothaim even to Belmaim, and in length from Bethulia to Cyamon, which is near Esdraelon. +\p +\v 4 But the children of Israel, when they saw the multitude of them, were terrified, and everyone said to his neighbor, “Now these men will lick up the face of all the earth. Neither the high mountains, nor the valleys, nor the hills will be able to bear their weight. +\v 5 Every man took up his weapons of war, and when they had kindled fires upon their towers, they remained and watched all that night. +\p +\v 6 But on the second day Holofernes led out all his cavalry in the sight of the children of Israel which were in Bethulia, +\v 7 viewed the ascents to their city, and searched out the springs of the waters, seized upon them, and set garrisons of men of war over them. Then he departed back to his people. +\p +\v 8 All the rulers of the children of Esau, all the leaders of the people of Moab, and the captains of the sea coast came to him and said, +\v 9 “Let our lord now hear a word, that there not be losses in your army. +\v 10 For this people of the children of Israel do not trust in their spears, but in the height of the mountains wherein they dwell, for it is not easy to come up to the tops of their mountains. +\v 11 And now, my lord, don’t fight against them as men fight who join battle, and there will not so much as one man of your people perish. +\v 12 Remain in your camp, and keep every man of your army safe. Let your servants get possession of the water spring, which flows from the foot of the mountain, +\v 13 because all the inhabitants of Bethulia get their water from there. Then thirst will kill them, and they will give up their city. Then we and our people will go up to the tops of the mountains that are near, and will camp upon them, to watch that not one man gets out of the city. +\v 14 They will be consumed with famine—they, their wives, and their children. Before the sword comes against them they will be laid low in the streets where they dwell. +\v 15 And you will pay them back with evil, because they rebelled, and didn’t meet your face in peace.” +\p +\v 16 Their words were pleasing in the sight of Holofernes and in the sight of all his servants; and he ordered them to do as they had spoken. +\v 17 And the army of the children of Ammon moved, and with them five thousand of the children of Asshur, and they encamped in the valley. They seized the waters and the springs of the waters of the children of Israel. +\v 18 The children of Esau went up with the children of Ammon, and encamped in the hill country near Dothaim. They sent some of them toward the south, and toward the east, near Ekrebel, which is near Chusi, that is upon the brook Mochmur. The rest of the army of the Assyrians encamped in the plain, and covered all the face of the land. Their tents and baggage were pitched upon it in a great crowd. They were an exceedingly great multitude. +\p +\v 19 The children of Israel cried to the Lord their God, for their spirit fainted; for all their enemies had surrounded them. There was no way to escape out from among them. +\v 20 All the army of Asshur remained around them, their footmen and their chariots and their horsemen, for thirty-four days. All their vessels of water ran dry for all the inhabitants of Bethulia. +\v 21 The cisterns were emptied, and they had no water to drink their fill for one day; for they rationed drink by measure. +\v 22 Their young children were discouraged. The women and the young men fainted for thirst. They fell down in the streets of the city, and in the passages of the gates. There was no longer any strength in them. +\p +\v 23 All the people, including the young men, the women, and the children, were gathered together against Ozias, and against the rulers of the city. They cried with a loud voice, and said before all the elders, +\v 24 “God be judge between all of you and us, because you have done us great wrong, in that you have not spoken words of peace with the children of Asshur. +\v 25 Now we have no helper; but God has sold us into their hands, that we should be laid low before them with thirst and great destruction. +\v 26 And now summon them, and deliver up the whole city as prey to the people of Holofernes, and to all his army. +\v 27 For it is better for us to be captured by them. For we will be servants, and our souls will live, and we will not see the death of our babies before our eyes, and our wives and our children fainting in death. +\v 28 We take to witness against you the heaven and the earth, and our God and the Lord of our fathers, who punishes us according to our sins and the sins of our fathers. Do what we have said today!” +\p +\v 29 And there was great weeping of all with one consent in the midst of the assembly; and they cried to the Lord God with a loud voice. +\v 30 And Ozias said to them, “Brethren, be of good courage! Let us endure five more days, during which the Lord our God will turn his mercy toward us; for he will not forsake us utterly. +\v 31 But if these days pass, and no help comes to us, I will do what you say.” +\v 32 Then he dispersed the people, every man to his own camp; and they went away to the walls and towers of their city. He sent the women and children into their houses. They were brought very low in the city. +\c 8 +\p +\v 1 In those days Judith heard about this. She was the daughter of Merari, the son of Ox, the son of Joseph, the son of Oziel, the son of Elkiah, the son of Ananias, the son of Gideon, the son of Raphaim, the son of Ahitub, the son of Elihu, the son of Eliab, the son of Nathanael, the son of Salamiel, the son of Salasadai, the son of Israel. +\v 2 Her husband was Manasses, of her tribe and of her family. He died in the days of barley harvest. +\v 3 For he stood over those who bound sheaves in the field, and was overcome by the burning heat, and he fell on his bed, and died in his city Bethulia. So they buried him with his fathers in the field which is between Dothaim and Balamon. +\v 4 Judith was a widow in her house three years and four months. +\v 5 She made herself a tent upon the roof of her house, and put on sackcloth upon her loins. The garments of her widowhood were upon her. +\v 6 And she fasted all the days of her widowhood, except the eves of the Sabbaths, the Sabbaths, the eves of the new moons, the new moons, and the feasts and joyful days of the house of Israel. +\v 7 She was beautiful in appearance, and lovely to behold. Her husband Manasses had left her gold, silver, menservants, maidservants, cattle, and lands. She remained on those lands. +\v 8 No one said anything evil about her, for she feared God exceedingly. +\p +\v 9 She heard the evil words of the people against the governor, because they fainted for lack of water; and Judith heard all the words that Ozias spoke to them, how he swore to them that he would deliver the city to the Assyrians after five days. +\v 10 So she sent her maid, who was over all things that she had, to summon Ozias, Chabris, and Charmis, the elders of her city. +\v 11 They came to her, and she said to them, “Hear me now, O you rulers of the inhabitants of Bethulia! For your word that you have spoken before the people this day is not right. You have set the oath which you have pronounced between God and you, and have promised to deliver the city to our enemies, unless within these days the Lord turns to help you. +\v 12 Now who are you that you have tested God this day, and stand in the place of God among the children of men? +\v 13 Now try the Lord Almighty, and you will never know anything. +\v 14 For you will not find the depth of the heart of man, and you will not perceive the things that he thinks. How will you search out God, who has made all these things, and know his mind, and comprehend his purpose? No, my kindred, don’t provoke the Lord our God to anger! +\v 15 For if he has not decided to help us within these five days, he has power to defend us in such time as he will, or to destroy us before the face of our enemies. +\v 16 But don’t you pledge the counsels of the Lord our God! For God is not like a human being, that he should be threatened, neither is he like a son of man, that he should be won over by pleading. +\v 17 Therefore let’s wait for the salvation that comes from him, and call upon him to help us. He will hear our voice, if it pleases him. +\v 18 For there arose none in our age, neither is there any of us today, tribe, or kindred, or family, or city, which worship gods made with hands, as it was in the former days; +\v 19 for which cause our fathers were given to the sword, and for plunder, and fell with a great destruction before our enemies. +\v 20 But we know no other god beside him. Therefore we hope that he will not despise us, nor any of our race. +\v 21 For if we are captured, all Judea will be captured and our sanctuary will be plundered; and he will require our blood for profaning it. +\v 22 The slaughter of our kindred, the captivity of the land, and the desolation of our inheritance, he will bring on our heads among the Gentiles, wherever we will be in bondage. We will be an offense and a reproach to those who take us for a possession. +\v 23 For our bondage will not be ordered to favor; but the Lord our God will turn it to dishonor. +\v 24 And now, kindred, let’s show an example to our kindred, because their soul depends on us, and the sanctuary, the house, and the altar depend on us. +\v 25 Besides all this let’s give thanks to the Lord our God, who tries us, even as he did our fathers also. +\v 26 Remember all the things which he did to Abraham, and all the things in which he tried Isaac, and all the things which happened to Jacob in Mesopotamia of Syria, when he kept the sheep of Laban his mother’s brother. +\v 27 For he has not tried us in the fire, as he did them, to search out their hearts, neither has he taken vengeance on us; but the Lord scourges those who come near to him, to admonish them.” +\p +\v 28 And Ozias said to her, “All that you have spoken, you have spoken with a good heart. There is no one who will deny your words. +\v 29 For this is not the first day wherein your wisdom is manifested; but from the beginning of your days all the people have known your understanding, because the disposition of your heart is good. +\v 30 But the people were exceedingly thirsty, and compelled us to do as we spoke to them, and to bring an oath upon ourselves, which we will not break. +\v 31 And now pray for us, because you are a godly woman, and the Lord will send us rain to fill our cisterns, and we will faint no more.” +\p +\v 32 Then Judith said to them, “Hear me, and I will do a thing, which will go down to all generations among the children of our race. +\v 33 You shall all stand at the gate tonight. I will go out with my maid. Within the days after which you said that you would deliver the city to our enemies, the Lord will deliver Israel by my hand. +\v 34 But you shall not inquire of my act; for I will not tell you until the things are finished that I will do.” +\p +\v 35 Then Ozias and the rulers said to her, “Go in peace. May the Lord God be before you, to take vengeance on our enemies.” +\v 36 So they returned from the tent, and went to their stations. +\c 9 +\p +\v 1 But Judith fell upon her face, and put ashes upon her head, and uncovered the sackcloth with which she was clothed. The incense of that evening was now being offered at Jerusalem in the house of God, and Judith cried to the Lord with a loud voice, and said, +\v 2 “O Lord God of my father Simeon, into whose hand you gave a sword to take vengeance on the strangers who loosened the belt of a virgin to defile her, uncovered her thigh to her shame, and profaned her womb to her reproach; for you said, ‘It shall not be so;’ and they did so. +\v 3 Therefore you gave their rulers to be slain, and their bed, which was ashamed for her who was deceived,\f + \fr 9:3 \ft Some authorities read \fqa which was ashamed for their deceit that they practiced. \f* to be dyed in blood, and struck the servants with their masters, and the masters upon their thrones; +\v 4 and gave their wives for a prey, and their daughters to be captives, and all their spoils to be divided among your dear children; which were moved with zeal for you, and abhorred the pollution of their blood, and called upon you for aid. O God, O my God, hear me also who am a widow. +\v 5 For you did the things that were before those things, and those things, and such as come after; and you planned the things which are now, and the things which are to come. The things which you planned came to pass. +\v 6 Yes, the things which you determined stood before you, and said, ‘Behold, we are here; for all your ways are prepared, and your judgment is with foreknowledge.’ +\v 7 For, behold, the Assyrians are multiplied in their power. They are exalted with horse and rider. They were proud of the strength of their footmen. They have trusted in shield, spear, bow, and sling. They don’t know that you are the Lord who breaks the battles. ‘The Lord’ is your name. +\v 8 Break their strength in your power, and bring down their force in your wrath; for they intend to profane your sanctuary, and to defile the tabernacle where your glorious name rests, and to destroy the horn of your altar with the sword. +\v 9 Look at their pride, and send your wrath upon their heads. Give into my hand, which am a widow, the might that I have conceived. +\v 10 Strike by the deceit of my lips the servant with the prince, and the prince with his servant. Break down their arrogance by the hand of a woman. +\v 11 For your power stands not in numbers, nor your might in strong men, but you are a God of the afflicted. You are a helper of the oppressed, a helper of the weak, a protector of the forsaken, a savior of those who are without hope. +\v 12 Please, please, God of my father, and God of the inheritance of Israel, Lord of the heavens and of the earth, Creator of the waters, King of all your creation, hear my prayer. +\v 13 Make my speech and deceit to be their wound and bruise, who intend hard things against your covenant, your holy house, the top of Zion, and the house of the possession of your children. +\v 14 Make every nation and tribe of yours to know that you are God, the God of all power and might, and that there is no other who protects the race of Israel but you.” +\c 10 +\p +\v 1 It came to pass, when she had ceased to cry to the God of Israel, and had finished saying all these words, +\v 2 that she rose up where she had fallen down, called her maid, and went down into the house that she lived on the Sabbath days and on her feast days. +\v 3 She pulled off the sackcloth which she had put on, took off the garments of her widowhood, washed her body all over with water, anointed herself with rich ointment, braided the hair of her head, and put a tiara upon it. She put on her garments of gladness, which she used to wear in the days of the life of Manasses her husband. +\v 4 She took sandals for her feet, and put on her anklet, bracelets, rings, earrings, and all her jewelry. She made herself very beautiful to deceive the eyes of all men who would see her. +\v 5 She gave her maid a leather container of wine and a flask of oil, and filled a bag with roasted grain, lumps of figs, and fine bread. She packed all her vessels together, and laid them upon her. +\p +\v 6 They went out to the gate of the city of Bethulia, and found Ozias and the elders of the city, Chabris and Charmis standing by it. +\v 7 But when they saw her, that her countenance was altered and her apparel was changed, they were greatly astonished by her beauty and said to her, +\v 8 “May the God of our fathers give you favor, and accomplish your purposes to the glory of the children of Israel, and to the exaltation of Jerusalem.” +\p Then she worshiped God, +\v 9 and said to them, “Command that they open the gate of the city for me, and I will go out to accomplish the things you spoke with me about.” +\p And they commanded the young men to open to her, as she had spoken; +\v 10 and they did so. +\p Then Judith went out, she, and her handmaid with her. The men of the city watched her until she had gone down the mountain, until she had passed the valley, and they could see her no more. +\v 11 They went straight onward in the valley. The watch of the Assyrians met her; +\v 12 and they took her, and asked her, “Of what people are you? Where are you coming from? Where are you going?” +\p She said, “I am a daughter of the Hebrews. I am fleeing away from their presence, because they are about to be given you to be consumed. +\v 13 I am coming into the presence of Holofernes the chief captain of your army, to declare words of truth. I will show him a way that he can go and win all the hill country, and there will not be lacking of his men one person, nor one life.” +\p +\v 14 Now when the men heard her words, and considered her countenance, the beauty thereof was exceedingly marvelous in their eyes. They said to her, +\v 15 “You have saved your life, in that you have hurried to come down to the presence of our master. Now come to his tent. Some of us will guide you until they deliver you into his hands. +\v 16 But when\f + \fr 10:16 \ft Gr. \fqa if. \f* you stand before him, don’t be afraid in your heart, but declare to him what you just said, and he will treat you well.” +\v 17 They chose out of them a hundred men, and appointed them to accompany her and her maid; and they brought them to the tent of Holofernes. +\p +\v 18 And there was great excitement throughout all the camp, for her coming was reported among the tents. They came and surrounded her as she stood outside Holofernes’ tent, until they told him about her. +\v 19 They marveled at her beauty, and marveled at the children of Israel because of her. Each one said to his neighbor, “Who would despise these people, who have among them such women? For it is not good that one man of them be left, seeing that, if they are let go, they will be able to deceive the whole earth. +\p +\v 20 Then the guards of Holofernes and all his servants came out and brought her into the tent. +\v 21 And Holofernes was resting upon his bed under the canopy, which was woven with purple, gold, emeralds, and precious stones. +\v 22 And they told him about her; and he came out into the space before his tent, with silver lamps going before him. +\v 23 But when Judith had come before him and his servants, they all marveled at the beauty of her countenance. She fell down upon her face and bowed down to him, but his servants raised her up. +\c 11 +\p +\v 1 Holofernes said to her, “Woman, take courage. Don’t be afraid in your heart; for I never hurt anyone who has chosen to serve Nebuchadnezzar, the king of all the earth. +\v 2 And now, if your people who dwell in the hill country had not slighted me, I would not have lifted up my spear against them; but they have done these things to themselves. +\v 3 And now tell me why you fled from them and came to us; for you have come to save yourself. Take courage! You will live tonight, and hereafter; +\v 4 for there is no one that will wrong you, but all will treat you well, as is done to the servants of King Nebuchadnezzar my lord.” +\p +\v 5 And Judith said to him, “Receive the words of your servant, and let your handmaid speak in your presence, and I won’t lie to my lord tonight. +\v 6 If you will follow the words of your handmaid, God will bring the thing to pass perfectly with you; and my lord will not fail to accomplish his purposes. +\v 7 As Nebuchadnezzar king of all the earth lives, and as his power lives, who has sent you for the preservation of every living thing, not only do men serve him by you, but also the beasts of the field, the cattle, and the birds of the sky will live through your strength, in the time of Nebuchadnezzar and of all his house. +\v 8 For we have heard of your wisdom and the subtle plans of your soul. It has been reported in all the earth that you only are brave in all the kingdom, mighty in knowledge, and wonderful in feats of war. +\v 9 And now as concerning the matter which Achior spoke in your council, we have heard his words; for the men of Bethulia saved him, and he declared to them all that he had spoken before you. +\v 10 Therefore, O lord and master, don’t neglect his word, but lay it up in your heart, for it is true; for our race will not be punished, neither will the sword prevail against them, unless they sin against their God. +\v 11 And now, that my lord may not be defeated and frustrated in his purpose, and that death may fall upon them, their sin has overtaken them, wherewith they will provoke their God to anger, whenever they do wickedness. +\v 12 Since their food failed them, and all their water was scant, they took counsel to kill their livestock, and determined to consume all those things which God charged them by his laws that they should not eat. +\v 13 They are resolved to spend the first fruits of the grain and the tithes of the wine and the oil, which they had sanctified and reserved for the priests who stand before the face of our God in Jerusalem, which it is not fitting for any of the people so much as to touch with their hands. +\v 14 They have sent some to Jerusalem, because they also that dwell there have done this thing, to bring them permission from the council of elders. +\v 15 When these instructions come to them and they do it, they will be given to you to be destroyed the same day. +\v 16 Therefore I your servant, knowing all this, fled away from their presence. God sent me to work things with you, at which all the earth will be astonished, even as many as hear it. +\v 17 For your servant is religious, and serves the God of heaven day and night. Now, my lord, I will stay with you; and your servant will go out by night into the valley. I will pray to God, and he will tell me when they have committed their sins. +\v 18 Then I will come and tell you. Then you can go out with all your army, and there will be none of them that will resist you. +\v 19 And I will lead you through the midst of Judea, until you come to Jerusalem. I will set your throne in the midst of it. You will drive them as sheep that have no shepherd, and a dog will not so much as open his mouth before you; for these things were told me according to my foreknowledge, and were declared to me, and I was sent to tell you.” +\p +\v 20 Her words were pleasing in the sight of Holofernes and of all his servants. They marveled at her wisdom, and said, +\v 21 “There is not such a woman from one end of the earth to the other, for beauty of face and wisdom of words.” +\p +\v 22 Holofernes said to her, “God did well to send you before the people, that might would be in our hands, and destruction among those who slighted my lord. +\v 23 And now you are beautiful in your countenance, and wise in your words. If you will do as you have spoken, your God will be my God, and you will dwell in the palace of King Nebuchadnezzar, and will be renowned through the whole earth.” +\c 12 +\p +\v 1 He commanded that she should be brought in where his silver vessels were set, and asked that his servants should prepare some of his own delicacies for her, and that she should drink from his own wine. +\p +\v 2 And Judith said, “I can’t eat of it, lest there be an occasion of stumbling; but provision will be made for me from the things that have come with me.” +\p +\v 3 And Holofernes said to her, “But if the things that are with you should run out, from where will we be able to give you more like it? For there is none of your race with us.” +\p +\v 4 And Judith said to him, “As your soul lives, my lord, your servant will not use up those things that are with me until the Lord works by my hand the things that he has determined.” +\v 5 Then Holofernes’ servants brought her into the tent, and she slept until midnight. Then she rose up toward the morning watch, +\v 6 and sent to Holofernes, saying, “Let my lord now command that they allow your servant to go out to pray.” +\p +\v 7 Holofernes commanded his guards that they should not stop her. She stayed in the camp three days, and went out every night into the valley of Bethulia and washed herself at the fountain of water in the camp. +\v 8 And when she came up, she implored the Lord God of Israel to direct her way to the triumph of the children of his people. +\v 9 She came in clean and remained in the tent until she ate her food toward evening. +\p +\v 10 It came to pass on the fourth day, that Holofernes made a feast for his own servants only, and called none of the officers to the banquet. +\v 11 And he said to Bagoas the eunuch, who had charge over all that he had, “Go now, and persuade this Hebrew woman who is with you that she come to us, and eat and drink with us. +\v 12 For behold, it would be a disgrace if we shall let such a woman go, not having had her company; for if we don’t draw her to ourselves, she will laugh us to scorn.” +\p +\v 13 Bagoas went from the presence of Holofernes, and came in to her, and said, “Let this fair lady not fear to come to my lord, and to be honored in his presence, and to drink wine and be merry with us, and to be made this day as one of the daughters of the children of Asshur who serve in Nebuchadnezzar’s palace.” +\p +\v 14 Judith said to him, “Who am I, that I should contradict my lord? For whatever would be pleasing in his eyes, I will do speedily, and this will be my joy to the day of my death.” +\v 15 She arose, and decked herself with her apparel and all her woman’s attire; and her servant went and laid fleeces on the ground for her next to Holofernes, which she had received from Bagoas for her daily use, that she might sit and eat upon them. +\p +\v 16 Judith came in and sat down, and Holofernes’ heart was ravished with her. His passion was aroused, and he exceedingly desired her company. He was watching for a time to deceive her from the day that he had seen her. +\v 17 Holofernes said to her, “Drink now, and be merry with us.” +\p +\v 18 Judith said, “I will drink now, my lord, because my life is magnified in me this day more than all the days since I was born.” +\v 19 Then she took and ate and drank before him what her servant had prepared. +\v 20 Holofernes took great delight in her, and drank exceedingly much wine, more than he had drunk at any time in one day since he was born. +\c 13 +\p +\v 1 But when the evening had come, his servants hurried to depart. Bagoas shut the tent outside, and dismissed those who waited from the presence of his lord. They went away to their beds; for they were all weary, because the feast had been long. +\v 2 But Judith was left alone in the tent, with Holofernes lying along upon his bed; for he was drunk with wine. +\v 3 Judith had said to her servant that she should stand outside her bedchamber, and wait for her to come out, as she did daily; for she said she would go out to her prayer. She spoke to Bagoas according to the same words. +\v 4 All went away from her presence, and none was left in the bedchamber, small or great. Judith, standing by his bed, said in her heart, O Lord God of all power, look in this hour upon the works of my hands for the exaltation of Jerusalem. +\v 5 For now is the time to help your inheritance, and to do the thing that I have purposed to the destruction of the enemies which have risen up against us. +\v 6 She came to the bedpost which was at Holofernes’ head, and took down his sword from there. +\v 7 She drew near to the bed, took hold of the hair of his head, and said, “Strengthen me, O Lord God of Israel, this day.” +\v 8 She struck twice upon his neck with all her might and cut off his head, +\v 9 tumbled his body down from the bed, and took down the canopy from the posts. After a little while she went out, and gave Holofernes’ head to her maid; +\v 10 and she put it in her bag of food. They both went out together to prayer, according to their custom. They passed through the camp, circled around that valley, and went up to the mountain of Bethulia, and came to its gates. +\p +\v 11 Judith said afar off to the watchmen at the gates, “Open, open the gate, now. God is with us, even our God, to show his power yet in Israel, and his might against the enemy, as he has done even this day.” +\p +\v 12 It came to pass, when the men of her city heard her voice, they made haste to go down to the gate of their city, and they called together the elders of the city. +\v 13 They all ran together, both small and great, for it seemed unbelievable to them that she had come. They opened the gate and received them, making a fire to give light, and surrounded them. +\v 14 She said to them with a loud voice, “Praise God! Praise him! Praise God, who has not taken away his mercy from the house of Israel, but has destroyed our enemies by my hand tonight!” +\p +\v 15 Then she took the head out of the bag and showed it, and said to them, “Behold, the head of Holofernes, the chief captain of the army of Asshur, and behold, the canopy under which he laid in his drunkenness. The Lord struck him by the hand of a woman. +\v 16 And as the Lord lives, who preserved me in my way that I went, my countenance deceived him to his destruction, and he didn’t commit sin with me, to defile and shame me.” +\p +\v 17 All the people were exceedingly amazed, and bowed themselves, and worshiped God, and said with one accord, “Blessed are you, O our God, who have this day humiliated the enemies of your people.” +\p +\v 18 Ozias said to her, “Blessed are you, daughter, in the sight of the Most High God, above all the women upon the earth; and blessed is the Lord God, who created the heavens and the earth, who directed you to cut off the head of the prince of our enemies. +\v 19 For your hope will not depart from the heart of men that remember the strength of God forever. +\v 20 May God turn these things to you for a perpetual praise, to visit you with good things, because you didn’t spare your life by reason of the affliction of our race, but prevented our ruin, walking a straight way before our God.” +\p And all the people said, “Amen! Amen!” +\c 14 +\p +\v 1 Judith said to them, “Hear me now, my kindred, and take this head, and hang it upon the battlement of your wall. +\v 2 It will be, so soon as the morning appears, and the sun comes up on the earth, you shall each take up his weapons of war, and every valiant man of you go out of the city. You shall set a captain over them, as though you would go down to the plain toward the watch of the children of Asshur; but you men shall not go down. +\v 3 These will take up their full armor, and shall go into their camp and rouse up the captains of the army of Asshur. They will run together to Holofernes’ tent. They won’t find him. Fear will fall upon them, and they will flee before your face. +\v 4 You men, and all that inhabit every border of Israel, shall pursue them and overthrow them as they go. +\v 5 But before you do these things, summon Achior the Ammonite to me, that he may see and know him that despised the house of Israel, and that sent him to us, as it were to death. +\p +\v 6 And they called Achior out of the house of Ozias; but when he came, and saw the head of Holofernes in a man’s hand in the assembly of the people, he fell upon his face, and his spirit failed. +\v 7 But when they had recovered him,\f + \fr 14:7 \ft Many authorities read \fqa he had recovered himself. \f* he fell at Judith’s feet, bowed down to her, and said, “Blessed are you in every tent of Judah! In every nation, those who hear your name will be troubled. +\v 8 Now tell me all the things that you have done in these days.” +\p And Judith declared to him in the midst of the people all the things that she had done, from the day that she went out until the time that she spoke to them. +\v 9 But when she finished speaking, the people shouted with a loud voice, and made a joyful noise in their city. +\v 10 But when Achior saw all the things that the God of Israel had done, he believed in God exceedingly, and circumcised the flesh of his foreskin, and was joined to the house of Israel, to this day. +\p +\v 11 But as soon as the morning arose, they hanged the head of Holofernes upon the wall, and every man took up his weapons, and they went forth by bands to the ascents of the mountain. +\v 12 But when the children of Asshur saw them, they sent word to their leaders, and they went to their captains and tribunes, and to every one of their rulers. +\v 13 They came to Holofernes’ tent, and said to him that was over all that he had, “Wake our lord up, now, for the slaves have been bold to come down against us to battle, that they may be utterly destroyed.” +\p +\v 14 Bagoas went in, and knocked at the outer door of the tent; for he supposed that Holofernes was sleeping with Judith. +\v 15 But when no one answered, he opened it, went into the bedchamber, and found him cast upon the threshold dead; and his head had been taken from him. +\v 16 He cried with a loud voice, with weeping, groaning, and shouting, and tore his garments. +\v 17 He entered into the tent where Judith lodged, and he didn’t find her. He leaped out to the people, and cried aloud, +\v 18 “The slaves have dealt treacherously! One woman of the Hebrews has brought shame upon the house of King Nebuchadnezzar; for, behold, Holofernes lies upon the ground, and his head is not on him!” +\p +\v 19 But when the rulers of the army of Asshur heard this, they tore their tunics, and their souls were troubled exceedingly. There were cries and an exceedingly great noise in the midst of the camp. +\c 15 +\p +\v 1 When those who were in the tents heard, they were amazed at what happened. +\v 2 Trembling and fear fell upon them, and no man dared stay any more in the sight of his neighbor, but rushing out with one accord, they fled into every way of the plain and of the hill country. +\v 3 Those who had encamped in the hill country round about Bethulia fled away. And then the children of Israel, every one who was a warrior among them, rushed out upon them. +\v 4 Ozias sent to Betomasthaim, Bebai, Chobai, and Chola, and to every border of Israel, to tell about the things that had been accomplished, and that all should rush upon their enemies to destroy them. +\v 5 But when the children of Israel heard this, they all fell upon them with one accord, and struck them to Chobai. Yes, and in like manner also, people from Jerusalem and from all the hill country came (for men had told them about what happened in their enemies’ camp), and those who were in Gilead and in Galilee fell upon their flank with a great slaughter, until they were past Damascus and its borders. +\v 6 The rest of the people who lived at Bethulia fell upon the camp of Asshur, and plundered them, and were enriched exceedingly. +\v 7 The children of Israel returned from the slaughter, and got possession of that which remained. The villages and the cities that were in the hill country and in the plain country took many spoils; for there was an exceedingly great supply. +\p +\v 8 Joakim the high priest, and the elders of the children of Israel who lived in Jerusalem, came to see the good things which the Lord had showed to Israel, and to see Judith and to greet her. +\v 9 When they came to her, they all blessed her with one accord, and said to her, “You are the exaltation of Jerusalem! You are the great glory of Israel! You are the great rejoicing of our race! +\v 10 You have done all these things by your hand. You have done with Israel the things that are good, and God is pleased with it. May you be blessed by the Almighty Lord forever!” +\p And all the people said, “Amen!” +\p +\v 11 And the people plundered the camp for thirty days; and they gave Holofernes’ tent to Judith, along with all his silver cups, his beds, his bowls, and all his furniture. She took them, placed them on her mule, prepared her wagons, and piled them on it. +\p +\v 12 And all the women of Israel ran together to see her; and they blessed her, and made a dance among them for her. She took branches in her hand, and distributed them to the women who were with her.\f + \fr 15:12 \ft Compare 2 Maccabees 10:7. \f* +\v 13 Then they made themselves garlands of olive, she and those who were with her, and she went before all the people in the dance, leading all the women. All the men of Israel followed in their armor with garlands, and with songs in their mouths. +\c 16 +\p +\v 1 And Judith began to sing this song of thanksgiving in all Israel, and all the people sang with loud voices this song of praise. +\v 2 Judith said, +\q1 “Begin a song to my God with timbrels. +\q2 Sing to my Lord with cymbals. +\q1 Make melody to him with psalm and praise. +\q2 Exalt him, and call upon his name. +\q1 +\v 3 For the Lord is the God that crushes battles. +\q2 For in his armies in the midst of the people, +\q2 he delivered me out of the hand of those who persecuted me. +\q1 +\v 4 Asshur came out of the mountains from the north. +\q2 He came with ten thousands of his army. +\q1 Its multitude stopped the torrents. +\q2 Their horsemen covered the hills. +\q1 +\v 5 He said that he would burn up my borders, +\q2 kill my young men with the sword, +\q2 throw my nursing children to the ground, +\q2 give my infants up as prey, +\q2 and make my virgins a plunder. +\b +\q1 +\v 6 “The Almighty Lord brought them to nothing by the hand of a woman. +\q2 +\v 7 For their mighty one didn’t fall by young men, +\q2 neither did sons of the Titans strike him. +\q1 Tall giants didn’t attack him, +\q2 but Judith the daughter of Merari made him weak with the beauty of her countenance. +\b +\q1 +\v 8 “For she put off the apparel of her widowhood +\q2 for the exaltation of those who were distressed in Israel. +\q1 She anointed her face with ointment, +\q2 bound her hair in a tiara, +\q2 and took a linen garment to deceive him. +\q1 +\v 9 Her sandal ravished his eye. +\q2 Her beauty took his soul prisoner. +\q2 The sword passed through his neck. +\q1 +\v 10 “The Persians quaked at her daring. +\q2 The Medes were daunted at her boldness. +\b +\q1 +\v 11 “Then my lowly ones shouted aloud. +\q2 My oppressed people were terrified and trembled for fear. +\q2 They lifted up their voices and the enemy fled. +\q1 +\v 12 The children of slave-girls pierced them through, +\q2 and wounded them as fugitives’ children. +\q2 They perished by the army of my Lord. +\b +\q1 +\v 13 “I will sing to my God a new song: +\q2 O Lord, you are great and glorious, +\q2 marvelous in strength, invincible. +\q1 +\v 14 Let all your creation serve you; +\q2 for you spoke, and they were made. +\q1 You sent out your spirit, and it built them. +\q2 There is no one who can resist your voice. +\q1 +\v 15 For the mountains will be moved from their foundations with the waters, +\q2 and the rocks will melt as wax at your presence: +\q2 But you are yet merciful to those who fear you. +\q1 +\v 16 For all sacrifice is little for a sweet savor, +\q2 and all the fat is very little for a whole burnt offering to you; +\q2 but he who fears the Lord is great continually. +\b +\q1 +\v 17 “Woe to the nations who rise up against my race! +\q2 The Lord Almighty will take vengeance on them in the day of judgment +\q2 and put fire and worms in their flesh; +\q2 and they will weep and feel their pain forever.” +\p +\v 18 Now when they came to Jerusalem, they worshiped God. When the people were purified, they offered their whole burnt offerings, their free will offerings, and their gifts. +\v 19 Judith dedicated all Holofernes’ stuff, which the people had given her, and gave the canopy, which she had taken for herself out of his bedchamber, for a gift to the Lord. +\p +\v 20 And the people continued feasting in Jerusalem before the sanctuary for three months, and Judith remained with them. +\p +\v 21 After these days, everyone departed to his own inheritance. Judith went away to Bethulia, and remained in her own possession, and was honorable in her time in all the land. +\v 22 Many desired her, but no man knew her all the days of her life from the day that Manasses her husband died and was gathered to his people. +\v 23 She increased in greatness exceedingly; and she grew old in her husband’s house, to one hundred five years. She let her maid go free. Then she died in Bethulia. They buried her in the cave of her husband Manasses. +\v 24 The house of Israel mourned for her seven days. She distributed her goods before she died to all those who were nearest of kin to Manasses her husband, and to those who were nearest of her own kindred. +\v 25 There was no one who made the children of Israel afraid any more in the days of Judith, nor for a long time after her death. \ No newline at end of file diff --git a/bibles/eng-web_usfm/43-ESGeng-web.usfm b/bibles/eng-web_usfm/43-ESGeng-web.usfm new file mode 100644 index 0000000..4c54982 --- /dev/null +++ b/bibles/eng-web_usfm/43-ESGeng-web.usfm @@ -0,0 +1,287 @@ +\id ESG +\h Esther (Greek) +\toc1 Esther (Greek) +\toc2 Esther (Greek) +\toc3 EsG +\mt1 Esther +\mt2 translated from the Greek Septuagint +\is1 Introduction +\ip The book of Esther in the Greek Septuagint contains 5 additions that the traditional Hebrew text doesn’t have. These additions are recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches. Those additions are enclosed in [square brackets]. Because the additions by themselves make little sense without the broader context of the book, we present here a translation of the whole book of Esther from the Greek. +\ip We have chosen not to distract the reader with confusing out-of-order chapter numbers that would result from using the KJV versification, but rather merge these 5 additions as extensions at the beginning of 1:1 and after 3:13, 4:17, 8:12, and 10:3. This makes some verses (1:1, 5:1, and 8:12) really long, but it also makes the verses line up with the same verse numbers in Esther as translated from the traditional Hebrew text. Some of the proper names in this book have been changed to the more familiar Hebrew form instead of the direct transliteration from the Greek. +\c 1 +\p +\v 1 [In the second year of the reign of Ahasuerus the great king, on the first day of Nisan, Mordecai the son of Jair, the son of Shimei, the son of Kish, of the tribe of Benjamin, a Jew dwelling in the city Susa, a great man, serving in the king’s palace, saw a vision. Now he was one of the captives whom Nebuchadnezzar king of Babylon had carried captive from Jerusalem with Jeconiah the king of Judea. This was his dream: Behold, voices and a noise, thunders and earthquake, tumult upon the earth. And, behold, two great serpents came out, both ready for conflict. A great voice came from them. Every nation was prepared for battle by their voice, even to fight against the nation of the just. Behold, a day of darkness and blackness, suffering and anguish, affection and tumult upon the earth. And all the righteous nation was troubled, fearing their own afflictions. They prepared to die, and cried to God. Something like a great river from a little spring with much water, came from their cry. Light and the sun arose, and the lowly were exalted, and devoured the honorable. +\p Mordecai, who had seen this vision and what God desired to do, having arisen, kept it in his heart, and desired by all means to interpret it, even until night. +\p Mordecai rested quietly in the palace with Gabatha and Tharrha the king’s two chamberlains, eunuchs who guarded the palace. He heard their conversation and searched out their plans. He learned that they were preparing to lay hands on King Ahasuerus; and he informed the king concerning them. The king examined the two chamberlains. They confessed, and were led away and executed. The king wrote these things for a record. Mordecai also wrote concerning these matters. The king commanded Mordecai to serve in the palace, and gave gifts for this service. But Haman the son of Hammedatha the Bougean was honored in the sight of the king, and he endeavored to harm Mordecai and his people, because of the king’s two chamberlains.] +\p \f + \fr 1:1 \fl Note: \ft In the \fl Hebrew \ft and some copies of LXX, Esther begins here.\f*And it came to pass after these things\f + \fr 1:1 \fl Greek \ft words.\f* in the days of Ahasuerus, —(this Ahasuerus ruled over one hundred twenty-seven provinces from India)— +\v 2 in those days, when King Ahasuerus was on the throne in the city of Susa, +\v 3 in the third year of his reign, he made a feast for his friends, for people from the rest of the nations, for the nobles of the Persians and Medes, and for the chief of the local governors. +\v 4 After this—after he had shown them the wealth of his kingdom and the abundant glory of his wealth during one hundred eighty days— +\v 5 when the days of the wedding feast were completed, the king made a banquet lasting six days for the people of the nations who were present in the city, in the court of the king’s house, +\v 6 which was adorned with fine linen and flax on cords of fine linen and purple, fastened to golden and silver studs on pillars of white marble and stone. There were golden and silver couches on a pavement of emerald stone, and of mother-of-pearl, and of white marble, with transparent coverings variously flowered, having roses arranged around it. +\v 7 There were gold and silver cups, and a small cup of carbuncle set out, of the value of thirty thousand talents, with abundant and sweet wine, which the king himself drank. +\v 8 This banquet was not according to the appointed law, but as the king desired to have it. He charged the stewards to perform his will and that of the company. +\p +\v 9 Also Vashti the queen made a banquet for the women in the palace where King Ahasuerus lived. +\v 10 Now on the seventh day, the king, being merry, told Haman, Bazan, Tharrha, Baraze, Zatholtha, Abataza, and Tharaba, the seven chamberlains, servants of King Ahasuerus, +\v 11 to bring in the queen to him, to\f + \fr 1:11 \fl Greek \ft to make her queen. \f* enthrone her, and crown her with the diadem, and to show her to the princes, and her beauty to the nations, for she was beautiful. +\v 12 But queen Vashti refused to come with the chamberlains; so the king was grieved and angered. +\v 13 And he said to his friends, “This is what Vashti said. Therefore pronounce your legal judgment on this case.” +\p +\v 14 So Arkesaeus, Sarsathaeus, and Malisear, the princes of the Persians and Medes, who were near the king, who sat chief in rank by the king, drew near to him, +\v 15 and reported to him according to the laws what it was proper to do to queen Vashti, because she had not done the things commanded by the king through the chamberlains. +\v 16 And Memucan said to the king and to the princes, “Queen Vashti has not wronged the king only, but also all the king’s rulers and princes; +\v 17 for he has told them the words of the queen, and how she\f + \fr 1:17 \fl Greek \ft contradicted. \f* disobeyed the king. As she then refused to obey King Ahasuerus, +\v 18 so this day the other wives of the chiefs of the Persians and Medes, having heard what she said to the king, will dare in the same way to dishonor their husbands. +\v 19 If then it seems good to the king, let him make a royal decree, and let it be written according to the laws of the Medes and Persians, and let him not alter it: ‘Don’t allow the queen to come in to him any more. Let the king give her royalty to a woman better than she.’ +\v 20 Let the law of the king which he will have made be widely proclaimed in his kingdom. Then all the women will give honor to their husbands, from the poor even to the rich.” +\v 21 This advice pleased the king and the princes; and the king did as Memucan had said, +\v 22 and sent into all his kingdom through the several provinces, according to their language, so that men might be feared in their own houses. +\c 2 +\p +\v 1 After this, the king’s anger was pacified, and he no more mentioned Vashti, bearing in mind what she had said, and how he had condemned her. +\v 2 Then the servants of the king said, “Let chaste, beautiful young virgins be sought for the king. +\v 3 Let the king appoint local governors in all the provinces of his kingdom, and let them select beautiful, chaste young ladies and bring them to the city Susa, into the women’s apartment. Let them be consigned to the king’s chamberlain, the keeper of the women. Then let things for purification and other needs be given to them. +\v 4 Let the woman who pleases the king be queen instead of Vashti.” +\p This thing pleased the king; and he did so. +\p +\v 5 Now there was a Jew in the city Susa, and his name was Mordecai, the son of Jairus, the son of Shimei, the son of Kish, of the tribe of Benjamin. +\v 6 He had been brought as a prisoner from Jerusalem, whom Nebuchadnezzar king of Babylon had carried into captivity. +\v 7 He had a foster child, daughter of Aminadab his father’s brother. Her name was Esther. When her parents died, he brought her up to womanhood as his own. This lady was beautiful. +\v 8 And because the king’s ordinance was published, many ladies were gathered to the city of Susa under the hand of Hegai; and Esther was brought to Hegai, the keeper of the women. +\v 9 The lady pleased him, and she found favor in his sight. He hurried to give her the things for purification, her portion, and the seven maidens appointed her out of the palace. He treated her and her maidens well in the women’s apartment. +\v 10 But Esther didn’t reveal her family or her kindred, for Mordecai had charged her not to tell. +\v 11 But Mordecai used to walk every day by the women’s court, to see what would become of Esther. +\p +\v 12 Now this was the time for a virgin to go into the king, when she had completed twelve months; for so are the days of purification fulfilled, six months while they are anointing themselves with oil of myrrh, and six months with spices and women’s purifications. +\v 13 And then the lady goes in to the king. The officer that he commands to do so will bring her to come in with him from the women’s apartment to the king’s chamber. +\v 14 She enters in the evening, and in the morning she departs to the second women’s apartment, where Hegai the king’s chamberlain is keeper of the women. She doesn’t go in to the king again, unless she is called by name. +\v 15 And when the time was fulfilled for Esther the daughter of Aminadab the brother of Mordecai’s father to go in to the king, she neglected nothing which the chamberlain, the women’s keeper, commanded; for Esther found grace in the sight of all who looked at her. +\v 16 So Esther went in to King Ahasuerus in the twelfth month, which is Adar, in the seventh year of his reign. +\v 17 The king loved Esther, and she found favor beyond all the other virgins. He put the queen’s crown on her. +\v 18 The king made a banquet for all his friends and great men for seven days, and he highly celebrated the marriage of Esther; and he granted a remission of taxes to those who were under his dominion. +\p +\v 19 Meanwhile, Mordecai served in the courtyard. +\v 20 Now Esther had not revealed her country, for so Mordecai commanded her, to fear God, and perform his commandments, as when she was with him. Esther didn’t change her manner of life. +\p +\v 21 Two chamberlains of the king, the chiefs of the body-guard, were grieved, because Mordecai was promoted; and they sought to kill King Ahasuerus. +\v 22 And the matter was discovered by Mordecai, and he made it known to Esther, and she declared to the king the matter of the conspiracy. +\v 23 And the king examined the two chamberlains and hanged them. Then the king gave orders to make a note for a memorial in the royal library of the goodwill shown by Mordecai, as a commendation. +\c 3 +\p +\v 1 After this, King Ahasuerus highly honored Haman the son of Hammedatha, the Bugaean. He exalted him and set his seat above all his friends. +\v 2 All in the palace bowed down to him, for so the king had given orders to do; but Mordecai didn’t bow down to him. +\v 3 And they in the king’s palace said to Mordecai, “Mordecai, why do you transgress the commands of the king?” +\v 4 They questioned him daily, but he didn’t listen to them; so they reported to Haman that Mordecai resisted the commands of the king; and Mordecai had shown to them that he was a Jew. +\v 5 When Haman understood that Mordecai didn’t bow down to him, he was greatly enraged, +\v 6 and plotted to utterly destroy all the Jews who were under the rule of Ahasuerus. +\p +\v 7 In the twelfth year of the reign of Ahasuerus, Haman made a decision by casting lots by day and month, to kill the race of Mordecai in one day. The lot fell on the fourteenth day of the month of Adar. +\v 8 So he spoke to King Ahasuerus, saying, “There is a nation scattered among the nations in all your kingdom, and their laws differ from all the other nations. They disobey the king’s laws. It is not expedient for the king to tolerate them. +\v 9 If it seem good to the king, let him make a decree to destroy them, and I will remit into the king’s treasury ten thousand talents of silver.” +\p +\v 10 So the king took off his ring, and gave it into the hands of Haman to seal the decrees against the Jews. +\v 11 The king said to Haman, “Keep the silver, and treat the nation as you will.” +\v 12 So the king’s recorders were called in the first month, on the thirteenth day, and they wrote as Haman commanded to the captains and governors in every province, from India even to Ethiopia, to one hundred twenty-seven provinces; and to the rulers of the nations according to their languages, in the name of King Ahasuerus. +\v 13 The message was sent by couriers throughout the kingdom of Ahasuerus, to utterly destroy the race of the Jews on the first day of the twelfth month, which is Adar, and to plunder their goods.\f + \fr 3:13 \fl Note: \ft The part in brackets is not in \fl Hebrew\f* [The following is the copy of the letter. “From the great King Ahasuerus to the rulers and the governors under them of one hundred twenty-seven provinces, from India even to Ethiopia, who hold authority under him: +\p “Ruling over many nations and having obtained dominion over the whole world, I was determined (not elated by the confidence of power, but ever conducting myself with great moderation and gentleness) to make the lives of my subjects continually tranquil, desiring both to maintain the kingdom quiet and orderly to its utmost limits, and to restore the peace desired by all men. When I had asked my counselors how this should be brought to pass, Haman, who excels in soundness of judgment among us, and has been manifestly well inclined without wavering and with unshaken fidelity, and had obtained the second post in the kingdom, informed us that a certain ill-disposed people is scattered among all the tribes throughout the world, opposed in their law to every other nation, and continually neglecting the commands of the king, so that the united government blamelessly administered by us is not quietly established. Having then conceived that this nation is continually set in opposition to every man, introducing as a change a foreign code of laws, and injuriously plotting to accomplish the worst of evils against our interests, and against the happy establishment of the monarchy, we instruct you in the letter written by Haman, who is set over the public affairs and is our second governor, to destroy them all utterly with their wives and children by the swords of the enemies, without pitying or sparing any, on the fourteenth day of the twelfth month Adar, of the present year; that the people aforetime and now ill-disposed to us having been violently consigned to death in one day, may hereafter secure to us continually a well constituted and quiet state of affairs.”] +\v 14 Copies of the letters were published in every province; and an order was given to all the nations to be ready for that day. +\v 15 This business was hastened also in Susa. The king and Haman began to drink, but the city was confused. +\c 4 +\p +\v 1 But Mordecai, having perceived what was done, tore his garments, put on sackcloth, and sprinkled dust upon himself. Having rushed forth through the open street of the city, he cried with a loud voice, “A nation that has done no wrong is going to be destroyed!” +\v 2 He came to the king’s gate, and stood; for it was not lawful for him to enter into the palace wearing sackcloth and ashes. +\v 3 And in every province where the letters were published, there was crying, lamentation, and great mourning on the part of the Jews. They wore sackcloth and ashes. +\v 4 The queen’s maids and chamberlains went in and told her; and when she had heard what was done, she was deeply troubled. She sent clothes to Mordecai to replace his sackcloth, but he refused. +\v 5 So Esther called for her chamberlain Hathach, who waited upon her; and she sent to learn the truth from Mordecai. +\v 7 Mordecai showed him what was done, and the promise which Haman had made the king of ten thousand talents to be paid into the treasury, that he might destroy the Jews. +\v 8 And he gave him the copy of what was published in Susa concerning their destruction to show to Esther; and told him to charge her to go in and entreat the king, and to beg him for the people. “Remember, he said, the days of your humble condition, how you were nursed by my hand; because Haman, who holds the next place to the king, has spoken against us to cause our death. Call upon the Lord, and speak to the king concerning us, to deliver us from death.” +\p +\v 9 So Hathach went in and told her all these words. +\v 10 Esther said to Hathach, “Go to Mordecai, and say, +\v 11 ‘All the nations of the empire know that any man or woman who goes in to the king into the inner court without being called, that person must die, unless the king stretches out his golden sceptre; then he shall live. I haven’t been called to go into the king for thirty days.’” +\p +\v 12 So Hathach reported to Mordecai all the words of Esther. +\v 13 Then Mordecai said to Hathach, “Go, and say to her, ‘Esther, don’t say to yourself that you alone will escape in the kingdom, more than all the other Jews. +\v 14 For if you keep quiet on this occasion, help and protection will come to the Jews from another place; but you and your father’s house will perish. Who knows if you have been made queen for this occasion?’” +\p +\v 15 And Esther sent the messenger who came to her to Mordecai, saying, +\v 16 “Go and assemble the Jews that are in Susa, and all of you fast for me. Don’t eat or drink for three days, night and day. My maidens and I will also fast. Then I will go in to the king contrary to the law, even if I must die.” +\p +\v 17 So Mordecai went and did all that Esther commanded him.\f + \fr 4:17 \ft Note: The part between brackets, \fl i.e. \ft to the end of chapter 5 is not in the Hebrew \f* +\v 18 [He prayed to the Lord, making mention of all the works of the Lord. +\v 19 He said, “Lord God, you are king ruling over all, for all things are in your power, and there is no one who can oppose you in your purpose to save Israel; +\v 20 for you have made the heaven and the earth and every wonderful thing under heaven. +\v 21 You are Lord of all, and there is no one who can resist you, Lord. +\v 22 You know all things. You know, Lord, that it is not in insolence, nor arrogance, nor love of glory, that I have done this, to refuse to bow down to the arrogant Haman. +\v 23 For I would gladly have kissed the soles of his feet for the safety of Israel. +\v 24 But I have done this that I might not set the glory of man above the glory of God. I will not worship anyone except you, my Lord, and I will not do these things in arrogance. +\v 25 And now, O Lord God, the King, the God of Abraham, spare your people, for our enemies are planning our destruction, and they have desired to destroy your ancient inheritance. +\v 26 Do not overlook your people, whom you have redeemed for yourself out of the land of Egypt. +\v 27 Listen to my prayer. Have mercy on your inheritance and turn our mourning into gladness, that we may live and sing praise to your name, O Lord. Don’t utterly destroy the mouth of those who praise you, O Lord.” +\p +\v 28 All Israel cried with all their might, for death was before their eyes. +\v 29 And queen Esther took refuge in the Lord, being taken as it were in the agony of death. +\v 30 Having taken off her glorious apparel, she put on garments of distress and mourning. Instead of grand perfumes she filled her head with ashes and dung. She greatly humbled her body, and she filled every place of her glad adorning with her tangled hair. +\v 31 She implored the Lord God of Israel, and said, “O my Lord, you alone are our king. Help me. I am destitute, and have no helper but you, +\v 32 for my danger is near at hand\f + \fr 4:32 \fl Greek \ft in my hand. \f*. +\v 33 I have heard from my birth in the tribe of my kindred that you, Lord, took Israel out of all the nations, and our fathers out of all their kindred for a perpetual inheritance, and have done for them all that you have said. +\v 34 And now we have sinned before you, and you have delivered us into the hands of our enemies, +\v 35 because we honored their gods. You are righteous, O Lord. +\v 36 But now they have not been content with the bitterness of our slavery, but have laid their hands on the hands of their idols +\v 37 to abolish the decree of your mouth, and utterly to destroy your inheritance, and to stop the mouth of those who praise you, and to extinguish the glory of your house and your altar, +\v 38 and to open the mouth of the Gentiles to speak the\f + \fr 4:38 \fl Greek \ft virtues. \f* praises of vanities, and that a mortal king should be admired forever. +\v 39 O Lord, don’t surrender your sceptre to those who don’t exist, and don’t let them laugh at our fall, but turn their counsel against themselves, and make an example of him who has begun to injure us. +\v 40 Remember us, O Lord! Manifest yourself in the time of our affliction. Encourage me, O King of gods, and ruler of all dominion! +\v 41 Put harmonious speech into my mouth before the lion, and turn his heart to hate him who fights against us, to the utter destruction of those who agree with him. +\v 42 But deliver us by your hand, and help me who am alone and have no one but you, O Lord. +\v 43 You know all things, and know that I hate the glory of transgressors,\f + \fr 4:43 \fl Or, \ft opinion. \f* and that I abhor the bed of the uncircumcised and of every stranger. +\v 44 You know my necessity, for I abhor the symbol of my proud station, which is upon my head in the days of my\f + \fr 4:44 \fl Greek \ft vision.\f* splendor. I abhor it as a menstruous cloth, and I don’t wear it in the days of my tranquility. +\v 45 Your handmaid has not eaten at Haman’s table, and I have not honored the banquet of the king, neither have I drunk wine of libations. +\v 46 Neither has your handmaid rejoiced since the day of my promotion until now, except in you, O Lord God of Abraham. +\v 47 O god, who has power over all, listen to the voice of the desperate, and deliver us from the hand of those who devise mischief. Deliver me from my fear.] +\c 5 +\p +\v 1 \f + \fr 5:1 \ft From the first verse to the third, the \fl Greek widely differs from the \fl Hebrew \f*It came to pass on the third day, when she had ceased praying, that she took off her servant’s dress and put on her glorious apparel. Being splendidly dressed and having called upon God the Overseer and Preserver of all things, she took her two maids, and she leaned upon one, as a delicate female, and the other followed bearing her train. She was blooming in the perfection of her beauty. Her face was cheerful and looked lovely, but her heart was filled with fear. Having passed through all the doors, she stood before the king. He was sitting on his royal throne. He had put on all his glorious apparel, covered all over with gold and precious stones, and was very terrifying. And having raised his face resplendent with glory, he looked with intense anger. The queen fell, and changed her color as she fainted. She bowed herself upon the head of the maid who went before her. But God changed the spirit of the king to gentleness, and in intense feeling, he sprang from off his throne, and took her into his arms, until she recovered. He comforted her with peaceful words, and said to her, “What is the matter, Esther? I am your relative. Cheer up! You shall not die, for our command is openly declared to you: ‘Draw near.’” +\p +\v 2 And having raised the golden sceptre, he laid it upon her neck, and embraced her. He said, “Speak to me.” +\p So she said to him, “I saw you, my lord, as an angel of God, and my heart was troubled for fear of your glory; for you, my lord, are to be wondered at, and your face is full of grace.” While she was speaking, she fainted and fell. +\p Then the king was troubled, and all his servants comforted her. +\v 3 The king said, “What do you desire, Esther? What is your request? Ask even to the half of my kingdom, and it shall be yours.” +\p +\v 4 Esther said, “Today is a special day. So if it seems good to the king, let both him and Haman come to the feast which I will prepare this day.” +\p +\v 5 The king said, “Hurry and bring Haman here, that we may do as Esther said.” So they both came to the feast about which Esther had spoken. +\v 6 At the banquet, the king said to Esther, “What is your request, queen Esther? You shall have all that you require.” +\p +\v 7 She said, “My request and my petition is: +\v 8 if I have found favor in the king’s sight, let the king and Haman come again tomorrow to the feast which I shall prepare for them, and tomorrow I will do as I have done today.” +\p +\v 9 So Haman went out from the king very glad and merry; but when Haman saw Mordecai the Jew in the court, he was greatly enraged. +\v 10 Having gone into his own house, he called his friends, and his wife Zeresh. +\v 11 He showed them his wealth and the glory with which the king had invested him, and how he had promoted him to be chief ruler in the kingdom. +\v 12 Haman said, “The queen has called no one to the feast with the king but me, and I am invited tomorrow. +\v 13 But these things don’t please me while I see Mordecai the Jew in the court. +\p +\v 14 Then Zeresh his wife and his friends said to him, “Let a fifty cubit tall\f + \fr 5:14 \fl Greek \ft a tree cut. \f* gallows be made for you. In the morning you speak to the king, and let Mordecai be hanged on the gallows; but you go in to the feast with the king, and be merry.” +\p The saying pleased Haman, and the gallows was prepared. +\c 6 +\p +\v 1 The Lord removed sleep from the king that night; so he told his servant to bring in the\f + \fr 6:1 \fl Greek \ft letters. \f* books, the registers of daily events, to read to him. +\v 2 And he found the\f + \fr 6:2 \fl Greek \ft letters. \f* records written concerning Mordecai, how he had told the king about the king’s two chamberlains, when they were keeping guard, and sought to lay hands on Ahasuerus. +\v 3 The king said, “What honor or favor have we done for Mordecai?” +\p The king’s servants said, “You haven’t done anything for him.” +\p +\v 4 And while the king was enquiring about the kindness of Mordecai, behold, Haman was in the court. The king said, “Who is in the court? Now Haman had come in to speak to the king about hanging Mordecai on the gallows which he had prepared. +\v 5 The king’s servants said, “Behold, Haman stands in the court.” +\p And the king said, “Call him!” +\p +\v 6 The king said to Haman, “What should I do for the man whom I wish to honor?” +\p Haman said within himself, “Whom would the king honor but myself?” +\v 7 He said to the king, “As for the man whom the king wishes to honor, +\v 8 let the king’s servants bring the robe of fine linen which the king puts on, and the horse on which the king rides, +\v 9 and let him give it to one of the king’s noble friends, and let him dress the man whom the king loves. Let him mount him on the horse, and proclaim through the\f + \fr 6:9 \fl Or, \ft wide space. \f* streets of the city, saying, “This is what will be done for every man whom the king honors!” +\p +\v 10 Then the king said to Haman, “You have spoken well. Do so for Mordecai the Jew, who waits in the palace, and let not a word of what you have spoken be neglected!” +\p +\v 11 So Haman took the robe and the horse, dressed Mordecai, mounted him on the horse, and went through the streets of the city, proclaiming, “This is what will be done for every man whom the king wishes to honor.” +\v 12 Then Mordecai returned to the palace; but Haman went home mourning, with his head covered. +\p +\v 13 Haman related the events that had happened to him to Zeresh his wife and to his friends. His friends and his wife said to him, “If Mordecai is of the race of the Jews, and you have begun to be humbled before him, you will assuredly fall; and you will not be able to withstand him, for the living God is with him.” +\v 14 While they were still speaking, the chamberlains arrived to rush Haman to the banquet which Esther had prepared. +\c 7 +\p +\v 1 So the king and Haman went in to drink with the queen. +\v 2 The king said to Esther at the banquet on the second day, “What is it, queen Esther? What is your request? What is your petition? It shall be done for you, up to half of my kingdom.” +\p +\v 3 She answered and said, “If I have found favor in the sight of the king, let my life be granted as my petition, and my people as my request. +\v 4 For both I and my people are sold for destruction, pillage, and genocide. If both we and our children were sold for male and female slaves, I would not have bothered you, for this\f + \fr 7:4 \ft see \fqa Hebrew: slanderer \f* isn’t worthy of the king’s palace.” +\p +\v 5 The king said, “Who has dared to do this thing?” +\p +\v 6 Esther said, “The enemy is Haman, this wicked man!” +\p Then Haman was terrified in the presence of the king and the queen. +\v 7 The king rose up from the banquet to go into the garden. Haman began to beg the queen for mercy, for he saw that he was in serious trouble. +\v 8 The king returned from the garden; and Haman had fallen upon the couch, begging the queen for mercy. The king said, “Will you even assault my wife in my house?” +\p And when Haman heard it, he changed countenance. +\v 9 And Bugathan, one of the chamberlains, said to the king, “Behold, Haman has also prepared a gallows for Mordecai, who spoke concerning the king, and a fifty cubit high gallows has been set up on Haman’s property.” +\p The king said, “Let him be\f + \fr 7:9 \fl Or, \ft impaled. \f* hanged on it!” +\v 10 So Haman was hanged on the gallows that had been prepared for Mordecai. Then the king’s wrath was abated. +\c 8 +\p +\v 1 On that day, King Ahasuerus gave to Esther all that belonged to Haman the slanderer. The king called Mordecai, for Esther had told that he was related to her. +\v 2 The king took the ring which he had taken away from Haman and gave it to Mordecai. Esther appointed Mordecai over all that had been Haman’s. +\v 3 She spoke yet again to the king, and fell at his feet, and implored him to undo Haman’s mischief and all that he had done against the Jews. +\v 4 Then the king extended the golden sceptre to Esther; and Esther arose to stand near the king. +\v 5 Esther said, “If it seems good to you, and I have found favor in your sight, let an order be sent that the letters sent by Haman may be reversed—letters that were written for the destruction of the Jews who are in your kingdom. +\v 6 For how could I see the affliction of my people, and how could I survive the destruction of my\f + \fr 8:6 \fl Greek \ft country. \f* kindred?” +\p +\v 7 Then the king said to Esther, “If I have given and freely granted you all that was Haman’s, and hanged him on a gallows because he laid his hands upon the Jews, what more do you seek? +\v 8 Write in my name whatever seems good to you, and seal it with my ring; for whatever is written at the command of the king, and sealed with my ring, cannot be countermanded. +\v 9 So the scribes were called in the first month, which is Nisan, on the twenty-third day of the same year; and orders were written to the Jews, whatever the king had commanded to the\f + \fr 8:9 \fl Greek \ft stewards.\f* local governors and chiefs of the local governors, from India even to Ethiopia—one hundred twenty-seven local governors, according to the several provinces, in their own languages. +\v 10 They were written by order of the king, sealed with his ring, and the letters were sent by the couriers. +\v 11 In them, he charged them to use their own laws in every city, to help each other, and to treat their adversaries and those who attacked them as they pleased, +\v 12 on one day in all the kingdom of Ahasuerus, on the thirteenth day of the twelfth month, which is Adar. +\v 13 Let the copies be posted in conspicuous places throughout the kingdom. Let all the Jews be ready against this day, to fight against their enemies. The following is a copy of the letter containing orders: +\p \f + \fr 8:13 \ft the passages in brackets are not in the \fl Hebrew. \f*[The great King Ahasuerus sends greetings to the rulers of provinces in one hundred twenty-seven local governance regions, from India to Ethiopia, even to those who are faithful to our interests. Many who have been frequently honored by the most abundant kindness of their\f + \fr 8:13 \ft perhaps rulers, see Luke 22. 25. \f* benefactors have conceived ambitious designs, and not only endeavor to hurt our subjects, but moreover, not being able to bear prosperity, they also endeavor to plot against their own benefactors. They not only would utterly abolish gratitude from among men, but also, elated by the boastings of men who are strangers to all that is good, they supposed that they would escape the sin-hating vengeance of the ever-seeing God. And oftentimes evil exhortation has made partakers of the guilt of shedding innocent blood, and has involved in irremediable calamities many of those who had been appointed to offices of authority, who had been entrusted with the management of their friends’ affairs; while men, by the false sophistry of an evil disposition, have deceived the simple goodwill of the ruling powers. And it is possible to see this, not so much from more ancient traditional accounts, as it is immediately in your power to see it by examining what things have been wickedly\f + \fr 8:13 \fl Greek \ft contrived. \f* perpetrated by the baseness of men unworthily holding power. It is right to take heed with regard to the future, that we may maintain the government in undisturbed peace for all men, adopting needful changes, and ever judging those cases which come under our notice with truly equitable decisions. For whereas Haman, a Macedonian, the son of Hammedatha, in reality an alien from the blood of the Persians, and differing widely from our mild course of government, having been hospitably entertained by us, obtained so large a share of our universal kindness as to be called our father, and to continue the person next to the royal throne, reverenced of all; he however, overcome by\f + \fr 8:13 \fl Greek \ft not having borne.\f* pride, endeavored to deprive us of our dominion, and our life;\f + \fr 8:13 \fl Greek \ft spirit. \f* having by various and subtle artifices demanded for destruction both Mordecai our deliverer and perpetual benefactor, and Esther the blameless consort of our kingdom, along with their whole nation. For by these methods he thought, having surprised us in a defenseless state, to transfer the dominion of the Persians to the Macedonians. But we find that the Jews, who have been consigned to destruction by the\f + \fr 8:13 \fl Greek \ft thrice guilty. \f* most abominable of men, are not malefactors, but living according to the most just laws, and being the sons of the living God, the most high and\f + \fr 8:13 \fl Greek \ft greatest. \f* mighty, who maintains the kingdom, to us as well as to our forefathers, in the most excellent order. You will therefore do well in refusing to obey the letter sent by Haman the son of Hammedatha, because he who has done these things has been hanged with his whole family at the gates of Susa, Almighty God having swiftly returned to him a worthy punishment. We enjoin you then, having openly published a copy of this letter in every place, to give the Jews permission to use their own lawful customs and to strengthen them, that on the thirteenth of the twelfth month Adar, on the self-same day, they may defend themselves against those who attack them in a time of affliction. For in the place of the destruction of the chosen race, Almighty God has granted them this time of gladness. Therefore you also, among your notable feasts, must keep a distinct day with all festivity, that both now and hereafter it may be a day of deliverance to us and who are well disposed toward the Persians, but to those that plotted against us a memorial of destruction. And every city and province collectively, which shall not do accordingly, shall be consumed with vengeance by spear and fire. It shall be made not only inaccessible to men, but most hateful to wild beasts and birds forever.] Let the copies be posted in conspicuous places throughout the kingdom and let all the Jews be ready against this day, to fight against their enemies. +\v 14 So the horsemen went forth with haste to perform the king’s commands. The ordinance was also published in Susa. +\p +\v 15 Mordecai went out robed in royal apparel, wearing a golden crown and a diadem of fine purple linen. The people in Susa saw it and rejoiced. +\v 16 The Jews had light and gladness +\v 17 in every city and province where the ordinance was published. Wherever the proclamation took place, the Jews had joy and gladness, feasting and mirth. Many of the Gentiles were circumcised and became Jews for fear of the Jews. +\c 9 +\p +\v 1 Now in the twelfth month, on the thirteenth day of the month, which is Adar, the letters written by the king arrived. +\v 2 In that day, the adversaries of the Jews perished; for no one resisted, through fear of them. +\v 3 For the chiefs of the local governors, and the princes and the royal scribes, honored the Jews; for the fear of Mordecai was upon them. +\v 4 For the order of the king was in force, that he should be celebrated in all the kingdom. +\v 6 In the city Susa the Jews killed five hundred men, +\v 7 including Pharsannes, Delphon, Phasga, +\v 8 Pharadatha, Barea, Sarbaca, +\v 9 Marmasima, Ruphaeus, Arsaeus, and Zabuthaeus, +\v 10 the ten sons of Haman the son of Hammedatha the Bugaean, the enemy of the Jews; and they plundered their property on the same day. +\v 11 The number of those who perished in Susa was reported to the king. +\p +\v 12 Then the king said to Esther, “The Jews have slain five hundred men in the city Susa. What do you think they have done in the rest of the country? What more do you ask, that it may be done for you?” +\p +\v 13 Esther said to the king, “Let it be granted to the Jews to do the same to them tomorrow. Also, hang the bodies of the ten sons of Haman.” +\p +\v 14 He permitted it to be done; and he gave up to the Jews of the city the bodies of the sons of Haman to hang. +\v 15 The Jews assembled in Susa on the fourteenth day of Adar and killed three hundred men, but plundered no property. +\p +\v 16 The rest of the Jews who were in the kingdom assembled, and helped one another, and obtained rest from their enemies; for they destroyed fifteen thousand of them on the thirteenth day of Adar, but took no spoil. +\v 17 They rested on the fourteenth of the same month, and kept it as a day of rest with joy and gladness. +\p +\v 18 The Jews in the city of Susa assembled also on the fourteenth day and rested; and they also observed the fifteenth with joy and gladness. +\v 19 On this account then, the Jews dispersed in every foreign land keep the fourteenth of Adar as a\f + \fr 9:19 \fl Greek \ft good day. \f* holy day with joy, each sending gifts of food to his neighbor. +\p +\v 20 Mordecai wrote these things in a book and sent them to the Jews, as many as were in the kingdom of Ahasuerus, both those who were near and those who were far away, +\v 21 to establish these as joyful days and to keep the fourteenth and fifteenth of Adar; +\v 22 for on these days the Jews obtained rest from their enemies; and in that month, which was Adar, in which a change was made for them from mourning to joy, and from sorrow to a holiday, to spend the whole of it in good days of\f + \fr 9:22 \fl Greek \ft weddings. \f* feasting and gladness, sending portions to their friends and to the poor. +\v 23 And the Jews consented to this as Mordecai wrote to them, +\v 24 showing how Haman the son of Hammedatha the Macedonian fought against them, how he made a decree and cast\f + \fr 9:24 \fl Greek \ft lot. \f* lots to destroy them utterly; +\v 25 also how he went in to the king, telling him to hang Mordecai; but all the calamities he tried to bring upon the Jews came upon himself, and he was hanged, along with his children. +\v 26 Therefore these days were called Purim, because of the lots (for in their language they are called Purim) because of the words of this letter, and because of all they suffered on this account, and all that happened to them. +\v 27 Mordecai established it, and the Jews took upon themselves, upon their offspring, and upon those who were joined to them to observe it, neither would they on any account behave differently; but these days were to be a memorial kept in every generation, city, family, and province. +\v 28 These days of Purim shall be kept forever, and their memorial shall not fail in any generation. +\p +\v 29 Queen Esther the daughter of Aminadab and Mordecai the Jew wrote all that they had done, and gave the confirmation of the letter about Purim. +\v 31 Mordecai and Esther the queen established this decision on their own, pledging their own well-being to their plan. +\v 32 And Esther established it by a command forever, and it was written for a memorial. +\c 10 +\p +\v 1 The king levied a tax upon his kingdom both by land and sea. +\v 2 As for his strength and valour, and the wealth and glory of his kingdom, behold, they are written in the book of the Persians and Medes for a memorial. +\p +\v 3 Mordecai\f + \fr 10:3 \fl Greek \ft succeded to \fl Or, came into the place of. \f* was viceroy to King Ahasuerus, and was a great man in the kingdom, honored by the Jews, and lived his life loved by all his nation.\f + \fr 10:3 \ft the passages in brackets are not in the \fl Hebrew. \f* +\v 4 [Mordecai said, “These things have come from God. +\v 5 For I remember the dream which I had concerning these matters; for not one detail of them has failed. +\v 6 There was the little spring which became a river, and there was light, and the sun and much water. The river is Esther, whom the king married and made queen. +\v 7 The two serpents are Haman and me. +\v 8 The nations are those which combined to destroy the name of the Jews. +\v 9 But as for my nation, this is Israel, even those who cried to God and were delivered; for the Lord delivered his people. The Lord rescued us out of all these calamities; and God worked such signs and great wonders as have not been done among the nations. +\v 10 Therefore he ordained two lots. One for the people of God, and one for all the other nations. +\v 11 And these two lots came for an appointed season, and for a day of judgment, before God, and for all the nations. +\v 12 God remembered his people and vindicated his inheritance. +\v 13 They shall observe these days in the month Adar, on the fourteenth and on the fifteenth day of the month, with an assembly, joy, and gladness before God, throughout the generations forever among his people Israel. +\v 14 In the fourth year of the reign of Ptolemeus and Cleopatra, Dositheus, who said he was a priest and Levite, and Ptolemeus his son brought this letter of Purim, which they said was authentic, and that Lysimachus the son of Ptolemeus, who was in Jerusalem, had interpreted.] \ No newline at end of file diff --git a/bibles/eng-web_usfm/45-WISeng-web.usfm b/bibles/eng-web_usfm/45-WISeng-web.usfm new file mode 100644 index 0000000..598c51a --- /dev/null +++ b/bibles/eng-web_usfm/45-WISeng-web.usfm @@ -0,0 +1,1617 @@ +\id WIS - The Wisdom Of Solomon +\h Wisdom of Solomon +\toc1 The Wisdom of Solomon +\toc2 Wisdom +\toc3 Wis +\mt1 The Wisdom of Solomon +\ip The \bk Wisdom of Solomon\bk* is recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches. +\c 1 +\q1 +\v 1 Love righteousness, all you who are judges of the earth. +\q2 Think of the Lord\f + \fr 1:1 \ft Gr. \fqa in goodness. \f* with a good mind. +\q1 Seek him in singleness of heart, +\q2 +\v 2 because he is found by those who don’t put him to the test, +\q2 and is manifested to those who trust him. +\q1 +\v 3 for crooked thoughts separate from God. +\q2 His Power convicts when it is tested, +\q2 and exposes the foolish; +\q1 +\v 4 because wisdom will not enter into a soul that devises evil, +\q2 nor dwell in a body that is enslaved by sin. +\q1 +\v 5 For a holy spirit of discipline will flee deceit, +\q2 and will depart from thoughts that are without understanding, +\q2 and will be ashamed when unrighteousness has come in. +\b +\q1 +\v 6 For\f + \fr 1:6 \ft Some authorities read \fqa the spirit of wisdom is loving to man. \f* wisdom is a spirit who loves man, +\q2 and she will not hold a\f + \fr 1:6 \ft Or, \fqa reviler \f* blasphemer guiltless for his lips, +\q2 because God is witness of his inmost self, +\q2 and is a true overseer of his heart, +\q2 and a hearer of his tongue. +\q1 +\v 7 Because the spirit of the Lord has filled\f + \fr 1:7 \ft Gr. \fqa the inhabited earth. \f* the world, +\q2 and that which holds all things together knows what is said. +\q1 +\v 8 Therefore no one who utters unrighteous things will be unseen; +\q2 neither will Justice, when it convicts, pass him by. +\q1 +\v 9 For in his counsels the ungodly will be searched out, +\q2 and the sound of his words will come to the Lord to bring his lawless deeds to conviction; +\q1 +\v 10 because a jealous ear listens to all things, +\q2 and the noise of murmurings is not hidden. +\q1 +\v 11 Beware then of unprofitable murmuring, +\q2 and keep your tongue from slander; +\q2 because no secret utterance will go on its way void, +\q2 and a lying mouth destroys a soul. +\q1 +\v 12 Don’t court death in the error of your life. +\q2 Don’t draw destruction upon yourselves by the works of your hands; +\q2 +\v 13 because God didn’t make death, +\q2 neither does he delight when the living perish. +\q1 +\v 14 For he created all things that they might have being. +\q2 The generative powers of the world are wholesome, +\q2 and there is no poison of destruction in them, +\q2 nor has Hades\f + \fr 1:14 \ft Or, \fqa a royal house \f* royal dominion upon earth; +\q1 +\v 15 for righteousness is immortal, +\q2 +\v 16 but ungodly men by their hands and their words summon death; +\q2 deeming him a friend they\f + \fr 1:16 \ft Or, \fqa were consumed \ft with love of him \f* pined away. +\q1 They made a covenant with him, +\q2 because they are worthy to belong with him. +\b +\c 2 +\q1 +\v 1 For they said\f + \fr 2:1 \ft Or, \fqa among \f* within themselves, with unsound reasoning, +\q2 “Our life is short and sorrowful. +\q2 There is no healing when a man comes to his end, +\q2 and no one was ever known who\f + \fr 2:1 \ft Or, \fqa returned out of Hades \f* was released from Hades. +\q1 +\v 2 Because we were born by mere chance, +\q2 and hereafter we will be as though we had never been, +\q2 because the breath in our nostrils is smoke, +\q2 and reason is a spark kindled by the beating of our heart, +\q1 +\v 3 which being extinguished, the body will be turned into ashes, +\q2 and the spirit will be dispersed as thin air. +\q1 +\v 4 Our name will be forgotten in time. +\q2 No one will remember our works. +\q2 Our life will pass away as the traces of a cloud, +\q2 and will be scattered as is a mist, +\q2 when it is chased by the rays of the sun, +\q2 and\f + \fr 2:4 \ft Gr. \fqa weighed down. \f* overcome by its heat. +\q1 +\v 5 For our allotted time is the passing of a shadow, +\q2 and our end doesn’t retreat, +\q2 because it is securely sealed, and no one\f + \fr 2:5 \ft Or, \fqa comes again \f* turns it back. +\b +\q1 +\v 6 “Come therefore and let’s enjoy the good things that exist. +\q2 Let’s use the creation earnestly as in our youth. +\q1 +\v 7 Let’s fill ourselves with costly wine and perfumes, +\q2 and let no spring flower pass us by. +\q1 +\v 8 Let’s crown ourselves with rosebuds before they wither. +\q1 +\v 9 Let none of us go without his share in our proud revelry. +\q2 Let’s leave tokens of mirth everywhere, +\q2 because this is our portion, and this is our lot. +\q1 +\v 10 Let’s oppress the righteous poor. +\q2 Let’s not spare the widow, +\q2 nor regard the gray hair of the old man. +\q1 +\v 11 But let our strength be a law of righteousness; +\q2 for that which is weak is proven useless. +\q1 +\v 12 But let’s lie in wait for the righteous man, +\q2 because he annoys us, +\q2 is contrary to our works, +\q2 reproaches us with sins against the law, +\q2 and charges us with sins against our training. +\q1 +\v 13 He professes to have knowledge of God, +\q2 and calls himself a child of the Lord. +\q1 +\v 14 He became to us a reproof of our thoughts. +\q1 +\v 15 He is grievous to us even to look at, +\q2 because his life is unlike other men’s, +\q2 and his paths are strange. +\q1 +\v 16 We were regarded by him as something worthless, +\q2 and he abstains from our ways as from uncleanness. +\q2 He calls the latter end of the righteous happy. +\q2 He boasts that God is his father. +\q1 +\v 17 Let’s see if his words are true. +\q2 Let’s test what will happen at the end of his life. +\q1 +\v 18 For if the righteous man is God’s son, he will uphold him, +\q2 and he will deliver him out of the hand of his adversaries. +\q1 +\v 19 Let’s test him with insult and torture, +\q2 that we may find out how gentle he is, +\q2 and test his patience. +\q1 +\v 20 Let’s condemn him to a shameful death, +\q2 for he will be protected, according to his words.” +\b +\q1 +\v 21 Thus they reasoned, and they were led astray; +\q2 for their wickedness blinded them, +\q1 +\v 22 and they didn’t know the mysteries of God, +\q2 neither did they hope for wages of holiness, +\q2 nor did they discern that there is a prize for blameless souls. +\q1 +\v 23 Because God created man for incorruption, +\q2 and made him an image of his own everlastingness; +\q1 +\v 24 but death entered into the world by the envy of the devil, +\q2 and those who belong to him experience it. +\c 3 +\q1 +\v 1 But the souls of the righteous are in the hand of God, +\q2 and no torment will touch them. +\q1 +\v 2 In the eyes of the foolish they seemed to have died. +\q2 Their departure was considered a disaster, +\q2 +\v 3 and their travel away from us ruin, +\q2 but they are in peace. +\q1 +\v 4 For even if in the sight of men they are punished, +\q2 their hope is full of immortality. +\q1 +\v 5 Having borne a little chastening, they will receive great good; +\q2 because God tested them, and found them worthy of himself. +\q1 +\v 6 He tested them like gold in the furnace, +\q2 and he accepted them as a whole burnt offering. +\q1 +\v 7 In the time of their visitation they will shine. +\q2 They will run back and forth like sparks among stubble. +\q1 +\v 8 They will judge nations and have dominion over peoples. +\q2 The Lord will reign over them forever. +\q2 +\v 9 Those who trust him will understand truth. +\q2 The faithful will live with him in love, +\q2 because grace and mercy are with his chosen ones. +\b +\q1 +\v 10 But the ungodly will be punished even as their reasoning deserves, +\q2 those who neglected righteousness and revolted from the Lord; +\q2 +\v 11 for he who despises wisdom and discipline is miserable. +\q1 Their hope is void and their toils unprofitable. +\q2 Their works are useless. +\q1 +\v 12 Their wives are foolish and their children are wicked. +\q2 +\v 13 Their descendants are cursed. +\q1 For the barren woman who is undefiled is happy, +\q2 she who has not conceived in transgression. +\q2 She will have fruit when God examines souls. +\q1 +\v 14 So is the eunuch which has done no lawless deed with his hands, +\q2 nor imagined wicked things against the Lord; +\q1 for a precious gift will be given to him for his faithfulness, +\q2 and a delightful inheritance in the Lord’s sanctuary. +\q1 +\v 15 For good labors have fruit of great renown. +\q2 The root of understanding can’t fail. +\q1 +\v 16 But children of adulterers will not come to maturity. +\q2 The seed of an unlawful union will vanish away. +\q1 +\v 17 For if they live long, they will not be esteemed, +\q2 and in the end, their old age will be without honor. +\q1 +\v 18 If they die young, they will have no hope, +\q2 nor consolation in the day of judgment. +\q1 +\v 19 For the end of an unrighteous generation is always grievous. +\c 4 +\q1 +\v 1 It is better to be childless with virtue, +\q2 for immortality is in the memory of virtue, +\q2 because it is recognized both before God and before men. +\q1 +\v 2 When it is present, people imitate it. +\q2 They long after it when it has departed. +\q1 Throughout all time it marches, crowned in triumph, +\q2 victorious in the competition for the prizes that are undefiled. +\q1 +\v 3 But the multiplying brood of the ungodly will be of no profit, +\q2 and their illegitimate offshoots won’t take deep root, +\q2 nor will they establish a sure hold. +\q1 +\v 4 For even if they grow branches and flourish for a season, +\q2 standing unsure, they will be shaken by the wind. +\q2 They will be uprooted by the violence of winds. +\q1 +\v 5 Their branches will be broken off before they come to maturity. +\q2 Their fruit will be useless, +\q2 never ripe to eat, and fit for nothing. +\q1 +\v 6 For unlawfully conceived children are witnesses of wickedness +\q2 against parents when they are investigated. +\b +\q1 +\v 7 But a righteous man, even if he dies before his time, will be at rest. +\q1 +\v 8 For honorable old age is not that which stands in length of time, +\q2 nor is its measure given by number of years, +\q2 +\v 9 but understanding is gray hair to men, +\q2 and an unspotted life is ripe old age. +\b +\q1 +\v 10 Being found well-pleasing to God, someone was loved. +\q2 While living among sinners he was transported. +\q1 +\v 11 He was caught away, lest evil should change his understanding, +\q2 or guile deceive his soul. +\q1 +\v 12 For the fascination of wickedness obscures the things which are good, +\q2 and the whirl of desire perverts an innocent mind. +\q1 +\v 13 Being made perfect quickly, +\q2 he filled a long time; +\q2 +\v 14 for his soul was pleasing to the Lord. +\q2 Therefore he hurried out of the midst of wickedness. +\q1 +\v 15 But the peoples saw and didn’t understand, +\q2 not considering this, that grace and mercy are with his chosen, +\q2 and that he visits his holy ones; +\q1 +\v 16 but a righteous man who is dead will condemn the ungodly who are living, +\q2 and youth who is quickly perfected will condemn the many years of an unrighteous man’s old age. +\q1 +\v 17 For the ungodly will see a wise man’s end, +\q2 and won’t understand what the Lord planned for him, +\q2 and why he safely kept him. +\q1 +\v 18 They will see, and they will despise; +\q2 but the Lord will laugh them to scorn. +\q1 After this, they will become a dishonored carcass +\q2 and a reproach among the dead forever; +\q1 +\v 19 because he will dash them speechless to the ground, +\q2 and will shake them from the foundations. +\q1 They will lie utterly waste. +\q2 They will be in anguish +\q2 and their memory will perish. +\b +\q1 +\v 20 They will come with coward fear when their sins are counted. +\q2 Their lawless deeds will convict them to their face. +\c 5 +\q1 +\v 1 Then the righteous man will stand in great boldness +\q2 before the face of those who afflicted him, +\q2 and those who make his labors of no account. +\q1 +\v 2 When they see him, they will be troubled with terrible fear, +\q2 and will be amazed at the marvel of salvation. +\q1 +\v 3 They will speak among themselves repenting, +\q2 and for distress of spirit they will groan, +\q2 “This was he whom we used to hold in derision, +\q2 as a parable of reproach. +\q1 +\v 4 We fools considered his life madness, +\q2 and his end without honor. +\q1 +\v 5 How was he counted among sons of God? +\q2 How is his lot among saints? +\q1 +\v 6 Truly we went astray from the way of truth. +\q2 The light of righteousness didn’t shine for us. +\q2 The sun didn’t rise for us. +\q1 +\v 7 We\f + \fr 5:7 \ft See Proverbs 14:14. \f* took our fill of the paths of lawlessness and destruction. +\q2 We traveled through trackless deserts, +\q2 but we didn’t know the Lord’s way. +\q1 +\v 8 What did our arrogance profit us? +\q2 What good have riches and boasting brought us? +\b +\q1 +\v 9 Those things all passed away as a shadow, +\q2 like a rumor that runs by, +\q2 +\v 10 like a ship passing through the billowy water, +\q2 which, when it has gone by, there is no trace to be found, +\q2 no pathway of its keel in the waves. +\q1 +\v 11 Or it is like when a bird flies through the air, +\q2 no evidence of its passage is found, +\q2 but the light wind, lashed with the stroke of its pinions, +\q2 and torn apart with the violent rush of the moving wings, is passed through. +\q2 Afterwards no sign of its coming remains. +\q1 +\v 12 Or it is like when an arrow is shot at a mark, +\q2 the air it divided closes up again immediately, +\q2 so that men don’t know where it passed through. +\q1 +\v 13 So we also, as soon as we were born, ceased to be; +\q2 and we had no sign of virtue to show, +\q2 but we were utterly consumed in our wickedness.” +\q1 +\v 14 Because the hope of the ungodly man is like chaff carried by the wind, +\q2 and\f + \fr 5:14 \ft Gr. \fqa like foam chased to thinness: \ft or, \fqa as thin foam chased. \f* as\f + \fr 5:14 \ft Most Greek authorities read \fqa hoar frost: \ft some authorities, perhaps rightly, \fqa a spider’s web.\f* foam vanishing before a tempest; +\q2 and is scattered like smoke by the wind, +\q2 and passes by as the remembrance of a guest who stays just a day. +\b +\q1 +\v 15 But the righteous live forever. +\q2 Their reward is in the Lord, +\q2 and the care for them with the Most High. +\q1 +\v 16 Therefore they will receive the crown of royal dignity +\q2 and the diadem of beauty from the Lord’s hand, +\q1 because he will cover them with his right hand, +\q2 and he will shield them with his arm. +\q1 +\v 17 He will take his zeal as complete armor, +\q2 and will make the whole creation his weapons to punish his enemies: +\q1 +\v 18 He will put on righteousness as a breastplate, +\q2 and will wear impartial judgment as a helmet. +\q1 +\v 19 He will take holiness as an invincible shield. +\q2 +\v 20 He will sharpen stern wrath for a sword. +\q2 The universe will go with him to fight against his frenzied foes. +\q1 +\v 21 Shafts of lightning will fly with true aim. +\q2 They will leap to the mark from the clouds, as from a well-drawn bow. +\q1 +\v 22 Hailstones full of wrath will be hurled as from a catapult. +\q2 The water of the sea will be angered against them. +\q2 Rivers will sternly overwhelm them. +\q1 +\v 23 A mighty wind will encounter them. +\q2 It will winnow them away like a tempest. +\q1 So lawlessness will make all the land desolate. +\q2 Their evil-doing will overturn the thrones of princes. +\c 6 +\q1 +\v 1 Hear therefore, you kings, and understand. +\q2 Learn, you judges of the ends of the earth. +\q2 +\v 2 Give ear, you rulers who have dominion over many people, +\q2 and make your boast\f + \fr 6:2 \ft Or, \fqa in the multitudes of your nations \f* in multitudes of nations, +\q1 +\v 3 because your dominion was given to you from the Lord, +\q2 and your sovereignty from the Most High. +\q1 He will search out your works, +\q2 and will inquire about your plans, +\q1 +\v 4 because being officers of his kingdom, you didn’t judge rightly, +\q2 nor did you keep the law, +\q2 nor did you walk according to God’s counsel. +\q1 +\v 5 He will come upon you awfully and swiftly, +\q2 because a stern judgment comes on those who are in high places. +\q1 +\v 6 For the man of low estate may be pardoned in mercy, +\q2 but mighty men will be mightily tested. +\q1 +\v 7 For the Sovereign Lord of all will not be impressed with anyone, +\q2 neither will he show deference to greatness; +\q1 because it is he who made both small and great, +\q2 and cares about them all; +\q1 +\v 8 but the scrutiny that comes upon the powerful is strict. +\q1 +\v 9 Therefore, my words are to you, O princes, +\q2 that you may learn wisdom and not fall away. +\q1 +\v 10 For those who have kept the things that are holy in holiness will be made holy. +\q2 Those who have been taught them will find what to say in defense. +\q1 +\v 11 Therefore set your desire on my words. +\q2 Long for them, and you princes will be instructed. +\b +\q1 +\v 12 Wisdom is radiant and doesn’t fade away; +\q2 and is easily seen by those who love her, +\q2 and found by those who seek her. +\q1 +\v 13 She anticipates those who desire her, making herself known. +\q1 +\v 14 He who rises up early to seek her won’t have difficulty, +\q2 for he will find her sitting at his gates. +\q2 +\v 15 For to think upon her is perfection of understanding, +\q2 and he who watches for her will quickly be free from care; +\q1 +\v 16 because she herself goes around, seeking those who are worthy of her, +\q2 and in their paths she appears to them graciously, +\q2 and in every purpose she meets them. +\q1 +\v 17 For her true beginning is desire for instruction; +\q2 and desire for instruction is love. +\q1 +\v 18 And love is observance of her laws. +\q2 To give heed to her laws confirms immortality. +\q1 +\v 19 Immortality brings closeness to God. +\q2 +\v 20 So then desire for wisdom promotes to a kingdom. +\b +\q1 +\v 21 If therefore you delight in thrones and sceptres, you princes of peoples, +\q2 honor wisdom, that you may reign forever. +\q1 +\v 22 But what wisdom is, and how she came into being, I will declare. +\q2 I won’t hide mysteries from you; +\q2 but I will explore from her first beginning, +\q2 bring the knowledge of her into clear light, +\q2 and I will not pass by the truth. +\q1 +\v 23 Indeed, I won’t travel with consuming envy, +\q2 because envy will have no fellowship with wisdom. +\q1 +\v 24 But a multitude of wise men is salvation to the world, +\q2 and an understanding king is stability for his people. +\q1 +\v 25 Therefore be instructed by my words, and you will profit. +\c 7 +\q1 +\v 1 I myself am also\f + \fr 7:1 \ft Many authorities read \fqa a mortal man.\f* mortal, like everyone else, +\q2 and am a descendant of one formed first and born of the earth. +\q1 +\v 2 I molded into flesh in the time of ten months in my mother’s womb, +\q2 being compacted in blood from the seed of man and pleasure of marriage. +\q1 +\v 3 I also, when I was born, drew in the common air, +\q2 and fell upon the kindred earth, +\q1 uttering, like all, for my first voice, the same cry. +\q1 +\v 4 I was nursed with care in swaddling clothes. +\q1 +\v 5 For no king had a different beginning, +\q2 +\v 6 but all men have one entrance into life, and a common departure. +\b +\q1 +\v 7 For this cause I prayed, and understanding was given to me. +\q2 I asked, and a spirit of wisdom came to me. +\q1 +\v 8 I preferred her before sceptres and thrones. +\q2 I considered riches nothing in comparison to her. +\q1 +\v 9 Neither did I liken to her any priceless gem, +\q2 because all gold in her presence is a little sand, +\q2 and silver will be considered as clay before her. +\q1 +\v 10 I loved her more than health and beauty, +\q2 and I chose to have her rather than light, +\q2 because her bright shining is never laid to sleep. +\q1 +\v 11 All good things came to me with her, +\q2 and innumerable riches are in her hands. +\q1 +\v 12 And I rejoiced over them all because wisdom leads them; +\q2 although I didn’t know that she was their mother. +\q1 +\v 13 As I learned without guile, I impart without grudging. +\q2 I don’t hide her riches. +\q1 +\v 14 For she is a treasure for men that doesn’t fail, +\q2 and those who use it obtain friendship with God, +\q2 commended by the gifts which they present through discipline. +\b +\q1 +\v 15 But may God grant that I may speak his judgment, +\q2 and to conceive thoughts worthy of what has been given me; +\q2 because he is one who guides even wisdom and who corrects the wise. +\q1 +\v 16 For both we and our words are in his hand, +\q2 with all understanding and skill in various crafts. +\q1 +\v 17 For he himself gave me an unerring knowledge of the things that are, +\q2 to know the structure of the universe and the operation of the elements; +\q2 +\v 18 the beginning, end, and middle of times; +\q2 the alternations of the solstices and the changes of seasons; +\q2 +\v 19 the circuits of years and the positions of stars; +\q2 +\v 20 the natures of living creatures and the raging of wild beasts; +\q2 the violence of\f + \fr 7:20 \ft Or, \fqa spirits \f* winds and the thoughts of men; +\q2 the diversities of plants and the virtues of roots. +\q1 +\v 21 All things that are either secret or manifest I learned, +\q2 +\v 22 for wisdom, that is the architect of all things, taught me. +\b +\q1 For there is in her a spirit that is quick to understand, holy, +\q2 unique, manifold, subtle, freely moving, clear in utterance, unpolluted, +\q2 distinct, invulnerable, loving what is good, keen, unhindered, +\q2 +\v 23 beneficent, loving toward man, steadfast, sure, free from care, all-powerful, all-surveying, +\q2 and penetrating through all spirits that are quick to understand, pure, most subtle. +\q1 +\v 24 For wisdom is more mobile than any motion. +\q2 Yes, she pervades and penetrates all things by reason of her purity. +\q1 +\v 25 For she is a breath of the power of God, +\q2 and a pure emanation of the glory of the Almighty. +\q1 Therefore nothing defiled can find entrance into her. +\q1 +\v 26 For she is a reflection of everlasting light, +\q2 an unspotted mirror of the working of God, +\q2 and an image of his goodness. +\q1 +\v 27 Although she is one, she has power to do all things. +\q2 Remaining in herself, she renews all things. +\q1 From generation to generation passing into holy souls, +\q2 she makes friends of God and prophets. +\q2 +\v 28 For God loves nothing as much as one who dwells with wisdom. +\q1 +\v 29 For she is fairer than the sun, +\q2 and above all the constellations of the stars. +\q2 She is better than light. +\q1 +\v 30 For daylight yields to night, +\q2 but evil does not prevail against wisdom. +\c 8 +\q1 +\v 1 But she reaches from one end to the other with full strength, +\q2 and orders all things well. +\b +\q1 +\v 2 I loved her and sought her from my youth. +\q2 I sought to take her for my bride. +\q2 I became enamoured by her beauty. +\q1 +\v 3 She glorifies her noble birth by living with God. +\q2 The Sovereign Lord of all loves her. +\q1 +\v 4 For she is initiated into the knowledge of God, +\q2 and she chooses his works. +\q1 +\v 5 But if riches are a desired possession in life, +\q2 what is richer than wisdom, which makes all things? +\q1 +\v 6 And if understanding is effective, +\q2 who more than\f + \fr 8:6 \ft Gr. \fqa she. \f* wisdom is an architect of the things that exist? +\q1 +\v 7 If a man loves righteousness, +\q2 the fruits of wisdom’s labor\f + \fr 8:7 \ft Gr. \fqa her labors\f* are virtues, +\q2 for she teaches soberness, understanding, righteousness, and courage. +\q2 There is nothing in life more profitable for people than these. +\q1 +\v 8 And if anyone longs for wide experience, +\q2 she knows the things of old, and infers the things to come. +\q2 She understands subtleties of speeches and interpretations of dark sayings. +\q2 She foresees signs and wonders, and the issues of seasons and times. +\b +\q1 +\v 9 Therefore I determined to take her to live with me, +\q2 knowing that she is one who would give me good counsel, +\q2 and encourage me in cares and grief. +\q1 +\v 10 Because of her, I will have glory among multitudes, +\q2 and honor in the sight of elders, though I am young. +\q1 +\v 11 I will be found keen when I give judgment. +\q2 I will be admired in the presence of rulers. +\q1 +\v 12 When I am silent, they will wait for me. +\q2 When I open my lips, they will heed what I say. +\q2 If I continue speaking, they will put their hands on their mouths. +\q1 +\v 13 Because of her, I will have immortality, +\q2 and leave behind an eternal memory to those who come after me. +\q1 +\v 14 I will govern peoples. +\q2 Nations will be subjected to me. +\q1 +\v 15 Dreaded monarchs will fear me when they hear of me. +\q2 Among the people, I will show myself to be good, and courageous in war. +\q1 +\v 16 When I come into my house, I will find rest with her. +\q2 For conversation with her has no bitterness, +\q2 and living with her has no pain, but gladness and joy. +\q1 +\v 17 When I considered these things in myself, +\q2 and thought in my heart how immortality is in kinship to wisdom, +\q1 +\v 18 and in her friendship is good delight, +\q2 and in the labors of her hands is wealth that doesn’t fail, +\q2 and understanding is in her companionship, +\q2 and great renown in having fellowship with her words, +\q2 I went about seeking how to take her to myself. +\q1 +\v 19 Now I was a clever child, and received a good soul. +\q2 +\v 20 Or rather, being good, I came into an undefiled body. +\q1 +\v 21 But perceiving that I could not otherwise possess wisdom unless God gave her to me— +\q2 yes, and to know and understand by whom the grace is given— +\q2 I pleaded with the Lord and implored him, and with my whole heart I said: +\c 9 +\q1 +\v 1 “O God of my ancestors and Lord of mercy, +\q2 who made all things by your word; +\q1 +\v 2 and by your wisdom you formed man, +\q2 that he should have dominion over the creatures that were made by you, +\q1 +\v 3 and rule the world in holiness and righteousness, +\q2 and execute judgment in uprightness of soul, +\q2 +\v 4 give me wisdom, her who sits by you on your thrones. +\q1 Don’t reject me from among your\f + \fr 9:4 \ft Or, \fqa children \f* servants, +\q2 +\v 5 because I am your servant and the son of your handmaid, +\q2 a weak and short-lived man, +\q2 with little power to understand judgment and laws. +\q1 +\v 6 For even if a man is perfect among the sons of men, +\q2 if the wisdom that comes from you is not with him, he will count for nothing. +\q1 +\v 7 You chose me to be king of your people, +\q2 and a judge for your sons and daughters. +\q1 +\v 8 You gave a command to build a sanctuary on your holy mountain, +\q2 and\f + \fr 9:8 \ft Or, \fqa a place of sacrifice \f* an altar in the city where you live, +\q2 a copy of the holy tent which you prepared from the beginning. +\q1 +\v 9 Wisdom is with you and knows your works, +\q2 and was present when you were making the world, +\q2 and understands what is pleasing in your eyes, +\q2 and what is right according to your commandments. +\q1 +\v 10 Send her from the holy heavens, +\q2 and ask her to come from the throne of your glory, +\q2 that being present with me she may work, +\q2 and I may learn what pleases you well. +\q1 +\v 11 For she knows all things and understands, +\q2 and she will guide me prudently in my actions. +\q2 She will guard me in her glory. +\q1 +\v 12 So my works will be acceptible. +\q2 I will judge your people righteously, +\q2 and I will be worthy of my father’s\f + \fr 9:12 \ft Gr. \fqa thrones. \f* throne. +\q1 +\v 13 For what man will know the counsel of God? +\q2 Or who will conceive what the Lord wills? +\q1 +\v 14 For the thoughts of mortals are unstable, +\q2 and our plans are prone to fail. +\q1 +\v 15 For a corruptible body weighs down the soul. +\q2 The earthy tent burdens a mind that is full of cares. +\q1 +\v 16 We can hardly guess the things that are on earth, +\q2 and we find the things that are close at hand with labor; +\q2 but who has traced out the things that are in the heavens? +\q1 +\v 17 Who gained knowledge of your counsel, unless you gave wisdom, +\q2 and sent your holy spirit from on high? +\q1 +\v 18 It was thus that the ways of those who are on earth were corrected, +\q2 and men were taught the things that are pleasing to you. +\q2 They were saved through wisdom.” +\b +\c 10 +\q1 +\v 1 Wisdom\f + \fr 10:1 \ft Gr. \fqa She. \f* guarded to the end the first formed father of the world, who was created alone, +\q2 and delivered him out of his own transgression, +\q1 +\v 2 and gave him strength to rule over all things. +\q1 +\v 3 But when an unrighteous man fell away from her in his anger, +\q2 he perished himself in the rage with which he killed his brother. +\q1 +\v 4 When for his cause the earth was drowning with a flood, +\q1 wisdom again saved it, +\q1 guiding the righteous man’s course by a paltry piece of wood. +\b +\q1 +\v 5 Moreover, when nations consenting together in wickedness had been confounded, +\q2 wisdom\f + \fr 10:5 \ft Gr. \fqa she \f* knew the righteous man, and preserved him blameless to God, +\q2 and kept him strong when his heart yearned toward his child. +\b +\q1 +\v 6 While the ungodly were perishing, wisdom\f + \fr 10:6 \ft Gr. \fqa she \f* delivered a righteous man, +\q2 when he fled from the fire that descended out of heaven on the five cities. +\q1 +\v 7 To whose wickedness a smoking waste still witnesses, +\q2 and plants bearing fair fruit that doesn’t ripen, +\q2 a disbelieving soul has a memorial: a standing pillar of salt. +\q1 +\v 8 For having passed wisdom by, +\q2 not only were they disabled from recognising the things which are good, +\q2 but they also left behind them for their life a monument of their folly, +\q2 to the end that where they stumbled, they might fail even to be unseen; +\q1 +\v 9 but wisdom delivered those who waited on her out of troubles. +\b +\q1 +\v 10 When a righteous man was a fugitive from a brother’s wrath,\f + \fr 10:10 \ft Gr. \fqa she. \f* wisdom guided him in straight paths. +\q2 She showed him God’s kingdom, and gave him knowledge of holy things. +\q2 She prospered him in his toils, and multiplied the fruits of his labor. +\q1 +\v 11 When in their covetousness men dealt harshly with him, +\q2 she stood by him and made him rich. +\q1 +\v 12 She guarded him from enemies, +\q2 and she kept him safe from those who lay in wait. +\q2 Over his severe conflict, she watched as judge, +\q2 that he might know that godliness is more powerful than every one. +\b +\q1 +\v 13 When a righteous man was sold,\f + \fr 10:13 \ft Gr. \fqa she. \f* wisdom didn’t forsake him, +\q2 but she delivered him from sin. +\q2 She went down with him into a dungeon, +\q1 +\v 14 and in bonds she didn’t depart from him, +\q2 until she brought him the sceptre of a kingdom, +\q2 and authority over those that dealt like a tyrant with him. +\q2 She also showed those who had mockingly accused him to be false, +\q2 and gave him eternal glory. +\b +\q1 +\v 15 Wisdom\f + \fr 10:15 \ft Gr. \fqa she. \f* delivered a holy people and a blameless seed from a nation of oppressors. +\q1 +\v 16 She entered into the soul of a servant of the Lord, +\q2 and withstood terrible kings in wonders and signs. +\q1 +\v 17 She rendered to holy men a reward of their toils. +\q2 She guided them along a marvelous way, +\q2 and became to them a covering in the day-time, +\q2 and a starry flame through the night. +\q1 +\v 18 She brought them over the Red sea, +\q2 and led them through much water; +\q1 +\v 19 but she drowned their enemies, +\q2 and she cast them up from the bottom of the deep. +\q1 +\v 20 Therefore the righteous plundered the ungodly, +\q2 and they sang praise to your holy name, O Lord, +\q2 and extolled with one accord your hand that fought for them, +\q1 +\v 21 because wisdom opened the mouth of the mute, +\q1 and made the tongues of babes to speak clearly. +\b +\c 11 +\q1 +\v 1 Wisdom prospered their works in the hand of a holy prophet. +\b +\q1 +\v 2 They traveled through a desert without inhabitant, +\q2 and they pitched their tents in trackless regions. +\q1 +\v 3 They withstood enemies and repelled foes. +\q1 +\v 4 They thirsted, and they called upon you, +\q2 and water was given to them out of the\f + \fr 11:4 \ft See Deuteronomy 8:15; Psalms 114:8. \f* flinty rock, +\q2 and healing of their thirst out of the hard stone. +\q1 +\v 5 For by what things their foes were punished, +\q2 by these they in their need were benefited. +\q1 +\v 6 When enemies were troubled with clotted blood +\q2 instead of a river’s ever-flowing fountain, +\q1 +\v 7 to rebuke the decree for the slaying of babies, +\q2 you gave them abundant water beyond all hope, +\q1 +\v 8 having shown by the thirst which they had suffered +\q2 how you punished the adversaries. +\q1 +\v 9 For when they were tried, although chastened in mercy, +\q2 they learned how the ungodly were tormented, being judged with wrath. +\q1 +\v 10 For you tested these as a father admonishing them; +\q2 but you searched out those as a stern king condemning them. +\q1 +\v 11 Yes and whether they were far off or near, +\q2 they were equally distressed; +\q1 +\v 12 for a double grief seized them, +\q2 and a groaning at the memory of things past. +\q1 +\v 13 For when they heard that through their own punishments the others benefited, +\q2 they recognized the Lord. +\q1 +\v 14 For him who long before was thrown out and exposed they stopped mocking. +\q2 In the end of what happened, they marveled, +\q2 having thirsted in another manner than the righteous. +\b +\q1 +\v 15 But in return for the senseless imaginings of their unrighteousness, +\q2 wherein they were led astray to worship irrational reptiles and wretched vermin, +\q2 you sent upon them a multitude of irrational creatures to punish them, +\q2 +\v 16 that they might learn that by what things a man sins, by these he is punished. +\q1 +\v 17 For your all-powerful hand +\q2 that created the world out of formless matter +\q2 didn’t lack means to send upon them a multitude of bears, fierce lions, +\q2 +\v 18 or newly-created and unknown wild beasts, full of rage, +\q2 either breathing out a blast of fiery breath, +\q2 or belching out smoke, +\q2 or flashing dreadful sparks from their eyes; +\q1 +\v 19 which had power not only to consume them by their violence, +\q2 but to destroy them even by the terror of their sight. +\q1 +\v 20 Yes and without these they might have fallen by a single breath, +\q2 being pursued by Justice, and scattered abroad by the breath of your power; +\q2 but you arranged all things by measure, number, and weight. +\b +\q1 +\v 21 For to be greatly strong is yours at all times. +\q2 Who could withstand the might of your arm? +\q1 +\v 22 Because the whole world before you is as a grain in a balance, +\q2 and as a drop of dew that comes down upon the earth in the morning. +\q1 +\v 23 But you have mercy on all men, because you have power to do all things, +\q2 and you overlook the sins of men to the end that they may repent. +\q1 +\v 24 For you love all things that are, +\q2 and abhor none of the things which you made; +\q2 For you never would have formed anything if you hated it. +\q1 +\v 25 How would anything have endured unless you had willed it? +\q2 Or that which was not called by you, how would it have been preserved? +\q1 +\v 26 But you spare all things, because they are yours, +\q2 O Sovereign Lord, you who love the living. +\c 12 +\q1 +\v 1 For your incorruptible spirit is in all things. +\q1 +\v 2 Therefore you convict little by little those who fall from the right way, +\q2 and, putting them in remembrance by the things wherein they sin, you admonish them, +\q2 that escaping from their wickedness they may believe in you, O Lord. +\b +\q1 +\v 3 For truly the old inhabitants of your holy land, +\q2 +\v 4 hating them because they practiced detestable works of enchantments and unholy rites— +\q2 +\v 5 merciless slaughters of children +\q2 and sacrificial banquets of men’s flesh and of blood— +\q2 +\v 6 allies in an impious fellowship, +\q2 and murderers of their own helpless babes, +\q2 it was your counsel to destroy by the hands of our fathers; +\q2 +\v 7 that the land which in your sight is most precious of all +\q2 might receive a worthy colony of God’s servants.\f + \fr 12:7 \ft Or, \fqa children \f* +\q1 +\v 8 Nevertheless you even spared these as men, +\q2 and you sent hornets\f + \fr 12:8 \ft Or, \fqa wasps \f* as forerunners of your army, +\q2 to cause them to perish little by little. +\q1 +\v 9 Not that you were unable to subdue the ungodly under the hand of the righteous in battle, +\q2 or by terrible beasts or by a stern word to make away with them at once, +\q1 +\v 10 but judging them little by little you gave them a chance to repent, +\q2 not being ignorant that their nature by birth was evil, +\q2 their wickedness inborn, +\q2 and that their manner of thought would never be changed. +\q1 +\v 11 For they were a cursed seed from the beginning. +\q2 It wasn’t through fear of any that you left them unpunished for their sins. +\b +\q1 +\v 12 For who will say, “What have you done?” +\q2 Or “Who will withstand your judgment?” +\q1 Who will accuse you for the perishing of nations which you caused? +\q2 Or who will come and stand before you as an avenger for unrighteous men? +\q1 +\v 13 For there isn’t any God beside you that cares for all, +\q2 that you might show that you didn’t judge unrighteously. +\q1 +\v 14 No king or prince will be able to confront you +\q2 about those whom you have punished. +\q1 +\v 15 But being righteous, you rule all things righteously, +\q2 deeming it a thing alien from your power +\q2 to condemn one who doesn’t deserve to be punished. +\q1 +\v 16 For your strength is the source of righteousness, +\q2 and your sovereignty over all makes you to forbear all. +\q1 +\v 17 For when men don’t believe that you are perfect in power, you show your strength, +\q2 and in dealing with those who think this, you confuse their boldness. +\q1 +\v 18 But you, being sovereign in strength, judge in gentleness, +\q2 and with great forbearance you govern us; +\q2 for the power is yours whenever you desire it. +\b +\q1 +\v 19 But you taught your people by such works as these, +\q2 how the righteous must be kind. +\q1 You made your sons to have good hope, +\q2 because you give repentance when men have sinned. +\q1 +\v 20 For if on those who were enemies of your servants\f + \fr 12:20 \ft Or, \fqa children \f* and deserving of death, +\q2 you took vengeance with so great deliberation and indulgence, +\q2 giving them times and opportunities when they might escape from their wickedness, +\q1 +\v 21 with how great care you judged your sons, +\q2 to whose fathers you gave oaths and covenants of good promises! +\q1 +\v 22 Therefore while you chasten us, you scourge our enemies ten thousand times more, +\q2 to the intent that we may ponder your goodness when we judge, +\q2 and when we are judged may look for mercy. +\b +\q1 +\v 23 Therefore also the unrighteous that lived in a life of folly, +\q2 you tormented through their own abominations. +\q1 +\v 24 For truly they went astray very far in the ways of error, +\q2 Taking as gods those animals\f + \fr 12:24 \ft Gr. \fqa living creatures: \ft and so elsewhere in this book. \f* which even among their enemies were held in dishonor, +\q2 deceived like foolish babes. +\q1 +\v 25 Therefore, as to unreasoning children, you sent your judgment to mock them. +\q1 +\v 26 But those who would not be admonished by mild correction +\q2 will experience the deserved judgment of God. +\q1 +\v 27 For through the sufferings they were indignant of, +\q2 being punished in these creatures which they supposed to be gods, +\q2 they saw and recognized as the true God him whom they previously refused to know. +\q2 Therefore also the result of extreme condemnation came upon them. +\b +\c 13 +\q1 +\v 1 For truly all men who had no perception of God were foolish by nature, +\q2 and didn’t gain power to know him who exists from the good things that are seen. +\q2 They didn’t recognize the architect from his works. +\q1 +\v 2 But they thought that either fire, or wind, or swift air, +\q2 or circling stars, or raging water, or luminaries of heaven +\q2 were gods that rule the world. +\q1 +\v 3 If it was through delight in their beauty that they took them to be gods, +\q2 let them know how much better their Sovereign Lord is than these, +\q2 for the first author of beauty created them. +\q1 +\v 4 But if it was through astonishment at their power and influence, +\q2 then let them understand from them how much more powerful he who formed them is. +\q1 +\v 5 For from the greatness of the beauty of created things, +\q2 mankind forms the corresponding perception of their Maker.\f + \fr 13:5 \ft Gr. \fqa is the first maker of them seen.\f* +\q1 +\v 6 But yet for these men there is but small blame, +\q2 for they too perhaps go astray +\q2 while they are seeking God and desiring to find him. +\q1 +\v 7 For they diligently search while living among his works, +\q2 and they trust their sight that the things that they look at are beautiful. +\q1 +\v 8 But again even they are not to be excused. +\q1 +\v 9 For if they had power to know so much, +\q2 that they should be able to explore the world, +\q2 how is it that they didn’t find the Sovereign Lord sooner? +\b +\q1 +\v 10 But they were miserable, and their hopes were in dead things, +\q2 who called them gods which are works of men’s hands, +\q2 gold and silver, skillfully made, and likenesses of animals, +\q2 or a useless stone, the work of an ancient hand. +\q1 +\v 11 Yes and some\f + \fr 13:11 \ft Gr. \fqa carpenter who is a woodcutter. \f* woodcutter might saw down a tree that is easily moved, +\q2 skillfully strip away all its bark, +\q2 and fashion it in attractive form, make a useful vessel to serve his life’s needs. +\q1 +\v 12 Burning the scraps from his handiwork to cook his food, +\q2 he eats his fill. +\q1 +\v 13 Taking a discarded scrap which served no purpose, +\q2 a crooked piece of wood and full of knots, +\q2 he carves it with the diligence of his idleness, +\q2 and shapes it by the skill of his idleness. +\q1 He shapes it in the image of a man, +\q2 +\v 14 or makes it like some worthless animal, +\q2 smearing it with something red, painting it red, +\q2 and smearing over every stain in it. +\q1 +\v 15 Having made a worthy chamber for it, +\q2 he sets it in a wall, securing it with iron. +\q1 +\v 16 He plans for it that it may not fall down, +\q2 knowing that it is unable to help itself +\q2 (for truly it is an image, and needs help). +\q1 +\v 17 When he makes his prayer concerning goods and his marriage and children, +\q2 he is not ashamed to speak to that which has no life. +\q1 +\v 18 Yes, for health, he calls upon that which is weak. +\q2 For life, he implores that which is dead. +\q2 For aid, he supplicates that which has no experience. +\q2 For a good journey, he asks that which can’t so much as move a step. +\q1 +\v 19 And for profit in business and good success of his hands, +\q2 he asks ability from that which has hands with no ability. +\c 14 +\q1 +\v 1 Again, one preparing to sail, and about to journey over raging waves, +\q2 calls upon a piece of wood more fragile than the vessel that carries him. +\q1 +\v 2 For the hunger for profit planned it, +\q2 and wisdom was the craftsman who built it. +\q1 +\v 3 Your providence, O Father, guides it along, +\q2 because even in the sea you gave a way, +\q2 and in the waves a sure path, +\q1 +\v 4 showing that you can save out of every danger, +\q2 that even a man without skill may put to sea. +\q1 +\v 5 It is your will that the works of your wisdom should not be ineffective. +\q2 Therefore men also entrust their lives to a little piece of wood, +\q2 and passing through the surge on a raft come safely to land. +\q1 +\v 6 For\f + \fr 14:6 \ft The Greek text here may be corrupt. \f* in the old time also, when proud giants were perishing, +\q2 the hope of the world, taking refuge on a raft, +\q2 your hand guided the seed of generations of the race of men. +\q1 +\v 7 For blessed is wood through which comes righteousness; +\q2 +\v 8 but the idol made with hands is accursed, itself and he that made it; +\q2 because his was the working, and the corruptible thing was called a god. +\q1 +\v 9 For both the ungodly and his ungodliness are alike hateful to God; +\q2 +\v 10 for truly the deed will be punished together with him who committed it. +\q2 +\v 11 Therefore also there will be a visitation among the idols of the nation, +\q2 because, though formed of things which God created, they were made an abomination, +\q2 stumbling blocks to the souls of men, +\q2 and a snare to the feet of the foolish. +\b +\q1 +\v 12 For the devising of idols was the beginning of fornication, +\q2 and the invention of them the corruption of life. +\q1 +\v 13 For they didn’t exist from the beginning, and they won’t exist forever. +\q1 +\v 14 For by the boastfulness of men they entered into the world, +\q2 and therefore a speedy end was planned for them. +\b +\q1 +\v 15 For a father worn with untimely grief, +\q2 making an image of the child quickly taken away, +\q2 now honored him as a god which was then a dead human being, +\q2 and delivered to those that were under him mysteries and solemn rites. +\q1 +\v 16 Afterward the ungodly custom, in process of time grown strong, was kept as a law, +\q2 and the engraved images received worship by the commandments of princes. +\q1 +\v 17 And when men could not honor them in presence because they lived far off, +\q2 imagining the likeness from afar, +\q2 they made a visible image of the king whom they honored, +\q2 that by their zeal they might flatter the absent as if present. +\b +\q1 +\v 18 But worship was raised to a yet higher pitch, even by those who didn’t know him, +\q2 urged forward by the ambition of the architect; +\q1 +\v 19 for he, wishing perhaps to please his ruler, +\q2 used his art to force the likeness toward a greater beauty. +\q1 +\v 20 So the multitude, allured by reason of the grace of his handiwork, +\q2 now consider an object of devotion him that a little before was honored as a man. +\q1 +\v 21 And this became an ambush, +\q2 because men, in bondage either to calamity or to tyranny, +\q2 invested stones and stocks with the Name that shouldn’t be shared. +\b +\q1 +\v 22 Afterward it was not enough for them to go astray concerning the knowledge of God, +\q2 but also, while they live in a great war of ignorance, they call a multitude of evils peace. +\q1 +\v 23 For either slaughtering children in solemn rites, or celebrating secret mysteries, +\q2 or holding frenzied revels of strange customs, +\q1 +\v 24 no longer do they guard either life or purity of marriage, +\q2 but one brings upon another either death by treachery, or anguish by adultery. +\q1 +\v 25 And all things confusedly are filled with blood and murder, theft and deceit, +\q2 corruption, faithlessness, tumult, perjury, +\q1 +\v 26 confusion about what is good, forgetfulness of favors, +\q2 ingratitude for benefits, +\q2 defiling of souls, confusion of sex, +\q2 disorder in marriage, adultery and wantonness. +\q2 +\v 27 For the worship of idols that may not be named\x + \xo 14:27 \xt Exodus 23:13; Psalms 16:4; Hosea 2:17; Wisdom 14:21\x* +\q2 is a beginning and cause and end of every evil. +\q1 +\v 28 For their worshipers either make merry to madness, or prophesy lies, +\q2 or live unrighteously, or lightly commit perjury. +\q1 +\v 29 For putting their trust in lifeless idols, +\q2 when they have sworn a wicked oath, they expect not to suffer harm. +\q1 +\v 30 But on both counts, the just doom will pursue them, +\q2 because they had evil thoughts of God by giving heed to idols, +\q2 and swore unrighteously in deceit through contempt for holiness. +\q1 +\v 31 For it is not the power of things by which men swear, +\q2 but it is the just penalty for those who sin +\q2 that always visits the transgression of the unrighteous. +\b +\c 15 +\q1 +\v 1 But you, our God, are gracious and true, +\q2 patient, and in mercy ordering all things. +\q1 +\v 2 For even if we sin, we are yours, knowing your dominion; +\q2 but we will not sin, knowing that we have been accounted yours. +\q1 +\v 3 For to be acquainted with you is\f + \fr 15:3 \ft Gr. \fqa entire. \f* perfect righteousness, +\q2 and to know your dominion is the root of immortality. +\q1 +\v 4 For we weren’t led astray by any evil plan of men’s, +\q2 nor yet by painters’ fruitless labor, +\q2 a form stained with varied colors, +\q1 +\v 5 the sight of which leads fools into\f + \fr 15:5 \ft Some authorities read \fqa reproach. \f* lust. +\q2 Their desire is for the breathless form of a dead image. +\q1 +\v 6 Lovers of evil things, and worthy of such hopes, +\q2 are those who make, desire, and worship them. +\b +\q1 +\v 7 For a potter, kneading soft earth, +\q2 laboriously molds each article for our service. +\q1 He fashions out of the same clay +\q2 both the vessels that minister to clean uses, and those of a contrary sort, +\q2 all in like manner. +\q1 What shall be the use of each article of either sort, +\q2 the potter is the judge. +\q1 +\v 8 Also, laboring to an evil end, he molds a vain god out of the same clay, +\q2 he who, having but a little before been made of earth, +\q2 after a short space goes his way to the earth out of which he was taken, +\q2 when he is required to give back the\f + \fr 15:8 \ft Or, \fqa life \f* soul which was lent him. +\q1 +\v 9 However he has anxious care, +\q2 not because his powers must fail, +\q2 nor because his span of life is short; +\q1 But he compares himself with goldsmiths and silversmiths, +\q2 and he imitates molders in\f + \fr 15:9 \ft Or, \fqa copper \f* brass, +\q2 and considers it great that he molds counterfeit gods. +\q1 +\v 10 His heart is ashes. +\q2 His hope is of less value than earth. +\q2 His life is of less honor than clay, +\q1 +\v 11 because he was ignorant of him who molded him, +\q2 and of him that inspired into him\f + \fr 15:11 \ft Gr. \fqa a soul that moves to activity. \f* an active\f + \fr 15:11 \ft Or, \fqa life \f* soul, +\q2 and breathed into him a vital spirit. +\q1 +\v 12 But\f + \fr 15:12 \ft Some authorities read \fqa they accounted. \f* he accounted our life to be a game, +\q2 and our\f + \fr 15:12 \ft Or, \fqa way of life \f* lifetime a festival for profit; +\q1 for, he says, one must get gain however one can, even if it is by evil. +\q1 +\v 13 For this man, beyond all others, knows that he sins, +\q2 out of earthy matter making brittle vessels and engraved images. +\q1 +\v 14 But most foolish and more miserable than a baby, +\q2 are the enemies of your people, who oppressed them; +\q1 +\v 15 because they even considered all the idols of the nations to be gods, +\q2 which have neither the use of eyes for seeing, +\q2 nor nostrils for drawing breath, +\q2 nor ears to hear, +\q2 nor fingers for handling, +\q2 and their feet are helpless for walking. +\q1 +\v 16 For a man made them, +\q2 and one whose own spirit is borrowed molded them; +\q2 for no one has power as a man to mold a god like himself. +\q1 +\v 17 But, being mortal, he makes a dead thing by the work of lawless hands; +\q2 for he is better than the objects of his worship, +\q2 since he indeed had life, but they never did. +\b +\q1 +\v 18 Yes, and they worship the creatures that are most hateful, +\q2 for, being compared as to lack of sense, these are worse than all others; +\q1 +\v 19 Neither, as seen beside other creatures, are they beautiful, so that one should desire them, +\q2 but they have escaped both the praise of God and his blessing. +\c 16 +\q1 +\v 1 For this cause, they were deservedly punished through creatures like those which they worship, +\q2 and tormented through a multitude of vermin. +\q1 +\v 2 Instead of this punishment, you, giving benefits to your people, +\q2 prepared quails for food, +\q1 a delicacy to satisfy the desire of their appetite, +\q1 +\v 3 to the end that your enemies, desiring food, +\q2 might for the hideousness of the creatures sent among them, +\q2 loathe even the necessary appetite; +\q1 but these, your people, having for a short time suffered lack, +\q2 might even partake of delicacies. +\q1 +\v 4 For it was necessary that inescapable lack should come upon those oppressors, +\q2 but that to these it should only be showed how their enemies were tormented. +\q1 +\v 5 For even when terrible raging of wild beasts came upon your people, +\q2 and they were perishing by the bites of crooked serpents, +\q2 your wrath didn’t continue to the uttermost; +\q1 +\v 6 but for admonition were they troubled for a short time, +\q2 having a token of salvation +\q2 to put them in remembrance of the commandment of your law; +\b +\q1 +\v 7 for he who turned toward it was not saved because of that which was seen, +\q2 but because of you, the Savior of all. +\q1 +\v 8 Yes, and in this you persuaded our enemies +\q2 that you are he who delivers out of every evil. +\q1 +\v 9 For the bites of locusts and flies truly killed them. +\q2 No healing for their life was found, +\q2 because they were worthy to be punished by such things. +\q1 +\v 10 But your children weren’t overcome by the very fangs of venomous dragons, +\q2 for your mercy passed by where they were and healed them. +\q1 +\v 11 For they were bitten to put them in remembrance of your oracles, +\q2 and were quickly saved, lest, falling into deep forgetfulness, +\q2 they should become unable to respond to your kindness. +\q1 +\v 12 For truly it was neither herb nor poultice that cured them, +\q2 but your word, O Lord, which heals all people. +\q1 +\v 13 For you have authority over life and death, +\q2 and you lead down to the gates of Hades, and lead up again. +\q1 +\v 14 But though a man kills by his wickedness, +\q2 he can’t retrieve the spirit that has departed +\q2 or release the imprisoned soul. +\b +\q1 +\v 15 But it is not possible to escape your hand; +\q1 +\v 16 for ungodly men, refusing to know you, were scourged in the strength of your arm, +\q2 pursued with strange rains and hails and relentless storms, +\q2 and utterly consumed with fire. +\q1 +\v 17 For, what was most marvelous, +\q2 in the water which quenches all things, the fire burned hotter; +\q2 for the world fights for the righteous. +\q1 +\v 18 For at one time the flame was restrained, +\q2 that it might not burn up the creatures sent against the ungodly, +\q2 but that these themselves as they looked might see that they were chased by the judgment of God. +\q1 +\v 19 At another time even in the midst of water it burns more intensely than fire, +\q2 that it may destroy the produce of an unrighteous land. +\q1 +\v 20 Instead of these things, you gave your people angels’ food to eat, +\q2 and you provided ready-to-eat bread for them from heaven without toil, +\q2 having the virtue of every pleasant flavor, +\q2 and agreeable to every taste. +\q1 +\v 21 For your nature showed your sweetness toward your children, +\q2 while that bread, serving the desire of the eater, +\q2 changed itself according to every man’s choice. +\q1 +\v 22 But snow and ice endured fire, and didn’t melt, +\q2 that people might know that fire was destroying the fruits of the enemies, +\q2 burning in the hail and flashing in the rains; +\q1 +\v 23 and that this fire, again, in order that righteous people may be nourished, +\q2 has even forgotten its own power. +\q1 +\v 24 For the creation, ministering to you, its maker, +\q2 strains its force against the unrighteous for punishment +\q2 and in kindness, slackens it on behalf of those who trust in you. +\q1 +\v 25 Therefore at that time also, converting itself into all forms, +\q2 it ministered to your all-nourishing bounty, +\q2 according to the desire of those who had need, +\q1 +\v 26 that your children, whom you loved, O Lord, might learn +\q2 that it is not the growth of crops that nourishes a man, +\q2 but that your word preserves those who trust you. +\q1 +\v 27 For that which was not destroyed by fire, +\q2 melted away when it was simply warmed by a faint sunbeam, +\q1 +\v 28 that it might be known that we must rise before the sun to give you thanks, +\q2 and must pray to you at the dawning of the light; +\q1 +\v 29 for the hope of the unthankful will melt as the winter’s hoar frost, +\q2 and will flow away as water that has no use. +\b +\c 17 +\q1 +\v 1 For your judgments are great, and hard to interpret; +\q2 therefore undisciplined souls went astray. +\q1 +\v 2 For when lawless men had supposed that they held a holy nation in their power, +\q2 they, prisoners of darkness, and bound in the fetters of a long night, +\q2 kept close beneath their roofs, +\q2 lay exiled from the eternal providence. +\q1 +\v 3 For while they thought that they were unseen in their secret sins, +\q2 they were divided from one another by a dark curtain of forgetfulness, +\q2 stricken with terrible awe, and very troubled by apparitions. +\q1 +\v 4 For neither did the dark recesses that held them guard them from fears, +\q2 but terrifying sounds rang around them, +\q2 and dismal phantoms appeared with unsmiling faces. +\q1 +\v 5 And no power of fire prevailed to give light, +\q2 neither were the brightest flames of the stars strong enough to illuminate that gloomy night; +\q1 +\v 6 but only the glimmering of a self-kindled fire appeared to them, full of fear. +\q2 In terror, they considered the things which they saw +\q2 to be worse than that sight, on which they could not gaze. +\q1 +\v 7 The mockeries of their magic arts were powerless, now, +\q2 and a shameful rebuke of their boasted understanding: +\q1 +\v 8 For those who promised to drive away terrors and disorders from a sick soul, +\q2 these were sick with a ludicrous fearfulness. +\q1 +\v 9 For even if no troubling thing frighted them, +\q2 yet, scared with the creeping of vermin and hissing of serpents, +\q1 +\v 10 they perished trembling in fear, +\q2 refusing even to look at the air, which could not be escaped on any side. +\q1 +\v 11 For wickedness, condemned by a witness within, is a coward thing, +\q2 and, being pressed hard by conscience, always has added forecasts of the worst. +\q2 +\v 12 For fear is nothing else but a surrender of the help which reason offers; +\q2 +\v 13 and from within, the expectation of being less +\q2 prefers ignorance of the cause that brings the torment. +\q1 +\v 14 But they, all through the night which was powerless indeed, +\q2 and which came upon them out of the recesses of powerless Hades, +\q2 sleeping the same sleep, +\q2 +\v 15 now were haunted by monstrous apparitions, +\q2 and now were paralyzed by their soul’s surrendering; +\q2 for sudden and unexpected fear came upon them. +\q1 +\v 16 So then whoever it might be, sinking down in his place, +\q2 was kept captive, shut up in that prison which was not barred with iron; +\q1 +\v 17 for whether he was a farmer, or a shepherd, +\q2 or a laborer whose toils were in the wilderness, +\q2 he was overtaken, and endured that inescapable sentence; +\q2 for they were all bound with one chain of darkness. +\q1 +\v 18 Whether there was a whistling wind, +\q2 or a melodious sound of birds among the spreading branches, +\q2 or a measured fall of water running violently, +\q2 +\v 19 or a harsh crashing of rocks hurled down, +\q2 or the swift course of animals bounding along unseen, +\q2 or the voice of wild beasts harshly roaring, +\q2 or an echo rebounding from the hollows of the mountains, +\q2 all these things paralyzed them with terror. +\q1 +\v 20 For the whole world was illuminated with clear light, +\q2 and was occupied with unhindered works, +\q2 +\v 21 while over them alone was spread a heavy night, +\q2 an image of the darkness that should afterward receive them; +\q2 but to themselves, they were heavier than darkness. +\c 18 +\q1 +\v 1 But for your holy ones there was great light. +\q2 Their enemies, hearing their voice but not seeing their form, +\q2 counted it a happy thing that they too had suffered, +\q1 +\v 2 yet for that they do not hurt them, though wronged by them before, they are thankful; +\q2 and because they had been at variance with them, they begged for pardon. +\q1 +\v 3 Therefore you provided a burning pillar of fire, +\q2 to be a guide for your people’s unknown journey, +\q2 and a harmless sun for their glorious exile. +\q1 +\v 4 For the Egyptians well deserved to be deprived of light and imprisoned by darkness, +\q2 they who had imprisoned your children, +\q2 through whom the incorruptible light of the law was to be given to the race of men. +\b +\q1 +\v 5 After they had taken counsel to kill the babes of the holy ones, +\q2 and when a single child had been abandoned and saved to convict them of their sin, +\q2 you took away from them their multitude of children, +\q2 and destroyed all their army together in a mighty flood. +\q1 +\v 6 Our fathers were made aware of that night beforehand, +\q2 that, having sure knowledge, they might be cheered by the oaths which they had trusted. +\q1 +\v 7 Salvation of the righteous and destruction of the enemies was expected by your people. +\q1 +\v 8 For as you took vengeance on the adversaries, +\q2 by the same means, calling us to yourself, you glorified us. +\q1 +\v 9 For holy children of good men offered sacrifice in secret, +\q2 and with one consent they agreed to the covenant of the divine law, +\q2 that they would partake alike in the same good things and the same perils, +\q2 the fathers already leading the sacred songs of praise. +\q1 +\v 10 But the discordant cry of the enemies echoed back, +\q2 and a pitiful voice of lamentation for children was spread abroad. +\q1 +\v 11 Both servant and master were punished with the same just doom, +\q2 and the commoner suffering the same as king; +\q1 +\v 12 Yes, they all together, under one form of death, +\q2 had corpses without number. +\q1 For the living were not sufficient even to bury them, +\q2 Since at a single stroke, their most cherished offspring was consumed. +\q1 +\v 13 For while they were disbelieving all things by reason of the enchantments, +\q2 upon the destruction of the firstborn they confessed the people to be God’s children. +\q1 +\v 14 For while peaceful silence wrapped all things, +\q2 and night in her own swiftness was half spent, +\q1 +\v 15 your all-powerful word leaped from heaven, from the royal throne, +\q2 a stern warrior, into the midst of the doomed land, +\q1 +\v 16 bearing as a sharp sword your authentic commandment, +\q2 and standing, it filled all things with death, +\q2 and while it touched the heaven it stood upon the earth. +\q1 +\v 17 Then immediately apparitions in dreams terribly troubled them, +\q2 and unexpected fears came upon them. +\q1 +\v 18 And each, one thrown here half dead, another there, +\q2 made known why he was dying; +\q1 +\v 19 for the dreams, disturbing them, forewarned them of this, +\q2 that they might not perish without knowing why they were afflicted. +\b +\q1 +\v 20 The experience of death also touched the righteous, +\q2 and a multitude were destroyed in the wilderness, +\q2 but the wrath didn’t last long. +\q1 +\v 21 For a blameless man hurried to be their champion, +\q2 bringing the weapon of his own ministry, +\q2 prayer, and the atoning sacrifice of incense. +\q1 He withstood the indignation and set an end to the calamity, +\q2 showing that he was your servant. +\q1 +\v 22 And he overcame the anger, +\q2 not by strength of body, not by force of weapons, +\q2 but by his word, he subdued the avenger +\q2 by bringing to remembrance oaths and covenants made with the fathers. +\q1 +\v 23 For when the dead had already fallen in heaps one upon another, +\q2 he intervened and stopped the wrath, +\q2 and cut off its way to the living. +\q1 +\v 24 For the whole world was pictured on his long robe, +\q2 and the glories of the fathers were upon the engraving of the four rows of precious stones, +\q2 and your majesty was upon the diadem on his head. +\q1 +\v 25 The destroyer yielded to these, and they feared; +\q2 for it was enough only to test the wrath. +\b +\c 19 +\q1 +\v 1 But indignation without mercy came upon the ungodly to the end; +\q2 for God also foreknew their future, +\q1 +\v 2 how, having changed their minds to let your people go, +\q2 and having sped them eagerly on their way, +\q2 they would change their minds and pursue them. +\q1 +\v 3 For while they were yet in the midst of their mourning, +\q2 and lamenting at the graves of the dead, +\q2 they made another foolish decision, +\q2 and pursued as fugitives those whom they had begged to leave and driven out. +\q1 +\v 4 For the doom which they deserved was drawing them to this end, +\q2 and it made them forget the things that had happened to them, +\q2 that they might fill up the punishment which was yet lacking from their torments, +\q2 +\v 5 and that your people might journey on by a marvelous road, +\q2 but they themselves might find a strange death. +\b +\q1 +\v 6 For the whole creation, each part in its diverse kind, was made new again, +\q2 complying with your commandments, +\q2 that your servants might be kept unharmed. +\q1 +\v 7 Then the cloud that overshadowed the camp was seen, +\q2 and dry land rising up out of what had been water, +\q2 out of the Red sea an unhindered highway, +\q2 and a grassy plain out of the violent surge, +\q2 +\v 8 by which they passed over with all their army, +\q2 these who were covered with your hand, +\q2 having seen strange marvels. +\q1 +\v 9 For like horses they roamed at large, +\q2 and they skipped about like lambs, +\q2 praising you, O Lord, who was their deliverer. +\q1 +\v 10 For they still remembered the things that happened in the time of their sojourning, +\q2 how instead of bearing cattle, the land brought forth lice, +\q2 and instead of fish, the river spewed out a multitude of frogs. +\q1 +\v 11 But afterwards, they also saw a new kind of birds, +\q2 when, led on by desire, they asked for luxurious dainties; +\q1 +\v 12 for, to comfort them, quails came up for them from the sea. +\b +\q1 +\v 13 Punishments came upon the sinners, +\q2 not without the signs that were given beforehand by the violence of the thunder, +\q2 for they justly suffered through their own wickednesses, +\q2 for the hatred which they practiced toward guests was grievous indeed. +\q1 +\v 14 For while the others didn’t receive the strangers when they came to them, +\q2 the Egyptians made slaves of guests who were their benefactors. +\q1 +\v 15 And not only so, but while punishment of some sort will come upon the former, +\q2 since they received as enemies those who were aliens; +\q2 +\v 16 because these first welcomed with feastings, +\q2 and then afflicted with dreadful toils, +\q2 those who had already shared with them in the same rights. +\q1 +\v 17 And moreover they were stricken with loss of sight +\q2 (even as were those others at the righteous man’s doors), +\q2 when, being surrounded with yawning darkness, +\q2 they each looked for the passage through his own door. +\b +\q1 +\v 18 For as the notes of a lute vary the character of the rhythm, +\q2 even so the elements, changing their order one with another, +\q2 continuing always in its sound, +\q2 as may clearly be conjectured from the sight of the things that have happened. +\q1 +\v 19 For creatures of the dry land were turned into creatures of the waters, +\q2 and creatures that swim moved upon the land. +\q1 +\v 20 Fire kept the mastery of its own power in water, +\q2 and water forgot its quenching nature. +\q1 +\v 21 On the contrary, flames didn’t consume flesh of perishable creatures that walked among them, +\q2 neither did they melt the crystalline grains of ambrosial food that were melted easily. +\b +\q1 +\v 22 For in all things, O Lord, you magnified your people, +\q2 and you glorified them and didn’t lightly regard them, +\q2 standing by their side in every time and place. \ No newline at end of file diff --git a/bibles/eng-web_usfm/46-SIReng-web.usfm b/bibles/eng-web_usfm/46-SIReng-web.usfm new file mode 100644 index 0000000..cfb03c0 --- /dev/null +++ b/bibles/eng-web_usfm/46-SIReng-web.usfm @@ -0,0 +1,4898 @@ +\id SIR Ecclesiasticus +\h Sirach +\toc1 The Wisdom of Jesus the Son of Sirach, or Ecclesiasticus +\toc2 Sirach +\toc3 Sir +\mt1 The Wisdom of Jesus the Son of Sirach, +\mt2 or +\mt1 Ecclesiaticus +\ip \bk The Wisdom of Jesus the Son of Sirach\bk*, also called \bk Ecclesiasticus\bk*, is recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches. +\is1 The Prologue of the Wisdom of Jesus the Son of Sirach. +\ip WHEREAS many and great things have been delivered to us by the law and the prophets, and by the others that have followed in their steps, for which we must give Israel the praise for instruction and wisdom; and since not only the readers need to become skillful themselves, but also those who love learning must be able to profit those who are outside, both by speaking and writing; my grandfather Jesus, having much given himself to the reading of the law, the prophets, and the other books of our fathers, and having gained great familiarity with them, was also drawn on himself to write somewhat pertaining to instruction and wisdom, in order that those who love learning, and are devoted to these things, might make progress much more by living according to the law. You are entreated therefore to read with favor and attention, and to pardon us, if in any parts of what we have labored to interpret, we may seem to fail in some of the phrases. For things originally spoken in Hebrew don’t have the same force in them when they are translated into another language. Not only these, but the law itself, and the prophecies, and the rest of the books, have no small difference, when they are spoken in their original language. For having come into Egypt in the thirty-eighth year of Energetes the king, and having continued there some time, I found a copy giving no small instruction. I thought it therefore most necessary for me to apply some diligence and travail to translate this book, applying indeed much watchfulness and skill in that space of time to bring the book to an end and publish for them also, who in the land of their travels are desiring to learn, preparing their character in advance, so as to live according to the law. +\c 1 +\b +\q1 +\v 1 All wisdom comes from the Lord, +\q2 and is with him forever. +\q1 +\v 2 Who can count the sand of the seas, +\q2 the drops of rain, +\q2 and the days of eternity? +\q1 +\v 3 Who will search out the height of the sky, +\q2 the breadth of the earth, the deep, +\q2 and wisdom? +\q1 +\v 4 Wisdom has been created before all things, +\q2 and the understanding of prudence from everlasting. +\v 5 \f + \fr 1:5 \ft Verse 5 is omitted by the best authorities: \fqa The source of wisdom is God’s word in the highest heaven, and her ways are the eternal commandments.\f* +\q1 +\v 6 To whom has the root of wisdom been revealed? +\q2 Who has known her shrewd counsels? +\v 7 \f + \fr 1:7 \ft Verse 7 is omitted by the best authorities: \fqa To whom was the knowledge of wisdom manifested? Who has understood her abundant experience?\f* +\q1 +\v 8 There is one wise, greatly to be feared, +\q2 sitting upon his throne: the Lord. +\q1 +\v 9 He created her. +\q2 He saw and measured her. +\q2 He poured her out upon all his works. +\q1 +\v 10 She is with all flesh according to his gift. +\q2 He gave her freely to those who love him. +\b +\q1 +\v 11 The fear of the Lord is glory, exultation, +\q2 gladness, and a crown of rejoicing. +\q1 +\v 12 The fear of the Lord will delight the heart, +\q2 and will give gladness, joy, and length of days. +\q1 +\v 13 Whoever fears the Lord, it will go well with him at the last. +\q2 He will be blessed in the day of his death. +\b +\q1 +\v 14 To fear the Lord is the beginning of wisdom. +\q2 It was created together with the faithful in the womb. +\q1 +\v 15 She\f + \fr 1:15 \ft Gr. \fqa nested. \f* laid an eternal foundation with men. +\q2 She will be trusted among their offspring. +\q1 +\v 16 To fear the Lord is the fullness of wisdom. +\q2 She inebriates men with her fruits. +\q1 +\v 17 She will fill all her house with desirable things, +\q2 and her storehouses with her produce. +\q1 +\v 18 The fear of the Lord is the crown of wisdom, +\q2 making peace and\f + \fr 1:18 \ft Gr. \fqa health of cure. \f* perfect health to flourish.\f + \fr 1:18 \ft The remainder of this verse is omitted by the best authorities: \fqa Both are gifts of God for peace; glory opens out for those who love him. He saw her and took her measure.\f* +\q1 +\v 19 He both saw and measured her. +\q2 He rained down skill and knowledge of understanding, +\q2 and exalted the honor of those who hold her fast. +\q1 +\v 20 To fear the Lord is the root of wisdom. +\q2 Her branches are length of days. +\v 21 \f + \fr 1:21 \ft Verse 21 is omitted by the best authorities: \fqa The fear of the Lord drives away sins. Where it resides, it will turn away all anger. \f* +\b +\q1 +\v 22 Unjust wrath can never be justified, +\q2 for his wrath tips the scale to his downfall. +\q1 +\v 23 A man that is patient will resist for a season, +\q2 and afterward gladness will spring up to him. +\q1 +\v 24 He will hide his words until the right moment, +\q2 and the lips of many will tell of his understanding. +\b +\q1 +\v 25 A wise saying is in the treasures of wisdom; +\q2 but godliness is an abomination to a sinner. +\q1 +\v 26 If you desire wisdom, keep the commandments +\q2 and the Lord will give her to you freely; +\q1 +\v 27 for the fear of the Lord is wisdom and instruction. +\q2 Faith and humility are his good pleasure. +\q1 +\v 28 Don’t disobey the fear of the Lord. +\q2 Don’t come to him with a double heart. +\q1 +\v 29 Don’t be a hypocrite in men’s sight. +\q2 Keep watch over your lips. +\q1 +\v 30 Don’t exalt yourself, +\q2 lest you fall and bring dishonor upon your soul. +\q1 The Lord will reveal your secrets +\q2 and will cast you down in the midst of the congregation, +\q2 because you didn’t come to the fear of the Lord +\q2 and your heart was full of deceit. +\b +\c 2 +\q1 +\v 1 My son, if you come to serve the Lord, +\q2 prepare your soul for temptation. +\q1 +\v 2 Set your heart aright, constantly endure, +\q2 and don’t make haste in time of calamity. +\q1 +\v 3 Cling to him, and don’t depart, +\q2 that you may be increased at your latter end. +\q1 +\v 4 Accept whatever is brought upon you, +\q2 and be patient when you suffer humiliation. +\q1 +\v 5 For gold is tried in the fire, +\q2 and acceptable men in the furnace of humiliation. +\q1 +\v 6 Put your trust in him, and he will help you. +\q2 Make your ways straight, and set your hope on him. +\b +\q1 +\v 7 All you who fear the Lord, wait for his mercy. +\q2 Don’t turn aside, lest you fall. +\q1 +\v 8 All you who fear the Lord, put your trust in him, +\q2 and your reward will not fail. +\q1 +\v 9 All you who fear the Lord, hope for good things, +\q2 and for eternal gladness and mercy. +\q1 +\v 10 Look at the generations of old, and see: +\q2 Who ever put his trust in the Lord, and was ashamed? +\q2 Or who remained in his fear, and was forsaken? +\q2 Or who called upon him, and he neglected him? +\q1 +\v 11 For the Lord is full of compassion and mercy. +\q2 He forgives sins and saves in time of affliction. +\b +\q1 +\v 12 Woe to fearful hearts, to faint hands, +\q2 and to the sinner who goes two ways! +\q1 +\v 13 Woe to the faint heart! For it doesn’t believe. +\q2 Therefore it won’t be defended. +\q1 +\v 14 Woe to you who have lost your patience! +\q2 And what will you all do when the Lord visits you? +\b +\q1 +\v 15 Those who fear the Lord will not disobey his words. +\q2 Those who love him will keep his ways. +\q1 +\v 16 Those who fear the Lord will seek his good pleasure. +\q2 Those who love him will be filled with the law. +\q1 +\v 17 Those who fear the Lord will prepare their hearts, +\q2 and will humble their souls in his sight. +\q1 +\v 18 We will fall into the hands of the Lord, +\q2 and not into the hands of men; +\q1 for as his majesty is, +\q2 so also is his mercy. +\b +\c 3 +\q1 +\v 1 Hear me, your father, O my children, +\q2 and do what you hear, that you all may be safe. +\q1 +\v 2 For the Lord honors the father over the children, +\q2 and has confirmed the judgment of the mother over her sons. +\q1 +\v 3 He who honors his father will make atonement for sins. +\q2 +\v 4 He who gives glory to his mother is as one who lays up treasure. +\q1 +\v 5 Whoever honors his father will have joy in his own children. +\q2 He will be heard in the day of his prayer. +\q1 +\v 6 He who gives glory to his father will have length of days. +\q2 He who listens to the Lord will bring rest to his mother, +\q1 +\v 7 \f + \fr 3:7 \ft Some manuscripts add \fqa those who fear the Lord honor their father,\f*and will serve under his parents, as to masters. +\q1 +\v 8 Honor your father in deed and word, +\q2 that a blessing may come upon you from him. +\q1 +\v 9 For the blessing of the father establishes the houses of children, +\q2 but the curse of the mother roots out the foundations. +\b +\q1 +\v 10 Don’t glorify yourself in the dishonor of your father, +\q2 for your father’s dishonor is no glory to you. +\q1 +\v 11 For the glory of a man is from the honor of his father, +\q2 and a mother in dishonor is a reproach to her children. +\q1 +\v 12 My son, help your father in his old age, +\q2 and don’t grieve him as long as he lives. +\q1 +\v 13 If he fails in understanding, have patience with him. +\q2 Don’t dishonor him in your full strength. +\q1 +\v 14 For the kindness to your father will not be forgotten. +\q2 Instead of sins it will be added to build you up. +\q1 +\v 15 In the day of your affliction it will be remembered for you, +\q2 as fair weather upon ice, +\q2 so your sins will also melt away. +\q1 +\v 16 He who forsakes his father is as a blasphemer. +\q2 He who provokes his mother is cursed by the Lord. +\b +\q1 +\v 17 My son, go on with your business in humility; +\q2 so you will be loved by an acceptable man. +\q1 +\v 18 The greater you are, humble yourself the more, +\q2 and you will find favor before the Lord. +\v 19 \f + \fr 3:19 \ft Some manuscripts add \fqa Many are lofty and renowned, but he reveals his secrets to the humble.\f* +\q1 +\v 20 For the power of the Lord is great, +\q2 and he is glorified by those who are lowly. +\q1 +\v 21 Don’t seek things that are too hard for you, +\q2 and don’t search out things that are above your strength. +\q1 +\v 22 Think about the things that have been commanded you, +\q2 for you have no need of the things that are secret. +\q1 +\v 23 Don’t be overly busy in tasks that are beyond you, +\q2 for more things are shown to you than men can understand. +\q1 +\v 24 For the conceit of many has led them astray. +\q2 Evil opinion has caused their judgment to slip. +\q1 +\v 25 \f + \fr 3:25 \ft Some manuscripts omit verse 25.\f*There is no light without eyes. +\q2 There is no wisdom without knowledge. +\b +\q1 +\v 26 A stubborn heart will do badly at the end. +\q2 He who loves danger will perish in it. +\q1 +\v 27 A stubborn heart will be burdened with troubles. +\q2 The sinner will heap sin upon sins. +\q1 +\v 28 The calamity of the proud has no healing, +\q2 for a weed of wickedness has taken root in him. +\q1 +\v 29 The heart of the prudent will understand a proverb. +\q2 A wise man desires the ear of a listener. +\b +\q1 +\v 30 Water will quench a flaming fire; +\q2 almsgiving will make atonement for sins. +\q1 +\v 31 He who repays good turns is mindful of that which comes afterward. +\q2 In the time of his falling he will find a support. +\b +\c 4 +\q1 +\v 1 My son, don’t deprive the poor of his living. +\q2 Don’t make the needy eyes wait long. +\q1 +\v 2 Don’t make a hungry soul sorrowful, +\q2 or provoke a man in his distress. +\q1 +\v 3 Don’t add more trouble to a heart that is provoked. +\q2 Don’t put off giving to him who is in need. +\q1 +\v 4 Don’t reject a suppliant in his affliction. +\q2 Don’t turn your face away from a poor man. +\q1 +\v 5 Don’t turn your eye away from one who asks. +\q2 Give no occasion to a man to curse you. +\q1 +\v 6 For if he curses you in the bitterness of his soul, +\q2 he who made him will hear his supplication. +\b +\q1 +\v 7 Endear yourself to the assembly. +\q2 Bow your head to a great man. +\q1 +\v 8 Incline your ear to a poor man. +\q2 Answer him with peaceful words in humility. +\q1 +\v 9 Deliver him who is wronged from the hand of him who wrongs him; +\q2 Don’t be hesitant in giving judgment. +\q1 +\v 10 Be as a father to the fatherless, +\q2 and like a husband to their mother. +\q1 So you will be as a son of the Most High, +\q2 and he will love you more than your mother does. +\b +\q1 +\v 11 Wisdom exalts her sons, +\q2 and takes hold of those who seek her. +\q1 +\v 12 He who loves her loves life. +\q2 Those who seek her early will be filled with gladness. +\q1 +\v 13 He who holds her fast will inherit glory. +\q2 Where\f + \fr 4:13 \ft Or, \fqa she \f* he enters, the Lord will bless. +\q1 +\v 14 Those who serve her minister to the Holy One. +\q2 The Lord loves those who love her. +\q1 +\v 15 He who listens to her will judge the nations. +\q2 He who heeds her will dwell securely. +\q1 +\v 16 If he trusts her, he will inherit her, +\q2 and his generations will possess her. +\q1 +\v 17 For at the first she will walk with him in crooked ways, +\q2 and will bring fear and dread upon him, +\q2 and torment him with her discipline, +\q2 until she may trust his soul, and try him by her judgments. +\q1 +\v 18 Then she will return him again to the straight way, +\q2 and will gladden him, and reveal to him her secrets. +\q1 +\v 19 If he goes astray, she will forsake him, +\q2 and hand him over to his fall. +\b +\q1 +\v 20 Watch for the opportunity, and beware of evil. +\q2 Don’t be ashamed of your soul. +\q1 +\v 21 For there is a shame that brings sin, +\q2 and there is a shame that is glory and grace. +\q1 +\v 22 Don’t show partiality, discrediting your soul. +\q2 Don’t revere any man to your falling. +\q1 +\v 23 Don’t refrain from speaking when it is for safety. +\q2 \f + \fr 4:23 \ft Some manuscripts omit this line. \f*Don’t hide your wisdom for the sake of seeming fair. +\q1 +\v 24 For wisdom will be known by speech, +\q2 and instruction by the word of the tongue. +\q1 +\v 25 Don’t speak against the truth +\q2 and be shamed for your ignorance. +\q1 +\v 26 Don’t be ashamed to confess your sins. +\q2 Don’t fight the river’s current. +\q1 +\v 27 Don’t lay yourself down for a fool to tread upon. +\q2 Don’t be partial to one who is mighty. +\q1 +\v 28 Strive for the truth to death, +\q2 and the Lord God will fight for you. +\b +\q1 +\v 29 Don’t be hasty with your tongue, +\q2 or slack and negligent in your deeds. +\q1 +\v 30 Don’t be like a lion in your house, +\q2 or suspicious of your servants. +\q1 +\v 31 Don’t let your hand be stretched out to receive, +\q2 and closed when you should repay. +\c 5 +\q1 +\v 1 Don’t set your heart upon your goods. +\q2 Don’t say, “They are sufficient for me.” +\q1 +\v 2 Don’t follow your own mind and your strength +\q2 to walk in the desires of your heart. +\q1 +\v 3 Don’t say, “Who will have dominion over me?” +\q2 for the Lord will surely take vengeance on you. +\b +\q1 +\v 4 Don’t say, “I sinned, and what happened to me?” +\q2 for the Lord is patient. +\q1 +\v 5 Don’t be so confident of atonement +\q2 that you add sin upon sins. +\q1 +\v 6 Don’t say, “His compassion is great. +\q2 He will be pacified for the multitude of my sins,” +\q2 for mercy and wrath are with him, +\q2 and his indignation will rest on sinners. +\q1 +\v 7 Don’t wait to turn to the Lord. +\q2 Don’t put off from day to day; +\q2 for suddenly the wrath of the Lord will come on you, +\q2 and you will perish in the time of vengeance. +\b +\q1 +\v 8 Don’t set your heart upon unrighteous gains, +\q2 for you will profit nothing in the day of calamity. +\q1 +\v 9 Don’t winnow with every wind. +\q2 Don’t walk in every path. +\q2 This is what the sinner who has a double tongue does. +\q1 +\v 10 Be steadfast in your understanding. +\q2 Let your speech be consistent. +\b +\q1 +\v 11 Be swift to hear +\q2 and answer with patience. +\q1 +\v 12 If you have understanding, answer your neighbor; +\q2 but if not, put your hand over your mouth. +\q1 +\v 13 Glory and dishonor is in talk. +\q2 A man’s tongue may be his downfall. +\q1 +\v 14 Don’t be called a whisperer. +\q2 Don’t lie in wait with your tongue; +\q2 for shame is on the thief, +\q2 and an evil condemnation is on him who has a double tongue. +\q1 +\v 15 Don’t be ignorant in a great or small matter. +\c 6 +\q1 +\v 1 Don’t become an enemy instead of a friend; +\q2 for an evil name will inherit shame and reproach. +\q2 So it is with the sinner who has a double tongue. +\b +\q1 +\v 2 Don’t exalt yourself in the counsel of your soul, +\q2 that your soul not be torn in pieces like a bull. +\q1 +\v 3 You will eat up your leaves, destroy your fruit, +\q2 and leave yourself like a dry tree. +\q1 +\v 4 A wicked soul will destroy him who has it, +\q2 and will make him a laughing stock to his enemies. +\b +\q1 +\v 5 Sweet words will multiply a man’s friends. +\q2 A gracious tongue will multiply courtesies. +\q1 +\v 6 Let those that are at peace with you be many, +\q2 but your advisers one of a thousand. +\q1 +\v 7 If you want to gain a friend, get him in a time of testing, +\q2 and don’t be in a hurry to trust him. +\q1 +\v 8 For there is a friend just for an occasion. +\q2 He won’t continue in the day of your affliction. +\q1 +\v 9 And there is a friend who turns into an enemy. +\q2 He will discover strife to your reproach. +\q1 +\v 10 And there is a friend who is a companion at the table, +\q2 but he won’t continue in the day of your affliction. +\q1 +\v 11 In your prosperity he will be as yourself, +\q2 and will be bold over your servants. +\q1 +\v 12 If you are brought low, he will be against you, +\q2 and will hide himself from your face. +\q1 +\v 13 Separate yourself from your enemies, +\q2 and beware of your friends. +\b +\q1 +\v 14 A faithful friend is a strong defense. +\q2 He who has found him has found a treasure. +\q1 +\v 15 There is nothing that can be taken in exchange for a faithful friend. +\q2 His excellency is beyond price. +\q1 +\v 16 A faithful friend is a life-saving medicine. +\q2 Those who fear the Lord will find him. +\q1 +\v 17 He who fears the Lord directs his friendship properly; +\q2 for as he is, so is his neighbor also. +\b +\q1 +\v 18 My son, gather instruction from your youth up. +\q2 Even when you have gray hair you will find wisdom. +\q1 +\v 19 Come to her as one who plows and sows +\q2 and wait for her good fruit; +\q1 for your toil will be little in her cultivation, +\q2 and you will soon eat of her fruit. +\q1 +\v 20 How exceedingly harsh she is to the unlearned! +\q2 He who is without understanding will not remain in her. +\q1 +\v 21 She will rest upon him as a mighty stone of trial. +\q2 He won’t hesitate to cast her from him. +\q1 +\v 22 For wisdom is according to her name. +\q1 She isn’t manifest to many. +\b +\q1 +\v 23 Give ear, my son, and accept my judgment. +\q2 Don’t refuse my counsel. +\q1 +\v 24 Bring your feet into her fetters, +\q2 and your neck into her chain. +\q1 +\v 25 Put your shoulder under her and bear her. +\q2 Don’t be grieved with her bonds. +\q1 +\v 26 Come to her with all your soul. +\q2 Keep her ways with your whole power. +\q1 +\v 27 Search and seek, and she will be made known to you. +\q2 When you get hold of her, don’t let her go. +\q1 +\v 28 For at the last you will find her rest; +\q2 and she will be turned for you into gladness. +\q1 +\v 29 Her fetters will be to you for a covering of strength, +\q2 and her chains for a robe of glory. +\q1 +\v 30 For there is a golden ornament upon her, +\q2 and her bands are \x + \xo 6:30 \xt Numbers 15:38\x*a purple cord. +\q1 +\v 31 You shall put her on as a robe of glory, +\q2 and shall put her on as a crown of rejoicing. +\b +\q1 +\v 32 My son, if you are willing, you will be instructed. +\q2 If you will yield your soul, you will be prudent. +\q1 +\v 33 If you love to hear, you will receive. +\q2 If you incline your ear, you will be wise. +\q1 +\v 34 Stand in the multitude of the elders. +\q2 Attach yourself to whomever is wise. +\q1 +\v 35 Be willing to listen to every godly discourse. +\q2 Don’t let the proverbs of understanding escape you. +\q1 +\v 36 If you see a man of understanding, get to him early. +\q2 Let your foot wear out the steps of his doors. +\q1 +\v 37 Let your mind dwell on the ordinances of the Lord +\q2 and meditate continually on his commandments. +\q1 He will establish your heart +\q2 and your desire for wisdom will be given to you. +\b +\c 7 +\q1 +\v 1 Do no evil, +\q2 so no evil will overtake you. +\q1 +\v 2 Depart from wrong, +\q2 and it will turn away from you. +\q1 +\v 3 My son, don’t sow upon the furrows of unrighteousness, +\q2 and you won’t reap them sevenfold. +\b +\q1 +\v 4 Don’t seek preeminence from the Lord, +\q2 nor the seat of honor from the king. +\q1 +\v 5 Don’t justify yourself in the presence of the Lord, +\q2 and don’t display your wisdom before the king. +\q1 +\v 6 Don’t seek to be a judge, +\q2 lest you not be able to take away iniquities, +\q2 lest perhaps you fear the person of a mighty man, +\q2 and lay a stumbling block in the way of your uprightness. +\b +\q1 +\v 7 Don’t sin against the multitude of the city. +\q2 Don’t disgrace yourself in the crowd. +\b +\q1 +\v 8 Don’t commit a sin twice, +\q2 for even in one you will not be unpunished. +\q1 +\v 9 Don’t say, “He will look upon the multitude of my gifts. +\q2 When I make an offering to the Most High God, he will accept it.” +\q1 +\v 10 Don’t be faint-hearted in your prayer. +\q2 Don’t neglect to give alms. +\b +\q1 +\v 11 Don’t laugh a man to scorn when he is in the bitterness of his soul, +\q2 for there is one who humbles and exalts. +\q1 +\v 12 Don’t devise\f + \fr 7:12 \ft Gr. \fqa Don’t plow\f* a lie against your brother, +\q2 or do the same to a friend. +\q1 +\v 13 Refuse to utter a lie, +\q2 for that habit results in no good. +\q1 +\v 14 Don’t babble in the assembly of elders. +\q2 Don’t repeat your words in your prayer. +\b +\q1 +\v 15 Don’t hate hard labor +\q2 or farm work, which the Most High has created. +\q1 +\v 16 Don’t number yourself among the multitude of sinners. +\q2 Remember that wrath will not wait. +\q1 +\v 17 Humble your soul greatly, +\q2 for the punishment of the ungodly man is fire and the worm. +\b +\q1 +\v 18 Don’t exchange a friend for something, +\q2 neither a true brother for the gold of Ophir. +\q1 +\v 19 Don’t deprive yourself of a wise and good wife, +\q2 for her grace is worth more than gold. +\q1 +\v 20 Don’t abuse a servant who works faithfully, +\q2 or a hireling who gives you his life. +\q1 +\v 21 Let your soul love a wise servant. +\q2 Don’t defraud him of liberty. +\b +\q1 +\v 22 Do you have cattle? Look after them. +\q2 If they are profitable to you, let them stay by you. +\q1 +\v 23 Do you have children? Correct them, +\q2 and make them obedient from their youth. +\q1 +\v 24 Do you have daughters? Take care of their bodies, +\q2 and don’t be overly indulgent toward them. +\q1 +\v 25 Give your daughter in marriage, and you will have accomplished a great matter. +\q2 Give her to a man of understanding. +\b +\q1 +\v 26 Do you have a wife who pleases you? Don’t cast her out. +\q2 \f + \fr 7:26 \ft Many authorities omit this line \f*But don’t trust yourself to one who is hateful. +\b +\q1 +\v 27 Honor your father with your whole heart, +\q2 and don’t forget the birth pangs of your mother. +\q1 +\v 28 Remember that you were born of them. +\q2 What will you repay them for the things that they have done for you? +\b +\q1 +\v 29 Fear the Lord with all your soul; +\q2 and revere his priests. +\q1 +\v 30 With all your strength love him who made you. +\q2 Don’t forsake his ministers. +\q1 +\v 31 Fear the Lord and honor the priest. +\q2 Give him his portion, even as it is commanded you: +\q2 the first fruits, the trespass offering, the gift of the shoulders, +\q2 the sacrifice of sanctification, and the first fruits of holy things. +\b +\q1 +\v 32 Also stretch out your hand to the poor man, +\q2 that your blessing may be complete. +\q1 +\v 33 A gift has grace in the sight of every living man. +\q2 Don’t withhold grace for a dead man. +\q1 +\v 34 Don’t avoid those who weep, +\q2 and mourn with those who mourn. +\q1 +\v 35 Don’t be slow to visit a sick man, +\q2 for by such things you will gain love. +\q1 +\v 36 In all your words, remember eternity, +\q2 and you will never sin. +\b +\c 8 +\q1 +\v 1 Don’t contend with a mighty man, +\q2 lest perhaps you fall into his hands. +\q1 +\v 2 Don’t strive with a rich man, lest perhaps he overpower you; +\q2 for gold has destroyed many, +\q2 and turned away the hearts of kings. +\q1 +\v 3 Don’t argue with a loudmouthed man. +\q2 Don’t heap wood upon his fire. +\b +\q1 +\v 4 Don’t make fun of a rude man, +\q2 lest your ancestors be dishonored. +\q1 +\v 5 Don’t reproach a man when he turns from sin. +\q2 Remember that we are all worthy of punishment. +\q1 +\v 6 Don’t dishonor a man in his old age, +\q2 for some of us are also growing old. +\q1 +\v 7 Don’t rejoice over anyone’s death. +\q2 Remember that we all die. +\b +\q1 +\v 8 Don’t neglect the discourse of the wise. +\q2 Be conversant with their proverbs; +\q2 for from them you will learn discipline +\q2 and how to serve great men. +\q1 +\v 9 Don’t miss the discourse of the aged, +\q2 for they also learned from their parents, +\q2 because from them you will learn understanding, +\q2 and to give an answer in time of need. +\b +\q1 +\v 10 Don’t kindle the coals of a sinner, +\q2 lest you be burned with the flame of his fire. +\q1 +\v 11 Don’t rise up from the presence of an insolent man, +\q2 lest he lie in wait as an ambush for your mouth. +\q1 +\v 12 Don’t lend to a man who is stronger than you; +\q2 and if you lend, count it as a loss. +\q1 +\v 13 Don’t be surety beyond your means. +\q2 If you give surety, think as one who will have to pay. +\b +\q1 +\v 14 Don’t go to law with a judge; +\q2 for according to his honor they will give judgment for him. +\q1 +\v 15 Don’t travel with a reckless man, +\q2 lest he be burdensome to you; +\q2 for he will do as he pleases, +\q2 and you will perish with his folly. +\q1 +\v 16 Don’t fight with a wrathful man. +\q2 Don’t travel with him through the desert, +\q2 for blood is as nothing in his sight. +\q2 Where there is no help, he will overthrow you. +\q1 +\v 17 Don’t consult with a fool, +\q2 for he will not be able to keep a secret. +\q1 +\v 18 Do no secret thing before a stranger, +\q2 for you don’t know what it will cause. +\q1 +\v 19 Don’t open your heart to every man. +\q2 Don’t let him return you a favor. +\b +\c 9 +\q1 +\v 1 Don’t be jealous over the wife of your bosom, +\q2 and don’t teach her an evil lesson against yourself. +\q1 +\v 2 Don’t give your soul to a woman +\q2 and let her trample down your strength. +\q1 +\v 3 Don’t go to meet a woman who plays the prostitute, +\q2 lest perhaps you fall into her snares. +\q1 +\v 4 Don’t associate with a woman who is a singer, +\q2 lest perhaps you be caught by her tricks. +\q1 +\v 5 Don’t gaze at a virgin, +\q2 lest perhaps you stumble and incur penalties for her. +\q1 +\v 6 Don’t give your soul to prostitutes, +\q2 that you not lose your inheritance. +\q1 +\v 7 Don’t look around in the streets of the city. +\q2 Don’t wander in its deserted places. +\q1 +\v 8 Turn your eye away from a beautiful woman, +\q2 and don’t gaze at another’s beauty. +\q1 Many have been led astray by the beauty of a woman; +\q2 and with this, passion is kindled like a fire. +\q1 +\v 9 Don’t dine at all with a woman who has a husband, +\q2 or revel with her at wine,\f + \fr 9:9 \ft The preceding line of this verse is omitted by the best authorities. \f* +\q2 lest perhaps your soul turn away to her, +\q2 and with your spirit you slide into destruction. +\b +\q1 +\v 10 Don’t forsake an old friend; +\q2 for a new one is not comparable to him. +\q1 A new friend is like new wine: +\q2 if it becomes old, you will drink it with gladness. +\b +\q1 +\v 11 Don’t envy the success of a sinner; +\q2 for you don’t know what his end will be. +\q1 +\v 12 Don’t delight in the delights of the ungodly. +\q2 Remember they will not go unpunished to\f + \fr 9:12 \ft Gr. \fqa Hades. \f* the grave. +\b +\q1 +\v 13 Keep yourself far from the man who has\f + \fr 9:13 \ft Or, \fqa authority \f* power to kill, +\q2 and you will not be troubled by the fear of death. +\q1 If you come to him, commit no fault, +\q2 lest he take away your life. +\q1 Know surely that you go about in the midst of snares, +\q2 and walk upon the battlements of a city. +\b +\q1 +\v 14 As well as you can, aim to know your neighbors, +\q2 and take counsel with the wise. +\q1 +\v 15 Let your conversation be with men of understanding. +\q2 Let all your discourse be in the law of the Most High. +\q1 +\v 16 Let righteous people be companions at your table. +\q2 Let your glorying be in the fear of the Lord. +\b +\q1 +\v 17 A work is commended because of the skill of the artisan; +\q2 so he who rules the people will be considered wise for his speech. +\q1 +\v 18 A loudmouthed man is dangerous in his city. +\q2 He who is reckless in his speech will be hated. +\b +\c 10 +\q1 +\v 1 A wise judge will instruct his people. +\q2 The government of a man of understanding will be well ordered. +\q1 +\v 2 As is the judge of his people, so are his officials. +\q2 As the city’s ruler is, so are all those who dwell in it. +\q1 +\v 3 An undisciplined king will destroy his people. +\q2 A city will be established through the understanding of the powerful. +\q1 +\v 4 The government of the earth is in the Lord’s hand. +\q2 In due time, he will raise up over it the right person at the right time. +\q1 +\v 5 A man’s prosperity is in the Lord’s hand. +\q2 He will lay his honor upon the person of the scribe. +\b +\q1 +\v 6 Don’t be angry with your neighbor for every wrong. +\q2 Do nothing by works of violence. +\q1 +\v 7 Pride is hateful before the Lord and men. +\q2 Arrogance is abhorrent in the judgment of both. +\q1 +\v 8 Sovereignty is transferred from nation to nation +\q2 because of injustice, violence, and greed for money. +\q1 +\v 9 Why are dirt and ashes proud?\f + \fr 10:9 \ft Two lines of this verse are here omitted by the best authorities.\f* +\q2 Because in life, my body decays. +\q1 +\v 10 A long disease mocks the physician. +\q2 The king of today will die tomorrow. +\q1 +\v 11 For when a man is dead, +\q2 he will inherit maggots, vermin, and worms. +\q1 +\v 12 It is the beginning of pride when a man departs from the Lord. +\q2 His heart has departed from him who made him. +\q1 +\v 13 For the beginning of pride is sin. +\q2 He who keeps it will pour out abomination. +\q1 For this cause the Lord brought upon them strange calamities +\q2 and utterly overthrew them. +\q1 +\v 14 The Lord cast down the thrones of rulers +\q2 and set the lowly in their place. +\q1 +\v 15 The Lord plucked up the roots of nations +\q2 and planted the lowly in their place. +\q1 +\v 16 The Lord overthrew the lands of nations +\q2 and destroyed them to the foundations of the earth. +\q1 +\v 17 He took some of them away and destroyed them, +\q2 and made their memory to cease from the earth. +\q1 +\v 18 Pride has not been created for men, +\q2 nor wrathful anger for the offspring of women. +\b +\q1 +\v 19 Whose offspring has honor? +\q2 Human offspring who fear the Lord. +\q1 Whose offspring has no honor? +\q2 Human offspring who break the commandments. +\q1 +\v 20 In the midst of kindred he who rules them has honor. +\q2 Those who fear the Lord have honor in his eyes. +\v 21 \f + \fr 10:21 \ft Verse 21 is omitted by the best authorities: Fear of the Lord is the beginning of acceptance, but obstinance and pride are the beginning of rejection.\f* +\q1 +\v 22 The rich man, the honorable, and the poor +\q2 all glory in the fear of the Lord. +\q1 +\v 23 It is not right to dishonor a poor man who has understanding. +\q2 It is not fitting to glorify a man who is a sinner. +\q1 +\v 24 The prince, the judge, and the mighty man will be honored. +\q2 There is not one of them greater than he who fears the Lord. +\q1 +\v 25 Free men will minister to a wise servant. +\q2 A man who has knowledge will not complain. +\b +\q1 +\v 26 Don’t flaunt your wisdom in doing your work. +\q2 Don’t boast in the time of your distress. +\q1 +\v 27 Better is he who labors and abounds in all things, +\q2 than he who boasts and lacks bread. +\q1 +\v 28 My son, glorify your soul in humility, +\q2 and ascribe to yourself honor according to your worthiness. +\q1 +\v 29 Who will justify him who sins against his own soul? +\q2 Who will honor him who dishonors his own life? +\b +\q1 +\v 30 A poor man is honored for his knowledge. +\q2 A rich man is honored for his riches. +\q1 +\v 31 But he who is honored in poverty, how much more in riches? +\q2 He who is dishonored in riches, how much more in poverty? +\b +\c 11 +\q1 +\v 1 The wisdom of the lowly will lift up his head, +\q2 and make him sit in the midst of great men. +\b +\q1 +\v 2 Don’t commend a man for his good looks. +\q2 Don’t abhor a man for his outward appearance. +\q1 +\v 3 The bee is little among flying creatures, +\q2 but what it produces is the best of confections. +\q1 +\v 4 Don’t boast about the clothes you wear, +\q2 and don’t exalt yourself in the day of honor; +\q1 for the Lord’s works are wonderful, +\q2 and his works are hidden among men. +\q1 +\v 5 Many\f + \fr 11:5 \ft Gr. \fqa tyrants \f* kings have sat down upon the ground, +\q2 but one who was never thought of has worn a crown. +\q1 +\v 6 Many mighty men have been greatly disgraced. +\q2 Men of renown have been delivered into other men’s hands. +\b +\q1 +\v 7 Don’t blame before you investigate. +\q2 Understand first, and then rebuke. +\q1 +\v 8 Don’t answer before you have heard. +\q2 Don’t interrupt while someone else is speaking. +\q1 +\v 9 Don’t argue about a matter that doesn’t concern you. +\q2 Don’t sit with sinners when they judge. +\b +\q1 +\v 10 My son, don’t be busy about many matters; +\q2 for if you meddle much, you will not be unpunished. +\q1 If you pursue, you will not overtake, +\q2 and you will not escape by fleeing. +\q1 +\v 11 There is one who toils, labors, and hurries, +\q2 and is even more behind. +\q1 +\v 12 There is one who is sluggish, and needs help, +\q2 lacking in strength, and who abounds in poverty, +\q1 but the Lord’s eyes looked upon him for good, +\q2 and he raised him up from his low condition, +\q1 +\v 13 and lifted up his head +\q2 so that many marveled at him. +\b +\q1 +\v 14 Good things and bad, life and death, +\q2 poverty and riches, are from the Lord. +\v 15-16 \f + \fr 11:15-16 \ft Verses 15 and 16 are omitted by the best authorities. \f* +\q1 +\v 17 The Lord’s gift remains with the godly. +\q2 His good pleasure will prosper forever. +\q1 +\v 18 One grows rich by his diligence and self-denial, +\q2 and this is the portion of his reward: +\q1 +\v 19 when he says, “I have found rest, +\q2 and now I will eat of my goods!” +\q1 he doesn’t know how much time will pass +\q2 until he leaves them to others and dies. +\q1 +\v 20 Be steadfast in your covenant and be doing it, +\q2 and grow old in your work. +\b +\q1 +\v 21 Don’t marvel at the works of a sinner, +\q2 but trust the Lord and stay in your labor; +\q1 for it is an easy thing in the sight of the Lord +\q2 to swiftly and suddenly make a poor man rich. +\q1 +\v 22 The Lord’s blessing is in the reward of the godly. +\q2 He makes his blessing flourish in an hour that comes swiftly. +\q1 +\v 23 Don’t say, “What use is there of me? +\q2 What further good things can be mine?” +\q1 +\v 24 Don’t say, “I have enough. +\q2 What harm could happen to me now?” +\q1 +\v 25 In the day of good things, bad things are forgotten. +\q2 In the day of bad things, a man will not remember things that are good. +\q1 +\v 26 For it is an easy thing in the sight of the Lord +\q2 to reward a man in the day of death according to his ways. +\q1 +\v 27 The affliction of an hour causes delights to be forgotten. +\q2 In the end, a man’s deeds are revealed. +\q1 +\v 28 Call no man happy before his death. +\q2 A man will be known in his children. +\b +\q1 +\v 29 Don’t bring every man into your house, +\q2 for many are the tricks of a deceitful man. +\q1 +\v 30 Like a decoy partridge in a cage, so is the heart of a proud man. +\q2 Like a spy, he looks for your weakness. +\q1 +\v 31 For he lies in wait to turn things that are good into evil, +\q2 and assigns blame in things that are praiseworthy. +\q1 +\v 32 From a spark of fire, a heap of many coals is kindled, +\q2 and a sinful man lies in wait to shed blood. +\q1 +\v 33 Take heed of an evil-doer, for he plans wicked things, +\q2 lest perhaps he ruin your reputation forever. +\q1 +\v 34 Receive a stranger into your house, and he will distract you with arguments +\q2 and estrange you from your own family. +\b +\c 12 +\q1 +\v 1 If you do good, know to whom you do it, +\q2 and your good deeds will have thanks. +\q1 +\v 2 Do good to a godly man, and you will find a reward— +\q2 if not from him, then from the Most High. +\q1 +\v 3 No good will come to him who continues to do evil, +\q2 nor to him who gives no alms. +\q1 +\v 4 Give to the godly man, +\q2 and don’t help the sinner. +\q1 +\v 5 Do good to one who is lowly. +\q2 Don’t give to an ungodly man. +\q1 Keep back his bread, and don’t give it to him, +\q2 lest he subdue you with it; +\q1 for you would receive twice as much evil +\q2 for all the good you would have done to him. +\q1 +\v 6 For the Most High also hates sinners, +\q2 and will repay vengeance to the ungodly.\f + \fr 12:6 \ft The remainder of this verse is omitted by the best authorities. \f* +\q1 +\v 7 Give to the good man, +\q2 and don’t help the sinner. +\b +\q1 +\v 8 A man’s friend won’t be\f + \fr 12:8 \ft Or, \fqa punished \f* fully tried in prosperity. +\q2 His enemy won’t be hidden in adversity. +\q1 +\v 9 In a man’s prosperity, his enemies are grieved. +\q2 In his adversity, even his friend leaves. +\q1 +\v 10 Never trust your enemy, +\q2 for his wickedness is like corrosion in copper. +\q1 +\v 11 Though he humbles himself and walks bowed down, +\q2 still be careful and beware of him. +\q1 You will be to him as one who has wiped a mirror, +\q2 to be sure it doesn’t completely tarnish. +\q1 +\v 12 Don’t set him next to you, +\q2 lest he overthrow you and stand in your place. +\q1 Don’t let him sit on your right hand, +\q2 lest he seek to take your seat, +\q1 and at the last you acknowledge my words, +\q2 and be pricked with my sayings. +\b +\q1 +\v 13 Who will pity a charmer that is bitten by a snake, +\q2 or any who come near wild beasts? +\q1 +\v 14 Even so, who will pity him who goes to a sinner, +\q2 and is associated with him in his sins? +\q1 +\v 15 For a while he will stay with you, +\q2 and if you falter, he will not stay. +\q1 +\v 16 The enemy will speak sweetly with his lips, +\q2 and in his heart plan to throw you into a pit. +\q1 The enemy may weep with his eyes, +\q2 but if he finds opportunity, he will want more blood. +\q1 +\v 17 If adversity meets you, you will find him there before you. +\q2 Pretending to help you, he will trip you. +\q1 +\v 18 He will shake his head, clap his hands, +\q2 whisper much, and change his countenance. +\b +\c 13 +\q1 +\v 1 He who touches pitch will be defiled. +\q2 He who has fellowship with a proud man will become like him. +\q1 +\v 2 Don’t take up a burden above your strength. +\q2 Have no fellowship with one who is mightier and richer than yourself. +\q1 What fellowship would the earthen pot have with the kettle? +\q2 The kettle will strike, and the pot will be dashed in pieces. +\q1 +\v 3 The rich man does a wrong and threatens. +\q2 The poor is wronged and apologizes. +\q1 +\v 4 If you are profitable, he will exploit you. +\q2 If you are in need, he will forsake you. +\q1 +\v 5 If you own something, he will live with you. +\q2 He will drain your resources and will not be sorry. +\q1 +\v 6 Does he need you? Then he will deceive you, +\q2 smile at you, and give you hope. +\q2 He will speak kindly to you and say, “What do you need?” +\q1 +\v 7 He will shame you by his delicacies +\q2 until he has made you bare twice or thrice, +\q2 and in the end he will laugh you to scorn. +\q1 Afterward he will see you, will forsake you, +\q2 and shake his head at you. +\b +\q1 +\v 8 Beware that you are not deceived +\q2 and brought low in your enjoyment. +\q1 +\v 9 If a mighty man invites you, be reserved, +\q2 and he will invite you more. +\q1 +\v 10 Don’t press him, lest you be thrust back. +\q2 Don’t stand far off, lest you be forgotten. +\q1 +\v 11 Don’t try to speak with him as an equal, +\q2 and don’t believe his many words; +\q1 for he will test you with much talk, +\q2 and will examine you in a smiling manner. +\q1 +\v 12 He who doesn’t keep secrets to himself is unmerciful. +\q2 He won’t hesitate to harm and to bind. +\q1 +\v 13 Keep them to yourself and be careful, +\q2 for you walk\f + \fr 13:13 \ft Gr. \fqa along with. \f* in danger of falling. +\v 14 \f + \fr 13:14 \ft The remainder of verse 13, and verse 14, are omitted by the best authorities. \f* +\b +\q1 +\v 15 Every living creature loves its own kind, +\q2 and every man loves his neighbor. +\q1 +\v 16 All flesh associates with their own kind. +\q2 A man will stick to people like himself. +\q1 +\v 17 What fellowship would the wolf have with the lamb? +\q2 So is the sinner to the godly. +\q1 +\v 18 What peace is there between a hyena and a dog? +\q2 What peace is there between a rich man and the poor? +\q1 +\v 19 Wild donkeys are the prey of lions in the wilderness; +\q2 likewise poor men are feeding grounds for the rich. +\q1 +\v 20 Lowliness is an abomination to a proud man; +\q2 likewise a poor man is an abomination to the rich. +\b +\q1 +\v 21 When a rich man is shaken, he is supported by his friends, +\q2 but when the humble is down, he is pushed away even by his friends. +\q1 +\v 22 When a rich man falls, there are many helpers. +\q2 He speaks things not to be spoken, and men justify him. +\q1 A humble man falls, and men rebuke him. +\q2 He utters wisdom, and is not listened to. +\q1 +\v 23 A rich man speaks, and all keep silence. +\q2 They extol what he says to the clouds. +\q1 A poor man speaks, and they say, “Who is this?” +\q2 If he stumbles, they will help to overthrow him. +\b +\q1 +\v 24 Riches are good if they have no sin. +\q2 Poverty is evil only in the opinion of the ungodly. +\b +\q1 +\v 25 The heart of a man changes his countenance, +\q2 whether it is for good or for evil.\f + \fr 13:25 \ft The remainder of this verse is omitted by the best authorities. \f* +\q1 +\v 26 A cheerful countenance is a sign of a prosperous heart. +\q2 Devising proverbs takes strenuous thinking. +\c 14 +\q1 +\v 1 Blessed is the man who has not slipped with his mouth, +\q2 and doesn’t suffer from sorrow for sins. +\q1 +\v 2 Blessed is he whose soul does not condemn him, +\q2 and who has not given up hope. +\b +\q1 +\v 3 Riches are not appropriate for a stingy person. +\q2 What would a miser do with money? +\q1 +\v 4 He who gathers by denying himself gathers for others. +\q2 Others will revel in his goods. +\q1 +\v 5 If one is mean to himself, to whom will he be good? +\q2 He won’t enjoy his possessions. +\q1 +\v 6 There is none more evil than he who is grudging to himself. +\q2 This is a punishment for his wickedness. +\q1 +\v 7 Even if he does good, he does it in forgetfulness. +\q2 In the end, he reveals his wickedness. +\q1 +\v 8 A miser is evil. +\q2 He turns away and disregards souls. +\q1 +\v 9 A covetous man’s eye is not satisfied with his portion. +\q2 Wicked injustice dries up his soul. +\q1 +\v 10 A miser begrudges bread, +\q2 and it is lacking at his table. +\b +\q1 +\v 11 My son, according to what you have, treat yourself well, +\q2 and bring worthy offerings to the Lord. +\q1 +\v 12 Remember that death will not wait, +\q2 and that the covenant of Hades hasn’t been shown to you. +\q1 +\v 13 Do good to your friends before you die. +\q2 According to your ability, reach out and give to them. +\q1 +\v 14 Don’t deprive yourself of a good day. +\q2 Don’t let your share of a desired good pass you by. +\q1 +\v 15 Won’t you leave your labors to another, +\q2 and your toils be divided by lot? +\q1 +\v 16 Give, take, and treat yourself well, +\q2 because there is no seeking of luxury in Hades. +\q1 +\v 17 All flesh grows old like a garment, +\q2 for the covenant from the beginning is, “You must die!” +\q1 +\v 18 Like the leaves flourishing on a thick tree, +\q2 some it sheds, and some grow, +\q1 so also are the generations of flesh and blood: +\q2 one comes to an end and another is born. +\q1 +\v 19 Every work rots and falls away, +\q2 and its builder will depart with it. +\b +\q1 +\v 20 Blessed is the man who meditates on wisdom, +\q2 and who reasons by his understanding. +\q1 +\v 21 He who considers her ways in his heart +\q2 will also have knowledge of her secrets. +\q1 +\v 22 Go after her like a hunter, +\q2 and lie in wait in her paths. +\q1 +\v 23 He who peers in at her windows +\q2 will also listen at her doors. +\q1 +\v 24 He who lodges close to her house +\q2 will also fasten a nail in her walls. +\q1 +\v 25 He will pitch his tent near at hand to her, +\q2 and will lodge in a lodging where good things are. +\q1 +\v 26 He will set his children under her shelter, +\q2 and will rest under her branches. +\q1 +\v 27 By her he will be covered from heat, +\q2 and will lodge in her glory. +\c 15 +\q1 +\v 1 He who fears the Lord will do this. +\q2 He who has possession of the law will obtain her. +\q1 +\v 2 She will meet him like a mother, +\q2 and receive him like a wife married in her virginity. +\q1 +\v 3 She will feed him with bread of understanding +\q2 and give him water of wisdom to drink. +\q1 +\v 4 He will be stayed upon her, and will not be moved. +\q2 He will rely upon her, and will not be confounded. +\q1 +\v 5 She will exalt him above his neighbors. +\q2 She will open his mouth in the midst of the congregation. +\q1 +\v 6 He will inherit joy, a crown of gladness, +\q2 and an everlasting name. +\q1 +\v 7 Foolish men will not obtain her. +\q2 Sinners will not see her. +\q1 +\v 8 She is far from pride. +\q2 Liars will not remember her. +\q1 +\v 9 Praise is not attractive in the mouth of a sinner; +\q2 for it was not sent to him from the Lord. +\q1 +\v 10 For praise will be spoken in wisdom; +\q2 The Lord will prosper it. +\b +\q1 +\v 11 Don’t say, “It is through the Lord that I fell away;” +\q2 for you shall not do the things that he hates. +\q1 +\v 12 Don’t say, “It is he that caused me to err;” +\q2 for he has no need of a sinful man. +\q1 +\v 13 The Lord hates every abomination; +\q2 and those who fear him don’t love them. +\q1 +\v 14 He himself made man from the beginning +\q2 and left him in the hand of his own counsel. +\q1 +\v 15 If you choose, you can keep the commandments. +\q2 To be faithful is a matter of your choice. +\q1 +\v 16 He has set fire and water before you. +\q2 You will stretch forth your hand to whichever you desire. +\q1 +\v 17 Before man is life and death. +\q2 Whichever he likes, it will be given to him. +\q1 +\v 18 For the wisdom of the Lord is great. +\q2 He is mighty in power, and sees all things. +\q1 +\v 19 His eyes are upon those who fear him. +\q2 He knows every act of man. +\q1 +\v 20 He has not commanded any man to be ungodly. +\q2 He has not given any man license to sin. +\b +\c 16 +\q1 +\v 1 Don’t desire a multitude of unprofitable children, +\q2 neither delight in ungodly sons. +\q1 +\v 2 If they multiply, don’t delight in them +\q2 unless the fear of the Lord is in them. +\q1 +\v 3 Don’t trust in their life. +\q2 Don’t rely on their numbers; +\q2 for one can be better than a thousand, +\q2 and to die childless than to have ungodly children. +\q1 +\v 4 For from one who has understanding, a city will be populated, +\q2 but a race of wicked men will be made desolate. +\q1 +\v 5 I have seen many such things with my eyes. +\q2 My ear has heard mightier things than these. +\b +\q1 +\v 6 In a congregation of sinners, a fire will be kindled. +\q2 In a disobedient nation, wrath is kindled. +\q1 +\v 7 He was not pacified toward the giants of old time, +\q2 who revolted in their strength. +\q1 +\v 8 He didn’t spare Lot’s neighbors, +\q2 whom he abhorred for their pride. +\q1 +\v 9 He didn’t pity the people of perdition +\q2 who were taken away in their sins, +\q2 +\v 10 or in like manner, the six hundred thousand footmen +\q2 who were gathered together in the hardness of their hearts. +\q1 +\v 11 Even if there is one stiff-necked person, +\q2 it is a marvel if he will be unpunished; +\q2 for mercy and wrath are both with him who is mighty to forgive, +\q2 and he pours out wrath. +\q1 +\v 12 As his mercy is great, so is his correction also. +\q2 He judges a man according to his works. +\q1 +\v 13 The sinner will not escape with plunder. +\q2 The perseverance of the godly will not be frustrated. +\q1 +\v 14 He will make room for every work of mercy. +\q2 Each man will receive according to his works. +\v 15-16 \f + \fr 16:15-16 \ft Verses 15 and 16 are omitted by the best authorities. \f* +\b +\q1 +\v 17 Don’t say, “I will be hidden from the Lord,” +\q2 and “Who will remember me from on high?” +\q1 I will not be known among so many people, +\q2 for what is my soul in a boundless creation? +\q1 +\v 18 Behold, the heaven, the heaven of heavens, +\q2 the deep, and the earth, will be moved when he visits. +\q1 +\v 19 The mountains and the foundations of the earth together +\q2 are shaken with trembling when he looks at them. +\q1 +\v 20 No heart will think about these things. +\q2 Who could comprehend his ways? +\q1 +\v 21 Like a tempest which no man can see, +\q2 so, the majority of his works are\f + \fr 16:21 \ft Gr. \fqa among hidden things. \f* hidden. +\q1 +\v 22 Who will declare his works of righteousness? +\q2 Who will wait for them? +\q2 For his covenant is afar off.\f + \fr 16:22 \ft The remainder of this verse is omitted by the best authorities. \f* +\q1 +\v 23 He who is lacking in\f + \fr 16:23 \ft Gr. \fqa heart. \f* understanding thinks about these things. +\q2 An unwise and erring man thinks foolishly. +\b +\q1 +\v 24 My son, listen to me, learn knowledge, +\q2 and heed my words with your heart. +\q1 +\v 25 I will impart instruction with precision, +\q2 and declare knowledge exactly. +\b +\q1 +\v 26 In the judgment of the Lord are his works from the beginning. +\q2 From the making of them he determined their boundaries. +\q1 +\v 27 He arranged his works for all time, +\q2 and their beginnings to their generations. +\q1 They aren’t hungry or weary, +\q2 and they don’t cease from their works. +\q1 +\v 28 No one pushes aside his neighbor. +\q2 They will never disobey his word. +\q1 +\v 29 After this also the Lord looked at the earth +\q2 and filled it with his blessings. +\q1 +\v 30 All manner of living things covered its surface, +\q2 and they return into it. +\b +\c 17 +\q1 +\v 1 The Lord created mankind out of earth, +\q2 and turned them back to it again. +\q1 +\v 2 He gave them days by number, and a set time, +\q2 and gave them authority over the things that are on it. +\q1 +\v 3 He endowed them with strength proper to them, +\q2 and made them according to his own image. +\q1 +\v 4 He put the fear of man upon all flesh, +\q2 and gave him dominion over beasts and birds. +\v 5 \f + \fr 17:5 \ft Verse 5 is omitted by the best authorities. \f* +\q1 +\v 6 He gave them counsel, tongue, eyes, +\q2 ears, and heart to have understanding. +\q1 +\v 7 He filled them with the knowledge of wisdom, +\q2 and showed them good and evil. +\q1 +\v 8 He set his eye upon their hearts, +\q2 to show them the majesty of his works. +\v 9 \f + \fr 17:9 \ft Verse 9 is omitted by the best authorities. \f* +\q1 +\v 10 And they will praise his holy name, +\q2 \f + \fr 17:10 \ft This line is added by the best authorities. \f*that they may declare the majesty of his works. +\q1 +\v 11 He added to them knowledge, +\q2 and gave them a law of life for a heritage. +\q1 +\v 12 He made an everlasting covenant with them, +\q2 and showed them his decrees. +\q1 +\v 13 Their eyes saw the majesty of his glory. +\q2 Their ears heard the glory of his voice. +\q1 +\v 14 He said to them, “Beware of all unrighteousness.” +\q2 So he gave them commandment, each man concerning his neighbor. +\b +\q1 +\v 15 Their ways are ever before him. +\q2 They will not be hidden from his eyes. +\v 16 \f + \fr 17:16 \ft Verses 16, 18, and 21 are omitted by the best authorities. \f* +\q1 +\v 17 \f + \fr 17:17 \ft The preceding part of this verse is omitted by the best authorities. \f*For every nation he appointed a ruler, +\q2 but Israel is the Lord’s portion. +\v 18 \f + \fr 17:18 \ft Verses 16, 18, and 21 are omitted by the best authorities.\f* +\q1 +\v 19 All their works are as clear as the sun before him. +\q2 His eyes are continually upon their ways. +\q1 +\v 20 Their iniquities are not hidden from him. +\q2 All their sins are before the Lord. +\v 21 \f + \fr 17:21 \ft Verses 16, 18, and 21 are omitted by the best authorities.\f* +\q1 +\v 22 With him the alms of a man is as a signet. +\q2 He will keep a man’s kindness as the pupil of the eye.\f + \fr 17:22 \ft The remainder of this verse is omitted by the best authorities. \f* +\q1 +\v 23 Afterwards he will rise up and repay them, +\q2 and give their repayment upon their head. +\q1 +\v 24 However to those who repent he grants a return. +\q2 He comforts those who are losing hope. +\b +\q1 +\v 25 Return to the Lord, and forsake sins. +\q2 Make your prayer before his face offend less. +\q1 +\v 26 Turn again to the Most High, and turn away from iniquity.\f + \fr 17:26 \ft A line is here omitted by the best authorities. \f* +\q2 Greatly hate the abominable thing. +\q1 +\v 27 Who will give praise to the Most High in Hades, +\q2 in place of the living who return thanks? +\q1 +\v 28 Thanksgiving perishes from the dead, as from one who doesn’t exist. +\q2 He who is in life and health will praise the Lord. +\q1 +\v 29 How great is the mercy of the Lord, +\q2 and his forgiveness to those who turn to him! +\q1 +\v 30 For humans are not capable of everything, +\q2 because the son of man is not immortal. +\q1 +\v 31 What is brighter than the sun? Yet even this can be eclipsed. +\q2 So flesh and blood devise evil. +\q1 +\v 32 He looks upon the power of the height of heaven, +\q2 while all men are earth and ashes. +\b +\c 18 +\q1 +\v 1 He who lives forever created the whole universe. +\q1 +\v 2 The Lord alone is just. +\v 3 \f + \fr 18:3 \ft The remainder of verse 2, and verse 3, are omitted by the best authorities. \f* +\q1 +\v 4 He has given power to declare his works to no one. +\q2 Who could trace out his mighty deeds? +\q1 +\v 5 Who could measure the strength of his majesty? +\q2 Who could also proclaim his mercies? +\q1 +\v 6 As for the wondrous works of the Lord, it is not possible to take from them nor add to them, +\q2 neither is it possible to explore them. +\q1 +\v 7 When a man has finished, then he is just at the beginning. +\q2 When he stops, then he will be perplexed. +\q1 +\v 8 What is mankind, and what purpose do they serve? +\q2 What is their good, and what is their evil? +\q1 +\v 9 The number of man’s days at the most are a hundred years. +\q1 +\v 10 As a drop of water from the sea, and a pebble from the sand, +\q2 so are a few years in the day of eternity. +\q1 +\v 11 For this cause the Lord was patient over them, +\q2 and poured out his mercy upon them. +\q1 +\v 12 He saw and perceived their end, that it is evil. +\q2 Therefore he multiplied his forgiveness. +\q1 +\v 13 The mercy of a man is on his neighbor; +\q2 but the mercy of the Lord is on all flesh: +\q2 reproving, chastening, teaching, +\q2 and bringing back, as a shepherd does his flock. +\q1 +\v 14 He has mercy on those who accept chastening, +\q2 and that diligently seek after his judgments. +\b +\q1 +\v 15 My son, don’t add reproach to your good deeds, +\q2 and no harsh words in any of your giving. +\q1 +\v 16 Doesn’t the dew relieve the scorching heat? +\q2 So a word is better than a gift. +\q1 +\v 17 Behold, isn’t a word better than a gift? +\q2 Both are with a gracious person. +\q1 +\v 18 A fool is ungracious and abusive. +\q2 The gift of a grudging person consumes the eyes. +\b +\q1 +\v 19 Learn before you speak. +\q2 Take care of your health before you get sick. +\q1 +\v 20 Before judgment, examine yourself, +\q2 and in the hour of scrutiny you will find forgiveness. +\q1 +\v 21 Humble yourself before you get sick. +\q2 In the time of sins, repent. +\q1 +\v 22 Let nothing hinder you to pay your vow in due time. +\q2 Don’t wait until death to be released. +\q1 +\v 23 Before you make a vow, prepare yourself. +\q2 Don’t be like a man who tests the Lord. +\q1 +\v 24 Think about the wrath coming in the days of the end, +\q2 and the time of vengeance, when he turns away his face. +\q1 +\v 25 In the days of fullness remember the time of hunger. +\q2 Remember poverty and lack in the days of wealth. +\q1 +\v 26 From morning until evening, the time changes. +\q2 All things are speedy before the Lord. +\q1 +\v 27 A wise man is cautious in everything. +\q2 In days of sinning, he will beware of offense.\f + \fr 18:27 \ft The remainder of this verse is omitted by the best authorities. \f* +\q1 +\v 28 Every man of understanding knows wisdom. +\q2 He will give thanks to him who found her. +\q1 +\v 29 They who were of understanding in sayings also became wise themselves, +\q2 and poured out apt proverbs. +\b +\q1 +\v 30 Don’t go after your lusts. +\q2 Restrain your appetites. +\q1 +\v 31 If you give fully to your soul the delight of her desire, +\q2 she will make you\f + \fr 18:31 \ft Or, \fqa a rejoicing to \f* the laughing stock of your enemies. +\q1 +\v 32 Don’t make merry in much luxury, +\q2 and don’t be tied to its expense. +\q1 +\v 33 Don’t be made a beggar by banqueting with borrowed money +\q2 when you have nothing in your purse.\f + \fr 18:33 \ft The remainder of this verse is omitted by the best authorities. \f* +\b +\c 19 +\q1 +\v 1 A worker who is a drunkard will not become rich. +\q2 He who despises small things will fall little by little. +\q1 +\v 2 Wine and women will make men of understanding go astray. +\q2 He who joins with prostitutes is reckless. +\q1 +\v 3 Decay and worms will have him as their heritage. +\q2 A reckless soul will be taken away. +\b +\q1 +\v 4 He who is hasty to trust is shallow-hearted. +\q2 He who sins offends against his own soul. +\q1 +\v 5 He who rejoices in wickedness will be condemned.\f + \fr 19:5 \ft The remainder of this verse is omitted by the best authorities. \f* +\q1 +\v 6 \f + \fr 19:6 \ft The preceding part of this verse is omitted by the best authorities. \f*He who hates gossip has less wickedness. +\q1 +\v 7 Never repeat what is told you, +\q2 and you won’t lose anything. +\q1 +\v 8 Whether it is of friend or foe, don’t tell it. +\q2 Unless it is a sin to you, don’t reveal it. +\q1 +\v 9 For if he has heard you and observed you, +\q2 when the time comes, he will hate you. +\q1 +\v 10 Have you heard something? Let it die with you. +\q2 Be brave: it will not make you burst! +\q1 +\v 11 A fool will travail in pain with a word, +\q2 as a woman in labor with a child. +\q1 +\v 12 As an arrow that sticks in the flesh of the thigh, +\q2 so is gossip in a fool. +\b +\q1 +\v 13 Question a friend; it may be he didn’t do it. +\q2 If he did something, it may be that he may do it no more. +\q1 +\v 14 Question your neighbor; it may be he didn’t say it. +\q2 If he has said it, it may be that he may not say it again. +\q1 +\v 15 Question a friend; for many times there is slander. +\q2 Don’t trust every word. +\q1 +\v 16 There is one who slips, and not from the heart. +\q2 Who is he who hasn’t sinned with his tongue? +\q1 +\v 17 Reprove your neighbor before you threaten him; +\q2 and give place to the law of the Most High. +\v 18-19 \f + \fr 19:18-19 \ft Verses 18 and 19 are omitted by the best authorities.\f* +\b +\q1 +\v 20 All wisdom is the fear of the Lord. +\q2 In all wisdom is the doing of the law. +\v 21 \f + \fr 19:21 \ft The remainder of verse 20 and verse 21 are omitted by the best authorities. \f* +\q1 +\v 22 The knowledge of wickedness is not wisdom. +\q2 The prudence of sinners is not counsel. +\q1 +\v 23 There is a wickedness, and it is an abomination. +\q1 There is a fool lacking in wisdom. +\q1 +\v 24 Better is one who has little understanding, and fears God, +\q2 than one who has much intelligence and transgresses the law. +\q1 +\v 25 There is an exquisite subtlety, and it is unjust. +\q2 And there is one who perverts favor to gain a judgment.\f + \fr 19:25 \ft The remainder of this verse is omitted by the best authorities. \f* +\q1 +\v 26 There is one who does wickedly, who hangs down his head with mourning; +\q2 but inwardly he is full of deceit, +\q2 +\v 27 bowing down his face, and pretending to be deaf in one ear. +\q2 Where he isn’t known, he will take advantage of you. +\q1 +\v 28 And if for lack of power he is hindered from sinning, +\q2 if he finds opportunity, he will do mischief. +\q1 +\v 29 A man will be known by his appearance. +\q2 One who has understanding will be known by his face when you meet him. +\q1 +\v 30 A man’s attire, grinning laughter, +\q2 and the way he walks show what he is. +\b +\c 20 +\q1 +\v 1 There is a reproof that is not timely; +\q2 and there is a person who is wise enough to keep silent. +\q1 +\v 2 How good is it to reprove, rather than to be angry. +\q2 He who confesses will be kept back from harm. +\v 3 \f + \fr 20:3 \ft Verse 3 is omitted by the best authorities. \f* +\q1 +\v 4 As is the lust of a eunuch to deflower a virgin, +\q2 so is he who executes judgments with violence. +\q1 +\v 5 There is one who keeps silent and is found wise; +\q2 and there is one who is hated for his much talk. +\q1 +\v 6 There is one who keeps silent, for he has no answer to make; +\q2 And there is one who keeps silent, knowing when to speak. +\q1 +\v 7 A wise man will be silent until his time has come, +\q2 but the braggart and fool will miss his time. +\q1 +\v 8 He who uses many words will be abhorred. +\q2 He who takes authority for himself will be hated in it. +\b +\q1 +\v 9 There is a prosperity that a man finds in misfortunes; +\q2 and there is a gain that turns to loss. +\q1 +\v 10 There is a gift that will not profit you; +\q2 and there is a gift that pays back double. +\q1 +\v 11 There are losses because of glory; +\q2 and there is one who has lifted up his head from a low estate. +\q1 +\v 12 There is one who buys much for a little, +\q2 and pays for it again sevenfold. +\q1 +\v 13 He who is wise in words will make himself beloved; +\q2 but the pleasantries of fools will be wasted. +\q1 +\v 14 The gift of a fool will not profit you,\f + \fr 20:14 \ft A line of this verse is here omitted by the best authorities. \f* +\q2 for he looks for repayment many times instead of one. +\q1 +\v 15 He will give little and insult much. +\q2 He will open his mouth like a crier. +\q1 Today he will lend, and tomorrow he will ask for it back. +\q2 Such a one is a hateful man. +\q1 +\v 16 The fool will say, “I have no friend, +\q2 and I have no thanks for my good deeds. +\q2 Those who eat my bread have an evil tongue.” +\q1 +\v 17 How often, and of how many, will he be laughed to scorn!\f + \fr 20:17 \ft The latter part of verse 17 is omitted by the best authorities. \f* +\b +\q1 +\v 18 A slip on a pavement is better than a slip with the tongue. +\q2 So the fall of the wicked will come speedily. +\q1 +\v 19 A man without grace is a tale out of season. +\q2 It will be continually in the mouth of the ignorant. +\q1 +\v 20 A parable from a fool’s mouth will be rejected; +\q2 for he won’t tell it at the proper time. +\b +\q1 +\v 21 There is one who is hindered from sinning through lack. +\q2 When he rests, he will not be troubled. +\q1 +\v 22 There is one who destroys his soul through bashfulness. +\q2 By a foolish countenance, he will destroy it. +\q1 +\v 23 There is one who for bashfulness makes promises to his friend; +\q2 and he makes him his enemy for nothing. +\b +\q1 +\v 24 A lie is an ugly blot on a person. +\q2 It will be continually in the mouth of the ignorant. +\q1 +\v 25 A thief is better than a man who is continually lying, +\q2 but they both will inherit destruction. +\q1 +\v 26 The destination of a liar is dishonor. +\q2 His shame is with him continually. +\b +\q1 +\v 27 He who is wise in words will advance himself. +\q2 And one who is prudent will please great men. +\q1 +\v 28 He who tills his land will raise his harvest high. +\q2 He who pleases great men will get pardon for iniquity. +\q1 +\v 29 Favors and gifts blind the eyes of the wise, +\q2 and as a muzzle on the mouth, turn away reproofs. +\q1 +\v 30 Wisdom that is hidden, and treasure that is out of sight— +\q2 what profit is in either of them? +\q1 +\v 31 Better is a man who hides his folly +\q2 than a man who hides his wisdom. +\v 32 \f + \fr 20:32 \ft Verse 32 is omitted by the best authorities.\f* +\b +\c 21 +\q1 +\v 1 My son, have you sinned? +\q2 Do it no more; +\q2 and ask forgiveness for your past sins. +\q1 +\v 2 Flee from sin as from the face of a snake; +\q2 for if you go near, it will bite you. +\q1 Its teeth are like lion’s teeth, +\q2 slaying people’s souls. +\q1 +\v 3 All iniquity is as a two-edged sword. +\q2 Its stroke has no healing. +\b +\q1 +\v 4 Terror and violence will waste away riches. +\q2 So the house of an arrogant man will be laid waste. +\q1 +\v 5 Supplication from a poor man’s mouth reaches to the ears of\f + \fr 21:5 \ft Gr. \fqa him. \f* God, +\q2 and his judgment comes speedily. +\q1 +\v 6 One who hates reproof is in the path of the sinner. +\q2 He who fears the Lord will repent in his heart. +\q1 +\v 7 He who is mighty in tongue is known far away; +\q2 but the man of understanding knows when he slips. +\b +\q1 +\v 8 He who builds his house with other men’s money +\q2 is like one who gathers stones for his own tomb. +\q1 +\v 9 The congregation of wicked men is as a bundle of tow +\q2 with a flame of fire at the end of them. +\q1 +\v 10 The way of sinners is paved with stones; +\q2 and at the end of it is the pit of Hades. +\b +\q1 +\v 11 He who keeps the law becomes master of its intent. +\q2 The fulfilment of the fear of the Lord is wisdom. +\q1 +\v 12 He who is not clever will not be instructed. +\q2 There is a cleverness which makes bitterness abound. +\q1 +\v 13 The knowledge of a wise man will be made to abound as a flood, +\q2 and his counsel as a fountain of life. +\q1 +\v 14 The inward parts of a fool are like a broken vessel. +\q2 He will hold no knowledge. +\b +\q1 +\v 15 If a man of knowledge hears a wise word, +\q2 he will commend it and add to it. +\q1 The wanton man hears it, and it displeases him, +\q2 so he throws it away behind his back. +\q1 +\v 16 The chatter of a fool is like a burden in the way, +\q2 but grace will be found on the lips of the wise. +\q1 +\v 17 The utterance of the prudent man will be sought for in the congregation. +\q2 They will ponder his words in their heart. +\b +\q1 +\v 18 As a house that is destroyed, so is wisdom to a fool. +\q2 The knowledge of an unwise man is talk without sense.\f + \fr 21:18 \ft Gr. \fqa unexamined words. \f* +\q1 +\v 19 Instruction is as fetters on the feet of an unwise man, +\q2 and as manacles on the right hand. +\q1 +\v 20 A fool lifts up his voice with laughter, +\q2 but a clever man smiles quietly. +\q1 +\v 21 Instruction is to a prudent man as an ornament of gold, +\q2 and as a bracelet upon his right arm. +\b +\q1 +\v 22 The foot of a fool rushes into a house, +\q2 but a man of experience will be ashamed of entering. +\q1 +\v 23 A foolish man peers into the door of a house, +\q2 but a man who is instructed will stand outside. +\q1 +\v 24 It is rude for someone to listen at a door, +\q2 but a prudent person will be grieved with the disgrace. +\q1 +\v 25 The lips of strangers will be grieved at these things, +\q2 but the words of prudent men will be weighed in the balance. +\b +\q1 +\v 26 The heart of fools is in their mouth, +\q2 but the mouth of wise men is their heart. +\q1 +\v 27 When the ungodly curses an adversary, +\q2 he curses his own soul. +\q1 +\v 28 A whisperer defiles his own soul, +\q2 and will be hated wherever he travels. +\b +\c 22 +\q1 +\v 1 A slothful man is compared to a stone that is defiled. +\q2 Everyone will hiss at him in his disgrace. +\q1 +\v 2 A slothful man is compared to the filth of a dunghill. +\q2 Anyone who picks it up will shake it out of his hand. +\b +\q1 +\v 3 An undisciplined child is a disgrace to his father, +\q2 and a foolish daughter is born to his loss. +\q1 +\v 4 A prudent daughter will inherit a husband of her own. +\q2 She who brings shame is the grief of her father. +\q1 +\v 5 She who is arrogant brings shame on father and husband. +\q2 She will be despised by both of them. +\q1 +\v 6 Ill-timed conversation is like music in mourning, +\q2 but stripes and correction are wisdom in every season. +\b +\q1 +\v 7 He who teaches a fool is like one who glues potsherds together, +\q2 even like one who wakes a sleeper out of a deep sleep. +\q1 +\v 8 He who teaches a fool is as one who teaches a man who slumbers. +\q2 In the end he will say, “What is it?” +\v 9-10 \f + \fr 22:9-10 \ft Verses 9 and 10 are omitted by the best authorities. \f* +\q1 +\v 11 Weep for the dead, for he lacks light. +\q2 Weep for a fool, for he lacks understanding. +\q1 Weep more sweetly for the dead, because he has found rest, +\q2 but the life of the fool is worse than death. +\q1 +\v 12 Mourning for the dead lasts seven days, +\q2 but for a fool and an ungodly man, it lasts all the days of his life. +\b +\q1 +\v 13 Don’t talk much with a foolish man, +\q2 and don’t go to one who has no understanding. +\q1 Beware of him, lest you have trouble and be defiled in his onslaught. +\q2 Turn away from him, and you will find rest, +\q2 and you won’t be wearied in his madness. +\q1 +\v 14 What would be heavier than lead? +\q2 What is its name, but “Fool”? +\q1 +\v 15 Sand, salt, and a mass of iron is easier to bear +\q2 than a man without understanding. +\b +\q1 +\v 16 Timber girded and bound into a building will not be released with shaking. +\q2 So a heart established in due season on well advised counsel will not be afraid. +\q1 +\v 17 A heart settled upon a thoughtful understanding +\q2 is as an ornament of plaster on a polished wall. +\q1 +\v 18 Fences set on a high place will not stand against the wind; +\q2 so a fearful heart in the imagination of a fool will not stand against any fear. +\b +\q1 +\v 19 He who pricks the eye will make tears fall. +\q2 He who pricks the heart makes it show feeling. +\q1 +\v 20 Whoever casts a stone at birds scares them away. +\q2 He who insults a friend will dissolve friendship. +\q1 +\v 21 If you have drawn a sword against a friend, don’t despair, +\q2 for there may be a way back. +\q1 +\v 22 If you have opened your mouth against a friend, don’t be afraid, +\q2 for there may be reconciliation, +\q2 unless it is for insulting, arrogance, disclosing of a secret, or a treacherous blow— +\q2 for these things any friend will flee. +\b +\q1 +\v 23 Gain trust with your neighbor in his poverty, +\q2 that in his prosperity you may have gladness. +\q1 Stay steadfast to him in the time of his affliction, +\q2 that you may be heir with him in his inheritance.\f + \fr 22:23 \ft The remainder of this verse is omitted by the best authorities. \f* +\q1 +\v 24 Before fire is the vapor and smoke of a furnace, +\q2 so insults precede bloodshed. +\q1 +\v 25 I won’t be ashamed to shelter a friend. +\q2 I won’t hide myself from his face. +\q1 +\v 26 If any evil happens to me because of him, +\q2 everyone who hears it will beware of him. +\b +\q1 +\v 27 Who will set a watch over my mouth, +\q2 and a seal of shrewdness upon my lips, +\q2 that I may not fall from it, and that my tongue may not destroy me? +\c 23 +\q1 +\v 1 O Lord, Father and Master of my life, +\q2 don’t abandon me to their counsel. +\q2 Don’t let me fall because of them. +\q1 +\v 2 Who will set scourges over my thought, +\q2 and a discipline of wisdom over my heart, +\q2 that they spare me not for my errors, +\q2 and not overlook their sins? +\q1 +\v 3 Otherwise my errors might be multiplied, +\q2 and my sins abound, +\q2 I fall before my adversaries, +\q2 and my enemy rejoice over me.\f + \fr 23:3 \ft The remainder of this verse is omitted by the best authorities.\f* +\q1 +\v 4 O Lord, Father and God of my life, +\q2 don’t give me a haughty eyes,\f + \fr 23:4 \ft The remainder of this verse is omitted by the best authorities.\f* +\q2 +\v 5 and turn away evil desire from me.\f + \fr 23:5 \ft The remainder of this verse is omitted by the best authorities.\f* +\q1 +\v 6 Let neither gluttony nor lust overtake me. +\q2 Don’t give me over to a shameless mind. +\b +\q1 +\v 7 Listen, my children, to the discipline of the mouth. +\q2 He who keeps it will not be caught. +\q1 +\v 8 The sinner will be overpowered through his lips. +\q2 By them, the insulter and the arrogant will stumble. +\q1 +\v 9 Don’t accustom your mouth to an oath, +\q2 and don’t be accustomed to naming the Holy One, +\q1 +\v 10 for as a servant who is continually scourged will not lack bruises, +\q2 so he also who swears and continually utters the Name will not be cleansed from sin. +\q1 +\v 11 A man of many oaths will be filled with iniquity. +\q2 The scourge will not depart from his house. +\q1 If he offends, his sin will be upon him. +\q2 If he disregards it, he has sinned doubly. +\q1 If he has sworn falsely, he will not be justified, +\q2 for his house will be filled with calamities. +\b +\q1 +\v 12 There is a manner of speech that is clothed with death. +\q2 Let it not be found in the heritage of Jacob, +\q2 for all these things will be far from the godly, +\q2 and they will not wallow in sins. +\q1 +\v 13 Don’t accustom your mouth to gross rudeness, +\q2 for it involves sinful speech. +\q1 +\v 14 Remember your father and your mother, +\q2 for you sit in the midst of great men, +\q2 that you be not forgetful before them, +\q2 and become a fool by your bad habit; +\q1 so you may wish that you had not been born, +\q2 and curse the day of your birth. +\q1 +\v 15 A man who is accustomed to abusive language +\q2 won’t be corrected all the days of his life. +\b +\q1 +\v 16 Two sorts of people multiply sins, +\q2 and the third will bring wrath: +\q2 a hot passion, like a burning fire, will not be quenched until it is consumed; +\q2 a fornicator in the body of his flesh will never cease until he has burned out the fire. +\q1 +\v 17 All bread is sweet to a fornicator. +\q2 He will not cease until he dies. +\q1 +\v 18 A man who goes astray from his own marriage bed +\q2 says in his heart, “Who sees me? +\q1 Darkness is around me, and the walls hide me. +\q2 No one sees me. Of whom am I afraid? +\q2 The Most High will not remember my sins.” +\q1 +\v 19 The eyes of men are his terror. +\q2 He doesn’t know that the eyes of the Lord are ten thousand times brighter than the sun, +\q2 seeing all the ways of men, +\q2 and looking into secret places. +\q1 +\v 20 All things were known to him before they were created, +\q2 and also after they were completed. +\q1 +\v 21 This man will be punished in the streets of the city. +\q2 He will be seized where he least expects it. +\b +\q1 +\v 22 So also is a wife who leaves her husband, +\q2 and produces an heir by another man. +\q1 +\v 23 For first, she was disobedient in the law of the Most High. +\q2 Second, she trespassed against her own husband. +\q2 Third, she played the adulteress in fornication, +\q2 and had children by another man. +\q1 +\v 24 She shall be brought out into the congregation. +\q2 Her punishment will extend to her children. +\q1 +\v 25 Her children will not take root. +\q2 Her branches will bear no fruit. +\q1 +\v 26 She will leave her memory for a curse. +\q2 Her reproach won’t be blotted out. +\q1 +\v 27 And those who are left behind will know that there is nothing better than the fear of the Lord, +\q2 and nothing sweeter than to heed the commandments of the Lord. +\v 28 \f + \fr 23:28 \ft Verse 28 is omitted by the best authorities.\f* +\c 24 +\q1 +\v 1 Wisdom will praise her own soul, +\q2 and will proclaim her glory in the midst of her people. +\q1 +\v 2 She will open her mouth in the congregation of the Most High, +\q2 and proclaim her glory in the presence of his power. +\q1 +\v 3 “I came out of the mouth of the Most High, +\q2 and covered the earth as a mist. +\q1 +\v 4 I lived in high places, +\q2 and my throne is in the pillar of the cloud. +\q1 +\v 5 Alone I surrounded the circuit of heaven, +\q2 and walked in the depth of the abyss. +\q1 +\v 6 In the waves of the sea, and in all the earth, +\q2 and in every people and nation, I obtained a possession. +\q1 +\v 7 With all these I sought rest. +\q2 In whose inheritance shall I lodge? +\q1 +\v 8 Then the Creator of all things gave me a command. +\q2 He who created me made my tent to rest, +\q2 and said, ‘Let your dwelling be in Jacob, +\q2 and your inheritance in Israel.’ +\q1 +\v 9 He created me from the beginning, before the ages. +\q2 For all ages, I will not cease to exist. +\q1 +\v 10 In the holy tabernacle, I ministered before him. +\q2 So I was established in Zion. +\q1 +\v 11 In the beloved city, likewise he gave me rest. +\q2 In Jerusalem was my domain. +\q1 +\v 12 I took root in a people that was honored, +\q2 even in the portion of the Lord’s own inheritance. +\b +\q1 +\v 13 I was exalted like a cedar in Lebanon, +\q2 And like a cypress tree on the mountains of Hermon. +\q1 +\v 14 I was exalted like a palm tree on the sea shore, +\q2 like rose bushes in Jericho, +\q2 and like a fair olive tree in the plain. +\q2 I was exalted like a plane tree. +\q1 +\v 15 Like cinnamon and aspalathus, I have given a scent to perfumes. +\q2 Like choice myrrh, I spread abroad a pleasant fragrance, +\q2 like\f + \fr 24:15 \ft See Exodus 30:34. \f* galbanum, onycha, stacte, +\q2 and as the smell of frankincense in the tabernacle. +\q1 +\v 16 Like the terebinth, I stretched out my branches. +\q2 My branches are glorious and graceful. +\q1 +\v 17 Like the vine, I put forth grace. +\q2 My flowers are the fruit of glory and riches. +\v 18 \f + \fr 24:18 \ft Verse 18 is omitted by the best authorities.\f* +\b +\q1 +\v 19 “Come to me, all you who desire me, +\q2 and be filled with my fruits. +\q1 +\v 20 For my memory is sweeter than honey, +\q2 and my inheritance than the honeycomb. +\q1 +\v 21 Those who eat me will be hungry for more. +\q2 Those who drink me will be thirsty for more. +\q1 +\v 22 He who obeys me will not be ashamed. +\q2 Those who work with me will not sin.” +\b +\q1 +\v 23 All these things are the book of the covenant of the Most High God, +\q2 the law which Moses commanded us for an inheritance for the assemblies of Jacob. +\v 24 \f + \fr 24:24 \ft Verse 24 is omitted by the best authorities.\f* +\q1 +\v 25 It is he who makes wisdom abundant, as Pishon, +\q2 and as Tigris in the days of first fruits. +\q1 +\v 26 He makes understanding full as the Euphrates, +\q2 and as the Jordan in the days of harvest, +\q1 +\v 27 who makes instruction shine forth as the light, +\q2 as Gihon in the days of vintage. +\q1 +\v 28 The first man didn’t know her perfectly. +\q2 In like manner, the last has not explored her. +\q1 +\v 29 For her thoughts are filled from the sea, +\q2 and her counsels from the great deep. +\b +\q1 +\v 30 I came out as a canal stream from a river, +\q2 and as an irrigation ditch into a garden. +\q1 +\v 31 I said, “I will water my garden, +\q2 and will drench my garden bed.” +\q1 Behold, my stream became a river, +\q2 and my river became a sea. +\q1 +\v 32 I will yet bring instruction to light as the morning, +\q2 and will make these things clear from far away. +\q1 +\v 33 I will continue to pour out teaching like prophecy, +\q2 and leave it to all generations. +\q1 +\v 34 See that I have not labored for myself only, +\q2 but for all those who diligently seek wisdom. +\b +\c 25 +\q1 +\v 1 I enjoy three things, +\q2 and they are beautiful before the Lord and men: +\q2 the agreement of kindred, +\q2 the friendship of neighbors, +\q2 and a woman and her husband who walk together in agreement. +\q1 +\v 2 But my soul hates three sorts of people, +\q2 and I am greatly offended at their life: +\q2 a poor man who is arrogant, +\q2 a rich man who is a liar, +\q2 and an old fool who is an adulterer. +\b +\q1 +\v 3 If you gathered nothing in your youth, +\q2 how could you find anything in your old age? +\q1 +\v 4 How beautiful a thing is judgment in the gray-haired, +\q2 and for elders to know good counsel! +\q1 +\v 5 How beautiful is the wisdom of old men, +\q2 and understanding and counsel to men who are in honor! +\q1 +\v 6 Much experience is the crown of the aged. +\q2 Their glory is the fear of the Lord. +\b +\q1 +\v 7 There are nine things that I have thought of, and in my heart counted happy, +\q2 and the tenth I will utter with my tongue: +\q2 a man who has joy with his children, +\q2 and a man who lives and sees the fall of his enemies. +\q1 +\v 8 Happy is he who dwells with a wife of understanding, +\q2 he who has not slipped with his tongue, +\q2 and he who has not served a man who is unworthy of him. +\q1 +\v 9 Happy is he who has found prudence, +\q2 and he who speaks in the ears of those who listen. +\q1 +\v 10 How great is he who has found wisdom! +\q2 Yet there is none greater than one who fears the Lord. +\q1 +\v 11 The fear of the Lord surpasses all things. +\q2 To whom shall he who holds it be likened? +\v 12 \f + \fr 25:12 \ft Verse 12 is omitted by the best authorities.\f* +\b +\q1 +\v 13 Any wound but a wound of the heart! +\q2 Any wickedness but the wickedness of a woman! +\q1 +\v 14 Any calamity but a calamity from those who hate me! +\q2 Any vengeance but the vengeance of enemies! +\q1 +\v 15 There is no venom worse than a snake’s venom. +\q2 There is no wrath worse than an enemy’s wrath. +\b +\q1 +\v 16 I would rather dwell with a lion and a dragon +\q2 than keep house with a wicked woman. +\q1 +\v 17 The wickedness of a woman changes her appearance, +\q2 and darkens her countenance like that of a bear. +\q1 +\v 18 Her husband will sit among his neighbors, +\q2 and when he hears it, he sighs bitterly. +\q1 +\v 19 All malice is small compared to the malice of a woman. +\q2 Let the portion of a sinner fall on her. +\q1 +\v 20 As walking up a sandy hill is to the feet of the aged, +\q2 so is a wife full of words to a quiet man. +\q1 +\v 21 Don’t be ensnared by a woman’s beauty. +\q2 Don’t desire a woman for her beauty. +\q1 +\v 22 There is anger, impudence, and great reproach +\q2 if a woman supports her husband. +\q1 +\v 23 A wicked woman is abasement of heart, +\q2 sadness of countenance, and a wounded heart. +\q1 A woman who won’t make her husband happy +\q2 is like hands that hang down, and weak knees. +\q1 +\v 24 The beginning of sin came from a woman. +\q2 Because of her, we all die. +\q1 +\v 25 Don’t give water an outlet, +\q2 and don’t give a wicked woman freedom of speech. +\q1 +\v 26 If she doesn’t go as you direct, +\q2 cut her away from your flesh.\f + \fr 25:26 \ft The remainder of this verse is omitted by the best authorities.\f* +\b +\c 26 +\q1 +\v 1 Happy is the husband of a good wife. +\q2 The number of his days will be doubled. +\q1 +\v 2 A faithful wife gives joy to her husband. +\q2 He will fulfill his years in peace. +\q1 +\v 3 A good wife is a great gift. +\q2 She will be given to those who fear the Lord. +\q1 +\v 4 Whether a man is rich or poor, +\q2 a good heart makes a cheerful face at all times. +\b +\q1 +\v 5 Of three things my heart was afraid, +\q2 and concerning the fourth\f + \fr 26:5 \ft Gr. \fqa countenance. \f* kind I made supplication: +\q2 The slander of a city, the assembly of a mob, and a false accusation. +\q2 All these are more grievous than death. +\q1 +\v 6 A grief of heart and sorrow is a woman who is jealous of another woman. +\q2 Her tongue-lashing makes it known to all. +\q1 +\v 7 A wicked woman is like a chafing yoke. +\q2 He who takes hold of her is like one who grasps a scorpion. +\q1 +\v 8 A drunken woman causes great wrath. +\q2 She will not cover her own shame. +\q1 +\v 9 The fornication of a woman is in the lifting up of her eyes; +\q2 it will be known by her eyelids. +\q1 +\v 10 Keep strict watch on a headstrong daughter, +\q2 lest she find liberty for herself, and use it. +\q1 +\v 11 Watch out for an impudent eye, +\q2 and don’t be surprised if it sins against you. +\q1 +\v 12 She will open her mouth like a thirsty traveller, +\q2 and drink from every water that is near. +\q1 She will sit down at every post, +\q2 and open her quiver to any arrow. +\b +\q1 +\v 13 The grace of a wife will delight her husband. +\q2 Her knowledge will strengthen\f + \fr 26:13 \ft or, fatten\f* his bones. +\q1 +\v 14 A silent woman is a gift of the Lord. +\q2 There is nothing worth so much as a well-instructed soul. +\q1 +\v 15 A modest woman is grace upon grace. +\q2 There are no scales that can weigh the value of a self-controlled soul. +\q1 +\v 16 As the sun when it arises in the highest places of the Lord, +\q2 so is the beauty of a good wife in her well-organized home. +\q1 +\v 17 As the lamp that shines upon the holy lampstand, +\q2 so is the beauty of the face on a well-proportioned body. +\q1 +\v 18 As the golden pillars are upon a base of silver, +\q2 so are beautiful feet with the breasts of one who is steadfast. +\v 19-27 \f + \fr 26:19-27 \ft Verses 19-27 are omitted by the best authorities. \f* +\b +\q1 +\v 28 For two things my heart is grieved, +\q2 and for the third anger comes upon me: +\q2 a warrior who suffers for poverty, +\q2 men of understanding who are counted as garbage, +\q2 and one who turns back from righteousness to sin— +\q2 the Lord will prepare him for the sword! +\b +\q1 +\v 29 It is difficult for a merchant to keep himself from wrong doing, +\q2 and for a retailer to be acquitted of sin. +\c 27 +\q1 +\v 1 Many have sinned for profit. +\q2 He who seeks to multiply wealth will turn his eye away. +\q1 +\v 2 As a nail will stick fast between the joinings of stones, +\q2 so sin will thrust itself in between buying and selling. +\q1 +\v 3 Unless a person holds on diligently to the fear of the Lord, +\q2 his house will be overthrown quickly. +\b +\q1 +\v 4 In the shaking of a sieve, the refuse remains, +\q2 so does the filth of man in his thoughts. +\q1 +\v 5 The furnace tests the potter’s vessels; +\q2 so the test of a person is in his thoughts. +\q1 +\v 6 The fruit of a tree discloses its cultivation, +\q2 so is the utterance of the thought of a person’s heart. +\q1 +\v 7 Praise no man before you hear his thoughts, +\q2 for this is how people are tested. +\b +\q1 +\v 8 If you follow righteousness, you will obtain it, +\q1 and put it on like a long robe of glory. +\q1 +\v 9 Birds will return to their own kind, +\q2 so truth will return to those who practice it. +\q1 +\v 10 The lion lies in wait for prey. +\q2 So does sin for those who do evil. +\b +\q1 +\v 11 The discourse of a godly man is always wise, +\q2 but the fool changes like the moon. +\q1 +\v 12 Limit your time among people void of understanding, +\q2 but persevere among the thoughtful. +\q1 +\v 13 The talk of fools is offensive. +\q2 Their laughter is wantonly sinful. +\q1 +\v 14 Their talk with much swearing makes hair stand upright. +\q2 Their strife makes others plug their ears. +\q1 +\v 15 The strife of the proud leads to bloodshed. +\q2 Their abuse of each other is a grievous thing to hear. +\b +\q1 +\v 16 He who reveals secrets destroys trust, +\q2 and will not find a close friend. +\q1 +\v 17 Love a friend, and keep faith with him; +\q2 but if you reveal his secrets, +\q2 you shall not follow him; +\q1 +\v 18 for as a man has destroyed his enemy, +\q2 so you have destroyed the friendship of your neighbor. +\q1 +\v 19 As a bird which you have released out of your hand, +\q2 so you have let your neighbor go, and you will not catch him again. +\q1 +\v 20 Don’t pursue him, for he has gone far away, +\q2 and has escaped like a gazelle out of the snare. +\q1 +\v 21 For a wound may be bound up, and after abuse there may be reconciliation; +\q2 but he who reveals secrets is without hope. +\b +\q1 +\v 22 One who winks the eye contrives evil things; +\q2 and those who know him will keep their distance. +\q1 +\v 23 When you are present, he will speak sweetly, +\q2 and will admire your words; +\q2 but afterward he will twist his speech +\q2 and set a trap in your words. +\q1 +\v 24 I have hated many things, but nothing like him. +\q2 The Lord will hate him. +\b +\q1 +\v 25 One who casts a stone straight up casts it on his own head. +\q2 A deceitful blow opens wounds. +\q1 +\v 26 He who digs a pit will fall into it. +\q2 He who sets a snare will be caught in it. +\q1 +\v 27 He who does evil things, they will roll back upon him, +\q2 and he will not know where they came from. +\q1 +\v 28 Mockery and reproach are from the arrogant. +\q2 Vengeance lies in wait for them like a lion. +\q1 +\v 29 Those who rejoice at the fall of the godly will be caught in a snare. +\q2 Anguish will consume them before they die. +\b +\q1 +\v 30 Wrath and anger, these also are abominations. +\q2 A sinner will possess them. +\c 28 +\q1 +\v 1 He who takes vengeance will find vengeance from the Lord, +\q2 and he will surely make his sins firm. +\q1 +\v 2 Forgive your neighbor the hurt that he has done, +\q2 and then your sins will be pardoned when you pray. +\q1 +\v 3 Does anyone harbor anger against another +\q2 and expect healing from the Lord? +\q1 +\v 4 Upon a man like himself he has no mercy, +\q2 and does he make supplication for his own sins? +\q1 +\v 5 He himself, being flesh, nourishes wrath. +\q2 Who will make atonement for his sins? +\q1 +\v 6 Remember your last end, and stop enmity. +\q2 Remember corruption and death, and be true to the commandments. +\q1 +\v 7 Remember the commandments, and don’t be angry with your neighbor. +\q2 Remember the covenant of the Highest, and overlook ignorance. +\b +\q1 +\v 8 Abstain from strife, and you will diminish your sins, +\q2 for a passionate man will kindle strife. +\q1 +\v 9 A man who is a sinner will trouble friends +\q2 and sow discord among those who are at peace. +\q1 +\v 10 As is the fuel of the fire, so it will burn; +\q2 and as the stoutness of the strife is, so it will burn. +\q1 As is the strength of the man, so will be his wrath; +\q2 and as is his wealth, so he will exalt his anger. +\q1 +\v 11 A contention begun in haste kindles a fire; +\q2 and hasty fighting sheds blood. +\b +\q1 +\v 12 If you blow on a spark, it will burn; +\q2 and if you spit upon it, it will be quenched. +\q2 Both of these come out of your mouth. +\b +\q1 +\v 13 Curse the whisperer and double-tongued, +\q2 for he has destroyed many who were at peace. +\q1 +\v 14 A slanderer has shaken many, +\q2 and dispersed them from nation to nation. +\q1 It has pulled down strong cities +\q2 and overthrown the houses of great men. +\q1 +\v 15 A slanderer has cast out brave women +\q2 and deprived them of their labors. +\q1 +\v 16 He who listens to it will not find rest, +\q2 nor will he live quietly. +\q1 +\v 17 The stroke of a whip makes a mark in the flesh, +\q2 but the stroke of a tongue will break bones. +\q1 +\v 18 Many have fallen by the edge of the sword, +\q2 yet not so many as those who have fallen because of the tongue. +\q1 +\v 19 Happy is he who is sheltered from it, +\q2 who has not passed through its wrath, +\q2 who has not drawn its yoke, +\q2 and has not been bound with its bands. +\q1 +\v 20 For its yoke is a yoke of iron, +\q2 and its bands are bands of brass. +\q1 +\v 21 Its death is an evil death, +\q2 and Hades is better than it. +\q1 +\v 22 It will not have rule over godly men. +\q2 They will not be burned in its flame. +\q1 +\v 23 Those who forsake the Lord will fall into it. +\q2 It will burn among them, and won’t be quenched. +\q1 It will be sent against them like a lion. +\q2 It will destroy them like a leopard. +\q1 +\v 24 As you hedge your possession about with thorns, +\q2 and secure your silver and your gold, +\q1 +\v 25 so make a balance and a weight for your words, +\q2 and make a door and a bar for your mouth. +\q1 +\v 26 Take heed lest you slip with it, +\q2 lest you fall before one who lies in wait. +\b +\c 29 +\q1 +\v 1 He who shows mercy will lend to his neighbor. +\q2 He who strengthens him with his hand keeps the commandments. +\q1 +\v 2 Lend to your neighbor in time of his need. +\q2 Repay your neighbor on time. +\q1 +\v 3 Confirm your word, and keep faith with him; +\q2 and at all seasons you will find what you need. +\q1 +\v 4 Many have considered a loan to be a windfall, +\q2 and have given trouble to those who helped them. +\q1 +\v 5 Until he has received, he will kiss a man’s hands. +\q2 For his neighbor’s money he will speak submissively. +\q1 Then when payment is due, he will prolong the time, +\q2 return excuses, and complain about the season. +\q1 +\v 6 If he prevails, the creditor will hardly receive half; +\q2 and he will count it as a windfall. +\q1 If not, he has deprived him of his money, +\q2 and he has gotten him for an enemy without cause. +\q1 He will pay him with cursing and railing. +\q2 Instead of honor, he will pay him disgrace. +\q1 +\v 7 Many on account of fraud have turned away. +\q2 They are afraid of being defrauded for nothing. +\q1 +\v 8 However be patient with a man in poor estate. +\q2 Don’t keep him waiting for your alms. +\q1 +\v 9 Help a poor man for the commandment’s sake. +\q2 According to his need don’t send him empty away. +\q1 +\v 10 Lose your money for a brother and a friend. +\q2 Don’t let it rust under a stone and be lost. +\q1 +\v 11 Allocate your treasure according to the commandments of the Most High +\q2 and it will profit you more than gold. +\q1 +\v 12 Store up almsgiving in your store-chambers +\q2 and it will deliver you out of all affliction. +\q1 +\v 13 It will fight for you against your enemy +\q2 better than a mighty shield and a ponderous spear. +\b +\q1 +\v 14 A good man will be surety for his neighbor. +\q2 He who has lost shame will fail him. +\q1 +\v 15 Don’t forget the kindness of your guarantor, +\q2 for he has given his life for you. +\q1 +\v 16 A sinner will waste the property of his guarantor. +\q2 +\v 17 He who is thankless will fail him who delivered him. +\q1 +\v 18 Being surety has undone many who were prospering +\q2 and shaken them as a wave of the sea. +\q1 It has driven mighty men from their homes. +\q2 They wandered among foreign nations. +\q1 +\v 19 A sinner who falls into suretiship and undertakes contracts for work +\q2 will fall into lawsuits. +\q1 +\v 20 Help your neighbor according to your power, +\q2 and be careful not to fall yourself. +\b +\q1 +\v 21 The essentials of life are water, bread, +\q2 a garment, and a house for privacy. +\q1 +\v 22 Better is the life of a poor man under a shelter of logs +\q2 than sumptuous fare in another man’s house. +\q1 +\v 23 With little or with much, be well satisfied.\f + \fr 29:23 \ft The remainder of this verse is omitted by the best authorities. \f* +\q1 +\v 24 It is a miserable life to go from house to house. +\q2 Where you are a guest, you dare not open your mouth. +\q1 +\v 25 You will entertain, serve drinks, and have no thanks. +\q2 In addition to this, you will hear bitter words. +\q1 +\v 26 “Come here, you sojourner, set a table, +\q2 and if you have anything in your hand, feed me with it.” +\q1 +\v 27 “Leave, you sojourner, for an honored guest is here. +\q2 My brother has come to be my guest. I need my house.” +\q1 +\v 28 These things are grievous to a man of understanding: +\q2 The scolding about lodging and the insults of creditors. +\b +\c 30 +\q1 +\v 1 He who loves his son will continue to lay stripes upon him, +\q2 that he may have joy from him in the end. +\q1 +\v 2 He who chastises his son will have profit from him, +\q2 and will brag about him among his acquaintances. +\q1 +\v 3 He who teaches his son will provoke his enemy to jealousy. +\q2 Before friends, he will rejoice in him. +\q1 +\v 4 His father dies, and is as though he had not died; +\q2 for he has left one behind him like himself. +\q1 +\v 5 In his life, he saw his son and rejoiced. +\q2 When he died, it was without regret. +\q1 +\v 6 He left behind him an avenger against his enemies, +\q2 and one to repay kindness to his friends. +\b +\q1 +\v 7 He who makes too much of his son will bind up his wounds. +\q2 His heart will be troubled at every cry. +\q1 +\v 8 An unbroken horse becomes stubborn. +\q2 An unrestrained son becomes headstrong. +\q1 +\v 9 Pamper your child, and he will make you afraid. +\q2 Play with him, and he will grieve you. +\q1 +\v 10 Don’t laugh with him, lest you have sorrow with him, +\q2 and you gnash your teeth in the end. +\q1 +\v 11 Give him no liberty in his youth, +\q2 and don’t ignore his follies.\f + \fr 30:11 \ft This line and the previous two lines are absent from some older MSS.\f* +\q1 +\v 12 \f + \fr 30:12 \ft These three lines are absent from the oldest MSS.\f*Bow down his neck in his youth, +\q2 and beat him on the sides while he is a child, +\q2 lest he become stubborn, and be disobedient to you, +\q2 and there be sorrow to your soul.\f + \fr 30:12 \ft These three lines are absent from the oldest MSS.\f* +\q1 +\v 13 Chastise your son, and give him work, +\q2 lest his shameless behavior be an offense to you. +\b +\q1 +\v 14 Better is a poor man who is healthy and fit, +\q2 than a rich man who is afflicted in his body. +\q1 +\v 15 Health and fitness are better than all gold, +\q2 and a strong body better than wealth without measure. +\q1 +\v 16 There is no wealth better than health of body. +\q2 There is no gladness above the joy of the heart. +\q1 +\v 17 Death is better than a bitter life, +\q2 and eternal rest than a continual sickness. +\b +\q1 +\v 18 Good things poured out upon a mouth that is closed +\q2 are like food offerings laid upon a grave. +\q1 +\v 19 What does an offering profit an idol? +\q2 For it can’t eat or smell. +\q1 So is he who is punished by the Lord, +\q2 +\v 20 seeing with his eyes and groaning, +\q2 like a eunuch embracing a virgin and groaning. +\b +\q1 +\v 21 Don’t give your soul to sorrow. +\q2 Don’t afflict yourself deliberately. +\q1 +\v 22 Gladness of heart is the life of a man. +\q2 Cheerfulness of a man lengthens his days. +\q1 +\v 23 Love your own soul, and comfort your heart. +\q2 Remove sorrow far from you, +\q2 for sorrow has destroyed many, +\q2 and there is no profit in it. +\q1 +\v 24 Envy and wrath shorten life. +\q2 Anxiety brings old age before its time. +\q1 +\v 25 Those who are cheerful and merry +\q2 will benefit from their food. +\c 31 +\q1 +\v 1 Wakefulness that comes from riches consumes the flesh, +\q2 and anxiety about it takes away sleep. +\q1 +\v 2 Wakeful anxiety will crave slumber. +\q2 In a severe disease, sleep will be broken. +\b +\q1 +\v 3 A rich man toils in gathering money together. +\q2 When he rests, he is filled with his good things. +\q1 +\v 4 A poor man toils in lack of substance. +\q2 When he rests, he becomes needy. +\q1 +\v 5 He who loves gold won’t be justified. +\q2 He who follows destruction will himself have his fill of it. +\q1 +\v 6 Many have been given over to ruin for the sake of gold. +\q2 Their destruction meets them face to face. +\q1 +\v 7 It is a stumbling block to those who sacrifice to it. +\q2 Every fool will be taken by it. +\q1 +\v 8 Blessed is the rich person who is found blameless, +\q2 and who doesn’t go after gold. +\q1 +\v 9 Who is he, that we may call him blessed? +\q2 For he has done wonderful things among his people. +\q1 +\v 10 Who has been tried by it, and found perfect? +\q2 Then let him boast. +\q1 Who has had the power to transgress, and has not transgressed? +\q2 And to do evil, and has not done it? +\q1 +\v 11 His prosperity will be made sure. +\q2 The congregation will proclaim his alms. +\b +\q1 +\v 12 Do you sit at a great table? Don’t be greedy there. +\q2 Don’t say, “There is a lot of food on it!” +\q1 +\v 13 Remember that a greedy eye is a wicked thing. +\q2 What has been created more greedy than an eye? +\q2 Therefore it sheds tears from every face. +\q1 +\v 14 Don’t stretch your hand wherever it looks. +\q2 Don’t thrust yourself with it into the dish. +\q1 +\v 15 Consider your neighbor’s feelings by your own. +\q2 Be discreet in every point. +\q1 +\v 16 Eat like a human being those things which are set before you. +\q2 Don’t eat greedily, lest you be hated. +\q1 +\v 17 Be first to stop for manners’ sake. +\q2 Don’t be insatiable, lest you offend. +\q1 +\v 18 And if you sit among many, +\q2 Don’t reach out your hand before them. +\b +\q1 +\v 19 How sufficient to a well-mannered man is a very little. +\q2 He doesn’t breathe heavily in his bed. +\q1 +\v 20 Healthy sleep comes from moderate eating. +\q2 He rises early, and his wits are with him. +\q1 The pain of wakefulness, colic, +\q2 and griping are with an insatiable man. +\q1 +\v 21 And if you have been forced to eat, +\q2 rise up in the middle of it, and you shall have rest. +\q1 +\v 22 Hear me, my son, and don’t despise me, +\q2 and in the end you will appreciate my words. +\q1 In all your works be skillful, +\q2 and no disease will come to you. +\b +\q1 +\v 23 People bless him who is liberal with his food. +\q2 The testimony of his excellence will be believed. +\q1 +\v 24 The city will murmur at him who is a stingy with his food. +\q2 The testimony of his stinginess will be accurate. +\b +\q1 +\v 25 Don’t show yourself valiant in wine, +\q2 for wine has destroyed many. +\q1 +\v 26 The furnace tests the temper of steel by dipping; +\q2 so does wine test hearts in the quarreling of the proud. +\q1 +\v 27 Wine is as good as life to men, +\q2 if you drink it in moderation. +\q1 What life is there to a man who is without wine? +\q2 It has been created to make men glad. +\q1 +\v 28 Wine drunk in season and in moderation +\q2 is joy of heart and gladness of soul: +\q1 +\v 29 Wine drunk excessively is bitterness of soul, +\q2 with provocation and conflict. +\q1 +\v 30 Drunkenness increases the rage of a fool to his hurt. +\q2 It diminishes strength and adds wounds. +\b +\q1 +\v 31 Don’t rebuke your neighbor at a banquet of wine. +\q2 Don’t despise him in his mirth. +\q1 Don’t speak a word of reproach to him. +\q2 Don’t distress him by making demands of him. +\c 32 +\q1 +\v 1 Have they made you ruler of a feast? +\q2 Don’t be lifted up. +\q2 Be among them as one of them. +\q2 Take care of them first, and then sit down. +\q1 +\v 2 And when you have done all your duties, take your place, +\q2 that you may be gladdened on their account, +\q2 and receive a wreath for your good service. +\b +\q1 +\v 3 Speak, you who are older, for it’s your right, but with sound knowledge; +\q2 and don’t interrupt the music. +\q1 +\v 4 Don’t pour out talk where there is a performance of music. +\q2 Don’t display your wisdom at the wrong time. +\q1 +\v 5 As a ruby signet in a setting of gold, +\q2 so is a music concert at a wine banquet. +\q1 +\v 6 As an emerald signet in a work of gold, +\q2 so is musical melody with pleasant wine. +\b +\q1 +\v 7 Speak, young man, if you are obliged to, +\q2 but no more than twice, and only if asked. +\q1 +\v 8 Sum up your speech, many things in few words. +\q2 Be as one who knows and yet holds his tongue. +\q1 +\v 9 When among great men, don’t behave as their equal. +\q2 When another is speaking, don’t babble. +\b +\q1 +\v 10 Lightning speeds before thunder. +\q2 Approval goes before one who is modest. +\q1 +\v 11 Rise up in good time, and don’t be last. +\q2 Go home quickly and don’t loiter +\q1 +\v 12 Amuse yourself there and do what is in your heart. +\q2 Don’t sin by proud speech. +\q1 +\v 13 For these things bless your Maker, +\q2 who gives you to drink freely of his good things. +\b +\q1 +\v 14 He who fears the Lord will receive discipline. +\q2 Those who seek him early will find favor. +\q1 +\v 15 He who seeks the law shall be filled with it, +\q2 but the hypocrite will stumble at it. +\q1 +\v 16 Those who fear the Lord will find true judgment, +\q2 and will kindle righteous acts like a light. +\q1 +\v 17 A sinful man shuns reproof, +\q2 and will find a judgment according to his will. +\b +\q1 +\v 18 A sensible person won’t neglect a thought. +\q2 An insolent and proud man won’t crouch in fear, +\q2 even after he has done a thing by himself without counsel. +\q1 +\v 19 Do nothing without counsel, +\q2 but when you have acted, don’t regret it. +\q1 +\v 20 Don’t go in a way of conflict. +\q2 Don’t stumble in stony places. +\q1 +\v 21 Don’t be overconfident on a smooth road. +\q2 +\v 22 Beware of your own children. +\q1 +\v 23 In every work guard your own soul, +\q2 for this is the keeping of the commandments. +\b +\q1 +\v 24 He who believes the law gives heed to the commandment. +\q2 He who trusts in the Lord will suffer no loss. +\c 33 +\q1 +\v 1 No evil will happen to him who fears the Lord, +\q2 but in trials once and again he will deliver him. +\q1 +\v 2 A wise man will not hate the law, +\q2 but he who is a hypocrite about it is like a boat in a storm. +\q1 +\v 3 A man of understanding will put his trust in the law. +\q2 And the law is faithful to him, as when one asks a divine oracle. +\b +\q1 +\v 4 Prepare your speech, and so you will be heard. +\q2 Bind up instruction, and make your answer. +\q1 +\v 5 The heart of a fool is like a cartwheel. +\q2 His thoughts are like a rolling axle. +\q1 +\v 6 A stallion horse is like a mocking friend. +\q2 He neighs under every one who sits upon him. +\b +\q1 +\v 7 Why does one day excel another, +\q2 when all the light of every day in the year is from the sun? +\q1 +\v 8 They were distinguished by the Lord’s knowledge, +\q2 and he varied seasons and feasts. +\q1 +\v 9 Some of them he exalted and hallowed, +\q2 and some of them he has made ordinary days. +\q1 +\v 10 And all men are from the ground. +\q2 Adam was created from dust. +\q1 +\v 11 In the abundance of his knowledge the Lord distinguished them, +\q2 and made their ways different. +\q1 +\v 12 Some of them he blessed and exalted, +\q2 and some of them he made holy and brought near to himself. +\q1 Some of them he cursed and brought low, +\q2 and overthrew them from their place. +\q1 +\v 13 As the clay of the potter in his hand, +\q2 all his ways are according to his good pleasure, +\q1 so men are in the hand of him who made them, +\q2 to give to them according to his judgment. +\b +\q1 +\v 14 Good is the opposite of evil, +\q2 and life is the opposite of death; +\q2 so\f + \fr 33:14 \ft A line of this verse is here omitted by the best authorities. \f* the sinner is the opposite of the godly. +\q1 +\v 15 Look upon all the works of the Most High like this, +\q2 they come in pairs, one against another. +\b +\q1 +\v 16 I was the last on watch, +\q2 like one who gleans after the grape gatherers. +\q1 +\v 17 By the Lord’s blessing I arrived before them, +\q2 and filled my winepress like one who gathers grapes. +\q1 +\v 18 Consider that I labored not for myself alone, +\q2 but for all those who seek instruction. +\q1 +\v 19 Hear me, you great men of the people, +\q2 and listen with your ears, you rulers of the congregation. +\b +\q1 +\v 20 To son and wife, to brother and friend, +\q2 don’t give power over yourself while you live, +\q2 and don’t give your goods to another, +\q2 lest you regret it and must ask for them. +\q1 +\v 21 While you still live and breath is in you, +\q2 don’t give yourself over to anybody. +\q1 +\v 22 For it is better that your children should ask from you +\q2 than that you should look to the hand of your children. +\q1 +\v 23 Excel in all your works. +\q2 Don’t bring a stain on your honor. +\q1 +\v 24 In the day that you end the days of your life, +\q2 in the time of death, distribute your inheritance. +\b +\q1 +\v 25 Fodder, a stick, and burdens are for a donkey. +\q2 Bread, discipline, and work are for a servant. +\q1 +\v 26 Set your slave to work, and you will find rest. +\q2 Leave his hands idle, and he will seek liberty. +\q1 +\v 27 Yoke and whip will bow the neck. +\q2 For an evil slave there are racks and tortures. +\q1 +\v 28 Send him to labor, that he not be idle, +\q2 for idleness teaches much mischief. +\q1 +\v 29 Set him to work, as is fit for him. +\q2 If he doesn’t obey, make his fetters heavy. +\q1 +\v 30 Don’t be excessive toward any. +\q2 Do nothing unjust. +\b +\q1 +\v 31 If you have a slave, treat him like yourself, +\q2 because you have bought him with blood. +\q1 +\v 32 If you have a slave, treat him like yourself. +\q2 For like your own soul, you will need him. +\q1 If you treat him ill, and he departs and runs away, +\q2 +\v 33 which way will you go to seek him? +\b +\c 34 +\q1 +\v 1 Vain and false hopes are for a man void of understanding. +\q2 Dreams give wings to fools. +\q1 +\v 2 As one who grasps at a shadow and follows after the wind, +\q2 so is he who sets his mind on dreams. +\q1 +\v 3 The vision of dreams is a reflection, +\q2 the likeness of a face near a face. +\q1 +\v 4 From an unclean thing what can be cleansed? +\q2 From that which is false what can be true? +\q1 +\v 5 Divinations, and soothsayings, and dreams, are vain. +\q2 The heart has fantasies like a woman in labor. +\q1 +\v 6 If they are not sent in a visitation from the Most High, +\q2 don’t give your heart to them. +\q1 +\v 7 For dreams have led many astray. +\q2 They have failed by putting their hope in them. +\q1 +\v 8 Without lying the law will be fulfilled. +\q2 Wisdom is complete in a faithful mouth. +\b +\q1 +\v 9 A well-instructed man knows many things. +\q2 He who has much experience will declare understanding. +\q1 +\v 10 He who has no experience knows few things. +\q2 But he who has traveled increases cleverness. +\q1 +\v 11 I have seen many things in my travels. +\q2 My understanding is more than my words. +\q1 +\v 12 I was often in danger even to death. +\q2 I was preserved because of these experiences. +\q1 +\v 13 The spirit of those who fear the Lord will live, +\q2 for their hope is in him who saves them. +\q1 +\v 14 Whoever fears the Lord won’t be afraid, and won’t be a coward, +\q2 for he is his hope. +\q1 +\v 15 Blessed is the soul of him who fears the Lord. +\q2 To whom does he give heed? Who is his support? +\q1 +\v 16 The eyes of the Lord are on those who love him, +\q2 a mighty protection and strong support, +\q2 a cover from the hot blast, a shade from the noonday sun, +\q2 a guard from stumbling, and a help from falling. +\q1 +\v 17 He raises up the soul, and enlightens the eyes. +\q2 He gives health, life, and blessing. +\b +\q1 +\v 18 He who sacrifices a thing wrongfully gotten, his offering is made in mockery. +\q2 The mockeries of wicked men are not acceptable. +\q1 +\v 19 The Most High has no pleasure in the offerings of the ungodly, +\q2 Neither is he pacified for sins by the multitude of sacrifices. +\q1 +\v 20 Like one who kills a son before his father’s eyes +\q2 is he who brings a sacrifice from the goods of the poor. +\q1 +\v 21 The bread of the needy is the life of the poor. +\q2 He who deprives him of it is a man of blood. +\q1 +\v 22 Like one who murders his neighbor is he who takes away his living. +\q2 Like a shedder of blood is he who deprives a hireling of his hire. +\b +\q1 +\v 23 When one builds, and another pulls down, +\q2 what profit do they have but toil? +\q1 +\v 24 When one prays, and another curses, +\q2 whose voice will the Lord listen to? +\q1 +\v 25 He who washes himself after touching a dead body, and touches it again, +\q2 what does he gain by his washing? +\q1 +\v 26 Even so a man fasting for his sins, +\q2 and going again, and doing the same, +\q2 who will listen to his prayer? +\q2 What profit does he have in his humiliation? +\b +\c 35 +\q1 +\v 1 He who keeps the law multiplies offerings. +\q2 He who heeds the commandments sacrifices a peace offering. +\q1 +\v 2 He who returns a kindness offers fine flour. +\q2 He who gives alms sacrifices a thank offering. +\q1 +\v 3 To depart from wickedness pleases the Lord. +\q2 To depart from unrighteousness is an atoning sacrifice. +\q1 +\v 4 See that you don’t appear in the presence of the Lord empty. +\q2 +\v 5 For all these things are done because of the commandment. +\q1 +\v 6 The offering of the righteous enriches the altar. +\q2 The sweet fragrance of it is before the Most High. +\q1 +\v 7 The sacrifice of a righteous man is acceptable. +\q2 It won’t be forgotten. +\q1 +\v 8 Glorify the Lord with generosity. +\q2 Don’t reduce the first fruits of your hands. +\q1 +\v 9 In every gift show a cheerful countenance, +\q1 And dedicate your tithe with gladness. +\q1 +\v 10 Give to the Most High according as he has given. +\q2 As your hand has found, give generously. +\q1 +\v 11 For the Lord repays, +\q2 and he will repay you sevenfold. +\b +\q1 +\v 12 Don’t plan to bribe him with gifts, for he will not receive them. +\q2 Don’t set your mind on an unrighteous sacrifice, +\q2 For the Lord is the judge, +\q2 and with him is no respect of persons. +\q1 +\v 13 He won’t accept any person against a poor man. +\q2 He will listen to the prayer of him who is wronged. +\q1 +\v 14 He will in no way despise the supplication of the fatherless +\q2 or the widow, when she pours out her tale. +\q1 +\v 15 Don’t the tears of the widow run down her cheek? +\q2 Isn’t her cry against him who has caused them to fall? +\q1 +\v 16 He who serves God according to his good pleasure will be accepted. +\q2 His supplication will reach to the clouds. +\q1 +\v 17 The prayer of the humble pierces the clouds. +\q2 until it comes near, he will not be comforted. +\q1 He won’t depart until the Most High visits +\q2 and he judges righteously and executes judgment. +\q1 +\v 18 And the Lord will not be slack, neither will he be patient toward them, +\q2 until he has crushed the loins of the unmerciful. +\q1 He will repay vengeance to the heathen +\q2 until he has taken away the multitude of the arrogant +\q2 and broken in pieces the sceptres of the unrighteous, +\q2 +\v 19 until he has rendered to every man according to his deeds, +\q2 and repaid the works of men according to their plans, +\q2 until he has judged the cause of his people, +\q2 and he will make them rejoice in his mercy. +\q1 +\v 20 Mercy is as welcome in the time of his affliction, +\q2 as clouds of rain in the time of drought. +\b +\c 36 +\q1 +\v 1 Have mercy upon us, O Lord the God of all, and look at us with favor; +\q2 +\v 2 and send your fear upon all the nations.\f + \fr 36:2 \ft The remainder of this verse is omitted by the best authorities. \f* +\q1 +\v 3 Lift up your hand against the foreign nations +\q2 and let them see your mighty power. +\q1 +\v 4 As you showed your holiness in us before them, +\q2 so be magnified in them before us. +\q1 +\v 5 Let them know you, as we also have known you, +\q2 that there is no God but only you, O God. +\q1 +\v 6 Show new signs, and work various wonders. +\q2 Glorify your hand and your right arm.\f + \fr 36:6 \ft The remainder of this verse is omitted by the best authorities. \f* +\q1 +\v 7 Raise up indignation and pour out wrath. +\q2 Take away the adversary and destroy the enemy. +\q1 +\v 8 Hasten the time and remember your oath. +\q2 Let them declare your mighty works. +\q1 +\v 9 Let him who escapes be devoured by raging fire. +\q2 May those who harm your people find destruction. +\q1 +\v 10 Crush the heads of the rulers of the enemies +\q2 who say, “There is no one but ourselves.” +\q1 +\v 11 Gather all the tribes of Jacob together, +\q2 and\f + \fr 36:11 \ft The ancient authorities read \fqa I took them for my inheritance: \ft but the Greek text is here very confused. \f* take them for your inheritance, as from the beginning. +\q1 +\v 12 O Lord, have mercy upon the people that is called by your name, +\q2 and upon Israel, whom you likened to a firstborn. +\q1 +\v 13 Have compassion upon the city of your sanctuary, +\q2 Jerusalem, the place of your rest. +\q1 +\v 14 Fill Zion. Exalt your oracles +\q2 and fill your people with your glory. +\q1 +\v 15 Give testimony to those who were your creatures in the beginning, +\q2 and fulfill the prophecies that have been spoken in your name. +\q1 +\v 16 Reward those who wait for you, +\q2 and men will put their trust in your prophets. +\q1 +\v 17 Listen, O Lord, to the prayer of your servants, +\q2 according to the blessing of Aaron concerning your people; +\q2 and all those who are on the earth will know +\q2 that you are the Lord, the\f + \fr 36:17 \ft Gr. \fqa God of the ages.\f* eternal God. +\b +\q1 +\v 18 The belly will eat any food, +\q2 but one food is better than another. +\q1 +\v 19 The mouth tastes meats taken in hunting, +\q2 so does an understanding heart detect false speech. +\q1 +\v 20 A contrary heart will cause heaviness. +\q2 A man of experience will pay him back. +\q1 +\v 21 A woman will receive any man, +\q2 but one daughter is better than another. +\q1 +\v 22 The beauty of a woman cheers the countenance. +\q2 A man desires nothing more. +\q1 +\v 23 If kindness and humility are on her tongue, +\q2 her husband is not like other sons of men. +\q1 +\v 24 He who gets a wife gets his richest treasure, +\q2 a help meet for him and a pillar of support. +\q1 +\v 25 Where no hedge is, the property will be plundered. +\q2 He who has no wife will mourn as he wanders. +\q1 +\v 26 For who would trust a nimble robber who skips from city to city? +\q2 Even so, who would trust a man who has no nest, and lodges wherever he finds himself at nightfall? +\b +\c 37 +\q1 +\v 1 Every friend will say, “I also am his friend”; +\q2 but there is a friend which is only a friend in name. +\q1 +\v 2 Isn’t there a grief in it even to death +\q2 when a companion and friend is turned into an enemy? +\q1 +\v 3 O wicked imagination, why were you formed +\q2 to cover the dry land with deceit? +\q1 +\v 4 There is a companion who rejoices in the gladness of a friend, +\q2 but in time of affliction will be against him. +\q1 +\v 5 There is a companion who for the belly’s sake labors with his friend, +\q2 yet in the face of battle will carry his buckler. +\q1 +\v 6 Don’t forget a friend in your soul. +\q2 Don’t be unmindful of him in your riches. +\b +\q1 +\v 7 Every counselor extols counsel, +\q2 but some give counsel in their own interest. +\q1 +\v 8 Let your soul beware of a counselor, +\q2 and know in advance what is his interest +\q2 (for he will take counsel for himself), +\q2 lest he cast the lot against you, +\q2 +\v 9 and say to you, “Your way is good.” +\q2 Then he will stand near you, to see what will happen to you. +\q1 +\v 10 Don’t take counsel with one who looks askance at you. +\q2 Hide your counsel from those who are jealous of you. +\q1 +\v 11 Don’t consult with a woman about her rival, +\q2 with a coward about war, +\q2 with a merchant about business, +\q2 with a buyer about selling, +\q2 with an envious man about thankfulness, +\q2 with an unmerciful man about kindliness, +\q2 with a sluggard about any kind of work, +\q2 with a hireling in your house about finishing his work, +\q2 or with an idle servant about much business. +\q2 Pay no attention to these in any matter of counsel. +\q1 +\v 12 But rather be continually with a godly man, +\q2 whom you know to be a keeper of the commandments, +\q2 who in his soul is as your own soul, +\q2 and who will grieve with you, if you fail. +\q1 +\v 13 Make the counsel of your heart stand, +\q2 for there is no one more faithful to you than it. +\q1 +\v 14 For a man’s soul is sometimes inclined to inform him +\q2 better than seven watchmen who sit on high on a watch-tower. +\q1 +\v 15 Above all this ask the Most High +\q2 that he may direct your way in truth. +\b +\q1 +\v 16 Let reason be the beginning of every work. +\q2 Let counsel go before every action. +\q1 +\v 17 As a token of the changing of the heart, +\q2 +\v 18 four kinds of things rise up: +\q2 good and evil, life and death. +\q2 That which rules over them continually is the tongue. +\q1 +\v 19 There is one who is clever and the instructor of many, +\q2 and yet is unprofitable to his own soul. +\q1 +\v 20 There is one who is subtle in words, and is hated. +\q2 He will be destitute of all food. +\q1 +\v 21 For grace was not given to him from the Lord, +\q2 because he is deprived of all wisdom. +\q1 +\v 22 There is one who is wise to his own soul; +\q2 and the fruits of his understanding are trustworthy in the mouth. +\q1 +\v 23 A wise man will instruct his own people. +\q2 The fruits of his understanding are trustworthy. +\q1 +\v 24 A wise man will be filled with blessing. +\q2 All those who see him will call him happy. +\q1 +\v 25 The life of a man is counted by days. +\q2 The days of Israel are innumerable. +\q1 +\v 26 The wise man will inherit confidence among his people. +\q2 His name will live forever. +\b +\q1 +\v 27 My son, test your soul in your life. +\q2 See what is evil for it, and don’t give in to it. +\q1 +\v 28 For not all things are profitable for all men. +\q2 Not every soul has pleasure in everything. +\q1 +\v 29 Don’t be insatiable in any luxury. +\q2 Don’t be greedy in the things that you eat. +\q1 +\v 30 For overeating brings disease, +\q2 and gluttony causes nausea. +\q1 +\v 31 Because of gluttony, many have perished, +\q2 but he who takes heed shall prolong his life. +\b +\c 38 +\q1 +\v 1 Honor a physician according to your need with the honors due to him, +\q2 for truly the Lord has created him. +\q1 +\v 2 For healing comes from the Most High, +\q2 and he shall receive a gift from the king. +\q1 +\v 3 The skill of the physician will lift up his head. +\q2 He will be admired in the sight of great men. +\q1 +\v 4 The Lord created medicines out of the earth. +\q2 A prudent man will not despise them. +\q1 +\v 5 Wasn’t water made sweet with wood, +\q3 that its power might be known? +\q1 +\v 6 He gave men skill +\q2 that he might be glorified in his marvelous works. +\q1 +\v 7 With them he heals +\q2 and takes away pain. +\q1 +\v 8 With these, the pharmacist makes a mixture. +\q2 God’s works won’t be brought to an end. +\q2 From him, peace is upon the face of the earth. +\b +\q1 +\v 9 My son, in your sickness don’t be negligent, +\q2 but pray to the Lord, and he will heal you. +\q1 +\v 10 Put away wrong doing, and direct your hands in righteousness. +\q2 Cleanse your heart from all sin. +\q1 +\v 11 Give a sweet savor and a memorial of fine flour, +\q2 and pour oil on your offering, according to your means. +\q1 +\v 12 Then give place to the physician, for truly the Lord has created him. +\q2 Don’t let him leave you, for you need him. +\q1 +\v 13 There is a time when recovery is in their hands. +\q2 +\v 14 For they also shall ask the Lord +\q2 to prosper them in diagnosis and in healing for the maintenance of life. +\q1 +\v 15 He who sins before his Maker, +\q2 let him fall into the hands of the physician. +\b +\q1 +\v 16 My son, let your tears fall over the dead, +\q2 and as one who suffers grievously, begin lamentation. +\q2 Wind up his body with due honor. +\q2 Don’t neglect his burial. +\q1 +\v 17 Make bitter weeping and make passionate wailing. +\q2 Let your mourning be according to his merit, +\q2 for one day or two, lest you be spoken evil of; +\q2 and so be comforted for your sorrow. +\q1 +\v 18 For from sorrow comes death. +\q2 Sorrow of heart saps one’s strength. +\q1 +\v 19 In calamity, sorrow also remains. +\q2 A poor man’s life is grievous to the heart. +\q1 +\v 20 Don’t give your heart to sorrow. +\q2 Put it away, remembering the end. +\q1 +\v 21 Don’t forget it, for there is no returning again. +\q2 You do him no good, and you would harm yourself. +\q1 +\v 22 Remember his end, for so also will yours be: +\q2 yesterday for him, and today for you. +\q1 +\v 23 When the dead is at rest, let his remembrance rest. +\q2 Be comforted for him when his spirit departs from him. +\b +\q1 +\v 24 The wisdom of the scribe comes by the opportunity of leisure. +\q2 He who has little business can become wise. +\q1 +\v 25 How could he become wise who holds the plow, +\q2 who glories in the shaft of the goad, +\q2 who drives oxen and is occupied in their labors, +\q2 and who mostly talks about bulls? +\q1 +\v 26 He will set his heart upon turning his furrows. +\q2 His lack of sleep is to give his heifers their fodder. +\q1 +\v 27 So is every craftsman and master artisan +\q2 who passes his time by night as by day, +\q2 those who cut engravings of signets. +\q1 His diligence is to make great variety. +\q2 He sets his heart to preserve likeness in his portraiture, +\q2 and is careful to finish his work. +\q1 +\v 28 So too is the smith sitting by the anvil +\q2 and considering the unwrought iron. +\q1 The smoke of the fire will waste his flesh. +\q2 He toils in the heat of the furnace. +\q1 The noise of the hammer deafens his ear. +\q2 His eyes are upon the pattern of the object. +\q1 He will set his heart upon perfecting his works. +\q2 He will be careful to adorn them perfectly. +\q1 +\v 29 So is the potter sitting at his work +\q2 and turning the wheel around with his feet, +\q2 who is always anxiously set at his work. +\q2 He produces his handiwork in quantity. +\q1 +\v 30 He will fashion the clay with his arm +\q2 and will bend its strength in front of his feet. +\q1 He will apply his heart to finish the glazing. +\q2 He will be careful to clean the kiln. +\b +\q1 +\v 31 All these put their trust in their hands. +\q2 Each becomes skillful in his own work. +\q1 +\v 32 Without these no city would be inhabited. +\q2 Men wouldn’t reside as foreigners or walk up and down there. +\q1 +\v 33 They won’t be sought for in the council of the people. +\q2 They won’t mount on high in the assembly. +\q2 They won’t sit on the seat of the judge. +\q2 They won’t understand the covenant of judgment. +\q2 Neither will they declare instruction and judgment. +\q2 They won’t be found where parables are. +\q1 +\v 34 But they will maintain the fabric of the age. +\q2 Their prayer is in the handiwork of their craft. +\b +\c 39 +\q1 +\v 1 Not so he who has applied his soul +\q2 and meditates in the law of the Most High. +\q1 He will seek out the wisdom of all the ancients +\q2 and will be occupied with prophecies. +\q1 +\v 2 He will keep the sayings of the men of renown +\q2 and will enter in amidst the subtleties of parables. +\q1 +\v 3 He will seek out the hidden meaning of proverbs +\q2 and be conversant in the dark sayings of parables. +\q1 +\v 4 He will serve among great men +\q2 and appear before him who rules. +\q1 He will travel through the land of foreign nations, +\q2 for he has learned what is good and evil among men. +\q1 +\v 5 He will apply his heart to return early to the Lord who made him, +\q2 and will make supplication before the Most High, +\q2 and will open his mouth in prayer, +\q2 and will ask for pardon for his sins. +\b +\q1 +\v 6 If the great Lord wills, +\q2 he will be filled with the spirit of understanding; +\q2 he will pour forth the words of his wisdom +\q2 and in prayer give thanks to the Lord. +\q1 +\v 7 He will direct his counsel and knowledge, +\q2 and he will meditate in his secrets. +\q1 +\v 8 He will show the instruction which he has been taught +\q2 and will glory in the law of the covenant of the Lord. +\q1 +\v 9 Many will commend his understanding. +\q2 So long as the world endures, it won’t be blotted out. +\q1 His memory won’t depart. +\q2 His name will live from generation to generation. +\q1 +\v 10 Nations will declare his wisdom. +\q2 The congregation will proclaim his praise. +\q1 +\v 11 If he continues, he will leave a greater name than a thousand. +\q2 If he finally rests, it is enough for him. +\b +\q1 +\v 12 Yet more I will utter, which I have thought about. +\q2 I am filled like the full moon. +\q1 +\v 13 Listen to me, you holy children, +\q2 and bud forth like a rose growing by a brook of water. +\q1 +\v 14 Give a sweet fragrance like frankincense. +\q2 Put forth flowers like a lily. +\q2 Scatter a sweet smell and sing a song of praise. +\q2 Bless the Lord for all his works! +\q1 +\v 15 Magnify his name +\q2 and give utterance to his praise +\q2 with the songs on your lips and with harps! +\q1 Say this when you utter his praise: +\b +\q1 +\v 16 All the works of the Lord are exceedingly good, +\q2 and every command will be done in its time. +\q1 +\v 17 No one can say, “What is this?” “Why is that?” +\q2 for at the proper time they will all be sought out. +\q1 At his word, the waters stood as a heap, +\q2 as did the reservoirs of water at the word of his mouth. +\q1 +\v 18 At his command all his good pleasure is fulfilled. +\q2 There is no one who can hinder his salvation. +\q1 +\v 19 The works of all flesh are before him. +\q2 It’s impossible to be hidden from his eyes. +\q1 +\v 20 He sees from everlasting to everlasting. +\q2 There is nothing too wonderful for him. +\q1 +\v 21 No one can say, “What is this?” “Why is that?” +\q2 for all things are created for their own uses. +\b +\q1 +\v 22 His blessing covered the dry land as a river +\q2 and saturated it as a flood. +\q1 +\v 23 As he has made the waters salty, +\q2 so the heathen will inherit his wrath. +\q1 +\v 24 His ways are plain to the holy. +\q2 They are stumbling blocks to the wicked. +\q1 +\v 25 Good things are created from the beginning for the good. +\q2 So are evil things for sinners. +\q1 +\v 26 The main things necessary for the life of man +\q2 are water, fire, iron, salt, +\q2 wheat flour, and honey, milk, +\q2 the blood of the grape, oil, and clothing. +\q1 +\v 27 All these things are for good to the godly, +\q2 but for sinners, they will be turned into evils. +\b +\q1 +\v 28 There are winds that are created for vengeance, +\q2 and in their fury they lay on their scourges heavily. +\q1 In the time of reckoning, they pour out their strength, +\q2 and will appease the wrath of him who made them. +\q1 +\v 29 Fire, hail, famine, and death— +\q2 all these are created for vengeance— +\q2 +\v 30 wild beasts’ teeth, scorpions, adders, +\q2 and a sword punishing the ungodly to destruction. +\q1 +\v 31 They will rejoice in his commandment, +\q2 and will be made ready upon earth when needed. +\q2 In their seasons, they won’t disobey his command. +\b +\q1 +\v 32 Therefore from the beginning I was convinced, +\q2 and I thought it through and left it in writing: +\q1 +\v 33 All the works of the Lord are good. +\q2 He will supply every need in its time. +\q1 +\v 34 No one can say, “This is worse than that,” +\q2 for they will all be well approved in their time. +\q1 +\v 35 Now with all your hearts and voices, sing praises +\q2 and bless the Lord’s name! +\b +\c 40 +\q1 +\v 1 Great travail is created for every man. +\q2 A heavy yoke is upon the sons of Adam, +\q2 from the day of their coming forth from their mother’s womb, +\q2 until the day for their burial in the mother of all things. +\q1 +\v 2 The expectation of things to come, and the day of death, +\q2 trouble their thoughts, and cause fear in their hearts. +\q1 +\v 3 From him who sits on a throne of glory, +\q2 even to him who is humbled in earth and ashes, +\q1 +\v 4 from him who wears purple and a crown, +\q2 even to him who is clothed in burlap, +\q1 +\v 5 there is wrath, jealousy, trouble, unrest, +\q2 fear of death, anger, and strife. +\q1 In the time of rest upon his bed, +\q2 his night sleep changes his knowledge. +\q1 +\v 6 He gets little or no rest, +\q2 and afterward in his sleep, as in a day of keeping watch, +\q2 he is troubled in the vision of his heart, +\q2 as one who has escaped from the front of battle. +\q1 +\v 7 In the very time of his deliverance, he awakens, +\q2 and marvels that the fear is nothing. +\b +\q1 +\v 8 To all creatures, human and animal, +\q2 and upon sinners sevenfold more, +\q2 +\v 9 come death, bloodshed, strife, sword, +\q2 calamities, famine, suffering, and plague. +\q1 +\v 10 All these things were created for the wicked, +\q2 and because of them the flood came. +\q1 +\v 11 All things that are of the earth turn to the earth again. +\q2 All things that are of the waters return into the sea. +\b +\q1 +\v 12 All bribery and injustice will be blotted out. +\q2 Good faith will stand forever. +\q1 +\v 13 The goods of the unjust will be dried up like a river, +\q2 and like a great thunder in rain will go off in noise. +\q1 +\v 14 In opening his hands, a man will be made glad; +\q2 so lawbreakers will utterly fail. +\q1 +\v 15 The children of the ungodly won’t grow many branches, +\q2 and are as unhealthy roots on a sheer rock. +\q1 +\v 16 The reeds by every water or river bank +\q2 will be plucked up before all grass. +\q1 +\v 17 Kindness is like a garden of blessings. +\q2 Almsgiving endures forever. +\b +\q1 +\v 18 The life of one who labors and is content will be made sweet. +\q2 He who finds a treasure is better than both. +\q1 +\v 19 Children and the building of a city establish a name. +\q2 A blameless wife is better than both. +\q1 +\v 20 Wine and music rejoice the heart. +\q2 The love of wisdom is better than both. +\q1 +\v 21 The pipe and the lute make pleasant melody. +\q2 A pleasant tongue is better than both. +\q1 +\v 22 Your eye desires grace and beauty, +\q2 but the green shoots of grain more than both. +\q1 +\v 23 A friend and a companion is always welcome, +\q2 and a wife with her husband is better than both. +\q1 +\v 24 Relatives and helpers are for a time of affliction, +\q2 but almsgiving rescues better than both. +\q1 +\v 25 Gold and silver will make the foot stand sure, +\q2 and counsel is esteemed better than both. +\q1 +\v 26 Riches and strength will lift up the heart. +\q2 The fear of the Lord is better than both. +\q1 There is nothing lacking in the fear of the Lord. +\q2 In it, there is no need to seek help. +\q1 +\v 27 The fear of the Lord is like a garden of blessing +\q2 and covers a man more than any glory. +\b +\q1 +\v 28 My son, don’t lead a beggar’s life. +\q2 It is better to die than to beg. +\q1 +\v 29 A man who looks to the table of another, +\q2 his life is not to be considered a life. +\q1 He will pollute his soul with another person’s food, +\q2 but a wise and well-instructed person will beware of that. +\q1 +\v 30 Begging will be sweet in the mouth of the shameless, +\q2 but it kindles a fire in his belly. +\b +\c 41 +\q1 +\v 1 O death, how bitter is the memory of you to a man who is at peace in his possessions, +\q2 to the man who has nothing to distract him and has prosperity in all things, +\q2 and who still has strength to enjoy food! +\q1 +\v 2 O death, your sentence is acceptable to a man who is needy and who fails in strength, +\q2 who is in extreme old age, is distracted about all things, +\q2 is perverse, and has lost patience! +\q1 +\v 3 Don’t be afraid of the sentence of death. +\q2 Remember those who have been before you and who come after. +\q1 This is the sentence from the Lord over all flesh. +\q2 +\v 4 And why do you refuse when it is the good pleasure of the Most High? +\q1 Whether life lasts ten, or a hundred, or a thousand years, +\q2 there is no inquiry about life in Hades.\f + \fr 41:4 \ft or, \fqa the place of the dead \ft or, \fqa Sheol\f* +\b +\q1 +\v 5 The children of sinners are abominable children +\q2 and they frequent the dwellings of the ungodly. +\q1 +\v 6 The inheritance of sinners’ children will perish +\q2 and with their posterity will be a perpetual disgrace. +\q1 +\v 7 Children will complain of an ungodly father, +\q2 because they suffer disgrace because of him. +\q1 +\v 8 Woe to you, ungodly men, +\q2 who have forsaken the law of the Most High God!\f + \fr 41:8 \ft The remainder of this verse is omitted by the best authorities.\f* +\q1 +\v 9 If you are born, you will be born to a curse. +\q2 If you die, a curse will be your portion. +\q1 +\v 10 All things that are of the earth will go back to the earth; +\q2 so the ungodly will go from a curse to perdition. +\b +\q1 +\v 11 The mourning of men is about their bodies; +\q2 but the evil name of sinners will be blotted out. +\q1 +\v 12 Have regard for your name, +\q2 for it continues with you longer than a thousand great treasures of gold. +\q1 +\v 13 A good life has its number of days, +\q2 but a good name continues forever. +\b +\q1 +\v 14 My children, follow instruction in peace. +\q2 But wisdom that is hidden and a treasure that is not seen, +\q2 what benefit is in them both? +\q1 +\v 15 Better is a man who hides his foolishness +\q2 than a man who hides his wisdom. +\q1 +\v 16 Therefore show respect for my words; +\q2 for it is not good to retain every kind of shame. +\q2 Not everything is approved by all in good faith. +\b +\q1 +\v 17 Be ashamed of sexual immorality before father and mother, +\q2 of a lie before a prince and a mighty man, +\q2 +\v 18 of an offense before a judge and ruler, +\q2 of iniquity before the congregation and the people, +\q2 of unjust dealing before a partner and friend, +\q2 +\v 19 and of theft in the place where you sojourn. +\q1 Be ashamed in regard of the truth of God and his covenant, +\q2 of leaning on your elbow at dinner, +\q2 of contemptuous behavior in the matter of giving and taking, +\q2 +\v 20 of silence before those who greet you, +\q2 of looking at a woman who is a prostitute, +\q2 +\v 21 of turning away your face from a kinsman, +\q2 of taking away a portion or a gift, +\q2 of gazing at a woman who has a husband, +\q2 +\v 22 of meddling with his maid—and don’t come near her bed, +\q2 of abusive speech to friends—and after you have given, don’t insult, +\q2 +\v 23 of repeating and speaking what you have heard, +\q2 and of revealing of secrets. +\q1 +\v 24 So you will be ashamed of the right things +\q2 and find favor in the sight of every man. +\b +\c 42 +\q1 +\v 1 Don’t be ashamed of these things, +\q2 and don’t sin to save face: +\q2 +\v 2 of the law of the Most High and his covenant, +\q2 of judgment to do justice to the ungodly, +\q2 +\v 3 of reckoning with a partner and with travellers, +\q2 of a gift from the inheritance of friends, +\q2 +\v 4 of exactness of scales and weights, +\q2 of getting much or little, +\q2 +\v 5 of bargaining dealing with merchants, +\q2 of frequent correction of children, +\q2 and of making the back of an evil slave to bleed. +\q1 +\v 6 A seal is good where an evil wife is. +\q2 Where there are many hands, lock things up. +\q1 +\v 7 Whatever you hand over, let it be by number and weight. +\q2 In giving and receiving, let all be in writing. +\q1 +\v 8 Don’t be ashamed to instruct the unwise and foolish, +\q2 and one of extreme old age who contends with those who are young. +\q1 So you will be well instructed indeed +\q2 and approved in the sight of every living man. +\b +\q1 +\v 9 A daughter is a secret cause of wakefulness to a father. +\q2 Care for her takes away sleep— +\q2 in her youth, lest she pass the flower of her age; +\q2 when she is married, lest she should be hated; +\q2 +\v 10 in her virginity, lest she should be defiled and be with child in her father’s house; +\q2 when she has a husband, lest she should transgress; +\q2 and when she is married, lest she should be barren. +\q1 +\v 11 Keep a strict watch over a headstrong daughter, +\q2 lest she make you a laughingstock to your enemies, +\q2 a byword in the city and notorious among the people, +\q2 and shame you in public. +\b +\q1 +\v 12 Don’t gaze at every beautiful body. +\q2 Don’t sit in the midst of women. +\q1 +\v 13 For from garments comes a moth, +\q2 and from a woman comes a woman’s wickedness. +\q1 +\v 14 Better is the wickedness of a man than a pleasant woman, +\q2 a woman who puts you to shame and disgrace. +\b +\q1 +\v 15 I will make mention now of the works of the Lord, +\q2 and will declare the things that I have seen. +\q2 The Lord’s works are in his words. +\q1 +\v 16 The sun that gives light looks at all things. +\q2 The Lord’s work is full of his glory. +\q1 +\v 17 The Lord has not given power to the saints to declare all his marvelous works, +\q2 which the Almighty Lord firmly settled, +\q2 that the universe might be established in his glory. +\q1 +\v 18 He searches out the deep and the heart. +\q2 He has understanding of their secrets. +\q1 For the Most High knows all knowledge. +\q2 He sees the signs of the world. +\q1 +\v 19 He declares the things that are past and the things that shall be, +\q2 and reveals the traces of hidden things. +\q1 +\v 20 No thought escapes him. +\q2 There is not a word hidden from him. +\q1 +\v 21 He has ordered the mighty works of his wisdom. +\q2 He is from everlasting to everlasting. +\q1 Nothing has been added to them, nor diminished from them. +\q2 He had no need of any counselor. +\q1 +\v 22 How desirable are all his works! +\q2 One may see this even in a spark. +\q1 +\v 23 All these things live and remain forever in all manner of uses. +\q2 They are all obedient. +\q1 +\v 24 All things are in pairs, one opposite the other. +\q2 He has made nothing imperfect. +\q1 +\v 25 One thing establishes the good things of another. +\q2 Who could ever see enough of his glory? +\b +\c 43 +\q1 +\v 1 The pride of the heavenly heights is the clear sky, +\q2 the appearance of heaven, in the spectacle of its glory. +\q1 +\v 2 The sun, when it appears, bringing tidings as it rises, +\q2 is a marvelous instrument, the work of the Most High. +\q1 +\v 3 At noon, it dries up the land. +\q2 Who can stand against its burning heat? +\q1 +\v 4 A man tending a furnace is in burning heat, +\q2 but the sun three times more, burning up the mountains, +\q2 breathing out fiery vapors, +\q2 and sending out bright beams, it blinds the eyes. +\q1 +\v 5 Great is the Lord who made it. +\q2 At his word, he hastens on its course. +\b +\q1 +\v 6 The moon marks the changing seasons, +\q2 declares times, and is a sign for the world. +\q1 +\v 7 From the moon is the sign of feast days, +\q2 a light that wanes when it completes its course. +\q1 +\v 8 The month is called after its name, +\q2 increasing wonderfully in its changing— +\q2 an instrument of the army on high, +\q2 shining in the structure of heaven, +\q2 +\v 9 the beauty of heaven, the glory of the stars, +\q2 an ornament giving light in the highest places of the Lord. +\q1 +\v 10 At the word of the Holy One, they will stand in due order. +\q2 They won’t faint in their watches. +\q1 +\v 11 Look at the rainbow, and praise him who made it. +\q2 It is exceedingly beautiful in its brightness. +\q1 +\v 12 It encircles the sky with its glorious circle. +\q2 The hands of the Most High have stretched it out. +\b +\q1 +\v 13 By his commandment, he makes the snow fall +\q2 and swiftly sends the lightnings of his judgment. +\q1 +\v 14 Therefore the storehouses are opened, +\q2 and clouds fly out like birds. +\q1 +\v 15 By his mighty power, he makes the clouds strong +\q2 and the hailstones are broken in pieces. +\q1 +\v 16 At his appearing, the mountains will be shaken. +\q2 At his will, the south wind will blow. +\q1 +\v 17 The voice of his thunder rebukes the earth. +\q2 So does the northern storm and the whirlwind. +\q1 Like birds flying down, he sprinkles the snow. +\q2 It falls down like the lighting of locusts. +\q1 +\v 18 The eye is dazzled at the beauty of its whiteness. +\q2 The heart is amazed as it falls. +\q1 +\v 19 He also pours out frost on the earth like salt. +\q2 When it is freezes, it has points like thorns. +\b +\q1 +\v 20 The cold north wind blows +\q2 and ice freezes on the water. +\q1 It settles on every pool of water. +\q2 The water puts it on like it was a breastplate. +\q1 +\v 21 It will devour the mountains, burn up the wilderness, +\q2 and consume the green grass like fire. +\q1 +\v 22 A mist coming speedily heals all things. +\q2 A dew coming after heat brings cheerfulness. +\b +\q1 +\v 23 By his counsel, he has calmed the deep +\q2 and planted islands in it. +\q1 +\v 24 Those who sail on the sea tell of its dangers. +\q2 We marvel when we hear it with our ears. +\q1 +\v 25 There are also those strange and wondrous works in it— +\q2 variety of all that has life and the huge creatures of the sea. +\q1 +\v 26 Because of him, his messengers succeed. +\q2 By his word, all things hold together. +\b +\q1 +\v 27 We may say many things, but couldn’t say enough. +\q2 The summary of our words is, “He is everything!” +\q1 +\v 28 How could we have strength to glorify him? +\q2 For he is himself the greater than all his works. +\q1 +\v 29 The Lord is awesome and exceedingly great! +\q2 His power is marvelous! +\q1 +\v 30 Glorify the Lord and exalt him as much as you can! +\q2 For even yet, he will surpass that. +\q1 When you exalt him, summon your full strength. +\q2 Don’t be weary, because you can’t praise him enough. +\q1 +\v 31 Who has seen him, that he may describe him? +\q2 Who can magnify him as he is? +\q1 +\v 32 Many things greater than these are hidden, +\q2 for we have seen just a few of his works. +\q1 +\v 33 For the Lord made all things. +\q2 He gave wisdom to the godly. +\b +\c 44 +\q1 +\v 1 Let us now praise famous men, +\q2 our ancestors in their generations. +\q1 +\v 2 The Lord created great glory in them— +\q2 his mighty power from the beginning. +\q1 +\v 3 Some ruled in their kingdoms +\q2 and were men renowned for their power, +\q2 giving counsel by their understanding. +\q1 Some have spoken in prophecies, +\q2 +\v 4 leaders of the people by their counsels, +\q2 and by their understanding, giving instruction for the people. +\q2 Their words in their instruction were wise. +\q1 +\v 5 Some composed musical tunes, +\q2 and set forth verses in writing, +\q2 +\v 6 rich men endowed with ability, +\q2 living peaceably in their homes. +\q1 +\v 7 All these were honored in their generations, +\q2 and were outstanding in their days. +\q1 +\v 8 Some of them have left a name behind them, +\q2 so that others declare their praises. +\q1 +\v 9 But of others, there is no memory. +\q2 They perished as though they had not been. +\q2 They become as though they had not been born, +\q2 they and their children after them. +\q1 +\v 10 But these were men of mercy, +\q2 whose righteous deeds have not been forgotten. +\q1 +\v 11 A good inheritance remains with their offspring. +\q2 Their children are within the covenant. +\q1 +\v 12 Their offspring stand fast, +\q2 with their children, for their sakes. +\q1 +\v 13 Their offspring will remain forever. +\q2 Their glory won’t be blotted out. +\q1 +\v 14 Their bodies were buried in peace. +\q2 Their name lives to all generations. +\q1 +\v 15 People will declare their wisdom. +\q2 The congregation proclaims their praise. +\b +\q1 +\v 16 Enoch pleased the Lord, and was taken up, +\q2 an example of repentance to all generations. +\b +\q1 +\v 17 Noah was found perfect and righteous. +\q2 In the season of wrath, he kept the race alive. +\q1 Therefore a remnant was left on the earth +\q2 when the flood came. +\q1 +\v 18 Everlasting covenants were made with him, +\q2 that all flesh should no more be blotted out by a flood. +\b +\q1 +\v 19 Abraham was a great father of a multitude of nations. +\q2 There was none found like him in glory, +\q2 +\v 20 who kept the law of the Most High, +\q2 and was taken into covenant with him. +\q1 In his flesh he established the covenant. +\q2 When he was tested, he was found faithful. +\q1 +\v 21 Therefore he assured him by an oath +\q2 that the nations would be blessed through his offspring, +\q2 that he would multiply him like the dust of the earth, +\q2 exalt his offspring like the stars, +\q2 and cause them to inherit from sea to sea, +\q2 and from the Euphrates River to the utmost parts of the earth. +\b +\q1 +\v 22 In Isaac also, he established the same assurance for Abraham his father’s sake, +\q2 the blessing of all men, and the covenant. +\q1 +\v 23 He made it rest upon the head of Jacob. +\q2 He acknowledged him in his blessings, +\q2 gave to him by inheritance, +\q2 and divided his portions. +\q2 He distributed them among twelve tribes. +\c 45 +\q1 +\v 1 He brought out of him a man of mercy, +\q2 who found favor in the sight of all people, +\q2 a man loved by God and men, even Moses, +\q2 whose memory is blessed. +\q1 +\v 2 He made him equal to the glory of the saints, +\q2 and magnified him in the fears of his enemies. +\q1 +\v 3 By his words he caused the wonders to cease. +\q2 God glorified him in the sight of kings. +\q1 He gave him commandments for his people +\q2 and showed him part of his glory. +\q1 +\v 4 He sanctified him in his faithfulness and meekness. +\q2 He chose him out of all people. +\q1 +\v 5 He made him to hear his voice, +\q2 led him into the thick darkness, +\q2 and gave him commandments face to face, +\q2 even the law of life and knowledge, +\q2 that he might teach Jacob the covenant, +\q2 and Israel his judgments. +\b +\q1 +\v 6 He exalted Aaron, a holy man like Moses, +\q2 even his brother, of the tribe of Levi. +\q1 +\v 7 He established an everlasting covenant with him, +\q2 and gave him the priesthood of the people. +\q1 He blessed him with stateliness, +\q2 and dressed him in a glorious robe. +\q1 +\v 8 He clothed him in perfect splendor, +\q2 and strengthened him with symbols of authority: +\q2 the linen trousers, the long robe, and the ephod. +\q1 +\v 9 He encircled him with pomegranates; +\q2 with many golden bells around him, +\q2 to make a sound as he went, +\q2 to make a sound that might be heard in the temple, +\q2 for a reminder for the children of his people; +\q2 +\v 10 with a holy garment, with gold, blue, and purple, the work of the embroiderer; +\q2 with an oracle of judgment—Urim and Thummim; +\q2 +\v 11 with twisted scarlet, the work of the craftsman; +\q2 with precious stones engraved like a signet, in a setting of gold, the work of the jeweller, +\q2 for a reminder engraved in writing, after the number of the tribes of Israel; +\q2 +\v 12 with a crown of gold upon the mitre, having engraved on it, as on a signet, “HOLINESS”, +\q2 an ornament of honor, the work of an expert, +\q2 the desires of the eyes, goodly and beautiful. +\q1 +\v 13 Before him there never have been anything like it. +\q2 No stranger put them on, but only his sons and his offspring perpetually. +\q1 +\v 14 His sacrifices shall be wholly burned, +\q2 twice every day continually. +\q1 +\v 15 Moses consecrated him, +\q2 and anointed him with holy oil. +\q1 It was an everlasting covenant with him +\q2 and to his offspring, all the days of heaven, +\q2 to minister to the Lord, to serve as a priest, +\q2 and to bless his people in his name. +\q1 +\v 16 He chose him out of all living +\q2 to offer sacrifice to the Lord— +\q2 incense, and a sweet fragrance, for a memorial, +\q2 to make atonement for your people. +\q1 +\v 17 He gave to him in his commandments, +\q2 authority in the covenants of judgments, +\q2 to teach Jacob the testimonies, +\q2 and to enlighten Israel in his law. +\q1 +\v 18 Strangers conspired against him +\q2 and envied him in the wilderness: +\q2 Dathan and Abiram with their company, +\q2 and the congregation of Korah, with wrath and anger. +\q1 +\v 19 The Lord saw it, and it displeased him. +\q2 In the wrath of his anger, they were destroyed. +\q1 He did wonders upon them, +\q2 to consume them with flaming fire. +\q1 +\v 20 He added glory to Aaron, +\q2 and gave him a heritage. +\q1 He divided to him the first fruits of the increase, +\q2 and prepared bread of first fruits in abundance. +\q1 +\v 21 For they eat the sacrifices of the Lord, +\q2 which he gave to him and to his offspring. +\q1 +\v 22 However, in the land of the people, he has no inheritance, +\q2 and he has no portion among the people, +\q2 for the Lord himself is your portion and inheritance. +\b +\q1 +\v 23 Phinehas the son of Eleazar is the third in glory, +\q2 in that he was zealous in the fear of the Lord, +\q2 and stood fast when the people turned away, +\q2 and he made atonement for Israel. +\q1 +\v 24 Therefore, a covenant of peace was established for him, +\q2 that he should be leader of the sanctuary and of his people, +\q2 that he and his offspring should have the dignity of the priesthood forever. +\q1 +\v 25 Also he made a covenant with David the son of Jesse, of the tribe of Judah. +\q2 The inheritance of the king is his alone from son to son. +\q2 So the inheritance of Aaron is also to his seed. +\b +\q1 +\v 26 May God give you wisdom in your heart +\q2 to judge his people in righteousness, +\q2 that their good things may not be abolished, +\q2 and that their glory may endure for all their generations. +\b +\c 46 +\q1 +\v 1 Joshua the son of Nun was valiant in war, +\q2 and was the successor of Moses in prophecies. +\q1 He was made great according to his name +\q2 for the saving of\f + \fr 46:1 \ft Gr. \fqa his. \f* God’s elect, +\q2 to take vengeance on the enemies that rose up against them, +\q2 that he might give Israel their inheritance. +\q1 +\v 2 How he was glorified in the lifting up his hands, +\q2 and in stretching out his sword against the cities! +\q1 +\v 3 Who before him stood so firm? +\q2 For the Lord himself brought his enemies to him. +\q1 +\v 4 Didn’t the sun go back by his hand? +\q2 Didn’t one day become as two? +\q1 +\v 5 He called upon the Most High, the Mighty One, +\q2 when his foes pressed in all around him, +\q2 and the great Lord heard him. +\q1 +\v 6 With hailstones of mighty power, +\q2 he caused war to break violently upon the nation, +\q2 and\f + \fr 46:6 \ft See Joshua 10:11 \f* on the slope he destroyed those who resisted, +\q2 so that the nations might know his armor, +\q2 how he fought in the sight of the Lord; +\q2 for he followed the Mighty One. +\q1 +\v 7 Also in the time of Moses, he did a work of mercy— +\q2 he and Caleb the son of Jephunneh— +\q2 in that they withstood the adversary, +\q2 hindered the people from sin, +\q2 and stilled their wicked complaining. +\q1 +\v 8 And of six hundred thousand people on foot, they two alone were preserved +\q2 to bring them into their inheritance, +\q2 into a land flowing with milk and honey. +\q1 +\v 9 The Lord gave strength to Caleb, +\q2 and it remained with him to his old age, +\q2 so that he entered the hill country, +\q2 and his offspring obtained it for an inheritance, +\q2 +\v 10 that all the children of Israel might see that it is good to follow the Lord. +\b +\q1 +\v 11 Also the judges, every one by his name, +\q2 all whose hearts didn’t engage in immorality, +\q2 and who didn’t turn away from the Lord— +\q2 may their memory be blessed! +\q1 +\v 12 May their bones flourish again out of their place. +\q2 May the name of those who have been honored be renewed in their children. +\b +\q1 +\v 13 Samuel, the prophet of the Lord, loved by his Lord, +\q2 established a kingdom and anointed princes over his people. +\q1 +\v 14 By the law of the Lord he judged the congregation, +\q2 and the Lord watched over Jacob. +\q1 +\v 15 By his faithfulness he was proved to be a prophet. +\q2 By his words he was known to be faithful in vision. +\q1 +\v 16 When his enemies pressed on him on every side, +\q2 he called upon the Lord, the Mighty One, +\q2 with the offering of the suckling lamb. +\q1 +\v 17 Then the Lord thundered from heaven. +\q2 He made his voice heard with a mighty sound. +\q1 +\v 18 He utterly destroyed the rulers of the Tyrians +\q2 and all the princes of the Philistines. +\q1 +\v 19 Before the time of his age-long sleep, +\q2 he testified in the sight of the lord and his anointed, +\q2 “I have not taken any man’s goods, so much as a sandal;” +\q2 and no one accused him. +\q1 +\v 20 Even after he fell asleep, he prophesied, +\q2 and showed the king his end, +\q2 and lifted up his voice from the earth in prophecy, +\q2 to blot out the wickedness of the people. +\b +\c 47 +\q1 +\v 1 After him, Nathan rose up +\q2 to prophesy in the days of David. +\q1 +\v 2 As is the fat when it is separated from the peace offering, +\q2 so was David separated from the children of Israel. +\q1 +\v 3 He played with lions as with kids, +\q2 and with bears as with lambs of the flock. +\q1 +\v 4 In his youth didn’t he kill a giant, +\q2 and take away reproach from the people +\q2 when he lifted up his hand with a sling stone, +\q2 and beat down the boasting Goliath? +\q1 +\v 5 For he called upon the Most High Lord, +\q2 and he gave him strength in his right hand +\q2 to kill a man mighty in war, +\q2 to exalt the horn of his people. +\q1 +\v 6 So they glorified him for his tens of thousands, +\q2 and praised him for the blessings of the Lord, +\q2 in that a glorious diadem was given to him. +\q1 +\v 7 For he destroyed the enemies on every side, +\q2 and defeated the Philistines his adversaries. +\q2 He broke their horn in pieces to this day. +\q1 +\v 8 In every work of his he gave thanks to the Holy One Most High with words of glory. +\q2 He sang praise with his whole heart, +\q2 and loved him who made him. +\q1 +\v 9 He set singers before the altar, +\q2 to make sweet melody by their music.\f + \fr 47:9 \ft The remainder of this verse is omitted by the best authorities. \f* +\q1 +\v 10 He gave beauty to the feasts, +\q2 and set in order the seasons to completion +\q2 while they praised his holy name, +\q2 and the sanctuary resounded from early morning. +\q1 +\v 11 The Lord took away his sins, +\q2 and exalted his horn forever. +\q1 He gave him a covenant of kings, +\q2 and a glorious throne in Israel. +\b +\q1 +\v 12 After him a wise son rose up, +\q2 who because of him lived in security. +\q1 +\v 13 Solomon reigned in days of peace. +\q2 God gave him rest all around, +\q2 that he might set up a house for his name, +\q2 and prepare a sanctuary forever. +\q1 +\v 14 How wise you were made in your youth, +\q2 and filled as a river with understanding! +\q1 +\v 15 Your influence covered the earth, +\q2 and you filled it with parables and riddles. +\q1 +\v 16 Your name reached to the far away islands, +\q2 and you were loved for your peace. +\q1 +\v 17 For your songs, proverbs, parables, +\q2 and interpretations, the countries marveled at you. +\q1 +\v 18 By the name of the Lord God, +\q2 who is called the God of Israel, +\q2 you gathered gold like tin, +\q2 and multiplied silver like lead. +\q1 +\v 19 You bowed your loins to women, +\q2 and in your body you were brought into subjection. +\q1 +\v 20 You blemished your honor, +\q2 and defiled your offspring, +\q2 to bring wrath upon your children. +\q2 I was grieved for your folly, +\q2 +\v 21 because the sovereignty was divided, +\q2 and a disobedient kingdom ruled out of Ephraim. +\q1 +\v 22 But the Lord will never forsake his mercy. +\q2 He won’t destroy any of his works, +\q2 nor blot out the posterity of his elect. +\q1 He won’t take away the offspring of him who loved him. +\q2 He gave a remnant to Jacob, +\q2 and to David a root from his own family. +\b +\q1 +\v 23 So Solomon rested with his fathers. +\q2 Of his offspring, he left behind him Rehoboam, +\q2 the foolishness of the people, and one who lacked understanding, +\q2 who made the people revolt by his counsel. +\q1 Also Jeroboam the son of Nebat, +\q2 who made Israel to sin, +\q2 and gave a way of sin to Ephraim. +\q1 +\v 24 Their sins were multiplied exceedingly, +\q2 until they were removed from their land. +\q1 +\v 25 For they sought out all manner of wickedness, +\q2 until vengeance came upon them. +\b +\c 48 +\q1 +\v 1 Then Elijah arose, the prophet like fire. +\q2 His word burned like a torch. +\q1 +\v 2 He brought a famine upon them, +\q2 and by his zeal made them few in number. +\q1 +\v 3 By the word of the Lord he shut up the heavens. +\q2 He brought down fire three times. +\q1 +\v 4 How you were glorified, O Elijah, in your wondrous deeds! +\q2 Whose glory is like yours? +\q1 +\v 5 You raised up a dead man from death, +\q2 from Hades, by the word of the Most High. +\q1 +\v 6 You brought down kings to destruction, +\q2 and honorable men from their sickbeds. +\q1 +\v 7 You heard rebuke in Sinai, +\q2 and judgments of vengeance in Horeb. +\q1 +\v 8 You anointed kings for retribution, +\q2 and prophets to succeed after you. +\q1 +\v 9 You were taken up in a tempest of fire, +\q2 in a chariot of fiery horses. +\q1 +\v 10 You were recorded for reproofs in their seasons, +\q2 to pacify anger, before it broke out into wrath, +\q2 to turn the heart of the father to the son, +\q2 and to restore the tribes of Jacob. +\q1 +\v 11 Blessed are those who saw you, +\q2 and those who have been beautified with love; +\q2 for we also shall surely live. +\b +\q1 +\v 12 Elijah was wrapped in a whirlwind. +\q2 Elisha was filled with his spirit. +\q2 In his days he was not moved by the fear of any ruler, +\q2 and no one brought him into subjection. +\q1 +\v 13 Nothing was too hard for him. +\q2 When he was buried, his body prophesied. +\q1 +\v 14 As in his life he did wonders, +\q2 so his works were also marvelous in death. +\q1 +\v 15 For all this the people didn’t repent. +\q2 They didn’t depart from their sins, +\q2 until they were carried away as a plunder from their land, +\q2 and were scattered through all the earth. +\q1 The people were left very few in number, +\q2 but with a ruler from the house of David. +\q1 +\v 16 Some of them did that which was right, +\q2 but some multiplied sins. +\b +\q1 +\v 17 Hezekiah fortified his city, +\q2 and brought water into its midst. +\q1 He tunneled through rock with iron, +\q2 and built cisterns for water. +\q1 +\v 18 In his days Sennacherib invaded, +\q2 and sent Rabshakeh, and departed. +\q1 He lifted up his hand against Zion, +\q2 and boasted great things in his arrogance. +\q1 +\v 19 Then their hearts and their hands were shaken, +\q2 and they were in pain, as women in labor. +\q1 +\v 20 But they called upon the Lord who is merciful, +\q2 spreading out their hands to him. +\q1 The Holy One quickly heard them out of Heaven, +\q2 and delivered them by the hand of Isaiah. +\q1 +\v 21 He struck the camp of the Assyrians, +\q2 and his angel utterly destroyed them. +\q1 +\v 22 For Hezekiah did that which was pleasing to the Lord, +\q2 and was strong in the ways of his ancestor David, +\q2 which Isaiah the prophet commanded, +\q2 who was great and faithful in his vision. +\b +\q1 +\v 23 In his days the sun went backward. +\q2 He prolonged the life of the king. +\q1 +\v 24 He saw by an excellent spirit what would come to pass in the future; +\q2 and he comforted those who mourned in Zion. +\q1 +\v 25 He showed the things that would happen through the end of time, +\q2 and the hidden things before they came. +\b +\c 49 +\q1 +\v 1 The memory of Josiah is like the composition of incense +\q2 prepared by the work of the perfumer. +\q1 It will be sweet as honey in every mouth, +\q2 and like music at a banquet of wine. +\q1 +\v 2 He did what was right in the reforming of the people, +\q2 and took away the abominations of iniquity. +\q1 +\v 3 He set his heart right toward the Lord. +\q2 In lawless days, he made godliness prevail. +\b +\q1 +\v 4 Except David, Hezekiah, and Josiah, +\q2 all were wicked, +\q2 because they abandoned the law of the Most High. +\q2 The kings of Judah came to an end. +\q1 +\v 5 They gave their power to others, +\q2 and their glory to a foreign nation. +\q1 +\v 6 They set the chosen city of the sanctuary on fire +\q2 and made her streets desolate, as it was written by the hand of Jeremiah. +\q1 +\v 7 For they mistreated him; +\q2 yet he was sanctified in the womb to be a prophet, +\q2 to root out, to afflict, to destroy +\q2 and likewise to build and to plant. +\b +\q1 +\v 8 Ezekiel saw the vision of glory, +\q2 which God showed him on the chariot of the cherubim. +\q1 +\v 9 For truly he remembered the enemies in rainstorm, +\q2 and to do good to those who directed their ways aright. +\q1 +\v 10 Also of the twelve prophets,\f + \fr 49:10 \ft The remainder of this line is omitted by the best authorities. \f* +\q2 may their bones flourish again out of their place. +\q1 He comforted the people of Jacob, +\q2 and delivered them by confident hope. +\b +\q1 +\v 11 How shall we magnify Zerubbabel? +\q2 He was like a signet ring on the right hand. +\q1 +\v 12 So was Jesus the son of Josedek, +\q2 who in their days built the house, +\q2 and exalted a\f + \fr 49:12 \ft Some ancient authorities read \fqa temple. \f* people holy to the Lord, +\q2 prepared for everlasting glory. +\q1 +\v 13 Also of Nehemiah the memory is great. +\q2 He raised up for us fallen walls, +\q2 set up the gates and bars, +\q2 and rebuilt our houses. +\b +\q1 +\v 14 No man was created upon the earth like Enoch, +\q2 for he was taken up from the earth. +\q1 +\v 15 Nor was there a man born like Joseph, +\q2 a leader of his kindred, a supporter of the people. +\q2 Even his bones were cared for. +\q1 +\v 16 Shem and Seth were honored among men, +\q2 but above every living thing in the creation was Adam. +\b +\c 50 +\q1 +\v 1 It was Simon, the son of Onias, the high priest, +\q2 who in his life repaired the house, +\q2 and in his days strengthened the temple. +\q1 +\v 2 The foundation was built by him to the height of the double walls, +\q2 the lofty retaining walls of the temple enclosure. +\q1 +\v 3 In his days, a water cistern was dug, +\q2 the brazen vessel like the sea in circumference. +\q1 +\v 4 He planned to save his people from ruin, +\q2 and fortified the city against siege. +\q1 +\v 5 How glorious he was when the people gathered around him +\q2 as he came out of the house of the veil! +\q1 +\v 6 He was like the morning star among clouds, +\q2 like the full moon, +\q2 +\v 7 like the sun shining on the temple of the Most High, +\q2 like the rainbow shining in clouds of glory, +\q2 +\v 8 like roses in the days of first fruits, +\q2 like lilies by a water spring, +\q2 like the shoot of the frankincense tree in summer time, +\q2 +\v 9 like fire and incense in the censer, +\q2 like a vessel of beaten gold adorned with all kinds of precious stones, +\q2 +\v 10 like an olive tree loaded with fruit, +\q2 and like a cypress growing high among the clouds. +\q1 +\v 11 When he put on his glorious robe, +\q2 and clothed himself in perfect splendor, +\q2 ascending to the holy altar, +\q2 he made the court of the sanctuary glorious. +\b +\q1 +\v 12 When he received the portions out of the priests’ hands, +\q2 as he stood by the hearth of the altar, +\q2 with his kindred like a garland around him, +\q2 he was like a young cedar in Lebanon +\q2 surrounded by the trunks of palm trees. +\q1 +\v 13 All the sons of Aaron in their glory, +\q2 held the Lord’s offering in their hands before all the congregation of Israel. +\q1 +\v 14 Finishing the service at the altars, +\q2 that he might arrange the offering of the Most High, the Almighty, +\q2 +\v 15 he stretched out his hand to the cup of libation, +\q2 and poured out the cup of the grape. +\q1 He poured it out at the foot of the altar, +\q2 a sweet smelling fragrance to the Most High, the King of all. +\q1 +\v 16 Then the sons of Aaron shouted. +\q2 They sounded the trumpets of beaten work. +\q1 They made a great fanfare to be heard, +\q2 for a reminder before the Most High. +\q1 +\v 17 Then all the people together hurried, +\q2 and fell down to the ground on their faces +\q2 to worship their Lord, the Almighty, God Most High. +\b +\q1 +\v 18 The singers also praised him with their voices. +\q2 There was a sweet melody in the whole house. +\q1 +\v 19 And the people implored the Lord Most High, +\q2 in prayer before him who is merciful, +\q2 until the worship of the Lord was finished, +\q2 and so they accomplished his service. +\q1 +\v 20 Then he went down, and lifted up his hands +\q2 over the whole congregation of the children of Israel, +\q2 to give blessing to the Lord with his lips, +\q2 and to glory in his name. +\q1 +\v 21 He bowed himself down in worship the second time, +\q2 to declare the blessing from the Most High. +\b +\q1 +\v 22 Now bless the God of all, +\q2 who everywhere does great things, +\q2 who exalts our days from the womb, +\q2 and deals with us according to his mercy. +\q1 +\v 23 May he grant us joyfulness of heart, +\q2 and that peace may be in our days in Israel for the days of eternity, +\q2 +\v 24 to entrust his mercy with us, +\q2 and let him deliver us in his time! +\b +\q1 +\v 25 With two nations my soul is vexed, +\q2 and the third is no nation: +\q2 +\v 26 Those who sit on the mountain of\f + \fr 50:26 \ft According to some ancient versions, \fqa Seir. \f* Samaria, the Philistines, +\q2 and the foolish people who live in Shechem. +\b +\q1 +\v 27 I have written in this book the instruction of understanding and knowledge, +\q2 I Jesus, the son of Sirach Eleazar, of Jerusalem, +\q2 who out of his heart poured forth wisdom. +\q1 +\v 28 Blessed is he who will exercise these things. +\q2 He who lays them up in his heart will become wise. +\q1 +\v 29 For if he does them, he will be strong in all things, +\q2 for the light of the Lord is his guide.\f + \fr 50:29 \ft The remainder of this verse is omitted by the best authorities. \f* +\c 51 +\p A Prayer of Jesus the son of Sirach. +\q1 +\v 1 I will give thanks to you, O Lord, O King, +\q2 and will praise you, O God my Savior. +\q1 I give thanks to your name, +\q2 +\v 2 for you have been my protector and helper, +\q2 and delivered my body out of destruction, +\q2 and out of the snare of a slanderous tongue, +\q2 from lips that fabricate lies. +\q1 You were my helper before those who stood by, +\q2 +\v 3 and delivered me, according to the abundance of your mercy and of your name, +\q2 from the gnashings of teeth ready to devour, +\q2 out of the hand of those seeking my life, +\q2 out of the many afflictions I endured, +\q2 +\v 4 from the choking of a fire on every side, +\q2 and out of the midst of fire that I hadn’t kindled, +\q2 +\v 5 out of the depth of the belly of Hades, +\q2 from an unclean tongue, +\q2 and from lying words— +\q2 +\v 6 the slander of an unrighteous tongue to the king. +\q1 My soul drew near to death. +\q2 My life was near to Hades. +\q1 +\v 7 They surrounded me on every side. +\q2 There was no one to help me. +\q1 I was looking for human help, +\q2 and there was none. +\q1 +\v 8 Then I remembered your mercy, O Lord, +\q2 and your working which has been from everlasting, +\q2 how you deliver those who wait for you, +\q2 and save them out of the hand of their enemies. +\q1 +\v 9 I lifted up my prayer from the earth, +\q2 and prayed for deliverance from death. +\q1 +\v 10 I called upon the Lord, the Father of my Lord, +\q2 that he would not forsake me in the days of affliction, +\q2 in the time when there was no help against the proud. +\q1 +\v 11 I will praise your name continually. +\q2 I will sing praise with thanksgiving. +\q2 My prayer was heard. +\q1 +\v 12 You saved me from destruction +\q2 and delivered me from the evil time. +\q1 Therefore I will give thanks and praise to you, +\q2 and bless the name of the Lord. +\b +\q1 +\v 13 When I was yet young, +\q2 before I went abroad, +\q2 I sought wisdom openly in my prayer. +\q1 +\v 14 Before the temple I asked for her. +\q2 I will seek her out even to the end. +\q1 +\v 15 From the first flower to the ripening grape my heart delighted in her. +\q2 My foot walked in uprightness. +\q2 From my youth I followed her steps. +\q1 +\v 16 I inclined my ear a little, and received her, +\q2 and found for myself much instruction. +\q1 +\v 17 I profited in her. +\q2 I will give glory to him who gives me wisdom. +\q1 +\v 18 For I determined to practice her. +\q2 I was zealous for that which is good. +\q2 I will never be put to shame. +\q1 +\v 19 My soul has wrestled with her. +\q2 In my conduct I was exact. +\q1 I spread out my hands to the heaven above, +\q2 and bewailed my ignorances of her. +\q1 +\v 20 I directed my soul to her. +\q2 In purity I found her. +\q1 I got myself a heart joined with her from the beginning. +\q2 Therefore I won’t be forsaken. +\q1 +\v 21 My belly also was troubled to seek her. +\q2 Therefore I have gained a good possession. +\q1 +\v 22 The Lord gave me a tongue for my reward. +\q2 I will praise him with it. +\b +\q1 +\v 23 Draw near to me, all you who are uneducated, +\q2 and live in the house of instruction. +\q1 +\v 24 Why therefore are you all lacking in these things, +\q2 and your souls are very thirsty? +\q1 +\v 25 I opened my mouth and spoke, +\q2 “Get her for yourselves without money.” +\q1 +\v 26 Put your neck under the yoke, +\q2 and let your soul receive instruction. +\q2 She is near to find. +\b +\q1 +\v 27 See with your eyes +\q2 how I labored just a little +\q2 and found for myself much rest. +\q1 +\v 28 Get instruction with a great sum of silver, +\q2 and gain much gold by her. +\q1 +\v 29 May your soul rejoice in his mercy, +\q2 and may you all not be put to shame in praising him. +\q1 +\v 30 Work your work before the time comes, +\q2 and in his time he will give you your reward. \ No newline at end of file diff --git a/bibles/eng-web_usfm/47-BAReng-web.usfm b/bibles/eng-web_usfm/47-BAReng-web.usfm new file mode 100644 index 0000000..e71d729 --- /dev/null +++ b/bibles/eng-web_usfm/47-BAReng-web.usfm @@ -0,0 +1,251 @@ +\id BAR - Baruch +\h Baruch +\toc1 Baruch +\toc2 Baruch +\toc3 Bar +\mt1 Baruch +\ip The book of \bk Baruch\bk* is recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches. In some Bibles, Baruch chapter 6 is listed as a separate book called \bk The Letter of Jeremiah\bk*, reflecting its separation from Baruch in some copies of the Greek Septuagint. +\c 1 +\p +\v 1 These are the words of the book which Baruch the son of Nerias, the son of Maaseas, the son of Sedekias, the son of Asadias, the son of Helkias, wrote in Babylon, +\v 2 in the fifth year, in the seventh day of the month, at the time when the Chaldeans took Jerusalem and burned it with fire. +\v 3 Baruch read the words of this book in the hearing of Jechonias the son of Joakim king of Judah, and in the hearing of all the people who came to hear the book, +\v 4 and in the hearing of the mighty men, and of the kings’ sons, and in the hearing of the elders, and in the hearing of all the people, from the least to the greatest, even of all those who lived at Babylon by the river Sud. +\v 5 Then they wept, fasted,\f + \fr 1:5 \ft Another reading is, \fqa and vowed vows. \f* and prayed before the Lord. +\v 6 They also made a collection of money according to every man’s ability; +\v 7 and they sent it to Jerusalem to Joakim the high priest, the son of Helkias, the son of Salom, and to the priests and to all the people who were found with him at Jerusalem, +\v 8 at the same time when he took the vessels of the house of the Lord, that had been carried out of the temple, to return them into the land of Judah, the tenth day of Sivan—silver vessels which Sedekias the son of Josias king of Judah had made, +\v 9 after Nabuchodonosor king of Babylon had carried away Jechonias, the princes, the captives, the mighty men, and the people of the land from Jerusalem, and brought them to Babylon. +\p +\v 10 And they said: Behold, we have sent you money; therefore buy with the money burnt offerings, sin offerings, and incense, and prepare an oblation, and offer upon the altar of the Lord our God; +\v 11 and pray for the life of Nabuchodonosor king of Babylon, and for the life of Baltasar his son, that their days may be\f + \fr 1:11 \ft See Deuteronomy 11:21. \f* as the days of heaven above the earth. +\v 12 The Lord will give us strength and light to our eyes. We will live under the shadow of Nabuchodonosor king of Babylon and under the shadow of Baltasar his son, and we shall serve them many days, and find favor in their sight. +\v 13 Pray for us also to the Lord our God, for we have sinned against the Lord our God. To this day the wrath of the Lord and his indignation is not turned from us. +\v 14 You shall read this book which we have sent to you, to make confession in the house of the Lord upon the day of the feast and on the days of the solemn assembly. +\p +\v 15 You shall say: To the Lord our God belongs righteousness, but to us confusion of face, as at this day—to the men of Judah, to the inhabitants of Jerusalem, +\v 16 to our kings, to our princes, to our priests, to our prophets, and to our fathers, +\v 17 because we have sinned before the Lord. +\v 18 We have disobeyed him and have not listened to the voice of the Lord our God, to walk in the commandments of the Lord that he has set before us. +\v 19 Since the day that the Lord brought our fathers out of the land of Egypt to this present day, we have been disobedient to the Lord our God, and we have been negligent in not listening to his voice. +\v 20 Therefore the plagues have clung to us, along with the curse which the Lord declared through Moses his servant in the day that he brought our fathers out of the land of Egypt to give us a land that flows with milk and honey, as at this day. +\v 21 Nevertheless we didn’t listen to the voice of the Lord our God, according to all the words of the prophets whom he sent to us, +\v 22 but we each walked in the imagination of his own wicked heart, to serve strange gods and to do what is evil in the sight of the Lord our God. +\c 2 +\p +\v 1 Therefore the Lord has made good his word which he pronounced against us, and against our judges who judged Israel, and against our kings, and against our princes, and against the men of Israel and Judah, +\v 2 to bring upon us great plagues such as never happened before under the whole heaven,\f + \fr 2:2 \ft Another reading is, \fqa even as he has done. \f* as it came to pass in Jerusalem, according to the things that are written in the law of Moses, +\v 3 that we should each eat the flesh of our own son, and each eat the flesh of our own daughter. +\v 4 Moreover he has given them to be in subjection to all the kingdoms that are around us, to be a reproach and a desolation among all the people around us, where the Lord has scattered them. +\v 5 Thus they were cast down and not exalted, because we sinned against the Lord our God in not listening to his voice. +\v 6 To the Lord our God belongs righteousness, but to us and to our fathers confusion of face, as at this day. +\v 7 All these plagues have come upon us which the Lord has pronounced against us. +\v 8 Yet have we not entreated the favor of the Lord by everyone turning from the thoughts of his wicked heart. +\v 9 Therefore the Lord has kept watch over the plagues. The Lord has brought them upon us, for the Lord is righteous in all his works which he has commanded us. +\v 10 Yet we have not listened to his voice, to walk in the commandments of the Lord that he has set before us. +\p +\v 11 And now, O Lord, you God of Israel who have brought your people out of the land of Egypt with a mighty hand, with signs, with wonders, with great power, and with a high arm, and have gotten yourself a name, as at this day: +\v 12 O Lord our God, we have sinned. We have been ungodly. We have done wrong in all your ordinances. +\v 13 Let your wrath turn from us, for we are but a few left among the heathen where you have scattered us. +\v 14 Hear our prayer, O Lord, and our petition, and deliver us for your own sake. Give us favor in the sight of those who have led us away captive, +\v 15 that all the earth may know that you are the Lord our God, because Israel and his posterity is called by your name. +\v 16 O Lord, look down from your holy house and consider us. Incline your ear, O Lord, and hear. +\v 17 Open your eyes, and see; for the dead that are in Hades, whose breath is taken from their bodies, will give to the Lord neither glory nor righteousness; +\v 18 but the soul who is greatly vexed, who goes stooping and feeble, and the eyes that fail, and the hungry soul, will declare your glory and righteousness, O Lord. +\p +\v 19 For we do not present our supplication before you, O Lord our God, for the righteousness of our fathers and of our kings. +\v 20 For you have sent your wrath and your indignation upon us, as you have spoken by your servants the prophets, saying, +\v 21 “The Lord says, ‘Bow your shoulders to serve the king of Babylon, and remain in the land that I gave to your fathers. +\v 22 But if you won’t hear the voice of the Lord to serve the king of Babylon, +\v 23 I will cause to cease out of the cities of Judah and from the region near Jerusalem the voice of mirth, the voice of gladness, voice of the bridegroom, and the voice of the bride. The whole land will be desolate without inhabitant.’” +\v 24 But we wouldn’t listen to your voice, to serve the king of Babylon. Therefore you have made good your words that you spoke by your servants the prophets, that the bones of our kings and the bones of our fathers would be taken out of their places. +\v 25 Behold, they are cast out to the heat by day and to the frost by night. They died in great miseries by famine, by sword, and by\f + \fr 2:25 \ft See Jeremiah 32:36. \f* pestilence. +\v 26 You have made the house that is called by your name as it is today because of the wickedness of the house of Israel and the house of Judah. +\p +\v 27 Yet, O Lord our God, you have dealt with us after all your kindness and according to all your great mercy, +\v 28 as you spoke by your servant Moses in the day when you commanded him to write your law in the presence of the children of Israel, saying, +\v 29 “If you won’t hear my voice, surely this very great multitude will be turned into a small number among the nations where I will scatter them. +\v 30 For I know that they will not hear me, because they are a stiff-necked people; but in the land of their captivity they will take it to heart, +\v 31 and will know that I am the Lord their God. I will give them a heart and ears to hear. +\v 32 Then they will praise me in the land of their captivity, and think about my name, +\v 33 and will return from their stiff neck and from their wicked deeds; for they will remember the way of their fathers who sinned before the Lord. +\v 34 I will bring them again into the land which I promised to their fathers, to Abraham, to Isaac, and to Jacob, and they will rule over it. I will increase them, and they won’t be diminished. +\v 35 And I will make an everlasting covenant with them to be their God, and they will be my people. I will no more remove my people Israel out of the land that I have given them.” +\c 3 +\p +\v 1 O Lord Almighty, you God of Israel, the soul in anguish and the troubled spirit cries to you. +\v 2 Hear, O Lord, and have mercy; for you are a merciful God. Yes, have mercy upon us, because we have sinned before you. +\v 3 For you are enthroned forever, and we keep perishing. +\v 4 O Lord Almighty, you God of Israel, hear now the prayer of the dead Israelites, and of the children of those who were sinners before you, who didn’t listen to the voice of you their God; because of this, these plagues cling to us. +\v 5 Don’t remember the iniquities of our fathers, but remember your power and your name at this time. +\v 6 For you are the Lord our God, and we will praise you, O Lord. +\v 7 For this cause, you have put your fear in our hearts, to the intent that we should call upon your name. We will praise you in our captivity, for we have called to mind all the iniquity of our fathers who sinned before you. +\v 8 Behold, we are yet this day in our captivity where you have scattered us, for a reproach and a curse, and to be subject to penalty according to all the iniquities of our fathers who departed from the Lord our God. +\p +\v 9 Hear, O Israel, the commandments of life! Give ear to understand wisdom! +\v 10 How is it, O Israel, that you are in your enemies’ land, that you have become old in a strange country, that you are defiled with the dead, +\v 11 that you are counted with those who are in Hades? +\v 12 You have forsaken the fountain of wisdom. +\v 13 If you had walked in the way of God, you would have dwelled in peace forever. +\v 14 Learn where there is wisdom, where there is strength, and where there is understanding, that you may also know where there is length of days and life, where there is the light of the eyes and peace. +\v 15 Who has found out her place? Who has come into her treasuries? +\v 16 Where are the princes of the heathen, and those who ruled the beasts that are on the earth, +\v 17 those who had their pastime with the fowls of the air, and those who hoarded up silver and gold, in which people trust, and of their getting there is no end? +\v 18 For those who diligently sought silver, and were so anxious, and whose works are past finding out, +\v 19 they have vanished and gone down to Hades, and others have come up in their place. +\p +\v 20 Younger men have seen the light and lived upon the earth, but they haven’t known the way of knowledge, +\v 21 nor understood its paths. Their children haven’t embraced it. They are far off from their way. +\v 22 It has not been heard of in Canaan, neither has it been seen in Teman. +\v 23 The sons also of Agar who seek understanding, which are in the land, the merchants of Merran and Teman, and the authors of fables, and the searchers out of understanding—none of these have known the way of wisdom or remembered her paths. +\p +\v 24 O Israel, how great is the house of God! How large is the place of his possession! +\v 25 It is great and has no end. It is high and unmeasurable. +\v 26 Giants were born that were famous of old, great of stature, and expert in war. +\v 27 God didn’t choose these, nor did he give the way of knowledge to them, +\v 28 so they perished, because they had no wisdom. They perished through their own foolishness. +\v 29 Who has gone up into heaven, taken her, and brought her down from the clouds? +\v 30 Who has gone over the sea, found her, and will bring her for choice gold? +\v 31 There is no one who knows her way, nor any who comprehend her path. +\v 32 But he that knows all things knows her, he found her out with his understanding. He who prepared the earth for all time has filled it with four-footed beasts. +\v 33 It is he who sends forth the light, and it goes. He called it, and it obeyed him with fear. +\v 34 The stars shone in their watches, and were glad. When he called them, they said, “Here we are.” They shone with gladness to him who made them. +\v 35 This is our God. No other can be compared to him. +\v 36 He has found out all the way of knowledge, and has given it to Jacob his servant and to Israel who is loved by him. +\v 37 Afterward she appeared upon earth, and lived with men. +\c 4 +\p +\v 1 This is the book of God’s commandments and the law that endures forever. All those who hold it fast will live, but those who leave it will die. +\v 2 Turn, O Jacob, and take hold of it. Walk toward the shining of its light. +\v 3 Don’t give your glory to another, nor the things that are to your advantage to a foreign nation. +\v 4 O Israel, we are happy; for the things that are pleasing to God are made known to us. +\p +\v 5 Be of good cheer, my people, the memorial of Israel. +\v 6 You were not sold to the nations for destruction, but because you moved God to wrath, you were delivered to your adversaries. +\v 7 For you provoked him who made you by sacrificing to demons and not to God. +\v 8 You forgot the everlasting God who brought you up. You also grieved Jerusalem, who nursed you. +\v 9 For she saw the wrath that came upon you from God, and said, “Listen, you who dwell near Zion; for God has brought upon me great mourning. +\v 10 For I have seen the captivity of my sons and daughters, which the Everlasting has brought upon them. +\v 11 For with joy I nourished them, but sent them away with weeping and mourning. +\v 12 Let no man rejoice over me, a widow and forsaken by many. For the sins of my children, I am left desolate, because they turned away from the law of God +\v 13 and had no regard for his statutes. They didn’t walk in the ways of God’s commandments or tread in the paths of discipline in his righteousness. +\v 14 Let those who dwell near Zion come and remember the captivity of my sons and daughters, which the Everlasting has brought upon them. +\v 15 For he has brought a nation upon them from afar, a shameless nation with a strange language, who didn’t respect old men or pity children. +\v 16 They have carried away the dear beloved sons of the widow, and left her who was alone desolate of her daughters.” +\p +\v 17 But I—how can I help you? +\v 18 For he who brought these calamities upon you will deliver you from the hand of your enemies. +\v 19 Go your way, O my children. Go your way, for I am left desolate. +\v 20 I have put off the garment of peace, and put on the sackcloth of my petition. I will cry to the Everlasting as long as I live. +\p +\v 21 Take courage, my children. Cry to God, and he will deliver you from the power and hand of the enemies. +\v 22 For I have trusted in the Everlasting, that he will save you; and joy has come to me from the Holy One, because of the mercy that will soon come to you from your Everlasting Savior. +\v 23 For I sent you out with mourning and weeping, but God will give you to me again with joy and gladness forever. +\v 24 For as now those who dwell near Zion have seen your captivity, so they will shortly see your salvation from our God which will come upon you with great glory and brightness of the Everlasting. +\v 25 My children, suffer patiently the wrath that has come upon you from God, for your enemy has persecuted you; but shortly you will see his destruction and will tread upon their necks. +\v 26 My delicate ones have traveled rough roads. They were taken away like a flock carried off by enemies. +\p +\v 27 Take courage, my children, and cry to God; for you will be remembered by him who has brought this upon you. +\v 28 For as it was your decision to go astray from God, return and seek him ten times more. +\v 29 For he who brought these calamities upon you will bring you everlasting joy again with your salvation. +\v 30 Take courage, O Jerusalem, for he who called you by name will comfort you. +\v 31 Miserable are those who afflicted you and rejoiced at your fall. +\v 32 Miserable are the cities which your children served. Miserable is she who received your sons. +\v 33 For as she rejoiced at your fall and was glad of your ruin, so she will be grieved at her own desolation. +\v 34 And I will take away her pride in her great multitude and her boasting will be turned into mourning. +\v 35 For fire will come upon her from the Everlasting for many days; and she will be inhabited by demons for a long time. +\p +\v 36 O Jerusalem, look around you toward the east, and behold the joy that comes to you from God. +\v 37 Behold, your sons come, whom you sent away. They come gathered together from the east to the west at the word of the Holy One, rejoicing in the glory of God. +\c 5 +\p +\v 1 Take off the garment of your mourning and affliction, O Jerusalem, and put on forever the beauty of the glory from God. +\v 2 Put on the robe of the righteousness from God. Set on your head a diadem of the glory of the Everlasting. +\v 3 For God will show your splendor everywhere under heaven. +\v 4 For your name will be called by God forever “Righteous Peace, Godly Glory”. +\p +\v 5 Arise, O Jerusalem, and stand upon the height. Look around you toward the east and see your children gathered from the going down of the sun to its rising at the word of the Holy One, rejoicing that God has remembered them. +\v 6 For they went from you on foot, being led away by their enemies, but God brings them in to you carried on high with glory, on a royal throne. +\v 7 For God has appointed that every high mountain and the everlasting hills should be made low, and the valleys filled up to make the ground level, that Israel may go safely in the glory of God. +\v 8 Moreover the woods and every sweet smelling tree have shaded Israel by the commandment of God. +\v 9 For God will lead Israel with joy in the light of his glory with the mercy and righteousness that come from him. +\c 6 +\s1 The Letter of Jeremy (Jeremiah) +\p +\v 1 A copy of a letter that Jeremy sent to those who were to be led captives into Babylon by the king of the Babylonians, to give them the message that God commanded him. +\p +\v 2 Because of the sins which you have committed before God, you will be led away captives to Babylon by Nabuchodonosor king of the Babylonians. +\v 3 So when you come to Babylon, you will remain there many years, and for a long season, even for seven generations. After that, I will bring you out peacefully from there. +\v 4 But now you will see in Babylon gods of silver, gold, and wood carried on shoulders, which cause the nations to fear. +\v 5 Beware therefore that you in no way become like these foreigners. Don’t let fear take hold of you because of them when you see the multitude before them and behind them, worshiping them. +\v 6 But say in your hearts, “O Lord, we must worship you.” +\v 7 For my angel is with you, and I myself care for your souls. +\v 8 For their tongue is polished by the workman, and they themselves are overlaid with gold and with silver; yet they are only fake, and can’t speak. +\v 9 And taking gold, as if it were for a virgin who loves to be happy, they make crowns for the heads of their gods. +\v 10 Sometimes also the priests take gold and silver from their gods, and spend it on themselves. +\v 11 They will even give some of it to the common prostitutes. They dress them like men with garments, even the gods of silver, gods of gold, and gods of wood. +\v 12 Yet these gods can’t save themselves from rust and moths, even though they are covered with purple garments. +\v 13 They wipe their faces because of the dust of the temple, which is thick upon them. +\v 14 And he who can’t put to death one who offends against him holds a sceptre, as though he were judge of a country. +\v 15 He has also a dagger in his right hand, and an axe, but can’t deliver himself from war and robbers. +\v 16 By this they are known not to be gods. Therefore don’t fear them. +\v 17 For like a vessel that a man uses is worth nothing when it is broken, even so it is with their gods. When they are set up in the temples, their eyes are full of dust through the feet of those who come in. +\v 18 As the courts are secured on every side upon him who offends the king, as being committed to suffer death, even so the priests secure their temples with doors, with locks, and bars, lest they be carried off by robbers. +\v 19 They light candles for them, yes, more than for themselves, even though they can’t see one. +\v 20 They are like one of the beams of the temple. Men say their hearts are eaten out when things creeping out of the earth devour both them and their clothing. They don’t feel it +\v 21 when their faces are blackened through the smoke that comes out of the temple. +\v 22 Bats, swallows, and birds land on their bodies and heads. So do the cats. +\v 23 By this you may know that they are no gods. Therefore don’t fear them. +\v 24 Notwithstanding the gold with which they are covered to make them beautiful, unless someone wipes off the tarnish, they won’t shine; for they didn’t even feel it when they were molten. +\v 25 Things in which there is no breath are bought at any cost. +\v 26 Having no feet, they are carried upon shoulders. By this, they declare to men that they are worth nothing. +\v 27 Those who serve them are also ashamed, for if they fall to the ground at any time, they can’t rise up again by themselves. If they are bowed down, they can’t make themselves straight; but the offerings are set before them, as if they were dead men. +\v 28 And the things that are sacrificed to them, their priests sell and spend. In like manner, their wives also lay up part of it in salt; but to the poor and to the impotent they give none of it. +\v 29 The menstruous woman and the woman in childbed touch their sacrifices, knowing therefore by these things that they are no gods. Don’t fear them. +\v 30 For how can they be called gods? Because women set food before the gods of silver, gold, and wood. +\v 31 And in their temples the priests sit on seats, having their clothes torn and their heads and beards shaven, and nothing on their heads. +\v 32 They roar and cry before their gods, as men do at the feast when one is dead. +\v 33 The priests also take off garments from them and clothe their wives and children with them. +\v 34 Whether it is evil or good what one does to them, they are not able to repay it. They can’t set up a king or put him down. +\v 35 In like manner, they can neither give riches nor money. Though a man make a vow to them and doesn’t keep it, they will never exact it. +\v 36 They can save no man from death. They can’t deliver the weak from the mighty. +\v 37 They can’t restore a blind man to his sight, or deliver anyone who is in distress. +\v 38 They can show no mercy to the widow, or do good to the fatherless. +\v 39 They are like the stones that are cut out of the mountain, these gods of wood that are overlaid with gold and with silver. Those who minister to them will be confounded. +\p +\v 40 How could a man then think or say that they are gods, when even the Chaldeans themselves dishonor them? +\v 41 If they shall see one mute who can’t speak, they bring him and ask him to call upon Bel, as though he were able to understand. +\v 42 Yet they can’t perceive this themselves, and forsake them; for they have no understanding. +\v 43 The women also with cords around them sit in the ways, burning bran for incense; but if any of them, drawn by someone who passes by, lies with him, she reproaches her fellow, that she was not thought as worthy as herself and her cord wasn’t broken. +\v 44 Whatever is done among them is false. How could a man then think or say that they are gods? +\v 45 They are fashioned by carpenters and goldsmiths. They can be nothing else than what the workmen make them to be. +\v 46 And they themselves who fashioned them can never continue long. How then should the things that are fashioned by them? +\v 47 For they have left lies and reproaches to those who come after. +\v 48 For when there comes any war or plague upon them, the priests consult with themselves, where they may be hidden with them. +\v 49 How then can’t men understand that they are no gods, which can’t save themselves from war or from plague? +\v 50 For seeing they are only wood and overlaid with gold and silver, it will be known hereafter that they are false. +\v 51 It will be manifest to all nations and kings that they are no gods, but the works of men’s hands, and that there is no work of God in them. +\v 52 Who then may not know that they are not gods? +\p +\v 53 For they can’t set up a king in a land or give rain to men. +\v 54 They can’t judge their own cause, or redress a wrong, being unable; for they are like crows between heaven and earth. +\v 55 For even when fire falls upon the house of gods of wood overlaid with gold or with silver, their priests will flee away, and escape, but they themselves will be burned apart like beams. +\v 56 Moreover they can’t withstand any king or enemies. How could a man then admit or think that they are gods? +\v 57 Those gods of wood overlaid with silver or with gold aren’t able to escape from thieves or robbers. +\v 58 The gold, silver, and garments with which they are clothed—those who are strong will take from them, and go away with them. They won’t be able to help themselves. +\v 59 Therefore it is better to be a king who shows his manhood, or else a vessel in a house profitable for whatever the owner needs, than such false gods—or even a door in a house, to keep the things safe that are in it, than such false gods; or better to be a pillar of wood in a palace than such false gods. +\p +\v 60 For sun, moon, and stars, being bright and sent to do their jobs, are obedient. +\v 61 Likewise also the lightning when it flashes is beautiful to see. In the same way, the wind also blows in every country. +\v 62 And when God commands the clouds to go over the whole world, they do as they are told. +\v 63 And the fire sent from above to consume mountains and woods does as it is commanded; but these are to be compared to them neither in show nor power. +\v 64 Therefore a man shouldn’t think or say that they are gods, seeing they aren’t able to judge causes or to do good to men. +\v 65 Knowing therefore that they are no gods, don’t fear them. +\v 66 For they can neither curse nor bless kings. +\v 67 They can’t show signs in the heavens among the nations, or shine as the sun, or give light as the moon. +\v 68 The beasts are better than they; for they can get under a covert, and help themselves. +\v 69 In no way then is it manifest to us that they are gods. Therefore don’t fear them. +\v 70 For as a scarecrow in a garden of cucumbers that keeps nothing, so are their gods of wood overlaid with gold and silver. +\v 71 Likewise also their gods of wood overlaid with gold and with silver are like a white thorn in an orchard that every bird sits upon. They are also like a dead body that is thrown out into the dark. +\v 72 You will know them to be no gods by the bright purple that rots upon them. They themselves will be consumed afterwards, and will be a reproach in the country. +\v 73 Better therefore is the just man who has no idols; for he will be far from reproach. \ No newline at end of file diff --git a/bibles/eng-web_usfm/52-1MAeng-web.usfm b/bibles/eng-web_usfm/52-1MAeng-web.usfm new file mode 100644 index 0000000..75dfba1 --- /dev/null +++ b/bibles/eng-web_usfm/52-1MAeng-web.usfm @@ -0,0 +1,1135 @@ +\id 1MA +\h 1 Maccabees +\toc1 The First Book of the Maccabees +\toc2 1 Maccabees +\toc3 1Ma +\mt1 The First Book of the Maccabees +\ip \bk The First Book of the Maccabees\bk* is recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches. +\c 1 +\p +\v 1 After Alexander the Macedonian, the son of Philip, who came out of the land of Chittim, and struck Darius king of the Persians and Medes, it came to pass, after he had struck him, that he reigned in his place, in former time, over\f + \fr 1:1 \ft That is, the Greek Empire. Compare 1 Maccabees 1:10 and 1 Maccabees 6:2. \f* Greece. +\v 2 He fought many battles, won many strongholds, killed the kings of the earth, +\v 3 went through to the ends of the earth, and took spoils of a multitude of nations. The earth was quiet before him. He was exalted. His heart was lifted up. +\v 4 He gathered together an exceedingly strong army and ruled over countries, nations, and principalities, and they paid him tribute. +\p +\v 5 After these things he fell sick, and perceived that he was going to die. +\v 6 He called his honorable servants, which had been brought up with him from his youth, and he divided to them his kingdom while he was still alive. +\v 7 Alexander reigned twelve years, then he died. +\v 8 Then his servants ruled, each one in his place. +\v 9 They all put crowns upon themselves after he was dead, and so did their sons after them many years; and they multiplied evils in the earth. +\p +\v 10 There came out of them a sinful root, Antiochus Epiphanes, son of Antiochus the king, who had been a hostage at Rome, and he reigned in\f + \fr 1:10 \ft circa B.C. 176. \f* the one hundred thirty seventh year of the kingdom of the Greeks. +\p +\v 11 In those days transgressors of the law came out of Israel and persuaded many, saying, “Let’s go make a covenant with the\f + \fr 1:11 \ft Or, \fqa nations: \ft and so throughout this book.\f* Gentiles around us; for since we were separated from them many evils have befallen us.” +\v 12 That proposal was good in their eyes. +\v 13 Some of the people eagerly went to the king, and he authorized them to observe the ordinances of the\f + \fr 1:13 \ft Or, \fqa nations: \ft and so throughout this book.\f* Gentiles. +\v 14 So\f + \fr 1:14 \ft See 2 Maccabees 4:9, 12. \f* they built a gymnasium in Jerusalem according to the laws of the\f + \fr 1:14 \ft Or, \fqa nations: \ft and so throughout this book. \f* Gentiles. +\v 15 They made themselves uncircumcised, forsook the holy covenant, joined themselves to the\f + \fr 1:15 \ft Or, \fqa nations: \ft and so throughout this book \f* Gentiles, and sold themselves to do evil. +\p +\v 16 The kingdom was established in the sight of Antiochus, and he planned to reign over Egypt, that he might reign over both kingdoms. +\v 17 He entered into Egypt with a\f + \fr 1:17 \ft Gr. \fqa heavy. \f* great multitude, with chariots, with elephants, with cavalry, and with a great\f + \fr 1:17 \ft Or, \fqa armament \f* navy. +\v 18 He made war against Ptolemy king of Egypt. Ptolemy was put to shame before him, and fled; and many fell wounded to death. +\v 19 They took possession of the strong cities in the land of Egypt, and he took the spoils of Egypt. +\p +\v 20 Antiochus, after he had defeated Egypt, returned in\f + \fr 1:20 \ft circa B.C. 170. See 2 Maccabees 5:11-16. \f* the one hundred forty third year, and went up against Israel and Jerusalem with a\f + \fr 1:20 \ft Gr. \fqa heavy. \f* great multitude, +\v 21 and entered presumptuously into the sanctuary, and took the golden altar, the lampstand for the light, and all its utensils. +\v 22 He took the table of the show bread, the cups for the drink offerings, the bowls, the golden censers, the veil, the crowns, and the gold decoration on the front of the temple. He peeled it all off. +\v 23 He took the silver, the gold, and the precious vessels. He took the hidden treasures which he found. +\v 24 When he had taken all of these, he went away into his own land. He made a great slaughter, and spoke very arrogantly. +\v 25 Great mourning came upon Israel, in every place where they were. +\v 26 The rulers and elders groaned. The virgins and young men were made feeble. The beauty of the women was changed. +\v 27 Every bridegroom took up lamentation. She who sat in the marriage chamber was mourning. +\v 28 The land was moved for its inhabitants, and all the house of Jacob was clothed with shame. +\p +\v 29 \f + \fr 1:29 \ft See 2 Maccabees 5:24. \f*After two full years, the king sent a chief collector of tribute to the cities of Judah, and he came to Jerusalem with a \f + \fr 1:29 \ft Gr. \fqa heavy. \f*great multitude. +\v 30 He spoke words of peace to them in subtlety, and they believed him. Then he fell upon the city suddenly, struck it very severely, and destroyed many people of Israel. +\v 31 He took the spoils of the city, set it on fire, and pulled down its houses and its walls on every side. +\v 32 They led captive the women and the children, and seized the livestock. +\v 33 Then they fortified the city of David with a large, strong wall and with strong towers, and it became their citadel. +\v 34 They put a sinful nation, transgressors of the law, there, and they strengthened themselves in it. +\v 35 They stored up weapons and food, and gathering together the spoils of Jerusalem, they stored them there, and they became a great menace. +\v 36 It became a place to lie in wait against the sanctuary, and an evil adversary to Israel continually. +\v 37 They shed innocent blood on every side of the sanctuary, and defiled the sanctuary. +\v 38 The inhabitants of Jerusalem fled because of them. She became a habitation of foreigners. She became foreign to those who were born in her, and her children forsook her. +\v 39 Her sanctuary was laid waste like a wilderness,\f + \fr 1:39 \ft See 2 Maccabees 6:6. \f* her feasts were turned into mourning, her Sabbaths into reproach, and her honor into contempt. +\v 40 According to her glory, so was her dishonor multiplied, and her exaltation was turned into mourning. +\p +\v 41 King Antiochus wrote to his whole kingdom that all should be one people, +\v 42 and that each should forsake his own laws. All the nations agreed according to the word of the king. +\v 43 Many of Israel consented to his worship, sacrificed to the idols, and profaned the Sabbath. +\v 44 The king sent letters by the hand of messengers to Jerusalem and the cities of Judah, that they should follow laws strange to the land, +\v 45 and should forbid whole burnt offerings and sacrifice and drink offerings in the sanctuary; and should profane the Sabbaths and feasts, +\v 46 and pollute the sanctuary and those who were holy; +\v 47 that they should build altars, and temples, and shrines for idols, and should sacrifice swine’s flesh and unclean animals; +\v 48 and that they should leave their sons uncircumcised, that they should make their souls abominable with all manner of uncleanness and profanation; +\v 49 so that they might forget the law, and change all the ordinances. +\v 50 Whoever doesn’t do according to the word of the king, he shall die. +\v 51 He wrote according to all these words to his whole kingdom. He appointed overseers over all the people, and he commanded the cities of Judah to sacrifice, city by city. +\v 52 From the people were gathered together to them many, everyone who had forsaken the law; and they did evil things in the land. +\v 53 They made Israel to hide themselves in every place of refuge which they had. +\p +\v 54 On the fifteenth day of Chislev, in\f + \fr 1:54 \ft circa B.C. 168. See 2 Maccabees 5:11. \f* the one hundred forty fifth year, they built an abomination of desolation upon the altar,\f + \fr 1:54 \ft The two words rendered \fqa altar \ft are different in the Greek: and so in 1 Maccabees 1:59. \f* and in the cities of Judah on every side they built idol altars.\f + \fr 1:54 \ft The two words rendered \fqa altar \ft are different in the Greek: and so in 1 Maccabees 1:59. \f* +\v 55 At the doors of the houses and in the streets they burned incense. +\v 56 They tore the books of the law which they found in pieces and set them on fire. +\v 57 Anyone who was found with any a book of the covenant, and if any consented to the law, the king’s sentence delivered him to death. +\v 58 Thus did they in their might to Israel, to those who were found month by month in the cities. +\v 59 On the twenty-fifth day of the month they sacrificed upon the idol altar that was on top of the altar of burnt offering. +\v 60 \f + \fr 1:60 \ft See 2 Maccabees 6:10.\f*They put to death women who had circumcised their children, according to the commandment. +\v 61 They hung their babies around their necks, and their houses, and those who had circumcised them. +\v 62 Many in Israel were fully resolved and confirmed in themselves not to eat unclean things. +\v 63 \f + \fr 1:63 \ft See 2 Maccabees 6:19 and 7:1, etc. \f*They chose to die, that they might not be defiled with the food, and that they might not profane the holy covenant; and they died. +\v 64 Exceedingly great wrath came upon Israel. +\c 2 +\p +\v 1 In those days Mattathias the son of John, the son of Simeon, a priest of the sons of Joarib, from Jerusalem rose up; and he lived at Modin. +\v 2 And he had five sons:\f + \fr 2:2 \ft Gr. \fqa Joannes. \f* John, who was surnamed Gaddis; +\v 3 Simon, who was called Thassi; +\v 4 Judas, who was called Maccabaeus; +\v 5 Eleazar, who was called Avaran; and Jonathan, who was called Apphus. +\p +\v 6 He saw the blasphemies that were committed in Judah and in Jerusalem, +\v 7 and he said, “Woe is me! Why was I born to see the destruction of my people and the destruction of the holy city, and to dwell there when it was given into the hand of the enemy, the sanctuary into the hand of foreigners? +\v 8 Her temple has become like a man who was glorious. +\v 9 Her vessels of glory are carried away into captivity. Her infants are slain in her streets. Her young men are slain with the enemy’s sword. +\v 10 What nation has not inherited her palaces and taken possession of her spoils? +\v 11 Her adornment has all been taken away. Instead of a free woman, she has become a slave. +\v 12 Behold, our holy things, our beauty, and our glory are laid waste. The Gentiles have profaned them. +\v 13 Why should we live any longer?” +\p +\v 14 Mattathias and his sons tore their clothes, put on sackcloth, and mourned exceedingly. +\p +\v 15 And the king’s officers who were enforcing the apostasy came into the city Modin to sacrifice. +\v 16 Many of Israel came to them, and Mattathias and his sons were gathered together. +\v 17 The king’s officers answered and spoke to Mattathias, saying, “You are a ruler and an honorable and great man in this city, and strengthened with sons and kindred. +\v 18 Now therefore come first and do the commandment of the king, as all the nations have done, including the men of Judah and those who remain in Jerusalem. You and your house will be numbered among the king’s\f + \fr 2:18 \ft See 1 Maccabees 3:38; 10:10, etc.; Compare 1 Maccabees 10:65; 11:27; 2 Maccabees 8:9. \f* friends, and you and your sons will be honored with silver and gold and many gifts.” +\p +\v 19 And Mattathias answered and said with a loud voice, “If all the nations that are in the house of the king’s dominion listen to him, to fall away each one from the worship of his fathers, and have made choice to follow his commandments, +\v 20 yet I and my sons and my kindred will walk in the covenant of our fathers. +\v 21 Far be it from us that we should forsake the law and the ordinances. +\v 22 We will not listen to the king’s words, to turn aside from our worship, to the right hand, or to the left.” +\p +\v 23 When he had finished speaking these words, a Jew came in the sight of all to sacrifice on the altar which was at Modin, according to the king’s commandment. +\v 24 Mattathias saw it, so his zeal was kindled, and his guts trembled, and he vented his wrath according to judgment, and ran and killed him upon the altar. +\v 25 He killed the king’s officer, who compelled men to sacrifice, at the same time, and pulled down the altar. +\v 26 He was zealous for the law, even as Phinehas did to Zimri the son of Salu. +\p +\v 27 Mattathias cried out in the city with a loud voice, saying, “Whoever is zealous for the law and maintains the covenant, let him follow me!” +\v 28 He and his sons fled into the mountains, and left all that they had in the city. +\p +\v 29 Then many who sought justice and judgment went down into the wilderness to live there— +\v 30 they, their children, their wives, and their livestock—because evils were multiplied upon them. +\v 31 It was told the king’s officers and the forces that were in Jerusalem, the city of David, that certain men who had broken the king’s commandment had gone down into the secret places in the wilderness; +\v 32 and many pursued after them, and having overtaken them, they encamped against them and set the battle in array against them on the Sabbath day. +\v 33 They said to them, “Enough of this! Come out and do according to the word of the king, and you will all live!” +\p +\v 34 They said, “We won’t come out. We won’t do the word of the king, to profane the Sabbath day.” +\p +\v 35 Then the enemy hurried to attack them. +\p +\v 36 They didn’t answer them. They didn’t cast a stone at them, or block their secret places, +\v 37 saying, “Let’s all die in our innocence. Heaven and earth testify for us, that you put us to death unjustly.” +\p +\v 38 So they attacked them on the Sabbath, and they died—they, their wives, their children, and their livestock—in number a thousand souls of men. +\p +\v 39 When Mattathias and his friends found out about it, and they mourned over them exceedingly. +\v 40 One said to another, “If we all do as our kindred have done, and don’t fight against the Gentiles for our lives and our ordinances, they will quickly destroy us from off the earth.” +\v 41 So they decided that day, saying, “Whoever comes against us to battle on the Sabbath day, let’s fight against him, and we will in no way all die, as our kindred died in the secret places.” +\p +\v 42 Then a company of the Hasidaeans,\f + \fr 2:42 \ft That is, \fqa Chasidim. \f* mighty men of Israel, everyone who offered himself willingly for the law, were gathered together to them. +\v 43 All those who fled from the evils were added to them, and supported them. +\v 44 They mustered an army, and struck sinners in their anger, and lawless men in their wrath. The rest fled to the Gentiles for safety. +\v 45 And Mattathias and his friends went around and pulled down the altars. +\v 46 They forcibly circumcised the boys who were uncircumcised, as many as they found in the coasts of Israel. +\v 47 They pursued the arrogant, and the work prospered in their hand. +\v 48 They rescued the law out of the hand of the Gentiles and out of the hand of the kings. They never allowed the sinner to triumph. +\p +\v 49 The days of Mattathias drew near that he should die, and he said to his sons, “Now pride and scorn have gained strength. It is a season of overthrow and indignant wrath. +\v 50 Now, my children, be zealous for the law, and give your lives for the covenant of your fathers. +\v 51 Call to remembrance the deeds of our fathers which they did in their generations; and receive great glory and an everlasting name. +\v 52 Wasn’t Abraham found faithful in temptation, and it was reckoned to him for righteousness? +\v 53 Joseph in the time of his distress kept the commandment, and became lord of Egypt. +\v 54 Phinehas our father, because he was exceedingly zealous, obtained the covenant of an everlasting priesthood. +\v 55 Joshua became a judge in Israel for fulfilling the word. +\v 56 Caleb obtained a heritage in the land for testifying in the congregation. +\v 57 David inherited the throne of a kingdom forever and ever for being merciful. +\v 58 Elijah was taken up into heaven because he was exceedingly zealous for the law. +\v 59 Hananiah, Azariah, and Mishael believed, and were saved out of the flame. +\v 60 Daniel was delivered from the mouth of lions for his innocence. +\p +\v 61 “Thus consider from generation to generation that no one who put their trust in him will lack for strength. +\v 62 Don’t be afraid of the words of a sinful man; for his glory will be dung and worms. +\v 63 Today he will be lifted up, and tomorrow he will in no way be found, because he has returned to dust, and his thought has perished. +\v 64 You, my children, be strong, and show yourselves men on behalf of the law; for in it you will obtain glory. +\v 65 Behold, Simon your brother, whom I know to be a man of counsel. Always listen to him. He shall be a father to you. +\v 66 Judas Maccabaeus has been strong and mighty from his youth. He shall be your captain and shall fight\f + \fr 2:66 \ft Some ancient authorities read \fqa you shall fight. \f* the battle of the people. +\v 67 Rally around all the doers of the law, and avenge the wrong done to your people. +\v 68 Repay the Gentiles, and obey the commandments of the law.” +\p +\v 69 He blessed them, and was gathered to his ancestors. +\v 70 He died in\f + \fr 2:70 \ft circa B.C. 167. \f* the one hundred forty sixth year, and his sons buried him in the tombs of his ancestors at Modin. All Israel made great lamentation for him. +\c 3 +\p +\v 1 His son Judas, who was called Maccabaeus, rose up in his place. +\v 2 All his kindred helped him, and so did all those who joined with his father, and they fought with gladness the battle of Israel. +\v 3 He got his people great glory, and put on a breastplate like a giant, and bound his warlike harness around him, and set battles in array, protecting the army with his sword. +\v 4 He was like a lion in his deeds, and like a lion’s cub roaring for prey. +\v 5 He hunted and pursued the lawless, and he burned up those who troubled his people. +\v 6 The lawless shrunk back for fear of him, and all the workers of lawlessness were very troubled, and deliverance prospered in his hand. +\v 7 He angered many kings and made Jacob glad with his acts. His memory is blessed forever. +\v 8 He went through the cities of Judah, destroyed the ungodly out of the land, and turned away wrath from Israel. +\v 9 He was renowned to the utmost part of the earth. He gathered together those who were ready to perish. +\p +\v 10 Apollonius gathered the Gentiles together with a great army from Samaria to fight against Israel. +\v 11 Judas learned of it, and he went out to meet him, struck him, and killed him. Many fell wounded to death, and the rest fled. +\v 12 They took their spoils, and Judas took Apollonius’ sword, and he fought with it all his days. +\p +\v 13 Seron, the commander of the army of Syria, heard that Judas had gathered a large company, including a body of faithful men who stayed with him, went out to war. +\v 14 He said, “I will make myself a name and get myself glory in the kingdom. I will fight against Judas and those who are with him, who despise the king’s command. +\v 15 A mighty army of the ungodly went up with him to help him, to take vengeance on the children of Israel. +\p +\v 16 He came near to the ascent of Bethhoron, and Judas went out to meet him with a small company. +\v 17 But when they saw the army coming to meet them, they said to Judas, “What? Shall we be able, being a small company, to fight against so great and strong a multitude? We for our part are faint, having tasted no food this day.” +\p +\v 18 Judas said, “It is an easy thing for many to be hemmed in by the hands of a few. With\f + \fr 3:18 \ft Some ancient authorities read \fqa the God of heaven. \f* heaven it is all one, to save by many or by few; +\v 19 for victory in battle stands not in the multitude of an army, but strength is from heaven. +\v 20 They come to us in fullness of insolence and lawlessness, to destroy us and our wives and our children, and to plunder us, +\v 21 but we fight for our lives and our laws. +\v 22 He himself will crush them before our face; but as for you, don’t be afraid of them. +\p +\v 23 Now when he had finished speaking, he rushed suddenly against Seron and his army, and they were defeated before him. +\v 24 They pursued them down the descent of Bethhoron to the plain, and about eight hundred men of them fell; but the rest fled into the land of the Philistines. +\p +\v 25 The fear of Judas and his kindred, and the dread of them, began to fall on the nations around them. +\v 26 His fame reached the king, and every nation told of the battles of Judas. +\p +\v 27 But when King Antiochus heard these words, he was full of indignation; and he sent and gathered together all the forces of his realm, an exceedingly strong army. +\v 28 He opened his treasury and gave his forces pay for a year, and commanded them to be ready for every need. +\v 29 He saw that the money was gone from his treasures, and that the tributes of the country were small, because of the dissension and disaster which he had brought upon the land, to the end that he might take away the laws which had been from the first days. +\v 30 He was afraid that he wouldn’t have enough as at other times for the charges and the gifts which he used to give with a liberal hand, more abundantly than the kings who were before him. +\v 31 And he was exceedingly perplexed in his mind, and he determined to go into Persia, and to take the tributes of those countries, and to gather much money. +\v 32 He left Lysias, an honorable man, and one of royal lineage, to be over the affairs of the king from the river Euphrates to the borders of Egypt, +\v 33 and to bring up his son Antiochus, until he came again. +\v 34 He delivered to Lysias half of his forces and the elephants, and gave him charge of all the things that he would have done, and concerning those who lived in Judea and in Jerusalem, +\v 35 that he should send an army against them to root out and destroy the strength of Israel and the remnant of Jerusalem, and to take away their memory from the place, +\v 36 and that he should make foreigners live in all their territory, and should divide their land to them by lot. +\v 37 The king took the half that remained of the forces, and left Antioch, his royal city, in the one hundred forty seventh year;\f + \fr 3:37 \ft circa B.C. 166. \f* and he passed over the river Euphrates, and went through the upper countries. +\p +\v 38 Lysias chose Ptolemy the son of Dorymenes, Nicanor, and Gorgias, mighty men of the king’s friends;\f + \fr 3:38 \ft See 1 Maccabees 2:18. \f* +\v 39 and with them, he sent forty thousand infantry and seven thousand cavalry to go into the land of Judah and to destroy it, according to the word of the king. +\v 40 They set out with all their army, and came and encamped near Emmaus in the plain country. +\v 41 The merchants of the country heard of their fame, and took silver and gold in large quantities, and fetters,\f + \fr 3:41 \ft Most of the authorities read \fqa servants. \f* and came into the camp to take the children of Israel for slaves. Forces of Syria and of the land of the Philistines\f + \fr 3:41 \ft Gr. \fqa foreigners. \f* joined with them. +\p +\v 42 Judas and his kindred saw that evils were multiplied, and that the forces were encamping in their borders. They learned about the king’s words which he had commanded, to destroy the people and make an end of them. +\v 43 Then they each said to his neighbor, “Let’s repair the ruins of our people. Let’s fight for our people and the holy place.” +\v 44 The congregation was gathered together, that they might be ready for battle, and that they might pray and ask for mercy and compassion. +\v 45 Jerusalem was without inhabitant like a wilderness. There was none of her offspring who went in or went out. The sanctuary was trampled down. Children of foreigners were in the citadel. The Gentiles lived there. Joy was taken away from Jacob, and the pipe and the harp ceased. +\v 46 They gathered themselves together, and came to Mizpeh, near Jerusalem; for in Mizpeh there used to be a place of prayer for Israel. +\v 47 They fasted that day, put on sackcloth, put ashes on their heads, tore their clothes, +\v 48 and opened the book of the law, to learn about the things for which the Gentiles consulted the images of their idols. +\v 49 They brought the priests’ garments, the first fruits, and the tithes. They stirred up the Nazarites, who had accomplished their days. +\v 50 They cried aloud toward heaven, saying, “What should we do with these men? Where should we carry them away? +\v 51 Your holy place is trampled down and profaned. Your priests mourn in humiliation. +\v 52 Behold, the Gentiles are assembled together against us to destroy us. You know what things they imagine against us. +\v 53 How will we be able to stand against them, unless you help us?” +\v 54 They sounded with the trumpets, and gave a loud shout. +\p +\v 55 And after this Judas appointed leaders of the people: captains of thousands, captains of hundreds, captains of fifties, and captains of tens. +\v 56 He said to those who were building houses, were betrothing wives, were planting vineyards, and were fearful, that they should return, each man to his own house, according to the law. +\v 57 The army marched out and encamped upon the south side of Emmaus. +\v 58 Judas said, “Arm yourselves and be valiant men! Be ready in the morning to fight with these Gentiles who are assembled together against us to destroy us and our holy place. +\v 59 For it is better for us to die in battle than to see the calamities of our nation and the holy place. +\v 60 Nevertheless, as may be the will in heaven, so shall he do. +\c 4 +\p +\v 1 Gorgias took five thousand infantry, a thousand chosen cavalry, and the army moved out at night, +\v 2 that it might fall upon the army of the Jews and strike them suddenly. The men of the citadel were his guides. +\v 3 Judas heard of this, and he and the valiant men moved, that he might strike the king’s army which was at Emmaus +\v 4 while the forces were still dispersed from the camp. +\v 5 Gorgias came into the camp of Judas at night and found no man. He sought them in the mountains; for he said, “These men are running away from us.” +\p +\v 6 As soon as it was day, Judas appeared in the plain with three thousand men. However they didn’t have the armor and swords they desired. +\v 7 They saw the camp of the Gentiles strong and fortified, with cavalry all around it; and these were expert in war. +\v 8 Judas said to the men who were with him, “Don’t be afraid of their numbers, or when they charge. +\v 9 Remember how our fathers were saved in the Red sea, when Pharaoh pursued them with an army. +\v 10 Now let’s cry to heaven, if he will have us, and will remember the covenant of our fathers, and destroy this army before our face today. +\v 11 Then all the Gentiles will know that there is one who redeems and saves Israel. +\p +\v 12 The foreigners lifted up their eyes, and saw them coming near them. +\v 13 They went out of the camp to battle. Those who were with Judas sounded their trumpets +\v 14 and joined battle. The Gentiles were defeated, and fled into the plain. +\v 15 But all those in the rear fell by the sword. They pursued them to\f + \fr 4:15 \ft Gr. \fqa Gazera. \f* Gazara, and to the plains of Idumaea, Azotus, and Jamnia. About three thousand of those men fell. +\v 16 Then Judas and his army returned from pursuing them; +\v 17 and he said to the people, “Don’t be greedy for the spoils, because there is a battle before us. +\v 18 Gorgias and his army are near us on the mountain. But stand now against our enemies and fight against them, and afterwards take the spoils with boldness.” +\v 19 While Judas was finishing this speech, a part of them appeared looking out from the mountain. +\v 20 They saw that their army had been put to flight, and that the Jews were burning the camp; for the smoke that was seen declared what was done. +\v 21 But when they perceived these things, they were very afraid. Perceiving also the army of Judas in the plain ready for battle, +\v 22 they all fled into the land of the\f + \fr 4:22 \ft Gr. \fqa foreigners. \f* Philistines. +\v 23 Judas returned to plunder the camp, and they took much gold, silver, blue, sea purple, and great riches. +\v 24 Then they returned home, and sang a song of thanksgiving, and gave praise to heaven, because he is good, because his mercy endures forever. +\v 25 Israel had a great deliverance that day. +\p +\v 26 The foreigners who had escaped came and told Lysias all the things that had happened. +\v 27 When he heard of it, he was confounded and discouraged, because the things he desired had not been done to Israel, nor had such things happened as the king commanded him. +\p +\v 28 In the next year, he gathered together sixty thousand chosen infantry and five thousand cavalry, that he might subdue them. +\v 29 They came into Idumaea and encamped at Bethsura. Judas met them with ten thousand men. +\v 30 He saw that the army was strong, and he prayed and said, “Blessed are you, O Savior of Israel, who defeated the attack of the mighty warrior by the hand of your servant David, and delivered the army of the\f + \fr 4:30 \ft Gr. \fqa foreigners. \f* Philistines into the hands of Jonathan the son of Saul, and of his armor bearer. +\v 31 Hem in this army in the hand of your people Israel, and let them be ashamed for their army and their cavalry. +\v 32 Give them faintness of heart. Cause the boldness of their strength to melt away, and let them quake at their destruction. +\v 33 Strike them down with the sword of those who love you, and let all who know your name praise you with thanksgiving.” +\p +\v 34 They joined in battle; and about five thousand men of Lysias’ army fell. They fell down near them. +\v 35 But when Lysias saw that his troops were put to flight, and the boldness that had come upon those who were with Judas, and how they were ready either to live or to die nobly, he withdrew to Antioch, and gathered together hired soldiers, that he might come again into Judea with an even greater army. +\p +\v 36 But Judas and his kindred said, “Behold, our enemies are defeated. Let’s go up to cleanse the holy place and to rededicate it.” +\v 37 All the army was gathered together, and they went up to mount Zion. +\v 38 They saw the sanctuary laid desolate, the altar profaned, the gates burned up, shrubs growing in the courts as in a forest or as on one of the mountains, and the priests’ chambers pulled down; +\v 39 and they tore their clothes, made great lamentation, put ashes upon their heads, +\v 40 fell on their faces to the ground, \f + \fr 4:40 \ft Compare Numbers 31:6. \f*blew with the solemn trumpets,\f + \fr 4:40 \ft Gr. \fqa trumpets of signals. \f* and cried toward heaven. +\v 41 Then Judas appointed certain men to fight against those who were in the citadel until he had cleansed the holy place. +\p +\v 42 He chose blameless priests who were devoted to the law; +\v 43 and they cleansed the holy place and carried the defiled stones out to an unclean place. +\v 44 They deliberated what to do with the altar of burnt offerings, which had been profaned. +\v 45 A good plan came into their mind, that they should pull it down, lest it would be a reproach to them, because the Gentiles had defiled it. So they pulled down the altar +\v 46 and laid up the stones on the temple hill in a convenient place, until a prophet would come to give an answer concerning them. +\v 47 They took whole stones according to the law, and built a new altar like the former. +\v 48 They built the holy place and the inner parts of the house; and they consecrated the courts. +\v 49 They made new holy vessels, and they brought the lampstand, the altar of incense, and the table into the temple. +\v 50 They burned incense on the altar, and they lit the lamps that were upon the lampstand, and they gave light in the temple. +\v 51 They set loaves upon the table, hung up the curtains, and finished all the work which they had done. +\p +\v 52 They rose up early in the morning, on the twenty-fifth day of the ninth month, which is the month Chislev, in\f + \fr 4:52 \ft circa B.C. 165. \f* the one hundred forty eighth year, +\v 53 and offered sacrifice according to the law on the new altar of burnt offerings which they had made. +\v 54 At the time and day the Gentiles had profaned it, even then it was dedicated with songs, harps, lutes, and with cymbals. +\v 55 All the people fell on their faces, worshiped, and gave praise toward heaven, which had given them good success. +\v 56 They celebrated the dedication of the altar eight days, and offered burnt offerings with gladness, and sacrificed a sacrifice of deliverance and praise. +\v 57 They decorated the front of the temple with crowns of gold and small shields. They dedicated the gates and the priests’ chambers, and made doors for them. +\v 58 There was exceedingly great gladness among the people, and the reproach of the Gentiles was turned away. +\p +\v 59 Judas and his kindred and the whole congregation of Israel ordained that the days of the dedication of the altar should be kept in their seasons from year to year for eight days, from the twenty-fifth day of the month Chislev, with gladness and joy. +\p +\v 60 At that time, they fortified mount Zion with high walls and strong towers around it, lest perhaps the Gentiles might come and trample them down, as they had done before. +\v 61 Judas stationed a garrison to guard it. They fortified Bethsura to keep it, that the people might have a stronghold near Idumaea. +\c 5 +\p +\v 1 It came to pass, when the Gentiles all around heard that the altar had been rebuilt and the sanctuary dedicated as before, they were exceedingly angry. +\v 2 They took counsel to destroy the race of Jacob that was in the midst of them, and they began to kill and destroy among the people. +\v 3 Judas fought against the children of Esau in Idumaea at Akrabattine, because they besieged Israel. He struck them with a great slaughter, humbled them, and took their spoils. +\v 4 He remembered the wickedness of the children of\f + \fr 5:4 \ft Compare 2 Maccabees 10:18-23. \f* Baean, who were a snare and a stumbling block to the people, lying in wait for them on the highways. +\v 5 They were shut up by him in the towers. He encamped against them, and destroyed them utterly, and burned with fire the towers of the place with all who were in them. +\v 6 He passed over to the children of Ammon, and found a mighty band and many people, with Timotheus for their leader. +\v 7 He fought many battles with them, and they were defeated before his face. He struck them, +\v 8 and took possession of Jazer and its villages,\f + \fr 5:8 \ft Gr. \fqa daughters. \ft Compare Numbers 21:25. \f* and returned again into Judea. +\p +\v 9 The Gentiles who were in Gilead gathered themselves together against the Israelites who were on their borders, to destroy them. They fled to the stronghold of Dathema, +\v 10 and sent letters to Judas and his kindred, saying, “The Gentiles who are around us are gathered together against us to destroy us. +\v 11 They are preparing to come and get possession of the stronghold where we fled for refuge, and Timotheus is the leader of their army. +\v 12 Now therefore come and deliver us from their hand, for many of us have fallen. +\v 13 All our kindred who were in the land of \f + \fr 5:13 \ft Compare 2 Maccabees 12:17. \f*Tubias have been put to death. They have carried their wives, their children, and their stuff into captivity. They destroyed about a thousand men there.” +\p +\v 14 While the letters were still being read, behold, other messengers came from Galilee with their clothes torn, bringing a similar report, +\v 15 saying, “People of Ptolemais, of Tyre, of Sidon, and all Galilee of the\f + \fr 5:15 \ft Gr. \fqa foreigners. \f* Gentiles have gathered together to destroy us.” +\p +\v 16 Now when Judas and the people heard these words, a great congregation assembled together to determine what they should do for their kindred who were in distress and under attack. +\v 17 Judas said to Simon his brother, “Choose men and go deliver your kindred who are in Galilee, but Jonathan my brother and I will go into the land of Gilead.” +\v 18 He left Joseph the son of Zacharias, and Azarias, as leaders of the people, with the remnant of the army, in Judea, to guard it. +\v 19 He commanded them, saying, “Take charge of this people, and fight no battle with the Gentiles until we return.” +\v 20 Then three thousand men were assigned to go into Galilee with Simon, but eight thousand men were assigned to Judas to go into the land of Gilead. +\p +\v 21 Simon went into Galilee and fought many battles with the Gentiles, and the Gentiles were defeated before him. +\v 22 He pursued them to the gate of Ptolemais. About three thousand men of the Gentiles fell, and he took their spoils. +\v 23 They took to them those who were in Galilee and in Arbatta, with their wives, their children, and all that they had, and brought them into Judea with great gladness. +\v 24 Judas Maccabaeus and his brother Jonathan passed over the Jordan, and went three days’ journey in the wilderness. +\v 25 They met with the Nabathaeans, and these met them in a peaceful manner and told them all things that had happened to their kindred in the land of Gilead, +\v 26 and how many of them were shut up in Bosora, Bosor, Alema,\f + \fr 5:26 \ft Compare 2 Maccabees 12:13. \f* Casphor, Maked, and\f + \fr 5:26 \ft compare 2 Maccabees 12:21. \f* Carnaim—all these cities are strong and large— +\v 27 and how they were shut up in the rest of the cities of the land of Gilead, and that tomorrow they planned to encamp against the strongholds, and to take them, and to destroy all these men in one day. +\p +\v 28 Judas and his army turned suddenly by the way of the wilderness to Bosora; and he took the city, and killed all the males with the edge of the sword, took all their spoils, and burned the city with fire. +\v 29 He left there at night, and went until he came to the stronghold. +\v 30 When the morning came, they lifted up their eyes and saw many people who couldn’t be counted, bearing ladders and engines of war, to take the stronghold; and they were fighting against them. +\v 31 Judas saw that the battle had begun, and that the cry of the city went up to heaven, with trumpets and a great sound, +\v 32 and he said to the men of his army, “Fight today for your kindred!” +\v 33 Then he went out behind them in three companies. They sounded with their trumpets and cried out in prayer. +\v 34 And the army of Timotheus perceived that it was Maccabaeus, and they fled from before him. He struck them with a great slaughter. About eight thousand men of them fell on that day. +\p +\v 35 He turned away to Mizpeh and fought against it, took it, killed all its males, took its spoils, and burned it with fire. +\v 36 From there he marched and took\f + \fr 5:36 \ft See 1 Maccabees 5:26 \f* Casphor, Maked, Bosor, and the other cities of the land of Gilead. +\p +\v 37 Now after these things, Timotheus gathered another army and encamped near Raphon beyond the brook. +\v 38 Judas sent men to spy on the army; and they brought him word, saying, “All the Gentiles who are around us are gathered together to them, an exceedingly great army. +\v 39 They have hired Arabians to help them, and are encamped beyond the brook, ready to come against you to battle.” So Judas went to meet them. +\p +\v 40 Timotheus said to the captains of his army when Judas and his army drew near to the brook of water, “If he crosses over to us first, we won’t be able to withstand him, for he will certainly defeat us; +\v 41 but if he is afraid, and encamps beyond the river, we will cross over to him, and defeat him.” +\v 42 Now when Judas came near to the water brook, he caused the scribes of the people to remain by the brook, and commanded them, saying, “Allow no man to encamp, but let all come to the battle.” +\v 43 Then he crossed over the first against them, and all the people after him; and all the Gentiles were defeated before his face, and threw away their weapons, and fled to the temple at \f + \fr 5:43 \ft See 1 Maccabees 5:26. \f*Carnaim. +\v 44 They took the city and burned the temple with fire, together with all who were in it. Carnaim was subdued. They couldn’t stand any longer before the face of Judas. +\p +\v 45 Judas gathered together all Israel, those who were in the land of Gilead, from the least to the greatest, with their wives, their children, and their stuff, an exceedingly great army, that they might come into the land of Judah. +\v 46 They came as far as Ephron, and this same city was large and very strong. It was on the road where they were going. They couldn’t turn away from it on the right hand or on the left, but needed to pass through the middle of it. +\v 47 The people of the city shut them out and blocked the gates with stones. +\v 48 Judas sent to them with words of peace, saying, “We will pass through your land to go into our own land, and no one will harm you. We will only pass by on our feet.” But they wouldn’t open to him. +\v 49 Then Judas commanded proclamation to be made in the army, that each man should encamp in the place where he was. +\v 50 So the men of the army encamped, and fought against the city all that day and all that night, and the city was delivered into his hands. +\v 51 He destroyed all the males with the edge of the sword, razed the city, took its plunder, and passed through the city over those who were slain. +\v 52 They went over the Jordan into the great plain near Bethshan. +\v 53 And Judas gathered together those who lagged behind and encouraged the people all the way through, until he came into the land of Judah. +\v 54 They went up to mount Zion with gladness and joy, and offered whole burnt offerings, because not so much as one of them was slain until they returned in peace. +\p +\v 55 In the days when Judas and Jonathan were in the land of Gilead, and Simon his brother in Galilee before Ptolemais, +\v 56 Joseph the son of Zacharias, and Azarias, rulers of the army, heard of their exploits and of the war, and what things they had done. +\v 57 They said, “Let’s also get us a name, and let’s go fight against the Gentiles who are around us.” +\v 58 So they gave orders to the men of the army that was with them, and went toward Jamnia. +\v 59 Gorgias and his men came out of the city to meet them in battle. +\v 60 Joseph and Azarias were put to flight, and were pursued to the borders of Judea. About two thousand men of Israel fell on that day. +\v 61 There was a great overthrow among the people, because they didn’t listen to Judas and his kindred, thinking to do some exploit. +\v 62 But they were not of the family of those men by whose hand deliverance was given to Israel. +\p +\v 63 The man Judas and his kindred were glorified exceedingly in the sight of all Israel, and of all the Gentiles, wherever their name was heard of. +\v 64 Men gathered together to them, acclaiming them. +\p +\v 65 Judas and his kindred went out and fought against the children of Esau in the land toward the south. He struck Hebron and its villages,\f + \fr 5:65 \ft Gr. \fqa daughters. \ft Compare Numbers 21:25. \f* pulled down its strongholds, and burned its towers all around. +\v 66 He marched to go into the land of the\f + \fr 5:66 \ft Gr. \fqa foreigners. \f* Philistines, and he went through\f + \fr 5:66 \ft Or, \fqa Marisa \ft See Josephus, Antiquities 12:8. 6, and 2 Maccabees 12:35. \f* Samaria. +\v 67 In that day certain priests, desiring to do exploits there, were slain in battle, when they went out to battle unadvisedly. +\v 68 But Judas turned toward Azotus, to the land of the\f + \fr 5:68 \ft Gr. \fqa foreigners. \f* Philistines, pulled down their altars, burned the carved images of their gods with fire, took the plunder of their cities, and returned into the land of Judah. +\c 6 +\p +\v 1 King Antiochus was traveling through the upper countries; and he heard that in Elymais in Persia there was a city renowned for riches, for silver and gold, +\v 2 and that the temple which was in it was exceedingly rich, and that in it were golden shields, breastplates, and weapons which Alexander, son of Philip, the Macedonian king, who reigned first among the Greeks, left behind there. +\v 3 So he came and tried to take the city and to pillage it; and he was not able, because his plan was known to them of the city, +\v 4 and they rose up against him in battle. He fled and returned to Babylon with great disappointment. +\p +\v 5 Then someone came into Persia bringing him news that the armies which went against the land of Judah had been put to flight, +\v 6 and that Lysias went first with a strong army and was put to shame before them, and that they had grown strong because of weapons, power, and a supply of plunder which they took from the armies that they had cut off, +\v 7 and that they had pulled down the abomination which he had built upon the altar that was in Jerusalem, and that they had surrounded the sanctuary with high walls, as before, and also Bethsura, his city. +\p +\v 8 It came to pass, when the king heard these words, he was astonished and moved exceedingly. He laid himself down on his bed, and fell sick for grief, because it had not turned out for him as he had planned. +\v 9 He was there many days, because great grief continually gripped him, and he realized that he would die. +\v 10 He called for all his\f + \fr 6:10 \ft See 1 Maccabees 2:18. \f* friends, and said to them, “Sleep departs from my eyes, and my heart fails because of worry. +\v 11 I said in my heart, ‘To what suffering I have come! How great a flood it is that I’m in, now! For I was gracious and loved in my power.’ +\v 12 But now I remember the evils which I did at Jerusalem, and that I took all the vessels of silver and gold that were in it, and sent out to destroy the inhabitants of Judah without a cause. +\v 13 I perceive that it is because of this that these evils have come upon me. Behold, I am perishing through great grief in a strange land.” +\p +\v 14 Then he called for Philip, one of his\f + \fr 6:14 \ft See 1 Maccabees 2:18. \f* friends, and set him over all his kingdom. +\v 15 He gave him his crown, his robe, and his signet ring, so that he could guide Antiochus his son, and nourish him up that he might be king. +\v 16 Then King Antiochus died there in the one hundred forty-ninth year.\f + \fr 6:16 \ft Circa B.C. 164.\f* +\v 17 When Lysias learned that the king was dead, he set up Antiochus his son to reign, whom he had nourished up being young, and he called his name Eupator. +\p +\v 18 Those who were in the citadel kept hemming Israel in around the sanctuary, and always sought to harm them and to strengthen the Gentiles. +\v 19 Judas planned to destroy them, and called all the people together to besiege them. +\v 20 They were gathered together, and besieged them in\f + \fr 6:20 \ft circa B.C. 163. \f* the one hundred fiftieth year, and he made mounds to shoot from, and engines of war. +\v 21 Some of those who were hemmed in came out, and some of the ungodly men of Israel were joined to them. +\v 22 They went to the king, and said, “How long will you not execute judgment, and avenge our kindred? +\v 23 We were willing to serve your father and to live by his words, and to follow his commandments. +\v 24 Because of this, the children of our people besieged the citadel\f + \fr 6:24 \ft Gr. \fqa it. \f* and were alienated from us; but as many of us as they could catch, they killed, and plundered our inheritances. +\v 25 Not against us only did they stretch out their hand, but also against all their borders. +\v 26 Behold, they are encamped this day against the citadel at Jerusalem to take it. They have fortified the sanctuary and Bethsura. +\v 27 If you don’t quickly prevent them, they will do greater things than these, and you won’t be able to control them. +\p +\v 28 When the king heard this, he was angry, and gathered together all his\f + \fr 6:28 \ft See 1 Maccabees 2:18. \f* friends, the rulers of his army, and those who were over the cavalry. +\v 29 Bands of hired soldiers came to him from other kingdoms and from islands of the sea. +\v 30 The number of his forces was one hundred thousand infantry, and twenty thousand cavalry, and thirty-two elephants trained for war. +\v 31 They went through Idumaea, and encamped against Bethsura, and fought against it many days, and made engines of war. The Jews came out and burned them with fire, and fought valiantly. +\p +\v 32 Judas marched away from the citadel and encamped at Bethzacharias, near the king’s camp. +\v 33 The king rose early in the morning, and marched his army\f + \fr 6:33 \ft Or, \fqa itself eager for the fight \f* at full speed along the road to Bethzacharias. His forces made themselves ready to battle and sounded their trumpets. +\v 34 They offered the elephants the juice of grapes and mulberries, that they might prepare them for the battle. +\v 35 They distributed the animals among the phalanxes. They set by each elephant a thousand men armed with coats of mail and helmets of brass on their heads. Five hundred chosen cavalry were appointed for each elephant. +\v 36 These were ready beforehand, wherever the elephant was. Wherever the elephant went, they went with it. They didn’t leave it. +\v 37 Strong, covered wooden towers were upon them, one upon each elephant, fastened upon it with secure harnesses. Upon each were four valiant men who fought upon them, beside his Indian driver. +\v 38 The rest of the cavalry he set on this side and that side on the two flanks of the army, striking terror into the enemy, and protected by the phalanxes. +\v 39 Now when the sun shone upon the shields of gold and brass, the mountains lit up, and blazed like flaming torches. +\p +\v 40 A part of the king’s army was spread upon the high hills and some on the low ground, and they went on firmly and in order. +\v 41 All who heard the noise of their multitude, the marching of the multitude, and the rattling of the weapons trembled; for the army was exceedingly great and strong. +\v 42 Judas and his army drew near for battle, and six hundred men of the king’s army fell. +\v 43 Eleazar, who was called Avaran, saw one of the animals armed with royal breastplates, and it was taller than all the animals, and the king seemed to be on it. +\v 44 He gave his life to deliver his people, and to get himself an everlasting name. +\v 45 He ran upon him courageously into the midst of the phalanx, and killed on the right hand and on the left, and they parted away from him on this side and on that. +\v 46 He crept under the elephant, and stabbed it from beneath, and killed it. The elephant fell to the earth upon him, and he died there. +\v 47 They saw the strength of the kingdom and the fierce attack of the army, and turned away from them. +\p +\v 48 But the soldiers of the king’s army went up to Jerusalem to meet them, and the king encamped toward Judea and toward mount Zion. +\v 49 He made peace with the people of Bethsura. He came out of the city because they had no food there to endure the siege, because it was a Sabbath to the land. +\v 50 The king took Bethsura, and appointed a garrison there to keep it. +\v 51 He encamped against the sanctuary many days; and set there mounds to shoot from, and engines of war, and machines for throwing fire and stones, and weapons to throw darts, and slings. +\v 52 The Jews also made engines of war against their engines, and fought for many days. +\v 53 But there was no food in the sanctuary, because it was the seventh year, and those who fled for safety into Judea from among the Gentiles had eaten up the rest of the stores. +\v 54 There were only a few people left in the sanctuary, because the famine prevailed against them, and they were scattered, each man to his own place. +\p +\v 55 Lysias heard that Philip, whom Antiochus the king, while he was yet alive, appointed to raise his son Antiochus to be king, +\v 56 had returned from Persia and Media, and with him the forces that went with the king, and that he was seeking to take control of the government. +\v 57 He made haste, and gave orders to depart. He said to the king and the leaders of the army and to the men, “We get weaker daily, our food is scant, the place where we encamp is strong, and the affairs of the kingdom lie upon us. +\v 58 Now therefore let’s negotiate with these men, and make peace with them and with all their nation, +\v 59 and covenant with them, that they may walk after their own laws, as before; for because of their laws which we abolished they were angered, and did all these things.” +\p +\v 60 The speech pleased the king and the princes, and he sent to them to make peace; and they accepted it. +\v 61 The king and the princes swore to them. On these conditions, they came out from the stronghold. +\v 62 Then the king entered into mount Zion. He saw the strength of the place, and broke the oath which he had sworn, and gave orders to pull down the wall all around. +\v 63 Then he left in haste and returned to Antioch, and found Philip master of the city. He fought against him, and took the city by force. +\c 7 +\p +\v 1 In the one hundred fifty first year,\f + \fr 7:1 \ft circa B.C. 162. \f* Demetrius the son of Seleucus came out of Rome, and went up with a few men to a city by the sea, and reigned there. +\v 2 It came to pass, when he would go into the house of the kingdom of his fathers, that the army laid hands on Antiochus and Lysias, to bring them to him. +\v 3 The thing became known to him, and he said, “Don’t show me their faces!” +\v 4 So the army killed them. Then Demetrius sat upon the throne of his kingdom. +\p +\v 5 All the lawless and ungodly men of Israel came to him. Alcimus was their leader, desiring to be high priest. +\v 6 They accused the people to the king, saying, “Judas and his kindred have destroyed all your friends, and have scattered us from our own land. +\v 7 Now therefore send a man whom you trust, and let him go and see all the destruction which he has brought on us and the king’s country, and how he has punished them and all who helped them.” +\v 8 So the king chose Bacchides, one of the king’s\f + \fr 7:8 \ft See 1 Maccabees 2:18. \f* friends, who was ruler in the country beyond the river, and was a great man in the kingdom, and faithful to the king. +\v 9 He sent him and that ungodly Alcimus, whom he made the high priest; and he commanded him to take vengeance upon the children of Israel. +\p +\v 10 They marched away and came with a great army into the land of Judah. He sent messengers to Judas and his kindred with words of peace deceitfully. +\v 11 They paid no attention to their words; for they saw that they had come with a great army. +\v 12 A group of scribes gathered together to Alcimus and Bacchides to seek just terms. +\v 13 The\f + \fr 7:13 \ft That is, Chasidim. \f* Hasidaeans were the first among the children of Israel who sought peace from them, +\v 14 for they said, “One who is a priest of the seed of Aaron has come with the army, and he will do us no wrong.” +\v 15 He spoke with them words of peace, and swore to them, saying, “We won’t seek to harm you or your friends.” +\v 16 They trusted him. Then he seized sixty men of them, and killed them in one day, according to the word which was written, +\q1 +\v 17 \f + \fr 7:17 \ft Psalms 79:2, 3. \f*The flesh of your saints +\q2 and their blood was shed all around Jerusalem, +\q2 and there was no one to bury them. +\p +\v 18 The fear and the dread of them fell upon all the people, for they said, “There is neither truth nor justice in them; for they have broken the covenant and the oath which they swore.” +\v 19 Bacchides withdrew from Jerusalem, and encamped in Bezeth. He sent and seized many of the deserters who were with him, and some of the people, and he killed them, throwing them into a large pit. +\v 20 He placed Alcimus in charge of the country and left with him a force to aid him. Then Bacchides went away to the king. +\p +\v 21 Alcimus struggled to maintain his high priesthood. +\v 22 All those who troubled their people joined him, and they took control of the land of Judah, and did great damage in Israel. +\v 23 Judas saw all the wrongs that Alcimus and his company had done among the children of Israel, even more than the Gentiles. +\v 24 He went out into all the borders of Judea and took vengeance on the men who had deserted from him, and they were restrained from going out into the country. +\v 25 But when Alcimus saw that Judas and his company had grown strong, and knew that he was not able to withstand them, he returned to the king, and brought evil accusations against them. +\p +\v 26 \f + \fr 7:26 \ft See 2 Maccabees 14:12. \f*Then the king sent Nicanor, one of his honorable princes, a man who hated Israel and was their enemy, and commanded him to destroy the people. +\v 27 Nicanor came to Jerusalem with a great army. He sent to Judas and his kindred deceitfully with words of peace, saying, +\v 28 “Let there be no battle between me and you; I will come with a few men, that I may see your faces in peace.” +\v 29 He came to Judas, and they saluted one another peaceably. The enemies were ready to seize Judas by violence. +\v 30 This was known to Judas, that he came to him with deceit, and he was very afraid of him, and would see his face no more. +\v 31 Nicanor found out that his plan was disclosed; and he went out to meet Judas in battle beside Capharsalama. +\v 32 About five hundred men of Nicanor’s army fell, and the rest fled into the city of David. +\p +\v 33 After these things, Nicanor went up to mount Zion. Some of the priests came out of the sanctuary, with some of the elders of the people, to salute him peaceably, and to show him the whole burned sacrifice that was being offered for the king. +\v 34 He mocked them, laughed at them, derided them shamefully,\f + \fr 7:34 \ft Gr. \fqa polluted them. \f* spoke arrogantly, +\v 35 and swore in a rage, saying, “Unless Judas and his army are now delivered into my hands, it shall be that, if I return safely, I will burn up this house!” And he went out in a great rage. +\v 36 The priests entered in, and stood before the altar and the temple; and they wept, and said, +\v 37 “You chose this house to be called by your name, to be a house of prayer and supplication for your people. +\v 38 Take vengeance on this man and his army, and let them fall by the sword. Remember their blasphemies, and don’t allow them to live any longer.” +\p +\v 39 Then Nicanor went out from Jerusalem and encamped in Bethhoron, and there the Syrian army met him. +\v 40 Judas encamped in Adasa with three thousand men. Judas prayed and said, +\v 41 “When those who came from the king blasphemed, your angel went out, and struck among them one hundred eighty-five thousand. +\v 42 Even so, crush this army before us today, and let all the rest know that he has spoken wickedly against your sanctuary. Judge him according to his wickedness.” +\v 43 On the thirteenth day of the month Adar, the armies met in battle. Nicanor’s army was defeated, and he himself was the first to fall in the battle. +\v 44 Now when his army saw that Nicanor had fallen, they threw away their weapons and fled. +\v 45 They pursued them a day’s journey from Adasa until you come to\f + \fr 7:45 \ft Gr. \fqa Gazera. \f* Gazara, and they sounded an alarm after them with the signal trumpets. +\v 46 Men came out of all the surrounding villages of Judea, and outflanked them. These turned them back on those, and they all fell by the sword. There wasn’t one of them left. +\v 47 The Jews took the spoils and the booty, and they cut off Nicanor’s head and his right hand, which he had stretched out so arrogantly, and brought them, and hung them up beside Jerusalem. +\v 48 The people were exceedingly glad, and they kept that day as a day of great gladness. +\v 49 \f + \fr 7:49 \ft See 2 Maccabees 15:36. \f*They ordained to keep this day year by year on the thirteenth day of Adar. +\v 50 So the land of Judah had rest a few days. +\c 8 +\p +\v 1 Judas heard of the fame of the Romans, that they are valiant men, and have pleasure in all who join themselves to them, and make friends with all who come to them, +\v 2 and that they are valiant men. They told him of their wars and exploits which they do among the Gauls, and how they conquered them, and forced them to pay tribute; +\v 3 and what things they did in the land of Spain, that they might take control of the silver and gold mines which were there; +\v 4 and how by their policy and persistence they conquered all the place (and the place was exceedingly far from them), and the kings who came against them from the uttermost part of the earth, until they had defeated them, and struck them severely; and how the rest give them tribute year by year. +\v 5 Philip, and Perseus, king of Chittim, and those who lifted up themselves against them, they defeated in battle, and conquered them. +\v 6 Antiochus also, the great king of Asia, came against them to battle, having one hundred twenty elephants, with cavalry, chariots, and an exceedingly great army, and he was defeated by them. +\v 7 They took him alive, and decreed that both he and those who reigned after him should give them a great tribute, and should give hostages, and a parcel of land from the best of their provinces: +\v 8 the countries of India, Media, and Lydia. They took them from him, and gave them to King Eumenes. +\v 9 Judas heard how the Greeks planned to come and destroy them, +\v 10 but this became known to them, and they sent against them a general who fought against them, and many of them fell down wounded to death, and they made captive their wives and their children, and plundered them, and conquered their land, and pulled down their strongholds, and plundered them, and brought them into bondage to this day. +\v 11 The remaining kingdoms and islands, as many as rose up against them at any time, they destroyed and made them to be their servants; +\v 12 but with their friends and those who relied on them they stayed friends. They conquered the kingdoms that were near and those that were far off, and all that heard of their fame were afraid of them. +\v 13 Moreover, whoever they desired to help and to make kings, these they make kings; and whoever they desired, they depose. They are exalted exceedingly. +\v 14 For all this, none of them ever put on a crown, neither did they clothe themselves with purple, as a display of grandeur. +\v 15 Judas heard how they had made for themselves a senate house, and day by day, three hundred twenty men sat in council, consulting always for the people, to the end they might be well governed, +\v 16 and how they commit their government to one man year by year, that he should rule over them, and control all their country, and all are obedient to that one, and there is neither envy nor emulation among them. +\p +\v 17 So Judas chose Eupolemus the son of John, the son of Accos, and Jason the son of Eleazar, and sent them to Rome, to establish friendship and alliance with them, +\v 18 and that they should free the yoke from themselves; for they saw that the kingdom of the Greeks kept Israel in bondage. +\v 19 Then they went to Rome, a very long journey, and they entered into the senate house, and said, +\v 20 “Judas, who is also called Maccabaeus, and his kindred, and the people of the Jews, have sent us to you, to make an alliance and peace with you, and that we might be registered as your allies and friends.” +\p +\v 21 This thing was pleasing to them. +\v 22 This is the copy of the writing which they wrote back again on tables of brass, and sent to Jerusalem, that it might be with them there for a memorial of peace and alliance: +\p +\v 23 “Good success be to the Romans, and to the nation of the Jews, by sea and by land forever. May the sword and the enemy be far from them. +\v 24 But if war arises for Rome first, or any of their allies in all their dominion, +\v 25 the nation of the Jews shall help them as allies, as the occasion shall indicate to them, with all their heart. +\v 26 To those who make war upon them, they shall not give supplies, food, weapons, money, or ships, as it has seemed good to Rome, and they shall keep their ordinances without taking anything in return. +\v 27 In the same way, moreover, if war comes first upon the nation of the Jews, the Romans shall willingly help them as allies, as the occasion shall indicate to them; +\v 28 and to those who are fighting with them, there shall not be given food, weapons, money, or ships, as it has seemed good to Rome. They shall keep these ordinances, and that without deceit. +\v 29 According to these terms, the Romans made a treaty with the Jewish people. +\v 30 But if hereafter the one party and the other shall determine to add or diminish anything, they shall do it at their pleasure, and whatever they add or take away shall be ratified. +\p +\v 31 Concerning the evils which King Demetrius is doing to them, we have written to him, saying, ‘Why have you made your yoke heavy on our friends and allies the Jews? +\v 32 If therefore they plead any more against you, we will do them justice, and fight with you on sea and on land.’” +\c 9 +\p +\v 1 Demetrius heard that Nicanor had fallen with his forces in battle, and he sent Bacchides and Alcimus again into the land of Judah a second time, and the right wing of his army with them. +\v 2 They went by the way that leads to Gilgal, and encamped against Mesaloth, which is in Arbela, and took possession of it, and killed many people. +\v 3 The first month of the one hundred fifty-second year, \f + \fr 9:3 \ft circa B.C. 161. \f*they encamped against Jerusalem. +\v 4 Then they marched away and went to Berea with twenty thousand infantry and two thousand cavalry. +\v 5 Judas was encamped at Elasa with three thousand chosen men. +\v 6 They saw the multitude of the forces, that they were many, and they were terrified. Many slipped away out of the army. There were not left of them more than eight hundred men. +\p +\v 7 Judas saw that his army slipped away and that the battle pressed upon him, and he was very troubled in spirit, because he had no time to gather them together, and he became faint. +\v 8 He said to those who were left, “Let’s arise and go up against our adversaries, if perhaps we may be able to fight with them.” +\p +\v 9 They tried to dissuade him, saying, “There is no way we are able; but let’s rather save our lives now. Let’s return again with our kindred, and fight against them; but we are too few.” +\p +\v 10 Judas said, “Let it not be so that I should do this thing, to flee from them. If our time has come, let’s die in a manly way for our kindred’s sake, and not leave a cause of reproach against our honor.” +\p +\v 11 The army marched out from the camp, and stood to encounter them. The cavalry was divided into two companies, and the slingers and the archers went before the army, and all the mighty men that fought in the front of the battle. +\v 12 Bacchides was in the right wing. The phalanx advanced on the two parts, and they blew with their trumpets. +\v 13 The men by Judas’ side sounded with their trumpets, and the earth shook with the shout of the armies, and the battle was joined, and continued from morning until evening. +\p +\v 14 Judas saw that Bacchides and the strength of his army were on the right side, and all that were brave in heart went with him, +\v 15 and the right wing was defeated by them, and he pursued after them to the mount Azotus. +\v 16 Those who were on the left wing saw that the right wing was defeated, and they turned and followed in the footsteps of Judas and of those who were with him. +\v 17 The battle became desparate, and many on both sides fell wounded to death. +\v 18 Judas fell, and the rest fled. +\p +\v 19 Jonathan and Simon took Judas their brother, and buried him in the tomb of his ancestors at Modin. +\v 20 They wept for him. All Israel made great lamentation for him, and mourned many days, and said, +\v 21 “How the mighty has fallen, the savior of Israel!” +\v 22 The rest of the acts of Judas, and his wars, and the valiant deeds which he did, and his greatness, are not written; for they were exceedingly many. +\p +\v 23 It came to pass after the death of Judas, that the lawless emerged within all the borders of Israel. All those who did iniquity rose up. +\v 24 In those days there was an exceedingly great famine, and the country went over to their side. +\v 25 Bacchides chose the ungodly men and made them rulers of the country. +\v 26 They inquired and searched for the friends of Judas, and brought them to Bacchides, and he took vengeance on them and used them despitefully. +\v 27 There was great suffering in Israel, such as was not since the time prophets stopped appearing to them. +\p +\v 28 All the friends of Judas were gathered together, and they said to Jonathan, +\v 29 “Since your brother Judas has died, we have no man like him to go out against our enemies and Bacchides, and among those of our nation who hate us. +\v 30 Now therefore we have chosen you this day to be our prince and leader in his place, that you may fight our battles.” +\v 31 So Jonathan took the governance upon him at that time, and rose up in the place of his brother Judas. +\p +\v 32 When Bacchides found out, he tried to kill him. +\v 33 Jonathan, and Simon his brother, and all who were with him, knew it; and they fled into the wilderness of Tekoah, and encamped by the water of the pool of Asphar. +\v 34 Bacchides found this out on the Sabbath day, and came—he and all his army—over the Jordan. +\p +\v 35 Jonathan sent his brother, a leader of the multitude, and implored his friends the Nabathaeans, that they might store their baggage, which was much, with them. +\v 36 The children of Jambri came out of Medaba, and seized John and all that he had, and went their way with it. +\p +\v 37 But after these things, they brought word to Jonathan and Simon his brother that the children of Jambri were celebrating a great wedding, and were bringing the bride, a daughter of one of the great nobles of Canaan, from Nadabath with a large escort. +\v 38 They remembered John their brother, and went up, and hid themselves under the cover of the mountain. +\v 39 They lifted up their eyes and looked, and saw a great procession with much baggage. The bridegroom came out with his friends and his kindred to meet them with timbrels, musicians, and many weapons. +\v 40 They rose up against them from their ambush and killed them, and many fell wounded to death. The remnant fled into the mountain, and the Jews took all their spoils. +\v 41 So the wedding was turned into mourning, and the voice of their musicians into lamentation. +\v 42 They avenged fully the blood of their brother, and turned back to the marshes of the Jordan. +\p +\v 43 Bacchides heard it, and he came on the Sabbath day to the banks of Jordan with a great army. +\v 44 Jonathan said to his company, “Let’s stand up now and fight for our lives, for things are different today than they were yesterday and the day before. +\v 45 For, behold, the battle is before us and behind us. Moreover the water of the Jordan is on this side and on that side, and marsh and thicket. There is no place to escape. +\v 46 Now therefore cry to heaven, that you may be delivered out of the hand of your enemies.” +\v 47 So the battle was joined, and Jonathan stretched out his hand to strike Bacchides, and he turned away back from him. +\v 48 Jonathan and those who were with him leapt into the Jordan, and swam over to the other side. The enemy didn’t pass over the Jordan against them. +\v 49 About a thousand men of Bacchides’ company fell that day; +\v 50 and he returned to Jerusalem. They built strong cities in Judea, the stronghold that was in Jericho, and Emmaus, Bethhoron, Bethel, Timnath, Pharathon, and Tephon, with high walls and gates and bars. +\v 51 He set garrisons in them to harass Israel. +\v 52 He fortified the city Bethsura, Gazara, and the citadel, and put troops and stores of food in them. +\v 53 He took the sons of the chief men of the country for hostages, and put them under guard in the citadel at Jerusalem. +\p +\v 54 And in the one hundred fifty-third year,\f + \fr 9:54 \ft circa B.C. 160. \f* in the second month, Alcimus gave orders to pull down the wall of the inner court of the sanctuary. He also pulled down the works of the prophets. +\v 55 He began to pull down. At that time was Alcimus stricken, and his works were hindered; and his mouth was stopped, and he was taken with a palsy, and he could no more speak anything and give orders concerning his house. +\v 56 Alcimus died at that time with great torment. +\v 57 Bacchides saw that Alcimus was dead, and he returned to the king. Then the land of Judah had rest for two years. +\p +\v 58 Then all the lawless men took counsel, saying, “Behold, Jonathan and his men are dwelling at ease and in security. Now therefore we will bring Bacchides, and he will capture them all in one night. +\v 59 They went and consulted with him. +\v 60 He marched out and came with a great army, and sent letters secretly to all his allies who were in Judea, that they should seize Jonathan and those who were with him; but they couldn’t, because their plan was known to them. +\v 61 Jonathan’s men seized about fifty of the men of the country who were authors of the wickedness, and he killed them. +\v 62 Jonathan, Simon, and those who were with him, went away to Bethbasi, which is in the wilderness, and he built up that which had been pulled down, and they made it strong. +\v 63 Bacchides found out about it, and he gathered together all his multitude, and sent orders to those who were of Judea. +\v 64 He went and encamped against Bethbasi and fought against it many days, and made engines of war. +\p +\v 65 Jonathan left his brother Simon in the city, and went out into the country, and he went with a few men. +\v 66 He struck Odomera and his kindred, and the children of Phasiron in their tents. +\v 67 They began to strike them, and to go up with their forces. Then Simon and those who were with him went out of the city, and set the engines of war on fire, +\v 68 and fought against Bacchides, and he was defeated by them. They afflicted him severely; for his counsel and expedition was in vain. +\v 69 They were very angry with the lawless men who gave him counsel to come into the country, and they killed many of them. Then he decided to depart into his own land. +\p +\v 70 Jonathan learned of this and sent ambassadors to him, to the end that they should make peace with him, and that he should restore to them the captives. +\v 71 He accepted the thing, and did according to his words, and swore to him that he would not seek his harm all the days of his life. +\v 72 He restored to him the captives which he had taken before out of the land of Judah, and he returned and departed into his own land, and didn’t come any more into their borders. +\v 73 Thus the sword ceased from Israel. Jonathan lived at Michmash. Jonathan began to judge the people; and he destroyed the ungodly out of Israel. +\c 10 +\p +\v 1 In the one hundred sixtieth year,\f + \fr 10:1 \ft circa B.C. 153. \f* Alexander Epiphanes, the son of Antiochus, went up and took possession of Ptolemais. They received him, and he reigned there. +\v 2 King Demetrius heard about this, and he gathered together exceedingly great forces, and went out to meet him in battle. +\p +\v 3 Demetrius sent a letter to Jonathan with words of peace, so as to honor him. +\v 4 For he said, “Let’s go beforehand to make peace with them, before he makes peace with Alexander against us; +\v 5 for he will remember all the evils that we have done against him, and to his kindred and to his nation.” +\v 6 So he gave him authority to gather together forces, and to provide weapons, and that he should be his ally. He also commanded that they should release the hostages that were in the citadel to him. +\p +\v 7 Jonathan came to Jerusalem, and read the letter in the hearing of all the people, and of those who were in the citadel. +\v 8 They were very afraid when they heard that the king had given him authority to gather together an army. +\v 9 Those in the citadel released the hostages to Jonathan, and he restored them to their parents. +\p +\v 10 Jonathan lived in Jerusalem and began to build and renew the city. +\v 11 He commanded those who did the work to build the walls and encircle Mount Zion with\f + \fr 10:11 \ft So the versions and Josephus. Gr. \fqa four-foot stones. \f* square stones for defense; and they did so. +\v 12 The foreigners who were in the strongholds which Bacchides had built fled away. +\v 13 Each man left his place and departed into his own land. +\v 14 Only at Bethsura, there were left some of those who had forsaken the law and the commandments, for it was a place of refuge to them. +\p +\v 15 King Alexander heard all the promises which Demetrius had sent to Jonathan. They told him of the battles and the valiant deeds which he and his kindred had done, and of the troubles which they had endured. +\v 16 So he said, “Could we find another man like him? Now we will make him our\f + \fr 10:16 \ft See 1 Maccabees 2:18. Compare 1 Maccabees 10:65. \f* friend and ally.” +\v 17 He wrote a letter and sent it to him, in these words, saying, +\v 18 “King Alexander to his brother Jonathan, greetings. +\v 19 We have heard of you, that you are a mighty man of valour, and worthy to be our\f + \fr 10:19 \ft See 1 Maccabees 2:18. Compare 1 Maccabees 10:65. \f* friend. +\v 20 Now we have appointed you this day to be high priest of your nation, and to be called the king’s\f + \fr 10:20 \ft See 1 Maccabees 2:18. Compare 1 Maccabees 10:65. \f* friend, and to take our side, and to keep friendship with us.” He also sent to him a purple robe and a golden crown. +\p +\v 21 And Jonathan put on the holy garments in the seventh month of the one hundred sixtieth year,\f + \fr 10:21 \ft circa B.C. 153. \f* at the feast of tabernacles; and he gathered together forces and provided weapons in abundance. +\p +\v 22 When Demetrius heard these things, he was grieved and said, +\v 23 “What is this that we have done, that Alexander has gotten ahead of us in establishing friendship with the Jews to strengthen himself? +\v 24 I also will write to them words of encouragement and of honor and of gifts, that they may be with me to aid me.” +\v 25 So he sent to them this message: +\p “King Demetrius to the nation of the Jews, greetings. +\v 26 Since as you have kept your covenants with us, and continued in our friendship, and have not joined yourselves to our enemies, we have heard of this, and are glad. +\v 27 Now continue still to keep faith with us, and we will repay you with good in return for your dealings with us. +\v 28 We will grant you many immunities and give you gifts. +\p +\v 29 “Now I free you and release all the Jews from the tributes, from the salt tax, and from the crown levies. +\v 30 Instead of the third part of the seed, and instead of half of the fruit of the trees, which falls to me to receive, I release it from this day and henceforth, so that I will not take it from the land of Judah, and from the three districts which are added to it from the country of Samaria and Galilee, from this day forth and for all time. +\v 31 Let Jerusalem be holy and free, with her borders, tithes, and taxes. +\v 32 I yield up also my authority over the citadel which is at Jerusalem, and give it to the high priest, that he may appoint in it men whom he chooses to keep it. +\v 33 Every soul of the Jews who has been carried captive from the land of Judah into any part of my kingdom, I set at liberty without payment. Let all officials also cancel the taxes on their livestock. +\p +\v 34 “All the feasts, the Sabbaths, new moons, appointed days, three days before a feast, and three days after a feast, let them all be days of immunity and release for all the Jews who are in my kingdom. +\v 35 No man shall have authority to exact anything from any of them, or to trouble them concerning any matter. +\p +\v 36 “Let there be enrolled among the king’s forces about thirty thousand men of the Jews, and pay shall be given to them, as is due to all the king’s forces. +\v 37 Of them, some shall be placed in the king’s great strongholds, and some of them shall be placed over the affairs of the kingdom, which are positions of trust. Let those who are over them and their rulers be of themselves, and let them walk after their own laws, even as the king has commanded in the land of Judah. +\p +\v 38 “The three districts that have been added to Judea from the country of Samaria, let them be annexed to Judea, that they may be reckoned to be under one ruler, that they may not obey any other authority than the high priest’s. +\v 39 As for Ptolemais and its land, I have given it as a gift to the sanctuary that is at Jerusalem, for the expenses of the sanctuary. +\v 40 I also give every year fifteen thousand shekels of silver from the king’s revenues from the places that are appropriate. +\v 41 And all the additional funds which those who manage the king’s affairs didn’t pay as in the first years, they shall give from now on toward the works of the temple. +\v 42 Besides this, the five thousand shekels of silver which they received from the uses of the sanctuary from the revenue year by year is also released, because it belongs to the priests who minister there. +\v 43 Whoever flees to the temple that is at Jerusalem, and within all of its borders, whether one owe money to the king, or any other matter, let them go free, along with all that they have in my kingdom. +\v 44 For the building and renewing of the structures of the sanctuary, the expense shall also be given out of the king’s revenue. +\v 45 For the building of the walls of Jerusalem and fortifying it all around, the expense shall also be given out of the king’s revenue, also for the building of the walls in Judea.” +\p +\v 46 Now when Jonathan and the people heard these words, they gave no credence to them, and didn’t accept them, because they remembered the great evil which he had done in Israel, and that he had afflicted them very severely. +\v 47 They were well pleased with Alexander, because he was the first who spoke words of peace to them, and they were allies with him always. +\p +\v 48 King Alexander gathered together great forces and encamped near Demetrius. +\v 49 The two kings joined battle, and the army of Alexander fled; and Demetrius followed after him, and prevailed against them. +\v 50 He strengthened the battle exceedingly until the sun went down; and Demetrius fell that day. +\p +\v 51 Alexander sent ambassadors to Ptolemy king of Egypt with this message: +\v 52 “Since I have returned to my kingdom, and am seated on the throne of my fathers, and have established my dominion, and have overthrown Demetrius, and have taken possession of our country— +\v 53 yes, I joined the battle with him, and he and his army were defeated by us, and we sat on the throne of his kingdom— +\v 54 now also let’s make friends with one another. Give me now your daughter as my wife. I will be joined with you, and will give both you and her gifts worthy of you.” +\p +\v 55 Ptolemy the king answered, saying, “Happy is the day you returned to the land of your ancestors and sat on the throne of their kingdom. +\v 56 Now I will do to you as you have written, but meet me at Ptolemais, that we may see one another; and I will join with you, even as you have said.” +\v 57 So Ptolemy went out of Egypt, himself and Cleopatra his daughter, and came to Ptolemais in the one hundred sixty-second year.\f + \fr 10:57 \ft circa B.C. 151. \f* +\v 58 King Alexander met him, and he gave him his daughter Cleopatra, and celebrated her wedding at Ptolemais with great pomp, as kings do. +\p +\v 59 King Alexander wrote to Jonathan, that he should come to meet him. +\v 60 He went with pomp to Ptolemais, and met the two kings. He gave them and their friends\f + \fr 10:60 \ft See 1 Maccabees 2:18. Compare 1 Maccabees 10:65. \f* silver and gold, and many gifts, and found favor in their sight. +\v 61 Some malcontents out of Israel, men who were transgressors of the law, gathered together against him to complain against him; but the king paid no attention to them. +\v 62 The king commanded that they take off Jonathan’s garments and clothe him in purple, and they did so. +\v 63 The king made him sit with him, and said to his princes, “Go out with him into the midst of the city, and proclaim that no man may complain against him of any matter, and let no man trouble him for any reason.” +\v 64 It came to pass, when those who complained against him saw his honor according to the proclamation, and saw him clothed in purple, they all fled away. +\v 65 The king gave him honor, and enrolled him among his chief friends,\f + \fr 10:65 \ft See 1 Maccabees 11:27; 2 Maccabees 8:9. Compare 1 Maccabees 2:18; 10:16, etc. \f* and made him a captain and governor of a province. +\v 66 Then Jonathan returned to Jerusalem with peace and gladness. +\p +\v 67 In the one hundred sixty-fifth year,\f + \fr 10:67 \ft circa B.C. 148. \f* Demetrius, son of Demetrius, came out of Crete into the land of his ancestors. +\v 68 When King Alexander heard of it, he grieved exceedingly and returned to Antioch. +\v 69 Demetrius appointed Apollonius, who was over Coelesyria, and he gathered together a great army, and encamped against Jamnia, and sent to Jonathan the high priest, saying, +\p +\v 70 “You alone lift up yourself against us, but I am ridiculed and in reproach because of you. Why do you assume authority against us in the mountains? +\v 71 Now therefore, if you trust in your forces, come down to us into the plain, and let’s match strength with each other there; for the power of the cities is with me. +\v 72 Ask and learn who I am, and the rest who help us. They say, ‘Your foot can’t stand before our face; for your ancestors have been put to flight twice in their own land.’ +\v 73 Now you won’t be able to withstand the cavalry and such an army as this in the plain, where there is no stone or pebble, or place to flee.” +\p +\v 74 Now when Jonathan heard the words of Apollonius, he was moved in his mind, and he chose ten thousand men, and went out from Jerusalem; and Simon his brother met him to help him. +\v 75 Then he encamped against Joppa. The people of the city shut him out, because Apollonius had a garrison in Joppa. +\v 76 So they fought against it. The people of the city were afraid, and opened to him; and Jonathan became master of Joppa. +\p +\v 77 Apollonius heard about that, and he gathered an army of three thousand cavalry, and a great army, and went to Azotus as though he were on a journey, and at the same time advanced onward into the plain, because he had a multitude of cavalry which he trusted. +\v 78 He pursued him to Azotus, and the armies joined battle.\f + \fr 10:78 \ft Most of the authorities here repeat \fqa after him.\f* +\v 79 Apollonius had secretly left a thousand cavalry behind them. +\v 80 Jonathan learned that there was an ambush behind him. They surrounded his army, and shot their arrows at the people, from morning until evening; +\v 81 but the people stood fast, as Jonathan commanded them; and the enemy’s horses grew tired. +\p +\v 82 Then Simon brought forward his army and joined battle with the phalanx (for the cavalry were exhausted), and they were defeated by him and fled. +\v 83 The cavalry were scattered in the plain. They fled to Azotus and entered into Beth-dagon, their idol’s temple, to save themselves. +\v 84 Jonathan burned Azotus and the cities around it and took their spoils. He burned the temple of Dagon and those who fled into it with fire. +\v 85 Those who had fallen by the sword plus those who were burned were about eight thousand men. +\p +\v 86 From there, Jonathan left and encamped against Ascalon. The people of the city came out to meet him with great pomp. +\v 87 Jonathan, with those who were on his side, returned to Jerusalem, having many spoils. +\v 88 It came to pass, when King Alexander heard these things, he honored Jonathan even more. +\v 89 He sent him a gold buckle, as the custom is to give to the king’s kindred. He gave him Ekron and all its land for a possession. +\c 11 +\p +\v 1 Then the king of Egypt gathered together great forces, as the sand which is by the sea shore, and many ships, and sought to make himself master of Alexander’s kingdom by deceit, and to add it to his own kingdom. +\v 2 He went out into Syria with words of peace, and the people of the cities opened their gates to him and met him; for King Alexander’s command was that they should meet him, because he was his father-in-law. +\v 3 Now as he entered into the cities of Ptolemais, he set his forces for a garrison in each city. +\p +\v 4 But when he came near to Azotus, they showed him the temple of Dagon burned with fire, and Azotus and its pasture lands destroyed, and the bodies cast out, and those who had been burned, whom he burned in the war, for they had made heaps of them in his way. +\v 5 They told the king what Jonathan had done, that they might cast blame on him; but the king kept silent. +\v 6 Jonathan met the king with pomp at Joppa, and they greeted one another, and they slept there. +\v 7 Jonathan went with the king as far as the river that is called Eleutherus, then returned to Jerusalem. +\p +\v 8 But King Ptolemy took control of the cities along the sea coast, to Selucia which is by the sea, and he devised evil plans concerning Alexander. +\v 9 He sent ambassadors to King Demetrius, saying, “Come! Let’s make a covenant with one another, and I will give you my daughter whom Alexander has, and you shall reign over your father’s kingdom; +\v 10 for I regret that I gave my daughter to him, for he tried to kill me. +\v 11 He accused him, because he coveted his kingdom. +\v 12 Taking his daughter from him, he gave her to Demetrius, and was estranged from Alexander, and their enmity was openly seen. +\p +\v 13 Ptolemy entered into Antioch, and put on himself the crown of Asia. He put two crowns upon his head, the crown of Egypt and that of Asia. +\v 14 But King Alexander was in Cilicia at that time, because the people of that region were in revolt. +\v 15 When Alexander heard of it, he came against him in war. Ptolemy marched out and met him with a strong force, and put him to flight. +\v 16 Alexander fled into Arabia, that he might be sheltered there; but King Ptolemy was triumphant. +\v 17 Zabdiel the Arabian took off Alexander’s head, and sent it to Ptolemy. +\v 18 King Ptolemy died the third day after, and those who were in his strongholds were slain by the inhabitants of the strongholds. +\v 19 Demetrius became king in the one hundred sixty-seventh year.\f + \fr 11:19 \ft circa B.C. 146.\f* +\p +\v 20 In those days Jonathan gathered together the Judeans to take the citadel that was at Jerusalem. He made many engines of war to use against it. +\v 21 Some lawless men who hated their own nation went to the king and reported to him that Jonathan was besieging the citadel. +\v 22 He heard, and was angry, but when he heard it, he set out immediately, and came to Ptolemais, and wrote to Jonathan, that he should not besiege it, and that he should meet him and speak with him at Ptolemais with all speed. +\p +\v 23 But when Jonathan heard this, he gave orders to continue the siege. He chose some of the elders of Israel and of the priests, and put himself in peril +\v 24 by taking silver, gold, clothing, and various other presents, and went to Ptolemais to the king. Then he found favor in his sight. +\v 25 Some lawless men of those who were of the nation made complaints against him, +\v 26 and the king did to him even as his predecessors had done to him, and exalted him in the sight of all his\f + \fr 11:26 \ft See 1 Maccabees 2:18. \f* friends, +\v 27 and confirmed to him the high priesthood, and all the other honors that he had before, and gave him preeminence among his\f + \fr 11:27 \ft See 1 Maccabees 10:65. \f* chief friends. +\v 28 And Jonathan requested of the king that he would make Judea free from tribute, along with the three\f + \fr 11:28 \ft Gr. \fqa toparchies \f* provinces and the country of Samaria, and promised him three hundred talents. +\v 29 The king consented, and wrote letters to Jonathan concerning all these things as follows: +\p +\v 30 “King Demetrius to his brother Jonathan, and to the nation of the Jews, greetings. +\v 31 The copy of the letter which we wrote to Lasthenes our kinsman concerning you, we have written also to you, that you may see it. +\v 32 ‘King Demetrius to Lasthenes his father, greetings. +\v 33 We have determined to do good to the nation of the Jews, who are our friends, and observe what is just toward us, because of their good will toward us. +\v 34 We have confirmed therefore to them the borders of Judea, and also the three governments of Aphaerema, Lydda, and Ramathaim (these were added to Judea from the country of Samaria), and all their territory to them, for all who do sacrifice in Jerusalem, instead of the king’s dues which the king received of them yearly before from the produce of the earth and the fruits of trees. +\v 35 As for the other payments to us from henceforth, of the tithes and the taxes that pertain to us, and the salt pits, and the crown taxes due to us, all these we will give back to them. +\v 36 Not one of these grants shall be annulled from this time forth and forever. +\v 37 Now therefore be careful to make a copy of these things, and let it be given to Jonathan, and let it be set up on the holy mountain in a suitable and conspicuous place.’” +\p +\v 38 When King Demetrius saw that the land was quiet before him, and that no resistance was made to him, he sent away all his troops, each man to his own place, except the foreign troops, which he had raised from the islands of the Gentiles. So all the troops of his fathers hated him. +\v 39 Now Tryphon was one of those who previously had been on Alexander’s side, and he saw that all the forces murmured against Demetrius. So he went to Imalcue the Arabian, who was raising up Antiochus the young child of Alexander, +\v 40 and urgently insisted to him that he should deliver him to him, that he might reign in his father’s place. He told him all that Demetrius had done, and the hatred with which his forces hated him; and he stayed there many days. +\p +\v 41 Now Jonathan sent to King Demetrius, that he should remove the troops of the citadel from Jerusalem, and the troops who were in the strongholds; for they fought against Israel continually. +\v 42 Demetrius sent to Jonathan, saying, “I will not only do this for you and your nation, but I will greatly honor you and your nation, if I find an opportunity. +\v 43 Now therefore you shall do well if you send me men who will fight for me; for all my forces have revolted.” +\v 44 So Jonathan sent him three thousand valiant men to Antioch. They came to the king, and the king was glad at their coming. +\p +\v 45 The people of the city gathered themselves together into the midst of the city, to the number of one hundred and twenty thousand men, and they wanted to kill the king. +\v 46 The king fled into the court of the palace, and the people of the city seized the main streets of the city and began to fight. +\v 47 The king called the Jews to help him, and they were gathered together to him all at once, and they dispersed themselves in the city, and killed that day about one hundred thousand. +\v 48 They set the city on fire, and seized many spoils that day, and saved the king. +\v 49 The people of the city saw that the Jews had taken control of the city as they pleased, and they became faint in their hearts, and they cried out to the king with supplication, saying, +\v 50 “Give us your right hand, and let the Jews cease from fighting against us and the city.” +\v 51 They threw away their weapons and made peace. The Jews were glorified in the sight of the king, and before all who were in his kingdom. Then they returned to Jerusalem, having much plunder. +\v 52 So King Demetrius sat on the throne of his kingdom, and the land was quiet before him. +\v 53 He lied in all that he spoke, and estranged himself from Jonathan, and didn’t repay him according to the benefits with which he had repaid him, and treated him very harshly. +\p +\v 54 Now after this, Tryphon returned, and with him the young child Antiochus, who reigned and put on a crown. +\v 55 All the forces which Demetrius had sent away with disgrace were gathered to him, and they fought against him, and he fled and was routed. +\v 56 Tryphon took the elephants, and took control of Antioch. +\v 57 The young Antiochus wrote to Jonathan, saying, “I confirm to you the high priesthood, and appoint you over the four districts, and to be one of the king’s\f + \fr 11:57 \ft See 1 Maccabees 2:18. \f* friends.” +\v 58 He sent to him golden vessels and furniture for the table, and gave him permission to drink in golden vessels, and to be clothed in purple, and to have a golden buckle. +\v 59 He made his brother Simon governor from the Ladder of Tyre to the borders of Egypt. +\p +\v 60 Jonathan went out and took his journey beyond the river and through the cities. All the forces of Syria gathered themselves to him to be his allies. He came to Ascalon, and the people of the city met him honorably. +\v 61 He departed from there to Gaza, and the people of Gaza shut him out. So he besieged it and burned its pasture lands with fire, and plundered them. +\v 62 The people of Gaza pleaded with Jonathan, and he gave them his right hand, and took the sons of their princes for hostages, and sent them away to Jerusalem. Then he passed through the country as far as Damascus. +\p +\v 63 Then Jonathan heard that Demetrius’ princes had come to Kedesh, which is in Galilee, with a great army, intending to remove him from his office. +\v 64 He went to meet them, but he left Simon his brother in the country. +\v 65 Simon encamped against Bethsura, and fought against it many days, and hemmed it in. +\v 66 They asked him to give them his right hand, and he gave it to them. He removed them from there, took possession of the city, and set a garrison over it. +\p +\v 67 Jonathan and his army encamped at the water of Gennesareth, and early in the morning they marched to the plain of Hazor. +\v 68 Behold, an army of foreigners met him in the plain. They laid an ambush for him in the mountains, but they themselves met him face to face. +\v 69 But those who lay in ambush rose out of their places and joined battle. All those who were on Jonathan’s side fled. +\v 70 Not one of them was left, except Mattathias the son of Absalom, and Judas the son of Chalphi, captains of the forces. +\v 71 Jonathan tore his clothes, put dirt on his head, and prayed. +\v 72 He turned again to them in battle, and routed them, and they fled. +\v 73 When the men on his side who had fled saw this, they returned to him and pursued with him to Kedesh to their camp, and they encamped there. +\v 74 About three thousand men of the foreigners fell on that day. Then Jonathan returned to Jerusalem. +\c 12 +\p +\v 1 Jonathan saw that the time was favorable for him, so he chose men and sent them to Rome to confirm and renew the friendship that they had with them. +\v 2 He also sent similar letters to the Spartans, and to other places. +\v 3 They went to Rome, entered into the senate house, and said, “Jonathan the high priest and the nation of the Jews have sent us to renew for them the friendship and the alliance, as in former time.” +\v 4 They gave them letters to the men in every place, that they should provide safe conduct for them on their way to the land of Judah. +\v 5 This is the copy of the letters which Jonathan wrote to the Spartans: +\p +\v 6 “Jonathan the high priest, and the senate of the nation, and the priests, and the rest of the people of the Jews, to their kindred the Spartans, greetings. +\v 7 Even before this time letters were sent to Onias the high priest from Arius,\f + \fr 12:7 \ft So the old Latin versions and Josephus: compare also ver. 20. All the other authorities read \fqa Darius \ft in this place. \f* who was reigning among you, to signify that you are our kindred, as the copy written below shows. +\v 8 Onias welcomed honorably the man who was sent and received the letters, wherein declaration was made of alliance and friendship. +\v 9 Therefore we also, even though we need none of these things, having for our encouragement the holy books which are in our hands, +\v 10 have undertaken to send that we might renew our brotherhood and friendship with you, to the end that we should not become estranged from you altogether; for a long time has passed since you sent your letter to us. +\v 11 We therefore at all times without ceasing, both in our feasts, and on the other convenient days, remember you in the sacrifices which we offer, and in our prayers, as it is right and proper to be mindful of kindred. +\v 12 Moreover, we are glad for your glory. +\v 13 But as for ourselves, many afflictions and many wars have encompassed us, and the kings who are around us have fought against us. +\v 14 We were unwilling to be troublesome to you, and to the rest of our allies and friends, in these wars; +\v 15 for we have the help which is from heaven to help us, and we have been delivered from our enemies, and our enemies have been humbled. +\v 16 We chose therefore Numenius the son of Antiochus and Antipater the son of Jason, and have sent them to the Romans, to renew the friendship that we had with them, and the former alliance. +\v 17 We commanded them therefore to go also to you, and to salute you, and to deliver you our letters concerning the renewing of friendship and our brotherhood. +\v 18 And now you will do well if you give us a reply.” +\p +\v 19 And this is the copy of the letters which they sent to Onias: +\p +\v 20 “Arius king of the Spartans to Onias the chief priest, greetings. +\v 21 It has been found in writing, concerning the Spartans and the Jews, that they are kindred, and that they are of the descendants of Abraham. +\v 22 Now, since this has come to our knowledge, you will do well to write to us of your\f + \fr 12:22 \ft Gr. \fqa peace \f* prosperity. +\v 23 We moreover write on our part to you, that your livestock and goods are ours, and ours are yours. We do command therefore that they make report to you accordingly.” +\p +\v 24 Now Jonathan heard that Demetrius’ princes had returned to fight against him with a greater army than before, +\v 25 so he marched away from Jerusalem, and met them in the country of Hamath; for he gave them no opportunity to set foot in his country. +\v 26 He sent spies into his camp, and they came again, and reported to him that they were preparing to attack them at night. +\v 27 But as soon as the sun was down, Jonathan commanded his men to watch, and to be armed, that all the night long they might be ready for battle. He stationed sentinels around the camp. +\v 28 The adversaries heard that Jonathan and his men were ready for battle, and they feared, and trembled in their hearts, and they kindled fires in their camp then withdrew. +\v 29 But Jonathan and his men didn’t know it until the morning; for they saw the fires burning. +\v 30 Jonathan pursued after them, but didn’t overtake them; for they had gone over the river Eleutherus. +\v 31 Then Jonathan turned toward the Arabians, who are called Zabadaeans, and struck them, and took their spoils. +\v 32 He came out from there, and came to Damascus, and took his journey through all the country. +\p +\v 33 Simon went out, and took his journey as far as Ascalon, and the strongholds that were near it. Then he turned toward Joppa and took possession of it; +\v 34 for he had heard that they were planning to hand over the stronghold to Demetrius’ men. He set a garrison there to guard it. +\p +\v 35 Then Jonathan returned and called the elders of the people together. He planned with them to build strongholds in Judea, +\v 36 and to make the walls of Jerusalem higher, and to raise a great mound between the citadel and the city, to separate it from the city, that so it might be isolated, that its garrison might neither buy nor sell. +\v 37 They were gathered together to build the city. Part of the wall of the brook that is on the east side fell down, and he repaired the section called Chaphenatha. +\v 38 Simon also built Adida in the\f + \fr 12:38 \ft Gr. \fqa Sephela.\f* plain country, made it strong, and set up gates and bars. +\p +\v 39 And Tryphon sought to reign over Asia and to crown himself, and to stretch out his hand against Antiochus the king. +\v 40 He was afraid that Jonathan wouldn’t allow him, and that he would fight against him; and he sought a way to seize him, that he might destroy him. So he marched out and came to Bethshan. +\v 41 Jonathan came out to meet him with forty thousand men chosen for battle, and came to Bethshan. +\v 42 Tryphon saw that he came with a great army, and he was afraid to stretch out his hand against him. +\v 43 He received him honorably, and commended him to all his\f + \fr 12:43 \ft See 1 Maccabees 2:18. \f* friends, and gave him gifts, and commanded his forces to be obedient to him, as to himself. +\v 44 He said to Jonathan, “Why have you put all this people to so much trouble, seeing there is no war between us? +\v 45 Now send them away to their homes, but choose for yourself a few men who shall be with you, and come with me to Ptolemais, and I will give it to you, and the rest of the strongholds and the rest of the forces, and all the king’s officers. Then I will turn around and depart; for this is why I came.” +\p +\v 46 He put his trust in him, and did even as he said, and sent away his forces, and they departed into the land of Judah. +\v 47 But he reserved to himself three thousand men, of whom he left two thousand in Galilee, but one thousand went with him. +\v 48 Now as soon as Jonathan entered into Ptolemais, the people of Ptolemais shut the gates and seized him. They killed all those who came in with him with the sword. +\p +\v 49 Tryphon sent troops and cavalry into Galilee, and into the Great Plain, to destroy all Jonathan’s men. +\v 50 They perceived that he had been seized and had perished, along with those who were with him. They encouraged one another and went on their way close together, prepared to fight. +\v 51 Those who followed them saw that they were ready to fight for their lives, and turned back again. +\v 52 They all came in peace into the land of Judah, and they mourned for Jonathan and those who were with him, and they were very afraid. All Israel mourned with a great mourning. +\v 53 And all the Gentiles who were around them sought to destroy them utterly; for they said, “They have no ruler nor anyone to help them. Now therefore let’s fight against them, and take away their memory from among men.” +\c 13 +\p +\v 1 Simon heard that Tryphon had gathered together a mighty army to come into the land of Judah and destroy it utterly. +\v 2 He saw that the people were trembling in great fear. So he went up to Jerusalem and gathered the people together. +\v 3 He encouraged them, and said to them, “You yourselves know all the things that I, my kindred, and my father’s house have done for the laws and the sanctuary, and the battles and the distresses which we have seen. +\v 4 Because of this, all my brothers have perished for Israel’s sake, and I am left alone. +\v 5 Now be it far from me, that I should spare my own life in any time of affliction, for I am not better than my kindred. +\v 6 However, I will take vengeance for my nation, for the sanctuary, and for our wives and children, because all the Gentiles have gathered out of hatred to destroy us.” +\p +\v 7 The spirit of the people revived as soon as they heard these words. +\v 8 They answered with a loud voice, saying, “You are our leader in the place of Judas and Jonathan your brothers. +\v 9 Fight our battles, and we will do all that you tell us to do.” +\p +\v 10 He gathered together all the men of war, and hurried to finish the walls of Jerusalem. He fortified it all around. +\v 11 He sent Jonathan the son of Absalom, and with him a great army, to Joppa. He threw out those who were in it, and lived there. +\p +\v 12 Tryphon left Ptolemais with a mighty army to enter into the land of Judah, and Jonathan was with him under guard. +\v 13 But Simon encamped at Adida, near the plain. +\v 14 Tryphon knew that Simon had risen up in the place of his brother Jonathan, and meant to join battle with him, so he sent ambassadors to him, saying, +\v 15 “It is for money which Jonathan your brother owed to the king’s treasury, by reason of the offices which he had, that we are detaining him. +\v 16 Now send one hundred talents of silver and two of his sons for hostages, so that when he is released he may not revolt against us, and we will release him.” +\p +\v 17 Simon knew that they spoke to him deceitfully, but he sent to get the money and the children, lest perhaps he would arouse great hostility among the people, +\v 18 who might say, “Because I didn’t send him the money and the children, he perished.” +\v 19 So he sent the children and the hundred talents, but Tryphon lied, and didn’t release Jonathan. +\p +\v 20 After this, Tryphon came to invade the land and destroy it, and he went around by the way that leads to Adora. Simon and his army marched near him to every place, wherever he went. +\v 21 Now the people of the citadel sent to Tryphon ambassadors, urging him to come to them through the wilderness, and to send them food. +\v 22 So Tryphon prepared all his cavalry to come, but on that night a very heavy snow fell, and he didn’t come because of the snow. He marched off and went into the land of Gilead. +\v 23 When he came near to Bascama, he killed Jonathan, and he was buried there. +\v 24 Then Tryphon turned back, and went away into his own land. +\p +\v 25 Simon sent, and took the bones of Jonathan his brother, and buried him at Modin, the city of his fathers. +\v 26 All Israel made great lamentation over him, and mourned for him many days. +\v 27 Simon built a monument on the tomb of his father and his kindred, and raised it high so that it could be seen, with polished stone on the front and back. +\v 28 He also set up seven pyramids, one near another, for his father, his mother, and his four brothers. +\v 29 For these, he made an elaborate setting, erecting great pillars around them, and upon the pillars he made suits of armor for a perpetual memorial, and beside the suits of armor, he carved ships, so that they could be seen by all who sail on the sea. +\v 30 This is the tomb which he made at Modin. It remains to this day. +\p +\v 31 Now Tryphon deceived the young King Antiochus and killed him, +\v 32 and reigned in his place. He put on himself the crown of Asia and brought a great calamity upon the land. +\v 33 Simon built up the strongholds of Judea, and walled them all around with high towers, great walls, gates, and bars; and he stored food in the strongholds. +\v 34 Simon chose men, and sent to King Demetrius with a request that he grant the country an immunity, because all that Tryphon did was to plunder. +\v 35 King Demetrius sent to him according to these words, and answered him, and wrote a letter to him, as follows: +\p +\v 36 “King Demetrius to Simon the high priest and friend\f + \fr 13:36 \ft See 1 Maccabees 2:18. \f* of kings, and to the elders and nation of the Jews, greetings. +\v 37 The golden crown and the palm branch, which you sent, we have received. We are ready to make a steadfast peace with you, yes, and to write to our officers to release you from tribute. +\v 38 Whatever things we confirmed to you, they are confirmed. The strongholds, which you have built, let them be your own. +\v 39 As for any oversights and faults committed to this day, we forgive them, and the crown tax which you owed us. If there were any other tax collected in Jerusalem, let it be collected no longer. +\v 40 If any among you are qualified to be enrolled in our court, let them be enrolled, and let there be peace between us.” +\p +\v 41 In the one hundred seventieth year,\f + \fr 13:41 \ft circa B.C. 143. \f* the yoke of the Gentiles was taken away from Israel. +\v 42 The people began to write in their instruments and contracts, “In the first year of Simon, the great high priest and captain and leader of the Jews.” +\p +\v 43 In those days Simon encamped against\f + \fr 13:43 \ft See 1 Maccabees 13:53 (compare 1 Maccabees 13:48); 1 Maccabees 14:7, 34; 15:28; 16:1: also Josephus. All the authorities read \fqa Gaza \ft in this verse. \f* Gazara, and surrounded it with troops. He made a seige engine, and brought it up to the city, and struck a tower, and captured it. +\v 44 Those who were in the engine leaped out into the city; and there was a great uproar in the city. +\v 45 The people of the city tore their clothes, and went up on the walls with their wives and children, and cried with a loud voice, asking Simon to give them\f + \fr 13:45 \ft Gr. \fqa right hands. \f* his right hand. +\v 46 They said, “Don’t deal with us according to our wickednesses, but according to your mercy.” +\v 47 So Simon was reconciled to them, and didn’t fight against them; but he expelled them from the city and cleansed the houses where the idols were, and then entered into it with singing and giving praise. +\v 48 He removed all uncleanness out of it, and placed in it men who would keep the law, and made it stronger than it was before, and built a dwelling place for himself in it. +\p +\v 49 But the people of the citadel in Jerusalem were hindered from going out and from going into the country, and from buying and selling. So they were very hungry, and a great number of them perished from famine. +\v 50 Then they cried out to Simon, that he should give them his right hand; and he gave it to them; but he expelled them from there, and he cleansed the citadel from its pollutions. +\v 51 He entered into it on the twenty-third day of the second month, in the one hundred seventy-first year,\f + \fr 13:51 \ft circa B.C. 142. \f* with praise and palm branches, with harps, with cymbals, and with stringed instruments, with hymns, and with songs, because a great enemy had been destroyed out of Israel. +\v 52 Simon ordained that they should keep that day every year with gladness. He made the hill of the temple that was by the citadel stronger than before, and he lived there with his men. +\v 53 Simon saw that his son John was a man, so he made him leader of all his forces; and he lived in Gazara. +\c 14 +\p +\v 1 In the one hundred seventy-second year,\f + \fr 14:1 \ft circa B.C. 141. \f* King Demetrius gathered his forces together, and went into Media to get help, that he might fight against Tryphon. +\v 2 When Arsaces, the king of Persia and Media, heard that Demetrius had come into his borders, he sent one of his princes to take him alive. +\v 3 He went and struck the army of Demetrius, and seized him and brought him to Arsaces, who put him under guard. +\p +\v 4 The land had rest all the days of Simon. He sought the good of his nation. His authority and his honor was pleasing to them all his days. +\v 5 Amid all his honors, he took Joppa for a harbor, and made it an entrance for the islands of the sea. +\v 6 He enlarged the borders of his nation and took possession of the country. +\v 7 He gathered together a great number of captives, and took control of Gazara, Bethsura, and the citadel, and he removed its uncleannesses from it. There was no one who resisted him. +\v 8 They tilled their land in peace, and the land gave her increase, and the trees of the plains gave their fruit. +\v 9 The old men sat in the streets; they all conversed together about good things. The young men put on glorious and warlike apparel. +\v 10 He provided food for the cities and furnished them with means of defense, until the glory of his name was known to the end of the earth. +\v 11 He made peace in the land, and Israel rejoiced with great joy. +\v 12 Each man sat under his vine and his fig tree, and there was no one to make them afraid. +\v 13 No one was left in the land who fought against them. The kings were defeated in those days. +\v 14 He strengthened all those of his people who were humble. He searched out the law, and every lawless and wicked person he took away. +\v 15 He glorified the sanctuary, and added to the vessels of the temple. +\p +\v 16 It was heard at Rome that Jonathan was dead, and even in Sparta, and they were exceedingly grieved. +\v 17 But as soon as they heard that his brother Simon was made high priest in his place, and ruled the country and the cities in it, +\v 18 they wrote to him on brass tablets to renew with him the friendship and the alliance which they had confirmed with his brothers Judas and Jonathan. +\v 19 These were read before the congregation at Jerusalem. +\p +\v 20 This is the copy of the letters which the Spartans sent: +\p “The rulers and the city of the Spartans, to Simon the high priest, to the elders, the priests, and the rest of the people of the Jews, our kindred, greetings. +\v 21 The ambassadors who were sent to our people reported to us about your glory and honor. We were glad for their coming, +\v 22 and we registered the things that were spoken by them in the public records\f + \fr 14:22 \ft Gr. \fqa counsels of the people. \f* as follows: ‘Numenius son of Antiochus, and Antipater son of Jason, the Jews’ ambassadors, came to us to renew the friendship they had with us. +\v 23 It pleased the people to entertain the men honorably, and to put the copy of their words in the public records,\f + \fr 14:23 \ft Gr. \fqa books that are appointed for the people. \f* to the end that the people of the Spartans might have a record of them. Moreover they wrote a copy of these things to Simon the high priest.’” +\p +\v 24 After this, Simon sent Numenius to Rome with a great shield of gold of weighing one thousand minas,\f + \fr 14:24 \ft 1,000 minas is about 499 kg or 1,098 pounds. \f* in order to confirm the alliance with them. +\p +\v 25 But when the people heard these things, they said, “What thanks shall we give to Simon and his sons? +\v 26 For he and his brothers and the house of his father have made themselves strong, and have fought and chased away Israel’s enemies, and confirmed liberty to Israel.\f + \fr 14:26 \ft Gr. \fqa him. \f*” +\v 27 So they wrote on tablets of brass, and set them on pillars on mount Zion. This is the copy of the writing: +\p “On the eighteenth day of Elul, in the one hundred seventy-second year,\f + \fr 14:27 \ft circa B.C. 141. \f* which is the third year of Simon the high priest, +\v 28 in Asaramel, in a great congregation of priests and people and princes of the nation, and of the elders of the country, it was proclaimed to us:\f + \fr 14:28 \ft Gr. \fqa he made known. \f* +\v 29 ‘Since wars often occurred in the country, Simon the son of Mattathias, the son of the sons of Joarib, and his brothers, put themselves in jeopardy and withstood the enemies of their nation, that their sanctuary and the law might be established, and glorified their nation with great glory. +\v 30 Jonathan rallied the nation, became their high priest, and was gathered to his people. +\v 31 Their enemies planned to invade their country, that they might destroy their country utterly, and stretch out their hands against their sanctuary. +\v 32 Then Simon rose up and fought for his nation. He spent much of his own money to arm the valiant men of his nation and give them wages. +\v 33 He fortified the cities of Judea and Bethsura that lies on the borders of Judea, where the weapons of the enemies were had been stored, and there he placed a garrison of Jews. +\v 34 He fortified Joppa which is upon the sea, and Gazara which is upon the borders of Azotus, where the enemies used to live, and placed Jews there, and set in there all things necessary for their restoration. +\v 35 The people saw Simon’s faith,\f + \fr 14:35 \ft Some authorities read \fqa acts. \f* and the glory which he resolved to bring to his nation, and they made him their leader and high priest, because he had done all these things, and for the justice and the faith which he kept to his nation, and because he sought by all means to exalt his people. +\v 36 In his days, things prospered in his hands, so that the Gentiles were taken away out of their country, and they also who were in the city of David, those who were in Jerusalem, who had made themselves a citadel, out of which they used to go, and polluted everything around the sanctuary, and did great damage to its purity. +\v 37 He placed Jews in it and fortified it for the safety of the country and the city, and made high the walls of Jerusalem. +\v 38 King Demetrius confirmed to him the high priesthood according to these things, +\v 39 and made him one of his friends,\f + \fr 14:39 \ft See 1 Maccabees 2:18. \f* and honored him with great honor; +\v 40 for he had heard that the Jews had been called by the Romans friends, allies, and kindred, and that they had met the ambassadors of Simon honorably; +\v 41 and that the Jews and the priests were well pleased that Simon should be their leader and high priest forever, until there should arise a faithful prophet; +\v 42 and that he should be governor over them, and should take charge of the sanctuary, to set them over their works, and over the country, and over the weapons, and over the strongholds; and that he should take charge of the sanctuary, +\v 43 and that he should be obeyed by all, and that all contracts in the country should be written in his name, and that he should be clothed in purple, and wear gold; +\v 44 and that it should not be lawful for any of the people or of the priests to nullify any of these things, or to oppose the words that he should speak, or to gather an assembly in the country without him, or to be clothed in purple, or wear a buckle of gold; +\v 45 but whoever should do otherwise, or nullify any of these things, he will be liable to punishment.’” +\v 46 All the people consented to ordain for Simon that he should do according to these words. +\v 47 So Simon accepted this, and consented to be high priest, and to be captain and governor\f + \fr 14:47 \ft Gr. \fqa ethnarch. \f* of the Jews and of the priests, and to be protector of all. +\p +\v 48 They commanded to put this writing on tablets of brass, and to set them up within the precinct of the sanctuary in a conspicuous place, +\v 49 and moreover to put copies of them in the treasury, so that Simon and his sons might have them. +\c 15 +\p +\v 1 Antiochus son of Demetrius the king sent a letter from the islands of the sea to Simon the priest and\f + \fr 15:1 \ft Gr. \fqa ethnarch. \f* governor of the Jews, and to all the nation. +\v 2 Its contents follow: +\p “King Antiochus to Simon the chief priest and\f + \fr 15:2 \ft Gr. \fqa ethnarch. \f* governor, and to the nation of the Jews, greetings. +\v 3 Whereas certain troublemakers have made themselves masters of the kingdom of our fathers, but my purpose is to claim the kingdom, that I may restore it as it was before; and moreover I have raised a multitude of foreign soldiers, and have prepared warships; +\v 4 moreover I plan to land in the country, that I may punish those who have destroyed our country, and those who have made many cities in the kingdom desolate; +\v 5 now therefore I confirm to you all the tax remissions which the kings who were before me remitted to you, and whatever gifts besides they remitted to you, +\v 6 and I permit you to coin money for your country with your own stamp, +\v 7 but that Jerusalem and the sanctuary should be free. All the weapons that you have prepared, and the strongholds that you have built, which you have in your possession, let them remain yours. +\v 8 Every debt owed to the king, and the things that will be owed to the king from henceforth and for evermore, let them be remitted to you. +\v 9 Moreover, when we have established our kingdom, we will glorify you and your nation and the temple with great glory, so that your glory will be made manifest in all the earth. +\p +\v 10 In the one hundred seventy-fourth year,\f + \fr 15:10 \ft circa B.C. 139 \f* Antiochus went into the land of his fathers; and all the forces came together to him, so that there were few men with Tryphon. +\v 11 King Antiochus pursued him, and he came, as he fled, to Dor, which is by the sea; +\v 12 for he knew that troubles had come upon him all at once, and that his forces had deserted him. +\v 13 Antiochus encamped against Dor, and with him one hundred twenty thousand men of war and eight thousand cavalry. +\v 14 He surrounded the city, and the ships joined in the attack from the sea. He harassed the city by land and sea, and permitted no one to go out or in. +\p +\v 15 Numenius and his company came from Rome, having letters to the kings and to the countries, in which were written these things: +\p +\v 16 “Lucius, consul of the Romans, to King Ptolemy, greetings. +\v 17 The Jews’ ambassadors came to us as our friends and allies, to renew the old friendship and alliance, being sent from Simon the high priest, and from the people of the Jews. +\v 18 Moreover they brought a shield of gold weighing one thousand minas.\f + \fr 15:18 \ft 1,000 minas is about 499 kg. or about 1,098 pounds.\f* +\v 19 It pleased us therefore to write to the kings and to the countries, that they should not seek their harm or fight against them, their cities, and their country, or be allies with those who fight against them. +\v 20 Moreover, it seemed good to us to receive the shield from them. +\v 21 If therefore any troublemakers have fled from their country to you, deliver them to Simon the high priest, that he may take vengeance on them according to their law.” +\p +\v 22 He wrote the same things to King Demetrius, to Attalus, to Arathes, to Arsaces, +\v 23 to all the countries, to\f + \fr 15:23 \ft Some authorities read \fqa Sampsaces: \ft the Latin versions have \fqa Lampsacus. \f* Sampsames, to the Spartans, to Delos, to Myndos, to Sicyon, to Caria, to Samos, to Pamphylia, to Lycia, to Halicarnassus, to Rhodes, to Phaselis, to Cos, to Side, to Aradus, Gortyna, Cnidus, Cyprus, and Cyrene. +\v 24 They also wrote this copy to Simon the high priest. +\p +\v 25 But King Antiochus encamped against Dor the second day, bringing his forces up to it continually, and making engines of war; and he shut up Tryphon from going in or out. +\v 26 Simon sent him two thousand chosen men to fight on his side, with silver, gold, and instruments of war in abundance. +\v 27 He would not receive them, but nullified all the covenants which he had made with him before, and was estranged from him. +\v 28 He sent to him Athenobius, one of his friends,\f + \fr 15:28 \ft See 1 Maccabees 2:18. \f* to confer with him, saying, “You hold possession of Joppa, Gazara, and the citadel that is in Jerusalem, cities of my kingdom. +\v 29 You have devastated their territory, and done great harm in the land, and control of many places in my kingdom. +\v 30 Now therefore hand over the cities which you have taken, and the tributes of the places which you have taken control of outside of the borders of Judea; +\v 31 or else give me for them five hundred talents of silver; and for the harm that you have done, and the tributes of the cities, another five hundred talents. Otherwise we will come and subdue you.” +\p +\v 32 Athenobius, the king’s friend,\f + \fr 15:32 \ft See 1 Maccabees 2:18. \f* came to Jerusalem. When he saw the glory of Simon, the cupboard of gold and silver vessels, and his great attendance, he was amazed. He reported to him the king’s words. +\v 33 Simon answered, and said to him, “We have not taken other men’s land nor do we have possession of that which belongs to others, but of the inheritance of our fathers. However, it had been in possession of our enemies wrongfully for a while. +\v 34 But we, having opportunity, firmly hold the inheritance of our fathers. +\v 35 As for Joppa and Gazara, which you demand, they did great harm among the people throughout our country. We will give one hundred talents for them.” +\p Athenobius didn’t answer even one word, +\v 36 but returned in a rage to the king, and reported to him these words, and the glory of Simon, and all that he had seen; and the king was exceedingly angry. +\v 37 Meanwhile, Tryphon embarked on board a ship, and fled to Orthosia. +\p +\v 38 The king appointed Cendebaeus chief captain of the sea coast, and gave him troops of infantry and cavalry. +\v 39 He commanded him to encamp against Judea, and he commanded him to build up Kidron, and to fortify the gates, and that he should fight against the people; but the king pursued Tryphon. +\v 40 So Cendebaeus came to Jamnia and began to provoke the people, and to invade Judea, and to take the people captive and kill them. +\v 41 He built Kidron and stationed cavalry and infantry there, to the end that going out they might make raids on the highways of Judea, as the king had commanded him. +\c 16 +\p +\v 1 John went up from Gazara and told Simon his father what Cendebaeus was doing. +\v 2 Simon called his two oldest sons, Judas and John, and said to them, “I and my brothers and my father’s house have fought the battles of Israel from our youth, even to this day; and things have prospered in our hands, that we have often delivered Israel. +\v 3 But now I am old, and you moreover, by his mercy, are of a sufficient age. Take the place of me and my brother, and go out and fight for our nation; and let the help which is from heaven be with you. +\p +\v 4 He chose out of the country twenty thousand men of war and cavalry, and they went against Cendebaeus, and slept at Modin. +\v 5 Rising up in the morning, they went into the plain, and, behold, a great army of infantry and cavalry came to meet them. There was a brook between them. +\v 6 He encamped near them, he and his people. He saw that the people were afraid to pass over the brook, and he passed over first. When the men saw him, they passed over after him. +\v 7 He divided the people, and placed the calvary in the midst of the infantry; but the enemies’ cavalry were exceedingly many. +\v 8 They sounded the trumpets; and Cendebaeus and his army were put to flight, and many of them fell wounded to death, but those who were left fled to the stronghold. +\v 9 At that time Judas, John’s brother, was wounded; but John pursued after them until he came to Kidron, which Cendebaeus had built. +\v 10 They fled to the towers that are in the fields of Azotus; and he burned it with fire. About two thousand men men of them fell. Then he returned into Judea in peace. +\p +\v 11 Ptolemy the son of Abubus had been appointed governor over the plain of Jericho, and he had much silver and gold; +\v 12 for he was the high priest’s son-in-law. +\v 13 His heart was lifted up, and he planned to make himself master of the country, and he made deceitful plans against Simon and his sons, to do away with them. +\v 14 Now Simon was visiting the cities that were in the country, and attending to their needs. He went down to Jericho—himself with Mattathias and Judas his sons—in the one hundred seventy-seventh year,\f + \fr 16:14 \ft circa B.C. 136. \f* in the eleventh month, which is the month Sebat. +\v 15 The son of Abubus received them deceitfully into the little stronghold that is called Dok, which he had built, and made them a great banquet, and hid men there. +\v 16 When Simon and his sons had drunk freely, Ptolemy and his men rose up, took their weapons, rushed in against Simon in the banqueting place, and killed him, his two sons, and some of his servants. +\v 17 He committed a great iniquity, and repaid evil for good. +\p +\v 18 Ptolemy wrote these things and sent to the king, that he should send him forces to aid him, and should deliver him their country and the cities. +\v 19 He sent others to Gazara to do away with John. To the captains of thousands, he sent letters to come to him, that he might give them silver, gold, and gifts. +\v 20 He sent others to take possession of Jerusalem and the temple hill. +\v 21 One ran before to Gazara, and told John that his father and kindred had perished, and he has sent to kill you also. +\v 22 When he heard, he was greatly shocked. He seized the men who came to destroy him and killed them; for he perceived that they were seeking to destroy him. +\p +\v 23 And the rest of the acts of John and of his wars and of his valiant deeds which he did, and of the building of the walls which he built, and of his achievements, +\v 24 behold, they are written in the chronicles\f + \fr 16:24 \ft Gr. \fqa book of days. \f* of his high priesthood, from the time that he was made high priest after his father. \ No newline at end of file diff --git a/bibles/eng-web_usfm/53-2MAeng-web.usfm b/bibles/eng-web_usfm/53-2MAeng-web.usfm new file mode 100644 index 0000000..a87718a --- /dev/null +++ b/bibles/eng-web_usfm/53-2MAeng-web.usfm @@ -0,0 +1,707 @@ +\id 2MA +\h 2 Maccabees +\toc1 The Second Book of the Maccabees +\toc2 2 Maccabees +\toc3 2Ma +\mt1 The Second Book of the Maccabees +\ip \bk The Second Book of the Maccabees\bk* is recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches. +\c 1 +\p +\v 1 The kindred, the Jews who are in Jerusalem and those who are in the country of Judea, send greetings and good peace to the kindred, the Jews who are throughout Egypt. +\v 2 May God do good to you, and remember his covenant with Abraham, Isaac, and Jacob, his faithful servants, +\v 3 and give you all a heart to worship him and do his will with a strong heart and a willing soul. +\v 4 May God open your heart to his law and his statutes, and make peace, +\v 5 and listen to your requests, and be reconciled with you, and not forsake you in an evil time. +\v 6 Now we are praying for you here. +\p +\v 7 In the reign of Demetrius, in the one hundred sixty-ninth year, we the Jews have already written to you in the suffering and in the distress that has come upon us in these years, from the time that Jason and his company revolted from the holy land and the kingdom, +\v 8 and set the gate on fire, and shed innocent blood. We prayed to the Lord, and were heard. We offered sacrifices and meal offerings. We lit the lamps. We set out the show bread.\f + \fr 1:8 \ft Gr. \fqa loaves \f* +\v 9 Now see that you keep the days of the feast of tabernacles in the month Chislev in the one hundred eighty-eighth year. +\b +\p +\v 10 The people of Jerusalem and those who are in Judea, with the senate and Judas, to Aristobulus, King Ptolemy’s teacher, who is also of the stock of the anointed priests, and to the Jews who are in Egypt, we send greetings and health. +\p +\v 11 Having been saved by God out of great perils, as men arrayed against a king, we thank him greatly. +\v 12 For he threw out into Persia those who fought against us in the holy city. +\v 13 For when the prince had come there, with an army that seemed irresistible, they were cut to pieces in the temple of Nanaea by the treachery of Nanaea’s priests. +\v 14 For Antiochus, on the pretense that he would marry her, came into the place, he and his friends who were with him, that they might take a large part of the treasures as a dowry. +\v 15 And when the priests of Nanaea’s temple had set the treasures out, and he had come there with a small company within the wall of the sacred precinct, they locked the temple when Antiochus had come in. +\v 16 Opening the secret door of the paneled ceiling, they threw stones and struck down the prince. They cut him and his company in pieces, and cut off their heads, and threw them to the people who were outside. +\v 17 Blessed be our God in all things, who handed over those who had committed impiety. +\p +\v 18 Since we are now about to celebrate the purification of the temple in the month Chislev, on the twenty-fifth day, we thought it necessary to notify you, so that you may also keep a feast of tabernacles, and remember the fire which was given when Nehemiah offered sacrifices, after he had built both the temple and the altar. +\p +\v 19 For indeed when our fathers were about to be led into the land of Persia, the godly priests of that time took some of the fire of the altar, and hid it secretly in the hollow of a well that was without water, where they made sure that the place was unknown to anyone. +\v 20 Now after many years, when it pleased God, Nehemiah, having received a charge from the king of Persia, sent in quest of the fire the descendants of the priests who hid it. When they declared to us that they had found no fire, but thick liquid, +\v 21 he commanded them to draw some of it out and bring it to him. When the sacrifices had been offered, Nehemiah commanded the priests to sprinkle with that liquid both the wood and the things laid on it. +\v 22 When that was done and some time had passed, and the sun shone out, which before was hidden with clouds, a great blaze was kindled, so that all men marveled. +\v 23 The priests made a prayer while the sacrifice was being consumed—both the priests and all the others. Jonathan led and the rest responded, as Nehemiah did. +\p +\v 24 The prayer was like this: “O Lord, Lord God, the Creator of all things, who are awesome, strong, righteous, and merciful, who alone are King and gracious, +\v 25 who alone supply every need, who alone are righteous, almighty, and eternal, you who save Israel out of all evil, who chose the ancestors and sanctified them, +\v 26 accept the sacrifice for all your people Israel, and preserve your own portion, and consecrate it. +\v 27 Gather together our scattered people, set at liberty those who are in bondage among the heathen, look upon those who are despised and abhorred, and let the heathen know that you are our God. +\v 28 Punish those who oppress us and in arrogance shamefully entreat us. +\v 29 Plant your people in your holy place, even as Moses said.” +\p +\v 30 Then the priests sang the hymns. +\v 31 As soon as the sacrifice was consumed, then Nehemiah commanded that the rest of the liquid be poured on large stones. +\v 32 When this was done, a flame was kindled; but when the light from the altar shone back, it went out. +\v 33 When the matter became known, and it was told the king of the Persians that, in the place where the priests who were led away had hid the fire, the liquid appeared which Nehemiah and those who were with him purified the sacrifice, +\v 34 then the king enclosed the place and made it sacred after he had investigated the matter. +\v 35 When the king would show favor to any, he would exchange many presents and give them some of this liquid. +\v 36 Nehemiah and those who were with him called this thing “Nephthar”, which is by interpretation, “Cleansing”; but most men call it Nephthai. +\c 2 +\p +\v 1 It is also found in the records that Jeremiah the prophet commanded those who were carried away to take some of the fire, as has been mentioned, +\v 2 and how that the prophet charged those who were carried away, having given them the law, that they should not forget the statutes of the Lord or be led astray in their minds when they saw images of gold and silver, and their adornment. +\v 3 With other such words he exhorted them, that the law should not depart from their hearts. +\p +\v 4 It was in the writing that the prophet, being warned by God, commanded that the tabernacle and the ark should follow with him,\f + \fr 2:4 \ft Gr. \fqa and when. \ft The Greek text here is probably corrupt. \f* when he went out to the mountain where Moses had gone up and saw God’s inheritance. +\v 5 Jeremiah came and found a cave, he brought the tabernacle, the ark, and the altar of incense into it; then he sealed the entrance. +\v 6 Some of those who followed with him came there that they might mark the way, and could not find it. +\v 7 But when Jeremiah learned about that, he rebuked them, saying, “The place shall be unknown until God gathers the people together again and shows mercy. +\v 8 Then the Lord will disclose these things, and the glory of the Lord shall be seen with the cloud, as it was also shown to Moses, also as Solomon implored that the place might be consecrated greatly, +\v 9 and it was also declared that he, having wisdom, offered a sacrifice of dedication, and of the finishing of the temple. +\v 10 As Moses prayed to the Lord and fire came down out of heaven and consumed the sacrifice, even so Solomon also prayed, and the fire came down and consumed the burnt offerings. +\v 11 \f + \fr 2:11 \ft See Leviticus 10:16 and 9:24. \f*Moses said, ‘Because the sin offering had not been eaten, it was consumed in like manner.’ +\v 12 Likewise Solomon kept the eight days.” +\p +\v 13 The same things were reported both in the public archives and in Nehemiah’s records, and also how he, founding a library, gathered together the books about the kings and prophets, and the writings of David, and letters of kings about sacred gifts. +\v 14 In like manner Judas also gathered together for us all those books that had been scattered by reason of the war, and they are still with us. +\v 15 If therefore you have need of them, send some people to bring them to you. +\p +\v 16 Seeing then that we are about to celebrate the purification, we write to you. You will therefore do well if you celebrate the days. +\v 17 Now God, who saved all his people, and restored the heritage to all, with the kingdom, the priesthood, and the consecration, +\v 18 even as he promised through the law—in God have we hope, that he will soon have mercy upon us, and gather us together out of everywhere under heaven into his holy place; for he delivered us out of great evils, and purified the place. +\b +\pc ——————— +\b +\p +\v 19 Now the things concerning Judas Maccabaeus and his brothers, the purification of the greatest temple, the dedication of the altar, +\v 20 and further the wars against Antiochus Epiphanes and Eupator his son, +\v 21 and the manifestations that came from heaven to those who fought with one another in brave deeds for the religion of the Jews; so that, being but a few, they seized the whole country, chased the barbarous multitudes, +\v 22 recovered again the temple renowned all the world over, freed the city, and restored the laws which were about to be overthrown, seeing the Lord became gracious to them with all kindness. +\v 23 These things which have been declared by Jason of Cyrene in five books, we will attempt to abridge in one book. +\v 24 For having in view the confused mass of the numbers, and the\f + \fr 2:24 \ft Or, weariness \f* difficulty which awaits those who would enter into the narratives of the history, by reason of the abundance of the matter, +\v 25 we were careful that those who choose to read may be attracted, and that those who wish us well may find it easy to recall, and that all readers may benefit. +\v 26 Although to us, who have taken upon ourselves the painful labor of the abridgement, the task is not easy, but a matter of sweat and sleeplessness, +\v 27 even as it is no light thing to him who prepares a banquet, and seeks the benefit of others. Nevertheless, for the sake of the gratitude of the many we will gladly endure the painful labor, +\v 28 leaving to the historian the exact handling of every particular, and again having no strength to fill in the outlines of our abridgement. +\v 29 For as the masterbuilder of a new house must care for the whole structure, and again he who undertakes to decorate and paint it must seek out the things fit for its adorning; even so I think it is also with us. +\v 30 To occupy the ground, and to indulge in long discussions, and to be curious in particulars, is fitting for the first author of the history; +\v 31 but to strive after brevity of expression, and to avoid a labored fullness in the treatment, is to be granted to him who would bring a writing into a new form. +\v 32 Here then let’s begin the narration, only adding this much to that which has already been said; for it is a foolish thing to make a long prologue to the history, and to abridge the history itself. +\b +\c 3 +\p +\v 1 When the holy city was inhabited with unbroken peace and the laws were kept very well because of the godliness of Onias the high priest and his hatred of wickedness, +\v 2 it came to pass that even the kings themselves honored the place and glorified the temple with the noblest presents, +\v 3 so that even King Seleucus of Asia bore all the costs belonging to the services of the sacrifices out of his own revenues. +\v 4 But a man named Simon of the tribe of Benjamin, having been made guardian of the temple, disagreed with the high priest about the ruling of the market in the city. +\v 5 When he couldn’t overcome Onias, he went to Apollonius of \f + \fr 3:5 \ft Greek \fqa Thraseas\f*Tarsus, who at that time was governor of Coelesyria and Phoenicia. +\v 6 He brought him word how that the treasury in Jerusalem was full of untold sums of money, so that the multitude of the funds was innumerable, and that they didn’t pertain to the account of the sacrifices, but that it was possible that these should fall under the king’s power. +\v 7 When Apollonius met the king, he informed him of the money about which he had been told. So the king appointed Heliodorus, who was his chancellor, and sent him with a command to accomplish the removal of the reported money. +\v 8 So Heliodorus set out on his journey at once, ostensibly to visit the cities of Coelesyria and Phoenicia, but in fact to execute the king’s purpose. +\p +\v 9 When he had come to Jerusalem and had been courteously received by the high priest of the city, he told him about the information which had been given, and declared why he had come; and he inquired if in truth these things were so. +\v 10 The high priest explained to him that there were in the treasury deposits of widows and orphans, +\v 11 and moreover some money belonging to Hyrcanus the son of Tobias, a man in very high place, not as that impious Simon falsely alleged; and that in all there were four hundred talents of silver and two hundred of gold, +\v 12 and that it was altogether impossible that wrong should be done to those who had put trust in the holiness of the place, and in the majesty and inviolable sanctity of the temple, honored over all the world. +\v 13 But Heliodorus, because of the king’s command given him, said that in any case this money must be confiscated for the king’s treasury. +\p +\v 14 So having appointed a day, he entered in to direct the inquiry concerning these matters; and there was no small distress throughout the whole city. +\v 15 The priests, prostrating themselves before the altar in their priestly garments, and called toward heaven upon him who gave the law concerning deposits, that he should preserve these treasures safe for those who had deposited them. +\v 16 Whoever saw the appearance of the high priest was wounded in mind; for his countenance and the change of his color betrayed the distress of his soul. +\v 17 For a terror and a shuddering of the body had come over the man, by which the pain that was in his heart was plainly shown to those who looked at him. +\v 18 Those who were in the houses rushed out in crowds to make a universal supplication, because the place was about to come into dishonor. +\v 19 The women, girded with sackcloth under their breasts, thronged the streets. The virgins who were kept indoors ran together, some to the gates, others to the walls, and some looked out through the windows. +\v 20 All, stretching out their hands toward heaven, made their solemn supplication. +\v 21 Then it was pitiful to see the multitude prostrating themselves all mixed together, and the anxiety of the high priest in his great distress. +\p +\v 22 While therefore they called upon the Almighty Lord to keep the things entrusted to them \f + \fr 3:22 \ft Gr. \fqa safe with all security.\f*safe and secure for those who had entrusted them, +\v 23 Heliodorus went on to execute that which had been decreed. +\v 24 But when he was already present there with his guards near the treasury, the Sovereign of spirits and of all authority caused a great manifestation, so that all who had presumed to come with him, stricken with dismay at the power of God, fainted in terror. +\v 25 For they saw a horse with a frightening rider, adorned with beautiful trappings, and he rushed fiercely and struck at Heliodorus with his forefeet. It seemed like he who sat on the horse had complete armor of gold. +\v 26 Two others also appeared to him, young men notable in their strength, and beautiful in their glory, and splendid in their apparel, who stood by him on either side, and scourged him unceasingly, inflicting on him many sore stripes. +\v 27 When he had fallen suddenly to the ground, and great darkness had come over him, his guards picked him up and put him on a stretcher, +\v 28 and carried him—this man who had just now entered with a great retinue and all his guard into the aforesaid treasury, himself now brought to utter helplessness, manifestly made to recognize the sovereignty of God. +\v 29 So, while he, through the working of God, speechless and bereft of all hope and deliverance, lay prostrate, +\v 30 they blessed the Lord who acted marvelously for his own place. The temple, which a little before was full of terror and alarm, was filled with joy and gladness after the Almighty Lord appeared. +\p +\v 31 But quickly some of Heliodorus’s familiar friends implored Onias to call upon the Most High to grant life to him who lay quite at the last gasp. +\v 32 The high priest, secretly fearing lest the king might come to think that some treachery toward Heliodorus had been perpetrated by the Jews, brought a sacrifice for the recovery of the man. +\v 33 But as the high priest was making the atoning sacrifice, the same young men appeared again to Heliodorus, arrayed in the same garments. They stood and said, “Give Onias the high priest great thanks, for for his sake the Lord has granted you life. +\v 34 See that you, since you have been scourged from heaven, proclaim to all men the sovereign majesty of God.” When they had spoken these words, they vanished out of sight. +\v 35 So Heliodorus, having offered a sacrifice to the Lord and vowed \f + \fr 3:35 \ft Gr. \fqa greatest. \f*great vows to him who had saved his life, and having bidden Onias farewell, returned with his army to the king. +\v 36 He testified to all men the works of the greatest God, which he had seen with his eyes. +\p +\v 37 When the king asked Heliodorus what sort of man was fit to be sent yet once again to Jerusalem, he said, +\v 38 “If you have any enemy or conspirator against the state, send him there, and you will receive him back well scourged, if he even escapes with his life; because truly there is some power of God in that place. +\v 39 For he who has his dwelling in heaven himself has his eyes on that place and helps it. Those who come to hurt it, he strikes and destroys.” +\p +\v 40 This was the history of Heliodorus and the keeping of the treasury. +\c 4 +\p +\v 1 The previously mentioned Simon, who had given information about the money against his country, slandered Onias, saying that it was he who had incited Heliodorus and had been the real cause of these evils. +\v 2 He dared to call him a conspirator against the state who was actually the benefactor of the city, the guardian of his fellow countrymen, and a zealot for the laws. +\v 3 When his hatred grew so great that even murders were perpetrated through one of Simon’s approved agents, +\v 4 Onias, seeing the danger of the contention, and that \f + \fr 4:4 \ft Compare 2 Maccabees 4:21. See also 2 Maccabees 3:5. The Greek as commonly read means \fqa Apollonius, as \ft being \fqa the governor...Phoenicia, did rage, and increase etc. \f*Apollonius the son of Menestheus, the governor of Coelesyria and Phoenicia, was increasing Simon’s malice, +\v 5 appealed to the king, not to be an accuser of his fellow-citizens, but looking to the good of all the\f + \fr 4:5 \ft Gr. \fqa multitude. \f* people, both public and private; +\v 6 for he saw that without the king’s involvement it was impossible for the state to obtain peace any more, and that Simon would not cease from his madness. +\p +\v 7 When Seleucus was deceased, and Antiochus, who was called Epiphanes, succeeded to the kingdom, Jason the brother of Onias supplanted his brother in the high priesthood, +\v 8 having promised to the king at an audience three hundred sixty talents of silver, and out of another fund eighty talents. +\v 9 In addition to this, he undertook to assign one hundred fifty more, if it might be allowed him \f + \fr 4:9 \ft Gr. \fqa through his. \f*through the king’s authority to set him up a gymnasium and a body of youths to be trained in it, and to register the inhabitants of Jerusalem as citizens of Antioch. +\v 10 When the king had assented, and Jason had taken possession of the office, he immediately shifted those of his own race to the Greek way of life. +\v 11 Setting aside the royal ordinances of special favor to the Jews, granted by the means of John the father of Eupolemus, who went on the mission to the Romans to establish friendship and alliance, and seeking to overthrow the lawful ways of living, he brought in new customs forbidden by the law. +\v 12 For he eagerly established a gymnasium under the citadel itself, and caused the noblest of the young men to wear the Greek hat. +\v 13 Thus there was an extreme of hellenization, and an advance of a foreign religion, by reason of the exceeding profaneness of Jason, who was an ungodly man and not a high priest; +\v 14 so that the priests had no more any zeal for the services of the altar; but despising the sanctuary and neglecting the sacrifices, they hastened to enjoy that which was unlawfully provided in the wrestling arena, after the summons to the discus-throwing. +\v 15 They despised the honors of their fathers, and valued the prestige of the Greeks best of all. +\v 16 For this reason, severe calamity overtook them. The men whose ways of living they earnestly followed, and to whom they desired to be made like in all things, these became their enemies and punished them. +\v 17 For it is not a light thing to show irreverence to God’s laws, but later events will make this clear. +\p +\v 18 Now when certain games that came every fifth year were kept at Tyre, and the king was present, +\v 19 the vile Jason sent sacred envoys,\f + \fr 4:19 \ft See ver. 9.\f* as being Antiochians of Jerusalem, bearing three hundred drachmas of silver to the sacrifice of Hercules, which even the bearers thereof thought not right to use for any sacrifice, because it was not fit, but to spend it for another purpose. +\v 20 Although the intended purpose of the sender this money was for the sacrifice of Hercules, yet on account of \f + \fr 4:20 \ft Some authorities read \fqa the bearers. \f*present circumstances it went to the construction of trireme warships. +\p +\v 21 Now when Apollonius the son of Menestheus was sent into Egypt for the \f + \fr 4:21 \ft The exact meaning of the Greek word is uncertain.\f*enthronement of Philometor as king, Antiochus, learning that Philometor had shown himself hostile toward the government, took precautions for the security of his realm. Therefore, going to Joppa, he travelled on to Jerusalem. +\v 22 Being magnificently received by Jason and the city, he was brought in with torches and shouting. Then he led his army down into Phoenicia. +\p +\v 23 Now after a space of three years, Jason sent Menelaus, the previously mentioned Simon’s brother, to carry the money to the king, and to make reports concerning some necessary matters. +\v 24 But he being commended to the king, and having been glorified by the display of his authority, secured the high priesthood for himself, outbidding Jason by three hundred talents of silver. +\v 25 After receiving the royal mandates, he returned bringing nothing worthy of the high priesthood, but having the passion of a cruel tyrant and the rage of a savage animal. +\v 26 So Jason, who had supplanted his own brother, was supplanted by another and driven as a fugitive into the country of the Ammonites. +\v 27 Menelaus had possession of the office, but of the money that had been promised to the king nothing was regularly paid, even though Sostratus the governor of the citadel demanded it— +\v 28 for his job was the gathering of the revenues—so they were both called by the king to his presence. +\v 29 Menelaus left his own brother Lysimachus for his\f + \fr 4:29 \ft Gr. \fqa successor. \f* deputy in the high priesthood; and Sostratus left Crates, who was over the Cyprians. +\p +\v 30 Now while this was the state of things, it came to pass that the people of Tarsus and Mallus revolted because they were to be given as a present to Antiochis, the king’s concubine. +\v 31 The king therefore quickly came to settle matters, leaving for his \f + \fr 4:31 \ft Gr. \fqa successor. \f*deputy Andronicus, a man of high rank. +\v 32 Then Menelaus, supposing that he had gotten a favorable opportunity, presented to Andronicus certain vessels of gold belonging to the temple, which he had stolen. He had already sold others into Tyre and the neighboring cities. +\v 33 When Onias had sure knowledge of this, he sharply reproved him, having withdrawn himself into a sanctuary at Daphne, that lies by Antioch. +\v 34 Therefore Menelaus, taking Andronicus aside, asked him to kill Onias. Coming to Onias, and being persuaded to use treachery, and being received as a friend, Andronicus gave him his right hand with oaths and, though he was suspicious, persuaded him to come out of the sanctuary. Then, with no regard for justice, he immediately put him to death. +\v 35 For this reason not only Jews, but many also of the other nations, had indignation and displeasure at the unjust murder of the man. +\v 36 And when the king had come back from the places in Cilicia, the Jews who were in the city appealed to him against Andronicus (the Greeks also joining with them in hatred of the wickedness), urging that Onias had been wrongfully slain. +\v 37 Antiochus therefore was heartily sorry, and was moved to pity, and wept, because of the sober and well ordered life of him who was dead. +\v 38 Being inflamed with anger, he immediately stripped off Andronicus’s purple robe, and tore off his under garments, and when he had led him round through the whole city to that very place where he had committed the outrage against Onias, there he put the murderer out of the way, the Lord rendering to him the punishment he had deserved. +\p +\v 39 Now when many sacrileges had been committed in the city by Lysimachus with the consent of Menelaus, and when the report of them had spread abroad outside, the people gathered themselves together against Lysimachus, after many vessels of gold had already been stolen. +\v 40 When the multitudes were rising against him and were filled with anger, Lysimachus armed about three thousand men, and with unrighteous violence began the attack under the leadership of Hauran, a man far gone in years and no less also in folly. +\v 41 But when they perceived the assault of Lysimachus, some caught up stones, others logs of wood, and some took handfuls of the ashes that lay near, and they flung them all in wild confusion at Lysimachus and those who were with him. +\v 42 As a result, they wounded many of them, they killed some, and they forced the rest of them to flee, but the author of the sacrilege himself they killed beside the treasury. +\p +\v 43 But about these matters, there was an accusation laid against Menelaus. +\v 44 When the king had come to Tyre, the three men who were sent by the senate pleaded the cause before him. +\v 45 But Menelaus, seeing himself now defeated, promised much money to Ptolemy the son of Dorymenes, that he might win over the king. +\v 46 Therefore Ptolemy taking the king aside into a cloister, as if to get some fresh air, convinced him to change his mind. +\v 47 He who was the cause of all the evil, Menelaus, he discharged from the accusations; but these hapless men, who, if they had pleaded even before Scythians, would have been discharged uncondemned, them he sentenced to death. +\v 48 Those who were spokesmen for the city and the families of Israel and the holy vessels soon suffered that unrighteous penalty. +\v 49 Therefore even certain Tyrians, moved with hatred of the wickedness, provided magnificently for their burial. +\v 50 But Menelaus, through the covetous dealings of those who were in power, remained still in his office, growing in wickedness, established as a great conspirator against his fellow-citizens. +\c 5 +\p +\v 1 Now about this time Antiochus made his second invasion into Egypt. +\v 2 It happened that throughout all the city, for almost forty days, cavalry appeared in the midst of the sky in swift motion, wearing robes woven with gold and carrying spears, equipped with troops for battle— +\v 3 drawing swords, squadrons of cavalry in array, encounters and pursuits of both armies, shaking shields, multitudes of lances, throwing of missiles, flashing of golden trappings, and putting on all sorts of armor. +\v 4 Therefore everyone prayed that the manifestation might have been given for good. +\p +\v 5 When a false rumor had arisen that Antiochus was dead, Jason took not less than a thousand men, and suddenly made an assault upon the city. When those who were on the wall were being routed, and the city was at length nearly taken, Menelaus took refuge in the citadel. +\v 6 But Jason slaughtered his own citizens without mercy, not considering that good success against kinsmen is the greatest misfortune, but supposing himself to be setting up trophies over enemies, and not over fellow-countrymen. +\v 7 He didn’t win control of the government, but receiving shame as the result of his conspiracy, he fled again as a fugitive into the country of the Ammonites. +\v 8 At last therefore he met with a miserable end. Having been imprisoned at the court of Aretas the prince of the Arabians, fleeing from city to city, pursued by all men, hated as a rebel against the laws, and abhorred as the executioner of his country and his fellow citizens, he was cast ashore in Egypt. +\v 9 He who had driven many from their own country into exile perished in exile, having crossed the sea to the Lacedaemonians, hoping to find shelter there because they were\f + \fr 5:9 \ft See 1 Maccabees 12:7. \f* near of kin. +\v 10 He who had thrown out a multitude unburied had none to mourn for him. He didn’t have any funeral at all and no place in the tomb of his ancestors. +\p +\v 11 Now when news came to the king concerning that which was done, he thought that Judea was in revolt. So, setting out from Egypt in a rage, he took the city by force of weapons, +\v 12 and commanded his soldiers to cut down without mercy those who came in their way, and to kill those who went into their houses. +\v 13 Then there was killing of young and old, destruction of boys, women, and children, and slaying of virgins and infants. +\v 14 In a total of three days, eighty thousand were destroyed, of which forty thousand were slain in close combat, and no fewer were sold into slavery than slain. +\p +\v 15 Not content with this, he presumed to enter into the most holy temple of all the earth, having Menelaus for his guide (who had proved himself a traitor both to the laws and to his country), +\v 16 even taking the sacred vessels with his polluted hands, and dragging down with his profane hands the offerings that had been dedicated by other kings to enhance the glory and honor of the place. +\v 17 Antiochus was lifted up in mind, not seeing that because of the sins of those who lived in the city the Sovereign Lord had been provoked to anger a little while, and therefore his eye was turned away from the place. +\v 18 But had it not been so that they were already bound by many sins, this man, even as Heliodorus who was sent by King Seleucus to view the treasury, would, as soon as he came forward, have been scourged and turned back from his daring deed. +\v 19 However the Lord didn’t choose the nation for the place’s sake, but the place for the nation’s sake. +\v 20 Therefore also the place itself, having shared in the calamities that happened to the nation, did afterward share in its benefits; and the place which was forsaken in the wrath of the Almighty was, at the reconciliation of the great Sovereign, restored again with all glory. +\p +\v 21 As for Antiochus, when he had carried away out of the temple one thousand eight hundred talents, he hurried away to Antioch, thinking in his arrogance that he could sail on land and walk on the sea, because his heart was lifted up. +\v 22 Moreover he left governors to afflict the race: at Jerusalem, Philip, by race a Phrygian, and in character more barbarous than him who set him there; +\v 23 and at Gerizim, Andronicus; and besides these, Menelaus, who worse than all the rest, exalted himself against his fellow-citizens. Having a malicious mind\f + \fr 5:23 \ft Some authorities read \fqa toward the Jews, he sent. \ft The Greek text of this sentence is uncertain. \f* toward the Jews\f + \fr 5:23 \ft Compare 2 Maccabees 4:9, 19; 9:19. \f* whom he had made his citizens, +\v 24 he sent that\f + \fr 5:24 \ft Gr. \fqa Μυσάρχην, \ft which also may mean \fqa ruler of the Mysians. \f* lord of pollutions Apollonius with an army of twenty-two thousand, commanding him to kill all those who were of full age, and to sell the women and the boys as slaves. +\v 25 He came to Jerusalem, and pretending to be a man of peace, waited till the holy day of the Sabbath, and finding the Jews at rest from work, he commanded his men to parade fully armed. +\v 26 He put to the sword all those who came out to the spectacle. Running into the city with the armed men, he killed great multitudes. +\v 27 But Judas, who is also called Maccabaeus, with about nine others, withdrew himself, and with his company kept himself alive in the mountains like wild animals do. They continued feeding on what grew wild, that they might not be partakers of the defilement. +\c 6 +\p +\v 1 Not long after this, the king sent out \f + \fr 6:1 \ft Or, \fqa Geron an Athenian \f*an old man of Athens to compel the Jews to depart from the laws of their fathers and not to live by the laws of God, +\v 2 and also to pollute the sanctuary in Jerusalem and to call it by the name of Olympian Zeus, and to call the sanctuary in Gerizim by the name of Zeus the Protector of foreigners, even as the people who lived in that place did. +\p +\v 3 The visitation of this evil was harsh and utterly grievous. +\v 4 For the temple was filled with debauchery and reveling by the heathen, who \f + \fr 6:4 \ft Or, \fqa idled with their fellows \f*dallied with prostitutes, and had intercourse with women within the sacred precincts, and moreover brought inside things that were not appropriate. +\v 5 The altar was filled with those abominable things which had been prohibited by the laws. +\v 6 A man could neither keep the Sabbath, nor observe the feasts of their ancestors, nor so much as confess himself to be a Jew. +\p +\v 7 On the day of the king’s birth every month, they were led along with bitter constraint to eat of the sacrifices. When the feast of Dionysia came, they were compelled to go in procession in honor of Dionysus, wearing wreaths of ivy. +\v 8 A decree went out to the neighboring Greek cities, by the suggestion of Ptolemy, that they should observe the same conduct against the Jews, and should make them eat of the sacrifices, +\v 9 and that they should kill those who didn’t choose to go over to the Greek rites. So the present misery was for all to see. +\v 10 For example, two women were brought in for having circumcised their children. These, when they had led them publicly around the city with the babes hung from their breasts, they threw down headlong from the wall. +\v 11 Others who had run together into the caves nearby to keep the seventh day secretly, were betrayed to Philip and were all burned together, because their piety kept them from defending themselves, in view of the honor of that most solemn day. +\p +\v 12 I urge those who read this book to not be discouraged because of the calamities, but recognize that these punishments were not for the destruction, but for the chastening of our race. +\v 13 For indeed it is a sign of great kindness that those who act impiously are not let alone for a long time, but immediately meet with retribution. +\v 14 For in the case of the other nations, the Sovereign Lord waits patiently to punish them until they have attained to the full measure of their sins; but not with us, +\v 15 that he may not take vengeance on us afterward,\f + \fr 6:15 \ft Or, \fqa when our sins have come to their height \f* when we have come to the\f + \fr 6:15 \ft Gr. \fqa end. \f* height of our sins. +\v 16 Therefore he never withdraws his mercy from us; but though he chastens with calamity, he doesn’t forsake his own people. +\v 17 However let this that we have spoken suffice to remind you; but after a few words, we must come to the narrative. +\p +\v 18 Eleazar, one of the principal scribes, a man already well advanced in years, and of a noble countenance, was compelled to open his mouth to eat swine’s flesh. +\v 19 But he, welcoming death with honor rather than life with defilement, advanced of his own accord to the instrument of torture, but first spat out the flesh, +\v 20 as men ought to come who are resolute to repel such things as not even for the natural love of life is it lawful to taste. +\p +\v 21 But those who had the charge of that forbidden sacrificial feast took the man aside, for the acquaintance which of old times they had with him, and privately implored him to bring flesh of his own providing, such as was proper for him to use, and to make as if he did eat of the flesh from the sacrifice, as had been commanded by the king; +\v 22 that by so doing he might be delivered from death, and so his ancient friendship with them might be treated kindly. +\v 23 But he, having formed a high resolve, and one that became his years, the dignity of old age, and the gray hairs\f + \fr 6:23 \ft The Greek text appears to be corrupt. \f* which he had reached with honor, and his excellent\f + \fr 6:23 \ft Some authorities read \fqa manner of life. \f* education from a child, or rather the holy laws\f + \fr 6:23 \ft Gr. \fqa legislation. \f* of God’s ordaining, declared his mind accordingly, bidding them to quickly send him to Hades. +\p +\v 24 “For it doesn’t become our years to dissemble,” he said, “that many of the young should suppose that Eleazar, the man of ninety years, had gone over to an alien religion; +\v 25 and so they, by reason of my deception, and for the sake of this brief and momentary life, would be led astray because of me, and I defile and disgrace myself in my old age. +\v 26 For even if for the present time I would remove from me the punishment of men, yet whether I live or die, I wouldn’t escape the hands of the Almighty. +\v 27 Therefore, by bravely parting with my life now, I will show myself worthy of my old age, +\v 28 and \f + \fr 6:28 \ft Gr. \fqa one that has left behind. \f*leave behind a noble example to the young to die willingly and nobly a glorious death for the revered and holy laws.” +\p When he had said these words, he went immediately to the instrument of torture. +\v 29 \f + \fr 6:29 \ft The Greek text of this verse is uncertain. \f*When they changed the good will they bore toward him a little before into ill will because these words of his were, as they thought, sheer madness, +\v 30 and when he was at the point to die with the\f + \fr 6:30 \ft Or, \fqa blows \f* blows, he groaned aloud and said, “To the Lord, who has the holy knowledge, it is manifest that, while I might have been delivered from death, I endure severe pains in my body by being scourged; but in soul I gladly suffer these things because of my fear of him.” +\p +\v 31 So this man also died like this, leaving his death for an example of nobleness and a memorial of virtue, not only to the young but also to the great body of his nation. +\c 7 +\p +\v 1 It came to pass that seven brothers and their mother were at the king’s command taken and shamefully handled with scourges and cords, to compel them to taste of the abominable swine’s flesh. +\v 2 One of them made himself the spokesman and said, “What would you ask and learn from us? For we are ready to die rather than transgress the laws of our ancestors.” +\p +\v 3 The king fell into a rage, and commanded that pans and caldrons be heated. +\v 4 When these were immediately heated, he gave orders to cut out the tongue of him who had been their spokesman, and to scalp him, and to cut off his extremities, with the rest of his brothers and his mother looking on. +\v 5 And when he was utterly\f + \fr 7:5 \ft Gr. \fqa useless. \f* maimed, the king gave orders to bring him to the fire, being yet alive, and to fry him in the pan. And as the smoke from the pan spread far, they and their mother also exhorted one another to die nobly, saying this: +\v 6 “The Lord God sees, and in truth is\f + \fr 7:6 \ft Or, \fqa comforted in \f* entreated for us, as Moses declared in \f + \fr 7:6 \ft See Deuteronomy 31:21 and 32:36. \f*his song, which witnesses against the people to their faces, saying, ‘And he will have compassion on his servants.’” +\p +\v 7 And when the first had died like this, they brought the second to the mocking; and they pulled off the skin of his head with the hair and asked him, “Will you eat, before your body is punished in every limb?” +\p +\v 8 But he answered in the language of his ancestors and said to them, “No.” Therefore he also underwent the next torture in succession, as the first had done. +\v 9 When he was at the last gasp, he said, “You, miscreant, release us out of this present life, but the King of the world will raise us who have died for his laws up to an everlasting renewal of life.” +\p +\v 10 After him, the third was made a victim of their mocking. When he was required, he quickly put out his tongue, and stretched out his hands courageously, +\v 11 and nobly said, “I got these from heaven. For his laws’ sake I treat these with contempt. From him, I hope to receive these back again.” +\v 12 As a result, the king himself and those who were with him were astonished at the young man’s soul, for he regarded the pains as nothing. +\p +\v 13 When he too was dead, they shamefully handled and tortured the fourth in the same way. +\v 14 Being near to death he said this: “It is good to die at the hands of men and look for the hope which is given by God, that we will be raised up again by him. For as for you, you will have no resurrection to life.” +\p +\v 15 Next after him, they brought the fifth and shamefully handled him. +\v 16 But he looked toward \f + \fr 7:16 \ft Gr. \fqa him. \f*the king and said, “Because you have authority among men, though you are corruptible, you do what you please. But don’t think that our race has been forsaken by God. +\v 17 But hold on to your ways, and see how his sovereign majesty will torture you and your descendants!” +\p +\v 18 After him they brought the sixth. When he was about to die, he said, “Don’t be vainly deceived, for we suffer these things for our own doings, as sinning against our own God. Astounding things have come to pass; +\v 19 but don’t think that you will be unpunished, having tried to fight against God!” +\p +\v 20 But above all, the mother was marvelous and worthy of honorable memory; for when she watched seven sons perishing within the space of one day, she bore the sight with a good courage because of her hope in the Lord. +\v 21 She exhorted each one of them in the language of their fathers, filled with a noble spirit and stirring up her woman’s thoughts with manly courage, saying to them, +\v 22 “I don’t know how you came into my womb. It wasn’t I who gave you your \f + \fr 7:22 \ft Or, \fqa breath \f*spirit and your life. It wasn’t I who brought into order the first elements of each one of you. +\v 23 Therefore the Creator of the world, who shaped the first origin of man and devised the first origin of all things, in mercy gives back to you again both your \f + \fr 7:23 \ft Or, \fqa breath \f*spirit and your life, as you now treat yourselves with contempt for his laws’ sake.” +\p +\v 24 But Antiochus, thinking himself to be despised, and suspecting the reproachful voice, while the youngest was yet alive didn’t only make his appeal to him by words, but also at the same time promised with oaths that he would enrich him and\f + \fr 7:24 \ft Gr. \fqa make him one that is counted happy. \f* raise him to high honor if he would turn from the ways of his ancestors, and that he would take him for his \f + \fr 7:24 \ft See 2 Maccabees 8:9. \f*friend and entrust him with public affairs. +\v 25 But when the young man would in no way listen, the king called to him his mother, and urged her to advise the youth to save himself. +\v 26 When he had urged her with many words, she undertook to persuade her son. +\v 27 But bending toward him, laughing the cruel tyrant to scorn, she spoke this in the language of her fathers: “My son, have pity upon me who carried you nine months in my womb, and nursed you three years, and nourished and brought you up to this age, and sustained you. +\v 28 I beg you, my child, to lift your eyes to the sky and the earth, and to see all things that are in it, and thus to recognize that God made them not of things that were, and that the race of men in this way comes into being. +\v 29 Don’t be afraid of this butcher, but, proving yourself worthy of your brothers, accept your death, that in God’s mercy I may receive you again with your brothers.” +\p +\v 30 But before she had finished speaking, the young man said, “What are you all waiting for? I don’t obey the commandment of the king, but I listen to the commandment of the law that was given to our fathers through Moses. +\v 31 But you, who have devised all kinds of evil against the Hebrews, will in no way escape God’s hands. +\v 32 For we are suffering because of our own sins. +\v 33 If for rebuke and chastening, our living Lord has been angered a little while, yet he will again be reconciled with his own servants. +\v 34 But you, O unholy man and of all most vile, don’t be vainly lifted up in your wild pride with uncertain hopes, raising your hand against the heavenly children. +\v 35 For you have not yet escaped the judgment of the Almighty God who sees all things. +\v 36 For these our brothers, having endured a \f + \fr 7:36 \ft Gr. \fqa short pain of ever-flowing life. \f*short pain that brings everlasting life, have now \f + \fr 7:36 \ft Gr. \fqa fallen. \ft By the omission of one Greek letter the words would signify \fqa having endured a short pain, have now drunk of ever-flowing life under God’s covenant.\f*died under God’s covenant. But you, through God’s judgment, will receive in just measure the penalties of your arrogance. +\v 37 But I, as my brothers, give up both body and soul for the laws of our fathers, calling upon God that he may speedily become \f + \fr 7:37 \ft Gr. \fqa propitious. \f*gracious to the nation, and that you, amidst trials and plagues, may confess that he alone is God, +\v 38 and that in me and my brothers \f + \fr 7:38 \ft Some authorities read \fqa may be stayed. \f*you may bring to an end the wrath of the Almighty which has been justly brought upon our whole race.” +\p +\v 39 But the king, falling into a rage, handled him worse than all the rest, being exasperated at his mocking. +\v 40 So he also died pure, putting his whole trust in the Lord. +\p +\v 41 Last of all, after her sons, the mother died. +\p +\v 42 Let it then suffice to have said thus much concerning the sacrificial feasts and the extreme tortures. +\c 8 +\p +\v 1 But Judas, who is also called Maccabaeus, and those who were with him, making their way secretly into the villages, called together their kindred. Enlisting those who had continued in the Jews’ religion, they gathered together about six thousand. +\v 2 They called upon the Lord to look at the people who were oppressed by all, and to have compassion on the sanctuary that had been profaned by the ungodly men, +\v 3 and to have pity on the city that was suffering ruin and ready to be leveled to the ground, and to listen to the blood that cried out to him, +\v 4 and to remember the lawless destruction of the innocent infants, and concerning the blasphemies that had been committed against his name, and to show his hatred of wickedness. +\p +\v 5 When Maccabaeus had trained his men for service, the heathen at once found him irresistible, for the wrath of the Lord was turned into mercy. +\v 6 \f + \fr 8:6 \ft The Greek text of verses 6 and 7 is uncertain. \f*Coming without warning, he set fire to cities and villages. And in winning back the most important positions, putting to flight no small number of the enemies, +\v 7 he especially took advantage of the nights for such assaults. His courage was loudly talked of everywhere. +\p +\v 8 But when Philip saw the man gaining ground little by little, and increasing more and more in his success, he wrote to Ptolemy, the governor of Coelesyria and Phoenicia, that he should support the king’s cause. +\v 9 Ptolemy quickly appointed Nicanor the son of Patroclus, one of the king’s \f + \fr 8:9 \ft See 1 Maccabees 10:65. Compare 2 Maccabees 1:14; 7:24; 10:13; 14:11; 1 Maccabees 2:18. \f*chief friends, and sent him, in command of no fewer than twenty thousand of all nations, to destroy the whole race of Judea. With him he joined Gorgias also, a captain and one who had experience in matters of war. +\v 10 Nicanor resolved by the sale of the captive Jews to make up for the king the tribute of two thousand talents which he was to pay to the Romans. +\v 11 Immediately he sent to the cities upon the sea coast, inviting them to buy Jewish \f + \fr 8:11 \ft Gr. \fqa bodies. \f*slaves, promising to deliver seventy \f + \fr 8:11 \ft Gr. \fqa bodies. \f*slaves for a talent, not expecting the judgment that was to overtake him from the Almighty. +\p +\v 12 News came to Judas concerning Nicanor’s invasion. When he communicated to those who were with him the presence of the army, +\v 13 those who were cowardly and distrustful of God’s judgment \f + \fr 8:13 \ft The Greek text here is uncertain. \f*ran away and left the country. +\v 14 Others sold all that they had left, and at the same time implored the Lord to deliver those who had been sold as slaves by the impious Nicanor before he ever met them, +\v 15 if not for their own sakes, then for the covenants made with their ancestors, and because he had called them by his holy and glorious name. +\v 16 So Maccabaeus gathered his men together, six thousand in number, and exhorted them not to be frightened by the enemy, nor to fear the great multitude of the heathen who came wrongfully against them, but to fight nobly, +\v 17 setting before their eyes the outrage that had been lawlessly perpetrated upon the holy place, and the torture of the city that had been turned to mockery, and further the overthrow of the way of life received from their ancestors. +\v 18 “For they,” he said, “trust their weapons and daring deeds, but we trust in the almighty God, since he is able at a nod to cast down those who are coming against us, and even the whole world.” +\v 19 Moreover, he recounted to them the help given from time to time in the days of their ancestors, both in the days of Sennacherib, when one hundred eighty-five thousand perished, +\v 20 and in the land of Babylon, in the battle that was fought against the\f + \fr 8:20 \ft Gr. \fqa Galatians. \f* Gauls, how they came to the battle with eight thousand in all, with four thousand Macedonians, and how, the Macedonians being hard pressed, the \f + \fr 8:20 \ft Some authorities read \fqa eight. \f*six thousand destroyed the hundred and twenty thousand because of the help which they had from heaven, and took a great deal of plunder. +\p +\v 21 And when he had with these words filled them with courage and made them ready to die for the laws and their country, he divided his army into four parts. +\v 22 He appointed his brothers, Simon, Joseph, and Jonathan, to be leaders of the divisions with him, giving each the command of one thousand five hundred men. +\v 23 Moreover Eleazer also, having read aloud the sacred book, and having given as watchword, “THE HELP OF GOD”, leading the first band himself, joined battle with Nicanor. +\p +\v 24 Since the Almighty fought on their side, they killed more than nine thousand of the enemy, and wounded and\f + \fr 8:24 \ft Gr. \fqa disabled in their limbs. \f* disabled most of Nicanor’s army, and compelled them all to flee. +\v 25 They took the money of those who had come there to buy them as slaves. After they had pursued them for some \f + \fr 8:25 \ft Or, \fqa while \f*distance, they returned, being constrained by the time of the day; +\v 26 for it was the day before the Sabbath, and for this reason they made no effort to chase them far. +\v 27 \f + \fr 8:27 \ft The exact meaning of this clause is uncertain.\f*When they had gathered \f + \fr 8:27 \ft Gr. \fqa their weapons...the spoils of the enemy.\f*the weapons of the enemy together, and had stripped off their spoils, they kept the Sabbath, greatly blessing and thanking the Lord who had saved them to this day, because he had begun to show mercy to them. +\v 28 After the Sabbath, when they had given some of the spoils to the \f + \fr 8:28 \ft Or, \fqa wounded \ft Gr. \fqa shamefully handled.\f*maimed, and to the widows and orphans, they distributed the rest among themselves and their children. +\v 29 When they had accomplished these things and had made a common supplication, they implored the merciful Lord to be wholly reconciled with his servants. +\p +\v 30 Having had an encounter with the forces of Timotheus and Bacchides, they killed more than twenty thousand of them, and made themselves masters of exceedingly high strongholds, and divided very much plunder, giving the \f + \fr 8:30 \ft Or, \fqa wounded \ft Gr. \fqa shamefully handled.\f*maimed, orphans, widows, and the aged an equal share with themselves. +\v 31 \f + \fr 8:31 \ft The exact meaning of this clause is uncertain.\f*When they had gathered the weapons \f + \fr 8:31 \ft Gr. \fqa of them.\f*of the enemy together, they stored them all up carefully in the most strategic positions, and they carried the rest of the spoils to Jerusalem. +\v 32 They killed the \f + \fr 8:32 \ft That is, probably, the captain of an irregular auxiliary force. Some write \fqa Phylarches, \ft as a proper name. \f*phylarch of Timotheus’s forces, a most unholy man, and one who had done the Jews much harm. +\v 33 \f + \fr 8:33 \ft The Greek text here is perhaps corrupt.\f*As they celebrated the feast of victory in the \f + \fr 8:33 \ft Or, \fqa country \f*city of their fathers, they burned those who had set the sacred \f + \fr 8:33 \ft Or, \fqa porches \f*gates on fire, including Callisthenes, who had fled into \f + \fr 8:33 \ft Or, \fqa a solitary hut \f*a little house. So they received the proper reward for their impiety. +\p +\v 34 The thrice-accursed Nicanor, who had brought the thousand merchants to buy the Jews as slaves, +\v 35 being through the help of the Lord humbled by them who in his eyes were held to be of least account, took off his glorious apparel, and passing through the country, \f + \fr 8:35 \ft Gr. \fqa having made himself solitary. \f*shunning all company like a fugitive slave, arrived at Antioch, \f + \fr 8:35 \ft Or, \fqa having won the greatest possible favor by reason of the destruction of his army\f*having, as he thought, had the greatest possible good fortune, though his army was destroyed. +\v 36 He who had taken upon himself to make tribute sure for the Romans by the captivity of the men of Jerusalem published abroad that the Jews had One who fought for them, and that \f + \fr 8:36 \ft Or, \fqa because of this \ft their \fqa way of life \ft Gr. \fqa because of this manner.\f*because this was so, the Jews were invulnerable, because they followed the laws ordained by him. +\c 9 +\p +\v 1 Now about that time, Antiochus retreated \f + \fr 9:1 \ft Or, \fqa with dishonor \f*in disorder from the region of Persia. +\v 2 For he had entered into the city called Persepolis, and he attempted to rob \f + \fr 9:2 \ft Or, \fqa temples \f*a temple and to control the city. Therefore the multitudes rushed in and the people of the country turned to defend themselves with weapons; and it came to pass that Antiochus was put to flight by the people of the country and broke his camp with disgrace. +\v 3 While he was at Ecbatana, news was brought to him about what had happened to Nicanor and the forces of Timotheus. +\v 4 Being overcome by his anger, he planned to make the Jews suffer for the evil deeds of those who had put him to flight. Therefore, with judgment from heaven even now accompanying him, he ordered his charioteer to drive without ceasing until he completed the journey; for he arrogantly said this: “I will make Jerusalem a common graveyard of Jews when I come there.” +\p +\v 5 But the All-seeing Lord, the God of Israel, struck him with a \f + \fr 9:5 \ft Gr. \fqa remediless. \f*fatal and invisible stroke. As soon as he had finished speaking this word, an incurable pain of the bowels seized him, with bitter torments of the inner parts— +\v 6 and that most justly, for he had tormented other men’s bowels with many and strange sufferings. +\v 7 But he in no way ceased from his rude insolence. No, he was filled with even more arrogance, breathing fire in his passion against the Jews, and giving orders to hasten the journey. But it came to pass moreover that he fell from his chariot as it rushed along, and having a grievous fall was tortured in all of the members of his body. +\v 8 He who had just supposed himself to have the waves of the sea at his bidding because he was so superhumanly arrogant, and who thought to weigh the heights of the mountains in a balance, was now brought to the ground and carried in a litter, \f + \fr 9:8 \ft Or, \fqa showing manifestly to all the power of God \f*showing to all that the power was obviously God’s, +\v 9 so that worms swarmed out of the impious man’s body, and while he was still living in anguish and pains, his flesh fell off, and by reason of the stench all the army turned with loathing from his decay. +\v 10 The man who a little before supposed himself to touch the stars of heaven, no one could endure to carry because of his intolerable stench. +\v 11 Therefore he began in great part to cease from his arrogance, being broken in spirit, and to come to knowledge under the scourge of God, his pains increasing every moment. +\v 12 When he himself could not stand his own smell, he said these words: “It is right to be subject to God, and that one who is mortal should not think they are equal to God.” +\p +\v 13 The vile man vowed to the sovereign Lord, who now no more would have pity upon him, saying +\v 14 that the holy city, to which he was going in haste to lay it even with the ground and to \f + \fr 9:14 \ft Gr. \fqa build. \f*make it a common graveyard, he would declare free. +\v 15 Concerning the Jews, whom he had decided not even to count worthy of burial, but to cast them out to the animals with their infants for the birds to devour, he would make them all equal to citizens of Athens. +\v 16 The holy sanctuary, which before he had plundered, he would adorn with best offerings, and would restore all the sacred vessels many times multiplied, and out of his own revenues would defray the charges that were required for the sacrifices. +\v 17 Beside all this, he said that he would become a Jew and would visit every inhabited place, proclaiming the power of God. +\v 18 But when his sufferings did in no way cease, for the judgment of God had come upon him in righteousness, having given up all hope for himself, he wrote to the Jews the letter written below, having the nature of a supplication, to this effect: +\p +\v 19 “To the worthy Jewish citizens, Antiochus, king and general, wishes much joy and health and prosperity. +\v 20 May you and your children fare well, and may your affairs be as you wish. Having my hope in heaven, +\v 21 I remembered with affection your honor and good will. Returning out of the region of Persia, and being taken with an annoying sickness, I deemed it necessary to take thought for the common safety of all, +\v 22 not despairing of myself, but having great hope to escape from the sickness. +\v 23 But considering that my father also, at the time he led an army into the upper country, appointed his successor, +\v 24 to the end that, if anything fell out contrary to expectation, or if any unwelcome tidings were brought, the people in the country, knowing to whom the state had been left, might not be troubled, +\v 25 and, moreover, observing how the princes who are along the borders and neighbors to my kingdom watch for opportunities and look for the future event, I have appointed my son Antiochus to be king, whom I often entrusted and commended to most of you when I was hurrying to the upper provinces. I have written to him what is written below. +\v 26 I therefore urge you and beg you, having in your remembrance the benefits done to you in common and severally, to preserve your present good will, each of you, toward me and my son. +\v 27 For I am persuaded that he in gentleness and kindness will follow my purpose and treat you with moderation and kindness. +\p +\v 28 So the murderer and blasphemer, having endured the most intense sufferings, even as he had dealt with other men, ended his life among the mountains by a most piteous fate in a strange land. +\v 29 Philip his foster brother took the body home and then, fearing the son of Antiochus, he withdrew himself to Ptolemy Philometor in Egypt. +\c 10 +\p +\v 1 Then Maccabaeus and those who were with him, the Lord leading them on, recovered the temple and the city. +\v 2 They pulled down the altars that had been built in the marketplace by the foreigners, and also the sacred enclosures. +\v 3 Having cleansed the sanctuary, they made another altar of sacrifice. \f + \fr 10:3 \ft Gr. \fqa firing. \f*Striking flint and starting a fire, they offered sacrifices after they had ceased for two years, burned incense, lit lamps, and set out the show bread. +\v 4 When they had done these things, they fell prostrate and implored the Lord that they might fall no more into such evils; but that, if they ever did sin, they might be chastened by him with forbearance, and not be delivered to blaspheming and barbarous heathen. +\v 5 Now on the same day that the sanctuary was profaned by foreigners, upon that very day it came to pass that the sanctuary was cleansed, even on the twenty-fifth day of the same month, which is Chislev. +\v 6 They observed eight days with gladness in the manner of the feast of tabernacles, remembering how \f + \fr 10:6 \ft Or, \fqa not long before they kept the feast of tabernacles by wandering \f*not long before, during the feast of tabernacles, they were wandering in the mountains and in the caves like wild animals. +\v 7 Therefore carrying wands wreathed with leaves, and beautiful branches, and palm fronds also, they offered up hymns of thanksgiving to him who had successfully brought to pass the cleansing of his own place. +\v 8 They ordained also with a public statute and decree, for all the nation of the Jews, that they should observe these days every year. +\p +\v 9 Such were the events of the end of Antiochus, who was called Epiphanes. +\p +\v 10 Now we will declare what came to pass under Antiochus \f + \fr 10:10 \ft That is, \fqa son of a good father. \f*Eupator, who proved himself a son of that ungodly man, and will summarize the main evils of the wars. +\v 11 For this man, when he succeeded to the kingdom, appointed one Lysias to be chancellor and supreme governor of Coelesyria and Phoenicia. +\v 12 For Ptolemy who was called Macron, setting an example of observing justice toward the Jews because of the wrong that had been done to them, endeavored to deal with them on peaceful terms. +\v 13 Whereupon being accused by the king’s \f + \fr 10:13 \ft See 2 Maccabees 8:9 \f*friends before Eupator, and hearing himself called traitor at every turn because he had abandoned Cyprus which Philometor had entrusted to him, and had withdrawn himself to Antiochus Epiphanes, and \f + \fr 10:13 \ft The Greek text here is corrupt.\f*failing to uphold the honor of his office, he took poison and did away with himself. +\p +\v 14 But when Gorgias was made governor of the district, he maintained a force of mercenaries, and at every turn kept up war with the Jews. +\v 15 Together with him the Idumaeans also, being masters of important strongholds, harassed the Jews; and received those who had taken refuge from Jerusalem, they endeavored to keep up the war. +\v 16 But Maccabaeus and his men, having made solemn supplication and having implored God to fight on their side, rushed upon the strongholds of the Idumaeans. +\v 17 Assaulting them vigorously, they took control of the positions, and kept off all who fought upon the wall, and killed those whom they encountered, killing no fewer than twenty thousand. +\p +\v 18 Because no fewer than nine thousand had fled into two very strong towers having everything needed for a seige, +\v 19 Maccabaeus, having left Simon and Joseph, and also Zacchaeus and those who were with him, a force sufficient to besiege them, departed himself to places where he was most needed. +\v 20 But Simon and those who were with him, yielding to covetousness, were bribed by some of those who were in the towers, and receiving seventy thousand drachmas, let some of them slip away. +\v 21 But when word was brought to Maccabaeus of what was done, he gathered the leaders of the people together, and accused those men of having sold their kindred for money by setting their enemies free to fight against them. +\v 22 So he killed these men for having turned traitors, and immediately took possession of the two towers. +\v 23 Prospering with his weapons in everything he undertook, he destroyed more than twenty thousand in the two strongholds. +\p +\v 24 Now Timotheus, who had been defeated by the Jews before, having gathered together foreign forces in great multitudes, and having collected the cavalry which belonged to Asia, not a few, came as though he would take Judea by force of weapons. +\v 25 But as he drew near, Maccabaeus and his men sprinkled dirt on their heads and girded their loins with sackcloth, in supplication to God, +\v 26 and falling down upon the step in front of the altar, implored him to become \f + \fr 10:26 \ft Gr. \fqa propitious. \f*gracious to them, and \f + \fr 10:26 \ft See Exodus 23:22. \f*be an enemy to their enemies and an adversary to their adversaries, as the law declares. +\v 27 Rising from their prayer they took up their weapons, and advanced some distance from the city. When they had come near to their enemies, they\f + \fr 10:27 \ft Gr. \fqa were by themselves.\f* halted. +\v 28 When the dawn was now breaking, the two armies joined in battle, the one part having this, beside virtue, for a pledge of success and victory, that they had fled to the Lord for refuge, the others making their passion their leader in the fight. +\p +\v 29 When the battle became strong, there appeared out of heaven to their adversaries five splendid men on horses with bridles of gold, \f + \fr 10:29 \ft Some authorities read \fqa and leading on the Jews; who also, taking. \f*and two of them, leading on the Jews, +\v 30 and taking Maccabaeus in the midst of them, and covering him with their own armor, guarded him from wounds, while they shot arrows and thunderbolts at the enemies. For this reason, they were blinded and thrown into confusion, and were cut to pieces, filled with bewilderment. +\v 31 Twenty thousand five hundred were slain, beside six hundred cavalry. +\p +\v 32 Timotheus himself fled into a stronghold called Gazara, a fortress of great strength, \f + \fr 10:32 \ft See ver. 37. \f*where Chaereas was in command. +\v 33 Then Maccabaeus and his men were glad and laid siege to the fortress for four days. +\v 34 Those who were within, trusting in the strength of the place, blasphemed exceedingly, and hurled out impious words. +\v 35 But at dawn of the fifth day, certain young men of Maccabaeus’ company, inflamed with anger because of the blasphemies, assaulted the wall with masculine force and with \f + \fr 10:35 \ft Gr. \fqa passion as of wild animals. \f*furious anger, and cut down whoever came in their way. +\v 36 Others climbing up in the same way, while the enemies were distracted with those who had made their way within, set fire to the towers, and kindled fires that burned the blasphemers alive, while others broke open the gates, and, having given entrance to the rest of the band, occupied the city. +\v 37 They killed Timotheus, who was hidden in a cistern, and his brother Chaereas, and Apollophanes. +\v 38 When they had accomplished these things, they blessed the Lord with hymns and thanksgiving, blessing him who provides great benefits to Israel and gives them the victory. +\c 11 +\p +\v 1 Now after a very little time, Lysias, the king’s guardian, kinsman, and chancellor, being very displeased about the things that had happened, +\v 2 collected about eighty thousand infantry and all his cavalry and came against the Jews, planing to make the city a home for Greeks, +\v 3 and to levy tribute on the temple, as \f + \fr 11:3 \ft Or, \fqa on all the sacred places of the heathen \f*on the other sacred places of the nations, and to put up the high priesthood for sale every year. +\v 4 He took no account of God’s power, but was puffed up with his ten thousands of infantry, his thousands of cavalry, and his eighty elephants. +\v 5 Coming into Judea and approaching Bethsuron, which was a strong place and about five stadia\f + \fr 11:5 \ft One stadia was roughly 189 meters or 618 feet, so 5 stadia was about a little less than 1 km or a little more than half a mile.\f* away from Jerusalem, he pressed it hard. +\p +\v 6 When Maccabaeus and his men learned that he was besieging the strongholds, they and all the people with lamentations and tears made supplication to the Lord to send a good angel to save Israel. +\v 7 Maccabaeus himself took up weapons first, and exhorted the others to put themselves in jeopardy together with him and help their kindred; and they went out with him very willingly. +\v 8 As they were there, close to Jerusalem, a horseman appeared at their head in white apparel, brandishing\f + \fr 11:8 \ft Gr. \fqa a panoply. \f* weapons of gold. +\v 9 They all together praised the merciful God, and were yet more strengthened in heart, being ready to \f + \fr 11:9 \ft Gr. \fqa wound. \f*assail not only men but the wildest animals and walls of iron, +\v 10 they advanced in array, having him who is in heaven to fight on their side, for the Lord had mercy on them. +\v 11 Hurling themselves like lions against the enemy, they killed eleven thousand infantry and one thousand six hundred cavalry, and forced all the rest to flee. +\v 12 Most of them escaped wounded and naked. Lysias himself also escaped by shameful flight. +\v 13 But as he was a man not void of understanding, pondering the defeat which had befallen him, and considering that the Hebrews could not be overcome because the Almighty God fought on their side, he sent again +\v 14 and persuaded them to come to terms on condition that all their rights were acknowledged, and \f + \fr 11:14 \ft The Greek text here is corrupt. \f*promised that he would also persuade the king to become their friend. +\v 15 Maccabaeus gave consent upon all the conditions which Lysias proposed to him, being careful of the common good; for whatever requests Maccabaeus delivered in writing to Lysias concerning the Jews the king allowed. +\p +\v 16 The letter written to the Jews from Lysias was to this effect: +\p “Lysias to the \f + \fr 11:16 \ft Gr. \fqa multitude. \f*people of the Jews, greetings. +\v 17 John and Absalom, who were sent from you, having delivered the document written below, made request concerning the things written therein. +\v 18 Whatever things therefore needed to be brought before the king I declared to him, and what things were possible he allowed. +\v 19 If then you will all preserve your good will toward the government, I will also endeavor in the future to contribute to your good. +\v 20 Concerning this, I have given order in detail, both to these men and to those who are sent from me, to confer with you. +\v 21 Farewell. Written in the one hundred forty-eighth year, on the twenty-fourth day of the month \f + \fr 11:21 \ft This month name is not found elsewhere, and is perhaps corrupt.\f*Dioscorinthius.” +\p +\v 22 And the king’s letter contained these words: +\p “King Antiochus to his brother Lysias, greetings. +\v 23 Seeing that our father passed to the gods having the wish that the subjects of his kingdom \f + \fr 11:23 \ft Or, \fqa should not be disquieted but \f*should be undisturbed and give themselves to the care of their own affairs, +\v 24 we, having heard that the Jews do not consent to our father’s purpose to turn them to the customs of the Greeks, but choose rather their own way of living, and make request that the customs of their law be allowed to them— +\v 25 choosing therefore that this nation also should be free from disturbance, we determine that their temple is to be restored to them, and that they live according to the customs that were in the days of their ancestors. +\v 26 You will therefore do well to send messengers to them and give them the right hand of friendship, that they, knowing our mind, may be of good heart, and gladly occupy themselves with the conduct of their own affairs.” +\p +\v 27 And to the nation, the king’s letter was as follows: +\p “King Antiochus to the senate of the Jews and to the other Jews, greetings. +\v 28 If you are all well, it is as we desire. We ourselves also are in good health. +\v 29 Menelaus informed us that your desire was to return home and follow your own business. +\v 30 They therefore who depart home up to the thirtieth day of Xanthicus shall have our \f + \fr 11:30 \ft Gr. \fqa right hand. \f*friendship, with full permission +\v 31 that the Jews use their own foods and observe their own laws, even as formerly. None of them shall be in any way molested for the things that have been done in ignorance. +\v 32 Moreover I have sent Menelaus also, that he may encourage you. +\v 33 Farewell. Written in the one hundred forty-eighth year, on the fifteenth day of Xanthicus.” +\p +\v 34 The Romans also sent to them a letter in these words: +\p “Quintus Memmius and Titus Manius, ambassadors of the Romans, to the people of the Jews, greetings. +\v 35 In regard to the things which Lysias the king’s kinsman granted you, we also give consent. +\v 36 But as for the things which he judged should be referred to the king, send someone promptly, after you have considered them, that we may publish such decrees as are appropriate for your case; for we are on our way to Antioch. +\v 37 Therefore send someone with speed, that we also may learn what is your mind. +\v 38 \f + \fr 11:38 \ft Gr. \fqa Be in good health. \f*Farewell. Written in the one hundred forty-eighth year, on the fifteenth day of Xanthicus. +\c 12 +\p +\v 1 So when this agreement had been made, Lysias departed to the king, and the Jews went about their farming. +\p +\v 2 But some of the governors of districts, Timotheus and Apollonius the son of Gennaeus, and also Hieronymus and Demophon, and beside them Nicanor the governor of Cyprus, would not allow them to enjoy tranquillity and live in peace. +\v 3 Men of Joppa perpetrated this great impiety: they invited the Jews who lived among them to go with their wives and children into the boats which they had provided, as though they had no ill will toward them. +\v 4 When\f + \fr 12:4 \ft Gr. \fqa they also. \f* the Jews,\f + \fr 12:4 \ft Gr. \fqa after. \f* relying on the public vote of the city, accepted the invitation, as men desiring to live in peace and suspecting nothing, they took them out to sea and drowned not less than two hundred of them. +\v 5 When Judas heard of the cruelty done to his fellow-countrymen, giving command to the men that were with him +\v 6 and calling upon God the righteous Judge, he came against the murderers of his kindred, and set the harbor on fire at night, burned the boats, and put to the sword those who had fled there. +\v 7 But when the town gates were closed, he withdrew, intending to come again to root out the whole community of the men of Joppa. +\v 8 But learning that the men of Jamnia intended to do the same thing to the Jews who lived among them, +\v 9 he attacked the Jamnites at night, and set fire to the harbor together with the fleet, so that the glare of the light was seen at Jerusalem, two hundred forty furlongs\f + \fr 12:9 \ft a furlong is about 201 meters or 220 yards, so 240 furlongs is about 48 km. or 30 miles \f* distant. +\p +\v 10 Now when they had drawn off nine furlongs\f + \fr 12:10 \ft a furlong is about 201 meters or 220 yards, so 9 furlongs is about 1.8 km. or 1 1/8 miles \f* from there, as they marched against Timotheus, an army of Arabians attacked him, no fewer than five thousand infantry and five hundred cavalry. +\v 11 And when a hard battle had been fought, and Judas and his company, by the help of God, had good success, the nomads being overcome implored Judas to grant them friendship, promising to give him livestock, and to help \f + \fr 12:11 \ft Gr. \fqa them.\f*his people in all other ways. +\v 12 So Judas, thinking that they would indeed be profitable in many things, agreed to live in peace with them; and receiving pledges of friendship they departed to their tents. +\p +\v 13 He also attacked a certain city, strong and fenced with earthworks and walls, and inhabited by a mixed multitude of various nations. It was named Caspin. +\v 14 Those who were within, trusting in the strength of the walls and their store of provisions, behaved themselves rudely toward Judas and those who were with him, railing, and furthermore blaspheming and speaking impious words. +\v 15 But Judas and his company, calling upon the great Sovereign of the world, who without rams and cunning engines of war hurled down Jericho in the times of Joshua, rushed wildly against the wall. +\v 16 Having taken the city by the will of God, they made unspeakable slaughter, so much that the adjoining lake, which was two furlongs\f + \fr 12:16 \ft a furlong is about 201 meters or 220 yards, so 2 furlongs is about 402 meters or 1/4 mile \f* broad, appeared to be filled with the deluge of blood. +\p +\v 17 When they had gone seven hundred fifty furlongs\f + \fr 12:17 \ft a furlong is about 201 meters or 220 yards, so 750 furlongs is about 151 km. or 94 miles \f* from there, they made their way to Charax, to the Jews that are called \f + \fr 12:17 \ft That is, \fqa men of Tob: \ft see Judges 11:3, 2 Samuel 10:6, and compare 1 Maccabees 5:13. \f*Tubieni. +\v 18 They didn’t find Timotheus in that district, for he had by then departed from the district without accomplishing anything, but had left behind a very strong garrison in one place. +\v 19 But Dositheus and Sosipater, who were captains under Maccabaeus, went out and destroyed those who had been left by Timotheus in the stronghold, more than ten thousand men. +\v 20 Maccabaeus, arranging his own army in divisions, set \f + \fr 12:20 \ft Gr. \fqa them. \f*these two over the bands, and marched in haste against Timotheus, who had with him one hundred twenty thousand infantry and two thousand five hundred cavalry. +\v 21 When Timotheus heard of the approach of Judas, he at once sent away the women and the children with the baggage into the fortress called \f + \fr 12:21 \ft Compare \fqa Carnain,\ft 1 Maccabees 5:26, 43, 44. \f*Carnion; for the place was hard to besiege and difficult of access by reason of the narrowness of the approaches on all sides. +\v 22 When the band of Judas, who led the first division, appeared in sight, and when terror and fear came upon the enemy, because the manifestation of him who sees all things came upon them, they fled in every direction, carried this way and that, so that they were often injured by their own men, and pierced with the points of their own swords. +\v 23 Judas continued the pursuit more vigorously, putting the wicked wretches to the sword, and he destroyed as many as thirty thousand men. +\p +\v 24 Timotheus himself, falling in with the company of Dositheus and Sosipater, implored them with much crafty guile to let him go with his life, because he had in his power the parents of many of them and the kindred of some. \f + \fr 12:24 \ft Gr. \fqa and the result will be that these be disregarded. \ft The Greek text here is perhaps corrupt. \f*“Otherwise, he said, little regard will \f + \fr 12:24 \ft Or, \fqa have been shown \f*be shown to these.” +\v 25 So when he had with many words confirmed the agreement to restore them without harm, they let him go that they might save their kindred. +\p +\v 26 Then Judas, marching against \f + \fr 12:26 \ft Compare \fqa Carnain, \ft 1 Maccabees 5:26, 43, 44. \f*Carnion and the temple of Atergatis, killed twenty-five thousand people. +\v 27 After he had put these to flight and destroyed them, he marched against Ephron also, a strong city, \f + \fr 12:27 \ft The Greek text here is perhaps corrupt. \f*wherein were multitudes of people of all nations. Stalwart young men placed \f + \fr 12:27 \ft Gr. \fqa in front of. \f*on the walls made a vigorous defense. There were great stores of war engines and darts there. +\v 28 But calling upon the Sovereign who with might shatters the \f + \fr 12:28 \ft Some authorities read \fqa weight. \f*strength of \f + \fr 12:28 \ft Or, \fqa his enemies \f*the enemy, they took the city into their hands, and killed as many as twenty-five thousand of those who were in it. +\p +\v 29 Setting out from there, they marched in haste against Scythopolis, which is six hundred furlongs\f + \fr 12:29 \ft a furlong is about 201 meters or 220 yards, so 600 furlongs is about 121 km. or 75 miles \f* away from Jerusalem. +\v 30 But when the Jews who were settled there testified of the good will that the Scythopolitans had shown toward them, and of their kind treatment of them in the times of their misfortune, +\v 31 they gave thanks, and further exhorted them to remain well disposed toward the race for the future. Then they went up to Jerusalem, the feast of weeks being close at hand. +\p +\v 32 But after the feast called Pentecost, they marched in haste against Gorgias the governor of Idumaea. +\v 33 He came out with three thousand infantry and four hundred cavalry. +\v 34 When they had set themselves in array, it came to pass that a few of the Jews fell. +\v 35 A certain Dositheus, one \f + \fr 12:35 \ft The Greek text is uncertain. \f*of Bacenor’s company, who was on horseback and was a strong man, pressed hard on Gorgias, and taking hold of his cloke dragged him along by main force. While he planned to take the accursed man alive, one of the Thracian cavalry bore down on him and disabled his shoulder, and so Gorgias escaped to \f + \fr 12:35 \ft Compare 1 Maccabees 5:65. \f*Marisa. +\p +\v 36 When those who were with Esdris had been fighting long and were weary, Judas called upon the Lord to show himself, fighting on their side and leading in the battle. +\v 37 Then in the language of his ancestors he raised the battle cry joined with hymns. Then he rushed against Gorgias’ troops when they were not expecting it, and put them to flight. +\p +\v 38 Judas gathered his army and came to the city of \f + \fr 12:38 \ft Gr. \fqa Odollam. \f*Adullam. As the seventh day was coming on, they purified themselves according to the custom, and kept the Sabbath there. +\p +\v 39 On the following day, \f + \fr 12:39 \ft The Greek text here is uncertain.\f*when it had become necessary, Judas and his company came to take up the bodies of those who had fallen, \f + \fr 12:39 \ft Or, \fqa and to bring them back to be with their kinsmen in the sepulchres\f*and in company with their kinsmen to bring them back to the sepulchres of their ancestors. +\v 40 But under the garments of each one of the dead they found \f + \fr 12:40 \ft Perhaps these were consecrated images of the idols. \f*consecrated tokens of the idols of Jamnia, which the law forbids the Jews to have anything to do with. It became clear to all that it was for this cause that they had fallen. +\v 41 All therefore, blessing the ways of the Lord, the righteous Judge, who makes manifest the things that are hidden, +\v 42 turned themselves to supplication, praying that the sin committed might be wholly blotted out. The noble Judas exhorted the multitude to keep themselves from sin, for they had seen with their own eyes what happened because of the sin of those who had fallen. +\v 43 When he had made a collection man by man to the sum of two thousand drachmas of silver, he sent to Jerusalem to offer a sacrifice for sin, doing very well and honorably in this, in that he took thought for the resurrection. +\v 44 For if he wasn’t expecting that those who had fallen would rise again, it would be superfluous and idle to pray for the dead. +\v 45 But if he was looking forward to an honorable memorial of gratitude laid up for those who \f + \fr 12:45 \ft Gr. \fqa fall asleep. \f*die \f + \fr 12:45 \ft Or, \fqa on the side of godliness \f*in godliness, then the thought was holy and godly. Therefore he made the atoning sacrifice for those who had died, that they might be released from their sin. +\c 13 +\p +\v 1 In the one hundred forty-ninth year, news was brought to Judas and his company that Antiochus Eupator was coming with multitudes against Judea, +\v 2 and with him Lysias his guardian and chancellor, each having a Greek force of one hundred ten thousand infantry, five thousand three hundred cavalry, twenty-two elephants, and three hundred chariots armed with scythes. +\p +\v 3 And Menelaus also joined himself with them, and with great hypocrisy encouraged Antiochus, not for the saving of his country, but because he thought that he would be set over the government. +\v 4 But the King of kings stirred up the anger of Antiochus against the wicked wretch. When Lysias informed him that this man was the cause of all the evils, the king commanded to bring him to Beroea, and to put him to death in the way customary in that place. +\v 5 Now there is in that place a tower that is fifty cubits high, full of ashes, and it had all around it a \f + \fr 13:5 \ft Gr. \fqa contrivance or machine. \f*circular rim sloping steeply on every side into the ashes. +\v 6 Here one who is guilty of sacrilege or notorious for other crimes is pushed down to destruction. +\v 7 By such a fate it happened that the breaker of the law, Menelaus, died, without obtaining so much as a grave in the earth, and that justly; +\v 8 for inasmuch as he had perpetrated many sins \f + \fr 13:8 \ft Gr. \fqa about. \f*against the altar, whose fire and whose ashes were holy, he received his death in ashes. +\p +\v 9 Now the king,\f + \fr 13:9 \ft Some authorities read \fqa indignant.\f* infuriated in spirit, was coming with intent to inflict on the Jews the very worst of the sufferings that had been done in his father’s time. +\v 10 But when Judas heard of these things, he commanded the multitude to call upon the Lord day and night, if ever at any other time, so now to help those who were at the point of being deprived of the law, their country, and the holy temple, +\v 11 and not to allow the people who had just begun to be revived to fall into the hands of those profane heathen. +\v 12 So when they had all done the same thing together, \f + \fr 13:12 \ft Gr. \fqa and implored. \f*begging the merciful Lord with weeping and fastings and prostration for three days without ceasing, Judas exhorted them and commanded they should join him. +\p +\v 13 Having consulted privately with the elders, he resolved that before the king’s army entered into Judea and made themselves masters of the city, they should go out and decide the matter by the help of \f + \fr 13:13 \ft Some authorities read \fqa the Lord. \f*God. +\v 14 And committing the decision to the \f + \fr 13:14 \ft Some authorities read \fqa Creator. \f*Lord of the world, and exhorting those who were with him to contend nobly even to death for laws, temple, city, country, and way of life, he pitched his camp by Modin. +\v 15 He gave out to his men the watchword, “VICTORY IS GOD’S”, with a chosen force of the bravest young men he attacked by the king’s pavilion by night, and killed of his army as many as two thousand men, and \f + \fr 13:15 \ft The Greek text here is probably corrupt. \f*brought down the leading elephant with him who was in the \f + \fr 13:15 \ft Gr. \fqa house. \f*tower on him. +\v 16 At last they filled the \f + \fr 13:16 \ft Gr. \fqa camp. \f*army with terror and alarm, and departed with good success. +\v 17 This had been accomplished when the day was just dawning, because of the Lord’s protection that gave \f + \fr 13:17 \ft Gr. \fqa him. \f*Judas help. +\p +\v 18 But the king, having had a taste of the exceeding boldness of the Jews, made strategic attacks on their positions, +\v 19 and on a strong fortress of the Jews at Bethsura. He advanced, was turned back, failed, and was defeated. +\v 20 Judas sent the things that were necessary to those who were within. +\v 21 But Rhodocus, from the Jewish ranks, made secrets known to the enemy. He was sought out, arrested, and shut up in prison. +\v 22 The king negotiated with them in Bethsura the second time, gave his hand, took theirs, departed, attacked the forces of Judas, was put to the worse, +\v 23 heard that Philip who had been left as chancellor in Antioch had become reckless, was confounded, made to the Jews an overture of peace, submitted himself and swore to acknowledge all their rights, came to terms with them and offered sacrifice, honored the sanctuary and the place, +\v 24 showed kindness and graciously received Maccabaeus, left Hegemonides governor from Ptolemais even to the \f + \fr 13:24 \ft The form of this word is uncertain. Compare \fqa Girzites \ft (or \fqa Gizrites), \ft 1 Samuel 27:8. One manuscript reads \fqa Gerarenes. \f*Gerrenians, +\v 25 and came to Ptolemais. The men of Ptolemais were displeased at the treaty, for they had exceedingly great indignation against the Jews. They desired to annul the articles of the agreement. +\v 26 Lysias \f + \fr 13:26 \ft Gr. \fqa came forward to the tribune \ft or \fqa judgment seat. \f*came forward to speak, made the best defense that was possible, persuaded, pacified, gained their good will, and departed to Antioch. This was the issue of the attack and departure of the king. +\c 14 +\p +\v 1 Three years later, news was brought to Judas and his company that Demetrius the son of Seleucus, having sailed into the harbor of Tripolis with a mighty army and a fleet, +\v 2 had taken possession of the country, having made away with Antiochus and his guardian Lysias. +\p +\v 3 But one Alcimus, who had formerly been high priest, and had willfully polluted himself in the times when there was no mingling with the Gentiles, considering that there was no deliverance for him in any way, nor any more access to the holy altar, +\v 4 came to King Demetrius in about the one hundred fifty-first year, presenting to him a crown of gold and a palm, and beside these some of the festal olive boughs of the temple. For that day, he held his peace; +\v 5 but having gotten opportunity to further his own madness, being called by Demetrius into a meeting of his council, and asked how the Jews stood affected and what they intended, he answered: +\p +\v 6 “Those of the Jews called \f + \fr 14:6 \ft That is, \fqa Chasidim. \f*Hasidaeans, whose leader is Judas Maccabaeus, keep up war and are seditious, not allowing the kingdom to find tranquillity. +\v 7 Therefore, having laid aside my ancestral glory—I mean the high priesthood—I have now come \f + \fr 14:7 \ft Some authorities read \fqa a second time. \f*here, +\v 8 first for the genuine care I have for the things that concern the king, and secondly because I have regard also to my own fellow citizens. For through the unadvised dealing of those of whom I spoke before, our whole race is in no small misfortune. +\v 9 O king, having informed yourself of these things, take thought both for our country and for our race, which is surrounded by enemies, according to the gracious kindness with which you receive all. +\v 10 For as long as Judas remains alive, it is impossible for the government to find peace. +\v 11 When he had spoken such words as these, at once \f + \fr 14:11 \ft Or, \fqa the \ft king’s \fqa friends likewise \f*the rest of the king’s \f + \fr 14:11 \ft See 2 Maccabees 8:9. \f*friends, having ill will against Judas, inflamed Demetrius yet more. +\v 12 He immediately appointed Nicanor, who had been master of the elephants, and made him governor of Judea. He sent him out, +\v 13 giving him written instructions to kill Judas himself and to scatter those who were with him, and to set up Alcimus as high priest of the \f + \fr 14:13 \ft Gr. \fqa greatest. \f*great temple. +\v 14 Those in Judea who \f + \fr 14:14 \ft See 2 Maccabees 5:27. \f*had driven Judas into exile thronged to Nicanor in flocks, supposing that the misfortunes and calamities of the Jews would be successes to themselves. +\p +\v 15 But when the Jews heard of Nicanor’s advance and the assault of the heathen, they sprinkled dirt on their heads and made solemn prayers to him who had established his own people for evermore, and who always, making manifest his presence, upholds those who are his own heritage. +\v 16 \f + \fr 14:16 \ft The Greek text of this verse and the next is corrupt. \f*When the leader had given orders, he immediately set out from there and joined battle with them at a village called Lessau. +\v 17 But Simon, the brother of Judas, had encountered Nicanor, yet not till late, having been delayed by reason of the sudden consternation caused by his adversaries. +\p +\v 18 Nevertheless Nicanor, hearing of the valor of those who were with Judas, and their courage in fighting for their country, shrank from bringing the matter to the decision of the sword. +\v 19 Therefore he sent Posidonius, Theodotus, and Mattathias to give and receive pledges of friendship. +\v 20 So when these proposals had been long considered, and the leader had made the \f + \fr 14:20 \ft Or, \fqa people \ft Gr. \fqa multitudes. \f*troops acquainted with them, and it appeared that they were all of like mind, they consented to the covenants. +\v 21 They appointed a day on which to meet together by themselves. A chariot came forward from each army. They set up seats of honor. +\v 22 Judas stationed armed men ready in convenient places, lest perhaps there should suddenly be treachery on the part of the enemy. They held a conference as was appropriate. +\v 23 Nicanor waited in Jerusalem, and did nothing to cause disturbance, but dismissed the flocks of people that had gathered together. +\v 24 He kept Judas always in his presence. He had gained a hearty affection for the man. +\v 25 He urged him to marry and have children. He married, settled quietly, and took part in common life. +\p +\v 26 But Alcimus, perceiving the good will that was between them, \f + \fr 14:26 \ft Or, \fqa and the covenants that had been made, took occasion and came\f*and having taken possession of the covenants that had been made, came to Demetrius and told him that Nicanor was disloyal to the government, for he had appointed that conspirator against his kingdom, Judas, to be his successor. +\v 27 The king, falling into a rage, and being exasperated by the false accusations of that most wicked man, wrote to Nicanor, signifying that he was displeased at the covenants, and commanding him to send Maccabaeus prisoner to Antioch in all haste. +\v 28 When this message came to Nicanor, he was confounded, and was very troubled at the thought of annulling the articles that had been agreed upon, the man having done no wrong; +\v 29 but because there was no opposing the king, he watched his time to execute this purpose by strategy. +\v 30 But Maccabaeus, when he perceived that Nicanor was behaving more harshly in his dealings with him, and that he had become ruler in his customary bearing, understanding that this harshness came not of good, gathered together not a few of his men, and concealed himself from Nicanor. +\p +\v 31 But the other,\f + \fr 14:31 \ft Or, \fqa though he was conscious that he had been nobly defeated by \f* when he became aware that he had been bravely defeated by the strategy of Judas,\f + \fr 14:31 \ft Gr. \fqa the man \f* came to the great\f + \fr 14:31 \ft Gr. \fqa greatest. \f* and holy temple, while the priests were offering the usual sacrifices, and commanded them to hand over the man. +\v 32 When they declared with oaths that they had no knowledge where the man was whom he sought, +\v 33 he stretched out his right hand toward the sanctuary, and swore this oath: “If you won’t deliver up to me Judas as a prisoner, I will level this \f + \fr 14:33 \ft Or, \fqa chapel \ft Gr. \fqa enclosure. \f*temple of God even with the ground, break down the altar, and I will erect here a temple to Dionysus for all to see. +\p +\v 34 And having said this, he departed. But the priests, stretching forth their hands toward heaven, called upon him who always fights for our nation, in these words: +\v 35 “You, O Lord of the universe, who in yourself have need of nothing, were well pleased that a sanctuary of your habitation\f + \fr 14:35 \ft Gr. \fqa tabernacling.\f* should be set among us. +\v 36 So now, O holy Lord of all holiness, keep undefiled forever this house that has been recently cleansed.” +\p +\v 37 Now information was given to Nicanor against one Razis, an elder of Jerusalem, who was a lover of his countrymen and a man of very good report, and one called Father of the Jews for his good will. +\v 38 For in the former times when there was no mingling with the Gentiles, he had been accused of following the Jews’ religion, and had risked body and life with all earnestness for the religion of the Jews. +\v 39 Nicanor, wishing to make evident the ill will that he bore against the Jews, sent above five hundred soldiers to seize him; +\v 40 for he thought by seizing him to inflict an injury on them. +\v 41 But when the \f + \fr 14:41 \ft Or, \fqa people \ft Gr. \fqa multitudes. \f*troops were at the point of taking the tower, and were forcing the door of the court, and asked for fire to burn the doors, he, being surrounded on every side, fell upon his sword, +\v 42 choosing rather to die nobly than to fall into the hands of the wicked wretches, and suffer outrage unworthy of his own nobleness. +\v 43 But since he missed his stroke through the excitement of the struggle, and the crowds were now rushing within the door, he ran bravely up to the wall and cast himself down bravely among the crowds. +\v 44 But as they quickly gave back, a space was made, and he fell on the middle of \f + \fr 14:44 \ft Or, \fqa the void place \f*his side. +\v 45 Still having breath within him, and being inflamed with anger, he rose up, and though his blood gushed out in streams and his wounds were grievous, he ran through the crowds, and standing upon a steep rock, +\v 46 when as his blood was now well near spent, he drew forth his bowels through the wound, and taking them in both his hands he shook them at the crowds. Calling upon him who is Lord of life and spirit to restore him \f + \fr 14:46 \ft Some authorities read \fqa the same. \f*these again, he died like this. +\c 15 +\p +\v 1 But Nicanor, hearing that Judas and his company were in the region of Samaria, resolved to attack them with complete safety on the day of rest. +\v 2 When the Jews who were compelled to follow him said, “Don’t destroy so savagely and barbarously, but give due glory to the day which he who sees all things has honored and hallowed above other days.” +\p +\v 3 Then the thrice-accursed wretch asked if there were a Sovereign in heaven who had commanded to keep the Sabbath day. +\p +\v 4 When they declared, “There is the Lord, living himself as Sovereign in heaven, who told us observe the seventh day.” +\p +\v 5 He replied, “I also am a sovereign on the earth, who commands you to take up weapons and execute the king’s business.” Nevertheless he didn’t prevail to execute his cruel plan. +\p +\v 6 And Nicanor, \f + \fr 15:6 \ft Gr. \fqa carrying his neck high.\f*in his utter boastfulness and arrogance, had determined to set up a monument of complete victory over Judas and all those who were with him. +\v 7 But Maccabaeus still trusted unceasingly, with all hope that he should obtain help from the Lord. +\v 8 He exhorted his company not to be fearful at the assault of the heathen, but keeping in mind the help which in former times they had often received from heaven, so now also to look for the victory which would come to them from the Almighty, +\v 9 and encouraging them out of the law and the prophets, and reminding them of the conflicts that they had won, he made them more eager. +\v 10 And when he had aroused their courage, he gave them orders, at the same time pointing out the faithlessness of the heathen and their breach of their oaths. +\v 11 Arming each one of them, not so much with the sure defense of shields and spears as with the encouragement of good words, and moreover relating to them a dream worthy to be believed, he made them all exceedingly glad. +\p +\v 12 The vision of that dream was this: Onias, he who had been high priest, a noble and good man, modest in bearing, yet gentle in manner and well-spoken, and trained from a child in all points of virtue, with outstretched hands invoking blessings on the whole body of the Jews. +\v 13 Then he saw a man appear, of venerable age and exceeding glory, and the dignity around him was wonderful and most majestic. +\v 14 Onias answered and said, “This is the lover of the kindred, he who prays much for the people and the holy city: Jeremiah the prophet of God. +\v 15 Jeremiah stretched out his right hand and delivered to Judas a gold sword, and in giving it addressed him thus: +\v 16 “Take this holy sword, a gift from God, with which you shall strike down the adversaries.” +\p +\v 17 Being encouraged by the words of Judas, which were noble and effective, and able to incite to virtue and to stir the souls of the young to manly courage, they determined not to carry on a campaign, but nobly to bear down upon the enemy, and fighting hand to hand with all courage bring the matter to a conclusion, because the city, the sanctuary, and the temple were in danger. +\v 18 For their fear for wives and children, and furthermore for family and relatives, was less important to them; but greatest and first was their fear for the consecrated sanctuary. +\v 19 Also those who were shut up in the city were in no light distress, being troubled because of the encounter in the open country. +\p +\v 20 When all were now waiting for the decision of the issue, and the enemy had already joined battle, and the army had been set in array, and the elephants\f + \fr 15:20 \ft Gr. \fqa animals. \f* brought back to a convenient post,\f + \fr 15:20 \ft Or, \fqa stationed for convenient action \f* and the cavalry deployed on the flanks, +\v 21 Maccabaeus, perceiving the presence of the \f + \fr 15:21 \ft Gr. \fqa multitudes. \f*troops, and the various weapons with which they were equipped, and the savageness of the \f + \fr 15:21 \ft Gr. \fqa animals. \f*elephants, holding up his hands to heaven called upon the Lord who works wonders, knowing that success comes not by weapons, but that, according to how the Lord judges, he gains the victory for those who are worthy. +\v 22 And calling upon God, he said this: “You, O Sovereign Lord, sent your angel in the time of King Hezekiah of Judea, and he killed of the \f + \fr 15:22 \ft Gr. \fqa camp. \f*army of Sennacherib as many as one hundred eighty-five thousand. +\v 23 So now also, O Sovereign of the heavens, send a good angel before us to bring terror and trembling. +\v 24 Through the greatness of your arm let them be stricken with dismay who with blasphemy have come here against your holy people.” As he finished these words, +\v 25 Nicanor and his company advanced with trumpets and victory songs; +\v 26 but Judas and his company joined battle with the enemy with invocation and prayers. +\v 27 Fighting with their hands and praying to God with their hearts, they killed no less than thirty-five thousand men, being made exceedingly glad by the manifestation of God. +\p +\v 28 When the engagement was over and they were returning again with joy, they recognized Nicanor lying dead in full armor. +\v 29 Then there was shouting and noise, and they blessed the Sovereign Lord in the language of their ancestors. +\v 30 He who in all things was in body and soul the foremost champion of his fellow-citizens, he who kept through life the good will of his youth toward his countrymen, ordered that Nicanor’s head be cut off with his hand and arm, and that they be brought to Jerusalem. +\v 31 When he had arrived there and had called his countrymen together and set the priests before the altar, he sent for those who were in the citadel. +\v 32 Showing the head of the vile Nicanor and the hand of that profane man, which with proud brags he had stretched out against the holy house of the Almighty, +\v 33 and cutting out the tongue of the impious Nicanor, he said that he would give it in pieces to the birds, and hang up these rewards of his folly near the sanctuary. +\v 34 They all, looking up to heaven, blessed the Lord who had manifested himself, saying, “Blessed is he who has preserved his own place undefiled!” +\v 35 He hung Nicanor’s head and shoulder from the citadel, a clear sign evident to all of the help of the Lord. +\v 36 They all ordained with a common decree to in no way let this day pass undistinguished, but to mark with honor the thirteenth day of the twelfth month (it is called Adar in the Syrian language), the day before the day of Mordecai. +\b +\p +\v 37 This then having been the account of the attempt of Nicanor, and the city having from those times been held by the Hebrews, I also will here make an end of my book. +\v 38 If I have written well and to the point in my story, this is what I myself desired; but if its poorly done and mediocre, this is the best I could do. +\v 39 For as it is \f + \fr 15:39 \ft Or, \fqa hurtful \f*distasteful to drink wine alone and likewise to drink water alone, \f + \fr 15:39 \ft Gr. \fqa but even as. \f*while the mingling of wine with water at once gives full pleasantness to the flavor; so also the fashioning of the language delights the ears of those who read the story. +\p Here is the end. \ No newline at end of file diff --git a/bibles/eng-web_usfm/54-1ESeng-web.usfm b/bibles/eng-web_usfm/54-1ESeng-web.usfm new file mode 100644 index 0000000..a66f37d --- /dev/null +++ b/bibles/eng-web_usfm/54-1ESeng-web.usfm @@ -0,0 +1,542 @@ +\id 1ES - 1 Esdras +\h 1 Esdras +\toc1 The First Book of Esdras +\toc2 1 Esdras +\toc3 1Es +\mt1 The First Book of Esdras +\ip \bk The First Book of Esdras\bk* is recognized as Deuterocanonical Scripture by the Greek Orthodox and Russian Orthodox Churches. It is not recognized by the Roman Catholic Church, but 1 Esdras is placed as an appendix to the Latin Vulgate Bible. +\c 1 +\p +\v 1 \x + \xo 1:1 \xt 2 Kings 23:21; 2 Chronicles 35:1\x*Josias held the Passover in Jerusalem to his Lord, and offered the Passover the fourteenth day of the first month, +\v 2 having set the priests according to their daily courses, being arrayed in their vestments, in the Lord’s temple. +\v 3 He spoke to the Levites, \x + \xo 1:3 \xt Numbers 3:9\x*the temple servants of Israel, that they should make themselves holy to the Lord, to set the holy ark of the Lord in the house that King Solomon the son of David had built. +\v 4 He said, “You no longer need to carry it on your shoulders. Now therefore serve the Lord your God, and minister to his people Israel, and prepare yourselves by your fathers’ houses and kindred, +\v 5 according to the writing of King David of Israel, and according to the magnificence of Solomon his son. Stand in the holy place according to the divisions of your Levite families who minister in the presence of your kindred the descendants of Israel. +\v 6 Offer the Passover in order, prepare the sacrifices for your kindred, and keep the Passover according to the Lord’s commandment, which was given to Moses. +\p +\v 7 To the people which were present, Josias gave thirty thousand lambs and kids, and three thousand calves. These things were given from the king’s possessions, as he promised, to the people and to the priests and Levites. +\v 8 Helkias, Zacharias, and \f + \fr 1:8 \fq Jehiel, \ft 2 Chronicles 35:8.\f*Esyelus, the rulers of the temple, gave to the priests for the Passover two thousand six hundred sheep, and three hundred calves. +\v 9 Jeconias, Samaias, Nathanael his brother, Sabias, Ochielus, and Joram, captains over thousands, gave to the Levites for the Passover five thousand sheep and seven hundred calves. +\p +\v 10 When these things were done, the priests and Levites, having the unleavened bread, stood in proper order according to the kindred, +\v 11 and according to the several divisions by fathers’ houses, before the people, to offer to the Lord as it is written in the book of Moses. They did this in the morning. +\v 12 They roasted the Passover lamb with fire, as required. They boiled the sacrifices in the brazen vessels and caldrons with a pleasing smell, +\v 13 and set them before all the people. Afterward they prepared for themselves and for their kindred the priests, the sons of Aaron. +\v 14 For the priests offered the fat until night. The Levites prepared for themselves and for their kindred the priests, the sons of Aaron. +\v 15 The holy singers also, the sons of Asaph, were in their order, according to the appointment of David: Asaph, Zacharias, and Eddinus, who represented the king. +\v 16 Moreover the gatekeepers were at every gate. No one needed to depart from his daily duties, for their kindred the Levites prepared for them. +\p +\v 17 So the things that belonged to the Lord’s sacrifices were accomplished in that day, in holding the Passover, +\v 18 and offering sacrifices on the altar of the Lord, according to the commandment of King Josias. +\v 19 So the children of Israel which were present at that time held the Passover and the feast of unleavened bread seven days. +\v 20 Such a Passover had not been held in Israel since the time of the prophet Samuel. +\v 21 Indeed, none of the kings of Israel held such a Passover as Josias with the priests, the Levites, and the Jews, held with all Israel that were present in their dwelling place at Jerusalem. +\v 22 This Passover was held in the eighteenth year of the reign of Josias. +\v 23 The works of Josias were upright before his Lord with a heart full of godliness. +\v 24 Moreover the things that came to pass in his days have been written in times past, concerning those who sinned and did wickedly against the Lord more than any other people or kingdom, and how they grieved him \f + \fr 1:24 \ft Or, \fqa sensibly \ft Judges 16:17.\f*exceedingly, so that the Lord’s words were confirmed against Israel. +\p +\v 25 \x + \xo 1:25 \xt 2 Chronicles 35:20\x*Now after all these acts of Josias, it came to pass that Pharaoh the king of Egypt came to make war at Carchemish on the Euphrates; and Josias went out against him. +\v 26 But the king of Egypt sent to him, saying, “What do I have to do with you, O king of Judea? +\v 27 I wasn’t sent out from the Lord God against you, for my war is against the Euphrates. Now the Lord is with me, yes, the Lord is with me hastening me forward. Depart from me, and don’t be against the Lord.” +\p +\v 28 However, Josias didn’t turn back to his chariot, but tried to fight with him, not regarding the words of the prophet Jeremy from the Lord’s mouth, +\v 29 but joined battle with him in the plain of Megiddo, and the commanders came down against King Josias. +\v 30 Then the king said to his servants, “Carry me away out of the battle, for I am very weak!” Immediately his servants carried him away out of the army. +\v 31 Then he got into his second chariot. After he was brought back to Jerusalem he died, and was buried in the tomb of his ancestors. +\v 32 All Judea mourned for Josias. Jeremy the prophet lamented for Josias, and the chief men with the women made lamentation for him to this day. This was given out for an ordinance to be done continually in all the nation of Israel. +\v 33 These things are written in the book of the histories of the kings of Judea, and every one of the acts that Josias did, and his glory, and his understanding in the law of the Lord, and the things that he had done before, and the things now told, are reported in the book of the kings of Israel and Judah. +\p +\v 34 \x + \xo 1:34 \xt 2 Kings 23:30; 2 Chronicles 36:1\x*The people took \f + \fr 1:34 \ft Another reading is, \fqa Jeconias.\f*Joachaz the son of Josias, and made him king instead of Josias his father, when he was twenty-three years old. +\v 35 He reigned in Judah and Jerusalem for three months. Then the king of Egypt deposed him from reigning in Jerusalem. +\v 36 He set a tax upon the people of one hundred talents of silver and one talent of gold. +\v 37 The king of Egypt also made King Joakim his brother king of Judea and Jerusalem. +\v 38 And Joakim imprisoned the nobles and apprehended his brother Zarakes, and brought him up out of Egypt. +\p +\v 39 \x + \xo 1:39 \xt 2 Chronicles 36:4-5\x*Joakim was twenty-five years old when he began to reign in Judea and Jerusalem. He did that which was evil in the sight of the Lord. +\v 40 King Nabuchodonosor of Babylon came up against him, bound him with a chain of brass, and carried him to Babylon. +\v 41 Nabuchodonosor also took some of the Lord’s holy vessels, carried them away, and stored them in his own temple at Babylon. +\v 42 But those things that are reported of him, and of his uncleanness and impiety, are written in the chronicles of the kings. +\v 43 Then Joakim his son reigned in his place. When he was made king, he was eighteen years old. +\v 44 He reigned three months and ten days in Jerusalem. He did that which was evil before the Lord. +\p +\v 45 So after a year Nabuchodonosor sent and caused him to be brought to Babylon with the holy vessels of the Lord, +\v 46 and made Sedekias king of Judea and Jerusalem when he was twenty-one years old. He reigned eleven years. +\v 47 He also did that which was evil in the sight of the Lord, and didn’t heed the words that were spoken by Jeremy the prophet from the Lord’s mouth. +\v 48 After King Nabuchodonosor had made him to swear by the name of the Lord, he broke his oath and rebelled. Hardening his neck and his heart, he transgressed the laws of the Lord, the God of Israel. +\v 49 Moreover the governors of the people and of the priests did many things wickedly, exceeding all the defilements of all nations, and defiled the temple of the Lord, which was sanctified in Jerusalem. +\v 50 The God of their ancestors sent by his messenger to call them back, because he had compassion on them and on his dwelling place. +\v 51 But they mocked his messengers. In the day when the Lord spoke, they scoffed at his prophets +\v 52 until he, being angry with his people for their great ungodliness, commanded to bring up the kings of the Chaldeans against them. +\v 53 They killed their young men with the sword around their holy temple, and spared neither young man or young woman, old man or child; but he delivered all of them into their hands. +\v 54 They took all the holy vessels of the Lord, both great and small, with the treasure chests of the Lord’s ark and the king’s treasures, and carried them away to Babylon. +\v 55 They burned the Lord’s house, broke down Jerusalem’s walls, and burned its towers with fire. +\v 56 As for her glorious things, they didn’t stop until they had brought them all to nothing. He carried the people who weren’t slain with the sword to Babylon. +\v 57 They were servants to him and to his children until the Persians reigned, to fulfill the word of the Lord by the mouth of Jeremy: +\v 58 “Until the land has enjoyed its Sabbaths, the whole time of her desolation shall she keep Sabbath, to fulfill seventy years. +\c 2 +\p +\v 1 In the \x + \xo 2:1 \xt 2 Chronicles 36:22,23; Ezra 1:1\x*first year of King Cyrus of the Persians, that the word of the Lord by the mouth of Jeremy might be accomplished, +\v 2 the Lord stirred up the spirit of King Cyrus of the Persians, and he made a proclamation throughout all his kingdom, and also by writing, +\v 3 saying, “Cyrus king of the Persians says: The Lord of Israel, the Most High Lord, has made me king of the whole world, +\v 4 and commanded me to build him a house at Jerusalem that is in Judea. +\v 5 If therefore there are any of you that are of his people, let the Lord, even his Lord, be with him, and let him go up to Jerusalem that is in Judea, and build the house of the Lord of Israel. He is the Lord who dwells in Jerusalem. +\v 6 Therefore, of those who dwell in various places, let those who are in his own place each help with gold, with silver, +\v 7 with gifts, with horses, and cattle, beside the other things which have been added by vow for the temple of the Lord which is in Jerusalem. +\p +\v 8 Then the chief of the families of Judah and of the tribe of Benjamin stood up, with the priests, the Levites, and all whose spirit the Lord had stirred to go up, to build the house for the Lord which is in Jerusalem. +\v 9 Those who lived around them helped them in all things with silver and gold, with horses and cattle, and with very many gifts that were vowed by a great number whose minds were so moved. +\p +\v 10 King Cyrus also brought out the holy vessels of the Lord, which Nabuchodonosor had carried away from Jerusalem and had stored in his temple of idols. +\v 11 Now when King Cyrus of the Persians had brought them out, he delivered them to Mithradates his treasurer, +\v 12 and by him they were delivered to \f + \fr 2:12 \ft Another reading is, \fqa Simanassar.\f*Sanabassar the governor of Judea. +\v 13 This was the number of them: one thousand gold cups, one thousand silver cups, twenty-nine silver censers, thirty gold bowls, two thousand four hundred ten silver bowls, and one thousand other vessels. +\v 14 So all the vessels of gold and of silver were brought up, even five thousand four hundred seventy-nine, +\v 15 and were carried back by Sanabassar, together with the returning exiles, from Babylon to Jerusalem. +\p +\v 16 \x + \xo 2:16 \xt Ezra 4:7\x*In the time of King Artaxerxes of the Persians, Belemus, Mithradates, Tabellius, \f + \fr 2:16 \fqa Rehum,\f*Rathumus, Beeltethmus, and \f + \fr 2:16 \fqa Shimshai.\f*Samellius the scribe, with their other associates, dwelling in Samaria and other places, wrote to him against those who lived in Judea and Jerusalem the following letter: +\p +\v 17 “To King Artaxerxes our Lord, from your servants, Rathumus the recorder, Samellius the scribe, and the rest of their council, and the judges who are in Coelesyria and Phoenicia: +\v 18 Let it now be known to our lord the king, that the Jews that have come up from you to us, having come to Jerusalem, are building that rebellious and wicked city, and are repairing its marketplaces and walls, and are laying the foundation of a temple. +\v 19 Now if this city is built and its walls are finished, they will not only refuse to give tribute, but will even stand up against kings. +\v 20 Since the things pertaining to the temple are now in hand, we think it appropriate not to neglect such a matter, +\v 21 but to speak to our lord the king, to the intent that, if it is your pleasure, search may be made in the books of your ancestors. +\v 22 You will find in the chronicles what is written concerning these things, and will understand that that city was rebellious, troubling both kings and cities, +\v 23 and that the Jews were rebellious, and kept starting wars there in the past. For this cause, this city was laid waste. +\v 24 Therefore now we do declare to you, O lord the king, that if this city is built again, and its walls set up again, you will from then on have no passage into Coelesyria and Phoenicia.” +\p +\v 25 Then the king wrote back again to Rathumus the recorder, Beeltethmus, Samellius the scribe, and to the rest that of their associates who lived in Samaria, Syria, and Phoenicia, as follows: +\p +\v 26 “I have read the letter which you have sent to me. Therefore I commanded to make search, and it has been found that that city of old time has fought against kings, +\v 27 and the men were given to rebellion and war in it, and that mighty and fierce kings were in Jerusalem, who reigned and exacted tribute in Coelesyria and Phoenicia. +\v 28 Now therefore I have commanded to prevent those men from building the city, and heed to be taken that there be nothing done contrary to this order, +\v 29 and that those wicked doings proceed no further to the annoyance of kings.” +\v 30 Then King Artaxerxes, his letters being read, Rathumus, and Samellius the scribe, and the rest of their associates, went in haste to Jerusalem with cavalry and a multitude of people in battle array, and began to hinder the builders. So the building of the temple in Jerusalem ceased until the second year of the reign of King Darius of the Persians. +\c 3 +\p +\v 1 Now King Darius made a great feast for all his subjects, for all who were born in his house, for all the princes of Media and of Persia, +\v 2 and for all the local governors and captains and governors who were under him, from India to Ethiopia, in the one hundred twenty seven provinces. +\v 3 They ate and drank, and when they were satisfied went home. Then King Darius went into his bedchamber slept, but awakened out of his sleep. +\p +\v 4 Then the three young men of the bodyguard, who guarded the king, spoke one to another: +\v 5 “Let every one of us state what one thing is strongest. King Darius will give he whose statement seems wiser than the others great gifts and great honors in token of victory. +\v 6 He shall be clothed in purple, drink from gold cups, sleep on a gold bed, and have a chariot with bridles of gold, a fine linen turban, and a chain around his neck. +\v 7 He shall sit next to Darius because of his wisdom, and shall be called cousin of Darius.” +\p +\v 8 Then they each wrote his sentence, sealed them, and laid them under King Darius’ pillow, +\v 9 and said, “When the king wakes up, someone will give him the writing. Whoever the king and the three princes of Persia judge that his sentence is the wisest, to him shall the victory be given, as it is written.” +\v 10 The first wrote, “Wine is the strongest.” +\v 11 The second wrote, “The king is strongest.” +\v 12 The third wrote, “Women are strongest, but above all things Truth is the victor.” +\p +\v 13 Now when the king woke up, they took the writing and gave it to him, so he read it. +\v 14 Sending out, he called all the princes of Persia and of Media, the local governors, the captains, the governors, and the chief officers +\v 15 and sat himself down in the royal seat of judgment; and the writing was read before them. +\v 16 He said, “Call the young men, and they shall explain their own sentences. So they were called and came in. +\v 17 They said to them, “Explain what you have written.” +\p Then the first, who had spoken of the strength of wine, began +\v 18 and said this: “O sirs, how exceedingly strong wine is! It causes all men who drink it to go astray. +\v 19 It makes the mind of the king and of the fatherless child to be the same, likewise of the bondman and of the freeman, of the poor man and of the rich. +\v 20 It also turns every thought into cheer and mirth, so that a man remembers neither sorrow nor debt. +\v 21 It makes every heart rich, so that a man remembers neither king nor local governor. It makes people say things in large amounts. +\v 22 When they are in their cups, they forget their love both to friends and kindred, and before long draw their swords. +\v 23 But when they awake from their wine, they don’t remember what they have done. +\v 24 O sirs, isn’t wine the strongest, seeing that it forces people to do this?” And when he had said this, he stopped speaking. +\c 4 +\p +\v 1 Then the second, who had spoken of the strength of the king, began to say, +\v 2 “O sirs, don’t men excel in strength who rule over the sea and land, and all things in them? +\v 3 But yet the king is stronger. He is their lord and has dominion over them. In whatever he commands them, they obey him. +\v 4 If he tells them to make war the one against the other, they do it. If he sends them out against the enemies, they go, and conquer mountains, walls, and towers. +\v 5 They kill and are killed, and don’t disobey the king’s commandment. If they win the victory, they bring everything to the king—all the plunder and everything else. +\v 6 Likewise for those who are not soldiers, and don’t have anything to do with wars, but farm, when they have reaped again that which they had sown, they bring some to the king and compel one another to pay tribute to the king. +\v 7 He is just one man! If he commands people to kill, they kill. If he commands them to spare, they spare. +\v 8 If he commands them to strike, they strike. If he commands them to make desolate, they make desolate. If he commands to build, they build. +\v 9 If he commands them to cut down, they cut down. If he commands them to plant, they plant. +\v 10 So all his people and his armies obey him. Furthermore, he lies down, he eats and drinks, and takes his rest; +\v 11 and these keep watch around him. None of them may depart and do his own business. They don’t disobey him in anything. +\v 12 O sirs, how could the king not be the strongest, seeing that he is obeyed like this?” Then he stopped talking. +\p +\v 13 Then the third, who had spoken of women, and of truth, (this was Zorobabel) began to speak: +\v 14 “O sirs, isn’t the king great, and men are many, and isn’t wine strong? Who is it then who rules them, or has the lordship over them? Aren’t they women? +\v 15 Women have given birth to the king and all the people who rule over sea and land. +\v 16 They came from women. Women nourished up those who planted the vineyards, from where the wine comes. +\v 17 Women also make garments for men. These bring glory to men. Without women, men can’t exist. +\v 18 Yes, and if men have gathered together gold and silver and any other beautiful thing, and see a woman who is lovely in appearance and beauty, +\v 19 they let all those things go and gape at her, and with open mouth stare at her. They all have more desire for her than for gold, or silver, or any other beautiful thing. +\v 20 A man leaves his own father who brought him up, leaves his own country, and joins with his wife. +\v 21 With his wife he ends his days, with no thought for his father, mother, or country. +\v 22 By this also you must know that women have dominion over you. Don’t you labor and toil, and bring it all to give to women? +\v 23 Yes, a man takes his sword and goes out to travel, to rob, to steal, and to sail on the sea and on rivers. +\v 24 He sees a lion and walks in the darkness. When he has stolen, plundered, and robbed, he brings it to the woman he loves. +\v 25 Therefore a man loves his wife better than father or mother. +\v 26 Yes, there are many who have lost their minds for women, and become slaves for their sakes. +\v 27 Many also have perished, have stumbled, and sinned, for women. +\v 28 Now don’t you believe me? Isn’t the king great in his power? Don’t all regions fear to touch him? +\v 29 Yet I saw him and Apame the king’s concubine, the daughter of the illustrious Barticus, sitting at the right hand of the king, +\v 30 and taking the crown from the king’s head, and setting it upon her own head. Yes, she struck the king with her left hand. +\v 31 At this, the king gaped and gazed at her with open mouth. If she smiles at him, he laughs. But if she takes any displeasure at him, he flatters her, that she might be reconciled to him again. +\v 32 O sirs, how can it not be that women are strong, seeing they do this?” +\p +\v 33 Then the king and the nobles looked at one another. So he began to speak concerning truth. +\v 34 “O sirs, aren’t women strong? The earth is great. The sky is high. The sun is swift in its course, for it circles around the sky, and returns on its course again in one day. +\v 35 Isn’t he who makes these things great? Therefore the truth is great, and stronger than all things. +\v 36 All the earth calls upon truth, and the sky blesses truth. All works shake and tremble, but with truth there is no unrighteous thing. +\v 37 Wine is unrighteous. The king is unrighteous. Women are unrighteous. All the children of men are unrighteous, and all their works are unrighteous. There is no truth in them. They shall also perish in their unrighteousness. +\v 38 But truth remains, and is strong forever. Truth lives and conquers forevermore. +\v 39 With truth there is no partiality toward persons or rewards, but truth does the things that are just, instead of any unrighteous or wicked things. All men approve truth’s works. +\v 40 In truth’s judgment is not any unrighteousness. Truth is the strength, the kingdom, the power, and the majesty of all ages. Blessed be the God of truth!” +\p +\v 41 With that, he stopped speaking. Then all the people shouted and said, “Great is truth, and strong above all things!” +\p +\v 42 Then the king said to him, “Ask what you wish, even more than is appointed in writing, and we will give it to you, because you are found wisest. You shall sit next me, and shall be called my cousin.” +\p +\v 43 Then he said to the king, “Remember your vow, which you vowed to build Jerusalem, in the day when you came to your kingdom, +\v 44 and to send back all the vessels that were taken out of Jerusalem, which Cyrus set apart when he vowed to destroy Babylon, and vowed to send them back there. +\v 45 You also vowed to build the temple which the Edomites burned when Judea was made desolate by the Chaldeans. +\v 46 Now, O lord the king, this is what I request, and what I desire of you, and this is the princely generosity that may proceed from you: I ask therefore that you make good the vow, the performance of which you have vowed to the King of Heaven with your own mouth.” +\p +\v 47 Then King Darius stood up, kissed him, and wrote letters for him to all the treasurers and governors and captains and local governors, that they should safely bring on their way both him, and all those who would go up with him to build Jerusalem. +\v 48 He wrote letters also to all the governors who were in Coelesyria and Phoenicia, and to them in Libanus, that they should bring cedar wood from Libanus to Jerusalem, and that they should help him build the city. +\v 49 Moreover he wrote for all the Jews who would go out of his realm up into Judea concerning their freedom, that no officer, no governor, no local governor, nor treasurer, should forcibly enter into their doors, +\v 50 and that all the country which they occupied should be free to them without tribute, and that the Edomites should give up the villages of the Jews which they held at that time, +\v 51 and that there should be given twenty talents yearly toward the building of the temple, until the time that it was built, +\v 52 and another ten talents yearly for burnt offerings to be presented upon the altar every day, as they had a commandment to make seventeen offerings, +\v 53 and that all those who would come from Babylonia to build the city should have their freedom—they and their descendants, and all the priests that came. +\v 54 He wrote also to give them their support and the priests’ vestments in which they minister. +\v 55 For the Levites he wrote that their support should be given them until the day that the house was finished and Jerusalem built up. +\v 56 He commanded that land and wages should be given to all who guarded the city. +\v 57 He also sent away all the vessels from Babylon that Cyrus had set apart, and all that Cyrus had given in commandment, he commanded also to be done and to be sent to Jerusalem. +\p +\v 58 Now when this young man had gone out, he lifted up his face to heaven toward Jerusalem, and praised the King of heaven, +\v 59 and said, “From you comes victory. From you comes wisdom. Yours is the glory, and I am your servant. +\v 60 Blessed are you, who have given me wisdom. I give thanks to you, O Lord of our fathers. +\v 61 So he took the letters, went out, came to Babylon, and told it all his kindred. +\v 62 They praised the God of their ancestors, because he had given them freedom and liberty +\v 63 to go up and to build Jerusalem and the temple which is called by his name. They feasted with instruments of music and gladness seven days. +\c 5 +\p +\v 1 After this, the chiefs of fathers’ houses were chosen to go up according to their tribes, with their wives, sons, and daughters, with their menservants and maidservants, and their livestock. +\v 2 Darius sent with them one thousand cavalry to bring them back to Jerusalem with peace, with musical instruments, drums, and flutes. +\v 3 All their kindred were making merry, and he made them go up together with them. +\p +\v 4 These are the names of the men who went up, according to their families among their tribes, after their several divisions. +\v 5 The priests, the sons of Phinees, the sons of Aaron: Jesus the son of Josedek, the son of Saraias, and Joakim the son of Zorobabel, the son of Salathiel, of the house of David, of the lineage of Phares, of the tribe of Judah, +\v 6 who spoke wise words before Darius the king of Persia in the second year of his reign, in the month Nisan, which is the first month. +\p +\v 7 \x + \xo 5:7 \xt Ezra 2:1\x*These are the of Judeans who came up from the captivity, where they lived as foreigners, whom Nabuchodonosor the king of Babylon had carried away to Babylon. +\v 8 They returned to Jerusalem and to the other parts of Judea, every man to his own city, who came with Zorobabel, with Jesus, Nehemias, \f + \fr 5:8 \fqa Seralah.\f*Zaraias, Resaias,\f + \fr 5:8 \ft Or, \fqa Enenis.\f* Eneneus, Mardocheus, Beelsarus,\f + \fr 5:8 \fqa Mispar.\f* Aspharsus,\f + \fr 5:8 \fqa Reclaiah\f* Reelias, Roimus, and Baana, their leaders. +\p +\v 9 The number of them of the nation and their leaders: the sons of Phoros, two thousand one hundred seventy two; the sons of\f + \fr 5:9 \fqa Shephatiah.\f* Saphat, four hundred seventy two; +\v 10 the sons of\f + \fr 5:10 \fqa Arah.\f* Ares, seven hundred fifty six; +\v 11 the sons of\f + \fr 5:11 \fqa Pahath-moab.\f* Phaath Moab, of the sons of Jesus and Joab, two thousand eight hundred twelve; +\v 12 the sons of Elam, one thousand two hundred fifty four; the sons of\f + \fr 5:12 \fqa Zattu.\f* Zathui, nine hundred forty five; the sons of\f + \fr 5:12 \fqa Zaccai.\f* Chorbe, seven hundred five; the sons of Bani, six hundred forty eight; +\v 13 the sons of Bebai, six hundred twenty three; the sons of\f + \fr 5:13 \fqa Asgad.\f* Astad,\f + \fr 5:13 \ft According to other readings, 3622, or 3222.\f* one thousand three hundred twenty two; +\v 14 the sons of Adonikam, six hundred sixty seven; the sons of\f + \fr 5:14 \fqa Bigvai.\f* Bagoi, two thousand sixty six; the sons of\f + \fr 5:14 \fqa Adin.\f* Adinu, four hundred fifty four; +\v 15 the sons of\f + \fr 5:15 \fqa Ater of Hezekiah.\f* Ater, of Ezekias, ninety two; the sons of Kilan and Azetas, sixty seven; the sons of\f + \fr 5:15 \ft Another reading is, \fqa Azuru.\f* Azaru, four hundred thirty two; +\v 16 the sons of\f + \fr 5:16 \ft Another reading is, \fqa Annias.\f* Annis, one hundred one; the sons of Arom, the sons of\f + \fr 5:16 \fqa Bezai.\f* Bassai, three hundred twenty three; the sons of Arsiphurith, one hundred twelve; +\v 17 the sons of Baiterus, three thousand five; the sons of\f + \fr 5:17 \fqa Bethlehem.\f* Bethlomon, one hundred twenty three; +\v 18 those from Netophas, fifty five; those from Anathoth, one hundred fifty eight; those from\f + \fr 5:18 \fqa Azmaveth.\f* Bethasmoth, forty two; +\v 19 those from \f + \fr 5:19 \fqa Kiriath-arim \ft or \fqa Kiriath-jearim.\f*Kariathiarius, twenty five: those from Caphira and Beroth, seven hundred forty three; +\v 20 the Chadiasai and Ammidioi, four hundred twenty two; those from \f + \fr 5:20 \fqa Rumah.\f*Kirama and \f + \fr 5:20 \fqa Geba.\f*Gabbe, six hundred twenty one; +\v 21 those from \f + \fr 5:21 \fqa Michmas.\f*Macalon, one hundred twenty two; those from \f + \fr 5:21 \fqa Bethel.\f*Betolion, fifty two; the sons of \f + \fr 5:21 \fqa Magbish\f*Niphis, one hundred fifty six; +\v 22 the sons of \f + \fr 5:22 \fqa Lod, Hadid.\f*Calamolalus and \f + \fr 5:22 \fqa Ono.\f*Onus, seven hundred twenty five; the sons of \f + \fr 5:22 \fqa Jericho.\f*Jerechu, \f + \fr 5:22 \ft Another reading is, \fqa two\f*three hundred forty five; +\v 23 and the sons of \f + \fr 5:23 \fqa Senaah.\f*Sanaas, three thousand three hundred thirty. +\p +\v 24 The priests: the sons of \f + \fr 5:24 \fqa Jedaiah.\f*Jeddu, the son of Jesus, among the sons of Sanasib, nine hundred seventy two; the sons of \f + \fr 5:24 \fqa Immer.\f*Emmeruth, one thousand fifty two; +\v 25 the sons of \f + \fr 5:25 \fqa Pashhur.\f*Phassurus, one thousand two hundred forty seven; and the sons of \f + \fr 5:25 \fqa Harim.\f*Charme, one thousand seventeen. +\v 26 The Levites: the sons of Jesus, Kadmiel, Bannas, and Sudias, seventy four. +\v 27 The holy singers: the sons of Asaph, one hundred twenty eight. +\v 28 The gatekeepers: the sons of\f + \fr 5:28 \fqa Shallum.\f* Salum, the sons of\f + \fr 5:28 \fqa Ater.\f* Atar, the sons of Tolman, the sons of\f + \fr 5:28 \fqa Akkub.\f* Dacubi, the sons of\f + \fr 5:28 \fqa Hatita.\f* Ateta, the sons of\f + \fr 5:28 \fqa Shobai.\f* Sabi, in all one hundred thirty nine. +\p +\v 29 The temple servants: the sons of\f + \fr 5:29 \fqa Ziha.\f* Esau, the sons of\f + \fr 5:29 \fqa Hasupha.\f* Asipha, the sons of Tabaoth, the sons of\f + \fr 5:29 \fqa Keros.\f* Keras, the sons of\f + \fr 5:29 \fqa Siaha.\f* Sua, the sons of\f + \fr 5:29 \fqa Padon.\f* Phaleas, the sons of Labana, the sons of\f + \fr 5:29 \fqa Hagaba.\f* Aggaba. +\v 30 the sons of\f + \fr 5:30 \fqa Akkub.\f* Acud, the sons of Uta, the sons of Ketab, the sons of\f + \fr 5:30 \fqa Hagab.\f* Accaba, the sons of\f + \fr 5:30 \fqa Shamlai.\f* Subai, the sons of\f + \fr 5:30 \fqa Hanan.\f* Anan, the sons of\f + \fr 5:30 \fqa Giddel.\f* Cathua, the sons of\f + \fr 5:30 \fqa Gahar\f* Geddur, +\v 31 the sons of\f + \fr 5:31 \fqa Reaiah.\f* Jairus, the sons of\f + \fr 5:31 \fqa Rezin.\f* Daisan, the sons of\f + \fr 5:31 \fqa Nekoda.\f* Noeba, the sons of Chaseba, the sons of\f + \fr 5:31 \fqa Gazzam.\f* Gazera, the sons of\f + \fr 5:31 \fqa Uzza.\f* Ozias, the sons of\f + \fr 5:31 \fqa Paseah.\f* Phinoe, the sons of Asara, the sons of\f + \fr 5:31 \fqa Besai.\f* Basthai, the sons of\f + \fr 5:31 \fqa Asnah.\f* Asana, the sons of\f + \fr 5:31 \fqa Meunim.\f* Maani, the sons of\f + \fr 5:31 \fqa Nephisim.\f* Naphisi, the sons of\f + \fr 5:31 \fqa Bakbuk. \ft According to other readings, \fqa Acum, \ft or \fqa Acuph.\f* Acub, the sons of\f + \fr 5:31 \fqa Hakupha.\f* Achipha, the sons of\f + \fr 5:31 \fqa Harhur.\f* Asur, the sons of Pharakim, the sons of\f + \fr 5:31 \fqa Bazluth.\f* Basaloth, +\v 32 the sons of\f + \fr 5:32 \fqa Mehida.\f* Meedda, the sons of Cutha, the sons of\f + \fr 5:32 \fqa Harsha\f* Charea, the sons of\f + \fr 5:32 \fqa Barkos.\f* Barchus, the sons of\f + \fr 5:32 \fqa Sisera.\f* Serar, the sons of\f + \fr 5:32 \fqa Temah\f* Thomei, the sons of\f + \fr 5:32 \fqa Neziah. \ft Another reading is, \fqa Nasith.\f* Nasi, the sons of Atipha. +\p +\v 33 The sons of the servants of Solomon: the sons of\f + \fr 5:33 \fqa Hussophereth.\f* Assaphioth, the sons of\f + \fr 5:33 \fqa Peruda.\f* Pharida, the sons of\f + \fr 5:33 \fqa Jaalah.\f* Jeeli, the sons of\f + \fr 5:33 \fqa Darkon.\f* Lozon, the sons of\f + \fr 5:33 \fqa Giddel.\f* Isdael, the sons of\f + \fr 5:33 \fqa Shephatia.\f* Saphuthi, +\v 34 the sons of\f + \fr 5:34 \fqa Hattil.\f* Agia, the sons of\f + \fr 5:34 \fqa Pochereth-haz-zebaim, \ft Ezra 2:57.\f* Phacareth, the sons of Sabie, the sons of Sarothie, the sons of\f + \fr 5:34 \ft Another reading is, \fqa Misaias.\f* Masias, the sons of Gas, the sons of Addus, the sons of Subas, the sons of Apherra, the sons of Barodis, the sons of Saphat, the sons of Allon. +\p +\v 35 All the temple-servants and the sons of the servants of Solomon were three hundred seventy two. +\v 36 These came up from\f + \fr 5:36 \fqa Telmelah.\f* Thermeleth, and\f + \fr 5:36 \fqa Telharsha.\f* Thelersas,\f + \fr 5:36 \fqa Cherub. Addan.\f* Charaathalan leading them, and Allar; +\v 37 and they could not show their families, nor their stock, how they were of Israel: the sons of\f + \fr 5:37 \fqa Delaiah. \ft Another reading is, \fqa Asan.\f* Dalan the son of\f + \fr 5:37 \fqa Tobiah \ft Another reading is, \fqa Baenan.\f* Ban, the sons of\f + \fr 5:37 \fqa Nekoda.\f* Nekodan, six hundred fifty two. +\p +\v 38 Of the priests, those who usurped the office of the priesthood and were not found: the sons of\f + \fr 5:38 \fqa Habaiah, \ft or \fqa Hobaiah.\f* Obdia, the sons of\f + \fr 5:38 \fqa Hakkoz.\f* Akkos, the sons of Jaddus, who married Augia one of the daughters of\f + \fr 5:38 \fqa Barzillai. \ft Another reading is, \fqa Phaezeldaeus.\f* Zorzelleus, and was called after his name. +\v 39 When the description of the kindred of these men was sought in the register and was not found, they were removed from executing the office of the priesthood; +\v 40 for Nehemias and Attharias told them that they should not be partakers of the holy things until a high priest wearing\f + \fr 5:40 \ft Gr. \fqa the manifestation and truth.\f* Urim and Thummim should arise. +\p +\v 41 So all those of Israel, from twelve years old and upward, beside menservants and women servants, were in number forty two thousand three hundred sixty. +\v 42 Their menservants and handmaids were seven thousand three hundred thirty and seven; the minstrels and singers, two hundred forty five; +\v 43 four hundred thirty and five camels, seven thousand thirty six horses, two hundred forty five mules, and five thousand five hundred twenty five beasts of burden. +\p +\v 44 And some of the chief men of their families, when they came to the temple of God that is in Jerusalem, vowed to set up the house again in its own place according to their ability, +\v 45 and to give into the holy treasury of the works one thousand minas\f + \fr 5:45 \ft A mina is about 570 grams or 1.25 pounds.\f* of gold, five thousand minas of silver, and one hundred priestly vestments. +\p +\v 46 The priests and the Levites and some of the people lived in Jerusalem and the country. The holy singers also and the gatekeepers and all Israel lived in their villages. +\p +\v 47 But when the seventh month was at hand, and when the children of Israel were each in their own place, they all came together with one purpose into the broad place before the first porch which is toward the east. +\v 48 Then Jesus the son of Josedek, his kindred the priests, Zorobabel the son of Salathiel, and his kindred stood up and made the altar of the God of Israel ready +\v 49 to offer burned sacrifices upon it, in accordance with the express commands in the book of Moses the man of God. +\v 50 Some people joined them out of the other nations of the land, and they erected the altar upon its own place, because all the nations of the land were hostile to them and oppressed them; and they offered sacrifices at the proper times and burnt offerings to the Lord both morning and evening. +\v 51 They also held the feast of tabernacles, as it is commanded in the law, and offered sacrifices daily, as appropriate. +\v 52 After that, they offered the continual oblations and the sacrifices of the Sabbaths, of the new moons, and of all the consecrated feasts. +\v 53 All those who had made any vow to God began to offer sacrifices to God from the new moon of the seventh month, although the temple of God was not yet built. +\v 54 They gave money, food, and drink to the masons and carpenters. +\v 55 They also gave carts to the people of Sidon and Tyre, that they should bring cedar trees from Libanus, and convey them in rafts to the harbor of Joppa, according to the commandment which was written for them by Cyrus king of the Persians. +\p +\v 56 In the second year after his coming to the temple of God at Jerusalem, in the second month, Zorobabel the son of Salathiel, Jesus the son of Josedek, their kindred, the Levitical priests, and all those who had come to Jerusalem out of the captivity began work. +\v 57 They laid the foundation of God’s temple on the new moon of the second month, in the second year after they had come to Judea and Jerusalem. +\v 58 \x + \xo 5:58 \xt Ezra 3:8-9\x*They appointed the Levites who were at least twenty years old over the Lord’s works. Then Jesus, with his sons and kindred, Kadmiel his brother, the sons of Jesus, Emadabun, and the sons of Joda the son of Iliadun, and their sons and kindred, all the Levites, with one accord stood up and started the business, laboring to advance the works in the house of God. So the builders built the Lord’s temple. +\p +\v 59 The priests stood arrayed in their vestments with musical instruments and trumpets, and the Levites the sons of Asaph with their cymbals, +\v 60 singing songs of thanksgiving and praising the Lord, according to the directions of King David of Israel. +\v 61 They sang aloud, praising the Lord in songs of thanksgiving, because his goodness and his glory are forever in all Israel. +\v 62 All the people sounded trumpets and shouted with a loud voice, singing songs of thanksgiving to the Lord for the raising up of the Lord’s house. +\v 63 \x + \xo 5:63 \xt Ezra 3:12-13\x*Some of the Levitical priests and of the heads of their families, the elderly who had seen the former house came to the building of this one with lamentation and great weeping. +\v 64 But many with trumpets and joy shouted with a loud voice, +\v 65 so that the people couldn’t hear the trumpets for the weeping of the people, for the multitude sounded loudly, so that it was heard far away. +\p +\v 66 \x + \xo 5:66 \xt Ezra 4:1\x*Therefore when the enemies of the tribe of Judah and Benjamin heard it, they came to know what that noise of trumpets meant. +\v 67 They learned that those who returned from captivity built the temple for the Lord, the God of Israel. +\v 68 So they went to Zorobabel and Jesus, and to the chief men of the families, and said to them, “We will build together with you. +\v 69 For we, just like you, obey your Lord, and sacrifice to him from the days of King \f + \fr 5:69 \ft Another reading is, \fqa Asbacaphath.\f*Asbasareth of the Assyrians, who brought us here.” +\p +\v 70 Then Zorobabel, Jesus and the chief men of the families of Israel said to them, “It is not for you to build the house for the Lord our God. +\v 71 We ourselves alone will build for the Lord of Israel, as King Cyrus of the Persians has commanded us.” +\v 72 But the heathen of the land pressed hard upon the inhabitants of Judea, cut off their supplies, and hindered their building. +\v 73 By their secret plots, and popular persuasions and commotions, they hindered the finishing of the building all the time that King Cyrus lived. So they were hindered from building for two years, until the reign of Darius. +\c 6 +\p +\v 1 Now \x + \xo 6:1 \xt Ezra 4:24; 5:1\x*in the second year of the reign of Darius, Aggaeus and Zacharius the son of\f + \fr 6:1 \fqa Iddo. \ft Another reading is, \fqa Eddin\f* Addo, the prophets, prophesied to the Jews in Judea and Jerusalem in the name of the Lord, the God of Israel. +\v 2 Then Zorobabel the son of Salathiel and Jesus the son of Josedek stood up and began to build the house of the Lord at Jerusalem, the prophets of the Lord being with them and helping them. +\p +\v 3 \x + \xo 6:3 \xt Ezra 5:3\x*At the same time \f + \fr 6:3 \fqa Tattenai.\f*Sisinnes the governor of Syria and Phoenicia came to them, with \f + \fr 6:3 \fqa Shetharbozenai\f*Sathrabuzanes and his companions, and said to them, +\v 4 “By whose authority do you build this house and this roof, and perform all the other things? Who are the builders who do these things?” +\v 5 Nevertheless, the elders of the Jews obtained favor, because the Lord had visited the captives; +\v 6 and they were not hindered from building until such time as communication was made to Darius concerning them, and his answer received. +\p +\v 7 A copy of the letter which Sisinnes, governor of Syria and Phoenicia, and Sathrabuzanes, with their companions, the rulers in Syria and Phoenicia, wrote and sent to Darius: +\p +\v 8 “To King Darius, greetings. Let it be fully known to our lord the king, that having come into the country of Judea, and entered into the city of Jerusalem, we found in the city of Jerusalem the elders of the Jews that were of the captivity +\v 9 building a great new house for the Lord of hewn and costly stones, with timber laid in the walls. +\v 10 Those works are being done with great speed. The work goes on prosperously in their hands, and it is being accomplished with all glory and diligence. +\v 11 Then we asked these elders, saying, ‘By whose authority are you building this house and laying the foundations of these works?’ +\v 12 Therefore, to the intent that we might give knowledge to you by writing who the leaders were, we questioned them, and we required of them the names in writing of their principal men. +\v 13 So they gave us this answer, ‘We are the servants of the Lord who made heaven and earth. +\v 14 As for this house, it was built many years ago by a great and strong king of Israel, and was finished. +\v 15 But when our fathers sinned against the Lord of Israel who is in heaven, and provoked him to wrath, he gave them over into the hands of King Nabuchodonosor of Babylon, king of the Chaldeans. +\v 16 They pulled down the house, burned it, and carried away the people captive to Babylon. +\v 17 But in the first year that Cyrus reigned over the country of Babylon, King Cyrus wrote that this house should be rebuilt. +\v 18 The holy vessels of gold and of silver that Nabuchodonosor had carried away out of the house at Jerusalem and had set up in his own temple, those King Cyrus brought out of the temple in Babylonia, and they were delivered to Zorobabel and to \f + \fr 6:18 \ft Another reading is, \fqa Sabunassarus.\f*Sanabassarus the governor, +\v 19 with commandment that he should carry away all these vessels, and put them in the temple at Jerusalem, and that the Lord’s temple should be built on its site. +\v 20 Then Sanabassarus, having come here, laid the foundations of the Lord’s house which is in Jerusalem. From that time to this we are still building. It is not yet fully completed.’ +\v 21 Now therefore, if it seems good, O king, let a search be made among the royal archives of our lord the king that are in Babylon. +\v 22 If it is found that the building of the house of the Lord which is in Jerusalem has been done with the consent of King Cyrus, and it seems good to our lord the king, let him send us directions concerning these things.” +\p +\v 23 \x + \xo 6:23 \xt Ezra 6:1\x*Then King Darius commanded that a search be made among the archives that were laid up at Babylon. So at Ekbatana the palace, which is in the country of Media, a scroll was found where these things were recorded: +\v 24 “In the first year of the reign of Cyrus, King Cyrus commanded to build up the house of the Lord which is in Jerusalem, where they sacrifice with continual fire. +\v 25 Its height shall be sixty cubits, and the breadth sixty cubits, with three rows of hewn stones, and one row of new wood from that country. Its expenses are to be given out of the house of King Cyrus. +\v 26 The holy vessels of the house of the Lord, both gold and silver, that Nabuchodonosor took out of the house at Jerusalem and carried away to Babylon, should be restored to the house at Jerusalem, and be set in the place where they were before.” +\v 27 Also he commanded that Sisinnes the governor of Syria and Phoenicia, and Sathrabuzanes, and their companions, and those who were appointed rulers in Syria and Phoenicia, should be careful not to meddle with the place, but allow Zorobabel, the servant of the Lord, and governor of Judea, and the elders of the Jews, to build that house of the Lord in its place. +\v 28 “I also command to have it built up whole again; and that they look diligently to help those who are of the captivity of Judea, until the house of the Lord is finished, +\v 29 and that out of the tribute of Coelesyria and Phoenicia a portion shall be carefully given to these men for the sacrifices of the Lord, that is, to Zorobabel the governor for bulls, rams, and lambs, +\v 30 and also corn, salt, wine and oil, and that continually every year without further question, according as the priests who are in Jerusalem may direct to be daily spent, +\v 31 that drink offerings may be made to the Most High God for the king and for his children, and that they may pray for their lives.” +\v 32 He commanded that whoever should transgress, yes, or neglect anything written here, a beam shall be taken out of his own house, and he shall be hanged on it, and all his goods seized for the king. +\v 33 “Therefore may the Lord, whose name is called upon there, utterly destroy every king and nation that stretches out his hand to hinder or damage that house of the Lord in Jerusalem. +\v 34 I, King Darius have ordained that these things be done with diligence.” +\c 7 +\p +\v 1 Then \x + \xo 7:1 \xt Ezra 6:13\x*Sisinnes the governor of Coelesyria and Phoenicia, and Sathrabuzanes, with their companions, following the commandments of King Darius, +\v 2 very carefully supervised the holy work, assisting the elders of the Jews and rulers of the temple. +\v 3 So the holy work prospered, while Aggaeus and Zacharias the prophets prophesied. +\v 4 They finished these things by the commandment of the Lord, the God of Israel, and with the consent of Cyrus, Darius, and Artaxerxes, kings of the Persians. +\v 5 So the holy house was finished by the twenty-third day of the month Adar, in the sixth year of King Darius. +\v 6 The children of Israel, the priests, the Levites, and the others who returned from captivity who joined them did what was written in the book of Moses. +\v 7 For the dedication of the Lord’s temple, they offered one hundred bulls, two hundred rams, four hundred lambs, +\v 8 and twelve male goats for the sin of all Israel, according to the number of the twelve princes of the tribes of Israel. +\v 9 The priests and the Levites stood arrayed in their vestments, according to their kindred, for the services of the Lord, the God of Israel, according to the book of Moses. The gatekeepers were at every gate. +\p +\v 10 The children of Israel who came out of captivity held the Passover the fourteenth day of the first month, when the priests and the Levites were sanctified together, +\v 11 with all those who returned from captivity; for they were sanctified. For the Levites were all sanctified together, +\v 12 and they offered the Passover for all who returned from captivity, for their kindred the priests, and for themselves. +\v 13 The children of Israel who came out of the captivity ate, even all those who had separated themselves from the abominations of the heathen of the land, and sought the Lord. +\v 14 They kept the feast of unleavened bread seven days, rejoicing before the Lord, +\v 15 because he had turned the counsel of the king of Assyria toward them, to strengthen their hands in the works of the Lord, the God of Israel. +\c 8 +\p +\v 1 \x + \xo 8:1 \xt Ezra 7:1\x*After these things, when Artaxerxes the king of the Persians reigned, Esdras came, who was the son of Azaraias, the son of Zechrias, the son of Helkias, the son of Salem, +\v 2 the son of Sadduk, the son of Ahitob, the son of Amarias, the son of Ozias,\f + \fr 8:2 \ft The Vatican MS. omits \fq the son of Memeroth, the son of Zaraias, the son of Savias.\f* the son of Memeroth, the son of Zaraias, the son of Savias, the son of Boccas, the son of Abisne, the son of Phinees, the son of Eleazar, the son of Aaron, the chief priest. +\v 3 This Esdras went up from Babylon as a skilled scribe in the law of Moses, which was given by the God of Israel. +\v 4 The king honored him, for he found favor in his sight in all his requests. +\v 5 There went up with him also some of the children of Israel, and of the priests, Levites, holy singers, gatekeepers, and temple servants to Jerusalem +\v 6 in the seventh year of the reign of Artaxerxes, in the fifth month (this was the king’s seventh year); for they left Babylon on the new moon of the first month and came to Jerusalem, by the prosperous journey which the Lord gave them\f + \fr 8:6 \ft Some MSS. omit \fq for his sake.\f* for his sake. +\v 7 For Esdras had very great skill, so that he omitted nothing of the law and commandments of the Lord, but taught all Israel the ordinances and judgments. +\p +\v 8 Now the commission, which was written from King Artaxerxes, came to Esdras the priest and reader of the law of the Lord, was as follows: +\p +\v 9 “King Artaxerxes to Esdras the priest and reader of the law of the Lord, greetings. +\v 10 Having determined to deal graciously, I have given orders that those of the nation of the Jews, and of the priests and Levites, and of those within our realm who are willing and freely choose to, should go with you to Jerusalem. +\v 11 As many therefore as are so disposed, let them depart with you, as it has seemed good both to me and my seven friends the counselors, +\v 12 that they may look to the affairs of Judea and Jerusalem, in accordance with what is in the Lord’s law, +\v 13 and carry the gifts to the Lord of Israel to Jerusalem, which I and my friends have vowed, and that all the gold and silver that can be found in the country of Babylonia for the Lord in Jerusalem, +\v 14 with that also which is given of the people for the temple of the Lord their God that is at Jerusalem, be collected: even the gold and silver for bulls, rams, and lambs, and what goes with them, +\v 15 to the end that they may offer sacrifices to the Lord upon the altar of the Lord their God, which is in Jerusalem. +\v 16 Whatever you and your kindred decide to do with gold and silver, do that according to the will of your God. +\v 17 The holy vessels of the Lord, which are given you for the use of the temple of your God, which is in Jerusalem, +\v 18 and whatever else you shall remember for the use of the temple of your God, you shall give it out of the king’s treasury. +\v 19 I, King Artaxerxes, have also commanded the keepers of the treasures in Syria and Phoenicia, that whatever Esdras the priest and reader of the law of the Most High God shall send for, they should give it to him with all diligence, +\v 20 to the sum of one hundred talents of silver, likewise also of wheat even to one hundred cors\f + \fr 8:20 \ft a cor is about 230 liters, so 100 cors is about 23 kiloliters or 652 bushels\f*, and one hundred firkins\f + \fr 8:20 \ft a firkin is about 41 liters or 11 gallons.\f* of wine, and\f + \fr 8:20 \ft So some authorities. See Ezra 7:22. The common reading is, \fqa other things.\f* salt in abundance. +\v 21 Let all things be performed after God’s law diligently to the most high God, that wrath come not upon the kingdom of the king and his sons. +\v 22 I command you also that no tax, nor any other imposition, be laid upon any of the priests, or Levites, or holy singers, or gatekeepers, or temple servants, or any that have employment in this temple, and that no man has authority to impose any tax on them. +\v 23 You, Esdras, according to the wisdom of God, ordain judges and justices that they may judge in all Syria and Phoenicia all those who know the law of your God; and those who don’t know it, you shall teach. +\v 24 Whoever transgresses the law of your God and of the king shall be punished diligently, whether it be by death, or other punishment, by penalty of money, or by imprisonment.” +\p +\v 25 Then Esdras the scribe said, “Blessed be the only Lord, the God of my fathers, who has put these things into the heart of the king, to glorify his house that is in Jerusalem, +\v 26 and has honored me in the sight of the king, his counselors, and all his friends and nobles. +\v 27 Therefore I was encouraged by the help of the Lord my God, and gathered together out of Israel men to go up with me. +\p +\v 28 These are the chief according to their families and their several divisions, who went up with me from Babylon in the reign of King Artaxerxes: +\v 29 of the sons of Phinees, Gerson; of the sons of Ithamar, Gamael; of the sons of David,\f + \fr 8:29 \fqa Hattush.\f* Attus\f + \fr 8:29 \ft Ezra 8:3, \fqa of the sons of Shecaniah; of the sons of Parosh.\f* the son of Sechenias; +\v 30 of the sons of Phoros, Zacharais; and with him were counted one hundred fifty men; +\v 31 of the sons of Phaath Moab, Eliaonias the son of\f + \fr 8:31 \fqa Zerehiah.\f* Zaraias, and with him two hundred men; +\v 32 \f + \fr 8:32 \ft Ezra 8:5, \fqa of the sons of Shecaniah, the son of Jahaziel.\f*of the sons of Zathoes, Sechenias the son of Jezelus, and with him three hundred men; of the sons of Adin, Obeth the son of Jonathan, and with him two hundred fifty men; +\v 33 of the sons of Elam, Jesias son of Gotholias, and with him seventy men; +\v 34 of the sons of Saphatias, Zaraias son of Michael, and with him seventy men; +\v 35 of the sons of Joab, Abadias son of Jehiel. Jezelus, and with him two hundred twelve men; +\v 36 \f + \fr 8:36 \ft Ezra 8:10, \fqa of the sons of Shelomith, the son of Josiphiah.\f*of the sons of Banias, Salimoth son of Josaphias, and with him one hundred sixty men; +\v 37 of the sons of Babi, Zacharias son of Bebai, and with him twenty-eight men; +\v 38 of the sons of Azgad: Astath, Joannes son of Hakkatan Akatan, and with him one hundred ten men; +\v 39 of the sons of Adonikam, the last, and these are the names of them, Eliphalat, Jeuel, and Samaias, and with them seventy men; +\v 40 of the sons of Bago, Uthi the son of Istalcurus, and with him seventy men. +\p +\v 41 I gathered them together to the river called Theras. There we pitched our tents three days, and I inspected them. +\v 42 When I had found there none of the priests and Levites, +\v 43 then sent I to Eleazar, Iduel, Maasmas, +\v 44 Elnathan, Samaias, Joribus, Nathan, Ennatan, Zacharias, and Mosollamus, principal men and men of understanding. +\v 45 I asked them to go to Loddeus the captain, who was in the place of the treasury, +\v 46 and commanded them that they should speak to Loddeus, to his kindred, and to the treasurers in that place, to send us such men as might execute the priests’ office in our Lord’s house. +\v 47 By the mighty hand of our Lord, they brought to us men of understanding of the sons of\f + \fr 8:47 \fqa Mahli.\f* Mooli the son of Levi, the son of Israel,\f + \fr 8:47 \fqa Sherebiah.\f* Asebebias, and his sons, and his kindred, who were eighteen, +\v 48 and\f + \fr 8:48 \fqa Hashabiah.\f* Asebias, Annuus, and Osaias his brother, of the sons of Chanuneus, and their sons were twenty men; +\v 49 and of the temple servants whom David and the principal men had appointed for the servants of the Levites, two hundred twenty temple servants. The list of all their names was reported. +\p +\v 50 There I vowed a fast for the young men before our Lord, to seek from him a prosperous journey both for us and for our children and livestock that were with us; +\v 51 for I was ashamed to ask of the king infantry, cavalry, and an escort for protection against our adversaries. +\v 52 For we had said to the king that the power of our Lord would be with those who seek him, to support them in all ways. +\v 53 Again we prayed to our lord about these things, and found him to be merciful. +\p +\v 54 Then I set apart twelve men of the chiefs of the priests,\f + \fr 8:54 \fqa Sherebiah, Hashabiah.\f* Eserebias, Assamias, and ten men of their kindred with them. +\v 55 I weighed out to them the silver, the gold, and the holy vessels of the house of our Lord, which the king, his counselors, the nobles, and all Israel had given. +\v 56 When I had weighed it, I delivered to them six hundred fifty talents of silver, silver vessels weighing one hundred talents, one hundred talents of gold, +\v 57 twenty golden vessels, and twelve vessels of brass, even of fine brass, glittering like gold. +\v 58 I said to them, “You are holy to the Lord, the vessels are holy, and the gold and the silver are a vow to the Lord, the Lord of our fathers. +\v 59 Watch and keep them until you deliver them to the chiefs of the priests and Levites, and to the principal men of the families of Israel in Jerusalem, in the chambers of our Lord’s house. +\v 60 So the priests and the Levites who received the silver, the gold, and the vessels which were in Jerusalem, brought them into the temple of the Lord. +\p +\v 61 We left the river Theras on the twelfth day of the first month. We came to Jerusalem by the mighty hand of our Lord which was upon us. The Lord delivered us from from every enemy on the way, and so we came to Jerusalem. +\v 62 When we had been there three days, the silver and gold was weighed and delivered in our Lord’s house on the fourth day to\f + \fr 8:62 \fqa Meremoth.\f* Marmoth the priest the son of\f + \fr 8:62 \fqa Uriah.\f* Urias. +\v 63 With him was Eleazar the son of Phinees, and with them were Josabdus the son of Jesus and\f + \fr 8:63 \fqa Noadiah the son of Binnui.\f* Moeth the son of Sabannus, the Levites. All was delivered to them by number and weight. +\v 64 All the weight of them was recorded at the same hour. +\v 65 Moreover those who had come out of captivity offered sacrifices to the Lord, the God of Israel, even twelve bulls for all Israel, ninety-six rams, +\v 66 seventy-two lambs, and twelve goats for a peace offering—all of them a sacrifice to the Lord. +\v 67 They delivered the king’s commandments to the king’s stewards and to the governors of Coelesyria and Phoenicia; and they honored the people and the temple of the Lord. +\p +\v 68 Now when these things were done, the principal men came to me and said, +\v 69 “The nation of Israel, the princes, the priests, and the Levites haven’t put away from themselves the foreign people of the land nor the uncleannesses of the Gentiles—the Canaanites, Hittites, Pherezites, Jebusites, Moabites, Egyptians, and Edomites. +\v 70 For both they and their sons have married with their daughters, and the holy seed is mixed with the foreign people of the land. From the beginning of this matter the rulers and the nobles have been partakers of this iniquity.” +\p +\v 71 And as soon as I had heard these things, I tore my clothes and my holy garment, and plucked the hair from off my head and beard, and sat down sad and full of heaviness. +\v 72 So all those who were moved at the word of the Lord, the God of Israel, assembled to me while I mourned for the iniquity, but I sat still full of heaviness until the evening sacrifice. +\v 73 Then rising up from the fast with my clothes and my holy garment torn, and bowing my knees and stretching out my hands to the Lord, +\v 74 I said, “O Lord, I am ashamed and confounded before your face, +\v 75 for our sins are multiplied above our heads, and our errors have reached up to heaven +\v 76 ever since the time of our fathers. We are in great sin, even to this day. +\v 77 For our sins and our fathers’ we with our kindred, our kings, and our priests were given up to the kings of the earth, to the sword, and to captivity, and for a prey with shame, to this day. +\v 78 Now in some measure mercy has been shown to us from you, O Lord, that there should be left us a root and a name in the place of your sanctuary, +\v 79 and to uncover a light in the house of the Lord our God, and to give us food in the time of our servitude. +\v 80 Yes, when we were in bondage, we were not forsaken by our Lord, but he gave us favor before the kings of Persia, so that they gave us food, +\v 81 glorified the temple of our Lord, and raised up the desolate Zion, to give us a sure dwelling in Judea and Jerusalem. +\p +\v 82 “Now, O Lord, what shall we say, having these things? For we have transgressed your commandments which you gave by the hand of your servants the prophets, saying, +\v 83 ‘The land, which you enter into to possess as an inheritance, is a land polluted with the pollutions of the foreigners of the land, and they have filled it with their uncleanness. +\v 84 Therefore now you shall not join your daughters to their sons, neither shall you take their daughters for your sons. +\v 85 You shall never seek to have peace with them, that you may be strong, and eat the good things of the land, and that you may leave it for an inheritance to your children for evermore.’ +\v 86 All that has happened is done to us for our wicked works and great sins, for you, O Lord, made our sins light, +\v 87 and gave to us such a root; but we have turned back again to transgress your law in mingling ourselves with the uncleanness of the heathen of the land. +\v 88 You weren’t angry with us to destroy us until you had left us neither root, seed, nor name. +\v 89 O Lord of Israel, you are true, for we are left a root this day. +\v 90 Behold, now we are before you in our iniquities, for we can’t stand any longer before you because of these things.” +\p +\v 91 \x + \xo 8:91 \xt Ezra 10:1\x*As Esdras in his prayer made his confession, weeping, and lying flat on the ground before the temple, a very great throng of men, women, and children gathered to him from Jerusalem; for there was great weeping among the multitude. +\v 92 Then Jechonias the son of Jeelus, one of the sons of Israel, called out, and said, “O Esdras, we have sinned against the Lord God, we have married foreign women of the heathen of the land, but there is still hope for Israel. +\v 93 Let’s make an oath to the Lord about this, that we will put away all our foreign wives with their children, +\v 94 as seems good to you, and to as many as obey the Lord’s Law. +\v 95 Arise, and take action, for this is your task, and we will be with you to do valiantly.” +\v 96 So Esdras arose, and took an oath from the chief of the priests and Levites of all Israel to do these things; and they swore to it. +\c 9 +\p +\v 1 \x + \xo 9:1 \xt Ezra 10:6\x*Then Esdras rose up from the court of the temple and went to the chamber of Jonas the son of Eliasib, +\v 2 and lodged there, and ate no bread and drank no water, mourning for the great iniquities of the multitude. +\v 3 A proclamation was made in all Judea and Jerusalem to all those who returned from captivity, that they should be gathered together at Jerusalem, +\v 4 and that whoever didn’t meet there within two or three days, in accordance with the ruling of the elders, that their livestock would be seized for the use of the temple, and they would be expelled from the multitude of those who returned from captivity. +\p +\v 5 Within three days, all those of the tribe of Judah and Benjamin gathered together at Jerusalem. This was the ninth month, on the twentieth day of the month. +\v 6 All the multitude sat together shivering in the broad place before the temple because of the present foul weather. +\v 7 So Esdras arose up and said to them, “You have transgressed the law and married foreign wives, increasing the sins of Israel. +\v 8 Now make confession and give glory to the Lord, the God of our fathers, +\v 9 and do his will, and separate yourselves from the heathen of the land, and from the foreign women.” +\p +\v 10 Then the whole multitude cried out, and said with a loud voice, “Just as you have spoken, so we will do. +\v 11 But because the multitude is great, and it is foul weather, so that we can’t stand outside, and this is not a work of one day or two, seeing our sin in these things has spread far, +\v 12 therefore let the rulers of the multitude stay, and let all those of our settlements that have foreign wives come at the time appointed, +\v 13 and with them the rulers and judges of every place, until we turn away the wrath of the Lord from us for this matter.” +\p +\v 14 So Jonathan the son of Azael and\f + \fr 9:14 \ft Another reading is, \fqa Ezias.\f* Ezekias the son of Thocanus took the matter on themselves. Mosollamus and Levis and Sabbateus were judges with them. +\v 15 Those who returned from captivity did according to all these things. +\p +\v 16 Esdras the priest chose for himself principal men of their families, all by name. On the new moon of the tenth month they met together to examine the matter. +\v 17 So their cases of men who had foreign wives was brought to an end by the new moon of the first month. +\p +\v 18 Of the priests who had come together and had foreign wives, there were found +\v 19 of the sons of Jesus the son of Josedek, and his kindred,\f + \fr 9:19 \fqa Maaseiah.\f* Mathelas, Eleazar, and\f + \fr 9:19 \fqa Jarib.\f* Joribus, and\f + \fr 9:19 \fqa Gedaliah\f* Joadanus. +\v 20 They gave their hands to put away their wives, and to offer rams to make reconciliation for their error. +\v 21 Of the sons of Emmer: Ananias, Zabdeus, \f + \fr 9:21 \fqa Harim\f*Manes, \f + \fr 9:21 \fqa Maaseiah.\f*Sameus, \f + \fr 9:21 \fqa Jehiel.\f*Hiereel, and \f + \fr 9:21 \fqa Uzziah.\f*Azarias. +\v 22 Of the sons of \f + \fr 9:22 \fqa Pashhur.\f*Phaisur: Elionas, Massias, Ishmael, Nathanael, \f + \fr 9:22 \fqa Jozabad.\f*Ocidelus, and \f + \fr 9:22 \fqa Elasah.\f*Saloas. +\p +\v 23 Of the Levites: Jozabdus, Semeis, \f + \fr 9:23 \fqa Kelaiah.\f*Colius who was called \f + \fr 9:23 \fqa Kelita.\f*Calitas, \f + \fr 9:23 \fqa Pethahiah.\f*Patheus, Judas, and Jonas. +\v 24 Of the holy singers: \f + \fr 9:24 \fqa Eliashib.\f*Eliasibus and Bacchurus. +\v 25 Of the gatekeepers: Sallumus and\f + \fr 9:25 \fqa Telem.\f* Tolbanes. +\p +\v 26 Of Israel, of the sons of Phoros:\f + \fr 9:26 \fqa Parosh.\f* Hiermas,\f + \fr 9:26 \fqa Ramiah\f* Ieddias,\f + \fr 9:26 \fqa Izziah. \ft Another reading is, \fqa Iezias\f* Melchias, Maelus,\f + \fr 9:26 \fqa Mijamin.\f* Eleazar, Asibas, \f + \fr 9:26 \fqa Malchijah.\f*and Banneas. +\v 27 Of the sons of Ela: Matthanias, Zacharias, \f + \fr 9:27 \fqa Jehiel.\f*Jezrielus, Oabdius, Hieremoth, and\f + \fr 9:27 \fqa Abdi.\f* Aedias. +\v 28 Of the sons of \f + \fr 9:28 \fqa Zattu.\f*Zamoth: \f + \fr 9:28 \fqa Elioenai.\f*Eliadas, \f + \fr 9:28 \fqa Eliashib.\f*Eliasimus, \f + \fr 9:28 \fqa Mattaniah.\f*Othonias, Jarimoth, \f + \fr 9:28 \fqa Zabad.\f*Sabathus, and \f + \fr 9:28 \fqa Aziza.\f*Zardeus. +\v 29 Of the sons of Bebai: Joannes, Ananias, \f + \fr 9:29 \fqa Zabbai.\f*Jozabdus, and \f + \fr 9:29 \fqa Athlai.\f*Ematheis. +\v 30 Of the sons of \f + \fr 9:30 \fqa Bani.\f*Mani: \f + \fr 9:30 \fqa Meshullam.\f*Olamus, \f + \fr 9:30 \fqa Malluch.\f*Mamuchus, \f + \fr 9:30 \fqa Adaiah.\f*Jedeus, Jasubas, \f + \fr 9:30 \fqa Sheal.\f*Jasaelus, and Hieremoth. +\v 31 Of the sons of Addi: Naathus, Moossias, Laccunus, Naidus, Matthanias, Sesthel, Balnuus, and Manasseas. +\v 32 Of the sons of Annas: Elionas, Aseas, Melchias, Sabbeus, and Simon Chosameus. +\v 33 Of the sons of Asom: \f + \fr 9:33 \fqa Mattenai.\f*Maltanneus, \f + \fr 9:33 \fqa Mattattah.\f*Mattathias, \f + \fr 9:33 \fqa Zabad.\f*Sabanneus, Eliphalat, Manasses, and Semei. +\v 34 Of the sons of Baani: Jeremias, Momdis, Ismaerus, Juel, Mamdai, Pedias, Anos, Carabasion, Enasibus, Mamnitamenus, Eliasis, Bannus, Eliali, Someis, Selemias, and Nathanias. Of the sons of Ezora: Sesis, Ezril, Azaelus, Samatus, Zambri, and Josephus. +\v 35 Of the sons of Nooma: Mazitias, Zabadeas, Edos, Juel, and Banaias. +\v 36 All these had taken foreign wives, and they put them away with their children. +\p +\v 37 The priests and Levites, and those who were of Israel, lived in Jerusalem and in the country, on the new moon of the seventh month, and the children of Israel in their settlements. +\p +\v 38 \x + \xo 9:38 \xt Nehemiah 8:1\x*The whole multitude gathered together with one accord into the broad place before the porch of the temple toward the east. +\v 39 They said to Esdras the priest and reader, “Bring the law of Moses that was given by the Lord, the God of Israel.” +\p +\v 40 So Esdras the chief priest brought the law to the whole multitude both of men and women, and to all the priests, to hear the law on the new moon of the seventh month. +\v 41 He read in the broad place before the porch of the temple from morning until midday, before both men and women; and all the multitude gave attention to the law. +\v 42 Esdras the priest and reader of the law stood up upon the pulpit of wood which had been prepared. +\v 43 Beside him stood Mattathias, Sammus, Ananias, Azarias, Urias, \f + \fr 9:43 \fqa Hilkiah.\f*Ezekias, and Baalsamus on the right hand, +\v 44 and on his left hand, \f + \fr 9:44 \fqa Pedaiah.\f*Phaldeus, Misael, Melchias, \f + \fr 9:44 \fqa Hashuin.\f*Lothasubus, Nabarias, and Zacharias. +\v 45 Then Esdras took the book of the law before the multitude, and sat honorably in the first place before all. +\v 46 When he opened the law, they all stood straight up. So Esdras blessed the Lord God Most High, the God of armies, the Almighty. +\v 47 All the people answered, “Amen.” Lifting up their hands, they fell to the ground and worshiped the Lord. +\v 48 Also Jesus, Annus, Sarabias, Iadinus, Jacubus, Sabateus, \f + \fr 9:48 \fqa Hodiah.\f*Auteas, Maiannas, Calitas, Azarias, Jozabdus, Ananias, and Phalias, the Levites, taught the law of the Lord, \f + \fr 9:48 \ft Some authorities omit \fq and read...Lord.\f*and read to the multitude the law of the Lord, explaining what was read. +\p +\v 49 Then Attharates said to Esdras the chief priest and reader, and to the Levites who taught the multitude, even to all, +\v 50 “This day is holy to the Lord—now they all wept when they heard the law— +\v 51 go then, eat the fat, drink the sweet, and send portions to those who have nothing; +\v 52 for the day is holy to the Lord. Don’t be sorrowful, for the Lord will bring you to honor.” +\v 53 So the Levites commanded all things to the people, saying, “This day is holy. Don’t be sorrowful.” +\v 54 Then they went their way, every one to eat, drink, enjoy themselves, to give portions to those who had nothing, and to rejoice greatly, +\v 55 because they \f + \fr 9:55 \ft Or, \fqa were inspired by\f*understood the words they were instructed with, and for which they had been assembled. \ No newline at end of file diff --git a/bibles/eng-web_usfm/55-MANeng-web.usfm b/bibles/eng-web_usfm/55-MANeng-web.usfm new file mode 100644 index 0000000..2280c3a --- /dev/null +++ b/bibles/eng-web_usfm/55-MANeng-web.usfm @@ -0,0 +1,27 @@ +\id MAN +\h Prayer of Manasses +\toc1 The Prayer of Manasses King of Judah when He was Held Captive in Babylon +\toc2 Prayer of Manasses +\toc3 Man +\mt3 The +\mt1 Prayer of Manasses +\mt2 King of Judah, +\mt3 When He Was Held Captive in Babylon +\ip \bk The Prayer of Manasses\bk* is recognized as Deuterocanonical Scripture by the Greek Orthodox and Russian Orthodox Churches. It is included in an appendix to the Latin Vulgate Bible. +\c 1 +\p +\v 1 O LORD Almighty in heaven, God of our fathers Abraham, Isaac, and Jacob, and of their righteous offspring, +\v 2 you who have made heaven and earth, with all their order, +\v 3 who have bound the sea by the word of your commandment, who have shut up the deep, and sealed it by your terrible and glorious name, +\v 4 whom all things fear, yes, tremble before your power, +\v 5 for the majesty of your glory can’t be borne, and the anger of your threatening toward sinners is unbearable. +\v 6 Your merciful promise is unmeasurable and unsearchable, +\v 7 for you are the Lord Most High, of great compassion, patient and abundant in mercy, and relent at human suffering. +\v 8 \f + \fr 1:8 \ft The Alex. MS. omits \fqa You... saved.\f*You, O Lord, according to your great goodness have promised repentance and forgiveness to those who have sinned against you. Of your infinite mercies, you have appointed repentance to sinners, that they may be saved. You therefore, O Lord, who are the God of the just, have not appointed repentance to the just, to Abraham, Isaac, and Jacob, which have not sinned against you, but you have appointed repentance to me, a sinner. +\v 9 For I have sinned more than the number of the sands of the sea. My transgressions are multiplied,\f + \fr 1:9 \ft The Alex. MS. omits \fqa O Lord... multiplied.\f* O Lord, my transgressions are multiplied, and I am not worthy to behold and see the height of heaven for the multitude of my iniquities. +\v 10 I am bowed down with many iron bands, so that I can’t lift up my head by reason of my sins,\f + \fr 1:10 \ft Some authorities omit \fqa by reason of my sins.\f* neither have I any relief; for I have provoked your wrath, and done that which is evil before you:\f + \fr 1:10 \ft The Alex. MS. omits \fqa I did... commandments.\f* I didn’t do your will, neither did I keep your commandments. I have set up abominations, and have multiplied detestable things. +\v 11 Now therefore I bow the knee of my heart, asking you for grace. +\v 12 I have sinned, O Lord, I have sinned, and I acknowledge my iniquities; +\v 13 but, I humbly ask you, forgive me, O Lord, forgive me, and please don’t destroy me with my iniquities. Don’t be angry with me forever, by reserving evil for me. Don’t condemn me into the lower parts of the earth. For you, O Lord, are the God of those who repent. +\v 14 In me you will show all your goodness, for you will save me, even though I am unworthy, according to your great mercy. +\v 15 Then I will praise you forever all the days of my life; for all the army of heaven sings your praise, and yours is the glory forever and ever. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/56-PS2eng-web.usfm b/bibles/eng-web_usfm/56-PS2eng-web.usfm new file mode 100644 index 0000000..989e8ee --- /dev/null +++ b/bibles/eng-web_usfm/56-PS2eng-web.usfm @@ -0,0 +1,32 @@ +\id PS2 +\h Psalm 151 +\toc1 Psalm 151 +\toc2 Psalm 151 +\toc3 Ps2 +\mt1 Psalm 151 +\ip \bk Psalm 151\bk* is recognized as Deuterocanonical Scripture by the Greek Orthodox and Russian Orthodox Churches. +\c 1 +\cp 151 +\d This Psalm is a genuine one of David, though extra,\f + \fr 1:0 \ft or, supernumerary\f* composed when he fought in single combat with Goliath. +\q1 +\v 1 I was small among my brothers, +\q2 and youngest in my father’s house. +\q2 I tended my father’s sheep. +\q1 +\v 2 My hands formed a musical instrument, +\q2 and my fingers tuned a lyre. +\q1 +\v 3 Who shall tell my Lord? +\q2 The Lord himself, he himself hears. +\q1 +\v 4 He sent forth his angel and took me from my father’s sheep, +\q2 and he anointed me with his anointing oil. +\q1 +\v 5 My brothers were handsome and tall; +\q2 but the Lord didn’t take pleasure in them. +\q1 +\v 6 I went out to meet the Philistine, +\q2 and he cursed me by his idols. +\q1 +\v 7 But I drew his own sword and beheaded him, +\q2 and removed reproach from the children of Israel. \ No newline at end of file diff --git a/bibles/eng-web_usfm/57-3MAeng-web.usfm b/bibles/eng-web_usfm/57-3MAeng-web.usfm new file mode 100644 index 0000000..5ab24c6 --- /dev/null +++ b/bibles/eng-web_usfm/57-3MAeng-web.usfm @@ -0,0 +1,261 @@ +\id 3MA +\h 3 Maccabees +\toc1 The Third Book of the Maccabees +\toc2 3 Maccabees +\toc3 3Ma +\mt1 The Third Book of the Maccabees +\ip \bk The Third Book of the Maccabees\bk* is recognized as Deuterocanonical Scripture by the Greek Orthodox and Russian Orthodox Churches. It is considered to be apocrypha by most other church traditions. +\c 1 +\p +\v 1 Now Philopater, on learning from those who came back that Antiochus had made himself master of the places which belonged to himself, sent orders to all his infantry and cavalry, took with him his sister Arsinoe, and marched out as far as the parts of Raphia, where Antiochus and his forces encamped. +\v 2 And one Theodotus, intending to carry out his design, took with him the bravest of the armed men who had been before committed to his trust by Ptolemy, and got through at night to the tent of Ptolemy, to kill him on his own responsibility, and so to end the war. +\v 3 But Dositheus, called the son of Drimulus, by birth a Jew, afterward a renegade from the laws and observances of his country, conveyed Ptolemy away, and made an obscure person lie down in his stead in the tent. It turned out that this man received the fate which was meant for the other. +\v 4 A fierce battle then took place. The men of Antiochus were prevailing. Arsinoe continually went up and down the ranks, and with dishevelled hair, with tears and entreaties, begged the soldiers to fight bravely for themselves, their children, and wives, and promised that if they proved conquerors, she would give them each two minas of gold. +\v 5 It thus fell out that their enemies were defeated in hand-to-hand encounter, and that many of them were taken prisoners. +\v 6 Having vanquished this attempt, the king then decided to proceed to the neighboring cities, and encourage them. +\v 7 By doing this, and by making donations to their temples, he inspired his subjects with confidence. +\p +\v 8 The Jews sent some of their council and of their elders to him. The greetings, welcoming gifts, and congratulations of the past, given by them, filled him with the greater eagerness to visit their city. +\v 9 Having arrived at Jerusalem, sacrificed, and offered thank-offerings to the Greatest God, and done whatever else was suitable to the sanctity of the place, and entered the inner court, +\v 10 he was so impressed with the magnificence of the place, and so wondered at the orderly arrangements of the temple, that he considered entering the sanctuary itself. +\v 11 When they told him that this was not permissible, none of the nation, not even the priests in general, but only the supreme high priest of all, and he only once in a year, was allowed to go in, he would by no means give way. +\v 12 Then they read the law to him, but he persisted in intruding, exclaiming that he ought to be allowed. He said, “Even if they were deprived of this honor, I shouldn’t be.” +\v 13 He asked why, when he entered all the other temples, did none of the priests who were present forbid him. +\v 14 He was thoroughly answered by someone, that he did wrong to boast of this. +\v 15 “Well, since I have done this,” said he, “be the cause what it may, shall I not enter with or without your consent?” +\p +\v 16 When the priests fell down in their sacred vestments imploring the Greatest God to come and help in time of need, and to avert the violence of the fierce aggressor, and when they filled the temple with lamentations and tears, +\v 17 then those who had been left behind in the city were scared, and rushed out, uncertain of the event. +\v 18 Virgins, who had been shut up within their chambers, came out with their mothers, scattering dust and ashes on their heads, and filling the streets with outcries. +\v 19 Women who had recently been arrayed for marriage left their bridal chambers, left the reserve that befitted them, and ran around the city in a disorderly manner. +\v 20 New-born babes were deserted by the mothers or nurses who waited upon them—some here, some there, in houses, or in fields; these now, with an ardor which could not be checked, swarmed into the Most High temple. +\v 21 Various prayers were offered up by those who assembled in this place because of the unholy attempt of the king. +\v 22 Along with these there were some of the citizens who took courage and would not submit to his obstinacy and his intention of carrying out his purpose. +\v 23 Calling out to arms, and to die bravely in defense of the law of their fathers, they created a great uproar in the place, and were with difficulty brought back by the aged and the elders to the station of prayer which they had occupied before. +\v 24 During this time, the multitude kept on praying. +\v 25 The elders who surrounded the king tried in many ways to divert his arrogant mind from the design which he had formed. +\v 26 He, in his hardened mood, insensible to all persuasion, was going onward with the view of carrying out this design. +\v 27 Yet even his own officers, when they saw this, joined the Jews in an appeal to Him who has all power to aid in the present crisis, and not wink at such haughty lawlessness. +\v 28 Such was the frequency and the vehemence of the cry of the assembled crowd, that an indescribable noise ensued. +\v 29 Not the men only, but the very walls and floor seemed to sound out, all things preferring death rather than to see the place defiled. +\c 2 +\p +\v 1 Now it was that the high priest Simon bowed his knees near the holy place, spread out his hands in reverent form, and uttered the following prayer: +\v 2 “O Lord, Lord, King of the heavens, and Ruler of the whole creation, Holy among the holy, sole Governor, Almighty, give ear to us who are oppressed by a wicked and profane one, who celebrates in his confidence and strength. +\v 3 It is you, the Creator of all, the Lord of the universe, who are a righteous Governor, and judge all who act with pride and insolence. +\v 4 It was you who destroyed the former workers of unrighteousness, among whom were the giants, who trusted in their strength and daring, by covering them with a measureless flood. +\v 5 It was you who made the Sodomites, those workers of exceedingly iniquity, men notorious for their vices, an example to later generations, when you covered them with fire and brimstone\f + \fr 2:5 \ft or, sulfur\f*. +\v 6 You made known your power when you caused the bold Pharaoh, the enslaver of your people, to pass through the ordeal of many and diverse inflictions. +\v 7 You rolled the depths of the sea over him when he pursued with chariots and with a multitude of followers, and gave a safe passage to those who put their trust in you, the Lord of the whole creation. +\v 8 These saw and felt the works of your hands, and praised you, the Almighty. +\v 9 You, O King, when you created the immeasurable and measureless earth, chose this city. You made this place sacred to your name, even though you need nothing. You glorified it with your illustrious presence, after constructing it to the glory of your great and honorable name. +\v 10 You promised, out of love for the people of Israel, that if we fall away from you, become afflicted, and then come to this house and pray, you would hear our prayer. +\v 11 Truly you are faithful and true. +\v 12 When you often aided our fathers when hard pressed and humiliated, and delivered them out of great dangers, +\v 13 see now, holy King, how through our many and great sins we are crushed and made subject to our enemies, and have become weak and powerless. +\v 14 In our low condition, this bold and profane man seeks to dishonor this your holy place, consecrated out of the earth to the name of your Majesty. +\v 15 Your dwelling place, the heaven of heavens, is indeed unapproachable to men. +\v 16 But since it seemed good to you to exhibit your glory among your people Israel, you sanctified this place. +\v 17 Don’t punish us by means of the uncleanness of their men, and don’t chastise us by means of their profanity, lest the lawless ones should boast in their rage, and exult in exuberant pride of speech, and say, +\v 18 ‘We have trampled upon the holy house, as idolatrous houses are trampled upon.’ +\v 19 Blot out our iniquities, do away with our errors, and show your compassion in this hour. +\v 20 Let your mercies quickly go before us. Grant us peace, that the downcast and broken hearted may praise you with their mouth.” +\p +\v 21 At that time God, who sees all things, who is beyond all Holy among the holy, heard that prayer, so suitable, and scourged the man who was greatly uplifted with scorn and insolence. +\v 22 Shaking him back and forth as a reed is shaken with the wind, he threw him down on the pavement, powerless, with limbs paralyzed, and by a righteous judgment deprived of the ability to speak. +\v 23 His friends and bodyguards, seeing the swift recompense which had suddenly overtaken him, struck with exceeding terror, and fearing that he would die, speedily removed him. +\v 24 When in course of time he had come to himself, this severe punishment caused no repentance within him, but he departed with bitter threatenings. +\p +\v 25 He proceeded to Egypt, grew worse in wickedness through his previously mentioned companions in wine, who were lost to all goodness, +\v 26 and not satisfied with countless acts of impiety, his audacity so increased that he raised evil reports there, and many of his friends, watching his purpose attentively, joined in furthering his will. +\v 27 His purpose was to inflict a public stigma upon our race. Therefore he erected a stone pillar in the courtyard, and caused the following inscription to be engraved upon it: +\v 28 “Entrance to this temple is to be refused to all those who would not sacrifice. All the Jews were to be registered among the slaves. Those who resisted are to be forcibly seized and put to death. +\v 29 Those who are thus registered are to be marked on their persons by the ivy-leaf symbol of Dionysus, and to be reduced to these limited rights.” +\v 30 To do away with the appearance of hating them all, he had it written underneath, that if any of them should elect to enter the community of those initiated in the rites, these should have equal rights with the Alexandrians. +\p +\v 31 Some of those who were over the city, therefore, abhorring any approach to the city of piety, unhesitatingly gave in to the king, and expected to derive some great honor from a future connection with him. +\v 32 A nobler spirit, however, prompted the majority to cling to their religious observances, and by paying money that they might live unmolested, these sought to escape the registration, +\v 33 cheerfully looking forward to future aid, they abhorred their own apostates, considering them to be national foes, and depriving them of common fellowship and mutual help. +\c 3 +\p +\v 1 On discovering this, so incensed was the wicked king, that he no longer confined his rage to the Jews in Alexandria. Laying his hand more heavily upon those who lived in the country, he gave orders that they should be quickly collected into one place, and most cruelly deprived of their lives. +\v 2 While this was going on, a hostile rumor was uttered abroad by men who had banded together to injure the Jewish race. The pretext of their charge was that the Jews kept them away from the ordinances of the law. +\v 3 Now the Jews always maintained a feeling of unwavering loyalty toward the kings, +\v 4 yet, as they worshiped God and observed his law, they made certain distinctions, and avoided certain things. Hence they appeared hateful to some people, +\v 5 although, as they adorned their conversation with works of righteousness, they had established themselves in the good opinion of the world. +\v 6 What all the rest of mankind said was, however, disregarded by the foreigners, +\v 7 who said much of the exclusiveness of the Jews with regard to their worship and meats. They alleged that they were unsociable men, hostile to the king’s interests, refusing to associate with him or his troops. By this way of speaking, they brought much hatred on them. +\v 8 This unexpected uproar and sudden gathering of people was observed by the Greeks who lived in the city, concerning men who had never harmed them. Yet to aid them was not in their power, since all was oppression around, but they encouraged them in their troubles, and expected a favorable turn of affairs. +\v 9 He who knows all things will not, they said, disregard so great a people. +\v 10 Some of the neighbors, friends, and business associates of the Jews even called them secretly to an interview, pledged them their assistance, and promised to do their very utmost for them. +\p +\v 11 Now the king, elated with his prosperous fortune, and not regarding the superior power of God, but thinking to persevere in his present purpose, wrote the following letter to the prejudice of the Jews: +\v 12 “King Ptolemy Philopater, to the commanders and soldiers in Egypt, and in all places, health and happiness! +\v 13 I am doing well, and so, too, are my affairs. +\v 14 Since our Asiatic campaign, the particulars of which you know, and which by the aid of the gods, not lightly given, and by our own vigor, has been brought to a successful conclusion according to our expectation, +\v 15 we resolved, not with strength of spear, but with gentleness and much humanity, as it were to nurse the inhabitants of Coele-Syria and Phoenicia, and to be their willing benefactors. +\v 16 So, having bestowed considerable sums of money upon the temples of the several cities, we proceeded even as far as Jerusalem, and went up to honor the temple of these wretched beings who never cease from their folly. +\v 17 To outward appearance they received us willingly, but belied that appearance by their deeds. When we were eager to enter their temple, and to honor it with the most beautiful and exquisite gifts, +\v 18 they were so carried away by their old arrogance as to forbid us the entrance, while we, out of our forbearance toward all men, refrained from exercising our power upon them. +\v 19 Thus, exhibiting their enmity against us, they alone among the nations lift up their heads against kings and benefactors, as men unwilling to submit to any reasonable thing. +\v 20 We then, having endeavored to make allowance for the madness of these people, and on our victorious return treating all people in Egypt courteously, acted in a manner which was befitting. +\v 21 Accordingly, bearing no ill will against their kinsmen, but rather remembering our connection with them, and the numerous matters with sincere heart from a remote period entrusted to them, we wished to venture a total alteration of their state, by giving them the rights of citizens of Alexandria, and to admit them to the everlasting rites of our solemnities. +\v 22 All this, however, they have taken in a very different spirit. With their innate malignity, they have spurned the fair offer, and constantly inclining to evil, +\v 23 have rejected the inestimable rights. Not only so, but by using speech, and by refraining from speech, they abhor the few among them who are heartily disposed toward us, ever deeming that their infamous way of life will force us to do away with our reform. +\v 24 Having then received certain proofs that these Jews bear us every sort of ill will, we must look forward to the possibility of some sudden tumult among ourselves when these impious men may turn traitors and barbarous enemies. +\v 25 Therefore, as soon as the contents of this letter become known to you, in that same hour we order those Jews who dwell among you, with wives and children, to be sent to us, vilified and abused, in chains of iron, to undergo a cruel and shameful death, suitable to enemies. +\v 26 For by the punishment of them in one body we perceive that we have found the only means of establishing our affairs for the future on a firm and satisfactory basis. +\v 27 Whoever protects a Jew, whether it be old man, child, or nursing baby, shall with his whole house be tortured to death. +\v 28 Whoever informs against the Jews, besides receiving the property of the person charged, shall be presented with two thousand drachmas\f + \fr 3:28 \ft a drachma was about a day’s pay for an agricultural laborer\f* from the royal treasury, shall be made free, and shall be crowned. +\v 29 Whatever place shelters a Jew shall be made unapproachable and shall be put under the ban of fire, and be forever rendered useless to every living being for all time to come.” +\v 30 The king’s letter was written in the above form. +\c 4 +\p +\v 1 Wherever this decree was received, the people kept up a revelry of joy and shouting, as if their long-pent-up, hardened hatred would now show itself openly. +\v 2 The Jews suffered great throes of sorrow and wept much, while their hearts, all things around being lamentable, were set on fire as they bewailed the sudden destruction which was decreed against them. +\v 3 What home, or city, or any inhabited place, or what streets were there, which their condition didn’t fill with wailing and lamentation? +\v 4 They were sent out unanimously by the generals in various cities, with such stern and pitiless feeling that the exceptional nature of the infliction moved even some of their enemies. These, influenced by sentiments of common humanity, and reflecting upon the uncertain issue of life, shed tears at their miserable expulsion. +\v 5 A multitude of aged hoary-haired old men were driven along with halting bending feet, urged onward by the impulse of a violent, shameless force to quick speed. +\v 6 Girls who had entered the bridal chamber quite lately, to enjoy the partnership of marriage, exchanged pleasure for misery; and with dust scattered upon their myrrh-anointed heads, were hurried along unveiled; and, in the midst of outlandish insults, set up with one accord a lamentable cry instead of the marriage hymn. +\v 7 Bound and exposed to public gaze, they were hurried violently on board ship. +\v 8 The husbands of these, in the prime of their youthful vigor, instead of crowns, wore ropes round their necks. Instead of feasting and youthful celebration, they spent the rest of their nuptial days in wailing, and saw only the grave at hand. +\v 9 They were dragged along by unyielding chains, like wild animals. Of these, some had their necks thrust into the benches of the rowers, while the feet of others were enclosed in hard fetters. +\v 10 The planks of the deck above them blocked out the light and shut out the day on every side, so that they might be treated like traitors during the whole voyage. +\p +\v 11 They were carried like this in this vessel, and at the end of it arrived at Schedia. The king had ordered them to be cast into the vast hippodrome, which was built in front of the city. This place was well adapted by its situation to expose them to the gaze of all comers into the city, and of those who went from the city into the country. Thus they could hold no communication with his forces. They weren’t deemed worthy of any civilized accommodation. +\v 12 When this was done, the king, hearing that their kindred in the city often went out and lamented the melancholy distress of these victims, +\v 13 was full of rage, and commanded that they should be carefully subjected to the same—and not one bit milder—treatment. +\v 14 The whole nation was now to be registered. Every individual was to be specified by name, not for that hard servitude of labor which we have a little before mentioned, but that he might expose them to the before-mentioned tortures; and finally, in the short space of a day, might exterminate them by his cruelties. +\v 15 The registering of these men was carried on cruelly, zealously, assiduously, from the rising of the sun to its going down, and was not brought to an end in forty days. +\v 16 The king was filled with great and constant joy, and celebrated banquets before the temple idols. His erring heart, far from the truth, and his profane mouth gave glory to idols, deaf and incapable of speaking or aiding, and uttered unworthy speech against the Greatest God. +\v 17 At the end of the above-mentioned interval of time, the registrars brought word to the king that the multitude of the Jews was too great for registration, +\v 18 inasmuch as there were many still left in the land, of whom some were in inhabited houses, and others were scattered about in various places, so that all the commanders in Egypt were insufficient for the work. +\v 19 The king threatened them, and charged them with taking bribes, in order to contrive the escape of the Jews, but was clearly convinced of the truth of what had been said. +\v 20 They said, and proved, that paper and pens had failed them for the carrying out of their purpose. +\v 21 Now this was an active interference of the unconquerable Providence which assisted the Jews from heaven. +\c 5 +\p +\v 1 Then he called Hermon, who had charge of the elephants. Full of rage, altogether fixed in his furious design, +\v 2 he commanded him, with a quantity of unmixed wine with handfuls of incense infused, to drug the elephants early on the following day. These five hundred elephants were, when infuriated by the copious drinks of frankincense, to be led up to the execution of death upon the Jews. +\v 3 The king, after issuing these orders, went to his feasting, and gathered together all those of his friends and of the army who hated the Jews the most. +\v 4 The master of the elephants, Hermon, fulfilled his commission punctually. +\v 5 The servants appointed for the purpose went out about evening and bound the hands of the miserable victims, and took other precautions for their security at night, thinking that the whole race would perish together. +\v 6 The heathen believed the Jews to be destitute of all protection, for chains bound them. +\v 7 They invoked the Almighty Lord, and ceaselessly implored with tears their merciful God and Father, Ruler of all, Lord of every power, +\v 8 to overthrow the evil purpose which had gone out against them, and to deliver them by extraordinary manifestation from that death which was in store for them. +\v 9 Their earnest entreaty went up to heaven. +\v 10 Then Hermon, who had filled his merciless elephants with copious drinks of mixed wine and frankincense, came early to the palace to report on these preparations. +\v 11 He, however, who has sent his good creature sleep from all time by night or by day thus gratifying whom he wills, diffused a portion of it now upon the king. +\v 12 By this sweet and profound influence of the Lord, he was held fast, and thus his unjust purpose was quite frustrated, and his unflinching resolve greatly falsified. +\v 13 But the Jews, having escaped the hour which had been fixed, praised their holy God, and again prayed him who is easily reconciled to display the power of his powerful hand to the arrogant Gentiles. +\v 14 The middle of the tenth hour had nearly arrived, when the person who sent invitations, seeing the guests who were invited present, came and shook the king. +\v 15 He gained his attention with difficulty, and hinting that the mealtime was getting past, talked the matter over with him. +\v 16 The king listened to this, and then turning aside to his drinking, commanded the guests to sit down before him. +\v 17 This done, he asked them to enjoy themselves, and to indulge in mirth at this somewhat late hour of the banquet. +\v 18 Conversation grew on, and the king sent for Hermon, and inquired of him, with fierce denunciations, why the Jews had been allowed to outlive that day. +\v 19 Hermon explained that he had done his bidding over night; and in this he was confirmed by his friends. +\v 20 The king, then, with a barbarity exceeding that of Phalaris, said, “They might thank his sleep of that day. Lose no time, and get ready the elephants against tomorrow, as you did before, for the destruction of these accursed Jews.” +\v 21 When the king said this, the company present were glad, and approved. Then each man went to his own home. +\v 22 They didn’t employ the night in sleep, but in contriving cruel mockeries for those deemed miserable. +\v 23 The morning cock had just crowed, and Hermon, having harnessed the brutes, was stimulating them in the great colonnade. +\v 24 The city crowds were collected together to see the hideous spectacle, and waited impatiently for the dawn. +\v 25 The Jews, breathless with momentary suspense, stretched out their hands and prayed the Greatest God, in mournful strains, again to help them speedily. +\v 26 The sun’s rays were not yet shining and the king was waiting for his friends when Hermon came to him, calling him out, and saying that his desires could now be realized. +\v 27 The king, receiving him, was astonished at his unusual invitation. Overwhelmed with a spirit of oblivion about everything, inquired about the object of this earnest preparation. +\v 28 But this was the working of that Almighty God who had made him forget all his purpose. +\v 29 Hermon and all his friends pointed out the preparation of the animals. They are ready, O king, according to your own strict injunction. +\v 30 The king was filled with fierce anger at these words, for, by the Providence of God regarding these things, his mind had become entirely confused. He looked hard at Hermon, and threatened him as follows: +\v 31 “Your parents, or your children, were they here, would have given a large meal to these wild animals, not these innocent Jews, who have loyally served me and my forefathers. +\v 32 Had it not been for familiar friendship, and the claims of your office, your life should have gone for theirs.” +\p +\v 33 Hermon, being threatened in this unexpected and alarming manner, was troubled in his eyes, and his face fell. +\v 34 The friends, too, stole out one by one, and dismissed the assembled multitudes to their respective occupations. +\v 35 The Jews, having heard of these events, praised the glorious God and King of kings, because they had obtained this help, too, from him. +\v 36 Now the king arranged another banquet in the same way, and proclaimed an invitation to mirth. +\v 37 He summoned Hermon to his presence, and said, with threats, “How often, O wretch, must I repeat my orders to you about these same persons? +\v 38 Once more, arm the elephants for the extermination of the Jews tomorrow!” +\v 39 His kinsmen, who were reclining with him, wondered at his instability, and thus expressed themselves: +\v 40 “O king, how long do you test us, as of men bereft of reason? This is the third time that you have ordered their destruction. When the thing is to be done, you change your mind, and recall your instructions. +\v 41 Because of this, the feeling of expectation causes tumult in the city. It swarms with factions, and is continually on the point of being plundered.” +\p +\v 42 The king, just like another Phalaris, a prey to thoughtlessness, made no account of the changes which his own mind had undergone, issuing in the deliverance of the Jews. He swore a fruitless oath, and determined immediately to send them to hades, crushed by the knees and feet of the elephants. +\v 43 He would also invade Judea, level its towns with fire and the sword, destroy that temple which the heathen might not enter, and prevent sacrifices ever after being offered up there. +\v 44 Joyfully his friends broke up, together with his kinsmen; and, trusting in his determination, arranged their forces in guard at the most convenient places of the city. +\v 45 The master of the elephants urged the animals into an almost maniacal state, drenched them with incense and wine, and decked them with frightful devices. +\v 46 About early morning, when the city was filled with an immense number of people at the hippodrome, he entered the palace and called the king to the business in hand. +\v 47 The king’s heart teemed with impious rage; and he rushed forth with the mass, along with the elephants. With unsoftened feelings and pitiless eyes, he longed to gaze at the hard and wretched doom of the previously mentioned Jews. +\v 48 But the Jews, when the elephants went out at the gate, followed by the armed force. When they saw the dust raised by the throng, and heard the loud cries of the crowd, +\v 49 thought that they had come to the last moment of their lives, to the end of what they had tremblingly expected. They gave way, therefore, to lamentations and moans. They kissed each other. Those nearest of kin to each other hung around one another’s necks—fathers hugging their sons and mothers their daughters. Other women held their infants to their breasts, which drew what seemed their last milk. +\v 50 Nevertheless, when they reflected upon the help previously granted them from heaven, they prostrated themselves with one accord, removed even the sucking children from the breasts, and +\v 51 sent up an exceedingly great cry asking the Lord of all power to reveal himself, and have mercy upon those who now lay at the gates of hades. +\c 6 +\p +\v 1 Then Eleazar, an illustrious priest of the country, who had attained to length of days, and whose life had been adorned with virtue, caused the elders who were around him to cease to cry out to the holy God, and prayed this: +\v 2 “O king, mighty in power, most high, Almighty God, who regulates the whole creation with your tender mercy, +\v 3 look at the seed of Abraham, at the children of the sanctified Jacob, your sanctified inheritance, O Father, now being wrongfully destroyed as foreigners in a foreign land. +\v 4 You destroyed Pharaoh with his army of chariots when that lord of this same Egypt was uplifted with lawless daring and loud-sounding tongue. Shedding the beams of your mercy upon the race of Israel, you overwhelmed him and his proud army. +\v 5 When Sennacherim, the grievous king of the Assyrians, exulting in his countless army, had subdued the whole land with his spear and was lifting himself against your holy city with boastings grievous to be endured, you, O Lord, demolished him and displayed your might to many nations. +\v 6 When the three friends in the land of Babylon of their own will exposed their lives to the fire rather than serve vain things, you sent a moist coolness through the fiery furnace, and brought the fire on all their adversaries. +\v 7 It was you who, when Daniel was hurled, through slander and envy, as a prey to lions down below, brought him back again unharmed to light. +\v 8 When Jonah was pining away in the belly of the sea-born monster, you looked at him, O Father, and recovered him to the sight of his own. +\v 9 Now, you who hate insolence, you who abound in mercy, you who are the protector of all things, appear quickly to those of the race of Israel, who are insulted by abhorred, lawless gentiles. +\v 10 If our life during our exile has been stained with iniquity, deliver us from the hand of the enemy, and destroy us, O Lord, by the death which you prefer. +\v 11 Don’t let the vain-minded congratulate vain idols at the destruction of your beloved, saying, ‘Their god didn’t deliver them.’ +\v 12 You who are All-powerful and Almighty, O Eternal One, behold! Have mercy on us who are being withdrawn from life, like traitors, by the unreasoning insolence of lawless men. +\v 13 Let the heathen cower before your invincible might today, O glorious One, who have all power to save the race of Jacob. +\v 14 The whole band of infants and their parents ask you with tears. +\v 15 Let it be shown to all the nations that you are with us, O Lord, and have not turned your face away from us, but as you said that you would not forget them even in the land of their enemies, so fulfill this saying, O Lord.” +\p +\v 16 Now, at the time that Eleazar had ended his prayer, the king came along to the hippodrome with the wild animals, and with his tumultuous power. +\v 17 When the Jews saw this, they uttered a loud cry to heaven so that the adjacent valleys resounded and caused an irrepressible lamentation throughout the army. +\v 18 Then the all-glorious, all-powerful, and true God, displayed his holy countenance, and opened the gates of heaven, from which two angels, dreadful of form, came down and were visible to all but the Jews. +\v 19 They stood opposite, and filled the enemies’ army with confusion and cowardice, and bound them with immoveable shackles. +\v 20 A cold shudder came over the person of the king, and oblivion paralyzed the vehemence of his spirit. +\v 21 They turned back the animals on the armed forces who followed them; and the animals trampled them and destroyed them. +\v 22 The king’s wrath was converted into compassion; and he wept at the things he had devised. +\v 23 For when he heard the cry, and saw them all on the verge of destruction, with tears he angrily threatened his friends, saying, +\v 24 “You have governed badly, and have exceeded tyrants in cruelty. You have labored to deprive me, your benefactor, at once of my dominion and my life, by secretly devising measures injurious to the kingdom. +\v 25 Who has gathered here, unreasonably removing each from his home, those who, in fidelity to us, had held the fortresses of the country? +\v 26 Who has consigned to unmerited punishments those who in good will toward us from the beginning have in all things surpassed all nations, and who often have engaged in the most dangerous undertakings? +\v 27 Loose, loose the unjust bonds! Send them to their homes in peace, begging pardon for what has been done. +\v 28 Release the sons of the almighty living God of heaven, who from our ancestors’ times until now has granted a glorious and uninterrupted prosperity to our affairs.” +\v 29 He said these things, and they, released the same moment, having now escaped death, praised God their holy Savior. +\p +\v 30 The king then departed to the city, and called his financier to himself, and asked him provide a seven days’ quantity of wine and other materials for feasting for the Jews. He decided that they should keep a cheerful festival of deliverance in the very place in which they expected to meet with their destruction. +\v 31 Then they who were before despised and near to hades, yes, rather advanced into it, partook of the cup of salvation, instead of a grievous and lamentable death. Full of exultation, they apportioned the place intended for their fall and burial into banqueting booths. +\v 32 Ceasing their miserable strain of woe, they took up the subject of their fatherland, singing in praise to God their wonder-working Savior. All groans and all wailing were laid aside. They formed dances as a sign of peaceful joy. +\v 33 So the king also collected a number of guests for the occasion, and returned unceasing thanks with much magnificence for the unexpected deliverance afforded him. +\v 34 Those who had marked them out as for death and for carrion, and had registered them with joy, howled aloud, and were clothed with shame, and had the fire of their rage ingloriously put out. +\v 35 But the Jews, as we just said, instituted a dance, and then gave themselves up to feasting, glad thanksgiving, and psalms. +\v 36 They made a public ordinance to commemorate these things for generations to come, as long as they should be sojourners. They thus established these days as days of mirth, not for the purpose of drinking or luxury, but because God had saved them. +\v 37 They requested the king to send them back to their homes. +\v 38 They were being enrolled from the twenty-fifth of Pachon to the fourth of Epiphi, a period of forty days. The measures taken for their destruction lasted from the fifth of Epiphi till the seventh, that is, three days. +\v 39 The Ruler over all during this time manifested his mercy gloriously, and delivered them all together unharmed. +\v 40 They feasted upon the king’s provision up to the fourteenth day, then asked to be sent away. +\v 41 The king commended them, and wrote the following letter, of magnanimous import for them, to the commanders of every city: +\c 7 +\p +\v 1 “King Ptolemy Philopator to the commanders throughout Egypt, and to all who are set over affairs, joy and strength. +\v 2 We, too, and our children are well. God has directed our affairs as we wish. +\v 3 Certain of our friends out of malice vehemently urged us to punish the Jews of our realm in a body, with the infliction of a monstrous punishment. +\v 4 They pretended that our affairs would never be in a good state till this took place. Such, they said, was the hatred borne by the Jews to all other people. +\v 5 They brought them fettered in grievous chains as slaves, no, as traitors. Without enquiry or examination they endeavored to annihilate them. They buckled themselves with a savage cruelty, worse than Scythian custom. +\v 6 For this cause we severely threatened them; yet, with the clemency which we usually extend to all men, we at length permitted them to live. Finding that the God of heaven cast a shield of protection over the Jews so as to preserve them, and that he fought for them as a father always fights for his sons, +\v 7 and taking into consideration their constancy and fidelity toward us and toward our ancestors, we have, as we ought, acquitted them of every sort of charge. +\v 8 We have dismissed them to their several homes, telling all men everywhere to do them no wrong, or unrighteously revile them about the past. +\v 9 For know this, that should we conceive any evil design, or in any way aggrieve them, we shall ever have as our adversary, not man, but the highest God, the ruler of all might. From Him there will be no escape, as the avenger of such deeds. Farewell.” +\p +\v 10 When they had received this letter, they didn’t hurry to depart immediately. They petitioned the king to be allowed to inflict fitting punishment upon those of their race who had willingly transgressed the holy god, and the law of God. +\v 11 They alleged that men who had for their bellies’ sake transgressed the ordinances of God, would never be faithful to the interests of the king. +\v 12 The king admitted the truth of this reasoning, and commended them. Full power was given them, without warrant or special commission, to destroy those who had transgressed the law of God boldly in every part of the king’s dominions. +\v 13 Their priests, then, as it was appropriate, saluted him with good wishes, and all the people echoed with the “Hallelujah!” Then they joyfully departed. +\v 14 Then they punished and shamefully destroyed every polluted Jew that fell in their way, +\v 15 slaying this way, in that day, more than three hundred men, and esteeming this destruction of the wicked a season of joy. +\v 16 They themselves having held closely to their God to death, and having enjoyed a full deliverance, departed from the city garlanded with sweet-flowered wreaths of every kind. Uttering exclamations of joy, with songs of praise, and melodious hymns, they thanked the God of their fathers, the eternal Savior of Israel. +\v 17 Having arrived at Ptolemais, called from the specialty of that district “Rose-bearing”, where the fleet, in accordance with the general wish, waited for them seven days, +\v 18 they partook of a banquet of deliverance, for the king generously granted them all the means of securing a return home. +\v 19 They were accordingly brought back in peace, while they gave utterance to appropriate thanks; and they determined to observe these days during their sojourn as days of joyfulness. +\v 20 These they registered as sacred upon a pillar, when they had dedicated the place of their festivity to be one of prayer. They departed unharmed, free, abundant in joy, preserved by the king’s command, by land, by sea, and by river, each to his own home. +\v 21 They had more weight than before among their enemies, and were honored and feared. No one in any way robbed them of their goods. +\v 22 Every man received back his own, according to inventory, those who had obtained their goods, giving them up with the greatest terror. For the greatest God made perfect wonders for their salvation. +\v 23 Blessed be the Redeemer of Israel forever! Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/58-2ESeng-web.usfm b/bibles/eng-web_usfm/58-2ESeng-web.usfm new file mode 100644 index 0000000..1564dbf --- /dev/null +++ b/bibles/eng-web_usfm/58-2ESeng-web.usfm @@ -0,0 +1,1155 @@ +\id 2ES - 2 Esdras +\h 2 Esdras +\toc1 The Second Book of Esdras +\toc2 2 Esdras +\toc3 2Es +\mt1 The Second Book of Esdras +\ip \bk The Second Book of Esdras\bk* is included in the Slavonic Bible as \bk 3 Esdras\bk*, but is not found in the Greek Septuagint. It is included in the Appendix to the Latin Vulgate Bible as \bk 4 Esdras\bk*. It is considered to be Apocrypha by most church traditions. It is preserved here for its supplementary historical value. +\c 1 +\p +\v 1 The second book of the prophet Esdras, the son of Saraias, the son of Azaraias, the son of Helkias, the son of Salemas, the son of Sadoc, the son of Ahitob, +\v 2 the son of Achias, the son of Phinees, the son of Heli, the son of Amarias, the son of Aziei, the son of Marimoth, the son of Arna, the son of Ozias, the son of Borith, the son of Abissei, the son of Phinees, the son of Eleazar, +\v 3 the son of Aaron, of the tribe of Levi, who was captive in the land of the Medes, in the reign of Artaxerxes king of the Persians. +\p +\v 4 The Lord’s word came to me, saying, +\v 5 “Go your way and show my people their sinful deeds, and their children their wickedness which they have done against me, that they may tell their children’s children, +\v 6 because the sins of their fathers have increased in them, for they have forgotten me, and have offered sacrifices to foreign gods. +\v 7 Didn’t I bring them out of the land of Egypt, out of the house of bondage? But they have provoked me to wrath and have despised my counsels. +\v 8 So pull out the hair of your head and cast all evils upon them, for they have not been obedient to my law, but they are a rebellious people. +\v 9 How long shall I endure them, to whom I have done so much good? +\v 10 I have overthrown many kings for their sakes. I have struck down Pharoah with his servants and all his army. +\v 11 I have destroyed all the nations before them. In the east, I have scattered the people of two provinces, even of Tyre and Sidon, and have slain all their adversaries. +\v 12 Speak therefore to them, saying: +\p +\v 13 “The Lord says, truly I brought you through the sea, and where there was no path I made highways for you. I gave you Moses for a leader and Aaron for a priest. +\v 14 I gave you light in a pillar of fire. I have done great wonders among you, yet you have forgotten me, says the Lord. +\p +\v 15 “The Lord Almighty says: The quails were for a token to you. I gave you a camp for your protection, but you complained there. +\v 16 You didn’t celebrate in my name for the destruction of your enemies, but even to this day you still complain. +\v 17 Where are the benefits that I have given you? When you were hungry and thirsty in the wilderness, didn’t you cry to me, +\v 18 saying, ‘Why have you brought us into this wilderness to kill us? It would have been better for us to have served the Egyptians than to die in this wilderness.’ +\v 19 I had pity on your mourning and gave you manna for food. You ate angels’ bread. +\v 20 When you were thirsty, didn’t I split the rock, and water flowed out in abundance? Because of the heat, I covered you with the leaves of the trees. +\v 21 I divided fruitful lands among you. I drove out the Canaanites, the Pherezites, and the Philistines before you. What more shall I do for you?” says the Lord. +\p +\v 22 The Lord Almighty says, “When you were in the wilderness, at the bitter stream, being thirsty and blaspheming my name, +\v 23 I gave you not fire for your blasphemies, but threw a tree in the water, and made the river sweet. +\v 24 What shall I do to you, O Jacob? You, Judah, would not obey me. I will turn myself to other nations, and I will give my name to them, that they may keep my statutes. +\v 25 Since you have forsaken me, I also will forsake you. When you ask me to be merciful to you, I will have no mercy upon you. +\v 26 Whenever you call upon me, I will not hear you, for you have defiled your hands with blood, and your feet are swift to commit murder. +\v 27 It is not as though you have forsaken me, but your own selves,” says the Lord. +\p +\v 28 The Lord Almighty says, “Haven’t I asked you as a father his sons, as a mother her daughters, and a nurse her young babies, +\v 29 that you would be my people, and I would be your God, that you would be my children, and I would be your father? +\v 30 I gathered you together, as a hen gathers her chicks under her wings. But now, what should I do to you? I will cast you out from my presence. +\v 31 When you offer burnt sacrifices to me, I will turn my face from you, for I have rejected your solemn feast days, your new moons, and your circumcisions of the flesh. +\v 32 I sent to you my servants the prophets, whom you have taken and slain, and torn their bodies in pieces, whose blood I will require from you,” says the Lord. +\p +\v 33 The Lord Almighty says, “Your house is desolate. I will cast you out as the wind blows stubble. +\v 34 Your children won’t be fruitful, for they have neglected my commandment to you, and done that which is evil before me. +\v 35 I will give your houses to a people that will come, which not having heard of me yet believe me. Those to whom I have shown no signs will do what I have commanded. +\v 36 They have seen no prophets, yet they will remember their former condition. +\v 37 I call to witness the gratitude of the people who will come, whose little ones rejoice with gladness. Although they see me not with bodily eyes, yet in spirit they will believe what I say.” +\p +\v 38 And now, father, behold with glory, and see the people that come from the east: +\v 39 to whom I will give for leaders, Abraham, Isaac, and Jacob, Oseas, Amos, and Micheas, Joel, Abdias, and Jonas, +\v 40 Nahum, and Abacuc, Sophonias, Aggaeus, Zachary, and Malachy, who is also called the Lord’s messenger. +\c 2 +\p +\v 1 The Lord says, “I brought this people out of bondage. I gave them my commandments by my servants the prophets, whom they would not listen to, but made my counsels void. +\v 2 The mother who bore them says to them, ‘Go your way, my children, for I am a widow and forsaken. +\v 3 I brought you up with gladness, and I have lost you with sorrow and heaviness, for you have sinned before the Lord God, and done that which is evil before me. +\v 4 But now what can I do for you? For I am a widow and forsaken. Go your way, my children, and ask for mercy from the Lord.’ +\v 5 As for me, O father, I call upon you for a witness in addition to the mother of these children, because they would not keep my covenant, +\v 6 that you may bring them to confusion, and their mother to ruin, that they may have no offspring. +\v 7 Let them be scattered abroad among the heathen. Let their names be blotted out of the earth, for they have despised my covenant. +\v 8 Woe to you, Assur, you who hide the unrighteous with you! You wicked nation, remember what I did to Sodom and Gomorrah, +\v 9 whose land lies in lumps of pitch and heaps of ashes. That is what I will also do to those who have not listened to me,” says the Lord Almighty. +\p +\v 10 The Lord says to Esdras, “Tell my people that I will give them the kingdom of Jerusalem, which I would have given to Israel. +\v 11 I will also take their glory back to myself, and give these the everlasting tabernacles which I had prepared for them. +\v 12 They will have the tree of life for fragrant perfume. They will neither labor nor be weary. +\v 13 Ask, and you will receive. Pray that your days may be few, that they may be shortened. The kingdom is already prepared for you. Watch! +\v 14 Call heaven and earth to witness. Call them to witness, for I have left out evil, and created the good, for I live, says the Lord. +\p +\v 15 “Mother, embrace your children. I will bring them out with gladness like a dove does. Establish their feet, for I have chosen you, says the Lord. +\v 16 I will raise those who are dead up again from their places, and bring them out from their tombs, for I recognize my name in them. +\v 17 Don’t be afraid, you mother of children, for I have chosen you, says the Lord. +\v 18 For your help, I will send my servants Esaias and Jeremy, after whose counsel I have sanctified and prepared for you twelve trees laden with various fruits, +\v 19 and as many springs flowing with milk and honey, and seven mighty mountains, on which roses and lilies grow, with which I will fill your children with joy. +\v 20 Do right to the widow. Secure justice for the fatherless. Give to the poor. Defend the orphan. Clothe the naked. +\v 21 Heal the broken and the weak. Don’t laugh a lame man to scorn. Defend the maimed. Let the blind man have a vision of my glory. +\v 22 Protect the old and young within your walls. +\v 23 Wherever you find the dead, set a sign upon them and commit them to the grave, and I will give you the first place in my resurrection. +\v 24 Stay still, my people, and take your rest, for your rest will come. +\v 25 Nourish your children, good nurse, and establish their feet. +\v 26 As for the servants whom I have given you, not one of them will perish, for I will require them from among your number. +\v 27 Don’t be anxious, for when the day of suffering and anguish comes, others will weep and be sorrowful, but you will rejoice and have abundance. +\v 28 The nations will envy you, but they will be able to do nothing against you, says the Lord. +\v 29 My hands will cover you, so that your children don’t see Gehenna.\f + \fr 2:29 \ft or, \fqa Hell. \f* +\v 30 Be joyful, mother, with your children, for I will deliver you, says the Lord. +\v 31 Remember your children who sleep, for I will bring them out of the secret places of the earth and show mercy to them, for I am merciful, says the Lord Almighty. +\v 32 Embrace your children until I come, and proclaim mercy to them, for my wells run over, and my grace won’t fail.” +\p +\v 33 I, Esdras, received a command from the Lord on Mount Horeb to go to Israel, but when I came to them, they rejected me and rejected the Lord’s commandment. +\v 34 Therefore I say to you, O nations that hear and understand, “Look for your shepherd. He will give you everlasting rest, for he is near at hand who will come at the end of the age. +\v 35 Be ready for the rewards of the kingdom, for the everlasting light will shine on you forevermore. +\v 36 Flee the shadow of this world, receive the joy of your glory. I call to witness my savior openly. +\v 37 Receive that which is given to you by the Lord, and be joyful, giving thanks to him who has called you to heavenly kingdoms. +\v 38 Arise and stand up, and see the number of those who have been sealed at the Lord’s feast. +\v 39 Those who withdrew themselves from the shadow of the world have received glorious garments from the Lord. +\v 40 Take again your full number, O Zion, and make up the reckoning of those of yours who are clothed in white, which have fulfilled the law of the Lord. +\v 41 The number of your children, whom you long for, is fulfilled. Ask the power of the Lord, that your people, which have been called from the beginning, may be made holy.” +\p +\v 42 I, Esdras, saw upon Mount Zion a great multitude, whom I could not number, and they all praised the Lord with songs. +\v 43 In the midst of them, there was a young man of a high stature, taller than all the rest, and upon every one of their heads he set crowns, and he was more exalted than they were. I marveled greatly at this. +\v 44 So I asked the angel, and said, “What are these, my Lord?” +\p +\v 45 He answered and said to me, “These are those who have put off the mortal clothing, and put on the immortal, and have confessed the name of God. Now they are crowned, and receive palms.” +\p +\v 46 Then said I to the angel, “Who is the young man who sets crowns on them, and gives them palms in their hands?” +\p +\v 47 So he answered and said to me, “He is the Son of God, whom they have confessed in the world.” +\p Then I began to praise those who stood so valiantly for the name of the Lord. +\p +\v 48 Then the angel said to me, “Go your way, and tell my people what kind of things, and how great wonders of the Lord God you have seen.” +\c 3 +\p +\v 1 In the thirtieth year after the ruin of the city, I Salathiel, also called Esdras, was in Babylon, and lay troubled upon my bed, and my thoughts came up over my heart, +\v 2 for I saw the desolation of Zion and the wealth of those who lived at Babylon. +\v 3 My spirit was very agitated, so that I began to speak words full of fear to the Most High, and said, +\v 4 “O sovereign Lord, didn’t you speak at the beginning when you formed the earth—and that yourself alone—and commanded the dust +\v 5 and it gave you Adam, a body without a soul? Yet it was the workmanship of your hands, and you breathed into him the breath of life, and he was made alive in your presence. +\v 6 You led him into the garden which your right hand planted before the earth appeared. +\v 7 You gave him your one commandment, which he transgressed, and immediately you appointed death for him and his descendants. From him were born nations, tribes, peoples, and kindred without number. +\v 8 Every nation walked after their own will, did ungodly things in your sight, and despised your commandments, and you didn’t hinder them. +\v 9 Nevertheless, again in process of time, you brought the flood on those who lived in the world and destroyed them. +\v 10 It came to pass that the same thing happened to them. Just as death came to Adam, so was the flood to these. +\v 11 Nevertheless, you left one of them, Noah with his household, and all the righteous men who descended from him. +\p +\v 12 “It came to pass that when those who lived upon the earth began to multiply, they also multiplied children, peoples, and many nations, and began again to be more ungodly than their ancestors. +\v 13 It came to pass, when they did wickedly before you, you chose one from among them, whose name was Abraham. +\v 14 You loved, and to him only you showed the end of the times secretly by night, +\v 15 and made an everlasting covenant with him, promising him that you would never forsake his descendants. To him, you gave Isaac, and to Isaac you gave Jacob and Esau. +\v 16 You set apart Jacob for yourself, but rejected Esau. Jacob became a great multitude. +\v 17 It came to pass that when you led his descendants out of Egypt, you brought them up to Mount Sinai. +\v 18 You bowed the heavens also, shook the earth, moved the whole world, made the depths tremble, and troubled the age. +\v 19 Your glory went through four gates, of fire, of earthquake, of wind, and of ice, that you might give the law to the descendants of Jacob, and the commandment to the descendants of Israel. +\p +\v 20 “Yet you didn’t take away from them their wicked heart, that your law might produce fruit in them. +\v 21 For the first Adam, burdened with a wicked heart transgressed and was overcome, as were all who are descended from him. +\v 22 Thus disease was made permanent. The law was in the heart of the people along with the wickedness of the root. So the good departed away and that which was wicked remained. +\v 23 So the times passed away, and the years were brought to an end. Then you raised up a servant, called David, +\v 24 whom you commanded to build a city to your name, and to offer burnt offerings to you in it from what is yours. +\v 25 When this was done many years, then those who inhabited the city did evil, +\v 26 in all things doing as Adam and all his generations had done, for they also had a wicked heart. +\v 27 So you gave your city over into the hands of your enemies. +\p +\v 28 “Then I said in my heart, ‘Are their deeds of those who inhabit Babylon any better? Is that why it gained dominion over Zion?’ +\v 29 For it came to pass when I came here, that I also saw impieties without number, and my soul saw many sinners in this thirtieth year, so that my heart failed me. +\v 30 For I have seen how you endure them sinning, and have spared those who act ungodly, and have destroyed your people, and have preserved your enemies; +\v 31 and you have not shown how your way may be comprehended. Are the deeds of Babylon better than those of Zion? +\v 32 Or is there any other nation that knows you beside Israel? Or what tribes have so believed your covenants as these tribes of Jacob? +\v 33 Yet their reward doesn’t appear, and their labor has no fruit, for I have gone here and there through the nations, and I see that they abound in wealth, and don’t think about your commandments. +\v 34 Weigh therefore our iniquities now in the balance, and theirs also who dwell in the world, and so will it be found which way the scale inclines. +\v 35 Or when was it that they who dwell on the earth have not sinned in your sight? Or what nation has kept your commandments so well? +\v 36 You will find some men by name who have kept your precepts, but you won’t find nations.” +\c 4 +\p +\v 1 The angel who was sent to me, whose name was Uriel, gave me an answer, +\v 2 and said to me, “Your understanding has utterly failed you regarding this world. Do you think you can comprehend the way of the Most High?” +\p +\v 3 Then I said, “Yes, my Lord.” +\p He answered me, “I have been sent to show you three ways, and to set before you three problems. +\v 4 If you can solve one for me, I also will show you the way that you desire to see, and I will teach you why the heart is wicked.” +\p +\v 5 I said, “Say on, my Lord.” +\p Then said he to me, “Go, weigh for me the weight of fire, or measure for me blast of wind, or call back for me the day that is past.” +\p +\v 6 Then answered I and said, “Who of the sons of men is able to do this, that you should ask me about such things?” +\p +\v 7 He said to me, “If I had asked you, ‘How many dwellings are there in the heart of the sea? Or how many springs are there at the fountain head of the deep? Or how many streams are above the firmament? Or which are the exits \f + \fr 4:7 \ft So the Syriac. The Latin omits \fqa of hell? or which are the paths.\f*of hell? Or which are the entrances of paradise?’ +\v 8 perhaps you would say to me, ‘I never went down into the deep, or as yet into hell, neither did I ever climb up into heaven.’ +\v 9 Nevertheless now I have only asked you about the fire, wind, and the day, things which you have experienced, and from which you can’t be separated, and yet you have given me no answer about them. ” +\p +\v 10 He said moreover to me, “You can’t understand your own things that you grew up with. +\v 11 How then can your mind comprehend the way of the Most High? How can he who is already worn out with the corrupted world understand incorruption?” +\p \f + \fr 4:11 \ft So the Syriac and Aethiopic. The Latin is corrupt.\f*When I heard these things, I fell on my face +\v 12 and said to him, “It would have been better if we weren’t here at all, than that we should come here and live in the midst of ungodliness, and suffer, and not know why.” +\p +\v 13 He answered me, and said, \f + \fr 4:13 \ft So the Oriental versions. The Latin is corrupt. See Judges 9:8. \f*“A forest of the trees of the field went out, and took counsel together, +\v 14 and said, ‘Come! Let’s go and make war against the sea, that it may depart away before us, and that we may make ourselves more forests.’ +\v 15 The waves of the sea also in like manner took counsel together, and said, ‘Come! Let’s go up and subdue the forest of the plain, that there also we may gain more territory.’ +\v 16 The counsel of the wood was in vain, for the fire came and consumed it. +\v 17 Likewise also the counsel of the waves of the sea, for the sand stood up and stopped them. +\v 18 If you were judge now between these two, which would you justify, or which would you condemn?” +\p +\v 19 I answered and said, “It is a foolish counsel that they both have taken, for the ground is given to the wood, and the place of the sea is given to bear its waves.” +\p +\v 20 Then answered he me, and said, “You have given a right judgment. Why don’t you judge your own case? +\v 21 For just as the ground is given to the wood, and the sea to its waves, even so those who dwell upon the earth may understand nothing but what is upon the earth. Only he who dwells above the heavens understands the things that are above the height of the heavens.” +\p +\v 22 Then answered I and said, “I beg you, O Lord, why has the power of understanding been given to me? +\v 23 For it was not in my mind to be curious of the ways above, but of such things as pass by us daily, because Israel is given up as a reproach to the heathen. The people whom you have loved have been given over to ungodly nations. The law of our forefathers is made of no effect, and the written covenants are nowhere regarded. +\v 24 We pass away out of the world like locusts. Our life is like a vapor, and we aren’t worthy to obtain mercy. +\v 25 What will he then do for his name by which we are called? I have asked about these things.” +\p +\v 26 Then he answered me, and said, “If you are alive you will see, and if you live long, you will marvel, for the world hastens quickly to pass away. +\v 27 For it is not able to bear the things that are promised to the righteous in the times to come; for this world is full of sadness and infirmities. +\v 28 For the evil\f + \fr 4:28 \ft so the Syriac and Aethiopic.\f* about which you asked me has been sown, but its harvest hasn’t yet come. +\v 29 If therefore that which is sown isn’t reaped, and if the place where the evil is sown doesn’t pass away, the field where the good is sown won’t come. +\v 30 For a grain of evil seed was sown in the heart of Adam from the beginning, and how much wickedness it has produced to this time! How much more it will yet produce until the time of threshing comes! +\v 31 Ponder now by yourself, how much fruit of wickedness a grain of evil seed has produced. +\v 32 When the grains which are without number are sown, how great a threshing floor they will fill!” +\p +\v 33 Then I answered and said, \f + \fr 4:33 \ft So the chief oriental versions. \f*“How long? When will these things come to pass? Why are our years few and evil?” +\p +\v 34 He answered me, and said, “Don’t hurry faster than the Most High; for your haste is\f + \fr 4:34 \ft So the Syriac. The Latin is corrupt. \f* for your own self, but he who is above hurries on behalf of many. +\v 35 Didn’t the souls of the righteous ask question of these things in their chambers, saying, ‘How long \f + \fr 4:35 \ft So the Syriac. The Latin has \fqa shall I hope on this fashion? \f*will we be here? When does the fruit of the threshing floor come?’ +\v 36 To them, Jeremiel the archangel answered, ‘When the number is fulfilled of those who are like you. For he has weighed the world in the balance. +\v 37 By measure, he has measured the times. By number, he has counted the seasons. He won’t \f + \fr 4:37 \ft Syr. \fqa rest. \f*move or stir them until that measure is fulfilled.’” +\p +\v 38 Then I answered, “O sovereign Lord, all of us are full of ungodliness. +\v 39 Perhaps it is for our sakes that the threshing time of the righteous is kept back—because of the sins of those who dwell on the earth.” +\p +\v 40 So he answered me, “Go your way to a woman with child, and ask of her when she has fulfilled her nine months, if her womb may keep the baby any longer within her.” +\p +\v 41 Then I said, “No, Lord, that can it not.” +\p He said to me, “In Hades, the chambers of souls are like the womb. +\v 42 For just like a woman in labor hurries to escape the anguish of the labor pains, even so these places hurry to deliver those things that are committed to them from the beginning. +\v 43 Then you will be shown those things which you desire to see.” +\p +\v 44 Then I answered, “If I have found favor in your sight, and if it is possible, and if I am worthy, +\v 45 show me this also, whether there is more to come than is past, or whether the greater part has gone over us. +\v 46 For what is gone I know, but I don’t know what is to come.” +\p +\v 47 He said to me, “Stand up on my right side, and I will explain the parable to you.” +\p +\v 48 So I stood, looked, and saw a hot burning oven passed by before me. It happened that when the flame had gone by I looked, and saw that the smoke remained. +\v 49 After this, a watery cloud passed in front of me, and sent down much rain with a storm. When the stormy rain was past, the drops still remained in it.” +\p +\v 50 Then said he to me, “Consider with yourself; as the rain is more than the drops, and the fire is greater than the smoke, so the quantity which is past was far greater; but the drops and the smoke still remained.” +\p +\v 51 Then I prayed, and said, “Do you think that I will live until that time? Or who will be alive in those days?” +\p +\v 52 He answered me, “As for the signs you asked me about, I may tell you of them in part; but I wasn’t sent to tell you about your life, for I don’t know. +\c 5 +\p +\v 1 “Nevertheless, concerning the signs, behold, the days will come when those who dwell on earth will be taken \f + \fr 5:1 \ft So the syriac. \f*with great amazement, and the way of truth will be hidden, and the land will be barren of faith. +\v 2 Iniquity will be increased above what now you see, and beyond what you have heard long ago. +\v 3 The land that you now see ruling will be a trackless waste, and men will see it desolate. +\v 4 But if the Most High grants you to live, you will see what is after the third period will be troubled. The sun will suddenly shine in the night, and the moon in the day. +\v 5 Blood will drop out of wood, and the stone will utter its voice. The peoples will be troubled, and the stars will fall. +\v 6 He will rule whom those who dwell on the earth don’t expect, and the birds will fly away together. +\v 7 The Sodomite sea will cast out fish, and make a noise in the night, which many have not known; but all will hear its voice. +\v 8 There will also be chaos in many places. Fires will break out often, and the wild animals will change their places, and women will bring forth monsters. +\v 9 Salt waters will be found in the sweet, and all friends will destroy one another. Then reason will hide itself, and understanding withdraw itself into its chamber. +\v 10 It will be sought by many, and won’t be found. Unrighteousness and lack of restraint will be multiplied on earth. +\v 11 One country will ask another, ‘Has righteousness, or a man that does righteousness, gone through you?’ And it will say, ‘No.’ +\v 12 It will come to pass at that time that men will hope, but won’t obtain. They will labor, but their ways won’t prosper. +\v 13 I am permitted to show you such signs. If you will pray again, and weep as now, and fast seven days, you will hear yet greater things than these.” +\p +\v 14 Then I woke up, and an extreme trembling went through my body, and my mind was so troubled that it fainted. +\v 15 So the angel who had come to talk with me held me, comforted me, and set me on my feet. +\p +\v 16 In the second night, it came to pass that \f + \fr 5:16 \ft The Syriac has \fqa Psaltiel. \f*Phaltiel the captain of the people came to me, saying, “Where have you been? Why is your face sad? +\v 17 Or don’t you know that Israel is committed to you in the land of their captivity? +\v 18 Get up then, and eat some bread, and don’t forsake us, like a shepherd who leaves the flock in the power of cruel wolves.” +\p +\v 19 Then said I to him, “Go away from me and don’t come near me for seven days, and then you shall come to me.” He heard what I said and left me. +\p +\v 20 So I fasted seven days, mourning and weeping, like Uriel the angel had commanded me. +\v 21 After seven days, the thoughts of my heart were very grievous to me again, +\v 22 and my soul recovered the spirit of understanding, and I began to speak words before the Most High again. +\v 23 I said, “O sovereign Lord of all the woods of the earth, and of all the trees thereof, you have chosen one vine for yourself. +\v 24 Of all the lands of the world you have chosen one \f + \fr 5:24 \ft After the Oriental versions. The Latin has \fqa pit. \f*country for yourself. Of all the flowers of the world, you have chosen one lily for yourself. +\v 25 Of all the depths of the sea, you have filled one river for yourself. Of all built cities, you have consecrated Zion for yourself. +\v 26 Of all the birds that are created you have named for yourself one dove. Of all the livestock that have been made, you have provided for yourself one sheep. +\v 27 Among all the multitudes of peoples you have gotten yourself one people. To this people, whom you loved, you gave a law that is approved by all. +\v 28 Now, O Lord, why have you given this one people over to many, and \f + \fr 5:28 \ft After the Oriental versions. The Latin reads \fqa have prepared.\f*have dishonored the one root above others, and have scattered your only one among many? +\v 29 Those who opposed your promises have trampled down those who believed your covenants. +\v 30 If you really do hate your people so much, they should be punished with your own hands.” +\p +\v 31 Now when I had spoken these words, the angel that came to me the night before was sent to me, +\v 32 and said to me, “Hear me, and I will instruct you. Listen to me, and I will tell you more.” +\p +\v 33 I said, “Speak on, my Lord.” +\p Then said he to me, “You are very troubled in mind for Israel’s sake. Do you love that people more than he who made them?” +\p +\v 34 I said, “No, Lord; but I have spoken out of grief; for my heart is in agony every hour while I labor to comprehend the way of the Most High, and to seek out part of his judgment.” +\p +\v 35 He said to me, “You can’t.” +\p And I said, “Why, Lord? Why was I born? Why wasn’t my mother’s womb my grave, that I might not have seen the travail of Jacob, and the wearisome toil of the people of Israel?” +\p +\v 36 He said to me, “Count for me those who haven’t yet come. Gather together for me the drops that are scattered abroad, and make the withered flowers green again for me. +\v 37 Open for me the chambers that are closed, and bring out the winds for me that are shut up in them. Or show me the image of a voice. Then I will declare to you the travail that you asked to see.” +\p +\v 38 And I said, “O sovereign Lord, who may know these things except he who doesn’t have his dwelling with men? +\v 39 As for me, I lack wisdom. How can I then speak of these things you asked me about?” +\p +\v 40 Then said he to me, “Just as you can do none of these things that I have spoken of, even so you can’t find out my judgment, or the end of the love that I have promised to my people.” +\p +\v 41 I said, “But, behold, O Lord, you have made the promise to those who are alive at the end. What should they do who have been before us, or we ourselves, or those who will come after us?” +\p +\v 42 He said to me, “I will compare my judgment to a ring. Just as there is no slowness of those who are last, even so there is no swiftness of those who be first.” +\p +\v 43 So I answered, “Couldn’t you make them all at once that have been made, and that are now, and that are yet to come, that you might show your judgment sooner?” +\p +\v 44 Then he answered me, “The creature may not move faster than the creator, nor can the world hold them at once who will be created in it.” +\p +\v 45 And I said, “How have you said to your servant, that \f + \fr 5:45 \ft So the Syriac. \f*you will surely make alive at once the creature that you have created? \f + \fr 5:45 \ft The Latin omits \fqa If...alive at once. \f*If therefore they will be alive at once, and the creation will sustain them, even so it might now also support them to be present at once.” +\p +\v 46 And he said to me, “Ask the womb of a woman, and say to her, ‘If you bear ten children, why do you it at different times? Ask her therefore to give birth to ten children at once.” +\p +\v 47 I said, “She can’t, but must do it each in their own time.” +\p +\v 48 Then said he to me, “Even so, I have given the womb of the earth to those who are sown in it in their own times. +\v 49 For just as a young child may not give birth, neither she who has grown old any more, even so have I organized the world which I created.” +\p +\v 50 I asked, “Seeing that you have now shown me the way, I will speak before you. Is our mother, of whom you have told me, still young? Or does she now draw near to old age?” +\p +\v 51 He answered me, “Ask a woman who bears children, and she will tell you. +\v 52 Say to her, ‘Why aren’t they whom you have now brought forth like those who were before, but smaller in stature?’ +\v 53 She also will answer you, ‘Those who are born in the strength of youth are different from those who are born in the time of old age, when the womb fails.’ +\v 54 Consider therefore you also, how you are shorter than those who were before you. +\v 55 So are those who come after you smaller than you, as born of the creature which now begins to be old, and is past the strength of youth.” +\p +\v 56 Then I said, “Lord, I implore you, if I have found favor in your sight, show your servant by whom you visit your creation.” +\c 6 +\p +\v 1 He said to me, “In the beginning, when the earth was made, before the portals of the world were fixed and before the gatherings of the winds blew, +\v 2 before the voices of the thunder sounded and before the flashes of the lightning shone, before the foundations of paradise were laid, +\v 3 before the fair flowers were seen, before the powers of the earthquake were established, before the innumerable army of angels were gathered together, +\v 4 before the heights of the air were lifted up, before the measures of the firmament were named, before the footstool of Zion \f + \fr 6:4 \ft So the Syriac. \f*was established, +\v 5 before the present years were reckoned, before the imaginations of those who now sin were estranged, and before they were sealed who have gathered faith for a treasure— +\v 6 then I considered these things, and they all were made through me alone, and not through another; just as by me also they will be ended, and not by another.” +\p +\v 7 Then I answered, “What will be the dividing of the times? Or when will be the end of the first and the beginning of the age that follows?” +\p +\v 8 He said to me, “From Abraham to Isaac, because Jacob and Esau were born to him, for Jacob’s hand held Esau’s heel from the beginning. +\v 9 For Esau is the end of this age, and Jacob is the beginning of the one that follows. +\v 10 \f + \fr 6:10 \ft So the Syriac, etc. The Latin is defective. \f*The beginning of a man is his hand, and the end of a man is his heel. Seek nothing else between the heel and the hand, Esdras!” +\p +\v 11 Then I answered, “O sovereign Lord, if I have found favor in your sight, +\v 12 I beg you, show your servant the end of your signs which you showed me part on a previous night.” +\p +\v 13 So he answered, “Stand up upon your feet, and you will hear a mighty sounding voice. +\v 14 If the place you stand on is greatly moved +\v 15 when it speaks don’t be afraid, for the word is of the end, and the foundations of the earth will understand +\v 16 that the speech is about them. They will tremble and be moved, for they know that their end must be changed.” +\p +\v 17 It happened that when I had heard it, I stood up on my feet, and listened, and, behold, there was a voice that spoke, and its sound was like the sound of many waters. +\v 18 It said, “Behold, the days come when I draw near to visit those who dwell upon the earth, +\v 19 and when I investigate those who have caused harm unjustly with their unrighteousness, and when the affliction of Zion is complete, +\v 20 and when the seal will be set on the age that is to pass away, then I will show these signs: the books will be opened before the firmament, and all will see together. +\v 21 The children a year old will speak with their voices. The women with child will deliver premature children at three or four months, and they will live and dance. +\v 22 Suddenly the sown places will appear unsown. The full storehouses will suddenly be found empty. +\v 23 The trumpet will give a sound which when every man hears, they will suddenly be afraid. +\v 24 At that time friends will make war against one another like enemies. The earth will stand in fear with those who dwell in it. The springs of the fountains will stand still, so that for three hours they won’t flow. +\p +\v 25 “It will be that whoever remains after all these things that I have told you of, he will be saved and will see my salvation, and the end of my world. +\v 26 They will see the men who have been taken up, who have not tasted death from their birth. The heart of the inhabitants will be changed and turned into a different spirit. +\v 27 For evil will be blotted out and deceit will be quenched. +\v 28 Faith will flourish. Corruption will be overcome, and the truth, which has been so long without fruit, will be declared.” +\p +\v 29 When he talked with me, behold, little by little, the place I stood on \f + \fr 6:29 \ft After the Oriental versions. The Latin is corrupt. \f*rocked back and forth. +\v 30 He said to me, “I came to show you these things \f + \fr 6:30 \ft So the Syriac. The Latin is corrupt. \f*tonight. +\v 31 If therefore you will pray yet again, and fast seven more days, I will \f + \fr 6:31 \ft The Latin has \fqa tell you by day. \f*again tell you greater things than these. +\v 32 For your voice has surely been heard before the Most High. For the Mighty has seen your righteousness. He has also seen your purity, which you have maintained ever since your youth. +\v 33 Therefore he has sent me to show you all these things, and to say to you, ‘Believe, and don’t be afraid! +\v 34 Don’t be hasty to think vain things about the former times, that you may not hasten in the latter times.’” +\p +\v 35 It came to pass after this, that I wept again, and fasted seven days in like manner, that I might fulfill the three weeks which he told me. +\v 36 On the eighth night, my heart was troubled within me again, and I began to speak in the presence of the Most High. +\v 37 For my spirit was greatly aroused, and my soul was in distress. +\v 38 I said, “O Lord, truly you spoke at the beginning of the creation, on the first day, and said this: ‘Let heaven and earth be made,’ and your word perfected the work. +\v 39 Then the spirit was hovering, and darkness and silence were on every side. The sound of man’s voice was not yet there.\f + \fr 6:39 \ft The Latin adds \fqa from you.\f* +\v 40 Then you commanded a ray of light to be brought out of your treasuries, that your works might then appear. +\p +\v 41 “On the second day, again you made the spirit of the firmament and commanded it to divide and to separate the waters, that the one part might go up, and the other remain beneath. +\p +\v 42 “On the third day, you commanded that the waters should be gathered together in the seventh part of the earth. You dried up six parts and kept them, to the intent that of these some being both planted and tilled might serve before you. +\v 43 For as soon as your word went out, the work was done. +\v 44 Immediately, great and innumerable fruit grew, with many pleasant tastes, and flowers of inimitable color, and fragrances of most exquisite smell. This was done the third day. +\p +\v 45 “On the fourth day, you commanded that the sun should shine, the moon give its light, and the stars should be in their order; +\v 46 and gave them a command to serve mankind, who was to be made. +\p +\v 47 “On the fifth day, you said to the seventh part, where the water was gathered together, that it should produce living creatures, fowls and fishes; and so it came to pass +\v 48 that the mute and lifeless water produced living things as it was told, that the nations might therefore praise your wondrous works. +\p +\v 49 “Then you preserved two living creatures. The one you called Behemoth, and the other you called Leviathan. +\v 50 You separated the one from the other; for the seventh part, namely, where the water was gathered together, might not hold them both. +\v 51 To Behemoth, you gave one part, which was dried up on the third day, that he should dwell in it, in which are a thousand hills; +\v 52 but to Leviathan you gave the seventh part, namely, the watery part. You have kept them to be devoured by whom you wish, when you wish. +\p +\v 53 “But on the sixth day, you commanded the earth to produce before you cattle, animals, and creeping things. +\v 54 Over these, you ordained Adam as ruler over all the works that you have made. Of him came all of us, the people whom you have chosen. +\p +\v 55 “All this have I spoken before you, O Lord, because you have said that for our sakes you made \f + \fr 6:55 \ft So the Syriac. The Latin has \fqa the firstborn world. \f*this world. +\v 56 As for the other nations, which also come from Adam, you have said that they are nothing, and are like spittle. You have likened the abundance of them to a drop that falls from a bucket. +\v 57 Now, O Lord, behold these nations, which are reputed as nothing, being rulers over us and devouring us. +\v 58 But we your people, whom you have called your firstborn, your only children, and your fervent lover, are given into their hands. +\v 59 Now if the world is made for our sakes, why don’t we possess our world for an inheritance? How long will this endure?” +\c 7 +\p +\v 1 When I had finished speaking these words, the angel which had been sent to me the nights before was sent to me. +\v 2 He said to me, “Rise, Esdras, and hear the words that I have come to tell you.” +\p +\v 3 I said, “Speak on, my Lord.” +\p Then he said to me, “There is a sea set in a wide place, that it might be \f + \fr 7:3 \ft So the chief Oriental versions. The Latin MSS. have \fqa deep. \f*broad and vast, +\v 4 but its entrance is set in a narrow place so as to be like a river. +\v 5 Whoever desires to go into the sea to look at it, or to rule it, if he didn’t go through the narrow entrance, how could he come into the broad part? +\v 6 Another thing also: There is a city built and set in a plain country, and full of all good things, +\v 7 but its entrance is narrow, and is set in a dangerous place to fall, having fire on the right hand, and deep water on the left. +\v 8 There is one only path between them both, even between the fire and the water, so that only one person can go there at once. +\v 9 If this city is now given to a man for an inheritance, if the heir doesn’t pass the danger before him, how will he receive his inheritance?” +\p +\v 10 I said, “That is so, Lord.” +\p Then said he to me, “Even so also is Israel’s portion. +\v 11 I made the world for their sakes. What is now done was decreed when Adam transgressed my statutes. +\v 12 Then the entrances of this world were made narrow, sorrowful, and toilsome. They are but few and evil, full of perils, and involved in great toils. +\v 13 For the entrances of the greater world are wide and safe, and produce fruit of immortality. +\v 14 So if those who live don’t enter these difficult and vain things, they can never receive those that are reserved for them. +\v 15 Now therefore why are you disturbed, seeing you are but a corruptible man? Why are you moved, since you are mortal? +\v 16 Why haven’t you considered in your mind that which is to come, rather than that which is present?” +\p +\v 17 Then I answered and said, “O sovereign Lord, behold, you have ordained in your law that the righteous will inherit these things, but that the ungodly will perish. +\v 18 The righteous therefore will suffer difficult things, and hope for easier things, but those who have done wickedly have suffered the difficult things, and yet will not see the easier things.” +\p +\v 19 He said to me, “You are not a judge above God, neither do you have more understanding than the Most High. +\v 20 Yes, let many perish who now live, rather than that the law of God which is set before them be despised. +\v 21 For God strictly commanded those who came, even as they came, what they should do to live, and what they should observe to avoid punishment. +\v 22 Nevertheless, they weren’t obedient to him, but spoke against him and imagined for themselves vain things. +\v 23 They made cunning plans of wickedness, and said moreover of the Most High that he doesn’t exist, and they didn’t know his ways. +\v 24 They despised his law and denied his covenants. They haven’t been faithful to his statutes, and haven’t performed his works. +\v 25 Therefore, Esdras, for the empty are empty things, and for the full are the full things. +\v 26 For behold, the time will come, and it will be, when these signs of which I told you before will come to pass, that the bride will appear, even the city coming forth, and she will be seen who now is withdrawn from the earth. +\v 27 Whoever is delivered from the foretold evils will see my wonders. +\v 28 For my son Jesus will be revealed with those who are with him, and those who remain will rejoice four hundred years. +\v 29 After these years my son Christ\f + \fr 7:29 \ft “Christ” means “Anointed One”.\f* will die, along with all of those who have the breath of life\f + \fr 7:29 \ft Lat. \fqa man \f*. +\v 30 Then the world will be turned into the old silence seven days, like as in the first beginning, so that no human will remain. +\v 31 After seven days the world that is not yet awake will be raised up, and what is corruptible will die. +\v 32 The earth will restore those who are asleep in it, and the dust those who dwell in it in silence, and the \f + \fr 7:32 \ft Or, \fqa chambers \ft See 2 Esdras 4:35. \f*secret places will deliver those souls that were committed to them. +\v 33 The Most High will be revealed on the judgment seat, \f + \fr 7:33 \ft The Syriac adds \fqa and the end will come. \f*and compassion will pass away, and patience will be withdrawn. +\v 34 Only judgment will remain. Truth will stand. Faith will grow strong. +\v 35 Recompense will follow. The reward will be shown. Good deeds will awake, and wicked deeds won’t sleep.\f + \fr 7:35 \ft The passage from verse [36] to verse [105], formerly missing, has been restored to the text. See Preface, page ix. \f* +\v 36 The \f + \fr 7:36 \ft So the chief Oriental versions. The Latin MSS. have \fqa place. \f*pit of torment will appear, and near it will be the place of rest. The furnace of hell\f + \fr 7:36 \ft Lat. \fqa Gehenna. \f*will be shown, and near it the paradise of delight. +\v 37 Then the Most High will say to the nations that are raised from the dead, ‘Look and understand whom you have denied, whom you haven’t served, whose commandments you have despised. +\v 38 Look on this side and on that. Here is delight and rest, and there fire and torments.’ Thus \f + \fr 7:38 \ft So the chief Oriental versions. The Latin has \fqa will you speak. \f*he will speak to them in the day of judgment. +\v 39 This is a day that has neither sun, nor moon, nor stars, +\v 40 neither cloud, nor thunder, nor lightning, neither wind, nor water, nor air, neither darkness, nor evening, nor morning, +\v 41 neither summer, nor spring, nor heat, nor\f + \fr 7:41 \ft Or, \fqa storm \f* winter, neither frost, nor cold, nor hail, nor rain, nor dew, +\v 42 neither noon, nor night, nor dawn, neither shining, nor brightness, nor light, except only the splendor of the glory of the Most High, by which all will see the things that are set before them. +\v 43 It will endure as though it were a week of years. +\v 44 This is my judgment and its prescribed order; but I have only shown these things to you.” +\p +\v 45 I answered, “I said then, O Lord, and I say now: Blessed are those who are now alive and keep your commandments! +\v 46 But what about those for whom I prayed? For who is there of those who are alive who has not sinned, and who of the children of men hasn’t transgressed your covenant? +\v 47 Now I see that the world to come will bring delight to few, but torments to many. +\v 48 For an evil heart has grown up in us, which has led us astray from these commandments and has brought us into corruption and into the ways of death. It has shown us the paths of perdition and removed us far from life—and that, not a few only, but nearly all who have been created.” +\p +\v 49 He answered me, “Listen to me, and I will instruct you. I will admonish you yet again. +\v 50 For this reason, the Most High has not made one world, but two. +\v 51 For because you have said that the just are not many, but few, and the ungodly abound, hear the explanation. +\v 52 If you have just a few precious stones, will you add them to lead and clay?” +\p +\v 53 I said, “Lord, how could that be?” +\p +\v 54 He said to me, “Not only that, but ask the earth, and she will tell you. Defer to her, and she will declare it to you. +\v 55 Say to her, ‘You produce gold, silver, and brass, and also iron, lead, and clay; +\v 56 but silver is more abundant than gold, and brass than silver, and iron than brass, and lead than iron, and clay than lead.’ +\v 57 Judge therefore which things are precious and to be desired, what is abundant or what is rare?” +\p +\v 58 I said, “O sovereign Lord, that which is plentiful is of less worth, for that which is more rare is more precious.” +\p +\v 59 He answered me, “Weigh within yourself the things that you have thought, for he who has what is hard to get rejoices over him who has what is plentiful. +\v 60 So also is the judgment which I have promised; for I will rejoice over the few that will be saved, because these are those who have made my glory to prevail now, and through them, my name is now honored. +\v 61 I won’t grieve over the multitude of those who perish; for these are those who are now like mist, and have become like flame and smoke; they are set on fire and burn hotly, and are extinguished.” +\p +\v 62 I answered, “O earth, why have you produced, if the mind is made out of dust, like all other created things? +\v 63 For it would have been better that the dust itself had been unborn, so that the mind might not have been made from it. +\v 64 But now the mind grows with us, and because of this we are tormented, because we perish and we know it. +\v 65 Let the race of men lament and the animals of the field be glad. Let all who are born lament, but let the four-footed animals and the livestock rejoice. +\v 66 For it is far better with them than with us; for they don’t look forward to judgment, neither do they know of torments or of salvation promised to them after death. +\v 67 For what does it profit us, that we will be preserved alive, but yet be afflicted with torment? +\v 68 For all who are born are defiled with iniquities, and are full of sins and laden with transgressions. +\v 69 If after death we were not to come into judgment, perhaps it would have been better for us.” +\p +\v 70 He answered me, “When the Most High made the world and Adam and all those who came from him, he first prepared the judgment and the things that pertain to the judgment. +\v 71 Now understand from your own words, for you have said that the mind grows with us. +\v 72 They therefore who dwell on the earth will be tormented for this reason, that having understanding they have committed iniquity, and receiving commandments have not kept them, and having obtained a law they dealt unfaithfully with that which they received. +\v 73 What then will they have to say in the judgment, or how will they answer in the last times? +\v 74 For how long a time has the Most High been patient with those who inhabit the world, and not for their sakes, but because of the times which he has foreordained!” +\p +\v 75 I answered, “If I have found grace in your sight, O Lord, show this also to your servant, whether after death, even now when every one of us gives up his soul, we will be kept in rest until those times come, in which you renew the creation, or whether we will be tormented immediately.” +\p +\v 76 He answered me, “I will show you this also; but don’t join yourself with those who are scorners, nor count yourself with those who are tormented. +\v 77 For you have a treasure of works laid up with the Most High, but it won’t be shown you until the last times. +\v 78 For concerning death the teaching is: When the decisive sentence has gone out from the Most High that a man shall die, as the spirit leaves the body to return again to him who gave it, it adores the glory of the Most High first of all. +\v 79 And if it is one of those who have been scorners and have not kept the way of the Most High, and that have despised his law, and who hate those who fear God, +\v 80 these spirits won’t enter into habitations, but will wander and be in torments immediately, ever grieving and sad, in seven ways. +\v 81 The first way, because they have despised the law of the Most High. +\v 82 The second way, because they can’t now make a good repentance that they may live. +\v 83 The third way, they will see the reward laid up for those who have believed the covenants of the Most High. +\v 84 The fourth way, they will consider the torment laid up for themselves in the last days. +\v 85 The fifth way, they will see the dwelling places of the others guarded by angels, with great quietness. +\v 86 The sixth way, they will see how immediately some of them will pass into torment. +\v 87 The seventh way, which is more grievous than all the aforesaid ways, because they will pine away in confusion and be consumed with shame, and will be withered up by fears, seeing the glory of the Most High before whom they have sinned while living, and before whom they will be judged in the last times. +\p +\v 88 “Now this is the order of those who have kept the ways of the Most High, when they will be separated from their mortal body. +\v 89 In the time that they lived in it, they painfully served the Most High, and were in jeopardy every hour, that they might keep the law of the lawgiver perfectly. +\v 90 Therefore this is the teaching concerning them: +\v 91 First of all they will see with great joy the glory of him who takes them up, for they will have rest in seven orders. +\v 92 The first order, because they have labored with great effort to overcome the evil thought which was fashioned together with them, that it might not lead them astray from life into death. +\v 93 The second order, because they see the perplexity in which the souls of the ungodly wander, and the punishment that awaits them. +\v 94 The third order, they see the testimony which he who fashioned them gives concerning them, that while they lived they kept the law which was given them in trust. +\v 95 The fourth order, they understand the rest which, being gathered in their chambers, they now enjoy with great quietness, guarded by angels, and the glory that awaits them in the last days. +\v 96 The fifth order, they rejoice that they have now escaped from that which is corruptible, and that they will inherit that which is to come, while they see in addition the difficulty and the pain from which they have been delivered, and the spacious liberty which they will receive with joy and immortality. +\v 97 The sixth order, when it is shown to them how their face will shine like the sun, and how they will be made like the light of the stars, being incorruptible from then on. +\v 98 The seventh order, which is greater than all the previously mentioned orders, because they will rejoice with confidence, and because they will be bold without confusion, and will be glad without fear, for they hurry to see the face of him whom in their lifetime they served, and from whom they will receive their reward in glory. +\v 99 This is the order of the souls of the just, as from henceforth is announced to them. Previously mentioned are the ways of torture which those who would not give heed will suffer from after this.” +\p +\v 100 I answered, “Will time therefore be given to the souls after they are separated from the bodies, that they may see what you have described to me?” +\p +\v 101 He said, “Their freedom will be for seven days, that for seven days they may see the things you have been told, and afterwards they will be gathered together in their habitations.” +\p +\v 102 I answered, “If I have found favor in your sight, show further to me your servant whether in the day of judgment the just will be able to intercede for the ungodly or to entreat the Most High for them, +\v 103 whether fathers for children, or children for parents, or kindred for kindred, or kinsfolk for their next of kin, or friends for those who are most dear.” +\p +\v 104 He answered me, “Since you have found favor in my sight, I will show you this also. The day of judgment is\f + \fr 7:104 \ft The Latin has \fqa a bold day \f* a day of decision, and displays to all the seal of truth. Even as now a father doesn’t send his son, or a son his father, or a master his slave, or a friend him that is most dear, that in his place he may understand, or sleep, or eat, or be healed, +\v 105 so no one will ever pray for another in that day, neither will one lay a burden on another, for then everyone will each bear his own righteousness or unrighteousness.” +\p +\v 106 I answered, “How do we now find that first Abraham prayed for the people of Sodom, and Moses for the ancestors who sinned in the wilderness, +\v 107 and Joshua after him for Israel in the days of \x + \xo 7:107 \xt Joshua 7:1 \x*Achan, +\v 108 and Samuel \f + \fr 7:108 \ft So the Syriac and other versions. The Latin omits \fqa in the days of Saul. \f*in the days of Saul, and David for the plague, and Solomon for those who would worship in the sanctuary, +\v 109 and Elijah for those that received rain, and for the dead, that he might live, +\v 110 and Hezekiah for the people in the days of Sennacherib, and many others prayed for many? +\v 111 If therefore now, when corruption has grown and unrighteousness increased, the righteous have prayed for the ungodly, why will it not be so then also?” +\p +\v 112 He answered me, “This present world is not the end. The full glory doesn’t remain in it. Therefore those who were able prayed for the weak. +\v 113 But the day of judgment will be the end of this age, and the beginning of the immortality to come, in which corruption has passed away, +\v 114 intemperance is at an end, infidelity is cut off, but righteousness has grown, and truth has sprung up. +\v 115 Then no one will be able to have mercy on him who is condemned in judgment, nor to harm someone who is victorious.” +\p +\v 116 I answered then, “This is my first and last saying, that it would have been better if the earth had not produced Adam, or else, when it had produced him, to have restrained him from sinning. +\v 117 For what profit is it for all who are in this present time to live in heaviness, and after death to look for punishment? +\v 118 O Adam, what have you done? For though it was you who sinned, the evil hasn’t fallen on you alone, but on all of us who come from you. +\v 119 For what profit is it to us, if an immortal time is promised to us, but we have done deeds that bring death? +\v 120 And that there is promised us an everlasting hope, but we have most miserably failed? +\v 121 And that there are reserved habitations of health and safety, but we have lived wickedly? +\v 122 And that the glory of the Most High will defend those who have led a pure life, but we have walked in the most wicked ways of all? +\v 123 And that a paradise will be revealed, whose fruit endures without decay, in which is abundance and healing, but we won’t enter into it, +\v 124 for we have lived in perverse ways? +\v 125 And that the faces of those who have practiced self-control will shine more than the stars, but our faces will be blacker than darkness? +\v 126 For while we lived and committed iniquity, we didn’t consider what we would have to suffer after death.” +\p +\v 127 Then he answered, “This is the significance of the battle which humans born on the earth will fight: +\v 128 if they are overcome, they will suffer as you have said, but if they get the victory, they will receive the thing that I say. +\v 129 For this is the way that Moses spoke to the people while he lived, saying, ‘Choose life, that you may live!’ +\v 130 Nevertheless they didn’t believe him or the prophets after him, not even me, who have spoken to them. +\v 131 Therefore there won’t be such heaviness in their destruction, as there will be joy over those who are assured of salvation.” +\p +\v 132 Then I answered, “I know, Lord, that the Most High is now called merciful, in that he has mercy upon those who have not yet come into the world; +\v 133 and compassionate, in that he has compassion upon those who turn to his law; +\v 134 and patient, in that he is patient with those who have sinned, since they are his creatures; +\v 135 and bountiful, in that he is ready to give rather than to take away; +\v 136 and very merciful, in that he multiplies more and more mercies to those who are present, and who are past, and also to those who are to come— +\v 137 for if he wasn’t merciful, the world wouldn’t continue with those who dwell in it— +\v 138 and one who forgives, for if he didn’t forgive out of his goodness, that those who have committed iniquities might be relieved of them, not even one ten thousandth part of mankind would remain living; +\v 139 and a judge, for if he didn’t pardon those who were created by his word, and blot out the multitude of sins, +\v 140 there would perhaps be very few left of an innumerable multitude.” +\c 8 +\p +\v 1 He answered me, “The Most High has made this world for many, but the world to come for few. +\v 2 Now I will tell you a parable, Esdras. Just as when you ask the earth, it will say to you that it gives very much clay from which earthen vessels are made, but little dust that gold comes from. Even so is the course of the present world. +\v 3 Many have been created, but few will be saved.” +\p +\v 4 I answered, “Drink your fill of understanding then, O my soul, and let my heart devour wisdom. +\v 5 For you \f + \fr 8:5 \ft So the Syriac. The Latin is incorrect. \f*have come here apart from your will, and depart against your will, for you have only been given a short time to live. +\v 6 O Lord over us, grant to your servant that we may pray before you, and give us seed for our heart and cultivation for our understanding, that fruit may grow from it, by which everyone who is corrupt, who bears the \f + \fr 8:6 \ft So the Syriac. The Latin has \fqa place. \f*likeness of a man, may live. +\v 7 For you alone exist, and we all one workmanship of your hands, just as you have said. +\v 8 Because you give life to the body that is now fashioned in the womb, and give it members, your creature is preserved in fire and water, and your workmanship endures nine months as your creation which is created in it. +\v 9 But that which keeps and that which is kept will both be kept \f + \fr 8:9 \ft So the Syriac. The Latin is imperfect. \f*by your keeping. When the womb gives up again what has grown in it, +\v 10 you have commanded that out of the parts of the body, that is to say, out of the breasts, be given milk, which is the fruit of the breasts, +\v 11 that the body that is fashioned may be nourished for a time, and afterwards you guide it in your mercy. +\v 12 Yes, you have brought it up in your righteousness, nurtured it in your law, and corrected it with your judgment. +\v 13 You put it to death as your creation, and make it live as your work. +\v 14 If therefore you \f + \fr 8:14 \ft So the Syriac. The Latin is incorrect. \f*lightly and suddenly destroy him which with so great labor was fashioned by your commandment, to what purpose was he made? +\v 15 Now therefore I will speak. About man in general, you know best, but about your people for whose sake I am sorry, +\v 16 and for your inheritance, for whose cause I mourn, for Israel, for whom I am heavy, and for the seed of Jacob, for whose sake I am troubled, +\v 17 therefore I will begin to pray before you for myself and for them; for I see the failings of us who dwell in the land; +\v 18 but I have heard the swiftness of the judgment which is to come. +\v 19 Therefore hear my voice, and understand my saying, and I will speak before you.” +\p The beginning of the words of Esdras, before he was taken up. He said, +\v 20 “O Lord, you who remain forever, whose eyes are exalted, and whose chambers are in the air, +\v 21 whose throne is beyond measure, whose glory is beyond comprehension, before whom the army of angels stand with trembling, +\v 22 \f + \fr 8:22 \ft According to the chief Oriental versions. The Latin has, even they \fqa whose service takes the form of wind etc. \f*at whose bidding they are changed to wind and fire, whose word is sure, and sayings constant, whose ordinance is strong, and commandment fearful, +\v 23 whose look dries up the depths, and whose indignation makes the mountains to melt away, and whose truth bears witness— +\v 24 hear, O Lord, the prayer of your servant, and give ear to the petition of your handiwork. +\v 25 Attend to my words, for as long as I live, I will speak, and as long as I have understanding, I will answer. +\v 26 Don’t look at the sins of your people, but on those who have served you in truth. +\v 27 Don’t regard the doings of those who act wickedly, but of those who have kept your covenants in affliction. +\v 28 Don’t think about those who have lived wickedly before you, but remember those who have willingly known your fear. +\v 29 Let it not be your will to destroy those who have lived like cattle, but look at those who have \f + \fr 8:29 \ft The Syriac has \fqa received the brightness of your law. \f*clearly taught your law. +\v 30 Don’t be indignant at those who are deemed worse than animals, but love those who have always put their trust in your glory. +\v 31 For we and our fathers have \f + \fr 8:31 \ft So the Syriac and Aethiopic versions. \f*passed our lives in \f + \fr 8:31 \ft Lat. \fqa manners. \f*ways that bring death, but you are called merciful because of us sinners. +\v 32 For if you have a desire to have mercy upon us who have no works of righteousness, then you will be called merciful. +\v 33 For the just, which have many good works laid up with you, will be rewarded for their own deeds. +\v 34 For what is man, that you should take displeasure at him? Or what is a corruptible race, that you should be so bitter toward it? +\v 35 For in truth, there is no man among those who are born who has not done wickedly, and among those who have lived, there is none which have not done wrong. +\v 36 For in this, O Lord, your righteousness and your goodness will be declared, if you are merciful to those who have no store of good works.” +\p +\v 37 Then he answered me, “Some things you have spoken rightly, and it will happen according to your words. +\v 38 For indeed I will not think about the fashioning of those who have sinned, or about their death, their judgment, or their destruction; +\v 39 but I will rejoice over the creation of the righteous and their pilgrimage, their salvation, and the reward that they will have. +\v 40 Therefore as I have spoken, so it will be. +\v 41 For as the farmer sows many seeds in the ground, and plants many trees, and yet not all that is sown will \f + \fr 8:41 \ft Lat. \fqa be saved. \f*come up in due season, neither will all that is planted take root, even so those who are sown in the world will not all be saved.” +\p +\v 42 Then I answered, “If I have found favor, let me speak before you. +\v 43 If the farmer’s seed doesn’t come up because it hasn’t received your rain in due season, or if it is ruined by too much rain and perishes, +\v 44 likewise man, who is formed with your hands and is called your own image, because he is made like you, for whose sake you have formed all things, even him you have made like the farmer’s seed. +\v 45 Don’t be angry with us, but spare your people and have mercy upon your inheritance, for you have mercy upon your own creation.” +\p +\v 46 Then he answered me, “Things present are for those who live now, and things to come for those who will live hereafter. +\v 47 For you come far short of being able to love my creature more than I. But you have compared yourself to the unrighteous. Don’t do that! +\v 48 Yet in this will you be admirable to the Most High, +\v 49 in that you have humbled yourself, as it becomes you, and have not judged yourself among the righteous, so as to be much glorified. +\v 50 For many grievous miseries will fall on those who dwell in the world in the last times, because they have walked in great pride. +\v 51 But understand for yourself, and for those who inquire concerning the glory of those like you, +\v 52 because paradise is opened to you. The tree of life is planted. The time to come is prepared. Plenteousness is made ready. A city is built. Rest is \f + \fr 8:52 \ft The Syriac has \fqa established. \f*allowed. Goodness is perfected, and wisdom is perfected beforehand. +\v 53 The root of evil is sealed up from you. Weakness is done away from you, and \f + \fr 8:53 \ft After the chief Oriental versions. \f*death is hidden. Hell and corruption have fled into forgetfulness. +\v 54 Sorrows have passed away, and in the end, the treasure of immortality is shown. +\v 55 Therefore ask no more questions concerning the multitude of those who perish. +\v 56 For when they had received liberty, they despised the Most High, scorned his law, and forsook his ways. +\v 57 Moreover they have trodden down his righteous, +\v 58 and said in their heart that there is no God—even knowing that they must die. +\v 59 For as the things I have said will welcome you, so thirst and pain which are prepared for them. For the Most High didn’t intend that men should be destroyed, +\v 60 but those who are created have themselves defiled the name of him who made them, and were unthankful to him who prepared life for them. +\v 61 Therefore my judgment is now at hand, +\v 62 which I have not shown to all men, but to you, and a few like you.” +\p Then I answered, +\v 63 “Behold, O Lord, now you have shown me the multitude of the wonders which you will do in the last times, but you haven’t shown me when.” +\c 9 +\p +\v 1 He answered me, “Measure diligently within yourself. When you see that a certain part of the signs are past, which have been told you beforehand, +\v 2 then will you understand that it is the very time in which the Most High will visit the world which was made by him. +\v 3 When earthquakes, tumult of peoples, plans of nations, wavering of leaders, and confusion of princes are seen in the world, +\v 4 then will you understand that the Most High spoke of these things from the days that were of old, from the beginning. +\v 5 For just as with everything that is made in the world, the beginning \f + \fr 9:5 \ft So the Syriac. The Latin is corrupt. \f*is evident and the end manifest, +\v 6 so also are the times of the Most High: the beginnings are manifest in wonders and mighty works, and the end in effects and signs. +\v 7 Everyone who will be saved, and will be able to escape by his works, or by faith by which they have believed, +\v 8 will be preserved from the said perils, and will see my salvation in my land and within my borders, which I have sanctified for myself from the beginning. +\v 9 Then those who now have abused my ways will be amazed. Those who have cast them away despitefully will live in torments. +\v 10 For as many as in their life have received benefits, and yet have not known me, +\v 11 and as many as have scorned my law, while they still had liberty and when an opportunity to repent was open to them, didn’t understand, but despised \f + \fr 9:11 \ft Or, me \f*it, +\v 12 must know \f + \fr 9:12 \ft Or, me \f*it in torment after death. +\v 13 Therefore don’t be curious any longer how the ungodly will be punished, but inquire how the righteous will be saved, \f + \fr 9:13 \ft So the Syriac and other versions. The Latin has \fqa and whose... \ft created, \fqa and when. \f*those who the world belongs to, and for whom the world was created.” +\p +\v 14 I answered, +\v 15 “I have said before, and now speak, and will say it again hereafter, that there are more of those who perish than of those who will be saved, +\v 16 like a wave is greater than a drop.” +\p +\v 17 He answered me, “Just as the field is, so also the seed. As the flowers are, so are the colors. As the work is, so also is the \f + \fr 9:17 \ft So the Aethiopic and Arabic. The Latin has \fqa creation. \f*judgment on it. As is the farmer, so also is his threshing floor. For there was a time in the world +\v 18 when I was preparing for those who now live, before the world was made for them to dwell in. Then no one spoke against me, +\v 19 for \f + \fr 9:19 \ft So the Syriac. \f*no one existed. But now those who are created in this world that is prepared, both \f + \fr 9:19 \ft So the Syriac. \f*with a table that doesn’t fail and a law which is unsearchable, are corrupted in their ways. +\v 20 So I considered my world, and behold, it was destroyed, and my earth, and behold, it was in peril, because of the plans that had come into it. +\v 21 I saw and spared them, but not greatly, and saved myself a grape out of a cluster, and a plant out of \f + \fr 9:21 \ft So the Syriac and other versions. The Latin has \fqa great tribes. \f*a great forest. +\v 22 Let the multitude perish then, which were born in vain. Let my grape be saved, and my plant, for I have made them perfect with great labor. +\v 23 Nevertheless, if you will wait seven more days—however don’t fast in them, +\v 24 but go into a field of flowers, where no house is built, and eat only of the flowers of the field, and you shall taste no flesh, and shall drink no wine, but shall eat flowers only— +\v 25 and pray to the Most High continually, then I will come and talk with you.” +\p +\v 26 So I went my way, just as he commanded me, into the field which is called \f + \fr 9:26 \ft The Syriac and Aethiopic have \fqa Arphad. \f*Ardat. There I sat among the flowers, and ate of the herbs of the field, and this food satisfied me. +\v 27 It came to pass after seven days that I lay on the grass, and my heart was troubled again, like before. +\v 28 My mouth was opened, and I began to speak before the Lord Most High, and said, +\v 29 “O Lord, you showed yourself among us, to our fathers in the wilderness, when they went out of Egypt, and when they came into the wilderness, where no man treads and that bears no fruit. +\v 30 You said, ‘Hear me, O Israel. Heed my words, O seed of Jacob. +\v 31 For behold, I sow my law in you, and it will bring forth fruit in you, and you will be glorified in it forever.’ +\v 32 But our fathers, who received the law, didn’t keep it, and didn’t observe the statutes. The fruit of the law didn’t perish, for it couldn’t, because it was yours. +\v 33 Yet those who received it perished, because they didn’t keep the thing that was sown in them. +\v 34 Behold, it is a custom that when the ground has received seed, or the sea a ship, or any vessel food or drink, and when it comes to pass that that which is sown, or that which is launched, +\v 35 or the things which have been received, should come to an end, these come to an end, but the receptacles remain. Yet with us, it doesn’t happen that way. +\v 36 For we who have received the law will perish by sin, along with our heart which received it. +\v 37 Notwithstanding the law doesn’t perish, but remains in its honor.” +\p +\v 38 When I spoke these things in my heart, I looked around me with my eyes, and on my right side I saw a woman, and behold, she mourned and wept with a loud voice, and was much grieved in mind. Her clothes were torn, and she had ashes on her head. +\v 39 Then let I my thoughts go in which I was occupied, and turned myself to her, +\v 40 and said to her, “Why are you weeping? Why are you grieved in your mind?” +\p +\v 41 She said to me, “Leave me alone, my Lord, that I may weep for myself and add to my sorrow, for I am very troubled in my mind, and brought very low.” +\p +\v 42 I said to her, “What ails you? Tell me.” +\p +\v 43 She said to me, “I, your servant, was barren and had no child, though I had a husband thirty years. +\v 44 Every hour and every day these thirty years I made my prayer to the Most High day and night. +\v 45 It came to pass after thirty years that God heard me, your handmaid, and saw my low estate, and considered my trouble, and gave me a son. I rejoiced in him greatly, I and my husband, and all my \f + \fr 9:45 \ft Lat. \fqa townsmen. \f*neighbors. We gave great honor to the Mighty One. +\v 46 I nourished him with great care. +\v 47 So when he grew up, and I came to take him a wife, I made him a feast day. +\c 10 +\p +\v 1 “So it came to pass that when my son was entered into his wedding chamber, he fell down and died. +\v 2 Then we all put out the lamps, and all my \f + \fr 10:2 \ft Lat. \fqa townsmen. \f*neighbors rose up to comfort me. I remained quiet until the second day at night. +\v 3 It came to pass, when they had all stopped consoling me, encouraging me to be quiet, then rose I up by night, and fled, and came here into this field, as you see. +\v 4 Now I don’t intend to return into the city, but to stay here, and not eat or drink, but to continually mourn and fast until I die.” +\p +\v 5 Then I left the reflections I was engaged in, and answered her in anger, +\v 6 “You most foolish woman, don’t you see our mourning, and what has happened to us? +\v 7 For Zion the mother of us all is full of sorrow, and much humbled. +\v 8 \f + \fr 10:8 \ft See the Oriental versions. The Latin is corrupt. \f*It is right now to mourn deeply, since we all mourn, and to be sorrowful, since we are all in sorrow, but you are mourning for one son. +\v 9 Ask the earth, and she will tell you that it is she which ought to mourn for so many that grow upon her. +\v 10 For out of her, all had their beginnings, and others will come; and, behold, almost all of them walk into destruction, and the multitude of them is utterly doomed. +\v 11 Who then should mourn more, \f + \fr 10:11 \ft So the Syriac. \f*she who has lost so great a multitude, or you, who are grieved but for one? +\v 12 But if you say to me, ‘My lamentation is not like the earth’s, for I have lost the fruit of my womb, which I brought forth with pains, and bare with sorrows;’ +\v 13 but it is with the earth after the manner of the earth. The multitude present in it has gone as it came. +\v 14 Then say I to you, ‘Just as you have brought forth with sorrow, even so the earth also has given her fruit, namely, people, ever since the beginning to him who made her.’ +\v 15 Now therefore keep your sorrow to yourself, and bear with a good courage the adversities which have happened to you. +\v 16 For if you will acknowledge the decree of God to be just, you will both receive your son in time, and will be praised among women. +\v 17 Go your way then into the city to your husband.” +\p +\v 18 She said to me, “I won’t do that. I will not go into the city, but I will die here.” +\p +\v 19 So I proceeded to speak further to her, and said, +\v 20 “Don’t do so, but allow yourself to be persuaded by reason of the adversities of Zion; and be comforted by reason of the sorrow of Jerusalem. +\v 21 For you see that our sanctuary has been laid waste, our altar broken down, our temple destroyed, +\v 22 our lute has been brought low, our song is put to silence, our rejoicing is at an end, the light of our candlestick is put out, the ark of our covenant is plundered, our holy things are defiled, and the name that we are called is profaned. Our free men are despitefully treated, our priests are burned, our Levites have gone into captivity, our virgins are defiled and our wives ravished, our righteous men carried away, our little ones betrayed, our young men are brought into bondage, and our strong men have become weak. +\v 23 What is more than all, the seal of Zion has now lost the seal of her honor, and is delivered into the hands of those who hate us. +\v 24 Therefore shake off your great heaviness, and put away from yourself the multitude of sorrows, that the Mighty One may be merciful to you again, and the Most High may give you rest, even ease from your troubles.” +\p +\v 25 It came to pass while I was talking with her, behold, her face suddenly began to shine exceedingly, and her countenance glistered like lightning, so that I was very afraid of her, and wondered what this meant. +\v 26 Behold, suddenly she made a great and very fearful cry, so that the earth shook at the noise. +\v 27 I looked, and behold, the woman appeared to me no more, but there was a city built, and a place shown itself from large foundations. Then I was afraid, and cried with a loud voice, +\v 28 “Where is Uriel the angel, who came to me at the first? For he has caused me to fall into this great trance, and my end has turned into corruption, and my prayer a reproach!” +\p +\v 29 As I was speaking these words, behold, the angel who had come to me at first came to me, and he looked at me. +\v 30 Behold, I lay as one who had been dead, and my understanding was taken from me. He took me by the right hand, and comforted me, and set me on my feet, and said to me, +\v 31 “What ails you? Why are you so troubled? Why is your understanding and the thoughts of your heart troubled?” +\p +\v 32 I said, “Because you have forsaken me; yet I did according to your words, and went into the field, and, behold, I have seen, and still see, that which I am not able to explain.” +\p +\v 33 He said to me, “Stand up like a man, and I will instruct you.” +\p +\v 34 Then I said, “Speak on, my Lord; only don’t forsake me, lest I die before my time. +\v 35 For I have seen what I didn’t know, and hear what I don’t know. +\v 36 Or is my sense deceived, or my soul in a dream? +\v 37 Now therefore I beg you to explain to your servant what this vision means.” +\p +\v 38 He answered me, “Listen to me, and I will inform you, and tell you about the things you are afraid of, for the Most High has revealed many secret things to you. +\v 39 He has seen that your way is righteous, because you are continually sorry for your people, and make great lamentation for Zion. +\v 40 This therefore is the meaning of the vision. +\v 41 The woman who appeared to you a little while ago, whom you saw mourning, and began to comfort her, +\v 42 but now you no longer see the likeness of the woman, but a city under construction appeared to you, +\v 43 and she told you of the death of her son, this is the interpretation: +\v 44 This woman, whom you saw, is Zion,\f + \fr 10:44 \ft So the Syriac and other versions. The Latin is incorrect.\f* whom you now see as a city being built. +\v 45 She told you that she had been barren for thirty years because there were three thousand years in the world in which there was no offering as yet offered in her. +\v 46 And it came to pass after three thousand years that Solomon built the city and offered offerings. It was then that the barren bore a son. +\v 47 She told you that she nourished him with great care. That was the dwelling in Jerusalem. +\v 48 When she said to you, ‘My son died when he entered into his marriage chamber, and that misfortune befell her,’ this was the destruction that came to Jerusalem. +\v 49 Behold, you saw her likeness, how she mourned for her son, and you began to comfort her for what has happened to her. These were the things to be opened to you. +\v 50 For now the Most High, seeing that you are sincerely grieved and suffer from your whole heart for her, has shown you the brightness of her glory and the attractiveness of her beauty. +\v 51 Therefore I asked you to remain in the field where no house was built, +\v 52 for I knew that the Most High would show this to you. +\v 53 Therefore I commanded you to come into the field, where no foundation of any building was. +\v 54 For no human construction could stand in the place in which the city of the Most High was to be shown. +\v 55 Therefore don’t be afraid nor let your heart be terrified, but go your way in and see the beauty and greatness of the building, as much as your eyes are able to see. +\v 56 Then will you hear as much as your ears may comprehend. +\v 57 For you are more blessed than many, and are called by name to be with the Most High, like only a few. +\v 58 But tomorrow at night you shall remain here, +\v 59 and so the Most High will show you those visions in dreams of what the Most High will do to those who live on the earth in the last days.” +\p So I slept that night and another, as he commanded me. +\c 11 +\p +\v 1 It came to pass the second night that I saw a dream, and behold, an eagle which had twelve feathered wings and three heads came up from the sea. +\v 2 I saw, and behold, she spread her wings over all the earth, and all the winds of heaven blew on her, \f + \fr 11:2 \ft So the chief Oriental versions. The Latin has only \fqa and were gathered together. \f*and the clouds were gathered together against her. +\v 3 I saw, and out of her wings there grew other wings near them; and they became little, tiny wings. +\v 4 But her heads were at rest. The head in the middle was larger than the other heads, yet rested it with them. +\v 5 Moreover I saw, and behold, the eagle flew with her wings to reign over the earth and over those who dwell therein. +\v 6 I saw how all things under heaven were subject to her, and no one spoke against her—no, not one creature on earth. +\v 7 I saw, and behold, the eagle rose on her talons, and uttered her voice to her wings, saying, +\v 8 “Don’t all watch at the same time. Let each one sleep in his own place and watch in turn; +\v 9 but let the heads be preserved for the last.” +\p +\v 10 I saw, and behold, the voice didn’t come out of her heads, but from the midst of her body. +\v 11 I counted \f + \fr 11:11 \ft The Syriac has \fqa her little wings, and, etc. \f*her wings that were near the others, and behold, there were eight of them. +\v 12 I saw, and behold, on the right side one wing arose and reigned over all the earth. +\v 13 When it reigned, the end of it came, and it disappeared, so that its place appeared no more. The next wing rose up and reigned, and it ruled a long time. +\v 14 It happened that when it reigned, its end came also, so that it disappeared, like the first. +\v 15 Behold, a voice came to it, and said, +\v 16 “Listen, you who have ruled over the earth all this time! I proclaim this to you, before you disappear, +\v 17 none after you will rule as long as you, not even half as long.” +\p +\v 18 Then the third arose, and ruled as the others before, and it also disappeared. +\v 19 So it went with all the wings one after another, as every one ruled, and then disappeared. +\v 20 I saw, and behold, in process of time the \f + \fr 11:20 \ft The Syriac has \fqa little wings. \f*wings that followed were set up on the \f + \fr 11:20 \ft The Aethiopic has \fqa left. \f*right side, that they might rule also. Some of them ruled, but in a while they disappeared. +\v 21 Some of them also were set up, but didn’t rule. +\p +\v 22 After this I saw, and behold, the twelve wings disappeared, along with two of the little wings. +\v 23 There was no more left on the eagle’s body, except the three heads that rested, and six little wings. +\v 24 I saw, and behold, two little wings divided themselves from the six and remained under the head that was on the right side; but four remained in their place. +\v 25 I saw, and behold, these \f + \fr 11:25 \ft The Syriac has \fqa little wings. \f*under wings planned to set themselves up and to rule. +\v 26 I saw, and behold, there was one set up, but in a while it disappeared. +\v 27 A second also did so, and it disappeared faster than the first. +\v 28 I saw, and behold, the two that remained also planned between themselves to reign. +\v 29 While they thought about it, behold, one of the heads that were at rest awakened, the one that was in the middle, for that was greater than the two other heads. +\v 30 I saw how it joined the two other heads with it. +\v 31 Behold, the head turned with those who were with it, and ate the two \f + \fr 11:31 \ft The Syriac has \fqa little wings. \f*under wings that planned to reign. +\v 32 But this head held the whole earth in possession, and ruled over those who dwell in it with much oppression. It had stronger governance over the world than all the wings that had gone before. +\p +\v 33 After this I saw, and behold, the head also that was in the middle suddenly disappeared, like the wings. +\v 34 But the two heads remained, which also reigned the same way over the earth and over those who dwell in it. +\v 35 I saw, and behold, the head on the right side devoured the one that was on the left side. +\p +\v 36 Then I heard a voice, which said to me, “Look in front of you, and consider the thing that you see.” +\p +\v 37 I saw, and behold, something like a lion roused out of the woods roaring. I heard how he sent out a man’s voice to the eagle, and spoke, saying, +\v 38 “Listen and I will talk with you. The Most High will say to you, +\v 39 ‘Aren’t you the one that remains of the four animals whom I made to reign in my world, that the end of my times might come through them? +\v 40 The fourth came and overcame all the animals that were past, and ruled the world with great trembling, and the whole extent of the earth with grievous oppression. He lived on the earth such a long time with deceit. +\v 41 You have judged the earth, but not with truth. +\v 42 For you have afflicted the meek, you have hurt the peaceful, you have hated those who speak truth, you have loved liars, destroyed the dwellings of those who produced fruit, and threw down the walls of those who did you no harm. +\v 43 Your insolence has come up to the Most High, and your pride to the Mighty. +\v 44 The Most High also has looked at his times, and behold, they are ended, and his ages are fulfilled. +\v 45 Therefore appear no more, you eagle, nor your horrible wings, nor your evil little wings, nor your cruel heads, nor your hurtful talons, nor all your worthless body, +\v 46 that all the earth may be refreshed and relieved, being delivered from your violence, and that she may hope for the judgment and mercy of him who made her.’” +\c 12 +\p +\v 1 It came to pass, while the lion spoke these words to the eagle, I saw, +\v 2 and behold, the head that remained disappeared, and \f + \fr 12:2 \ft So the chief Oriental versions. \f*the two wings which went over to it arose and set themselves up to reign; and their kingdom was brief and full of uproar. +\v 3 I saw, and behold, they disappeared, and the whole body of the eagle was burned, so that the earth was in great fear. +\p Then I woke up because of great perplexity of mind and great fear, and said to my spirit, +\v 4 “Behold, you have done this to me, because you search out the ways of the Most High. +\v 5 Behold, I am still weary in my mind, and very weak in my spirit. There isn’t even a little strength in me, because of the great fear with which I was frightened tonight. +\v 6 Therefore I will now ask the Most High that he would strengthen me to the end.” +\p +\v 7 Then I said, “O sovereign Lord, if I have found favor in your sight, and if I am justified with you more than many others, and if my prayer has indeed come up before your face, +\v 8 strengthen me then, and show me, your servant, the interpretation and plain meaning of this fearful vision, that you may fully comfort my soul. +\v 9 For you have judged me worthy to show me the end of time and the last events of the times.” +\p +\v 10 He said to me, “This is the interpretation of this vision which you saw: +\v 11 The eagle, whom you saw come up from the sea, is the fourth kingdom which appeared in a vision to your brother Daniel. +\v 12 But it was not explained to him, as I now explain it to you or have explained it. +\v 13 Behold, the days come that a kingdom will rise up on earth, and it will be feared more than all the kingdoms that were before it. +\v 14 Twelve kings will reign in it, one after another. +\v 15 Of those, the second will begin to reign, and will reign a longer time than others of the twelve. +\v 16 This is the interpretation of the twelve wings which you saw. +\v 17 As for when you heard a voice which spoke, not going out from the heads, but from the midst of its body, this is the interpretation: +\v 18 That \f + \fr 12:18 \ft The Oriental versions have\fqa in the midst of. \f*after the time of that kingdom, there will arise no small contentions, and it will stand in peril of falling. Nevertheless, it won’t fall then, but will be restored again to its former power. +\v 19 You saw the eight under wings sticking to her wings. This is the interpretation: +\v 20 That in it eight kings will arise, whose times will be short and their years swift. +\v 21 Two of them will perish when the middle time approaches. Four will be kept for a while until the time of the ending of it will approach; but two will be kept to the end. +\v 22 You saw three heads resting. This is the interpretation: +\v 23 In its last days, the Most High will raise up three \f + \fr 12:23 \ft The Oriental versions have \fqa kings \f*kingdoms and renew many things in them. They will rule over the earth, +\v 24 and over those who dwell in it, with much oppression, more than all those who were before them. Therefore they are called the heads of the eagle. +\v 25 For these are those who will accomplish her wickedness, and who will finish her last actions. +\v 26 You saw that the great head disappeared. It signifies that one of them will die on his bed, and yet with pain. +\v 27 But for the two that remained, the sword will devour them. +\v 28 For the sword of the one will devour him that was with him, but he will also fall by the sword in the last days. +\v 29 You saw two under wings passing \f + \fr 12:29 \ft So the Syriac. The Latin has \fqa over the head. \f*over to the head that is on the right side. +\v 30 This is the interpretation: These are they whom the Most High has kept to his end. This is the brief reign that was full of trouble, as you saw. +\p +\v 31 “The lion, whom you saw rising up out of the forest, roaring, speaking to the eagle, and rebuking her for her unrighteousness, and all her words which you have heard, +\v 32 this is the anointed one, whom the Most High has kept to the end \f + \fr 12:32 \ft The words in brackets are added from the Syriac. \f*[of days, who will spring up out of the seed of David, and he will come and speak] to them and reprove them for their wickedness and unrighteousness, and will\f + \fr 12:32 \ft The Syriac has \fqa set in order.\f*heap up before them their contemptuous dealings. +\v 33 For at first he will set them alive in his judgment, and when he has reproved them, he will destroy them. +\v 34 For he will deliver the rest of my people with mercy, those who have been preserved throughout my borders, and he will make them joyful until the coming of the end, even the day of judgment, about which I have spoken to you from the beginning. +\v 35 This is the dream that you saw, and this is its interpretation. +\v 36 Only you have been worthy to know the secret of the Most High. +\v 37 Therefore write all these things that you have seen in a book, and put it in a secret place. +\v 38 You shall teach them to the wise of your people, whose hearts you know are able to comprehend and keep these secrets. +\v 39 But wait here yourself seven more days, that you may be shown whatever it pleases the Most High to show you.” Then he departed from me. +\p +\v 40 It came to pass, when all the people \f + \fr 12:40 \ft So the Syriac. The Latin has \fqa heard. \f*saw that the seven days were past, and I had not come again into the city, they all gathered together, from the least to the greatest, and came to me, and spoke to me, saying, +\v 41 “How have we offended you? What evil have we done against you, that you have utterly forsaken us, and sit in this place? +\v 42 For of all the prophets, only you are left to us, like a cluster of the vintage, and like a lamp in a dark place, and like a harbor for a ship saved from the tempest. +\v 43 Aren’t the evils which have come to us sufficient? +\v 44 If you will forsake us, how much better had it been for us if we also had been consumed in the burning of Zion! +\v 45 For we are not better than those who died there.” Then they wept with a loud voice. I answered them, +\v 46 “Take courage, O Israel! Don’t be sorrowful, you house of Jacob; +\v 47 for the Most High remembers you. The Mighty has not forgotten you \f + \fr 12:47 \ft So the Syriac. \f*forever. +\v 48 As for me, I have not forsaken you. I haven’t departed from you; but I have come into this place to pray for the desolation of Zion, and that I might seek mercy for the humiliation of your sanctuary. +\v 49 Now go your way, every man to his own house, and after these days I will come to you.” +\p +\v 50 So the people went their way into the city, as I told them to do. +\v 51 But I sat in the field seven days, as the angel commanded me. In those days, I ate only of the flowers of the field, and my food was from plants. +\c 13 +\p +\v 1 It came to pass after seven days, I dreamed a dream by night. +\v 2 Behold, a wind arose from the sea that moved all its waves. +\v 3 I saw, and behold, \f + \fr 13:3 \ft The words in brackets are added from the Syriac.\f*[this wind caused to come up from the midst of the sea something like the appearance of a man. I saw, and behold,] that man \f + \fr 13:3 \ft So the Syriac. The Latin has \fqa grew strong \f*flew with the clouds of heaven. When he turned his face to look, everything that he saw trembled. +\v 4 Whenever the voice went out of his mouth, all who heard his voice melted, like the \f + \fr 13:4 \ft So the Syriac and other Oriental versions.\f*wax melts when it feels the fire. +\p +\v 5 After this I saw, and behold, an innumerable multitude of people was gathered together from the four winds of heaven to make war against the man who came out of the sea. +\v 6 I saw, and behold, he carved himself a great mountain, and flew up onto it. +\v 7 I tried to see the region or place from which the mountain was carved, and I couldn’t. +\p +\v 8 After this I saw, and behold, all those who were gathered together to fight against him were very afraid, and yet they dared to fight. +\v 9 Behold, as he saw the assault of the multitude that came, he didn’t lift up his hand, or hold a spear or any weapon of war; +\v 10 but I saw only how he sent out of his mouth something like a flood of fire, and out of his lips a flaming breath, and out of his tongue he shot out a storm of sparks.\f + \fr 13:10 \ft So the Syriac and Arabic. \f* +\v 11 These were all mixed together: the flood of fire, the flaming breath, and the great storm, and fell upon the assault of the multitude which was prepared to fight, and burned up every one of them, so that all of a sudden an innumerable multitude was seen to be nothing but dust of ashes and smell of smoke. When I saw this, I was amazed. +\p +\v 12 Afterward, I saw the same man come down from the mountain, and call to himself another multitude which was peaceful. +\v 13 Many people came to him. Some of them were glad. Some were sorry. Some of them were bound, and some others brought some of those as offerings. Then through great fear I woke up and prayed to the Most High, and said, +\v 14 “You have shown your servant these wonders from the beginning, and have counted me worthy that you should receive my prayer. +\v 15 Now show me also the interpretation of this dream. +\v 16 For as I conceive in my understanding, woe to those who will be left in those days! Much more woe to those who are not left! +\v 17 For those who were not left will be in heaviness, +\v 18 understanding the things that are laid up in the latter days, but not attaining to them. +\v 19 But woe to them also who are left, because they will see great perils and much distress, like these dreams declare. +\v 20 Yet is it \f + \fr 13:20 \ft Lat. \fqa easier. \f*better for one to be in peril and to come into \f + \fr 13:20 \ft So the Syriac. \f*these things, than to pass away as a cloud out of the world, and not to see the things that \f + \fr 13:20 \ft So the Syriac. \f*will happen in the last days.” +\p He answered me, +\v 21 “I will tell you the interpretation of the vision, and I will also open to you the things about which you mentioned. +\v 22 You have spoken of those who are left behind. This is the interpretation: +\v 23 He that will \f + \fr 13:23 \ft So the Syriac. \f*endure the peril in that time will protect those who fall into danger, even those who have works and faith toward the Almighty. +\v 24 Know therefore that those who are left behind are more blessed than those who are dead. +\v 25 These are the interpretations of the vision: Whereas you saw a man coming up from the midst of the sea, +\v 26 this is he whom the Most High has been keeping for many ages, who by his own self will deliver his creation. He will direct those who are left behind. +\v 27 Whereas you saw that out of his mouth came wind, fire, and storm, +\v 28 and whereas he held neither spear, nor any weapon of war, but destroyed the assault of that multitude which came to fight against him, this is the interpretation: +\v 29 Behold, the days come when the Most High will begin to deliver those who are on the earth. +\v 30 Astonishment of mind will come upon those who dwell on the earth. +\v 31 One will plan to make war against another, city against city, place against place, people against people, and kingdom against kingdom. +\v 32 It will be, when these things come to pass, and the signs happen which I showed you before, then my Son will be revealed, whom you saw as a man ascending. +\v 33 It will be, when all the nations hear his voice, every man will leave his own land and the battle they have against one another. +\v 34 An innumerable multitude will be gathered together, as you saw, desiring to come and to fight against him. +\v 35 But he will stand on the top of Mount Zion. +\v 36 Zion will come, and will be shown to all men, being prepared and built, like you saw the mountain carved without hands. +\v 37 My Son will rebuke the nations which have come for their wickedness, with plagues that are like a storm, +\v 38 and will rebuke them to their face with their evil thoughts, and the torments with which they will be tormented, which are like a flame. He will destroy them without labor by the law, which is like fire. +\v 39 Whereas you saw that he gathered to himself another multitude that was peaceful, +\v 40 these are the ten tribes which were led away out of their own land in the time of Osea the king, whom Salmananser the king of the Assyrians led away captive, and he carried them beyond the River, and they were taken into another land. +\v 41 But they made this plan among themselves, that they would leave the multitude of the heathen, and go out into a more distant region, where mankind had never lived, +\v 42 that there they might keep their statutes which they had not kept in their own land. +\v 43 They entered by the narrow passages of the river Euphrates. +\v 44 For the Most High then did signs for them, and stopped the springs of the River until they had passed over. +\v 45 For through that country there was a long way to go, namely, of a year and a half. The same region is called \f + \fr 13:45 \ft That is, \fqa another land. \ft See Deuteronomy 29:28. \f*Arzareth. +\v 46 Then they lived there until the latter time. Now when they begin to come again, +\v 47 the Most High stops the springs of the River again, that they may go through. Therefore you saw the multitude gathered together with peace. +\v 48 But those who are left behind of your people are those who are found within my holy border. +\v 49 It will be therefore when he will destroy the multitude of the nations that are gathered together, he will defend the people who remain. +\v 50 Then he will show them very many wonders.” +\p +\v 51 Then I said, “O sovereign Lord, explain this to me: Why have I seen the man coming up from the midst of the sea?” +\p +\v 52 He said to me, as no one can explore or know what is in the depths of the sea, even so no man on earth can see my Son, or those who are with him, except in the time of \f + \fr 13:52 \ft So the Oriental versions. The Latin omits \fqa his. \f*his day. +\v 53 This is the interpretation of the dream which you saw, and for this only you are enlightened about this, +\v 54 for you have forsaken your own ways, and applied your diligence to mine, and have searched out my law. +\v 55 You have ordered your life in wisdom, and have called understanding your mother. +\v 56 Therefore I have shown you this, for there is a reward laid up with the Most High. It will be, after another three days I will speak other things to you, and declare to you mighty and wondrous things.” +\p +\v 57 Then I went out and passed into the field, giving praise and thanks greatly to the Most High because of his wonders, which he did from time to time, +\v 58 and because he governs the time, and such things as happen in their seasons. So I sat there three days. +\c 14 +\p +\v 1 It came to pass upon the third day, I sat under an oak, and, behold, a voice came out of a bush near me, and said, “Esdras, Esdras!” +\p +\v 2 I said, “Here I am, Lord,” and I stood up on my feet. +\p +\v 3 Then he said to me, “I revealed myself in a bush and talked with Moses when my people were in bondage in Egypt. +\v 4 I sent him, and \f + \fr 14:4 \ft Another reading is. \fqa I. \f*he led my people out of Egypt. I brought him up to Mount Sinai, where I kept him with me for many days. +\v 5 I told him many wondrous things, and showed him the secrets of the times and the end of the seasons. I commanded him, saying, +\v 6 ‘You shall publish these openly, and these you shall hide.’ +\v 7 Now I say to you: +\v 8 Lay up in your heart the signs that I have shown, the dreams that you have seen, and the interpretations which you have heard; +\v 9 for you will be taken away from men, and from now on you will live with my Son and with those who are like you, until the times have ended. +\v 10 For the world has lost its youth, and the times begin to grow old. +\v 11 \f + \fr 14:11 \ft Verses 11, 12 are omitted in the Syriac. The Aethiopic has \fqa For the age is divided into ten parts, and is come to the tenth: and half of the tenth remains. Now etc. \f*For the age is divided into twelve parts, and ten parts of it are already gone, \f + \fr 14:11 \ft Lat. \fqa and. \f*even the half of the tenth part. +\v 12 There remain of it two parts after the middle of the tenth part. +\v 13 Now therefore set your house in order, reprove your people, comfort the lowly among them, \f + \fr 14:13 \ft The Latin alone omits \fqa and...wise. \f*and instruct those of them who are wise, and now renounce the life that is corruptible, +\v 14 and let go of the mortal thoughts, cast away from you the burdens of man, put off now your weak nature, +\v 15 lay aside the thoughts that are most grievous to you, and hurry to escape from these times. +\v 16 For worse evils than those which you have seen happen will be done after this. +\v 17 For look how much the world will be weaker through age, so much that more evils will increase on those who dwell in it. +\v 18 For the truth will withdraw itself further off, and falsehood will be near. For now \f + \fr 14:18 \ft So the Oriental versions. \f*the eagle which you saw in vision hurries to come.” +\p +\v 19 Then I answered and said, \f + \fr 14:19 \ft The Latin omits \fqa I will speak. \f*“Let me speak in your presence, O Lord. +\v 20 Behold, I will go, as you have commanded me, and reprove the people who now live, but who will warn those who will be born afterward? For the world is set in darkness, and those who dwell in it are without light. +\v 21 For your law has been burned, therefore no one knows the things that are done by you, or the works that will be done. +\v 22 But if I have found favor before you, send the Holy Spirit to me, and I will write all that has been done in the world since the beginning, even the things that were written in your law, that men may be able to find the path, and that those who would live in the latter days may live.” +\p +\v 23 He answered me and said, “Go your way, gather the people together, and tell them not to seek you for forty days. +\v 24 But prepare for yourself many tablets, and take with you Sarea, Dabria, Selemia, Ethanus, and Asiel, these five, which are ready to write swiftly; +\v 25 and come here, and I will light a lamp of understanding in your heart which will not be put out until the things have ended about which you will write. +\v 26 When you are done, some things you shall publish openly, and some things you shall deliver in secret to the wise. Tomorrow at this hour you will begin to write.” +\p +\v 27 Then went I out, as he commanded me, and gathered all the people together, and said, +\v 28 “Hear these words, O Israel! +\v 29 Our fathers at the beginning were foreigners in Egypt, and they were delivered from there, +\v 30 and received the law of life, which they didn’t keep, which you also have transgressed after them. +\v 31 Then the land of Zion was given to you for a possession; but you yourselves and your ancestors have done unrighteousness, and have not kept the ways which the Most High commanded you. +\v 32 Because he is a righteous judge, in due time, he took from you what he had given you. +\v 33 Now you are here, and your kindred are among you. +\v 34 Therefore if you will rule over your own understanding and instruct your hearts, you will be kept alive, and after death you will obtain mercy. +\v 35 For after death the judgment will come, when we will live again. Then the names of the righteous will become manifest, and the works of the ungodly will be declared. +\v 36 Let no one therefore come to me now, nor seek me for forty days.” +\p +\v 37 So I took the five men, as he commanded me, and we went out into the field, and remained there. +\v 38 It came to pass on the next day that, behold, a voice called me, saying, “Esdras, open your mouth, and drink what I give you to drink.” +\p +\v 39 Then opened I my mouth, and behold, a full cup was handed to me. It was full of something like water, but its color was like fire. +\v 40 I took it, and drank. When I had drunk it, my heart uttered understanding, and wisdom grew in my chest, for my spirit retained its memory. +\v 41 My mouth was opened, and shut no more. +\v 42 The Most High gave understanding to the five men, and they wrote by course the things that were told them, in \f + \fr 14:42 \ft So the Oriental versions. \f*characters which they didn’t know, and they sat forty days. Now they wrote in the day-time, and at night they ate bread. +\v 43 As for me, I spoke in the day, and by night I didn’t hold my tongue. +\v 44 So in forty days, ninety-four books were written. +\p +\v 45 It came to pass, when the forty days were fulfilled, that the Most High spoke to me, saying, “The first books that you have written, publish openly, and let the worthy and unworthy read them; +\v 46 but keep the last seventy, that you may deliver them to those who are wise among your people; +\v 47 for in them is the spring of understanding, the fountain of wisdom, and the stream of knowledge.” +\p +\v 48 I did so. +\c 15 +\p +\v 1 “Behold, speak in the ears of my people the words of prophecy which I will put in your mouth,” says the Lord. +\v 2 “Cause them to be written on paper, for they are faithful and true. +\v 3 Don’t be afraid of their plots against you. Don’t let the unbelief of those who speak against you trouble you. +\v 4 For all the unbelievers will die in their unbelief. +\p +\v 5 “Behold,” says the Lord, “I bring evils on the whole earth: sword, famine, death, and destruction. +\v 6 For wickedness has prevailed over every land, and their hurtful works have reached their limit. +\v 7 Therefore,” says the Lord, +\v 8 “I will hold my peace no more concerning their wickedness which they profanely commit, neither will I tolerate them in these things, which they wickedly practice. Behold, the innocent and righteous blood cries to me, and the souls of the righteous cry out continually. +\v 9 I will surely avenge them,” says the Lord, “and will receive to me all the innocent blood from among them. +\v 10 Behold, my people are led like a flock to the slaughter. I will not allow them now to dwell in the land of Egypt, +\v 11 but I will bring them out with a mighty hand and with a high arm, and will strike Egypt with plagues, as before, and will destroy all its land.” +\p +\v 12 Let Egypt and its foundations mourn, for the plague of the chastisement and the punishment that God will bring upon it. +\v 13 Let the farmers that till the ground mourn, for their seeds will fail and their trees will be ruined through the blight and hail, and a terrible tempest. +\v 14 Woe to the world and those who dwell in it! +\v 15 For the sword and their destruction draws near, and nation will rise up against nation to battle with weapons in their hands. +\v 16 For there will be sedition among men, and growing strong against one another. In their might, they won’t respect their king or the chief of their great ones. +\v 17 For a man will desire to go into a city, and will not be able. +\v 18 For because of their pride the cities will be troubled, the houses will be destroyed, and men will be afraid. +\v 19 A man will have no pity on his neighbors, but will assault their houses with the sword and plunder their goods, because of the lack of bread, and for great suffering. +\p +\v 20 “Behold,” says God, “I call together all the kings of the earth to stir up those who are from the rising of the sun, from the south, from the east, and Libanus, to turn themselves one against another, and repay the things that they have done to them. +\v 21 Just as they do yet this day to my chosen, so I will do also, and repay into their bosom.” The Lord God says: +\v 22 “My right hand won’t spare the sinners, and my sword won’t cease over those who shed innocent blood on the earth. +\v 23 A fire has gone out from his wrath and has consumed the foundations of the earth and the sinners, like burnt straw. +\v 24 Woe to those who sin and don’t keep my commandments!” says the Lord. +\v 25 “I will not spare them. Go your way, you rebellious children! Don’t defile my sanctuary!” +\v 26 For the Lord knows all those who trespass against him, therefore he will deliver them to death and destruction. +\v 27 For now evils have come upon the whole earth, and you will remain in them; for God will not deliver you, because you have sinned against him. +\p +\v 28 Behold, a horrible sight appearing from the east! +\v 29 The nations of the dragons of Arabia will come out with many chariots. From the day that they set out, their hissing is carried over the earth, so that all those who will hear them may also fear and tremble. +\v 30 Also the Carmonians, raging in wrath, will go out like the wild boars of the forest. They will come with great power and join battle with them, and will devastate a portion of the land of the Assyrians with their teeth. +\v 31 Then the dragons will have the upper hand, remembering their nature. If they will turn themselves, conspiring together in great power to persecute them, +\v 32 then these will be troubled, and keep silence through their power, and will turn and flee. +\v 33 From the land of the Assyrians, an enemy in ambush will attack them and destroy one of them. Upon their army will be fear and trembling, and indecision upon their kings. +\p +\v 34 Behold, clouds from the east, and from the north to the south! They are very horrible to look at, full of wrath and storm. +\v 35 They will clash against one another. They will pour out a heavy storm on the earth, even their own storm. There will be blood from the sword to the horse’s belly, +\v 36 and to the thigh of man, and to the camel’s hock. +\v 37 There will be fearfulness and great trembling upon earth. They who see that wrath will be afraid, and trembling will seize them. +\v 38 After this, great storms will be stirred up from the south, from the north, and another part from the west. +\v 39 Strong winds will arise from the east, and will shut it up, even the cloud which he raised up in wrath; and the storm that was to cause destruction by the east wind will be violently driven toward the south and west. +\v 40 Great and mighty clouds, full of wrath, will be lifted up with the storm, that they may destroy all the earth and those who dwell in it. They will pour out over every high and lofty one a terrible storm, +\v 41 fire, hail, flying swords, and many waters, that all plains may be full, and all rivers, with the abundance of those waters. +\v 42 They will break down the cities and walls, mountains and hills, trees of the forest, and grass of the meadows, and their grain. +\v 43 They will go on steadily to Babylon and destroy her. +\v 44 They will come to it and surround it. They will pour out the storm and all wrath on her. Then the dust and smoke will go up to the sky, and all those who are around it will mourn for it. +\v 45 Those who remain will serve those who have destroyed it. +\p +\v 46 You, Asia, who are partaker in the beauty of Babylon, and in the glory of her person— +\v 47 woe to you, you wretch, because you have made yourself like her. You have decked out your daughters for prostitution, that they might please and glory in your lovers, which have always lusted after you! +\v 48 You have followed her who is hateful in all her works and inventions. Therefore God says, +\v 49 “I will send evils on you: widowhood, poverty, famine, sword, and pestilence, to lay waste your houses and bring you to destruction and death. +\v 50 The glory of your power will be dried up like a flower when the heat rises that is sent over you. +\v 51 You will be weakened like a poor woman who is beaten and wounded, so that you won’t be able to receive your mighty ones and your lovers. +\v 52 Would I have dealt with you with such jealousy,” says the Lord, +\v 53 “if you had not always slain my chosen, exalting and clapping of your hands, and talking about their dead when you were drunk? +\p +\v 54 “Beautify your face! +\v 55 The reward of a prostitute will be in your bosom, therefore you will be repaid. +\v 56 Just as you will do to my chosen,” says the Lord, “even so God will do to you, and will deliver you to your adversaries. +\v 57 Your children will die of hunger. You will fall by the sword. Your cities will be broken down, and all your people in the field will perish by the sword. +\v 58 Those who are in the mountains will die of hunger, eat their own flesh, and drink their own blood, because of hunger for bread and thirst for water. +\v 59 You, unhappy above all others, will come and will again receive evils. +\v 60 In the passage, they will rush on the hateful city and will destroy some portion of your land, and mar part of your glory, and will return again to Babylon that was destroyed. +\v 61 You will be cast down by them as stubble, and they will be to you as fire. +\v 62 They will devour you, your cities, your land, and your mountains. They will burn all your forests and your fruitful trees with fire. +\v 63 They will carry your children away captive, and will plunder your wealth, and mar the glory of your face.” +\c 16 +\p +\v 1 Woe to you, Babylon, and Asia! Woe to you, Egypt and Syria! +\v 2 Put on sackcloth and garments of goats’ hair, wail for your children and lament; for your destruction is at hand. +\v 3 A sword has been sent upon you, and who is there to turn it back? +\v 4 A fire has been sent upon you, and who is there to quench it? +\v 5 Calamities are sent upon you, and who is there to drive them away? +\v 6 Can one drive away a hungry lion in the forest? Can one quench a fire in stubble, once it has begun to burn? +\v 7 Can one turn back an arrow that is shot by a strong archer? +\v 8 The Lord God sends the calamities, and who will drive them away? +\v 9 A fire will go out from his wrath, and who may quench it? +\v 10 He will flash lightning, and who will not fear? He will thunder, and who wouldn’t tremble? +\v 11 The Lord will threaten, and who will not be utterly broken in pieces at his presence? +\v 12 The earth and its foundations quake. The sea rises up with waves from the deep, and its waves will be troubled, along with the fish in them, at the presence of the Lord, and before the glory of his power. +\v 13 For his right hand that bends the bow is strong, his arrows that he shoots are sharp, and will not miss when they begin to be shot into the ends of the world. +\v 14 Behold, the calamities are sent out, and will not return again until they come upon the earth. +\v 15 The fire is kindled and will not be put out until it consumes the foundations of the earth. +\v 16 Just as an arrow which is shot by a mighty archer doesn’t return backward, even so the calamities that are sent out upon earth won’t return again. +\v 17 Woe is me! Woe is me! Who will deliver me in those days? +\p +\v 18 The beginning of sorrows, when there will be great mourning; the beginning of famine, and many will perish; the beginning of wars, and the powers will stand in fear; the beginning of calamities, and all will tremble! What will they do when the calamities come? +\v 19 Behold, famine and plague, suffering and anguish! They are sent as scourges for correction. +\v 20 But for all these things they will not turn them from their wickedness, nor be always mindful of the scourges. +\v 21 Behold, food will be so cheap on earth that they will think themselves to be in good condition, and even then calamities will grow on earth: sword, famine, and great confusion. +\v 22 For many of those who dwell on earth will perish of famine; and others who escape the famine, the sword will destroy. +\v 23 The dead will be cast out like dung, and there will be no one to comfort them; for the earth will be left desolate, and its cities will be cast down. +\v 24 There will be no farmer left to cultivate the earth or to sow it. +\v 25 The trees will give fruit, but who will gather it? +\v 26 The grapes will ripen, but who will tread them? For in all places there will be a great solitude; +\v 27 for one man will desire to see another, or to hear his voice. +\v 28 For of a city there will be ten left, and two of the field, who have hidden themselves in the thick groves, and in the clefts of the rocks. +\v 29 As in an orchard of olives upon every tree there may be left three or four olives, +\v 30 or as when a vineyard is gathered, there are some clusters left by those who diligently search through the vineyard, +\v 31 even so in those days, there will be three or four left by those who search their houses with the sword. +\v 32 The earth will be left desolate, and its fields will be for briers, and its roads and all her paths will grow thorns, because no sheep will pass along them. +\v 33 The virgins will mourn, having no bridegrooms. The women will mourn, having no husbands. Their daughters will mourn, having no helpers. +\v 34 Their bridegrooms will be destroyed in the wars, and their husbands will perish of famine. +\p +\v 35 Hear now these things, and understand them, you servants of the Lord. +\v 36 Behold, the Lord’s word: receive it. Don’t doubt the things about which the Lord speaks. +\v 37 Behold, the calamities draw near, and are not delayed. +\v 38 Just as a woman with child in the ninth month, when the hour of her delivery draws near, within two or three hours great pains surround her womb, and when the child comes out from the womb, there will be no waiting for a moment, +\v 39 even so the calamities won’t delay coming upon the earth. The world will groan, and sorrows will seize it on every side. +\p +\v 40 “O my people, hear my word: prepare for battle, and in those calamities be like strangers on the earth. +\v 41 He who sells, let him be as he who flees away, and he who buys, as one who will lose. +\v 42 Let he who does business be as he who has no profit by it, and he who builds, as he who won’t dwell in it, +\v 43 and he who sows, as if he wouldn’t reap, so also he who prunes the vines, as he who won’t gather the grapes, +\v 44 those who marry, as those who will have no children, and those who don’t marry, as the widowed. +\v 45 Because of this, those who labor, labor in vain; +\v 46 for foreigners will reap their fruits, plunder their goods, overthrow their houses, and take their children captive, for in captivity and famine they will conceive their children. +\v 47 Those who conduct business, do so only to be plundered. The more they adorn their cities, their houses, their possessions, and their own persons, +\v 48 the more I will hate them for their sins,” says the Lord. +\v 49 Just as a respectable and virtuous woman hates a prostitute, +\v 50 so will righteousness hate iniquity when she adorns herself, and will accuse her to her face when he comes who will defend him who diligently searches out every sin on earth. +\p +\v 51 Therefore don’t be like her or her works. +\v 52 For yet a little while, and iniquity will be taken away out of the earth, and righteousness will reign over us. +\v 53 Don’t let the sinner say that he has not sinned; for God will burn coals of fire on the head of one who says “I haven’t sinned before God and his glory.” +\v 54 Behold, the Lord knows all the works of men, their imaginations, their thoughts, and their hearts. +\v 55 He said, “Let the earth be made,” and it was made, “Let the sky be made,” and it was made. +\v 56 At his word, the stars were established, and he knows the number of the stars. +\v 57 He searches the deep and its treasures. He has measured the sea and what it contains. +\v 58 He has shut the sea in the midst of the waters, and with his word, he hung the earth over the waters. +\v 59 He has spread out the sky like a vault. He has founded it over the waters. +\v 60 He has made springs of water in the desert and pools on the tops of the mountains to send out rivers from the heights to water the earth. +\v 61 He formed man, and put a heart in the midst of the body, and gave him breath, life, and understanding, +\v 62 yes, the spirit of God Almighty. He who made all things and searches out hidden things in hidden places, +\v 63 surely he knows your imagination, and what you think in your hearts. Woe to those who sin, and try to hide their sin! +\v 64 Because the Lord will exactly investigate all your works, and he will put you all to shame. +\v 65 When your sins are brought out before men, you will be ashamed, and your own iniquities will stand as your accusers in that day. +\v 66 What will you do? Or how will you hide your sins before God and his angels? +\v 67 Behold, God is the judge. Fear him! Stop sinning, and forget your iniquities, to never again commit them. So will God lead you out, and deliver you from all suffering. +\p +\v 68 For, behold, the burning wrath of a great multitude is kindled over you, and they will take away some of you, and feed you with that which is sacrificed to idols. +\v 69 Those who consent to them will be held in derision and in contempt, and be trodden under foot. +\v 70 For there will be in various places, and in the next cities, a great insurrection against those who fear the Lord. +\v 71 They will be like mad men, sparing none, but spoiling and destroying those who still fear the Lord. +\v 72 For they will destroy and plunder their goods, and throw them out of their houses. +\v 73 Then the trial of my elect will be made known, even as the gold that is tried in the fire. +\v 74 Hear, my elect ones, says the Lord: “Behold, the days of suffering are at hand, and I will deliver you from them. +\v 75 Don’t be afraid, and don’t doubt, for God is your guide. +\v 76 You who keep my commandments and precepts,” says the Lord God, “don’t let your sins weigh you down, and don’t let your iniquities lift themselves up.” +\v 77 Woe to those who are choked with their sins and covered with their iniquities, like a field is choked with bushes, and its path covered with thorns, that no one may travel through! +\v 78 It is shut off and given up to be consumed by fire. \ No newline at end of file diff --git a/bibles/eng-web_usfm/59-4MAeng-web.usfm b/bibles/eng-web_usfm/59-4MAeng-web.usfm new file mode 100644 index 0000000..0992ceb --- /dev/null +++ b/bibles/eng-web_usfm/59-4MAeng-web.usfm @@ -0,0 +1,564 @@ +\id 4MA +\h 4 Maccabees +\toc1 The Fourth Book of the Maccabees +\toc2 4 Maccabees +\toc3 4Ma +\mt1 The Fourth Book of the Maccabees +\ip \bk The Fourth Book of the Maccabees\bk* appears in an appendix to the Greek Septuagint. It is considered to be apocrypha by most church traditions. It is preserved here for its supplementary historical value. +\c 1 +\p +\v 1 As I am going to demonstrate a most philosophical proposition, namely, that religious reasoning is absolute master of the emotions. I would willingly advise you to give the utmost heed to philosophy. +\v 2 For reason is necessary to everyone as a step to science. In addition, it embraces the praise of self-control, the highest virtue. +\v 3 If, then, reasoning appears to hold the mastery over the emotions which stand in the way of temperance, such as gluttony and lust, +\v 4 it surely also and manifestly rules over the affections which are contrary to justice, such as malice, and of those which are hindrances to courage, such as wrath, pain, and fear. +\v 5 Perhaps some may ask, “How is it, then, that reasoning, if it rules the emotions, isn’t also master of forgetfulness and ignorance?” They attempt a ridiculous argument. +\v 6 For reasoning does not rule over its own emotions, but over those that are contrary to justice, courage, temperance, and self-control; and yet over these, so as to withstand, without destroying them. +\p +\v 7 I might prove to you from many other considerations, that religious reasoning is sole master of the emotions; +\v 8 but I will prove it with the greatest force from the fortitude of Eleazar, and seven kindred, and their mother, who suffered death in defense of virtue. +\v 9 For all these, treating pains with contempt even to death, by this contempt, demonstrated that reasoning has command over the emotions. +\v 10 For their virtues, then, it is right that I should commend those men who died with their mother at this time on behalf of nobility and goodness; and for their honors, I may count them blessed. +\v 11 For they, winning admiration not only from men in general, but even from the persecutors, for their courage and endurance, became the means of the destruction of the tyranny against their nation, having conquered the tyrant by their endurance, so that by them their country was purified. +\v 12 But we may now at once enter upon the question, having commenced, as is our custom, with laying down the doctrine, and so proceed to the account of these people, giving glory to the all-wise God. +\p +\v 13 Therefore the question is whether reasoning is absolute master of the emotions. +\v 14 Let’s determine, then, what reasoning is and what emotion is, and how many forms of emotion there are, and whether reasoning rules over all of these. +\v 15 Reasoning is intellect accompanied by a life of righteousness, putting foremost the consideration of wisdom. +\v 16 Wisdom is a knowledge of divine and human things, and of their causes. +\v 17 This is contained in the education of the law, by means of which we learn divine things reverently and human things profitably. +\v 18 The forms of wisdom are self-control, justice, courage, and temperance. +\v 19 The leading one of these is self-control, by whose means, indeed, it is that reasoning rules over the emotions. +\v 20 Of the emotions, pleasure and pain are the two most comprehensive; and they also by nature refer to the soul. +\v 21 There are many attendant affections surrounding pleasure and pain. +\v 22 Before pleasure is lust; and after pleasure, joy. +\v 23 Before pain is fear; and after pain is sorrow. +\v 24 Wrath is an affection, common to pleasure and to pain, if any one will pay attention when it comes upon him. +\v 25 There exists in pleasure a malicious disposition, which is the most complex of all the affections. +\v 26 In the soul, it is arrogance, love of money, thirst for honor, contention, faithlessness, and the evil eye. +\v 27 In the body, it is greediness, indiscriminate eating, and solitary gluttony. +\p +\v 28 As pleasure and pain are, therefore, two growths out of the body and the soul, so there are many offshoots of these emotions. +\v 29 Reasoning, the universal farmer, purging and pruning each of these, tying up, watering, and transplanting, in every way improves the materials of the morals and affections. +\v 30 For reasoning is the leader of the virtues, but it is the sole ruler of the emotions. +\p Observe then first, through the very things which stand in the way of temperance, that reasoning is absolute ruler of the emotions. +\v 31 Now temperance consists of a command over the lusts. +\v 32 But of the lusts, some belong to the soul and others to the body. Reasoning appears to rule over both. +\v 33 Otherwise, how is it that when urged on to forbidden meats, we reject the gratification which would come from them? Isn’t it because reasoning is able to command the appetites? I believe so. +\v 34 Hence it is, then, that when craving seafood, birds, four-footed animals, and all kinds of food which are forbidden to us by the law, we withhold ourselves through the mastery of reasoning. +\v 35 For the affections of our appetites are resisted by the temperate understanding, and bent back again, and all the impulses of the body are reined in by reasoning. +\c 2 +\p +\v 1 Is it any wonder? If the lusts of the soul, after participation with what is beautiful, are frustrated, +\v 2 on this ground, therefore, the temperate Joseph is praised in that by reasoning, he subdued, on reflection, the indulgence of the senses. +\v 3 For, although young, and ripe for sexual intercourse, he nullified by reasoning the stimulus of his emotions. +\v 4 It isn’t merely the stimulus of sensual indulgence, but that of every desire, that reasoning is able to master. +\v 5 For instance, the law says, “You shall not covet your neighbor’s wife, nor anything that belongs to your neighbor.” +\v 6 Now, then, since it is the law which has forbidden us to desire, I shall much the more easily persuade you, that reasoning is able to govern our lusts, just as it does the affections which are impediments to justice. +\v 7 Since in what way is a solitary eater, a glutton, and a drunkard reclaimed, unless it is clear that reasoning is lord of the emotions? +\v 8 Therefore, a man who regulates his course by the law, even if he is a lover of money, immediately puts pressure on his own disposition by lending to the needy without interest, and cancelling the debt on the seventh year. +\v 9 If a man is greedy, he is ruled by the law acting through reasoning, so that he doesn’t glean his harvest crops or vintage. In reference to other points we may perceive that it is reasoning that conquers his emotions. +\v 10 For the law conquers even affection toward parents, not surrendering virtue on their account. +\v 11 It prevails over love for one’s wife, rebuking her when she breaks the law. +\v 12 It lords it over the love of parents toward their children, for they punish them for vice. It domineers over the intimacy of friends, reproving them when wicked. +\v 13 Don’t think it is a strange assertion that reasoning can on behalf of the law conquer even enmity. +\v 14 It doesn’t allow cutting down the fruit trees of an enemy, but preserves them from the destroyers, and collects their fallen ruins. +\v 15 Reason appears to be master of the more violent emotions, like love of empire, empty boasting, and slander. +\v 16 For the temperate understanding repels all these malignant emotions, as it does wrath; for it masters even this. +\v 17 Thus Moses, when angered against Dathan and Abiram, did nothing to them in wrath, but regulated his anger by reasoning. +\v 18 For the temperate mind is able, as I said, to be superior to the emotions, and to correct some and destroy others. +\v 19 For why else did our most wise father Jacob blame Simeon and Levi for having irrationally slain the whole race of the Shechemites, saying, “Cursed be their anger!”? +\v 20 For if reasoning didn’t possess the power of subduing angry affections, he would not have said this. +\v 21 For at the time when God created man, he implanted within him his emotions and moral nature. +\v 22 At that time he enthroned the mind above all as the holy leader, through the medium of the senses. +\v 23 He gave a law to this mind, by living according to which it will maintain a temperate, just, good, and courageous reign. +\v 24 How, then, a man may say, if reasoning is master of the emotions, has it no control over forgetfulness and ignorance? +\c 3 +\p +\v 1 The argument is exceedingly ridiculous, for reasoning doesn’t appear to rule over its own affections, but over those of the body, +\v 2 in such a way as that any one of you may not be able to root out desire, but reasoning will enable you to avoid being enslaved to it. +\v 3 One may not be able to root out anger from the soul, but it is possible to withstand anger. +\v 4 Any one of you may not be able to eradicate malice, but reasoning has force to work with you to prevent you yielding to malice. +\v 5 For reasoning is not an eradicator, but an antagonist of the emotions. +\p +\v 6 This may be more clearly comprehended from the thirst of King David. +\v 7 For after David had been attacking the Philistines the whole day, he with the soldiers of his nation killed many of them; +\v 8 then when evening came, sweating and very weary, he came to the royal tent, around which the entire army of our ancestors was encamped. +\v 9 Now all the rest of them were at supper; +\v 10 but the king, being very much thirsty, although he had numerous springs, could not by their means quench his thirst; +\v 11 but a certain irrational longing for the water in the enemy’s camp grew stronger and fiercer upon him, undid and consumed him. +\v 12 Therefore his bodyguards being troubled at this longing of the king, two valiant young soldiers, respecting the desire of the king, fully armed themselves, and taking a pitcher, got over the ramparts of the enemies. +\v 13 Unperceived by the guardians of the gate, they went throughout the whole camp of the enemy in quest. +\v 14 Having boldly discovered the fountain, they filled out of it the drink for the king. +\v 15 But he, though parched with thirst, reasoned that a drink regarded of equal value to blood would be terribly dangerous to his soul. +\v 16 Therefore, setting up reasoning in opposition to his desire, he poured out the drink to God. +\v 17 For the temperate mind has power to conquer the pressure of the emotions, to quench the fires of excitement, +\v 18 and to wrestle down the pains of the body, however excessive, and through the excellency of reasoning, to spurn all the assaults of the emotions. +\v 19 But the occasion now invites us to give an illustration of temperate reasoning from history. +\v 20 For at a time when our fathers were in possession of undisturbed peace through obedience to the law and were prosperous, so that Seleucus Nicanor, the king of Asia, both assigned them money for divine service, and accepted their form of government, +\v 21 then certain people, bringing in new things contrary to the public harmony, in various ways fell into calamities. +\c 4 +\p +\v 1 For a certain man named Simon, who was in opposition to an honorable and good man who once held the high priesthood for life, named Onias. After slandering Onias in every way, Simon couldn’t injure him with the people, so he went away as an exile, with the intention of betraying his country. +\v 2 When coming to Apollonius, the military governor of Syria, Phoenicia, and Cilicia, he said, +\v 3 “Having good will to the king’s affairs, I have come to inform you that tens of thousands in private wealth is laid up in the treasuries of Jerusalem which do not belong to the temple, but belong to King Seleucus.” +\v 4 Apollonius, acquainting himself with the particulars of this, praised Simon for his care of the king’s interests, and going up to Seleucus informed him of the treasure. +\v 5 Getting authority about it, and quickly advancing into our country with the accursed Simon and a very heavy force, +\v 6 he said that he came with the commands of the king that he should take the private money of the treasury. +\v 7 The nation, indignant at this proclamation, and replying to the effect that it was extremely unfair that those who had committed deposits to the sacred treasury should be deprived of them, resisted as well as they could. +\v 8 But Appolonius went away with threats into the temple. +\v 9 The priests, with the women and children, asked God to throw his shield over the holy, despised place, +\v 10 and Appolonius was going up with his armed force to seize the treasure, when angels from heaven appeared riding on horseback, all radiant in armor, filling them with much fear and trembling. +\v 11 Apollonius fell half dead on the court which is open to all nations, and extended his hands to heaven, and implored the Hebrews, with tears, to pray for him, and take away the wrath of the heavenly army. +\v 12 For he said that he had sinned, so as to be consequently worthy of death, and that if he were saved, he would proclaim to all people the blessedness of the holy place. +\v 13 Onias the high priest, induced by these words, although for other reasons anxious that King Seleucus wouldn’t suppose that Apollonius was slain by human device and not by Divine punishment, prayed for him; +\v 14 and he being thus unexpectedly saved, departed to report to the king what had happened to him. +\v 15 But on the death of Seleucus the king, his son Antiochus Epiphanes succeeded to the kingdom—a terrible man of arrogant pride. +\p +\v 16 He, having deposed Onias from the high priesthood, appointed his brother Jason to be high priest, +\v 17 who had made a covenant, if he would give him this authority, to pay yearly three thousand six hundred and sixty talents. +\v 18 He committed to him the high priesthood and rulership over the nation. +\v 19 He both changed the manner of living of the people, and perverted their civil customs into all lawlessness. +\v 20 So that he not only erected a gymnasium on the very citadel of our country, but neglected the guardianship of the temple. +\v 21 Because of that, Divine vengeance was grieved and instigated Antiochus himself against them. +\v 22 For being at war with Ptolemy in Egypt, he heard that on a report of his death being spread abroad, the inhabitants of Jerusalem had exceedingly rejoiced, and he quickly marched against them. +\v 23 Having subdued them, he established a decree that if any of them lived according to the ancestral laws, he should die. +\v 24 When he could by no means destroy by his decrees the obedience to the law of the nation, but saw all his threats and punishments without effect, +\v 25 for even women, because they continued to circumcise their children, were flung down a precipice along with them, knowing beforehand of the punishment. +\v 26 When, therefore, his decrees were disregarded by the people, he himself compelled by means of tortures every one of this race, by tasting forbidden meats, to renounce the Jewish religion. +\c 5 +\p +\v 1 The tyrant Antiochus, therefore, sitting in public state with his assessors upon a certain lofty place, with his armed troops standing in a circle around him, +\v 2 commanded his spearbearers to seize every one of the Hebrews, and to compel them to taste swine’s flesh and things offered to idols. +\v 3 Should any of them be unwilling to eat the accursed food, they were to be tortured on the wheel and so killed. +\v 4 When many had been seized, a foremost man of the assembly, a Hebrew, by name Eleazar, a priest by family, by profession a lawyer, and advanced in years, and for this reason known to many of the king’s followers, was brought near to him. +\p +\v 5 Antiochus, seeing him, said, +\v 6 “I would counsel you, old man, before your tortures begin, to taste the swine’s flesh, and save your life; for I feel respect for your age and hoary head, which since you have had so long, you appear to me to be no philosopher in retaining the superstition of the Jews. +\v 7 For therefore, since nature has conferred upon you the most excellent flesh of this animal, do you loathe it? +\v 8 It seems senseless not to enjoy what is pleasant, yet not disgraceful; and from notions of sinfulness, to reject the gifts of nature. +\v 9 You will be acting, I think, still more senselessly, if you follow vain conceits about the truth. +\v 10 You will, moreover, be despising me to your own punishment. +\v 11 Won’t you awake from your trifling philosophy, give up the folly of your notions, and regaining understanding worthy of your age, search into the truth of an expedient course? +\v 12 Won’t you respect my kindly admonition and have pity on your own years? +\v 13 For bear in mind that if there is any power which watches over this religion of yours, it will pardon you for all transgressions of the law which you commit through compulsion.” +\p +\v 14 While the tyrant incited him in this manner to the unlawful eating of meat, Eleazar begged permission to speak. +\v 15 Having received permission to speak, he began to address the people as follows: +\v 16 “We, O Antiochus, who are persuaded that we live under a divine law, consider no compulsion to be so forcible as obedience to that law. +\v 17 Therefore we consider that we ought not to transgress the law in any way. +\v 18 Indeed, were our law (as you suppose) not truly divine, and if we wrongly think it divine, we would have no right even in that case to destroy our sense of religion. +\v 19 Don’t think that eating unclean meat is a trifling offense. +\v 20 For transgression of the law, whether in small or great matters, is of equal importance; +\v 21 for in either case the law is equally slighted. +\v 22 But you deride our philosophy, as though we lived in it irrationally. +\v 23 Yet it instructs us in self-control, so that we are superior to all pleasures and lusts; and it trains us in courage, so that we cheerfully undergo every grievance. +\v 24 It instructs us in justice, so that in all our dealings we give what is due. It teaches us piety, so that we properly worship the one and only God. +\v 25 That is why we don’t eat the unclean; for believing that the law was established by God, we are convinced that the Creator of the world, in giving his laws, sympathizes with our nature. +\v 26 Those things which are suitable for our souls, he has directed us to eat; but those which are not, he has forbidden. +\v 27 But, tyrant-like, you not only force us to break the law, but also to eat, that you may ridicule us as we thus profanely eat. +\v 28 But you won’t have this cause of laughter against me, +\v 29 nor will I transgress the sacred oaths of my forefathers to keep the law. +\v 30 No, not if you pluck out my eyes, and consume my entrails. +\v 31 I am not so old, and void of courage as to not be youthful in reason and in defense of my religion. +\v 32 Now then, prepare your wheels, and kindle a fiercer flame. +\v 33 I will not so pity my old age, as on my account to break the law of my country. +\v 34 I will not play false to you, O law, my instructor, or forsake you, O beloved self-control! +\v 35 I will not put you to shame, O philosopher Reason, or deny you, O honored priesthood and knowledge of the law. +\v 36 Mouth! You shall not pollute my old age, nor the full stature of a perfect life. +\v 37 My ancestors will receive me as pure, not having feared your compulsion, even to death. +\v 38 For you will rule like a tyrant over the ungodly, but you will not lord it over my thoughts about religion, either by your arguments, or through deeds.” +\c 6 +\p +\v 1 When Eleazar had in this manner answered the exhortations of the tyrant, the spearbearers came up, and rudely dragged Eleazar to the instruments of torture. +\v 2 First, they stripped the old man, adorned as he was with the beauty of piety. +\v 3 Then tying back his arms and hands, they disdainfully flogged him. +\v 4 A herald opposite cried out, “Obey the commands of the king!” +\p +\v 5 But the high-minded and truly noble Eleazar, as one tortured in a dream, ignored it. +\v 6 But raising his eyes on high to heaven, the old man’s flesh was stripped off by the scourges, and his blood streamed down, and his sides were pierced through. +\v 7 Falling on the ground from his body having no power to endure the pains, he still kept his reasoning upright and unbending. +\v 8 Then one of the harsh spearbearers rushed at him and began to kick him in the side to force him to get up again after he fell. +\v 9 But he endured the pains, despised the cruelty, and persevered through the indignities. +\v 10 Like a noble athlete, the old man, when struck, vanquished his torturers. +\v 11 His face sweating, and he panting for breath, he was admired even by the torturers for his courage. +\p +\v 12 Therefore, partly in pity for his old age, +\v 13 partly from the sympathy of acquaintance, and partly in admiration of his endurance, some of the attendants of the king said, +\v 14 “Why do you unreasonably destroy yourself, O Eleazar, with these miseries? +\v 15 We will bring you some meat cooked by yourself, and you can save yourself by pretending that you have eaten swine’s flesh.” +\p +\v 16 Eleazar, as though the advice more painfully tortured him, cried out, +\v 17 “Let us who are children of Abraham not be so evil advised as by giving way to make use of an unbecoming pretense. +\v 18 For it would be irrational, if having lived up to old age in all truth, and having scrupulously guarded our character for it, we would now turn back +\v 19 and ourselves become a pattern of impiety to the young, as being an example of eating pollution. +\v 20 It would be disgraceful if we would live on some short time, and that scorned by all men for cowardice, +\v 21 and be condemned by the tyrant for cowardice by not contending to the death for our divine law. +\v 22 Therefore you, O children of Abraham, die nobly for your religion. +\v 23 You spearbearers of the tyrant, why do you linger?” +\p +\v 24 Beholding him so high-minded against misery, and not changing at their pity, they led him to the fire. +\v 25 Then with their wickedly contrived instruments they burned him on the fire, and poured stinking fluids down into his nostrils. +\p +\v 26 He being at length burned down to the bones, and about to expire, raised his eyes Godward, and said, +\v 27 “You know, O God, that when I might have been saved, I am slain for the sake of the law by tortures of fire. +\v 28 Be merciful to your people, and be satisfied with the punishment of me on their account. +\v 29 Let my blood be a purification for them, and take my life in exchange for theirs.” +\v 30 Thus speaking, the holy man departed, noble in his torments, and even to the agonies of death resisted in his reasoning for the sake of the law. +\v 31 Confessedly, therefore, religious reasoning is master of the emotions. +\v 32 For had the emotions been superior to reasoning, I would have given them the witness of this mastery. +\v 33 But now, since reasoning conquered the emotions, we befittingly award it the authority of first place. +\v 34 It is only fair that we should allow that the power belongs to reasoning, since it masters external miseries. +\v 35 It would be ridiculous if it weren’t so. I prove that reasoning has not only mastered pains, but that it is also superior to the pleasures, and withstands them. +\c 7 +\p +\v 1 The reasoning of our father Eleazar, like a first-rate pilot, steering the vessel of piety in the sea of emotions, +\v 2 and flouted by the threats of the tyrant, and overwhelmed with the breakers of torture, +\v 3 in no way shifted the rudder of piety until it sailed into the harbor of victory over death. +\v 4 No besieged city has ever held out against many and various war machines as that holy man did when his pious soul was tried with the fiery trial of tortures and rackings and moved his besiegers through the religious reasoning that shielded him. +\v 5 For father Eleazar, projecting his disposition, broke the raging waves of the emotions as with a jutting cliff. +\v 6 O priest worthy of the priesthood! You didn’t pollute your sacred teeth, nor make your appetite, which had always embraced the clean and lawful, a partaker of profanity. +\v 7 O harmonizer with the law, and sage devoted to a divine life! +\v 8 Of such a character ought those to be who perform the duties of the law at the risk of their own blood, and defend it with generous sweat by sufferings even to death. +\v 9 You, father, have gloriously established our right government by your endurance; and making of much account our past service, prevented its destruction, and by your deeds, have made credible the words of philosophy. +\v 10 O aged man of more power than tortures, elder more vigorous than fire, greatest king over the emotions, Eleazar! +\v 11 For as father Aaron, armed with a censer, hastening through the consuming fire, vanquished the flame-bearing angel, +\v 12 so, Eleazar, the descendant of Aaron, wasted away by the fire, didn’t give up his reasoning. +\v 13 What is most wonderful is that though he was an old man, though the labors of his body were now spent, his muscles were relaxed, and his sinews worn out, he recovered youth. +\v 14 By the spirit of reasoning, and the reasoning of Isaac, he rendered powerless the many-headed rack. +\v 15 O blessed old age, and reverend hoar head, and life obedient to the law, which the faithful seal of death perfected. +\v 16 If, then, an old man, through religion, despised tortures even to death, then certainly religious reasoning is ruler of the emotions. +\v 17 But perhaps some might say, “It is not all who conquer emotions, as not all possess wise reasoning.” +\v 18 But those who have meditated upon religion with their whole heart, these alone can master the emotions of the flesh: +\v 19 they who believe that to God they don’t die; for, as our forefathers, Abraham, Isaac, and Jacob, they live to God. +\v 20 This circumstance, then, is by no means an objection, that some who have weak reasoning are governed by their emotions, +\v 21 since what person, walking religiously by the whole rule of philosophy, and believing in God, +\v 22 and knowing that it is a blessed thing to endure all kinds of hardships for virtue, would not, for the sake of religion, master his emotion? +\v 23 For only the wise and brave man is lord over his emotions. +\v 24 This is why even boys, trained with the philosophy of religious reasoning, have conquered still more bitter tortures; +\v 25 for when the tyrant was manifestly vanquished in his first attempt, in being unable to force the old man to eat the unclean thing, +\c 8 +\nb +\v 1 then, indeed, vehemently swayed with emotion, he commanded to bring others of the adult Hebrews, and if they would eat of the unclean thing, to let them go when they had eaten; but if they objected, to torment them more grievously. +\v 2 The tyrant having given this charge, seven kindred were brought into his presence, along with their aged mother. They were handsome, modest, well-born, and altogether comely. +\v 3 When the tyrant saw them encircling their mother as in a dance, he was pleased with them. Being struck with their becoming and innocent manner, smiled at them, and calling them near, said, +\v 4 “O youths, with favorable feelings, I admire the beauty of each of you. Greatly honouring so numerous a band of kindred, I not only counsel you not to share the madness of the old man who has been tortured before, +\v 5 but I beg you to yield, and to enjoy my friendship; for I possess the power, not only of punishing those who disobey my commands, but of doing good to those who obey them. +\v 6 Put confidence in me, then, and you will receive places of authority in my government, if you forsake your national way of life, +\v 7 and, conforming to the Greek way of life, alter your rule and revel in youth’s delights. +\v 8 For if you provoke me by your disobedience, you will compel me to destroy every one of you with terrible punishments by tortures. +\v 9 Have mercy, then, upon your own selves, whom I, although an enemy, am compassionate for your age and attractive appearance. +\v 10 Won’t you consider this: that if you disobey, there will be nothing left for you but to die in torture?” +\p +\v 11 When he had said this, he ordered the instruments of torture to be brought forward, that fear might prevail upon them to eat unclean meat. +\v 12 When the spearman brought forward the wheels, the racks, the hooks, caldrons, pans, finger-racks, iron hands and wedges, and bellows, the tyrant continued: +\v 13 “Fear, young men, and the righteousness which you worship will be merciful to you if you transgress because of compulsion.” +\p +\v 14 Now they having listened to these words of persuasion, and seeing the fearful instruments, not only were not afraid, but even answered the arguments of the tyrant, and through their good reasoning destroyed his power. +\v 15 Now let’s consider the matter. Had any of them been weak-spirited and cowardly among them, what reasoning would they have employed but these? +\v 16 “O wretched that we are, and exceedingly senseless! When the king exhorts us, and calls us to his bounty, should we not obey him? +\v 17 Why do we cheer ourselves with vain counsels, and venture upon a disobedience bringing death? +\v 18 Shall we not fear, O kindred, the instruments of torture and weigh the threatenings of torment and shun this vain-glory and destructive pride? +\v 19 Let’s have compassion upon our age and relent over the years of our mother. +\v 20 Let’s bear in mind that we will be dying as rebels. +\v 21 Divine Justice will pardon us if we fear the king through necessity. +\v 22 Why withdraw ourselves from a most sweet life, and deprive ourselves of this pleasant world? +\v 23 Let’s not oppose necessity, nor seek vain-glory by our own torture. +\v 24 The law itself wouldn’t arbitrarily put us to death because we dread torture. +\v 25 Why has such angry zeal taken root in us, and such fatal obstinacy approved itself to us, when we might live unmolested by the king?” +\p +\v 26 But the young men didn’t say or think anything of this kind when about to be tortured. +\v 27 For they were well aware of the sufferings, and masters of the pains. +\v 28-29 So that as soon as the tyrant had ceased counselling them to eat the unclean, they all with one voice, as from the same heart said: +\c 9 +\nb +\v 1 “Why do you delay, O tyrant? For we are more ready to die than to transgress the injunctions of our fathers. +\v 2 We would be disgracing our fathers if we didn’t obey the law, and take knowledge for our guide. +\v 3 O tyrant, counselor of law-breaking, do not, hating us as you do, pity us more than we pity ourselves. +\v 4 For we consider your escape to be worse than death. +\v 5 You try to scare us by threatening us with death by tortures, as though you had learned nothing by the death of Eleazar. +\v 6 But if aged men of the Hebrews have died in the cause of religion after enduring torture, more rightly should we younger men die, scorning your cruel tortures, which our aged instructor overcame. +\v 7 Make the attempt, then, O tyrant. If you put us to death for our religion, don’t think that you harm us by torturing us. +\v 8 For we through this ill-treatment and endurance will gain the rewards of virtue. +\v 9 But you, for the wicked and despotic slaughter of us, will, from the Divine vengeance, endure eternal torture by fire.” +\p +\v 10 When they had said this, the tyrant was not only exasperated against them for being disobedient, but enraged with them for being ungrateful. +\v 11 So, at his bidding, the torturers brought the oldest of them, and tearing through his tunic, bound his hands and arms on each side with straps. +\v 12 When they had labored hard without effect in scourging him, they hurled him on the wheel. +\v 13 The noble youth, extended upon this, became dislocated. +\v 14 With every member disjointed, he denounced the tyrant, saying, +\v 15 “O most accursed tyrant, and enemy of heavenly justice, and cruel-hearted, I am no murderer, nor sacrilegious man, whom you torture, but a defender of the Divine law.” +\p +\v 16 And when the spearmen said, “Consent to eat, that you may be released from your tortures,” +\v 17 he answered, “Not so powerful, O accursed lackeys, is your wheel, as to stifle my reasoning. Cut my limbs, and burn my flesh, and twist my joints. +\v 18 For through all my torments I will convince you that the children of the Hebrews are alone unconquered on behalf of virtue.” +\p +\v 19 While he was saying this, they heaped up fuel, and setting fire to it, strained him on the wheel still more. +\v 20 The wheel was defiled all over with blood. The hot ashes were quenched by the droppings of gore, and pieces of flesh were scattered about the axles of the machine. +\v 21 Although the framework of his bones was now destroyed, the high-minded and Abrahamic youth didn’t groan. +\v 22 But, as though transformed by fire into immortality, he nobly endured the rackings, saying, +\v 23 “Imitate me, O kindred. Never desert your station, nor renounce my brotherhood in courage. Fight the holy and honorable fight of religion, +\v 24 by which means our just and paternal Providence, becoming merciful to the nation, will punish the pestilent tyrant.” +\v 25 Saying this, the revered youth abruptly closed his life. +\p +\v 26 When all admired his courageous soul, the spearmen brought forward him who was second oldest, and having put on iron gauntlets with sharp hooks, bound him to the rack. +\v 27 When, on enquiring whether he would eat before he was tortured, they heard his noble sentiment. +\v 28 After they with the iron gauntlets had violently dragged all the flesh from the neck to the chin, the panther-like animals tore off the very skin of his head, but he, bearing with firmness this misery, said, +\v 29 “How sweet is every form of death for the religion of our fathers!” Then he said to the tyrant, +\v 30 “Don’t you think, most cruel of all tyrants, that you are now tortured more than I, finding your arrogant conception of tyranny conquered by our perseverance in behalf of our religion? +\v 31 For I lighten my suffering by the pleasures which are connected with virtue. +\v 32 But you are tortured with threatenings for impiety. You won’t escape, most corrupt tyrant, the vengeance of Divine wrath.” +\c 10 +\p +\v 1 Now this one endured this praiseworthy death. The third was brought along, and exhorted by many to taste and save his life. +\v 2 But he cried out and said, “Don’t you know that the father of those who are dead is my father also, and that the same mother bore me, and that I was brought up in the same way? +\v 3 I don’t renounce the noble relationship of my kindred. +\v 4 Now then, whatever instrument of vengeance you have, apply it to my body, for you aren’t able to touch my soul, even if you want to.” +\v 5 But they, highly incensed at his boldness of speech, dislocated his hands and feet with racking engines, and wrenching them from their sockets, dismembered him. +\v 6 They dragged around his fingers, his arms, his legs, and his ankles. +\v 7 Not being able by any means to strangle him, they tore off his skin, together with the extreme tips of his fingers, and then dragged him to the wheel, +\v 8 around which his vertebral joints were loosened, and he saw his own flesh torn to shreds, and streams of blood flowing from his entrails. +\v 9 When about to die, he said, +\v 10 “We, O accursed tyrant, suffer this for the sake of Divine education and virtue. +\v 11 But you, for your impiety and blood shedding, will endure unceasing torments.” +\p +\v 12 Thus having died worthily of his kindred, they dragged forward the fourth, saying, +\v 13 “Don’t share the madness of your kindred, but respect the king and save yourself.” +\p +\v 14 But he said to them, “You don’t have a fire so scorching as to make me play the coward. +\v 15 By the blessed death of my kindred, and the eternal punishment of the tyrant, and the glorious life of the pious, I will not repudiate the noble brotherhood. +\v 16 Invent, O tyrant, tortures, that you may learn, even through them, that I am the brother of those tormented before.” +\p +\v 17 When he had said this, the blood-thirsty, murderous, and unholy Antiochus ordered his tongue to be cut out. +\v 18 But he said, “Even if you take away the organ of speech, God still hears the silent. +\v 19 Behold, my tongue is extended, cut it off; for in spite of that you won’t silence our reasoning. +\v 20 We gladly lose our limbs on behalf of God. +\v 21 But God will speedily find you, since you cut off the tongue, the instrument of divine melody.” +\c 11 +\p +\v 1 When he had died, disfigured in his torments, the fifth leaped forward, and said, +\v 2 “I don’t intend, O tyrant, to get excused from the torment which is on behalf of virtue. +\v 3 But I have come of my own accord, that by my death you may owe heavenly vengeance and punishment for more crimes. +\v 4 O you hater of virtue and of men, what have we done that you thus revel in our blood? +\v 5 Does it seem evil to you that we worship the Founder of all things, and live according to his surpassing law? +\v 6 But this is worthy of honors, not torments, +\v 7 if you had been capable of the higher feelings of men, and possessed the hope of salvation from God. +\v 8 Behold now, being alien from God, you make war against those who are religious toward God.” +\p +\v 9 As he said this, the spearbearers bound him and drew him to the rack, +\v 10 to which binding him at his knees, and fastening them with iron fetters, they bent down his loins upon the wedge of the wheel; and his body was then dismembered, scorpion-fashion. +\v 11 With his breath thus confined, and his body strangled, he said, +\v 12 “A great favor you bestow upon us, O tyrant, by enabling us to manifest our adherence to the law by means of nobler sufferings.” +\p +\v 13 He also being dead, the sixth, quite a youth, was brought out. On the tyrant asking him whether he would eat and be delivered, he said, +\v 14 “I am indeed younger than my brothers, but in understanding I am as old. +\v 15 I was born and reared to the same end. We are bound to die also on behalf of the same cause. +\v 16 So if you think it is proper to torment us for not eating the unclean, then torment!” +\p +\v 17 As he said this, they brought him to the wheel. +\v 18 Extended upon this, with limbs racked and dislocated, he was gradually roasted from beneath. +\v 19 Having heated sharp spits, they approached them to his back; and having transfixed his sides, they burned away his entrails. +\v 20 He, while tormented, said, “O good and holy contest, in which for the sake of religion, we kindred have been called to the arena of pain, and have not been conquered. +\v 21 For religious understanding, O tyrant, is unconquered. +\v 22 Armed with upright virtue, I also will depart with my kindred. +\v 23 I, too, bearing with me a great avenger, O inventor of tortures, and enemy of the truly pious. +\v 24 We six youths have destroyed your tyranny. +\v 25 For isn’t your inability to overrule our reasoning, and to compel us to eat the unclean, your destruction? +\v 26 Your fire is cold to us. Your racks are painless, and your violence harmless. +\v 27 For the guards not of a tyrant but of a divine law are our defenders. Through this we keep our reasoning unconquered.” +\c 12 +\p +\v 1 When he, too, had undergone blessed martyrdom, and died in the cauldron into which he had been thrown, the seventh, the youngest of all, came forward, +\v 2 whom the tyrant pitying, though he had been dreadfully reproached by his kindred, +\v 3 seeing him already encompassed with chains, had him brought nearer, and endeavored to counsel him, saying, +\v 4 “You see the end of the madness of your kindred, for they have died in torture through disobedience. You, if disobedient, having been miserably tormented, will yourself perish prematurely. +\v 5 But if you obey, you will be my friend, and have a charge over the affairs of the kingdom.” +\v 6 Having thus exhorted him, he sent for the boy’s mother, that, by showing compassion to her for the loss of so many sons, he might incline her, through the hope of safety, to make the survivor obedient. +\p +\v 7 He, after his mother had urged him on in the Hebrew tongue, (as we will soon relate) said, +\v 8 “Release me that I may speak to the king and all his friends.” +\v 9 They, rejoicing exceedingly at the promise of the youth, quickly let him go. +\v 10 He, running up to the pans, said, +\v 11 “Impious tyrant, and most blasphemous man, were you not ashamed, having received prosperity and a kingdom from God, to kill His servants, and to rack the doers of godliness? +\v 12 Therefore the divine vengeance is reserving you for eternal fire and torments, which will cling to you for all time. +\v 13 Weren’t you ashamed, man as you are, yet most savage, to cut out the tongues of men of like feeling and origin, and having thus abused to torture them? +\v 14 But they, bravely dying, fulfilled their religion toward God. +\v 15 But you will groan as you deserve for having slain without cause the champions of virtue. +\v 16 Therefore,” he continued, “I myself, being about to die, +\v 17 will not forsake my kindred. +\v 18 I call upon the God of my fathers to be merciful to my race. +\v 19 But you, both living and dead, he will punish.” +\v 20 Thus having prayed, he hurled himself into the pans; and so expired. +\c 13 +\p +\v 1 If then, the seven kindred despised troubles even to death, it is admitted on all sides that righteous reasoning is absolute master over the emotions. +\v 2 For just as if they had eaten of the unholy as slaves to the emotions, we would have said that they had been conquered by them. +\v 3 Now it is not so. But by means of the reasoning which is praised by God, they mastered their emotions. +\v 4 It is impossible to overlook the leadership of reflection, for it gained the victory over both emotions and troubles. +\v 5 How, then, can we avoid according to these men mastery of emotion through right reasoning, since they didn’t withdraw from the pains of fire? +\v 6 For just as by means of towers projecting in front of harbors men break the threatening waves, and thus assure a still course to vessels entering port, +\v 7 so that seven-towered right-reasoning of the young men, securing the harbour of religion, conquered the tempest of emotions. +\v 8 For having arranged a holy choir of piety, they encouraged one another, saying, +\v 9 “Brothers, may we die brotherly for the law. Let us imitate the three young men in Assyria who despised the equally afflicting furnace. +\v 10 Let’s not be cowards in the manifestation of piety.” +\v 11 One said, “Courage, brother!” and another, “Nobly endure!” +\v 12 Another said, “Remember of what stock you are;” and by the hand of our father Isaac endured to be slain for the sake of piety. +\v 13 One and all, looking at each other serene and confident, said, “Let’s sacrifice with all our heart our souls to God who gave them, and employ our bodies for the keeping of the law. +\v 14 Let’s not fear him who thinks he kills; +\v 15 for great is the trial of soul and danger of eternal torment laid up for those who transgress the commandment of God. +\v 16 Let’s arm ourselves, therefore, in the self-control, which is divine reasoning. +\v 17 If we suffer like this, Abraham, Isaac, and Jacob will receive us, and all the fathers will commend us. +\v 18 As each one of the kindred was hauled away, the rest exclaimed, “Don’t disgrace us, O brother, nor falsify those who died before you!” +\p +\v 19 Now you are not ignorant of the charm of brotherhood, which the Divine and all wise Providence has imparted through fathers to children, and has engendered through the mother’s womb. +\v 20 These brothers remained an equal time in their mother’s womb, and were formed for the same period, and nourished by the same blood, and were perfected through the same principle of life. +\v 21 They were brought forth at equal intervals, and sucked milk from the same fountains. Their brotherly souls were reared up lovingly together, +\v 22 and increase the more powerfully by reason of this simultaneous rearing, and by daily companionship, and by other education, and exercise in the law of God. +\p +\v 23 Brotherly love being thus sympathetically constituted, the seven kindred had a more sympathetic mutual harmony. +\v 24 For being educated in the same law, and practicing the same virtues, and reared up in a just course of life, they increased this harmony with each other. +\v 25 For the same ardor for what is right and honorable increased their goodwill and harmony toward each other. +\v 26 For it acting along with religion, made their brotherly feeling more desirable to them. +\v 27 And yet, although nature, companionship, and virtuous morals increased their brotherly love, those who were left endured to see their kindred, who were mistreated for their religion, tortured even to death. +\c 14 +\p +\v 1 More that this, they even urged them on to this mistreatment; so that they not only despised pains themselves, but they even got the better of their affections of brotherly love. +\v 2 Reasoning is more royal than a king, and freer than freemen! +\v 3 What a sacred and harmonious concert of the seven kindred as concerning piety! +\v 4 None of the seven youths turned cowardly or shrank back from death. +\v 5 But all of them, as though running the road to immortality, hastened on to death through tortures. +\v 6 For just as hands and feet are moved sympathetically with the directions of the soul, so those holy youths agreed to death for religion’s sake, as through the immortal soul of religion. +\v 7 O holy seven of harmonious kindred! For as the seven days of creation, about religion, +\v 8 so the youths, circling around the number seven, annulled the fear of torments. +\v 9 We now shudder at the recital of the affliction of those young men; but they not only saw, and not only heard the immediate execution of the threat, but undergoing it, persevered; and that through the pains of fire. +\v 10 What could be more painful? For the power of fire, being sharp and quick, speedily dissolved their bodies. +\v 11 Don’t think it wonderful that reasoning ruled over those men in their torments, when even a woman’s mind despised more manifold pains. +\v 12 For the mother of those seven youths endured the rackings of each of her children. +\p +\v 13 Consider how comprehensive is the love of offspring, which draws every one to sympathy of affection, +\v 14 where irrational animals possess a similar sympathy and love for their offspring with men. +\v 15 The tame birds frequenting the roofs of our houses defend their fledglings. +\v 16 Others build their nests and hatch their young on the tops of mountains, in the precipices of valleys, and the holes and tops of trees, and keep intruders away. +\v 17 If not able to do this, they fly circling round them in agony of affection, calling out in their own note, and save their offspring in whatever manner they are able. +\v 18 But why should we point attention to the sympathy toward children shown by irrational animals? +\v 19 Even bees, at the season of honey-making, attack all who approach, and pierce with their sting, as with a sword, those who draw near their hive, and repel them even to death. +\v 20 But sympathy with her children didn’t turn away the mother of the young men, who had a spirit kindred with that of Abraham. +\c 15 +\p +\v 1 O reasoning of the sons, lord over the emotions, and religion more desirable to a mother than children! +\v 2 The mother, when two things were set before her, religion and the safety of her seven sons for a time, on the conditional promise of a tyrant, +\v 3 rather elected the religion which according to God preserves to eternal life. +\v 4 In what way can I describe ethically the affections of parents toward their children, the resemblance of soul and of form impressed into the small type of a child in a wonderful manner, especially through the greater sympathy of mothers with the feelings of those born of them! +\v 5 For by how much mothers are by nature weak in disposition and prolific in offspring, by so much the fonder they are of children. +\v 6 Of all mothers, the mother of the seven was the fondest of children, who in seven childbirths had deeply engendered love toward them. +\v 7 Through her many pains undergone in connection with each one, she was compelled to feel sympathy with them; +\v 8 yet, through fear of God, she neglected the temporary salvation of her children. +\v 9 Not only so, but on account of the excellent disposition to the law, her maternal affection toward them was increased. +\v 10 For they were both just and temperate, and courageous, high-minded, fond of their kindred, and so fond of their mother that even to death they obeyed her by observing the law. +\p +\v 11 Yet, though there were so many circumstances connected with love of children to draw on a mother to sympathy, in the case of none of them were the various tortures able to pervert her principle. +\v 12 But she inclined each one separately and all together to death for religion. +\v 13 O holy nature and parental feeling, and reward of bringing up children, and unconquerable maternal affection! +\v 14 At the racking and roasting of each one of them, the observant mother was prevented by religion from changing. +\v 15 She saw her children’s flesh dissolving around the fire, and their extremities quivering on the ground, and the flesh of their heads dropped forward down to their beards, like masks. +\p +\v 16 O you mother, who was tried at this time with bitterer pangs than those at birth! +\v 17 O you only woman who have produced perfect holiness! +\v 18 Your firstborn, expiring, didn’t turn you, nor the second, looking miserable in his torments, nor the third, breathing out his soul. +\v 19 You didn’t weep when you saw each of their eyes looking sternly at their tortures, and their nostrils foreboding death! +\v 20 When you saw children’s flesh heaped upon children’s flesh that had been torn off, heads decapitated upon heads, dead falling upon the dead, and a choir of children turned through torture into a burying ground, you didn’t lament. +\v 21 Not so do siren melodies or songs of swans attract the hearers to listening, O voices of children calling on your mother in the midst of torments! +\v 22 With what and what manner of torments was the mother herself tortured, as her sons were undergoing the wheel and the fires! +\v 23 But religious reasoning, having strengthened her courage in the midst of sufferings, enabled her to forego, for the time, parental love. +\p +\v 24 Although seeing the destruction of seven children, the noble mother, after one embrace, stripped off her feelings through faith in God. +\v 25 For just as in a council room, seeing in her own soul vehement counselors, nature and parentage and love of her children, and the racking of her children, +\v 26 she holding two votes, one for the death, the other for the preservation of her children, +\v 27 didn’t lean to that which would have saved her children for the safety of a brief space. +\v 28 But this daughter of Abraham remembered his holy fortitude. +\p +\v 29 O holy mother of a nation, avenger of the law, defender of religion, and prime bearer in the battle of the affections! +\v 30 O you nobler in endurance than males, and more courageous than men in perseverance! +\v 31 For like Noah’s ship, bearing the world in the world-filling flood, bore up against the waves, +\v 32 so you, the guardian of the law, when surrounded on every side by the flood of emotions, and assaulted by violent storms which were the torments of your children, bore up nobly against the storms against religion. +\c 16 +\p +\v 1 If, then, even a woman, and that an aged one, and the mother of seven children, endured to see her children’s torments even to death, it must be admitted that religious reasoning is master even of the emotions. +\v 2 I have proved, then, that not only men have obtained the mastery of their emotions, but also that a woman despised the greatest torments. +\v 3 The lions around Daniel were not so fierce, nor the furnace of Misael burning with most vehement fires as that natural love of children burned within her, when she saw her seven sons tortured. +\v 4 But with the reasoning of religion the mother quenched emotions so great and powerful. +\v 5 For we must consider also this: that, had the woman been faint hearted, as being their mother, she would have lamented over them, and perhaps might have spoken thus: +\v 6 “Ah! I am wretched and many times miserable, who having born seven sons, have become the mother of none. +\v 7 O seven useless childbirths, and seven profitless periods of labor, and fruitless givings of suck, and miserable nursings at the breast. +\v 8 Vainly, for your sakes, O sons, have I endured many pangs, and the more difficult anxieties of rearing. +\v 9 Alas, of my children, some of you unmarried, and some who have married to no profit, I will not see your children, nor have the joy of being a grandmother. +\v 10 Ah, that I who had many and fair children, should be a lone widow full of sorrows! +\v 11 Nor, should I die, will I have a son to bury me.” But with such a lament as this, the holy and God-fearing mother wept for none of them. +\v 12 Nor did she divert any of them from death, nor grieve for them as for the dead. +\v 13 But as one possessed with an adamant mind, and as one bringing forth again her full number of sons to immortality, she rather urged them to death on behalf of religion. +\v 14 O woman, soldier of God for religion, you, aged and a female, have conquered through endurance even a tyrant; and even though weak, have been found more powerful in deeds and words. +\v 15 For when you were seized along with your children, you stood looking at Eleazar in torture, and said to your sons in the Hebrew tongue, +\v 16 “O sons, the contest is noble, to which you being called as a witness for the nation, strive zealously for the laws of your country. +\v 17 For it would be disgraceful if this old man endured pains for the sake of righteousness, and that you who are younger would be afraid of the tortures. +\v 18 Remember that through God, you obtained existence and have enjoyed it. +\v 19 Therefore, you ought to bear every affliction because of God. +\v 20 For him also our father Abraham was zealous to sacrifice Isaac our progenitor, and didn’t shudder at the sight of his own paternal hand descending down with the sword upon him. +\v 21 The righteous Daniel was cast to the lions; and Ananias, Azarias, and Misael were hurled into a fiery furnace, yet they endured through God. +\v 22 You, then, having the same faith toward God, don’t be troubled. +\v 23 For it is unreasonable that they who know religion wouldn’t stand up against troubles. +\v 24 With these arguments, the mother of seven, exhorting each of her sons, encouraged and persuaded them not to transgress God’s commandment. +\v 25 They saw this, too, that those who die for God, live to God, like Abraham, Isaac, Jacob, and all the patriarchs. +\c 17 +\p +\v 1 Some of the spearbearers said that when she herself was about to be seized for the purpose of being put to death, she threw herself on the pile, rather than let them touch her body. +\v 2 O you mother, who together with seven children destroyed the violence of the tyrant, and rendered void his wicked intentions, and exhibited the nobleness of faith! +\v 3 For you, like a house bravely built on the pillar of your children, bore the shock of tortures without swaying. +\v 4 Cheer up, therefore, O holy-minded mother! Hold the firm hope of your steadfastness with God. +\v 5 Not so gracious does the moon appear with the stars in heaven, as you are established as honorable before God, and fixed in the sky with your sons whom you illuminated with religion to the stars. +\v 6 For your bearing of children was after the manner of a child of Abraham. +\p +\v 7 If it were lawful for us to paint as on a tablet the religion of your story, the spectators wouldn’t shudder at seeing the mother of seven children enduring for the sake of religion various tortures even to death. +\v 8 It would have been a worthwhile thing to have inscribed on the tomb itself these words as a memorial to those of the nation, +\v 9 “Here an aged priest, an aged woman, and seven sons, are buried through the violence of a tyrant, who wished to destroy the society of the Hebrews. +\v 10 These also avenged their nation, looking to God, and enduring torments to death.” +\v 11 For it was truly a divine contest which was carried through by them. +\v 12 For at that time virtue presided over the contest, approving the victory through endurance, namely, immortality, eternal life. +\v 13 Eleazar was the first to contend. The mother of the seven children entered the contest, and the kindred contended. +\v 14 The tyrant was the antagonist; and the world and living men were the spectators. +\v 15 Reverence for God conquered, and crowned her own athletes. +\v 16 Who didn’t admire those champions of true legislation? Who were not amazed? +\v 17 The tyrant himself, and all their council, admired their endurance, +\v 18 through which, they also now stand beside the divine throne and live a blessed life. +\v 19 For Moses says, “All the saints are under your hands.” +\v 20 These, therefore, having been sanctified through God, have been honored not only with this honor, but that also by the fact that because of them, the enemy didn’t overcome our nation. +\v 21 That tyrant was punished and their country purified. +\v 22 For they became the ransom to the sin of the nation. The Divine Providence saved Israel, which was afflicted before, by the blood of those pious ones and the death that appeased wrath. +\v 23 For the tyrant Antiochus, looking to their courageous virtue and to their endurance in torture, proclaimed that endurance as an example to his soldiers. +\v 24 They proved to be to him noble and brave for land battles and for sieges; and he conquered and stormed the towns of all his enemies. +\c 18 +\p +\v 1 O Israelite children, descendants of the seed of Abraham, obey this law and in every way be religious, +\v 2 knowing that religious reasoning is lord of the emotions, and those not only inward but outward. +\p +\v 3 Therefore those people who gave up their bodies to pains for the sake of religion were not only admired by men, but were deemed worthy of a divine portion. +\v 4 The nation through them obtained peace, and having renewed the observance of the law in their country, drove the enemy out of the land. +\v 5 The tyrant Antiochus was both punished on earth, and is punished now that he is dead; for when he was quite unable to compel the Israelites to adopt foreign customs, and to desert the manner of life of their fathers, +\v 6 then, departing from Jerusalem, he made war against the Persians. +\v 7 The righteous mother of the seven children spoke also as follows to her offspring: “I was a pure virgin, and didn’t go beyond my father’s house, but I took care of the rib from which woman was made. +\v 8 No destroyer of the desert or ravisher of the plain injured me, nor did the destructive, deceitful snake make plunder of my chaste virginity. I remained with my husband during the time of my maturity. +\v 9 When these, my children, arrived at maturity, their father died. He was blessed! For having sought out a life of fertility in children, he was not grieved with a period of loss of children. +\v 10 He used to teach you, when yet with you, the law and the prophets. +\v 11 He used to read to you about the slaying of Abel by Cain, the offering up of Isaac, and the imprisonment of Joseph. +\v 12 He used to tell you of the zealous Phinehas, and informed you of Ananias, Azarias, and Misael in the fire. +\v 13 He used to glorify Daniel, who was in the den of lions, and pronounce him blessed. +\v 14 He used to remind you of the scripture of Esaias, which says, “Even if you pass through the fire, it won’t burn you.” +\v 15 He chanted to you David, the hymn writer, who says, “Many are the afflictions of the just.” +\v 16 He declared the proverbs of Solomon, who says, “He is a tree of life to all those who do His will.” +\v 17 He used to confirm what Ezekiel said: “Will these dry bones live?” +\v 18 For he didn’t forget the song which Moses taught, proclaiming, “I will kill, and I will make alive.” +\v 19 This is our life and the length of our days. +\p +\v 20 O that bitter, and yet not bitter, day when the bitter tyrant of the Greeks, quenching fire with fire in his cruel caldrons, brought with boiling rage the seven sons of the daughter of Abraham to the rack, and to all his torments! +\v 21 He pierced the balls of their eyes, and cut out their tongues, and put them to death with varied tortures. +\v 22 Therefore divine retribution pursued and will pursue the pestilent wretch. +\v 23 But the children of Abraham, with their victorious mother, are assembled together to the choir of their father, having received pure and immortal souls from God. +\v 24 To him be glory forever and ever. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/66-DAGeng-web.usfm b/bibles/eng-web_usfm/66-DAGeng-web.usfm new file mode 100644 index 0000000..2843fe3 --- /dev/null +++ b/bibles/eng-web_usfm/66-DAGeng-web.usfm @@ -0,0 +1,812 @@ +\id DAG World English Bible (WEB) +\ide UTF-8 +\h Daniel (Greek) +\toc1 The Book of Daniel with Greek Portions +\toc2 Daniel (Greek) +\toc3 DaG +\mt2 The Book of +\mt1 Daniel +\mt2 with Greek Portions +\c 1 +\p +\v 1 In the third year of the reign of Jehoiakim king of Judah, Nebuchadnezzar king of Babylon came to Jerusalem and besieged it. +\v 2 The Lord\f + \fr 1:2 \ft The word translated “Lord” is “Adonai.”\f* gave Jehoiakim king of Judah into his hand, with part of the vessels of the house of God;\f + \fr 1:2 \ft The Hebrew word rendered “God” is “\+wh אֱלֹהִ֑ים\+wh*” (Elohim).\f* and he carried them into the land of Shinar to the house of his god. He brought the vessels into the treasure house of his god. +\p +\v 3 The king spoke to Ashpenaz the master of his eunuchs, that he should bring in some of the children of Israel, even of the royal offspring\f + \fr 1:3 \ft or, seed\f* and of the nobles— +\v 4 youths in whom was no defect, but well-favored, and skillful in all wisdom, and endowed with knowledge, and understanding science, and who had the ability to serve in the king’s palace; and that he should teach them the learning and the language of the Chaldeans. +\v 5 The king appointed for them a daily portion of the king’s delicacies, and of the wine which he drank, and that they should be nourished three years; that at its end they should serve the king. +\p +\v 6 Now among these were of the children of Judah: Daniel, Hananiah, Mishael, and Azariah. +\v 7 The prince of the eunuchs gave names to them: to Daniel he gave the name Belteshazzar; to Hananiah, Shadrach; to Mishael, Meshach; and to Azariah, Abednego. +\p +\v 8 But Daniel purposed in his heart that he would not defile himself with the king’s delicacies, nor with the wine which he drank. Therefore he requested of the prince of the eunuchs that he might not defile himself. +\v 9 Now God made Daniel find kindness and compassion in the sight of the prince of the eunuchs. +\v 10 The prince of the eunuchs said to Daniel, “I fear my lord the king, who has appointed your food and your drink. For why should he see your faces worse looking than the youths who are of your own age? Then you would endanger my head with the king.” +\p +\v 11 Then Daniel said to the steward whom the prince of the eunuchs had appointed over Daniel, Hananiah, Mishael, and Azariah: +\v 12 “Test your servants, I beg you, ten days; and let them give us vegetables to eat and water to drink. +\v 13 Then let our faces be examined before you, and the face of the youths who eat of the king’s delicacies; and as you see, deal with your servants.” +\v 14 So he listened to them in this matter, and tested them for ten days. +\p +\v 15 At the end of ten days, their faces appeared fairer, and they were fatter in flesh, than all the youths who ate of the king’s delicacies. +\v 16 So the steward took away their delicacies, and the wine that they would drink, and gave them vegetables. +\p +\v 17 Now as for these four youths, God gave them knowledge and skill in all learning and wisdom; and Daniel had understanding in all visions and dreams. +\p +\v 18 At the end of the days which the king had appointed for bringing them in, the prince of the eunuchs brought them in before Nebuchadnezzar. +\v 19 The king talked with them; and among them all was found no one like Daniel, Hananiah, Mishael, and Azariah. Therefore they served the king. +\v 20 In every matter of wisdom and understanding concerning which the king inquired of them, he found them ten times better than all the magicians and enchanters who were in all his realm. +\p +\v 21 Daniel continued serving even to the first year of King Cyrus. +\c 2 +\p +\v 1 In the second year of the reign of Nebuchadnezzar, Nebuchadnezzar dreamed dreams; and his spirit was troubled, and his sleep went from him. +\v 2 Then the king commanded that the magicians, the enchanters, the sorcerers, and the Chaldeans be called to tell the king his dreams. So they came in and stood before the king. +\v 3 The king said to them, “I have dreamed a dream, and my spirit is troubled to know the dream.” +\p +\v 4 Then the Chaldeans spoke to the king in the Syrian language, “O king, live forever! Tell your servants the dream, and we will show the interpretation.” +\p +\v 5 The king answered the Chaldeans, “The thing has gone from me. If you don’t make known to me the dream and its interpretation, you will be cut in pieces, and your houses will be made a dunghill. +\v 6 But if you show the dream and its interpretation, you will receive from me gifts, rewards, and great honor. Therefore show me the dream and its interpretation.” +\p +\v 7 They answered the second time and said, “Let the king tell his servants the dream, and we will show the interpretation.” +\p +\v 8 The king answered, “I know of a certainty that you are trying to gain time, because you see the thing has gone from me. +\v 9 But if you don’t make known to me the dream, there is but one law for you; for you have prepared lying and corrupt words to speak before me, until the situation changes. Therefore tell me the dream, and I will know that you can show me its interpretation.” +\p +\v 10 The Chaldeans answered before the king, and said, “There is not a man on the earth who can show the king’s matter, because no king, lord, or ruler, has asked such a thing of any magician, enchanter, or Chaldean. +\v 11 It is a rare thing that the king requires, and there is no other who can show it before the king, except the gods, whose dwelling is not with flesh.” +\p +\v 12 Because of this, the king was angry and very furious, and commanded that all the wise men of Babylon be destroyed. +\v 13 So the decree went out, and the wise men were to be slain. They sought Daniel and his companions to be slain. +\p +\v 14 Then Daniel returned answer with counsel and prudence to Arioch the captain of the king’s guard, who had gone out to kill the wise men of Babylon. +\v 15 He answered Arioch the king’s captain, “Why is the decree so urgent from the king?” Then Arioch made the thing known to Daniel. +\v 16 Daniel went in, and desired of the king that he would appoint him a time, and he would show the king the interpretation. +\p +\v 17 Then Daniel went to his house and made the thing known to Hananiah, Mishael, and Azariah, his companions, +\v 18 that they would desire mercies of the God of heaven concerning this secret, and that Daniel and his companions would not perish with the rest of the wise men of Babylon. +\v 19 Then the secret was revealed to Daniel in a vision of the night. Then Daniel blessed the God of heaven. +\v 20 Daniel answered, +\q1 “Blessed be the name of God forever and ever; +\q2 for wisdom and might are his. +\q1 +\v 21 He changes the times and the seasons. +\q2 He removes kings and sets up kings. +\q1 He gives wisdom to the wise, +\q2 and knowledge to those who have understanding. +\q1 +\v 22 He reveals the deep and secret things. +\q2 He knows what is in the darkness, +\q2 and the light dwells with him. +\q1 +\v 23 I thank you and praise you, +\q2 O God of my fathers, +\q1 who have given me wisdom and might, +\q2 and have now made known to me what we desired of you; +\q2 for you have made known to us the king’s matter.” +\p +\v 24 Therefore Daniel went in to Arioch, whom the king had appointed to destroy the wise men of Babylon. He went and said this to him: “Don’t destroy the wise men of Babylon. Bring me in before the king, and I will show to the king the interpretation.” +\p +\v 25 Then Arioch brought in Daniel before the king in haste, and said this to him: “I have found a man of the children of the captivity of Judah who will make known to the king the interpretation.” +\p +\v 26 The king answered Daniel, whose name was Belteshazzar, “Are you able to make known to me the dream which I have seen, and its interpretation?” +\p +\v 27 Daniel answered before the king, and said, “The secret which the king has demanded can’t be shown to the king by wise men, enchanters, magicians, or soothsayers; +\v 28 but there is a God in heaven who reveals secrets, and he has made known to King Nebuchadnezzar what will be in the latter days. Your dream, and the visions of your head on your bed, are these: +\p +\v 29 “As for you, O king, your thoughts came on your bed, what should happen hereafter; and he who reveals secrets has made known to you what will happen. +\v 30 But as for me, this secret is not revealed to me for any wisdom that I have more than any living, but to the intent that the interpretation may be made known to the king, and that you may know the thoughts of your heart. +\p +\v 31 “You, O king, saw, and behold,\f + \fr 2:31 \ft “Behold”, from “\+wh הִנֵּה\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* a great image. This image, which was mighty, and whose brightness was excellent, stood before you; and its appearance was terrifying. +\v 32 As for this image, its head was of fine gold, its chest and its arms of silver, its belly and its thighs of bronze, +\v 33 its legs of iron, its feet part of iron, and part of clay. +\v 34 You saw until a stone was cut out without hands, which struck the image on its feet that were of iron and clay, and broke them in pieces. +\v 35 Then the iron, the clay, the bronze, the silver, and the gold were broken in pieces together, and became like the chaff of the summer threshing floors. The wind carried them away, so that no place was found for them. The stone that struck the image became a great mountain, and filled the whole earth. +\p +\v 36 “This is the dream; and we will tell its interpretation before the king. +\v 37 You, O king, are king of kings, to whom the God of heaven has given the kingdom, the power, the strength, and the glory. +\v 38 Wherever the children of men dwell, he has given the animals of the field and the birds of the sky into your hand, and has made you rule over them all. You are the head of gold. +\p +\v 39 “After you, another kingdom will arise that is inferior to you; and a third kingdom of bronze, which will rule over all the earth. +\v 40 The fourth kingdom will be strong as iron, because iron breaks in pieces and subdues all things; and as iron that crushes all these, it will break in pieces and crush. +\v 41 Whereas you saw the feet and toes, part of potters’ clay, and part of iron, it will be a divided kingdom; but there will be in it of the strength of the iron, because you saw the iron mixed with miry clay. +\v 42 As the toes of the feet were part of iron, and part of clay, so the kingdom will be partly strong, and partly brittle. +\v 43 Whereas you saw the iron mixed with miry clay, they will mingle themselves with the seed of men; but they won’t cling to one another, even as iron does not mix with clay. +\p +\v 44 “In the days of those kings the God of heaven will set up a kingdom which will never be destroyed, nor will its sovereignty be left to another people; but it will break in pieces and consume all these kingdoms, and it will stand forever. +\v 45 Because you saw that a stone was cut out of the mountain without hands, and that it broke in pieces the iron, the bronze, the clay, the silver, and the gold. The great God has made known to the king what will happen hereafter. The dream is certain, and its interpretation sure.” +\p +\v 46 Then King Nebuchadnezzar fell on his face, worshiped Daniel, and commanded that they should offer an offering and sweet odors to him. +\v 47 The king answered to Daniel, and said, “Of a truth your God is the God of gods, and the Lord of kings, and a revealer of secrets, since you have been able to reveal this secret.” +\p +\v 48 Then the king made Daniel great, and gave him many great gifts, and made him rule over the whole province of Babylon, and to be chief governor over all the wise men of Babylon. +\v 49 Daniel requested of the king, and he appointed Shadrach, Meshach, and Abednego over the affairs of the province of Babylon; but Daniel was in the king’s gate. +\c 3 +\p +\v 1 Nebuchadnezzar the king made an image of gold, whose height was sixty cubits,\f + \fr 3:1 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* and its width six cubits. He set it up in the plain of Dura, in the province of Babylon. +\v 2 Then Nebuchadnezzar the king sent to gather together the local governors, the deputies, and the governors, the judges, the treasurers, the counselors, the sheriffs, and all the rulers of the provinces, to come to the dedication of the image which Nebuchadnezzar the king had set up. +\v 3 Then the local governors, the deputies, and the governors, the judges, the treasurers, the counselors, the sheriffs, and all the rulers of the provinces, were gathered together to the dedication of the image that Nebuchadnezzar the king had set up; and they stood before the image that Nebuchadnezzar had set up. +\p +\v 4 Then the herald cried aloud, “To you it is commanded, peoples, nations, and languages, +\v 5 that whenever you hear the sound of the horn, flute, zither, lyre, harp, pipe, and all kinds of music, you fall down and worship the golden image that Nebuchadnezzar the king has set up. +\v 6 Whoever doesn’t fall down and worship shall be cast into the middle of a burning fiery furnace the same hour.” +\p +\v 7 Therefore at that time, when all the peoples heard the sound of the horn, flute, zither, lyre, harp, pipe, and all kinds of music, all the peoples, the nations, and the languages, fell down and worshiped the golden image that Nebuchadnezzar the king had set up. +\p +\v 8 Therefore at that time certain Chaldeans came near, and brought accusation against the Jews. +\v 9 They answered Nebuchadnezzar the king, “O king, live for ever! +\v 10 You, O king, have made a decree that every man who hears the sound of the horn, flute, zither, lyre, harp, pipe, and all kinds of music shall fall down and worship the golden image; +\v 11 and whoever doesn’t fall down and worship shall be cast into the middle of a burning fiery furnace. +\v 12 There are certain Jews whom you have appointed over the affairs of the province of Babylon: Shadrach, Meshach, and Abednego. These men, O king, have not respected you. They don’t serve your gods, and don’t worship the golden image which you have set up.” +\p +\v 13 Then Nebuchadnezzar in rage and fury commanded that Shadrach, Meshach, and Abednego be brought. Then these men were brought before the king. +\v 14 Nebuchadnezzar answered them, “Is it on purpose, Shadrach, Meshach, and Abednego, that you don’t serve my god, nor worship the golden image which I have set up? +\v 15 Now if you are ready whenever you hear the sound of the horn, flute, zither, lyre, harp, pipe, and all kinds of music to fall down and worship the image which I have made, good; but if you don’t worship, you shall be cast the same hour into the middle of a burning fiery furnace. Who is that god who will deliver you out of my hands?” +\p +\v 16 Shadrach, Meshach, and Abednego answered the king, “Nebuchadnezzar, we have no need to answer you in this matter. +\v 17 If it happens, our God whom we serve is able to deliver us from the burning fiery furnace; and he will deliver us out of your hand, O king. +\v 18 But if not, let it be known to you, O king, that we will not serve your gods or worship the golden image which you have set up.” +\p +\v 19 Then Nebuchadnezzar was full of fury, and the form of his appearance was changed against Shadrach, Meshach, and Abednego. He spoke, and commanded that they should heat the furnace seven times more than it was usually heated. +\v 20 He commanded certain mighty men who were in his army to bind Shadrach, Meshach, and Abednego, and to cast them into the burning fiery furnace. +\v 21 Then these men were bound in their pants, their tunics, their mantles, and their other clothes, and were cast into the middle of the burning fiery furnace. +\v 22 Therefore because the king’s commandment was urgent, and the furnace exceedingly hot, the flame of the fire killed those men who took up Shadrach, Meshach, and Abednego. +\v 23 These three men, Shadrach, Meshach, and Abednego, fell down bound into the middle of the burning fiery furnace. +\s1 THE SONG OF THE THREE HOLY CHILDREN\f + \fr 3:24 \ft \+bk The Song of the Three Holy Children\+bk* is an addition to \+bk Daniel\+bk* found in the Greek Septuagint but not found in the traditional Hebrew text of \+bk Daniel\+bk*. This portion is recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches. It is found inserted between Daniel 3:23 and Daniel 3:24 of the traditional Hebrew Bible. Here, the verses after 23 from the Hebrew Bible are numbered starting at 91 to make room for these verses.\f* +\p +\v 24 They walked in the midst of the fire, praising God, and blessing the Lord. +\v 25 Then Azarias stood, and prayed like this. Opening his mouth in the midst of the fire he said, +\v 26 “Blessed are you, O Lord, you God of our fathers! Your name is worthy to be praised and glorified for evermore; +\v 27 for you are righteous in all the things that you have done. Yes, all your works are true. Your ways are right, and all your judgments are truth. +\v 28 In all the things that you have brought upon us, and upon the holy city of our fathers, Jerusalem, you have executed true judgments. For according to truth and justice you have brought all these things upon us because of our sins. +\v 29 For we have sinned and committed iniquity in departing from you. +\v 30 In all things we have trespassed, and not obeyed your commandments or kept them. We haven’t done as you have commanded us, that it might go well with us. +\v 31 Therefore all that you have brought upon us, and everything that you have done to us, you have done in true judgment. +\v 32 You delivered us into the hands of lawless enemies, most hateful rebels, and to an unjust king who is the most wicked in all the world. +\v 33 And now we can’t open our mouth. Shame and reproach have come on your servants and those who worship you. +\v 34 Don’t utterly deliver us up, for your name’s sake. Don’t annul your covenant. +\v 35 Don’t cause your mercy to depart from us, for the sake of Abraham who is loved by you, and for the sake of Isaac your servant, and Israel your holy one, +\v 36 to whom you promised that you would multiply their offspring as the stars of the sky, and as the sand that is on the sea shore. +\v 37 For we, O Lord, have become less than any nation, and are brought low this day in all the world because of our sins. +\v 38 There isn’t at this time prince, or prophet, or leader, or burnt offering, or sacrifice, or oblation, or incense, or place to offer before you, and to find mercy. +\v 39 Nevertheless in a contrite heart and a humble spirit let us be accepted, +\v 40 like the burnt offerings of rams and bullocks, and like ten thousands of fat lambs. So let our sacrifice be in your sight this day, that we may wholly go after you, for they shall not be ashamed who put their trust in you. +\v 41 And now we follow you with all our heart. We fear you, and seek your face. +\v 42 Put us not to shame; but deal with us after your kindness, and according to the multitude of your mercy. +\v 43 Deliver us also according to your marvelous works, and give glory to your name, O Lord. Let all those who harm your servants be confounded. +\v 44 Let them be ashamed of all their power and might, and let their strength be broken. +\v 45 Let them know that you are the Lord, the only God, and glorious over the whole world.” +\p +\v 46 The king’s servants who put them in didn’t stop making the furnace hot with naphtha, pitch, tinder, and small wood, +\v 47 so that the flame streamed out forty nine cubits above the furnace. +\v 48 It spread and burned those Chaldeans whom it found around the furnace. +\v 49 But the angel of the Lord came down into the furnace together with Azarias and his fellows, and he struck the flame of the fire out of the furnace, +\v 50 and made the midst of the furnace as it had been a moist whistling wind, so that the fire didn’t touch them at all. It neither hurt nor troubled them. +\p +\v 51 Then the three, as out of one mouth, praised, glorified, and blessed God in the furnace, saying, +\v 52 “Blessed are you, O Lord, you God of our fathers, to be praised and exalted above all forever! +\v 53 Blessed is your glorious and holy name, to be praised and exalted above all forever! +\v 54 Blessed are you in the temple of your holy glory, to be praised and glorified above all forever! +\v 55 Blessed are you who see the depths and sit upon the cherubim, to be praised and exalted above all forever. +\v 56 Blessed are you on the throne of your kingdom, to be praised and extolled above all forever! +\v 57 Blessed are you in the firmament of heaven, to be praised and glorified forever! +\p +\v 58 O all you works of the Lord, bless the Lord! Praise and exalt him above all forever! +\v 59 O you heavens, bless the Lord! Praise and exalt him above all for ever! +\v 60 O you angels of the Lord, bless the Lord! Praise and exalt him above all forever! +\v 61 O all you waters that are above the sky, bless the Lord! Praise and exalt him above all forever! +\v 62 O all you powers of the Lord, bless the Lord! Praise and exalt him above all forever! +\v 63 O you sun and moon, bless the Lord! Praise and exalt him above all forever! +\v 64 O you stars of heaven, bless the Lord! Praise and exalt him above all forever! +\v 65 O every shower and dew, bless the Lord! Praise and exalt him above all forever! +\v 66 O all you winds, bless the Lord! Praise and exalt him above all forever! +\v 67 O you fire and heat, bless the Lord! Praise and exalt him above all forever! +\v 68 O you dews and storms of snow, bless the Lord! Praise and exalt him above all forever! +\v 69 O you nights and days, bless the Lord! Praise and exalt him above all forever! +\v 70 O you light and darkness, bless the Lord! Praise and exalt him above all forever! +\v 71 O you cold and heat, bless the Lord! Praise and exalt him above all forever! +\v 72 O you frost and snow, bless the Lord! Praise and exalt him above all forever! +\v 73 O you lightnings and clouds, bless the Lord! Praise and exalt him above all forever! +\v 74 O let the earth bless the Lord! Let it praise and exalt him above all forever! +\v 75 O you mountains and hills, bless the Lord! Praise and exalt him above all forever! +\v 76 O all you things that grow on the earth, bless the Lord! Praise and exalt him above all forever! +\v 77 \f + \fr 3:77 \ft Some authorities transpose this verse and the next one.\f*O sea and rivers, bless the Lord! Praise and exalt him above all forever! +\v 78 O you springs, bless the Lord! Praise and exalt him above all forever! +\v 79 O you whales and all that move in the waters, bless the Lord! Praise and exalt him above all forever! +\v 80 O all you birds of the air, bless the Lord! Praise and exalt him above all forever! +\v 81 O all you beasts and cattle, bless the Lord! Praise and exalt him above all forever! +\v 82 O you children of men, bless the Lord! Praise and exalt him above all forever! +\v 83 O let Israel bless the Lord! Praise and exalt him above all forever. +\v 84 O you priests of the Lord, bless the Lord! Praise and exalt him above all forever! +\v 85 O you servants of the Lord, bless the Lord! Praise and exalt him above all forever! +\v 86 O you spirits and souls of the righteous, bless the Lord! Praise and exalt him above all forever! +\v 87 O you who are holy and humble of heart, bless the Lord! Praise and exalt him above all forever! +\v 88 O Hananiah, Mishael, and Azariah, bless the Lord! Praise and exalt him above all forever; for he has rescued us from Hades, and saved us from the hand of death! He has delivered us out of the midst of the furnace and burning flame. He has delivered us out of the midst of the fire. +\v 89 O give thanks to the Lord, for he is good; for his mercy is forever. +\v 90 O all you who worship the Lord, bless the God of gods, praise him, and give him thanks; for his mercy is forever!” +\s1 Deliverance from the Furnace +\p +\v 91 \f + \fr 3:91 \ft Verses 91-97 were numbered 24-30 in the traditional Hebrew text of Daniel.\f*Then Nebuchadnezzar the king was astonished and rose up in haste. He spoke and said to his counselors, “Didn’t we cast three men bound into the middle of the fire?” +\p They answered the king, “True, O king.” +\p +\v 92 He answered, “Look, I see four men loose, walking in the middle of the fire, and they are unharmed. The appearance of the fourth is like a son of the gods.” +\p +\v 93 Then Nebuchadnezzar came near to the mouth of the burning fiery furnace. He spoke and said, “Shadrach, Meshach, and Abednego, you servants of the Most High God, come out, and come here!” +\p Then Shadrach, Meshach, and Abednego came out of the middle of the fire. +\v 94 The local governors, the deputies, and the governors, and the king’s counselors, being gathered together, saw these men, that the fire had no power on their bodies. The hair of their head wasn’t singed. Their pants weren’t changed. The smell of fire wasn’t even on them. +\p +\v 95 Nebuchadnezzar spoke and said, “Blessed be the God of Shadrach, Meshach, and Abednego, who has sent his angel and delivered his servants who trusted in him, and have changed the king’s word, and have yielded their bodies, that they might not serve nor worship any god, except their own God. +\v 96 Therefore I make a decree, that every people, nation, and language, who speak anything evil against the God of Shadrach, Meshach, and Abednego, shall be cut in pieces, and their houses shall be made a dunghill, because there is no other god who is able to deliver like this.” +\p +\v 97 Then the king promoted Shadrach, Meshach, and Abednego in the province of Babylon. +\c 4 +\pi1 +\v 1 Nebuchadnezzar the king, +\pi1 to all the peoples, nations, and languages, who dwell in all the earth: +\pi1 Peace be multiplied to you. +\pi1 +\v 2 It has seemed good to me to show the signs and wonders that the Most High God has worked toward me. +\q2 +\v 3 How great are his signs! +\q3 How mighty are his wonders! +\q2 His kingdom is an everlasting kingdom. +\q3 His dominion is from generation to generation. +\pi1 +\v 4 I, Nebuchadnezzar, was at rest in my house, and flourishing in my palace. +\v 5 I saw a dream which made me afraid; and the thoughts on my bed and the visions of my head troubled me. +\v 6 Therefore I made a decree to bring in all the wise men of Babylon before me, that they might make known to me the interpretation of the dream. +\v 7 Then the magicians, the enchanters, the Chaldeans, and the soothsayers came in; and I told the dream before them; but they didn’t make known to me its interpretation. +\v 8 But at the last Daniel came in before me, whose name was Belteshazzar, according to the name of my god, and in whom is the spirit of the holy gods. I told the dream before him, saying, +\pi1 +\v 9 “Belteshazzar, master of the magicians, because I know that the spirit of the holy gods is in you, and no secret troubles you, tell me the visions of my dream that I have seen, and its interpretation. +\v 10 These were the visions of my head on my bed: I saw, and behold, a tree in the middle of the earth; and its height was great. +\v 11 The tree grew, and was strong, and its height reached to the sky, and its sight to the end of all the earth. +\v 12 Its leaves were beautiful, and it had much fruit, and in it was food for all. The animals of the field had shade under it, and the birds of the sky lived in its branches, and all flesh was fed from it. +\pi1 +\v 13 “I saw in the visions of my head on my bed, and behold, a watcher and a holy one came down from the sky. +\v 14 He cried aloud, and said this, ‘Cut down the tree and cut off its branches! Shake off its leaves and scatter its fruit! Let the animals get away from under it, and the fowls from its branches. +\v 15 Nevertheless leave the stump of its roots in the earth, even with a band of iron and bronze, in the tender grass of the field; and let it be wet with the dew of the sky. Let his portion be with the animals in the grass of the earth. +\v 16 Let his heart be changed from man’s, and let an animal’s heart be given to him. Then let seven times pass over him. +\pi1 +\v 17 “‘The sentence is by the decree of the watchers, and the demand by the word of the holy ones, to the intent that the living may know that the Most High rules in the kingdom of men, and gives it to whomever he will, and sets up over it the lowest of men.’ +\pi1 +\v 18 “This dream I, King Nebuchadnezzar, have seen; and you, Belteshazzar, declare the interpretation, because all the wise men of my kingdom are not able to make known to me the interpretation; but you are able, for the spirit of the holy gods is in you.” +\pi1 +\v 19 Then Daniel, whose name was Belteshazzar, was stricken mute for a while, and his thoughts troubled him. The king answered, “Belteshazzar, don’t let the dream, or the interpretation, trouble you.” +\pi1 Belteshazzar answered, “My lord, may the dream be for those who hate you, and its interpretation to your adversaries. +\v 20 The tree that you saw, which grew and was strong, whose height reached to the sky, and its sight to all the earth; +\v 21 whose leaves were beautiful, and its fruit plentiful, and in it was food for all; under which the animals of the field lived, and on whose branches the birds of the sky had their habitation— +\v 22 it is you, O king, who have grown and become strong; for your greatness has grown, and reaches to the sky, and your dominion to the end of the earth. +\pi1 +\v 23 “Whereas the king saw a watcher and a holy one coming down from the sky, and saying, ‘Cut down the tree, and destroy it; nevertheless leave the stump of its roots in the earth, even with a band of iron and bronze, in the tender grass of the field, and let it be wet with the dew of the sky. Let his portion be with the animals of the field, until seven times pass over him.’ +\pi1 +\v 24 “This is the interpretation, O king, and it is the decree of the Most High, which has come on my lord the king: +\v 25 that you shall be driven from men, and your dwelling shall be with the animals of the field. You shall be made to eat grass as oxen, and shall be wet with the dew of the sky, and seven times shall pass over you; until you know that the Most High rules in the kingdom of men, and gives it to whomever he will. +\v 26 Their command to leave the stump of the roots of the tree means your kingdom will be sure to you, after you will have known that the heavens do rule. +\v 27 Therefore, O king, let my counsel be acceptable to you, and break off your sins by righteousness, and your iniquities by showing mercy to the poor. Perhaps there may be a lengthening of your tranquility.” +\pi1 +\v 28 All this came on the King Nebuchadnezzar. +\v 29 At the end of twelve months he was walking in the royal palace of Babylon. +\v 30 The king spoke and said, “Is not this great Babylon, which I have built for the royal dwelling place, by the might of my power and for the glory of my majesty?” +\pi1 +\v 31 While the word was in the king’s mouth, a voice came from the sky, saying, “O King Nebuchadnezzar, to you it is spoken: ‘The kingdom has departed from you. +\v 32 You shall be driven from men, and your dwelling shall be with the animals of the field. You shall be made to eat grass as oxen. Seven times shall pass over you, until you know that the Most High rules in the kingdom of men, and gives it to whomever he will.’” +\pi1 +\v 33 This was fulfilled the same hour on Nebuchadnezzar. He was driven from men, and ate grass as oxen, and his body was wet with the dew of the sky, until his hair had grown like eagles’ feathers, and his nails like birds’ claws. +\pi1 +\v 34 At the end of the days I, Nebuchadnezzar, lifted up my eyes to heaven, and my understanding returned to me, and I blessed the Most High, and I praised and honored him who lives forever. +\q2 For his dominion is an everlasting dominion, +\q3 and his kingdom from generation to generation. +\q2 +\v 35 All the inhabitants of the earth are reputed as nothing; +\q3 and he does according to his will in the army of heaven, +\q3 and among the inhabitants of the earth; +\q2 and no one can stop his hand, +\q3 or ask him, “What are you doing?” +\pi1 +\v 36 At the same time my understanding returned to me; and for the glory of my kingdom, my majesty and brightness returned to me. My counselors and my lords sought me; and I was established in my kingdom, and excellent greatness was added to me. +\v 37 Now I, Nebuchadnezzar, praise and extol and honor the King of heaven; for all his works are right and his ways just; and those who walk in pride he is able to humble. +\c 5 +\p +\v 1 Belshazzar the king made a great feast to a thousand of his lords, and drank wine before the thousand. +\v 2 Belshazzar, while he tasted the wine, commanded that the golden and silver vessels which Nebuchadnezzar his father had taken out of the temple which was in Jerusalem be brought to him, that the king and his lords, his wives and his concubines, might drink from them. +\v 3 Then they brought the golden vessels that were taken out of the temple of God’s house which was at Jerusalem; and the king and his lords, his wives and his concubines, drank from them. +\v 4 They drank wine, and praised the gods of gold, and of silver, of bronze, of iron, of wood, and of stone. +\p +\v 5 In the same hour, the fingers of a man’s hand came out and wrote near the lamp stand on the plaster of the wall of the king’s palace. The king saw the part of the hand that wrote. +\v 6 Then the king’s face was changed in him, and his thoughts troubled him; and the joints of his thighs were loosened, and his knees struck one against another. +\p +\v 7 The king cried aloud to bring in the enchanters, the Chaldeans, and the soothsayers. The king spoke and said to the wise men of Babylon, “Whoever reads this writing and shows me its interpretation shall be clothed with purple, and have a chain of gold about his neck, and shall be the third ruler in the kingdom.” +\p +\v 8 Then all the king’s wise men came in; but they could not read the writing and couldn’t make known to the king the interpretation. +\v 9 Then King Belshazzar was greatly troubled. His face was changed in him, and his lords were perplexed. +\p +\v 10 The queen by reason of the words of the king and his lords came into the banquet house. The queen spoke and said, “O king, live forever; don’t let your thoughts trouble you, nor let your face be changed. +\v 11 There is a man in your kingdom in whom is the spirit of the holy gods. In the days of your father, light, understanding, and wisdom like the wisdom of the gods were found in him. The king, Nebuchadnezzar, your father—yes, the king, your father—made him master of the magicians, enchanters, Chaldeans, and soothsayers +\v 12 because an excellent spirit, knowledge, understanding, interpreting of dreams, showing of dark sentences, and dissolving of doubts were found in the same Daniel, whom the king named Belteshazzar. Now let Daniel be called, and he will show the interpretation.” +\p +\v 13 Then Daniel was brought in before the king. The king spoke and said to Daniel, “Are you that Daniel of the children of the captivity of Judah, whom the king my father brought out of Judah? +\v 14 I have heard of you, that the spirit of the gods is in you, and that light, understanding, and excellent wisdom are found in you. +\v 15 Now the wise men, the enchanters, have been brought in before me to read this writing, and make known to me its interpretation; but they could not show the interpretation of the thing. +\v 16 But I have heard of you, that you can give interpretations and dissolve doubts. Now if you can read the writing, and make known to me its interpretation, you shall be clothed with purple, and have a chain of gold around your neck, and shall be the third ruler in the kingdom.” +\p +\v 17 Then Daniel answered the king, “Let your gifts be to yourself, and give your rewards to another. Nevertheless, I will read the writing to the king, and make known to him the interpretation. +\p +\v 18 “To you, king, the Most High God gave Nebuchadnezzar your father the kingdom, and greatness, and glory, and majesty. +\v 19 Because of the greatness that he gave him, all the peoples, nations, and languages trembled and feared before him. He killed whom he wanted to, and he kept alive whom he wanted to. He raised up whom he wanted to, and he put down whom he wanted to. +\v 20 But when his heart was lifted up, and his spirit was hardened so that he dealt proudly, he was deposed from his kingly throne, and they took his glory from him. +\v 21 He was driven from the sons of men and his heart was made like the animals’, and his dwelling was with the wild donkeys. He was fed with grass like oxen, and his body was wet with the dew of the sky, until he knew that the Most High God rules in the kingdom of men, and that he sets up over it whomever he will. +\p +\v 22 “You, his son, Belshazzar, have not humbled your heart, though you knew all this, +\v 23 but have lifted up yourself against the Lord of heaven; and they have brought the vessels of his house before you, and you and your lords, your wives, and your concubines, have drunk wine from them. You have praised the gods of silver, gold, bronze, iron, wood, and stone, which don’t see, hear, or know; and you have not glorified the God in whose hand is your breath and whose are all your ways. +\v 24 Then the part of the hand was sent from before him, and this writing was inscribed. +\p +\v 25 “This is the writing that was inscribed: ‘MENE, MENE, TEKEL, UPHARSIN.’ +\p +\v 26 “This is the interpretation of the thing: +\m MENE: God has counted your kingdom, and brought it to an end. +\m +\v 27 TEKEL: you are weighed in the balances, and are found wanting. +\m +\v 28 PERES: your kingdom is divided, and given to the Medes and Persians.” +\p +\v 29 Then Belshazzar commanded, and they clothed Daniel with purple, and put a chain of gold about his neck, and proclaimed that he should be the third highest ruler in the kingdom. +\p +\v 30 In that night Belshazzar the Chaldean King was slain. +\v 31 Darius the Mede received the kingdom, being about sixty-two years old. +\c 6 +\p +\v 1 It pleased Darius to set over the kingdom one hundred twenty local governors, who should be throughout the whole kingdom; +\v 2 and over them three presidents, of whom Daniel was one; that these local governors might give account to them, and that the king should suffer no loss. +\v 3 Then this Daniel was distinguished above the presidents and the local governors, because an excellent spirit was in him; and the king thought to set him over the whole realm. +\p +\v 4 Then the presidents and the local governors sought to find occasion against Daniel as touching the kingdom; but they could find no occasion or fault, because he was faithful. There wasn’t any error or fault found in him. +\v 5 Then these men said, “We won’t find any occasion against this Daniel, unless we find it against him concerning the law of his God.” +\p +\v 6 Then these presidents and local governors assembled together to the king, and said this to him, “King Darius, live forever! +\v 7 All the presidents of the kingdom, the deputies and the local governors, the counselors and the governors, have consulted together to establish a royal statute, and to make a strong decree, that whoever asks a petition of any god or man for thirty days, except of you, O king, he shall be cast into the den of lions. +\v 8 Now, O king, establish the decree, and sign the writing, that it not be changed, according to the law of the Medes and Persians, which doesn’t alter.” +\v 9 Therefore King Darius signed the writing and the decree. +\p +\v 10 When Daniel knew that the writing was signed, he went into his house (now his windows were open in his room toward Jerusalem) and he kneeled on his knees three times a day, and prayed, and gave thanks before his God, as he did before. +\v 11 Then these men assembled together, and found Daniel making petition and supplication before his God. +\v 12 Then they came near, and spoke before the king concerning the king’s decree: “Haven’t you signed a decree that every man who makes a petition to any god or man within thirty days, except to you, O king, shall be cast into the den of lions?” +\p The king answered, “This thing is true, according to the law of the Medes and Persians, which doesn’t alter.” +\p +\v 13 Then they answered and said before the king, “That Daniel, who is of the children of the captivity of Judah, doesn’t respect you, O king, nor the decree that you have signed, but makes his petition three times a day.” +\v 14 Then the king, when he heard these words, was very displeased, and set his heart on Daniel to deliver him; and he labored until the going down of the sun to rescue him. +\p +\v 15 Then these men assembled together to the king, and said to the king, “Know, O king, that it is a law of the Medes and Persians, that no decree nor statute which the king establishes may be changed.” +\p +\v 16 Then the king commanded, and they brought Daniel, and cast him into the den of lions. The king spoke and said to Daniel, “Your God whom you serve continually, he will deliver you.” +\p +\v 17 A stone was brought, and laid on the mouth of the den; and the king sealed it with his own signet, and with the signet of his lords, that nothing might be changed concerning Daniel. +\v 18 Then the king went to his palace, and passed the night fasting. No musical instruments were brought before him; and his sleep fled from him. +\p +\v 19 Then the king arose very early in the morning, and went in haste to the den of lions. +\v 20 When he came near to the den to Daniel, he cried with a troubled voice. The king spoke and said to Daniel, “Daniel, servant of the living God, is your God, whom you serve continually, able to deliver you from the lions?” +\p +\v 21 Then Daniel said to the king, “O king, live forever! +\v 22 My God has sent his angel, and has shut the lions’ mouths, and they have not hurt me; because I am innocent in his sight. Also before you, O king, I have done no harm.” +\p +\v 23 Then the king was exceedingly glad, and commanded that they should take Daniel up out of the den. So Daniel was taken up out of the den, and no kind of harm was found on him, because he had trusted in his God. +\p +\v 24 The king commanded, and they brought those men who had accused Daniel, and they cast them into the den of lions—them, their children, and their wives; and the lions mauled them and broke all their bones in pieces before they came to the bottom of the den. +\p +\v 25 Then King Darius wrote to all the peoples, nations, and languages, who dwell in all the earth: +\pi1 “Peace be multiplied to you. +\pi1 +\v 26 “I make a decree that in all the dominion of my kingdom men tremble and fear before the God of Daniel; +\q1 “for he is the living God, +\q2 and steadfast forever. +\q1 His kingdom is that which will not be destroyed. +\q2 His dominion will be even to the end. +\q1 +\v 27 He delivers and rescues. +\q2 He works signs and wonders in heaven and in earth, +\q2 who has delivered Daniel from the power of the lions.” +\p +\v 28 So this Daniel prospered in the reign of Darius, and in the reign of Cyrus the Persian. +\c 7 +\p +\v 1 In the first year of Belshazzar king of Babylon, Daniel had a dream and visions of his head on his bed. Then he wrote the dream and told the sum of the matters. +\p +\v 2 Daniel spoke and said, “I saw in my vision by night and behold, the four winds of the sky broke out on the great sea. +\v 3 Four great animals came up from the sea, different from one another. +\p +\v 4 “The first was like a lion, and had eagle’s wings. I watched until its wings were plucked, and it was lifted up from the earth, and made to stand on two feet as a man. A man’s heart was given to it. +\p +\v 5 “Behold, there was another animal, a second, like a bear. It was raised up on one side, and three ribs were in its mouth between its teeth. They said this to it: ‘Arise! Devour much flesh!’ +\p +\v 6 “After this I saw, and behold, another, like a leopard, which had on its back four wings of a bird. The animal also had four heads; and dominion was given to it. +\p +\v 7 “After this I saw in the night visions, and, behold, there was a fourth animal, awesome and powerful, and exceedingly strong. It had great iron teeth. It devoured and broke in pieces, and stamped the residue with its feet. It was different from all the animals that were before it. It had ten horns. +\p +\v 8 “I considered the horns, and behold, another horn came up among them, a little one, before which three of the first horns were plucked up by the roots: and behold, in this horn were eyes like the eyes of a man, and a mouth speaking great things. +\q1 +\v 9 “I watched until thrones were placed, +\q2 and one who was Ancient of Days sat. +\q1 His clothing was white as snow, +\q2 and the hair of his head like pure wool. +\q1 His throne was fiery flames, +\q2 and its wheels burning fire. +\q1 +\v 10 A fiery stream issued and came out from before him. +\q2 Thousands of thousands ministered to him. +\q2 Ten thousand times ten thousand stood before him. +\q1 The judgment was set. +\q2 The books were opened. +\p +\v 11 “I watched at that time because of the voice of the great words which the horn spoke. I watched even until the animal was slain, its body destroyed, and it was given to be burned with fire. +\v 12 As for the rest of the animals, their dominion was taken away; yet their lives were prolonged for a season and a time. +\p +\v 13 “I saw in the night visions, and behold, one like a son of man came with the clouds, and he came to the Ancient of Days, and they brought him near before him. +\v 14 Dominion was given him, with glory and a kingdom, that all the peoples, nations, and languages should serve him. His dominion is an everlasting dominion, which will not pass away, and his kingdom will not be destroyed. +\p +\v 15 “As for me, Daniel, my spirit was grieved within my body, and the visions of my head troubled me. +\v 16 I came near to one of those who stood by, and asked him the truth concerning all this. +\p “So he told me, and made me know the interpretation of the things. +\v 17 ‘These great animals, which are four, are four kings, who will arise out of the earth. +\v 18 But the saints of the Most High will receive the kingdom, and possess the kingdom forever, even forever and ever.’ +\p +\v 19 “Then I desired to know the truth concerning the fourth animal, which was different from all of them, exceedingly terrible, whose teeth were of iron, and its nails of bronze; which devoured, broke in pieces, and stamped the residue with its feet; +\v 20 and concerning the ten horns that were on its head, and the other horn which came up, and before which three fell, even that horn that had eyes, and a mouth that spoke great things, whose look was more stout than its fellows. +\v 21 I saw, and the same horn made war with the saints and prevailed against them +\v 22 until the Ancient of Days came, and judgment was given to the saints of the Most High, and the time came that the saints possessed the kingdom. +\p +\v 23 “So he said, ‘The fourth animal will be a fourth kingdom on earth, which will be different from all the kingdoms, and will devour the whole earth, and will tread it down, and break it in pieces. +\v 24 As for the ten horns, ten kings will arise out of this kingdom. Another will arise after them; and he will be different from the former, and he will put down three kings. +\v 25 He will speak words against the Most High, and will wear out the saints of the Most High. He will plan to change the times and the law; and they will be given into his hand until a time and times and half a time. +\p +\v 26 “‘But the judgment will be set, and they will take away his dominion, to consume and to destroy it to the end. +\v 27 The kingdom and the dominion, and the greatness of the kingdoms under the whole sky, will be given to the people of the saints of the Most High. His kingdom is an everlasting kingdom, and all dominions will serve and obey him.’ +\p +\v 28 “Here is the end of the matter. As for me, Daniel, my thoughts troubled me greatly, and my face was changed in me; but I kept the matter in my heart.” +\c 8 +\p +\v 1 In the third year of the reign of King Belshazzar, a vision appeared to me, even to me, Daniel, after that which appeared to me at the first. +\v 2 I saw the vision. Now it was so, that when I saw, I was in the citadel of Susa, which is in the province of Elam. I saw in the vision, and I was by the river Ulai. +\v 3 Then I lifted up my eyes, and saw, and behold, a ram which had two horns stood before the river. The two horns were high; but one was higher than the other, and the higher came up last. +\v 4 I saw the ram pushing westward, northward, and southward. No animals could stand before him. There wasn’t anyone who could deliver out of his hand; but he did according to his will, and magnified himself. +\p +\v 5 As I was considering, behold, a male goat came from the west over the surface of the whole earth, and didn’t touch the ground. The goat had a notable horn between his eyes. +\v 6 He came to the ram that had the two horns, which I saw standing before the river, and ran on him in the fury of his power. +\v 7 I saw him come close to the ram, and he was moved with anger against him, and struck the ram, and broke his two horns. There was no power in the ram to stand before him; but he cast him down to the ground, and trampled on him. There was no one who could deliver the ram out of his hand. +\v 8 The male goat magnified himself exceedingly. When he was strong, the great horn was broken; and instead of it there came up four notable horns toward the four winds of the sky. +\p +\v 9 Out of one of them came out a little horn, which grew exceedingly great, toward the south, and toward the east, and toward the glorious land. +\v 10 It grew great, even to the army of the sky; and it cast down some of the army and of the stars to the ground, and trampled on them. +\v 11 Yes, it magnified itself, even to the prince of the army; and it took away from him the continual burnt offering, and the place of his sanctuary was cast down. +\v 12 The army was given over to it together with the continual burnt offering through disobedience. It cast down truth to the ground, and it did its pleasure and prospered. +\p +\v 13 Then I heard a holy one speaking; and another holy one said to that certain one who spoke, “How long will the vision about the continual burnt offering, and the disobedience that makes desolate, to give both the sanctuary and the army to be trodden under foot be?” +\p +\v 14 He said to me, “To two thousand and three hundred evenings and mornings. Then the sanctuary will be cleansed.” +\p +\v 15 When I, even I Daniel, had seen the vision, I sought to understand it. Then behold, there stood before me something like the appearance of a man. +\v 16 I heard a man’s voice between the banks of the Ulai, which called, and said, “Gabriel, make this man understand the vision.” +\p +\v 17 So he came near where I stood; and when he came, I was frightened, and fell on my face; but he said to me, “Understand, son of man; for the vision belongs to the time of the end.” +\p +\v 18 Now as he was speaking with me, I fell into a deep sleep with my face toward the ground; but he touched me, and set me upright. +\p +\v 19 He said, “Behold, I will make you know what will be in the latter time of the indignation; for it belongs to the appointed time of the end. +\v 20 The ram which you saw, that had the two horns, they are the kings of Media and Persia. +\v 21 The rough male goat is the king of Greece. The great horn that is between his eyes is the first king. +\v 22 As for that which was broken, in the place where four stood up, four kingdoms will stand up out of the nation, but not with his power. +\p +\v 23 “In the latter time of their kingdom, when the transgressors have come to the full, a king of fierce face, and understanding dark sentences, will stand up. +\v 24 His power will be mighty, but not by his own power. He will destroy awesomely, and will prosper in what he does. He will destroy the mighty ones and the holy people. +\v 25 Through his policy he will cause deceit to prosper in his hand. He will magnify himself in his heart, and he will destroy many in their security. He will also stand up against the prince of princes; but he will be broken without human power. +\p +\v 26 “The vision of the evenings and mornings which has been told is true; but seal up the vision, for it belongs to many days to come.” +\p +\v 27 I, Daniel, fainted, and was sick for some days. Then I rose up, and did the king’s business. I wondered at the vision, but no one understood it. +\c 9 +\p +\v 1 In the first year of Darius the son of Ahasuerus, of the offspring of the Medes, who was made king over the realm of the Chaldeans, +\v 2 in the first year of his reign I, Daniel, understood by the books the number of the years about which Yahweh’s\f + \fr 9:2 \ft “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. \f* word came to Jeremiah the prophet, for the accomplishing of the desolations of Jerusalem, even seventy years. +\v 3 I set my face to the Lord God, to seek by prayer and petitions, with fasting in sackcloth and ashes. +\p +\v 4 I prayed to Yahweh my God, and made confession, and said, +\pi1 “Oh, Lord, the great and dreadful God, who keeps covenant and loving kindness with those who love him and keep his commandments, +\v 5 we have sinned, and have dealt perversely, and have done wickedly, and have rebelled, even turning aside from your precepts and from your ordinances. +\v 6 We haven’t listened to your servants the prophets, who spoke in your name to our kings, our princes, and our fathers, and to all the people of the land. +\pi1 +\v 7 “Lord, righteousness belongs to you, but to us confusion of face, as it is today—to the men of Judah, and to the inhabitants of Jerusalem, and to all Israel, who are near, and who are far off, through all the countries where you have driven them, because of their trespass that they have trespassed against you. +\v 8 Lord, to us belongs confusion of face, to our kings, to our princes, and to our fathers, because we have sinned against you. +\v 9 To the Lord our God belong mercies and forgiveness; for we have rebelled against him. +\v 10 We haven’t obeyed Yahweh our God’s voice, to walk in his laws, which he set before us by his servants the prophets. +\v 11 Yes, all Israel have transgressed your law, turning aside, that they wouldn’t obey your voice. +\pi1 “Therefore the curse and the oath written in the law of Moses the servant of God has been poured out on us; for we have sinned against him. +\v 12 He has confirmed his words, which he spoke against us, and against our judges who judged us, by bringing on us a great evil; for under the whole sky, such has not been done as has been done to Jerusalem. +\v 13 As it is written in the law of Moses, all this evil has come on us. Yet we have not entreated the favor of Yahweh our God, that we should turn from our iniquities and have discernment in your truth. +\v 14 Therefore Yahweh has watched over the evil, and brought it on us; for Yahweh our God is righteous in all his works which he does, and we have not obeyed his voice. +\pi1 +\v 15 “Now, Lord our God, who has brought your people out of the land of Egypt with a mighty hand, and have gotten yourself renown, as it is today, we have sinned. We have done wickedly. +\v 16 Lord, according to all your righteousness, please let your anger and your wrath be turned away from your city Jerusalem, your holy mountain, because for our sins, and for the iniquities of our fathers, Jerusalem and your people have become a reproach to all who are around us. +\pi1 +\v 17 “Now therefore, our God, listen to the prayer of your servant, and to his petitions, and cause your face to shine on your sanctuary that is desolate, for the Lord’s sake. +\v 18 My God, turn your ear and hear. Open your eyes and see our desolations and the city which is called by your name; for we don’t present our petitions before you for our righteousness, but for your great mercies’ sake. +\v 19 Lord, hear. Lord, forgive. Lord, listen and do. Don’t defer, for your own sake, my God, because your city and your people are called by your name.” +\b +\p +\v 20 While I was speaking, praying, and confessing my sin and the sin of my people Israel, and presenting my supplication before Yahweh my God for the holy mountain of my God— +\v 21 yes, while I was speaking in prayer, the man Gabriel, whom I had seen in the vision at the beginning, being caused to fly swiftly, touched me about the time of the evening offering. +\v 22 He instructed me and talked with me, and said, “Daniel, I have now come to give you wisdom and understanding. +\v 23 At the beginning of your petitions the commandment went out and I have come to tell you, for you are greatly beloved. Therefore consider the matter and understand the vision. +\p +\v 24 “Seventy weeks are decreed on your people and on your holy city, to finish disobedience, to put an end to sin, to make reconciliation for iniquity, to bring in everlasting righteousness, to seal up vision and prophecy, and to anoint the most holy. +\p +\v 25 “Know therefore and discern that from the going out of the commandment to restore and to build Jerusalem to the Anointed One,\f + \fr 9:25 \ft “Anointed One” can also be translated “Messiah” (same as “Christ”).\f* the prince, will be seven weeks and sixty-two weeks. It will be built again with street and moat, even in troubled times. +\v 26 After the sixty-two weeks the Anointed One\f + \fr 9:26 \ft “Anointed One” can also be translated “Messiah” (same as “Christ”).\f* will be cut off and will have nothing. The people of the prince who come will destroy the city and the sanctuary. Its end will be with a flood, and war will be even to the end. Desolations are determined. +\v 27 He will make a firm covenant with many for one week. In the middle of the week he will cause the sacrifice and the offering to cease. On the wing of abominations will come one who makes desolate. Even to the full end that is decreed, wrath will be poured out on the desolate.” +\c 10 +\p +\v 1 In the third year of Cyrus king of Persia a revelation was revealed to Daniel, whose name was called Belteshazzar. The revelation was true, even a great warfare. He understood the revelation, and had understanding of the vision. +\p +\v 2 In those days I, Daniel, was mourning three whole weeks. +\v 3 I ate no pleasant bread. No meat or wine came into my mouth. I didn’t anoint myself at all, until three whole weeks were fulfilled. +\p +\v 4 In the twenty-fourth day of the first month, as I was by the side of the great river, which is Hiddekel, +\v 5 I lifted up my eyes and looked, and behold, there was a man clothed in linen, whose thighs were adorned with pure gold of Uphaz. +\v 6 His body also was like beryl, and his face like the appearance of lightning, and his eyes like flaming torches. His arms and his feet were like burnished bronze. The voice of his words was like the voice of a multitude. +\p +\v 7 I, Daniel, alone saw the vision; for the men who were with me didn’t see the vision; but a great quaking fell on them, and they fled to hide themselves. +\v 8 So I was left alone, and saw this great vision. No strength remained in me; for my face grew deathly pale, and I retained no strength. +\v 9 Yet I heard the voice of his words. When I heard the voice of his words, then I fell into a deep sleep on my face, with my face toward the ground. +\p +\v 10 Behold, a hand touched me, which set me on my knees and on the palms of my hands. +\v 11 He said to me, “Daniel, you greatly beloved man, understand the words that I speak to you. Stand upright, for I have been sent to you, now.” When he had spoken this word to me, I stood trembling. +\p +\v 12 Then he said to me, “Don’t be afraid, Daniel; for from the first day that you set your heart to understand, and to humble yourself before your God, your words were heard. I have come for your words’ sake. +\v 13 But the prince of the kingdom of Persia withstood me twenty-one days; but, behold, Michael, one of the chief princes, came to help me because I remained there with the kings of Persia. +\v 14 Now I have come to make you understand what will happen to your people in the latter days; for the vision is yet for many days.” +\p +\v 15 When he had spoken these words to me, I set my face toward the ground, and was mute. +\v 16 Behold, one in the likeness of the sons of men touched my lips. Then I opened my mouth, and spoke and said to him who stood before me, “My lord, by reason of the vision my sorrows have overtaken me, and I retain no strength. +\v 17 For how can the servant of my lord talk with my lord? For as for me, immediately there remained no strength in me. There was no breath left in me.” +\p +\v 18 Then one like the appearance of a man touched me again, and he strengthened me. +\v 19 He said, “Greatly beloved man, don’t be afraid. Peace be to you. Be strong. Yes, be strong.” +\p When he spoke to me, I was strengthened, and said, “Let my lord speak; for you have strengthened me.” +\p +\v 20 Then he said, “Do you know why I have come to you? Now I will return to fight with the prince of Persia. When I go out, behold, the prince of Greece will come. +\v 21 But I will tell you what is inscribed in the writing of truth. There is no one who supports me against these except Michael, your prince. +\c 11 +\p +\v 1 “As for me, in the first year of Darius the Mede, I stood up to confirm and strengthen him. +\p +\v 2 “Now I will show you the truth. Behold, three more kings will stand up in Persia. The fourth will be far richer than all of them. When he has grown strong through his riches, he will stir up all against the realm of Greece. +\v 3 A mighty king will stand up who will rule with great dominion, and do according to his will. +\v 4 When he stands up, his kingdom will be broken, and will be divided toward the four winds of the sky, but not to his posterity, nor according to his dominion with which he ruled; for his kingdom will be plucked up, even for others besides these. +\p +\v 5 “The king of the south will be strong. One of his princes will become stronger than him and have dominion. His dominion will be a great dominion. +\v 6 At the end of years they will join themselves together. The daughter of the king of the south will come to the king of the north to make an agreement, but she will not retain the strength of her arm. He will also not stand, nor will his arm; but she will be given up, with those who brought her and he who became her father, and he who strengthened her in those times. +\p +\v 7 “But out of a shoot from her roots one will stand up in his place who will come to the army and will enter into the fortress of the king of the north, and will deal against them and will prevail. +\v 8 He will also carry their gods, with their molten images and their precious vessels of silver and of gold, captive into Egypt. He will refrain some years from the king of the north. +\v 9 He will come into the realm of the king of the south, but he will return into his own land. +\v 10 His sons will wage war and will assemble a multitude of great forces which will keep coming and overflow and pass through. They will return and wage war, even to his fortress. +\p +\v 11 “The king of the south will be moved with anger and will come out and fight with him, even with the king of the north. He will send out a great multitude, and the multitude will be given into his hand. +\v 12 The multitude will be lifted up, and his heart will be exalted. He will cast down tens of thousands, but he won’t prevail. +\v 13 The king of the north will return, and will send out a multitude greater than the former. He will come on at the end of the times, even of years, with a great army and with abundant supplies. +\p +\v 14 “In those times many will stand up against the king of the south. Also the children of the violent among your people will lift themselves up to establish the vision; but they will fall. +\v 15 So the king of the north will come and cast up a mound, and take a well-fortified city. The forces of the south won’t stand, neither will his chosen people, neither will there be any strength to stand. +\v 16 But he who comes against him will do according to his own will, and no one will stand before him. He will stand in the glorious land, and destruction will be in his hand. +\v 17 He will set his face to come with the strength of his whole kingdom, and with him equitable conditions. He will perform them. He will give him the daughter of women to corrupt her; but she will not stand, and won’t be for him. +\v 18 After this he will turn his face to the islands, and will take many; but a prince will cause the reproach offered by him to cease. Yes, moreover, he will cause his reproach to turn on him. +\v 19 Then he will turn his face toward the fortresses of his own land; but he will stumble and fall, and won’t be found. +\p +\v 20 “Then one who will cause a tax collector to pass through the kingdom to maintain its glory will stand up in his place; but within few days he shall be destroyed, not in anger, and not in battle. +\p +\v 21 “In his place, a contemptible person will stand up, to whom they had not given the honor of the kingdom; but he will come in time of security, and will obtain the kingdom by flatteries. +\v 22 The overwhelming forces will be overwhelmed from before him, and will be broken. Yes, also the prince of the covenant. +\v 23 After the treaty is made with him, he will work deceitfully; for he will come up, and will become strong with a small people. +\v 24 In time of security, he will come even on the fattest places of the province. He will do that which his fathers have not done, nor his fathers’ fathers. He will scatter among them prey, plunder, and substance. Yes, he will devise his plans against the strongholds, even for a time. +\p +\v 25 “He will stir up his power and his courage against the king of the south with a great army; and the king of the south will wage war in battle with an exceedingly great and mighty army; but he won’t stand, for they will devise plans against him. +\v 26 Yes, those who eat of his delicacies will destroy him, and his army will be swept away. Many will fall down slain. +\v 27 As for both these kings, their hearts will be to do mischief, and they will speak lies at one table; but it won’t prosper, for the end will still be at the appointed time. +\v 28 Then he will return into his land with great wealth. His heart will be against the holy covenant. He will take action and return to his own land. +\p +\v 29 “He will return at the appointed time and come into the south; but it won’t be in the latter time as it was in the former. +\v 30 For ships of Kittim will come against him. Therefore he will be grieved, and will return, and have indignation against the holy covenant, and will take action. He will even return, and have regard to those who forsake the holy covenant. +\p +\v 31 “Forces will stand on his part and they will profane the sanctuary, even the fortress, and will take away the continual burnt offering. Then they will set up the abomination that makes desolate. +\v 32 He will corrupt those who do wickedly against the covenant by flatteries; but the people who know their God will be strong and take action. +\p +\v 33 “Those who are wise among the people will instruct many; yet they will fall by the sword and by flame, by captivity and by plunder, many days. +\v 34 Now when they fall, they will be helped with a little help; but many will join themselves to them with flatteries. +\v 35 Some of those who are wise will fall, to refine them, and to purify, and to make them white, even to the time of the end; because it is yet for the appointed time. +\p +\v 36 “The king will do according to his will. He will exalt himself, and magnify himself above every god, and will speak marvelous things against the God of gods. He will prosper until the indignation is accomplished; for what is determined will be done. +\v 37 He won’t regard the gods of his fathers, or the desire of women, or regard any god; for he will magnify himself above all. +\v 38 But in his place he will honor the god of fortresses. He will honor a god whom his fathers didn’t know with gold, silver, precious stones, and pleasant things. +\v 39 He will deal with the strongest fortresses by the help of a foreign god. He will increase with glory whoever acknowledges him. He will cause them to rule over many, and will divide the land for a price. +\p +\v 40 “At the time of the end, the king of the south will contend with him; and the king of the north will come against him like a whirlwind, with chariots, with horsemen, and with many ships. He will enter into the countries, and will overflow and pass through. +\v 41 He will enter also into the glorious land, and many countries will be overthrown; but these will be delivered out of his hand: Edom, Moab, and the chief of the children of Ammon. +\v 42 He will also stretch out his hand against the countries. The land of Egypt won’t escape. +\v 43 But he will have power over the treasures of gold and of silver, and over all the precious things of Egypt. The Libyans and the Ethiopians will be at his steps. +\v 44 But news out of the east and out of the north will trouble him; and he will go out with great fury to destroy and utterly to sweep away many. +\v 45 He will plant the tents of his palace between the sea and the glorious holy mountain; yet he will come to his end, and no one will help him. +\c 12 +\p +\v 1 “At that time Michael will stand up, the great prince who stands for the children of your people. There will be a time of trouble, such as never was since there was a nation even to that same time. At that time, your people will be delivered—everyone who is found written in the book. +\v 2 Many of those who sleep in the dust of the earth will awake, some to everlasting life, and some to shame and everlasting contempt. +\v 3 Those who are wise will shine as the brightness of the expanse. Those who turn many to righteousness will shine like the stars forever and ever. +\v 4 But you, Daniel, shut up the words and seal the book, even to the time of the end. Many will run back and forth, and knowledge will be increased.” +\p +\v 5 Then I, Daniel, looked, and behold, two others stood, one on the river bank on this side, and the other on the river bank on that side. +\v 6 One said to the man clothed in linen, who was above the waters of the river, “How long will it be to the end of these wonders?” +\p +\v 7 I heard the man clothed in linen, who was above the waters of the river, when he held up his right hand and his left hand to heaven, and swore by him who lives forever that it will be for a time, times, and a half; and when they have finished breaking in pieces the power of the holy people, all these things will be finished. +\p +\v 8 I heard, but I didn’t understand. Then I said, “My lord, what will be the outcome of these things?” +\p +\v 9 He said, “Go your way, Daniel; for the words are shut up and sealed until the time of the end. +\v 10 Many will purify themselves, make themselves white, and be refined; but the wicked will do wickedly. None of the wicked will understand; but those who are wise will understand. +\p +\v 11 “From the time that the continual burnt offering is taken away and the abomination that makes desolate set up, there will be one thousand two hundred ninety days. +\v 12 Blessed is he who waits and comes to the one thousand three hundred thirty-five days. +\p +\v 13 “But go your way until the end; for you will rest and will stand in your inheritance at the end of the days.” +\c 13 +\s1 THE HISTORY OF SUSANNA +\p +\v 1 \f + \fr 13:1 \ft \+bk The History of Susanna\+bk* is translated from chapter 13 of \+bk Daniel\+bk* in the Greek Septuagint. It is not found in the traditional Hebrew text of \+bk Daniel\+bk*. \+bk The History of Susanna\+bk* is recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches.\f*A man lived in Babylon, and his name was Joakim. +\v 2 He took a wife, whose name was Susanna, the daughter of Helkias, a very fair woman, and one who feared the Lord. +\v 3 Her parents were also righteous, and taught their daughter according to the law of Moses. +\v 4 Now Joakim was a great rich man, and had a beautiful garden next to his house. The Jews used to come to him, because he was more honorable than all others. +\v 5 The same year, two of the elders of the people were appointed to be judges, such as the Lord spoke of, that wickedness came from Babylon from elders who were judges, who were supposed to govern the people. +\v 6 These were often at Joakim’s house. All that had any lawsuits came to them. +\p +\v 7 When the people departed away at noon, Susanna went into her husband’s garden to walk. +\v 8 The two elders saw her going in every day and walking; and they were inflamed with lust for her. +\v 9 They perverted their own mind and turned away their eyes, that they might not look to heaven, nor remember just judgments. +\v 10 And although they both were wounded with lust for her, yet dared not show the other his grief. +\v 11 For they were ashamed to declare their lust, what they desired to do with her. +\v 12 Yet they watched eagerly from day to day to see her. +\v 13 The one said to the other, “Let’s go home, now; for it is dinner time.” +\v 14 So when they had gone out, they parted company, and turning back again, they came to the same place. After they had asked one another the cause, they acknowledged their lust. Then they appointed a time both together, when they might find her alone. +\p +\v 15 It happened, as they watched on an opportune day, she went in as before with only two maids, and she desired to wash herself in the garden; for it was hot. +\v 16 There was nobody there except the two elders who had hid themselves and watched her. +\v 17 Then she said to her maids, “Bring me olive oil and ointment, and shut the garden doors, that I may wash myself.” +\v 18 They did as she asked them and shut the garden doors, and went out themselves at the side doors to fetch the things that she had commanded them. They didn’t see the elders, because they were hidden. +\p +\v 19 Now when the maids had gone out, the two elders rose up and ran to her, saying, +\v 20 “Behold, the garden doors are shut, that no man can see us, and we are in love with you. Therefore consent to us, and lie with us. +\v 21 If you will not, we will testify against you, that a young man was with you; therefore you sent your maids away from you.” +\p +\v 22 Then Susanna sighed, and said, “I am trapped; for if I do this thing, it is death to me. If I don’t do it, I can’t escape your hands. +\v 23 It is better for me to fall into your hands, and not do it, than to sin in the sight of the Lord.” +\v 24 With that Susanna cried with a loud voice; and the two elders cried out against her. +\v 25 Then one of them ran and opened the garden doors. +\p +\v 26 So when the servants of the house heard the cry in the garden, they rushed in at the side door to see what had happened to her. +\v 27 But when the elders had told their tale, the servants were greatly ashamed; for there was never such a report made of Susanna. +\p +\v 28 It came to pass on the next day, when the people assembled to her husband Joakim, the two elders came full of their wicked intent against Susanna to put her to death, +\v 29 and said before the people, “Send for Susanna, the daughter of Helkias, Joakim’s wife.” So they sent; +\v 30 and she came with her father and mother, her children, and all her kindred. +\v 31 Now Susanna was a very delicate woman, and beautiful to behold. +\v 32 These wicked men commanded her to be unveiled, for she was veiled, that they might be filled with her beauty. +\v 33 Therefore her friends and all who saw her wept. +\v 34 Then the two elders stood up in the midst of the people and laid their hands upon her head. +\v 35 She, weeping, looked up toward heaven; for her heart trusted in the Lord. +\p +\v 36 The elders said, “As we walked in the garden alone, this woman came in with two maids, shut the garden doors, and sent the maids away. +\v 37 Then a young man who was hidden there came to her and lay with her. +\v 38 And we, being in a corner of the garden, saw this wickedness and ran to them. +\v 39 And when we saw them together, we couldn’t hold the man; for he was stronger than we, and opened the doors, and leaped out. +\v 40 But having taken this woman, we asked who the young man was, but she would not tell us. We testify these things. +\p +\v 41 Then the assembly believed them, as those who were elders of the people and judges; so they condemned her to death. +\p +\v 42 Then Susanna cried out with a loud voice, and said, “O everlasting God, you know the secrets, and know all things before they happen. +\v 43 You know that they have testified falsely against me. Behold, I must die, even though I never did such things as these men have maliciously invented against me.” +\p +\v 44 The Lord heard her voice. +\v 45 Therefore when she was led away to be put to death, God raised up the holy spirit of a young youth, whose name was Daniel. +\v 46 He cried with a loud voice, “I am clear from the blood of this woman!” +\p +\v 47 Then all the people turned them toward him, and said, “What do these words that you have spoken mean?” +\p +\v 48 So he, standing in the midst of them, said, “Are you all such fools, you sons of Israel, that without examination or knowledge of the truth you have condemned a daughter of Israel? +\v 49 Return again to the place of judgment; for these have testified falsely against her.” +\p +\v 50 Therefore all the people turned again in haste, and the elders said to him, “Come, sit down among us, and show it to us, seeing God has given you the honor of an elder.” +\p +\v 51 Then Daniel said to them, “Put them far apart from each another, and I will examine them.” +\v 52 So when they were put apart one from another, he called one of them, and said to him, “O you who have become old in wickedness, now your sins have returned which you have committed before, +\v 53 in pronouncing unjust judgment, condemning the innocent, and letting the guilty go free; although the Lord says, ‘You shall not kill the innocent and righteous.’ +\v 54 Now then, if you saw her, tell me, under which tree did you see them companying together?” +\p He answered, “Under a mastick tree.” +\p +\v 55 And Daniel said, “You have certainly lied against your own head; for even now the angel of God has received the sentence of God and will cut you in two.” +\v 56 So he put him aside, and commanded to bring the other, and said to him, “O you seed of Canaan, and not of Judah, beauty has deceived you, and lust has perverted your heart. +\v 57 Thus you have dealt with the daughters of Israel, and they for fear were intimate with you; but the daughter of Judah would not tolerate your wickedness. +\v 58 Now therefore tell me, under which tree did you take them being intimate together?” +\p He answered, “Under an evergreen oak tree.” +\p +\v 59 Then Daniel said to him, “You have also certainly lied against your own head; for the angel of God waits with the sword to cut you in two, that he may destroy you.” +\p +\v 60 With that, all the assembly cried out with a loud voice, and blessed God, who saves those who hope in him. +\v 61 Then they arose against the two elders, for Daniel had convicted them of false testimony out of their own mouth. +\v 62 According to the law of Moses they did to them what they maliciously intended to do to their neighbor. They put them to death, and the innocent blood was saved the same day. +\v 63 Therefore Helkias and his wife praised God for their daughter Susanna, with Joakim her husband, and all the kindred, because there was no dishonesty found in her. +\v 64 And from that day forth, Daniel had a great reputation in the sight of the people. +\c 14 +\s1 Bel and the Dragon +\p +\v 1 \f + \fr 14:1 \ft \+bk Bel and the Dragon\+bk* is translated from chapter 14 of \+bk Daniel\+bk* in the Greek Septuagint. It is not found in the traditional Hebrew text of \+bk Daniel\+bk*. \+bk Bel and the Dragon\+bk* is recognized as Deuterocanonical Scripture by the Roman Catholic, Greek Orthodox, and Russian Orthodox Churches.\f*King Astyages was gathered to his fathers, and Cyrus the Persian received his kingdom. +\v 2 Daniel lived with the king, and was honored above all his friends. +\p +\v 3 Now the Babylonians had an idol called Bel, and every day twelve great measures of fine flour, forty sheep, and six firkins\f + \fr 14:3 \ft a firkin is about 41 liters or 11 gallons.\f* of wine were spent on it. +\v 4 The king honored it and went daily to worship it; but Daniel worshiped his own God. The king said to him, “Why don’t you worship Bel?” +\p +\v 5 He said, “Because I may not honor idols made with hands, but only the living God, who has created the sky and the earth, and has sovereignty over all flesh.” +\p +\v 6 Then the king said to him, “Don’t you think that Bel is a living god? Don’t you see how much he eats and drinks every day?” +\p +\v 7 Then Daniel laughed, and said, “O king, don’t be deceived; for this is just clay inside, and brass outside, and never ate or drank anything.” +\p +\v 8 So the king was angry, and called for his priests, and said to them, “If you don’t tell me who this is who devours these expenses, you shall die. +\v 9 But if you can show me that Bel devours them, then Daniel shall die; for he has spoken blasphemy against Bel.” +\p Daniel said to the king, “Let it be according to your word.” +\p +\v 10 Now there were seventy priests of Bel, besides their wives and children. The king went with Daniel into Bel’s temple. +\v 11 So Bel’s priests said, “Behold, we will leave; but you, O king, set out the food, and mix the wine and set it out, shut the door securely, and seal it with your own signet. +\v 12 When you come in the morning, if you don’t find that Bel has eaten everything, we will suffer death, or else Daniel, who speaks falsely against us.” +\p +\v 13 They weren’t concerned, for under the table they had made a secret entrance, by which they entered in continually, and consumed those things. +\v 14 It happened, when they had gone out, the king set the food before Bel. Now Daniel had commanded his servants to bring ashes, and they scattered them all over the temple in the presence of the king alone. Then they went out, shut the door, sealed it with the king’s signet, and so departed. +\p +\v 15 Now in the night, the priests came with their wives and children, as they usually did, and ate and drank it all. +\v 16 In the morning, the king arose, and Daniel with him. +\v 17 The king said, “Daniel, are the seals whole?” +\p He said, “Yes, O king, they are whole.” +\p +\v 18 And as soon as he had opened the door, the king looked at the table, and cried with a loud voice, “You are great, O Bel, and with you is no deceit at all!” +\p +\v 19 Then Daniel laughed, and held the king that he should not go in, and said, “Behold now the pavement, and mark well whose footsteps these are.” +\p +\v 20 The king said, “I see the footsteps of men, women, and children.” Then the king was angry, +\v 21 and took the priests with their wives and children, who showed him the secret doors, where they came in and consumed the things that were on the table. +\v 22 Therefore the king killed them, and delivered Bel into Daniel’s power, who overthrew it and its temple. +\p +\v 23 In that same place there was a great dragon which the people of Babylon worshiped. +\v 24 The king said to Daniel, “Will you also say that this is of brass? Behold, he lives, eats and drinks. You can’t say that he is no living god. Therefore worship him.” +\p +\v 25 Then Daniel said, “I will worship the Lord my God; for he is a living God. +\v 26 But allow me, O king, and I will kill this dragon without sword or staff.” +\p The king said, “I allow you.” +\p +\v 27 Then Daniel took pitch, fat, and hair, and melted them together, and made lumps of them. He put these in the dragon’s mouth, so the dragon ate and burst apart. Daniel said, “Behold, these are the gods you all worship.” +\p +\v 28 When the people of Babylon heard that, they took great indignation, and conspired against the king, saying, “The king has become a Jew. He has pulled down Bel, slain the dragon, and put the priests to the sword.” +\v 29 So they came to the king, and said, “Deliver Daniel to us, or else we will destroy you and your house.” +\p +\v 30 Now when the king saw that they trapped him, being constrained, the king delivered Daniel to them. +\v 31 They cast him into the lion’s den, where he was six days. +\v 32 There were seven lions in the den, and they had been giving them two carcasses and two sheep every day, which then were not given to them, intending that they would devour Daniel. +\p +\v 33 Now there was in Jewry the prophet Habakkuk,\f + \fr 14:33 \ft Gr. \fqa Ambakoum. \f* who had made stew, and had broken bread into a bowl. He was going into the field to bring it to the reapers. +\v 34 But the angel of the Lord said to Habakkuk, “Go carry the dinner that you have into Babylon to Daniel, in the lions’ den.” +\p +\v 35 Habakkuk said, “Lord, I never saw Babylon. I don’t know where the den is.” +\p +\v 36 Then the angel of the Lord took him by the crown, and lifted him up by the hair of his head, and with the blast of his breath set him in Babylon over the den. +\p +\v 37 Habakkuk cried, saying, “O Daniel, Daniel, take the dinner which God has sent you.” +\p +\v 38 Daniel said, “You have remembered me, O God! You haven’t forsaken those who love you!” +\v 39 So Daniel arose and ate; and the angel of God set Habakkuk in his own place again immediately. +\v 40 On the seventh day, the king came to mourn for Daniel. When he came to the den, he looked in, and, behold, Daniel was sitting. +\v 41 Then the king cried with a loud voice, saying, “Great are you, O Lord, you God of Daniel, and there is none other beside you!” +\v 42 So he drew him out, and cast those that were the cause of his destruction into the den; and they were devoured in a moment before his face. \ No newline at end of file diff --git a/bibles/eng-web_usfm/70-MATeng-web.usfm b/bibles/eng-web_usfm/70-MATeng-web.usfm new file mode 100644 index 0000000..d40c9bf --- /dev/null +++ b/bibles/eng-web_usfm/70-MATeng-web.usfm @@ -0,0 +1,1624 @@ +\id MAT 40-MAT-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Matthew +\toc1 The Good News According to Matthew +\toc2 Matthew +\toc3 Mat +\mt2 The Good News According to +\mt1 Matthew +\c 1 +\p +\v 1 \w The|strong="G2424"\w* book \w of|strong="G5207"\w* \w the|strong="G2424"\w* \w genealogy|strong="G1078"\w* \w of|strong="G5207"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*,\f + \fr 1:1 \ft Messiah (Hebrew) and Christ (Greek) both mean “Anointed One”\f* \w the|strong="G2424"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w David|strong="G1138"\w*, \w the|strong="G2424"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* Abraham. +\p +\v 2 Abraham \w became|strong="G1080"\w* \w the|strong="G2532"\w* \w father|strong="G1080"\w* \w of|strong="G2532"\w* \w Isaac|strong="G2464"\w*. \w Isaac|strong="G2464"\w* \w became|strong="G1080"\w* \w the|strong="G2532"\w* \w father|strong="G1080"\w* \w of|strong="G2532"\w* \w Jacob|strong="G2384"\w*. \w Jacob|strong="G2384"\w* \w became|strong="G1080"\w* \w the|strong="G2532"\w* \w father|strong="G1080"\w* \w of|strong="G2532"\w* \w Judah|strong="G2455"\w* \w and|strong="G2532"\w* \w his|strong="G2532"\w* brothers. +\v 3 \w Judah|strong="G2455"\w* \w became|strong="G1080"\w* \w the|strong="G2532"\w* \w father|strong="G1080"\w* \w of|strong="G1537"\w* \w Perez|strong="G5329"\w* \w and|strong="G2532"\w* \w Zerah|strong="G2196"\w* \w by|strong="G1537"\w* \w Tamar|strong="G2283"\w*. \w Perez|strong="G5329"\w* \w became|strong="G1080"\w* \w the|strong="G2532"\w* \w father|strong="G1080"\w* \w of|strong="G1537"\w* \w Hezron|strong="G2074"\w*. \w Hezron|strong="G2074"\w* \w became|strong="G1080"\w* \w the|strong="G2532"\w* \w father|strong="G1080"\w* \w of|strong="G1537"\w* Ram. +\v 4 Ram \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* Amminadab. Amminadab \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* \w Nahshon|strong="G3476"\w*. \w Nahshon|strong="G3476"\w* \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* \w Salmon|strong="G4533"\w*. +\v 5 \w Salmon|strong="G4533"\w* \w became|strong="G1080"\w* \w the|strong="G1537"\w* \w father|strong="G1080"\w* \w of|strong="G1537"\w* \w Boaz|strong="G1003"\w* \w by|strong="G1537"\w* \w Rahab|strong="G4477"\w*. \w Boaz|strong="G1003"\w* \w became|strong="G1080"\w* \w the|strong="G1537"\w* \w father|strong="G1080"\w* \w of|strong="G1537"\w* \w Obed|strong="G5601"\w* \w by|strong="G1537"\w* \w Ruth|strong="G4503"\w*. \w Obed|strong="G5601"\w* \w became|strong="G1080"\w* \w the|strong="G1537"\w* \w father|strong="G1080"\w* \w of|strong="G1537"\w* \w Jesse|strong="G2421"\w*. +\v 6 \w Jesse|strong="G2421"\w* \w became|strong="G1080"\w* \w the|strong="G1537"\w* \w father|strong="G1080"\w* \w of|strong="G1537"\w* \w King|strong="G3588"\w* \w David|strong="G1138"\w*. \w David|strong="G1138"\w* \w the|strong="G1537"\w* \w king|strong="G3588"\w*\f + \fr 1:6 \ft NU omits “the king”.\f* \w became|strong="G1080"\w* \w the|strong="G1537"\w* \w father|strong="G1080"\w* \w of|strong="G1537"\w* \w Solomon|strong="G4672"\w* \w by|strong="G1537"\w* \w her|strong="G3588"\w* \w who|strong="G3588"\w* \w had|strong="G3588"\w* been \w Uriah|strong="G3774"\w*’s wife. +\v 7 \w Solomon|strong="G4672"\w* \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* \w Rehoboam|strong="G4497"\w*. \w Rehoboam|strong="G4497"\w* \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* Abijah. Abijah \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* Asa. +\v 8 Asa \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* \w Jehoshaphat|strong="G2498"\w*. \w Jehoshaphat|strong="G2498"\w* \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* \w Joram|strong="G2496"\w*. \w Joram|strong="G2496"\w* \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* \w Uzziah|strong="G3604"\w*. +\v 9 \w Uzziah|strong="G3604"\w* \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* \w Jotham|strong="G2488"\w*. \w Jotham|strong="G2488"\w* \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* Ahaz. Ahaz \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* \w Hezekiah|strong="G1478"\w*. +\v 10 \w Hezekiah|strong="G1478"\w* \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* \w Manasseh|strong="G3128"\w*. \w Manasseh|strong="G3128"\w* \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* Amon. Amon \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* \w Josiah|strong="G2502"\w*. +\v 11 \w Josiah|strong="G2502"\w* \w became|strong="G1080"\w* \w the|strong="G2532"\w* \w father|strong="G1080"\w* \w of|strong="G2532"\w* Jechoniah \w and|strong="G2532"\w* \w his|strong="G1909"\w* brothers \w at|strong="G1909"\w* \w the|strong="G2532"\w* \w time|strong="G1909"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* exile \w to|strong="G2532"\w* Babylon. +\p +\v 12 \w After|strong="G3326"\w* \w the|strong="G1161"\w* exile \w to|strong="G1161"\w* Babylon, Jechoniah \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* \w Shealtiel|strong="G4528"\w*. \w Shealtiel|strong="G4528"\w* \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* \w Zerubbabel|strong="G2216"\w*. +\v 13 \w Zerubbabel|strong="G2216"\w* \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* Abiud. Abiud \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* \w Eliakim|strong="G1662"\w*. \w Eliakim|strong="G1662"\w* \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* Azor. +\v 14 Azor \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* \w Zadok|strong="G4524"\w*. \w Zadok|strong="G4524"\w* \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* Achim. Achim \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* \w Eliud|strong="G1664"\w*. +\v 15 \w Eliud|strong="G1664"\w* \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* \w Eleazar|strong="G1648"\w*. \w Eleazar|strong="G1648"\w* \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* \w Matthan|strong="G3157"\w*. \w Matthan|strong="G3157"\w* \w became|strong="G1080"\w* \w the|strong="G1161"\w* \w father|strong="G1080"\w* \w of|strong="G1080"\w* \w Jacob|strong="G2384"\w*. +\v 16 \w Jacob|strong="G2384"\w* \w became|strong="G1080"\w* \w the|strong="G1537"\w* \w father|strong="G1080"\w* \w of|strong="G1537"\w* \w Joseph|strong="G2501"\w*, \w the|strong="G1537"\w* husband \w of|strong="G1537"\w* \w Mary|strong="G3137"\w*, \w from|strong="G1537"\w* \w whom|strong="G3739"\w* \w was|strong="G3588"\w* \w born|strong="G1080"\w* \w Jesus|strong="G2424"\w*,\f + \fr 1:16 \ft “Jesus” means “Salvation”.\f* \w who|strong="G3739"\w* \w is|strong="G3588"\w* \w called|strong="G3004"\w* \w Christ|strong="G5547"\w*. +\p +\v 17 \w So|strong="G3767"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w generations|strong="G1074"\w* \w from|strong="G2532"\w* Abraham \w to|strong="G2532"\w* \w David|strong="G1138"\w* \w are|strong="G3588"\w* \w fourteen|strong="G1180"\w* \w generations|strong="G1074"\w*; \w from|strong="G2532"\w* \w David|strong="G1138"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* exile \w to|strong="G2532"\w* Babylon \w fourteen|strong="G1180"\w* \w generations|strong="G1074"\w*; \w and|strong="G2532"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* carrying away \w to|strong="G2532"\w* Babylon \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Christ|strong="G5547"\w*, \w fourteen|strong="G1180"\w* \w generations|strong="G1074"\w*. +\p +\v 18 \w Now|strong="G1161"\w* \w the|strong="G1722"\w* \w birth|strong="G1078"\w* \w of|strong="G1537"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w was|strong="G1510"\w* \w like|strong="G3779"\w* \w this|strong="G3588"\w*: \w After|strong="G1161"\w* \w his|strong="G1438"\w* \w mother|strong="G3384"\w*, \w Mary|strong="G3137"\w*, \w was|strong="G1510"\w* \w engaged|strong="G3423"\w* \w to|strong="G1722"\w* \w Joseph|strong="G2501"\w*, \w before|strong="G4250"\w* \w they|strong="G1161"\w* \w came|strong="G4905"\w* \w together|strong="G4905"\w*, \w she|strong="G1161"\w* \w was|strong="G1510"\w* \w found|strong="G2147"\w* \w pregnant|strong="G1064"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*. +\v 19 \w Joseph|strong="G2501"\w*, \w her|strong="G1438"\w* husband, \w being|strong="G1510"\w* \w a|strong="G2532"\w* \w righteous|strong="G1342"\w* \w man|strong="G1342"\w*, \w and|strong="G2532"\w* \w not|strong="G3361"\w* \w willing|strong="G2309"\w* \w to|strong="G2532"\w* \w make|strong="G2532"\w* \w her|strong="G1438"\w* \w a|strong="G2532"\w* public example, \w intended|strong="G1014"\w* \w to|strong="G2532"\w* \w put|strong="G2532"\w* \w her|strong="G1438"\w* away \w secretly|strong="G2977"\w*. +\v 20 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w he|strong="G1161"\w* \w thought|strong="G1760"\w* \w about|strong="G2596"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w behold|strong="G2400"\w*,\f + \fr 1:20 \ft “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w an|strong="G1722"\w* angel \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w appeared|strong="G3708"\w* \w to|strong="G2596"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w a|strong="G1722"\w* \w dream|strong="G3677"\w*, \w saying|strong="G3004"\w*, “\w Joseph|strong="G2501"\w*, \w son|strong="G5207"\w* \w of|strong="G1537"\w* \w David|strong="G1138"\w*, don’\w t|strong="G3588"\w* \w be|strong="G1510"\w* \w afraid|strong="G5399"\w* \w to|strong="G2596"\w* \w take|strong="G3880"\w* \w to|strong="G2596"\w* \w yourself|strong="G4771"\w* \w Mary|strong="G3137"\w* \w as|strong="G1722"\w* \w your|strong="G2962"\w* \w wife|strong="G1135"\w*, \w for|strong="G1063"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w conceived|strong="G1080"\w* \w in|strong="G1722"\w* \w her|strong="G3708"\w* \w is|strong="G1510"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*. +\v 21 \w She|strong="G2532"\w* \w shall|strong="G2532"\w* \w give|strong="G5088"\w* \w birth|strong="G5088"\w* \w to|strong="G2532"\w* \w a|strong="G2532"\w* \w son|strong="G5207"\w*. \w You|strong="G2564"\w* \w shall|strong="G2532"\w* \w name|strong="G3686"\w* \w him|strong="G3588"\w* \w Jesus|strong="G2424"\w*,\f + \fr 1:21 \ft “Jesus” means “Salvation”.\f* \w for|strong="G1063"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w shall|strong="G2532"\w* \w save|strong="G4982"\w* \w his|strong="G2532"\w* \w people|strong="G2992"\w* \w from|strong="G2532"\w* \w their|strong="G2532"\w* sins.” +\p +\v 22 \w Now|strong="G1161"\w* \w all|strong="G3650"\w* \w this|strong="G3778"\w* \w has|strong="G2962"\w* \w happened|strong="G1096"\w* \w that|strong="G2443"\w* \w it|strong="G1161"\w* \w might|strong="G3778"\w* \w be|strong="G1096"\w* \w fulfilled|strong="G4137"\w* \w which|strong="G3588"\w* \w was|strong="G1096"\w* \w spoken|strong="G3004"\w* \w by|strong="G1223"\w* \w the|strong="G1161"\w* \w Lord|strong="G2962"\w* \w through|strong="G1223"\w* \w the|strong="G1161"\w* \w prophet|strong="G4396"\w*, \w saying|strong="G3004"\w*, +\q1 +\v 23 “\w Behold|strong="G2400"\w*, \w the|strong="G1722"\w* \w virgin|strong="G3933"\w* \w shall|strong="G2532"\w* \w be|strong="G1510"\w* \w with|strong="G3326"\w* \w child|strong="G1064"\w*, +\q2 \w and|strong="G2532"\w* \w shall|strong="G2532"\w* \w give|strong="G5088"\w* \w birth|strong="G5088"\w* \w to|strong="G2532"\w* \w a|strong="G2192"\w* \w son|strong="G5207"\w*. +\q1 \w They|strong="G2532"\w* \w shall|strong="G2532"\w* \w call|strong="G2564"\w* \w his|strong="G1722"\w* \w name|strong="G3686"\w* \w Immanuel|strong="G1694"\w*,” +\q2 \w which|strong="G3739"\w* \w is|strong="G1510"\w*, \w being|strong="G1510"\w* \w interpreted|strong="G3177"\w*, “\w God|strong="G2316"\w* \w with|strong="G3326"\w* \w us|strong="G2249"\w*.”\x + \xo 1:23 \xt Isaiah 7:14\x* +\p +\v 24 \w Joseph|strong="G2501"\w* \w arose|strong="G1453"\w* \w from|strong="G2532"\w* \w his|strong="G4160"\w* \w sleep|strong="G5258"\w*, \w and|strong="G2532"\w* \w did|strong="G4160"\w* \w as|strong="G5613"\w* \w the|strong="G2532"\w* angel \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w commanded|strong="G4367"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w took|strong="G3880"\w* \w his|strong="G4160"\w* \w wife|strong="G1135"\w* \w to|strong="G2532"\w* himself; +\v 25 \w and|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w know|strong="G1097"\w* \w her|strong="G1438"\w* sexually \w until|strong="G2193"\w* \w she|strong="G2532"\w* \w had|strong="G2424"\w* \w given|strong="G2564"\w* \w birth|strong="G5088"\w* \w to|strong="G2532"\w* \w her|strong="G1438"\w* firstborn \w son|strong="G5207"\w*. \w He|strong="G2532"\w* \w named|strong="G3686"\w* \w him|strong="G3588"\w* \w Jesus|strong="G2424"\w*. +\c 2 +\p +\v 1 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w was|strong="G3588"\w* \w born|strong="G1080"\w* \w in|strong="G1722"\w* Bethlehem \w of|strong="G2250"\w* \w Judea|strong="G2449"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w days|strong="G2250"\w* \w of|strong="G2250"\w* \w King|strong="G3588"\w* \w Herod|strong="G2264"\w*, \w behold|strong="G2400"\w*, \w wise|strong="G3854"\w* \w men|strong="G3097"\w*\f + \fr 2:1 \ft The word for “wise men” (magoi) can also mean teachers, scientists, physicians, astrologers, seers, interpreters of dreams, or sorcerers.\f* \w from|strong="G3588"\w* \w the|strong="G1722"\w* east \w came|strong="G3854"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w*, saying, +\v 2 “\w Where|strong="G4226"\w* \w is|strong="G1510"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w born|strong="G5088"\w* \w King|strong="G3588"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w*? \w For|strong="G1063"\w* \w we|strong="G1063"\w* \w saw|strong="G3708"\w* \w his|strong="G1722"\w* star \w in|strong="G1722"\w* \w the|strong="G1722"\w* east, \w and|strong="G2532"\w* \w have|strong="G2532"\w* \w come|strong="G2064"\w* \w to|strong="G2532"\w* \w worship|strong="G4352"\w* \w him|strong="G3588"\w*.” +\v 3 \w When|strong="G1161"\w* \w King|strong="G3588"\w* \w Herod|strong="G2264"\w* heard \w it|strong="G2532"\w*, \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w troubled|strong="G5015"\w*, \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w Jerusalem|strong="G2414"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w*. +\v 4 \w Gathering|strong="G4863"\w* \w together|strong="G4863"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w scribes|strong="G1122"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w*, \w he|strong="G2532"\w* \w asked|strong="G4441"\w* \w them|strong="G3588"\w* \w where|strong="G4226"\w* \w the|strong="G2532"\w* \w Christ|strong="G5547"\w* \w would|strong="G2532"\w* \w be|strong="G2532"\w* \w born|strong="G1080"\w*. +\v 5 \w They|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w In|strong="G1722"\w* Bethlehem \w of|strong="G1223"\w* \w Judea|strong="G2449"\w*, \w for|strong="G1063"\w* \w this|strong="G3588"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w prophet|strong="G4396"\w*, +\q1 +\v 6 ‘\w You|strong="G4771"\w* Bethlehem, \w land|strong="G1093"\w* \w of|strong="G1537"\w* \w Judah|strong="G2455"\w*, +\q2 \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w no|strong="G2532"\w* \w way|strong="G1722"\w* \w least|strong="G1646"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w princes|strong="G2232"\w* \w of|strong="G1537"\w* \w Judah|strong="G2455"\w*; +\q1 \w for|strong="G1063"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w you|strong="G4771"\w* \w shall|strong="G2532"\w* \w come|strong="G1831"\w* \w a|strong="G2532"\w* \w governor|strong="G2232"\w* +\q2 \w who|strong="G3588"\w* \w shall|strong="G2532"\w* \w shepherd|strong="G4165"\w* \w my|strong="G1722"\w* \w people|strong="G2992"\w*, \w Israel|strong="G2474"\w*.’”\x + \xo 2:6 \xt Micah 5:2\x* +\p +\v 7 \w Then|strong="G5119"\w* \w Herod|strong="G2264"\w* \w secretly|strong="G2977"\w* \w called|strong="G2564"\w* \w the|strong="G3588"\w* wise \w men|strong="G3097"\w*, \w and|strong="G3588"\w* learned \w from|strong="G3844"\w* \w them|strong="G3588"\w* exactly \w what|strong="G3588"\w* \w time|strong="G5550"\w* \w the|strong="G3588"\w* star \w appeared|strong="G5316"\w*. +\v 8 \w He|strong="G2532"\w* \w sent|strong="G3992"\w* \w them|strong="G3588"\w* \w to|strong="G1519"\w* Bethlehem, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Go|strong="G4198"\w* \w and|strong="G2532"\w* \w search|strong="G1833"\w* diligently \w for|strong="G1519"\w* \w the|strong="G2532"\w* young \w child|strong="G3813"\w*. \w When|strong="G1161"\w* \w you|strong="G3004"\w* \w have|strong="G2532"\w* \w found|strong="G2147"\w* \w him|strong="G3588"\w*, \w bring|strong="G2532"\w* \w me|strong="G1473"\w* \w word|strong="G3588"\w*, \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w I|strong="G1473"\w* \w also|strong="G2532"\w* \w may|strong="G2532"\w* \w come|strong="G2064"\w* \w and|strong="G2532"\w* \w worship|strong="G4352"\w* \w him|strong="G3588"\w*.” +\p +\v 9 \w They|strong="G2532"\w*, \w having|strong="G2532"\w* heard \w the|strong="G1722"\w* \w king|strong="G3588"\w*, \w went|strong="G4198"\w* \w their|strong="G1438"\w* \w way|strong="G4198"\w*; \w and|strong="G2532"\w* \w behold|strong="G2400"\w*, \w the|strong="G1722"\w* star, \w which|strong="G3739"\w* \w they|strong="G2532"\w* \w saw|strong="G3708"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* east, \w went|strong="G4198"\w* \w before|strong="G4254"\w* \w them|strong="G3588"\w* \w until|strong="G2193"\w* \w it|strong="G2532"\w* \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w stood|strong="G2476"\w* \w over|strong="G1883"\w* \w where|strong="G3757"\w* \w the|strong="G1722"\w* \w young|strong="G3739"\w* \w child|strong="G3813"\w* \w was|strong="G1510"\w*. +\v 10 \w When|strong="G1161"\w* \w they|strong="G1161"\w* \w saw|strong="G3708"\w* \w the|strong="G1161"\w* star, \w they|strong="G1161"\w* \w rejoiced|strong="G5463"\w* \w with|strong="G3588"\w* \w exceedingly|strong="G4970"\w* \w great|strong="G3173"\w* \w joy|strong="G5479"\w*. +\v 11 \w They|strong="G2532"\w* \w came|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w house|strong="G3614"\w* \w and|strong="G2532"\w* \w saw|strong="G3708"\w* \w the|strong="G2532"\w* \w young|strong="G4374"\w* \w child|strong="G3813"\w* \w with|strong="G3326"\w* \w Mary|strong="G3137"\w*, \w his|strong="G1519"\w* \w mother|strong="G3384"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w fell|strong="G4098"\w* \w down|strong="G4098"\w* \w and|strong="G2532"\w* \w worshiped|strong="G4352"\w* \w him|strong="G3588"\w*. Opening \w their|strong="G2532"\w* \w treasures|strong="G2344"\w*, \w they|strong="G2532"\w* \w offered|strong="G4374"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w gifts|strong="G1435"\w*: \w gold|strong="G5557"\w*, \w frankincense|strong="G3030"\w*, \w and|strong="G2532"\w* \w myrrh|strong="G4666"\w*. +\v 12 \w Being|strong="G2532"\w* \w warned|strong="G5537"\w* \w in|strong="G1519"\w* \w a|strong="G2532"\w* \w dream|strong="G3677"\w* \w not|strong="G3361"\w* \w to|strong="G1519"\w* return \w to|strong="G1519"\w* \w Herod|strong="G2264"\w*, \w they|strong="G2532"\w* \w went|strong="G2532"\w* \w back|strong="G1519"\w* \w to|strong="G1519"\w* \w their|strong="G2532"\w* own \w country|strong="G5561"\w* \w another|strong="G2596"\w* \w way|strong="G3598"\w*. +\p +\v 13 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* departed, \w behold|strong="G2400"\w*, \w an|strong="G2532"\w* angel \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w appeared|strong="G3708"\w* \w to|strong="G1519"\w* \w Joseph|strong="G2501"\w* \w in|strong="G1519"\w* \w a|strong="G2532"\w* \w dream|strong="G3677"\w*, \w saying|strong="G3004"\w*, “\w Arise|strong="G1453"\w* \w and|strong="G2532"\w* \w take|strong="G3880"\w* \w the|strong="G2532"\w* young \w child|strong="G3813"\w* \w and|strong="G2532"\w* \w his|strong="G1519"\w* \w mother|strong="G3384"\w*, \w and|strong="G2532"\w* \w flee|strong="G5343"\w* \w into|strong="G1519"\w* Egypt, \w and|strong="G2532"\w* stay \w there|strong="G1563"\w* \w until|strong="G2193"\w* \w I|strong="G2532"\w* \w tell|strong="G3004"\w* \w you|strong="G4771"\w*, \w for|strong="G1063"\w* \w Herod|strong="G2264"\w* \w will|strong="G3195"\w* \w seek|strong="G2212"\w* \w the|strong="G2532"\w* young \w child|strong="G3813"\w* \w to|strong="G1519"\w* destroy \w him|strong="G3588"\w*.” +\p +\v 14 \w He|strong="G2532"\w* \w arose|strong="G1453"\w* \w and|strong="G2532"\w* \w took|strong="G3880"\w* \w the|strong="G2532"\w* young \w child|strong="G3813"\w* \w and|strong="G2532"\w* \w his|strong="G1519"\w* \w mother|strong="G3384"\w* \w by|strong="G2532"\w* \w night|strong="G3571"\w* \w and|strong="G2532"\w* departed \w into|strong="G1519"\w* Egypt, +\v 15 \w and|strong="G2532"\w* \w was|strong="G1510"\w* \w there|strong="G1563"\w* \w until|strong="G2193"\w* \w the|strong="G2532"\w* \w death|strong="G5054"\w* \w of|strong="G1537"\w* \w Herod|strong="G2264"\w*, \w that|strong="G2443"\w* \w it|strong="G2532"\w* \w might|strong="G2532"\w* \w be|strong="G1510"\w* \w fulfilled|strong="G4137"\w* \w which|strong="G3588"\w* \w was|strong="G1510"\w* \w spoken|strong="G3004"\w* \w by|strong="G1223"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w prophet|strong="G4396"\w*, \w saying|strong="G3004"\w*, “\w Out|strong="G1537"\w* \w of|strong="G1537"\w* Egypt \w I|strong="G1473"\w* \w called|strong="G2564"\w* \w my|strong="G1473"\w* \w son|strong="G5207"\w*.”\x + \xo 2:15 \xt Hosea 11:1\x* +\p +\v 16 \w Then|strong="G2532"\w* \w Herod|strong="G2264"\w*, \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w mocked|strong="G1702"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* wise \w men|strong="G3956"\w*, \w was|strong="G3588"\w* \w exceedingly|strong="G3029"\w* angry, \w and|strong="G2532"\w* \w sent|strong="G2532"\w* \w out|strong="G2532"\w* \w and|strong="G2532"\w* killed \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w male|strong="G3816"\w* \w children|strong="G3816"\w* \w who|strong="G3739"\w* \w were|strong="G3588"\w* \w in|strong="G1722"\w* Bethlehem \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* surrounding countryside, \w from|strong="G3844"\w* \w two|strong="G1332"\w* \w years|strong="G1332"\w* \w old|strong="G1332"\w* \w and|strong="G2532"\w* \w under|strong="G5259"\w*, \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w exact|strong="G5550"\w* \w time|strong="G5550"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* learned \w from|strong="G3844"\w* \w the|strong="G1722"\w* wise \w men|strong="G3956"\w*. +\v 17 \w Then|strong="G5119"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w was|strong="G3588"\w* \w spoken|strong="G3004"\w* \w by|strong="G1223"\w* \w Jeremiah|strong="G2408"\w* \w the|strong="G1223"\w* \w prophet|strong="G4396"\w* \w was|strong="G3588"\w* \w fulfilled|strong="G4137"\w*, \w saying|strong="G3004"\w*, +\q1 +\v 18 “\w A|strong="G2532"\w* \w voice|strong="G5456"\w* \w was|strong="G1510"\w* heard \w in|strong="G1722"\w* \w Ramah|strong="G4471"\w*, +\q2 lamentation, \w weeping|strong="G2799"\w* \w and|strong="G2532"\w* \w great|strong="G4183"\w* \w mourning|strong="G3602"\w*, +\q1 \w Rachel|strong="G4478"\w* \w weeping|strong="G2799"\w* \w for|strong="G3754"\w* \w her|strong="G3754"\w* \w children|strong="G5043"\w*; +\q2 \w she|strong="G2532"\w* wouldn’\w t|strong="G3588"\w* \w be|strong="G1510"\w* \w comforted|strong="G3870"\w*, +\q2 \w because|strong="G3754"\w* \w they|strong="G2532"\w* \w are|strong="G1510"\w* \w no|strong="G3756"\w* \w more|strong="G4183"\w*.”\x + \xo 2:18 \xt Jeremiah 31:15\x* +\p +\v 19 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w Herod|strong="G2264"\w* \w was|strong="G3588"\w* \w dead|strong="G5053"\w*, \w behold|strong="G2400"\w*, \w an|strong="G1722"\w* angel \w of|strong="G2962"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w appeared|strong="G3708"\w* \w in|strong="G1722"\w* \w a|strong="G1722"\w* \w dream|strong="G3677"\w* \w to|strong="G2596"\w* \w Joseph|strong="G2501"\w* \w in|strong="G1722"\w* Egypt, saying, +\v 20 “\w Arise|strong="G1453"\w* \w and|strong="G2532"\w* \w take|strong="G3880"\w* \w the|strong="G2532"\w* young \w child|strong="G3813"\w* \w and|strong="G2532"\w* \w his|strong="G1519"\w* \w mother|strong="G3384"\w*, \w and|strong="G2532"\w* \w go|strong="G4198"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w land|strong="G1093"\w* \w of|strong="G2532"\w* \w Israel|strong="G2474"\w*, \w for|strong="G1063"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w sought|strong="G2212"\w* \w the|strong="G2532"\w* young \w child|strong="G3813"\w*’s \w life|strong="G5590"\w* \w are|strong="G3588"\w* \w dead|strong="G2348"\w*.” +\p +\v 21 \w He|strong="G2532"\w* \w arose|strong="G1453"\w* \w and|strong="G2532"\w* \w took|strong="G3880"\w* \w the|strong="G2532"\w* young \w child|strong="G3813"\w* \w and|strong="G2532"\w* \w his|strong="G1519"\w* \w mother|strong="G3384"\w*, \w and|strong="G2532"\w* \w came|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w land|strong="G1093"\w* \w of|strong="G2532"\w* \w Israel|strong="G2474"\w*. +\v 22 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w he|strong="G1161"\w* heard \w that|strong="G3754"\w* Archelaus \w was|strong="G3588"\w* reigning \w over|strong="G2596"\w* \w Judea|strong="G2449"\w* \w in|strong="G1519"\w* \w the|strong="G1519"\w* \w place|strong="G1563"\w* \w of|strong="G3962"\w* \w his|strong="G1519"\w* \w father|strong="G3962"\w*, \w Herod|strong="G2264"\w*, \w he|strong="G1161"\w* \w was|strong="G3588"\w* \w afraid|strong="G5399"\w* \w to|strong="G1519"\w* \w go|strong="G1519"\w* \w there|strong="G1563"\w*. \w Being|strong="G1161"\w* \w warned|strong="G5537"\w* \w in|strong="G1519"\w* \w a|strong="G1519"\w* \w dream|strong="G3677"\w*, \w he|strong="G1161"\w* withdrew \w into|strong="G1519"\w* \w the|strong="G1519"\w* region \w of|strong="G3962"\w* \w Galilee|strong="G1056"\w*, +\v 23 \w and|strong="G2532"\w* \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w lived|strong="G2730"\w* \w in|strong="G1519"\w* \w a|strong="G2532"\w* \w city|strong="G4172"\w* \w called|strong="G2564"\w* \w Nazareth|strong="G3478"\w*; \w that|strong="G3754"\w* \w it|strong="G2532"\w* \w might|strong="G2532"\w* \w be|strong="G2532"\w* \w fulfilled|strong="G4137"\w* \w which|strong="G3588"\w* \w was|strong="G3588"\w* \w spoken|strong="G3004"\w* \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w prophets|strong="G4396"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w called|strong="G2564"\w* \w a|strong="G2532"\w* \w Nazarene|strong="G3480"\w*. +\c 3 +\p +\v 1 \w In|strong="G1722"\w* \w those|strong="G3588"\w* \w days|strong="G2250"\w*, \w John|strong="G2491"\w* \w the|strong="G1722"\w* Baptizer \w came|strong="G3854"\w*, \w preaching|strong="G2784"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wilderness|strong="G2048"\w* \w of|strong="G2250"\w* \w Judea|strong="G2449"\w*, saying, +\v 2 “\w Repent|strong="G3340"\w*, \w for|strong="G1063"\w* \w the|strong="G2532"\w* Kingdom \w of|strong="G2532"\w* \w Heaven|strong="G3772"\w* \w is|strong="G3588"\w* \w at|strong="G3588"\w* \w hand|strong="G1448"\w*!” +\v 3 \w For|strong="G1063"\w* \w this|strong="G3778"\w* \w is|strong="G1510"\w* \w he|strong="G3778"\w* \w who|strong="G3588"\w* \w was|strong="G1510"\w* \w spoken|strong="G3004"\w* \w of|strong="G1223"\w* \w by|strong="G1223"\w* \w Isaiah|strong="G2268"\w* \w the|strong="G1722"\w* \w prophet|strong="G4396"\w*, \w saying|strong="G3004"\w*, +\q1 “\w The|strong="G1722"\w* \w voice|strong="G5456"\w* \w of|strong="G1223"\w* \w one|strong="G3588"\w* crying \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wilderness|strong="G2048"\w*, +\q2 \w make|strong="G4160"\w* \w the|strong="G1722"\w* \w way|strong="G3598"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w ready|strong="G2090"\w*! +\q2 \w Make|strong="G4160"\w* \w his|strong="G1223"\w* \w paths|strong="G5147"\w* \w straight|strong="G2117"\w*!”\x + \xo 3:3 \xt Isaiah 40:3\x* +\p +\v 4 \w Now|strong="G1161"\w* \w John|strong="G2491"\w* himself \w wore|strong="G2192"\w* \w clothing|strong="G1742"\w* \w made|strong="G1161"\w* \w of|strong="G4012"\w* \w camel|strong="G2574"\w*’\w s|strong="G2192"\w* \w hair|strong="G2359"\w* \w with|strong="G2532"\w* \w a|strong="G2192"\w* \w leather|strong="G1193"\w* \w belt|strong="G2223"\w* \w around|strong="G4012"\w* \w his|strong="G4012"\w* \w waist|strong="G3751"\w*. \w His|strong="G4012"\w* \w food|strong="G5160"\w* \w was|strong="G1510"\w* locusts \w and|strong="G2532"\w* \w wild|strong="G2532"\w* \w honey|strong="G3192"\w*. +\v 5 \w Then|strong="G2532"\w* \w people|strong="G3956"\w* \w from|strong="G2532"\w* \w Jerusalem|strong="G2414"\w*, \w all|strong="G3956"\w* \w of|strong="G2532"\w* \w Judea|strong="G2449"\w*, \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w region|strong="G4066"\w* \w around|strong="G4314"\w* \w the|strong="G2532"\w* \w Jordan|strong="G2446"\w* \w went|strong="G2532"\w* \w out|strong="G1607"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*. +\v 6 \w They|strong="G2532"\w* \w were|strong="G3588"\w* baptized \w by|strong="G1722"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Jordan|strong="G2446"\w*, \w confessing|strong="G1843"\w* \w their|strong="G2532"\w* sins. +\p +\v 7 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w many|strong="G4183"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w and|strong="G2532"\w* \w Sadducees|strong="G4523"\w* \w coming|strong="G2064"\w* \w for|strong="G1909"\w* \w his|strong="G1909"\w* baptism, \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, “\w You|strong="G5210"\w* \w offspring|strong="G1081"\w* \w of|strong="G2532"\w* \w vipers|strong="G2191"\w*, \w who|strong="G5101"\w* \w warned|strong="G5263"\w* \w you|strong="G5210"\w* \w to|strong="G2532"\w* \w flee|strong="G5343"\w* \w from|strong="G2064"\w* \w the|strong="G2532"\w* \w wrath|strong="G3709"\w* \w to|strong="G2532"\w* \w come|strong="G2064"\w*? +\v 8 \w Therefore|strong="G3767"\w* \w produce|strong="G4160"\w* \w fruit|strong="G2590"\w* worthy \w of|strong="G3588"\w* \w repentance|strong="G3341"\w*! +\v 9 Don’\w t|strong="G3588"\w* \w think|strong="G1380"\w* \w to|strong="G2532"\w* \w yourselves|strong="G1438"\w*, ‘\w We|strong="G3754"\w* \w have|strong="G2192"\w* Abraham \w for|strong="G1063"\w* \w our|strong="G2316"\w* \w father|strong="G3962"\w*,’ \w for|strong="G1063"\w* \w I|strong="G2532"\w* \w tell|strong="G3004"\w* \w you|strong="G5210"\w* \w that|strong="G3754"\w* \w God|strong="G2316"\w* \w is|strong="G3588"\w* \w able|strong="G1410"\w* \w to|strong="G2532"\w* \w raise|strong="G1453"\w* \w up|strong="G1453"\w* \w children|strong="G5043"\w* \w to|strong="G2532"\w* Abraham \w from|strong="G1537"\w* \w these|strong="G3778"\w* \w stones|strong="G3037"\w*. +\v 10 \w Even|strong="G2532"\w* \w now|strong="G1161"\w* \w the|strong="G2532"\w* ax \w lies|strong="G2749"\w* \w at|strong="G1519"\w* \w the|strong="G2532"\w* \w root|strong="G4491"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w trees|strong="G1186"\w*. \w Therefore|strong="G3767"\w* \w every|strong="G3956"\w* \w tree|strong="G1186"\w* \w that|strong="G3588"\w* doesn’\w t|strong="G3588"\w* \w produce|strong="G4160"\w* \w good|strong="G2570"\w* \w fruit|strong="G2590"\w* \w is|strong="G3588"\w* \w cut|strong="G1581"\w* \w down|strong="G1581"\w*, \w and|strong="G2532"\w* \w cast|strong="G2532"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w fire|strong="G4442"\w*. +\p +\v 11 “\w I|strong="G1473"\w* \w indeed|strong="G2532"\w* baptize \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w water|strong="G5204"\w* \w for|strong="G1519"\w* \w repentance|strong="G3341"\w*, \w but|strong="G1161"\w* \w he|strong="G2532"\w* \w who|strong="G3739"\w* \w comes|strong="G2064"\w* \w after|strong="G3694"\w* \w me|strong="G1473"\w* \w is|strong="G1510"\w* \w mightier|strong="G2478"\w* \w than|strong="G2478"\w* \w I|strong="G1473"\w*, \w whose|strong="G3739"\w* \w sandals|strong="G5266"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w not|strong="G3756"\w* \w worthy|strong="G2425"\w* \w to|strong="G1519"\w* carry. \w He|strong="G2532"\w* \w will|strong="G1510"\w* baptize \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*.\f + \fr 3:11 \ft TR and NU add “and with fire” \f* +\v 12 \w His|strong="G1519"\w* \w winnowing|strong="G4425"\w* \w fork|strong="G4425"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w his|strong="G1519"\w* \w hand|strong="G5495"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w will|strong="G2532"\w* \w thoroughly|strong="G1245"\w* cleanse \w his|strong="G1519"\w* threshing floor. \w He|strong="G2532"\w* \w will|strong="G2532"\w* \w gather|strong="G4863"\w* \w his|strong="G1519"\w* \w wheat|strong="G4621"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* barn, \w but|strong="G1161"\w* \w the|strong="G1722"\w* chaff \w he|strong="G2532"\w* \w will|strong="G2532"\w* \w burn|strong="G2618"\w* \w up|strong="G1519"\w* \w with|strong="G1722"\w* unquenchable \w fire|strong="G4442"\w*.” +\p +\v 13 \w Then|strong="G5119"\w* \w Jesus|strong="G2424"\w* \w came|strong="G3854"\w* \w from|strong="G5259"\w* \w Galilee|strong="G1056"\w* \w to|strong="G4314"\w* \w the|strong="G1909"\w* \w Jordan|strong="G2446"\w*\f + \fr 3:13 \ft i.e., the Jordan River\f* \w to|strong="G4314"\w* \w John|strong="G2491"\w*, \w to|strong="G4314"\w* \w be|strong="G3588"\w* baptized \w by|strong="G5259"\w* \w him|strong="G3588"\w*. +\v 14 \w But|strong="G1161"\w* \w John|strong="G2491"\w* \w would|strong="G2532"\w* \w have|strong="G2192"\w* hindered \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w I|strong="G1473"\w* \w need|strong="G5532"\w* \w to|strong="G4314"\w* \w be|strong="G2532"\w* baptized \w by|strong="G5259"\w* \w you|strong="G4771"\w*, \w and|strong="G2532"\w* \w you|strong="G4771"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w me|strong="G1473"\w*?” +\p +\v 15 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w*, answering, \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \wj “Allow \+w it|strong="G1161"\+w* \+w now|strong="G1161"\+w*, \+w for|strong="G1063"\+w* \+w this|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G3956"\+w* \+w fitting|strong="G4241"\+w* \+w way|strong="G3779"\+w* \+w for|strong="G1063"\+w* \+w us|strong="G3004"\+w* \+w to|strong="G4314"\+w* \+w fulfill|strong="G4137"\+w* \+w all|strong="G3956"\+w* \+w righteousness|strong="G1343"\+w*.”\wj* \w Then|strong="G5119"\w* \w he|strong="G1161"\w* allowed \w him|strong="G3588"\w*. +\p +\v 16 \w Jesus|strong="G2424"\w*, \w when|strong="G1161"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* baptized, \w went|strong="G2064"\w* \w up|strong="G2532"\w* directly \w from|strong="G2064"\w* \w the|strong="G2532"\w* \w water|strong="G5204"\w*: \w and|strong="G2532"\w* \w behold|strong="G2400"\w*, \w the|strong="G2532"\w* \w heavens|strong="G3772"\w* \w were|strong="G3588"\w* opened \w to|strong="G2532"\w* \w him|strong="G3588"\w*. \w He|strong="G2532"\w* \w saw|strong="G3708"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w God|strong="G2316"\w* \w descending|strong="G2597"\w* \w as|strong="G1161"\w* \w a|strong="G2532"\w* \w dove|strong="G4058"\w*, \w and|strong="G2532"\w* \w coming|strong="G2064"\w* \w on|strong="G1909"\w* \w him|strong="G3588"\w*. +\v 17 \w Behold|strong="G2400"\w*, \w a|strong="G2532"\w* \w voice|strong="G5456"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w heavens|strong="G3772"\w* \w said|strong="G3004"\w*, “\w This|strong="G3778"\w* \w is|strong="G1510"\w* \w my|strong="G3708"\w* beloved \w Son|strong="G5207"\w*, \w with|strong="G1722"\w* \w whom|strong="G3739"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w well|strong="G2532"\w* \w pleased|strong="G2106"\w*.” +\c 4 +\p +\v 1 \w Then|strong="G5119"\w* \w Jesus|strong="G2424"\w* \w was|strong="G3588"\w* \w led|strong="G2424"\w* \w up|strong="G1519"\w* \w by|strong="G5259"\w* \w the|strong="G1519"\w* \w Spirit|strong="G4151"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w wilderness|strong="G2048"\w* \w to|strong="G1519"\w* \w be|strong="G1519"\w* \w tempted|strong="G3985"\w* \w by|strong="G5259"\w* \w the|strong="G1519"\w* \w devil|strong="G1228"\w*. +\v 2 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w fasted|strong="G3522"\w* \w forty|strong="G5062"\w* \w days|strong="G2250"\w* \w and|strong="G2532"\w* \w forty|strong="G5062"\w* \w nights|strong="G3571"\w*, \w he|strong="G2532"\w* \w was|strong="G2532"\w* \w hungry|strong="G3983"\w* \w afterward|strong="G5305"\w*. +\v 3 \w The|strong="G2532"\w* \w tempter|strong="G3985"\w* \w came|strong="G4334"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w*, “\w If|strong="G1487"\w* \w you|strong="G1487"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*, \w command|strong="G3004"\w* \w that|strong="G2443"\w* \w these|strong="G3778"\w* \w stones|strong="G3037"\w* \w become|strong="G1096"\w* bread.” +\p +\v 4 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w answered|strong="G3004"\w*, \wj “\+w It|strong="G1161"\+w* \+w is|strong="G3588"\+w* \+w written|strong="G1125"\+w*, ‘\+w Man|strong="G3956"\+w* \+w shall|strong="G2316"\+w* \+w not|strong="G3756"\+w* \+w live|strong="G2198"\+w* \+w by|strong="G1223"\+w* bread \+w alone|strong="G3441"\+w*, \+w but|strong="G1161"\+w* \+w by|strong="G1223"\+w* \+w every|strong="G3956"\+w* \+w word|strong="G4487"\+w* \+w that|strong="G3588"\+w* \+w proceeds|strong="G1607"\+w* \+w out|strong="G1607"\+w* \+w of|strong="G1223"\+w* \+w God|strong="G2316"\+w*’s \+w mouth|strong="G4750"\+w*.’”\wj*\x + \xo 4:4 \xt Deuteronomy 8:3\x* +\p +\v 5 \w Then|strong="G2532"\w* \w the|strong="G2532"\w* \w devil|strong="G1228"\w* \w took|strong="G3880"\w* \w him|strong="G3588"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w holy|strong="G2413"\w* \w city|strong="G4172"\w*. \w He|strong="G2532"\w* \w set|strong="G2476"\w* \w him|strong="G3588"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w pinnacle|strong="G4419"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w temple|strong="G2413"\w*, +\v 6 \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w If|strong="G1487"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*, throw \w yourself|strong="G4572"\w* \w down|strong="G2736"\w*, \w for|strong="G1063"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w written|strong="G1125"\w*, +\q1 ‘\w He|strong="G2532"\w* \w will|strong="G2316"\w* \w command|strong="G1781"\w* \w his|strong="G4012"\w* angels \w concerning|strong="G4012"\w* \w you|strong="G4771"\w*,’ \w and|strong="G2532"\w*, +\q1 ‘\w On|strong="G1909"\w* \w their|strong="G2532"\w* \w hands|strong="G5495"\w* \w they|strong="G2532"\w* \w will|strong="G2316"\w* \w bear|strong="G2532"\w* \w you|strong="G4771"\w* \w up|strong="G2532"\w*, +\q2 \w so|strong="G2532"\w* \w that|strong="G3754"\w* \w you|strong="G4771"\w* don’\w t|strong="G3588"\w* \w dash|strong="G4350"\w* \w your|strong="G2532"\w* \w foot|strong="G4228"\w* \w against|strong="G1909"\w* \w a|strong="G2532"\w* \w stone|strong="G3037"\w*.’”\x + \xo 4:6 \xt Psalms 91:11-12 \x* +\p +\v 7 \w Jesus|strong="G2424"\w* \w said|strong="G5346"\w* \w to|strong="G3756"\w* \w him|strong="G3588"\w*, \wj “\+w Again|strong="G3825"\+w*, \+w it|strong="G3825"\+w* \+w is|strong="G3588"\+w* \+w written|strong="G1125"\+w*, ‘\+w You|strong="G4771"\+w* \+w shall|strong="G2316"\+w* \+w not|strong="G3756"\+w* \+w test|strong="G1598"\+w* \+w the|strong="G3588"\+w* \+w Lord|strong="G2962"\+w*, \+w your|strong="G2962"\+w* \+w God|strong="G2316"\+w*.’”\wj*\x + \xo 4:7 \xt Deuteronomy 6:16\x* +\p +\v 8 \w Again|strong="G3825"\w*, \w the|strong="G2532"\w* \w devil|strong="G1228"\w* \w took|strong="G3880"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w an|strong="G2532"\w* \w exceedingly|strong="G3029"\w* \w high|strong="G5308"\w* \w mountain|strong="G3735"\w*, \w and|strong="G2532"\w* \w showed|strong="G1166"\w* \w him|strong="G3588"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* kingdoms \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w* \w and|strong="G2532"\w* \w their|strong="G2532"\w* \w glory|strong="G1391"\w*. +\v 9 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G1325"\w*, “\w I|strong="G1473"\w* \w will|strong="G2532"\w* \w give|strong="G1325"\w* \w you|strong="G4771"\w* \w all|strong="G3956"\w* \w of|strong="G2532"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w*, \w if|strong="G1437"\w* \w you|strong="G4771"\w* \w will|strong="G2532"\w* \w fall|strong="G4098"\w* \w down|strong="G4098"\w* \w and|strong="G2532"\w* \w worship|strong="G4352"\w* \w me|strong="G1325"\w*.” +\p +\v 10 \w Then|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Get|strong="G5217"\+w* behind \+w me|strong="G3004"\+w*,\wj*\f + \fr 4:10 \ft TR and NU read “Go away” instead of “Get behind me”\f* \wj \+w Satan|strong="G4567"\+w*! \+w For|strong="G1063"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w written|strong="G1125"\+w*, ‘\+w You|strong="G4771"\+w* \+w shall|strong="G2532"\+w* \+w worship|strong="G4352"\+w* \+w the|strong="G2532"\+w* \+w Lord|strong="G2962"\+w* \+w your|strong="G2962"\+w* \+w God|strong="G2316"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w shall|strong="G2532"\+w* \+w serve|strong="G3000"\+w* \+w him|strong="G3588"\+w* \+w only|strong="G3441"\+w*.’”\wj* \x + \xo 4:10 \xt Deuteronomy 6:13\x* +\p +\v 11 \w Then|strong="G2532"\w* \w the|strong="G2532"\w* \w devil|strong="G1228"\w* left \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w behold|strong="G2400"\w*, angels \w came|strong="G4334"\w* \w and|strong="G2532"\w* \w served|strong="G1247"\w* \w him|strong="G3588"\w*. +\p +\v 12 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* Jesus heard \w that|strong="G3754"\w* \w John|strong="G2491"\w* \w was|strong="G3588"\w* \w delivered|strong="G3860"\w* \w up|strong="G3860"\w*, \w he|strong="G1161"\w* withdrew \w into|strong="G1519"\w* \w Galilee|strong="G1056"\w*. +\v 13 \w Leaving|strong="G2641"\w* \w Nazareth|strong="G3478"\w*, \w he|strong="G2532"\w* \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w lived|strong="G2730"\w* \w in|strong="G1722"\w* \w Capernaum|strong="G2584"\w*, \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w sea|strong="G3864"\w*, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w region|strong="G3725"\w* \w of|strong="G2532"\w* \w Zebulun|strong="G2194"\w* \w and|strong="G2532"\w* \w Naphtali|strong="G3508"\w*, +\v 14 \w that|strong="G2443"\w* \w it|strong="G1223"\w* might \w be|strong="G2443"\w* \w fulfilled|strong="G4137"\w* \w which|strong="G3588"\w* \w was|strong="G3588"\w* \w spoken|strong="G3004"\w* \w through|strong="G1223"\w* \w Isaiah|strong="G2268"\w* \w the|strong="G1223"\w* \w prophet|strong="G4396"\w*, \w saying|strong="G3004"\w*, +\q1 +\v 15 “\w The|strong="G2532"\w* \w land|strong="G1093"\w* \w of|strong="G2532"\w* \w Zebulun|strong="G2194"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w land|strong="G1093"\w* \w of|strong="G2532"\w* \w Naphtali|strong="G3508"\w*, +\q2 toward \w the|strong="G2532"\w* \w sea|strong="G2281"\w*, \w beyond|strong="G4008"\w* \w the|strong="G2532"\w* \w Jordan|strong="G2446"\w*, +\q2 \w Galilee|strong="G1056"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w*, +\q1 +\v 16 \w the|strong="G1722"\w* \w people|strong="G2992"\w* \w who|strong="G3588"\w* \w sat|strong="G2521"\w* \w in|strong="G1722"\w* \w darkness|strong="G4655"\w* \w saw|strong="G3708"\w* \w a|strong="G2532"\w* \w great|strong="G3173"\w* \w light|strong="G5457"\w*; +\q2 \w to|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w sat|strong="G2521"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w region|strong="G5561"\w* \w and|strong="G2532"\w* \w shadow|strong="G4639"\w* \w of|strong="G2532"\w* \w death|strong="G2288"\w*, +\q2 \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w light|strong="G5457"\w* \w has|strong="G3708"\w* dawned.”\x + \xo 4:16 \xt Isaiah 9:1-2\x* +\p +\v 17 \w From|strong="G2532"\w* \w that|strong="G3588"\w* \w time|strong="G5119"\w*, \w Jesus|strong="G2424"\w* \w began|strong="G5119"\w* \w to|strong="G2532"\w* \w preach|strong="G2784"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w say|strong="G3004"\w*, \wj “\+w Repent|strong="G3340"\+w*! \+w For|strong="G1063"\+w* \+w the|strong="G2532"\+w* Kingdom \+w of|strong="G2532"\+w* \+w Heaven|strong="G3772"\+w* \+w is|strong="G3588"\+w* \+w at|strong="G3588"\+w* \+w hand|strong="G1448"\+w*.”\wj* +\p +\v 18 \w Walking|strong="G4043"\w* \w by|strong="G3844"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w* \w of|strong="G2532"\w* \w Galilee|strong="G1056"\w*, \w he|strong="G2532"\w*\f + \fr 4:18 \ft TR reads “Jesus” instead of “he” \f* \w saw|strong="G3708"\w* \w two|strong="G1417"\w* brothers: \w Simon|strong="G4613"\w*, \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w called|strong="G3004"\w* \w Peter|strong="G4074"\w*, \w and|strong="G2532"\w* Andrew, \w his|strong="G1519"\w* brother, casting \w a|strong="G2532"\w* net \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w*; \w for|strong="G1063"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* fishermen. +\v 19 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G4160"\w*, \wj “\+w Come|strong="G1205"\+w* \+w after|strong="G3694"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w make|strong="G4160"\+w* \+w you|strong="G5210"\+w* fishers \+w for|strong="G2532"\+w* men.”\wj* +\p +\v 20 \w They|strong="G1161"\w* \w immediately|strong="G2112"\w* left \w their|strong="G3588"\w* \w nets|strong="G1350"\w* \w and|strong="G1161"\w* followed \w him|strong="G3588"\w*. +\v 21 \w Going|strong="G2532"\w* \w on|strong="G1722"\w* \w from|strong="G2532"\w* \w there|strong="G2532"\w*, \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w two|strong="G1417"\w* \w other|strong="G1438"\w* brothers, \w James|strong="G2385"\w* \w the|strong="G1722"\w* son \w of|strong="G2532"\w* \w Zebedee|strong="G2199"\w*, \w and|strong="G2532"\w* \w John|strong="G2491"\w* \w his|strong="G1438"\w* brother, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w boat|strong="G4143"\w* \w with|strong="G3326"\w* \w Zebedee|strong="G2199"\w* \w their|strong="G1438"\w* \w father|strong="G3962"\w*, \w mending|strong="G2675"\w* \w their|strong="G1438"\w* \w nets|strong="G1350"\w*. \w He|strong="G2532"\w* \w called|strong="G2564"\w* \w them|strong="G3588"\w*. +\v 22 \w They|strong="G2532"\w* \w immediately|strong="G2112"\w* left \w the|strong="G2532"\w* \w boat|strong="G4143"\w* \w and|strong="G2532"\w* \w their|strong="G2532"\w* \w father|strong="G3962"\w*, \w and|strong="G2532"\w* followed \w him|strong="G3588"\w*. +\p +\v 23 \w Jesus|strong="G2532"\w* \w went|strong="G2532"\w* \w about|strong="G1722"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w Galilee|strong="G1056"\w*, \w teaching|strong="G1321"\w* \w in|strong="G1722"\w* \w their|strong="G2532"\w* \w synagogues|strong="G4864"\w*, \w preaching|strong="G2784"\w* \w the|strong="G1722"\w* \w Good|strong="G3956"\w* \w News|strong="G2098"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* Kingdom, \w and|strong="G2532"\w* \w healing|strong="G2323"\w* \w every|strong="G3956"\w* \w disease|strong="G3119"\w* \w and|strong="G2532"\w* \w every|strong="G3956"\w* \w sickness|strong="G3119"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w*. +\v 24 \w The|strong="G2532"\w* report \w about|strong="G1519"\w* \w him|strong="G3588"\w* \w went|strong="G2532"\w* \w out|strong="G2532"\w* \w into|strong="G1519"\w* \w all|strong="G3956"\w* \w Syria|strong="G4947"\w*. \w They|strong="G2532"\w* \w brought|strong="G4374"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w all|strong="G3956"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w sick|strong="G2560"\w*, \w afflicted|strong="G4912"\w* \w with|strong="G2532"\w* \w various|strong="G4164"\w* \w diseases|strong="G3554"\w* \w and|strong="G2532"\w* torments, \w possessed|strong="G2192"\w* \w with|strong="G2532"\w* demons, \w epileptics|strong="G4583"\w*, \w and|strong="G2532"\w* \w paralytics|strong="G3885"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w healed|strong="G2323"\w* \w them|strong="G3588"\w*. +\v 25 \w Great|strong="G4183"\w* \w multitudes|strong="G3793"\w* \w from|strong="G2532"\w* \w Galilee|strong="G1056"\w*, \w Decapolis|strong="G1179"\w*, \w Jerusalem|strong="G2414"\w*, \w Judea|strong="G2449"\w*, \w and|strong="G2532"\w* \w from|strong="G2532"\w* \w beyond|strong="G4008"\w* \w the|strong="G2532"\w* \w Jordan|strong="G2446"\w* followed \w him|strong="G3588"\w*. +\c 5 +\p +\v 1 \w Seeing|strong="G3708"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w*, \w he|strong="G2532"\w* \w went|strong="G4334"\w* \w up|strong="G1519"\w* \w onto|strong="G1519"\w* \w the|strong="G2532"\w* \w mountain|strong="G3735"\w*. \w When|strong="G1161"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w sat|strong="G2523"\w* \w down|strong="G2523"\w*, \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w came|strong="G4334"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*. +\v 2 \w He|strong="G2532"\w* opened \w his|strong="G1438"\w* \w mouth|strong="G4750"\w* \w and|strong="G2532"\w* \w taught|strong="G1321"\w* \w them|strong="G3588"\w*, \w saying|strong="G3004"\w*, +\q1 +\v 3 \wj “\+w Blessed|strong="G3107"\+w* \+w are|strong="G1510"\+w* \+w the|strong="G3588"\+w* \+w poor|strong="G4434"\+w* \+w in|strong="G3588"\+w* \+w spirit|strong="G4151"\+w*,\wj* +\q2 \wj \+w for|strong="G3754"\+w* theirs \+w is|strong="G1510"\+w* \+w the|strong="G3588"\+w* Kingdom \+w of|strong="G4151"\+w* \+w Heaven|strong="G3772"\+w*.\wj*\x + \xo 5:3 \xt Isaiah 57:15; 66:2\x* +\q1 +\v 4 \wj \+w Blessed|strong="G3107"\+w* \+w are|strong="G3588"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w mourn|strong="G3996"\+w*,\wj* +\q2 \wj \+w for|strong="G3754"\+w* \+w they|strong="G3588"\+w* \+w shall|strong="G3748"\+w* \+w be|strong="G3588"\+w* \+w comforted|strong="G3870"\+w*.\wj*\x + \xo 5:4 \xt Isaiah 61:2; 66:10,13\x* +\q1 +\v 5 \wj \+w Blessed|strong="G3107"\+w* \+w are|strong="G3588"\+w* \+w the|strong="G3588"\+w* \+w gentle|strong="G4239"\+w*,\wj* +\q2 \wj \+w for|strong="G3754"\+w* \+w they|strong="G3588"\+w* \+w shall|strong="G3748"\+w* \+w inherit|strong="G2816"\+w* \+w the|strong="G3588"\+w* \+w earth|strong="G1093"\+w*.\wj*\f + \fr 5:5 \ft or, land.\f*\x + \xo 5:5 \xt Psalms 37:11\x* +\q1 +\v 6 \wj \+w Blessed|strong="G3107"\+w* \+w are|strong="G3588"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w hunger|strong="G3983"\+w* \+w and|strong="G2532"\+w* \+w thirst|strong="G1372"\+w* \+w for|strong="G3754"\+w* \+w righteousness|strong="G1343"\+w*, \wj* +\q2 \wj \+w for|strong="G3754"\+w* \+w they|strong="G2532"\+w* \+w shall|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w filled|strong="G5526"\+w*.\wj* +\q1 +\v 7 \wj \+w Blessed|strong="G3107"\+w* \+w are|strong="G3588"\+w* \+w the|strong="G3588"\+w* \+w merciful|strong="G1655"\+w*,\wj* +\q2 \wj \+w for|strong="G3754"\+w* \+w they|strong="G3588"\+w* \+w shall|strong="G3748"\+w* obtain \+w mercy|strong="G1653"\+w*.\wj* +\q1 +\v 8 \wj \+w Blessed|strong="G3107"\+w* \+w are|strong="G3588"\+w* \+w the|strong="G3588"\+w* \+w pure|strong="G2513"\+w* \+w in|strong="G2316"\+w* \+w heart|strong="G2588"\+w*,\wj* +\q2 \wj \+w for|strong="G3754"\+w* \+w they|strong="G3588"\+w* \+w shall|strong="G2316"\+w* \+w see|strong="G3708"\+w* \+w God|strong="G2316"\+w*.\wj* +\q1 +\v 9 \wj \+w Blessed|strong="G3107"\+w* \+w are|strong="G3588"\+w* \+w the|strong="G3588"\+w* \+w peacemakers|strong="G1518"\+w*,\wj* +\q2 \wj \+w for|strong="G3754"\+w* \+w they|strong="G3588"\+w* \+w shall|strong="G2316"\+w* \+w be|strong="G2316"\+w* \+w called|strong="G2564"\+w* \+w children|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w God|strong="G2316"\+w*.\wj* +\q1 +\v 10 \wj \+w Blessed|strong="G3107"\+w* \+w are|strong="G1510"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w have|strong="G3748"\+w* \+w been|strong="G1510"\+w* \+w persecuted|strong="G1377"\+w* \+w for|strong="G3754"\+w* \+w righteousness|strong="G1343"\+w*’ \+w sake|strong="G1752"\+w*, \wj* +\q2 \wj \+w for|strong="G3754"\+w* theirs \+w is|strong="G1510"\+w* \+w the|strong="G3588"\+w* Kingdom \+w of|strong="G1343"\+w* \+w Heaven|strong="G3772"\+w*.\wj* +\p +\v 11 \wj “\+w Blessed|strong="G3107"\+w* \+w are|strong="G1510"\+w* \+w you|strong="G5210"\+w* \+w when|strong="G3752"\+w* \+w people|strong="G3956"\+w* \+w reproach|strong="G3679"\+w* \+w you|strong="G5210"\+w*, \+w persecute|strong="G1377"\+w* \+w you|strong="G5210"\+w*, \+w and|strong="G2532"\+w* \+w say|strong="G3004"\+w* \+w all|strong="G3956"\+w* \+w kinds|strong="G3956"\+w* \+w of|strong="G2532"\+w* \+w evil|strong="G4190"\+w* \+w against|strong="G2596"\+w* \+w you|strong="G5210"\+w* \+w falsely|strong="G5574"\+w*, \+w for|strong="G1752"\+w* \+w my|strong="G3956"\+w* \+w sake|strong="G1752"\+w*. \wj* +\v 12 \wj \+w Rejoice|strong="G5463"\+w*, \+w and|strong="G2532"\+w* \+w be|strong="G2532"\+w* exceedingly \+w glad|strong="G5463"\+w*, \+w for|strong="G1063"\+w* \+w great|strong="G4183"\+w* \+w is|strong="G3588"\+w* \+w your|strong="G2532"\+w* \+w reward|strong="G3408"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*. \+w For|strong="G1063"\+w* \+w that|strong="G3754"\+w* \+w is|strong="G3588"\+w* \+w how|strong="G3754"\+w* \+w they|strong="G2532"\+w* \+w persecuted|strong="G1377"\+w* \+w the|strong="G1722"\+w* \+w prophets|strong="G4396"\+w* \+w who|strong="G3588"\+w* \+w were|strong="G3588"\+w* \+w before|strong="G4253"\+w* \+w you|strong="G5210"\+w*. \wj* +\p +\v 13 \wj “\+w You|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w the|strong="G1722"\+w* salt \+w of|strong="G5259"\+w* \+w the|strong="G1722"\+w* \+w earth|strong="G1093"\+w*, \+w but|strong="G1161"\+w* \+w if|strong="G1487"\+w* \+w the|strong="G1722"\+w* salt \+w has|strong="G5101"\+w* lost \+w its|strong="G5259"\+w* flavor, \+w with|strong="G1722"\+w* \+w what|strong="G5101"\+w* \+w will|strong="G5101"\+w* \+w it|strong="G1161"\+w* \+w be|strong="G1510"\+w* salted? \+w It|strong="G1161"\+w* \+w is|strong="G1510"\+w* \+w then|strong="G1161"\+w* \+w good|strong="G2480"\+w* \+w for|strong="G1519"\+w* \+w nothing|strong="G3762"\+w*, \+w but|strong="G1161"\+w* \+w to|strong="G1519"\+w* \+w be|strong="G1510"\+w* cast \+w out|strong="G1854"\+w* \+w and|strong="G1161"\+w* trodden \+w under|strong="G5259"\+w* \+w the|strong="G1722"\+w* feet \+w of|strong="G5259"\+w* \+w men|strong="G3588"\+w*. \wj* +\p +\v 14 \wj “\+w You|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w the|strong="G3588"\+w* \+w light|strong="G5457"\+w* \+w of|strong="G4172"\+w* \+w the|strong="G3588"\+w* \+w world|strong="G2889"\+w*. \+w A|strong="G1510"\+w* \+w city|strong="G4172"\+w* \+w located|strong="G2928"\+w* \+w on|strong="G1883"\+w* \+w a|strong="G1510"\+w* \+w hill|strong="G3735"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w be|strong="G1510"\+w* \+w hidden|strong="G2928"\+w*. \wj* +\v 15 \wj \+w Neither|strong="G3761"\+w* \+w do|strong="G2532"\+w* \+w you|strong="G1722"\+w* \+w light|strong="G3088"\+w* \+w a|strong="G2532"\+w* \+w lamp|strong="G3088"\+w* \+w and|strong="G2532"\+w* \+w put|strong="G5087"\+w* \+w it|strong="G2532"\+w* \+w under|strong="G5259"\+w* \+w a|strong="G2532"\+w* measuring \+w basket|strong="G3426"\+w*, \+w but|strong="G2532"\+w* \+w on|strong="G1909"\+w* \+w a|strong="G2532"\+w* stand; \+w and|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w shines|strong="G2989"\+w* \+w to|strong="G2532"\+w* \+w all|strong="G3956"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w house|strong="G3614"\+w*. \wj* +\v 16 \wj \+w Even|strong="G2532"\+w* \+w so|strong="G3779"\+w*, \+w let|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w light|strong="G5457"\+w* \+w shine|strong="G2989"\+w* \+w before|strong="G1715"\+w* \+w men|strong="G3588"\+w*, \+w that|strong="G3588"\+w* \+w they|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w see|strong="G3708"\+w* \+w your|strong="G2532"\+w* \+w good|strong="G2570"\+w* \+w works|strong="G2041"\+w* \+w and|strong="G2532"\+w* \+w glorify|strong="G1392"\+w* \+w your|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*.\wj* +\p +\v 17 \wj “Don’\+w t|strong="G3588"\+w* \+w think|strong="G3543"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G3754"\+w* \+w came|strong="G2064"\+w* \+w to|strong="G2064"\+w* \+w destroy|strong="G2647"\+w* \+w the|strong="G3588"\+w* \+w law|strong="G3551"\+w* \+w or|strong="G2228"\+w* \+w the|strong="G3588"\+w* \+w prophets|strong="G4396"\+w*. \+w I|strong="G3754"\+w* didn’\+w t|strong="G3588"\+w* \+w come|strong="G2064"\+w* \+w to|strong="G2064"\+w* \+w destroy|strong="G2647"\+w*, \+w but|strong="G3361"\+w* \+w to|strong="G2064"\+w* \+w fulfill|strong="G4137"\+w*. \wj* +\v 18 \wj \+w For|strong="G1063"\+w* most \+w certainly|strong="G1063"\+w*, \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w until|strong="G2193"\+w* \+w heaven|strong="G3772"\+w* \+w and|strong="G2532"\+w* \+w earth|strong="G1093"\+w* \+w pass|strong="G1096"\+w* \+w away|strong="G3928"\+w*, \+w not|strong="G3756"\+w* \+w even|strong="G2532"\+w* \+w one|strong="G1520"\+w* \+w smallest|strong="G1520"\+w* \+w letter|strong="G2762"\+w*\wj*\f + \fr 5:18 \ft literally, iota\f* \wj \+w or|strong="G2228"\+w* \+w one|strong="G1520"\+w* tiny pen \+w stroke|strong="G2762"\+w*\wj*\f + \fr 5:18 \ft or, serif\f* \wj \+w shall|strong="G2532"\+w* \+w in|strong="G2532"\+w* \+w any|strong="G3956"\+w* \+w way|strong="G3956"\+w* \+w pass|strong="G1096"\+w* \+w away|strong="G3928"\+w* \+w from|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w law|strong="G3551"\+w*, \+w until|strong="G2193"\+w* \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w are|strong="G3588"\+w* \+w accomplished|strong="G1096"\+w*. \wj* +\v 19 \wj \+w Therefore|strong="G3767"\+w*, \+w whoever|strong="G3739"\+w* \+w shall|strong="G2532"\+w* \+w break|strong="G3089"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G2532"\+w* \+w these|strong="G3778"\+w* \+w least|strong="G1646"\+w* \+w commandments|strong="G1785"\+w* \+w and|strong="G2532"\+w* \+w teach|strong="G1321"\+w* \+w others|strong="G3588"\+w* \+w to|strong="G2532"\+w* \+w do|strong="G4160"\+w* \+w so|strong="G3779"\+w*, \+w shall|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w called|strong="G2564"\+w* \+w least|strong="G1646"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* Kingdom \+w of|strong="G2532"\+w* \+w Heaven|strong="G3772"\+w*; \+w but|strong="G1161"\+w* \+w whoever|strong="G3739"\+w* \+w shall|strong="G2532"\+w* \+w do|strong="G4160"\+w* \+w and|strong="G2532"\+w* \+w teach|strong="G1321"\+w* \+w them|strong="G3588"\+w* \+w shall|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w called|strong="G2564"\+w* \+w great|strong="G3173"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* Kingdom \+w of|strong="G2532"\+w* \+w Heaven|strong="G3772"\+w*. \wj* +\v 20 \wj \+w For|strong="G1063"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w unless|strong="G1437"\+w* \+w your|strong="G1437"\+w* \+w righteousness|strong="G1343"\+w* exceeds \+w that|strong="G3754"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w scribes|strong="G1122"\+w* \+w and|strong="G2532"\+w* \+w Pharisees|strong="G5330"\+w*, \+w there|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w no|strong="G3756"\+w* way \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* Kingdom \+w of|strong="G2532"\+w* \+w Heaven|strong="G3772"\+w*.\wj* +\p +\v 21 \wj “\+w You|strong="G3739"\+w* \+w have|strong="G3748"\+w* heard \+w that|strong="G3754"\+w* \+w it|strong="G3754"\+w* \+w was|strong="G1510"\+w* \+w said|strong="G2046"\+w* \+w to|strong="G3756"\+w* \+w the|strong="G1161"\+w* ancient \+w ones|strong="G3748"\+w*, ‘\+w You|strong="G3739"\+w* \+w shall|strong="G3739"\+w* \+w not|strong="G3756"\+w* \+w murder|strong="G5407"\+w*;’\wj*\x + \xo 5:21 \xt Exodus 20:13\x* \wj \+w and|strong="G1161"\+w* ‘\+w Whoever|strong="G3739"\+w* \+w murders|strong="G5407"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w in|strong="G3756"\+w* danger \+w of|strong="G3588"\+w* \+w the|strong="G1161"\+w* \+w judgment|strong="G2920"\+w*.’ \wj* +\v 22 \wj \+w But|strong="G1161"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w everyone|strong="G3956"\+w* \+w who|strong="G3739"\+w* \+w is|strong="G1510"\+w* \+w angry|strong="G3710"\+w* \+w with|strong="G1519"\+w* \+w his|strong="G3956"\+w* brother \+w without|strong="G2920"\+w* \+w a|strong="G1519"\+w* \+w cause|strong="G3739"\+w* \wj*\f + \fr 5:22 \ft NU omits “without a cause”.\f* \wj \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w in|strong="G1519"\+w* danger \+w of|strong="G3956"\+w* \+w the|strong="G1519"\+w* \+w judgment|strong="G2920"\+w*. \+w Whoever|strong="G3739"\+w* \+w says|strong="G3004"\+w* \+w to|strong="G1519"\+w* \+w his|strong="G3956"\+w* brother, ‘\+w Raca|strong="G4469"\+w*!’ \wj*\f + \fr 5:22 \ft “Raca” is an Aramaic insult, related to the word for “empty” and conveying the idea of empty-headedness.\f* \wj \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w in|strong="G1519"\+w* danger \+w of|strong="G3956"\+w* \+w the|strong="G1519"\+w* \+w council|strong="G4892"\+w*. \+w Whoever|strong="G3739"\+w* \+w says|strong="G3004"\+w*, ‘\+w You|strong="G5210"\+w* \+w fool|strong="G3474"\+w*!’ \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w in|strong="G1519"\+w* danger \+w of|strong="G3956"\+w* \+w the|strong="G1519"\+w* \+w fire|strong="G4442"\+w* \+w of|strong="G3956"\+w* Gehenna.\wj*\f + \fr 5:22 \ft or, Hell\f* +\p +\v 23 \wj “\+w If|strong="G1437"\+w* \+w therefore|strong="G3767"\+w* \+w you|strong="G4771"\+w* \+w are|strong="G3588"\+w* \+w offering|strong="G1435"\+w* \+w your|strong="G2192"\+w* \+w gift|strong="G1435"\+w* \+w at|strong="G1909"\+w* \+w the|strong="G1909"\+w* \+w altar|strong="G2379"\+w*, \+w and|strong="G3767"\+w* \+w there|strong="G2546"\+w* \+w remember|strong="G3403"\+w* \+w that|strong="G3754"\+w* \+w your|strong="G2192"\+w* brother \+w has|strong="G2192"\+w* \+w anything|strong="G5100"\+w* \+w against|strong="G2596"\+w* \+w you|strong="G4771"\+w*, \wj* +\v 24 \wj leave \+w your|strong="G2532"\+w* \+w gift|strong="G1435"\+w* \+w there|strong="G1563"\+w* \+w before|strong="G1715"\+w* \+w the|strong="G2532"\+w* \+w altar|strong="G2379"\+w*, \+w and|strong="G2532"\+w* \+w go|strong="G5217"\+w* \+w your|strong="G2532"\+w* \+w way|strong="G5217"\+w*. \+w First|strong="G4413"\+w* \+w be|strong="G2532"\+w* \+w reconciled|strong="G1259"\+w* \+w to|strong="G2532"\+w* \+w your|strong="G2532"\+w* brother, \+w and|strong="G2532"\+w* \+w then|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w and|strong="G2532"\+w* \+w offer|strong="G4374"\+w* \+w your|strong="G2532"\+w* \+w gift|strong="G1435"\+w*. \wj* +\v 25 \wj \+w Agree|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w your|strong="G2532"\+w* adversary \+w quickly|strong="G5035"\+w* \+w while|strong="G1722"\+w* \+w you|strong="G4771"\+w* \+w are|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w him|strong="G3588"\+w* \+w on|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w way|strong="G3598"\+w*; \+w lest|strong="G3379"\+w* \+w perhaps|strong="G3379"\+w* \+w the|strong="G1722"\+w* prosecutor \+w deliver|strong="G3860"\+w* \+w you|strong="G4771"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G1722"\+w* \+w judge|strong="G2923"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w judge|strong="G2923"\+w* \+w deliver|strong="G3860"\+w* \+w you|strong="G4771"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G1722"\+w* \+w officer|strong="G5257"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w be|strong="G1510"\+w* \+w cast|strong="G2532"\+w* \+w into|strong="G1519"\+w* \+w prison|strong="G5438"\+w*. \wj* +\v 26 \wj Most \+w certainly|strong="G3756"\+w* \+w I|strong="G2193"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w*, \+w you|strong="G4771"\+w* \+w shall|strong="G3361"\+w* \+w by|strong="G3004"\+w* \+w no|strong="G3756"\+w* \+w means|strong="G3004"\+w* \+w get|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w of|strong="G3588"\+w* \+w there|strong="G1564"\+w* \+w until|strong="G2193"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G3588"\+w* paid \+w the|strong="G3588"\+w* \+w last|strong="G2078"\+w* \+w penny|strong="G2835"\+w*.\wj*\f + \fr 5:26 \ft literally, kodrantes. A kodrantes was a small copper coin worth about 2 lepta (widow’s mites)—not enough to buy very much of anything.\f* +\p +\v 27 \wj “\+w You|strong="G3754"\+w* \+w have|strong="G3748"\+w* heard \+w that|strong="G3754"\+w* \+w it|strong="G3754"\+w* \+w was|strong="G3748"\+w* \+w said|strong="G2046"\+w*, \wj*\f + \fr 5:27 \ft TR adds “to the ancients”.\f* \wj ‘\+w You|strong="G3754"\+w* \+w shall|strong="G3748"\+w* \+w not|strong="G3756"\+w* \+w commit|strong="G3431"\+w* \+w adultery|strong="G3431"\+w*;’\wj*\x + \xo 5:27 \xt Exodus 20:14\x* +\v 28 \wj \+w but|strong="G1161"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w everyone|strong="G3956"\+w* \+w who|strong="G3588"\+w* gazes \+w at|strong="G1722"\+w* \+w a|strong="G1722"\+w* \+w woman|strong="G1135"\+w* \+w to|strong="G4314"\+w* \+w lust|strong="G1937"\+w* \+w after|strong="G1161"\+w* \+w her|strong="G1438"\+w* \+w has|strong="G3748"\+w* \+w committed|strong="G3431"\+w* \+w adultery|strong="G3431"\+w* \+w with|strong="G1722"\+w* \+w her|strong="G1438"\+w* \+w already|strong="G2235"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G1438"\+w* \+w heart|strong="G2588"\+w*. \wj* +\v 29 \wj \+w If|strong="G1487"\+w* \+w your|strong="G3650"\+w* \+w right|strong="G1188"\+w* \+w eye|strong="G3788"\+w* \+w causes|strong="G4624"\+w* \+w you|strong="G4771"\+w* \+w to|strong="G1519"\+w* \+w stumble|strong="G4624"\+w*, \+w pluck|strong="G1807"\+w* \+w it|strong="G2532"\+w* \+w out|strong="G2532"\+w* \+w and|strong="G2532"\+w* throw \+w it|strong="G2532"\+w* \+w away|strong="G4624"\+w* \+w from|strong="G2532"\+w* \+w you|strong="G4771"\+w*. \+w For|strong="G1063"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w more|strong="G2532"\+w* \+w profitable|strong="G4851"\+w* \+w for|strong="G1063"\+w* \+w you|strong="G4771"\+w* \+w that|strong="G2443"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G2532"\+w* \+w your|strong="G3650"\+w* \+w members|strong="G3196"\+w* \+w should|strong="G3588"\+w* perish \+w than|strong="G2532"\+w* \+w for|strong="G1063"\+w* \+w your|strong="G3650"\+w* \+w whole|strong="G3650"\+w* \+w body|strong="G4983"\+w* \+w to|strong="G1519"\+w* \+w be|strong="G2532"\+w* \+w cast|strong="G2532"\+w* \+w into|strong="G1519"\+w* Gehenna.\wj*\f + \fr 5:29 \ft or, Hell\f* +\v 30 \wj \+w If|strong="G1487"\+w* \+w your|strong="G3650"\+w* \+w right|strong="G1188"\+w* \+w hand|strong="G5495"\+w* \+w causes|strong="G4624"\+w* \+w you|strong="G4771"\+w* \+w to|strong="G1519"\+w* \+w stumble|strong="G4624"\+w*, \+w cut|strong="G1581"\+w* \+w it|strong="G2532"\+w* \+w off|strong="G1581"\+w*, \+w and|strong="G2532"\+w* throw \+w it|strong="G2532"\+w* \+w away|strong="G4624"\+w* \+w from|strong="G2532"\+w* \+w you|strong="G4771"\+w*. \+w For|strong="G1063"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w more|strong="G2532"\+w* \+w profitable|strong="G4851"\+w* \+w for|strong="G1063"\+w* \+w you|strong="G4771"\+w* \+w that|strong="G2443"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G2532"\+w* \+w your|strong="G3650"\+w* \+w members|strong="G3196"\+w* \+w should|strong="G3588"\+w* perish, \+w than|strong="G2532"\+w* \+w for|strong="G1063"\+w* \+w your|strong="G3650"\+w* \+w whole|strong="G3650"\+w* \+w body|strong="G4983"\+w* \+w to|strong="G1519"\+w* \+w be|strong="G2532"\+w* \+w cast|strong="G2532"\+w* \+w into|strong="G1519"\+w* Gehenna.\wj*\f + \fr 5:30 \ft or, Hell\f* +\p +\v 31 \wj “\+w It|strong="G1161"\+w* \+w was|strong="G3588"\+w* \+w also|strong="G1161"\+w* \+w said|strong="G2046"\+w*, ‘\+w Whoever|strong="G3739"\+w* \+w shall|strong="G3739"\+w* \+w put|strong="G1325"\+w* away \+w his|strong="G1325"\+w* \+w wife|strong="G1135"\+w*, \+w let|strong="G1161"\+w* \+w him|strong="G3588"\+w* \+w give|strong="G1325"\+w* \+w her|strong="G1325"\+w* \+w a|strong="G1325"\+w* writing \+w of|strong="G3588"\+w* divorce,’\wj*\x + \xo 5:31 \xt Deuteronomy 24:1\x* +\v 32 \wj \+w but|strong="G1161"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w whoever|strong="G3739"\+w* \+w puts|strong="G4160"\+w* away \+w his|strong="G1438"\+w* \+w wife|strong="G1135"\+w*, \+w except|strong="G1437"\+w* \+w for|strong="G3754"\+w* \+w the|strong="G2532"\+w* \+w cause|strong="G4160"\+w* \+w of|strong="G3056"\+w* \+w sexual|strong="G4202"\+w* \+w immorality|strong="G4202"\+w*, \+w makes|strong="G4160"\+w* \+w her|strong="G1437"\+w* \+w an|strong="G2532"\+w* adulteress; \+w and|strong="G2532"\+w* \+w whoever|strong="G3739"\+w* \+w marries|strong="G1060"\+w* \+w her|strong="G1437"\+w* \+w when|strong="G1161"\+w* \+w she|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w put|strong="G4160"\+w* away \+w commits|strong="G4160"\+w* \+w adultery|strong="G3431"\+w*.\wj* +\p +\v 33 \wj “\+w Again|strong="G3825"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G3748"\+w* heard \+w that|strong="G3754"\+w* \+w it|strong="G3754"\+w* \+w was|strong="G3588"\+w* \+w said|strong="G2046"\+w* \+w to|strong="G3756"\+w* \+w the|strong="G1161"\+w* ancient \+w ones|strong="G3748"\+w*, ‘\+w You|strong="G4771"\+w* \+w shall|strong="G2962"\+w* \+w not|strong="G3756"\+w* \+w make|strong="G3756"\+w* \+w false|strong="G1964"\+w* \+w vows|strong="G1964"\+w*, \+w but|strong="G1161"\+w* \+w shall|strong="G2962"\+w* perform \+w to|strong="G3756"\+w* \+w the|strong="G1161"\+w* \+w Lord|strong="G2962"\+w* \+w your|strong="G2962"\+w* \+w vows|strong="G1964"\+w*,’\wj*\x + \xo 5:33 \xt Numbers 30:2; Deuteronomy 23:21; Ecclesiastes 5:4\x* +\v 34 \wj \+w but|strong="G1161"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, don’\+w t|strong="G3588"\+w* \+w swear|strong="G3660"\+w* \+w at|strong="G1722"\+w* \+w all|strong="G1722"\+w*: \+w neither|strong="G3383"\+w* \+w by|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*, \+w for|strong="G3754"\+w* \+w it|strong="G3754"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G1722"\+w* \+w throne|strong="G2362"\+w* \+w of|strong="G2316"\+w* \+w God|strong="G2316"\+w*; \wj* +\v 35 \wj \+w nor|strong="G3383"\+w* \+w by|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w earth|strong="G1093"\+w*, \+w for|strong="G3754"\+w* \+w it|strong="G3754"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G1722"\+w* \+w footstool|strong="G5286"\+w* \+w of|strong="G1093"\+w* \+w his|strong="G1519"\+w* \+w feet|strong="G4228"\+w*; \+w nor|strong="G3383"\+w* \+w by|strong="G1722"\+w* \+w Jerusalem|strong="G2414"\+w*, \+w for|strong="G3754"\+w* \+w it|strong="G3754"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G1722"\+w* \+w city|strong="G4172"\+w* \+w of|strong="G1093"\+w* \+w the|strong="G1722"\+w* \+w great|strong="G3173"\+w* \+w King|strong="G3588"\+w*. \wj* +\v 36 \wj \+w Neither|strong="G3756"\+w* \+w shall|strong="G3748"\+w* \+w you|strong="G4771"\+w* \+w swear|strong="G3660"\+w* \+w by|strong="G1722"\+w* \+w your|strong="G4160"\+w* \+w head|strong="G2776"\+w*, \+w for|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w make|strong="G4160"\+w* \+w one|strong="G1520"\+w* \+w hair|strong="G2359"\+w* \+w white|strong="G3022"\+w* \+w or|strong="G2228"\+w* \+w black|strong="G3189"\+w*. \wj* +\v 37 \wj \+w But|strong="G1161"\+w* \+w let|strong="G1161"\+w* \+w your|strong="G3588"\+w* ‘\+w Yes|strong="G3483"\+w*’ \+w be|strong="G1510"\+w* ‘\+w Yes|strong="G3483"\+w*’ \+w and|strong="G1161"\+w* \+w your|strong="G3588"\+w* ‘\+w No|strong="G3756"\+w*’ \+w be|strong="G1510"\+w* ‘\+w No|strong="G3756"\+w*.’ Whatever \+w is|strong="G1510"\+w* \+w more|strong="G4053"\+w* \+w than|strong="G4053"\+w* \+w these|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w evil|strong="G4190"\+w* \+w one|strong="G3588"\+w*.\wj* +\p +\v 38 \wj “\+w You|strong="G3754"\+w* \+w have|strong="G2532"\+w* heard \+w that|strong="G3754"\+w* \+w it|strong="G2532"\+w* \+w was|strong="G2532"\+w* \+w said|strong="G2046"\+w*, ‘\+w An|strong="G2532"\+w* \+w eye|strong="G3788"\+w* \+w for|strong="G3754"\+w* \+w an|strong="G2532"\+w* \+w eye|strong="G3788"\+w*, \+w and|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w tooth|strong="G3599"\+w* \+w for|strong="G3754"\+w* \+w a|strong="G2532"\+w* \+w tooth|strong="G3599"\+w*.’\wj*\x + \xo 5:38 \xt Exodus 21:24; Leviticus 24:20; Deuteronomy 19:21\x* +\v 39 \wj \+w But|strong="G1161"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, don’\+w t|strong="G3588"\+w* resist \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w evil|strong="G4190"\+w*; \+w but|strong="G1161"\+w* \+w whoever|strong="G3748"\+w* \+w strikes|strong="G4474"\+w* \+w you|strong="G5210"\+w* \+w on|strong="G1519"\+w* \+w your|strong="G2532"\+w* \+w right|strong="G1188"\+w* \+w cheek|strong="G4600"\+w*, \+w turn|strong="G4762"\+w* \+w to|strong="G1519"\+w* \+w him|strong="G3588"\+w* \+w the|strong="G2532"\+w* \+w other|strong="G1161"\+w* \+w also|strong="G2532"\+w*. \wj* +\v 40 \wj \+w If|strong="G2532"\+w* anyone sues \+w you|strong="G4771"\+w* \+w to|strong="G2532"\+w* \+w take|strong="G2983"\+w* away \+w your|strong="G2532"\+w* \+w coat|strong="G2440"\+w*, \+w let|strong="G2919"\+w* \+w him|strong="G3588"\+w* \+w have|strong="G2309"\+w* \+w your|strong="G2532"\+w* \+w cloak|strong="G2440"\+w* \+w also|strong="G2532"\+w*. \wj* +\v 41 \wj \+w Whoever|strong="G3748"\+w* compels \+w you|strong="G4771"\+w* \+w to|strong="G2532"\+w* \+w go|strong="G5217"\+w* \+w one|strong="G1520"\+w* \+w mile|strong="G3400"\+w*, \+w go|strong="G5217"\+w* \+w with|strong="G3326"\+w* \+w him|strong="G2532"\+w* \+w two|strong="G1417"\+w*. \wj* +\v 42 \wj \+w Give|strong="G1325"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* asks \+w you|strong="G4771"\+w*, \+w and|strong="G2532"\+w* don’\+w t|strong="G3588"\+w* turn away \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w desires|strong="G2309"\+w* \+w to|strong="G2532"\+w* \+w borrow|strong="G1155"\+w* \+w from|strong="G2532"\+w* \+w you|strong="G4771"\+w*.\wj* +\p +\v 43 \wj “\+w You|strong="G4771"\+w* \+w have|strong="G2532"\+w* heard \+w that|strong="G3754"\+w* \+w it|strong="G2532"\+w* \+w was|strong="G3588"\+w* \+w said|strong="G2046"\+w*, ‘\+w You|strong="G4771"\+w* \+w shall|strong="G2532"\+w* love \+w your|strong="G2532"\+w* \+w neighbor|strong="G4139"\+w* \wj*\x + \xo 5:43 \xt Leviticus 19:18\x* \wj \+w and|strong="G2532"\+w* \+w hate|strong="G3404"\+w* \+w your|strong="G2532"\+w* \+w enemy|strong="G2190"\+w*.’\wj*\f + \fr 5:43 \ft not in the Bible, but see Qumran Manual of Discipline Ix, 21-26\f* +\v 44 \wj \+w But|strong="G1161"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, love \+w your|strong="G2532"\+w* \+w enemies|strong="G2190"\+w*, bless \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* curse \+w you|strong="G5210"\+w*, \+w do|strong="G2532"\+w* \+w good|strong="G3588"\+w* \+w to|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* hate \+w you|strong="G5210"\+w*, \+w and|strong="G2532"\+w* \+w pray|strong="G4336"\+w* \+w for|strong="G5228"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* mistreat \+w you|strong="G5210"\+w* \+w and|strong="G2532"\+w* \+w persecute|strong="G1377"\+w* \+w you|strong="G5210"\+w*, \wj* +\v 45 \wj \+w that|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w may|strong="G2532"\+w* \+w be|strong="G1096"\+w* \+w children|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w your|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*. \+w For|strong="G3754"\+w* \+w he|strong="G2532"\+w* makes \+w his|strong="G1909"\+w* \+w sun|strong="G2246"\+w* \+w to|strong="G2532"\+w* rise \+w on|strong="G1909"\+w* \+w the|strong="G1722"\+w* \+w evil|strong="G4190"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w good|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w sends|strong="G1026"\+w* \+w rain|strong="G1026"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G1722"\+w* \+w just|strong="G1342"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* unjust. \wj* +\v 46 \wj \+w For|strong="G1063"\+w* \+w if|strong="G1437"\+w* \+w you|strong="G5210"\+w* love \+w those|strong="G3588"\+w* \+w who|strong="G5101"\+w* love \+w you|strong="G5210"\+w*, \+w what|strong="G5101"\+w* \+w reward|strong="G3408"\+w* \+w do|strong="G4160"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2192"\+w*? Don’\+w t|strong="G3588"\+w* \+w even|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w tax|strong="G5057"\+w* \+w collectors|strong="G5057"\+w* \+w do|strong="G4160"\+w* \+w the|strong="G2532"\+w* \+w same|strong="G2532"\+w*? \wj* +\v 47 \wj \+w If|strong="G1437"\+w* \+w you|strong="G5210"\+w* \+w only|strong="G3440"\+w* greet \+w your|strong="G1437"\+w* friends, \+w what|strong="G5101"\+w* \+w more|strong="G4053"\+w* \+w do|strong="G4160"\+w* \+w you|strong="G5210"\+w* \+w do|strong="G4160"\+w* \+w than|strong="G4053"\+w* \+w others|strong="G3588"\+w*? Don’\+w t|strong="G3588"\+w* \+w even|strong="G2532"\+w* \+w the|strong="G2532"\+w* tax collectors\wj*\f + \fr 5:47 \ft NU reads “Gentiles” instead of “tax collectors”.\f* \wj \+w do|strong="G4160"\+w* \+w the|strong="G2532"\+w* \+w same|strong="G2532"\+w*? \wj* +\v 48 \wj \+w Therefore|strong="G3767"\+w* \+w you|strong="G5210"\+w* \+w shall|strong="G3588"\+w* \+w be|strong="G1510"\+w* \+w perfect|strong="G5046"\+w*, \+w just|strong="G5613"\+w* \+w as|strong="G5613"\+w* \+w your|strong="G3588"\+w* \+w Father|strong="G3962"\+w* \+w in|strong="G3588"\+w* \+w heaven|strong="G3770"\+w* \+w is|strong="G1510"\+w* \+w perfect|strong="G5046"\+w*.\wj* +\c 6 +\p +\v 1 \wj “\+w Be|strong="G3756"\+w* \+w careful|strong="G4337"\+w* \+w that|strong="G3588"\+w* \+w you|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* \+w do|strong="G4160"\+w* \+w your|strong="G2192"\+w* charitable \+w giving|strong="G4337"\+w*\wj*\f + \fr 6:1 \ft NU reads “acts of righteousness” instead of “charitable giving”\f* \wj \+w before|strong="G1715"\+w* \+w men|strong="G3588"\+w*, \+w to|strong="G4314"\+w* \+w be|strong="G3756"\+w* \+w seen|strong="G2300"\+w* \+w by|strong="G1722"\+w* \+w them|strong="G3588"\+w*, \+w or|strong="G1161"\+w* \+w else|strong="G3361"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2192"\+w* \+w no|strong="G3756"\+w* \+w reward|strong="G3408"\+w* \+w from|strong="G3844"\+w* \+w your|strong="G2192"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*. \wj* +\v 2 \wj \+w Therefore|strong="G3767"\+w*, \+w when|strong="G3752"\+w* \+w you|strong="G5210"\+w* \+w do|strong="G4160"\+w* merciful \+w deeds|strong="G4160"\+w*, don’\+w t|strong="G3588"\+w* \+w sound|strong="G4537"\+w* \+w a|strong="G2532"\+w* \+w trumpet|strong="G4537"\+w* \+w before|strong="G1715"\+w* \+w yourself|strong="G4771"\+w*, \+w as|strong="G5618"\+w* \+w the|strong="G1722"\+w* \+w hypocrites|strong="G5273"\+w* \+w do|strong="G4160"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w synagogues|strong="G4864"\+w* \+w and|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w streets|strong="G4505"\+w*, \+w that|strong="G3588"\+w* \+w they|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w get|strong="G2532"\+w* \+w glory|strong="G1392"\+w* \+w from|strong="G2532"\+w* \+w men|strong="G3588"\+w*. Most \+w certainly|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w they|strong="G2532"\+w* \+w have|strong="G2532"\+w* received \+w their|strong="G2532"\+w* \+w reward|strong="G3408"\+w*. \wj* +\v 3 \wj \+w But|strong="G1161"\+w* \+w when|strong="G1161"\+w* \+w you|strong="G4771"\+w* \+w do|strong="G4160"\+w* merciful \+w deeds|strong="G4160"\+w*, don’\+w t|strong="G3588"\+w* \+w let|strong="G1161"\+w* \+w your|strong="G4160"\+w* left \+w hand|strong="G1188"\+w* \+w know|strong="G1097"\+w* \+w what|strong="G5101"\+w* \+w your|strong="G4160"\+w* \+w right|strong="G1188"\+w* \+w hand|strong="G1188"\+w* \+w does|strong="G4160"\+w*, \wj* +\v 4 \wj \+w so|strong="G2532"\+w* \+w that|strong="G3588"\+w* \+w your|strong="G2532"\+w* merciful deeds \+w may|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w secret|strong="G2927"\+w*, \+w then|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3588"\+w* sees \+w in|strong="G1722"\+w* \+w secret|strong="G2927"\+w* \+w will|strong="G1510"\+w* reward \+w you|strong="G4771"\+w* openly.\wj* +\p +\v 5 \wj “\+w When|strong="G3752"\+w* \+w you|strong="G5210"\+w* \+w pray|strong="G4336"\+w*, \+w you|strong="G5210"\+w* \+w shall|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G1510"\+w* \+w as|strong="G5613"\+w* \+w the|strong="G1722"\+w* \+w hypocrites|strong="G5273"\+w*, \+w for|strong="G3754"\+w* \+w they|strong="G2532"\+w* \+w love|strong="G5368"\+w* \+w to|strong="G2532"\+w* \+w stand|strong="G2476"\+w* \+w and|strong="G2532"\+w* \+w pray|strong="G4336"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w synagogues|strong="G4864"\+w* \+w and|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w corners|strong="G1137"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w streets|strong="G4116"\+w*, \+w that|strong="G3754"\+w* \+w they|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w seen|strong="G5316"\+w* \+w by|strong="G1722"\+w* \+w men|strong="G3588"\+w*. Most \+w certainly|strong="G2532"\+w*, \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w they|strong="G2532"\+w* \+w have|strong="G2532"\+w* received \+w their|strong="G2532"\+w* \+w reward|strong="G3408"\+w*. \wj* +\v 6 \wj \+w But|strong="G1161"\+w* \+w you|strong="G4771"\+w*, \+w when|strong="G3752"\+w* \+w you|strong="G4771"\+w* \+w pray|strong="G4336"\+w*, \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w your|strong="G2532"\+w* \+w inner|strong="G5009"\+w* \+w room|strong="G5009"\+w*, \+w and|strong="G2532"\+w* \+w having|strong="G2532"\+w* \+w shut|strong="G2808"\+w* \+w your|strong="G2532"\+w* \+w door|strong="G2374"\+w*, \+w pray|strong="G4336"\+w* \+w to|strong="G1519"\+w* \+w your|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w secret|strong="G2927"\+w*; \+w and|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3588"\+w* sees \+w in|strong="G1722"\+w* \+w secret|strong="G2927"\+w* \+w will|strong="G2532"\+w* reward \+w you|strong="G4771"\+w* openly. \wj* +\v 7 \wj \+w In|strong="G1722"\+w* \+w praying|strong="G4336"\+w*, don’\+w t|strong="G3588"\+w* \+w use|strong="G3588"\+w* vain repetitions \+w as|strong="G5618"\+w* \+w the|strong="G1722"\+w* \+w Gentiles|strong="G1482"\+w* \+w do|strong="G1380"\+w*; \+w for|strong="G1063"\+w* \+w they|strong="G1161"\+w* \+w think|strong="G1380"\+w* \+w that|strong="G3754"\+w* \+w they|strong="G1161"\+w* \+w will|strong="G3748"\+w* \+w be|strong="G3361"\+w* \+w heard|strong="G1522"\+w* \+w for|strong="G1063"\+w* \+w their|strong="G1722"\+w* much speaking. \wj* +\v 8 \wj \+w Therefore|strong="G3767"\+w* don’\+w t|strong="G3588"\+w* \+w be|strong="G3361"\+w* \+w like|strong="G3666"\+w* \+w them|strong="G3588"\+w*, \+w for|strong="G1063"\+w* \+w your|strong="G2192"\+w* \+w Father|strong="G3962"\+w* \+w knows|strong="G1492"\+w* \+w what|strong="G3739"\+w* \+w things|strong="G3588"\+w* \+w you|strong="G5210"\+w* \+w need|strong="G5532"\+w* \+w before|strong="G4253"\+w* \+w you|strong="G5210"\+w* ask \+w him|strong="G3588"\+w*. \wj* +\v 9 \wj \+w Pray|strong="G4336"\+w* \+w like|strong="G3779"\+w* \+w this|strong="G3588"\+w*: \wj* +\q1 \wj “‘\+w Our|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*, \+w may|strong="G5210"\+w* \+w your|strong="G1722"\+w* \+w name|strong="G3686"\+w* \+w be|strong="G3588"\+w* kept holy. \wj* +\q1 +\v 10 \wj \+w Let|strong="G1096"\+w* \+w your|strong="G2532"\+w* Kingdom \+w come|strong="G2064"\+w*. \wj* +\q2 \wj \+w Let|strong="G1096"\+w* \+w your|strong="G2532"\+w* \+w will|strong="G2307"\+w* \+w be|strong="G1096"\+w* \+w done|strong="G1096"\+w* \+w on|strong="G1909"\+w* \+w earth|strong="G1093"\+w* \+w as|strong="G5613"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*. \wj* +\q1 +\v 11 \wj \+w Give|strong="G1325"\+w* \+w us|strong="G1325"\+w* \+w today|strong="G4594"\+w* our \+w daily|strong="G1967"\+w* bread. \wj* +\q1 +\v 12 \wj Forgive \+w us|strong="G2249"\+w* \+w our|strong="G2532"\+w* \+w debts|strong="G3783"\+w*,\wj* +\q2 \wj \+w as|strong="G5613"\+w* \+w we|strong="G2249"\+w* \+w also|strong="G2532"\+w* forgive \+w our|strong="G2532"\+w* \+w debtors|strong="G3781"\+w*. \wj* +\q1 +\v 13 \wj \+w Bring|strong="G1533"\+w* \+w us|strong="G1519"\+w* \+w not|strong="G3361"\+w* \+w into|strong="G1519"\+w* \+w temptation|strong="G3986"\+w*,\wj* +\q2 \wj \+w but|strong="G2532"\+w* \+w deliver|strong="G4506"\+w* \+w us|strong="G1519"\+w* \+w from|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w evil|strong="G4190"\+w* \+w one|strong="G3588"\+w*.\wj* +\q1 \wj \+w For|strong="G1519"\+w* yours \+w is|strong="G3588"\+w* \+w the|strong="G2532"\+w* Kingdom, \+w the|strong="G2532"\+w* power, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* glory \+w forever|strong="G1519"\+w*. Amen.’\wj*\f + \fr 6:13 \ft NU omits “For yours is the Kingdom, the power, and the glory forever. Amen.”\f* +\p +\v 14 \wj “\+w For|strong="G1063"\+w* \+w if|strong="G1437"\+w* \+w you|strong="G5210"\+w* forgive \+w men|strong="G3588"\+w* \+w their|strong="G2532"\+w* \+w trespasses|strong="G3900"\+w*, \+w your|strong="G1437"\+w* \+w heavenly|strong="G3770"\+w* \+w Father|strong="G3962"\+w* \+w will|strong="G2532"\+w* \+w also|strong="G2532"\+w* forgive \+w you|strong="G5210"\+w*. \wj* +\v 15 \wj \+w But|strong="G1161"\+w* \+w if|strong="G1437"\+w* \+w you|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* forgive \+w men|strong="G3588"\+w* \+w their|strong="G3588"\+w* \+w trespasses|strong="G3900"\+w*, \+w neither|strong="G3761"\+w* \+w will|strong="G3962"\+w* \+w your|strong="G1437"\+w* \+w Father|strong="G3962"\+w* forgive \+w your|strong="G1437"\+w* \+w trespasses|strong="G3900"\+w*.\wj* +\p +\v 16 \wj “\+w Moreover|strong="G1161"\+w* \+w when|strong="G3752"\+w* \+w you|strong="G5210"\+w* \+w fast|strong="G3522"\+w*, don’\+w t|strong="G3588"\+w* \+w be|strong="G1096"\+w* \+w like|strong="G5613"\+w* \+w the|strong="G1161"\+w* \+w hypocrites|strong="G5273"\+w*, \+w with|strong="G3588"\+w* \+w sad|strong="G4659"\+w* \+w faces|strong="G4383"\+w*. \+w For|strong="G1063"\+w* \+w they|strong="G1161"\+w* disfigure \+w their|strong="G3588"\+w* \+w faces|strong="G4383"\+w* \+w that|strong="G3588"\+w* \+w they|strong="G1161"\+w* \+w may|strong="G3004"\+w* \+w be|strong="G1096"\+w* \+w seen|strong="G5316"\+w* \+w by|strong="G3004"\+w* \+w men|strong="G3588"\+w* \+w to|strong="G3004"\+w* \+w be|strong="G1096"\+w* \+w fasting|strong="G3522"\+w*. Most \+w certainly|strong="G1063"\+w* \+w I|strong="G1161"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w they|strong="G1161"\+w* \+w have|strong="G5210"\+w* received \+w their|strong="G3588"\+w* \+w reward|strong="G3408"\+w*. \wj* +\v 17 \wj \+w But|strong="G1161"\+w* \+w you|strong="G4771"\+w*, \+w when|strong="G1161"\+w* \+w you|strong="G4771"\+w* \+w fast|strong="G3522"\+w*, anoint \+w your|strong="G2532"\+w* \+w head|strong="G2776"\+w* \+w and|strong="G2532"\+w* \+w wash|strong="G3538"\+w* \+w your|strong="G2532"\+w* \+w face|strong="G4383"\+w*, \wj* +\v 18 \wj \+w so|strong="G2532"\+w* \+w that|strong="G3588"\+w* \+w you|strong="G4771"\+w* \+w are|strong="G3588"\+w* \+w not|strong="G3361"\+w* \+w seen|strong="G5316"\+w* \+w by|strong="G1722"\+w* \+w men|strong="G3588"\+w* \+w to|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w fasting|strong="G3522"\+w*, \+w but|strong="G2532"\+w* \+w by|strong="G1722"\+w* \+w your|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w secret|strong="G2927"\+w*; \+w and|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w Father|strong="G3962"\+w*, \+w who|strong="G3588"\+w* sees \+w in|strong="G1722"\+w* \+w secret|strong="G2927"\+w*, \+w will|strong="G2532"\+w* reward \+w you|strong="G4771"\+w*. \wj* +\p +\v 19 \wj “Don’\+w t|strong="G3588"\+w* \+w lay|strong="G2343"\+w* \+w up|strong="G2343"\+w* \+w treasures|strong="G2344"\+w* \+w for|strong="G1909"\+w* \+w yourselves|strong="G4771"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w earth|strong="G1093"\+w*, \+w where|strong="G3699"\+w* \+w moth|strong="G4597"\+w* \+w and|strong="G2532"\+w* \+w rust|strong="G1035"\+w* consume, \+w and|strong="G2532"\+w* \+w where|strong="G3699"\+w* \+w thieves|strong="G2812"\+w* \+w break|strong="G1358"\+w* \+w through|strong="G1909"\+w* \+w and|strong="G2532"\+w* \+w steal|strong="G2813"\+w*; \wj* +\v 20 \wj \+w but|strong="G1161"\+w* \+w lay|strong="G2343"\+w* \+w up|strong="G2343"\+w* \+w for|strong="G1161"\+w* \+w yourselves|strong="G4771"\+w* \+w treasures|strong="G2344"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*, \+w where|strong="G3699"\+w* \+w neither|strong="G3777"\+w* \+w moth|strong="G4597"\+w* \+w nor|strong="G3761"\+w* \+w rust|strong="G1035"\+w* consume, \+w and|strong="G2532"\+w* \+w where|strong="G3699"\+w* \+w thieves|strong="G2812"\+w* don’t \+w break|strong="G1358"\+w* \+w through|strong="G1722"\+w* \+w and|strong="G2532"\+w* \+w steal|strong="G2813"\+w*; \wj* +\v 21 \wj \+w for|strong="G1063"\+w* \+w where|strong="G3699"\+w* \+w your|strong="G2532"\+w* \+w treasure|strong="G2344"\+w* \+w is|strong="G1510"\+w*, \+w there|strong="G1563"\+w* \+w your|strong="G2532"\+w* \+w heart|strong="G2588"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w also|strong="G2532"\+w*. \wj* +\p +\v 22 \wj “\+w The|strong="G3588"\+w* \+w lamp|strong="G3088"\+w* \+w of|strong="G4983"\+w* \+w the|strong="G3588"\+w* \+w body|strong="G4983"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G3588"\+w* \+w eye|strong="G3788"\+w*. \+w If|strong="G1437"\+w* \+w therefore|strong="G3767"\+w* \+w your|strong="G3650"\+w* \+w eye|strong="G3788"\+w* \+w is|strong="G1510"\+w* sound, \+w your|strong="G3650"\+w* \+w whole|strong="G3650"\+w* \+w body|strong="G4983"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w full|strong="G5460"\+w* \+w of|strong="G4983"\+w* \+w light|strong="G3088"\+w*. \wj* +\v 23 \wj \+w But|strong="G1161"\+w* \+w if|strong="G1487"\+w* \+w your|strong="G3650"\+w* \+w eye|strong="G3788"\+w* \+w is|strong="G1510"\+w* \+w evil|strong="G4190"\+w*, \+w your|strong="G3650"\+w* \+w whole|strong="G3650"\+w* \+w body|strong="G4983"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w full|strong="G4652"\+w* \+w of|strong="G4983"\+w* \+w darkness|strong="G4655"\+w*. \+w If|strong="G1487"\+w* \+w therefore|strong="G3767"\+w* \+w the|strong="G1722"\+w* \+w light|strong="G5457"\+w* \+w that|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w you|strong="G4771"\+w* \+w is|strong="G1510"\+w* \+w darkness|strong="G4655"\+w*, \+w how|strong="G4214"\+w* \+w great|strong="G4214"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G1722"\+w* \+w darkness|strong="G4655"\+w*! \wj* +\p +\v 24 \wj “\+w No|strong="G3756"\+w* \+w one|strong="G1520"\+w* \+w can|strong="G1410"\+w* \+w serve|strong="G1398"\+w* \+w two|strong="G1417"\+w* \+w masters|strong="G2962"\+w*, \+w for|strong="G1063"\+w* \+w either|strong="G2228"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2316"\+w* \+w hate|strong="G3404"\+w* \+w the|strong="G2532"\+w* \+w one|strong="G1520"\+w* \+w and|strong="G2532"\+w* love \+w the|strong="G2532"\+w* \+w other|strong="G2087"\+w*, \+w or|strong="G2228"\+w* \+w else|strong="G2228"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2316"\+w* \+w be|strong="G2532"\+w* devoted \+w to|strong="G2532"\+w* \+w one|strong="G1520"\+w* \+w and|strong="G2532"\+w* \+w despise|strong="G2706"\+w* \+w the|strong="G2532"\+w* \+w other|strong="G2087"\+w*. \+w You|strong="G2532"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w serve|strong="G1398"\+w* \+w both|strong="G2532"\+w* \+w God|strong="G2316"\+w* \+w and|strong="G2532"\+w* \+w Mammon|strong="G3126"\+w*. \wj* +\v 25 \wj \+w Therefore|strong="G1223"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, don’\+w t|strong="G3588"\+w* \+w be|strong="G1510"\+w* \+w anxious|strong="G3309"\+w* \+w for|strong="G1223"\+w* \+w your|strong="G1223"\+w* \+w life|strong="G5590"\+w*: \+w what|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G5101"\+w* \+w eat|strong="G2068"\+w*, \+w or|strong="G2532"\+w* \+w what|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G5101"\+w* \+w drink|strong="G2532"\+w*; \+w nor|strong="G3366"\+w* \+w yet|strong="G2532"\+w* \+w for|strong="G1223"\+w* \+w your|strong="G1223"\+w* \+w body|strong="G4983"\+w*, \+w what|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G5101"\+w* wear. Isn’\+w t|strong="G3588"\+w* \+w life|strong="G5590"\+w* \+w more|strong="G4119"\+w* \+w than|strong="G4183"\+w* \+w food|strong="G5160"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w body|strong="G4983"\+w* \+w more|strong="G4119"\+w* \+w than|strong="G4183"\+w* \+w clothing|strong="G1742"\+w*? \wj* +\v 26 \wj \+w See|strong="G1689"\+w* \+w the|strong="G2532"\+w* \+w birds|strong="G4071"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w sky|strong="G3772"\+w*, \+w that|strong="G3754"\+w* \+w they|strong="G2532"\+w* don’\+w t|strong="G3588"\+w* \+w sow|strong="G4687"\+w*, \+w neither|strong="G3761"\+w* \+w do|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w reap|strong="G2325"\+w*, \+w nor|strong="G3761"\+w* \+w gather|strong="G4863"\+w* \+w into|strong="G1519"\+w* barns. \+w Your|strong="G2532"\+w* \+w heavenly|strong="G3770"\+w* \+w Father|strong="G3962"\+w* \+w feeds|strong="G5142"\+w* \+w them|strong="G3588"\+w*. Aren’\+w t|strong="G3588"\+w* \+w you|strong="G5210"\+w* \+w of|strong="G2532"\+w* \+w much|strong="G3123"\+w* \+w more|strong="G3123"\+w* value \+w than|strong="G2532"\+w* \+w they|strong="G2532"\+w*?\wj* +\p +\v 27 \wj “\+w Which|strong="G3588"\+w* \+w of|strong="G1537"\+w* \+w you|strong="G5210"\+w* \+w by|strong="G1537"\+w* \+w being|strong="G1161"\+w* \+w anxious|strong="G3309"\+w*, \+w can|strong="G1410"\+w* \+w add|strong="G4369"\+w* \+w one|strong="G1520"\+w* moment\wj*\f + \fr 6:27 \ft literally, cubit\f* \wj \+w to|strong="G1909"\+w* \+w his|strong="G1909"\+w* lifespan? \wj* +\v 28 \wj \+w Why|strong="G5101"\+w* \+w are|strong="G3588"\+w* \+w you|strong="G4459"\+w* \+w anxious|strong="G3309"\+w* \+w about|strong="G4012"\+w* \+w clothing|strong="G1742"\+w*? \+w Consider|strong="G2648"\+w* \+w the|strong="G2532"\+w* \+w lilies|strong="G2918"\+w* \+w of|strong="G4012"\+w* \+w the|strong="G2532"\+w* field, \+w how|strong="G4459"\+w* \+w they|strong="G2532"\+w* grow. \+w They|strong="G2532"\+w* don’\+w t|strong="G3588"\+w* \+w toil|strong="G2872"\+w*, \+w neither|strong="G3761"\+w* \+w do|strong="G5101"\+w* \+w they|strong="G2532"\+w* \+w spin|strong="G3514"\+w*, \wj* +\v 29 \wj \+w yet|strong="G1161"\+w* \+w I|strong="G1161"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w even|strong="G3761"\+w* \+w Solomon|strong="G4672"\+w* \+w in|strong="G1722"\+w* \+w all|strong="G3956"\+w* \+w his|strong="G3956"\+w* \+w glory|strong="G1391"\+w* \+w was|strong="G3588"\+w* \+w not|strong="G3761"\+w* \+w dressed|strong="G4016"\+w* \+w like|strong="G5613"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G1391"\+w* \+w these|strong="G3778"\+w*. \wj* +\v 30 \wj \+w But|strong="G1161"\+w* \+w if|strong="G1487"\+w* \+w God|strong="G2316"\+w* \+w so|strong="G3779"\+w* clothes \+w the|strong="G2532"\+w* \+w grass|strong="G5528"\+w* \+w of|strong="G2316"\+w* \+w the|strong="G2532"\+w* field, \+w which|strong="G3588"\+w* \+w today|strong="G4594"\+w* exists \+w and|strong="G2532"\+w* tomorrow \+w is|strong="G1510"\+w* thrown \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* oven, won’\+w t|strong="G3588"\+w* \+w he|strong="G2532"\+w* \+w much|strong="G4183"\+w* \+w more|strong="G3123"\+w* clothe \+w you|strong="G5210"\+w*, \+w you|strong="G5210"\+w* \+w of|strong="G2316"\+w* \+w little|strong="G3640"\+w* \+w faith|strong="G3640"\+w*?\wj* +\p +\v 31 \wj “\+w Therefore|strong="G3767"\+w* don’t \+w be|strong="G3361"\+w* \+w anxious|strong="G3309"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w What|strong="G5101"\+w* \+w will|strong="G5101"\+w* \+w we|strong="G3767"\+w* \+w eat|strong="G2068"\+w*?’, ‘\+w What|strong="G5101"\+w* \+w will|strong="G5101"\+w* \+w we|strong="G3767"\+w* \+w drink|strong="G4095"\+w*?’ \+w or|strong="G2228"\+w*, ‘\+w With|strong="G4016"\+w* \+w what|strong="G5101"\+w* \+w will|strong="G5101"\+w* \+w we|strong="G3767"\+w* \+w be|strong="G3361"\+w* \+w clothed|strong="G4016"\+w*?’ \wj* +\v 32 \wj \+w For|strong="G1063"\+w* \+w the|strong="G3956"\+w* \+w Gentiles|strong="G1484"\+w* \+w seek|strong="G1934"\+w* \+w after|strong="G1063"\+w* \+w all|strong="G3956"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3956"\+w*; \+w for|strong="G1063"\+w* \+w your|strong="G3956"\+w* \+w heavenly|strong="G3770"\+w* \+w Father|strong="G3962"\+w* \+w knows|strong="G1492"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w need|strong="G5535"\+w* \+w all|strong="G3956"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3956"\+w*. \wj* +\v 33 \wj \+w But|strong="G1161"\+w* \+w seek|strong="G2212"\+w* \+w first|strong="G4413"\+w* \+w God|strong="G2532"\+w*’s Kingdom \+w and|strong="G2532"\+w* \+w his|strong="G3956"\+w* \+w righteousness|strong="G1343"\+w*; \+w and|strong="G2532"\+w* \+w all|strong="G3956"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3956"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w given|strong="G4369"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w as|strong="G1161"\+w* \+w well|strong="G2532"\+w*. \wj* +\v 34 \wj \+w Therefore|strong="G3767"\+w* don’\+w t|strong="G3588"\+w* \+w be|strong="G3361"\+w* \+w anxious|strong="G3309"\+w* \+w for|strong="G1063"\+w* tomorrow, \+w for|strong="G1063"\+w* tomorrow \+w will|strong="G2250"\+w* \+w be|strong="G3361"\+w* \+w anxious|strong="G3309"\+w* \+w for|strong="G1063"\+w* \+w itself|strong="G1438"\+w*. \+w Each|strong="G1438"\+w* \+w day|strong="G2250"\+w*’s \+w own|strong="G1438"\+w* \+w evil|strong="G2549"\+w* \+w is|strong="G3588"\+w* sufficient.\wj* +\c 7 +\p +\v 1 \wj “Don’t \+w judge|strong="G2919"\+w*, \+w so|strong="G2443"\+w* \+w that|strong="G2443"\+w* \+w you|strong="G3361"\+w* won’t \+w be|strong="G3361"\+w* \+w judged|strong="G2919"\+w*. \wj* +\v 2 \wj \+w For|strong="G1063"\+w* \+w with|strong="G1722"\+w* \+w whatever|strong="G3739"\+w* \+w judgment|strong="G2917"\+w* \+w you|strong="G5210"\+w* \+w judge|strong="G2919"\+w*, \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w judged|strong="G2919"\+w*; \+w and|strong="G2532"\+w* \+w with|strong="G1722"\+w* \+w whatever|strong="G3739"\+w* \+w measure|strong="G3358"\+w* \+w you|strong="G5210"\+w* \+w measure|strong="G3358"\+w*, \+w it|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w measured|strong="G3354"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 3 \wj \+w Why|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G4771"\+w* see \+w the|strong="G1722"\+w* \+w speck|strong="G2595"\+w* \+w that|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G4674"\+w* brother’s \+w eye|strong="G3788"\+w*, \+w but|strong="G1161"\+w* don’\+w t|strong="G3588"\+w* \+w consider|strong="G2657"\+w* \+w the|strong="G1722"\+w* beam \+w that|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G4674"\+w* \+w own|strong="G4674"\+w* \+w eye|strong="G3788"\+w*? \wj* +\v 4 \wj \+w Or|strong="G2228"\+w* \+w how|strong="G4459"\+w* \+w will|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w tell|strong="G3004"\+w* \+w your|strong="G2532"\+w* brother, ‘\+w Let|strong="G2532"\+w* \+w me|strong="G3004"\+w* \+w remove|strong="G1544"\+w* \+w the|strong="G1722"\+w* \+w speck|strong="G2595"\+w* \+w from|strong="G1537"\+w* \+w your|strong="G2532"\+w* \+w eye|strong="G3788"\+w*,’ \+w and|strong="G2532"\+w* \+w behold|strong="G2400"\+w*, \+w the|strong="G1722"\+w* beam \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G2532"\+w* \+w own|strong="G3788"\+w* \+w eye|strong="G3788"\+w*? \wj* +\v 5 \wj \+w You|strong="G4771"\+w* \+w hypocrite|strong="G5273"\+w*! \+w First|strong="G4413"\+w* \+w remove|strong="G1544"\+w* \+w the|strong="G2532"\+w* beam \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w your|strong="G2532"\+w* \+w own|strong="G3788"\+w* \+w eye|strong="G3788"\+w*, \+w and|strong="G2532"\+w* \+w then|strong="G2532"\+w* \+w you|strong="G4771"\+w* can \+w see|strong="G1227"\+w* \+w clearly|strong="G1227"\+w* \+w to|strong="G2532"\+w* \+w remove|strong="G1544"\+w* \+w the|strong="G2532"\+w* \+w speck|strong="G2595"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w your|strong="G2532"\+w* brother’s \+w eye|strong="G3788"\+w*.\wj* +\p +\v 6 \wj “Don’\+w t|strong="G3588"\+w* \+w give|strong="G1325"\+w* \+w that|strong="G3588"\+w* \+w which|strong="G3588"\+w* \+w is|strong="G3588"\+w* holy \+w to|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w dogs|strong="G2965"\+w*, \+w neither|strong="G3366"\+w* throw \+w your|strong="G2532"\+w* \+w pearls|strong="G3135"\+w* \+w before|strong="G1715"\+w* \+w the|strong="G1722"\+w* \+w pigs|strong="G5519"\+w*, \+w lest|strong="G3361"\+w* \+w perhaps|strong="G3379"\+w* \+w they|strong="G2532"\+w* \+w trample|strong="G2662"\+w* \+w them|strong="G3588"\+w* \+w under|strong="G1722"\+w* \+w their|strong="G1438"\+w* \+w feet|strong="G4228"\+w*, \+w and|strong="G2532"\+w* \+w turn|strong="G4762"\+w* \+w and|strong="G2532"\+w* \+w tear|strong="G4486"\+w* \+w you|strong="G5210"\+w* \+w to|strong="G2532"\+w* \+w pieces|strong="G4486"\+w*.\wj* +\p +\v 7 \wj “Ask, \+w and|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w given|strong="G1325"\+w* \+w you|strong="G5210"\+w*. \+w Seek|strong="G2212"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w find|strong="G2147"\+w*. \+w Knock|strong="G2925"\+w*, \+w and|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* opened \+w for|strong="G2212"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 8 \wj \+w For|strong="G1063"\+w* \+w everyone|strong="G3956"\+w* \+w who|strong="G3588"\+w* asks \+w receives|strong="G2983"\+w*. \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w seeks|strong="G2212"\+w* \+w finds|strong="G2147"\+w*. \+w To|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w knocks|strong="G2925"\+w* \+w it|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* opened. \wj* +\v 9 \wj \+w Or|strong="G2228"\+w* \+w who|strong="G3739"\+w* \+w is|strong="G1510"\+w* \+w there|strong="G1510"\+w* \+w among|strong="G1537"\+w* \+w you|strong="G5210"\+w* \+w who|strong="G3739"\+w*, if \+w his|strong="G3739"\+w* \+w son|strong="G5207"\+w* asks \+w him|strong="G3588"\+w* \+w for|strong="G1537"\+w* bread, \+w will|strong="G5101"\+w* \+w give|strong="G1929"\+w* \+w him|strong="G3588"\+w* \+w a|strong="G1510"\+w* \+w stone|strong="G3037"\+w*? \wj* +\v 10 \wj \+w Or|strong="G2228"\+w* \+w if|strong="G2532"\+w* \+w he|strong="G2532"\+w* asks \+w for|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w fish|strong="G2486"\+w*, \+w who|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w give|strong="G1929"\+w* \+w him|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w serpent|strong="G3789"\+w*? \wj* +\v 11 \wj \+w If|strong="G1487"\+w* \+w you|strong="G5210"\+w* \+w then|strong="G3767"\+w*, \+w being|strong="G1510"\+w* \+w evil|strong="G4190"\+w*, \+w know|strong="G1492"\+w* \+w how|strong="G4214"\+w* \+w to|strong="G1722"\+w* \+w give|strong="G1325"\+w* \+w good|strong="G3588"\+w* \+w gifts|strong="G1390"\+w* \+w to|strong="G1722"\+w* \+w your|strong="G1487"\+w* \+w children|strong="G5043"\+w*, \+w how|strong="G4214"\+w* \+w much|strong="G4214"\+w* \+w more|strong="G3123"\+w* \+w will|strong="G1510"\+w* \+w your|strong="G1487"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w* \+w give|strong="G1325"\+w* \+w good|strong="G3588"\+w* \+w things|strong="G3588"\+w* \+w to|strong="G1722"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* ask \+w him|strong="G3588"\+w*! \wj* +\v 12 \wj \+w Therefore|strong="G3767"\+w*, \+w whatever|strong="G3745"\+w* \+w you|strong="G5210"\+w* \+w desire|strong="G2309"\+w* \+w for|strong="G1063"\+w* \+w men|strong="G3956"\+w* \+w to|strong="G2443"\+w* \+w do|strong="G4160"\+w* \+w to|strong="G2443"\+w* \+w you|strong="G5210"\+w*, \+w you|strong="G5210"\+w* \+w shall|strong="G2532"\+w* \+w also|strong="G2532"\+w* \+w do|strong="G4160"\+w* \+w to|strong="G2443"\+w* \+w them|strong="G3588"\+w*; \+w for|strong="G1063"\+w* \+w this|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w law|strong="G3551"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w prophets|strong="G4396"\+w*.\wj* +\p +\v 13 \wj “\+w Enter|strong="G1525"\+w* \+w in|strong="G1519"\+w* \+w by|strong="G1223"\+w* \+w the|strong="G2532"\+w* \+w narrow|strong="G4728"\+w* \+w gate|strong="G4439"\+w*; \+w for|strong="G3754"\+w* \+w the|strong="G2532"\+w* \+w gate|strong="G4439"\+w* \+w is|strong="G1510"\+w* \+w wide|strong="G4116"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w way|strong="G3598"\+w* \+w is|strong="G1510"\+w* \+w broad|strong="G2149"\+w* \+w that|strong="G3754"\+w* \+w leads|strong="G1519"\+w* \+w to|strong="G1519"\+w* destruction, \+w and|strong="G2532"\+w* \+w there|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w many|strong="G4183"\+w* \+w who|strong="G3588"\+w* \+w enter|strong="G1525"\+w* \+w in|strong="G1519"\+w* \+w by|strong="G1223"\+w* \+w it|strong="G2532"\+w*. \wj* +\v 14 \wj \+w How|strong="G3754"\+w*\wj*\f + \fr 7:14 \ft TR reads “Because” instead of “How”\f* \wj \+w narrow|strong="G4728"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w gate|strong="G4439"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w way|strong="G3598"\+w* \+w is|strong="G1510"\+w* restricted \+w that|strong="G3754"\+w* \+w leads|strong="G1519"\+w* \+w to|strong="G1519"\+w* \+w life|strong="G2222"\+w*! \+w There|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w few|strong="G3641"\+w* \+w who|strong="G3588"\+w* \+w find|strong="G2147"\+w* \+w it|strong="G2532"\+w*.\wj* +\p +\v 15 \wj “\+w Beware|strong="G4337"\+w* \+w of|strong="G1722"\+w* \+w false|strong="G5578"\+w* \+w prophets|strong="G5578"\+w*, \+w who|strong="G3588"\+w* \+w come|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w you|strong="G5210"\+w* \+w in|strong="G1722"\+w* \+w sheep|strong="G4263"\+w*’s \+w clothing|strong="G1742"\+w*, \+w but|strong="G1161"\+w* \+w inwardly|strong="G2081"\+w* \+w are|strong="G1510"\+w* ravening \+w wolves|strong="G3074"\+w*. \wj* +\v 16 \wj \+w By|strong="G2228"\+w* \+w their|strong="G1438"\+w* \+w fruits|strong="G2590"\+w* \+w you|strong="G1438"\+w* \+w will|strong="G3385"\+w* \+w know|strong="G1921"\+w* \+w them|strong="G3588"\+w*. \+w Do|strong="G2228"\+w* \+w you|strong="G1438"\+w* \+w gather|strong="G4816"\+w* \+w grapes|strong="G4718"\+w* \+w from|strong="G3588"\+w* thorns \+w or|strong="G2228"\+w* \+w figs|strong="G4810"\+w* \+w from|strong="G3588"\+w* \+w thistles|strong="G5146"\+w*? \wj* +\v 17 \wj \+w Even|strong="G1161"\+w* \+w so|strong="G3779"\+w*, \+w every|strong="G3956"\+w* \+w good|strong="G2570"\+w* \+w tree|strong="G1186"\+w* \+w produces|strong="G4160"\+w* \+w good|strong="G2570"\+w* \+w fruit|strong="G2590"\+w*, \+w but|strong="G1161"\+w* \+w the|strong="G3956"\+w* \+w corrupt|strong="G4550"\+w* \+w tree|strong="G1186"\+w* \+w produces|strong="G4160"\+w* \+w evil|strong="G4190"\+w* \+w fruit|strong="G2590"\+w*. \wj* +\v 18 \wj \+w A|strong="G4160"\+w* \+w good|strong="G2570"\+w* \+w tree|strong="G1186"\+w* \+w can|strong="G1410"\+w*’t \+w produce|strong="G4160"\+w* \+w evil|strong="G4190"\+w* \+w fruit|strong="G2590"\+w*, \+w neither|strong="G3761"\+w* \+w can|strong="G1410"\+w* \+w a|strong="G4160"\+w* \+w corrupt|strong="G4550"\+w* \+w tree|strong="G1186"\+w* \+w produce|strong="G4160"\+w* \+w good|strong="G2570"\+w* \+w fruit|strong="G2590"\+w*. \wj* +\v 19 \wj \+w Every|strong="G3956"\+w* \+w tree|strong="G1186"\+w* \+w that|strong="G3956"\+w* doesn’t grow \+w good|strong="G2570"\+w* \+w fruit|strong="G2590"\+w* \+w is|strong="G3956"\+w* \+w cut|strong="G1581"\+w* \+w down|strong="G1581"\+w* \+w and|strong="G2532"\+w* thrown \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w fire|strong="G4442"\+w*. \wj* +\v 20 \wj Therefore \+w by|strong="G1438"\+w* \+w their|strong="G1438"\+w* \+w fruits|strong="G2590"\+w* \+w you|strong="G1438"\+w* will \+w know|strong="G1921"\+w* \+w them|strong="G3588"\+w*. \wj* +\p +\v 21 \wj “\+w Not|strong="G3756"\+w* \+w everyone|strong="G3956"\+w* \+w who|strong="G3588"\+w* \+w says|strong="G3004"\+w* \+w to|strong="G1519"\+w* \+w me|strong="G1473"\+w*, ‘\+w Lord|strong="G2962"\+w*, \+w Lord|strong="G2962"\+w*,’ \+w will|strong="G2307"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1722"\+w* Kingdom \+w of|strong="G3962"\+w* \+w Heaven|strong="G3772"\+w*, \+w but|strong="G3588"\+w* \+w he|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w does|strong="G4160"\+w* \+w the|strong="G1722"\+w* \+w will|strong="G2307"\+w* \+w of|strong="G3962"\+w* \+w my|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*. \wj* +\v 22 \wj \+w Many|strong="G4183"\+w* \+w will|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w me|strong="G1473"\+w* \+w in|strong="G1722"\+w* \+w that|strong="G3588"\+w* \+w day|strong="G2250"\+w*, ‘\+w Lord|strong="G2962"\+w*, \+w Lord|strong="G2962"\+w*, didn’\+w t|strong="G3588"\+w* \+w we|strong="G2532"\+w* \+w prophesy|strong="G4395"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G4674"\+w* \+w name|strong="G3686"\+w*, \+w in|strong="G1722"\+w* \+w your|strong="G4674"\+w* \+w name|strong="G3686"\+w* \+w cast|strong="G1544"\+w* \+w out|strong="G1544"\+w* \+w demons|strong="G1140"\+w*, \+w and|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G4674"\+w* \+w name|strong="G3686"\+w* \+w do|strong="G4160"\+w* \+w many|strong="G4183"\+w* \+w mighty|strong="G1411"\+w* \+w works|strong="G1411"\+w*?’ \wj* +\v 23 \wj \+w Then|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* tell \+w them|strong="G3588"\+w*, ‘\+w I|strong="G1473"\+w* \+w never|strong="G3763"\+w* \+w knew|strong="G1097"\+w* \+w you|strong="G5210"\+w*. Depart \+w from|strong="G2532"\+w* \+w me|strong="G1473"\+w*, \+w you|strong="G5210"\+w* \+w who|strong="G3588"\+w* \+w work|strong="G2038"\+w* iniquity.’\wj* +\p +\v 24 \wj “\+w Everyone|strong="G3956"\+w* \+w therefore|strong="G3767"\+w* \+w who|strong="G3588"\+w* hears \+w these|strong="G3778"\+w* \+w words|strong="G3056"\+w* \+w of|strong="G3056"\+w* \+w mine|strong="G1473"\+w* \+w and|strong="G2532"\+w* \+w does|strong="G4160"\+w* \+w them|strong="G3588"\+w*, \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* liken \+w him|strong="G3588"\+w* \+w to|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w wise|strong="G5429"\+w* \+w man|strong="G3778"\+w* \+w who|strong="G3588"\+w* \+w built|strong="G3618"\+w* \+w his|strong="G1438"\+w* \+w house|strong="G3614"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w rock|strong="G4073"\+w*. \wj* +\v 25 \wj \+w The|strong="G2532"\+w* \+w rain|strong="G1028"\+w* \+w came|strong="G2064"\+w* \+w down|strong="G2597"\+w*, \+w the|strong="G2532"\+w* \+w floods|strong="G4215"\+w* \+w came|strong="G2064"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* winds \+w blew|strong="G4154"\+w* \+w and|strong="G2532"\+w* \+w beat|strong="G4154"\+w* \+w on|strong="G1909"\+w* \+w that|strong="G3588"\+w* \+w house|strong="G3614"\+w*; \+w and|strong="G2532"\+w* \+w it|strong="G2532"\+w* didn’\+w t|strong="G3588"\+w* \+w fall|strong="G4098"\+w*, \+w for|strong="G1063"\+w* \+w it|strong="G2532"\+w* \+w was|strong="G3588"\+w* \+w founded|strong="G2311"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w rock|strong="G4073"\+w*. \wj* +\v 26 \wj \+w Everyone|strong="G3956"\+w* \+w who|strong="G3588"\+w* hears \+w these|strong="G3778"\+w* \+w words|strong="G3056"\+w* \+w of|strong="G3056"\+w* \+w mine|strong="G1473"\+w* \+w and|strong="G2532"\+w* doesn’\+w t|strong="G3588"\+w* \+w do|strong="G4160"\+w* \+w them|strong="G3588"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w like|strong="G3666"\+w* \+w a|strong="G2532"\+w* \+w foolish|strong="G3474"\+w* \+w man|strong="G3778"\+w* \+w who|strong="G3588"\+w* \+w built|strong="G3618"\+w* \+w his|strong="G1438"\+w* \+w house|strong="G3614"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* sand. \wj* +\v 27 \wj \+w The|strong="G2532"\+w* \+w rain|strong="G1028"\+w* \+w came|strong="G2064"\+w* \+w down|strong="G2597"\+w*, \+w the|strong="G2532"\+w* \+w floods|strong="G4215"\+w* \+w came|strong="G2064"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* winds \+w blew|strong="G4154"\+w* \+w and|strong="G2532"\+w* \+w beat|strong="G4154"\+w* \+w on|strong="G2597"\+w* \+w that|strong="G3588"\+w* \+w house|strong="G3614"\+w*; \+w and|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w fell|strong="G4098"\+w*—\+w and|strong="G2532"\+w* its \+w fall|strong="G4098"\+w* \+w was|strong="G1510"\+w* \+w great|strong="G3173"\+w*.”\wj* +\p +\v 28 \w When|strong="G3753"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* \w finished|strong="G5055"\w* \w saying|strong="G3056"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w* \w were|strong="G3588"\w* \w astonished|strong="G1605"\w* \w at|strong="G1909"\w* \w his|strong="G1909"\w* \w teaching|strong="G1322"\w*, +\v 29 \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w taught|strong="G1321"\w* \w them|strong="G3588"\w* \w with|strong="G2532"\w* \w authority|strong="G1849"\w*, \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w like|strong="G5613"\w* \w the|strong="G2532"\w* \w scribes|strong="G1122"\w*. +\c 8 +\p +\v 1 \w When|strong="G1161"\w* \w he|strong="G1161"\w* \w came|strong="G2597"\w* \w down|strong="G2597"\w* \w from|strong="G2597"\w* \w the|strong="G1161"\w* \w mountain|strong="G3735"\w*, \w great|strong="G4183"\w* \w multitudes|strong="G3793"\w* followed \w him|strong="G3588"\w*. +\v 2 \w Behold|strong="G2400"\w*, \w a|strong="G2532"\w* \w leper|strong="G3015"\w* \w came|strong="G4334"\w* \w to|strong="G2532"\w* \w him|strong="G3708"\w* \w and|strong="G2532"\w* \w worshiped|strong="G4352"\w* \w him|strong="G3708"\w*, \w saying|strong="G3004"\w*, “\w Lord|strong="G2962"\w*, \w if|strong="G1437"\w* \w you|strong="G1437"\w* \w want|strong="G2309"\w* \w to|strong="G2532"\w*, \w you|strong="G1437"\w* \w can|strong="G1410"\w* \w make|strong="G2511"\w* \w me|strong="G1473"\w* \w clean|strong="G2511"\w*.” +\p +\v 3 \w Jesus|strong="G3004"\w* \w stretched|strong="G1614"\w* \w out|strong="G2532"\w* \w his|strong="G2532"\w* \w hand|strong="G5495"\w* \w and|strong="G2532"\w* touched \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, \wj “\+w I|strong="G2532"\+w* \+w want|strong="G2309"\+w* \+w to|strong="G2532"\+w*. \+w Be|strong="G2532"\+w* \+w made|strong="G3004"\+w* \+w clean|strong="G2511"\+w*.”\wj* \w Immediately|strong="G2112"\w* \w his|strong="G2532"\w* \w leprosy|strong="G3014"\w* \w was|strong="G3588"\w* \w cleansed|strong="G2511"\w*. +\v 4 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \wj “\+w See|strong="G3708"\+w* \+w that|strong="G3739"\+w* \+w you|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w nobody|strong="G3367"\+w*; \+w but|strong="G2532"\+w* \+w go|strong="G5217"\+w*, \+w show|strong="G1166"\+w* \+w yourself|strong="G4572"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w priest|strong="G2409"\+w*, \+w and|strong="G2532"\+w* \+w offer|strong="G4374"\+w* \+w the|strong="G2532"\+w* \+w gift|strong="G1435"\+w* \+w that|strong="G3739"\+w* \+w Moses|strong="G3475"\+w* \+w commanded|strong="G4367"\+w*, \+w as|strong="G1519"\+w* \+w a|strong="G2532"\+w* \+w testimony|strong="G3142"\+w* \+w to|strong="G1519"\+w* \+w them|strong="G3588"\+w*.”\wj* +\p +\v 5 \w When|strong="G1161"\w* \w he|strong="G1161"\w* \w came|strong="G4334"\w* \w into|strong="G1519"\w* \w Capernaum|strong="G2584"\w*, \w a|strong="G1519"\w* \w centurion|strong="G1543"\w* \w came|strong="G4334"\w* \w to|strong="G1519"\w* \w him|strong="G3870"\w*, asking \w him|strong="G3870"\w* \w for|strong="G1519"\w* help, +\v 6 \w saying|strong="G3004"\w*, “\w Lord|strong="G2962"\w*, \w my|strong="G1722"\w* \w servant|strong="G3816"\w* lies \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w house|strong="G3614"\w* \w paralyzed|strong="G3885"\w*, \w grievously|strong="G1171"\w* tormented.” +\p +\v 7 \w Jesus|strong="G3004"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G2532"\w*, \wj “\+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w and|strong="G2532"\+w* \+w heal|strong="G2323"\+w* \+w him|strong="G2532"\+w*.”\wj* +\p +\v 8 \w The|strong="G2532"\w* \w centurion|strong="G1543"\w* \w answered|strong="G3004"\w*, “\w Lord|strong="G2962"\w*, \w I|strong="G1473"\w*’m \w not|strong="G3756"\w* \w worthy|strong="G2425"\w* \w for|strong="G1161"\w* \w you|strong="G3004"\w* \w to|strong="G2443"\w* \w come|strong="G1525"\w* \w under|strong="G5259"\w* \w my|strong="G1525"\w* \w roof|strong="G4721"\w*. \w Just|strong="G2532"\w* \w say|strong="G3004"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w*, \w and|strong="G2532"\w* \w my|strong="G1525"\w* \w servant|strong="G3816"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w healed|strong="G2390"\w*. +\v 9 \w For|strong="G1063"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w also|strong="G2532"\w* \w a|strong="G2192"\w* \w man|strong="G3778"\w* \w under|strong="G5259"\w* \w authority|strong="G1849"\w*, \w having|strong="G2192"\w* \w under|strong="G5259"\w* \w myself|strong="G1683"\w* \w soldiers|strong="G4757"\w*. \w I|strong="G1473"\w* \w tell|strong="G3004"\w* \w this|strong="G3778"\w* \w one|strong="G3588"\w*, ‘\w Go|strong="G4198"\w*,’ \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w goes|strong="G4198"\w*; \w and|strong="G2532"\w* \w tell|strong="G3004"\w* \w another|strong="G3588"\w*, ‘\w Come|strong="G2064"\w*,’ \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w comes|strong="G2064"\w*; \w and|strong="G2532"\w* \w tell|strong="G3004"\w* \w my|strong="G1473"\w* \w servant|strong="G1401"\w*, ‘\w Do|strong="G4160"\w* \w this|strong="G3778"\w*,’ \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w does|strong="G4160"\w* \w it|strong="G2532"\w*.” +\p +\v 10 \w When|strong="G1161"\w* \w Jesus|strong="G2424"\w* heard \w it|strong="G2532"\w*, \w he|strong="G2532"\w* \w marveled|strong="G2296"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* followed, \wj “Most \+w certainly|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w I|strong="G2532"\+w* haven’\+w t|strong="G3588"\+w* \+w found|strong="G2147"\+w* \+w so|strong="G2532"\+w* \+w great|strong="G5118"\+w* \+w a|strong="G2532"\+w* \+w faith|strong="G4102"\+w*, \+w not|strong="G3761"\+w* \+w even|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w Israel|strong="G2474"\+w*. \wj* +\v 11 \wj \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w many|strong="G4183"\+w* \+w will|strong="G2532"\+w* \+w come|strong="G2240"\+w* \+w from|strong="G2532"\+w* \+w the|strong="G1722"\+w* east \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w west|strong="G1424"\+w*, \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* sit down \+w with|strong="G3326"\+w* Abraham, \+w Isaac|strong="G2464"\+w*, \+w and|strong="G2532"\+w* \+w Jacob|strong="G2384"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* Kingdom \+w of|strong="G2532"\+w* \+w Heaven|strong="G3772"\+w*, \wj* +\v 12 \wj \+w but|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w children|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G2532"\+w* Kingdom \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w thrown|strong="G1544"\+w* \+w out|strong="G1831"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w outer|strong="G1857"\+w* \+w darkness|strong="G4655"\+w*. \+w There|strong="G1563"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w weeping|strong="G2805"\+w* \+w and|strong="G2532"\+w* \+w gnashing|strong="G1030"\+w* \+w of|strong="G5207"\+w* \+w teeth|strong="G3599"\+w*.”\wj* +\v 13 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w centurion|strong="G1543"\w*, \wj “\+w Go|strong="G5217"\+w* \+w your|strong="G2532"\+w* \+w way|strong="G1722"\+w*. \+w Let|strong="G1096"\+w* \+w it|strong="G2532"\+w* \+w be|strong="G1096"\+w* \+w done|strong="G1096"\+w* \+w for|strong="G1722"\+w* \+w you|strong="G4771"\+w* \+w as|strong="G5613"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2532"\+w* \+w believed|strong="G4100"\+w*.”\wj* \w His|strong="G1722"\w* \w servant|strong="G3816"\w* \w was|strong="G1096"\w* \w healed|strong="G2390"\w* \w in|strong="G1722"\w* \w that|strong="G3588"\w* \w hour|strong="G5610"\w*. +\p +\v 14 \w When|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w came|strong="G2064"\w* \w into|strong="G1519"\w* \w Peter|strong="G4074"\w*’s \w house|strong="G3614"\w*, \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w his|strong="G1519"\w* wife’s mother lying sick \w with|strong="G2532"\w* \w a|strong="G2532"\w* \w fever|strong="G4445"\w*. +\v 15 \w He|strong="G2532"\w* touched \w her|strong="G1438"\w* \w hand|strong="G5495"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w fever|strong="G4446"\w* left \w her|strong="G1438"\w*. \w So|strong="G2532"\w* \w she|strong="G2532"\w* \w got|strong="G1453"\w* \w up|strong="G1453"\w* \w and|strong="G2532"\w* \w served|strong="G1247"\w* \w him|strong="G3588"\w*.\f + \fr 8:15 \ft TR reads “them” instead of “him”\f* +\v 16 \w When|strong="G1161"\w* \w evening|strong="G3798"\w* \w came|strong="G1096"\w*, \w they|strong="G2532"\w* \w brought|strong="G4374"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w many|strong="G4183"\w* \w possessed|strong="G2192"\w* \w with|strong="G2532"\w* demons. \w He|strong="G2532"\w* \w cast|strong="G1544"\w* \w out|strong="G1544"\w* \w the|strong="G2532"\w* \w spirits|strong="G4151"\w* \w with|strong="G2532"\w* \w a|strong="G2192"\w* \w word|strong="G3056"\w*, \w and|strong="G2532"\w* \w healed|strong="G2323"\w* \w all|strong="G3956"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w sick|strong="G2560"\w*, +\v 17 \w that|strong="G3588"\w* \w it|strong="G2532"\w* \w might|strong="G2532"\w* \w be|strong="G2532"\w* \w fulfilled|strong="G4137"\w* \w which|strong="G3588"\w* \w was|strong="G3588"\w* \w spoken|strong="G3004"\w* \w through|strong="G1223"\w* \w Isaiah|strong="G2268"\w* \w the|strong="G2532"\w* \w prophet|strong="G4396"\w*, \w saying|strong="G3004"\w*, “\w He|strong="G2532"\w* \w took|strong="G2983"\w* \w our|strong="G2532"\w* \w infirmities|strong="G3554"\w* \w and|strong="G2532"\w* bore \w our|strong="G2532"\w* \w diseases|strong="G3554"\w*.”\x + \xo 8:17 \xt Isaiah 53:4 \x* +\p +\v 18 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w saw|strong="G3708"\w* \w great|strong="G4183"\w* \w multitudes|strong="G3793"\w* \w around|strong="G4012"\w* \w him|strong="G3588"\w*, \w he|strong="G1161"\w* \w gave|strong="G2753"\w* \w the|strong="G1519"\w* \w order|strong="G2753"\w* \w to|strong="G1519"\w* depart \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w other|strong="G4008"\w* \w side|strong="G4008"\w*. +\p +\v 19 \w A|strong="G2532"\w* \w scribe|strong="G1122"\w* \w came|strong="G4334"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G2532"\w*, “\w Teacher|strong="G1320"\w*, \w I|strong="G2532"\w* \w will|strong="G2532"\w* follow \w you|strong="G4771"\w* \w wherever|strong="G3699"\w* \w you|strong="G4771"\w* \w go|strong="G2532"\w*.” +\p +\v 20 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w The|strong="G2532"\+w* foxes \+w have|strong="G2192"\+w* \+w holes|strong="G5454"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w birds|strong="G4071"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G2532"\+w* \+w sky|strong="G3772"\+w* \+w have|strong="G2192"\+w* \+w nests|strong="G2682"\+w*, \+w but|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3756"\+w* \+w has|strong="G2192"\+w* \+w nowhere|strong="G3756"\+w* \+w to|strong="G2532"\+w* \+w lay|strong="G2827"\+w* \+w his|strong="G2192"\+w* \+w head|strong="G2776"\+w*.”\wj* +\p +\v 21 \w Another|strong="G2087"\w* \w of|strong="G2532"\w* \w his|strong="G2532"\w* \w disciples|strong="G3101"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Lord|strong="G2962"\w*, \w allow|strong="G2010"\w* \w me|strong="G1473"\w* \w first|strong="G4413"\w* \w to|strong="G2532"\w* \w go|strong="G2010"\w* \w and|strong="G2532"\w* \w bury|strong="G2290"\w* \w my|strong="G1473"\w* \w father|strong="G3962"\w*.” +\p +\v 22 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Follow|strong="G1161"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* leave \+w the|strong="G2532"\+w* \+w dead|strong="G3498"\+w* \+w to|strong="G2532"\+w* \+w bury|strong="G2290"\+w* \+w their|strong="G1438"\+w* \+w own|strong="G1438"\+w* \+w dead|strong="G3498"\+w*.”\wj* +\p +\v 23 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w got|strong="G1684"\w* \w into|strong="G1519"\w* \w a|strong="G2532"\w* \w boat|strong="G4143"\w*, \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* followed \w him|strong="G3588"\w*. +\v 24 \w Behold|strong="G2400"\w*, \w a|strong="G1096"\w* violent \w storm|strong="G4578"\w* \w came|strong="G1096"\w* \w up|strong="G2532"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w*, \w so|strong="G2532"\w* \w much|strong="G3173"\w* \w that|strong="G3588"\w* \w the|strong="G1722"\w* \w boat|strong="G4143"\w* \w was|strong="G1096"\w* \w covered|strong="G2572"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w waves|strong="G2949"\w*; \w but|strong="G1161"\w* \w he|strong="G2532"\w* \w was|strong="G1096"\w* \w asleep|strong="G2518"\w*. +\v 25 \w The|strong="G2532"\w* disciples \w came|strong="G4334"\w* \w to|strong="G2532"\w* \w him|strong="G2532"\w* \w and|strong="G2532"\w* \w woke|strong="G1453"\w* \w him|strong="G2532"\w* \w up|strong="G1453"\w*, \w saying|strong="G3004"\w*, “\w Save|strong="G4982"\w* \w us|strong="G3004"\w*, \w Lord|strong="G2962"\w*! \w We|strong="G2532"\w* \w are|strong="G2532"\w* dying!” +\p +\v 26 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Why|strong="G5101"\+w* \+w are|strong="G1510"\+w* \+w you|strong="G3004"\+w* \+w fearful|strong="G1169"\+w*, O \+w you|strong="G3004"\+w* \+w of|strong="G2532"\+w* \+w little|strong="G3640"\+w* \+w faith|strong="G3640"\+w*?” \wj* \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w got|strong="G1453"\w* \w up|strong="G1453"\w*, \w rebuked|strong="G2008"\w* \w the|strong="G2532"\w* wind \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w*, \w and|strong="G2532"\w* \w there|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G1096"\w* \w great|strong="G3173"\w* \w calm|strong="G1055"\w*. +\p +\v 27 \w The|strong="G2532"\w* \w men|strong="G3778"\w* \w marveled|strong="G2296"\w*, \w saying|strong="G3004"\w*, “\w What|strong="G3588"\w* \w kind|strong="G4217"\w* \w of|strong="G2532"\w* \w man|strong="G3778"\w* \w is|strong="G1510"\w* \w this|strong="G3778"\w*, \w that|strong="G3754"\w* \w even|strong="G2532"\w* \w the|strong="G2532"\w* wind \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w* \w obey|strong="G5219"\w* \w him|strong="G3588"\w*?” +\p +\v 28 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w other|strong="G4008"\w* \w side|strong="G4008"\w*, \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w country|strong="G5561"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* Gergesenes,\f + \fr 8:28 \ft NU reads “Gadarenes”\f* \w two|strong="G1417"\w* \w people|strong="G3361"\w* possessed \w by|strong="G1223"\w* demons \w met|strong="G5221"\w* \w him|strong="G3588"\w* \w there|strong="G2532"\w*, \w coming|strong="G2064"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w tombs|strong="G3419"\w*, \w exceedingly|strong="G3029"\w* \w fierce|strong="G5467"\w*, \w so|strong="G2532"\w* \w that|strong="G3588"\w* nobody \w could|strong="G2480"\w* \w pass|strong="G3928"\w* \w that|strong="G3588"\w* \w way|strong="G3598"\w*. +\v 29 \w Behold|strong="G2400"\w*, \w they|strong="G2532"\w* \w cried|strong="G2896"\w* \w out|strong="G2896"\w*, \w saying|strong="G3004"\w*, “\w What|strong="G5101"\w* \w do|strong="G5101"\w* \w we|strong="G2249"\w* \w have|strong="G2532"\w* \w to|strong="G2532"\w* \w do|strong="G5101"\w* \w with|strong="G2532"\w* \w you|strong="G4771"\w*, \w Jesus|strong="G3004"\w*, \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*? \w Have|strong="G2532"\w* \w you|strong="G4771"\w* \w come|strong="G2064"\w* \w here|strong="G5602"\w* \w to|strong="G2532"\w* torment \w us|strong="G3004"\w* \w before|strong="G4253"\w* \w the|strong="G2532"\w* \w time|strong="G2540"\w*?” +\v 30 \w Now|strong="G1161"\w* \w there|strong="G1161"\w* \w was|strong="G1510"\w* \w a|strong="G1510"\w* herd \w of|strong="G4183"\w* \w many|strong="G4183"\w* \w pigs|strong="G5519"\w* \w feeding|strong="G1006"\w* \w far|strong="G3112"\w* \w away|strong="G3112"\w* \w from|strong="G1510"\w* \w them|strong="G4183"\w*. +\v 31 \w The|strong="G1519"\w* \w demons|strong="G1142"\w* \w begged|strong="G3870"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w If|strong="G1487"\w* \w you|strong="G1487"\w* \w cast|strong="G1544"\w* \w us|strong="G3004"\w* \w out|strong="G1544"\w*, permit \w us|strong="G3004"\w* \w to|strong="G1519"\w* \w go|strong="G1519"\w* \w away|strong="G1544"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* herd \w of|strong="G3588"\w* \w pigs|strong="G5519"\w*.” +\p +\v 32 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Go|strong="G5217"\+w*!”\wj* +\p \w They|strong="G2532"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w* \w and|strong="G2532"\w* \w went|strong="G1831"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* herd \w of|strong="G2532"\w* \w pigs|strong="G5519"\w*; \w and|strong="G2532"\w* \w behold|strong="G2400"\w*, \w the|strong="G1722"\w* \w whole|strong="G3956"\w* herd \w of|strong="G2532"\w* \w pigs|strong="G5519"\w* \w rushed|strong="G3729"\w* \w down|strong="G2596"\w* \w the|strong="G1722"\w* cliff \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w* \w and|strong="G2532"\w* \w died|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w water|strong="G5204"\w*. +\v 33 \w Those|strong="G3588"\w* \w who|strong="G3588"\w* \w fed|strong="G1006"\w* \w them|strong="G3588"\w* \w fled|strong="G5343"\w* \w and|strong="G2532"\w* \w went|strong="G2532"\w* \w away|strong="G5343"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w and|strong="G2532"\w* told \w everything|strong="G3956"\w*, \w including|strong="G2532"\w* \w what|strong="G3588"\w* \w happened|strong="G3588"\w* \w to|strong="G1519"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* possessed \w with|strong="G2532"\w* demons. +\v 34 \w Behold|strong="G2400"\w*, \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w* \w to|strong="G1519"\w* \w meet|strong="G5222"\w* \w Jesus|strong="G2424"\w*. \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w saw|strong="G3708"\w* \w him|strong="G3588"\w*, \w they|strong="G2532"\w* \w begged|strong="G3870"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w would|strong="G2532"\w* \w depart|strong="G1831"\w* \w from|strong="G2532"\w* \w their|strong="G2532"\w* \w borders|strong="G3725"\w*. +\c 9 +\p +\v 1 \w He|strong="G2532"\w* \w entered|strong="G2064"\w* \w into|strong="G1519"\w* \w a|strong="G2532"\w* \w boat|strong="G4143"\w* \w and|strong="G2532"\w* \w crossed|strong="G1276"\w* \w over|strong="G1276"\w*, \w and|strong="G2532"\w* \w came|strong="G2064"\w* \w into|strong="G1519"\w* \w his|strong="G1519"\w* \w own|strong="G2398"\w* \w city|strong="G4172"\w*. +\v 2 \w Behold|strong="G2400"\w*, \w they|strong="G2532"\w* \w brought|strong="G4374"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w a|strong="G2532"\w* man \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w paralyzed|strong="G3885"\w*, lying \w on|strong="G1909"\w* \w a|strong="G2532"\w* \w bed|strong="G2825"\w*. \w Jesus|strong="G2424"\w*, \w seeing|strong="G3708"\w* \w their|strong="G2532"\w* \w faith|strong="G4102"\w*, \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w paralytic|strong="G3885"\w*, \wj “\+w Son|strong="G5043"\+w*, cheer \+w up|strong="G4374"\+w*! \+w Your|strong="G2532"\+w* sins \+w are|strong="G3588"\+w* forgiven \+w you|strong="G4771"\+w*.”\wj* +\p +\v 3 \w Behold|strong="G2400"\w*, \w some|strong="G5100"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w scribes|strong="G1122"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w themselves|strong="G1438"\w*, “\w This|strong="G3778"\w* \w man|strong="G5100"\w* blasphemes.” +\p +\v 4 \w Jesus|strong="G2424"\w*, knowing \w their|strong="G2532"\w* \w thoughts|strong="G1761"\w*, \w said|strong="G3004"\w*, \wj “\+w Why|strong="G2444"\+w* \+w do|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w think|strong="G1760"\+w* \+w evil|strong="G4190"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G2532"\+w* \+w hearts|strong="G2588"\+w*? \wj* +\v 5 \wj \+w For|strong="G1063"\+w* \+w which|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w easier|strong="G2123"\+w*, \+w to|strong="G2532"\+w* \+w say|strong="G3004"\+w*, ‘\+w Your|strong="G2532"\+w* sins \+w are|strong="G1510"\+w* forgiven;’ \+w or|strong="G2228"\+w* \+w to|strong="G2532"\+w* \+w say|strong="G3004"\+w*, ‘\+w Get|strong="G1453"\+w* \+w up|strong="G1453"\+w*, \+w and|strong="G2532"\+w* \+w walk|strong="G4043"\+w*’? \wj* +\v 6 \wj \+w But|strong="G1161"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w may|strong="G2532"\+w* \+w know|strong="G1492"\+w* \+w that|strong="G3754"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G1519"\+w* \+w has|strong="G2192"\+w* \+w authority|strong="G1849"\+w* \+w on|strong="G1909"\+w* \+w earth|strong="G1093"\+w* \+w to|strong="G1519"\+w* forgive sins—”\wj* (\w then|strong="G2532"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w paralytic|strong="G3885"\w*), \wj “\+w Get|strong="G1453"\+w* \+w up|strong="G1453"\+w*, \+w and|strong="G2532"\+w* \+w take|strong="G1161"\+w* \+w up|strong="G1453"\+w* \+w your|strong="G2192"\+w* mat, \+w and|strong="G2532"\+w* \+w go|strong="G5217"\+w* \+w to|strong="G1519"\+w* \+w your|strong="G2192"\+w* \+w house|strong="G3624"\+w*.”\wj* +\p +\v 7 \w He|strong="G2532"\w* \w arose|strong="G1453"\w* \w and|strong="G2532"\w* departed \w to|strong="G1519"\w* \w his|strong="G1519"\w* \w house|strong="G3624"\w*. +\v 8 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w* \w saw|strong="G3708"\w* \w it|strong="G2532"\w*, \w they|strong="G2532"\w* marveled \w and|strong="G2532"\w* \w glorified|strong="G1392"\w* \w God|strong="G2316"\w*, \w who|strong="G3588"\w* \w had|strong="G2532"\w* \w given|strong="G1325"\w* \w such|strong="G5108"\w* \w authority|strong="G1849"\w* \w to|strong="G2532"\w* \w men|strong="G5108"\w*. +\p +\v 9 \w As|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w passed|strong="G2424"\w* \w by|strong="G1909"\w* \w from|strong="G2532"\w* \w there|strong="G2532"\w*, \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w a|strong="G2532"\w* man \w called|strong="G3004"\w* \w Matthew|strong="G3156"\w* \w sitting|strong="G2521"\w* \w at|strong="G1909"\w* \w the|strong="G2532"\w* \w tax|strong="G5058"\w* collection office. \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “Follow \+w me|strong="G1473"\+w*.”\wj* \w He|strong="G2532"\w* got \w up|strong="G2532"\w* \w and|strong="G2532"\w* followed \w him|strong="G3588"\w*. +\v 10 \w As|strong="G1722"\w* \w he|strong="G2532"\w* \w sat|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w house|strong="G3614"\w*, \w behold|strong="G2400"\w*, \w many|strong="G4183"\w* \w tax|strong="G5057"\w* \w collectors|strong="G5057"\w* \w and|strong="G2532"\w* sinners \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w sat|strong="G2532"\w* down \w with|strong="G1722"\w* \w Jesus|strong="G2424"\w* \w and|strong="G2532"\w* \w his|strong="G1722"\w* \w disciples|strong="G3101"\w*. +\v 11 \w When|strong="G2532"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w saw|strong="G3708"\w* \w it|strong="G2532"\w*, \w they|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w his|strong="G1223"\w* \w disciples|strong="G3101"\w*, “\w Why|strong="G5101"\w* \w does|strong="G2068"\w* \w your|strong="G1223"\w* \w teacher|strong="G1320"\w* \w eat|strong="G2068"\w* \w with|strong="G3326"\w* \w tax|strong="G5057"\w* \w collectors|strong="G5057"\w* \w and|strong="G2532"\w* sinners?” +\p +\v 12 \w When|strong="G1161"\w* \w Jesus|strong="G3004"\w* heard \w it|strong="G1161"\w*, \w he|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w healthy|strong="G2480"\+w* \+w have|strong="G2192"\+w* \+w no|strong="G3756"\+w* \+w need|strong="G5532"\+w* \+w for|strong="G1161"\+w* \+w a|strong="G2192"\+w* \+w physician|strong="G2395"\+w*, \+w but|strong="G1161"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w sick|strong="G2560"\+w* \+w do|strong="G3004"\+w*. \wj* +\v 13 \wj \+w But|strong="G1161"\+w* \+w you|strong="G1510"\+w* \+w go|strong="G4198"\+w* \+w and|strong="G2532"\+w* \+w learn|strong="G3129"\+w* \+w what|strong="G5101"\+w* \+w this|strong="G2532"\+w* \+w means|strong="G1510"\+w*: ‘\+w I|strong="G2532"\+w* \+w desire|strong="G2309"\+w* \+w mercy|strong="G1656"\+w*, \+w and|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w sacrifice|strong="G2378"\+w*,’\wj*\x + \xo 9:13 \xt Hosea 6:6\x* \wj \+w for|strong="G1063"\+w* \+w I|strong="G2532"\+w* \+w came|strong="G2064"\+w* \+w not|strong="G3756"\+w* \+w to|strong="G2532"\+w* \+w call|strong="G2564"\+w* \+w the|strong="G2532"\+w* \+w righteous|strong="G1342"\+w*, \+w but|strong="G1161"\+w* sinners \+w to|strong="G2532"\+w* repentance.”\wj*\f + \fr 9:13 \ft NU omits “to repentance”.\f* +\p +\v 14 \w Then|strong="G2532"\w* \w John|strong="G2491"\w*’s \w disciples|strong="G3101"\w* \w came|strong="G4334"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w Why|strong="G5101"\w* \w do|strong="G5101"\w* \w we|strong="G2249"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w fast|strong="G3522"\w* \w often|strong="G4183"\w*, \w but|strong="G1161"\w* \w your|strong="G1223"\w* \w disciples|strong="G3101"\w* don’\w t|strong="G3588"\w* \w fast|strong="G3522"\w*?” +\p +\v 15 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Can|strong="G1410"\+w* \+w the|strong="G2532"\+w* friends \+w of|strong="G5207"\+w* \+w the|strong="G2532"\+w* \+w bridegroom|strong="G3566"\+w* \+w mourn|strong="G3996"\+w* \+w as|strong="G3745"\+w* \+w long|strong="G2250"\+w* \+w as|strong="G3745"\+w* \+w the|strong="G2532"\+w* \+w bridegroom|strong="G3566"\+w* \+w is|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w them|strong="G3588"\+w*? \+w But|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w days|strong="G2250"\+w* \+w will|strong="G1510"\+w* \+w come|strong="G2064"\+w* \+w when|strong="G3752"\+w* \+w the|strong="G2532"\+w* \+w bridegroom|strong="G3566"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* taken \+w away|strong="G3326"\+w* \+w from|strong="G2064"\+w* \+w them|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w then|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w fast|strong="G3522"\+w*. \wj* +\v 16 \wj \+w No|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w puts|strong="G1911"\+w* \+w a|strong="G1096"\+w* \+w piece|strong="G1915"\+w* \+w of|strong="G2532"\+w* unshrunk \+w cloth|strong="G4470"\+w* \+w on|strong="G1909"\+w* \+w an|strong="G2532"\+w* \+w old|strong="G3820"\+w* \+w garment|strong="G2440"\+w*; \+w for|strong="G1063"\+w* \+w the|strong="G2532"\+w* \+w patch|strong="G1915"\+w* \+w would|strong="G1096"\+w* \+w tear|strong="G4978"\+w* away \+w from|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w garment|strong="G2440"\+w*, \+w and|strong="G2532"\+w* \+w a|strong="G1096"\+w* \+w worse|strong="G5501"\+w* hole \+w is|strong="G3588"\+w* \+w made|strong="G1096"\+w*. \wj* +\v 17 \wj \+w Neither|strong="G3761"\+w* \+w do|strong="G2532"\+w* \+w people|strong="G3761"\+w* \+w put|strong="G2532"\+w* \+w new|strong="G2537"\+w* \+w wine|strong="G3631"\+w* \+w into|strong="G1519"\+w* \+w old|strong="G3820"\+w* wineskins, \+w or|strong="G2532"\+w* \+w else|strong="G3361"\+w* \+w the|strong="G2532"\+w* skins \+w would|strong="G2532"\+w* \+w burst|strong="G4486"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w wine|strong="G3631"\+w* \+w be|strong="G2532"\+w* \+w spilled|strong="G1632"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* skins ruined. \+w No|strong="G3361"\+w*, \+w they|strong="G2532"\+w* \+w put|strong="G2532"\+w* \+w new|strong="G2537"\+w* \+w wine|strong="G3631"\+w* \+w into|strong="G1519"\+w* \+w fresh|strong="G2537"\+w* wineskins, \+w and|strong="G2532"\+w* \+w both|strong="G2532"\+w* \+w are|strong="G3588"\+w* \+w preserved|strong="G4933"\+w*.”\wj* +\p +\v 18 \w While|strong="G2980"\w* \w he|strong="G2532"\w* \w told|strong="G3004"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \w behold|strong="G2400"\w*, \w a|strong="G2532"\w* ruler \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w worshiped|strong="G4352"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w My|strong="G3708"\w* \w daughter|strong="G2364"\w* \w has|strong="G3778"\w* \w just|strong="G2532"\w* \w died|strong="G5053"\w*, \w but|strong="G2532"\w* \w come|strong="G2064"\w* \w and|strong="G2532"\w* \w lay|strong="G2007"\w* \w your|strong="G2532"\w* \w hand|strong="G5495"\w* \w on|strong="G1909"\w* \w her|strong="G1438"\w*, \w and|strong="G2532"\w* \w she|strong="G2532"\w* \w will|strong="G2532"\w* \w live|strong="G2198"\w*.” +\p +\v 19 \w Jesus|strong="G2424"\w* \w got|strong="G1453"\w* \w up|strong="G1453"\w* \w and|strong="G2532"\w* followed \w him|strong="G3588"\w*, \w as|strong="G2532"\w* \w did|strong="G2532"\w* \w his|strong="G2532"\w* \w disciples|strong="G3101"\w*. +\v 20 \w Behold|strong="G2400"\w*, \w a|strong="G2532"\w* \w woman|strong="G1135"\w* \w who|strong="G3588"\w* \w had|strong="G2532"\w* \w a|strong="G2532"\w* discharge \w of|strong="G2532"\w* blood \w for|strong="G2532"\w* \w twelve|strong="G1427"\w* \w years|strong="G2094"\w* \w came|strong="G4334"\w* \w behind|strong="G3693"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* touched \w the|strong="G2532"\w* \w fringe|strong="G2899"\w*\f + \fr 9:20 \ft or, tassel\f* \w of|strong="G2532"\w* \w his|strong="G3708"\w* \w garment|strong="G2440"\w*; +\v 21 \w for|strong="G1063"\w* \w she|strong="G1437"\w* \w said|strong="G3004"\w* \w within|strong="G1722"\w* \w herself|strong="G1438"\w*, “\w If|strong="G1437"\w* \w I|strong="G1063"\w* \w just|strong="G3440"\w* touch \w his|strong="G1438"\w* \w garment|strong="G2440"\w*, \w I|strong="G1063"\w* \w will|strong="G3004"\w* \w be|strong="G3588"\w* \w made|strong="G4982"\w* \w well|strong="G4982"\w*.” +\p +\v 22 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w*, \w turning|strong="G4762"\w* around \w and|strong="G2532"\w* \w seeing|strong="G3708"\w* \w her|strong="G1438"\w*, \w said|strong="G3004"\w*, \wj “\+w Daughter|strong="G2364"\+w*, cheer \+w up|strong="G2532"\+w*! \+w Your|strong="G2532"\+w* \+w faith|strong="G4102"\+w* \+w has|strong="G4102"\+w* \+w made|strong="G4982"\+w* \+w you|strong="G4771"\+w* \+w well|strong="G4982"\+w*.”\wj* \w And|strong="G2532"\w* \w the|strong="G2532"\w* \w woman|strong="G1135"\w* \w was|strong="G3588"\w* \w made|strong="G4982"\w* \w well|strong="G4982"\w* \w from|strong="G2532"\w* \w that|strong="G3588"\w* \w hour|strong="G5610"\w*. +\p +\v 23 \w When|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w came|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* ruler’s \w house|strong="G3614"\w* \w and|strong="G2532"\w* \w saw|strong="G3708"\w* \w the|strong="G2532"\w* flute players \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w crowd|strong="G3793"\w* \w in|strong="G1519"\w* \w noisy|strong="G2350"\w* \w disorder|strong="G2350"\w*, +\v 24 \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Make|strong="G2532"\+w* room, \+w because|strong="G1063"\+w* \+w the|strong="G2532"\+w* \+w girl|strong="G2877"\+w* isn’\+w t|strong="G3588"\+w* dead, \+w but|strong="G2532"\+w* \+w sleeping|strong="G2518"\+w*.”\wj* +\p \w They|strong="G2532"\w* \w were|strong="G3588"\w* ridiculing \w him|strong="G3588"\w*. +\v 25 \w But|strong="G1161"\w* \w when|strong="G3753"\w* \w the|strong="G2532"\w* \w crowd|strong="G3793"\w* \w was|strong="G3588"\w* \w sent|strong="G1544"\w* \w out|strong="G1544"\w*, \w he|strong="G2532"\w* \w entered|strong="G1525"\w* \w in|strong="G1525"\w*, \w took|strong="G2902"\w* \w her|strong="G3588"\w* \w by|strong="G2532"\w* \w the|strong="G2532"\w* \w hand|strong="G5495"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w girl|strong="G2877"\w* \w arose|strong="G1453"\w*. +\v 26 \w The|strong="G2532"\w* report \w of|strong="G2532"\w* \w this|strong="G3778"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w into|strong="G1519"\w* \w all|strong="G3650"\w* \w that|strong="G3588"\w* \w land|strong="G1093"\w*. +\p +\v 27 \w As|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w passed|strong="G2424"\w* \w by|strong="G2532"\w* \w from|strong="G2532"\w* \w there|strong="G2532"\w*, \w two|strong="G1417"\w* \w blind|strong="G5185"\w* \w men|strong="G5185"\w* followed \w him|strong="G3588"\w*, \w calling|strong="G3004"\w* \w out|strong="G2896"\w* \w and|strong="G2532"\w* \w saying|strong="G3004"\w*, “\w Have|strong="G2532"\w* \w mercy|strong="G1653"\w* \w on|strong="G1653"\w* \w us|strong="G3004"\w*, \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w David|strong="G1138"\w*!” +\v 28 \w When|strong="G1161"\w* \w he|strong="G2532"\w* \w had|strong="G2424"\w* \w come|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w house|strong="G3614"\w*, \w the|strong="G2532"\w* \w blind|strong="G5185"\w* \w men|strong="G3778"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*. \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Do|strong="G4160"\+w* \+w you|strong="G3754"\+w* \+w believe|strong="G4100"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G2532"\+w* \+w am|strong="G2532"\+w* \+w able|strong="G1410"\+w* \+w to|strong="G1519"\+w* \+w do|strong="G4160"\+w* \+w this|strong="G3778"\+w*?”\wj* +\p \w They|strong="G2532"\w* \w told|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Yes|strong="G3483"\w*, \w Lord|strong="G2962"\w*.” +\p +\v 29 \w Then|strong="G5119"\w* \w he|strong="G3588"\w* \w touched|strong="G5119"\w* \w their|strong="G2596"\w* \w eyes|strong="G3788"\w*, \w saying|strong="G3004"\w*, \wj “\+w According|strong="G2596"\+w* \+w to|strong="G2596"\+w* \+w your|strong="G3588"\+w* \+w faith|strong="G4102"\+w* \+w be|strong="G1096"\+w* \+w it|strong="G5119"\+w* \+w done|strong="G1096"\+w* \+w to|strong="G2596"\+w* \+w you|strong="G5210"\+w*.”\wj* +\v 30 \w Then|strong="G2532"\w* \w their|strong="G2532"\w* \w eyes|strong="G3788"\w* \w were|strong="G3588"\w* opened. \w Jesus|strong="G2424"\w* strictly commanded \w them|strong="G3588"\w*, \w saying|strong="G3004"\w*, \wj “\+w See|strong="G3708"\+w* \+w that|strong="G3588"\+w* \+w no|strong="G3367"\+w* \+w one|strong="G3367"\+w* \+w knows|strong="G1097"\+w* \+w about|strong="G2424"\+w* \+w this|strong="G3588"\+w*.”\wj* +\v 31 \w But|strong="G1161"\w* \w they|strong="G1161"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w and|strong="G1161"\w* \w spread|strong="G1831"\w* \w abroad|strong="G1831"\w* \w his|strong="G1722"\w* \w fame|strong="G1310"\w* \w in|strong="G1722"\w* \w all|strong="G3650"\w* \w that|strong="G3588"\w* \w land|strong="G1093"\w*. +\p +\v 32 \w As|strong="G1161"\w* \w they|strong="G1161"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w*, \w behold|strong="G2400"\w*, \w a|strong="G3708"\w* \w mute|strong="G2974"\w* \w man|strong="G2974"\w* \w who|strong="G2974"\w* \w was|strong="G1161"\w* demon possessed \w was|strong="G1161"\w* \w brought|strong="G4374"\w* \w to|strong="G1161"\w* \w him|strong="G3708"\w*. +\v 33 \w When|strong="G2532"\w* \w the|strong="G1722"\w* \w demon|strong="G1140"\w* \w was|strong="G3588"\w* \w cast|strong="G1544"\w* \w out|strong="G1544"\w*, \w the|strong="G1722"\w* \w mute|strong="G2974"\w* \w man|strong="G2974"\w* \w spoke|strong="G2980"\w*. \w The|strong="G1722"\w* \w multitudes|strong="G3793"\w* \w marveled|strong="G2296"\w*, \w saying|strong="G3004"\w*, “\w Nothing|strong="G3763"\w* \w like|strong="G3779"\w* \w this|strong="G3588"\w* \w has|strong="G2532"\w* \w ever|strong="G3763"\w* \w been|strong="G2532"\w* \w seen|strong="G5316"\w* \w in|strong="G1722"\w* \w Israel|strong="G2474"\w*!” +\p +\v 34 \w But|strong="G1161"\w* \w the|strong="G1722"\w* \w Pharisees|strong="G5330"\w* \w said|strong="G3004"\w*, “\w By|strong="G1722"\w* \w the|strong="G1722"\w* prince \w of|strong="G1722"\w* \w the|strong="G1722"\w* \w demons|strong="G1140"\w*, \w he|strong="G1161"\w* \w casts|strong="G1544"\w* \w out|strong="G1544"\w* \w demons|strong="G1140"\w*.” +\p +\v 35 \w Jesus|strong="G2424"\w* \w went|strong="G2424"\w* \w about|strong="G1722"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w cities|strong="G4172"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w villages|strong="G2968"\w*, \w teaching|strong="G1321"\w* \w in|strong="G1722"\w* \w their|strong="G2532"\w* \w synagogues|strong="G4864"\w* \w and|strong="G2532"\w* \w preaching|strong="G2784"\w* \w the|strong="G1722"\w* \w Good|strong="G3956"\w* \w News|strong="G2098"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* Kingdom, \w and|strong="G2532"\w* \w healing|strong="G2323"\w* \w every|strong="G3956"\w* \w disease|strong="G3119"\w* \w and|strong="G2532"\w* \w every|strong="G3956"\w* \w sickness|strong="G3119"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w people|strong="G3956"\w*. +\v 36 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w*, \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w moved|strong="G4697"\w* \w with|strong="G2532"\w* \w compassion|strong="G4697"\w* \w for|strong="G3754"\w* \w them|strong="G3588"\w* \w because|strong="G3754"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* harassed\f + \fr 9:36 \ft TR reads “weary” instead of “harassed” \f* \w and|strong="G2532"\w* \w scattered|strong="G3588"\w*, \w like|strong="G5616"\w* \w sheep|strong="G4263"\w* \w without|strong="G3361"\w* \w a|strong="G2192"\w* \w shepherd|strong="G4166"\w*. +\v 37 \w Then|strong="G5119"\w* \w he|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w his|strong="G3588"\w* \w disciples|strong="G3101"\w*, \wj “\+w The|strong="G1161"\+w* \+w harvest|strong="G2326"\+w* \+w indeed|strong="G3303"\+w* \+w is|strong="G3588"\+w* \+w plentiful|strong="G4183"\+w*, \+w but|strong="G1161"\+w* \+w the|strong="G1161"\+w* \+w laborers|strong="G2040"\+w* \+w are|strong="G3588"\+w* \+w few|strong="G3641"\+w*. \wj* +\v 38 \wj \+w Pray|strong="G1189"\+w* \+w therefore|strong="G3767"\+w* \+w that|strong="G3588"\+w* \+w the|strong="G1519"\+w* \+w Lord|strong="G2962"\+w* \+w of|strong="G2962"\+w* \+w the|strong="G1519"\+w* \+w harvest|strong="G2326"\+w* \+w will|strong="G2962"\+w* \+w send|strong="G1544"\+w* \+w out|strong="G1544"\+w* \+w laborers|strong="G2040"\+w* \+w into|strong="G1519"\+w* \+w his|strong="G1519"\+w* \+w harvest|strong="G2326"\+w*.”\wj* +\c 10 +\p +\v 1 \w He|strong="G2532"\w* \w called|strong="G4341"\w* \w to|strong="G2532"\w* himself \w his|strong="G3956"\w* \w twelve|strong="G1427"\w* \w disciples|strong="G3101"\w*, \w and|strong="G2532"\w* \w gave|strong="G1325"\w* \w them|strong="G3588"\w* \w authority|strong="G1849"\w* \w over|strong="G1849"\w* unclean \w spirits|strong="G4151"\w*, \w to|strong="G2532"\w* \w cast|strong="G1544"\w* \w them|strong="G3588"\w* \w out|strong="G1544"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w heal|strong="G2323"\w* \w every|strong="G3956"\w* \w disease|strong="G3119"\w* \w and|strong="G2532"\w* \w every|strong="G3956"\w* \w sickness|strong="G3119"\w*. +\v 2 \w Now|strong="G1161"\w* \w the|strong="G2532"\w* \w names|strong="G3686"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w twelve|strong="G1427"\w* apostles \w are|strong="G1510"\w* \w these|strong="G3778"\w*. \w The|strong="G2532"\w* \w first|strong="G4413"\w*, \w Simon|strong="G4613"\w*, \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w called|strong="G3004"\w* \w Peter|strong="G4074"\w*; Andrew, \w his|strong="G2532"\w* brother; \w James|strong="G2385"\w* \w the|strong="G2532"\w* son \w of|strong="G2532"\w* \w Zebedee|strong="G2199"\w*; \w John|strong="G2491"\w*, \w his|strong="G2532"\w* brother; +\v 3 \w Philip|strong="G5376"\w*; Bartholomew; \w Thomas|strong="G2381"\w*; \w Matthew|strong="G3156"\w* \w the|strong="G2532"\w* \w tax|strong="G5057"\w* \w collector|strong="G5057"\w*; \w James|strong="G2385"\w* \w the|strong="G2532"\w* son \w of|strong="G2532"\w* Alphaeus; \w Lebbaeus|strong="G3002"\w*, \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w also|strong="G2532"\w* \w called|strong="G3588"\w*\f + \fr 10:3 \ft NU omits “Lebbaeus, who was also called”\f* \w Thaddaeus|strong="G2280"\w*; +\v 4 \w Simon|strong="G4613"\w* \w the|strong="G2532"\w* \w Zealot|strong="G2581"\w*; \w and|strong="G2532"\w* \w Judas|strong="G2455"\w* \w Iscariot|strong="G2469"\w*, \w who|strong="G3588"\w* \w also|strong="G2532"\w* \w betrayed|strong="G3860"\w* \w him|strong="G3588"\w*. +\p +\v 5 \w Jesus|strong="G2424"\w* \w sent|strong="G2532"\w* \w these|strong="G3778"\w* \w twelve|strong="G1427"\w* \w out|strong="G2532"\w* \w and|strong="G2532"\w* \w commanded|strong="G3853"\w* \w them|strong="G3588"\w*, \w saying|strong="G3004"\w*, \wj “Don’\+w t|strong="G3588"\+w* \+w go|strong="G1525"\+w* \+w among|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w Gentiles|strong="G1484"\+w*, \+w and|strong="G2532"\+w* don’\+w t|strong="G3588"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w any|strong="G3361"\+w* \+w city|strong="G4172"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Samaritans|strong="G4541"\+w*. \wj* +\v 6 \wj \+w Rather|strong="G3123"\+w*, \+w go|strong="G4198"\+w* \+w to|strong="G4314"\+w* \+w the|strong="G1161"\+w* lost \+w sheep|strong="G4263"\+w* \+w of|strong="G3624"\+w* \+w the|strong="G1161"\+w* \+w house|strong="G3624"\+w* \+w of|strong="G3624"\+w* \+w Israel|strong="G2474"\+w*. \wj* +\v 7 \wj \+w As|strong="G1161"\+w* \+w you|strong="G3754"\+w* \+w go|strong="G4198"\+w*, \+w preach|strong="G2784"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w The|strong="G1161"\+w* Kingdom \+w of|strong="G3588"\+w* \+w Heaven|strong="G3772"\+w* \+w is|strong="G3588"\+w* \+w at|strong="G1161"\+w* \+w hand|strong="G1448"\+w*!’ \wj* +\v 8 \wj \+w Heal|strong="G2323"\+w* \+w the|strong="G2983"\+w* sick, \+w cleanse|strong="G2511"\+w* \+w the|strong="G2983"\+w* \+w lepers|strong="G3015"\+w*,\wj*\f + \fr 10:8 \ft TR adds “raise the dead,”\f* \wj \+w and|strong="G2983"\+w* \+w cast|strong="G1544"\+w* \+w out|strong="G1544"\+w* \+w demons|strong="G1140"\+w*. \+w Freely|strong="G1432"\+w* \+w you|strong="G1325"\+w* \+w received|strong="G2983"\+w*, so \+w freely|strong="G1432"\+w* \+w give|strong="G1325"\+w*. \wj* +\v 9 \wj Don’\+w t|strong="G3588"\+w* \+w take|strong="G2932"\+w* \+w any|strong="G3361"\+w* \+w gold|strong="G5557"\+w*, silver, \+w or|strong="G3366"\+w* \+w brass|strong="G5475"\+w* \+w in|strong="G1519"\+w* \+w your|strong="G3366"\+w* \+w money|strong="G5475"\+w* \+w belts|strong="G2223"\+w*. \wj* +\v 10 \wj Take \+w no|strong="G3361"\+w* \+w bag|strong="G4082"\+w* \+w for|strong="G1063"\+w* \+w your|strong="G3366"\+w* \+w journey|strong="G3598"\+w*, \+w neither|strong="G3366"\+w* \+w two|strong="G1417"\+w* \+w coats|strong="G5509"\+w*, \+w nor|strong="G3366"\+w* \+w sandals|strong="G5266"\+w*, \+w nor|strong="G3366"\+w* \+w staff|strong="G4464"\+w*: \+w for|strong="G1063"\+w* \+w the|strong="G1519"\+w* \+w laborer|strong="G2040"\+w* \+w is|strong="G3588"\+w* worthy \+w of|strong="G3598"\+w* \+w his|strong="G1519"\+w* \+w food|strong="G5160"\+w*. \wj* +\v 11 \wj \+w Into|strong="G1519"\+w* \+w whatever|strong="G3739"\+w* \+w city|strong="G4172"\+w* \+w or|strong="G2228"\+w* \+w village|strong="G2968"\+w* \+w you|strong="G3739"\+w* \+w enter|strong="G1525"\+w*, find \+w out|strong="G1831"\+w* \+w who|strong="G3739"\+w* \+w in|strong="G1722"\+w* \+w it|strong="G1161"\+w* \+w is|strong="G1510"\+w* worthy, \+w and|strong="G1161"\+w* \+w stay|strong="G3306"\+w* \+w there|strong="G1161"\+w* \+w until|strong="G2193"\+w* \+w you|strong="G3739"\+w* \+w go|strong="G1831"\+w* \+w on|strong="G1722"\+w*. \wj* +\v 12 \wj \+w As|strong="G1519"\+w* \+w you|strong="G1438"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w household|strong="G3614"\+w*, greet \+w it|strong="G1161"\+w*. \wj* +\v 13 \wj \+w If|strong="G1437"\+w* \+w the|strong="G2532"\+w* \+w household|strong="G3614"\+w* \+w is|strong="G1510"\+w* worthy, \+w let|strong="G1161"\+w* \+w your|strong="G1437"\+w* \+w peace|strong="G1515"\+w* \+w come|strong="G2064"\+w* \+w on|strong="G1909"\+w* \+w it|strong="G2532"\+w*, \+w but|strong="G1161"\+w* \+w if|strong="G1437"\+w* \+w it|strong="G2532"\+w* isn’\+w t|strong="G3588"\+w* worthy, \+w let|strong="G1161"\+w* \+w your|strong="G1437"\+w* \+w peace|strong="G1515"\+w* \+w return|strong="G1994"\+w* \+w to|strong="G4314"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 14 \wj \+w Whoever|strong="G3739"\+w* doesn’\+w t|strong="G3588"\+w* \+w receive|strong="G1209"\+w* \+w you|strong="G5210"\+w* \+w or|strong="G2228"\+w* hear \+w your|strong="G2532"\+w* \+w words|strong="G3056"\+w*, \+w as|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w go|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w of|strong="G1537"\+w* \+w that|strong="G3739"\+w* \+w house|strong="G3614"\+w* \+w or|strong="G2228"\+w* \+w that|strong="G3739"\+w* \+w city|strong="G4172"\+w*, \+w shake|strong="G1621"\+w* \+w the|strong="G2532"\+w* \+w dust|strong="G2868"\+w* \+w off|strong="G1621"\+w* \+w your|strong="G2532"\+w* \+w feet|strong="G4228"\+w*. \wj* +\v 15 \wj Most \+w certainly|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w it|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w more|strong="G2532"\+w* tolerable \+w for|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w land|strong="G1093"\+w* \+w of|strong="G2250"\+w* \+w Sodom|strong="G4670"\+w* \+w and|strong="G2532"\+w* \+w Gomorrah|strong="G1116"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w day|strong="G2250"\+w* \+w of|strong="G2250"\+w* \+w judgment|strong="G2920"\+w* \+w than|strong="G2228"\+w* \+w for|strong="G1722"\+w* \+w that|strong="G3588"\+w* \+w city|strong="G4172"\+w*.\wj* +\p +\v 16 \wj “\+w Behold|strong="G2400"\+w*, \+w I|strong="G1473"\+w* send \+w you|strong="G5210"\+w* \+w out|strong="G2532"\+w* \+w as|strong="G5613"\+w* \+w sheep|strong="G4263"\+w* \+w among|strong="G1722"\+w* \+w wolves|strong="G3074"\+w*. \+w Therefore|strong="G3767"\+w* \+w be|strong="G1096"\+w* \+w wise|strong="G5429"\+w* \+w as|strong="G5613"\+w* \+w serpents|strong="G3789"\+w* \+w and|strong="G2532"\+w* harmless \+w as|strong="G5613"\+w* \+w doves|strong="G4058"\+w*. \wj* +\v 17 \wj \+w But|strong="G1161"\+w* \+w beware|strong="G4337"\+w* \+w of|strong="G2532"\+w* \+w men|strong="G3588"\+w*, \+w for|strong="G1063"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w deliver|strong="G3860"\+w* \+w you|strong="G5210"\+w* \+w up|strong="G3860"\+w* \+w to|strong="G1519"\+w* \+w councils|strong="G4892"\+w*, \+w and|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w their|strong="G2532"\+w* \+w synagogues|strong="G4864"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w scourge|strong="G3146"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 18 \wj \+w Yes|strong="G1161"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w brought|strong="G1161"\+w* \+w before|strong="G1909"\+w* \+w governors|strong="G2232"\+w* \+w and|strong="G2532"\+w* \+w kings|strong="G3588"\+w* \+w for|strong="G1519"\+w* \+w my|strong="G1473"\+w* \+w sake|strong="G1752"\+w*, \+w for|strong="G1519"\+w* \+w a|strong="G2532"\+w* \+w testimony|strong="G3142"\+w* \+w to|strong="G1519"\+w* \+w them|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w nations|strong="G1484"\+w*. \wj* +\v 19 \wj \+w But|strong="G1161"\+w* \+w when|strong="G3752"\+w* \+w they|strong="G1161"\+w* \+w deliver|strong="G3860"\+w* \+w you|strong="G5210"\+w* \+w up|strong="G3860"\+w*, don’\+w t|strong="G3588"\+w* \+w be|strong="G3361"\+w* \+w anxious|strong="G3309"\+w* \+w how|strong="G4459"\+w* \+w or|strong="G2228"\+w* \+w what|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G5101"\+w* \+w say|strong="G2980"\+w*, \+w for|strong="G1063"\+w* \+w it|strong="G1161"\+w* \+w will|strong="G5101"\+w* \+w be|strong="G3361"\+w* \+w given|strong="G1325"\+w* \+w you|strong="G5210"\+w* \+w in|strong="G1722"\+w* \+w that|strong="G3588"\+w* \+w hour|strong="G5610"\+w* \+w what|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G5101"\+w* \+w say|strong="G2980"\+w*. \wj* +\v 20 \wj \+w For|strong="G1063"\+w* \+w it|strong="G1063"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w you|strong="G5210"\+w* \+w who|strong="G3588"\+w* \+w speak|strong="G2980"\+w*, \+w but|strong="G1063"\+w* \+w the|strong="G1722"\+w* \+w Spirit|strong="G4151"\+w* \+w of|strong="G4151"\+w* \+w your|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3588"\+w* \+w speaks|strong="G2980"\+w* \+w in|strong="G1722"\+w* \+w you|strong="G5210"\+w*.\wj* +\p +\v 21 \wj “Brother \+w will|strong="G2532"\+w* \+w deliver|strong="G3860"\+w* \+w up|strong="G3860"\+w* brother \+w to|strong="G1519"\+w* \+w death|strong="G2288"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w father|strong="G3962"\+w* \+w his|strong="G1438"\+w* \+w child|strong="G5043"\+w*. \+w Children|strong="G5043"\+w* \+w will|strong="G2532"\+w* \+w rise|strong="G1881"\+w* \+w up|strong="G3860"\+w* \+w against|strong="G1909"\+w* \+w parents|strong="G1118"\+w* \+w and|strong="G2532"\+w* \+w cause|strong="G2289"\+w* \+w them|strong="G1438"\+w* \+w to|strong="G1519"\+w* \+w be|strong="G2532"\+w* \+w put|strong="G2289"\+w* \+w to|strong="G1519"\+w* \+w death|strong="G2288"\+w*. \wj* +\v 22 \wj \+w You|strong="G1510"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w hated|strong="G3404"\+w* \+w by|strong="G1223"\+w* \+w all|strong="G3956"\+w* \+w men|strong="G3956"\+w* \+w for|strong="G1519"\+w* \+w my|strong="G3956"\+w* \+w name|strong="G3686"\+w*’s \+w sake|strong="G1223"\+w*, \+w but|strong="G1161"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w endures|strong="G5278"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w end|strong="G5056"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w saved|strong="G4982"\+w*. \wj* +\v 23 \wj \+w But|strong="G1161"\+w* \+w when|strong="G3752"\+w* \+w they|strong="G1161"\+w* \+w persecute|strong="G1377"\+w* \+w you|strong="G5210"\+w* \+w in|strong="G1722"\+w* \+w this|strong="G3778"\+w* \+w city|strong="G4172"\+w*, \+w flee|strong="G5343"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1722"\+w* \+w next|strong="G2087"\+w*, \+w for|strong="G1063"\+w* most \+w certainly|strong="G1063"\+w* \+w I|strong="G1161"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w you|strong="G5210"\+w* \+w will|strong="G3778"\+w* \+w not|strong="G3756"\+w* \+w have|strong="G5210"\+w* gone \+w through|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w cities|strong="G4172"\+w* \+w of|strong="G5207"\+w* \+w Israel|strong="G2474"\+w* \+w until|strong="G2193"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3778"\+w* \+w has|strong="G3778"\+w* \+w come|strong="G2064"\+w*.\wj* +\p +\v 24 \wj “\+w A|strong="G1510"\+w* \+w disciple|strong="G3101"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w above|strong="G5228"\+w* \+w his|strong="G5228"\+w* \+w teacher|strong="G1320"\+w*, \+w nor|strong="G3761"\+w* \+w a|strong="G1510"\+w* \+w servant|strong="G1401"\+w* \+w above|strong="G5228"\+w* \+w his|strong="G5228"\+w* \+w lord|strong="G2962"\+w*. \wj* +\v 25 \wj \+w It|strong="G2532"\+w* \+w is|strong="G3588"\+w* enough \+w for|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w disciple|strong="G3101"\+w* \+w that|strong="G2443"\+w* \+w he|strong="G2532"\+w* \+w be|strong="G1096"\+w* \+w like|strong="G5613"\+w* \+w his|strong="G2532"\+w* \+w teacher|strong="G1320"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w servant|strong="G1401"\+w* \+w like|strong="G5613"\+w* \+w his|strong="G2532"\+w* \+w lord|strong="G2962"\+w*. \+w If|strong="G1487"\+w* \+w they|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w called|strong="G1941"\+w* \+w the|strong="G2532"\+w* \+w master|strong="G2962"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w house|strong="G3617"\+w* Beelzebul,\wj*\f + \fr 10:25 \ft Literally, Lord of the Flies, or the devil\f* \wj \+w how|strong="G5613"\+w* \+w much|strong="G4214"\+w* \+w more|strong="G3123"\+w* \+w those|strong="G3588"\+w* \+w of|strong="G2532"\+w* \+w his|strong="G2532"\+w* \+w household|strong="G3615"\+w*! \wj* +\v 26 \wj \+w Therefore|strong="G3767"\+w* don’t \+w be|strong="G1510"\+w* \+w afraid|strong="G5399"\+w* \+w of|strong="G2532"\+w* \+w them|strong="G1438"\+w*, \+w for|strong="G1063"\+w* \+w there|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w nothing|strong="G3762"\+w* \+w covered|strong="G2572"\+w* \+w that|strong="G3739"\+w* \+w will|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G1510"\+w* revealed, \+w or|strong="G2532"\+w* \+w hidden|strong="G2927"\+w* \+w that|strong="G3739"\+w* \+w will|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G1510"\+w* \+w known|strong="G1097"\+w*. \wj* +\v 27 \wj \+w What|strong="G3739"\+w* \+w I|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w darkness|strong="G4653"\+w*, \+w speak|strong="G3004"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w light|strong="G5457"\+w*; \+w and|strong="G2532"\+w* \+w what|strong="G3739"\+w* \+w you|strong="G5210"\+w* hear whispered \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w ear|strong="G3775"\+w*, \+w proclaim|strong="G2784"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G1722"\+w* \+w housetops|strong="G1430"\+w*. \wj* +\v 28 \wj Don’\+w t|strong="G3588"\+w* \+w be|strong="G2532"\+w* \+w afraid|strong="G5399"\+w* \+w of|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* kill \+w the|strong="G1722"\+w* \+w body|strong="G4983"\+w*, \+w but|strong="G1161"\+w* \+w are|strong="G3588"\+w* \+w not|strong="G3361"\+w* \+w able|strong="G1410"\+w* \+w to|strong="G2532"\+w* kill \+w the|strong="G1722"\+w* \+w soul|strong="G5590"\+w*. \+w Rather|strong="G3123"\+w*, \+w fear|strong="G5399"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w able|strong="G1410"\+w* \+w to|strong="G2532"\+w* destroy \+w both|strong="G2532"\+w* \+w soul|strong="G5590"\+w* \+w and|strong="G2532"\+w* \+w body|strong="G4983"\+w* \+w in|strong="G1722"\+w* Gehenna.\wj*\f + \fr 10:28 \ft or, Hell.\f* +\p +\v 29 \wj “Aren’\+w t|strong="G3588"\+w* \+w two|strong="G1417"\+w* \+w sparrows|strong="G4765"\+w* \+w sold|strong="G4453"\+w* \+w for|strong="G1909"\+w* \+w an|strong="G2532"\+w* assarion coin?\wj*\f + \fr 10:29 \ft An assarion is a small coin worth one tenth of a drachma or a sixteenth of a denarius. An assarion is approximately the wages of one half hour of agricultural labor.\f* \wj \+w Not|strong="G3756"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G1537"\+w* \+w them|strong="G3588"\+w* \+w falls|strong="G4098"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w ground|strong="G1093"\+w* apart \+w from|strong="G1537"\+w* \+w your|strong="G2532"\+w* \+w Father|strong="G3962"\+w*’s \+w will|strong="G2532"\+w*. \wj* +\v 30 \wj \+w But|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w very|strong="G2532"\+w* \+w hairs|strong="G2359"\+w* \+w of|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w head|strong="G2776"\+w* \+w are|strong="G1510"\+w* \+w all|strong="G3956"\+w* numbered. \wj* +\v 31 \wj \+w Therefore|strong="G3767"\+w* don’t \+w be|strong="G3361"\+w* \+w afraid|strong="G5399"\+w*. \+w You|strong="G5210"\+w* \+w are|strong="G4183"\+w* \+w of|strong="G5399"\+w* \+w more|strong="G4183"\+w* value \+w than|strong="G4183"\+w* \+w many|strong="G4183"\+w* \+w sparrows|strong="G4765"\+w*. \wj* +\v 32 \wj \+w Everyone|strong="G3956"\+w* \+w therefore|strong="G3767"\+w* \+w who|strong="G3588"\+w* \+w confesses|strong="G3670"\+w* \+w me|strong="G1473"\+w* \+w before|strong="G1715"\+w* \+w men|strong="G3956"\+w*, \+w I|strong="G1473"\+w* \+w will|strong="G1473"\+w* \+w also|strong="G2504"\+w* \+w confess|strong="G3670"\+w* \+w him|strong="G3588"\+w* \+w before|strong="G1715"\+w* \+w my|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*. \wj* +\v 33 \wj \+w But|strong="G1161"\+w* \+w whoever|strong="G3748"\+w* denies \+w me|strong="G1473"\+w* \+w before|strong="G1715"\+w* \+w men|strong="G3588"\+w*, \+w I|strong="G1473"\+w* \+w will|strong="G1473"\+w* \+w also|strong="G2504"\+w* \+w deny|strong="G3588"\+w* \+w him|strong="G3588"\+w* \+w before|strong="G1715"\+w* \+w my|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*.\wj* +\p +\v 34 \wj “Don’\+w t|strong="G3588"\+w* \+w think|strong="G3543"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G3754"\+w* \+w came|strong="G2064"\+w* \+w to|strong="G1909"\+w* send \+w peace|strong="G1515"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G1909"\+w* \+w earth|strong="G1093"\+w*. \+w I|strong="G3754"\+w* didn’\+w t|strong="G3588"\+w* \+w come|strong="G2064"\+w* \+w to|strong="G1909"\+w* send \+w peace|strong="G1515"\+w*, \+w but|strong="G3361"\+w* \+w a|strong="G1909"\+w* \+w sword|strong="G3162"\+w*. \wj* +\v 35 \wj \+w For|strong="G1063"\+w* \+w I|strong="G2532"\+w* \+w came|strong="G2064"\+w* \+w to|strong="G2532"\+w* \+w set|strong="G2532"\+w* \+w a|strong="G2532"\+w* man \+w at|strong="G2596"\+w* odds \+w against|strong="G2596"\+w* \+w his|strong="G2532"\+w* \+w father|strong="G3962"\+w*, \+w and|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w daughter|strong="G2364"\+w* \+w against|strong="G2596"\+w* \+w her|strong="G2596"\+w* \+w mother|strong="G3384"\+w*, \+w and|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w daughter-in-law|strong="G3565"\+w* \+w against|strong="G2596"\+w* \+w her|strong="G2596"\+w* \+w mother-in-law|strong="G3994"\+w*. \wj* +\v 36 \wj \+w A|strong="G2532"\+w* man’s \+w foes|strong="G2190"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w of|strong="G2532"\+w* \+w his|strong="G2532"\+w* own \+w household|strong="G3615"\+w*.\wj*\x + \xo 10:36 \xt Micah 7:6\x* +\v 37 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w loves|strong="G5368"\+w* \+w father|strong="G3962"\+w* \+w or|strong="G2228"\+w* \+w mother|strong="G3384"\+w* \+w more|strong="G5228"\+w* \+w than|strong="G2228"\+w* \+w me|strong="G1473"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* worthy \+w of|strong="G5207"\+w* \+w me|strong="G1473"\+w*; \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w loves|strong="G5368"\+w* \+w son|strong="G5207"\+w* \+w or|strong="G2228"\+w* \+w daughter|strong="G2364"\+w* \+w more|strong="G5228"\+w* \+w than|strong="G2228"\+w* \+w me|strong="G1473"\+w* isn’\+w t|strong="G3588"\+w* worthy \+w of|strong="G5207"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 38 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3739"\+w* doesn’\+w t|strong="G3588"\+w* \+w take|strong="G2983"\+w* \+w his|strong="G2983"\+w* \+w cross|strong="G4716"\+w* \+w and|strong="G2532"\+w* \+w follow|strong="G3694"\+w* \+w after|strong="G3694"\+w* \+w me|strong="G1473"\+w* isn’\+w t|strong="G3588"\+w* worthy \+w of|strong="G2532"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 39 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* seeks \+w his|strong="G1438"\+w* \+w life|strong="G5590"\+w* \+w will|strong="G2532"\+w* lose \+w it|strong="G2532"\+w*; \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* loses \+w his|strong="G1438"\+w* \+w life|strong="G5590"\+w* \+w for|strong="G1752"\+w* \+w my|strong="G1473"\+w* \+w sake|strong="G1752"\+w* \+w will|strong="G2532"\+w* \+w find|strong="G2147"\+w* \+w it|strong="G2532"\+w*. \wj* +\p +\v 40 \wj “\+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w receives|strong="G1209"\+w* \+w you|strong="G5210"\+w* \+w receives|strong="G1209"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w receives|strong="G1209"\+w* \+w me|strong="G1473"\+w* \+w receives|strong="G1209"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w sent|strong="G2532"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 41 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w receives|strong="G2983"\+w* \+w a|strong="G2532"\+w* \+w prophet|strong="G4396"\+w* \+w in|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w name|strong="G3686"\+w* \+w of|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w prophet|strong="G4396"\+w* \+w will|strong="G2532"\+w* \+w receive|strong="G2983"\+w* \+w a|strong="G2532"\+w* \+w prophet|strong="G4396"\+w*’s \+w reward|strong="G3408"\+w*. \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w receives|strong="G2983"\+w* \+w a|strong="G2532"\+w* \+w righteous|strong="G1342"\+w* \+w man|strong="G1342"\+w* \+w in|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w name|strong="G3686"\+w* \+w of|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w righteous|strong="G1342"\+w* \+w man|strong="G1342"\+w* \+w will|strong="G2532"\+w* \+w receive|strong="G2983"\+w* \+w a|strong="G2532"\+w* \+w righteous|strong="G1342"\+w* \+w man|strong="G1342"\+w*’s \+w reward|strong="G3408"\+w*. \wj* +\v 42 \wj \+w Whoever|strong="G3739"\+w* \+w gives|strong="G4222"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G2532"\+w* \+w these|strong="G3778"\+w* \+w little|strong="G3398"\+w* \+w ones|strong="G3398"\+w* \+w just|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w cup|strong="G4221"\+w* \+w of|strong="G2532"\+w* \+w cold|strong="G5593"\+w* \+w water|strong="G4222"\+w* \+w to|strong="G1519"\+w* \+w drink|strong="G4222"\+w* \+w in|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w name|strong="G3686"\+w* \+w of|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w disciple|strong="G3101"\+w*, most \+w certainly|strong="G2532"\+w* \+w I|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w in|strong="G1519"\+w* \+w no|strong="G3756"\+w* \+w way|strong="G3739"\+w* lose \+w his|strong="G1519"\+w* \+w reward|strong="G3408"\+w*.”\wj* +\c 11 +\p +\v 1 \w When|strong="G3753"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* \w finished|strong="G5055"\w* directing \w his|strong="G1722"\w* \w twelve|strong="G1427"\w* \w disciples|strong="G3101"\w*, \w he|strong="G2532"\w* \w departed|strong="G3327"\w* \w from|strong="G2532"\w* \w there|strong="G2532"\w* \w to|strong="G2532"\w* \w teach|strong="G1321"\w* \w and|strong="G2532"\w* \w preach|strong="G2784"\w* \w in|strong="G1722"\w* \w their|strong="G2532"\w* \w cities|strong="G4172"\w*. +\p +\v 2 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w John|strong="G2491"\w* heard \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w prison|strong="G1201"\w* \w the|strong="G1722"\w* \w works|strong="G2041"\w* \w of|strong="G1223"\w* \w Christ|strong="G5547"\w*, \w he|strong="G1161"\w* \w sent|strong="G3992"\w* two \w of|strong="G1223"\w* \w his|strong="G1223"\w* \w disciples|strong="G3101"\w* +\v 3 \w and|strong="G2064"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Are|strong="G1510"\w* \w you|strong="G4771"\w* \w he|strong="G3588"\w* \w who|strong="G3588"\w* \w comes|strong="G2064"\w*, \w or|strong="G2228"\w* \w should|strong="G3588"\w* \w we|strong="G1510"\w* \w look|strong="G4328"\w* \w for|strong="G4328"\w* \w another|strong="G2087"\w*?” +\p +\v 4 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Go|strong="G4198"\+w* \+w and|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w John|strong="G2491"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3588"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G3739"\+w* hear \+w and|strong="G2532"\+w* see: \wj* +\v 5 \wj \+w the|strong="G2532"\+w* \+w blind|strong="G5185"\+w* receive \+w their|strong="G2532"\+w* sight, \+w the|strong="G2532"\+w* \+w lame|strong="G5560"\+w* \+w walk|strong="G4043"\+w*, \+w the|strong="G2532"\+w* \+w lepers|strong="G3015"\+w* \+w are|strong="G2532"\+w* \+w cleansed|strong="G2511"\+w*, \+w the|strong="G2532"\+w* \+w deaf|strong="G2974"\+w* hear,\wj*\x + \xo 11:5 \xt Isaiah 35:5\x* \wj \+w the|strong="G2532"\+w* \+w dead|strong="G3498"\+w* \+w are|strong="G2532"\+w* \+w raised|strong="G1453"\+w* \+w up|strong="G1453"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w poor|strong="G4434"\+w* \+w have|strong="G2532"\+w* \+w good|strong="G2097"\+w* \+w news|strong="G2097"\+w* \+w preached|strong="G2097"\+w* \+w to|strong="G2532"\+w* \+w them|strong="G2532"\+w*.\wj*\x + \xo 11:5 \xt Isaiah 61:1-4\x* +\v 6 \wj \+w Blessed|strong="G3107"\+w* \+w is|strong="G1510"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3739"\+w* finds \+w no|strong="G3361"\+w* occasion \+w for|strong="G1722"\+w* \+w stumbling|strong="G4624"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w*.”\wj* +\p +\v 7 \w As|strong="G1519"\w* \w these|strong="G3778"\w* \w went|strong="G1831"\w* \w their|strong="G4012"\w* \w way|strong="G4198"\w*, \w Jesus|strong="G2424"\w* \w began|strong="G1161"\w* \w to|strong="G1519"\w* \w say|strong="G3004"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w multitudes|strong="G3793"\w* \w concerning|strong="G4012"\w* \w John|strong="G2491"\w*, \wj “\+w What|strong="G5101"\+w* \+w did|strong="G5101"\+w* \+w you|strong="G3004"\+w* \+w go|strong="G4198"\+w* \+w out|strong="G1831"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w wilderness|strong="G2048"\+w* \+w to|strong="G1519"\+w* \+w see|strong="G2300"\+w*? \+w A|strong="G1519"\+w* \+w reed|strong="G2563"\+w* \+w shaken|strong="G4531"\+w* \+w by|strong="G5259"\+w* \+w the|strong="G1519"\+w* wind? \wj* +\v 8 \wj \+w But|strong="G3588"\+w* \+w what|strong="G5101"\+w* \+w did|strong="G5101"\+w* \+w you|strong="G1722"\+w* \+w go|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w to|strong="G1722"\+w* \+w see|strong="G3708"\+w*? \+w A|strong="G1722"\+w* \+w man|strong="G5101"\+w* \+w in|strong="G1722"\+w* \+w soft|strong="G3120"\+w* clothing? \+w Behold|strong="G2400"\+w*, \+w those|strong="G3588"\+w* \+w who|strong="G5101"\+w* \+w wear|strong="G5409"\+w* \+w soft|strong="G3120"\+w* clothing \+w are|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w kings|strong="G3588"\+w*’ \+w houses|strong="G3624"\+w*. \wj* +\v 9 \wj \+w But|strong="G2532"\+w* \+w why|strong="G5101"\+w* \+w did|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w go|strong="G1831"\+w* \+w out|strong="G1831"\+w*? \+w To|strong="G2532"\+w* \+w see|strong="G3708"\+w* \+w a|strong="G2532"\+w* \+w prophet|strong="G4396"\+w*? \+w Yes|strong="G3483"\+w*, \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w and|strong="G2532"\+w* much \+w more|strong="G2532"\+w* \+w than|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w prophet|strong="G4396"\+w*. \wj* +\v 10 \wj \+w For|strong="G4012"\+w* \+w this|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w he|strong="G3739"\+w*, \+w of|strong="G4012"\+w* \+w whom|strong="G3739"\+w* \+w it|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w written|strong="G1125"\+w*, ‘\+w Behold|strong="G2400"\+w*, \+w I|strong="G1473"\+w* send \+w my|strong="G3708"\+w* messenger \+w before|strong="G4253"\+w* \+w your|strong="G3708"\+w* \+w face|strong="G4383"\+w*, \+w who|strong="G3739"\+w* \+w will|strong="G1510"\+w* \+w prepare|strong="G2680"\+w* \+w your|strong="G3708"\+w* \+w way|strong="G3598"\+w* \+w before|strong="G4253"\+w* \+w you|strong="G4771"\+w*.’\wj*\x + \xo 11:10 \xt Malachi 3:1 \x* +\v 11 \wj Most \+w certainly|strong="G3756"\+w* \+w I|strong="G1161"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w among|strong="G1722"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G1510"\+w* \+w born|strong="G1084"\+w* \+w of|strong="G1722"\+w* \+w women|strong="G1135"\+w* \+w there|strong="G1161"\+w* \+w has|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w arisen|strong="G1453"\+w* anyone \+w greater|strong="G3173"\+w* \+w than|strong="G3173"\+w* \+w John|strong="G2491"\+w* \+w the|strong="G1722"\+w* Baptizer; \+w yet|strong="G1161"\+w* \+w he|strong="G1161"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w least|strong="G3398"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* Kingdom \+w of|strong="G1722"\+w* \+w Heaven|strong="G3772"\+w* \+w is|strong="G1510"\+w* \+w greater|strong="G3173"\+w* \+w than|strong="G3173"\+w* \+w he|strong="G1161"\+w*. \wj* +\v 12 \wj \+w From|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w days|strong="G2250"\+w* \+w of|strong="G2250"\+w* \+w John|strong="G2491"\+w* \+w the|strong="G2532"\+w* Baptizer \+w until|strong="G2193"\+w* \+w now|strong="G1161"\+w*, \+w the|strong="G2532"\+w* Kingdom \+w of|strong="G2250"\+w* \+w Heaven|strong="G3772"\+w* suffers violence, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* violent \+w take|strong="G1161"\+w* \+w it|strong="G2532"\+w* \+w by|strong="G2532"\+w* force.\wj*\f + \fr 11:12 \ft or, plunder it. \f* +\v 13 \wj \+w For|strong="G1063"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G2532"\+w* \+w prophets|strong="G4396"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w law|strong="G3551"\+w* \+w prophesied|strong="G4395"\+w* \+w until|strong="G2193"\+w* \+w John|strong="G2491"\+w*. \wj* +\v 14 \wj \+w If|strong="G1487"\+w* \+w you|strong="G1487"\+w* \+w are|strong="G1510"\+w* \+w willing|strong="G2309"\+w* \+w to|strong="G2532"\+w* \+w receive|strong="G1209"\+w* \+w it|strong="G2532"\+w*, \+w this|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w Elijah|strong="G2243"\+w*, \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w to|strong="G2532"\+w* \+w come|strong="G2064"\+w*. \wj* +\v 15 \wj \+w He|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w has|strong="G2192"\+w* \+w ears|strong="G3775"\+w* \+w to|strong="G2192"\+w* hear, \+w let|strong="G2192"\+w* \+w him|strong="G3588"\+w* hear.\wj* +\p +\v 16 \wj “\+w But|strong="G1161"\+w* \+w to|strong="G1722"\+w* \+w what|strong="G5101"\+w* \+w shall|strong="G3739"\+w* \+w I|strong="G3739"\+w* \+w compare|strong="G3666"\+w* \+w this|strong="G3778"\+w* \+w generation|strong="G1074"\+w*? \+w It|strong="G1161"\+w* \+w is|strong="G1510"\+w* \+w like|strong="G3664"\+w* \+w children|strong="G3813"\+w* \+w sitting|strong="G2521"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* marketplaces, \+w who|strong="G3739"\+w* \+w call|strong="G4377"\+w* \+w to|strong="G1722"\+w* \+w their|strong="G1722"\+w* \+w companions|strong="G3588"\+w* \wj* +\v 17 \wj \+w and|strong="G2532"\+w* \+w say|strong="G3004"\+w*, ‘\+w We|strong="G2532"\+w* played \+w the|strong="G2532"\+w* flute \+w for|strong="G2532"\+w* \+w you|strong="G5210"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* didn’t \+w dance|strong="G3738"\+w*. \+w We|strong="G2532"\+w* mourned \+w for|strong="G2532"\+w* \+w you|strong="G5210"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* didn’t \+w lament|strong="G2875"\+w*.’ \wj* +\v 18 \wj \+w For|strong="G1063"\+w* \+w John|strong="G2491"\+w* \+w came|strong="G2064"\+w* \+w neither|strong="G3383"\+w* \+w eating|strong="G2068"\+w* \+w nor|strong="G3383"\+w* \+w drinking|strong="G4095"\+w*, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w say|strong="G3004"\+w*, ‘\+w He|strong="G2532"\+w* \+w has|strong="G2192"\+w* \+w a|strong="G2192"\+w* \+w demon|strong="G1140"\+w*.’ \wj* +\v 19 \wj \+w The|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w* \+w came|strong="G2064"\+w* \+w eating|strong="G2068"\+w* \+w and|strong="G2532"\+w* \+w drinking|strong="G4095"\+w*, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w say|strong="G3004"\+w*, ‘\+w Behold|strong="G2400"\+w*, \+w a|strong="G2532"\+w* \+w gluttonous|strong="G5314"\+w* \+w man|strong="G5207"\+w* \+w and|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w drunkard|strong="G3630"\+w*, \+w a|strong="G2532"\+w* \+w friend|strong="G5384"\+w* \+w of|strong="G5207"\+w* \+w tax|strong="G5057"\+w* \+w collectors|strong="G5057"\+w* \+w and|strong="G2532"\+w* sinners!’ \+w But|strong="G2532"\+w* \+w wisdom|strong="G4678"\+w* \+w is|strong="G3588"\+w* \+w justified|strong="G1344"\+w* \+w by|strong="G1344"\+w* \+w her|strong="G3708"\+w* \+w children|strong="G5207"\+w*.”\wj*\f + \fr 11:19 \ft NU reads “actions” instead of “children”\f* +\p +\v 20 \w Then|strong="G5119"\w* \w he|strong="G3739"\w* \w began|strong="G1096"\w* \w to|strong="G1722"\w* \w denounce|strong="G3679"\w* \w the|strong="G1722"\w* \w cities|strong="G4172"\w* \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w most|strong="G4183"\w* \w of|strong="G1411"\w* \w his|strong="G1722"\w* \w mighty|strong="G1411"\w* \w works|strong="G1411"\w* \w had|strong="G3739"\w* \w been|strong="G1096"\w* \w done|strong="G1096"\w*, \w because|strong="G3754"\w* \w they|strong="G3588"\w* didn’\w t|strong="G3588"\w* \w repent|strong="G3340"\w*. +\v 21 \wj “\+w Woe|strong="G3759"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*, \+w Chorazin|strong="G5523"\+w*! \+w Woe|strong="G3759"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*, Bethsaida! \+w For|strong="G3754"\+w* \+w if|strong="G1487"\+w* \+w the|strong="G1722"\+w* \+w mighty|strong="G1411"\+w* \+w works|strong="G1411"\+w* \+w had|strong="G2532"\+w* \+w been|strong="G1096"\+w* \+w done|strong="G1096"\+w* \+w in|strong="G1722"\+w* \+w Tyre|strong="G5184"\+w* \+w and|strong="G2532"\+w* \+w Sidon|strong="G4605"\+w* \+w which|strong="G3588"\+w* \+w were|strong="G3588"\+w* \+w done|strong="G1096"\+w* \+w in|strong="G1722"\+w* \+w you|strong="G5210"\+w*, \+w they|strong="G2532"\+w* \+w would|strong="G1096"\+w* \+w have|strong="G2532"\+w* \+w repented|strong="G3340"\+w* \+w long|strong="G3819"\+w* \+w ago|strong="G3819"\+w* \+w in|strong="G1722"\+w* \+w sackcloth|strong="G4526"\+w* \+w and|strong="G2532"\+w* \+w ashes|strong="G4700"\+w*. \wj* +\v 22 \wj \+w But|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w it|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w more|strong="G2532"\+w* tolerable \+w for|strong="G1722"\+w* \+w Tyre|strong="G5184"\+w* \+w and|strong="G2532"\+w* \+w Sidon|strong="G4605"\+w* \+w on|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w day|strong="G2250"\+w* \+w of|strong="G2250"\+w* \+w judgment|strong="G2920"\+w* \+w than|strong="G2228"\+w* \+w for|strong="G1722"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 23 \wj \+w You|strong="G4771"\+w*, \+w Capernaum|strong="G2584"\+w*, \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w exalted|strong="G5312"\+w* \+w to|strong="G2532"\+w* \+w heaven|strong="G3772"\+w*, \+w you|strong="G4771"\+w* \+w will|strong="G2532"\+w* \+w go|strong="G2597"\+w* \+w down|strong="G2597"\+w* \+w to|strong="G2532"\+w* Hades. \wj*\f + \fr 11:23 \ft or, Hell\f* \wj \+w For|strong="G3754"\+w* \+w if|strong="G1487"\+w* \+w the|strong="G1722"\+w* \+w mighty|strong="G1411"\+w* \+w works|strong="G1411"\+w* \+w had|strong="G2532"\+w* \+w been|strong="G1096"\+w* \+w done|strong="G1096"\+w* \+w in|strong="G1722"\+w* \+w Sodom|strong="G4670"\+w* \+w which|strong="G3588"\+w* \+w were|strong="G3588"\+w* \+w done|strong="G1096"\+w* \+w in|strong="G1722"\+w* \+w you|strong="G4771"\+w*, \+w it|strong="G2532"\+w* \+w would|strong="G1096"\+w* \+w have|strong="G2532"\+w* \+w remained|strong="G3306"\+w* \+w until|strong="G2193"\+w* \+w today|strong="G4594"\+w*. \wj* +\v 24 \wj \+w But|strong="G4133"\+w* \+w I|strong="G3754"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w it|strong="G3754"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* more tolerable \+w for|strong="G3754"\+w* \+w the|strong="G1722"\+w* \+w land|strong="G1093"\+w* \+w of|strong="G2250"\+w* \+w Sodom|strong="G4670"\+w* \+w on|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w day|strong="G2250"\+w* \+w of|strong="G2250"\+w* \+w judgment|strong="G2920"\+w*, \+w than|strong="G2228"\+w* \+w for|strong="G3754"\+w* \+w you|strong="G5210"\+w*.”\wj* +\p +\v 25 \w At|strong="G1722"\w* \w that|strong="G3754"\w* \w time|strong="G2540"\w*, \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w*, \wj “\+w I|strong="G2532"\+w* \+w thank|strong="G1843"\+w* \+w you|strong="G4771"\+w*, \+w Father|strong="G3962"\+w*, \+w Lord|strong="G2962"\+w* \+w of|strong="G2532"\+w* \+w heaven|strong="G3772"\+w* \+w and|strong="G2532"\+w* \+w earth|strong="G1093"\+w*, \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w hid|strong="G2928"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* \+w from|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w wise|strong="G4680"\+w* \+w and|strong="G2532"\+w* understanding, \+w and|strong="G2532"\+w* revealed \+w them|strong="G3588"\+w* \+w to|strong="G2532"\+w* \+w infants|strong="G3516"\+w*. \wj* +\v 26 \wj \+w Yes|strong="G3483"\+w*, \+w Father|strong="G3962"\+w*, \+w for|strong="G3754"\+w* \+w so|strong="G3779"\+w* \+w it|strong="G3754"\+w* \+w was|strong="G1096"\+w* \+w well-pleasing|strong="G2107"\+w* \+w in|strong="G1096"\+w* \+w your|strong="G3588"\+w* \+w sight|strong="G1715"\+w*. \wj* +\v 27 \wj \+w All|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w have|strong="G2532"\+w* \+w been|strong="G2532"\+w* \+w delivered|strong="G3860"\+w* \+w to|strong="G2532"\+w* \+w me|strong="G1473"\+w* \+w by|strong="G5259"\+w* \+w my|strong="G3956"\+w* \+w Father|strong="G3962"\+w*. \+w No|strong="G3762"\+w* \+w one|strong="G5100"\+w* \+w knows|strong="G1921"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w*, \+w except|strong="G1487"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w*; \+w neither|strong="G3761"\+w* \+w does|strong="G3761"\+w* \+w anyone|strong="G5100"\+w* \+w know|strong="G1921"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w*, \+w except|strong="G1487"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w whom|strong="G3739"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w desires|strong="G1014"\+w* \+w to|strong="G2532"\+w* reveal \+w him|strong="G3588"\+w*.\wj* +\p +\v 28 \wj “\+w Come|strong="G1205"\+w* \+w to|strong="G4314"\+w* \+w me|strong="G1473"\+w*, \+w all|strong="G3956"\+w* \+w you|strong="G5210"\+w* \+w who|strong="G3588"\+w* \+w labor|strong="G2872"\+w* \+w and|strong="G2532"\+w* \+w are|strong="G3588"\+w* heavily \+w burdened|strong="G5412"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w give|strong="G1473"\+w* \+w you|strong="G5210"\+w* rest. \wj* +\v 29 \wj \+w Take|strong="G2532"\+w* \+w my|strong="G1473"\+w* \+w yoke|strong="G2218"\+w* \+w upon|strong="G1909"\+w* \+w you|strong="G5210"\+w* \+w and|strong="G2532"\+w* \+w learn|strong="G3129"\+w* \+w from|strong="G2532"\+w* \+w me|strong="G1473"\+w*, \+w for|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w gentle|strong="G4239"\+w* \+w and|strong="G2532"\+w* \+w humble|strong="G5011"\+w* \+w in|strong="G1909"\+w* \+w heart|strong="G2588"\+w*; \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G1510"\+w* \+w find|strong="G2147"\+w* \+w rest|strong="G1510"\+w* \+w for|strong="G3754"\+w* \+w your|strong="G2532"\+w* \+w souls|strong="G5590"\+w*. \wj* +\v 30 \wj \+w For|strong="G1063"\+w* \+w my|strong="G1473"\+w* \+w yoke|strong="G2218"\+w* \+w is|strong="G1510"\+w* \+w easy|strong="G5543"\+w*, \+w and|strong="G2532"\+w* \+w my|strong="G1473"\+w* \+w burden|strong="G5413"\+w* \+w is|strong="G1510"\+w* \+w light|strong="G1645"\+w*.”\wj* +\c 12 +\p +\v 1 \w At|strong="G1722"\w* \w that|strong="G3588"\w* \w time|strong="G2540"\w*, \w Jesus|strong="G2424"\w* \w went|strong="G4198"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w Sabbath|strong="G4521"\w* \w day|strong="G4521"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w grain|strong="G4719"\w* \w fields|strong="G4702"\w*. \w His|strong="G1223"\w* \w disciples|strong="G3101"\w* \w were|strong="G3588"\w* \w hungry|strong="G3983"\w* \w and|strong="G2532"\w* \w began|strong="G1161"\w* \w to|strong="G2532"\w* \w pluck|strong="G5089"\w* \w heads|strong="G4719"\w* \w of|strong="G1223"\w* \w grain|strong="G4719"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w eat|strong="G2068"\w*. +\v 2 \w But|strong="G1161"\w* \w the|strong="G1722"\w* \w Pharisees|strong="G5330"\w*, \w when|strong="G1161"\w* \w they|strong="G1161"\w* \w saw|strong="G3708"\w* \w it|strong="G1161"\w*, \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Behold|strong="G2400"\w*, \w your|strong="G3708"\w* \w disciples|strong="G3101"\w* \w do|strong="G4160"\w* \w what|strong="G3739"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w lawful|strong="G1832"\w* \w to|strong="G3004"\w* \w do|strong="G4160"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w Sabbath|strong="G4521"\w*.” +\p +\v 3 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “Haven’\+w t|strong="G3588"\+w* \+w you|strong="G3004"\+w* read \+w what|strong="G5101"\+w* \+w David|strong="G1138"\+w* \+w did|strong="G4160"\+w* \+w when|strong="G3753"\+w* \+w he|strong="G2532"\+w* \+w was|strong="G3588"\+w* \+w hungry|strong="G3983"\+w*, \+w and|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G5101"\+w* \+w were|strong="G3588"\+w* \+w with|strong="G3326"\+w* \+w him|strong="G3588"\+w*: \wj* +\v 4 \wj \+w how|strong="G4459"\+w* \+w he|strong="G2532"\+w* \+w entered|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w God|strong="G2316"\+w*’s \+w house|strong="G3624"\+w* \+w and|strong="G2532"\+w* \+w ate|strong="G2068"\+w* \+w the|strong="G2532"\+w* show bread, \+w which|strong="G3739"\+w* \+w was|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w lawful|strong="G1832"\+w* \+w for|strong="G1519"\+w* \+w him|strong="G3588"\+w* \+w to|strong="G1519"\+w* \+w eat|strong="G2068"\+w*, \+w nor|strong="G3761"\+w* \+w for|strong="G1519"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3739"\+w* \+w were|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w him|strong="G3588"\+w*, \+w but|strong="G2532"\+w* \+w only|strong="G3441"\+w* \+w for|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w priests|strong="G2409"\+w*?\wj*\x + \xo 12:4 \xt 1 Samuel 21:3-6\x* +\v 5 \wj \+w Or|strong="G2228"\+w* \+w have|strong="G2532"\+w* \+w you|strong="G3754"\+w* \+w not|strong="G3756"\+w* read \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w law|strong="G3551"\+w* \+w that|strong="G3754"\+w* \+w on|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w Sabbath|strong="G4521"\+w* \+w day|strong="G4521"\+w* \+w the|strong="G1722"\+w* \+w priests|strong="G2409"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w temple|strong="G2413"\+w* \+w profane|strong="G2228"\+w* \+w the|strong="G1722"\+w* \+w Sabbath|strong="G4521"\+w* \+w and|strong="G2532"\+w* \+w are|strong="G1510"\+w* guiltless? \wj* +\v 6 \wj \+w But|strong="G1161"\+w* \+w I|strong="G1161"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w one|strong="G3588"\+w* \+w greater|strong="G3173"\+w* \+w than|strong="G3173"\+w* \+w the|strong="G1161"\+w* \+w temple|strong="G2413"\+w* \+w is|strong="G1510"\+w* \+w here|strong="G5602"\+w*. \wj* +\v 7 \wj \+w But|strong="G1161"\+w* \+w if|strong="G1487"\+w* \+w you|strong="G1487"\+w* \+w had|strong="G2532"\+w* \+w known|strong="G1097"\+w* \+w what|strong="G5101"\+w* \+w this|strong="G3588"\+w* \+w means|strong="G1510"\+w*, ‘\+w I|strong="G2532"\+w* \+w desire|strong="G2309"\+w* \+w mercy|strong="G1656"\+w*, \+w and|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w sacrifice|strong="G2378"\+w*,’\wj*\x + \xo 12:7 \xt Hosea 6:6\x* \wj \+w you|strong="G1487"\+w* wouldn’\+w t|strong="G3588"\+w* \+w have|strong="G2309"\+w* \+w condemned|strong="G2613"\+w* \+w the|strong="G2532"\+w* guiltless. \wj* +\v 8 \wj \+w For|strong="G1063"\+w* \+w the|strong="G3588"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w* \+w is|strong="G1510"\+w* \+w Lord|strong="G2962"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G3588"\+w* \+w Sabbath|strong="G4521"\+w*.”\wj* +\p +\v 9 \w He|strong="G2532"\w* \w departed|strong="G3327"\w* \w from|strong="G2064"\w* \w there|strong="G2532"\w* \w and|strong="G2532"\w* \w went|strong="G2064"\w* \w into|strong="G1519"\w* \w their|strong="G2532"\w* \w synagogue|strong="G4864"\w*. +\v 10 \w And|strong="G2532"\w* \w behold|strong="G2400"\w*, \w there|strong="G2532"\w* \w was|strong="G3588"\w* \w a|strong="G2192"\w* man \w with|strong="G2532"\w* \w a|strong="G2192"\w* \w withered|strong="G3584"\w* \w hand|strong="G5495"\w*. \w They|strong="G2532"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w*, “\w Is|strong="G3588"\w* \w it|strong="G2532"\w* \w lawful|strong="G1832"\w* \w to|strong="G2443"\w* \w heal|strong="G2323"\w* \w on|strong="G5495"\w* \w the|strong="G2532"\w* \w Sabbath|strong="G4521"\w* \w day|strong="G4521"\w*?” \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w accuse|strong="G2723"\w* \w him|strong="G3588"\w*. +\p +\v 11 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w What|strong="G5101"\+w* \+w man|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w there|strong="G2532"\+w* \+w among|strong="G1519"\+w* \+w you|strong="G5210"\+w* \+w who|strong="G3739"\+w* \+w has|strong="G2192"\+w* \+w one|strong="G1520"\+w* \+w sheep|strong="G4263"\+w*, \+w and|strong="G2532"\+w* \+w if|strong="G1437"\+w* \+w this|strong="G3778"\+w* \+w one|strong="G1520"\+w* \+w falls|strong="G1510"\+w* \+w into|strong="G1519"\+w* \+w a|strong="G2192"\+w* \+w pit|strong="G2532"\+w* \+w on|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w Sabbath|strong="G4521"\+w* \+w day|strong="G4521"\+w*, won’\+w t|strong="G3588"\+w* \+w he|strong="G2532"\+w* grab \+w on|strong="G1519"\+w* \+w to|strong="G1519"\+w* \+w it|strong="G2532"\+w* \+w and|strong="G2532"\+w* \+w lift|strong="G1453"\+w* \+w it|strong="G2532"\+w* \+w out|strong="G1537"\+w*? \wj* +\v 12 \wj \+w Of|strong="G3588"\+w* \+w how|strong="G4214"\+w* \+w much|strong="G4214"\+w* \+w more|strong="G1308"\+w* value \+w then|strong="G3767"\+w* \+w is|strong="G3588"\+w* \+w a|strong="G4160"\+w* \+w man|strong="G4160"\+w* \+w than|strong="G1308"\+w* \+w a|strong="G4160"\+w* \+w sheep|strong="G4263"\+w*! \+w Therefore|strong="G3767"\+w* \+w it|strong="G4160"\+w* \+w is|strong="G3588"\+w* \+w lawful|strong="G1832"\+w* \+w to|strong="G1832"\+w* \+w do|strong="G4160"\+w* \+w good|strong="G2573"\+w* \+w on|strong="G4160"\+w* \+w the|strong="G3588"\+w* \+w Sabbath|strong="G4521"\+w* \+w day|strong="G4521"\+w*.”\wj* +\v 13 \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w told|strong="G3004"\w* \w the|strong="G2532"\w* man, \wj “\+w Stretch|strong="G1614"\+w* \+w out|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w hand|strong="G5495"\+w*.”\wj* \w He|strong="G2532"\w* \w stretched|strong="G1614"\w* \w it|strong="G2532"\w* \w out|strong="G2532"\w*; \w and|strong="G2532"\w* \w it|strong="G2532"\w* \w was|strong="G3588"\w* \w restored|strong="G5199"\w* \w whole|strong="G5199"\w*, \w just|strong="G5613"\w* \w like|strong="G5613"\w* \w the|strong="G2532"\w* \w other|strong="G3588"\w*. +\v 14 \w But|strong="G1161"\w* \w the|strong="G1161"\w* \w Pharisees|strong="G5330"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w and|strong="G1161"\w* \w conspired|strong="G4824"\w* \w against|strong="G2596"\w* \w him|strong="G3588"\w*, \w how|strong="G3704"\w* \w they|strong="G1161"\w* might destroy \w him|strong="G3588"\w*. +\p +\v 15 \w Jesus|strong="G2424"\w*, \w perceiving|strong="G1097"\w* \w that|strong="G3588"\w*, \w withdrew|strong="G2424"\w* \w from|strong="G2532"\w* \w there|strong="G2532"\w*. \w Great|strong="G4183"\w* \w multitudes|strong="G4183"\w* followed \w him|strong="G3588"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w healed|strong="G2323"\w* \w them|strong="G3588"\w* \w all|strong="G3956"\w*, +\v 16 \w and|strong="G2532"\w* \w commanded|strong="G2008"\w* \w them|strong="G4160"\w* \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w should|strong="G2532"\w* \w not|strong="G3361"\w* \w make|strong="G4160"\w* \w him|strong="G4160"\w* \w known|strong="G5318"\w*, +\v 17 \w that|strong="G2443"\w* \w it|strong="G1223"\w* might \w be|strong="G2443"\w* \w fulfilled|strong="G4137"\w* \w which|strong="G3588"\w* \w was|strong="G3588"\w* \w spoken|strong="G3004"\w* \w through|strong="G1223"\w* \w Isaiah|strong="G2268"\w* \w the|strong="G1223"\w* \w prophet|strong="G4396"\w*, \w saying|strong="G3004"\w*, +\q1 +\v 18 “\w Behold|strong="G2400"\w*, \w my|strong="G3708"\w* \w servant|strong="G3816"\w* \w whom|strong="G3739"\w* \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w chosen|strong="G2106"\w*, +\q2 \w my|strong="G3708"\w* beloved \w in|strong="G1519"\w* \w whom|strong="G3739"\w* \w my|strong="G3708"\w* \w soul|strong="G5590"\w* \w is|strong="G3588"\w* \w well|strong="G2532"\w* \w pleased|strong="G2106"\w*. +\q1 \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w put|strong="G5087"\w* \w my|strong="G3708"\w* \w Spirit|strong="G4151"\w* \w on|strong="G1909"\w* \w him|strong="G3588"\w*. +\q2 \w He|strong="G2532"\w* \w will|strong="G2532"\w* proclaim \w justice|strong="G2920"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w nations|strong="G1484"\w*. +\q1 +\v 19 \w He|strong="G3588"\w* \w will|strong="G5100"\w* \w not|strong="G3756"\w* \w strive|strong="G2051"\w*, \w nor|strong="G3761"\w* \w shout|strong="G2905"\w*, +\q2 \w neither|strong="G3761"\w* \w will|strong="G5100"\w* \w anyone|strong="G5100"\w* \w hear|strong="G5456"\w* \w his|strong="G1722"\w* \w voice|strong="G5456"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w streets|strong="G4116"\w*. +\q1 +\v 20 \w He|strong="G2532"\w* won’\w t|strong="G3588"\w* \w break|strong="G2608"\w* \w a|strong="G2532"\w* \w bruised|strong="G4937"\w* \w reed|strong="G2563"\w*. +\q2 \w He|strong="G2532"\w* won’\w t|strong="G3588"\w* \w quench|strong="G4570"\w* \w a|strong="G2532"\w* \w smoking|strong="G5188"\w* \w flax|strong="G3043"\w*, +\q1 \w until|strong="G2193"\w* \w he|strong="G2532"\w* \w leads|strong="G1519"\w* \w justice|strong="G2920"\w* \w to|strong="G1519"\w* \w victory|strong="G3534"\w*. +\q2 +\v 21 \w In|strong="G2532"\w* \w his|strong="G2532"\w* \w name|strong="G3686"\w*, \w the|strong="G2532"\w* \w nations|strong="G1484"\w* \w will|strong="G2532"\w* \w hope|strong="G1679"\w*.”\x + \xo 12:21 \xt Isaiah 42:1-4\x* +\p +\v 22 \w Then|strong="G2532"\w* \w one|strong="G3588"\w* possessed \w by|strong="G2532"\w* \w a|strong="G2532"\w* demon, \w blind|strong="G5185"\w* \w and|strong="G2532"\w* \w mute|strong="G2974"\w*, \w was|strong="G3588"\w* \w brought|strong="G4374"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w healed|strong="G2323"\w* \w him|strong="G3588"\w*, \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w the|strong="G2532"\w* \w blind|strong="G5185"\w* \w and|strong="G2532"\w* \w mute|strong="G2974"\w* \w man|strong="G5185"\w* \w both|strong="G2532"\w* \w spoke|strong="G2980"\w* \w and|strong="G2532"\w* saw. +\v 23 \w All|strong="G3956"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w* \w were|strong="G1510"\w* \w amazed|strong="G1839"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Can|strong="G3004"\w* \w this|strong="G3778"\w* \w be|strong="G1510"\w* \w the|strong="G2532"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w David|strong="G1138"\w*?” +\v 24 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w the|strong="G1722"\w* \w Pharisees|strong="G5330"\w* heard \w it|strong="G1161"\w*, \w they|strong="G1161"\w* \w said|strong="G3004"\w*, “\w This|strong="G3778"\w* \w man|strong="G3778"\w* \w does|strong="G3004"\w* \w not|strong="G3756"\w* \w cast|strong="G1544"\w* \w out|strong="G1544"\w* \w demons|strong="G1140"\w* \w except|strong="G1487"\w* \w by|strong="G1722"\w* Beelzebul, \w the|strong="G1722"\w* prince \w of|strong="G1722"\w* \w the|strong="G1722"\w* \w demons|strong="G1140"\w*.” +\p +\v 25 \w Knowing|strong="G1492"\w* \w their|strong="G1438"\w* \w thoughts|strong="G1761"\w*, \w Jesus|strong="G3004"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Every|strong="G3956"\+w* kingdom \+w divided|strong="G3307"\+w* \+w against|strong="G2596"\+w* \+w itself|strong="G1438"\+w* \+w is|strong="G3588"\+w* \+w brought|strong="G1161"\+w* \+w to|strong="G2532"\+w* desolation, \+w and|strong="G2532"\+w* \+w every|strong="G3956"\+w* \+w city|strong="G4172"\+w* \+w or|strong="G2228"\+w* \+w house|strong="G3614"\+w* \+w divided|strong="G3307"\+w* \+w against|strong="G2596"\+w* \+w itself|strong="G1438"\+w* \+w will|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w stand|strong="G2476"\+w*. \wj* +\v 26 \wj \+w If|strong="G1487"\+w* \+w Satan|strong="G4567"\+w* \+w casts|strong="G1544"\+w* \+w out|strong="G1544"\+w* \+w Satan|strong="G4567"\+w*, \+w he|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w divided|strong="G3307"\+w* \+w against|strong="G1909"\+w* \+w himself|strong="G1438"\+w*. \+w How|strong="G4459"\+w* \+w then|strong="G3767"\+w* \+w will|strong="G2532"\+w* \+w his|strong="G1438"\+w* kingdom \+w stand|strong="G2476"\+w*? \wj* +\v 27 \wj \+w If|strong="G1487"\+w* \+w I|strong="G1473"\+w* \+w by|strong="G1223"\+w* Beelzebul \+w cast|strong="G1544"\+w* \+w out|strong="G1544"\+w* \+w demons|strong="G1140"\+w*, \+w by|strong="G1223"\+w* \+w whom|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w your|strong="G1223"\+w* \+w children|strong="G5207"\+w* \+w cast|strong="G1544"\+w* \+w them|strong="G3588"\+w* \+w out|strong="G1544"\+w*? \+w Therefore|strong="G1223"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G5101"\+w* \+w be|strong="G1510"\+w* \+w your|strong="G1223"\+w* \+w judges|strong="G2923"\+w*. \wj* +\v 28 \wj \+w But|strong="G1161"\+w* \+w if|strong="G1487"\+w* \+w I|strong="G1473"\+w* \+w by|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w Spirit|strong="G4151"\+w* \+w of|strong="G4151"\+w* \+w God|strong="G2316"\+w* \+w cast|strong="G1544"\+w* \+w out|strong="G1544"\+w* \+w demons|strong="G1140"\+w*, \+w then|strong="G1161"\+w* \+w God|strong="G2316"\+w*’s Kingdom \+w has|strong="G2316"\+w* \+w come|strong="G5348"\+w* \+w upon|strong="G1909"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 29 \wj \+w Or|strong="G2228"\+w* \+w how|strong="G4459"\+w* \+w can|strong="G1410"\+w* \+w one|strong="G5100"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w house|strong="G3614"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w strong|strong="G2478"\+w* \+w man|strong="G5100"\+w* \+w and|strong="G2532"\+w* \+w plunder|strong="G1283"\+w* \+w his|strong="G1519"\+w* \+w goods|strong="G4632"\+w*, \+w unless|strong="G1437"\+w* \+w he|strong="G2532"\+w* \+w first|strong="G4413"\+w* \+w bind|strong="G1210"\+w* \+w the|strong="G2532"\+w* \+w strong|strong="G2478"\+w* \+w man|strong="G5100"\+w*? \+w Then|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w plunder|strong="G1283"\+w* \+w his|strong="G1519"\+w* \+w house|strong="G3614"\+w*.\wj* +\p +\v 30 \wj “\+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3361"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1473"\+w* \+w is|strong="G1510"\+w* \+w against|strong="G2596"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* doesn’\+w t|strong="G3588"\+w* \+w gather|strong="G4863"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1473"\+w*, \+w scatters|strong="G4650"\+w*. \wj* +\v 31 \wj \+w Therefore|strong="G1223"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w every|strong="G3956"\+w* sin \+w and|strong="G2532"\+w* blasphemy \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* forgiven \+w men|strong="G3956"\+w*, \+w but|strong="G1161"\+w* \+w the|strong="G2532"\+w* blasphemy \+w against|strong="G3756"\+w* \+w the|strong="G2532"\+w* \+w Spirit|strong="G4151"\+w* \+w will|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G2532"\+w* forgiven \+w men|strong="G3956"\+w*. \wj* +\v 32 \wj \+w Whoever|strong="G3739"\+w* \+w speaks|strong="G3004"\+w* \+w a|strong="G2532"\+w* \+w word|strong="G3056"\+w* \+w against|strong="G2596"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3778"\+w*, \+w it|strong="G2532"\+w* \+w will|strong="G3195"\+w* \+w be|strong="G2532"\+w* forgiven \+w him|strong="G3588"\+w*; \+w but|strong="G1161"\+w* \+w whoever|strong="G3739"\+w* \+w speaks|strong="G3004"\+w* \+w against|strong="G2596"\+w* \+w the|strong="G1722"\+w* \+w Holy|strong="G4151"\+w* \+w Spirit|strong="G4151"\+w*, \+w it|strong="G2532"\+w* \+w will|strong="G3195"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G2532"\+w* forgiven \+w him|strong="G3588"\+w*, \+w either|strong="G3777"\+w* \+w in|strong="G1722"\+w* \+w this|strong="G3778"\+w* age, \+w or|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w that|strong="G3739"\+w* \+w which|strong="G3739"\+w* \+w is|strong="G3588"\+w* \+w to|strong="G2532"\+w* \+w come|strong="G3195"\+w*.\wj* +\p +\v 33 \wj “\+w Either|strong="G2228"\+w* \+w make|strong="G4160"\+w* \+w the|strong="G2532"\+w* \+w tree|strong="G1186"\+w* \+w good|strong="G2570"\+w* \+w and|strong="G2532"\+w* \+w its|strong="G1537"\+w* \+w fruit|strong="G2590"\+w* \+w good|strong="G2570"\+w*, \+w or|strong="G2228"\+w* \+w make|strong="G4160"\+w* \+w the|strong="G2532"\+w* \+w tree|strong="G1186"\+w* \+w corrupt|strong="G4550"\+w* \+w and|strong="G2532"\+w* \+w its|strong="G1537"\+w* \+w fruit|strong="G2590"\+w* \+w corrupt|strong="G4550"\+w*; \+w for|strong="G1063"\+w* \+w the|strong="G2532"\+w* \+w tree|strong="G1186"\+w* \+w is|strong="G3588"\+w* \+w known|strong="G1097"\+w* \+w by|strong="G1537"\+w* \+w its|strong="G1537"\+w* \+w fruit|strong="G2590"\+w*. \wj* +\v 34 \wj \+w You|strong="G1510"\+w* \+w offspring|strong="G1081"\+w* \+w of|strong="G1537"\+w* \+w vipers|strong="G2191"\+w*, \+w how|strong="G4459"\+w* \+w can|strong="G1410"\+w* \+w you|strong="G1510"\+w*, \+w being|strong="G1510"\+w* \+w evil|strong="G4190"\+w*, \+w speak|strong="G2980"\+w* \+w good|strong="G3588"\+w* \+w things|strong="G3588"\+w*? \+w For|strong="G1063"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w abundance|strong="G4051"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w heart|strong="G2588"\+w*, \+w the|strong="G1537"\+w* \+w mouth|strong="G4750"\+w* \+w speaks|strong="G2980"\+w*. \wj* +\v 35 \wj \+w The|strong="G2532"\+w* \+w good|strong="G3588"\+w* \+w man|strong="G4190"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w his|strong="G2532"\+w* \+w good|strong="G3588"\+w* \+w treasure|strong="G2344"\+w*\wj*\f + \fr 12:35 \ft TR adds “of the heart”\f* \wj \+w brings|strong="G1544"\+w* \+w out|strong="G1537"\+w* \+w good|strong="G3588"\+w* \+w things|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w evil|strong="G4190"\+w* \+w man|strong="G4190"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w his|strong="G2532"\+w* \+w evil|strong="G4190"\+w* \+w treasure|strong="G2344"\+w* \+w brings|strong="G1544"\+w* \+w out|strong="G1537"\+w* \+w evil|strong="G4190"\+w* \+w things|strong="G3588"\+w*. \wj* +\v 36 \wj \+w I|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w every|strong="G3956"\+w* idle \+w word|strong="G3056"\+w* \+w that|strong="G3754"\+w* \+w men|strong="G3956"\+w* \+w speak|strong="G2980"\+w*, \+w they|strong="G1161"\+w* \+w will|strong="G3739"\+w* \+w give|strong="G3004"\+w* \+w account|strong="G3056"\+w* \+w of|strong="G4012"\+w* \+w it|strong="G3754"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w day|strong="G2250"\+w* \+w of|strong="G4012"\+w* \+w judgment|strong="G2920"\+w*. \wj* +\v 37 \wj \+w For|strong="G1063"\+w* \+w by|strong="G1537"\+w* \+w your|strong="G2532"\+w* \+w words|strong="G3056"\+w* \+w you|strong="G4771"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w justified|strong="G1344"\+w*, \+w and|strong="G2532"\+w* \+w by|strong="G1537"\+w* \+w your|strong="G2532"\+w* \+w words|strong="G3056"\+w* \+w you|strong="G4771"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w condemned|strong="G2613"\+w*.”\wj* +\p +\v 38 \w Then|strong="G2532"\w* \w certain|strong="G5100"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w scribes|strong="G1122"\w* \w and|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w answered|strong="G3004"\w*, “\w Teacher|strong="G1320"\w*, \w we|strong="G2532"\w* \w want|strong="G2309"\w* \w to|strong="G2532"\w* \w see|strong="G3708"\w* \w a|strong="G2532"\w* \w sign|strong="G4592"\w* \w from|strong="G2532"\w* \w you|strong="G4771"\w*.” +\p +\v 39 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w An|strong="G2532"\+w* \+w evil|strong="G4190"\+w* \+w and|strong="G2532"\+w* \+w adulterous|strong="G3428"\+w* \+w generation|strong="G1074"\+w* \+w seeks|strong="G1934"\+w* \+w after|strong="G1161"\+w* \+w a|strong="G2532"\+w* \+w sign|strong="G4592"\+w*, \+w but|strong="G1161"\+w* \+w no|strong="G3756"\+w* \+w sign|strong="G4592"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w given|strong="G1325"\+w* \+w to|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w but|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w sign|strong="G4592"\+w* \+w of|strong="G2532"\+w* \+w Jonah|strong="G2495"\+w* \+w the|strong="G2532"\+w* \+w prophet|strong="G4396"\+w*. \wj* +\v 40 \wj \+w For|strong="G1063"\+w* \+w as|strong="G5618"\+w* \+w Jonah|strong="G2495"\+w* \+w was|strong="G1510"\+w* \+w three|strong="G5140"\+w* \+w days|strong="G2250"\+w* \+w and|strong="G2532"\+w* \+w three|strong="G5140"\+w* \+w nights|strong="G3571"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w belly|strong="G2836"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G1722"\+w* huge fish, \+w so|strong="G3779"\+w* \+w will|strong="G1510"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G2588"\+w* \+w be|strong="G1510"\+w* \+w three|strong="G5140"\+w* \+w days|strong="G2250"\+w* \+w and|strong="G2532"\+w* \+w three|strong="G5140"\+w* \+w nights|strong="G3571"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w heart|strong="G2588"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G1722"\+w* \+w earth|strong="G1093"\+w*. \wj* +\v 41 \wj \+w The|strong="G1722"\+w* \+w men|strong="G3778"\+w* \+w of|strong="G2532"\+w* \+w Nineveh|strong="G3536"\+w* \+w will|strong="G2532"\+w* \+w stand|strong="G3778"\+w* \+w up|strong="G1519"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w judgment|strong="G2920"\+w* \+w with|strong="G3326"\+w* \+w this|strong="G3778"\+w* \+w generation|strong="G1074"\+w* \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w condemn|strong="G2632"\+w* \+w it|strong="G2532"\+w*, \+w for|strong="G3754"\+w* \+w they|strong="G2532"\+w* \+w repented|strong="G3340"\+w* \+w at|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w preaching|strong="G2782"\+w* \+w of|strong="G2532"\+w* \+w Jonah|strong="G2495"\+w*; \+w and|strong="G2532"\+w* \+w behold|strong="G2400"\+w*, someone \+w greater|strong="G4183"\+w* \+w than|strong="G4183"\+w* \+w Jonah|strong="G2495"\+w* \+w is|strong="G3588"\+w* \+w here|strong="G5602"\+w*. \wj* +\v 42 \wj \+w The|strong="G1722"\+w* Queen \+w of|strong="G1537"\+w* \+w the|strong="G1722"\+w* \+w South|strong="G3558"\+w* \+w will|strong="G2532"\+w* \+w rise|strong="G1453"\+w* \+w up|strong="G1453"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w judgment|strong="G2920"\+w* \+w with|strong="G3326"\+w* \+w this|strong="G3778"\+w* \+w generation|strong="G1074"\+w* \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w condemn|strong="G2632"\+w* \+w it|strong="G2532"\+w*, \+w for|strong="G3754"\+w* \+w she|strong="G2532"\+w* \+w came|strong="G2064"\+w* \+w from|strong="G1537"\+w* \+w the|strong="G1722"\+w* \+w ends|strong="G4009"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1722"\+w* \+w earth|strong="G1093"\+w* \+w to|strong="G2532"\+w* hear \+w the|strong="G1722"\+w* \+w wisdom|strong="G4678"\+w* \+w of|strong="G1537"\+w* \+w Solomon|strong="G4672"\+w*; \+w and|strong="G2532"\+w* \+w behold|strong="G2400"\+w*, someone \+w greater|strong="G4183"\+w* \+w than|strong="G4183"\+w* \+w Solomon|strong="G4672"\+w* \+w is|strong="G3588"\+w* \+w here|strong="G5602"\+w*. \wj* +\p +\v 43 \wj “\+w When|strong="G3752"\+w* \+w an|strong="G2532"\+w* unclean \+w spirit|strong="G4151"\+w* \+w has|strong="G4151"\+w* \+w gone|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w of|strong="G4151"\+w* \+w a|strong="G2532"\+w* \+w man|strong="G3756"\+w*, \+w he|strong="G2532"\+w* \+w passes|strong="G1330"\+w* \+w through|strong="G1223"\+w* waterless \+w places|strong="G5117"\+w* \+w seeking|strong="G2212"\+w* rest, \+w and|strong="G2532"\+w* doesn’\+w t|strong="G3588"\+w* \+w find|strong="G2147"\+w* \+w it|strong="G2532"\+w*. \wj* +\v 44 \wj \+w Then|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w says|strong="G3004"\+w*, ‘\+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w return|strong="G1994"\+w* \+w into|strong="G1519"\+w* \+w my|strong="G1473"\+w* \+w house|strong="G3624"\+w* \+w from|strong="G2064"\+w* \+w which|strong="G3588"\+w* \+w I|strong="G1473"\+w* \+w came|strong="G2064"\+w*;’ \+w and|strong="G2532"\+w* \+w when|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w has|strong="G2064"\+w* \+w come|strong="G2064"\+w* \+w back|strong="G1994"\+w*, \+w he|strong="G2532"\+w* \+w finds|strong="G2147"\+w* \+w it|strong="G2532"\+w* \+w empty|strong="G4980"\+w*, \+w swept|strong="G4563"\+w*, \+w and|strong="G2532"\+w* \+w put|strong="G2532"\+w* \+w in|strong="G1519"\+w* \+w order|strong="G2885"\+w*. \wj* +\v 45 \wj \+w Then|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w goes|strong="G4198"\+w* \+w and|strong="G2532"\+w* \+w takes|strong="G3880"\+w* \+w with|strong="G3326"\+w* \+w himself|strong="G1438"\+w* \+w seven|strong="G2033"\+w* \+w other|strong="G2087"\+w* \+w spirits|strong="G4151"\+w* \+w more|strong="G2532"\+w* \+w evil|strong="G4190"\+w* \+w than|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w is|strong="G1510"\+w*, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w enter|strong="G1525"\+w* \+w in|strong="G1525"\+w* \+w and|strong="G2532"\+w* \+w dwell|strong="G2730"\+w* \+w there|strong="G1563"\+w*. \+w The|strong="G2532"\+w* \+w last|strong="G2078"\+w* state \+w of|strong="G4151"\+w* \+w that|strong="G3588"\+w* \+w man|strong="G3778"\+w* \+w becomes|strong="G1096"\+w* \+w worse|strong="G5501"\+w* \+w than|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w first|strong="G4413"\+w*. \+w Even|strong="G2532"\+w* \+w so|strong="G3779"\+w* \+w will|strong="G1510"\+w* \+w it|strong="G2532"\+w* \+w be|strong="G1096"\+w* \+w also|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w this|strong="G3778"\+w* \+w evil|strong="G4190"\+w* \+w generation|strong="G1074"\+w*.”\wj* +\p +\v 46 \w While|strong="G2980"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w yet|strong="G2089"\w* \w speaking|strong="G2980"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w*, \w behold|strong="G2400"\w*, \w his|strong="G3708"\w* \w mother|strong="G3384"\w* \w and|strong="G2532"\w* \w his|strong="G3708"\w* brothers \w stood|strong="G2476"\w* \w outside|strong="G1854"\w*, \w seeking|strong="G2212"\w* \w to|strong="G2532"\w* \w speak|strong="G2980"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*. +\v 47 \w One|strong="G5100"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Behold|strong="G2400"\w*, \w your|strong="G2532"\w* \w mother|strong="G3384"\w* \w and|strong="G2532"\w* \w your|strong="G2532"\w* brothers \w stand|strong="G2476"\w* \w outside|strong="G1854"\w*, \w seeking|strong="G2212"\w* \w to|strong="G2532"\w* \w speak|strong="G2980"\w* \w to|strong="G2532"\w* \w you|strong="G4771"\w*.” +\p +\v 48 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w* \w who|strong="G5101"\w* \w spoke|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Who|strong="G5101"\+w* \+w is|strong="G1510"\+w* \+w my|strong="G1473"\+w* \+w mother|strong="G3384"\+w*? \+w Who|strong="G5101"\+w* \+w are|strong="G1510"\+w* \+w my|strong="G1473"\+w* brothers?”\wj* +\v 49 \w He|strong="G2532"\w* \w stretched|strong="G1614"\w* \w out|strong="G2532"\w* \w his|strong="G1909"\w* \w hand|strong="G5495"\w* \w toward|strong="G1909"\w* \w his|strong="G1909"\w* \w disciples|strong="G3101"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Behold|strong="G2400"\+w*, \+w my|strong="G3708"\+w* \+w mother|strong="G3384"\+w* \+w and|strong="G2532"\+w* \+w my|strong="G3708"\+w* brothers! \wj* +\v 50 \wj \+w For|strong="G1063"\+w* \+w whoever|strong="G3748"\+w* \+w does|strong="G4160"\+w* \+w the|strong="G1722"\+w* \+w will|strong="G2307"\+w* \+w of|strong="G2532"\+w* \+w my|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*, \+w he|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w my|strong="G1722"\+w* brother, \+w and|strong="G2532"\+w* sister, \+w and|strong="G2532"\+w* \+w mother|strong="G3384"\+w*.”\wj* +\c 13 +\p +\v 1 \w On|strong="G1722"\w* \w that|strong="G3588"\w* \w day|strong="G2250"\w* \w Jesus|strong="G2424"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w house|strong="G3614"\w* \w and|strong="G2250"\w* \w sat|strong="G2521"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* seaside. +\v 2 \w Great|strong="G4183"\w* \w multitudes|strong="G3793"\w* \w gathered|strong="G4863"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w entered|strong="G1684"\w* \w into|strong="G1519"\w* \w a|strong="G2532"\w* \w boat|strong="G4143"\w* \w and|strong="G2532"\w* \w sat|strong="G2521"\w*; \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w* \w stood|strong="G2476"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* beach. +\v 3 \w He|strong="G2532"\w* \w spoke|strong="G2980"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w many|strong="G4183"\w* \w things|strong="G3588"\w* \w in|strong="G1722"\w* \w parables|strong="G3850"\w*, \w saying|strong="G3004"\w*, \wj “\+w Behold|strong="G2400"\+w*, \+w a|strong="G2532"\+w* farmer \+w went|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w to|strong="G2532"\+w* \+w sow|strong="G4687"\+w*. \wj* +\v 4 \wj \+w As|strong="G1722"\+w* \+w he|strong="G2532"\+w* \+w sowed|strong="G4687"\+w*, \+w some|strong="G3739"\+w* seeds \+w fell|strong="G4098"\+w* \+w by|strong="G1722"\+w* \+w the|strong="G1722"\+w* roadside, \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w birds|strong="G4071"\+w* \+w came|strong="G2064"\+w* \+w and|strong="G2532"\+w* \+w devoured|strong="G2719"\+w* \+w them|strong="G3588"\+w*. \wj* +\v 5 \wj \+w Others|strong="G3588"\+w* \+w fell|strong="G4098"\+w* \+w on|strong="G1909"\+w* \+w rocky|strong="G4075"\+w* \+w ground|strong="G1093"\+w*, \+w where|strong="G3699"\+w* \+w they|strong="G2532"\+w* didn’\+w t|strong="G3588"\+w* \+w have|strong="G2192"\+w* \+w much|strong="G4183"\+w* \+w soil|strong="G1093"\+w*, \+w and|strong="G2532"\+w* \+w immediately|strong="G2112"\+w* \+w they|strong="G2532"\+w* \+w sprang|strong="G1816"\+w* \+w up|strong="G3361"\+w*, \+w because|strong="G1223"\+w* \+w they|strong="G2532"\+w* \+w had|strong="G2192"\+w* \+w no|strong="G3756"\+w* depth \+w of|strong="G1223"\+w* \+w earth|strong="G1093"\+w*. \wj* +\v 6 \wj \+w When|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w sun|strong="G2246"\+w* \+w had|strong="G2192"\+w* \+w risen|strong="G2532"\+w*, \+w they|strong="G2532"\+w* \+w were|strong="G3588"\+w* \+w scorched|strong="G2739"\+w*. \+w Because|strong="G1223"\+w* \+w they|strong="G2532"\+w* \+w had|strong="G2192"\+w* \+w no|strong="G3361"\+w* \+w root|strong="G4491"\+w*, \+w they|strong="G2532"\+w* \+w withered|strong="G3583"\+w* \+w away|strong="G3583"\+w*. \wj* +\v 7 \wj \+w Others|strong="G3588"\+w* \+w fell|strong="G4098"\+w* \+w among|strong="G1909"\+w* thorns. \+w The|strong="G2532"\+w* thorns grew \+w up|strong="G2532"\+w* \+w and|strong="G2532"\+w* \+w choked|strong="G4155"\+w* \+w them|strong="G3588"\+w*. \wj* +\v 8 \wj \+w Others|strong="G3588"\+w* \+w fell|strong="G4098"\+w* \+w on|strong="G1909"\+w* \+w good|strong="G2570"\+w* \+w soil|strong="G1093"\+w* \+w and|strong="G2532"\+w* \+w yielded|strong="G1325"\+w* \+w fruit|strong="G2590"\+w*: \+w some|strong="G3739"\+w* \+w one|strong="G3739"\+w* \+w hundred|strong="G1540"\+w* times \+w as|strong="G1161"\+w* much, \+w some|strong="G3739"\+w* \+w sixty|strong="G1835"\+w*, \+w and|strong="G2532"\+w* \+w some|strong="G3739"\+w* \+w thirty|strong="G5144"\+w*. \wj* +\v 9 \wj \+w He|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w has|strong="G2192"\+w* \+w ears|strong="G3775"\+w* \+w to|strong="G2192"\+w* hear, \+w let|strong="G2192"\+w* \+w him|strong="G3588"\+w* hear.”\wj* +\p +\v 10 \w The|strong="G1722"\w* \w disciples|strong="G3101"\w* \w came|strong="G4334"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Why|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G1722"\w* \w speak|strong="G2980"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w in|strong="G1722"\w* \w parables|strong="G3850"\w*?” +\p +\v 11 \w He|strong="G1161"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w To|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w it|strong="G3754"\+w* \+w is|strong="G3588"\+w* \+w given|strong="G1325"\+w* \+w to|strong="G3004"\+w* \+w know|strong="G1097"\+w* \+w the|strong="G1161"\+w* \+w mysteries|strong="G3466"\+w* \+w of|strong="G3466"\+w* \+w the|strong="G1161"\+w* Kingdom \+w of|strong="G3466"\+w* \+w Heaven|strong="G3772"\+w*, \+w but|strong="G1161"\+w* \+w it|strong="G3754"\+w* \+w is|strong="G3588"\+w* \+w not|strong="G3756"\+w* \+w given|strong="G1325"\+w* \+w to|strong="G3004"\+w* \+w them|strong="G3588"\+w*. \wj* +\v 12 \wj \+w For|strong="G1063"\+w* \+w whoever|strong="G3739"\+w* \+w has|strong="G2192"\+w*, \+w to|strong="G2532"\+w* \+w him|strong="G1325"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w given|strong="G1325"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w abundance|strong="G4052"\+w*; \+w but|strong="G1161"\+w* \+w whoever|strong="G3739"\+w* doesn’t \+w have|strong="G2192"\+w*, \+w from|strong="G2532"\+w* \+w him|strong="G1325"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* taken away \+w even|strong="G2532"\+w* \+w that|strong="G3739"\+w* \+w which|strong="G3739"\+w* \+w he|strong="G2532"\+w* \+w has|strong="G2192"\+w*. \wj* +\v 13 \wj \+w Therefore|strong="G1223"\+w* \+w I|strong="G2532"\+w* \+w speak|strong="G2980"\+w* \+w to|strong="G2532"\+w* \+w them|strong="G1722"\+w* \+w in|strong="G1722"\+w* \+w parables|strong="G3850"\+w*, \+w because|strong="G3754"\+w* \+w seeing|strong="G3754"\+w* \+w they|strong="G2532"\+w* don’t see, \+w and|strong="G2532"\+w* hearing, \+w they|strong="G2532"\+w* don’t hear, \+w neither|strong="G3761"\+w* \+w do|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w understand|strong="G4920"\+w*. \wj* +\v 14 \wj \+w In|strong="G2532"\+w* \+w them|strong="G3588"\+w* \+w the|strong="G2532"\+w* \+w prophecy|strong="G4394"\+w* \+w of|strong="G2532"\+w* \+w Isaiah|strong="G2268"\+w* \+w is|strong="G3588"\+w* fulfilled, \+w which|strong="G3588"\+w* \+w says|strong="G3004"\+w*, \wj* +\q1 \wj ‘\+w By|strong="G2532"\+w* hearing \+w you|strong="G3004"\+w* \+w will|strong="G2532"\+w* hear,\wj* +\q2 \wj \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w in|strong="G2532"\+w* \+w no|strong="G3756"\+w* way \+w understand|strong="G4920"\+w*;\wj* +\q1 \wj \+w Seeing|strong="G3708"\+w* \+w you|strong="G3004"\+w* \+w will|strong="G2532"\+w* \+w see|strong="G3708"\+w*,\wj* +\q2 \wj \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w in|strong="G2532"\+w* \+w no|strong="G3756"\+w* way \+w perceive|strong="G3708"\+w*;\wj* +\q1 +\v 15 \wj \+w for|strong="G1063"\+w* \+w this|strong="G3778"\+w* \+w people|strong="G2992"\+w*’s \+w heart|strong="G2588"\+w* \+w has|strong="G3778"\+w* grown callous,\wj* +\q2 \wj \+w their|strong="G1438"\+w* \+w ears|strong="G3775"\+w* \+w are|strong="G3588"\+w* \+w dull|strong="G3975"\+w* \+w of|strong="G2532"\+w* \+w hearing|strong="G3775"\+w*,\wj* +\q2 \wj \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w closed|strong="G2576"\+w* \+w their|strong="G1438"\+w* \+w eyes|strong="G3788"\+w*;\wj* +\q1 \wj \+w or|strong="G2532"\+w* \+w else|strong="G2532"\+w* \+w perhaps|strong="G3379"\+w* \+w they|strong="G2532"\+w* \+w might|strong="G2532"\+w* \+w perceive|strong="G3708"\+w* \+w with|strong="G2532"\+w* \+w their|strong="G1438"\+w* \+w eyes|strong="G3788"\+w*,\wj* +\q2 \wj hear \+w with|strong="G2532"\+w* \+w their|strong="G1438"\+w* \+w ears|strong="G3775"\+w*,\wj* +\q2 \wj \+w understand|strong="G4920"\+w* \+w with|strong="G2532"\+w* \+w their|strong="G1438"\+w* \+w heart|strong="G2588"\+w*,\wj* +\q1 \wj \+w and|strong="G2532"\+w* \+w would|strong="G2532"\+w* \+w turn|strong="G1994"\+w* \+w again|strong="G1994"\+w*,\wj* +\q2 \wj \+w and|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w would|strong="G2532"\+w* \+w heal|strong="G2390"\+w* \+w them|strong="G3588"\+w*.’\wj*\x + \xo 13:15 \xt Isaiah 6:9-10\x* +\p +\v 16 \wj “\+w But|strong="G1161"\+w* \+w blessed|strong="G3107"\+w* \+w are|strong="G3588"\+w* \+w your|strong="G2532"\+w* \+w eyes|strong="G3788"\+w*, \+w for|strong="G3754"\+w* \+w they|strong="G2532"\+w* see; \+w and|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w ears|strong="G3775"\+w*, \+w for|strong="G3754"\+w* \+w they|strong="G2532"\+w* hear. \wj* +\v 17 \wj \+w For|strong="G1063"\+w* \+w most|strong="G4183"\+w* \+w certainly|strong="G1063"\+w* \+w I|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w many|strong="G4183"\+w* \+w prophets|strong="G4396"\+w* \+w and|strong="G2532"\+w* \+w righteous|strong="G1342"\+w* \+w men|strong="G1342"\+w* \+w desired|strong="G1937"\+w* \+w to|strong="G2532"\+w* \+w see|strong="G3708"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G4183"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G5210"\+w* \+w see|strong="G3708"\+w*, \+w and|strong="G2532"\+w* didn’t \+w see|strong="G3708"\+w* \+w them|strong="G3739"\+w*; \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* hear \+w the|strong="G2532"\+w* \+w things|strong="G4183"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G5210"\+w* hear, \+w and|strong="G2532"\+w* didn’t hear \+w them|strong="G3739"\+w*.\wj* +\p +\v 18 \wj “Hear, \+w then|strong="G3767"\+w*, \+w the|strong="G3588"\+w* \+w parable|strong="G3850"\+w* \+w of|strong="G3588"\+w* \+w the|strong="G3588"\+w* farmer. \wj* +\v 19 \wj \+w When|strong="G2532"\+w* \+w anyone|strong="G3956"\+w* hears \+w the|strong="G1722"\+w* \+w word|strong="G3056"\+w* \+w of|strong="G3056"\+w* \+w the|strong="G1722"\+w* Kingdom \+w and|strong="G2532"\+w* doesn’\+w t|strong="G3588"\+w* \+w understand|strong="G4920"\+w* \+w it|strong="G2532"\+w*, \+w the|strong="G1722"\+w* \+w evil|strong="G4190"\+w* \+w one|strong="G3956"\+w* \+w comes|strong="G2064"\+w* \+w and|strong="G2532"\+w* snatches away \+w that|strong="G3588"\+w* \+w which|strong="G3588"\+w* \+w has|strong="G3778"\+w* \+w been|strong="G1510"\+w* \+w sown|strong="G4687"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G3956"\+w* \+w heart|strong="G2588"\+w*. \+w This|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w what|strong="G3588"\+w* \+w was|strong="G1510"\+w* \+w sown|strong="G4687"\+w* \+w by|strong="G1722"\+w* \+w the|strong="G1722"\+w* roadside. \wj* +\v 20 \wj \+w What|strong="G3588"\+w* \+w was|strong="G1510"\+w* \+w sown|strong="G4687"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w rocky|strong="G4075"\+w* places, \+w this|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* hears \+w the|strong="G2532"\+w* \+w word|strong="G3056"\+w* \+w and|strong="G2532"\+w* \+w immediately|strong="G2112"\+w* \+w with|strong="G3326"\+w* \+w joy|strong="G5479"\+w* \+w receives|strong="G2983"\+w* \+w it|strong="G2532"\+w*; \wj* +\v 21 \wj \+w yet|strong="G1161"\+w* \+w he|strong="G1161"\+w* \+w has|strong="G2192"\+w* \+w no|strong="G3756"\+w* \+w root|strong="G4491"\+w* \+w in|strong="G1722"\+w* \+w himself|strong="G1438"\+w*, \+w but|strong="G1161"\+w* endures \+w for|strong="G1223"\+w* \+w a|strong="G2192"\+w* \+w while|strong="G1722"\+w*. \+w When|strong="G1161"\+w* oppression \+w or|strong="G2228"\+w* \+w persecution|strong="G1375"\+w* \+w arises|strong="G1096"\+w* \+w because|strong="G1223"\+w* \+w of|strong="G3056"\+w* \+w the|strong="G1722"\+w* \+w word|strong="G3056"\+w*, \+w immediately|strong="G2112"\+w* \+w he|strong="G1161"\+w* stumbles. \wj* +\v 22 \wj \+w What|strong="G3588"\+w* \+w was|strong="G1510"\+w* \+w sown|strong="G4687"\+w* \+w among|strong="G1519"\+w* \+w the|strong="G2532"\+w* thorns, \+w this|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* hears \+w the|strong="G2532"\+w* \+w word|strong="G3056"\+w*, \+w but|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w cares|strong="G3308"\+w* \+w of|strong="G3056"\+w* \+w this|strong="G3778"\+w* age \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* deceitfulness \+w of|strong="G3056"\+w* \+w riches|strong="G4149"\+w* \+w choke|strong="G4846"\+w* \+w the|strong="G2532"\+w* \+w word|strong="G3056"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w becomes|strong="G1096"\+w* unfruitful. \wj* +\v 23 \wj \+w What|strong="G3739"\+w* \+w was|strong="G1510"\+w* \+w sown|strong="G4687"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w good|strong="G2570"\+w* \+w ground|strong="G1093"\+w*, \+w this|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3739"\+w* hears \+w the|strong="G2532"\+w* \+w word|strong="G3056"\+w* \+w and|strong="G2532"\+w* \+w understands|strong="G4920"\+w* \+w it|strong="G2532"\+w*, \+w who|strong="G3739"\+w* most \+w certainly|strong="G1909"\+w* \+w bears|strong="G4160"\+w* \+w fruit|strong="G2592"\+w* \+w and|strong="G2532"\+w* \+w produces|strong="G4160"\+w*, \+w some|strong="G3739"\+w* \+w one|strong="G3739"\+w* \+w hundred|strong="G1540"\+w* times \+w as|strong="G1161"\+w* much, \+w some|strong="G3739"\+w* \+w sixty|strong="G1835"\+w*, \+w and|strong="G2532"\+w* \+w some|strong="G3739"\+w* \+w thirty|strong="G5144"\+w*.”\wj* +\p +\v 24 \w He|strong="G3588"\w* \w set|strong="G3908"\w* \w another|strong="G3588"\w* \w parable|strong="G3850"\w* \w before|strong="G3908"\w* \w them|strong="G3588"\w*, \w saying|strong="G3004"\w*, \wj “\+w The|strong="G1722"\+w* Kingdom \+w of|strong="G1722"\+w* \+w Heaven|strong="G3772"\+w* \+w is|strong="G3588"\+w* \+w like|strong="G3666"\+w* \+w a|strong="G1722"\+w* man \+w who|strong="G3588"\+w* \+w sowed|strong="G4687"\+w* \+w good|strong="G2570"\+w* \+w seed|strong="G4690"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G1722"\+w* field, \wj* +\v 25 \wj \+w but|strong="G1161"\+w* \+w while|strong="G1722"\+w* \+w people|strong="G3588"\+w* \+w slept|strong="G2518"\+w*, \+w his|strong="G1722"\+w* \+w enemy|strong="G2190"\+w* \+w came|strong="G2064"\+w* \+w and|strong="G2532"\+w* \+w sowed|strong="G4687"\+w* darnel \+w weeds|strong="G2215"\+w*\wj*\f + \fr 13:25 \ft darnel is a weed grass (probably bearded darnel or lolium temulentum) that looks very much like wheat until it is mature, when the difference becomes very apparent.\f* \wj \+w also|strong="G2532"\+w* \+w among|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w wheat|strong="G4621"\+w*, \+w and|strong="G2532"\+w* \+w went|strong="G2064"\+w* away. \wj* +\v 26 \wj \+w But|strong="G1161"\+w* \+w when|strong="G3753"\+w* \+w the|strong="G2532"\+w* \+w blade|strong="G5528"\+w* sprang \+w up|strong="G2532"\+w* \+w and|strong="G2532"\+w* \+w produced|strong="G4160"\+w* \+w grain|strong="G2590"\+w*, \+w then|strong="G2532"\+w* \+w the|strong="G2532"\+w* darnel \+w weeds|strong="G2215"\+w* \+w appeared|strong="G5316"\+w* \+w also|strong="G2532"\+w*. \wj* +\v 27 \wj \+w The|strong="G1722"\+w* \+w servants|strong="G1401"\+w* \+w of|strong="G2962"\+w* \+w the|strong="G1722"\+w* \+w householder|strong="G3617"\+w* \+w came|strong="G4334"\+w* \+w and|strong="G1161"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G3004"\+w* \+w him|strong="G3588"\+w*, ‘\+w Sir|strong="G2962"\+w*, didn’\+w t|strong="G3588"\+w* \+w you|strong="G1722"\+w* \+w sow|strong="G4687"\+w* \+w good|strong="G2570"\+w* \+w seed|strong="G4690"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G4674"\+w* field? \+w Where|strong="G4159"\+w* \+w did|strong="G3767"\+w* \+w these|strong="G3588"\+w* darnel \+w weeds|strong="G2215"\+w* \+w come|strong="G4334"\+w* \+w from|strong="G3588"\+w*?’\wj* +\p +\v 28 \wj “\+w He|strong="G1161"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G3004"\+w* \+w them|strong="G3588"\+w*, ‘\+w An|strong="G4160"\+w* \+w enemy|strong="G2190"\+w* \+w has|strong="G3778"\+w* \+w done|strong="G4160"\+w* \+w this|strong="G3778"\+w*.’\wj* +\p \wj “\+w The|strong="G1161"\+w* \+w servants|strong="G1401"\+w* \+w asked|strong="G3004"\+w* \+w him|strong="G3588"\+w*, ‘\+w Do|strong="G4160"\+w* \+w you|strong="G3004"\+w* \+w want|strong="G2309"\+w* \+w us|strong="G3004"\+w* \+w to|strong="G3004"\+w* \+w go|strong="G2309"\+w* \+w and|strong="G1161"\+w* \+w gather|strong="G4816"\+w* \+w them|strong="G3588"\+w* \+w up|strong="G4816"\+w*?’ \wj* +\p +\v 29 \wj “\+w But|strong="G1161"\+w* \+w he|strong="G1161"\+w* \+w said|strong="G5346"\+w*, ‘\+w No|strong="G3756"\+w*, \+w lest|strong="G3379"\+w* \+w perhaps|strong="G3379"\+w* \+w while|strong="G1161"\+w* you \+w gather|strong="G4816"\+w* \+w up|strong="G4816"\+w* \+w the|strong="G1161"\+w* darnel \+w weeds|strong="G2215"\+w*, you root \+w up|strong="G4816"\+w* \+w the|strong="G1161"\+w* \+w wheat|strong="G4621"\+w* \+w with|strong="G3756"\+w* \+w them|strong="G3588"\+w*. \wj* +\v 30 \wj \+w Let|strong="G1161"\+w* \+w both|strong="G2532"\+w* \+w grow|strong="G4885"\+w* \+w together|strong="G4863"\+w* \+w until|strong="G3360"\+w* \+w the|strong="G1722"\+w* \+w harvest|strong="G2326"\+w*, \+w and|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w harvest|strong="G2326"\+w* \+w time|strong="G2540"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w the|strong="G1722"\+w* \+w reapers|strong="G2327"\+w*, “\+w First|strong="G4413"\+w*, \+w gather|strong="G4863"\+w* \+w up|strong="G1210"\+w* \+w the|strong="G1722"\+w* darnel \+w weeds|strong="G2215"\+w*, \+w and|strong="G2532"\+w* \+w bind|strong="G1210"\+w* \+w them|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w bundles|strong="G1197"\+w* \+w to|strong="G1519"\+w* \+w burn|strong="G2618"\+w* \+w them|strong="G3588"\+w*; \+w but|strong="G1161"\+w* \+w gather|strong="G4863"\+w* \+w the|strong="G1722"\+w* \+w wheat|strong="G4621"\+w* \+w into|strong="G1519"\+w* \+w my|strong="G1722"\+w* barn.”’”\wj* +\p +\v 31 \w He|strong="G3739"\w* \w set|strong="G3908"\w* \w another|strong="G3739"\w* \w parable|strong="G3850"\w* \w before|strong="G3908"\w* \w them|strong="G3588"\w*, \w saying|strong="G3004"\w*, \wj “\+w The|strong="G1722"\+w* Kingdom \+w of|strong="G1722"\+w* \+w Heaven|strong="G3772"\+w* \+w is|strong="G1510"\+w* \+w like|strong="G3664"\+w* \+w a|strong="G1722"\+w* \+w grain|strong="G2848"\+w* \+w of|strong="G1722"\+w* \+w mustard|strong="G4615"\+w* \+w seed|strong="G2848"\+w* \+w which|strong="G3739"\+w* \+w a|strong="G1722"\+w* \+w man|strong="G3739"\+w* \+w took|strong="G2983"\+w*, \+w and|strong="G3772"\+w* \+w sowed|strong="G4687"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G1722"\+w* field, \wj* +\v 32 \wj \+w which|strong="G3739"\+w* \+w indeed|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w smaller|strong="G3398"\+w* \+w than|strong="G3173"\+w* \+w all|strong="G3956"\+w* \+w seeds|strong="G4690"\+w*. \+w But|strong="G1161"\+w* \+w when|strong="G3752"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w grown|strong="G3173"\+w*, \+w it|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w greater|strong="G3173"\+w* \+w than|strong="G3173"\+w* \+w the|strong="G1722"\+w* \+w herbs|strong="G3001"\+w* \+w and|strong="G2532"\+w* \+w becomes|strong="G1096"\+w* \+w a|strong="G1096"\+w* \+w tree|strong="G1186"\+w*, \+w so|strong="G2532"\+w* \+w that|strong="G3739"\+w* \+w the|strong="G1722"\+w* \+w birds|strong="G4071"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w air|strong="G3772"\+w* \+w come|strong="G2064"\+w* \+w and|strong="G2532"\+w* \+w lodge|strong="G2681"\+w* \+w in|strong="G1722"\+w* \+w its|strong="G3956"\+w* \+w branches|strong="G2798"\+w*.”\wj* +\p +\v 33 \w He|strong="G3739"\w* \w spoke|strong="G2980"\w* \w another|strong="G3739"\w* \w parable|strong="G3850"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*. \wj “\+w The|strong="G1519"\+w* Kingdom \+w of|strong="G3588"\+w* \+w Heaven|strong="G3772"\+w* \+w is|strong="G1510"\+w* \+w like|strong="G3664"\+w* \+w yeast|strong="G2219"\+w* \+w which|strong="G3739"\+w* \+w a|strong="G1519"\+w* \+w woman|strong="G1135"\+w* \+w took|strong="G2983"\+w* \+w and|strong="G3772"\+w* \+w hid|strong="G1470"\+w* \+w in|strong="G1519"\+w* \+w three|strong="G5140"\+w* \+w measures|strong="G4568"\+w*\wj*\f + \fr 13:33 \ft literally, three sata. Three sata is about 39 liters or a bit more than a bushel\f* \wj \+w of|strong="G3588"\+w* meal, \+w until|strong="G2193"\+w* \+w it|strong="G3739"\+w* \+w was|strong="G1510"\+w* \+w all|strong="G3650"\+w* \+w leavened|strong="G2220"\+w*.”\wj* +\p +\v 34 \w Jesus|strong="G2424"\w* \w spoke|strong="G2980"\w* \w all|strong="G3956"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w* \w in|strong="G1722"\w* \w parables|strong="G3850"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w multitudes|strong="G3793"\w*; \w and|strong="G2532"\w* \w without|strong="G5565"\w* \w a|strong="G2532"\w* \w parable|strong="G3850"\w*, \w he|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w speak|strong="G2980"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, +\v 35 \w that|strong="G3588"\w* \w it|strong="G1223"\w* \w might|strong="G1473"\w* \w be|strong="G3588"\w* \w fulfilled|strong="G4137"\w* \w which|strong="G3588"\w* \w was|strong="G3588"\w* \w spoken|strong="G3004"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w prophet|strong="G4396"\w*, \w saying|strong="G3004"\w*, +\q1 “\w I|strong="G1473"\w* \w will|strong="G1473"\w* open \w my|strong="G1722"\w* \w mouth|strong="G4750"\w* \w in|strong="G1722"\w* \w parables|strong="G3850"\w*; +\q2 \w I|strong="G1473"\w* \w will|strong="G1473"\w* \w utter|strong="G2044"\w* \w things|strong="G3588"\w* \w hidden|strong="G2928"\w* \w from|strong="G3588"\w* \w the|strong="G1722"\w* \w foundation|strong="G2602"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* world.”\x + \xo 13:35 \xt Psalms 78:2\x* +\p +\v 36 \w Then|strong="G2532"\w* \w Jesus|strong="G3004"\w* \w sent|strong="G2532"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w* away, \w and|strong="G2532"\w* \w went|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w house|strong="G3614"\w*. \w His|strong="G1519"\w* \w disciples|strong="G3101"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w Explain|strong="G1285"\w* \w to|strong="G1519"\w* \w us|strong="G3004"\w* \w the|strong="G2532"\w* \w parable|strong="G3850"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* darnel \w weeds|strong="G2215"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* field.” +\p +\v 37 \w He|strong="G1161"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w He|strong="G1161"\+w* \+w who|strong="G3588"\+w* \+w sows|strong="G4687"\+w* \+w the|strong="G1161"\+w* \+w good|strong="G2570"\+w* \+w seed|strong="G4690"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G1161"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w*, \wj* +\v 38 \wj \+w the|strong="G1161"\+w* field \+w is|strong="G1510"\+w* \+w the|strong="G1161"\+w* \+w world|strong="G2889"\+w*, \+w the|strong="G1161"\+w* \+w good|strong="G2570"\+w* \+w seeds|strong="G4690"\+w* \+w are|strong="G1510"\+w* \+w the|strong="G1161"\+w* \+w children|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G1161"\+w* Kingdom, \+w and|strong="G1161"\+w* \+w the|strong="G1161"\+w* darnel \+w weeds|strong="G2215"\+w* \+w are|strong="G1510"\+w* \+w the|strong="G1161"\+w* \+w children|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G1161"\+w* \+w evil|strong="G4190"\+w* \+w one|strong="G3588"\+w*. \wj* +\v 39 \wj \+w The|strong="G1161"\+w* \+w enemy|strong="G2190"\+w* \+w who|strong="G3588"\+w* \+w sowed|strong="G4687"\+w* \+w them|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G1161"\+w* \+w devil|strong="G1228"\+w*. \+w The|strong="G1161"\+w* \+w harvest|strong="G2326"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G1161"\+w* \+w end|strong="G4930"\+w* \+w of|strong="G3588"\+w* \+w the|strong="G1161"\+w* age, \+w and|strong="G1161"\+w* \+w the|strong="G1161"\+w* \+w reapers|strong="G2327"\+w* \+w are|strong="G1510"\+w* angels. \wj* +\v 40 \wj \+w As|strong="G5618"\+w* \+w therefore|strong="G3767"\+w* \+w the|strong="G1722"\+w* darnel \+w weeds|strong="G2215"\+w* \+w are|strong="G1510"\+w* \+w gathered|strong="G4816"\+w* \+w up|strong="G2618"\+w* \+w and|strong="G2532"\+w* \+w burned|strong="G2618"\+w* \+w with|strong="G1722"\+w* \+w fire|strong="G4442"\+w*; \+w so|strong="G3779"\+w* \+w will|strong="G1510"\+w* \+w it|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w at|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w end|strong="G4930"\+w* \+w of|strong="G2532"\+w* \+w this|strong="G3588"\+w* age. \wj* +\v 41 \wj \+w The|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G1537"\+w* \+w Man|strong="G3956"\+w* \+w will|strong="G2532"\+w* send \+w out|strong="G1537"\+w* \+w his|strong="G3956"\+w* angels, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w gather|strong="G4816"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w his|strong="G3956"\+w* Kingdom \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w that|strong="G3588"\+w* \+w cause|strong="G4160"\+w* \+w stumbling|strong="G4625"\+w* \+w and|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w do|strong="G4160"\+w* iniquity, \wj* +\v 42 \wj \+w and|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w cast|strong="G2532"\+w* \+w them|strong="G3588"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w furnace|strong="G2575"\+w* \+w of|strong="G2532"\+w* \+w fire|strong="G4442"\+w*. \+w There|strong="G1563"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w weeping|strong="G2805"\+w* \+w and|strong="G2532"\+w* \+w gnashing|strong="G1030"\+w* \+w of|strong="G2532"\+w* \+w teeth|strong="G3599"\+w*. \wj* +\v 43 \wj \+w Then|strong="G5119"\+w* \+w the|strong="G1722"\+w* \+w righteous|strong="G1342"\+w* \+w will|strong="G3962"\+w* \+w shine|strong="G1584"\+w* \+w like|strong="G5613"\+w* \+w the|strong="G1722"\+w* \+w sun|strong="G2246"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* Kingdom \+w of|strong="G3962"\+w* \+w their|strong="G1722"\+w* \+w Father|strong="G3962"\+w*. \+w He|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w has|strong="G2192"\+w* \+w ears|strong="G3775"\+w* \+w to|strong="G1722"\+w* hear, \+w let|strong="G2192"\+w* \+w him|strong="G3588"\+w* hear.\wj* +\p +\v 44 \wj “\+w Again|strong="G2532"\+w*, \+w the|strong="G1722"\+w* Kingdom \+w of|strong="G2532"\+w* \+w Heaven|strong="G3772"\+w* \+w is|strong="G1510"\+w* \+w like|strong="G3664"\+w* \+w treasure|strong="G2344"\+w* \+w hidden|strong="G2928"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* field, \+w which|strong="G3739"\+w* \+w a|strong="G2192"\+w* \+w man|strong="G3956"\+w* \+w found|strong="G2147"\+w* \+w and|strong="G2532"\+w* \+w hid|strong="G2928"\+w*. \+w In|strong="G1722"\+w* \+w his|strong="G3956"\+w* \+w joy|strong="G5479"\+w*, \+w he|strong="G2532"\+w* \+w goes|strong="G5217"\+w* \+w and|strong="G2532"\+w* \+w sells|strong="G4453"\+w* \+w all|strong="G3956"\+w* \+w that|strong="G3739"\+w* \+w he|strong="G2532"\+w* \+w has|strong="G2192"\+w* \+w and|strong="G2532"\+w* buys \+w that|strong="G3739"\+w* field.\wj* +\p +\v 45 \wj “\+w Again|strong="G3825"\+w*, \+w the|strong="G3588"\+w* Kingdom \+w of|strong="G3588"\+w* \+w Heaven|strong="G3772"\+w* \+w is|strong="G1510"\+w* \+w like|strong="G3664"\+w* \+w a|strong="G1510"\+w* man \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w a|strong="G1510"\+w* \+w merchant|strong="G1713"\+w* \+w seeking|strong="G2212"\+w* \+w fine|strong="G2570"\+w* \+w pearls|strong="G3135"\+w*, \wj* +\v 46 \wj \+w who|strong="G3956"\+w* \+w having|strong="G2192"\+w* \+w found|strong="G2147"\+w* \+w one|strong="G1520"\+w* \+w pearl|strong="G3135"\+w* \+w of|strong="G2532"\+w* \+w great|strong="G3956"\+w* price, \+w he|strong="G2532"\+w* \+w went|strong="G2532"\+w* \+w and|strong="G2532"\+w* \+w sold|strong="G4097"\+w* \+w all|strong="G3956"\+w* \+w that|strong="G3956"\+w* \+w he|strong="G2532"\+w* \+w had|strong="G2192"\+w* \+w and|strong="G2532"\+w* bought \+w it|strong="G2532"\+w*.\wj* +\p +\v 47 \wj “\+w Again|strong="G3825"\+w*, \+w the|strong="G2532"\+w* Kingdom \+w of|strong="G1537"\+w* \+w Heaven|strong="G3772"\+w* \+w is|strong="G1510"\+w* \+w like|strong="G3664"\+w* \+w a|strong="G2532"\+w* \+w dragnet|strong="G4522"\+w* \+w that|strong="G3588"\+w* \+w was|strong="G1510"\+w* \+w cast|strong="G2532"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w sea|strong="G2281"\+w* \+w and|strong="G2532"\+w* \+w gathered|strong="G4863"\+w* \+w some|strong="G3588"\+w* fish \+w of|strong="G1537"\+w* \+w every|strong="G3956"\+w* \+w kind|strong="G3956"\+w*, \wj* +\v 48 \wj \+w which|strong="G3739"\+w*, \+w when|strong="G3753"\+w* \+w it|strong="G2532"\+w* \+w was|strong="G3588"\+w* \+w filled|strong="G4137"\+w*, fishermen \+w drew|strong="G2532"\+w* \+w up|strong="G1519"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* beach. \+w They|strong="G2532"\+w* \+w sat|strong="G2523"\+w* \+w down|strong="G2523"\+w* \+w and|strong="G2532"\+w* \+w gathered|strong="G4816"\+w* \+w the|strong="G2532"\+w* \+w good|strong="G2570"\+w* \+w into|strong="G1519"\+w* containers, \+w but|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w bad|strong="G4550"\+w* \+w they|strong="G2532"\+w* threw \+w away|strong="G1854"\+w*. \wj* +\v 49 \wj \+w So|strong="G3779"\+w* \+w it|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w end|strong="G4930"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1722"\+w* world.\wj*\f + \fr 13:49 \ft or, end of the age.\f* \wj \+w The|strong="G1722"\+w* angels \+w will|strong="G1510"\+w* \+w come|strong="G1831"\+w* \+w and|strong="G2532"\+w* separate \+w the|strong="G1722"\+w* \+w wicked|strong="G4190"\+w* \+w from|strong="G1537"\+w* \+w among|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w righteous|strong="G1342"\+w*, \wj* +\v 50 \wj \+w and|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w cast|strong="G2532"\+w* \+w them|strong="G3588"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w furnace|strong="G2575"\+w* \+w of|strong="G2532"\+w* \+w fire|strong="G4442"\+w*. \+w There|strong="G1563"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w weeping|strong="G2805"\+w* \+w and|strong="G2532"\+w* \+w gnashing|strong="G1030"\+w* \+w of|strong="G2532"\+w* \+w teeth|strong="G3599"\+w*.”\wj* +\v 51 \w Jesus|strong="G3004"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3004"\w*, \wj “\+w Have|strong="G3956"\+w* \+w you|strong="G3004"\+w* \+w understood|strong="G4920"\+w* \+w all|strong="G3956"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3956"\+w*?” \wj* +\p \w They|strong="G3004"\w* \w answered|strong="G3004"\w* him, “\w Yes|strong="G3483"\w*, Lord.” +\p +\v 52 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Therefore|strong="G1223"\+w* \+w every|strong="G3956"\+w* \+w scribe|strong="G1122"\+w* \+w who|strong="G3588"\+w* \+w has|strong="G3778"\+w* \+w been|strong="G1510"\+w* \+w made|strong="G1161"\+w* \+w a|strong="G2532"\+w* \+w disciple|strong="G3100"\+w* \+w in|strong="G2532"\+w* \+w the|strong="G2532"\+w* Kingdom \+w of|strong="G1537"\+w* \+w Heaven|strong="G3772"\+w* \+w is|strong="G1510"\+w* \+w like|strong="G3664"\+w* \+w a|strong="G2532"\+w* \+w man|strong="G3778"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w a|strong="G2532"\+w* \+w householder|strong="G3617"\+w*, \+w who|strong="G3588"\+w* \+w brings|strong="G1544"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w his|strong="G3956"\+w* \+w treasure|strong="G2344"\+w* \+w new|strong="G2537"\+w* \+w and|strong="G2532"\+w* \+w old|strong="G3820"\+w* \+w things|strong="G3956"\+w*.”\wj* +\p +\v 53 \w When|strong="G3753"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* \w finished|strong="G5055"\w* \w these|strong="G3778"\w* \w parables|strong="G3850"\w*, \w he|strong="G2532"\w* \w departed|strong="G3332"\w* \w from|strong="G2532"\w* \w there|strong="G2532"\w*. +\v 54 \w Coming|strong="G2064"\w* \w into|strong="G1519"\w* \w his|strong="G1438"\w* \w own|strong="G1438"\w* \w country|strong="G3968"\w*, \w he|strong="G2532"\w* \w taught|strong="G1321"\w* \w them|strong="G3588"\w* \w in|strong="G1722"\w* \w their|strong="G1438"\w* \w synagogue|strong="G4864"\w*, \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w astonished|strong="G1605"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Where|strong="G4159"\w* \w did|strong="G2532"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w get|strong="G2532"\w* \w this|strong="G3778"\w* \w wisdom|strong="G4678"\w* \w and|strong="G2532"\w* \w these|strong="G3778"\w* \w mighty|strong="G1411"\w* \w works|strong="G1411"\w*? +\v 55 Isn’\w t|strong="G3588"\w* \w this|strong="G3778"\w* \w the|strong="G2532"\w* \w carpenter|strong="G5045"\w*’s \w son|strong="G5207"\w*? Isn’\w t|strong="G3588"\w* \w his|strong="G2532"\w* \w mother|strong="G3384"\w* \w called|strong="G3004"\w* \w Mary|strong="G3137"\w*, \w and|strong="G2532"\w* \w his|strong="G2532"\w* brothers \w James|strong="G2385"\w*, Joses, \w Simon|strong="G4613"\w*, \w and|strong="G2532"\w* \w Judas|strong="G2455"\w*?\f + \fr 13:55 \ft or, Judah\f* +\v 56 Aren’\w t|strong="G3588"\w* \w all|strong="G3956"\w* \w of|strong="G2532"\w* \w his|strong="G3956"\w* sisters \w with|strong="G4314"\w* \w us|strong="G2249"\w*? \w Where|strong="G4159"\w* \w then|strong="G3767"\w* \w did|strong="G2532"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w get|strong="G2532"\w* \w all|strong="G3956"\w* \w of|strong="G2532"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w*?” +\v 57 \w They|strong="G2532"\w* \w were|strong="G1510"\w* \w offended|strong="G4624"\w* \w by|strong="G1722"\w* \w him|strong="G3588"\w*. +\p \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w A|strong="G2532"\+w* \+w prophet|strong="G4396"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w without|strong="G3361"\+w* honor, \+w except|strong="G1487"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G1722"\+w* \+w own|strong="G2398"\+w* \+w country|strong="G3968"\+w* \+w and|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G1722"\+w* \+w own|strong="G2398"\+w* \+w house|strong="G3614"\+w*.”\wj* +\v 58 \w He|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w do|strong="G4160"\w* \w many|strong="G4183"\w* \w mighty|strong="G1411"\w* \w works|strong="G1411"\w* \w there|strong="G1563"\w* \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w their|strong="G2532"\w* unbelief. +\c 14 +\p +\v 1 \w At|strong="G1722"\w* \w that|strong="G3588"\w* \w time|strong="G2540"\w*, \w Herod|strong="G2264"\w* \w the|strong="G1722"\w* \w tetrarch|strong="G5076"\w* heard \w the|strong="G1722"\w* report \w concerning|strong="G1722"\w* \w Jesus|strong="G2424"\w*, +\v 2 \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w his|strong="G1223"\w* \w servants|strong="G3816"\w*, “\w This|strong="G3778"\w* \w is|strong="G1510"\w* \w John|strong="G2491"\w* \w the|strong="G1722"\w* Baptizer. \w He|strong="G2532"\w* \w is|strong="G1510"\w* \w risen|strong="G1453"\w* \w from|strong="G2532"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w*. \w That|strong="G3588"\w* \w is|strong="G1510"\w* \w why|strong="G1223"\w* \w these|strong="G3778"\w* \w powers|strong="G1411"\w* \w work|strong="G1754"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*.” +\v 3 \w For|strong="G1063"\w* \w Herod|strong="G2264"\w* \w had|strong="G2532"\w* \w arrested|strong="G2902"\w* \w John|strong="G2491"\w*, \w bound|strong="G1210"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w put|strong="G2532"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w prison|strong="G5438"\w* \w for|strong="G1063"\w* \w the|strong="G1722"\w* \w sake|strong="G1223"\w* \w of|strong="G1223"\w* \w Herodias|strong="G2266"\w*, \w his|strong="G1223"\w* brother \w Philip|strong="G5376"\w*’s \w wife|strong="G1135"\w*. +\v 4 \w For|strong="G1063"\w* \w John|strong="G2491"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w It|strong="G1063"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w lawful|strong="G1832"\w* \w for|strong="G1063"\w* \w you|strong="G4771"\w* \w to|strong="G3004"\w* \w have|strong="G2192"\w* \w her|strong="G1438"\w*.” +\v 5 \w When|strong="G5613"\w* \w he|strong="G2532"\w* \w would|strong="G2309"\w* \w have|strong="G2192"\w* \w put|strong="G2532"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* death, \w he|strong="G2532"\w* \w feared|strong="G5399"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w*, \w because|strong="G3754"\w* \w they|strong="G2532"\w* \w counted|strong="G2192"\w* \w him|strong="G3588"\w* \w as|strong="G5613"\w* \w a|strong="G2192"\w* \w prophet|strong="G4396"\w*. +\v 6 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w Herod|strong="G2264"\w*’s \w birthday|strong="G1077"\w* \w came|strong="G1096"\w*, \w the|strong="G1722"\w* \w daughter|strong="G2364"\w* \w of|strong="G2532"\w* \w Herodias|strong="G2266"\w* \w danced|strong="G3738"\w* \w among|strong="G1722"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* pleased \w Herod|strong="G2264"\w*. +\v 7 \w Therefore|strong="G3606"\w* \w he|strong="G3739"\w* \w promised|strong="G3670"\w* \w with|strong="G3326"\w* \w an|strong="G1325"\w* \w oath|strong="G3727"\w* \w to|strong="G1325"\w* \w give|strong="G1325"\w* \w her|strong="G1437"\w* \w whatever|strong="G3739"\w* \w she|strong="G1437"\w* \w should|strong="G1325"\w* ask. +\v 8 \w She|strong="G1161"\w*, \w being|strong="G1161"\w* \w prompted|strong="G4264"\w* \w by|strong="G5259"\w* \w her|strong="G1325"\w* \w mother|strong="G3384"\w*, \w said|strong="G5346"\w*, “\w Give|strong="G1325"\w* \w me|strong="G1325"\w* \w here|strong="G5602"\w* \w on|strong="G1909"\w* \w a|strong="G1909"\w* \w platter|strong="G4094"\w* \w the|strong="G1161"\w* \w head|strong="G2776"\w* \w of|strong="G5259"\w* \w John|strong="G2491"\w* \w the|strong="G1161"\w* Baptizer.” +\p +\v 9 \w The|strong="G2532"\w* \w king|strong="G3588"\w* \w was|strong="G3588"\w* \w grieved|strong="G3076"\w*, \w but|strong="G2532"\w* \w for|strong="G1223"\w* \w the|strong="G2532"\w* \w sake|strong="G1223"\w* \w of|strong="G1223"\w* \w his|strong="G1223"\w* \w oaths|strong="G3727"\w* \w and|strong="G2532"\w* \w of|strong="G1223"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w sat|strong="G2532"\w* \w at|strong="G1223"\w* \w the|strong="G2532"\w* \w table|strong="G4873"\w* \w with|strong="G1223"\w* \w him|strong="G3588"\w*, \w he|strong="G2532"\w* \w commanded|strong="G2753"\w* \w it|strong="G2532"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w given|strong="G1325"\w*, +\v 10 \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w sent|strong="G3992"\w* \w and|strong="G2532"\w* beheaded \w John|strong="G2491"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w prison|strong="G5438"\w*. +\v 11 \w His|strong="G1909"\w* \w head|strong="G2776"\w* \w was|strong="G3588"\w* \w brought|strong="G5342"\w* \w on|strong="G1909"\w* \w a|strong="G2532"\w* \w platter|strong="G4094"\w* \w and|strong="G2532"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* young lady; \w and|strong="G2532"\w* \w she|strong="G2532"\w* \w brought|strong="G5342"\w* \w it|strong="G2532"\w* \w to|strong="G2532"\w* \w her|strong="G1325"\w* \w mother|strong="G3384"\w*. +\v 12 \w His|strong="G2532"\w* \w disciples|strong="G3101"\w* \w came|strong="G2064"\w*, \w took|strong="G2532"\w* \w the|strong="G2532"\w* \w body|strong="G4430"\w*, \w and|strong="G2532"\w* \w buried|strong="G2290"\w* \w it|strong="G2532"\w*. \w Then|strong="G2532"\w* \w they|strong="G2532"\w* \w went|strong="G2064"\w* \w and|strong="G2532"\w* told \w Jesus|strong="G2424"\w*. +\v 13 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w Jesus|strong="G2424"\w* heard \w this|strong="G3588"\w*, \w he|strong="G2532"\w* \w withdrew|strong="G2424"\w* \w from|strong="G2532"\w* \w there|strong="G2532"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* \w boat|strong="G4143"\w* \w to|strong="G1519"\w* \w a|strong="G2532"\w* \w deserted|strong="G2048"\w* \w place|strong="G5117"\w* \w apart|strong="G2398"\w*. \w When|strong="G1161"\w* \w the|strong="G1722"\w* \w multitudes|strong="G3793"\w* heard \w it|strong="G2532"\w*, \w they|strong="G2532"\w* followed \w him|strong="G3588"\w* \w on|strong="G1722"\w* \w foot|strong="G3979"\w* \w from|strong="G2532"\w* \w the|strong="G1722"\w* \w cities|strong="G4172"\w*. +\p +\v 14 \w Jesus|strong="G1831"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w a|strong="G2532"\w* \w great|strong="G4183"\w* \w multitude|strong="G3793"\w*. \w He|strong="G2532"\w* \w had|strong="G2532"\w* \w compassion|strong="G4697"\w* \w on|strong="G1909"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w healed|strong="G2323"\w* \w their|strong="G2532"\w* sick. +\v 15 \w When|strong="G1161"\w* \w evening|strong="G3798"\w* \w had|strong="G2532"\w* \w come|strong="G1096"\w*, \w his|strong="G1438"\w* \w disciples|strong="G3101"\w* \w came|strong="G4334"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w This|strong="G3588"\w* \w place|strong="G5117"\w* \w is|strong="G1510"\w* \w deserted|strong="G2048"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w hour|strong="G5610"\w* \w is|strong="G1510"\w* \w already|strong="G2235"\w* \w late|strong="G3928"\w*. Send \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w* \w away|strong="G3928"\w*, \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w may|strong="G2532"\w* \w go|strong="G3928"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w villages|strong="G2968"\w*, \w and|strong="G2532"\w* buy \w themselves|strong="G1438"\w* \w food|strong="G1033"\w*.” +\p +\v 16 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w They|strong="G1161"\+w* don’\+w t|strong="G3588"\+w* \+w need|strong="G5532"\+w* \+w to|strong="G3004"\+w* \+w go|strong="G2192"\+w* away. \+w You|strong="G5210"\+w* \+w give|strong="G1325"\+w* \+w them|strong="G3588"\+w* something \+w to|strong="G3004"\+w* \+w eat|strong="G2068"\+w*.”\wj* +\p +\v 17 \w They|strong="G2532"\w* \w told|strong="G3004"\w* \w him|strong="G3588"\w*, “\w We|strong="G2532"\w* \w only|strong="G1487"\w* \w have|strong="G2192"\w* \w here|strong="G5602"\w* \w five|strong="G4002"\w* loaves \w and|strong="G2532"\w* \w two|strong="G1417"\w* \w fish|strong="G2486"\w*.” +\p +\v 18 \w He|strong="G1161"\w* \w said|strong="G3004"\w*, \wj “\+w Bring|strong="G5342"\+w* \+w them|strong="G3588"\+w* \+w here|strong="G5602"\+w* \+w to|strong="G3004"\+w* \+w me|strong="G1473"\+w*.”\wj* +\v 19 \w He|strong="G2532"\w* \w commanded|strong="G2753"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w* \w to|strong="G1519"\w* sit down \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w grass|strong="G5528"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w took|strong="G2983"\w* \w the|strong="G2532"\w* \w five|strong="G4002"\w* loaves \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w two|strong="G1417"\w* \w fish|strong="G2486"\w*, \w and|strong="G2532"\w* \w looking|strong="G2532"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w heaven|strong="G3772"\w*, \w he|strong="G2532"\w* \w blessed|strong="G2127"\w*, \w broke|strong="G2806"\w* \w and|strong="G2532"\w* \w gave|strong="G1325"\w* \w the|strong="G2532"\w* loaves \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w*; \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w gave|strong="G1325"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w*. +\v 20 \w They|strong="G2532"\w* \w all|strong="G3956"\w* \w ate|strong="G2068"\w* \w and|strong="G2532"\w* \w were|strong="G3588"\w* \w filled|strong="G5526"\w*. \w They|strong="G2532"\w* \w took|strong="G2532"\w* \w up|strong="G2532"\w* \w twelve|strong="G1427"\w* \w baskets|strong="G2894"\w* \w full|strong="G4134"\w* \w of|strong="G2532"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w remained|strong="G4052"\w* \w left|strong="G4052"\w* \w over|strong="G4052"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w broken|strong="G2801"\w* \w pieces|strong="G2801"\w*. +\v 21 \w Those|strong="G3588"\w* \w who|strong="G3588"\w* \w ate|strong="G2068"\w* \w were|strong="G1510"\w* \w about|strong="G5616"\w* \w five|strong="G4000"\w* \w thousand|strong="G4000"\w* \w men|strong="G3588"\w*, \w in|strong="G2532"\w* addition \w to|strong="G2532"\w* \w women|strong="G1135"\w* \w and|strong="G2532"\w* \w children|strong="G3813"\w*. +\p +\v 22 \w Immediately|strong="G2112"\w* \w Jesus|strong="G2532"\w* \w made|strong="G1519"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w get|strong="G1684"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w boat|strong="G4143"\w* \w and|strong="G2532"\w* \w go|strong="G4254"\w* \w ahead|strong="G4254"\w* \w of|strong="G2532"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w other|strong="G4008"\w* \w side|strong="G4008"\w*, \w while|strong="G2193"\w* \w he|strong="G2532"\w* \w sent|strong="G2532"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w* away. +\v 23 \w After|strong="G2596"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w sent|strong="G2532"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w* away, \w he|strong="G2532"\w* \w went|strong="G2532"\w* \w up|strong="G1519"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w mountain|strong="G3735"\w* \w by|strong="G2596"\w* \w himself|strong="G2398"\w* \w to|strong="G1519"\w* \w pray|strong="G4336"\w*. \w When|strong="G1161"\w* \w evening|strong="G3798"\w* \w had|strong="G2532"\w* \w come|strong="G1096"\w*, \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w there|strong="G1563"\w* \w alone|strong="G3441"\w*. +\v 24 \w But|strong="G1161"\w* \w the|strong="G1161"\w* \w boat|strong="G4143"\w* \w was|strong="G1510"\w* \w now|strong="G1161"\w* \w in|strong="G1161"\w* \w the|strong="G1161"\w* \w middle|strong="G3319"\w* \w of|strong="G5259"\w* \w the|strong="G1161"\w* \w sea|strong="G2281"\w*, distressed \w by|strong="G5259"\w* \w the|strong="G1161"\w* \w waves|strong="G2949"\w*, \w for|strong="G1063"\w* \w the|strong="G1161"\w* wind \w was|strong="G1510"\w* \w contrary|strong="G1727"\w*. +\v 25 \w In|strong="G1909"\w* \w the|strong="G1161"\w* \w fourth|strong="G5067"\w* \w watch|strong="G5438"\w* \w of|strong="G1909"\w* \w the|strong="G1161"\w* \w night|strong="G3571"\w*,\f + \fr 14:25 \ft The night was equally divided into four watches, so the fourth watch is approximately 3:00 a.m. to sunrise. \f* \w Jesus|strong="G2064"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \w walking|strong="G4043"\w* \w on|strong="G1909"\w* \w the|strong="G1161"\w* \w sea|strong="G2281"\w*.\x + \xo 14:25 \xt See Job 9:8\x* +\v 26 \w When|strong="G1161"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w saw|strong="G3708"\w* \w him|strong="G3588"\w* \w walking|strong="G4043"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w*, \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w troubled|strong="G5015"\w*, \w saying|strong="G3004"\w*, “\w It|strong="G2532"\w*’s \w a|strong="G2532"\w* \w ghost|strong="G5326"\w*!” \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w cried|strong="G2896"\w* \w out|strong="G2896"\w* \w for|strong="G3754"\w* \w fear|strong="G5401"\w*. +\v 27 \w But|strong="G1161"\w* \w immediately|strong="G2112"\w* \w Jesus|strong="G2424"\w* \w spoke|strong="G2980"\w* \w to|strong="G3004"\w* \w them|strong="G3004"\w*, \w saying|strong="G3004"\w*, \wj “Cheer \+w up|strong="G3361"\+w*! \+w It|strong="G1161"\+w* \+w is|strong="G1510"\+w* \+w I|strong="G1473"\+w*! \wj*\f + \fr 14:27 \ft or, I AM!\f* \wj Don’t \+w be|strong="G1510"\+w* \+w afraid|strong="G5399"\+w*.”\wj* +\p +\v 28 \w Peter|strong="G4074"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w* \w and|strong="G1161"\w* \w said|strong="G3004"\w*, “\w Lord|strong="G2962"\w*, \w if|strong="G1487"\w* \w it|strong="G1161"\w* \w is|strong="G1510"\w* \w you|strong="G4771"\w*, \w command|strong="G3004"\w* \w me|strong="G1473"\w* \w to|strong="G4314"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w you|strong="G4771"\w* \w on|strong="G1909"\w* \w the|strong="G1161"\w* \w waters|strong="G5204"\w*.” +\p +\v 29 \w He|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Come|strong="G2064"\+w*!”\wj* +\p \w Peter|strong="G4074"\w* \w stepped|strong="G5204"\w* \w down|strong="G2597"\w* \w from|strong="G2064"\w* \w the|strong="G2532"\w* \w boat|strong="G4143"\w* \w and|strong="G2532"\w* \w walked|strong="G4043"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w waters|strong="G5204"\w* \w to|strong="G4314"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w Jesus|strong="G2424"\w*. +\v 30 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w he|strong="G2532"\w* saw \w that|strong="G3588"\w* \w the|strong="G2532"\w* wind \w was|strong="G3588"\w* \w strong|strong="G2478"\w*, \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w afraid|strong="G5399"\w*, \w and|strong="G2532"\w* beginning \w to|strong="G2532"\w* \w sink|strong="G2670"\w*, \w he|strong="G2532"\w* \w cried|strong="G2896"\w* \w out|strong="G2896"\w*, \w saying|strong="G3004"\w*, “\w Lord|strong="G2962"\w*, \w save|strong="G4982"\w* \w me|strong="G1473"\w*!” +\p +\v 31 \w Immediately|strong="G2112"\w* \w Jesus|strong="G2424"\w* \w stretched|strong="G1614"\w* \w out|strong="G2532"\w* \w his|strong="G1519"\w* \w hand|strong="G5495"\w*, \w took|strong="G1949"\w* \w hold|strong="G1949"\w* \w of|strong="G2532"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \wj “\+w You|strong="G3004"\+w* \+w of|strong="G2532"\+w* \+w little|strong="G3640"\+w* \+w faith|strong="G3640"\+w*, \+w why|strong="G5101"\+w* \+w did|strong="G2532"\+w* \+w you|strong="G3004"\+w* \+w doubt|strong="G1365"\+w*?”\wj* +\v 32 \w When|strong="G2532"\w* \w they|strong="G2532"\w* got \w up|strong="G1519"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w boat|strong="G4143"\w*, \w the|strong="G2532"\w* wind \w ceased|strong="G2869"\w*. +\v 33 \w Those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w boat|strong="G4143"\w* \w came|strong="G3588"\w* \w and|strong="G1161"\w* \w worshiped|strong="G4352"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w You|strong="G1722"\w* \w are|strong="G1510"\w* \w truly|strong="G1722"\w* \w the|strong="G1722"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*!” +\p +\v 34 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w crossed|strong="G1276"\w* \w over|strong="G1909"\w*, \w they|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w land|strong="G1093"\w* \w of|strong="G2532"\w* \w Gennesaret|strong="G1082"\w*. +\v 35 \w When|strong="G2532"\w* \w the|strong="G2532"\w* \w people|strong="G3956"\w* \w of|strong="G2532"\w* \w that|strong="G3588"\w* \w place|strong="G5117"\w* \w recognized|strong="G1921"\w* \w him|strong="G3588"\w*, \w they|strong="G2532"\w* \w sent|strong="G2532"\w* \w into|strong="G1519"\w* \w all|strong="G3956"\w* \w that|strong="G3588"\w* \w surrounding|strong="G4066"\w* \w region|strong="G4066"\w* \w and|strong="G2532"\w* \w brought|strong="G4374"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w all|strong="G3956"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w sick|strong="G2560"\w*; +\v 36 \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w begged|strong="G3870"\w* \w him|strong="G3588"\w* \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w just|strong="G2532"\w* touch \w the|strong="G2532"\w* \w fringe|strong="G2899"\w*\f + \fr 14:36 \ft or, tassel\f* \w of|strong="G2532"\w* \w his|strong="G2532"\w* \w garment|strong="G2440"\w*. \w As|strong="G3745"\w* \w many|strong="G3745"\w* \w as|strong="G3745"\w* touched \w it|strong="G2532"\w* \w were|strong="G3588"\w* made \w whole|strong="G1295"\w*. +\c 15 +\p +\v 1 \w Then|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w and|strong="G2532"\w* \w scribes|strong="G1122"\w* \w came|strong="G4334"\w* \w to|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w from|strong="G2532"\w* \w Jerusalem|strong="G2414"\w*, \w saying|strong="G3004"\w*, +\v 2 “\w Why|strong="G5101"\w* \w do|strong="G5101"\w* \w your|strong="G1223"\w* \w disciples|strong="G3101"\w* \w disobey|strong="G3845"\w* \w the|strong="G1223"\w* \w tradition|strong="G3862"\w* \w of|strong="G1223"\w* \w the|strong="G1223"\w* \w elders|strong="G4245"\w*? \w For|strong="G1063"\w* \w they|strong="G3588"\w* don’\w t|strong="G3588"\w* \w wash|strong="G3538"\w* \w their|strong="G2068"\w* \w hands|strong="G5495"\w* \w when|strong="G3752"\w* \w they|strong="G3588"\w* \w eat|strong="G2068"\w* bread.” +\p +\v 3 \w He|strong="G2532"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Why|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w also|strong="G2532"\+w* \+w disobey|strong="G3845"\+w* \+w the|strong="G2532"\+w* \+w commandment|strong="G1785"\+w* \+w of|strong="G1223"\+w* \+w God|strong="G2316"\+w* \+w because|strong="G1223"\+w* \+w of|strong="G1223"\+w* \+w your|strong="G1223"\+w* \+w tradition|strong="G3862"\+w*? \wj* +\v 4 \wj \+w For|strong="G1063"\+w* \+w God|strong="G2316"\+w* \+w commanded|strong="G1781"\+w*, ‘\+w Honor|strong="G5091"\+w* \+w your|strong="G5091"\+w* \+w father|strong="G3962"\+w* \+w and|strong="G2532"\+w* \+w your|strong="G5091"\+w* \+w mother|strong="G3384"\+w*,’\wj*\x + \xo 15:4 \xt Exodus 20:12; Deuteronomy 5:16\x* \wj \+w and|strong="G2532"\+w*, ‘\+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w speaks|strong="G3004"\+w* \+w evil|strong="G2551"\+w* \+w of|strong="G2316"\+w* \+w father|strong="G3962"\+w* \+w or|strong="G2228"\+w* \+w mother|strong="G3384"\+w*, \+w let|strong="G1063"\+w* \+w him|strong="G3588"\+w* \+w be|strong="G2532"\+w* \+w put|strong="G5053"\+w* \+w to|strong="G2532"\+w* \+w death|strong="G2288"\+w*.’\wj*\x + \xo 15:4 \xt Exodus 21:17; Leviticus 20:9\x* +\v 5 \wj \+w But|strong="G1161"\+w* \+w you|strong="G5210"\+w* \+w say|strong="G3004"\+w*, ‘\+w Whoever|strong="G3739"\+w* \+w may|strong="G3004"\+w* \+w tell|strong="G3004"\+w* \+w his|strong="G3739"\+w* \+w father|strong="G3962"\+w* \+w or|strong="G2228"\+w* \+w his|strong="G3739"\+w* \+w mother|strong="G3384"\+w*, “\+w Whatever|strong="G3739"\+w* \+w help|strong="G5623"\+w* \+w you|strong="G5210"\+w* \+w might|strong="G5210"\+w* \+w otherwise|strong="G1161"\+w* \+w have|strong="G1473"\+w* gotten \+w from|strong="G1537"\+w* \+w me|strong="G1473"\+w* \+w is|strong="G3588"\+w* \+w a|strong="G1437"\+w* \+w gift|strong="G1435"\+w* devoted \+w to|strong="G3004"\+w* \+w God|strong="G3004"\+w*,” \wj* +\v 6 \wj \+w he|strong="G2532"\+w* \+w shall|strong="G2532"\+w* \+w not|strong="G3361"\+w* \+w honor|strong="G5091"\+w* \+w his|strong="G1223"\+w* \+w father|strong="G3962"\+w* \+w or|strong="G2532"\+w* mother.’ \+w You|strong="G5210"\+w* \+w have|strong="G2532"\+w* \+w made|strong="G2316"\+w* \+w the|strong="G2532"\+w* \+w commandment|strong="G3056"\+w* \+w of|strong="G3056"\+w* \+w God|strong="G2316"\+w* void \+w because|strong="G1223"\+w* \+w of|strong="G3056"\+w* \+w your|strong="G1223"\+w* \+w tradition|strong="G3862"\+w*. \wj* +\v 7 \wj \+w You|strong="G5210"\+w* \+w hypocrites|strong="G5273"\+w*! \+w Well|strong="G2573"\+w* \+w did|strong="G2573"\+w* \+w Isaiah|strong="G2268"\+w* \+w prophesy|strong="G4395"\+w* \+w of|strong="G4012"\+w* \+w you|strong="G5210"\+w*, \+w saying|strong="G3004"\+w*,\wj* +\q1 +\v 8 \wj ‘\+w These|strong="G3778"\+w* \+w people|strong="G2992"\+w* draw near \+w to|strong="G1161"\+w* \+w me|strong="G1473"\+w* \+w with|strong="G2588"\+w* \+w their|strong="G3588"\+w* mouth,\wj* +\q2 \wj \+w and|strong="G1161"\+w* \+w honor|strong="G5091"\+w* \+w me|strong="G1473"\+w* \+w with|strong="G2588"\+w* \+w their|strong="G3588"\+w* \+w lips|strong="G5491"\+w*;\wj* +\q2 \wj \+w but|strong="G1161"\+w* \+w their|strong="G3588"\+w* \+w heart|strong="G2588"\+w* \+w is|strong="G3588"\+w* \+w far|strong="G4206"\+w* \+w from|strong="G3588"\+w* \+w me|strong="G1473"\+w*.\wj* +\q1 +\v 9 \wj \+w And|strong="G1161"\+w* \+w they|strong="G1161"\+w* \+w worship|strong="G4576"\+w* \+w me|strong="G1473"\+w* \+w in|strong="G1161"\+w* \+w vain|strong="G3155"\+w*,\wj* +\q2 \wj \+w teaching|strong="G1321"\+w* \+w as|strong="G1161"\+w* \+w doctrine|strong="G1319"\+w* rules \+w made|strong="G1161"\+w* \+w by|strong="G1473"\+w* men.’”\wj*\x + \xo 15:9 \xt Isaiah 29:13 \x* +\p +\v 10 \w He|strong="G2532"\w* \w summoned|strong="G4341"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “Hear, \+w and|strong="G2532"\+w* \+w understand|strong="G4920"\+w*. \wj* +\v 11 \wj \+w That|strong="G3588"\+w* \+w which|strong="G3588"\+w* \+w enters|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w mouth|strong="G4750"\+w* doesn’\+w t|strong="G3588"\+w* \+w defile|strong="G2840"\+w* \+w the|strong="G1519"\+w* \+w man|strong="G3778"\+w*; \+w but|strong="G3588"\+w* \+w that|strong="G3588"\+w* \+w which|strong="G3588"\+w* \+w proceeds|strong="G1607"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1519"\+w* \+w mouth|strong="G4750"\+w*, \+w this|strong="G3778"\+w* \+w defiles|strong="G2840"\+w* \+w the|strong="G1519"\+w* \+w man|strong="G3778"\+w*.”\wj* +\p +\v 12 \w Then|strong="G5119"\w* \w the|strong="G3588"\w* \w disciples|strong="G3101"\w* \w came|strong="G4334"\w* \w and|strong="G4334"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Do|strong="G1492"\w* \w you|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w the|strong="G3588"\w* \w Pharisees|strong="G5330"\w* \w were|strong="G3588"\w* \w offended|strong="G4624"\w* \w when|strong="G1492"\w* \w they|strong="G3588"\w* heard \w this|strong="G3588"\w* \w saying|strong="G3004"\w*?” +\p +\v 13 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w answered|strong="G3004"\w*, \wj “\+w Every|strong="G3956"\+w* \+w plant|strong="G5451"\+w* \+w which|strong="G3739"\+w* \+w my|strong="G3956"\+w* \+w heavenly|strong="G3770"\+w* \+w Father|strong="G3962"\+w* didn’\+w t|strong="G3588"\+w* \+w plant|strong="G5451"\+w* \+w will|strong="G3739"\+w* \+w be|strong="G3756"\+w* \+w uprooted|strong="G1610"\+w*. \wj* +\v 14 \wj Leave \+w them|strong="G1438"\+w* \+w alone|strong="G1438"\+w*. \+w They|strong="G1161"\+w* \+w are|strong="G1510"\+w* \+w blind|strong="G5185"\+w* \+w guides|strong="G3595"\+w* \+w of|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w blind|strong="G5185"\+w*. \+w If|strong="G1437"\+w* \+w the|strong="G1519"\+w* \+w blind|strong="G5185"\+w* \+w guide|strong="G3595"\+w* \+w the|strong="G1519"\+w* \+w blind|strong="G5185"\+w*, \+w both|strong="G1161"\+w* \+w will|strong="G1510"\+w* \+w fall|strong="G4098"\+w* \+w into|strong="G1519"\+w* \+w a|strong="G1519"\+w* pit.”\wj* +\p +\v 15 \w Peter|strong="G4074"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Explain|strong="G5419"\w* \w the|strong="G1161"\w* \w parable|strong="G3850"\w* \w to|strong="G3004"\w* \w us|strong="G3004"\w*.” +\p +\v 16 \w So|strong="G2532"\w* \w Jesus|strong="G3004"\w* \w said|strong="G3004"\w*, \wj “\+w Do|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w also|strong="G2532"\+w* still \+w not|strong="G1510"\+w* understand? \wj* +\v 17 \wj Don’\+w t|strong="G3588"\+w* \+w you|strong="G3754"\+w* \+w understand|strong="G3539"\+w* \+w that|strong="G3754"\+w* \+w whatever|strong="G3956"\+w* \+w goes|strong="G1531"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w mouth|strong="G4750"\+w* \+w passes|strong="G5562"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w belly|strong="G2836"\+w* \+w and|strong="G2532"\+w* \+w then|strong="G2532"\+w* \+w out|strong="G1544"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w body|strong="G1519"\+w*? \wj* +\v 18 \wj \+w But|strong="G1161"\+w* \+w the|strong="G1537"\+w* \+w things|strong="G3588"\+w* \+w which|strong="G3588"\+w* \+w proceed|strong="G1607"\+w* \+w out|strong="G1831"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w mouth|strong="G4750"\+w* \+w come|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w heart|strong="G2588"\+w*, \+w and|strong="G1161"\+w* \+w they|strong="G1161"\+w* \+w defile|strong="G2840"\+w* \+w the|strong="G1537"\+w* \+w man|strong="G2588"\+w*. \wj* +\v 19 \wj \+w For|strong="G1063"\+w* \+w out|strong="G1831"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w heart|strong="G2588"\+w* \+w come|strong="G1831"\+w* \+w evil|strong="G4190"\+w* \+w thoughts|strong="G1261"\+w*, \+w murders|strong="G5408"\+w*, \+w adulteries|strong="G3430"\+w*, \+w sexual|strong="G4202"\+w* sins, \+w thefts|strong="G2829"\+w*, \+w false|strong="G5577"\+w* \+w testimony|strong="G5577"\+w*, \+w and|strong="G1831"\+w* blasphemies. \wj* +\v 20 \wj \+w These|strong="G3778"\+w* \+w are|strong="G1510"\+w* \+w the|strong="G1161"\+w* \+w things|strong="G3778"\+w* \+w which|strong="G3588"\+w* \+w defile|strong="G2840"\+w* \+w the|strong="G1161"\+w* \+w man|strong="G3778"\+w*; \+w but|strong="G1161"\+w* \+w to|strong="G3756"\+w* \+w eat|strong="G2068"\+w* \+w with|strong="G5495"\+w* unwashed \+w hands|strong="G5495"\+w* doesn’\+w t|strong="G3588"\+w* \+w defile|strong="G2840"\+w* \+w the|strong="G1161"\+w* \+w man|strong="G3778"\+w*.”\wj* +\p +\v 21 \w Jesus|strong="G2424"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w from|strong="G2532"\w* \w there|strong="G2532"\w* \w and|strong="G2532"\w* \w withdrew|strong="G2424"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* region \w of|strong="G2532"\w* \w Tyre|strong="G5184"\w* \w and|strong="G2532"\w* \w Sidon|strong="G4605"\w*. +\v 22 \w Behold|strong="G2400"\w*, \w a|strong="G2532"\w* \w Canaanite|strong="G5478"\w* \w woman|strong="G1135"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w* \w from|strong="G2532"\w* \w those|strong="G3588"\w* \w borders|strong="G3725"\w* \w and|strong="G2532"\w* \w cried|strong="G2896"\w*, \w saying|strong="G3004"\w*, “\w Have|strong="G2532"\w* \w mercy|strong="G1653"\w* \w on|strong="G1653"\w* \w me|strong="G1473"\w*, \w Lord|strong="G2962"\w*, \w you|strong="G3004"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w David|strong="G1138"\w*! \w My|strong="G3708"\w* \w daughter|strong="G2364"\w* \w is|strong="G3588"\w* severely possessed \w by|strong="G2532"\w* \w a|strong="G2532"\w* demon!” +\p +\v 23 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w answered|strong="G3004"\w* \w her|strong="G1438"\w* \w not|strong="G3756"\w* \w a|strong="G2532"\w* \w word|strong="G3056"\w*. +\p \w His|strong="G1438"\w* \w disciples|strong="G3101"\w* \w came|strong="G4334"\w* \w and|strong="G2532"\w* \w begged|strong="G2065"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “Send \w her|strong="G1438"\w* away; \w for|strong="G3754"\w* \w she|strong="G2532"\w* \w cries|strong="G2896"\w* \w after|strong="G1161"\w* \w us|strong="G3004"\w*.” +\p +\v 24 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w answered|strong="G3004"\w*, \wj “\+w I|strong="G1161"\+w* wasn’\+w t|strong="G3588"\+w* sent \+w to|strong="G1519"\+w* anyone \+w but|strong="G1161"\+w* \+w the|strong="G1519"\+w* lost \+w sheep|strong="G4263"\+w* \+w of|strong="G3624"\+w* \+w the|strong="G1519"\+w* \+w house|strong="G3624"\+w* \+w of|strong="G3624"\+w* \+w Israel|strong="G2474"\+w*.”\wj* +\p +\v 25 \w But|strong="G1161"\w* \w she|strong="G1161"\w* \w came|strong="G2064"\w* \w and|strong="G1161"\w* \w worshiped|strong="G4352"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w Lord|strong="G2962"\w*, help \w me|strong="G1473"\w*.” +\p +\v 26 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w answered|strong="G3004"\w*, \wj “\+w It|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* appropriate \+w to|strong="G2532"\+w* \+w take|strong="G2983"\+w* \+w the|strong="G2532"\+w* \+w children|strong="G5043"\+w*’s bread \+w and|strong="G2532"\+w* throw \+w it|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w dogs|strong="G2952"\+w*.”\wj* +\p +\v 27 \w But|strong="G1161"\w* \w she|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Yes|strong="G3483"\w*, \w Lord|strong="G2962"\w*, \w but|strong="G1161"\w* \w even|strong="G2532"\w* \w the|strong="G2532"\w* \w dogs|strong="G2952"\w* \w eat|strong="G2068"\w* \w the|strong="G2532"\w* \w crumbs|strong="G5589"\w* \w which|strong="G3588"\w* \w fall|strong="G4098"\w* \w from|strong="G2532"\w* \w their|strong="G2532"\w* \w masters|strong="G2962"\w*’ \w table|strong="G5132"\w*.” +\p +\v 28 \w Then|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w her|strong="G3588"\w*, \wj “\+w Woman|strong="G1135"\+w*, \+w great|strong="G3173"\+w* \+w is|strong="G3588"\+w* \+w your|strong="G2532"\+w* \+w faith|strong="G4102"\+w*! \+w Be|strong="G1096"\+w* \+w it|strong="G2532"\+w* \+w done|strong="G1096"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w even|strong="G2532"\+w* \+w as|strong="G5613"\+w* \+w you|strong="G4771"\+w* \+w desire|strong="G2309"\+w*.”\wj* \w And|strong="G2532"\w* \w her|strong="G3588"\w* \w daughter|strong="G2364"\w* \w was|strong="G1096"\w* \w healed|strong="G2390"\w* \w from|strong="G2532"\w* \w that|strong="G3588"\w* \w hour|strong="G5610"\w*. +\p +\v 29 \w Jesus|strong="G2424"\w* \w departed|strong="G3327"\w* \w from|strong="G3844"\w* \w there|strong="G1563"\w* \w and|strong="G2532"\w* \w came|strong="G2064"\w* \w near|strong="G1519"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w* \w of|strong="G2532"\w* \w Galilee|strong="G1056"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w went|strong="G2064"\w* \w up|strong="G1519"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w mountain|strong="G3735"\w* \w and|strong="G2532"\w* \w sat|strong="G2521"\w* \w there|strong="G1563"\w*. +\v 30 \w Great|strong="G4183"\w* \w multitudes|strong="G3793"\w* \w came|strong="G4334"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \w having|strong="G2192"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w* \w the|strong="G2532"\w* \w lame|strong="G5560"\w*, \w blind|strong="G5185"\w*, \w mute|strong="G2974"\w*, \w maimed|strong="G2948"\w*, \w and|strong="G2532"\w* \w many|strong="G4183"\w* \w others|strong="G2087"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w put|strong="G2532"\w* \w them|strong="G3588"\w* \w down|strong="G4496"\w* \w at|strong="G3844"\w* \w his|strong="G1438"\w* \w feet|strong="G4228"\w*. \w He|strong="G2532"\w* \w healed|strong="G2323"\w* \w them|strong="G3588"\w*, +\v 31 \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w* \w wondered|strong="G2296"\w* \w when|strong="G2532"\w* \w they|strong="G2532"\w* saw \w the|strong="G2532"\w* \w mute|strong="G2974"\w* \w speaking|strong="G2980"\w*, \w the|strong="G2532"\w* injured \w healed|strong="G5199"\w*, \w the|strong="G2532"\w* \w lame|strong="G5560"\w* \w walking|strong="G4043"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w blind|strong="G5185"\w* seeing—\w and|strong="G2532"\w* \w they|strong="G2532"\w* \w glorified|strong="G1392"\w* \w the|strong="G2532"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* \w Israel|strong="G2474"\w*. +\p +\v 32 \w Jesus|strong="G2424"\w* \w summoned|strong="G4341"\w* \w his|strong="G1438"\w* \w disciples|strong="G3101"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w I|strong="G1473"\+w* \+w have|strong="G2192"\+w* \+w compassion|strong="G4697"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G1722"\+w* \+w multitude|strong="G3793"\+w*, \+w because|strong="G3754"\+w* \+w they|strong="G2532"\+w* \+w have|strong="G2192"\+w* continued \+w with|strong="G1722"\+w* \+w me|strong="G1473"\+w* \+w now|strong="G1161"\+w* \+w three|strong="G5140"\+w* \+w days|strong="G2250"\+w* \+w and|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w nothing|strong="G3756"\+w* \+w to|strong="G2532"\+w* \+w eat|strong="G2068"\+w*. \+w I|strong="G1473"\+w* don’\+w t|strong="G3588"\+w* \+w want|strong="G2309"\+w* \+w to|strong="G2532"\+w* send \+w them|strong="G3588"\+w* away \+w fasting|strong="G3523"\+w*, \+w or|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w might|strong="G2532"\+w* \+w faint|strong="G1590"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G1722"\+w* \+w way|strong="G3598"\+w*.” \wj* +\p +\v 33 \w The|strong="G1722"\w* \w disciples|strong="G3101"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Where|strong="G4159"\w* \w could|strong="G3588"\w* \w we|strong="G2249"\w* \w get|strong="G2532"\w* \w so|strong="G2532"\w* \w many|strong="G5118"\w* loaves \w in|strong="G1722"\w* \w a|strong="G2532"\w* deserted \w place|strong="G2047"\w* \w as|strong="G1722"\w* \w to|strong="G2532"\w* \w satisfy|strong="G5526"\w* \w so|strong="G2532"\w* \w great|strong="G5118"\w* \w a|strong="G2532"\w* \w multitude|strong="G3793"\w*?” +\p +\v 34 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w How|strong="G4214"\+w* \+w many|strong="G4214"\+w* loaves \+w do|strong="G2532"\+w* \+w you|strong="G3004"\+w* \+w have|strong="G2192"\+w*?”\wj* +\p \w They|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Seven|strong="G2033"\w*, \w and|strong="G2532"\w* \w a|strong="G2192"\w* \w few|strong="G3641"\w* \w small|strong="G3641"\w* \w fish|strong="G2485"\w*.” +\p +\v 35 \w He|strong="G2532"\w* \w commanded|strong="G3853"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w* \w to|strong="G2532"\w* sit down \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w ground|strong="G1093"\w*; +\v 36 \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w took|strong="G2983"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* loaves \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w fish|strong="G2486"\w*. \w He|strong="G2532"\w* \w gave|strong="G1325"\w* \w thanks|strong="G2168"\w* \w and|strong="G2532"\w* \w broke|strong="G2806"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w gave|strong="G1325"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w*. +\v 37 \w They|strong="G2532"\w* \w all|strong="G3956"\w* \w ate|strong="G2068"\w* \w and|strong="G2532"\w* \w were|strong="G3588"\w* \w filled|strong="G5526"\w*. \w They|strong="G2532"\w* \w took|strong="G2532"\w* \w up|strong="G2532"\w* \w seven|strong="G2033"\w* \w baskets|strong="G4711"\w* \w full|strong="G4134"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w broken|strong="G2801"\w* \w pieces|strong="G2801"\w* \w that|strong="G3588"\w* \w were|strong="G3588"\w* \w left|strong="G4052"\w* \w over|strong="G4052"\w*. +\v 38 \w Those|strong="G3588"\w* \w who|strong="G3588"\w* \w ate|strong="G2068"\w* \w were|strong="G1510"\w* \w four|strong="G5070"\w* \w thousand|strong="G5070"\w* \w men|strong="G3588"\w*, \w in|strong="G2532"\w* addition \w to|strong="G2532"\w* \w women|strong="G1135"\w* \w and|strong="G2532"\w* \w children|strong="G3813"\w*. +\v 39 \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w sent|strong="G2532"\w* away \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w*, \w got|strong="G1684"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w boat|strong="G4143"\w*, \w and|strong="G2532"\w* \w came|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w borders|strong="G3725"\w* \w of|strong="G2532"\w* \w Magdala|strong="G3093"\w*. +\c 16 +\p +\v 1 \w The|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w and|strong="G2532"\w* \w Sadducees|strong="G4523"\w* \w came|strong="G4334"\w*, \w and|strong="G2532"\w* \w testing|strong="G3985"\w* \w him|strong="G3588"\w*, \w asked|strong="G1905"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w show|strong="G1925"\w* \w them|strong="G3588"\w* \w a|strong="G2532"\w* \w sign|strong="G4592"\w* \w from|strong="G1537"\w* \w heaven|strong="G3772"\w*. +\v 2 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w When|strong="G1161"\+w* \+w it|strong="G1161"\+w* \+w is|strong="G3588"\+w* \+w evening|strong="G3798"\+w*, \+w you|strong="G3004"\+w* \+w say|strong="G3004"\+w*, ‘\+w It|strong="G1161"\+w* \+w will|strong="G1096"\+w* \+w be|strong="G1096"\+w* \+w fair|strong="G2105"\+w* \+w weather|strong="G2105"\+w*, \+w for|strong="G1063"\+w* \+w the|strong="G1161"\+w* \+w sky|strong="G3772"\+w* \+w is|strong="G3588"\+w* \+w red|strong="G4449"\+w*.’ \wj* +\v 3 \wj \+w In|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w morning|strong="G4404"\+w*, ‘\+w It|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* foul weather \+w today|strong="G4594"\+w*, \+w for|strong="G1063"\+w* \+w the|strong="G2532"\+w* \+w sky|strong="G3772"\+w* \+w is|strong="G3588"\+w* \+w red|strong="G4449"\+w* \+w and|strong="G2532"\+w* \+w threatening|strong="G4768"\+w*.’ Hypocrites! \+w You|strong="G2532"\+w* \+w know|strong="G1097"\+w* \+w how|strong="G1161"\+w* \+w to|strong="G2532"\+w* \+w discern|strong="G1252"\+w* \+w the|strong="G2532"\+w* \+w appearance|strong="G4383"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w sky|strong="G3772"\+w*, \+w but|strong="G1161"\+w* \+w you|strong="G2532"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w discern|strong="G1252"\+w* \+w the|strong="G2532"\+w* \+w signs|strong="G4592"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w times|strong="G2540"\+w*! \wj* +\v 4 \wj \+w An|strong="G2532"\+w* \+w evil|strong="G4190"\+w* \+w and|strong="G2532"\+w* \+w adulterous|strong="G3428"\+w* \+w generation|strong="G1074"\+w* \+w seeks|strong="G1934"\+w* \+w after|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w sign|strong="G4592"\+w*, \+w and|strong="G2532"\+w* \+w there|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w no|strong="G3756"\+w* \+w sign|strong="G4592"\+w* \+w given|strong="G1325"\+w* \+w to|strong="G2532"\+w* \+w it|strong="G2532"\+w*, \+w except|strong="G1487"\+w* \+w the|strong="G2532"\+w* \+w sign|strong="G4592"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* prophet \+w Jonah|strong="G2495"\+w*.”\wj* +\p \w He|strong="G2532"\w* \w left|strong="G2641"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* departed. +\v 5 \w The|strong="G2532"\w* \w disciples|strong="G3101"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w other|strong="G4008"\w* \w side|strong="G4008"\w* \w and|strong="G2532"\w* \w had|strong="G2532"\w* \w forgotten|strong="G1950"\w* \w to|strong="G1519"\w* \w take|strong="G2983"\w* bread. +\v 6 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Take|strong="G1161"\+w* \+w heed|strong="G4337"\+w* \+w and|strong="G2532"\+w* \+w beware|strong="G4337"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w yeast|strong="G2219"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Pharisees|strong="G5330"\+w* \+w and|strong="G2532"\+w* \+w Sadducees|strong="G4523"\+w*.”\wj* +\p +\v 7 \w They|strong="G1161"\w* \w reasoned|strong="G1260"\w* \w among|strong="G1722"\w* \w themselves|strong="G1438"\w*, \w saying|strong="G3004"\w*, “\w We|strong="G3754"\w* \w brought|strong="G1161"\w* \w no|strong="G3756"\w* bread.” +\p +\v 8 \w Jesus|strong="G2424"\w*, \w perceiving|strong="G1097"\w* \w it|strong="G3754"\w*, \w said|strong="G3004"\w*, \wj “\+w Why|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G3754"\+w* \+w reason|strong="G1260"\+w* \+w among|strong="G1722"\+w* \+w yourselves|strong="G1438"\+w*, \+w you|strong="G3754"\+w* \+w of|strong="G1722"\+w* \+w little|strong="G3640"\+w* \+w faith|strong="G3640"\+w*, \+w because|strong="G3754"\+w* \+w you|strong="G3754"\+w* \+w have|strong="G3748"\+w* \+w brought|strong="G1161"\+w* \+w no|strong="G3756"\+w* bread? \wj* +\v 9 \wj Don’\+w t|strong="G3588"\+w* \+w you|strong="G2532"\+w* \+w yet|strong="G2532"\+w* \+w perceive|strong="G3539"\+w* \+w or|strong="G2532"\+w* \+w remember|strong="G3421"\+w* \+w the|strong="G2532"\+w* \+w five|strong="G4002"\+w* loaves \+w for|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w five|strong="G4002"\+w* \+w thousand|strong="G4000"\+w*, \+w and|strong="G2532"\+w* \+w how|strong="G4214"\+w* \+w many|strong="G4214"\+w* \+w baskets|strong="G2894"\+w* \+w you|strong="G2532"\+w* \+w took|strong="G2983"\+w* \+w up|strong="G2532"\+w*, \wj* +\v 10 \wj \+w or|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w seven|strong="G2033"\+w* loaves \+w for|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w four|strong="G5070"\+w* \+w thousand|strong="G5070"\+w*, \+w and|strong="G2532"\+w* \+w how|strong="G4214"\+w* \+w many|strong="G4214"\+w* \+w baskets|strong="G4711"\+w* \+w you|strong="G2532"\+w* \+w took|strong="G2983"\+w* \+w up|strong="G2532"\+w*? \wj* +\v 11 \wj \+w How|strong="G4459"\+w* \+w is|strong="G3588"\+w* \+w it|strong="G2532"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* \+w perceive|strong="G3539"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G2532"\+w* didn’\+w t|strong="G3588"\+w* \+w speak|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w concerning|strong="G4012"\+w* bread? \+w But|strong="G1161"\+w* \+w beware|strong="G4337"\+w* \+w of|strong="G4012"\+w* \+w the|strong="G2532"\+w* \+w yeast|strong="G2219"\+w* \+w of|strong="G4012"\+w* \+w the|strong="G2532"\+w* \+w Pharisees|strong="G5330"\+w* \+w and|strong="G2532"\+w* \+w Sadducees|strong="G4523"\+w*.” \wj* +\p +\v 12 \w Then|strong="G2532"\w* \w they|strong="G2532"\w* \w understood|strong="G4920"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w tell|strong="G3004"\w* \w them|strong="G3588"\w* \w to|strong="G2532"\w* \w beware|strong="G4337"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w yeast|strong="G2219"\w* \w of|strong="G2532"\w* bread, \w but|strong="G2532"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w teaching|strong="G1322"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w and|strong="G2532"\w* \w Sadducees|strong="G4523"\w*. +\p +\v 13 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w came|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w parts|strong="G3313"\w* \w of|strong="G5207"\w* \w Caesarea|strong="G2542"\w* \w Philippi|strong="G5376"\w*, \w he|strong="G1161"\w* \w asked|strong="G2065"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w*, \w saying|strong="G3004"\w*, \wj “\+w Who|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w men|strong="G3588"\+w* \+w say|strong="G3004"\+w* \+w that|strong="G3588"\+w* \+w I|strong="G1161"\+w*, \+w the|strong="G1519"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5101"\+w*, \+w am|strong="G1510"\+w*?”\wj* +\p +\v 14 \w They|strong="G1161"\w* \w said|strong="G3004"\w*, “\w Some|strong="G3588"\w* \w say|strong="G3004"\w* \w John|strong="G2491"\w* \w the|strong="G1161"\w* Baptizer, \w some|strong="G3588"\w*, \w Elijah|strong="G2243"\w*, \w and|strong="G1161"\w* \w others|strong="G2087"\w*, \w Jeremiah|strong="G2408"\w* \w or|strong="G2228"\w* \w one|strong="G1520"\w* \w of|strong="G1520"\w* \w the|strong="G1161"\w* \w prophets|strong="G4396"\w*.” +\p +\v 15 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3004"\w*, \wj “\+w But|strong="G1161"\+w* \+w who|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w say|strong="G3004"\+w* \+w that|strong="G3004"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w*?”\wj* +\p +\v 16 \w Simon|strong="G4613"\w* \w Peter|strong="G4074"\w* \w answered|strong="G3004"\w*, “\w You|strong="G4771"\w* \w are|strong="G1510"\w* \w the|strong="G1161"\w* \w Christ|strong="G5547"\w*, \w the|strong="G1161"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w the|strong="G1161"\w* \w living|strong="G2198"\w* \w God|strong="G2316"\w*.” +\p +\v 17 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w Blessed|strong="G3107"\+w* \+w are|strong="G1510"\+w* \+w you|strong="G4771"\+w*, \+w Simon|strong="G4613"\+w* Bar Jonah, \+w for|strong="G3754"\+w* \+w flesh|strong="G4561"\+w* \+w and|strong="G2532"\+w* blood \+w has|strong="G3962"\+w* \+w not|strong="G3756"\+w* revealed \+w this|strong="G3588"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G4771"\+w*, \+w but|strong="G1161"\+w* \+w my|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*. \wj* +\v 18 \wj \+w I|strong="G1473"\+w* \+w also|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w are|strong="G1510"\+w* \+w Peter|strong="G4074"\+w*,\wj*\f + \fr 16:18 \ft Peter’s name, Petros in Greek, is the word for a specific rock or stone.\f* \wj \+w and|strong="G2532"\+w* \+w on|strong="G1909"\+w* \+w this|strong="G3778"\+w* \+w rock|strong="G4073"\+w* \wj*\f + \fr 16:18 \ft Greek, petra, a rock mass or bedrock.\f* \wj \+w I|strong="G1473"\+w* \+w will|strong="G1510"\+w* \+w build|strong="G3618"\+w* \+w my|strong="G1473"\+w* \+w assembly|strong="G1577"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w gates|strong="G4439"\+w* \+w of|strong="G2532"\+w* Hades\wj*\f + \fr 16:18 \ft or, Hell\f* \wj \+w will|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w prevail|strong="G2729"\+w* \+w against|strong="G1909"\+w* \+w it|strong="G2532"\+w*. \wj* +\v 19 \wj \+w I|strong="G3739"\+w* \+w will|strong="G1510"\+w* \+w give|strong="G1325"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w the|strong="G1722"\+w* \+w keys|strong="G2807"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G1722"\+w* Kingdom \+w of|strong="G2532"\+w* \+w Heaven|strong="G3772"\+w*, \+w and|strong="G2532"\+w* \+w whatever|strong="G3739"\+w* \+w you|strong="G4771"\+w* \+w bind|strong="G1210"\+w* \+w on|strong="G1909"\+w* \+w earth|strong="G1093"\+w* \+w will|strong="G1510"\+w* \+w have|strong="G2532"\+w* \+w been|strong="G1510"\+w* \+w bound|strong="G1210"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*; \+w and|strong="G2532"\+w* \+w whatever|strong="G3739"\+w* \+w you|strong="G4771"\+w* \+w release|strong="G3089"\+w* \+w on|strong="G1909"\+w* \+w earth|strong="G1093"\+w* \+w will|strong="G1510"\+w* \+w have|strong="G2532"\+w* \+w been|strong="G1510"\+w* \+w released|strong="G3089"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*.”\wj* +\v 20 \w Then|strong="G5119"\w* \w he|strong="G3754"\w* \w commanded|strong="G1291"\w* \w the|strong="G3588"\w* \w disciples|strong="G3101"\w* \w that|strong="G3754"\w* \w they|strong="G3588"\w* \w should|strong="G3588"\w* \w tell|strong="G3004"\w* \w no|strong="G3367"\w* \w one|strong="G3367"\w* \w that|strong="G3754"\w* \w he|strong="G3754"\w* \w was|strong="G1510"\w* \w Jesus|strong="G3004"\w* \w the|strong="G3588"\w* \w Christ|strong="G5547"\w*. +\p +\v 21 \w From|strong="G2532"\w* \w that|strong="G3754"\w* \w time|strong="G2250"\w*, \w Jesus|strong="G2424"\w* \w began|strong="G5119"\w* \w to|strong="G1519"\w* \w show|strong="G1166"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w must|strong="G1163"\w* \w go|strong="G1519"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w* \w and|strong="G2532"\w* \w suffer|strong="G3958"\w* \w many|strong="G4183"\w* \w things|strong="G3588"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w*, \w chief|strong="G2532"\w* priests, \w and|strong="G2532"\w* \w scribes|strong="G1122"\w*, \w and|strong="G2532"\w* \w be|strong="G2532"\w* killed, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w third|strong="G5154"\w* \w day|strong="G2250"\w* \w be|strong="G2532"\w* \w raised|strong="G1453"\w* \w up|strong="G1453"\w*. +\p +\v 22 \w Peter|strong="G4074"\w* \w took|strong="G4355"\w* \w him|strong="G3588"\w* \w aside|strong="G4355"\w* \w and|strong="G2532"\w* began \w to|strong="G2532"\w* \w rebuke|strong="G2008"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w Far|strong="G2436"\w* \w be|strong="G1510"\w* \w it|strong="G2532"\w* \w from|strong="G2532"\w* \w you|strong="G4771"\w*, \w Lord|strong="G2962"\w*! \w This|strong="G3778"\w* \w will|strong="G1510"\w* \w never|strong="G3756"\w* \w be|strong="G1510"\w* \w done|strong="G3361"\w* \w to|strong="G2532"\w* \w you|strong="G4771"\w*.” +\p +\v 23 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w turned|strong="G4762"\w* \w and|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w Peter|strong="G4074"\w*, \wj “\+w Get|strong="G5217"\+w* \+w behind|strong="G3694"\+w* \+w me|strong="G1473"\+w*, \+w Satan|strong="G4567"\+w*! \+w You|strong="G3754"\+w* \+w are|strong="G1510"\+w* \+w a|strong="G1510"\+w* \+w stumbling|strong="G4625"\+w* \+w block|strong="G4625"\+w* \+w to|strong="G3004"\+w* \+w me|strong="G1473"\+w*, \+w for|strong="G3754"\+w* \+w you|strong="G3754"\+w* \+w are|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w setting|strong="G5426"\+w* \+w your|strong="G5426"\+w* \+w mind|strong="G5426"\+w* \+w on|strong="G5426"\+w* \+w the|strong="G1161"\+w* \+w things|strong="G3588"\+w* \+w of|strong="G2316"\+w* \+w God|strong="G2316"\+w*, \+w but|strong="G1161"\+w* \+w on|strong="G5426"\+w* \+w the|strong="G1161"\+w* \+w things|strong="G3588"\+w* \+w of|strong="G2316"\+w* \+w men|strong="G3588"\+w*.”\wj* +\p +\v 24 \w Then|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w his|strong="G1438"\w* \w disciples|strong="G3101"\w*, \wj “\+w If|strong="G1487"\+w* \+w anyone|strong="G5100"\+w* \+w desires|strong="G2309"\+w* \+w to|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w after|strong="G3694"\+w* \+w me|strong="G1473"\+w*, \+w let|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w deny|strong="G3588"\+w* \+w himself|strong="G1438"\+w*, \+w take|strong="G2532"\+w* \+w up|strong="G2532"\+w* \+w his|strong="G1438"\+w* \+w cross|strong="G4716"\+w*, \+w and|strong="G2532"\+w* \+w follow|strong="G3694"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 25 \wj \+w For|strong="G1063"\+w* \+w whoever|strong="G3739"\+w* \+w desires|strong="G2309"\+w* \+w to|strong="G2309"\+w* \+w save|strong="G4982"\+w* \+w his|strong="G1438"\+w* \+w life|strong="G5590"\+w* \+w will|strong="G2309"\+w* lose \+w it|strong="G1161"\+w*, \+w and|strong="G1161"\+w* \+w whoever|strong="G3739"\+w* \+w will|strong="G2309"\+w* lose \+w his|strong="G1438"\+w* \+w life|strong="G5590"\+w* \+w for|strong="G1063"\+w* \+w my|strong="G1473"\+w* \+w sake|strong="G1752"\+w* \+w will|strong="G2309"\+w* \+w find|strong="G2147"\+w* \+w it|strong="G1161"\+w*. \wj* +\v 26 \wj \+w For|strong="G1063"\+w* \+w what|strong="G5101"\+w* \+w will|strong="G5101"\+w* \+w it|strong="G1161"\+w* \+w profit|strong="G5623"\+w* \+w a|strong="G1437"\+w* \+w man|strong="G5101"\+w* \+w if|strong="G1437"\+w* \+w he|strong="G1161"\+w* \+w gains|strong="G2770"\+w* \+w the|strong="G1161"\+w* \+w whole|strong="G3650"\+w* \+w world|strong="G2889"\+w* \+w and|strong="G1161"\+w* \+w forfeits|strong="G2210"\+w* \+w his|strong="G1325"\+w* \+w life|strong="G5590"\+w*? \+w Or|strong="G2228"\+w* \+w what|strong="G5101"\+w* \+w will|strong="G5101"\+w* \+w a|strong="G1437"\+w* \+w man|strong="G5101"\+w* \+w give|strong="G1325"\+w* \+w in|strong="G1161"\+w* exchange \+w for|strong="G1063"\+w* \+w his|strong="G1325"\+w* \+w life|strong="G5590"\+w*? \wj* +\v 27 \wj \+w For|strong="G1063"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G1538"\+w* \+w will|strong="G3195"\+w* \+w come|strong="G2064"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w glory|strong="G1391"\+w* \+w of|strong="G5207"\+w* \+w his|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w with|strong="G3326"\+w* \+w his|strong="G1722"\+w* angels, \+w and|strong="G2532"\+w* \+w then|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G3195"\+w* \+w give|strong="G2064"\+w* \+w to|strong="G2532"\+w* \+w everyone|strong="G1538"\+w* \+w according|strong="G2596"\+w* \+w to|strong="G2532"\+w* \+w his|strong="G1722"\+w* \+w deeds|strong="G4234"\+w*. \wj* +\v 28 \wj Most \+w certainly|strong="G3756"\+w* \+w I|strong="G3754"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w there|strong="G3754"\+w* \+w are|strong="G1510"\+w* \+w some|strong="G5100"\+w* \+w standing|strong="G2476"\+w* \+w here|strong="G5602"\+w* \+w who|strong="G3588"\+w* \+w will|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w no|strong="G3756"\+w* \+w way|strong="G1722"\+w* \+w taste|strong="G1089"\+w* \+w of|strong="G5207"\+w* \+w death|strong="G2288"\+w* \+w until|strong="G2193"\+w* \+w they|strong="G3588"\+w* \+w see|strong="G3708"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5100"\+w* \+w coming|strong="G2064"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G1722"\+w* Kingdom.” \wj* +\c 17 +\p +\v 1 \w After|strong="G3326"\w* \w six|strong="G1803"\w* \w days|strong="G2250"\w*, \w Jesus|strong="G2424"\w* \w took|strong="G3880"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w* \w Peter|strong="G4074"\w*, \w James|strong="G2385"\w*, \w and|strong="G2532"\w* \w John|strong="G2491"\w* \w his|strong="G1438"\w* brother, \w and|strong="G2532"\w* \w brought|strong="G2532"\w* \w them|strong="G3588"\w* \w up|strong="G1519"\w* \w into|strong="G1519"\w* \w a|strong="G2532"\w* \w high|strong="G5308"\w* \w mountain|strong="G3735"\w* \w by|strong="G2596"\w* \w themselves|strong="G1438"\w*. +\v 2 \w He|strong="G2532"\w* \w was|strong="G1096"\w* \w changed|strong="G3339"\w*\f + \fr 17:2 \ft or, transfigured\f* \w before|strong="G1715"\w* \w them|strong="G3588"\w*. \w His|strong="G2532"\w* \w face|strong="G4383"\w* \w shone|strong="G2989"\w* \w like|strong="G5613"\w* \w the|strong="G2532"\w* \w sun|strong="G2246"\w*, \w and|strong="G2532"\w* \w his|strong="G2532"\w* \w garments|strong="G2440"\w* \w became|strong="G1096"\w* \w as|strong="G5613"\w* \w white|strong="G3022"\w* \w as|strong="G5613"\w* \w the|strong="G2532"\w* \w light|strong="G5457"\w*. +\v 3 \w Behold|strong="G2400"\w*, \w Moses|strong="G3475"\w* \w and|strong="G2532"\w* \w Elijah|strong="G2243"\w* \w appeared|strong="G3708"\w* \w to|strong="G2532"\w* \w them|strong="G3708"\w* \w talking|strong="G4814"\w* \w with|strong="G3326"\w* \w him|strong="G3708"\w*. +\p +\v 4 \w Peter|strong="G4074"\w* \w answered|strong="G3004"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w Jesus|strong="G2424"\w*, “\w Lord|strong="G2962"\w*, \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w good|strong="G2570"\w* \w for|strong="G1161"\w* \w us|strong="G3004"\w* \w to|strong="G2532"\w* \w be|strong="G1510"\w* \w here|strong="G5602"\w*. \w If|strong="G1487"\w* \w you|strong="G4771"\w* \w want|strong="G2309"\w*, \w let|strong="G1161"\w*’\w s|strong="G2962"\w* \w make|strong="G4160"\w* \w three|strong="G5140"\w* \w tents|strong="G4633"\w* \w here|strong="G5602"\w*: \w one|strong="G1520"\w* \w for|strong="G1161"\w* \w you|strong="G4771"\w*, \w one|strong="G1520"\w* \w for|strong="G1161"\w* \w Moses|strong="G3475"\w*, \w and|strong="G2532"\w* \w one|strong="G1520"\w* \w for|strong="G1161"\w* \w Elijah|strong="G2243"\w*.” +\p +\v 5 \w While|strong="G1722"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w still|strong="G2089"\w* \w speaking|strong="G2980"\w*, \w behold|strong="G2400"\w*, \w a|strong="G2532"\w* \w bright|strong="G5460"\w* \w cloud|strong="G3507"\w* \w overshadowed|strong="G1982"\w* \w them|strong="G3588"\w*. \w Behold|strong="G2400"\w*, \w a|strong="G2532"\w* \w voice|strong="G5456"\w* \w came|strong="G2532"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w cloud|strong="G3507"\w*, \w saying|strong="G3004"\w*, “\w This|strong="G3778"\w* \w is|strong="G1510"\w* \w my|strong="G3708"\w* beloved \w Son|strong="G5207"\w*, \w in|strong="G1722"\w* \w whom|strong="G3739"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w well|strong="G2532"\w* \w pleased|strong="G2106"\w*. \w Listen|strong="G2400"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*.” +\p +\v 6 \w When|strong="G2532"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* heard \w it|strong="G2532"\w*, \w they|strong="G2532"\w* \w fell|strong="G4098"\w* \w on|strong="G1909"\w* \w their|strong="G2532"\w* \w faces|strong="G4383"\w*, \w and|strong="G2532"\w* \w were|strong="G3588"\w* \w very|strong="G2532"\w* \w afraid|strong="G5399"\w*. +\v 7 \w Jesus|strong="G2424"\w* \w came|strong="G4334"\w* \w and|strong="G2532"\w* touched \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Get|strong="G1453"\+w* \+w up|strong="G1453"\+w*, \+w and|strong="G2532"\+w* don’\+w t|strong="G3588"\+w* \+w be|strong="G2532"\+w* \+w afraid|strong="G5399"\+w*.” \wj* +\v 8 \w Lifting|strong="G1869"\w* \w up|strong="G1869"\w* \w their|strong="G3588"\w* \w eyes|strong="G3788"\w*, \w they|strong="G1161"\w* \w saw|strong="G3708"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w*, \w except|strong="G1487"\w* \w Jesus|strong="G2424"\w* \w alone|strong="G3441"\w*. +\p +\v 9 \w As|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w coming|strong="G2597"\w* \w down|strong="G2597"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w mountain|strong="G3735"\w*, \w Jesus|strong="G2424"\w* \w commanded|strong="G1781"\w* \w them|strong="G3588"\w*, \w saying|strong="G3004"\w*, \wj “Don’\+w t|strong="G3588"\+w* \+w tell|strong="G3004"\+w* \+w anyone|strong="G3367"\+w* \+w what|strong="G3739"\+w* \+w you|strong="G3739"\+w* \+w saw|strong="G2424"\+w*, \+w until|strong="G2193"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G1537"\+w* \+w Man|strong="G3367"\+w* \+w has|strong="G3739"\+w* \+w risen|strong="G1453"\+w* \+w from|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w dead|strong="G3498"\+w*.”\wj* +\p +\v 10 \w His|strong="G2532"\w* \w disciples|strong="G3101"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w Then|strong="G3767"\w* \w why|strong="G5101"\w* \w do|strong="G5101"\w* \w the|strong="G2532"\w* \w scribes|strong="G1122"\w* \w say|strong="G3004"\w* \w that|strong="G3754"\w* \w Elijah|strong="G2243"\w* \w must|strong="G1163"\w* \w come|strong="G2064"\w* \w first|strong="G4413"\w*?” +\p +\v 11 \w Jesus|strong="G3004"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Elijah|strong="G2243"\+w* \+w indeed|strong="G2532"\+w* \+w comes|strong="G2064"\+w* \+w first|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* restore \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w*; \wj* +\v 12 \wj \+w but|strong="G1161"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w Elijah|strong="G2243"\+w* \+w has|strong="G3748"\+w* \+w come|strong="G2064"\+w* \+w already|strong="G2235"\+w*, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* didn’\+w t|strong="G3588"\+w* \+w recognize|strong="G1921"\+w* \+w him|strong="G3588"\+w*, \+w but|strong="G1161"\+w* \+w did|strong="G4160"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w whatever|strong="G3745"\+w* \+w they|strong="G2532"\+w* \+w wanted|strong="G2309"\+w* \+w to|strong="G2532"\+w*. \+w Even|strong="G2532"\+w* \+w so|strong="G3779"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3756"\+w* \+w will|strong="G2309"\+w* \+w also|strong="G2532"\+w* \+w suffer|strong="G3958"\+w* \+w by|strong="G1722"\+w* \+w them|strong="G3588"\+w*.”\wj* +\v 13 \w Then|strong="G5119"\w* \w the|strong="G3588"\w* \w disciples|strong="G3101"\w* \w understood|strong="G4920"\w* \w that|strong="G3754"\w* \w he|strong="G3754"\w* \w spoke|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w* \w of|strong="G4012"\w* \w John|strong="G2491"\w* \w the|strong="G3588"\w* Baptizer. +\p +\v 14 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w*, \w a|strong="G2532"\w* man \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \w kneeling|strong="G2532"\w* \w down|strong="G1120"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* saying, +\v 15 “\w Lord|strong="G2962"\w*, \w have|strong="G2532"\w* \w mercy|strong="G1653"\w* \w on|strong="G1519"\w* \w my|strong="G1473"\w* \w son|strong="G5207"\w*, \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w is|strong="G3588"\w* epileptic \w and|strong="G2532"\w* \w suffers|strong="G3958"\w* \w grievously|strong="G2560"\w*; \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w often|strong="G4178"\w* \w falls|strong="G4098"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w fire|strong="G4442"\w*, \w and|strong="G2532"\w* \w often|strong="G4178"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w water|strong="G5204"\w*. +\v 16 \w So|strong="G2532"\w* \w I|strong="G2532"\w* \w brought|strong="G4374"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w your|strong="G2532"\w* \w disciples|strong="G3101"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w could|strong="G1410"\w* \w not|strong="G3756"\w* \w cure|strong="G2323"\w* \w him|strong="G3588"\w*.” +\p +\v 17 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w*, \wj “Faithless \+w and|strong="G2532"\+w* \+w perverse|strong="G1294"\+w* \+w generation|strong="G1074"\+w*! \+w How|strong="G2193"\+w* \+w long|strong="G2193"\+w* \+w will|strong="G1510"\+w* \+w I|strong="G1473"\+w* \+w be|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w you|strong="G5210"\+w*? \+w How|strong="G2193"\+w* \+w long|strong="G2193"\+w* \+w will|strong="G1510"\+w* \+w I|strong="G1473"\+w* \+w bear|strong="G5342"\+w* \+w with|strong="G3326"\+w* \+w you|strong="G5210"\+w*? \+w Bring|strong="G5342"\+w* \+w him|strong="G3588"\+w* \+w here|strong="G5602"\+w* \+w to|strong="G2532"\+w* \+w me|strong="G1473"\+w*.”\wj* +\v 18 \w Jesus|strong="G2424"\w* \w rebuked|strong="G2008"\w* \w the|strong="G2532"\w* \w demon|strong="G1140"\w*, \w and|strong="G2532"\w* \w it|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G2532"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w boy|strong="G3816"\w* \w was|strong="G3588"\w* \w cured|strong="G2323"\w* \w from|strong="G2532"\w* \w that|strong="G3588"\w* \w hour|strong="G5610"\w*. +\p +\v 19 \w Then|strong="G5119"\w* \w the|strong="G1223"\w* \w disciples|strong="G3101"\w* \w came|strong="G4334"\w* \w to|strong="G2596"\w* \w Jesus|strong="G2424"\w* \w privately|strong="G2398"\w*, \w and|strong="G4334"\w* \w said|strong="G3004"\w*, “\w Why|strong="G5101"\w* weren’\w t|strong="G3588"\w* \w we|strong="G2249"\w* \w able|strong="G1410"\w* \w to|strong="G2596"\w* \w cast|strong="G1544"\w* \w it|strong="G5101"\w* \w out|strong="G1544"\w*?” +\p +\v 20 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Because|strong="G1223"\+w* \+w of|strong="G1223"\+w* \+w your|strong="G1223"\+w* unbelief. \+w For|strong="G1063"\+w* most \+w certainly|strong="G2192"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w if|strong="G1437"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2192"\+w* \+w faith|strong="G4102"\+w* \+w as|strong="G5613"\+w* \+w a|strong="G2192"\+w* \+w grain|strong="G2848"\+w* \+w of|strong="G1223"\+w* \+w mustard|strong="G4615"\+w* \+w seed|strong="G2848"\+w*, \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w this|strong="G3778"\+w* \+w mountain|strong="G3735"\+w*, ‘\+w Move|strong="G3327"\+w* \+w from|strong="G2532"\+w* \+w here|strong="G1759"\+w* \+w to|strong="G2532"\+w* \+w there|strong="G1563"\+w*,’ \+w and|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w move|strong="G3327"\+w*; \+w and|strong="G2532"\+w* \+w nothing|strong="G3762"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* impossible \+w for|strong="G1063"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 21 \wj But this kind doesn’t go out except by prayer and fasting.” \wj*\f + \fr 17:21 \ft NU omits verse 21.\f* +\p +\v 22 \w While|strong="G1722"\w* \w they|strong="G1161"\w* \w were|strong="G3588"\w* staying \w in|strong="G1722"\w* \w Galilee|strong="G1056"\w*, \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w The|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G1519"\+w* \+w is|strong="G3588"\+w* \+w about|strong="G3195"\+w* \+w to|strong="G1519"\+w* \+w be|strong="G3195"\+w* \+w delivered|strong="G3860"\+w* \+w up|strong="G3860"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1722"\+w* \+w hands|strong="G5495"\+w* \+w of|strong="G5207"\+w* \+w men|strong="G3588"\+w*, \wj* +\v 23 \wj \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* kill \+w him|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w third|strong="G5154"\+w* \+w day|strong="G2250"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w raised|strong="G1453"\+w* \+w up|strong="G1453"\+w*.” \wj* +\p \w They|strong="G2532"\w* \w were|strong="G3588"\w* \w exceedingly|strong="G4970"\w* \w sorry|strong="G3076"\w*. +\p +\v 24 \w When|strong="G1161"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w come|strong="G2064"\w* \w to|strong="G1519"\w* \w Capernaum|strong="G2584"\w*, \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w collected|strong="G2983"\w* \w the|strong="G2532"\w* didrachma coins\f + \fr 17:24 \ft A didrachma is a Greek silver coin worth 2 drachmas, about as much as 2 Roman denarii, or about 2 days’ wages. It was commonly used to pay the half-shekel temple tax, because 2 drachmas were worth one half shekel of silver. A shekel is about 10 grams or about 0.35 ounces.\f* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w Peter|strong="G4074"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “Doesn’\w t|strong="G3588"\w* \w your|strong="G2532"\w* \w teacher|strong="G1320"\w* \w pay|strong="G5055"\w* \w the|strong="G2532"\w* didrachma?” +\v 25 \w He|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Yes|strong="G3483"\w*.” +\p \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w came|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w house|strong="G3614"\w*, \w Jesus|strong="G2424"\w* anticipated \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, \wj “\+w What|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G4771"\+w* \+w think|strong="G1380"\+w*, \+w Simon|strong="G4613"\+w*? \+w From|strong="G2064"\+w* \+w whom|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w the|strong="G2532"\+w* \+w kings|strong="G3588"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G2532"\+w* \+w earth|strong="G1093"\+w* \+w receive|strong="G2983"\+w* toll \+w or|strong="G2228"\+w* \+w tribute|strong="G2778"\+w*? \+w From|strong="G2064"\+w* \+w their|strong="G2532"\+w* \+w children|strong="G5207"\+w*, \+w or|strong="G2228"\+w* \+w from|strong="G2064"\+w* strangers?”\wj* +\p +\v 26 Peter \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w From|strong="G3588"\w* strangers.” +\p \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w Therefore|strong="G1161"\+w* \+w the|strong="G1161"\+w* \+w children|strong="G5207"\+w* \+w are|strong="G1510"\+w* \+w exempt|strong="G1658"\+w*. \wj* +\v 27 \wj \+w But|strong="G1161"\+w*, \+w lest|strong="G3361"\+w* \+w we|strong="G2532"\+w* \+w cause|strong="G4624"\+w* \+w them|strong="G3588"\+w* \+w to|strong="G1519"\+w* \+w stumble|strong="G4624"\+w*, \+w go|strong="G4198"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w sea|strong="G2281"\+w*, \+w cast|strong="G2532"\+w* \+w a|strong="G2532"\+w* hook, \+w and|strong="G2532"\+w* \+w take|strong="G2983"\+w* \+w up|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w first|strong="G4413"\+w* \+w fish|strong="G2486"\+w* \+w that|strong="G2443"\+w* \+w comes|strong="G2532"\+w* \+w up|strong="G1519"\+w*. \+w When|strong="G1161"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2532"\+w* opened \+w its|strong="G1325"\+w* \+w mouth|strong="G4750"\+w*, \+w you|strong="G4771"\+w* \+w will|strong="G2532"\+w* \+w find|strong="G2147"\+w* \+w a|strong="G2532"\+w* stater coin.\wj*\f + \fr 17:27 \ft A stater is a silver coin equivalent to four Attic or two Alexandrian drachmas, or a Jewish shekel: just exactly enough to cover the half-shekel temple tax for two people. A shekel is about 10 grams or about 0.35 ounces, usually in the form of a silver coin.\f* \wj \+w Take|strong="G2983"\+w* \+w that|strong="G2443"\+w*, \+w and|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w it|strong="G2532"\+w* \+w to|strong="G1519"\+w* \+w them|strong="G3588"\+w* \+w for|strong="G1519"\+w* \+w me|strong="G1325"\+w* \+w and|strong="G2532"\+w* \+w you|strong="G4771"\+w*.”\wj* +\c 18 +\p +\v 1 \w In|strong="G1722"\w* \w that|strong="G3588"\w* \w hour|strong="G5610"\w* \w the|strong="G1722"\w* \w disciples|strong="G3101"\w* \w came|strong="G4334"\w* \w to|strong="G3004"\w* \w Jesus|strong="G2424"\w*, \w saying|strong="G3004"\w*, “\w Who|strong="G5101"\w* \w then|strong="G2424"\w* \w is|strong="G1510"\w* \w greatest|strong="G3173"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* Kingdom \w of|strong="G1722"\w* \w Heaven|strong="G3772"\w*?” +\p +\v 2 \w Jesus|strong="G2532"\w* \w called|strong="G4341"\w* \w a|strong="G2532"\w* little \w child|strong="G3813"\w* \w to|strong="G2532"\w* himself, \w and|strong="G2532"\w* \w set|strong="G2476"\w* \w him|strong="G2476"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w middle|strong="G3319"\w* \w of|strong="G2532"\w* \w them|strong="G1722"\w* +\v 3 \w and|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “Most \+w certainly|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w unless|strong="G1437"\+w* \+w you|strong="G5210"\+w* \+w turn|strong="G4762"\+w* \+w and|strong="G2532"\+w* \+w become|strong="G1096"\+w* \+w as|strong="G5613"\+w* little \+w children|strong="G3813"\+w*, \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w in|strong="G1519"\+w* \+w no|strong="G3756"\+w* \+w way|strong="G5613"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* Kingdom \+w of|strong="G2532"\+w* \+w Heaven|strong="G3772"\+w*. \wj* +\v 4 \wj \+w Whoever|strong="G3748"\+w* \+w therefore|strong="G3767"\+w* \+w humbles|strong="G5013"\+w* \+w himself|strong="G1438"\+w* \+w as|strong="G5613"\+w* \+w this|strong="G3778"\+w* little \+w child|strong="G3813"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G1722"\+w* \+w greatest|strong="G3173"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* Kingdom \+w of|strong="G1722"\+w* \+w Heaven|strong="G3772"\+w*. \wj* +\v 5 \wj \+w Whoever|strong="G3739"\+w* \+w receives|strong="G1209"\+w* \+w one|strong="G1520"\+w* \+w such|strong="G5108"\+w* little \+w child|strong="G3813"\+w* \+w in|strong="G1909"\+w* \+w my|strong="G1473"\+w* \+w name|strong="G3686"\+w* \+w receives|strong="G1209"\+w* \+w me|strong="G1473"\+w*, \wj* +\v 6 \wj \+w but|strong="G1161"\+w* \+w whoever|strong="G3739"\+w* \+w causes|strong="G4624"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G4012"\+w* \+w these|strong="G3778"\+w* \+w little|strong="G3398"\+w* \+w ones|strong="G3398"\+w* \+w who|strong="G3739"\+w* \+w believe|strong="G4100"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w* \+w to|strong="G1519"\+w* \+w stumble|strong="G4624"\+w*, \+w it|strong="G2532"\+w* \+w would|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w better|strong="G4851"\+w* \+w for|strong="G1519"\+w* \+w him|strong="G3588"\+w* \+w if|strong="G2532"\+w* \+w a|strong="G2532"\+w* huge \+w millstone|strong="G3458"\+w* \+w were|strong="G3588"\+w* \+w hung|strong="G2910"\+w* \+w around|strong="G4012"\+w* \+w his|strong="G1519"\+w* \+w neck|strong="G5137"\+w* \+w and|strong="G2532"\+w* \+w that|strong="G2443"\+w* \+w he|strong="G2532"\+w* \+w were|strong="G3588"\+w* sunk \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* depths \+w of|strong="G4012"\+w* \+w the|strong="G1722"\+w* \+w sea|strong="G2281"\+w*. \wj* +\p +\v 7 \wj “\+w Woe|strong="G3759"\+w* \+w to|strong="G2064"\+w* \+w the|strong="G1223"\+w* \+w world|strong="G2889"\+w* \+w because|strong="G1223"\+w* \+w of|strong="G1223"\+w* occasions \+w of|strong="G1223"\+w* \+w stumbling|strong="G4625"\+w*! \+w For|strong="G1063"\+w* \+w it|strong="G1063"\+w* \+w must|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w that|strong="G3739"\+w* \+w the|strong="G1223"\+w* occasions \+w come|strong="G2064"\+w*, \+w but|strong="G4133"\+w* \+w woe|strong="G3759"\+w* \+w to|strong="G2064"\+w* \+w that|strong="G3739"\+w* \+w person|strong="G3739"\+w* \+w through|strong="G1223"\+w* \+w whom|strong="G3739"\+w* \+w the|strong="G1223"\+w* \+w occasion|strong="G1223"\+w* \+w comes|strong="G2064"\+w*! \wj* +\v 8 \wj \+w If|strong="G1487"\+w* \+w your|strong="G2192"\+w* \+w hand|strong="G5495"\+w* \+w or|strong="G2228"\+w* \+w your|strong="G2192"\+w* \+w foot|strong="G4228"\+w* \+w causes|strong="G4624"\+w* \+w you|strong="G4771"\+w* \+w to|strong="G1519"\+w* \+w stumble|strong="G4624"\+w*, \+w cut|strong="G1581"\+w* \+w it|strong="G2532"\+w* \+w off|strong="G1581"\+w* \+w and|strong="G2532"\+w* \+w cast|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w from|strong="G2532"\+w* \+w you|strong="G4771"\+w*. \+w It|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w better|strong="G2570"\+w* \+w for|strong="G1519"\+w* \+w you|strong="G4771"\+w* \+w to|strong="G1519"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w life|strong="G2222"\+w* \+w maimed|strong="G2948"\+w* \+w or|strong="G2228"\+w* \+w crippled|strong="G2948"\+w*, \+w rather|strong="G2228"\+w* \+w than|strong="G2228"\+w* \+w having|strong="G2192"\+w* \+w two|strong="G1417"\+w* \+w hands|strong="G5495"\+w* \+w or|strong="G2228"\+w* \+w two|strong="G1417"\+w* \+w feet|strong="G4228"\+w* \+w to|strong="G1519"\+w* \+w be|strong="G1510"\+w* \+w cast|strong="G2532"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* eternal \+w fire|strong="G4442"\+w*. \wj* +\v 9 \wj \+w If|strong="G1487"\+w* \+w your|strong="G2192"\+w* \+w eye|strong="G3788"\+w* \+w causes|strong="G4624"\+w* \+w you|strong="G4771"\+w* \+w to|strong="G1519"\+w* \+w stumble|strong="G4624"\+w*, \+w pluck|strong="G1807"\+w* \+w it|strong="G2532"\+w* \+w out|strong="G2532"\+w* \+w and|strong="G2532"\+w* \+w cast|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w from|strong="G2532"\+w* \+w you|strong="G4771"\+w*. \+w It|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w better|strong="G2570"\+w* \+w for|strong="G1519"\+w* \+w you|strong="G4771"\+w* \+w to|strong="G1519"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w life|strong="G2222"\+w* \+w with|strong="G2532"\+w* \+w one|strong="G3588"\+w* \+w eye|strong="G3788"\+w*, \+w rather|strong="G2228"\+w* \+w than|strong="G2228"\+w* \+w having|strong="G2192"\+w* \+w two|strong="G1417"\+w* \+w eyes|strong="G3788"\+w* \+w to|strong="G1519"\+w* \+w be|strong="G1510"\+w* \+w cast|strong="G2532"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* Gehenna\wj*\f + \fr 18:9 \ft or, Hell\f* \wj \+w of|strong="G2532"\+w* \+w fire|strong="G4442"\+w*. \wj* +\v 10 \wj \+w See|strong="G3708"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* \+w despise|strong="G2706"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G1223"\+w* \+w these|strong="G3778"\+w* \+w little|strong="G3398"\+w* \+w ones|strong="G3398"\+w*, \+w for|strong="G1063"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w* \+w their|strong="G1722"\+w* angels \+w always|strong="G3956"\+w* \+w see|strong="G3708"\+w* \+w the|strong="G1722"\+w* \+w face|strong="G4383"\+w* \+w of|strong="G1223"\+w* \+w my|strong="G3708"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*. \wj* +\v 11 \wj For the Son of Man came to save that which was lost.\wj*\f + \fr 18:11 \ft NU omits verse 11.\f* +\p +\v 12 \wj “\+w What|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w think|strong="G1380"\+w*? \+w If|strong="G1437"\+w* \+w a|strong="G1096"\+w* \+w man|strong="G5100"\+w* \+w has|strong="G5101"\+w* \+w one|strong="G1520"\+w* \+w hundred|strong="G1540"\+w* \+w sheep|strong="G4263"\+w*, \+w and|strong="G2532"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G1537"\+w* \+w them|strong="G3588"\+w* \+w goes|strong="G4198"\+w* \+w astray|strong="G4105"\+w*, doesn’\+w t|strong="G3588"\+w* \+w he|strong="G2532"\+w* \+w leave|strong="G4198"\+w* \+w the|strong="G2532"\+w* \+w ninety-nine|strong="G1768"\+w*, \+w go|strong="G4198"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w mountains|strong="G3735"\+w*, \+w and|strong="G2532"\+w* \+w seek|strong="G2212"\+w* \+w that|strong="G3588"\+w* \+w which|strong="G3588"\+w* \+w has|strong="G5101"\+w* \+w gone|strong="G4198"\+w* \+w astray|strong="G4105"\+w*? \wj* +\v 13 \wj \+w If|strong="G1437"\+w* \+w he|strong="G2532"\+w* \+w finds|strong="G2147"\+w* \+w it|strong="G2532"\+w*, \+w most|strong="G3123"\+w* \+w certainly|strong="G1909"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w he|strong="G2532"\+w* \+w rejoices|strong="G5463"\+w* \+w over|strong="G1909"\+w* \+w it|strong="G2532"\+w* \+w more|strong="G3123"\+w* \+w than|strong="G2228"\+w* \+w over|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w ninety-nine|strong="G1768"\+w* \+w which|strong="G3588"\+w* \+w have|strong="G2532"\+w* \+w not|strong="G3361"\+w* \+w gone|strong="G4105"\+w* \+w astray|strong="G4105"\+w*. \wj* +\v 14 \wj \+w Even|strong="G3779"\+w* \+w so|strong="G3779"\+w* \+w it|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w the|strong="G1722"\+w* \+w will|strong="G2307"\+w* \+w of|strong="G3962"\+w* \+w your|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w* \+w that|strong="G2443"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G3962"\+w* \+w these|strong="G3778"\+w* \+w little|strong="G3398"\+w* \+w ones|strong="G3398"\+w* \+w should|strong="G3588"\+w* perish.\wj* +\p +\v 15 \wj “\+w If|strong="G1437"\+w* \+w your|strong="G1437"\+w* brother sins \+w against|strong="G1519"\+w* \+w you|strong="G4771"\+w*, \+w go|strong="G5217"\+w*, \+w show|strong="G1651"\+w* \+w him|strong="G3588"\+w* \+w his|strong="G1519"\+w* \+w fault|strong="G1651"\+w* \+w between|strong="G3342"\+w* \+w you|strong="G4771"\+w* \+w and|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w alone|strong="G3441"\+w*. \+w If|strong="G1437"\+w* \+w he|strong="G2532"\+w* listens \+w to|strong="G1519"\+w* \+w you|strong="G4771"\+w*, \+w you|strong="G4771"\+w* \+w have|strong="G2532"\+w* \+w gained|strong="G2770"\+w* \+w back|strong="G1519"\+w* \+w your|strong="G1437"\+w* brother. \wj* +\v 16 \wj \+w But|strong="G1161"\+w* \+w if|strong="G1437"\+w* \+w he|strong="G1161"\+w* doesn’t listen, \+w take|strong="G3880"\+w* \+w one|strong="G1520"\+w* \+w or|strong="G2228"\+w* \+w two|strong="G1417"\+w* \+w more|strong="G2089"\+w* \+w with|strong="G3326"\+w* \+w you|strong="G4771"\+w*, \+w that|strong="G2443"\+w* \+w at|strong="G1909"\+w* \+w the|strong="G3956"\+w* \+w mouth|strong="G4750"\+w* \+w of|strong="G1909"\+w* \+w two|strong="G1417"\+w* \+w or|strong="G2228"\+w* \+w three|strong="G5140"\+w* \+w witnesses|strong="G3144"\+w* \+w every|strong="G3956"\+w* \+w word|strong="G4487"\+w* \+w may|strong="G2443"\+w* \+w be|strong="G3361"\+w* \+w established|strong="G2476"\+w*.\wj*\x + \xo 18:16 \xt Deuteronomy 19:15\x* +\v 17 \wj \+w If|strong="G1437"\+w* \+w he|strong="G2532"\+w* \+w refuses|strong="G3878"\+w* \+w to|strong="G2532"\+w* \+w listen|strong="G3878"\+w* \+w to|strong="G2532"\+w* \+w them|strong="G3588"\+w*, \+w tell|strong="G3004"\+w* \+w it|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w assembly|strong="G1577"\+w*. \+w If|strong="G1437"\+w* \+w he|strong="G2532"\+w* \+w refuses|strong="G3878"\+w* \+w to|strong="G2532"\+w* hear \+w the|strong="G2532"\+w* \+w assembly|strong="G1577"\+w* \+w also|strong="G2532"\+w*, \+w let|strong="G1161"\+w* \+w him|strong="G3588"\+w* \+w be|strong="G1510"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w as|strong="G5618"\+w* \+w a|strong="G2532"\+w* \+w Gentile|strong="G1482"\+w* \+w or|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w tax|strong="G5057"\+w* \+w collector|strong="G5057"\+w*. \wj* +\v 18 \wj Most \+w certainly|strong="G1909"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w whatever|strong="G3745"\+w* \+w things|strong="G3588"\+w* \+w you|strong="G5210"\+w* \+w bind|strong="G1210"\+w* \+w on|strong="G1909"\+w* \+w earth|strong="G1093"\+w* \+w will|strong="G1510"\+w* \+w have|strong="G2532"\+w* \+w been|strong="G1510"\+w* \+w bound|strong="G1210"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*, \+w and|strong="G2532"\+w* \+w whatever|strong="G3745"\+w* \+w things|strong="G3588"\+w* \+w you|strong="G5210"\+w* \+w release|strong="G3089"\+w* \+w on|strong="G1909"\+w* \+w earth|strong="G1093"\+w* \+w will|strong="G1510"\+w* \+w have|strong="G2532"\+w* \+w been|strong="G1510"\+w* \+w released|strong="G3089"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*. \wj* +\v 19 \wj \+w Again|strong="G3825"\+w*, assuredly \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w that|strong="G3754"\+w* \+w if|strong="G1437"\+w* \+w two|strong="G1417"\+w* \+w of|strong="G1537"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G3739"\+w* \+w agree|strong="G4856"\+w* \+w on|strong="G1909"\+w* \+w earth|strong="G1093"\+w* \+w concerning|strong="G4012"\+w* \+w anything|strong="G3956"\+w* \+w that|strong="G3754"\+w* \+w they|strong="G3588"\+w* \+w will|strong="G3739"\+w* \+w ask|strong="G3004"\+w*, \+w it|strong="G3754"\+w* \+w will|strong="G3739"\+w* \+w be|strong="G1096"\+w* \+w done|strong="G1096"\+w* \+w for|strong="G3754"\+w* \+w them|strong="G3588"\+w* \+w by|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3739"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*. \wj* +\v 20 \wj \+w For|strong="G1063"\+w* \+w where|strong="G3757"\+w* \+w two|strong="G1417"\+w* \+w or|strong="G2228"\+w* \+w three|strong="G5140"\+w* \+w are|strong="G1510"\+w* \+w gathered|strong="G4863"\+w* \+w together|strong="G4863"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G1699"\+w* \+w name|strong="G3686"\+w*, \+w there|strong="G1563"\+w* \+w I|strong="G1063"\+w* \+w am|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w middle|strong="G3319"\+w* \+w of|strong="G3686"\+w* \+w them|strong="G3588"\+w*.”\wj* +\p +\v 21 \w Then|strong="G2532"\w* \w Peter|strong="G4074"\w* \w came|strong="G4334"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, “\w Lord|strong="G2962"\w*, \w how|strong="G2193"\w* \w often|strong="G4212"\w* \w shall|strong="G2532"\w* \w my|strong="G1473"\w* brother sin \w against|strong="G1519"\w* \w me|strong="G1473"\w*, \w and|strong="G2532"\w* \w I|strong="G1473"\w* forgive \w him|strong="G3588"\w*? \w Until|strong="G2193"\w* \w seven|strong="G2034"\w* \w times|strong="G2034"\w*?” +\p +\v 22 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w I|strong="G2193"\+w* don’\+w t|strong="G3588"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w* \+w until|strong="G2193"\+w* \+w seven|strong="G2033"\+w* \+w times|strong="G2034"\+w*, \+w but|strong="G3588"\+w*, \+w until|strong="G2193"\+w* \+w seventy|strong="G1441"\+w* \+w times|strong="G2034"\+w* \+w seven|strong="G2033"\+w*. \wj* +\v 23 \wj \+w Therefore|strong="G1223"\+w* \+w the|strong="G1223"\+w* Kingdom \+w of|strong="G3056"\+w* \+w Heaven|strong="G3772"\+w* \+w is|strong="G3588"\+w* \+w like|strong="G3666"\+w* \+w a|strong="G3739"\+w* certain \+w king|strong="G3588"\+w* \+w who|strong="G3739"\+w* \+w wanted|strong="G2309"\+w* \+w to|strong="G2309"\+w* \+w settle|strong="G4868"\+w* \+w accounts|strong="G3056"\+w* \+w with|strong="G3326"\+w* \+w his|strong="G1223"\+w* \+w servants|strong="G1401"\+w*. \wj* +\v 24 \wj \+w When|strong="G1161"\+w* \+w he|strong="G1161"\+w* had begun \+w to|strong="G1161"\+w* \+w settle|strong="G4868"\+w*, \+w one|strong="G1520"\+w* \+w was|strong="G1161"\+w* \+w brought|strong="G4374"\+w* \+w to|strong="G1161"\+w* \+w him|strong="G4374"\+w* \+w who|strong="G1520"\+w* \+w owed|strong="G3781"\+w* \+w him|strong="G4374"\+w* \+w ten|strong="G3463"\+w* \+w thousand|strong="G3463"\+w* \+w talents|strong="G5007"\+w*.\wj*\f + \fr 18:24 \ft Ten thousand talents (about 300 metric tons of silver) represents an extremely large sum of money, equivalent to about 60,000,000 denarii, where one denarius was typical of one day’s wages for agricultural labor.\f* +\v 25 \wj \+w But|strong="G1161"\+w* \+w because|strong="G1161"\+w* \+w he|strong="G2532"\+w* couldn’\+w t|strong="G3588"\+w* pay, \+w his|strong="G3956"\+w* \+w lord|strong="G2962"\+w* \+w commanded|strong="G2753"\+w* \+w him|strong="G3588"\+w* \+w to|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w sold|strong="G4097"\+w*, \+w with|strong="G2532"\+w* \+w his|strong="G3956"\+w* \+w wife|strong="G1135"\+w*, \+w his|strong="G3956"\+w* \+w children|strong="G5043"\+w*, \+w and|strong="G2532"\+w* \+w all|strong="G3956"\+w* \+w that|strong="G3588"\+w* \+w he|strong="G2532"\+w* \+w had|strong="G2192"\+w*, \+w and|strong="G2532"\+w* payment \+w to|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w made|strong="G1161"\+w*. \wj* +\v 26 \wj \+w The|strong="G2532"\+w* \+w servant|strong="G1401"\+w* \+w therefore|strong="G3767"\+w* \+w fell|strong="G4098"\+w* \+w down|strong="G4098"\+w* \+w and|strong="G2532"\+w* knelt \+w before|strong="G1909"\+w* \+w him|strong="G3588"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w Lord|strong="G3588"\+w*, \+w have|strong="G2532"\+w* \+w patience|strong="G3114"\+w* \+w with|strong="G2532"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* repay \+w you|strong="G4771"\+w* \+w all|strong="G3956"\+w*!’ \wj* +\v 27 \wj \+w The|strong="G2532"\+w* \+w lord|strong="G2962"\+w* \+w of|strong="G2532"\+w* \+w that|strong="G3588"\+w* \+w servant|strong="G1401"\+w*, \+w being|strong="G2532"\+w* \+w moved|strong="G4697"\+w* \+w with|strong="G2532"\+w* \+w compassion|strong="G4697"\+w*, released \+w him|strong="G3588"\+w* \+w and|strong="G2532"\+w* forgave \+w him|strong="G3588"\+w* \+w the|strong="G2532"\+w* \+w debt|strong="G1156"\+w*.\wj* +\p +\v 28 \wj “\+w But|strong="G1161"\+w* \+w that|strong="G3739"\+w* \+w servant|strong="G1401"\+w* \+w went|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w and|strong="G2532"\+w* \+w found|strong="G2147"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G2532"\+w* \+w his|strong="G2532"\+w* \+w fellow|strong="G4889"\+w* \+w servants|strong="G1401"\+w* \+w who|strong="G3739"\+w* \+w owed|strong="G3784"\+w* \+w him|strong="G3588"\+w* \+w one|strong="G1520"\+w* \+w hundred|strong="G1540"\+w* \+w denarii|strong="G1220"\+w*,\wj*\f + \fr 18:28 \ft 100 denarii was about one sixtieth of a talent, or about 500 grams (1.1 pounds) of silver.\f* \wj \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* grabbed \+w him|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w took|strong="G2902"\+w* \+w him|strong="G3588"\+w* \+w by|strong="G2532"\+w* \+w the|strong="G2532"\+w* throat, \+w saying|strong="G3004"\+w*, ‘Pay \+w me|strong="G3004"\+w* \+w what|strong="G3739"\+w* \+w you|strong="G3739"\+w* \+w owe|strong="G3784"\+w*!’\wj* +\p +\v 29 \wj “\+w So|strong="G3767"\+w* \+w his|strong="G1909"\+w* \+w fellow|strong="G4889"\+w* \+w servant|strong="G4889"\+w* \+w fell|strong="G4098"\+w* \+w down|strong="G4098"\+w* \+w at|strong="G1909"\+w* \+w his|strong="G1909"\+w* feet \+w and|strong="G2532"\+w* \+w begged|strong="G3870"\+w* \+w him|strong="G3588"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w Have|strong="G2532"\+w* \+w patience|strong="G3114"\+w* \+w with|strong="G2532"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* repay \+w you|strong="G4771"\+w*!’ \wj* +\v 30 \wj \+w He|strong="G1161"\+w* \+w would|strong="G2309"\+w* \+w not|strong="G3756"\+w*, \+w but|strong="G1161"\+w* \+w went|strong="G3588"\+w* \+w and|strong="G1161"\+w* \+w cast|strong="G3756"\+w* \+w him|strong="G3588"\+w* \+w into|strong="G1519"\+w* \+w prison|strong="G5438"\+w* \+w until|strong="G2193"\+w* \+w he|strong="G1161"\+w* \+w should|strong="G3784"\+w* pay \+w back|strong="G1519"\+w* \+w that|strong="G3588"\+w* \+w which|strong="G3588"\+w* \+w was|strong="G3588"\+w* \+w due|strong="G3784"\+w*. \wj* +\v 31 \wj \+w So|strong="G3767"\+w* \+w when|strong="G2532"\+w* \+w his|strong="G1438"\+w* \+w fellow|strong="G4889"\+w* \+w servants|strong="G4889"\+w* \+w saw|strong="G3708"\+w* \+w what|strong="G3588"\+w* \+w was|strong="G1096"\+w* \+w done|strong="G1096"\+w*, \+w they|strong="G2532"\+w* \+w were|strong="G3588"\+w* \+w exceedingly|strong="G4970"\+w* \+w sorry|strong="G3076"\+w*, \+w and|strong="G2532"\+w* \+w came|strong="G2064"\+w* \+w and|strong="G2532"\+w* told \+w their|strong="G1438"\+w* \+w lord|strong="G2962"\+w* \+w all|strong="G3956"\+w* \+w that|strong="G3588"\+w* \+w was|strong="G1096"\+w* \+w done|strong="G1096"\+w*. \wj* +\v 32 \wj \+w Then|strong="G5119"\+w* \+w his|strong="G3956"\+w* \+w lord|strong="G2962"\+w* \+w called|strong="G3004"\+w* \+w him|strong="G3588"\+w* \+w in|strong="G3956"\+w* \+w and|strong="G2962"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G3004"\+w* \+w him|strong="G3588"\+w*, ‘\+w You|strong="G4771"\+w* \+w wicked|strong="G4190"\+w* \+w servant|strong="G1401"\+w*! \+w I|strong="G1473"\+w* forgave \+w you|strong="G4771"\+w* \+w all|strong="G3956"\+w* \+w that|strong="G3588"\+w* \+w debt|strong="G3782"\+w* \+w because|strong="G1893"\+w* \+w you|strong="G4771"\+w* \+w begged|strong="G3870"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 33 \wj Shouldn’\+w t|strong="G3588"\+w* \+w you|strong="G4771"\+w* \+w also|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w had|strong="G2532"\+w* \+w mercy|strong="G1653"\+w* \+w on|strong="G1653"\+w* \+w your|strong="G2532"\+w* \+w fellow|strong="G4889"\+w* \+w servant|strong="G4889"\+w*, \+w even|strong="G2532"\+w* \+w as|strong="G5613"\+w* \+w I|strong="G2532"\+w* \+w had|strong="G2532"\+w* \+w mercy|strong="G1653"\+w* \+w on|strong="G1653"\+w* \+w you|strong="G4771"\+w*?’ \wj* +\v 34 \wj \+w His|strong="G3956"\+w* \+w lord|strong="G2962"\+w* \+w was|strong="G3588"\+w* \+w angry|strong="G3710"\+w*, \+w and|strong="G2532"\+w* \+w delivered|strong="G3860"\+w* \+w him|strong="G3588"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* tormentors \+w until|strong="G2193"\+w* \+w he|strong="G2532"\+w* \+w should|strong="G3784"\+w* pay \+w all|strong="G3956"\+w* \+w that|strong="G3739"\+w* \+w was|strong="G3588"\+w* \+w due|strong="G3784"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w*. \wj* +\v 35 \wj \+w So|strong="G3779"\+w* \+w my|strong="G1473"\+w* \+w heavenly|strong="G3770"\+w* \+w Father|strong="G3962"\+w* \+w will|strong="G2532"\+w* \+w also|strong="G2532"\+w* \+w do|strong="G4160"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*, \+w if|strong="G1437"\+w* \+w you|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* \+w each|strong="G1538"\+w* forgive \+w your|strong="G1437"\+w* brother \+w from|strong="G2532"\+w* \+w your|strong="G1437"\+w* \+w hearts|strong="G2588"\+w* \+w for|strong="G2532"\+w* \+w his|strong="G4160"\+w* misdeeds.”\wj* +\c 19 +\p +\v 1 \w When|strong="G3753"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* \w finished|strong="G5055"\w* \w these|strong="G3778"\w* \w words|strong="G3056"\w*, \w he|strong="G2532"\w* \w departed|strong="G3332"\w* \w from|strong="G2064"\w* \w Galilee|strong="G1056"\w* \w and|strong="G2532"\w* \w came|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w borders|strong="G3725"\w* \w of|strong="G3056"\w* \w Judea|strong="G2449"\w* \w beyond|strong="G4008"\w* \w the|strong="G2532"\w* \w Jordan|strong="G2446"\w*. +\v 2 \w Great|strong="G4183"\w* \w multitudes|strong="G3793"\w* followed \w him|strong="G2532"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w healed|strong="G2323"\w* \w them|strong="G1438"\w* \w there|strong="G1563"\w*. +\p +\v 3 \w Pharisees|strong="G5330"\w* \w came|strong="G4334"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \w testing|strong="G3985"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w saying|strong="G3004"\w*, “\w Is|strong="G3588"\w* \w it|strong="G2532"\w* \w lawful|strong="G1832"\w* \w for|strong="G2532"\w* \w a|strong="G2532"\w* \w man|strong="G3956"\w* \w to|strong="G2532"\w* divorce \w his|strong="G3956"\w* \w wife|strong="G1135"\w* \w for|strong="G2532"\w* \w any|strong="G3956"\w* reason?” +\p +\v 4 \w He|strong="G2532"\w* \w answered|strong="G3004"\w*, \wj “Haven’\+w t|strong="G3588"\+w* \+w you|strong="G3754"\+w* read \+w that|strong="G3754"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w made|strong="G4160"\+w* \+w them|strong="G3588"\+w* \+w from|strong="G2532"\+w* \+w the|strong="G2532"\+w* beginning \+w made|strong="G4160"\+w* \+w them|strong="G3588"\+w* male \+w and|strong="G2532"\+w* \+w female|strong="G2338"\+w*,\wj*\x + \xo 19:4 \xt Genesis 1:27\x* +\v 5 \wj \+w and|strong="G2532"\+w* \+w said|strong="G3004"\+w*, ‘\+w For|strong="G1519"\+w* \+w this|strong="G3778"\+w* \+w cause|strong="G1752"\+w* \+w a|strong="G2532"\+w* \+w man|strong="G3778"\+w* \+w shall|strong="G2532"\+w* \+w leave|strong="G2641"\+w* \+w his|strong="G1519"\+w* \+w father|strong="G3962"\+w* \+w and|strong="G2532"\+w* \+w mother|strong="G3384"\+w*, \+w and|strong="G2532"\+w* \+w shall|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w joined|strong="G2853"\+w* \+w to|strong="G1519"\+w* \+w his|strong="G1519"\+w* \+w wife|strong="G1135"\+w*; \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w two|strong="G1417"\+w* \+w shall|strong="G2532"\+w* \+w become|strong="G1510"\+w* \+w one|strong="G1520"\+w* \+w flesh|strong="G4561"\+w*’?\wj*\x + \xo 19:5 \xt Genesis 2:24\x* +\v 6 \wj \+w So|strong="G3767"\+w* \+w that|strong="G3739"\+w* \+w they|strong="G3588"\+w* \+w are|strong="G1510"\+w* \+w no|strong="G3361"\+w* \+w more|strong="G3765"\+w* \+w two|strong="G1417"\+w*, \+w but|strong="G3361"\+w* \+w one|strong="G1520"\+w* \+w flesh|strong="G4561"\+w*. \+w What|strong="G3739"\+w* \+w therefore|strong="G3767"\+w* \+w God|strong="G2316"\+w* \+w has|strong="G2316"\+w* \+w joined|strong="G4801"\+w* \+w together|strong="G4801"\+w*, don’\+w t|strong="G3588"\+w* \+w let|strong="G5563"\+w* \+w man|strong="G1520"\+w* tear apart.”\wj* +\p +\v 7 \w They|strong="G2532"\w* \w asked|strong="G3004"\w* \w him|strong="G1325"\w*, “\w Why|strong="G5101"\w* \w then|strong="G3767"\w* \w did|strong="G2532"\w* \w Moses|strong="G3475"\w* \w command|strong="G1781"\w* \w us|strong="G1325"\w* \w to|strong="G2532"\w* \w give|strong="G1325"\w* \w her|strong="G1325"\w* \w a|strong="G2532"\w* certificate \w of|strong="G2532"\w* divorce \w and|strong="G2532"\w* divorce \w her|strong="G1325"\w*?” +\p +\v 8 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \wj “\+w Moses|strong="G3475"\+w*, \+w because|strong="G3754"\+w* \+w of|strong="G3588"\+w* \+w the|strong="G1161"\+w* \+w hardness|strong="G4641"\+w* \+w of|strong="G3588"\+w* \+w your|strong="G3588"\+w* \+w hearts|strong="G4641"\+w*, \+w allowed|strong="G2010"\+w* \+w you|strong="G5210"\+w* \+w to|strong="G4314"\+w* divorce \+w your|strong="G3588"\+w* \+w wives|strong="G1135"\+w*, \+w but|strong="G1161"\+w* \+w from|strong="G3756"\+w* \+w the|strong="G1161"\+w* beginning \+w it|strong="G3754"\+w* \+w has|strong="G1096"\+w* \+w not|strong="G3756"\+w* \+w been|strong="G1096"\+w* \+w so|strong="G3779"\+w*. \wj* +\v 9 \wj \+w I|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w whoever|strong="G3739"\+w* divorces \+w his|strong="G1909"\+w* \+w wife|strong="G1135"\+w*, \+w except|strong="G3361"\+w* \+w for|strong="G3754"\+w* \+w sexual|strong="G4202"\+w* \+w immorality|strong="G4202"\+w*, \+w and|strong="G2532"\+w* \+w marries|strong="G1060"\+w* \+w another|strong="G3739"\+w*, \+w commits|strong="G3429"\+w* \+w adultery|strong="G3429"\+w*; \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3739"\+w* \+w marries|strong="G1060"\+w* \+w her|strong="G3754"\+w* \+w when|strong="G1161"\+w* \+w she|strong="G2532"\+w* \+w is|strong="G3588"\+w* divorced \+w commits|strong="G3429"\+w* \+w adultery|strong="G3429"\+w*.”\wj* +\p +\v 10 \w His|strong="G3326"\w* \w disciples|strong="G3101"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w If|strong="G1487"\w* \w this|strong="G3588"\w* \w is|strong="G1510"\w* \w the|strong="G3588"\w* \w case|strong="G3588"\w* \w of|strong="G3101"\w* \w the|strong="G3588"\w* \w man|strong="G3756"\w* \w with|strong="G3326"\w* \w his|strong="G3326"\w* \w wife|strong="G1135"\w*, \w it|strong="G1487"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w expedient|strong="G4851"\w* \w to|strong="G3004"\w* \w marry|strong="G1060"\w*.” +\p +\v 11 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Not|strong="G3756"\+w* \+w all|strong="G3956"\+w* \+w men|strong="G3956"\+w* \+w can|strong="G3004"\+w* \+w receive|strong="G5562"\+w* \+w this|strong="G3778"\+w* \+w saying|strong="G3004"\+w*, \+w but|strong="G1161"\+w* \+w those|strong="G3588"\+w* \+w to|strong="G3004"\+w* \+w whom|strong="G3739"\+w* \+w it|strong="G1161"\+w* \+w is|strong="G3588"\+w* \+w given|strong="G1325"\+w*. \wj* +\v 12 \wj \+w For|strong="G1063"\+w* \+w there|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w eunuchs|strong="G2135"\+w* \+w who|strong="G3588"\+w* \+w were|strong="G1510"\+w* \+w born|strong="G1080"\+w* \+w that|strong="G3588"\+w* \+w way|strong="G3779"\+w* \+w from|strong="G1537"\+w* \+w their|strong="G1438"\+w* \+w mother|strong="G3384"\+w*’s \+w womb|strong="G2836"\+w*, \+w and|strong="G2532"\+w* \+w there|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w eunuchs|strong="G2135"\+w* \+w who|strong="G3588"\+w* \+w were|strong="G1510"\+w* \+w made|strong="G2134"\+w* \+w eunuchs|strong="G2135"\+w* \+w by|strong="G1223"\+w* \+w men|strong="G3588"\+w*; \+w and|strong="G2532"\+w* \+w there|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w eunuchs|strong="G2135"\+w* \+w who|strong="G3588"\+w* \+w made|strong="G2134"\+w* \+w themselves|strong="G1438"\+w* \+w eunuchs|strong="G2135"\+w* \+w for|strong="G1063"\+w* \+w the|strong="G2532"\+w* Kingdom \+w of|strong="G1537"\+w* \+w Heaven|strong="G3772"\+w*’s \+w sake|strong="G1223"\+w*. \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w able|strong="G1410"\+w* \+w to|strong="G2532"\+w* \+w receive|strong="G5562"\+w* \+w it|strong="G2532"\+w*, \+w let|strong="G1510"\+w* \+w him|strong="G3588"\+w* \+w receive|strong="G5562"\+w* \+w it|strong="G2532"\+w*.”\wj* +\p +\v 13 \w Then|strong="G2532"\w* little \w children|strong="G3813"\w* \w were|strong="G3588"\w* \w brought|strong="G4374"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w* \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w should|strong="G3588"\w* \w lay|strong="G2007"\w* \w his|strong="G2007"\w* \w hands|strong="G5495"\w* \w on|strong="G5495"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w pray|strong="G4336"\w*; \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w rebuked|strong="G2008"\w* \w them|strong="G3588"\w*. +\v 14 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w*, \wj “Allow \+w the|strong="G2532"\+w* little \+w children|strong="G3813"\+w*, \+w and|strong="G2532"\+w* don’\+w t|strong="G3588"\+w* \+w forbid|strong="G2967"\+w* \+w them|strong="G3588"\+w* \+w to|strong="G4314"\+w* \+w come|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w me|strong="G1473"\+w*; \+w for|strong="G1063"\+w* \+w the|strong="G2532"\+w* Kingdom \+w of|strong="G2532"\+w* \+w Heaven|strong="G3772"\+w* \+w belongs|strong="G1510"\+w* \+w to|strong="G4314"\+w* ones \+w like|strong="G5108"\+w* \+w these|strong="G3588"\+w*.”\wj* +\v 15 \w He|strong="G2532"\w* \w laid|strong="G2007"\w* \w his|strong="G2007"\w* \w hands|strong="G5495"\w* \w on|strong="G5495"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w departed|strong="G4198"\w* \w from|strong="G2532"\w* \w there|strong="G2532"\w*. +\p +\v 16 \w Behold|strong="G2400"\w*, \w one|strong="G1520"\w* \w came|strong="G4334"\w* \w to|strong="G2443"\w* \w him|strong="G3708"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Good|strong="G5101"\w* \w teacher|strong="G1320"\w*, \w what|strong="G5101"\w* \w good|strong="G5101"\w* \w thing|strong="G1520"\w* \w shall|strong="G2532"\w* \w I|strong="G2532"\w* \w do|strong="G4160"\w*, \w that|strong="G2443"\w* \w I|strong="G2532"\w* \w may|strong="G2532"\w* \w have|strong="G2192"\w* eternal \w life|strong="G2222"\w*?” +\p +\v 17 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \wj “\+w Why|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G1487"\+w* \+w call|strong="G3004"\+w* \+w me|strong="G1473"\+w* \+w good|strong="G5101"\+w*?\wj*\f + \fr 19:17 \ft So MT and TR. NU reads “Why do you ask me about what is good?”\f* \wj \+w No|strong="G1487"\+w* \+w one|strong="G1520"\+w* \+w is|strong="G1510"\+w* \+w good|strong="G5101"\+w* \+w but|strong="G1161"\+w* \+w one|strong="G1520"\+w*, \+w that|strong="G3588"\+w* \+w is|strong="G1510"\+w*, \+w God|strong="G3004"\+w*. \+w But|strong="G1161"\+w* \+w if|strong="G1487"\+w* \+w you|strong="G1487"\+w* \+w want|strong="G2309"\+w* \+w to|strong="G1519"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w life|strong="G2222"\+w*, \+w keep|strong="G5083"\+w* \+w the|strong="G1519"\+w* \+w commandments|strong="G1785"\+w*.” \wj* +\p +\v 18 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Which|strong="G3588"\w* \w ones|strong="G4169"\w*?” +\p \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w*, \wj “‘\+w You|strong="G3004"\+w* \+w shall|strong="G3588"\+w* \+w not|strong="G3756"\+w* \+w murder|strong="G5407"\+w*.’ ‘\+w You|strong="G3004"\+w* \+w shall|strong="G3588"\+w* \+w not|strong="G3756"\+w* \+w commit|strong="G3431"\+w* \+w adultery|strong="G3431"\+w*.’ ‘\+w You|strong="G3004"\+w* \+w shall|strong="G3588"\+w* \+w not|strong="G3756"\+w* \+w steal|strong="G2813"\+w*.’ ‘\+w You|strong="G3004"\+w* \+w shall|strong="G3588"\+w* \+w not|strong="G3756"\+w* offer \+w false|strong="G5576"\+w* \+w testimony|strong="G5576"\+w*.’ \wj* +\v 19 \wj ‘\+w Honor|strong="G5091"\+w* \+w your|strong="G5091"\+w* \+w father|strong="G3962"\+w* \+w and|strong="G2532"\+w* \+w your|strong="G5091"\+w* \+w mother|strong="G3384"\+w*.’\wj*\x + \xo 19:19 \xt Exodus 20:12-16; Deuteronomy 5:16-20\x* \wj \+w And|strong="G2532"\+w*, ‘\+w You|strong="G4771"\+w* \+w shall|strong="G2532"\+w* love \+w your|strong="G5091"\+w* \+w neighbor|strong="G4139"\+w* \+w as|strong="G5613"\+w* \+w yourself|strong="G4572"\+w*.’”\wj*\x + \xo 19:19 \xt Leviticus 19:18\x* +\p +\v 20 \w The|strong="G3956"\w* \w young|strong="G3495"\w* \w man|strong="G3778"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w All|strong="G3956"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w* \w I|strong="G3778"\w* \w have|strong="G3956"\w* \w observed|strong="G5442"\w* \w from|strong="G3588"\w* \w my|strong="G3956"\w* youth. \w What|strong="G5101"\w* \w do|strong="G5101"\w* \w I|strong="G3778"\w* \w still|strong="G2089"\w* \w lack|strong="G5302"\w*?” +\p +\v 21 \w Jesus|strong="G2424"\w* \w said|strong="G5346"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w If|strong="G1487"\+w* \+w you|strong="G4771"\+w* \+w want|strong="G2309"\+w* \+w to|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w perfect|strong="G5046"\+w*, \+w go|strong="G5217"\+w*, \+w sell|strong="G4453"\+w* \+w what|strong="G3588"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2192"\+w*, \+w and|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w poor|strong="G4434"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w will|strong="G2309"\+w* \+w have|strong="G2192"\+w* \+w treasure|strong="G2344"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*; \+w and|strong="G2532"\+w* \+w come|strong="G1204"\+w*, follow \+w me|strong="G1325"\+w*.”\wj* +\v 22 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w the|strong="G1161"\w* \w young|strong="G3495"\w* \w man|strong="G3495"\w* heard \w this|strong="G3588"\w*, \w he|strong="G1161"\w* \w went|strong="G3588"\w* away \w sad|strong="G3076"\w*, \w for|strong="G1063"\w* \w he|strong="G1161"\w* \w was|strong="G1510"\w* \w one|strong="G3588"\w* \w who|strong="G3588"\w* \w had|strong="G2192"\w* \w great|strong="G4183"\w* \w possessions|strong="G2933"\w*. +\p +\v 23 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w*, \wj “Most certainly \+w I|strong="G1161"\+w* \+w say|strong="G3004"\+w* \+w to|strong="G1519"\+w* \+w you|strong="G5210"\+w*, \+w a|strong="G1519"\+w* \+w rich|strong="G4145"\+w* \+w man|strong="G4145"\+w* \+w will|strong="G3748"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1519"\+w* Kingdom \+w of|strong="G2424"\+w* \+w Heaven|strong="G3772"\+w* \+w with|strong="G1519"\+w* difficulty. \wj* +\v 24 \wj \+w Again|strong="G3825"\+w* \+w I|strong="G1161"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w it|strong="G3754"\+w* \+w is|strong="G1510"\+w* \+w easier|strong="G2123"\+w* \+w for|strong="G3754"\+w* \+w a|strong="G1519"\+w* \+w camel|strong="G2574"\+w* \+w to|strong="G1519"\+w* \+w go|strong="G1525"\+w* \+w through|strong="G1223"\+w* \+w a|strong="G1519"\+w* \+w needle|strong="G4476"\+w*’s eye \+w than|strong="G2228"\+w* \+w for|strong="G3754"\+w* \+w a|strong="G1519"\+w* \+w rich|strong="G4145"\+w* \+w man|strong="G4145"\+w* \+w to|strong="G1519"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w God|strong="G2316"\+w*’s Kingdom.”\wj* +\p +\v 25 \w When|strong="G1161"\w* \w the|strong="G1161"\w* \w disciples|strong="G3101"\w* heard \w it|strong="G1161"\w*, \w they|strong="G1161"\w* \w were|strong="G3588"\w* \w exceedingly|strong="G4970"\w* \w astonished|strong="G1605"\w*, \w saying|strong="G3004"\w*, “\w Who|strong="G5101"\w* \w then|strong="G1161"\w* \w can|strong="G1410"\w* \w be|strong="G1410"\w* \w saved|strong="G4982"\w*?” +\p +\v 26 \w Looking|strong="G1689"\w* \w at|strong="G3844"\w* \w them|strong="G3588"\w*, \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w*, \wj “\+w With|strong="G3844"\+w* \+w men|strong="G3956"\+w* \+w this|strong="G3778"\+w* \+w is|strong="G1510"\+w* impossible, \+w but|strong="G1161"\+w* \+w with|strong="G3844"\+w* \+w God|strong="G2316"\+w* \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w are|strong="G1510"\+w* \+w possible|strong="G1415"\+w*.”\wj* +\p +\v 27 \w Then|strong="G2532"\w* \w Peter|strong="G4074"\w* \w answered|strong="G3004"\w*, “\w Behold|strong="G2400"\w*, \w we|strong="G2249"\w* \w have|strong="G2532"\w* left \w everything|strong="G3956"\w* \w and|strong="G2532"\w* followed \w you|strong="G4771"\w*. \w What|strong="G5101"\w* \w then|strong="G2532"\w* \w will|strong="G5101"\w* \w we|strong="G2249"\w* \w have|strong="G2532"\w*?” +\p +\v 28 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “Most \+w certainly|strong="G1909"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w who|strong="G3588"\+w* \+w have|strong="G2532"\+w* followed \+w me|strong="G1473"\+w*, \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w regeneration|strong="G3824"\+w* \+w when|strong="G3752"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w* \+w will|strong="G2532"\+w* \+w sit|strong="G2521"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G1722"\+w* \+w throne|strong="G2362"\+w* \+w of|strong="G5207"\+w* \+w his|strong="G1909"\+w* \+w glory|strong="G1391"\+w*, \+w you|strong="G5210"\+w* \+w also|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w sit|strong="G2521"\+w* \+w on|strong="G1909"\+w* \+w twelve|strong="G1427"\+w* \+w thrones|strong="G2362"\+w*, \+w judging|strong="G2919"\+w* \+w the|strong="G1722"\+w* \+w twelve|strong="G1427"\+w* \+w tribes|strong="G5443"\+w* \+w of|strong="G5207"\+w* \+w Israel|strong="G2474"\+w*. \wj* +\v 29 \wj \+w Everyone|strong="G3956"\+w* \+w who|strong="G3588"\+w* \+w has|strong="G3962"\+w* left \+w houses|strong="G3614"\+w*, \+w or|strong="G2228"\+w* brothers, \+w or|strong="G2228"\+w* sisters, \+w or|strong="G2228"\+w* \+w father|strong="G3962"\+w*, \+w or|strong="G2228"\+w* \+w mother|strong="G3384"\+w*, \+w or|strong="G2228"\+w* \+w wife|strong="G1135"\+w*, \+w or|strong="G2228"\+w* \+w children|strong="G5043"\+w*, \+w or|strong="G2228"\+w* lands, \+w for|strong="G1752"\+w* \+w my|strong="G3956"\+w* \+w name|strong="G3686"\+w*’s \+w sake|strong="G1752"\+w*, \+w will|strong="G2532"\+w* \+w receive|strong="G2983"\+w* \+w one|strong="G3956"\+w* \+w hundred|strong="G1542"\+w* \+w times|strong="G4179"\+w*, \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w inherit|strong="G2816"\+w* eternal \+w life|strong="G2222"\+w*. \wj* +\v 30 \wj \+w But|strong="G1161"\+w* \+w many|strong="G4183"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w last|strong="G2078"\+w* \+w who|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w first|strong="G4413"\+w*, \+w and|strong="G2532"\+w* \+w first|strong="G4413"\+w* \+w who|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w last|strong="G2078"\+w*. \wj* +\c 20 +\p +\v 1 \wj “\+w For|strong="G1063"\+w* \+w the|strong="G1519"\+w* Kingdom \+w of|strong="G3588"\+w* \+w Heaven|strong="G3772"\+w* \+w is|strong="G1510"\+w* \+w like|strong="G3664"\+w* \+w a|strong="G1519"\+w* \+w man|strong="G1519"\+w* \+w who|strong="G3588"\+w* \+w was|strong="G1510"\+w* \+w the|strong="G1519"\+w* master \+w of|strong="G3588"\+w* \+w a|strong="G1519"\+w* \+w household|strong="G3617"\+w*, \+w who|strong="G3588"\+w* \+w went|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w early|strong="G4404"\+w* \+w in|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w morning|strong="G4404"\+w* \+w to|strong="G1519"\+w* \+w hire|strong="G3409"\+w* \+w laborers|strong="G2040"\+w* \+w for|strong="G1063"\+w* \+w his|strong="G1519"\+w* vineyard. \wj* +\v 2 \wj \+w When|strong="G1161"\+w* \+w he|strong="G1161"\+w* \+w had|strong="G3588"\+w* \+w agreed|strong="G4856"\+w* \+w with|strong="G3326"\+w* \+w the|strong="G1519"\+w* \+w laborers|strong="G2040"\+w* \+w for|strong="G1519"\+w* \+w a|strong="G1519"\+w* \+w denarius|strong="G1220"\+w*\wj*\f + \fr 20:2 \ft A denarius is a silver Roman coin worth 1/25th of a Roman aureus. This was a common wage for a day of farm labor.\f* \wj \+w a|strong="G1519"\+w* \+w day|strong="G2250"\+w*, \+w he|strong="G1161"\+w* sent \+w them|strong="G3588"\+w* \+w into|strong="G1519"\+w* \+w his|strong="G1438"\+w* vineyard. \wj* +\v 3 \wj \+w He|strong="G2532"\+w* \+w went|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w about|strong="G4012"\+w* \+w the|strong="G1722"\+w* \+w third|strong="G5154"\+w* \+w hour|strong="G5610"\+w*,\wj*\f + \fr 20:3 \ft Time was measured from sunrise to sunset, so the third hour would be about 9:00 a.m.\f* \wj \+w and|strong="G2532"\+w* \+w saw|strong="G3708"\+w* \+w others|strong="G3588"\+w* \+w standing|strong="G2476"\+w* idle \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* marketplace. \wj* +\v 4 \wj \+w He|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G1519"\+w* \+w them|strong="G3588"\+w*, ‘\+w You|strong="G5210"\+w* \+w also|strong="G2532"\+w* \+w go|strong="G5217"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* vineyard, \+w and|strong="G2532"\+w* \+w whatever|strong="G3739"\+w* \+w is|strong="G1510"\+w* \+w right|strong="G1342"\+w* \+w I|strong="G3739"\+w* \+w will|strong="G1510"\+w* \+w give|strong="G1325"\+w* \+w you|strong="G5210"\+w*.’ \+w So|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w went|strong="G2532"\+w* \+w their|strong="G2532"\+w* \+w way|strong="G5217"\+w*. \wj* +\v 5 \wj \+w Again|strong="G3825"\+w* \+w he|strong="G2532"\+w* \+w went|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w about|strong="G4012"\+w* \+w the|strong="G2532"\+w* \+w sixth|strong="G1623"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w ninth|strong="G1766"\+w* \+w hour|strong="G5610"\+w*,\wj*\f + \fr 20:5 \ft noon and 3:00 p.m.\f* \wj \+w and|strong="G2532"\+w* \+w did|strong="G4160"\+w* \+w likewise|strong="G5615"\+w*. \wj* +\v 6 \wj \+w About|strong="G4012"\+w* \+w the|strong="G2532"\+w* \+w eleventh|strong="G1734"\+w* hour\wj*\f + \fr 20:6 \ft 5:00 p.m.\f* \wj \+w he|strong="G2532"\+w* \+w went|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w and|strong="G2532"\+w* \+w found|strong="G2147"\+w* \+w others|strong="G3588"\+w* \+w standing|strong="G2476"\+w* idle. \+w He|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w them|strong="G3588"\+w*, ‘\+w Why|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G3004"\+w* \+w stand|strong="G2476"\+w* \+w here|strong="G5602"\+w* \+w all|strong="G3650"\+w* \+w day|strong="G2250"\+w* idle?’ \wj* +\p +\v 7 \wj “\+w They|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G1519"\+w* \+w him|strong="G3588"\+w*, ‘\+w Because|strong="G3754"\+w* \+w no|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w has|strong="G3762"\+w* \+w hired|strong="G3409"\+w* \+w us|strong="G3004"\+w*.’\wj* +\p \wj “\+w He|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G1519"\+w* \+w them|strong="G3588"\+w*, ‘\+w You|strong="G5210"\+w* \+w also|strong="G2532"\+w* \+w go|strong="G5217"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* vineyard, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* receive \+w whatever|strong="G3748"\+w* \+w is|strong="G3588"\+w* \+w right|strong="G1519"\+w*.’ \wj* +\p +\v 8 \wj “\+w When|strong="G1161"\+w* \+w evening|strong="G3798"\+w* \+w had|strong="G2532"\+w* \+w come|strong="G1096"\+w*, \+w the|strong="G2532"\+w* \+w lord|strong="G2962"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* vineyard \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w his|strong="G2532"\+w* \+w manager|strong="G2012"\+w*, ‘\+w Call|strong="G2564"\+w* \+w the|strong="G2532"\+w* \+w laborers|strong="G2040"\+w* \+w and|strong="G2532"\+w* \+w pay|strong="G3408"\+w* \+w them|strong="G3588"\+w* \+w their|strong="G2532"\+w* \+w wages|strong="G3408"\+w*, \+w beginning|strong="G4413"\+w* \+w from|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w last|strong="G2078"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w first|strong="G4413"\+w*.’\wj* +\v 9 \wj “\+w When|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w were|strong="G3588"\+w* hired \+w at|strong="G4012"\+w* \+w about|strong="G4012"\+w* \+w the|strong="G2532"\+w* \+w eleventh|strong="G1734"\+w* \+w hour|strong="G5610"\+w* \+w came|strong="G2064"\+w*, \+w they|strong="G2532"\+w* each \+w received|strong="G2983"\+w* \+w a|strong="G2532"\+w* \+w denarius|strong="G1220"\+w*. \wj* +\v 10 \wj \+w When|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w first|strong="G4413"\+w* \+w came|strong="G2064"\+w*, \+w they|strong="G2532"\+w* \+w supposed|strong="G3543"\+w* \+w that|strong="G3754"\+w* \+w they|strong="G2532"\+w* \+w would|strong="G2532"\+w* \+w receive|strong="G2983"\+w* \+w more|strong="G4119"\+w*; \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w likewise|strong="G2532"\+w* each \+w received|strong="G2983"\+w* \+w a|strong="G2532"\+w* \+w denarius|strong="G1220"\+w*. \wj* +\v 11 \wj \+w When|strong="G1161"\+w* \+w they|strong="G1161"\+w* \+w received|strong="G2983"\+w* \+w it|strong="G1161"\+w*, \+w they|strong="G1161"\+w* \+w murmured|strong="G1111"\+w* \+w against|strong="G2596"\+w* \+w the|strong="G1161"\+w* master \+w of|strong="G2596"\+w* \+w the|strong="G1161"\+w* \+w household|strong="G3617"\+w*, \wj* +\v 12 \wj \+w saying|strong="G3004"\+w*, ‘\+w These|strong="G3778"\+w* \+w last|strong="G2078"\+w* \+w have|strong="G2532"\+w* \+w spent|strong="G4160"\+w* \+w one|strong="G1520"\+w* \+w hour|strong="G5610"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G3004"\+w* \+w have|strong="G2532"\+w* \+w made|strong="G4160"\+w* \+w them|strong="G3588"\+w* \+w equal|strong="G2470"\+w* \+w to|strong="G2532"\+w* \+w us|strong="G3004"\+w* \+w who|strong="G3588"\+w* \+w have|strong="G2532"\+w* borne \+w the|strong="G2532"\+w* burden \+w of|strong="G2250"\+w* \+w the|strong="G2532"\+w* \+w day|strong="G2250"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w scorching|strong="G2742"\+w* \+w heat|strong="G2742"\+w*!’ \wj* +\p +\v 13 \wj “\+w But|strong="G1161"\+w* \+w he|strong="G1161"\+w* \+w answered|strong="G3004"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G1520"\+w* \+w them|strong="G3588"\+w*, ‘\+w Friend|strong="G2083"\+w*, \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* doing \+w you|strong="G4771"\+w* \+w no|strong="G3756"\+w* wrong. Didn’\+w t|strong="G3588"\+w* \+w you|strong="G4771"\+w* \+w agree|strong="G4856"\+w* \+w with|strong="G3756"\+w* \+w me|strong="G1473"\+w* \+w for|strong="G1161"\+w* \+w a|strong="G1161"\+w* \+w denarius|strong="G1220"\+w*? \wj* +\v 14 \wj \+w Take|strong="G1161"\+w* \+w that|strong="G3588"\+w* \+w which|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w yours|strong="G4771"\+w*, \+w and|strong="G2532"\+w* \+w go|strong="G5217"\+w* \+w your|strong="G4674"\+w* \+w way|strong="G5217"\+w*. \+w It|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w my|strong="G1325"\+w* \+w desire|strong="G2309"\+w* \+w to|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w to|strong="G2532"\+w* \+w this|strong="G3778"\+w* \+w last|strong="G2078"\+w* \+w just|strong="G5613"\+w* \+w as|strong="G5613"\+w* much \+w as|strong="G5613"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G4771"\+w*. \wj* +\v 15 \wj Isn’\+w t|strong="G3588"\+w* \+w it|strong="G3754"\+w* \+w lawful|strong="G1832"\+w* \+w for|strong="G3754"\+w* \+w me|strong="G1473"\+w* \+w to|strong="G2309"\+w* \+w do|strong="G4160"\+w* \+w what|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w want|strong="G2309"\+w* \+w to|strong="G2309"\+w* \+w with|strong="G1722"\+w* \+w what|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w own|strong="G1699"\+w*? \+w Or|strong="G2228"\+w* \+w is|strong="G1510"\+w* \+w your|strong="G4160"\+w* \+w eye|strong="G3788"\+w* \+w evil|strong="G4190"\+w*, \+w because|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w good|strong="G3756"\+w*?’ \wj* +\v 16 \wj \+w So|strong="G3779"\+w* \+w the|strong="G2532"\+w* \+w last|strong="G2078"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w first|strong="G4413"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w first|strong="G4413"\+w* \+w last|strong="G2078"\+w*. \+w For|strong="G2532"\+w* many \+w are|strong="G1510"\+w* \+w called|strong="G3588"\+w*, \+w but|strong="G2532"\+w* few \+w are|strong="G1510"\+w* chosen.”\wj* +\p +\v 17 \w As|strong="G1519"\w* \w Jesus|strong="G2424"\w* \w was|strong="G3588"\w* \w going|strong="G2532"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w*, \w he|strong="G2532"\w* \w took|strong="G3880"\w* \w the|strong="G1722"\w* \w twelve|strong="G1427"\w* \w disciples|strong="G3101"\w* \w aside|strong="G3880"\w*, \w and|strong="G2532"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w way|strong="G3598"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, +\v 18 \wj “\+w Behold|strong="G2400"\+w*, \+w we|strong="G2532"\+w* \+w are|strong="G3588"\+w* \+w going|strong="G2532"\+w* \+w up|strong="G3860"\+w* \+w to|strong="G1519"\+w* \+w Jerusalem|strong="G2414"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G1519"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w delivered|strong="G3860"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w chief|strong="G2532"\+w* priests \+w and|strong="G2532"\+w* \+w scribes|strong="G1122"\+w*, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w condemn|strong="G2632"\+w* \+w him|strong="G3588"\+w* \+w to|strong="G1519"\+w* \+w death|strong="G2288"\+w*, \wj* +\v 19 \wj \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w hand|strong="G3860"\+w* \+w him|strong="G3588"\+w* \+w over|strong="G3860"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w Gentiles|strong="G1484"\+w* \+w to|strong="G1519"\+w* \+w mock|strong="G1702"\+w*, \+w to|strong="G1519"\+w* \+w scourge|strong="G3146"\+w*, \+w and|strong="G2532"\+w* \+w to|strong="G1519"\+w* \+w crucify|strong="G4717"\+w*; \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w third|strong="G5154"\+w* \+w day|strong="G2250"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w raised|strong="G1453"\+w* \+w up|strong="G1453"\+w*.”\wj* +\p +\v 20 \w Then|strong="G2532"\w* \w the|strong="G2532"\w* \w mother|strong="G3384"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w sons|strong="G5207"\w* \w of|strong="G5207"\w* \w Zebedee|strong="G2199"\w* \w came|strong="G4334"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w with|strong="G3326"\w* \w her|strong="G3588"\w* \w sons|strong="G5207"\w*, \w kneeling|strong="G2532"\w* \w and|strong="G2532"\w* asking \w a|strong="G2532"\w* \w certain|strong="G5100"\w* \w thing|strong="G5100"\w* \w of|strong="G5207"\w* \w him|strong="G3588"\w*. +\v 21 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2443"\w* \w her|strong="G3588"\w*, \wj “\+w What|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G4771"\+w* \+w want|strong="G2309"\+w*?”\wj* +\p \w She|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w*, “\w Command|strong="G3004"\w* \w that|strong="G2443"\w* \w these|strong="G3778"\w*, \w my|strong="G1722"\w* \w two|strong="G1417"\w* \w sons|strong="G5207"\w*, \w may|strong="G2532"\w* \w sit|strong="G2523"\w*, \w one|strong="G1520"\w* \w on|strong="G1722"\w* \w your|strong="G2532"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* \w and|strong="G2532"\w* \w one|strong="G1520"\w* \w on|strong="G1722"\w* \w your|strong="G2532"\w* \w left|strong="G2176"\w* \w hand|strong="G1188"\w*, \w in|strong="G1722"\w* \w your|strong="G2532"\w* Kingdom.” +\p +\v 22 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w*, \wj “\+w You|strong="G3739"\+w* don’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w* \+w what|strong="G5101"\+w* \+w you|strong="G3739"\+w* \+w are|strong="G3588"\+w* \+w asking|strong="G3004"\+w*. \+w Are|strong="G3588"\+w* \+w you|strong="G3739"\+w* \+w able|strong="G1410"\+w* \+w to|strong="G3004"\+w* \+w drink|strong="G4095"\+w* \+w the|strong="G1161"\+w* \+w cup|strong="G4221"\+w* \+w that|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* \+w about|strong="G3195"\+w* \+w to|strong="G3004"\+w* \+w drink|strong="G4095"\+w*, \+w and|strong="G1161"\+w* \+w be|strong="G3756"\+w* baptized \+w with|strong="G3756"\+w* \+w the|strong="G1161"\+w* baptism \+w that|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* baptized \+w with|strong="G3756"\+w*?”\wj* +\p \w They|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w We|strong="G3739"\w* \w are|strong="G3588"\w* \w able|strong="G1410"\w*.” +\p +\v 23 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w You|strong="G3739"\+w* \+w will|strong="G1510"\+w* \+w indeed|strong="G2532"\+w* \+w drink|strong="G4095"\+w* \+w my|strong="G1699"\+w* \+w cup|strong="G4221"\+w*, \+w and|strong="G2532"\+w* \+w be|strong="G1510"\+w* baptized \+w with|strong="G1537"\+w* \+w the|strong="G2532"\+w* baptism \+w that|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* baptized \+w with|strong="G1537"\+w*; \+w but|strong="G1161"\+w* \+w to|strong="G2532"\+w* \+w sit|strong="G2523"\+w* \+w on|strong="G1537"\+w* \+w my|strong="G1699"\+w* \+w right|strong="G1188"\+w* \+w hand|strong="G1188"\+w* \+w and|strong="G2532"\+w* \+w on|strong="G1537"\+w* \+w my|strong="G1699"\+w* \+w left|strong="G2176"\+w* \+w hand|strong="G1188"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w mine|strong="G1699"\+w* \+w to|strong="G2532"\+w* \+w give|strong="G1325"\+w*, \+w but|strong="G1161"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w for|strong="G1161"\+w* \+w whom|strong="G3739"\+w* \+w it|strong="G2532"\+w* \+w has|strong="G3962"\+w* \+w been|strong="G1510"\+w* \+w prepared|strong="G2090"\+w* \+w by|strong="G5259"\+w* \+w my|strong="G1699"\+w* \+w Father|strong="G3962"\+w*.”\wj* +\p +\v 24 \w When|strong="G1161"\w* \w the|strong="G2532"\w* \w ten|strong="G1176"\w* heard \w it|strong="G2532"\w*, \w they|strong="G2532"\w* \w were|strong="G3588"\w* indignant \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w two|strong="G1417"\w* brothers. +\p +\v 25 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w summoned|strong="G4341"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w You|strong="G3754"\+w* \+w know|strong="G1492"\+w* \+w that|strong="G3754"\+w* \+w the|strong="G2532"\+w* rulers \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w nations|strong="G1484"\+w* \+w lord|strong="G3588"\+w* \+w it|strong="G2532"\+w* \+w over|strong="G2634"\+w* \+w them|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w their|strong="G1438"\+w* \+w great|strong="G3173"\+w* \+w ones|strong="G3748"\+w* \+w exercise|strong="G2715"\+w* \+w authority|strong="G2715"\+w* \+w over|strong="G2634"\+w* \+w them|strong="G3588"\+w*. \wj* +\v 26 \wj \+w It|strong="G1437"\+w* \+w shall|strong="G3739"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G1096"\+w* \+w so|strong="G3779"\+w* \+w among|strong="G1722"\+w* \+w you|strong="G5210"\+w*; \+w but|strong="G1437"\+w* \+w whoever|strong="G3739"\+w* \+w desires|strong="G2309"\+w* \+w to|strong="G2309"\+w* \+w become|strong="G1096"\+w* \+w great|strong="G3173"\+w* \+w among|strong="G1722"\+w* \+w you|strong="G5210"\+w* \+w shall|strong="G3739"\+w* \+w be|strong="G1096"\+w*\wj*\f + \fr 20:26 \ft TR reads “let him be” instead of “shall be” \f* \wj \+w your|strong="G1437"\+w* \+w servant|strong="G1249"\+w*. \wj* +\v 27 \wj \+w Whoever|strong="G3739"\+w* \+w desires|strong="G2309"\+w* \+w to|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w first|strong="G4413"\+w* \+w among|strong="G1722"\+w* \+w you|strong="G5210"\+w* \+w shall|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w your|strong="G2532"\+w* bondservant, \wj* +\v 28 \wj \+w even|strong="G2532"\+w* \+w as|strong="G5618"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3756"\+w* \+w came|strong="G2064"\+w* \+w not|strong="G3756"\+w* \+w to|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w served|strong="G1247"\+w*, \+w but|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w serve|strong="G1247"\+w*, \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w his|strong="G2532"\+w* \+w life|strong="G5590"\+w* \+w as|strong="G5618"\+w* \+w a|strong="G2532"\+w* \+w ransom|strong="G3083"\+w* \+w for|strong="G2532"\+w* \+w many|strong="G4183"\+w*.”\wj* +\p +\v 29 \w As|strong="G2532"\w* \w they|strong="G2532"\w* \w went|strong="G2532"\w* \w out|strong="G1607"\w* \w from|strong="G2532"\w* \w Jericho|strong="G2410"\w*, \w a|strong="G2532"\w* \w great|strong="G4183"\w* \w multitude|strong="G3793"\w* followed \w him|strong="G2532"\w*. +\v 30 \w Behold|strong="G2400"\w*, \w two|strong="G1417"\w* \w blind|strong="G5185"\w* \w men|strong="G5185"\w* \w sitting|strong="G2521"\w* \w by|strong="G3844"\w* \w the|strong="G2532"\w* \w road|strong="G3598"\w*, \w when|strong="G2532"\w* \w they|strong="G2532"\w* heard \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w was|strong="G3588"\w* \w passing|strong="G3855"\w* \w by|strong="G3844"\w*, \w cried|strong="G2896"\w* \w out|strong="G2896"\w*, “\w Lord|strong="G2962"\w*, \w have|strong="G2532"\w* \w mercy|strong="G1653"\w* \w on|strong="G1653"\w* \w us|strong="G3004"\w*, \w you|strong="G3754"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w David|strong="G1138"\w*!” +\v 31 \w The|strong="G1161"\w* \w multitude|strong="G3793"\w* \w rebuked|strong="G2008"\w* \w them|strong="G3588"\w*, \w telling|strong="G3004"\w* \w them|strong="G3588"\w* \w that|strong="G2443"\w* \w they|strong="G1161"\w* \w should|strong="G3588"\w* \w be|strong="G2443"\w* \w quiet|strong="G4623"\w*, \w but|strong="G1161"\w* \w they|strong="G1161"\w* \w cried|strong="G2896"\w* \w out|strong="G2896"\w* \w even|strong="G1161"\w* \w more|strong="G3173"\w*, “\w Lord|strong="G2962"\w*, \w have|strong="G1653"\w* \w mercy|strong="G1653"\w* \w on|strong="G1653"\w* \w us|strong="G3004"\w*, \w you|strong="G3004"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w David|strong="G1138"\w*!” +\p +\v 32 \w Jesus|strong="G2424"\w* \w stood|strong="G2476"\w* \w still|strong="G2476"\w* \w and|strong="G2532"\w* \w called|strong="G3004"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w asked|strong="G3004"\w*, \wj “\+w What|strong="G5101"\+w* \+w do|strong="G4160"\+w* \+w you|strong="G5210"\+w* \+w want|strong="G2309"\+w* \+w me|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w do|strong="G4160"\+w* \+w for|strong="G2532"\+w* \+w you|strong="G5210"\+w*?”\wj* +\p +\v 33 \w They|strong="G3588"\w* \w told|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Lord|strong="G2962"\w*, \w that|strong="G2443"\w* \w our|strong="G2962"\w* \w eyes|strong="G3788"\w* \w may|strong="G2443"\w* \w be|strong="G2443"\w* opened.” +\p +\v 34 \w Jesus|strong="G2424"\w*, \w being|strong="G2532"\w* \w moved|strong="G4697"\w* \w with|strong="G2532"\w* \w compassion|strong="G4697"\w*, touched \w their|strong="G2532"\w* \w eyes|strong="G3659"\w*; \w and|strong="G2532"\w* \w immediately|strong="G2112"\w* \w their|strong="G2532"\w* \w eyes|strong="G3659"\w* received \w their|strong="G2532"\w* \w sight|strong="G3588"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* followed \w him|strong="G3588"\w*. +\c 21 +\p +\v 1 \w When|strong="G3753"\w* \w they|strong="G2532"\w* \w came|strong="G2064"\w* \w near|strong="G1448"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w* \w and|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* Bethsphage,\f + \fr 21:1 \ft TR & NU read “Bethphage” instead of “Bethsphage”\f* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w Mount|strong="G3735"\w* \w of|strong="G2532"\w* \w Olives|strong="G1636"\w*, \w then|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w sent|strong="G2532"\w* \w two|strong="G1417"\w* \w disciples|strong="G3101"\w*, +\v 2 \w saying|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Go|strong="G4198"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w village|strong="G2968"\+w* \+w that|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w opposite|strong="G2713"\+w* \+w you|strong="G5210"\+w*, \+w and|strong="G2532"\+w* \+w immediately|strong="G2112"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w find|strong="G2147"\+w* \+w a|strong="G2532"\+w* \+w donkey|strong="G3688"\+w* \+w tied|strong="G1210"\+w*, \+w and|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w colt|strong="G4454"\+w* \+w with|strong="G3326"\+w* \+w her|strong="G1519"\+w*. \+w Untie|strong="G3089"\+w* \+w them|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w bring|strong="G2532"\+w* \+w them|strong="G3588"\+w* \+w to|strong="G1519"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 3 \wj \+w If|strong="G1437"\+w* \+w anyone|strong="G5100"\+w* \+w says|strong="G3004"\+w* \+w anything|strong="G5100"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*, \+w you|strong="G5210"\+w* \+w shall|strong="G2532"\+w* \+w say|strong="G3004"\+w*, ‘\+w The|strong="G2532"\+w* \+w Lord|strong="G2962"\+w* \+w needs|strong="G5532"\+w* \+w them|strong="G3588"\+w*,’ \+w and|strong="G2532"\+w* \+w immediately|strong="G2112"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* send \+w them|strong="G3588"\+w*.”\wj* +\p +\v 4 \w All|strong="G1161"\w* \w this|strong="G3778"\w* \w was|strong="G1096"\w* \w done|strong="G1096"\w* \w that|strong="G2443"\w* \w it|strong="G1161"\w* \w might|strong="G3778"\w* \w be|strong="G1096"\w* \w fulfilled|strong="G4137"\w* \w which|strong="G3588"\w* \w was|strong="G1096"\w* \w spoken|strong="G3004"\w* \w through|strong="G1223"\w* \w the|strong="G1161"\w* \w prophet|strong="G4396"\w*, \w saying|strong="G3004"\w*, +\q1 +\v 5 “\w Tell|strong="G3004"\w* \w the|strong="G2532"\w* \w daughter|strong="G2364"\w* \w of|strong="G5207"\w* \w Zion|strong="G4622"\w*, +\q2 \w behold|strong="G2400"\w*, \w your|strong="G2532"\w* \w King|strong="G3588"\w* \w comes|strong="G2064"\w* \w to|strong="G2532"\w* \w you|strong="G4771"\w*, +\q2 humble, \w and|strong="G2532"\w* riding \w on|strong="G1909"\w* \w a|strong="G2532"\w* \w donkey|strong="G3688"\w*, +\q2 \w on|strong="G1909"\w* \w a|strong="G2532"\w* \w colt|strong="G4454"\w*, \w the|strong="G2532"\w* \w foal|strong="G5207"\w* \w of|strong="G5207"\w* \w a|strong="G2532"\w* \w donkey|strong="G3688"\w*.”\x + \xo 21:5 \xt Zechariah 9:9\x* +\p +\v 6 \w The|strong="G2532"\w* \w disciples|strong="G3101"\w* \w went|strong="G4198"\w* \w and|strong="G2532"\w* \w did|strong="G4160"\w* \w just|strong="G2531"\w* \w as|strong="G2531"\w* \w Jesus|strong="G2424"\w* \w commanded|strong="G4367"\w* \w them|strong="G3588"\w*, +\v 7 \w and|strong="G2532"\w* \w brought|strong="G2532"\w* \w the|strong="G2532"\w* \w donkey|strong="G3688"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w colt|strong="G4454"\w* \w and|strong="G2532"\w* \w laid|strong="G2007"\w* \w their|strong="G2532"\w* \w clothes|strong="G2440"\w* \w on|strong="G1909"\w* \w them|strong="G3588"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w sat|strong="G2532"\w* \w on|strong="G1909"\w* \w them|strong="G3588"\w*. +\v 8 \w A|strong="G2532"\w* \w very|strong="G4183"\w* \w great|strong="G4183"\w* \w multitude|strong="G3793"\w* \w spread|strong="G4766"\w* \w their|strong="G1438"\w* \w clothes|strong="G2440"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w road|strong="G3598"\w*. \w Others|strong="G3588"\w* \w cut|strong="G2532"\w* \w branches|strong="G2798"\w* \w from|strong="G2532"\w* \w the|strong="G1722"\w* \w trees|strong="G1186"\w* \w and|strong="G2532"\w* \w spread|strong="G4766"\w* \w them|strong="G3588"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w road|strong="G3598"\w*. +\v 9 \w The|strong="G1722"\w* \w multitudes|strong="G3793"\w* \w who|strong="G3588"\w* \w went|strong="G2064"\w* \w in|strong="G1722"\w* \w front|strong="G4254"\w* \w of|strong="G5207"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* followed, \w kept|strong="G2532"\w* \w shouting|strong="G2896"\w*, “\w Hosanna|strong="G5614"\w*\f + \fr 21:9 \ft “Hosanna” means “save us” or “help us, we pray”.\f* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w David|strong="G1138"\w*! \w Blessed|strong="G2127"\w* \w is|strong="G3588"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w comes|strong="G2064"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G5207"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*! \w Hosanna|strong="G5614"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w highest|strong="G5310"\w*!” \x + \xo 21:9 \xt Psalms 118:26\x* +\p +\v 10 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w come|strong="G1525"\w* \w into|strong="G1519"\w* \w Jerusalem|strong="G2414"\w*, \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w was|strong="G1510"\w* \w stirred|strong="G2532"\w* \w up|strong="G1519"\w*, \w saying|strong="G3004"\w*, “\w Who|strong="G5101"\w* \w is|strong="G1510"\w* \w this|strong="G3778"\w*?” +\p +\v 11 \w The|strong="G1161"\w* \w multitudes|strong="G3793"\w* \w said|strong="G3004"\w*, “\w This|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G1161"\w* \w prophet|strong="G4396"\w*, \w Jesus|strong="G2424"\w*, \w from|strong="G3588"\w* \w Nazareth|strong="G3478"\w* \w of|strong="G2424"\w* \w Galilee|strong="G1056"\w*.” +\p +\v 12 \w Jesus|strong="G2424"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w drove|strong="G1544"\w* \w out|strong="G1544"\w* \w all|strong="G3956"\w* \w of|strong="G2316"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w sold|strong="G4453"\w* \w and|strong="G2532"\w* bought \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w*, \w and|strong="G2532"\w* \w overthrew|strong="G2690"\w* \w the|strong="G1722"\w* \w money|strong="G2855"\w* \w changers|strong="G2855"\w*’ \w tables|strong="G5132"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w seats|strong="G2515"\w* \w of|strong="G2316"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w sold|strong="G4453"\w* \w the|strong="G1722"\w* \w doves|strong="G4058"\w*. +\v 13 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w It|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w written|strong="G1125"\+w*, ‘\+w My|strong="G1473"\+w* \+w house|strong="G3624"\+w* \+w shall|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w called|strong="G2564"\+w* \+w a|strong="G2532"\+w* \+w house|strong="G3624"\+w* \+w of|strong="G2532"\+w* \+w prayer|strong="G4335"\+w*,’\wj*\x + \xo 21:13 \xt Isaiah 56:7\x* \wj \+w but|strong="G1161"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2532"\+w* \+w made|strong="G4160"\+w* \+w it|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w den|strong="G4693"\+w* \+w of|strong="G2532"\+w* \+w robbers|strong="G3027"\+w*!”\wj*\x + \xo 21:13 \xt Jeremiah 7:11\x* +\p +\v 14 \w The|strong="G1722"\w* \w lame|strong="G5560"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w blind|strong="G5185"\w* \w came|strong="G4334"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w healed|strong="G2323"\w* \w them|strong="G3588"\w*. +\v 15 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w the|strong="G1722"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w scribes|strong="G1122"\w* \w saw|strong="G3708"\w* \w the|strong="G1722"\w* \w wonderful|strong="G2297"\w* \w things|strong="G3588"\w* \w that|strong="G3739"\w* \w he|strong="G2532"\w* \w did|strong="G4160"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w children|strong="G5207"\w* \w who|strong="G3739"\w* \w were|strong="G3588"\w* \w crying|strong="G2896"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w* \w and|strong="G2532"\w* \w saying|strong="G3004"\w*, “\w Hosanna|strong="G5614"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w David|strong="G1138"\w*!” \w they|strong="G2532"\w* \w were|strong="G3588"\w* indignant, +\v 16 \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Do|strong="G5101"\w* \w you|strong="G3754"\w* \w hear|strong="G5101"\w* \w what|strong="G5101"\w* \w these|strong="G3778"\w* \w are|strong="G3588"\w* \w saying|strong="G3004"\w*?” +\p \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Yes|strong="G3483"\+w*. \+w Did|strong="G2532"\+w* \+w you|strong="G3754"\+w* \+w never|strong="G3763"\+w* read, ‘\+w Out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w mouth|strong="G4750"\+w* \+w of|strong="G1537"\+w* \+w children|strong="G3516"\+w* \+w and|strong="G2532"\+w* \+w nursing|strong="G2337"\+w* \+w babies|strong="G2337"\+w*, \+w you|strong="G3754"\+w* \+w have|strong="G2532"\+w* perfected praise’?”\wj*\x + \xo 21:16 \xt Psalms 8:2\x* +\p +\v 17 \w He|strong="G2532"\w* \w left|strong="G2641"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w to|strong="G1519"\w* Bethany, \w and|strong="G2532"\w* camped \w there|strong="G1563"\w*. +\p +\v 18 \w Now|strong="G1161"\w* \w in|strong="G1519"\w* \w the|strong="G1519"\w* \w morning|strong="G4404"\w*, \w as|strong="G1519"\w* \w he|strong="G1161"\w* \w returned|strong="G1877"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w city|strong="G4172"\w*, \w he|strong="G1161"\w* \w was|strong="G3588"\w* \w hungry|strong="G3983"\w*. +\v 19 \w Seeing|strong="G3708"\w* \w a|strong="G1096"\w* \w fig|strong="G4808"\w* \w tree|strong="G4808"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w road|strong="G3598"\w*, \w he|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w it|strong="G2532"\w* \w and|strong="G2532"\w* \w found|strong="G2147"\w* \w nothing|strong="G3762"\w* \w on|strong="G1909"\w* \w it|strong="G2532"\w* \w but|strong="G2532"\w* \w leaves|strong="G5444"\w*. \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w it|strong="G2532"\w*, \wj “\+w Let|strong="G1096"\+w* \+w there|strong="G2532"\+w* \+w be|strong="G1096"\+w* \+w no|strong="G3756"\+w* \+w fruit|strong="G2590"\+w* \+w from|strong="G1537"\+w* \+w you|strong="G4771"\+w* \+w forever|strong="G1519"\+w*!” \wj* +\p \w Immediately|strong="G3916"\w* \w the|strong="G1722"\w* \w fig|strong="G4808"\w* \w tree|strong="G4808"\w* \w withered|strong="G3583"\w* \w away|strong="G3583"\w*. +\p +\v 20 \w When|strong="G2532"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w saw|strong="G3708"\w* \w it|strong="G2532"\w*, \w they|strong="G2532"\w* \w marveled|strong="G2296"\w*, \w saying|strong="G3004"\w*, “\w How|strong="G4459"\w* \w did|strong="G2532"\w* \w the|strong="G2532"\w* \w fig|strong="G4808"\w* \w tree|strong="G4808"\w* \w immediately|strong="G3916"\w* \w wither|strong="G3583"\w* \w away|strong="G3583"\w*?” +\p +\v 21 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “Most \+w certainly|strong="G2192"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w if|strong="G1437"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2192"\+w* \+w faith|strong="G4102"\+w* \+w and|strong="G2532"\+w* don’\+w t|strong="G3588"\+w* \+w doubt|strong="G1252"\+w*, \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w only|strong="G3440"\+w* \+w do|strong="G4160"\+w* \+w what|strong="G3588"\+w* \+w was|strong="G1096"\+w* \+w done|strong="G4160"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w fig|strong="G4808"\+w* \+w tree|strong="G4808"\+w*, \+w but|strong="G1161"\+w* \+w even|strong="G2532"\+w* \+w if|strong="G1437"\+w* \+w you|strong="G5210"\+w* \+w told|strong="G3004"\+w* \+w this|strong="G3778"\+w* \+w mountain|strong="G3735"\+w*, ‘\+w Be|strong="G1096"\+w* \+w taken|strong="G1096"\+w* \+w up|strong="G1519"\+w* \+w and|strong="G2532"\+w* \+w cast|strong="G2532"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w sea|strong="G2281"\+w*,’ \+w it|strong="G2532"\+w* \+w would|strong="G1096"\+w* \+w be|strong="G1096"\+w* \+w done|strong="G4160"\+w*. \wj* +\v 22 \wj \+w All|strong="G3956"\+w* \+w things|strong="G3956"\+w*, \+w whatever|strong="G3745"\+w* \+w you|strong="G1722"\+w* ask \+w in|strong="G1722"\+w* \+w prayer|strong="G4335"\+w*, \+w believing|strong="G4100"\+w*, \+w you|strong="G1722"\+w* \+w will|strong="G2532"\+w* \+w receive|strong="G2983"\+w*.”\wj* +\p +\v 23 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w come|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w temple|strong="G2411"\w*, \w the|strong="G1722"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w elders|strong="G4245"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w as|strong="G1519"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w teaching|strong="G1321"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w By|strong="G1722"\w* \w what|strong="G5101"\w* \w authority|strong="G1849"\w* \w do|strong="G4160"\w* \w you|strong="G4771"\w* \w do|strong="G4160"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*? \w Who|strong="G5101"\w* \w gave|strong="G1325"\w* \w you|strong="G4771"\w* \w this|strong="G3778"\w* \w authority|strong="G1849"\w*?” +\p +\v 24 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w I|strong="G1473"\+w* \+w also|strong="G2504"\+w* \+w will|strong="G3739"\+w* \+w ask|strong="G2065"\+w* \+w you|strong="G5210"\+w* \+w one|strong="G1520"\+w* \+w question|strong="G2065"\+w*, \+w which|strong="G3739"\+w* \+w if|strong="G1437"\+w* \+w you|strong="G5210"\+w* \+w tell|strong="G3004"\+w* \+w me|strong="G1473"\+w*, \+w I|strong="G1473"\+w* \+w likewise|strong="G1161"\+w* \+w will|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w by|strong="G1722"\+w* \+w what|strong="G3739"\+w* \+w authority|strong="G1849"\+w* \+w I|strong="G1473"\+w* \+w do|strong="G4160"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w*. \wj* +\v 25 \wj \+w The|strong="G1722"\+w* baptism \+w of|strong="G1537"\+w* \+w John|strong="G2491"\+w*, \+w where|strong="G4159"\+w* \+w was|strong="G1510"\+w* \+w it|strong="G1161"\+w* \+w from|strong="G1537"\+w*? \+w From|strong="G1537"\+w* \+w heaven|strong="G3772"\+w* \+w or|strong="G2228"\+w* \+w from|strong="G1537"\+w* \+w men|strong="G3588"\+w*?” \wj* +\p \w They|strong="G1161"\w* \w reasoned|strong="G1260"\w* \w with|strong="G1722"\w* \w themselves|strong="G1438"\w*, \w saying|strong="G3004"\w*, “\w If|strong="G1437"\w* \w we|strong="G1437"\w* \w say|strong="G3004"\w*, ‘\w From|strong="G1537"\w* \w heaven|strong="G3772"\w*,’ \w he|strong="G1161"\w* \w will|strong="G5101"\w* \w ask|strong="G3004"\w* \w us|strong="G3004"\w*, ‘\w Why|strong="G5101"\w* \w then|strong="G3767"\w* \w did|strong="G5101"\w* \w you|strong="G1437"\w* \w not|strong="G1510"\w* \w believe|strong="G4100"\w* \w him|strong="G3588"\w*?’ +\v 26 \w But|strong="G1161"\w* \w if|strong="G1437"\w* \w we|strong="G2249"\w* \w say|strong="G3004"\w*, ‘\w From|strong="G1537"\w* \w men|strong="G3956"\w*,’ \w we|strong="G2249"\w* \w fear|strong="G5399"\w* \w the|strong="G3956"\w* \w multitude|strong="G3793"\w*, \w for|strong="G1063"\w* \w all|strong="G3956"\w* \w hold|strong="G2192"\w* \w John|strong="G2491"\w* \w as|strong="G5613"\w* \w a|strong="G2192"\w* \w prophet|strong="G4396"\w*.” +\v 27 \w They|strong="G2532"\w* \w answered|strong="G3004"\w* \w Jesus|strong="G2424"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w We|strong="G2532"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w*.” +\p \w He|strong="G2532"\w* \w also|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Neither|strong="G3761"\+w* \+w will|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w by|strong="G1722"\+w* \+w what|strong="G4169"\+w* \+w authority|strong="G1849"\+w* \+w I|strong="G1473"\+w* \+w do|strong="G4160"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w*. \wj* +\v 28 \wj \+w But|strong="G1161"\+w* \+w what|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w think|strong="G1380"\+w*? \+w A|strong="G2192"\+w* \+w man|strong="G4413"\+w* \+w had|strong="G2192"\+w* \+w two|strong="G1417"\+w* \+w sons|strong="G5043"\+w*, \+w and|strong="G1161"\+w* \+w he|strong="G1161"\+w* \+w came|strong="G4334"\+w* \+w to|strong="G3004"\+w* \+w the|strong="G1722"\+w* \+w first|strong="G4413"\+w*, \+w and|strong="G1161"\+w* \+w said|strong="G3004"\+w*, ‘\+w Son|strong="G5043"\+w*, \+w go|strong="G5217"\+w* \+w work|strong="G2038"\+w* \+w today|strong="G4594"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G1722"\+w* vineyard.’ \wj* +\v 29 \wj \+w He|strong="G1161"\+w* \+w answered|strong="G3004"\+w*, ‘\+w I|strong="G1161"\+w* \+w will|strong="G2309"\+w* \+w not|strong="G3756"\+w*,’ \+w but|strong="G1161"\+w* \+w afterward|strong="G5305"\+w* \+w he|strong="G1161"\+w* changed \+w his|strong="G3588"\+w* \+w mind|strong="G3338"\+w*, \+w and|strong="G1161"\+w* \+w went|strong="G3588"\+w*. \wj* +\v 30 \wj \+w He|strong="G2532"\+w* \+w came|strong="G4334"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w second|strong="G1208"\+w*, \+w and|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w the|strong="G2532"\+w* \+w same|strong="G5615"\+w* \+w thing|strong="G5615"\+w*. \+w He|strong="G2532"\+w* \+w answered|strong="G3004"\+w*, ‘\+w I|strong="G1473"\+w*’m \+w going|strong="G2532"\+w*, \+w sir|strong="G2962"\+w*,’ \+w but|strong="G1161"\+w* \+w he|strong="G2532"\+w* didn’\+w t|strong="G3588"\+w* \+w go|strong="G2532"\+w*. \wj* +\v 31 \wj \+w Which|strong="G3588"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w two|strong="G1417"\+w* \+w did|strong="G4160"\+w* \+w the|strong="G2532"\+w* \+w will|strong="G2307"\+w* \+w of|strong="G1537"\+w* \+w his|strong="G1519"\+w* \+w father|strong="G3962"\+w*?”\wj* +\p \w They|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, “\w The|strong="G2532"\w* \w first|strong="G4413"\w*.” +\p \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Most|strong="G2316"\+w* \+w certainly|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w the|strong="G2532"\+w* \+w tax|strong="G5057"\+w* \+w collectors|strong="G5057"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w prostitutes|strong="G4204"\+w* \+w are|strong="G3588"\+w* entering \+w into|strong="G1519"\+w* \+w God|strong="G2316"\+w*’s Kingdom \+w before|strong="G4254"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 32 \wj \+w For|strong="G1063"\+w* \+w John|strong="G2491"\+w* \+w came|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w you|strong="G5210"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w way|strong="G3598"\+w* \+w of|strong="G2532"\+w* \+w righteousness|strong="G1343"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* didn’\+w t|strong="G3588"\+w* \+w believe|strong="G4100"\+w* \+w him|strong="G3588"\+w*; \+w but|strong="G1161"\+w* \+w the|strong="G1722"\+w* \+w tax|strong="G5057"\+w* \+w collectors|strong="G5057"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w prostitutes|strong="G4204"\+w* \+w believed|strong="G4100"\+w* \+w him|strong="G3588"\+w*. \+w When|strong="G1161"\+w* \+w you|strong="G5210"\+w* \+w saw|strong="G3708"\+w* \+w it|strong="G2532"\+w*, \+w you|strong="G5210"\+w* didn’\+w t|strong="G3588"\+w* \+w even|strong="G2532"\+w* \+w repent|strong="G3338"\+w* \+w afterward|strong="G5305"\+w*, \+w that|strong="G3588"\+w* \+w you|strong="G5210"\+w* \+w might|strong="G2532"\+w* \+w believe|strong="G4100"\+w* \+w him|strong="G3588"\+w*. \wj* +\p +\v 33 \wj “Hear \+w another|strong="G1722"\+w* \+w parable|strong="G3850"\+w*. \+w There|strong="G2532"\+w* \+w was|strong="G1510"\+w* \+w a|strong="G2532"\+w* man \+w who|strong="G3748"\+w* \+w was|strong="G1510"\+w* \+w a|strong="G2532"\+w* master \+w of|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w household|strong="G3617"\+w* \+w who|strong="G3748"\+w* \+w planted|strong="G5452"\+w* \+w a|strong="G2532"\+w* vineyard, \+w set|strong="G2532"\+w* \+w a|strong="G2532"\+w* hedge \+w about|strong="G1722"\+w* \+w it|strong="G2532"\+w*, \+w dug|strong="G3736"\+w* \+w a|strong="G2532"\+w* \+w wine|strong="G3025"\+w* \+w press|strong="G3025"\+w* \+w in|strong="G1722"\+w* \+w it|strong="G2532"\+w*, \+w built|strong="G3618"\+w* \+w a|strong="G2532"\+w* \+w tower|strong="G4444"\+w*, \+w leased|strong="G1554"\+w* \+w it|strong="G2532"\+w* \+w out|strong="G2532"\+w* \+w to|strong="G2532"\+w* farmers, \+w and|strong="G2532"\+w* \+w went|strong="G2532"\+w* \+w into|strong="G1722"\+w* \+w another|strong="G1722"\+w* country. \wj* +\v 34 \wj \+w When|strong="G3753"\+w* \+w the|strong="G1161"\+w* \+w season|strong="G2540"\+w* \+w for|strong="G4314"\+w* \+w the|strong="G1161"\+w* \+w fruit|strong="G2590"\+w* \+w came|strong="G3588"\+w* \+w near|strong="G1448"\+w*, \+w he|strong="G1161"\+w* sent \+w his|strong="G2983"\+w* \+w servants|strong="G1401"\+w* \+w to|strong="G4314"\+w* \+w the|strong="G1161"\+w* farmers \+w to|strong="G4314"\+w* \+w receive|strong="G2983"\+w* \+w his|strong="G2983"\+w* \+w fruit|strong="G2590"\+w*. \wj* +\v 35 \wj \+w The|strong="G2532"\+w* farmers \+w took|strong="G2983"\+w* \+w his|strong="G2983"\+w* \+w servants|strong="G1401"\+w*, \+w beat|strong="G1194"\+w* \+w one|strong="G3739"\+w*, killed \+w another|strong="G3739"\+w*, \+w and|strong="G2532"\+w* \+w stoned|strong="G3036"\+w* \+w another|strong="G3739"\+w*. \wj* +\v 36 \wj \+w Again|strong="G3825"\+w*, \+w he|strong="G2532"\+w* \+w sent|strong="G2532"\+w* \+w other|strong="G4183"\+w* \+w servants|strong="G1401"\+w* \+w more|strong="G4119"\+w* \+w than|strong="G4183"\+w* \+w the|strong="G2532"\+w* \+w first|strong="G4413"\+w*; \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w treated|strong="G4160"\+w* \+w them|strong="G3588"\+w* \+w the|strong="G2532"\+w* \+w same|strong="G5615"\+w* \+w way|strong="G5615"\+w*. \wj* +\v 37 \wj \+w But|strong="G1161"\+w* \+w afterward|strong="G5305"\+w* \+w he|strong="G1161"\+w* sent \+w to|strong="G4314"\+w* \+w them|strong="G3588"\+w* \+w his|strong="G1438"\+w* \+w son|strong="G5207"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w They|strong="G1161"\+w* \+w will|strong="G1473"\+w* \+w respect|strong="G1788"\+w* \+w my|strong="G1473"\+w* \+w son|strong="G5207"\+w*.’ \wj* +\v 38 \wj \+w But|strong="G1161"\+w* \+w the|strong="G1722"\+w* farmers, \+w when|strong="G1161"\+w* \+w they|strong="G2532"\+w* \+w saw|strong="G3708"\+w* \+w the|strong="G1722"\+w* \+w son|strong="G5207"\+w*, \+w said|strong="G3004"\+w* \+w among|strong="G1722"\+w* \+w themselves|strong="G1438"\+w*, ‘\+w This|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G1722"\+w* \+w heir|strong="G2818"\+w*. \+w Come|strong="G1205"\+w*, \+w let|strong="G1161"\+w*’\+w s|strong="G2192"\+w* kill \+w him|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w seize|strong="G2192"\+w* \+w his|strong="G1438"\+w* \+w inheritance|strong="G2817"\+w*.’ \wj* +\v 39 \wj \+w So|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w took|strong="G2983"\+w* \+w him|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w threw|strong="G1544"\+w* \+w him|strong="G3588"\+w* \+w out|strong="G1544"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* vineyard, \+w then|strong="G2532"\+w* killed \+w him|strong="G3588"\+w*. \wj* +\v 40 \wj \+w When|strong="G3752"\+w* \+w therefore|strong="G3767"\+w* \+w the|strong="G3588"\+w* \+w lord|strong="G2962"\+w* \+w of|strong="G2962"\+w* \+w the|strong="G3588"\+w* vineyard \+w comes|strong="G2064"\+w*, \+w what|strong="G5101"\+w* \+w will|strong="G5101"\+w* \+w he|strong="G3588"\+w* \+w do|strong="G4160"\+w* \+w to|strong="G2064"\+w* \+w those|strong="G3588"\+w* farmers?”\wj* +\p +\v 41 \w They|strong="G2532"\w* \w told|strong="G3004"\w* \w him|strong="G3588"\w*, “\w He|strong="G2532"\w* \w will|strong="G2532"\w* \w miserably|strong="G2560"\w* destroy \w those|strong="G3588"\w* miserable \w men|strong="G3588"\w*, \w and|strong="G2532"\w* \w will|strong="G2532"\w* lease \w out|strong="G2532"\w* \w the|strong="G1722"\w* vineyard \w to|strong="G2532"\w* \w other|strong="G1438"\w* farmers \w who|strong="G3588"\w* \w will|strong="G2532"\w* \w give|strong="G3004"\w* \w him|strong="G3588"\w* \w the|strong="G1722"\w* \w fruit|strong="G2590"\w* \w in|strong="G1722"\w* its \w season|strong="G2540"\w*.” +\p +\v 42 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Did|strong="G2532"\+w* \+w you|strong="G3739"\+w* \+w never|strong="G3763"\+w* read \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w Scriptures|strong="G1124"\+w*, \wj* +\q1 \wj ‘\+w The|strong="G1722"\+w* \+w stone|strong="G3037"\+w* \+w which|strong="G3739"\+w* \+w the|strong="G1722"\+w* \+w builders|strong="G3618"\+w* rejected\wj* +\q2 \wj \+w was|strong="G1510"\+w* \+w made|strong="G1096"\+w* \+w the|strong="G1722"\+w* \+w head|strong="G2776"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w corner|strong="G1137"\+w*.\wj* +\q1 \wj \+w This|strong="G3778"\+w* \+w was|strong="G1510"\+w* \+w from|strong="G3844"\+w* \+w the|strong="G1722"\+w* \+w Lord|strong="G2962"\+w*.\wj* +\q2 \wj \+w It|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w marvelous|strong="G2298"\+w* \+w in|strong="G1722"\+w* \+w our|strong="G2424"\+w* \+w eyes|strong="G3788"\+w*’?\wj*\x + \xo 21:42 \xt Psalms 118:22-23\x* +\p +\v 43 \wj “\+w Therefore|strong="G1223"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w God|strong="G2316"\+w*’s Kingdom \+w will|strong="G2316"\+w* \+w be|strong="G2532"\+w* taken away \+w from|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w and|strong="G2532"\+w* \+w will|strong="G2316"\+w* \+w be|strong="G2532"\+w* \+w given|strong="G1325"\+w* \+w to|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w nation|strong="G1484"\+w* \+w producing|strong="G4160"\+w* \+w its|strong="G1325"\+w* \+w fruit|strong="G2590"\+w*. \wj* +\v 44 \wj \+w He|strong="G2532"\+w* \+w who|strong="G2532"\+w* falls \+w on|strong="G1909"\+w* \+w this|strong="G2532"\+w* \+w stone|strong="G3037"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* broken \+w to|strong="G2532"\+w* pieces, \+w but|strong="G1161"\+w* \+w on|strong="G1909"\+w* whomever \+w it|strong="G2532"\+w* \+w will|strong="G2532"\+w* fall, \+w it|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w scatter|strong="G3039"\+w* \+w him|strong="G2532"\+w* \+w as|strong="G1161"\+w* \+w dust|strong="G3039"\+w*.”\wj* +\p +\v 45 \w When|strong="G1161"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w heard|strong="G1097"\w* \w his|strong="G4012"\w* \w parables|strong="G3850"\w*, \w they|strong="G2532"\w* \w perceived|strong="G1097"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w spoke|strong="G3004"\w* \w about|strong="G4012"\w* \w them|strong="G3588"\w*. +\v 46 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w sought|strong="G2212"\w* \w to|strong="G1519"\w* \w seize|strong="G2902"\w* \w him|strong="G3588"\w*, \w they|strong="G2532"\w* \w feared|strong="G5399"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w*, \w because|strong="G1893"\w* \w they|strong="G2532"\w* \w considered|strong="G2192"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w be|strong="G2532"\w* \w a|strong="G2192"\w* \w prophet|strong="G4396"\w*. +\c 22 +\p +\v 1 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w and|strong="G2532"\w* \w spoke|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w again|strong="G3825"\w* \w in|strong="G1722"\w* \w parables|strong="G3850"\w*, \w saying|strong="G3004"\w*, +\v 2 \wj “\+w The|strong="G3588"\+w* Kingdom \+w of|strong="G5207"\+w* \+w Heaven|strong="G3772"\+w* \+w is|strong="G3588"\+w* \+w like|strong="G3666"\+w* \+w a|strong="G4160"\+w* certain \+w king|strong="G3588"\+w*, \+w who|strong="G3588"\+w* \+w made|strong="G4160"\+w* \+w a|strong="G4160"\+w* \+w wedding|strong="G1062"\+w* \+w feast|strong="G1062"\+w* \+w for|strong="G4160"\+w* \+w his|strong="G4160"\+w* \+w son|strong="G5207"\+w*, \wj* +\v 3 \wj \+w and|strong="G2532"\+w* \+w sent|strong="G2532"\+w* \+w out|strong="G2532"\+w* \+w his|strong="G1519"\+w* \+w servants|strong="G1401"\+w* \+w to|strong="G1519"\+w* \+w call|strong="G2564"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w were|strong="G3588"\+w* \+w invited|strong="G2564"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w wedding|strong="G1062"\+w* \+w feast|strong="G1062"\+w*, \+w but|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w would|strong="G2309"\+w* \+w not|strong="G3756"\+w* \+w come|strong="G2064"\+w*. \wj* +\v 4 \wj \+w Again|strong="G3825"\+w* \+w he|strong="G2532"\+w* \+w sent|strong="G2532"\+w* \+w out|strong="G2532"\+w* \+w other|strong="G3825"\+w* \+w servants|strong="G1401"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w Tell|strong="G3004"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w invited|strong="G2564"\+w*, “\+w Behold|strong="G2400"\+w*, \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w prepared|strong="G2090"\+w* \+w my|strong="G3708"\+w* dinner. \+w My|strong="G3708"\+w* cattle \+w and|strong="G2532"\+w* \+w my|strong="G3708"\+w* \+w fatlings|strong="G4619"\+w* \+w are|strong="G3588"\+w* \+w killed|strong="G2380"\+w*, \+w and|strong="G2532"\+w* \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w are|strong="G3588"\+w* \+w ready|strong="G2092"\+w*. \+w Come|strong="G1205"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w wedding|strong="G1062"\+w* \+w feast|strong="G1062"\+w*!”’ \wj* +\v 5 \wj \+w But|strong="G1161"\+w* \+w they|strong="G1161"\+w* \+w made|strong="G1161"\+w* light \+w of|strong="G1909"\+w* \+w it|strong="G1161"\+w*, \+w and|strong="G1161"\+w* \+w went|strong="G3588"\+w* \+w their|strong="G1519"\+w* ways, \+w one|strong="G3739"\+w* \+w to|strong="G1519"\+w* \+w his|strong="G1519"\+w* \+w own|strong="G2398"\+w* farm, \+w another|strong="G3739"\+w* \+w to|strong="G1519"\+w* \+w his|strong="G1519"\+w* \+w merchandise|strong="G1711"\+w*; \wj* +\v 6 \wj \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w rest|strong="G3062"\+w* grabbed \+w his|strong="G2532"\+w* \+w servants|strong="G1401"\+w*, treated \+w them|strong="G3588"\+w* shamefully, \+w and|strong="G2532"\+w* killed \+w them|strong="G3588"\+w*. \wj* +\v 7 \wj \+w When|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w king|strong="G3588"\+w* heard \+w that|strong="G3588"\+w*, \+w he|strong="G2532"\+w* \+w was|strong="G3588"\+w* \+w angry|strong="G3710"\+w*, \+w and|strong="G2532"\+w* \+w sent|strong="G3992"\+w* \+w his|strong="G2532"\+w* \+w armies|strong="G4753"\+w*, destroyed \+w those|strong="G3588"\+w* \+w murderers|strong="G5406"\+w*, \+w and|strong="G2532"\+w* burned \+w their|strong="G2532"\+w* \+w city|strong="G4172"\+w*.\wj* +\p +\v 8 \wj “\+w Then|strong="G5119"\+w* \+w he|strong="G1161"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G3004"\+w* \+w his|strong="G2564"\+w* \+w servants|strong="G1401"\+w*, ‘\+w The|strong="G1161"\+w* \+w wedding|strong="G1062"\+w* \+w is|strong="G1510"\+w* \+w ready|strong="G2092"\+w*, \+w but|strong="G1161"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w were|strong="G1510"\+w* \+w invited|strong="G2564"\+w* weren’\+w t|strong="G3588"\+w* worthy. \wj* +\v 9 \wj \+w Go|strong="G4198"\+w* \+w therefore|strong="G3767"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* intersections \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w highways|strong="G3598"\+w*, \+w and|strong="G2532"\+w* \+w as|strong="G3745"\+w* \+w many|strong="G3745"\+w* \+w as|strong="G3745"\+w* \+w you|strong="G1437"\+w* \+w may|strong="G2532"\+w* \+w find|strong="G2147"\+w*, \+w invite|strong="G2564"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w wedding|strong="G1062"\+w* \+w feast|strong="G1062"\+w*.’ \wj* +\v 10 \wj \+w Those|strong="G3588"\+w* \+w servants|strong="G1401"\+w* \+w went|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w highways|strong="G3598"\+w* \+w and|strong="G2532"\+w* \+w gathered|strong="G4863"\+w* \+w together|strong="G4863"\+w* \+w as|strong="G3745"\+w* \+w many|strong="G3745"\+w* \+w as|strong="G3745"\+w* \+w they|strong="G2532"\+w* \+w found|strong="G2147"\+w*, \+w both|strong="G2532"\+w* \+w bad|strong="G4190"\+w* \+w and|strong="G2532"\+w* \+w good|strong="G3956"\+w*. \+w The|strong="G2532"\+w* \+w wedding|strong="G1062"\+w* \+w was|strong="G3588"\+w* \+w filled|strong="G4130"\+w* \+w with|strong="G2532"\+w* guests. \wj* +\p +\v 11 \wj “\+w But|strong="G1161"\+w* \+w when|strong="G1161"\+w* \+w the|strong="G1161"\+w* \+w king|strong="G3588"\+w* \+w came|strong="G1525"\+w* \+w in|strong="G1525"\+w* \+w to|strong="G3756"\+w* \+w see|strong="G3708"\+w* \+w the|strong="G1161"\+w* guests, \+w he|strong="G1161"\+w* \+w saw|strong="G3708"\+w* \+w there|strong="G1563"\+w* \+w a|strong="G3708"\+w* \+w man|strong="G3756"\+w* \+w who|strong="G3588"\+w* didn’\+w t|strong="G3588"\+w* \+w have|strong="G3588"\+w* \+w on|strong="G1746"\+w* \+w wedding|strong="G1062"\+w* \+w clothing|strong="G1742"\+w*, \wj* +\v 12 \wj \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w*, ‘\+w Friend|strong="G2083"\+w*, \+w how|strong="G4459"\+w* \+w did|strong="G2532"\+w* \+w you|strong="G3004"\+w* \+w come|strong="G1525"\+w* \+w in|strong="G1525"\+w* \+w here|strong="G5602"\+w* \+w not|strong="G3361"\+w* wearing \+w wedding|strong="G1062"\+w* \+w clothing|strong="G1742"\+w*?’ \+w He|strong="G2532"\+w* \+w was|strong="G3588"\+w* \+w speechless|strong="G5392"\+w*. \wj* +\v 13 \wj \+w Then|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w king|strong="G3588"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w servants|strong="G1249"\+w*, ‘\+w Bind|strong="G1210"\+w* \+w him|strong="G3588"\+w* \+w hand|strong="G5495"\+w* \+w and|strong="G2532"\+w* \+w foot|strong="G4228"\+w*, \+w take|strong="G1544"\+w* \+w him|strong="G3588"\+w* \+w away|strong="G1544"\+w*, \+w and|strong="G2532"\+w* \+w throw|strong="G1544"\+w* \+w him|strong="G3588"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w outer|strong="G1857"\+w* \+w darkness|strong="G4655"\+w*. \+w That|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w where|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w weeping|strong="G2805"\+w* \+w and|strong="G2532"\+w* grinding \+w of|strong="G2532"\+w* \+w teeth|strong="G3599"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w*.’ \wj* +\v 14 \wj \+w For|strong="G1063"\+w* \+w many|strong="G4183"\+w* \+w are|strong="G1510"\+w* \+w called|strong="G2822"\+w*, \+w but|strong="G1161"\+w* \+w few|strong="G3641"\+w* \+w chosen|strong="G1588"\+w*.”\wj* +\p +\v 15 \w Then|strong="G5119"\w* \w the|strong="G1722"\w* \w Pharisees|strong="G5330"\w* \w went|strong="G4198"\w* \w and|strong="G4198"\w* \w took|strong="G2983"\w* \w counsel|strong="G4824"\w* \w how|strong="G3704"\w* \w they|strong="G3588"\w* might entrap \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w his|strong="G1722"\w* \w talk|strong="G3056"\w*. +\v 16 \w They|strong="G2532"\w* \w sent|strong="G2316"\w* \w their|strong="G2532"\w* \w disciples|strong="G3101"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \w along|strong="G2532"\w* \w with|strong="G3326"\w* \w the|strong="G1722"\w* \w Herodians|strong="G2265"\w*, \w saying|strong="G3004"\w*, “\w Teacher|strong="G1320"\w*, \w we|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* honest, \w and|strong="G2532"\w* \w teach|strong="G1321"\w* \w the|strong="G1722"\w* \w way|strong="G3598"\w* \w of|strong="G4012"\w* \w God|strong="G2316"\w* \w in|strong="G1722"\w* truth, \w no|strong="G3756"\w* matter \w whom|strong="G3588"\w* \w you|strong="G4771"\w* \w teach|strong="G1321"\w*; \w for|strong="G1063"\w* \w you|strong="G4771"\w* aren’\w t|strong="G3588"\w* partial \w to|strong="G1519"\w* \w anyone|strong="G3762"\w*. +\v 17 \w Tell|strong="G3004"\w* \w us|strong="G1325"\w* \w therefore|strong="G3767"\w*, \w what|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G4771"\w* \w think|strong="G1380"\w*? \w Is|strong="G5101"\w* \w it|strong="G5101"\w* \w lawful|strong="G1832"\w* \w to|strong="G3004"\w* \w pay|strong="G1325"\w* \w taxes|strong="G2778"\w* \w to|strong="G3004"\w* \w Caesar|strong="G2541"\w*, \w or|strong="G2228"\w* \w not|strong="G3756"\w*?” +\p +\v 18 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w perceived|strong="G1097"\w* \w their|strong="G3588"\w* \w wickedness|strong="G4189"\w*, \w and|strong="G1161"\w* \w said|strong="G3004"\w*, \wj “\+w Why|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G3004"\+w* \+w test|strong="G3985"\+w* \+w me|strong="G1473"\+w*, \+w you|strong="G3004"\+w* \+w hypocrites|strong="G5273"\+w*? \wj* +\v 19 \wj \+w Show|strong="G1925"\+w* \+w me|strong="G1473"\+w* \+w the|strong="G1161"\+w* tax \+w money|strong="G3546"\+w*.”\wj* +\p \w They|strong="G1161"\w* \w brought|strong="G4374"\w* \w to|strong="G1161"\w* \w him|strong="G3588"\w* \w a|strong="G1161"\w* \w denarius|strong="G1220"\w*. +\p +\v 20 \w He|strong="G2532"\w* \w asked|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Whose|strong="G5101"\+w* \+w is|strong="G3588"\+w* \+w this|strong="G3778"\+w* \+w image|strong="G1504"\+w* \+w and|strong="G2532"\+w* \+w inscription|strong="G1923"\+w*?”\wj* +\p +\v 21 \w They|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Caesar|strong="G2541"\w*’s.” +\p \w Then|strong="G3767"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Give|strong="G3004"\+w* \+w therefore|strong="G3767"\+w* \+w to|strong="G2532"\+w* \+w Caesar|strong="G2541"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3588"\+w* \+w that|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w Caesar|strong="G2541"\+w*’s, \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w God|strong="G2316"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3588"\+w* \+w that|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w God|strong="G2316"\+w*’s.”\wj* +\p +\v 22 \w When|strong="G2532"\w* \w they|strong="G2532"\w* heard \w it|strong="G2532"\w*, \w they|strong="G2532"\w* \w marveled|strong="G2296"\w*, \w and|strong="G2532"\w* left \w him|strong="G2532"\w* \w and|strong="G2532"\w* \w went|strong="G2532"\w* away. +\p +\v 23 \w On|strong="G1722"\w* \w that|strong="G3588"\w* \w day|strong="G2250"\w* \w Sadducees|strong="G4523"\w* (\w those|strong="G3588"\w* \w who|strong="G3588"\w* \w say|strong="G3004"\w* \w that|strong="G3588"\w* \w there|strong="G2532"\w* \w is|strong="G1510"\w* \w no|strong="G3361"\w* resurrection) \w came|strong="G4334"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*. \w They|strong="G2532"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w*, +\v 24 \w saying|strong="G3004"\w*, “\w Teacher|strong="G1320"\w*, \w Moses|strong="G3475"\w* \w said|strong="G3004"\w*, ‘\w If|strong="G1437"\w* \w a|strong="G2192"\w* \w man|strong="G5100"\w* dies, \w having|strong="G2192"\w* \w no|strong="G3361"\w* \w children|strong="G5043"\w*, \w his|strong="G2192"\w* brother \w shall|strong="G2532"\w* \w marry|strong="G1918"\w* \w his|strong="G2192"\w* \w wife|strong="G1135"\w* \w and|strong="G2532"\w* \w raise|strong="G2532"\w* \w up|strong="G3361"\w* offspring\f + \fr 22:24 \ft or, seed\f* \w for|strong="G2532"\w* \w his|strong="G2192"\w* brother.’ +\v 25 \w Now|strong="G1161"\w* \w there|strong="G2532"\w* \w were|strong="G1510"\w* \w with|strong="G3844"\w* \w us|strong="G2249"\w* \w seven|strong="G2033"\w* brothers. \w The|strong="G2532"\w* \w first|strong="G4413"\w* \w married|strong="G1060"\w* \w and|strong="G2532"\w* \w died|strong="G5053"\w*, \w and|strong="G2532"\w* \w having|strong="G2192"\w* \w no|strong="G3361"\w* offspring left \w his|strong="G2192"\w* \w wife|strong="G1135"\w* \w to|strong="G2532"\w* \w his|strong="G2192"\w* brother. +\v 26 \w In|strong="G2532"\w* \w the|strong="G2532"\w* \w same|strong="G3668"\w* \w way|strong="G3668"\w*, \w the|strong="G2532"\w* \w second|strong="G1208"\w* \w also|strong="G2532"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w third|strong="G5154"\w*, \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w seventh|strong="G2033"\w*. +\v 27 \w After|strong="G1161"\w* \w them|strong="G3588"\w* \w all|strong="G3956"\w*, \w the|strong="G3956"\w* \w woman|strong="G1135"\w* \w died|strong="G3588"\w*. +\v 28 \w In|strong="G1722"\w* \w the|strong="G1722"\w* resurrection \w therefore|strong="G3767"\w*, \w whose|strong="G5101"\w* \w wife|strong="G1135"\w* \w will|strong="G5101"\w* \w she|strong="G1063"\w* \w be|strong="G1510"\w* \w of|strong="G1722"\w* \w the|strong="G1722"\w* \w seven|strong="G2033"\w*? \w For|strong="G1063"\w* \w they|strong="G3588"\w* \w all|strong="G3956"\w* \w had|strong="G2192"\w* \w her|strong="G1438"\w*.” +\p +\v 29 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w You|strong="G3004"\+w* \+w are|strong="G3588"\+w* \+w mistaken|strong="G4105"\+w*, \+w not|strong="G3361"\+w* \+w knowing|strong="G1492"\+w* \+w the|strong="G1161"\+w* \+w Scriptures|strong="G1124"\+w*, \+w nor|strong="G3366"\+w* \+w the|strong="G1161"\+w* \+w power|strong="G1411"\+w* \+w of|strong="G2316"\+w* \+w God|strong="G2316"\+w*. \wj* +\v 30 \wj \+w For|strong="G1063"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* resurrection \+w they|strong="G3588"\+w* \+w neither|strong="G3777"\+w* \+w marry|strong="G1060"\+w* \+w nor|strong="G3777"\+w* \+w are|strong="G1510"\+w* \+w given|strong="G1061"\+w* \+w in|strong="G1722"\+w* \+w marriage|strong="G1061"\+w*, \+w but|strong="G1063"\+w* \+w are|strong="G1510"\+w* \+w like|strong="G5613"\+w* \+w God|strong="G2316"\+w*’s angels \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*. \wj* +\v 31 \wj \+w But|strong="G1161"\+w* \+w concerning|strong="G4012"\+w* \+w the|strong="G1161"\+w* resurrection \+w of|strong="G4012"\+w* \+w the|strong="G1161"\+w* \+w dead|strong="G3498"\+w*, haven’\+w t|strong="G3588"\+w* \+w you|strong="G5210"\+w* read \+w that|strong="G3588"\+w* \+w which|strong="G3588"\+w* \+w was|strong="G3588"\+w* \+w spoken|strong="G3004"\+w* \+w to|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w by|strong="G5259"\+w* \+w God|strong="G2316"\+w*, \+w saying|strong="G3004"\+w*, \wj* +\v 32 \wj ‘\+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w God|strong="G2316"\+w* \+w of|strong="G2316"\+w* Abraham, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w God|strong="G2316"\+w* \+w of|strong="G2316"\+w* \+w Isaac|strong="G2464"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w God|strong="G2316"\+w* \+w of|strong="G2316"\+w* \+w Jacob|strong="G2384"\+w*’?\wj*\x + \xo 22:32 \xt Exodus 3:6\x* \wj \+w God|strong="G2316"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w the|strong="G2532"\+w* \+w God|strong="G2316"\+w* \+w of|strong="G2316"\+w* \+w the|strong="G2532"\+w* \+w dead|strong="G3498"\+w*, \+w but|strong="G2532"\+w* \+w of|strong="G2316"\+w* \+w the|strong="G2532"\+w* \+w living|strong="G2198"\+w*.”\wj* +\p +\v 33 \w When|strong="G2532"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w* heard \w it|strong="G2532"\w*, \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w astonished|strong="G1605"\w* \w at|strong="G1909"\w* \w his|strong="G1909"\w* \w teaching|strong="G1322"\w*. +\p +\v 34 \w But|strong="G1161"\w* \w the|strong="G1161"\w* \w Pharisees|strong="G5330"\w*, \w when|strong="G1161"\w* \w they|strong="G1161"\w* heard \w that|strong="G3754"\w* \w he|strong="G1161"\w* \w had|strong="G3588"\w* \w silenced|strong="G5392"\w* \w the|strong="G1161"\w* \w Sadducees|strong="G4523"\w*, \w gathered|strong="G4863"\w* \w themselves|strong="G4863"\w* \w together|strong="G4863"\w*. +\v 35 \w One|strong="G1520"\w* \w of|strong="G1537"\w* \w them|strong="G1905"\w*, \w a|strong="G2532"\w* \w lawyer|strong="G3544"\w*, \w asked|strong="G1905"\w* \w him|strong="G1905"\w* \w a|strong="G2532"\w* \w question|strong="G1905"\w*, \w testing|strong="G3985"\w* \w him|strong="G1905"\w*. +\v 36 “\w Teacher|strong="G1320"\w*, \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w the|strong="G1722"\w* \w greatest|strong="G3173"\w* \w commandment|strong="G1785"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w*?” +\p +\v 37 \w Jesus|strong="G2532"\w* \w said|strong="G5346"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “‘\+w You|strong="G4771"\+w* \+w shall|strong="G2532"\+w* love \+w the|strong="G1722"\+w* \+w Lord|strong="G2962"\+w* \+w your|strong="G3650"\+w* \+w God|strong="G2316"\+w* \+w with|strong="G1722"\+w* \+w all|strong="G3650"\+w* \+w your|strong="G3650"\+w* \+w heart|strong="G2588"\+w*, \+w with|strong="G1722"\+w* \+w all|strong="G3650"\+w* \+w your|strong="G3650"\+w* \+w soul|strong="G5590"\+w*, \+w and|strong="G2532"\+w* \+w with|strong="G1722"\+w* \+w all|strong="G3650"\+w* \+w your|strong="G3650"\+w* \+w mind|strong="G1271"\+w*.’\wj*\x + \xo 22:37 \xt Deuteronomy 6:5 \x* +\v 38 \wj \+w This|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w first|strong="G4413"\+w* \+w and|strong="G2532"\+w* \+w great|strong="G3173"\+w* \+w commandment|strong="G1785"\+w*. \wj* +\v 39 \wj \+w A|strong="G5613"\+w* \+w second|strong="G1208"\+w* \+w likewise|strong="G1161"\+w* \+w is|strong="G3588"\+w* \+w this|strong="G3588"\+w*, ‘\+w You|strong="G4771"\+w* \+w shall|strong="G3588"\+w* love \+w your|strong="G3588"\+w* \+w neighbor|strong="G4139"\+w* \+w as|strong="G5613"\+w* \+w yourself|strong="G4572"\+w*.’\wj*\x + \xo 22:39 \xt Leviticus 19:18\x* +\v 40 \wj \+w The|strong="G1722"\+w* \+w whole|strong="G3650"\+w* \+w law|strong="G3551"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w prophets|strong="G4396"\+w* \+w depend|strong="G2910"\+w* \+w on|strong="G1722"\+w* \+w these|strong="G3778"\+w* \+w two|strong="G1417"\+w* \+w commandments|strong="G1785"\+w*.” \wj* +\p +\v 41 \w Now|strong="G1161"\w* \w while|strong="G1161"\w* \w the|strong="G1161"\w* \w Pharisees|strong="G5330"\w* \w were|strong="G3588"\w* \w gathered|strong="G4863"\w* \w together|strong="G4863"\w*, \w Jesus|strong="G2424"\w* \w asked|strong="G1905"\w* \w them|strong="G3588"\w* \w a|strong="G1161"\w* \w question|strong="G1905"\w*, +\v 42 \w saying|strong="G3004"\w*, \wj “\+w What|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w think|strong="G1380"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G3588"\+w* \+w Christ|strong="G5547"\+w*? \+w Whose|strong="G5101"\+w* \+w son|strong="G5207"\+w* \+w is|strong="G1510"\+w* \+w he|strong="G3588"\+w*?” \wj* +\p \w They|strong="G3588"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Of|strong="G5207"\w* \w David|strong="G1138"\w*.” +\p +\v 43 \w He|strong="G3004"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G1722"\w*, \wj “\+w How|strong="G4459"\+w* \+w then|strong="G3767"\+w* \+w does|strong="G3004"\+w* \+w David|strong="G1138"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w Spirit|strong="G4151"\+w* \+w call|strong="G2564"\+w* \+w him|strong="G2564"\+w* \+w Lord|strong="G2962"\+w*, \+w saying|strong="G3004"\+w*,\wj* +\q1 +\v 44 \wj ‘\+w The|strong="G1537"\+w* \+w Lord|strong="G2962"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G3004"\+w* \+w my|strong="G5087"\+w* \+w Lord|strong="G2962"\+w*,\wj* +\q2 \wj \+w sit|strong="G2521"\+w* \+w on|strong="G1537"\+w* \+w my|strong="G5087"\+w* \+w right|strong="G1188"\+w* \+w hand|strong="G1188"\+w*,\wj* +\q2 \wj \+w until|strong="G2193"\+w* \+w I|strong="G1473"\+w* \+w make|strong="G5087"\+w* \+w your|strong="G2962"\+w* \+w enemies|strong="G2190"\+w* \+w a|strong="G5087"\+w* footstool \+w for|strong="G1537"\+w* \+w your|strong="G2962"\+w* \+w feet|strong="G4228"\+w*’?\wj*\x + \xo 22:44 \xt Psalms 110:1\x* +\p +\v 45 \wj “\+w If|strong="G1487"\+w* \+w then|strong="G3767"\+w* \+w David|strong="G1138"\+w* \+w calls|strong="G2564"\+w* \+w him|strong="G2564"\+w* \+w Lord|strong="G2962"\+w*, \+w how|strong="G4459"\+w* \+w is|strong="G1510"\+w* \+w he|strong="G1487"\+w* \+w his|strong="G2564"\+w* \+w son|strong="G5207"\+w*?”\wj* +\p +\v 46 \w No|strong="G3762"\w* \w one|strong="G5100"\w* \w was|strong="G3588"\w* \w able|strong="G1410"\w* \w to|strong="G2532"\w* \w answer|strong="G3056"\w* \w him|strong="G3588"\w* \w a|strong="G2532"\w* \w word|strong="G3056"\w*, \w neither|strong="G3761"\w* \w did|strong="G2532"\w* \w any|strong="G5100"\w* \w man|strong="G5100"\w* \w dare|strong="G5111"\w* \w ask|strong="G1905"\w* \w him|strong="G3588"\w* \w any|strong="G5100"\w* \w more|strong="G3765"\w* \w questions|strong="G1905"\w* \w from|strong="G2532"\w* \w that|strong="G3588"\w* \w day|strong="G2250"\w* forward. +\c 23 +\p +\v 1 \w Then|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w spoke|strong="G2980"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w his|strong="G2532"\w* \w disciples|strong="G3101"\w*, +\v 2 \w saying|strong="G3004"\w*, \wj “\+w The|strong="G2532"\+w* \+w scribes|strong="G1122"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Pharisees|strong="G5330"\+w* \+w sit|strong="G2523"\+w* \+w on|strong="G1909"\+w* \+w Moses|strong="G3475"\+w*’ \+w seat|strong="G2523"\+w*. \wj* +\v 3 \wj \+w All|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w therefore|strong="G3767"\+w* \+w whatever|strong="G3745"\+w* \+w they|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w to|strong="G2532"\+w* \+w observe|strong="G5083"\+w*, \+w observe|strong="G5083"\+w* \+w and|strong="G2532"\+w* \+w do|strong="G4160"\+w*, \+w but|strong="G1161"\+w* don’\+w t|strong="G3588"\+w* \+w do|strong="G4160"\+w* \+w their|strong="G2532"\+w* \+w works|strong="G2041"\+w*; \+w for|strong="G1063"\+w* \+w they|strong="G2532"\+w* \+w say|strong="G3004"\+w*, \+w and|strong="G2532"\+w* don’\+w t|strong="G3588"\+w* \+w do|strong="G4160"\+w*. \wj* +\v 4 \wj \+w For|strong="G1909"\+w* \+w they|strong="G2532"\+w* \+w bind|strong="G2532"\+w* heavy \+w burdens|strong="G5413"\+w* \+w that|strong="G3588"\+w* \+w are|strong="G3588"\+w* grievous \+w to|strong="G2532"\+w* \+w be|strong="G2532"\+w* borne, \+w and|strong="G2532"\+w* \+w lay|strong="G2007"\+w* \+w them|strong="G3588"\+w* \+w on|strong="G1909"\+w* \+w men|strong="G3588"\+w*’s \+w shoulders|strong="G5606"\+w*; \+w but|strong="G1161"\+w* \+w they|strong="G2532"\+w* themselves \+w will|strong="G2309"\+w* \+w not|strong="G3756"\+w* lift \+w a|strong="G2532"\+w* \+w finger|strong="G1147"\+w* \+w to|strong="G2532"\+w* help \+w them|strong="G3588"\+w*. \wj* +\v 5 \wj \+w But|strong="G1161"\+w* \+w they|strong="G2532"\+w* \+w do|strong="G4160"\+w* \+w all|strong="G3956"\+w* \+w their|strong="G2532"\+w* \+w works|strong="G2041"\+w* \+w to|strong="G4314"\+w* \+w be|strong="G2532"\+w* \+w seen|strong="G2300"\+w* \+w by|strong="G4314"\+w* \+w men|strong="G3956"\+w*. \+w They|strong="G2532"\+w* \+w make|strong="G4160"\+w* \+w their|strong="G2532"\+w* \+w phylacteries|strong="G5440"\+w*\wj*\f + \fr 23:5 \ft phylacteries (tefillin in Hebrew) are small leather pouches that some Jewish men wear on their forehead and arm in prayer. They are used to carry a small scroll with some Scripture in it. See Deuteronomy 6:8.\f* \wj broad \+w and|strong="G2532"\+w* \+w enlarge|strong="G3170"\+w* \+w the|strong="G2532"\+w* fringes\wj*\f + \fr 23:5 \ft or, tassels\f* \wj \+w of|strong="G2532"\+w* \+w their|strong="G2532"\+w* garments, \wj* +\v 6 \wj \+w and|strong="G2532"\+w* \+w love|strong="G5368"\+w* \+w the|strong="G1722"\+w* \+w place|strong="G4411"\+w* \+w of|strong="G2532"\+w* \+w honor|strong="G4411"\+w* \+w at|strong="G1722"\+w* \+w feasts|strong="G1173"\+w*, \+w the|strong="G1722"\+w* best \+w seats|strong="G4410"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w synagogues|strong="G4864"\+w*, \wj* +\v 7 \wj \+w the|strong="G1722"\+w* salutations \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* marketplaces, \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w called|strong="G2564"\+w* ‘\+w Rabbi|strong="G4461"\+w*, \+w Rabbi|strong="G4461"\+w*’\wj*\f + \fr 23:7 \ft NU omits the second “Rabbi”. \f* \wj \+w by|strong="G1722"\+w* \+w men|strong="G3588"\+w*. \wj* +\v 8 \wj \+w But|strong="G1161"\+w* \+w you|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w not|strong="G3361"\+w* \+w to|strong="G1161"\+w* \+w be|strong="G1510"\+w* \+w called|strong="G2564"\+w* ‘\+w Rabbi|strong="G4461"\+w*’, \+w for|strong="G1063"\+w* \+w one|strong="G1520"\+w* \+w is|strong="G1510"\+w* \+w your|strong="G3956"\+w* \+w teacher|strong="G1320"\+w*, \+w the|strong="G3956"\+w* \+w Christ|strong="G1520"\+w*, \+w and|strong="G1161"\+w* \+w all|strong="G3956"\+w* \+w of|strong="G1520"\+w* \+w you|strong="G5210"\+w* \+w are|strong="G1510"\+w* brothers. \wj* +\v 9 \wj \+w Call|strong="G2564"\+w* \+w no|strong="G3361"\+w* \+w man|strong="G1520"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w earth|strong="G1093"\+w* \+w your|strong="G2532"\+w* \+w father|strong="G3962"\+w*, \+w for|strong="G1063"\+w* \+w one|strong="G1520"\+w* \+w is|strong="G1510"\+w* \+w your|strong="G2532"\+w* \+w Father|strong="G3962"\+w*, \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w in|strong="G1909"\+w* \+w heaven|strong="G3770"\+w*. \wj* +\v 10 \wj \+w Neither|strong="G3366"\+w* \+w be|strong="G1510"\+w* \+w called|strong="G2564"\+w* \+w masters|strong="G2519"\+w*, \+w for|strong="G3754"\+w* \+w one|strong="G1520"\+w* \+w is|strong="G1510"\+w* \+w your|strong="G3366"\+w* \+w master|strong="G2519"\+w*, \+w the|strong="G3588"\+w* \+w Christ|strong="G5547"\+w*. \wj* +\v 11 \wj \+w But|strong="G1161"\+w* \+w he|strong="G1161"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w greatest|strong="G3173"\+w* \+w among|strong="G3588"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w your|strong="G3588"\+w* \+w servant|strong="G1249"\+w*. \wj* +\v 12 \wj \+w Whoever|strong="G3748"\+w* \+w exalts|strong="G5312"\+w* \+w himself|strong="G1438"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w humbled|strong="G5013"\+w*, \+w and|strong="G2532"\+w* \+w whoever|strong="G3748"\+w* \+w humbles|strong="G5013"\+w* \+w himself|strong="G1438"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w exalted|strong="G5312"\+w*.\wj* +\p +\v 13 \wj “\+w Woe|strong="G3759"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*, \+w scribes|strong="G1122"\+w* \+w and|strong="G2532"\+w* \+w Pharisees|strong="G5330"\+w*, \+w hypocrites|strong="G5273"\+w*! \+w For|strong="G1063"\+w* \+w you|strong="G5210"\+w* devour widows’ houses, \+w and|strong="G2532"\+w* \+w as|strong="G1161"\+w* \+w a|strong="G2532"\+w* pretense \+w you|strong="G5210"\+w* \+w make|strong="G2532"\+w* \+w long|strong="G3756"\+w* prayers. \+w Therefore|strong="G1161"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* receive \+w greater|strong="G4771"\+w* condemnation.\wj* +\p +\v 14 \wj “But woe to you, scribes and Pharisees, hypocrites! Because you shut up the Kingdom of Heaven against men; for you don’t enter in yourselves, neither do you allow those who are entering in to enter.\wj*\f + \fr 23:14 \ft Some Greek texts reverse the order of verses 13 and 14, and some omit verse 13, numbering verse 14 as 13. NU omits verse 14.\f* +\v 15 \wj \+w Woe|strong="G3759"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*, \+w scribes|strong="G1122"\+w* \+w and|strong="G2532"\+w* \+w Pharisees|strong="G5330"\+w*, \+w hypocrites|strong="G5273"\+w*! \+w For|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w travel|strong="G4013"\+w* \+w around|strong="G4013"\+w* \+w by|strong="G2532"\+w* \+w sea|strong="G2281"\+w* \+w and|strong="G2532"\+w* \+w land|strong="G3584"\+w* \+w to|strong="G2532"\+w* \+w make|strong="G4160"\+w* \+w one|strong="G1520"\+w* \+w proselyte|strong="G4339"\+w*; \+w and|strong="G2532"\+w* \+w when|strong="G3752"\+w* \+w he|strong="G2532"\+w* \+w becomes|strong="G1096"\+w* \+w one|strong="G1520"\+w*, \+w you|strong="G5210"\+w* \+w make|strong="G4160"\+w* \+w him|strong="G3588"\+w* \+w twice|strong="G1362"\+w* \+w as|strong="G2532"\+w* \+w much|strong="G1362"\+w* \+w a|strong="G1096"\+w* \+w son|strong="G5207"\+w* \+w of|strong="G5207"\+w* Gehenna\wj*\f + \fr 23:15 \ft or, Hell\f* \wj \+w as|strong="G2532"\+w* \+w yourselves|strong="G4771"\+w*. \wj* +\p +\v 16 \wj “\+w Woe|strong="G3759"\+w* \+w to|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w you|strong="G5210"\+w* \+w blind|strong="G5185"\+w* \+w guides|strong="G3595"\+w*, \+w who|strong="G3739"\+w* \+w say|strong="G3004"\+w*, ‘\+w Whoever|strong="G3739"\+w* \+w swears|strong="G3660"\+w* \+w by|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w temple|strong="G3485"\+w*, \+w it|strong="G1161"\+w* \+w is|strong="G1510"\+w* \+w nothing|strong="G3762"\+w*; \+w but|strong="G1161"\+w* \+w whoever|strong="G3739"\+w* \+w swears|strong="G3660"\+w* \+w by|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w gold|strong="G5557"\+w* \+w of|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w temple|strong="G3485"\+w*, \+w he|strong="G1161"\+w* \+w is|strong="G1510"\+w* \+w obligated|strong="G3784"\+w*.’ \wj* +\v 17 \wj \+w You|strong="G1510"\+w* \+w blind|strong="G5185"\+w* \+w fools|strong="G3474"\+w*! \+w For|strong="G1063"\+w* \+w which|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w greater|strong="G3173"\+w*, \+w the|strong="G2532"\+w* \+w gold|strong="G5557"\+w* \+w or|strong="G2228"\+w* \+w the|strong="G2532"\+w* \+w temple|strong="G3485"\+w* \+w that|strong="G3588"\+w* sanctifies \+w the|strong="G2532"\+w* \+w gold|strong="G5557"\+w*? \wj* +\v 18 \wj \+w And|strong="G2532"\+w*, ‘\+w Whoever|strong="G3739"\+w* \+w swears|strong="G3660"\+w* \+w by|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w altar|strong="G2379"\+w*, \+w it|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w nothing|strong="G3762"\+w*; \+w but|strong="G1161"\+w* \+w whoever|strong="G3739"\+w* \+w swears|strong="G3660"\+w* \+w by|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w gift|strong="G1435"\+w* \+w that|strong="G3739"\+w* \+w is|strong="G1510"\+w* \+w on|strong="G1722"\+w* \+w it|strong="G2532"\+w*, \+w he|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w obligated|strong="G3784"\+w*.’ \wj* +\v 19 \wj \+w You|strong="G5101"\+w* \+w blind|strong="G5185"\+w* fools! \+w For|strong="G1063"\+w* \+w which|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w greater|strong="G3173"\+w*, \+w the|strong="G3588"\+w* \+w gift|strong="G1435"\+w*, \+w or|strong="G2228"\+w* \+w the|strong="G3588"\+w* \+w altar|strong="G2379"\+w* \+w that|strong="G3588"\+w* sanctifies \+w the|strong="G3588"\+w* \+w gift|strong="G1435"\+w*? \wj* +\v 20 \wj \+w He|strong="G2532"\+w* \+w therefore|strong="G3767"\+w* \+w who|strong="G3588"\+w* \+w swears|strong="G3660"\+w* \+w by|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w altar|strong="G2379"\+w*, \+w swears|strong="G3660"\+w* \+w by|strong="G1722"\+w* \+w it|strong="G2532"\+w* \+w and|strong="G2532"\+w* \+w by|strong="G1722"\+w* \+w everything|strong="G3956"\+w* \+w on|strong="G1722"\+w* \+w it|strong="G2532"\+w*. \wj* +\v 21 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w swears|strong="G3660"\+w* \+w by|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w temple|strong="G3485"\+w*, \+w swears|strong="G3660"\+w* \+w by|strong="G1722"\+w* \+w it|strong="G2532"\+w* \+w and|strong="G2532"\+w* \+w by|strong="G1722"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w has|strong="G2532"\+w* \+w been|strong="G2532"\+w* \+w living|strong="G2730"\+w*\wj*\f + \fr 23:21 \ft NU reads “lives”\f* \wj \+w in|strong="G1722"\+w* \+w it|strong="G2532"\+w*. \wj* +\v 22 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w swears|strong="G3660"\+w* \+w by|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*, \+w swears|strong="G3660"\+w* \+w by|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w throne|strong="G2362"\+w* \+w of|strong="G2316"\+w* \+w God|strong="G2316"\+w* \+w and|strong="G2532"\+w* \+w by|strong="G1722"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w sits|strong="G2521"\+w* \+w on|strong="G1722"\+w* \+w it|strong="G2532"\+w*.\wj* +\p +\v 23 \wj “\+w Woe|strong="G3759"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*, \+w scribes|strong="G1122"\+w* \+w and|strong="G2532"\+w* \+w Pharisees|strong="G5330"\+w*, \+w hypocrites|strong="G5273"\+w*! \+w For|strong="G3754"\+w* \+w you|strong="G5210"\+w* tithe \+w mint|strong="G2238"\+w*, dill, \+w and|strong="G2532"\+w* cumin,\wj*\f + \fr 23:23 \ft cumin is an aromatic seed from Cuminum cyminum, resembling caraway in flavor and appearance. It is used as a spice.\f* \wj \+w and|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w left|strong="G2548"\+w* undone \+w the|strong="G2532"\+w* weightier matters \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w law|strong="G3551"\+w*: \+w justice|strong="G2920"\+w*, \+w mercy|strong="G1656"\+w*, \+w and|strong="G2532"\+w* \+w faith|strong="G4102"\+w*. \+w But|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w ought|strong="G1163"\+w* \+w to|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w done|strong="G4160"\+w* \+w these|strong="G3778"\+w*, \+w and|strong="G2532"\+w* \+w not|strong="G3361"\+w* \+w to|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w left|strong="G2548"\+w* \+w the|strong="G2532"\+w* \+w other|strong="G3361"\+w* undone. \wj* +\v 24 \wj \+w You|strong="G5185"\+w* \+w blind|strong="G5185"\+w* \+w guides|strong="G3595"\+w*, \+w who|strong="G3588"\+w* \+w strain|strong="G1368"\+w* out \+w a|strong="G1161"\+w* \+w gnat|strong="G2971"\+w*, \+w and|strong="G1161"\+w* \+w swallow|strong="G2666"\+w* \+w a|strong="G1161"\+w* \+w camel|strong="G2574"\+w*! \wj* +\p +\v 25 \wj “\+w Woe|strong="G3759"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*, \+w scribes|strong="G1122"\+w* \+w and|strong="G2532"\+w* \+w Pharisees|strong="G5330"\+w*, \+w hypocrites|strong="G5273"\+w*! \+w For|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w clean|strong="G2511"\+w* \+w the|strong="G2532"\+w* \+w outside|strong="G1855"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w cup|strong="G4221"\+w* \+w and|strong="G2532"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w platter|strong="G3953"\+w*, \+w but|strong="G1161"\+w* \+w within|strong="G2081"\+w* \+w they|strong="G2532"\+w* \+w are|strong="G3588"\+w* \+w full|strong="G1073"\+w* \+w of|strong="G1537"\+w* extortion \+w and|strong="G2532"\+w* unrighteousness.\wj*\f + \fr 23:25 \ft TR reads “self-indulgence” instead of “unrighteousness”\f* +\v 26 \wj \+w You|strong="G2532"\+w* \+w blind|strong="G5185"\+w* \+w Pharisee|strong="G5330"\+w*, \+w first|strong="G4413"\+w* \+w clean|strong="G2513"\+w* \+w the|strong="G2532"\+w* \+w inside|strong="G1787"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w cup|strong="G4221"\+w* \+w and|strong="G2532"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w platter|strong="G3953"\+w*, \+w that|strong="G2443"\+w* its \+w outside|strong="G1622"\+w* \+w may|strong="G2532"\+w* \+w become|strong="G1096"\+w* \+w clean|strong="G2513"\+w* \+w also|strong="G2532"\+w*.\wj* +\p +\v 27 \wj “\+w Woe|strong="G3759"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*, \+w scribes|strong="G1122"\+w* \+w and|strong="G2532"\+w* \+w Pharisees|strong="G5330"\+w*, \+w hypocrites|strong="G5273"\+w*! \+w For|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w are|strong="G3956"\+w* \+w like|strong="G3945"\+w* whitened \+w tombs|strong="G5028"\+w*, \+w which|strong="G3748"\+w* \+w outwardly|strong="G1855"\+w* \+w appear|strong="G5316"\+w* \+w beautiful|strong="G5611"\+w*, \+w but|strong="G1161"\+w* \+w inwardly|strong="G2081"\+w* \+w are|strong="G3956"\+w* \+w full|strong="G1073"\+w* \+w of|strong="G2532"\+w* \+w dead|strong="G3498"\+w* \+w men|strong="G3956"\+w*’s \+w bones|strong="G3747"\+w* \+w and|strong="G2532"\+w* \+w of|strong="G2532"\+w* \+w all|strong="G3956"\+w* uncleanness. \wj* +\v 28 \wj \+w Even|strong="G2532"\+w* \+w so|strong="G3779"\+w* \+w you|strong="G5210"\+w* \+w also|strong="G2532"\+w* \+w outwardly|strong="G1855"\+w* \+w appear|strong="G5316"\+w* \+w righteous|strong="G1342"\+w* \+w to|strong="G2532"\+w* \+w men|strong="G1342"\+w*, \+w but|strong="G1161"\+w* \+w inwardly|strong="G2081"\+w* \+w you|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w full|strong="G3324"\+w* \+w of|strong="G2532"\+w* \+w hypocrisy|strong="G5272"\+w* \+w and|strong="G2532"\+w* iniquity.\wj* +\p +\v 29 \wj “\+w Woe|strong="G3759"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*, \+w scribes|strong="G1122"\+w* \+w and|strong="G2532"\+w* \+w Pharisees|strong="G5330"\+w*, \+w hypocrites|strong="G5273"\+w*! \+w For|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w build|strong="G3618"\+w* \+w the|strong="G2532"\+w* \+w tombs|strong="G3419"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w prophets|strong="G4396"\+w* \+w and|strong="G2532"\+w* \+w decorate|strong="G2885"\+w* \+w the|strong="G2532"\+w* \+w tombs|strong="G3419"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w righteous|strong="G1342"\+w*, \wj* +\v 30 \wj \+w and|strong="G2532"\+w* \+w say|strong="G3004"\+w*, ‘\+w If|strong="G1487"\+w* \+w we|strong="G2249"\+w* \+w had|strong="G2532"\+w* \+w lived|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w days|strong="G2250"\+w* \+w of|strong="G2250"\+w* \+w our|strong="G2532"\+w* \+w fathers|strong="G3962"\+w*, \+w we|strong="G2249"\+w* wouldn’\+w t|strong="G3588"\+w* \+w have|strong="G2532"\+w* \+w been|strong="G1510"\+w* \+w partakers|strong="G2844"\+w* \+w with|strong="G1722"\+w* \+w them|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* blood \+w of|strong="G2250"\+w* \+w the|strong="G1722"\+w* \+w prophets|strong="G4396"\+w*.’ \wj* +\v 31 \wj \+w Therefore|strong="G5620"\+w* \+w you|strong="G3754"\+w* \+w testify|strong="G3140"\+w* \+w to|strong="G1438"\+w* \+w yourselves|strong="G1438"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G3754"\+w* \+w are|strong="G1510"\+w* \+w children|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w killed|strong="G5407"\+w* \+w the|strong="G3588"\+w* \+w prophets|strong="G4396"\+w*. \wj* +\v 32 \wj \+w Fill|strong="G4137"\+w* \+w up|strong="G2532"\+w*, \+w then|strong="G2532"\+w*, \+w the|strong="G2532"\+w* \+w measure|strong="G3358"\+w* \+w of|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w fathers|strong="G3962"\+w*. \wj* +\v 33 \wj \+w You|strong="G4459"\+w* \+w serpents|strong="G3789"\+w*, \+w you|strong="G4459"\+w* \+w offspring|strong="G1081"\+w* \+w of|strong="G3588"\+w* \+w vipers|strong="G2191"\+w*, \+w how|strong="G4459"\+w* \+w will|strong="G4459"\+w* \+w you|strong="G4459"\+w* \+w escape|strong="G5343"\+w* \+w the|strong="G3588"\+w* \+w judgment|strong="G2920"\+w* \+w of|strong="G3588"\+w* Gehenna?\wj*\f + \fr 23:33 \ft or, Hell\f* +\v 34 \wj \+w Therefore|strong="G1223"\+w*, \+w behold|strong="G2400"\+w*, \+w I|strong="G1473"\+w* send \+w to|strong="G1519"\+w* \+w you|strong="G5210"\+w* \+w prophets|strong="G4396"\+w*, \+w wise|strong="G4680"\+w* \+w men|strong="G3778"\+w*, \+w and|strong="G2532"\+w* \+w scribes|strong="G1122"\+w*. \+w Some|strong="G3588"\+w* \+w of|strong="G1537"\+w* \+w them|strong="G3588"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* kill \+w and|strong="G2532"\+w* \+w crucify|strong="G4717"\+w*; \+w and|strong="G2532"\+w* \+w some|strong="G3588"\+w* \+w of|strong="G1537"\+w* \+w them|strong="G3588"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w scourge|strong="G3146"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G1223"\+w* \+w synagogues|strong="G4864"\+w* \+w and|strong="G2532"\+w* \+w persecute|strong="G1377"\+w* \+w from|strong="G1537"\+w* \+w city|strong="G4172"\+w* \+w to|strong="G1519"\+w* \+w city|strong="G4172"\+w*, \wj* +\v 35 \wj \+w that|strong="G3739"\+w* \+w on|strong="G1909"\+w* \+w you|strong="G5210"\+w* \+w may|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G2532"\+w* \+w righteous|strong="G1342"\+w* blood \+w shed|strong="G1632"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w earth|strong="G1093"\+w*, \+w from|strong="G2064"\+w* \+w the|strong="G2532"\+w* blood \+w of|strong="G5207"\+w* \+w righteous|strong="G1342"\+w* Abel \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* blood \+w of|strong="G5207"\+w* Zachariah \+w son|strong="G5207"\+w* \+w of|strong="G5207"\+w* Barachiah, \+w whom|strong="G3739"\+w* \+w you|strong="G5210"\+w* \+w killed|strong="G5407"\+w* \+w between|strong="G3342"\+w* \+w the|strong="G2532"\+w* \+w sanctuary|strong="G3485"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w altar|strong="G2379"\+w*. \wj* +\v 36 \wj Most \+w certainly|strong="G1909"\+w* \+w I|strong="G3778"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w all|strong="G3956"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3956"\+w* \+w will|strong="G3956"\+w* \+w come|strong="G2240"\+w* \+w upon|strong="G1909"\+w* \+w this|strong="G3778"\+w* \+w generation|strong="G1074"\+w*.\wj* +\p +\v 37 \wj “\+w Jerusalem|strong="G2419"\+w*, \+w Jerusalem|strong="G2419"\+w*, \+w who|strong="G3739"\+w* kills \+w the|strong="G2532"\+w* \+w prophets|strong="G4396"\+w* \+w and|strong="G2532"\+w* \+w stones|strong="G3036"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3739"\+w* \+w are|strong="G3588"\+w* \+w sent|strong="G2532"\+w* \+w to|strong="G4314"\+w* \+w her|strong="G1438"\+w*! \+w How|strong="G4212"\+w* \+w often|strong="G4212"\+w* \+w I|strong="G3739"\+w* \+w would|strong="G2309"\+w* \+w have|strong="G2309"\+w* \+w gathered|strong="G1996"\+w* \+w your|strong="G2532"\+w* \+w children|strong="G5043"\+w* \+w together|strong="G1996"\+w*, \+w even|strong="G2532"\+w* \+w as|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w hen|strong="G3733"\+w* \+w gathers|strong="G1996"\+w* \+w her|strong="G1438"\+w* \+w chicks|strong="G3556"\+w* \+w under|strong="G5259"\+w* \+w her|strong="G1438"\+w* \+w wings|strong="G4420"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w would|strong="G2309"\+w* \+w not|strong="G3756"\+w*! \wj* +\v 38 \wj \+w Behold|strong="G2400"\+w*, \+w your|strong="G3708"\+w* \+w house|strong="G3624"\+w* \+w is|strong="G3588"\+w* left \+w to|strong="G3708"\+w* \+w you|strong="G5210"\+w* \+w desolate|strong="G2048"\+w*. \wj* +\v 39 \wj \+w For|strong="G1063"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w you|strong="G5210"\+w* \+w will|strong="G2962"\+w* \+w not|strong="G3756"\+w* \+w see|strong="G3708"\+w* \+w me|strong="G1473"\+w* \+w from|strong="G2064"\+w* \+w now|strong="G3756"\+w* \+w on|strong="G1722"\+w*, \+w until|strong="G2193"\+w* \+w you|strong="G5210"\+w* \+w say|strong="G3004"\+w*, ‘\+w Blessed|strong="G2127"\+w* \+w is|strong="G3588"\+w* \+w he|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w comes|strong="G2064"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w name|strong="G3686"\+w* \+w of|strong="G3686"\+w* \+w the|strong="G1722"\+w* \+w Lord|strong="G2962"\+w*!’”\wj*\x + \xo 23:39 \xt Psalms 118:26 \x* +\c 24 +\p +\v 1 \w Jesus|strong="G2424"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w temple|strong="G2413"\w*, \w and|strong="G2532"\w* \w was|strong="G3588"\w* \w going|strong="G4198"\w* \w on|strong="G4198"\w* \w his|strong="G2532"\w* \w way|strong="G4198"\w*. \w His|strong="G2532"\w* \w disciples|strong="G3101"\w* \w came|strong="G4334"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w show|strong="G1925"\w* \w him|strong="G3588"\w* \w the|strong="G2532"\w* \w buildings|strong="G3619"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w temple|strong="G2413"\w*. +\v 2 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w You|strong="G5210"\+w* see \+w all|strong="G3956"\+w* \+w of|strong="G1909"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3956"\+w*, don’\+w t|strong="G3588"\+w* \+w you|strong="G5210"\+w*? \+w Most|strong="G3037"\+w* \+w certainly|strong="G1909"\+w* \+w I|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w there|strong="G1161"\+w* \+w will|strong="G3739"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G3756"\+w* left \+w here|strong="G5602"\+w* \+w one|strong="G3739"\+w* \+w stone|strong="G3037"\+w* \+w on|strong="G1909"\+w* \+w another|strong="G3037"\+w*, \+w that|strong="G3739"\+w* \+w will|strong="G3739"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G3756"\+w* thrown \+w down|strong="G2647"\+w*.”\wj* +\p +\v 3 \w As|strong="G1161"\w* \w he|strong="G2532"\w* \w sat|strong="G2521"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w Mount|strong="G3735"\w* \w of|strong="G2532"\w* \w Olives|strong="G1636"\w*, \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w came|strong="G4334"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w privately|strong="G2398"\w*, \w saying|strong="G3004"\w*, “\w Tell|strong="G3004"\w* \w us|strong="G3004"\w*, \w when|strong="G1161"\w* \w will|strong="G5101"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w be|strong="G1510"\w*? \w What|strong="G5101"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w sign|strong="G4592"\w* \w of|strong="G2532"\w* \w your|strong="G4674"\w* \w coming|strong="G3952"\w*, \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w end|strong="G4930"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* age?” +\p +\v 4 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Be|strong="G2532"\+w* careful \+w that|strong="G3588"\+w* \+w no|strong="G3361"\+w* \+w one|strong="G5100"\+w* \+w leads|strong="G4105"\+w* \+w you|strong="G5210"\+w* \+w astray|strong="G4105"\+w*. \wj* +\v 5 \wj \+w For|strong="G1063"\+w* \+w many|strong="G4183"\+w* \+w will|strong="G1510"\+w* \+w come|strong="G2064"\+w* \+w in|strong="G1909"\+w* \+w my|strong="G1473"\+w* \+w name|strong="G3686"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w Christ|strong="G5547"\+w*,’ \+w and|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w lead|strong="G1510"\+w* \+w many|strong="G4183"\+w* \+w astray|strong="G4105"\+w*. \wj* +\v 6 \wj \+w You|strong="G3708"\+w* \+w will|strong="G3195"\+w* hear \+w of|strong="G2532"\+w* \+w wars|strong="G4171"\+w* \+w and|strong="G2532"\+w* rumors \+w of|strong="G2532"\+w* \+w wars|strong="G4171"\+w*. \+w See|strong="G3708"\+w* \+w that|strong="G3588"\+w* \+w you|strong="G3708"\+w* aren’\+w t|strong="G3588"\+w* \+w troubled|strong="G2360"\+w*, \+w for|strong="G1063"\+w* \+w all|strong="G2532"\+w* \+w this|strong="G3588"\+w* \+w must|strong="G1163"\+w* \+w happen|strong="G1096"\+w*, \+w but|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w end|strong="G5056"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3361"\+w* \+w yet|strong="G2532"\+w*. \wj* +\v 7 \wj \+w For|strong="G1063"\+w* \+w nation|strong="G1484"\+w* \+w will|strong="G1510"\+w* \+w rise|strong="G1453"\+w* \+w against|strong="G2596"\+w* \+w nation|strong="G1484"\+w*, \+w and|strong="G2532"\+w* kingdom \+w against|strong="G2596"\+w* kingdom; \+w and|strong="G2532"\+w* \+w there|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w famines|strong="G3042"\+w*, plagues, \+w and|strong="G2532"\+w* \+w earthquakes|strong="G4578"\+w* \+w in|strong="G1909"\+w* \+w various|strong="G2596"\+w* \+w places|strong="G5117"\+w*. \wj* +\v 8 \wj \+w But|strong="G1161"\+w* \+w all|strong="G3956"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3956"\+w* \+w are|strong="G3956"\+w* \+w the|strong="G3956"\+w* beginning \+w of|strong="G3956"\+w* \+w birth|strong="G5604"\+w* \+w pains|strong="G5604"\+w*. \wj* +\p +\v 9 \wj “\+w Then|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w deliver|strong="G3860"\+w* \+w you|strong="G5210"\+w* \+w up|strong="G3860"\+w* \+w to|strong="G1519"\+w* oppression \+w and|strong="G2532"\+w* \+w will|strong="G1510"\+w* kill \+w you|strong="G5210"\+w*. \+w You|strong="G5210"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w hated|strong="G3404"\+w* \+w by|strong="G1223"\+w* \+w all|strong="G3956"\+w* \+w of|strong="G5259"\+w* \+w the|strong="G2532"\+w* \+w nations|strong="G1484"\+w* \+w for|strong="G1519"\+w* \+w my|strong="G3956"\+w* \+w name|strong="G3686"\+w*’s \+w sake|strong="G1223"\+w*. \wj* +\v 10 \wj \+w Then|strong="G2532"\+w* \+w many|strong="G4183"\+w* \+w will|strong="G2532"\+w* \+w stumble|strong="G4624"\+w*, \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w deliver|strong="G3860"\+w* \+w up|strong="G3860"\+w* \+w one|strong="G3404"\+w* another, \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w hate|strong="G3404"\+w* \+w one|strong="G3404"\+w* another. \wj* +\v 11 \wj \+w Many|strong="G4183"\+w* \+w false|strong="G5578"\+w* \+w prophets|strong="G5578"\+w* \+w will|strong="G2532"\+w* \+w arise|strong="G1453"\+w* \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w lead|strong="G2532"\+w* \+w many|strong="G4183"\+w* \+w astray|strong="G4105"\+w*. \wj* +\v 12 \wj \+w Because|strong="G1223"\+w* iniquity \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w multiplied|strong="G4129"\+w*, \+w the|strong="G2532"\+w* love \+w of|strong="G1223"\+w* \+w many|strong="G4183"\+w* \+w will|strong="G2532"\+w* \+w grow|strong="G5594"\+w* \+w cold|strong="G5594"\+w*. \wj* +\v 13 \wj \+w But|strong="G1161"\+w* \+w he|strong="G1161"\+w* \+w who|strong="G3588"\+w* \+w endures|strong="G5278"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w end|strong="G5056"\+w* \+w will|strong="G3778"\+w* \+w be|strong="G1519"\+w* \+w saved|strong="G4982"\+w*. \wj* +\v 14 \wj \+w This|strong="G3778"\+w* \+w Good|strong="G3956"\+w* \+w News|strong="G2098"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G1722"\+w* Kingdom \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w preached|strong="G2784"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w whole|strong="G3650"\+w* \+w world|strong="G3625"\+w* \+w for|strong="G1519"\+w* \+w a|strong="G2532"\+w* \+w testimony|strong="G3142"\+w* \+w to|strong="G1519"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G1722"\+w* \+w nations|strong="G1484"\+w*, \+w and|strong="G2532"\+w* \+w then|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w end|strong="G5056"\+w* \+w will|strong="G2532"\+w* \+w come|strong="G2240"\+w*.\wj* +\p +\v 15 \wj “\+w When|strong="G3752"\+w*, \+w therefore|strong="G3767"\+w*, \+w you|strong="G3752"\+w* \+w see|strong="G3708"\+w* \+w the|strong="G1722"\+w* abomination \+w of|strong="G1223"\+w* \+w desolation|strong="G2050"\+w*,\wj*\x + \xo 24:15 \xt Daniel 9:27; 11:31; 12:11\x* \wj \+w which|strong="G3588"\+w* \+w was|strong="G3588"\+w* \+w spoken|strong="G3004"\+w* \+w of|strong="G1223"\+w* \+w through|strong="G1223"\+w* \+w Daniel|strong="G1158"\+w* \+w the|strong="G1722"\+w* \+w prophet|strong="G4396"\+w*, \+w standing|strong="G2476"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* holy \+w place|strong="G5117"\+w* (\+w let|strong="G3767"\+w* \+w the|strong="G1722"\+w* reader \+w understand|strong="G3539"\+w*), \wj* +\v 16 \wj \+w then|strong="G5119"\+w* let \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w Judea|strong="G2449"\+w* \+w flee|strong="G5343"\+w* \+w to|strong="G1909"\+w* \+w the|strong="G1722"\+w* \+w mountains|strong="G3735"\+w*. \wj* +\v 17 \wj Let \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G1537"\+w* \+w housetop|strong="G1430"\+w* \+w not|strong="G3361"\+w* \+w go|strong="G2597"\+w* \+w down|strong="G2597"\+w* \+w to|strong="G1909"\+w* take \+w out|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w things|strong="G3588"\+w* \+w that|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w in|strong="G1909"\+w* \+w his|strong="G1909"\+w* \+w house|strong="G3614"\+w*. \wj* +\v 18 \wj \+w Let|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* field \+w not|strong="G3361"\+w* \+w return|strong="G1994"\+w* \+w back|strong="G3694"\+w* \+w to|strong="G2532"\+w* \+w get|strong="G2532"\+w* \+w his|strong="G1722"\+w* \+w clothes|strong="G2440"\+w*. \wj* +\v 19 \wj \+w But|strong="G1161"\+w* \+w woe|strong="G3759"\+w* \+w to|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w with|strong="G1722"\+w* \+w child|strong="G1064"\+w* \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w nursing|strong="G2337"\+w* mothers \+w in|strong="G1722"\+w* \+w those|strong="G3588"\+w* \+w days|strong="G2250"\+w*! \wj* +\v 20 \wj \+w Pray|strong="G4336"\+w* \+w that|strong="G2443"\+w* \+w your|strong="G3366"\+w* \+w flight|strong="G5437"\+w* \+w will|strong="G1096"\+w* \+w not|strong="G3361"\+w* \+w be|strong="G1096"\+w* \+w in|strong="G1096"\+w* \+w the|strong="G1161"\+w* \+w winter|strong="G5494"\+w* \+w nor|strong="G3366"\+w* \+w on|strong="G1161"\+w* \+w a|strong="G1096"\+w* \+w Sabbath|strong="G4521"\+w*, \wj* +\v 21 \wj \+w for|strong="G1063"\+w* \+w then|strong="G5119"\+w* \+w there|strong="G1063"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1096"\+w* \+w great|strong="G3173"\+w* \+w suffering|strong="G2347"\+w*,\wj*\f + \fr 24:21 \ft or, oppression\f* \wj \+w such|strong="G3634"\+w* \+w as|strong="G3634"\+w* \+w has|strong="G1096"\+w* \+w not|strong="G3756"\+w* \+w been|strong="G1510"\+w* \+w from|strong="G3756"\+w* \+w the|strong="G3588"\+w* beginning \+w of|strong="G3588"\+w* \+w the|strong="G3588"\+w* \+w world|strong="G2889"\+w* \+w until|strong="G2193"\+w* \+w now|strong="G3568"\+w*, \+w no|strong="G3756"\+w*, \+w nor|strong="G3761"\+w* \+w ever|strong="G3756"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1096"\+w*. \wj* +\v 22 \wj \+w Unless|strong="G1487"\+w* \+w those|strong="G3588"\+w* \+w days|strong="G2250"\+w* \+w had|strong="G2532"\+w* \+w been|strong="G2532"\+w* \+w shortened|strong="G2856"\+w*, \+w no|strong="G3756"\+w* \+w flesh|strong="G4561"\+w* \+w would|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w been|strong="G2532"\+w* \+w saved|strong="G4982"\+w*. \+w But|strong="G1161"\+w* \+w for|strong="G1223"\+w* \+w the|strong="G2532"\+w* \+w sake|strong="G1223"\+w* \+w of|strong="G2250"\+w* \+w the|strong="G2532"\+w* \+w chosen|strong="G1588"\+w* ones, \+w those|strong="G3588"\+w* \+w days|strong="G2250"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w shortened|strong="G2856"\+w*. \wj* +\p +\v 23 \wj “\+w Then|strong="G5119"\+w* \+w if|strong="G1437"\+w* \+w any|strong="G5100"\+w* \+w man|strong="G5100"\+w* tells \+w you|strong="G5210"\+w*, ‘\+w Behold|strong="G2400"\+w*, \+w here|strong="G5602"\+w* \+w is|strong="G3588"\+w* \+w the|strong="G3588"\+w* \+w Christ|strong="G5547"\+w*!’ \+w or|strong="G2228"\+w*, ‘\+w There|strong="G3004"\+w*!’ don’\+w t|strong="G3588"\+w* \+w believe|strong="G4100"\+w* \+w it|strong="G1437"\+w*. \wj* +\v 24 \wj \+w For|strong="G1063"\+w* \+w false|strong="G5578"\+w* \+w christs|strong="G5580"\+w* \+w and|strong="G2532"\+w* \+w false|strong="G5578"\+w* \+w prophets|strong="G5578"\+w* \+w will|strong="G2532"\+w* \+w arise|strong="G1453"\+w*, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w show|strong="G1325"\+w* \+w great|strong="G3173"\+w* \+w signs|strong="G4592"\+w* \+w and|strong="G2532"\+w* \+w wonders|strong="G5059"\+w*, \+w so|strong="G2532"\+w* \+w as|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w lead|strong="G2532"\+w* \+w astray|strong="G4105"\+w*, \+w if|strong="G1487"\+w* \+w possible|strong="G1415"\+w*, \+w even|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w chosen|strong="G1588"\+w* \+w ones|strong="G3173"\+w*.\wj* +\p +\v 25 \wj “\+w Behold|strong="G2400"\+w*, \+w I|strong="G3708"\+w* \+w have|strong="G5210"\+w* \+w told|strong="G4302"\+w* \+w you|strong="G5210"\+w* beforehand. \wj* +\p +\v 26 \wj “\+w If|strong="G1437"\+w* \+w therefore|strong="G3767"\+w* \+w they|strong="G3588"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, ‘\+w Behold|strong="G2400"\+w*, \+w he|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w wilderness|strong="G2048"\+w*,’ don’\+w t|strong="G3588"\+w* \+w go|strong="G1831"\+w* \+w out|strong="G1831"\+w*; \+w or|strong="G3361"\+w* ‘\+w Behold|strong="G2400"\+w*, \+w he|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w inner|strong="G5009"\+w* \+w rooms|strong="G5009"\+w*,’ don’\+w t|strong="G3588"\+w* \+w believe|strong="G4100"\+w* \+w it|strong="G1437"\+w*. \wj* +\v 27 \wj \+w For|strong="G1063"\+w* \+w as|strong="G5618"\+w* \+w the|strong="G2532"\+w* lightning \+w flashes|strong="G5316"\+w* \+w from|strong="G2532"\+w* \+w the|strong="G2532"\+w* east, \+w and|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w seen|strong="G5316"\+w* \+w even|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w west|strong="G1424"\+w*, \+w so|strong="G3779"\+w* \+w will|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w coming|strong="G3952"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w* \+w be|strong="G1510"\+w*. \wj* +\v 28 \wj \+w For|strong="G4430"\+w* \+w wherever|strong="G3699"\+w* \+w the|strong="G3588"\+w* carcass \+w is|strong="G1510"\+w*, \+w that|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w where|strong="G3699"\+w* \+w the|strong="G3588"\+w* vultures\wj*\f + \fr 24:28 \ft or, eagles\f* \wj \+w gather|strong="G4863"\+w* \+w together|strong="G4863"\+w*. \wj* +\p +\v 29 \wj “\+w But|strong="G1161"\+w* \+w immediately|strong="G2112"\+w* \+w after|strong="G3326"\+w* \+w the|strong="G2532"\+w* \+w suffering|strong="G2347"\+w*\wj*\f + \fr 24:29 \ft or, oppression\f* \wj \+w of|strong="G1537"\+w* \+w those|strong="G3588"\+w* \+w days|strong="G2250"\+w*, \+w the|strong="G2532"\+w* \+w sun|strong="G2246"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w darkened|strong="G4654"\+w*, \+w the|strong="G2532"\+w* \+w moon|strong="G4582"\+w* \+w will|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w give|strong="G1325"\+w* \+w its|strong="G1325"\+w* \+w light|strong="G5338"\+w*, \+w the|strong="G2532"\+w* stars \+w will|strong="G2532"\+w* \+w fall|strong="G4098"\+w* \+w from|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w sky|strong="G3772"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w powers|strong="G1411"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w heavens|strong="G3772"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w shaken|strong="G4531"\+w*;\wj*\x + \xo 24:29 \xt Isaiah 13:10; 34:4 \x* +\v 30 \wj \+w and|strong="G2532"\+w* \+w then|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w sign|strong="G4592"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3956"\+w* \+w will|strong="G2532"\+w* \+w appear|strong="G5316"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w sky|strong="G3772"\+w*. \+w Then|strong="G2532"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G1722"\+w* \+w tribes|strong="G5443"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G1722"\+w* \+w earth|strong="G1093"\+w* \+w will|strong="G2532"\+w* \+w mourn|strong="G2875"\+w*, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w see|strong="G3708"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3956"\+w* \+w coming|strong="G2064"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G1722"\+w* \+w clouds|strong="G3507"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G1722"\+w* \+w sky|strong="G3772"\+w* \+w with|strong="G3326"\+w* \+w power|strong="G1411"\+w* \+w and|strong="G2532"\+w* \+w great|strong="G4183"\+w* \+w glory|strong="G1391"\+w*. \wj* +\v 31 \wj \+w He|strong="G2532"\+w* \+w will|strong="G2532"\+w* send \+w out|strong="G1537"\+w* \+w his|strong="G2532"\+w* angels \+w with|strong="G3326"\+w* \+w a|strong="G2532"\+w* \+w great|strong="G3173"\+w* sound \+w of|strong="G1537"\+w* \+w a|strong="G2532"\+w* \+w trumpet|strong="G4536"\+w*, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w gather|strong="G1996"\+w* \+w together|strong="G1996"\+w* \+w his|strong="G2532"\+w* \+w chosen|strong="G1588"\+w* \+w ones|strong="G3173"\+w* \+w from|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w four|strong="G5064"\+w* winds, \+w from|strong="G1537"\+w* \+w one|strong="G3588"\+w* \+w end|strong="G3326"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w sky|strong="G3772"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w other|strong="G3588"\+w*.\wj* +\p +\v 32 \wj “\+w Now|strong="G1161"\+w* \+w from|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w fig|strong="G4808"\+w* \+w tree|strong="G4808"\+w* \+w learn|strong="G3129"\+w* \+w this|strong="G3588"\+w* \+w parable|strong="G3850"\+w*: \+w When|strong="G3752"\+w* \+w its|strong="G1631"\+w* \+w branch|strong="G2798"\+w* \+w has|strong="G1096"\+w* \+w now|strong="G1161"\+w* \+w become|strong="G1096"\+w* tender \+w and|strong="G2532"\+w* produces \+w its|strong="G1631"\+w* \+w leaves|strong="G5444"\+w*, \+w you|strong="G3752"\+w* \+w know|strong="G1097"\+w* \+w that|strong="G3754"\+w* \+w the|strong="G2532"\+w* \+w summer|strong="G2330"\+w* \+w is|strong="G3588"\+w* \+w near|strong="G1451"\+w*. \wj* +\v 33 \wj \+w Even|strong="G2532"\+w* \+w so|strong="G3779"\+w* \+w you|strong="G5210"\+w* \+w also|strong="G2532"\+w*, \+w when|strong="G3752"\+w* \+w you|strong="G5210"\+w* \+w see|strong="G3708"\+w* \+w all|strong="G3956"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3956"\+w*, \+w know|strong="G1097"\+w* \+w that|strong="G3754"\+w* \+w he|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w near|strong="G1451"\+w*, \+w even|strong="G2532"\+w* \+w at|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w doors|strong="G2374"\+w*. \wj* +\v 34 \wj Most \+w certainly|strong="G3756"\+w* \+w I|strong="G3778"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w this|strong="G3778"\+w* \+w generation|strong="G1074"\+w*\wj*\f + \fr 24:34 \ft The word for “generation” (genea) can also be translated as “race.”\f* \wj \+w will|strong="G3956"\+w* \+w not|strong="G3756"\+w* \+w pass|strong="G1096"\+w* \+w away|strong="G3928"\+w* \+w until|strong="G2193"\+w* \+w all|strong="G3956"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3956"\+w* \+w are|strong="G3588"\+w* \+w accomplished|strong="G1096"\+w*. \wj* +\v 35 \wj \+w Heaven|strong="G3772"\+w* \+w and|strong="G2532"\+w* \+w earth|strong="G1093"\+w* \+w will|strong="G2532"\+w* \+w pass|strong="G3928"\+w* \+w away|strong="G3928"\+w*, \+w but|strong="G1161"\+w* \+w my|strong="G1473"\+w* \+w words|strong="G3056"\+w* \+w will|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w pass|strong="G3928"\+w* \+w away|strong="G3928"\+w*. \wj* +\p +\v 36 \wj “\+w But|strong="G1161"\+w* \+w no|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w knows|strong="G1492"\+w* \+w of|strong="G5207"\+w* \+w that|strong="G3588"\+w* \+w day|strong="G2250"\+w* \+w and|strong="G2532"\+w* \+w hour|strong="G5610"\+w*, \+w not|strong="G3361"\+w* \+w even|strong="G2532"\+w* \+w the|strong="G2532"\+w* angels \+w of|strong="G5207"\+w* \+w heaven|strong="G3772"\+w*,\wj*\f + \fr 24:36 \ft NU adds “nor the son”\f* \wj \+w but|strong="G1161"\+w* \+w my|strong="G3588"\+w* \+w Father|strong="G3962"\+w* \+w only|strong="G3441"\+w*.\wj* +\v 37 \wj \+w As|strong="G5618"\+w* \+w the|strong="G1161"\+w* \+w days|strong="G2250"\+w* \+w of|strong="G5207"\+w* \+w Noah|strong="G3575"\+w* \+w were|strong="G1510"\+w*, \+w so|strong="G3779"\+w* \+w will|strong="G1510"\+w* \+w the|strong="G1161"\+w* \+w coming|strong="G3952"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G1161"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w* \+w be|strong="G1510"\+w*. \wj* +\v 38 \wj \+w For|strong="G1063"\+w* \+w as|strong="G5613"\+w* \+w in|strong="G1722"\+w* \+w those|strong="G3588"\+w* \+w days|strong="G2250"\+w* \+w which|strong="G3739"\+w* \+w were|strong="G1510"\+w* \+w before|strong="G4253"\+w* \+w the|strong="G1722"\+w* \+w flood|strong="G2627"\+w* \+w they|strong="G2532"\+w* \+w were|strong="G1510"\+w* \+w eating|strong="G5176"\+w* \+w and|strong="G2532"\+w* \+w drinking|strong="G4095"\+w*, \+w marrying|strong="G1060"\+w* \+w and|strong="G2532"\+w* \+w giving|strong="G1061"\+w* \+w in|strong="G1722"\+w* \+w marriage|strong="G1061"\+w*, \+w until|strong="G1519"\+w* \+w the|strong="G1722"\+w* \+w day|strong="G2250"\+w* \+w that|strong="G3739"\+w* \+w Noah|strong="G3575"\+w* \+w entered|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1722"\+w* ship, \wj* +\v 39 \wj \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* didn’\+w t|strong="G3588"\+w* \+w know|strong="G1097"\+w* \+w until|strong="G2193"\+w* \+w the|strong="G2532"\+w* \+w flood|strong="G2627"\+w* \+w came|strong="G2064"\+w* \+w and|strong="G2532"\+w* \+w took|strong="G2532"\+w* \+w them|strong="G3588"\+w* \+w all|strong="G2532"\+w* away, \+w so|strong="G3779"\+w* \+w will|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w coming|strong="G2064"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3756"\+w* \+w be|strong="G1510"\+w*. \wj* +\v 40 \wj \+w Then|strong="G2532"\+w* \+w two|strong="G1417"\+w* \+w men|strong="G1417"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* field: \+w one|strong="G1520"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w taken|strong="G3880"\+w* \+w and|strong="G2532"\+w* \+w one|strong="G1520"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* left. \wj* +\v 41 \wj \+w Two|strong="G1417"\+w* \+w women|strong="G1417"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* grinding \+w at|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w mill|strong="G3458"\+w*: \+w one|strong="G1520"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w taken|strong="G3880"\+w* \+w and|strong="G2532"\+w* \+w one|strong="G1520"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* left. \wj* +\v 42 \wj \+w Watch|strong="G1127"\+w* \+w therefore|strong="G3767"\+w*, \+w for|strong="G3754"\+w* \+w you|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w* \+w in|strong="G3756"\+w* \+w what|strong="G4169"\+w* hour \+w your|strong="G2962"\+w* \+w Lord|strong="G2962"\+w* \+w comes|strong="G2064"\+w*. \wj* +\v 43 \wj \+w But|strong="G1161"\+w* \+w know|strong="G1492"\+w* \+w this|strong="G3588"\+w*, \+w that|strong="G3754"\+w* \+w if|strong="G1487"\+w* \+w the|strong="G2532"\+w* master \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w house|strong="G3614"\+w* \+w had|strong="G2532"\+w* \+w known|strong="G1097"\+w* \+w in|strong="G2532"\+w* \+w what|strong="G4169"\+w* \+w watch|strong="G1127"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w night|strong="G5438"\+w* \+w the|strong="G2532"\+w* \+w thief|strong="G2812"\+w* \+w was|strong="G3588"\+w* \+w coming|strong="G2064"\+w*, \+w he|strong="G2532"\+w* \+w would|strong="G1439"\+w* \+w have|strong="G2532"\+w* watched, \+w and|strong="G2532"\+w* \+w would|strong="G1439"\+w* \+w not|strong="G3756"\+w* \+w have|strong="G2532"\+w* \+w allowed|strong="G1439"\+w* \+w his|strong="G2532"\+w* \+w house|strong="G3614"\+w* \+w to|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w broken|strong="G1358"\+w* \+w into|strong="G2064"\+w*. \wj* +\v 44 \wj \+w Therefore|strong="G1223"\+w* \+w also|strong="G2532"\+w* \+w be|strong="G1096"\+w* \+w ready|strong="G2092"\+w*, \+w for|strong="G3754"\+w* \+w in|strong="G2532"\+w* \+w an|strong="G2532"\+w* \+w hour|strong="G5610"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* \+w expect|strong="G1380"\+w*, \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3778"\+w* \+w will|strong="G2532"\+w* \+w come|strong="G2064"\+w*.\wj* +\p +\v 45 \wj “\+w Who|strong="G3739"\+w* \+w then|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G1722"\+w* \+w faithful|strong="G4103"\+w* \+w and|strong="G2532"\+w* \+w wise|strong="G5429"\+w* \+w servant|strong="G1401"\+w*, \+w whom|strong="G3739"\+w* \+w his|strong="G1909"\+w* \+w lord|strong="G2962"\+w* \+w has|strong="G2962"\+w* \+w set|strong="G2525"\+w* \+w over|strong="G1909"\+w* \+w his|strong="G1909"\+w* \+w household|strong="G3610"\+w*, \+w to|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w them|strong="G3588"\+w* \+w their|strong="G2532"\+w* \+w food|strong="G5160"\+w* \+w in|strong="G1722"\+w* \+w due|strong="G1722"\+w* \+w season|strong="G2540"\+w*? \wj* +\v 46 \wj \+w Blessed|strong="G3107"\+w* \+w is|strong="G3588"\+w* \+w that|strong="G3739"\+w* \+w servant|strong="G1401"\+w* \+w whom|strong="G3739"\+w* \+w his|strong="G4160"\+w* \+w lord|strong="G2962"\+w* \+w finds|strong="G2147"\+w* \+w doing|strong="G4160"\+w* \+w so|strong="G3779"\+w* \+w when|strong="G2064"\+w* \+w he|strong="G3739"\+w* \+w comes|strong="G2064"\+w*. \wj* +\v 47 \wj Most \+w certainly|strong="G1909"\+w* \+w I|strong="G3754"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w he|strong="G3754"\+w* \+w will|strong="G3956"\+w* \+w set|strong="G2525"\+w* \+w him|strong="G3588"\+w* \+w over|strong="G1909"\+w* \+w all|strong="G3956"\+w* \+w that|strong="G3754"\+w* \+w he|strong="G3754"\+w* \+w has|strong="G3748"\+w*. \wj* +\v 48 \wj \+w But|strong="G1161"\+w* \+w if|strong="G1437"\+w* \+w that|strong="G3588"\+w* \+w evil|strong="G2556"\+w* \+w servant|strong="G1401"\+w* \+w should|strong="G3588"\+w* \+w say|strong="G3004"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G1722"\+w* \+w heart|strong="G2588"\+w*, ‘\+w My|strong="G1722"\+w* \+w lord|strong="G2962"\+w* \+w is|strong="G3588"\+w* \+w delaying|strong="G5549"\+w* \+w his|strong="G1722"\+w* \+w coming|strong="G5549"\+w*,’ \wj* +\v 49 \wj \+w and|strong="G2532"\+w* begins \+w to|strong="G2532"\+w* \+w beat|strong="G5180"\+w* \+w his|strong="G2532"\+w* \+w fellow|strong="G4889"\+w* \+w servants|strong="G4889"\+w*, \+w and|strong="G2532"\+w* \+w eat|strong="G2068"\+w* \+w and|strong="G2532"\+w* \+w drink|strong="G4095"\+w* \+w with|strong="G3326"\+w* \+w the|strong="G2532"\+w* \+w drunkards|strong="G3184"\+w*, \wj* +\v 50 \wj \+w the|strong="G1722"\+w* \+w lord|strong="G2962"\+w* \+w of|strong="G2250"\+w* \+w that|strong="G3739"\+w* \+w servant|strong="G1401"\+w* \+w will|strong="G2532"\+w* \+w come|strong="G2240"\+w* \+w in|strong="G1722"\+w* \+w a|strong="G2532"\+w* \+w day|strong="G2250"\+w* \+w when|strong="G2532"\+w* \+w he|strong="G2532"\+w* doesn’\+w t|strong="G3588"\+w* \+w expect|strong="G4328"\+w* \+w it|strong="G2532"\+w* \+w and|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w an|strong="G2532"\+w* \+w hour|strong="G5610"\+w* \+w when|strong="G2532"\+w* \+w he|strong="G2532"\+w* doesn’\+w t|strong="G3588"\+w* \+w know|strong="G1097"\+w* \+w it|strong="G2532"\+w*, \wj* +\v 51 \wj \+w and|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w cut|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w in|strong="G2532"\+w* \+w pieces|strong="G1371"\+w* \+w and|strong="G2532"\+w* \+w appoint|strong="G5087"\+w* \+w his|strong="G2532"\+w* \+w portion|strong="G3313"\+w* \+w with|strong="G3326"\+w* \+w the|strong="G2532"\+w* \+w hypocrites|strong="G5273"\+w*. \+w That|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w where|strong="G5087"\+w* \+w the|strong="G2532"\+w* \+w weeping|strong="G2805"\+w* \+w and|strong="G2532"\+w* grinding \+w of|strong="G2532"\+w* \+w teeth|strong="G3599"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w*. \wj* +\c 25 +\p +\v 1 \wj “\+w Then|strong="G5119"\+w* \+w the|strong="G1519"\+w* Kingdom \+w of|strong="G3588"\+w* \+w Heaven|strong="G3772"\+w* \+w will|strong="G3748"\+w* \+w be|strong="G1519"\+w* \+w like|strong="G3666"\+w* \+w ten|strong="G1176"\+w* \+w virgins|strong="G3933"\+w* \+w who|strong="G3588"\+w* \+w took|strong="G2983"\+w* \+w their|strong="G1438"\+w* \+w lamps|strong="G2985"\+w* \+w and|strong="G3772"\+w* \+w went|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w to|strong="G1519"\+w* \+w meet|strong="G5222"\+w* \+w the|strong="G1519"\+w* \+w bridegroom|strong="G3566"\+w*. \wj* +\v 2 \wj \+w Five|strong="G4002"\+w* \+w of|strong="G1537"\+w* \+w them|strong="G2532"\+w* \+w were|strong="G1510"\+w* \+w foolish|strong="G3474"\+w*, \+w and|strong="G2532"\+w* \+w five|strong="G4002"\+w* \+w were|strong="G1510"\+w* \+w wise|strong="G5429"\+w*. \wj* +\v 3 \wj \+w Those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w were|strong="G3588"\+w* \+w foolish|strong="G3474"\+w*, \+w when|strong="G3326"\+w* \+w they|strong="G3588"\+w* \+w took|strong="G2983"\+w* \+w their|strong="G1438"\+w* \+w lamps|strong="G2985"\+w*, \+w took|strong="G2983"\+w* \+w no|strong="G3756"\+w* \+w oil|strong="G1637"\+w* \+w with|strong="G3326"\+w* \+w them|strong="G3588"\+w*, \wj* +\v 4 \wj \+w but|strong="G1161"\+w* \+w the|strong="G1722"\+w* \+w wise|strong="G5429"\+w* \+w took|strong="G2983"\+w* \+w oil|strong="G1637"\+w* \+w in|strong="G1722"\+w* \+w their|strong="G1438"\+w* vessels \+w with|strong="G3326"\+w* \+w their|strong="G1438"\+w* \+w lamps|strong="G2985"\+w*. \wj* +\v 5 \wj \+w Now|strong="G1161"\+w* \+w while|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w bridegroom|strong="G3566"\+w* delayed, \+w they|strong="G2532"\+w* \+w all|strong="G3956"\+w* \+w slumbered|strong="G3573"\+w* \+w and|strong="G2532"\+w* \+w slept|strong="G2518"\+w*. \wj* +\v 6 \wj \+w But|strong="G1161"\+w* \+w at|strong="G1519"\+w* \+w midnight|strong="G3319"\+w* \+w there|strong="G1161"\+w* \+w was|strong="G1096"\+w* \+w a|strong="G1096"\+w* \+w cry|strong="G2906"\+w*, ‘\+w Behold|strong="G2400"\+w*! \+w The|strong="G1519"\+w* \+w bridegroom|strong="G3566"\+w* \+w is|strong="G3588"\+w* \+w coming|strong="G1831"\+w*! \+w Come|strong="G1096"\+w* \+w out|strong="G1831"\+w* \+w to|strong="G1519"\+w* \+w meet|strong="G3588"\+w* \+w him|strong="G3588"\+w*!’ \wj* +\v 7 \wj \+w Then|strong="G2532"\+w* \+w all|strong="G3956"\+w* \+w those|strong="G3588"\+w* \+w virgins|strong="G3933"\+w* \+w arose|strong="G1453"\+w*, \+w and|strong="G2532"\+w* \+w trimmed|strong="G2885"\+w* \+w their|strong="G1438"\+w* \+w lamps|strong="G2985"\+w*.\wj*\f + \fr 25:7 \ft The end of the wick of an oil lamp needs to be cut off periodically to avoid having it become clogged with carbon deposits. The wick height is also adjusted so that the flame burns evenly and gives good light without producing a lot of smoke.\f* +\v 8 \wj \+w The|strong="G1537"\+w* \+w foolish|strong="G3474"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G3004"\+w* \+w the|strong="G1537"\+w* \+w wise|strong="G5429"\+w*, ‘\+w Give|strong="G1325"\+w* \+w us|strong="G1325"\+w* \+w some|strong="G3588"\+w* \+w of|strong="G1537"\+w* \+w your|strong="G1325"\+w* \+w oil|strong="G1637"\+w*, \+w for|strong="G3754"\+w* \+w our|strong="G1537"\+w* \+w lamps|strong="G2985"\+w* \+w are|strong="G3588"\+w* \+w going|strong="G4570"\+w* \+w out|strong="G1537"\+w*.’ \wj* +\v 9 \wj \+w But|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w wise|strong="G5429"\+w* \+w answered|strong="G3004"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w What|strong="G3588"\+w* \+w if|strong="G2532"\+w* \+w there|strong="G2532"\+w* isn’\+w t|strong="G3588"\+w* enough \+w for|strong="G4314"\+w* \+w us|strong="G3004"\+w* \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w*? \+w You|strong="G5210"\+w* \+w go|strong="G4198"\+w* \+w rather|strong="G3123"\+w* \+w to|strong="G4314"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w sell|strong="G4453"\+w*, \+w and|strong="G2532"\+w* buy \+w for|strong="G4314"\+w* \+w yourselves|strong="G1438"\+w*.’ \wj* +\v 10 \wj \+w While|strong="G1161"\+w* \+w they|strong="G2532"\+w* \+w went|strong="G2064"\+w* \+w away|strong="G3326"\+w* \+w to|strong="G1519"\+w* buy, \+w the|strong="G2532"\+w* \+w bridegroom|strong="G3566"\+w* \+w came|strong="G2064"\+w*, \+w and|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w were|strong="G3588"\+w* \+w ready|strong="G2092"\+w* \+w went|strong="G2064"\+w* \+w in|strong="G1519"\+w* \+w with|strong="G3326"\+w* \+w him|strong="G3588"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w wedding|strong="G1062"\+w* \+w feast|strong="G1062"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w door|strong="G2374"\+w* \+w was|strong="G3588"\+w* \+w shut|strong="G2808"\+w*. \wj* +\v 11 \wj \+w Afterward|strong="G5305"\+w* \+w the|strong="G2532"\+w* \+w other|strong="G3062"\+w* \+w virgins|strong="G3933"\+w* \+w also|strong="G2532"\+w* \+w came|strong="G2064"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w Lord|strong="G2962"\+w*, \+w Lord|strong="G2962"\+w*, open \+w to|strong="G2532"\+w* \+w us|strong="G3004"\+w*.’ \wj* +\v 12 \wj \+w But|strong="G1161"\+w* \+w he|strong="G1161"\+w* \+w answered|strong="G3004"\+w*, ‘Most \+w certainly|strong="G3756"\+w* \+w I|strong="G1161"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w I|strong="G1161"\+w* don’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w* \+w you|strong="G5210"\+w*.’ \wj* +\v 13 \wj \+w Watch|strong="G1127"\+w* \+w therefore|strong="G3767"\+w*, \+w for|strong="G3754"\+w* \+w you|strong="G3754"\+w* don’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w* \+w the|strong="G3588"\+w* \+w day|strong="G2250"\+w* \+w nor|strong="G3761"\+w* \+w the|strong="G3588"\+w* \+w hour|strong="G5610"\+w* \+w in|strong="G3756"\+w* \+w which|strong="G3588"\+w* \+w the|strong="G3588"\+w* Son \+w of|strong="G2250"\+w* \+w Man|strong="G3756"\+w* \+w is|strong="G3588"\+w* coming.\wj* +\p +\v 14 \wj “\+w For|strong="G1063"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w like|strong="G5618"\+w* \+w a|strong="G2532"\+w* man \+w going|strong="G2532"\+w* \+w into|strong="G3860"\+w* \+w another|strong="G3588"\+w* country, \+w who|strong="G3588"\+w* \+w called|strong="G2564"\+w* \+w his|strong="G2398"\+w* \+w own|strong="G2398"\+w* \+w servants|strong="G1401"\+w* \+w and|strong="G2532"\+w* \+w entrusted|strong="G3860"\+w* \+w his|strong="G2398"\+w* goods \+w to|strong="G2532"\+w* \+w them|strong="G3588"\+w*. \wj* +\v 15 \wj \+w To|strong="G2532"\+w* \+w one|strong="G1520"\+w* \+w he|strong="G2532"\+w* \+w gave|strong="G1325"\+w* \+w five|strong="G4002"\+w* \+w talents|strong="G5007"\+w*,\wj*\f + \fr 25:15 \ft A talent is about 30 kilograms or 66 pounds (usually used to weigh silver unless otherwise specified)\f* \wj \+w to|strong="G2532"\+w* \+w another|strong="G3739"\+w* \+w two|strong="G1417"\+w*, \+w to|strong="G2532"\+w* \+w another|strong="G3739"\+w* \+w one|strong="G1520"\+w*, \+w to|strong="G2532"\+w* \+w each|strong="G1538"\+w* \+w according|strong="G2596"\+w* \+w to|strong="G2532"\+w* \+w his|strong="G2398"\+w* \+w own|strong="G2398"\+w* \+w ability|strong="G1411"\+w*. \+w Then|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w went|strong="G2532"\+w* \+w on|strong="G2596"\+w* \+w his|strong="G2398"\+w* journey. \wj* +\v 16 \wj Immediately \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w received|strong="G2983"\+w* \+w the|strong="G1722"\+w* \+w five|strong="G4002"\+w* \+w talents|strong="G5007"\+w* \+w went|strong="G4198"\+w* \+w and|strong="G2532"\+w* \+w traded|strong="G2038"\+w* \+w with|strong="G1722"\+w* \+w them|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w made|strong="G4160"\+w* \+w another|strong="G3588"\+w* \+w five|strong="G4002"\+w* \+w talents|strong="G5007"\+w*. \wj* +\v 17 \wj \+w In|strong="G3588"\+w* \+w the|strong="G3588"\+w* \+w same|strong="G5615"\+w* \+w way|strong="G5615"\+w*, \+w he|strong="G3588"\+w* also \+w who|strong="G3588"\+w* got \+w the|strong="G3588"\+w* \+w two|strong="G1417"\+w* \+w gained|strong="G2770"\+w* \+w another|strong="G3588"\+w* \+w two|strong="G1417"\+w*. \wj* +\v 18 \wj \+w But|strong="G1161"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w received|strong="G2983"\+w* \+w the|strong="G2532"\+w* \+w one|strong="G1520"\+w* talent \+w went|strong="G2532"\+w* away \+w and|strong="G2532"\+w* \+w dug|strong="G3736"\+w* \+w in|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w earth|strong="G1093"\+w* \+w and|strong="G2532"\+w* \+w hid|strong="G2928"\+w* \+w his|strong="G2983"\+w* \+w lord|strong="G2962"\+w*’\+w s|strong="G2962"\+w* money.\wj* +\p +\v 19 \wj “\+w Now|strong="G1161"\+w* \+w after|strong="G3326"\+w* \+w a|strong="G2532"\+w* \+w long|strong="G4183"\+w* \+w time|strong="G5550"\+w* \+w the|strong="G2532"\+w* \+w lord|strong="G2962"\+w* \+w of|strong="G3056"\+w* \+w those|strong="G3588"\+w* \+w servants|strong="G1401"\+w* \+w came|strong="G2064"\+w*, \+w and|strong="G2532"\+w* \+w settled|strong="G4868"\+w* \+w accounts|strong="G3056"\+w* \+w with|strong="G3326"\+w* \+w them|strong="G3588"\+w*. \wj* +\v 20 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w received|strong="G2983"\+w* \+w the|strong="G2532"\+w* \+w five|strong="G4002"\+w* \+w talents|strong="G5007"\+w* \+w came|strong="G4334"\+w* \+w and|strong="G2532"\+w* \+w brought|strong="G4374"\+w* \+w another|strong="G3588"\+w* \+w five|strong="G4002"\+w* \+w talents|strong="G5007"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w Lord|strong="G2962"\+w*, \+w you|strong="G3004"\+w* \+w delivered|strong="G3860"\+w* \+w to|strong="G2532"\+w* \+w me|strong="G1473"\+w* \+w five|strong="G4002"\+w* \+w talents|strong="G5007"\+w*. \+w Behold|strong="G2396"\+w*, \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w gained|strong="G2770"\+w* \+w another|strong="G3588"\+w* \+w five|strong="G4002"\+w* \+w talents|strong="G5007"\+w* \+w in|strong="G2532"\+w* addition \+w to|strong="G2532"\+w* \+w them|strong="G3588"\+w*.’\wj* +\p +\v 21 \wj “\+w His|strong="G1519"\+w* \+w lord|strong="G2962"\+w* \+w said|strong="G5346"\+w* \+w to|strong="G1519"\+w* \+w him|strong="G3588"\+w*, ‘\+w Well|strong="G2532"\+w* \+w done|strong="G2095"\+w*, \+w good|strong="G2095"\+w* \+w and|strong="G2532"\+w* \+w faithful|strong="G4103"\+w* \+w servant|strong="G1401"\+w*. \+w You|strong="G4771"\+w* \+w have|strong="G2532"\+w* \+w been|strong="G1510"\+w* \+w faithful|strong="G4103"\+w* \+w over|strong="G1909"\+w* \+w a|strong="G2532"\+w* \+w few|strong="G3641"\+w* \+w things|strong="G3588"\+w*, \+w I|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w set|strong="G2525"\+w* \+w you|strong="G4771"\+w* \+w over|strong="G1909"\+w* \+w many|strong="G4183"\+w* \+w things|strong="G3588"\+w*. \+w Enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w joy|strong="G5479"\+w* \+w of|strong="G2532"\+w* \+w your|strong="G2962"\+w* \+w lord|strong="G2962"\+w*.’\wj* +\p +\v 22 \wj “\+w He|strong="G2532"\+w* \+w also|strong="G2532"\+w* \+w who|strong="G3588"\+w* got \+w the|strong="G2532"\+w* \+w two|strong="G1417"\+w* \+w talents|strong="G5007"\+w* \+w came|strong="G4334"\+w* \+w and|strong="G2532"\+w* \+w said|strong="G3004"\+w*, ‘\+w Lord|strong="G2962"\+w*, \+w you|strong="G3004"\+w* \+w delivered|strong="G3860"\+w* \+w to|strong="G2532"\+w* \+w me|strong="G1473"\+w* \+w two|strong="G1417"\+w* \+w talents|strong="G5007"\+w*. \+w Behold|strong="G2396"\+w*, \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w gained|strong="G2770"\+w* \+w another|strong="G3588"\+w* \+w two|strong="G1417"\+w* \+w talents|strong="G5007"\+w* \+w in|strong="G2532"\+w* addition \+w to|strong="G2532"\+w* \+w them|strong="G3588"\+w*.’ \wj* +\p +\v 23 \wj “\+w His|strong="G1519"\+w* \+w lord|strong="G2962"\+w* \+w said|strong="G5346"\+w* \+w to|strong="G1519"\+w* \+w him|strong="G3588"\+w*, ‘\+w Well|strong="G2532"\+w* \+w done|strong="G2095"\+w*, \+w good|strong="G2095"\+w* \+w and|strong="G2532"\+w* \+w faithful|strong="G4103"\+w* \+w servant|strong="G1401"\+w*. \+w You|strong="G4771"\+w* \+w have|strong="G2532"\+w* \+w been|strong="G1510"\+w* \+w faithful|strong="G4103"\+w* \+w over|strong="G1909"\+w* \+w a|strong="G2532"\+w* \+w few|strong="G3641"\+w* \+w things|strong="G3588"\+w*. \+w I|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w set|strong="G2525"\+w* \+w you|strong="G4771"\+w* \+w over|strong="G1909"\+w* \+w many|strong="G4183"\+w* \+w things|strong="G3588"\+w*. \+w Enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w joy|strong="G5479"\+w* \+w of|strong="G2532"\+w* \+w your|strong="G2962"\+w* \+w lord|strong="G2962"\+w*.’\wj* +\p +\v 24 \wj “\+w He|strong="G2532"\+w* \+w also|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w had|strong="G2532"\+w* \+w received|strong="G2983"\+w* \+w the|strong="G2532"\+w* \+w one|strong="G1520"\+w* \+w talent|strong="G5007"\+w* \+w came|strong="G4334"\+w* \+w and|strong="G2532"\+w* \+w said|strong="G3004"\+w*, ‘\+w Lord|strong="G2962"\+w*, \+w I|strong="G2532"\+w* \+w knew|strong="G1097"\+w* \+w you|strong="G4771"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w are|strong="G1510"\+w* \+w a|strong="G2532"\+w* \+w hard|strong="G4642"\+w* \+w man|strong="G1520"\+w*, \+w reaping|strong="G2325"\+w* \+w where|strong="G3699"\+w* \+w you|strong="G4771"\+w* didn’\+w t|strong="G3588"\+w* \+w sow|strong="G4687"\+w*, \+w and|strong="G2532"\+w* \+w gathering|strong="G4863"\+w* \+w where|strong="G3699"\+w* \+w you|strong="G4771"\+w* didn’\+w t|strong="G3588"\+w* \+w scatter|strong="G1287"\+w*. \wj* +\v 25 \wj \+w I|strong="G2532"\+w* \+w was|strong="G3588"\+w* \+w afraid|strong="G5399"\+w*, \+w and|strong="G2532"\+w* \+w went|strong="G2532"\+w* away \+w and|strong="G2532"\+w* \+w hid|strong="G2928"\+w* \+w your|strong="G4674"\+w* \+w talent|strong="G5007"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w earth|strong="G1093"\+w*. \+w Behold|strong="G2396"\+w*, \+w you|strong="G4771"\+w* \+w have|strong="G2192"\+w* \+w what|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w yours|strong="G4771"\+w*.’\wj* +\p +\v 26 \wj “\+w But|strong="G1161"\+w* \+w his|strong="G2532"\+w* \+w lord|strong="G2962"\+w* \+w answered|strong="G3004"\+w* \+w him|strong="G3588"\+w*, ‘\+w You|strong="G3754"\+w* \+w wicked|strong="G4190"\+w* \+w and|strong="G2532"\+w* \+w slothful|strong="G3636"\+w* \+w servant|strong="G1401"\+w*. \+w You|strong="G3754"\+w* \+w knew|strong="G1492"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G2532"\+w* \+w reap|strong="G2325"\+w* \+w where|strong="G3699"\+w* \+w I|strong="G2532"\+w* didn’\+w t|strong="G3588"\+w* \+w sow|strong="G4687"\+w*, \+w and|strong="G2532"\+w* \+w gather|strong="G4863"\+w* \+w where|strong="G3699"\+w* \+w I|strong="G2532"\+w* didn’\+w t|strong="G3588"\+w* \+w scatter|strong="G1287"\+w*. \wj* +\v 27 \wj \+w You|strong="G4771"\+w* \+w ought|strong="G1163"\+w* \+w therefore|strong="G3767"\+w* \+w to|strong="G2532"\+w* \+w have|strong="G2532"\+w* deposited \+w my|strong="G1699"\+w* money \+w with|strong="G4862"\+w* \+w the|strong="G2532"\+w* bankers, \+w and|strong="G2532"\+w* \+w at|strong="G3588"\+w* \+w my|strong="G1699"\+w* \+w coming|strong="G2064"\+w* \+w I|strong="G1473"\+w* \+w should|strong="G1163"\+w* \+w have|strong="G2532"\+w* \+w received|strong="G2865"\+w* \+w back|strong="G2865"\+w* \+w my|strong="G1699"\+w* \+w own|strong="G1699"\+w* \+w with|strong="G4862"\+w* \+w interest|strong="G5110"\+w*. \wj* +\v 28 \wj \+w Take|strong="G2532"\+w* away \+w therefore|strong="G3767"\+w* \+w the|strong="G2532"\+w* \+w talent|strong="G5007"\+w* \+w from|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w it|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w has|strong="G2192"\+w* \+w the|strong="G2532"\+w* \+w ten|strong="G1176"\+w* \+w talents|strong="G5007"\+w*. \wj* +\v 29 \wj \+w For|strong="G1063"\+w* \+w to|strong="G2532"\+w* \+w everyone|strong="G3956"\+w* \+w who|strong="G3739"\+w* \+w has|strong="G2192"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w given|strong="G1325"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w abundance|strong="G4052"\+w*, \+w but|strong="G1161"\+w* \+w from|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3739"\+w* doesn’\+w t|strong="G3588"\+w* \+w have|strong="G2192"\+w*, \+w even|strong="G2532"\+w* \+w that|strong="G3739"\+w* \+w which|strong="G3739"\+w* \+w he|strong="G2532"\+w* \+w has|strong="G2192"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* taken away. \wj* +\v 30 \wj \+w Throw|strong="G1544"\+w* \+w out|strong="G1544"\+w* \+w the|strong="G2532"\+w* unprofitable \+w servant|strong="G1401"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w outer|strong="G1857"\+w* \+w darkness|strong="G4655"\+w*, \+w where|strong="G1519"\+w* \+w there|strong="G1563"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w weeping|strong="G2805"\+w* \+w and|strong="G2532"\+w* \+w gnashing|strong="G1030"\+w* \+w of|strong="G2532"\+w* \+w teeth|strong="G3599"\+w*.’\wj* +\p +\v 31 \wj “\+w But|strong="G1161"\+w* \+w when|strong="G3752"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3956"\+w* \+w comes|strong="G2064"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G3956"\+w* \+w glory|strong="G1391"\+w*, \+w and|strong="G2532"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G1722"\+w* holy angels \+w with|strong="G3326"\+w* \+w him|strong="G3588"\+w*, \+w then|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w sit|strong="G2523"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G1722"\+w* \+w throne|strong="G2362"\+w* \+w of|strong="G5207"\+w* \+w his|strong="G3956"\+w* \+w glory|strong="G1391"\+w*. \wj* +\v 32 \wj \+w Before|strong="G1715"\+w* \+w him|strong="G3588"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G2532"\+w* \+w nations|strong="G1484"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w gathered|strong="G4863"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* separate \+w them|strong="G3588"\+w* \+w one|strong="G3956"\+w* \+w from|strong="G2532"\+w* \+w another|strong="G1438"\+w*, \+w as|strong="G5618"\+w* \+w a|strong="G2532"\+w* \+w shepherd|strong="G4166"\+w* separates \+w the|strong="G2532"\+w* \+w sheep|strong="G4263"\+w* \+w from|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w goats|strong="G2056"\+w*. \wj* +\v 33 \wj \+w He|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w set|strong="G2476"\+w* \+w the|strong="G2532"\+w* \+w sheep|strong="G4263"\+w* \+w on|strong="G1537"\+w* \+w his|strong="G2532"\+w* \+w right|strong="G1188"\+w* \+w hand|strong="G1188"\+w*, \+w but|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w goats|strong="G2055"\+w* \+w on|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w left|strong="G2176"\+w*. \wj* +\v 34 \wj \+w Then|strong="G5119"\+w* \+w the|strong="G1537"\+w* \+w King|strong="G3588"\+w* \+w will|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w those|strong="G3588"\+w* \+w on|strong="G1537"\+w* \+w his|strong="G3588"\+w* \+w right|strong="G1188"\+w* \+w hand|strong="G1188"\+w*, ‘\+w Come|strong="G1205"\+w*, \+w blessed|strong="G2127"\+w* \+w of|strong="G1537"\+w* \+w my|strong="G1473"\+w* \+w Father|strong="G3962"\+w*, \+w inherit|strong="G2816"\+w* \+w the|strong="G1537"\+w* Kingdom \+w prepared|strong="G2090"\+w* \+w for|strong="G2090"\+w* \+w you|strong="G5210"\+w* \+w from|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w foundation|strong="G2602"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w world|strong="G2889"\+w*; \wj* +\v 35 \wj \+w for|strong="G1063"\+w* \+w I|strong="G1473"\+w* \+w was|strong="G1510"\+w* \+w hungry|strong="G3983"\+w* \+w and|strong="G2532"\+w* \+w you|strong="G1325"\+w* \+w gave|strong="G1325"\+w* \+w me|strong="G1325"\+w* \+w food|strong="G5315"\+w* \+w to|strong="G2532"\+w* \+w eat|strong="G2068"\+w*. \+w I|strong="G1473"\+w* \+w was|strong="G1510"\+w* \+w thirsty|strong="G1372"\+w* \+w and|strong="G2532"\+w* \+w you|strong="G1325"\+w* \+w gave|strong="G1325"\+w* \+w me|strong="G1325"\+w* \+w drink|strong="G4222"\+w*. \+w I|strong="G1473"\+w* \+w was|strong="G1510"\+w* \+w a|strong="G2532"\+w* \+w stranger|strong="G3581"\+w* \+w and|strong="G2532"\+w* \+w you|strong="G1325"\+w* \+w took|strong="G2532"\+w* \+w me|strong="G1325"\+w* \+w in|strong="G2532"\+w*. \wj* +\v 36 \wj \+w I|strong="G1473"\+w* \+w was|strong="G1510"\+w* \+w naked|strong="G1131"\+w* \+w and|strong="G2532"\+w* \+w you|strong="G1722"\+w* \+w clothed|strong="G4016"\+w* \+w me|strong="G1473"\+w*. \+w I|strong="G1473"\+w* \+w was|strong="G1510"\+w* sick \+w and|strong="G2532"\+w* \+w you|strong="G1722"\+w* \+w visited|strong="G1980"\+w* \+w me|strong="G1473"\+w*. \+w I|strong="G1473"\+w* \+w was|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w prison|strong="G5438"\+w* \+w and|strong="G2532"\+w* \+w you|strong="G1722"\+w* \+w came|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w me|strong="G1473"\+w*.’\wj* +\p +\v 37 \wj “\+w Then|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w righteous|strong="G1342"\+w* \+w will|strong="G2532"\+w* answer \+w him|strong="G3588"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w Lord|strong="G2962"\+w*, \+w when|strong="G2532"\+w* \+w did|strong="G2532"\+w* \+w we|strong="G2532"\+w* \+w see|strong="G3708"\+w* \+w you|strong="G4771"\+w* \+w hungry|strong="G3983"\+w* \+w and|strong="G2532"\+w* \+w feed|strong="G5142"\+w* \+w you|strong="G4771"\+w*, \+w or|strong="G2228"\+w* \+w thirsty|strong="G1372"\+w* \+w and|strong="G2532"\+w* \+w give|strong="G4222"\+w* \+w you|strong="G4771"\+w* \+w a|strong="G2532"\+w* \+w drink|strong="G4222"\+w*? \wj* +\v 38 \wj \+w When|strong="G1161"\+w* \+w did|strong="G2532"\+w* \+w we|strong="G2532"\+w* \+w see|strong="G3708"\+w* \+w you|strong="G4771"\+w* \+w as|strong="G1161"\+w* \+w a|strong="G2532"\+w* \+w stranger|strong="G3581"\+w* \+w and|strong="G2532"\+w* \+w take|strong="G1161"\+w* \+w you|strong="G4771"\+w* \+w in|strong="G2532"\+w*, \+w or|strong="G2228"\+w* \+w naked|strong="G1131"\+w* \+w and|strong="G2532"\+w* \+w clothe|strong="G4016"\+w* \+w you|strong="G4771"\+w*? \wj* +\v 39 \wj \+w When|strong="G1161"\+w* \+w did|strong="G2532"\+w* \+w we|strong="G2532"\+w* \+w see|strong="G3708"\+w* \+w you|strong="G4771"\+w* sick \+w or|strong="G2228"\+w* \+w in|strong="G1722"\+w* \+w prison|strong="G5438"\+w* \+w and|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w you|strong="G4771"\+w*?’\wj* +\p +\v 40 \wj “\+w The|strong="G2532"\+w* \+w King|strong="G3588"\+w* \+w will|strong="G2532"\+w* answer \+w them|strong="G3588"\+w*, ‘Most \+w certainly|strong="G1909"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w because|strong="G1909"\+w* \+w you|strong="G5210"\+w* \+w did|strong="G4160"\+w* \+w it|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w least|strong="G1646"\+w* \+w of|strong="G2532"\+w* \+w these|strong="G3778"\+w* \+w my|strong="G1473"\+w* brothers,\wj*\f + \fr 25:40 \ft The word for “brothers” here may be also correctly translated “brothers and sisters” or “siblings.”\f* \wj \+w you|strong="G5210"\+w* \+w did|strong="G4160"\+w* \+w it|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w me|strong="G1473"\+w*.’ \wj* +\v 41 \wj \+w Then|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w say|strong="G3004"\+w* \+w also|strong="G2532"\+w* \+w to|strong="G1519"\+w* \+w those|strong="G3588"\+w* \+w on|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w left|strong="G2176"\+w* \+w hand|strong="G2176"\+w*, ‘\+w Depart|strong="G4198"\+w* \+w from|strong="G1537"\+w* \+w me|strong="G1473"\+w*, \+w you|strong="G3004"\+w* \+w cursed|strong="G2672"\+w*, \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* eternal \+w fire|strong="G4442"\+w* \+w which|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w prepared|strong="G2090"\+w* \+w for|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w devil|strong="G1228"\+w* \+w and|strong="G2532"\+w* \+w his|strong="G1519"\+w* angels; \wj* +\v 42 \wj \+w for|strong="G1063"\+w* \+w I|strong="G1473"\+w* \+w was|strong="G2532"\+w* \+w hungry|strong="G3983"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G1325"\+w* didn’t \+w give|strong="G1325"\+w* \+w me|strong="G1325"\+w* \+w food|strong="G5315"\+w* \+w to|strong="G2532"\+w* \+w eat|strong="G2068"\+w*; \+w I|strong="G1473"\+w* \+w was|strong="G2532"\+w* \+w thirsty|strong="G1372"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G1325"\+w* \+w gave|strong="G1325"\+w* \+w me|strong="G1325"\+w* \+w no|strong="G3756"\+w* \+w drink|strong="G4222"\+w*; \wj* +\v 43 \wj \+w I|strong="G1473"\+w* \+w was|strong="G1510"\+w* \+w a|strong="G2532"\+w* \+w stranger|strong="G3581"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G1722"\+w* didn’t \+w take|strong="G2532"\+w* \+w me|strong="G1473"\+w* \+w in|strong="G1722"\+w*; \+w naked|strong="G1131"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G1722"\+w* didn’t \+w clothe|strong="G4016"\+w* \+w me|strong="G1473"\+w*; sick, \+w and|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w prison|strong="G5438"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G1722"\+w* didn’t \+w visit|strong="G1980"\+w* \+w me|strong="G1473"\+w*.’\wj* +\p +\v 44 \wj “\+w Then|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w also|strong="G2532"\+w* answer, \+w saying|strong="G3004"\+w*, ‘\+w Lord|strong="G2962"\+w*, \+w when|strong="G2532"\+w* \+w did|strong="G2532"\+w* \+w we|strong="G2532"\+w* \+w see|strong="G3708"\+w* \+w you|strong="G4771"\+w* \+w hungry|strong="G3983"\+w*, \+w or|strong="G2228"\+w* \+w thirsty|strong="G1372"\+w*, \+w or|strong="G2228"\+w* \+w a|strong="G2532"\+w* \+w stranger|strong="G3581"\+w*, \+w or|strong="G2228"\+w* \+w naked|strong="G1131"\+w*, \+w or|strong="G2228"\+w* sick, \+w or|strong="G2228"\+w* \+w in|strong="G1722"\+w* \+w prison|strong="G5438"\+w*, \+w and|strong="G2532"\+w* didn’t help \+w you|strong="G4771"\+w*?’\wj* +\p +\v 45 \wj “\+w Then|strong="G5119"\+w* \+w he|strong="G3778"\+w* \+w will|strong="G1473"\+w* answer \+w them|strong="G3588"\+w*, \+w saying|strong="G3004"\+w*, ‘Most \+w certainly|strong="G1909"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w because|strong="G1909"\+w* \+w you|strong="G5210"\+w* didn’\+w t|strong="G3588"\+w* \+w do|strong="G4160"\+w* \+w it|strong="G3778"\+w* \+w to|strong="G1909"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G1909"\+w* \+w the|strong="G1909"\+w* \+w least|strong="G1646"\+w* \+w of|strong="G1909"\+w* \+w these|strong="G3778"\+w*, \+w you|strong="G5210"\+w* didn’\+w t|strong="G3588"\+w* \+w do|strong="G4160"\+w* \+w it|strong="G3778"\+w* \+w to|strong="G1909"\+w* \+w me|strong="G1473"\+w*.’ \wj* +\v 46 \wj \+w These|strong="G3778"\+w* \+w will|strong="G2532"\+w* \+w go|strong="G1519"\+w* away \+w into|strong="G1519"\+w* eternal \+w punishment|strong="G2851"\+w*, \+w but|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w righteous|strong="G1342"\+w* \+w into|strong="G1519"\+w* eternal \+w life|strong="G2222"\+w*.”\wj* +\c 26 +\p +\v 1 \w When|strong="G3753"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* \w finished|strong="G5055"\w* \w all|strong="G3956"\w* \w these|strong="G3778"\w* \w words|strong="G3056"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w his|strong="G3956"\w* \w disciples|strong="G3101"\w*, +\v 2 \wj “\+w You|strong="G3754"\+w* \+w know|strong="G1492"\+w* \+w that|strong="G3754"\+w* \+w after|strong="G3326"\+w* \+w two|strong="G1417"\+w* \+w days|strong="G2250"\+w* \+w the|strong="G2532"\+w* \+w Passover|strong="G3957"\+w* \+w is|strong="G3588"\+w* \+w coming|strong="G1096"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G1519"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G1096"\+w* \+w delivered|strong="G3860"\+w* \+w up|strong="G3860"\+w* \+w to|strong="G1519"\+w* \+w be|strong="G1096"\+w* \+w crucified|strong="G4717"\+w*.”\wj* +\p +\v 3 \w Then|strong="G2532"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests, \w the|strong="G2532"\w* scribes, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w* \w were|strong="G3588"\w* \w gathered|strong="G4863"\w* \w together|strong="G4863"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* court \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w high|strong="G2532"\w* priest, \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w called|strong="G3004"\w* \w Caiaphas|strong="G2533"\w*. +\v 4 \w They|strong="G2532"\w* \w took|strong="G2902"\w* \w counsel|strong="G4823"\w* \w together|strong="G4823"\w* \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w take|strong="G2902"\w* \w Jesus|strong="G2424"\w* \w by|strong="G2532"\w* \w deceit|strong="G1388"\w* \w and|strong="G2532"\w* kill \w him|strong="G3588"\w*. +\v 5 \w But|strong="G1161"\w* \w they|strong="G1161"\w* \w said|strong="G3004"\w*, “\w Not|strong="G3361"\w* \w during|strong="G1722"\w* \w the|strong="G1722"\w* \w feast|strong="G1859"\w*, \w lest|strong="G3361"\w* \w a|strong="G1096"\w* \w riot|strong="G2351"\w* \w occur|strong="G1096"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w*.” +\p +\v 6 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w was|strong="G1096"\w* \w in|strong="G1722"\w* Bethany, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w house|strong="G3614"\w* \w of|strong="G1722"\w* \w Simon|strong="G4613"\w* \w the|strong="G1722"\w* \w leper|strong="G3015"\w*, +\v 7 \w a|strong="G2192"\w* \w woman|strong="G1135"\w* \w came|strong="G4334"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w having|strong="G2192"\w* \w an|strong="G2192"\w* alabaster jar \w of|strong="G2532"\w* \w very|strong="G2532"\w* \w expensive|strong="G3464"\w* \w ointment|strong="G3464"\w*, \w and|strong="G2532"\w* \w she|strong="G2532"\w* \w poured|strong="G2532"\w* \w it|strong="G2532"\w* \w on|strong="G1909"\w* \w his|strong="G1909"\w* \w head|strong="G2776"\w* \w as|strong="G2532"\w* \w he|strong="G2532"\w* \w sat|strong="G2532"\w* \w at|strong="G1909"\w* \w the|strong="G2532"\w* table. +\v 8 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w saw|strong="G3708"\w* \w this|strong="G3778"\w*, \w they|strong="G1161"\w* \w were|strong="G3588"\w* indignant, \w saying|strong="G3004"\w*, “\w Why|strong="G5101"\w* \w this|strong="G3778"\w* waste? +\v 9 \w For|strong="G1063"\w* \w this|strong="G3778"\w* ointment \w might|strong="G1410"\w* \w have|strong="G2532"\w* \w been|strong="G2532"\w* \w sold|strong="G4097"\w* \w for|strong="G1063"\w* \w much|strong="G4183"\w* \w and|strong="G2532"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w poor|strong="G4434"\w*.” +\p +\v 10 \w However|strong="G1161"\w*, \w knowing|strong="G1097"\w* \w this|strong="G3588"\w*, \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Why|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G3004"\+w* \+w trouble|strong="G2873"\+w* \+w the|strong="G1519"\+w* \+w woman|strong="G1135"\+w*? \+w She|strong="G1161"\+w* \+w has|strong="G5101"\+w* \+w done|strong="G2038"\+w* \+w a|strong="G1519"\+w* \+w good|strong="G2570"\+w* \+w work|strong="G2041"\+w* \+w for|strong="G1063"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 11 \wj \+w For|strong="G1063"\+w* \+w you|strong="G1438"\+w* \+w always|strong="G3842"\+w* \+w have|strong="G2192"\+w* \+w the|strong="G1161"\+w* \+w poor|strong="G4434"\+w* \+w with|strong="G3326"\+w* \+w you|strong="G1438"\+w*, \+w but|strong="G1161"\+w* \+w you|strong="G1438"\+w* don’\+w t|strong="G3588"\+w* \+w always|strong="G3842"\+w* \+w have|strong="G2192"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 12 \wj \+w For|strong="G1063"\+w* \+w in|strong="G1909"\+w* pouring \+w this|strong="G3778"\+w* \+w ointment|strong="G3464"\+w* \+w on|strong="G1909"\+w* \+w my|strong="G1473"\+w* \+w body|strong="G4983"\+w*, \+w she|strong="G1063"\+w* \+w did|strong="G4160"\+w* \+w it|strong="G1063"\+w* \+w to|strong="G4314"\+w* \+w prepare|strong="G1779"\+w* \+w me|strong="G1473"\+w* \+w for|strong="G1063"\+w* \+w burial|strong="G1779"\+w*. \wj* +\v 13 \wj Most \+w certainly|strong="G2532"\+w* \+w I|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w wherever|strong="G3699"\+w* \+w this|strong="G3778"\+w* \+w Good|strong="G3588"\+w* \+w News|strong="G2098"\+w* \+w is|strong="G3588"\+w* \+w preached|strong="G2784"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w whole|strong="G3650"\+w* \+w world|strong="G2889"\+w*, \+w what|strong="G3739"\+w* \+w this|strong="G3778"\+w* \+w woman|strong="G3778"\+w* \+w has|strong="G3739"\+w* \+w done|strong="G4160"\+w* \+w will|strong="G2532"\+w* \+w also|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w spoken|strong="G2980"\+w* \+w of|strong="G2532"\+w* \+w as|strong="G1519"\+w* \+w a|strong="G2532"\+w* \+w memorial|strong="G3422"\+w* \+w of|strong="G2532"\+w* \+w her|strong="G1437"\+w*.”\wj* +\p +\v 14 \w Then|strong="G5119"\w* \w one|strong="G1520"\w* \w of|strong="G1520"\w* \w the|strong="G4314"\w* \w twelve|strong="G1427"\w*, \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w called|strong="G3004"\w* \w Judas|strong="G2455"\w* \w Iscariot|strong="G2469"\w*, \w went|strong="G4198"\w* \w to|strong="G4314"\w* \w the|strong="G4314"\w* chief priests +\v 15 \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w What|strong="G5101"\w* \w are|strong="G3588"\w* \w you|strong="G4771"\w* \w willing|strong="G2309"\w* \w to|strong="G2532"\w* \w give|strong="G1325"\w* \w me|strong="G1325"\w* \w if|strong="G2532"\w* \w I|strong="G1473"\w* \w deliver|strong="G3860"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w you|strong="G4771"\w*?” \w So|strong="G2532"\w* \w they|strong="G2532"\w* \w weighed|strong="G2476"\w* \w out|strong="G2532"\w* \w for|strong="G1161"\w* \w him|strong="G3588"\w* \w thirty|strong="G5144"\w* pieces \w of|strong="G2532"\w* silver. +\v 16 \w From|strong="G2532"\w* \w that|strong="G2443"\w* \w time|strong="G5119"\w* \w he|strong="G2532"\w* \w sought|strong="G2212"\w* \w opportunity|strong="G2120"\w* \w to|strong="G2443"\w* \w betray|strong="G3860"\w* \w him|strong="G2532"\w*. +\p +\v 17 \w Now|strong="G1161"\w* \w on|strong="G1161"\w* \w the|strong="G1161"\w* \w first|strong="G4413"\w* \w day|strong="G3588"\w* \w of|strong="G2424"\w* unleavened bread, \w the|strong="G1161"\w* \w disciples|strong="G3101"\w* \w came|strong="G4334"\w* \w to|strong="G3004"\w* \w Jesus|strong="G2424"\w*, \w saying|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Where|strong="G4226"\w* \w do|strong="G3004"\w* \w you|strong="G4771"\w* \w want|strong="G2309"\w* \w us|strong="G3004"\w* \w to|strong="G3004"\w* \w prepare|strong="G2090"\w* \w for|strong="G1161"\w* \w you|strong="G4771"\w* \w to|strong="G3004"\w* \w eat|strong="G2068"\w* \w the|strong="G1161"\w* \w Passover|strong="G3957"\w*?” +\p +\v 18 \w He|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Go|strong="G5217"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w city|strong="G4172"\+w* \+w to|strong="G1519"\+w* \+w a|strong="G2532"\+w* \+w certain|strong="G2532"\+w* person, \+w and|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w him|strong="G3588"\+w*, ‘\+w The|strong="G2532"\+w* \+w Teacher|strong="G1320"\+w* \+w says|strong="G3004"\+w*, “\+w My|strong="G1473"\+w* \+w time|strong="G2540"\+w* \+w is|strong="G1510"\+w* \+w at|strong="G1519"\+w* \+w hand|strong="G1451"\+w*. \+w I|strong="G1473"\+w* \+w will|strong="G1510"\+w* \+w keep|strong="G4160"\+w* \+w the|strong="G2532"\+w* \+w Passover|strong="G3957"\+w* \+w at|strong="G1519"\+w* \+w your|strong="G2532"\+w* house \+w with|strong="G3326"\+w* \+w my|strong="G1473"\+w* \+w disciples|strong="G3101"\+w*.”’”\wj* +\p +\v 19 \w The|strong="G2532"\w* \w disciples|strong="G3101"\w* \w did|strong="G4160"\w* \w as|strong="G5613"\w* \w Jesus|strong="G2424"\w* \w commanded|strong="G4929"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w prepared|strong="G2090"\w* \w the|strong="G2532"\w* \w Passover|strong="G3957"\w*. +\p +\v 20 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w evening|strong="G3798"\w* \w had|strong="G3588"\w* \w come|strong="G1096"\w*, \w he|strong="G1161"\w* \w was|strong="G1096"\w* reclining \w at|strong="G1161"\w* \w the|strong="G1161"\w* table \w with|strong="G3326"\w* \w the|strong="G1161"\w* \w twelve|strong="G1427"\w* \w disciples|strong="G3101"\w*. +\v 21 \w As|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G2532"\w* \w eating|strong="G2068"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Most|strong="G1537"\+w* \+w certainly|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G1537"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w betray|strong="G3860"\+w* \+w me|strong="G1473"\+w*.”\wj* +\p +\v 22 \w They|strong="G2532"\w* \w were|strong="G1510"\w* \w exceedingly|strong="G4970"\w* \w sorrowful|strong="G3076"\w*, \w and|strong="G2532"\w* \w each|strong="G1538"\w* began \w to|strong="G2532"\w* \w ask|strong="G3004"\w* \w him|strong="G2532"\w*, “\w It|strong="G2532"\w* isn’t \w me|strong="G1473"\w*, \w is|strong="G1510"\w* \w it|strong="G2532"\w*, \w Lord|strong="G2962"\w*?” +\p +\v 23 \w He|strong="G1161"\w* \w answered|strong="G3004"\w*, \wj “\+w He|strong="G1161"\+w* \+w who|strong="G3588"\+w* \+w dipped|strong="G1686"\+w* \+w his|strong="G1722"\+w* \+w hand|strong="G5495"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1473"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* dish \+w will|strong="G1473"\+w* \+w betray|strong="G3860"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 24 \wj \+w The|strong="G1161"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3739"\+w* \+w goes|strong="G5217"\+w* \+w even|strong="G2531"\+w* \+w as|strong="G2531"\+w* \+w it|strong="G1161"\+w* \+w is|strong="G1510"\+w* \+w written|strong="G1125"\+w* \+w of|strong="G5207"\+w* \+w him|strong="G3588"\+w*, \+w but|strong="G1161"\+w* \+w woe|strong="G3759"\+w* \+w to|strong="G3756"\+w* \+w that|strong="G3739"\+w* \+w man|strong="G3739"\+w* \+w through|strong="G1223"\+w* \+w whom|strong="G3739"\+w* \+w the|strong="G1161"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3739"\+w* \+w is|strong="G1510"\+w* \+w betrayed|strong="G3860"\+w*! \+w It|strong="G1161"\+w* \+w would|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w better|strong="G2570"\+w* \+w for|strong="G1223"\+w* \+w that|strong="G3739"\+w* \+w man|strong="G3739"\+w* \+w if|strong="G1487"\+w* \+w he|strong="G1161"\+w* \+w had|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w been|strong="G1510"\+w* \+w born|strong="G1080"\+w*.”\wj* +\p +\v 25 \w Judas|strong="G2455"\w*, \w who|strong="G3588"\w* \w betrayed|strong="G3860"\w* \w him|strong="G3588"\w*, \w answered|strong="G3004"\w*, “\w It|strong="G1161"\w* isn’\w t|strong="G3588"\w* \w me|strong="G1473"\w*, \w is|strong="G1510"\w* \w it|strong="G1161"\w*, \w Rabbi|strong="G4461"\w*?” +\p \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w You|strong="G4771"\+w* \+w said|strong="G3004"\+w* \+w it|strong="G1161"\+w*.”\wj* +\p +\v 26 \w As|strong="G1161"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w eating|strong="G2068"\w*, \w Jesus|strong="G2424"\w* \w took|strong="G2983"\w* bread, \w gave|strong="G1325"\w* thanks \w for|strong="G1161"\w*\f + \fr 26:26 \ft TR reads “blessed” instead of “gave thanks for”\f* \w it|strong="G2532"\w*, \w and|strong="G2532"\w* \w broke|strong="G2806"\w* \w it|strong="G2532"\w*. \w He|strong="G2532"\w* \w gave|strong="G1325"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Take|strong="G2983"\+w*, \+w eat|strong="G2068"\+w*; \+w this|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w my|strong="G1325"\+w* \+w body|strong="G4983"\+w*.”\wj* +\v 27 \w He|strong="G2532"\w* \w took|strong="G2983"\w* \w the|strong="G2532"\w* \w cup|strong="G4221"\w*, \w gave|strong="G1325"\w* \w thanks|strong="G2168"\w*, \w and|strong="G2532"\w* \w gave|strong="G1325"\w* \w to|strong="G2532"\w* \w them|strong="G1325"\w*, \w saying|strong="G3004"\w*, \wj “\+w All|strong="G3956"\+w* \+w of|strong="G1537"\+w* \+w you|strong="G1325"\+w* \+w drink|strong="G4095"\+w* \+w it|strong="G2532"\+w*, \wj* +\v 28 \wj \+w for|strong="G1063"\+w* \+w this|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w my|strong="G1473"\+w* blood \+w of|strong="G4012"\+w* \+w the|strong="G1519"\+w* new \+w covenant|strong="G1242"\+w*, \+w which|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w poured|strong="G1632"\+w* \+w out|strong="G1632"\+w* \+w for|strong="G1063"\+w* \+w many|strong="G4183"\+w* \+w for|strong="G1063"\+w* \+w the|strong="G1519"\+w* remission \+w of|strong="G4012"\+w* sins. \wj* +\v 29 \wj \+w But|strong="G1161"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3588"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G1473"\+w* \+w not|strong="G3756"\+w* \+w drink|strong="G4095"\+w* \+w of|strong="G1537"\+w* \+w this|strong="G3778"\+w* \+w fruit|strong="G1081"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1722"\+w* vine \+w from|strong="G1537"\+w* \+w now|strong="G1161"\+w* \+w on|strong="G1722"\+w*, \+w until|strong="G2193"\+w* \+w that|strong="G3588"\+w* \+w day|strong="G2250"\+w* \+w when|strong="G3752"\+w* \+w I|strong="G1473"\+w* \+w drink|strong="G4095"\+w* \+w it|strong="G1161"\+w* anew \+w with|strong="G3326"\+w* \+w you|strong="G5210"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w Father|strong="G3962"\+w*’s Kingdom.” \wj* +\p +\v 30 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* sung \w a|strong="G2532"\w* \w hymn|strong="G5214"\w*, \w they|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w Mount|strong="G3735"\w* \w of|strong="G2532"\w* \w Olives|strong="G1636"\w*. +\p +\v 31 \w Then|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w All|strong="G3956"\+w* \+w of|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w made|strong="G3956"\+w* \+w to|strong="G2532"\+w* \+w stumble|strong="G4624"\+w* \+w because|strong="G1063"\+w* \+w of|strong="G2532"\+w* \+w me|strong="G1473"\+w* \+w tonight|strong="G3571"\+w*, \+w for|strong="G1063"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w written|strong="G1125"\+w*, ‘\+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w strike|strong="G3960"\+w* \+w the|strong="G1722"\+w* \+w shepherd|strong="G4166"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w sheep|strong="G4263"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w flock|strong="G4167"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w scattered|strong="G1287"\+w*.’\wj*\x + \xo 26:31 \xt Zechariah 13:7\x* +\v 32 \wj \+w But|strong="G1161"\+w* \+w after|strong="G3326"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* \+w raised|strong="G1453"\+w* \+w up|strong="G1453"\+w*, \+w I|strong="G1473"\+w* \+w will|strong="G1473"\+w* \+w go|strong="G4254"\+w* \+w before|strong="G4254"\+w* \+w you|strong="G5210"\+w* \+w into|strong="G1519"\+w* \+w Galilee|strong="G1056"\+w*.” \wj* +\p +\v 33 \w But|strong="G1161"\w* \w Peter|strong="G4074"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Even|strong="G1161"\w* \w if|strong="G1487"\w* \w all|strong="G3956"\w* \w will|strong="G1473"\w* \w be|strong="G3956"\w* \w made|strong="G1161"\w* \w to|strong="G3004"\w* \w stumble|strong="G4624"\w* \w because|strong="G1722"\w* \w of|strong="G1722"\w* \w you|strong="G4771"\w*, \w I|strong="G1473"\w* \w will|strong="G1473"\w* \w never|strong="G3763"\w* \w be|strong="G3956"\w* \w made|strong="G1161"\w* \w to|strong="G3004"\w* \w stumble|strong="G4624"\w*.” +\p +\v 34 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “Most certainly \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w* \+w that|strong="G3754"\+w* \+w tonight|strong="G3571"\+w*, \+w before|strong="G4250"\+w* \+w the|strong="G1722"\+w* rooster \+w crows|strong="G5455"\+w*, \+w you|strong="G4771"\+w* \+w will|strong="G1473"\+w* \+w deny|strong="G3588"\+w* \+w me|strong="G1473"\+w* \+w three|strong="G5151"\+w* \+w times|strong="G5151"\+w*.”\wj* +\p +\v 35 \w Peter|strong="G4074"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Even|strong="G2532"\w* \w if|strong="G2579"\w* \w I|strong="G1473"\w* \w must|strong="G1163"\w* die \w with|strong="G4862"\w* \w you|strong="G4771"\w*, \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w not|strong="G3756"\w* \w deny|strong="G3588"\w* \w you|strong="G4771"\w*.” \w All|strong="G3956"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w also|strong="G2532"\w* \w said|strong="G3004"\w* \w likewise|strong="G3668"\w*. +\p +\v 36 \w Then|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w came|strong="G2064"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w* \w to|strong="G1519"\w* \w a|strong="G2532"\w* \w place|strong="G1563"\w* \w called|strong="G3004"\w* \w Gethsemane|strong="G1068"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w*, \wj “\+w Sit|strong="G2523"\+w* \+w here|strong="G1519"\+w*, \+w while|strong="G2193"\+w* \+w I|strong="G3739"\+w* \+w go|strong="G2064"\+w* \+w there|strong="G1563"\+w* \+w and|strong="G2532"\+w* \+w pray|strong="G4336"\+w*.”\wj* +\v 37 \w He|strong="G2532"\w* \w took|strong="G3880"\w* \w with|strong="G2532"\w* \w him|strong="G3588"\w* \w Peter|strong="G4074"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w two|strong="G1417"\w* \w sons|strong="G5207"\w* \w of|strong="G5207"\w* \w Zebedee|strong="G2199"\w*, \w and|strong="G2532"\w* began \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w sorrowful|strong="G3076"\w* \w and|strong="G2532"\w* severely troubled. +\v 38 \w Then|strong="G2532"\w* \w Jesus|strong="G3004"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w My|strong="G1473"\+w* \+w soul|strong="G5590"\+w* \+w is|strong="G1510"\+w* \+w exceedingly|strong="G1510"\+w* \+w sorrowful|strong="G4036"\+w*, \+w even|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w death|strong="G2288"\+w*. \+w Stay|strong="G3306"\+w* \+w here|strong="G5602"\+w* \+w and|strong="G2532"\+w* \+w watch|strong="G1127"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1473"\+w*.”\wj* +\p +\v 39 \w He|strong="G2532"\w* \w went|strong="G4334"\w* \w forward|strong="G4334"\w* \w a|strong="G5613"\w* \w little|strong="G3398"\w*, \w fell|strong="G4098"\w* \w on|strong="G1909"\w* \w his|strong="G1909"\w* \w face|strong="G4383"\w*, \w and|strong="G2532"\w* \w prayed|strong="G4336"\w*, \w saying|strong="G3004"\w*, \wj “\+w My|strong="G1473"\+w* \+w Father|strong="G3962"\+w*, \+w if|strong="G1487"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w possible|strong="G1415"\+w*, \+w let|strong="G1510"\+w* \+w this|strong="G3778"\+w* \+w cup|strong="G4221"\+w* \+w pass|strong="G3928"\+w* \+w away|strong="G3928"\+w* \+w from|strong="G2532"\+w* \+w me|strong="G1473"\+w*; \+w nevertheless|strong="G4133"\+w*, \+w not|strong="G3756"\+w* \+w what|strong="G3588"\+w* \+w I|strong="G1473"\+w* \+w desire|strong="G2309"\+w*, \+w but|strong="G2532"\+w* \+w what|strong="G3588"\+w* \+w you|strong="G4771"\+w* \+w desire|strong="G2309"\+w*.”\wj* +\p +\v 40 \w He|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w and|strong="G2532"\w* \w found|strong="G2147"\w* \w them|strong="G3588"\w* \w sleeping|strong="G2518"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w Peter|strong="G4074"\w*, \wj “\+w What|strong="G3588"\+w*, couldn’\+w t|strong="G3588"\+w* \+w you|strong="G3004"\+w* \+w watch|strong="G1127"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1473"\+w* \+w for|strong="G4314"\+w* \+w one|strong="G1520"\+w* \+w hour|strong="G5610"\+w*? \wj* +\v 41 \wj \+w Watch|strong="G1127"\+w* \+w and|strong="G2532"\+w* \+w pray|strong="G4336"\+w*, \+w that|strong="G2443"\+w* \+w you|strong="G2532"\+w* don’\+w t|strong="G3588"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w temptation|strong="G3986"\+w*. \+w The|strong="G2532"\+w* \+w spirit|strong="G4151"\+w* \+w indeed|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w willing|strong="G4289"\+w*, \+w but|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w flesh|strong="G4561"\+w* \+w is|strong="G3588"\+w* weak.”\wj* +\p +\v 42 \w Again|strong="G3825"\w*, \w a|strong="G1096"\w* \w second|strong="G1208"\w* \w time|strong="G1208"\w* \w he|strong="G3778"\w* \w went|strong="G3588"\w* \w away|strong="G3928"\w* \w and|strong="G3962"\w* \w prayed|strong="G4336"\w*, \w saying|strong="G3004"\w*, \wj “\+w My|strong="G1473"\+w* \+w Father|strong="G3962"\+w*, \+w if|strong="G1487"\+w* \+w this|strong="G3778"\+w* \+w cup|strong="G1410"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w pass|strong="G1096"\+w* \+w away|strong="G3928"\+w* \+w from|strong="G1537"\+w* \+w me|strong="G1473"\+w* \+w unless|strong="G1437"\+w* \+w I|strong="G1473"\+w* \+w drink|strong="G4095"\+w* \+w it|strong="G1487"\+w*, \+w your|strong="G1437"\+w* \+w desire|strong="G2307"\+w* \+w be|strong="G1096"\+w* \+w done|strong="G1096"\+w*.” \wj* +\p +\v 43 \w He|strong="G2532"\w* \w came|strong="G2064"\w* \w again|strong="G3825"\w* \w and|strong="G2532"\w* \w found|strong="G2147"\w* \w them|strong="G3588"\w* \w sleeping|strong="G2518"\w*, \w for|strong="G1063"\w* \w their|strong="G1438"\w* \w eyes|strong="G3788"\w* \w were|strong="G1510"\w* heavy. +\v 44 \w He|strong="G2532"\w* left \w them|strong="G3588"\w* \w again|strong="G3825"\w*, \w went|strong="G2532"\w* away, \w and|strong="G2532"\w* \w prayed|strong="G4336"\w* \w a|strong="G2532"\w* \w third|strong="G5154"\w* \w time|strong="G5154"\w*, \w saying|strong="G3004"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w* \w words|strong="G3056"\w*. +\v 45 \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Are|strong="G3588"\+w* \+w you|strong="G3004"\+w* \+w still|strong="G2064"\+w* \+w sleeping|strong="G2518"\+w* \+w and|strong="G2532"\+w* resting? \+w Behold|strong="G2400"\+w*, \+w the|strong="G2532"\+w* \+w hour|strong="G5610"\+w* \+w is|strong="G3588"\+w* \+w at|strong="G1519"\+w* \+w hand|strong="G5495"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G1519"\+w* \+w is|strong="G3588"\+w* \+w betrayed|strong="G3860"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w hands|strong="G5495"\+w* \+w of|strong="G5207"\+w* sinners. \wj* +\v 46 \wj \+w Arise|strong="G1453"\+w*, let’s \+w be|strong="G3588"\+w* going. \+w Behold|strong="G2400"\+w*, \+w he|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w betrays|strong="G3860"\+w* \+w me|strong="G1473"\+w* \+w is|strong="G3588"\+w* \+w at|strong="G3588"\+w* \+w hand|strong="G1448"\+w*.” \wj* +\p +\v 47 \w While|strong="G2980"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w still|strong="G2089"\w* \w speaking|strong="G2980"\w*, \w behold|strong="G2400"\w*, \w Judas|strong="G2455"\w*, \w one|strong="G1520"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w twelve|strong="G1427"\w*, \w came|strong="G2064"\w*, \w and|strong="G2532"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w* \w a|strong="G2532"\w* \w great|strong="G4183"\w* \w multitude|strong="G3793"\w* \w with|strong="G3326"\w* \w swords|strong="G3162"\w* \w and|strong="G2532"\w* \w clubs|strong="G3586"\w*, \w from|strong="G2064"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w elders|strong="G4245"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w*. +\v 48 \w Now|strong="G1161"\w* \w he|strong="G1161"\w* \w who|strong="G3739"\w* \w betrayed|strong="G3860"\w* \w him|strong="G3588"\w* \w had|strong="G1510"\w* \w given|strong="G1325"\w* \w them|strong="G3588"\w* \w a|strong="G1510"\w* \w sign|strong="G4592"\w*, \w saying|strong="G3004"\w*, “\w Whoever|strong="G3739"\w* \w I|strong="G3739"\w* \w kiss|strong="G5368"\w*, \w he|strong="G1161"\w* \w is|strong="G1510"\w* \w the|strong="G1161"\w* \w one|strong="G3739"\w*. \w Seize|strong="G2902"\w* \w him|strong="G3588"\w*.” +\v 49 \w Immediately|strong="G2112"\w* \w he|strong="G2532"\w* \w came|strong="G4334"\w* \w to|strong="G2532"\w* \w Jesus|strong="G2424"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Greetings|strong="G5463"\w*, \w Rabbi|strong="G4461"\w*!” \w and|strong="G2532"\w* \w kissed|strong="G2705"\w* \w him|strong="G3588"\w*. +\p +\v 50 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Friend|strong="G2083"\+w*, \+w why|strong="G3739"\+w* \+w are|strong="G3588"\+w* \+w you|strong="G3739"\+w* \+w here|strong="G3918"\+w*?”\wj* +\p \w Then|strong="G2532"\w* \w they|strong="G2532"\w* \w came|strong="G4334"\w* \w and|strong="G2532"\w* \w laid|strong="G1911"\w* \w hands|strong="G5495"\w* \w on|strong="G1909"\w* \w Jesus|strong="G2424"\w*, \w and|strong="G2532"\w* \w took|strong="G2902"\w* \w him|strong="G3588"\w*. +\v 51 \w Behold|strong="G2400"\w*, \w one|strong="G1520"\w* \w of|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w with|strong="G3326"\w* \w Jesus|strong="G2424"\w* \w stretched|strong="G1614"\w* \w out|strong="G2532"\w* \w his|strong="G3708"\w* \w hand|strong="G5495"\w* \w and|strong="G2532"\w* \w drew|strong="G2532"\w* \w his|strong="G3708"\w* \w sword|strong="G3162"\w*, \w and|strong="G2532"\w* \w struck|strong="G3960"\w* \w the|strong="G2532"\w* \w servant|strong="G1401"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w high|strong="G2532"\w* priest, \w and|strong="G2532"\w* \w cut|strong="G2532"\w* off \w his|strong="G3708"\w* \w ear|strong="G5621"\w*. +\p +\v 52 \w Then|strong="G5119"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \wj “\+w Put|strong="G3956"\+w* \+w your|strong="G3956"\+w* \+w sword|strong="G3162"\+w* \+w back|strong="G1519"\+w* \+w into|strong="G1519"\+w* \+w its|strong="G3956"\+w* \+w place|strong="G5117"\+w*, \+w for|strong="G1063"\+w* \+w all|strong="G3956"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w take|strong="G2983"\+w* \+w the|strong="G1722"\+w* \+w sword|strong="G3162"\+w* \+w will|strong="G3956"\+w* die \+w by|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w sword|strong="G3162"\+w*. \wj* +\v 53 \wj \+w Or|strong="G2228"\+w* \+w do|strong="G2532"\+w* \+w you|strong="G3754"\+w* \+w think|strong="G1380"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* couldn’\+w t|strong="G3588"\+w* \+w ask|strong="G3870"\+w* \+w my|strong="G1473"\+w* \+w Father|strong="G3962"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w would|strong="G2532"\+w* \+w even|strong="G2532"\+w* \+w now|strong="G2532"\+w* send \+w me|strong="G1473"\+w* \+w more|strong="G4119"\+w* \+w than|strong="G2228"\+w* \+w twelve|strong="G1427"\+w* \+w legions|strong="G3003"\+w* \+w of|strong="G2532"\+w* angels? \wj* +\v 54 \wj \+w How|strong="G4459"\+w* \+w then|strong="G3767"\+w* \+w would|strong="G1096"\+w* \+w the|strong="G3588"\+w* \+w Scriptures|strong="G1124"\+w* \+w be|strong="G1096"\+w* \+w fulfilled|strong="G4137"\+w* \+w that|strong="G3754"\+w* \+w it|strong="G3754"\+w* \+w must|strong="G1163"\+w* \+w be|strong="G1096"\+w* \+w so|strong="G3779"\+w*?” \wj* +\p +\v 55 \w In|strong="G1722"\w* \w that|strong="G3588"\w* \w hour|strong="G5610"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w multitudes|strong="G3793"\w*, \wj “\+w Have|strong="G2532"\+w* \+w you|strong="G1722"\+w* \+w come|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w as|strong="G5613"\+w* \+w against|strong="G2596"\+w* \+w a|strong="G5613"\+w* \+w robber|strong="G3027"\+w* \+w with|strong="G3326"\+w* \+w swords|strong="G3162"\+w* \+w and|strong="G2532"\+w* \+w clubs|strong="G3586"\+w* \+w to|strong="G2532"\+w* \+w seize|strong="G2902"\+w* \+w me|strong="G1473"\+w*? \+w I|strong="G1473"\+w* \+w sat|strong="G2516"\+w* \+w daily|strong="G2250"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w temple|strong="G2413"\+w* \+w teaching|strong="G1321"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G1722"\+w* didn’\+w t|strong="G3588"\+w* \+w arrest|strong="G2902"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 56 \wj \+w But|strong="G1161"\+w* \+w all|strong="G3956"\+w* \+w this|strong="G3778"\+w* \+w has|strong="G1096"\+w* \+w happened|strong="G1096"\+w* \+w that|strong="G2443"\+w* \+w the|strong="G3956"\+w* \+w Scriptures|strong="G1124"\+w* \+w of|strong="G3956"\+w* \+w the|strong="G3956"\+w* \+w prophets|strong="G4396"\+w* \+w might|strong="G3778"\+w* \+w be|strong="G1096"\+w* \+w fulfilled|strong="G4137"\+w*.”\wj* +\p \w Then|strong="G5119"\w* \w all|strong="G3956"\w* \w the|strong="G3956"\w* \w disciples|strong="G3101"\w* left \w him|strong="G3588"\w* \w and|strong="G1161"\w* \w fled|strong="G5343"\w*. +\p +\v 57 \w Those|strong="G3588"\w* \w who|strong="G3588"\w* \w had|strong="G2424"\w* taken \w Jesus|strong="G2424"\w* \w led|strong="G2424"\w* \w him|strong="G3588"\w* away \w to|strong="G4314"\w* \w Caiaphas|strong="G2533"\w* \w the|strong="G2532"\w* \w high|strong="G2532"\w* priest, \w where|strong="G3699"\w* \w the|strong="G2532"\w* \w scribes|strong="G1122"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w* \w were|strong="G3588"\w* \w gathered|strong="G4863"\w* \w together|strong="G4863"\w*. +\v 58 \w But|strong="G1161"\w* \w Peter|strong="G4074"\w* followed \w him|strong="G3588"\w* \w from|strong="G2532"\w* \w a|strong="G2532"\w* \w distance|strong="G3113"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* court \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w high|strong="G2532"\w* priest, \w and|strong="G2532"\w* \w entered|strong="G1525"\w* \w in|strong="G1525"\w* \w and|strong="G2532"\w* \w sat|strong="G2521"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w officers|strong="G5257"\w*, \w to|strong="G2532"\w* \w see|strong="G3708"\w* \w the|strong="G2532"\w* \w end|strong="G5056"\w*. +\p +\v 59 \w Now|strong="G1161"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests, \w the|strong="G2532"\w* elders, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w whole|strong="G3650"\w* \w council|strong="G4892"\w* \w sought|strong="G2212"\w* \w false|strong="G5577"\w* \w testimony|strong="G5577"\w* \w against|strong="G2596"\w* \w Jesus|strong="G2424"\w*, \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w put|strong="G2289"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w death|strong="G2289"\w*, +\v 60 \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w found|strong="G2147"\w* \w none|strong="G3756"\w*. \w Even|strong="G2532"\w* \w though|strong="G2532"\w* \w many|strong="G4183"\w* \w false|strong="G4183"\w* \w witnesses|strong="G5575"\w* \w came|strong="G4334"\w* \w forward|strong="G4334"\w*, \w they|strong="G2532"\w* \w found|strong="G2147"\w* \w none|strong="G3756"\w*. \w But|strong="G1161"\w* \w at|strong="G1161"\w* \w last|strong="G5305"\w* \w two|strong="G1417"\w* \w false|strong="G4183"\w* \w witnesses|strong="G5575"\w* \w came|strong="G4334"\w* \w forward|strong="G4334"\w* +\v 61 \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w This|strong="G3778"\w* \w man|strong="G3778"\w* \w said|strong="G3004"\w*, ‘\w I|strong="G2532"\w* \w am|strong="G2532"\w* \w able|strong="G1410"\w* \w to|strong="G2532"\w* \w destroy|strong="G2647"\w* \w the|strong="G2532"\w* \w temple|strong="G3485"\w* \w of|strong="G2250"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w build|strong="G3618"\w* \w it|strong="G2532"\w* \w in|strong="G2532"\w* \w three|strong="G5140"\w* \w days|strong="G2250"\w*.’” +\p +\v 62 \w The|strong="G2532"\w* \w high|strong="G2532"\w* priest \w stood|strong="G3588"\w* \w up|strong="G2532"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Have|strong="G2532"\w* \w you|strong="G4771"\w* \w no|strong="G3762"\w* answer? \w What|strong="G5101"\w* \w is|strong="G3588"\w* \w this|strong="G3778"\w* \w that|strong="G3588"\w* \w these|strong="G3778"\w* \w testify|strong="G2649"\w* \w against|strong="G2649"\w* \w you|strong="G4771"\w*?” +\v 63 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w stayed|strong="G1510"\w* \w silent|strong="G4623"\w*. \w The|strong="G2532"\w* \w high|strong="G2532"\w* priest \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, “\w I|strong="G1473"\w* \w adjure|strong="G1844"\w* \w you|strong="G4771"\w* \w by|strong="G2596"\w* \w the|strong="G2532"\w* \w living|strong="G2198"\w* \w God|strong="G2316"\w* \w that|strong="G2443"\w* \w you|strong="G4771"\w* \w tell|strong="G3004"\w* \w us|strong="G3004"\w* \w whether|strong="G1487"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* \w Christ|strong="G5547"\w*, \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*.” +\p +\v 64 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w You|strong="G5210"\+w* \+w have|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w so|strong="G2532"\+w*. \+w Nevertheless|strong="G4133"\+w*, \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w after|strong="G1909"\+w* \+w this|strong="G3588"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w see|strong="G3708"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G1537"\+w* \+w Man|strong="G5207"\+w* \+w sitting|strong="G2521"\+w* \+w at|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w right|strong="G1188"\+w* \+w hand|strong="G1188"\+w* \+w of|strong="G1537"\+w* \+w Power|strong="G1411"\+w*, \+w and|strong="G2532"\+w* \+w coming|strong="G2064"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w clouds|strong="G3507"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w sky|strong="G3772"\+w*.”\wj* +\p +\v 65 \w Then|strong="G5119"\w* \w the|strong="G3588"\w* high priest \w tore|strong="G1284"\w* \w his|strong="G3708"\w* \w clothing|strong="G2440"\w*, \w saying|strong="G3004"\w*, “\w He|strong="G3588"\w* \w has|strong="G2192"\w* \w spoken|strong="G3004"\w* blasphemy! \w Why|strong="G5101"\w* \w do|strong="G5101"\w* \w we|strong="G2192"\w* \w need|strong="G5532"\w* \w any|strong="G2089"\w* \w more|strong="G2089"\w* \w witnesses|strong="G3144"\w*? \w Behold|strong="G2396"\w*, \w now|strong="G3568"\w* \w you|strong="G3004"\w* \w have|strong="G2192"\w* heard \w his|strong="G3708"\w* blasphemy. +\v 66 \w What|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G5210"\w* \w think|strong="G1380"\w*?” +\p \w They|strong="G1161"\w* \w answered|strong="G3004"\w*, “\w He|strong="G1161"\w* \w is|strong="G1510"\w* worthy \w of|strong="G3588"\w* \w death|strong="G2288"\w*!” +\v 67 \w Then|strong="G2532"\w* \w they|strong="G2532"\w* \w spat|strong="G1716"\w* \w in|strong="G1519"\w* \w his|strong="G1519"\w* \w face|strong="G4383"\w* \w and|strong="G2532"\w* \w beat|strong="G2852"\w* \w him|strong="G3588"\w* \w with|strong="G2532"\w* \w their|strong="G2532"\w* \w fists|strong="G2852"\w*, \w and|strong="G2532"\w* \w some|strong="G3588"\w* \w slapped|strong="G4474"\w* \w him|strong="G3588"\w*, +\v 68 \w saying|strong="G3004"\w*, “\w Prophesy|strong="G4395"\w* \w to|strong="G3004"\w* \w us|strong="G3004"\w*, \w you|strong="G4771"\w* \w Christ|strong="G5547"\w*! \w Who|strong="G5101"\w* \w hit|strong="G3817"\w* \w you|strong="G4771"\w*?” +\p +\v 69 \w Now|strong="G1161"\w* \w Peter|strong="G4074"\w* \w was|strong="G1510"\w* \w sitting|strong="G2521"\w* \w outside|strong="G1854"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* court, \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w maid|strong="G3814"\w* \w came|strong="G4334"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w You|strong="G4771"\w* \w were|strong="G1510"\w* \w also|strong="G2532"\w* \w with|strong="G3326"\w* \w Jesus|strong="G2424"\w*, \w the|strong="G1722"\w* \w Galilean|strong="G1057"\w*!” +\p +\v 70 \w But|strong="G1161"\w* \w he|strong="G1161"\w* denied \w it|strong="G1161"\w* \w before|strong="G1715"\w* \w them|strong="G3588"\w* \w all|strong="G3956"\w*, \w saying|strong="G3004"\w*, “\w I|strong="G1161"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w what|strong="G5101"\w* \w you|strong="G3004"\w* \w are|strong="G3588"\w* \w talking|strong="G3004"\w* \w about|strong="G3588"\w*.” +\p +\v 71 \w When|strong="G1161"\w* \w he|strong="G2532"\w* \w had|strong="G2424"\w* \w gone|strong="G1831"\w* \w out|strong="G1831"\w* \w onto|strong="G1519"\w* \w the|strong="G2532"\w* \w porch|strong="G4440"\w*, someone \w else|strong="G2532"\w* \w saw|strong="G3708"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G1510"\w* \w there|strong="G1563"\w*, “\w This|strong="G3778"\w* \w man|strong="G3778"\w* \w also|strong="G2532"\w* \w was|strong="G1510"\w* \w with|strong="G3326"\w* \w Jesus|strong="G2424"\w* \w of|strong="G2532"\w* \w Nazareth|strong="G3480"\w*.” +\p +\v 72 \w Again|strong="G3825"\w* \w he|strong="G2532"\w* denied \w it|strong="G2532"\w* \w with|strong="G3326"\w* \w an|strong="G2532"\w* \w oath|strong="G3727"\w*, “\w I|strong="G2532"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w the|strong="G2532"\w* \w man|strong="G3756"\w*.” +\p +\v 73 \w After|strong="G3326"\w* \w a|strong="G2532"\w* \w little|strong="G3398"\w* \w while|strong="G3398"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w stood|strong="G2476"\w* \w by|strong="G1537"\w* \w came|strong="G4334"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w Peter|strong="G4074"\w*, “Surely \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w also|strong="G2532"\w* \w one|strong="G3588"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w*, \w for|strong="G1063"\w* \w your|strong="G2532"\w* \w speech|strong="G2981"\w* \w makes|strong="G4160"\w* \w you|strong="G4771"\w* known.” +\p +\v 74 \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w began|strong="G5119"\w* \w to|strong="G2532"\w* \w curse|strong="G2653"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w swear|strong="G3660"\w*, “\w I|strong="G2532"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w the|strong="G2532"\w* \w man|strong="G3756"\w*!” +\p \w Immediately|strong="G2112"\w* \w the|strong="G2532"\w* rooster \w crowed|strong="G5455"\w*. +\v 75 \w Peter|strong="G4074"\w* \w remembered|strong="G3403"\w* \w the|strong="G2532"\w* \w word|strong="G4487"\w* \w which|strong="G3588"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Before|strong="G4250"\+w* \+w the|strong="G2532"\+w* rooster \+w crows|strong="G5455"\+w*, \+w you|strong="G3754"\+w* \+w will|strong="G2532"\+w* \+w deny|strong="G3588"\+w* \+w me|strong="G1473"\+w* \+w three|strong="G5151"\+w* \+w times|strong="G5151"\+w*.”\wj* \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w and|strong="G2532"\w* \w wept|strong="G2799"\w* \w bitterly|strong="G4090"\w*. +\c 27 +\p +\v 1 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w morning|strong="G4405"\w* \w had|strong="G2424"\w* \w come|strong="G1096"\w*, \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w* \w took|strong="G2983"\w* \w counsel|strong="G4824"\w* \w against|strong="G2596"\w* \w Jesus|strong="G2424"\w* \w to|strong="G2532"\w* \w put|strong="G2289"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w death|strong="G2289"\w*. +\v 2 \w They|strong="G2532"\w* \w bound|strong="G1210"\w* \w him|strong="G3588"\w*, led \w him|strong="G3588"\w* away, \w and|strong="G2532"\w* \w delivered|strong="G3860"\w* \w him|strong="G3588"\w* \w up|strong="G3860"\w* \w to|strong="G2532"\w* Pontius \w Pilate|strong="G4091"\w*, \w the|strong="G2532"\w* \w governor|strong="G2232"\w*. +\p +\v 3 \w Then|strong="G2532"\w* \w Judas|strong="G2455"\w*, \w who|strong="G3588"\w* \w betrayed|strong="G3860"\w* \w him|strong="G3588"\w*, \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w that|strong="G3754"\w* \w Jesus|strong="G2532"\w* \w was|strong="G3588"\w* \w condemned|strong="G2632"\w*, \w felt|strong="G3338"\w* \w remorse|strong="G3338"\w*, \w and|strong="G2532"\w* \w brought|strong="G3748"\w* \w back|strong="G4762"\w* \w the|strong="G2532"\w* \w thirty|strong="G5144"\w* pieces \w of|strong="G2532"\w* silver \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w elders|strong="G4245"\w*, +\v 4 \w saying|strong="G3004"\w*, “\w I|strong="G1473"\w* \w have|strong="G1473"\w* sinned \w in|strong="G4314"\w* \w that|strong="G3588"\w* \w I|strong="G1473"\w* \w betrayed|strong="G3860"\w* innocent blood.” +\p \w But|strong="G1161"\w* \w they|strong="G1161"\w* \w said|strong="G3004"\w*, “\w What|strong="G5101"\w* \w is|strong="G3588"\w* \w that|strong="G3588"\w* \w to|strong="G4314"\w* \w us|strong="G3004"\w*? \w You|strong="G4771"\w* \w see|strong="G3708"\w* \w to|strong="G4314"\w* \w it|strong="G1161"\w*.” +\p +\v 5 \w He|strong="G2532"\w* \w threw|strong="G4496"\w* \w down|strong="G4496"\w* \w the|strong="G2532"\w* pieces \w of|strong="G2532"\w* silver \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w sanctuary|strong="G3485"\w* \w and|strong="G2532"\w* departed. \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w went|strong="G2532"\w* away \w and|strong="G2532"\w* hanged \w himself|strong="G1519"\w*. +\p +\v 6 \w The|strong="G1519"\w* chief priests \w took|strong="G2983"\w* \w the|strong="G1519"\w* pieces \w of|strong="G3588"\w* silver \w and|strong="G1161"\w* \w said|strong="G3004"\w*, “\w It|strong="G1161"\w*’s \w not|strong="G3756"\w* \w lawful|strong="G1832"\w* \w to|strong="G1519"\w* \w put|strong="G1519"\w* \w them|strong="G3588"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w treasury|strong="G2878"\w*, \w since|strong="G1893"\w* \w it|strong="G1161"\w* \w is|strong="G1510"\w* \w the|strong="G1519"\w* \w price|strong="G5092"\w* \w of|strong="G3588"\w* blood.” +\v 7 \w They|strong="G1161"\w* \w took|strong="G2983"\w* \w counsel|strong="G4824"\w*, \w and|strong="G1161"\w* bought \w the|strong="G1519"\w* \w potter|strong="G2763"\w*’s field \w with|strong="G1537"\w* \w them|strong="G3588"\w* \w to|strong="G1519"\w* \w bury|strong="G5027"\w* \w strangers|strong="G3581"\w* \w in|strong="G1519"\w*. +\v 8 \w Therefore|strong="G1352"\w* \w that|strong="G3588"\w* field has been \w called|strong="G2564"\w* “\w The|strong="G3588"\w* Field \w of|strong="G3588"\w* Blood” \w to|strong="G2193"\w* \w this|strong="G3588"\w* \w day|strong="G4594"\w*. +\v 9 \w Then|strong="G2532"\w* \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w was|strong="G3588"\w* \w spoken|strong="G3004"\w* \w through|strong="G1223"\w* \w Jeremiah|strong="G2408"\w*\f + \fr 27:9 \ft some manuscripts omit “Jeremiah”\f* \w the|strong="G2532"\w* \w prophet|strong="G4396"\w* \w was|strong="G3588"\w* \w fulfilled|strong="G4137"\w*, \w saying|strong="G3004"\w*, +\q1 “\w They|strong="G2532"\w* \w took|strong="G2983"\w* \w the|strong="G2532"\w* \w thirty|strong="G5144"\w* pieces \w of|strong="G5207"\w* silver, +\q2 \w the|strong="G2532"\w* \w price|strong="G5092"\w* \w of|strong="G5207"\w* \w him|strong="G3588"\w* \w upon|strong="G3588"\w* \w whom|strong="G3739"\w* \w a|strong="G2532"\w* \w price|strong="G5092"\w* \w had|strong="G2532"\w* \w been|strong="G2532"\w* \w set|strong="G2532"\w*, +\q2 \w whom|strong="G3739"\w* \w some|strong="G3739"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w children|strong="G5207"\w* \w of|strong="G5207"\w* \w Israel|strong="G2474"\w* priced, +\q1 +\v 10 \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w gave|strong="G1325"\w* \w them|strong="G3588"\w* \w for|strong="G1519"\w* \w the|strong="G2532"\w* \w potter|strong="G2763"\w*’\w s|strong="G2962"\w* field, +\q2 \w as|strong="G1519"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w commanded|strong="G4929"\w* \w me|strong="G1325"\w*.”\x + \xo 27:10 \xt Zechariah 11:12-13; Jeremiah 19:1-13; 32:6-9\x* +\p +\v 11 \w Now|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w stood|strong="G2476"\w* \w before|strong="G1715"\w* \w the|strong="G2532"\w* \w governor|strong="G2232"\w*; \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w governor|strong="G2232"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w Are|strong="G1510"\w* \w you|strong="G4771"\w* \w the|strong="G2532"\w* \w King|strong="G3588"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w*?” +\p \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w So|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w say|strong="G3004"\+w*.”\wj* +\p +\v 12 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w accused|strong="G2723"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w elders|strong="G4245"\w*, \w he|strong="G2532"\w* answered \w nothing|strong="G3762"\w*. +\v 13 \w Then|strong="G5119"\w* \w Pilate|strong="G4091"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “Don’\w t|strong="G3588"\w* \w you|strong="G4771"\w* hear \w how|strong="G4214"\w* \w many|strong="G4214"\w* \w things|strong="G3588"\w* \w they|strong="G3588"\w* \w testify|strong="G2649"\w* \w against|strong="G2649"\w* \w you|strong="G4771"\w*?” +\p +\v 14 \w He|strong="G2532"\w* \w gave|strong="G2532"\w* \w him|strong="G3588"\w* \w no|strong="G3756"\w* answer, \w not|strong="G3756"\w* \w even|strong="G2532"\w* \w one|strong="G1520"\w* \w word|strong="G4487"\w*, \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w the|strong="G2532"\w* \w governor|strong="G2232"\w* \w marveled|strong="G2296"\w* \w greatly|strong="G3029"\w*. +\p +\v 15 \w Now|strong="G1161"\w* \w at|strong="G2596"\w* \w the|strong="G1161"\w* \w feast|strong="G1859"\w* \w the|strong="G1161"\w* \w governor|strong="G2232"\w* \w was|strong="G3588"\w* \w accustomed|strong="G1486"\w* \w to|strong="G2596"\w* release \w to|strong="G2596"\w* \w the|strong="G1161"\w* \w multitude|strong="G3793"\w* \w one|strong="G1520"\w* \w prisoner|strong="G1198"\w* \w whom|strong="G3739"\w* \w they|strong="G1161"\w* \w desired|strong="G2309"\w*. +\v 16 \w They|strong="G1161"\w* \w had|strong="G2192"\w* \w then|strong="G5119"\w* \w a|strong="G2192"\w* \w notable|strong="G1978"\w* \w prisoner|strong="G1198"\w* \w called|strong="G3004"\w* Barabbas. +\v 17 \w When|strong="G3767"\w* \w therefore|strong="G3767"\w* \w they|strong="G3588"\w* \w were|strong="G3588"\w* \w gathered|strong="G4863"\w* \w together|strong="G4863"\w*, \w Pilate|strong="G4091"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, “\w Whom|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G5210"\w* \w want|strong="G2309"\w* \w me|strong="G3004"\w* \w to|strong="G3004"\w* release \w to|strong="G3004"\w* \w you|strong="G5210"\w*? Barabbas, \w or|strong="G2228"\w* \w Jesus|strong="G2424"\w* \w who|strong="G5101"\w* \w is|strong="G3588"\w* \w called|strong="G3004"\w* \w Christ|strong="G5547"\w*?” +\v 18 \w For|strong="G1063"\w* \w he|strong="G3754"\w* \w knew|strong="G1492"\w* \w that|strong="G3754"\w* \w because|strong="G3754"\w* \w of|strong="G1223"\w* \w envy|strong="G5355"\w* \w they|strong="G3754"\w* \w had|strong="G3748"\w* \w delivered|strong="G3860"\w* \w him|strong="G3860"\w* \w up|strong="G3860"\w*. +\p +\v 19 \w While|strong="G1161"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w sitting|strong="G2521"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* judgment seat, \w his|strong="G1223"\w* \w wife|strong="G1135"\w* \w sent|strong="G2532"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w Have|strong="G2532"\w* \w nothing|strong="G3367"\w* \w to|strong="G4314"\w* \w do|strong="G2532"\w* \w with|strong="G4314"\w* \w that|strong="G3588"\w* \w righteous|strong="G1342"\w* \w man|strong="G3367"\w*, \w for|strong="G1063"\w* \w I|strong="G2532"\w* \w have|strong="G2532"\w* \w suffered|strong="G3958"\w* \w many|strong="G4183"\w* \w things|strong="G3588"\w* \w today|strong="G4594"\w* \w in|strong="G1909"\w* \w a|strong="G2532"\w* \w dream|strong="G3677"\w* \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w him|strong="G3588"\w*.” +\p +\v 20 \w Now|strong="G1161"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w* \w persuaded|strong="G3982"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w* \w to|strong="G2443"\w* ask \w for|strong="G1161"\w* Barabbas \w and|strong="G2532"\w* destroy \w Jesus|strong="G2424"\w*. +\v 21 \w But|strong="G1161"\w* \w the|strong="G1161"\w* \w governor|strong="G2232"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, “\w Which|strong="G3588"\w* \w of|strong="G3588"\w* \w the|strong="G1161"\w* \w two|strong="G1417"\w* \w do|strong="G5101"\w* \w you|strong="G5210"\w* \w want|strong="G2309"\w* \w me|strong="G3004"\w* \w to|strong="G3004"\w* release \w to|strong="G3004"\w* \w you|strong="G5210"\w*?” +\p \w They|strong="G1161"\w* \w said|strong="G3004"\w*, “Barabbas!” +\p +\v 22 \w Pilate|strong="G4091"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, “\w What|strong="G5101"\w* \w then|strong="G3767"\w* \w shall|strong="G5101"\w* \w I|strong="G3767"\w* \w do|strong="G4160"\w* \w to|strong="G3004"\w* \w Jesus|strong="G2424"\w* \w who|strong="G5101"\w* \w is|strong="G3588"\w* \w called|strong="G3004"\w* \w Christ|strong="G5547"\w*?” +\p \w They|strong="G3588"\w* \w all|strong="G3956"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Let|strong="G3767"\w* \w him|strong="G3588"\w* \w be|strong="G3956"\w* \w crucified|strong="G4717"\w*!” +\p +\v 23 \w But|strong="G1161"\w* \w the|strong="G1161"\w* governor \w said|strong="G3004"\w*, “\w Why|strong="G5101"\w*? \w What|strong="G5101"\w* \w evil|strong="G2556"\w* \w has|strong="G5101"\w* \w he|strong="G1161"\w* \w done|strong="G4160"\w*?” +\p \w But|strong="G1161"\w* \w they|strong="G1161"\w* \w cried|strong="G2896"\w* \w out|strong="G2896"\w* \w exceedingly|strong="G4057"\w*, \w saying|strong="G3004"\w*, “\w Let|strong="G1161"\w* \w him|strong="G3588"\w* \w be|strong="G3588"\w* \w crucified|strong="G4717"\w*!” +\p +\v 24 \w So|strong="G1161"\w* \w when|strong="G1161"\w* \w Pilate|strong="G4091"\w* \w saw|strong="G3708"\w* \w that|strong="G3754"\w* \w nothing|strong="G3762"\w* \w was|strong="G1510"\w* \w being|strong="G1510"\w* gained, \w but|strong="G1161"\w* \w rather|strong="G3123"\w* \w that|strong="G3754"\w* \w a|strong="G1096"\w* disturbance \w was|strong="G1510"\w* \w starting|strong="G1096"\w*, \w he|strong="G1161"\w* \w took|strong="G2983"\w* \w water|strong="G5204"\w* \w and|strong="G1161"\w* washed \w his|strong="G2983"\w* \w hands|strong="G5495"\w* \w before|strong="G3588"\w* \w the|strong="G1161"\w* \w multitude|strong="G3793"\w*, \w saying|strong="G3004"\w*, “\w I|strong="G1161"\w* \w am|strong="G1510"\w* innocent \w of|strong="G5495"\w* \w the|strong="G1161"\w* blood \w of|strong="G5495"\w* \w this|strong="G3778"\w* righteous \w person|strong="G3778"\w*. \w You|strong="G5210"\w* \w see|strong="G3708"\w* \w to|strong="G3004"\w* \w it|strong="G3754"\w*.” +\p +\v 25 \w All|strong="G3956"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w* \w answered|strong="G3004"\w*, “\w May|strong="G2532"\w* \w his|strong="G3956"\w* blood \w be|strong="G2532"\w* \w on|strong="G1909"\w* \w us|strong="G3004"\w* \w and|strong="G2532"\w* \w on|strong="G1909"\w* \w our|strong="G2532"\w* \w children|strong="G5043"\w*!” +\p +\v 26 \w Then|strong="G5119"\w* \w he|strong="G1161"\w* \w released|strong="G5119"\w* Barabbas \w to|strong="G2443"\w* \w them|strong="G3588"\w*, \w but|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w he|strong="G1161"\w* \w flogged|strong="G5417"\w* \w and|strong="G1161"\w* \w delivered|strong="G3860"\w* \w to|strong="G2443"\w* \w be|strong="G2443"\w* \w crucified|strong="G4717"\w*. +\p +\v 27 \w Then|strong="G5119"\w* \w the|strong="G1519"\w* \w governor|strong="G2232"\w*’s \w soldiers|strong="G4757"\w* \w took|strong="G3880"\w* \w Jesus|strong="G2424"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w Praetorium|strong="G4232"\w*, \w and|strong="G2424"\w* \w gathered|strong="G4863"\w* \w the|strong="G1519"\w* \w whole|strong="G3650"\w* garrison \w together|strong="G4863"\w* \w against|strong="G1909"\w* \w him|strong="G3588"\w*. +\v 28 \w They|strong="G2532"\w* \w stripped|strong="G1562"\w* \w him|strong="G2532"\w* \w and|strong="G2532"\w* \w put|strong="G4060"\w* \w a|strong="G2532"\w* \w scarlet|strong="G2847"\w* \w robe|strong="G5511"\w* \w on|strong="G2532"\w* \w him|strong="G2532"\w*. +\v 29 \w They|strong="G2532"\w* \w braided|strong="G4120"\w* \w a|strong="G2532"\w* \w crown|strong="G4735"\w* \w of|strong="G1537"\w* thorns \w and|strong="G2532"\w* \w put|strong="G2007"\w* \w it|strong="G2532"\w* \w on|strong="G1909"\w* \w his|strong="G2007"\w* \w head|strong="G2776"\w*, \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w reed|strong="G2563"\w* \w in|strong="G1722"\w* \w his|strong="G2007"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w*; \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w kneeled|strong="G1120"\w* \w down|strong="G1120"\w* \w before|strong="G1715"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w mocked|strong="G1702"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w Hail|strong="G5463"\w*, \w King|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w*!” +\v 30 \w They|strong="G2532"\w* \w spat|strong="G1716"\w* \w on|strong="G1519"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w took|strong="G2983"\w* \w the|strong="G2532"\w* \w reed|strong="G2563"\w* \w and|strong="G2532"\w* \w struck|strong="G5180"\w* \w him|strong="G3588"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w head|strong="G2776"\w*. +\v 31 \w When|strong="G3753"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w mocked|strong="G1702"\w* \w him|strong="G3588"\w*, \w they|strong="G2532"\w* \w took|strong="G2532"\w* \w the|strong="G2532"\w* \w robe|strong="G2440"\w* \w off|strong="G1562"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w put|strong="G1746"\w* \w his|strong="G1519"\w* \w clothes|strong="G2440"\w* \w on|strong="G1519"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* led \w him|strong="G3588"\w* away \w to|strong="G1519"\w* \w crucify|strong="G4717"\w* \w him|strong="G3588"\w*. +\p +\v 32 \w As|strong="G1161"\w* \w they|strong="G1161"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w*, \w they|strong="G1161"\w* \w found|strong="G2147"\w* \w a|strong="G2147"\w* \w man|strong="G3778"\w* \w of|strong="G3686"\w* \w Cyrene|strong="G2956"\w*, \w Simon|strong="G4613"\w* \w by|strong="G3686"\w* \w name|strong="G3686"\w*, \w and|strong="G1161"\w* \w they|strong="G1161"\w* compelled \w him|strong="G3588"\w* \w to|strong="G2443"\w* \w go|strong="G1831"\w* \w with|strong="G3588"\w* \w them|strong="G3588"\w*, \w that|strong="G2443"\w* \w he|strong="G1161"\w* \w might|strong="G3778"\w* carry \w his|strong="G3588"\w* \w cross|strong="G4716"\w*. +\v 33 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w a|strong="G2532"\w* \w place|strong="G5117"\w* \w called|strong="G3004"\w* “\w Golgotha|strong="G1115"\w*”, \w that|strong="G3739"\w* \w is|strong="G1510"\w* \w to|strong="G1519"\w* \w say|strong="G3004"\w*, “\w The|strong="G2532"\w* \w place|strong="G5117"\w* \w of|strong="G2532"\w* \w a|strong="G2532"\w* \w skull|strong="G2898"\w*,” +\v 34 \w they|strong="G2532"\w* \w gave|strong="G1325"\w* \w him|strong="G1325"\w* sour \w wine|strong="G3631"\w*\f + \fr 27:34 \ft or, vinegar\f* \w to|strong="G2532"\w* \w drink|strong="G4095"\w* \w mixed|strong="G3396"\w* \w with|strong="G3326"\w* \w gall|strong="G5521"\w*.\f + \fr 27:34 \ft Gall is a bitter-tasting, dark green oil from a wormwood plant that is alcoholic in its effect.\f* \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w tasted|strong="G1089"\w* \w it|strong="G2532"\w*, \w he|strong="G2532"\w* \w would|strong="G2309"\w* \w not|strong="G3756"\w* \w drink|strong="G4095"\w*. +\v 35 \w When|strong="G1161"\w* \w they|strong="G1161"\w* \w had|strong="G3588"\w* \w crucified|strong="G4717"\w* \w him|strong="G3588"\w*, \w they|strong="G1161"\w* \w divided|strong="G1266"\w* \w his|strong="G3588"\w* \w clothing|strong="G2440"\w* \w among|strong="G1266"\w* \w them|strong="G3588"\w*, casting \w lots|strong="G2819"\w*,\f + \fr 27:35 \ft TR adds “that it might be fulfilled which was spoken by the prophet: ‘They divided my garments among them, and for my clothing they cast lots;’” [see Psalms 22:18 and John 19:24]\f* +\v 36 \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w sat|strong="G2521"\w* \w and|strong="G2532"\w* \w watched|strong="G5083"\w* \w him|strong="G2532"\w* \w there|strong="G1563"\w*. +\v 37 \w They|strong="G2532"\w* \w set|strong="G2532"\w* \w up|strong="G2532"\w* \w over|strong="G1883"\w* \w his|strong="G2007"\w* \w head|strong="G2776"\w* \w the|strong="G2532"\w* accusation against \w him|strong="G3588"\w* \w written|strong="G1125"\w*, “\w THIS|strong="G3778"\w* \w IS|strong="G1510"\w* \w JESUS|strong="G2424"\w*, \w THE|strong="G2532"\w* \w KING|strong="G3588"\w* \w OF|strong="G2532"\w* \w THE|strong="G2532"\w* \w JEWS|strong="G2453"\w*.” +\p +\v 38 \w Then|strong="G2532"\w* \w there|strong="G2532"\w* \w were|strong="G2532"\w* \w two|strong="G1417"\w* \w robbers|strong="G3027"\w* \w crucified|strong="G4717"\w* \w with|strong="G4862"\w* \w him|strong="G2532"\w*, \w one|strong="G1520"\w* \w on|strong="G1537"\w* \w his|strong="G2532"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* \w and|strong="G2532"\w* \w one|strong="G1520"\w* \w on|strong="G1537"\w* \w the|strong="G2532"\w* \w left|strong="G2176"\w*. +\p +\v 39 \w Those|strong="G3588"\w* \w who|strong="G3588"\w* \w passed|strong="G3588"\w* \w by|strong="G3899"\w* blasphemed \w him|strong="G3588"\w*, \w wagging|strong="G2795"\w* \w their|strong="G3588"\w* \w heads|strong="G2776"\w* +\v 40 \w and|strong="G2532"\w* \w saying|strong="G3004"\w*, “\w You|strong="G1487"\w* \w who|strong="G3588"\w* \w destroy|strong="G2647"\w* \w the|strong="G1722"\w* \w temple|strong="G3485"\w* \w and|strong="G2532"\w* \w build|strong="G3618"\w* \w it|strong="G2532"\w* \w in|strong="G1722"\w* \w three|strong="G5140"\w* \w days|strong="G2250"\w*, \w save|strong="G4982"\w* \w yourself|strong="G4572"\w*! \w If|strong="G1487"\w* \w you|strong="G1487"\w* \w are|strong="G1510"\w* \w the|strong="G1722"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*, \w come|strong="G2597"\w* \w down|strong="G2597"\w* \w from|strong="G2597"\w* \w the|strong="G1722"\w* \w cross|strong="G4716"\w*!” +\p +\v 41 \w Likewise|strong="G3668"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w also|strong="G2532"\w* \w mocking|strong="G1702"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w scribes|strong="G1122"\w*, \w the|strong="G2532"\w* Pharisees,\f + \fr 27:41 \ft TR omits “the Pharisees”\f* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w*, \w said|strong="G3004"\w*, +\v 42 “\w He|strong="G2532"\w* \w saved|strong="G4982"\w* \w others|strong="G3588"\w*, \w but|strong="G2532"\w* \w he|strong="G2532"\w* \w can|strong="G1410"\w*’\w t|strong="G3588"\w* \w save|strong="G4982"\w* \w himself|strong="G1438"\w*. \w If|strong="G2532"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w King|strong="G3588"\w* \w of|strong="G2532"\w* \w Israel|strong="G2474"\w*, \w let|strong="G1510"\w* \w him|strong="G3588"\w* \w come|strong="G2597"\w* \w down|strong="G2597"\w* \w from|strong="G2597"\w* \w the|strong="G2532"\w* \w cross|strong="G4716"\w* \w now|strong="G3568"\w*, \w and|strong="G2532"\w* \w we|strong="G2532"\w* \w will|strong="G1510"\w* \w believe|strong="G4100"\w* \w in|strong="G1909"\w* \w him|strong="G3588"\w*. +\v 43 \w He|strong="G3754"\w* \w trusts|strong="G3982"\w* \w in|strong="G1909"\w* \w God|strong="G2316"\w*. \w Let|strong="G1510"\w* \w God|strong="G2316"\w* \w deliver|strong="G4506"\w* \w him|strong="G3588"\w* \w now|strong="G3568"\w*, \w if|strong="G1487"\w* \w he|strong="G3754"\w* \w wants|strong="G2309"\w* \w him|strong="G3588"\w*; \w for|strong="G1063"\w* \w he|strong="G3754"\w* \w said|strong="G3004"\w*, ‘\w I|strong="G1063"\w* \w am|strong="G1510"\w* \w the|strong="G1909"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*.’” +\v 44 \w The|strong="G2532"\w* \w robbers|strong="G3027"\w* \w also|strong="G2532"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w crucified|strong="G4957"\w* \w with|strong="G4862"\w* \w him|strong="G3588"\w* \w cast|strong="G2532"\w* \w on|strong="G1161"\w* \w him|strong="G3588"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w* \w reproach|strong="G3679"\w*. +\p +\v 45 \w Now|strong="G1161"\w* \w from|strong="G3588"\w* \w the|strong="G3956"\w* \w sixth|strong="G1623"\w* \w hour|strong="G5610"\w*\f + \fr 27:45 \ft noon\f* \w there|strong="G1161"\w* \w was|strong="G1096"\w* \w darkness|strong="G4655"\w* \w over|strong="G1909"\w* \w all|strong="G3956"\w* \w the|strong="G3956"\w* \w land|strong="G1093"\w* \w until|strong="G2193"\w* \w the|strong="G3956"\w* \w ninth|strong="G1766"\w* \w hour|strong="G5610"\w*.\f + \fr 27:45 \ft 3:00 p.m.\f* +\v 46 \w About|strong="G4012"\w* \w the|strong="G1161"\w* \w ninth|strong="G1766"\w* \w hour|strong="G5610"\w* \w Jesus|strong="G2424"\w* \w cried|strong="G5610"\w* \w with|strong="G2316"\w* \w a|strong="G1510"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, \w saying|strong="G3004"\w*, \wj “\+w Eli|strong="G2241"\+w*, \+w Eli|strong="G2241"\+w*, lima\wj*\f + \fr 27:46 \ft TR reads “lama” instead of “lima”\f* \wj \+w sabachthani|strong="G4518"\+w*?” \wj* \w That|strong="G3588"\w* \w is|strong="G1510"\w*, \wj “\+w My|strong="G1473"\+w* \+w God|strong="G2316"\+w*, \+w my|strong="G1473"\+w* \+w God|strong="G2316"\+w*, \+w why|strong="G2444"\+w* \+w have|strong="G1473"\+w* \+w you|strong="G3004"\+w* \+w forsaken|strong="G1459"\+w* \+w me|strong="G1473"\+w*?”\wj*\x + \xo 27:46 \xt Psalms 22:1\x* +\p +\v 47 \w Some|strong="G5100"\w* \w of|strong="G5100"\w* \w them|strong="G3588"\w* \w who|strong="G3588"\w* \w stood|strong="G2476"\w* \w there|strong="G1563"\w*, \w when|strong="G1161"\w* \w they|strong="G1161"\w* heard \w it|strong="G3754"\w*, \w said|strong="G3004"\w*, “\w This|strong="G3778"\w* \w man|strong="G5100"\w* \w is|strong="G3588"\w* \w calling|strong="G5455"\w* \w Elijah|strong="G2243"\w*.” +\p +\v 48 \w Immediately|strong="G2112"\w* \w one|strong="G1520"\w* \w of|strong="G1537"\w* \w them|strong="G2532"\w* \w ran|strong="G5143"\w* \w and|strong="G2532"\w* \w took|strong="G2983"\w* \w a|strong="G2532"\w* \w sponge|strong="G4699"\w*, \w filled|strong="G4130"\w* \w it|strong="G2532"\w* \w with|strong="G1537"\w* \w vinegar|strong="G3690"\w*, \w put|strong="G4060"\w* \w it|strong="G2532"\w* \w on|strong="G1537"\w* \w a|strong="G2532"\w* \w reed|strong="G2563"\w*, \w and|strong="G2532"\w* \w gave|strong="G4222"\w* \w him|strong="G2532"\w* \w a|strong="G2532"\w* \w drink|strong="G4222"\w*. +\v 49 \w The|strong="G1161"\w* \w rest|strong="G3062"\w* \w said|strong="G3004"\w*, “\w Let|strong="G1161"\w* \w him|strong="G3588"\w* \w be|strong="G3588"\w*. \w Let|strong="G1161"\w*’s \w see|strong="G3708"\w* \w whether|strong="G1487"\w* \w Elijah|strong="G2243"\w* \w comes|strong="G2064"\w* \w to|strong="G3004"\w* \w save|strong="G4982"\w* \w him|strong="G3588"\w*.” +\p +\v 50 \w Jesus|strong="G2424"\w* \w cried|strong="G2896"\w* \w again|strong="G3825"\w* \w with|strong="G4151"\w* \w a|strong="G1161"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, \w and|strong="G1161"\w* yielded up \w his|strong="G3588"\w* \w spirit|strong="G4151"\w*. +\p +\v 51 \w Behold|strong="G2400"\w*, \w the|strong="G2532"\w* \w veil|strong="G2665"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w temple|strong="G3485"\w* \w was|strong="G3588"\w* \w torn|strong="G4977"\w* \w in|strong="G1519"\w* \w two|strong="G1417"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* top \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w bottom|strong="G2736"\w*. \w The|strong="G2532"\w* \w earth|strong="G1093"\w* quaked \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w rocks|strong="G4073"\w* \w were|strong="G3588"\w* \w split|strong="G4977"\w*. +\v 52 \w The|strong="G2532"\w* \w tombs|strong="G3419"\w* \w were|strong="G3588"\w* opened, \w and|strong="G2532"\w* \w many|strong="G4183"\w* \w bodies|strong="G4983"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* saints \w who|strong="G3588"\w* \w had|strong="G2532"\w* \w fallen|strong="G2837"\w* \w asleep|strong="G2837"\w* \w were|strong="G3588"\w* \w raised|strong="G1453"\w*; +\v 53 \w and|strong="G2532"\w* \w coming|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w tombs|strong="G3419"\w* \w after|strong="G3326"\w* \w his|strong="G1519"\w* \w resurrection|strong="G1454"\w*, \w they|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* holy \w city|strong="G4172"\w* \w and|strong="G2532"\w* \w appeared|strong="G1718"\w* \w to|strong="G1519"\w* \w many|strong="G4183"\w*. +\p +\v 54 \w Now|strong="G1161"\w* \w the|strong="G2532"\w* \w centurion|strong="G1543"\w* \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G1510"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w* \w watching|strong="G5083"\w* \w Jesus|strong="G2424"\w*, \w when|strong="G1161"\w* \w they|strong="G2532"\w* \w saw|strong="G3708"\w* \w the|strong="G2532"\w* \w earthquake|strong="G4578"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w things|strong="G3778"\w* \w that|strong="G3588"\w* \w were|strong="G1510"\w* \w done|strong="G1096"\w*, \w were|strong="G1510"\w* \w terrified|strong="G5399"\w*, \w saying|strong="G3004"\w*, “\w Truly|strong="G1161"\w* \w this|strong="G3778"\w* \w was|strong="G1510"\w* \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*!” +\p +\v 55 \w Many|strong="G4183"\w* \w women|strong="G1135"\w* \w were|strong="G1510"\w* \w there|strong="G1563"\w* \w watching|strong="G2334"\w* \w from|strong="G3588"\w* \w afar|strong="G3113"\w*, \w who|strong="G3588"\w* \w had|strong="G2424"\w* followed \w Jesus|strong="G2424"\w* \w from|strong="G3588"\w* \w Galilee|strong="G1056"\w*, \w serving|strong="G1247"\w* \w him|strong="G3588"\w*. +\v 56 \w Among|strong="G1722"\w* \w them|strong="G3588"\w* \w were|strong="G1510"\w* \w Mary|strong="G3137"\w* \w Magdalene|strong="G3094"\w*, \w Mary|strong="G3137"\w* \w the|strong="G1722"\w* \w mother|strong="G3384"\w* \w of|strong="G5207"\w* \w James|strong="G2385"\w* \w and|strong="G2532"\w* Joses, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w mother|strong="G3384"\w* \w of|strong="G5207"\w* \w the|strong="G1722"\w* \w sons|strong="G5207"\w* \w of|strong="G5207"\w* \w Zebedee|strong="G2199"\w*. +\p +\v 57 \w When|strong="G1161"\w* \w evening|strong="G3798"\w* \w had|strong="G2424"\w* \w come|strong="G2064"\w*, \w a|strong="G1096"\w* \w rich|strong="G4145"\w* \w man|strong="G4145"\w* \w from|strong="G2064"\w* Arimathaea \w named|strong="G5122"\w* \w Joseph|strong="G2501"\w*, \w who|strong="G3739"\w* himself \w was|strong="G1096"\w* \w also|strong="G2532"\w* \w Jesus|strong="G2424"\w*’ \w disciple|strong="G3100"\w*, \w came|strong="G2064"\w*. +\v 58 \w This|strong="G3778"\w* \w man|strong="G3778"\w* \w went|strong="G4334"\w* \w to|strong="G4334"\w* \w Pilate|strong="G4091"\w* \w and|strong="G4334"\w* asked \w for|strong="G3778"\w* \w Jesus|strong="G2424"\w*’ \w body|strong="G4983"\w*. \w Then|strong="G5119"\w* \w Pilate|strong="G4091"\w* \w commanded|strong="G2753"\w* \w the|strong="G3588"\w* \w body|strong="G4983"\w* \w to|strong="G4334"\w* \w be|strong="G3588"\w* given \w up|strong="G4334"\w*. +\v 59 \w Joseph|strong="G2501"\w* \w took|strong="G2983"\w* \w the|strong="G2532"\w* \w body|strong="G4983"\w* \w and|strong="G2532"\w* \w wrapped|strong="G1794"\w* \w it|strong="G2532"\w* \w in|strong="G2532"\w* \w a|strong="G2532"\w* \w clean|strong="G2513"\w* \w linen|strong="G4616"\w* \w cloth|strong="G4616"\w* +\v 60 \w and|strong="G2532"\w* \w laid|strong="G5087"\w* \w it|strong="G2532"\w* \w in|strong="G1722"\w* \w his|strong="G1722"\w* own \w new|strong="G2537"\w* \w tomb|strong="G3419"\w*, \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w cut|strong="G2532"\w* \w out|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w rock|strong="G4073"\w*. \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w rolled|strong="G4351"\w* \w a|strong="G2532"\w* \w large|strong="G3173"\w* \w stone|strong="G3037"\w* \w against|strong="G1722"\w* \w the|strong="G1722"\w* \w door|strong="G2374"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w tomb|strong="G3419"\w*, \w and|strong="G2532"\w* departed. +\v 61 \w Mary|strong="G3137"\w* \w Magdalene|strong="G3094"\w* \w was|strong="G1510"\w* \w there|strong="G1563"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w other|strong="G1161"\w* \w Mary|strong="G3137"\w*, \w sitting|strong="G2521"\w* opposite \w the|strong="G2532"\w* tomb. +\p +\v 62 \w Now|strong="G1161"\w* \w on|strong="G1161"\w* \w the|strong="G2532"\w* \w next|strong="G1887"\w* \w day|strong="G1887"\w*, \w which|strong="G3588"\w* \w was|strong="G1510"\w* \w the|strong="G2532"\w* \w day|strong="G1887"\w* \w after|strong="G3326"\w* \w the|strong="G2532"\w* \w Preparation|strong="G3904"\w* \w Day|strong="G1887"\w*, \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w were|strong="G1510"\w* \w gathered|strong="G4863"\w* \w together|strong="G4863"\w* \w to|strong="G4314"\w* \w Pilate|strong="G4091"\w*, +\v 63 \w saying|strong="G3004"\w*, “\w Sir|strong="G2962"\w*, \w we|strong="G3754"\w* \w remember|strong="G3403"\w* \w what|strong="G3588"\w* \w that|strong="G3754"\w* \w deceiver|strong="G4108"\w* \w said|strong="G3004"\w* \w while|strong="G2250"\w* \w he|strong="G3754"\w* \w was|strong="G3588"\w* \w still|strong="G2089"\w* \w alive|strong="G2198"\w*: ‘\w After|strong="G3326"\w* \w three|strong="G5140"\w* \w days|strong="G2250"\w* \w I|strong="G3754"\w* \w will|strong="G2962"\w* \w rise|strong="G1453"\w* \w again|strong="G1453"\w*.’ +\v 64 \w Command|strong="G3004"\w* \w therefore|strong="G3767"\w* \w that|strong="G3588"\w* \w the|strong="G2532"\w* tomb \w be|strong="G1510"\w* \w made|strong="G4413"\w* secure \w until|strong="G2193"\w* \w the|strong="G2532"\w* \w third|strong="G5154"\w* \w day|strong="G2250"\w*, \w lest|strong="G3379"\w* \w perhaps|strong="G3379"\w* \w his|strong="G2532"\w* \w disciples|strong="G3101"\w* \w come|strong="G2064"\w* \w at|strong="G2250"\w* night \w and|strong="G2532"\w* \w steal|strong="G2813"\w* \w him|strong="G3588"\w* \w away|strong="G2813"\w*, \w and|strong="G2532"\w* \w tell|strong="G3004"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w*, ‘\w He|strong="G2532"\w* \w is|strong="G1510"\w* \w risen|strong="G1453"\w* \w from|strong="G2064"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*;’ \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w last|strong="G2078"\w* \w deception|strong="G4106"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w worse|strong="G5501"\w* \w than|strong="G2532"\w* \w the|strong="G2532"\w* \w first|strong="G4413"\w*.” +\p +\v 65 \w Pilate|strong="G4091"\w* \w said|strong="G5346"\w* \w to|strong="G2192"\w* \w them|strong="G3588"\w*, “\w You|strong="G5613"\w* \w have|strong="G2192"\w* \w a|strong="G2192"\w* \w guard|strong="G2892"\w*. \w Go|strong="G5217"\w*, make \w it|strong="G5613"\w* \w as|strong="G5613"\w* secure \w as|strong="G5613"\w* \w you|strong="G5613"\w* \w can|strong="G1492"\w*.” +\v 66 \w So|strong="G1161"\w* \w they|strong="G1161"\w* \w went|strong="G4198"\w* \w with|strong="G3326"\w* \w the|strong="G1161"\w* \w guard|strong="G2892"\w* \w and|strong="G1161"\w* \w made|strong="G1161"\w* \w the|strong="G1161"\w* tomb secure, \w sealing|strong="G4972"\w* \w the|strong="G1161"\w* \w stone|strong="G3037"\w*. +\c 28 +\p +\v 1 \w Now|strong="G1161"\w* \w after|strong="G1161"\w* \w the|strong="G2532"\w* \w Sabbath|strong="G4521"\w*, \w as|strong="G1519"\w* \w it|strong="G2532"\w* \w began|strong="G1161"\w* \w to|strong="G1519"\w* \w dawn|strong="G2020"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w first|strong="G1520"\w* \w day|strong="G4521"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w week|strong="G4521"\w*, \w Mary|strong="G3137"\w* \w Magdalene|strong="G3094"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w other|strong="G1161"\w* \w Mary|strong="G3137"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w see|strong="G2334"\w* \w the|strong="G2532"\w* tomb. +\v 2 \w Behold|strong="G2400"\w*, \w there|strong="G2532"\w* \w was|strong="G1096"\w* \w a|strong="G1096"\w* \w great|strong="G3173"\w* \w earthquake|strong="G4578"\w*, \w for|strong="G1063"\w* \w an|strong="G2532"\w* \w angel|strong="G2597"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w descended|strong="G2597"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w* \w and|strong="G2532"\w* \w came|strong="G4334"\w* \w and|strong="G2532"\w* \w rolled|strong="G3037"\w* away \w the|strong="G2532"\w* \w stone|strong="G3037"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* door \w and|strong="G2532"\w* \w sat|strong="G2521"\w* \w on|strong="G1537"\w* \w it|strong="G2532"\w*. +\v 3 \w His|strong="G2532"\w* \w appearance|strong="G2397"\w* \w was|strong="G1510"\w* \w like|strong="G5613"\w* lightning, \w and|strong="G2532"\w* \w his|strong="G2532"\w* \w clothing|strong="G1742"\w* \w white|strong="G3022"\w* \w as|strong="G5613"\w* \w snow|strong="G5510"\w*. +\v 4 \w For|strong="G1161"\w* \w fear|strong="G5401"\w* \w of|strong="G2532"\w* \w him|strong="G3588"\w*, \w the|strong="G2532"\w* \w guards|strong="G5083"\w* \w shook|strong="G4579"\w*, \w and|strong="G2532"\w* \w became|strong="G1096"\w* \w like|strong="G5613"\w* \w dead|strong="G3498"\w* \w men|strong="G3588"\w*. +\v 5 \w The|strong="G1161"\w* angel \w answered|strong="G3004"\w* \w the|strong="G1161"\w* \w women|strong="G1135"\w*, “Don’\w t|strong="G3588"\w* \w be|strong="G3361"\w* \w afraid|strong="G5399"\w*, \w for|strong="G1063"\w* \w I|strong="G1161"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w seek|strong="G2212"\w* \w Jesus|strong="G2424"\w*, \w who|strong="G3588"\w* \w has|strong="G3748"\w* \w been|strong="G3361"\w* \w crucified|strong="G4717"\w*. +\v 6 \w He|strong="G3588"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w here|strong="G5602"\w*, \w for|strong="G1063"\w* \w he|strong="G3588"\w* \w has|strong="G3708"\w* \w risen|strong="G1453"\w*, \w just|strong="G2531"\w* \w like|strong="G2531"\w* \w he|strong="G3588"\w* \w said|strong="G3004"\w*. \w Come|strong="G1205"\w*, \w see|strong="G3708"\w* \w the|strong="G3588"\w* \w place|strong="G5117"\w* \w where|strong="G3699"\w* \w the|strong="G3588"\w* \w Lord|strong="G3588"\w* \w was|strong="G1510"\w* \w lying|strong="G2749"\w*. +\v 7 \w Go|strong="G4198"\w* \w quickly|strong="G5035"\w* \w and|strong="G2532"\w* \w tell|strong="G3004"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w*, ‘\w He|strong="G2532"\w* \w has|strong="G3708"\w* \w risen|strong="G1453"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*, \w and|strong="G2532"\w* \w behold|strong="G2400"\w*, \w he|strong="G2532"\w* \w goes|strong="G4198"\w* \w before|strong="G4254"\w* \w you|strong="G5210"\w* \w into|strong="G1519"\w* \w Galilee|strong="G1056"\w*; \w there|strong="G1563"\w* \w you|strong="G5210"\w* \w will|strong="G2532"\w* \w see|strong="G3708"\w* \w him|strong="G3588"\w*.’ \w Behold|strong="G2400"\w*, \w I|strong="G2532"\w* \w have|strong="G2532"\w* \w told|strong="G3004"\w* \w you|strong="G5210"\w*.” +\p +\v 8 \w They|strong="G2532"\w* departed \w quickly|strong="G5035"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w tomb|strong="G3419"\w* \w with|strong="G3326"\w* \w fear|strong="G5401"\w* \w and|strong="G2532"\w* \w great|strong="G3173"\w* \w joy|strong="G5479"\w*, \w and|strong="G2532"\w* \w ran|strong="G5143"\w* \w to|strong="G2532"\w* \w bring|strong="G2532"\w* \w his|strong="G2532"\w* \w disciples|strong="G3101"\w* \w word|strong="G3588"\w*. +\v 9 \w As|strong="G1161"\w* \w they|strong="G2532"\w* \w went|strong="G4334"\w* \w to|strong="G2532"\w* \w tell|strong="G3004"\w* \w his|strong="G3708"\w* \w disciples|strong="G3588"\w*, \w behold|strong="G2400"\w*, \w Jesus|strong="G2424"\w* \w met|strong="G5221"\w* \w them|strong="G3588"\w*, \w saying|strong="G3004"\w*, \wj “\+w Rejoice|strong="G5463"\+w*!”\wj* +\p \w They|strong="G2532"\w* \w came|strong="G4334"\w* \w and|strong="G2532"\w* \w took|strong="G2902"\w* \w hold|strong="G2902"\w* \w of|strong="G2532"\w* \w his|strong="G3708"\w* \w feet|strong="G4228"\w*, \w and|strong="G2532"\w* \w worshiped|strong="G4352"\w* \w him|strong="G3588"\w*. +\p +\v 10 \w Then|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “Don’\+w t|strong="G3588"\+w* \+w be|strong="G2532"\+w* \+w afraid|strong="G5399"\+w*. \+w Go|strong="G5217"\+w* \+w tell|strong="G3004"\+w* \+w my|strong="G3708"\+w* brothers \wj*\f + \fr 28:10 \ft The word for “brothers” here may be also correctly translated “brothers and sisters” or “siblings.”\f* \wj \+w that|strong="G2443"\+w* \+w they|strong="G2532"\+w* \+w should|strong="G3588"\+w* \+w go|strong="G5217"\+w* \+w into|strong="G1519"\+w* \+w Galilee|strong="G1056"\+w*, \+w and|strong="G2532"\+w* \+w there|strong="G1563"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w see|strong="G3708"\+w* \+w me|strong="G1473"\+w*.”\wj* +\p +\v 11 \w Now|strong="G1161"\w* \w while|strong="G1161"\w* \w they|strong="G1161"\w* \w were|strong="G3588"\w* \w going|strong="G4198"\w*, \w behold|strong="G2400"\w*, \w some|strong="G5100"\w* \w of|strong="G5100"\w* \w the|strong="G1519"\w* guards \w came|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w city|strong="G4172"\w* \w and|strong="G1161"\w* told \w the|strong="G1519"\w* chief priests \w all|strong="G1161"\w* \w the|strong="G1519"\w* \w things|strong="G3588"\w* \w that|strong="G3588"\w* \w had|strong="G3588"\w* \w happened|strong="G1096"\w*. +\v 12 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w assembled|strong="G4863"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w* \w and|strong="G2532"\w* \w had|strong="G2532"\w* \w taken|strong="G2983"\w* \w counsel|strong="G4824"\w*, \w they|strong="G2532"\w* \w gave|strong="G1325"\w* \w a|strong="G2532"\w* \w large|strong="G2425"\w* amount \w of|strong="G2532"\w* silver \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w soldiers|strong="G4757"\w*, +\v 13 \w saying|strong="G3004"\w*, “\w Say|strong="G3004"\w* \w that|strong="G3754"\w* \w his|strong="G3754"\w* \w disciples|strong="G3101"\w* \w came|strong="G2064"\w* \w by|strong="G3004"\w* \w night|strong="G3571"\w* \w and|strong="G2064"\w* \w stole|strong="G2813"\w* \w him|strong="G3588"\w* \w away|strong="G2813"\w* \w while|strong="G2837"\w* \w we|strong="G2249"\w* \w slept|strong="G2837"\w*. +\v 14 \w If|strong="G1437"\w* \w this|strong="G3778"\w* \w comes|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w governor|strong="G2232"\w*’s ears, \w we|strong="G2249"\w* \w will|strong="G2532"\w* \w persuade|strong="G3982"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w make|strong="G4160"\w* \w you|strong="G5210"\w* free \w of|strong="G2532"\w* worry.” +\v 15 \w So|strong="G2532"\w* \w they|strong="G2532"\w* \w took|strong="G2983"\w* \w the|strong="G2532"\w* money \w and|strong="G2532"\w* \w did|strong="G4160"\w* \w as|strong="G5613"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* told. \w This|strong="G3778"\w* \w saying|strong="G3056"\w* \w was|strong="G3588"\w* \w spread|strong="G1310"\w* \w abroad|strong="G1310"\w* \w among|strong="G3844"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w*, \w and|strong="G2532"\w* continues \w until|strong="G3360"\w* \w today|strong="G4594"\w*. +\p +\v 16 \w But|strong="G1161"\w* \w the|strong="G1519"\w* \w eleven|strong="G1733"\w* \w disciples|strong="G3101"\w* \w went|strong="G4198"\w* \w into|strong="G1519"\w* \w Galilee|strong="G1056"\w*, \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w mountain|strong="G3735"\w* \w where|strong="G3757"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* \w sent|strong="G2424"\w* \w them|strong="G3588"\w*. +\v 17 \w When|strong="G1161"\w* \w they|strong="G2532"\w* \w saw|strong="G3708"\w* \w him|strong="G3588"\w*, \w they|strong="G2532"\w* \w bowed|strong="G4352"\w* \w down|strong="G4352"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*; \w but|strong="G1161"\w* \w some|strong="G3588"\w* \w doubted|strong="G1365"\w*. +\v 18 \w Jesus|strong="G2424"\w* \w came|strong="G4334"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w spoke|strong="G2980"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \w saying|strong="G3004"\w*, \wj “\+w All|strong="G3956"\+w* \+w authority|strong="G1849"\+w* \+w has|strong="G2532"\+w* \+w been|strong="G2532"\+w* \+w given|strong="G1325"\+w* \+w to|strong="G2532"\+w* \+w me|strong="G1325"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w* \+w and|strong="G2532"\+w* \+w on|strong="G1909"\+w* \+w earth|strong="G1093"\+w*. \wj* +\v 19 \wj \+w Go|strong="G4198"\+w*\wj*\f + \fr 28:19 \ft TR and NU add “therefore”\f* \wj \+w and|strong="G2532"\+w* \+w make|strong="G1519"\+w* \+w disciples|strong="G3100"\+w* \+w of|strong="G5207"\+w* \+w all|strong="G3956"\+w* \+w nations|strong="G1484"\+w*, baptizing \+w them|strong="G3588"\+w* \+w in|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w name|strong="G3686"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w and|strong="G2532"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w and|strong="G2532"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G2532"\+w* \+w Holy|strong="G4151"\+w* \+w Spirit|strong="G4151"\+w*, \wj* +\v 20 \wj \+w teaching|strong="G1321"\+w* \+w them|strong="G3588"\+w* \+w to|strong="G2532"\+w* \+w observe|strong="G5083"\+w* \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w that|strong="G3588"\+w* \+w I|strong="G1473"\+w* \+w commanded|strong="G1781"\+w* \+w you|strong="G5210"\+w*. \+w Behold|strong="G2400"\+w*, \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w you|strong="G5210"\+w* \+w always|strong="G3956"\+w*, \+w even|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w end|strong="G4930"\+w* \+w of|strong="G2250"\+w* \+w the|strong="G2532"\+w* age.”\wj* Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/71-MRKeng-web.usfm b/bibles/eng-web_usfm/71-MRKeng-web.usfm new file mode 100644 index 0000000..9890aaf --- /dev/null +++ b/bibles/eng-web_usfm/71-MRKeng-web.usfm @@ -0,0 +1,998 @@ +\id MRK 41-MRK-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Mark +\toc1 The Good News According to Mark +\toc2 Mark +\toc3 Mrk +\mt2 The Good News According to +\mt1 Mark +\c 1 +\p +\v 1 \w The|strong="G3588"\w* beginning \w of|strong="G2098"\w* \w the|strong="G3588"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w of|strong="G2098"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w the|strong="G3588"\w* Son \w of|strong="G2098"\w* \w God|strong="G3588"\w*. +\p +\v 2 \w As|strong="G2531"\w* \w it|strong="G2531"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w prophets|strong="G4396"\w*, +\q1 “\w Behold|strong="G2400"\w*,\f + \fr 1:2 \ft “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w I|strong="G1473"\w* send \w my|strong="G3708"\w* messenger \w before|strong="G4253"\w* \w your|strong="G3708"\w* \w face|strong="G4383"\w*, +\q2 \w who|strong="G3739"\w* \w will|strong="G3739"\w* \w prepare|strong="G2680"\w* \w your|strong="G3708"\w* \w way|strong="G3598"\w* \w before|strong="G4253"\w* \w you|strong="G4771"\w*:\x + \xo 1:2 \xt Malachi 3:1\x* +\q1 +\v 3 \w the|strong="G1722"\w* \w voice|strong="G5456"\w* \w of|strong="G2962"\w* \w one|strong="G3588"\w* crying \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wilderness|strong="G2048"\w*, +\q2 ‘\w Make|strong="G4160"\w* \w ready|strong="G2090"\w* \w the|strong="G1722"\w* \w way|strong="G3598"\w* \w of|strong="G2962"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*! +\q2 \w Make|strong="G4160"\w* \w his|strong="G1722"\w* \w paths|strong="G5147"\w* \w straight|strong="G2117"\w*!’”\x + \xo 1:3 \xt Isaiah 40:3\x* +\p +\v 4 \w John|strong="G2491"\w* \w came|strong="G1096"\w* baptizing\f + \fr 1:4 \ft or, immersing\f* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wilderness|strong="G2048"\w* \w and|strong="G2532"\w* \w preaching|strong="G2784"\w* \w the|strong="G1722"\w* baptism \w of|strong="G2532"\w* \w repentance|strong="G3341"\w* \w for|strong="G1519"\w* forgiveness \w of|strong="G2532"\w* sins. +\v 5 \w All|strong="G3956"\w* \w the|strong="G1722"\w* \w country|strong="G5561"\w* \w of|strong="G5259"\w* \w Judea|strong="G2449"\w* \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w those|strong="G3588"\w* \w of|strong="G5259"\w* \w Jerusalem|strong="G2415"\w* \w went|strong="G2532"\w* \w out|strong="G1607"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*. \w They|strong="G2532"\w* \w were|strong="G3588"\w* baptized \w by|strong="G1722"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Jordan|strong="G2446"\w* \w river|strong="G4215"\w*, \w confessing|strong="G1843"\w* \w their|strong="G2532"\w* sins. +\v 6 \w John|strong="G2491"\w* \w was|strong="G1510"\w* \w clothed|strong="G1746"\w* \w with|strong="G2532"\w* \w camel|strong="G2574"\w*’s \w hair|strong="G2359"\w* \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w leather|strong="G1193"\w* \w belt|strong="G2223"\w* \w around|strong="G4012"\w* \w his|strong="G4012"\w* \w waist|strong="G3751"\w*. \w He|strong="G2532"\w* \w ate|strong="G2068"\w* locusts \w and|strong="G2532"\w* \w wild|strong="G2532"\w* \w honey|strong="G3192"\w*. +\v 7 \w He|strong="G2532"\w* \w preached|strong="G2784"\w*, \w saying|strong="G3004"\w*, “\w After|strong="G3694"\w* \w me|strong="G1473"\w* \w comes|strong="G2064"\w* \w he|strong="G2532"\w* \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w mightier|strong="G2478"\w* \w than|strong="G2478"\w* \w I|strong="G1473"\w*, \w the|strong="G2532"\w* strap \w of|strong="G2532"\w* \w whose|strong="G3739"\w* \w sandals|strong="G5266"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w not|strong="G3756"\w* \w worthy|strong="G2425"\w* \w to|strong="G2532"\w* \w stoop|strong="G2955"\w* \w down|strong="G3089"\w* \w and|strong="G2532"\w* loosen. +\v 8 \w I|strong="G1473"\w* baptized \w you|strong="G5210"\w* \w in|strong="G1722"\w*\f + \fr 1:8 \ft The Greek word (en) translated here as “in” could also be translated as “with” in some contexts.\f* \w water|strong="G5204"\w*, \w but|strong="G1161"\w* \w he|strong="G1161"\w* \w will|strong="G1473"\w* baptize \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*.” +\p +\v 9 \w In|strong="G1722"\w* \w those|strong="G3588"\w* \w days|strong="G2250"\w*, \w Jesus|strong="G2424"\w* \w came|strong="G2064"\w* \w from|strong="G2064"\w* \w Nazareth|strong="G3478"\w* \w of|strong="G5259"\w* \w Galilee|strong="G1056"\w*, \w and|strong="G2532"\w* \w was|strong="G1096"\w* baptized \w by|strong="G1722"\w* \w John|strong="G2491"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Jordan|strong="G2446"\w*. +\v 10 \w Immediately|strong="G2112"\w* \w coming|strong="G2597"\w* \w up|strong="G1519"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w water|strong="G5204"\w*, \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w the|strong="G2532"\w* \w heavens|strong="G3772"\w* parting \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w* \w descending|strong="G2597"\w* \w on|strong="G1519"\w* \w him|strong="G3588"\w* \w like|strong="G5613"\w* \w a|strong="G5613"\w* \w dove|strong="G4058"\w*. +\v 11 \w A|strong="G1096"\w* \w voice|strong="G5456"\w* \w came|strong="G1096"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w sky|strong="G3772"\w*, “\w You|strong="G4771"\w* \w are|strong="G1510"\w* \w my|strong="G1722"\w* beloved \w Son|strong="G5207"\w*, \w in|strong="G1722"\w* \w whom|strong="G3588"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w well|strong="G2532"\w* \w pleased|strong="G2106"\w*.” +\p +\v 12 \w Immediately|strong="G2112"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w* \w drove|strong="G1544"\w* \w him|strong="G3588"\w* \w out|strong="G1544"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w wilderness|strong="G2048"\w*. +\v 13 \w He|strong="G2532"\w* \w was|strong="G1510"\w* \w there|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wilderness|strong="G2048"\w* \w forty|strong="G5062"\w* \w days|strong="G2250"\w*, \w tempted|strong="G3985"\w* \w by|strong="G1722"\w* \w Satan|strong="G4567"\w*. \w He|strong="G2532"\w* \w was|strong="G1510"\w* \w with|strong="G3326"\w* \w the|strong="G1722"\w* \w wild|strong="G2342"\w* animals; \w and|strong="G2532"\w* \w the|strong="G1722"\w* angels \w were|strong="G1510"\w* \w serving|strong="G1247"\w* \w him|strong="G3588"\w*. +\p +\v 14 \w Now|strong="G1161"\w* \w after|strong="G3326"\w* \w John|strong="G2491"\w* \w was|strong="G3588"\w* \w taken|strong="G3860"\w* \w into|strong="G1519"\w* \w custody|strong="G3860"\w*, \w Jesus|strong="G2424"\w* \w came|strong="G2064"\w* \w into|strong="G1519"\w* \w Galilee|strong="G1056"\w*, \w preaching|strong="G2784"\w* \w the|strong="G2532"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*’s Kingdom, +\v 15 \w and|strong="G2532"\w* \w saying|strong="G3004"\w*, \wj “\+w The|strong="G1722"\+w* \+w time|strong="G2540"\+w* \+w is|strong="G3588"\+w* \+w fulfilled|strong="G4137"\+w*, \+w and|strong="G2532"\+w* \+w God|strong="G2316"\+w*’s Kingdom \+w is|strong="G3588"\+w* \+w at|strong="G1722"\+w* \+w hand|strong="G1448"\+w*! \+w Repent|strong="G3340"\+w*, \+w and|strong="G2532"\+w* \+w believe|strong="G4100"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w Good|strong="G3588"\+w* \+w News|strong="G2098"\+w*.”\wj* +\p +\v 16 \w Passing|strong="G3855"\w* \w along|strong="G2532"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w* \w of|strong="G2532"\w* \w Galilee|strong="G1056"\w*, \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w Simon|strong="G4613"\w* \w and|strong="G2532"\w* Andrew, \w the|strong="G1722"\w* brother \w of|strong="G2532"\w* \w Simon|strong="G4613"\w*, casting \w a|strong="G2532"\w* net \w into|strong="G1722"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w*, \w for|strong="G1063"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* fishermen. +\v 17 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Come|strong="G1096"\+w* \+w after|strong="G3694"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w make|strong="G4160"\+w* \+w you|strong="G5210"\+w* \+w into|strong="G1096"\+w* fishers \+w for|strong="G2532"\+w* \+w men|strong="G3588"\+w*.”\wj* +\p +\v 18 \w Immediately|strong="G2112"\w* \w they|strong="G2532"\w* left \w their|strong="G2532"\w* \w nets|strong="G1350"\w*, \w and|strong="G2532"\w* followed \w him|strong="G3588"\w*. +\p +\v 19 \w Going|strong="G2532"\w* \w on|strong="G1722"\w* \w a|strong="G2532"\w* \w little|strong="G3641"\w* \w further|strong="G3641"\w* \w from|strong="G2532"\w* \w there|strong="G2532"\w*, \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w James|strong="G2385"\w* \w the|strong="G1722"\w* son \w of|strong="G2532"\w* \w Zebedee|strong="G2199"\w*, \w and|strong="G2532"\w* \w John|strong="G2491"\w* \w his|strong="G1438"\w* brother, \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w also|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w boat|strong="G4143"\w* \w mending|strong="G2675"\w* \w the|strong="G1722"\w* \w nets|strong="G1350"\w*. +\v 20 \w Immediately|strong="G2112"\w* \w he|strong="G2532"\w* \w called|strong="G2564"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* left \w their|strong="G1438"\w* \w father|strong="G3962"\w*, \w Zebedee|strong="G2199"\w*, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w boat|strong="G4143"\w* \w with|strong="G3326"\w* \w the|strong="G1722"\w* \w hired|strong="G3411"\w* \w servants|strong="G3411"\w*, \w and|strong="G2532"\w* \w went|strong="G2532"\w* \w after|strong="G3326"\w* \w him|strong="G3588"\w*. +\p +\v 21 \w They|strong="G2532"\w* \w went|strong="G2532"\w* \w into|strong="G1519"\w* \w Capernaum|strong="G2584"\w*, \w and|strong="G2532"\w* \w immediately|strong="G2112"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w Sabbath|strong="G4521"\w* \w day|strong="G4521"\w* \w he|strong="G2532"\w* \w entered|strong="G1531"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w synagogue|strong="G4864"\w* \w and|strong="G2532"\w* \w taught|strong="G1321"\w*. +\v 22 \w They|strong="G2532"\w* \w were|strong="G1510"\w* \w astonished|strong="G1605"\w* \w at|strong="G1909"\w* \w his|strong="G1438"\w* \w teaching|strong="G1321"\w*, \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w taught|strong="G1321"\w* \w them|strong="G3588"\w* \w as|strong="G5613"\w* \w having|strong="G2192"\w* \w authority|strong="G1849"\w*, \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w as|strong="G5613"\w* \w the|strong="G2532"\w* \w scribes|strong="G1122"\w*. +\v 23 \w Immediately|strong="G2112"\w* \w there|strong="G2532"\w* \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w their|strong="G2532"\w* \w synagogue|strong="G4864"\w* \w a|strong="G2532"\w* man \w with|strong="G1722"\w* \w an|strong="G2532"\w* unclean \w spirit|strong="G4151"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w cried|strong="G2532"\w* \w out|strong="G2532"\w*, +\v 24 \w saying|strong="G3004"\w*, “Ha! \w What|strong="G5101"\w* \w do|strong="G5101"\w* \w we|strong="G2249"\w* \w have|strong="G2532"\w* \w to|strong="G2532"\w* \w do|strong="G5101"\w* \w with|strong="G2532"\w* \w you|strong="G4771"\w*, \w Jesus|strong="G2424"\w*, \w you|strong="G4771"\w* \w Nazarene|strong="G3479"\w*? \w Have|strong="G2532"\w* \w you|strong="G4771"\w* \w come|strong="G2064"\w* \w to|strong="G2532"\w* destroy \w us|strong="G3004"\w*? \w I|strong="G1473"\w* \w know|strong="G1492"\w* \w who|strong="G5101"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w*: \w the|strong="G2532"\w* Holy \w One|strong="G3588"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*!” +\p +\v 25 \w Jesus|strong="G2424"\w* \w rebuked|strong="G2008"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, \wj “\+w Be|strong="G2532"\+w* \+w quiet|strong="G5392"\+w*, \+w and|strong="G2532"\+w* \+w come|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w of|strong="G1537"\+w* \+w him|strong="G3588"\+w*!” \wj* +\p +\v 26 \w The|strong="G2532"\w* unclean \w spirit|strong="G4151"\w*, convulsing \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w crying|strong="G5455"\w* \w with|strong="G1537"\w* \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, \w came|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w him|strong="G3588"\w*. +\v 27 \w They|strong="G2532"\w* \w were|strong="G1510"\w* \w all|strong="G2532"\w* \w amazed|strong="G2284"\w*, \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w questioned|strong="G4802"\w* \w among|strong="G4314"\w* \w themselves|strong="G1438"\w*, \w saying|strong="G3004"\w*, “\w What|strong="G5101"\w* \w is|strong="G1510"\w* \w this|strong="G3778"\w*? \w A|strong="G2532"\w* \w new|strong="G2537"\w* \w teaching|strong="G1322"\w*? \w For|strong="G4314"\w* \w with|strong="G4314"\w* \w authority|strong="G1849"\w* \w he|strong="G2532"\w* \w commands|strong="G2004"\w* \w even|strong="G2532"\w* \w the|strong="G2532"\w* unclean \w spirits|strong="G4151"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w obey|strong="G5219"\w* \w him|strong="G3588"\w*!” +\v 28 \w The|strong="G2532"\w* report \w of|strong="G2532"\w* \w him|strong="G3588"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w immediately|strong="G2112"\w* \w everywhere|strong="G3837"\w* \w into|strong="G1519"\w* \w all|strong="G3650"\w* \w the|strong="G2532"\w* \w region|strong="G4066"\w* \w of|strong="G2532"\w* \w Galilee|strong="G1056"\w* \w and|strong="G2532"\w* its \w surrounding|strong="G4066"\w* area. +\p +\v 29 \w Immediately|strong="G2112"\w*, \w when|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w come|strong="G2064"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w synagogue|strong="G4864"\w*, \w they|strong="G2532"\w* \w came|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w house|strong="G3614"\w* \w of|strong="G1537"\w* \w Simon|strong="G4613"\w* \w and|strong="G2532"\w* Andrew, \w with|strong="G3326"\w* \w James|strong="G2385"\w* \w and|strong="G2532"\w* \w John|strong="G2491"\w*. +\v 30 \w Now|strong="G1161"\w* \w Simon|strong="G4613"\w*’s wife’s mother \w lay|strong="G2621"\w* \w sick|strong="G2621"\w* \w with|strong="G2532"\w* \w a|strong="G2532"\w* \w fever|strong="G4445"\w*, \w and|strong="G2532"\w* \w immediately|strong="G2112"\w* \w they|strong="G2532"\w* \w told|strong="G3004"\w* \w him|strong="G3588"\w* \w about|strong="G4012"\w* \w her|strong="G3588"\w*. +\v 31 \w He|strong="G2532"\w* \w came|strong="G4334"\w* \w and|strong="G2532"\w* \w took|strong="G2902"\w* \w her|strong="G1438"\w* \w by|strong="G2532"\w* \w the|strong="G2532"\w* \w hand|strong="G5495"\w* \w and|strong="G2532"\w* \w raised|strong="G1453"\w* \w her|strong="G1438"\w* \w up|strong="G1453"\w*. \w The|strong="G2532"\w* \w fever|strong="G4446"\w* left \w her|strong="G1438"\w* immediately,\f + \fr 1:31 \ft NU omits “immediately”.\f* \w and|strong="G2532"\w* \w she|strong="G2532"\w* \w served|strong="G1247"\w* \w them|strong="G3588"\w*. +\p +\v 32 \w At|strong="G4314"\w* \w evening|strong="G3798"\w*, \w when|strong="G3753"\w* \w the|strong="G2532"\w* \w sun|strong="G2246"\w* \w had|strong="G2192"\w* \w set|strong="G2532"\w*, \w they|strong="G2532"\w* \w brought|strong="G5342"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w* \w all|strong="G3956"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w sick|strong="G2560"\w* \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w possessed|strong="G2192"\w* \w by|strong="G4314"\w* demons. +\v 33 \w All|strong="G3650"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w was|strong="G1510"\w* \w gathered|strong="G1996"\w* \w together|strong="G1996"\w* \w at|strong="G4314"\w* \w the|strong="G2532"\w* \w door|strong="G2374"\w*. +\v 34 \w He|strong="G2532"\w* \w healed|strong="G2323"\w* \w many|strong="G4183"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w sick|strong="G2560"\w* \w with|strong="G2532"\w* \w various|strong="G4164"\w* \w diseases|strong="G3554"\w* \w and|strong="G2532"\w* \w cast|strong="G1544"\w* \w out|strong="G1544"\w* \w many|strong="G4183"\w* \w demons|strong="G1140"\w*. \w He|strong="G2532"\w* didn’\w t|strong="G3588"\w* allow \w the|strong="G2532"\w* \w demons|strong="G1140"\w* \w to|strong="G2532"\w* \w speak|strong="G2980"\w*, \w because|strong="G3754"\w* \w they|strong="G2532"\w* \w knew|strong="G1492"\w* \w him|strong="G3588"\w*. +\p +\v 35 \w Early|strong="G4404"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w morning|strong="G4404"\w*, \w while|strong="G2532"\w* \w it|strong="G2532"\w* \w was|strong="G2532"\w* \w still|strong="G3029"\w* \w dark|strong="G1773"\w*, \w he|strong="G2532"\w* \w rose|strong="G2532"\w* \w up|strong="G1519"\w* \w and|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w*, \w and|strong="G2532"\w* \w departed|strong="G1831"\w* \w into|strong="G1519"\w* \w a|strong="G2532"\w* \w deserted|strong="G2048"\w* \w place|strong="G5117"\w*, \w and|strong="G2532"\w* \w prayed|strong="G4336"\w* \w there|strong="G2532"\w*. +\v 36 \w Simon|strong="G4613"\w* \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w* \w searched|strong="G2614"\w* \w for|strong="G2532"\w* \w him|strong="G3588"\w*. +\v 37 \w They|strong="G2532"\w* \w found|strong="G2147"\w* \w him|strong="G2532"\w* \w and|strong="G2532"\w* \w told|strong="G3004"\w* \w him|strong="G2532"\w*, “\w Everyone|strong="G3956"\w* \w is|strong="G3956"\w* \w looking|strong="G2212"\w* \w for|strong="G3754"\w* \w you|strong="G4771"\w*.” +\p +\v 38 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Let|strong="G2443"\+w*’\+w s|strong="G2192"\+w* \+w go|strong="G1831"\+w* elsewhere \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w next|strong="G2192"\+w* \+w towns|strong="G2969"\+w*, \+w that|strong="G2443"\+w* \+w I|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w preach|strong="G2784"\+w* \+w there|strong="G1563"\+w* \+w also|strong="G2532"\+w*, \+w because|strong="G1063"\+w* \+w I|strong="G2532"\+w* \+w came|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w for|strong="G1063"\+w* \+w this|strong="G3778"\+w* reason.”\wj* +\v 39 \w He|strong="G2532"\w* \w went|strong="G2064"\w* \w into|strong="G1519"\w* \w their|strong="G2532"\w* \w synagogues|strong="G4864"\w* \w throughout|strong="G1519"\w* \w all|strong="G3650"\w* \w Galilee|strong="G1056"\w*, \w preaching|strong="G2784"\w* \w and|strong="G2532"\w* \w casting|strong="G1544"\w* \w out|strong="G1544"\w* \w demons|strong="G1140"\w*. +\p +\v 40 \w A|strong="G2532"\w* \w leper|strong="G3015"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w him|strong="G2532"\w*, \w begging|strong="G3870"\w* \w him|strong="G2532"\w*, \w kneeling|strong="G2532"\w* \w down|strong="G1120"\w* \w to|strong="G4314"\w* \w him|strong="G2532"\w*, \w and|strong="G2532"\w* \w saying|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G2532"\w*, “\w If|strong="G1437"\w* \w you|strong="G1437"\w* \w want|strong="G2309"\w* \w to|strong="G4314"\w*, \w you|strong="G1437"\w* \w can|strong="G1410"\w* \w make|strong="G2511"\w* \w me|strong="G1473"\w* \w clean|strong="G2511"\w*.” +\p +\v 41 \w Being|strong="G2532"\w* \w moved|strong="G4697"\w* \w with|strong="G2532"\w* \w compassion|strong="G4697"\w*, \w he|strong="G2532"\w* \w stretched|strong="G1614"\w* \w out|strong="G2532"\w* \w his|strong="G2532"\w* \w hand|strong="G5495"\w*, \w and|strong="G2532"\w* touched \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w I|strong="G2532"\+w* \+w want|strong="G2309"\+w* \+w to|strong="G2532"\+w*. \+w Be|strong="G2532"\+w* \+w made|strong="G3004"\+w* \+w clean|strong="G2511"\+w*.”\wj* +\v 42 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w said|strong="G2532"\w* \w this|strong="G3588"\w*, \w immediately|strong="G2112"\w* \w the|strong="G2532"\w* \w leprosy|strong="G3014"\w* departed \w from|strong="G2532"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* made \w clean|strong="G2511"\w*. +\v 43 \w He|strong="G2532"\w* strictly \w warned|strong="G1690"\w* \w him|strong="G2532"\w* \w and|strong="G2532"\w* \w immediately|strong="G2112"\w* \w sent|strong="G1544"\w* \w him|strong="G2532"\w* \w out|strong="G1544"\w*, +\v 44 \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \wj “\+w See|strong="G3708"\+w* \+w that|strong="G3739"\+w* \+w you|strong="G4771"\+w* \+w say|strong="G3004"\+w* \+w nothing|strong="G3367"\+w* \+w to|strong="G1519"\+w* anybody, \+w but|strong="G2532"\+w* \+w go|strong="G5217"\+w* \+w show|strong="G1166"\+w* \+w yourself|strong="G4572"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w priest|strong="G2409"\+w* \+w and|strong="G2532"\+w* \+w offer|strong="G4374"\+w* \+w for|strong="G1519"\+w* \+w your|strong="G2532"\+w* \+w cleansing|strong="G2512"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3588"\+w* \+w which|strong="G3739"\+w* \+w Moses|strong="G3475"\+w* \+w commanded|strong="G4367"\+w*, \+w for|strong="G1519"\+w* \+w a|strong="G2532"\+w* \+w testimony|strong="G3142"\+w* \+w to|strong="G1519"\+w* \+w them|strong="G3588"\+w*.”\wj* +\p +\v 45 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w*, \w and|strong="G2532"\w* \w began|strong="G1909"\w* \w to|strong="G1519"\w* \w proclaim|strong="G2784"\w* \w it|strong="G2532"\w* \w much|strong="G4183"\w*, \w and|strong="G2532"\w* \w to|strong="G1519"\w* \w spread|strong="G1831"\w* \w about|strong="G1909"\w* \w the|strong="G2532"\w* \w matter|strong="G3056"\w*, \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w Jesus|strong="G1525"\w* \w could|strong="G1410"\w* \w no|strong="G3371"\w* \w more|strong="G4183"\w* \w openly|strong="G5320"\w* \w enter|strong="G1525"\w* \w into|strong="G1519"\w* \w a|strong="G2532"\w* \w city|strong="G4172"\w*, \w but|strong="G1161"\w* \w was|strong="G1510"\w* \w outside|strong="G1854"\w* \w in|strong="G1519"\w* \w desert|strong="G2048"\w* \w places|strong="G5117"\w*. \w People|strong="G1510"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w from|strong="G2064"\w* \w everywhere|strong="G3840"\w*. +\c 2 +\p +\v 1 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w entered|strong="G1525"\w* \w again|strong="G3825"\w* \w into|strong="G1519"\w* \w Capernaum|strong="G2584"\w* \w after|strong="G1223"\w* \w some|strong="G1722"\w* \w days|strong="G2250"\w*, \w it|strong="G2532"\w* \w was|strong="G1510"\w* heard \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w at|strong="G1722"\w* \w home|strong="G3624"\w*. +\v 2 Immediately \w many|strong="G4183"\w* \w were|strong="G3588"\w* \w gathered|strong="G4863"\w* \w together|strong="G4863"\w*, \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w there|strong="G2532"\w* \w was|strong="G3588"\w* \w no|strong="G3371"\w* \w more|strong="G4183"\w* \w room|strong="G5562"\w*, \w not|strong="G3366"\w* \w even|strong="G2532"\w* \w around|strong="G4314"\w* \w the|strong="G2532"\w* \w door|strong="G2374"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w spoke|strong="G2980"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*. +\v 3 \w Four|strong="G5064"\w* people \w came|strong="G2064"\w*, \w carrying|strong="G5342"\w* \w a|strong="G2532"\w* \w paralytic|strong="G3885"\w* \w to|strong="G4314"\w* \w him|strong="G2532"\w*. +\v 4 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w could|strong="G1410"\w* \w not|strong="G3361"\w* \w come|strong="G1510"\w* near \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w for|strong="G1223"\w* \w the|strong="G2532"\w* \w crowd|strong="G3793"\w*, \w they|strong="G2532"\w* removed \w the|strong="G2532"\w* \w roof|strong="G4721"\w* \w where|strong="G3699"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w*. \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w broken|strong="G1846"\w* \w it|strong="G2532"\w* \w up|strong="G4374"\w*, \w they|strong="G2532"\w* \w let|strong="G5465"\w* \w down|strong="G5465"\w* \w the|strong="G2532"\w* \w mat|strong="G2895"\w* \w that|strong="G3588"\w* \w the|strong="G2532"\w* \w paralytic|strong="G3885"\w* \w was|strong="G1510"\w* \w lying|strong="G2621"\w* \w on|strong="G3588"\w*. +\v 5 \w Jesus|strong="G2424"\w*, \w seeing|strong="G3708"\w* \w their|strong="G2532"\w* \w faith|strong="G4102"\w*, \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w paralytic|strong="G3885"\w*, \wj “\+w Son|strong="G5043"\+w*, \+w your|strong="G2532"\+w* sins \+w are|strong="G3588"\+w* forgiven \+w you|strong="G4771"\+w*.”\wj* +\p +\v 6 \w But|strong="G1161"\w* \w there|strong="G1563"\w* \w were|strong="G1510"\w* \w some|strong="G5100"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w scribes|strong="G1122"\w* \w sitting|strong="G2521"\w* \w there|strong="G1563"\w* \w and|strong="G2532"\w* \w reasoning|strong="G1260"\w* \w in|strong="G1722"\w* \w their|strong="G2532"\w* \w hearts|strong="G2588"\w*, +\v 7 “\w Why|strong="G5101"\w* \w does|strong="G5101"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w speak|strong="G2980"\w* blasphemies \w like|strong="G3779"\w* \w that|strong="G3588"\w*? \w Who|strong="G5101"\w* \w can|strong="G1410"\w* forgive sins \w but|strong="G1487"\w* \w God|strong="G2316"\w* \w alone|strong="G1520"\w*?” +\p +\v 8 \w Immediately|strong="G2112"\w* \w Jesus|strong="G2424"\w*, \w perceiving|strong="G1921"\w* \w in|strong="G1722"\w* \w his|strong="G1438"\w* \w spirit|strong="G4151"\w* \w that|strong="G3754"\w* \w they|strong="G2532"\w* \w so|strong="G3779"\w* \w reasoned|strong="G1260"\w* \w within|strong="G1722"\w* \w themselves|strong="G1438"\w*, \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Why|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w reason|strong="G1260"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G2532"\+w* \+w hearts|strong="G2588"\+w*? \wj* +\v 9 \wj \+w Which|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w easier|strong="G2123"\+w*, \+w to|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w the|strong="G2532"\+w* \+w paralytic|strong="G3885"\+w*, ‘\+w Your|strong="G2532"\+w* sins \+w are|strong="G1510"\+w* forgiven;’ \+w or|strong="G2228"\+w* \+w to|strong="G2532"\+w* \+w say|strong="G3004"\+w*, ‘\+w Arise|strong="G1453"\+w*, \+w and|strong="G2532"\+w* \+w take|strong="G2532"\+w* \+w up|strong="G1453"\+w* \+w your|strong="G2532"\+w* \+w bed|strong="G2895"\+w*, \+w and|strong="G2532"\+w* \+w walk|strong="G4043"\+w*’? \wj* +\v 10 \wj \+w But|strong="G1161"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G3754"\+w* \+w may|strong="G2443"\+w* \+w know|strong="G1492"\+w* \+w that|strong="G3754"\+w* \+w the|strong="G1161"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w* \+w has|strong="G2192"\+w* \+w authority|strong="G1849"\+w* \+w on|strong="G1909"\+w* \+w earth|strong="G1093"\+w* \+w to|strong="G2443"\+w* forgive sins”\wj*—\w he|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G2443"\w* \w the|strong="G1161"\w* \w paralytic|strong="G3885"\w*— +\v 11 \wj “\+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w*, \+w arise|strong="G1453"\+w*, \+w take|strong="G2532"\+w* \+w up|strong="G1453"\+w* \+w your|strong="G2532"\+w* \+w mat|strong="G2895"\+w*, \+w and|strong="G2532"\+w* \+w go|strong="G5217"\+w* \+w to|strong="G1519"\+w* \+w your|strong="G2532"\+w* \+w house|strong="G3624"\+w*.” \wj* +\p +\v 12 \w He|strong="G2532"\w* \w arose|strong="G1453"\w*, \w and|strong="G2532"\w* \w immediately|strong="G2112"\w* \w took|strong="G2532"\w* \w up|strong="G1453"\w* \w the|strong="G2532"\w* \w mat|strong="G2895"\w* \w and|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w in|strong="G2532"\w* \w front|strong="G1715"\w* \w of|strong="G2316"\w* \w them|strong="G3588"\w* \w all|strong="G3956"\w*, \w so|strong="G3779"\w* \w that|strong="G3754"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w all|strong="G3956"\w* \w amazed|strong="G1839"\w* \w and|strong="G2532"\w* \w glorified|strong="G1392"\w* \w God|strong="G2316"\w*, \w saying|strong="G3004"\w*, “\w We|strong="G3754"\w* \w never|strong="G3763"\w* \w saw|strong="G3708"\w* \w anything|strong="G3956"\w* \w like|strong="G3779"\w* \w this|strong="G3588"\w*!” +\p +\v 13 \w He|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w again|strong="G3825"\w* \w by|strong="G3844"\w* \w the|strong="G2532"\w* seaside. \w All|strong="G3956"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w taught|strong="G1321"\w* \w them|strong="G3588"\w*. +\v 14 \w As|strong="G2532"\w* \w he|strong="G2532"\w* \w passed|strong="G3855"\w* \w by|strong="G1909"\w*, \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w Levi|strong="G3018"\w* \w the|strong="G2532"\w* son \w of|strong="G2532"\w* Alphaeus \w sitting|strong="G2521"\w* \w at|strong="G1909"\w* \w the|strong="G2532"\w* \w tax|strong="G5058"\w* office. \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “Follow \+w me|strong="G1473"\+w*.”\wj* \w And|strong="G2532"\w* \w he|strong="G2532"\w* arose \w and|strong="G2532"\w* followed \w him|strong="G3588"\w*. +\p +\v 15 \w He|strong="G2532"\w* \w was|strong="G1510"\w* \w reclining|strong="G2621"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w table|strong="G4873"\w* \w in|strong="G1722"\w* \w his|strong="G1722"\w* \w house|strong="G3614"\w*, \w and|strong="G2532"\w* \w many|strong="G4183"\w* \w tax|strong="G5057"\w* \w collectors|strong="G5057"\w* \w and|strong="G2532"\w* sinners \w sat|strong="G2532"\w* \w down|strong="G2621"\w* \w with|strong="G1722"\w* \w Jesus|strong="G2424"\w* \w and|strong="G2532"\w* \w his|strong="G1722"\w* \w disciples|strong="G3101"\w*, \w for|strong="G1063"\w* \w there|strong="G2532"\w* \w were|strong="G1510"\w* \w many|strong="G4183"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w followed|strong="G1096"\w* \w him|strong="G3588"\w*. +\v 16 \w The|strong="G2532"\w* \w scribes|strong="G1122"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w*, \w when|strong="G2532"\w* \w they|strong="G2532"\w* \w saw|strong="G3708"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w eating|strong="G2068"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* sinners \w and|strong="G2532"\w* \w tax|strong="G5057"\w* \w collectors|strong="G5057"\w*, \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w his|strong="G3708"\w* \w disciples|strong="G3101"\w*, “\w Why|strong="G3754"\w* \w is|strong="G3588"\w* \w it|strong="G2532"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w eats|strong="G2068"\w* \w and|strong="G2532"\w* \w drinks|strong="G4095"\w* \w with|strong="G3326"\w* \w tax|strong="G5057"\w* \w collectors|strong="G5057"\w* \w and|strong="G2532"\w* sinners?” +\p +\v 17 \w When|strong="G2532"\w* \w Jesus|strong="G2424"\w* heard \w it|strong="G2532"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w healthy|strong="G2480"\+w* \+w have|strong="G2192"\+w* \+w no|strong="G3756"\+w* \+w need|strong="G5532"\+w* \+w for|strong="G2532"\+w* \+w a|strong="G2192"\+w* \+w physician|strong="G2395"\+w*, \+w but|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w sick|strong="G2560"\+w*. \+w I|strong="G2532"\+w* \+w came|strong="G2064"\+w* \+w not|strong="G3756"\+w* \+w to|strong="G2532"\+w* \+w call|strong="G2564"\+w* \+w the|strong="G2532"\+w* \+w righteous|strong="G1342"\+w*, \+w but|strong="G2532"\+w* sinners \+w to|strong="G2532"\+w* repentance.”\wj* +\p +\v 18 \w John|strong="G2491"\w*’s \w disciples|strong="G3101"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w were|strong="G1510"\w* \w fasting|strong="G3522"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w asked|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Why|strong="G5101"\w* \w do|strong="G5101"\w* \w John|strong="G2491"\w*’s \w disciples|strong="G3101"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w fast|strong="G3522"\w*, \w but|strong="G1161"\w* \w your|strong="G4674"\w* \w disciples|strong="G3101"\w* don’\w t|strong="G3588"\w* \w fast|strong="G3522"\w*?” +\p +\v 19 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Can|strong="G1410"\+w* \+w the|strong="G1722"\+w* groomsmen \+w fast|strong="G3522"\+w* \+w while|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w bridegroom|strong="G3566"\+w* \+w is|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w them|strong="G3588"\+w*? \+w As|strong="G3745"\+w* \+w long|strong="G5550"\+w* \+w as|strong="G3745"\+w* \+w they|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w the|strong="G1722"\+w* \+w bridegroom|strong="G3566"\+w* \+w with|strong="G3326"\+w* \+w them|strong="G3588"\+w*, \+w they|strong="G2532"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w fast|strong="G3522"\+w*. \wj* +\v 20 \wj \+w But|strong="G1161"\+w* \+w the|strong="G1722"\+w* \+w days|strong="G2250"\+w* \+w will|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w when|strong="G3752"\+w* \+w the|strong="G1722"\+w* \+w bridegroom|strong="G3566"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* taken away \+w from|strong="G2064"\+w* \+w them|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w then|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w fast|strong="G3522"\+w* \+w in|strong="G1722"\+w* \+w that|strong="G3588"\+w* \+w day|strong="G2250"\+w*. \wj* +\v 21 \wj \+w No|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w sews|strong="G1976"\+w* \+w a|strong="G1096"\+w* \+w piece|strong="G1915"\+w* \+w of|strong="G2532"\+w* unshrunk \+w cloth|strong="G4470"\+w* \+w on|strong="G1909"\+w* \+w an|strong="G2532"\+w* \+w old|strong="G3820"\+w* \+w garment|strong="G2440"\+w*, \+w or|strong="G2532"\+w* \+w else|strong="G3361"\+w* \+w the|strong="G2532"\+w* \+w patch|strong="G1915"\+w* shrinks \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w new|strong="G2537"\+w* tears away \+w from|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w old|strong="G3820"\+w*, \+w and|strong="G2532"\+w* \+w a|strong="G1096"\+w* \+w worse|strong="G5501"\+w* hole \+w is|strong="G3588"\+w* \+w made|strong="G1096"\+w*. \wj* +\v 22 \wj \+w No|strong="G3762"\+w* \+w one|strong="G3762"\+w* puts \+w new|strong="G2537"\+w* \+w wine|strong="G3631"\+w* \+w into|strong="G1519"\+w* \+w old|strong="G3820"\+w* wineskins; \+w or|strong="G2532"\+w* \+w else|strong="G3361"\+w* \+w the|strong="G2532"\+w* \+w new|strong="G2537"\+w* \+w wine|strong="G3631"\+w* \+w will|strong="G2532"\+w* \+w burst|strong="G4486"\+w* \+w the|strong="G2532"\+w* skins, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w wine|strong="G3631"\+w* pours \+w out|strong="G2532"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* skins \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* destroyed; \+w but|strong="G1161"\+w* \+w they|strong="G2532"\+w* \+w put|strong="G2532"\+w* \+w new|strong="G2537"\+w* \+w wine|strong="G3631"\+w* \+w into|strong="G1519"\+w* \+w fresh|strong="G2537"\+w* wineskins.”\wj* +\p +\v 23 \w He|strong="G2532"\w* \w was|strong="G1096"\w* \w going|strong="G2532"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w Sabbath|strong="G4521"\w* \w day|strong="G4521"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w grain|strong="G4719"\w* \w fields|strong="G4702"\w*; \w and|strong="G2532"\w* \w his|strong="G1223"\w* \w disciples|strong="G3101"\w* \w began|strong="G1096"\w*, \w as|strong="G1722"\w* \w they|strong="G2532"\w* \w went|strong="G2532"\w*, \w to|strong="G2532"\w* \w pluck|strong="G5089"\w* \w the|strong="G1722"\w* ears \w of|strong="G1223"\w* \w grain|strong="G4719"\w*. +\v 24 \w The|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Behold|strong="G2396"\w*, \w why|strong="G5101"\w* \w do|strong="G4160"\w* \w they|strong="G2532"\w* \w do|strong="G4160"\w* \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w lawful|strong="G1832"\w* \w on|strong="G4160"\w* \w the|strong="G2532"\w* \w Sabbath|strong="G4521"\w* \w day|strong="G4521"\w*?” +\p +\v 25 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Did|strong="G4160"\+w* \+w you|strong="G3004"\+w* \+w never|strong="G3763"\+w* read \+w what|strong="G5101"\+w* \+w David|strong="G1138"\+w* \+w did|strong="G4160"\+w* \+w when|strong="G3753"\+w* \+w he|strong="G2532"\+w* \+w had|strong="G2192"\+w* \+w need|strong="G5532"\+w* \+w and|strong="G2532"\+w* \+w was|strong="G3588"\+w* \+w hungry|strong="G3983"\+w*—\+w he|strong="G2532"\+w*, \+w and|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G5101"\+w* \+w were|strong="G3588"\+w* \+w with|strong="G3326"\+w* \+w him|strong="G3588"\+w*? \wj* +\v 26 \wj \+w How|strong="G4459"\+w* \+w he|strong="G2532"\+w* \+w entered|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w God|strong="G2316"\+w*’s \+w house|strong="G3624"\+w* \+w at|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w time|strong="G1909"\+w* \+w of|strong="G2316"\+w* Abiathar \+w the|strong="G2532"\+w* \+w high|strong="G2532"\+w* \+w priest|strong="G2409"\+w*, \+w and|strong="G2532"\+w* \+w ate|strong="G2068"\+w* \+w the|strong="G2532"\+w* \+w show|strong="G1325"\+w* bread, \+w which|strong="G3739"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w lawful|strong="G1832"\+w* \+w to|strong="G1519"\+w* \+w eat|strong="G2068"\+w* \+w except|strong="G1487"\+w* \+w for|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w priests|strong="G2409"\+w*, \+w and|strong="G2532"\+w* \+w gave|strong="G1325"\+w* \+w also|strong="G2532"\+w* \+w to|strong="G1519"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3739"\+w* \+w were|strong="G1510"\+w* \+w with|strong="G4862"\+w* \+w him|strong="G3588"\+w*?”\wj* +\p +\v 27 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w The|strong="G2532"\+w* \+w Sabbath|strong="G4521"\+w* \+w was|strong="G1096"\+w* \+w made|strong="G1096"\+w* \+w for|strong="G1223"\+w* \+w man|strong="G3756"\+w*, \+w not|strong="G3756"\+w* \+w man|strong="G3756"\+w* \+w for|strong="G1223"\+w* \+w the|strong="G2532"\+w* \+w Sabbath|strong="G4521"\+w*. \wj* +\v 28 \wj \+w Therefore|strong="G5620"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w* \+w is|strong="G1510"\+w* \+w lord|strong="G2962"\+w* \+w even|strong="G2532"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G2532"\+w* \+w Sabbath|strong="G4521"\+w*.”\wj* +\c 3 +\p +\v 1 \w He|strong="G2532"\w* \w entered|strong="G1525"\w* \w again|strong="G3825"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w synagogue|strong="G4864"\w*, \w and|strong="G2532"\w* \w there|strong="G1563"\w* \w was|strong="G1510"\w* \w a|strong="G2192"\w* \w man|strong="G1519"\w* \w there|strong="G1563"\w* \w whose|strong="G3588"\w* \w hand|strong="G5495"\w* \w was|strong="G1510"\w* \w withered|strong="G3583"\w*. +\v 2 \w They|strong="G2532"\w* \w watched|strong="G3906"\w* \w him|strong="G3588"\w*, \w whether|strong="G1487"\w* \w he|strong="G2532"\w* \w would|strong="G2532"\w* \w heal|strong="G2323"\w* \w him|strong="G3588"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w Sabbath|strong="G4521"\w* \w day|strong="G4521"\w*, \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w accuse|strong="G2723"\w* \w him|strong="G3588"\w*. +\v 3 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w man|strong="G1519"\w* \w whose|strong="G3588"\w* \w hand|strong="G5495"\w* \w was|strong="G3588"\w* \w withered|strong="G3584"\w*, \wj “\+w Stand|strong="G1453"\+w* \+w up|strong="G1453"\+w*.”\wj* +\v 4 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Is|strong="G3588"\+w* \+w it|strong="G2532"\+w* \+w lawful|strong="G1832"\+w* \+w on|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w Sabbath|strong="G4521"\+w* \+w day|strong="G4521"\+w* \+w to|strong="G2532"\+w* \+w do|strong="G4160"\+w* \+w good|strong="G3588"\+w* \+w or|strong="G2228"\+w* \+w to|strong="G2532"\+w* \+w do|strong="G4160"\+w* \+w harm|strong="G2554"\+w*? \+w To|strong="G2532"\+w* \+w save|strong="G4982"\+w* \+w a|strong="G2532"\+w* \+w life|strong="G5590"\+w* \+w or|strong="G2228"\+w* \+w to|strong="G2532"\+w* kill?”\wj* \w But|strong="G1161"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w silent|strong="G4623"\w*. +\v 5 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w looked|strong="G4017"\w* \w around|strong="G4017"\w* \w at|strong="G1909"\w* \w them|strong="G3588"\w* \w with|strong="G3326"\w* \w anger|strong="G3709"\w*, \w being|strong="G2532"\w* \w grieved|strong="G4818"\w* \w at|strong="G1909"\w* \w the|strong="G2532"\w* \w hardening|strong="G4457"\w* \w of|strong="G2532"\w* \w their|strong="G1438"\w* \w hearts|strong="G2588"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w man|strong="G2588"\w*, \wj “\+w Stretch|strong="G1614"\+w* \+w out|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w hand|strong="G5495"\+w*.” \wj* \w He|strong="G2532"\w* \w stretched|strong="G1614"\w* \w it|strong="G2532"\w* \w out|strong="G2532"\w*, \w and|strong="G2532"\w* \w his|strong="G1438"\w* \w hand|strong="G5495"\w* \w was|strong="G3588"\w* restored \w as|strong="G2532"\w* healthy \w as|strong="G2532"\w* \w the|strong="G2532"\w* \w other|strong="G1438"\w*. +\v 6 \w The|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w*, \w and|strong="G2532"\w* \w immediately|strong="G2112"\w* \w conspired|strong="G4824"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w Herodians|strong="G2265"\w* \w against|strong="G2596"\w* \w him|strong="G3588"\w*, \w how|strong="G3704"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* destroy \w him|strong="G3588"\w*. +\p +\v 7 \w Jesus|strong="G2424"\w* \w withdrew|strong="G2424"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w* \w with|strong="G3326"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w*; \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w great|strong="G4183"\w* \w multitude|strong="G4128"\w* followed \w him|strong="G3588"\w* \w from|strong="G2532"\w* \w Galilee|strong="G1056"\w*, \w from|strong="G2532"\w* \w Judea|strong="G2449"\w*, +\v 8 \w from|strong="G2064"\w* \w Jerusalem|strong="G2414"\w*, \w from|strong="G2064"\w* \w Idumaea|strong="G2401"\w*, \w beyond|strong="G4008"\w* \w the|strong="G2532"\w* \w Jordan|strong="G2446"\w*, \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w from|strong="G2064"\w* \w around|strong="G4012"\w* \w Tyre|strong="G5184"\w* \w and|strong="G2532"\w* \w Sidon|strong="G4605"\w*. \w A|strong="G2532"\w* \w great|strong="G4183"\w* \w multitude|strong="G4128"\w*, hearing \w what|strong="G3588"\w* \w great|strong="G4183"\w* \w things|strong="G3588"\w* \w he|strong="G2532"\w* \w did|strong="G4160"\w*, \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*. +\v 9 \w He|strong="G2532"\w* \w spoke|strong="G3004"\w* \w to|strong="G2443"\w* \w his|strong="G1223"\w* \w disciples|strong="G3101"\w* \w that|strong="G2443"\w* \w a|strong="G2532"\w* \w little|strong="G4142"\w* \w boat|strong="G4142"\w* \w should|strong="G3588"\w* stay near \w him|strong="G3588"\w* \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w crowd|strong="G3793"\w*, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w they|strong="G2532"\w* wouldn’\w t|strong="G3588"\w* \w press|strong="G3793"\w* \w on|strong="G4342"\w* \w him|strong="G3588"\w*. +\v 10 \w For|strong="G1063"\w* \w he|strong="G1063"\w* \w had|strong="G2192"\w* \w healed|strong="G2323"\w* \w many|strong="G4183"\w*, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w as|strong="G3745"\w* \w many|strong="G4183"\w* \w as|strong="G3745"\w* \w had|strong="G2192"\w* diseases \w pressed|strong="G1968"\w* \w on|strong="G1968"\w* \w him|strong="G2443"\w* \w that|strong="G2443"\w* \w they|strong="G1063"\w* \w might|strong="G2192"\w* touch \w him|strong="G2443"\w*. +\v 11 \w The|strong="G2532"\w* unclean \w spirits|strong="G4151"\w*, \w whenever|strong="G3752"\w* \w they|strong="G2532"\w* \w saw|strong="G2334"\w* \w him|strong="G3588"\w*, \w fell|strong="G4363"\w* \w down|strong="G4363"\w* \w before|strong="G4363"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w cried|strong="G2896"\w*, “\w You|strong="G4771"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*!” +\v 12 \w He|strong="G2532"\w* \w sternly|strong="G2008"\w* \w warned|strong="G2008"\w* \w them|strong="G4160"\w* \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w should|strong="G2532"\w* \w not|strong="G3361"\w* \w make|strong="G4160"\w* \w him|strong="G4160"\w* \w known|strong="G5318"\w*. +\p +\v 13 \w He|strong="G2532"\w* \w went|strong="G2532"\w* \w up|strong="G1519"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w mountain|strong="G3735"\w* \w and|strong="G2532"\w* \w called|strong="G4341"\w* \w to|strong="G1519"\w* \w himself|strong="G1519"\w* \w those|strong="G3588"\w* \w whom|strong="G3739"\w* \w he|strong="G2532"\w* \w wanted|strong="G2309"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w went|strong="G2532"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*. +\v 14 \w He|strong="G2532"\w* \w appointed|strong="G4160"\w* \w twelve|strong="G1427"\w*, \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w be|strong="G1510"\w* \w with|strong="G3326"\w* \w him|strong="G4160"\w*, \w and|strong="G2532"\w* \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* send \w them|strong="G1438"\w* \w out|strong="G2532"\w* \w to|strong="G2443"\w* \w preach|strong="G2784"\w* +\v 15 \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w have|strong="G2192"\w* \w authority|strong="G1849"\w* \w to|strong="G2532"\w* heal sicknesses \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w cast|strong="G1544"\w* \w out|strong="G1544"\w* \w demons|strong="G1140"\w*: +\v 16 \w Simon|strong="G4613"\w* (\w to|strong="G2532"\w* \w whom|strong="G3588"\w* \w he|strong="G2532"\w* \w gave|strong="G4160"\w* \w the|strong="G2532"\w* \w name|strong="G3686"\w* \w Peter|strong="G4074"\w*); +\v 17 \w James|strong="G2385"\w* \w the|strong="G2532"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w Zebedee|strong="G2199"\w*; \w and|strong="G2532"\w* \w John|strong="G2491"\w*, \w the|strong="G2532"\w* brother \w of|strong="G5207"\w* \w James|strong="G2385"\w*, (\w whom|strong="G3739"\w* \w he|strong="G2532"\w* \w called|strong="G3686"\w* Boanerges, \w which|strong="G3739"\w* \w means|strong="G1510"\w*, \w Sons|strong="G5207"\w* \w of|strong="G5207"\w* \w Thunder|strong="G1027"\w*); +\v 18 Andrew; \w Philip|strong="G5376"\w*; Bartholomew; \w Matthew|strong="G3156"\w*; \w Thomas|strong="G2381"\w*; \w James|strong="G2385"\w*, \w the|strong="G2532"\w* son \w of|strong="G2532"\w* Alphaeus; \w Thaddaeus|strong="G2280"\w*; \w Simon|strong="G4613"\w* \w the|strong="G2532"\w* \w Zealot|strong="G2581"\w*; +\v 19 \w and|strong="G2532"\w* \w Judas|strong="G2455"\w* \w Iscariot|strong="G2469"\w*, \w who|strong="G3739"\w* \w also|strong="G2532"\w* \w betrayed|strong="G3860"\w* \w him|strong="G3739"\w*. +\p \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w came|strong="G2064"\w* \w into|strong="G1519"\w* \w a|strong="G2532"\w* \w house|strong="G3624"\w*. +\v 20 \w The|strong="G2532"\w* \w multitude|strong="G3793"\w* \w came|strong="G2064"\w* \w together|strong="G4905"\w* \w again|strong="G3825"\w*, \w so|strong="G2532"\w* \w that|strong="G5620"\w* \w they|strong="G2532"\w* \w could|strong="G1410"\w* \w not|strong="G3361"\w* \w so|strong="G2532"\w* much \w as|strong="G1519"\w* \w eat|strong="G2068"\w* bread. +\v 21 \w When|strong="G2532"\w* \w his|strong="G2532"\w* \w friends|strong="G3844"\w* heard \w it|strong="G2532"\w*, \w they|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w to|strong="G2532"\w* \w seize|strong="G2902"\w* \w him|strong="G3588"\w*; \w for|strong="G1063"\w* \w they|strong="G2532"\w* \w said|strong="G3004"\w*, “\w He|strong="G2532"\w* \w is|strong="G3588"\w* insane.” +\v 22 \w The|strong="G1722"\w* \w scribes|strong="G1122"\w* \w who|strong="G3588"\w* \w came|strong="G2597"\w* \w down|strong="G2597"\w* \w from|strong="G2597"\w* \w Jerusalem|strong="G2414"\w* \w said|strong="G3004"\w*, “\w He|strong="G2532"\w* \w has|strong="G2192"\w* Beelzebul,” \w and|strong="G2532"\w*, “\w By|strong="G1722"\w* \w the|strong="G1722"\w* prince \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w demons|strong="G1140"\w* \w he|strong="G2532"\w* \w casts|strong="G1544"\w* \w out|strong="G1544"\w* \w the|strong="G1722"\w* \w demons|strong="G1140"\w*.” +\p +\v 23 \w He|strong="G2532"\w* \w summoned|strong="G4341"\w* \w them|strong="G1438"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G1438"\w* \w in|strong="G1722"\w* \w parables|strong="G3850"\w*, \wj “\+w How|strong="G4459"\+w* \+w can|strong="G1410"\+w* \+w Satan|strong="G4567"\+w* \+w cast|strong="G1544"\+w* \+w out|strong="G1544"\+w* \+w Satan|strong="G4567"\+w*? \wj* +\v 24 \wj \+w If|strong="G1437"\+w* \+w a|strong="G2532"\+w* kingdom \+w is|strong="G3588"\+w* \+w divided|strong="G3307"\+w* \+w against|strong="G1909"\+w* \+w itself|strong="G1438"\+w*, \+w that|strong="G3588"\+w* kingdom \+w cannot|strong="G1410"\+w* \+w stand|strong="G2476"\+w*. \wj* +\v 25 \wj \+w If|strong="G1437"\+w* \+w a|strong="G2532"\+w* \+w house|strong="G3614"\+w* \+w is|strong="G3588"\+w* \+w divided|strong="G3307"\+w* \+w against|strong="G1909"\+w* \+w itself|strong="G1438"\+w*, \+w that|strong="G3588"\+w* \+w house|strong="G3614"\+w* \+w cannot|strong="G1410"\+w* \+w stand|strong="G2476"\+w*. \wj* +\v 26 \wj \+w If|strong="G1487"\+w* \+w Satan|strong="G4567"\+w* \+w has|strong="G2192"\+w* \+w risen|strong="G2532"\+w* \+w up|strong="G2476"\+w* \+w against|strong="G1909"\+w* \+w himself|strong="G1438"\+w*, \+w and|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w divided|strong="G3307"\+w*, \+w he|strong="G2532"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w stand|strong="G2476"\+w*, \+w but|strong="G2532"\+w* \+w has|strong="G2192"\+w* \+w an|strong="G2192"\+w* \+w end|strong="G5056"\+w*. \wj* +\v 27 \wj \+w But|strong="G2532"\+w* \+w no|strong="G3756"\+w* \+w one|strong="G3762"\+w* \+w can|strong="G1410"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w house|strong="G3614"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w strong|strong="G2478"\+w* \+w man|strong="G3762"\+w* \+w to|strong="G1519"\+w* \+w plunder|strong="G1283"\+w* \+w unless|strong="G1437"\+w* \+w he|strong="G2532"\+w* \+w first|strong="G4413"\+w* \+w binds|strong="G1210"\+w* \+w the|strong="G2532"\+w* \+w strong|strong="G2478"\+w* \+w man|strong="G3762"\+w*; \+w then|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w plunder|strong="G1283"\+w* \+w his|strong="G1519"\+w* \+w house|strong="G3614"\+w*. \wj* +\p +\v 28 \wj “Most \+w certainly|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w all|strong="G3956"\+w* sins \+w of|strong="G5207"\+w* \+w the|strong="G2532"\+w* \+w descendants|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w man|strong="G3956"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* forgiven, \+w including|strong="G2532"\+w* \+w their|strong="G2532"\+w* blasphemies \+w with|strong="G2532"\+w* \+w which|strong="G3588"\+w* \+w they|strong="G2532"\+w* \+w may|strong="G2532"\+w* blaspheme; \wj* +\v 29 \wj \+w but|strong="G1161"\+w* \+w whoever|strong="G3739"\+w* \+w may|strong="G2192"\+w* blaspheme \+w against|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w Holy|strong="G4151"\+w* \+w Spirit|strong="G4151"\+w* \+w never|strong="G3756"\+w* \+w has|strong="G2192"\+w* forgiveness, \+w but|strong="G1161"\+w* \+w is|strong="G1510"\+w* \+w subject|strong="G1777"\+w* \+w to|strong="G1519"\+w* eternal condemnation.”\wj*\f + \fr 3:29 \ft NU reads, guilty of an eternal sin.\f* +\v 30 —\w because|strong="G3754"\w* \w they|strong="G3754"\w* \w said|strong="G3004"\w*, “\w He|strong="G3754"\w* \w has|strong="G2192"\w* \w an|strong="G2192"\w* unclean \w spirit|strong="G4151"\w*.” +\p +\v 31 \w His|strong="G2532"\w* \w mother|strong="G3384"\w* \w and|strong="G2532"\w* \w his|strong="G2532"\w* brothers \w came|strong="G2064"\w*, \w and|strong="G2532"\w* \w standing|strong="G4739"\w* \w outside|strong="G1854"\w*, \w they|strong="G2532"\w* \w sent|strong="G2532"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \w calling|strong="G2564"\w* \w him|strong="G3588"\w*. +\v 32 \w A|strong="G2532"\w* \w multitude|strong="G3793"\w* \w was|strong="G3588"\w* \w sitting|strong="G2521"\w* \w around|strong="G4012"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w told|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Behold|strong="G2400"\w*, \w your|strong="G2532"\w* \w mother|strong="G3384"\w*, \w your|strong="G2532"\w* brothers, \w and|strong="G2532"\w* \w your|strong="G2532"\w* sisters\f + \fr 3:32 \ft TR omits “your sisters”\f* \w are|strong="G3588"\w* \w outside|strong="G1854"\w* \w looking|strong="G2212"\w* \w for|strong="G4012"\w* \w you|strong="G4771"\w*.” +\p +\v 33 \w He|strong="G2532"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Who|strong="G5101"\+w* \+w are|strong="G1510"\+w* \+w my|strong="G1473"\+w* \+w mother|strong="G3384"\+w* \+w and|strong="G2532"\+w* \+w my|strong="G1473"\+w* brothers?”\wj* +\v 34 \w Looking|strong="G4017"\w* \w around|strong="G4012"\w* \w at|strong="G4012"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w sat|strong="G2521"\w* \w around|strong="G4012"\w* \w him|strong="G3588"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Behold|strong="G2396"\+w*, \+w my|strong="G3708"\+w* \+w mother|strong="G3384"\+w* \+w and|strong="G2532"\+w* \+w my|strong="G3708"\+w* brothers! \wj* +\v 35 \wj \+w For|strong="G1063"\+w* \+w whoever|strong="G3739"\+w* \+w does|strong="G4160"\+w* \+w the|strong="G2532"\+w* \+w will|strong="G2307"\+w* \+w of|strong="G2316"\+w* \+w God|strong="G2316"\+w* \+w is|strong="G1510"\+w* \+w my|strong="G1473"\+w* brother, \+w my|strong="G1473"\+w* sister, \+w and|strong="G2532"\+w* \+w mother|strong="G3384"\+w*.”\wj* +\c 4 +\p +\v 1 \w Again|strong="G3825"\w* \w he|strong="G2532"\w* \w began|strong="G1909"\w* \w to|strong="G1519"\w* \w teach|strong="G1321"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* seaside. \w A|strong="G2532"\w* \w great|strong="G4183"\w* \w multitude|strong="G3793"\w* \w was|strong="G1510"\w* \w gathered|strong="G4863"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w entered|strong="G1684"\w* \w into|strong="G1519"\w* \w a|strong="G2532"\w* \w boat|strong="G4143"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w* \w and|strong="G2532"\w* \w sat|strong="G2521"\w* \w down|strong="G2521"\w*. \w All|strong="G3956"\w* \w the|strong="G1722"\w* \w multitude|strong="G3793"\w* \w were|strong="G1510"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w land|strong="G1093"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w*. +\v 2 \w He|strong="G2532"\w* \w taught|strong="G1321"\w* \w them|strong="G3588"\w* \w many|strong="G4183"\w* \w things|strong="G3588"\w* \w in|strong="G1722"\w* \w parables|strong="G3850"\w*, \w and|strong="G2532"\w* \w told|strong="G3004"\w* \w them|strong="G3588"\w* \w in|strong="G1722"\w* \w his|strong="G1438"\w* \w teaching|strong="G1321"\w*, +\v 3 \wj “\+w Listen|strong="G2400"\+w*! \+w Behold|strong="G2400"\+w*, \+w the|strong="G3588"\+w* farmer \+w went|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w to|strong="G3708"\+w* \+w sow|strong="G4687"\+w*. \wj* +\v 4 \wj \+w As|strong="G1722"\+w* \+w he|strong="G2532"\+w* \+w sowed|strong="G4687"\+w*, \+w some|strong="G3739"\+w* \+w seed|strong="G4098"\+w* \+w fell|strong="G4098"\+w* \+w by|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w road|strong="G3598"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w birds|strong="G4071"\+w*\wj*\f + \fr 4:4 \ft TR adds “of the air”\f* \wj \+w came|strong="G2064"\+w* \+w and|strong="G2532"\+w* \+w devoured|strong="G2719"\+w* \+w it|strong="G2532"\+w*. \wj* +\v 5 \wj \+w Others|strong="G3588"\+w* \+w fell|strong="G4098"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w rocky|strong="G4075"\+w* \+w ground|strong="G1093"\+w*, \+w where|strong="G3699"\+w* \+w it|strong="G2532"\+w* \+w had|strong="G2192"\+w* little \+w soil|strong="G1093"\+w*, \+w and|strong="G2532"\+w* \+w immediately|strong="G2112"\+w* \+w it|strong="G2532"\+w* \+w sprang|strong="G1816"\+w* \+w up|strong="G3361"\+w*, \+w because|strong="G1223"\+w* \+w it|strong="G2532"\+w* \+w had|strong="G2192"\+w* \+w no|strong="G3756"\+w* depth \+w of|strong="G1223"\+w* \+w soil|strong="G1093"\+w*. \wj* +\v 6 \wj \+w When|strong="G3753"\+w* \+w the|strong="G2532"\+w* \+w sun|strong="G2246"\+w* \+w had|strong="G2192"\+w* \+w risen|strong="G2532"\+w*, \+w it|strong="G2532"\+w* \+w was|strong="G3588"\+w* \+w scorched|strong="G2739"\+w*; \+w and|strong="G2532"\+w* \+w because|strong="G1223"\+w* \+w it|strong="G2532"\+w* \+w had|strong="G2192"\+w* \+w no|strong="G3361"\+w* \+w root|strong="G4491"\+w*, \+w it|strong="G2532"\+w* \+w withered|strong="G3583"\+w* \+w away|strong="G3583"\+w*. \wj* +\v 7 \wj \+w Others|strong="G3588"\+w* \+w fell|strong="G4098"\+w* \+w among|strong="G1519"\+w* \+w the|strong="G2532"\+w* thorns, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* thorns grew \+w up|strong="G1519"\+w* \+w and|strong="G2532"\+w* \+w choked|strong="G4846"\+w* \+w it|strong="G2532"\+w*, \+w and|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w yielded|strong="G1325"\+w* \+w no|strong="G3756"\+w* \+w fruit|strong="G2590"\+w*. \wj* +\v 8 \wj \+w Others|strong="G3588"\+w* \+w fell|strong="G4098"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w good|strong="G2570"\+w* \+w ground|strong="G1093"\+w* \+w and|strong="G2532"\+w* \+w yielded|strong="G1325"\+w* \+w fruit|strong="G2590"\+w*, growing \+w up|strong="G1519"\+w* \+w and|strong="G2532"\+w* increasing. \+w Some|strong="G3588"\+w* \+w produced|strong="G1325"\+w* \+w thirty|strong="G5144"\+w* times, \+w some|strong="G3588"\+w* \+w sixty|strong="G1835"\+w* times, \+w and|strong="G2532"\+w* \+w some|strong="G3588"\+w* \+w one|strong="G1520"\+w* \+w hundred|strong="G1540"\+w* times \+w as|strong="G1519"\+w* much.”\wj* +\v 9 \w He|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Whoever|strong="G3739"\+w* \+w has|strong="G2192"\+w* \+w ears|strong="G3775"\+w* \+w to|strong="G2532"\+w* hear, \+w let|strong="G2192"\+w* \+w him|strong="G3739"\+w* hear.”\wj* +\p +\v 10 \w When|strong="G3753"\w* \w he|strong="G2532"\w* \w was|strong="G1096"\w* \w alone|strong="G3441"\w*, \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w around|strong="G4012"\w* \w him|strong="G3588"\w* \w with|strong="G4862"\w* \w the|strong="G2532"\w* \w twelve|strong="G1427"\w* \w asked|strong="G2065"\w* \w him|strong="G3588"\w* \w about|strong="G4012"\w* \w the|strong="G2532"\w* \w parables|strong="G3850"\w*. +\v 11 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w To|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w is|strong="G3588"\+w* \+w given|strong="G1325"\+w* \+w the|strong="G1722"\+w* \+w mystery|strong="G3466"\+w* \+w of|strong="G2316"\+w* \+w God|strong="G2316"\+w*’s Kingdom, \+w but|strong="G1161"\+w* \+w to|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w outside|strong="G1854"\+w*, \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w are|strong="G3588"\+w* \+w done|strong="G1096"\+w* \+w in|strong="G1722"\+w* \+w parables|strong="G3850"\+w*, \wj* +\v 12 \wj \+w that|strong="G2443"\+w* ‘\+w seeing|strong="G3708"\+w* \+w they|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w see|strong="G3708"\+w* \+w and|strong="G2532"\+w* \+w not|strong="G3361"\+w* \+w perceive|strong="G3708"\+w*, \+w and|strong="G2532"\+w* hearing \+w they|strong="G2532"\+w* \+w may|strong="G2532"\+w* hear \+w and|strong="G2532"\+w* \+w not|strong="G3361"\+w* \+w understand|strong="G4920"\+w*, \+w lest|strong="G3361"\+w* \+w perhaps|strong="G3379"\+w* \+w they|strong="G2532"\+w* \+w should|strong="G2532"\+w* \+w turn|strong="G1994"\+w* \+w again|strong="G1994"\+w*, \+w and|strong="G2532"\+w* \+w their|strong="G2532"\+w* sins \+w should|strong="G2532"\+w* \+w be|strong="G2532"\+w* forgiven \+w them|strong="G3708"\+w*.’”\wj*\x + \xo 4:12 \xt Isaiah 6:9-10\x* +\p +\v 13 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “Don’\+w t|strong="G3588"\+w* \+w you|strong="G3004"\+w* \+w understand|strong="G1097"\+w* \+w this|strong="G3778"\+w* \+w parable|strong="G3850"\+w*? \+w How|strong="G4459"\+w* \+w will|strong="G2532"\+w* \+w you|strong="G3004"\+w* \+w understand|strong="G1097"\+w* \+w all|strong="G3956"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w parables|strong="G3850"\+w*? \wj* +\v 14 \wj \+w The|strong="G3588"\+w* farmer \+w sows|strong="G4687"\+w* \+w the|strong="G3588"\+w* \+w word|strong="G3056"\+w*. \wj* +\v 15 \wj \+w The|strong="G1722"\+w* ones \+w by|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w road|strong="G3598"\+w* \+w are|strong="G1510"\+w* \+w the|strong="G1722"\+w* ones \+w where|strong="G3699"\+w* \+w the|strong="G1722"\+w* \+w word|strong="G3056"\+w* \+w is|strong="G1510"\+w* \+w sown|strong="G4687"\+w*; \+w and|strong="G2532"\+w* \+w when|strong="G3752"\+w* \+w they|strong="G2532"\+w* \+w have|strong="G2532"\+w* heard, \+w immediately|strong="G2112"\+w* \+w Satan|strong="G4567"\+w* \+w comes|strong="G2064"\+w* \+w and|strong="G2532"\+w* takes away \+w the|strong="G1722"\+w* \+w word|strong="G3056"\+w* \+w which|strong="G3588"\+w* \+w has|strong="G3778"\+w* \+w been|strong="G1510"\+w* \+w sown|strong="G4687"\+w* \+w in|strong="G1722"\+w* \+w them|strong="G3588"\+w*. \wj* +\v 16 \wj \+w These|strong="G3778"\+w* \+w in|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w same|strong="G3778"\+w* \+w way|strong="G3668"\+w* \+w are|strong="G1510"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3739"\+w* \+w are|strong="G1510"\+w* \+w sown|strong="G4687"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w rocky|strong="G4075"\+w* places, \+w who|strong="G3739"\+w*, \+w when|strong="G3752"\+w* \+w they|strong="G2532"\+w* \+w have|strong="G2532"\+w* heard \+w the|strong="G2532"\+w* \+w word|strong="G3056"\+w*, \+w immediately|strong="G2112"\+w* \+w receive|strong="G2983"\+w* \+w it|strong="G2532"\+w* \+w with|strong="G3326"\+w* \+w joy|strong="G5479"\+w*. \wj* +\v 17 \wj \+w They|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w no|strong="G3756"\+w* \+w root|strong="G4491"\+w* \+w in|strong="G1722"\+w* \+w themselves|strong="G1438"\+w*, \+w but|strong="G2532"\+w* \+w are|strong="G1510"\+w* short-lived. \+w When|strong="G2532"\+w* oppression \+w or|strong="G2228"\+w* \+w persecution|strong="G1375"\+w* \+w arises|strong="G1096"\+w* \+w because|strong="G1223"\+w* \+w of|strong="G3056"\+w* \+w the|strong="G1722"\+w* \+w word|strong="G3056"\+w*, \+w immediately|strong="G2112"\+w* \+w they|strong="G2532"\+w* \+w stumble|strong="G4624"\+w*. \wj* +\v 18 \wj \+w Others|strong="G3588"\+w* \+w are|strong="G1510"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G1510"\+w* \+w sown|strong="G4687"\+w* \+w among|strong="G1519"\+w* \+w the|strong="G2532"\+w* thorns. \+w These|strong="G3778"\+w* \+w are|strong="G1510"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w have|strong="G2532"\+w* heard \+w the|strong="G2532"\+w* \+w word|strong="G3056"\+w*, \wj* +\v 19 \wj \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w cares|strong="G3308"\+w* \+w of|strong="G4012"\+w* \+w this|strong="G3588"\+w* age, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* deceitfulness \+w of|strong="G4012"\+w* \+w riches|strong="G4149"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w lusts|strong="G1939"\+w* \+w of|strong="G4012"\+w* \+w other|strong="G3062"\+w* \+w things|strong="G3588"\+w* \+w entering|strong="G1531"\+w* \+w in|strong="G2532"\+w* \+w choke|strong="G4846"\+w* \+w the|strong="G2532"\+w* \+w word|strong="G3056"\+w*, \+w and|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w becomes|strong="G1096"\+w* unfruitful. \wj* +\v 20 \wj \+w Those|strong="G3588"\+w* \+w which|strong="G3588"\+w* \+w were|strong="G1510"\+w* \+w sown|strong="G4687"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G1722"\+w* \+w good|strong="G2570"\+w* \+w ground|strong="G1093"\+w* \+w are|strong="G1510"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* hear \+w the|strong="G1722"\+w* \+w word|strong="G3056"\+w*, \+w accept|strong="G3858"\+w* \+w it|strong="G2532"\+w*, \+w and|strong="G2532"\+w* \+w bear|strong="G2592"\+w* \+w fruit|strong="G2592"\+w*, \+w some|strong="G3588"\+w* \+w thirty|strong="G5144"\+w* times, \+w some|strong="G3588"\+w* \+w sixty|strong="G1835"\+w* times, \+w and|strong="G2532"\+w* \+w some|strong="G3588"\+w* \+w one|strong="G1520"\+w* \+w hundred|strong="G1540"\+w* times.”\wj* +\p +\v 21 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2443"\w* \w them|strong="G3588"\w*, \wj “\+w Is|strong="G3588"\+w* \+w a|strong="G2532"\+w* \+w lamp|strong="G3088"\+w* \+w brought|strong="G2064"\+w* \+w to|strong="G2443"\+w* \+w be|strong="G2532"\+w* \+w put|strong="G5087"\+w* \+w under|strong="G5259"\+w* \+w a|strong="G2532"\+w* \+w basket|strong="G3426"\+w* \wj*\f + \fr 4:21 \ft literally, a modion, a dry measuring basket containing about a peck (about 9 liters)\f* \wj \+w or|strong="G2228"\+w* \+w under|strong="G5259"\+w* \+w a|strong="G2532"\+w* \+w bed|strong="G2825"\+w*? Isn’\+w t|strong="G3588"\+w* \+w it|strong="G2532"\+w* \+w put|strong="G5087"\+w* \+w on|strong="G1909"\+w* \+w a|strong="G2532"\+w* stand? \wj* +\v 22 \wj \+w For|strong="G1063"\+w* \+w there|strong="G1063"\+w* \+w is|strong="G1510"\+w* \+w nothing|strong="G3756"\+w* \+w hidden|strong="G2927"\+w* \+w except|strong="G1437"\+w* \+w that|strong="G2443"\+w* \+w it|strong="G1063"\+w* \+w should|strong="G5100"\+w* \+w be|strong="G1096"\+w* \+w made|strong="G1096"\+w* \+w known|strong="G5318"\+w*, \+w neither|strong="G3761"\+w* \+w was|strong="G1510"\+w* \+w anything|strong="G5100"\+w* \+w made|strong="G1096"\+w* \+w secret|strong="G2927"\+w* \+w but|strong="G3361"\+w* \+w that|strong="G2443"\+w* \+w it|strong="G1063"\+w* \+w should|strong="G5100"\+w* \+w come|strong="G2064"\+w* \+w to|strong="G1519"\+w* \+w light|strong="G5318"\+w*. \wj* +\v 23 \wj \+w If|strong="G1487"\+w* \+w any|strong="G5100"\+w* \+w man|strong="G5100"\+w* \+w has|strong="G2192"\+w* \+w ears|strong="G3775"\+w* \+w to|strong="G5100"\+w* hear, \+w let|strong="G2192"\+w* him hear.”\wj* +\p +\v 24 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G1722"\w*, \wj “\+w Take|strong="G2532"\+w* heed \+w what|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w hear|strong="G5101"\+w*. \+w With|strong="G1722"\+w* \+w whatever|strong="G3739"\+w* \+w measure|strong="G3358"\+w* \+w you|strong="G5210"\+w* \+w measure|strong="G3358"\+w*, \+w it|strong="G2532"\+w* \+w will|strong="G5101"\+w* \+w be|strong="G2532"\+w* \+w measured|strong="G3354"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*; \+w and|strong="G2532"\+w* \+w more|strong="G2532"\+w* \+w will|strong="G5101"\+w* \+w be|strong="G2532"\+w* \+w given|strong="G4369"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w who|strong="G3739"\+w* \+w hear|strong="G5101"\+w*. \wj* +\v 25 \wj \+w For|strong="G1063"\+w* \+w whoever|strong="G3739"\+w* \+w has|strong="G2192"\+w*, \+w to|strong="G2532"\+w* \+w him|strong="G1325"\+w* \+w more|strong="G2192"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w given|strong="G1325"\+w*; \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3739"\+w* doesn’t \+w have|strong="G2192"\+w*, \+w even|strong="G2532"\+w* \+w that|strong="G3739"\+w* \+w which|strong="G3739"\+w* \+w he|strong="G2532"\+w* \+w has|strong="G2192"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* taken away \+w from|strong="G2532"\+w* \+w him|strong="G1325"\+w*.”\wj* +\p +\v 26 \w He|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w God|strong="G2316"\+w*’s Kingdom \+w is|strong="G1510"\+w* \+w as|strong="G5613"\+w* \+w if|strong="G5613"\+w* \+w a|strong="G5613"\+w* \+w man|strong="G2316"\+w* \+w should|strong="G2316"\+w* \+w cast|strong="G2532"\+w* \+w seed|strong="G4703"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w earth|strong="G1093"\+w*, \wj* +\v 27 \wj \+w and|strong="G2532"\+w* \+w should|strong="G1492"\+w* \+w sleep|strong="G2518"\+w* \+w and|strong="G2532"\+w* \+w rise|strong="G1453"\+w* \+w night|strong="G3571"\+w* \+w and|strong="G2532"\+w* \+w day|strong="G2250"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w seed|strong="G4703"\+w* \+w should|strong="G1492"\+w* spring \+w up|strong="G1453"\+w* \+w and|strong="G2532"\+w* grow, \+w though|strong="G5613"\+w* \+w he|strong="G2532"\+w* doesn’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w* \+w how|strong="G5613"\+w*. \wj* +\v 28 \wj \+w For|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w earth|strong="G1093"\+w* \+w bears|strong="G2592"\+w* \+w fruit|strong="G2592"\+w* \+w by|strong="G1722"\+w* itself: \+w first|strong="G4413"\+w* \+w the|strong="G1722"\+w* \+w blade|strong="G5528"\+w*, \+w then|strong="G1534"\+w* \+w the|strong="G1722"\+w* ear, \+w then|strong="G1534"\+w* \+w the|strong="G1722"\+w* \+w full|strong="G4134"\+w* \+w grain|strong="G4621"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* ear. \wj* +\v 29 \wj \+w But|strong="G1161"\+w* \+w when|strong="G3752"\+w* \+w the|strong="G1161"\+w* \+w fruit|strong="G2590"\+w* \+w is|strong="G3588"\+w* ripe, \+w immediately|strong="G2112"\+w* \+w he|strong="G1161"\+w* puts \+w in|strong="G1161"\+w* \+w the|strong="G1161"\+w* \+w sickle|strong="G1407"\+w*, \+w because|strong="G3754"\+w* \+w the|strong="G1161"\+w* \+w harvest|strong="G2326"\+w* \+w has|strong="G3748"\+w* \+w come|strong="G3936"\+w*.”\wj* +\p +\v 30 \w He|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w How|strong="G4459"\+w* \+w will|strong="G2316"\+w* \+w we|strong="G2532"\+w* liken \+w God|strong="G2316"\+w*’s Kingdom? \+w Or|strong="G2228"\+w* \+w with|strong="G1722"\+w* \+w what|strong="G5101"\+w* \+w parable|strong="G3850"\+w* \+w will|strong="G2316"\+w* \+w we|strong="G2532"\+w* illustrate \+w it|strong="G2532"\+w*? \wj* +\v 31 \wj \+w It|strong="G3739"\+w*’s \+w like|strong="G5613"\+w* \+w a|strong="G5613"\+w* \+w grain|strong="G2848"\+w* \+w of|strong="G1909"\+w* \+w mustard|strong="G4615"\+w* \+w seed|strong="G4690"\+w*, \+w which|strong="G3739"\+w*, \+w when|strong="G3752"\+w* \+w it|strong="G3739"\+w* \+w is|strong="G1510"\+w* \+w sown|strong="G4687"\+w* \+w in|strong="G1909"\+w* \+w the|strong="G3956"\+w* \+w earth|strong="G1093"\+w*, \+w though|strong="G5613"\+w* \+w it|strong="G3739"\+w* \+w is|strong="G1510"\+w* \+w less|strong="G3398"\+w* \+w than|strong="G3398"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G3956"\+w* \+w seeds|strong="G4690"\+w* \+w that|strong="G3739"\+w* \+w are|strong="G1510"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G3956"\+w* \+w earth|strong="G1093"\+w*, \wj* +\v 32 \wj \+w yet|strong="G2532"\+w* \+w when|strong="G3752"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w sown|strong="G4687"\+w*, \+w grows|strong="G4160"\+w* \+w up|strong="G2532"\+w* \+w and|strong="G2532"\+w* \+w becomes|strong="G1096"\+w* \+w greater|strong="G3173"\+w* \+w than|strong="G3173"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G2532"\+w* \+w herbs|strong="G3001"\+w*, \+w and|strong="G2532"\+w* \+w puts|strong="G4160"\+w* \+w out|strong="G2532"\+w* \+w great|strong="G3173"\+w* \+w branches|strong="G2798"\+w*, \+w so|strong="G2532"\+w* \+w that|strong="G3588"\+w* \+w the|strong="G2532"\+w* \+w birds|strong="G4071"\+w* \+w of|strong="G5259"\+w* \+w the|strong="G2532"\+w* \+w sky|strong="G3772"\+w* \+w can|strong="G1410"\+w* \+w lodge|strong="G2681"\+w* \+w under|strong="G5259"\+w* \+w its|strong="G3956"\+w* \+w shadow|strong="G4639"\+w*.”\wj* +\p +\v 33 \w With|strong="G2532"\w* \w many|strong="G4183"\w* \w such|strong="G5108"\w* \w parables|strong="G3850"\w* \w he|strong="G2532"\w* \w spoke|strong="G2980"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \w as|strong="G2531"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w able|strong="G1410"\w* \w to|strong="G2532"\w* hear \w it|strong="G2532"\w*. +\v 34 \w Without|strong="G5565"\w* \w a|strong="G1161"\w* \w parable|strong="G3850"\w* \w he|strong="G1161"\w* didn’\w t|strong="G3588"\w* \w speak|strong="G2980"\w* \w to|strong="G2596"\w* \w them|strong="G3588"\w*; \w but|strong="G1161"\w* \w privately|strong="G2398"\w* \w to|strong="G2596"\w* \w his|strong="G3956"\w* \w own|strong="G2398"\w* \w disciples|strong="G3101"\w* \w he|strong="G1161"\w* explained \w everything|strong="G3956"\w*. +\p +\v 35 \w On|strong="G1722"\w* \w that|strong="G3588"\w* \w day|strong="G2250"\w*, \w when|strong="G2532"\w* \w evening|strong="G3798"\w* \w had|strong="G2532"\w* \w come|strong="G1096"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Let|strong="G1096"\+w*’s \+w go|strong="G1330"\+w* \+w over|strong="G4008"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G1722"\+w* \+w other|strong="G4008"\+w* \+w side|strong="G4008"\+w*.”\wj* +\v 36 \w Leaving|strong="G3588"\w* \w the|strong="G1722"\w* \w multitude|strong="G3793"\w*, \w they|strong="G2532"\w* \w took|strong="G3880"\w* \w him|strong="G3588"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w*, \w even|strong="G2532"\w* \w as|strong="G5613"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w*, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w boat|strong="G4143"\w*. \w Other|strong="G3588"\w* small \w boats|strong="G4143"\w* \w were|strong="G1510"\w* \w also|strong="G2532"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w*. +\v 37 \w A|strong="G1096"\w* \w big|strong="G3173"\w* wind \w storm|strong="G2978"\w* \w arose|strong="G1096"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w waves|strong="G2949"\w* \w beat|strong="G1911"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w boat|strong="G4143"\w*, \w so|strong="G2532"\w* \w much|strong="G3173"\w* \w that|strong="G3588"\w* \w the|strong="G2532"\w* \w boat|strong="G4143"\w* \w was|strong="G1096"\w* \w already|strong="G2235"\w* \w filled|strong="G1072"\w*. +\v 38 \w He|strong="G2532"\w* himself \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w stern|strong="G4403"\w*, \w asleep|strong="G2518"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w cushion|strong="G4344"\w*; \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w woke|strong="G1453"\w* \w him|strong="G3588"\w* \w up|strong="G1453"\w* \w and|strong="G2532"\w* \w asked|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Teacher|strong="G1320"\w*, don’\w t|strong="G3588"\w* \w you|strong="G4771"\w* \w care|strong="G3199"\w* \w that|strong="G3754"\w* \w we|strong="G3754"\w* \w are|strong="G1510"\w* dying?” +\p +\v 39 \w He|strong="G2532"\w* \w awoke|strong="G1326"\w* \w and|strong="G2532"\w* \w rebuked|strong="G2008"\w* \w the|strong="G2532"\w* wind, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w*, \wj “\+w Peace|strong="G4623"\+w*! \+w Be|strong="G1096"\+w* \+w still|strong="G5392"\+w*!”\wj* \w The|strong="G2532"\w* wind \w ceased|strong="G2869"\w* \w and|strong="G2532"\w* \w there|strong="G2532"\w* \w was|strong="G1096"\w* \w a|strong="G1096"\w* \w great|strong="G3173"\w* \w calm|strong="G1055"\w*. +\v 40 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3004"\w*, \wj “\+w Why|strong="G5101"\+w* \+w are|strong="G1510"\+w* \+w you|strong="G3004"\+w* \+w so|strong="G3779"\+w* \+w afraid|strong="G1169"\+w*? \+w How|strong="G4459"\+w* \+w is|strong="G1510"\+w* \+w it|strong="G2532"\+w* \+w that|strong="G2532"\+w* \+w you|strong="G3004"\+w* \+w have|strong="G2192"\+w* \+w no|strong="G3756"\+w* \+w faith|strong="G4102"\+w*?”\wj* +\p +\v 41 \w They|strong="G2532"\w* \w were|strong="G1510"\w* \w greatly|strong="G3173"\w* \w afraid|strong="G5399"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w*, “\w Who|strong="G5101"\w* \w then|strong="G2532"\w* \w is|strong="G1510"\w* \w this|strong="G3778"\w*, \w that|strong="G3754"\w* \w even|strong="G2532"\w* \w the|strong="G2532"\w* wind \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w* \w obey|strong="G5219"\w* \w him|strong="G3588"\w*?” +\c 5 +\p +\v 1 \w They|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w other|strong="G4008"\w* \w side|strong="G4008"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w*, \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w country|strong="G5561"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* Gadarenes. +\v 2 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w come|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w boat|strong="G4143"\w*, \w immediately|strong="G2112"\w* \w a|strong="G2532"\w* man \w with|strong="G1722"\w* \w an|strong="G2532"\w* unclean \w spirit|strong="G4151"\w* \w met|strong="G5221"\w* \w him|strong="G3588"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w tombs|strong="G3419"\w*. +\v 3 \w He|strong="G2532"\w* \w lived|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w tombs|strong="G3418"\w*. \w Nobody|strong="G3762"\w* \w could|strong="G1410"\w* \w bind|strong="G1210"\w* \w him|strong="G3588"\w* \w any|strong="G3762"\w* \w more|strong="G3765"\w*, \w not|strong="G3761"\w* \w even|strong="G2532"\w* \w with|strong="G1722"\w* \w chains|strong="G1210"\w*, +\v 4 \w because|strong="G1223"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w been|strong="G2532"\w* \w often|strong="G4178"\w* \w bound|strong="G1210"\w* \w with|strong="G1223"\w* \w fetters|strong="G3976"\w* \w and|strong="G2532"\w* \w chains|strong="G1210"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w chains|strong="G1210"\w* \w had|strong="G2532"\w* \w been|strong="G2532"\w* \w torn|strong="G1288"\w* \w apart|strong="G1288"\w* \w by|strong="G1223"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w fetters|strong="G3976"\w* \w broken|strong="G4937"\w* \w in|strong="G2532"\w* \w pieces|strong="G4937"\w*. \w Nobody|strong="G3762"\w* \w had|strong="G2532"\w* \w the|strong="G2532"\w* \w strength|strong="G2480"\w* \w to|strong="G2532"\w* \w tame|strong="G1150"\w* \w him|strong="G3588"\w*. +\v 5 \w Always|strong="G3956"\w*, \w night|strong="G3571"\w* \w and|strong="G2532"\w* \w day|strong="G2250"\w*, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w tombs|strong="G3418"\w* \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w mountains|strong="G3735"\w*, \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w crying|strong="G2896"\w* \w out|strong="G2896"\w*, \w and|strong="G2532"\w* \w cutting|strong="G2629"\w* \w himself|strong="G1438"\w* \w with|strong="G1722"\w* \w stones|strong="G3037"\w*. +\v 6 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w Jesus|strong="G2424"\w* \w from|strong="G2532"\w* \w afar|strong="G3113"\w*, \w he|strong="G2532"\w* \w ran|strong="G5143"\w* \w and|strong="G2532"\w* \w bowed|strong="G4352"\w* \w down|strong="G4352"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, +\v 7 \w and|strong="G2532"\w* \w crying|strong="G2896"\w* \w out|strong="G2896"\w* \w with|strong="G2532"\w* \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w*, “\w What|strong="G5101"\w* \w have|strong="G2532"\w* \w I|strong="G1473"\w* \w to|strong="G2532"\w* \w do|strong="G5101"\w* \w with|strong="G2532"\w* \w you|strong="G4771"\w*, \w Jesus|strong="G2424"\w*, \w you|strong="G4771"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w Most|strong="G5310"\w* \w High|strong="G5310"\w* \w God|strong="G2316"\w*? \w I|strong="G1473"\w* \w adjure|strong="G3726"\w* \w you|strong="G4771"\w* \w by|strong="G2532"\w* \w God|strong="G2316"\w*, don’\w t|strong="G3588"\w* torment \w me|strong="G1473"\w*.” +\v 8 \w For|strong="G1063"\w* \w he|strong="G3588"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w Come|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1537"\+w* man, \+w you|strong="G3004"\+w* unclean \+w spirit|strong="G4151"\+w*!” \wj* +\p +\v 9 \w He|strong="G2532"\w* \w asked|strong="G1905"\w* \w him|strong="G1905"\w*, \wj “\+w What|strong="G5101"\+w* \+w is|strong="G1510"\+w* \+w your|strong="G2532"\+w* \+w name|strong="G3686"\+w*?”\wj* +\p \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G1905"\w*, “\w My|strong="G1473"\w* \w name|strong="G3686"\w* \w is|strong="G1510"\w* \w Legion|strong="G3003"\w*, \w for|strong="G3754"\w* \w we|strong="G3754"\w* \w are|strong="G1510"\w* \w many|strong="G4183"\w*.” +\v 10 \w He|strong="G2532"\w* \w begged|strong="G3870"\w* \w him|strong="G3588"\w* \w much|strong="G4183"\w* \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w would|strong="G2532"\w* \w not|strong="G3361"\w* send \w them|strong="G3588"\w* \w away|strong="G1854"\w* \w out|strong="G1854"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w country|strong="G5561"\w*. +\v 11 \w Now|strong="G1161"\w* \w on|strong="G1161"\w* \w the|strong="G1161"\w* mountainside \w there|strong="G1563"\w* \w was|strong="G1510"\w* \w a|strong="G1510"\w* \w great|strong="G3173"\w* herd \w of|strong="G3735"\w* \w pigs|strong="G5519"\w* \w feeding|strong="G1006"\w*. +\v 12 \w All|strong="G2532"\w* \w the|strong="G2532"\w* demons \w begged|strong="G3870"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w Send|strong="G3992"\w* \w us|strong="G3004"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w pigs|strong="G5519"\w*, \w that|strong="G2443"\w* \w we|strong="G2249"\w* \w may|strong="G2532"\w* \w enter|strong="G1525"\w* \w into|strong="G1519"\w* \w them|strong="G3588"\w*.” +\p +\v 13 \w At|strong="G1722"\w* once \w Jesus|strong="G1525"\w* \w gave|strong="G2010"\w* \w them|strong="G3588"\w* \w permission|strong="G2010"\w*. \w The|strong="G1722"\w* unclean \w spirits|strong="G4151"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w* \w and|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w pigs|strong="G5519"\w*. \w The|strong="G1722"\w* herd \w of|strong="G4151"\w* \w about|strong="G5613"\w* \w two|strong="G5613"\w* \w thousand|strong="G1367"\w* \w rushed|strong="G3729"\w* \w down|strong="G2596"\w* \w the|strong="G1722"\w* \w steep|strong="G2911"\w* \w bank|strong="G2911"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w drowned|strong="G4155"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w*. +\v 14 \w Those|strong="G3588"\w* \w who|strong="G5101"\w* \w fed|strong="G1006"\w* \w the|strong="G2532"\w* pigs \w fled|strong="G5343"\w*, \w and|strong="G2532"\w* told \w it|strong="G2532"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w and|strong="G2532"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* country. +\p \w The|strong="G2532"\w* \w people|strong="G1510"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w see|strong="G3708"\w* \w what|strong="G5101"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w that|strong="G3588"\w* \w had|strong="G2532"\w* \w happened|strong="G1096"\w*. +\v 15 \w They|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w Jesus|strong="G2424"\w*, \w and|strong="G2532"\w* \w saw|strong="G2334"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w had|strong="G2192"\w* \w been|strong="G2192"\w* \w possessed|strong="G2192"\w* \w by|strong="G4314"\w* demons \w sitting|strong="G2521"\w*, \w clothed|strong="G2439"\w*, \w and|strong="G2532"\w* \w in|strong="G2532"\w* \w his|strong="G2192"\w* \w right|strong="G4993"\w* \w mind|strong="G4993"\w*, \w even|strong="G2532"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w had|strong="G2192"\w* \w the|strong="G2532"\w* \w legion|strong="G3003"\w*; \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w afraid|strong="G5399"\w*. +\v 16 \w Those|strong="G3588"\w* \w who|strong="G3588"\w* \w saw|strong="G3708"\w* \w it|strong="G2532"\w* \w declared|strong="G1334"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w what|strong="G3588"\w* \w happened|strong="G1096"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w was|strong="G1096"\w* possessed \w by|strong="G2532"\w* demons, \w and|strong="G2532"\w* \w about|strong="G4012"\w* \w the|strong="G2532"\w* \w pigs|strong="G5519"\w*. +\v 17 \w They|strong="G2532"\w* began \w to|strong="G2532"\w* \w beg|strong="G3870"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* depart \w from|strong="G2532"\w* \w their|strong="G2532"\w* \w region|strong="G3725"\w*. +\p +\v 18 \w As|strong="G1519"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w entering|strong="G1684"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w boat|strong="G4143"\w*, \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w had|strong="G2532"\w* \w been|strong="G1510"\w* possessed \w by|strong="G2532"\w* demons \w begged|strong="G3870"\w* \w him|strong="G3588"\w* \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w be|strong="G1510"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w*. +\v 19 \w He|strong="G2532"\w* didn’\w t|strong="G3588"\w* allow \w him|strong="G3588"\w*, \w but|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \wj “\+w Go|strong="G5217"\+w* \+w to|strong="G1519"\+w* \+w your|strong="G4674"\+w* \+w house|strong="G3624"\+w*, \+w to|strong="G1519"\+w* \+w your|strong="G4674"\+w* friends, \+w and|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w them|strong="G3588"\+w* \+w what|strong="G3588"\+w* \+w great|strong="G3745"\+w* \+w things|strong="G3588"\+w* \+w the|strong="G2532"\+w* \+w Lord|strong="G2962"\+w* \+w has|strong="G2962"\+w* \+w done|strong="G4160"\+w* \+w for|strong="G1519"\+w* \+w you|strong="G4771"\+w* \+w and|strong="G2532"\+w* \+w how|strong="G3745"\+w* \+w he|strong="G2532"\+w* \+w had|strong="G2532"\+w* \+w mercy|strong="G1653"\+w* \+w on|strong="G1519"\+w* \+w you|strong="G4771"\+w*.”\wj* +\p +\v 20 \w He|strong="G2532"\w* \w went|strong="G2424"\w* \w his|strong="G3956"\w* \w way|strong="G1722"\w*, \w and|strong="G2532"\w* began \w to|strong="G2532"\w* \w proclaim|strong="G2784"\w* \w in|strong="G1722"\w* \w Decapolis|strong="G1179"\w* \w how|strong="G3745"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* \w done|strong="G4160"\w* \w great|strong="G3956"\w* \w things|strong="G3956"\w* \w for|strong="G1722"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w everyone|strong="G3956"\w* \w marveled|strong="G2296"\w*. +\p +\v 21 \w When|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* \w crossed|strong="G1276"\w* \w back|strong="G3825"\w* \w over|strong="G1909"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w boat|strong="G4143"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w other|strong="G4008"\w* \w side|strong="G4008"\w*, \w a|strong="G2532"\w* \w great|strong="G4183"\w* \w multitude|strong="G3793"\w* \w was|strong="G1510"\w* \w gathered|strong="G4863"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w*. +\v 22 \w Behold|strong="G3708"\w*, \w one|strong="G1520"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* rulers \w of|strong="G2532"\w* \w the|strong="G2532"\w* synagogue, \w Jairus|strong="G2383"\w* \w by|strong="G4314"\w* \w name|strong="G3686"\w*, \w came|strong="G2064"\w*; \w and|strong="G2532"\w* \w seeing|strong="G3708"\w* \w him|strong="G3588"\w*, \w he|strong="G2532"\w* \w fell|strong="G4098"\w* \w at|strong="G4314"\w* \w his|strong="G3708"\w* \w feet|strong="G4228"\w* +\v 23 \w and|strong="G2532"\w* \w begged|strong="G3870"\w* \w him|strong="G3588"\w* \w much|strong="G4183"\w*, \w saying|strong="G3004"\w*, “\w My|strong="G1473"\w* \w little|strong="G2365"\w* \w daughter|strong="G2365"\w* \w is|strong="G3588"\w* \w at|strong="G3588"\w* \w the|strong="G2532"\w* \w point|strong="G2079"\w* \w of|strong="G2532"\w* \w death|strong="G2079"\w*. Please \w come|strong="G2064"\w* \w and|strong="G2532"\w* \w lay|strong="G2007"\w* \w your|strong="G2192"\w* \w hands|strong="G5495"\w* \w on|strong="G5495"\w* \w her|strong="G3754"\w*, \w that|strong="G3754"\w* \w she|strong="G2532"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* \w made|strong="G4982"\w* healthy, \w and|strong="G2532"\w* \w live|strong="G2198"\w*.” +\p +\v 24 \w He|strong="G2532"\w* \w went|strong="G2532"\w* \w with|strong="G3326"\w* \w him|strong="G2532"\w*, \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w great|strong="G4183"\w* \w multitude|strong="G3793"\w* followed \w him|strong="G2532"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w pressed|strong="G3793"\w* \w upon|strong="G3326"\w* \w him|strong="G2532"\w* \w on|strong="G3326"\w* \w all|strong="G2532"\w* sides. +\v 25 \w A|strong="G2532"\w* \w certain|strong="G2532"\w* \w woman|strong="G1135"\w* \w who|strong="G2532"\w* \w had|strong="G2532"\w* \w a|strong="G2532"\w* discharge \w of|strong="G2532"\w* blood \w for|strong="G1722"\w* \w twelve|strong="G1427"\w* \w years|strong="G2094"\w*, +\v 26 \w and|strong="G2532"\w* \w had|strong="G2532"\w* \w suffered|strong="G3958"\w* \w many|strong="G4183"\w* \w things|strong="G3956"\w* \w by|strong="G5259"\w* \w many|strong="G4183"\w* \w physicians|strong="G2395"\w*, \w and|strong="G2532"\w* \w had|strong="G2532"\w* \w spent|strong="G1159"\w* \w all|strong="G3956"\w* \w that|strong="G3588"\w* \w she|strong="G2532"\w* \w had|strong="G2532"\w*, \w and|strong="G2532"\w* \w was|strong="G3588"\w* \w no|strong="G3367"\w* \w better|strong="G3123"\w*, \w but|strong="G2532"\w* \w rather|strong="G3123"\w* \w grew|strong="G2064"\w* \w worse|strong="G5501"\w*, +\v 27 having heard \w the|strong="G1722"\w* \w things|strong="G3588"\w* \w concerning|strong="G4012"\w* \w Jesus|strong="G2424"\w*, \w came|strong="G2064"\w* \w up|strong="G1722"\w* \w behind|strong="G3693"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w crowd|strong="G3793"\w* \w and|strong="G2064"\w* touched \w his|strong="G4012"\w* \w clothes|strong="G2440"\w*. +\v 28 \w For|strong="G1063"\w* \w she|strong="G3754"\w* \w said|strong="G3004"\w*, “\w If|strong="G1437"\w* \w I|strong="G1063"\w* \w just|strong="G2579"\w* touch \w his|strong="G4982"\w* \w clothes|strong="G2440"\w*, \w I|strong="G1063"\w* \w will|strong="G3748"\w* \w be|strong="G3588"\w* \w made|strong="G4982"\w* \w well|strong="G4982"\w*.” +\v 29 \w Immediately|strong="G2112"\w* \w the|strong="G2532"\w* \w flow|strong="G4077"\w* \w of|strong="G2532"\w* \w her|strong="G3754"\w* blood \w was|strong="G3588"\w* \w dried|strong="G3583"\w* \w up|strong="G3583"\w*, \w and|strong="G2532"\w* \w she|strong="G2532"\w* \w felt|strong="G1097"\w* \w in|strong="G2532"\w* \w her|strong="G3754"\w* \w body|strong="G4983"\w* \w that|strong="G3754"\w* \w she|strong="G2532"\w* \w was|strong="G3588"\w* \w healed|strong="G2390"\w* \w of|strong="G2532"\w* \w her|strong="G3754"\w* \w affliction|strong="G3148"\w*. +\p +\v 30 \w Immediately|strong="G2112"\w* \w Jesus|strong="G2424"\w*, \w perceiving|strong="G1921"\w* \w in|strong="G1722"\w* \w himself|strong="G1438"\w* \w that|strong="G3588"\w* \w the|strong="G1722"\w* \w power|strong="G1411"\w* \w had|strong="G2424"\w* \w gone|strong="G1831"\w* \w out|strong="G1831"\w* \w from|strong="G1537"\w* \w him|strong="G3588"\w*, \w turned|strong="G1994"\w* \w around|strong="G1994"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w crowd|strong="G3793"\w* \w and|strong="G2532"\w* \w asked|strong="G3004"\w*, \wj “\+w Who|strong="G5101"\+w* touched \+w my|strong="G1722"\+w* \+w clothes|strong="G2440"\+w*?”\wj* +\p +\v 31 \w His|strong="G2532"\w* \w disciples|strong="G3101"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w You|strong="G4771"\w* see \w the|strong="G2532"\w* \w multitude|strong="G3793"\w* \w pressing|strong="G4918"\w* against \w you|strong="G4771"\w*, \w and|strong="G2532"\w* \w you|strong="G4771"\w* \w say|strong="G3004"\w*, ‘\w Who|strong="G5101"\w* touched \w me|strong="G1473"\w*?’” +\p +\v 32 \w He|strong="G2532"\w* \w looked|strong="G3708"\w* \w around|strong="G4017"\w* \w to|strong="G2532"\w* \w see|strong="G3708"\w* \w her|strong="G3708"\w* \w who|strong="G3588"\w* \w had|strong="G2532"\w* \w done|strong="G4160"\w* \w this|strong="G3778"\w* \w thing|strong="G3778"\w*. +\v 33 \w But|strong="G1161"\w* \w the|strong="G2532"\w* \w woman|strong="G1135"\w*, \w fearing|strong="G5399"\w* \w and|strong="G2532"\w* \w trembling|strong="G5141"\w*, \w knowing|strong="G1492"\w* \w what|strong="G3739"\w* \w had|strong="G2532"\w* \w been|strong="G1096"\w* \w done|strong="G1096"\w* \w to|strong="G2532"\w* \w her|strong="G3956"\w*, \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w fell|strong="G4363"\w* \w down|strong="G4363"\w* \w before|strong="G4363"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w told|strong="G3004"\w* \w him|strong="G3588"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* truth. +\p +\v 34 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w her|strong="G1519"\w*, \wj “\+w Daughter|strong="G2364"\+w*, \+w your|strong="G2532"\+w* \+w faith|strong="G4102"\+w* \+w has|strong="G4102"\+w* \+w made|strong="G4982"\+w* \+w you|strong="G4771"\+w* \+w well|strong="G4982"\+w*. \+w Go|strong="G5217"\+w* \+w in|strong="G1519"\+w* \+w peace|strong="G1515"\+w*, \+w and|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w cured|strong="G4982"\+w* \+w of|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w disease|strong="G3148"\+w*.”\wj* +\p +\v 35 \w While|strong="G2980"\w* \w he|strong="G3754"\w* \w was|strong="G3588"\w* \w still|strong="G2089"\w* \w speaking|strong="G2980"\w*, \w people|strong="G3004"\w* \w came|strong="G2064"\w* \w from|strong="G2064"\w* \w the|strong="G3588"\w* synagogue ruler’s house, \w saying|strong="G3004"\w*, “\w Your|strong="G3588"\w* \w daughter|strong="G2364"\w* \w is|strong="G3588"\w* dead. \w Why|strong="G5101"\w* bother \w the|strong="G3588"\w* \w Teacher|strong="G1320"\w* \w any|strong="G2089"\w* \w more|strong="G2089"\w*?” +\p +\v 36 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w*, \w when|strong="G1161"\w* \w he|strong="G1161"\w* heard \w the|strong="G1161"\w* \w message|strong="G3056"\w* \w spoken|strong="G2980"\w*, immediately \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w the|strong="G1161"\w* ruler \w of|strong="G3056"\w* \w the|strong="G1161"\w* synagogue, \wj “Don’\+w t|strong="G3588"\+w* \+w be|strong="G3361"\+w* \+w afraid|strong="G5399"\+w*, \+w only|strong="G3440"\+w* \+w believe|strong="G4100"\+w*.”\wj* +\v 37 \w He|strong="G2532"\w* allowed \w no|strong="G3756"\w* \w one|strong="G3762"\w* \w to|strong="G2532"\w* \w follow|strong="G4870"\w* \w him|strong="G3588"\w* \w except|strong="G1487"\w* \w Peter|strong="G4074"\w*, \w James|strong="G2385"\w*, \w and|strong="G2532"\w* \w John|strong="G2491"\w* \w the|strong="G2532"\w* brother \w of|strong="G2532"\w* \w James|strong="G2385"\w*. +\v 38 \w He|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* synagogue ruler’s \w house|strong="G3624"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w saw|strong="G2334"\w* \w an|strong="G2532"\w* \w uproar|strong="G2351"\w*, \w weeping|strong="G2799"\w*, \w and|strong="G2532"\w* \w great|strong="G4183"\w* \w wailing|strong="G2799"\w*. +\v 39 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w entered|strong="G1525"\w* \w in|strong="G1525"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Why|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G3004"\+w* \+w make|strong="G2532"\+w* \+w an|strong="G2532"\+w* \+w uproar|strong="G2350"\+w* \+w and|strong="G2532"\+w* \+w weep|strong="G2799"\+w*? \+w The|strong="G2532"\+w* \+w child|strong="G3813"\+w* \+w is|strong="G3588"\+w* \+w not|strong="G3756"\+w* dead, \+w but|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w asleep|strong="G2518"\+w*.”\wj* +\p +\v 40 \w They|strong="G2532"\w* ridiculed \w him|strong="G3588"\w*. \w But|strong="G1161"\w* \w he|strong="G2532"\w*, \w having|strong="G2532"\w* \w put|strong="G1544"\w* \w them|strong="G3588"\w* \w all|strong="G3956"\w* \w out|strong="G1544"\w*, \w took|strong="G3880"\w* \w the|strong="G2532"\w* \w father|strong="G3962"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w child|strong="G3813"\w*, \w her|strong="G3956"\w* \w mother|strong="G3384"\w*, \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G1510"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w went|strong="G2532"\w* \w in|strong="G2532"\w* \w where|strong="G3699"\w* \w the|strong="G2532"\w* \w child|strong="G3813"\w* \w was|strong="G1510"\w* lying. +\v 41 \w Taking|strong="G2902"\w* \w the|strong="G2532"\w* \w child|strong="G3813"\w* \w by|strong="G2532"\w* \w the|strong="G2532"\w* \w hand|strong="G5495"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w her|strong="G3588"\w*, \wj “\+w Talitha|strong="G5008"\+w* \+w cumi|strong="G2891"\+w*!” \wj* \w which|strong="G3739"\w* \w means|strong="G1510"\w*, \w being|strong="G1510"\w* \w interpreted|strong="G3177"\w*, \wj “\+w Girl|strong="G2877"\+w*, \+w I|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w*, \+w get|strong="G1453"\+w* \+w up|strong="G1453"\+w*!” \wj* +\v 42 \w Immediately|strong="G2112"\w* \w the|strong="G2532"\w* \w girl|strong="G2877"\w* \w rose|strong="G2532"\w* \w up|strong="G2532"\w* \w and|strong="G2532"\w* \w walked|strong="G4043"\w*, \w for|strong="G1063"\w* \w she|strong="G2532"\w* \w was|strong="G1510"\w* \w twelve|strong="G1427"\w* \w years|strong="G2094"\w* \w old|strong="G2094"\w*. \w They|strong="G2532"\w* \w were|strong="G1510"\w* \w amazed|strong="G1839"\w* \w with|strong="G2532"\w* \w great|strong="G3173"\w* \w amazement|strong="G1611"\w*. +\v 43 \w He|strong="G2532"\w* \w strictly|strong="G4183"\w* \w ordered|strong="G1291"\w* \w them|strong="G1325"\w* \w that|strong="G2443"\w* \w no|strong="G3367"\w* \w one|strong="G3367"\w* \w should|strong="G2532"\w* \w know|strong="G1097"\w* \w this|strong="G3778"\w*, \w and|strong="G2532"\w* \w commanded|strong="G1291"\w* \w that|strong="G2443"\w* \w something|strong="G4183"\w* \w should|strong="G2532"\w* \w be|strong="G2532"\w* \w given|strong="G1325"\w* \w to|strong="G2443"\w* \w her|strong="G1325"\w* \w to|strong="G2443"\w* \w eat|strong="G2068"\w*. +\c 6 +\p +\v 1 \w He|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w from|strong="G2064"\w* \w there|strong="G2532"\w*. \w He|strong="G2532"\w* \w came|strong="G2064"\w* \w into|strong="G1519"\w* \w his|strong="G1519"\w* \w own|strong="G3968"\w* \w country|strong="G3968"\w*, \w and|strong="G2532"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* followed \w him|strong="G3588"\w*. +\v 2 \w When|strong="G2532"\w* \w the|strong="G1722"\w* \w Sabbath|strong="G4521"\w* \w had|strong="G2532"\w* \w come|strong="G1096"\w*, \w he|strong="G2532"\w* \w began|strong="G1096"\w* \w to|strong="G2532"\w* \w teach|strong="G1321"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w synagogue|strong="G4864"\w*, \w and|strong="G2532"\w* \w many|strong="G4183"\w* hearing \w him|strong="G3588"\w* \w were|strong="G3588"\w* \w astonished|strong="G1605"\w*, \w saying|strong="G3004"\w*, “\w Where|strong="G4159"\w* \w did|strong="G2532"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w get|strong="G1096"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*?” \w and|strong="G2532"\w*, “\w What|strong="G5101"\w* \w is|strong="G3588"\w* \w the|strong="G1722"\w* \w wisdom|strong="G4678"\w* \w that|strong="G3588"\w* \w is|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w*, \w that|strong="G3588"\w* \w such|strong="G5108"\w* \w mighty|strong="G1411"\w* \w works|strong="G1411"\w* \w come|strong="G1096"\w* \w about|strong="G1722"\w* \w by|strong="G1223"\w* \w his|strong="G1223"\w* \w hands|strong="G5495"\w*? +\v 3 Isn’\w t|strong="G3588"\w* \w this|strong="G3778"\w* \w the|strong="G1722"\w* \w carpenter|strong="G5045"\w*, \w the|strong="G1722"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w Mary|strong="G3137"\w* \w and|strong="G2532"\w* brother \w of|strong="G5207"\w* \w James|strong="G2385"\w*, \w Joses|strong="G2500"\w*, \w Judah|strong="G2455"\w*, \w and|strong="G2532"\w* \w Simon|strong="G4613"\w*? Aren’\w t|strong="G3588"\w* \w his|strong="G1722"\w* sisters \w here|strong="G5602"\w* \w with|strong="G1722"\w* \w us|strong="G2249"\w*?” \w So|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w offended|strong="G4624"\w* \w at|strong="G1722"\w* \w him|strong="G3588"\w*. +\p +\v 4 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w A|strong="G2532"\+w* \+w prophet|strong="G4396"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w without|strong="G3361"\+w* honor, \+w except|strong="G1487"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G1438"\+w* \+w own|strong="G1438"\+w* \+w country|strong="G3968"\+w*, \+w and|strong="G2532"\+w* \+w among|strong="G1722"\+w* \+w his|strong="G1438"\+w* \+w own|strong="G1438"\+w* \+w relatives|strong="G4773"\+w*, \+w and|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G1438"\+w* \+w own|strong="G1438"\+w* \+w house|strong="G3614"\+w*.”\wj* +\v 5 \w He|strong="G2532"\w* \w could|strong="G1410"\w* \w do|strong="G4160"\w* \w no|strong="G3756"\w* \w mighty|strong="G1411"\w* \w work|strong="G1411"\w* \w there|strong="G1563"\w*, \w except|strong="G1487"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w laid|strong="G2007"\w* \w his|strong="G2007"\w* \w hands|strong="G5495"\w* \w on|strong="G5495"\w* \w a|strong="G2532"\w* \w few|strong="G3641"\w* \w sick|strong="G3641"\w* \w people|strong="G4160"\w* \w and|strong="G2532"\w* \w healed|strong="G2323"\w* \w them|strong="G3588"\w*. +\v 6 \w He|strong="G2532"\w* \w marveled|strong="G2296"\w* \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w their|strong="G2532"\w* unbelief. +\p \w He|strong="G2532"\w* \w went|strong="G2532"\w* \w around|strong="G2945"\w* \w the|strong="G2532"\w* \w villages|strong="G2968"\w* \w teaching|strong="G1321"\w*. +\v 7 \w He|strong="G2532"\w* \w called|strong="G4341"\w* \w to|strong="G2532"\w* \w himself|strong="G1438"\w* \w the|strong="G2532"\w* \w twelve|strong="G1427"\w*, \w and|strong="G2532"\w* began \w to|strong="G2532"\w* send \w them|strong="G3588"\w* \w out|strong="G2532"\w* \w two|strong="G1417"\w* \w by|strong="G2532"\w* \w two|strong="G1417"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w gave|strong="G1325"\w* \w them|strong="G3588"\w* \w authority|strong="G1849"\w* \w over|strong="G1849"\w* \w the|strong="G2532"\w* unclean \w spirits|strong="G4151"\w*. +\v 8 \w He|strong="G2532"\w* \w commanded|strong="G3853"\w* \w them|strong="G3588"\w* \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w should|strong="G3588"\w* \w take|strong="G2532"\w* \w nothing|strong="G3367"\w* \w for|strong="G1519"\w* \w their|strong="G2532"\w* \w journey|strong="G3598"\w*, \w except|strong="G1487"\w* \w a|strong="G2532"\w* \w staff|strong="G4464"\w* \w only|strong="G3440"\w*: \w no|strong="G3361"\w* bread, \w no|strong="G3361"\w* wallet, \w no|strong="G3361"\w* \w money|strong="G5475"\w* \w in|strong="G1519"\w* \w their|strong="G2532"\w* \w purse|strong="G2223"\w*, +\v 9 \w but|strong="G2532"\w* \w to|strong="G2532"\w* \w wear|strong="G5265"\w* \w sandals|strong="G4547"\w*, \w and|strong="G2532"\w* \w not|strong="G3361"\w* \w put|strong="G1746"\w* \w on|strong="G1746"\w* \w two|strong="G1417"\w* \w tunics|strong="G5509"\w*. +\v 10 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3004"\w*, \wj “\+w Wherever|strong="G3699"\+w* \+w you|strong="G1437"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w a|strong="G2532"\+w* \+w house|strong="G3614"\+w*, \+w stay|strong="G3306"\+w* \+w there|strong="G1563"\+w* \+w until|strong="G2193"\+w* \+w you|strong="G1437"\+w* \+w depart|strong="G1831"\+w* \+w from|strong="G2532"\+w* \+w there|strong="G1563"\+w*. \wj* +\v 11 \wj \+w Whoever|strong="G3739"\+w* \+w will|strong="G2532"\+w* \+w not|strong="G3361"\+w* \+w receive|strong="G1209"\+w* \+w you|strong="G5210"\+w* \+w nor|strong="G3366"\+w* hear \+w you|strong="G5210"\+w*, \+w as|strong="G1519"\+w* \+w you|strong="G5210"\+w* \+w depart|strong="G1607"\+w* \+w from|strong="G2532"\+w* \+w there|strong="G2532"\+w*, \+w shake|strong="G1621"\+w* \+w off|strong="G1621"\+w* \+w the|strong="G2532"\+w* \+w dust|strong="G5522"\+w* \+w that|strong="G3739"\+w* \+w is|strong="G3588"\+w* \+w under|strong="G5270"\+w* \+w your|strong="G2532"\+w* \+w feet|strong="G4228"\+w* \+w for|strong="G1519"\+w* \+w a|strong="G2532"\+w* \+w testimony|strong="G3142"\+w* \+w against|strong="G1519"\+w* \+w them|strong="G3588"\+w*. Assuredly, \+w I|strong="G3739"\+w* tell \+w you|strong="G5210"\+w*, \+w it|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w more|strong="G2532"\+w* tolerable \+w for|strong="G1519"\+w* Sodom \+w and|strong="G2532"\+w* Gomorrah \+w in|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w day|strong="G3588"\+w* \+w of|strong="G2532"\+w* judgment \+w than|strong="G2532"\+w* \+w for|strong="G1519"\+w* \+w that|strong="G3739"\+w* city!”\wj* +\p +\v 12 \w They|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w and|strong="G2532"\w* \w preached|strong="G2784"\w* \w that|strong="G2443"\w* people \w should|strong="G2532"\w* \w repent|strong="G3340"\w*. +\v 13 \w They|strong="G2532"\w* \w cast|strong="G1544"\w* \w out|strong="G1544"\w* \w many|strong="G4183"\w* \w demons|strong="G1140"\w*, \w and|strong="G2532"\w* anointed \w many|strong="G4183"\w* \w with|strong="G2532"\w* \w oil|strong="G1637"\w* \w who|strong="G2532"\w* \w were|strong="G2532"\w* sick \w and|strong="G2532"\w* \w healed|strong="G2323"\w* \w them|strong="G1544"\w*. +\v 14 \w King|strong="G3588"\w* \w Herod|strong="G2264"\w* heard \w this|strong="G3778"\w*, \w for|strong="G1063"\w* \w his|strong="G1223"\w* \w name|strong="G3686"\w* \w had|strong="G2532"\w* \w become|strong="G1096"\w* \w known|strong="G5318"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w*, “\w John|strong="G2491"\w* \w the|strong="G1722"\w* Baptizer \w has|strong="G1096"\w* \w risen|strong="G1453"\w* \w from|strong="G1537"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w*, \w and|strong="G2532"\w* \w therefore|strong="G1223"\w* \w these|strong="G3778"\w* \w powers|strong="G1411"\w* \w are|strong="G3588"\w* \w at|strong="G1722"\w* \w work|strong="G1754"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*.” +\v 15 \w But|strong="G1161"\w* \w others|strong="G3588"\w* \w said|strong="G3004"\w*, “\w He|strong="G1161"\w* \w is|strong="G1510"\w* \w Elijah|strong="G2243"\w*.” \w Others|strong="G3588"\w* \w said|strong="G3004"\w*, “\w He|strong="G1161"\w* \w is|strong="G1510"\w* \w a|strong="G5613"\w* \w prophet|strong="G4396"\w*, \w or|strong="G1161"\w* \w like|strong="G5613"\w* \w one|strong="G1520"\w* \w of|strong="G1520"\w* \w the|strong="G1161"\w* \w prophets|strong="G4396"\w*.” +\v 16 \w But|strong="G1161"\w* \w Herod|strong="G2264"\w*, \w when|strong="G1161"\w* \w he|strong="G1161"\w* heard \w this|strong="G3778"\w*, \w said|strong="G3004"\w*, “\w This|strong="G3778"\w* \w is|strong="G3588"\w* \w John|strong="G2491"\w*, \w whom|strong="G3739"\w* \w I|strong="G1473"\w* beheaded. \w He|strong="G1161"\w* \w has|strong="G3739"\w* \w risen|strong="G1453"\w* \w from|strong="G3588"\w* \w the|strong="G1161"\w* dead.” +\v 17 \w For|strong="G1063"\w* \w Herod|strong="G2264"\w* \w himself|strong="G1438"\w* \w had|strong="G2532"\w* \w sent|strong="G2532"\w* \w out|strong="G2532"\w* \w and|strong="G2532"\w* \w arrested|strong="G2902"\w* \w John|strong="G2491"\w* \w and|strong="G2532"\w* \w bound|strong="G1210"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w prison|strong="G5438"\w* \w for|strong="G1063"\w* \w the|strong="G1722"\w* \w sake|strong="G1223"\w* \w of|strong="G1223"\w* \w Herodias|strong="G2266"\w*, \w his|strong="G1438"\w* brother \w Philip|strong="G5376"\w*’s \w wife|strong="G1135"\w*, \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w married|strong="G1060"\w* \w her|strong="G1438"\w*. +\v 18 \w For|strong="G1063"\w* \w John|strong="G2491"\w* \w had|strong="G2192"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w Herod|strong="G2264"\w*, “\w It|strong="G3754"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w lawful|strong="G1832"\w* \w for|strong="G1063"\w* \w you|strong="G4771"\w* \w to|strong="G3004"\w* \w have|strong="G2192"\w* \w your|strong="G2192"\w* brother’\w s|strong="G2192"\w* \w wife|strong="G1135"\w*.” +\v 19 \w Herodias|strong="G2266"\w* \w set|strong="G2532"\w* herself \w against|strong="G1758"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w desired|strong="G2309"\w* \w to|strong="G2532"\w* kill \w him|strong="G3588"\w*, \w but|strong="G1161"\w* \w she|strong="G2532"\w* couldn’\w t|strong="G3588"\w*, +\v 20 \w for|strong="G1063"\w* \w Herod|strong="G2264"\w* \w feared|strong="G5399"\w* \w John|strong="G2491"\w*, \w knowing|strong="G1492"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w a|strong="G2532"\w* \w righteous|strong="G1342"\w* \w and|strong="G2532"\w* holy \w man|strong="G1342"\w*, \w and|strong="G2532"\w* \w kept|strong="G4933"\w* \w him|strong="G3588"\w* \w safe|strong="G4933"\w*. \w When|strong="G2532"\w* \w he|strong="G2532"\w* heard \w him|strong="G3588"\w*, \w he|strong="G2532"\w* \w did|strong="G2532"\w* \w many|strong="G4183"\w* \w things|strong="G3588"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* heard \w him|strong="G3588"\w* \w gladly|strong="G2234"\w*. +\p +\v 21 \w Then|strong="G2532"\w* \w a|strong="G1096"\w* \w convenient|strong="G2121"\w* \w day|strong="G2250"\w* \w came|strong="G1096"\w* \w when|strong="G3753"\w* \w Herod|strong="G2264"\w* \w on|strong="G4160"\w* \w his|strong="G4160"\w* \w birthday|strong="G1077"\w* \w made|strong="G4160"\w* \w a|strong="G1096"\w* \w supper|strong="G1173"\w* \w for|strong="G2532"\w* \w his|strong="G4160"\w* nobles, \w the|strong="G2532"\w* \w high|strong="G2532"\w* officers, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w chief|strong="G4413"\w* \w men|strong="G4413"\w* \w of|strong="G2250"\w* \w Galilee|strong="G1056"\w*. +\v 22 \w When|strong="G1161"\w* \w the|strong="G2532"\w* \w daughter|strong="G2364"\w* \w of|strong="G2532"\w* \w Herodias|strong="G2266"\w* herself \w came|strong="G1525"\w* \w in|strong="G1525"\w* \w and|strong="G2532"\w* \w danced|strong="G3738"\w*, \w she|strong="G2532"\w* pleased \w Herod|strong="G2264"\w* \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w sitting|strong="G2532"\w* \w with|strong="G2532"\w* \w him|strong="G3588"\w*. \w The|strong="G2532"\w* \w king|strong="G3588"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w young|strong="G3739"\w* lady, “\w Ask|strong="G3004"\w* \w me|strong="G1325"\w* \w whatever|strong="G3739"\w* \w you|strong="G4771"\w* \w want|strong="G2309"\w*, \w and|strong="G2532"\w* \w I|strong="G1473"\w* \w will|strong="G2309"\w* \w give|strong="G1325"\w* \w it|strong="G2532"\w* \w to|strong="G2532"\w* \w you|strong="G4771"\w*.” +\v 23 \w He|strong="G2532"\w* \w swore|strong="G3660"\w* \w to|strong="G2532"\w* \w her|strong="G1437"\w*, “\w Whatever|strong="G3739"\w* \w you|strong="G4771"\w* ask \w of|strong="G2532"\w* \w me|strong="G1325"\w*, \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w give|strong="G1325"\w* \w you|strong="G4771"\w*, \w up|strong="G1325"\w* \w to|strong="G2532"\w* \w half|strong="G2255"\w* \w of|strong="G2532"\w* \w my|strong="G1325"\w* kingdom.” +\p +\v 24 \w She|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w her|strong="G3588"\w* \w mother|strong="G3384"\w*, “\w What|strong="G5101"\w* \w shall|strong="G2532"\w* \w I|strong="G2532"\w* \w ask|strong="G3004"\w*?” +\p \w She|strong="G2532"\w* \w said|strong="G3004"\w*, “\w The|strong="G2532"\w* \w head|strong="G2776"\w* \w of|strong="G2532"\w* \w John|strong="G2491"\w* \w the|strong="G2532"\w* Baptizer.” +\p +\v 25 \w She|strong="G2532"\w* \w came|strong="G1525"\w* \w in|strong="G1909"\w* \w immediately|strong="G2112"\w* \w with|strong="G3326"\w* \w haste|strong="G4710"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w king|strong="G3588"\w* \w and|strong="G2532"\w* requested, “\w I|strong="G1473"\w* \w want|strong="G2309"\w* \w you|strong="G1325"\w* \w to|strong="G4314"\w* \w give|strong="G1325"\w* \w me|strong="G1325"\w* \w right|strong="G2117"\w* \w now|strong="G2532"\w* \w the|strong="G2532"\w* \w head|strong="G2776"\w* \w of|strong="G2532"\w* \w John|strong="G2491"\w* \w the|strong="G2532"\w* Baptizer \w on|strong="G1909"\w* \w a|strong="G2532"\w* \w platter|strong="G4094"\w*.” +\p +\v 26 \w The|strong="G2532"\w* \w king|strong="G3588"\w* \w was|strong="G1096"\w* exceedingly \w sorry|strong="G4036"\w*, \w but|strong="G2532"\w* \w for|strong="G1223"\w* \w the|strong="G2532"\w* \w sake|strong="G1223"\w* \w of|strong="G1223"\w* \w his|strong="G1438"\w* \w oaths|strong="G3727"\w* \w and|strong="G2532"\w* \w of|strong="G1223"\w* \w his|strong="G1438"\w* dinner guests, \w he|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w wish|strong="G2309"\w* \w to|strong="G2532"\w* \w refuse|strong="G3756"\w* \w her|strong="G1438"\w*. +\v 27 \w Immediately|strong="G2112"\w* \w the|strong="G1722"\w* \w king|strong="G3588"\w* \w sent|strong="G2532"\w* \w out|strong="G2532"\w* \w a|strong="G2532"\w* soldier \w of|strong="G2532"\w* \w his|strong="G1722"\w* \w guard|strong="G2532"\w* \w and|strong="G2532"\w* \w commanded|strong="G2004"\w* \w to|strong="G2532"\w* \w bring|strong="G5342"\w* \w John|strong="G2532"\w*’s \w head|strong="G2776"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w went|strong="G2532"\w* \w and|strong="G2532"\w* beheaded \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w prison|strong="G5438"\w*, +\v 28 \w and|strong="G2532"\w* \w brought|strong="G5342"\w* \w his|strong="G1438"\w* \w head|strong="G2776"\w* \w on|strong="G1909"\w* \w a|strong="G2532"\w* \w platter|strong="G4094"\w*, \w and|strong="G2532"\w* \w gave|strong="G1325"\w* \w it|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* young lady; \w and|strong="G2532"\w* \w the|strong="G1722"\w* young lady \w gave|strong="G1325"\w* \w it|strong="G2532"\w* \w to|strong="G2532"\w* \w her|strong="G1325"\w* \w mother|strong="G3384"\w*. +\p +\v 29 \w When|strong="G2532"\w* \w his|strong="G1722"\w* \w disciples|strong="G3101"\w* heard \w this|strong="G3588"\w*, \w they|strong="G2532"\w* \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w took|strong="G2532"\w* \w up|strong="G2532"\w* \w his|strong="G1722"\w* \w corpse|strong="G4430"\w* \w and|strong="G2532"\w* \w laid|strong="G5087"\w* \w it|strong="G2532"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* \w tomb|strong="G3419"\w*. +\p +\v 30 \w The|strong="G2532"\w* apostles \w gathered|strong="G4863"\w* \w themselves|strong="G4863"\w* \w together|strong="G4863"\w* \w to|strong="G4314"\w* \w Jesus|strong="G2424"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w told|strong="G4314"\w* \w him|strong="G3588"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w whatever|strong="G3745"\w* \w they|strong="G2532"\w* \w had|strong="G2424"\w* \w done|strong="G4160"\w*, \w and|strong="G2532"\w* \w whatever|strong="G3745"\w* \w they|strong="G2532"\w* \w had|strong="G2424"\w* \w taught|strong="G1321"\w*. +\v 31 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Come|strong="G2064"\+w* \+w away|strong="G5217"\+w* \+w into|strong="G1519"\+w* \+w a|strong="G2532"\+w* \+w deserted|strong="G2048"\+w* \+w place|strong="G5117"\+w*, \+w and|strong="G2532"\+w* \+w rest|strong="G1510"\+w* awhile.”\wj* \w For|strong="G1063"\w* \w there|strong="G2532"\w* \w were|strong="G1510"\w* \w many|strong="G4183"\w* \w coming|strong="G2064"\w* \w and|strong="G2532"\w* \w going|strong="G5217"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w no|strong="G3761"\w* \w leisure|strong="G2119"\w* \w so|strong="G2532"\w* \w much|strong="G4183"\w* \w as|strong="G1519"\w* \w to|strong="G1519"\w* \w eat|strong="G2068"\w*. +\v 32 \w They|strong="G2532"\w* \w went|strong="G2532"\w* away \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w boat|strong="G4143"\w* \w to|strong="G1519"\w* \w a|strong="G2532"\w* \w deserted|strong="G2048"\w* \w place|strong="G5117"\w* \w by|strong="G1722"\w* \w themselves|strong="G2398"\w*. +\v 33 \w They|strong="G2532"\w*\f + \fr 6:33 \ft TR reads “The multitudes” instead of “They”\f* \w saw|strong="G3708"\w* \w them|strong="G3588"\w* \w going|strong="G5217"\w*, \w and|strong="G2532"\w* \w many|strong="G4183"\w* \w recognized|strong="G1921"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w ran|strong="G4936"\w* \w there|strong="G1563"\w* \w on|strong="G4281"\w* \w foot|strong="G3979"\w* \w from|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w cities|strong="G4172"\w*. \w They|strong="G2532"\w* arrived \w before|strong="G4281"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w came|strong="G2532"\w* \w together|strong="G4936"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*. +\v 34 \w Jesus|strong="G1510"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w*, \w saw|strong="G3708"\w* \w a|strong="G2192"\w* \w great|strong="G4183"\w* \w multitude|strong="G3793"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2192"\w* \w compassion|strong="G4697"\w* \w on|strong="G1909"\w* \w them|strong="G1438"\w* \w because|strong="G3754"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w like|strong="G5613"\w* \w sheep|strong="G4263"\w* \w without|strong="G3361"\w* \w a|strong="G2192"\w* \w shepherd|strong="G4166"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w began|strong="G1909"\w* \w to|strong="G2532"\w* \w teach|strong="G1321"\w* \w them|strong="G1438"\w* \w many|strong="G4183"\w* \w things|strong="G4183"\w*. +\v 35 \w When|strong="G2532"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w late|strong="G5610"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w day|strong="G5610"\w*, \w his|strong="G2532"\w* \w disciples|strong="G3101"\w* \w came|strong="G4334"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w This|strong="G3588"\w* \w place|strong="G5117"\w* \w is|strong="G1510"\w* \w deserted|strong="G2048"\w*, \w and|strong="G2532"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w late|strong="G5610"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w day|strong="G5610"\w*. +\v 36 Send \w them|strong="G3588"\w* away, \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w may|strong="G2532"\w* \w go|strong="G1519"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w surrounding|strong="G2945"\w* country \w and|strong="G2532"\w* \w villages|strong="G2968"\w* \w and|strong="G2532"\w* buy \w themselves|strong="G1438"\w* bread, \w for|strong="G1519"\w* \w they|strong="G2532"\w* \w have|strong="G2532"\w* \w nothing|strong="G5101"\w* \w to|strong="G1519"\w* \w eat|strong="G2068"\w*.” +\p +\v 37 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w You|strong="G5210"\+w* \+w give|strong="G1325"\+w* \+w them|strong="G3588"\+w* something \+w to|strong="G2532"\+w* \+w eat|strong="G2068"\+w*.”\wj* +\p \w They|strong="G2532"\w* \w asked|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Shall|strong="G2532"\w* \w we|strong="G2532"\w* \w go|strong="G2532"\w* \w and|strong="G2532"\w* buy \w two|strong="G1250"\w* \w hundred|strong="G1250"\w* \w denarii|strong="G1220"\w*\f + \fr 6:37 \ft 200 denarii was about 7 or 8 months wages for an agricultural laborer.\f* worth \w of|strong="G2532"\w* bread \w and|strong="G2532"\w* \w give|strong="G1325"\w* \w them|strong="G3588"\w* something \w to|strong="G2532"\w* \w eat|strong="G2068"\w*?” +\p +\v 38 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w How|strong="G4214"\+w* \+w many|strong="G4214"\+w* loaves \+w do|strong="G2532"\+w* \+w you|strong="G3004"\+w* \+w have|strong="G2192"\+w*? \+w Go|strong="G5217"\+w* \+w see|strong="G3708"\+w*.”\wj* +\p \w When|strong="G1161"\w* \w they|strong="G2532"\w* \w knew|strong="G1097"\w*, \w they|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Five|strong="G4002"\w*, \w and|strong="G2532"\w* \w two|strong="G1417"\w* \w fish|strong="G2486"\w*.” +\p +\v 39 \w He|strong="G2532"\w* \w commanded|strong="G2004"\w* \w them|strong="G3588"\w* \w that|strong="G3588"\w* \w everyone|strong="G3956"\w* \w should|strong="G3588"\w* \w sit|strong="G3956"\w* down \w in|strong="G1909"\w* \w groups|strong="G4849"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w green|strong="G5515"\w* \w grass|strong="G5528"\w*. +\v 40 \w They|strong="G2532"\w* \w sat|strong="G2532"\w* \w down|strong="G2596"\w* \w in|strong="G2596"\w* \w ranks|strong="G4237"\w*, \w by|strong="G2596"\w* \w hundreds|strong="G1540"\w* \w and|strong="G2532"\w* \w by|strong="G2596"\w* \w fifties|strong="G4004"\w*. +\v 41 \w He|strong="G2532"\w* \w took|strong="G2983"\w* \w the|strong="G2532"\w* \w five|strong="G4002"\w* loaves \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w two|strong="G1417"\w* \w fish|strong="G2486"\w*; \w and|strong="G2532"\w* \w looking|strong="G2532"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w heaven|strong="G3772"\w*, \w he|strong="G2532"\w* \w blessed|strong="G2127"\w* \w and|strong="G2532"\w* \w broke|strong="G2622"\w* \w the|strong="G2532"\w* loaves, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w gave|strong="G1325"\w* \w to|strong="G1519"\w* \w his|strong="G3956"\w* \w disciples|strong="G3101"\w* \w to|strong="G1519"\w* \w set|strong="G3908"\w* \w before|strong="G3908"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w divided|strong="G3307"\w* \w the|strong="G2532"\w* \w two|strong="G1417"\w* \w fish|strong="G2486"\w* \w among|strong="G1519"\w* \w them|strong="G3588"\w* \w all|strong="G3956"\w*. +\v 42 \w They|strong="G2532"\w* \w all|strong="G3956"\w* \w ate|strong="G2068"\w* \w and|strong="G2532"\w* \w were|strong="G2532"\w* \w filled|strong="G5526"\w*. +\v 43 \w They|strong="G2532"\w* \w took|strong="G2532"\w* \w up|strong="G4138"\w* \w twelve|strong="G1427"\w* \w baskets|strong="G2894"\w* \w full|strong="G4138"\w* \w of|strong="G2532"\w* \w broken|strong="G2801"\w* \w pieces|strong="G2801"\w* \w and|strong="G2532"\w* \w also|strong="G2532"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w fish|strong="G2486"\w*. +\v 44 \w Those|strong="G3588"\w* \w who|strong="G3588"\w* \w ate|strong="G2068"\w* \w the|strong="G2532"\w* loaves \w were|strong="G1510"\w*\f + \fr 6:44 \ft TR adds “about”\f* \w five|strong="G4000"\w* \w thousand|strong="G4000"\w* \w men|strong="G3588"\w*. +\p +\v 45 \w Immediately|strong="G2112"\w* \w he|strong="G2532"\w* \w made|strong="G1519"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w get|strong="G1684"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w boat|strong="G4143"\w* \w and|strong="G2532"\w* \w go|strong="G4254"\w* \w ahead|strong="G4254"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w other|strong="G4008"\w* \w side|strong="G4008"\w*, \w to|strong="G1519"\w* Bethsaida, \w while|strong="G2193"\w* \w he|strong="G2532"\w* \w himself|strong="G1519"\w* \w sent|strong="G2532"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w* away. +\v 46 \w After|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* taken leave \w of|strong="G2532"\w* \w them|strong="G3588"\w*, \w he|strong="G2532"\w* \w went|strong="G2532"\w* \w up|strong="G1519"\w* \w the|strong="G2532"\w* \w mountain|strong="G3735"\w* \w to|strong="G1519"\w* \w pray|strong="G4336"\w*. +\p +\v 47 \w When|strong="G2532"\w* \w evening|strong="G3798"\w* \w had|strong="G2532"\w* \w come|strong="G1096"\w*, \w the|strong="G1722"\w* \w boat|strong="G4143"\w* \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w middle|strong="G3319"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w alone|strong="G3441"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w land|strong="G1093"\w*. +\v 48 \w Seeing|strong="G3708"\w* \w them|strong="G3588"\w* distressed \w in|strong="G1722"\w* \w rowing|strong="G1643"\w*, \w for|strong="G1063"\w* \w the|strong="G1722"\w* wind \w was|strong="G1510"\w* \w contrary|strong="G1727"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \w about|strong="G4012"\w* \w the|strong="G1722"\w* \w fourth|strong="G5067"\w* \w watch|strong="G5438"\w* \w of|strong="G4012"\w* \w the|strong="G1722"\w* \w night|strong="G3571"\w* \w he|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \w walking|strong="G4043"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w*;\x + \xo 6:48 \xt See Job 9:8\x* \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w would|strong="G2309"\w* \w have|strong="G2309"\w* \w passed|strong="G3588"\w* \w by|strong="G1722"\w* \w them|strong="G3588"\w*, +\v 49 \w but|strong="G1161"\w* \w they|strong="G2532"\w*, \w when|strong="G1161"\w* \w they|strong="G2532"\w* \w saw|strong="G3708"\w* \w him|strong="G3588"\w* \w walking|strong="G4043"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w*, \w supposed|strong="G1380"\w* \w that|strong="G3754"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w ghost|strong="G5326"\w*, \w and|strong="G2532"\w* \w cried|strong="G2532"\w* \w out|strong="G2532"\w*; +\v 50 \w for|strong="G1063"\w* \w they|strong="G2532"\w* \w all|strong="G3956"\w* \w saw|strong="G3708"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w were|strong="G1510"\w* \w troubled|strong="G5015"\w*. \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w immediately|strong="G2112"\w* \w spoke|strong="G2980"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “Cheer \+w up|strong="G3361"\+w*! \+w It|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w I|strong="G1473"\+w*!\wj*\f + \fr 6:50 \ft or, “I AM!”\f* \wj Don’\+w t|strong="G3588"\+w* \+w be|strong="G1510"\+w* \+w afraid|strong="G5399"\+w*.”\wj* +\v 51 \w He|strong="G2532"\w* got \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w boat|strong="G4143"\w* \w with|strong="G1722"\w* \w them|strong="G3588"\w*; \w and|strong="G2532"\w* \w the|strong="G1722"\w* wind \w ceased|strong="G2869"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w very|strong="G3029"\w* \w amazed|strong="G1839"\w* \w among|strong="G1722"\w* \w themselves|strong="G1438"\w*, \w and|strong="G2532"\w* marveled; +\v 52 \w for|strong="G1063"\w* \w they|strong="G3588"\w* hadn’\w t|strong="G3588"\w* \w understood|strong="G4920"\w* \w about|strong="G1909"\w* \w the|strong="G1909"\w* loaves, \w but|strong="G1063"\w* \w their|strong="G3588"\w* \w hearts|strong="G2588"\w* \w were|strong="G1510"\w* \w hardened|strong="G4456"\w*. +\p +\v 53 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w crossed|strong="G1276"\w* \w over|strong="G1909"\w*, \w they|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w land|strong="G1093"\w* \w at|strong="G1909"\w* \w Gennesaret|strong="G1082"\w* \w and|strong="G2532"\w* \w moored|strong="G4358"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w shore|strong="G1093"\w*. +\v 54 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w come|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w boat|strong="G4143"\w*, \w immediately|strong="G2112"\w* \w the|strong="G2532"\w* \w people|strong="G3588"\w* \w recognized|strong="G1921"\w* \w him|strong="G3588"\w*, +\v 55 \w and|strong="G2532"\w* \w ran|strong="G4063"\w* \w around|strong="G1909"\w* \w that|strong="G3754"\w* \w whole|strong="G3650"\w* \w region|strong="G5561"\w*, \w and|strong="G2532"\w* \w began|strong="G1909"\w* \w to|strong="G2532"\w* \w bring|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G1510"\w* \w sick|strong="G2560"\w* \w on|strong="G1909"\w* \w their|strong="G2532"\w* \w mats|strong="G2895"\w* \w to|strong="G2532"\w* \w where|strong="G3699"\w* \w they|strong="G2532"\w* heard \w he|strong="G2532"\w* \w was|strong="G1510"\w*. +\v 56 \w Wherever|strong="G3699"\w* \w he|strong="G2532"\w* \w entered|strong="G1531"\w*—\w into|strong="G1519"\w* \w villages|strong="G2968"\w*, \w or|strong="G2228"\w* \w into|strong="G1519"\w* \w cities|strong="G4172"\w*, \w or|strong="G2228"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* country—\w they|strong="G2532"\w* \w laid|strong="G5087"\w* \w the|strong="G1722"\w* sick \w in|strong="G1722"\w* \w the|strong="G1722"\w* marketplaces \w and|strong="G2532"\w* \w begged|strong="G3870"\w* \w him|strong="G3588"\w* \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w just|strong="G2532"\w* touch \w the|strong="G1722"\w* \w fringe|strong="G2899"\w*\f + \fr 6:56 \ft or, tassel\f* \w of|strong="G2532"\w* \w his|strong="G1519"\w* \w garment|strong="G2440"\w*; \w and|strong="G2532"\w* \w as|strong="G3745"\w* \w many|strong="G3745"\w* \w as|strong="G3745"\w* touched \w him|strong="G3588"\w* \w were|strong="G3588"\w* \w made|strong="G4982"\w* \w well|strong="G4982"\w*. +\c 7 +\p +\v 1 \w Then|strong="G2532"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w and|strong="G2532"\w* \w some|strong="G5100"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w scribes|strong="G1122"\w* \w gathered|strong="G4863"\w* \w together|strong="G4863"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \w having|strong="G2532"\w* \w come|strong="G2064"\w* \w from|strong="G2064"\w* \w Jerusalem|strong="G2414"\w*. +\v 2 \w Now|strong="G2532"\w* \w when|strong="G2532"\w* \w they|strong="G2532"\w* \w saw|strong="G3708"\w* \w some|strong="G5100"\w* \w of|strong="G2532"\w* \w his|strong="G3708"\w* \w disciples|strong="G3101"\w* \w eating|strong="G2068"\w* bread \w with|strong="G2532"\w* \w defiled|strong="G2839"\w*, \w that|strong="G3754"\w* \w is|strong="G1510"\w* unwashed, \w hands|strong="G5495"\w*, \w they|strong="G2532"\w* \w found|strong="G1510"\w* fault. +\v 3 (\w For|strong="G1063"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* don’\w t|strong="G3588"\w* \w eat|strong="G2068"\w* \w unless|strong="G1437"\w* \w they|strong="G2532"\w* \w wash|strong="G3538"\w* \w their|strong="G2532"\w* \w hands|strong="G5495"\w* \w and|strong="G2532"\w* forearms, \w holding|strong="G2902"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w tradition|strong="G3862"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w*. +\v 4 \w They|strong="G2532"\w* don’t \w eat|strong="G2068"\w* \w when|strong="G2532"\w* \w they|strong="G2532"\w* \w come|strong="G1510"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* marketplace \w unless|strong="G1437"\w* \w they|strong="G2532"\w* bathe \w themselves|strong="G1510"\w*, \w and|strong="G2532"\w* \w there|strong="G2532"\w* \w are|strong="G1510"\w* \w many|strong="G4183"\w* \w other|strong="G4183"\w* \w things|strong="G4183"\w* \w which|strong="G3739"\w* \w they|strong="G2532"\w* \w have|strong="G2532"\w* \w received|strong="G3880"\w* \w to|strong="G2532"\w* \w hold|strong="G2902"\w* \w to|strong="G2532"\w*: washings \w of|strong="G2532"\w* \w cups|strong="G4221"\w*, \w pitchers|strong="G3582"\w*, bronze \w vessels|strong="G5473"\w*, \w and|strong="G2532"\w* couches.) +\v 5 \w The|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w scribes|strong="G1122"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w*, “\w Why|strong="G5101"\w* don’\w t|strong="G3588"\w* \w your|strong="G1223"\w* \w disciples|strong="G3101"\w* \w walk|strong="G4043"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w tradition|strong="G3862"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w*, \w but|strong="G2532"\w* \w eat|strong="G2068"\w* \w their|strong="G2532"\w* bread \w with|strong="G1223"\w* unwashed \w hands|strong="G5495"\w*?” +\p +\v 6 \w He|strong="G1161"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Well|strong="G2573"\+w* \+w did|strong="G2573"\+w* \+w Isaiah|strong="G2268"\+w* \+w prophesy|strong="G4395"\+w* \+w of|strong="G4012"\+w* \+w you|strong="G5210"\+w* \+w hypocrites|strong="G5273"\+w*, \+w as|strong="G5613"\+w* \+w it|strong="G3754"\+w* \+w is|strong="G3588"\+w* \+w written|strong="G1125"\+w*,\wj* +\q1 \wj ‘\+w This|strong="G3778"\+w* \+w people|strong="G2992"\+w* \+w honors|strong="G5091"\+w* \+w me|strong="G1473"\+w* \+w with|strong="G4012"\+w* \+w their|strong="G4012"\+w* \+w lips|strong="G5491"\+w*,\wj* +\q2 \wj \+w but|strong="G1161"\+w* \+w their|strong="G4012"\+w* \+w heart|strong="G2588"\+w* \+w is|strong="G3588"\+w* \+w far|strong="G4206"\+w* \+w from|strong="G3588"\+w* \+w me|strong="G1473"\+w*.\wj* +\q1 +\v 7 \wj \+w They|strong="G1161"\+w* \+w worship|strong="G4576"\+w* \+w me|strong="G1473"\+w* \+w in|strong="G1161"\+w* \+w vain|strong="G3155"\+w*,\wj* +\q2 \wj \+w teaching|strong="G1321"\+w* \+w as|strong="G1161"\+w* \+w doctrines|strong="G1319"\+w* \+w the|strong="G1161"\+w* \+w commandments|strong="G1778"\+w* \+w of|strong="G1319"\+w* men.’\wj*\x + \xo 7:7 \xt Isaiah 29:13 \x* +\p +\v 8 \wj “\+w For|strong="G2316"\+w* you set aside \+w the|strong="G3588"\+w* \+w commandment|strong="G1785"\+w* \+w of|strong="G2316"\+w* \+w God|strong="G2316"\+w*, \+w and|strong="G2316"\+w* \+w hold|strong="G2902"\+w* tightly \+w to|strong="G2316"\+w* \+w the|strong="G3588"\+w* \+w tradition|strong="G3862"\+w* \+w of|strong="G2316"\+w* \+w men|strong="G3588"\+w*—\+w the|strong="G3588"\+w* washing \+w of|strong="G2316"\+w* pitchers \+w and|strong="G2316"\+w* cups, \+w and|strong="G2316"\+w* you \+w do|strong="G3588"\+w* many \+w other|strong="G3588"\+w* \+w such|strong="G3588"\+w* \+w things|strong="G3588"\+w*.”\wj* +\v 9 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2443"\w* \w them|strong="G3588"\w*, \wj “Full \+w well|strong="G2573"\+w* \+w do|strong="G2532"\+w* \+w you|strong="G5210"\+w* reject \+w the|strong="G2532"\+w* \+w commandment|strong="G1785"\+w* \+w of|strong="G2316"\+w* \+w God|strong="G2316"\+w*, \+w that|strong="G2443"\+w* \+w you|strong="G5210"\+w* \+w may|strong="G2532"\+w* \+w keep|strong="G5083"\+w* \+w your|strong="G2532"\+w* \+w tradition|strong="G3862"\+w*. \wj* +\v 10 \wj \+w For|strong="G1063"\+w* \+w Moses|strong="G3475"\+w* \+w said|strong="G3004"\+w*, ‘\+w Honor|strong="G5091"\+w* \+w your|strong="G5091"\+w* \+w father|strong="G3962"\+w* \+w and|strong="G2532"\+w* \+w your|strong="G5091"\+w* \+w mother|strong="G3384"\+w*;’\wj*\x + \xo 7:10 \xt Exodus 20:12; Deuteronomy 5:16\x* \wj \+w and|strong="G2532"\+w*, ‘\+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w speaks|strong="G3004"\+w* \+w evil|strong="G2551"\+w* \+w of|strong="G2532"\+w* \+w father|strong="G3962"\+w* \+w or|strong="G2228"\+w* \+w mother|strong="G3384"\+w*, \+w let|strong="G1063"\+w* \+w him|strong="G3588"\+w* \+w be|strong="G2532"\+w* \+w put|strong="G5053"\+w* \+w to|strong="G2532"\+w* \+w death|strong="G2288"\+w*.’\wj*\x + \xo 7:10 \xt Exodus 21:17; Leviticus 20:9\x* +\v 11 \wj \+w But|strong="G1161"\+w* \+w you|strong="G5210"\+w* \+w say|strong="G3004"\+w*, ‘\+w If|strong="G1437"\+w* \+w a|strong="G1510"\+w* \+w man|strong="G3739"\+w* tells \+w his|strong="G3739"\+w* \+w father|strong="G3962"\+w* \+w or|strong="G2228"\+w* \+w his|strong="G3739"\+w* \+w mother|strong="G3384"\+w*, “\+w Whatever|strong="G3739"\+w* \+w profit|strong="G5623"\+w* \+w you|strong="G5210"\+w* \+w might|strong="G5210"\+w* \+w have|strong="G1473"\+w* received \+w from|strong="G1537"\+w* \+w me|strong="G1473"\+w* \+w is|strong="G1510"\+w* \+w Corban|strong="G2878"\+w*,”’”\wj*\f + \fr 7:11 \ft Corban is a Hebrew word for an offering devoted to God.\f* \w that|strong="G3739"\w* \w is|strong="G1510"\w* \w to|strong="G3004"\w* \w say|strong="G3004"\w*, \w given|strong="G1435"\w* \w to|strong="G3004"\w* \w God|strong="G3004"\w*, +\v 12 \wj “\+w then|strong="G3765"\+w* \+w you|strong="G4160"\+w* \+w no|strong="G3762"\+w* \+w longer|strong="G3765"\+w* allow \+w him|strong="G3588"\+w* \+w to|strong="G2228"\+w* \+w do|strong="G4160"\+w* \+w anything|strong="G3762"\+w* \+w for|strong="G2228"\+w* \+w his|strong="G4160"\+w* \+w father|strong="G3962"\+w* \+w or|strong="G2228"\+w* \+w his|strong="G4160"\+w* \+w mother|strong="G3384"\+w*, \wj* +\v 13 \wj \+w making|strong="G4160"\+w* void \+w the|strong="G2532"\+w* \+w word|strong="G3056"\+w* \+w of|strong="G3056"\+w* \+w God|strong="G2316"\+w* \+w by|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w tradition|strong="G3862"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2532"\+w* \+w handed|strong="G3860"\+w* \+w down|strong="G3860"\+w*. \+w You|strong="G5210"\+w* \+w do|strong="G4160"\+w* \+w many|strong="G4183"\+w* \+w things|strong="G3588"\+w* \+w like|strong="G5108"\+w* \+w this|strong="G3588"\+w*.”\wj* +\p +\v 14 \w He|strong="G2532"\w* \w called|strong="G3004"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w* \w to|strong="G2532"\w* himself \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “Hear \+w me|strong="G1473"\+w*, \+w all|strong="G3956"\+w* \+w of|strong="G2532"\+w* \+w you|strong="G3004"\+w*, \+w and|strong="G2532"\+w* \+w understand|strong="G4920"\+w*. \wj* +\v 15 \wj \+w There|strong="G1510"\+w* \+w is|strong="G1510"\+w* \+w nothing|strong="G3762"\+w* \+w from|strong="G1537"\+w* \+w outside|strong="G1855"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1519"\+w* \+w man|strong="G3762"\+w* \+w that|strong="G3739"\+w* \+w going|strong="G1607"\+w* \+w into|strong="G1519"\+w* \+w him|strong="G3588"\+w* \+w can|strong="G1410"\+w* \+w defile|strong="G2840"\+w* \+w him|strong="G3588"\+w*; \+w but|strong="G3762"\+w* \+w the|strong="G1519"\+w* \+w things|strong="G3588"\+w* \+w which|strong="G3739"\+w* \+w proceed|strong="G1607"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1519"\+w* \+w man|strong="G3762"\+w* \+w are|strong="G1510"\+w* \+w those|strong="G3588"\+w* \+w that|strong="G3739"\+w* \+w defile|strong="G2840"\+w* \+w the|strong="G1519"\+w* \+w man|strong="G3762"\+w*. \wj* +\v 16 \wj If anyone has ears to hear, let him hear!”\wj*\f + \fr 7:16 \ft NU omits verse 16.\f* +\p +\v 17 \w When|strong="G3753"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w a|strong="G2532"\w* \w house|strong="G3624"\w* away \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w*, \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w* \w about|strong="G1519"\w* \w the|strong="G2532"\w* \w parable|strong="G3850"\w*. +\v 18 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Are|strong="G1510"\+w* \+w you|strong="G5210"\+w* \+w also|strong="G2532"\+w* \+w without|strong="G2532"\+w* \+w understanding|strong="G3539"\+w*? Don’\+w t|strong="G3588"\+w* \+w you|strong="G5210"\+w* \+w perceive|strong="G3539"\+w* \+w that|strong="G3754"\+w* \+w whatever|strong="G3956"\+w* \+w goes|strong="G1531"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w man|strong="G3956"\+w* \+w from|strong="G2532"\+w* \+w outside|strong="G1855"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w defile|strong="G2840"\+w* \+w him|strong="G3588"\+w*, \wj* +\v 19 \wj \+w because|strong="G3754"\+w* \+w it|strong="G2532"\+w* doesn’\+w t|strong="G3588"\+w* \+w go|strong="G1607"\+w* \+w into|strong="G1519"\+w* \+w his|strong="G3956"\+w* \+w heart|strong="G2588"\+w*, \+w but|strong="G2532"\+w* \+w into|strong="G1519"\+w* \+w his|strong="G3956"\+w* \+w stomach|strong="G2836"\+w*, \+w then|strong="G2532"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* latrine, \+w making|strong="G2532"\+w* \+w all|strong="G3956"\+w* \+w foods|strong="G1033"\+w* \+w clean|strong="G2511"\+w*?”\wj*\f + \fr 7:19 \ft NU ends Jesus’ direct quote and question after “latrine”, ending the verse with “Thus he declared all foods clean. \f* +\v 20 \w He|strong="G1161"\w* \w said|strong="G3004"\w*, \wj “\+w That|strong="G3754"\+w* \+w which|strong="G3588"\+w* \+w proceeds|strong="G1607"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w man|strong="G1565"\+w*, \+w that|strong="G3754"\+w* \+w defiles|strong="G2840"\+w* \+w the|strong="G1537"\+w* \+w man|strong="G1565"\+w*. \wj* +\v 21 \wj \+w For|strong="G1063"\+w* \+w from|strong="G1537"\+w* \+w within|strong="G2081"\+w*, \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w hearts|strong="G2588"\+w* \+w of|strong="G1537"\+w* \+w men|strong="G3588"\+w*, \+w proceed|strong="G1607"\+w* \+w evil|strong="G2556"\+w* \+w thoughts|strong="G1261"\+w*, adulteries, \+w sexual|strong="G4202"\+w* sins, \+w murders|strong="G5408"\+w*, \+w thefts|strong="G2829"\+w*, \wj* +\v 22 \wj covetings, \+w wickedness|strong="G4189"\+w*, \+w deceit|strong="G1388"\+w*, lustful desires, \+w an|strong="G3788"\+w* \+w evil|strong="G4190"\+w* \+w eye|strong="G3788"\+w*, blasphemy, \+w pride|strong="G5243"\+w*, \+w and|strong="G3788"\+w* foolishness. \wj* +\v 23 \wj \+w All|strong="G3956"\+w* \+w these|strong="G3778"\+w* \+w evil|strong="G4190"\+w* \+w things|strong="G3956"\+w* \+w come|strong="G1607"\+w* \+w from|strong="G2532"\+w* \+w within|strong="G2081"\+w* \+w and|strong="G2532"\+w* \+w defile|strong="G2840"\+w* \+w the|strong="G2532"\+w* \+w man|strong="G3778"\+w*.” \wj* +\p +\v 24 \w From|strong="G2532"\w* \w there|strong="G2532"\w* \w he|strong="G2532"\w* \w arose|strong="G1525"\w* \w and|strong="G2532"\w* \w went|strong="G1525"\w* away \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w borders|strong="G3725"\w* \w of|strong="G2532"\w* \w Tyre|strong="G5184"\w* \w and|strong="G2532"\w* Sidon. \w He|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w a|strong="G2532"\w* \w house|strong="G3614"\w* \w and|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w want|strong="G2309"\w* \w anyone|strong="G3762"\w* \w to|strong="G1519"\w* \w know|strong="G1097"\w* \w it|strong="G2532"\w*, \w but|strong="G1161"\w* \w he|strong="G2532"\w* couldn’\w t|strong="G3588"\w* \w escape|strong="G2990"\w* \w notice|strong="G2990"\w*. +\v 25 \w For|strong="G4012"\w* \w a|strong="G2192"\w* \w woman|strong="G1135"\w* \w whose|strong="G3739"\w* \w little|strong="G2365"\w* \w daughter|strong="G2365"\w* \w had|strong="G2192"\w* \w an|strong="G2192"\w* unclean \w spirit|strong="G4151"\w*, \w having|strong="G2192"\w* heard \w of|strong="G4012"\w* \w him|strong="G3588"\w*, \w came|strong="G2064"\w* \w and|strong="G2064"\w* \w fell|strong="G4363"\w* \w down|strong="G4363"\w* \w at|strong="G4314"\w* \w his|strong="G4012"\w* \w feet|strong="G4228"\w*. +\v 26 \w Now|strong="G1161"\w* \w the|strong="G2532"\w* \w woman|strong="G1135"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w Greek|strong="G1674"\w*, \w a|strong="G2532"\w* \w Syrophoenician|strong="G4949"\w* \w by|strong="G1537"\w* \w race|strong="G1085"\w*. \w She|strong="G2532"\w* \w begged|strong="G2065"\w* \w him|strong="G3588"\w* \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w would|strong="G2532"\w* \w cast|strong="G1544"\w* \w the|strong="G2532"\w* \w demon|strong="G1140"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w her|strong="G3588"\w* \w daughter|strong="G2364"\w*. +\v 27 \w But|strong="G2532"\w* \w Jesus|strong="G3004"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w her|strong="G3588"\w*, \wj “\+w Let|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w children|strong="G5043"\+w* \+w be|strong="G1510"\+w* \+w filled|strong="G5526"\+w* \+w first|strong="G4413"\+w*, \+w for|strong="G1063"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* appropriate \+w to|strong="G2532"\+w* \+w take|strong="G2983"\+w* \+w the|strong="G2532"\+w* \+w children|strong="G5043"\+w*’s bread \+w and|strong="G2532"\+w* throw \+w it|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w dogs|strong="G2952"\+w*.” \wj* +\p +\v 28 \w But|strong="G1161"\w* \w she|strong="G2532"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Yes|strong="G3483"\w*, \w Lord|strong="G2962"\w*. \w Yet|strong="G2532"\w* \w even|strong="G2532"\w* \w the|strong="G2532"\w* \w dogs|strong="G2952"\w* \w under|strong="G5270"\w* \w the|strong="G2532"\w* \w table|strong="G5132"\w* \w eat|strong="G2068"\w* \w the|strong="G2532"\w* \w children|strong="G3813"\w*’\w s|strong="G2962"\w* \w crumbs|strong="G5589"\w*.” +\p +\v 29 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w her|strong="G3588"\w*, \wj “\+w For|strong="G1223"\+w* \+w this|strong="G3778"\+w* \+w saying|strong="G3004"\+w*, \+w go|strong="G5217"\+w* \+w your|strong="G1223"\+w* \+w way|strong="G5217"\+w*. \+w The|strong="G2532"\+w* \+w demon|strong="G1140"\+w* \+w has|strong="G3778"\+w* \+w gone|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w of|strong="G1537"\+w* \+w your|strong="G1223"\+w* \+w daughter|strong="G2364"\+w*.”\wj* +\p +\v 30 \w She|strong="G2532"\w* \w went|strong="G1831"\w* \w away|strong="G1831"\w* \w to|strong="G1519"\w* \w her|strong="G1519"\w* \w house|strong="G3624"\w*, \w and|strong="G2532"\w* \w found|strong="G2147"\w* \w the|strong="G2532"\w* \w child|strong="G3813"\w* \w having|strong="G2532"\w* \w been|strong="G2532"\w* \w laid|strong="G2532"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w bed|strong="G2825"\w*, \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w demon|strong="G1140"\w* \w gone|strong="G1831"\w* \w out|strong="G1831"\w*. +\p +\v 31 \w Again|strong="G3825"\w* \w he|strong="G2532"\w* \w departed|strong="G1831"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w borders|strong="G3725"\w* \w of|strong="G1537"\w* \w Tyre|strong="G5184"\w* \w and|strong="G2532"\w* \w Sidon|strong="G4605"\w*, \w and|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w* \w of|strong="G1537"\w* \w Galilee|strong="G1056"\w* \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w middle|strong="G3319"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w region|strong="G3725"\w* \w of|strong="G1537"\w* \w Decapolis|strong="G1179"\w*. +\v 32 \w They|strong="G2532"\w* \w brought|strong="G5342"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w* \w one|strong="G3588"\w* \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w deaf|strong="G2974"\w* \w and|strong="G2532"\w* \w had|strong="G2532"\w* \w an|strong="G2532"\w* impediment \w in|strong="G2532"\w* \w his|strong="G2007"\w* \w speech|strong="G3424"\w*. \w They|strong="G2532"\w* \w begged|strong="G3870"\w* \w him|strong="G3588"\w* \w to|strong="G2443"\w* \w lay|strong="G2007"\w* \w his|strong="G2007"\w* \w hand|strong="G5495"\w* \w on|strong="G5495"\w* \w him|strong="G3588"\w*. +\v 33 \w He|strong="G2532"\w* \w took|strong="G2532"\w* \w him|strong="G3588"\w* \w aside|strong="G2596"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w* \w privately|strong="G2398"\w* \w and|strong="G2532"\w* \w put|strong="G2532"\w* \w his|strong="G1519"\w* \w fingers|strong="G1147"\w* \w into|strong="G1519"\w* \w his|strong="G1519"\w* \w ears|strong="G3775"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w spat|strong="G4429"\w* \w and|strong="G2532"\w* touched \w his|strong="G1519"\w* \w tongue|strong="G1100"\w*. +\v 34 \w Looking|strong="G2532"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w heaven|strong="G3772"\w*, \w he|strong="G2532"\w* \w sighed|strong="G4727"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \wj “\+w Ephphatha|strong="G2188"\+w*!” \wj* \w that|strong="G3739"\w* \w is|strong="G1510"\w*, \wj “\+w Be|strong="G1510"\+w* \+w opened|strong="G1272"\+w*!”\wj* +\v 35 \w Immediately|strong="G2112"\w* \w his|strong="G2532"\w* ears \w were|strong="G3588"\w* opened, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w impediment|strong="G1199"\w* \w of|strong="G2532"\w* \w his|strong="G2532"\w* \w tongue|strong="G1100"\w* \w was|strong="G3588"\w* \w released|strong="G3089"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w spoke|strong="G2980"\w* clearly. +\v 36 \w He|strong="G2532"\w* \w commanded|strong="G1291"\w* \w them|strong="G3004"\w* \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w should|strong="G2532"\w* \w tell|strong="G3004"\w* \w no|strong="G3367"\w* \w one|strong="G3367"\w*, \w but|strong="G1161"\w* \w the|strong="G2532"\w* \w more|strong="G3123"\w* \w he|strong="G2532"\w* \w commanded|strong="G1291"\w* \w them|strong="G3004"\w*, \w so|strong="G2443"\w* \w much|strong="G3745"\w* \w the|strong="G2532"\w* \w more|strong="G3123"\w* widely \w they|strong="G2532"\w* \w proclaimed|strong="G2784"\w* \w it|strong="G2532"\w*. +\v 37 \w They|strong="G2532"\w* \w were|strong="G3588"\w* \w astonished|strong="G1605"\w* \w beyond|strong="G1605"\w* \w measure|strong="G5249"\w*, \w saying|strong="G3004"\w*, “\w He|strong="G2532"\w* \w has|strong="G2532"\w* \w done|strong="G4160"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w well|strong="G2573"\w*. \w He|strong="G2532"\w* \w makes|strong="G4160"\w* \w even|strong="G2532"\w* \w the|strong="G2532"\w* \w deaf|strong="G2974"\w* hear \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w mute|strong="G2974"\w* \w speak|strong="G2980"\w*!” +\c 8 +\p +\v 1 \w In|strong="G1722"\w* \w those|strong="G3588"\w* \w days|strong="G2250"\w*, \w when|strong="G2532"\w* \w there|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2192"\w* \w very|strong="G4183"\w* \w great|strong="G4183"\w* \w multitude|strong="G3793"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2192"\w* \w nothing|strong="G3361"\w* \w to|strong="G2532"\w* \w eat|strong="G2068"\w*, \w Jesus|strong="G3004"\w* \w called|strong="G3004"\w* \w his|strong="G1722"\w* \w disciples|strong="G3101"\w* \w to|strong="G2532"\w* \w himself|strong="G1565"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, +\v 2 \wj “\+w I|strong="G1473"\+w* \+w have|strong="G2192"\+w* \+w compassion|strong="G4697"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w multitude|strong="G3793"\+w*, \+w because|strong="G3754"\+w* \+w they|strong="G2532"\+w* \+w have|strong="G2192"\+w* stayed \+w with|strong="G2532"\+w* \+w me|strong="G1473"\+w* \+w now|strong="G2532"\+w* \+w three|strong="G5140"\+w* \+w days|strong="G2250"\+w* \+w and|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w nothing|strong="G3756"\+w* \+w to|strong="G2532"\+w* \+w eat|strong="G2068"\+w*. \wj* +\v 3 \wj \+w If|strong="G1437"\+w* \+w I|strong="G2532"\+w* send \+w them|strong="G3588"\+w* \+w away|strong="G3113"\+w* \+w fasting|strong="G3523"\+w* \+w to|strong="G1519"\+w* \+w their|strong="G1438"\+w* \+w home|strong="G3624"\+w*, \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w faint|strong="G1590"\+w* \+w on|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w way|strong="G3598"\+w*, \+w for|strong="G1519"\+w* \+w some|strong="G5100"\+w* \+w of|strong="G2532"\+w* \+w them|strong="G3588"\+w* \+w have|strong="G2532"\+w* \+w come|strong="G2240"\+w* \+w a|strong="G2532"\+w* long \+w way|strong="G3598"\+w*.”\wj* +\p +\v 4 \w His|strong="G1909"\w* \w disciples|strong="G3101"\w* answered \w him|strong="G3588"\w*, “\w From|strong="G2532"\w* \w where|strong="G4159"\w* \w could|strong="G1410"\w* \w one|strong="G5100"\w* \w satisfy|strong="G5526"\w* \w these|strong="G3778"\w* \w people|strong="G3588"\w* \w with|strong="G2532"\w* bread \w here|strong="G5602"\w* \w in|strong="G1909"\w* \w a|strong="G2532"\w* deserted \w place|strong="G2047"\w*?” +\p +\v 5 \w He|strong="G2532"\w* \w asked|strong="G2065"\w* \w them|strong="G3588"\w*, \wj “\+w How|strong="G4214"\+w* \+w many|strong="G4214"\+w* loaves \+w do|strong="G2532"\+w* \+w you|strong="G3004"\+w* \+w have|strong="G2192"\+w*?”\wj* +\p \w They|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Seven|strong="G2033"\w*.” +\p +\v 6 \w He|strong="G2532"\w* \w commanded|strong="G3853"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w* \w to|strong="G2443"\w* sit down \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w ground|strong="G1093"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w took|strong="G2983"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* loaves. \w Having|strong="G2532"\w* \w given|strong="G1325"\w* \w thanks|strong="G2168"\w*, \w he|strong="G2532"\w* \w broke|strong="G2806"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w gave|strong="G1325"\w* \w them|strong="G3588"\w* \w to|strong="G2443"\w* \w his|strong="G1909"\w* \w disciples|strong="G3101"\w* \w to|strong="G2443"\w* \w serve|strong="G3908"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w served|strong="G3908"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w*. +\v 7 \w They|strong="G2532"\w* \w also|strong="G2532"\w* \w had|strong="G2192"\w* \w a|strong="G2192"\w* \w few|strong="G3641"\w* \w small|strong="G3641"\w* \w fish|strong="G2485"\w*. \w Having|strong="G2192"\w* \w blessed|strong="G2127"\w* \w them|strong="G3004"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w serve|strong="G3908"\w* \w these|strong="G3004"\w* \w also|strong="G2532"\w*. +\v 8 \w They|strong="G2532"\w* \w ate|strong="G2068"\w* \w and|strong="G2532"\w* \w were|strong="G2532"\w* \w filled|strong="G5526"\w*. \w They|strong="G2532"\w* \w took|strong="G2532"\w* \w up|strong="G2532"\w* \w seven|strong="G2033"\w* \w baskets|strong="G4711"\w* \w of|strong="G2532"\w* \w broken|strong="G2801"\w* \w pieces|strong="G2801"\w* \w that|strong="G2532"\w* \w were|strong="G2532"\w* \w left|strong="G4051"\w* \w over|strong="G4051"\w*. +\v 9 \w Those|strong="G1161"\w* \w who|strong="G2532"\w* \w had|strong="G2532"\w* eaten \w were|strong="G1510"\w* \w about|strong="G5613"\w* \w four|strong="G5070"\w* \w thousand|strong="G5070"\w*. \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w sent|strong="G2532"\w* \w them|strong="G1438"\w* away. +\p +\v 10 \w Immediately|strong="G2112"\w* \w he|strong="G2532"\w* \w entered|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w boat|strong="G4143"\w* \w with|strong="G3326"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w and|strong="G2532"\w* \w came|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* region \w of|strong="G2532"\w* \w Dalmanutha|strong="G1148"\w*. +\v 11 \w The|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w* \w and|strong="G2532"\w* began \w to|strong="G2532"\w* \w question|strong="G4802"\w* \w him|strong="G3588"\w*, \w seeking|strong="G2212"\w* \w from|strong="G3844"\w* \w him|strong="G3588"\w* \w a|strong="G2532"\w* \w sign|strong="G4592"\w* \w from|strong="G3844"\w* \w heaven|strong="G3772"\w* \w and|strong="G2532"\w* \w testing|strong="G3985"\w* \w him|strong="G3588"\w*. +\v 12 \w He|strong="G2532"\w* sighed deeply \w in|strong="G2532"\w* \w his|strong="G2532"\w* \w spirit|strong="G4151"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Why|strong="G5101"\+w* \+w does|strong="G5101"\+w* \+w this|strong="G3778"\+w* \+w generation|strong="G1074"\+w*\wj*\f + \fr 8:12 \ft The word translated “generation” here (genea) could also be translated “people”, “race”, or “family”.\f* \wj \+w seek|strong="G2212"\+w* \+w a|strong="G2532"\+w* \+w sign|strong="G4592"\+w*? Most \+w certainly|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w no|strong="G2532"\+w* \+w sign|strong="G4592"\+w* \+w will|strong="G5101"\+w* \+w be|strong="G2532"\+w* \+w given|strong="G1325"\+w* \+w to|strong="G2532"\+w* \+w this|strong="G3778"\+w* \+w generation|strong="G1074"\+w*.”\wj* +\p +\v 13 \w He|strong="G2532"\w* left \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w again|strong="G3825"\w* \w entering|strong="G1684"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* boat, departed \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w other|strong="G4008"\w* \w side|strong="G4008"\w*. +\v 14 \w They|strong="G2532"\w* forgot \w to|strong="G2532"\w* \w take|strong="G2983"\w* bread; \w and|strong="G2532"\w* \w they|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w have|strong="G2192"\w* \w more|strong="G2192"\w* \w than|strong="G2532"\w* \w one|strong="G1520"\w* loaf \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w boat|strong="G4143"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w*. +\v 15 \w He|strong="G2532"\w* warned \w them|strong="G3588"\w*, \w saying|strong="G3004"\w*, \wj “\+w Take|strong="G2532"\+w* \+w heed|strong="G3708"\+w*: \+w beware|strong="G3708"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w yeast|strong="G2219"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Pharisees|strong="G5330"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w yeast|strong="G2219"\+w* \+w of|strong="G2532"\+w* \+w Herod|strong="G2264"\+w*.”\wj* +\p +\v 16 \w They|strong="G2532"\w* \w reasoned|strong="G1260"\w* \w with|strong="G4314"\w* \w one|strong="G2532"\w* another, \w saying|strong="G3754"\w*, “\w It|strong="G2532"\w*’\w s|strong="G2192"\w* \w because|strong="G3754"\w* \w we|strong="G3754"\w* \w have|strong="G2192"\w* \w no|strong="G3756"\w* bread.” +\p +\v 17 \w Jesus|strong="G3004"\w*, \w perceiving|strong="G1097"\w* \w it|strong="G2532"\w*, \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Why|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w reason|strong="G1260"\+w* \+w that|strong="G3754"\+w* \+w it|strong="G2532"\+w*’\+w s|strong="G2192"\+w* \+w because|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2192"\+w* \+w no|strong="G3756"\+w* bread? Don’\+w t|strong="G3588"\+w* \+w you|strong="G5210"\+w* \+w perceive|strong="G3539"\+w* \+w yet|strong="G2089"\+w* \+w or|strong="G2532"\+w* \+w understand|strong="G4920"\+w*? \+w Is|strong="G3588"\+w* \+w your|strong="G2192"\+w* \+w heart|strong="G2588"\+w* \+w still|strong="G2089"\+w* \+w hardened|strong="G4456"\+w*? \wj* +\v 18 \wj \+w Having|strong="G2192"\+w* \+w eyes|strong="G3788"\+w*, don’t \+w you|strong="G2532"\+w* see? \+w Having|strong="G2192"\+w* \+w ears|strong="G3775"\+w*, don’t \+w you|strong="G2532"\+w* hear? Don’t \+w you|strong="G2532"\+w* \+w remember|strong="G3421"\+w*? \wj* +\v 19 \wj \+w When|strong="G3753"\+w* \+w I|strong="G2532"\+w* \+w broke|strong="G2806"\+w* \+w the|strong="G2532"\+w* \+w five|strong="G4002"\+w* loaves \+w among|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w five|strong="G4002"\+w* \+w thousand|strong="G4000"\+w*, \+w how|strong="G4214"\+w* \+w many|strong="G4214"\+w* \+w baskets|strong="G2894"\+w* \+w full|strong="G4134"\+w* \+w of|strong="G2532"\+w* \+w broken|strong="G2801"\+w* \+w pieces|strong="G2801"\+w* \+w did|strong="G2532"\+w* \+w you|strong="G3004"\+w* \+w take|strong="G2532"\+w* \+w up|strong="G1519"\+w*?”\wj* +\p \w They|strong="G2532"\w* \w told|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Twelve|strong="G1427"\w*.” +\p +\v 20 \wj “\+w When|strong="G3753"\+w* \+w the|strong="G2532"\+w* \+w seven|strong="G2033"\+w* loaves fed \+w the|strong="G2532"\+w* \+w four|strong="G5070"\+w* \+w thousand|strong="G5070"\+w*, \+w how|strong="G4214"\+w* \+w many|strong="G4214"\+w* \+w baskets|strong="G4711"\+w* \+w full|strong="G4138"\+w* \+w of|strong="G2532"\+w* \+w broken|strong="G2801"\+w* \+w pieces|strong="G2801"\+w* \+w did|strong="G2532"\+w* \+w you|strong="G3004"\+w* \+w take|strong="G2532"\+w* \+w up|strong="G1519"\+w*?”\wj* +\p \w They|strong="G2532"\w* \w told|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Seven|strong="G2033"\w*.” +\p +\v 21 \w He|strong="G2532"\w* \w asked|strong="G3004"\w* \w them|strong="G3004"\w*, \wj “Don’t \+w you|strong="G3004"\+w* \+w understand|strong="G4920"\+w* \+w yet|strong="G2532"\+w*?”\wj* +\p +\v 22 \w He|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* Bethsaida. \w They|strong="G2532"\w* \w brought|strong="G5342"\w* \w a|strong="G2532"\w* \w blind|strong="G5185"\w* \w man|strong="G5185"\w* \w to|strong="G1519"\w* \w him|strong="G2532"\w* \w and|strong="G2532"\w* \w begged|strong="G3870"\w* \w him|strong="G2532"\w* \w to|strong="G1519"\w* touch \w him|strong="G2532"\w*. +\v 23 \w He|strong="G2532"\w* \w took|strong="G1949"\w* \w hold|strong="G1949"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w blind|strong="G5185"\w* \w man|strong="G5100"\w* \w by|strong="G2532"\w* \w the|strong="G2532"\w* \w hand|strong="G5495"\w*, \w and|strong="G2532"\w* \w brought|strong="G2532"\w* \w him|strong="G3588"\w* \w out|strong="G1854"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w village|strong="G2968"\w*. \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w spat|strong="G4429"\w* \w on|strong="G1519"\w* \w his|strong="G2007"\w* \w eyes|strong="G3659"\w*, \w and|strong="G2532"\w* \w laid|strong="G2007"\w* \w his|strong="G2007"\w* \w hands|strong="G5495"\w* \w on|strong="G1519"\w* \w him|strong="G3588"\w*, \w he|strong="G2532"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w* \w if|strong="G1487"\w* \w he|strong="G2532"\w* saw \w anything|strong="G5100"\w*. +\p +\v 24 \w He|strong="G2532"\w* \w looked|strong="G3708"\w* \w up|strong="G2532"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w I|strong="G2532"\w* \w see|strong="G3708"\w* \w men|strong="G3588"\w*, \w but|strong="G2532"\w* \w I|strong="G2532"\w* \w see|strong="G3708"\w* \w them|strong="G3588"\w* \w like|strong="G5613"\w* \w walking|strong="G4043"\w* \w trees|strong="G1186"\w*.” +\p +\v 25 \w Then|strong="G2532"\w* \w again|strong="G3825"\w* \w he|strong="G2532"\w* \w laid|strong="G2007"\w* \w his|strong="G2007"\w* \w hands|strong="G5495"\w* \w on|strong="G1909"\w* \w his|strong="G2007"\w* \w eyes|strong="G3788"\w*. \w He|strong="G2532"\w* \w looked|strong="G1689"\w* \w intently|strong="G1227"\w*, \w and|strong="G2532"\w* \w was|strong="G3588"\w* restored, \w and|strong="G2532"\w* \w saw|strong="G1689"\w* everyone \w clearly|strong="G5081"\w*. +\v 26 \w He|strong="G2532"\w* \w sent|strong="G2532"\w* \w him|strong="G3588"\w* away \w to|strong="G1519"\w* \w his|strong="G1519"\w* \w house|strong="G3624"\w*, \w saying|strong="G3004"\w*, \wj “Don’\+w t|strong="G3588"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w village|strong="G2968"\+w*, \+w nor|strong="G3366"\+w* \+w tell|strong="G3004"\+w* anyone \+w in|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w village|strong="G2968"\+w*.”\wj* +\p +\v 27 \w Jesus|strong="G2424"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w*, \w with|strong="G1722"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w*, \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w villages|strong="G2968"\w* \w of|strong="G2532"\w* \w Caesarea|strong="G2542"\w* \w Philippi|strong="G5376"\w*. \w On|strong="G1722"\w* \w the|strong="G1722"\w* \w way|strong="G3598"\w* \w he|strong="G2532"\w* \w asked|strong="G1905"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w*, \wj “\+w Who|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w men|strong="G3588"\+w* \+w say|strong="G3004"\+w* \+w that|strong="G3588"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w*?” \wj* +\p +\v 28 \w They|strong="G2532"\w* \w told|strong="G3004"\w* \w him|strong="G3588"\w*, “\w John|strong="G2491"\w* \w the|strong="G2532"\w* Baptizer, \w and|strong="G2532"\w* \w others|strong="G3588"\w* \w say|strong="G3004"\w* \w Elijah|strong="G2243"\w*, \w but|strong="G1161"\w* \w others|strong="G3588"\w*, \w one|strong="G1520"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w prophets|strong="G4396"\w*.” +\p +\v 29 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w But|strong="G1161"\+w* \+w who|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w say|strong="G3004"\+w* \+w that|strong="G3588"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w*?”\wj* +\p \w Peter|strong="G4074"\w* \w answered|strong="G3004"\w*, “\w You|strong="G5210"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* \w Christ|strong="G5547"\w*.” +\p +\v 30 \w He|strong="G2532"\w* \w commanded|strong="G2008"\w* \w them|strong="G3004"\w* \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w should|strong="G2532"\w* \w tell|strong="G3004"\w* \w no|strong="G3367"\w* \w one|strong="G3367"\w* \w about|strong="G4012"\w* \w him|strong="G2532"\w*. +\v 31 \w He|strong="G2532"\w* began \w to|strong="G2532"\w* \w teach|strong="G1321"\w* \w them|strong="G3588"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w Man|strong="G5207"\w* \w must|strong="G1163"\w* \w suffer|strong="G3958"\w* \w many|strong="G4183"\w* \w things|strong="G3588"\w*, \w and|strong="G2532"\w* \w be|strong="G2532"\w* rejected \w by|strong="G5259"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w*, \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w scribes|strong="G1122"\w*, \w and|strong="G2532"\w* \w be|strong="G2532"\w* killed, \w and|strong="G2532"\w* \w after|strong="G3326"\w* \w three|strong="G5140"\w* \w days|strong="G2250"\w* \w rise|strong="G2250"\w* \w again|strong="G2532"\w*. +\v 32 \w He|strong="G2532"\w* \w spoke|strong="G2980"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w openly|strong="G3954"\w*. \w Peter|strong="G4074"\w* \w took|strong="G4355"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* began \w to|strong="G2532"\w* \w rebuke|strong="G2008"\w* \w him|strong="G3588"\w*. +\v 33 \w But|strong="G1161"\w* \w he|strong="G2532"\w*, \w turning|strong="G1994"\w* \w around|strong="G1994"\w* \w and|strong="G2532"\w* \w seeing|strong="G3708"\w* \w his|strong="G3708"\w* \w disciples|strong="G3101"\w*, \w rebuked|strong="G2008"\w* \w Peter|strong="G4074"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Get|strong="G5217"\+w* \+w behind|strong="G3694"\+w* \+w me|strong="G1473"\+w*, \+w Satan|strong="G4567"\+w*! \+w For|strong="G3754"\+w* \+w you|strong="G3754"\+w* \+w have|strong="G2532"\+w* \+w in|strong="G2532"\+w* \+w mind|strong="G5426"\+w* \+w not|strong="G3756"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3588"\+w* \+w of|strong="G2316"\+w* \+w God|strong="G2316"\+w*, \+w but|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3588"\+w* \+w of|strong="G2316"\+w* \+w men|strong="G3588"\+w*.”\wj* +\p +\v 34 \w He|strong="G2532"\w* \w called|strong="G3004"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w* \w to|strong="G2532"\w* \w himself|strong="G1438"\w* \w with|strong="G4862"\w* \w his|strong="G1438"\w* \w disciples|strong="G3101"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Whoever|strong="G3748"\+w* \+w wants|strong="G2309"\+w* \+w to|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w after|strong="G3694"\+w* \+w me|strong="G1473"\+w*, \+w let|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w deny|strong="G3588"\+w* \+w himself|strong="G1438"\+w*, \+w and|strong="G2532"\+w* \+w take|strong="G2532"\+w* \+w up|strong="G2532"\+w* \+w his|strong="G1438"\+w* \+w cross|strong="G4716"\+w*, \+w and|strong="G2532"\+w* \+w follow|strong="G3694"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 35 \wj \+w For|strong="G1063"\+w* \+w whoever|strong="G3739"\+w* \+w wants|strong="G2309"\+w* \+w to|strong="G2532"\+w* \+w save|strong="G4982"\+w* \+w his|strong="G1438"\+w* \+w life|strong="G5590"\+w* \+w will|strong="G2309"\+w* lose \+w it|strong="G2532"\+w*; \+w and|strong="G2532"\+w* \+w whoever|strong="G3739"\+w* \+w will|strong="G2309"\+w* lose \+w his|strong="G1438"\+w* \+w life|strong="G5590"\+w* \+w for|strong="G1063"\+w* \+w my|strong="G1473"\+w* \+w sake|strong="G1752"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w sake|strong="G1752"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Good|strong="G3588"\+w* \+w News|strong="G2098"\+w* \+w will|strong="G2309"\+w* \+w save|strong="G4982"\+w* \+w it|strong="G2532"\+w*. \wj* +\v 36 \wj \+w For|strong="G1063"\+w* \+w what|strong="G5101"\+w* \+w does|strong="G5101"\+w* \+w it|strong="G2532"\+w* \+w profit|strong="G5623"\+w* \+w a|strong="G2532"\+w* \+w man|strong="G5101"\+w* \+w to|strong="G2532"\+w* \+w gain|strong="G2770"\+w* \+w the|strong="G2532"\+w* \+w whole|strong="G3650"\+w* \+w world|strong="G2889"\+w* \+w and|strong="G2532"\+w* \+w forfeit|strong="G2210"\+w* \+w his|strong="G2532"\+w* \+w life|strong="G5590"\+w*? \wj* +\v 37 \wj \+w For|strong="G1063"\+w* \+w what|strong="G5101"\+w* \+w will|strong="G5101"\+w* \+w a|strong="G1325"\+w* \+w man|strong="G5101"\+w* \+w give|strong="G1325"\+w* \+w in|strong="G1063"\+w* exchange \+w for|strong="G1063"\+w* \+w his|strong="G1325"\+w* \+w life|strong="G5590"\+w*? \wj* +\v 38 \wj \+w For|strong="G1063"\+w* \+w whoever|strong="G3739"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w ashamed|strong="G1870"\+w* \+w of|strong="G5207"\+w* \+w me|strong="G1473"\+w* \+w and|strong="G2532"\+w* \+w of|strong="G5207"\+w* \+w my|strong="G1699"\+w* \+w words|strong="G3056"\+w* \+w in|strong="G1722"\+w* \+w this|strong="G3778"\+w* \+w adulterous|strong="G3428"\+w* \+w and|strong="G2532"\+w* sinful \+w generation|strong="G1074"\+w*, \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3778"\+w* \+w also|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w ashamed|strong="G1870"\+w* \+w of|strong="G5207"\+w* \+w him|strong="G3588"\+w* \+w when|strong="G3752"\+w* \+w he|strong="G2532"\+w* \+w comes|strong="G2064"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G1722"\+w* \+w Father|strong="G3962"\+w*’s \+w glory|strong="G1391"\+w* \+w with|strong="G3326"\+w* \+w the|strong="G1722"\+w* holy angels.”\wj* +\c 9 +\p +\v 1 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Most|strong="G2316"\+w* \+w certainly|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w there|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w some|strong="G5100"\+w* \+w standing|strong="G2476"\+w* \+w here|strong="G5602"\+w* \+w who|strong="G3588"\+w* \+w will|strong="G2316"\+w* \+w in|strong="G1722"\+w* \+w no|strong="G3756"\+w* \+w way|strong="G1722"\+w* \+w taste|strong="G1089"\+w* \+w death|strong="G2288"\+w* \+w until|strong="G2193"\+w* \+w they|strong="G2532"\+w* \+w see|strong="G3708"\+w* \+w God|strong="G2316"\+w*’s Kingdom \+w come|strong="G2064"\+w* \+w with|strong="G1722"\+w* \+w power|strong="G1411"\+w*.”\wj* +\p +\v 2 \w After|strong="G3326"\w* \w six|strong="G1803"\w* \w days|strong="G2250"\w* \w Jesus|strong="G2424"\w* \w took|strong="G3880"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w* \w Peter|strong="G4074"\w*, \w James|strong="G2385"\w*, \w and|strong="G2532"\w* \w John|strong="G2491"\w*, \w and|strong="G2532"\w* \w brought|strong="G2532"\w* \w them|strong="G3588"\w* \w up|strong="G1519"\w* \w onto|strong="G1519"\w* \w a|strong="G2532"\w* \w high|strong="G5308"\w* \w mountain|strong="G3735"\w* \w privately|strong="G2398"\w* \w by|strong="G2596"\w* \w themselves|strong="G1438"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w changed|strong="G3339"\w* \w into|strong="G1519"\w* \w another|strong="G1438"\w* form \w in|strong="G1519"\w* \w front|strong="G1715"\w* \w of|strong="G2250"\w* \w them|strong="G3588"\w*. +\v 3 \w His|strong="G1909"\w* \w clothing|strong="G2440"\w* \w became|strong="G1096"\w* glistening, \w exceedingly|strong="G3029"\w* \w white|strong="G3022"\w*, \w like|strong="G3779"\w* snow, \w such|strong="G3779"\w* \w as|strong="G2532"\w* \w no|strong="G3756"\w* \w launderer|strong="G1102"\w* \w on|strong="G1909"\w* \w earth|strong="G1093"\w* \w can|strong="G1410"\w* \w whiten|strong="G3021"\w* \w them|strong="G3588"\w*. +\v 4 \w Elijah|strong="G2243"\w* \w and|strong="G2532"\w* \w Moses|strong="G3475"\w* \w appeared|strong="G3708"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w talking|strong="G4814"\w* \w with|strong="G4862"\w* \w Jesus|strong="G2424"\w*. +\p +\v 5 \w Peter|strong="G4074"\w* \w answered|strong="G3004"\w* \w Jesus|strong="G2424"\w*, “\w Rabbi|strong="G4461"\w*, \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w good|strong="G2570"\w* \w for|strong="G1520"\w* \w us|strong="G3004"\w* \w to|strong="G2532"\w* \w be|strong="G1510"\w* \w here|strong="G5602"\w*. \w Let|strong="G1510"\w*’s \w make|strong="G4160"\w* \w three|strong="G5140"\w* \w tents|strong="G4633"\w*: \w one|strong="G1520"\w* \w for|strong="G1520"\w* \w you|strong="G4771"\w*, \w one|strong="G1520"\w* \w for|strong="G1520"\w* \w Moses|strong="G3475"\w*, \w and|strong="G2532"\w* \w one|strong="G1520"\w* \w for|strong="G1520"\w* \w Elijah|strong="G2243"\w*.” +\v 6 \w For|strong="G1063"\w* \w he|strong="G1063"\w* didn’t \w know|strong="G1492"\w* \w what|strong="G5101"\w* \w to|strong="G3756"\w* \w say|strong="G5101"\w*, \w for|strong="G1063"\w* \w they|strong="G1063"\w* \w were|strong="G1096"\w* \w very|strong="G1096"\w* \w afraid|strong="G1630"\w*. +\p +\v 7 \w A|strong="G1096"\w* \w cloud|strong="G3507"\w* \w came|strong="G1096"\w*, \w overshadowing|strong="G1982"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w a|strong="G1096"\w* \w voice|strong="G5456"\w* \w came|strong="G1096"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w cloud|strong="G3507"\w*, “\w This|strong="G3778"\w* \w is|strong="G1510"\w* \w my|strong="G1473"\w* beloved \w Son|strong="G5207"\w*. Listen \w to|strong="G2532"\w* \w him|strong="G3588"\w*.” +\p +\v 8 \w Suddenly|strong="G1819"\w* \w looking|strong="G4017"\w* \w around|strong="G4017"\w*, \w they|strong="G2532"\w* \w saw|strong="G3708"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w* \w any|strong="G3762"\w* \w more|strong="G3765"\w*, except \w Jesus|strong="G2424"\w* \w only|strong="G3441"\w*. +\p +\v 9 \w As|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w coming|strong="G2597"\w* \w down|strong="G2597"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w mountain|strong="G3735"\w*, \w he|strong="G2532"\w* \w commanded|strong="G1291"\w* \w them|strong="G3588"\w* \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w should|strong="G3588"\w* \w tell|strong="G1334"\w* \w no|strong="G3361"\w* \w one|strong="G3367"\w* \w what|strong="G3739"\w* \w things|strong="G3588"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w seen|strong="G3708"\w*, \w until|strong="G2532"\w* \w after|strong="G2532"\w* \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w of|strong="G1537"\w* \w Man|strong="G3367"\w* \w had|strong="G2532"\w* \w risen|strong="G2532"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*. +\v 10 \w They|strong="G2532"\w* \w kept|strong="G2532"\w* \w this|strong="G3588"\w* \w saying|strong="G3056"\w* \w to|strong="G4314"\w* \w themselves|strong="G1438"\w*, \w questioning|strong="G4802"\w* \w what|strong="G5101"\w* \w the|strong="G2532"\w* “\w rising|strong="G2532"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*” \w meant|strong="G1510"\w*. +\p +\v 11 \w They|strong="G2532"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w Why|strong="G3754"\w* \w do|strong="G2532"\w* \w the|strong="G2532"\w* \w scribes|strong="G1122"\w* \w say|strong="G3004"\w* \w that|strong="G3754"\w* \w Elijah|strong="G2243"\w* \w must|strong="G1163"\w* \w come|strong="G2064"\w* \w first|strong="G4413"\w*?” +\p +\v 12 \w He|strong="G2532"\w* \w said|strong="G5346"\w* \w to|strong="G2443"\w* \w them|strong="G3588"\w*, \wj “\+w Elijah|strong="G2243"\+w* \+w indeed|strong="G2532"\+w* \+w comes|strong="G2064"\+w* \+w first|strong="G4413"\+w*, \+w and|strong="G2532"\+w* restores \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w*. \+w How|strong="G4459"\+w* \+w is|strong="G3588"\+w* \+w it|strong="G2532"\+w* \+w written|strong="G1125"\+w* \+w about|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3956"\+w*, \+w that|strong="G2443"\+w* \+w he|strong="G2532"\+w* \+w should|strong="G3588"\+w* \+w suffer|strong="G3958"\+w* \+w many|strong="G4183"\+w* \+w things|strong="G3956"\+w* \+w and|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w despised|strong="G1848"\+w*? \wj* +\v 13 \wj \+w But|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w Elijah|strong="G2243"\+w* \+w has|strong="G3748"\+w* \+w come|strong="G2064"\+w*, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w have|strong="G2309"\+w* \+w also|strong="G2532"\+w* \+w done|strong="G4160"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G4160"\+w* \+w whatever|strong="G3745"\+w* \+w they|strong="G2532"\+w* \+w wanted|strong="G2309"\+w* \+w to|strong="G2532"\+w*, \+w even|strong="G2532"\+w* \+w as|strong="G2531"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G3748"\+w* \+w written|strong="G1125"\+w* \+w about|strong="G1909"\+w* \+w him|strong="G4160"\+w*.”\wj* +\p +\v 14 \w Coming|strong="G2064"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w*, \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w a|strong="G2532"\w* \w great|strong="G4183"\w* \w multitude|strong="G3793"\w* \w around|strong="G4012"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w scribes|strong="G1122"\w* \w questioning|strong="G4802"\w* \w them|strong="G3588"\w*. +\v 15 \w Immediately|strong="G2112"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w*, \w when|strong="G2532"\w* \w they|strong="G2532"\w* \w saw|strong="G3708"\w* \w him|strong="G3588"\w*, \w were|strong="G3588"\w* greatly \w amazed|strong="G1568"\w*, \w and|strong="G2532"\w* \w running|strong="G4370"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, greeted \w him|strong="G3588"\w*. +\v 16 \w He|strong="G2532"\w* \w asked|strong="G1905"\w* \w the|strong="G2532"\w* scribes, \wj “\+w What|strong="G5101"\+w* \+w are|strong="G2532"\+w* \+w you|strong="G1438"\+w* \+w asking|strong="G1905"\+w* \+w them|strong="G1438"\+w*?”\wj* +\p +\v 17 \w One|strong="G1520"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w* answered, “\w Teacher|strong="G1320"\w*, \w I|strong="G1473"\w* \w brought|strong="G5342"\w* \w to|strong="G4314"\w* \w you|strong="G4771"\w* \w my|strong="G1473"\w* \w son|strong="G5207"\w*, \w who|strong="G3588"\w* \w has|strong="G2192"\w* \w a|strong="G2192"\w* mute \w spirit|strong="G4151"\w*; +\v 18 \w and|strong="G2532"\w* \w wherever|strong="G3699"\w* \w it|strong="G2532"\w* \w seizes|strong="G2638"\w* \w him|strong="G3588"\w*, \w it|strong="G2532"\w* \w throws|strong="G1544"\w* \w him|strong="G3588"\w* \w down|strong="G4486"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* foams \w at|strong="G3756"\w* \w the|strong="G2532"\w* mouth, \w grinds|strong="G5149"\w* \w his|strong="G2532"\w* \w teeth|strong="G3599"\w*, \w and|strong="G2532"\w* becomes rigid. \w I|strong="G2532"\w* \w asked|strong="G3004"\w* \w your|strong="G1437"\w* \w disciples|strong="G3101"\w* \w to|strong="G2443"\w* \w cast|strong="G1544"\w* \w it|strong="G2532"\w* \w out|strong="G1544"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* weren’\w t|strong="G3588"\w* \w able|strong="G2480"\w*.” +\p +\v 19 \w He|strong="G1161"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “Unbelieving \+w generation|strong="G1074"\+w*, \+w how|strong="G2193"\+w* \+w long|strong="G2193"\+w* \+w shall|strong="G3588"\+w* \+w I|strong="G1473"\+w* \+w be|strong="G1510"\+w* \+w with|strong="G4314"\+w* \+w you|strong="G5210"\+w*? \+w How|strong="G2193"\+w* \+w long|strong="G2193"\+w* \+w shall|strong="G3588"\+w* \+w I|strong="G1473"\+w* \+w bear|strong="G5342"\+w* \+w with|strong="G4314"\+w* \+w you|strong="G5210"\+w*? \+w Bring|strong="G5342"\+w* \+w him|strong="G3588"\+w* \+w to|strong="G4314"\+w* \+w me|strong="G1473"\+w*.”\wj* +\p +\v 20 \w They|strong="G2532"\w* \w brought|strong="G5342"\w* \w him|strong="G3588"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w him|strong="G3588"\w*, \w immediately|strong="G2112"\w* \w the|strong="G2532"\w* \w spirit|strong="G4151"\w* convulsed \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w fell|strong="G4098"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w ground|strong="G1093"\w*, wallowing \w and|strong="G2532"\w* foaming \w at|strong="G1909"\w* \w the|strong="G2532"\w* mouth. +\p +\v 21 \w He|strong="G2532"\w* \w asked|strong="G1905"\w* \w his|strong="G2532"\w* \w father|strong="G3962"\w*, \wj “\+w How|strong="G5613"\+w* \+w long|strong="G5550"\+w* \+w has|strong="G3962"\+w* \+w it|strong="G2532"\+w* \+w been|strong="G1510"\+w* \+w since|strong="G1537"\+w* \+w this|strong="G3778"\+w* \+w has|strong="G3962"\+w* \+w been|strong="G1510"\+w* \+w happening|strong="G1096"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w*?”\wj* +\p \w He|strong="G2532"\w* \w said|strong="G3004"\w*, “\w From|strong="G1537"\w* \w childhood|strong="G3812"\w*. +\v 22 \w Often|strong="G4178"\w* \w it|strong="G2532"\w* \w has|strong="G5100"\w* \w cast|strong="G2532"\w* \w him|strong="G2532"\w* \w both|strong="G2532"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w fire|strong="G4442"\w* \w and|strong="G2532"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w water|strong="G5204"\w* \w to|strong="G1519"\w* destroy \w him|strong="G2532"\w*. \w But|strong="G2532"\w* \w if|strong="G1487"\w* \w you|strong="G1487"\w* \w can|strong="G1410"\w* \w do|strong="G2532"\w* \w anything|strong="G5100"\w*, \w have|strong="G2532"\w* \w compassion|strong="G4697"\w* \w on|strong="G1909"\w* \w us|strong="G1519"\w* \w and|strong="G2532"\w* help \w us|strong="G1519"\w*.” +\p +\v 23 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w If|strong="G1487"\+w* \+w you|strong="G1487"\+w* \+w can|strong="G1410"\+w* \+w believe|strong="G4100"\+w*, \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w are|strong="G3588"\+w* \+w possible|strong="G1415"\+w* \+w to|strong="G3004"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w believes|strong="G4100"\+w*.”\wj* +\p +\v 24 \w Immediately|strong="G2112"\w* \w the|strong="G3588"\w* \w father|strong="G3962"\w* \w of|strong="G3962"\w* \w the|strong="G3588"\w* \w child|strong="G3813"\w* \w cried|strong="G2896"\w* \w out|strong="G2896"\w* \w with|strong="G2896"\w* tears, “\w I|strong="G1473"\w* \w believe|strong="G4100"\w*. Help \w my|strong="G1473"\w* unbelief!” +\p +\v 25 \w When|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w saw|strong="G3708"\w* \w that|strong="G3754"\w* \w a|strong="G2532"\w* \w multitude|strong="G3793"\w* \w came|strong="G1831"\w* \w running|strong="G2532"\w* \w together|strong="G1998"\w*, \w he|strong="G2532"\w* \w rebuked|strong="G2008"\w* \w the|strong="G2532"\w* unclean \w spirit|strong="G4151"\w*, \w saying|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \wj “\+w You|strong="G4771"\+w* \+w mute|strong="G2974"\+w* \+w and|strong="G2532"\+w* \+w deaf|strong="G2974"\+w* \+w spirit|strong="G4151"\+w*, \+w I|strong="G1473"\+w* \+w command|strong="G2004"\+w* \+w you|strong="G4771"\+w*, \+w come|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w of|strong="G1537"\+w* \+w him|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w never|strong="G3371"\+w* \+w enter|strong="G1525"\+w* \+w him|strong="G3588"\+w* \+w again|strong="G3371"\+w*!”\wj* +\p +\v 26 \w After|strong="G2532"\w* \w crying|strong="G2896"\w* \w out|strong="G1831"\w* \w and|strong="G2532"\w* convulsing \w him|strong="G3588"\w* \w greatly|strong="G4183"\w*, \w it|strong="G2532"\w* \w came|strong="G1096"\w* \w out|strong="G1831"\w* \w of|strong="G2532"\w* \w him|strong="G3588"\w*. \w The|strong="G2532"\w* boy \w became|strong="G1096"\w* \w like|strong="G5616"\w* \w one|strong="G3588"\w* \w dead|strong="G3498"\w*, \w so|strong="G2532"\w* \w much|strong="G4183"\w* \w that|strong="G3754"\w* \w most|strong="G4183"\w* \w of|strong="G2532"\w* \w them|strong="G3588"\w* \w said|strong="G3004"\w*, “\w He|strong="G2532"\w* \w is|strong="G3588"\w* \w dead|strong="G3498"\w*.” +\v 27 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w took|strong="G2902"\w* \w him|strong="G3588"\w* \w by|strong="G2532"\w* \w the|strong="G2532"\w* \w hand|strong="G5495"\w* \w and|strong="G2532"\w* \w raised|strong="G1453"\w* \w him|strong="G3588"\w* \w up|strong="G1453"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w arose|strong="G1453"\w*. +\p +\v 28 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w come|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w house|strong="G3624"\w*, \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w* \w privately|strong="G2398"\w*, “\w Why|strong="G1519"\w* couldn’\w t|strong="G3588"\w* \w we|strong="G2249"\w* \w cast|strong="G1544"\w* \w it|strong="G2532"\w* \w out|strong="G1544"\w*?” +\p +\v 29 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w This|strong="G3778"\+w* \+w kind|strong="G1085"\+w* \+w can|strong="G1410"\+w* \+w come|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w by|strong="G1722"\+w* \+w nothing|strong="G3762"\+w* \+w but|strong="G2532"\+w* \+w by|strong="G1722"\+w* \+w prayer|strong="G4335"\+w* \+w and|strong="G2532"\+w* fasting.”\wj* +\p +\v 30 \w They|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w from|strong="G2532"\w* \w there|strong="G2532"\w* \w and|strong="G2532"\w* \w passed|strong="G3588"\w* \w through|strong="G1223"\w* \w Galilee|strong="G1056"\w*. \w He|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w want|strong="G2309"\w* \w anyone|strong="G5100"\w* \w to|strong="G2443"\w* \w know|strong="G1097"\w* \w it|strong="G2532"\w*, +\v 31 \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w teaching|strong="G1321"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w The|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G1519"\+w* \+w is|strong="G3588"\+w* \+w being|strong="G2532"\+w* \+w handed|strong="G3860"\+w* \+w over|strong="G3860"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w hands|strong="G5495"\+w* \+w of|strong="G5207"\+w* \+w men|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* kill \+w him|strong="G3588"\+w*; \+w and|strong="G2532"\+w* \+w when|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w is|strong="G3588"\+w* killed, \+w on|strong="G1519"\+w* \+w the|strong="G2532"\+w* third \+w day|strong="G2250"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w rise|strong="G2250"\+w* \+w again|strong="G1519"\+w*.”\wj* +\p +\v 32 \w But|strong="G1161"\w* \w they|strong="G2532"\w* didn’\w t|strong="G3588"\w* understand \w the|strong="G2532"\w* \w saying|strong="G4487"\w*, \w and|strong="G2532"\w* \w were|strong="G3588"\w* \w afraid|strong="G5399"\w* \w to|strong="G2532"\w* \w ask|strong="G1905"\w* \w him|strong="G3588"\w*. +\p +\v 33 \w He|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w Capernaum|strong="G2584"\w*, \w and|strong="G2532"\w* \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w was|strong="G1096"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w house|strong="G3614"\w* \w he|strong="G2532"\w* \w asked|strong="G1905"\w* \w them|strong="G3588"\w*, \wj “\+w What|strong="G5101"\+w* \+w were|strong="G3588"\+w* \+w you|strong="G1722"\+w* arguing \+w among|strong="G1722"\+w* \+w yourselves|strong="G1438"\+w* \+w on|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w way|strong="G3598"\+w*?”\wj* +\p +\v 34 \w But|strong="G1161"\w* \w they|strong="G1161"\w* \w were|strong="G3588"\w* \w silent|strong="G4623"\w*, \w for|strong="G1063"\w* \w they|strong="G1161"\w* \w had|strong="G3588"\w* \w disputed|strong="G1256"\w* \w with|strong="G1722"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w way|strong="G3598"\w* \w about|strong="G1722"\w* \w who|strong="G5101"\w* \w was|strong="G3588"\w* \w the|strong="G1722"\w* \w greatest|strong="G3173"\w*. +\p +\v 35 \w He|strong="G2532"\w* \w sat|strong="G2523"\w* \w down|strong="G2523"\w* \w and|strong="G2532"\w* \w called|strong="G3004"\w* \w the|strong="G2532"\w* \w twelve|strong="G1427"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w If|strong="G1487"\+w* \+w any|strong="G5100"\+w* \+w man|strong="G5100"\+w* \+w wants|strong="G2309"\+w* \+w to|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w first|strong="G4413"\+w*, \+w he|strong="G2532"\+w* \+w shall|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w last|strong="G2078"\+w* \+w of|strong="G2532"\+w* \+w all|strong="G3956"\+w*, \+w and|strong="G2532"\+w* \+w servant|strong="G1249"\+w* \+w of|strong="G2532"\+w* \+w all|strong="G3956"\+w*.”\wj* +\v 36 \w He|strong="G2532"\w* \w took|strong="G2983"\w* \w a|strong="G2532"\w* little \w child|strong="G3813"\w* \w and|strong="G2532"\w* \w set|strong="G2476"\w* \w him|strong="G2476"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w middle|strong="G3319"\w* \w of|strong="G2532"\w* \w them|strong="G1722"\w*. \w Taking|strong="G2983"\w* \w him|strong="G2476"\w* \w in|strong="G1722"\w* \w his|strong="G1722"\w* \w arms|strong="G1723"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G1722"\w*, +\v 37 \wj “\+w Whoever|strong="G3739"\+w* \+w receives|strong="G1209"\+w* \+w one|strong="G1520"\+w* \+w such|strong="G5108"\+w* little \+w child|strong="G3813"\+w* \+w in|strong="G1909"\+w* \+w my|strong="G1473"\+w* \+w name|strong="G3686"\+w* \+w receives|strong="G1209"\+w* \+w me|strong="G1473"\+w*; \+w and|strong="G2532"\+w* \+w whoever|strong="G3739"\+w* \+w receives|strong="G1209"\+w* \+w me|strong="G1473"\+w*, doesn’\+w t|strong="G3588"\+w* \+w receive|strong="G1209"\+w* \+w me|strong="G1473"\+w*, \+w but|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3739"\+w* \+w sent|strong="G2532"\+w* \+w me|strong="G1473"\+w*.”\wj* +\p +\v 38 \w John|strong="G2491"\w* \w said|strong="G5346"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Teacher|strong="G1320"\w*, \w we|strong="G2249"\w* \w saw|strong="G3708"\w* \w someone|strong="G5100"\w* \w who|strong="G3739"\w* doesn’\w t|strong="G3588"\w* follow \w us|strong="G2249"\w* \w casting|strong="G1544"\w* \w out|strong="G1544"\w* \w demons|strong="G1140"\w* \w in|strong="G1722"\w* \w your|strong="G2532"\w* \w name|strong="G3686"\w*; \w and|strong="G2532"\w* \w we|strong="G2249"\w* forbade \w him|strong="G3588"\w*, \w because|strong="G3754"\w* \w he|strong="G2532"\w* doesn’\w t|strong="G3588"\w* follow \w us|strong="G2249"\w*.” +\p +\v 39 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w*, \wj “Don’\+w t|strong="G3588"\+w* \+w forbid|strong="G2967"\+w* \+w him|strong="G3588"\+w*, \+w for|strong="G1063"\+w* \+w there|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w no|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w who|strong="G3739"\+w* \+w will|strong="G1510"\+w* \+w do|strong="G4160"\+w* \+w a|strong="G2532"\+w* \+w mighty|strong="G1411"\+w* \+w work|strong="G1411"\+w* \+w in|strong="G1909"\+w* \+w my|strong="G1473"\+w* \+w name|strong="G3686"\+w* \+w and|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w able|strong="G1410"\+w* \+w quickly|strong="G5035"\+w* \+w to|strong="G2532"\+w* \+w speak|strong="G3004"\+w* \+w evil|strong="G2551"\+w* \+w of|strong="G2532"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 40 \wj \+w For|strong="G1063"\+w* \+w whoever|strong="G3739"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w against|strong="G2596"\+w* \+w us|strong="G2249"\+w* \+w is|strong="G1510"\+w* \+w on|strong="G5228"\+w* \+w our|strong="G2596"\+w* side. \wj* +\v 41 \wj \+w For|strong="G1063"\+w* \+w whoever|strong="G3739"\+w* \+w will|strong="G1510"\+w* \+w give|strong="G4222"\+w* \+w you|strong="G5210"\+w* \+w a|strong="G1722"\+w* \+w cup|strong="G4221"\+w* \+w of|strong="G3686"\+w* \+w water|strong="G5204"\+w* \+w to|strong="G3004"\+w* \+w drink|strong="G4222"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w name|strong="G3686"\+w* \+w because|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w Christ|strong="G5547"\+w*’s, most \+w certainly|strong="G1063"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w he|strong="G3739"\+w* \+w will|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w no|strong="G3756"\+w* \+w way|strong="G1722"\+w* lose \+w his|strong="G1722"\+w* \+w reward|strong="G3408"\+w*. \wj* +\p +\v 42 \wj “\+w Whoever|strong="G3739"\+w* \+w will|strong="G1510"\+w* \+w cause|strong="G4624"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G4012"\+w* \+w these|strong="G3778"\+w* \+w little|strong="G3398"\+w* \+w ones|strong="G3398"\+w* \+w who|strong="G3739"\+w* \+w believe|strong="G4100"\+w* \+w in|strong="G1519"\+w* \+w me|strong="G1473"\+w* \+w to|strong="G1519"\+w* \+w stumble|strong="G4624"\+w*, \+w it|strong="G2532"\+w* \+w would|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w better|strong="G2570"\+w* \+w for|strong="G1519"\+w* \+w him|strong="G3588"\+w* \+w if|strong="G1487"\+w* \+w he|strong="G2532"\+w* \+w were|strong="G1510"\+w* thrown \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w sea|strong="G2281"\+w* \+w with|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w millstone|strong="G3458"\+w* \+w hung|strong="G4029"\+w* \+w around|strong="G4012"\+w* \+w his|strong="G1519"\+w* \+w neck|strong="G5137"\+w*. \wj* +\v 43 \wj \+w If|strong="G1437"\+w* \+w your|strong="G2192"\+w* \+w hand|strong="G5495"\+w* \+w causes|strong="G4624"\+w* \+w you|strong="G4771"\+w* \+w to|strong="G1519"\+w* \+w stumble|strong="G4624"\+w*, \+w cut|strong="G2532"\+w* \+w it|strong="G2532"\+w* off. \+w It|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w better|strong="G2570"\+w* \+w for|strong="G1519"\+w* \+w you|strong="G4771"\+w* \+w to|strong="G1519"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w life|strong="G2222"\+w* \+w maimed|strong="G2948"\+w*, \+w rather|strong="G2228"\+w* \+w than|strong="G2228"\+w* \+w having|strong="G2192"\+w* \+w your|strong="G2192"\+w* \+w two|strong="G1417"\+w* \+w hands|strong="G5495"\+w* \+w to|strong="G1519"\+w* \+w go|strong="G1525"\+w* \+w into|strong="G1519"\+w* Gehenna, \wj*\f + \fr 9:43 \ft or, Hell\f* \wj \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* unquenchable \+w fire|strong="G4442"\+w*, \wj* +\v 44 \wj ‘where their worm doesn’t die, and the fire is not quenched.’ \wj*\x + \xo 9:44 \xt Isaiah 66:24\x*\f + \fr 9:44 \ft NU omits verse 44.\f* +\v 45 \wj \+w If|strong="G1437"\+w* \+w your|strong="G2192"\+w* \+w foot|strong="G4228"\+w* \+w causes|strong="G4624"\+w* \+w you|strong="G4771"\+w* \+w to|strong="G1519"\+w* \+w stumble|strong="G4624"\+w*, \+w cut|strong="G2532"\+w* \+w it|strong="G2532"\+w* off. \+w It|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w better|strong="G2570"\+w* \+w for|strong="G1519"\+w* \+w you|strong="G4771"\+w* \+w to|strong="G1519"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w life|strong="G2222"\+w* \+w lame|strong="G5560"\+w*, \+w rather|strong="G2228"\+w* \+w than|strong="G2228"\+w* \+w having|strong="G2192"\+w* \+w your|strong="G2192"\+w* \+w two|strong="G1417"\+w* \+w feet|strong="G4228"\+w* \+w to|strong="G1519"\+w* \+w be|strong="G1510"\+w* \+w cast|strong="G2532"\+w* \+w into|strong="G1519"\+w* Gehenna, \wj*\f + \fr 9:45 \ft or, Hell\f* \wj \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* fire \+w that|strong="G3588"\+w* \+w will|strong="G1510"\+w* never \+w be|strong="G1510"\+w* quenched—\wj* +\v 46 \wj ‘where their worm doesn’t die, and the fire is not quenched.’ \wj*\f + \fr 9:46 \ft NU omits verse 46.\f* +\v 47 \wj \+w If|strong="G1437"\+w* \+w your|strong="G2192"\+w* \+w eye|strong="G3788"\+w* \+w causes|strong="G4624"\+w* \+w you|strong="G4771"\+w* \+w to|strong="G1519"\+w* \+w stumble|strong="G4624"\+w*, \+w throw|strong="G1544"\+w* \+w it|strong="G2532"\+w* \+w out|strong="G1544"\+w*. \+w It|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w better|strong="G2570"\+w* \+w for|strong="G1519"\+w* \+w you|strong="G4771"\+w* \+w to|strong="G1519"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w God|strong="G2316"\+w*’\+w s|strong="G2192"\+w* Kingdom \+w with|strong="G2532"\+w* \+w one|strong="G3588"\+w* \+w eye|strong="G3788"\+w*, \+w rather|strong="G2228"\+w* \+w than|strong="G2228"\+w* \+w having|strong="G2192"\+w* \+w two|strong="G1417"\+w* \+w eyes|strong="G3788"\+w* \+w to|strong="G1519"\+w* \+w be|strong="G1510"\+w* \+w cast|strong="G1544"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* Gehenna\wj*\f + \fr 9:47 \ft or, Hell\f* \wj \+w of|strong="G2316"\+w* fire, \wj* +\v 48 \wj ‘\+w where|strong="G3699"\+w* \+w their|strong="G2532"\+w* \+w worm|strong="G4663"\+w* doesn’\+w t|strong="G3588"\+w* \+w die|strong="G5053"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w fire|strong="G4442"\+w* \+w is|strong="G3588"\+w* \+w not|strong="G3756"\+w* \+w quenched|strong="G4570"\+w*.’ \wj*\x + \xo 9:48 \xt Isaiah 66:24\x* +\v 49 \wj \+w For|strong="G1063"\+w* \+w everyone|strong="G3956"\+w* \+w will|strong="G3956"\+w* \+w be|strong="G3956"\+w* salted \+w with|strong="G3956"\+w* \+w fire|strong="G4442"\+w*, \+w and|strong="G3956"\+w* \+w every|strong="G3956"\+w* sacrifice \+w will|strong="G3956"\+w* \+w be|strong="G3956"\+w* seasoned \+w with|strong="G3956"\+w* salt. \wj* +\v 50 \wj Salt \+w is|strong="G3588"\+w* \+w good|strong="G2570"\+w*, \+w but|strong="G1161"\+w* \+w if|strong="G1437"\+w* \+w the|strong="G1722"\+w* salt \+w has|strong="G2192"\+w* lost its saltiness, \+w with|strong="G1722"\+w* \+w what|strong="G5101"\+w* \+w will|strong="G5101"\+w* \+w you|strong="G1437"\+w* season \+w it|strong="G2532"\+w*? \+w Have|strong="G2192"\+w* salt \+w in|strong="G1722"\+w* \+w yourselves|strong="G1438"\+w*, \+w and|strong="G2532"\+w* \+w be|strong="G1096"\+w* \+w at|strong="G1722"\+w* \+w peace|strong="G1514"\+w* \+w with|strong="G1722"\+w* \+w one|strong="G1438"\+w* \+w another|strong="G1438"\+w*.” \wj* +\c 10 +\p +\v 1 \w He|strong="G2532"\w* arose \w from|strong="G2064"\w* \w there|strong="G2532"\w* \w and|strong="G2532"\w* \w came|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w borders|strong="G3725"\w* \w of|strong="G2532"\w* \w Judea|strong="G2449"\w* \w and|strong="G2532"\w* \w beyond|strong="G4008"\w* \w the|strong="G2532"\w* \w Jordan|strong="G2446"\w*. \w Multitudes|strong="G3793"\w* \w came|strong="G2064"\w* \w together|strong="G4314"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w again|strong="G3825"\w*. \w As|strong="G5613"\w* \w he|strong="G2532"\w* usually \w did|strong="G2532"\w*, \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w again|strong="G3825"\w* \w teaching|strong="G1321"\w* \w them|strong="G3588"\w*. +\p +\v 2 \w Pharisees|strong="G5330"\w* \w came|strong="G4334"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w testing|strong="G3985"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w*, “\w Is|strong="G3588"\w* \w it|strong="G2532"\w* \w lawful|strong="G1832"\w* \w for|strong="G2532"\w* \w a|strong="G2532"\w* man \w to|strong="G2532"\w* divorce \w his|strong="G2532"\w* \w wife|strong="G1135"\w*?” +\p +\v 3 \w He|strong="G1161"\w* \w answered|strong="G3004"\w*, \wj “\+w What|strong="G5101"\+w* \+w did|strong="G5101"\+w* \+w Moses|strong="G3475"\+w* \+w command|strong="G1781"\+w* \+w you|strong="G5210"\+w*?”\wj* +\p +\v 4 \w They|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Moses|strong="G3475"\w* \w allowed|strong="G2010"\w* \w a|strong="G2532"\w* certificate \w of|strong="G2532"\w* divorce \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w written|strong="G1125"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* divorce \w her|strong="G3588"\w*.” +\p +\v 5 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \wj “\+w For|strong="G4314"\+w* \+w your|strong="G3588"\+w* \+w hardness|strong="G4641"\+w* \+w of|strong="G2424"\+w* \+w heart|strong="G4641"\+w*, \+w he|strong="G1161"\+w* \+w wrote|strong="G1125"\+w* \+w you|strong="G5210"\+w* \+w this|strong="G3778"\+w* \+w commandment|strong="G1785"\+w*. \wj* +\v 6 \wj \+w But|strong="G1161"\+w* \+w from|strong="G2532"\+w* \+w the|strong="G2532"\+w* beginning \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w creation|strong="G2937"\+w*, \+w God|strong="G2532"\+w* \+w made|strong="G4160"\+w* \+w them|strong="G1438"\+w* male \+w and|strong="G2532"\+w* \+w female|strong="G2338"\+w*.\wj*\x + \xo 10:6 \xt Genesis 1:27\x* +\v 7 \wj \+w For|strong="G4314"\+w* \+w this|strong="G3778"\+w* \+w cause|strong="G1752"\+w* \+w a|strong="G2532"\+w* \+w man|strong="G3778"\+w* \+w will|strong="G2532"\+w* \+w leave|strong="G2641"\+w* \+w his|strong="G2532"\+w* \+w father|strong="G3962"\+w* \+w and|strong="G2532"\+w* \+w mother|strong="G3384"\+w*, \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w join|strong="G2532"\+w* \+w to|strong="G4314"\+w* \+w his|strong="G2532"\+w* \+w wife|strong="G1135"\+w*, \wj* +\v 8 \wj \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w two|strong="G1417"\+w* \+w will|strong="G1510"\+w* \+w become|strong="G1510"\+w* \+w one|strong="G1520"\+w* \+w flesh|strong="G4561"\+w*,\wj*\x + \xo 10:8 \xt Genesis 2:24\x* \wj \+w so|strong="G2532"\+w* \+w that|strong="G3588"\+w* \+w they|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w no|strong="G3765"\+w* \+w longer|strong="G3765"\+w* \+w two|strong="G1417"\+w*, \+w but|strong="G2532"\+w* \+w one|strong="G1520"\+w* \+w flesh|strong="G4561"\+w*. \wj* +\v 9 \wj \+w What|strong="G3739"\+w* \+w therefore|strong="G3767"\+w* \+w God|strong="G2316"\+w* \+w has|strong="G2316"\+w* \+w joined|strong="G4801"\+w* \+w together|strong="G4801"\+w*, \+w let|strong="G5563"\+w* \+w no|strong="G3361"\+w* \+w man|strong="G3361"\+w* \+w separate|strong="G5563"\+w*.” \wj* +\p +\v 10 \w In|strong="G1519"\w* \w the|strong="G2532"\w* \w house|strong="G3614"\w*, \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w* \w again|strong="G3825"\w* \w about|strong="G4012"\w* \w the|strong="G2532"\w* \w same|strong="G3778"\w* matter. +\v 11 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Whoever|strong="G3739"\+w* divorces \+w his|strong="G1438"\+w* \+w wife|strong="G1135"\+w* \+w and|strong="G2532"\+w* \+w marries|strong="G1060"\+w* \+w another|strong="G1438"\+w* \+w commits|strong="G3429"\+w* \+w adultery|strong="G3429"\+w* \+w against|strong="G1909"\+w* \+w her|strong="G1438"\+w*. \wj* +\v 12 \wj \+w If|strong="G1437"\+w* \+w a|strong="G2532"\+w* woman herself divorces \+w her|strong="G1437"\+w* husband \+w and|strong="G2532"\+w* \+w marries|strong="G1060"\+w* \+w another|strong="G3588"\+w*, \+w she|strong="G2532"\+w* \+w commits|strong="G3429"\+w* \+w adultery|strong="G3429"\+w*.”\wj* +\p +\v 13 \w They|strong="G2532"\w* \w were|strong="G3588"\w* \w bringing|strong="G4374"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w* little \w children|strong="G3813"\w*, \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w should|strong="G3588"\w* touch \w them|strong="G3588"\w*, \w but|strong="G1161"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w rebuked|strong="G2008"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w bringing|strong="G4374"\w* \w them|strong="G3588"\w*. +\v 14 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w saw|strong="G3708"\w* \w it|strong="G2532"\w*, \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w moved|strong="G3361"\w* \w with|strong="G4314"\w* indignation \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \wj “Allow \+w the|strong="G2532"\+w* little \+w children|strong="G3813"\+w* \+w to|strong="G4314"\+w* \+w come|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w me|strong="G1473"\+w*! Don’\+w t|strong="G3588"\+w* \+w forbid|strong="G2967"\+w* \+w them|strong="G3588"\+w*, \+w for|strong="G1063"\+w* \+w God|strong="G2316"\+w*’s Kingdom \+w belongs|strong="G1510"\+w* \+w to|strong="G4314"\+w* \+w such|strong="G5108"\+w* \+w as|strong="G1161"\+w* \+w these|strong="G3588"\+w*. \wj* +\v 15 \wj \+w Most|strong="G2316"\+w* \+w certainly|strong="G3756"\+w* \+w I|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w whoever|strong="G3739"\+w* \+w will|strong="G2316"\+w* \+w not|strong="G3756"\+w* \+w receive|strong="G1209"\+w* \+w God|strong="G2316"\+w*’s Kingdom \+w like|strong="G5613"\+w* \+w a|strong="G5613"\+w* little \+w child|strong="G3813"\+w*, \+w he|strong="G3739"\+w* \+w will|strong="G2316"\+w* \+w in|strong="G1519"\+w* \+w no|strong="G3756"\+w* \+w way|strong="G5613"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w it|strong="G3739"\+w*.”\wj* +\v 16 \w He|strong="G2532"\w* \w took|strong="G2532"\w* \w them|strong="G3588"\w* \w in|strong="G1909"\w* \w his|strong="G1909"\w* \w arms|strong="G1723"\w* \w and|strong="G2532"\w* \w blessed|strong="G2127"\w* \w them|strong="G3588"\w*, \w laying|strong="G5087"\w* \w his|strong="G1909"\w* \w hands|strong="G5495"\w* \w on|strong="G1909"\w* \w them|strong="G3588"\w*. +\p +\v 17 \w As|strong="G1519"\w* \w he|strong="G2532"\w* \w was|strong="G2532"\w* \w going|strong="G1607"\w* \w out|strong="G1607"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w way|strong="G3598"\w*, \w one|strong="G1520"\w* \w ran|strong="G4370"\w* \w to|strong="G1519"\w* \w him|strong="G1905"\w*, \w knelt|strong="G1120"\w* \w before|strong="G1519"\w* \w him|strong="G1905"\w*, \w and|strong="G2532"\w* \w asked|strong="G1905"\w* \w him|strong="G1905"\w*, “\w Good|strong="G5101"\w* \w Teacher|strong="G1320"\w*, \w what|strong="G5101"\w* \w shall|strong="G2532"\w* \w I|strong="G2532"\w* \w do|strong="G4160"\w* \w that|strong="G2443"\w* \w I|strong="G2532"\w* \w may|strong="G2532"\w* \w inherit|strong="G2816"\w* eternal \w life|strong="G2222"\w*?” +\p +\v 18 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w Why|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G1487"\+w* \+w call|strong="G3004"\+w* \+w me|strong="G1473"\+w* \+w good|strong="G5101"\+w*? \+w No|strong="G3762"\+w* \+w one|strong="G1520"\+w* \+w is|strong="G3588"\+w* \+w good|strong="G5101"\+w* \+w except|strong="G1487"\+w* \+w one|strong="G1520"\+w*—\+w God|strong="G2316"\+w*. \wj* +\v 19 \wj \+w You|strong="G4771"\+w* \+w know|strong="G1492"\+w* \+w the|strong="G2532"\+w* \+w commandments|strong="G1785"\+w*: ‘\+w Do|strong="G1492"\+w* \+w not|strong="G3361"\+w* \+w murder|strong="G5407"\+w*,’ ‘\+w Do|strong="G1492"\+w* \+w not|strong="G3361"\+w* \+w commit|strong="G3431"\+w* \+w adultery|strong="G3431"\+w*,’ ‘\+w Do|strong="G1492"\+w* \+w not|strong="G3361"\+w* \+w steal|strong="G2813"\+w*,’ ‘\+w Do|strong="G1492"\+w* \+w not|strong="G3361"\+w* \+w give|strong="G5576"\+w* \+w false|strong="G5576"\+w* \+w testimony|strong="G5576"\+w*,’ ‘\+w Do|strong="G1492"\+w* \+w not|strong="G3361"\+w* defraud,’ ‘\+w Honor|strong="G5091"\+w* \+w your|strong="G5091"\+w* \+w father|strong="G3962"\+w* \+w and|strong="G2532"\+w* \+w mother|strong="G3384"\+w*.’”\wj*\x + \xo 10:19 \xt Exodus 20:12-16; Deuteronomy 5:16-20 \x* +\p +\v 20 \w He|strong="G1161"\w* \w said|strong="G5346"\w* \w to|strong="G1161"\w* \w him|strong="G3588"\w*, “\w Teacher|strong="G1320"\w*, \w I|strong="G1473"\w* \w have|strong="G1473"\w* \w observed|strong="G5442"\w* \w all|strong="G3956"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w* \w from|strong="G1537"\w* \w my|strong="G3956"\w* \w youth|strong="G3503"\w*.” +\p +\v 21 \w Jesus|strong="G2424"\w* \w looking|strong="G1689"\w* \w at|strong="G1722"\w* \w him|strong="G3588"\w* loved \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w One|strong="G1520"\+w* \+w thing|strong="G1520"\+w* \+w you|strong="G4771"\+w* \+w lack|strong="G5302"\+w*. \+w Go|strong="G5217"\+w*, \+w sell|strong="G4453"\+w* \+w whatever|strong="G3745"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2192"\+w* \+w and|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w poor|strong="G4434"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w will|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w treasure|strong="G2344"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*; \+w and|strong="G2532"\+w* \+w come|strong="G1204"\+w*, \+w follow|strong="G1161"\+w* \+w me|strong="G1325"\+w*, \+w taking|strong="G1325"\+w* \+w up|strong="G1325"\+w* \+w the|strong="G1722"\+w* cross.”\wj* +\p +\v 22 \w But|strong="G1161"\w* \w his|strong="G1909"\w* face \w fell|strong="G3056"\w* \w at|strong="G1909"\w* \w that|strong="G3588"\w* \w saying|strong="G3056"\w*, \w and|strong="G1161"\w* \w he|strong="G1161"\w* \w went|strong="G3588"\w* away \w sorrowful|strong="G3076"\w*, \w for|strong="G1063"\w* \w he|strong="G1161"\w* \w was|strong="G1510"\w* \w one|strong="G3588"\w* \w who|strong="G3588"\w* \w had|strong="G2192"\w* \w great|strong="G4183"\w* \w possessions|strong="G2933"\w*. +\p +\v 23 \w Jesus|strong="G2424"\w* \w looked|strong="G4017"\w* \w around|strong="G4017"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w*, \wj “\+w How|strong="G4459"\+w* difficult \+w it|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w for|strong="G1519"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w have|strong="G2192"\+w* \+w riches|strong="G5536"\+w* \+w to|strong="G1519"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w God|strong="G2316"\+w*’\+w s|strong="G2192"\+w* Kingdom!”\wj* +\p +\v 24 \w The|strong="G1519"\w* \w disciples|strong="G3101"\w* \w were|strong="G1510"\w* \w amazed|strong="G2284"\w* \w at|strong="G1909"\w* \w his|strong="G1519"\w* \w words|strong="G3056"\w*. \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w again|strong="G3825"\w*, \wj “\+w Children|strong="G5043"\+w*, \+w how|strong="G4459"\+w* \+w hard|strong="G1422"\+w* \+w it|strong="G1161"\+w* \+w is|strong="G1510"\+w* \+w for|strong="G1519"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* trust \+w in|strong="G1519"\+w* riches \+w to|strong="G1519"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w God|strong="G2316"\+w*’s Kingdom! \wj* +\v 25 \wj \+w It|strong="G1510"\+w* \+w is|strong="G1510"\+w* \+w easier|strong="G2123"\+w* \+w for|strong="G1519"\+w* \+w a|strong="G1519"\+w* \+w camel|strong="G2574"\+w* \+w to|strong="G1519"\+w* \+w go|strong="G1525"\+w* \+w through|strong="G1223"\+w* \+w a|strong="G1519"\+w* \+w needle|strong="G4476"\+w*’s \+w eye|strong="G5168"\+w* \+w than|strong="G2228"\+w* \+w for|strong="G1519"\+w* \+w a|strong="G1519"\+w* \+w rich|strong="G4145"\+w* \+w man|strong="G4145"\+w* \+w to|strong="G1519"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w God|strong="G2316"\+w*’s Kingdom.”\wj* +\p +\v 26 \w They|strong="G2532"\w* \w were|strong="G3588"\w* \w exceedingly|strong="G4057"\w* \w astonished|strong="G1605"\w*, \w saying|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w Then|strong="G2532"\w* \w who|strong="G5101"\w* \w can|strong="G1410"\w* \w be|strong="G2532"\w* \w saved|strong="G4982"\w*?” +\p +\v 27 \w Jesus|strong="G2424"\w*, \w looking|strong="G1689"\w* \w at|strong="G3844"\w* \w them|strong="G3588"\w*, \w said|strong="G3004"\w*, \wj “\+w With|strong="G3844"\+w* \+w men|strong="G3956"\+w* \+w it|strong="G1063"\+w* \+w is|strong="G3588"\+w* \+w impossible|strong="G3756"\+w*, \+w but|strong="G1063"\+w* \+w not|strong="G3756"\+w* \+w with|strong="G3844"\+w* \+w God|strong="G2316"\+w*, \+w for|strong="G1063"\+w* \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w are|strong="G3588"\+w* \+w possible|strong="G1415"\+w* \+w with|strong="G3844"\+w* \+w God|strong="G2316"\+w*.”\wj* +\p +\v 28 \w Peter|strong="G4074"\w* began \w to|strong="G2532"\w* \w tell|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Behold|strong="G2400"\w*, \w we|strong="G2249"\w* \w have|strong="G2532"\w* left \w all|strong="G3956"\w* \w and|strong="G2532"\w* \w have|strong="G2532"\w* followed \w you|strong="G4771"\w*.” +\p +\v 29 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w*, \wj “Most \+w certainly|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w there|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w no|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w who|strong="G3739"\+w* \+w has|strong="G3962"\+w* left \+w house|strong="G3614"\+w*, \+w or|strong="G2228"\+w* brothers, \+w or|strong="G2228"\+w* sisters, \+w or|strong="G2228"\+w* \+w father|strong="G3962"\+w*, \+w or|strong="G2228"\+w* \+w mother|strong="G3384"\+w*, \+w or|strong="G2228"\+w* wife, \+w or|strong="G2228"\+w* \+w children|strong="G5043"\+w*, \+w or|strong="G2228"\+w* land, \+w for|strong="G1752"\+w* \+w my|strong="G1473"\+w* \+w sake|strong="G1752"\+w*, \+w and|strong="G2532"\+w* \+w for|strong="G1752"\+w* \+w the|strong="G2532"\+w* \+w sake|strong="G1752"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Good|strong="G3588"\+w* \+w News|strong="G2098"\+w*, \wj* +\v 30 \wj \+w but|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w receive|strong="G2983"\+w* \+w one|strong="G3588"\+w* \+w hundred|strong="G1542"\+w* \+w times|strong="G2540"\+w* \+w more|strong="G2532"\+w* \+w now|strong="G3568"\+w* \+w in|strong="G1722"\+w* \+w this|strong="G3778"\+w* \+w time|strong="G2540"\+w*: \+w houses|strong="G3614"\+w*, brothers, sisters, \+w mothers|strong="G3384"\+w*, \+w children|strong="G5043"\+w*, \+w and|strong="G2532"\+w* land, \+w with|strong="G3326"\+w* \+w persecutions|strong="G1375"\+w*; \+w and|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w age|strong="G2540"\+w* \+w to|strong="G2532"\+w* \+w come|strong="G2064"\+w* eternal \+w life|strong="G2222"\+w*. \wj* +\v 31 \wj \+w But|strong="G1161"\+w* \+w many|strong="G4183"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G1510"\+w* \+w first|strong="G4413"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w last|strong="G2078"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w last|strong="G2078"\+w* \+w first|strong="G4413"\+w*.”\wj* +\p +\v 32 \w They|strong="G2532"\w* \w were|strong="G1510"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w way|strong="G3598"\w*, \w going|strong="G3195"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w*; \w and|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w was|strong="G1510"\w* \w going|strong="G3195"\w* \w in|strong="G1722"\w* \w front|strong="G4254"\w* \w of|strong="G2532"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w amazed|strong="G2284"\w*; \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* followed \w were|strong="G1510"\w* \w afraid|strong="G5399"\w*. \w He|strong="G2532"\w* \w again|strong="G3825"\w* \w took|strong="G3880"\w* \w the|strong="G1722"\w* \w twelve|strong="G1427"\w*, \w and|strong="G2532"\w* \w began|strong="G1161"\w* \w to|strong="G1519"\w* \w tell|strong="G3004"\w* \w them|strong="G3588"\w* \w the|strong="G1722"\w* \w things|strong="G3588"\w* \w that|strong="G3588"\w* \w were|strong="G1510"\w* \w going|strong="G3195"\w* \w to|strong="G1519"\w* \w happen|strong="G1510"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*. +\v 33 \wj “\+w Behold|strong="G2400"\+w*, \+w we|strong="G3754"\+w* \+w are|strong="G3588"\+w* \+w going|strong="G2532"\+w* \+w up|strong="G3860"\+w* \+w to|strong="G1519"\+w* \+w Jerusalem|strong="G2414"\+w*. \+w The|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G1519"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w delivered|strong="G3860"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w chief|strong="G2532"\+w* priests \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w scribes|strong="G1122"\+w*. \+w They|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w condemn|strong="G2632"\+w* \+w him|strong="G3588"\+w* \+w to|strong="G1519"\+w* \+w death|strong="G2288"\+w*, \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w deliver|strong="G3860"\+w* \+w him|strong="G3588"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w Gentiles|strong="G1484"\+w*. \wj* +\v 34 \wj \+w They|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w mock|strong="G1702"\+w* \+w him|strong="G2532"\+w*, \+w spit|strong="G1716"\+w* \+w on|strong="G3326"\+w* \+w him|strong="G2532"\+w*, \+w scourge|strong="G3146"\+w* \+w him|strong="G2532"\+w*, \+w and|strong="G2532"\+w* kill \+w him|strong="G2532"\+w*. \+w On|strong="G3326"\+w* \+w the|strong="G2532"\+w* third \+w day|strong="G2250"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w rise|strong="G2250"\+w* \+w again|strong="G2532"\+w*.”\wj* +\p +\v 35 \w James|strong="G2385"\w* \w and|strong="G2532"\w* \w John|strong="G2491"\w*, \w the|strong="G2532"\w* \w sons|strong="G5207"\w* \w of|strong="G5207"\w* \w Zebedee|strong="G2199"\w*, \w came|strong="G2532"\w* near \w to|strong="G2443"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w Teacher|strong="G1320"\w*, \w we|strong="G2249"\w* \w want|strong="G2309"\w* \w you|strong="G4771"\w* \w to|strong="G2443"\w* \w do|strong="G4160"\w* \w for|strong="G2532"\w* \w us|strong="G3004"\w* \w whatever|strong="G3739"\w* \w we|strong="G2249"\w* \w will|strong="G2309"\w* \w ask|strong="G3004"\w*.” +\p +\v 36 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w What|strong="G5101"\+w* \+w do|strong="G4160"\+w* \+w you|strong="G5210"\+w* \+w want|strong="G2309"\+w* \+w me|strong="G1473"\+w* \+w to|strong="G3004"\+w* \+w do|strong="G4160"\+w* \+w for|strong="G1161"\+w* \+w you|strong="G5210"\+w*?”\wj* +\p +\v 37 \w They|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w*, “\w Grant|strong="G1325"\w* \w to|strong="G2443"\w* \w us|strong="G1325"\w* \w that|strong="G2443"\w* \w we|strong="G2249"\w* \w may|strong="G2532"\w* \w sit|strong="G2523"\w*, \w one|strong="G1520"\w* \w at|strong="G1722"\w* \w your|strong="G2532"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* \w and|strong="G2532"\w* \w one|strong="G1520"\w* \w at|strong="G1722"\w* \w your|strong="G2532"\w* left \w hand|strong="G1188"\w*, \w in|strong="G1722"\w* \w your|strong="G2532"\w* \w glory|strong="G1391"\w*.” +\p +\v 38 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w You|strong="G3739"\+w* don’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w* \+w what|strong="G5101"\+w* \+w you|strong="G3739"\+w* \+w are|strong="G3588"\+w* \+w asking|strong="G3004"\+w*. \+w Are|strong="G3588"\+w* \+w you|strong="G3739"\+w* \+w able|strong="G1410"\+w* \+w to|strong="G3004"\+w* \+w drink|strong="G4095"\+w* \+w the|strong="G1161"\+w* \+w cup|strong="G4221"\+w* \+w that|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w drink|strong="G4095"\+w*, \+w and|strong="G1161"\+w* \+w to|strong="G3004"\+w* \+w be|strong="G3756"\+w* baptized \+w with|strong="G3756"\+w* \+w the|strong="G1161"\+w* baptism \+w that|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* baptized \+w with|strong="G3756"\+w*?”\wj* +\p +\v 39 \w They|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w We|strong="G3739"\w* \w are|strong="G3588"\w* \w able|strong="G1410"\w*.” +\p \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w You|strong="G3739"\+w* \+w shall|strong="G2532"\+w* \+w indeed|strong="G2532"\+w* \+w drink|strong="G4095"\+w* \+w the|strong="G2532"\+w* \+w cup|strong="G4221"\+w* \+w that|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w drink|strong="G4095"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G3739"\+w* \+w shall|strong="G2532"\+w* \+w be|strong="G2532"\+w* baptized \+w with|strong="G2532"\+w* \+w the|strong="G2532"\+w* baptism \+w that|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* baptized \+w with|strong="G2532"\+w*; \wj* +\v 40 \wj \+w but|strong="G1161"\+w* \+w to|strong="G1325"\+w* \+w sit|strong="G2523"\+w* \+w at|strong="G1537"\+w* \+w my|strong="G1699"\+w* \+w right|strong="G1188"\+w* \+w hand|strong="G1188"\+w* \+w and|strong="G1161"\+w* \+w at|strong="G1537"\+w* \+w my|strong="G1699"\+w* \+w left|strong="G2176"\+w* \+w hand|strong="G1188"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w mine|strong="G1699"\+w* \+w to|strong="G1325"\+w* \+w give|strong="G1325"\+w*, \+w but|strong="G1161"\+w* \+w for|strong="G1161"\+w* \+w whom|strong="G3739"\+w* \+w it|strong="G1161"\+w* \+w has|strong="G3739"\+w* \+w been|strong="G1510"\+w* \+w prepared|strong="G2090"\+w*.”\wj* +\p +\v 41 \w When|strong="G2532"\w* \w the|strong="G2532"\w* \w ten|strong="G1176"\w* heard \w it|strong="G2532"\w*, \w they|strong="G2532"\w* began \w to|strong="G2532"\w* \w be|strong="G2532"\w* indignant toward \w James|strong="G2385"\w* \w and|strong="G2532"\w* \w John|strong="G2491"\w*. +\p +\v 42 \w Jesus|strong="G2424"\w* \w summoned|strong="G4341"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w You|strong="G3754"\+w* \+w know|strong="G1492"\+w* \+w that|strong="G3754"\+w* \+w they|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w recognized|strong="G1380"\+w* \+w as|strong="G2532"\+w* rulers \+w over|strong="G2634"\+w* \+w the|strong="G2532"\+w* \+w nations|strong="G1484"\+w* \+w lord|strong="G3588"\+w* \+w it|strong="G2532"\+w* \+w over|strong="G2634"\+w* \+w them|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w their|strong="G1438"\+w* \+w great|strong="G3173"\+w* \+w ones|strong="G3748"\+w* \+w exercise|strong="G2715"\+w* \+w authority|strong="G2715"\+w* \+w over|strong="G2634"\+w* \+w them|strong="G3588"\+w*. \wj* +\v 43 \wj \+w But|strong="G1161"\+w* \+w it|strong="G1161"\+w* \+w shall|strong="G3739"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G1096"\+w* \+w so|strong="G3779"\+w* \+w among|strong="G1722"\+w* \+w you|strong="G5210"\+w*, \+w but|strong="G1161"\+w* \+w whoever|strong="G3739"\+w* \+w wants|strong="G2309"\+w* \+w to|strong="G2309"\+w* \+w become|strong="G1096"\+w* \+w great|strong="G3173"\+w* \+w among|strong="G1722"\+w* \+w you|strong="G5210"\+w* \+w shall|strong="G3739"\+w* \+w be|strong="G1096"\+w* \+w your|strong="G1722"\+w* \+w servant|strong="G1249"\+w*. \wj* +\v 44 \wj \+w Whoever|strong="G3739"\+w* \+w of|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w wants|strong="G2309"\+w* \+w to|strong="G2532"\+w* \+w become|strong="G1096"\+w* \+w first|strong="G4413"\+w* \+w among|strong="G1722"\+w* \+w you|strong="G5210"\+w* \+w shall|strong="G2532"\+w* \+w be|strong="G1096"\+w* bondservant \+w of|strong="G2532"\+w* \+w all|strong="G3956"\+w*. \wj* +\v 45 \wj \+w For|strong="G1063"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3756"\+w* \+w also|strong="G2532"\+w* \+w came|strong="G2064"\+w* \+w not|strong="G3756"\+w* \+w to|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w served|strong="G1247"\+w* \+w but|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w serve|strong="G1247"\+w*, \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w his|strong="G2532"\+w* \+w life|strong="G5590"\+w* \+w as|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w ransom|strong="G3083"\+w* \+w for|strong="G1063"\+w* \+w many|strong="G4183"\+w*.”\wj* +\p +\v 46 \w They|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w Jericho|strong="G2410"\w*. \w As|strong="G1519"\w* \w he|strong="G2532"\w* \w went|strong="G2064"\w* \w out|strong="G1607"\w* \w from|strong="G3844"\w* \w Jericho|strong="G2410"\w* \w with|strong="G3844"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w great|strong="G2532"\w* \w multitude|strong="G3793"\w*, \w the|strong="G2532"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w Timaeus|strong="G5090"\w*, Bartimaeus, \w a|strong="G2532"\w* \w blind|strong="G5185"\w* \w beggar|strong="G4319"\w*, \w was|strong="G3588"\w* \w sitting|strong="G2521"\w* \w by|strong="G3844"\w* \w the|strong="G2532"\w* \w road|strong="G3598"\w*. +\v 47 \w When|strong="G2532"\w* \w he|strong="G2532"\w* heard \w that|strong="G3754"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w Jesus|strong="G2424"\w* \w the|strong="G2532"\w* \w Nazarene|strong="G3479"\w*, \w he|strong="G2532"\w* began \w to|strong="G2532"\w* \w cry|strong="G2896"\w* \w out|strong="G2896"\w* \w and|strong="G2532"\w* \w say|strong="G3004"\w*, “\w Jesus|strong="G2424"\w*, \w you|strong="G3754"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w David|strong="G1138"\w*, \w have|strong="G2532"\w* \w mercy|strong="G1653"\w* \w on|strong="G1653"\w* \w me|strong="G1473"\w*!” +\v 48 \w Many|strong="G4183"\w* \w rebuked|strong="G2008"\w* \w him|strong="G3588"\w*, \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w should|strong="G3588"\w* \w be|strong="G2532"\w* \w quiet|strong="G4623"\w*, \w but|strong="G1161"\w* \w he|strong="G2532"\w* \w cried|strong="G2896"\w* \w out|strong="G2896"\w* \w much|strong="G4183"\w* \w more|strong="G3123"\w*, “\w You|strong="G2532"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w David|strong="G1138"\w*, \w have|strong="G2532"\w* \w mercy|strong="G1653"\w* \w on|strong="G1653"\w* \w me|strong="G1473"\w*!” +\p +\v 49 \w Jesus|strong="G2424"\w* \w stood|strong="G2476"\w* \w still|strong="G2476"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Call|strong="G3004"\+w* \+w him|strong="G3588"\+w*.”\wj* +\p \w They|strong="G2532"\w* \w called|strong="G3004"\w* \w the|strong="G2532"\w* \w blind|strong="G5185"\w* \w man|strong="G5185"\w*, \w saying|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “Cheer \w up|strong="G1453"\w*! \w Get|strong="G1453"\w* \w up|strong="G1453"\w*. \w He|strong="G2532"\w* \w is|strong="G3588"\w* \w calling|strong="G5455"\w* \w you|strong="G4771"\w*!” +\p +\v 50 \w He|strong="G1161"\w*, casting away \w his|strong="G4314"\w* \w cloak|strong="G2440"\w*, sprang \w up|strong="G2064"\w*, \w and|strong="G1161"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w Jesus|strong="G2424"\w*. +\p +\v 51 \w Jesus|strong="G2424"\w* \w asked|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w What|strong="G5101"\+w* \+w do|strong="G4160"\+w* \+w you|strong="G4771"\+w* \+w want|strong="G2309"\+w* \+w me|strong="G3004"\+w* \+w to|strong="G2443"\+w* \+w do|strong="G4160"\+w* \+w for|strong="G1161"\+w* \+w you|strong="G4771"\+w*?”\wj* +\p \w The|strong="G2532"\w* \w blind|strong="G5185"\w* \w man|strong="G5185"\w* \w said|strong="G3004"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w*, “\w Rabboni|strong="G4462"\w*,\f + \fr 10:51 \ft Rabboni is a transliteration of the Hebrew word for “great teacher.”\f* \w that|strong="G2443"\w* \w I|strong="G2532"\w* \w may|strong="G2532"\w* see \w again|strong="G2532"\w*.” +\p +\v 52 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Go|strong="G5217"\+w* \+w your|strong="G2532"\+w* \+w way|strong="G3598"\+w*. \+w Your|strong="G2532"\+w* \+w faith|strong="G4102"\+w* \+w has|strong="G4102"\+w* \+w made|strong="G4982"\+w* \+w you|strong="G4771"\+w* \+w well|strong="G4982"\+w*.” \wj* \w Immediately|strong="G2112"\w* \w he|strong="G2532"\w* received \w his|strong="G1722"\w* \w sight|strong="G3588"\w* \w and|strong="G2532"\w* followed \w Jesus|strong="G2424"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w way|strong="G3598"\w*. +\c 11 +\p +\v 1 \w When|strong="G3753"\w* \w they|strong="G2532"\w* \w came|strong="G2532"\w* \w near|strong="G1448"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w*, \w to|strong="G1519"\w* Bethsphage\f + \fr 11:1 \ft TR & NU read “Bethphage” instead of “Bethsphage”\f* \w and|strong="G2532"\w* Bethany, \w at|strong="G1519"\w* \w the|strong="G2532"\w* \w Mount|strong="G3735"\w* \w of|strong="G2532"\w* \w Olives|strong="G1636"\w*, \w he|strong="G2532"\w* \w sent|strong="G2532"\w* \w two|strong="G1417"\w* \w of|strong="G2532"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* +\v 2 \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Go|strong="G5217"\+w* \+w your|strong="G2532"\+w* \+w way|strong="G5217"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w village|strong="G2968"\+w* \+w that|strong="G3739"\+w* \+w is|strong="G3588"\+w* \+w opposite|strong="G2713"\+w* \+w you|strong="G5210"\+w*. \+w Immediately|strong="G2112"\+w* \+w as|strong="G1519"\+w* \+w you|strong="G5210"\+w* \+w enter|strong="G1531"\+w* \+w into|strong="G1519"\+w* \+w it|strong="G2532"\+w*, \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w find|strong="G2147"\+w* \+w a|strong="G2532"\+w* \+w young|strong="G3739"\+w* donkey \+w tied|strong="G1210"\+w*, \+w on|strong="G1909"\+w* \+w which|strong="G3739"\+w* \+w no|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w has|strong="G3739"\+w* \+w sat|strong="G2523"\+w*. \+w Untie|strong="G3089"\+w* \+w him|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w bring|strong="G5342"\+w* \+w him|strong="G3588"\+w*. \wj* +\v 3 \wj \+w If|strong="G1437"\+w* \+w anyone|strong="G5100"\+w* asks \+w you|strong="G5210"\+w*, ‘\+w Why|strong="G5101"\+w* \+w are|strong="G3588"\+w* \+w you|strong="G5210"\+w* \+w doing|strong="G4160"\+w* \+w this|strong="G3778"\+w*?’ \+w say|strong="G3004"\+w*, ‘\+w The|strong="G2532"\+w* \+w Lord|strong="G2962"\+w* \+w needs|strong="G5532"\+w* \+w him|strong="G3588"\+w*;’ \+w and|strong="G2532"\+w* \+w immediately|strong="G2112"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G5101"\+w* send \+w him|strong="G3588"\+w* \+w back|strong="G3825"\+w* \+w here|strong="G5602"\+w*.”\wj* +\p +\v 4 \w They|strong="G2532"\w* \w went|strong="G2532"\w* \w away|strong="G1854"\w*, \w and|strong="G2532"\w* \w found|strong="G2147"\w* \w a|strong="G2532"\w* young donkey \w tied|strong="G1210"\w* \w at|strong="G1909"\w* \w the|strong="G2532"\w* \w door|strong="G2374"\w* \w outside|strong="G1854"\w* \w in|strong="G1909"\w* \w the|strong="G2532"\w* open street, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w untied|strong="G3089"\w* \w him|strong="G3588"\w*. +\v 5 \w Some|strong="G5100"\w* \w of|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G5101"\w* \w stood|strong="G2476"\w* \w there|strong="G1563"\w* \w asked|strong="G3004"\w* \w them|strong="G3588"\w*, “\w What|strong="G5101"\w* \w are|strong="G3588"\w* \w you|strong="G3004"\w* \w doing|strong="G4160"\w*, \w untying|strong="G3089"\w* \w the|strong="G2532"\w* \w young|strong="G5100"\w* donkey?” +\v 6 \w They|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w just|strong="G2531"\w* \w as|strong="G2531"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* \w said|strong="G3004"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w let|strong="G1161"\w* \w them|strong="G3588"\w* \w go|strong="G2532"\w*. +\p +\v 7 \w They|strong="G2532"\w* \w brought|strong="G5342"\w* \w the|strong="G2532"\w* young donkey \w to|strong="G4314"\w* \w Jesus|strong="G2424"\w* \w and|strong="G2532"\w* \w threw|strong="G1911"\w* \w their|strong="G2532"\w* \w garments|strong="G2440"\w* \w on|strong="G1909"\w* \w it|strong="G2532"\w*, \w and|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w sat|strong="G2523"\w* \w on|strong="G1909"\w* \w it|strong="G2532"\w*. +\v 8 \w Many|strong="G4183"\w* \w spread|strong="G4766"\w* \w their|strong="G2532"\w* \w garments|strong="G2440"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w way|strong="G3598"\w*, \w and|strong="G2532"\w* \w others|strong="G3588"\w* \w were|strong="G3588"\w* \w cutting|strong="G2875"\w* \w down|strong="G2875"\w* \w branches|strong="G4746"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* trees \w and|strong="G2532"\w* \w spreading|strong="G4766"\w* \w them|strong="G3588"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w road|strong="G3598"\w*. +\v 9 \w Those|strong="G3588"\w* \w who|strong="G3588"\w* \w went|strong="G2064"\w* \w in|strong="G1722"\w* \w front|strong="G4254"\w* \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* followed \w cried|strong="G2896"\w* \w out|strong="G2896"\w*, “\w Hosanna|strong="G5614"\w*!\f + \fr 11:9 \ft “Hosanna” means “save us” or “help us, we pray”.\f* \w Blessed|strong="G2127"\w* \w is|strong="G3588"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w comes|strong="G2064"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*!\x + \xo 11:9 \xt Psalms 118:25-26\x* +\v 10 \w Blessed|strong="G2127"\w* \w is|strong="G3588"\w* \w the|strong="G1722"\w* kingdom \w of|strong="G3962"\w* \w our|strong="G1722"\w* \w father|strong="G3962"\w* \w David|strong="G1138"\w* \w that|strong="G3588"\w* \w is|strong="G3588"\w* \w coming|strong="G2064"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* name \w of|strong="G3962"\w* \w the|strong="G1722"\w* \w Lord|strong="G3588"\w*! \w Hosanna|strong="G5614"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w highest|strong="G5310"\w*!” +\p +\v 11 \w Jesus|strong="G1525"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w temple|strong="G2411"\w* \w in|strong="G1519"\w* \w Jerusalem|strong="G2414"\w*. \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w looked|strong="G4017"\w* \w around|strong="G4017"\w* \w at|strong="G1519"\w* \w everything|strong="G3956"\w*, \w it|strong="G2532"\w* \w being|strong="G1510"\w* \w now|strong="G2532"\w* \w evening|strong="G3796"\w*, \w he|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w to|strong="G1519"\w* Bethany \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w twelve|strong="G1427"\w*. +\p +\v 12 \w The|strong="G2532"\w* \w next|strong="G1887"\w* \w day|strong="G1887"\w*, \w when|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w come|strong="G1831"\w* \w out|strong="G1831"\w* \w from|strong="G2532"\w* Bethany, \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w hungry|strong="G3983"\w*. +\v 13 \w Seeing|strong="G3708"\w* \w a|strong="G2192"\w* \w fig|strong="G4808"\w* \w tree|strong="G4808"\w* \w afar|strong="G3113"\w* \w off|strong="G3113"\w* \w having|strong="G2192"\w* \w leaves|strong="G5444"\w*, \w he|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G2532"\w* \w see|strong="G3708"\w* \w if|strong="G1487"\w* perhaps \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w find|strong="G2147"\w* \w anything|strong="G5100"\w* \w on|strong="G1909"\w* \w it|strong="G2532"\w*. \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G2532"\w* \w it|strong="G2532"\w*, \w he|strong="G2532"\w* \w found|strong="G2147"\w* \w nothing|strong="G3762"\w* \w but|strong="G2532"\w* \w leaves|strong="G5444"\w*, \w for|strong="G1063"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w not|strong="G3756"\w* \w the|strong="G1722"\w* \w season|strong="G2540"\w* \w for|strong="G1063"\w* \w figs|strong="G4810"\w*. +\v 14 \w Jesus|strong="G3004"\w* \w told|strong="G3004"\w* \w it|strong="G2532"\w*, \wj “\+w May|strong="G2532"\+w* \+w no|strong="G3367"\+w* \+w one|strong="G3367"\+w* \+w ever|strong="G1519"\+w* \+w eat|strong="G2068"\+w* \+w fruit|strong="G2590"\+w* \+w from|strong="G1537"\+w* \+w you|strong="G4771"\+w* \+w again|strong="G3371"\+w*!” \wj* \w and|strong="G2532"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* heard \w it|strong="G2532"\w*. +\p +\v 15 \w They|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w*, \w and|strong="G2532"\w* \w Jesus|strong="G1525"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w* \w and|strong="G2532"\w* began \w to|strong="G1519"\w* \w throw|strong="G1544"\w* \w out|strong="G1544"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w sold|strong="G4453"\w* \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* bought \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w*, \w and|strong="G2532"\w* \w overthrew|strong="G2690"\w* \w the|strong="G1722"\w* \w money|strong="G2855"\w* \w changers|strong="G2855"\w*’ \w tables|strong="G5132"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w seats|strong="G2515"\w* \w of|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w sold|strong="G4453"\w* \w the|strong="G1722"\w* \w doves|strong="G4058"\w*. +\v 16 \w He|strong="G2532"\w* \w would|strong="G2532"\w* \w not|strong="G3756"\w* allow \w anyone|strong="G5100"\w* \w to|strong="G2443"\w* \w carry|strong="G1308"\w* \w a|strong="G2532"\w* \w container|strong="G4632"\w* \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w temple|strong="G2411"\w*. +\v 17 \w He|strong="G2532"\w* \w taught|strong="G1321"\w*, \w saying|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “Isn’\+w t|strong="G3588"\+w* \+w it|strong="G2532"\+w* \+w written|strong="G1125"\+w*, ‘\+w My|strong="G3956"\+w* \+w house|strong="G3624"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w called|strong="G2564"\+w* \+w a|strong="G2532"\+w* \+w house|strong="G3624"\+w* \+w of|strong="G2532"\+w* \+w prayer|strong="G4335"\+w* \+w for|strong="G3754"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G2532"\+w* \+w nations|strong="G1484"\+w*’?\wj*\x + \xo 11:17 \xt Isaiah 56:7\x* \wj \+w But|strong="G1161"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2532"\+w* \+w made|strong="G4160"\+w* \+w it|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w den|strong="G4693"\+w* \+w of|strong="G2532"\+w* \+w robbers|strong="G3027"\+w*!”\wj*\x + \xo 11:17 \xt Jeremiah 7:11\x* +\p +\v 18 \w The|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w scribes|strong="G1122"\w* heard \w it|strong="G2532"\w*, \w and|strong="G2532"\w* \w sought|strong="G2212"\w* \w how|strong="G4459"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* destroy \w him|strong="G3588"\w*. \w For|strong="G1063"\w* \w they|strong="G2532"\w* \w feared|strong="G5399"\w* \w him|strong="G3588"\w*, \w because|strong="G1063"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w* \w was|strong="G3588"\w* \w astonished|strong="G1605"\w* \w at|strong="G1909"\w* \w his|strong="G3956"\w* \w teaching|strong="G1322"\w*. +\p +\v 19 \w When|strong="G3752"\w* \w evening|strong="G3796"\w* \w came|strong="G1096"\w*, \w he|strong="G2532"\w* \w went|strong="G2532"\w* \w out|strong="G1854"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w*. +\v 20 \w As|strong="G2532"\w* \w they|strong="G2532"\w* \w passed|strong="G3588"\w* \w by|strong="G1537"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w morning|strong="G4404"\w*, \w they|strong="G2532"\w* \w saw|strong="G3708"\w* \w the|strong="G2532"\w* \w fig|strong="G4808"\w* \w tree|strong="G4808"\w* \w withered|strong="G3583"\w* \w away|strong="G3583"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w roots|strong="G4491"\w*. +\v 21 \w Peter|strong="G4074"\w*, remembering, \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Rabbi|strong="G4461"\w*, \w look|strong="G3708"\w*! \w The|strong="G2532"\w* \w fig|strong="G4808"\w* \w tree|strong="G4808"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w cursed|strong="G2672"\w* \w has|strong="G3739"\w* \w withered|strong="G3583"\w* \w away|strong="G3583"\w*.” +\p +\v 22 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Have|strong="G2192"\+w* \+w faith|strong="G4102"\+w* \+w in|strong="G2532"\+w* \+w God|strong="G2316"\+w*. \wj* +\v 23 \wj \+w For|strong="G3754"\+w* most \+w certainly|strong="G2532"\+w* \+w I|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w whoever|strong="G3739"\+w* \+w may|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w this|strong="G3778"\+w* \+w mountain|strong="G3735"\+w*, ‘\+w Be|strong="G1096"\+w* \+w taken|strong="G1096"\+w* \+w up|strong="G1519"\+w* \+w and|strong="G2532"\+w* \+w cast|strong="G2532"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1722"\+w* \+w sea|strong="G2281"\+w*,’ \+w and|strong="G2532"\+w* doesn’\+w t|strong="G3588"\+w* \+w doubt|strong="G1252"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G1519"\+w* \+w heart|strong="G2588"\+w*, \+w but|strong="G2532"\+w* \+w believes|strong="G4100"\+w* \+w that|strong="G3754"\+w* \+w what|strong="G3739"\+w* \+w he|strong="G2532"\+w* \+w says|strong="G3004"\+w* \+w is|strong="G1510"\+w* \+w happening|strong="G1096"\+w*, \+w he|strong="G2532"\+w* \+w shall|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w whatever|strong="G3739"\+w* \+w he|strong="G2532"\+w* \+w says|strong="G3004"\+w*. \wj* +\v 24 \wj \+w Therefore|strong="G1223"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w whatever|strong="G3745"\+w* \+w you|strong="G5210"\+w* \+w pray|strong="G4336"\+w* \+w and|strong="G2532"\+w* \+w ask|strong="G3004"\+w* \+w for|strong="G3754"\+w*, \+w believe|strong="G4100"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2532"\+w* \+w received|strong="G2983"\+w* \+w them|strong="G3004"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w shall|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w them|strong="G3004"\+w*. \wj* +\v 25 \wj \+w Whenever|strong="G3752"\+w* \+w you|strong="G5210"\+w* \+w stand|strong="G4739"\+w* \+w praying|strong="G4336"\+w*, forgive, \+w if|strong="G1487"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2192"\+w* \+w anything|strong="G5100"\+w* \+w against|strong="G2596"\+w* \+w anyone|strong="G5100"\+w*; \+w so|strong="G2443"\+w* \+w that|strong="G2443"\+w* \+w your|strong="G2192"\+w* \+w Father|strong="G3962"\+w*, \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*, \+w may|strong="G2532"\+w* \+w also|strong="G2532"\+w* forgive \+w you|strong="G5210"\+w* \+w your|strong="G2192"\+w* \+w transgressions|strong="G3900"\+w*. \wj* +\v 26 \wj But if you do not forgive, neither will your Father in heaven forgive your transgressions.”\wj*\f + \fr 11:26 \ft NU omits verse 26.\f* +\p +\v 27 \w They|strong="G2532"\w* \w came|strong="G2064"\w* \w again|strong="G3825"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w*, \w and|strong="G2532"\w* \w as|strong="G1519"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w walking|strong="G4043"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2411"\w*, \w the|strong="G1722"\w* \w chief|strong="G2532"\w* priests, \w the|strong="G1722"\w* \w scribes|strong="G1122"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w elders|strong="G4245"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, +\v 28 \w and|strong="G2532"\w* \w they|strong="G2532"\w* began \w saying|strong="G3004"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w*, “\w By|strong="G1722"\w* \w what|strong="G5101"\w* \w authority|strong="G1849"\w* \w do|strong="G4160"\w* \w you|strong="G4771"\w* \w do|strong="G4160"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*? \w Or|strong="G2228"\w* \w who|strong="G5101"\w* \w gave|strong="G1325"\w* \w you|strong="G4771"\w* \w this|strong="G3778"\w* \w authority|strong="G1849"\w* \w to|strong="G2443"\w* \w do|strong="G4160"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*?” +\p +\v 29 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w ask|strong="G1905"\+w* \+w you|strong="G5210"\+w* \+w one|strong="G1520"\+w* \+w question|strong="G1905"\+w*. \+w Answer|strong="G3056"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w by|strong="G1722"\+w* \+w what|strong="G4169"\+w* \+w authority|strong="G1849"\+w* \+w I|strong="G1473"\+w* \+w do|strong="G4160"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w*. \wj* +\v 30 \wj \+w The|strong="G1537"\+w* baptism \+w of|strong="G1537"\+w* \+w John|strong="G2491"\+w*—\+w was|strong="G1510"\+w* \+w it|strong="G1510"\+w* \+w from|strong="G1537"\+w* \+w heaven|strong="G3772"\+w*, \+w or|strong="G2228"\+w* \+w from|strong="G1537"\+w* \+w men|strong="G3588"\+w*? Answer \+w me|strong="G1473"\+w*.” \wj* +\p +\v 31 \w They|strong="G2532"\w* \w reasoned|strong="G1260"\w* \w with|strong="G4314"\w* \w themselves|strong="G1438"\w*, \w saying|strong="G3004"\w*, “\w If|strong="G1437"\w* \w we|strong="G1437"\w* \w should|strong="G2532"\w* \w say|strong="G3004"\w*, ‘\w From|strong="G1537"\w* \w heaven|strong="G3772"\w*;’ \w he|strong="G2532"\w* \w will|strong="G5101"\w* \w say|strong="G3004"\w*, ‘\w Why|strong="G5101"\w* \w then|strong="G3767"\w* \w did|strong="G2532"\w* \w you|strong="G1437"\w* \w not|strong="G3756"\w* \w believe|strong="G4100"\w* \w him|strong="G2532"\w*?’ +\v 32 \w If|strong="G3748"\w* \w we|strong="G3754"\w* \w should|strong="G3588"\w* \w say|strong="G3004"\w*, ‘\w From|strong="G1537"\w* \w men|strong="G3588"\w*’”—\w they|strong="G3588"\w* \w feared|strong="G5399"\w* \w the|strong="G1537"\w* \w people|strong="G2992"\w*, \w for|strong="G1063"\w* \w all|strong="G3588"\w* \w held|strong="G2192"\w* \w John|strong="G2491"\w* \w to|strong="G3004"\w* \w really|strong="G3689"\w* \w be|strong="G1510"\w* \w a|strong="G2192"\w* \w prophet|strong="G4396"\w*. +\v 33 \w They|strong="G2532"\w* \w answered|strong="G3004"\w* \w Jesus|strong="G2424"\w*, “\w We|strong="G2532"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w*.” +\p \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Neither|strong="G3761"\+w* \+w will|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w by|strong="G1722"\+w* \+w what|strong="G4169"\+w* \+w authority|strong="G1849"\+w* \+w I|strong="G1473"\+w* \+w do|strong="G4160"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w*.”\wj* +\c 12 +\p +\v 1 \w He|strong="G2532"\w* began \w to|strong="G2532"\w* \w speak|strong="G2980"\w* \w to|strong="G2532"\w* \w them|strong="G1722"\w* \w in|strong="G1722"\w* \w parables|strong="G3850"\w*. \wj “\+w A|strong="G2532"\+w* man \+w planted|strong="G5452"\+w* \+w a|strong="G2532"\+w* vineyard, \+w put|strong="G4060"\+w* \+w a|strong="G2532"\+w* hedge \+w around|strong="G4060"\+w* \+w it|strong="G2532"\+w*, \+w dug|strong="G3736"\+w* \+w a|strong="G2532"\+w* \+w pit|strong="G2532"\+w* \+w for|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w wine|strong="G5276"\+w* \+w press|strong="G5276"\+w*, \+w built|strong="G3618"\+w* \+w a|strong="G2532"\+w* \+w tower|strong="G4444"\+w*, \+w rented|strong="G1554"\+w* \+w it|strong="G2532"\+w* \+w out|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w farmer|strong="G1092"\+w*, \+w and|strong="G2532"\+w* \+w went|strong="G2532"\+w* \+w into|strong="G1722"\+w* \+w another|strong="G1722"\+w* country. \wj* +\v 2 \wj \+w When|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w was|strong="G3588"\+w* \+w time|strong="G2540"\+w*, \+w he|strong="G2532"\+w* \+w sent|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w servant|strong="G1401"\+w* \+w to|strong="G4314"\+w* \+w the|strong="G2532"\+w* \+w farmer|strong="G1092"\+w* \+w to|strong="G4314"\+w* \+w get|strong="G2532"\+w* \+w from|strong="G3844"\+w* \+w the|strong="G2532"\+w* \+w farmer|strong="G1092"\+w* \+w his|strong="G2983"\+w* share \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w fruit|strong="G2590"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* vineyard. \wj* +\v 3 \wj \+w They|strong="G2532"\+w* \+w took|strong="G2983"\+w* \+w him|strong="G2532"\+w*, \+w beat|strong="G1194"\+w* \+w him|strong="G2532"\+w*, \+w and|strong="G2532"\+w* \+w sent|strong="G2532"\+w* \+w him|strong="G2532"\+w* away \+w empty|strong="G2756"\+w*. \wj* +\v 4 \wj \+w Again|strong="G3825"\+w*, \+w he|strong="G2532"\+w* \+w sent|strong="G2532"\+w* \+w another|strong="G1438"\+w* \+w servant|strong="G1401"\+w* \+w to|strong="G4314"\+w* \+w them|strong="G1438"\+w*; \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* threw stones \+w at|strong="G4314"\+w* \+w him|strong="G2532"\+w*, \+w wounded|strong="G2775"\+w* \+w him|strong="G2532"\+w* \+w in|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w head|strong="G2775"\+w*, \+w and|strong="G2532"\+w* \+w sent|strong="G2532"\+w* \+w him|strong="G2532"\+w* away shamefully treated. \wj* +\v 5 \wj \+w Again|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w sent|strong="G2532"\+w* \+w another|strong="G3739"\+w*, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* killed \+w him|strong="G3739"\+w*, \+w and|strong="G2532"\+w* \+w many|strong="G4183"\+w* \+w others|strong="G3739"\+w*, \+w beating|strong="G1194"\+w* \+w some|strong="G3739"\+w*, \+w and|strong="G2532"\+w* killing \+w some|strong="G3739"\+w*. \wj* +\v 6 \wj \+w Therefore|strong="G3754"\+w* \+w still|strong="G2089"\+w* \+w having|strong="G2192"\+w* \+w one|strong="G1520"\+w*, \+w his|strong="G1438"\+w* beloved \+w son|strong="G5207"\+w*, \+w he|strong="G3754"\+w* sent \+w him|strong="G3588"\+w* \+w last|strong="G2078"\+w* \+w to|strong="G4314"\+w* \+w them|strong="G3588"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w They|strong="G3588"\+w* \+w will|strong="G1473"\+w* \+w respect|strong="G1788"\+w* \+w my|strong="G1473"\+w* \+w son|strong="G5207"\+w*.’ \wj* +\v 7 \wj \+w But|strong="G1161"\+w* \+w those|strong="G3588"\+w* farmers \+w said|strong="G3004"\+w* \+w among|strong="G4314"\+w* \+w themselves|strong="G1438"\+w*, ‘\+w This|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w heir|strong="G2818"\+w*. \+w Come|strong="G1205"\+w*, \+w let|strong="G1161"\+w*’s kill \+w him|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w inheritance|strong="G2817"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w ours|strong="G1473"\+w*.’ \wj* +\v 8 \wj \+w They|strong="G2532"\+w* \+w took|strong="G2983"\+w* \+w him|strong="G3588"\+w*, killed \+w him|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w cast|strong="G1544"\+w* \+w him|strong="G3588"\+w* \+w out|strong="G1544"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* vineyard. \wj* +\v 9 \wj \+w What|strong="G5101"\+w* \+w therefore|strong="G2532"\+w* \+w will|strong="G5101"\+w* \+w the|strong="G2532"\+w* \+w lord|strong="G2962"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* vineyard \+w do|strong="G4160"\+w*? \+w He|strong="G2532"\+w* \+w will|strong="G5101"\+w* \+w come|strong="G2064"\+w* \+w and|strong="G2532"\+w* destroy \+w the|strong="G2532"\+w* farmers, \+w and|strong="G2532"\+w* \+w will|strong="G5101"\+w* \+w give|strong="G1325"\+w* \+w the|strong="G2532"\+w* vineyard \+w to|strong="G2532"\+w* \+w others|strong="G3588"\+w*. \wj* +\v 10 \wj Haven’\+w t|strong="G3588"\+w* \+w you|strong="G3739"\+w* \+w even|strong="G3761"\+w* read \+w this|strong="G3778"\+w* \+w Scripture|strong="G1124"\+w*:\wj* +\q1 \wj ‘\+w The|strong="G1519"\+w* \+w stone|strong="G3037"\+w* \+w which|strong="G3739"\+w* \+w the|strong="G1519"\+w* \+w builders|strong="G3618"\+w* rejected\wj* +\q2 \wj \+w was|strong="G1096"\+w* \+w made|strong="G1096"\+w* \+w the|strong="G1519"\+w* \+w head|strong="G2776"\+w* \+w of|strong="G2776"\+w* \+w the|strong="G1519"\+w* \+w corner|strong="G1137"\+w*.\wj* +\q1 +\v 11 \wj \+w This|strong="G3778"\+w* \+w was|strong="G1510"\+w* \+w from|strong="G3844"\+w* \+w the|strong="G1722"\+w* \+w Lord|strong="G2962"\+w*.\wj* +\q2 \wj \+w It|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w marvelous|strong="G2298"\+w* \+w in|strong="G1722"\+w* \+w our|strong="G2532"\+w* \+w eyes|strong="G3788"\+w*’?”\wj*\x + \xo 12:11 \xt Psalms 118:22-23\x* +\p +\v 12 \w They|strong="G2532"\w* \w tried|strong="G2212"\w* \w to|strong="G4314"\w* \w seize|strong="G2902"\w* \w him|strong="G3588"\w*, \w but|strong="G2532"\w* \w they|strong="G2532"\w* \w feared|strong="G5399"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w*; \w for|strong="G1063"\w* \w they|strong="G2532"\w* \w perceived|strong="G1097"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w spoke|strong="G3004"\w* \w the|strong="G2532"\w* \w parable|strong="G3850"\w* \w against|strong="G4314"\w* \w them|strong="G3588"\w*. \w They|strong="G2532"\w* left \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w went|strong="G2532"\w* away. +\v 13 \w They|strong="G2532"\w* \w sent|strong="G2532"\w* \w some|strong="G5100"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Herodians|strong="G2265"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* trap \w him|strong="G3588"\w* \w with|strong="G4314"\w* \w words|strong="G3056"\w*. +\v 14 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w come|strong="G2064"\w*, \w they|strong="G2532"\w* \w asked|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Teacher|strong="G1320"\w*, \w we|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* honest, \w and|strong="G2532"\w* don’\w t|strong="G3588"\w* \w defer|strong="G3199"\w* \w to|strong="G1519"\w* \w anyone|strong="G3762"\w*; \w for|strong="G1063"\w* \w you|strong="G4771"\w* aren’\w t|strong="G3588"\w* partial \w to|strong="G1519"\w* \w anyone|strong="G3762"\w*, \w but|strong="G2532"\w* \w truly|strong="G1909"\w* \w teach|strong="G1321"\w* \w the|strong="G2532"\w* \w way|strong="G3598"\w* \w of|strong="G4012"\w* \w God|strong="G2316"\w*. \w Is|strong="G1510"\w* \w it|strong="G2532"\w* \w lawful|strong="G1832"\w* \w to|strong="G1519"\w* \w pay|strong="G1325"\w* \w taxes|strong="G2778"\w* \w to|strong="G1519"\w* \w Caesar|strong="G2541"\w*, \w or|strong="G2228"\w* \w not|strong="G3756"\w*? +\v 15 \w Shall|strong="G5101"\w* \w we|strong="G1161"\w* \w give|strong="G3004"\w*, \w or|strong="G1161"\w* \w shall|strong="G5101"\w* \w we|strong="G1161"\w* \w not|strong="G3708"\w* \w give|strong="G3004"\w*?” +\p \w But|strong="G1161"\w* \w he|strong="G1161"\w*, knowing \w their|strong="G3588"\w* \w hypocrisy|strong="G5272"\w*, \w said|strong="G3004"\w* \w to|strong="G2443"\w* \w them|strong="G3588"\w*, \wj “\+w Why|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G3004"\+w* \+w test|strong="G3985"\+w* \+w me|strong="G1473"\+w*? \+w Bring|strong="G5342"\+w* \+w me|strong="G1473"\+w* \+w a|strong="G3708"\+w* \+w denarius|strong="G1220"\+w*, \+w that|strong="G2443"\+w* \+w I|strong="G1473"\+w* \+w may|strong="G2443"\+w* \+w see|strong="G3708"\+w* \+w it|strong="G1161"\+w*.”\wj* +\p +\v 16 \w They|strong="G2532"\w* \w brought|strong="G5342"\w* \w it|strong="G2532"\w*. +\p \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Whose|strong="G5101"\+w* \+w is|strong="G3588"\+w* \+w this|strong="G3778"\+w* \+w image|strong="G1504"\+w* \+w and|strong="G2532"\+w* \+w inscription|strong="G1923"\+w*?”\wj* +\p \w They|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Caesar|strong="G2541"\w*’s.” +\p +\v 17 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Give|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w Caesar|strong="G2541"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3588"\+w* \+w that|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w Caesar|strong="G2541"\+w*’s, \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w God|strong="G2316"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3588"\+w* \+w that|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w God|strong="G2316"\+w*’s.”\wj* +\p \w They|strong="G2532"\w* \w marveled|strong="G2296"\w* greatly \w at|strong="G1909"\w* \w him|strong="G3588"\w*. +\p +\v 18 \w Some|strong="G3748"\w* \w Sadducees|strong="G4523"\w*, \w who|strong="G3748"\w* \w say|strong="G3004"\w* \w that|strong="G2532"\w* \w there|strong="G2532"\w* \w is|strong="G1510"\w* \w no|strong="G3361"\w* resurrection, \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w him|strong="G1905"\w*. \w They|strong="G2532"\w* \w asked|strong="G1905"\w* \w him|strong="G1905"\w*, \w saying|strong="G3004"\w*, +\v 19 “\w Teacher|strong="G1320"\w*, \w Moses|strong="G3475"\w* \w wrote|strong="G1125"\w* \w to|strong="G2443"\w* \w us|strong="G2249"\w*, ‘\w If|strong="G1437"\w* \w a|strong="G2532"\w* \w man|strong="G5100"\w*’s brother dies \w and|strong="G2532"\w* \w leaves|strong="G2641"\w* \w a|strong="G2532"\w* \w wife|strong="G1135"\w* \w behind|strong="G2641"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w leaves|strong="G2641"\w* \w no|strong="G3361"\w* \w children|strong="G5043"\w*, \w that|strong="G3754"\w* \w his|strong="G2983"\w* brother \w should|strong="G5100"\w* \w take|strong="G2983"\w* \w his|strong="G2983"\w* \w wife|strong="G1135"\w* \w and|strong="G2532"\w* \w raise|strong="G2532"\w* \w up|strong="G1817"\w* offspring \w for|strong="G3754"\w* \w his|strong="G2983"\w* brother.’ +\v 20 \w There|strong="G2532"\w* \w were|strong="G1510"\w* \w seven|strong="G2033"\w* brothers. \w The|strong="G2532"\w* \w first|strong="G4413"\w* \w took|strong="G2983"\w* \w a|strong="G2532"\w* \w wife|strong="G1135"\w*, \w and|strong="G2532"\w* dying left \w no|strong="G3756"\w* offspring. +\v 21 \w The|strong="G2532"\w* \w second|strong="G1208"\w* \w took|strong="G2983"\w* \w her|strong="G1438"\w*, \w and|strong="G2532"\w* \w died|strong="G3588"\w*, \w leaving|strong="G2641"\w* \w no|strong="G3361"\w* \w children|strong="G4690"\w* \w behind|strong="G2641"\w* \w him|strong="G3588"\w*. \w The|strong="G2532"\w* \w third|strong="G5154"\w* \w likewise|strong="G5615"\w*; +\v 22 \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* \w took|strong="G2532"\w* \w her|strong="G3956"\w* \w and|strong="G2532"\w* left \w no|strong="G3756"\w* \w children|strong="G4690"\w*. \w Last|strong="G2078"\w* \w of|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w woman|strong="G1135"\w* \w also|strong="G2532"\w* \w died|strong="G3588"\w*. +\v 23 \w In|strong="G1722"\w* \w the|strong="G1722"\w* resurrection, \w when|strong="G3752"\w* \w they|strong="G3588"\w* rise, \w whose|strong="G5101"\w* \w wife|strong="G1135"\w* \w will|strong="G5101"\w* \w she|strong="G1063"\w* \w be|strong="G1510"\w* \w of|strong="G1722"\w* \w them|strong="G3588"\w*? \w For|strong="G1063"\w* \w the|strong="G1722"\w* \w seven|strong="G2033"\w* \w had|strong="G2192"\w* \w her|strong="G1438"\w* \w as|strong="G1722"\w* \w a|strong="G2192"\w* \w wife|strong="G1135"\w*.” +\p +\v 24 \w Jesus|strong="G2424"\w* \w answered|strong="G5346"\w* \w them|strong="G3588"\w*, \wj “Isn’\+w t|strong="G3588"\+w* \+w this|strong="G3778"\+w* \+w because|strong="G1223"\+w* \+w you|strong="G3778"\+w* \+w are|strong="G3588"\+w* \+w mistaken|strong="G4105"\+w*, \+w not|strong="G3756"\+w* \+w knowing|strong="G1492"\+w* \+w the|strong="G1223"\+w* \+w Scriptures|strong="G1124"\+w* \+w nor|strong="G3366"\+w* \+w the|strong="G1223"\+w* \+w power|strong="G1411"\+w* \+w of|strong="G1223"\+w* \+w God|strong="G2316"\+w*? \wj* +\v 25 \wj \+w For|strong="G1063"\+w* \+w when|strong="G3752"\+w* \+w they|strong="G3588"\+w* \+w will|strong="G1510"\+w* rise \+w from|strong="G1537"\+w* \+w the|strong="G1722"\+w* \+w dead|strong="G3498"\+w*, \+w they|strong="G3588"\+w* \+w neither|strong="G3777"\+w* \+w marry|strong="G1060"\+w* \+w nor|strong="G3777"\+w* \+w are|strong="G1510"\+w* \+w given|strong="G1061"\+w* \+w in|strong="G1722"\+w* \+w marriage|strong="G1061"\+w*, \+w but|strong="G1063"\+w* \+w are|strong="G1510"\+w* \+w like|strong="G5613"\+w* angels \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*. \wj* +\v 26 \wj \+w But|strong="G1161"\+w* \+w about|strong="G4012"\+w* \+w the|strong="G1722"\+w* \+w dead|strong="G3498"\+w*, \+w that|strong="G3754"\+w* \+w they|strong="G2532"\+w* \+w are|strong="G3588"\+w* \+w raised|strong="G1453"\+w*, haven’\+w t|strong="G3588"\+w* \+w you|strong="G3754"\+w* read \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w book|strong="G3588"\+w* \+w of|strong="G4012"\+w* \+w Moses|strong="G3475"\+w* \+w about|strong="G4012"\+w* \+w the|strong="G1722"\+w* Bush, \+w how|strong="G4459"\+w* \+w God|strong="G2316"\+w* \+w spoke|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* \+w the|strong="G1722"\+w* \+w God|strong="G2316"\+w* \+w of|strong="G4012"\+w* Abraham, \+w the|strong="G1722"\+w* \+w God|strong="G2316"\+w* \+w of|strong="G4012"\+w* \+w Isaac|strong="G2464"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w God|strong="G2316"\+w* \+w of|strong="G4012"\+w* \+w Jacob|strong="G2384"\+w*’?\wj*\x + \xo 12:26 \xt Exodus 3:6\x* +\v 27 \wj \+w He|strong="G1510"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w the|strong="G2316"\+w* \+w God|strong="G2316"\+w* \+w of|strong="G2316"\+w* \+w the|strong="G2316"\+w* \+w dead|strong="G3498"\+w*, \+w but|strong="G2316"\+w* \+w of|strong="G2316"\+w* \+w the|strong="G2316"\+w* \+w living|strong="G2198"\+w*. \+w You|strong="G1510"\+w* \+w are|strong="G1510"\+w* therefore \+w badly|strong="G4183"\+w* \+w mistaken|strong="G4105"\+w*.”\wj* +\p +\v 28 \w One|strong="G1520"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w scribes|strong="G1122"\w* \w came|strong="G4334"\w* \w and|strong="G2532"\w* heard \w them|strong="G3588"\w* \w questioning|strong="G1905"\w* \w together|strong="G4802"\w*, \w and|strong="G2532"\w* knowing \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* answered \w them|strong="G3588"\w* \w well|strong="G2573"\w*, \w asked|strong="G1905"\w* \w him|strong="G3588"\w*, “\w Which|strong="G3588"\w* \w commandment|strong="G1785"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* greatest \w of|strong="G2532"\w* \w all|strong="G3956"\w*?” +\p +\v 29 \w Jesus|strong="G2424"\w* answered, \wj “\+w The|strong="G3588"\+w* greatest \+w is|strong="G1510"\+w*: ‘Hear, \+w Israel|strong="G2474"\+w*, \+w the|strong="G3588"\+w* \+w Lord|strong="G2962"\+w* \+w our|strong="G2316"\+w* \+w God|strong="G2316"\+w*, \+w the|strong="G3588"\+w* \+w Lord|strong="G2962"\+w* \+w is|strong="G1510"\+w* \+w one|strong="G1520"\+w*. \wj* +\v 30 \wj \+w You|strong="G4771"\+w* \+w shall|strong="G2532"\+w* love \+w the|strong="G2532"\+w* \+w Lord|strong="G2962"\+w* \+w your|strong="G3650"\+w* \+w God|strong="G2316"\+w* \+w with|strong="G1537"\+w* \+w all|strong="G3650"\+w* \+w your|strong="G3650"\+w* \+w heart|strong="G2588"\+w*, \+w with|strong="G1537"\+w* \+w all|strong="G3650"\+w* \+w your|strong="G3650"\+w* \+w soul|strong="G5590"\+w*, \+w with|strong="G1537"\+w* \+w all|strong="G3650"\+w* \+w your|strong="G3650"\+w* \+w mind|strong="G1271"\+w*, \+w and|strong="G2532"\+w* \+w with|strong="G1537"\+w* \+w all|strong="G3650"\+w* \+w your|strong="G3650"\+w* \+w strength|strong="G2479"\+w*.’\wj*\x + \xo 12:30 \xt Deuteronomy 6:4-5\x* \wj \+w This|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w the|strong="G2532"\+w* \+w first|strong="G3588"\+w* commandment. \wj* +\v 31 \wj \+w The|strong="G3588"\+w* \+w second|strong="G1208"\+w* \+w is|strong="G1510"\+w* \+w like|strong="G5613"\+w* \+w this|strong="G3778"\+w*: ‘\+w You|strong="G4771"\+w* \+w shall|strong="G3778"\+w* love \+w your|strong="G3588"\+w* \+w neighbor|strong="G4139"\+w* \+w as|strong="G5613"\+w* \+w yourself|strong="G4572"\+w*.’\wj*\x + \xo 12:31 \xt Leviticus 19:18\x* \wj \+w There|strong="G1510"\+w* \+w is|strong="G1510"\+w* \+w no|strong="G3756"\+w* \+w other|strong="G3588"\+w* \+w commandment|strong="G1785"\+w* \+w greater|strong="G3173"\+w* \+w than|strong="G3173"\+w* \+w these|strong="G3778"\+w*.”\wj* +\p +\v 32 \w The|strong="G2532"\w* \w scribe|strong="G1122"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Truly|strong="G1909"\w*, \w teacher|strong="G1320"\w*, \w you|strong="G3754"\w* \w have|strong="G2532"\w* \w said|strong="G3004"\w* \w well|strong="G2573"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w one|strong="G1520"\w*, \w and|strong="G2532"\w* \w there|strong="G2532"\w* \w is|strong="G1510"\w* \w none|strong="G3756"\w* \w other|strong="G1520"\w* \w but|strong="G2532"\w* \w he|strong="G2532"\w*; +\v 33 \w and|strong="G2532"\w* \w to|strong="G2532"\w* love \w him|strong="G3588"\w* \w with|strong="G1537"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w heart|strong="G2588"\w*, \w with|strong="G1537"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w understanding|strong="G4907"\w*, \w all|strong="G3956"\w* \w the|strong="G2532"\w* soul, \w and|strong="G2532"\w* \w with|strong="G1537"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w strength|strong="G2479"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* love \w his|strong="G1438"\w* \w neighbor|strong="G4139"\w* \w as|strong="G5613"\w* \w himself|strong="G1438"\w*, \w is|strong="G1510"\w* \w more|strong="G2532"\w* important \w than|strong="G2532"\w* \w all|strong="G3956"\w* \w whole|strong="G3650"\w* \w burnt|strong="G3646"\w* \w offerings|strong="G3646"\w* \w and|strong="G2532"\w* \w sacrifices|strong="G2378"\w*.” +\p +\v 34 \w When|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w saw|strong="G3708"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w answered|strong="G3004"\w* wisely, \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w You|strong="G3754"\+w* \+w are|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w far|strong="G3112"\+w* \+w from|strong="G2532"\+w* \+w God|strong="G2316"\+w*’s Kingdom.”\wj* +\p \w No|strong="G3756"\w* \w one|strong="G3762"\w* \w dared|strong="G5111"\w* \w ask|strong="G1905"\w* \w him|strong="G3588"\w* \w any|strong="G3762"\w* \w question|strong="G1905"\w* \w after|strong="G2532"\w* \w that|strong="G3754"\w*. +\v 35 \w Jesus|strong="G2424"\w* \w responded|strong="G3004"\w*, \w as|strong="G1722"\w* \w he|strong="G2532"\w* \w taught|strong="G1321"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2411"\w*, \wj “\+w How|strong="G4459"\+w* \+w is|strong="G1510"\+w* \+w it|strong="G2532"\+w* \+w that|strong="G3754"\+w* \+w the|strong="G1722"\+w* \+w scribes|strong="G1122"\+w* \+w say|strong="G3004"\+w* \+w that|strong="G3754"\+w* \+w the|strong="G1722"\+w* \+w Christ|strong="G5547"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G1722"\+w* \+w son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w David|strong="G1138"\+w*? \wj* +\v 36 \wj \+w For|strong="G1722"\+w* \+w David|strong="G1138"\+w* himself \+w said|strong="G3004"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w Holy|strong="G4151"\+w* \+w Spirit|strong="G4151"\+w*,\wj* +\q1 \wj ‘\+w The|strong="G1722"\+w* \+w Lord|strong="G2962"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G3004"\+w* \+w my|strong="G1722"\+w* \+w Lord|strong="G2962"\+w*,\wj* +\q2 \wj “\+w Sit|strong="G2521"\+w* \+w at|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w right|strong="G1188"\+w* \+w hand|strong="G1188"\+w*,\wj* +\q2 \wj \+w until|strong="G2193"\+w* \+w I|strong="G1473"\+w* \+w make|strong="G5087"\+w* \+w your|strong="G2962"\+w* \+w enemies|strong="G2190"\+w* \+w the|strong="G1722"\+w* \+w footstool|strong="G5286"\+w* \+w of|strong="G1537"\+w* \+w your|strong="G2962"\+w* \+w feet|strong="G4228"\+w*.”’\wj*\x + \xo 12:36 \xt Psalms 110:1\x* +\p +\v 37 \wj \+w Therefore|strong="G2532"\+w* \+w David|strong="G1138"\+w* himself \+w calls|strong="G3004"\+w* \+w him|strong="G3588"\+w* \+w Lord|strong="G2962"\+w*, \+w so|strong="G2532"\+w* \+w how|strong="G4159"\+w* \+w can|strong="G3004"\+w* \+w he|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w his|strong="G2532"\+w* \+w son|strong="G5207"\+w*?” \wj* +\p \w The|strong="G2532"\w* common \w people|strong="G3793"\w* heard \w him|strong="G3588"\w* \w gladly|strong="G2234"\w*. +\v 38 \w In|strong="G1722"\w* \w his|strong="G1722"\w* \w teaching|strong="G1322"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “Beware \+w of|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w scribes|strong="G1122"\+w*, \+w who|strong="G3588"\+w* \+w like|strong="G2309"\+w* \+w to|strong="G2532"\+w* \+w walk|strong="G4043"\+w* \+w in|strong="G1722"\+w* \+w long|strong="G4749"\+w* \+w robes|strong="G4749"\+w*, \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w get|strong="G2532"\+w* greetings \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* marketplaces, \wj* +\v 39 \wj \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w get|strong="G2532"\+w* \+w the|strong="G1722"\+w* best \+w seats|strong="G4410"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w synagogues|strong="G4864"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* best \+w places|strong="G4411"\+w* \+w at|strong="G1722"\+w* \+w feasts|strong="G1173"\+w*, \wj* +\v 40 \wj \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w devour|strong="G2719"\+w* \+w widows|strong="G5503"\+w*’ \+w houses|strong="G3614"\+w*, \+w and|strong="G2532"\+w* \+w for|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w pretense|strong="G4392"\+w* \+w make|strong="G4336"\+w* \+w long|strong="G3117"\+w* \+w prayers|strong="G4336"\+w*. \+w These|strong="G3778"\+w* \+w will|strong="G2532"\+w* \+w receive|strong="G2983"\+w* greater \+w condemnation|strong="G2917"\+w*.”\wj* +\p +\v 41 \w Jesus|strong="G2532"\w* \w sat|strong="G2523"\w* \w down|strong="G2523"\w* \w opposite|strong="G2713"\w* \w the|strong="G2532"\w* \w treasury|strong="G1049"\w* \w and|strong="G2532"\w* \w saw|strong="G2334"\w* \w how|strong="G4459"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w* \w cast|strong="G2532"\w* \w money|strong="G5475"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w treasury|strong="G1049"\w*. \w Many|strong="G4183"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w rich|strong="G4145"\w* \w cast|strong="G2532"\w* \w in|strong="G1519"\w* \w much|strong="G4183"\w*. +\v 42 \w A|strong="G2532"\w* \w poor|strong="G4434"\w* \w widow|strong="G5503"\w* \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w she|strong="G2532"\w* \w cast|strong="G2532"\w* \w in|strong="G2532"\w* \w two|strong="G1417"\w* \w small|strong="G3016"\w* brass \w coins|strong="G3016"\w*,\f + \fr 12:42 \ft literally, lepta (or widow’s mites). Lepta are very small brass coins worth half a quadrans each, which is a quarter of the copper assarion. Lepta are worth less than 1% of an agricultural worker’s daily wages.\f* \w which|strong="G3739"\w* equal \w a|strong="G2532"\w* quadrans coin.\f + \fr 12:42 \ft A quadrans is a coin worth about 1/64 of a denarius. A denarius is about one day’s wages for an agricultural laborer.\f* +\v 43 \w He|strong="G2532"\w* \w called|strong="G3004"\w* \w his|strong="G3956"\w* \w disciples|strong="G3101"\w* \w to|strong="G1519"\w* \w himself|strong="G1519"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Most|strong="G4183"\+w* \+w certainly|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w this|strong="G3778"\+w* \+w poor|strong="G4434"\+w* \+w widow|strong="G5503"\+w* \+w gave|strong="G2532"\+w* \+w more|strong="G4119"\+w* \+w than|strong="G4183"\+w* \+w all|strong="G3956"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* giving \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w treasury|strong="G1049"\+w*, \wj* +\v 44 \wj \+w for|strong="G1063"\+w* \+w they|strong="G1161"\+w* \+w all|strong="G3956"\+w* \+w gave|strong="G3956"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w their|strong="G3956"\+w* \+w abundance|strong="G4052"\+w*, \+w but|strong="G1161"\+w* \+w she|strong="G1161"\+w*, \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w her|strong="G3956"\+w* \+w poverty|strong="G5304"\+w*, \+w gave|strong="G3956"\+w* \+w all|strong="G3956"\+w* \+w that|strong="G3588"\+w* \+w she|strong="G1161"\+w* \+w had|strong="G2192"\+w* \+w to|strong="G1161"\+w* \+w live|strong="G2192"\+w* \+w on|strong="G1537"\+w*.”\wj* +\c 13 +\p +\v 1 \w As|strong="G2532"\w* \w he|strong="G2532"\w* \w went|strong="G2532"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w temple|strong="G2411"\w*, \w one|strong="G1520"\w* \w of|strong="G1537"\w* \w his|strong="G3708"\w* \w disciples|strong="G3101"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Teacher|strong="G1320"\w*, \w see|strong="G3708"\w* \w what|strong="G3588"\w* \w kind|strong="G4217"\w* \w of|strong="G1537"\w* \w stones|strong="G3037"\w* \w and|strong="G2532"\w* \w what|strong="G3588"\w* \w kind|strong="G4217"\w* \w of|strong="G1537"\w* \w buildings|strong="G3619"\w*!” +\p +\v 2 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Do|strong="G2532"\+w* \+w you|strong="G3739"\+w* see \+w these|strong="G3778"\+w* \+w great|strong="G3173"\+w* \+w buildings|strong="G3619"\+w*? \+w There|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G2532"\+w* left \+w here|strong="G5602"\+w* \+w one|strong="G3739"\+w* \+w stone|strong="G3037"\+w* \+w on|strong="G1909"\+w* \+w another|strong="G3037"\+w*, \+w which|strong="G3739"\+w* \+w will|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G2532"\+w* thrown \+w down|strong="G2647"\+w*.”\wj* +\p +\v 3 \w As|strong="G1519"\w* \w he|strong="G2532"\w* \w sat|strong="G2521"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w Mount|strong="G3735"\w* \w of|strong="G2532"\w* \w Olives|strong="G1636"\w* \w opposite|strong="G2713"\w* \w the|strong="G2532"\w* \w temple|strong="G2411"\w*, \w Peter|strong="G4074"\w*, \w James|strong="G2385"\w*, \w John|strong="G2491"\w*, \w and|strong="G2532"\w* Andrew \w asked|strong="G1905"\w* \w him|strong="G3588"\w* \w privately|strong="G2398"\w*, +\v 4 “\w Tell|strong="G3004"\w* \w us|strong="G3004"\w*, \w when|strong="G3752"\w* \w will|strong="G5101"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w* \w be|strong="G1510"\w*? \w What|strong="G5101"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w sign|strong="G4592"\w* \w that|strong="G3588"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w* \w are|strong="G1510"\w* \w all|strong="G3956"\w* \w about|strong="G3195"\w* \w to|strong="G2532"\w* \w be|strong="G1510"\w* \w fulfilled|strong="G4931"\w*?” +\p +\v 5 \w Jesus|strong="G2424"\w*, \w answering|strong="G3361"\w*, \w began|strong="G1161"\w* \w to|strong="G3004"\w* \w tell|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Be|strong="G3361"\+w* careful \+w that|strong="G3588"\+w* \+w no|strong="G3361"\+w* \+w one|strong="G5100"\+w* \+w leads|strong="G4105"\+w* \+w you|strong="G5210"\+w* \+w astray|strong="G4105"\+w*. \wj* +\v 6 \wj \+w For|strong="G3754"\+w* \+w many|strong="G4183"\+w* \+w will|strong="G1510"\+w* \+w come|strong="G2064"\+w* \+w in|strong="G1909"\+w* \+w my|strong="G1473"\+w* \+w name|strong="G3686"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w he|strong="G2532"\+w*!’\wj*\f + \fr 13:6 \ft or, “I AM!”\f* \wj \+w and|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w lead|strong="G1510"\+w* \+w many|strong="G4183"\+w* \+w astray|strong="G4105"\+w*.\wj* +\p +\v 7 \wj “\+w When|strong="G3752"\+w* \+w you|strong="G3752"\+w* hear \+w of|strong="G2532"\+w* \+w wars|strong="G4171"\+w* \+w and|strong="G2532"\+w* rumors \+w of|strong="G2532"\+w* \+w wars|strong="G4171"\+w*, don’\+w t|strong="G3588"\+w* \+w be|strong="G1096"\+w* \+w troubled|strong="G2360"\+w*. \+w For|strong="G1161"\+w* \+w those|strong="G3588"\+w* \+w must|strong="G1163"\+w* \+w happen|strong="G1096"\+w*, \+w but|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w end|strong="G5056"\+w* \+w is|strong="G3588"\+w* \+w not|strong="G3361"\+w* \+w yet|strong="G2532"\+w*. \wj* +\v 8 \wj \+w For|strong="G1063"\+w* \+w nation|strong="G1484"\+w* \+w will|strong="G1510"\+w* \+w rise|strong="G1453"\+w* \+w against|strong="G2596"\+w* \+w nation|strong="G1484"\+w*, \+w and|strong="G2532"\+w* kingdom \+w against|strong="G2596"\+w* kingdom. \+w There|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w earthquakes|strong="G4578"\+w* \+w in|strong="G1909"\+w* \+w various|strong="G2596"\+w* \+w places|strong="G5117"\+w*. \+w There|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w famines|strong="G3042"\+w* \+w and|strong="G2532"\+w* troubles. \+w These|strong="G2532"\+w* things \+w are|strong="G1510"\+w* \+w the|strong="G2532"\+w* beginning \+w of|strong="G2532"\+w* \+w birth|strong="G5604"\+w* \+w pains|strong="G5604"\+w*. \wj* +\p +\v 9 \wj “\+w But|strong="G1161"\+w* watch \+w yourselves|strong="G1438"\+w*, \+w for|strong="G1519"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w deliver|strong="G3860"\+w* \+w you|strong="G5210"\+w* \+w up|strong="G3860"\+w* \+w to|strong="G1519"\+w* \+w councils|strong="G4892"\+w*. \+w You|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w beaten|strong="G1194"\+w* \+w in|strong="G1519"\+w* \+w synagogues|strong="G4864"\+w*. \+w You|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w stand|strong="G2476"\+w* \+w before|strong="G1909"\+w* \+w rulers|strong="G2232"\+w* \+w and|strong="G2532"\+w* kings \+w for|strong="G1519"\+w* \+w my|strong="G1473"\+w* \+w sake|strong="G1752"\+w*, \+w for|strong="G1519"\+w* \+w a|strong="G2532"\+w* \+w testimony|strong="G3142"\+w* \+w to|strong="G1519"\+w* \+w them|strong="G1438"\+w*. \wj* +\v 10 \wj \+w The|strong="G2532"\+w* \+w Good|strong="G3956"\+w* \+w News|strong="G2098"\+w* \+w must|strong="G1163"\+w* \+w first|strong="G4413"\+w* \+w be|strong="G2532"\+w* \+w preached|strong="G2784"\+w* \+w to|strong="G1519"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G2532"\+w* \+w nations|strong="G1484"\+w*. \wj* +\v 11 \wj \+w When|strong="G3752"\+w* \+w they|strong="G2532"\+w* \+w lead|strong="G1510"\+w* \+w you|strong="G5210"\+w* away \+w and|strong="G2532"\+w* \+w deliver|strong="G3860"\+w* \+w you|strong="G5210"\+w* \+w up|strong="G3860"\+w*, don’\+w t|strong="G3588"\+w* \+w be|strong="G1510"\+w* anxious \+w beforehand|strong="G4305"\+w* \+w or|strong="G2532"\+w* premeditate \+w what|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G5101"\+w* \+w say|strong="G2980"\+w*, \+w but|strong="G2532"\+w* \+w say|strong="G2980"\+w* \+w whatever|strong="G3739"\+w* \+w will|strong="G5101"\+w* \+w be|strong="G1510"\+w* \+w given|strong="G1325"\+w* \+w you|strong="G5210"\+w* \+w in|strong="G1722"\+w* \+w that|strong="G3739"\+w* \+w hour|strong="G5610"\+w*. \+w For|strong="G1063"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w you|strong="G5210"\+w* \+w who|strong="G3739"\+w* \+w speak|strong="G2980"\+w*, \+w but|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w Holy|strong="G4151"\+w* \+w Spirit|strong="G4151"\+w*.\wj* +\p +\v 12 \wj “Brother \+w will|strong="G2532"\+w* \+w deliver|strong="G3860"\+w* \+w up|strong="G3860"\+w* brother \+w to|strong="G1519"\+w* \+w death|strong="G2288"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w father|strong="G3962"\+w* \+w his|strong="G1438"\+w* \+w child|strong="G5043"\+w*. \+w Children|strong="G5043"\+w* \+w will|strong="G2532"\+w* \+w rise|strong="G1881"\+w* \+w up|strong="G3860"\+w* \+w against|strong="G1909"\+w* \+w parents|strong="G1118"\+w* \+w and|strong="G2532"\+w* \+w cause|strong="G2289"\+w* \+w them|strong="G1438"\+w* \+w to|strong="G1519"\+w* \+w be|strong="G2532"\+w* \+w put|strong="G2289"\+w* \+w to|strong="G1519"\+w* \+w death|strong="G2288"\+w*. \wj* +\v 13 \wj \+w You|strong="G1510"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w hated|strong="G3404"\+w* \+w by|strong="G1223"\+w* \+w all|strong="G3956"\+w* \+w men|strong="G3956"\+w* \+w for|strong="G1519"\+w* \+w my|strong="G3956"\+w* \+w name|strong="G3686"\+w*’s \+w sake|strong="G1223"\+w*, \+w but|strong="G1161"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w endures|strong="G5278"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w end|strong="G5056"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w saved|strong="G4982"\+w*. \wj* +\p +\v 14 \wj “\+w But|strong="G1161"\+w* \+w when|strong="G3752"\+w* \+w you|strong="G3752"\+w* \+w see|strong="G3708"\+w* \+w the|strong="G1722"\+w* abomination \+w of|strong="G1722"\+w* \+w desolation|strong="G2050"\+w*,\wj*\x + \xo 13:14 \xt Daniel 9:17; 11:31; 12:11\x* \wj spoken \+w of|strong="G1722"\+w* \+w by|strong="G1722"\+w* Daniel \+w the|strong="G1722"\+w* prophet, \+w standing|strong="G2476"\+w* \+w where|strong="G3699"\+w* \+w it|strong="G1161"\+w* \+w ought|strong="G1163"\+w* \+w not|strong="G3756"\+w*”\wj* (\w let|strong="G1161"\w* \w the|strong="G1722"\w* reader \w understand|strong="G3539"\w*), \wj “\+w then|strong="G5119"\+w* \+w let|strong="G1161"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w Judea|strong="G2449"\+w* \+w flee|strong="G5343"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G1722"\+w* \+w mountains|strong="G3735"\+w*, \wj* +\v 15 \wj \+w and|strong="G1161"\+w* \+w let|strong="G1161"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G1537"\+w* \+w housetop|strong="G1430"\+w* \+w not|strong="G3361"\+w* \+w go|strong="G1525"\+w* \+w down|strong="G2597"\+w*, \+w nor|strong="G3366"\+w* \+w enter|strong="G1525"\+w* \+w in|strong="G1909"\+w*, \+w to|strong="G1909"\+w* \+w take|strong="G1161"\+w* \+w anything|strong="G5100"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w his|strong="G1909"\+w* \+w house|strong="G3614"\+w*. \wj* +\v 16 \wj \+w Let|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1519"\+w* \+w the|strong="G2532"\+w* field \+w not|strong="G3361"\+w* \+w return|strong="G1994"\+w* \+w back|strong="G3694"\+w* \+w to|strong="G1519"\+w* \+w take|strong="G2532"\+w* \+w his|strong="G1519"\+w* \+w cloak|strong="G2440"\+w*. \wj* +\v 17 \wj \+w But|strong="G1161"\+w* \+w woe|strong="G3759"\+w* \+w to|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w with|strong="G1722"\+w* \+w child|strong="G1064"\+w* \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* nurse \+w babies|strong="G2337"\+w* \+w in|strong="G1722"\+w* \+w those|strong="G3588"\+w* \+w days|strong="G2250"\+w*! \wj* +\v 18 \wj \+w Pray|strong="G4336"\+w* \+w that|strong="G2443"\+w* \+w your|strong="G1096"\+w* flight won’t \+w be|strong="G1096"\+w* \+w in|strong="G1096"\+w* \+w the|strong="G1161"\+w* \+w winter|strong="G5494"\+w*. \wj* +\v 19 \wj \+w For|strong="G1063"\+w* \+w in|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w days|strong="G2250"\+w* \+w there|strong="G2532"\+w* \+w will|strong="G2316"\+w* \+w be|strong="G1096"\+w* oppression, \+w such|strong="G5108"\+w* \+w as|strong="G2532"\+w* \+w there|strong="G2532"\+w* \+w has|strong="G2316"\+w* \+w not|strong="G3756"\+w* \+w been|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w like|strong="G5108"\+w* \+w from|strong="G2532"\+w* \+w the|strong="G2532"\+w* beginning \+w of|strong="G2250"\+w* \+w the|strong="G2532"\+w* \+w creation|strong="G2937"\+w* \+w which|strong="G3739"\+w* \+w God|strong="G2316"\+w* \+w created|strong="G2936"\+w* \+w until|strong="G2193"\+w* \+w now|strong="G3568"\+w*, \+w and|strong="G2532"\+w* \+w never|strong="G3756"\+w* \+w will|strong="G2316"\+w* \+w be|strong="G1096"\+w*. \wj* +\v 20 \wj \+w Unless|strong="G1487"\+w* \+w the|strong="G2532"\+w* \+w Lord|strong="G2962"\+w* \+w had|strong="G2532"\+w* \+w shortened|strong="G2856"\+w* \+w the|strong="G2532"\+w* \+w days|strong="G2250"\+w*, \+w no|strong="G3756"\+w* \+w flesh|strong="G4561"\+w* \+w would|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w been|strong="G2532"\+w* \+w saved|strong="G4982"\+w*; \+w but|strong="G2532"\+w* \+w for|strong="G1223"\+w* \+w the|strong="G2532"\+w* \+w sake|strong="G1223"\+w* \+w of|strong="G2250"\+w* \+w the|strong="G2532"\+w* \+w chosen|strong="G1588"\+w* ones, \+w whom|strong="G3739"\+w* \+w he|strong="G2532"\+w* picked \+w out|strong="G2532"\+w*, \+w he|strong="G2532"\+w* \+w shortened|strong="G2856"\+w* \+w the|strong="G2532"\+w* \+w days|strong="G2250"\+w*. \wj* +\v 21 \wj \+w Then|strong="G2532"\+w* \+w if|strong="G1437"\+w* \+w anyone|strong="G5100"\+w* tells \+w you|strong="G5210"\+w*, ‘\+w Look|strong="G3708"\+w*, \+w here|strong="G5602"\+w* \+w is|strong="G3588"\+w* \+w the|strong="G2532"\+w* \+w Christ|strong="G5547"\+w*!’ \+w or|strong="G2532"\+w*, ‘\+w Look|strong="G3708"\+w*, \+w there|strong="G1563"\+w*!’ don’\+w t|strong="G3588"\+w* \+w believe|strong="G4100"\+w* \+w it|strong="G2532"\+w*. \wj* +\v 22 \wj \+w For|strong="G1063"\+w* \+w false|strong="G5578"\+w* \+w christs|strong="G5580"\+w* \+w and|strong="G2532"\+w* \+w false|strong="G5578"\+w* \+w prophets|strong="G5578"\+w* \+w will|strong="G2532"\+w* \+w arise|strong="G1453"\+w* \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w show|strong="G4160"\+w* \+w signs|strong="G4592"\+w* \+w and|strong="G2532"\+w* \+w wonders|strong="G5059"\+w*, \+w that|strong="G3588"\+w* \+w they|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w lead|strong="G2532"\+w* astray, \+w if|strong="G1487"\+w* \+w possible|strong="G1415"\+w*, \+w even|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w chosen|strong="G1588"\+w* ones. \wj* +\v 23 \wj \+w But|strong="G1161"\+w* \+w you|strong="G5210"\+w* watch.\wj* +\p \wj “Behold, \+w I|strong="G1161"\+w* \+w have|strong="G5210"\+w* \+w told|strong="G4302"\+w* \+w you|strong="G5210"\+w* \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w* beforehand. \wj* +\v 24 \wj \+w But|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w those|strong="G3588"\+w* \+w days|strong="G2250"\+w*, \+w after|strong="G3326"\+w* \+w that|strong="G3588"\+w* oppression, \+w the|strong="G1722"\+w* \+w sun|strong="G2246"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w darkened|strong="G4654"\+w*, \+w the|strong="G1722"\+w* \+w moon|strong="G4582"\+w* \+w will|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w give|strong="G1325"\+w* \+w its|strong="G1325"\+w* \+w light|strong="G5338"\+w*, \wj* +\v 25 \wj \+w the|strong="G1722"\+w* stars \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w falling|strong="G4098"\+w* \+w from|strong="G1537"\+w* \+w the|strong="G1722"\+w* \+w sky|strong="G3772"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w powers|strong="G1411"\+w* \+w that|strong="G3588"\+w* \+w are|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w heavens|strong="G3772"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w shaken|strong="G4531"\+w*.\wj*\x + \xo 13:25 \xt Isaiah 13:10; 34:4\x* +\v 26 \wj \+w Then|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w see|strong="G3708"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w* \+w coming|strong="G2064"\+w* \+w in|strong="G1722"\+w* \+w clouds|strong="G3507"\+w* \+w with|strong="G3326"\+w* \+w great|strong="G4183"\+w* \+w power|strong="G1411"\+w* \+w and|strong="G2532"\+w* \+w glory|strong="G1391"\+w*. \wj* +\v 27 \wj \+w Then|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* send \+w out|strong="G1537"\+w* \+w his|strong="G2532"\+w* angels, \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w gather|strong="G1996"\+w* \+w together|strong="G1996"\+w* \+w his|strong="G2532"\+w* \+w chosen|strong="G1588"\+w* ones \+w from|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w four|strong="G5064"\+w* winds, \+w from|strong="G1537"\+w* \+w the|strong="G2532"\+w* ends \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w earth|strong="G1093"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* ends \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w sky|strong="G3772"\+w*.\wj* +\p +\v 28 \wj “\+w Now|strong="G1161"\+w* \+w from|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w fig|strong="G4808"\+w* \+w tree|strong="G4808"\+w*, \+w learn|strong="G3129"\+w* \+w this|strong="G3588"\+w* \+w parable|strong="G3850"\+w*. \+w When|strong="G3752"\+w* \+w the|strong="G2532"\+w* \+w branch|strong="G2798"\+w* \+w has|strong="G1096"\+w* \+w now|strong="G1161"\+w* \+w become|strong="G1096"\+w* tender \+w and|strong="G2532"\+w* produces \+w its|strong="G1631"\+w* \+w leaves|strong="G5444"\+w*, \+w you|strong="G3752"\+w* \+w know|strong="G1097"\+w* \+w that|strong="G3754"\+w* \+w the|strong="G2532"\+w* \+w summer|strong="G2330"\+w* \+w is|strong="G1510"\+w* \+w near|strong="G1451"\+w*; \wj* +\v 29 \wj \+w even|strong="G2532"\+w* \+w so|strong="G3779"\+w* \+w you|strong="G5210"\+w* \+w also|strong="G2532"\+w*, \+w when|strong="G3752"\+w* \+w you|strong="G5210"\+w* \+w see|strong="G3708"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* \+w coming|strong="G1096"\+w* \+w to|strong="G2532"\+w* \+w pass|strong="G1096"\+w*, \+w know|strong="G1097"\+w* \+w that|strong="G3754"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w near|strong="G1451"\+w*, \+w at|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w doors|strong="G2374"\+w*. \wj* +\v 30 \wj Most \+w certainly|strong="G3756"\+w* \+w I|strong="G3739"\+w* \+w say|strong="G3004"\+w* \+w to|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w this|strong="G3778"\+w* \+w generation|strong="G1074"\+w*\wj*\f + \fr 13:30 \ft The word translated “generation” (genea) could also be translated “race”, “family”, or “people”.\f* \wj \+w will|strong="G3739"\+w* \+w not|strong="G3756"\+w* \+w pass|strong="G1096"\+w* \+w away|strong="G3928"\+w* \+w until|strong="G3360"\+w* \+w all|strong="G3956"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3956"\+w* \+w happen|strong="G1096"\+w*. \wj* +\v 31 \wj \+w Heaven|strong="G3772"\+w* \+w and|strong="G2532"\+w* \+w earth|strong="G1093"\+w* \+w will|strong="G2532"\+w* \+w pass|strong="G3928"\+w* \+w away|strong="G3928"\+w*, \+w but|strong="G1161"\+w* \+w my|strong="G1473"\+w* \+w words|strong="G3056"\+w* \+w will|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w pass|strong="G3928"\+w* \+w away|strong="G3928"\+w*. \wj* +\p +\v 32 \wj “\+w But|strong="G1161"\+w* \+w of|strong="G5207"\+w* \+w that|strong="G3588"\+w* \+w day|strong="G2250"\+w* \+w or|strong="G2228"\+w* \+w that|strong="G3588"\+w* \+w hour|strong="G5610"\+w* \+w no|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w knows|strong="G1492"\+w*—\+w not|strong="G3361"\+w* \+w even|strong="G3761"\+w* \+w the|strong="G1722"\+w* angels \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*, \+w nor|strong="G3761"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w*, \+w but|strong="G1161"\+w* \+w only|strong="G1487"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w*. \wj* +\v 33 \wj Watch, keep alert, \+w and|strong="G3588"\+w* pray; \+w for|strong="G1063"\+w* \+w you|strong="G1510"\+w* don’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w* \+w when|strong="G1492"\+w* \+w the|strong="G3588"\+w* \+w time|strong="G2540"\+w* \+w is|strong="G1510"\+w*. \wj* +\p +\v 34 \wj “\+w It|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w like|strong="G5613"\+w* \+w a|strong="G5613"\+w* \+w man|strong="G1538"\+w* traveling \+w to|strong="G2443"\+w* \+w another|strong="G3588"\+w* country, \+w having|strong="G2532"\+w* left \+w his|strong="G2532"\+w* \+w house|strong="G3614"\+w* \+w and|strong="G2532"\+w* \+w given|strong="G1325"\+w* \+w authority|strong="G1849"\+w* \+w to|strong="G2443"\+w* \+w his|strong="G2532"\+w* \+w servants|strong="G1401"\+w*, \+w and|strong="G2532"\+w* \+w to|strong="G2443"\+w* \+w each|strong="G1538"\+w* \+w one|strong="G1538"\+w* \+w his|strong="G2532"\+w* \+w work|strong="G2041"\+w*, \+w and|strong="G2532"\+w* \+w also|strong="G2532"\+w* \+w commanded|strong="G1781"\+w* \+w the|strong="G2532"\+w* \+w doorkeeper|strong="G2377"\+w* \+w to|strong="G2443"\+w* \+w keep|strong="G1127"\+w* \+w watch|strong="G1127"\+w*. \wj* +\v 35 \wj \+w Watch|strong="G1127"\+w* \+w therefore|strong="G3767"\+w*, \+w for|strong="G1063"\+w* \+w you|strong="G3767"\+w* don’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w* \+w when|strong="G1492"\+w* \+w the|strong="G3588"\+w* \+w lord|strong="G2962"\+w* \+w of|strong="G2962"\+w* \+w the|strong="G3588"\+w* \+w house|strong="G3614"\+w* \+w is|strong="G3588"\+w* \+w coming|strong="G2064"\+w*—\+w whether|strong="G2228"\+w* \+w at|strong="G3756"\+w* \+w evening|strong="G3796"\+w*, \+w or|strong="G2228"\+w* \+w at|strong="G3756"\+w* \+w midnight|strong="G3317"\+w*, \+w or|strong="G2228"\+w* \+w when|strong="G1492"\+w* \+w the|strong="G3588"\+w* rooster crows, \+w or|strong="G2228"\+w* \+w in|strong="G3756"\+w* \+w the|strong="G3588"\+w* \+w morning|strong="G4404"\+w*; \wj* +\v 36 \wj \+w lest|strong="G3361"\+w*, \+w coming|strong="G2064"\+w* \+w suddenly|strong="G1810"\+w*, \+w he|strong="G2064"\+w* \+w might|strong="G5210"\+w* \+w find|strong="G2147"\+w* \+w you|strong="G5210"\+w* \+w sleeping|strong="G2518"\+w*. \wj* +\v 37 \wj \+w What|strong="G3739"\+w* \+w I|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w I|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w all|strong="G3956"\+w*: \+w Watch|strong="G1127"\+w*!”\wj* +\c 14 +\p +\v 1 \w It|strong="G2532"\w* \w was|strong="G1510"\w* \w now|strong="G1161"\w* \w two|strong="G1417"\w* \w days|strong="G2250"\w* \w before|strong="G1722"\w* \w the|strong="G1722"\w* \w Passover|strong="G3957"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* Feast \w of|strong="G2250"\w* Unleavened Bread, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w scribes|strong="G1122"\w* \w sought|strong="G2212"\w* \w how|strong="G4459"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w seize|strong="G2902"\w* \w him|strong="G3588"\w* \w by|strong="G1722"\w* deception \w and|strong="G2532"\w* kill \w him|strong="G3588"\w*. +\v 2 \w For|strong="G1063"\w* \w they|strong="G3588"\w* \w said|strong="G3004"\w*, “\w Not|strong="G3361"\w* \w during|strong="G1722"\w* \w the|strong="G1722"\w* \w feast|strong="G1859"\w*, \w because|strong="G1063"\w* \w there|strong="G1063"\w* \w might|strong="G2351"\w* \w be|strong="G1510"\w* \w a|strong="G1722"\w* \w riot|strong="G2351"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w*.” +\p +\v 3 \w While|strong="G1722"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w at|strong="G1722"\w* Bethany, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w house|strong="G3614"\w* \w of|strong="G2532"\w* \w Simon|strong="G4613"\w* \w the|strong="G1722"\w* \w leper|strong="G3015"\w*, \w as|strong="G1722"\w* \w he|strong="G2532"\w* \w sat|strong="G2532"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* table, \w a|strong="G2192"\w* \w woman|strong="G1135"\w* \w came|strong="G2064"\w* \w having|strong="G2192"\w* \w an|strong="G2192"\w* alabaster jar \w of|strong="G2532"\w* \w ointment|strong="G3464"\w* \w of|strong="G2532"\w* \w pure|strong="G4101"\w* \w nard|strong="G3487"\w*—\w very|strong="G2532"\w* \w costly|strong="G4185"\w*. \w She|strong="G2532"\w* \w broke|strong="G4937"\w* \w the|strong="G1722"\w* jar \w and|strong="G2532"\w* \w poured|strong="G2532"\w* \w it|strong="G2532"\w* \w over|strong="G1722"\w* \w his|strong="G1722"\w* \w head|strong="G2776"\w*. +\v 4 \w But|strong="G1161"\w* \w there|strong="G1161"\w* \w were|strong="G1510"\w* \w some|strong="G5100"\w* \w who|strong="G5101"\w* \w were|strong="G1510"\w* indignant \w among|strong="G1519"\w* \w themselves|strong="G1438"\w*, saying, “\w Why|strong="G5101"\w* \w has|strong="G5101"\w* \w this|strong="G3778"\w* \w ointment|strong="G3464"\w* \w been|strong="G1510"\w* wasted? +\v 5 \w For|strong="G1063"\w* \w this|strong="G3778"\w* \w might|strong="G1410"\w* \w have|strong="G2532"\w* \w been|strong="G2532"\w* \w sold|strong="G4097"\w* \w for|strong="G1063"\w* \w more|strong="G2532"\w* \w than|strong="G2532"\w* \w three|strong="G5145"\w* \w hundred|strong="G5145"\w* \w denarii|strong="G1220"\w*\f + \fr 14:5 \ft 300 denarii was about a year’s wages for an agricultural laborer. \f* \w and|strong="G2532"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w poor|strong="G4434"\w*.” \w So|strong="G2532"\w* \w they|strong="G2532"\w* grumbled \w against|strong="G1690"\w* \w her|strong="G1325"\w*. +\p +\v 6 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w*, \wj “Leave \+w her|strong="G1438"\+w* \+w alone|strong="G1438"\+w*. \+w Why|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G1722"\+w* \+w trouble|strong="G2873"\+w* \+w her|strong="G1438"\+w*? \+w She|strong="G1161"\+w* \+w has|strong="G5101"\+w* \+w done|strong="G2038"\+w* \+w a|strong="G1722"\+w* \+w good|strong="G2570"\+w* \+w work|strong="G2041"\+w* \+w for|strong="G1161"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 7 \wj \+w For|strong="G1063"\+w* \+w you|strong="G3752"\+w* \+w always|strong="G3842"\+w* \+w have|strong="G2192"\+w* \+w the|strong="G2532"\+w* \+w poor|strong="G4434"\+w* \+w with|strong="G3326"\+w* \+w you|strong="G3752"\+w*, \+w and|strong="G2532"\+w* \+w whenever|strong="G3752"\+w* \+w you|strong="G3752"\+w* \+w want|strong="G2309"\+w* \+w to|strong="G2532"\+w*, \+w you|strong="G3752"\+w* \+w can|strong="G1410"\+w* \+w do|strong="G4160"\+w* \+w them|strong="G3588"\+w* \+w good|strong="G2095"\+w*; \+w but|strong="G1161"\+w* \+w you|strong="G3752"\+w* \+w will|strong="G2309"\+w* \+w not|strong="G3756"\+w* \+w always|strong="G3842"\+w* \+w have|strong="G2192"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 8 \wj \+w She|strong="G3739"\+w* \+w has|strong="G2192"\+w* \+w done|strong="G4160"\+w* \+w what|strong="G3739"\+w* \+w she|strong="G3739"\+w* \+w could|strong="G2192"\+w*. \+w She|strong="G3739"\+w* \+w has|strong="G2192"\+w* \+w anointed|strong="G3462"\+w* \+w my|strong="G1473"\+w* \+w body|strong="G4983"\+w* \+w beforehand|strong="G4301"\+w* \+w for|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w burying|strong="G1780"\+w*. \wj* +\v 9 \wj Most \+w certainly|strong="G2532"\+w* \+w I|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w wherever|strong="G3699"\+w* \+w this|strong="G3778"\+w* \+w Good|strong="G3588"\+w* \+w News|strong="G2098"\+w* \+w may|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w preached|strong="G2784"\+w* \+w throughout|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w whole|strong="G3650"\+w* \+w world|strong="G2889"\+w*, \+w that|strong="G3739"\+w* \+w which|strong="G3739"\+w* \+w this|strong="G3778"\+w* \+w woman|strong="G3778"\+w* \+w has|strong="G3739"\+w* \+w done|strong="G4160"\+w* \+w will|strong="G2532"\+w* \+w also|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w spoken|strong="G2980"\+w* \+w of|strong="G2532"\+w* \+w for|strong="G1519"\+w* \+w a|strong="G2532"\+w* \+w memorial|strong="G3422"\+w* \+w of|strong="G2532"\+w* \+w her|strong="G1437"\+w*.”\wj* +\p +\v 10 \w Judas|strong="G2455"\w* \w Iscariot|strong="G2469"\w*, \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w one|strong="G1520"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w twelve|strong="G1427"\w*, \w went|strong="G2532"\w* away \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests, \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w deliver|strong="G3860"\w* \w him|strong="G3588"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*. +\v 11 \w They|strong="G2532"\w*, \w when|strong="G1161"\w* \w they|strong="G2532"\w* heard \w it|strong="G2532"\w*, \w were|strong="G3588"\w* \w glad|strong="G5463"\w*, \w and|strong="G2532"\w* \w promised|strong="G1861"\w* \w to|strong="G2532"\w* \w give|strong="G1325"\w* \w him|strong="G3588"\w* money. \w He|strong="G2532"\w* \w sought|strong="G2212"\w* \w how|strong="G4459"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w conveniently|strong="G2122"\w* \w deliver|strong="G3860"\w* \w him|strong="G3588"\w*. +\p +\v 12 \w On|strong="G2443"\w* \w the|strong="G2532"\w* \w first|strong="G4413"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* unleavened bread, \w when|strong="G3753"\w* \w they|strong="G2532"\w* \w sacrificed|strong="G2380"\w* \w the|strong="G2532"\w* \w Passover|strong="G3957"\w*, \w his|strong="G2532"\w* \w disciples|strong="G3101"\w* \w asked|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Where|strong="G4226"\w* \w do|strong="G2532"\w* \w you|strong="G3004"\w* \w want|strong="G2309"\w* \w us|strong="G3004"\w* \w to|strong="G2443"\w* \w go|strong="G2309"\w* \w and|strong="G2532"\w* \w prepare|strong="G2090"\w* \w that|strong="G2443"\w* \w you|strong="G3004"\w* \w may|strong="G2532"\w* \w eat|strong="G2068"\w* \w the|strong="G2532"\w* \w Passover|strong="G3957"\w*?” +\p +\v 13 \w He|strong="G2532"\w* \w sent|strong="G2532"\w* \w two|strong="G1417"\w* \w of|strong="G2532"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Go|strong="G5217"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w city|strong="G4172"\+w*, \+w and|strong="G2532"\+w* \+w there|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w man|strong="G1519"\+w* carrying \+w a|strong="G2532"\+w* \+w pitcher|strong="G2765"\+w* \+w of|strong="G2532"\+w* \+w water|strong="G5204"\+w* \+w will|strong="G2532"\+w* \+w meet|strong="G3588"\+w* \+w you|strong="G5210"\+w*. Follow \+w him|strong="G3588"\+w*, \wj* +\v 14 \wj \+w and|strong="G2532"\+w* \+w wherever|strong="G3699"\+w* \+w he|strong="G2532"\+w* \+w enters|strong="G1525"\+w* \+w in|strong="G1525"\+w*, \+w tell|strong="G3004"\+w* \+w the|strong="G2532"\+w* \+w master|strong="G1320"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w house|strong="G3617"\+w*, ‘\+w The|strong="G2532"\+w* \+w Teacher|strong="G1320"\+w* \+w says|strong="G3004"\+w*, “\+w Where|strong="G3699"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w guest|strong="G2646"\+w* \+w room|strong="G2646"\+w*, \+w where|strong="G3699"\+w* \+w I|strong="G1473"\+w* \+w may|strong="G2532"\+w* \+w eat|strong="G2068"\+w* \+w the|strong="G2532"\+w* \+w Passover|strong="G3957"\+w* \+w with|strong="G3326"\+w* \+w my|strong="G1525"\+w* \+w disciples|strong="G3101"\+w*?”’ \wj* +\v 15 \wj \+w He|strong="G2532"\+w* \+w will|strong="G2532"\+w* himself \+w show|strong="G1166"\+w* \+w you|strong="G5210"\+w* \+w a|strong="G2532"\+w* \+w large|strong="G3173"\+w* upper room \+w furnished|strong="G4766"\+w* \+w and|strong="G2532"\+w* \+w ready|strong="G2092"\+w*. \+w Get|strong="G2090"\+w* \+w ready|strong="G2092"\+w* \+w for|strong="G2532"\+w* \+w us|strong="G2249"\+w* \+w there|strong="G1563"\+w*.”\wj* +\p +\v 16 \w His|strong="G1519"\w* \w disciples|strong="G3101"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w*, \w and|strong="G2532"\w* \w came|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w*, \w and|strong="G2532"\w* \w found|strong="G2147"\w* \w things|strong="G3588"\w* \w as|strong="G2531"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w prepared|strong="G2090"\w* \w the|strong="G2532"\w* \w Passover|strong="G3957"\w*. +\p +\v 17 \w When|strong="G2532"\w* \w it|strong="G2532"\w* \w was|strong="G1096"\w* \w evening|strong="G3798"\w* \w he|strong="G2532"\w* \w came|strong="G2064"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w twelve|strong="G1427"\w*. +\v 18 \w As|strong="G2532"\w* \w they|strong="G2532"\w* \w sat|strong="G2532"\w* \w and|strong="G2532"\w* \w were|strong="G3588"\w* \w eating|strong="G2068"\w*, \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w*, \wj “\+w Most|strong="G1537"\+w* \+w certainly|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w one|strong="G1520"\+w* \+w of|strong="G1537"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w betray|strong="G3860"\+w* \+w me|strong="G1473"\+w*—\+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w eats|strong="G2068"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1473"\+w*.”\wj* +\p +\v 19 \w They|strong="G2532"\w* began \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w sorrowful|strong="G3076"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w ask|strong="G3004"\w* \w him|strong="G2532"\w* \w one|strong="G1520"\w* \w by|strong="G2596"\w* \w one|strong="G1520"\w*, “\w Surely|strong="G3385"\w* \w not|strong="G3385"\w* \w I|strong="G1473"\w*?” \w And|strong="G2532"\w* \w another|strong="G2596"\w* \w said|strong="G3004"\w*, “\w Surely|strong="G3385"\w* \w not|strong="G3385"\w* \w I|strong="G1473"\w*?” +\p +\v 20 \w He|strong="G1161"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w It|strong="G1161"\+w* \+w is|strong="G3588"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G1520"\+w* \+w the|strong="G1519"\+w* \+w twelve|strong="G1427"\+w*, \+w he|strong="G1161"\+w* \+w who|strong="G3588"\+w* \+w dips|strong="G1686"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1473"\+w* \+w in|strong="G1519"\+w* \+w the|strong="G1519"\+w* dish. \wj* +\v 21 \wj \+w For|strong="G3754"\+w* \+w the|strong="G1161"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3739"\+w* \+w goes|strong="G5217"\+w* \+w as|strong="G2531"\+w* \+w it|strong="G3754"\+w* \+w is|strong="G3588"\+w* \+w written|strong="G1125"\+w* \+w about|strong="G4012"\+w* \+w him|strong="G3588"\+w*, \+w but|strong="G1161"\+w* \+w woe|strong="G3759"\+w* \+w to|strong="G3756"\+w* \+w that|strong="G3754"\+w* \+w man|strong="G3739"\+w* \+w by|strong="G1223"\+w* \+w whom|strong="G3739"\+w* \+w the|strong="G1161"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3739"\+w* \+w is|strong="G3588"\+w* \+w betrayed|strong="G3860"\+w*! \+w It|strong="G3754"\+w* \+w would|strong="G3860"\+w* \+w be|strong="G3756"\+w* \+w better|strong="G2570"\+w* \+w for|strong="G3754"\+w* \+w that|strong="G3754"\+w* \+w man|strong="G3739"\+w* \+w if|strong="G1487"\+w* \+w he|strong="G1161"\+w* \+w had|strong="G3739"\+w* \+w not|strong="G3756"\+w* \+w been|strong="G3756"\+w* \+w born|strong="G1080"\+w*.”\wj* +\p +\v 22 \w As|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w eating|strong="G2068"\w*, \w Jesus|strong="G3004"\w* \w took|strong="G2983"\w* bread, \w and|strong="G2532"\w* \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w blessed|strong="G2127"\w* \w it|strong="G2532"\w*, \w he|strong="G2532"\w* \w broke|strong="G2806"\w* \w it|strong="G2532"\w* \w and|strong="G2532"\w* \w gave|strong="G1325"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Take|strong="G2983"\+w*, \+w eat|strong="G2068"\+w*. \+w This|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w my|strong="G1325"\+w* \+w body|strong="G4983"\+w*.”\wj* +\p +\v 23 \w He|strong="G2532"\w* \w took|strong="G2983"\w* \w the|strong="G2532"\w* \w cup|strong="G4221"\w*, \w and|strong="G2532"\w* \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w given|strong="G1325"\w* \w thanks|strong="G2168"\w*, \w he|strong="G2532"\w* \w gave|strong="G1325"\w* \w to|strong="G2532"\w* \w them|strong="G1325"\w*. \w They|strong="G2532"\w* \w all|strong="G3956"\w* \w drank|strong="G4095"\w* \w of|strong="G1537"\w* \w it|strong="G2532"\w*. +\v 24 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w This|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w my|strong="G1473"\+w* blood \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* new \+w covenant|strong="G1242"\+w*, \+w which|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w poured|strong="G1632"\+w* \+w out|strong="G1632"\+w* \+w for|strong="G5228"\+w* \+w many|strong="G4183"\+w*. \wj* +\v 25 \wj \+w Most|strong="G2316"\+w* \+w certainly|strong="G3756"\+w* \+w I|strong="G3754"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w I|strong="G3754"\+w* \+w will|strong="G2316"\+w* \+w no|strong="G3756"\+w* \+w more|strong="G3765"\+w* \+w drink|strong="G4095"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1722"\+w* \+w fruit|strong="G1081"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1722"\+w* vine \+w until|strong="G2193"\+w* \+w that|strong="G3754"\+w* \+w day|strong="G2250"\+w* \+w when|strong="G3752"\+w* \+w I|strong="G3754"\+w* \+w drink|strong="G4095"\+w* \+w it|strong="G3754"\+w* anew \+w in|strong="G1722"\+w* \+w God|strong="G2316"\+w*’s Kingdom.”\wj* +\v 26 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* sung \w a|strong="G2532"\w* \w hymn|strong="G5214"\w*, \w they|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w Mount|strong="G3735"\w* \w of|strong="G2532"\w* \w Olives|strong="G1636"\w*. +\p +\v 27 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w All|strong="G3956"\+w* \+w of|strong="G2532"\+w* \+w you|strong="G3754"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w made|strong="G3956"\+w* \+w to|strong="G2532"\+w* \+w stumble|strong="G4624"\+w* \+w because|strong="G3754"\+w* \+w of|strong="G2532"\+w* \+w me|strong="G3004"\+w* tonight, \+w for|strong="G3754"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w written|strong="G1125"\+w*, ‘\+w I|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w strike|strong="G3960"\+w* \+w the|strong="G2532"\+w* \+w shepherd|strong="G4166"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w sheep|strong="G4263"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w scattered|strong="G1287"\+w*.’\wj*\x + \xo 14:27 \xt Zechariah 13:7\x* +\v 28 \wj However, \+w after|strong="G3326"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* \+w raised|strong="G1453"\+w* \+w up|strong="G1453"\+w*, \+w I|strong="G1473"\+w* \+w will|strong="G1473"\+w* \+w go|strong="G4254"\+w* \+w before|strong="G4254"\+w* \+w you|strong="G5210"\+w* \+w into|strong="G1519"\+w* \+w Galilee|strong="G1056"\+w*.” \wj* +\p +\v 29 \w But|strong="G1161"\w* \w Peter|strong="G4074"\w* \w said|strong="G5346"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Although|strong="G1161"\w* \w all|strong="G3956"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w offended|strong="G4624"\w*, \w yet|strong="G2532"\w* \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w not|strong="G3756"\w*.” +\p +\v 30 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “Most \+w certainly|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w today|strong="G4594"\+w*, \+w even|strong="G2532"\+w* \+w this|strong="G3778"\+w* \+w night|strong="G3571"\+w*, \+w before|strong="G4250"\+w* \+w the|strong="G2532"\+w* rooster \+w crows|strong="G5455"\+w* \+w twice|strong="G1364"\+w*, \+w you|strong="G4771"\+w* \+w will|strong="G2532"\+w* \+w deny|strong="G3588"\+w* \+w me|strong="G1473"\+w* \+w three|strong="G5151"\+w* \+w times|strong="G5151"\+w*.” \wj* +\p +\v 31 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w spoke|strong="G2980"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w more|strong="G4057"\w*, “\w If|strong="G1437"\w* \w I|strong="G1473"\w* \w must|strong="G1163"\w* \w die|strong="G4880"\w* \w with|strong="G2532"\w* \w you|strong="G4771"\w*, \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w not|strong="G3756"\w* \w deny|strong="G3588"\w* \w you|strong="G4771"\w*.” \w They|strong="G2532"\w* \w all|strong="G3956"\w* \w said|strong="G3004"\w* \w the|strong="G2532"\w* \w same|strong="G5615"\w* \w thing|strong="G3956"\w*. +\p +\v 32 \w They|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w a|strong="G2532"\w* \w place|strong="G5564"\w* \w which|strong="G3739"\w* \w was|strong="G3588"\w* \w named|strong="G3686"\w* \w Gethsemane|strong="G1068"\w*. \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w*, \wj “\+w Sit|strong="G2523"\+w* \+w here|strong="G5602"\+w* \+w while|strong="G2193"\+w* \+w I|strong="G3739"\+w* \+w pray|strong="G4336"\+w*.”\wj* +\v 33 \w He|strong="G2532"\w* \w took|strong="G3880"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w* \w Peter|strong="G4074"\w*, \w James|strong="G2385"\w*, \w and|strong="G2532"\w* \w John|strong="G2491"\w*, \w and|strong="G2532"\w* began \w to|strong="G2532"\w* \w be|strong="G2532"\w* greatly troubled \w and|strong="G2532"\w* \w distressed|strong="G1568"\w*. +\v 34 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w My|strong="G1473"\+w* \+w soul|strong="G5590"\+w* \+w is|strong="G1510"\+w* \+w exceedingly|strong="G1510"\+w* \+w sorrowful|strong="G4036"\+w*, \+w even|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w death|strong="G2288"\+w*. \+w Stay|strong="G3306"\+w* \+w here|strong="G5602"\+w* \+w and|strong="G2532"\+w* \+w watch|strong="G1127"\+w*.”\wj* +\p +\v 35 \w He|strong="G2532"\w* \w went|strong="G2532"\w* \w forward|strong="G4281"\w* \w a|strong="G2532"\w* \w little|strong="G3398"\w*, \w and|strong="G2532"\w* \w fell|strong="G4098"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w ground|strong="G1093"\w*, \w and|strong="G2532"\w* \w prayed|strong="G4336"\w* \w that|strong="G2443"\w* \w if|strong="G1487"\w* \w it|strong="G2532"\w* \w were|strong="G1510"\w* \w possible|strong="G1415"\w*, \w the|strong="G2532"\w* \w hour|strong="G5610"\w* \w might|strong="G2532"\w* \w pass|strong="G3928"\w* \w away|strong="G3928"\w* \w from|strong="G2532"\w* \w him|strong="G3588"\w*. +\v 36 \w He|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “Abba,\wj*\f + \fr 14:36 \ft Abba is a Greek spelling for the Aramaic word for “Father” or “Daddy” used in a familiar, respectful, and loving way. \f* \wj \+w Father|strong="G3962"\+w*, \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w are|strong="G3588"\+w* \+w possible|strong="G1415"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G4771"\+w*. \+w Please|strong="G2309"\+w* \+w remove|strong="G3911"\+w* \+w this|strong="G3778"\+w* \+w cup|strong="G4221"\+w* \+w from|strong="G2532"\+w* \+w me|strong="G1473"\+w*. However, \+w not|strong="G3756"\+w* \+w what|strong="G5101"\+w* \+w I|strong="G1473"\+w* \+w desire|strong="G2309"\+w*, \+w but|strong="G2532"\+w* \+w what|strong="G5101"\+w* \+w you|strong="G4771"\+w* \+w desire|strong="G2309"\+w*.” \wj* +\p +\v 37 \w He|strong="G2532"\w* \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w found|strong="G2147"\w* \w them|strong="G3588"\w* \w sleeping|strong="G2518"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w Peter|strong="G4074"\w*, \wj “\+w Simon|strong="G4613"\+w*, \+w are|strong="G3588"\+w* \+w you|strong="G3004"\+w* \+w sleeping|strong="G2518"\+w*? Couldn’\+w t|strong="G3588"\+w* \+w you|strong="G3004"\+w* \+w watch|strong="G1127"\+w* \+w one|strong="G1520"\+w* \+w hour|strong="G5610"\+w*? \wj* +\v 38 \wj \+w Watch|strong="G1127"\+w* \+w and|strong="G2532"\+w* \+w pray|strong="G4336"\+w*, \+w that|strong="G2443"\+w* \+w you|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w not|strong="G3361"\+w* \+w enter|strong="G1519"\+w* \+w into|strong="G1519"\+w* \+w temptation|strong="G3986"\+w*. \+w The|strong="G2532"\+w* \+w spirit|strong="G4151"\+w* \+w indeed|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w willing|strong="G4289"\+w*, \+w but|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w flesh|strong="G4561"\+w* \+w is|strong="G3588"\+w* weak.”\wj* +\p +\v 39 \w Again|strong="G3825"\w* \w he|strong="G2532"\w* \w went|strong="G2532"\w* away \w and|strong="G2532"\w* \w prayed|strong="G4336"\w*, \w saying|strong="G3004"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w* \w words|strong="G3056"\w*. +\v 40 \w Again|strong="G3825"\w* \w he|strong="G2532"\w* \w returned|strong="G5290"\w* \w and|strong="G2532"\w* \w found|strong="G2147"\w* \w them|strong="G3588"\w* \w sleeping|strong="G2518"\w*, \w for|strong="G1063"\w* \w their|strong="G1438"\w* \w eyes|strong="G3788"\w* \w were|strong="G1510"\w* \w very|strong="G2532"\w* \w heavy|strong="G2599"\w*; \w and|strong="G2532"\w* \w they|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w what|strong="G5101"\w* \w to|strong="G2532"\w* answer \w him|strong="G3588"\w*. +\v 41 \w He|strong="G2532"\w* \w came|strong="G2064"\w* \w the|strong="G2532"\w* \w third|strong="G5154"\w* \w time|strong="G5610"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Sleep|strong="G2518"\+w* \+w on|strong="G1519"\+w* \+w now|strong="G2532"\+w*, \+w and|strong="G2532"\+w* \+w take|strong="G2532"\+w* \+w your|strong="G2532"\+w* rest. \+w It|strong="G2532"\+w* \+w is|strong="G3588"\+w* enough. \+w The|strong="G2532"\+w* \+w hour|strong="G5610"\+w* \+w has|strong="G5610"\+w* \+w come|strong="G2064"\+w*. \+w Behold|strong="G2400"\+w*, \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G1519"\+w* \+w is|strong="G3588"\+w* \+w betrayed|strong="G3860"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w hands|strong="G5495"\+w* \+w of|strong="G5207"\+w* sinners. \wj* +\v 42 \wj \+w Arise|strong="G1453"\+w*! Let’s \+w get|strong="G1453"\+w* going. \+w Behold|strong="G2400"\+w*, \+w he|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w betrays|strong="G3860"\+w* \+w me|strong="G1473"\+w* \+w is|strong="G3588"\+w* \+w at|strong="G3588"\+w* \+w hand|strong="G1448"\+w*.” \wj* +\p +\v 43 \w Immediately|strong="G2112"\w*, \w while|strong="G2980"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w still|strong="G2089"\w* \w speaking|strong="G2980"\w*, \w Judas|strong="G2455"\w*, \w one|strong="G1520"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w twelve|strong="G1427"\w*, \w came|strong="G3854"\w*—\w and|strong="G2532"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w* \w a|strong="G2532"\w* \w multitude|strong="G3793"\w* \w with|strong="G3326"\w* \w swords|strong="G3162"\w* \w and|strong="G2532"\w* \w clubs|strong="G3586"\w*, \w from|strong="G3844"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests, \w the|strong="G2532"\w* \w scribes|strong="G1122"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w*. +\v 44 \w Now|strong="G1161"\w* \w he|strong="G2532"\w* \w who|strong="G3739"\w* \w betrayed|strong="G3860"\w* \w him|strong="G3588"\w* \w had|strong="G2532"\w* \w given|strong="G1325"\w* \w them|strong="G3588"\w* \w a|strong="G2532"\w* sign, \w saying|strong="G3004"\w*, “\w Whomever|strong="G3739"\w* \w I|strong="G3739"\w* \w will|strong="G1510"\w* \w kiss|strong="G5368"\w*, \w that|strong="G3739"\w* \w is|strong="G1510"\w* \w he|strong="G2532"\w*. \w Seize|strong="G2902"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w lead|strong="G1510"\w* \w him|strong="G3588"\w* away safely.” +\v 45 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w come|strong="G2064"\w*, \w immediately|strong="G2112"\w* \w he|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G2532"\w* \w him|strong="G2532"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Rabbi|strong="G4461"\w*! \w Rabbi|strong="G4461"\w*!” \w and|strong="G2532"\w* \w kissed|strong="G2705"\w* \w him|strong="G2532"\w*. +\v 46 \w They|strong="G2532"\w* \w laid|strong="G1911"\w* \w their|strong="G2532"\w* \w hands|strong="G5495"\w* \w on|strong="G5495"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w seized|strong="G2902"\w* \w him|strong="G3588"\w*. +\v 47 \w But|strong="G1161"\w* \w a|strong="G2532"\w* \w certain|strong="G5100"\w* \w one|strong="G1520"\w* \w of|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w stood|strong="G3936"\w* \w by|strong="G3936"\w* \w drew|strong="G4685"\w* \w his|strong="G2532"\w* \w sword|strong="G3162"\w* \w and|strong="G2532"\w* \w struck|strong="G3817"\w* \w the|strong="G2532"\w* \w servant|strong="G1401"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w high|strong="G2532"\w* priest, \w and|strong="G2532"\w* \w cut|strong="G2532"\w* off \w his|strong="G2532"\w* \w ear|strong="G5621"\w*. +\p +\v 48 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Have|strong="G2532"\+w* \+w you|strong="G3004"\+w* \+w come|strong="G1831"\+w* \+w out|strong="G1831"\+w*, \+w as|strong="G5613"\+w* \+w against|strong="G1909"\+w* \+w a|strong="G5613"\+w* \+w robber|strong="G3027"\+w*, \+w with|strong="G3326"\+w* \+w swords|strong="G3162"\+w* \+w and|strong="G2532"\+w* \+w clubs|strong="G3586"\+w* \+w to|strong="G2532"\+w* seize \+w me|strong="G1473"\+w*? \wj* +\v 49 \wj \+w I|strong="G1473"\+w* \+w was|strong="G1510"\+w* \+w daily|strong="G2250"\+w* \+w with|strong="G1722"\+w* \+w you|strong="G5210"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w temple|strong="G2411"\+w* \+w teaching|strong="G1321"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* didn’\+w t|strong="G3588"\+w* \+w arrest|strong="G2902"\+w* \+w me|strong="G1473"\+w*. \+w But|strong="G2532"\+w* \+w this|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w so|strong="G2443"\+w* \+w that|strong="G2443"\+w* \+w the|strong="G1722"\+w* \+w Scriptures|strong="G1124"\+w* \+w might|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w fulfilled|strong="G4137"\+w*.”\wj* +\p +\v 50 \w They|strong="G2532"\w* \w all|strong="G3956"\w* left \w him|strong="G2532"\w*, \w and|strong="G2532"\w* \w fled|strong="G5343"\w*. +\v 51 \w A|strong="G2532"\w* \w certain|strong="G5100"\w* \w young|strong="G3495"\w* \w man|strong="G5100"\w* \w followed|strong="G4870"\w* \w him|strong="G2532"\w*, \w having|strong="G2532"\w* \w a|strong="G2532"\w* \w linen|strong="G4616"\w* \w cloth|strong="G4616"\w* thrown \w around|strong="G1909"\w* \w himself|strong="G4016"\w* \w over|strong="G1909"\w* \w his|strong="G1909"\w* \w naked|strong="G1131"\w* body. \w The|strong="G2532"\w* \w young|strong="G3495"\w* \w men|strong="G3495"\w* grabbed \w him|strong="G2532"\w*, +\v 52 \w but|strong="G1161"\w* \w he|strong="G1161"\w* \w left|strong="G2641"\w* \w the|strong="G1161"\w* \w linen|strong="G4616"\w* \w cloth|strong="G4616"\w* \w and|strong="G1161"\w* \w fled|strong="G5343"\w* \w from|strong="G3588"\w* \w them|strong="G3588"\w* \w naked|strong="G1131"\w*. +\v 53 \w They|strong="G2532"\w* \w led|strong="G2424"\w* \w Jesus|strong="G2424"\w* away \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w high|strong="G3956"\w* priest. \w All|strong="G3956"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests, \w the|strong="G2532"\w* \w elders|strong="G4245"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w scribes|strong="G1122"\w* \w came|strong="G4905"\w* \w together|strong="G4905"\w* \w with|strong="G4314"\w* \w him|strong="G3588"\w*. +\p +\v 54 \w Peter|strong="G4074"\w* \w had|strong="G2532"\w* followed \w him|strong="G3588"\w* \w from|strong="G2532"\w* \w a|strong="G2532"\w* \w distance|strong="G3113"\w*, \w until|strong="G2193"\w* \w he|strong="G2532"\w* \w came|strong="G2532"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* court \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w high|strong="G2532"\w* priest. \w He|strong="G2532"\w* \w was|strong="G1510"\w* \w sitting|strong="G4775"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w officers|strong="G5257"\w*, \w and|strong="G2532"\w* \w warming|strong="G2328"\w* \w himself|strong="G2328"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w light|strong="G5457"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w fire|strong="G5457"\w*. +\v 55 \w Now|strong="G1161"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w whole|strong="G3650"\w* \w council|strong="G4892"\w* \w sought|strong="G2212"\w* witnesses \w against|strong="G2596"\w* \w Jesus|strong="G2424"\w* \w to|strong="G1519"\w* \w put|strong="G2289"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w death|strong="G2289"\w*, \w and|strong="G2532"\w* \w found|strong="G2147"\w* \w none|strong="G3756"\w*. +\v 56 \w For|strong="G1063"\w* \w many|strong="G4183"\w* \w gave|strong="G2532"\w* \w false|strong="G5576"\w* \w testimony|strong="G3141"\w* \w against|strong="G2596"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w their|strong="G2532"\w* \w testimony|strong="G3141"\w* didn’\w t|strong="G3588"\w* \w agree|strong="G1510"\w* \w with|strong="G2532"\w* \w each|strong="G2596"\w* \w other|strong="G4183"\w*. +\v 57 \w Some|strong="G5100"\w* \w stood|strong="G2532"\w* \w up|strong="G2532"\w* \w and|strong="G2532"\w* \w gave|strong="G2532"\w* \w false|strong="G5576"\w* \w testimony|strong="G5576"\w* \w against|strong="G2596"\w* \w him|strong="G2532"\w*, \w saying|strong="G3004"\w*, +\v 58 “\w We|strong="G2249"\w* heard \w him|strong="G3588"\w* \w say|strong="G3004"\w*, ‘\w I|strong="G1473"\w* \w will|strong="G2532"\w* \w destroy|strong="G2647"\w* \w this|strong="G3778"\w* \w temple|strong="G3485"\w* \w that|strong="G3754"\w* \w is|strong="G3588"\w* \w made|strong="G5499"\w* \w with|strong="G1223"\w* \w hands|strong="G5499"\w*, \w and|strong="G2532"\w* \w in|strong="G2532"\w* \w three|strong="G5140"\w* \w days|strong="G2250"\w* \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w build|strong="G3618"\w* \w another|strong="G2250"\w* \w made|strong="G5499"\w* \w without|strong="G2532"\w* \w hands|strong="G5499"\w*.’” +\v 59 \w Even|strong="G2532"\w* \w so|strong="G3779"\w*, \w their|strong="G2532"\w* \w testimony|strong="G3141"\w* didn’\w t|strong="G3588"\w* \w agree|strong="G1510"\w*. +\p +\v 60 \w The|strong="G2532"\w* \w high|strong="G2532"\w* priest \w stood|strong="G3588"\w* \w up|strong="G1519"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w middle|strong="G3319"\w*, \w and|strong="G2532"\w* \w asked|strong="G1905"\w* \w Jesus|strong="G2424"\w*, “\w Have|strong="G2532"\w* \w you|strong="G4771"\w* \w no|strong="G3756"\w* answer? \w What|strong="G5101"\w* \w is|strong="G3588"\w* \w it|strong="G2532"\w* \w which|strong="G3588"\w* \w these|strong="G3778"\w* \w testify|strong="G2649"\w* \w against|strong="G1519"\w* \w you|strong="G4771"\w*?” +\v 61 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w stayed|strong="G1510"\w* \w quiet|strong="G4623"\w*, \w and|strong="G2532"\w* \w answered|strong="G3004"\w* \w nothing|strong="G3762"\w*. \w Again|strong="G3825"\w* \w the|strong="G2532"\w* \w high|strong="G2532"\w* priest \w asked|strong="G1905"\w* \w him|strong="G3588"\w*, “\w Are|strong="G1510"\w* \w you|strong="G4771"\w* \w the|strong="G2532"\w* \w Christ|strong="G5547"\w*, \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w Blessed|strong="G2128"\w*?” +\p +\v 62 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w*, \wj “\+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w*. \+w You|strong="G3004"\+w* \+w will|strong="G1510"\+w* \+w see|strong="G3708"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G1537"\+w* \+w Man|strong="G5207"\+w* \+w sitting|strong="G2521"\+w* \+w at|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w right|strong="G1188"\+w* \+w hand|strong="G1188"\+w* \+w of|strong="G1537"\+w* \+w Power|strong="G1411"\+w*, \+w and|strong="G2532"\+w* \+w coming|strong="G2064"\+w* \+w with|strong="G3326"\+w* \+w the|strong="G2532"\+w* \+w clouds|strong="G3507"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w sky|strong="G3772"\+w*.”\wj* +\p +\v 63 \w The|strong="G1161"\w* high priest \w tore|strong="G1284"\w* \w his|strong="G2192"\w* \w clothes|strong="G5509"\w* \w and|strong="G1161"\w* \w said|strong="G3004"\w*, “\w What|strong="G5101"\w* \w further|strong="G2089"\w* \w need|strong="G5532"\w* \w have|strong="G2192"\w* \w we|strong="G1161"\w* \w of|strong="G5532"\w* \w witnesses|strong="G3144"\w*? +\v 64 \w You|strong="G5210"\w* \w have|strong="G1510"\w* heard \w the|strong="G3956"\w* blasphemy! \w What|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G5210"\w* \w think|strong="G5316"\w*?” \w They|strong="G1161"\w* \w all|strong="G3956"\w* \w condemned|strong="G2632"\w* \w him|strong="G3588"\w* \w to|strong="G1161"\w* \w be|strong="G1510"\w* worthy \w of|strong="G3956"\w* \w death|strong="G2288"\w*. +\v 65 \w Some|strong="G5100"\w* \w began|strong="G2983"\w* \w to|strong="G2532"\w* \w spit|strong="G1716"\w* \w on|strong="G3004"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w cover|strong="G4028"\w* \w his|strong="G2983"\w* \w face|strong="G4383"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w beat|strong="G2852"\w* \w him|strong="G3588"\w* \w with|strong="G2532"\w* \w fists|strong="G2852"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w tell|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Prophesy|strong="G4395"\w*!” \w The|strong="G2532"\w* \w officers|strong="G5257"\w* \w struck|strong="G2983"\w* \w him|strong="G3588"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* palms \w of|strong="G2532"\w* \w their|strong="G2532"\w* \w hands|strong="G4475"\w*. +\p +\v 66 \w As|strong="G1722"\w* \w Peter|strong="G4074"\w* \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* courtyard \w below|strong="G2736"\w*, \w one|strong="G1520"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w maids|strong="G3814"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w high|strong="G2532"\w* priest \w came|strong="G2064"\w*, +\v 67 \w and|strong="G2532"\w* \w seeing|strong="G3708"\w* \w Peter|strong="G4074"\w* \w warming|strong="G2328"\w* \w himself|strong="G2328"\w*, \w she|strong="G2532"\w* \w looked|strong="G3708"\w* \w at|strong="G1689"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w You|strong="G4771"\w* \w were|strong="G1510"\w* \w also|strong="G2532"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w Nazarene|strong="G3479"\w*, \w Jesus|strong="G2424"\w*!” +\p +\v 68 \w But|strong="G1161"\w* \w he|strong="G2532"\w* denied \w it|strong="G2532"\w*, \w saying|strong="G3004"\w*, “\w I|strong="G2532"\w* \w neither|strong="G3777"\w* \w know|strong="G1492"\w* \w nor|strong="G3777"\w* \w understand|strong="G1492"\w* \w what|strong="G5101"\w* \w you|strong="G4771"\w* \w are|strong="G3588"\w* \w saying|strong="G3004"\w*.” \w He|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w porch|strong="G4259"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* rooster \w crowed|strong="G5455"\w*. +\p +\v 69 \w The|strong="G2532"\w* \w maid|strong="G3814"\w* \w saw|strong="G3708"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* began \w again|strong="G3825"\w* \w to|strong="G2532"\w* \w tell|strong="G3004"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w stood|strong="G3936"\w* \w by|strong="G1537"\w*, “\w This|strong="G3778"\w* \w is|strong="G1510"\w* \w one|strong="G3588"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w*.” +\v 70 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w again|strong="G3825"\w* denied \w it|strong="G2532"\w*. \w After|strong="G3326"\w* \w a|strong="G2532"\w* \w little|strong="G3398"\w* \w while|strong="G3398"\w* \w again|strong="G3825"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w stood|strong="G3936"\w* \w by|strong="G1537"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w Peter|strong="G4074"\w*, “\w You|strong="G4771"\w* \w truly|strong="G1161"\w* \w are|strong="G1510"\w* \w one|strong="G3588"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w*, \w for|strong="G1063"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w a|strong="G2532"\w* \w Galilean|strong="G1057"\w*, \w and|strong="G2532"\w* \w your|strong="G2532"\w* \w speech|strong="G2981"\w* shows \w it|strong="G2532"\w*.” +\v 71 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w began|strong="G1161"\w* \w to|strong="G2532"\w* curse \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w swear|strong="G3660"\w*, “\w I|strong="G3739"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w of|strong="G2532"\w* \w whom|strong="G3739"\w* \w you|strong="G3739"\w* \w speak|strong="G3004"\w*!” +\p +\v 72 \w The|strong="G2532"\w* rooster \w crowed|strong="G5455"\w* \w the|strong="G2532"\w* \w second|strong="G1208"\w* \w time|strong="G1208"\w*. \w Peter|strong="G4074"\w* remembered \w the|strong="G2532"\w* \w words|strong="G4487"\w* \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Before|strong="G4250"\+w* \+w the|strong="G2532"\+w* rooster \+w crows|strong="G5455"\+w* \+w twice|strong="G1364"\+w*, \+w you|strong="G3754"\+w* \+w will|strong="G2532"\+w* \+w deny|strong="G3588"\+w* \+w me|strong="G1473"\+w* \+w three|strong="G5151"\+w* \+w times|strong="G5151"\+w*.”\wj* \w When|strong="G5613"\w* \w he|strong="G2532"\w* \w thought|strong="G3004"\w* \w about|strong="G5613"\w* \w that|strong="G3754"\w*, \w he|strong="G2532"\w* \w wept|strong="G2799"\w*. +\c 15 +\p +\v 1 \w Immediately|strong="G2112"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w morning|strong="G4404"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests, \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w*, \w scribes|strong="G1122"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w whole|strong="G3650"\w* \w council|strong="G4892"\w*, \w held|strong="G4160"\w* \w a|strong="G2532"\w* \w consultation|strong="G4824"\w*, \w bound|strong="G1210"\w* \w Jesus|strong="G2424"\w*, \w carried|strong="G2532"\w* \w him|strong="G3588"\w* \w away|strong="G3326"\w*, \w and|strong="G2532"\w* \w delivered|strong="G3860"\w* \w him|strong="G3588"\w* \w up|strong="G3860"\w* \w to|strong="G2532"\w* \w Pilate|strong="G4091"\w*. +\v 2 \w Pilate|strong="G4091"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w*, “\w Are|strong="G1510"\w* \w you|strong="G4771"\w* \w the|strong="G2532"\w* \w King|strong="G3588"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w*?” +\p \w He|strong="G2532"\w* \w answered|strong="G3004"\w*, \wj “\+w So|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w say|strong="G3004"\+w*.”\wj* +\p +\v 3 \w The|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w accused|strong="G2723"\w* \w him|strong="G3588"\w* \w of|strong="G2532"\w* \w many|strong="G4183"\w* \w things|strong="G3588"\w*. +\v 4 \w Pilate|strong="G4091"\w* \w again|strong="G3825"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w*, “\w Have|strong="G3588"\w* \w you|strong="G4771"\w* \w no|strong="G3756"\w* answer? \w See|strong="G3708"\w* \w how|strong="G4214"\w* \w many|strong="G4214"\w* \w things|strong="G3588"\w* \w they|strong="G1161"\w* testify \w against|strong="G3762"\w* \w you|strong="G4771"\w*!” +\p +\v 5 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w made|strong="G1161"\w* \w no|strong="G3762"\w* \w further|strong="G3765"\w* answer, \w so|strong="G1161"\w* \w that|strong="G3588"\w* \w Pilate|strong="G4091"\w* \w marveled|strong="G2296"\w*. +\p +\v 6 \w Now|strong="G1161"\w* \w at|strong="G2596"\w* \w the|strong="G1161"\w* \w feast|strong="G1859"\w* \w he|strong="G1161"\w* used \w to|strong="G2596"\w* release \w to|strong="G2596"\w* \w them|strong="G3739"\w* \w one|strong="G1520"\w* \w prisoner|strong="G1198"\w*, \w whomever|strong="G3739"\w* \w they|strong="G1161"\w* asked \w of|strong="G1520"\w* \w him|strong="G3739"\w*. +\v 7 \w There|strong="G1161"\w* \w was|strong="G1510"\w* \w one|strong="G3588"\w* \w called|strong="G3004"\w* Barabbas, \w bound|strong="G1210"\w* \w with|strong="G3326"\w* \w his|strong="G1722"\w* fellow insurgents, \w men|strong="G3588"\w* \w who|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w insurrection|strong="G4714"\w* \w had|strong="G1510"\w* \w committed|strong="G4160"\w* \w murder|strong="G5408"\w*. +\v 8 \w The|strong="G2532"\w* \w multitude|strong="G3793"\w*, \w crying|strong="G3793"\w* aloud, began \w to|strong="G2532"\w* ask \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w do|strong="G4160"\w* \w as|strong="G2531"\w* \w he|strong="G2532"\w* always \w did|strong="G4160"\w* \w for|strong="G2532"\w* \w them|strong="G3588"\w*. +\v 9 \w Pilate|strong="G4091"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w Do|strong="G3004"\w* \w you|strong="G5210"\w* \w want|strong="G2309"\w* \w me|strong="G3004"\w* \w to|strong="G3004"\w* release \w to|strong="G3004"\w* \w you|strong="G5210"\w* \w the|strong="G1161"\w* \w King|strong="G3588"\w* \w of|strong="G3588"\w* \w the|strong="G1161"\w* \w Jews|strong="G2453"\w*?” +\v 10 \w For|strong="G1063"\w* \w he|strong="G3754"\w* \w perceived|strong="G1097"\w* \w that|strong="G3754"\w* \w for|strong="G1063"\w* \w envy|strong="G5355"\w* \w the|strong="G1223"\w* chief priests \w had|strong="G3588"\w* \w delivered|strong="G3860"\w* \w him|strong="G3588"\w* \w up|strong="G3860"\w*. +\v 11 \w But|strong="G1161"\w* \w the|strong="G1161"\w* chief priests stirred up \w the|strong="G1161"\w* \w multitude|strong="G3793"\w*, \w that|strong="G2443"\w* \w he|strong="G1161"\w* \w should|strong="G3588"\w* release Barabbas \w to|strong="G2443"\w* \w them|strong="G3588"\w* \w instead|strong="G3123"\w*. +\v 12 \w Pilate|strong="G4091"\w* \w again|strong="G3825"\w* \w asked|strong="G3004"\w* \w them|strong="G3588"\w*, “\w What|strong="G5101"\w* \w then|strong="G3767"\w* \w should|strong="G3588"\w* \w I|strong="G3739"\w* \w do|strong="G4160"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w* \w whom|strong="G3739"\w* \w you|strong="G3739"\w* \w call|strong="G3004"\w* \w the|strong="G1161"\w* \w King|strong="G3588"\w* \w of|strong="G3588"\w* \w the|strong="G1161"\w* \w Jews|strong="G2453"\w*?” +\p +\v 13 \w They|strong="G1161"\w* \w cried|strong="G2896"\w* \w out|strong="G2896"\w* \w again|strong="G3825"\w*, “\w Crucify|strong="G4717"\w* \w him|strong="G3588"\w*!” +\p +\v 14 \w Pilate|strong="G4091"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, “\w Why|strong="G5101"\w*, \w what|strong="G5101"\w* \w evil|strong="G2556"\w* \w has|strong="G5101"\w* \w he|strong="G1161"\w* \w done|strong="G4160"\w*?” +\p \w But|strong="G1161"\w* \w they|strong="G1161"\w* \w cried|strong="G2896"\w* \w out|strong="G2896"\w* \w exceedingly|strong="G4057"\w*, “\w Crucify|strong="G4717"\w* \w him|strong="G3588"\w*!” +\p +\v 15 \w Pilate|strong="G4091"\w*, \w wishing|strong="G1014"\w* \w to|strong="G2443"\w* please \w the|strong="G2532"\w* \w multitude|strong="G3793"\w*, released Barabbas \w to|strong="G2443"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w handed|strong="G3860"\w* \w over|strong="G3860"\w* \w Jesus|strong="G2424"\w*, \w when|strong="G1161"\w* \w he|strong="G2532"\w* \w had|strong="G2424"\w* \w flogged|strong="G5417"\w* \w him|strong="G3588"\w*, \w to|strong="G2443"\w* \w be|strong="G2532"\w* \w crucified|strong="G4717"\w*. +\p +\v 16 \w The|strong="G2532"\w* \w soldiers|strong="G4757"\w* led \w him|strong="G3588"\w* away \w within|strong="G2080"\w* \w the|strong="G2532"\w* court, \w which|strong="G3739"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w Praetorium|strong="G4232"\w*; \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w called|strong="G4779"\w* \w together|strong="G4779"\w* \w the|strong="G2532"\w* \w whole|strong="G3650"\w* \w cohort|strong="G4686"\w*. +\v 17 \w They|strong="G2532"\w* clothed \w him|strong="G2532"\w* \w with|strong="G2532"\w* \w purple|strong="G4209"\w*; \w and|strong="G2532"\w* weaving \w a|strong="G2532"\w* \w crown|strong="G4735"\w* \w of|strong="G2532"\w* thorns, \w they|strong="G2532"\w* \w put|strong="G4060"\w* \w it|strong="G2532"\w* \w on|strong="G2532"\w* \w him|strong="G2532"\w*. +\v 18 \w They|strong="G2532"\w* began \w to|strong="G2532"\w* salute \w him|strong="G3588"\w*, “\w Hail|strong="G5463"\w*, \w King|strong="G3588"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w*!” +\v 19 \w They|strong="G2532"\w* \w struck|strong="G5180"\w* \w his|strong="G2532"\w* \w head|strong="G2776"\w* \w with|strong="G2532"\w* \w a|strong="G2532"\w* \w reed|strong="G2563"\w* \w and|strong="G2532"\w* \w spat|strong="G1716"\w* \w on|strong="G3588"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w bowing|strong="G4352"\w* \w their|strong="G2532"\w* \w knees|strong="G1119"\w*, \w did|strong="G2532"\w* homage \w to|strong="G2532"\w* \w him|strong="G3588"\w*. +\v 20 \w When|strong="G3753"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w mocked|strong="G1702"\w* \w him|strong="G3588"\w*, \w they|strong="G2532"\w* \w took|strong="G2532"\w* \w the|strong="G2532"\w* \w purple|strong="G4209"\w* \w cloak|strong="G2440"\w* \w off|strong="G1562"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w put|strong="G1746"\w* \w his|strong="G2398"\w* \w own|strong="G2398"\w* \w garments|strong="G2440"\w* \w on|strong="G1746"\w* \w him|strong="G3588"\w*. \w They|strong="G2532"\w* \w led|strong="G1806"\w* \w him|strong="G3588"\w* \w out|strong="G1806"\w* \w to|strong="G2443"\w* \w crucify|strong="G4717"\w* \w him|strong="G3588"\w*. +\p +\v 21 \w They|strong="G2532"\w* compelled \w one|strong="G5100"\w* \w passing|strong="G3855"\w* \w by|strong="G2532"\w*, \w coming|strong="G2064"\w* \w from|strong="G2064"\w* \w the|strong="G2532"\w* country, \w Simon|strong="G4613"\w* \w of|strong="G2532"\w* \w Cyrene|strong="G2956"\w*, \w the|strong="G2532"\w* \w father|strong="G3962"\w* \w of|strong="G2532"\w* Alexander \w and|strong="G2532"\w* \w Rufus|strong="G4504"\w*, \w to|strong="G2443"\w* \w go|strong="G2064"\w* \w with|strong="G2532"\w* \w them|strong="G3588"\w* \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w bear|strong="G2443"\w* \w his|strong="G2532"\w* \w cross|strong="G4716"\w*. +\v 22 \w They|strong="G2532"\w* \w brought|strong="G5342"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w place|strong="G5117"\w* \w called|strong="G3739"\w* \w Golgotha|strong="G1115"\w*, \w which|strong="G3739"\w* \w is|strong="G1510"\w*, \w being|strong="G1510"\w* \w interpreted|strong="G3177"\w*, “\w The|strong="G2532"\w* \w place|strong="G5117"\w* \w of|strong="G2532"\w* \w a|strong="G2532"\w* \w skull|strong="G2898"\w*.” +\v 23 \w They|strong="G2532"\w* offered \w him|strong="G1325"\w* \w wine|strong="G3631"\w* \w mixed|strong="G4669"\w* \w with|strong="G2532"\w* \w myrrh|strong="G4669"\w* \w to|strong="G2532"\w* \w drink|strong="G2532"\w*, \w but|strong="G1161"\w* \w he|strong="G2532"\w* didn’t \w take|strong="G2983"\w* \w it|strong="G2532"\w*. +\p +\v 24 Crucifying \w him|strong="G3588"\w*, \w they|strong="G2532"\w* \w parted|strong="G1266"\w* \w his|strong="G1909"\w* \w garments|strong="G2440"\w* \w among|strong="G1909"\w* \w them|strong="G3588"\w*, casting \w lots|strong="G2819"\w* \w on|strong="G1909"\w* \w them|strong="G3588"\w*, \w what|strong="G5101"\w* \w each|strong="G5101"\w* \w should|strong="G3588"\w* \w take|strong="G2532"\w*. +\v 25 \w It|strong="G2532"\w* \w was|strong="G1510"\w* \w the|strong="G2532"\w* \w third|strong="G5154"\w* \w hour|strong="G5610"\w*\f + \fr 15:25 \ft 9:00 a.m.\f* \w when|strong="G1161"\w* \w they|strong="G2532"\w* \w crucified|strong="G4717"\w* \w him|strong="G2532"\w*. +\v 26 \w The|strong="G2532"\w* \w superscription|strong="G1923"\w* \w of|strong="G2532"\w* \w his|strong="G2532"\w* accusation \w was|strong="G1510"\w* \w written|strong="G3588"\w* \w over|strong="G1924"\w* \w him|strong="G3588"\w*: “\w THE|strong="G2532"\w* \w KING|strong="G3588"\w* \w OF|strong="G2532"\w* \w THE|strong="G2532"\w* \w JEWS|strong="G2453"\w*.” +\v 27 \w With|strong="G4862"\w* \w him|strong="G2532"\w* \w they|strong="G2532"\w* \w crucified|strong="G4717"\w* \w two|strong="G1417"\w* \w robbers|strong="G3027"\w*, \w one|strong="G1520"\w* \w on|strong="G1537"\w* \w his|strong="G2532"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w*, \w and|strong="G2532"\w* \w one|strong="G1520"\w* \w on|strong="G1537"\w* \w his|strong="G2532"\w* \w left|strong="G2176"\w*. +\v 28 The Scripture was fulfilled which says, “He was counted with transgressors.”\f + \fr 15:28 \ft NU omits verse 28.\f* +\p +\v 29 \w Those|strong="G3588"\w* \w who|strong="G3588"\w* \w passed|strong="G3588"\w* \w by|strong="G1722"\w* blasphemed \w him|strong="G3588"\w*, \w wagging|strong="G2795"\w* \w their|strong="G2532"\w* \w heads|strong="G2776"\w* \w and|strong="G2532"\w* \w saying|strong="G3004"\w*, “\w Ha|strong="G3758"\w*! \w You|strong="G1722"\w* \w who|strong="G3588"\w* \w destroy|strong="G2647"\w* \w the|strong="G1722"\w* \w temple|strong="G3485"\w* \w and|strong="G2532"\w* \w build|strong="G3618"\w* \w it|strong="G2532"\w* \w in|strong="G1722"\w* \w three|strong="G5140"\w* \w days|strong="G2250"\w*, +\v 30 \w save|strong="G4982"\w* \w yourself|strong="G4572"\w*, \w and|strong="G2597"\w* \w come|strong="G2597"\w* \w down|strong="G2597"\w* \w from|strong="G2597"\w* \w the|strong="G3588"\w* \w cross|strong="G4716"\w*!” +\p +\v 31 \w Likewise|strong="G3668"\w*, \w also|strong="G2532"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w mocking|strong="G1702"\w* \w among|strong="G4314"\w* \w themselves|strong="G1438"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w scribes|strong="G1122"\w* \w said|strong="G3004"\w*, “\w He|strong="G2532"\w* \w saved|strong="G4982"\w* \w others|strong="G3588"\w*. \w He|strong="G2532"\w* \w can|strong="G1410"\w*’\w t|strong="G3588"\w* \w save|strong="G4982"\w* \w himself|strong="G1438"\w*. +\v 32 \w Let|strong="G2443"\w* \w the|strong="G2532"\w* \w Christ|strong="G5547"\w*, \w the|strong="G2532"\w* \w King|strong="G3588"\w* \w of|strong="G2532"\w* \w Israel|strong="G2474"\w*, \w now|strong="G3568"\w* \w come|strong="G2597"\w* \w down|strong="G2597"\w* \w from|strong="G2597"\w* \w the|strong="G2532"\w* \w cross|strong="G4716"\w*, \w that|strong="G2443"\w* \w we|strong="G2532"\w* \w may|strong="G2532"\w* \w see|strong="G3708"\w* \w and|strong="G2532"\w* \w believe|strong="G4100"\w* \w him|strong="G3588"\w*.”\f + \fr 15:32 \ft TR omits “him”\f* \w Those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w crucified|strong="G4957"\w* \w with|strong="G4862"\w* \w him|strong="G3588"\w* \w also|strong="G2532"\w* insulted \w him|strong="G3588"\w*. +\p +\v 33 \w When|strong="G2532"\w* \w the|strong="G2532"\w* \w sixth|strong="G1623"\w* \w hour|strong="G5610"\w*\f + \fr 15:33 \ft or, noon\f* \w had|strong="G2532"\w* \w come|strong="G1096"\w*, \w there|strong="G2532"\w* \w was|strong="G1096"\w* \w darkness|strong="G4655"\w* \w over|strong="G1909"\w* \w the|strong="G2532"\w* \w whole|strong="G3650"\w* \w land|strong="G1093"\w* \w until|strong="G2193"\w* \w the|strong="G2532"\w* \w ninth|strong="G1766"\w* \w hour|strong="G5610"\w*.\f + \fr 15:33 \ft 3:00 p.m.\f* +\v 34 \w At|strong="G1519"\w* \w the|strong="G2532"\w* \w ninth|strong="G1766"\w* \w hour|strong="G5610"\w* \w Jesus|strong="G2424"\w* \w cried|strong="G2532"\w* \w with|strong="G2532"\w* \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, \w saying|strong="G3173"\w*, \wj “\+w Eloi|strong="G1682"\+w*, \+w Eloi|strong="G1682"\+w*, \+w lama|strong="G2982"\+w* \+w sabachthani|strong="G4518"\+w*?”\wj* \w which|strong="G3739"\w* \w is|strong="G1510"\w*, \w being|strong="G1510"\w* \w interpreted|strong="G3177"\w*, \wj “\+w My|strong="G1473"\+w* \+w God|strong="G2316"\+w*, \+w my|strong="G1473"\+w* \+w God|strong="G2316"\+w*, \+w why|strong="G5101"\+w* \+w have|strong="G2532"\+w* \+w you|strong="G3739"\+w* \+w forsaken|strong="G1459"\+w* \+w me|strong="G1473"\+w*?”\wj* \x + \xo 15:34 \xt Psalms 22:1\x* +\p +\v 35 \w Some|strong="G5100"\w* \w of|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w stood|strong="G3936"\w* \w by|strong="G3936"\w*, \w when|strong="G2532"\w* \w they|strong="G2532"\w* heard \w it|strong="G2532"\w*, \w said|strong="G3004"\w*, “\w Behold|strong="G2396"\w*, \w he|strong="G2532"\w* \w is|strong="G3588"\w* \w calling|strong="G5455"\w* \w Elijah|strong="G2243"\w*.” +\p +\v 36 \w One|strong="G5100"\w* \w ran|strong="G5143"\w*, \w and|strong="G2532"\w* \w filling|strong="G1072"\w* \w a|strong="G2532"\w* \w sponge|strong="G4699"\w* \w full|strong="G1072"\w* \w of|strong="G2532"\w* \w vinegar|strong="G3690"\w*, \w put|strong="G4060"\w* \w it|strong="G2532"\w* \w on|strong="G1161"\w* \w a|strong="G2532"\w* \w reed|strong="G2563"\w* \w and|strong="G2532"\w* \w gave|strong="G4222"\w* \w it|strong="G2532"\w* \w to|strong="G2532"\w* \w him|strong="G3708"\w* \w to|strong="G2532"\w* \w drink|strong="G4222"\w*, \w saying|strong="G3004"\w*, “\w Let|strong="G1161"\w* \w him|strong="G3708"\w* \w be|strong="G2532"\w*. \w Let|strong="G1161"\w*’s \w see|strong="G3708"\w* \w whether|strong="G1487"\w* \w Elijah|strong="G2243"\w* \w comes|strong="G2064"\w* \w to|strong="G2532"\w* \w take|strong="G2507"\w* \w him|strong="G3708"\w* \w down|strong="G2507"\w*.” +\p +\v 37 \w Jesus|strong="G2424"\w* \w cried|strong="G2424"\w* \w out|strong="G5456"\w* \w with|strong="G3588"\w* \w a|strong="G1161"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, \w and|strong="G1161"\w* \w gave|strong="G3588"\w* up \w the|strong="G1161"\w* \w spirit|strong="G3588"\w*. +\v 38 \w The|strong="G2532"\w* \w veil|strong="G2665"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w temple|strong="G3485"\w* \w was|strong="G3588"\w* \w torn|strong="G4977"\w* \w in|strong="G1519"\w* \w two|strong="G1417"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* top \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w bottom|strong="G2736"\w*. +\v 39 \w When|strong="G1161"\w* \w the|strong="G1537"\w* \w centurion|strong="G2760"\w*, \w who|strong="G3588"\w* \w stood|strong="G3936"\w* \w by|strong="G1537"\w* opposite \w him|strong="G3588"\w*, \w saw|strong="G3708"\w* \w that|strong="G3754"\w* \w he|strong="G1161"\w* \w cried|strong="G3779"\w* \w out|strong="G1537"\w* \w like|strong="G3779"\w* \w this|strong="G3778"\w* \w and|strong="G1161"\w* \w breathed|strong="G1606"\w* \w his|strong="G3708"\w* \w last|strong="G1606"\w*, \w he|strong="G1161"\w* \w said|strong="G3004"\w*, “\w Truly|strong="G1161"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w was|strong="G1510"\w* \w the|strong="G1537"\w* \w Son|strong="G5207"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*!” +\p +\v 40 \w There|strong="G2532"\w* \w were|strong="G1510"\w* \w also|strong="G2532"\w* \w women|strong="G1135"\w* \w watching|strong="G2334"\w* \w from|strong="G2532"\w* \w afar|strong="G3113"\w*, \w among|strong="G1722"\w* \w whom|strong="G3739"\w* \w were|strong="G1510"\w* \w both|strong="G2532"\w* \w Mary|strong="G3137"\w* \w Magdalene|strong="G3094"\w* \w and|strong="G2532"\w* \w Mary|strong="G3137"\w* \w the|strong="G1722"\w* \w mother|strong="G3384"\w* \w of|strong="G2532"\w* \w James|strong="G2385"\w* \w the|strong="G1722"\w* \w less|strong="G3398"\w* \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w Joses|strong="G2500"\w*, \w and|strong="G2532"\w* \w Salome|strong="G4539"\w*; +\v 41 \w who|strong="G3739"\w*, \w when|strong="G3753"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w Galilee|strong="G1056"\w*, followed \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w served|strong="G1247"\w* \w him|strong="G3588"\w*; \w and|strong="G2532"\w* \w many|strong="G4183"\w* \w other|strong="G4183"\w* women \w who|strong="G3739"\w* \w came|strong="G2532"\w* \w up|strong="G1519"\w* \w with|strong="G1722"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w*. +\p +\v 42 \w When|strong="G2532"\w* \w evening|strong="G3798"\w* \w had|strong="G2532"\w* \w now|strong="G2532"\w* \w come|strong="G1096"\w*, \w because|strong="G1893"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w the|strong="G2532"\w* \w Preparation|strong="G3904"\w* \w Day|strong="G3904"\w*, \w that|strong="G3739"\w* \w is|strong="G1510"\w*, \w the|strong="G2532"\w* \w day|strong="G3904"\w* \w before|strong="G2532"\w* \w the|strong="G2532"\w* \w Sabbath|strong="G4315"\w*, +\v 43 \w Joseph|strong="G2501"\w* \w of|strong="G2316"\w* Arimathaea, \w a|strong="G2532"\w* \w prominent|strong="G2158"\w* \w council|strong="G1010"\w* \w member|strong="G1010"\w* \w who|strong="G3739"\w* \w also|strong="G2532"\w* himself \w was|strong="G1510"\w* \w looking|strong="G4327"\w* \w for|strong="G4314"\w* \w God|strong="G2316"\w*’s Kingdom, \w came|strong="G2064"\w*. \w He|strong="G2532"\w* \w boldly|strong="G5111"\w* \w went|strong="G2064"\w* \w in|strong="G1525"\w* \w to|strong="G4314"\w* \w Pilate|strong="G4091"\w*, \w and|strong="G2532"\w* asked \w for|strong="G4314"\w* \w Jesus|strong="G2424"\w*’ \w body|strong="G4983"\w*. +\v 44 \w Pilate|strong="G4091"\w* \w was|strong="G3588"\w* \w surprised|strong="G2296"\w* \w to|strong="G2532"\w* hear \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w already|strong="G2235"\w* \w dead|strong="G2348"\w*; \w and|strong="G2532"\w* \w summoning|strong="G4341"\w* \w the|strong="G2532"\w* \w centurion|strong="G2760"\w*, \w he|strong="G2532"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w* \w whether|strong="G1487"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w been|strong="G2532"\w* \w dead|strong="G2348"\w* \w long|strong="G3819"\w*. +\v 45 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w found|strong="G1097"\w* \w out|strong="G2532"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w centurion|strong="G2760"\w*, \w he|strong="G2532"\w* \w granted|strong="G1433"\w* \w the|strong="G2532"\w* \w body|strong="G4430"\w* \w to|strong="G2532"\w* \w Joseph|strong="G2501"\w*. +\v 46 \w He|strong="G2532"\w* bought \w a|strong="G2532"\w* \w linen|strong="G4616"\w* \w cloth|strong="G4616"\w*, \w and|strong="G2532"\w* taking \w him|strong="G3588"\w* \w down|strong="G5087"\w*, wound \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w linen|strong="G4616"\w* \w cloth|strong="G4616"\w* \w and|strong="G2532"\w* \w laid|strong="G5087"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* \w tomb|strong="G3419"\w* \w which|strong="G3739"\w* \w had|strong="G2532"\w* \w been|strong="G1510"\w* \w cut|strong="G2532"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w a|strong="G2532"\w* \w rock|strong="G4073"\w*. \w He|strong="G2532"\w* \w rolled|strong="G4351"\w* \w a|strong="G2532"\w* \w stone|strong="G3037"\w* \w against|strong="G1909"\w* \w the|strong="G1722"\w* \w door|strong="G2374"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w tomb|strong="G3419"\w*. +\v 47 \w Mary|strong="G3137"\w* \w Magdalene|strong="G3094"\w* \w and|strong="G2532"\w* \w Mary|strong="G3137"\w* \w the|strong="G2532"\w* mother \w of|strong="G2532"\w* \w Joses|strong="G2500"\w*, \w saw|strong="G2334"\w* \w where|strong="G4226"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w laid|strong="G5087"\w*. +\c 16 +\p +\v 1 \w When|strong="G2532"\w* \w the|strong="G2532"\w* \w Sabbath|strong="G4521"\w* \w was|strong="G3588"\w* \w past|strong="G1230"\w*, \w Mary|strong="G3137"\w* \w Magdalene|strong="G3094"\w*, \w and|strong="G2532"\w* \w Mary|strong="G3137"\w* \w the|strong="G2532"\w* mother \w of|strong="G2532"\w* \w James|strong="G2385"\w*, \w and|strong="G2532"\w* \w Salome|strong="G4539"\w* bought spices, \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w come|strong="G2064"\w* \w and|strong="G2532"\w* anoint \w him|strong="G3588"\w*. +\v 2 \w Very|strong="G3029"\w* \w early|strong="G4404"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w first|strong="G1520"\w* \w day|strong="G4521"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w week|strong="G4521"\w*, \w they|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w tomb|strong="G3419"\w* \w when|strong="G2532"\w* \w the|strong="G2532"\w* \w sun|strong="G2246"\w* \w had|strong="G2532"\w* \w risen|strong="G2532"\w*. +\v 3 \w They|strong="G2532"\w* \w were|strong="G3588"\w* \w saying|strong="G3004"\w* \w among|strong="G1537"\w* \w themselves|strong="G1438"\w*, “\w Who|strong="G5101"\w* \w will|strong="G5101"\w* roll away \w the|strong="G2532"\w* \w stone|strong="G3037"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w door|strong="G2374"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w tomb|strong="G3419"\w* \w for|strong="G4314"\w* \w us|strong="G3004"\w*?” +\v 4 \w for|strong="G1063"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w very|strong="G2532"\w* \w big|strong="G3173"\w*. \w Looking|strong="G2334"\w* \w up|strong="G2532"\w*, \w they|strong="G2532"\w* \w saw|strong="G2334"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w stone|strong="G3037"\w* \w was|strong="G1510"\w* \w rolled|strong="G3037"\w* back. +\p +\v 5 \w Entering|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w tomb|strong="G3419"\w*, \w they|strong="G2532"\w* \w saw|strong="G3708"\w* \w a|strong="G2532"\w* \w young|strong="G3495"\w* \w man|strong="G3495"\w* \w sitting|strong="G2521"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w right|strong="G1188"\w* \w side|strong="G1188"\w*, \w dressed|strong="G4016"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* \w white|strong="G3022"\w* \w robe|strong="G4749"\w*; \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w amazed|strong="G1568"\w*. +\v 6 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, “Don’\w t|strong="G3588"\w* \w be|strong="G1510"\w* \w amazed|strong="G1568"\w*. \w You|strong="G3004"\w* \w seek|strong="G2212"\w* \w Jesus|strong="G2424"\w*, \w the|strong="G1161"\w* \w Nazarene|strong="G3479"\w*, \w who|strong="G3588"\w* \w has|strong="G3708"\w* \w been|strong="G1510"\w* \w crucified|strong="G4717"\w*. \w He|strong="G1161"\w* \w has|strong="G3708"\w* \w risen|strong="G1453"\w*! \w He|strong="G1161"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w here|strong="G5602"\w*. \w See|strong="G3708"\w* \w the|strong="G1161"\w* \w place|strong="G5117"\w* \w where|strong="G3699"\w* \w they|strong="G1161"\w* \w laid|strong="G5087"\w* \w him|strong="G3588"\w*! +\v 7 \w But|strong="G2532"\w* \w go|strong="G5217"\w*, \w tell|strong="G3004"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w and|strong="G2532"\w* \w Peter|strong="G4074"\w*, ‘\w He|strong="G2532"\w* \w goes|strong="G5217"\w* \w before|strong="G4254"\w* \w you|strong="G5210"\w* \w into|strong="G1519"\w* \w Galilee|strong="G1056"\w*. \w There|strong="G1563"\w* \w you|strong="G5210"\w* \w will|strong="G2532"\w* \w see|strong="G3708"\w* \w him|strong="G3588"\w*, \w as|strong="G2531"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w*.’” +\p +\v 8 \w They|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w*,\f + \fr 16:8 \ft TR adds “quickly”\f* \w and|strong="G2532"\w* \w fled|strong="G5343"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w tomb|strong="G3419"\w*, \w for|strong="G1063"\w* \w trembling|strong="G5156"\w* \w and|strong="G2532"\w* \w astonishment|strong="G1611"\w* \w had|strong="G2192"\w* \w come|strong="G1831"\w* \w on|strong="G4012"\w* \w them|strong="G3588"\w*. \w They|strong="G2532"\w* \w said|strong="G3004"\w* \w nothing|strong="G3762"\w* \w to|strong="G2532"\w* \w anyone|strong="G3762"\w*; \w for|strong="G1063"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w afraid|strong="G5399"\w*.\f + \fr 16:8 \ft One isolated manuscript omits verses 9-20 but adds this “short ending of Mark” to the end of verse 8: \fqa They told all that had been commanded them briefly to those around Peter. After that, Jesus himself sent them out, from east to west, with the sacred and imperishable proclamation of eternal salvation.\f* +\p +\v 9 \f + \fr 16:9 \ft NU includes the text of verses 9-20, but mentions in a footnote that a few manuscripts omitted it. The translators of the World English Bible regard Mark 16:9-20 as reliable based on an overwhelming majority of textual evidence, including not only the authoritative Greek Majority Text New Testament, but also the TR and many of the manuscripts cited in the NU text.\f*\w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w he|strong="G1161"\w* \w had|strong="G3739"\w* risen \w early|strong="G4404"\w* \w on|strong="G1161"\w* \w the|strong="G1161"\w* \w first|strong="G4413"\w* \w day|strong="G4521"\w* \w of|strong="G3844"\w* \w the|strong="G1161"\w* \w week|strong="G4521"\w*, \w he|strong="G1161"\w* \w appeared|strong="G5316"\w* \w first|strong="G4413"\w* \w to|strong="G1161"\w* \w Mary|strong="G3137"\w* \w Magdalene|strong="G3094"\w*, \w from|strong="G3844"\w* \w whom|strong="G3739"\w* \w he|strong="G1161"\w* \w had|strong="G3739"\w* \w cast|strong="G1544"\w* \w out|strong="G1544"\w* \w seven|strong="G2033"\w* \w demons|strong="G1140"\w*. +\v 10 \w She|strong="G2532"\w* \w went|strong="G4198"\w* \w and|strong="G2532"\w* told \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w had|strong="G2532"\w* \w been|strong="G1096"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w*, \w as|strong="G2532"\w* \w they|strong="G2532"\w* \w mourned|strong="G3996"\w* \w and|strong="G2532"\w* \w wept|strong="G2799"\w*. +\v 11 \w When|strong="G2532"\w* \w they|strong="G2532"\w* heard \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G2532"\w* \w alive|strong="G2198"\w* \w and|strong="G2532"\w* \w had|strong="G2532"\w* \w been|strong="G2532"\w* \w seen|strong="G2300"\w* \w by|strong="G5259"\w* \w her|strong="G3754"\w*, \w they|strong="G2532"\w* disbelieved. +\p +\v 12 \w After|strong="G3326"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w he|strong="G1161"\w* \w was|strong="G3778"\w* \w revealed|strong="G5319"\w* \w in|strong="G1722"\w* \w another|strong="G2087"\w* \w form|strong="G3444"\w* \w to|strong="G1519"\w* \w two|strong="G1417"\w* \w of|strong="G1537"\w* \w them|strong="G1722"\w* \w as|strong="G1519"\w* \w they|strong="G1161"\w* \w walked|strong="G4043"\w*, \w on|strong="G1722"\w* \w their|strong="G1722"\w* \w way|strong="G4198"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* country. +\v 13 \w They|strong="G3588"\w* \w went|strong="G3588"\w* away \w and|strong="G2548"\w* told \w it|strong="G1565"\w* \w to|strong="G3588"\w* \w the|strong="G3588"\w* \w rest|strong="G3062"\w*. \w They|strong="G3588"\w* didn’\w t|strong="G3588"\w* \w believe|strong="G4100"\w* \w them|strong="G3588"\w*, \w either|strong="G3761"\w*. +\p +\v 14 \w Afterward|strong="G5305"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w revealed|strong="G5319"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w eleven|strong="G1733"\w* themselves \w as|strong="G1161"\w* \w they|strong="G2532"\w* \w sat|strong="G2532"\w* \w at|strong="G1161"\w* \w the|strong="G2532"\w* table; \w and|strong="G2532"\w* \w he|strong="G2532"\w* rebuked \w them|strong="G3588"\w* \w for|strong="G3754"\w* \w their|strong="G2532"\w* unbelief \w and|strong="G2532"\w* \w hardness|strong="G4641"\w* \w of|strong="G2532"\w* \w heart|strong="G4641"\w*, \w because|strong="G3754"\w* \w they|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w believe|strong="G4100"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w had|strong="G2532"\w* \w seen|strong="G2300"\w* \w him|strong="G3588"\w* \w after|strong="G1161"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w risen|strong="G1453"\w*. +\v 15 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Go|strong="G4198"\+w* \+w into|strong="G1519"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G2532"\+w* \+w world|strong="G2889"\+w* \+w and|strong="G2532"\+w* \+w preach|strong="G2784"\+w* \+w the|strong="G2532"\+w* \+w Good|strong="G3956"\+w* \+w News|strong="G2098"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w whole|strong="G3956"\+w* \+w creation|strong="G2937"\+w*. \wj* +\v 16 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w believes|strong="G4100"\+w* \+w and|strong="G2532"\+w* \+w is|strong="G3588"\+w* baptized \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w saved|strong="G4982"\+w*; \+w but|strong="G1161"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* disbelieves \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w condemned|strong="G2632"\+w*. \wj* +\v 17 \wj \+w These|strong="G3778"\+w* \+w signs|strong="G4592"\+w* \+w will|strong="G1473"\+w* \+w accompany|strong="G3877"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w believe|strong="G4100"\+w*: \+w in|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w name|strong="G3686"\+w* \+w they|strong="G1161"\+w* \+w will|strong="G1473"\+w* \+w cast|strong="G1544"\+w* \+w out|strong="G1544"\+w* \+w demons|strong="G1140"\+w*; \+w they|strong="G1161"\+w* \+w will|strong="G1473"\+w* \+w speak|strong="G2980"\+w* \+w with|strong="G1722"\+w* \+w new|strong="G2537"\+w* \+w languages|strong="G1100"\+w*; \wj* +\v 18 \wj \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w take|strong="G2532"\+w* \+w up|strong="G3361"\+w* \+w serpents|strong="G3789"\+w*; \+w and|strong="G2532"\+w* \+w if|strong="G2579"\+w* \+w they|strong="G2532"\+w* \+w drink|strong="G4095"\+w* \+w any|strong="G5100"\+w* \+w deadly|strong="G2286"\+w* \+w thing|strong="G5100"\+w*, \+w it|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w in|strong="G1909"\+w* \+w no|strong="G3756"\+w* \+w way|strong="G5100"\+w* hurt \+w them|strong="G1438"\+w*; \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w lay|strong="G2007"\+w* \+w hands|strong="G5495"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* sick, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w recover|strong="G2192"\+w*.”\wj* +\p +\v 19 \w So|strong="G3767"\w* \w then|strong="G3767"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*,\f + \fr 16:19 \ft NU adds “Jesus”\f* \w after|strong="G3326"\w* \w he|strong="G2532"\w* \w had|strong="G2424"\w* \w spoken|strong="G2980"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \w was|strong="G3588"\w* received \w up|strong="G1519"\w* \w into|strong="G1519"\w* \w heaven|strong="G3772"\w* \w and|strong="G2532"\w* \w sat|strong="G2523"\w* \w down|strong="G2523"\w* \w at|strong="G1519"\w* \w the|strong="G2532"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*. +\v 20 \w They|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w and|strong="G2532"\w* \w preached|strong="G2784"\w* \w everywhere|strong="G3837"\w*, \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w working|strong="G4903"\w* \w with|strong="G1223"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* confirming \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w by|strong="G1223"\w* \w the|strong="G2532"\w* \w signs|strong="G4592"\w* \w that|strong="G3588"\w* \w followed|strong="G1872"\w*. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/72-LUKeng-web.usfm b/bibles/eng-web_usfm/72-LUKeng-web.usfm new file mode 100644 index 0000000..533dfa2 --- /dev/null +++ b/bibles/eng-web_usfm/72-LUKeng-web.usfm @@ -0,0 +1,1714 @@ +\id LUK 42-LUK-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Luke +\toc1 The Good News According to Luke +\toc2 Luke +\toc3 Luk +\mt2 The Good News According to +\mt1 Luke +\c 1 +\p +\v 1 Since \w many|strong="G4183"\w* \w have|strong="G1473"\w* \w undertaken|strong="G2021"\w* \w to|strong="G1722"\w* set \w in|strong="G1722"\w* order \w a|strong="G1722"\w* narrative \w concerning|strong="G4012"\w* \w those|strong="G3588"\w* matters \w which|strong="G3588"\w* \w have|strong="G1473"\w* \w been|strong="G4183"\w* fulfilled \w among|strong="G1722"\w* \w us|strong="G2249"\w*, +\v 2 \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* beginning \w were|strong="G3588"\w* eyewitnesses \w and|strong="G2532"\w* \w servants|strong="G5257"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w delivered|strong="G3860"\w* \w them|strong="G3588"\w* \w to|strong="G2532"\w* \w us|strong="G2249"\w*, +\v 3 \w it|strong="G1380"\w* \w seemed|strong="G1380"\w* \w good|strong="G1380"\w* \w to|strong="G1380"\w* \w me|strong="G2504"\w* \w also|strong="G2504"\w*, having traced \w the|strong="G3956"\w* course \w of|strong="G3956"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* accurately from \w the|strong="G3956"\w* first, \w to|strong="G1380"\w* \w write|strong="G1125"\w* \w to|strong="G1380"\w* \w you|strong="G4771"\w* \w in|strong="G3956"\w* \w order|strong="G2517"\w*, \w most|strong="G2903"\w* \w excellent|strong="G2903"\w* \w Theophilus|strong="G2321"\w*; +\v 4 \w that|strong="G2443"\w* \w you|strong="G3739"\w* might \w know|strong="G1921"\w* \w the|strong="G3588"\w* certainty \w concerning|strong="G4012"\w* \w the|strong="G3588"\w* \w things|strong="G3588"\w* \w in|strong="G4012"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w were|strong="G3588"\w* \w instructed|strong="G2727"\w*. +\p +\v 5 \w There|strong="G2532"\w* \w was|strong="G1096"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w days|strong="G2250"\w* \w of|strong="G1537"\w* \w Herod|strong="G2264"\w*, \w the|strong="G1722"\w* \w king|strong="G3588"\w* \w of|strong="G1537"\w* \w Judea|strong="G2449"\w*, \w a|strong="G1096"\w* \w certain|strong="G5100"\w* \w priest|strong="G2409"\w* \w named|strong="G3686"\w* \w Zacharias|strong="G2197"\w*, \w of|strong="G1537"\w* \w the|strong="G1722"\w* priestly \w division|strong="G2183"\w* \w of|strong="G1537"\w* Abijah. \w He|strong="G2532"\w* \w had|strong="G2532"\w* \w a|strong="G1096"\w* \w wife|strong="G1135"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w daughters|strong="G2364"\w* \w of|strong="G1537"\w* Aaron, \w and|strong="G2532"\w* \w her|strong="G3588"\w* \w name|strong="G3686"\w* \w was|strong="G1096"\w* \w Elizabeth|strong="G1665"\w*. +\v 6 \w They|strong="G2532"\w* \w were|strong="G1510"\w* \w both|strong="G2532"\w* \w righteous|strong="G1342"\w* \w before|strong="G1722"\w* \w God|strong="G2316"\w*, \w walking|strong="G4198"\w* blamelessly \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w commandments|strong="G1785"\w* \w and|strong="G2532"\w* \w ordinances|strong="G1345"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\v 7 \w But|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w no|strong="G3756"\w* \w child|strong="G5043"\w*, \w because|strong="G2530"\w* \w Elizabeth|strong="G1665"\w* \w was|strong="G1510"\w* \w barren|strong="G4723"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w both|strong="G2532"\w* \w were|strong="G1510"\w* \w well|strong="G2532"\w* \w advanced|strong="G4260"\w* \w in|strong="G1722"\w* \w years|strong="G2250"\w*. +\p +\v 8 \w Now|strong="G1161"\w* \w while|strong="G1722"\w* \w he|strong="G1161"\w* executed \w the|strong="G1722"\w* priest’s office \w before|strong="G1722"\w* \w God|strong="G2316"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w order|strong="G5010"\w* \w of|strong="G2316"\w* \w his|strong="G1722"\w* \w division|strong="G2183"\w* +\v 9 \w according|strong="G2596"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w custom|strong="G1485"\w* \w of|strong="G2962"\w* \w the|strong="G1519"\w* priest’\w s|strong="G2962"\w* \w office|strong="G2405"\w*, \w his|strong="G1519"\w* \w lot|strong="G2975"\w* \w was|strong="G3588"\w* \w to|strong="G1519"\w* \w enter|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w temple|strong="G3485"\w* \w of|strong="G2962"\w* \w the|strong="G1519"\w* \w Lord|strong="G2962"\w* \w and|strong="G2962"\w* \w burn|strong="G2370"\w* \w incense|strong="G2370"\w*. +\v 10 \w The|strong="G2532"\w* \w whole|strong="G3956"\w* \w multitude|strong="G4128"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w* \w were|strong="G1510"\w* \w praying|strong="G4336"\w* \w outside|strong="G1854"\w* \w at|strong="G3588"\w* \w the|strong="G2532"\w* \w hour|strong="G5610"\w* \w of|strong="G2532"\w* \w incense|strong="G2368"\w*. +\p +\v 11 \w An|strong="G1161"\w* angel \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w Lord|strong="G2962"\w* \w appeared|strong="G3708"\w* \w to|strong="G1161"\w* \w him|strong="G3588"\w*, \w standing|strong="G2476"\w* \w on|strong="G1537"\w* \w the|strong="G1537"\w* \w right|strong="G1188"\w* \w side|strong="G1188"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w altar|strong="G2379"\w* \w of|strong="G1537"\w* \w incense|strong="G2368"\w*. +\v 12 \w Zacharias|strong="G2197"\w* \w was|strong="G2532"\w* \w troubled|strong="G5015"\w* \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w him|strong="G3708"\w*, \w and|strong="G2532"\w* \w fear|strong="G5401"\w* \w fell|strong="G1968"\w* \w upon|strong="G1909"\w* \w him|strong="G3708"\w*. +\v 13 \w But|strong="G1161"\w* \w the|strong="G2532"\w* angel \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “Don’\w t|strong="G3588"\w* \w be|strong="G2532"\w* \w afraid|strong="G5399"\w*, \w Zacharias|strong="G2197"\w*, \w because|strong="G1360"\w* \w your|strong="G2532"\w* \w request|strong="G1162"\w* \w has|strong="G2532"\w* \w been|strong="G2532"\w* \w heard|strong="G1522"\w*. \w Your|strong="G2532"\w* \w wife|strong="G1135"\w*, \w Elizabeth|strong="G1665"\w*, \w will|strong="G2532"\w* \w bear|strong="G1080"\w* \w you|strong="G4771"\w* \w a|strong="G2532"\w* \w son|strong="G5207"\w*, \w and|strong="G2532"\w* \w you|strong="G4771"\w* \w shall|strong="G2532"\w* \w call|strong="G2564"\w* \w his|strong="G2532"\w* \w name|strong="G3686"\w* \w John|strong="G2491"\w*. +\v 14 \w You|strong="G4771"\w* \w will|strong="G1510"\w* \w have|strong="G2532"\w* \w joy|strong="G5479"\w* \w and|strong="G2532"\w* \w gladness|strong="G5479"\w*, \w and|strong="G2532"\w* \w many|strong="G4183"\w* \w will|strong="G1510"\w* \w rejoice|strong="G5463"\w* \w at|strong="G1909"\w* \w his|strong="G1909"\w* \w birth|strong="G1078"\w*. +\v 15 \w For|strong="G1063"\w* \w he|strong="G2532"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w great|strong="G3173"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w sight|strong="G1799"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w will|strong="G1510"\w* \w drink|strong="G4095"\w* \w no|strong="G3756"\w* \w wine|strong="G3631"\w* \w nor|strong="G2532"\w* \w strong|strong="G3173"\w* \w drink|strong="G4095"\w*. \w He|strong="G2532"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w filled|strong="G4130"\w* \w with|strong="G1537"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*, \w even|strong="G2532"\w* \w from|strong="G1537"\w* \w his|strong="G2532"\w* \w mother|strong="G3384"\w*’\w s|strong="G2962"\w* \w womb|strong="G2836"\w*. +\v 16 \w He|strong="G2532"\w* \w will|strong="G2316"\w* \w turn|strong="G1994"\w* \w many|strong="G4183"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w children|strong="G5207"\w* \w of|strong="G5207"\w* \w Israel|strong="G2474"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w their|strong="G2532"\w* \w God|strong="G2316"\w*. +\v 17 \w He|strong="G2532"\w* \w will|strong="G2532"\w* \w go|strong="G4281"\w* \w before|strong="G1799"\w* \w him|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w spirit|strong="G4151"\w* \w and|strong="G2532"\w* \w power|strong="G1411"\w* \w of|strong="G4151"\w* \w Elijah|strong="G2243"\w*, ‘\w to|strong="G2532"\w* \w turn|strong="G1994"\w* \w the|strong="G1722"\w* \w hearts|strong="G2588"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w fathers|strong="G3962"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w children|strong="G5043"\w*,’\x + \xo 1:17 \xt Malachi 4:6\x* \w and|strong="G2532"\w* \w the|strong="G1722"\w* disobedient \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w wisdom|strong="G5428"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w just|strong="G1342"\w*; \w to|strong="G2532"\w* \w prepare|strong="G2090"\w* \w a|strong="G2532"\w* \w people|strong="G2992"\w* \w prepared|strong="G2090"\w* \w for|strong="G1909"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*.” +\p +\v 18 \w Zacharias|strong="G2197"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w the|strong="G1722"\w* angel, “\w How|strong="G5101"\w* \w can|strong="G3004"\w* \w I|strong="G1473"\w* \w be|strong="G1510"\w* \w sure|strong="G1097"\w* \w of|strong="G2250"\w* \w this|strong="G3778"\w*? \w For|strong="G1063"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w an|strong="G2532"\w* \w old|strong="G2532"\w* \w man|strong="G3778"\w*, \w and|strong="G2532"\w* \w my|strong="G1722"\w* \w wife|strong="G1135"\w* \w is|strong="G1510"\w* \w well|strong="G2532"\w* \w advanced|strong="G4260"\w* \w in|strong="G1722"\w* \w years|strong="G2250"\w*.” +\p +\v 19 \w The|strong="G2532"\w* angel \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, “\w I|strong="G1473"\w* \w am|strong="G1510"\w* \w Gabriel|strong="G1043"\w*, \w who|strong="G3588"\w* \w stands|strong="G3936"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w presence|strong="G1799"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. \w I|strong="G1473"\w* \w was|strong="G1510"\w* \w sent|strong="G2316"\w* \w to|strong="G4314"\w* \w speak|strong="G2980"\w* \w to|strong="G4314"\w* \w you|strong="G4771"\w* \w and|strong="G2532"\w* \w to|strong="G4314"\w* \w bring|strong="G2097"\w* \w you|strong="G4771"\w* \w this|strong="G3778"\w* \w good|strong="G2097"\w* \w news|strong="G2097"\w*. +\v 20 \w Behold|strong="G2400"\w*,\f + \fr 1:20 \ft “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w you|strong="G3739"\w* \w will|strong="G1510"\w* \w be|strong="G1096"\w* \w silent|strong="G4623"\w* \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w able|strong="G1410"\w* \w to|strong="G1519"\w* \w speak|strong="G2980"\w* \w until|strong="G1519"\w* \w the|strong="G2532"\w* \w day|strong="G2250"\w* \w that|strong="G3739"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w will|strong="G1510"\w* \w happen|strong="G1096"\w*, \w because|strong="G2532"\w* \w you|strong="G3739"\w* didn’\w t|strong="G3588"\w* \w believe|strong="G4100"\w* \w my|strong="G3708"\w* \w words|strong="G3056"\w*, \w which|strong="G3739"\w* \w will|strong="G1510"\w* \w be|strong="G1096"\w* \w fulfilled|strong="G4137"\w* \w in|strong="G1519"\w* \w their|strong="G2532"\w* \w proper|strong="G2540"\w* \w time|strong="G2540"\w*.” +\p +\v 21 \w The|strong="G1722"\w* \w people|strong="G2992"\w* \w were|strong="G1510"\w* \w waiting|strong="G4328"\w* \w for|strong="G1722"\w* \w Zacharias|strong="G2197"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w marveled|strong="G2296"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* delayed \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G3485"\w*. +\v 22 \w When|strong="G1161"\w* \w he|strong="G2532"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w*, \w he|strong="G2532"\w* \w could|strong="G1410"\w* \w not|strong="G3756"\w* \w speak|strong="G2980"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*. \w They|strong="G2532"\w* \w perceived|strong="G1921"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w seen|strong="G3708"\w* \w a|strong="G2532"\w* \w vision|strong="G3701"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G3485"\w*. \w He|strong="G2532"\w* continued \w making|strong="G2532"\w* \w signs|strong="G1269"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w remained|strong="G1265"\w* \w mute|strong="G2974"\w*. +\v 23 \w When|strong="G5613"\w* \w the|strong="G2532"\w* \w days|strong="G2250"\w* \w of|strong="G2250"\w* \w his|strong="G1519"\w* \w service|strong="G3009"\w* \w were|strong="G3588"\w* fulfilled, \w he|strong="G2532"\w* departed \w to|strong="G1519"\w* \w his|strong="G1519"\w* \w house|strong="G3624"\w*. +\v 24 \w After|strong="G3326"\w* \w these|strong="G3778"\w* \w days|strong="G2250"\w* \w Elizabeth|strong="G1665"\w* \w his|strong="G1438"\w* \w wife|strong="G1135"\w* \w conceived|strong="G4815"\w*, \w and|strong="G2532"\w* \w she|strong="G2532"\w* \w hid|strong="G4032"\w* \w herself|strong="G1438"\w* \w five|strong="G4002"\w* \w months|strong="G3376"\w*, \w saying|strong="G3004"\w*, +\v 25 “\w Thus|strong="G3779"\w* \w has|strong="G2962"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w done|strong="G4160"\w* \w to|strong="G1722"\w* \w me|strong="G1473"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w days|strong="G2250"\w* \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w he|strong="G3739"\w* \w looked|strong="G1896"\w* \w at|strong="G1722"\w* \w me|strong="G1473"\w*, \w to|strong="G1722"\w* \w take|strong="G1896"\w* away \w my|strong="G1722"\w* \w reproach|strong="G3681"\w* \w among|strong="G1722"\w* \w men|strong="G1722"\w*.” +\p +\v 26 \w Now|strong="G1161"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w sixth|strong="G1623"\w* \w month|strong="G3376"\w*, \w the|strong="G1722"\w* angel \w Gabriel|strong="G1043"\w* \w was|strong="G3588"\w* \w sent|strong="G2316"\w* \w from|strong="G3588"\w* \w God|strong="G2316"\w* \w to|strong="G1519"\w* \w a|strong="G1519"\w* \w city|strong="G4172"\w* \w of|strong="G2316"\w* \w Galilee|strong="G1056"\w* \w named|strong="G3686"\w* \w Nazareth|strong="G3478"\w*, +\v 27 \w to|strong="G4314"\w* \w a|strong="G2532"\w* \w virgin|strong="G3933"\w* pledged \w to|strong="G4314"\w* \w be|strong="G2532"\w* married \w to|strong="G4314"\w* \w a|strong="G2532"\w* \w man|strong="G3739"\w* \w whose|strong="G3739"\w* \w name|strong="G3686"\w* \w was|strong="G3588"\w* \w Joseph|strong="G2501"\w*, \w of|strong="G1537"\w* \w David|strong="G1138"\w*’s \w house|strong="G3624"\w*. \w The|strong="G2532"\w* \w virgin|strong="G3933"\w*’s \w name|strong="G3686"\w* \w was|strong="G3588"\w* \w Mary|strong="G3137"\w*. +\v 28 \w Having|strong="G2532"\w* \w come|strong="G1525"\w* \w in|strong="G1525"\w*, \w the|strong="G2532"\w* angel \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w her|strong="G1438"\w*, “\w Rejoice|strong="G5463"\w*, \w you|strong="G4771"\w* highly \w favored|strong="G5487"\w* \w one|strong="G1438"\w*! \w The|strong="G2532"\w* \w Lord|strong="G2962"\w* \w is|strong="G3588"\w* \w with|strong="G3326"\w* \w you|strong="G4771"\w*. Blessed \w are|strong="G3588"\w* \w you|strong="G4771"\w* \w among|strong="G4314"\w* women!” +\p +\v 29 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w she|strong="G2532"\w* saw \w him|strong="G3588"\w*, \w she|strong="G2532"\w* \w was|strong="G1510"\w* greatly \w troubled|strong="G1298"\w* \w at|strong="G1909"\w* \w the|strong="G2532"\w* \w saying|strong="G3056"\w*, \w and|strong="G2532"\w* considered \w what|strong="G3588"\w* \w kind|strong="G4217"\w* \w of|strong="G3056"\w* salutation \w this|strong="G3778"\w* \w might|strong="G2532"\w* \w be|strong="G1510"\w*. +\v 30 \w The|strong="G2532"\w* angel \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w her|strong="G3137"\w*, “Don’\w t|strong="G3588"\w* \w be|strong="G2532"\w* \w afraid|strong="G5399"\w*, \w Mary|strong="G3137"\w*, \w for|strong="G1063"\w* \w you|strong="G3004"\w* \w have|strong="G2532"\w* \w found|strong="G2147"\w* \w favor|strong="G5485"\w* \w with|strong="G3844"\w* \w God|strong="G2316"\w*. +\v 31 \w Behold|strong="G2400"\w*, \w you|strong="G1722"\w* \w will|strong="G2532"\w* \w conceive|strong="G4815"\w* \w in|strong="G1722"\w* \w your|strong="G2532"\w* \w womb|strong="G1064"\w* \w and|strong="G2532"\w* \w give|strong="G5088"\w* \w birth|strong="G5088"\w* \w to|strong="G2532"\w* \w a|strong="G2532"\w* \w son|strong="G5207"\w*, \w and|strong="G2532"\w* \w shall|strong="G2532"\w* \w name|strong="G3686"\w* \w him|strong="G3588"\w* ‘\w Jesus|strong="G2424"\w*.’ +\v 32 \w He|strong="G2532"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w great|strong="G3173"\w* \w and|strong="G2532"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w called|strong="G2564"\w* \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w Most|strong="G5310"\w* \w High|strong="G5310"\w*. \w The|strong="G2532"\w* \w Lord|strong="G2962"\w* \w God|strong="G2316"\w* \w will|strong="G2316"\w* \w give|strong="G1325"\w* \w him|strong="G3588"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w* \w of|strong="G5207"\w* \w his|strong="G2532"\w* \w father|strong="G3962"\w* \w David|strong="G1138"\w*, +\v 33 \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w will|strong="G1510"\w* \w reign|strong="G2532"\w* \w over|strong="G1909"\w* \w the|strong="G2532"\w* \w house|strong="G3624"\w* \w of|strong="G2532"\w* \w Jacob|strong="G2384"\w* \w forever|strong="G1519"\w*. \w There|strong="G2532"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w no|strong="G3756"\w* \w end|strong="G5056"\w* \w to|strong="G1519"\w* \w his|strong="G1519"\w* Kingdom.” +\p +\v 34 \w Mary|strong="G3137"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w the|strong="G1161"\w* angel, “\w How|strong="G4459"\w* \w can|strong="G3004"\w* \w this|strong="G3778"\w* \w be|strong="G1510"\w*, \w seeing|strong="G1893"\w* \w I|strong="G1161"\w* \w am|strong="G1510"\w* \w a|strong="G1510"\w* \w virgin|strong="G3756"\w*?” +\p +\v 35 \w The|strong="G2532"\w* angel \w answered|strong="G3004"\w* \w her|strong="G3588"\w*, “\w The|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w will|strong="G2316"\w* \w come|strong="G1904"\w* \w on|strong="G1909"\w* \w you|strong="G4771"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w power|strong="G1411"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w Most|strong="G5310"\w* \w High|strong="G5310"\w* \w will|strong="G2316"\w* \w overshadow|strong="G1982"\w* \w you|strong="G4771"\w*. \w Therefore|strong="G1352"\w* \w also|strong="G2532"\w* \w the|strong="G2532"\w* \w holy|strong="G4151"\w* \w one|strong="G3588"\w* \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w born|strong="G1080"\w* \w from|strong="G2532"\w* \w you|strong="G4771"\w* \w will|strong="G2316"\w* \w be|strong="G2532"\w* \w called|strong="G2564"\w* \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*. +\v 36 \w Behold|strong="G2400"\w*, \w Elizabeth|strong="G1665"\w* \w your|strong="G2532"\w* \w relative|strong="G4773"\w* \w also|strong="G2532"\w* \w has|strong="G3778"\w* \w conceived|strong="G4815"\w* \w a|strong="G2532"\w* \w son|strong="G5207"\w* \w in|strong="G1722"\w* \w her|strong="G3708"\w* \w old|strong="G2532"\w* \w age|strong="G1094"\w*; \w and|strong="G2532"\w* \w this|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w sixth|strong="G1623"\w* \w month|strong="G3376"\w* \w with|strong="G1722"\w* \w her|strong="G3708"\w* \w who|strong="G3588"\w* \w was|strong="G1510"\w* \w called|strong="G2564"\w* \w barren|strong="G4723"\w*. +\v 37 \w For|strong="G3754"\w* \w nothing|strong="G3756"\w* spoken \w by|strong="G3844"\w* \w God|strong="G2316"\w* \w is|strong="G3588"\w* \w impossible|strong="G3756"\w*.”\f + \fr 1:37 \ft or, “For everything spoken by God is possible.”\f* +\p +\v 38 \w Mary|strong="G3137"\w* \w said|strong="G3004"\w*, “\w Behold|strong="G2400"\w*, \w the|strong="G2532"\w* \w servant|strong="G1399"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*; \w let|strong="G1096"\w* \w it|strong="G2532"\w* \w be|strong="G1096"\w* \w done|strong="G1096"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w your|strong="G2962"\w* \w word|strong="G4487"\w*.” +\p \w Then|strong="G2532"\w* \w the|strong="G2532"\w* angel departed \w from|strong="G2532"\w* \w her|strong="G3708"\w*. +\p +\v 39 \w Mary|strong="G3137"\w* arose \w in|strong="G1722"\w* \w those|strong="G3588"\w* \w days|strong="G2250"\w* \w and|strong="G1161"\w* \w went|strong="G4198"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w hill|strong="G3714"\w* \w country|strong="G3714"\w* \w with|strong="G3326"\w* \w haste|strong="G4710"\w*, \w into|strong="G1519"\w* \w a|strong="G1519"\w* \w city|strong="G4172"\w* \w of|strong="G2250"\w* \w Judah|strong="G2455"\w*, +\v 40 \w and|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w house|strong="G3624"\w* \w of|strong="G2532"\w* \w Zacharias|strong="G2197"\w* \w and|strong="G2532"\w* greeted \w Elizabeth|strong="G1665"\w*. +\v 41 \w When|strong="G5613"\w* \w Elizabeth|strong="G1665"\w* heard \w Mary|strong="G3137"\w*’s greeting, \w the|strong="G1722"\w* \w baby|strong="G1025"\w* \w leaped|strong="G4640"\w* \w in|strong="G1722"\w* \w her|strong="G3137"\w* \w womb|strong="G2836"\w*; \w and|strong="G2532"\w* \w Elizabeth|strong="G1665"\w* \w was|strong="G1096"\w* \w filled|strong="G4130"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*. +\v 42 \w She|strong="G2532"\w* \w called|strong="G3004"\w* \w out|strong="G2532"\w* \w with|strong="G1722"\w* \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G2906"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Blessed|strong="G2127"\w* \w are|strong="G3588"\w* \w you|strong="G4771"\w* \w among|strong="G1722"\w* \w women|strong="G1135"\w*, \w and|strong="G2532"\w* \w blessed|strong="G2127"\w* \w is|strong="G3588"\w* \w the|strong="G1722"\w* \w fruit|strong="G2590"\w* \w of|strong="G2532"\w* \w your|strong="G2532"\w* \w womb|strong="G2836"\w*! +\v 43 \w Why|strong="G2443"\w* \w am|strong="G1473"\w* \w I|strong="G1473"\w* \w so|strong="G2443"\w* favored, \w that|strong="G2443"\w* \w the|strong="G2532"\w* \w mother|strong="G3384"\w* \w of|strong="G2532"\w* \w my|strong="G1473"\w* \w Lord|strong="G2962"\w* \w should|strong="G3588"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w me|strong="G1473"\w*? +\v 44 \w For|strong="G1063"\w* \w behold|strong="G2400"\w*, \w when|strong="G5613"\w* \w the|strong="G1722"\w* \w voice|strong="G5456"\w* \w of|strong="G1722"\w* \w your|strong="G3708"\w* greeting \w came|strong="G1096"\w* \w into|strong="G1519"\w* \w my|strong="G3708"\w* \w ears|strong="G3775"\w*, \w the|strong="G1722"\w* \w baby|strong="G1025"\w* \w leaped|strong="G4640"\w* \w in|strong="G1722"\w* \w my|strong="G3708"\w* \w womb|strong="G2836"\w* \w for|strong="G1063"\w* joy! +\v 45 \w Blessed|strong="G3107"\w* \w is|strong="G1510"\w* \w she|strong="G2532"\w* \w who|strong="G3588"\w* \w believed|strong="G4100"\w*, \w for|strong="G3754"\w* \w there|strong="G2532"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w a|strong="G2532"\w* \w fulfillment|strong="G5050"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w which|strong="G3588"\w* \w have|strong="G2532"\w* \w been|strong="G1510"\w* \w spoken|strong="G2980"\w* \w to|strong="G2532"\w* \w her|strong="G3754"\w* \w from|strong="G3844"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*!” +\p +\v 46 \w Mary|strong="G3137"\w* \w said|strong="G3004"\w*, +\q1 “\w My|strong="G1473"\w* \w soul|strong="G5590"\w* magnifies \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*. +\q2 +\v 47 \w My|strong="G1473"\w* \w spirit|strong="G4151"\w* \w has|strong="G2316"\w* rejoiced \w in|strong="G1909"\w* \w God|strong="G2316"\w* \w my|strong="G1473"\w* \w Savior|strong="G4990"\w*, +\q2 +\v 48 \w for|strong="G1063"\w* \w he|strong="G3754"\w* \w has|strong="G3708"\w* \w looked|strong="G3708"\w* \w at|strong="G1909"\w* \w the|strong="G3956"\w* \w humble|strong="G5014"\w* \w state|strong="G5014"\w* \w of|strong="G1909"\w* \w his|strong="G3956"\w* \w servant|strong="G1399"\w*. +\q1 \w For|strong="G1063"\w* \w behold|strong="G2400"\w*, \w from|strong="G3588"\w* \w now|strong="G3568"\w* \w on|strong="G1909"\w*, \w all|strong="G3956"\w* \w generations|strong="G1074"\w* \w will|strong="G1473"\w* \w call|strong="G3106"\w* \w me|strong="G1473"\w* \w blessed|strong="G3106"\w*. +\q2 +\v 49 \w For|strong="G3754"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w mighty|strong="G1415"\w* \w has|strong="G3748"\w* \w done|strong="G4160"\w* \w great|strong="G3173"\w* \w things|strong="G3588"\w* \w for|strong="G3754"\w* \w me|strong="G1473"\w*. +\q2 Holy \w is|strong="G3588"\w* \w his|strong="G4160"\w* \w name|strong="G3686"\w*. +\q2 +\v 50 \w His|strong="G1519"\w* \w mercy|strong="G1656"\w* \w is|strong="G3588"\w* \w for|strong="G1519"\w* \w generations|strong="G1074"\w* \w and|strong="G2532"\w* \w generations|strong="G1074"\w* \w on|strong="G1519"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w fear|strong="G5399"\w* \w him|strong="G3588"\w*. +\q1 +\v 51 \w He|strong="G4160"\w* has \w shown|strong="G4160"\w* \w strength|strong="G2904"\w* \w with|strong="G1722"\w* \w his|strong="G1722"\w* \w arm|strong="G1023"\w*. +\q2 \w He|strong="G4160"\w* has \w scattered|strong="G1287"\w* \w the|strong="G1722"\w* \w proud|strong="G5244"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w imagination|strong="G1271"\w* \w of|strong="G1722"\w* \w their|strong="G1722"\w* \w hearts|strong="G2588"\w*. +\q1 +\v 52 \w He|strong="G2532"\w* \w has|strong="G2532"\w* \w put|strong="G2532"\w* \w down|strong="G2507"\w* princes \w from|strong="G2532"\w* \w their|strong="G2532"\w* \w thrones|strong="G2362"\w*, +\q2 \w and|strong="G2532"\w* \w has|strong="G2532"\w* \w exalted|strong="G5312"\w* \w the|strong="G2532"\w* \w lowly|strong="G5011"\w*. +\q1 +\v 53 \w He|strong="G2532"\w* \w has|strong="G2532"\w* \w filled|strong="G1705"\w* \w the|strong="G2532"\w* \w hungry|strong="G3983"\w* \w with|strong="G2532"\w* \w good|strong="G2532"\w* \w things|strong="G2756"\w*. +\q2 \w He|strong="G2532"\w* \w has|strong="G2532"\w* \w sent|strong="G1821"\w* \w the|strong="G2532"\w* \w rich|strong="G4147"\w* \w away|strong="G1821"\w* \w empty|strong="G2756"\w*. +\q1 +\v 54 \w He|strong="G2474"\w* has given help \w to|strong="G1656"\w* \w Israel|strong="G2474"\w*, \w his|strong="G3403"\w* \w servant|strong="G3816"\w*, \w that|strong="G3403"\w* \w he|strong="G2474"\w* might \w remember|strong="G3403"\w* \w mercy|strong="G1656"\w*, +\q2 +\v 55 \w as|strong="G2531"\w* \w he|strong="G2532"\w* \w spoke|strong="G2980"\w* \w to|strong="G1519"\w* \w our|strong="G2532"\w* \w fathers|strong="G3962"\w*, +\q2 \w to|strong="G1519"\w* Abraham \w and|strong="G2532"\w* \w his|strong="G1519"\w* offspring\f + \fr 1:55 \ft or, seed\f* \w forever|strong="G1519"\w*.” +\p +\v 56 \w Mary|strong="G3137"\w* \w stayed|strong="G3306"\w* \w with|strong="G4862"\w* \w her|strong="G1519"\w* \w about|strong="G5613"\w* \w three|strong="G5140"\w* \w months|strong="G3376"\w*, \w and|strong="G2532"\w* \w then|strong="G2532"\w* \w returned|strong="G5290"\w* \w to|strong="G1519"\w* \w her|strong="G1519"\w* \w house|strong="G3624"\w*. +\p +\v 57 \w Now|strong="G1161"\w* \w the|strong="G2532"\w* \w time|strong="G5550"\w* \w that|strong="G3588"\w* \w Elizabeth|strong="G1665"\w* \w should|strong="G3588"\w* \w give|strong="G5088"\w* \w birth|strong="G5088"\w* \w was|strong="G3588"\w* fulfilled, \w and|strong="G2532"\w* \w she|strong="G2532"\w* \w gave|strong="G5088"\w* \w birth|strong="G5088"\w* \w to|strong="G2532"\w* \w a|strong="G2532"\w* \w son|strong="G5207"\w*. +\v 58 \w Her|strong="G3754"\w* \w neighbors|strong="G4040"\w* \w and|strong="G2532"\w* \w her|strong="G3754"\w* \w relatives|strong="G4773"\w* heard \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w had|strong="G2532"\w* \w magnified|strong="G3170"\w* \w his|strong="G2532"\w* \w mercy|strong="G1656"\w* \w toward|strong="G3326"\w* \w her|strong="G3754"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w rejoiced|strong="G4796"\w* \w with|strong="G3326"\w* \w her|strong="G3754"\w*. +\v 59 \w On|strong="G1909"\w* \w the|strong="G1722"\w* \w eighth|strong="G3590"\w* \w day|strong="G2250"\w*, \w they|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G2532"\w* \w circumcise|strong="G4059"\w* \w the|strong="G1722"\w* \w child|strong="G3813"\w*; \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w would|strong="G1096"\w* \w have|strong="G2532"\w* \w called|strong="G2564"\w* \w him|strong="G3588"\w* \w Zacharias|strong="G2197"\w*, \w after|strong="G1909"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G2250"\w* \w his|strong="G1909"\w* \w father|strong="G3962"\w*. +\v 60 \w His|strong="G2532"\w* \w mother|strong="G3384"\w* \w answered|strong="G3004"\w*, “\w Not|strong="G3780"\w* \w so|strong="G2532"\w*; \w but|strong="G2532"\w* \w he|strong="G2532"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w called|strong="G2564"\w* \w John|strong="G2491"\w*.” +\p +\v 61 \w They|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w her|strong="G1438"\w*, “\w There|strong="G2532"\w* \w is|strong="G1510"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w* \w among|strong="G1537"\w* \w your|strong="G2532"\w* \w relatives|strong="G4772"\w* \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w called|strong="G2564"\w* \w by|strong="G1537"\w* \w this|strong="G3778"\w* \w name|strong="G3686"\w*.” +\v 62 \w They|strong="G1161"\w* \w made|strong="G1161"\w* \w signs|strong="G1770"\w* \w to|strong="G2309"\w* \w his|strong="G2564"\w* \w father|strong="G3962"\w*, \w what|strong="G5101"\w* \w he|strong="G1161"\w* \w would|strong="G2309"\w* \w have|strong="G2309"\w* \w him|strong="G3588"\w* \w called|strong="G2564"\w*. +\p +\v 63 \w He|strong="G2532"\w* \w asked|strong="G3004"\w* \w for|strong="G2532"\w* \w a|strong="G2532"\w* \w writing|strong="G1125"\w* \w tablet|strong="G4093"\w*, \w and|strong="G2532"\w* \w wrote|strong="G1125"\w*, “\w His|strong="G3956"\w* \w name|strong="G3686"\w* \w is|strong="G1510"\w* \w John|strong="G2491"\w*.” +\p \w They|strong="G2532"\w* \w all|strong="G3956"\w* \w marveled|strong="G2296"\w*. +\v 64 \w His|strong="G2532"\w* \w mouth|strong="G4750"\w* \w was|strong="G3588"\w* opened \w immediately|strong="G3916"\w* \w and|strong="G2532"\w* \w his|strong="G2532"\w* \w tongue|strong="G1100"\w* freed, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w spoke|strong="G2980"\w*, \w blessing|strong="G2127"\w* \w God|strong="G2316"\w*. +\v 65 \w Fear|strong="G5401"\w* \w came|strong="G1096"\w* \w on|strong="G1909"\w* \w all|strong="G3956"\w* \w who|strong="G3588"\w* \w lived|strong="G2532"\w* \w around|strong="G1909"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w these|strong="G3778"\w* \w sayings|strong="G4487"\w* \w were|strong="G3588"\w* \w talked|strong="G1255"\w* \w about|strong="G1909"\w* \w throughout|strong="G1722"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w hill|strong="G3714"\w* \w country|strong="G3714"\w* \w of|strong="G2532"\w* \w Judea|strong="G2449"\w*. +\v 66 \w All|strong="G3956"\w* \w who|strong="G5101"\w* heard \w them|strong="G3588"\w* \w laid|strong="G5087"\w* \w them|strong="G3588"\w* \w up|strong="G2532"\w* \w in|strong="G1722"\w* \w their|strong="G2532"\w* \w heart|strong="G2588"\w*, \w saying|strong="G3004"\w*, “\w What|strong="G5101"\w* \w then|strong="G2532"\w* \w will|strong="G5101"\w* \w this|strong="G3778"\w* \w child|strong="G3813"\w* \w be|strong="G1510"\w*?” \w The|strong="G1722"\w* \w hand|strong="G5495"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w was|strong="G1510"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w*. +\p +\v 67 \w His|strong="G2532"\w* \w father|strong="G3962"\w* \w Zacharias|strong="G2197"\w* \w was|strong="G3588"\w* \w filled|strong="G4130"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*, \w and|strong="G2532"\w* \w prophesied|strong="G4395"\w*, \w saying|strong="G3004"\w*, +\q1 +\v 68 “\w Blessed|strong="G2128"\w* \w be|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w the|strong="G2532"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* \w Israel|strong="G2474"\w*, +\q2 \w for|strong="G3754"\w* \w he|strong="G2532"\w* \w has|strong="G2316"\w* \w visited|strong="G1980"\w* \w and|strong="G2532"\w* \w redeemed|strong="G3085"\w* \w his|strong="G4160"\w* \w people|strong="G2992"\w*; +\q1 +\v 69 \w and|strong="G2532"\w* \w has|strong="G2532"\w* \w raised|strong="G1453"\w* \w up|strong="G1453"\w* \w a|strong="G2532"\w* \w horn|strong="G2768"\w* \w of|strong="G2532"\w* \w salvation|strong="G4991"\w* \w for|strong="G1722"\w* \w us|strong="G2249"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w house|strong="G3624"\w* \w of|strong="G2532"\w* \w his|strong="G1722"\w* \w servant|strong="G3816"\w* \w David|strong="G1138"\w* +\q2 +\v 70 (\w as|strong="G2531"\w* \w he|strong="G3588"\w* \w spoke|strong="G2980"\w* \w by|strong="G1223"\w* \w the|strong="G1223"\w* \w mouth|strong="G4750"\w* \w of|strong="G1223"\w* \w his|strong="G1223"\w* holy \w prophets|strong="G4396"\w* \w who|strong="G3588"\w* \w have|strong="G3588"\w* been \w from|strong="G3588"\w* \w of|strong="G1223"\w* old), +\q2 +\v 71 \w salvation|strong="G4991"\w* \w from|strong="G1537"\w* \w our|strong="G2532"\w* \w enemies|strong="G2190"\w* \w and|strong="G2532"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w hand|strong="G5495"\w* \w of|strong="G1537"\w* \w all|strong="G3956"\w* \w who|strong="G3588"\w* \w hate|strong="G3404"\w* \w us|strong="G2249"\w*; +\q1 +\v 72 \w to|strong="G2532"\w* \w show|strong="G4160"\w* \w mercy|strong="G1656"\w* \w toward|strong="G3326"\w* \w our|strong="G2532"\w* \w fathers|strong="G3962"\w*, +\q2 \w to|strong="G2532"\w* \w remember|strong="G3403"\w* \w his|strong="G4160"\w* holy \w covenant|strong="G1242"\w*, +\q1 +\v 73 \w the|strong="G4314"\w* \w oath|strong="G3727"\w* \w which|strong="G3739"\w* \w he|strong="G3739"\w* \w swore|strong="G3660"\w* \w to|strong="G4314"\w* Abraham \w our|strong="G4314"\w* \w father|strong="G3962"\w*, +\q2 +\v 74 \w to|strong="G1537"\w* grant \w to|strong="G1537"\w* \w us|strong="G1537"\w* \w that|strong="G1537"\w* we, being \w delivered|strong="G4506"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w hand|strong="G5495"\w* \w of|strong="G1537"\w* \w our|strong="G1537"\w* \w enemies|strong="G2190"\w*, +\q2 should \w serve|strong="G3000"\w* \w him|strong="G3000"\w* \w without|strong="G1537"\w* fear, +\q2 +\v 75 \w in|strong="G1722"\w* \w holiness|strong="G3742"\w* \w and|strong="G2532"\w* \w righteousness|strong="G1343"\w* \w before|strong="G1799"\w* \w him|strong="G3588"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w days|strong="G2250"\w* \w of|strong="G2250"\w* \w our|strong="G2532"\w* life. +\q1 +\v 76 \w And|strong="G2532"\w* \w you|strong="G4771"\w*, \w child|strong="G3813"\w*, \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w called|strong="G2564"\w* \w a|strong="G2532"\w* \w prophet|strong="G4396"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Most|strong="G5310"\w* \w High|strong="G5310"\w*; +\q2 \w for|strong="G1063"\w* \w you|strong="G4771"\w* \w will|strong="G2532"\w* \w go|strong="G4313"\w* \w before|strong="G1799"\w* \w the|strong="G2532"\w* \w face|strong="G4383"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w to|strong="G2532"\w* \w prepare|strong="G2090"\w* \w his|strong="G2532"\w* \w ways|strong="G3598"\w*, +\q2 +\v 77 \w to|strong="G1722"\w* \w give|strong="G1325"\w* \w knowledge|strong="G1108"\w* \w of|strong="G1722"\w* \w salvation|strong="G4991"\w* \w to|strong="G1722"\w* \w his|strong="G1722"\w* \w people|strong="G2992"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* remission \w of|strong="G1722"\w* \w their|strong="G1722"\w* sins, +\q1 +\v 78 \w because|strong="G1223"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w tender|strong="G4698"\w* \w mercy|strong="G1656"\w* \w of|strong="G1537"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w*, +\q2 \w by|strong="G1223"\w* \w which|strong="G3739"\w* \w the|strong="G1722"\w* dawn \w from|strong="G1537"\w* \w on|strong="G1722"\w* \w high|strong="G5311"\w* \w will|strong="G2316"\w* \w visit|strong="G1980"\w* \w us|strong="G2249"\w*, +\q2 +\v 79 \w to|strong="G1519"\w* \w shine|strong="G2014"\w* \w on|strong="G1722"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w sit|strong="G2521"\w* \w in|strong="G1722"\w* \w darkness|strong="G4655"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w shadow|strong="G4639"\w* \w of|strong="G2532"\w* \w death|strong="G2288"\w*; +\q2 \w to|strong="G1519"\w* \w guide|strong="G2720"\w* \w our|strong="G2532"\w* \w feet|strong="G4228"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w way|strong="G3598"\w* \w of|strong="G2532"\w* \w peace|strong="G1515"\w*.” +\p +\v 80 \w The|strong="G1722"\w* \w child|strong="G3813"\w* \w was|strong="G1510"\w* \w growing|strong="G1722"\w* \w and|strong="G2532"\w* becoming \w strong|strong="G2901"\w* \w in|strong="G1722"\w* \w spirit|strong="G4151"\w*, \w and|strong="G2532"\w* \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w desert|strong="G2048"\w* \w until|strong="G2193"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w of|strong="G4151"\w* \w his|strong="G1722"\w* public appearance \w to|strong="G4314"\w* \w Israel|strong="G2474"\w*. +\c 2 +\p +\v 1 \w Now|strong="G1161"\w* \w in|strong="G1722"\w* \w those|strong="G3588"\w* \w days|strong="G2250"\w*, \w a|strong="G1096"\w* \w decree|strong="G1378"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w from|strong="G3844"\w* \w Caesar|strong="G2541"\w* Augustus \w that|strong="G3588"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w world|strong="G3625"\w* \w should|strong="G3588"\w* \w be|strong="G1096"\w* enrolled. +\v 2 \w This|strong="G3778"\w* \w was|strong="G1096"\w* \w the|strong="G3588"\w* \w first|strong="G4413"\w* enrollment \w made|strong="G1096"\w* \w when|strong="G1096"\w* \w Quirinius|strong="G2958"\w* \w was|strong="G1096"\w* \w governor|strong="G2230"\w* \w of|strong="G3588"\w* \w Syria|strong="G4947"\w*. +\v 3 \w All|strong="G3956"\w* \w went|strong="G4198"\w* \w to|strong="G1519"\w* enroll \w themselves|strong="G1438"\w*, \w everyone|strong="G3956"\w* \w to|strong="G1519"\w* \w his|strong="G1438"\w* \w own|strong="G1438"\w* \w city|strong="G4172"\w*. +\v 4 \w Joseph|strong="G2501"\w* \w also|strong="G2532"\w* \w went|strong="G2532"\w* \w up|strong="G1519"\w* \w from|strong="G1537"\w* \w Galilee|strong="G1056"\w*, \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w of|strong="G1537"\w* \w Nazareth|strong="G3478"\w*, \w into|strong="G1519"\w* \w Judea|strong="G2449"\w*, \w to|strong="G1519"\w* \w David|strong="G1138"\w*’s \w city|strong="G4172"\w*, \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w called|strong="G2564"\w* Bethlehem, \w because|strong="G1223"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w house|strong="G3624"\w* \w and|strong="G2532"\w* \w family|strong="G3965"\w* \w of|strong="G1537"\w* \w David|strong="G1138"\w*, +\v 5 \w to|strong="G1510"\w* enroll \w himself|strong="G4862"\w* \w with|strong="G4862"\w* \w Mary|strong="G3137"\w*, \w who|strong="G3588"\w* \w was|strong="G1510"\w* pledged \w to|strong="G1510"\w* \w be|strong="G1510"\w* married \w to|strong="G1510"\w* \w him|strong="G3588"\w* \w as|strong="G3588"\w* wife, \w being|strong="G1510"\w* pregnant. +\p +\v 6 \w While|strong="G1722"\w* \w they|strong="G1161"\w* \w were|strong="G1510"\w* \w there|strong="G1563"\w*, \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w had|strong="G1510"\w* \w come|strong="G1096"\w* \w for|strong="G1161"\w* \w her|strong="G1438"\w* \w to|strong="G1722"\w* \w give|strong="G5088"\w* \w birth|strong="G5088"\w*. +\v 7 \w She|strong="G2532"\w* \w gave|strong="G5088"\w* \w birth|strong="G5088"\w* \w to|strong="G2532"\w* \w her|strong="G3588"\w* \w firstborn|strong="G4416"\w* \w son|strong="G5207"\w*. \w She|strong="G2532"\w* \w wrapped|strong="G4683"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* bands \w of|strong="G5207"\w* cloth \w and|strong="G2532"\w* \w laid|strong="G2532"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* feeding trough, \w because|strong="G1360"\w* \w there|strong="G2532"\w* \w was|strong="G1510"\w* \w no|strong="G3756"\w* \w room|strong="G5117"\w* \w for|strong="G1722"\w* \w them|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w inn|strong="G2646"\w*. +\p +\v 8 \w There|strong="G2532"\w* \w were|strong="G1510"\w* \w shepherds|strong="G4166"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w same|strong="G2532"\w* \w country|strong="G5561"\w* staying \w in|strong="G1722"\w* \w the|strong="G1722"\w* field, \w and|strong="G2532"\w* \w keeping|strong="G5442"\w* \w watch|strong="G5438"\w* \w by|strong="G1722"\w* \w night|strong="G3571"\w* \w over|strong="G1909"\w* \w their|strong="G2532"\w* \w flock|strong="G4167"\w*. +\v 9 Behold, \w an|strong="G2532"\w* angel \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w stood|strong="G2186"\w* \w by|strong="G2532"\w* \w them|strong="G1438"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w shone|strong="G4034"\w* \w around|strong="G4034"\w* \w them|strong="G1438"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G2532"\w* \w terrified|strong="G5399"\w*. +\v 10 \w The|strong="G2532"\w* angel \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, “Don’\w t|strong="G3588"\w* \w be|strong="G1510"\w* \w afraid|strong="G5399"\w*, \w for|strong="G1063"\w* \w behold|strong="G2400"\w*, \w I|strong="G2532"\w* \w bring|strong="G2097"\w* \w you|strong="G5210"\w* \w good|strong="G2097"\w* \w news|strong="G2097"\w* \w of|strong="G2532"\w* \w great|strong="G3173"\w* \w joy|strong="G5479"\w* \w which|strong="G3588"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w to|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w*. +\v 11 \w For|strong="G3754"\w* \w there|strong="G3754"\w* \w is|strong="G1510"\w* \w born|strong="G5088"\w* \w to|strong="G1722"\w* \w you|strong="G5210"\w* \w today|strong="G4594"\w*, \w in|strong="G1722"\w* \w David|strong="G1138"\w*’\w s|strong="G2962"\w* \w city|strong="G4172"\w*, \w a|strong="G1722"\w* \w Savior|strong="G4990"\w*, \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w Christ|strong="G5547"\w*\f + \fr 2:11 \ft “Christ” means “Anointed One”.\f* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\v 12 \w This|strong="G3778"\w* \w is|strong="G3588"\w* \w the|strong="G1722"\w* \w sign|strong="G4592"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*: \w you|strong="G5210"\w* \w will|strong="G2532"\w* \w find|strong="G2147"\w* \w a|strong="G2532"\w* \w baby|strong="G1025"\w* \w wrapped|strong="G4683"\w* \w in|strong="G1722"\w* strips \w of|strong="G2532"\w* cloth, \w lying|strong="G2749"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* feeding trough.” +\v 13 \w Suddenly|strong="G1810"\w*, \w there|strong="G2532"\w* \w was|strong="G1096"\w* \w with|strong="G4862"\w* \w the|strong="G2532"\w* angel \w a|strong="G1096"\w* \w multitude|strong="G4128"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w heavenly|strong="G3770"\w* \w army|strong="G4756"\w* praising \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w saying|strong="G3004"\w*, +\q1 +\v 14 “\w Glory|strong="G1391"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w highest|strong="G5310"\w*, +\q2 \w on|strong="G1909"\w* \w earth|strong="G1093"\w* \w peace|strong="G1515"\w*, \w good|strong="G2107"\w* \w will|strong="G2316"\w* \w toward|strong="G1909"\w* \w men|strong="G1722"\w*.” +\p +\v 15 \w When|strong="G5613"\w* \w the|strong="G2532"\w* angels \w went|strong="G1330"\w* away \w from|strong="G2532"\w* \w them|strong="G3588"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w*, \w the|strong="G2532"\w* \w shepherds|strong="G4166"\w* \w said|strong="G2980"\w* \w to|strong="G1519"\w* \w one|strong="G3739"\w* \w another|strong="G3739"\w*, “\w Let|strong="G1096"\w*’\w s|strong="G2962"\w* \w go|strong="G1330"\w* \w to|strong="G1519"\w* Bethlehem, \w now|strong="G2532"\w*, \w and|strong="G2532"\w* \w see|strong="G3708"\w* \w this|strong="G3778"\w* \w thing|strong="G3778"\w* \w that|strong="G3739"\w* \w has|strong="G2962"\w* \w happened|strong="G1096"\w*, \w which|strong="G3739"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w has|strong="G2962"\w* \w made|strong="G1096"\w* \w known|strong="G1107"\w* \w to|strong="G1519"\w* \w us|strong="G1519"\w*.” +\v 16 \w They|strong="G2532"\w* \w came|strong="G2064"\w* \w with|strong="G1722"\w* \w haste|strong="G4692"\w* \w and|strong="G2532"\w* \w found|strong="G2532"\w* \w both|strong="G2532"\w* \w Mary|strong="G3137"\w* \w and|strong="G2532"\w* \w Joseph|strong="G2501"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w baby|strong="G1025"\w* \w was|strong="G3588"\w* \w lying|strong="G2749"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* feeding trough. +\v 17 \w When|strong="G1161"\w* \w they|strong="G1161"\w* \w saw|strong="G3708"\w* \w it|strong="G1161"\w*, \w they|strong="G1161"\w* publicized widely \w the|strong="G1161"\w* \w saying|strong="G2980"\w* \w which|strong="G3588"\w* \w was|strong="G3588"\w* \w spoken|strong="G2980"\w* \w to|strong="G2980"\w* \w them|strong="G3588"\w* \w about|strong="G4012"\w* \w this|strong="G3778"\w* \w child|strong="G3813"\w*. +\v 18 \w All|strong="G3956"\w* \w who|strong="G3588"\w* heard \w it|strong="G2532"\w* \w wondered|strong="G2296"\w* \w at|strong="G4314"\w* \w the|strong="G2532"\w* \w things|strong="G3956"\w* \w which|strong="G3588"\w* \w were|strong="G3588"\w* \w spoken|strong="G2980"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w* \w by|strong="G5259"\w* \w the|strong="G2532"\w* \w shepherds|strong="G4166"\w*. +\v 19 \w But|strong="G1161"\w* \w Mary|strong="G3137"\w* \w kept|strong="G4933"\w* \w all|strong="G3956"\w* \w these|strong="G3778"\w* \w sayings|strong="G4487"\w*, \w pondering|strong="G4820"\w* \w them|strong="G3588"\w* \w in|strong="G1722"\w* \w her|strong="G3956"\w* \w heart|strong="G2588"\w*. +\v 20 \w The|strong="G2532"\w* \w shepherds|strong="G4166"\w* \w returned|strong="G5290"\w*, \w glorifying|strong="G1392"\w* \w and|strong="G2532"\w* \w praising|strong="G1392"\w* \w God|strong="G2316"\w* \w for|strong="G1909"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w things|strong="G3956"\w* \w that|strong="G3739"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* heard \w and|strong="G2532"\w* \w seen|strong="G3708"\w*, \w just|strong="G2531"\w* \w as|strong="G2531"\w* \w it|strong="G2532"\w* \w was|strong="G3588"\w* \w told|strong="G2980"\w* \w them|strong="G3588"\w*. +\p +\v 21 \w When|strong="G3753"\w* \w eight|strong="G3638"\w* \w days|strong="G2250"\w* \w were|strong="G3588"\w* fulfilled \w for|strong="G1722"\w* \w the|strong="G1722"\w* \w circumcision|strong="G4059"\w* \w of|strong="G5259"\w* \w the|strong="G1722"\w* \w child|strong="G1722"\w*, \w his|strong="G1722"\w* \w name|strong="G3686"\w* \w was|strong="G3588"\w* \w called|strong="G2564"\w* \w Jesus|strong="G2424"\w*, \w which|strong="G3588"\w* \w was|strong="G3588"\w* \w given|strong="G2564"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* angel \w before|strong="G4253"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w conceived|strong="G4815"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w womb|strong="G2836"\w*. +\p +\v 22 \w When|strong="G3753"\w* \w the|strong="G2532"\w* \w days|strong="G2250"\w* \w of|strong="G2250"\w* \w their|strong="G2532"\w* \w purification|strong="G2512"\w* \w according|strong="G2596"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w* \w of|strong="G2250"\w* \w Moses|strong="G3475"\w* \w were|strong="G3588"\w* fulfilled, \w they|strong="G2532"\w* \w brought|strong="G2532"\w* \w him|strong="G3588"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w* \w to|strong="G1519"\w* \w present|strong="G3936"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* +\v 23 (\w as|strong="G2531"\w* \w it|strong="G3754"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w of|strong="G2962"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, “\w Every|strong="G3956"\w* male \w who|strong="G3588"\w* \w opens|strong="G1272"\w* \w the|strong="G1722"\w* \w womb|strong="G3388"\w* \w shall|strong="G2962"\w* \w be|strong="G3956"\w* \w called|strong="G2564"\w* holy \w to|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*”),\x + \xo 2:23 \xt Exodus 13:2,12\x* +\v 24 \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w offer|strong="G1325"\w* \w a|strong="G2532"\w* \w sacrifice|strong="G2378"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w said|strong="G3004"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, “\w A|strong="G2532"\w* \w pair|strong="G2201"\w* \w of|strong="G2532"\w* \w turtledoves|strong="G5167"\w*, \w or|strong="G2228"\w* \w two|strong="G1417"\w* \w young|strong="G3502"\w* \w pigeons|strong="G4058"\w*.”\x + \xo 2:24 \xt Leviticus 12:8\x* +\p +\v 25 \w Behold|strong="G2400"\w*, \w there|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w man|strong="G3778"\w* \w in|strong="G1722"\w* \w Jerusalem|strong="G2419"\w* \w whose|strong="G3739"\w* \w name|strong="G3686"\w* \w was|strong="G1510"\w* \w Simeon|strong="G4826"\w*. \w This|strong="G3778"\w* \w man|strong="G3778"\w* \w was|strong="G1510"\w* \w righteous|strong="G1342"\w* \w and|strong="G2532"\w* \w devout|strong="G2126"\w*, \w looking|strong="G4327"\w* \w for|strong="G1909"\w* \w the|strong="G1722"\w* \w consolation|strong="G3874"\w* \w of|strong="G4151"\w* \w Israel|strong="G2474"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w was|strong="G1510"\w* \w on|strong="G1909"\w* \w him|strong="G3588"\w*. +\v 26 \w It|strong="G2532"\w* \w had|strong="G2532"\w* \w been|strong="G1510"\w* \w revealed|strong="G5537"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w by|strong="G5259"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w should|strong="G3588"\w* \w not|strong="G3361"\w* \w see|strong="G3708"\w* \w death|strong="G2288"\w* \w before|strong="G4250"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w seen|strong="G3708"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*’\w s|strong="G2962"\w* \w Christ|strong="G5547"\w*.\f + \fr 2:26 \ft “Christ” (Greek) and “Messiah” (Hebrew) both mean “Anointed One”\f* +\v 27 \w He|strong="G2532"\w* \w came|strong="G2064"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w temple|strong="G2411"\w*. \w When|strong="G2532"\w* \w the|strong="G1722"\w* \w parents|strong="G1118"\w* \w brought|strong="G1521"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w child|strong="G3813"\w*, \w Jesus|strong="G2424"\w*, \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w do|strong="G4160"\w* \w concerning|strong="G4012"\w* \w him|strong="G3588"\w* \w according|strong="G2596"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w custom|strong="G1480"\w* \w of|strong="G4012"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w*, +\v 28 \w then|strong="G2532"\w* \w he|strong="G2532"\w* \w received|strong="G1209"\w* \w him|strong="G3588"\w* \w into|strong="G1519"\w* \w his|strong="G1519"\w* arms \w and|strong="G2532"\w* \w blessed|strong="G2127"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, +\q1 +\v 29 “\w Now|strong="G3568"\w* \w you|strong="G4771"\w* \w are|strong="G3588"\w* releasing \w your|strong="G1722"\w* \w servant|strong="G1401"\w*, \w Master|strong="G1203"\w*, +\q2 \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w your|strong="G1722"\w* \w word|strong="G4487"\w*, \w in|strong="G1722"\w* \w peace|strong="G1515"\w*; +\q1 +\v 30 \w for|strong="G3754"\w* \w my|strong="G3708"\w* \w eyes|strong="G3788"\w* \w have|strong="G1473"\w* \w seen|strong="G3708"\w* \w your|strong="G3708"\w* \w salvation|strong="G4992"\w*, +\q2 +\v 31 \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w have|strong="G3956"\w* \w prepared|strong="G2090"\w* \w before|strong="G2596"\w* \w the|strong="G3956"\w* \w face|strong="G4383"\w* \w of|strong="G2596"\w* \w all|strong="G3956"\w* \w peoples|strong="G2992"\w*; +\q1 +\v 32 \w a|strong="G2532"\w* \w light|strong="G5457"\w* \w for|strong="G1519"\w* revelation \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w nations|strong="G1484"\w*, +\q2 \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w of|strong="G2532"\w* \w your|strong="G2532"\w* \w people|strong="G2992"\w* \w Israel|strong="G2474"\w*.” +\p +\v 33 Joseph \w and|strong="G2532"\w* \w his|strong="G4012"\w* \w mother|strong="G3384"\w* \w were|strong="G1510"\w* \w marveling|strong="G2296"\w* \w at|strong="G1909"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w which|strong="G3588"\w* \w were|strong="G1510"\w* \w spoken|strong="G2980"\w* \w concerning|strong="G4012"\w* \w him|strong="G3588"\w*. +\v 34 \w Simeon|strong="G4826"\w* \w blessed|strong="G2127"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w Mary|strong="G3137"\w*, \w his|strong="G1438"\w* \w mother|strong="G3384"\w*, “\w Behold|strong="G2400"\w*, \w this|strong="G3778"\w* \w child|strong="G1722"\w* \w is|strong="G3588"\w* \w appointed|strong="G2749"\w* \w for|strong="G1519"\w* \w the|strong="G1722"\w* falling \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w rising|strong="G2532"\w* \w of|strong="G2532"\w* \w many|strong="G4183"\w* \w in|strong="G1722"\w* \w Israel|strong="G2474"\w*, \w and|strong="G2532"\w* \w for|strong="G1519"\w* \w a|strong="G2532"\w* \w sign|strong="G4592"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w spoken|strong="G3004"\w* \w against|strong="G4314"\w*. +\v 35 \w Yes|strong="G1161"\w*, \w a|strong="G2532"\w* \w sword|strong="G4501"\w* \w will|strong="G2532"\w* \w pierce|strong="G1330"\w* \w through|strong="G1330"\w* \w your|strong="G2532"\w* own \w soul|strong="G5590"\w*, \w that|strong="G3588"\w* \w the|strong="G2532"\w* \w thoughts|strong="G1261"\w* \w of|strong="G1537"\w* \w many|strong="G4183"\w* \w hearts|strong="G2588"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* revealed.” +\p +\v 36 \w There|strong="G2532"\w* \w was|strong="G1510"\w* \w one|strong="G3588"\w* Anna, \w a|strong="G2532"\w* \w prophetess|strong="G4398"\w*, \w the|strong="G1722"\w* \w daughter|strong="G2364"\w* \w of|strong="G1537"\w* \w Phanuel|strong="G5323"\w*, \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w tribe|strong="G5443"\w* \w of|strong="G1537"\w* Asher (\w she|strong="G2532"\w* \w was|strong="G1510"\w* \w of|strong="G1537"\w* \w a|strong="G2532"\w* \w great|strong="G4183"\w* \w age|strong="G2094"\w*, \w having|strong="G2532"\w* \w lived|strong="G2198"\w* \w with|strong="G3326"\w* \w a|strong="G2532"\w* husband \w seven|strong="G2033"\w* \w years|strong="G2094"\w* \w from|strong="G1537"\w* \w her|strong="G3588"\w* \w virginity|strong="G3932"\w*, +\v 37 \w and|strong="G2532"\w* \w she|strong="G2532"\w* \w had|strong="G2532"\w* \w been|strong="G2532"\w* \w a|strong="G2532"\w* \w widow|strong="G5503"\w* \w for|strong="G2532"\w* \w about|strong="G3588"\w* \w eighty-four|strong="G3589"\w* \w years|strong="G2094"\w*), \w who|strong="G3739"\w* didn’\w t|strong="G3588"\w* depart \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w temple|strong="G2411"\w*, \w worshiping|strong="G3000"\w* \w with|strong="G2532"\w* \w fastings|strong="G3521"\w* \w and|strong="G2532"\w* petitions \w night|strong="G3571"\w* \w and|strong="G2532"\w* \w day|strong="G2250"\w*. +\v 38 \w Coming|strong="G2316"\w* \w up|strong="G2532"\w* \w at|strong="G4012"\w* \w that|strong="G3588"\w* \w very|strong="G2532"\w* \w hour|strong="G5610"\w*, \w she|strong="G2532"\w* \w gave|strong="G2532"\w* thanks \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G3588"\w*, \w and|strong="G2532"\w* \w spoke|strong="G2980"\w* \w of|strong="G4012"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w all|strong="G3956"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w looking|strong="G4327"\w* \w for|strong="G4012"\w* \w redemption|strong="G3085"\w* \w in|strong="G2532"\w* \w Jerusalem|strong="G2419"\w*. +\p +\v 39 \w When|strong="G5613"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w accomplished|strong="G5055"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w that|strong="G3588"\w* \w were|strong="G3588"\w* \w according|strong="G2596"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w they|strong="G2532"\w* \w returned|strong="G1994"\w* \w into|strong="G1519"\w* \w Galilee|strong="G1056"\w*, \w to|strong="G1519"\w* \w their|strong="G1438"\w* \w own|strong="G1438"\w* \w city|strong="G4172"\w*, \w Nazareth|strong="G3478"\w*. +\v 40 \w The|strong="G2532"\w* \w child|strong="G3813"\w* \w was|strong="G1510"\w* growing, \w and|strong="G2532"\w* \w was|strong="G1510"\w* becoming \w strong|strong="G2901"\w* \w in|strong="G1909"\w* \w spirit|strong="G3588"\w*, \w being|strong="G1510"\w* \w filled|strong="G4137"\w* \w with|strong="G2532"\w* \w wisdom|strong="G4678"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w grace|strong="G5485"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w was|strong="G1510"\w* \w upon|strong="G1909"\w* \w him|strong="G3588"\w*. +\p +\v 41 \w His|strong="G1519"\w* \w parents|strong="G1118"\w* \w went|strong="G4198"\w* \w every|strong="G2596"\w* \w year|strong="G2094"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w* \w at|strong="G1519"\w* \w the|strong="G2532"\w* \w feast|strong="G1859"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Passover|strong="G3957"\w*. +\v 42 \w When|strong="G3753"\w* \w he|strong="G2532"\w* \w was|strong="G1096"\w* \w twelve|strong="G1427"\w* \w years|strong="G2094"\w* \w old|strong="G2094"\w*, \w they|strong="G2532"\w* \w went|strong="G2532"\w* \w up|strong="G2532"\w* \w to|strong="G2532"\w* Jerusalem \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w custom|strong="G1485"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w feast|strong="G1859"\w*; +\v 43 \w and|strong="G2532"\w* \w when|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2424"\w* \w fulfilled|strong="G5048"\w* \w the|strong="G1722"\w* \w days|strong="G2250"\w*, \w as|strong="G1722"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w returning|strong="G5290"\w*, \w the|strong="G1722"\w* \w boy|strong="G3816"\w* \w Jesus|strong="G2424"\w* \w stayed|strong="G5278"\w* \w behind|strong="G5278"\w* \w in|strong="G1722"\w* \w Jerusalem|strong="G2419"\w*. Joseph \w and|strong="G2532"\w* \w his|strong="G1438"\w* mother didn’\w t|strong="G3588"\w* \w know|strong="G1097"\w* \w it|strong="G2532"\w*, +\v 44 \w but|strong="G1161"\w* \w supposing|strong="G3543"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w be|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w company|strong="G4923"\w*, \w they|strong="G2532"\w* \w went|strong="G2064"\w* \w a|strong="G2532"\w* \w day|strong="G2250"\w*’s \w journey|strong="G3598"\w*; \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w looked|strong="G2532"\w* \w for|strong="G1161"\w* \w him|strong="G3588"\w* \w among|strong="G1722"\w* \w their|strong="G2532"\w* \w relatives|strong="G4773"\w* \w and|strong="G2532"\w* \w acquaintances|strong="G1110"\w*. +\v 45 \w When|strong="G2532"\w* \w they|strong="G2532"\w* didn’t \w find|strong="G2147"\w* \w him|strong="G2532"\w*, \w they|strong="G2532"\w* \w returned|strong="G5290"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w*, \w looking|strong="G2532"\w* \w for|strong="G1519"\w* \w him|strong="G2532"\w*. +\v 46 \w After|strong="G3326"\w* \w three|strong="G5140"\w* \w days|strong="G2250"\w* \w they|strong="G2532"\w* \w found|strong="G2147"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2411"\w*, \w sitting|strong="G2516"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w middle|strong="G3319"\w* \w of|strong="G2250"\w* \w the|strong="G1722"\w* \w teachers|strong="G1320"\w*, \w both|strong="G2532"\w* listening \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w asking|strong="G1905"\w* \w them|strong="G3588"\w* \w questions|strong="G1905"\w*. +\v 47 \w All|strong="G3956"\w* \w who|strong="G3588"\w* heard \w him|strong="G3588"\w* \w were|strong="G3588"\w* \w amazed|strong="G1839"\w* \w at|strong="G1909"\w* \w his|strong="G3956"\w* \w understanding|strong="G4907"\w* \w and|strong="G2532"\w* \w his|strong="G3956"\w* answers. +\v 48 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w saw|strong="G3708"\w* \w him|strong="G3588"\w*, \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w astonished|strong="G1605"\w*; \w and|strong="G2532"\w* \w his|strong="G4160"\w* \w mother|strong="G3384"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w Son|strong="G5043"\w*, \w why|strong="G5101"\w* \w have|strong="G2532"\w* \w you|strong="G4771"\w* \w treated|strong="G4160"\w* \w us|strong="G3004"\w* \w this|strong="G3588"\w* \w way|strong="G3779"\w*? \w Behold|strong="G2400"\w*, \w your|strong="G2532"\w* \w father|strong="G3962"\w* \w and|strong="G2532"\w* \w I|strong="G1473"\w* \w were|strong="G3588"\w* \w anxiously|strong="G3600"\w* \w looking|strong="G2212"\w* \w for|strong="G4314"\w* \w you|strong="G4771"\w*.” +\p +\v 49 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \wj “\+w Why|strong="G5101"\+w* \+w were|strong="G1510"\+w* \+w you|strong="G3754"\+w* \+w looking|strong="G2212"\+w* \+w for|strong="G3754"\+w* \+w me|strong="G1473"\+w*? Didn’\+w t|strong="G3588"\+w* \+w you|strong="G3754"\+w* \+w know|strong="G1492"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w must|strong="G1163"\+w* \+w be|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w Father|strong="G3962"\+w*’s house?”\wj* +\v 50 \w They|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w understand|strong="G4920"\w* \w the|strong="G2532"\w* \w saying|strong="G2980"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w spoke|strong="G2980"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*. +\v 51 \w And|strong="G2532"\w* \w he|strong="G2532"\w* \w went|strong="G2064"\w* \w down|strong="G2597"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w Nazareth|strong="G3478"\w*. \w He|strong="G2532"\w* \w was|strong="G1510"\w* \w subject|strong="G5293"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w his|strong="G3956"\w* \w mother|strong="G3384"\w* \w kept|strong="G1301"\w* \w all|strong="G3956"\w* \w these|strong="G3956"\w* \w sayings|strong="G4487"\w* \w in|strong="G1722"\w* \w her|strong="G1519"\w* \w heart|strong="G2588"\w*. +\v 52 \w And|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w increased|strong="G4298"\w* \w in|strong="G1722"\w* \w wisdom|strong="G4678"\w* \w and|strong="G2532"\w* \w stature|strong="G2244"\w*, \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w favor|strong="G5485"\w* \w with|strong="G1722"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w men|strong="G3588"\w*. +\c 3 +\p +\v 1 \w Now|strong="G1161"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w fifteenth|strong="G4003"\w* \w year|strong="G2094"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w reign|strong="G2231"\w* \w of|strong="G2532"\w* \w Tiberius|strong="G5086"\w* \w Caesar|strong="G2541"\w*, \w Pontius|strong="G4194"\w* \w Pilate|strong="G4091"\w* \w being|strong="G2532"\w* \w governor|strong="G2230"\w* \w of|strong="G2532"\w* \w Judea|strong="G2449"\w*, \w and|strong="G2532"\w* \w Herod|strong="G2264"\w* \w being|strong="G2532"\w* \w tetrarch|strong="G5075"\w* \w of|strong="G2532"\w* \w Galilee|strong="G1056"\w*, \w and|strong="G2532"\w* \w his|strong="G1722"\w* brother \w Philip|strong="G5376"\w* \w tetrarch|strong="G5075"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w region|strong="G5561"\w* \w of|strong="G2532"\w* \w Ituraea|strong="G2484"\w* \w and|strong="G2532"\w* \w Trachonitis|strong="G5139"\w*, \w and|strong="G2532"\w* \w Lysanias|strong="G3078"\w* \w tetrarch|strong="G5075"\w* \w of|strong="G2532"\w* Abilene, +\v 2 \w during|strong="G1722"\w* \w the|strong="G1722"\w* \w high|strong="G2532"\w* priesthood \w of|strong="G5207"\w* Annas \w and|strong="G2532"\w* \w Caiaphas|strong="G2533"\w*, \w the|strong="G1722"\w* \w word|strong="G4487"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w* \w came|strong="G1096"\w* \w to|strong="G2532"\w* \w John|strong="G2491"\w*, \w the|strong="G1722"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w Zacharias|strong="G2197"\w*, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wilderness|strong="G2048"\w*. +\v 3 \w He|strong="G2532"\w* \w came|strong="G2064"\w* \w into|strong="G1519"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w region|strong="G4066"\w* \w around|strong="G4066"\w* \w the|strong="G2532"\w* \w Jordan|strong="G2446"\w*, \w preaching|strong="G2784"\w* \w the|strong="G2532"\w* baptism \w of|strong="G2532"\w* \w repentance|strong="G3341"\w* \w for|strong="G1519"\w* remission \w of|strong="G2532"\w* sins. +\v 4 \w As|strong="G5613"\w* \w it|strong="G4160"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w book|strong="G3588"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w words|strong="G3056"\w* \w of|strong="G3056"\w* \w Isaiah|strong="G2268"\w* \w the|strong="G1722"\w* \w prophet|strong="G4396"\w*, +\q1 “\w The|strong="G1722"\w* \w voice|strong="G5456"\w* \w of|strong="G3056"\w* \w one|strong="G3588"\w* crying \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wilderness|strong="G2048"\w*, +\q2 ‘\w Make|strong="G4160"\w* \w ready|strong="G2090"\w* \w the|strong="G1722"\w* \w way|strong="G3598"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\q1 \w Make|strong="G4160"\w* \w his|strong="G1722"\w* \w paths|strong="G5147"\w* \w straight|strong="G2117"\w*. +\q2 +\v 5 \w Every|strong="G3956"\w* \w valley|strong="G5327"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w filled|strong="G4137"\w*. +\q1 \w Every|strong="G3956"\w* \w mountain|strong="G3735"\w* \w and|strong="G2532"\w* \w hill|strong="G3735"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w brought|strong="G2532"\w* \w low|strong="G5013"\w*. +\q2 \w The|strong="G2532"\w* \w crooked|strong="G4646"\w* \w will|strong="G1510"\w* \w become|strong="G1510"\w* \w straight|strong="G2117"\w*, +\q2 \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w rough|strong="G5138"\w* \w ways|strong="G3598"\w* \w smooth|strong="G3006"\w*. +\q1 +\v 6 \w All|strong="G3956"\w* \w flesh|strong="G4561"\w* \w will|strong="G2316"\w* \w see|strong="G3708"\w* \w God|strong="G2316"\w*’s \w salvation|strong="G4992"\w*.’”\x + \xo 3:6 \xt Isaiah 40:3-5\x* +\p +\v 7 \w He|strong="G3588"\w* \w said|strong="G3004"\w* \w therefore|strong="G3767"\w* \w to|strong="G3004"\w* \w the|strong="G3588"\w* \w multitudes|strong="G3793"\w* \w who|strong="G5101"\w* \w went|strong="G1607"\w* \w out|strong="G1607"\w* \w to|strong="G3004"\w* \w be|strong="G3195"\w* baptized \w by|strong="G5259"\w* \w him|strong="G3588"\w*, “\w You|strong="G5210"\w* \w offspring|strong="G1081"\w* \w of|strong="G5259"\w* \w vipers|strong="G2191"\w*, \w who|strong="G5101"\w* \w warned|strong="G5263"\w* \w you|strong="G5210"\w* \w to|strong="G3004"\w* \w flee|strong="G5343"\w* \w from|strong="G5259"\w* \w the|strong="G3588"\w* \w wrath|strong="G3709"\w* \w to|strong="G3004"\w* \w come|strong="G3195"\w*? +\v 8 \w Therefore|strong="G3767"\w* \w produce|strong="G4160"\w* \w fruits|strong="G2590"\w* worthy \w of|strong="G1537"\w* \w repentance|strong="G3341"\w*, \w and|strong="G2532"\w* don’\w t|strong="G3588"\w* begin \w to|strong="G2532"\w* \w say|strong="G3004"\w* \w among|strong="G1722"\w* \w yourselves|strong="G1438"\w*, ‘\w We|strong="G3754"\w* \w have|strong="G2192"\w* Abraham \w for|strong="G1063"\w* \w our|strong="G2316"\w* \w father|strong="G3962"\w*;’ \w for|strong="G1063"\w* \w I|strong="G2532"\w* \w tell|strong="G3004"\w* \w you|strong="G5210"\w* \w that|strong="G3754"\w* \w God|strong="G2316"\w* \w is|strong="G3588"\w* \w able|strong="G1410"\w* \w to|strong="G2532"\w* \w raise|strong="G1453"\w* \w up|strong="G1453"\w* \w children|strong="G5043"\w* \w to|strong="G2532"\w* Abraham \w from|strong="G1537"\w* \w these|strong="G3778"\w* \w stones|strong="G3037"\w*! +\v 9 \w Even|strong="G2532"\w* \w now|strong="G1161"\w* \w the|strong="G2532"\w* ax \w also|strong="G2532"\w* \w lies|strong="G2749"\w* \w at|strong="G1519"\w* \w the|strong="G2532"\w* \w root|strong="G4491"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w trees|strong="G1186"\w*. \w Every|strong="G3956"\w* \w tree|strong="G1186"\w* \w therefore|strong="G3767"\w* \w that|strong="G3588"\w* doesn’\w t|strong="G3588"\w* \w produce|strong="G4160"\w* \w good|strong="G2570"\w* \w fruit|strong="G2590"\w* \w is|strong="G3588"\w* \w cut|strong="G1581"\w* \w down|strong="G1581"\w* \w and|strong="G2532"\w* thrown \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w fire|strong="G4442"\w*.” +\p +\v 10 \w The|strong="G2532"\w* \w multitudes|strong="G3793"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w*, “\w What|strong="G5101"\w* \w then|strong="G3767"\w* \w must|strong="G4160"\w* \w we|strong="G2532"\w* \w do|strong="G4160"\w*?” +\p +\v 11 \w He|strong="G2532"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, “\w He|strong="G2532"\w* \w who|strong="G3588"\w* \w has|strong="G2192"\w* \w two|strong="G1417"\w* \w coats|strong="G5509"\w*, \w let|strong="G1161"\w* \w him|strong="G3588"\w* \w give|strong="G4160"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w has|strong="G2192"\w* \w none|strong="G3361"\w*. \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w has|strong="G2192"\w* \w food|strong="G1033"\w*, \w let|strong="G1161"\w* \w him|strong="G3588"\w* \w do|strong="G4160"\w* \w likewise|strong="G3668"\w*.” +\p +\v 12 \w Tax|strong="G5057"\w* \w collectors|strong="G5057"\w* \w also|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w be|strong="G2532"\w* baptized, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G4160"\w*, “\w Teacher|strong="G1320"\w*, \w what|strong="G5101"\w* \w must|strong="G4160"\w* \w we|strong="G2532"\w* \w do|strong="G4160"\w*?” +\p +\v 13 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, “\w Collect|strong="G4238"\w* \w no|strong="G3367"\w* \w more|strong="G4119"\w* \w than|strong="G3844"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w appointed|strong="G1299"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*.” +\p +\v 14 \w Soldiers|strong="G4754"\w* \w also|strong="G2532"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w What|strong="G5101"\w* \w about|strong="G4314"\w* \w us|strong="G3004"\w*? \w What|strong="G5101"\w* \w must|strong="G4160"\w* \w we|strong="G2249"\w* \w do|strong="G4160"\w*?” +\p \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, “Extort \w from|strong="G2532"\w* \w no|strong="G3367"\w* \w one|strong="G3367"\w* \w by|strong="G4314"\w* violence, \w neither|strong="G3366"\w* \w accuse|strong="G4811"\w* \w anyone|strong="G3367"\w* wrongfully. \w Be|strong="G2532"\w* \w content|strong="G4160"\w* \w with|strong="G4314"\w* \w your|strong="G2532"\w* \w wages|strong="G3800"\w*.” +\p +\v 15 \w As|strong="G1722"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w* \w were|strong="G1510"\w* \w in|strong="G1722"\w* \w expectation|strong="G4328"\w*, \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w* \w reasoned|strong="G1260"\w* \w in|strong="G1722"\w* \w their|strong="G2532"\w* \w hearts|strong="G2588"\w* \w concerning|strong="G4012"\w* \w John|strong="G2491"\w*, \w whether|strong="G2532"\w* \w perhaps|strong="G3379"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w the|strong="G1722"\w* \w Christ|strong="G5547"\w*, +\v 16 \w John|strong="G2491"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w* \w all|strong="G3956"\w*, “\w I|strong="G1473"\w* \w indeed|strong="G2532"\w* baptize \w you|strong="G5210"\w* \w with|strong="G1722"\w* \w water|strong="G5204"\w*, \w but|strong="G1161"\w* \w he|strong="G2532"\w* \w comes|strong="G2064"\w* \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w mightier|strong="G2478"\w* \w than|strong="G2478"\w* \w I|strong="G1473"\w*, \w the|strong="G1722"\w* strap \w of|strong="G4151"\w* \w whose|strong="G3739"\w* \w sandals|strong="G5266"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w not|strong="G3756"\w* \w worthy|strong="G2425"\w* \w to|strong="G2532"\w* loosen. \w He|strong="G2532"\w* \w will|strong="G1510"\w* baptize \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w and|strong="G2532"\w* \w fire|strong="G4442"\w*. +\v 17 \w His|strong="G1519"\w* \w winnowing|strong="G4425"\w* \w fan|strong="G4425"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w his|strong="G1519"\w* \w hand|strong="G5495"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w will|strong="G2532"\w* \w thoroughly|strong="G1245"\w* cleanse \w his|strong="G1519"\w* threshing floor, \w and|strong="G2532"\w* \w will|strong="G2532"\w* \w gather|strong="G4863"\w* \w the|strong="G1722"\w* \w wheat|strong="G4621"\w* \w into|strong="G1519"\w* \w his|strong="G1519"\w* barn; \w but|strong="G1161"\w* \w he|strong="G2532"\w* \w will|strong="G2532"\w* \w burn|strong="G2618"\w* \w up|strong="G1519"\w* \w the|strong="G1722"\w* chaff \w with|strong="G1722"\w* unquenchable \w fire|strong="G4442"\w*.” +\p +\v 18 \w Then|strong="G3767"\w* \w with|strong="G2532"\w* \w many|strong="G4183"\w* \w other|strong="G2087"\w* \w exhortations|strong="G3870"\w* \w he|strong="G2532"\w* \w preached|strong="G2097"\w* \w good|strong="G2097"\w* \w news|strong="G2097"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w*, +\v 19 \w but|strong="G1161"\w* \w Herod|strong="G2264"\w* \w the|strong="G2532"\w* \w tetrarch|strong="G5076"\w*,\f + \fr 3:19 \ft a tetrarch is one of four governors of a province\f* \w being|strong="G2532"\w* \w reproved|strong="G1651"\w* \w by|strong="G5259"\w* \w him|strong="G3588"\w* \w for|strong="G4012"\w* \w Herodias|strong="G2266"\w*, \w his|strong="G3956"\w* brother’s\f + \fr 3:19 \ft TR reads “brother Philip’s” instead of “brother’s”\f* \w wife|strong="G1135"\w*, \w and|strong="G2532"\w* \w for|strong="G4012"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w evil|strong="G4190"\w* \w things|strong="G3956"\w* \w which|strong="G3739"\w* \w Herod|strong="G2264"\w* \w had|strong="G2532"\w* \w done|strong="G4160"\w*, +\v 20 \w added|strong="G4369"\w* \w this|strong="G3778"\w* \w also|strong="G2532"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w all|strong="G3956"\w*, \w that|strong="G3588"\w* \w he|strong="G2532"\w* shut \w up|strong="G2623"\w* \w John|strong="G2491"\w* \w in|strong="G1722"\w* \w prison|strong="G5438"\w*. +\p +\v 21 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w all|strong="G2532"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w* \w were|strong="G3588"\w* baptized, \w Jesus|strong="G2424"\w* \w also|strong="G2532"\w* \w had|strong="G2424"\w* \w been|strong="G1096"\w* baptized \w and|strong="G2532"\w* \w was|strong="G1096"\w* \w praying|strong="G4336"\w*. \w The|strong="G1722"\w* \w sky|strong="G3772"\w* \w was|strong="G1096"\w* opened, +\v 22 \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w descended|strong="G2597"\w* \w in|strong="G1722"\w* \w a|strong="G1096"\w* \w bodily|strong="G4984"\w* \w form|strong="G1491"\w* \w like|strong="G5613"\w* \w a|strong="G1096"\w* \w dove|strong="G4058"\w* \w on|strong="G1909"\w* \w him|strong="G3588"\w*; \w and|strong="G2532"\w* \w a|strong="G1096"\w* \w voice|strong="G5456"\w* \w came|strong="G1096"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w sky|strong="G3772"\w*, saying “\w You|strong="G4771"\w* \w are|strong="G1510"\w* \w my|strong="G1722"\w* beloved \w Son|strong="G5207"\w*. \w In|strong="G1722"\w* \w you|strong="G4771"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w well|strong="G2532"\w* \w pleased|strong="G2106"\w*.” +\p +\v 23 \w Jesus|strong="G2424"\w* himself, \w when|strong="G5613"\w* \w he|strong="G2532"\w* began \w to|strong="G2532"\w* teach, \w was|strong="G1510"\w* \w about|strong="G5613"\w* \w thirty|strong="G5144"\w* \w years|strong="G2094"\w* \w old|strong="G2094"\w*, \w being|strong="G1510"\w* \w the|strong="G2532"\w* \w son|strong="G5207"\w* (\w as|strong="G5613"\w* \w was|strong="G1510"\w* \w supposed|strong="G3543"\w*) \w of|strong="G5207"\w* \w Joseph|strong="G2501"\w*, \w the|strong="G2532"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w Heli|strong="G2242"\w*, +\v 24 \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Matthat|strong="G3158"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Levi|strong="G3017"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Melchi|strong="G3197"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Jannai|strong="G2388"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Joseph|strong="G2501"\w*, +\v 25 \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Mattathias|strong="G3161"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* Amos, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Nahum|strong="G3486"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Esli|strong="G2069"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Naggai|strong="G3477"\w*, +\v 26 \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Maath|strong="G3092"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Mattathias|strong="G3161"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Semein|strong="G4584"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Joseph|strong="G2501"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Judah|strong="G2448"\w*, +\v 27 \w the|strong="G3588"\w* son \w of|strong="G3588"\w* Joanan, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Rhesa|strong="G4488"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Zerubbabel|strong="G2216"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Shealtiel|strong="G4528"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Neri|strong="G3518"\w*, +\v 28 \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Melchi|strong="G3197"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* Addi, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Cosam|strong="G2973"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Elmodam|strong="G1678"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Er|strong="G2262"\w*, +\v 29 \w the|strong="G3588"\w* son \w of|strong="G2424"\w* Jose, \w the|strong="G3588"\w* son \w of|strong="G2424"\w* \w Eliezer|strong="G1663"\w*, \w the|strong="G3588"\w* son \w of|strong="G2424"\w* \w Jorim|strong="G2497"\w*, \w the|strong="G3588"\w* son \w of|strong="G2424"\w* \w Matthat|strong="G3158"\w*, \w the|strong="G3588"\w* son \w of|strong="G2424"\w* \w Levi|strong="G3017"\w*, +\v 30 \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Simeon|strong="G4826"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Judah|strong="G2455"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Joseph|strong="G2501"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Jonan|strong="G2494"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Eliakim|strong="G1662"\w*, +\v 31 \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Melea|strong="G3190"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Menan|strong="G3104"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Mattatha|strong="G3160"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Nathan|strong="G3481"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w David|strong="G1138"\w*, +\v 32 \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Jesse|strong="G2421"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Obed|strong="G5601"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Boaz|strong="G1003"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* Salmon, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Nahshon|strong="G3476"\w*, +\v 33 \w the|strong="G3588"\w* son \w of|strong="G3588"\w* Amminadab, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* Aram,\f + \fr 3:33 \ft NU reads “Admin, the son of Arni” instead of “Aram”\f* \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Hezron|strong="G2074"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Perez|strong="G5329"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Judah|strong="G2455"\w*, +\v 34 \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Jacob|strong="G2384"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Isaac|strong="G2464"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* Abraham, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Terah|strong="G2291"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Nahor|strong="G3493"\w*, +\v 35 \w the|strong="G3588"\w* son \w of|strong="G3588"\w* Serug, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Reu|strong="G4466"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Peleg|strong="G5317"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* Eber, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Shelah|strong="G4527"\w*, +\v 36 \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Cainan|strong="G2536"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* Arphaxad, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Shem|strong="G4590"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Noah|strong="G3575"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Lamech|strong="G2984"\w*, +\v 37 \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Methuselah|strong="G3103"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Enoch|strong="G1802"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Jared|strong="G2391"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Mahalaleel|strong="G3121"\w*, \w the|strong="G3588"\w* son \w of|strong="G3588"\w* \w Cainan|strong="G2536"\w*, +\v 38 \w the|strong="G3588"\w* son \w of|strong="G2316"\w* \w Enos|strong="G1800"\w*, \w the|strong="G3588"\w* son \w of|strong="G2316"\w* \w Seth|strong="G4589"\w*, \w the|strong="G3588"\w* son \w of|strong="G2316"\w* Adam, \w the|strong="G3588"\w* son \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\c 4 +\p +\v 1 \w Jesus|strong="G2424"\w*, \w full|strong="G4134"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*, \w returned|strong="G5290"\w* \w from|strong="G2532"\w* \w the|strong="G1722"\w* \w Jordan|strong="G2446"\w* \w and|strong="G2532"\w* \w was|strong="G3588"\w* \w led|strong="G2424"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w into|strong="G1722"\w* \w the|strong="G1722"\w* \w wilderness|strong="G2048"\w* +\v 2 \w for|strong="G1722"\w* \w forty|strong="G5062"\w* \w days|strong="G2250"\w*, \w being|strong="G2532"\w* \w tempted|strong="G3985"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w devil|strong="G1228"\w*. \w He|strong="G2532"\w* \w ate|strong="G2068"\w* \w nothing|strong="G3762"\w* \w in|strong="G1722"\w* \w those|strong="G3588"\w* \w days|strong="G2250"\w*. Afterward, \w when|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* completed, \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w hungry|strong="G3983"\w*. +\p +\v 3 \w The|strong="G1161"\w* \w devil|strong="G1228"\w* \w said|strong="G3004"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w*, “\w If|strong="G1487"\w* \w you|strong="G1487"\w* \w are|strong="G1510"\w* \w the|strong="G1161"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*, \w command|strong="G3004"\w* \w this|strong="G3778"\w* \w stone|strong="G3037"\w* \w to|strong="G2443"\w* \w become|strong="G1096"\w* bread.” +\p +\v 4 \w Jesus|strong="G2424"\w* answered \w him|strong="G3588"\w*, \w saying|strong="G3754"\w*, \wj “\+w It|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w written|strong="G1125"\+w*, ‘\+w Man|strong="G3756"\+w* \+w shall|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w live|strong="G2198"\+w* \+w by|strong="G1909"\+w* bread \+w alone|strong="G3441"\+w*, \+w but|strong="G2532"\+w* \+w by|strong="G1909"\+w* \+w every|strong="G2532"\+w* \+w word|strong="G3588"\+w* \+w of|strong="G2532"\+w* \+w God|strong="G2532"\+w*.’”\wj*\x + \xo 4:4 \xt Deuteronomy 8:3\x* +\p +\v 5 \w The|strong="G1722"\w* devil, leading \w him|strong="G3588"\w* \w up|strong="G2532"\w* \w on|strong="G1722"\w* \w a|strong="G2532"\w* \w high|strong="G3956"\w* mountain, \w showed|strong="G1166"\w* \w him|strong="G3588"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* kingdoms \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w world|strong="G3625"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* \w moment|strong="G4743"\w* \w of|strong="G2532"\w* \w time|strong="G5550"\w*. +\v 6 \w The|strong="G2532"\w* \w devil|strong="G1228"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w I|strong="G1473"\w* \w will|strong="G2309"\w* \w give|strong="G1325"\w* \w you|strong="G4771"\w* \w all|strong="G2532"\w* \w this|strong="G3778"\w* \w authority|strong="G1849"\w* \w and|strong="G2532"\w* \w their|strong="G1438"\w* \w glory|strong="G1391"\w*, \w for|strong="G3754"\w* \w it|strong="G2532"\w* \w has|strong="G3739"\w* \w been|strong="G2532"\w* \w delivered|strong="G3860"\w* \w to|strong="G2532"\w* \w me|strong="G1325"\w*, \w and|strong="G2532"\w* \w I|strong="G1473"\w* \w give|strong="G1325"\w* \w it|strong="G2532"\w* \w to|strong="G2532"\w* \w whomever|strong="G3739"\w* \w I|strong="G1473"\w* \w want|strong="G2309"\w*. +\v 7 \w If|strong="G1437"\w* \w you|strong="G4771"\w* \w therefore|strong="G3767"\w* \w will|strong="G1510"\w* \w worship|strong="G4352"\w* \w before|strong="G1799"\w* \w me|strong="G1473"\w*, \w it|strong="G1437"\w* \w will|strong="G1510"\w* \w all|strong="G3956"\w* \w be|strong="G1510"\w* \w yours|strong="G4771"\w*.” +\p +\v 8 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w Get|strong="G2532"\+w* behind \+w me|strong="G3004"\+w*, Satan! \+w For|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w written|strong="G1125"\+w*, ‘\+w You|strong="G4771"\+w* \+w shall|strong="G2532"\+w* \+w worship|strong="G4352"\+w* \+w the|strong="G2532"\+w* \+w Lord|strong="G2962"\+w* \+w your|strong="G2962"\+w* \+w God|strong="G2316"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w shall|strong="G2532"\+w* \+w serve|strong="G3000"\+w* \+w him|strong="G3588"\+w* \+w only|strong="G3441"\+w*.’”\wj*\x + \xo 4:8 \xt Deuteronomy 6:13\x* +\p +\v 9 \w He|strong="G2532"\w* led \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w* \w and|strong="G2532"\w* \w set|strong="G2476"\w* \w him|strong="G3588"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w pinnacle|strong="G4419"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w temple|strong="G2411"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, “\w If|strong="G1487"\w* \w you|strong="G1487"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*, \w cast|strong="G2532"\w* \w yourself|strong="G4572"\w* \w down|strong="G2736"\w* \w from|strong="G2532"\w* \w here|strong="G1782"\w*, +\v 10 \w for|strong="G1063"\w* \w it|strong="G3754"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, +\q1 ‘\w He|strong="G3754"\w* \w will|strong="G3748"\w* put \w his|strong="G4012"\w* angels \w in|strong="G1125"\w* \w charge|strong="G1781"\w* \w of|strong="G4012"\w* \w you|strong="G4771"\w*, \w to|strong="G1063"\w* \w guard|strong="G1314"\w* \w you|strong="G4771"\w*;’ +\p +\v 11 \w and|strong="G2532"\w*, +\q1 ‘\w On|strong="G1909"\w* \w their|strong="G2532"\w* \w hands|strong="G5495"\w* \w they|strong="G2532"\w* \w will|strong="G2532"\w* \w bear|strong="G2532"\w* \w you|strong="G4771"\w* \w up|strong="G2532"\w*, +\q2 \w lest|strong="G3379"\w* \w perhaps|strong="G3379"\w* \w you|strong="G4771"\w* \w dash|strong="G4350"\w* \w your|strong="G2532"\w* \w foot|strong="G4228"\w* \w against|strong="G1909"\w* \w a|strong="G2532"\w* \w stone|strong="G3037"\w*.’”\x + \xo 4:11 \xt Psalms 91:11-12 \x* +\p +\v 12 \w Jesus|strong="G2424"\w* answering, \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w It|strong="G2532"\+w* \+w has|strong="G2316"\+w* \+w been|strong="G2532"\+w* \+w said|strong="G3004"\+w*, ‘\+w You|strong="G4771"\+w* \+w shall|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w tempt|strong="G1598"\+w* \+w the|strong="G2532"\+w* \+w Lord|strong="G2962"\+w* \+w your|strong="G2962"\+w* \+w God|strong="G2316"\+w*.’”\wj*\x + \xo 4:12 \xt Deuteronomy 6:16\x* +\p +\v 13 \w When|strong="G2532"\w* \w the|strong="G2532"\w* \w devil|strong="G1228"\w* \w had|strong="G2532"\w* completed \w every|strong="G3956"\w* \w temptation|strong="G3986"\w*, \w he|strong="G2532"\w* departed \w from|strong="G2532"\w* \w him|strong="G3588"\w* \w until|strong="G2532"\w* \w another|strong="G3588"\w* \w time|strong="G2540"\w*. +\p +\v 14 \w Jesus|strong="G2424"\w* \w returned|strong="G5290"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w power|strong="G1411"\w* \w of|strong="G4012"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w into|strong="G1519"\w* \w Galilee|strong="G1056"\w*, \w and|strong="G2532"\w* \w news|strong="G5345"\w* \w about|strong="G4012"\w* \w him|strong="G3588"\w* \w spread|strong="G1831"\w* \w through|strong="G1722"\w* \w all|strong="G3650"\w* \w the|strong="G1722"\w* \w surrounding|strong="G4066"\w* area. +\v 15 \w He|strong="G2532"\w* \w taught|strong="G1321"\w* \w in|strong="G1722"\w* \w their|strong="G2532"\w* \w synagogues|strong="G4864"\w*, \w being|strong="G2532"\w* \w glorified|strong="G1392"\w* \w by|strong="G1722"\w* \w all|strong="G3956"\w*. +\p +\v 16 \w He|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w Nazareth|strong="G3478"\w*, \w where|strong="G3757"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w been|strong="G1510"\w* \w brought|strong="G2064"\w* \w up|strong="G1519"\w*. \w He|strong="G2532"\w* \w entered|strong="G1525"\w*, \w as|strong="G1519"\w* \w was|strong="G1510"\w* \w his|strong="G1519"\w* \w custom|strong="G1486"\w*, \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w synagogue|strong="G4864"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w Sabbath|strong="G4521"\w* \w day|strong="G2250"\w*, \w and|strong="G2532"\w* \w stood|strong="G3588"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* read. +\v 17 \w The|strong="G2532"\w* \w book|strong="G3588"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w prophet|strong="G4396"\w* \w Isaiah|strong="G2268"\w* \w was|strong="G1510"\w* \w handed|strong="G1929"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*. \w He|strong="G2532"\w* opened \w the|strong="G2532"\w* \w book|strong="G3588"\w*, \w and|strong="G2532"\w* \w found|strong="G2147"\w* \w the|strong="G2532"\w* \w place|strong="G5117"\w* \w where|strong="G3757"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w written|strong="G1125"\w*, +\q1 +\v 18 \wj “\+w The|strong="G1722"\+w* \+w Spirit|strong="G4151"\+w* \+w of|strong="G4151"\+w* \+w the|strong="G1722"\+w* \+w Lord|strong="G2962"\+w* \+w is|strong="G3739"\+w* \+w on|strong="G1909"\+w* \+w me|strong="G1473"\+w*,\wj* +\q2 \wj \+w because|strong="G1909"\+w* \+w he|strong="G2532"\+w* \+w has|strong="G2962"\+w* \+w anointed|strong="G5548"\+w* \+w me|strong="G1473"\+w* \+w to|strong="G2532"\+w* \+w preach|strong="G2784"\+w* \+w good|strong="G2097"\+w* \+w news|strong="G2097"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w poor|strong="G4434"\+w*.\wj* +\q1 \wj \+w He|strong="G2532"\+w* \+w has|strong="G2962"\+w* \+w sent|strong="G2532"\+w* \+w me|strong="G1473"\+w* \+w to|strong="G2532"\+w* heal \+w the|strong="G1722"\+w* broken hearted,\wj*\f + \fr 4:18 \ft NU omits “to heal the broken hearted”\f* +\q2 \wj \+w to|strong="G2532"\+w* \+w proclaim|strong="G2784"\+w* release \+w to|strong="G2532"\+w* \+w the|strong="G1722"\+w* captives,\wj* +\q2 \wj recovering \+w of|strong="G4151"\+w* sight \+w to|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w blind|strong="G5185"\+w*,\wj* +\q2 \wj \+w to|strong="G2532"\+w* deliver \+w those|strong="G1722"\+w* \+w who|strong="G3739"\+w* \+w are|strong="G3739"\+w* crushed,\wj* +\q2 +\v 19 \wj \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w proclaim|strong="G2784"\+w* \+w the|strong="G1722"\+w* \+w acceptable|strong="G1184"\+w* \+w year|strong="G1763"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w Lord|strong="G2962"\+w*.”\wj*\x + \xo 4:19 \xt Isaiah 61:1-2\x* +\p +\v 20 \w He|strong="G2532"\w* \w closed|strong="G4428"\w* \w the|strong="G1722"\w* \w book|strong="G3588"\w*, \w gave|strong="G2532"\w* \w it|strong="G2532"\w* back \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w attendant|strong="G5257"\w*, \w and|strong="G2532"\w* \w sat|strong="G2523"\w* \w down|strong="G2523"\w*. \w The|strong="G1722"\w* \w eyes|strong="G3788"\w* \w of|strong="G2532"\w* \w all|strong="G3956"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w synagogue|strong="G4864"\w* \w were|strong="G1510"\w* fastened \w on|strong="G1722"\w* \w him|strong="G3588"\w*. +\v 21 \w He|strong="G1161"\w* \w began|strong="G1161"\w* \w to|strong="G4314"\w* \w tell|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Today|strong="G4594"\+w*, \+w this|strong="G3778"\+w* \+w Scripture|strong="G1124"\+w* \+w has|strong="G3778"\+w* been \+w fulfilled|strong="G4137"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G1722"\+w* \+w hearing|strong="G3775"\+w*.”\wj* +\p +\v 22 \w All|strong="G3956"\w* \w testified|strong="G3140"\w* \w about|strong="G1909"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w wondered|strong="G2296"\w* \w at|strong="G1909"\w* \w the|strong="G2532"\w* \w gracious|strong="G5485"\w* \w words|strong="G3056"\w* \w which|strong="G3588"\w* \w proceeded|strong="G1607"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w his|strong="G3956"\w* \w mouth|strong="G4750"\w*; \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w said|strong="G3004"\w*, “Isn’\w t|strong="G3588"\w* \w this|strong="G3778"\w* \w Joseph|strong="G2501"\w*’s \w son|strong="G5207"\w*?” +\p +\v 23 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “Doubtless \+w you|strong="G4771"\+w* \+w will|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w me|strong="G1473"\+w* \+w this|strong="G3778"\+w* \+w proverb|strong="G3850"\+w*, ‘\+w Physician|strong="G2395"\+w*, \+w heal|strong="G2323"\+w* \+w yourself|strong="G4572"\+w*! \+w Whatever|strong="G3745"\+w* \+w we|strong="G2532"\+w* \+w have|strong="G2532"\+w* heard \+w done|strong="G4160"\+w* \+w at|strong="G1722"\+w* \+w Capernaum|strong="G2584"\+w*, \+w do|strong="G4160"\+w* \+w also|strong="G2532"\+w* \+w here|strong="G5602"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G2532"\+w* \+w hometown|strong="G3968"\+w*.’”\wj* +\v 24 \w He|strong="G1161"\w* \w said|strong="G3004"\w*, \wj “Most certainly \+w I|strong="G1161"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w no|strong="G3762"\+w* \+w prophet|strong="G4396"\+w* \+w is|strong="G1510"\+w* \+w acceptable|strong="G1184"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G1438"\+w* \+w hometown|strong="G3968"\+w*. \wj* +\v 25 \wj \+w But|strong="G1161"\+w* \+w truly|strong="G1909"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w there|strong="G2532"\+w* \+w were|strong="G1510"\+w* \+w many|strong="G4183"\+w* \+w widows|strong="G5503"\+w* \+w in|strong="G1722"\+w* \+w Israel|strong="G2474"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w days|strong="G2250"\+w* \+w of|strong="G2250"\+w* \+w Elijah|strong="G2243"\+w*, \+w when|strong="G3753"\+w* \+w the|strong="G1722"\+w* \+w sky|strong="G3772"\+w* \+w was|strong="G1510"\+w* \+w shut|strong="G2808"\+w* \+w up|strong="G2808"\+w* \+w three|strong="G5140"\+w* \+w years|strong="G2094"\+w* \+w and|strong="G2532"\+w* \+w six|strong="G1803"\+w* \+w months|strong="G3376"\+w*, \+w when|strong="G3753"\+w* \+w a|strong="G1096"\+w* \+w great|strong="G3173"\+w* \+w famine|strong="G3042"\+w* \+w came|strong="G1096"\+w* \+w over|strong="G1909"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G1722"\+w* \+w land|strong="G1093"\+w*. \wj* +\v 26 \wj \+w Elijah|strong="G2243"\+w* \+w was|strong="G3588"\+w* \+w sent|strong="G3992"\+w* \+w to|strong="G1519"\+w* \+w none|strong="G3762"\+w* \+w of|strong="G2532"\+w* \+w them|strong="G3588"\+w*, \+w except|strong="G1487"\+w* \+w to|strong="G1519"\+w* \+w Zarephath|strong="G4558"\+w*, \+w in|strong="G1519"\+w* \+w the|strong="G2532"\+w* land \+w of|strong="G2532"\+w* \+w Sidon|strong="G4606"\+w*, \+w to|strong="G1519"\+w* \+w a|strong="G2532"\+w* \+w woman|strong="G1135"\+w* \+w who|strong="G3588"\+w* \+w was|strong="G3588"\+w* \+w a|strong="G2532"\+w* \+w widow|strong="G5503"\+w*. \wj* +\v 27 \wj \+w There|strong="G2532"\+w* \+w were|strong="G1510"\+w* \+w many|strong="G4183"\+w* \+w lepers|strong="G3015"\+w* \+w in|strong="G1722"\+w* \+w Israel|strong="G2474"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w time|strong="G1909"\+w* \+w of|strong="G2532"\+w* \+w Elisha|strong="G1666"\+w* \+w the|strong="G1722"\+w* \+w prophet|strong="G4396"\+w*, \+w yet|strong="G2532"\+w* \+w not|strong="G3361"\+w* \+w one|strong="G3762"\+w* \+w of|strong="G2532"\+w* \+w them|strong="G3588"\+w* \+w was|strong="G1510"\+w* \+w cleansed|strong="G2511"\+w*, \+w except|strong="G1487"\+w* \+w Naaman|strong="G3497"\+w*, \+w the|strong="G1722"\+w* \+w Syrian|strong="G4948"\+w*.”\wj* +\p +\v 28 \w They|strong="G2532"\w* \w were|strong="G3588"\w* \w all|strong="G3956"\w* \w filled|strong="G4130"\w* \w with|strong="G1722"\w* \w wrath|strong="G2372"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w synagogue|strong="G4864"\w* \w as|strong="G1722"\w* \w they|strong="G2532"\w* heard \w these|strong="G3778"\w* \w things|strong="G3956"\w*. +\v 29 \w They|strong="G2532"\w* \w rose|strong="G2532"\w* \w up|strong="G3618"\w*, \w threw|strong="G1544"\w* \w him|strong="G3588"\w* \w out|strong="G1544"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w*, \w and|strong="G2532"\w* led \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w brow|strong="G3790"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w hill|strong="G3735"\w* \w that|strong="G3739"\w* \w their|strong="G2532"\w* \w city|strong="G4172"\w* \w was|strong="G3588"\w* \w built|strong="G3618"\w* \w on|strong="G1909"\w*, \w that|strong="G3739"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w throw|strong="G1544"\w* \w him|strong="G3588"\w* off \w the|strong="G2532"\w* \w cliff|strong="G2630"\w*. +\v 30 \w But|strong="G1161"\w* \w he|strong="G1161"\w*, \w passing|strong="G1330"\w* \w through|strong="G1223"\w* \w the|strong="G1161"\w* \w middle|strong="G3319"\w* \w of|strong="G1223"\w* \w them|strong="G1223"\w*, \w went|strong="G4198"\w* \w his|strong="G1223"\w* \w way|strong="G4198"\w*. +\p +\v 31 \w He|strong="G2532"\w* \w came|strong="G2718"\w* \w down|strong="G2718"\w* \w to|strong="G1519"\w* \w Capernaum|strong="G2584"\w*, \w a|strong="G2532"\w* \w city|strong="G4172"\w* \w of|strong="G2532"\w* \w Galilee|strong="G1056"\w*. \w He|strong="G2532"\w* \w was|strong="G1510"\w* \w teaching|strong="G1321"\w* \w them|strong="G3588"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w Sabbath|strong="G4521"\w* \w day|strong="G4521"\w*, +\v 32 \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w astonished|strong="G1605"\w* \w at|strong="G1722"\w* \w his|strong="G1909"\w* \w teaching|strong="G1322"\w*, \w for|strong="G3754"\w* \w his|strong="G1909"\w* \w word|strong="G3056"\w* \w was|strong="G1510"\w* \w with|strong="G1722"\w* \w authority|strong="G1849"\w*. +\v 33 \w In|strong="G1722"\w* \w the|strong="G1722"\w* \w synagogue|strong="G4864"\w* \w there|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2192"\w* man \w who|strong="G3588"\w* \w had|strong="G2192"\w* \w a|strong="G2192"\w* \w spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w an|strong="G2192"\w* unclean \w demon|strong="G1140"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w cried|strong="G2532"\w* \w out|strong="G2532"\w* \w with|strong="G1722"\w* \w a|strong="G2192"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, +\v 34 saying, “Ah! \w what|strong="G5101"\w* \w have|strong="G2532"\w* \w we|strong="G2249"\w* \w to|strong="G2532"\w* \w do|strong="G5101"\w* \w with|strong="G2532"\w* \w you|strong="G4771"\w*, \w Jesus|strong="G2424"\w* \w of|strong="G2316"\w* \w Nazareth|strong="G3479"\w*? \w Have|strong="G2532"\w* \w you|strong="G4771"\w* \w come|strong="G2064"\w* \w to|strong="G2532"\w* destroy \w us|strong="G2249"\w*? \w I|strong="G1473"\w* \w know|strong="G1492"\w* \w who|strong="G5101"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w*: \w the|strong="G2532"\w* Holy \w One|strong="G3588"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*!” +\p +\v 35 \w Jesus|strong="G2424"\w* \w rebuked|strong="G2008"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, \wj “\+w Be|strong="G2532"\+w* silent \+w and|strong="G2532"\+w* \+w come|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w of|strong="G2532"\+w* \+w him|strong="G3588"\+w*!” \wj* \w When|strong="G2532"\w* \w the|strong="G2532"\w* \w demon|strong="G1140"\w* \w had|strong="G2424"\w* \w thrown|strong="G4496"\w* \w him|strong="G3588"\w* \w down|strong="G4496"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w middle|strong="G3319"\w* \w of|strong="G2532"\w* \w them|strong="G3588"\w*, \w he|strong="G2532"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G2532"\w* \w him|strong="G3588"\w*, \w having|strong="G2532"\w* done \w him|strong="G3588"\w* \w no|strong="G3367"\w* harm. +\p +\v 36 \w Amazement|strong="G2285"\w* \w came|strong="G1096"\w* \w on|strong="G1909"\w* \w all|strong="G3956"\w* \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w spoke|strong="G3004"\w* \w together|strong="G1909"\w*, \w one|strong="G3956"\w* \w with|strong="G1722"\w* \w another|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w What|strong="G5101"\w* \w is|strong="G3588"\w* \w this|strong="G3778"\w* \w word|strong="G3056"\w*? \w For|strong="G3754"\w* \w with|strong="G1722"\w* \w authority|strong="G1849"\w* \w and|strong="G2532"\w* \w power|strong="G1411"\w* \w he|strong="G2532"\w* \w commands|strong="G2004"\w* \w the|strong="G1722"\w* unclean \w spirits|strong="G4151"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w come|strong="G1096"\w* \w out|strong="G1831"\w*!” +\v 37 News \w about|strong="G4012"\w* \w him|strong="G3588"\w* \w went|strong="G2532"\w* \w out|strong="G1607"\w* \w into|strong="G1519"\w* \w every|strong="G3956"\w* \w place|strong="G5117"\w* \w of|strong="G4012"\w* \w the|strong="G2532"\w* \w surrounding|strong="G4066"\w* \w region|strong="G4066"\w*. +\p +\v 38 \w He|strong="G2532"\w* \w rose|strong="G2532"\w* \w up|strong="G1519"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w synagogue|strong="G4864"\w* \w and|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w Simon|strong="G4613"\w*’s \w house|strong="G3614"\w*. \w Simon|strong="G4613"\w*’s \w mother-in-law|strong="G3994"\w* \w was|strong="G1510"\w* \w afflicted|strong="G4912"\w* \w with|strong="G2532"\w* \w a|strong="G2532"\w* \w great|strong="G3173"\w* \w fever|strong="G4446"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w begged|strong="G2065"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w help|strong="G4012"\w* \w her|strong="G1519"\w*. +\v 39 \w He|strong="G2532"\w* \w stood|strong="G2186"\w* \w over|strong="G1883"\w* \w her|strong="G1438"\w* \w and|strong="G2532"\w* \w rebuked|strong="G2008"\w* \w the|strong="G2532"\w* \w fever|strong="G4446"\w*, \w and|strong="G2532"\w* \w it|strong="G2532"\w* left \w her|strong="G1438"\w*. \w Immediately|strong="G3916"\w* \w she|strong="G2532"\w* \w rose|strong="G2532"\w* \w up|strong="G2532"\w* \w and|strong="G2532"\w* \w served|strong="G1247"\w* \w them|strong="G3588"\w*. +\v 40 \w When|strong="G1161"\w* \w the|strong="G3956"\w* \w sun|strong="G2246"\w* \w was|strong="G3588"\w* \w setting|strong="G1416"\w*, \w all|strong="G3956"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w had|strong="G2192"\w* \w any|strong="G3956"\w* \w sick|strong="G3956"\w* \w with|strong="G4314"\w* \w various|strong="G4164"\w* \w diseases|strong="G3554"\w* \w brought|strong="G1161"\w* \w them|strong="G3588"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*; \w and|strong="G1161"\w* \w he|strong="G1161"\w* \w laid|strong="G2007"\w* \w his|strong="G1438"\w* \w hands|strong="G5495"\w* \w on|strong="G5495"\w* \w every|strong="G3956"\w* \w one|strong="G1520"\w* \w of|strong="G1520"\w* \w them|strong="G3588"\w*, \w and|strong="G1161"\w* \w healed|strong="G2323"\w* \w them|strong="G3588"\w*. +\v 41 \w Demons|strong="G1140"\w* \w also|strong="G2532"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G5207"\w* \w many|strong="G4183"\w*, \w crying|strong="G2905"\w* \w out|strong="G1831"\w* \w and|strong="G2532"\w* \w saying|strong="G3004"\w*, “\w You|strong="G4771"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* \w Christ|strong="G5547"\w*, \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*!” \w Rebuking|strong="G2008"\w* \w them|strong="G3588"\w*, \w he|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w allow|strong="G1439"\w* \w them|strong="G3588"\w* \w to|strong="G2532"\w* \w speak|strong="G2980"\w*, \w because|strong="G3754"\w* \w they|strong="G2532"\w* \w knew|strong="G1492"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w the|strong="G2532"\w* \w Christ|strong="G5547"\w*. +\p +\v 42 \w When|strong="G1161"\w* \w it|strong="G2532"\w* \w was|strong="G1096"\w* \w day|strong="G2250"\w*, \w he|strong="G2532"\w* \w departed|strong="G1831"\w* \w and|strong="G2532"\w* \w went|strong="G1831"\w* \w into|strong="G1519"\w* \w an|strong="G2532"\w* uninhabited \w place|strong="G5117"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w* \w looked|strong="G2532"\w* \w for|strong="G1519"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w held|strong="G2722"\w* \w on|strong="G1519"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* wouldn’\w t|strong="G3588"\w* \w go|strong="G4198"\w* \w away|strong="G1831"\w* \w from|strong="G2064"\w* \w them|strong="G3588"\w*. +\v 43 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \wj “\+w I|strong="G1473"\+w* \+w must|strong="G1163"\+w* \+w preach|strong="G2097"\+w* \+w the|strong="G2532"\+w* \+w good|strong="G2097"\+w* \+w news|strong="G2097"\+w* \+w of|strong="G2316"\+w* \+w God|strong="G2316"\+w*’s Kingdom \+w to|strong="G4314"\+w* \+w the|strong="G2532"\+w* \+w other|strong="G2087"\+w* \+w cities|strong="G4172"\+w* \+w also|strong="G2532"\+w*. \+w For|strong="G3754"\+w* \+w this|strong="G3778"\+w* reason \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w been|strong="G2532"\+w* \+w sent|strong="G2316"\+w*.”\wj* +\v 44 \w He|strong="G2532"\w* \w was|strong="G1510"\w* \w preaching|strong="G2784"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w synagogues|strong="G4864"\w* \w of|strong="G2532"\w* \w Galilee|strong="G1056"\w*. +\c 5 +\p +\v 1 \w Now|strong="G1161"\w* \w while|strong="G1722"\w* \w the|strong="G1722"\w* \w multitude|strong="G3793"\w* \w pressed|strong="G3793"\w* \w on|strong="G1722"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* heard \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w*, \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w standing|strong="G2476"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w lake|strong="G3041"\w* \w of|strong="G3056"\w* \w Gennesaret|strong="G1082"\w*. +\v 2 \w He|strong="G2532"\w* \w saw|strong="G3708"\w* \w two|strong="G1417"\w* \w boats|strong="G4143"\w* \w standing|strong="G2476"\w* \w by|strong="G3844"\w* \w the|strong="G2532"\w* \w lake|strong="G3041"\w*, \w but|strong="G1161"\w* \w the|strong="G2532"\w* fishermen \w had|strong="G2532"\w* gone \w out|strong="G2532"\w* \w of|strong="G2532"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w were|strong="G3588"\w* \w washing|strong="G4150"\w* \w their|strong="G2532"\w* \w nets|strong="G1350"\w*. +\v 3 \w He|strong="G1161"\w* \w entered|strong="G1684"\w* \w into|strong="G1519"\w* \w one|strong="G1520"\w* \w of|strong="G1093"\w* \w the|strong="G1722"\w* \w boats|strong="G4143"\w*, \w which|strong="G3739"\w* \w was|strong="G1510"\w* \w Simon|strong="G4613"\w*’s, \w and|strong="G1161"\w* \w asked|strong="G2065"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w put|strong="G1877"\w* \w out|strong="G1877"\w* \w a|strong="G1519"\w* \w little|strong="G3641"\w* \w from|strong="G3588"\w* \w the|strong="G1722"\w* \w land|strong="G1093"\w*. \w He|strong="G1161"\w* \w sat|strong="G2523"\w* \w down|strong="G2523"\w* \w and|strong="G1161"\w* \w taught|strong="G1321"\w* \w the|strong="G1722"\w* \w multitudes|strong="G3793"\w* \w from|strong="G3588"\w* \w the|strong="G1722"\w* \w boat|strong="G4143"\w*. +\p +\v 4 \w When|strong="G1161"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w finished|strong="G3973"\w* \w speaking|strong="G2980"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w Simon|strong="G4613"\w*, \wj “\+w Put|strong="G1877"\+w* \+w out|strong="G2532"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* deep \+w and|strong="G2532"\+w* \+w let|strong="G5465"\+w* \+w down|strong="G5465"\+w* \+w your|strong="G2532"\+w* \+w nets|strong="G1350"\+w* \+w for|strong="G1519"\+w* \+w a|strong="G5613"\+w* catch.”\wj* +\p +\v 5 \w Simon|strong="G4613"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Master|strong="G1988"\w*, \w we|strong="G2532"\w* \w worked|strong="G2872"\w* \w all|strong="G3650"\w* \w night|strong="G3571"\w* \w and|strong="G2532"\w* \w caught|strong="G2983"\w* \w nothing|strong="G3762"\w*; \w but|strong="G1161"\w* \w at|strong="G1909"\w* \w your|strong="G3650"\w* \w word|strong="G4487"\w* \w I|strong="G2532"\w* \w will|strong="G2532"\w* \w let|strong="G5465"\w* \w down|strong="G5465"\w* \w the|strong="G2532"\w* \w net|strong="G1350"\w*.” +\v 6 \w When|strong="G1161"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w done|strong="G4160"\w* \w this|strong="G3778"\w*, \w they|strong="G2532"\w* caught \w a|strong="G2532"\w* \w great|strong="G4183"\w* \w multitude|strong="G4128"\w* \w of|strong="G2532"\w* \w fish|strong="G2486"\w*, \w and|strong="G2532"\w* \w their|strong="G2532"\w* \w net|strong="G1350"\w* \w was|strong="G3588"\w* breaking. +\v 7 \w They|strong="G2532"\w* \w beckoned|strong="G2656"\w* \w to|strong="G2532"\w* \w their|strong="G2532"\w* \w partners|strong="G3353"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w other|strong="G2087"\w* \w boat|strong="G4143"\w*, \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w should|strong="G3588"\w* \w come|strong="G2064"\w* \w and|strong="G2532"\w* \w help|strong="G4815"\w* \w them|strong="G3588"\w*. \w They|strong="G2532"\w* \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w filled|strong="G4130"\w* \w both|strong="G2532"\w* \w boats|strong="G4143"\w*, \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w they|strong="G2532"\w* began \w to|strong="G2532"\w* \w sink|strong="G1036"\w*. +\v 8 \w But|strong="G1161"\w* \w Simon|strong="G4613"\w* \w Peter|strong="G4074"\w*, \w when|strong="G1161"\w* \w he|strong="G1161"\w* \w saw|strong="G3708"\w* \w it|strong="G3754"\w*, \w fell|strong="G4363"\w* \w down|strong="G4363"\w* \w at|strong="G1161"\w* \w Jesus|strong="G2424"\w*’ \w knees|strong="G1119"\w*, \w saying|strong="G3004"\w*, “\w Depart|strong="G1831"\w* \w from|strong="G1831"\w* \w me|strong="G1473"\w*, \w for|strong="G3754"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w a|strong="G1510"\w* sinful man, \w Lord|strong="G2962"\w*.” +\v 9 \w For|strong="G1063"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w amazed|strong="G2285"\w*, \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w who|strong="G3739"\w* \w were|strong="G3588"\w* \w with|strong="G4862"\w* \w him|strong="G3588"\w*, \w at|strong="G1909"\w* \w the|strong="G2532"\w* catch \w of|strong="G2532"\w* \w fish|strong="G2486"\w* \w which|strong="G3739"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w caught|strong="G4815"\w*; +\v 10 \w and|strong="G2532"\w* \w so|strong="G2532"\w* \w also|strong="G2532"\w* \w were|strong="G1510"\w* \w James|strong="G2385"\w* \w and|strong="G2532"\w* \w John|strong="G2491"\w*, \w sons|strong="G5207"\w* \w of|strong="G5207"\w* \w Zebedee|strong="G2199"\w*, \w who|strong="G3739"\w* \w were|strong="G1510"\w* \w partners|strong="G2844"\w* \w with|strong="G4314"\w* \w Simon|strong="G4613"\w*. +\p \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w Simon|strong="G4613"\w*, \wj “Don’\+w t|strong="G3588"\+w* \+w be|strong="G1510"\+w* \+w afraid|strong="G5399"\+w*. \+w From|strong="G2532"\+w* \+w now|strong="G1161"\+w* \+w on|strong="G3568"\+w* \+w you|strong="G3739"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w catching|strong="G2221"\+w* \+w people|strong="G1510"\+w* alive.”\wj* +\p +\v 11 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w brought|strong="G2609"\w* \w their|strong="G2532"\w* \w boats|strong="G4143"\w* \w to|strong="G2532"\w* \w land|strong="G1093"\w*, \w they|strong="G2532"\w* left \w everything|strong="G3956"\w*, \w and|strong="G2532"\w* followed \w him|strong="G3588"\w*. +\p +\v 12 \w While|strong="G1722"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w one|strong="G1520"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w cities|strong="G4172"\w*, \w behold|strong="G2400"\w*, \w there|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G1096"\w* \w man|strong="G1520"\w* \w full|strong="G4134"\w* \w of|strong="G2532"\w* \w leprosy|strong="G3014"\w*. \w When|strong="G1161"\w* \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w Jesus|strong="G2424"\w*, \w he|strong="G2532"\w* \w fell|strong="G4098"\w* \w on|strong="G1909"\w* \w his|strong="G1909"\w* \w face|strong="G4383"\w* \w and|strong="G2532"\w* \w begged|strong="G1189"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w Lord|strong="G2962"\w*, \w if|strong="G1437"\w* \w you|strong="G1437"\w* \w want|strong="G2309"\w* \w to|strong="G2532"\w*, \w you|strong="G1437"\w* \w can|strong="G1410"\w* \w make|strong="G2511"\w* \w me|strong="G1473"\w* \w clean|strong="G2511"\w*.” +\p +\v 13 \w He|strong="G2532"\w* \w stretched|strong="G1614"\w* \w out|strong="G2532"\w* \w his|strong="G2532"\w* \w hand|strong="G5495"\w* \w and|strong="G2532"\w* touched \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, \wj “\+w I|strong="G2532"\+w* \+w want|strong="G2309"\+w* \+w to|strong="G2532"\+w*. \+w Be|strong="G2532"\+w* \+w made|strong="G3004"\+w* \+w clean|strong="G2511"\+w*.”\wj* +\p \w Immediately|strong="G2112"\w* \w the|strong="G2532"\w* \w leprosy|strong="G3014"\w* left \w him|strong="G3588"\w*. +\v 14 \w He|strong="G2532"\w* \w commanded|strong="G3853"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w tell|strong="G3004"\w* \w no|strong="G3367"\w* \w one|strong="G3367"\w*, \wj “\+w But|strong="G2532"\+w* \+w go|strong="G1519"\+w* \+w your|strong="G2532"\+w* \+w way|strong="G3367"\+w* \+w and|strong="G2532"\+w* \+w show|strong="G1166"\+w* \+w yourself|strong="G4572"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w priest|strong="G2409"\+w*, \+w and|strong="G2532"\+w* \+w offer|strong="G4374"\+w* \+w for|strong="G1519"\+w* \+w your|strong="G2532"\+w* \+w cleansing|strong="G2512"\+w* \+w according|strong="G3588"\+w* \+w to|strong="G1519"\+w* \+w what|strong="G3588"\+w* \+w Moses|strong="G3475"\+w* \+w commanded|strong="G3853"\+w*, \+w for|strong="G1519"\+w* \+w a|strong="G2532"\+w* \+w testimony|strong="G3142"\+w* \+w to|strong="G1519"\+w* \+w them|strong="G3588"\+w*.”\wj* +\p +\v 15 \w But|strong="G1161"\w* \w the|strong="G2532"\w* \w report|strong="G3056"\w* \w concerning|strong="G4012"\w* \w him|strong="G3588"\w* \w spread|strong="G1330"\w* \w much|strong="G4183"\w* \w more|strong="G3123"\w*, \w and|strong="G2532"\w* \w great|strong="G4183"\w* \w multitudes|strong="G3793"\w* \w came|strong="G4905"\w* \w together|strong="G4905"\w* \w to|strong="G2532"\w* hear \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w healed|strong="G2323"\w* \w by|strong="G2532"\w* \w him|strong="G3588"\w* \w of|strong="G4012"\w* \w their|strong="G2532"\w* infirmities. +\v 16 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w withdrew|strong="G5298"\w* himself \w into|strong="G1722"\w* \w the|strong="G1722"\w* \w desert|strong="G2048"\w* \w and|strong="G2532"\w* \w prayed|strong="G4336"\w*. +\p +\v 17 \w On|strong="G1722"\w* \w one|strong="G1520"\w* \w of|strong="G1537"\w* \w those|strong="G3588"\w* \w days|strong="G2250"\w*, \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w teaching|strong="G1321"\w*; \w and|strong="G2532"\w* \w there|strong="G2532"\w* \w were|strong="G1510"\w* \w Pharisees|strong="G5330"\w* \w and|strong="G2532"\w* \w teachers|strong="G3547"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w law|strong="G3547"\w* \w sitting|strong="G2521"\w* \w by|strong="G1722"\w* \w who|strong="G3739"\w* \w had|strong="G2532"\w* \w come|strong="G2064"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w every|strong="G3956"\w* \w village|strong="G2968"\w* \w of|strong="G1537"\w* \w Galilee|strong="G1056"\w*, \w Judea|strong="G2449"\w*, \w and|strong="G2532"\w* \w Jerusalem|strong="G2419"\w*. \w The|strong="G1722"\w* \w power|strong="G1411"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w was|strong="G1510"\w* \w with|strong="G1722"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w heal|strong="G2390"\w* \w them|strong="G3588"\w*. +\v 18 \w Behold|strong="G2400"\w*, \w men|strong="G3739"\w* \w brought|strong="G5342"\w* \w a|strong="G2532"\w* \w paralyzed|strong="G3886"\w* \w man|strong="G3739"\w* \w on|strong="G1909"\w* \w a|strong="G2532"\w* cot, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w sought|strong="G2212"\w* \w to|strong="G2532"\w* \w bring|strong="G5342"\w* \w him|strong="G3739"\w* \w in|strong="G1909"\w* \w to|strong="G2532"\w* \w lay|strong="G5087"\w* \w before|strong="G1799"\w* \w Jesus|strong="G1510"\w*. +\v 19 \w Not|strong="G3361"\w* \w finding|strong="G2147"\w* \w a|strong="G2532"\w* \w way|strong="G3319"\w* \w to|strong="G1519"\w* \w bring|strong="G1533"\w* \w him|strong="G3588"\w* \w in|strong="G1519"\w* \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w*, \w they|strong="G2532"\w* \w went|strong="G2424"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w housetop|strong="G1430"\w* \w and|strong="G2532"\w* \w let|strong="G2524"\w* \w him|strong="G3588"\w* \w down|strong="G2524"\w* \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w tiles|strong="G2766"\w* \w with|strong="G4862"\w* \w his|strong="G1223"\w* cot \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w middle|strong="G3319"\w* \w before|strong="G1715"\w* \w Jesus|strong="G2424"\w*. +\v 20 \w Seeing|strong="G3708"\w* \w their|strong="G2532"\w* \w faith|strong="G4102"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “Man, \+w your|strong="G2532"\+w* sins \+w are|strong="G3588"\+w* forgiven \+w you|strong="G4771"\+w*.”\wj* +\p +\v 21 \w The|strong="G2532"\w* \w scribes|strong="G1122"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* began \w to|strong="G2532"\w* \w reason|strong="G1260"\w*, \w saying|strong="G3004"\w*, “\w Who|strong="G3739"\w* \w is|strong="G1510"\w* \w this|strong="G3778"\w* \w who|strong="G3739"\w* \w speaks|strong="G2980"\w* blasphemies? \w Who|strong="G3739"\w* \w can|strong="G1410"\w* forgive sins, \w but|strong="G2532"\w* \w God|strong="G2316"\w* \w alone|strong="G3441"\w*?” +\p +\v 22 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w*, \w perceiving|strong="G1921"\w* \w their|strong="G1438"\w* \w thoughts|strong="G1261"\w*, \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Why|strong="G5101"\+w* \+w are|strong="G3588"\+w* \+w you|strong="G5210"\+w* \+w reasoning|strong="G1260"\+w* \+w so|strong="G1161"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G1722"\+w* \+w hearts|strong="G2588"\+w*? \wj* +\v 23 \wj \+w Which|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w easier|strong="G2123"\+w* \+w to|strong="G2532"\+w* \+w say|strong="G3004"\+w*, ‘\+w Your|strong="G2532"\+w* sins \+w are|strong="G1510"\+w* forgiven \+w you|strong="G4771"\+w*,’ \+w or|strong="G2228"\+w* \+w to|strong="G2532"\+w* \+w say|strong="G3004"\+w*, ‘\+w Arise|strong="G1453"\+w* \+w and|strong="G2532"\+w* \+w walk|strong="G4043"\+w*’? \wj* +\v 24 \wj \+w But|strong="G1161"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w may|strong="G2532"\+w* \+w know|strong="G1492"\+w* \+w that|strong="G3754"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G1519"\+w* \+w has|strong="G2192"\+w* \+w authority|strong="G1849"\+w* \+w on|strong="G1909"\+w* \+w earth|strong="G1093"\+w* \+w to|strong="G1519"\+w* forgive sins,”\wj* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w paralyzed|strong="G3886"\w* \w man|strong="G1519"\w*, \wj “\+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w*, \+w arise|strong="G1453"\+w*, \+w take|strong="G1161"\+w* \+w up|strong="G1453"\+w* \+w your|strong="G2192"\+w* cot, \+w and|strong="G2532"\+w* \+w go|strong="G4198"\+w* \+w to|strong="G1519"\+w* \+w your|strong="G2192"\+w* \+w house|strong="G3624"\+w*.”\wj* +\p +\v 25 \w Immediately|strong="G3916"\w* \w he|strong="G2532"\w* \w rose|strong="G2532"\w* \w up|strong="G1519"\w* \w before|strong="G1799"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w took|strong="G2532"\w* \w up|strong="G1519"\w* \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* laying \w on|strong="G1909"\w*, \w and|strong="G2532"\w* departed \w to|strong="G1519"\w* \w his|strong="G1519"\w* \w house|strong="G3624"\w*, \w glorifying|strong="G1392"\w* \w God|strong="G2316"\w*. +\v 26 \w Amazement|strong="G1611"\w* \w took|strong="G2983"\w* hold \w on|strong="G5401"\w* \w all|strong="G2532"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w glorified|strong="G1392"\w* \w God|strong="G2316"\w*. \w They|strong="G2532"\w* \w were|strong="G3588"\w* \w filled|strong="G4130"\w* \w with|strong="G2532"\w* \w fear|strong="G5401"\w*, \w saying|strong="G3004"\w*, “\w We|strong="G3754"\w* \w have|strong="G2532"\w* \w seen|strong="G3708"\w* strange \w things|strong="G3588"\w* \w today|strong="G4594"\w*.” +\p +\v 27 \w After|strong="G3326"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w he|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w and|strong="G2532"\w* \w saw|strong="G2300"\w* \w a|strong="G2532"\w* \w tax|strong="G5057"\w* \w collector|strong="G5057"\w* \w named|strong="G3686"\w* \w Levi|strong="G3018"\w* \w sitting|strong="G2521"\w* \w at|strong="G1909"\w* \w the|strong="G2532"\w* \w tax|strong="G5057"\w* office, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Follow|strong="G3326"\+w* \+w me|strong="G1473"\+w*!”\wj* +\p +\v 28 \w He|strong="G2532"\w* \w left|strong="G2641"\w* \w everything|strong="G3956"\w*, \w and|strong="G2532"\w* \w rose|strong="G2532"\w* \w up|strong="G2532"\w* \w and|strong="G2532"\w* followed \w him|strong="G2532"\w*. +\v 29 \w Levi|strong="G3018"\w* \w made|strong="G4160"\w* \w a|strong="G2532"\w* \w great|strong="G3173"\w* \w feast|strong="G1403"\w* \w for|strong="G1722"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w his|strong="G1722"\w* \w house|strong="G3614"\w*. \w There|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w great|strong="G3173"\w* \w crowd|strong="G3793"\w* \w of|strong="G2532"\w* \w tax|strong="G5057"\w* \w collectors|strong="G5057"\w* \w and|strong="G2532"\w* \w others|strong="G3588"\w* \w who|strong="G3739"\w* \w were|strong="G1510"\w* \w reclining|strong="G2621"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w*. +\v 30 \w Their|strong="G2532"\w* \w scribes|strong="G1122"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w murmured|strong="G1111"\w* \w against|strong="G4314"\w* \w his|strong="G1223"\w* \w disciples|strong="G3101"\w*, \w saying|strong="G3004"\w*, “\w Why|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G3004"\w* \w eat|strong="G2068"\w* \w and|strong="G2532"\w* \w drink|strong="G4095"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w tax|strong="G5057"\w* \w collectors|strong="G5057"\w* \w and|strong="G2532"\w* sinners?” +\p +\v 31 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* healthy \+w have|strong="G2192"\+w* \+w no|strong="G3756"\+w* \+w need|strong="G5532"\+w* \+w for|strong="G4314"\+w* \+w a|strong="G2192"\+w* \+w physician|strong="G2395"\+w*, \+w but|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w sick|strong="G2560"\+w* \+w do|strong="G2532"\+w*. \wj* +\v 32 \wj \+w I|strong="G2064"\+w* \+w have|strong="G3756"\+w* \+w not|strong="G3756"\+w* \+w come|strong="G2064"\+w* \+w to|strong="G1519"\+w* \+w call|strong="G2564"\+w* \+w the|strong="G1519"\+w* \+w righteous|strong="G1342"\+w*, \+w but|strong="G1342"\+w* sinners, \+w to|strong="G1519"\+w* \+w repentance|strong="G3341"\+w*.” \wj* +\p +\v 33 \w They|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “Why \w do|strong="G4160"\w* \w John|strong="G2491"\w*’s \w disciples|strong="G3101"\w* \w often|strong="G4437"\w* \w fast|strong="G3522"\w* \w and|strong="G2532"\w* \w pray|strong="G1162"\w*, \w likewise|strong="G3668"\w* \w also|strong="G2532"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w*, \w but|strong="G1161"\w* \w yours|strong="G4674"\w* \w eat|strong="G2068"\w* \w and|strong="G2532"\w* \w drink|strong="G4095"\w*?” +\p +\v 34 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \wj “\+w Can|strong="G1410"\+w* \+w you|strong="G3739"\+w* \+w make|strong="G4160"\+w* \+w the|strong="G1722"\+w* friends \+w of|strong="G5207"\+w* \+w the|strong="G1722"\+w* \+w bridegroom|strong="G3566"\+w* \+w fast|strong="G3522"\+w* \+w while|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w bridegroom|strong="G3566"\+w* \+w is|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w them|strong="G3588"\+w*? \wj* +\v 35 \wj \+w But|strong="G1161"\+w* \+w the|strong="G1722"\+w* \+w days|strong="G2250"\+w* \+w will|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w when|strong="G3752"\+w* \+w the|strong="G1722"\+w* \+w bridegroom|strong="G3566"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* taken away \+w from|strong="G2064"\+w* \+w them|strong="G3588"\+w*. \+w Then|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w fast|strong="G3522"\+w* \+w in|strong="G1722"\+w* \+w those|strong="G3588"\+w* \+w days|strong="G2250"\+w*.”\wj* +\p +\v 36 \w He|strong="G2532"\w* \w also|strong="G2532"\w* \w told|strong="G3004"\w* \w a|strong="G2532"\w* \w parable|strong="G3850"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*. \wj “\+w No|strong="G3756"\+w* \+w one|strong="G3762"\+w* \+w puts|strong="G1911"\+w* \+w a|strong="G2532"\+w* \+w piece|strong="G1915"\+w* \+w from|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w new|strong="G2537"\+w* \+w garment|strong="G2440"\+w* \+w on|strong="G1909"\+w* \+w an|strong="G2532"\+w* \+w old|strong="G3820"\+w* \+w garment|strong="G2440"\+w*, \+w or|strong="G2532"\+w* \+w else|strong="G3361"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w tear|strong="G4977"\+w* \+w the|strong="G2532"\+w* \+w new|strong="G2537"\+w*, \+w and|strong="G2532"\+w* \+w also|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w piece|strong="G1915"\+w* \+w from|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w new|strong="G2537"\+w* \+w will|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w match|strong="G4856"\+w* \+w the|strong="G2532"\+w* \+w old|strong="G3820"\+w*. \wj* +\v 37 \wj \+w No|strong="G3762"\+w* \+w one|strong="G3762"\+w* puts \+w new|strong="G3501"\+w* \+w wine|strong="G3631"\+w* \+w into|strong="G1519"\+w* \+w old|strong="G3820"\+w* wineskins, \+w or|strong="G2532"\+w* \+w else|strong="G3361"\+w* \+w the|strong="G2532"\+w* \+w new|strong="G3501"\+w* \+w wine|strong="G3631"\+w* \+w will|strong="G2532"\+w* \+w burst|strong="G4486"\+w* \+w the|strong="G2532"\+w* skins, \+w and|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w spilled|strong="G1632"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* skins \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* destroyed. \wj* +\v 38 \wj But \+w new|strong="G2537"\+w* \+w wine|strong="G3631"\+w* must \+w be|strong="G1519"\+w* \+w put|strong="G1519"\+w* \+w into|strong="G1519"\+w* \+w fresh|strong="G2537"\+w* wineskins, \+w and|strong="G1519"\+w* both \+w are|strong="G1519"\+w* preserved. \wj* +\v 39 \wj \+w No|strong="G3762"\+w* \+w man|strong="G3762"\+w* \+w having|strong="G2532"\+w* \+w drunk|strong="G4095"\+w* \+w old|strong="G3820"\+w* wine immediately \+w desires|strong="G2309"\+w* \+w new|strong="G3501"\+w*, \+w for|strong="G1063"\+w* \+w he|strong="G2532"\+w* \+w says|strong="G3004"\+w*, ‘\+w The|strong="G2532"\+w* \+w old|strong="G3820"\+w* \+w is|strong="G1510"\+w* \+w better|strong="G5543"\+w*.’”\wj* +\c 6 +\p +\v 1 \w Now|strong="G1161"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w second|strong="G1207"\w* \w Sabbath|strong="G4521"\w* \w after|strong="G1161"\w* \w the|strong="G1722"\w* \w first|strong="G1207"\w*, \w he|strong="G2532"\w* \w was|strong="G1096"\w* \w going|strong="G2532"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w grain|strong="G4719"\w* \w fields|strong="G4702"\w*. \w His|strong="G1223"\w* \w disciples|strong="G3101"\w* \w plucked|strong="G5089"\w* \w the|strong="G1722"\w* \w heads|strong="G4719"\w* \w of|strong="G1223"\w* \w grain|strong="G4719"\w* \w and|strong="G2532"\w* \w ate|strong="G2068"\w*, \w rubbing|strong="G5597"\w* \w them|strong="G3588"\w* \w in|strong="G1722"\w* \w their|strong="G2532"\w* \w hands|strong="G5495"\w*. +\v 2 \w But|strong="G1161"\w* \w some|strong="G5100"\w* \w of|strong="G5100"\w* \w the|strong="G1161"\w* \w Pharisees|strong="G5330"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, “\w Why|strong="G5101"\w* \w do|strong="G4160"\w* \w you|strong="G3739"\w* \w do|strong="G4160"\w* \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w lawful|strong="G1832"\w* \w to|strong="G3004"\w* \w do|strong="G4160"\w* \w on|strong="G1161"\w* \w the|strong="G1161"\w* \w Sabbath|strong="G4521"\w* \w day|strong="G4521"\w*?” +\p +\v 3 \w Jesus|strong="G2424"\w*, answering \w them|strong="G3588"\w*, \w said|strong="G3004"\w*, \wj “Haven’\+w t|strong="G3588"\+w* \+w you|strong="G3739"\+w* read \+w what|strong="G3739"\+w* \+w David|strong="G1138"\+w* \+w did|strong="G4160"\+w* \+w when|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w was|strong="G1510"\+w* \+w hungry|strong="G3983"\+w*, \+w he|strong="G2532"\+w* \+w and|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3739"\+w* \+w were|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w him|strong="G3588"\+w*, \wj* +\v 4 \wj \+w how|strong="G5613"\+w* \+w he|strong="G2532"\+w* \+w entered|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w God|strong="G2316"\+w*’s \+w house|strong="G3624"\+w*, \+w and|strong="G2532"\+w* \+w took|strong="G2983"\+w* \+w and|strong="G2532"\+w* \+w ate|strong="G2068"\+w* \+w the|strong="G2532"\+w* \+w show|strong="G2983"\+w* bread, \+w and|strong="G2532"\+w* \+w gave|strong="G1325"\+w* \+w also|strong="G2532"\+w* \+w to|strong="G1519"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3739"\+w* \+w were|strong="G3588"\+w* \+w with|strong="G3326"\+w* \+w him|strong="G3588"\+w*, \+w which|strong="G3739"\+w* \+w is|strong="G3588"\+w* \+w not|strong="G3756"\+w* \+w lawful|strong="G1832"\+w* \+w to|strong="G1519"\+w* \+w eat|strong="G2068"\+w* \+w except|strong="G1487"\+w* \+w for|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w priests|strong="G2409"\+w* \+w alone|strong="G3441"\+w*?”\wj* +\v 5 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w The|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w* \+w is|strong="G1510"\+w* \+w lord|strong="G2962"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G2532"\+w* \+w Sabbath|strong="G4521"\+w*.”\wj* +\p +\v 6 \w It|strong="G2532"\w* \w also|strong="G2532"\w* \w happened|strong="G1096"\w* \w on|strong="G1722"\w* \w another|strong="G2087"\w* \w Sabbath|strong="G4521"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w synagogue|strong="G4864"\w* \w and|strong="G2532"\w* \w taught|strong="G1321"\w*. \w There|strong="G1563"\w* \w was|strong="G1510"\w* \w a|strong="G1096"\w* \w man|strong="G2087"\w* \w there|strong="G1563"\w*, \w and|strong="G2532"\w* \w his|strong="G1519"\w* \w right|strong="G1188"\w* \w hand|strong="G5495"\w* \w was|strong="G1510"\w* \w withered|strong="G3584"\w*. +\v 7 \w The|strong="G1722"\w* \w scribes|strong="G1122"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w Pharisees|strong="G5330"\w* \w watched|strong="G3906"\w* \w him|strong="G3588"\w*, \w to|strong="G2443"\w* see \w whether|strong="G1487"\w* \w he|strong="G2532"\w* \w would|strong="G2532"\w* \w heal|strong="G2323"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w Sabbath|strong="G4521"\w*, \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w find|strong="G2147"\w* \w an|strong="G2532"\w* \w accusation|strong="G2723"\w* \w against|strong="G1722"\w* \w him|strong="G3588"\w*. +\v 8 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w knew|strong="G1492"\w* \w their|strong="G2532"\w* \w thoughts|strong="G1261"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w man|strong="G1519"\w* \w who|strong="G3588"\w* \w had|strong="G2192"\w* \w the|strong="G2532"\w* \w withered|strong="G3584"\w* \w hand|strong="G5495"\w*, \wj “\+w Rise|strong="G1453"\+w* \+w up|strong="G1453"\+w* \+w and|strong="G2532"\+w* \+w stand|strong="G2476"\+w* \+w in|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w middle|strong="G3319"\+w*.”\wj* \w He|strong="G2532"\w* \w arose|strong="G1453"\w* \w and|strong="G2532"\w* \w stood|strong="G2476"\w*. +\v 9 \w Then|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \wj “\+w I|strong="G1161"\+w* \+w will|strong="G5590"\+w* \+w ask|strong="G1905"\+w* \+w you|strong="G5210"\+w* something: \+w Is|strong="G3588"\+w* \+w it|strong="G1161"\+w* \+w lawful|strong="G1832"\+w* \+w on|strong="G1161"\+w* \+w the|strong="G1161"\+w* \+w Sabbath|strong="G4521"\+w* \+w to|strong="G4314"\+w* \+w do|strong="G3004"\+w* \+w good|strong="G3588"\+w*, \+w or|strong="G2228"\+w* \+w to|strong="G4314"\+w* \+w do|strong="G3004"\+w* \+w harm|strong="G2554"\+w*? \+w To|strong="G4314"\+w* \+w save|strong="G4982"\+w* \+w a|strong="G1487"\+w* \+w life|strong="G5590"\+w*, \+w or|strong="G2228"\+w* \+w to|strong="G4314"\+w* kill?”\wj* +\v 10 \w He|strong="G2532"\w* \w looked|strong="G4017"\w* \w around|strong="G4017"\w* \w at|strong="G1161"\w* \w them|strong="G3588"\w* \w all|strong="G3956"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w man|strong="G3956"\w*, \wj “\+w Stretch|strong="G1614"\+w* \+w out|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w hand|strong="G5495"\+w*.”\wj* \w He|strong="G2532"\w* \w did|strong="G4160"\w*, \w and|strong="G2532"\w* \w his|strong="G1438"\w* \w hand|strong="G5495"\w* \w was|strong="G3588"\w* restored \w as|strong="G1161"\w* sound \w as|strong="G1161"\w* \w the|strong="G2532"\w* \w other|strong="G1161"\w*. +\v 11 \w But|strong="G1161"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w filled|strong="G4130"\w* \w with|strong="G4314"\w* rage, \w and|strong="G2532"\w* \w talked|strong="G1255"\w* \w with|strong="G4314"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w* \w about|strong="G4314"\w* \w what|strong="G5101"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w do|strong="G4160"\w* \w to|strong="G4314"\w* \w Jesus|strong="G2424"\w*. +\p +\v 12 \w In|strong="G1722"\w* \w these|strong="G3778"\w* \w days|strong="G2250"\w*, \w he|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w mountain|strong="G3735"\w* \w to|strong="G1519"\w* \w pray|strong="G4336"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w continued|strong="G1096"\w* \w all|strong="G2532"\w* \w night|strong="G1273"\w* \w in|strong="G1722"\w* \w prayer|strong="G4335"\w* \w to|strong="G1519"\w* \w God|strong="G2316"\w*. +\v 13 \w When|strong="G3753"\w* \w it|strong="G2532"\w* \w was|strong="G1096"\w* \w day|strong="G2250"\w*, \w he|strong="G2532"\w* \w called|strong="G4377"\w* \w his|strong="G2532"\w* \w disciples|strong="G3101"\w*, \w and|strong="G2532"\w* \w from|strong="G2532"\w* \w them|strong="G3588"\w* \w he|strong="G2532"\w* \w chose|strong="G1586"\w* \w twelve|strong="G1427"\w*, \w whom|strong="G3739"\w* \w he|strong="G2532"\w* \w also|strong="G2532"\w* \w named|strong="G3687"\w* apostles: +\v 14 \w Simon|strong="G4613"\w*, \w whom|strong="G3739"\w* \w he|strong="G2532"\w* \w also|strong="G2532"\w* \w named|strong="G3687"\w* \w Peter|strong="G4074"\w*; Andrew, \w his|strong="G2532"\w* brother; \w James|strong="G2385"\w*; \w John|strong="G2491"\w*; \w Philip|strong="G5376"\w*; Bartholomew; +\v 15 \w Matthew|strong="G3156"\w*; \w Thomas|strong="G2381"\w*; \w James|strong="G2385"\w* \w the|strong="G2532"\w* son \w of|strong="G2532"\w* Alphaeus; \w Simon|strong="G4613"\w* \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w called|strong="G2564"\w* \w the|strong="G2532"\w* \w Zealot|strong="G2208"\w*; +\v 16 \w Judas|strong="G2455"\w* \w the|strong="G2532"\w* son \w of|strong="G2532"\w* \w James|strong="G2385"\w*; \w and|strong="G2532"\w* \w Judas|strong="G2455"\w* \w Iscariot|strong="G2469"\w*, \w who|strong="G3739"\w* \w also|strong="G2532"\w* \w became|strong="G1096"\w* \w a|strong="G1096"\w* \w traitor|strong="G4273"\w*. +\p +\v 17 \w He|strong="G2532"\w* \w came|strong="G2064"\w* \w down|strong="G2597"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w stood|strong="G2476"\w* \w on|strong="G1909"\w* \w a|strong="G2532"\w* \w level|strong="G3977"\w* \w place|strong="G5117"\w*, \w with|strong="G3326"\w* \w a|strong="G2532"\w* \w crowd|strong="G3793"\w* \w of|strong="G2532"\w* \w his|strong="G3956"\w* \w disciples|strong="G3101"\w* \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w great|strong="G4183"\w* \w number|strong="G4128"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w* \w from|strong="G2064"\w* \w all|strong="G3956"\w* \w Judea|strong="G2449"\w* \w and|strong="G2532"\w* \w Jerusalem|strong="G2419"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w sea|strong="G2532"\w* \w coast|strong="G5117"\w* \w of|strong="G2532"\w* \w Tyre|strong="G5184"\w* \w and|strong="G2532"\w* \w Sidon|strong="G4605"\w*, \w who|strong="G3739"\w* \w came|strong="G2064"\w* \w to|strong="G2532"\w* hear \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w healed|strong="G2390"\w* \w of|strong="G2532"\w* \w their|strong="G2532"\w* \w diseases|strong="G3554"\w*, +\v 18 \w as|strong="G2532"\w* \w well|strong="G2532"\w* \w as|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w troubled|strong="G1776"\w* \w by|strong="G2532"\w* unclean \w spirits|strong="G4151"\w*; \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w being|strong="G2532"\w* \w healed|strong="G2323"\w*. +\v 19 \w All|strong="G3956"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w* \w sought|strong="G2212"\w* \w to|strong="G2532"\w* touch \w him|strong="G3588"\w*, \w for|strong="G3754"\w* \w power|strong="G1411"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G2532"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w healed|strong="G2390"\w* \w them|strong="G3588"\w* \w all|strong="G3956"\w*. +\p +\v 20 \w He|strong="G2532"\w* \w lifted|strong="G1869"\w* \w up|strong="G1869"\w* \w his|strong="G1519"\w* \w eyes|strong="G3788"\w* \w to|strong="G1519"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*: +\q1 \wj “\+w Blessed|strong="G3107"\+w* \+w are|strong="G1510"\+w* \+w you|strong="G3754"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G1510"\+w* \+w poor|strong="G4434"\+w*,\wj* +\q2 \wj \+w for|strong="G3754"\+w* \+w God|strong="G2316"\+w*’s Kingdom \+w is|strong="G1510"\+w* \+w yours|strong="G5212"\+w*.\wj* +\q1 +\v 21 \wj \+w Blessed|strong="G3107"\+w* \+w are|strong="G3588"\+w* \+w you|strong="G3754"\+w* \+w who|strong="G3588"\+w* \+w hunger|strong="G3983"\+w* \+w now|strong="G3568"\+w*,\wj* +\q2 \wj \+w for|strong="G3754"\+w* \+w you|strong="G3754"\+w* \+w will|strong="G3748"\+w* \+w be|strong="G3588"\+w* \+w filled|strong="G5526"\+w*.\wj* +\q1 \wj \+w Blessed|strong="G3107"\+w* \+w are|strong="G3588"\+w* \+w you|strong="G3754"\+w* \+w who|strong="G3588"\+w* \+w weep|strong="G2799"\+w* \+w now|strong="G3568"\+w*,\wj* +\q2 \wj \+w for|strong="G3754"\+w* \+w you|strong="G3754"\+w* \+w will|strong="G3748"\+w* \+w laugh|strong="G1070"\+w*.\wj* +\q1 +\v 22 \wj \+w Blessed|strong="G3107"\+w* \+w are|strong="G1510"\+w* \+w you|strong="G5210"\+w* \+w when|strong="G3752"\+w* \+w men|strong="G3588"\+w* \+w hate|strong="G3404"\+w* \+w you|strong="G5210"\+w*, \+w and|strong="G2532"\+w* \+w when|strong="G3752"\+w* \+w they|strong="G2532"\+w* exclude \+w and|strong="G2532"\+w* mock \+w you|strong="G5210"\+w*, \+w and|strong="G2532"\+w* \+w throw|strong="G1544"\+w* \+w out|strong="G1544"\+w* \+w your|strong="G2532"\+w* \+w name|strong="G3686"\+w* \+w as|strong="G5613"\+w* \+w evil|strong="G4190"\+w*, \+w for|strong="G1752"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w*’s \+w sake|strong="G1752"\+w*. \wj* +\q2 +\v 23 \wj \+w Rejoice|strong="G5463"\+w* \+w in|strong="G1722"\+w* \+w that|strong="G3588"\+w* \+w day|strong="G2250"\+w* \+w and|strong="G2532"\+w* \+w leap|strong="G4640"\+w* \+w for|strong="G1063"\+w* \+w joy|strong="G5463"\+w*, \+w for|strong="G1063"\+w* \+w behold|strong="G2400"\+w*, \+w your|strong="G2532"\+w* \+w reward|strong="G3408"\+w* \+w is|strong="G3588"\+w* \+w great|strong="G4183"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*, \+w for|strong="G1063"\+w* \+w their|strong="G2532"\+w* \+w fathers|strong="G3962"\+w* \+w did|strong="G4160"\+w* \+w the|strong="G1722"\+w* \+w same|strong="G1565"\+w* thing \+w to|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w prophets|strong="G4396"\+w*.\wj* +\b +\q1 +\v 24 \wj “\+w But|strong="G4133"\+w* \+w woe|strong="G3759"\+w* \+w to|strong="G3759"\+w* \+w you|strong="G5210"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w rich|strong="G4145"\+w*!\wj* +\q2 \wj \+w For|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G3748"\+w* received \+w your|strong="G3588"\+w* \+w consolation|strong="G3874"\+w*.\wj* +\q1 +\v 25 \wj \+w Woe|strong="G3759"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*, \+w you|strong="G5210"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* full \+w now|strong="G3568"\+w*,\wj* +\q2 \wj \+w for|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w hungry|strong="G3983"\+w*.\wj* +\q1 \wj \+w Woe|strong="G3759"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w who|strong="G3588"\+w* \+w laugh|strong="G1070"\+w* \+w now|strong="G3568"\+w*,\wj* +\q2 \wj \+w for|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w mourn|strong="G3996"\+w* \+w and|strong="G2532"\+w* \+w weep|strong="G2799"\+w*.\wj* +\q1 +\v 26 \wj \+w Woe|strong="G3759"\+w*,\wj*\f + \fr 6:26 \ft TR adds “to you”\f* \wj \+w when|strong="G3752"\+w*\wj*\f + \fr 6:26 \ft TR adds “all” \f* \wj \+w men|strong="G3956"\+w* \+w speak|strong="G3004"\+w* \+w well|strong="G2573"\+w* \+w of|strong="G3962"\+w* \+w you|strong="G4771"\+w*,\wj* +\q2 \wj \+w for|strong="G1063"\+w* \+w their|strong="G2596"\+w* \+w fathers|strong="G3962"\+w* \+w did|strong="G4160"\+w* \+w the|strong="G3956"\+w* same \+w thing|strong="G3956"\+w* \+w to|strong="G2596"\+w* \+w the|strong="G3956"\+w* \+w false|strong="G5578"\+w* \+w prophets|strong="G5578"\+w*.\wj* +\p +\v 27 \wj “\+w But|strong="G3588"\+w* \+w I|strong="G3004"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w who|strong="G3588"\+w* hear: love \+w your|strong="G4160"\+w* \+w enemies|strong="G2190"\+w*, \+w do|strong="G4160"\+w* \+w good|strong="G2573"\+w* \+w to|strong="G3004"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w hate|strong="G3404"\+w* \+w you|strong="G5210"\+w*, \wj* +\v 28 \wj \+w bless|strong="G2127"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w curse|strong="G2672"\+w* \+w you|strong="G5210"\+w*, \+w and|strong="G3588"\+w* \+w pray|strong="G4336"\+w* \+w for|strong="G4012"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w mistreat|strong="G1908"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 29 \wj \+w To|strong="G1519"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* strikes \+w you|strong="G4771"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w cheek|strong="G4600"\+w*, \+w offer|strong="G3930"\+w* \+w also|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w other|strong="G3361"\+w*; \+w and|strong="G2532"\+w* \+w from|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* takes away \+w your|strong="G2532"\+w* \+w cloak|strong="G2440"\+w*, don’\+w t|strong="G3588"\+w* \+w withhold|strong="G2967"\+w* \+w your|strong="G2532"\+w* \+w coat|strong="G2440"\+w* \+w also|strong="G2532"\+w*. \wj* +\v 30 \wj \+w Give|strong="G1325"\+w* \+w to|strong="G2532"\+w* \+w everyone|strong="G3956"\+w* \+w who|strong="G3588"\+w* asks \+w you|strong="G4771"\+w*, \+w and|strong="G2532"\+w* don’\+w t|strong="G3588"\+w* ask \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* takes away \+w your|strong="G4674"\+w* goods \+w to|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w them|strong="G3588"\+w* \+w back|strong="G1325"\+w* \+w again|strong="G2532"\+w*.\wj* +\p +\v 31 \wj “\+w As|strong="G2531"\+w* \+w you|strong="G5210"\+w* \+w would|strong="G2309"\+w* \+w like|strong="G2531"\+w* \+w people|strong="G4160"\+w* \+w to|strong="G2443"\+w* \+w do|strong="G4160"\+w* \+w to|strong="G2443"\+w* \+w you|strong="G5210"\+w*, \+w do|strong="G4160"\+w* exactly \+w so|strong="G2443"\+w* \+w to|strong="G2443"\+w* \+w them|strong="G3588"\+w*. \wj* +\p +\v 32 \wj “\+w If|strong="G1487"\+w* \+w you|strong="G5210"\+w* love \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* love \+w you|strong="G5210"\+w*, \+w what|strong="G4169"\+w* \+w credit|strong="G5485"\+w* \+w is|strong="G1510"\+w* \+w that|strong="G3588"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*? \+w For|strong="G1063"\+w* \+w even|strong="G2532"\+w* sinners love \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* love \+w them|strong="G3588"\+w*. \wj* +\v 33 \wj \+w If|strong="G1437"\+w* \+w you|strong="G5210"\+w* \+w do|strong="G4160"\+w* \+w good|strong="G3588"\+w* \+w to|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w do|strong="G4160"\+w* \+w good|strong="G3588"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*, \+w what|strong="G4169"\+w* \+w credit|strong="G5485"\+w* \+w is|strong="G1510"\+w* \+w that|strong="G3588"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*? \+w For|strong="G1063"\+w* \+w even|strong="G2532"\+w* sinners \+w do|strong="G4160"\+w* \+w the|strong="G2532"\+w* \+w same|strong="G2532"\+w*. \wj* +\v 34 \wj \+w If|strong="G1437"\+w* \+w you|strong="G5210"\+w* \+w lend|strong="G1155"\+w* \+w to|strong="G2443"\+w* \+w those|strong="G3588"\+w* \+w from|strong="G3844"\+w* \+w whom|strong="G3739"\+w* \+w you|strong="G5210"\+w* \+w hope|strong="G1679"\+w* \+w to|strong="G2443"\+w* \+w receive|strong="G2983"\+w*, \+w what|strong="G3739"\+w* \+w credit|strong="G5485"\+w* \+w is|strong="G1510"\+w* \+w that|strong="G2443"\+w* \+w to|strong="G2443"\+w* \+w you|strong="G5210"\+w*? \+w Even|strong="G2532"\+w* sinners \+w lend|strong="G1155"\+w* \+w to|strong="G2443"\+w* sinners, \+w to|strong="G2443"\+w* \+w receive|strong="G2983"\+w* \+w back|strong="G2983"\+w* \+w as|strong="G2532"\+w* much. \wj* +\v 35 \wj \+w But|strong="G2532"\+w* love \+w your|strong="G2532"\+w* \+w enemies|strong="G2190"\+w*, \+w and|strong="G2532"\+w* \+w do|strong="G2532"\+w* \+w good|strong="G5543"\+w*, \+w and|strong="G2532"\+w* \+w lend|strong="G1155"\+w*, expecting \+w nothing|strong="G3367"\+w* back; \+w and|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w reward|strong="G3408"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w great|strong="G4183"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w children|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G2532"\+w* \+w Most|strong="G5310"\+w* \+w High|strong="G5310"\+w*; \+w for|strong="G3754"\+w* \+w he|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w kind|strong="G5543"\+w* \+w toward|strong="G1909"\+w* \+w the|strong="G2532"\+w* unthankful \+w and|strong="G2532"\+w* \+w evil|strong="G4190"\+w*.\wj* +\q1 +\v 36 \wj “Therefore \+w be|strong="G1096"\+w* \+w merciful|strong="G3629"\+w*,\wj* +\q2 \wj \+w even|strong="G2531"\+w* \+w as|strong="G2531"\+w* \+w your|strong="G3588"\+w* \+w Father|strong="G3962"\+w* \+w is|strong="G1510"\+w* \+w also|strong="G4771"\+w* \+w merciful|strong="G3629"\+w*.\wj* +\q1 +\v 37 \wj Don’t \+w judge|strong="G2919"\+w*,\wj* +\q2 \wj \+w and|strong="G2532"\+w* \+w you|strong="G2532"\+w* won’t \+w be|strong="G2532"\+w* \+w judged|strong="G2919"\+w*.\wj* +\q1 \wj Don’t \+w condemn|strong="G2919"\+w*,\wj* +\q2 \wj \+w and|strong="G2532"\+w* \+w you|strong="G2532"\+w* won’t \+w be|strong="G2532"\+w* \+w condemned|strong="G2613"\+w*.\wj* +\q1 \wj \+w Set|strong="G2532"\+w* free,\wj* +\q2 \wj \+w and|strong="G2532"\+w* \+w you|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w set|strong="G2532"\+w* free.\wj* +\p +\v 38 \wj “\+w Give|strong="G1325"\+w*, \+w and|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w given|strong="G1325"\+w* \+w to|strong="G1519"\+w* \+w you|strong="G5210"\+w*: \+w good|strong="G2570"\+w* \+w measure|strong="G3358"\+w*, \+w pressed|strong="G4085"\+w* \+w down|strong="G4085"\+w*, \+w shaken|strong="G4531"\+w* \+w together|strong="G4531"\+w*, \+w and|strong="G2532"\+w* \+w running|strong="G5240"\+w* \+w over|strong="G1519"\+w*, \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w given|strong="G1325"\+w* \+w to|strong="G1519"\+w* \+w you|strong="G5210"\+w*.\wj*\f + \fr 6:38 \ft literally, into your bosom.\f* \wj \+w For|strong="G1063"\+w* \+w with|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w same|strong="G3739"\+w* \+w measure|strong="G3358"\+w* \+w you|strong="G5210"\+w* \+w measure|strong="G3358"\+w* \+w it|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w measured|strong="G3354"\+w* \+w back|strong="G1519"\+w* \+w to|strong="G1519"\+w* \+w you|strong="G5210"\+w*.”\wj* +\p +\v 39 \w He|strong="G2532"\w* \w spoke|strong="G3004"\w* \w a|strong="G2532"\w* \w parable|strong="G3850"\w* \w to|strong="G1519"\w* \w them|strong="G3004"\w*. \wj “\+w Can|strong="G1410"\+w* \+w the|strong="G2532"\+w* \+w blind|strong="G5185"\+w* \+w guide|strong="G3594"\+w* \+w the|strong="G2532"\+w* \+w blind|strong="G5185"\+w*? Won’t \+w they|strong="G2532"\+w* \+w both|strong="G2532"\+w* \+w fall|strong="G1706"\+w* \+w into|strong="G1519"\+w* \+w a|strong="G2532"\+w* \+w pit|strong="G2532"\+w*? \wj* +\v 40 \wj \+w A|strong="G5613"\+w* \+w disciple|strong="G3101"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w above|strong="G5228"\+w* \+w his|strong="G3956"\+w* \+w teacher|strong="G1320"\+w*, \+w but|strong="G1161"\+w* \+w everyone|strong="G3956"\+w* \+w when|strong="G1161"\+w* \+w he|strong="G1161"\+w* \+w is|strong="G1510"\+w* \+w fully|strong="G2675"\+w* \+w trained|strong="G2675"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w like|strong="G5613"\+w* \+w his|strong="G3956"\+w* \+w teacher|strong="G1320"\+w*. \wj* +\v 41 \wj \+w Why|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G4771"\+w* see \+w the|strong="G1722"\+w* \+w speck|strong="G2595"\+w* \+w of|strong="G1722"\+w* chaff \+w that|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G1722"\+w* brother’s \+w eye|strong="G3788"\+w*, \+w but|strong="G1161"\+w* don’\+w t|strong="G3588"\+w* \+w consider|strong="G2657"\+w* \+w the|strong="G1722"\+w* beam \+w that|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G1722"\+w* \+w own|strong="G2398"\+w* \+w eye|strong="G3788"\+w*? \wj* +\v 42 \wj \+w Or|strong="G2532"\+w* \+w how|strong="G4459"\+w* \+w can|strong="G1410"\+w* \+w you|strong="G4771"\+w* \+w tell|strong="G3004"\+w* \+w your|strong="G2532"\+w* brother, ‘Brother, \+w let|strong="G2532"\+w* \+w me|strong="G3004"\+w* \+w remove|strong="G1544"\+w* \+w the|strong="G1722"\+w* \+w speck|strong="G2595"\+w* \+w of|strong="G1537"\+w* chaff \+w that|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G2532"\+w* \+w eye|strong="G3788"\+w*,’ \+w when|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w yourself|strong="G4771"\+w* don’\+w t|strong="G3588"\+w* \+w see|strong="G1227"\+w* \+w the|strong="G1722"\+w* beam \+w that|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G2532"\+w* \+w own|strong="G3788"\+w* \+w eye|strong="G3788"\+w*? \+w You|strong="G4771"\+w* \+w hypocrite|strong="G5273"\+w*! \+w First|strong="G4413"\+w* \+w remove|strong="G1544"\+w* \+w the|strong="G1722"\+w* beam \+w from|strong="G1537"\+w* \+w your|strong="G2532"\+w* \+w own|strong="G3788"\+w* \+w eye|strong="G3788"\+w*, \+w and|strong="G2532"\+w* \+w then|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w can|strong="G1410"\+w* \+w see|strong="G1227"\+w* \+w clearly|strong="G1227"\+w* \+w to|strong="G2532"\+w* \+w remove|strong="G1544"\+w* \+w the|strong="G1722"\+w* \+w speck|strong="G2595"\+w* \+w of|strong="G1537"\+w* chaff \+w that|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G2532"\+w* brother’s \+w eye|strong="G3788"\+w*. \wj* +\p +\v 43 \wj “\+w For|strong="G1063"\+w* \+w there|strong="G1063"\+w* \+w is|strong="G1510"\+w* \+w no|strong="G3756"\+w* \+w good|strong="G2570"\+w* \+w tree|strong="G1186"\+w* \+w that|strong="G4160"\+w* \+w produces|strong="G4160"\+w* rotten \+w fruit|strong="G2590"\+w*, \+w nor|strong="G3761"\+w* \+w again|strong="G3825"\+w* \+w a|strong="G1510"\+w* rotten \+w tree|strong="G1186"\+w* \+w that|strong="G4160"\+w* \+w produces|strong="G4160"\+w* \+w good|strong="G2570"\+w* \+w fruit|strong="G2590"\+w*. \wj* +\v 44 \wj \+w For|strong="G1063"\+w* \+w each|strong="G1538"\+w* \+w tree|strong="G1186"\+w* \+w is|strong="G3588"\+w* \+w known|strong="G1097"\+w* \+w by|strong="G1537"\+w* \+w its|strong="G1537"\+w* \+w own|strong="G2398"\+w* \+w fruit|strong="G2590"\+w*. \+w For|strong="G1063"\+w* \+w people|strong="G3761"\+w* don’\+w t|strong="G3588"\+w* \+w gather|strong="G4816"\+w* \+w figs|strong="G4810"\+w* \+w from|strong="G1537"\+w* thorns, \+w nor|strong="G3761"\+w* \+w do|strong="G1063"\+w* \+w they|strong="G3588"\+w* \+w gather|strong="G4816"\+w* \+w grapes|strong="G4718"\+w* \+w from|strong="G1537"\+w* \+w a|strong="G3756"\+w* bramble bush. \wj* +\v 45 \wj \+w The|strong="G2532"\+w* \+w good|strong="G3588"\+w* \+w man|strong="G2588"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w good|strong="G3588"\+w* \+w treasure|strong="G2344"\+w* \+w of|strong="G1537"\+w* \+w his|strong="G2532"\+w* \+w heart|strong="G2588"\+w* \+w brings|strong="G4393"\+w* \+w out|strong="G1537"\+w* \+w that|strong="G3588"\+w* \+w which|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w good|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w evil|strong="G4190"\+w* \+w man|strong="G2588"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w evil|strong="G4190"\+w* \+w treasure|strong="G2344"\+w* \+w of|strong="G1537"\+w* \+w his|strong="G2532"\+w* \+w heart|strong="G2588"\+w* \+w brings|strong="G4393"\+w* \+w out|strong="G1537"\+w* \+w that|strong="G3588"\+w* \+w which|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w evil|strong="G4190"\+w*, \+w for|strong="G1063"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w abundance|strong="G4051"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w heart|strong="G2588"\+w*, \+w his|strong="G2532"\+w* \+w mouth|strong="G4750"\+w* \+w speaks|strong="G2980"\+w*.\wj* +\p +\v 46 \wj “\+w Why|strong="G5101"\+w* \+w do|strong="G4160"\+w* \+w you|strong="G3739"\+w* \+w call|strong="G2564"\+w* \+w me|strong="G1473"\+w*, ‘\+w Lord|strong="G2962"\+w*, \+w Lord|strong="G2962"\+w*,’ \+w and|strong="G2532"\+w* don’t \+w do|strong="G4160"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3739"\+w* \+w which|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w say|strong="G3004"\+w*? \wj* +\v 47 \wj \+w Everyone|strong="G3956"\+w* \+w who|strong="G5101"\+w* \+w comes|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* hears \+w my|strong="G3956"\+w* \+w words|strong="G3056"\+w* \+w and|strong="G2532"\+w* \+w does|strong="G4160"\+w* \+w them|strong="G3588"\+w*, \+w I|strong="G1473"\+w* \+w will|strong="G5101"\+w* \+w show|strong="G4160"\+w* \+w you|strong="G5210"\+w* \+w who|strong="G5101"\+w* \+w he|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w like|strong="G3664"\+w*. \wj* +\v 48 \wj \+w He|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w like|strong="G3664"\+w* \+w a|strong="G1096"\+w* \+w man|strong="G3739"\+w* \+w building|strong="G3618"\+w* \+w a|strong="G1096"\+w* \+w house|strong="G3614"\+w*, \+w who|strong="G3739"\+w* \+w dug|strong="G4626"\+w* \+w and|strong="G2532"\+w* \+w went|strong="G2532"\+w* deep \+w and|strong="G2532"\+w* \+w laid|strong="G5087"\+w* \+w a|strong="G1096"\+w* \+w foundation|strong="G2310"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w rock|strong="G4073"\+w*. \+w When|strong="G1161"\+w* \+w a|strong="G1096"\+w* \+w flood|strong="G4215"\+w* \+w arose|strong="G1096"\+w*, \+w the|strong="G2532"\+w* stream broke \+w against|strong="G1909"\+w* \+w that|strong="G3739"\+w* \+w house|strong="G3614"\+w*, \+w and|strong="G2532"\+w* \+w could|strong="G2480"\+w* \+w not|strong="G3756"\+w* \+w shake|strong="G4531"\+w* \+w it|strong="G2532"\+w*, \+w because|strong="G1223"\+w* \+w it|strong="G2532"\+w* \+w was|strong="G1510"\+w* founded \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w rock|strong="G4073"\+w*. \wj* +\v 49 \wj \+w But|strong="G1161"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3739"\+w* hears \+w and|strong="G2532"\+w* doesn’\+w t|strong="G3588"\+w* \+w do|strong="G4160"\+w*, \+w is|strong="G1510"\+w* \+w like|strong="G3664"\+w* \+w a|strong="G1096"\+w* \+w man|strong="G3361"\+w* \+w who|strong="G3739"\+w* \+w built|strong="G3618"\+w* \+w a|strong="G1096"\+w* \+w house|strong="G3614"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w earth|strong="G1093"\+w* \+w without|strong="G5565"\+w* \+w a|strong="G1096"\+w* \+w foundation|strong="G2310"\+w*, \+w against|strong="G1909"\+w* \+w which|strong="G3739"\+w* \+w the|strong="G2532"\+w* stream broke, \+w and|strong="G2532"\+w* \+w immediately|strong="G2112"\+w* \+w it|strong="G2532"\+w* \+w fell|strong="G4098"\+w*; \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w ruin|strong="G4485"\+w* \+w of|strong="G2532"\+w* \+w that|strong="G3739"\+w* \+w house|strong="G3614"\+w* \+w was|strong="G1510"\+w* \+w great|strong="G3173"\+w*.”\wj* +\c 7 +\p +\v 1 \w After|strong="G4137"\w* \w he|strong="G3588"\w* \w had|strong="G3588"\w* \w finished|strong="G4137"\w* speaking \w in|strong="G1519"\w* \w the|strong="G1519"\w* hearing \w of|strong="G3956"\w* \w the|strong="G1519"\w* \w people|strong="G2992"\w*, \w he|strong="G3588"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w Capernaum|strong="G2584"\w*. +\v 2 \w A|strong="G2192"\w* \w certain|strong="G5100"\w* \w centurion|strong="G1543"\w*’\w s|strong="G2192"\w* \w servant|strong="G1401"\w*, \w who|strong="G3739"\w* \w was|strong="G1510"\w* \w dear|strong="G1784"\w* \w to|strong="G3195"\w* \w him|strong="G3739"\w*, \w was|strong="G1510"\w* \w sick|strong="G2560"\w* \w and|strong="G1161"\w* \w at|strong="G1161"\w* \w the|strong="G1161"\w* \w point|strong="G3195"\w* \w of|strong="G1401"\w* death. +\v 3 \w When|strong="G1161"\w* \w he|strong="G1161"\w* heard \w about|strong="G4012"\w* \w Jesus|strong="G2424"\w*, \w he|strong="G1161"\w* \w sent|strong="G2424"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w* \w elders|strong="G4245"\w* \w of|strong="G4012"\w* \w the|strong="G1161"\w* \w Jews|strong="G2453"\w*, \w asking|strong="G2065"\w* \w him|strong="G3588"\w* \w to|strong="G4314"\w* \w come|strong="G2064"\w* \w and|strong="G1161"\w* \w save|strong="G1295"\w* \w his|strong="G4012"\w* \w servant|strong="G1401"\w*. +\v 4 \w When|strong="G1161"\w* \w they|strong="G1161"\w* \w came|strong="G3854"\w* \w to|strong="G4314"\w* \w Jesus|strong="G2424"\w*, \w they|strong="G1161"\w* \w begged|strong="G3870"\w* \w him|strong="G3588"\w* \w earnestly|strong="G4709"\w*, \w saying|strong="G3004"\w*, “\w He|strong="G1161"\w* \w is|strong="G1510"\w* worthy \w for|strong="G3754"\w* \w you|strong="G3739"\w* \w to|strong="G4314"\w* \w do|strong="G3004"\w* \w this|strong="G3778"\w* \w for|strong="G3754"\w* \w him|strong="G3588"\w*, +\v 5 \w for|strong="G1063"\w* \w he|strong="G2532"\w* loves \w our|strong="G2532"\w* \w nation|strong="G1484"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w built|strong="G3618"\w* \w our|strong="G2532"\w* \w synagogue|strong="G4864"\w* \w for|strong="G1063"\w* \w us|strong="G2249"\w*.” +\v 6 \w Jesus|strong="G2424"\w* \w went|strong="G4198"\w* \w with|strong="G4862"\w* \w them|strong="G3588"\w*. \w When|strong="G1161"\w* \w he|strong="G1161"\w* \w was|strong="G1510"\w* \w now|strong="G1161"\w* \w not|strong="G3756"\w* \w far|strong="G3112"\w* \w from|strong="G5259"\w* \w the|strong="G1161"\w* \w house|strong="G3614"\w*, \w the|strong="G1161"\w* \w centurion|strong="G1543"\w* \w sent|strong="G3992"\w* \w friends|strong="G5384"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w*, “\w Lord|strong="G2962"\w*, don’\w t|strong="G3588"\w* \w trouble|strong="G4660"\w* yourself, \w for|strong="G1063"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w not|strong="G3756"\w* \w worthy|strong="G2425"\w* \w for|strong="G1063"\w* \w you|strong="G3004"\w* \w to|strong="G2443"\w* \w come|strong="G1525"\w* \w under|strong="G5259"\w* \w my|strong="G1525"\w* \w roof|strong="G4721"\w*. +\v 7 \w Therefore|strong="G1352"\w* \w I|strong="G1473"\w* didn’\w t|strong="G3588"\w* \w even|strong="G2532"\w* think \w myself|strong="G1683"\w* worthy \w to|strong="G4314"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w you|strong="G4771"\w*; \w but|strong="G2532"\w* \w say|strong="G3004"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w*, \w and|strong="G2532"\w* \w my|strong="G1473"\w* \w servant|strong="G3816"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w healed|strong="G2390"\w*. +\v 8 \w For|strong="G1063"\w* \w I|strong="G1473"\w* \w also|strong="G2532"\w* \w am|strong="G1510"\w* \w a|strong="G2192"\w* \w man|strong="G3778"\w* placed \w under|strong="G5259"\w* \w authority|strong="G1849"\w*, \w having|strong="G2192"\w* \w under|strong="G5259"\w* \w myself|strong="G1683"\w* \w soldiers|strong="G4757"\w*. \w I|strong="G1473"\w* \w tell|strong="G3004"\w* \w this|strong="G3778"\w* \w one|strong="G3588"\w*, ‘\w Go|strong="G4198"\w*!’ \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w goes|strong="G4198"\w*; \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w another|strong="G3588"\w*, ‘\w Come|strong="G2064"\w*!’ \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w comes|strong="G2064"\w*; \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w my|strong="G1473"\w* \w servant|strong="G1401"\w*, ‘\w Do|strong="G4160"\w* \w this|strong="G3778"\w*,’ \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w does|strong="G4160"\w* \w it|strong="G2532"\w*.” +\p +\v 9 \w When|strong="G1161"\w* \w Jesus|strong="G2424"\w* heard \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w he|strong="G2532"\w* \w marveled|strong="G2296"\w* \w at|strong="G1722"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w turned|strong="G4762"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w multitude|strong="G3793"\w* \w who|strong="G3588"\w* followed \w him|strong="G3588"\w*, \wj “\+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w I|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w not|strong="G3761"\+w* \+w found|strong="G2147"\+w* \+w such|strong="G5118"\+w* \+w great|strong="G5118"\+w* \+w faith|strong="G4102"\+w*, \+w no|strong="G3761"\+w*, \+w not|strong="G3761"\+w* \+w in|strong="G1722"\+w* \+w Israel|strong="G2474"\+w*.”\wj* +\v 10 \w Those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w sent|strong="G3992"\w*, \w returning|strong="G5290"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w house|strong="G3624"\w*, \w found|strong="G2147"\w* \w that|strong="G3588"\w* \w the|strong="G2532"\w* \w servant|strong="G1401"\w* \w who|strong="G3588"\w* \w had|strong="G2532"\w* \w been|strong="G2532"\w* sick \w was|strong="G3588"\w* \w well|strong="G2532"\w*. +\p +\v 11 \w Soon|strong="G1722"\w* \w afterwards|strong="G1722"\w*, \w he|strong="G2532"\w* \w went|strong="G4198"\w* \w to|strong="G1519"\w* \w a|strong="G1096"\w* \w city|strong="G4172"\w* \w called|strong="G2564"\w* \w Nain|strong="G3484"\w*. \w Many|strong="G4183"\w* \w of|strong="G2532"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w*, \w along|strong="G2532"\w* \w with|strong="G1722"\w* \w a|strong="G1096"\w* \w great|strong="G4183"\w* \w multitude|strong="G3793"\w*, \w went|strong="G4198"\w* \w with|strong="G1722"\w* \w him|strong="G3588"\w*. +\v 12 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w he|strong="G2532"\w* \w came|strong="G2532"\w* \w near|strong="G1448"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w gate|strong="G4439"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w*, \w behold|strong="G2400"\w*, \w one|strong="G3588"\w* \w who|strong="G3588"\w* \w was|strong="G1510"\w* \w dead|strong="G2348"\w* \w was|strong="G1510"\w* \w carried|strong="G2532"\w* \w out|strong="G2532"\w*, \w the|strong="G2532"\w* \w only|strong="G3439"\w* born\f + \fr 7:12 \ft The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”. \f* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w his|strong="G3708"\w* \w mother|strong="G3384"\w*, \w and|strong="G2532"\w* \w she|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G5613"\w* \w widow|strong="G5503"\w*. \w Many|strong="G2425"\w* \w people|strong="G3793"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w were|strong="G1510"\w* \w with|strong="G4862"\w* \w her|strong="G3708"\w*. +\v 13 \w When|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w saw|strong="G3708"\w* \w her|strong="G1438"\w*, \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w compassion|strong="G4697"\w* \w on|strong="G1909"\w* \w her|strong="G1438"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w her|strong="G1438"\w*, \wj “Don’\+w t|strong="G3588"\+w* cry.”\wj* +\v 14 \w He|strong="G2532"\w* \w came|strong="G4334"\w* \w near|strong="G4334"\w* \w and|strong="G2532"\w* touched \w the|strong="G2532"\w* \w coffin|strong="G4673"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* bearers \w stood|strong="G2476"\w* \w still|strong="G2476"\w*. \w He|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Young|strong="G3495"\+w* \+w man|strong="G3495"\+w*, \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w*, \+w arise|strong="G1453"\+w*!”\wj* +\v 15 \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w dead|strong="G3498"\w* \w sat|strong="G3498"\w* \w up|strong="G1325"\w* \w and|strong="G2532"\w* began \w to|strong="G2532"\w* \w speak|strong="G2980"\w*. \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w gave|strong="G1325"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w his|strong="G2532"\w* \w mother|strong="G3384"\w*. +\p +\v 16 \w Fear|strong="G5401"\w* \w took|strong="G2983"\w* \w hold|strong="G2249"\w* \w of|strong="G2316"\w* \w all|strong="G3956"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w glorified|strong="G1392"\w* \w God|strong="G2316"\w*, \w saying|strong="G3004"\w*, “\w A|strong="G2532"\w* \w great|strong="G3173"\w* \w prophet|strong="G4396"\w* \w has|strong="G2316"\w* \w arisen|strong="G1453"\w* \w among|strong="G1722"\w* \w us|strong="G3004"\w*!” \w and|strong="G2532"\w*, “\w God|strong="G2316"\w* \w has|strong="G2316"\w* \w visited|strong="G1980"\w* \w his|strong="G3956"\w* \w people|strong="G2992"\w*!” +\v 17 \w This|strong="G3778"\w* \w report|strong="G3056"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w concerning|strong="G4012"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w whole|strong="G3650"\w* \w of|strong="G4012"\w* \w Judea|strong="G2449"\w* \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w surrounding|strong="G4066"\w* \w region|strong="G4066"\w*. +\p +\v 18 \w The|strong="G2532"\w* \w disciples|strong="G3101"\w* \w of|strong="G4012"\w* \w John|strong="G2491"\w* told \w him|strong="G3588"\w* \w about|strong="G4012"\w* \w all|strong="G3956"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w*. +\v 19 \w John|strong="G2491"\w*, \w calling|strong="G4341"\w* \w to|strong="G4314"\w* himself \w two|strong="G1417"\w* \w of|strong="G2532"\w* \w his|strong="G2532"\w* \w disciples|strong="G3101"\w*, \w sent|strong="G3992"\w* \w them|strong="G3588"\w* \w to|strong="G4314"\w* \w Jesus|strong="G3004"\w*, \w saying|strong="G3004"\w*, “\w Are|strong="G1510"\w* \w you|strong="G4771"\w* \w the|strong="G2532"\w* \w one|strong="G5100"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w coming|strong="G2064"\w*, \w or|strong="G2228"\w* \w should|strong="G5100"\w* \w we|strong="G2532"\w* \w look|strong="G4328"\w* \w for|strong="G4314"\w* \w another|strong="G5100"\w*?” +\v 20 \w When|strong="G1161"\w* \w the|strong="G1161"\w* \w men|strong="G3588"\w* \w had|strong="G1510"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \w they|strong="G1161"\w* \w said|strong="G3004"\w*, “\w John|strong="G2491"\w* \w the|strong="G1161"\w* Baptizer \w has|strong="G1510"\w* sent \w us|strong="G3004"\w* \w to|strong="G4314"\w* \w you|strong="G4771"\w*, \w saying|strong="G3004"\w*, ‘\w Are|strong="G1510"\w* \w you|strong="G4771"\w* \w he|strong="G1161"\w* \w who|strong="G3588"\w* \w comes|strong="G2064"\w*, \w or|strong="G2228"\w* \w should|strong="G3588"\w* \w we|strong="G2249"\w* \w look|strong="G4328"\w* \w for|strong="G4314"\w* \w another|strong="G3588"\w*?’” +\p +\v 21 \w In|strong="G1722"\w* \w that|strong="G3588"\w* \w hour|strong="G5610"\w* \w he|strong="G2532"\w* \w cured|strong="G2323"\w* \w many|strong="G4183"\w* \w of|strong="G4151"\w* \w diseases|strong="G3554"\w* \w and|strong="G2532"\w* \w plagues|strong="G3148"\w* \w and|strong="G2532"\w* \w evil|strong="G4190"\w* \w spirits|strong="G4151"\w*; \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w many|strong="G4183"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w blind|strong="G5185"\w* \w he|strong="G2532"\w* \w gave|strong="G2532"\w* \w sight|strong="G3588"\w*. +\v 22 \w Jesus|strong="G3004"\w* \w answered|strong="G3004"\w* \w them|strong="G3739"\w*, \wj “\+w Go|strong="G4198"\+w* \+w and|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w John|strong="G2491"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3739"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G3739"\+w* \+w have|strong="G2532"\+w* \+w seen|strong="G3708"\+w* \+w and|strong="G2532"\+w* heard: \+w that|strong="G3754"\+w* \+w the|strong="G2532"\+w* \+w blind|strong="G5185"\+w* receive \+w their|strong="G2532"\+w* sight, \+w the|strong="G2532"\+w* \+w lame|strong="G5560"\+w* \+w walk|strong="G4043"\+w*, \+w the|strong="G2532"\+w* \+w lepers|strong="G3015"\+w* \+w are|strong="G3739"\+w* \+w cleansed|strong="G2511"\+w*, \+w the|strong="G2532"\+w* \+w deaf|strong="G2974"\+w* hear, \+w the|strong="G2532"\+w* \+w dead|strong="G3498"\+w* \+w are|strong="G3739"\+w* \+w raised|strong="G1453"\+w* \+w up|strong="G1453"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w poor|strong="G4434"\+w* \+w have|strong="G2532"\+w* \+w good|strong="G2097"\+w* \+w news|strong="G2097"\+w* \+w preached|strong="G2097"\+w* \+w to|strong="G2532"\+w* \+w them|strong="G3739"\+w*. \wj* +\v 23 \wj \+w Blessed|strong="G3107"\+w* \+w is|strong="G1510"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3739"\+w* finds \+w no|strong="G3361"\+w* occasion \+w for|strong="G1722"\+w* \+w stumbling|strong="G4624"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w*.”\wj* +\p +\v 24 \w When|strong="G1161"\w* \w John|strong="G2491"\w*’s messengers \w had|strong="G3588"\w* \w departed|strong="G1831"\w*, \w he|strong="G1161"\w* \w began|strong="G1161"\w* \w to|strong="G1519"\w* \w tell|strong="G3004"\w* \w the|strong="G1519"\w* \w multitudes|strong="G3793"\w* \w about|strong="G4012"\w* \w John|strong="G2491"\w*, \wj “\+w What|strong="G5101"\+w* \+w did|strong="G5101"\+w* \+w you|strong="G3004"\+w* \+w go|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w wilderness|strong="G2048"\+w* \+w to|strong="G1519"\+w* \+w see|strong="G2300"\+w*? \+w A|strong="G1519"\+w* \+w reed|strong="G2563"\+w* \+w shaken|strong="G4531"\+w* \+w by|strong="G5259"\+w* \+w the|strong="G1519"\+w* wind? \wj* +\v 25 \wj \+w But|strong="G2532"\+w* \+w what|strong="G5101"\+w* \+w did|strong="G2532"\+w* \+w you|strong="G1722"\+w* \+w go|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w to|strong="G2532"\+w* \+w see|strong="G3708"\+w*? \+w A|strong="G2532"\+w* \+w man|strong="G5101"\+w* \+w clothed|strong="G2441"\+w* \+w in|strong="G1722"\+w* \+w soft|strong="G3120"\+w* \+w clothing|strong="G2440"\+w*? \+w Behold|strong="G2400"\+w*, \+w those|strong="G3588"\+w* \+w who|strong="G5101"\+w* \+w are|strong="G1510"\+w* \+w gorgeously|strong="G1741"\+w* \+w dressed|strong="G1722"\+w* \+w and|strong="G2532"\+w* \+w live|strong="G5225"\+w* \+w delicately|strong="G5172"\+w* \+w are|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w kings|strong="G3588"\+w*’ courts. \wj* +\v 26 \wj \+w But|strong="G2532"\+w* \+w what|strong="G5101"\+w* \+w did|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w go|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w to|strong="G2532"\+w* \+w see|strong="G3708"\+w*? \+w A|strong="G2532"\+w* \+w prophet|strong="G4396"\+w*? \+w Yes|strong="G3483"\+w*, \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w and|strong="G2532"\+w* much \+w more|strong="G2532"\+w* \+w than|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w prophet|strong="G4396"\+w*. \wj* +\v 27 \wj \+w This|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w he|strong="G3739"\+w* \+w of|strong="G4012"\+w* \+w whom|strong="G3739"\+w* \+w it|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w written|strong="G1125"\+w*,\wj* +\q1 \wj ‘\+w Behold|strong="G2400"\+w*, \+w I|strong="G1473"\+w* send \+w my|strong="G3708"\+w* messenger \+w before|strong="G4253"\+w* \+w your|strong="G3708"\+w* \+w face|strong="G4383"\+w*,\wj* +\q2 \wj \+w who|strong="G3739"\+w* \+w will|strong="G1510"\+w* \+w prepare|strong="G2680"\+w* \+w your|strong="G3708"\+w* \+w way|strong="G3598"\+w* \+w before|strong="G4253"\+w* \+w you|strong="G4771"\+w*.’\wj*\x + \xo 7:27 \xt Malachi 3:1\x* +\p +\v 28 \wj “\+w For|strong="G1161"\+w* \+w I|strong="G1161"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w among|strong="G1722"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G1510"\+w* \+w born|strong="G1084"\+w* \+w of|strong="G2316"\+w* \+w women|strong="G1135"\+w* \+w there|strong="G1161"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G1510"\+w* \+w a|strong="G1722"\+w* \+w greater|strong="G3173"\+w* \+w prophet|strong="G4396"\+w* \+w than|strong="G3173"\+w* \+w John|strong="G2491"\+w* \+w the|strong="G1722"\+w* Baptizer; \+w yet|strong="G1161"\+w* \+w he|strong="G1161"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w least|strong="G3398"\+w* \+w in|strong="G1722"\+w* \+w God|strong="G2316"\+w*’s Kingdom \+w is|strong="G1510"\+w* \+w greater|strong="G3173"\+w* \+w than|strong="G3173"\+w* \+w he|strong="G1161"\+w*.”\wj* +\p +\v 29 \w When|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w tax|strong="G5057"\w* \w collectors|strong="G5057"\w* heard \w this|strong="G3588"\w*, \w they|strong="G2532"\w* declared \w God|strong="G2316"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w just|strong="G2532"\w*, \w having|strong="G2532"\w* \w been|strong="G2532"\w* baptized \w with|strong="G2532"\w* \w John|strong="G2491"\w*’s baptism. +\v 30 \w But|strong="G1161"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w lawyers|strong="G3544"\w* rejected \w the|strong="G2532"\w* \w counsel|strong="G1012"\w* \w of|strong="G5259"\w* \w God|strong="G2316"\w*, \w not|strong="G3361"\w* \w being|strong="G2532"\w* baptized \w by|strong="G5259"\w* \w him|strong="G3588"\w* \w themselves|strong="G1438"\w*. +\p +\v 31 \f + \fr 7:31 \ft TR adds “But the Lord said,”\f*\wj “\+w To|strong="G2532"\+w* \+w what|strong="G5101"\+w* \+w then|strong="G3767"\+w* \+w should|strong="G3588"\+w* \+w I|strong="G2532"\+w* \+w compare|strong="G3666"\+w* \+w the|strong="G2532"\+w* \+w people|strong="G1510"\+w* \+w of|strong="G2532"\+w* \+w this|strong="G3778"\+w* \+w generation|strong="G1074"\+w*? \+w What|strong="G5101"\+w* \+w are|strong="G1510"\+w* \+w they|strong="G2532"\+w* \+w like|strong="G3664"\+w*? \wj* +\v 32 \wj \+w They|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w like|strong="G3664"\+w* \+w children|strong="G3813"\+w* \+w who|strong="G3588"\+w* \+w sit|strong="G2521"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* marketplace \+w and|strong="G2532"\+w* \+w call|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w one|strong="G3588"\+w* \+w another|strong="G3588"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w We|strong="G2532"\+w* piped \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* didn’\+w t|strong="G3588"\+w* \+w dance|strong="G3738"\+w*. \+w We|strong="G2532"\+w* mourned, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* didn’\+w t|strong="G3588"\+w* \+w weep|strong="G2799"\+w*.’ \wj* +\v 33 \wj \+w For|strong="G1063"\+w* \+w John|strong="G2491"\+w* \+w the|strong="G2532"\+w* Baptizer \+w came|strong="G2064"\+w* \+w neither|strong="G3366"\+w* \+w eating|strong="G2068"\+w* bread \+w nor|strong="G3366"\+w* \+w drinking|strong="G4095"\+w* \+w wine|strong="G3631"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G3004"\+w* \+w say|strong="G3004"\+w*, ‘\+w He|strong="G2532"\+w* \+w has|strong="G2192"\+w* \+w a|strong="G2192"\+w* \+w demon|strong="G1140"\+w*.’ \wj* +\v 34 \wj \+w The|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w* \+w has|strong="G3708"\+w* \+w come|strong="G2064"\+w* \+w eating|strong="G2068"\+w* \+w and|strong="G2532"\+w* \+w drinking|strong="G4095"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G3004"\+w* \+w say|strong="G3004"\+w*, ‘\+w Behold|strong="G2400"\+w*, \+w a|strong="G2532"\+w* glutton \+w and|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w drunkard|strong="G3630"\+w*, \+w a|strong="G2532"\+w* \+w friend|strong="G5384"\+w* \+w of|strong="G5207"\+w* \+w tax|strong="G5057"\+w* \+w collectors|strong="G5057"\+w* \+w and|strong="G2532"\+w* sinners!’ \wj* +\v 35 \wj \+w Wisdom|strong="G4678"\+w* \+w is|strong="G3588"\+w* \+w justified|strong="G1344"\+w* \+w by|strong="G1344"\+w* \+w all|strong="G3956"\+w* \+w her|strong="G3956"\+w* \+w children|strong="G5043"\+w*.”\wj* +\p +\v 36 \w One|strong="G5100"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w invited|strong="G2065"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w eat|strong="G2068"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w*. \w He|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w Pharisee|strong="G5330"\w*’s \w house|strong="G3624"\w* \w and|strong="G2532"\w* \w sat|strong="G2532"\w* \w at|strong="G1519"\w* \w the|strong="G2532"\w* table. +\v 37 \w Behold|strong="G2400"\w*, \w a|strong="G2532"\w* \w woman|strong="G1135"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w city|strong="G4172"\w* \w who|strong="G3588"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* sinner, \w when|strong="G2532"\w* \w she|strong="G2532"\w* \w knew|strong="G1921"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w reclining|strong="G2621"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Pharisee|strong="G5330"\w*’s \w house|strong="G3614"\w*, \w brought|strong="G2865"\w* \w an|strong="G2532"\w* alabaster jar \w of|strong="G2532"\w* \w ointment|strong="G3464"\w*. +\v 38 \w Standing|strong="G2476"\w* \w behind|strong="G3694"\w* \w at|strong="G3844"\w* \w his|strong="G2532"\w* \w feet|strong="G4228"\w* \w weeping|strong="G2799"\w*, \w she|strong="G2532"\w* began \w to|strong="G2532"\w* \w wet|strong="G1026"\w* \w his|strong="G2532"\w* \w feet|strong="G4228"\w* \w with|strong="G3844"\w* \w her|strong="G3588"\w* \w tears|strong="G1144"\w*, \w and|strong="G2532"\w* \w she|strong="G2532"\w* \w wiped|strong="G1591"\w* \w them|strong="G3588"\w* \w with|strong="G3844"\w* \w the|strong="G2532"\w* \w hair|strong="G2359"\w* \w of|strong="G2532"\w* \w her|strong="G3588"\w* \w head|strong="G2776"\w*, \w kissed|strong="G2705"\w* \w his|strong="G2532"\w* \w feet|strong="G4228"\w*, \w and|strong="G2532"\w* anointed \w them|strong="G3588"\w* \w with|strong="G3844"\w* \w the|strong="G2532"\w* \w ointment|strong="G3464"\w*. +\v 39 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w the|strong="G1722"\w* \w Pharisee|strong="G5330"\w* \w who|strong="G5101"\w* \w had|strong="G2532"\w* \w invited|strong="G2564"\w* \w him|strong="G3588"\w* \w saw|strong="G3708"\w* \w it|strong="G2532"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w himself|strong="G1438"\w*, “\w This|strong="G3778"\w* \w man|strong="G3778"\w*, \w if|strong="G1487"\w* \w he|strong="G2532"\w* \w were|strong="G1510"\w* \w a|strong="G2532"\w* \w prophet|strong="G4396"\w*, \w would|strong="G2532"\w* \w have|strong="G2532"\w* \w perceived|strong="G1097"\w* \w who|strong="G5101"\w* \w and|strong="G2532"\w* \w what|strong="G5101"\w* \w kind|strong="G4217"\w* \w of|strong="G2532"\w* \w woman|strong="G1135"\w* \w this|strong="G3778"\w* \w is|strong="G1510"\w* \w who|strong="G5101"\w* touches \w him|strong="G3588"\w*, \w that|strong="G3754"\w* \w she|strong="G2532"\w* \w is|strong="G1510"\w* \w a|strong="G2532"\w* sinner.” +\p +\v 40 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w Simon|strong="G4613"\+w*, \+w I|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w something|strong="G5100"\+w* \+w to|strong="G4314"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w*.” \wj* +\p \w He|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Teacher|strong="G1320"\w*, \w say|strong="G3004"\w* \w on|strong="G1161"\w*.” +\p +\v 41 \wj “\+w A|strong="G1510"\+w* \+w certain|strong="G5100"\+w* lender \+w had|strong="G1510"\+w* \+w two|strong="G1417"\+w* \+w debtors|strong="G5533"\+w*. \+w The|strong="G1161"\+w* \+w one|strong="G1520"\+w* \+w owed|strong="G3784"\+w* \+w five|strong="G4001"\+w* \+w hundred|strong="G4001"\+w* \+w denarii|strong="G1220"\+w*, \+w and|strong="G1161"\+w* \+w the|strong="G1161"\+w* \+w other|strong="G2087"\+w* \+w fifty|strong="G4004"\+w*. \wj* +\v 42 \wj \+w When|strong="G3767"\+w* \+w they|strong="G3767"\+w* couldn’t pay, \+w he|strong="G3767"\+w* \+w forgave|strong="G5483"\+w* \+w them|strong="G4183"\+w* both. \+w Which|strong="G5101"\+w* \+w of|strong="G2192"\+w* \+w them|strong="G4183"\+w* \+w therefore|strong="G3767"\+w* \+w will|strong="G5101"\+w* love him \+w most|strong="G4183"\+w*?”\wj* +\p +\v 43 \w Simon|strong="G4613"\w* \w answered|strong="G3004"\w*, “\w He|strong="G1161"\w*, \w I|strong="G3739"\w* \w suppose|strong="G5274"\w*, \w to|strong="G3004"\w* \w whom|strong="G3739"\w* \w he|strong="G1161"\w* \w forgave|strong="G5483"\w* \w the|strong="G1161"\w* \w most|strong="G4183"\w*.” +\p \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w You|strong="G3739"\+w* \+w have|strong="G3748"\+w* \+w judged|strong="G2919"\+w* \+w correctly|strong="G3723"\+w*.”\wj* +\v 44 \w Turning|strong="G4762"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w woman|strong="G1135"\w*, \w he|strong="G2532"\w* \w said|strong="G5346"\w* \w to|strong="G1519"\w* \w Simon|strong="G4613"\w*, \wj “\+w Do|strong="G2532"\+w* \+w you|strong="G4771"\+w* see \+w this|strong="G3778"\+w* \+w woman|strong="G1135"\+w*? \+w I|strong="G1473"\+w* \+w entered|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w your|strong="G2532"\+w* \+w house|strong="G3614"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w gave|strong="G1325"\+w* \+w me|strong="G1325"\+w* \+w no|strong="G3756"\+w* \+w water|strong="G5204"\+w* \+w for|strong="G1519"\+w* \+w my|strong="G1525"\+w* \+w feet|strong="G4228"\+w*, \+w but|strong="G1161"\+w* \+w she|strong="G2532"\+w* \+w has|strong="G3778"\+w* \+w wet|strong="G1026"\+w* \+w my|strong="G1525"\+w* \+w feet|strong="G4228"\+w* \+w with|strong="G4314"\+w* \+w her|strong="G1325"\+w* \+w tears|strong="G1144"\+w*, \+w and|strong="G2532"\+w* \+w wiped|strong="G1591"\+w* \+w them|strong="G3588"\+w* \+w with|strong="G4314"\+w* \+w the|strong="G2532"\+w* \+w hair|strong="G2359"\+w* \+w of|strong="G2532"\+w* \+w her|strong="G1325"\+w* head. \wj* +\v 45 \wj \+w You|strong="G3739"\+w* \+w gave|strong="G1325"\+w* \+w me|strong="G1325"\+w* \+w no|strong="G3756"\+w* \+w kiss|strong="G5370"\+w*, \+w but|strong="G1161"\+w* \+w she|strong="G1161"\+w*, \+w since|strong="G1161"\+w* \+w the|strong="G1161"\+w* \+w time|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w came|strong="G1525"\+w* \+w in|strong="G1525"\+w*, \+w has|strong="G3739"\+w* \+w not|strong="G3756"\+w* \+w ceased|strong="G1257"\+w* \+w to|strong="G1325"\+w* \+w kiss|strong="G5370"\+w* \+w my|strong="G1525"\+w* \+w feet|strong="G4228"\+w*. \wj* +\v 46 \wj \+w You|strong="G3778"\+w* didn’\+w t|strong="G3588"\+w* anoint \+w my|strong="G1473"\+w* \+w head|strong="G2776"\+w* \+w with|strong="G3756"\+w* \+w oil|strong="G1637"\+w*, \+w but|strong="G1161"\+w* \+w she|strong="G1161"\+w* \+w has|strong="G3778"\+w* anointed \+w my|strong="G1473"\+w* \+w feet|strong="G4228"\+w* \+w with|strong="G3756"\+w* \+w ointment|strong="G3464"\+w*. \wj* +\v 47 \wj \+w Therefore|strong="G1161"\+w* \+w I|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w*, \+w her|strong="G3754"\+w* sins, \+w which|strong="G3739"\+w* \+w are|strong="G3588"\+w* \+w many|strong="G4183"\+w*, \+w are|strong="G3588"\+w* forgiven, \+w for|strong="G3754"\+w* \+w she|strong="G1161"\+w* loved \+w much|strong="G4183"\+w*. \+w But|strong="G1161"\+w* \+w one|strong="G3739"\+w* \+w to|strong="G3004"\+w* \+w whom|strong="G3739"\+w* \+w little|strong="G3641"\+w* \+w is|strong="G3588"\+w* forgiven, loves \+w little|strong="G3641"\+w*.” \wj* +\v 48 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w her|strong="G3588"\w*, \wj “\+w Your|strong="G3588"\+w* sins \+w are|strong="G3588"\+w* forgiven.”\wj* +\p +\v 49 \w Those|strong="G3588"\w* \w who|strong="G3739"\w* \w sat|strong="G3739"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w table|strong="G4873"\w* \w with|strong="G1722"\w* \w him|strong="G3588"\w* began \w to|strong="G2532"\w* \w say|strong="G3004"\w* \w to|strong="G2532"\w* \w themselves|strong="G1438"\w*, “\w Who|strong="G3739"\w* \w is|strong="G1510"\w* \w this|strong="G3778"\w* \w who|strong="G3739"\w* \w even|strong="G2532"\w* forgives sins?” +\p +\v 50 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w woman|strong="G1135"\w*, \wj “\+w Your|strong="G4982"\+w* \+w faith|strong="G4102"\+w* \+w has|strong="G4102"\+w* \+w saved|strong="G4982"\+w* \+w you|strong="G4771"\+w*. \+w Go|strong="G4198"\+w* \+w in|strong="G1519"\+w* \+w peace|strong="G1515"\+w*.” \wj* +\c 8 +\p +\v 1 \w Soon|strong="G1722"\w* \w afterwards|strong="G1722"\w*, \w he|strong="G2532"\w* \w went|strong="G2532"\w* \w about|strong="G2596"\w* \w through|strong="G1722"\w* \w cities|strong="G4172"\w* \w and|strong="G2532"\w* \w villages|strong="G2968"\w*, \w preaching|strong="G2784"\w* \w and|strong="G2532"\w* bringing \w the|strong="G1722"\w* \w good|strong="G2097"\w* \w news|strong="G2097"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*’s Kingdom. \w With|strong="G1722"\w* \w him|strong="G3588"\w* \w were|strong="G3588"\w* \w the|strong="G1722"\w* \w twelve|strong="G1427"\w*, +\v 2 \w and|strong="G2532"\w* \w certain|strong="G5100"\w* \w women|strong="G1135"\w* \w who|strong="G3739"\w* \w had|strong="G2532"\w* \w been|strong="G1510"\w* \w healed|strong="G2323"\w* \w of|strong="G4151"\w* \w evil|strong="G4190"\w* \w spirits|strong="G4151"\w* \w and|strong="G2532"\w* infirmities: \w Mary|strong="G3137"\w* \w who|strong="G3739"\w* \w was|strong="G1510"\w* \w called|strong="G2564"\w* \w Magdalene|strong="G3094"\w*, \w from|strong="G2532"\w* \w whom|strong="G3739"\w* \w seven|strong="G2033"\w* \w demons|strong="G1140"\w* \w had|strong="G2532"\w* \w gone|strong="G1831"\w* \w out|strong="G1831"\w*; +\v 3 \w and|strong="G2532"\w* \w Joanna|strong="G2489"\w*, \w the|strong="G2532"\w* \w wife|strong="G1135"\w* \w of|strong="G1537"\w* Chuzas, \w Herod|strong="G2264"\w*’s \w steward|strong="G2012"\w*; \w Susanna|strong="G4677"\w*; \w and|strong="G2532"\w* \w many|strong="G4183"\w* \w others|strong="G2087"\w* \w who|strong="G3588"\w* \w served|strong="G1247"\w* \w them|strong="G3588"\w*\f + \fr 8:3 \ft TR reads “him” instead of “them”\f* \w from|strong="G1537"\w* \w their|strong="G2532"\w* \w possessions|strong="G5225"\w*. +\v 4 \w When|strong="G1161"\w* \w a|strong="G2532"\w* \w great|strong="G4183"\w* \w multitude|strong="G3793"\w* \w came|strong="G2532"\w* \w together|strong="G4896"\w* \w and|strong="G2532"\w* \w people|strong="G3793"\w* \w from|strong="G2532"\w* \w every|strong="G2596"\w* \w city|strong="G4172"\w* \w were|strong="G3588"\w* \w coming|strong="G4896"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \w he|strong="G2532"\w* \w spoke|strong="G3004"\w* \w by|strong="G1223"\w* \w a|strong="G2532"\w* \w parable|strong="G3850"\w*: +\v 5 \wj “\+w The|strong="G1722"\+w* farmer \+w went|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w to|strong="G2532"\+w* \+w sow|strong="G4687"\+w* \+w his|strong="G1722"\+w* \+w seed|strong="G4703"\+w*. \+w As|strong="G1722"\+w* \+w he|strong="G2532"\+w* \+w sowed|strong="G4687"\+w*, \+w some|strong="G3739"\+w* \+w fell|strong="G4098"\+w* \+w along|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w road|strong="G3598"\+w*, \+w and|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w was|strong="G3588"\+w* \+w trampled|strong="G2662"\+w* \+w under|strong="G1722"\+w* \+w foot|strong="G2662"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w birds|strong="G4071"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w sky|strong="G3772"\+w* \+w devoured|strong="G2719"\+w* \+w it|strong="G2532"\+w*. \wj* +\v 6 \wj \+w Other|strong="G2087"\+w* seed \+w fell|strong="G2532"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w rock|strong="G4073"\+w*, \+w and|strong="G2532"\+w* \+w as|strong="G2532"\+w* \+w soon|strong="G3361"\+w* \+w as|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w grew|strong="G5453"\+w*, \+w it|strong="G2532"\+w* \+w withered|strong="G3583"\+w* \+w away|strong="G3583"\+w*, \+w because|strong="G1223"\+w* \+w it|strong="G2532"\+w* \+w had|strong="G2192"\+w* \+w no|strong="G3361"\+w* \+w moisture|strong="G2429"\+w*. \wj* +\v 7 \wj \+w Other|strong="G2087"\+w* \+w fell|strong="G4098"\+w* \+w amid|strong="G1722"\+w* \+w the|strong="G1722"\+w* thorns, \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* thorns \+w grew|strong="G4855"\+w* \+w with|strong="G1722"\+w* \+w it|strong="G2532"\+w* \+w and|strong="G2532"\+w* choked \+w it|strong="G2532"\+w*. \wj* +\v 8 \wj \+w Other|strong="G2087"\+w* \+w fell|strong="G4098"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w good|strong="G3588"\+w* \+w ground|strong="G1093"\+w* \+w and|strong="G2532"\+w* \+w grew|strong="G5453"\+w* \+w and|strong="G2532"\+w* \+w produced|strong="G4160"\+w* \+w one|strong="G3588"\+w* \+w hundred|strong="G1542"\+w* \+w times|strong="G1542"\+w* \+w as|strong="G1519"\+w* \+w much|strong="G1542"\+w* \+w fruit|strong="G2590"\+w*.”\wj* \w As|strong="G1519"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w he|strong="G2532"\w* \w called|strong="G3004"\w* \w out|strong="G2532"\w*, \wj “\+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w has|strong="G2192"\+w* \+w ears|strong="G3775"\+w* \+w to|strong="G1519"\+w* hear, \+w let|strong="G2192"\+w* \+w him|strong="G3588"\+w* hear!”\wj* +\p +\v 9 \w Then|strong="G1161"\w* \w his|strong="G3588"\w* \w disciples|strong="G3101"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w*, “\w What|strong="G5101"\w* \w does|strong="G1510"\w* \w this|strong="G3778"\w* \w parable|strong="G3850"\w* \w mean|strong="G1510"\w*?” +\p +\v 10 \w He|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w To|strong="G2443"\+w* \+w you|strong="G5210"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w given|strong="G1325"\+w* \+w to|strong="G2443"\+w* \+w know|strong="G1097"\+w* \+w the|strong="G1722"\+w* \+w mysteries|strong="G3466"\+w* \+w of|strong="G2316"\+w* \+w God|strong="G2316"\+w*’s Kingdom, \+w but|strong="G1161"\+w* \+w to|strong="G2443"\+w* \+w the|strong="G1722"\+w* \+w rest|strong="G3062"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w given|strong="G1325"\+w* \+w in|strong="G1722"\+w* \+w parables|strong="G3850"\+w*, \+w that|strong="G2443"\+w* ‘seeing \+w they|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w not|strong="G3361"\+w* \+w see|strong="G1097"\+w*, \+w and|strong="G2532"\+w* hearing \+w they|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w not|strong="G3361"\+w* \+w understand|strong="G4920"\+w*.’\wj*\x + \xo 8:10 \xt Isaiah 6:9\x* +\p +\v 11 \wj “\+w Now|strong="G1161"\+w* \+w the|strong="G1161"\+w* \+w parable|strong="G3850"\+w* \+w is|strong="G1510"\+w* \+w this|strong="G3778"\+w*: \+w The|strong="G1161"\+w* \+w seed|strong="G4703"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G1161"\+w* \+w word|strong="G3056"\+w* \+w of|strong="G3056"\+w* \+w God|strong="G2316"\+w*. \wj* +\v 12 \wj \+w Those|strong="G3588"\+w* \+w along|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w road|strong="G3598"\+w* \+w are|strong="G1510"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* hear; \+w then|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w devil|strong="G1228"\+w* \+w comes|strong="G2064"\+w* \+w and|strong="G2532"\+w* takes away \+w the|strong="G2532"\+w* \+w word|strong="G3056"\+w* \+w from|strong="G3844"\+w* \+w their|strong="G2532"\+w* \+w heart|strong="G2588"\+w*, \+w that|strong="G2443"\+w* \+w they|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w not|strong="G3361"\+w* \+w believe|strong="G4100"\+w* \+w and|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w saved|strong="G4982"\+w*. \wj* +\v 13 \wj \+w Those|strong="G3588"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G1722"\+w* \+w rock|strong="G4073"\+w* \+w are|strong="G3588"\+w* \+w they|strong="G2532"\+w* \+w who|strong="G3739"\+w*, \+w when|strong="G3752"\+w* \+w they|strong="G2532"\+w* hear, \+w receive|strong="G1209"\+w* \+w the|strong="G1722"\+w* \+w word|strong="G3056"\+w* \+w with|strong="G3326"\+w* \+w joy|strong="G5479"\+w*; \+w but|strong="G1161"\+w* \+w these|strong="G3778"\+w* \+w have|strong="G2192"\+w* \+w no|strong="G3756"\+w* \+w root|strong="G4491"\+w*. \+w They|strong="G2532"\+w* \+w believe|strong="G4100"\+w* \+w for|strong="G1909"\+w* \+w a|strong="G2192"\+w* \+w while|strong="G1722"\+w*, \+w then|strong="G2532"\+w* fall \+w away|strong="G3326"\+w* \+w in|strong="G1722"\+w* \+w time|strong="G2540"\+w* \+w of|strong="G3056"\+w* \+w temptation|strong="G3986"\+w*. \wj* +\v 14 \wj \+w What|strong="G3588"\+w* \+w fell|strong="G4098"\+w* \+w among|strong="G1519"\+w* \+w the|strong="G2532"\+w* thorns, \+w these|strong="G3778"\+w* \+w are|strong="G1510"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w have|strong="G2532"\+w* heard, \+w and|strong="G2532"\+w* \+w as|strong="G1519"\+w* \+w they|strong="G2532"\+w* \+w go|strong="G4198"\+w* \+w on|strong="G1519"\+w* \+w their|strong="G2532"\+w* \+w way|strong="G4198"\+w* \+w they|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w choked|strong="G4846"\+w* \+w with|strong="G2532"\+w* \+w cares|strong="G3308"\+w*, \+w riches|strong="G4149"\+w*, \+w and|strong="G2532"\+w* \+w pleasures|strong="G2237"\+w* \+w of|strong="G5259"\+w* life; \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w bring|strong="G5052"\+w* \+w no|strong="G3756"\+w* \+w fruit|strong="G5052"\+w* \+w to|strong="G1519"\+w* \+w maturity|strong="G5052"\+w*. \wj* +\v 15 \wj \+w Those|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w good|strong="G2570"\+w* \+w ground|strong="G1093"\+w*, \+w these|strong="G3778"\+w* \+w are|strong="G1510"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w with|strong="G1722"\+w* \+w an|strong="G2532"\+w* \+w honest|strong="G2570"\+w* \+w and|strong="G2532"\+w* \+w good|strong="G2570"\+w* \+w heart|strong="G2588"\+w*, \+w having|strong="G2532"\+w* heard \+w the|strong="G1722"\+w* \+w word|strong="G3056"\+w*, \+w hold|strong="G2722"\+w* \+w it|strong="G2532"\+w* tightly, \+w and|strong="G2532"\+w* produce \+w fruit|strong="G2592"\+w* \+w with|strong="G1722"\+w* \+w perseverance|strong="G5281"\+w*.\wj* +\p +\v 16 \wj “\+w No|strong="G3762"\+w* \+w one|strong="G3762"\+w*, \+w when|strong="G1161"\+w* \+w he|strong="G1161"\+w* \+w has|strong="G3762"\+w* lit \+w a|strong="G1909"\+w* \+w lamp|strong="G3088"\+w*, \+w covers|strong="G2572"\+w* \+w it|strong="G1161"\+w* \+w with|strong="G1909"\+w* \+w a|strong="G1909"\+w* \+w container|strong="G4632"\+w* \+w or|strong="G2228"\+w* \+w puts|strong="G5087"\+w* \+w it|strong="G1161"\+w* \+w under|strong="G5270"\+w* \+w a|strong="G1909"\+w* \+w bed|strong="G2825"\+w*; \+w but|strong="G1161"\+w* \+w puts|strong="G5087"\+w* \+w it|strong="G1161"\+w* \+w on|strong="G1909"\+w* \+w a|strong="G1909"\+w* stand, \+w that|strong="G2443"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w enter|strong="G1531"\+w* \+w in|strong="G1909"\+w* \+w may|strong="G2443"\+w* see \+w the|strong="G1161"\+w* \+w light|strong="G5457"\+w*. \wj* +\v 17 \wj \+w For|strong="G1063"\+w* \+w nothing|strong="G3756"\+w* \+w is|strong="G1510"\+w* \+w hidden|strong="G2927"\+w* \+w that|strong="G3739"\+w* \+w will|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G1096"\+w* \+w revealed|strong="G5318"\+w*, \+w nor|strong="G3761"\+w* anything \+w secret|strong="G2927"\+w* \+w that|strong="G3739"\+w* \+w will|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G1096"\+w* \+w known|strong="G1097"\+w* \+w and|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w to|strong="G1519"\+w* \+w light|strong="G5318"\+w*. \wj* +\v 18 \wj \+w Be|strong="G2532"\+w* careful \+w therefore|strong="G3767"\+w* \+w how|strong="G4459"\+w* \+w you|strong="G3739"\+w* hear. \+w For|strong="G1063"\+w* \+w whoever|strong="G3739"\+w* \+w has|strong="G2192"\+w*, \+w to|strong="G2532"\+w* \+w him|strong="G1325"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w given|strong="G1325"\+w*; \+w and|strong="G2532"\+w* \+w whoever|strong="G3739"\+w* doesn’t \+w have|strong="G2192"\+w*, \+w from|strong="G2532"\+w* \+w him|strong="G1325"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* taken away \+w even|strong="G2532"\+w* \+w that|strong="G3739"\+w* \+w which|strong="G3739"\+w* \+w he|strong="G2532"\+w* \+w thinks|strong="G1380"\+w* \+w he|strong="G2532"\+w* \+w has|strong="G2192"\+w*.”\wj* +\p +\v 19 \w His|strong="G1223"\w* \w mother|strong="G3384"\w* \w and|strong="G2532"\w* brothers \w came|strong="G3854"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w could|strong="G1410"\w* \w not|strong="G3756"\w* \w come|strong="G3854"\w* \w near|strong="G4314"\w* \w him|strong="G3588"\w* \w for|strong="G1223"\w* \w the|strong="G2532"\w* \w crowd|strong="G3793"\w*. +\v 20 \w Some|strong="G3588"\w* \w people|strong="G3588"\w* told \w him|strong="G3588"\w*, “\w Your|strong="G2532"\w* \w mother|strong="G3384"\w* \w and|strong="G2532"\w* \w your|strong="G2532"\w* brothers \w stand|strong="G2476"\w* \w outside|strong="G1854"\w*, \w desiring|strong="G2309"\w* \w to|strong="G2532"\w* \w see|strong="G3708"\w* \w you|strong="G4771"\w*.” +\p +\v 21 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w My|strong="G1473"\+w* \+w mother|strong="G3384"\+w* \+w and|strong="G2532"\+w* \+w my|strong="G1473"\+w* brothers \+w are|strong="G1510"\+w* \+w these|strong="G3778"\+w* \+w who|strong="G3588"\+w* hear \+w the|strong="G2532"\+w* \+w word|strong="G3056"\+w* \+w of|strong="G3056"\+w* \+w God|strong="G2316"\+w* \+w and|strong="G2532"\+w* \+w do|strong="G4160"\+w* \+w it|strong="G2532"\+w*.”\wj* +\p +\v 22 \w Now|strong="G1161"\w* \w on|strong="G1722"\w* \w one|strong="G1520"\w* \w of|strong="G2250"\w* \w those|strong="G3588"\w* \w days|strong="G2250"\w*, \w he|strong="G2532"\w* \w entered|strong="G1684"\w* \w into|strong="G1519"\w* \w a|strong="G1096"\w* \w boat|strong="G4143"\w*, \w himself|strong="G1438"\w* \w and|strong="G2532"\w* \w his|strong="G1438"\w* \w disciples|strong="G3101"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Let|strong="G1096"\+w*’s \+w go|strong="G1330"\+w* \+w over|strong="G4008"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G1722"\+w* \+w other|strong="G4008"\+w* \+w side|strong="G4008"\+w* \+w of|strong="G2250"\+w* \+w the|strong="G1722"\+w* \+w lake|strong="G3041"\+w*.”\wj* \w So|strong="G2532"\w* \w they|strong="G2532"\w* launched \w out|strong="G2532"\w*. +\v 23 \w But|strong="G1161"\w* \w as|strong="G1519"\w* \w they|strong="G2532"\w* \w sailed|strong="G4126"\w*, \w he|strong="G2532"\w* \w fell|strong="G2597"\w* asleep. \w A|strong="G2532"\w* wind \w storm|strong="G2978"\w* \w came|strong="G2597"\w* \w down|strong="G2597"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w lake|strong="G3041"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* taking \w on|strong="G1519"\w* dangerous amounts \w of|strong="G2532"\w* water. +\v 24 \w They|strong="G2532"\w* \w came|strong="G4334"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w awoke|strong="G1326"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w Master|strong="G1988"\w*, \w Master|strong="G1988"\w*, \w we|strong="G2532"\w* \w are|strong="G3588"\w* dying!” \w He|strong="G2532"\w* \w awoke|strong="G1326"\w* \w and|strong="G2532"\w* \w rebuked|strong="G2008"\w* \w the|strong="G2532"\w* wind \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w raging|strong="G2830"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w water|strong="G5204"\w*; \w then|strong="G2532"\w* \w they|strong="G2532"\w* \w ceased|strong="G3973"\w*, \w and|strong="G2532"\w* \w it|strong="G2532"\w* \w was|strong="G1096"\w* \w calm|strong="G1055"\w*.\x + \xo 8:24 \xt See Psalms 107:29\x* +\v 25 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \wj “\+w Where|strong="G4226"\+w* \+w is|strong="G1510"\+w* \+w your|strong="G2532"\+w* \+w faith|strong="G4102"\+w*?”\wj* \w Being|strong="G1510"\w* \w afraid|strong="G5399"\w*, \w they|strong="G2532"\w* \w marveled|strong="G2296"\w*, \w saying|strong="G3004"\w* \w to|strong="G4314"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w*, “\w Who|strong="G5101"\w* \w is|strong="G1510"\w* \w this|strong="G3778"\w* \w then|strong="G2532"\w*, \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w commands|strong="G2004"\w* \w even|strong="G2532"\w* \w the|strong="G2532"\w* winds \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w water|strong="G5204"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w obey|strong="G5219"\w* \w him|strong="G3588"\w*?” +\p +\v 26 \w Then|strong="G2532"\w* \w they|strong="G2532"\w* \w arrived|strong="G2668"\w* \w at|strong="G1519"\w* \w the|strong="G2532"\w* \w country|strong="G5561"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* Gadarenes, \w which|strong="G3588"\w* \w is|strong="G1510"\w* opposite \w Galilee|strong="G1056"\w*. +\v 27 \w When|strong="G1161"\w* \w Jesus|strong="G1831"\w* stepped \w ashore|strong="G1831"\w*, \w a|strong="G2192"\w* \w certain|strong="G5100"\w* \w man|strong="G5100"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w city|strong="G4172"\w* \w who|strong="G3588"\w* \w had|strong="G2192"\w* \w demons|strong="G1140"\w* \w for|strong="G1909"\w* \w a|strong="G2192"\w* \w long|strong="G2425"\w* \w time|strong="G5550"\w* \w met|strong="G5221"\w* \w him|strong="G3588"\w*. \w He|strong="G2532"\w* \w wore|strong="G2192"\w* \w no|strong="G3756"\w* \w clothes|strong="G2440"\w*, \w and|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w live|strong="G2532"\w* \w in|strong="G1722"\w* \w a|strong="G2192"\w* \w house|strong="G3614"\w*, \w but|strong="G1161"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w tombs|strong="G3418"\w*. +\v 28 \w When|strong="G1161"\w* \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w Jesus|strong="G2424"\w*, \w he|strong="G2532"\w* \w cried|strong="G2532"\w* \w out|strong="G2532"\w* \w and|strong="G2532"\w* \w fell|strong="G4363"\w* \w down|strong="G4363"\w* \w before|strong="G4363"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w with|strong="G2532"\w* \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w* \w said|strong="G3004"\w*, “\w What|strong="G5101"\w* \w do|strong="G5101"\w* \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w to|strong="G2532"\w* \w do|strong="G5101"\w* \w with|strong="G2532"\w* \w you|strong="G4771"\w*, \w Jesus|strong="G2424"\w*, \w you|strong="G4771"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w Most|strong="G5310"\w* \w High|strong="G5310"\w* \w God|strong="G2316"\w*? \w I|strong="G1473"\w* \w beg|strong="G1189"\w* \w you|strong="G4771"\w*, don’\w t|strong="G3588"\w* torment \w me|strong="G1473"\w*!” +\v 29 \w For|strong="G1063"\w* \w Jesus|strong="G1831"\w* \w was|strong="G3588"\w* \w commanding|strong="G3853"\w* \w the|strong="G2532"\w* unclean \w spirit|strong="G4151"\w* \w to|strong="G1519"\w* \w come|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G5259"\w* \w the|strong="G2532"\w* \w man|strong="G1519"\w*. \w For|strong="G1063"\w* \w the|strong="G2532"\w* unclean \w spirit|strong="G4151"\w* \w had|strong="G2532"\w* \w often|strong="G4183"\w* \w seized|strong="G4884"\w* \w the|strong="G2532"\w* \w man|strong="G1519"\w*. \w He|strong="G2532"\w* \w was|strong="G3588"\w* \w kept|strong="G5442"\w* \w under|strong="G5259"\w* \w guard|strong="G5442"\w* \w and|strong="G2532"\w* \w bound|strong="G1195"\w* \w with|strong="G2532"\w* \w chains|strong="G1199"\w* \w and|strong="G2532"\w* \w fetters|strong="G3976"\w*. Breaking \w the|strong="G2532"\w* \w bonds|strong="G1199"\w* apart, \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w driven|strong="G1643"\w* \w by|strong="G5259"\w* \w the|strong="G2532"\w* \w demon|strong="G1140"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w desert|strong="G2048"\w*. +\p +\v 30 \w Jesus|strong="G2424"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w*, \wj “\+w What|strong="G5101"\+w* \+w is|strong="G1510"\+w* \+w your|strong="G3588"\+w* \+w name|strong="G3686"\+w*?”\wj* +\p \w He|strong="G1161"\w* \w said|strong="G3004"\w*, “\w Legion|strong="G3003"\w*,” \w for|strong="G3754"\w* \w many|strong="G4183"\w* \w demons|strong="G1140"\w* \w had|strong="G2424"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w him|strong="G3588"\w*. +\v 31 \w They|strong="G2532"\w* \w begged|strong="G3870"\w* \w him|strong="G3588"\w* \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w would|strong="G2532"\w* \w not|strong="G3361"\w* \w command|strong="G2004"\w* \w them|strong="G3588"\w* \w to|strong="G1519"\w* \w go|strong="G1519"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* abyss. +\p +\v 32 \w Now|strong="G1161"\w* \w there|strong="G1563"\w* \w was|strong="G1510"\w* \w there|strong="G1563"\w* \w a|strong="G2532"\w* herd \w of|strong="G2532"\w* \w many|strong="G2425"\w* \w pigs|strong="G5519"\w* \w feeding|strong="G1006"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w mountain|strong="G3735"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w begged|strong="G3870"\w* \w him|strong="G3588"\w* \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w would|strong="G2532"\w* \w allow|strong="G2010"\w* \w them|strong="G3588"\w* \w to|strong="G1519"\w* \w enter|strong="G1525"\w* \w into|strong="G1519"\w* \w those|strong="G3588"\w*. \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w allowed|strong="G2010"\w* \w them|strong="G3588"\w*. +\v 33 \w The|strong="G2532"\w* \w demons|strong="G1140"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w man|strong="G1519"\w* \w and|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w pigs|strong="G5519"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* herd \w rushed|strong="G3729"\w* \w down|strong="G2596"\w* \w the|strong="G2532"\w* \w steep|strong="G2911"\w* \w bank|strong="G2911"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w lake|strong="G3041"\w* \w and|strong="G2532"\w* \w were|strong="G3588"\w* drowned. +\p +\v 34 \w When|strong="G1161"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w fed|strong="G1006"\w* \w them|strong="G3588"\w* \w saw|strong="G3708"\w* \w what|strong="G3588"\w* \w had|strong="G2532"\w* \w happened|strong="G1096"\w*, \w they|strong="G2532"\w* \w fled|strong="G5343"\w* \w and|strong="G2532"\w* told \w it|strong="G2532"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w and|strong="G2532"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* country. +\p +\v 35 \w People|strong="G3588"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w to|strong="G4314"\w* \w see|strong="G3708"\w* \w what|strong="G3739"\w* \w had|strong="G2424"\w* \w happened|strong="G1096"\w*. \w They|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w Jesus|strong="G2424"\w* \w and|strong="G2532"\w* \w found|strong="G2147"\w* \w the|strong="G2532"\w* \w man|strong="G3739"\w* \w from|strong="G3844"\w* \w whom|strong="G3739"\w* \w the|strong="G2532"\w* \w demons|strong="G1140"\w* \w had|strong="G2424"\w* \w gone|strong="G1831"\w* \w out|strong="G1831"\w*, \w sitting|strong="G2521"\w* \w at|strong="G4314"\w* \w Jesus|strong="G2424"\w*’ \w feet|strong="G4228"\w*, \w clothed|strong="G2439"\w* \w and|strong="G2532"\w* \w in|strong="G2532"\w* \w his|strong="G3708"\w* \w right|strong="G4993"\w* \w mind|strong="G4993"\w*; \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w afraid|strong="G5399"\w*. +\v 36 \w Those|strong="G3588"\w* \w who|strong="G3588"\w* \w saw|strong="G3708"\w* \w it|strong="G1161"\w* told \w them|strong="G3588"\w* \w how|strong="G4459"\w* \w he|strong="G1161"\w* \w who|strong="G3588"\w* \w had|strong="G3588"\w* been possessed \w by|strong="G3588"\w* demons \w was|strong="G3588"\w* \w healed|strong="G4982"\w*. +\v 37 \w All|strong="G2532"\w* \w the|strong="G2532"\w* \w people|strong="G4128"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w surrounding|strong="G4066"\w* \w country|strong="G4066"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* Gadarenes \w asked|strong="G2065"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* depart \w from|strong="G2532"\w* \w them|strong="G3588"\w*, \w for|strong="G3754"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w very|strong="G2532"\w* \w much|strong="G3173"\w* afraid. \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w entered|strong="G1684"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w boat|strong="G4143"\w* \w and|strong="G2532"\w* \w returned|strong="G5290"\w*. +\v 38 \w But|strong="G1161"\w* \w the|strong="G1161"\w* \w man|strong="G3739"\w* \w from|strong="G1831"\w* \w whom|strong="G3739"\w* \w the|strong="G1161"\w* \w demons|strong="G1140"\w* \w had|strong="G1510"\w* \w gone|strong="G1831"\w* \w out|strong="G1831"\w* \w begged|strong="G1189"\w* \w him|strong="G3588"\w* \w that|strong="G3739"\w* \w he|strong="G1161"\w* might \w go|strong="G1831"\w* \w with|strong="G4862"\w* \w him|strong="G3588"\w*, \w but|strong="G1161"\w* \w Jesus|strong="G3004"\w* sent \w him|strong="G3588"\w* \w away|strong="G1831"\w*, \w saying|strong="G3004"\w*, +\v 39 \wj “\+w Return|strong="G5290"\+w* \+w to|strong="G1519"\+w* \+w your|strong="G3650"\+w* \+w house|strong="G3624"\+w*, \+w and|strong="G2532"\+w* \+w declare|strong="G1334"\+w* \+w what|strong="G3588"\+w* \+w great|strong="G3745"\+w* \+w things|strong="G3588"\+w* \+w God|strong="G2316"\+w* \+w has|strong="G2316"\+w* \+w done|strong="G4160"\+w* \+w for|strong="G1519"\+w* \+w you|strong="G4771"\+w*.”\wj* \w He|strong="G2532"\w* \w went|strong="G2424"\w* \w his|strong="G1519"\w* \w way|strong="G2596"\w*, \w proclaiming|strong="G2784"\w* \w throughout|strong="G2596"\w* \w the|strong="G2532"\w* \w whole|strong="G3650"\w* \w city|strong="G4172"\w* \w what|strong="G3588"\w* \w great|strong="G3745"\w* \w things|strong="G3588"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* \w done|strong="G4160"\w* \w for|strong="G1519"\w* \w him|strong="G3588"\w*. +\p +\v 40 \w When|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w returned|strong="G5290"\w*, \w the|strong="G1722"\w* \w multitude|strong="G3793"\w* welcomed \w him|strong="G3588"\w*, \w for|strong="G1063"\w* \w they|strong="G1161"\w* \w were|strong="G1510"\w* \w all|strong="G3956"\w* \w waiting|strong="G4328"\w* \w for|strong="G1063"\w* \w him|strong="G3588"\w*. +\v 41 \w Behold|strong="G2400"\w*, \w a|strong="G2532"\w* \w man|strong="G3739"\w* \w named|strong="G3686"\w* \w Jairus|strong="G2383"\w* \w came|strong="G2064"\w*. \w He|strong="G2532"\w* \w was|strong="G3588"\w* \w a|strong="G2532"\w* ruler \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w synagogue|strong="G4864"\w*. \w He|strong="G2532"\w* \w fell|strong="G4098"\w* \w down|strong="G4098"\w* \w at|strong="G1519"\w* \w Jesus|strong="G2424"\w*’ \w feet|strong="G4228"\w* \w and|strong="G2532"\w* \w begged|strong="G3870"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w come|strong="G2064"\w* \w into|strong="G1519"\w* \w his|strong="G1519"\w* \w house|strong="G3624"\w*, +\v 42 \w for|strong="G3754"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w an|strong="G2532"\w* \w only|strong="G3439"\w* born\f + \fr 8:42 \ft The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”.\f* \w daughter|strong="G2364"\w*, \w about|strong="G5613"\w* \w twelve|strong="G1427"\w* \w years|strong="G2094"\w* \w of|strong="G2532"\w* \w age|strong="G2094"\w*, \w and|strong="G2532"\w* \w she|strong="G2532"\w* \w was|strong="G1510"\w* dying. \w But|strong="G1161"\w* \w as|strong="G5613"\w* \w he|strong="G2532"\w* \w went|strong="G2532"\w*, \w the|strong="G1722"\w* \w multitudes|strong="G3793"\w* \w pressed|strong="G3793"\w* \w against|strong="G1722"\w* \w him|strong="G3588"\w*. +\v 43 \w A|strong="G2532"\w* \w woman|strong="G1135"\w* \w who|strong="G3588"\w* \w had|strong="G2532"\w* \w a|strong="G2532"\w* flow \w of|strong="G2532"\w* blood \w for|strong="G1722"\w* \w twelve|strong="G1427"\w* \w years|strong="G2094"\w*, \w who|strong="G3588"\w* \w had|strong="G2532"\w* \w spent|strong="G4321"\w* \w all|strong="G3650"\w* \w her|strong="G3588"\w* living \w on|strong="G1722"\w* \w physicians|strong="G2395"\w* \w and|strong="G2532"\w* \w could|strong="G2480"\w* \w not|strong="G3756"\w* \w be|strong="G1510"\w* \w healed|strong="G2323"\w* \w by|strong="G1722"\w* \w any|strong="G3762"\w*, +\v 44 \w came|strong="G4334"\w* \w behind|strong="G3693"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* touched \w the|strong="G2532"\w* \w fringe|strong="G2899"\w*\f + \fr 8:44 \ft or, tassel\f* \w of|strong="G2532"\w* \w his|strong="G2532"\w* \w cloak|strong="G2440"\w*. \w Immediately|strong="G3916"\w* \w the|strong="G2532"\w* flow \w of|strong="G2532"\w* \w her|strong="G3588"\w* blood \w stopped|strong="G2476"\w*. +\p +\v 45 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w*, \wj “\+w Who|strong="G5101"\+w* touched \+w me|strong="G1473"\+w*?”\wj* +\p \w When|strong="G1161"\w* \w all|strong="G3956"\w* denied \w it|strong="G2532"\w*, \w Peter|strong="G4074"\w* \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w with|strong="G4862"\w* \w him|strong="G3588"\w* \w said|strong="G3004"\w*, “\w Master|strong="G1988"\w*, \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w* \w press|strong="G3793"\w* \w and|strong="G2532"\w* jostle \w you|strong="G4771"\w*, \w and|strong="G2532"\w* \w you|strong="G4771"\w* \w say|strong="G3004"\w*, \wj ‘\+w Who|strong="G5101"\+w* touched \+w me|strong="G1473"\+w*?’\wj*” +\p +\v 46 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w*, \wj “\+w Someone|strong="G5100"\+w* \+w did|strong="G1097"\+w* touch \+w me|strong="G1473"\+w*, \+w for|strong="G1063"\+w* \+w I|strong="G1473"\+w* \+w perceived|strong="G1097"\+w* \+w that|strong="G3588"\+w* \+w power|strong="G1411"\+w* \+w has|strong="G5100"\+w* \+w gone|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w of|strong="G1411"\+w* \+w me|strong="G1473"\+w*.”\wj* +\v 47 \w When|strong="G1161"\w* \w the|strong="G2532"\w* \w woman|strong="G1135"\w* \w saw|strong="G3708"\w* \w that|strong="G3754"\w* \w she|strong="G2532"\w* \w was|strong="G3588"\w* \w not|strong="G3756"\w* hidden, \w she|strong="G2532"\w* \w came|strong="G2064"\w* \w trembling|strong="G5141"\w*; \w and|strong="G2532"\w* falling \w down|strong="G4363"\w* \w before|strong="G1799"\w* \w him|strong="G3588"\w* \w declared|strong="G3754"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w presence|strong="G1799"\w* \w of|strong="G1223"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w* \w the|strong="G2532"\w* \w reason|strong="G1223"\w* \w why|strong="G1223"\w* \w she|strong="G2532"\w* \w had|strong="G2532"\w* touched \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w how|strong="G5613"\w* \w she|strong="G2532"\w* \w was|strong="G3588"\w* \w healed|strong="G2390"\w* \w immediately|strong="G3916"\w*. +\v 48 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w her|strong="G1519"\w*, \wj “\+w Daughter|strong="G2364"\+w*, cheer \+w up|strong="G1519"\+w*. \+w Your|strong="G4982"\+w* \+w faith|strong="G4102"\+w* \+w has|strong="G4102"\+w* \+w made|strong="G4982"\+w* \+w you|strong="G4771"\+w* \+w well|strong="G4982"\+w*. \+w Go|strong="G4198"\+w* \+w in|strong="G1519"\+w* \+w peace|strong="G1515"\+w*.”\wj* +\p +\v 49 \w While|strong="G2980"\w* \w he|strong="G3754"\w* \w still|strong="G2089"\w* \w spoke|strong="G2980"\w*, \w one|strong="G5100"\w* \w from|strong="G3844"\w* \w the|strong="G3588"\w* ruler \w of|strong="G3844"\w* \w the|strong="G3588"\w* synagogue’s house \w came|strong="G2064"\w*, \w saying|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Your|strong="G3588"\w* \w daughter|strong="G2364"\w* \w is|strong="G3588"\w* \w dead|strong="G2348"\w*. Don’\w t|strong="G3588"\w* \w trouble|strong="G4660"\w* \w the|strong="G3588"\w* \w Teacher|strong="G1320"\w*.” +\p +\v 50 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* hearing \w it|strong="G2532"\w*, answered \w him|strong="G3588"\w*, \wj “Don’\+w t|strong="G3588"\+w* \+w be|strong="G2532"\+w* \+w afraid|strong="G5399"\+w*. \+w Only|strong="G3440"\+w* \+w believe|strong="G4100"\+w*, \+w and|strong="G2532"\+w* \+w she|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w healed|strong="G4982"\+w*.”\wj* +\p +\v 51 \w When|strong="G1161"\w* \w he|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w house|strong="G3614"\w*, \w he|strong="G2532"\w* didn’\w t|strong="G3588"\w* allow \w anyone|strong="G5100"\w* \w to|strong="G1519"\w* \w enter|strong="G1525"\w* \w in|strong="G1519"\w*, \w except|strong="G1487"\w* \w Peter|strong="G4074"\w*, \w John|strong="G2491"\w*, \w James|strong="G2385"\w*, \w the|strong="G2532"\w* \w father|strong="G3962"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w child|strong="G3816"\w*, \w and|strong="G2532"\w* \w her|strong="G1519"\w* \w mother|strong="G3384"\w*. +\v 52 \w All|strong="G3956"\w* \w were|strong="G3588"\w* \w weeping|strong="G2799"\w* \w and|strong="G2532"\w* \w mourning|strong="G2875"\w* \w her|strong="G1438"\w*, \w but|strong="G1161"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “Don’\+w t|strong="G3588"\+w* \+w weep|strong="G2799"\+w*. \+w She|strong="G2532"\+w* isn’\+w t|strong="G3588"\+w* dead, \+w but|strong="G1161"\+w* \+w sleeping|strong="G2518"\+w*.”\wj* +\p +\v 53 \w They|strong="G2532"\w* \w were|strong="G2532"\w* ridiculing \w him|strong="G2532"\w*, \w knowing|strong="G1492"\w* \w that|strong="G3754"\w* \w she|strong="G2532"\w* \w was|strong="G2532"\w* dead. +\v 54 \w But|strong="G1161"\w* \w he|strong="G1161"\w* put \w them|strong="G3588"\w* \w all|strong="G1161"\w* outside, \w and|strong="G1161"\w* \w taking|strong="G2902"\w* \w her|strong="G3588"\w* \w by|strong="G3004"\w* \w the|strong="G1161"\w* \w hand|strong="G5495"\w*, \w he|strong="G1161"\w* \w called|strong="G3004"\w*, \w saying|strong="G3004"\w*, \wj “\+w Child|strong="G3816"\+w*, \+w arise|strong="G1453"\+w*!”\wj* +\v 55 \w Her|strong="G1325"\w* \w spirit|strong="G4151"\w* \w returned|strong="G1994"\w*, \w and|strong="G2532"\w* \w she|strong="G2532"\w* \w rose|strong="G2532"\w* \w up|strong="G1325"\w* \w immediately|strong="G3916"\w*. \w He|strong="G2532"\w* \w commanded|strong="G1299"\w* \w that|strong="G3588"\w* something \w be|strong="G2532"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* \w her|strong="G1325"\w* \w to|strong="G2532"\w* \w eat|strong="G2068"\w*. +\v 56 \w Her|strong="G3588"\w* \w parents|strong="G1118"\w* \w were|strong="G3588"\w* \w amazed|strong="G1839"\w*, \w but|strong="G1161"\w* \w he|strong="G2532"\w* \w commanded|strong="G3853"\w* \w them|strong="G3588"\w* \w to|strong="G2532"\w* \w tell|strong="G3004"\w* \w no|strong="G3367"\w* \w one|strong="G3367"\w* \w what|strong="G3588"\w* \w had|strong="G2532"\w* \w been|strong="G1096"\w* \w done|strong="G1096"\w*. +\c 9 +\p +\v 1 \w He|strong="G2532"\w* \w called|strong="G4779"\w* \w the|strong="G2532"\w* \w twelve|strong="G1427"\w*\f + \fr 9:1 \ft TR reads “his twelve disciples” instead of “the twelve”\f* \w together|strong="G4779"\w* \w and|strong="G2532"\w* \w gave|strong="G1325"\w* \w them|strong="G3588"\w* \w power|strong="G1411"\w* \w and|strong="G2532"\w* \w authority|strong="G1849"\w* \w over|strong="G1909"\w* \w all|strong="G3956"\w* \w demons|strong="G1140"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w cure|strong="G2323"\w* \w diseases|strong="G3554"\w*. +\v 2 \w He|strong="G2532"\w* \w sent|strong="G2316"\w* \w them|strong="G3588"\w* \w out|strong="G2532"\w* \w to|strong="G2532"\w* \w preach|strong="G2784"\w* \w God|strong="G2316"\w*’s Kingdom \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w heal|strong="G2390"\w* \w the|strong="G2532"\w* sick. +\v 3 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Take|strong="G2532"\+w* \+w nothing|strong="G3367"\+w* \+w for|strong="G1519"\+w* \+w your|strong="G2192"\+w* \+w journey|strong="G3598"\+w*—\+w no|strong="G3367"\+w* staffs, \+w nor|strong="G3383"\+w* wallet, \+w nor|strong="G3383"\+w* bread, \+w nor|strong="G3383"\+w* money. Don’\+w t|strong="G3588"\+w* \+w have|strong="G2192"\+w* \+w two|strong="G1417"\+w* \+w tunics|strong="G5509"\+w* \+w each|strong="G1438"\+w*. \wj* +\v 4 \wj \+w Into|strong="G1519"\+w* \+w whatever|strong="G3739"\+w* \+w house|strong="G3614"\+w* \+w you|strong="G3739"\+w* \+w enter|strong="G1525"\+w*, \+w stay|strong="G3306"\+w* \+w there|strong="G1563"\+w*, \+w and|strong="G2532"\+w* \+w depart|strong="G1831"\+w* \+w from|strong="G2532"\+w* \+w there|strong="G1563"\+w*. \wj* +\v 5 \wj \+w As|strong="G3745"\+w* \+w many|strong="G3745"\+w* \+w as|strong="G3745"\+w* don’\+w t|strong="G3588"\+w* \+w receive|strong="G1209"\+w* \+w you|strong="G5210"\+w*, \+w when|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w depart|strong="G1831"\+w* \+w from|strong="G2532"\+w* \+w that|strong="G3588"\+w* \+w city|strong="G4172"\+w*, shake \+w off|strong="G1831"\+w* \+w even|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w dust|strong="G2868"\+w* \+w from|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w feet|strong="G4228"\+w* \+w for|strong="G1519"\+w* \+w a|strong="G2532"\+w* \+w testimony|strong="G3142"\+w* \+w against|strong="G1909"\+w* \+w them|strong="G3588"\+w*.”\wj* +\p +\v 6 \w They|strong="G2532"\w* \w departed|strong="G1831"\w* \w and|strong="G2532"\w* \w went|strong="G1831"\w* \w throughout|strong="G2596"\w* \w the|strong="G2532"\w* \w villages|strong="G2968"\w*, \w preaching|strong="G2097"\w* \w the|strong="G2532"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w* \w and|strong="G2532"\w* \w healing|strong="G2323"\w* \w everywhere|strong="G3837"\w*. +\p +\v 7 \w Now|strong="G1161"\w* \w Herod|strong="G2264"\w* \w the|strong="G2532"\w* \w tetrarch|strong="G5076"\w* heard \w of|strong="G1537"\w* \w all|strong="G3956"\w* \w that|strong="G3754"\w* \w was|strong="G1096"\w* \w done|strong="G1096"\w* \w by|strong="G1223"\w* \w him|strong="G3588"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w was|strong="G1096"\w* \w very|strong="G2532"\w* \w perplexed|strong="G1280"\w*, \w because|strong="G3754"\w* \w it|strong="G2532"\w* \w was|strong="G1096"\w* \w said|strong="G3004"\w* \w by|strong="G1223"\w* \w some|strong="G5100"\w* \w that|strong="G3754"\w* \w John|strong="G2491"\w* \w had|strong="G2532"\w* \w risen|strong="G1453"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*, +\v 8 \w and|strong="G1161"\w* \w by|strong="G5259"\w* \w some|strong="G5100"\w* \w that|strong="G3754"\w* \w Elijah|strong="G2243"\w* \w had|strong="G3588"\w* \w appeared|strong="G5316"\w*, \w and|strong="G1161"\w* \w by|strong="G5259"\w* \w others|strong="G3588"\w* \w that|strong="G3754"\w* \w one|strong="G5100"\w* \w of|strong="G5259"\w* \w the|strong="G1161"\w* old \w prophets|strong="G4396"\w* \w had|strong="G3588"\w* risen again. +\v 9 \w Herod|strong="G2264"\w* \w said|strong="G3004"\w*, “\w I|strong="G1473"\w* beheaded \w John|strong="G2491"\w*, \w but|strong="G1161"\w* \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w this|strong="G3778"\w* \w about|strong="G4012"\w* \w whom|strong="G3739"\w* \w I|strong="G1473"\w* \w hear|strong="G5101"\w* \w such|strong="G5108"\w* \w things|strong="G3778"\w*?” \w He|strong="G2532"\w* \w sought|strong="G2212"\w* \w to|strong="G2532"\w* \w see|strong="G3708"\w* \w him|strong="G3739"\w*. +\p +\v 10 \w The|strong="G2532"\w* apostles, \w when|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w returned|strong="G5290"\w*, \w told|strong="G1334"\w* \w him|strong="G3588"\w* \w what|strong="G3588"\w* \w things|strong="G3588"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w done|strong="G4160"\w*. +\p \w He|strong="G2532"\w* \w took|strong="G3880"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w withdrew|strong="G5298"\w* \w apart|strong="G2398"\w* \w to|strong="G1519"\w* \w a|strong="G2532"\w* desert region \w of|strong="G2532"\w*\f + \fr 9:10 \ft NU omits “a desert region of”.\f* \w a|strong="G2532"\w* \w city|strong="G4172"\w* \w called|strong="G2564"\w* Bethsaida. +\v 11 \w But|strong="G1161"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w*, \w perceiving|strong="G1097"\w* \w it|strong="G2532"\w*, followed \w him|strong="G3588"\w*. \w He|strong="G2532"\w* welcomed \w them|strong="G3588"\w*, \w spoke|strong="G2980"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w of|strong="G4012"\w* \w God|strong="G2316"\w*’\w s|strong="G2192"\w* Kingdom, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w cured|strong="G2390"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w needed|strong="G5532"\w* \w healing|strong="G2390"\w*. +\v 12 \w The|strong="G1722"\w* \w day|strong="G2250"\w* \w began|strong="G1161"\w* \w to|strong="G1519"\w* wear \w away|strong="G4198"\w*; \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w twelve|strong="G1427"\w* \w came|strong="G4334"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, “Send \w the|strong="G1722"\w* \w multitude|strong="G3793"\w* \w away|strong="G4198"\w*, \w that|strong="G3754"\w* \w they|strong="G2532"\w* \w may|strong="G2532"\w* \w go|strong="G4198"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w surrounding|strong="G2945"\w* \w villages|strong="G2968"\w* \w and|strong="G2532"\w* farms \w and|strong="G2532"\w* \w lodge|strong="G2647"\w* \w and|strong="G2532"\w* \w get|strong="G2147"\w* food, \w for|strong="G3754"\w* \w we|strong="G3754"\w* \w are|strong="G1510"\w* \w here|strong="G5602"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* \w deserted|strong="G2048"\w* \w place|strong="G5117"\w*.” +\p +\v 13 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w You|strong="G5210"\+w* \+w give|strong="G1325"\+w* \+w them|strong="G3588"\+w* \+w something|strong="G4183"\+w* \+w to|strong="G1519"\+w* \+w eat|strong="G2068"\+w*.”\wj* +\p \w They|strong="G2532"\w* \w said|strong="G3004"\w*, “\w We|strong="G2249"\w* \w have|strong="G2532"\w* \w no|strong="G3756"\w* \w more|strong="G4119"\w* \w than|strong="G2228"\w* \w five|strong="G4002"\w* loaves \w and|strong="G2532"\w* \w two|strong="G1417"\w* \w fish|strong="G2486"\w*, \w unless|strong="G1487"\w* \w we|strong="G2249"\w* \w should|strong="G3588"\w* \w go|strong="G4198"\w* \w and|strong="G2532"\w* buy \w food|strong="G1033"\w* \w for|strong="G1519"\w* \w all|strong="G3956"\w* \w these|strong="G3778"\w* \w people|strong="G2992"\w*.” +\v 14 \w For|strong="G1063"\w* \w they|strong="G1161"\w* \w were|strong="G1510"\w* \w about|strong="G5616"\w* \w five|strong="G4000"\w* \w thousand|strong="G4000"\w* \w men|strong="G3588"\w*. +\p \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w his|strong="G1438"\w* \w disciples|strong="G3101"\w*, \wj “\+w Make|strong="G2625"\+w* \+w them|strong="G3588"\+w* \+w sit|strong="G2625"\+w* \+w down|strong="G2625"\+w* \+w in|strong="G4314"\+w* \+w groups|strong="G2828"\+w* \+w of|strong="G3101"\+w* \+w about|strong="G5616"\+w* \+w fifty|strong="G4004"\+w* \+w each|strong="G1438"\+w*.”\wj* +\v 15 \w They|strong="G2532"\w* \w did|strong="G4160"\w* \w so|strong="G3779"\w*, \w and|strong="G2532"\w* \w made|strong="G4160"\w* \w them|strong="G4160"\w* \w all|strong="G2532"\w* \w sit|strong="G2625"\w* \w down|strong="G2625"\w*. +\v 16 \w He|strong="G2532"\w* \w took|strong="G2983"\w* \w the|strong="G2532"\w* \w five|strong="G4002"\w* loaves \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w two|strong="G1417"\w* \w fish|strong="G2486"\w*, \w and|strong="G2532"\w* \w looking|strong="G2532"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w*, \w he|strong="G2532"\w* \w blessed|strong="G2127"\w* \w them|strong="G3588"\w*, \w broke|strong="G2622"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w gave|strong="G1325"\w* \w them|strong="G3588"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w to|strong="G1519"\w* \w set|strong="G3908"\w* \w before|strong="G3908"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w*. +\v 17 \w They|strong="G2532"\w* \w ate|strong="G2068"\w* \w and|strong="G2532"\w* \w were|strong="G3588"\w* \w all|strong="G3956"\w* \w filled|strong="G5526"\w*. \w They|strong="G2532"\w* gathered \w up|strong="G2532"\w* \w twelve|strong="G1427"\w* \w baskets|strong="G2894"\w* \w of|strong="G2532"\w* \w broken|strong="G2801"\w* \w pieces|strong="G2801"\w* \w that|strong="G3588"\w* \w were|strong="G3588"\w* \w left|strong="G4052"\w* \w over|strong="G4052"\w*. +\p +\v 18 \w As|strong="G1722"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w praying|strong="G4336"\w* \w alone|strong="G3441"\w*, \w the|strong="G1722"\w* \w disciples|strong="G3101"\w* \w were|strong="G1510"\w* \w near|strong="G2596"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w asked|strong="G1905"\w* \w them|strong="G3588"\w*, \wj “\+w Who|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w the|strong="G1722"\+w* \+w multitudes|strong="G3793"\+w* \+w say|strong="G3004"\+w* \+w that|strong="G3588"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w*?”\wj* +\p +\v 19 \w They|strong="G1161"\w* \w answered|strong="G3004"\w*, “‘\w John|strong="G2491"\w* \w the|strong="G1161"\w* Baptizer,’ \w but|strong="G1161"\w* \w others|strong="G3588"\w* \w say|strong="G3004"\w*, ‘\w Elijah|strong="G2243"\w*,’ \w and|strong="G1161"\w* \w others|strong="G3588"\w*, \w that|strong="G3754"\w* \w one|strong="G5100"\w* \w of|strong="G5100"\w* \w the|strong="G1161"\w* old \w prophets|strong="G4396"\w* \w has|strong="G5100"\w* risen again.” +\p +\v 20 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w But|strong="G1161"\+w* \+w who|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w say|strong="G3004"\+w* \+w that|strong="G3588"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w*?”\wj* +\p \w Peter|strong="G4074"\w* \w answered|strong="G3004"\w*, “\w The|strong="G1161"\w* \w Christ|strong="G5547"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*.” +\p +\v 21 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w warned|strong="G2008"\w* \w them|strong="G3588"\w* \w and|strong="G1161"\w* \w commanded|strong="G3853"\w* \w them|strong="G3588"\w* \w to|strong="G3004"\w* \w tell|strong="G3004"\w* \w this|strong="G3778"\w* \w to|strong="G3004"\w* \w no|strong="G3367"\w* \w one|strong="G3367"\w*, +\v 22 \w saying|strong="G3004"\w*, \wj “\+w The|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w* \+w must|strong="G1163"\+w* \+w suffer|strong="G3958"\+w* \+w many|strong="G4183"\+w* \+w things|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w be|strong="G2532"\+w* rejected \+w by|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w elders|strong="G4245"\+w*, \+w chief|strong="G2532"\+w* priests, \+w and|strong="G2532"\+w* \+w scribes|strong="G1122"\+w*, \+w and|strong="G2532"\+w* \+w be|strong="G2532"\+w* killed, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w third|strong="G5154"\+w* \+w day|strong="G2250"\+w* \+w be|strong="G2532"\+w* \+w raised|strong="G1453"\+w* \+w up|strong="G1453"\+w*.”\wj* +\p +\v 23 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w all|strong="G3956"\w*, \wj “\+w If|strong="G1487"\+w* \+w anyone|strong="G5100"\+w* \+w desires|strong="G2309"\+w* \+w to|strong="G4314"\+w* \+w come|strong="G2064"\+w* \+w after|strong="G2596"\+w* \+w me|strong="G1473"\+w*, \+w let|strong="G1161"\+w* \+w him|strong="G3588"\+w* \+w deny|strong="G3588"\+w* \+w himself|strong="G1438"\+w*, \+w take|strong="G1161"\+w* \+w up|strong="G2532"\+w* \+w his|strong="G1438"\+w* \+w cross|strong="G4716"\+w*,\wj*\f + \fr 9:23 \ft TR, NU add “daily”\f* \wj \+w and|strong="G2532"\+w* \+w follow|strong="G3694"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 24 \wj \+w For|strong="G1063"\+w* \+w whoever|strong="G3739"\+w* \+w desires|strong="G2309"\+w* \+w to|strong="G2309"\+w* \+w save|strong="G4982"\+w* \+w his|strong="G1438"\+w* \+w life|strong="G5590"\+w* \+w will|strong="G2309"\+w* lose \+w it|strong="G1161"\+w*, \+w but|strong="G1161"\+w* \+w whoever|strong="G3739"\+w* \+w will|strong="G2309"\+w* lose \+w his|strong="G1438"\+w* \+w life|strong="G5590"\+w* \+w for|strong="G1063"\+w* \+w my|strong="G1473"\+w* \+w sake|strong="G1752"\+w* \+w will|strong="G2309"\+w* \+w save|strong="G4982"\+w* \+w it|strong="G1161"\+w*. \wj* +\v 25 \wj \+w For|strong="G1063"\+w* \+w what|strong="G5101"\+w* \+w does|strong="G5101"\+w* \+w it|strong="G1161"\+w* \+w profit|strong="G5623"\+w* \+w a|strong="G2228"\+w* \+w man|strong="G5101"\+w* \+w if|strong="G1161"\+w* \+w he|strong="G1161"\+w* \+w gains|strong="G2770"\+w* \+w the|strong="G1161"\+w* \+w whole|strong="G3650"\+w* \+w world|strong="G2889"\+w*, \+w and|strong="G1161"\+w* loses \+w or|strong="G2228"\+w* \+w forfeits|strong="G2210"\+w* \+w his|strong="G1438"\+w* \+w own|strong="G1438"\+w* self? \wj* +\v 26 \wj \+w For|strong="G1063"\+w* \+w whoever|strong="G3739"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w ashamed|strong="G1870"\+w* \+w of|strong="G5207"\+w* \+w me|strong="G1473"\+w* \+w and|strong="G2532"\+w* \+w of|strong="G5207"\+w* \+w my|strong="G1699"\+w* \+w words|strong="G3056"\+w*, \+w of|strong="G5207"\+w* \+w him|strong="G3588"\+w* \+w will|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3778"\+w* \+w be|strong="G2532"\+w* \+w ashamed|strong="G1870"\+w* \+w when|strong="G3752"\+w* \+w he|strong="G2532"\+w* \+w comes|strong="G2064"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G1722"\+w* \+w glory|strong="G1391"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w glory|strong="G1391"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w*, \+w and|strong="G2532"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G1722"\+w* holy angels. \wj* +\v 27 \wj \+w But|strong="G1161"\+w* \+w I|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w the|strong="G1161"\+w* truth: \+w There|strong="G1161"\+w* \+w are|strong="G1510"\+w* \+w some|strong="G5100"\+w* \+w of|strong="G2316"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3739"\+w* \+w stand|strong="G2476"\+w* \+w here|strong="G1510"\+w* \+w who|strong="G3739"\+w* \+w will|strong="G2316"\+w* \+w in|strong="G2316"\+w* \+w no|strong="G3756"\+w* \+w way|strong="G3739"\+w* \+w taste|strong="G1089"\+w* \+w of|strong="G2316"\+w* \+w death|strong="G2288"\+w* \+w until|strong="G2193"\+w* \+w they|strong="G1161"\+w* \+w see|strong="G3708"\+w* \+w God|strong="G2316"\+w*’s Kingdom.” \wj* +\p +\v 28 \w About|strong="G5616"\w* \w eight|strong="G3638"\w* \w days|strong="G2250"\w* \w after|strong="G3326"\w* \w these|strong="G3778"\w* \w sayings|strong="G3056"\w*, \w he|strong="G2532"\w* \w took|strong="G3880"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w* \w Peter|strong="G4074"\w*, \w John|strong="G2491"\w*, \w and|strong="G2532"\w* \w James|strong="G2385"\w*, \w and|strong="G2532"\w* \w went|strong="G2532"\w* \w up|strong="G1519"\w* \w onto|strong="G1519"\w* \w the|strong="G2532"\w* \w mountain|strong="G3735"\w* \w to|strong="G1519"\w* \w pray|strong="G4336"\w*. +\v 29 \w As|strong="G1722"\w* \w he|strong="G2532"\w* \w was|strong="G1096"\w* \w praying|strong="G4336"\w*, \w the|strong="G1722"\w* \w appearance|strong="G4383"\w* \w of|strong="G2532"\w* \w his|strong="G1722"\w* \w face|strong="G4383"\w* \w was|strong="G1096"\w* \w altered|strong="G2087"\w*, \w and|strong="G2532"\w* \w his|strong="G1722"\w* \w clothing|strong="G2441"\w* \w became|strong="G1096"\w* \w white|strong="G3022"\w* \w and|strong="G2532"\w* dazzling. +\v 30 \w Behold|strong="G2400"\w*, \w two|strong="G1417"\w* \w men|strong="G1417"\w* \w were|strong="G1510"\w* \w talking|strong="G4814"\w* \w with|strong="G2532"\w* \w him|strong="G3708"\w*, \w who|strong="G3748"\w* \w were|strong="G1510"\w* \w Moses|strong="G3475"\w* \w and|strong="G2532"\w* \w Elijah|strong="G2243"\w*, +\v 31 \w who|strong="G3739"\w* \w appeared|strong="G3708"\w* \w in|strong="G1722"\w* \w glory|strong="G1391"\w* \w and|strong="G1391"\w* \w spoke|strong="G3004"\w* \w of|strong="G1391"\w* \w his|strong="G1722"\w* \w departure|strong="G1841"\w*,\f + \fr 9:31 \ft literally, “exodus”\f* \w which|strong="G3739"\w* \w he|strong="G3739"\w* \w was|strong="G3588"\w* \w about|strong="G3195"\w* \w to|strong="G3004"\w* \w accomplish|strong="G4137"\w* \w at|strong="G1722"\w* \w Jerusalem|strong="G2419"\w*. +\p +\v 32 \w Now|strong="G1161"\w* \w Peter|strong="G4074"\w* \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G1510"\w* \w with|strong="G4862"\w* \w him|strong="G3588"\w* \w were|strong="G1510"\w* heavy \w with|strong="G4862"\w* \w sleep|strong="G5258"\w*, \w but|strong="G1161"\w* \w when|strong="G1161"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w fully|strong="G1235"\w* \w awake|strong="G1235"\w*, \w they|strong="G2532"\w* \w saw|strong="G3708"\w* \w his|strong="G3708"\w* \w glory|strong="G1391"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w two|strong="G1417"\w* \w men|strong="G1417"\w* \w who|strong="G3588"\w* \w stood|strong="G3588"\w* \w with|strong="G4862"\w* \w him|strong="G3588"\w*. +\v 33 \w As|strong="G1722"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* parting \w from|strong="G2532"\w* \w him|strong="G3588"\w*, \w Peter|strong="G4074"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w Jesus|strong="G2424"\w*, “\w Master|strong="G1988"\w*, \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w good|strong="G2570"\w* \w for|strong="G4314"\w* \w us|strong="G3004"\w* \w to|strong="G4314"\w* \w be|strong="G1096"\w* \w here|strong="G5602"\w*. \w Let|strong="G1096"\w*’s \w make|strong="G4160"\w* \w three|strong="G5140"\w* \w tents|strong="G4633"\w*: \w one|strong="G1520"\w* \w for|strong="G4314"\w* \w you|strong="G4771"\w*, \w one|strong="G1520"\w* \w for|strong="G4314"\w* \w Moses|strong="G3475"\w*, \w and|strong="G2532"\w* \w one|strong="G1520"\w* \w for|strong="G4314"\w* \w Elijah|strong="G2243"\w*,” \w not|strong="G3361"\w* \w knowing|strong="G1492"\w* \w what|strong="G3739"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w*. +\p +\v 34 \w While|strong="G1722"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w a|strong="G1096"\w* \w cloud|strong="G3507"\w* \w came|strong="G1096"\w* \w and|strong="G2532"\w* \w overshadowed|strong="G1982"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w afraid|strong="G5399"\w* \w as|strong="G1519"\w* \w they|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w cloud|strong="G3507"\w*. +\v 35 \w A|strong="G1096"\w* \w voice|strong="G5456"\w* \w came|strong="G1096"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w cloud|strong="G3507"\w*, \w saying|strong="G3004"\w*, “\w This|strong="G3778"\w* \w is|strong="G1510"\w* \w my|strong="G1473"\w* beloved \w Son|strong="G5207"\w*. Listen \w to|strong="G2532"\w* \w him|strong="G3588"\w*!” +\v 36 \w When|strong="G2532"\w* \w the|strong="G1722"\w* \w voice|strong="G5456"\w* \w came|strong="G1096"\w*, \w Jesus|strong="G2424"\w* \w was|strong="G1096"\w* \w found|strong="G2147"\w* \w alone|strong="G3441"\w*. \w They|strong="G2532"\w* \w were|strong="G3588"\w* \w silent|strong="G4601"\w*, \w and|strong="G2532"\w* told \w no|strong="G3762"\w* \w one|strong="G3762"\w* \w in|strong="G1722"\w* \w those|strong="G3588"\w* \w days|strong="G2250"\w* \w any|strong="G3762"\w* \w of|strong="G2250"\w* \w the|strong="G1722"\w* \w things|strong="G3588"\w* \w which|strong="G3739"\w* \w they|strong="G2532"\w* \w had|strong="G2424"\w* \w seen|strong="G3708"\w*. +\p +\v 37 \w On|strong="G1161"\w* \w the|strong="G1161"\w* \w next|strong="G1836"\w* \w day|strong="G2250"\w*, \w when|strong="G1161"\w* \w they|strong="G1161"\w* \w had|strong="G3588"\w* \w come|strong="G1096"\w* \w down|strong="G2718"\w* \w from|strong="G2718"\w* \w the|strong="G1161"\w* \w mountain|strong="G3735"\w*, \w a|strong="G1096"\w* \w great|strong="G4183"\w* \w multitude|strong="G3793"\w* \w met|strong="G4876"\w* \w him|strong="G3588"\w*. +\v 38 \w Behold|strong="G2400"\w*, \w a|strong="G2532"\w* \w man|strong="G5207"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w crowd|strong="G3793"\w* \w called|strong="G3004"\w* \w out|strong="G2532"\w*, \w saying|strong="G3004"\w*, “\w Teacher|strong="G1320"\w*, \w I|strong="G1473"\w* \w beg|strong="G1189"\w* \w you|strong="G4771"\w* \w to|strong="G2532"\w* \w look|strong="G2400"\w* \w at|strong="G1909"\w* \w my|strong="G3708"\w* \w son|strong="G5207"\w*, \w for|strong="G3754"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w my|strong="G3708"\w* \w only|strong="G3439"\w* born\f + \fr 9:38 \ft The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”.\f* \w child|strong="G5207"\w*. +\v 39 \w Behold|strong="G2400"\w*, \w a|strong="G2532"\w* \w spirit|strong="G4151"\w* \w takes|strong="G2983"\w* \w him|strong="G3708"\w*, \w he|strong="G2532"\w* \w suddenly|strong="G1810"\w* \w cries|strong="G2896"\w* \w out|strong="G2896"\w*, \w and|strong="G2532"\w* \w it|strong="G2532"\w* convulses \w him|strong="G3708"\w* \w so|strong="G2532"\w* \w that|strong="G2532"\w* \w he|strong="G2532"\w* foams; \w and|strong="G2532"\w* \w it|strong="G2532"\w* \w hardly|strong="G3425"\w* departs \w from|strong="G2532"\w* \w him|strong="G3708"\w*, \w bruising|strong="G4937"\w* \w him|strong="G3708"\w* \w severely|strong="G4937"\w*. +\v 40 \w I|strong="G2532"\w* \w begged|strong="G1189"\w* \w your|strong="G2532"\w* \w disciples|strong="G3101"\w* \w to|strong="G2443"\w* \w cast|strong="G1544"\w* \w it|strong="G2532"\w* \w out|strong="G1544"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* couldn’\w t|strong="G3588"\w*.” +\p +\v 41 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w*, \wj “Faithless \+w and|strong="G2532"\+w* \+w perverse|strong="G1294"\+w* \+w generation|strong="G1074"\+w*, \+w how|strong="G2193"\+w* \+w long|strong="G2193"\+w* \+w shall|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w with|strong="G4314"\+w* \+w you|strong="G5210"\+w* \+w and|strong="G2532"\+w* \+w bear|strong="G2532"\+w* \+w with|strong="G4314"\+w* \+w you|strong="G5210"\+w*? \+w Bring|strong="G4317"\+w* \+w your|strong="G2532"\+w* \+w son|strong="G5207"\+w* \+w here|strong="G5602"\+w*.”\wj* +\p +\v 42 \w While|strong="G1161"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w still|strong="G2089"\w* \w coming|strong="G4334"\w*, \w the|strong="G2532"\w* \w demon|strong="G1140"\w* \w threw|strong="G4952"\w* \w him|strong="G3588"\w* \w down|strong="G4486"\w* \w and|strong="G2532"\w* convulsed \w him|strong="G3588"\w* violently. \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w rebuked|strong="G2008"\w* \w the|strong="G2532"\w* unclean \w spirit|strong="G4151"\w*, \w healed|strong="G2390"\w* \w the|strong="G2532"\w* \w boy|strong="G3816"\w*, \w and|strong="G2532"\w* \w gave|strong="G2532"\w* \w him|strong="G3588"\w* back \w to|strong="G2532"\w* \w his|strong="G2532"\w* \w father|strong="G3962"\w*. +\v 43 \w They|strong="G1161"\w* \w were|strong="G3588"\w* \w all|strong="G3956"\w* \w astonished|strong="G1605"\w* \w at|strong="G1909"\w* \w the|strong="G3956"\w* \w majesty|strong="G3168"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\p \w But|strong="G1161"\w* \w while|strong="G1161"\w* \w all|strong="G3956"\w* \w were|strong="G3588"\w* \w marveling|strong="G2296"\w* \w at|strong="G1909"\w* \w all|strong="G3956"\w* \w the|strong="G3956"\w* \w things|strong="G3956"\w* \w which|strong="G3739"\w* \w Jesus|strong="G3004"\w* \w did|strong="G4160"\w*, \w he|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w his|strong="G3956"\w* \w disciples|strong="G3101"\w*, +\v 44 \wj “\+w Let|strong="G1063"\+w* \+w these|strong="G3778"\+w* \+w words|strong="G3056"\+w* \+w sink|strong="G5087"\+w* \+w into|strong="G1519"\+w* \+w your|strong="G5087"\+w* \+w ears|strong="G3775"\+w*, \+w for|strong="G1063"\+w* \+w the|strong="G1519"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3778"\+w* \+w will|strong="G3195"\+w* \+w be|strong="G3195"\+w* \+w delivered|strong="G3860"\+w* \+w up|strong="G3860"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w hands|strong="G5495"\+w* \+w of|strong="G5207"\+w* \+w men|strong="G3778"\+w*.”\wj* +\v 45 \w But|strong="G1161"\w* \w they|strong="G2532"\w* didn’\w t|strong="G3588"\w* understand \w this|strong="G3778"\w* \w saying|strong="G4487"\w*. \w It|strong="G2532"\w* \w was|strong="G1510"\w* \w concealed|strong="G3871"\w* \w from|strong="G2532"\w* \w them|strong="G3588"\w*, \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w should|strong="G3588"\w* \w not|strong="G3361"\w* perceive \w it|strong="G2532"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w afraid|strong="G5399"\w* \w to|strong="G2443"\w* \w ask|strong="G2065"\w* \w him|strong="G3588"\w* \w about|strong="G4012"\w* \w this|strong="G3778"\w* \w saying|strong="G4487"\w*. +\p +\v 46 \w An|strong="G1722"\w* \w argument|strong="G1261"\w* \w arose|strong="G1525"\w* \w among|strong="G1722"\w* \w them|strong="G3588"\w* \w about|strong="G1722"\w* \w which|strong="G3588"\w* \w of|strong="G1722"\w* \w them|strong="G3588"\w* \w was|strong="G1510"\w* \w the|strong="G1722"\w* \w greatest|strong="G3173"\w*. +\v 47 \w Jesus|strong="G2424"\w*, \w perceiving|strong="G1492"\w* \w the|strong="G1161"\w* \w reasoning|strong="G1261"\w* \w of|strong="G3844"\w* \w their|strong="G1438"\w* \w hearts|strong="G2588"\w*, \w took|strong="G1949"\w* \w a|strong="G3708"\w* little \w child|strong="G3813"\w*, \w and|strong="G1161"\w* \w set|strong="G2476"\w* \w him|strong="G3588"\w* \w by|strong="G3844"\w* \w his|strong="G1438"\w* \w side|strong="G3844"\w*, +\v 48 \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Whoever|strong="G3739"\+w* \+w receives|strong="G1209"\+w* \+w this|strong="G3778"\+w* \+w little|strong="G3398"\+w* \+w child|strong="G3813"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w name|strong="G3686"\+w* \+w receives|strong="G1209"\+w* \+w me|strong="G1473"\+w*. \+w Whoever|strong="G3739"\+w* \+w receives|strong="G1209"\+w* \+w me|strong="G1473"\+w* \+w receives|strong="G1209"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3739"\+w* \+w sent|strong="G2532"\+w* \+w me|strong="G1473"\+w*. \+w For|strong="G1063"\+w* \+w whoever|strong="G3739"\+w* \+w is|strong="G1510"\+w* \+w least|strong="G3398"\+w* \+w among|strong="G1722"\+w* \+w you|strong="G5210"\+w* \+w all|strong="G3956"\+w*, \+w this|strong="G3778"\+w* \+w one|strong="G3739"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w great|strong="G3173"\+w*.”\wj* +\p +\v 49 \w John|strong="G2491"\w* \w answered|strong="G3004"\w*, “\w Master|strong="G1988"\w*, \w we|strong="G2249"\w* \w saw|strong="G3708"\w* \w someone|strong="G5100"\w* \w casting|strong="G1544"\w* \w out|strong="G1544"\w* \w demons|strong="G1140"\w* \w in|strong="G1722"\w* \w your|strong="G2532"\w* \w name|strong="G3686"\w*, \w and|strong="G2532"\w* \w we|strong="G2249"\w* forbade \w him|strong="G3588"\w*, \w because|strong="G3754"\w* \w he|strong="G2532"\w* doesn’\w t|strong="G3588"\w* \w follow|strong="G1161"\w* \w with|strong="G3326"\w* \w us|strong="G3004"\w*.” +\p +\v 50 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3739"\w*, \wj “Don’t \+w forbid|strong="G2967"\+w* \+w him|strong="G3739"\+w*, \+w for|strong="G1063"\+w* \+w he|strong="G1161"\+w* \+w who|strong="G3739"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w against|strong="G2596"\+w* \+w us|strong="G3004"\+w* \+w is|strong="G1510"\+w* \+w for|strong="G1063"\+w* \+w us|strong="G3004"\+w*.”\wj* +\p +\v 51 \w It|strong="G2532"\w* \w came|strong="G1096"\w* \w to|strong="G1519"\w* \w pass|strong="G1096"\w*, \w when|strong="G1161"\w* \w the|strong="G1722"\w* \w days|strong="G2250"\w* \w were|strong="G3588"\w* \w near|strong="G1519"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w should|strong="G3588"\w* \w be|strong="G1096"\w* \w taken|strong="G1096"\w* \w up|strong="G1519"\w*, \w he|strong="G2532"\w* intently \w set|strong="G2532"\w* \w his|strong="G1519"\w* \w face|strong="G4383"\w* \w to|strong="G1519"\w* \w go|strong="G4198"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w* +\v 52 \w and|strong="G2532"\w* \w sent|strong="G2532"\w* messengers \w before|strong="G4253"\w* \w his|strong="G1519"\w* \w face|strong="G4383"\w*. \w They|strong="G2532"\w* \w went|strong="G4198"\w* \w and|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w a|strong="G5613"\w* \w village|strong="G2968"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Samaritans|strong="G4541"\w*, \w so|strong="G2532"\w* \w as|strong="G5613"\w* \w to|strong="G1519"\w* \w prepare|strong="G2090"\w* \w for|strong="G1519"\w* \w him|strong="G2532"\w*. +\v 53 \w They|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w receive|strong="G1209"\w* \w him|strong="G3588"\w*, \w because|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w traveling|strong="G4198"\w* \w with|strong="G2532"\w* \w his|strong="G1519"\w* \w face|strong="G4383"\w* \w set|strong="G2532"\w* \w toward|strong="G1519"\w* \w Jerusalem|strong="G2419"\w*. +\v 54 \w When|strong="G1161"\w* \w his|strong="G1438"\w* \w disciples|strong="G3101"\w*, \w James|strong="G2385"\w* \w and|strong="G2532"\w* \w John|strong="G2491"\w*, \w saw|strong="G3708"\w* \w this|strong="G3588"\w*, \w they|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Lord|strong="G2962"\w*, \w do|strong="G2532"\w* \w you|strong="G3004"\w* \w want|strong="G2309"\w* \w us|strong="G3004"\w* \w to|strong="G2532"\w* \w command|strong="G3004"\w* \w fire|strong="G4442"\w* \w to|strong="G2532"\w* \w come|strong="G2597"\w* \w down|strong="G2597"\w* \w from|strong="G2597"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w* \w and|strong="G2532"\w* destroy \w them|strong="G3588"\w*, \w just|strong="G2532"\w* \w as|strong="G1161"\w* Elijah \w did|strong="G2532"\w*?” +\p +\v 55 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w turned|strong="G4762"\w* \w and|strong="G1161"\w* \w rebuked|strong="G2008"\w* them, \wj “You don’t know \+w of|strong="G1161"\+w* \+w what|strong="G1161"\+w* kind \+w of|strong="G1161"\+w* spirit you are. \wj* +\v 56 \wj \+w For|strong="G1519"\+w* \+w the|strong="G2532"\+w* Son \+w of|strong="G2532"\+w* \+w Man|strong="G2087"\+w* didn’t \+w come|strong="G2532"\+w* \+w to|strong="G1519"\+w* destroy men’s lives, \+w but|strong="G2532"\+w* \+w to|strong="G1519"\+w* save \+w them|strong="G2532"\+w*.”\wj* +\p \w They|strong="G2532"\w* \w went|strong="G4198"\w* \w to|strong="G1519"\w* \w another|strong="G2087"\w* \w village|strong="G2968"\w*. +\v 57 \w As|strong="G1722"\w* \w they|strong="G2532"\w* \w went|strong="G4198"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w way|strong="G3598"\w*, \w a|strong="G2532"\w* \w certain|strong="G5100"\w* \w man|strong="G5100"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w I|strong="G2532"\w* want \w to|strong="G4314"\w* \w follow|strong="G4198"\w* \w you|strong="G4771"\w* \w wherever|strong="G3699"\w* \w you|strong="G4771"\w* \w go|strong="G4198"\w*, \w Lord|strong="G3588"\w*.” +\p +\v 58 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w The|strong="G2532"\+w* foxes \+w have|strong="G2192"\+w* \+w holes|strong="G5454"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w birds|strong="G4071"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G2532"\+w* \+w sky|strong="G3772"\+w* \+w have|strong="G2192"\+w* \+w nests|strong="G2682"\+w*, \+w but|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3756"\+w* \+w has|strong="G2192"\+w* \+w no|strong="G3756"\+w* \+w place|strong="G4226"\+w* \+w to|strong="G2532"\+w* \+w lay|strong="G2827"\+w* \+w his|strong="G2192"\+w* \+w head|strong="G2776"\+w*.”\wj* +\p +\v 59 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w another|strong="G2087"\w*, \wj “\+w Follow|strong="G1161"\+w* \+w me|strong="G1473"\+w*!”\wj* +\p \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w said|strong="G3004"\w*, “\w Lord|strong="G2962"\w*, \w allow|strong="G2010"\w* \w me|strong="G1473"\w* \w first|strong="G4413"\w* \w to|strong="G4314"\w* \w go|strong="G2010"\w* \w and|strong="G1161"\w* \w bury|strong="G2290"\w* \w my|strong="G1473"\w* \w father|strong="G3962"\w*.” +\p +\v 60 \w But|strong="G1161"\w* \w Jesus|strong="G3004"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “Leave \+w the|strong="G1161"\+w* \+w dead|strong="G3498"\+w* \+w to|strong="G3004"\+w* \+w bury|strong="G2290"\+w* \+w their|strong="G1438"\+w* \+w own|strong="G1438"\+w* \+w dead|strong="G3498"\+w*, \+w but|strong="G1161"\+w* \+w you|strong="G4771"\+w* go \+w and|strong="G1161"\+w* announce \+w God|strong="G2316"\+w*’s Kingdom.”\wj* +\p +\v 61 \w Another|strong="G2087"\w* \w also|strong="G2532"\w* \w said|strong="G3004"\w*, “\w I|strong="G1473"\w* want \w to|strong="G1519"\w* \w follow|strong="G1161"\w* \w you|strong="G4771"\w*, \w Lord|strong="G2962"\w*, \w but|strong="G1161"\w* \w first|strong="G4413"\w* \w allow|strong="G2010"\w* \w me|strong="G1473"\w* \w to|strong="G1519"\w* \w say|strong="G3004"\w* good-bye \w to|strong="G1519"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w at|strong="G1519"\w* \w my|strong="G1473"\w* \w house|strong="G3624"\w*.” +\p +\v 62 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \wj “\+w No|strong="G3762"\+w* \+w one|strong="G3762"\+w*, \+w having|strong="G2532"\+w* \+w put|strong="G1911"\+w* \+w his|strong="G1519"\+w* \+w hand|strong="G5495"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* plow \+w and|strong="G2532"\+w* \+w looking|strong="G2424"\+w* \+w back|strong="G3694"\+w*, \+w is|strong="G1510"\+w* \+w fit|strong="G2111"\+w* \+w for|strong="G1519"\+w* \+w God|strong="G2316"\+w*’s Kingdom.”\wj* +\c 10 +\p +\v 1 \w Now|strong="G1161"\w* \w after|strong="G3326"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w*, \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w also|strong="G2532"\w* appointed \w seventy|strong="G1440"\w* \w others|strong="G2087"\w*, \w and|strong="G2532"\w* \w sent|strong="G2532"\w* \w them|strong="G3588"\w* \w two|strong="G1417"\w* \w by|strong="G2532"\w* \w two|strong="G1417"\w* \w ahead|strong="G4253"\w* \w of|strong="G2532"\w* \w him|strong="G3588"\w*\f + \fr 10:1 \ft literally, “before his face”\f* \w into|strong="G1519"\w* \w every|strong="G3956"\w* \w city|strong="G4172"\w* \w and|strong="G2532"\w* \w place|strong="G5117"\w* \w where|strong="G3757"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w about|strong="G3195"\w* \w to|strong="G1519"\w* \w come|strong="G2064"\w*. +\v 2 \w Then|strong="G3767"\w* \w he|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w The|strong="G1519"\+w* \+w harvest|strong="G2326"\+w* \+w is|strong="G3588"\+w* \+w indeed|strong="G3303"\+w* \+w plentiful|strong="G4183"\+w*, \+w but|strong="G1161"\+w* \+w the|strong="G1519"\+w* \+w laborers|strong="G2040"\+w* \+w are|strong="G3588"\+w* \+w few|strong="G3641"\+w*. \+w Pray|strong="G1189"\+w* \+w therefore|strong="G3767"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w Lord|strong="G2962"\+w* \+w of|strong="G2962"\+w* \+w the|strong="G1519"\+w* \+w harvest|strong="G2326"\+w*, \+w that|strong="G3588"\+w* \+w he|strong="G1161"\+w* \+w may|strong="G3004"\+w* \+w send|strong="G1544"\+w* \+w out|strong="G1544"\+w* \+w laborers|strong="G2040"\+w* \+w into|strong="G1519"\+w* \+w his|strong="G1438"\+w* \+w harvest|strong="G2326"\+w*. \wj* +\v 3 \wj \+w Go|strong="G5217"\+w* \+w your|strong="G3708"\+w* \+w ways|strong="G5217"\+w*. \+w Behold|strong="G2400"\+w*, \+w I|strong="G5613"\+w* send \+w you|strong="G5210"\+w* out \+w as|strong="G5613"\+w* lambs \+w among|strong="G1722"\+w* \+w wolves|strong="G3074"\+w*. \wj* +\v 4 \wj Carry \+w no|strong="G3361"\+w* purse, \+w nor|strong="G2532"\+w* wallet, \+w nor|strong="G2532"\+w* \+w sandals|strong="G5266"\+w*. Greet \+w no|strong="G3361"\+w* \+w one|strong="G3367"\+w* \+w on|strong="G2596"\+w* \+w the|strong="G2532"\+w* \+w way|strong="G3598"\+w*. \wj* +\v 5 \wj \+w Into|strong="G1519"\+w* \+w whatever|strong="G3739"\+w* \+w house|strong="G3624"\+w* \+w you|strong="G3739"\+w* \+w enter|strong="G1525"\+w*, \+w first|strong="G4413"\+w* \+w say|strong="G3004"\+w*, ‘\+w Peace|strong="G1515"\+w* \+w be|strong="G1519"\+w* \+w to|strong="G1519"\+w* \+w this|strong="G3778"\+w* \+w house|strong="G3624"\+w*.’ \wj* +\v 6 \wj \+w If|strong="G1487"\+w* \+w a|strong="G2532"\+w* \+w son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w peace|strong="G1515"\+w* \+w is|strong="G1510"\+w* \+w there|strong="G1563"\+w*, \+w your|strong="G1437"\+w* \+w peace|strong="G1515"\+w* \+w will|strong="G1510"\+w* \+w rest|strong="G1515"\+w* \+w on|strong="G1909"\+w* \+w him|strong="G3588"\+w*; \+w but|strong="G1161"\+w* \+w if|strong="G1487"\+w* \+w not|strong="G3361"\+w*, \+w it|strong="G2532"\+w* \+w will|strong="G1510"\+w* return \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 7 \wj \+w Remain|strong="G3306"\+w* \+w in|strong="G1722"\+w* \+w that|strong="G3588"\+w* \+w same|strong="G2532"\+w* \+w house|strong="G3614"\+w*, \+w eating|strong="G2068"\+w* \+w and|strong="G2532"\+w* \+w drinking|strong="G4095"\+w* \+w the|strong="G1722"\+w* \+w things|strong="G3588"\+w* \+w they|strong="G2532"\+w* \+w give|strong="G3844"\+w*, \+w for|strong="G1063"\+w* \+w the|strong="G1722"\+w* \+w laborer|strong="G2040"\+w* \+w is|strong="G3588"\+w* worthy \+w of|strong="G1537"\+w* \+w his|strong="G1519"\+w* \+w wages|strong="G3408"\+w*. Don’\+w t|strong="G3588"\+w* \+w go|strong="G3327"\+w* \+w from|strong="G1537"\+w* \+w house|strong="G3614"\+w* \+w to|strong="G1519"\+w* \+w house|strong="G3614"\+w*. \wj* +\v 8 \wj \+w Into|strong="G1519"\+w* \+w whatever|strong="G3739"\+w* \+w city|strong="G4172"\+w* \+w you|strong="G5210"\+w* \+w enter|strong="G1525"\+w* \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w receive|strong="G1209"\+w* \+w you|strong="G5210"\+w*, \+w eat|strong="G2068"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3588"\+w* \+w that|strong="G3739"\+w* \+w are|strong="G3588"\+w* \+w set|strong="G3908"\+w* \+w before|strong="G3908"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 9 \wj \+w Heal|strong="G2323"\+w* \+w the|strong="G1722"\+w* sick \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w there|strong="G2532"\+w* \+w and|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w them|strong="G3588"\+w*, ‘\+w God|strong="G2316"\+w*’s Kingdom \+w has|strong="G2316"\+w* \+w come|strong="G2532"\+w* \+w near|strong="G1448"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*.’ \wj* +\v 10 \wj \+w But|strong="G1161"\+w* \+w into|strong="G1519"\+w* \+w whatever|strong="G3739"\+w* \+w city|strong="G4172"\+w* \+w you|strong="G5210"\+w* \+w enter|strong="G1525"\+w* \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* don’\+w t|strong="G3588"\+w* \+w receive|strong="G1209"\+w* \+w you|strong="G5210"\+w*, \+w go|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w into|strong="G1519"\+w* its \+w streets|strong="G4113"\+w* \+w and|strong="G2532"\+w* \+w say|strong="G3004"\+w*, \wj* +\v 11 \wj ‘\+w Even|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w dust|strong="G2868"\+w* \+w from|strong="G1537"\+w* \+w your|strong="G2532"\+w* \+w city|strong="G4172"\+w* \+w that|strong="G3754"\+w* \+w clings|strong="G2853"\+w* \+w to|strong="G1519"\+w* \+w us|strong="G1519"\+w*, \+w we|strong="G2249"\+w* wipe \+w off|strong="G1537"\+w* \+w against|strong="G1519"\+w* \+w you|strong="G5210"\+w*. \+w Nevertheless|strong="G4133"\+w* \+w know|strong="G1097"\+w* \+w this|strong="G3778"\+w*, \+w that|strong="G3754"\+w* \+w God|strong="G2316"\+w*’s Kingdom \+w has|strong="G2316"\+w* \+w come|strong="G2532"\+w* \+w near|strong="G1448"\+w* \+w to|strong="G1519"\+w* \+w you|strong="G5210"\+w*.’ \wj* +\v 12 \wj \+w I|strong="G1161"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w*, \+w it|strong="G3754"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w more|strong="G1161"\+w* tolerable \+w in|strong="G1722"\+w* \+w that|strong="G3754"\+w* \+w day|strong="G2250"\+w* \+w for|strong="G3754"\+w* \+w Sodom|strong="G4670"\+w* \+w than|strong="G2228"\+w* \+w for|strong="G3754"\+w* \+w that|strong="G3754"\+w* \+w city|strong="G4172"\+w*.\wj* +\p +\v 13 \wj “\+w Woe|strong="G3759"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*, \+w Chorazin|strong="G5523"\+w*! \+w Woe|strong="G3759"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*, Bethsaida! \+w For|strong="G3754"\+w* \+w if|strong="G1487"\+w* \+w the|strong="G1722"\+w* \+w mighty|strong="G1411"\+w* \+w works|strong="G1411"\+w* \+w had|strong="G2532"\+w* \+w been|strong="G1096"\+w* \+w done|strong="G1096"\+w* \+w in|strong="G1722"\+w* \+w Tyre|strong="G5184"\+w* \+w and|strong="G2532"\+w* \+w Sidon|strong="G4605"\+w* \+w which|strong="G3588"\+w* \+w were|strong="G3588"\+w* \+w done|strong="G1096"\+w* \+w in|strong="G1722"\+w* \+w you|strong="G5210"\+w*, \+w they|strong="G2532"\+w* \+w would|strong="G1096"\+w* \+w have|strong="G2532"\+w* \+w repented|strong="G3340"\+w* \+w long|strong="G3819"\+w* \+w ago|strong="G3819"\+w*, \+w sitting|strong="G2521"\+w* \+w in|strong="G1722"\+w* \+w sackcloth|strong="G4526"\+w* \+w and|strong="G2532"\+w* \+w ashes|strong="G4700"\+w*. \wj* +\v 14 \wj \+w But|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w more|strong="G2532"\+w* tolerable \+w for|strong="G1722"\+w* \+w Tyre|strong="G5184"\+w* \+w and|strong="G2532"\+w* \+w Sidon|strong="G4605"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w judgment|strong="G2920"\+w* \+w than|strong="G2228"\+w* \+w for|strong="G1722"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 15 \wj \+w You|strong="G4771"\+w*, \+w Capernaum|strong="G2584"\+w*, \+w who|strong="G2532"\+w* \+w are|strong="G2532"\+w* \+w exalted|strong="G5312"\+w* \+w to|strong="G2532"\+w* \+w heaven|strong="G3772"\+w*, \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w brought|strong="G2532"\+w* \+w down|strong="G2597"\+w* \+w to|strong="G2532"\+w* Hades. \wj*\f + \fr 10:15 \ft Hades is the lower realm of the dead, or Hell.\f* +\v 16 \wj \+w Whoever|strong="G3588"\+w* listens \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w* listens \+w to|strong="G2532"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w whoever|strong="G3588"\+w* rejects \+w you|strong="G5210"\+w* rejects \+w me|strong="G1473"\+w*. \+w Whoever|strong="G3588"\+w* rejects \+w me|strong="G1473"\+w* rejects \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w sent|strong="G2532"\+w* \+w me|strong="G1473"\+w*.”\wj* +\p +\v 17 \w The|strong="G1722"\w* \w seventy|strong="G1440"\w* \w returned|strong="G5290"\w* \w with|strong="G3326"\w* \w joy|strong="G5479"\w*, \w saying|strong="G3004"\w*, “\w Lord|strong="G2962"\w*, \w even|strong="G2532"\w* \w the|strong="G1722"\w* \w demons|strong="G1140"\w* \w are|strong="G3588"\w* \w subject|strong="G5293"\w* \w to|strong="G2532"\w* \w us|strong="G3004"\w* \w in|strong="G1722"\w* \w your|strong="G2962"\w* \w name|strong="G3686"\w*!” +\p +\v 18 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w I|strong="G1161"\+w* \+w saw|strong="G2334"\+w* \+w Satan|strong="G4567"\+w* having \+w fallen|strong="G4098"\+w* \+w like|strong="G5613"\+w* lightning \+w from|strong="G1537"\+w* \+w heaven|strong="G3772"\+w*. \wj* +\v 19 \wj \+w Behold|strong="G2400"\+w*, \+w I|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w you|strong="G5210"\+w* \+w authority|strong="G1849"\+w* \+w to|strong="G2532"\+w* \+w tread|strong="G3961"\+w* \+w on|strong="G1909"\+w* \+w serpents|strong="G3789"\+w* \+w and|strong="G2532"\+w* \+w scorpions|strong="G4651"\+w*, \+w and|strong="G2532"\+w* \+w over|strong="G1909"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G2532"\+w* \+w power|strong="G1411"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w enemy|strong="G2190"\+w*. \+w Nothing|strong="G3762"\+w* \+w will|strong="G2532"\+w* \+w in|strong="G1909"\+w* \+w any|strong="G3956"\+w* \+w way|strong="G3956"\+w* hurt \+w you|strong="G5210"\+w*. \wj* +\v 20 \wj \+w Nevertheless|strong="G4133"\+w*, don’\+w t|strong="G3588"\+w* \+w rejoice|strong="G5463"\+w* \+w in|strong="G1722"\+w* \+w this|strong="G3778"\+w*, \+w that|strong="G3754"\+w* \+w the|strong="G1722"\+w* \+w spirits|strong="G4151"\+w* \+w are|strong="G3588"\+w* \+w subject|strong="G5293"\+w* \+w to|strong="G1722"\+w* \+w you|strong="G5210"\+w*, \+w but|strong="G1161"\+w* \+w rejoice|strong="G5463"\+w* \+w that|strong="G3754"\+w* \+w your|strong="G1722"\+w* \+w names|strong="G3686"\+w* \+w are|strong="G3588"\+w* \+w written|strong="G1449"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*.”\wj* +\p +\v 21 \w In|strong="G1722"\w* \w that|strong="G3754"\w* \w same|strong="G3778"\w* \w hour|strong="G5610"\w*, \w Jesus|strong="G3004"\w* rejoiced \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w I|strong="G2532"\+w* \+w thank|strong="G1843"\+w* \+w you|strong="G4771"\+w*, \+w O|strong="G3962"\+w* \+w Father|strong="G3962"\+w*, \+w Lord|strong="G2962"\+w* \+w of|strong="G4151"\+w* \+w heaven|strong="G3772"\+w* \+w and|strong="G2532"\+w* \+w earth|strong="G1093"\+w*, \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2532"\+w* hidden \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* \+w from|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w wise|strong="G4680"\+w* \+w and|strong="G2532"\+w* understanding, \+w and|strong="G2532"\+w* revealed \+w them|strong="G3588"\+w* \+w to|strong="G2532"\+w* little \+w children|strong="G3516"\+w*. \+w Yes|strong="G3483"\+w*, \+w Father|strong="G3962"\+w*, \+w for|strong="G3754"\+w* \+w so|strong="G3779"\+w* \+w it|strong="G2532"\+w* \+w was|strong="G1096"\+w* \+w well-pleasing|strong="G2107"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G2962"\+w* \+w sight|strong="G1715"\+w*.”\wj* +\p +\v 22 \w Turning|strong="G4762"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w All|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w have|strong="G2532"\+w* \+w been|strong="G1510"\+w* \+w delivered|strong="G3860"\+w* \+w to|strong="G4314"\+w* \+w me|strong="G1473"\+w* \+w by|strong="G5259"\+w* \+w my|strong="G3956"\+w* \+w Father|strong="G3962"\+w*. \+w No|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w knows|strong="G1097"\+w* \+w who|strong="G3739"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w is|strong="G1510"\+w*, \+w except|strong="G1487"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w*, \+w and|strong="G2532"\+w* \+w who|strong="G3739"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w is|strong="G1510"\+w*, \+w except|strong="G1487"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w to|strong="G4314"\+w* \+w whomever|strong="G3739"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w desires|strong="G1014"\+w* \+w to|strong="G4314"\+w* reveal \+w him|strong="G3588"\+w*.”\wj* +\p +\v 23 \w Turning|strong="G4762"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w privately|strong="G2398"\w*, \wj “\+w Blessed|strong="G3107"\+w* \+w are|strong="G3588"\+w* \+w the|strong="G2532"\+w* \+w eyes|strong="G3788"\+w* \+w which|strong="G3739"\+w* see \+w the|strong="G2532"\+w* \+w things|strong="G3588"\+w* \+w that|strong="G3739"\+w* \+w you|strong="G3739"\+w* see, \wj* +\v 24 \wj \+w for|strong="G1063"\+w* \+w I|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w many|strong="G4183"\+w* \+w prophets|strong="G4396"\+w* \+w and|strong="G2532"\+w* kings \+w desired|strong="G2309"\+w* \+w to|strong="G2532"\+w* \+w see|strong="G3708"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G4183"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G5210"\+w* \+w see|strong="G3708"\+w*, \+w and|strong="G2532"\+w* didn’t \+w see|strong="G3708"\+w* \+w them|strong="G3739"\+w*, \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* hear \+w the|strong="G2532"\+w* \+w things|strong="G4183"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G5210"\+w* hear, \+w and|strong="G2532"\+w* didn’t hear \+w them|strong="G3739"\+w*.”\wj* +\p +\v 25 \w Behold|strong="G2400"\w*, \w a|strong="G2532"\w* \w certain|strong="G5100"\w* \w lawyer|strong="G3544"\w* \w stood|strong="G2532"\w* \w up|strong="G2532"\w* \w and|strong="G2532"\w* tested \w him|strong="G3708"\w*, \w saying|strong="G3004"\w*, “\w Teacher|strong="G1320"\w*, \w what|strong="G5101"\w* \w shall|strong="G2532"\w* \w I|strong="G2532"\w* \w do|strong="G4160"\w* \w to|strong="G2532"\w* \w inherit|strong="G2816"\w* eternal \w life|strong="G2222"\w*?” +\p +\v 26 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \wj “\+w What|strong="G5101"\+w* \+w is|strong="G3588"\+w* \+w written|strong="G1125"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w law|strong="G3551"\+w*? \+w How|strong="G4459"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G1722"\+w* \+w read|strong="G1125"\+w* \+w it|strong="G1161"\+w*?” \wj* +\p +\v 27 \w He|strong="G2532"\w* \w answered|strong="G3004"\w*, “\w You|strong="G4771"\w* \w shall|strong="G2532"\w* love \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w your|strong="G3650"\w* \w God|strong="G2316"\w* \w with|strong="G1722"\w* \w all|strong="G3650"\w* \w your|strong="G3650"\w* \w heart|strong="G2588"\w*, \w with|strong="G1722"\w* \w all|strong="G3650"\w* \w your|strong="G3650"\w* \w soul|strong="G5590"\w*, \w with|strong="G1722"\w* \w all|strong="G3650"\w* \w your|strong="G3650"\w* \w strength|strong="G2479"\w*, \w and|strong="G2532"\w* \w with|strong="G1722"\w* \w all|strong="G3650"\w* \w your|strong="G3650"\w* \w mind|strong="G1271"\w*;\x + \xo 10:27 \xt Deuteronomy 6:5\x* \w and|strong="G2532"\w* \w your|strong="G3650"\w* \w neighbor|strong="G4139"\w* \w as|strong="G5613"\w* \w yourself|strong="G4572"\w*.”\x + \xo 10:27 \xt Leviticus 19:18\x* +\p +\v 28 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G4160"\w*, \wj “\+w You|strong="G3004"\+w* \+w have|strong="G2532"\+w* \+w answered|strong="G3004"\+w* \+w correctly|strong="G3723"\+w*. \+w Do|strong="G4160"\+w* \+w this|strong="G3778"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G3004"\+w* \+w will|strong="G2532"\+w* \+w live|strong="G2198"\+w*.”\wj* +\p +\v 29 \w But|strong="G1161"\w* \w he|strong="G2532"\w*, \w desiring|strong="G2309"\w* \w to|strong="G4314"\w* \w justify|strong="G1344"\w* \w himself|strong="G1438"\w*, \w asked|strong="G3004"\w* \w Jesus|strong="G2424"\w*, “\w Who|strong="G5101"\w* \w is|strong="G1510"\w* \w my|strong="G1473"\w* \w neighbor|strong="G4139"\w*?” +\p +\v 30 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w*, \wj “\+w A|strong="G2532"\+w* \+w certain|strong="G5100"\+w* \+w man|strong="G5100"\+w* \+w was|strong="G3588"\+w* \+w going|strong="G2597"\+w* \+w down|strong="G2597"\+w* \+w from|strong="G2597"\+w* \+w Jerusalem|strong="G2419"\+w* \+w to|strong="G1519"\+w* \+w Jericho|strong="G2410"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w fell|strong="G2597"\+w* \+w among|strong="G1519"\+w* \+w robbers|strong="G3027"\+w*, \+w who|strong="G3739"\+w* \+w both|strong="G2532"\+w* \+w stripped|strong="G1562"\+w* \+w him|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w beat|strong="G4127"\+w* \+w him|strong="G3588"\+w*, \+w and|strong="G2532"\+w* departed, \+w leaving|strong="G2007"\+w* \+w him|strong="G3588"\+w* \+w half|strong="G2253"\+w* \+w dead|strong="G2253"\+w*. \wj* +\v 31 \wj \+w By|strong="G1722"\+w* \+w chance|strong="G4795"\+w* \+w a|strong="G2532"\+w* \+w certain|strong="G5100"\+w* \+w priest|strong="G2409"\+w* \+w was|strong="G3588"\+w* \+w going|strong="G2597"\+w* \+w down|strong="G2597"\+w* \+w that|strong="G3588"\+w* \+w way|strong="G3598"\+w*. \+w When|strong="G1161"\+w* \+w he|strong="G2532"\+w* \+w saw|strong="G3708"\+w* \+w him|strong="G3588"\+w*, \+w he|strong="G2532"\+w* \+w passed|strong="G3588"\+w* \+w by|strong="G1722"\+w* \+w on|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w other|strong="G1161"\+w* \+w side|strong="G3598"\+w*. \wj* +\v 32 \wj \+w In|strong="G2596"\+w* \+w the|strong="G2532"\+w* \+w same|strong="G3668"\+w* \+w way|strong="G3668"\+w* \+w a|strong="G1096"\+w* \+w Levite|strong="G3019"\+w* \+w also|strong="G2532"\+w*, \+w when|strong="G1161"\+w* \+w he|strong="G2532"\+w* \+w came|strong="G2064"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w place|strong="G5117"\+w* \+w and|strong="G2532"\+w* \+w saw|strong="G3708"\+w* \+w him|strong="G3588"\+w*, \+w passed|strong="G3588"\+w* \+w by|strong="G2596"\+w* \+w on|strong="G2596"\+w* \+w the|strong="G2532"\+w* \+w other|strong="G1161"\+w* side. \wj* +\v 33 \wj \+w But|strong="G1161"\+w* \+w a|strong="G2532"\+w* \+w certain|strong="G5100"\+w* \+w Samaritan|strong="G4541"\+w*, \+w as|strong="G1161"\+w* \+w he|strong="G2532"\+w* traveled, \+w came|strong="G2064"\+w* \+w where|strong="G2596"\+w* \+w he|strong="G2532"\+w* \+w was|strong="G2532"\+w*. \+w When|strong="G1161"\+w* \+w he|strong="G2532"\+w* \+w saw|strong="G3708"\+w* \+w him|strong="G3708"\+w*, \+w he|strong="G2532"\+w* \+w was|strong="G2532"\+w* \+w moved|strong="G4697"\+w* \+w with|strong="G2532"\+w* \+w compassion|strong="G4697"\+w*, \wj* +\v 34 \wj \+w came|strong="G4334"\+w* \+w to|strong="G1519"\+w* \+w him|strong="G3588"\+w*, \+w and|strong="G2532"\+w* bound \+w up|strong="G1519"\+w* \+w his|strong="G1519"\+w* \+w wounds|strong="G5134"\+w*, \+w pouring|strong="G2022"\+w* \+w on|strong="G1909"\+w* \+w oil|strong="G1637"\+w* \+w and|strong="G2532"\+w* \+w wine|strong="G3631"\+w*. \+w He|strong="G2532"\+w* \+w set|strong="G1913"\+w* \+w him|strong="G3588"\+w* \+w on|strong="G1909"\+w* \+w his|strong="G1519"\+w* \+w own|strong="G2398"\+w* \+w animal|strong="G2934"\+w*, \+w brought|strong="G1161"\+w* \+w him|strong="G3588"\+w* \+w to|strong="G1519"\+w* \+w an|strong="G2532"\+w* \+w inn|strong="G3829"\+w*, \+w and|strong="G2532"\+w* \+w took|strong="G2532"\+w* \+w care|strong="G1959"\+w* \+w of|strong="G2532"\+w* \+w him|strong="G3588"\+w*. \wj* +\v 35 \wj \+w On|strong="G1909"\+w* \+w the|strong="G1722"\+w* next \+w day|strong="G3588"\+w*, \+w when|strong="G2532"\+w* \+w he|strong="G2532"\+w* departed, \+w he|strong="G2532"\+w* \+w took|strong="G2532"\+w* \+w out|strong="G1544"\+w* \+w two|strong="G1417"\+w* \+w denarii|strong="G1220"\+w*, \+w gave|strong="G1325"\+w* \+w them|strong="G3588"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G1722"\+w* host, \+w and|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w*, ‘\+w Take|strong="G1544"\+w* \+w care|strong="G1959"\+w* \+w of|strong="G2532"\+w* \+w him|strong="G3588"\+w*. \+w Whatever|strong="G3739"\+w* \+w you|strong="G4771"\+w* \+w spend|strong="G4325"\+w* \+w beyond|strong="G1909"\+w* \+w that|strong="G3739"\+w*, \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* repay \+w you|strong="G4771"\+w* \+w when|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w return|strong="G1880"\+w*.’ \wj* +\v 36 \wj \+w Now|strong="G1096"\+w* \+w which|strong="G3588"\+w* \+w of|strong="G3588"\+w* \+w these|strong="G3778"\+w* \+w three|strong="G5140"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G4771"\+w* \+w think|strong="G1380"\+w* \+w seemed|strong="G1380"\+w* \+w to|strong="G1519"\+w* \+w be|strong="G1096"\+w* \+w a|strong="G1096"\+w* \+w neighbor|strong="G4139"\+w* \+w to|strong="G1519"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G5101"\+w* \+w fell|strong="G1096"\+w* \+w among|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w robbers|strong="G3027"\+w*?”\wj* +\p +\v 37 \w He|strong="G2532"\w* \w said|strong="G3004"\w*, “\w He|strong="G2532"\w* \w who|strong="G3588"\w* \w showed|strong="G4160"\w* \w mercy|strong="G1656"\w* \w on|strong="G4198"\w* \w him|strong="G3588"\w*.” +\p \w Then|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Go|strong="G4198"\+w* \+w and|strong="G2532"\+w* \+w do|strong="G4160"\+w* \+w likewise|strong="G3668"\+w*.”\wj* +\p +\v 38 \w As|strong="G1519"\w* \w they|strong="G2532"\w* \w went|strong="G4198"\w* \w on|strong="G1722"\w* \w their|strong="G1438"\w* \w way|strong="G4198"\w*, \w he|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w a|strong="G1096"\w* \w certain|strong="G5100"\w* \w village|strong="G2968"\w*, \w and|strong="G2532"\w* \w a|strong="G1096"\w* \w certain|strong="G5100"\w* \w woman|strong="G1135"\w* \w named|strong="G3686"\w* \w Martha|strong="G3136"\w* \w received|strong="G5264"\w* \w him|strong="G3588"\w* \w into|strong="G1519"\w* \w her|strong="G1438"\w* \w house|strong="G3614"\w*. +\v 39 \w She|strong="G2532"\w* \w had|strong="G2424"\w* \w a|strong="G2532"\w* sister \w called|strong="G2564"\w* \w Mary|strong="G3137"\w*, \w who|strong="G3739"\w* \w also|strong="G2532"\w* \w sat|strong="G3869"\w* \w at|strong="G4314"\w* \w Jesus|strong="G2424"\w*’ \w feet|strong="G4228"\w* \w and|strong="G2532"\w* heard \w his|strong="G2532"\w* \w word|strong="G3056"\w*. +\v 40 \w But|strong="G1161"\w* \w Martha|strong="G3136"\w* \w was|strong="G3588"\w* \w distracted|strong="G4049"\w* \w with|strong="G4012"\w* \w much|strong="G4183"\w* \w serving|strong="G1247"\w*, \w and|strong="G1161"\w* \w she|strong="G1161"\w* \w came|strong="G2186"\w* \w up|strong="G2186"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w*, \w and|strong="G1161"\w* \w said|strong="G3004"\w*, “\w Lord|strong="G2962"\w*, don’\w t|strong="G3588"\w* \w you|strong="G4771"\w* \w care|strong="G3199"\w* \w that|strong="G3754"\w* \w my|strong="G1473"\w* sister \w left|strong="G2641"\w* \w me|strong="G1473"\w* \w to|strong="G2443"\w* \w serve|strong="G1247"\w* \w alone|strong="G3441"\w*? \w Ask|strong="G3004"\w* \w her|strong="G3754"\w* \w therefore|strong="G3767"\w* \w to|strong="G2443"\w* \w help|strong="G4878"\w* \w me|strong="G1473"\w*.” +\p +\v 41 \w Jesus|strong="G3004"\w* \w answered|strong="G3004"\w* \w her|strong="G3588"\w*, \wj “\+w Martha|strong="G3136"\+w*, \+w Martha|strong="G3136"\+w*, \+w you|strong="G3004"\+w* \+w are|strong="G3588"\+w* \+w anxious|strong="G3309"\+w* \+w and|strong="G2532"\+w* \+w troubled|strong="G2350"\+w* \+w about|strong="G4012"\+w* \+w many|strong="G4183"\+w* \+w things|strong="G3588"\+w*, \wj* +\v 42 \wj \+w but|strong="G1161"\+w* \+w one|strong="G1520"\+w* \+w thing|strong="G1520"\+w* \+w is|strong="G1510"\+w* \+w needed|strong="G5532"\+w*. \+w Mary|strong="G3137"\+w* \+w has|strong="G3748"\+w* \+w chosen|strong="G1586"\+w* \+w the|strong="G1161"\+w* \+w good|strong="G3756"\+w* \+w part|strong="G3310"\+w*, \+w which|strong="G3588"\+w* \+w will|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G1510"\+w* taken away \+w from|strong="G3756"\+w* \+w her|strong="G3137"\+w*.”\wj* +\c 11 +\p +\v 1 \w When|strong="G5613"\w* \w he|strong="G2532"\w* \w finished|strong="G1096"\w* \w praying|strong="G4336"\w* \w in|strong="G1722"\w* \w a|strong="G1096"\w* \w certain|strong="G5100"\w* \w place|strong="G5117"\w*, \w one|strong="G5100"\w* \w of|strong="G2532"\w* \w his|strong="G1722"\w* \w disciples|strong="G3101"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w Lord|strong="G2962"\w*, \w teach|strong="G1321"\w* \w us|strong="G3004"\w* \w to|strong="G4314"\w* \w pray|strong="G4336"\w*, \w just|strong="G2531"\w* \w as|strong="G5613"\w* \w John|strong="G2491"\w* \w also|strong="G2532"\w* \w taught|strong="G1321"\w* \w his|strong="G1722"\w* \w disciples|strong="G3101"\w*.” +\p +\v 2 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w When|strong="G3752"\+w* \+w you|strong="G4771"\+w* \+w pray|strong="G4336"\+w*, \+w say|strong="G3004"\+w*,\wj* +\q1 \wj ‘\+w Our|strong="G1161"\+w* \+w Father|strong="G3962"\+w* \+w in|strong="G3004"\+w* heaven,\wj* +\q2 \wj \+w may|strong="G3004"\+w* \+w your|strong="G3588"\+w* \+w name|strong="G3686"\+w* \+w be|strong="G3588"\+w* kept holy.\wj* +\q1 \wj \+w May|strong="G3004"\+w* \+w your|strong="G3588"\+w* Kingdom \+w come|strong="G2064"\+w*.\wj* +\q2 \wj \+w May|strong="G3004"\+w* \+w your|strong="G3588"\+w* \+w will|strong="G2064"\+w* \+w be|strong="G3588"\+w* done \+w on|strong="G1161"\+w* earth, \+w as|strong="G1161"\+w* \+w it|strong="G1161"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G3004"\+w* heaven.\wj* +\q1 +\v 3 \wj \+w Give|strong="G1325"\+w* \+w us|strong="G1325"\+w* \+w day|strong="G2250"\+w* \+w by|strong="G2596"\+w* \+w day|strong="G2250"\+w* \+w our|strong="G2596"\+w* \+w daily|strong="G2250"\+w* bread.\wj* +\q1 +\v 4 \wj Forgive \+w us|strong="G1519"\+w* \+w our|strong="G2532"\+w* sins,\wj* +\q2 \wj \+w for|strong="G1063"\+w* \+w we|strong="G2249"\+w* \+w ourselves|strong="G2249"\+w* \+w also|strong="G2532"\+w* forgive \+w everyone|strong="G3956"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w indebted|strong="G3784"\+w* \+w to|strong="G1519"\+w* \+w us|strong="G1519"\+w*. \wj* +\q1 \wj \+w Bring|strong="G1533"\+w* \+w us|strong="G1519"\+w* \+w not|strong="G3361"\+w* \+w into|strong="G1519"\+w* \+w temptation|strong="G3986"\+w*,\wj* +\q2 \wj \+w but|strong="G2532"\+w* deliver \+w us|strong="G1519"\+w* \+w from|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w evil|strong="G2532"\+w* \+w one|strong="G3956"\+w*.’”\wj* +\p +\v 5 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G1438"\w*, \wj “\+w Which|strong="G5101"\+w* \+w of|strong="G1537"\+w* \+w you|strong="G5210"\+w*, \+w if|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w go|strong="G4198"\+w* \+w to|strong="G4314"\+w* \+w a|strong="G2192"\+w* \+w friend|strong="G5384"\+w* \+w at|strong="G4314"\+w* \+w midnight|strong="G3317"\+w* \+w and|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w him|strong="G2532"\+w*, ‘\+w Friend|strong="G5384"\+w*, \+w lend|strong="G5531"\+w* \+w me|strong="G1473"\+w* \+w three|strong="G5140"\+w* loaves \+w of|strong="G1537"\+w* bread, \wj* +\v 6 \wj \+w for|strong="G4314"\+w* \+w a|strong="G2192"\+w* \+w friend|strong="G5384"\+w* \+w of|strong="G1537"\+w* \+w mine|strong="G1473"\+w* \+w has|strong="G2192"\+w* \+w come|strong="G3854"\+w* \+w to|strong="G4314"\+w* \+w me|strong="G1473"\+w* \+w from|strong="G1537"\+w* \+w a|strong="G2192"\+w* \+w journey|strong="G3598"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G2192"\+w* \+w nothing|strong="G3756"\+w* \+w to|strong="G4314"\+w* \+w set|strong="G3908"\+w* \+w before|strong="G4314"\+w* \+w him|strong="G3739"\+w*,’ \wj* +\v 7 \wj \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w from|strong="G2532"\+w* \+w within|strong="G2081"\+w* \+w will|strong="G1510"\+w* answer \+w and|strong="G2532"\+w* \+w say|strong="G3004"\+w*, ‘Don’\+w t|strong="G3588"\+w* \+w bother|strong="G2873"\+w* \+w me|strong="G1325"\+w*. \+w The|strong="G2532"\+w* \+w door|strong="G2374"\+w* \+w is|strong="G1510"\+w* \+w now|strong="G2532"\+w* \+w shut|strong="G2808"\+w*, \+w and|strong="G2532"\+w* \+w my|strong="G1325"\+w* \+w children|strong="G3813"\+w* \+w are|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1325"\+w* \+w in|strong="G1519"\+w* \+w bed|strong="G2845"\+w*. \+w I|strong="G1473"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w get|strong="G2532"\+w* \+w up|strong="G1519"\+w* \+w and|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w it|strong="G2532"\+w* \+w to|strong="G1519"\+w* \+w you|strong="G4771"\+w*’? \wj* +\v 8 \wj \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w although|strong="G5210"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w rise|strong="G1453"\+w* \+w and|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w it|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w because|strong="G1223"\+w* \+w he|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w his|strong="G1223"\+w* \+w friend|strong="G5384"\+w*, \+w yet|strong="G2532"\+w* \+w because|strong="G1223"\+w* \+w of|strong="G1223"\+w* \+w his|strong="G1223"\+w* persistence, \+w he|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w get|strong="G1453"\+w* \+w up|strong="G1453"\+w* \+w and|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w him|strong="G3588"\+w* \+w as|strong="G3745"\+w* \+w many|strong="G3745"\+w* \+w as|strong="G3745"\+w* \+w he|strong="G2532"\+w* \+w needs|strong="G5535"\+w*.\wj* +\p +\v 9 \wj “\+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, keep \+w asking|strong="G3004"\+w*, \+w and|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w given|strong="G1325"\+w* \+w you|strong="G5210"\+w*. Keep \+w seeking|strong="G2212"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w find|strong="G2147"\+w*. Keep \+w knocking|strong="G2925"\+w*, \+w and|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* opened \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 10 \wj \+w For|strong="G1063"\+w* \+w everyone|strong="G3956"\+w* \+w who|strong="G3588"\+w* asks \+w receives|strong="G2983"\+w*. \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w seeks|strong="G2212"\+w* \+w finds|strong="G2147"\+w*. \+w To|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w knocks|strong="G2925"\+w* \+w it|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* opened.\wj* +\p +\v 11 \wj “\+w Which|strong="G3588"\+w* \+w of|strong="G1537"\+w* \+w you|strong="G5210"\+w* \+w fathers|strong="G3962"\+w*, \+w if|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w son|strong="G5207"\+w* asks \+w for|strong="G1161"\+w* bread, \+w will|strong="G5101"\+w* \+w give|strong="G1929"\+w* \+w him|strong="G3588"\+w* \+w a|strong="G2532"\+w* \+w stone|strong="G3037"\+w*? \+w Or|strong="G2228"\+w* \+w if|strong="G2532"\+w* \+w he|strong="G2532"\+w* asks \+w for|strong="G1161"\+w* \+w a|strong="G2532"\+w* \+w fish|strong="G2486"\+w*, \+w he|strong="G2532"\+w* won’\+w t|strong="G3588"\+w* \+w give|strong="G1929"\+w* \+w him|strong="G3588"\+w* \+w a|strong="G2532"\+w* \+w snake|strong="G3789"\+w* \+w instead|strong="G1161"\+w* \+w of|strong="G1537"\+w* \+w a|strong="G2532"\+w* \+w fish|strong="G2486"\+w*, \+w will|strong="G5101"\+w* \+w he|strong="G2532"\+w*? \wj* +\v 12 \wj \+w Or|strong="G2228"\+w* \+w if|strong="G2532"\+w* \+w he|strong="G2532"\+w* asks \+w for|strong="G2532"\+w* \+w an|strong="G2532"\+w* \+w egg|strong="G5609"\+w*, \+w he|strong="G2532"\+w* won’t \+w give|strong="G1929"\+w* \+w him|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w scorpion|strong="G4651"\+w*, \+w will|strong="G2532"\+w* \+w he|strong="G2532"\+w*? \wj* +\v 13 \wj \+w If|strong="G1487"\+w* \+w you|strong="G5210"\+w* \+w then|strong="G3767"\+w*, \+w being|strong="G5225"\+w* \+w evil|strong="G4190"\+w*, \+w know|strong="G1492"\+w* \+w how|strong="G4214"\+w* \+w to|strong="G1325"\+w* \+w give|strong="G1325"\+w* \+w good|strong="G3588"\+w* \+w gifts|strong="G1390"\+w* \+w to|strong="G1325"\+w* \+w your|strong="G1487"\+w* \+w children|strong="G5043"\+w*, \+w how|strong="G4214"\+w* \+w much|strong="G4214"\+w* \+w more|strong="G3123"\+w* \+w will|strong="G3962"\+w* \+w your|strong="G1487"\+w* \+w heavenly|strong="G3772"\+w* \+w Father|strong="G3962"\+w* \+w give|strong="G1325"\+w* \+w the|strong="G1537"\+w* \+w Holy|strong="G4151"\+w* \+w Spirit|strong="G4151"\+w* \+w to|strong="G1325"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* ask \+w him|strong="G3588"\+w*?”\wj* +\p +\v 14 \w He|strong="G2532"\w* \w was|strong="G1510"\w* \w casting|strong="G1544"\w* \w out|strong="G1831"\w* \w a|strong="G1096"\w* \w demon|strong="G1140"\w*, \w and|strong="G2532"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w mute|strong="G2974"\w*. \w When|strong="G1161"\w* \w the|strong="G2532"\w* \w demon|strong="G1140"\w* \w had|strong="G2532"\w* \w gone|strong="G1831"\w* \w out|strong="G1831"\w*, \w the|strong="G2532"\w* \w mute|strong="G2974"\w* \w man|strong="G2974"\w* \w spoke|strong="G2980"\w*; \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w* \w marveled|strong="G2296"\w*. +\v 15 \w But|strong="G1161"\w* \w some|strong="G5100"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w* \w said|strong="G3004"\w*, “\w He|strong="G1161"\w* \w casts|strong="G1544"\w* \w out|strong="G1537"\w* \w demons|strong="G1140"\w* \w by|strong="G1722"\w* Beelzebul, \w the|strong="G1722"\w* prince \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w demons|strong="G1140"\w*.” +\v 16 \w Others|strong="G2087"\w*, \w testing|strong="G3985"\w* \w him|strong="G1537"\w*, \w sought|strong="G2212"\w* \w from|strong="G1537"\w* \w him|strong="G1537"\w* \w a|strong="G1161"\w* \w sign|strong="G4592"\w* \w from|strong="G1537"\w* \w heaven|strong="G3772"\w*. +\v 17 \w But|strong="G1161"\w* \w he|strong="G2532"\w*, \w knowing|strong="G1492"\w* \w their|strong="G1438"\w* \w thoughts|strong="G1270"\w*, \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Every|strong="G3956"\+w* kingdom \+w divided|strong="G1266"\+w* \+w against|strong="G1909"\+w* \+w itself|strong="G1438"\+w* \+w is|strong="G3588"\+w* \+w brought|strong="G1161"\+w* \+w to|strong="G2532"\+w* desolation. \+w A|strong="G2532"\+w* \+w house|strong="G3624"\+w* \+w divided|strong="G1266"\+w* \+w against|strong="G1909"\+w* \+w itself|strong="G1438"\+w* \+w falls|strong="G4098"\+w*. \wj* +\v 18 \wj \+w If|strong="G1487"\+w* \+w Satan|strong="G4567"\+w* \+w also|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w divided|strong="G1266"\+w* \+w against|strong="G1909"\+w* \+w himself|strong="G1438"\+w*, \+w how|strong="G4459"\+w* \+w will|strong="G2532"\+w* \+w his|strong="G1438"\+w* kingdom \+w stand|strong="G2476"\+w*? \+w For|strong="G3754"\+w* \+w you|strong="G1487"\+w* \+w say|strong="G3004"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w cast|strong="G1544"\+w* \+w out|strong="G1544"\+w* \+w demons|strong="G1140"\+w* \+w by|strong="G1722"\+w* Beelzebul. \wj* +\v 19 \wj \+w But|strong="G1161"\+w* \+w if|strong="G1487"\+w* \+w I|strong="G1473"\+w* \+w cast|strong="G1544"\+w* \+w out|strong="G1544"\+w* \+w demons|strong="G1140"\+w* \+w by|strong="G1223"\+w* Beelzebul, \+w by|strong="G1223"\+w* \+w whom|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w your|strong="G1223"\+w* \+w children|strong="G5207"\+w* \+w cast|strong="G1544"\+w* \+w them|strong="G3588"\+w* \+w out|strong="G1544"\+w*? \+w Therefore|strong="G1223"\+w* \+w they|strong="G1161"\+w* \+w will|strong="G5101"\+w* \+w be|strong="G1510"\+w* \+w your|strong="G1223"\+w* \+w judges|strong="G2923"\+w*. \wj* +\v 20 \wj \+w But|strong="G1161"\+w* \+w if|strong="G1487"\+w* \+w I|strong="G1161"\+w* \+w by|strong="G1722"\+w* \+w God|strong="G2316"\+w*’s \+w finger|strong="G1147"\+w* \+w cast|strong="G1544"\+w* \+w out|strong="G1544"\+w* \+w demons|strong="G1140"\+w*, \+w then|strong="G1161"\+w* \+w God|strong="G2316"\+w*’s Kingdom \+w has|strong="G2316"\+w* \+w come|strong="G5348"\+w* \+w to|strong="G1909"\+w* \+w you|strong="G5210"\+w*.\wj* +\p +\v 21 \wj “\+w When|strong="G3752"\+w* \+w the|strong="G1722"\+w* \+w strong|strong="G2478"\+w* \+w man|strong="G2478"\+w*, \+w fully|strong="G2528"\+w* \+w armed|strong="G2528"\+w*, \+w guards|strong="G5442"\+w* \+w his|strong="G1438"\+w* \+w own|strong="G1438"\+w* dwelling, \+w his|strong="G1438"\+w* goods \+w are|strong="G1510"\+w* \+w safe|strong="G1722"\+w*. \wj* +\v 22 \wj \+w But|strong="G1161"\+w* \+w when|strong="G1161"\+w* \+w someone|strong="G3739"\+w* \+w stronger|strong="G2478"\+w* \+w attacks|strong="G1904"\+w* \+w him|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w overcomes|strong="G3528"\+w* \+w him|strong="G3588"\+w*, \+w he|strong="G2532"\+w* takes \+w from|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w his|strong="G1909"\+w* whole \+w armor|strong="G3833"\+w* \+w in|strong="G1909"\+w* \+w which|strong="G3739"\+w* \+w he|strong="G2532"\+w* \+w trusted|strong="G3982"\+w*, \+w and|strong="G2532"\+w* divides \+w his|strong="G1909"\+w* \+w plunder|strong="G4661"\+w*. \wj* +\p +\v 23 \wj “\+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3361"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1473"\+w* \+w is|strong="G1510"\+w* \+w against|strong="G2596"\+w* \+w me|strong="G1473"\+w*. \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* doesn’\+w t|strong="G3588"\+w* \+w gather|strong="G4863"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1473"\+w* \+w scatters|strong="G4650"\+w*.\wj* +\p +\v 24 \wj \+w The|strong="G2532"\+w* unclean \+w spirit|strong="G4151"\+w*, \+w when|strong="G3752"\+w* \+w he|strong="G2532"\+w* \+w has|strong="G4151"\+w* \+w gone|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w of|strong="G4151"\+w* \+w the|strong="G2532"\+w* \+w man|strong="G3361"\+w*, \+w passes|strong="G1330"\+w* \+w through|strong="G1223"\+w* dry \+w places|strong="G5117"\+w*, \+w seeking|strong="G2212"\+w* rest; \+w and|strong="G2532"\+w* \+w finding|strong="G2147"\+w* \+w none|strong="G3361"\+w*, \+w he|strong="G2532"\+w* \+w says|strong="G3004"\+w*, ‘\+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w turn|strong="G5290"\+w* \+w back|strong="G5290"\+w* \+w to|strong="G1519"\+w* \+w my|strong="G2212"\+w* \+w house|strong="G3624"\+w* \+w from|strong="G2532"\+w* \+w which|strong="G3588"\+w* \+w I|strong="G1473"\+w* \+w came|strong="G1831"\+w* \+w out|strong="G1831"\+w*.’ \wj* +\v 25 \wj \+w When|strong="G2532"\+w* \+w he|strong="G2532"\+w* returns, \+w he|strong="G2532"\+w* \+w finds|strong="G2147"\+w* \+w it|strong="G2532"\+w* \+w swept|strong="G4563"\+w* \+w and|strong="G2532"\+w* \+w put|strong="G2532"\+w* \+w in|strong="G2532"\+w* \+w order|strong="G2885"\+w*. \wj* +\v 26 \wj \+w Then|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w goes|strong="G4198"\+w* \+w and|strong="G2532"\+w* \+w takes|strong="G3880"\+w* \+w seven|strong="G2033"\+w* \+w other|strong="G2087"\+w* \+w spirits|strong="G4151"\+w* \+w more|strong="G2532"\+w* \+w evil|strong="G4190"\+w* \+w than|strong="G2532"\+w* \+w himself|strong="G1438"\+w*, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w enter|strong="G1525"\+w* \+w in|strong="G1525"\+w* \+w and|strong="G2532"\+w* \+w dwell|strong="G2730"\+w* \+w there|strong="G1563"\+w*. \+w The|strong="G2532"\+w* \+w last|strong="G2078"\+w* state \+w of|strong="G4151"\+w* \+w that|strong="G3588"\+w* \+w man|strong="G4413"\+w* \+w becomes|strong="G1096"\+w* \+w worse|strong="G5501"\+w* \+w than|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w first|strong="G4413"\+w*.”\wj* +\p +\v 27 \w It|strong="G2532"\w* \w came|strong="G1096"\w* \w to|strong="G2532"\w* \w pass|strong="G1096"\w*, \w as|strong="G1722"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w a|strong="G1096"\w* \w certain|strong="G5100"\w* \w woman|strong="G1135"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w multitude|strong="G3793"\w* \w lifted|strong="G1869"\w* \w up|strong="G1869"\w* \w her|strong="G1869"\w* \w voice|strong="G5456"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Blessed|strong="G3107"\w* \w is|strong="G3588"\w* \w the|strong="G1722"\w* \w womb|strong="G2836"\w* \w that|strong="G3739"\w* bore \w you|strong="G4771"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w breasts|strong="G3149"\w* \w which|strong="G3739"\w* \w nursed|strong="G2337"\w* \w you|strong="G4771"\w*!” +\p +\v 28 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w On|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w contrary|strong="G2316"\+w*, \+w blessed|strong="G3107"\+w* \+w are|strong="G3588"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* hear \+w the|strong="G2532"\+w* \+w word|strong="G3056"\+w* \+w of|strong="G3056"\+w* \+w God|strong="G2316"\+w*, \+w and|strong="G2532"\+w* \+w keep|strong="G5442"\+w* \+w it|strong="G2532"\+w*.”\wj* +\p +\v 29 \w When|strong="G1161"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w* \w were|strong="G1510"\w* \w gathering|strong="G3793"\w* \w together|strong="G1865"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \w he|strong="G2532"\w* \w began|strong="G1161"\w* \w to|strong="G2532"\w* \w say|strong="G3004"\w*, \wj “\+w This|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w an|strong="G2532"\+w* \+w evil|strong="G4190"\+w* \+w generation|strong="G1074"\+w*. \+w It|strong="G2532"\+w* \+w seeks|strong="G2212"\+w* \+w after|strong="G1161"\+w* \+w a|strong="G2532"\+w* \+w sign|strong="G4592"\+w*. \+w No|strong="G3756"\+w* \+w sign|strong="G4592"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w given|strong="G1325"\+w* \+w to|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w but|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w sign|strong="G4592"\+w* \+w of|strong="G2532"\+w* \+w Jonah|strong="G2495"\+w* \+w the|strong="G2532"\+w* prophet. \wj* +\v 30 \wj \+w For|strong="G1063"\+w* \+w even|strong="G2532"\+w* \+w as|strong="G2531"\+w* \+w Jonah|strong="G2495"\+w* \+w became|strong="G1096"\+w* \+w a|strong="G1096"\+w* \+w sign|strong="G4592"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Ninevites|strong="G3536"\+w*, \+w so|strong="G3779"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3778"\+w* \+w will|strong="G1510"\+w* \+w also|strong="G2532"\+w* \+w be|strong="G1096"\+w* \+w to|strong="G2532"\+w* \+w this|strong="G3778"\+w* \+w generation|strong="G1074"\+w*. \wj* +\v 31 \wj \+w The|strong="G1722"\+w* Queen \+w of|strong="G1537"\+w* \+w the|strong="G1722"\+w* \+w South|strong="G3558"\+w* \+w will|strong="G2532"\+w* \+w rise|strong="G1453"\+w* \+w up|strong="G1453"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w judgment|strong="G2920"\+w* \+w with|strong="G3326"\+w* \+w the|strong="G1722"\+w* \+w men|strong="G3778"\+w* \+w of|strong="G1537"\+w* \+w this|strong="G3778"\+w* \+w generation|strong="G1074"\+w* \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w condemn|strong="G2632"\+w* \+w them|strong="G3588"\+w*, \+w for|strong="G3754"\+w* \+w she|strong="G2532"\+w* \+w came|strong="G2064"\+w* \+w from|strong="G1537"\+w* \+w the|strong="G1722"\+w* \+w ends|strong="G4009"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1722"\+w* \+w earth|strong="G1093"\+w* \+w to|strong="G2532"\+w* hear \+w the|strong="G1722"\+w* \+w wisdom|strong="G4678"\+w* \+w of|strong="G1537"\+w* \+w Solomon|strong="G4672"\+w*; \+w and|strong="G2532"\+w* \+w behold|strong="G2400"\+w*, \+w one|strong="G1438"\+w* \+w greater|strong="G4183"\+w* \+w than|strong="G4183"\+w* \+w Solomon|strong="G4672"\+w* \+w is|strong="G3588"\+w* \+w here|strong="G5602"\+w*. \wj* +\v 32 \wj \+w The|strong="G1722"\+w* \+w men|strong="G3778"\+w* \+w of|strong="G2532"\+w* \+w Nineveh|strong="G3536"\+w* \+w will|strong="G2532"\+w* \+w stand|strong="G3778"\+w* \+w up|strong="G1519"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w judgment|strong="G2920"\+w* \+w with|strong="G3326"\+w* \+w this|strong="G3778"\+w* \+w generation|strong="G1074"\+w*, \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w condemn|strong="G2632"\+w* \+w it|strong="G2532"\+w*, \+w for|strong="G3754"\+w* \+w they|strong="G2532"\+w* \+w repented|strong="G3340"\+w* \+w at|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w preaching|strong="G2782"\+w* \+w of|strong="G2532"\+w* \+w Jonah|strong="G2495"\+w*; \+w and|strong="G2532"\+w* \+w behold|strong="G2400"\+w*, \+w one|strong="G1438"\+w* \+w greater|strong="G4183"\+w* \+w than|strong="G4183"\+w* \+w Jonah|strong="G2495"\+w* \+w is|strong="G3588"\+w* \+w here|strong="G5602"\+w*.\wj* +\p +\v 33 \wj “\+w No|strong="G3762"\+w* \+w one|strong="G3762"\+w*, \+w when|strong="G5259"\+w* \+w he|strong="G3588"\+w* \+w has|strong="G3762"\+w* lit \+w a|strong="G1519"\+w* \+w lamp|strong="G3088"\+w*, \+w puts|strong="G5087"\+w* \+w it|strong="G5087"\+w* \+w in|strong="G1519"\+w* \+w a|strong="G1519"\+w* \+w cellar|strong="G2926"\+w* \+w or|strong="G3761"\+w* \+w under|strong="G5259"\+w* \+w a|strong="G1519"\+w* \+w basket|strong="G3426"\+w*, \+w but|strong="G3762"\+w* \+w on|strong="G1909"\+w* \+w a|strong="G1519"\+w* stand, \+w that|strong="G2443"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w come|strong="G1531"\+w* \+w in|strong="G1519"\+w* \+w may|strong="G2443"\+w* see \+w the|strong="G1519"\+w* \+w light|strong="G5338"\+w*. \wj* +\v 34 \wj \+w The|strong="G2532"\+w* \+w lamp|strong="G3088"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w body|strong="G4983"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w eye|strong="G3788"\+w*. \+w Therefore|strong="G1161"\+w* \+w when|strong="G3752"\+w* \+w your|strong="G3650"\+w* \+w eye|strong="G3788"\+w* \+w is|strong="G1510"\+w* \+w good|strong="G3588"\+w*, \+w your|strong="G3650"\+w* \+w whole|strong="G3650"\+w* \+w body|strong="G4983"\+w* \+w is|strong="G1510"\+w* \+w also|strong="G2532"\+w* \+w full|strong="G5460"\+w* \+w of|strong="G2532"\+w* \+w light|strong="G3088"\+w*; \+w but|strong="G1161"\+w* \+w when|strong="G3752"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w evil|strong="G4190"\+w*, \+w your|strong="G3650"\+w* \+w body|strong="G4983"\+w* \+w also|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w full|strong="G5460"\+w* \+w of|strong="G2532"\+w* \+w darkness|strong="G4652"\+w*. \wj* +\v 35 \wj \+w Therefore|strong="G3767"\+w* \+w see|strong="G4648"\+w* whether \+w the|strong="G1722"\+w* \+w light|strong="G5457"\+w* \+w that|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w you|strong="G4771"\+w* isn’\+w t|strong="G3588"\+w* \+w darkness|strong="G4655"\+w*. \wj* +\v 36 \wj \+w If|strong="G1487"\+w* \+w therefore|strong="G3767"\+w* \+w your|strong="G3650"\+w* \+w whole|strong="G3650"\+w* \+w body|strong="G4983"\+w* \+w is|strong="G1510"\+w* \+w full|strong="G5460"\+w* \+w of|strong="G5100"\+w* \+w light|strong="G5461"\+w*, \+w having|strong="G2192"\+w* \+w no|strong="G3361"\+w* \+w part|strong="G3313"\+w* \+w dark|strong="G4652"\+w*, \+w it|strong="G1487"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w wholly|strong="G3650"\+w* \+w full|strong="G5460"\+w* \+w of|strong="G5100"\+w* \+w light|strong="G5461"\+w*, \+w as|strong="G5613"\+w* \+w when|strong="G3752"\+w* \+w the|strong="G3588"\+w* \+w lamp|strong="G3088"\+w* \+w with|strong="G2192"\+w* \+w its|strong="G3752"\+w* \+w bright|strong="G5460"\+w* shining gives \+w you|strong="G4771"\+w* \+w light|strong="G5461"\+w*.”\wj* +\p +\v 37 \w Now|strong="G1161"\w* \w as|strong="G1722"\w* \w he|strong="G1161"\w* \w spoke|strong="G2980"\w*, \w a|strong="G1722"\w* certain \w Pharisee|strong="G5330"\w* \w asked|strong="G2065"\w* \w him|strong="G3588"\w* \w to|strong="G1722"\w* dine \w with|strong="G1722"\w* \w him|strong="G3588"\w*. \w He|strong="G1161"\w* \w went|strong="G1525"\w* \w in|strong="G1722"\w* \w and|strong="G1161"\w* sat \w at|strong="G1722"\w* \w the|strong="G1722"\w* table. +\v 38 \w When|strong="G1161"\w* \w the|strong="G1161"\w* \w Pharisee|strong="G5330"\w* \w saw|strong="G3708"\w* \w it|strong="G3754"\w*, \w he|strong="G1161"\w* \w marveled|strong="G2296"\w* \w that|strong="G3754"\w* \w he|strong="G1161"\w* \w had|strong="G3588"\w* \w not|strong="G3756"\w* \w first|strong="G4413"\w* washed himself \w before|strong="G4253"\w* dinner. +\v 39 \w The|strong="G2532"\w* \w Lord|strong="G2962"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \wj “\+w Now|strong="G1161"\+w* \+w you|strong="G5210"\+w* \+w Pharisees|strong="G5330"\+w* \+w cleanse|strong="G2511"\+w* \+w the|strong="G2532"\+w* \+w outside|strong="G1855"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w cup|strong="G4221"\+w* \+w and|strong="G2532"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w platter|strong="G4094"\+w*, \+w but|strong="G1161"\+w* \+w your|strong="G2962"\+w* \+w inward|strong="G2081"\+w* \+w part|strong="G1161"\+w* \+w is|strong="G3588"\+w* \+w full|strong="G1073"\+w* \+w of|strong="G2532"\+w* extortion \+w and|strong="G2532"\+w* \+w wickedness|strong="G4189"\+w*. \wj* +\v 40 \wj \+w You|strong="G4160"\+w* \+w foolish|strong="G2532"\+w* ones, didn’\+w t|strong="G3588"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w made|strong="G4160"\+w* \+w the|strong="G2532"\+w* \+w outside|strong="G1855"\+w* \+w make|strong="G4160"\+w* \+w the|strong="G2532"\+w* \+w inside|strong="G2081"\+w* \+w also|strong="G2532"\+w*? \wj* +\v 41 \wj \+w But|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w for|strong="G2532"\+w* \+w gifts|strong="G1654"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* needy \+w those|strong="G3588"\+w* \+w things|strong="G3956"\+w* \+w which|strong="G3588"\+w* \+w are|strong="G1510"\+w* \+w within|strong="G1751"\+w*, \+w and|strong="G2532"\+w* \+w behold|strong="G2400"\+w*, \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w clean|strong="G2513"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 42 \wj \+w But|strong="G1161"\+w* \+w woe|strong="G3759"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w Pharisees|strong="G5330"\+w*! \+w For|strong="G3754"\+w* \+w you|strong="G5210"\+w* tithe \+w mint|strong="G2238"\+w* \+w and|strong="G2532"\+w* \+w rue|strong="G4076"\+w* \+w and|strong="G2532"\+w* \+w every|strong="G3956"\+w* \+w herb|strong="G3001"\+w*, \+w but|strong="G1161"\+w* \+w you|strong="G5210"\+w* bypass \+w justice|strong="G2920"\+w* \+w and|strong="G2532"\+w* \+w God|strong="G2316"\+w*’s love. \+w You|strong="G5210"\+w* \+w ought|strong="G1163"\+w* \+w to|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w done|strong="G4160"\+w* \+w these|strong="G3778"\+w*, \+w and|strong="G2532"\+w* \+w not|strong="G3361"\+w* \+w to|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w left|strong="G2548"\+w* \+w the|strong="G2532"\+w* \+w other|strong="G1161"\+w* undone. \wj* +\v 43 \wj \+w Woe|strong="G3759"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w Pharisees|strong="G5330"\+w*! \+w For|strong="G3754"\+w* \+w you|strong="G5210"\+w* love \+w the|strong="G1722"\+w* best \+w seats|strong="G4410"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w synagogues|strong="G4864"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* greetings \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* marketplaces. \wj* +\v 44 \wj \+w Woe|strong="G3759"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*, scribes \+w and|strong="G2532"\+w* Pharisees, hypocrites! \+w For|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w like|strong="G5613"\+w* hidden \+w graves|strong="G3419"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w men|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w walk|strong="G4043"\+w* \+w over|strong="G1883"\+w* \+w them|strong="G3588"\+w* don’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w* \+w it|strong="G2532"\+w*.”\wj* +\p +\v 45 \w One|strong="G5100"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w lawyers|strong="G3544"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Teacher|strong="G1320"\w*, \w in|strong="G2532"\w* \w saying|strong="G3004"\w* \w this|strong="G3778"\w* \w you|strong="G3004"\w* \w insult|strong="G5195"\w* \w us|strong="G3004"\w* \w also|strong="G2532"\w*.” +\p +\v 46 \w He|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Woe|strong="G3759"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w lawyers|strong="G3544"\+w* \+w also|strong="G2532"\+w*! \+w For|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w load|strong="G5413"\+w* \+w men|strong="G3588"\+w* \+w with|strong="G2532"\+w* \+w burdens|strong="G5413"\+w* \+w that|strong="G3754"\+w* \+w are|strong="G3588"\+w* difficult \+w to|strong="G2532"\+w* carry, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w yourselves|strong="G4771"\+w* won’\+w t|strong="G3588"\+w* \+w even|strong="G2532"\+w* lift \+w one|strong="G1520"\+w* \+w finger|strong="G1147"\+w* \+w to|strong="G2532"\+w* help carry \+w those|strong="G3588"\+w* \+w burdens|strong="G5413"\+w*. \wj* +\v 47 \wj \+w Woe|strong="G3759"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*! \+w For|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w build|strong="G3618"\+w* \+w the|strong="G2532"\+w* \+w tombs|strong="G3419"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w prophets|strong="G4396"\+w*, \+w and|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w fathers|strong="G3962"\+w* killed \+w them|strong="G3588"\+w*. \wj* +\v 48 \wj \+w So|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w testify|strong="G3144"\+w* \+w and|strong="G2532"\+w* consent \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w works|strong="G2041"\+w* \+w of|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w fathers|strong="G3962"\+w*. \+w For|strong="G3754"\+w* \+w they|strong="G2532"\+w* killed \+w them|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w build|strong="G3618"\+w* \+w their|strong="G1438"\+w* tombs. \wj* +\v 49 \wj \+w Therefore|strong="G1223"\+w* \+w also|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w wisdom|strong="G4678"\+w* \+w of|strong="G1537"\+w* \+w God|strong="G2316"\+w* \+w said|strong="G3004"\+w*, ‘\+w I|strong="G2532"\+w* \+w will|strong="G2316"\+w* send \+w to|strong="G1519"\+w* \+w them|strong="G3588"\+w* \+w prophets|strong="G4396"\+w* \+w and|strong="G2532"\+w* apostles; \+w and|strong="G2532"\+w* \+w some|strong="G3588"\+w* \+w of|strong="G1537"\+w* \+w them|strong="G3588"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G2316"\+w* kill \+w and|strong="G2532"\+w* \+w persecute|strong="G1377"\+w*, \wj* +\v 50 \wj \+w that|strong="G2443"\+w* \+w the|strong="G3956"\+w* blood \+w of|strong="G3956"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G3956"\+w* \+w prophets|strong="G4396"\+w*, \+w which|strong="G3588"\+w* \+w was|strong="G3588"\+w* \+w shed|strong="G1632"\+w* \+w from|strong="G3588"\+w* \+w the|strong="G3956"\+w* \+w foundation|strong="G2602"\+w* \+w of|strong="G3956"\+w* \+w the|strong="G3956"\+w* \+w world|strong="G2889"\+w*, \+w may|strong="G2443"\+w* \+w be|strong="G3956"\+w* required \+w of|strong="G3956"\+w* \+w this|strong="G3778"\+w* \+w generation|strong="G1074"\+w*, \wj* +\v 51 \wj \+w from|strong="G2532"\+w* \+w the|strong="G2532"\+w* blood \+w of|strong="G2532"\+w* Abel \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* blood \+w of|strong="G2532"\+w* Zachariah, \+w who|strong="G3588"\+w* perished \+w between|strong="G3342"\+w* \+w the|strong="G2532"\+w* \+w altar|strong="G2379"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* sanctuary.’ \+w Yes|strong="G3483"\+w*, \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w it|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* required \+w of|strong="G2532"\+w* \+w this|strong="G3778"\+w* \+w generation|strong="G1074"\+w*. \wj* +\v 52 \wj \+w Woe|strong="G3759"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w lawyers|strong="G3544"\+w*! \+w For|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w took|strong="G2532"\+w* away \+w the|strong="G2532"\+w* \+w key|strong="G2807"\+w* \+w of|strong="G2532"\+w* \+w knowledge|strong="G1108"\+w*. \+w You|strong="G5210"\+w* didn’\+w t|strong="G3588"\+w* \+w enter|strong="G1525"\+w* \+w in|strong="G1525"\+w* \+w yourselves|strong="G4771"\+w*, \+w and|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w were|strong="G3588"\+w* \+w entering|strong="G1525"\+w* \+w in|strong="G1525"\+w*, \+w you|strong="G5210"\+w* \+w hindered|strong="G2967"\+w*.” \wj* +\p +\v 53 \w As|strong="G2532"\w* \w he|strong="G2532"\w* \w said|strong="G2532"\w* \w these|strong="G4012"\w* \w things|strong="G3588"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \w the|strong="G2532"\w* \w scribes|strong="G1122"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* began \w to|strong="G2532"\w* \w be|strong="G2532"\w* terribly angry, \w and|strong="G2532"\w* \w to|strong="G2532"\w* draw \w many|strong="G4183"\w* \w things|strong="G3588"\w* \w out|strong="G1831"\w* \w of|strong="G4012"\w* \w him|strong="G3588"\w*, +\v 54 \w lying|strong="G1748"\w* \w in|strong="G1537"\w* \w wait|strong="G1748"\w* \w for|strong="G1537"\w* \w him|strong="G3588"\w*, \w and|strong="G3588"\w* seeking \w to|strong="G5100"\w* \w catch|strong="G2340"\w* \w him|strong="G3588"\w* \w in|strong="G1537"\w* \w something|strong="G5100"\w* \w he|strong="G3588"\w* \w might|strong="G5100"\w* \w say|strong="G1537"\w*, \w that|strong="G3588"\w* \w they|strong="G3588"\w* \w might|strong="G5100"\w* accuse \w him|strong="G3588"\w*. +\c 12 +\p +\v 1 \w Meanwhile|strong="G1510"\w*, \w when|strong="G1722"\w* \w a|strong="G1722"\w* \w multitude|strong="G3793"\w* \w of|strong="G1722"\w* \w many|strong="G3461"\w* \w thousands|strong="G3461"\w* \w had|strong="G1510"\w* \w gathered|strong="G1996"\w* \w together|strong="G1996"\w*, \w so|strong="G5620"\w* much \w so|strong="G5620"\w* \w that|strong="G3739"\w* \w they|strong="G3588"\w* \w trampled|strong="G2662"\w* \w on|strong="G1722"\w* \w each|strong="G1438"\w* \w other|strong="G3739"\w*, \w he|strong="G3739"\w* began \w to|strong="G4314"\w* \w tell|strong="G3004"\w* \w his|strong="G1438"\w* \w disciples|strong="G3101"\w* \w first|strong="G4413"\w* \w of|strong="G1722"\w* \w all|strong="G1722"\w*, \wj “\+w Beware|strong="G4337"\+w* \+w of|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w yeast|strong="G2219"\+w* \+w of|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w Pharisees|strong="G5330"\+w*, \+w which|strong="G3739"\+w* \+w is|strong="G1510"\+w* \+w hypocrisy|strong="G5272"\+w*. \wj* +\v 2 \wj \+w But|strong="G1161"\+w* \+w there|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w nothing|strong="G3762"\+w* \+w covered|strong="G4780"\+w* \+w up|strong="G2532"\+w* \+w that|strong="G3739"\+w* \+w will|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G1510"\+w* revealed, \+w nor|strong="G2532"\+w* \+w hidden|strong="G2927"\+w* \+w that|strong="G3739"\+w* \+w will|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G1510"\+w* \+w known|strong="G1097"\+w*. \wj* +\v 3 \wj \+w Therefore|strong="G2532"\+w* \+w whatever|strong="G3745"\+w* \+w you|strong="G3739"\+w* \+w have|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w darkness|strong="G4653"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* heard \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w light|strong="G5457"\+w*. \+w What|strong="G3739"\+w* \+w you|strong="G3739"\+w* \+w have|strong="G2532"\+w* \+w spoken|strong="G2980"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w ear|strong="G3775"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w inner|strong="G5009"\+w* \+w rooms|strong="G5009"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w proclaimed|strong="G2784"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G1722"\+w* \+w housetops|strong="G1430"\+w*.\wj* +\p +\v 4 \wj “\+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w my|strong="G1473"\+w* \+w friends|strong="G5384"\+w*, don’\+w t|strong="G3588"\+w* \+w be|strong="G2532"\+w* \+w afraid|strong="G5399"\+w* \+w of|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* kill \+w the|strong="G2532"\+w* \+w body|strong="G4983"\+w*, \+w and|strong="G2532"\+w* \+w after|strong="G3326"\+w* \+w that|strong="G3588"\+w* \+w have|strong="G2192"\+w* \+w no|strong="G3361"\+w* \+w more|strong="G2192"\+w* \+w that|strong="G3588"\+w* \+w they|strong="G2532"\+w* \+w can|strong="G3004"\+w* \+w do|strong="G4160"\+w*. \wj* +\v 5 \wj \+w But|strong="G1161"\+w* \+w I|strong="G1161"\+w* \+w will|strong="G5101"\+w* \+w warn|strong="G5263"\+w* \+w you|strong="G5210"\+w* \+w whom|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w should|strong="G3588"\+w* \+w fear|strong="G5399"\+w*. \+w Fear|strong="G5399"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G5101"\+w* \+w after|strong="G3326"\+w* \+w he|strong="G1161"\+w* \+w has|strong="G2192"\+w* killed, \+w has|strong="G2192"\+w* \+w power|strong="G1849"\+w* \+w to|strong="G1519"\+w* \+w cast|strong="G1685"\+w* \+w into|strong="G1519"\+w* Gehenna.\wj*\f + \fr 12:5 \ft or, Hell\f* \wj \+w Yes|strong="G3483"\+w*, \+w I|strong="G1161"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w fear|strong="G5399"\+w* \+w him|strong="G3588"\+w*.\wj* +\p +\v 6 \wj “Aren’\+w t|strong="G3588"\+w* \+w five|strong="G4002"\+w* \+w sparrows|strong="G4765"\+w* \+w sold|strong="G4453"\+w* \+w for|strong="G1520"\+w* \+w two|strong="G1417"\+w* assaria coins\wj*\f + \fr 12:6 \ft An assarion was a small copper coin worth about an hour’s wages for an agricultural laborer.\f*\wj ? \+w Not|strong="G3756"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G1537"\+w* \+w them|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w forgotten|strong="G1950"\+w* \+w by|strong="G1537"\+w* \+w God|strong="G2316"\+w*. \wj* +\v 7 \wj \+w But|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w very|strong="G4183"\+w* \+w hairs|strong="G2359"\+w* \+w of|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w head|strong="G2776"\+w* \+w are|strong="G3588"\+w* \+w all|strong="G3956"\+w* counted. \+w Therefore|strong="G2532"\+w* don’\+w t|strong="G3588"\+w* \+w be|strong="G2532"\+w* \+w afraid|strong="G5399"\+w*. \+w You|strong="G5210"\+w* \+w are|strong="G3588"\+w* \+w of|strong="G2532"\+w* \+w more|strong="G4183"\+w* value \+w than|strong="G4183"\+w* \+w many|strong="G4183"\+w* \+w sparrows|strong="G4765"\+w*.\wj* +\p +\v 8 \wj “\+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w everyone|strong="G3956"\+w* \+w who|strong="G3739"\+w* \+w confesses|strong="G3670"\+w* \+w me|strong="G1473"\+w* \+w before|strong="G1715"\+w* \+w men|strong="G3956"\+w*, \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3956"\+w* \+w will|strong="G2316"\+w* \+w also|strong="G2532"\+w* \+w confess|strong="G3670"\+w* \+w before|strong="G1715"\+w* \+w the|strong="G1722"\+w* angels \+w of|strong="G5207"\+w* \+w God|strong="G2316"\+w*; \wj* +\v 9 \wj \+w but|strong="G1161"\+w* \+w he|strong="G1161"\+w* \+w who|strong="G3588"\+w* denies \+w me|strong="G1473"\+w* \+w in|strong="G2316"\+w* \+w the|strong="G1161"\+w* \+w presence|strong="G1799"\+w* \+w of|strong="G2316"\+w* \+w men|strong="G3588"\+w* \+w will|strong="G2316"\+w* \+w be|strong="G2316"\+w* denied \+w in|strong="G2316"\+w* \+w the|strong="G1161"\+w* \+w presence|strong="G1799"\+w* \+w of|strong="G2316"\+w* \+w God|strong="G2316"\+w*’s angels. \wj* +\v 10 \wj \+w Everyone|strong="G3956"\+w* \+w who|strong="G3739"\+w* \+w speaks|strong="G3004"\+w* \+w a|strong="G2532"\+w* \+w word|strong="G3056"\+w* \+w against|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3956"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* forgiven, \+w but|strong="G1161"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3739"\+w* blaspheme \+w against|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w Holy|strong="G4151"\+w* \+w Spirit|strong="G4151"\+w* \+w will|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G2532"\+w* forgiven. \wj* +\v 11 \wj \+w When|strong="G3752"\+w* \+w they|strong="G2532"\+w* \+w bring|strong="G1533"\+w* \+w you|strong="G5210"\+w* \+w before|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w synagogues|strong="G4864"\+w*, \+w the|strong="G2532"\+w* rulers, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w authorities|strong="G1849"\+w*, don’\+w t|strong="G3588"\+w* \+w be|strong="G2532"\+w* \+w anxious|strong="G3309"\+w* \+w how|strong="G4459"\+w* \+w or|strong="G2228"\+w* \+w what|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G5101"\+w* answer \+w or|strong="G2228"\+w* \+w what|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G5101"\+w* \+w say|strong="G3004"\+w*; \wj* +\v 12 \wj \+w for|strong="G1063"\+w* \+w the|strong="G1722"\+w* \+w Holy|strong="G4151"\+w* \+w Spirit|strong="G4151"\+w* \+w will|strong="G3739"\+w* \+w teach|strong="G1321"\+w* \+w you|strong="G5210"\+w* \+w in|strong="G1722"\+w* \+w that|strong="G3739"\+w* \+w same|strong="G3739"\+w* \+w hour|strong="G5610"\+w* \+w what|strong="G3739"\+w* \+w you|strong="G5210"\+w* \+w must|strong="G1163"\+w* \+w say|strong="G3004"\+w*.”\wj* +\p +\v 13 \w One|strong="G5100"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w multitude|strong="G3793"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Teacher|strong="G1320"\w*, \w tell|strong="G3004"\w* \w my|strong="G1473"\w* brother \w to|strong="G3004"\w* \w divide|strong="G3307"\w* \w the|strong="G1537"\w* \w inheritance|strong="G2817"\w* \w with|strong="G3326"\w* \w me|strong="G1473"\w*.” +\p +\v 14 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G1909"\w* \w him|strong="G3588"\w*, \wj “\+w Man|strong="G5101"\+w*, \+w who|strong="G5101"\+w* \+w made|strong="G2525"\+w* \+w me|strong="G1473"\+w* \+w a|strong="G1909"\+w* \+w judge|strong="G2923"\+w* \+w or|strong="G2228"\+w* \+w an|strong="G2228"\+w* \+w arbitrator|strong="G3312"\+w* \+w over|strong="G1909"\+w* \+w you|strong="G5210"\+w*?”\wj* +\v 15 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \wj “\+w Beware|strong="G5442"\+w*! \+w Keep|strong="G5442"\+w* \+w yourselves|strong="G1438"\+w* \+w from|strong="G1537"\+w* \+w covetousness|strong="G4124"\+w*, \+w for|strong="G3754"\+w* \+w a|strong="G2532"\+w* \+w man|strong="G5100"\+w*’s \+w life|strong="G2222"\+w* doesn’\+w t|strong="G3588"\+w* \+w consist|strong="G1510"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1722"\+w* \+w abundance|strong="G4052"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1722"\+w* \+w things|strong="G3956"\+w* \+w which|strong="G3588"\+w* \+w he|strong="G2532"\+w* possesses.”\wj* +\p +\v 16 \w He|strong="G1161"\w* \w spoke|strong="G3004"\w* \w a|strong="G1161"\w* \w parable|strong="G3850"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \w saying|strong="G3004"\w*, \wj “\+w The|strong="G1161"\+w* ground \+w of|strong="G5100"\+w* \+w a|strong="G1161"\+w* \+w certain|strong="G5100"\+w* \+w rich|strong="G4145"\+w* \+w man|strong="G5100"\+w* produced abundantly. \wj* +\v 17 \wj \+w He|strong="G2532"\+w* \+w reasoned|strong="G1260"\+w* \+w within|strong="G1722"\+w* \+w himself|strong="G1438"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w What|strong="G5101"\+w* \+w will|strong="G5101"\+w* \+w I|strong="G1473"\+w* \+w do|strong="G4160"\+w*, \+w because|strong="G3754"\+w* \+w I|strong="G1473"\+w* don’\+w t|strong="G3588"\+w* \+w have|strong="G2192"\+w* room \+w to|strong="G2532"\+w* \+w store|strong="G4863"\+w* \+w my|strong="G1722"\+w* \+w crops|strong="G2590"\+w*?’ \wj* +\v 18 \wj \+w He|strong="G2532"\+w* \+w said|strong="G3004"\+w*, ‘\+w This|strong="G3778"\+w* \+w is|strong="G3588"\+w* \+w what|strong="G3588"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w do|strong="G4160"\+w*. \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* pull \+w down|strong="G2507"\+w* \+w my|strong="G3956"\+w* barns, \+w build|strong="G3618"\+w* bigger \+w ones|strong="G3173"\+w*, \+w and|strong="G2532"\+w* \+w there|strong="G1563"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w store|strong="G4863"\+w* \+w all|strong="G3956"\+w* \+w my|strong="G3956"\+w* grain \+w and|strong="G2532"\+w* \+w my|strong="G3956"\+w* goods. \wj* +\v 19 \wj \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w my|strong="G1473"\+w* \+w soul|strong="G5590"\+w*, “\+w Soul|strong="G5590"\+w*, \+w you|strong="G3004"\+w* \+w have|strong="G2192"\+w* \+w many|strong="G4183"\+w* goods \+w laid|strong="G2749"\+w* \+w up|strong="G1519"\+w* \+w for|strong="G1519"\+w* \+w many|strong="G4183"\+w* \+w years|strong="G2094"\+w*. \+w Take|strong="G2532"\+w* \+w your|strong="G2192"\+w* ease, \+w eat|strong="G2068"\+w*, \+w drink|strong="G4095"\+w*, \+w and|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w merry|strong="G2165"\+w*.”’\wj* +\p +\v 20 \wj “\+w But|strong="G1161"\+w* \+w God|strong="G2316"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G3004"\+w* \+w him|strong="G3588"\+w*, ‘\+w You|strong="G4771"\+w* foolish \+w one|strong="G3739"\+w*, \+w tonight|strong="G3571"\+w* \+w your|strong="G3588"\+w* \+w soul|strong="G5590"\+w* \+w is|strong="G1510"\+w* required \+w of|strong="G2316"\+w* \+w you|strong="G4771"\+w*. \+w The|strong="G1161"\+w* \+w things|strong="G3778"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G1510"\+w* \+w prepared|strong="G2090"\+w*—\+w whose|strong="G3739"\+w* \+w will|strong="G2316"\+w* \+w they|strong="G1161"\+w* \+w be|strong="G1510"\+w*?’ \wj* +\v 21 \wj \+w So|strong="G3779"\+w* \+w is|strong="G3588"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* lays \+w up|strong="G2343"\+w* \+w treasure|strong="G2343"\+w* \+w for|strong="G1519"\+w* \+w himself|strong="G1438"\+w*, \+w and|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w not|strong="G3361"\+w* \+w rich|strong="G4147"\+w* \+w toward|strong="G1519"\+w* \+w God|strong="G2316"\+w*.”\wj* +\p +\v 22 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w his|strong="G1223"\w* \w disciples|strong="G3101"\w*, \wj “\+w Therefore|strong="G1223"\+w* \+w I|strong="G1161"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, don’\+w t|strong="G3588"\+w* \+w be|strong="G3361"\+w* \+w anxious|strong="G3309"\+w* \+w for|strong="G1223"\+w* \+w your|strong="G1223"\+w* \+w life|strong="G5590"\+w*, \+w what|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G5101"\+w* \+w eat|strong="G2068"\+w*, \+w nor|strong="G3366"\+w* \+w yet|strong="G1161"\+w* \+w for|strong="G1223"\+w* \+w your|strong="G1223"\+w* \+w body|strong="G4983"\+w*, \+w what|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G5101"\+w* wear. \wj* +\v 23 \wj \+w Life|strong="G5590"\+w* \+w is|strong="G1510"\+w* \+w more|strong="G4119"\+w* \+w than|strong="G4183"\+w* \+w food|strong="G5160"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w body|strong="G4983"\+w* \+w is|strong="G1510"\+w* \+w more|strong="G4119"\+w* \+w than|strong="G4183"\+w* \+w clothing|strong="G1742"\+w*. \wj* +\v 24 \wj \+w Consider|strong="G2657"\+w* \+w the|strong="G2532"\+w* \+w ravens|strong="G2876"\+w*: \+w they|strong="G2532"\+w* don’\+w t|strong="G3588"\+w* \+w sow|strong="G4687"\+w*, \+w they|strong="G2532"\+w* don’\+w t|strong="G3588"\+w* \+w reap|strong="G2325"\+w*, \+w they|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w no|strong="G3756"\+w* warehouse \+w or|strong="G2532"\+w* barn, \+w and|strong="G2532"\+w* \+w God|strong="G2316"\+w* \+w feeds|strong="G5142"\+w* \+w them|strong="G3588"\+w*. \+w How|strong="G4214"\+w* \+w much|strong="G4214"\+w* \+w more|strong="G3123"\+w* \+w valuable|strong="G1308"\+w* \+w are|strong="G1510"\+w* \+w you|strong="G5210"\+w* \+w than|strong="G2532"\+w* \+w birds|strong="G4071"\+w*! \wj* +\v 25 \wj \+w Which|strong="G3588"\+w* \+w of|strong="G1537"\+w* \+w you|strong="G5210"\+w* \+w by|strong="G1537"\+w* \+w being|strong="G1161"\+w* \+w anxious|strong="G3309"\+w* \+w can|strong="G1410"\+w* \+w add|strong="G4369"\+w* \+w a|strong="G1909"\+w* \+w cubit|strong="G4083"\+w*\wj*\f + \fr 12:25 \ft A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.\f* \wj \+w to|strong="G1909"\+w* \+w his|strong="G1909"\+w* height? \wj* +\v 26 \wj \+w If|strong="G1487"\+w* \+w then|strong="G3767"\+w* \+w you|strong="G1487"\+w* aren’\+w t|strong="G3588"\+w* \+w able|strong="G1410"\+w* \+w to|strong="G1410"\+w* \+w do|strong="G5101"\+w* \+w even|strong="G3761"\+w* \+w the|strong="G3588"\+w* \+w least|strong="G1646"\+w* \+w things|strong="G3588"\+w*, \+w why|strong="G5101"\+w* \+w are|strong="G3588"\+w* \+w you|strong="G1487"\+w* \+w anxious|strong="G3309"\+w* \+w about|strong="G4012"\+w* \+w the|strong="G3588"\+w* \+w rest|strong="G3062"\+w*? \wj* +\v 27 \wj \+w Consider|strong="G2657"\+w* \+w the|strong="G1722"\+w* \+w lilies|strong="G2918"\+w*, \+w how|strong="G4459"\+w* \+w they|strong="G1161"\+w* grow. \+w They|strong="G1161"\+w* don’\+w t|strong="G3588"\+w* \+w toil|strong="G2872"\+w*, \+w neither|strong="G3777"\+w* \+w do|strong="G3004"\+w* \+w they|strong="G1161"\+w* \+w spin|strong="G3514"\+w*; \+w yet|strong="G1161"\+w* \+w I|strong="G1161"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w even|strong="G3761"\+w* \+w Solomon|strong="G4672"\+w* \+w in|strong="G1722"\+w* \+w all|strong="G3956"\+w* \+w his|strong="G3956"\+w* \+w glory|strong="G1391"\+w* \+w was|strong="G3588"\+w* \+w not|strong="G3761"\+w* \+w arrayed|strong="G4016"\+w* \+w like|strong="G5613"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G1391"\+w* \+w these|strong="G3778"\+w*. \wj* +\v 28 \wj \+w But|strong="G1161"\+w* \+w if|strong="G1487"\+w* \+w this|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w how|strong="G4214"\+w* \+w God|strong="G2316"\+w* clothes \+w the|strong="G1722"\+w* \+w grass|strong="G5528"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* field, \+w which|strong="G3588"\+w* \+w today|strong="G4594"\+w* exists \+w and|strong="G2532"\+w* tomorrow \+w is|strong="G1510"\+w* \+w cast|strong="G2532"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1722"\+w* oven, \+w how|strong="G4214"\+w* \+w much|strong="G4214"\+w* \+w more|strong="G3123"\+w* \+w will|strong="G2316"\+w* \+w he|strong="G2532"\+w* clothe \+w you|strong="G5210"\+w*, O \+w you|strong="G5210"\+w* \+w of|strong="G2316"\+w* \+w little|strong="G3640"\+w* \+w faith|strong="G3640"\+w*? \wj* +\p +\v 29 \wj “Don’t \+w seek|strong="G2212"\+w* \+w what|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G5101"\+w* \+w eat|strong="G2068"\+w* \+w or|strong="G2532"\+w* \+w what|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G5101"\+w* \+w drink|strong="G4095"\+w*; \+w neither|strong="G2532"\+w* \+w be|strong="G2532"\+w* anxious. \wj* +\v 30 \wj \+w For|strong="G1063"\+w* \+w the|strong="G3956"\+w* \+w nations|strong="G1484"\+w* \+w of|strong="G3962"\+w* \+w the|strong="G3956"\+w* \+w world|strong="G2889"\+w* \+w seek|strong="G1934"\+w* \+w after|strong="G1161"\+w* \+w all|strong="G3956"\+w* \+w of|strong="G3962"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3956"\+w*, \+w but|strong="G1161"\+w* \+w your|strong="G3956"\+w* \+w Father|strong="G3962"\+w* \+w knows|strong="G1492"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w need|strong="G5535"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3956"\+w*. \wj* +\v 31 \wj \+w But|strong="G2532"\+w* \+w seek|strong="G2212"\+w* \+w God|strong="G2532"\+w*’s Kingdom, \+w and|strong="G2532"\+w* \+w all|strong="G2532"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w added|strong="G4369"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*.\wj* +\p +\v 32 \wj “Don’\+w t|strong="G3588"\+w* \+w be|strong="G3361"\+w* \+w afraid|strong="G5399"\+w*, \+w little|strong="G3398"\+w* \+w flock|strong="G4168"\+w*, \+w for|strong="G3754"\+w* \+w it|strong="G3754"\+w* \+w is|strong="G3588"\+w* \+w your|strong="G1325"\+w* \+w Father|strong="G3962"\+w*’s \+w good|strong="G2106"\+w* \+w pleasure|strong="G2106"\+w* \+w to|strong="G1325"\+w* \+w give|strong="G1325"\+w* \+w you|strong="G5210"\+w* \+w the|strong="G3588"\+w* Kingdom. \wj* +\v 33 \wj \+w Sell|strong="G4453"\+w* \+w what|strong="G3588"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2532"\+w* \+w and|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w gifts|strong="G1654"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G1722"\+w* needy. \+w Make|strong="G4160"\+w* \+w for|strong="G1722"\+w* \+w yourselves|strong="G1438"\+w* purses \+w which|strong="G3588"\+w* don’\+w t|strong="G3588"\+w* grow \+w old|strong="G3822"\+w*, \+w a|strong="G2532"\+w* \+w treasure|strong="G2344"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w heavens|strong="G3772"\+w* \+w that|strong="G3588"\+w* doesn’\+w t|strong="G3588"\+w* \+w fail|strong="G3756"\+w*, \+w where|strong="G3699"\+w* \+w no|strong="G3756"\+w* \+w thief|strong="G2812"\+w* approaches \+w and|strong="G2532"\+w* \+w no|strong="G3756"\+w* \+w moth|strong="G4597"\+w* \+w destroys|strong="G1311"\+w*. \wj* +\v 34 \wj \+w For|strong="G1063"\+w* \+w where|strong="G3699"\+w* \+w your|strong="G2532"\+w* \+w treasure|strong="G2344"\+w* \+w is|strong="G1510"\+w*, \+w there|strong="G1563"\+w* \+w will|strong="G1510"\+w* \+w your|strong="G2532"\+w* \+w heart|strong="G2588"\+w* \+w be|strong="G1510"\+w* \+w also|strong="G2532"\+w*. \wj* +\p +\v 35 \wj “\+w Let|strong="G1510"\+w* \+w your|strong="G2532"\+w* \+w waist|strong="G3751"\+w* \+w be|strong="G1510"\+w* \+w dressed|strong="G4024"\+w* \+w and|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w lamps|strong="G3088"\+w* \+w burning|strong="G2545"\+w*. \wj* +\v 36 \wj \+w Be|strong="G2532"\+w* \+w like|strong="G3664"\+w* \+w men|strong="G3588"\+w* watching \+w for|strong="G2532"\+w* \+w their|strong="G1438"\+w* \+w lord|strong="G2962"\+w* \+w when|strong="G2532"\+w* \+w he|strong="G2532"\+w* returns \+w from|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w wedding|strong="G1062"\+w* \+w feast|strong="G1062"\+w*, \+w that|strong="G2443"\+w* \+w when|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w comes|strong="G2064"\+w* \+w and|strong="G2532"\+w* \+w knocks|strong="G2925"\+w*, \+w they|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w immediately|strong="G2112"\+w* open \+w to|strong="G2443"\+w* \+w him|strong="G3588"\+w*. \wj* +\v 37 \wj \+w Blessed|strong="G3107"\+w* \+w are|strong="G3588"\+w* \+w those|strong="G3588"\+w* \+w servants|strong="G1401"\+w* \+w whom|strong="G3739"\+w* \+w the|strong="G2532"\+w* \+w lord|strong="G2962"\+w* \+w will|strong="G2532"\+w* \+w find|strong="G2147"\+w* \+w watching|strong="G1127"\+w* \+w when|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w comes|strong="G2064"\+w*. Most \+w certainly|strong="G2532"\+w* \+w I|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* dress \+w himself|strong="G1565"\+w*, \+w make|strong="G2532"\+w* \+w them|strong="G3588"\+w* recline, \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w and|strong="G2532"\+w* \+w serve|strong="G1247"\+w* \+w them|strong="G3588"\+w*. \wj* +\v 38 \wj \+w They|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w blessed|strong="G3107"\+w* \+w if|strong="G2579"\+w* \+w he|strong="G2532"\+w* \+w comes|strong="G2064"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w second|strong="G1208"\+w* \+w or|strong="G2532"\+w* \+w third|strong="G5154"\+w* \+w watch|strong="G5438"\+w* \+w and|strong="G2532"\+w* \+w finds|strong="G2147"\+w* \+w them|strong="G3588"\+w* \+w so|strong="G3779"\+w*. \wj* +\v 39 \wj \+w But|strong="G1161"\+w* \+w know|strong="G1492"\+w* \+w this|strong="G3778"\+w*, \+w that|strong="G3754"\+w* \+w if|strong="G1487"\+w* \+w the|strong="G1161"\+w* master \+w of|strong="G3624"\+w* \+w the|strong="G1161"\+w* \+w house|strong="G3624"\+w* \+w had|strong="G3588"\+w* \+w known|strong="G1097"\+w* \+w in|strong="G3756"\+w* \+w what|strong="G4169"\+w* \+w hour|strong="G5610"\+w* \+w the|strong="G1161"\+w* \+w thief|strong="G2812"\+w* \+w was|strong="G3588"\+w* \+w coming|strong="G2064"\+w*, \+w he|strong="G1161"\+w* \+w would|strong="G2064"\+w* \+w have|strong="G3588"\+w* watched \+w and|strong="G1161"\+w* \+w not|strong="G3756"\+w* allowed \+w his|strong="G3754"\+w* \+w house|strong="G3624"\+w* \+w to|strong="G2064"\+w* \+w be|strong="G3756"\+w* \+w broken|strong="G1358"\+w* \+w into|strong="G2064"\+w*. \wj* +\v 40 \wj \+w Therefore|strong="G2532"\+w* \+w be|strong="G1096"\+w* \+w ready|strong="G2092"\+w* \+w also|strong="G2532"\+w*, \+w for|strong="G3754"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3739"\+w* \+w is|strong="G3588"\+w* \+w coming|strong="G2064"\+w* \+w in|strong="G2532"\+w* \+w an|strong="G2532"\+w* \+w hour|strong="G5610"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* \+w expect|strong="G1380"\+w* \+w him|strong="G3588"\+w*.”\wj* +\p +\v 41 \w Peter|strong="G4074"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w Lord|strong="G2962"\w*, \w are|strong="G3588"\w* \w you|strong="G3004"\w* \w telling|strong="G3004"\w* \w this|strong="G3778"\w* \w parable|strong="G3850"\w* \w to|strong="G4314"\w* \w us|strong="G3004"\w*, \w or|strong="G2228"\w* \w to|strong="G4314"\w* everybody?” +\p +\v 42 \w The|strong="G1722"\w* \w Lord|strong="G2962"\w* \w said|strong="G3004"\w*, \wj “\+w Who|strong="G3739"\+w* \+w then|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G1722"\+w* \+w faithful|strong="G4103"\+w* \+w and|strong="G2532"\+w* \+w wise|strong="G5429"\+w* \+w steward|strong="G3623"\+w*, \+w whom|strong="G3739"\+w* \+w his|strong="G1909"\+w* \+w lord|strong="G2962"\+w* \+w will|strong="G5101"\+w* \+w set|strong="G2525"\+w* \+w over|strong="G1909"\+w* \+w his|strong="G1909"\+w* \+w household|strong="G2322"\+w*, \+w to|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w them|strong="G3588"\+w* \+w their|strong="G2532"\+w* portion \+w of|strong="G2532"\+w* food \+w at|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w right|strong="G2540"\+w* \+w times|strong="G2540"\+w*? \wj* +\v 43 \wj \+w Blessed|strong="G3107"\+w* \+w is|strong="G3588"\+w* \+w that|strong="G3739"\+w* \+w servant|strong="G1401"\+w* \+w whom|strong="G3739"\+w* \+w his|strong="G4160"\+w* \+w lord|strong="G2962"\+w* \+w will|strong="G3739"\+w* \+w find|strong="G2147"\+w* \+w doing|strong="G4160"\+w* \+w so|strong="G3779"\+w* \+w when|strong="G2064"\+w* \+w he|strong="G3739"\+w* \+w comes|strong="G2064"\+w*. \wj* +\v 44 \wj \+w Truly|strong="G1909"\+w* \+w I|strong="G3754"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w he|strong="G3754"\+w* \+w will|strong="G3956"\+w* \+w set|strong="G2525"\+w* \+w him|strong="G3588"\+w* \+w over|strong="G1909"\+w* \+w all|strong="G3956"\+w* \+w that|strong="G3754"\+w* \+w he|strong="G3754"\+w* has. \wj* +\v 45 \wj \+w But|strong="G1161"\+w* \+w if|strong="G1437"\+w* \+w that|strong="G3588"\+w* \+w servant|strong="G1401"\+w* \+w says|strong="G3004"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G1722"\+w* \+w heart|strong="G2588"\+w*, ‘\+w My|strong="G1722"\+w* \+w lord|strong="G2962"\+w* delays \+w his|strong="G1722"\+w* \+w coming|strong="G2064"\+w*,’ \+w and|strong="G2532"\+w* begins \+w to|strong="G2532"\+w* \+w beat|strong="G5180"\+w* \+w the|strong="G1722"\+w* menservants \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* maidservants, \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w eat|strong="G2068"\+w* \+w and|strong="G2532"\+w* \+w drink|strong="G4095"\+w* \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w drunken|strong="G4095"\+w*, \wj* +\v 46 \wj \+w then|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w lord|strong="G2962"\+w* \+w of|strong="G2250"\+w* \+w that|strong="G3739"\+w* \+w servant|strong="G1401"\+w* \+w will|strong="G2532"\+w* \+w come|strong="G2240"\+w* \+w in|strong="G1722"\+w* \+w a|strong="G2532"\+w* \+w day|strong="G2250"\+w* \+w when|strong="G2532"\+w* \+w he|strong="G2532"\+w* isn’\+w t|strong="G3588"\+w* \+w expecting|strong="G4328"\+w* \+w him|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w an|strong="G2532"\+w* \+w hour|strong="G5610"\+w* \+w that|strong="G3739"\+w* \+w he|strong="G2532"\+w* doesn’\+w t|strong="G3588"\+w* \+w know|strong="G1097"\+w*, \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w cut|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w in|strong="G1722"\+w* two, \+w and|strong="G2532"\+w* \+w place|strong="G3313"\+w* \+w his|strong="G1722"\+w* \+w portion|strong="G3313"\+w* \+w with|strong="G3326"\+w* \+w the|strong="G1722"\+w* unfaithful. \wj* +\v 47 \wj \+w That|strong="G3588"\+w* \+w servant|strong="G1401"\+w* \+w who|strong="G3588"\+w* \+w knew|strong="G1097"\+w* \+w his|strong="G4160"\+w* \+w lord|strong="G2962"\+w*’\+w s|strong="G2962"\+w* \+w will|strong="G2307"\+w*, \+w and|strong="G2532"\+w* didn’\+w t|strong="G3588"\+w* \+w prepare|strong="G2090"\+w* \+w nor|strong="G2532"\+w* \+w do|strong="G4160"\+w* \+w what|strong="G3588"\+w* \+w he|strong="G2532"\+w* wanted, \+w will|strong="G2307"\+w* \+w be|strong="G2532"\+w* \+w beaten|strong="G1194"\+w* \+w with|strong="G4314"\+w* \+w many|strong="G4183"\+w* stripes, \wj* +\v 48 \wj \+w but|strong="G1161"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3739"\+w* didn’\+w t|strong="G3588"\+w* \+w know|strong="G1097"\+w*, \+w and|strong="G2532"\+w* \+w did|strong="G4160"\+w* \+w things|strong="G3956"\+w* worthy \+w of|strong="G2532"\+w* \+w stripes|strong="G4127"\+w*, \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w beaten|strong="G1194"\+w* \+w with|strong="G3844"\+w* \+w few|strong="G3641"\+w* \+w stripes|strong="G4127"\+w*. \+w To|strong="G2532"\+w* \+w whomever|strong="G3739"\+w* \+w much|strong="G4183"\+w* \+w is|strong="G3588"\+w* \+w given|strong="G1325"\+w*, \+w of|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w will|strong="G2532"\+w* \+w much|strong="G4183"\+w* \+w be|strong="G2532"\+w* \+w required|strong="G2212"\+w*; \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w whom|strong="G3739"\+w* \+w much|strong="G4183"\+w* \+w was|strong="G3588"\+w* \+w entrusted|strong="G3908"\+w*, \+w of|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w more|strong="G4183"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* asked. \wj* +\p +\v 49 \wj “\+w I|strong="G2532"\+w* \+w came|strong="G2064"\+w* \+w to|strong="G2532"\+w* throw \+w fire|strong="G4442"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w earth|strong="G1093"\+w*. \+w I|strong="G2532"\+w* \+w wish|strong="G2309"\+w* \+w it|strong="G2532"\+w* \+w were|strong="G3588"\+w* \+w already|strong="G2235"\+w* kindled. \wj* +\v 50 \wj \+w But|strong="G1161"\+w* \+w I|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w a|strong="G2192"\+w* baptism \+w to|strong="G2532"\+w* \+w be|strong="G2532"\+w* baptized \+w with|strong="G2532"\+w*, \+w and|strong="G2532"\+w* \+w how|strong="G4459"\+w* \+w distressed|strong="G4912"\+w* \+w I|strong="G2532"\+w* \+w am|strong="G2532"\+w* \+w until|strong="G2193"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G3748"\+w* \+w accomplished|strong="G5055"\+w*! \wj* +\v 51 \wj \+w Do|strong="G1380"\+w* \+w you|strong="G5210"\+w* \+w think|strong="G1380"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G3754"\+w* \+w have|strong="G5210"\+w* \+w come|strong="G3854"\+w* \+w to|strong="G3004"\+w* \+w give|strong="G1325"\+w* \+w peace|strong="G1515"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w earth|strong="G1093"\+w*? \+w I|strong="G3754"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w no|strong="G3780"\+w*, \+w but|strong="G3588"\+w* \+w rather|strong="G2228"\+w* \+w division|strong="G1267"\+w*. \wj* +\v 52 \wj \+w For|strong="G1063"\+w* \+w from|strong="G2532"\+w* \+w now|strong="G3568"\+w* \+w on|strong="G1909"\+w*, \+w there|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w five|strong="G4002"\+w* \+w in|strong="G1722"\+w* \+w one|strong="G1520"\+w* \+w house|strong="G3624"\+w* \+w divided|strong="G1266"\+w*, \+w three|strong="G5140"\+w* \+w against|strong="G1909"\+w* \+w two|strong="G1417"\+w*, \+w and|strong="G2532"\+w* \+w two|strong="G1417"\+w* \+w against|strong="G1909"\+w* \+w three|strong="G5140"\+w*. \wj* +\v 53 \wj \+w They|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w divided|strong="G1266"\+w*, \+w father|strong="G3962"\+w* \+w against|strong="G1909"\+w* \+w son|strong="G5207"\+w*, \+w and|strong="G2532"\+w* \+w son|strong="G5207"\+w* \+w against|strong="G1909"\+w* \+w father|strong="G3962"\+w*; \+w mother|strong="G3384"\+w* \+w against|strong="G1909"\+w* \+w daughter|strong="G2364"\+w*, \+w and|strong="G2532"\+w* \+w daughter|strong="G2364"\+w* \+w against|strong="G1909"\+w* \+w her|strong="G3588"\+w* \+w mother|strong="G3384"\+w*; \+w mother-in-law|strong="G3994"\+w* \+w against|strong="G1909"\+w* \+w her|strong="G3588"\+w* \+w daughter-in-law|strong="G3565"\+w*, \+w and|strong="G2532"\+w* \+w daughter-in-law|strong="G3565"\+w* \+w against|strong="G1909"\+w* \+w her|strong="G3588"\+w* \+w mother-in-law|strong="G3994"\+w*.” \wj*\x + \xo 12:53 \xt Micah 7:6\x* +\p +\v 54 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w* \w also|strong="G2532"\w*, \wj “\+w When|strong="G3752"\+w* \+w you|strong="G3752"\+w* \+w see|strong="G3708"\+w* \+w a|strong="G1096"\+w* \+w cloud|strong="G3507"\+w* \+w rising|strong="G2532"\+w* \+w from|strong="G2064"\+w* \+w the|strong="G2532"\+w* \+w west|strong="G1424"\+w*, \+w immediately|strong="G2112"\+w* \+w you|strong="G3752"\+w* \+w say|strong="G3004"\+w*, ‘\+w A|strong="G1096"\+w* \+w shower|strong="G3655"\+w* \+w is|strong="G3588"\+w* \+w coming|strong="G2064"\+w*,’ \+w and|strong="G2532"\+w* \+w so|strong="G3779"\+w* \+w it|strong="G2532"\+w* \+w happens|strong="G1096"\+w*. \wj* +\v 55 \wj \+w When|strong="G3752"\+w* \+w a|strong="G1096"\+w* \+w south|strong="G3558"\+w* \+w wind|strong="G3558"\+w* \+w blows|strong="G4154"\+w*, \+w you|strong="G3752"\+w* \+w say|strong="G3004"\+w*, ‘\+w There|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1096"\+w* \+w a|strong="G1096"\+w* \+w scorching|strong="G2742"\+w* \+w heat|strong="G2742"\+w*,’ \+w and|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w happens|strong="G1096"\+w*. \wj* +\v 56 \wj \+w You|strong="G4459"\+w* \+w hypocrites|strong="G5273"\+w*! \+w You|strong="G4459"\+w* \+w know|strong="G1492"\+w* \+w how|strong="G4459"\+w* \+w to|strong="G2532"\+w* interpret \+w the|strong="G2532"\+w* \+w appearance|strong="G4383"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w earth|strong="G1093"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w sky|strong="G3772"\+w*, \+w but|strong="G1161"\+w* \+w how|strong="G4459"\+w* \+w is|strong="G3588"\+w* \+w it|strong="G2532"\+w* \+w that|strong="G3588"\+w* \+w you|strong="G4459"\+w* don’\+w t|strong="G3588"\+w* interpret \+w this|strong="G3778"\+w* \+w time|strong="G2540"\+w*? \wj* +\p +\v 57 \wj “\+w Why|strong="G5101"\+w* don’\+w t|strong="G3588"\+w* \+w you|strong="G1438"\+w* \+w judge|strong="G2919"\+w* \+w for|strong="G1161"\+w* \+w yourselves|strong="G1438"\+w* \+w what|strong="G5101"\+w* \+w is|strong="G3588"\+w* \+w right|strong="G1342"\+w*? \wj* +\v 58 \wj \+w For|strong="G1063"\+w* \+w when|strong="G5613"\+w* \+w you|strong="G4771"\+w* \+w are|strong="G3588"\+w* \+w going|strong="G5217"\+w* \+w with|strong="G3326"\+w* \+w your|strong="G2532"\+w* adversary \+w before|strong="G1909"\+w* \+w the|strong="G1722"\+w* magistrate, try diligently \+w on|strong="G1909"\+w* \+w the|strong="G1722"\+w* \+w way|strong="G3598"\+w* \+w to|strong="G1519"\+w* \+w be|strong="G2532"\+w* released \+w from|strong="G2532"\+w* \+w him|strong="G3588"\+w*, \+w lest|strong="G3379"\+w* \+w perhaps|strong="G3379"\+w* \+w he|strong="G2532"\+w* \+w drag|strong="G2694"\+w* \+w you|strong="G4771"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G1722"\+w* \+w judge|strong="G2923"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w judge|strong="G2923"\+w* \+w deliver|strong="G3860"\+w* \+w you|strong="G4771"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G1722"\+w* \+w officer|strong="G4233"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w officer|strong="G4233"\+w* throw \+w you|strong="G4771"\+w* \+w into|strong="G1519"\+w* \+w prison|strong="G5438"\+w*. \wj* +\v 59 \wj \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w*, \+w you|strong="G4771"\+w* \+w will|strong="G2532"\+w* \+w by|strong="G2532"\+w* \+w no|strong="G3756"\+w* \+w means|strong="G3004"\+w* \+w get|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w of|strong="G2532"\+w* \+w there|strong="G2532"\+w* \+w until|strong="G2193"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2532"\+w* paid \+w the|strong="G2532"\+w* \+w very|strong="G2532"\+w* \+w last|strong="G2078"\+w* penny.\wj*\f + \fr 12:59 \ft literally, lepton. A lepton is a very small brass Jewish coin worth half a Roman quadrans each, which is worth a quarter of the copper assarion. Lepta are worth less than 1% of an agricultural worker’s daily wages.\f*\wj ”\wj* +\c 13 +\p +\v 1 \w Now|strong="G1161"\w* \w there|strong="G1161"\w* \w were|strong="G3588"\w* \w some|strong="G5100"\w* \w present|strong="G3918"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w same|strong="G3739"\w* \w time|strong="G2540"\w* \w who|strong="G3739"\w* told \w him|strong="G3588"\w* \w about|strong="G4012"\w* \w the|strong="G1722"\w* \w Galileans|strong="G1057"\w* \w whose|strong="G3739"\w* blood \w Pilate|strong="G4091"\w* \w had|strong="G3739"\w* \w mixed|strong="G3396"\w* \w with|strong="G3326"\w* \w their|strong="G1722"\w* \w sacrifices|strong="G2378"\w*. +\v 2 \w Jesus|strong="G3004"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Do|strong="G1096"\+w* \+w you|strong="G3754"\+w* \+w think|strong="G1380"\+w* \+w that|strong="G3754"\+w* \+w these|strong="G3778"\+w* \+w Galileans|strong="G1057"\+w* \+w were|strong="G3588"\+w* worse sinners \+w than|strong="G3844"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G2532"\+w* \+w other|strong="G3588"\+w* \+w Galileans|strong="G1057"\+w*, \+w because|strong="G3754"\+w* \+w they|strong="G2532"\+w* \+w suffered|strong="G3958"\+w* \+w such|strong="G3778"\+w* \+w things|strong="G3956"\+w*? \wj* +\v 3 \wj \+w I|strong="G1437"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w no|strong="G3361"\+w*, \+w but|strong="G3361"\+w* \+w unless|strong="G1437"\+w* \+w you|strong="G5210"\+w* \+w repent|strong="G3340"\+w*, \+w you|strong="G5210"\+w* \+w will|strong="G3956"\+w* \+w all|strong="G3956"\+w* perish \+w in|strong="G3956"\+w* \+w the|strong="G3956"\+w* \+w same|strong="G3668"\+w* \+w way|strong="G3668"\+w*. \wj* +\v 4 \wj \+w Or|strong="G2228"\+w* \+w those|strong="G3588"\+w* eighteen \+w on|strong="G1909"\+w* \+w whom|strong="G3739"\+w* \+w the|strong="G1722"\+w* \+w tower|strong="G4444"\+w* \+w in|strong="G1722"\+w* \+w Siloam|strong="G4611"\+w* \+w fell|strong="G4098"\+w* \+w and|strong="G2532"\+w* killed \+w them|strong="G3588"\+w*—\+w do|strong="G1096"\+w* \+w you|strong="G3739"\+w* \+w think|strong="G1380"\+w* \+w that|strong="G3754"\+w* \+w they|strong="G2532"\+w* \+w were|strong="G3588"\+w* worse offenders \+w than|strong="G2228"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G1722"\+w* \+w men|strong="G3956"\+w* \+w who|strong="G3739"\+w* \+w dwell|strong="G2730"\+w* \+w in|strong="G1722"\+w* \+w Jerusalem|strong="G2419"\+w*? \wj* +\v 5 \wj \+w I|strong="G1437"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w no|strong="G3361"\+w*, \+w but|strong="G3361"\+w*, \+w unless|strong="G1437"\+w* \+w you|strong="G5210"\+w* \+w repent|strong="G3340"\+w*, \+w you|strong="G5210"\+w* \+w will|strong="G3956"\+w* \+w all|strong="G3956"\+w* perish \+w in|strong="G3956"\+w* \+w the|strong="G3956"\+w* \+w same|strong="G5615"\+w* \+w way|strong="G5615"\+w*.”\wj* +\p +\v 6 \w He|strong="G2532"\w* \w spoke|strong="G3004"\w* \w this|strong="G3778"\w* \w parable|strong="G3850"\w*. \wj “\+w A|strong="G2192"\+w* \+w certain|strong="G5100"\+w* \+w man|strong="G5100"\+w* \+w had|strong="G2192"\+w* \+w a|strong="G2192"\+w* \+w fig|strong="G4808"\+w* \+w tree|strong="G4808"\+w* \+w planted|strong="G5452"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G1722"\+w* vineyard, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w came|strong="G2064"\+w* \+w seeking|strong="G2212"\+w* \+w fruit|strong="G2590"\+w* \+w on|strong="G1722"\+w* \+w it|strong="G2532"\+w* \+w and|strong="G2532"\+w* \+w found|strong="G2147"\+w* \+w none|strong="G3756"\+w*. \wj* +\v 7 \wj \+w He|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G4314"\+w* \+w the|strong="G1722"\+w* \+w vine|strong="G1093"\+w* dresser, ‘\+w Behold|strong="G2400"\+w*, \+w these|strong="G3778"\+w* \+w three|strong="G5140"\+w* \+w years|strong="G2094"\+w* \+w I|strong="G3739"\+w* \+w have|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w looking|strong="G2212"\+w* \+w for|strong="G4314"\+w* \+w fruit|strong="G2590"\+w* \+w on|strong="G1722"\+w* \+w this|strong="G3778"\+w* \+w fig|strong="G4808"\+w* \+w tree|strong="G4808"\+w*, \+w and|strong="G2532"\+w* \+w found|strong="G2147"\+w* \+w none|strong="G3756"\+w*. \+w Cut|strong="G1581"\+w* \+w it|strong="G2532"\+w* \+w down|strong="G1581"\+w*! \+w Why|strong="G2444"\+w* \+w does|strong="G2064"\+w* \+w it|strong="G2532"\+w* waste \+w the|strong="G1722"\+w* \+w soil|strong="G1093"\+w*?’ \wj* +\v 8 \wj \+w He|strong="G2532"\+w* \+w answered|strong="G3004"\+w*, ‘\+w Lord|strong="G2962"\+w*, leave \+w it|strong="G2532"\+w* \+w alone|strong="G1438"\+w* \+w this|strong="G3778"\+w* \+w year|strong="G2094"\+w* \+w also|strong="G2532"\+w*, \+w until|strong="G2193"\+w* \+w I|strong="G2532"\+w* \+w dig|strong="G4626"\+w* \+w around|strong="G4012"\+w* \+w it|strong="G2532"\+w* \+w and|strong="G2532"\+w* fertilize \+w it|strong="G2532"\+w*. \wj* +\v 9 \wj \+w If|strong="G1487"\+w* \+w it|strong="G1161"\+w* \+w bears|strong="G4160"\+w* \+w fruit|strong="G2590"\+w*, fine; \+w but|strong="G1161"\+w* \+w if|strong="G1487"\+w* \+w not|strong="G3361"\+w*, \+w after|strong="G1161"\+w* \+w that|strong="G3588"\+w*, \+w you|strong="G1487"\+w* \+w can|strong="G4160"\+w* \+w cut|strong="G1581"\+w* \+w it|strong="G1161"\+w* \+w down|strong="G1581"\+w*.’”\wj* +\p +\v 10 \w He|strong="G1161"\w* \w was|strong="G1510"\w* \w teaching|strong="G1321"\w* \w in|strong="G1722"\w* \w one|strong="G1520"\w* \w of|strong="G1520"\w* \w the|strong="G1722"\w* \w synagogues|strong="G4864"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w Sabbath|strong="G4521"\w* \w day|strong="G4521"\w*. +\v 11 \w Behold|strong="G2400"\w*, \w there|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2192"\w* \w woman|strong="G1135"\w* \w who|strong="G3588"\w* \w had|strong="G2192"\w* \w a|strong="G2192"\w* \w spirit|strong="G4151"\w* \w of|strong="G4151"\w* infirmity eighteen \w years|strong="G2094"\w*. \w She|strong="G2532"\w* \w was|strong="G1510"\w* \w bent|strong="G4794"\w* \w over|strong="G1519"\w* \w and|strong="G2532"\w* \w could|strong="G1410"\w* \w in|strong="G1519"\w* \w no|strong="G3361"\w* way straighten herself \w up|strong="G1519"\w*. +\v 12 \w When|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w saw|strong="G3708"\w* \w her|strong="G1438"\w*, \w he|strong="G2532"\w* \w called|strong="G3004"\w* \w her|strong="G1438"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w her|strong="G1438"\w*, \wj “\+w Woman|strong="G1135"\+w*, \+w you|strong="G4771"\+w* \+w are|strong="G3588"\+w* freed \+w from|strong="G2532"\+w* \+w your|strong="G2532"\+w* infirmity.”\wj* +\v 13 \w He|strong="G2532"\w* \w laid|strong="G2007"\w* \w his|strong="G2007"\w* \w hands|strong="G5495"\w* \w on|strong="G5495"\w* \w her|strong="G3588"\w*, \w and|strong="G2532"\w* \w immediately|strong="G3916"\w* \w she|strong="G2532"\w* \w stood|strong="G3588"\w* \w up|strong="G2532"\w* straight \w and|strong="G2532"\w* \w glorified|strong="G1392"\w* \w God|strong="G2316"\w*. +\p +\v 14 \w The|strong="G1722"\w* ruler \w of|strong="G2250"\w* \w the|strong="G1722"\w* synagogue, \w being|strong="G1510"\w* indignant \w because|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* \w healed|strong="G2323"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w Sabbath|strong="G4521"\w*, \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w multitude|strong="G3793"\w*, “\w There|strong="G2532"\w* \w are|strong="G1510"\w* \w six|strong="G1803"\w* \w days|strong="G2250"\w* \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w men|strong="G3588"\w* \w ought|strong="G1163"\w* \w to|strong="G2532"\w* \w work|strong="G2038"\w*. \w Therefore|strong="G3767"\w* \w come|strong="G2064"\w* \w on|strong="G1722"\w* \w those|strong="G3588"\w* \w days|strong="G2250"\w* \w and|strong="G2532"\w* \w be|strong="G1510"\w* \w healed|strong="G2323"\w*, \w and|strong="G2532"\w* \w not|strong="G3361"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w Sabbath|strong="G4521"\w* \w day|strong="G2250"\w*!” +\p +\v 15 \w Therefore|strong="G1161"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w You|strong="G5210"\+w* \+w hypocrites|strong="G5273"\+w*! Doesn’\+w t|strong="G3588"\+w* \+w each|strong="G1538"\+w* \+w one|strong="G1538"\+w* \+w of|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w free|strong="G3089"\+w* \+w his|strong="G2532"\+w* \+w ox|strong="G1016"\+w* \+w or|strong="G2228"\+w* \+w his|strong="G2532"\+w* \+w donkey|strong="G3688"\+w* \+w from|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w stall|strong="G5336"\+w* \+w on|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w Sabbath|strong="G4521"\+w* \+w and|strong="G2532"\+w* \+w lead|strong="G2532"\+w* \+w him|strong="G3588"\+w* away \+w to|strong="G2532"\+w* \+w water|strong="G4222"\+w*? \wj* +\v 16 \wj \+w Ought|strong="G1163"\+w* \+w not|strong="G3756"\+w* \+w this|strong="G3778"\+w* \+w woman|strong="G3778"\+w*, \+w being|strong="G1510"\+w* \+w a|strong="G2532"\+w* \+w daughter|strong="G2364"\+w* \+w of|strong="G2250"\+w* Abraham \+w whom|strong="G3739"\+w* \+w Satan|strong="G4567"\+w* \+w had|strong="G2532"\+w* \+w bound|strong="G1210"\+w* \+w eighteen|strong="G1176"\+w* \+w long|strong="G2250"\+w* \+w years|strong="G2094"\+w*, \+w be|strong="G1510"\+w* freed \+w from|strong="G2532"\+w* \+w this|strong="G3778"\+w* bondage \+w on|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w Sabbath|strong="G4521"\+w* \+w day|strong="G2250"\+w*?” \wj* +\p +\v 17 \w As|strong="G2532"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w*, \w all|strong="G3956"\w* \w his|strong="G3956"\w* adversaries \w were|strong="G3588"\w* \w disappointed|strong="G2617"\w*; \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w* \w rejoiced|strong="G5463"\w* \w for|strong="G1909"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w glorious|strong="G1741"\w* \w things|strong="G3956"\w* \w that|strong="G3588"\w* \w were|strong="G3588"\w* \w done|strong="G1096"\w* \w by|strong="G5259"\w* \w him|strong="G3588"\w*. +\p +\v 18 \w He|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w What|strong="G5101"\+w* \+w is|strong="G1510"\+w* \+w God|strong="G2316"\+w*’s Kingdom \+w like|strong="G3664"\+w*? \+w To|strong="G2532"\+w* \+w what|strong="G5101"\+w* \+w shall|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w compare|strong="G3666"\+w* \+w it|strong="G2532"\+w*? \wj* +\v 19 \wj \+w It|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w like|strong="G3664"\+w* \+w a|strong="G1096"\+w* \+w grain|strong="G2848"\+w* \+w of|strong="G2532"\+w* \+w mustard|strong="G4615"\+w* \+w seed|strong="G2848"\+w* \+w which|strong="G3739"\+w* \+w a|strong="G1096"\+w* \+w man|strong="G3739"\+w* \+w took|strong="G2983"\+w* \+w and|strong="G2532"\+w* \+w put|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G1438"\+w* \+w own|strong="G1438"\+w* \+w garden|strong="G2779"\+w*. \+w It|strong="G2532"\+w* grew \+w and|strong="G2532"\+w* \+w became|strong="G1096"\+w* \+w a|strong="G1096"\+w* large \+w tree|strong="G1186"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w birds|strong="G4071"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w sky|strong="G3772"\+w* \+w live|strong="G2532"\+w* \+w in|strong="G1722"\+w* its \+w branches|strong="G2798"\+w*.”\wj* +\p +\v 20 \w Again|strong="G3825"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w To|strong="G2532"\+w* \+w what|strong="G5101"\+w* \+w shall|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w compare|strong="G3666"\+w* \+w God|strong="G2316"\+w*’s Kingdom? \wj* +\v 21 \wj \+w It|strong="G3739"\+w* \+w is|strong="G1510"\+w* \+w like|strong="G3664"\+w* \+w yeast|strong="G2219"\+w*, \+w which|strong="G3739"\+w* \+w a|strong="G1519"\+w* \+w woman|strong="G1135"\+w* \+w took|strong="G2983"\+w* \+w and|strong="G1135"\+w* \+w hid|strong="G2928"\+w* \+w in|strong="G1519"\+w* \+w three|strong="G5140"\+w* \+w measures|strong="G4568"\+w* \wj*\f + \fr 13:21 \ft literally, three sata. 3 sata is about 39 liters or a bit more than a bushel.\f* \wj \+w of|strong="G1519"\+w* flour, \+w until|strong="G2193"\+w* \+w it|strong="G3739"\+w* \+w was|strong="G1510"\+w* \+w all|strong="G3650"\+w* \+w leavened|strong="G2220"\+w*.”\wj* +\p +\v 22 \w He|strong="G2532"\w* \w went|strong="G2532"\w* \w on|strong="G1519"\w* \w his|strong="G1519"\w* \w way|strong="G2596"\w* \w through|strong="G2596"\w* \w cities|strong="G4172"\w* \w and|strong="G2532"\w* \w villages|strong="G2968"\w*, \w teaching|strong="G1321"\w*, \w and|strong="G2532"\w* traveling \w on|strong="G1519"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w*. +\v 23 \w One|strong="G5100"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w Lord|strong="G2962"\w*, \w are|strong="G3588"\w* \w they|strong="G1161"\w* \w few|strong="G3641"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w saved|strong="G4982"\w*?” +\p \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, +\v 24 \wj “Strive \+w to|strong="G2532"\+w* \+w enter|strong="G1525"\+w* \+w in|strong="G1525"\+w* \+w by|strong="G1223"\+w* \+w the|strong="G2532"\+w* \+w narrow|strong="G4728"\+w* \+w door|strong="G2374"\+w*, \+w for|strong="G3754"\+w* \+w many|strong="G4183"\+w*, \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w will|strong="G2532"\+w* \+w seek|strong="G2212"\+w* \+w to|strong="G2532"\+w* \+w enter|strong="G1525"\+w* \+w in|strong="G1525"\+w* \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G2532"\+w* \+w able|strong="G2480"\+w*. \wj* +\v 25 \wj \+w When|strong="G2532"\+w* \+w once|strong="G3617"\+w* \+w the|strong="G2532"\+w* \+w master|strong="G2962"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w house|strong="G3617"\+w* \+w has|strong="G2962"\+w* \+w risen|strong="G1453"\+w* \+w up|strong="G1453"\+w* \+w and|strong="G2532"\+w* \+w has|strong="G2962"\+w* \+w shut|strong="G1473"\+w* \+w the|strong="G2532"\+w* \+w door|strong="G2374"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* begin \+w to|strong="G2532"\+w* \+w stand|strong="G2476"\+w* \+w outside|strong="G1854"\+w* \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w knock|strong="G2925"\+w* \+w at|strong="G3756"\+w* \+w the|strong="G2532"\+w* \+w door|strong="G2374"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w Lord|strong="G2962"\+w*, \+w Lord|strong="G2962"\+w*, open \+w to|strong="G2532"\+w* \+w us|strong="G3004"\+w*!’ \+w then|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G1510"\+w* answer \+w and|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, ‘\+w I|strong="G1473"\+w* don’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w* \+w you|strong="G5210"\+w* \+w or|strong="G2532"\+w* \+w where|strong="G4159"\+w* \+w you|strong="G5210"\+w* \+w come|strong="G1510"\+w* \+w from|strong="G2532"\+w*.’ \wj* +\v 26 \wj \+w Then|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w will|strong="G2532"\+w* begin \+w to|strong="G2532"\+w* \+w say|strong="G3004"\+w*, ‘\+w We|strong="G2249"\+w* \+w ate|strong="G2068"\+w* \+w and|strong="G2532"\+w* \+w drank|strong="G4095"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G2532"\+w* \+w presence|strong="G1799"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w taught|strong="G1321"\+w* \+w in|strong="G1722"\+w* \+w our|strong="G2532"\+w* \+w streets|strong="G4116"\+w*.’ \wj* +\v 27 \wj \+w He|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w say|strong="G3004"\+w*, ‘\+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w I|strong="G1473"\+w* don’t \+w know|strong="G1492"\+w* \+w where|strong="G4159"\+w* \+w you|strong="G5210"\+w* \+w come|strong="G1510"\+w* \+w from|strong="G2532"\+w*. Depart \+w from|strong="G2532"\+w* \+w me|strong="G1473"\+w*, \+w all|strong="G3956"\+w* \+w you|strong="G5210"\+w* \+w workers|strong="G2040"\+w* \+w of|strong="G2532"\+w* iniquity.’ \wj* +\v 28 \wj \+w There|strong="G1563"\+w* \+w will|strong="G2316"\+w* \+w be|strong="G1510"\+w* \+w weeping|strong="G2805"\+w* \+w and|strong="G2532"\+w* \+w gnashing|strong="G1030"\+w* \+w of|strong="G2316"\+w* \+w teeth|strong="G3599"\+w* \+w when|strong="G3752"\+w* \+w you|strong="G5210"\+w* \+w see|strong="G3708"\+w* Abraham, \+w Isaac|strong="G2464"\+w*, \+w Jacob|strong="G2384"\+w*, \+w and|strong="G2532"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G1722"\+w* \+w prophets|strong="G4396"\+w* \+w in|strong="G1722"\+w* \+w God|strong="G2316"\+w*’s Kingdom, \+w and|strong="G2532"\+w* \+w yourselves|strong="G4771"\+w* \+w being|strong="G1510"\+w* \+w thrown|strong="G1544"\+w* \+w outside|strong="G1854"\+w*. \wj* +\v 29 \wj \+w They|strong="G2532"\+w* \+w will|strong="G2316"\+w* \+w come|strong="G2240"\+w* \+w from|strong="G2532"\+w* \+w the|strong="G1722"\+w* east, \+w west|strong="G1424"\+w*, \+w north|strong="G1005"\+w*, \+w and|strong="G2532"\+w* \+w south|strong="G3558"\+w*, \+w and|strong="G2532"\+w* \+w will|strong="G2316"\+w* sit down \+w in|strong="G1722"\+w* \+w God|strong="G2316"\+w*’s Kingdom. \wj* +\v 30 \wj \+w Behold|strong="G2400"\+w*, \+w there|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w some|strong="G3739"\+w* \+w who|strong="G3739"\+w* \+w are|strong="G1510"\+w* \+w last|strong="G2078"\+w* \+w who|strong="G3739"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w first|strong="G4413"\+w*, \+w and|strong="G2532"\+w* \+w there|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w some|strong="G3739"\+w* \+w who|strong="G3739"\+w* \+w are|strong="G1510"\+w* \+w first|strong="G4413"\+w* \+w who|strong="G3739"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w last|strong="G2078"\+w*.”\wj* +\p +\v 31 \w On|strong="G1722"\w* \w that|strong="G3754"\w* \w same|strong="G2532"\w* \w day|strong="G5610"\w*, \w some|strong="G5100"\w* \w Pharisees|strong="G5330"\w* \w came|strong="G4334"\w*, \w saying|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Get|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G2532"\w* \w here|strong="G1782"\w* \w and|strong="G2532"\w* \w go|strong="G4198"\w* \w away|strong="G1831"\w*, \w for|strong="G3754"\w* \w Herod|strong="G2264"\w* \w wants|strong="G2309"\w* \w to|strong="G2532"\w* kill \w you|strong="G4771"\w*.” +\p +\v 32 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Go|strong="G4198"\+w* \+w and|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w that|strong="G3588"\+w* fox, ‘\+w Behold|strong="G2400"\+w*, \+w I|strong="G2532"\+w* \+w cast|strong="G1544"\+w* \+w out|strong="G1544"\+w* \+w demons|strong="G1140"\+w* \+w and|strong="G2532"\+w* perform \+w cures|strong="G2392"\+w* \+w today|strong="G4594"\+w* \+w and|strong="G2532"\+w* tomorrow, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w third|strong="G5154"\+w* \+w day|strong="G4594"\+w* \+w I|strong="G2532"\+w* \+w complete|strong="G5048"\+w* \+w my|strong="G3708"\+w* mission. \wj* +\v 33 \wj \+w Nevertheless|strong="G4133"\+w* \+w I|strong="G1473"\+w* \+w must|strong="G1163"\+w* \+w go|strong="G4198"\+w* \+w on|strong="G4198"\+w* \+w my|strong="G1473"\+w* \+w way|strong="G4198"\+w* \+w today|strong="G4594"\+w* \+w and|strong="G2532"\+w* tomorrow \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w next|strong="G2192"\+w* \+w day|strong="G4594"\+w*, \+w for|strong="G3754"\+w* \+w it|strong="G2532"\+w* can’\+w t|strong="G3588"\+w* \+w be|strong="G2532"\+w* \+w that|strong="G3754"\+w* \+w a|strong="G2192"\+w* \+w prophet|strong="G4396"\+w* \+w would|strong="G2532"\+w* perish \+w outside|strong="G1854"\+w* \+w of|strong="G2532"\+w* \+w Jerusalem|strong="G2419"\+w*.’\wj* +\p +\v 34 \wj “\+w Jerusalem|strong="G2419"\+w*, \+w Jerusalem|strong="G2419"\+w*, \+w you|strong="G4771"\+w* \+w who|strong="G3739"\+w* kills \+w the|strong="G2532"\+w* \+w prophets|strong="G4396"\+w* \+w and|strong="G2532"\+w* \+w stones|strong="G3036"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3739"\+w* \+w are|strong="G3588"\+w* \+w sent|strong="G2532"\+w* \+w to|strong="G4314"\+w* \+w her|strong="G1438"\+w*! \+w How|strong="G4212"\+w* \+w often|strong="G4212"\+w* \+w I|strong="G3739"\+w* \+w wanted|strong="G2309"\+w* \+w to|strong="G4314"\+w* \+w gather|strong="G1996"\+w* \+w your|strong="G2532"\+w* \+w children|strong="G5043"\+w* \+w together|strong="G1996"\+w*, \+w like|strong="G2309"\+w* \+w a|strong="G2532"\+w* \+w hen|strong="G3733"\+w* \+w gathers|strong="G1996"\+w* \+w her|strong="G1438"\+w* \+w own|strong="G1438"\+w* \+w brood|strong="G3555"\+w* \+w under|strong="G5259"\+w* \+w her|strong="G1438"\+w* \+w wings|strong="G4420"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w refused|strong="G3756"\+w*! \wj* +\v 35 \wj \+w Behold|strong="G2400"\+w*, \+w your|strong="G2962"\+w* \+w house|strong="G3624"\+w* \+w is|strong="G3588"\+w* left \+w to|strong="G3004"\+w* \+w you|strong="G5210"\+w* desolate. \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w you|strong="G5210"\+w* \+w will|strong="G2962"\+w* \+w not|strong="G3756"\+w* \+w see|strong="G3708"\+w* \+w me|strong="G1473"\+w* \+w until|strong="G2193"\+w* \+w you|strong="G5210"\+w* \+w say|strong="G3004"\+w*, ‘\+w Blessed|strong="G2127"\+w* \+w is|strong="G3588"\+w* \+w he|strong="G1161"\+w* \+w who|strong="G3588"\+w* \+w comes|strong="G2064"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w name|strong="G3686"\+w* \+w of|strong="G3686"\+w* \+w the|strong="G1722"\+w* \+w Lord|strong="G2962"\+w*!’” \wj*\x + \xo 13:35 \xt Psalms 118:26\x* +\c 14 +\p +\v 1 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w went|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w house|strong="G3624"\w* \w of|strong="G2532"\w* \w one|strong="G5100"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* rulers \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Pharisees|strong="G5330"\w* \w on|strong="G1722"\w* \w a|strong="G1096"\w* \w Sabbath|strong="G4521"\w* \w to|strong="G1519"\w* \w eat|strong="G2068"\w* bread, \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w watching|strong="G3906"\w* \w him|strong="G3588"\w*. +\v 2 \w Behold|strong="G2400"\w*, \w a|strong="G2532"\w* \w certain|strong="G5100"\w* \w man|strong="G5100"\w* \w who|strong="G2532"\w* \w had|strong="G2532"\w* \w dropsy|strong="G5203"\w* \w was|strong="G1510"\w* \w in|strong="G2532"\w* \w front|strong="G1715"\w* \w of|strong="G2532"\w* \w him|strong="G3708"\w*. +\v 3 \w Jesus|strong="G2424"\w*, answering, \w spoke|strong="G3004"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w lawyers|strong="G3544"\w* \w and|strong="G2532"\w* \w Pharisees|strong="G5330"\w*, \w saying|strong="G3004"\w*, \wj “\+w Is|strong="G3588"\+w* \+w it|strong="G2532"\+w* \+w lawful|strong="G1832"\+w* \+w to|strong="G4314"\+w* \+w heal|strong="G2323"\+w* \+w on|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w Sabbath|strong="G4521"\+w*?”\wj* +\p +\v 4 \w But|strong="G1161"\w* \w they|strong="G2532"\w* \w were|strong="G2532"\w* \w silent|strong="G2270"\w*. +\p \w He|strong="G2532"\w* \w took|strong="G1949"\w* \w him|strong="G2532"\w*, \w and|strong="G2532"\w* \w healed|strong="G2390"\w* \w him|strong="G2532"\w*, \w and|strong="G2532"\w* \w let|strong="G1161"\w* \w him|strong="G2532"\w* \w go|strong="G2532"\w*. +\v 5 \w He|strong="G2532"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Which|strong="G3588"\+w* \+w of|strong="G5207"\+w* \+w you|strong="G5210"\+w*, \+w if|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w son|strong="G5207"\+w*\wj*\f + \fr 14:5 \ft TR reads “donkey” instead of “son”\f* \wj \+w or|strong="G2228"\+w* \+w an|strong="G2532"\+w* \+w ox|strong="G1016"\+w* \+w fell|strong="G4098"\+w* \+w into|strong="G1519"\+w* \+w a|strong="G2532"\+w* \+w well|strong="G2532"\+w*, wouldn’\+w t|strong="G3588"\+w* \+w immediately|strong="G2112"\+w* pull \+w him|strong="G3588"\+w* \+w out|strong="G2532"\+w* \+w on|strong="G1722"\+w* \+w a|strong="G2532"\+w* \+w Sabbath|strong="G4521"\+w* \+w day|strong="G2250"\+w*?”\wj* +\p +\v 6 \w They|strong="G2532"\w* couldn’t answer \w him|strong="G2532"\w* regarding \w these|strong="G3778"\w* \w things|strong="G3778"\w*. +\p +\v 7 \w He|strong="G1161"\w* \w spoke|strong="G3004"\w* \w a|strong="G1161"\w* \w parable|strong="G3850"\w* \w to|strong="G4314"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w invited|strong="G2564"\w*, \w when|strong="G1161"\w* \w he|strong="G1161"\w* \w noticed|strong="G1907"\w* \w how|strong="G4459"\w* \w they|strong="G1161"\w* \w chose|strong="G1586"\w* \w the|strong="G1161"\w* best seats, \w and|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, +\v 8 \wj “\+w When|strong="G3752"\+w* \+w you|strong="G4771"\+w* \+w are|strong="G1510"\+w* \+w invited|strong="G2564"\+w* \+w by|strong="G5259"\+w* \+w anyone|strong="G5100"\+w* \+w to|strong="G1519"\+w* \+w a|strong="G1519"\+w* \+w wedding|strong="G1062"\+w* \+w feast|strong="G1062"\+w*, don’\+w t|strong="G3588"\+w* \+w sit|strong="G2625"\+w* \+w in|strong="G1519"\+w* \+w the|strong="G1519"\+w* best seat, \+w since|strong="G3379"\+w* \+w perhaps|strong="G3379"\+w* \+w someone|strong="G5100"\+w* \+w more|strong="G1784"\+w* honorable \+w than|strong="G3361"\+w* \+w you|strong="G4771"\+w* \+w might|strong="G2564"\+w* \+w be|strong="G1510"\+w* \+w invited|strong="G2564"\+w* \+w by|strong="G5259"\+w* \+w him|strong="G3588"\+w*, \wj* +\v 9 \wj \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w invited|strong="G2564"\+w* \+w both|strong="G2532"\+w* \+w of|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w would|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w and|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w*, ‘\+w Make|strong="G2532"\+w* \+w room|strong="G5117"\+w* \+w for|strong="G2532"\+w* \+w this|strong="G3778"\+w* \+w person|strong="G3778"\+w*.’ \+w Then|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w would|strong="G2532"\+w* begin, \+w with|strong="G3326"\+w* shame, \+w to|strong="G2532"\+w* \+w take|strong="G2532"\+w* \+w the|strong="G2532"\+w* lowest \+w place|strong="G5117"\+w*. \wj* +\v 10 \wj \+w But|strong="G3588"\+w* \+w when|strong="G3752"\+w* \+w you|strong="G4771"\+w* \+w are|strong="G1510"\+w* \+w invited|strong="G2564"\+w*, \+w go|strong="G4198"\+w* \+w and|strong="G2064"\+w* \+w sit|strong="G3956"\+w* \+w in|strong="G1519"\+w* \+w the|strong="G1519"\+w* lowest \+w place|strong="G5117"\+w*, \+w so|strong="G2443"\+w* \+w that|strong="G2443"\+w* \+w when|strong="G3752"\+w* \+w he|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w invited|strong="G2564"\+w* \+w you|strong="G4771"\+w* \+w comes|strong="G2064"\+w*, \+w he|strong="G3588"\+w* \+w may|strong="G2443"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w*, ‘\+w Friend|strong="G5384"\+w*, \+w move|strong="G4320"\+w* \+w up|strong="G1519"\+w* higher.’ \+w Then|strong="G5119"\+w* \+w you|strong="G4771"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w honored|strong="G1391"\+w* \+w in|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w presence|strong="G1799"\+w* \+w of|strong="G1391"\+w* \+w all|strong="G3956"\+w* \+w who|strong="G3588"\+w* \+w sit|strong="G3956"\+w* \+w at|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w table|strong="G4873"\+w* \+w with|strong="G1519"\+w* \+w you|strong="G4771"\+w*. \wj* +\v 11 \wj \+w For|strong="G3754"\+w* \+w everyone|strong="G3956"\+w* \+w who|strong="G3588"\+w* \+w exalts|strong="G5312"\+w* \+w himself|strong="G1438"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w humbled|strong="G5013"\+w*, \+w and|strong="G2532"\+w* \+w whoever|strong="G3748"\+w* \+w humbles|strong="G5013"\+w* \+w himself|strong="G1438"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w exalted|strong="G5312"\+w*.”\wj* +\p +\v 12 \w He|strong="G2532"\w* \w also|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w one|strong="G3588"\w* \w who|strong="G3588"\w* \w had|strong="G2532"\w* \w invited|strong="G2564"\w* \w him|strong="G3588"\w*, \wj “\+w When|strong="G3752"\+w* \+w you|strong="G4771"\+w* \+w make|strong="G4160"\+w* \+w a|strong="G1096"\+w* \+w dinner|strong="G1173"\+w* \+w or|strong="G2228"\+w* \+w a|strong="G1096"\+w* \+w supper|strong="G1173"\+w*, don’\+w t|strong="G3588"\+w* \+w call|strong="G2564"\+w* \+w your|strong="G2532"\+w* \+w friends|strong="G5384"\+w*, \+w nor|strong="G3366"\+w* \+w your|strong="G2532"\+w* brothers, \+w nor|strong="G3366"\+w* \+w your|strong="G2532"\+w* \+w kinsmen|strong="G4773"\+w*, \+w nor|strong="G3366"\+w* \+w rich|strong="G4145"\+w* \+w neighbors|strong="G1069"\+w*, \+w or|strong="G2228"\+w* \+w perhaps|strong="G3379"\+w* \+w they|strong="G2532"\+w* \+w might|strong="G2532"\+w* \+w also|strong="G2532"\+w* return \+w the|strong="G2532"\+w* favor, \+w and|strong="G2532"\+w* pay \+w you|strong="G4771"\+w* back. \wj* +\v 13 \wj But \+w when|strong="G3752"\+w* \+w you|strong="G3752"\+w* \+w make|strong="G4160"\+w* \+w a|strong="G4160"\+w* \+w feast|strong="G1403"\+w*, ask \+w the|strong="G4160"\+w* \+w poor|strong="G4434"\+w*, \+w the|strong="G4160"\+w* maimed, \+w the|strong="G4160"\+w* \+w lame|strong="G5560"\+w*, or \+w the|strong="G4160"\+w* \+w blind|strong="G5185"\+w*; \wj* +\v 14 \wj \+w and|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w blessed|strong="G3107"\+w*, \+w because|strong="G3754"\+w* \+w they|strong="G2532"\+w* don’\+w t|strong="G3588"\+w* \+w have|strong="G2192"\+w* \+w the|strong="G1722"\+w* resources \+w to|strong="G2532"\+w* \+w repay|strong="G2192"\+w* \+w you|strong="G4771"\+w*. \+w For|strong="G1063"\+w* \+w you|strong="G4771"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* repaid \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* resurrection \+w of|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w righteous|strong="G1342"\+w*.” \wj* +\p +\v 15 \w When|strong="G1161"\w* \w one|strong="G5100"\w* \w of|strong="G2316"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w sat|strong="G4873"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w table|strong="G4873"\w* \w with|strong="G1722"\w* \w him|strong="G3588"\w* heard \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w he|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Blessed|strong="G3107"\w* \w is|strong="G3588"\w* \w he|strong="G1161"\w* \w who|strong="G3588"\w* \w will|strong="G2316"\w* feast \w in|strong="G1722"\w* \w God|strong="G2316"\w*’s Kingdom!” +\p +\v 16 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w A|strong="G2532"\+w* \+w certain|strong="G5100"\+w* \+w man|strong="G5100"\+w* \+w made|strong="G4160"\+w* \+w a|strong="G2532"\+w* \+w great|strong="G3173"\+w* \+w supper|strong="G1173"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w invited|strong="G2564"\+w* \+w many|strong="G4183"\+w* \+w people|strong="G4160"\+w*. \wj* +\v 17 \wj \+w He|strong="G2532"\+w* \+w sent|strong="G2532"\+w* \+w out|strong="G2532"\+w* \+w his|strong="G2532"\+w* \+w servant|strong="G1401"\+w* \+w at|strong="G2235"\+w* \+w supper|strong="G1173"\+w* \+w time|strong="G5610"\+w* \+w to|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w were|strong="G1510"\+w* \+w invited|strong="G2564"\+w*, ‘\+w Come|strong="G2064"\+w*, \+w for|strong="G3754"\+w* everything \+w is|strong="G1510"\+w* \+w ready|strong="G2092"\+w* \+w now|strong="G2532"\+w*.’ \wj* +\v 18 \wj \+w They|strong="G2532"\+w* \+w all|strong="G3956"\+w* \+w as|strong="G2532"\+w* \+w one|strong="G1520"\+w* \+w began|strong="G2192"\+w* \+w to|strong="G2532"\+w* \+w make|strong="G2532"\+w* \+w excuses|strong="G3868"\+w*.\wj* +\p \wj “\+w The|strong="G2532"\+w* \+w first|strong="G4413"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w*, ‘\+w I|strong="G1473"\+w* \+w have|strong="G2192"\+w* bought \+w a|strong="G2192"\+w* field, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w must|strong="G2192"\+w* \+w go|strong="G1831"\+w* \+w and|strong="G2532"\+w* \+w see|strong="G3708"\+w* \+w it|strong="G2532"\+w*. \+w Please|strong="G2065"\+w* \+w have|strong="G2192"\+w* \+w me|strong="G1473"\+w* \+w excused|strong="G3868"\+w*.’\wj* +\p +\v 19 \wj “\+w Another|strong="G2087"\+w* \+w said|strong="G3004"\+w*, ‘\+w I|strong="G1473"\+w* \+w have|strong="G2192"\+w* bought \+w five|strong="G4002"\+w* \+w yoke|strong="G2201"\+w* \+w of|strong="G2532"\+w* \+w oxen|strong="G1016"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w must|strong="G2192"\+w* \+w go|strong="G4198"\+w* \+w try|strong="G1381"\+w* \+w them|strong="G3004"\+w* \+w out|strong="G2532"\+w*. \+w Please|strong="G2065"\+w* \+w have|strong="G2192"\+w* \+w me|strong="G1473"\+w* \+w excused|strong="G3868"\+w*.’\wj* +\p +\v 20 \wj “\+w Another|strong="G2087"\+w* \+w said|strong="G3004"\+w*, ‘\+w I|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w married|strong="G1060"\+w* \+w a|strong="G2532"\+w* \+w wife|strong="G1135"\+w*, \+w and|strong="G2532"\+w* \+w therefore|strong="G1223"\+w* \+w I|strong="G2532"\+w* \+w can|strong="G1410"\+w*’t \+w come|strong="G2064"\+w*.’ \wj* +\p +\v 21 \wj “\+w That|strong="G3588"\+w* \+w servant|strong="G1401"\+w* \+w came|strong="G1831"\+w*, \+w and|strong="G2532"\+w* \+w told|strong="G3004"\+w* \+w his|strong="G1519"\+w* \+w lord|strong="G2962"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w*. \+w Then|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w master|strong="G2962"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w house|strong="G3617"\+w*, \+w being|strong="G2532"\+w* \+w angry|strong="G3710"\+w*, \+w said|strong="G3004"\+w* \+w to|strong="G1519"\+w* \+w his|strong="G1519"\+w* \+w servant|strong="G1401"\+w*, ‘\+w Go|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w quickly|strong="G5030"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w streets|strong="G4113"\+w* \+w and|strong="G2532"\+w* \+w lanes|strong="G4505"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w city|strong="G4172"\+w*, \+w and|strong="G2532"\+w* \+w bring|strong="G2532"\+w* \+w in|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w poor|strong="G4434"\+w*, maimed, \+w blind|strong="G5185"\+w*, \+w and|strong="G2532"\+w* \+w lame|strong="G5560"\+w*.’\wj* +\p +\v 22 \wj “\+w The|strong="G2532"\+w* \+w servant|strong="G1401"\+w* \+w said|strong="G3004"\+w*, ‘\+w Lord|strong="G2962"\+w*, \+w it|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w done|strong="G1096"\+w* \+w as|strong="G2532"\+w* \+w you|strong="G3739"\+w* \+w commanded|strong="G2004"\+w*, \+w and|strong="G2532"\+w* \+w there|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w still|strong="G2089"\+w* \+w room|strong="G5117"\+w*.’\wj* +\p +\v 23 \wj “\+w The|strong="G2532"\+w* \+w lord|strong="G2962"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w servant|strong="G1401"\+w*, ‘\+w Go|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w highways|strong="G3598"\+w* \+w and|strong="G2532"\+w* \+w hedges|strong="G5418"\+w*, \+w and|strong="G2532"\+w* compel \+w them|strong="G3588"\+w* \+w to|strong="G1519"\+w* \+w come|strong="G1831"\+w* \+w in|strong="G1519"\+w*, \+w that|strong="G2443"\+w* \+w my|strong="G1525"\+w* \+w house|strong="G3624"\+w* \+w may|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w filled|strong="G1072"\+w*. \wj* +\v 24 \wj \+w For|strong="G1063"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w none|strong="G3762"\+w* \+w of|strong="G3588"\+w* \+w those|strong="G3588"\+w* \+w men|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w were|strong="G3588"\+w* \+w invited|strong="G2564"\+w* \+w will|strong="G1473"\+w* \+w taste|strong="G1089"\+w* \+w of|strong="G3588"\+w* \+w my|strong="G1473"\+w* \+w supper|strong="G1173"\+w*. \+w For|strong="G1063"\+w* many \+w are|strong="G3588"\+w* \+w called|strong="G2564"\+w*, \+w but|strong="G1063"\+w* few \+w are|strong="G3588"\+w* chosen.\wj*\f + \fr 14:24 \ft RP MT includes the last sentence. TR, NU, and FH MT omit: For many are called, but few are chosen.\f*\wj ’”\wj* +\p +\v 25 \w Now|strong="G1161"\w* \w great|strong="G4183"\w* \w multitudes|strong="G3793"\w* \w were|strong="G2532"\w* \w going|strong="G2532"\w* \w with|strong="G4314"\w* \w him|strong="G2532"\w*. \w He|strong="G2532"\w* \w turned|strong="G4762"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G1438"\w*, +\v 26 \wj “\+w If|strong="G1487"\+w* \+w anyone|strong="G5100"\+w* \+w comes|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* doesn’\+w t|strong="G3588"\+w* disregard\wj*\f + \fr 14:26 \ft or, hate \f* \wj \+w his|strong="G1438"\+w* \+w own|strong="G1438"\+w* \+w father|strong="G3962"\+w*, \+w mother|strong="G3384"\+w*, \+w wife|strong="G1135"\+w*, \+w children|strong="G5043"\+w*, brothers, \+w and|strong="G2532"\+w* sisters, \+w yes|strong="G2089"\+w*, \+w and|strong="G2532"\+w* \+w his|strong="G1438"\+w* \+w own|strong="G1438"\+w* \+w life|strong="G5590"\+w* \+w also|strong="G2532"\+w*, \+w he|strong="G2532"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w be|strong="G1510"\+w* \+w my|strong="G1473"\+w* \+w disciple|strong="G3101"\+w*. \wj* +\v 27 \wj \+w Whoever|strong="G3748"\+w* doesn’\+w t|strong="G3588"\+w* \+w bear|strong="G2532"\+w* \+w his|strong="G1438"\+w* \+w own|strong="G1438"\+w* \+w cross|strong="G4716"\+w* \+w and|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w after|strong="G3694"\+w* \+w me|strong="G1473"\+w*, \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w be|strong="G1510"\+w* \+w my|strong="G1473"\+w* \+w disciple|strong="G3101"\+w*. \wj* +\v 28 \wj \+w For|strong="G1063"\+w* \+w which|strong="G3588"\+w* \+w of|strong="G1537"\+w* \+w you|strong="G5210"\+w*, \+w desiring|strong="G2309"\+w* \+w to|strong="G1519"\+w* \+w build|strong="G3618"\+w* \+w a|strong="G2192"\+w* \+w tower|strong="G4444"\+w*, doesn’\+w t|strong="G3588"\+w* \+w first|strong="G4413"\+w* \+w sit|strong="G2523"\+w* \+w down|strong="G2523"\+w* \+w and|strong="G4413"\+w* \+w count|strong="G2192"\+w* \+w the|strong="G1519"\+w* \+w cost|strong="G1160"\+w*, \+w to|strong="G1519"\+w* see \+w if|strong="G1487"\+w* \+w he|strong="G3588"\+w* \+w has|strong="G2192"\+w* enough \+w to|strong="G1519"\+w* complete \+w it|strong="G1063"\+w*? \wj* +\v 29 \wj \+w Or|strong="G2532"\+w* \+w perhaps|strong="G3379"\+w*, \+w when|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w has|strong="G2532"\+w* \+w laid|strong="G5087"\+w* \+w a|strong="G2532"\+w* \+w foundation|strong="G2310"\+w* \+w and|strong="G2532"\+w* isn’\+w t|strong="G3588"\+w* \+w able|strong="G2480"\+w* \+w to|strong="G2443"\+w* \+w finish|strong="G1615"\+w*, \+w everyone|strong="G3956"\+w* \+w who|strong="G3588"\+w* \+w sees|strong="G2334"\+w* begins \+w to|strong="G2443"\+w* \+w mock|strong="G1702"\+w* \+w him|strong="G3588"\+w*, \wj* +\v 30 \wj \+w saying|strong="G3004"\+w*, ‘\+w This|strong="G3778"\+w* \+w man|strong="G3778"\+w* began \+w to|strong="G2532"\+w* \+w build|strong="G3618"\+w* \+w and|strong="G2532"\+w* wasn’\+w t|strong="G3588"\+w* \+w able|strong="G2480"\+w* \+w to|strong="G2532"\+w* \+w finish|strong="G1615"\+w*.’ \wj* +\v 31 \wj \+w Or|strong="G2228"\+w* \+w what|strong="G5101"\+w* \+w king|strong="G3588"\+w*, \+w as|strong="G1519"\+w* \+w he|strong="G3588"\+w* \+w goes|strong="G4198"\+w* \+w to|strong="G1519"\+w* \+w encounter|strong="G5221"\+w* \+w another|strong="G2087"\+w* \+w king|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w war|strong="G4171"\+w*, \+w will|strong="G5101"\+w* \+w not|strong="G3780"\+w* \+w sit|strong="G2523"\+w* \+w down|strong="G2523"\+w* \+w first|strong="G4413"\+w* \+w and|strong="G2064"\+w* \+w consider|strong="G1011"\+w* \+w whether|strong="G1487"\+w* \+w he|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w able|strong="G1415"\+w* \+w with|strong="G3326"\+w* \+w ten|strong="G1176"\+w* \+w thousand|strong="G5505"\+w* \+w to|strong="G1519"\+w* \+w meet|strong="G3588"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G5101"\+w* \+w comes|strong="G2064"\+w* \+w against|strong="G1909"\+w* \+w him|strong="G3588"\+w* \+w with|strong="G3326"\+w* \+w twenty|strong="G1501"\+w* \+w thousand|strong="G5505"\+w*? \wj* +\v 32 \wj \+w Or|strong="G1161"\+w* \+w else|strong="G3361"\+w*, \+w while|strong="G1161"\+w* \+w the|strong="G1161"\+w* \+w other|strong="G1161"\+w* \+w is|strong="G1510"\+w* \+w yet|strong="G2089"\+w* \+w a|strong="G1510"\+w* great way off, \+w he|strong="G1161"\+w* sends \+w an|strong="G1510"\+w* envoy \+w and|strong="G1161"\+w* \+w asks|strong="G2065"\+w* \+w for|strong="G4314"\+w* conditions \+w of|strong="G3588"\+w* \+w peace|strong="G1515"\+w*. \wj* +\v 33 \wj \+w So|strong="G3779"\+w* \+w therefore|strong="G3767"\+w*, \+w whoever|strong="G3739"\+w* \+w of|strong="G1537"\+w* \+w you|strong="G5210"\+w* \+w who|strong="G3739"\+w* doesn’\+w t|strong="G3588"\+w* renounce \+w all|strong="G3956"\+w* \+w that|strong="G3739"\+w* \+w he|strong="G3739"\+w* \+w has|strong="G3739"\+w*, \+w he|strong="G3739"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w be|strong="G1510"\+w* \+w my|strong="G3956"\+w* \+w disciple|strong="G3101"\+w*.\wj* +\p +\v 34 \wj “Salt \+w is|strong="G3588"\+w* \+w good|strong="G2570"\+w*, \+w but|strong="G1161"\+w* \+w if|strong="G1437"\+w* \+w the|strong="G1722"\+w* salt becomes flat \+w and|strong="G2532"\+w* \+w tasteless|strong="G3471"\+w*, \+w with|strong="G1722"\+w* \+w what|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G1437"\+w* season \+w it|strong="G2532"\+w*? \wj* +\v 35 \wj \+w It|strong="G1510"\+w* \+w is|strong="G1510"\+w* \+w fit|strong="G2111"\+w* \+w neither|strong="G3777"\+w* \+w for|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w soil|strong="G1093"\+w* \+w nor|strong="G3777"\+w* \+w for|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w manure|strong="G2874"\+w* \+w pile|strong="G2874"\+w*. \+w It|strong="G1510"\+w* \+w is|strong="G1510"\+w* thrown \+w out|strong="G1854"\+w*. \+w He|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w has|strong="G2192"\+w* \+w ears|strong="G3775"\+w* \+w to|strong="G1519"\+w* hear, \+w let|strong="G1510"\+w* \+w him|strong="G3588"\+w* hear.”\wj* +\c 15 +\p +\v 1 \w Now|strong="G1161"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w tax|strong="G5057"\w* \w collectors|strong="G5057"\w* \w and|strong="G2532"\w* sinners \w were|strong="G1510"\w* \w coming|strong="G1448"\w* \w close|strong="G1448"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* hear \w him|strong="G3588"\w*. +\v 2 \w The|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w scribes|strong="G1122"\w* \w murmured|strong="G1234"\w*, \w saying|strong="G3004"\w*, “\w This|strong="G3778"\w* \w man|strong="G3778"\w* \w welcomes|strong="G4327"\w* sinners, \w and|strong="G2532"\w* \w eats|strong="G4906"\w* \w with|strong="G2532"\w* \w them|strong="G3588"\w*.” +\p +\v 3 \w He|strong="G1161"\w* \w told|strong="G3004"\w* \w them|strong="G3588"\w* \w this|strong="G3778"\w* \w parable|strong="G3850"\w*: +\v 4 \wj “\+w Which|strong="G3588"\+w* \+w of|strong="G1537"\+w* \+w you|strong="G5210"\+w* \+w men|strong="G3588"\+w*, \+w if|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w had|strong="G2192"\+w* \+w one|strong="G1520"\+w* \+w hundred|strong="G1540"\+w* \+w sheep|strong="G4263"\+w* \+w and|strong="G2532"\+w* lost \+w one|strong="G1520"\+w* \+w of|strong="G1537"\+w* \+w them|strong="G3588"\+w*, wouldn’\+w t|strong="G3588"\+w* \+w leave|strong="G2641"\+w* \+w the|strong="G1722"\+w* \+w ninety-nine|strong="G1768"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w wilderness|strong="G2048"\+w* \+w and|strong="G2532"\+w* \+w go|strong="G4198"\+w* \+w after|strong="G1909"\+w* \+w the|strong="G1722"\+w* \+w one|strong="G1520"\+w* \+w that|strong="G3588"\+w* \+w was|strong="G3588"\+w* lost, \+w until|strong="G2193"\+w* \+w he|strong="G2532"\+w* \+w found|strong="G2147"\+w* \+w it|strong="G2532"\+w*? \wj* +\v 5 \wj \+w When|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w has|strong="G2532"\+w* \+w found|strong="G2147"\+w* \+w it|strong="G2532"\+w*, \+w he|strong="G2532"\+w* carries \+w it|strong="G2532"\+w* \+w on|strong="G1909"\+w* \+w his|strong="G2007"\+w* \+w shoulders|strong="G5606"\+w*, \+w rejoicing|strong="G5463"\+w*. \wj* +\v 6 \wj \+w When|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w comes|strong="G2064"\+w* \+w home|strong="G3624"\+w*, \+w he|strong="G2532"\+w* \+w calls|strong="G3004"\+w* \+w together|strong="G4779"\+w* \+w his|strong="G1519"\+w* \+w friends|strong="G5384"\+w* \+w and|strong="G2532"\+w* \+w his|strong="G1519"\+w* \+w neighbors|strong="G1069"\+w*, \+w saying|strong="G3004"\+w* \+w to|strong="G1519"\+w* \+w them|strong="G3588"\+w*, ‘\+w Rejoice|strong="G4796"\+w* \+w with|strong="G2532"\+w* \+w me|strong="G1473"\+w*, \+w for|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w found|strong="G2147"\+w* \+w my|strong="G1473"\+w* \+w sheep|strong="G4263"\+w* \+w which|strong="G3588"\+w* \+w was|strong="G3588"\+w* lost!’ \wj* +\v 7 \wj \+w I|strong="G3754"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w even|strong="G2192"\+w* \+w so|strong="G3779"\+w* \+w there|strong="G3754"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w more|strong="G2192"\+w* \+w joy|strong="G5479"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w* \+w over|strong="G1909"\+w* \+w one|strong="G1520"\+w* sinner \+w who|strong="G3588"\+w* \+w repents|strong="G3340"\+w*, \+w than|strong="G2228"\+w* \+w over|strong="G1909"\+w* \+w ninety-nine|strong="G1768"\+w* \+w righteous|strong="G1342"\+w* \+w people|strong="G1510"\+w* \+w who|strong="G3588"\+w* \+w need|strong="G5532"\+w* \+w no|strong="G3756"\+w* \+w repentance|strong="G3341"\+w*. \wj* +\p +\v 8 \wj “\+w Or|strong="G2228"\+w* \+w what|strong="G5101"\+w* \+w woman|strong="G1135"\+w*, \+w if|strong="G1437"\+w* \+w she|strong="G2532"\+w* \+w had|strong="G2192"\+w* \+w ten|strong="G1176"\+w* drachma\wj*\f + \fr 15:8 \ft A drachma coin was worth about a days wages for an agricultural laborer.\f* \wj \+w coins|strong="G1406"\+w*, \+w if|strong="G1437"\+w* \+w she|strong="G2532"\+w* lost \+w one|strong="G1520"\+w* drachma \+w coin|strong="G1406"\+w*, wouldn’\+w t|strong="G3588"\+w* \+w light|strong="G3088"\+w* \+w a|strong="G2192"\+w* \+w lamp|strong="G3088"\+w*, \+w sweep|strong="G4563"\+w* \+w the|strong="G2532"\+w* \+w house|strong="G3614"\+w*, \+w and|strong="G2532"\+w* \+w seek|strong="G2212"\+w* \+w diligently|strong="G1960"\+w* \+w until|strong="G2193"\+w* \+w she|strong="G2532"\+w* \+w found|strong="G2147"\+w* \+w it|strong="G2532"\+w*? \wj* +\v 9 \wj \+w When|strong="G2532"\+w* \+w she|strong="G2532"\+w* \+w has|strong="G3739"\+w* \+w found|strong="G2147"\+w* \+w it|strong="G2532"\+w*, \+w she|strong="G2532"\+w* \+w calls|strong="G3004"\+w* \+w together|strong="G4779"\+w* \+w her|strong="G3754"\+w* \+w friends|strong="G5384"\+w* \+w and|strong="G2532"\+w* \+w neighbors|strong="G1069"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w Rejoice|strong="G4796"\+w* \+w with|strong="G2532"\+w* \+w me|strong="G1473"\+w*, \+w for|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w found|strong="G2147"\+w* \+w the|strong="G2532"\+w* drachma \+w which|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w had|strong="G2532"\+w* lost!’ \wj* +\v 10 \wj \+w Even|strong="G3779"\+w* \+w so|strong="G3779"\+w*, \+w I|strong="G3004"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w there|strong="G1096"\+w* \+w is|strong="G3588"\+w* \+w joy|strong="G5479"\+w* \+w in|strong="G1909"\+w* \+w the|strong="G1909"\+w* \+w presence|strong="G1799"\+w* \+w of|strong="G2316"\+w* \+w the|strong="G1909"\+w* angels \+w of|strong="G2316"\+w* \+w God|strong="G2316"\+w* \+w over|strong="G1909"\+w* \+w one|strong="G1520"\+w* sinner repenting.”\wj* +\p +\v 11 \w He|strong="G1161"\w* \w said|strong="G3004"\w*, \wj “\+w A|strong="G2192"\+w* \+w certain|strong="G5100"\+w* \+w man|strong="G5100"\+w* \+w had|strong="G2192"\+w* \+w two|strong="G1417"\+w* \+w sons|strong="G5207"\+w*. \wj* +\v 12 \wj \+w The|strong="G2532"\+w* \+w younger|strong="G3501"\+w* \+w of|strong="G2532"\+w* \+w them|strong="G3588"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w his|strong="G2532"\+w* \+w father|strong="G3962"\+w*, ‘\+w Father|strong="G3962"\+w*, \+w give|strong="G1325"\+w* \+w me|strong="G1325"\+w* \+w my|strong="G1325"\+w* \+w share|strong="G3313"\+w* \+w of|strong="G2532"\+w* \+w your|strong="G2532"\+w* property.’ \+w So|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w divided|strong="G1244"\+w* \+w his|strong="G2532"\+w* livelihood \+w between|strong="G1244"\+w* \+w them|strong="G3588"\+w*. \wj* +\v 13 \wj \+w Not|strong="G3756"\+w* \+w many|strong="G4183"\+w* \+w days|strong="G2250"\+w* \+w after|strong="G3326"\+w*, \+w the|strong="G2532"\+w* \+w younger|strong="G3501"\+w* \+w son|strong="G5207"\+w* \+w gathered|strong="G4863"\+w* \+w all|strong="G3956"\+w* \+w of|strong="G5207"\+w* \+w this|strong="G3588"\+w* \+w together|strong="G4863"\+w* \+w and|strong="G2532"\+w* traveled \+w into|strong="G1519"\+w* \+w a|strong="G2532"\+w* \+w far|strong="G3588"\+w* \+w country|strong="G5561"\+w*. \+w There|strong="G1563"\+w* \+w he|strong="G2532"\+w* \+w wasted|strong="G1287"\+w* \+w his|strong="G3956"\+w* property \+w with|strong="G3326"\+w* riotous \+w living|strong="G2198"\+w*. \wj* +\v 14 \wj \+w When|strong="G1161"\+w* \+w he|strong="G2532"\+w* \+w had|strong="G2532"\+w* \+w spent|strong="G1159"\+w* \+w all|strong="G3956"\+w* \+w of|strong="G2532"\+w* \+w it|strong="G2532"\+w*, \+w there|strong="G2532"\+w* \+w arose|strong="G1096"\+w* \+w a|strong="G1096"\+w* \+w severe|strong="G2478"\+w* \+w famine|strong="G3042"\+w* \+w in|strong="G2596"\+w* \+w that|strong="G3588"\+w* \+w country|strong="G5561"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w began|strong="G1096"\+w* \+w to|strong="G2532"\+w* \+w be|strong="G1096"\+w* \+w in|strong="G2596"\+w* \+w need|strong="G5302"\+w*. \wj* +\v 15 \wj \+w He|strong="G2532"\+w* \+w went|strong="G4198"\+w* \+w and|strong="G2532"\+w* \+w joined|strong="G2853"\+w* \+w himself|strong="G1565"\+w* \+w to|strong="G1519"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w citizens|strong="G4177"\+w* \+w of|strong="G2532"\+w* \+w that|strong="G3588"\+w* \+w country|strong="G5561"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w sent|strong="G3992"\+w* \+w him|strong="G3588"\+w* \+w into|strong="G1519"\+w* \+w his|strong="G1519"\+w* \+w fields|strong="G5561"\+w* \+w to|strong="G1519"\+w* \+w feed|strong="G1006"\+w* \+w pigs|strong="G5519"\+w*. \wj* +\v 16 \wj \+w He|strong="G2532"\+w* wanted \+w to|strong="G2532"\+w* \+w fill|strong="G1072"\+w* \+w his|strong="G2532"\+w* \+w belly|strong="G2836"\+w* \+w with|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w pods|strong="G2769"\+w* \+w that|strong="G3739"\+w* \+w the|strong="G2532"\+w* \+w pigs|strong="G5519"\+w* \+w ate|strong="G2068"\+w*, \+w but|strong="G2532"\+w* \+w no|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w gave|strong="G1325"\+w* \+w him|strong="G3588"\+w* \+w any|strong="G3762"\+w*. \wj* +\v 17 \wj \+w But|strong="G1161"\+w* \+w when|strong="G1161"\+w* \+w he|strong="G1161"\+w* \+w came|strong="G2064"\+w* \+w to|strong="G1519"\+w* \+w himself|strong="G1438"\+w*, \+w he|strong="G1161"\+w* \+w said|strong="G5346"\+w*, ‘\+w How|strong="G4214"\+w* \+w many|strong="G4214"\+w* \+w hired|strong="G3407"\+w* servants \+w of|strong="G3962"\+w* \+w my|strong="G1473"\+w* \+w father|strong="G3962"\+w*’s \+w have|strong="G1473"\+w* bread \+w enough|strong="G4052"\+w* \+w to|strong="G1519"\+w* spare, \+w and|strong="G1161"\+w* \+w I|strong="G1473"\+w*’m dying \+w with|strong="G1519"\+w* \+w hunger|strong="G3042"\+w*! \wj* +\v 18 \wj \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w get|strong="G2532"\+w* \+w up|strong="G1519"\+w* \+w and|strong="G2532"\+w* \+w go|strong="G4198"\+w* \+w to|strong="G1519"\+w* \+w my|strong="G1473"\+w* \+w father|strong="G3962"\+w*, \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w him|strong="G3588"\+w*, “\+w Father|strong="G3962"\+w*, \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* sinned \+w against|strong="G4314"\+w* \+w heaven|strong="G3772"\+w* \+w and|strong="G2532"\+w* \+w in|strong="G1519"\+w* \+w your|strong="G2532"\+w* \+w sight|strong="G1799"\+w*. \wj* +\v 19 \wj \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w no|strong="G3765"\+w* \+w more|strong="G3765"\+w* worthy \+w to|strong="G4160"\+w* \+w be|strong="G1510"\+w* \+w called|strong="G2564"\+w* \+w your|strong="G4160"\+w* \+w son|strong="G5207"\+w*. \+w Make|strong="G4160"\+w* \+w me|strong="G1473"\+w* \+w as|strong="G5613"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G5207"\+w* \+w your|strong="G4160"\+w* \+w hired|strong="G3407"\+w* servants.”’\wj* +\p +\v 20 \wj “\+w He|strong="G2532"\+w* arose \+w and|strong="G2532"\+w* \+w came|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w his|strong="G1438"\+w* \+w father|strong="G3962"\+w*. \+w But|strong="G1161"\+w* \+w while|strong="G1161"\+w* \+w he|strong="G2532"\+w* \+w was|strong="G3588"\+w* \+w still|strong="G2089"\+w* \+w far|strong="G3112"\+w* \+w off|strong="G3112"\+w*, \+w his|strong="G1438"\+w* \+w father|strong="G3962"\+w* \+w saw|strong="G3708"\+w* \+w him|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w was|strong="G3588"\+w* \+w moved|strong="G4697"\+w* \+w with|strong="G4314"\+w* \+w compassion|strong="G4697"\+w*, \+w and|strong="G2532"\+w* \+w ran|strong="G5143"\+w*, \+w fell|strong="G1968"\+w* \+w on|strong="G1909"\+w* \+w his|strong="G1438"\+w* \+w neck|strong="G5137"\+w*, \+w and|strong="G2532"\+w* \+w kissed|strong="G2705"\+w* \+w him|strong="G3588"\+w*. \wj* +\v 21 \wj \+w The|strong="G2532"\+w* \+w son|strong="G5207"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G1519"\+w* \+w him|strong="G3588"\+w*, ‘\+w Father|strong="G3962"\+w*, \+w I|strong="G2532"\+w* \+w have|strong="G2532"\+w* sinned \+w against|strong="G1519"\+w* \+w heaven|strong="G3772"\+w* \+w and|strong="G2532"\+w* \+w in|strong="G1519"\+w* \+w your|strong="G2532"\+w* \+w sight|strong="G1799"\+w*. \+w I|strong="G2532"\+w* \+w am|strong="G1510"\+w* \+w no|strong="G3765"\+w* \+w longer|strong="G3765"\+w* worthy \+w to|strong="G1519"\+w* \+w be|strong="G1510"\+w* \+w called|strong="G2564"\+w* \+w your|strong="G2532"\+w* \+w son|strong="G5207"\+w*.’\wj* +\p +\v 22 \wj “\+w But|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w father|strong="G3962"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G1519"\+w* \+w his|strong="G1519"\+w* \+w servants|strong="G1401"\+w*, ‘\+w Bring|strong="G2532"\+w* \+w out|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w best|strong="G4413"\+w* \+w robe|strong="G4749"\+w* \+w and|strong="G2532"\+w* \+w put|strong="G1746"\+w* \+w it|strong="G2532"\+w* \+w on|strong="G1519"\+w* \+w him|strong="G3588"\+w*. \+w Put|strong="G1746"\+w* \+w a|strong="G2532"\+w* \+w ring|strong="G1146"\+w* \+w on|strong="G1519"\+w* \+w his|strong="G1519"\+w* \+w hand|strong="G5495"\+w* \+w and|strong="G2532"\+w* \+w sandals|strong="G5266"\+w* \+w on|strong="G1519"\+w* \+w his|strong="G1519"\+w* \+w feet|strong="G4228"\+w*. \wj* +\v 23 \wj \+w Bring|strong="G5342"\+w* \+w the|strong="G2532"\+w* \+w fattened|strong="G4618"\+w* \+w calf|strong="G3448"\+w*, \+w kill|strong="G2380"\+w* \+w it|strong="G2532"\+w*, \+w and|strong="G2532"\+w* \+w let|strong="G2532"\+w*’s \+w eat|strong="G2068"\+w* \+w and|strong="G2532"\+w* \+w celebrate|strong="G2165"\+w*; \wj* +\v 24 \wj \+w for|strong="G3754"\+w* \+w this|strong="G3778"\+w*, \+w my|strong="G1473"\+w* \+w son|strong="G5207"\+w*, \+w was|strong="G1510"\+w* \+w dead|strong="G3498"\+w* \+w and|strong="G2532"\+w* \+w is|strong="G1510"\+w* alive \+w again|strong="G2532"\+w*. \+w He|strong="G2532"\+w* \+w was|strong="G1510"\+w* lost \+w and|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w found|strong="G2147"\+w*.’ \+w Then|strong="G2532"\+w* \+w they|strong="G2532"\+w* began \+w to|strong="G2532"\+w* \+w celebrate|strong="G2165"\+w*.\wj* +\p +\v 25 \wj “\+w Now|strong="G1161"\+w* \+w his|strong="G1722"\+w* \+w elder|strong="G4245"\+w* \+w son|strong="G5207"\+w* \+w was|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* field. \+w As|strong="G5613"\+w* \+w he|strong="G2532"\+w* \+w came|strong="G2064"\+w* \+w near|strong="G1448"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w house|strong="G3614"\+w*, \+w he|strong="G2532"\+w* heard \+w music|strong="G4858"\+w* \+w and|strong="G2532"\+w* \+w dancing|strong="G5525"\+w*. \wj* +\v 26 \wj \+w He|strong="G2532"\+w* \+w called|strong="G4341"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w servants|strong="G3816"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w asked|strong="G4441"\+w* \+w what|strong="G5101"\+w* \+w was|strong="G1510"\+w* \+w going|strong="G2532"\+w* \+w on|strong="G3588"\+w*. \wj* +\v 27 \wj \+w He|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w*, ‘\+w Your|strong="G2532"\+w* brother \+w has|strong="G3962"\+w* \+w come|strong="G2240"\+w*, \+w and|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w father|strong="G3962"\+w* \+w has|strong="G3962"\+w* \+w killed|strong="G2380"\+w* \+w the|strong="G2532"\+w* \+w fattened|strong="G4618"\+w* \+w calf|strong="G3448"\+w*, \+w because|strong="G3754"\+w* \+w he|strong="G2532"\+w* \+w has|strong="G3962"\+w* received \+w him|strong="G3588"\+w* back \+w safe|strong="G5198"\+w* \+w and|strong="G2532"\+w* healthy.’ \wj* +\v 28 \wj \+w But|strong="G1161"\+w* \+w he|strong="G2532"\+w* \+w was|strong="G3588"\+w* \+w angry|strong="G3710"\+w* \+w and|strong="G2532"\+w* \+w would|strong="G2309"\+w* \+w not|strong="G3756"\+w* \+w go|strong="G1831"\+w* \+w in|strong="G1525"\+w*. \+w Therefore|strong="G1161"\+w* \+w his|strong="G2532"\+w* \+w father|strong="G3962"\+w* \+w came|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w and|strong="G2532"\+w* \+w begged|strong="G3870"\+w* \+w him|strong="G3588"\+w*. \wj* +\v 29 \wj \+w But|strong="G1161"\+w* \+w he|strong="G2532"\+w* \+w answered|strong="G3004"\+w* \+w his|strong="G3708"\+w* \+w father|strong="G3962"\+w*, ‘\+w Behold|strong="G2400"\+w*, \+w these|strong="G3326"\+w* \+w many|strong="G5118"\+w* \+w years|strong="G2094"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w served|strong="G1398"\+w* \+w you|strong="G4771"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w never|strong="G3763"\+w* \+w disobeyed|strong="G3928"\+w* \+w a|strong="G2532"\+w* \+w commandment|strong="G1785"\+w* \+w of|strong="G2532"\+w* \+w yours|strong="G4771"\+w*, \+w but|strong="G1161"\+w* \+w you|strong="G4771"\+w* \+w never|strong="G3763"\+w* \+w gave|strong="G1325"\+w* \+w me|strong="G1325"\+w* \+w a|strong="G2532"\+w* \+w goat|strong="G2056"\+w*, \+w that|strong="G2443"\+w* \+w I|strong="G1473"\+w* \+w might|strong="G2532"\+w* \+w celebrate|strong="G2165"\+w* \+w with|strong="G3326"\+w* \+w my|strong="G3708"\+w* \+w friends|strong="G5384"\+w*. \wj* +\v 30 \wj \+w But|strong="G1161"\+w* \+w when|strong="G3753"\+w* \+w this|strong="G3778"\+w* \+w your|strong="G3588"\+w* \+w son|strong="G5207"\+w* \+w came|strong="G2064"\+w*, \+w who|strong="G3588"\+w* \+w has|strong="G3778"\+w* \+w devoured|strong="G2719"\+w* \+w your|strong="G3588"\+w* living \+w with|strong="G3326"\+w* \+w prostitutes|strong="G4204"\+w*, \+w you|strong="G4771"\+w* \+w killed|strong="G2380"\+w* \+w the|strong="G1161"\+w* \+w fattened|strong="G4618"\+w* \+w calf|strong="G3448"\+w* \+w for|strong="G1161"\+w* \+w him|strong="G3588"\+w*.’\wj* +\p +\v 31 \wj “\+w He|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w*, ‘\+w Son|strong="G5043"\+w*, \+w you|strong="G4771"\+w* \+w are|strong="G1510"\+w* \+w always|strong="G3842"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w all|strong="G3956"\+w* \+w that|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w mine|strong="G1699"\+w* \+w is|strong="G1510"\+w* \+w yours|strong="G4771"\+w*. \wj* +\v 32 \wj \+w But|strong="G1161"\+w* \+w it|strong="G2532"\+w* \+w was|strong="G1510"\+w* appropriate \+w to|strong="G2532"\+w* \+w celebrate|strong="G2165"\+w* \+w and|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w glad|strong="G5463"\+w*, \+w for|strong="G3754"\+w* \+w this|strong="G3778"\+w*, \+w your|strong="G2532"\+w* brother, \+w was|strong="G1510"\+w* \+w dead|strong="G3498"\+w*, \+w and|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w alive|strong="G2198"\+w* \+w again|strong="G2532"\+w*. \+w He|strong="G2532"\+w* \+w was|strong="G1510"\+w* lost, \+w and|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w found|strong="G2147"\+w*.’”\wj* +\c 16 +\p +\v 1 \w He|strong="G2532"\w* \w also|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w his|strong="G2192"\w* \w disciples|strong="G3101"\w*, \wj “\+w There|strong="G2532"\+w* \+w was|strong="G1510"\+w* \+w a|strong="G2192"\+w* \+w certain|strong="G5100"\+w* \+w rich|strong="G4145"\+w* \+w man|strong="G5100"\+w* \+w who|strong="G3739"\+w* \+w had|strong="G2192"\+w* \+w a|strong="G2192"\+w* \+w manager|strong="G3623"\+w*. \+w An|strong="G2192"\+w* accusation \+w was|strong="G1510"\+w* \+w made|strong="G1161"\+w* \+w to|strong="G4314"\+w* \+w him|strong="G3588"\+w* \+w that|strong="G3739"\+w* \+w this|strong="G3778"\+w* \+w man|strong="G5100"\+w* \+w was|strong="G1510"\+w* wasting \+w his|strong="G2192"\+w* \+w possessions|strong="G5225"\+w*. \wj* +\v 2 \wj \+w He|strong="G2532"\+w* \+w called|strong="G3004"\+w* \+w him|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w*, ‘\+w What|strong="G5101"\+w* \+w is|strong="G3588"\+w* \+w this|strong="G3778"\+w* \+w that|strong="G3588"\+w* \+w I|strong="G2532"\+w* \+w hear|strong="G5101"\+w* \+w about|strong="G4012"\+w* \+w you|strong="G4771"\+w*? \+w Give|strong="G3004"\+w* \+w an|strong="G2532"\+w* \+w accounting|strong="G3056"\+w* \+w of|strong="G4012"\+w* \+w your|strong="G2532"\+w* \+w management|strong="G3622"\+w*, \+w for|strong="G1063"\+w* \+w you|strong="G4771"\+w* \+w can|strong="G1410"\+w* \+w no|strong="G3756"\+w* \+w longer|strong="G2089"\+w* \+w be|strong="G2532"\+w* \+w manager|strong="G3621"\+w*.’ \wj* +\p +\v 3 \wj “\+w The|strong="G1722"\+w* \+w manager|strong="G3623"\+w* \+w said|strong="G3004"\+w* \+w within|strong="G1722"\+w* \+w himself|strong="G1438"\+w*, ‘\+w What|strong="G5101"\+w* \+w will|strong="G5101"\+w* \+w I|strong="G1473"\+w* \+w do|strong="G4160"\+w*, \+w seeing|strong="G3754"\+w* \+w that|strong="G3754"\+w* \+w my|strong="G1722"\+w* \+w lord|strong="G2962"\+w* \+w is|strong="G3588"\+w* taking away \+w the|strong="G1722"\+w* \+w management|strong="G3622"\+w* position \+w from|strong="G3756"\+w* \+w me|strong="G1473"\+w*? \+w I|strong="G1473"\+w* don’\+w t|strong="G3588"\+w* \+w have|strong="G1473"\+w* \+w strength|strong="G2480"\+w* \+w to|strong="G3004"\+w* \+w dig|strong="G4626"\+w*. \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* ashamed \+w to|strong="G3004"\+w* \+w beg|strong="G1871"\+w*. \wj* +\v 4 \wj \+w I|strong="G1473"\+w* \+w know|strong="G1097"\+w* \+w what|strong="G5101"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G5101"\+w* \+w do|strong="G4160"\+w*, \+w so|strong="G2443"\+w* \+w that|strong="G2443"\+w* \+w when|strong="G3752"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* \+w removed|strong="G3179"\+w* \+w from|strong="G1537"\+w* \+w management|strong="G3622"\+w*, \+w they|strong="G3588"\+w* \+w may|strong="G2443"\+w* \+w receive|strong="G1209"\+w* \+w me|strong="G1473"\+w* \+w into|strong="G1519"\+w* \+w their|strong="G1438"\+w* \+w houses|strong="G3624"\+w*.’ \wj* +\v 5 \wj \+w Calling|strong="G4341"\+w* \+w each|strong="G1538"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G2532"\+w* \+w his|strong="G1438"\+w* \+w lord|strong="G2962"\+w*’\+w s|strong="G2962"\+w* \+w debtors|strong="G5533"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w*, \+w he|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w first|strong="G4413"\+w*, ‘\+w How|strong="G4214"\+w* \+w much|strong="G4214"\+w* \+w do|strong="G2532"\+w* \+w you|strong="G3004"\+w* \+w owe|strong="G3784"\+w* \+w to|strong="G2532"\+w* \+w my|strong="G1473"\+w* \+w lord|strong="G2962"\+w*?’ \wj* +\v 6 \wj \+w He|strong="G2532"\+w* \+w said|strong="G3004"\+w*, ‘\+w A|strong="G2532"\+w* \+w hundred|strong="G1540"\+w* batos\wj*\f + \fr 16:6 \ft 100 batos is about 395 liters or 104 U. S. gallons.\f* \wj \+w of|strong="G2532"\+w* \+w oil|strong="G1637"\+w*.’ \+w He|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w*, ‘\+w Take|strong="G1209"\+w* \+w your|strong="G2532"\+w* \+w bill|strong="G1121"\+w*, \+w and|strong="G2532"\+w* \+w sit|strong="G2523"\+w* \+w down|strong="G2523"\+w* \+w quickly|strong="G5030"\+w* \+w and|strong="G2532"\+w* \+w write|strong="G1125"\+w* \+w fifty|strong="G4004"\+w*.’ \wj* +\v 7 \wj \+w Then|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w another|strong="G2087"\+w*, ‘\+w How|strong="G4214"\+w* \+w much|strong="G4214"\+w* \+w do|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w owe|strong="G3784"\+w*?’ \+w He|strong="G2532"\+w* \+w said|strong="G3004"\+w*, ‘\+w A|strong="G2532"\+w* \+w hundred|strong="G1540"\+w* cors\wj*\f + \fr 16:7 \ft 100 cors = about 2,110 liters or 600 bushels.\f* \wj \+w of|strong="G2532"\+w* \+w wheat|strong="G4621"\+w*.’ \+w He|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w*, ‘\+w Take|strong="G1209"\+w* \+w your|strong="G2532"\+w* \+w bill|strong="G1121"\+w*, \+w and|strong="G2532"\+w* \+w write|strong="G1125"\+w* \+w eighty|strong="G3589"\+w*.’\wj* +\p +\v 8 \wj “\+w His|strong="G1438"\+w* \+w lord|strong="G2962"\+w* \+w commended|strong="G1867"\+w* \+w the|strong="G2532"\+w* dishonest \+w manager|strong="G3623"\+w* \+w because|strong="G3754"\+w* \+w he|strong="G2532"\+w* \+w had|strong="G2532"\+w* \+w done|strong="G4160"\+w* \+w wisely|strong="G5430"\+w*, \+w for|strong="G3754"\+w* \+w the|strong="G2532"\+w* \+w children|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w this|strong="G3778"\+w* world \+w are|strong="G1510"\+w*, \+w in|strong="G1519"\+w* \+w their|strong="G1438"\+w* \+w own|strong="G1438"\+w* \+w generation|strong="G1074"\+w*, \+w wiser|strong="G5429"\+w* \+w than|strong="G5228"\+w* \+w the|strong="G2532"\+w* \+w children|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G2532"\+w* \+w light|strong="G5457"\+w*. \wj* +\v 9 \wj \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w make|strong="G4160"\+w* \+w for|strong="G1519"\+w* \+w yourselves|strong="G1438"\+w* \+w friends|strong="G5384"\+w* \+w by|strong="G1537"\+w* \+w means|strong="G3004"\+w* \+w of|strong="G1537"\+w* unrighteous \+w mammon|strong="G3126"\+w*, \+w so|strong="G2443"\+w* \+w that|strong="G2443"\+w* \+w when|strong="G3752"\+w* \+w you|strong="G5210"\+w* \+w fail|strong="G1587"\+w*, \+w they|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w receive|strong="G1209"\+w* \+w you|strong="G5210"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* eternal \+w tents|strong="G4633"\+w*. \wj* +\v 10 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w faithful|strong="G4103"\+w* \+w in|strong="G1722"\+w* \+w a|strong="G2532"\+w* \+w very|strong="G4183"\+w* \+w little|strong="G1646"\+w* \+w is|strong="G1510"\+w* \+w faithful|strong="G4103"\+w* \+w also|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w much|strong="G4183"\+w*. \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* dishonest \+w in|strong="G1722"\+w* \+w a|strong="G2532"\+w* \+w very|strong="G4183"\+w* \+w little|strong="G1646"\+w* \+w is|strong="G1510"\+w* \+w also|strong="G2532"\+w* dishonest \+w in|strong="G1722"\+w* \+w much|strong="G4183"\+w*. \wj* +\v 11 \wj \+w If|strong="G1487"\+w* \+w therefore|strong="G3767"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G5210"\+w* \+w not|strong="G3756"\+w* \+w been|strong="G1096"\+w* \+w faithful|strong="G4103"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* unrighteous \+w mammon|strong="G3126"\+w*, \+w who|strong="G5101"\+w* \+w will|strong="G5101"\+w* \+w commit|strong="G3756"\+w* \+w to|strong="G1722"\+w* \+w your|strong="G1487"\+w* \+w trust|strong="G4100"\+w* \+w the|strong="G1722"\+w* \+w true|strong="G4103"\+w* riches? \wj* +\v 12 \wj \+w If|strong="G1487"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w been|strong="G1096"\+w* \+w faithful|strong="G4103"\+w* \+w in|strong="G1722"\+w* \+w that|strong="G3588"\+w* \+w which|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w another|strong="G3588"\+w*’s, \+w who|strong="G5101"\+w* \+w will|strong="G5101"\+w* \+w give|strong="G1325"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3588"\+w* \+w which|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w your|strong="G5212"\+w* own? \wj* +\v 13 \wj \+w No|strong="G3756"\+w* \+w servant|strong="G3610"\+w* \+w can|strong="G1410"\+w* \+w serve|strong="G1398"\+w* \+w two|strong="G1417"\+w* \+w masters|strong="G2962"\+w*, \+w for|strong="G1063"\+w* \+w either|strong="G2228"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2316"\+w* \+w hate|strong="G3404"\+w* \+w the|strong="G2532"\+w* \+w one|strong="G1520"\+w* \+w and|strong="G2532"\+w* love \+w the|strong="G2532"\+w* \+w other|strong="G2087"\+w*; \+w or|strong="G2228"\+w* \+w else|strong="G2228"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2316"\+w* hold \+w to|strong="G2532"\+w* \+w one|strong="G1520"\+w* \+w and|strong="G2532"\+w* \+w despise|strong="G2706"\+w* \+w the|strong="G2532"\+w* \+w other|strong="G2087"\+w*. \+w You|strong="G2532"\+w* aren’\+w t|strong="G3588"\+w* \+w able|strong="G1410"\+w* \+w to|strong="G2532"\+w* \+w serve|strong="G1398"\+w* \+w God|strong="G2316"\+w* \+w and|strong="G2532"\+w* \+w Mammon|strong="G3126"\+w*.”\wj*\f + \fr 16:13 \ft “Mammon” refers to riches or a false god of wealth.\f* +\p +\v 14 \w The|strong="G2532"\w* \w Pharisees|strong="G5330"\w*, \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w lovers|strong="G5366"\w* \w of|strong="G2532"\w* \w money|strong="G5366"\w*, \w also|strong="G2532"\w* heard \w all|strong="G3956"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* scoffed \w at|strong="G1161"\w* \w him|strong="G3588"\w*. +\v 15 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w You|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w justify|strong="G1344"\+w* \+w yourselves|strong="G1438"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w sight|strong="G1799"\+w* \+w of|strong="G2316"\+w* \+w men|strong="G3588"\+w*, \+w but|strong="G1161"\+w* \+w God|strong="G2316"\+w* \+w knows|strong="G1097"\+w* \+w your|strong="G2532"\+w* \+w hearts|strong="G2588"\+w*. \+w For|strong="G3754"\+w* \+w that|strong="G3754"\+w* \+w which|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w exalted|strong="G5308"\+w* \+w among|strong="G1722"\+w* \+w men|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w an|strong="G2532"\+w* abomination \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w sight|strong="G1799"\+w* \+w of|strong="G2316"\+w* \+w God|strong="G2316"\+w*. \wj* +\p +\v 16 \wj “\+w The|strong="G2532"\+w* \+w law|strong="G3551"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w prophets|strong="G4396"\+w* \+w were|strong="G3588"\+w* \+w until|strong="G3360"\+w* \+w John|strong="G2491"\+w*. \+w From|strong="G2532"\+w* \+w that|strong="G3588"\+w* \+w time|strong="G5119"\+w* \+w the|strong="G2532"\+w* \+w Good|strong="G2097"\+w* \+w News|strong="G2097"\+w* \+w of|strong="G2316"\+w* \+w God|strong="G2316"\+w*’s Kingdom \+w is|strong="G3588"\+w* \+w preached|strong="G2097"\+w*, \+w and|strong="G2532"\+w* \+w everyone|strong="G3956"\+w* \+w is|strong="G3588"\+w* forcing \+w his|strong="G1438"\+w* \+w way|strong="G3956"\+w* \+w into|strong="G1519"\+w* \+w it|strong="G2532"\+w*. \wj* +\v 17 \wj \+w But|strong="G1161"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w easier|strong="G2123"\+w* \+w for|strong="G1161"\+w* \+w heaven|strong="G3772"\+w* \+w and|strong="G2532"\+w* \+w earth|strong="G1093"\+w* \+w to|strong="G2532"\+w* \+w pass|strong="G3928"\+w* \+w away|strong="G3928"\+w* \+w than|strong="G2228"\+w* \+w for|strong="G1161"\+w* \+w one|strong="G1520"\+w* tiny \+w stroke|strong="G2762"\+w* \+w of|strong="G2532"\+w* \+w a|strong="G2532"\+w* pen \+w in|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w law|strong="G3551"\+w* \+w to|strong="G2532"\+w* \+w fall|strong="G4098"\+w*. \wj* +\p +\v 18 \wj “\+w Everyone|strong="G3956"\+w* \+w who|strong="G3588"\+w* divorces \+w his|strong="G3956"\+w* \+w wife|strong="G1135"\+w* \+w and|strong="G2532"\+w* \+w marries|strong="G1060"\+w* \+w another|strong="G2087"\+w* \+w commits|strong="G3431"\+w* \+w adultery|strong="G3431"\+w*. \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w marries|strong="G1060"\+w* \+w one|strong="G3956"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* divorced \+w from|strong="G2532"\+w* \+w a|strong="G2532"\+w* husband \+w commits|strong="G3431"\+w* \+w adultery|strong="G3431"\+w*. \wj* +\p +\v 19 \wj “\+w Now|strong="G1161"\+w* \+w there|strong="G2532"\+w* \+w was|strong="G1510"\+w* \+w a|strong="G2532"\+w* \+w certain|strong="G5100"\+w* \+w rich|strong="G4145"\+w* \+w man|strong="G5100"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w was|strong="G1510"\+w* clothed \+w in|strong="G2596"\+w* \+w purple|strong="G4209"\+w* \+w and|strong="G2532"\+w* \+w fine|strong="G2532"\+w* \+w linen|strong="G1040"\+w*, \+w living|strong="G2165"\+w* \+w in|strong="G2596"\+w* luxury \+w every|strong="G2596"\+w* \+w day|strong="G2250"\+w*. \wj* +\v 20 \wj \+w A|strong="G1161"\+w* \+w certain|strong="G5100"\+w* \+w beggar|strong="G4434"\+w*, \+w named|strong="G3686"\+w* \+w Lazarus|strong="G2976"\+w*, \+w was|strong="G3588"\+w* taken \+w to|strong="G4314"\+w* \+w his|strong="G4314"\+w* \+w gate|strong="G4440"\+w*, full \+w of|strong="G3686"\+w* \+w sores|strong="G1669"\+w*, \wj* +\v 21 \wj \+w and|strong="G2532"\+w* \+w desiring|strong="G1937"\+w* \+w to|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w fed|strong="G5526"\+w* \+w with|strong="G2532"\+w* \+w the|strong="G2532"\+w* crumbs \+w that|strong="G3588"\+w* \+w fell|strong="G4098"\+w* \+w from|strong="G2064"\+w* \+w the|strong="G2532"\+w* \+w rich|strong="G4145"\+w* \+w man|strong="G4145"\+w*’s \+w table|strong="G5132"\+w*. Yes, \+w even|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w dogs|strong="G2965"\+w* \+w came|strong="G2064"\+w* \+w and|strong="G2532"\+w* licked \+w his|strong="G2532"\+w* \+w sores|strong="G1668"\+w*. \wj* +\v 22 \wj \+w The|strong="G2532"\+w* \+w beggar|strong="G4434"\+w* \+w died|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w was|strong="G1096"\+w* \+w carried|strong="G2532"\+w* away \+w by|strong="G5259"\+w* \+w the|strong="G2532"\+w* angels \+w to|strong="G1519"\+w* Abraham’s \+w bosom|strong="G2859"\+w*. \+w The|strong="G2532"\+w* \+w rich|strong="G4145"\+w* \+w man|strong="G4145"\+w* \+w also|strong="G2532"\+w* \+w died|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w was|strong="G1096"\+w* \+w buried|strong="G2290"\+w*. \wj* +\v 23 \wj \+w In|strong="G1722"\+w* Hades,\wj*\f + \fr 16:23 \ft or, Hell\f* \wj \+w he|strong="G2532"\+w* \+w lifted|strong="G1869"\+w* \+w up|strong="G1869"\+w* \+w his|strong="G1722"\+w* \+w eyes|strong="G3788"\+w*, \+w being|strong="G5225"\+w* \+w in|strong="G1722"\+w* torment, \+w and|strong="G2532"\+w* \+w saw|strong="G3708"\+w* Abraham \+w far|strong="G3113"\+w* \+w off|strong="G3113"\+w*, \+w and|strong="G2532"\+w* \+w Lazarus|strong="G2976"\+w* \+w at|strong="G1722"\+w* \+w his|strong="G1722"\+w* \+w bosom|strong="G2859"\+w*. \wj* +\v 24 \wj \+w He|strong="G2532"\+w* \+w cried|strong="G5455"\+w* \+w and|strong="G2532"\+w* \+w said|strong="G3004"\+w*, ‘\+w Father|strong="G3962"\+w* Abraham, \+w have|strong="G2532"\+w* \+w mercy|strong="G1653"\+w* \+w on|strong="G1722"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w send|strong="G3992"\+w* \+w Lazarus|strong="G2976"\+w*, \+w that|strong="G3754"\+w* \+w he|strong="G2532"\+w* \+w may|strong="G2532"\+w* dip \+w the|strong="G1722"\+w* tip \+w of|strong="G2532"\+w* \+w his|strong="G1722"\+w* \+w finger|strong="G1147"\+w* \+w in|strong="G1722"\+w* \+w water|strong="G5204"\+w* \+w and|strong="G2532"\+w* \+w cool|strong="G2711"\+w* \+w my|strong="G1722"\+w* \+w tongue|strong="G1100"\+w*! \+w For|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* \+w in|strong="G1722"\+w* anguish \+w in|strong="G1722"\+w* \+w this|strong="G3778"\+w* \+w flame|strong="G5395"\+w*.’\wj* +\p +\v 25 \wj “\+w But|strong="G1161"\+w* Abraham \+w said|strong="G3004"\+w*, ‘\+w Son|strong="G5043"\+w*, \+w remember|strong="G3403"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w*, \+w in|strong="G1722"\+w* \+w your|strong="G2532"\+w* \+w lifetime|strong="G2222"\+w*, received \+w your|strong="G2532"\+w* \+w good|strong="G3588"\+w* \+w things|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w Lazarus|strong="G2976"\+w*, \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w same|strong="G3668"\+w* \+w way|strong="G3668"\+w*, \+w bad|strong="G2556"\+w* \+w things|strong="G3588"\+w*. \+w But|strong="G1161"\+w* \+w here|strong="G5602"\+w* \+w he|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w now|strong="G1161"\+w* \+w comforted|strong="G3870"\+w* \+w and|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w are|strong="G3588"\+w* \+w in|strong="G1722"\+w* anguish. \wj* +\v 26 \wj \+w Besides|strong="G2532"\+w* \+w all|strong="G3956"\+w* \+w this|strong="G3778"\+w*, \+w between|strong="G3342"\+w* \+w us|strong="G2249"\+w* \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w there|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w a|strong="G2532"\+w* \+w great|strong="G3173"\+w* \+w gulf|strong="G5490"\+w* \+w fixed|strong="G4741"\+w*, \+w that|strong="G3588"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w want|strong="G2309"\+w* \+w to|strong="G4314"\+w* \+w pass|strong="G1224"\+w* \+w from|strong="G2532"\+w* \+w here|strong="G1759"\+w* \+w to|strong="G4314"\+w* \+w you|strong="G5210"\+w* \+w are|strong="G3588"\+w* \+w not|strong="G3361"\+w* \+w able|strong="G1410"\+w*, \+w and|strong="G2532"\+w* \+w that|strong="G3588"\+w* \+w no|strong="G3361"\+w* \+w one|strong="G3956"\+w* \+w may|strong="G2532"\+w* \+w cross|strong="G1276"\+w* \+w over|strong="G1276"\+w* \+w from|strong="G2532"\+w* \+w there|strong="G2532"\+w* \+w to|strong="G4314"\+w* \+w us|strong="G2249"\+w*.’\wj* +\p +\v 27 \wj “\+w He|strong="G1161"\+w* \+w said|strong="G3004"\+w*, ‘\+w I|strong="G1473"\+w* \+w ask|strong="G2065"\+w* \+w you|strong="G4771"\+w* \+w therefore|strong="G3767"\+w*, \+w father|strong="G3962"\+w*, \+w that|strong="G2443"\+w* \+w you|strong="G4771"\+w* would \+w send|strong="G3992"\+w* \+w him|strong="G3588"\+w* \+w to|strong="G1519"\+w* \+w my|strong="G1473"\+w* \+w father|strong="G3962"\+w*’s \+w house|strong="G3624"\+w*—\wj* +\v 28 \wj \+w for|strong="G1063"\+w* \+w I|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w five|strong="G4002"\+w* brothers—\+w that|strong="G2443"\+w* \+w he|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w testify|strong="G1263"\+w* \+w to|strong="G1519"\+w* \+w them|strong="G3588"\+w*, \+w so|strong="G2443"\+w* \+w they|strong="G2532"\+w* won’\+w t|strong="G3588"\+w* \+w also|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w into|strong="G1519"\+w* \+w this|strong="G3778"\+w* \+w place|strong="G5117"\+w* \+w of|strong="G2532"\+w* torment.’\wj* +\p +\v 29 \wj “\+w But|strong="G1161"\+w* Abraham \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w*, ‘\+w They|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w Moses|strong="G3475"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w prophets|strong="G4396"\+w*. \+w Let|strong="G1161"\+w* \+w them|strong="G3588"\+w* listen \+w to|strong="G2532"\+w* \+w them|strong="G3588"\+w*.’\wj* +\p +\v 30 \wj “\+w He|strong="G1161"\+w* \+w said|strong="G3004"\+w*, ‘\+w No|strong="G3780"\+w*, \+w father|strong="G3962"\+w* Abraham, \+w but|strong="G1161"\+w* \+w if|strong="G1437"\+w* \+w one|strong="G5100"\+w* \+w goes|strong="G4198"\+w* \+w to|strong="G4314"\+w* \+w them|strong="G3588"\+w* \+w from|strong="G3588"\+w* \+w the|strong="G1161"\+w* \+w dead|strong="G3498"\+w*, \+w they|strong="G1161"\+w* \+w will|strong="G5100"\+w* \+w repent|strong="G3340"\+w*.’\wj* +\p +\v 31 \wj “\+w He|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w*, ‘\+w If|strong="G1487"\+w* \+w they|strong="G2532"\+w* don’\+w t|strong="G3588"\+w* \+w listen|strong="G3982"\+w* \+w to|strong="G2532"\+w* \+w Moses|strong="G3475"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w prophets|strong="G4396"\+w*, \+w neither|strong="G3761"\+w* \+w will|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w persuaded|strong="G3982"\+w* \+w if|strong="G1487"\+w* \+w one|strong="G5100"\+w* rises \+w from|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w dead|strong="G3498"\+w*.’”\wj* +\c 17 +\p +\v 1 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w the|strong="G1161"\w* \w disciples|strong="G3101"\w*, \wj “\+w It|strong="G1161"\+w* \+w is|strong="G1510"\+w* impossible \+w that|strong="G3739"\+w* \+w no|strong="G3361"\+w* occasions \+w of|strong="G1223"\+w* \+w stumbling|strong="G4625"\+w* \+w should|strong="G3588"\+w* \+w come|strong="G2064"\+w*, \+w but|strong="G1161"\+w* \+w woe|strong="G3759"\+w* \+w to|strong="G4314"\+w* \+w him|strong="G3588"\+w* \+w through|strong="G1223"\+w* \+w whom|strong="G3739"\+w* \+w they|strong="G1161"\+w* \+w come|strong="G2064"\+w*! \wj* +\v 2 \wj \+w It|strong="G2532"\+w* \+w would|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w better|strong="G3081"\+w* \+w for|strong="G1519"\+w* \+w him|strong="G3588"\+w* \+w if|strong="G1487"\+w* \+w a|strong="G2532"\+w* \+w millstone|strong="G3037"\+w* \+w were|strong="G3588"\+w* \+w hung|strong="G4029"\+w* \+w around|strong="G4012"\+w* \+w his|strong="G1519"\+w* \+w neck|strong="G5137"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w were|strong="G3588"\+w* \+w thrown|strong="G4496"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w sea|strong="G2281"\+w*, \+w rather|strong="G2228"\+w* \+w than|strong="G2228"\+w* \+w that|strong="G2443"\+w* \+w he|strong="G2532"\+w* \+w should|strong="G3588"\+w* \+w cause|strong="G4624"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G4012"\+w* \+w these|strong="G3778"\+w* \+w little|strong="G3398"\+w* \+w ones|strong="G3398"\+w* \+w to|strong="G1519"\+w* \+w stumble|strong="G4624"\+w*. \wj* +\v 3 \wj \+w Be|strong="G2532"\+w* \+w careful|strong="G4337"\+w*. \+w If|strong="G1437"\+w* \+w your|strong="G1437"\+w* brother sins against \+w you|strong="G4771"\+w*, \+w rebuke|strong="G2008"\+w* \+w him|strong="G3588"\+w*. \+w If|strong="G1437"\+w* \+w he|strong="G2532"\+w* \+w repents|strong="G3340"\+w*, forgive \+w him|strong="G3588"\+w*. \wj* +\v 4 \wj \+w If|strong="G1437"\+w* \+w he|strong="G2532"\+w* sins \+w against|strong="G4314"\+w* \+w you|strong="G4771"\+w* \+w seven|strong="G2034"\+w* \+w times|strong="G2034"\+w* \+w in|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w day|strong="G2250"\+w*, \+w and|strong="G2532"\+w* \+w seven|strong="G2034"\+w* \+w times|strong="G2034"\+w* \+w returns|strong="G1994"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w I|strong="G2532"\+w* \+w repent|strong="G3340"\+w*,’ \+w you|strong="G4771"\+w* \+w shall|strong="G2532"\+w* forgive \+w him|strong="G3588"\+w*.”\wj* +\p +\v 5 \w The|strong="G2532"\w* apostles \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, “\w Increase|strong="G4369"\w* \w our|strong="G2532"\w* \w faith|strong="G4102"\w*.” +\p +\v 6 \w The|strong="G1722"\w* \w Lord|strong="G2962"\w* \w said|strong="G3004"\w*, \wj “\+w If|strong="G1487"\+w* \+w you|strong="G5210"\+w* \+w had|strong="G2192"\+w* \+w faith|strong="G4102"\+w* \+w like|strong="G5613"\+w* \+w a|strong="G2192"\+w* \+w grain|strong="G2848"\+w* \+w of|strong="G2532"\+w* \+w mustard|strong="G4615"\+w* \+w seed|strong="G2848"\+w*, \+w you|strong="G5210"\+w* \+w would|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w this|strong="G3778"\+w* sycamore \+w tree|strong="G4807"\+w*, ‘\+w Be|strong="G2532"\+w* \+w uprooted|strong="G1610"\+w* \+w and|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w planted|strong="G5452"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w sea|strong="G2281"\+w*,’ \+w and|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w would|strong="G2532"\+w* \+w obey|strong="G5219"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 7 \wj \+w But|strong="G1161"\+w* \+w who|strong="G3739"\+w* \+w is|strong="G3588"\+w* \+w there|strong="G1161"\+w* \+w among|strong="G1537"\+w* \+w you|strong="G5210"\+w*, \+w having|strong="G2192"\+w* \+w a|strong="G2192"\+w* \+w servant|strong="G1401"\+w* plowing \+w or|strong="G2228"\+w* \+w keeping|strong="G2192"\+w* \+w sheep|strong="G4165"\+w*, \+w that|strong="G3739"\+w* \+w will|strong="G5101"\+w* \+w say|strong="G3004"\+w* \+w when|strong="G1161"\+w* \+w he|strong="G1161"\+w* \+w comes|strong="G1525"\+w* \+w in|strong="G1525"\+w* \+w from|strong="G1537"\+w* \+w the|strong="G1537"\+w* field, ‘\+w Come|strong="G1525"\+w* \+w immediately|strong="G2112"\+w* \+w and|strong="G1161"\+w* sit \+w down|strong="G1537"\+w* \+w at|strong="G1537"\+w* \+w the|strong="G1537"\+w* table’? \wj* +\v 8 \wj Wouldn’t \+w he|strong="G2532"\+w* \+w rather|strong="G3780"\+w* \+w tell|strong="G3004"\+w* \+w him|strong="G2532"\+w*, ‘\+w Prepare|strong="G2090"\+w* \+w my|strong="G1473"\+w* \+w supper|strong="G1172"\+w*, \+w clothe|strong="G4024"\+w* \+w yourself|strong="G4771"\+w* properly, \+w and|strong="G2532"\+w* \+w serve|strong="G1247"\+w* \+w me|strong="G1473"\+w* \+w while|strong="G2193"\+w* \+w I|strong="G1473"\+w* \+w eat|strong="G2068"\+w* \+w and|strong="G2532"\+w* \+w drink|strong="G4095"\+w*. \+w Afterward|strong="G3326"\+w* \+w you|strong="G4771"\+w* \+w shall|strong="G2532"\+w* \+w eat|strong="G2068"\+w* \+w and|strong="G2532"\+w* \+w drink|strong="G4095"\+w*’? \wj* +\v 9 \wj \+w Does|strong="G4160"\+w* \+w he|strong="G3754"\+w* \+w thank|strong="G5485"\+w* \+w that|strong="G3754"\+w* \+w servant|strong="G1401"\+w* \+w because|strong="G3754"\+w* \+w he|strong="G3754"\+w* \+w did|strong="G4160"\+w* \+w the|strong="G3588"\+w* \+w things|strong="G3588"\+w* \+w that|strong="G3754"\+w* \+w were|strong="G3588"\+w* \+w commanded|strong="G1299"\+w*? \+w I|strong="G3754"\+w* \+w think|strong="G2192"\+w* \+w not|strong="G3361"\+w*. \wj* +\v 10 \wj \+w Even|strong="G2532"\+w* \+w so|strong="G3779"\+w* \+w you|strong="G5210"\+w* \+w also|strong="G2532"\+w*, \+w when|strong="G3752"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2532"\+w* \+w done|strong="G4160"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3956"\+w* \+w that|strong="G3754"\+w* \+w are|strong="G1510"\+w* \+w commanded|strong="G1299"\+w* \+w you|strong="G5210"\+w*, \+w say|strong="G3004"\+w*, ‘\+w We|strong="G3739"\+w* \+w are|strong="G1510"\+w* unworthy \+w servants|strong="G1401"\+w*. \+w We|strong="G3739"\+w* \+w have|strong="G2532"\+w* \+w done|strong="G4160"\+w* \+w our|strong="G2532"\+w* duty.’” \wj* +\p +\v 11 \w As|strong="G1519"\w* \w he|strong="G2532"\w* \w was|strong="G1096"\w* \w on|strong="G1722"\w* \w his|strong="G1223"\w* \w way|strong="G4198"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w*, \w he|strong="G2532"\w* \w was|strong="G1096"\w* \w passing|strong="G1330"\w* \w along|strong="G2532"\w* \w the|strong="G1722"\w* borders \w of|strong="G1223"\w* \w Samaria|strong="G4540"\w* \w and|strong="G2532"\w* \w Galilee|strong="G1056"\w*. +\v 12 \w As|strong="G1519"\w* \w he|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w a|strong="G2532"\w* \w certain|strong="G5100"\w* \w village|strong="G2968"\w*, \w ten|strong="G1176"\w* \w men|strong="G5100"\w* \w who|strong="G3739"\w* \w were|strong="G2532"\w* \w lepers|strong="G3015"\w* \w met|strong="G5221"\w* \w him|strong="G3739"\w*, \w who|strong="G3739"\w* \w stood|strong="G2476"\w* \w at|strong="G1519"\w* \w a|strong="G2532"\w* \w distance|strong="G4207"\w*. +\v 13 \w They|strong="G2532"\w* \w lifted|strong="G2532"\w* \w up|strong="G2532"\w* \w their|strong="G2532"\w* \w voices|strong="G5456"\w*, \w saying|strong="G3004"\w*, “\w Jesus|strong="G2424"\w*, \w Master|strong="G1988"\w*, \w have|strong="G2532"\w* \w mercy|strong="G1653"\w* \w on|strong="G1653"\w* \w us|strong="G3004"\w*!” +\p +\v 14 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w them|strong="G3588"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Go|strong="G4198"\+w* \+w and|strong="G2532"\+w* \+w show|strong="G1925"\+w* \+w yourselves|strong="G1438"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w priests|strong="G2409"\+w*.”\wj* \w As|strong="G1722"\w* \w they|strong="G2532"\w* \w went|strong="G4198"\w*, \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w cleansed|strong="G2511"\w*. +\v 15 \w One|strong="G1520"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w*, \w when|strong="G1161"\w* \w he|strong="G1161"\w* \w saw|strong="G3708"\w* \w that|strong="G3754"\w* \w he|strong="G1161"\w* \w was|strong="G3588"\w* \w healed|strong="G2390"\w*, \w turned|strong="G5290"\w* \w back|strong="G5290"\w*, \w glorifying|strong="G1392"\w* \w God|strong="G2316"\w* \w with|strong="G3326"\w* \w a|strong="G3708"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*. +\v 16 \w He|strong="G2532"\w* \w fell|strong="G4098"\w* \w on|strong="G1909"\w* \w his|strong="G1909"\w* \w face|strong="G4383"\w* \w at|strong="G1909"\w* \w Jesus|strong="G1510"\w*’ \w feet|strong="G4228"\w*, \w giving|strong="G2168"\w* \w him|strong="G3588"\w* \w thanks|strong="G2168"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w Samaritan|strong="G4541"\w*. +\p +\v 17 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w*, \wj “Weren’\+w t|strong="G3588"\+w* \+w the|strong="G1161"\+w* \+w ten|strong="G1176"\+w* \+w cleansed|strong="G2511"\+w*? \+w But|strong="G1161"\+w* \+w where|strong="G4226"\+w* \+w are|strong="G3588"\+w* \+w the|strong="G1161"\+w* \+w nine|strong="G1767"\+w*? \wj* +\v 18 \wj \+w Were|strong="G3588"\+w* \+w there|strong="G1487"\+w* \+w none|strong="G3756"\+w* \+w found|strong="G2147"\+w* \+w who|strong="G3588"\+w* \+w returned|strong="G5290"\+w* \+w to|strong="G1325"\+w* \+w give|strong="G1325"\+w* \+w glory|strong="G1391"\+w* \+w to|strong="G1325"\+w* \+w God|strong="G2316"\+w*, \+w except|strong="G1487"\+w* \+w this|strong="G3778"\+w* foreigner?”\wj* +\v 19 \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Get|strong="G4982"\+w* \+w up|strong="G2532"\+w*, \+w and|strong="G2532"\+w* \+w go|strong="G4198"\+w* \+w your|strong="G2532"\+w* \+w way|strong="G4198"\+w*. \+w Your|strong="G2532"\+w* \+w faith|strong="G4102"\+w* \+w has|strong="G4102"\+w* \+w healed|strong="G4982"\+w* \+w you|strong="G4771"\+w*.”\wj* +\p +\v 20 \w Being|strong="G2532"\w* \w asked|strong="G1905"\w* \w by|strong="G5259"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w when|strong="G1161"\w* \w God|strong="G2316"\w*’s Kingdom \w would|strong="G2316"\w* \w come|strong="G2064"\w*, \w he|strong="G2532"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w God|strong="G2316"\+w*’s Kingdom doesn’\+w t|strong="G3588"\+w* \+w come|strong="G2064"\+w* \+w with|strong="G3326"\+w* \+w observation|strong="G3907"\+w*; \wj* +\v 21 \wj \+w neither|strong="G3761"\+w* \+w will|strong="G2316"\+w* \+w they|strong="G3588"\+w* \+w say|strong="G3004"\+w*, ‘\+w Look|strong="G2400"\+w*, \+w here|strong="G5602"\+w*!’ \+w or|strong="G2228"\+w*, ‘\+w Look|strong="G2400"\+w*, \+w there|strong="G1563"\+w*!’ \+w for|strong="G1063"\+w* \+w behold|strong="G2400"\+w*, \+w God|strong="G2316"\+w*’s Kingdom \+w is|strong="G1510"\+w* \+w within|strong="G1787"\+w* \+w you|strong="G5210"\+w*.”\wj* +\p +\v 22 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w*, \wj “\+w The|strong="G2532"\+w* \+w days|strong="G2250"\+w* \+w will|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w when|strong="G3753"\+w* \+w you|strong="G3004"\+w* \+w will|strong="G2532"\+w* \+w desire|strong="G1937"\+w* \+w to|strong="G4314"\+w* \+w see|strong="G3708"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G2532"\+w* \+w days|strong="G2250"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G1520"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G3004"\+w* \+w will|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w see|strong="G3708"\+w* \+w it|strong="G2532"\+w*. \wj* +\v 23 \wj \+w They|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, ‘\+w Look|strong="G2400"\+w*, \+w here|strong="G5602"\+w*!’ \+w or|strong="G2532"\+w* ‘\+w Look|strong="G2400"\+w*, \+w there|strong="G1563"\+w*!’ Don’t \+w go|strong="G2532"\+w* away \+w or|strong="G2532"\+w* \+w follow|strong="G1377"\+w* \+w after|strong="G1377"\+w* \+w them|strong="G3004"\+w*, \wj* +\v 24 \wj \+w for|strong="G1063"\+w* \+w as|strong="G5618"\+w* \+w the|strong="G1722"\+w* lightning, \+w when|strong="G1722"\+w* \+w it|strong="G1063"\+w* flashes \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w one|strong="G3588"\+w* part \+w under|strong="G5259"\+w* \+w the|strong="G1722"\+w* \+w sky|strong="G3772"\+w*, \+w shines|strong="G2989"\+w* \+w to|strong="G1519"\+w* \+w another|strong="G2250"\+w* part \+w under|strong="G5259"\+w* \+w the|strong="G1722"\+w* \+w sky|strong="G3772"\+w*, \+w so|strong="G3779"\+w* \+w will|strong="G1510"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G1537"\+w* \+w Man|strong="G1519"\+w* \+w be|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G1519"\+w* \+w day|strong="G2250"\+w*. \wj* +\v 25 \wj \+w But|strong="G1161"\+w* \+w first|strong="G4413"\+w*, \+w he|strong="G2532"\+w* \+w must|strong="G1163"\+w* \+w suffer|strong="G3958"\+w* \+w many|strong="G4183"\+w* \+w things|strong="G3778"\+w* \+w and|strong="G2532"\+w* \+w be|strong="G2532"\+w* rejected \+w by|strong="G2532"\+w* \+w this|strong="G3778"\+w* \+w generation|strong="G1074"\+w*. \wj* +\v 26 \wj \+w As|strong="G2531"\+w* \+w it|strong="G2532"\+w* \+w was|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w days|strong="G2250"\+w* \+w of|strong="G5207"\+w* \+w Noah|strong="G3575"\+w*, \+w even|strong="G2532"\+w* \+w so|strong="G3779"\+w* \+w it|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w also|strong="G2532"\+w* \+w be|strong="G1096"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w days|strong="G2250"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w*. \wj* +\v 27 \wj \+w They|strong="G2532"\+w* \+w ate|strong="G2068"\+w*, \+w they|strong="G2532"\+w* \+w drank|strong="G4095"\+w*, \+w they|strong="G2532"\+w* \+w married|strong="G1060"\+w*, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w were|strong="G3588"\+w* \+w given|strong="G1061"\+w* \+w in|strong="G1519"\+w* \+w marriage|strong="G1061"\+w* \+w until|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w day|strong="G2250"\+w* \+w that|strong="G3739"\+w* \+w Noah|strong="G3575"\+w* \+w entered|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* ship, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w flood|strong="G2627"\+w* \+w came|strong="G2064"\+w* \+w and|strong="G2532"\+w* destroyed \+w them|strong="G3588"\+w* \+w all|strong="G3956"\+w*. \wj* +\v 28 \wj \+w Likewise|strong="G3668"\+w*, \+w even|strong="G2531"\+w* \+w as|strong="G2531"\+w* \+w it|strong="G2531"\+w* \+w was|strong="G1096"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w days|strong="G2250"\+w* \+w of|strong="G2250"\+w* \+w Lot|strong="G3091"\+w*: \+w they|strong="G3588"\+w* \+w ate|strong="G2068"\+w*, \+w they|strong="G3588"\+w* \+w drank|strong="G4095"\+w*, \+w they|strong="G3588"\+w* bought, \+w they|strong="G3588"\+w* \+w sold|strong="G4453"\+w*, \+w they|strong="G3588"\+w* \+w planted|strong="G5452"\+w*, \+w they|strong="G3588"\+w* \+w built|strong="G3618"\+w*; \wj* +\v 29 \wj \+w but|strong="G1161"\+w* \+w in|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w day|strong="G2250"\+w* \+w that|strong="G3739"\+w* \+w Lot|strong="G3091"\+w* \+w went|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w from|strong="G2532"\+w* \+w Sodom|strong="G4670"\+w*, \+w it|strong="G2532"\+w* \+w rained|strong="G1026"\+w* \+w fire|strong="G4442"\+w* \+w and|strong="G2532"\+w* \+w sulfur|strong="G2303"\+w* \+w from|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w sky|strong="G3772"\+w* \+w and|strong="G2532"\+w* destroyed \+w them|strong="G3739"\+w* \+w all|strong="G3956"\+w*. \wj* +\v 30 \wj \+w It|strong="G3739"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w the|strong="G2596"\+w* \+w same|strong="G3739"\+w* \+w way|strong="G2596"\+w* \+w in|strong="G2596"\+w* \+w the|strong="G2596"\+w* \+w day|strong="G2250"\+w* \+w that|strong="G3739"\+w* \+w the|strong="G2596"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3739"\+w* \+w is|strong="G1510"\+w* revealed. \wj* +\v 31 \wj \+w In|strong="G1722"\+w* \+w that|strong="G3739"\+w* \+w day|strong="G2250"\+w*, \+w he|strong="G2532"\+w* \+w who|strong="G3739"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G1722"\+w* \+w housetop|strong="G1430"\+w* \+w and|strong="G2532"\+w* \+w his|strong="G1519"\+w* \+w goods|strong="G4632"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w house|strong="G3614"\+w*, \+w let|strong="G1510"\+w* \+w him|strong="G3588"\+w* \+w not|strong="G3361"\+w* \+w go|strong="G2597"\+w* \+w down|strong="G2597"\+w* \+w to|strong="G1519"\+w* \+w take|strong="G2532"\+w* \+w them|strong="G3588"\+w* away. \+w Let|strong="G1510"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3739"\+w* \+w is|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* field \+w likewise|strong="G3668"\+w* \+w not|strong="G3361"\+w* \+w turn|strong="G1994"\+w* \+w back|strong="G3694"\+w*. \wj* +\v 32 \wj \+w Remember|strong="G3421"\+w* \+w Lot|strong="G3091"\+w*’s \+w wife|strong="G1135"\+w*! \wj* +\v 33 \wj \+w Whoever|strong="G3739"\+w* \+w seeks|strong="G2212"\+w* \+w to|strong="G2532"\+w* save \+w his|strong="G1438"\+w* \+w life|strong="G5590"\+w* loses \+w it|strong="G2532"\+w*, \+w but|strong="G1161"\+w* \+w whoever|strong="G3739"\+w* loses \+w his|strong="G1438"\+w* \+w life|strong="G5590"\+w* preserves \+w it|strong="G2532"\+w*. \wj* +\v 34 \wj \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w in|strong="G1909"\+w* \+w that|strong="G3588"\+w* \+w night|strong="G3571"\+w* \+w there|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w two|strong="G1417"\+w* \+w people|strong="G1510"\+w* \+w in|strong="G1909"\+w* \+w one|strong="G1520"\+w* \+w bed|strong="G2825"\+w*. \+w One|strong="G1520"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w taken|strong="G3880"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w other|strong="G2087"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* left. \wj* +\v 35 \wj \+w There|strong="G1161"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w two|strong="G1417"\+w* grinding grain \+w together|strong="G1909"\+w*. \+w One|strong="G1520"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w taken|strong="G3880"\+w* \+w and|strong="G1161"\+w* \+w the|strong="G1161"\+w* \+w other|strong="G2087"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* left.”\wj* +\v 36 \f + \fr 17:36 \ft Some Greek manuscripts add: “Two will be in the field: the one taken, and the other left.”\f* +\p +\v 37 \w They|strong="G2532"\w*, answering, \w asked|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Where|strong="G3699"\w*, \w Lord|strong="G2962"\w*?” +\p \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Where|strong="G3699"\+w* \+w the|strong="G2532"\+w* \+w body|strong="G4983"\+w* \+w is|strong="G3588"\+w*, \+w there|strong="G1563"\+w* \+w the|strong="G2532"\+w* vultures \+w will|strong="G2532"\+w* \+w also|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w gathered|strong="G1996"\+w* \+w together|strong="G1996"\+w*.”\wj* +\c 18 +\p +\v 1 \w He|strong="G2532"\w* \w also|strong="G2532"\w* \w spoke|strong="G3004"\w* \w a|strong="G2532"\w* \w parable|strong="G3850"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w* \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w must|strong="G1163"\w* \w always|strong="G3842"\w* \w pray|strong="G4336"\w* \w and|strong="G2532"\w* \w not|strong="G3361"\w* \w give|strong="G3004"\w* \w up|strong="G1210"\w*, +\v 2 \w saying|strong="G3004"\w*, \wj “\+w There|strong="G2532"\+w* \+w was|strong="G1510"\+w* \+w a|strong="G2532"\+w* \+w judge|strong="G2923"\+w* \+w in|strong="G1722"\+w* \+w a|strong="G2532"\+w* \+w certain|strong="G5100"\+w* \+w city|strong="G4172"\+w* \+w who|strong="G3588"\+w* didn’\+w t|strong="G3588"\+w* \+w fear|strong="G5399"\+w* \+w God|strong="G2316"\+w* \+w and|strong="G2532"\+w* didn’\+w t|strong="G3588"\+w* \+w respect|strong="G1788"\+w* \+w man|strong="G5100"\+w*. \wj* +\v 3 \wj \+w A|strong="G2532"\+w* \+w widow|strong="G5503"\+w* \+w was|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w that|strong="G3588"\+w* \+w city|strong="G4172"\+w*, \+w and|strong="G2532"\+w* \+w she|strong="G2532"\+w* often \+w came|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w him|strong="G3588"\+w*, \+w saying|strong="G3004"\+w*, ‘Defend \+w me|strong="G1473"\+w* \+w from|strong="G2064"\+w* \+w my|strong="G1722"\+w* adversary!’ \wj* +\v 4 \wj \+w He|strong="G2532"\+w* wouldn’\+w t|strong="G3588"\+w* \+w for|strong="G1909"\+w* \+w a|strong="G2532"\+w* \+w while|strong="G1722"\+w*; \+w but|strong="G1161"\+w* \+w afterward|strong="G3326"\+w* \+w he|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w himself|strong="G1438"\+w*, ‘\+w Though|strong="G1487"\+w* \+w I|strong="G2532"\+w* \+w neither|strong="G3761"\+w* \+w fear|strong="G5399"\+w* \+w God|strong="G2316"\+w* \+w nor|strong="G3761"\+w* \+w respect|strong="G1788"\+w* \+w man|strong="G3778"\+w*, \wj* +\v 5 \wj \+w yet|strong="G1065"\+w* \+w because|strong="G1223"\+w* \+w this|strong="G3778"\+w* \+w widow|strong="G5503"\+w* \+w bothers|strong="G3930"\+w* \+w me|strong="G1473"\+w*, \+w I|strong="G1473"\+w* \+w will|strong="G1473"\+w* defend \+w her|strong="G1438"\+w*, \+w or|strong="G3361"\+w* \+w else|strong="G3361"\+w* \+w she|strong="G2443"\+w* \+w will|strong="G1473"\+w* \+w wear|strong="G5299"\+w* \+w me|strong="G1473"\+w* \+w out|strong="G2064"\+w* \+w by|strong="G1223"\+w* \+w her|strong="G1438"\+w* \+w continual|strong="G5056"\+w* \+w coming|strong="G2064"\+w*.’”\wj* +\p +\v 6 \w The|strong="G1161"\w* \w Lord|strong="G2962"\w* \w said|strong="G3004"\w*, \wj “Listen \+w to|strong="G3004"\+w* \+w what|strong="G5101"\+w* \+w the|strong="G1161"\+w* unrighteous \+w judge|strong="G2923"\+w* \+w says|strong="G3004"\+w*. \wj* +\v 7 \wj Won’\+w t|strong="G3588"\+w* \+w God|strong="G2316"\+w* \+w avenge|strong="G1557"\+w* \+w his|strong="G1909"\+w* \+w chosen|strong="G1588"\+w* ones \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* crying \+w out|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w day|strong="G2250"\+w* \+w and|strong="G2532"\+w* \+w night|strong="G3571"\+w*, \+w and|strong="G2532"\+w* \+w yet|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w exercises|strong="G4160"\+w* \+w patience|strong="G3114"\+w* \+w with|strong="G2532"\+w* \+w them|strong="G3588"\+w*? \wj* +\v 8 \wj \+w I|strong="G3754"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w he|strong="G3754"\+w* \+w will|strong="G1093"\+w* \+w avenge|strong="G1557"\+w* \+w them|strong="G3588"\+w* \+w quickly|strong="G5034"\+w*. \+w Nevertheless|strong="G4133"\+w*, \+w when|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w* \+w comes|strong="G2064"\+w*, \+w will|strong="G1093"\+w* \+w he|strong="G3754"\+w* \+w find|strong="G2147"\+w* \+w faith|strong="G4102"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G1722"\+w* \+w earth|strong="G1093"\+w*?”\wj* +\p +\v 9 \w He|strong="G2532"\w* \w also|strong="G2532"\w* \w spoke|strong="G3004"\w* \w this|strong="G3778"\w* \w parable|strong="G3850"\w* \w to|strong="G4314"\w* \w certain|strong="G5100"\w* \w people|strong="G1510"\w* \w who|strong="G3588"\w* \w were|strong="G1510"\w* \w convinced|strong="G3982"\w* \w of|strong="G2532"\w* \w their|strong="G1438"\w* \w own|strong="G1438"\w* righteousness, \w and|strong="G2532"\w* \w who|strong="G3588"\w* \w despised|strong="G1848"\w* \w all|strong="G2532"\w* \w others|strong="G3062"\w*: +\v 10 \wj “\+w Two|strong="G1417"\+w* \+w men|strong="G1417"\+w* \+w went|strong="G2532"\+w* \+w up|strong="G1519"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w temple|strong="G2411"\+w* \+w to|strong="G1519"\+w* \+w pray|strong="G4336"\+w*; \+w one|strong="G1520"\+w* \+w was|strong="G3588"\+w* \+w a|strong="G2532"\+w* \+w Pharisee|strong="G5330"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w other|strong="G2087"\+w* \+w was|strong="G3588"\+w* \+w a|strong="G2532"\+w* \+w tax|strong="G5057"\+w* \+w collector|strong="G5057"\+w*. \wj* +\v 11 \wj \+w The|strong="G2532"\+w* \+w Pharisee|strong="G5330"\+w* \+w stood|strong="G2476"\+w* \+w and|strong="G2532"\+w* \+w prayed|strong="G4336"\+w* \+w by|strong="G4314"\+w* \+w himself|strong="G1438"\+w* \+w like|strong="G5613"\+w* \+w this|strong="G3778"\+w*: ‘\+w God|strong="G2316"\+w*, \+w I|strong="G2532"\+w* \+w thank|strong="G2168"\+w* \+w you|strong="G4771"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G2532"\+w* \+w am|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w like|strong="G5613"\+w* \+w the|strong="G2532"\+w* \+w rest|strong="G3062"\+w* \+w of|strong="G2316"\+w* \+w men|strong="G3778"\+w*: extortionists, unrighteous, \+w adulterers|strong="G3432"\+w*, \+w or|strong="G2228"\+w* \+w even|strong="G2532"\+w* \+w like|strong="G5613"\+w* \+w this|strong="G3778"\+w* \+w tax|strong="G5057"\+w* \+w collector|strong="G5057"\+w*. \wj* +\v 12 \wj \+w I|strong="G3745"\+w* \+w fast|strong="G3522"\+w* \+w twice|strong="G1364"\+w* \+w a|strong="G2932"\+w* \+w week|strong="G4521"\+w*. \+w I|strong="G3745"\+w* \+w give|strong="G3956"\+w* tithes \+w of|strong="G3956"\+w* \+w all|strong="G3956"\+w* \+w that|strong="G3588"\+w* \+w I|strong="G3745"\+w* \+w get|strong="G2932"\+w*.’ \wj* +\v 13 \wj \+w But|strong="G1161"\+w* \+w the|strong="G1519"\+w* \+w tax|strong="G5057"\+w* \+w collector|strong="G5057"\+w*, \+w standing|strong="G2476"\+w* \+w far|strong="G3113"\+w* \+w away|strong="G3113"\+w*, wouldn’\+w t|strong="G3588"\+w* \+w even|strong="G3761"\+w* \+w lift|strong="G1869"\+w* \+w up|strong="G1869"\+w* \+w his|strong="G1519"\+w* \+w eyes|strong="G3788"\+w* \+w to|strong="G1519"\+w* \+w heaven|strong="G3772"\+w*, \+w but|strong="G1161"\+w* \+w beat|strong="G5180"\+w* \+w his|strong="G1519"\+w* \+w chest|strong="G4738"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w God|strong="G2316"\+w*, \+w be|strong="G3756"\+w* \+w merciful|strong="G2433"\+w* \+w to|strong="G1519"\+w* \+w me|strong="G1473"\+w*, \+w a|strong="G1519"\+w* sinner!’ \wj* +\v 14 \wj \+w I|strong="G1161"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w this|strong="G3778"\+w* \+w man|strong="G3778"\+w* \+w went|strong="G2597"\+w* \+w down|strong="G2597"\+w* \+w to|strong="G1519"\+w* \+w his|strong="G1438"\+w* \+w house|strong="G3624"\+w* \+w justified|strong="G1344"\+w* \+w rather|strong="G2228"\+w* \+w than|strong="G2228"\+w* \+w the|strong="G1519"\+w* \+w other|strong="G1161"\+w*; \+w for|strong="G1063"\+w* \+w everyone|strong="G3956"\+w* \+w who|strong="G3588"\+w* \+w exalts|strong="G5312"\+w* \+w himself|strong="G1438"\+w* \+w will|strong="G3956"\+w* \+w be|strong="G3956"\+w* \+w humbled|strong="G5013"\+w*, \+w but|strong="G1161"\+w* \+w he|strong="G1161"\+w* \+w who|strong="G3588"\+w* \+w humbles|strong="G5013"\+w* \+w himself|strong="G1438"\+w* \+w will|strong="G3956"\+w* \+w be|strong="G3956"\+w* \+w exalted|strong="G5312"\+w*.”\wj* +\p +\v 15 \w They|strong="G2532"\w* \w were|strong="G3588"\w* \w also|strong="G2532"\w* \w bringing|strong="G4374"\w* \w their|strong="G2532"\w* \w babies|strong="G1025"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w*, \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* touch \w them|strong="G3588"\w*. \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w saw|strong="G3708"\w* \w it|strong="G2532"\w*, \w they|strong="G2532"\w* \w rebuked|strong="G2008"\w* \w them|strong="G3588"\w*. +\v 16 \w Jesus|strong="G2424"\w* \w summoned|strong="G4341"\w* \w them|strong="G3588"\w*, \w saying|strong="G3004"\w*, \wj “Allow \+w the|strong="G2532"\+w* little \+w children|strong="G3813"\+w* \+w to|strong="G4314"\+w* \+w come|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* don’\+w t|strong="G3588"\+w* \+w hinder|strong="G2967"\+w* \+w them|strong="G3588"\+w*, \+w for|strong="G1063"\+w* \+w God|strong="G2316"\+w*’s Kingdom \+w belongs|strong="G1510"\+w* \+w to|strong="G4314"\+w* \+w such|strong="G5108"\+w* \+w as|strong="G1161"\+w* \+w these|strong="G3588"\+w*. \wj* +\v 17 \wj \+w Most|strong="G2316"\+w* \+w certainly|strong="G3756"\+w*, \+w I|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w whoever|strong="G3739"\+w* doesn’\+w t|strong="G3588"\+w* \+w receive|strong="G1209"\+w* \+w God|strong="G2316"\+w*’s Kingdom \+w like|strong="G5613"\+w* \+w a|strong="G5613"\+w* little \+w child|strong="G3813"\+w*, \+w he|strong="G3739"\+w* \+w will|strong="G2316"\+w* \+w in|strong="G1519"\+w* \+w no|strong="G3756"\+w* \+w way|strong="G5613"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w it|strong="G3739"\+w*.”\wj* +\p +\v 18 \w A|strong="G2532"\w* \w certain|strong="G5100"\w* ruler \w asked|strong="G1905"\w* \w him|strong="G1905"\w*, \w saying|strong="G3004"\w*, “\w Good|strong="G5101"\w* \w Teacher|strong="G1320"\w*, \w what|strong="G5101"\w* \w shall|strong="G2532"\w* \w I|strong="G2532"\w* \w do|strong="G4160"\w* \w to|strong="G2532"\w* \w inherit|strong="G2816"\w* eternal \w life|strong="G2222"\w*?” +\p +\v 19 \w Jesus|strong="G2424"\w* \w asked|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w Why|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G1487"\+w* \+w call|strong="G3004"\+w* \+w me|strong="G1473"\+w* \+w good|strong="G5101"\+w*? \+w No|strong="G3762"\+w* \+w one|strong="G1520"\+w* \+w is|strong="G3588"\+w* \+w good|strong="G5101"\+w*, \+w except|strong="G1487"\+w* \+w one|strong="G1520"\+w*: \+w God|strong="G2316"\+w*. \wj* +\v 20 \wj \+w You|strong="G4771"\+w* \+w know|strong="G1492"\+w* \+w the|strong="G2532"\+w* \+w commandments|strong="G1785"\+w*: ‘Don’\+w t|strong="G3588"\+w* \+w commit|strong="G3431"\+w* \+w adultery|strong="G3431"\+w*,’ ‘Don’\+w t|strong="G3588"\+w* \+w murder|strong="G5407"\+w*,’ ‘Don’\+w t|strong="G3588"\+w* \+w steal|strong="G2813"\+w*,’ ‘Don’\+w t|strong="G3588"\+w* \+w give|strong="G5576"\+w* \+w false|strong="G5576"\+w* \+w testimony|strong="G5576"\+w*,’ ‘\+w Honor|strong="G5091"\+w* \+w your|strong="G5091"\+w* \+w father|strong="G3962"\+w* \+w and|strong="G2532"\+w* \+w your|strong="G5091"\+w* \+w mother|strong="G3384"\+w*.’”\wj*\x + \xo 18:20 \xt Exodus 20:12-16; Deuteronomy 5:16-20\x* +\p +\v 21 \w He|strong="G1161"\w* \w said|strong="G3004"\w*, “\w I|strong="G1473"\w* \w have|strong="G1473"\w* \w observed|strong="G5442"\w* \w all|strong="G3956"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w* \w from|strong="G1537"\w* \w my|strong="G3956"\w* \w youth|strong="G3503"\w* \w up|strong="G1537"\w*.” +\p +\v 22 \w When|strong="G1161"\w* \w Jesus|strong="G2424"\w* heard \w these|strong="G3956"\w* \w things|strong="G3956"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w You|strong="G4771"\+w* \+w still|strong="G2089"\+w* \+w lack|strong="G3007"\+w* \+w one|strong="G1520"\+w* \+w thing|strong="G1520"\+w*. \+w Sell|strong="G4453"\+w* \+w all|strong="G3956"\+w* \+w that|strong="G3588"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2192"\+w* \+w and|strong="G2532"\+w* \+w distribute|strong="G1239"\+w* \+w it|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w poor|strong="G4434"\+w*. \+w Then|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w will|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w treasure|strong="G2344"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*; \+w then|strong="G2532"\+w* \+w come|strong="G1204"\+w*, \+w follow|strong="G1161"\+w* \+w me|strong="G1473"\+w*.”\wj* +\p +\v 23 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w he|strong="G1161"\w* heard \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w he|strong="G1161"\w* \w became|strong="G1096"\w* \w very|strong="G4970"\w* \w sad|strong="G4036"\w*, \w for|strong="G1063"\w* \w he|strong="G1161"\w* \w was|strong="G1510"\w* \w very|strong="G4970"\w* \w rich|strong="G4145"\w*. +\p +\v 24 \w Jesus|strong="G2424"\w*, \w seeing|strong="G3708"\w* \w that|strong="G3588"\w* \w he|strong="G1161"\w* \w became|strong="G3588"\w* \w very|strong="G3588"\w* sad, \w said|strong="G3004"\w*, \wj “\+w How|strong="G4459"\+w* \+w hard|strong="G1423"\+w* \+w it|strong="G1161"\+w* \+w is|strong="G3588"\+w* \+w for|strong="G1519"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w have|strong="G2192"\+w* \+w riches|strong="G5536"\+w* \+w to|strong="G1519"\+w* \+w enter|strong="G1531"\+w* \+w into|strong="G1519"\+w* \+w God|strong="G2316"\+w*’\+w s|strong="G2192"\+w* Kingdom! \wj* +\v 25 \wj \+w For|strong="G1063"\+w* \+w it|strong="G1063"\+w* \+w is|strong="G1510"\+w* \+w easier|strong="G2123"\+w* \+w for|strong="G1063"\+w* \+w a|strong="G1519"\+w* \+w camel|strong="G2574"\+w* \+w to|strong="G1519"\+w* \+w enter|strong="G1525"\+w* \+w in|strong="G1519"\+w* \+w through|strong="G1223"\+w* \+w a|strong="G1519"\+w* needle’s eye \+w than|strong="G2228"\+w* \+w for|strong="G1063"\+w* \+w a|strong="G1519"\+w* \+w rich|strong="G4145"\+w* \+w man|strong="G4145"\+w* \+w to|strong="G1519"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w God|strong="G2316"\+w*’s Kingdom.”\wj* +\p +\v 26 \w Those|strong="G3588"\w* \w who|strong="G5101"\w* heard \w it|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Then|strong="G2532"\w* \w who|strong="G5101"\w* \w can|strong="G1410"\w* \w be|strong="G2532"\w* \w saved|strong="G4982"\w*?” +\p +\v 27 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w said|strong="G3004"\w*, \wj “\+w The|strong="G1161"\+w* \+w things|strong="G3588"\+w* \+w which|strong="G3588"\+w* \+w are|strong="G1510"\+w* impossible \+w with|strong="G3844"\+w* \+w men|strong="G3588"\+w* \+w are|strong="G1510"\+w* \+w possible|strong="G1415"\+w* \+w with|strong="G3844"\+w* \+w God|strong="G2316"\+w*.”\wj* +\p +\v 28 \w Peter|strong="G4074"\w* \w said|strong="G3004"\w*, “\w Look|strong="G2400"\w*, \w we|strong="G2249"\w* \w have|strong="G1473"\w* left everything \w and|strong="G1161"\w* followed \w you|strong="G4771"\w*.” +\p +\v 29 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Most|strong="G2316"\+w* certainly \+w I|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w there|strong="G1161"\+w* \+w is|strong="G1510"\+w* \+w no|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w who|strong="G3739"\+w* \+w has|strong="G2316"\+w* left \+w house|strong="G3614"\+w*, \+w or|strong="G2228"\+w* \+w wife|strong="G1135"\+w*, \+w or|strong="G2228"\+w* brothers, \+w or|strong="G2228"\+w* \+w parents|strong="G1118"\+w*, \+w or|strong="G2228"\+w* \+w children|strong="G5043"\+w*, \+w for|strong="G1752"\+w* \+w God|strong="G2316"\+w*’s Kingdom’s \+w sake|strong="G1752"\+w*, \wj* +\v 30 \wj \+w who|strong="G3739"\+w* \+w will|strong="G2532"\+w* \+w not|strong="G3361"\+w* receive \+w many|strong="G4179"\+w* \+w times|strong="G2540"\+w* \+w more|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w this|strong="G3778"\+w* \+w time|strong="G2540"\+w*, \+w and|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* world \+w to|strong="G2532"\+w* \+w come|strong="G2064"\+w*, eternal \+w life|strong="G2222"\+w*.”\wj* +\p +\v 31 \w He|strong="G2532"\w* \w took|strong="G3880"\w* \w the|strong="G2532"\w* \w twelve|strong="G1427"\w* \w aside|strong="G3880"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Behold|strong="G2400"\+w*, \+w we|strong="G2532"\+w* \+w are|strong="G3588"\+w* \+w going|strong="G2532"\+w* \+w up|strong="G1519"\+w* \+w to|strong="G1519"\+w* \+w Jerusalem|strong="G2419"\+w*, \+w and|strong="G2532"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3956"\+w* \+w that|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w written|strong="G1125"\+w* \+w through|strong="G1223"\+w* \+w the|strong="G2532"\+w* \+w prophets|strong="G4396"\+w* \+w concerning|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3956"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w completed|strong="G5055"\+w*. \wj* +\v 32 \wj \+w For|strong="G1063"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w delivered|strong="G3860"\+w* \+w up|strong="G3860"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Gentiles|strong="G1484"\+w*, \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w mocked|strong="G1702"\+w*, treated shamefully, \+w and|strong="G2532"\+w* \+w spit|strong="G1716"\+w* \+w on|strong="G3588"\+w*. \wj* +\v 33 \wj \+w They|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w scourge|strong="G3146"\+w* \+w and|strong="G2532"\+w* kill \+w him|strong="G3588"\+w*. \+w On|strong="G3588"\+w* \+w the|strong="G2532"\+w* \+w third|strong="G5154"\+w* \+w day|strong="G2250"\+w*, \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w rise|strong="G2250"\+w* \+w again|strong="G2532"\+w*.”\wj* +\p +\v 34 \w They|strong="G2532"\w* \w understood|strong="G4920"\w* \w none|strong="G3762"\w* \w of|strong="G2532"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*. \w This|strong="G3778"\w* \w saying|strong="G3004"\w* \w was|strong="G1510"\w* \w hidden|strong="G2928"\w* \w from|strong="G2532"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w understand|strong="G4920"\w* \w the|strong="G2532"\w* \w things|strong="G3778"\w* \w that|strong="G3588"\w* \w were|strong="G1510"\w* \w said|strong="G3004"\w*. +\p +\v 35 \w As|strong="G1519"\w* \w he|strong="G1161"\w* \w came|strong="G1096"\w* \w near|strong="G1448"\w* \w Jericho|strong="G2410"\w*, \w a|strong="G1096"\w* \w certain|strong="G5100"\w* \w blind|strong="G5185"\w* \w man|strong="G5100"\w* \w sat|strong="G2521"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w road|strong="G3598"\w*, \w begging|strong="G1871"\w*. +\v 36 Hearing \w a|strong="G1510"\w* \w multitude|strong="G3793"\w* \w going|strong="G3778"\w* \w by|strong="G1510"\w*, \w he|strong="G1161"\w* \w asked|strong="G4441"\w* \w what|strong="G5101"\w* \w this|strong="G3778"\w* \w meant|strong="G1510"\w*. +\v 37 \w They|strong="G1161"\w* told \w him|strong="G3588"\w* \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w of|strong="G2424"\w* \w Nazareth|strong="G3480"\w* \w was|strong="G3588"\w* \w passing|strong="G3928"\w* \w by|strong="G2424"\w*. +\v 38 \w He|strong="G2532"\w* \w cried|strong="G2532"\w* \w out|strong="G2532"\w*, “\w Jesus|strong="G2424"\w*, \w you|strong="G3004"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w David|strong="G1138"\w*, \w have|strong="G2532"\w* \w mercy|strong="G1653"\w* \w on|strong="G1653"\w* \w me|strong="G1473"\w*!” +\v 39 \w Those|strong="G3588"\w* \w who|strong="G3588"\w* \w led|strong="G4254"\w* \w the|strong="G2532"\w* \w way|strong="G4254"\w* \w rebuked|strong="G2008"\w* \w him|strong="G3588"\w*, \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w should|strong="G3588"\w* \w be|strong="G2532"\w* \w quiet|strong="G4601"\w*; \w but|strong="G1161"\w* \w he|strong="G2532"\w* \w cried|strong="G2896"\w* \w out|strong="G2896"\w* \w all|strong="G2532"\w* \w the|strong="G2532"\w* \w more|strong="G3123"\w*, “\w You|strong="G2532"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w David|strong="G1138"\w*, \w have|strong="G2532"\w* \w mercy|strong="G1653"\w* \w on|strong="G1653"\w* \w me|strong="G1473"\w*!” +\p +\v 40 \w Standing|strong="G2476"\w* \w still|strong="G2476"\w*, \w Jesus|strong="G2424"\w* \w commanded|strong="G2753"\w* \w him|strong="G3588"\w* \w to|strong="G4314"\w* \w be|strong="G3588"\w* \w brought|strong="G1161"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*. \w When|strong="G1161"\w* \w he|strong="G1161"\w* \w had|strong="G2424"\w* \w come|strong="G1448"\w* \w near|strong="G1448"\w*, \w he|strong="G1161"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w*, +\v 41 \wj “\+w What|strong="G5101"\+w* \+w do|strong="G4160"\+w* \+w you|strong="G4771"\+w* \+w want|strong="G2309"\+w* \+w me|strong="G3004"\+w* \+w to|strong="G2443"\+w* \+w do|strong="G4160"\+w*?”\wj* +\p \w He|strong="G1161"\w* \w said|strong="G3004"\w*, “\w Lord|strong="G2962"\w*, \w that|strong="G2443"\w* \w I|strong="G1161"\w* \w may|strong="G2443"\w* see again.” +\p +\v 42 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Receive|strong="G4102"\+w* \+w your|strong="G2532"\+w* \+w sight|strong="G3588"\+w*. \+w Your|strong="G2532"\+w* \+w faith|strong="G4102"\+w* \+w has|strong="G4102"\+w* \+w healed|strong="G4982"\+w* \+w you|strong="G4771"\+w*.” \wj* +\p +\v 43 \w Immediately|strong="G3916"\w* \w he|strong="G2532"\w* received \w his|strong="G3956"\w* \w sight|strong="G3588"\w* \w and|strong="G2532"\w* \w followed|strong="G2992"\w* \w him|strong="G3588"\w*, \w glorifying|strong="G1392"\w* \w God|strong="G2316"\w*. \w All|strong="G3956"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w*, \w when|strong="G2532"\w* \w they|strong="G2532"\w* \w saw|strong="G3708"\w* \w it|strong="G2532"\w*, \w praised|strong="G1392"\w* \w God|strong="G2316"\w*. +\c 19 +\p +\v 1 \w He|strong="G2532"\w* \w entered|strong="G1525"\w* \w and|strong="G2532"\w* \w was|strong="G3588"\w* \w passing|strong="G1330"\w* \w through|strong="G1330"\w* \w Jericho|strong="G2410"\w*. +\v 2 \w There|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w man|strong="G4145"\w* \w named|strong="G3686"\w* \w Zacchaeus|strong="G2195"\w*. \w He|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w chief|strong="G2532"\w* tax collector, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w rich|strong="G4145"\w*. +\v 3 \w He|strong="G2532"\w* \w was|strong="G1510"\w* \w trying|strong="G2212"\w* \w to|strong="G2532"\w* \w see|strong="G3708"\w* \w who|strong="G5101"\w* \w Jesus|strong="G2424"\w* \w was|strong="G1510"\w*, \w and|strong="G2532"\w* couldn’\w t|strong="G3588"\w* \w because|strong="G3754"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w crowd|strong="G3793"\w*, \w because|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w short|strong="G3588"\w*. +\v 4 \w He|strong="G2532"\w* \w ran|strong="G4390"\w* \w on|strong="G1909"\w* \w ahead|strong="G1715"\w* \w and|strong="G2532"\w* climbed \w up|strong="G1519"\w* \w into|strong="G1519"\w* \w a|strong="G2532"\w* \w sycamore|strong="G4809"\w* \w tree|strong="G4809"\w* \w to|strong="G1519"\w* \w see|strong="G3708"\w* \w him|strong="G3588"\w*, \w for|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w going|strong="G3195"\w* \w to|strong="G1519"\w* \w pass|strong="G1330"\w* \w that|strong="G3754"\w* \w way|strong="G1330"\w*. +\v 5 \w When|strong="G5613"\w* \w Jesus|strong="G2424"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w the|strong="G1722"\w* \w place|strong="G5117"\w*, \w he|strong="G2532"\w* \w looked|strong="G2532"\w* \w up|strong="G1210"\w* \w and|strong="G2532"\w* \w saw|strong="G2424"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \wj “\+w Zacchaeus|strong="G2195"\+w*, \+w hurry|strong="G4692"\+w* \+w and|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w down|strong="G2597"\+w*, \+w for|strong="G1063"\+w* \+w today|strong="G4594"\+w* \+w I|strong="G1473"\+w* \+w must|strong="G1163"\+w* \+w stay|strong="G3306"\+w* \+w at|strong="G1722"\+w* \+w your|strong="G2532"\+w* \+w house|strong="G3624"\+w*.” \wj* +\v 6 \w He|strong="G2532"\w* \w hurried|strong="G4692"\w*, \w came|strong="G2597"\w* \w down|strong="G2597"\w*, \w and|strong="G2532"\w* \w received|strong="G5264"\w* \w him|strong="G2532"\w* \w joyfully|strong="G5463"\w*. +\v 7 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w saw|strong="G3708"\w* \w it|strong="G2532"\w*, \w they|strong="G2532"\w* \w all|strong="G3956"\w* \w murmured|strong="G1234"\w*, \w saying|strong="G3004"\w*, “\w He|strong="G2532"\w* \w has|strong="G3708"\w* \w gone|strong="G1525"\w* \w in|strong="G1525"\w* \w to|strong="G2532"\w* \w lodge|strong="G2647"\w* \w with|strong="G3844"\w* \w a|strong="G2532"\w* \w man|strong="G3956"\w* \w who|strong="G3748"\w* \w is|strong="G3956"\w* \w a|strong="G2532"\w* sinner.” +\p +\v 8 \w Zacchaeus|strong="G2195"\w* \w stood|strong="G2476"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, “\w Behold|strong="G2400"\w*, \w Lord|strong="G2962"\w*, \w half|strong="G2255"\w* \w of|strong="G2532"\w* \w my|strong="G3708"\w* goods \w I|strong="G1473"\w* \w give|strong="G1325"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w poor|strong="G4434"\w*. \w If|strong="G1487"\w* \w I|strong="G1473"\w* \w have|strong="G2532"\w* wrongfully exacted \w anything|strong="G5100"\w* \w of|strong="G2532"\w* \w anyone|strong="G5100"\w*, \w I|strong="G1473"\w* restore \w four|strong="G5073"\w* \w times|strong="G5073"\w* \w as|strong="G1161"\w* \w much|strong="G5073"\w*.” +\p +\v 9 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \wj “\+w Today|strong="G4594"\+w*, \+w salvation|strong="G4991"\+w* \+w has|strong="G1096"\+w* \+w come|strong="G1096"\+w* \+w to|strong="G4314"\+w* \+w this|strong="G3778"\+w* \+w house|strong="G3624"\+w*, \+w because|strong="G3754"\+w* \+w he|strong="G2532"\+w* \+w also|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w a|strong="G1096"\+w* \+w son|strong="G5207"\+w* \+w of|strong="G5207"\+w* Abraham. \wj* +\v 10 \wj \+w For|strong="G1063"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w* \+w came|strong="G2064"\+w* \+w to|strong="G2532"\+w* \+w seek|strong="G2212"\+w* \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w save|strong="G4982"\+w* \+w that|strong="G3588"\+w* \+w which|strong="G3588"\+w* \+w was|strong="G3588"\+w* lost.” \wj* +\p +\v 11 \w As|strong="G1161"\w* \w they|strong="G2532"\w* heard \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w he|strong="G2532"\w* \w went|strong="G2532"\w* \w on|strong="G1161"\w* \w and|strong="G2532"\w* \w told|strong="G3004"\w* \w a|strong="G2532"\w* \w parable|strong="G3850"\w*, \w because|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w near|strong="G1451"\w* \w Jerusalem|strong="G2419"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w supposed|strong="G1380"\w* \w that|strong="G3754"\w* \w God|strong="G2316"\w*’s Kingdom \w would|strong="G3195"\w* \w be|strong="G1510"\w* revealed \w immediately|strong="G3916"\w*. +\v 12 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w therefore|strong="G3767"\w*, \wj “\+w A|strong="G2532"\+w* \+w certain|strong="G5100"\+w* \+w nobleman|strong="G2104"\+w* \+w went|strong="G4198"\+w* \+w into|strong="G1519"\+w* \+w a|strong="G2532"\+w* far \+w country|strong="G5561"\+w* \+w to|strong="G1519"\+w* \+w receive|strong="G2983"\+w* \+w for|strong="G1519"\+w* \+w himself|strong="G1438"\+w* \+w a|strong="G2532"\+w* kingdom \+w and|strong="G2532"\+w* \+w to|strong="G1519"\+w* \+w return|strong="G5290"\+w*. \wj* +\v 13 \wj \+w He|strong="G2532"\+w* \+w called|strong="G2564"\+w* \+w ten|strong="G1176"\+w* \+w servants|strong="G1401"\+w* \+w of|strong="G2532"\+w* \+w his|strong="G1438"\+w* \+w and|strong="G2532"\+w* \+w gave|strong="G1325"\+w* \+w them|strong="G1325"\+w* \+w ten|strong="G1176"\+w* \+w mina|strong="G3414"\+w* coins, \wj*\f + \fr 19:13 \ft 10 minas was more than 3 years’ wages for an agricultural laborer. \f* \wj \+w and|strong="G2532"\+w* \+w told|strong="G3004"\+w* \+w them|strong="G1325"\+w*, ‘Conduct \+w business|strong="G4231"\+w* \+w until|strong="G2532"\+w* \+w I|strong="G3739"\+w* \+w come|strong="G2064"\+w*.’ \wj* +\v 14 \wj \+w But|strong="G1161"\+w* \+w his|strong="G1909"\+w* \+w citizens|strong="G4177"\+w* \+w hated|strong="G3404"\+w* \+w him|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w sent|strong="G2532"\+w* \+w an|strong="G2532"\+w* envoy \+w after|strong="G3694"\+w* \+w him|strong="G3588"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w We|strong="G2249"\+w* don’\+w t|strong="G3588"\+w* \+w want|strong="G2309"\+w* \+w this|strong="G3778"\+w* \+w man|strong="G3778"\+w* \+w to|strong="G2532"\+w* \+w reign|strong="G2532"\+w* \+w over|strong="G1909"\+w* \+w us|strong="G3004"\+w*.’\wj* +\p +\v 15 \wj “\+w When|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w had|strong="G2532"\+w* \+w come|strong="G1096"\+w* \+w back|strong="G2983"\+w* \+w again|strong="G2532"\+w*, \+w having|strong="G2532"\+w* \+w received|strong="G2983"\+w* \+w the|strong="G1722"\+w* kingdom, \+w he|strong="G2532"\+w* \+w commanded|strong="G1325"\+w* \+w these|strong="G3778"\+w* \+w servants|strong="G1401"\+w*, \+w to|strong="G2443"\+w* \+w whom|strong="G3739"\+w* \+w he|strong="G2532"\+w* \+w had|strong="G2532"\+w* \+w given|strong="G1325"\+w* \+w the|strong="G1722"\+w* money, \+w to|strong="G2443"\+w* \+w be|strong="G1096"\+w* \+w called|strong="G3004"\+w* \+w to|strong="G2443"\+w* \+w him|strong="G3588"\+w*, \+w that|strong="G2443"\+w* \+w he|strong="G2532"\+w* \+w might|strong="G2532"\+w* \+w know|strong="G1097"\+w* \+w what|strong="G5101"\+w* \+w they|strong="G2532"\+w* \+w had|strong="G2532"\+w* gained \+w by|strong="G1722"\+w* conducting \+w business|strong="G3588"\+w*. \wj* +\v 16 \wj \+w The|strong="G1161"\+w* \+w first|strong="G4413"\+w* \+w came|strong="G3854"\+w* \+w before|strong="G4413"\+w* \+w him|strong="G3588"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w Lord|strong="G2962"\+w*, \+w your|strong="G2962"\+w* \+w mina|strong="G3414"\+w* \+w has|strong="G2962"\+w* \+w made|strong="G1161"\+w* \+w ten|strong="G1176"\+w* \+w more|strong="G4333"\+w* \+w minas|strong="G3414"\+w*.’\wj* +\p +\v 17 \wj “\+w He|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G2532"\+w*, ‘\+w Well|strong="G2532"\+w* \+w done|strong="G1096"\+w*, \+w you|strong="G3754"\+w* \+w good|strong="G2095"\+w* \+w servant|strong="G1401"\+w*! \+w Because|strong="G3754"\+w* \+w you|strong="G3754"\+w* \+w were|strong="G1510"\+w* \+w found|strong="G1096"\+w* \+w faithful|strong="G4103"\+w* \+w with|strong="G1722"\+w* \+w very|strong="G2532"\+w* \+w little|strong="G1646"\+w*, \+w you|strong="G3754"\+w* \+w shall|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w authority|strong="G1849"\+w* \+w over|strong="G1883"\+w* \+w ten|strong="G1176"\+w* \+w cities|strong="G4172"\+w*.’ \wj* +\p +\v 18 \wj “\+w The|strong="G2532"\+w* \+w second|strong="G1208"\+w* \+w came|strong="G2064"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w Your|strong="G2962"\+w* \+w mina|strong="G3414"\+w*, \+w Lord|strong="G2962"\+w*, \+w has|strong="G2962"\+w* \+w made|strong="G4160"\+w* \+w five|strong="G4002"\+w* \+w minas|strong="G3414"\+w*.’ \wj* +\p +\v 19 \wj “\+w So|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G2532"\+w*, ‘\+w And|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w are|strong="G3778"\+w* \+w to|strong="G2532"\+w* \+w be|strong="G1096"\+w* \+w over|strong="G1883"\+w* \+w five|strong="G4002"\+w* \+w cities|strong="G4172"\+w*.’ \wj* +\p +\v 20 \wj \+w Another|strong="G2087"\+w* \+w came|strong="G2064"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w Lord|strong="G2962"\+w*, \+w behold|strong="G2400"\+w*, \+w your|strong="G2192"\+w* \+w mina|strong="G3414"\+w*, \+w which|strong="G3739"\+w* \+w I|strong="G3739"\+w* \+w kept|strong="G3739"\+w* \+w laid|strong="G2532"\+w* away \+w in|strong="G1722"\+w* \+w a|strong="G2192"\+w* \+w handkerchief|strong="G4676"\+w*, \wj* +\v 21 \wj \+w for|strong="G1063"\+w* \+w I|strong="G3739"\+w* \+w feared|strong="G5399"\+w* \+w you|strong="G4771"\+w*, \+w because|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w are|strong="G1510"\+w* \+w an|strong="G2532"\+w* exacting \+w man|strong="G3739"\+w*. \+w You|strong="G4771"\+w* \+w take|strong="G2532"\+w* \+w up|strong="G2532"\+w* \+w that|strong="G3754"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G4771"\+w* didn’t \+w lay|strong="G5087"\+w* \+w down|strong="G5087"\+w*, \+w and|strong="G2532"\+w* \+w reap|strong="G2325"\+w* \+w that|strong="G3754"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G4771"\+w* didn’t \+w sow|strong="G4687"\+w*.’\wj* +\p +\v 22 \wj “\+w He|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w*, ‘\+w Out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w your|strong="G5087"\+w* own \+w mouth|strong="G4750"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G1510"\+w* \+w judge|strong="G2919"\+w* \+w you|strong="G4771"\+w*, \+w you|strong="G4771"\+w* \+w wicked|strong="G4190"\+w* \+w servant|strong="G1401"\+w*! \+w You|strong="G4771"\+w* \+w knew|strong="G1492"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w an|strong="G2532"\+w* exacting \+w man|strong="G3739"\+w*, taking \+w up|strong="G2532"\+w* \+w that|strong="G3754"\+w* \+w which|strong="G3739"\+w* \+w I|strong="G1473"\+w* didn’\+w t|strong="G3588"\+w* \+w lay|strong="G5087"\+w* \+w down|strong="G5087"\+w* \+w and|strong="G2532"\+w* \+w reaping|strong="G2325"\+w* \+w that|strong="G3754"\+w* \+w which|strong="G3739"\+w* \+w I|strong="G1473"\+w* didn’\+w t|strong="G3588"\+w* \+w sow|strong="G4687"\+w*. \wj* +\v 23 \wj \+w Then|strong="G2532"\+w* \+w why|strong="G5101"\+w* didn’\+w t|strong="G3588"\+w* \+w you|strong="G1325"\+w* deposit \+w my|strong="G1325"\+w* money \+w in|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w bank|strong="G5132"\+w*, \+w and|strong="G2532"\+w* \+w at|strong="G1909"\+w* \+w my|strong="G1325"\+w* \+w coming|strong="G2064"\+w*, \+w I|strong="G1473"\+w* \+w might|strong="G2532"\+w* \+w have|strong="G2532"\+w* earned \+w interest|strong="G5110"\+w* \+w on|strong="G1909"\+w* \+w it|strong="G2532"\+w*?’ \wj* +\v 24 \wj \+w He|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w stood|strong="G3936"\+w* \+w by|strong="G3936"\+w*, ‘\+w Take|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w mina|strong="G3414"\+w* away \+w from|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w it|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w has|strong="G2192"\+w* \+w the|strong="G2532"\+w* \+w ten|strong="G1176"\+w* \+w minas|strong="G3414"\+w*.’\wj* +\p +\v 25 \wj “\+w They|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G2532"\+w*, ‘\+w Lord|strong="G2962"\+w*, \+w he|strong="G2532"\+w* \+w has|strong="G2192"\+w* \+w ten|strong="G1176"\+w* \+w minas|strong="G3414"\+w*!’ \wj* +\v 26 \wj ‘\+w For|strong="G3754"\+w* \+w I|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w to|strong="G2532"\+w* \+w everyone|strong="G3956"\+w* \+w who|strong="G3739"\+w* \+w has|strong="G2192"\+w*, \+w will|strong="G2532"\+w* \+w more|strong="G2192"\+w* \+w be|strong="G2532"\+w* \+w given|strong="G1325"\+w*; \+w but|strong="G1161"\+w* \+w from|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3739"\+w* doesn’\+w t|strong="G3588"\+w* \+w have|strong="G2192"\+w*, \+w even|strong="G2532"\+w* \+w that|strong="G3754"\+w* \+w which|strong="G3739"\+w* \+w he|strong="G2532"\+w* \+w has|strong="G2192"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* taken away \+w from|strong="G2532"\+w* \+w him|strong="G3588"\+w*. \wj* +\v 27 \wj \+w But|strong="G2532"\+w* \+w bring|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w enemies|strong="G2190"\+w* \+w of|strong="G2532"\+w* \+w mine|strong="G1473"\+w* \+w who|strong="G3588"\+w* didn’\+w t|strong="G3588"\+w* \+w want|strong="G2309"\+w* \+w me|strong="G1473"\+w* \+w to|strong="G2532"\+w* \+w reign|strong="G2532"\+w* \+w over|strong="G1909"\+w* \+w them|strong="G3588"\+w* \+w here|strong="G5602"\+w*, \+w and|strong="G2532"\+w* kill \+w them|strong="G3588"\+w* \+w before|strong="G1715"\+w* \+w me|strong="G1473"\+w*.’”\wj* +\v 28 \w Having|strong="G2532"\w* \w said|strong="G3004"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w he|strong="G2532"\w* \w went|strong="G4198"\w* \w on|strong="G1519"\w* \w ahead|strong="G1715"\w*, \w going|strong="G4198"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w*. +\p +\v 29 \w When|strong="G5613"\w* \w he|strong="G2532"\w* \w came|strong="G1096"\w* \w near|strong="G1448"\w* \w to|strong="G1519"\w* Bethsphage\f + \fr 19:29 \ft TR, NU read “Bethpage” instead of “Bethsphage”\f* \w and|strong="G2532"\w* Bethany, \w at|strong="G1519"\w* \w the|strong="G2532"\w* \w mountain|strong="G3735"\w* \w that|strong="G3588"\w* \w is|strong="G3588"\w* \w called|strong="G2564"\w* Olivet, \w he|strong="G2532"\w* \w sent|strong="G2532"\w* \w two|strong="G1417"\w* \w of|strong="G2532"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w*, +\v 30 \w saying|strong="G3004"\w*, \wj “\+w Go|strong="G5217"\+w* \+w your|strong="G2532"\+w* \+w way|strong="G1722"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1722"\+w* \+w village|strong="G2968"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G1722"\+w* \+w other|strong="G3739"\+w* side, \+w in|strong="G1722"\+w* \+w which|strong="G3739"\+w*, \+w as|strong="G1519"\+w* \+w you|strong="G3739"\+w* \+w enter|strong="G1531"\+w*, \+w you|strong="G3739"\+w* \+w will|strong="G2532"\+w* \+w find|strong="G2147"\+w* \+w a|strong="G2532"\+w* \+w colt|strong="G4454"\+w* \+w tied|strong="G1210"\+w*, \+w which|strong="G3739"\+w* \+w no|strong="G3762"\+w* \+w man|strong="G3762"\+w* \+w has|strong="G3739"\+w* \+w ever|strong="G1519"\+w* \+w sat|strong="G2523"\+w* \+w upon|strong="G1909"\+w*. \+w Untie|strong="G3089"\+w* \+w it|strong="G2532"\+w* \+w and|strong="G2532"\+w* \+w bring|strong="G2532"\+w* \+w it|strong="G2532"\+w*. \wj* +\v 31 \wj \+w If|strong="G1437"\+w* \+w anyone|strong="G5100"\+w* \+w asks|strong="G2065"\+w* \+w you|strong="G5210"\+w*, ‘\+w Why|strong="G5101"\+w* \+w are|strong="G3588"\+w* \+w you|strong="G5210"\+w* \+w untying|strong="G3089"\+w* \+w it|strong="G2532"\+w*?’ \+w say|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w*: ‘\+w The|strong="G2532"\+w* \+w Lord|strong="G2962"\+w* \+w needs|strong="G5532"\+w* \+w it|strong="G2532"\+w*.’”\wj* +\p +\v 32 \w Those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* sent \w went|strong="G3588"\w* away \w and|strong="G1161"\w* \w found|strong="G2147"\w* \w things|strong="G3588"\w* \w just|strong="G2531"\w* \w as|strong="G2531"\w* \w he|strong="G1161"\w* \w had|strong="G3588"\w* \w told|strong="G3004"\w* \w them|strong="G3588"\w*. +\v 33 \w As|strong="G1161"\w* \w they|strong="G1161"\w* \w were|strong="G3588"\w* \w untying|strong="G3089"\w* \w the|strong="G1161"\w* \w colt|strong="G4454"\w*, \w its|strong="G3089"\w* \w owners|strong="G2962"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, “\w Why|strong="G5101"\w* \w are|strong="G3588"\w* \w you|strong="G3004"\w* \w untying|strong="G3089"\w* \w the|strong="G1161"\w* \w colt|strong="G4454"\w*?” +\v 34 \w They|strong="G1161"\w* \w said|strong="G3004"\w*, “\w The|strong="G1161"\w* \w Lord|strong="G2962"\w* \w needs|strong="G5532"\w* \w it|strong="G3754"\w*.” +\v 35 \w Then|strong="G2532"\w* \w they|strong="G2532"\w* \w brought|strong="G2532"\w* \w it|strong="G2532"\w* \w to|strong="G4314"\w* \w Jesus|strong="G2424"\w*. \w They|strong="G2532"\w* \w threw|strong="G1977"\w* \w their|strong="G2532"\w* \w cloaks|strong="G2440"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w colt|strong="G4454"\w* \w and|strong="G2532"\w* \w sat|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w on|strong="G1909"\w* \w them|strong="G3588"\w*. +\v 36 \w As|strong="G1722"\w* \w he|strong="G1161"\w* \w went|strong="G4198"\w*, \w they|strong="G1161"\w* \w spread|strong="G5291"\w* \w their|strong="G1438"\w* \w cloaks|strong="G2440"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w road|strong="G3598"\w*. +\p +\v 37 \w As|strong="G1161"\w* \w he|strong="G1161"\w* \w was|strong="G3588"\w* \w now|strong="G1161"\w* getting \w near|strong="G1448"\w*, \w at|strong="G4314"\w* \w the|strong="G3956"\w* \w descent|strong="G2600"\w* \w of|strong="G4012"\w* \w the|strong="G3956"\w* \w Mount|strong="G3735"\w* \w of|strong="G4012"\w* \w Olives|strong="G1636"\w*, \w the|strong="G3956"\w* \w whole|strong="G3956"\w* \w multitude|strong="G4128"\w* \w of|strong="G4012"\w* \w the|strong="G3956"\w* \w disciples|strong="G3101"\w* \w began|strong="G1161"\w* \w to|strong="G4314"\w* \w rejoice|strong="G5463"\w* \w and|strong="G1161"\w* praise \w God|strong="G2316"\w* \w with|strong="G4314"\w* \w a|strong="G3708"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w* \w for|strong="G4012"\w* \w all|strong="G3956"\w* \w the|strong="G3956"\w* \w mighty|strong="G1411"\w* \w works|strong="G1411"\w* \w which|strong="G3739"\w* \w they|strong="G1161"\w* \w had|strong="G2316"\w* \w seen|strong="G3708"\w*, +\v 38 \w saying|strong="G3004"\w*, “\w Blessed|strong="G2127"\w* \w is|strong="G3588"\w* \w the|strong="G1722"\w* \w King|strong="G3588"\w* \w who|strong="G3588"\w* \w comes|strong="G2064"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*!\x + \xo 19:38 \xt Psalms 118:26\x* \w Peace|strong="G1515"\w* \w in|strong="G1722"\w* \w heaven|strong="G3772"\w*, \w and|strong="G2532"\w* \w glory|strong="G1391"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w highest|strong="G5310"\w*!” +\p +\v 39 \w Some|strong="G5100"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w Teacher|strong="G1320"\w*, \w rebuke|strong="G2008"\w* \w your|strong="G2532"\w* \w disciples|strong="G3101"\w*!” +\p +\v 40 \w He|strong="G2532"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w if|strong="G1437"\+w* \+w these|strong="G3778"\+w* \+w were|strong="G3588"\+w* \+w silent|strong="G4623"\+w*, \+w the|strong="G2532"\+w* \+w stones|strong="G3037"\+w* \+w would|strong="G2532"\+w* \+w cry|strong="G2896"\+w* \+w out|strong="G2896"\+w*.”\wj* +\p +\v 41 \w When|strong="G5613"\w* \w he|strong="G2532"\w* \w came|strong="G2532"\w* \w near|strong="G1448"\w*, \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w and|strong="G2532"\w* \w wept|strong="G2799"\w* \w over|strong="G1909"\w* \w it|strong="G2532"\w*, +\v 42 \w saying|strong="G3004"\w*, \wj “\+w If|strong="G1487"\+w* \+w you|strong="G4771"\+w*, \+w even|strong="G2532"\+w* \+w you|strong="G4771"\+w*, \+w had|strong="G2532"\+w* \+w known|strong="G1097"\+w* \+w today|strong="G2250"\+w* \+w the|strong="G1722"\+w* \+w things|strong="G3778"\+w* \+w which|strong="G3588"\+w* belong \+w to|strong="G4314"\+w* \+w your|strong="G2532"\+w* \+w peace|strong="G1515"\+w*! \+w But|strong="G1161"\+w* \+w now|strong="G1161"\+w*, \+w they|strong="G2532"\+w* \+w are|strong="G3588"\+w* \+w hidden|strong="G2928"\+w* \+w from|strong="G1515"\+w* \+w your|strong="G2532"\+w* \+w eyes|strong="G3788"\+w*. \wj* +\v 43 \wj \+w For|strong="G3754"\+w* \+w the|strong="G2532"\+w* \+w days|strong="G2250"\+w* \+w will|strong="G2532"\+w* \+w come|strong="G2240"\+w* \+w on|strong="G1909"\+w* \+w you|strong="G4771"\+w* \+w when|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w enemies|strong="G2190"\+w* \+w will|strong="G2532"\+w* \+w throw|strong="G3925"\+w* \+w up|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w barricade|strong="G5482"\+w* \+w against|strong="G1909"\+w* \+w you|strong="G4771"\+w*, \+w surround|strong="G4033"\+w* \+w you|strong="G4771"\+w*, \+w hem|strong="G4912"\+w* \+w you|strong="G4771"\+w* \+w in|strong="G1909"\+w* \+w on|strong="G1909"\+w* \+w every|strong="G2532"\+w* \+w side|strong="G3840"\+w*, \wj* +\v 44 \wj \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* dash \+w you|strong="G4771"\+w* \+w and|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w children|strong="G5043"\+w* \+w within|strong="G1722"\+w* \+w you|strong="G4771"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w ground|strong="G1474"\+w*. \+w They|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w not|strong="G3756"\+w* leave \+w in|strong="G1722"\+w* \+w you|strong="G4771"\+w* \+w one|strong="G3739"\+w* \+w stone|strong="G3037"\+w* \+w on|strong="G1909"\+w* \+w another|strong="G3037"\+w*, \+w because|strong="G1909"\+w* \+w you|strong="G4771"\+w* didn’\+w t|strong="G3588"\+w* \+w know|strong="G1097"\+w* \+w the|strong="G1722"\+w* \+w time|strong="G2540"\+w* \+w of|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w visitation|strong="G1984"\+w*.”\wj* +\p +\v 45 \w He|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w temple|strong="G2411"\w* \w and|strong="G2532"\w* began \w to|strong="G1519"\w* \w drive|strong="G1544"\w* \w out|strong="G1544"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* bought \w and|strong="G2532"\w* \w sold|strong="G4453"\w* \w in|strong="G1519"\w* \w it|strong="G2532"\w*, +\v 46 \w saying|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w It|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w written|strong="G1125"\+w*, ‘\+w My|strong="G1473"\+w* \+w house|strong="G3624"\+w* \+w is|strong="G1510"\+w* \+w a|strong="G2532"\+w* \+w house|strong="G3624"\+w* \+w of|strong="G2532"\+w* \+w prayer|strong="G4335"\+w*,’ \wj*\x + \xo 19:46 \xt Isaiah 56:7\x* \wj \+w but|strong="G1161"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2532"\+w* \+w made|strong="G4160"\+w* \+w it|strong="G2532"\+w* \+w a|strong="G2532"\+w* ‘\+w den|strong="G4693"\+w* \+w of|strong="G2532"\+w* \+w robbers|strong="G3027"\+w*’!” \wj*\x + \xo 19:46 \xt Jeremiah 7:11\x* +\p +\v 47 \w He|strong="G2532"\w* \w was|strong="G1510"\w* \w teaching|strong="G1321"\w* \w daily|strong="G2250"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w*, \w but|strong="G1161"\w* \w the|strong="G1722"\w* \w chief|strong="G4413"\w* priests, \w the|strong="G1722"\w* \w scribes|strong="G1122"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w leading|strong="G4413"\w* \w men|strong="G4413"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w* \w sought|strong="G2212"\w* \w to|strong="G2532"\w* destroy \w him|strong="G3588"\w*. +\v 48 \w They|strong="G2532"\w* couldn’\w t|strong="G3588"\w* \w find|strong="G2147"\w* \w what|strong="G5101"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w do|strong="G4160"\w*, \w for|strong="G1063"\w* \w all|strong="G2532"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w* hung \w on|strong="G4160"\w* \w to|strong="G2532"\w* \w every|strong="G2532"\w* \w word|strong="G3588"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w said|strong="G2532"\w*. +\c 20 +\p +\v 1 \w On|strong="G1722"\w* \w one|strong="G1520"\w* \w of|strong="G2250"\w* \w those|strong="G3588"\w* \w days|strong="G2250"\w*, \w as|strong="G1722"\w* \w he|strong="G2532"\w* \w was|strong="G1096"\w* \w teaching|strong="G1321"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w* \w and|strong="G2532"\w* \w preaching|strong="G2097"\w* \w the|strong="G1722"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w*, \w the|strong="G1722"\w*\f + \fr 20:1 \ft TR adds “chief”\f* \w priests|strong="G2409"\w* \w and|strong="G2532"\w* \w scribes|strong="G1122"\w* \w came|strong="G1096"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w elders|strong="G4245"\w*. +\v 2 \w They|strong="G2532"\w* \w asked|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Tell|strong="G3004"\w* \w us|strong="G1325"\w*: \w by|strong="G1722"\w* \w what|strong="G5101"\w* \w authority|strong="G1849"\w* \w do|strong="G4160"\w* \w you|strong="G4771"\w* \w do|strong="G4160"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*? \w Or|strong="G2228"\w* \w who|strong="G5101"\w* \w is|strong="G1510"\w* \w giving|strong="G1325"\w* \w you|strong="G4771"\w* \w this|strong="G3778"\w* \w authority|strong="G1849"\w*?” +\p +\v 3 \w He|strong="G2532"\w* \w answered|strong="G3004"\w* \w them|strong="G1438"\w*, \wj “\+w I|strong="G1473"\+w* \+w also|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w ask|strong="G2065"\+w* \+w you|strong="G5210"\+w* \+w one|strong="G1438"\+w* \+w question|strong="G2065"\+w*. \+w Tell|strong="G3004"\+w* \+w me|strong="G1473"\+w*: \wj* +\v 4 \wj \+w the|strong="G1537"\+w* baptism \+w of|strong="G1537"\+w* \+w John|strong="G2491"\+w*, \+w was|strong="G1510"\+w* \+w it|strong="G1510"\+w* \+w from|strong="G1537"\+w* \+w heaven|strong="G3772"\+w*, \+w or|strong="G2228"\+w* \+w from|strong="G1537"\+w* \+w men|strong="G3588"\+w*?”\wj* +\p +\v 5 \w They|strong="G1161"\w* \w reasoned|strong="G4817"\w* \w with|strong="G4314"\w* \w themselves|strong="G1438"\w*, \w saying|strong="G3004"\w*, “\w If|strong="G1437"\w* \w we|strong="G1437"\w* \w say|strong="G3004"\w*, ‘\w From|strong="G1537"\w* \w heaven|strong="G3772"\w*,’ \w he|strong="G1161"\w* \w will|strong="G5101"\w* \w say|strong="G3004"\w*, ‘\w Why|strong="G5101"\w* didn’\w t|strong="G3588"\w* \w you|strong="G1437"\w* \w believe|strong="G4100"\w* \w him|strong="G3588"\w*?’ +\v 6 \w But|strong="G1161"\w* \w if|strong="G1437"\w* \w we|strong="G2249"\w* \w say|strong="G3004"\w*, ‘\w From|strong="G1537"\w* \w men|strong="G3588"\w*,’ \w all|strong="G1161"\w* \w the|strong="G1537"\w* \w people|strong="G2992"\w* \w will|strong="G1510"\w* \w stone|strong="G2642"\w* \w us|strong="G3004"\w*, \w for|strong="G1063"\w* \w they|strong="G1161"\w* \w are|strong="G1510"\w* \w persuaded|strong="G3982"\w* \w that|strong="G3588"\w* \w John|strong="G2491"\w* \w was|strong="G1510"\w* \w a|strong="G1510"\w* \w prophet|strong="G4396"\w*.” +\v 7 \w They|strong="G2532"\w* answered \w that|strong="G2532"\w* \w they|strong="G2532"\w* didn’t \w know|strong="G1492"\w* \w where|strong="G4159"\w* \w it|strong="G2532"\w* \w was|strong="G2532"\w* \w from|strong="G2532"\w*. +\p +\v 8 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Neither|strong="G3761"\+w* \+w will|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w by|strong="G1722"\+w* \+w what|strong="G4169"\+w* \+w authority|strong="G1849"\+w* \+w I|strong="G1473"\+w* \+w do|strong="G4160"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w*.”\wj* +\p +\v 9 \w He|strong="G2532"\w* \w began|strong="G1161"\w* \w to|strong="G4314"\w* \w tell|strong="G3004"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w* \w this|strong="G3778"\w* \w parable|strong="G3850"\w*: \wj “\+w A|strong="G2532"\+w* \wj*\f + \fr 20:9 \ft NU (in brackets) and TR add “certain”\f* \wj \+w man|strong="G3778"\+w* \+w planted|strong="G5452"\+w* \+w a|strong="G2532"\+w* vineyard \+w and|strong="G2532"\+w* \+w rented|strong="G1554"\+w* \+w it|strong="G2532"\+w* \+w out|strong="G2532"\+w* \+w to|strong="G4314"\+w* \+w some|strong="G3588"\+w* farmers, \+w and|strong="G2532"\+w* \+w went|strong="G2532"\+w* \+w into|strong="G4314"\+w* \+w another|strong="G3588"\+w* country \+w for|strong="G4314"\+w* \+w a|strong="G2532"\+w* \+w long|strong="G2425"\+w* \+w time|strong="G5550"\+w*. \wj* +\v 10 \wj \+w At|strong="G4314"\+w* \+w the|strong="G2532"\+w* \+w proper|strong="G2540"\+w* \+w season|strong="G2540"\+w*, \+w he|strong="G2532"\+w* \+w sent|strong="G1821"\+w* \+w a|strong="G2532"\+w* \+w servant|strong="G1401"\+w* \+w to|strong="G4314"\+w* \+w the|strong="G2532"\+w* farmers \+w to|strong="G4314"\+w* collect \+w his|strong="G2532"\+w* share \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w fruit|strong="G2590"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* vineyard. \+w But|strong="G1161"\+w* \+w the|strong="G2532"\+w* farmers \+w beat|strong="G1194"\+w* \+w him|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w sent|strong="G1821"\+w* \+w him|strong="G3588"\+w* \+w away|strong="G1821"\+w* \+w empty|strong="G2756"\+w*. \wj* +\v 11 \wj \+w He|strong="G2532"\+w* \+w sent|strong="G3992"\+w* \+w yet|strong="G2532"\+w* \+w another|strong="G2087"\+w* \+w servant|strong="G1401"\+w*, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w also|strong="G2532"\+w* \+w beat|strong="G1194"\+w* \+w him|strong="G3588"\+w* \+w and|strong="G2532"\+w* treated \+w him|strong="G3588"\+w* shamefully, \+w and|strong="G2532"\+w* \+w sent|strong="G3992"\+w* \+w him|strong="G3588"\+w* \+w away|strong="G1821"\+w* \+w empty|strong="G2756"\+w*. \wj* +\v 12 \wj \+w He|strong="G2532"\+w* \+w sent|strong="G3992"\+w* \+w yet|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w third|strong="G5154"\+w*, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w also|strong="G2532"\+w* \+w wounded|strong="G5135"\+w* \+w him|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w threw|strong="G1544"\+w* \+w him|strong="G3588"\+w* \+w out|strong="G1544"\+w*. \wj* +\v 13 \wj \+w The|strong="G1161"\+w* \+w lord|strong="G2962"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G1161"\+w* vineyard \+w said|strong="G3004"\+w*, ‘\+w What|strong="G5101"\+w* \+w shall|strong="G5101"\+w* \+w I|strong="G1473"\+w* \+w do|strong="G4160"\+w*? \+w I|strong="G1473"\+w* \+w will|strong="G5101"\+w* \+w send|strong="G3992"\+w* \+w my|strong="G1473"\+w* beloved \+w son|strong="G5207"\+w*. \+w It|strong="G1161"\+w* \+w may|strong="G3004"\+w* \+w be|strong="G3588"\+w* \+w that|strong="G3588"\+w* seeing \+w him|strong="G3588"\+w*, \+w they|strong="G1161"\+w* \+w will|strong="G5101"\+w* \+w respect|strong="G1788"\+w* \+w him|strong="G3588"\+w*.’\wj* +\p +\v 14 \wj “\+w But|strong="G1161"\+w* \+w when|strong="G1161"\+w* \+w the|strong="G1161"\+w* farmers \+w saw|strong="G3708"\+w* \+w him|strong="G3588"\+w*, \+w they|strong="G1161"\+w* \+w reasoned|strong="G1260"\+w* \+w among|strong="G4314"\+w* \+w themselves|strong="G3778"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w This|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G1161"\+w* \+w heir|strong="G2818"\+w*. \+w Come|strong="G1096"\+w*, \+w let|strong="G1096"\+w*’s kill \+w him|strong="G3588"\+w*, \+w that|strong="G2443"\+w* \+w the|strong="G1161"\+w* \+w inheritance|strong="G2817"\+w* \+w may|strong="G2443"\+w* \+w be|strong="G1096"\+w* \+w ours|strong="G1473"\+w*.’ \wj* +\v 15 \wj \+w Then|strong="G3767"\+w* \+w they|strong="G2532"\+w* \+w threw|strong="G1544"\+w* \+w him|strong="G3588"\+w* \+w out|strong="G1544"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* vineyard \+w and|strong="G2532"\+w* killed \+w him|strong="G3588"\+w*. \+w What|strong="G5101"\+w* \+w therefore|strong="G3767"\+w* \+w will|strong="G5101"\+w* \+w the|strong="G2532"\+w* \+w lord|strong="G2962"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* vineyard \+w do|strong="G4160"\+w* \+w to|strong="G2532"\+w* \+w them|strong="G3588"\+w*? \wj* +\v 16 \wj \+w He|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w and|strong="G2532"\+w* destroy \+w these|strong="G3778"\+w* farmers, \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w the|strong="G2532"\+w* vineyard \+w to|strong="G2532"\+w* \+w others|strong="G3588"\+w*.”\wj* +\p \w When|strong="G1161"\w* \w they|strong="G2532"\w* heard \w that|strong="G3588"\w*, \w they|strong="G2532"\w* \w said|strong="G3004"\w*, “\w May|strong="G2532"\w* \w that|strong="G3588"\w* \w never|strong="G3361"\w* \w be|strong="G1096"\w*!” +\p +\v 17 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w looked|strong="G1689"\w* \w at|strong="G1519"\w* \w them|strong="G3588"\w* \w and|strong="G1161"\w* \w said|strong="G3004"\w*, \wj “\+w Then|strong="G3767"\+w* \+w what|strong="G5101"\+w* \+w is|strong="G1510"\+w* \+w this|strong="G3778"\+w* \+w that|strong="G3739"\+w* \+w is|strong="G1510"\+w* \+w written|strong="G1125"\+w*,\wj* +\q1 \wj ‘\+w The|strong="G1519"\+w* \+w stone|strong="G3037"\+w* \+w which|strong="G3739"\+w* \+w the|strong="G1519"\+w* \+w builders|strong="G3618"\+w* rejected\wj* +\q2 \wj \+w was|strong="G1510"\+w* \+w made|strong="G1096"\+w* \+w the|strong="G1519"\+w* \+w chief|strong="G2776"\+w* \+w cornerstone|strong="G2776"\+w*’?\wj*\x + \xo 20:17 \xt Psalms 118:22 \x* +\q1 +\v 18 \wj \+w Everyone|strong="G3956"\+w* \+w who|strong="G3739"\+w* \+w falls|strong="G4098"\+w* \+w on|strong="G1909"\+w* \+w that|strong="G3739"\+w* \+w stone|strong="G3037"\+w* \+w will|strong="G3739"\+w* \+w be|strong="G3956"\+w* \+w broken|strong="G4917"\+w* \+w to|strong="G1909"\+w* \+w pieces|strong="G4917"\+w*, \wj* +\q2 \wj \+w but|strong="G1161"\+w* \+w it|strong="G1161"\+w* \+w will|strong="G3739"\+w* crush \+w whomever|strong="G3739"\+w* \+w it|strong="G1161"\+w* \+w falls|strong="G4098"\+w* \+w on|strong="G1909"\+w* \+w to|strong="G1909"\+w* \+w dust|strong="G3039"\+w*.”\wj* +\p +\v 19 \w The|strong="G1722"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w scribes|strong="G1122"\w* \w sought|strong="G2212"\w* \w to|strong="G4314"\w* \w lay|strong="G1911"\w* \w hands|strong="G5495"\w* \w on|strong="G1909"\w* \w him|strong="G3588"\w* \w that|strong="G3754"\w* \w very|strong="G2532"\w* \w hour|strong="G5610"\w*, \w but|strong="G2532"\w* \w they|strong="G2532"\w* \w feared|strong="G5399"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w*—\w for|strong="G1063"\w* \w they|strong="G2532"\w* \w knew|strong="G1097"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w spoken|strong="G3004"\w* \w this|strong="G3778"\w* \w parable|strong="G3850"\w* \w against|strong="G1909"\w* \w them|strong="G3588"\w*. +\v 20 \w They|strong="G2532"\w* \w watched|strong="G3906"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w sent|strong="G2532"\w* \w out|strong="G2532"\w* \w spies|strong="G1455"\w*, \w who|strong="G3588"\w* \w pretended|strong="G5271"\w* \w to|strong="G2443"\w* \w be|strong="G1510"\w* \w righteous|strong="G1342"\w*, \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* trap \w him|strong="G3588"\w* \w in|strong="G2532"\w* \w something|strong="G1510"\w* \w he|strong="G2532"\w* \w said|strong="G2532"\w*, \w so|strong="G2443"\w* \w as|strong="G2532"\w* \w to|strong="G2443"\w* \w deliver|strong="G3860"\w* \w him|strong="G3588"\w* \w up|strong="G3860"\w* \w to|strong="G2443"\w* \w the|strong="G2532"\w* \w power|strong="G1849"\w* \w and|strong="G2532"\w* \w authority|strong="G1849"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w governor|strong="G2232"\w*. +\v 21 \w They|strong="G2532"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w*, “\w Teacher|strong="G1320"\w*, \w we|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w you|strong="G3754"\w* \w say|strong="G3004"\w* \w and|strong="G2532"\w* \w teach|strong="G1321"\w* \w what|strong="G3588"\w* \w is|strong="G3588"\w* \w right|strong="G3723"\w*, \w and|strong="G2532"\w* aren’\w t|strong="G3588"\w* \w partial|strong="G2983"\w* \w to|strong="G2532"\w* anyone, \w but|strong="G2532"\w* \w truly|strong="G1909"\w* \w teach|strong="G1321"\w* \w the|strong="G2532"\w* \w way|strong="G3598"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\v 22 \w Is|strong="G1832"\w* \w it|strong="G1325"\w* \w lawful|strong="G1832"\w* \w for|strong="G1832"\w* \w us|strong="G1325"\w* \w to|strong="G1325"\w* \w pay|strong="G1325"\w* \w taxes|strong="G5411"\w* \w to|strong="G1325"\w* \w Caesar|strong="G2541"\w*, \w or|strong="G2228"\w* \w not|strong="G3756"\w*?” +\p +\v 23 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w perceived|strong="G2657"\w* \w their|strong="G1438"\w* \w craftiness|strong="G3834"\w*, \w and|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \wj “Why \+w do|strong="G3004"\+w* \+w you|strong="G3004"\+w* test \+w me|strong="G3004"\+w*? \wj* +\v 24 \wj \+w Show|strong="G1166"\+w* \+w me|strong="G1473"\+w* \+w a|strong="G2192"\+w* \+w denarius|strong="G1220"\+w*. \+w Whose|strong="G5101"\+w* \+w image|strong="G1504"\+w* \+w and|strong="G2532"\+w* \+w inscription|strong="G1923"\+w* \+w are|strong="G3588"\+w* \+w on|strong="G1161"\+w* \+w it|strong="G2532"\+w*?” \wj* +\p \w They|strong="G2532"\w* \w answered|strong="G3004"\w*, “\w Caesar|strong="G2541"\w*’\w s|strong="G2192"\w*.” +\p +\v 25 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \wj “\+w Then|strong="G2532"\+w* \+w give|strong="G3004"\+w* \+w to|strong="G4314"\+w* \+w Caesar|strong="G2541"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3588"\+w* \+w that|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w Caesar|strong="G2541"\+w*’s, \+w and|strong="G2532"\+w* \+w to|strong="G4314"\+w* \+w God|strong="G2316"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3588"\+w* \+w that|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w God|strong="G2316"\+w*’s.”\wj* +\p +\v 26 \w They|strong="G2532"\w* weren’\w t|strong="G3588"\w* \w able|strong="G2480"\w* \w to|strong="G2532"\w* trap \w him|strong="G3588"\w* \w in|strong="G1909"\w* \w his|strong="G1909"\w* \w words|strong="G4487"\w* \w before|strong="G1909"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w*. \w They|strong="G2532"\w* \w marveled|strong="G2296"\w* \w at|strong="G1909"\w* \w his|strong="G1909"\w* answer \w and|strong="G2532"\w* \w were|strong="G3588"\w* \w silent|strong="G4601"\w*. +\v 27 \w Some|strong="G5100"\w* \w of|strong="G5100"\w* \w the|strong="G1161"\w* \w Sadducees|strong="G4523"\w* \w came|strong="G4334"\w* \w to|strong="G4334"\w* \w him|strong="G3588"\w*, \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w deny|strong="G3588"\w* \w that|strong="G3588"\w* \w there|strong="G1161"\w* \w is|strong="G1510"\w* \w a|strong="G1510"\w* resurrection. +\v 28 \w They|strong="G2532"\w* \w asked|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Teacher|strong="G1320"\w*, \w Moses|strong="G3475"\w* \w wrote|strong="G1125"\w* \w to|strong="G2443"\w* \w us|strong="G3004"\w* \w that|strong="G2443"\w* \w if|strong="G1437"\w* \w a|strong="G2192"\w* \w man|strong="G5100"\w*’\w s|strong="G2192"\w* brother dies \w having|strong="G2192"\w* \w a|strong="G2192"\w* \w wife|strong="G1135"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* childless, \w his|strong="G2983"\w* brother \w should|strong="G5100"\w* \w take|strong="G2983"\w* \w the|strong="G2532"\w* \w wife|strong="G1135"\w* \w and|strong="G2532"\w* \w raise|strong="G2532"\w* \w up|strong="G1817"\w* \w children|strong="G4690"\w* \w for|strong="G2532"\w* \w his|strong="G2983"\w* brother. +\v 29 \w There|strong="G2532"\w* \w were|strong="G1510"\w* \w therefore|strong="G3767"\w* \w seven|strong="G2033"\w* brothers. \w The|strong="G2532"\w* \w first|strong="G4413"\w* \w took|strong="G2983"\w* \w a|strong="G2532"\w* \w wife|strong="G1135"\w*, \w and|strong="G2532"\w* \w died|strong="G3588"\w* childless. +\v 30 \w The|strong="G2532"\w* \w second|strong="G1208"\w* \w took|strong="G2532"\w* \w her|strong="G3588"\w* \w as|strong="G2532"\w* wife, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w died|strong="G3588"\w* childless. +\v 31 \w The|strong="G2532"\w* \w third|strong="G5154"\w* \w took|strong="G2983"\w* \w her|strong="G1438"\w*, \w and|strong="G2532"\w* \w likewise|strong="G5615"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* \w all|strong="G2532"\w* \w left|strong="G2641"\w* \w no|strong="G3756"\w* \w children|strong="G5043"\w*, \w and|strong="G2532"\w* \w died|strong="G3588"\w*. +\v 32 \w Afterward|strong="G5305"\w* \w the|strong="G2532"\w* \w woman|strong="G1135"\w* \w also|strong="G2532"\w* \w died|strong="G3588"\w*. +\v 33 \w Therefore|strong="G3767"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* resurrection \w whose|strong="G5101"\w* \w wife|strong="G1135"\w* \w of|strong="G1722"\w* \w them|strong="G3588"\w* \w will|strong="G5101"\w* \w she|strong="G1063"\w* \w be|strong="G1096"\w*? \w For|strong="G1063"\w* \w the|strong="G1722"\w* \w seven|strong="G2033"\w* \w had|strong="G2192"\w* \w her|strong="G1438"\w* \w as|strong="G1722"\w* \w a|strong="G2192"\w* \w wife|strong="G1135"\w*.” +\p +\v 34 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w The|strong="G2532"\+w* \+w children|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w this|strong="G3778"\+w* age \+w marry|strong="G1060"\+w* \+w and|strong="G2532"\+w* \+w are|strong="G3588"\+w* \+w given|strong="G1061"\+w* \+w in|strong="G2532"\+w* \+w marriage|strong="G1061"\+w*. \wj* +\v 35 \wj \+w But|strong="G1161"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w considered|strong="G2661"\+w* \+w worthy|strong="G2661"\+w* \+w to|strong="G2532"\+w* \+w attain|strong="G5177"\+w* \+w to|strong="G2532"\+w* \+w that|strong="G3588"\+w* age \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* resurrection \+w from|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w dead|strong="G3498"\+w* \+w neither|strong="G3777"\+w* \+w marry|strong="G1060"\+w* \+w nor|strong="G3777"\+w* \+w are|strong="G3588"\+w* \+w given|strong="G1061"\+w* \+w in|strong="G2532"\+w* \+w marriage|strong="G1061"\+w*. \wj* +\v 36 \wj \+w For|strong="G1063"\+w* \+w they|strong="G2532"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* die \+w any|strong="G2089"\+w* \+w more|strong="G2089"\+w*, \+w for|strong="G1063"\+w* \+w they|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w like|strong="G5207"\+w* \+w the|strong="G2532"\+w* \+w angels|strong="G2465"\+w* \+w and|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w children|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w God|strong="G2316"\+w*, \+w being|strong="G1510"\+w* \+w children|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G2532"\+w* resurrection. \wj* +\v 37 \wj \+w But|strong="G1161"\+w* \+w that|strong="G3754"\+w* \+w the|strong="G2532"\+w* \+w dead|strong="G3498"\+w* \+w are|strong="G3588"\+w* \+w raised|strong="G1453"\+w*, \+w even|strong="G2532"\+w* \+w Moses|strong="G3475"\+w* \+w showed|strong="G3377"\+w* \+w at|strong="G1909"\+w* \+w the|strong="G2532"\+w* bush, \+w when|strong="G1161"\+w* \+w he|strong="G2532"\+w* \+w called|strong="G3004"\+w* \+w the|strong="G2532"\+w* \+w Lord|strong="G2962"\+w* ‘\+w The|strong="G2532"\+w* \+w God|strong="G2316"\+w* \+w of|strong="G2316"\+w* Abraham, \+w the|strong="G2532"\+w* \+w God|strong="G2316"\+w* \+w of|strong="G2316"\+w* \+w Isaac|strong="G2464"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w God|strong="G2316"\+w* \+w of|strong="G2316"\+w* \+w Jacob|strong="G2384"\+w*.’ \wj*\x + \xo 20:37 \xt Exodus 3:6\x* +\v 38 \wj \+w Now|strong="G1161"\+w* \+w he|strong="G1161"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w the|strong="G3956"\+w* \+w God|strong="G2316"\+w* \+w of|strong="G2316"\+w* \+w the|strong="G3956"\+w* \+w dead|strong="G3498"\+w*, \+w but|strong="G1161"\+w* \+w of|strong="G2316"\+w* \+w the|strong="G3956"\+w* \+w living|strong="G2198"\+w*, \+w for|strong="G1063"\+w* \+w all|strong="G3956"\+w* \+w are|strong="G1510"\+w* \+w alive|strong="G2198"\+w* \+w to|strong="G3756"\+w* him.”\wj* +\p +\v 39 \w Some|strong="G5100"\w* \w of|strong="G5100"\w* \w the|strong="G1161"\w* \w scribes|strong="G1122"\w* \w answered|strong="G3004"\w*, “\w Teacher|strong="G1320"\w*, \w you|strong="G3004"\w* \w speak|strong="G3004"\w* \w well|strong="G2573"\w*.” +\v 40 \w They|strong="G1063"\w* didn’t \w dare|strong="G5111"\w* \w to|strong="G5111"\w* \w ask|strong="G1905"\w* \w him|strong="G1905"\w* \w any|strong="G3762"\w* \w more|strong="G3765"\w* \w questions|strong="G1905"\w*. +\p +\v 41 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \wj “\+w Why|strong="G4459"\+w* \+w do|strong="G3004"\+w* \+w they|strong="G1161"\+w* \+w say|strong="G3004"\+w* \+w that|strong="G3588"\+w* \+w the|strong="G1161"\+w* \+w Christ|strong="G5547"\+w* \+w is|strong="G1510"\+w* \+w David|strong="G1138"\+w*’s \+w son|strong="G5207"\+w*? \wj* +\v 42 \wj \+w David|strong="G1138"\+w* himself \+w says|strong="G3004"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w book|strong="G3588"\+w* \+w of|strong="G1537"\+w* \+w Psalms|strong="G5568"\+w*,\wj* +\q1 \wj ‘\+w The|strong="G1722"\+w* \+w Lord|strong="G2962"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G3004"\+w* \+w my|strong="G1722"\+w* \+w Lord|strong="G2962"\+w*,\wj* +\q2 \wj “\+w Sit|strong="G2521"\+w* \+w at|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w right|strong="G1188"\+w* \+w hand|strong="G1188"\+w*,\wj* +\q2 +\v 43 \wj \+w until|strong="G2193"\+w* \+w I|strong="G2193"\+w* \+w make|strong="G5087"\+w* \+w your|strong="G5087"\+w* \+w enemies|strong="G2190"\+w* \+w the|strong="G3588"\+w* \+w footstool|strong="G5286"\+w* \+w of|strong="G3588"\+w* \+w your|strong="G5087"\+w* \+w feet|strong="G4228"\+w*.”’\wj* \x + \xo 20:43 \xt Psalms 110:1\x* +\p +\v 44 \wj “\+w David|strong="G1138"\+w* \+w therefore|strong="G3767"\+w* \+w calls|strong="G2564"\+w* \+w him|strong="G2564"\+w* \+w Lord|strong="G2962"\+w*, \+w so|strong="G3767"\+w* \+w how|strong="G4459"\+w* \+w is|strong="G1510"\+w* \+w he|strong="G2532"\+w* \+w his|strong="G2532"\+w* \+w son|strong="G5207"\+w*?”\wj* +\p +\v 45 \w In|strong="G3956"\w* \w the|strong="G3956"\w* hearing \w of|strong="G3956"\w* \w all|strong="G3956"\w* \w the|strong="G3956"\w* \w people|strong="G2992"\w*, \w he|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w his|strong="G3956"\w* \w disciples|strong="G3101"\w*, +\v 46 \wj “\+w Beware|strong="G4337"\+w* \+w of|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w scribes|strong="G1122"\+w* \+w who|strong="G3588"\+w* \+w like|strong="G2309"\+w* \+w to|strong="G2532"\+w* \+w walk|strong="G4043"\+w* \+w in|strong="G1722"\+w* \+w long|strong="G4749"\+w* \+w robes|strong="G4749"\+w*, \+w and|strong="G2532"\+w* \+w love|strong="G5368"\+w* greetings \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* marketplaces, \+w the|strong="G1722"\+w* best \+w seats|strong="G4410"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w synagogues|strong="G4864"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* best \+w places|strong="G4411"\+w* \+w at|strong="G1722"\+w* \+w feasts|strong="G1173"\+w*; \wj* +\v 47 \wj \+w who|strong="G3739"\+w* \+w devour|strong="G2719"\+w* \+w widows|strong="G5503"\+w*’ \+w houses|strong="G3614"\+w*, \+w and|strong="G2532"\+w* \+w for|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w pretense|strong="G4392"\+w* \+w make|strong="G4336"\+w* \+w long|strong="G3117"\+w* \+w prayers|strong="G4336"\+w*. \+w These|strong="G3778"\+w* \+w will|strong="G2532"\+w* \+w receive|strong="G2983"\+w* greater \+w condemnation|strong="G2917"\+w*.”\wj* +\c 21 +\p +\v 1 \w He|strong="G1161"\w* \w looked|strong="G3708"\w* \w up|strong="G1519"\w* \w and|strong="G1161"\w* \w saw|strong="G3708"\w* \w the|strong="G1519"\w* \w rich|strong="G4145"\w* \w people|strong="G4145"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* putting \w their|strong="G1519"\w* \w gifts|strong="G1435"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w treasury|strong="G1049"\w*. +\v 2 \w He|strong="G1161"\w* \w saw|strong="G3708"\w* \w a|strong="G3708"\w* \w certain|strong="G5100"\w* \w poor|strong="G3998"\w* \w widow|strong="G5503"\w* \w casting|strong="G5100"\w* \w in|strong="G1161"\w* \w two|strong="G1417"\w* \w small|strong="G3016"\w* brass \w coins|strong="G3016"\w*.\f + \fr 21:2 \ft literally, “two lepta.” 2 lepta was about 1% of a day’s wages for an agricultural laborer.\f* +\v 3 \w He|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “Truly \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w this|strong="G3778"\+w* \+w poor|strong="G4434"\+w* \+w widow|strong="G5503"\+w* \+w put|strong="G2532"\+w* \+w in|strong="G2532"\+w* \+w more|strong="G4119"\+w* \+w than|strong="G4183"\+w* \+w all|strong="G3956"\+w* \+w of|strong="G2532"\+w* \+w them|strong="G3588"\+w*, \wj* +\v 4 \wj \+w for|strong="G1063"\+w* \+w all|strong="G3956"\+w* \+w these|strong="G3778"\+w* \+w put|strong="G3956"\+w* \+w in|strong="G1519"\+w* \+w gifts|strong="G1435"\+w* \+w for|strong="G1063"\+w* \+w God|strong="G1519"\+w* \+w from|strong="G1537"\+w* \+w their|strong="G3956"\+w* \+w abundance|strong="G4052"\+w*, \+w but|strong="G1161"\+w* \+w she|strong="G1161"\+w*, \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w her|strong="G1519"\+w* \+w poverty|strong="G5303"\+w*, \+w put|strong="G3956"\+w* \+w in|strong="G1519"\+w* \+w all|strong="G3956"\+w* \+w that|strong="G3739"\+w* \+w she|strong="G1161"\+w* \+w had|strong="G2192"\+w* \+w to|strong="G1519"\+w* \+w live|strong="G2192"\+w* \+w on|strong="G1519"\+w*.”\wj* +\p +\v 5 \w As|strong="G2532"\w* \w some|strong="G5100"\w* \w were|strong="G3588"\w* \w talking|strong="G3004"\w* \w about|strong="G4012"\w* \w the|strong="G2532"\w* \w temple|strong="G2413"\w* \w and|strong="G2532"\w* \w how|strong="G3754"\w* \w it|strong="G2532"\w* \w was|strong="G3588"\w* decorated \w with|strong="G2532"\w* \w beautiful|strong="G2570"\w* \w stones|strong="G3037"\w* \w and|strong="G2532"\w* gifts, \w he|strong="G2532"\w* \w said|strong="G3004"\w*, +\v 6 \wj “\+w As|strong="G1722"\+w* \+w for|strong="G1909"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G3739"\+w* \+w see|strong="G2334"\+w*, \+w the|strong="G1722"\+w* \+w days|strong="G2250"\+w* \+w will|strong="G3739"\+w* \+w come|strong="G2064"\+w* \+w in|strong="G1722"\+w* \+w which|strong="G3739"\+w* \+w there|strong="G1722"\+w* \+w will|strong="G3739"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G3756"\+w* left \+w here|strong="G3778"\+w* \+w one|strong="G3739"\+w* \+w stone|strong="G3037"\+w* \+w on|strong="G1909"\+w* \+w another|strong="G3037"\+w* \+w that|strong="G3739"\+w* \+w will|strong="G3739"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G3756"\+w* thrown \+w down|strong="G2647"\+w*.”\wj* +\p +\v 7 \w They|strong="G2532"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w*, “\w Teacher|strong="G1320"\w*, \w so|strong="G3767"\w* \w when|strong="G3752"\w* \w will|strong="G5101"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w be|strong="G1096"\w*? \w What|strong="G5101"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w sign|strong="G4592"\w* \w that|strong="G3588"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w are|strong="G1510"\w* \w about|strong="G3195"\w* \w to|strong="G2532"\w* \w happen|strong="G1096"\w*?” +\p +\v 8 \w He|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “Watch \+w out|strong="G2532"\+w* \+w that|strong="G3588"\+w* \+w you|strong="G3004"\+w* don’\+w t|strong="G3588"\+w* \+w get|strong="G2532"\+w* \+w led|strong="G4105"\+w* \+w astray|strong="G4105"\+w*, \+w for|strong="G1063"\+w* \+w many|strong="G4183"\+w* \+w will|strong="G1510"\+w* \+w come|strong="G2064"\+w* \+w in|strong="G1909"\+w* \+w my|strong="G1473"\+w* \+w name|strong="G3686"\+w*, \+w saying|strong="G3004"\+w*, ‘\+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w he|strong="G2532"\+w*\wj*\f + \fr 21:8 \ft or, I AM\f*\wj ,’ \+w and|strong="G2532"\+w*, ‘\+w The|strong="G2532"\+w* \+w time|strong="G2540"\+w* \+w is|strong="G1510"\+w* \+w at|strong="G1909"\+w* \+w hand|strong="G1448"\+w*.’ \+w Therefore|strong="G1161"\+w* don’\+w t|strong="G3588"\+w* \+w follow|strong="G3694"\+w* \+w them|strong="G3588"\+w*. \wj* +\v 9 \wj \+w When|strong="G3752"\+w* \+w you|strong="G3752"\+w* hear \+w of|strong="G2532"\+w* \+w wars|strong="G4171"\+w* \+w and|strong="G2532"\+w* disturbances, don’\+w t|strong="G3588"\+w* \+w be|strong="G1096"\+w* \+w terrified|strong="G4422"\+w*, \+w for|strong="G1063"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* \+w must|strong="G1163"\+w* \+w happen|strong="G1096"\+w* \+w first|strong="G4413"\+w*, \+w but|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w end|strong="G5056"\+w* won’\+w t|strong="G3588"\+w* \+w come|strong="G1096"\+w* \+w immediately|strong="G2112"\+w*.”\wj* +\p +\v 10 \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3004"\w*, \wj “\+w Nation|strong="G1484"\+w* \+w will|strong="G2532"\+w* \+w rise|strong="G1453"\+w* \+w against|strong="G1909"\+w* \+w nation|strong="G1484"\+w*, \+w and|strong="G2532"\+w* kingdom \+w against|strong="G1909"\+w* kingdom. \wj* +\v 11 \wj \+w There|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w great|strong="G3173"\+w* \+w earthquakes|strong="G4578"\+w*, \+w famines|strong="G3042"\+w*, \+w and|strong="G2532"\+w* \+w plagues|strong="G3061"\+w* \+w in|strong="G2596"\+w* \+w various|strong="G2596"\+w* \+w places|strong="G5117"\+w*. \+w There|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w terrors|strong="G5400"\+w* \+w and|strong="G2532"\+w* \+w great|strong="G3173"\+w* \+w signs|strong="G4592"\+w* \+w from|strong="G2532"\+w* \+w heaven|strong="G3772"\+w*. \wj* +\v 12 \wj \+w But|strong="G1161"\+w* \+w before|strong="G4253"\+w* \+w all|strong="G3956"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3956"\+w*, \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w lay|strong="G1911"\+w* \+w their|strong="G2532"\+w* \+w hands|strong="G5495"\+w* \+w on|strong="G1909"\+w* \+w you|strong="G5210"\+w* \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w persecute|strong="G1377"\+w* \+w you|strong="G5210"\+w*, \+w delivering|strong="G3860"\+w* \+w you|strong="G5210"\+w* \+w up|strong="G3860"\+w* \+w to|strong="G1519"\+w* \+w synagogues|strong="G4864"\+w* \+w and|strong="G2532"\+w* \+w prisons|strong="G5438"\+w*, bringing \+w you|strong="G5210"\+w* \+w before|strong="G4253"\+w* \+w kings|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w governors|strong="G2232"\+w* \+w for|strong="G1519"\+w* \+w my|strong="G3956"\+w* \+w name|strong="G3686"\+w*’s \+w sake|strong="G1752"\+w*. \wj* +\v 13 \wj \+w It|strong="G1519"\+w* \+w will|strong="G4771"\+w* turn \+w out|strong="G1519"\+w* \+w as|strong="G1519"\+w* \+w a|strong="G1519"\+w* \+w testimony|strong="G3142"\+w* \+w for|strong="G1519"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 14 \wj \+w Settle|strong="G5087"\+w* \+w it|strong="G5087"\+w* \+w therefore|strong="G3767"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G5087"\+w* \+w hearts|strong="G2588"\+w* \+w not|strong="G3361"\+w* \+w to|strong="G1722"\+w* meditate \+w beforehand|strong="G4304"\+w* \+w how|strong="G1722"\+w* \+w to|strong="G1722"\+w* answer, \wj* +\v 15 \wj \+w for|strong="G1063"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w you|strong="G5210"\+w* \+w a|strong="G2532"\+w* \+w mouth|strong="G4750"\+w* \+w and|strong="G2532"\+w* \+w wisdom|strong="G4678"\+w* \+w which|strong="G3739"\+w* \+w all|strong="G2532"\+w* \+w your|strong="G2532"\+w* adversaries \+w will|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G2532"\+w* \+w able|strong="G1410"\+w* \+w to|strong="G2532"\+w* withstand \+w or|strong="G2228"\+w* \+w to|strong="G2532"\+w* contradict. \wj* +\v 16 \wj \+w You|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w handed|strong="G3860"\+w* \+w over|strong="G3860"\+w* \+w even|strong="G2532"\+w* \+w by|strong="G5259"\+w* \+w parents|strong="G1118"\+w*, brothers, \+w relatives|strong="G4773"\+w*, \+w and|strong="G2532"\+w* \+w friends|strong="G5384"\+w*. \+w They|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w cause|strong="G2289"\+w* \+w some|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w you|strong="G5210"\+w* \+w to|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w put|strong="G2289"\+w* \+w to|strong="G2532"\+w* \+w death|strong="G2289"\+w*. \wj* +\v 17 \wj \+w You|strong="G1510"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w hated|strong="G3404"\+w* \+w by|strong="G1223"\+w* \+w all|strong="G3956"\+w* \+w men|strong="G3956"\+w* \+w for|strong="G1223"\+w* \+w my|strong="G3956"\+w* \+w name|strong="G3686"\+w*’s \+w sake|strong="G1223"\+w*. \wj* +\v 18 \wj \+w And|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w a|strong="G2532"\+w* \+w hair|strong="G2359"\+w* \+w of|strong="G1537"\+w* \+w your|strong="G2532"\+w* \+w head|strong="G2776"\+w* \+w will|strong="G2532"\+w* perish.\wj* +\p +\v 19 \wj “\+w By|strong="G1722"\+w* \+w your|strong="G1722"\+w* \+w endurance|strong="G5281"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G5590"\+w* win \+w your|strong="G1722"\+w* \+w lives|strong="G5590"\+w*.\wj* +\p +\v 20 \wj “\+w But|strong="G1161"\+w* \+w when|strong="G3752"\+w* \+w you|strong="G3752"\+w* \+w see|strong="G3708"\+w* \+w Jerusalem|strong="G2419"\+w* \+w surrounded|strong="G2944"\+w* \+w by|strong="G5259"\+w* \+w armies|strong="G4760"\+w*, \+w then|strong="G5119"\+w* \+w know|strong="G1097"\+w* \+w that|strong="G3754"\+w* \+w its|strong="G3752"\+w* \+w desolation|strong="G2050"\+w* \+w is|strong="G3588"\+w* \+w at|strong="G1161"\+w* \+w hand|strong="G1448"\+w*. \wj* +\v 21 \wj \+w Then|strong="G2532"\+w* \+w let|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w Judea|strong="G2449"\+w* \+w flee|strong="G5343"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G1722"\+w* \+w mountains|strong="G3735"\+w*. \+w Let|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w middle|strong="G3319"\+w* \+w of|strong="G2532"\+w* \+w her|strong="G1438"\+w* depart. \+w Let|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w country|strong="G5561"\+w* \+w not|strong="G3361"\+w* \+w enter|strong="G1525"\+w* \+w therein|strong="G1722"\+w*. \wj* +\v 22 \wj \+w For|strong="G3754"\+w* \+w these|strong="G3778"\+w* \+w are|strong="G1510"\+w* \+w days|strong="G2250"\+w* \+w of|strong="G2250"\+w* \+w vengeance|strong="G1557"\+w*, \+w that|strong="G3754"\+w* \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w which|strong="G3588"\+w* \+w are|strong="G1510"\+w* \+w written|strong="G1125"\+w* \+w may|strong="G3956"\+w* \+w be|strong="G1510"\+w* fulfilled. \wj* +\v 23 \wj \+w Woe|strong="G3759"\+w* \+w to|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G1510"\+w* \+w pregnant|strong="G1064"\+w* \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* nurse infants \+w in|strong="G1722"\+w* \+w those|strong="G3588"\+w* \+w days|strong="G2250"\+w*! \+w For|strong="G1063"\+w* \+w there|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w great|strong="G3173"\+w* distress \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w land|strong="G1093"\+w* \+w and|strong="G2532"\+w* \+w wrath|strong="G3709"\+w* \+w to|strong="G2532"\+w* \+w this|strong="G3778"\+w* \+w people|strong="G2992"\+w*. \wj* +\v 24 \wj \+w They|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w fall|strong="G4098"\+w* \+w by|strong="G5259"\+w* \+w the|strong="G2532"\+w* \+w edge|strong="G4750"\+w* \+w of|strong="G5259"\+w* \+w the|strong="G2532"\+w* \+w sword|strong="G3162"\+w*, \+w and|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* led captive \+w into|strong="G1519"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G2532"\+w* \+w nations|strong="G1484"\+w*. \+w Jerusalem|strong="G2419"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w trampled|strong="G3961"\+w* \+w down|strong="G4098"\+w* \+w by|strong="G5259"\+w* \+w the|strong="G2532"\+w* \+w Gentiles|strong="G1484"\+w* \+w until|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w times|strong="G2540"\+w* \+w of|strong="G5259"\+w* \+w the|strong="G2532"\+w* \+w Gentiles|strong="G1484"\+w* \+w are|strong="G1510"\+w* \+w fulfilled|strong="G4137"\+w*. \wj* +\p +\v 25 \wj “\+w There|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w signs|strong="G4592"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w sun|strong="G2246"\+w*, \+w moon|strong="G4582"\+w*, \+w and|strong="G2532"\+w* stars; \+w and|strong="G2532"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G1722"\+w* \+w earth|strong="G1093"\+w* anxiety \+w of|strong="G2532"\+w* \+w nations|strong="G1484"\+w*, \+w in|strong="G1722"\+w* perplexity \+w for|strong="G1909"\+w* \+w the|strong="G1722"\+w* \+w roaring|strong="G2279"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w sea|strong="G2281"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w waves|strong="G4535"\+w*; \wj* +\v 26 \wj \+w men|strong="G3588"\+w* fainting \+w for|strong="G1063"\+w* \+w fear|strong="G5401"\+w* \+w and|strong="G2532"\+w* \+w for|strong="G1063"\+w* \+w expectation|strong="G4329"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3588"\+w* \+w which|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w coming|strong="G1904"\+w* \+w on|strong="G5401"\+w* \+w the|strong="G2532"\+w* \+w world|strong="G3625"\+w*, \+w for|strong="G1063"\+w* \+w the|strong="G2532"\+w* \+w powers|strong="G1411"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w heavens|strong="G3772"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w shaken|strong="G4531"\+w*. \wj* +\v 27 \wj \+w Then|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w see|strong="G3708"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w* \+w coming|strong="G2064"\+w* \+w in|strong="G1722"\+w* \+w a|strong="G2532"\+w* \+w cloud|strong="G3507"\+w* \+w with|strong="G3326"\+w* \+w power|strong="G1411"\+w* \+w and|strong="G2532"\+w* \+w great|strong="G4183"\+w* \+w glory|strong="G1391"\+w*. \wj* +\v 28 \wj \+w But|strong="G1161"\+w* \+w when|strong="G1161"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* begin \+w to|strong="G2532"\+w* \+w happen|strong="G1096"\+w*, \+w look|strong="G1096"\+w* \+w up|strong="G1869"\+w* \+w and|strong="G2532"\+w* \+w lift|strong="G1869"\+w* \+w up|strong="G1869"\+w* \+w your|strong="G2532"\+w* \+w heads|strong="G2776"\+w*, \+w because|strong="G1360"\+w* \+w your|strong="G2532"\+w* redemption \+w is|strong="G3588"\+w* \+w near|strong="G1448"\+w*.”\wj* +\p +\v 29 \w He|strong="G2532"\w* \w told|strong="G3004"\w* \w them|strong="G3588"\w* \w a|strong="G2532"\w* \w parable|strong="G3850"\w*. \wj “\+w See|strong="G3708"\+w* \+w the|strong="G2532"\+w* \+w fig|strong="G4808"\+w* \+w tree|strong="G1186"\+w* \+w and|strong="G2532"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G2532"\+w* \+w trees|strong="G1186"\+w*. \wj* +\v 30 \wj \+w When|strong="G3752"\+w* \+w they|strong="G3588"\+w* \+w are|strong="G1510"\+w* \+w already|strong="G2235"\+w* budding, \+w you|strong="G3752"\+w* \+w see|strong="G1097"\+w* \+w it|strong="G3754"\+w* \+w and|strong="G3588"\+w* \+w know|strong="G1097"\+w* \+w by|strong="G1097"\+w* \+w your|strong="G1438"\+w* \+w own|strong="G1438"\+w* \+w selves|strong="G1438"\+w* \+w that|strong="G3754"\+w* \+w the|strong="G3588"\+w* \+w summer|strong="G2330"\+w* \+w is|strong="G1510"\+w* \+w already|strong="G2235"\+w* \+w near|strong="G1451"\+w*. \wj* +\v 31 \wj \+w Even|strong="G2532"\+w* \+w so|strong="G3779"\+w* \+w you|strong="G5210"\+w* \+w also|strong="G2532"\+w*, \+w when|strong="G3752"\+w* \+w you|strong="G5210"\+w* \+w see|strong="G3708"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* \+w happening|strong="G1096"\+w*, \+w know|strong="G1097"\+w* \+w that|strong="G3754"\+w* \+w God|strong="G2316"\+w*’s Kingdom \+w is|strong="G1510"\+w* \+w near|strong="G1451"\+w*. \wj* +\v 32 \wj Most \+w certainly|strong="G3756"\+w* \+w I|strong="G3754"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w this|strong="G3778"\+w* \+w generation|strong="G1074"\+w* \+w will|strong="G3956"\+w* \+w not|strong="G3756"\+w* \+w pass|strong="G1096"\+w* \+w away|strong="G3928"\+w* \+w until|strong="G2193"\+w* \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w are|strong="G3588"\+w* \+w accomplished|strong="G1096"\+w*. \wj* +\v 33 \wj \+w Heaven|strong="G3772"\+w* \+w and|strong="G2532"\+w* \+w earth|strong="G1093"\+w* \+w will|strong="G2532"\+w* \+w pass|strong="G3928"\+w* \+w away|strong="G3928"\+w*, \+w but|strong="G1161"\+w* \+w my|strong="G1473"\+w* \+w words|strong="G3056"\+w* \+w will|strong="G2532"\+w* \+w by|strong="G2532"\+w* \+w no|strong="G3756"\+w* \+w means|strong="G3361"\+w* \+w pass|strong="G3928"\+w* \+w away|strong="G3928"\+w*.\wj* +\p +\v 34 \wj “\+w So|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w careful|strong="G4337"\+w*, \+w or|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w hearts|strong="G2588"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* loaded down \+w with|strong="G1722"\+w* carousing, \+w drunkenness|strong="G3178"\+w*, \+w and|strong="G2532"\+w* \+w cares|strong="G3308"\+w* \+w of|strong="G2250"\+w* \+w this|strong="G3588"\+w* life, \+w and|strong="G2532"\+w* \+w that|strong="G3588"\+w* \+w day|strong="G2250"\+w* \+w will|strong="G2532"\+w* \+w come|strong="G2186"\+w* \+w on|strong="G1909"\+w* \+w you|strong="G5210"\+w* suddenly. \wj* +\v 35 \wj \+w For|strong="G1063"\+w* \+w it|strong="G1063"\+w* \+w will|strong="G3956"\+w* \+w come|strong="G1904"\+w* \+w like|strong="G5613"\+w* \+w a|strong="G5613"\+w* \+w snare|strong="G3803"\+w* \+w on|strong="G1909"\+w* \+w all|strong="G3956"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w dwell|strong="G2521"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G3956"\+w* surface \+w of|strong="G1909"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G3956"\+w* \+w earth|strong="G1093"\+w*. \wj* +\v 36 \wj \+w Therefore|strong="G1161"\+w* \+w be|strong="G1096"\+w* watchful \+w all|strong="G3956"\+w* \+w the|strong="G1722"\+w* \+w time|strong="G2540"\+w*, \+w praying|strong="G1189"\+w* \+w that|strong="G2443"\+w* \+w you|strong="G1722"\+w* \+w may|strong="G2532"\+w* \+w be|strong="G1096"\+w* counted worthy \+w to|strong="G2443"\+w* \+w escape|strong="G1628"\+w* \+w all|strong="G3956"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3956"\+w* \+w that|strong="G2443"\+w* \+w will|strong="G3195"\+w* \+w happen|strong="G1096"\+w*, \+w and|strong="G2532"\+w* \+w to|strong="G2443"\+w* \+w stand|strong="G2476"\+w* \+w before|strong="G1715"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3778"\+w*.”\wj* +\p +\v 37 \w Every|strong="G1722"\w* \w day|strong="G2250"\w* \w Jesus|strong="G1510"\w* \w was|strong="G1510"\w* \w teaching|strong="G1321"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w*, \w and|strong="G1161"\w* \w every|strong="G1722"\w* \w night|strong="G3571"\w* \w he|strong="G1161"\w* \w would|strong="G1722"\w* \w go|strong="G1831"\w* \w out|strong="G1831"\w* \w and|strong="G1161"\w* spend \w the|strong="G1722"\w* \w night|strong="G3571"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w mountain|strong="G3735"\w* \w that|strong="G3588"\w* \w is|strong="G1510"\w* \w called|strong="G2564"\w* Olivet. +\v 38 \w All|strong="G3956"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w* \w came|strong="G2532"\w* \w early|strong="G3719"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w morning|strong="G3719"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w* \w to|strong="G4314"\w* hear \w him|strong="G3588"\w*. +\c 22 +\p +\v 1 \w Now|strong="G1161"\w* \w the|strong="G1161"\w* \w feast|strong="G1859"\w* \w of|strong="G3588"\w* unleavened bread, \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w called|strong="G3004"\w* \w the|strong="G1161"\w* \w Passover|strong="G3957"\w*, \w was|strong="G3588"\w* \w approaching|strong="G1448"\w*. +\v 2 \w The|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w scribes|strong="G1122"\w* \w sought|strong="G2212"\w* \w how|strong="G4459"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w put|strong="G2532"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* death, \w for|strong="G1063"\w* \w they|strong="G2532"\w* \w feared|strong="G5399"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w*. +\p +\v 3 \w Satan|strong="G4567"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w Judas|strong="G2455"\w*, \w who|strong="G3588"\w* \w was|strong="G1510"\w* \w also|strong="G1161"\w* \w called|strong="G2564"\w* \w Iscariot|strong="G2469"\w*, \w who|strong="G3588"\w* \w was|strong="G1510"\w* counted \w with|strong="G1537"\w* \w the|strong="G1519"\w* \w twelve|strong="G1427"\w*. +\v 4 \w He|strong="G2532"\w* \w went|strong="G2532"\w* away \w and|strong="G2532"\w* talked \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w chief|strong="G4755"\w* priests \w and|strong="G2532"\w* \w captains|strong="G4755"\w* \w about|strong="G3588"\w* \w how|strong="G4459"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w deliver|strong="G3860"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*. +\v 5 \w They|strong="G2532"\w* \w were|strong="G2532"\w* \w glad|strong="G5463"\w*, \w and|strong="G2532"\w* \w agreed|strong="G4934"\w* \w to|strong="G2532"\w* \w give|strong="G1325"\w* \w him|strong="G1325"\w* money. +\v 6 \w He|strong="G2532"\w* \w consented|strong="G1843"\w* \w and|strong="G2532"\w* \w sought|strong="G2212"\w* \w an|strong="G2532"\w* \w opportunity|strong="G2120"\w* \w to|strong="G2532"\w* \w deliver|strong="G3860"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* absence \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w*. +\p +\v 7 \w The|strong="G1722"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* unleavened bread \w came|strong="G2064"\w*, \w on|strong="G1722"\w* \w which|strong="G3739"\w* \w the|strong="G1722"\w* \w Passover|strong="G3957"\w* \w must|strong="G1163"\w* \w be|strong="G1163"\w* \w sacrificed|strong="G2380"\w*. +\v 8 \w Jesus|strong="G3004"\w* \w sent|strong="G2532"\w* \w Peter|strong="G4074"\w* \w and|strong="G2532"\w* \w John|strong="G2491"\w*, \w saying|strong="G3004"\w*, \wj “\+w Go|strong="G4198"\+w* \+w and|strong="G2532"\+w* \+w prepare|strong="G2090"\+w* \+w the|strong="G2532"\+w* \+w Passover|strong="G3957"\+w* \+w for|strong="G2532"\+w* \+w us|strong="G3004"\+w*, \+w that|strong="G2443"\+w* \+w we|strong="G2249"\+w* \+w may|strong="G2532"\+w* \+w eat|strong="G2068"\+w*.”\wj* +\p +\v 9 \w They|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Where|strong="G4226"\w* \w do|strong="G3004"\w* \w you|strong="G3004"\w* \w want|strong="G2309"\w* \w us|strong="G3004"\w* \w to|strong="G3004"\w* \w prepare|strong="G2090"\w*?” +\p +\v 10 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Behold|strong="G2400"\+w*, \+w when|strong="G1161"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G5210"\+w* \+w entered|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w city|strong="G4172"\+w*, \+w a|strong="G1519"\+w* \+w man|strong="G3739"\+w* carrying \+w a|strong="G1519"\+w* \+w pitcher|strong="G2765"\+w* \+w of|strong="G4172"\+w* \+w water|strong="G5204"\+w* \+w will|strong="G3739"\+w* \+w meet|strong="G4876"\+w* \+w you|strong="G5210"\+w*. \+w Follow|strong="G1161"\+w* \+w him|strong="G3588"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w house|strong="G3614"\+w* \+w which|strong="G3739"\+w* \+w he|strong="G1161"\+w* \+w enters|strong="G1525"\+w*. \wj* +\v 11 \wj \+w Tell|strong="G3004"\+w* \+w the|strong="G2532"\+w* \+w master|strong="G1320"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w house|strong="G3614"\+w*, ‘\+w The|strong="G2532"\+w* \+w Teacher|strong="G1320"\+w* \+w says|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G4771"\+w*, “\+w Where|strong="G3699"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w guest|strong="G2646"\+w* \+w room|strong="G2646"\+w*, \+w where|strong="G3699"\+w* \+w I|strong="G1473"\+w* \+w may|strong="G2532"\+w* \+w eat|strong="G2068"\+w* \+w the|strong="G2532"\+w* \+w Passover|strong="G3957"\+w* \+w with|strong="G3326"\+w* \+w my|strong="G1473"\+w* \+w disciples|strong="G3101"\+w*?”’ \wj* +\v 12 \wj \+w He|strong="G1563"\+w* \+w will|strong="G2548"\+w* \+w show|strong="G1166"\+w* \+w you|strong="G5210"\+w* \+w a|strong="G2090"\+w* \+w large|strong="G3173"\+w*, \+w furnished|strong="G4766"\+w* upper room. \+w Make|strong="G2090"\+w* preparations \+w there|strong="G1563"\+w*.”\wj* +\p +\v 13 \w They|strong="G2532"\w* \w went|strong="G2532"\w*, \w found|strong="G2147"\w* \w things|strong="G3588"\w* \w as|strong="G2531"\w* \w Jesus|strong="G3004"\w* \w had|strong="G2532"\w* \w told|strong="G3004"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w prepared|strong="G2090"\w* \w the|strong="G2532"\w* \w Passover|strong="G3957"\w*. +\p +\v 14 \w When|strong="G3753"\w* \w the|strong="G2532"\w* \w hour|strong="G5610"\w* \w had|strong="G2532"\w* \w come|strong="G1096"\w*, \w he|strong="G2532"\w* \w sat|strong="G2532"\w* down \w with|strong="G4862"\w* \w the|strong="G2532"\w* twelve apostles. +\v 15 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \wj “\+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w earnestly|strong="G1939"\+w* \+w desired|strong="G1937"\+w* \+w to|strong="G4314"\+w* \+w eat|strong="G2068"\+w* \+w this|strong="G3778"\+w* \+w Passover|strong="G3957"\+w* \+w with|strong="G3326"\+w* \+w you|strong="G5210"\+w* \+w before|strong="G4253"\+w* \+w I|strong="G1473"\+w* \+w suffer|strong="G3958"\+w*, \wj* +\v 16 \wj \+w for|strong="G1063"\+w* \+w I|strong="G1063"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w I|strong="G1063"\+w* \+w will|strong="G2316"\+w* \+w no|strong="G3756"\+w* \+w longer|strong="G3765"\+w* \+w by|strong="G1722"\+w* \+w any|strong="G3361"\+w* \+w means|strong="G3004"\+w* \+w eat|strong="G2068"\+w* \+w of|strong="G2316"\+w* \+w it|strong="G3754"\+w* \+w until|strong="G2193"\+w* \+w it|strong="G3754"\+w* \+w is|strong="G3588"\+w* \+w fulfilled|strong="G4137"\+w* \+w in|strong="G1722"\+w* \+w God|strong="G2316"\+w*’s Kingdom.”\wj* +\v 17 \w He|strong="G2532"\w* \w received|strong="G2983"\w* \w a|strong="G2532"\w* \w cup|strong="G4221"\w*, \w and|strong="G2532"\w* \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w given|strong="G2168"\w* \w thanks|strong="G2168"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Take|strong="G2983"\+w* \+w this|strong="G3778"\+w* \+w and|strong="G2532"\+w* \+w share|strong="G1266"\+w* \+w it|strong="G2532"\+w* \+w among|strong="G1519"\+w* \+w yourselves|strong="G1438"\+w*, \wj* +\v 18 \wj \+w for|strong="G1063"\+w* \+w I|strong="G1063"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w I|strong="G1063"\+w* \+w will|strong="G2316"\+w* \+w not|strong="G3756"\+w* \+w drink|strong="G4095"\+w* \+w at|strong="G3756"\+w* \+w all|strong="G3361"\+w* \+w again|strong="G2193"\+w* \+w from|strong="G2064"\+w* \+w the|strong="G3588"\+w* \+w fruit|strong="G1081"\+w* \+w of|strong="G2316"\+w* \+w the|strong="G3588"\+w* vine, \+w until|strong="G2193"\+w* \+w God|strong="G2316"\+w*’s Kingdom \+w comes|strong="G2064"\+w*.”\wj* +\p +\v 19 \w He|strong="G2532"\w* \w took|strong="G2983"\w* bread, \w and|strong="G2532"\w* \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w given|strong="G1325"\w* \w thanks|strong="G2168"\w*, \w he|strong="G2532"\w* \w broke|strong="G2806"\w* \w and|strong="G2532"\w* \w gave|strong="G1325"\w* \w it|strong="G2532"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \w saying|strong="G3004"\w*, \wj “\+w This|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w my|strong="G1699"\+w* \+w body|strong="G4983"\+w* \+w which|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w given|strong="G1325"\+w* \+w for|strong="G1519"\+w* \+w you|strong="G5210"\+w*. \+w Do|strong="G4160"\+w* \+w this|strong="G3778"\+w* \+w in|strong="G1519"\+w* memory \+w of|strong="G2532"\+w* \+w me|strong="G1325"\+w*.”\wj* +\v 20 \w Likewise|strong="G5615"\w*, \w he|strong="G2532"\w* \w took|strong="G2532"\w* \w the|strong="G1722"\w* \w cup|strong="G4221"\w* \w after|strong="G3326"\w* \w supper|strong="G1172"\w*, \w saying|strong="G3004"\w*, \wj “\+w This|strong="G3778"\+w* \+w cup|strong="G4221"\+w* \+w is|strong="G3588"\+w* \+w the|strong="G1722"\+w* \+w new|strong="G2537"\+w* \+w covenant|strong="G1242"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G1722"\+w* blood, \+w which|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w poured|strong="G1632"\+w* \+w out|strong="G1632"\+w* \+w for|strong="G5228"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 21 \wj \+w But|strong="G4133"\+w* \+w behold|strong="G2400"\+w*, \+w the|strong="G1909"\+w* \+w hand|strong="G5495"\+w* \+w of|strong="G1909"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w betrays|strong="G3860"\+w* \+w me|strong="G1473"\+w* \+w is|strong="G3588"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1473"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G1909"\+w* \+w table|strong="G5132"\+w*. \wj* +\v 22 \wj \+w The|strong="G1223"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3739"\+w* \+w indeed|strong="G3303"\+w* \+w goes|strong="G4198"\+w* \+w as|strong="G2596"\+w* \+w it|strong="G3754"\+w* \+w has|strong="G3739"\+w* been \+w determined|strong="G3724"\+w*, \+w but|strong="G4133"\+w* \+w woe|strong="G3759"\+w* \+w to|strong="G2596"\+w* \+w that|strong="G3754"\+w* \+w man|strong="G3739"\+w* \+w through|strong="G1223"\+w* \+w whom|strong="G3739"\+w* \+w he|strong="G3739"\+w* \+w is|strong="G3588"\+w* \+w betrayed|strong="G3860"\+w*!”\wj* +\p +\v 23 \w They|strong="G2532"\w* began \w to|strong="G4314"\w* \w question|strong="G4802"\w* \w among|strong="G1537"\w* \w themselves|strong="G1438"\w* \w which|strong="G3588"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w who|strong="G5101"\w* \w would|strong="G3195"\w* \w do|strong="G4238"\w* \w this|strong="G3778"\w* \w thing|strong="G3778"\w*. +\p +\v 24 \w A|strong="G1096"\w* \w dispute|strong="G5379"\w* \w also|strong="G2532"\w* \w arose|strong="G1096"\w* \w among|strong="G1722"\w* \w them|strong="G3588"\w*, \w which|strong="G3588"\w* \w of|strong="G2532"\w* \w them|strong="G3588"\w* \w was|strong="G1510"\w* considered \w to|strong="G2532"\w* \w be|strong="G1096"\w* \w greatest|strong="G3173"\w*. +\v 25 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w The|strong="G2532"\+w* \+w kings|strong="G3588"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w nations|strong="G1484"\+w* \+w lord|strong="G3588"\+w* \+w it|strong="G2532"\+w* \+w over|strong="G2961"\+w* \+w them|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w have|strong="G2532"\+w* \+w authority|strong="G1850"\+w* \+w over|strong="G2961"\+w* \+w them|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w called|strong="G2564"\+w* ‘\+w benefactors|strong="G2110"\+w*.’ \wj* +\v 26 \wj \+w But|strong="G1161"\+w* \+w not|strong="G3756"\+w* \+w so|strong="G3779"\+w* \+w with|strong="G1722"\+w* \+w you|strong="G5210"\+w*. \+w Rather|strong="G3756"\+w*, \+w the|strong="G1722"\+w* \+w one|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w greater|strong="G3173"\+w* \+w among|strong="G1722"\+w* \+w you|strong="G5210"\+w*, \+w let|strong="G1096"\+w* \+w him|strong="G3588"\+w* \+w become|strong="G1096"\+w* \+w as|strong="G5613"\+w* \+w the|strong="G1722"\+w* \+w younger|strong="G3501"\+w*, \+w and|strong="G2532"\+w* \+w one|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* governing, \+w as|strong="G5613"\+w* \+w one|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w serves|strong="G1247"\+w*. \wj* +\v 27 \wj \+w For|strong="G1063"\+w* \+w who|strong="G5101"\+w* \+w is|strong="G1510"\+w* \+w greater|strong="G3173"\+w*, \+w one|strong="G3588"\+w* \+w who|strong="G5101"\+w* sits \+w at|strong="G1722"\+w* \+w the|strong="G1722"\+w* table, \+w or|strong="G2228"\+w* \+w one|strong="G3588"\+w* \+w who|strong="G5101"\+w* \+w serves|strong="G1247"\+w*? Isn’\+w t|strong="G3588"\+w* \+w it|strong="G1161"\+w* \+w he|strong="G1161"\+w* \+w who|strong="G5101"\+w* sits \+w at|strong="G1722"\+w* \+w the|strong="G1722"\+w* table? \+w But|strong="G1161"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w among|strong="G1722"\+w* \+w you|strong="G5210"\+w* \+w as|strong="G5613"\+w* \+w one|strong="G3588"\+w* \+w who|strong="G5101"\+w* \+w serves|strong="G1247"\+w*. \wj* +\p +\v 28 \wj “\+w But|strong="G1161"\+w* \+w you|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w have|strong="G1473"\+w* continued \+w with|strong="G3326"\+w* \+w me|strong="G1473"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w trials|strong="G3986"\+w*. \wj* +\v 29 \wj \+w I|strong="G1473"\+w* confer \+w on|strong="G3588"\+w* \+w you|strong="G5210"\+w* \+w a|strong="G4771"\+w* kingdom, \+w even|strong="G2531"\+w* \+w as|strong="G2531"\+w* \+w my|strong="G1473"\+w* \+w Father|strong="G3962"\+w* conferred \+w on|strong="G3588"\+w* \+w me|strong="G1473"\+w*, \wj* +\v 30 \wj \+w that|strong="G2443"\+w* \+w you|strong="G1722"\+w* \+w may|strong="G2532"\+w* \+w eat|strong="G2068"\+w* \+w and|strong="G2532"\+w* \+w drink|strong="G4095"\+w* \+w at|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w table|strong="G5132"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G1722"\+w* Kingdom. \+w You|strong="G1722"\+w* \+w will|strong="G2532"\+w* \+w sit|strong="G2521"\+w* \+w on|strong="G1909"\+w* \+w thrones|strong="G2362"\+w*, \+w judging|strong="G2919"\+w* \+w the|strong="G1722"\+w* \+w twelve|strong="G1427"\+w* \+w tribes|strong="G5443"\+w* \+w of|strong="G2532"\+w* \+w Israel|strong="G2474"\+w*.”\wj* +\p +\v 31 \w The|strong="G3588"\w* \w Lord|strong="G3588"\w* said, \wj “\+w Simon|strong="G4613"\+w*, \+w Simon|strong="G4613"\+w*, \+w behold|strong="G2400"\+w*, \+w Satan|strong="G4567"\+w* asked \+w to|strong="G3708"\+w* \+w have|strong="G5210"\+w* \+w all|strong="G3588"\+w* \+w of|strong="G3588"\+w* \+w you|strong="G5210"\+w*, \+w that|strong="G3588"\+w* \+w he|strong="G3588"\+w* \+w might|strong="G5210"\+w* \+w sift|strong="G4617"\+w* \+w you|strong="G5210"\+w* \+w as|strong="G5613"\+w* \+w wheat|strong="G4621"\+w*, \wj* +\v 32 \wj \+w but|strong="G1161"\+w* \+w I|strong="G1473"\+w* \+w prayed|strong="G1189"\+w* \+w for|strong="G4012"\+w* \+w you|strong="G4771"\+w*, \+w that|strong="G2443"\+w* \+w your|strong="G2532"\+w* \+w faith|strong="G4102"\+w* wouldn’\+w t|strong="G3588"\+w* \+w fail|strong="G1587"\+w*. \+w You|strong="G4771"\+w*, \+w when|strong="G1161"\+w* \+w once|strong="G4218"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2532"\+w* \+w turned|strong="G1994"\+w* \+w again|strong="G1994"\+w*, \+w establish|strong="G4741"\+w* \+w your|strong="G2532"\+w* brothers.”\wj*\f + \fr 22:32 \ft The word for “brothers” here may be also correctly translated “brothers and sisters” or “siblings.”\f* +\p +\v 33 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, “\w Lord|strong="G2962"\w*, \w I|strong="G2532"\w* \w am|strong="G1510"\w* \w ready|strong="G2092"\w* \w to|strong="G1519"\w* \w go|strong="G4198"\w* \w with|strong="G3326"\w* \w you|strong="G4771"\w* \w both|strong="G2532"\w* \w to|strong="G1519"\w* \w prison|strong="G5438"\w* \w and|strong="G2532"\w* \w to|strong="G1519"\w* \w death|strong="G2288"\w*!” +\p +\v 34 \w He|strong="G1161"\w* \w said|strong="G3004"\w*, \wj “\+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w*, \+w Peter|strong="G4074"\+w*, \+w the|strong="G1161"\+w* rooster \+w will|strong="G1473"\+w* \+w by|strong="G3004"\+w* \+w no|strong="G3756"\+w* \+w means|strong="G3004"\+w* \+w crow|strong="G5455"\+w* \+w today|strong="G4594"\+w* \+w until|strong="G2193"\+w* \+w you|strong="G4771"\+w* \+w deny|strong="G3588"\+w* \+w that|strong="G3588"\+w* \+w you|strong="G4771"\+w* \+w know|strong="G1492"\+w* \+w me|strong="G1473"\+w* \+w three|strong="G5151"\+w* \+w times|strong="G5151"\+w*.”\wj* +\p +\v 35 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w When|strong="G3753"\+w* \+w I|strong="G2532"\+w* \+w sent|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w out|strong="G2532"\+w* \+w without|strong="G3361"\+w* purse, \+w bag|strong="G4082"\+w*, \+w and|strong="G2532"\+w* \+w sandals|strong="G5266"\+w*, \+w did|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w lack|strong="G5302"\+w* \+w anything|strong="G5100"\+w*?”\wj* +\p \w They|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Nothing|strong="G3762"\w*.” +\p +\v 36 \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w But|strong="G1161"\+w* \+w now|strong="G1161"\+w*, \+w whoever|strong="G3588"\+w* \+w has|strong="G2192"\+w* \+w a|strong="G2192"\+w* purse, \+w let|strong="G1161"\+w* \+w him|strong="G3588"\+w* \+w take|strong="G1161"\+w* \+w it|strong="G2532"\+w*, \+w and|strong="G2532"\+w* \+w likewise|strong="G3668"\+w* \+w a|strong="G2192"\+w* \+w bag|strong="G4082"\+w*. \+w Whoever|strong="G3588"\+w* \+w has|strong="G2192"\+w* \+w none|strong="G3361"\+w*, \+w let|strong="G1161"\+w* \+w him|strong="G3588"\+w* \+w sell|strong="G4453"\+w* \+w his|strong="G2192"\+w* \+w cloak|strong="G2440"\+w*, \+w and|strong="G2532"\+w* buy \+w a|strong="G2192"\+w* \+w sword|strong="G3162"\+w*. \wj* +\v 37 \wj \+w For|strong="G1063"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w this|strong="G3778"\+w* \+w which|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w written|strong="G1125"\+w* \+w must|strong="G1163"\+w* still \+w be|strong="G2532"\+w* \+w fulfilled|strong="G5055"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w*: ‘\+w He|strong="G2532"\+w* \+w was|strong="G3588"\+w* \+w counted|strong="G3049"\+w* \+w with|strong="G3326"\+w* transgressors.’\wj*\x + \xo 22:37 \xt Isaiah 53:12\x* \wj \+w For|strong="G1063"\+w* \+w that|strong="G3754"\+w* \+w which|strong="G3588"\+w* concerns \+w me|strong="G1473"\+w* \+w is|strong="G3588"\+w* \+w being|strong="G2532"\+w* \+w fulfilled|strong="G5055"\+w*.”\wj* +\p +\v 38 \w They|strong="G1161"\w* \w said|strong="G3004"\w*, “\w Lord|strong="G2962"\w*, \w behold|strong="G2400"\w*, \w here|strong="G5602"\w* \w are|strong="G1510"\w* \w two|strong="G1417"\w* \w swords|strong="G3162"\w*.” +\p \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w That|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w enough|strong="G2425"\+w*.”\wj* +\p +\v 39 \w He|strong="G2532"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w* \w and|strong="G2532"\w* \w went|strong="G1831"\w*, \w as|strong="G1519"\w* \w his|strong="G1519"\w* \w custom|strong="G1485"\w* \w was|strong="G3588"\w*, \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w Mount|strong="G3735"\w* \w of|strong="G2532"\w* \w Olives|strong="G1636"\w*. \w His|strong="G1519"\w* \w disciples|strong="G3101"\w* \w also|strong="G2532"\w* followed \w him|strong="G3588"\w*. +\v 40 \w When|strong="G1161"\w* \w he|strong="G1161"\w* \w was|strong="G1096"\w* \w at|strong="G1909"\w* \w the|strong="G1519"\w* \w place|strong="G5117"\w*, \w he|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Pray|strong="G4336"\+w* \+w that|strong="G3588"\+w* \+w you|strong="G3004"\+w* don’\+w t|strong="G3588"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w temptation|strong="G3986"\+w*.”\wj* +\p +\v 41 \w He|strong="G2532"\w* \w was|strong="G3588"\w* withdrawn \w from|strong="G2532"\w* \w them|strong="G3588"\w* \w about|strong="G5616"\w* \w a|strong="G2532"\w* \w stone|strong="G3037"\w*’s \w throw|strong="G1000"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w knelt|strong="G1119"\w* \w down|strong="G5087"\w* \w and|strong="G2532"\w* \w prayed|strong="G4336"\w*, +\v 42 \w saying|strong="G3004"\w*, \wj “\+w Father|strong="G3962"\+w*, \+w if|strong="G1487"\+w* \+w you|strong="G1487"\+w* \+w are|strong="G3588"\+w* \+w willing|strong="G1014"\+w*, \+w remove|strong="G3911"\+w* \+w this|strong="G3778"\+w* \+w cup|strong="G4221"\+w* \+w from|strong="G3588"\+w* \+w me|strong="G1473"\+w*. \+w Nevertheless|strong="G4133"\+w*, \+w not|strong="G3361"\+w* \+w my|strong="G1473"\+w* \+w will|strong="G2307"\+w*, \+w but|strong="G1487"\+w* \+w yours|strong="G4674"\+w*, \+w be|strong="G1096"\+w* \+w done|strong="G1096"\+w*.”\wj* +\p +\v 43 \w An|strong="G1161"\w* angel \w from|strong="G3772"\w* \w heaven|strong="G3772"\w* \w appeared|strong="G3708"\w* \w to|strong="G1161"\w* \w him|strong="G3708"\w*, \w strengthening|strong="G1765"\w* \w him|strong="G3708"\w*. +\v 44 \w Being|strong="G1096"\w* \w in|strong="G1722"\w* agony, \w he|strong="G2532"\w* \w prayed|strong="G4336"\w* \w more|strong="G2532"\w* \w earnestly|strong="G1617"\w*. \w His|strong="G1909"\w* \w sweat|strong="G2402"\w* \w became|strong="G1096"\w* \w like|strong="G5616"\w* \w great|strong="G2532"\w* \w drops|strong="G2361"\w* \w of|strong="G2532"\w* blood \w falling|strong="G1096"\w* \w down|strong="G2597"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w ground|strong="G1093"\w*. +\p +\v 45 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w rose|strong="G2532"\w* \w up|strong="G2532"\w* \w from|strong="G2064"\w* \w his|strong="G1438"\w* \w prayer|strong="G4335"\w*, \w he|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w and|strong="G2532"\w* \w found|strong="G2147"\w* \w them|strong="G3588"\w* \w sleeping|strong="G2837"\w* \w because|strong="G4314"\w* \w of|strong="G2532"\w* \w grief|strong="G3077"\w*, +\v 46 \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3004"\w*, \wj “\+w Why|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G3004"\+w* \+w sleep|strong="G2518"\+w*? Rise \+w and|strong="G2532"\+w* \+w pray|strong="G4336"\+w* \+w that|strong="G2443"\+w* \+w you|strong="G3004"\+w* \+w may|strong="G2532"\+w* \+w not|strong="G3361"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w temptation|strong="G3986"\+w*.”\wj* +\p +\v 47 \w While|strong="G2980"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w still|strong="G2089"\w* \w speaking|strong="G2980"\w*, \w a|strong="G2532"\w* \w crowd|strong="G3793"\w* \w appeared|strong="G3708"\w*. \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w called|strong="G3004"\w* \w Judas|strong="G2455"\w*, \w one|strong="G1520"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w twelve|strong="G1427"\w*, \w was|strong="G3588"\w* leading \w them|strong="G3588"\w*. \w He|strong="G2532"\w* \w came|strong="G2532"\w* \w near|strong="G1448"\w* \w to|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w to|strong="G2532"\w* \w kiss|strong="G5368"\w* \w him|strong="G3588"\w*. +\v 48 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w Judas|strong="G2455"\+w*, \+w do|strong="G3004"\+w* \+w you|strong="G3004"\+w* \+w betray|strong="G3860"\+w* \+w the|strong="G1161"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w* \+w with|strong="G3588"\+w* \+w a|strong="G1161"\+w* \+w kiss|strong="G5370"\+w*?”\wj* +\p +\v 49 \w When|strong="G1161"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G1510"\w* \w around|strong="G4012"\w* \w him|strong="G3588"\w* \w saw|strong="G3708"\w* \w what|strong="G3588"\w* \w was|strong="G1510"\w* \w about|strong="G4012"\w* \w to|strong="G3004"\w* \w happen|strong="G1510"\w*, \w they|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Lord|strong="G2962"\w*, \w shall|strong="G2962"\w* \w we|strong="G1161"\w* \w strike|strong="G3960"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w sword|strong="G3162"\w*?” +\v 50 \w A|strong="G2532"\w* \w certain|strong="G5100"\w* \w one|strong="G1520"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w* \w struck|strong="G3960"\w* \w the|strong="G2532"\w* \w servant|strong="G1401"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w high|strong="G2532"\w* priest, \w and|strong="G2532"\w* \w cut|strong="G2532"\w* \w off|strong="G1537"\w* \w his|strong="G2532"\w* \w right|strong="G1188"\w* \w ear|strong="G3775"\w*. +\p +\v 51 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w*, \wj “\+w Let|strong="G1439"\+w* \+w me|strong="G3004"\+w* \+w at|strong="G1161"\+w* least \+w do|strong="G2532"\+w* \+w this|strong="G3778"\+w*”\wj*—\w and|strong="G2532"\w* \w he|strong="G2532"\w* touched \w his|strong="G2532"\w* \w ear|strong="G5621"\w* \w and|strong="G2532"\w* \w healed|strong="G2390"\w* \w him|strong="G3588"\w*. +\v 52 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w chief|strong="G4755"\w* priests, \w captains|strong="G4755"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w temple|strong="G2413"\w*, \w and|strong="G2532"\w* \w elders|strong="G4245"\w*, \w who|strong="G3588"\w* \w had|strong="G2424"\w* \w come|strong="G1831"\w* \w against|strong="G1909"\w* \w him|strong="G3588"\w*, \wj “\+w Have|strong="G2532"\+w* \+w you|strong="G3004"\+w* \+w come|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w as|strong="G5613"\+w* \+w against|strong="G1909"\+w* \+w a|strong="G5613"\+w* \+w robber|strong="G3027"\+w*, \+w with|strong="G3326"\+w* \+w swords|strong="G3162"\+w* \+w and|strong="G2532"\+w* \+w clubs|strong="G3586"\+w*? \wj* +\v 53 \wj \+w When|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w was|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w you|strong="G5210"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w temple|strong="G2413"\+w* \+w daily|strong="G2250"\+w*, \+w you|strong="G5210"\+w* didn’\+w t|strong="G3588"\+w* \+w stretch|strong="G1614"\+w* \+w out|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w hands|strong="G5495"\+w* \+w against|strong="G2596"\+w* \+w me|strong="G1473"\+w*. \+w But|strong="G2532"\+w* \+w this|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w your|strong="G2532"\+w* \+w hour|strong="G5610"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w power|strong="G1849"\+w* \+w of|strong="G2250"\+w* \+w darkness|strong="G4655"\+w*.” \wj* +\p +\v 54 \w They|strong="G2532"\w* \w seized|strong="G4815"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w led|strong="G1521"\w* \w him|strong="G3588"\w* \w away|strong="G3113"\w*, \w and|strong="G2532"\w* \w brought|strong="G1521"\w* \w him|strong="G3588"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w high|strong="G2532"\w* priest’s \w house|strong="G3614"\w*. \w But|strong="G1161"\w* \w Peter|strong="G4074"\w* followed \w from|strong="G2532"\w* \w a|strong="G2532"\w* \w distance|strong="G3113"\w*. +\v 55 \w When|strong="G1161"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* kindled \w a|strong="G2532"\w* \w fire|strong="G4442"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w middle|strong="G3319"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* courtyard \w and|strong="G2532"\w* \w had|strong="G2532"\w* \w sat|strong="G2521"\w* \w down|strong="G2521"\w* \w together|strong="G4776"\w*, \w Peter|strong="G4074"\w* \w sat|strong="G2521"\w* \w among|strong="G1722"\w* \w them|strong="G3588"\w*. +\v 56 \w A|strong="G2532"\w* \w certain|strong="G5100"\w* \w servant|strong="G3588"\w* girl \w saw|strong="G3708"\w* \w him|strong="G3588"\w* \w as|strong="G1161"\w* \w he|strong="G2532"\w* \w sat|strong="G2521"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w light|strong="G5457"\w*, \w and|strong="G2532"\w* \w looking|strong="G2532"\w* intently \w at|strong="G4314"\w* \w him|strong="G3588"\w*, \w said|strong="G3004"\w*, “\w This|strong="G3778"\w* \w man|strong="G5100"\w* \w also|strong="G2532"\w* \w was|strong="G1510"\w* \w with|strong="G4862"\w* \w him|strong="G3588"\w*.” +\p +\v 57 \w He|strong="G1161"\w* denied \w Jesus|strong="G3004"\w*, \w saying|strong="G3004"\w*, “\w Woman|strong="G1135"\w*, \w I|strong="G1161"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w him|strong="G3588"\w*.” +\p +\v 58 \w After|strong="G3326"\w* \w a|strong="G2532"\w* \w little|strong="G1024"\w* \w while|strong="G1161"\w* \w someone|strong="G2087"\w* \w else|strong="G2087"\w* \w saw|strong="G3708"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w said|strong="G5346"\w*, “\w You|strong="G4771"\w* \w also|strong="G2532"\w* \w are|strong="G1510"\w* \w one|strong="G3588"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w*!” +\p \w But|strong="G1161"\w* \w Peter|strong="G4074"\w* \w answered|strong="G5346"\w*, “\w Man|strong="G2087"\w*, \w I|strong="G2532"\w* \w am|strong="G1510"\w* \w not|strong="G3756"\w*!” +\p +\v 59 \w After|strong="G3326"\w* \w about|strong="G5616"\w* \w one|strong="G1520"\w* \w hour|strong="G5610"\w* \w passed|strong="G1339"\w*, \w another|strong="G1520"\w* \w confidently|strong="G3326"\w* \w affirmed|strong="G1340"\w*, \w saying|strong="G3004"\w*, “\w Truly|strong="G1909"\w* \w this|strong="G3778"\w* \w man|strong="G5100"\w* \w also|strong="G2532"\w* \w was|strong="G1510"\w* \w with|strong="G3326"\w* \w him|strong="G2532"\w*, \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w a|strong="G2532"\w* \w Galilean|strong="G1057"\w*!” +\p +\v 60 \w But|strong="G1161"\w* \w Peter|strong="G4074"\w* \w said|strong="G3004"\w*, “\w Man|strong="G3739"\w*, \w I|strong="G3739"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w what|strong="G3739"\w* \w you|strong="G3739"\w* \w are|strong="G3588"\w* \w talking|strong="G2980"\w* \w about|strong="G2980"\w*!” \w Immediately|strong="G3916"\w*, \w while|strong="G2980"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w still|strong="G2089"\w* \w speaking|strong="G2980"\w*, \w a|strong="G2532"\w* rooster \w crowed|strong="G5455"\w*. +\v 61 \w The|strong="G2532"\w* \w Lord|strong="G2962"\w* \w turned|strong="G4762"\w* \w and|strong="G2532"\w* \w looked|strong="G1689"\w* \w at|strong="G1689"\w* \w Peter|strong="G4074"\w*. \w Then|strong="G2532"\w* \w Peter|strong="G4074"\w* \w remembered|strong="G5279"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*’\w s|strong="G2962"\w* \w word|strong="G3056"\w*, \w how|strong="G5613"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Before|strong="G4250"\+w* \+w the|strong="G2532"\+w* rooster \+w crows|strong="G5455"\+w* \+w you|strong="G3754"\+w* \+w will|strong="G2532"\+w* \+w deny|strong="G3588"\+w* \+w me|strong="G1473"\+w* \+w three|strong="G5151"\+w* \+w times|strong="G5151"\+w*.”\wj* +\v 62 \w He|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w*, \w and|strong="G2532"\w* \w wept|strong="G2799"\w* \w bitterly|strong="G4090"\w*. +\p +\v 63 \w The|strong="G2532"\w* \w men|strong="G3588"\w* \w who|strong="G3588"\w* \w held|strong="G4912"\w* \w Jesus|strong="G2532"\w* \w mocked|strong="G1702"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w beat|strong="G1194"\w* \w him|strong="G3588"\w*. +\v 64 \w Having|strong="G2532"\w* \w blindfolded|strong="G4028"\w* \w him|strong="G3588"\w*, \w they|strong="G2532"\w* \w struck|strong="G3817"\w* \w him|strong="G3588"\w* \w on|strong="G3004"\w* \w the|strong="G2532"\w* face \w and|strong="G2532"\w* \w asked|strong="G1905"\w* \w him|strong="G3588"\w*, “\w Prophesy|strong="G4395"\w*! \w Who|strong="G5101"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w one|strong="G3588"\w* \w who|strong="G5101"\w* \w struck|strong="G3817"\w* \w you|strong="G4771"\w*?” +\v 65 \w They|strong="G2532"\w* \w spoke|strong="G3004"\w* \w many|strong="G4183"\w* \w other|strong="G2087"\w* \w things|strong="G4183"\w* \w against|strong="G1519"\w* \w him|strong="G2532"\w*, insulting \w him|strong="G2532"\w*. +\p +\v 66 \w As|strong="G5613"\w* \w soon|strong="G5613"\w* \w as|strong="G5613"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w day|strong="G2250"\w*, \w the|strong="G2532"\w* assembly \w of|strong="G2250"\w* \w the|strong="G2532"\w* \w elders|strong="G4244"\w* \w of|strong="G2250"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w* \w were|strong="G1510"\w* \w gathered|strong="G4863"\w* \w together|strong="G4863"\w*, \w both|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w scribes|strong="G1122"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* led \w him|strong="G3588"\w* away \w into|strong="G1519"\w* \w their|strong="G2532"\w* \w council|strong="G4892"\w*, \w saying|strong="G3004"\w*, +\v 67 “\w If|strong="G1487"\w* \w you|strong="G5210"\w* \w are|strong="G1510"\w* \w the|strong="G1161"\w* \w Christ|strong="G5547"\w*, \w tell|strong="G3004"\w* \w us|strong="G3004"\w*.” +\p \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3004"\w*, \wj “\+w If|strong="G1487"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w you|strong="G5210"\+w* won’t \+w believe|strong="G4100"\+w*, \wj* +\v 68 \wj \+w and|strong="G1161"\+w* \+w if|strong="G1437"\+w* \+w I|strong="G1161"\+w* \+w ask|strong="G2065"\+w*, \+w you|strong="G1437"\+w* \+w will|strong="G2065"\+w* \+w in|strong="G3756"\+w* \+w no|strong="G3756"\+w* way answer \+w me|strong="G2065"\+w* \+w or|strong="G1161"\+w* \+w let|strong="G1161"\+w* \+w me|strong="G2065"\+w* go. \wj* +\v 69 \wj \+w From|strong="G1537"\+w* \+w now|strong="G1161"\+w* \+w on|strong="G1537"\+w*, \+w the|strong="G1537"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G1537"\+w* \+w Man|strong="G5207"\+w* \+w will|strong="G2316"\+w* \+w be|strong="G1510"\+w* \+w seated|strong="G2521"\+w* \+w at|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w right|strong="G1188"\+w* \+w hand|strong="G1188"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w power|strong="G1411"\+w* \+w of|strong="G1537"\+w* \+w God|strong="G2316"\+w*.”\wj* +\p +\v 70 \w They|strong="G1161"\w* \w all|strong="G3956"\w* \w said|strong="G3004"\w*, “\w Are|strong="G1510"\w* \w you|strong="G5210"\w* \w then|strong="G3767"\w* \w the|strong="G3956"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*?” +\p \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \wj “\+w You|strong="G5210"\+w* \+w say|strong="G3004"\+w* \+w it|strong="G3754"\+w*, \+w because|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w*.”\wj* +\p +\v 71 \w They|strong="G1161"\w* \w said|strong="G3004"\w*, “\w Why|strong="G5101"\w* \w do|strong="G5101"\w* \w we|strong="G1063"\w* \w need|strong="G5532"\w* \w any|strong="G2089"\w* \w more|strong="G2089"\w* \w witness|strong="G3141"\w*? \w For|strong="G1063"\w* \w we|strong="G1063"\w* ourselves \w have|strong="G2192"\w* heard \w from|strong="G3588"\w* \w his|strong="G2192"\w* own \w mouth|strong="G4750"\w*!” +\c 23 +\p +\v 1 \w The|strong="G2532"\w* whole \w company|strong="G4128"\w* \w of|strong="G2532"\w* \w them|strong="G3588"\w* \w rose|strong="G2532"\w* \w up|strong="G2532"\w* \w and|strong="G2532"\w* \w brought|strong="G2532"\w* \w him|strong="G3588"\w* \w before|strong="G1909"\w* \w Pilate|strong="G4091"\w*. +\v 2 \w They|strong="G2532"\w* \w began|strong="G1161"\w* \w to|strong="G2532"\w* \w accuse|strong="G2723"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w We|strong="G2249"\w* \w found|strong="G2147"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w perverting|strong="G1294"\w* \w the|strong="G2532"\w* \w nation|strong="G1484"\w*, \w forbidding|strong="G2967"\w* paying \w taxes|strong="G5411"\w* \w to|strong="G2532"\w* \w Caesar|strong="G2541"\w*, \w and|strong="G2532"\w* \w saying|strong="G3004"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w himself|strong="G1438"\w* \w is|strong="G1510"\w* \w Christ|strong="G5547"\w*, \w a|strong="G2532"\w* \w king|strong="G3588"\w*.” +\p +\v 3 \w Pilate|strong="G4091"\w* \w asked|strong="G2065"\w* \w him|strong="G3588"\w*, “\w Are|strong="G1510"\w* \w you|strong="G4771"\w* \w the|strong="G1161"\w* \w King|strong="G3588"\w* \w of|strong="G3588"\w* \w the|strong="G1161"\w* \w Jews|strong="G2453"\w*?” +\p \w He|strong="G1161"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w So|strong="G1161"\+w* \+w you|strong="G4771"\+w* \+w say|strong="G3004"\+w*.”\wj* +\p +\v 4 \w Pilate|strong="G4091"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w the|strong="G1722"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w multitudes|strong="G3793"\w*, “\w I|strong="G2532"\w* \w find|strong="G2147"\w* \w no|strong="G3762"\w* basis \w for|strong="G4314"\w* \w a|strong="G2532"\w* charge \w against|strong="G4314"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w*.” +\p +\v 5 \w But|strong="G1161"\w* \w they|strong="G2532"\w* insisted, \w saying|strong="G3004"\w*, “\w He|strong="G2532"\w* stirs \w up|strong="G2532"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w*, \w teaching|strong="G1321"\w* \w throughout|strong="G2596"\w* \w all|strong="G3650"\w* \w Judea|strong="G2449"\w*, beginning \w from|strong="G2532"\w* \w Galilee|strong="G1056"\w* \w even|strong="G2532"\w* \w to|strong="G2532"\w* \w this|strong="G3588"\w* \w place|strong="G5602"\w*.” +\p +\v 6 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w Pilate|strong="G4091"\w* heard \w Galilee|strong="G1057"\w* mentioned, \w he|strong="G1161"\w* \w asked|strong="G1905"\w* \w if|strong="G1487"\w* \w the|strong="G1161"\w* man \w was|strong="G1510"\w* \w a|strong="G1510"\w* \w Galilean|strong="G1057"\w*. +\v 7 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w found|strong="G1921"\w* \w out|strong="G1537"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w Herod|strong="G2264"\w*’s \w jurisdiction|strong="G1849"\w*, \w he|strong="G2532"\w* \w sent|strong="G2532"\w* \w him|strong="G3588"\w* \w to|strong="G4314"\w* \w Herod|strong="G2264"\w*, \w who|strong="G3588"\w* \w was|strong="G1510"\w* \w also|strong="G2532"\w* \w in|strong="G1722"\w* \w Jerusalem|strong="G2414"\w* \w during|strong="G1722"\w* \w those|strong="G3588"\w* \w days|strong="G2250"\w*. +\p +\v 8 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w Herod|strong="G2264"\w* \w saw|strong="G3708"\w* \w Jesus|strong="G2424"\w*, \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w exceedingly|strong="G3029"\w* \w glad|strong="G5463"\w*, \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w had|strong="G2424"\w* \w wanted|strong="G2309"\w* \w to|strong="G2532"\w* \w see|strong="G3708"\w* \w him|strong="G3588"\w* \w for|strong="G1063"\w* \w a|strong="G1096"\w* \w long|strong="G2425"\w* \w time|strong="G5550"\w*, \w because|strong="G1223"\w* \w he|strong="G2532"\w* \w had|strong="G2424"\w* heard \w many|strong="G2425"\w* \w things|strong="G3588"\w* \w about|strong="G4012"\w* \w him|strong="G3588"\w*. \w He|strong="G2532"\w* \w hoped|strong="G1679"\w* \w to|strong="G2532"\w* \w see|strong="G3708"\w* \w some|strong="G5100"\w* \w miracle|strong="G4592"\w* \w done|strong="G1096"\w* \w by|strong="G1223"\w* \w him|strong="G3588"\w*. +\v 9 \w He|strong="G1161"\w* \w questioned|strong="G1905"\w* \w him|strong="G1905"\w* \w with|strong="G1722"\w* \w many|strong="G2425"\w* \w words|strong="G3056"\w*, \w but|strong="G1161"\w* \w he|strong="G1161"\w* \w gave|strong="G3762"\w* \w no|strong="G3762"\w* answers. +\v 10 \w The|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w scribes|strong="G1122"\w* \w stood|strong="G2476"\w*, \w vehemently|strong="G2159"\w* \w accusing|strong="G2723"\w* \w him|strong="G3588"\w*. +\v 11 \w Herod|strong="G2264"\w* \w with|strong="G4862"\w* \w his|strong="G2532"\w* \w soldiers|strong="G4753"\w* humiliated \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w mocked|strong="G1702"\w* \w him|strong="G3588"\w*. \w Dressing|strong="G4016"\w* \w him|strong="G3588"\w* \w in|strong="G2532"\w* luxurious \w clothing|strong="G2066"\w*, \w they|strong="G2532"\w* \w sent|strong="G2532"\w* \w him|strong="G3588"\w* back \w to|strong="G2532"\w* \w Pilate|strong="G4091"\w*. +\v 12 \w Herod|strong="G2264"\w* \w and|strong="G2532"\w* \w Pilate|strong="G4091"\w* \w became|strong="G1096"\w* \w friends|strong="G5384"\w* \w with|strong="G3326"\w* \w each|strong="G1438"\w* \w other|strong="G1161"\w* \w that|strong="G3588"\w* \w very|strong="G2532"\w* \w day|strong="G2250"\w*, \w for|strong="G1063"\w* \w before|strong="G4314"\w* \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w enemies|strong="G2189"\w* \w with|strong="G3326"\w* \w each|strong="G1438"\w* \w other|strong="G1161"\w*. +\p +\v 13 \w Pilate|strong="G4091"\w* \w called|strong="G4779"\w* \w together|strong="G4779"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests, \w the|strong="G2532"\w* rulers, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w*, +\v 14 \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, “\w You|strong="G5210"\w* \w brought|strong="G4374"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w to|strong="G4314"\w* \w me|strong="G1473"\w* \w as|strong="G5613"\w* \w one|strong="G3762"\w* \w that|strong="G3739"\w* perverts \w the|strong="G1722"\w* \w people|strong="G2992"\w*, \w and|strong="G2532"\w* \w behold|strong="G2400"\w*, \w having|strong="G2532"\w* examined \w him|strong="G3588"\w* \w before|strong="G1799"\w* \w you|strong="G5210"\w*, \w I|strong="G1473"\w* \w found|strong="G2147"\w* \w no|strong="G3762"\w* \w basis|strong="G2596"\w* \w for|strong="G4314"\w* \w a|strong="G5613"\w* \w charge|strong="G2723"\w* \w against|strong="G2596"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w concerning|strong="G2596"\w* \w those|strong="G3588"\w* \w things|strong="G3778"\w* \w of|strong="G2532"\w* \w which|strong="G3739"\w* \w you|strong="G5210"\w* \w accuse|strong="G2723"\w* \w him|strong="G3588"\w*. +\v 15 \w Neither|strong="G3761"\w* \w has|strong="G3762"\w* \w Herod|strong="G2264"\w*, \w for|strong="G1063"\w* \w I|strong="G1473"\w* \w sent|strong="G2532"\w* \w you|strong="G3708"\w* \w to|strong="G4314"\w* \w him|strong="G3708"\w*, \w and|strong="G2532"\w* \w see|strong="G3708"\w*, \w nothing|strong="G3762"\w* worthy \w of|strong="G2532"\w* \w death|strong="G2288"\w* \w has|strong="G3762"\w* \w been|strong="G1510"\w* \w done|strong="G4238"\w* \w by|strong="G4314"\w* \w him|strong="G3708"\w*. +\v 16 \w I|strong="G3767"\w* \w will|strong="G3767"\w* \w therefore|strong="G3767"\w* \w chastise|strong="G3811"\w* him \w and|strong="G3767"\w* release him.” +\p +\v 17 Now he had to release one prisoner to them at the feast.\f + \fr 23:17 \ft NU omits verse 17.\f* +\v 18 \w But|strong="G1161"\w* \w they|strong="G1161"\w* \w all|strong="G1161"\w* \w cried|strong="G3588"\w* out \w together|strong="G3826"\w*, \w saying|strong="G3004"\w*, “Away \w with|strong="G3588"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w*! Release \w to|strong="G3004"\w* \w us|strong="G3004"\w* Barabbas!”— +\v 19 \w one|strong="G5100"\w* \w who|strong="G3588"\w* \w was|strong="G1510"\w* thrown \w into|strong="G1722"\w* \w prison|strong="G5438"\w* \w for|strong="G1223"\w* \w a|strong="G1096"\w* \w certain|strong="G5100"\w* revolt \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w city|strong="G4172"\w*, \w and|strong="G2532"\w* \w for|strong="G1223"\w* \w murder|strong="G5408"\w*. +\p +\v 20 \w Then|strong="G1161"\w* \w Pilate|strong="G4091"\w* \w spoke|strong="G4377"\w* \w to|strong="G2309"\w* \w them|strong="G3588"\w* \w again|strong="G3825"\w*, \w wanting|strong="G2309"\w* \w to|strong="G2309"\w* release \w Jesus|strong="G2424"\w*, +\v 21 \w but|strong="G1161"\w* \w they|strong="G1161"\w* \w shouted|strong="G2019"\w*, \w saying|strong="G3004"\w*, “\w Crucify|strong="G4717"\w*! \w Crucify|strong="G4717"\w* \w him|strong="G3588"\w*!” +\p +\v 22 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w* \w the|strong="G1722"\w* \w third|strong="G5154"\w* \w time|strong="G5154"\w*, “\w Why|strong="G5101"\w*? \w What|strong="G5101"\w* \w evil|strong="G2556"\w* \w has|strong="G5101"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w done|strong="G4160"\w*? \w I|strong="G1161"\w* \w have|strong="G4160"\w* \w found|strong="G2147"\w* \w no|strong="G3762"\w* capital \w crime|strong="G2147"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*. \w I|strong="G1161"\w* \w will|strong="G5101"\w* \w therefore|strong="G3767"\w* \w chastise|strong="G3811"\w* \w him|strong="G3588"\w* \w and|strong="G1161"\w* release \w him|strong="G3588"\w*.” +\v 23 \w But|strong="G1161"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* urgent \w with|strong="G2532"\w* \w loud|strong="G3173"\w* \w voices|strong="G5456"\w*, asking \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w be|strong="G2532"\w* \w crucified|strong="G4717"\w*. \w Their|strong="G2532"\w* \w voices|strong="G5456"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w voices|strong="G5456"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w prevailed|strong="G2729"\w*. +\v 24 \w Pilate|strong="G4091"\w* decreed \w that|strong="G3588"\w* \w what|strong="G3588"\w* \w they|strong="G2532"\w* asked \w for|strong="G2532"\w* \w should|strong="G3588"\w* \w be|strong="G1096"\w* \w done|strong="G1096"\w*. +\v 25 \w He|strong="G2532"\w* released \w him|strong="G3588"\w* \w who|strong="G3739"\w* \w had|strong="G2424"\w* \w been|strong="G2532"\w* thrown \w into|strong="G1519"\w* \w prison|strong="G5438"\w* \w for|strong="G1519"\w* \w insurrection|strong="G4714"\w* \w and|strong="G2532"\w* \w murder|strong="G5408"\w*, \w for|strong="G1519"\w* \w whom|strong="G3739"\w* \w they|strong="G2532"\w* asked, \w but|strong="G1161"\w* \w he|strong="G2532"\w* \w delivered|strong="G3860"\w* \w Jesus|strong="G2424"\w* \w up|strong="G3860"\w* \w to|strong="G1519"\w* \w their|strong="G2532"\w* \w will|strong="G2307"\w*. +\p +\v 26 \w When|strong="G5613"\w* \w they|strong="G2532"\w* \w led|strong="G2424"\w* \w him|strong="G3588"\w* away, \w they|strong="G2532"\w* grabbed \w one|strong="G5100"\w* \w Simon|strong="G4613"\w* \w of|strong="G2532"\w* \w Cyrene|strong="G2956"\w*, \w coming|strong="G2064"\w* \w from|strong="G2064"\w* \w the|strong="G2532"\w* country, \w and|strong="G2532"\w* \w laid|strong="G2007"\w* \w the|strong="G2532"\w* \w cross|strong="G4716"\w* \w on|strong="G1949"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w carry|strong="G5342"\w* \w it|strong="G2532"\w* \w after|strong="G5613"\w* \w Jesus|strong="G2424"\w*. +\v 27 \w A|strong="G2532"\w* \w great|strong="G4183"\w* \w multitude|strong="G4128"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w* \w followed|strong="G2992"\w* \w him|strong="G3588"\w*, \w including|strong="G2532"\w* \w women|strong="G1135"\w* \w who|strong="G3739"\w* \w also|strong="G2532"\w* mourned \w and|strong="G2532"\w* \w lamented|strong="G2875"\w* \w him|strong="G3588"\w*. +\v 28 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w*, \w turning|strong="G4762"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \w said|strong="G3004"\w*, \wj “\+w Daughters|strong="G2364"\+w* \+w of|strong="G2532"\+w* \+w Jerusalem|strong="G2419"\+w*, don’\+w t|strong="G3588"\+w* \+w weep|strong="G2799"\+w* \+w for|strong="G1909"\+w* \+w me|strong="G1473"\+w*, \+w but|strong="G1161"\+w* \+w weep|strong="G2799"\+w* \+w for|strong="G1909"\+w* \+w yourselves|strong="G1438"\+w* \+w and|strong="G2532"\+w* \+w for|strong="G1909"\+w* \+w your|strong="G2532"\+w* \+w children|strong="G5043"\+w*. \wj* +\v 29 \wj \+w For|strong="G3754"\+w* \+w behold|strong="G2400"\+w*, \+w the|strong="G1722"\+w* \+w days|strong="G2250"\+w* \+w are|strong="G3588"\+w* \+w coming|strong="G2064"\+w* \+w in|strong="G1722"\+w* \+w which|strong="G3739"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w say|strong="G3004"\+w*, ‘\+w Blessed|strong="G3107"\+w* \+w are|strong="G3588"\+w* \+w the|strong="G1722"\+w* \+w barren|strong="G4723"\+w*, \+w the|strong="G1722"\+w* \+w wombs|strong="G2836"\+w* \+w that|strong="G3754"\+w* \+w never|strong="G3756"\+w* \+w bore|strong="G1080"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w breasts|strong="G3149"\+w* \+w that|strong="G3754"\+w* \+w never|strong="G3756"\+w* \+w nursed|strong="G5142"\+w*.’ \wj* +\v 30 \wj \+w Then|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* begin \+w to|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w the|strong="G2532"\+w* \+w mountains|strong="G3735"\+w*, ‘\+w Fall|strong="G4098"\+w* \+w on|strong="G1909"\+w* \+w us|strong="G3004"\+w*!’ \+w and|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w the|strong="G2532"\+w* \+w hills|strong="G1015"\+w*, ‘\+w Cover|strong="G2572"\+w* \+w us|strong="G3004"\+w*.’\wj*\x + \xo 23:30 \xt Hosea 10:8\x* +\v 31 \wj \+w For|strong="G3754"\+w* \+w if|strong="G1487"\+w* \+w they|strong="G3588"\+w* \+w do|strong="G4160"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w green|strong="G5200"\+w* \+w tree|strong="G3586"\+w*, \+w what|strong="G5101"\+w* \+w will|strong="G5101"\+w* \+w be|strong="G1096"\+w* \+w done|strong="G4160"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w dry|strong="G3584"\+w*?”\wj* +\p +\v 32 \w There|strong="G2532"\w* \w were|strong="G2532"\w* \w also|strong="G2532"\w* \w others|strong="G2087"\w*, \w two|strong="G1417"\w* \w criminals|strong="G2557"\w*, led \w with|strong="G4862"\w* \w him|strong="G2532"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w put|strong="G2532"\w* \w to|strong="G2532"\w* death. +\v 33 \w When|strong="G3753"\w* \w they|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w place|strong="G5117"\w* \w that|strong="G3739"\w* \w is|strong="G3588"\w* \w called|strong="G2564"\w* “\w The|strong="G2532"\w* \w Skull|strong="G2898"\w*”, \w they|strong="G2532"\w* \w crucified|strong="G4717"\w* \w him|strong="G3588"\w* \w there|strong="G1563"\w* \w with|strong="G1537"\w* \w the|strong="G2532"\w* \w criminals|strong="G2557"\w*, \w one|strong="G3739"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w right|strong="G1188"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w other|strong="G1161"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* left. +\p +\v 34 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w*, \wj “\+w Father|strong="G3962"\+w*, forgive \+w them|strong="G3588"\+w*, \+w for|strong="G1063"\+w* \+w they|strong="G1161"\+w* don’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w* \+w what|strong="G5101"\+w* \+w they|strong="G1161"\+w* \+w are|strong="G3588"\+w* \+w doing|strong="G4160"\+w*.”\wj* +\p \w Dividing|strong="G1266"\w* \w his|strong="G4160"\w* \w garments|strong="G2440"\w* \w among|strong="G1266"\w* \w them|strong="G3588"\w*, \w they|strong="G1161"\w* \w cast|strong="G3756"\w* \w lots|strong="G2819"\w*. +\v 35 \w The|strong="G2532"\w* \w people|strong="G2992"\w* \w stood|strong="G2476"\w* \w watching|strong="G2334"\w*. \w The|strong="G2532"\w* rulers \w with|strong="G2532"\w* \w them|strong="G3588"\w* \w also|strong="G2532"\w* scoffed \w at|strong="G1161"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w He|strong="G2532"\w* \w saved|strong="G4982"\w* \w others|strong="G3588"\w*. \w Let|strong="G1161"\w* \w him|strong="G3588"\w* \w save|strong="G4982"\w* \w himself|strong="G1438"\w*, \w if|strong="G1487"\w* \w this|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w Christ|strong="G5547"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w his|strong="G1438"\w* \w chosen|strong="G1588"\w* \w one|strong="G1438"\w*!” +\p +\v 36 \w The|strong="G2532"\w* \w soldiers|strong="G4757"\w* \w also|strong="G2532"\w* \w mocked|strong="G1702"\w* \w him|strong="G3588"\w*, \w coming|strong="G4334"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w offering|strong="G4374"\w* \w him|strong="G3588"\w* \w vinegar|strong="G3690"\w*, +\v 37 \w and|strong="G2532"\w* \w saying|strong="G3004"\w*, “\w If|strong="G1487"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* \w King|strong="G3588"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w*, \w save|strong="G4982"\w* \w yourself|strong="G4572"\w*!” +\p +\v 38 \w An|strong="G2532"\w* \w inscription|strong="G1923"\w* \w was|strong="G1510"\w* \w also|strong="G2532"\w* \w written|strong="G3588"\w* \w over|strong="G1909"\w* \w him|strong="G3588"\w* \w in|strong="G1909"\w* letters \w of|strong="G2532"\w* Greek, Latin, \w and|strong="G2532"\w* Hebrew: “\w THIS|strong="G3778"\w* \w IS|strong="G1510"\w* \w THE|strong="G2532"\w* \w KING|strong="G3588"\w* \w OF|strong="G2532"\w* \w THE|strong="G2532"\w* \w JEWS|strong="G2453"\w*.” +\p +\v 39 \w One|strong="G1520"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w criminals|strong="G2557"\w* \w who|strong="G3588"\w* \w was|strong="G1510"\w* \w hanged|strong="G2910"\w* insulted \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w If|strong="G2532"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* \w Christ|strong="G5547"\w*, \w save|strong="G4982"\w* \w yourself|strong="G4572"\w* \w and|strong="G2532"\w* \w us|strong="G3004"\w*!” +\p +\v 40 \w But|strong="G1161"\w* \w the|strong="G1722"\w* \w other|strong="G2087"\w* \w answered|strong="G5346"\w*, \w and|strong="G1161"\w* \w rebuking|strong="G2008"\w* \w him|strong="G3588"\w* \w said|strong="G5346"\w*, “Don’\w t|strong="G3588"\w* \w you|strong="G4771"\w* \w even|strong="G3761"\w* \w fear|strong="G5399"\w* \w God|strong="G2316"\w*, \w seeing|strong="G3754"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w under|strong="G1722"\w* \w the|strong="G1722"\w* same \w condemnation|strong="G2917"\w*? +\v 41 \w And|strong="G2532"\w* \w we|strong="G2249"\w* \w indeed|strong="G2532"\w* \w justly|strong="G1346"\w*, \w for|strong="G1063"\w* \w we|strong="G2249"\w* receive \w the|strong="G2532"\w* due reward \w for|strong="G1063"\w* \w our|strong="G2532"\w* \w deeds|strong="G4238"\w*, \w but|strong="G1161"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w has|strong="G3739"\w* \w done|strong="G4238"\w* \w nothing|strong="G3762"\w* wrong.” +\v 42 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w Jesus|strong="G2424"\w*, “\w Lord|strong="G3588"\w*, \w remember|strong="G3403"\w* \w me|strong="G1473"\w* \w when|strong="G3752"\w* \w you|strong="G4771"\w* \w come|strong="G2064"\w* \w into|strong="G1722"\w* \w your|strong="G2532"\w* Kingdom.” +\p +\v 43 \w Jesus|strong="G3004"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “Assuredly \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w*, \+w today|strong="G4594"\+w* \+w you|strong="G4771"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1473"\+w* \+w in|strong="G1722"\+w* \+w Paradise|strong="G3857"\+w*.”\wj* +\p +\v 44 \w It|strong="G2532"\w* \w was|strong="G1510"\w* \w now|strong="G2532"\w* \w about|strong="G5616"\w* \w the|strong="G2532"\w* \w sixth|strong="G1623"\w* \w hour|strong="G5610"\w*,\f + \fr 23:44 \ft Time was counted from sunrise, so the sixth hour was about noon.\f* \w and|strong="G2532"\w* \w darkness|strong="G4655"\w* \w came|strong="G1096"\w* \w over|strong="G1909"\w* \w the|strong="G2532"\w* \w whole|strong="G3650"\w* \w land|strong="G1093"\w* \w until|strong="G2193"\w* \w the|strong="G2532"\w* \w ninth|strong="G1766"\w* \w hour|strong="G5610"\w*.\f + \fr 23:44 \ft 3:00 p.m.\f* +\v 45 \w The|strong="G1161"\w* \w sun|strong="G2246"\w* \w was|strong="G3588"\w* darkened, \w and|strong="G1161"\w* \w the|strong="G1161"\w* \w veil|strong="G2665"\w* \w of|strong="G3485"\w* \w the|strong="G1161"\w* \w temple|strong="G3485"\w* \w was|strong="G3588"\w* \w torn|strong="G4977"\w* \w in|strong="G1161"\w* \w two|strong="G3319"\w*. +\v 46 \w Jesus|strong="G2424"\w*, \w crying|strong="G5455"\w* \w with|strong="G2532"\w* \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, \w said|strong="G3004"\w*, \wj “\+w Father|strong="G3962"\+w*, \+w into|strong="G1519"\+w* \+w your|strong="G2532"\+w* \+w hands|strong="G5495"\+w* \+w I|strong="G1473"\+w* \+w commit|strong="G3908"\+w* \+w my|strong="G1473"\+w* \+w spirit|strong="G4151"\+w*!”\wj* \w Having|strong="G2532"\w* \w said|strong="G3004"\w* \w this|strong="G3778"\w*, \w he|strong="G2532"\w* \w breathed|strong="G1606"\w* \w his|strong="G1519"\w* \w last|strong="G1606"\w*. +\p +\v 47 \w When|strong="G1161"\w* \w the|strong="G1161"\w* \w centurion|strong="G1543"\w* \w saw|strong="G3708"\w* \w what|strong="G3588"\w* \w was|strong="G1510"\w* \w done|strong="G1096"\w*, \w he|strong="G1161"\w* \w glorified|strong="G1392"\w* \w God|strong="G2316"\w*, \w saying|strong="G3004"\w*, “\w Certainly|strong="G3689"\w* \w this|strong="G3778"\w* \w was|strong="G1510"\w* \w a|strong="G1096"\w* \w righteous|strong="G1342"\w* \w man|strong="G3778"\w*.” +\v 48 \w All|strong="G3956"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w* \w that|strong="G3588"\w* \w came|strong="G1096"\w* \w together|strong="G1909"\w* \w to|strong="G2532"\w* \w see|strong="G2334"\w* \w this|strong="G3778"\w*, \w when|strong="G2532"\w* \w they|strong="G2532"\w* \w saw|strong="G2334"\w* \w the|strong="G2532"\w* \w things|strong="G3956"\w* \w that|strong="G3588"\w* \w were|strong="G3588"\w* \w done|strong="G1096"\w*, \w returned|strong="G5290"\w* \w home|strong="G5290"\w* \w beating|strong="G5180"\w* \w their|strong="G2532"\w* \w chests|strong="G4738"\w*. +\v 49 \w All|strong="G3956"\w* \w his|strong="G3956"\w* \w acquaintances|strong="G1110"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w women|strong="G1135"\w* \w who|strong="G3588"\w* \w followed|strong="G4870"\w* \w with|strong="G2532"\w* \w him|strong="G3588"\w* \w from|strong="G2532"\w* \w Galilee|strong="G1056"\w* \w stood|strong="G2476"\w* \w at|strong="G1161"\w* \w a|strong="G2532"\w* \w distance|strong="G3113"\w*, watching \w these|strong="G3778"\w* \w things|strong="G3956"\w*. +\p +\v 50 \w Behold|strong="G2400"\w*, \w there|strong="G2532"\w* \w was|strong="G2532"\w* \w a|strong="G2532"\w* \w man|strong="G1342"\w* \w named|strong="G3686"\w* \w Joseph|strong="G2501"\w*, \w who|strong="G2532"\w* \w was|strong="G2532"\w* \w a|strong="G2532"\w* \w member|strong="G1010"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w council|strong="G1010"\w*, \w a|strong="G2532"\w* \w good|strong="G2532"\w* \w and|strong="G2532"\w* \w righteous|strong="G1342"\w* \w man|strong="G1342"\w* +\v 51 (\w he|strong="G2532"\w* \w had|strong="G2532"\w* \w not|strong="G3756"\w* \w consented|strong="G4784"\w* \w to|strong="G2532"\w* \w their|strong="G2532"\w* \w counsel|strong="G1012"\w* \w and|strong="G2532"\w* \w deed|strong="G4234"\w*), \w from|strong="G2532"\w* Arimathaea, \w a|strong="G2532"\w* \w city|strong="G4172"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w*, \w who|strong="G3739"\w* \w was|strong="G1510"\w* \w also|strong="G2532"\w* \w waiting|strong="G4327"\w* \w for|strong="G2532"\w* \w God|strong="G2316"\w*’s Kingdom. +\v 52 \w This|strong="G3778"\w* \w man|strong="G3778"\w* \w went|strong="G4334"\w* \w to|strong="G4334"\w* \w Pilate|strong="G4091"\w*, \w and|strong="G4334"\w* asked \w for|strong="G3778"\w* \w Jesus|strong="G2424"\w*’ \w body|strong="G4983"\w*. +\v 53 \w He|strong="G2532"\w* \w took|strong="G2507"\w* \w it|strong="G2532"\w* \w down|strong="G5087"\w* \w and|strong="G2532"\w* \w wrapped|strong="G1794"\w* \w it|strong="G2532"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* \w linen|strong="G4616"\w* \w cloth|strong="G4616"\w*, \w and|strong="G2532"\w* \w laid|strong="G5087"\w* \w him|strong="G2532"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* \w tomb|strong="G3418"\w* \w that|strong="G2532"\w* \w was|strong="G1510"\w* \w cut|strong="G2532"\w* \w in|strong="G1722"\w* \w stone|strong="G2991"\w*, \w where|strong="G3757"\w* \w no|strong="G3756"\w* \w one|strong="G3762"\w* \w had|strong="G2532"\w* \w ever|strong="G3756"\w* \w been|strong="G1510"\w* \w laid|strong="G5087"\w*. +\v 54 \w It|strong="G2532"\w* \w was|strong="G1510"\w* \w the|strong="G2532"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* \w the|strong="G2532"\w* \w Preparation|strong="G3904"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Sabbath|strong="G4521"\w* \w was|strong="G1510"\w* drawing near. +\v 55 \w The|strong="G2532"\w* \w women|strong="G1135"\w* \w who|strong="G3588"\w* \w had|strong="G2532"\w* \w come|strong="G4905"\w* \w with|strong="G1537"\w* \w him|strong="G3588"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w Galilee|strong="G1056"\w* \w followed|strong="G2628"\w* \w after|strong="G1161"\w*, \w and|strong="G2532"\w* \w saw|strong="G2300"\w* \w the|strong="G2532"\w* \w tomb|strong="G3419"\w* \w and|strong="G2532"\w* \w how|strong="G5613"\w* \w his|strong="G2532"\w* \w body|strong="G4983"\w* \w was|strong="G1510"\w* \w laid|strong="G5087"\w*. +\v 56 \w They|strong="G2532"\w* \w returned|strong="G5290"\w* \w and|strong="G2532"\w* \w prepared|strong="G2090"\w* spices \w and|strong="G2532"\w* \w ointments|strong="G3464"\w*. \w On|strong="G2596"\w* \w the|strong="G2532"\w* \w Sabbath|strong="G4521"\w* \w they|strong="G2532"\w* \w rested|strong="G2270"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w commandment|strong="G1785"\w*. +\c 24 +\p +\v 1 \w But|strong="G1161"\w* \w on|strong="G1909"\w* \w the|strong="G1161"\w* \w first|strong="G1520"\w* \w day|strong="G4521"\w* \w of|strong="G1909"\w* \w the|strong="G1161"\w* \w week|strong="G4521"\w*, \w at|strong="G1909"\w* \w early|strong="G3722"\w* \w dawn|strong="G3722"\w*, \w they|strong="G1161"\w* \w and|strong="G1161"\w* \w some|strong="G3739"\w* \w others|strong="G3588"\w* \w came|strong="G2064"\w* \w to|strong="G1909"\w* \w the|strong="G1161"\w* \w tomb|strong="G3418"\w*, \w bringing|strong="G5342"\w* \w the|strong="G1161"\w* spices \w which|strong="G3739"\w* \w they|strong="G1161"\w* \w had|strong="G3739"\w* \w prepared|strong="G2090"\w*. +\v 2 \w They|strong="G1161"\w* \w found|strong="G2147"\w* \w the|strong="G1161"\w* \w stone|strong="G3037"\w* \w rolled|strong="G3037"\w* away \w from|strong="G3588"\w* \w the|strong="G1161"\w* \w tomb|strong="G3419"\w*. +\v 3 \w They|strong="G1161"\w* \w entered|strong="G1525"\w* \w in|strong="G1525"\w*, \w and|strong="G1161"\w* didn’\w t|strong="G3588"\w* \w find|strong="G2147"\w* \w the|strong="G1161"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*’ \w body|strong="G4983"\w*. +\v 4 \w While|strong="G1722"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* greatly perplexed \w about|strong="G4012"\w* \w this|strong="G3778"\w*, \w behold|strong="G2400"\w*, \w two|strong="G1417"\w* \w men|strong="G3778"\w* \w stood|strong="G2186"\w* \w by|strong="G1722"\w* \w them|strong="G3588"\w* \w in|strong="G1722"\w* dazzling \w clothing|strong="G2066"\w*. +\v 5 \w Becoming|strong="G1096"\w* \w terrified|strong="G1719"\w*, \w they|strong="G2532"\w* \w bowed|strong="G2827"\w* \w their|strong="G1438"\w* \w faces|strong="G4383"\w* \w down|strong="G2827"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*. +\p \w The|strong="G2532"\w* \w men|strong="G3588"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, “\w Why|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G3004"\w* \w seek|strong="G2212"\w* \w the|strong="G2532"\w* \w living|strong="G2198"\w* \w among|strong="G1519"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*? +\v 6 \w He|strong="G3588"\w* isn’\w t|strong="G3588"\w* \w here|strong="G5602"\w*, \w but|strong="G3588"\w* \w is|strong="G1510"\w* \w risen|strong="G1453"\w*. \w Remember|strong="G3403"\w* \w what|strong="G3588"\w* \w he|strong="G3588"\w* \w told|strong="G2980"\w* \w you|strong="G5210"\w* \w when|strong="G5613"\w* \w he|strong="G3588"\w* \w was|strong="G1510"\w* \w still|strong="G2089"\w* \w in|strong="G1722"\w* \w Galilee|strong="G1056"\w*, +\v 7 \w saying|strong="G3004"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w Man|strong="G1519"\w* \w must|strong="G1163"\w* \w be|strong="G2532"\w* \w delivered|strong="G3860"\w* \w up|strong="G3860"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w hands|strong="G5495"\w* \w of|strong="G5207"\w* sinful \w men|strong="G3588"\w* \w and|strong="G2532"\w* \w be|strong="G2532"\w* \w crucified|strong="G4717"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w third|strong="G5154"\w* \w day|strong="G2250"\w* \w rise|strong="G2250"\w* \w again|strong="G1519"\w*?” +\p +\v 8 \w They|strong="G2532"\w* \w remembered|strong="G3403"\w* \w his|strong="G2532"\w* \w words|strong="G4487"\w*, +\v 9 \w returned|strong="G5290"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w tomb|strong="G3419"\w*, \w and|strong="G2532"\w* told \w all|strong="G3956"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w eleven|strong="G1733"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w rest|strong="G3062"\w*. +\v 10 \w Now|strong="G1161"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w Mary|strong="G3137"\w* \w Magdalene|strong="G3094"\w*, \w Joanna|strong="G2489"\w*, \w and|strong="G2532"\w* \w Mary|strong="G3137"\w* \w the|strong="G2532"\w* mother \w of|strong="G2532"\w* \w James|strong="G2385"\w*. \w The|strong="G2532"\w* \w other|strong="G3062"\w* \w women|strong="G3062"\w* \w with|strong="G4862"\w* \w them|strong="G3588"\w* \w told|strong="G3004"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* apostles. +\v 11 \w These|strong="G3778"\w* \w words|strong="G4487"\w* \w seemed|strong="G5316"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w nonsense|strong="G3026"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* didn’\w t|strong="G3588"\w* believe \w them|strong="G3588"\w*. +\v 12 \w But|strong="G1161"\w* \w Peter|strong="G4074"\w* \w got|strong="G1096"\w* \w up|strong="G2532"\w* \w and|strong="G2532"\w* \w ran|strong="G5143"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w tomb|strong="G3419"\w*. \w Stooping|strong="G3879"\w* \w and|strong="G2532"\w* \w looking|strong="G3879"\w* \w in|strong="G1909"\w*, \w he|strong="G2532"\w* saw \w the|strong="G2532"\w* strips \w of|strong="G2532"\w* \w linen|strong="G3608"\w* lying \w by|strong="G1909"\w* \w themselves|strong="G1438"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* departed \w to|strong="G4314"\w* \w his|strong="G1438"\w* \w home|strong="G1438"\w*, \w wondering|strong="G2296"\w* \w what|strong="G2532"\w* \w had|strong="G2532"\w* \w happened|strong="G1096"\w*. +\p +\v 13 \w Behold|strong="G2400"\w*, \w two|strong="G1417"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w* \w were|strong="G1510"\w* \w going|strong="G4198"\w* \w that|strong="G3739"\w* \w very|strong="G2532"\w* \w day|strong="G2250"\w* \w to|strong="G1519"\w* \w a|strong="G2532"\w* \w village|strong="G2968"\w* \w named|strong="G3686"\w* \w Emmaus|strong="G1695"\w*, \w which|strong="G3739"\w* \w was|strong="G1510"\w* \w sixty|strong="G1835"\w* stadia\f + \fr 24:13 \ft 60 stadia = about 11 kilometers or about 7 miles. \f* \w from|strong="G1537"\w* \w Jerusalem|strong="G2419"\w*. +\v 14 \w They|strong="G2532"\w* \w talked|strong="G3656"\w* \w with|strong="G4314"\w* each \w other|strong="G3588"\w* \w about|strong="G4012"\w* \w all|strong="G3956"\w* \w of|strong="G4012"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w* \w which|strong="G3588"\w* \w had|strong="G2532"\w* \w happened|strong="G4819"\w*. +\v 15 \w While|strong="G1722"\w* \w they|strong="G2532"\w* \w talked|strong="G3656"\w* \w and|strong="G2532"\w* \w questioned|strong="G4802"\w* \w together|strong="G4802"\w*, \w Jesus|strong="G2424"\w* \w himself|strong="G1438"\w* \w came|strong="G1096"\w* \w near|strong="G1448"\w*, \w and|strong="G2532"\w* \w went|strong="G2424"\w* \w with|strong="G1722"\w* \w them|strong="G3588"\w*. +\v 16 \w But|strong="G1161"\w* \w their|strong="G3588"\w* \w eyes|strong="G3788"\w* \w were|strong="G3588"\w* \w kept|strong="G2902"\w* \w from|strong="G3588"\w* \w recognizing|strong="G1921"\w* \w him|strong="G3588"\w*. +\v 17 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \wj “\+w What|strong="G5101"\+w* \+w are|strong="G3588"\+w* \+w you|strong="G3739"\+w* \+w talking|strong="G3004"\+w* \+w about|strong="G4314"\+w* \+w as|strong="G1161"\+w* \+w you|strong="G3739"\+w* \+w walk|strong="G4043"\+w*, \+w and|strong="G2532"\+w* \+w are|strong="G3588"\+w* \+w sad|strong="G4659"\+w*?”\wj* +\p +\v 18 \w One|strong="G1520"\w* \w of|strong="G2250"\w* \w them|strong="G3588"\w*, \w named|strong="G3686"\w* \w Cleopas|strong="G2810"\w*, \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Are|strong="G3588"\w* \w you|strong="G4771"\w* \w the|strong="G1722"\w* \w only|strong="G3441"\w* \w stranger|strong="G3939"\w* \w in|strong="G1722"\w* \w Jerusalem|strong="G2419"\w* \w who|strong="G3739"\w* doesn’\w t|strong="G3588"\w* \w know|strong="G1097"\w* \w the|strong="G1722"\w* \w things|strong="G3778"\w* \w which|strong="G3739"\w* \w have|strong="G2532"\w* \w happened|strong="G1096"\w* \w there|strong="G2532"\w* \w in|strong="G1722"\w* \w these|strong="G3778"\w* \w days|strong="G2250"\w*?” +\p +\v 19 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w What|strong="G3739"\+w* \+w things|strong="G3956"\+w*?”\wj* +\p \w They|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w The|strong="G1722"\w* \w things|strong="G3956"\w* \w concerning|strong="G4012"\w* \w Jesus|strong="G2424"\w* \w the|strong="G1722"\w* \w Nazarene|strong="G3479"\w*, \w who|strong="G3739"\w* \w was|strong="G1096"\w* \w a|strong="G1096"\w* \w prophet|strong="G4396"\w* \w mighty|strong="G1415"\w* \w in|strong="G1722"\w* \w deed|strong="G2041"\w* \w and|strong="G2532"\w* \w word|strong="G3056"\w* \w before|strong="G1722"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w*; +\v 20 \w and|strong="G2532"\w* \w how|strong="G3704"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w our|strong="G2532"\w* rulers \w delivered|strong="G3860"\w* \w him|strong="G3588"\w* \w up|strong="G3860"\w* \w to|strong="G1519"\w* \w be|strong="G2532"\w* \w condemned|strong="G2917"\w* \w to|strong="G1519"\w* \w death|strong="G2288"\w*, \w and|strong="G2532"\w* \w crucified|strong="G4717"\w* \w him|strong="G3588"\w*. +\v 21 \w But|strong="G1161"\w* \w we|strong="G2249"\w* \w were|strong="G1510"\w* \w hoping|strong="G1679"\w* \w that|strong="G3754"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w he|strong="G2532"\w* \w who|strong="G3739"\w* \w would|strong="G3195"\w* \w redeem|strong="G3084"\w* \w Israel|strong="G2474"\w*. \w Yes|strong="G1161"\w*, \w and|strong="G2532"\w* \w besides|strong="G2532"\w* \w all|strong="G3956"\w* \w this|strong="G3778"\w*, \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w now|strong="G1161"\w* \w the|strong="G2532"\w* \w third|strong="G5154"\w* \w day|strong="G2250"\w* \w since|strong="G3754"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w* \w happened|strong="G1096"\w*. +\v 22 \w Also|strong="G2532"\w*, \w certain|strong="G5100"\w* \w women|strong="G1135"\w* \w of|strong="G1537"\w* \w our|strong="G2532"\w* company \w amazed|strong="G1839"\w* \w us|strong="G2249"\w*, \w having|strong="G2532"\w* \w arrived|strong="G1096"\w* \w early|strong="G3720"\w* \w at|strong="G1909"\w* \w the|strong="G2532"\w* \w tomb|strong="G3419"\w*; +\v 23 \w and|strong="G2532"\w* \w when|strong="G2532"\w* \w they|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w find|strong="G2147"\w* \w his|strong="G3708"\w* \w body|strong="G4983"\w*, \w they|strong="G2532"\w* \w came|strong="G2064"\w* \w saying|strong="G3004"\w* \w that|strong="G3739"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w also|strong="G2532"\w* \w seen|strong="G3708"\w* \w a|strong="G2532"\w* \w vision|strong="G3701"\w* \w of|strong="G2532"\w* angels, \w who|strong="G3739"\w* \w said|strong="G3004"\w* \w that|strong="G3739"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w alive|strong="G2198"\w*. +\v 24 \w Some|strong="G5100"\w* \w of|strong="G2532"\w* \w us|strong="G3004"\w* \w went|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w tomb|strong="G3419"\w* \w and|strong="G2532"\w* \w found|strong="G2147"\w* \w it|strong="G2532"\w* \w just|strong="G2531"\w* \w like|strong="G3779"\w* \w the|strong="G2532"\w* \w women|strong="G1135"\w* \w had|strong="G2532"\w* \w said|strong="G3004"\w*, \w but|strong="G1161"\w* \w they|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w see|strong="G3708"\w* \w him|strong="G3588"\w*.” +\p +\v 25 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \wj “\+w Foolish|strong="G2532"\+w* \+w people|strong="G3956"\+w*, \+w and|strong="G2532"\+w* \+w slow|strong="G1021"\+w* \+w of|strong="G2532"\+w* \+w heart|strong="G2588"\+w* \+w to|strong="G4314"\+w* \+w believe|strong="G4100"\+w* \+w in|strong="G1909"\+w* \+w all|strong="G3956"\+w* \+w that|strong="G3739"\+w* \+w the|strong="G2532"\+w* \+w prophets|strong="G4396"\+w* \+w have|strong="G2532"\+w* \+w spoken|strong="G2980"\+w*! \wj* +\v 26 \wj Didn’\+w t|strong="G3588"\+w* \+w the|strong="G2532"\+w* \+w Christ|strong="G5547"\+w* \+w have|strong="G2532"\+w* \+w to|strong="G1519"\+w* \+w suffer|strong="G3958"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* \+w and|strong="G2532"\+w* \+w to|strong="G1519"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w his|strong="G1519"\+w* \+w glory|strong="G1391"\+w*?”\wj* +\v 27 Beginning \w from|strong="G2532"\w* \w Moses|strong="G3475"\w* \w and|strong="G2532"\w* \w from|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w prophets|strong="G4396"\w*, \w he|strong="G2532"\w* \w explained|strong="G1329"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w Scriptures|strong="G1124"\w* \w the|strong="G1722"\w* \w things|strong="G3956"\w* \w concerning|strong="G4012"\w* \w himself|strong="G1438"\w*. +\p +\v 28 \w They|strong="G2532"\w* \w came|strong="G2532"\w* \w near|strong="G1448"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w village|strong="G2968"\w* \w where|strong="G3757"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w going|strong="G4198"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w acted|strong="G4364"\w* like \w he|strong="G2532"\w* \w would|strong="G2532"\w* \w go|strong="G4198"\w* \w further|strong="G4208"\w*. +\p +\v 29 \w They|strong="G2532"\w* \w urged|strong="G3849"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w Stay|strong="G3306"\w* \w with|strong="G3326"\w* \w us|strong="G3004"\w*, \w for|strong="G3754"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* almost \w evening|strong="G2073"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w day|strong="G2250"\w* \w is|strong="G1510"\w* almost \w over|strong="G2827"\w*.” +\p \w He|strong="G2532"\w* \w went|strong="G1525"\w* \w in|strong="G1525"\w* \w to|strong="G4314"\w* \w stay|strong="G3306"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w*. +\v 30 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w sat|strong="G2532"\w* \w down|strong="G2625"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* table \w with|strong="G3326"\w* \w them|strong="G3588"\w*, \w he|strong="G2532"\w* \w took|strong="G2983"\w* \w the|strong="G1722"\w* bread \w and|strong="G2532"\w* \w gave|strong="G2532"\w* thanks. \w Breaking|strong="G2806"\w* \w it|strong="G2532"\w*, \w he|strong="G2532"\w* \w gave|strong="G2532"\w* \w it|strong="G2532"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*. +\v 31 \w Their|strong="G2532"\w* \w eyes|strong="G3788"\w* \w were|strong="G3588"\w* \w opened|strong="G1272"\w* \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w recognized|strong="G1921"\w* \w him|strong="G3588"\w*; \w then|strong="G2532"\w* \w he|strong="G2532"\w* vanished \w out|strong="G2532"\w* \w of|strong="G2532"\w* \w their|strong="G2532"\w* \w sight|strong="G3788"\w*. +\v 32 \w They|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w*, “Weren’\w t|strong="G3588"\w* \w our|strong="G2532"\w* \w hearts|strong="G2588"\w* \w burning|strong="G2545"\w* \w within|strong="G1722"\w* \w us|strong="G3004"\w* \w while|strong="G1722"\w* \w he|strong="G2532"\w* \w spoke|strong="G2980"\w* \w to|strong="G4314"\w* \w us|strong="G3004"\w* \w along|strong="G2532"\w* \w the|strong="G1722"\w* \w way|strong="G3598"\w*, \w and|strong="G2532"\w* \w while|strong="G1722"\w* \w he|strong="G2532"\w* \w opened|strong="G1272"\w* \w the|strong="G1722"\w* \w Scriptures|strong="G1124"\w* \w to|strong="G4314"\w* \w us|strong="G3004"\w*?” +\v 33 \w They|strong="G2532"\w* \w rose|strong="G2532"\w* \w up|strong="G1519"\w* \w that|strong="G3588"\w* \w very|strong="G2532"\w* \w hour|strong="G5610"\w*, \w returned|strong="G5290"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w*, \w and|strong="G2532"\w* \w found|strong="G2147"\w* \w the|strong="G2532"\w* \w eleven|strong="G1733"\w* \w gathered|strong="G4867"\w* \w together|strong="G4867"\w*, \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w with|strong="G4862"\w* \w them|strong="G3588"\w*, +\v 34 \w saying|strong="G3004"\w*, “\w The|strong="G2532"\w* \w Lord|strong="G2962"\w* \w is|strong="G3588"\w* \w risen|strong="G1453"\w* \w indeed|strong="G2532"\w*, \w and|strong="G2532"\w* \w has|strong="G2962"\w* \w appeared|strong="G3708"\w* \w to|strong="G2532"\w* \w Simon|strong="G4613"\w*!” +\v 35 \w They|strong="G2532"\w* \w related|strong="G1834"\w* \w the|strong="G1722"\w* \w things|strong="G3588"\w* \w that|strong="G3588"\w* \w happened|strong="G3588"\w* \w along|strong="G2532"\w* \w the|strong="G1722"\w* \w way|strong="G3598"\w*, \w and|strong="G2532"\w* \w how|strong="G5613"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w recognized|strong="G1097"\w* \w by|strong="G1722"\w* \w them|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w breaking|strong="G2800"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* bread. +\p +\v 36 \w As|strong="G1722"\w* \w they|strong="G1161"\w* \w said|strong="G2980"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w Jesus|strong="G3778"\w* himself \w stood|strong="G2476"\w* \w among|strong="G1722"\w* \w them|strong="G1722"\w*, \w and|strong="G1161"\w* \w said|strong="G2980"\w* \w to|strong="G1722"\w* \w them|strong="G1722"\w*, \wj “Peace \+w be|strong="G1161"\+w* \+w to|strong="G1722"\+w* \+w you|strong="G1722"\+w*.”\wj* +\p +\v 37 \w But|strong="G1161"\w* \w they|strong="G2532"\w* \w were|strong="G1096"\w* \w terrified|strong="G1719"\w* \w and|strong="G2532"\w* filled \w with|strong="G2532"\w* fear, \w and|strong="G2532"\w* \w supposed|strong="G1380"\w* \w that|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w seen|strong="G2334"\w* \w a|strong="G1096"\w* \w spirit|strong="G4151"\w*. +\p +\v 38 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Why|strong="G5101"\+w* \+w are|strong="G1510"\+w* \+w you|strong="G5210"\+w* \+w troubled|strong="G5015"\+w*? \+w Why|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w doubts|strong="G1261"\+w* arise \+w in|strong="G1722"\+w* \+w your|strong="G1223"\+w* \+w hearts|strong="G2588"\+w*? \wj* +\v 39 \wj \+w See|strong="G3708"\+w* \+w my|strong="G3708"\+w* \+w hands|strong="G5495"\+w* \+w and|strong="G2532"\+w* \+w my|strong="G3708"\+w* \+w feet|strong="G4228"\+w*, \+w that|strong="G3754"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G1510"\+w* truly \+w me|strong="G1473"\+w*. \+w Touch|strong="G5584"\+w* \+w me|strong="G1473"\+w* \+w and|strong="G2532"\+w* \+w see|strong="G3708"\+w*, \+w for|strong="G3754"\+w* \+w a|strong="G2192"\+w* \+w spirit|strong="G4151"\+w* doesn’\+w t|strong="G3588"\+w* \+w have|strong="G2192"\+w* \+w flesh|strong="G4561"\+w* \+w and|strong="G2532"\+w* \+w bones|strong="G3747"\+w*, \+w as|strong="G2531"\+w* \+w you|strong="G3754"\+w* \+w see|strong="G3708"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G2192"\+w*.”\wj* +\v 40 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w said|strong="G3004"\w* \w this|strong="G2532"\w*, \w he|strong="G2532"\w* showed \w them|strong="G3004"\w* \w his|strong="G2532"\w* \w hands|strong="G5495"\w* \w and|strong="G2532"\w* \w his|strong="G2532"\w* \w feet|strong="G4228"\w*. +\v 41 \w While|strong="G1161"\w* \w they|strong="G2532"\w* \w still|strong="G2089"\w* didn’\w t|strong="G3588"\w* believe \w for|strong="G1161"\w* \w joy|strong="G5479"\w*, \w and|strong="G2532"\w* \w wondered|strong="G2296"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Do|strong="G2532"\+w* \+w you|strong="G3004"\+w* \+w have|strong="G2192"\+w* \+w anything|strong="G5100"\+w* \+w here|strong="G1759"\+w* \+w to|strong="G2532"\+w* \+w eat|strong="G1034"\+w*?”\wj* +\p +\v 42 \w They|strong="G1161"\w* \w gave|strong="G1929"\w* \w him|strong="G3588"\w* \w a|strong="G1161"\w* \w piece|strong="G3313"\w* \w of|strong="G3588"\w* \w a|strong="G1161"\w* \w broiled|strong="G3702"\w* \w fish|strong="G2486"\w* \w and|strong="G1161"\w* \w some|strong="G3588"\w* honeycomb. +\v 43 \w He|strong="G2532"\w* \w took|strong="G2983"\w* \w them|strong="G2532"\w*, \w and|strong="G2532"\w* \w ate|strong="G2068"\w* \w in|strong="G2532"\w* \w front|strong="G1799"\w* \w of|strong="G2532"\w* \w them|strong="G2532"\w*. +\v 44 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \wj “\+w This|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w what|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w told|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w while|strong="G1722"\+w* \+w I|strong="G1473"\+w* \+w was|strong="G1510"\+w* \+w still|strong="G2089"\+w* \+w with|strong="G1722"\+w* \+w you|strong="G5210"\+w*, \+w that|strong="G3754"\+w* \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w which|strong="G3739"\+w* \+w are|strong="G1510"\+w* \+w written|strong="G1125"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w law|strong="G3551"\+w* \+w of|strong="G4012"\+w* \+w Moses|strong="G3475"\+w*, \+w the|strong="G1722"\+w* \+w prophets|strong="G4396"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w psalms|strong="G5568"\+w* \+w concerning|strong="G4012"\+w* \+w me|strong="G1473"\+w* \+w must|strong="G1163"\+w* \+w be|strong="G1510"\+w* \+w fulfilled|strong="G4137"\+w*.”\wj* +\p +\v 45 \w Then|strong="G5119"\w* \w he|strong="G3588"\w* \w opened|strong="G1272"\w* \w their|strong="G3588"\w* \w minds|strong="G3563"\w*, \w that|strong="G3588"\w* \w they|strong="G3588"\w* \w might|strong="G1124"\w* \w understand|strong="G4920"\w* \w the|strong="G3588"\w* \w Scriptures|strong="G1124"\w*. +\v 46 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Thus|strong="G3779"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w written|strong="G1125"\+w*, \+w and|strong="G2532"\+w* \+w thus|strong="G3779"\+w* \+w it|strong="G2532"\+w* \+w was|strong="G3588"\+w* necessary \+w for|strong="G3754"\+w* \+w the|strong="G2532"\+w* \+w Christ|strong="G5547"\+w* \+w to|strong="G2532"\+w* \+w suffer|strong="G3958"\+w* \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w rise|strong="G2250"\+w* \+w from|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w dead|strong="G3498"\+w* \+w the|strong="G2532"\+w* \+w third|strong="G5154"\+w* \+w day|strong="G2250"\+w*, \wj* +\v 47 \wj \+w and|strong="G2532"\+w* \+w that|strong="G3588"\+w* \+w repentance|strong="G3341"\+w* \+w and|strong="G2532"\+w* remission \+w of|strong="G2532"\+w* sins \+w should|strong="G3588"\+w* \+w be|strong="G2532"\+w* \+w preached|strong="G2784"\+w* \+w in|strong="G1519"\+w* \+w his|strong="G3956"\+w* \+w name|strong="G3686"\+w* \+w to|strong="G1519"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G2532"\+w* \+w nations|strong="G1484"\+w*, beginning \+w at|strong="G1909"\+w* \+w Jerusalem|strong="G2419"\+w*. \wj* +\v 48 \wj \+w You|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w witnesses|strong="G3144"\+w* \+w of|strong="G3144"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w*. \wj* +\v 49 \wj \+w Behold|strong="G2400"\+w*, \+w I|strong="G1473"\+w* \+w send|strong="G1821"\+w* \+w out|strong="G1537"\+w* \+w the|strong="G1722"\+w* \+w promise|strong="G1860"\+w* \+w of|strong="G1537"\+w* \+w my|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w on|strong="G1909"\+w* \+w you|strong="G5210"\+w*. \+w But|strong="G1161"\+w* wait \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w city|strong="G4172"\+w* \+w of|strong="G1537"\+w* Jerusalem \+w until|strong="G2193"\+w* \+w you|strong="G5210"\+w* \+w are|strong="G3588"\+w* \+w clothed|strong="G1746"\+w* \+w with|strong="G1722"\+w* \+w power|strong="G1411"\+w* \+w from|strong="G1537"\+w* \+w on|strong="G1909"\+w* \+w high|strong="G5311"\+w*.” \wj* +\p +\v 50 \w He|strong="G2532"\w* \w led|strong="G1806"\w* \w them|strong="G3588"\w* \w out|strong="G1806"\w* \w as|strong="G1161"\w* \w far|strong="G2193"\w* \w as|strong="G1161"\w* Bethany, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w lifted|strong="G1869"\w* \w up|strong="G1869"\w* \w his|strong="G1438"\w* \w hands|strong="G5495"\w* \w and|strong="G2532"\w* \w blessed|strong="G2127"\w* \w them|strong="G3588"\w*. +\v 51 \w While|strong="G1722"\w* \w he|strong="G2532"\w* \w blessed|strong="G2127"\w* \w them|strong="G3588"\w*, \w he|strong="G2532"\w* withdrew \w from|strong="G2532"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w was|strong="G1096"\w* \w carried|strong="G2532"\w* \w up|strong="G1519"\w* \w into|strong="G1519"\w* \w heaven|strong="G3772"\w*. +\v 52 \w They|strong="G2532"\w* \w worshiped|strong="G4352"\w* \w him|strong="G2532"\w* \w and|strong="G2532"\w* \w returned|strong="G5290"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w* \w with|strong="G3326"\w* \w great|strong="G3173"\w* \w joy|strong="G5479"\w*, +\v 53 \w and|strong="G2532"\w* \w were|strong="G1510"\w* \w continually|strong="G1223"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w*, \w praising|strong="G2127"\w* \w and|strong="G2532"\w* \w blessing|strong="G2127"\w* \w God|strong="G2316"\w*. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/73-JHNeng-web.usfm b/bibles/eng-web_usfm/73-JHNeng-web.usfm new file mode 100644 index 0000000..3f53006 --- /dev/null +++ b/bibles/eng-web_usfm/73-JHNeng-web.usfm @@ -0,0 +1,1289 @@ +\id JHN 43-JHN-web.sfm World English Bible (WEB) +\ide UTF-8 +\h John +\toc1 The Good News According to John +\toc2 John +\toc3 Jhn +\mt2 The Good News According to +\mt1 John +\c 1 +\p +\v 1 \w In|strong="G1722"\w* \w the|strong="G1722"\w* beginning \w was|strong="G1510"\w* \w the|strong="G1722"\w* \w Word|strong="G3056"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w Word|strong="G3056"\w* \w was|strong="G1510"\w* \w with|strong="G1722"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w Word|strong="G3056"\w* \w was|strong="G1510"\w* \w God|strong="G2316"\w*. +\v 2 \w The|strong="G1722"\w* \w same|strong="G3778"\w* \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* beginning \w with|strong="G1722"\w* \w God|strong="G2316"\w*. +\v 3 \w All|strong="G3956"\w* \w things|strong="G3956"\w* \w were|strong="G1096"\w* \w made|strong="G1096"\w* \w through|strong="G1223"\w* \w him|strong="G3739"\w*. \w Without|strong="G5565"\w* \w him|strong="G3739"\w*, \w nothing|strong="G3956"\w* \w was|strong="G1096"\w* \w made|strong="G1096"\w* \w that|strong="G3739"\w* \w has|strong="G3739"\w* \w been|strong="G1096"\w* \w made|strong="G1096"\w*. +\v 4 \w In|strong="G1722"\w* \w him|strong="G3588"\w* \w was|strong="G1510"\w* \w life|strong="G2222"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w life|strong="G2222"\w* \w was|strong="G1510"\w* \w the|strong="G1722"\w* \w light|strong="G5457"\w* \w of|strong="G2532"\w* \w men|strong="G3588"\w*. +\v 5 \w The|strong="G1722"\w* \w light|strong="G5457"\w* \w shines|strong="G5316"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w darkness|strong="G4653"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w darkness|strong="G4653"\w* hasn’\w t|strong="G3588"\w* overcome\f + \fr 1:5 \ft The word translated “overcome” (κατέλαβεν) can also be translated “comprehended.” It refers to getting a grip on an enemy to defeat him. \f* \w it|strong="G2532"\w*. +\p +\v 6 \w There|strong="G1096"\w* \w came|strong="G1096"\w* \w a|strong="G1096"\w* \w man|strong="G2316"\w* \w sent|strong="G2316"\w* \w from|strong="G3844"\w* \w God|strong="G2316"\w*, whose \w name|strong="G3686"\w* \w was|strong="G1096"\w* \w John|strong="G2491"\w*. +\v 7 \w The|strong="G1519"\w* \w same|strong="G3778"\w* \w came|strong="G2064"\w* \w as|strong="G1519"\w* \w a|strong="G1519"\w* \w witness|strong="G3140"\w*, \w that|strong="G2443"\w* \w he|strong="G3778"\w* \w might|strong="G3778"\w* \w testify|strong="G3140"\w* \w about|strong="G4012"\w* \w the|strong="G1519"\w* \w light|strong="G5457"\w*, \w that|strong="G2443"\w* \w all|strong="G3956"\w* \w might|strong="G3778"\w* \w believe|strong="G4100"\w* \w through|strong="G1223"\w* \w him|strong="G3588"\w*. +\v 8 \w He|strong="G3588"\w* \w was|strong="G1510"\w* \w not|strong="G3756"\w* \w the|strong="G3588"\w* \w light|strong="G5457"\w*, \w but|strong="G3588"\w* \w was|strong="G1510"\w* sent \w that|strong="G2443"\w* \w he|strong="G3588"\w* might \w testify|strong="G3140"\w* \w about|strong="G4012"\w* \w the|strong="G3588"\w* \w light|strong="G5457"\w*. +\v 9 \w The|strong="G1519"\w* \w true|strong="G3588"\w* \w light|strong="G5457"\w* \w that|strong="G3739"\w* \w enlightens|strong="G5461"\w* \w everyone|strong="G3956"\w* \w was|strong="G1510"\w* \w coming|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w world|strong="G2889"\w*. +\p +\v 10 \w He|strong="G2532"\w* \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w* \w was|strong="G1510"\w* \w made|strong="G1096"\w* \w through|strong="G1223"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w* didn’\w t|strong="G3588"\w* \w recognize|strong="G1097"\w* \w him|strong="G3588"\w*. +\v 11 \w He|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w his|strong="G1519"\w* \w own|strong="G2398"\w*, \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w his|strong="G1519"\w* \w own|strong="G2398"\w* didn’\w t|strong="G3588"\w* \w receive|strong="G3880"\w* \w him|strong="G3588"\w*. +\v 12 \w But|strong="G1161"\w* \w as|strong="G3745"\w* \w many|strong="G3745"\w* \w as|strong="G3745"\w* \w received|strong="G2983"\w* \w him|strong="G3588"\w*, \w to|strong="G1519"\w* \w them|strong="G3588"\w* \w he|strong="G1161"\w* \w gave|strong="G1325"\w* \w the|strong="G1519"\w* \w right|strong="G1849"\w* \w to|strong="G1519"\w* \w become|strong="G1096"\w* \w God|strong="G2316"\w*’s \w children|strong="G5043"\w*, \w to|strong="G1519"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w believe|strong="G4100"\w* \w in|strong="G1519"\w* \w his|strong="G1519"\w* \w name|strong="G3686"\w*: +\v 13 \w who|strong="G3739"\w* \w were|strong="G3739"\w* \w born|strong="G1080"\w*, \w not|strong="G3756"\w* \w of|strong="G1537"\w* blood, \w nor|strong="G3761"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w will|strong="G2307"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w flesh|strong="G4561"\w*, \w nor|strong="G3761"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w will|strong="G2307"\w* \w of|strong="G1537"\w* \w man|strong="G3739"\w*, \w but|strong="G2316"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*. +\p +\v 14 \w The|strong="G1722"\w* \w Word|strong="G3056"\w* \w became|strong="G1096"\w* \w flesh|strong="G4561"\w* \w and|strong="G2532"\w* \w lived|strong="G2532"\w* \w among|strong="G1722"\w* \w us|strong="G2249"\w*. \w We|strong="G2249"\w* \w saw|strong="G2300"\w* \w his|strong="G1722"\w* \w glory|strong="G1391"\w*, \w such|strong="G3588"\w* \w glory|strong="G1391"\w* \w as|strong="G5613"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w only|strong="G3439"\w* \w born|strong="G1096"\w*\f + \fr 1:14 \ft The phrase “only born” is from the Greek word “μονογενους”, which is sometimes translated “only begotten” or “one and only”.\f* Son \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w Father|strong="G3962"\w*, \w full|strong="G4134"\w* \w of|strong="G3056"\w* \w grace|strong="G5485"\w* \w and|strong="G2532"\w* truth. +\v 15 \w John|strong="G2491"\w* \w testified|strong="G3140"\w* \w about|strong="G4012"\w* \w him|strong="G3588"\w*. \w He|strong="G2532"\w* \w cried|strong="G2896"\w* \w out|strong="G2896"\w*, \w saying|strong="G3004"\w*, “\w This|strong="G3778"\w* \w was|strong="G1510"\w* \w he|strong="G2532"\w* \w of|strong="G4012"\w* \w whom|strong="G3739"\w* \w I|strong="G1473"\w* \w said|strong="G3004"\w*, ‘\w He|strong="G2532"\w* \w who|strong="G3739"\w* \w comes|strong="G2064"\w* \w after|strong="G3694"\w* \w me|strong="G1473"\w* \w has|strong="G3739"\w* surpassed \w me|strong="G1473"\w*, \w for|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w before|strong="G1715"\w* \w me|strong="G1473"\w*.’” +\v 16 \w From|strong="G1537"\w* \w his|strong="G3956"\w* \w fullness|strong="G4138"\w* \w we|strong="G2249"\w* \w all|strong="G3956"\w* \w received|strong="G2983"\w* \w grace|strong="G5485"\w* \w upon|strong="G3588"\w* \w grace|strong="G5485"\w*. +\v 17 \w For|strong="G3754"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w* \w was|strong="G1096"\w* \w given|strong="G1325"\w* \w through|strong="G1223"\w* \w Moses|strong="G3475"\w*. \w Grace|strong="G5485"\w* \w and|strong="G2532"\w* truth \w were|strong="G3588"\w* \w realized|strong="G1096"\w* \w through|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*.\f + \fr 1:17 \ft “Christ” means “Anointed One”.\f* +\v 18 \w No|strong="G3762"\w* \w one|strong="G3762"\w* \w has|strong="G2316"\w* \w seen|strong="G3708"\w* \w God|strong="G2316"\w* \w at|strong="G1519"\w* \w any|strong="G3762"\w* \w time|strong="G4455"\w*. \w The|strong="G1519"\w* \w only|strong="G3439"\w* born\f + \fr 1:18 \ft The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”.\f* \w Son|strong="G5207"\w*,\f + \fr 1:18 \ft NU reads “God”\f* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w in|strong="G1519"\w* \w the|strong="G1519"\w* \w bosom|strong="G2859"\w* \w of|strong="G5207"\w* \w the|strong="G1519"\w* \w Father|strong="G3962"\w*, \w has|strong="G2316"\w* \w declared|strong="G1834"\w* \w him|strong="G3588"\w*. +\p +\v 19 \w This|strong="G3778"\w* \w is|strong="G1510"\w* \w John|strong="G2491"\w*’s \w testimony|strong="G3141"\w*, \w when|strong="G3753"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w sent|strong="G2532"\w* \w priests|strong="G2409"\w* \w and|strong="G2532"\w* \w Levites|strong="G3019"\w* \w from|strong="G1537"\w* \w Jerusalem|strong="G2414"\w* \w to|strong="G2443"\w* \w ask|strong="G2065"\w* \w him|strong="G3588"\w*, “\w Who|strong="G5101"\w* \w are|strong="G1510"\w* \w you|strong="G4771"\w*?” +\p +\v 20 \w He|strong="G2532"\w* \w declared|strong="G3754"\w*, \w and|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w deny|strong="G3588"\w*, \w but|strong="G2532"\w* \w he|strong="G2532"\w* \w declared|strong="G3754"\w*, “\w I|strong="G1473"\w* \w am|strong="G1510"\w* \w not|strong="G3756"\w* \w the|strong="G2532"\w* \w Christ|strong="G5547"\w*.” +\p +\v 21 \w They|strong="G2532"\w* \w asked|strong="G2065"\w* \w him|strong="G3588"\w*, “\w What|strong="G5101"\w* \w then|strong="G3767"\w*? \w Are|strong="G1510"\w* \w you|strong="G4771"\w* \w Elijah|strong="G2243"\w*?” +\p \w He|strong="G2532"\w* \w said|strong="G3004"\w*, “\w I|strong="G2532"\w* \w am|strong="G1510"\w* \w not|strong="G3756"\w*.” +\p “\w Are|strong="G1510"\w* \w you|strong="G4771"\w* \w the|strong="G2532"\w* \w prophet|strong="G4396"\w*?” +\p \w He|strong="G2532"\w* \w answered|strong="G3004"\w*, “\w No|strong="G3756"\w*.” +\p +\v 22 \w They|strong="G3588"\w* \w said|strong="G3004"\w* \w therefore|strong="G3767"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w*, “\w Who|strong="G5101"\w* \w are|strong="G1510"\w* \w you|strong="G1325"\w*? \w Give|strong="G1325"\w* \w us|strong="G1325"\w* \w an|strong="G1325"\w* answer \w to|strong="G2443"\w* \w take|strong="G2443"\w* \w back|strong="G1325"\w* \w to|strong="G2443"\w* \w those|strong="G3588"\w* \w who|strong="G5101"\w* \w sent|strong="G3992"\w* \w us|strong="G1325"\w*. \w What|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G1325"\w* \w say|strong="G3004"\w* \w about|strong="G4012"\w* \w yourself|strong="G4572"\w*?” +\p +\v 23 \w He|strong="G3588"\w* \w said|strong="G3004"\w*, “\w I|strong="G1473"\w* \w am|strong="G1473"\w* \w the|strong="G1722"\w* \w voice|strong="G5456"\w* \w of|strong="G2962"\w* \w one|strong="G3588"\w* crying \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wilderness|strong="G2048"\w*, ‘\w Make|strong="G2116"\w* \w straight|strong="G2116"\w* \w the|strong="G1722"\w* \w way|strong="G3598"\w* \w of|strong="G2962"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*,’\x + \xo 1:23 \xt Isaiah 40:3\x* \w as|strong="G2531"\w* \w Isaiah|strong="G2268"\w* \w the|strong="G1722"\w* \w prophet|strong="G4396"\w* \w said|strong="G3004"\w*.” +\p +\v 24 \w The|strong="G2532"\w* ones \w who|strong="G3588"\w* \w had|strong="G2532"\w* \w been|strong="G1510"\w* \w sent|strong="G2532"\w* \w were|strong="G1510"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w*. +\v 25 \w They|strong="G2532"\w* \w asked|strong="G2065"\w* \w him|strong="G3588"\w*, “\w Why|strong="G5101"\w* \w then|strong="G3767"\w* \w do|strong="G5101"\w* \w you|strong="G4771"\w* baptize \w if|strong="G1487"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w not|strong="G3756"\w* \w the|strong="G2532"\w* \w Christ|strong="G5547"\w*, \w nor|strong="G3761"\w* \w Elijah|strong="G2243"\w*, \w nor|strong="G3761"\w* \w the|strong="G2532"\w* \w prophet|strong="G4396"\w*?” +\p +\v 26 \w John|strong="G2491"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, “\w I|strong="G1473"\w* baptize \w in|strong="G1722"\w* \w water|strong="G5204"\w*, \w but|strong="G3588"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w* \w stands|strong="G2476"\w* \w one|strong="G3739"\w* \w whom|strong="G3739"\w* \w you|strong="G5210"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w*. +\v 27 \w He|strong="G3739"\w* \w is|strong="G1510"\w* \w the|strong="G3588"\w* \w one|strong="G3739"\w* \w who|strong="G3739"\w* \w comes|strong="G2064"\w* \w after|strong="G3694"\w* \w me|strong="G1473"\w*, \w who|strong="G3739"\w* \w is|strong="G1510"\w* preferred \w before|strong="G3588"\w* \w me|strong="G1473"\w*, \w whose|strong="G3739"\w* \w sandal|strong="G5266"\w* strap \w I|strong="G1473"\w*’m \w not|strong="G3756"\w* worthy \w to|strong="G2443"\w* loosen.” +\v 28 \w These|strong="G3778"\w* \w things|strong="G3778"\w* \w were|strong="G1510"\w* \w done|strong="G1096"\w* \w in|strong="G1722"\w* Bethany \w beyond|strong="G4008"\w* \w the|strong="G1722"\w* \w Jordan|strong="G2446"\w*, \w where|strong="G3699"\w* \w John|strong="G2491"\w* \w was|strong="G1510"\w* baptizing. +\p +\v 29 \w The|strong="G2532"\w* \w next|strong="G1887"\w* \w day|strong="G1887"\w*, \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w Jesus|strong="G2424"\w* \w coming|strong="G2064"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Behold|strong="G2396"\w*,\f + \fr 1:29 \ft “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w the|strong="G2532"\w* \w Lamb|strong="G3004"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w who|strong="G3588"\w* takes away \w the|strong="G2532"\w* sin \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w*! +\v 30 \w This|strong="G3778"\w* \w is|strong="G1510"\w* \w he|strong="G3739"\w* \w of|strong="G5228"\w* \w whom|strong="G3739"\w* \w I|strong="G1473"\w* \w said|strong="G3004"\w*, ‘\w After|strong="G3694"\w* \w me|strong="G1473"\w* \w comes|strong="G2064"\w* \w a|strong="G1096"\w* \w man|strong="G3778"\w* \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w preferred|strong="G1096"\w* \w before|strong="G1715"\w* \w me|strong="G1473"\w*, \w for|strong="G3754"\w* \w he|strong="G3739"\w* \w was|strong="G1510"\w* \w before|strong="G1715"\w* \w me|strong="G1473"\w*.’ +\v 31 \w I|strong="G1473"\w* didn’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w him|strong="G3588"\w*, \w but|strong="G3588"\w* \w for|strong="G1223"\w* \w this|strong="G3778"\w* \w reason|strong="G1223"\w* \w I|strong="G1473"\w* \w came|strong="G2064"\w* baptizing \w in|strong="G1722"\w* \w water|strong="G5204"\w*, \w that|strong="G2443"\w* \w he|strong="G3778"\w* \w would|strong="G2064"\w* \w be|strong="G3756"\w* \w revealed|strong="G5319"\w* \w to|strong="G2443"\w* \w Israel|strong="G2474"\w*.” +\v 32 \w John|strong="G2491"\w* \w testified|strong="G3140"\w*, \w saying|strong="G3004"\w*, “\w I|strong="G2532"\w* \w have|strong="G2532"\w* \w seen|strong="G2300"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w* \w descending|strong="G2597"\w* \w like|strong="G5613"\w* \w a|strong="G5613"\w* \w dove|strong="G4058"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w heaven|strong="G3772"\w*, \w and|strong="G2532"\w* \w it|strong="G2532"\w* \w remained|strong="G3306"\w* \w on|strong="G1909"\w* \w him|strong="G3588"\w*. +\v 33 \w I|strong="G1473"\w* didn’\w t|strong="G3588"\w* \w recognize|strong="G1492"\w* \w him|strong="G3588"\w*, \w but|strong="G2532"\w* \w he|strong="G2532"\w* \w who|strong="G3739"\w* \w sent|strong="G3992"\w* \w me|strong="G1473"\w* \w to|strong="G2532"\w* baptize \w in|strong="G1722"\w* \w water|strong="G5204"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w*, ‘\w On|strong="G1909"\w* \w whomever|strong="G3739"\w* \w you|strong="G3739"\w* \w will|strong="G1510"\w* \w see|strong="G3708"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w descending|strong="G2597"\w* \w and|strong="G2532"\w* \w remaining|strong="G3306"\w* \w on|strong="G1909"\w* \w him|strong="G3588"\w* \w is|strong="G1510"\w* \w he|strong="G2532"\w* \w who|strong="G3739"\w* baptizes \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*.’ +\v 34 \w I|strong="G2532"\w* \w have|strong="G2532"\w* \w seen|strong="G3708"\w* \w and|strong="G2532"\w* \w have|strong="G2532"\w* \w testified|strong="G3140"\w* \w that|strong="G3754"\w* \w this|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*.” +\p +\v 35 \w Again|strong="G3825"\w*, \w the|strong="G2532"\w* \w next|strong="G1887"\w* \w day|strong="G1887"\w*, \w John|strong="G2491"\w* \w was|strong="G3588"\w* \w standing|strong="G2476"\w* \w with|strong="G1537"\w* \w two|strong="G1417"\w* \w of|strong="G1537"\w* \w his|strong="G2532"\w* \w disciples|strong="G3101"\w*, +\v 36 \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w looked|strong="G3708"\w* \w at|strong="G1689"\w* \w Jesus|strong="G2424"\w* \w as|strong="G2532"\w* \w he|strong="G2532"\w* \w walked|strong="G4043"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Behold|strong="G2396"\w*, \w the|strong="G2532"\w* \w Lamb|strong="G3004"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*!” +\v 37 \w The|strong="G2532"\w* \w two|strong="G1417"\w* \w disciples|strong="G3101"\w* heard \w him|strong="G3588"\w* \w speak|strong="G2980"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* followed \w Jesus|strong="G2424"\w*. +\v 38 \w Jesus|strong="G2424"\w* \w turned|strong="G4762"\w* \w and|strong="G2532"\w* \w saw|strong="G2300"\w* \w them|strong="G3588"\w* following, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w What|strong="G5101"\+w* \+w are|strong="G3588"\+w* \+w you|strong="G3004"\+w* \+w looking|strong="G2212"\+w* \+w for|strong="G1161"\+w*?”\wj* +\p \w They|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Rabbi|strong="G4461"\w*” (\w which|strong="G3588"\w* \w is|strong="G3588"\w* \w to|strong="G2532"\w* \w say|strong="G3004"\w*, \w being|strong="G2532"\w* \w interpreted|strong="G3177"\w*, \w Teacher|strong="G1320"\w*), “\w where|strong="G4226"\w* \w are|strong="G3588"\w* \w you|strong="G3004"\w* \w staying|strong="G3306"\w*?” +\p +\v 39 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Come|strong="G2064"\+w* \+w and|strong="G2532"\+w* \+w see|strong="G3708"\+w*.”\wj* +\p \w They|strong="G2532"\w* \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w saw|strong="G3708"\w* \w where|strong="G4226"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w staying|strong="G3306"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w stayed|strong="G3306"\w* \w with|strong="G3844"\w* \w him|strong="G3588"\w* \w that|strong="G3739"\w* \w day|strong="G2250"\w*. \w It|strong="G2532"\w* \w was|strong="G1510"\w* \w about|strong="G5613"\w* \w the|strong="G2532"\w* \w tenth|strong="G1182"\w* \w hour|strong="G5610"\w*.\f + \fr 1:39 \ft 4:00 p.m.\f* +\v 40 \w One|strong="G1520"\w* \w of|strong="G2250"\w* \w the|strong="G2532"\w* \w two|strong="G1417"\w* \w who|strong="G3588"\w* heard \w John|strong="G2491"\w* \w and|strong="G2532"\w* followed \w him|strong="G3588"\w* \w was|strong="G1510"\w* Andrew, \w Simon|strong="G4613"\w* \w Peter|strong="G4074"\w*’s brother. +\v 41 \w He|strong="G2532"\w* \w first|strong="G4413"\w* \w found|strong="G2147"\w* \w his|strong="G2398"\w* \w own|strong="G2398"\w* brother, \w Simon|strong="G4613"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w We|strong="G2532"\w* \w have|strong="G2532"\w* \w found|strong="G2147"\w* \w the|strong="G2532"\w* \w Messiah|strong="G5547"\w*!” (\w which|strong="G3588"\w* \w is|strong="G1510"\w*, \w being|strong="G1510"\w* \w interpreted|strong="G3177"\w*, \w Christ|strong="G5547"\w*\f + \fr 1:41 \ft “Messiah” (Hebrew) and “Christ” (Greek) both mean “Anointed One”.\f*). +\v 42 \w He|strong="G2532"\w* \w brought|strong="G2532"\w* \w him|strong="G3588"\w* \w to|strong="G4314"\w* \w Jesus|strong="G2424"\w*. \w Jesus|strong="G2424"\w* \w looked|strong="G1689"\w* \w at|strong="G4314"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w You|strong="G4771"\+w* \+w are|strong="G1510"\+w* \+w Simon|strong="G4613"\+w* \+w the|strong="G2532"\+w* \+w son|strong="G5207"\+w* \+w of|strong="G5207"\+w* Jonah. \+w You|strong="G4771"\+w* \+w shall|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w called|strong="G2564"\+w* \+w Cephas|strong="G2786"\+w*”\wj* (\w which|strong="G3588"\w* \w is|strong="G1510"\w* \w by|strong="G4314"\w* \w interpretation|strong="G2059"\w*, \w Peter|strong="G4074"\w*).\f + \fr 1:42 \ft “Cephas” (Aramaic) and “Peter” (Greek) both mean “Rock”.\f* +\p +\v 43 \w On|strong="G1519"\w* \w the|strong="G2532"\w* \w next|strong="G1887"\w* \w day|strong="G1887"\w*, \w he|strong="G2532"\w* \w was|strong="G1510"\w* determined \w to|strong="G1519"\w* \w go|strong="G1831"\w* \w out|strong="G1831"\w* \w into|strong="G1519"\w* \w Galilee|strong="G1056"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w found|strong="G2147"\w* \w Philip|strong="G5376"\w*. \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \wj “Follow \+w me|strong="G1473"\+w*.”\wj* +\v 44 \w Now|strong="G1161"\w* \w Philip|strong="G5376"\w* \w was|strong="G1510"\w* \w from|strong="G2532"\w* Bethsaida, \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w of|strong="G2532"\w* Andrew \w and|strong="G2532"\w* \w Peter|strong="G4074"\w*. +\v 45 \w Philip|strong="G5376"\w* \w found|strong="G2147"\w* \w Nathanael|strong="G3482"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w We|strong="G2532"\w* \w have|strong="G2532"\w* \w found|strong="G2147"\w* \w him|strong="G3588"\w* \w of|strong="G1537"\w* \w whom|strong="G3588"\w* \w Moses|strong="G3475"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w and|strong="G2532"\w* \w also|strong="G2532"\w* \w the|strong="G1722"\w* \w prophets|strong="G4396"\w*, \w wrote|strong="G1125"\w*: \w Jesus|strong="G2424"\w* \w of|strong="G1537"\w* \w Nazareth|strong="G3478"\w*, \w the|strong="G1722"\w* \w son|strong="G5207"\w* \w of|strong="G1537"\w* \w Joseph|strong="G2501"\w*.” +\p +\v 46 \w Nathanael|strong="G3482"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Can|strong="G1410"\w* \w any|strong="G1410"\w* \w good|strong="G3588"\w* \w thing|strong="G3739"\w* \w come|strong="G2064"\w* \w out|strong="G2532"\w* \w of|strong="G5207"\w* \w Nazareth|strong="G3478"\w*?” +\p \w Philip|strong="G5376"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Come|strong="G2064"\w* \w and|strong="G2532"\w* \w see|strong="G3708"\w*.” +\p +\v 47 \w Jesus|strong="G2424"\w* \w saw|strong="G3708"\w* \w Nathanael|strong="G3482"\w* \w coming|strong="G2064"\w* \w to|strong="G4314"\w* \w him|strong="G3708"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w about|strong="G4012"\w* \w him|strong="G3708"\w*, \wj “\+w Behold|strong="G2396"\+w*, \+w an|strong="G2532"\+w* \+w Israelite|strong="G2475"\+w* \+w indeed|strong="G2532"\+w*, \+w in|strong="G1722"\+w* \+w whom|strong="G5101"\+w* \+w is|strong="G1510"\+w* \+w no|strong="G2532"\+w* \+w deceit|strong="G1388"\+w*!”\wj* +\p +\v 48 \w Nathanael|strong="G3482"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w How|strong="G4159"\w* \w do|strong="G2532"\w* \w you|strong="G4771"\w* \w know|strong="G1097"\w* \w me|strong="G1473"\w*?” +\p \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w Before|strong="G4253"\+w* \+w Philip|strong="G5376"\+w* \+w called|strong="G3004"\+w* \+w you|strong="G4771"\+w*, \+w when|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w were|strong="G1510"\+w* \+w under|strong="G5259"\+w* \+w the|strong="G1722"\+w* \+w fig|strong="G4808"\+w* \+w tree|strong="G4808"\+w*, \+w I|strong="G1473"\+w* \+w saw|strong="G3708"\+w* \+w you|strong="G4771"\+w*.”\wj* +\p +\v 49 \w Nathanael|strong="G3482"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Rabbi|strong="G4461"\w*, \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*! \w You|strong="G4771"\w* \w are|strong="G1510"\w* \w King|strong="G3588"\w* \w of|strong="G5207"\w* \w Israel|strong="G2474"\w*!” +\p +\v 50 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w Because|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w told|strong="G3004"\+w* \+w you|strong="G4771"\+w*, ‘\+w I|strong="G2532"\+w* \+w saw|strong="G3708"\+w* \+w you|strong="G4771"\+w* \+w underneath|strong="G5270"\+w* \+w the|strong="G2532"\+w* \+w fig|strong="G4808"\+w* \+w tree|strong="G4808"\+w*,’ \+w do|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w believe|strong="G4100"\+w*? \+w You|strong="G4771"\+w* \+w will|strong="G2316"\+w* \+w see|strong="G3708"\+w* \+w greater|strong="G3173"\+w* \+w things|strong="G3588"\+w* \+w than|strong="G3173"\+w* \+w these|strong="G3588"\+w*!”\wj* +\v 51 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Most|strong="G2316"\+w* \+w certainly|strong="G1909"\+w*, \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w* \+w all|strong="G2532"\+w*, hereafter \+w you|strong="G4771"\+w* \+w will|strong="G2316"\+w* \+w see|strong="G3708"\+w* \+w heaven|strong="G3772"\+w* opened, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* angels \+w of|strong="G5207"\+w* \+w God|strong="G2316"\+w* ascending \+w and|strong="G2532"\+w* \+w descending|strong="G2597"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3778"\+w*.”\wj* +\c 2 +\p +\v 1 \w The|strong="G1722"\w* \w third|strong="G5154"\w* \w day|strong="G2250"\w*, \w there|strong="G1563"\w* \w was|strong="G1510"\w* \w a|strong="G1096"\w* \w wedding|strong="G1062"\w* \w in|strong="G1722"\w* \w Cana|strong="G2580"\w* \w of|strong="G2250"\w* \w Galilee|strong="G1056"\w*. \w Jesus|strong="G2424"\w*’ \w mother|strong="G3384"\w* \w was|strong="G1510"\w* \w there|strong="G1563"\w*. +\v 2 \w Jesus|strong="G2424"\w* \w also|strong="G2532"\w* \w was|strong="G3588"\w* \w invited|strong="G2564"\w*, \w with|strong="G2532"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w*, \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w wedding|strong="G1062"\w*. +\v 3 \w When|strong="G2532"\w* \w the|strong="G2532"\w* \w wine|strong="G3631"\w* \w ran|strong="G5302"\w* \w out|strong="G2532"\w*, \w Jesus|strong="G2424"\w*’ \w mother|strong="G3384"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w They|strong="G2532"\w* \w have|strong="G2192"\w* \w no|strong="G3756"\w* \w wine|strong="G3631"\w*.” +\p +\v 4 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w her|strong="G3588"\w*, \wj “\+w Woman|strong="G1135"\+w*, \+w what|strong="G5101"\+w* \+w does|strong="G5101"\+w* \+w that|strong="G3588"\+w* \+w have|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w do|strong="G5101"\+w* \+w with|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w and|strong="G2532"\+w* \+w me|strong="G1473"\+w*? \+w My|strong="G1473"\+w* \+w hour|strong="G5610"\+w* \+w has|strong="G5101"\+w* \+w not|strong="G3768"\+w* \+w yet|strong="G2532"\+w* \+w come|strong="G2240"\+w*.”\wj* +\p +\v 5 \w His|strong="G4160"\w* \w mother|strong="G3384"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w the|strong="G3588"\w* \w servants|strong="G1249"\w*, “\w Whatever|strong="G3739"\w* \w he|strong="G3739"\w* \w says|strong="G3004"\w* \w to|strong="G3004"\w* \w you|strong="G5210"\w*, \w do|strong="G4160"\w* \w it|strong="G4160"\w*.” +\p +\v 6 \w Now|strong="G1161"\w* \w there|strong="G1563"\w* \w were|strong="G1510"\w* \w six|strong="G1803"\w* water pots \w of|strong="G2596"\w* \w stone|strong="G3035"\w* \w set|strong="G2749"\w* \w there|strong="G1563"\w* \w after|strong="G2596"\w* \w the|strong="G1161"\w* \w Jews|strong="G2453"\w*’ \w way|strong="G2596"\w* \w of|strong="G2596"\w* \w purifying|strong="G2512"\w*, \w containing|strong="G5562"\w* \w two|strong="G1417"\w* \w or|strong="G2228"\w* \w three|strong="G5140"\w* metretes\f + \fr 2:6 \ft 2 to 3 metretes is about 20 to 30 U. S. Gallons, or 75 to 115 liters.\f* apiece. +\v 7 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Fill|strong="G1072"\+w* \+w the|strong="G2532"\+w* \+w water|strong="G5204"\+w* pots \+w with|strong="G2532"\+w* \+w water|strong="G5204"\+w*.”\wj* \w So|strong="G2532"\w* \w they|strong="G2532"\w* \w filled|strong="G1072"\w* \w them|strong="G3588"\w* \w up|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* brim. +\v 8 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Now|strong="G1161"\+w* draw \+w some|strong="G3588"\+w* \+w out|strong="G2532"\+w*, \+w and|strong="G2532"\+w* \+w take|strong="G5342"\+w* \+w it|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* ruler \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* feast.”\wj* \w So|strong="G2532"\w* \w they|strong="G2532"\w* \w took|strong="G2532"\w* \w it|strong="G2532"\w*. +\v 9 \w When|strong="G1161"\w* \w the|strong="G2532"\w* ruler \w of|strong="G2532"\w* \w the|strong="G2532"\w* feast \w tasted|strong="G1089"\w* \w the|strong="G2532"\w* \w water|strong="G5204"\w* \w now|strong="G1161"\w* \w become|strong="G1096"\w* \w wine|strong="G3631"\w*, \w and|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w where|strong="G4159"\w* \w it|strong="G2532"\w* \w came|strong="G1096"\w* \w from|strong="G2532"\w* (\w but|strong="G1161"\w* \w the|strong="G2532"\w* \w servants|strong="G1249"\w* \w who|strong="G3588"\w* \w had|strong="G2532"\w* drawn \w the|strong="G2532"\w* \w water|strong="G5204"\w* \w knew|strong="G1492"\w*), \w the|strong="G2532"\w* ruler \w of|strong="G2532"\w* \w the|strong="G2532"\w* feast \w called|strong="G5455"\w* \w the|strong="G2532"\w* \w bridegroom|strong="G3566"\w* +\v 10 \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Everyone|strong="G3956"\w* \w serves|strong="G5087"\w* \w the|strong="G2532"\w* \w good|strong="G2570"\w* \w wine|strong="G3631"\w* \w first|strong="G4413"\w*, \w and|strong="G2532"\w* \w when|strong="G3752"\w* \w the|strong="G2532"\w* guests \w have|strong="G2532"\w* \w drunk|strong="G3184"\w* \w freely|strong="G3184"\w*, \w then|strong="G2532"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w worse|strong="G1640"\w*. \w You|strong="G4771"\w* \w have|strong="G2532"\w* \w kept|strong="G5083"\w* \w the|strong="G2532"\w* \w good|strong="G2570"\w* \w wine|strong="G3631"\w* \w until|strong="G2193"\w* \w now|strong="G2532"\w*!” +\v 11 \w This|strong="G3778"\w* beginning \w of|strong="G2532"\w* \w his|strong="G1519"\w* \w signs|strong="G4592"\w* \w Jesus|strong="G2424"\w* \w did|strong="G4160"\w* \w in|strong="G1722"\w* \w Cana|strong="G2580"\w* \w of|strong="G2532"\w* \w Galilee|strong="G1056"\w*, \w and|strong="G2532"\w* \w revealed|strong="G5319"\w* \w his|strong="G1519"\w* \w glory|strong="G1391"\w*; \w and|strong="G2532"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w believed|strong="G4100"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*. +\p +\v 12 \w After|strong="G3326"\w* \w this|strong="G3778"\w*, \w he|strong="G2532"\w* \w went|strong="G2597"\w* \w down|strong="G2597"\w* \w to|strong="G1519"\w* \w Capernaum|strong="G2584"\w*, \w he|strong="G2532"\w*, \w and|strong="G2532"\w* \w his|strong="G1519"\w* \w mother|strong="G3384"\w*, \w his|strong="G1519"\w* brothers, \w and|strong="G2532"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w*; \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w stayed|strong="G3306"\w* \w there|strong="G1563"\w* \w a|strong="G2532"\w* \w few|strong="G3756"\w* \w days|strong="G2250"\w*. +\p +\v 13 \w The|strong="G2532"\w* \w Passover|strong="G3957"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w was|strong="G1510"\w* \w at|strong="G1519"\w* \w hand|strong="G1451"\w*, \w and|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w went|strong="G2424"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w*. +\v 14 \w He|strong="G2532"\w* \w found|strong="G2147"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w sold|strong="G4453"\w* \w oxen|strong="G1016"\w*, \w sheep|strong="G4263"\w*, \w and|strong="G2532"\w* \w doves|strong="G4058"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w changers|strong="G2773"\w* \w of|strong="G2532"\w* \w money|strong="G2773"\w* \w sitting|strong="G2521"\w*. +\v 15 \w He|strong="G2532"\w* \w made|strong="G4160"\w* \w a|strong="G2532"\w* whip \w of|strong="G1537"\w* \w cords|strong="G4979"\w* \w and|strong="G2532"\w* \w drove|strong="G1544"\w* \w all|strong="G3956"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w temple|strong="G2413"\w*, \w both|strong="G2532"\w* \w the|strong="G2532"\w* \w sheep|strong="G4263"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w oxen|strong="G1016"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w poured|strong="G1632"\w* \w out|strong="G1537"\w* \w the|strong="G2532"\w* \w changers|strong="G2855"\w*’ \w money|strong="G2855"\w* \w and|strong="G2532"\w* overthrew \w their|strong="G2532"\w* \w tables|strong="G5132"\w*. +\v 16 \w To|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w sold|strong="G4453"\w* \w the|strong="G2532"\w* \w doves|strong="G4058"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Take|strong="G2532"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* \+w out|strong="G2532"\+w* \+w of|strong="G2532"\+w* \+w here|strong="G1782"\+w*! Don’\+w t|strong="G3588"\+w* \+w make|strong="G4160"\+w* \+w my|strong="G1473"\+w* \+w Father|strong="G3962"\+w*’s \+w house|strong="G3624"\+w* \+w a|strong="G2532"\+w* marketplace!”\wj* +\v 17 \w His|strong="G3754"\w* \w disciples|strong="G3101"\w* \w remembered|strong="G3403"\w* \w that|strong="G3754"\w* \w it|strong="G3754"\w* \w was|strong="G1510"\w* \w written|strong="G1125"\w*, “\w Zeal|strong="G2205"\w* \w for|strong="G3754"\w* \w your|strong="G3588"\w* \w house|strong="G3624"\w* \w will|strong="G1510"\w* \w eat|strong="G2719"\w* \w me|strong="G1473"\w* \w up|strong="G2719"\w*.”\x + \xo 2:17 \xt Psalms 69:9\x* +\p +\v 18 \w The|strong="G2532"\w* \w Jews|strong="G2453"\w* \w therefore|strong="G3767"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, “\w What|strong="G5101"\w* \w sign|strong="G4592"\w* \w do|strong="G4160"\w* \w you|strong="G3754"\w* \w show|strong="G1166"\w* \w us|strong="G3004"\w*, \w seeing|strong="G3754"\w* \w that|strong="G3754"\w* \w you|strong="G3754"\w* \w do|strong="G4160"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*?” +\p +\v 19 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Destroy|strong="G3089"\+w* \+w this|strong="G3778"\+w* \+w temple|strong="G3485"\+w*, \+w and|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w three|strong="G5140"\+w* \+w days|strong="G2250"\+w* \+w I|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w raise|strong="G1453"\+w* \+w it|strong="G2532"\+w* \+w up|strong="G1453"\+w*.”\wj* +\p +\v 20 \w The|strong="G1722"\w* \w Jews|strong="G2453"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w*, “\w It|strong="G2532"\w* \w took|strong="G2532"\w* forty-six \w years|strong="G2094"\w* \w to|strong="G2532"\w* \w build|strong="G3618"\w* \w this|strong="G3778"\w* \w temple|strong="G3485"\w*! \w Will|strong="G2532"\w* \w you|strong="G4771"\w* \w raise|strong="G1453"\w* \w it|strong="G2532"\w* \w up|strong="G1453"\w* \w in|strong="G1722"\w* \w three|strong="G5140"\w* \w days|strong="G2250"\w*?” +\v 21 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w spoke|strong="G3004"\w* \w of|strong="G4012"\w* \w the|strong="G1161"\w* \w temple|strong="G3485"\w* \w of|strong="G4012"\w* \w his|strong="G4012"\w* \w body|strong="G4983"\w*. +\v 22 \w When|strong="G3753"\w* \w therefore|strong="G3767"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w raised|strong="G1453"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*, \w his|strong="G2532"\w* \w disciples|strong="G3101"\w* \w remembered|strong="G3403"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w this|strong="G3778"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w believed|strong="G4100"\w* \w the|strong="G2532"\w* \w Scripture|strong="G1124"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w which|strong="G3739"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* \w said|strong="G3004"\w*. +\p +\v 23 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w he|strong="G1161"\w* \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w Jerusalem|strong="G2414"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w Passover|strong="G3957"\w*, \w during|strong="G1722"\w* \w the|strong="G1722"\w* \w feast|strong="G1859"\w*, \w many|strong="G4183"\w* \w believed|strong="G4100"\w* \w in|strong="G1722"\w* \w his|strong="G1519"\w* \w name|strong="G3686"\w*, \w observing|strong="G2334"\w* \w his|strong="G1519"\w* \w signs|strong="G4592"\w* \w which|strong="G3739"\w* \w he|strong="G1161"\w* \w did|strong="G4160"\w*. +\v 24 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* didn’\w t|strong="G3588"\w* \w entrust|strong="G4100"\w* \w himself|strong="G1438"\w* \w to|strong="G3756"\w* \w them|strong="G3588"\w*, \w because|strong="G1223"\w* \w he|strong="G1161"\w* \w knew|strong="G1097"\w* \w everyone|strong="G3956"\w*, +\v 25 \w and|strong="G2532"\w* \w because|strong="G3754"\w* \w he|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w need|strong="G5532"\w* \w for|strong="G1063"\w* \w anyone|strong="G5100"\w* \w to|strong="G2443"\w* \w testify|strong="G3140"\w* \w concerning|strong="G4012"\w* \w man|strong="G5100"\w*; \w for|strong="G1063"\w* \w he|strong="G2532"\w* himself \w knew|strong="G1097"\w* \w what|strong="G5101"\w* \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w man|strong="G5100"\w*. +\c 3 +\p +\v 1 \w Now|strong="G1161"\w* \w there|strong="G1161"\w* \w was|strong="G1510"\w* \w a|strong="G1510"\w* man \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w Pharisees|strong="G5330"\w* \w named|strong="G3686"\w* \w Nicodemus|strong="G3530"\w*, \w a|strong="G1510"\w* ruler \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w Jews|strong="G2453"\w*. +\v 2 \w He|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w Jesus|strong="G3004"\w* \w by|strong="G4314"\w* \w night|strong="G3571"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w Rabbi|strong="G4461"\w*, \w we|strong="G3739"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w a|strong="G2532"\w* \w teacher|strong="G1320"\w* \w come|strong="G2064"\w* \w from|strong="G2064"\w* \w God|strong="G2316"\w*, \w for|strong="G1063"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w* \w can|strong="G1410"\w* \w do|strong="G4160"\w* \w these|strong="G3778"\w* \w signs|strong="G4592"\w* \w that|strong="G3754"\w* \w you|strong="G4771"\w* \w do|strong="G4160"\w*, \w unless|strong="G1437"\w* \w God|strong="G2316"\w* \w is|strong="G1510"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w*.” +\p +\v 3 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w Most|strong="G2316"\+w* \+w certainly|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w*, \+w unless|strong="G1437"\+w* \+w one|strong="G5100"\+w* \+w is|strong="G3588"\+w* \+w born|strong="G1080"\+w* anew, \wj*\f + \fr 3:3 \ft The word translated “anew” here and in John 3:7 (ἄνωθεν) also means “again” and “from above”.\f* \wj \+w he|strong="G2532"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w see|strong="G3708"\+w* \+w God|strong="G2316"\+w*’s Kingdom.”\wj* +\p +\v 4 \w Nicodemus|strong="G3530"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, “\w How|strong="G4459"\w* \w can|strong="G1410"\w* \w a|strong="G2532"\w* \w man|strong="G3361"\w* \w be|strong="G1510"\w* \w born|strong="G1080"\w* \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w old|strong="G1088"\w*? \w Can|strong="G1410"\w* \w he|strong="G2532"\w* \w enter|strong="G1525"\w* \w a|strong="G2532"\w* \w second|strong="G1208"\w* \w time|strong="G1208"\w* \w into|strong="G1519"\w* \w his|strong="G1519"\w* \w mother|strong="G3384"\w*’s \w womb|strong="G2836"\w* \w and|strong="G2532"\w* \w be|strong="G1510"\w* \w born|strong="G1080"\w*?” +\p +\v 5 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w*, \wj “\+w Most|strong="G2316"\+w* \+w certainly|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w*, \+w unless|strong="G1437"\+w* \+w one|strong="G5100"\+w* \+w is|strong="G3588"\+w* \+w born|strong="G1080"\+w* \+w of|strong="G1537"\+w* \+w water|strong="G5204"\+w* \+w and|strong="G2532"\+w* \+w Spirit|strong="G4151"\+w*, \+w he|strong="G2532"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w God|strong="G2316"\+w*’s Kingdom.\wj* +\v 6 \wj \+w That|strong="G3588"\+w* \+w which|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w born|strong="G1080"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w flesh|strong="G4561"\+w* \+w is|strong="G1510"\+w* \+w flesh|strong="G4561"\+w*. \+w That|strong="G3588"\+w* \+w which|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w born|strong="G1080"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w Spirit|strong="G4151"\+w* \+w is|strong="G1510"\+w* \+w spirit|strong="G4151"\+w*. \wj* +\v 7 \wj Don’t \+w marvel|strong="G2296"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G3754"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G3004"\+w* \+w you|strong="G5210"\+w*, ‘\+w You|strong="G5210"\+w* \+w must|strong="G1163"\+w* \+w be|strong="G1163"\+w* \+w born|strong="G1080"\+w* anew.’ \wj* +\v 8 \wj \+w The|strong="G2532"\+w* \+w wind|strong="G4154"\+w*\wj*\f + \fr 3:8 \ft The same Greek word (πνεῦμα) means wind, breath, and spirit.\f* \wj \+w blows|strong="G4154"\+w* \+w where|strong="G3699"\+w* \+w it|strong="G2532"\+w* \+w wants|strong="G2309"\+w* \+w to|strong="G2532"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G1510"\+w* \+w hear|strong="G5456"\+w* \+w its|strong="G3956"\+w* \+w sound|strong="G5456"\+w*, \+w but|strong="G2532"\+w* don’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w* \+w where|strong="G3699"\+w* \+w it|strong="G2532"\+w* \+w comes|strong="G2064"\+w* \+w from|strong="G1537"\+w* \+w and|strong="G2532"\+w* \+w where|strong="G3699"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w going|strong="G5217"\+w*. \+w So|strong="G3779"\+w* \+w is|strong="G1510"\+w* \+w everyone|strong="G3956"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w born|strong="G1080"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w Spirit|strong="G4151"\+w*.”\wj* +\p +\v 9 \w Nicodemus|strong="G3530"\w* \w answered|strong="G3004"\w* \w him|strong="G2532"\w*, “\w How|strong="G4459"\w* \w can|strong="G1410"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w be|strong="G1096"\w*?” +\p +\v 10 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w Are|strong="G1510"\+w* \+w you|strong="G4771"\+w* \+w the|strong="G2532"\+w* \+w teacher|strong="G1320"\+w* \+w of|strong="G2532"\+w* \+w Israel|strong="G2474"\+w*, \+w and|strong="G2532"\+w* don’\+w t|strong="G3588"\+w* \+w understand|strong="G1097"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w*? \wj* +\v 11 \wj Most \+w certainly|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w*, \+w we|strong="G2249"\+w* \+w speak|strong="G2980"\+w* \+w that|strong="G3754"\+w* \+w which|strong="G3739"\+w* \+w we|strong="G2249"\+w* \+w know|strong="G1492"\+w* \+w and|strong="G2532"\+w* \+w testify|strong="G3140"\+w* \+w of|strong="G2532"\+w* \+w that|strong="G3754"\+w* \+w which|strong="G3739"\+w* \+w we|strong="G2249"\+w* \+w have|strong="G2532"\+w* \+w seen|strong="G3708"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G4771"\+w* don’\+w t|strong="G3588"\+w* \+w receive|strong="G2983"\+w* \+w our|strong="G2532"\+w* \+w witness|strong="G3140"\+w*. \wj* +\v 12 \wj \+w If|strong="G1487"\+w* \+w I|strong="G2532"\+w* \+w told|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w earthly|strong="G1919"\+w* \+w things|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* \+w believe|strong="G4100"\+w*, \+w how|strong="G4459"\+w* \+w will|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w believe|strong="G4100"\+w* \+w if|strong="G1487"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w heavenly|strong="G2032"\+w* \+w things|strong="G3588"\+w*? \wj* +\v 13 \wj \+w No|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w has|strong="G3762"\+w* \+w ascended|strong="G3588"\+w* \+w into|strong="G1519"\+w* \+w heaven|strong="G3772"\+w* \+w but|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w descended|strong="G2597"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w heaven|strong="G3772"\+w*, \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G1537"\+w* \+w Man|strong="G3762"\+w*, \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w heaven|strong="G3772"\+w*. \wj* +\v 14 \wj \+w As|strong="G2531"\+w* \+w Moses|strong="G3475"\+w* \+w lifted|strong="G5312"\+w* \+w up|strong="G1210"\+w* \+w the|strong="G1722"\+w* \+w serpent|strong="G3789"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w wilderness|strong="G2048"\+w*, \+w even|strong="G2532"\+w* \+w so|strong="G3779"\+w* \+w must|strong="G1163"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w* \+w be|strong="G2532"\+w* \+w lifted|strong="G5312"\+w* \+w up|strong="G1210"\+w*, \wj* +\v 15 \wj \+w that|strong="G2443"\+w* \+w whoever|strong="G3956"\+w* \+w believes|strong="G4100"\+w* \+w in|strong="G1722"\+w* \+w him|strong="G3588"\+w* \+w should|strong="G3588"\+w* \+w not|strong="G2192"\+w* perish, \+w but|strong="G3588"\+w* \+w have|strong="G2192"\+w* eternal \+w life|strong="G2222"\+w*. \wj* +\v 16 \wj \+w For|strong="G1063"\+w* \+w God|strong="G2316"\+w* \+w so|strong="G3779"\+w* loved \+w the|strong="G1519"\+w* \+w world|strong="G2889"\+w*, \+w that|strong="G2443"\+w* \+w he|strong="G3588"\+w* \+w gave|strong="G1325"\+w* \+w his|strong="G3956"\+w* \+w only|strong="G3439"\+w* born\wj*\f + \fr 3:16 \ft The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”.\f* \wj \+w Son|strong="G5207"\+w*, \+w that|strong="G2443"\+w* \+w whoever|strong="G3956"\+w* \+w believes|strong="G4100"\+w* \+w in|strong="G1519"\+w* \+w him|strong="G3588"\+w* \+w should|strong="G2316"\+w* \+w not|strong="G3361"\+w* perish, \+w but|strong="G3361"\+w* \+w have|strong="G2192"\+w* eternal \+w life|strong="G2222"\+w*. \wj* +\v 17 \wj \+w For|strong="G1063"\+w* \+w God|strong="G2316"\+w* didn’\+w t|strong="G3588"\+w* send \+w his|strong="G1223"\+w* \+w Son|strong="G5207"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w world|strong="G2889"\+w* \+w to|strong="G1519"\+w* \+w judge|strong="G2919"\+w* \+w the|strong="G1519"\+w* \+w world|strong="G2889"\+w*, \+w but|strong="G1063"\+w* \+w that|strong="G2443"\+w* \+w the|strong="G1519"\+w* \+w world|strong="G2889"\+w* \+w should|strong="G2316"\+w* \+w be|strong="G3756"\+w* \+w saved|strong="G4982"\+w* \+w through|strong="G1223"\+w* \+w him|strong="G3588"\+w*. \wj* +\v 18 \wj \+w He|strong="G1161"\+w* \+w who|strong="G3588"\+w* \+w believes|strong="G4100"\+w* \+w in|strong="G1519"\+w* \+w him|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w not|strong="G3756"\+w* \+w judged|strong="G2919"\+w*. \+w He|strong="G1161"\+w* \+w who|strong="G3588"\+w* doesn’\+w t|strong="G3588"\+w* \+w believe|strong="G4100"\+w* \+w has|strong="G2316"\+w* \+w been|strong="G2235"\+w* \+w judged|strong="G2919"\+w* \+w already|strong="G2235"\+w*, \+w because|strong="G3754"\+w* \+w he|strong="G1161"\+w* \+w has|strong="G2316"\+w* \+w not|strong="G3756"\+w* \+w believed|strong="G4100"\+w* \+w in|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w name|strong="G3686"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G1519"\+w* \+w only|strong="G3439"\+w* born \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w God|strong="G2316"\+w*. \wj* +\v 19 \wj \+w This|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w judgment|strong="G2920"\+w*, \+w that|strong="G3754"\+w* \+w the|strong="G2532"\+w* \+w light|strong="G5457"\+w* \+w has|strong="G3778"\+w* \+w come|strong="G2064"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w world|strong="G2889"\+w*, \+w and|strong="G2532"\+w* \+w men|strong="G3778"\+w* loved \+w the|strong="G2532"\+w* \+w darkness|strong="G4655"\+w* \+w rather|strong="G3123"\+w* \+w than|strong="G2228"\+w* \+w the|strong="G2532"\+w* \+w light|strong="G5457"\+w*, \+w for|strong="G1063"\+w* \+w their|strong="G2532"\+w* \+w works|strong="G2041"\+w* \+w were|strong="G1510"\+w* \+w evil|strong="G4190"\+w*. \wj* +\v 20 \wj \+w For|strong="G1063"\+w* \+w everyone|strong="G3956"\+w* \+w who|strong="G3588"\+w* \+w does|strong="G2064"\+w* \+w evil|strong="G5337"\+w* \+w hates|strong="G3404"\+w* \+w the|strong="G2532"\+w* \+w light|strong="G5457"\+w* \+w and|strong="G2532"\+w* doesn’\+w t|strong="G3588"\+w* \+w come|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w the|strong="G2532"\+w* \+w light|strong="G5457"\+w*, \+w lest|strong="G3361"\+w* \+w his|strong="G3956"\+w* \+w works|strong="G2041"\+w* \+w would|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w exposed|strong="G1651"\+w*. \wj* +\v 21 \wj \+w But|strong="G1161"\+w* \+w he|strong="G1161"\+w* \+w who|strong="G3588"\+w* \+w does|strong="G4160"\+w* \+w the|strong="G1722"\+w* truth \+w comes|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w the|strong="G1722"\+w* \+w light|strong="G5457"\+w*, \+w that|strong="G3754"\+w* \+w his|strong="G1722"\+w* \+w works|strong="G2041"\+w* \+w may|strong="G2443"\+w* \+w be|strong="G1510"\+w* \+w revealed|strong="G5319"\+w*, \+w that|strong="G3754"\+w* \+w they|strong="G1161"\+w* \+w have|strong="G3748"\+w* \+w been|strong="G1510"\+w* \+w done|strong="G4160"\+w* \+w in|strong="G1722"\+w* \+w God|strong="G2316"\+w*.”\wj* +\p +\v 22 \w After|strong="G3326"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w Jesus|strong="G2424"\w* \w came|strong="G2064"\w* \w with|strong="G3326"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w land|strong="G1093"\w* \w of|strong="G2532"\w* \w Judea|strong="G2453"\w*. \w He|strong="G2532"\w* \w stayed|strong="G1304"\w* \w there|strong="G1563"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* baptized. +\v 23 \w John|strong="G2491"\w* \w also|strong="G2532"\w* \w was|strong="G1510"\w* baptizing \w in|strong="G1722"\w* Enon \w near|strong="G1451"\w* \w Salim|strong="G4530"\w*, \w because|strong="G3754"\w* \w there|strong="G1563"\w* \w was|strong="G1510"\w* \w much|strong="G4183"\w* \w water|strong="G5204"\w* \w there|strong="G1563"\w*. \w They|strong="G2532"\w* \w came|strong="G3854"\w* \w and|strong="G2532"\w* \w were|strong="G1510"\w* baptized; +\v 24 \w for|strong="G1063"\w* \w John|strong="G2491"\w* \w was|strong="G1510"\w* \w not|strong="G1510"\w* \w yet|strong="G3768"\w* thrown \w into|strong="G1519"\w* \w prison|strong="G5438"\w*. +\v 25 \w Therefore|strong="G3767"\w* \w a|strong="G1096"\w* dispute \w arose|strong="G1096"\w* \w on|strong="G1537"\w* \w the|strong="G1537"\w* part \w of|strong="G1537"\w* \w John|strong="G2491"\w*’s \w disciples|strong="G3101"\w* \w with|strong="G3326"\w* \w some|strong="G3588"\w* \w Jews|strong="G2453"\w* \w about|strong="G4012"\w* \w purification|strong="G2512"\w*. +\v 26 \w They|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w John|strong="G2491"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w Rabbi|strong="G4461"\w*, \w he|strong="G2532"\w* \w who|strong="G3739"\w* \w was|strong="G1510"\w* \w with|strong="G3326"\w* \w you|strong="G4771"\w* \w beyond|strong="G4008"\w* \w the|strong="G2532"\w* \w Jordan|strong="G2446"\w*, \w to|strong="G4314"\w* \w whom|strong="G3739"\w* \w you|strong="G4771"\w* \w have|strong="G2532"\w* \w testified|strong="G3140"\w*, \w behold|strong="G2396"\w*, \w he|strong="G2532"\w* baptizes, \w and|strong="G2532"\w* \w everyone|strong="G3956"\w* \w is|strong="G1510"\w* \w coming|strong="G2064"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*.” +\p +\v 27 \w John|strong="G2491"\w* \w answered|strong="G3004"\w*, “\w A|strong="G2532"\w* \w man|strong="G3762"\w* \w can|strong="G1410"\w* \w receive|strong="G2983"\w* \w nothing|strong="G3762"\w* \w unless|strong="G1437"\w* \w it|strong="G2532"\w* \w has|strong="G3762"\w* \w been|strong="G1510"\w* \w given|strong="G1325"\w* \w him|strong="G3588"\w* \w from|strong="G1537"\w* \w heaven|strong="G3772"\w*. +\v 28 \w You|strong="G5210"\w* \w yourselves|strong="G4771"\w* \w testify|strong="G3140"\w* \w that|strong="G3754"\w* \w I|strong="G1473"\w* \w said|strong="G3004"\w*, ‘\w I|strong="G1473"\w* \w am|strong="G1510"\w* \w not|strong="G3756"\w* \w the|strong="G3588"\w* \w Christ|strong="G5547"\w*,’ \w but|strong="G3588"\w*, ‘\w I|strong="G1473"\w* \w have|strong="G1473"\w* \w been|strong="G1510"\w* sent \w before|strong="G1715"\w* \w him|strong="G3588"\w*.’ +\v 29 \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w has|strong="G2192"\w* \w the|strong="G2532"\w* \w bride|strong="G3565"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w bridegroom|strong="G3566"\w*; \w but|strong="G1161"\w* \w the|strong="G2532"\w* \w friend|strong="G5384"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w bridegroom|strong="G3566"\w*, \w who|strong="G3588"\w* \w stands|strong="G2476"\w* \w and|strong="G2532"\w* hears \w him|strong="G3588"\w*, \w rejoices|strong="G5463"\w* \w greatly|strong="G5479"\w* \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w bridegroom|strong="G3566"\w*’\w s|strong="G2192"\w* \w voice|strong="G5456"\w*. \w Therefore|strong="G3767"\w* \w my|strong="G1699"\w* \w joy|strong="G5479"\w* \w is|strong="G1510"\w* \w made|strong="G4137"\w* \w full|strong="G4137"\w*. +\v 30 \w He|strong="G1161"\w* \w must|strong="G1163"\w* increase, \w but|strong="G1161"\w* \w I|strong="G1473"\w* \w must|strong="G1163"\w* \w decrease|strong="G1642"\w*. +\p +\v 31 “\w He|strong="G2532"\w* \w who|strong="G3588"\w* \w comes|strong="G2064"\w* \w from|strong="G1537"\w* \w above|strong="G1883"\w* \w is|strong="G1510"\w* \w above|strong="G1883"\w* \w all|strong="G3956"\w*. \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w belongs|strong="G1510"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w and|strong="G2532"\w* \w speaks|strong="G2980"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*. \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w comes|strong="G2064"\w* \w from|strong="G1537"\w* \w heaven|strong="G3772"\w* \w is|strong="G1510"\w* \w above|strong="G1883"\w* \w all|strong="G3956"\w*. +\v 32 \w What|strong="G3739"\w* \w he|strong="G2532"\w* \w has|strong="G3739"\w* \w seen|strong="G3708"\w* \w and|strong="G2532"\w* heard, \w of|strong="G2532"\w* \w that|strong="G3739"\w* \w he|strong="G2532"\w* \w testifies|strong="G3140"\w*; \w and|strong="G2532"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w* \w receives|strong="G2983"\w* \w his|strong="G2983"\w* \w witness|strong="G3140"\w*. +\v 33 \w He|strong="G3754"\w* \w who|strong="G3588"\w* \w has|strong="G2316"\w* \w received|strong="G2983"\w* \w his|strong="G2983"\w* \w witness|strong="G3141"\w* \w has|strong="G2316"\w* \w set|strong="G4972"\w* \w his|strong="G2983"\w* \w seal|strong="G4972"\w* \w to|strong="G2316"\w* \w this|strong="G3588"\w*, \w that|strong="G3754"\w* \w God|strong="G2316"\w* \w is|strong="G1510"\w* \w true|strong="G3588"\w*. +\v 34 \w For|strong="G1063"\w* \w he|strong="G3739"\w* \w whom|strong="G3739"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w sent|strong="G2316"\w* \w speaks|strong="G2980"\w* \w the|strong="G1537"\w* \w words|strong="G4487"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*; \w for|strong="G1063"\w* \w God|strong="G2316"\w* \w gives|strong="G1325"\w* \w the|strong="G1537"\w* \w Spirit|strong="G4151"\w* \w without|strong="G3756"\w* \w measure|strong="G3358"\w*. +\v 35 \w The|strong="G1722"\w* \w Father|strong="G3962"\w* loves \w the|strong="G1722"\w* \w Son|strong="G5207"\w*, \w and|strong="G2532"\w* \w has|strong="G3962"\w* \w given|strong="G1325"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w into|strong="G1722"\w* \w his|strong="G3956"\w* \w hand|strong="G5495"\w*. +\v 36 \w One|strong="G3588"\w* \w who|strong="G3588"\w* \w believes|strong="G4100"\w* \w in|strong="G1519"\w* \w the|strong="G1519"\w* \w Son|strong="G5207"\w* \w has|strong="G2192"\w* eternal \w life|strong="G2222"\w*, \w but|strong="G1161"\w* \w one|strong="G3588"\w* \w who|strong="G3588"\w* disobeys\f + \fr 3:36 \ft The same word can be translated “disobeys” or “disbelieves” in this context.\f* \w the|strong="G1519"\w* \w Son|strong="G5207"\w* won’\w t|strong="G3588"\w* \w see|strong="G3708"\w* \w life|strong="G2222"\w*, \w but|strong="G1161"\w* \w the|strong="G1519"\w* \w wrath|strong="G3709"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w* \w remains|strong="G3306"\w* \w on|strong="G1909"\w* \w him|strong="G3588"\w*.” +\c 4 +\p +\v 1 \w Therefore|strong="G3767"\w* \w when|strong="G5613"\w* \w the|strong="G2532"\w* \w Lord|strong="G3588"\w* \w knew|strong="G1097"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w had|strong="G2424"\w* \w heard|strong="G1097"\w* \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w was|strong="G3588"\w* \w making|strong="G4160"\w* \w and|strong="G2532"\w* baptizing \w more|strong="G4119"\w* \w disciples|strong="G3101"\w* \w than|strong="G2228"\w* \w John|strong="G2491"\w* +\v 2 (\w although|strong="G2544"\w* \w Jesus|strong="G2424"\w* himself didn’\w t|strong="G3588"\w* baptize, \w but|strong="G3588"\w* \w his|strong="G3588"\w* \w disciples|strong="G3101"\w*), +\v 3 \w he|strong="G2532"\w* left \w Judea|strong="G2449"\w* \w and|strong="G2532"\w* departed \w into|strong="G1519"\w* \w Galilee|strong="G1056"\w*. +\v 4 \w He|strong="G1161"\w* \w needed|strong="G1163"\w* \w to|strong="G1163"\w* \w pass|strong="G1330"\w* \w through|strong="G1223"\w* \w Samaria|strong="G4540"\w*. +\v 5 \w So|strong="G3767"\w* \w he|strong="G3739"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w a|strong="G1519"\w* \w city|strong="G4172"\w* \w of|strong="G5207"\w* \w Samaria|strong="G4540"\w* \w called|strong="G3004"\w* \w Sychar|strong="G4965"\w*, \w near|strong="G4139"\w* \w the|strong="G1519"\w* \w parcel|strong="G5564"\w* \w of|strong="G5207"\w* \w ground|strong="G5564"\w* \w that|strong="G3739"\w* \w Jacob|strong="G2384"\w* \w gave|strong="G1325"\w* \w to|strong="G1519"\w* \w his|strong="G1519"\w* \w son|strong="G5207"\w* \w Joseph|strong="G2501"\w*. +\v 6 \w Jacob|strong="G2384"\w*’s \w well|strong="G4077"\w* \w was|strong="G1510"\w* \w there|strong="G1563"\w*. \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w*, \w being|strong="G1510"\w* tired \w from|strong="G1537"\w* \w his|strong="G1909"\w* \w journey|strong="G3597"\w*, \w sat|strong="G2516"\w* \w down|strong="G1537"\w* \w by|strong="G1537"\w* \w the|strong="G1537"\w* \w well|strong="G4077"\w*. \w It|strong="G1161"\w* \w was|strong="G1510"\w* \w about|strong="G5613"\w* \w the|strong="G1537"\w* \w sixth|strong="G1623"\w* \w hour|strong="G5610"\w*.\f + \fr 4:6 \ft noon\f* +\p +\v 7 \w A|strong="G1325"\w* \w woman|strong="G1135"\w* \w of|strong="G1537"\w* \w Samaria|strong="G4540"\w* \w came|strong="G2064"\w* \w to|strong="G3004"\w* draw \w water|strong="G5204"\w*. \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w her|strong="G1325"\w*, \wj “\+w Give|strong="G1325"\+w* \+w me|strong="G1325"\+w* \+w a|strong="G1325"\+w* \+w drink|strong="G4095"\+w*.”\wj* +\v 8 \w For|strong="G1063"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w had|strong="G3588"\w* gone away \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w city|strong="G4172"\w* \w to|strong="G1519"\w* buy \w food|strong="G5160"\w*. +\p +\v 9 \w The|strong="G3588"\w* \w Samaritan|strong="G4542"\w* \w woman|strong="G1135"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w How|strong="G4459"\w* \w is|strong="G1510"\w* \w it|strong="G1063"\w* \w that|strong="G3588"\w* \w you|strong="G4771"\w*, \w being|strong="G1510"\w* \w a|strong="G1510"\w* \w Jew|strong="G2453"\w*, \w ask|strong="G3004"\w* \w for|strong="G1063"\w* \w a|strong="G1510"\w* \w drink|strong="G4095"\w* \w from|strong="G3844"\w* \w me|strong="G1473"\w*, \w a|strong="G1510"\w* \w Samaritan|strong="G4542"\w* \w woman|strong="G1135"\w*?” (\w For|strong="G1063"\w* \w Jews|strong="G2453"\w* \w have|strong="G1473"\w* \w no|strong="G3588"\w* \w dealings|strong="G4798"\w* \w with|strong="G3844"\w* Samaritans.) +\p +\v 10 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w her|strong="G1325"\w*, \wj “\+w If|strong="G1487"\+w* \+w you|strong="G4771"\+w* \+w knew|strong="G1492"\+w* \+w the|strong="G2532"\+w* \+w gift|strong="G1431"\+w* \+w of|strong="G2316"\+w* \+w God|strong="G2316"\+w*, \+w and|strong="G2532"\+w* \+w who|strong="G5101"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w who|strong="G5101"\+w* \+w says|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G4771"\+w*, ‘\+w Give|strong="G1325"\+w* \+w me|strong="G1325"\+w* \+w a|strong="G2532"\+w* \+w drink|strong="G4095"\+w*,’ \+w you|strong="G4771"\+w* \+w would|strong="G2316"\+w* \+w have|strong="G2532"\+w* \+w asked|strong="G3004"\+w* \+w him|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w would|strong="G2316"\+w* \+w have|strong="G2532"\+w* \+w given|strong="G1325"\+w* \+w you|strong="G4771"\+w* \+w living|strong="G2198"\+w* \+w water|strong="G5204"\+w*.”\wj* +\p +\v 11 \w The|strong="G2532"\w* \w woman|strong="G1135"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Sir|strong="G2962"\w*, \w you|strong="G3004"\w* \w have|strong="G2192"\w* \w nothing|strong="G3777"\w* \w to|strong="G2532"\w* draw \w with|strong="G2532"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w well|strong="G2532"\w* \w is|strong="G1510"\w* deep. \w So|strong="G3767"\w* \w where|strong="G4159"\w* \w do|strong="G2532"\w* \w you|strong="G3004"\w* \w get|strong="G2192"\w* \w that|strong="G3588"\w* \w living|strong="G2198"\w* \w water|strong="G5204"\w*? +\v 12 \w Are|strong="G1510"\w* \w you|strong="G4771"\w* \w greater|strong="G3173"\w* \w than|strong="G3173"\w* \w our|strong="G2532"\w* \w father|strong="G3962"\w* \w Jacob|strong="G2384"\w*, \w who|strong="G3739"\w* \w gave|strong="G1325"\w* \w us|strong="G1325"\w* \w the|strong="G2532"\w* \w well|strong="G2532"\w* \w and|strong="G2532"\w* \w drank|strong="G4095"\w* \w from|strong="G1537"\w* \w it|strong="G2532"\w* himself, \w as|strong="G2532"\w* \w did|strong="G2532"\w* \w his|strong="G2532"\w* \w children|strong="G5207"\w* \w and|strong="G2532"\w* \w his|strong="G2532"\w* \w livestock|strong="G2353"\w*?” +\p +\v 13 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w her|strong="G3956"\w*, \wj “\+w Everyone|strong="G3956"\+w* \+w who|strong="G3588"\+w* \+w drinks|strong="G4095"\+w* \+w of|strong="G1537"\+w* \+w this|strong="G3778"\+w* \+w water|strong="G5204"\+w* \+w will|strong="G2532"\+w* \+w thirst|strong="G1372"\+w* \+w again|strong="G3825"\+w*, \wj* +\v 14 \wj \+w but|strong="G1161"\+w* \+w whoever|strong="G3739"\+w* \+w drinks|strong="G4095"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1722"\+w* \+w water|strong="G5204"\+w* \+w that|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G3739"\+w* \+w give|strong="G1325"\+w* \+w him|strong="G3588"\+w* \+w will|strong="G3739"\+w* \+w never|strong="G3756"\+w* \+w thirst|strong="G1372"\+w* \+w again|strong="G1519"\+w*; \+w but|strong="G1161"\+w* \+w the|strong="G1722"\+w* \+w water|strong="G5204"\+w* \+w that|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G3739"\+w* \+w give|strong="G1325"\+w* \+w him|strong="G3588"\+w* \+w will|strong="G3739"\+w* \+w become|strong="G1096"\+w* \+w in|strong="G1722"\+w* \+w him|strong="G3588"\+w* \+w a|strong="G1096"\+w* \+w well|strong="G4077"\+w* \+w of|strong="G1537"\+w* \+w water|strong="G5204"\+w* springing \+w up|strong="G1519"\+w* \+w to|strong="G1519"\+w* eternal \+w life|strong="G2222"\+w*.”\wj* +\p +\v 15 \w The|strong="G4314"\w* \w woman|strong="G1135"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w Sir|strong="G2962"\w*, \w give|strong="G1325"\w* \w me|strong="G1325"\w* \w this|strong="G3778"\w* \w water|strong="G5204"\w*, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w I|strong="G1473"\w* don’\w t|strong="G3588"\w* get \w thirsty|strong="G1372"\w*, \w neither|strong="G3366"\w* \w come|strong="G1330"\w* \w all|strong="G3361"\w* \w the|strong="G4314"\w* \w way|strong="G3778"\w* \w here|strong="G1759"\w* \w to|strong="G4314"\w* draw.” +\p +\v 16 \w Jesus|strong="G3004"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w her|strong="G3588"\w*, \wj “\+w Go|strong="G5217"\+w*, \+w call|strong="G3004"\+w* \+w your|strong="G2532"\+w* husband, \+w and|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w here|strong="G1759"\+w*.” \wj* +\p +\v 17 \w The|strong="G2532"\w* \w woman|strong="G1135"\w* \w answered|strong="G3004"\w*, “\w I|strong="G2532"\w* \w have|strong="G2192"\w* \w no|strong="G3756"\w* husband.” +\p \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w her|strong="G3754"\w*, \wj “\+w You|strong="G3754"\+w* \+w said|strong="G3004"\+w* \+w well|strong="G2573"\+w*, ‘\+w I|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w no|strong="G3756"\+w* husband,’ \wj* +\v 18 \wj \+w for|strong="G1063"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2192"\+w* \+w had|strong="G2192"\+w* \+w five|strong="G4002"\+w* husbands; \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w whom|strong="G3739"\+w* \+w you|strong="G4771"\+w* \+w now|strong="G3568"\+w* \+w have|strong="G2192"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w your|strong="G2192"\+w* husband. \+w This|strong="G3778"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2192"\+w* \+w said|strong="G3004"\+w* truly.”\wj* +\p +\v 19 \w The|strong="G3588"\w* \w woman|strong="G1135"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Sir|strong="G2962"\w*, \w I|strong="G3754"\w* \w perceive|strong="G2334"\w* \w that|strong="G3754"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w a|strong="G1510"\w* \w prophet|strong="G4396"\w*. +\v 20 \w Our|strong="G2532"\w* \w fathers|strong="G3962"\w* \w worshiped|strong="G4352"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* \w mountain|strong="G3735"\w*, \w and|strong="G2532"\w* \w you|strong="G5210"\w* Jews \w say|strong="G3004"\w* \w that|strong="G3754"\w* \w in|strong="G1722"\w* \w Jerusalem|strong="G2414"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w place|strong="G5117"\w* \w where|strong="G3699"\w* \w people|strong="G1510"\w* \w ought|strong="G1163"\w* \w to|strong="G2532"\w* \w worship|strong="G4352"\w*.” +\p +\v 21 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w her|strong="G3754"\w*, \wj “\+w Woman|strong="G1135"\+w*, \+w believe|strong="G4100"\+w* \+w me|strong="G1473"\+w*, \+w the|strong="G1722"\+w* \+w hour|strong="G5610"\+w* \+w is|strong="G3588"\+w* \+w coming|strong="G2064"\+w* \+w when|strong="G3753"\+w* \+w neither|strong="G3777"\+w* \+w in|strong="G1722"\+w* \+w this|strong="G3778"\+w* \+w mountain|strong="G3735"\+w* \+w nor|strong="G3777"\+w* \+w in|strong="G1722"\+w* \+w Jerusalem|strong="G2414"\+w* \+w will|strong="G1473"\+w* \+w you|strong="G3754"\+w* \+w worship|strong="G4352"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w*. \wj* +\v 22 \wj \+w You|strong="G5210"\+w* \+w worship|strong="G4352"\+w* \+w that|strong="G3754"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w*. \+w We|strong="G2249"\+w* \+w worship|strong="G4352"\+w* \+w that|strong="G3754"\+w* \+w which|strong="G3739"\+w* \+w we|strong="G2249"\+w* \+w know|strong="G1492"\+w*; \+w for|strong="G3754"\+w* \+w salvation|strong="G4991"\+w* \+w is|strong="G1510"\+w* \+w from|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w Jews|strong="G2453"\+w*. \wj* +\v 23 \wj \+w But|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w hour|strong="G5610"\+w* \+w comes|strong="G2064"\+w*, \+w and|strong="G2532"\+w* \+w now|strong="G3568"\+w* \+w is|strong="G1510"\+w*, \+w when|strong="G3753"\+w* \+w the|strong="G1722"\+w* \+w true|strong="G3588"\+w* \+w worshipers|strong="G4353"\+w* \+w will|strong="G1510"\+w* \+w worship|strong="G4352"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w in|strong="G1722"\+w* \+w spirit|strong="G4151"\+w* \+w and|strong="G2532"\+w* truth, \+w for|strong="G1063"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w seeks|strong="G2212"\+w* \+w such|strong="G5108"\+w* \+w to|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w his|strong="G1722"\+w* \+w worshipers|strong="G4353"\+w*. \wj* +\v 24 \wj \+w God|strong="G2316"\+w* \+w is|strong="G3588"\+w* \+w spirit|strong="G4151"\+w*, \+w and|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w worship|strong="G4352"\+w* \+w him|strong="G3588"\+w* \+w must|strong="G1163"\+w* \+w worship|strong="G4352"\+w* \+w in|strong="G1722"\+w* \+w spirit|strong="G4151"\+w* \+w and|strong="G2532"\+w* truth.”\wj* +\p +\v 25 \w The|strong="G3588"\w* \w woman|strong="G1135"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w I|strong="G1473"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w Messiah|strong="G5547"\w* \w is|strong="G3588"\w* \w coming|strong="G2064"\w*, \w he|strong="G3754"\w* \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w called|strong="G3004"\w* \w Christ|strong="G5547"\w*.\f + \fr 4:25 \ft “Messiah” (Hebrew) and “Christ” (Greek) both mean “Anointed One”.\f* \w When|strong="G3752"\w* \w he|strong="G3754"\w* \w has|strong="G5547"\w* \w come|strong="G2064"\w*, \w he|strong="G3754"\w* \w will|strong="G1473"\w* declare \w to|strong="G3004"\w* \w us|strong="G3004"\w* \w all|strong="G3588"\w* \w things|strong="G3588"\w*.” +\p +\v 26 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w her|strong="G3588"\w*, \wj “\+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w he|strong="G3588"\+w*, \+w the|strong="G3588"\+w* \+w one|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w speaks|strong="G2980"\+w* \+w to|strong="G3004"\+w* \+w you|strong="G4771"\+w*.”\wj* +\p +\v 27 \w Just|strong="G2532"\w* \w then|strong="G2532"\w*, \w his|strong="G1909"\w* \w disciples|strong="G3101"\w* \w came|strong="G2064"\w*. \w They|strong="G2532"\w* \w marveled|strong="G2296"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w speaking|strong="G2980"\w* \w with|strong="G3326"\w* \w a|strong="G2532"\w* \w woman|strong="G1135"\w*; \w yet|strong="G2532"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w* \w said|strong="G3004"\w*, “\w What|strong="G5101"\w* \w are|strong="G3588"\w* \w you|strong="G3754"\w* \w looking|strong="G2212"\w* \w for|strong="G3754"\w*?” \w or|strong="G2228"\w*, “\w Why|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G3754"\w* \w speak|strong="G2980"\w* \w with|strong="G3326"\w* \w her|strong="G3754"\w*?” +\v 28 \w So|strong="G3767"\w* \w the|strong="G2532"\w* \w woman|strong="G1135"\w* left \w her|strong="G1519"\w* water pot, \w went|strong="G2532"\w* away \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w people|strong="G3767"\w*, +\v 29 “\w Come|strong="G1205"\w*, \w see|strong="G3708"\w* \w a|strong="G1510"\w* \w man|strong="G3778"\w* \w who|strong="G3739"\w* \w told|strong="G3004"\w* \w me|strong="G1473"\w* \w everything|strong="G3956"\w* \w that|strong="G3739"\w* \w I|strong="G1473"\w* \w have|strong="G1473"\w* \w done|strong="G4160"\w*. \w Can|strong="G3004"\w* \w this|strong="G3778"\w* \w be|strong="G1510"\w* \w the|strong="G3956"\w* \w Christ|strong="G5547"\w*?” +\v 30 \w They|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w*, \w and|strong="G2532"\w* \w were|strong="G3588"\w* \w coming|strong="G2064"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*. +\p +\v 31 \w In|strong="G1722"\w* \w the|strong="G1722"\w* \w meanwhile|strong="G3342"\w*, \w the|strong="G1722"\w* \w disciples|strong="G3101"\w* urged \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w Rabbi|strong="G4461"\w*, \w eat|strong="G2068"\w*.” +\p +\v 32 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w I|strong="G1473"\+w* \+w have|strong="G2192"\+w* \+w food|strong="G1035"\+w* \+w to|strong="G3004"\+w* \+w eat|strong="G2068"\+w* \+w that|strong="G3739"\+w* \+w you|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w* \+w about|strong="G3588"\+w*.”\wj* +\p +\v 33 \w The|strong="G4314"\w* \w disciples|strong="G3101"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w one|strong="G5100"\w* \w another|strong="G5100"\w*, “\w Has|strong="G5100"\w* \w anyone|strong="G5100"\w* \w brought|strong="G5342"\w* \w him|strong="G3588"\w* \w something|strong="G5100"\w* \w to|strong="G4314"\w* \w eat|strong="G2068"\w*?” +\p +\v 34 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2443"\w* \w them|strong="G3588"\w*, \wj “\+w My|strong="G1699"\+w* \+w food|strong="G1033"\+w* \+w is|strong="G1510"\+w* \+w to|strong="G2443"\+w* \+w do|strong="G4160"\+w* \+w the|strong="G2532"\+w* \+w will|strong="G2307"\+w* \+w of|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1473"\+w* \+w and|strong="G2532"\+w* \+w to|strong="G2443"\+w* \+w accomplish|strong="G5048"\+w* \+w his|strong="G4160"\+w* \+w work|strong="G2041"\+w*. \wj* +\v 35 \wj Don’\+w t|strong="G3588"\+w* \+w you|strong="G5210"\+w* \+w say|strong="G3004"\+w*, ‘\+w There|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w yet|strong="G2089"\+w* \+w four|strong="G5072"\+w* \+w months|strong="G5072"\+w* \+w until|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w harvest|strong="G2326"\+w*’? \+w Behold|strong="G2400"\+w*, \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w lift|strong="G1869"\+w* \+w up|strong="G1869"\+w* \+w your|strong="G2532"\+w* \+w eyes|strong="G3788"\+w* \+w and|strong="G2532"\+w* \+w look|strong="G2400"\+w* \+w at|strong="G4314"\+w* \+w the|strong="G2532"\+w* \+w fields|strong="G5561"\+w*, \+w that|strong="G3754"\+w* \+w they|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w white|strong="G3022"\+w* \+w for|strong="G3754"\+w* \+w harvest|strong="G2326"\+w* \+w already|strong="G2235"\+w*. \wj* +\v 36 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w reaps|strong="G2325"\+w* \+w receives|strong="G2983"\+w* \+w wages|strong="G3408"\+w* \+w and|strong="G2532"\+w* \+w gathers|strong="G4863"\+w* \+w fruit|strong="G2590"\+w* \+w to|strong="G1519"\+w* eternal \+w life|strong="G2222"\+w*, \+w that|strong="G2443"\+w* \+w both|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w sows|strong="G4687"\+w* \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w reaps|strong="G2325"\+w* \+w may|strong="G2532"\+w* \+w rejoice|strong="G5463"\+w* \+w together|strong="G4863"\+w*. \wj* +\v 37 \wj \+w For|strong="G1063"\+w* \+w in|strong="G1722"\+w* \+w this|strong="G3778"\+w* \+w the|strong="G1722"\+w* \+w saying|strong="G3056"\+w* \+w is|strong="G1510"\+w* \+w true|strong="G3588"\+w*, ‘\+w One|strong="G3588"\+w* \+w sows|strong="G4687"\+w*, \+w and|strong="G2532"\+w* \+w another|strong="G3588"\+w* \+w reaps|strong="G2325"\+w*.’ \wj* +\v 38 \wj \+w I|strong="G1473"\+w* \+w sent|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w to|strong="G1519"\+w* \+w reap|strong="G2325"\+w* \+w that|strong="G3739"\+w* \+w for|strong="G1519"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G5210"\+w* haven’\+w t|strong="G3588"\+w* \+w labored|strong="G2872"\+w*. \+w Others|strong="G3588"\+w* \+w have|strong="G2532"\+w* \+w labored|strong="G2872"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2532"\+w* \+w entered|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w their|strong="G2532"\+w* \+w labor|strong="G2873"\+w*.”\wj* +\p +\v 39 \w From|strong="G1537"\w* \w that|strong="G3754"\w* \w city|strong="G4172"\w* \w many|strong="G4183"\w* \w of|strong="G1537"\w* \w the|strong="G1519"\w* \w Samaritans|strong="G4541"\w* \w believed|strong="G4100"\w* \w in|strong="G1519"\w* \w him|strong="G3588"\w* \w because|strong="G3754"\w* \w of|strong="G1537"\w* \w the|strong="G1519"\w* \w word|strong="G3056"\w* \w of|strong="G1537"\w* \w the|strong="G1519"\w* \w woman|strong="G1135"\w*, \w who|strong="G3739"\w* \w testified|strong="G3140"\w*, “\w He|strong="G1161"\w* \w told|strong="G3004"\w* \w me|strong="G1473"\w* \w everything|strong="G3956"\w* \w that|strong="G3754"\w* \w I|strong="G1473"\w* \w have|strong="G1473"\w* \w done|strong="G4160"\w*.” +\v 40 \w So|strong="G3767"\w* \w when|strong="G5613"\w* \w the|strong="G2532"\w* \w Samaritans|strong="G4541"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \w they|strong="G2532"\w* \w begged|strong="G2065"\w* \w him|strong="G3588"\w* \w to|strong="G4314"\w* \w stay|strong="G3306"\w* \w with|strong="G4314"\w* \w them|strong="G3588"\w*. \w He|strong="G2532"\w* \w stayed|strong="G3306"\w* \w there|strong="G1563"\w* \w two|strong="G1417"\w* \w days|strong="G2250"\w*. +\v 41 \w Many|strong="G4183"\w* \w more|strong="G4119"\w* \w believed|strong="G4100"\w* \w because|strong="G1223"\w* \w of|strong="G3056"\w* \w his|strong="G1223"\w* \w word|strong="G3056"\w*. +\v 42 \w They|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w woman|strong="G1135"\w*, “\w Now|strong="G2532"\w* \w we|strong="G3754"\w* \w believe|strong="G4100"\w*, \w not|strong="G1510"\w* \w because|strong="G3754"\w* \w of|strong="G1223"\w* \w your|strong="G4674"\w* \w speaking|strong="G3004"\w*; \w for|strong="G1063"\w* \w we|strong="G3754"\w* \w have|strong="G2532"\w* heard \w for|strong="G1063"\w* ourselves, \w and|strong="G2532"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w this|strong="G3778"\w* \w is|strong="G1510"\w* \w indeed|strong="G2532"\w* \w the|strong="G2532"\w* Christ, \w the|strong="G2532"\w* \w Savior|strong="G4990"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w*.” +\p +\v 43 \w After|strong="G3326"\w* \w the|strong="G1519"\w* \w two|strong="G1417"\w* \w days|strong="G2250"\w* \w he|strong="G1161"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w from|strong="G1831"\w* \w there|strong="G1161"\w* \w and|strong="G1161"\w* \w went|strong="G1831"\w* \w into|strong="G1519"\w* \w Galilee|strong="G1056"\w*. +\v 44 \w For|strong="G1063"\w* \w Jesus|strong="G2424"\w* \w himself|strong="G2398"\w* \w testified|strong="G3140"\w* \w that|strong="G3754"\w* \w a|strong="G2192"\w* \w prophet|strong="G4396"\w* \w has|strong="G2192"\w* \w no|strong="G3756"\w* \w honor|strong="G5092"\w* \w in|strong="G1722"\w* \w his|strong="G1722"\w* \w own|strong="G2398"\w* \w country|strong="G3968"\w*. +\v 45 \w So|strong="G3767"\w* \w when|strong="G3753"\w* \w he|strong="G2532"\w* \w came|strong="G2064"\w* \w into|strong="G1519"\w* \w Galilee|strong="G1056"\w*, \w the|strong="G1722"\w* \w Galileans|strong="G1057"\w* \w received|strong="G1209"\w* \w him|strong="G3588"\w*, \w having|strong="G2532"\w* \w seen|strong="G3708"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w things|strong="G3956"\w* \w that|strong="G3739"\w* \w he|strong="G2532"\w* \w did|strong="G4160"\w* \w in|strong="G1722"\w* \w Jerusalem|strong="G2414"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w feast|strong="G1859"\w*, \w for|strong="G1063"\w* \w they|strong="G2532"\w* \w also|strong="G2532"\w* \w went|strong="G2064"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w feast|strong="G1859"\w*. +\v 46 \w Jesus|strong="G1510"\w* \w came|strong="G2064"\w* \w therefore|strong="G3767"\w* \w again|strong="G3825"\w* \w to|strong="G1519"\w* \w Cana|strong="G2580"\w* \w of|strong="G5207"\w* \w Galilee|strong="G1056"\w*, \w where|strong="G3699"\w* \w he|strong="G2532"\w* \w made|strong="G4160"\w* \w the|strong="G1722"\w* \w water|strong="G5204"\w* \w into|strong="G1519"\w* \w wine|strong="G3631"\w*. \w There|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w certain|strong="G2532"\w* nobleman \w whose|strong="G3739"\w* \w son|strong="G5207"\w* \w was|strong="G1510"\w* sick \w at|strong="G1722"\w* \w Capernaum|strong="G2584"\w*. +\v 47 \w When|strong="G2532"\w* \w he|strong="G2532"\w* heard \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* \w come|strong="G2240"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w Judea|strong="G2449"\w* \w into|strong="G1519"\w* \w Galilee|strong="G1056"\w*, \w he|strong="G2532"\w* \w went|strong="G2597"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w begged|strong="G2065"\w* \w him|strong="G3588"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w would|strong="G3195"\w* \w come|strong="G2240"\w* \w down|strong="G2597"\w* \w and|strong="G2532"\w* \w heal|strong="G2390"\w* \w his|strong="G1519"\w* \w son|strong="G5207"\w*, \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w at|strong="G1519"\w* \w the|strong="G2532"\w* \w point|strong="G3195"\w* \w of|strong="G1537"\w* death. +\v 48 \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \wj “\+w Unless|strong="G1437"\+w* \+w you|strong="G1437"\+w* \+w see|strong="G3708"\+w* \+w signs|strong="G4592"\+w* \+w and|strong="G2532"\+w* \+w wonders|strong="G5059"\+w*, \+w you|strong="G1437"\+w* \+w will|strong="G2532"\+w* \+w in|strong="G2532"\+w* \+w no|strong="G3756"\+w* way \+w believe|strong="G4100"\+w*.”\wj* +\p +\v 49 \w The|strong="G4314"\w* nobleman \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w Sir|strong="G2962"\w*, \w come|strong="G2597"\w* \w down|strong="G2597"\w* \w before|strong="G4250"\w* \w my|strong="G1473"\w* \w child|strong="G3813"\w* dies.” +\p +\v 50 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Go|strong="G4198"\+w* \+w your|strong="G2532"\+w* \+w way|strong="G4198"\+w*. \+w Your|strong="G2532"\+w* \+w son|strong="G5207"\+w* \+w lives|strong="G2198"\+w*.”\wj* \w The|strong="G2532"\w* \w man|strong="G3739"\w* \w believed|strong="G4100"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w that|strong="G3739"\w* \w Jesus|strong="G2424"\w* \w spoke|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w went|strong="G4198"\w* \w his|strong="G2532"\w* \w way|strong="G4198"\w*. +\v 51 \w As|strong="G1161"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w going|strong="G2597"\w* \w down|strong="G2597"\w*, \w his|strong="G2532"\w* \w servants|strong="G1401"\w* \w met|strong="G5221"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w reported|strong="G3004"\w*, \w saying|strong="G3004"\w* “\w Your|strong="G2532"\w* \w child|strong="G3816"\w* \w lives|strong="G2198"\w*!” +\v 52 \w So|strong="G3767"\w* \w he|strong="G3739"\w* \w inquired|strong="G4441"\w* \w of|strong="G3844"\w* \w them|strong="G3588"\w* \w the|strong="G1722"\w* \w hour|strong="G5610"\w* \w when|strong="G1722"\w* \w he|strong="G3739"\w* \w began|strong="G2192"\w* \w to|strong="G3004"\w* \w get|strong="G2192"\w* \w better|strong="G2866"\w*. \w They|strong="G3588"\w* \w said|strong="G3004"\w* \w therefore|strong="G3767"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Yesterday|strong="G5504"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w seventh|strong="G1442"\w* \w hour|strong="G5610"\w*,\f + \fr 4:52 \ft 1:00 p.m.\f* \w the|strong="G1722"\w* \w fever|strong="G4446"\w* left \w him|strong="G3588"\w*.” +\v 53 \w So|strong="G3767"\w* \w the|strong="G1722"\w* \w father|strong="G3962"\w* \w knew|strong="G1097"\w* \w that|strong="G3754"\w* \w it|strong="G2532"\w* \w was|strong="G3588"\w* \w at|strong="G1722"\w* \w that|strong="G3754"\w* \w hour|strong="G5610"\w* \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Your|strong="G3650"\+w* \+w son|strong="G5207"\+w* \+w lives|strong="G2198"\+w*.”\wj* \w He|strong="G2532"\w* \w believed|strong="G4100"\w*, \w as|strong="G1722"\w* \w did|strong="G2532"\w* \w his|strong="G1722"\w* \w whole|strong="G3650"\w* \w house|strong="G3614"\w*. +\v 54 \w This|strong="G3778"\w* \w is|strong="G3588"\w* \w again|strong="G3825"\w* \w the|strong="G1519"\w* \w second|strong="G1208"\w* \w sign|strong="G4592"\w* \w that|strong="G3588"\w* \w Jesus|strong="G2424"\w* \w did|strong="G4160"\w*, \w having|strong="G4160"\w* \w come|strong="G2064"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w Judea|strong="G2449"\w* \w into|strong="G1519"\w* \w Galilee|strong="G1056"\w*. +\c 5 +\p +\v 1 \w After|strong="G3326"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w there|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w feast|strong="G1859"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w*, \w and|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w went|strong="G2424"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w*. +\v 2 \w Now|strong="G1161"\w* \w in|strong="G1722"\w* \w Jerusalem|strong="G2414"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w sheep|strong="G4262"\w* gate, \w there|strong="G1161"\w* \w is|strong="G1510"\w* \w a|strong="G2192"\w* \w pool|strong="G2861"\w*, \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w called|strong="G3004"\w* \w in|strong="G1722"\w* \w Hebrew|strong="G1447"\w*, “Bethesda”, \w having|strong="G2192"\w* \w five|strong="G4002"\w* \w porches|strong="G4745"\w*. +\v 3 \w In|strong="G1722"\w* \w these|strong="G3778"\w* \w lay|strong="G2621"\w* \w a|strong="G1722"\w* \w great|strong="G4128"\w* \w multitude|strong="G4128"\w* \w of|strong="G1722"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w sick|strong="G2621"\w*, \w blind|strong="G5185"\w*, \w lame|strong="G5560"\w*, \w or|strong="G3588"\w* paralyzed, waiting \w for|strong="G1722"\w* \w the|strong="G1722"\w* moving \w of|strong="G1722"\w* \w the|strong="G1722"\w* water; +\v 4 for an angel went down at certain times into the pool and stirred up the water. Whoever stepped in first after the stirring of the water was healed of whatever disease he had.\f + \fr 5:4 \ft NU omits from “waiting” in verse 3 to the end of verse 4.\f* +\v 5 \w A|strong="G2192"\w* \w certain|strong="G5100"\w* \w man|strong="G5100"\w* \w was|strong="G1510"\w* \w there|strong="G1563"\w* \w who|strong="G3588"\w* \w had|strong="G2192"\w* \w been|strong="G1510"\w* sick \w for|strong="G1161"\w* \w thirty-eight|strong="G5144"\w* \w years|strong="G2094"\w*. +\v 6 \w When|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w saw|strong="G3708"\w* \w him|strong="G3588"\w* \w lying|strong="G2621"\w* \w there|strong="G2532"\w*, \w and|strong="G2532"\w* \w knew|strong="G1097"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w had|strong="G2192"\w* \w been|strong="G1096"\w* \w sick|strong="G2621"\w* \w for|strong="G3754"\w* \w a|strong="G2192"\w* \w long|strong="G4183"\w* \w time|strong="G5550"\w*, \w he|strong="G2532"\w* \w asked|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w Do|strong="G1096"\+w* \+w you|strong="G3754"\+w* \+w want|strong="G2309"\+w* \+w to|strong="G2532"\+w* \+w be|strong="G1096"\+w* \+w made|strong="G1096"\+w* \+w well|strong="G2532"\+w*?”\wj* +\p +\v 7 \w The|strong="G1722"\w* sick \w man|strong="G3739"\w* answered \w him|strong="G3588"\w*, “\w Sir|strong="G2962"\w*, \w I|strong="G1473"\w* \w have|strong="G2192"\w* \w no|strong="G3756"\w* \w one|strong="G3739"\w* \w to|strong="G1519"\w* \w put|strong="G1519"\w* \w me|strong="G1473"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w pool|strong="G2861"\w* \w when|strong="G3752"\w* \w the|strong="G1722"\w* \w water|strong="G5204"\w* \w is|strong="G3588"\w* \w stirred|strong="G5015"\w* \w up|strong="G1519"\w*, \w but|strong="G1161"\w* \w while|strong="G1722"\w* \w I|strong="G1473"\w*’m \w coming|strong="G2064"\w*, \w another|strong="G3739"\w* \w steps|strong="G2597"\w* \w down|strong="G2597"\w* \w before|strong="G4253"\w* \w me|strong="G1473"\w*.” +\p +\v 8 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Arise|strong="G1453"\+w*, \+w take|strong="G2532"\+w* \+w up|strong="G1453"\+w* \+w your|strong="G2532"\+w* \+w mat|strong="G2895"\+w*, \+w and|strong="G2532"\+w* \+w walk|strong="G4043"\+w*.”\wj* +\p +\v 9 \w Immediately|strong="G2112"\w*, \w the|strong="G1722"\w* \w man|strong="G1565"\w* \w was|strong="G1510"\w* \w made|strong="G1096"\w* \w well|strong="G2532"\w*, \w and|strong="G2532"\w* \w took|strong="G1096"\w* \w up|strong="G2532"\w* \w his|strong="G1722"\w* \w mat|strong="G2895"\w* \w and|strong="G2532"\w* \w walked|strong="G4043"\w*. +\p \w Now|strong="G1161"\w* \w that|strong="G3588"\w* \w day|strong="G2250"\w* \w was|strong="G1510"\w* \w a|strong="G1096"\w* \w Sabbath|strong="G4521"\w*. +\v 10 \w So|strong="G3767"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w was|strong="G1510"\w* \w cured|strong="G2323"\w*, “\w It|strong="G2532"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w Sabbath|strong="G4521"\w*. \w It|strong="G2532"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w lawful|strong="G1832"\w* \w for|strong="G2532"\w* \w you|strong="G4771"\w* \w to|strong="G2532"\w* carry \w the|strong="G2532"\w* \w mat|strong="G2895"\w*.” +\p +\v 11 \w He|strong="G2532"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, “\w He|strong="G2532"\w* \w who|strong="G3588"\w* \w made|strong="G4160"\w* \w me|strong="G1473"\w* \w well|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w*, \wj ‘\+w Take|strong="G1161"\+w* \+w up|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w mat|strong="G2895"\+w* \+w and|strong="G2532"\+w* \+w walk|strong="G4043"\+w*.’\wj* ” +\p +\v 12 \w Then|strong="G3767"\w* \w they|strong="G2532"\w* \w asked|strong="G2065"\w* \w him|strong="G3588"\w*, “\w Who|strong="G5101"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w man|strong="G5101"\w* \w who|strong="G5101"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w you|strong="G4771"\w*, \wj ‘\+w Take|strong="G2532"\+w* \+w up|strong="G2532"\+w* \+w your|strong="G2532"\+w* mat \+w and|strong="G2532"\+w* \+w walk|strong="G4043"\+w*’\wj*?” +\p +\v 13 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w who|strong="G5101"\w* \w was|strong="G1510"\w* \w healed|strong="G2390"\w* didn’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w who|strong="G5101"\w* \w it|strong="G1161"\w* \w was|strong="G1510"\w*, \w for|strong="G1063"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* withdrawn, \w a|strong="G1722"\w* \w crowd|strong="G3793"\w* \w being|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w place|strong="G5117"\w*. +\p +\v 14 \w Afterward|strong="G3326"\w* \w Jesus|strong="G2424"\w* \w found|strong="G2147"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w*, \wj “\+w Behold|strong="G2396"\+w*, \+w you|strong="G4771"\+w* \+w are|strong="G3588"\+w* \+w made|strong="G1096"\+w* \+w well|strong="G2532"\+w*. Sin \+w no|strong="G3361"\+w* \+w more|strong="G3371"\+w*, \+w so|strong="G2443"\+w* \+w that|strong="G2443"\+w* \+w nothing|strong="G3361"\+w* \+w worse|strong="G5501"\+w* \+w happens|strong="G1096"\+w* \+w to|strong="G2443"\+w* \+w you|strong="G4771"\+w*.” \wj* +\p +\v 15 \w The|strong="G2532"\w* \w man|strong="G4160"\w* \w went|strong="G2424"\w* away, \w and|strong="G2532"\w* \w told|strong="G3004"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w that|strong="G3754"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w Jesus|strong="G2424"\w* \w who|strong="G3588"\w* \w had|strong="G2424"\w* \w made|strong="G4160"\w* \w him|strong="G3588"\w* \w well|strong="G2532"\w*. +\v 16 \w For|strong="G3754"\w* \w this|strong="G3778"\w* \w cause|strong="G4160"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w* \w persecuted|strong="G1377"\w* \w Jesus|strong="G2424"\w* \w and|strong="G2532"\w* sought \w to|strong="G2532"\w* kill \w him|strong="G3588"\w*, \w because|strong="G3754"\w* \w he|strong="G2532"\w* \w did|strong="G4160"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w Sabbath|strong="G4521"\w*. +\v 17 \w But|strong="G1161"\w* Jesus answered \w them|strong="G3588"\w*, \wj “\+w My|strong="G1473"\+w* \+w Father|strong="G3962"\+w* \+w is|strong="G3588"\+w* \+w still|strong="G2193"\+w* \+w working|strong="G2038"\+w*, \+w so|strong="G1161"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* \+w working|strong="G2038"\+w*, too.”\wj* +\p +\v 18 \w For|strong="G3754"\w* \w this|strong="G3778"\w* \w cause|strong="G4160"\w* \w therefore|strong="G3767"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w sought|strong="G2212"\w* \w all|strong="G2532"\w* \w the|strong="G2532"\w* \w more|strong="G3123"\w* \w to|strong="G2532"\w* kill \w him|strong="G3588"\w*, \w because|strong="G3754"\w* \w he|strong="G2532"\w* \w not|strong="G3756"\w* \w only|strong="G3440"\w* \w broke|strong="G3089"\w* \w the|strong="G2532"\w* \w Sabbath|strong="G4521"\w*, \w but|strong="G2532"\w* \w also|strong="G2532"\w* \w called|strong="G3004"\w* \w God|strong="G2316"\w* \w his|strong="G1438"\w* \w own|strong="G2398"\w* \w Father|strong="G3962"\w*, \w making|strong="G4160"\w* \w himself|strong="G1438"\w* \w equal|strong="G2470"\w* \w with|strong="G1223"\w* \w God|strong="G2316"\w*. +\v 19 \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “Most \+w certainly|strong="G1063"\+w*, \+w I|strong="G3739"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w can|strong="G1410"\+w* \+w do|strong="G4160"\+w* \+w nothing|strong="G3762"\+w* \+w of|strong="G5207"\+w* \+w himself|strong="G1438"\+w*, \+w but|strong="G2532"\+w* \+w what|strong="G3739"\+w* \+w he|strong="G2532"\+w* sees \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w doing|strong="G4160"\+w*. \+w For|strong="G1063"\+w* \+w whatever|strong="G3739"\+w* \+w things|strong="G3778"\+w* \+w he|strong="G2532"\+w* \+w does|strong="G4160"\+w*, \+w these|strong="G3778"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w also|strong="G2532"\+w* \+w does|strong="G4160"\+w* \+w likewise|strong="G3668"\+w*. \wj* +\v 20 \wj \+w For|strong="G1063"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w has|strong="G3962"\+w* affection \+w for|strong="G1063"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w*, \+w and|strong="G2532"\+w* \+w shows|strong="G1166"\+w* \+w him|strong="G3588"\+w* \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w that|strong="G2443"\+w* \+w he|strong="G2532"\+w* himself \+w does|strong="G4160"\+w*. \+w He|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w show|strong="G1166"\+w* \+w him|strong="G3588"\+w* \+w greater|strong="G3173"\+w* \+w works|strong="G2041"\+w* \+w than|strong="G3173"\+w* \+w these|strong="G3778"\+w*, \+w that|strong="G2443"\+w* \+w you|strong="G5210"\+w* \+w may|strong="G2532"\+w* \+w marvel|strong="G2296"\+w*. \wj* +\v 21 \wj \+w For|strong="G1063"\+w* \+w as|strong="G5618"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w raises|strong="G1453"\+w* \+w the|strong="G2532"\+w* \+w dead|strong="G3498"\+w* \+w and|strong="G2532"\+w* \+w gives|strong="G2227"\+w* \+w them|strong="G3588"\+w* \+w life|strong="G2227"\+w*, \+w even|strong="G2532"\+w* \+w so|strong="G3779"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w also|strong="G2532"\+w* \+w gives|strong="G2227"\+w* \+w life|strong="G2227"\+w* \+w to|strong="G2532"\+w* \+w whom|strong="G3739"\+w* \+w he|strong="G2532"\+w* \+w desires|strong="G2309"\+w*. \wj* +\v 22 \wj \+w For|strong="G1063"\+w* \+w the|strong="G3956"\+w* \+w Father|strong="G3962"\+w* \+w judges|strong="G2919"\+w* \+w no|strong="G3762"\+w* \+w one|strong="G3762"\+w*, \+w but|strong="G1063"\+w* \+w he|strong="G3588"\+w* \+w has|strong="G3962"\+w* \+w given|strong="G1325"\+w* \+w all|strong="G3956"\+w* \+w judgment|strong="G2920"\+w* \+w to|strong="G1325"\+w* \+w the|strong="G3956"\+w* \+w Son|strong="G5207"\+w*, \wj* +\v 23 \wj \+w that|strong="G2443"\+w* \+w all|strong="G3956"\+w* \+w may|strong="G2443"\+w* \+w honor|strong="G5091"\+w* \+w the|strong="G3956"\+w* \+w Son|strong="G5207"\+w*, \+w even|strong="G2531"\+w* \+w as|strong="G2531"\+w* \+w they|strong="G3588"\+w* \+w honor|strong="G5091"\+w* \+w the|strong="G3956"\+w* \+w Father|strong="G3962"\+w*. \+w He|strong="G3588"\+w* \+w who|strong="G3588"\+w* doesn’\+w t|strong="G3588"\+w* \+w honor|strong="G5091"\+w* \+w the|strong="G3956"\+w* \+w Son|strong="G5207"\+w* doesn’\+w t|strong="G3588"\+w* \+w honor|strong="G5091"\+w* \+w the|strong="G3956"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3588"\+w* \+w sent|strong="G3992"\+w* \+w him|strong="G3588"\+w*.\wj* +\p +\v 24 \wj “\+w Most|strong="G1537"\+w* \+w certainly|strong="G2192"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* hears \+w my|strong="G1473"\+w* \+w word|strong="G3056"\+w* \+w and|strong="G2532"\+w* \+w believes|strong="G4100"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1473"\+w* \+w has|strong="G2192"\+w* eternal \+w life|strong="G2222"\+w*, \+w and|strong="G2532"\+w* doesn’\+w t|strong="G3588"\+w* \+w come|strong="G2064"\+w* \+w into|strong="G1519"\+w* \+w judgment|strong="G2920"\+w*, \+w but|strong="G2532"\+w* \+w has|strong="G2192"\+w* \+w passed|strong="G3327"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w death|strong="G2288"\+w* \+w into|strong="G1519"\+w* \+w life|strong="G2222"\+w*. \wj* +\v 25 \wj \+w Most|strong="G2316"\+w* \+w certainly|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w the|strong="G2532"\+w* \+w hour|strong="G5610"\+w* \+w comes|strong="G2064"\+w*, \+w and|strong="G2532"\+w* \+w now|strong="G3568"\+w* \+w is|strong="G1510"\+w*, \+w when|strong="G3753"\+w* \+w the|strong="G2532"\+w* \+w dead|strong="G3498"\+w* \+w will|strong="G2316"\+w* \+w hear|strong="G5456"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w God|strong="G2316"\+w*’s \+w voice|strong="G5456"\+w*; \+w and|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w hear|strong="G5456"\+w* \+w will|strong="G2316"\+w* \+w live|strong="G2198"\+w*. \wj* +\v 26 \wj \+w For|strong="G1063"\+w* \+w as|strong="G5618"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w has|strong="G2192"\+w* \+w life|strong="G2222"\+w* \+w in|strong="G1722"\+w* \+w himself|strong="G1438"\+w*, \+w even|strong="G2532"\+w* \+w so|strong="G3779"\+w* \+w he|strong="G2532"\+w* \+w gave|strong="G1325"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w also|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w life|strong="G2222"\+w* \+w in|strong="G1722"\+w* \+w himself|strong="G1438"\+w*. \wj* +\v 27 \wj \+w He|strong="G2532"\+w* \+w also|strong="G2532"\+w* \+w gave|strong="G1325"\+w* \+w him|strong="G1325"\+w* \+w authority|strong="G1849"\+w* \+w to|strong="G2532"\+w* \+w execute|strong="G4160"\+w* \+w judgment|strong="G2920"\+w*, \+w because|strong="G3754"\+w* \+w he|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w a|strong="G2532"\+w* \+w son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w man|strong="G5207"\+w*. \wj* +\v 28 \wj Don’\+w t|strong="G3588"\+w* \+w marvel|strong="G2296"\+w* \+w at|strong="G1722"\+w* \+w this|strong="G3778"\+w*, \+w for|strong="G3754"\+w* \+w the|strong="G1722"\+w* \+w hour|strong="G5610"\+w* \+w comes|strong="G2064"\+w* \+w in|strong="G1722"\+w* \+w which|strong="G3739"\+w* \+w all|strong="G3956"\+w* \+w who|strong="G3739"\+w* \+w are|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w tombs|strong="G3419"\+w* \+w will|strong="G3739"\+w* \+w hear|strong="G5456"\+w* \+w his|strong="G3956"\+w* \+w voice|strong="G5456"\+w* \wj* +\v 29 \wj \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w come|strong="G1607"\+w* \+w out|strong="G1607"\+w*; \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w have|strong="G2532"\+w* \+w done|strong="G4160"\+w* \+w good|strong="G3588"\+w*, \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* resurrection \+w of|strong="G2532"\+w* \+w life|strong="G2222"\+w*; \+w and|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w have|strong="G2532"\+w* \+w done|strong="G4160"\+w* \+w evil|strong="G5337"\+w*, \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* resurrection \+w of|strong="G2532"\+w* \+w judgment|strong="G2920"\+w*. \wj* +\v 30 \wj \+w I|strong="G1473"\+w* \+w can|strong="G1410"\+w* \+w of|strong="G2532"\+w* \+w myself|strong="G1683"\+w* \+w do|strong="G4160"\+w* \+w nothing|strong="G3762"\+w*. \+w As|strong="G2531"\+w* \+w I|strong="G1473"\+w* hear, \+w I|strong="G1473"\+w* \+w judge|strong="G2919"\+w*; \+w and|strong="G2532"\+w* \+w my|strong="G1699"\+w* \+w judgment|strong="G2920"\+w* \+w is|strong="G1510"\+w* \+w righteous|strong="G1342"\+w*, \+w because|strong="G3754"\+w* \+w I|strong="G1473"\+w* don’\+w t|strong="G3588"\+w* \+w seek|strong="G2212"\+w* \+w my|strong="G1699"\+w* \+w own|strong="G1699"\+w* \+w will|strong="G2307"\+w*, \+w but|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w will|strong="G2307"\+w* \+w of|strong="G2532"\+w* \+w my|strong="G1699"\+w* Father \+w who|strong="G3588"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1473"\+w*.\wj* +\p +\v 31 \wj “\+w If|strong="G1437"\+w* \+w I|strong="G1473"\+w* \+w testify|strong="G3140"\+w* \+w about|strong="G4012"\+w* \+w myself|strong="G1683"\+w*, \+w my|strong="G1473"\+w* \+w witness|strong="G3140"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* valid. \wj* +\v 32 \wj \+w It|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w another|strong="G3739"\+w* \+w who|strong="G3739"\+w* \+w testifies|strong="G3140"\+w* \+w about|strong="G4012"\+w* \+w me|strong="G1473"\+w*. \+w I|strong="G1473"\+w* \+w know|strong="G1492"\+w* \+w that|strong="G3754"\+w* \+w the|strong="G2532"\+w* \+w testimony|strong="G3141"\+w* \+w which|strong="G3739"\+w* \+w he|strong="G2532"\+w* \+w testifies|strong="G3140"\+w* \+w about|strong="G4012"\+w* \+w me|strong="G1473"\+w* \+w is|strong="G1510"\+w* \+w true|strong="G3588"\+w*. \wj* +\v 33 \wj \+w You|strong="G5210"\+w* \+w have|strong="G2532"\+w* \+w sent|strong="G2532"\+w* \+w to|strong="G4314"\+w* \+w John|strong="G2491"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w has|strong="G2532"\+w* \+w testified|strong="G3140"\+w* \+w to|strong="G4314"\+w* \+w the|strong="G2532"\+w* truth. \wj* +\v 34 \wj \+w But|strong="G1161"\+w* \+w the|strong="G1161"\+w* \+w testimony|strong="G3141"\+w* \+w which|strong="G3588"\+w* \+w I|strong="G1473"\+w* \+w receive|strong="G2983"\+w* \+w is|strong="G3588"\+w* \+w not|strong="G3756"\+w* \+w from|strong="G3844"\+w* \+w man|strong="G3778"\+w*. \+w However|strong="G1161"\+w*, \+w I|strong="G1473"\+w* \+w say|strong="G3004"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* \+w that|strong="G2443"\+w* \+w you|strong="G5210"\+w* \+w may|strong="G2443"\+w* \+w be|strong="G3756"\+w* \+w saved|strong="G4982"\+w*. \wj* +\v 35 \wj \+w He|strong="G2532"\+w* \+w was|strong="G1510"\+w* \+w the|strong="G1722"\+w* \+w burning|strong="G2545"\+w* \+w and|strong="G2532"\+w* \+w shining|strong="G5316"\+w* \+w lamp|strong="G3088"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w were|strong="G1510"\+w* \+w willing|strong="G2309"\+w* \+w to|strong="G4314"\+w* \+w rejoice|strong="G2532"\+w* \+w for|strong="G4314"\+w* \+w a|strong="G2532"\+w* \+w while|strong="G1722"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G1722"\+w* \+w light|strong="G5457"\+w*. \wj* +\v 36 \wj \+w But|strong="G1161"\+w* \+w the|strong="G1161"\+w* \+w testimony|strong="G3141"\+w* \+w which|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G2192"\+w* \+w is|strong="G3588"\+w* \+w greater|strong="G3173"\+w* \+w than|strong="G3173"\+w* \+w that|strong="G3754"\+w* \+w of|strong="G4012"\+w* \+w John|strong="G2491"\+w*; \+w for|strong="G1063"\+w* \+w the|strong="G1161"\+w* \+w works|strong="G2041"\+w* \+w which|strong="G3739"\+w* \+w the|strong="G1161"\+w* \+w Father|strong="G3962"\+w* \+w gave|strong="G1325"\+w* \+w me|strong="G1325"\+w* \+w to|strong="G2443"\+w* \+w accomplish|strong="G5048"\+w*, \+w the|strong="G1161"\+w* \+w very|strong="G3588"\+w* \+w works|strong="G2041"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w do|strong="G4160"\+w*, \+w testify|strong="G3140"\+w* \+w about|strong="G4012"\+w* \+w me|strong="G1325"\+w*, \+w that|strong="G3754"\+w* \+w the|strong="G1161"\+w* \+w Father|strong="G3962"\+w* \+w has|strong="G2192"\+w* sent \+w me|strong="G1325"\+w*. \wj* +\v 37 \wj \+w The|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w himself|strong="G1565"\+w*, \+w who|strong="G3588"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1473"\+w*, \+w has|strong="G3962"\+w* \+w testified|strong="G3140"\+w* \+w about|strong="G4012"\+w* \+w me|strong="G1473"\+w*. \+w You|strong="G3708"\+w* \+w have|strong="G2532"\+w* \+w neither|strong="G3777"\+w* heard \+w his|strong="G4012"\+w* \+w voice|strong="G5456"\+w* \+w at|strong="G4012"\+w* \+w any|strong="G4455"\+w* \+w time|strong="G4455"\+w*, \+w nor|strong="G3777"\+w* \+w seen|strong="G3708"\+w* \+w his|strong="G4012"\+w* \+w form|strong="G1491"\+w*. \wj* +\v 38 \wj \+w You|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* \+w have|strong="G2192"\+w* \+w his|strong="G1722"\+w* \+w word|strong="G3056"\+w* \+w living|strong="G2192"\+w* \+w in|strong="G1722"\+w* \+w you|strong="G5210"\+w*, \+w because|strong="G3754"\+w* \+w you|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* \+w believe|strong="G4100"\+w* \+w him|strong="G3588"\+w* \+w whom|strong="G3739"\+w* \+w he|strong="G2532"\+w* \+w sent|strong="G2532"\+w*.\wj* +\p +\v 39 \wj “\+w You|strong="G5210"\+w* \+w search|strong="G2045"\+w* \+w the|strong="G1722"\+w* \+w Scriptures|strong="G1124"\+w*, \+w because|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w think|strong="G1380"\+w* \+w that|strong="G3754"\+w* \+w in|strong="G1722"\+w* \+w them|strong="G3588"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2192"\+w* eternal \+w life|strong="G2222"\+w*; \+w and|strong="G2532"\+w* \+w these|strong="G4012"\+w* \+w are|strong="G1510"\+w* \+w they|strong="G2532"\+w* \+w which|strong="G3588"\+w* \+w testify|strong="G3140"\+w* \+w about|strong="G4012"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 40 \wj \+w Yet|strong="G2532"\+w* \+w you|strong="G2532"\+w* \+w will|strong="G2309"\+w* \+w not|strong="G3756"\+w* \+w come|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w me|strong="G1473"\+w*, \+w that|strong="G2443"\+w* \+w you|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w life|strong="G2222"\+w*. \wj* +\v 41 \wj \+w I|strong="G2983"\+w* don’t \+w receive|strong="G2983"\+w* \+w glory|strong="G1391"\+w* \+w from|strong="G3844"\+w* men. \wj* +\v 42 \wj \+w But|strong="G2316"\+w* \+w I|strong="G3754"\+w* \+w know|strong="G1097"\+w* \+w you|strong="G5210"\+w*, \+w that|strong="G3754"\+w* \+w you|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* \+w have|strong="G2192"\+w* \+w God|strong="G2316"\+w*’\+w s|strong="G2192"\+w* love \+w in|strong="G1722"\+w* \+w yourselves|strong="G1438"\+w*. \wj* +\v 43 \wj \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w Father|strong="G3962"\+w*’s \+w name|strong="G3686"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G1437"\+w* don’\+w t|strong="G3588"\+w* \+w receive|strong="G2983"\+w* \+w me|strong="G1473"\+w*. \+w If|strong="G1437"\+w* \+w another|strong="G3588"\+w* \+w comes|strong="G2064"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G1722"\+w* \+w own|strong="G2398"\+w* \+w name|strong="G3686"\+w*, \+w you|strong="G1437"\+w* \+w will|strong="G2532"\+w* \+w receive|strong="G2983"\+w* \+w him|strong="G3588"\+w*. \wj* +\v 44 \wj \+w How|strong="G4459"\+w* \+w can|strong="G1410"\+w* \+w you|strong="G5210"\+w* \+w believe|strong="G4100"\+w*, \+w who|strong="G3588"\+w* \+w receive|strong="G2983"\+w* \+w glory|strong="G1391"\+w* \+w from|strong="G3844"\+w* \+w one|strong="G3588"\+w* \+w another|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* \+w seek|strong="G2212"\+w* \+w the|strong="G2532"\+w* \+w glory|strong="G1391"\+w* \+w that|strong="G3588"\+w* \+w comes|strong="G2532"\+w* \+w from|strong="G3844"\+w* \+w the|strong="G2532"\+w* \+w only|strong="G3441"\+w* \+w God|strong="G2316"\+w*?\wj* +\p +\v 45 \wj “Don’\+w t|strong="G3588"\+w* \+w think|strong="G1380"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G1510"\+w* \+w accuse|strong="G2723"\+w* \+w you|strong="G5210"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w Father|strong="G3962"\+w*. \+w There|strong="G3754"\+w* \+w is|strong="G1510"\+w* \+w one|strong="G3739"\+w* \+w who|strong="G3739"\+w* \+w accuses|strong="G2723"\+w* \+w you|strong="G5210"\+w*, \+w even|strong="G1519"\+w* \+w Moses|strong="G3475"\+w*, \+w on|strong="G1519"\+w* \+w whom|strong="G3739"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G1473"\+w* \+w set|strong="G1679"\+w* \+w your|strong="G3588"\+w* \+w hope|strong="G1679"\+w*. \wj* +\v 46 \wj \+w For|strong="G1063"\+w* \+w if|strong="G1487"\+w* \+w you|strong="G1487"\+w* \+w believed|strong="G4100"\+w* \+w Moses|strong="G3475"\+w*, \+w you|strong="G1487"\+w* \+w would|strong="G4100"\+w* \+w believe|strong="G4100"\+w* \+w me|strong="G1473"\+w*; \+w for|strong="G1063"\+w* \+w he|strong="G1565"\+w* \+w wrote|strong="G1125"\+w* \+w about|strong="G4012"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 47 \wj \+w But|strong="G1161"\+w* \+w if|strong="G1487"\+w* \+w you|strong="G1487"\+w* don’\+w t|strong="G3588"\+w* \+w believe|strong="G4100"\+w* \+w his|strong="G1565"\+w* \+w writings|strong="G1121"\+w*, \+w how|strong="G4459"\+w* \+w will|strong="G4100"\+w* \+w you|strong="G1487"\+w* \+w believe|strong="G4100"\+w* \+w my|strong="G1699"\+w* \+w words|strong="G4487"\+w*?”\wj* +\c 6 +\p +\v 1 \w After|strong="G3326"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w Jesus|strong="G2424"\w* \w went|strong="G2424"\w* \w away|strong="G3326"\w* \w to|strong="G2424"\w* \w the|strong="G3588"\w* \w other|strong="G4008"\w* \w side|strong="G4008"\w* \w of|strong="G2424"\w* \w the|strong="G3588"\w* \w sea|strong="G2281"\w* \w of|strong="G2424"\w* \w Galilee|strong="G1056"\w*, \w which|strong="G3588"\w* \w is|strong="G3588"\w* also \w called|strong="G3778"\w* \w the|strong="G3588"\w* \w Sea|strong="G2281"\w* \w of|strong="G2424"\w* \w Tiberias|strong="G5085"\w*. +\v 2 \w A|strong="G1909"\w* \w great|strong="G4183"\w* \w multitude|strong="G3793"\w* followed \w him|strong="G3588"\w*, \w because|strong="G3754"\w* \w they|strong="G1161"\w* \w saw|strong="G3708"\w* \w his|strong="G1909"\w* \w signs|strong="G4592"\w* \w which|strong="G3739"\w* \w he|strong="G1161"\w* \w did|strong="G4160"\w* \w on|strong="G1909"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w were|strong="G3588"\w* sick. +\v 3 \w Jesus|strong="G2424"\w* \w went|strong="G2424"\w* \w up|strong="G1519"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w mountain|strong="G3735"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w sat|strong="G2521"\w* \w there|strong="G1563"\w* \w with|strong="G3326"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w*. +\v 4 \w Now|strong="G1161"\w* \w the|strong="G1161"\w* \w Passover|strong="G3957"\w*, \w the|strong="G1161"\w* \w feast|strong="G1859"\w* \w of|strong="G3588"\w* \w the|strong="G1161"\w* \w Jews|strong="G2453"\w*, \w was|strong="G1510"\w* \w at|strong="G1161"\w* \w hand|strong="G1451"\w*. +\v 5 \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w*, \w lifting|strong="G1869"\w* \w up|strong="G1869"\w* \w his|strong="G2532"\w* \w eyes|strong="G3788"\w* \w and|strong="G2532"\w* \w seeing|strong="G2300"\w* \w that|strong="G3754"\w* \w a|strong="G2532"\w* \w great|strong="G4183"\w* \w multitude|strong="G3793"\w* \w was|strong="G3588"\w* \w coming|strong="G2064"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w Philip|strong="G5376"\w*, \wj “\+w Where|strong="G4159"\+w* \+w are|strong="G3588"\+w* \+w we|strong="G3754"\+w* \+w to|strong="G4314"\+w* buy bread, \+w that|strong="G3754"\+w* \+w these|strong="G3778"\+w* \+w may|strong="G2532"\+w* \+w eat|strong="G2068"\+w*?”\wj* +\v 6 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w this|strong="G3778"\w* \w to|strong="G3004"\w* \w test|strong="G3985"\w* \w him|strong="G4160"\w*, \w for|strong="G1063"\w* \w he|strong="G1161"\w* himself \w knew|strong="G1492"\w* \w what|strong="G5101"\w* \w he|strong="G1161"\w* \w would|strong="G3195"\w* \w do|strong="G4160"\w*. +\p +\v 7 \w Philip|strong="G5376"\w* answered \w him|strong="G3588"\w*, “\w Two|strong="G1250"\w* \w hundred|strong="G1250"\w* \w denarii|strong="G1220"\w*\f + \fr 6:7 \ft A denarius was a silver coin worth about a day’s wages for an agricultural laborer, so 200 denarii would be between 6 and 7 month’s pay.\f* worth \w of|strong="G5100"\w* bread \w is|strong="G3588"\w* \w not|strong="G3756"\w* sufficient \w for|strong="G2443"\w* \w them|strong="G3588"\w*, \w that|strong="G2443"\w* \w every|strong="G1538"\w* \w one|strong="G5100"\w* \w of|strong="G5100"\w* \w them|strong="G3588"\w* \w may|strong="G2443"\w* \w receive|strong="G2983"\w* \w a|strong="G2983"\w* \w little|strong="G1024"\w*.” +\p +\v 8 \w One|strong="G1520"\w* \w of|strong="G1537"\w* \w his|strong="G3588"\w* \w disciples|strong="G3101"\w*, Andrew, \w Simon|strong="G4613"\w* \w Peter|strong="G4074"\w*’s brother, \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, +\v 9 “\w There|strong="G2532"\w* \w is|strong="G1510"\w* \w a|strong="G2192"\w* boy \w here|strong="G5602"\w* \w who|strong="G3739"\w* \w has|strong="G2192"\w* \w five|strong="G4002"\w* \w barley|strong="G2916"\w* loaves \w and|strong="G2532"\w* \w two|strong="G1417"\w* \w fish|strong="G3795"\w*, \w but|strong="G2532"\w* \w what|strong="G5101"\w* \w are|strong="G1510"\w* \w these|strong="G3778"\w* \w among|strong="G1519"\w* \w so|strong="G2532"\w* \w many|strong="G5118"\w*?” +\p +\v 10 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w*, \wj “\+w Have|strong="G1510"\+w* \+w the|strong="G1722"\+w* \+w people|strong="G1510"\+w* sit down.”\wj* \w Now|strong="G1161"\w* \w there|strong="G1161"\w* \w was|strong="G1510"\w* \w much|strong="G4183"\w* \w grass|strong="G5528"\w* \w in|strong="G1722"\w* \w that|strong="G3588"\w* \w place|strong="G5117"\w*. \w So|strong="G3767"\w* \w the|strong="G1722"\w* \w men|strong="G3588"\w* sat down, \w in|strong="G1722"\w* number \w about|strong="G5613"\w* \w five|strong="G4000"\w* \w thousand|strong="G4000"\w*. +\v 11 \w Jesus|strong="G2424"\w* \w took|strong="G2983"\w* \w the|strong="G2532"\w* loaves, \w and|strong="G2532"\w* \w having|strong="G2532"\w* \w given|strong="G1325"\w* \w thanks|strong="G2168"\w*, \w he|strong="G2532"\w* \w distributed|strong="G1239"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w disciples|strong="G3588"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w disciples|strong="G3588"\w* \w to|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w sitting|strong="G2532"\w* \w down|strong="G1537"\w*, \w likewise|strong="G3668"\w* \w also|strong="G2532"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w fish|strong="G3795"\w* \w as|strong="G3745"\w* \w much|strong="G3745"\w* \w as|strong="G3745"\w* \w they|strong="G2532"\w* \w desired|strong="G2309"\w*. +\v 12 \w When|strong="G1161"\w* \w they|strong="G1161"\w* \w were|strong="G3588"\w* \w filled|strong="G1705"\w*, \w he|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G2443"\w* \w his|strong="G5613"\w* \w disciples|strong="G3101"\w*, \wj “\+w Gather|strong="G4863"\+w* \+w up|strong="G3361"\+w* \+w the|strong="G1161"\+w* \+w broken|strong="G2801"\+w* \+w pieces|strong="G2801"\+w* \+w which|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w left|strong="G4052"\+w* \+w over|strong="G4052"\+w*, \+w that|strong="G2443"\+w* \+w nothing|strong="G3361"\+w* \+w be|strong="G3361"\+w* lost.”\wj* +\v 13 \w So|strong="G3767"\w* \w they|strong="G2532"\w* \w gathered|strong="G4863"\w* \w them|strong="G3588"\w* \w up|strong="G2532"\w*, \w and|strong="G2532"\w* \w filled|strong="G1072"\w* \w twelve|strong="G1427"\w* \w baskets|strong="G2894"\w* \w with|strong="G1537"\w* \w broken|strong="G2801"\w* \w pieces|strong="G2801"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w five|strong="G4002"\w* \w barley|strong="G2916"\w* loaves, \w which|strong="G3739"\w* \w were|strong="G3588"\w* \w left|strong="G4052"\w* \w over|strong="G1537"\w* \w by|strong="G1537"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w had|strong="G2532"\w* eaten. +\v 14 \w When|strong="G2064"\w* \w therefore|strong="G3767"\w* \w the|strong="G1519"\w* \w people|strong="G1510"\w* \w saw|strong="G3708"\w* \w the|strong="G1519"\w* \w sign|strong="G4592"\w* \w which|strong="G3739"\w* \w Jesus|strong="G3004"\w* \w did|strong="G4160"\w*, \w they|strong="G3588"\w* \w said|strong="G3004"\w*, “\w This|strong="G3778"\w* \w is|strong="G1510"\w* truly \w the|strong="G1519"\w* \w prophet|strong="G4396"\w* \w who|strong="G3739"\w* \w comes|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w world|strong="G2889"\w*.” +\v 15 \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w*, \w perceiving|strong="G1097"\w* \w that|strong="G3754"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w about|strong="G3195"\w* \w to|strong="G1519"\w* \w come|strong="G2064"\w* \w and|strong="G2532"\w* \w take|strong="G2532"\w* \w him|strong="G3588"\w* \w by|strong="G2532"\w* force \w to|strong="G1519"\w* \w make|strong="G4160"\w* \w him|strong="G3588"\w* \w king|strong="G3588"\w*, \w withdrew|strong="G2424"\w* \w again|strong="G3825"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w mountain|strong="G3735"\w* \w by|strong="G2532"\w* \w himself|strong="G3441"\w*. +\p +\v 16 \w When|strong="G1161"\w* \w evening|strong="G3798"\w* \w came|strong="G1096"\w*, \w his|strong="G1909"\w* \w disciples|strong="G3101"\w* \w went|strong="G2597"\w* \w down|strong="G2597"\w* \w to|strong="G1909"\w* \w the|strong="G1161"\w* \w sea|strong="G2281"\w*. +\v 17 \w They|strong="G2532"\w* \w entered|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w boat|strong="G4143"\w*, \w and|strong="G2532"\w* \w were|strong="G3588"\w* \w going|strong="G2532"\w* \w over|strong="G4008"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w* \w to|strong="G1519"\w* \w Capernaum|strong="G2584"\w*. \w It|strong="G2532"\w* \w was|strong="G1096"\w* \w now|strong="G1161"\w* \w dark|strong="G4653"\w*, \w and|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* \w not|strong="G3768"\w* \w come|strong="G2064"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*. +\v 18 \w The|strong="G3588"\w* \w sea|strong="G2281"\w* \w was|strong="G3588"\w* tossed \w by|strong="G5037"\w* \w a|strong="G5037"\w* \w great|strong="G3173"\w* \w wind|strong="G4154"\w* \w blowing|strong="G4154"\w*. +\v 19 \w When|strong="G5613"\w* \w therefore|strong="G3767"\w* \w they|strong="G2532"\w* \w had|strong="G2424"\w* \w rowed|strong="G1643"\w* \w about|strong="G5613"\w* twenty-five \w or|strong="G2228"\w* \w thirty|strong="G5144"\w* stadia,\f + \fr 6:19 \ft 25 to 30 stadia is about 5 to 6 kilometers or about 3 to 4 miles\f* \w they|strong="G2532"\w* \w saw|strong="G2334"\w* \w Jesus|strong="G2424"\w* \w walking|strong="G4043"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w*\x + \xo 6:19 \xt See Job 9:8\x* \w and|strong="G2532"\w* \w drawing|strong="G1096"\w* \w near|strong="G1451"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w boat|strong="G4143"\w*; \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w afraid|strong="G5399"\w*. +\v 20 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w It|strong="G1161"\+w* \+w is|strong="G1510"\+w* \+w I|strong="G1473"\+w*.\wj*\f + \fr 6:20 \ft or, I AM\f* \wj Don’\+w t|strong="G3588"\+w* \+w be|strong="G1510"\+w* \+w afraid|strong="G5399"\+w*.”\wj* +\v 21 \w They|strong="G2532"\w* \w were|strong="G3588"\w* \w willing|strong="G2309"\w* \w therefore|strong="G3767"\w* \w to|strong="G1519"\w* \w receive|strong="G2983"\w* \w him|strong="G3588"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w boat|strong="G4143"\w*. \w Immediately|strong="G2112"\w* \w the|strong="G2532"\w* \w boat|strong="G4143"\w* \w was|strong="G1096"\w* \w at|strong="G1909"\w* \w the|strong="G2532"\w* \w land|strong="G1093"\w* \w where|strong="G3739"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w going|strong="G5217"\w*. +\p +\v 22 \w On|strong="G1519"\w* \w the|strong="G2532"\w* \w next|strong="G1887"\w* \w day|strong="G1887"\w*, \w the|strong="G2532"\w* \w multitude|strong="G3793"\w* \w that|strong="G3754"\w* \w stood|strong="G2476"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w other|strong="G4008"\w* \w side|strong="G4008"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w* \w saw|strong="G3708"\w* \w that|strong="G3754"\w* \w there|strong="G1563"\w* \w was|strong="G1510"\w* \w no|strong="G3756"\w* \w other|strong="G4008"\w* \w boat|strong="G4143"\w* \w there|strong="G1563"\w*, \w except|strong="G1487"\w* \w the|strong="G2532"\w* \w one|strong="G1520"\w* \w in|strong="G1519"\w* \w which|strong="G3588"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w had|strong="G2424"\w* embarked, \w and|strong="G2532"\w* \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* hadn’\w t|strong="G3588"\w* \w entered|strong="G4897"\w* \w with|strong="G2532"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w boat|strong="G4143"\w*, \w but|strong="G2532"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w had|strong="G2424"\w* gone away \w alone|strong="G3441"\w*. +\v 23 However, \w boats|strong="G4142"\w* \w from|strong="G1537"\w* \w Tiberias|strong="G5085"\w* \w came|strong="G2064"\w* \w near|strong="G1451"\w* \w to|strong="G2064"\w* \w the|strong="G1537"\w* \w place|strong="G5117"\w* \w where|strong="G3699"\w* \w they|strong="G3588"\w* \w ate|strong="G2068"\w* \w the|strong="G1537"\w* bread \w after|strong="G1537"\w* \w the|strong="G1537"\w* \w Lord|strong="G2962"\w* \w had|strong="G3588"\w* \w given|strong="G2168"\w* \w thanks|strong="G2168"\w*. +\v 24 \w When|strong="G3753"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w* \w therefore|strong="G3767"\w* \w saw|strong="G3708"\w* \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* wasn’\w t|strong="G3588"\w* \w there|strong="G1563"\w*, \w nor|strong="G3761"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w*, \w they|strong="G2532"\w* \w themselves|strong="G1519"\w* \w got|strong="G1684"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w boats|strong="G4142"\w* \w and|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w Capernaum|strong="G2584"\w*, \w seeking|strong="G2212"\w* \w Jesus|strong="G2424"\w*. +\v 25 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w found|strong="G2147"\w* \w him|strong="G3588"\w* \w on|strong="G1096"\w* \w the|strong="G2532"\w* \w other|strong="G4008"\w* \w side|strong="G4008"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w*, \w they|strong="G2532"\w* \w asked|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Rabbi|strong="G4461"\w*, \w when|strong="G2532"\w* \w did|strong="G2532"\w* \w you|strong="G3004"\w* \w come|strong="G1096"\w* \w here|strong="G5602"\w*?” +\p +\v 26 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Most|strong="G1537"\+w* \+w certainly|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w you|strong="G5210"\+w* \+w seek|strong="G2212"\+w* \+w me|strong="G1473"\+w*, \+w not|strong="G3756"\+w* \+w because|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w saw|strong="G3708"\+w* \+w signs|strong="G4592"\+w*, \+w but|strong="G2532"\+w* \+w because|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w ate|strong="G2068"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* loaves \+w and|strong="G2532"\+w* \+w were|strong="G3588"\+w* \+w filled|strong="G5526"\+w*. \wj* +\v 27 \wj Don’\+w t|strong="G3588"\+w* \+w work|strong="G2038"\+w* \+w for|strong="G1063"\+w* \+w the|strong="G1519"\+w* \+w food|strong="G1035"\+w* \+w which|strong="G3739"\+w* perishes, \+w but|strong="G3361"\+w* \+w for|strong="G1063"\+w* \+w the|strong="G1519"\+w* \+w food|strong="G1035"\+w* \+w which|strong="G3739"\+w* \+w remains|strong="G3306"\+w* \+w to|strong="G1519"\+w* eternal \+w life|strong="G2222"\+w*, \+w which|strong="G3739"\+w* \+w the|strong="G1519"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3778"\+w* \+w will|strong="G2316"\+w* \+w give|strong="G1325"\+w* \+w to|strong="G1519"\+w* \+w you|strong="G4771"\+w*. \+w For|strong="G1063"\+w* \+w God|strong="G2316"\+w* \+w the|strong="G1519"\+w* \+w Father|strong="G3962"\+w* \+w has|strong="G2316"\+w* \+w sealed|strong="G4972"\+w* \+w him|strong="G3588"\+w*.”\wj* +\p +\v 28 \w They|strong="G3588"\w* \w said|strong="G3004"\w* \w therefore|strong="G3767"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w What|strong="G5101"\w* \w must|strong="G4160"\w* \w we|strong="G2443"\w* \w do|strong="G4160"\w*, \w that|strong="G2443"\w* \w we|strong="G2443"\w* \w may|strong="G2443"\w* \w work|strong="G2041"\w* \w the|strong="G4314"\w* \w works|strong="G2041"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*?” +\p +\v 29 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w This|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w work|strong="G2041"\+w* \+w of|strong="G2316"\+w* \+w God|strong="G2316"\+w*, \+w that|strong="G2443"\+w* \+w you|strong="G3739"\+w* \+w believe|strong="G4100"\+w* \+w in|strong="G1519"\+w* \+w him|strong="G3588"\+w* \+w whom|strong="G3739"\+w* \+w he|strong="G2532"\+w* \+w has|strong="G2316"\+w* \+w sent|strong="G2316"\+w*.”\wj* +\p +\v 30 \w They|strong="G2532"\w* \w said|strong="G3004"\w* \w therefore|strong="G3767"\w* \w to|strong="G2443"\w* \w him|strong="G3708"\w*, “\w What|strong="G5101"\w* \w then|strong="G3767"\w* \w do|strong="G4160"\w* \w you|strong="G4771"\w* \w do|strong="G4160"\w* \w for|strong="G2532"\w* \w a|strong="G2532"\w* \w sign|strong="G4592"\w*, \w that|strong="G2443"\w* \w we|strong="G2532"\w* \w may|strong="G2532"\w* \w see|strong="G3708"\w* \w and|strong="G2532"\w* \w believe|strong="G4100"\w* \w you|strong="G4771"\w*? \w What|strong="G5101"\w* \w work|strong="G2038"\w* \w do|strong="G4160"\w* \w you|strong="G4771"\w* \w do|strong="G4160"\w*? +\v 31 \w Our|strong="G1722"\w* \w fathers|strong="G3962"\w* \w ate|strong="G2068"\w* \w the|strong="G1722"\w* \w manna|strong="G3131"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wilderness|strong="G2048"\w*. \w As|strong="G2531"\w* \w it|strong="G2531"\w* \w is|strong="G1510"\w* \w written|strong="G1125"\w*, ‘\w He|strong="G3588"\w* \w gave|strong="G1325"\w* \w them|strong="G3588"\w* bread \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w heaven|strong="G3772"\w*\f + \fr 6:31 \ft Greek and Hebrew use the same word for “heaven”, “the heavens”, “the sky”, and “the air”.\f* \w to|strong="G1722"\w* \w eat|strong="G2068"\w*.’”\x + \xo 6:31 \xt Exodus 16:4; Nehemiah 9:15; Psalms 78:24-25\x* +\p +\v 32 \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Most|strong="G1537"\+w* \+w certainly|strong="G3756"\+w*, \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w it|strong="G3004"\+w* wasn’\+w t|strong="G3588"\+w* \+w Moses|strong="G3475"\+w* \+w who|strong="G3588"\+w* \+w gave|strong="G1325"\+w* \+w you|strong="G5210"\+w* \+w the|strong="G1537"\+w* bread \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w heaven|strong="G3772"\+w*, \+w but|strong="G3767"\+w* \+w my|strong="G1325"\+w* \+w Father|strong="G3962"\+w* \+w gives|strong="G1325"\+w* \+w you|strong="G5210"\+w* \+w the|strong="G1537"\+w* \+w true|strong="G3588"\+w* bread \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w heaven|strong="G3772"\+w*. \wj* +\v 33 \wj \+w For|strong="G1063"\+w* \+w the|strong="G2532"\+w* bread \+w of|strong="G1537"\+w* \+w God|strong="G2316"\+w* \+w is|strong="G1510"\+w* \+w that|strong="G3588"\+w* \+w which|strong="G3588"\+w* \+w comes|strong="G2597"\+w* \+w down|strong="G2597"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w heaven|strong="G3772"\+w* \+w and|strong="G2532"\+w* \+w gives|strong="G1325"\+w* \+w life|strong="G2222"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w world|strong="G2889"\+w*.”\wj* +\p +\v 34 \w They|strong="G3588"\w* \w said|strong="G3004"\w* \w therefore|strong="G3767"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w Lord|strong="G2962"\w*, \w always|strong="G3842"\w* \w give|strong="G1325"\w* \w us|strong="G1325"\w* \w this|strong="G3778"\w* bread.” +\p +\v 35 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w the|strong="G2532"\+w* bread \+w of|strong="G2532"\+w* \+w life|strong="G2222"\+w*. \+w Whoever|strong="G3588"\+w* \+w comes|strong="G2064"\+w* \+w to|strong="G1519"\+w* \+w me|strong="G1473"\+w* \+w will|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w be|strong="G1510"\+w* \+w hungry|strong="G3983"\+w*, \+w and|strong="G2532"\+w* \+w whoever|strong="G3588"\+w* \+w believes|strong="G4100"\+w* \+w in|strong="G1519"\+w* \+w me|strong="G1473"\+w* \+w will|strong="G1510"\+w* \+w never|strong="G3756"\+w* \+w be|strong="G1510"\+w* \+w thirsty|strong="G1372"\+w*. \wj* +\v 36 \wj \+w But|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w told|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2532"\+w* \+w seen|strong="G3708"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w yet|strong="G2532"\+w* \+w you|strong="G5210"\+w* don’t \+w believe|strong="G4100"\+w*. \wj* +\v 37 \wj \+w All|strong="G3956"\+w* \+w those|strong="G3588"\+w* \+w whom|strong="G3739"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w gives|strong="G1325"\+w* \+w me|strong="G1325"\+w* \+w will|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w me|strong="G1325"\+w*. \+w He|strong="G2532"\+w* \+w who|strong="G3739"\+w* \+w comes|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w me|strong="G1325"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w in|strong="G2532"\+w* \+w no|strong="G3756"\+w* \+w way|strong="G3956"\+w* \+w throw|strong="G1544"\+w* \+w out|strong="G1544"\+w*. \wj* +\v 38 \wj \+w For|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G1473"\+w* \+w come|strong="G2597"\+w* \+w down|strong="G2597"\+w* \+w from|strong="G2597"\+w* \+w heaven|strong="G3772"\+w*, \+w not|strong="G3756"\+w* \+w to|strong="G2443"\+w* \+w do|strong="G4160"\+w* \+w my|strong="G1699"\+w* \+w own|strong="G1699"\+w* \+w will|strong="G2307"\+w*, \+w but|strong="G3588"\+w* \+w the|strong="G3588"\+w* \+w will|strong="G2307"\+w* \+w of|strong="G2307"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 39 \wj \+w This|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G1722"\+w* \+w will|strong="G2307"\+w* \+w of|strong="G1537"\+w* \+w my|strong="G1722"\+w* Father \+w who|strong="G3739"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1325"\+w*, \+w that|strong="G2443"\+w* \+w of|strong="G1537"\+w* \+w all|strong="G3956"\+w* \+w he|strong="G1161"\+w* \+w has|strong="G3739"\+w* \+w given|strong="G1325"\+w* \+w to|strong="G2443"\+w* \+w me|strong="G1325"\+w* \+w I|strong="G1473"\+w* \+w should|strong="G3588"\+w* lose \+w nothing|strong="G3361"\+w*, \+w but|strong="G1161"\+w* \+w should|strong="G3588"\+w* raise \+w him|strong="G3588"\+w* \+w up|strong="G1325"\+w* \+w at|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w last|strong="G2078"\+w* \+w day|strong="G2250"\+w*. \wj* +\v 40 \wj \+w This|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G1722"\+w* \+w will|strong="G2307"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G1722"\+w* \+w one|strong="G3956"\+w* \+w who|strong="G3588"\+w* \+w sent|strong="G2532"\+w* \+w me|strong="G1473"\+w*, \+w that|strong="G2443"\+w* \+w everyone|strong="G3956"\+w* \+w who|strong="G3588"\+w* \+w sees|strong="G2334"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w and|strong="G2532"\+w* \+w believes|strong="G4100"\+w* \+w in|strong="G1722"\+w* \+w him|strong="G3588"\+w* \+w should|strong="G3588"\+w* \+w have|strong="G2192"\+w* eternal \+w life|strong="G2222"\+w*; \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2307"\+w* \+w raise|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w up|strong="G1519"\+w* \+w at|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w last|strong="G2078"\+w* \+w day|strong="G2250"\+w*.”\wj* +\p +\v 41 \w The|strong="G1537"\w* \w Jews|strong="G2453"\w* \w therefore|strong="G3767"\w* \w murmured|strong="G1111"\w* \w concerning|strong="G4012"\w* \w him|strong="G3588"\w*, \w because|strong="G3754"\w* \w he|strong="G3754"\w* \w said|strong="G3004"\w*, \wj “\+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w the|strong="G1537"\+w* bread \+w which|strong="G3588"\+w* \+w came|strong="G2597"\+w* \+w down|strong="G2597"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w heaven|strong="G3772"\+w*.”\wj* +\v 42 \w They|strong="G2532"\w* \w said|strong="G3004"\w*, “Isn’\w t|strong="G3588"\w* \w this|strong="G3778"\w* \w Jesus|strong="G2424"\w*, \w the|strong="G2532"\w* \w son|strong="G5207"\w* \w of|strong="G1537"\w* \w Joseph|strong="G2501"\w*, \w whose|strong="G3739"\w* \w father|strong="G3962"\w* \w and|strong="G2532"\w* \w mother|strong="G3384"\w* \w we|strong="G2249"\w* \w know|strong="G1492"\w*? \w How|strong="G4459"\w* \w then|strong="G2532"\w* \w does|strong="G1492"\w* \w he|strong="G2532"\w* \w say|strong="G3004"\w*, \wj ‘\+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w come|strong="G2597"\+w* \+w down|strong="G2597"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w heaven|strong="G3772"\+w*’?” \wj* +\p +\v 43 \w Therefore|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w them|strong="G3004"\w*, \wj “Don’t \+w murmur|strong="G1111"\+w* \+w among|strong="G3326"\+w* yourselves. \wj* +\v 44 \wj \+w No|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w can|strong="G1410"\+w* \+w come|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w me|strong="G1473"\+w* \+w unless|strong="G1437"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3588"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1473"\+w* \+w draws|strong="G1670"\+w* \+w him|strong="G3588"\+w*; \+w and|strong="G2064"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G1473"\+w* raise \+w him|strong="G3588"\+w* \+w up|strong="G3361"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w last|strong="G2078"\+w* \+w day|strong="G2250"\+w*. \wj* +\v 45 \wj \+w It|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w written|strong="G1125"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w prophets|strong="G4396"\+w*, ‘\+w They|strong="G2532"\+w* \+w will|strong="G2316"\+w* \+w all|strong="G3956"\+w* \+w be|strong="G1510"\+w* \+w taught|strong="G1318"\+w* \+w by|strong="G1722"\+w* \+w God|strong="G2316"\+w*.’ \wj*\x + \xo 6:45 \xt Isaiah 54:13\x* \wj \+w Therefore|strong="G3844"\+w* \+w everyone|strong="G3956"\+w* \+w who|strong="G3588"\+w* hears \+w from|strong="G3844"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w and|strong="G2532"\+w* \+w has|strong="G2316"\+w* \+w learned|strong="G3129"\+w*, \+w comes|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 46 \wj \+w Not|strong="G3756"\+w* \+w that|strong="G3754"\+w* \+w anyone|strong="G5100"\+w* \+w has|strong="G2316"\+w* \+w seen|strong="G3708"\+w* \+w the|strong="G3588"\+w* \+w Father|strong="G3962"\+w*, \+w except|strong="G1487"\+w* \+w he|strong="G3754"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w from|strong="G3844"\+w* \+w God|strong="G2316"\+w*. \+w He|strong="G3754"\+w* \+w has|strong="G2316"\+w* \+w seen|strong="G3708"\+w* \+w the|strong="G3588"\+w* \+w Father|strong="G3962"\+w*. \wj* +\v 47 \wj Most \+w certainly|strong="G2192"\+w*, \+w I|strong="G3004"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w he|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w believes|strong="G4100"\+w* \+w in|strong="G4100"\+w* \+w me|strong="G3004"\+w* \+w has|strong="G2192"\+w* eternal \+w life|strong="G2222"\+w*. \wj* +\v 48 \wj \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w the|strong="G3588"\+w* bread \+w of|strong="G3588"\+w* \+w life|strong="G2222"\+w*. \wj* +\v 49 \wj \+w Your|strong="G2532"\+w* \+w fathers|strong="G3962"\+w* \+w ate|strong="G2068"\+w* \+w the|strong="G1722"\+w* \+w manna|strong="G3131"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w wilderness|strong="G2048"\+w* \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w died|strong="G3588"\+w*. \wj* +\v 50 \wj \+w This|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G2532"\+w* bread \+w which|strong="G3588"\+w* \+w comes|strong="G2597"\+w* \+w down|strong="G2597"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w heaven|strong="G3772"\+w*, \+w that|strong="G2443"\+w* \+w anyone|strong="G5100"\+w* \+w may|strong="G2532"\+w* \+w eat|strong="G2068"\+w* \+w of|strong="G1537"\+w* \+w it|strong="G2532"\+w* \+w and|strong="G2532"\+w* \+w not|strong="G3361"\+w* die. \wj* +\v 51 \wj \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w living|strong="G2198"\+w* bread \+w which|strong="G3739"\+w* \+w came|strong="G2597"\+w* \+w down|strong="G2597"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w heaven|strong="G3772"\+w*. \+w If|strong="G1437"\+w* \+w anyone|strong="G5100"\+w* \+w eats|strong="G2068"\+w* \+w of|strong="G1537"\+w* \+w this|strong="G3588"\+w* bread, \+w he|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w live|strong="G2198"\+w* \+w forever|strong="G1519"\+w*. \+w Yes|strong="G1161"\+w*, \+w the|strong="G2532"\+w* bread \+w which|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G1510"\+w* \+w give|strong="G1325"\+w* \+w for|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w life|strong="G2222"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w world|strong="G2889"\+w* \+w is|strong="G1510"\+w* \+w my|strong="G1325"\+w* \+w flesh|strong="G4561"\+w*.”\wj* +\p +\v 52 \w The|strong="G4314"\w* \w Jews|strong="G2453"\w* \w therefore|strong="G3767"\w* contended \w with|strong="G4314"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w How|strong="G4459"\w* \w can|strong="G1410"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w give|strong="G1325"\w* \w us|strong="G1325"\w* \w his|strong="G1325"\w* \w flesh|strong="G4561"\w* \w to|strong="G4314"\w* \w eat|strong="G2068"\w*?” +\p +\v 53 \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “Most \+w certainly|strong="G2192"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w unless|strong="G1437"\+w* \+w you|strong="G5210"\+w* \+w eat|strong="G2068"\+w* \+w the|strong="G1722"\+w* \+w flesh|strong="G4561"\+w* \+w of|strong="G5207"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3361"\+w* \+w and|strong="G2532"\+w* \+w drink|strong="G4095"\+w* \+w his|strong="G1438"\+w* blood, \+w you|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* \+w have|strong="G2192"\+w* \+w life|strong="G2222"\+w* \+w in|strong="G1722"\+w* \+w yourselves|strong="G1438"\+w*. \wj* +\v 54 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w eats|strong="G5176"\+w* \+w my|strong="G1473"\+w* \+w flesh|strong="G4561"\+w* \+w and|strong="G2532"\+w* \+w drinks|strong="G4095"\+w* \+w my|strong="G1473"\+w* blood \+w has|strong="G2192"\+w* eternal \+w life|strong="G2222"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w raise|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w up|strong="G2532"\+w* \+w at|strong="G2250"\+w* \+w the|strong="G2532"\+w* \+w last|strong="G2078"\+w* \+w day|strong="G2250"\+w*. \wj* +\v 55 \wj \+w For|strong="G1063"\+w* \+w my|strong="G1473"\+w* \+w flesh|strong="G4561"\+w* \+w is|strong="G1510"\+w* \+w food|strong="G1035"\+w* \+w indeed|strong="G2532"\+w*, \+w and|strong="G2532"\+w* \+w my|strong="G1473"\+w* blood \+w is|strong="G1510"\+w* \+w drink|strong="G4213"\+w* \+w indeed|strong="G2532"\+w*. \wj* +\v 56 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w eats|strong="G5176"\+w* \+w my|strong="G1722"\+w* \+w flesh|strong="G4561"\+w* \+w and|strong="G2532"\+w* \+w drinks|strong="G4095"\+w* \+w my|strong="G1722"\+w* blood \+w lives|strong="G3306"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w in|strong="G1722"\+w* \+w him|strong="G3588"\+w*. \wj* +\v 57 \wj \+w As|strong="G2531"\+w* \+w the|strong="G2532"\+w* \+w living|strong="G2198"\+w* \+w Father|strong="G3962"\+w* \+w sent|strong="G2532"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w live|strong="G2198"\+w* \+w because|strong="G1223"\+w* \+w of|strong="G1223"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w*, \+w so|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* feeds \+w on|strong="G2198"\+w* \+w me|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w also|strong="G2532"\+w* \+w live|strong="G2198"\+w* \+w because|strong="G1223"\+w* \+w of|strong="G1223"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 58 \wj \+w This|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G2532"\+w* bread \+w which|strong="G3588"\+w* \+w came|strong="G2597"\+w* \+w down|strong="G2597"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w heaven|strong="G3772"\+w*—\+w not|strong="G3756"\+w* \+w as|strong="G2531"\+w* \+w our|strong="G2532"\+w* \+w fathers|strong="G3962"\+w* \+w ate|strong="G2068"\+w* \+w the|strong="G2532"\+w* manna \+w and|strong="G2532"\+w* \+w died|strong="G3588"\+w*. \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w eats|strong="G2068"\+w* \+w this|strong="G3778"\+w* bread \+w will|strong="G1510"\+w* \+w live|strong="G2198"\+w* \+w forever|strong="G1519"\+w*.”\wj* +\v 59 \w He|strong="G3778"\w* \w said|strong="G3004"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w synagogue|strong="G4864"\w*, \w as|strong="G1722"\w* \w he|strong="G3778"\w* \w taught|strong="G1321"\w* \w in|strong="G1722"\w* \w Capernaum|strong="G2584"\w*. +\p +\v 60 \w Therefore|strong="G3767"\w* \w many|strong="G4183"\w* \w of|strong="G1537"\w* \w his|strong="G3588"\w* \w disciples|strong="G3101"\w*, \w when|strong="G3767"\w* \w they|strong="G3588"\w* heard \w this|strong="G3778"\w*, \w said|strong="G3004"\w*, “\w This|strong="G3778"\w* \w is|strong="G1510"\w* \w a|strong="G1510"\w* \w hard|strong="G4642"\w* \w saying|strong="G3004"\w*! \w Who|strong="G5101"\w* \w can|strong="G1410"\w* listen \w to|strong="G3004"\w* \w it|strong="G3778"\w*?” +\p +\v 61 \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w knowing|strong="G1492"\w* \w in|strong="G1722"\w* \w himself|strong="G1438"\w* \w that|strong="G3754"\w* \w his|strong="G1438"\w* \w disciples|strong="G3101"\w* \w murmured|strong="G1111"\w* \w at|strong="G1722"\w* \w this|strong="G3778"\w*, \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Does|strong="G1492"\+w* \+w this|strong="G3778"\+w* \+w cause|strong="G4624"\+w* \+w you|strong="G5210"\+w* \+w to|strong="G3004"\+w* \+w stumble|strong="G4624"\+w*? \wj* +\v 62 \wj \+w Then|strong="G3767"\+w* \+w what|strong="G3588"\+w* \+w if|strong="G1437"\+w* \+w you|strong="G1437"\+w* \+w would|strong="G1437"\+w* \+w see|strong="G2334"\+w* \+w the|strong="G3588"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w* ascending \+w to|strong="G1510"\+w* \+w where|strong="G3699"\+w* \+w he|strong="G3588"\+w* \+w was|strong="G1510"\+w* \+w before|strong="G4386"\+w*? \wj* +\v 63 \wj \+w It|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w spirit|strong="G4151"\+w* \+w who|strong="G3739"\+w* \+w gives|strong="G2227"\+w* \+w life|strong="G2222"\+w*. \+w The|strong="G2532"\+w* \+w flesh|strong="G4561"\+w* \+w profits|strong="G5623"\+w* \+w nothing|strong="G3762"\+w*. \+w The|strong="G2532"\+w* \+w words|strong="G4487"\+w* \+w that|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w speak|strong="G2980"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w spirit|strong="G4151"\+w*, \+w and|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w life|strong="G2222"\+w*. \wj* +\v 64 \wj \+w But|strong="G2532"\+w* \+w there|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w some|strong="G5100"\+w* \+w of|strong="G1537"\+w* \+w you|strong="G5210"\+w* \+w who|strong="G3739"\+w* don’\+w t|strong="G3588"\+w* \+w believe|strong="G4100"\+w*.”\wj* \w For|strong="G1063"\w* \w Jesus|strong="G2424"\w* \w knew|strong="G1492"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* beginning \w who|strong="G3739"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w who|strong="G3739"\w* didn’\w t|strong="G3588"\w* \w believe|strong="G4100"\w*, \w and|strong="G2532"\w* \w who|strong="G3739"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w who|strong="G3739"\w* \w would|strong="G2532"\w* \w betray|strong="G3860"\w* \w him|strong="G3588"\w*. +\v 65 \w He|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w For|strong="G3754"\+w* \+w this|strong="G3778"\+w* \+w cause|strong="G1223"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G4314"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w no|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w can|strong="G1410"\+w* \+w come|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w me|strong="G1325"\+w*, \+w unless|strong="G1437"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w given|strong="G1325"\+w* \+w to|strong="G4314"\+w* \+w him|strong="G3588"\+w* \+w by|strong="G1223"\+w* \+w my|strong="G1325"\+w* \+w Father|strong="G3962"\+w*.”\wj* +\p +\v 66 \w At|strong="G1519"\w* \w this|strong="G3778"\w*, \w many|strong="G4183"\w* \w of|strong="G1537"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w went|strong="G2532"\w* \w back|strong="G3694"\w* \w and|strong="G2532"\w* \w walked|strong="G4043"\w* \w no|strong="G3765"\w* \w more|strong="G4183"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w*. +\v 67 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w therefore|strong="G3767"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w twelve|strong="G1427"\w*, \wj “\+w You|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* \+w also|strong="G2532"\+w* \+w want|strong="G2309"\+w* \+w to|strong="G2532"\+w* \+w go|strong="G5217"\+w* \+w away|strong="G5217"\+w*, \+w do|strong="G2532"\+w* \+w you|strong="G5210"\+w*?”\wj* +\p +\v 68 \w Simon|strong="G4613"\w* \w Peter|strong="G4074"\w* answered \w him|strong="G4314"\w*, “\w Lord|strong="G2962"\w*, \w to|strong="G4314"\w* \w whom|strong="G5101"\w* \w would|strong="G5101"\w* \w we|strong="G2192"\w* \w go|strong="G2192"\w*? \w You|strong="G5101"\w* \w have|strong="G2192"\w* \w the|strong="G4314"\w* \w words|strong="G4487"\w* \w of|strong="G2962"\w* eternal \w life|strong="G2222"\w*. +\v 69 \w We|strong="G2249"\w* \w have|strong="G2532"\w* \w come|strong="G1510"\w* \w to|strong="G2532"\w* \w believe|strong="G4100"\w* \w and|strong="G2532"\w* \w know|strong="G1097"\w* \w that|strong="G3754"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* Christ, \w the|strong="G2532"\w* Son \w of|strong="G2316"\w* \w the|strong="G2532"\w* living \w God|strong="G2316"\w*.” +\p +\v 70 \w Jesus|strong="G2424"\w* answered \w them|strong="G3588"\w*, \wj “Didn’\+w t|strong="G3588"\+w* \+w I|strong="G1473"\+w* \+w choose|strong="G1586"\+w* \+w you|strong="G5210"\+w*, \+w the|strong="G2532"\+w* \+w twelve|strong="G1427"\+w*, \+w and|strong="G2532"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G1537"\+w* \+w you|strong="G5210"\+w* \+w is|strong="G1510"\+w* \+w a|strong="G2532"\+w* \+w devil|strong="G1228"\+w*?”\wj* +\v 71 \w Now|strong="G1161"\w* \w he|strong="G1161"\w* \w spoke|strong="G3004"\w* \w of|strong="G1537"\w* \w Judas|strong="G2455"\w*, \w the|strong="G1537"\w* son \w of|strong="G1537"\w* \w Simon|strong="G4613"\w* \w Iscariot|strong="G2469"\w*, \w for|strong="G1063"\w* \w it|strong="G1161"\w* \w was|strong="G1510"\w* \w he|strong="G1161"\w* \w who|strong="G3588"\w* \w would|strong="G3195"\w* \w betray|strong="G3860"\w* \w him|strong="G3588"\w*, \w being|strong="G1510"\w* \w one|strong="G1520"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w twelve|strong="G1427"\w*. +\c 7 +\p +\v 1 \w After|strong="G3326"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w Jesus|strong="G2424"\w* \w was|strong="G3588"\w* \w walking|strong="G4043"\w* \w in|strong="G1722"\w* \w Galilee|strong="G1056"\w*, \w for|strong="G1063"\w* \w he|strong="G2532"\w* wouldn’\w t|strong="G3588"\w* \w walk|strong="G4043"\w* \w in|strong="G1722"\w* \w Judea|strong="G2453"\w*, \w because|strong="G3754"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w* \w sought|strong="G2212"\w* \w to|strong="G2532"\w* kill \w him|strong="G3588"\w*. +\v 2 \w Now|strong="G1161"\w* \w the|strong="G1161"\w* \w feast|strong="G1859"\w* \w of|strong="G3588"\w* \w the|strong="G1161"\w* \w Jews|strong="G2453"\w*, \w the|strong="G1161"\w* \w Feast|strong="G1859"\w* \w of|strong="G3588"\w* \w Booths|strong="G4634"\w*, \w was|strong="G1510"\w* \w at|strong="G1161"\w* \w hand|strong="G1451"\w*. +\v 3 \w His|strong="G1519"\w* brothers \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, “\w Depart|strong="G3327"\w* \w from|strong="G2532"\w* \w here|strong="G1782"\w* \w and|strong="G2532"\w* \w go|strong="G5217"\w* \w into|strong="G1519"\w* \w Judea|strong="G2449"\w*, \w that|strong="G2443"\w* \w your|strong="G2532"\w* \w disciples|strong="G3101"\w* \w also|strong="G2532"\w* \w may|strong="G2532"\w* \w see|strong="G2334"\w* \w your|strong="G2532"\w* \w works|strong="G2041"\w* \w which|strong="G3739"\w* \w you|strong="G4771"\w* \w do|strong="G4160"\w*. +\v 4 \w For|strong="G1063"\w* \w no|strong="G3762"\w* \w one|strong="G5100"\w* \w does|strong="G4160"\w* \w anything|strong="G5100"\w* \w in|strong="G1722"\w* \w secret|strong="G2927"\w* \w while|strong="G1722"\w* \w he|strong="G2532"\w* \w seeks|strong="G2212"\w* \w to|strong="G2532"\w* \w be|strong="G1510"\w* \w known|strong="G5319"\w* \w openly|strong="G3954"\w*. \w If|strong="G1487"\w* \w you|strong="G1487"\w* \w do|strong="G4160"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w reveal|strong="G5319"\w* \w yourself|strong="G4572"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*.” +\v 5 \w For|strong="G1063"\w* \w even|strong="G3761"\w* \w his|strong="G1519"\w* brothers didn’\w t|strong="G3588"\w* \w believe|strong="G4100"\w* \w in|strong="G1519"\w* \w him|strong="G3588"\w*. +\p +\v 6 \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w My|strong="G1699"\+w* \+w time|strong="G2540"\+w* \+w has|strong="G1510"\+w* \+w not|strong="G1510"\+w* \+w yet|strong="G1161"\+w* \+w come|strong="G1510"\+w*, \+w but|strong="G1161"\+w* \+w your|strong="G5212"\+w* \+w time|strong="G2540"\+w* \+w is|strong="G1510"\+w* \+w always|strong="G3842"\+w* \+w ready|strong="G2092"\+w*. \wj* +\v 7 \wj \+w The|strong="G1161"\+w* \+w world|strong="G2889"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w hate|strong="G3404"\+w* \+w you|strong="G5210"\+w*, \+w but|strong="G1161"\+w* \+w it|strong="G3754"\+w* \+w hates|strong="G3404"\+w* \+w me|strong="G1473"\+w*, \+w because|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w testify|strong="G3140"\+w* \+w about|strong="G4012"\+w* \+w it|strong="G3754"\+w*, \+w that|strong="G3754"\+w* \+w its|strong="G3754"\+w* \+w works|strong="G2041"\+w* \+w are|strong="G1510"\+w* \+w evil|strong="G4190"\+w*. \wj* +\v 8 \wj \+w You|strong="G5210"\+w* \+w go|strong="G1519"\+w* \+w up|strong="G1519"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w feast|strong="G1859"\+w*. \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* \+w not|strong="G3756"\+w* \+w yet|strong="G3768"\+w* \+w going|strong="G3778"\+w* \+w up|strong="G1519"\+w* \+w to|strong="G1519"\+w* \+w this|strong="G3778"\+w* \+w feast|strong="G1859"\+w*, \+w because|strong="G3754"\+w* \+w my|strong="G1699"\+w* \+w time|strong="G2540"\+w* \+w is|strong="G3588"\+w* \+w not|strong="G3756"\+w* \+w yet|strong="G3768"\+w* \+w fulfilled|strong="G4137"\+w*.”\wj* +\p +\v 9 Having \w said|strong="G3004"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, \w he|strong="G1161"\w* \w stayed|strong="G3306"\w* \w in|strong="G1722"\w* \w Galilee|strong="G1056"\w*. +\v 10 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w his|strong="G1519"\w* brothers \w had|strong="G2532"\w* gone \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w feast|strong="G1859"\w*, \w then|strong="G2532"\w* \w he|strong="G2532"\w* \w also|strong="G2532"\w* \w went|strong="G2532"\w* \w up|strong="G1519"\w*, \w not|strong="G3756"\w* \w publicly|strong="G5320"\w*, \w but|strong="G1161"\w* \w as|strong="G5613"\w* \w it|strong="G2532"\w* \w were|strong="G3588"\w* \w in|strong="G1722"\w* \w secret|strong="G2927"\w*. +\v 11 \w The|strong="G1722"\w* \w Jews|strong="G2453"\w* \w therefore|strong="G3767"\w* \w sought|strong="G2212"\w* \w him|strong="G3588"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w feast|strong="G1859"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Where|strong="G4226"\w* \w is|strong="G1510"\w* \w he|strong="G2532"\w*?” +\v 12 \w There|strong="G2532"\w* \w was|strong="G1510"\w* \w much|strong="G4183"\w* \w murmuring|strong="G1112"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w multitudes|strong="G3793"\w* \w concerning|strong="G4012"\w* \w him|strong="G3588"\w*. \w Some|strong="G3588"\w* \w said|strong="G3004"\w*, “\w He|strong="G2532"\w* \w is|strong="G1510"\w* \w a|strong="G2532"\w* \w good|strong="G3756"\w* \w man|strong="G3756"\w*.” \w Others|strong="G3588"\w* \w said|strong="G3004"\w*, “\w Not|strong="G3756"\w* \w so|strong="G2532"\w*, \w but|strong="G1161"\w* \w he|strong="G2532"\w* \w leads|strong="G4105"\w* \w the|strong="G1722"\w* \w multitude|strong="G3793"\w* \w astray|strong="G4105"\w*.” +\v 13 \w Yet|strong="G3305"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w* \w spoke|strong="G2980"\w* \w openly|strong="G3954"\w* \w of|strong="G4012"\w* \w him|strong="G3588"\w* \w for|strong="G1223"\w* \w fear|strong="G5401"\w* \w of|strong="G4012"\w* \w the|strong="G1223"\w* \w Jews|strong="G2453"\w*. +\v 14 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w it|strong="G2532"\w* \w was|strong="G3588"\w* \w now|strong="G1161"\w* \w the|strong="G2532"\w* middle \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w feast|strong="G1859"\w*, \w Jesus|strong="G2424"\w* \w went|strong="G2424"\w* \w up|strong="G1519"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w temple|strong="G2411"\w* \w and|strong="G2532"\w* \w taught|strong="G1321"\w*. +\v 15 \w The|strong="G3588"\w* \w Jews|strong="G2453"\w* \w therefore|strong="G3767"\w* \w marveled|strong="G2296"\w*, \w saying|strong="G3004"\w*, “\w How|strong="G4459"\w* \w does|strong="G1492"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w know|strong="G1492"\w* \w letters|strong="G1121"\w*, \w having|strong="G1492"\w* \w never|strong="G3361"\w* \w been|strong="G3361"\w* \w educated|strong="G3129"\w*?” +\p +\v 16 \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w My|strong="G1699"\+w* \+w teaching|strong="G1322"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w mine|strong="G1699"\+w*, \+w but|strong="G2532"\+w* \+w his|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 17 \wj \+w If|strong="G1437"\+w* \+w anyone|strong="G5100"\+w* \+w desires|strong="G2309"\+w* \+w to|strong="G2309"\+w* \+w do|strong="G4160"\+w* \+w his|strong="G4012"\+w* \+w will|strong="G2307"\+w*, \+w he|strong="G3588"\+w* \+w will|strong="G2307"\+w* \+w know|strong="G1097"\+w* \+w about|strong="G4012"\+w* \+w the|strong="G1537"\+w* \+w teaching|strong="G1322"\+w*, \+w whether|strong="G1437"\+w* \+w it|strong="G1437"\+w* \+w is|strong="G1510"\+w* \+w from|strong="G1537"\+w* \+w God|strong="G2316"\+w* \+w or|strong="G2228"\+w* \+w if|strong="G1437"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w speaking|strong="G2980"\+w* \+w from|strong="G1537"\+w* \+w myself|strong="G1683"\+w*. \wj* +\v 18 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w speaks|strong="G2980"\+w* \+w from|strong="G2532"\+w* \+w himself|strong="G1438"\+w* \+w seeks|strong="G2212"\+w* \+w his|strong="G1438"\+w* \+w own|strong="G2398"\+w* \+w glory|strong="G1391"\+w*, \+w but|strong="G1161"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w seeks|strong="G2212"\+w* \+w the|strong="G1722"\+w* \+w glory|strong="G1391"\+w* \+w of|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w sent|strong="G3992"\+w* \+w him|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w true|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w no|strong="G3756"\+w* unrighteousness \+w is|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w him|strong="G3588"\+w*. \wj* +\v 19 \wj Didn’\+w t|strong="G3588"\+w* \+w Moses|strong="G3475"\+w* \+w give|strong="G1325"\+w* \+w you|strong="G5210"\+w* \+w the|strong="G2532"\+w* \+w law|strong="G3551"\+w*, \+w and|strong="G2532"\+w* \+w yet|strong="G2532"\+w* \+w none|strong="G3762"\+w* \+w of|strong="G1537"\+w* \+w you|strong="G5210"\+w* \+w keeps|strong="G4160"\+w* \+w the|strong="G2532"\+w* \+w law|strong="G3551"\+w*? \+w Why|strong="G5101"\+w* \+w do|strong="G4160"\+w* \+w you|strong="G5210"\+w* \+w seek|strong="G2212"\+w* \+w to|strong="G2532"\+w* kill \+w me|strong="G1325"\+w*?”\wj* +\p +\v 20 \w The|strong="G3588"\w* \w multitude|strong="G3793"\w* answered, “\w You|strong="G4771"\w* \w have|strong="G2192"\w* \w a|strong="G2192"\w* \w demon|strong="G1140"\w*! \w Who|strong="G5101"\w* \w seeks|strong="G2212"\w* \w to|strong="G2212"\w* kill \w you|strong="G4771"\w*?” +\p +\v 21 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w them|strong="G4160"\w*, \wj “\+w I|strong="G2532"\+w* \+w did|strong="G4160"\+w* \+w one|strong="G1520"\+w* \+w work|strong="G2041"\+w* \+w and|strong="G2532"\+w* \+w you|strong="G3004"\+w* \+w all|strong="G3956"\+w* \+w marvel|strong="G2296"\+w* \+w because|strong="G2532"\+w* \+w of|strong="G2532"\+w* \+w it|strong="G2532"\+w*. \wj* +\v 22 \wj \+w Moses|strong="G3475"\+w* \+w has|strong="G3962"\+w* \+w given|strong="G1325"\+w* \+w you|strong="G5210"\+w* \+w circumcision|strong="G4061"\+w* (\+w not|strong="G3756"\+w* \+w that|strong="G3754"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w of|strong="G1537"\+w* \+w Moses|strong="G3475"\+w*, \+w but|strong="G2532"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1722"\+w* \+w fathers|strong="G3962"\+w*), \+w and|strong="G2532"\+w* \+w on|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w Sabbath|strong="G4521"\+w* \+w you|strong="G5210"\+w* \+w circumcise|strong="G4059"\+w* \+w a|strong="G2532"\+w* boy. \wj* +\v 23 \wj \+w If|strong="G1487"\+w* \+w a|strong="G1722"\+w* boy \+w receives|strong="G2983"\+w* \+w circumcision|strong="G4061"\+w* \+w on|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w Sabbath|strong="G4521"\+w*, \+w that|strong="G3754"\+w* \+w the|strong="G1722"\+w* \+w law|strong="G3551"\+w* \+w of|strong="G3551"\+w* \+w Moses|strong="G3475"\+w* \+w may|strong="G2443"\+w* \+w not|strong="G3361"\+w* \+w be|strong="G3361"\+w* \+w broken|strong="G3089"\+w*, \+w are|strong="G3588"\+w* \+w you|strong="G1487"\+w* \+w angry|strong="G5520"\+w* \+w with|strong="G1722"\+w* \+w me|strong="G1473"\+w* \+w because|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w made|strong="G4160"\+w* \+w a|strong="G1722"\+w* \+w man|strong="G3361"\+w* \+w completely|strong="G3650"\+w* \+w healthy|strong="G5199"\+w* \+w on|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w Sabbath|strong="G4521"\+w*? \wj* +\v 24 \wj Don’\+w t|strong="G3588"\+w* \+w judge|strong="G2919"\+w* \+w according|strong="G2596"\+w* \+w to|strong="G2596"\+w* \+w appearance|strong="G3799"\+w*, \+w but|strong="G3361"\+w* \+w judge|strong="G2919"\+w* \+w righteous|strong="G1342"\+w* \+w judgment|strong="G2920"\+w*.” \wj* +\p +\v 25 \w Therefore|strong="G3767"\w* \w some|strong="G5100"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w* \w of|strong="G1537"\w* \w Jerusalem|strong="G2415"\w* \w said|strong="G3004"\w*, “Isn’\w t|strong="G3588"\w* \w this|strong="G3778"\w* \w he|strong="G3739"\w* \w whom|strong="G3739"\w* \w they|strong="G3588"\w* \w seek|strong="G2212"\w* \w to|strong="G3004"\w* kill? +\v 26 \w Behold|strong="G2396"\w*, \w he|strong="G2532"\w* \w speaks|strong="G2980"\w* \w openly|strong="G3954"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w say|strong="G3004"\w* \w nothing|strong="G3762"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*. \w Can|strong="G3004"\w* \w it|strong="G2532"\w* \w be|strong="G1510"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* rulers \w indeed|strong="G2532"\w* \w know|strong="G1097"\w* \w that|strong="G3754"\w* \w this|strong="G3778"\w* \w is|strong="G1510"\w* truly \w the|strong="G2532"\w* \w Christ|strong="G5547"\w*? +\v 27 \w However|strong="G1161"\w*, \w we|strong="G1161"\w* \w know|strong="G1492"\w* \w where|strong="G4159"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w comes|strong="G2064"\w* \w from|strong="G2064"\w*, \w but|strong="G1161"\w* \w when|strong="G3752"\w* \w the|strong="G1161"\w* \w Christ|strong="G5547"\w* \w comes|strong="G2064"\w*, \w no|strong="G3762"\w* \w one|strong="G3762"\w* \w will|strong="G1510"\w* \w know|strong="G1492"\w* \w where|strong="G4159"\w* \w he|strong="G1161"\w* \w comes|strong="G2064"\w* \w from|strong="G2064"\w*.” +\p +\v 28 \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w* \w cried|strong="G2896"\w* \w out|strong="G2896"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w*, \w teaching|strong="G1321"\w* \w and|strong="G2532"\w* \w saying|strong="G3004"\w*, \wj “\+w You|strong="G5210"\+w* \+w both|strong="G2532"\+w* \+w know|strong="G1492"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w know|strong="G1492"\+w* \+w where|strong="G4159"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w from|strong="G2064"\+w*. \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w come|strong="G2064"\+w* \+w of|strong="G2532"\+w* \+w myself|strong="G1683"\+w*, \+w but|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3739"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1473"\+w* \+w is|strong="G1510"\+w* \+w true|strong="G3588"\+w*, \+w whom|strong="G3739"\+w* \+w you|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w*. \wj* +\v 29 \wj \+w I|strong="G1473"\+w* \+w know|strong="G1492"\+w* him, \+w because|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w from|strong="G3844"\+w* him, \+w and|strong="G2548"\+w* \+w he|strong="G3754"\+w* \+w sent|strong="G3844"\+w* \+w me|strong="G1473"\+w*.”\wj* +\p +\v 30 \w They|strong="G2532"\w* \w sought|strong="G2212"\w* \w therefore|strong="G3767"\w* \w to|strong="G2532"\w* \w take|strong="G4084"\w* \w him|strong="G3588"\w*; \w but|strong="G2532"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w* \w laid|strong="G1911"\w* \w a|strong="G2532"\w* \w hand|strong="G5495"\w* \w on|strong="G1909"\w* \w him|strong="G3588"\w*, \w because|strong="G3754"\w* \w his|strong="G1909"\w* \w hour|strong="G5610"\w* \w had|strong="G2532"\w* \w not|strong="G3762"\w* \w yet|strong="G2532"\w* \w come|strong="G2064"\w*. +\v 31 \w But|strong="G1161"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w*, \w many|strong="G4183"\w* \w believed|strong="G4100"\w* \w in|strong="G1519"\w* \w him|strong="G3588"\w*. \w They|strong="G2532"\w* \w said|strong="G3004"\w*, “\w When|strong="G3752"\w* \w the|strong="G2532"\w* \w Christ|strong="G5547"\w* \w comes|strong="G2064"\w*, \w he|strong="G2532"\w* won’\w t|strong="G3588"\w* \w do|strong="G4160"\w* \w more|strong="G4119"\w* \w signs|strong="G4592"\w* \w than|strong="G4183"\w* \w those|strong="G3588"\w* \w which|strong="G3739"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w has|strong="G3739"\w* \w done|strong="G4160"\w*, \w will|strong="G2532"\w* \w he|strong="G2532"\w*?” +\v 32 \w The|strong="G2532"\w* \w Pharisees|strong="G5330"\w* heard \w the|strong="G2532"\w* \w multitude|strong="G3793"\w* \w murmuring|strong="G1111"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w concerning|strong="G4012"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w sent|strong="G2532"\w* \w officers|strong="G5257"\w* \w to|strong="G2443"\w* \w arrest|strong="G4084"\w* \w him|strong="G3588"\w*. +\p +\v 33 \w Then|strong="G3767"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w*, \wj “\+w I|strong="G1473"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w you|strong="G5210"\+w* \+w a|strong="G2532"\+w* \+w little|strong="G3397"\+w* \+w while|strong="G5550"\+w* \+w longer|strong="G2089"\+w*, \+w then|strong="G3767"\+w* \+w I|strong="G1473"\+w* \+w go|strong="G5217"\+w* \+w to|strong="G4314"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 34 \wj \+w You|strong="G5210"\+w* \+w will|strong="G1510"\+w* \+w seek|strong="G2212"\+w* \+w me|strong="G1473"\+w* \+w and|strong="G2532"\+w* won’t \+w find|strong="G2147"\+w* \+w me|strong="G1473"\+w*. \+w You|strong="G5210"\+w* \+w can|strong="G1410"\+w*’t \+w come|strong="G2064"\+w* \+w where|strong="G3699"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w*.”\wj* +\p +\v 35 \w The|strong="G2532"\w* \w Jews|strong="G2453"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w among|strong="G1519"\w* \w themselves|strong="G1438"\w*, “\w Where|strong="G4226"\w* \w will|strong="G3195"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w go|strong="G4198"\w* \w that|strong="G3754"\w* \w we|strong="G3754"\w* won’\w t|strong="G3588"\w* \w find|strong="G2147"\w* \w him|strong="G3588"\w*? \w Will|strong="G3195"\w* \w he|strong="G2532"\w* \w go|strong="G4198"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w Dispersion|strong="G1290"\w* \w among|strong="G1519"\w* \w the|strong="G2532"\w* \w Greeks|strong="G1672"\w* \w and|strong="G2532"\w* \w teach|strong="G1321"\w* \w the|strong="G2532"\w* \w Greeks|strong="G1672"\w*? +\v 36 \w What|strong="G5101"\w* \w is|strong="G1510"\w* \w this|strong="G3778"\w* \w word|strong="G3056"\w* \w that|strong="G3739"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w*, \wj ‘\+w You|strong="G5210"\+w* \+w will|strong="G5101"\+w* \+w seek|strong="G2212"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* won’\+w t|strong="G3588"\+w* \+w find|strong="G2147"\+w* \+w me|strong="G1473"\+w*;’\wj* \w and|strong="G2532"\w* \wj ‘\+w Where|strong="G3699"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w*, \+w you|strong="G5210"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w come|strong="G2064"\+w*’\wj*?” +\p +\v 37 \w Now|strong="G1161"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w last|strong="G2078"\w* \w and|strong="G2532"\w* \w greatest|strong="G3173"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* \w the|strong="G1722"\w* \w feast|strong="G1859"\w*, \w Jesus|strong="G2424"\w* \w stood|strong="G2476"\w* \w and|strong="G2532"\w* \w cried|strong="G2896"\w* \w out|strong="G2896"\w*, \wj “\+w If|strong="G1437"\+w* \+w anyone|strong="G5100"\+w* \+w is|strong="G3588"\+w* \+w thirsty|strong="G1372"\+w*, \+w let|strong="G1161"\+w* \+w him|strong="G3588"\+w* \+w come|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w me|strong="G1473"\+w* \+w and|strong="G2532"\+w* \+w drink|strong="G4095"\+w*! \wj* +\v 38 \wj \+w He|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w believes|strong="G4100"\+w* \+w in|strong="G1519"\+w* \+w me|strong="G1473"\+w*, \+w as|strong="G2531"\+w* \+w the|strong="G1519"\+w* \+w Scripture|strong="G1124"\+w* \+w has|strong="G1473"\+w* \+w said|strong="G3004"\+w*, \+w from|strong="G1537"\+w* \+w within|strong="G2836"\+w* \+w him|strong="G3588"\+w* \+w will|strong="G1473"\+w* \+w flow|strong="G4482"\+w* \+w rivers|strong="G4215"\+w* \+w of|strong="G1537"\+w* \+w living|strong="G2198"\+w* \+w water|strong="G5204"\+w*.”\wj* +\v 39 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w said|strong="G3004"\w* \w this|strong="G3778"\w* \w about|strong="G4012"\w* \w the|strong="G1519"\w* \w Spirit|strong="G4151"\w*, \w which|strong="G3739"\w* \w those|strong="G3588"\w* \w believing|strong="G4100"\w* \w in|strong="G1519"\w* \w him|strong="G3588"\w* \w were|strong="G1510"\w* \w to|strong="G1519"\w* \w receive|strong="G2983"\w*. \w For|strong="G1063"\w* \w the|strong="G1519"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w was|strong="G1510"\w* \w not|strong="G1510"\w* \w yet|strong="G1161"\w* given, \w because|strong="G3754"\w* \w Jesus|strong="G2424"\w* wasn’\w t|strong="G3588"\w* \w yet|strong="G1161"\w* \w glorified|strong="G1392"\w*. +\p +\v 40 \w Many|strong="G3793"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w multitude|strong="G3793"\w* \w therefore|strong="G3767"\w*, \w when|strong="G3767"\w* \w they|strong="G3588"\w* heard \w these|strong="G3778"\w* \w words|strong="G3056"\w*, \w said|strong="G3004"\w*, “\w This|strong="G3778"\w* \w is|strong="G1510"\w* truly \w the|strong="G1537"\w* \w prophet|strong="G4396"\w*.” +\v 41 \w Others|strong="G3588"\w* \w said|strong="G3004"\w*, “\w This|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G1537"\w* \w Christ|strong="G5547"\w*.” \w But|strong="G1161"\w* \w some|strong="G3588"\w* \w said|strong="G3004"\w*, “\w What|strong="G3588"\w*, \w does|strong="G1510"\w* \w the|strong="G1537"\w* \w Christ|strong="G5547"\w* \w come|strong="G2064"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w Galilee|strong="G1056"\w*? +\v 42 Hasn’\w t|strong="G3588"\w* \w the|strong="G2532"\w* \w Scripture|strong="G1124"\w* \w said|strong="G3004"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w Christ|strong="G5547"\w* \w comes|strong="G2064"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* offspring\f + \fr 7:42 \ft or, seed\f* \w of|strong="G1537"\w* \w David|strong="G1138"\w*,\x + \xo 7:42 \xt 2 Samuel 7:12\x* \w and|strong="G2532"\w* \w from|strong="G1537"\w* Bethlehem,\x + \xo 7:42 \xt Micah 5:2\x* \w the|strong="G2532"\w* \w village|strong="G2968"\w* \w where|strong="G3699"\w* \w David|strong="G1138"\w* \w was|strong="G1510"\w*?” +\v 43 \w So|strong="G3767"\w* \w a|strong="G1096"\w* \w division|strong="G4978"\w* \w arose|strong="G1096"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w multitude|strong="G3793"\w* \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w him|strong="G3588"\w*. +\v 44 \w Some|strong="G5100"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w* \w would|strong="G2309"\w* \w have|strong="G2309"\w* arrested \w him|strong="G3588"\w*, \w but|strong="G1161"\w* \w no|strong="G3762"\w* \w one|strong="G5100"\w* \w laid|strong="G1911"\w* \w hands|strong="G5495"\w* \w on|strong="G1909"\w* \w him|strong="G3588"\w*. +\v 45 \w The|strong="G2532"\w* \w officers|strong="G5257"\w* \w therefore|strong="G3767"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w Pharisees|strong="G5330"\w*; \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, “\w Why|strong="G5101"\w* didn’\w t|strong="G3588"\w* \w you|strong="G3004"\w* \w bring|strong="G2532"\w* \w him|strong="G3588"\w*?” +\p +\v 46 \w The|strong="G3588"\w* \w officers|strong="G5257"\w* answered, “\w No|strong="G3588"\w* \w man|strong="G3778"\w* \w ever|strong="G3763"\w* \w spoke|strong="G2980"\w* \w like|strong="G5613"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w*!” +\p +\v 47 \w The|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w therefore|strong="G3767"\w* answered \w them|strong="G3588"\w*, “\w You|strong="G5210"\w* aren’\w t|strong="G3588"\w* \w also|strong="G2532"\w* \w led|strong="G3767"\w* \w astray|strong="G4105"\w*, \w are|strong="G3588"\w* \w you|strong="G5210"\w*? +\v 48 \w Have|strong="G5100"\w* \w any|strong="G5100"\w* \w of|strong="G1537"\w* \w the|strong="G1519"\w* rulers \w or|strong="G2228"\w* \w any|strong="G5100"\w* \w of|strong="G1537"\w* \w the|strong="G1519"\w* \w Pharisees|strong="G5330"\w* \w believed|strong="G4100"\w* \w in|strong="G1519"\w* \w him|strong="G3588"\w*? +\v 49 \w But|strong="G3361"\w* \w this|strong="G3778"\w* \w multitude|strong="G3793"\w* \w that|strong="G3588"\w* doesn’\w t|strong="G3588"\w* \w know|strong="G1097"\w* \w the|strong="G3588"\w* \w law|strong="G3551"\w* \w is|strong="G1510"\w* \w cursed|strong="G1944"\w*.” +\p +\v 50 \w Nicodemus|strong="G3530"\w* (\w he|strong="G3004"\w* \w who|strong="G1520"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w him|strong="G1438"\w* \w by|strong="G1537"\w* night, \w being|strong="G1510"\w* \w one|strong="G1520"\w* \w of|strong="G1537"\w* \w them|strong="G1438"\w*) \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G1438"\w*, +\v 51 “\w Does|strong="G4160"\w* \w our|strong="G2532"\w* \w law|strong="G3551"\w* \w judge|strong="G2919"\w* \w a|strong="G2532"\w* \w man|strong="G3361"\w* \w unless|strong="G1437"\w* \w it|strong="G2532"\w* \w first|strong="G4413"\w* hears \w from|strong="G3844"\w* \w him|strong="G3588"\w* personally \w and|strong="G2532"\w* \w knows|strong="G1097"\w* \w what|strong="G5101"\w* \w he|strong="G2532"\w* \w does|strong="G4160"\w*?” +\p +\v 52 \w They|strong="G2532"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Are|strong="G1510"\w* \w you|strong="G4771"\w* \w also|strong="G2532"\w* \w from|strong="G1537"\w* \w Galilee|strong="G1056"\w*? \w Search|strong="G2045"\w* \w and|strong="G2532"\w* \w see|strong="G3708"\w* \w that|strong="G3754"\w* \w no|strong="G3756"\w* \w prophet|strong="G4396"\w* \w has|strong="G3708"\w* \w arisen|strong="G1453"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w Galilee|strong="G1056"\w*.”\x + \xo 7:52 \xt See Isaiah 9:1; Matthew 4:13-16\x* +\p +\v 53 \w Everyone|strong="G1538"\w* \w went|strong="G4198"\w* \w to|strong="G1519"\w* \w his|strong="G1519"\w* own \w house|strong="G3624"\w*, +\c 8 +\nb +\v 1 \w but|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w went|strong="G4198"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w Mount|strong="G3735"\w* \w of|strong="G2424"\w* \w Olives|strong="G1636"\w*. +\p +\v 2 \w Now|strong="G1161"\w* \w very|strong="G2532"\w* \w early|strong="G3722"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w morning|strong="G3722"\w*, \w he|strong="G2532"\w* \w came|strong="G2064"\w* \w again|strong="G3825"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w temple|strong="G2411"\w*, \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*. \w He|strong="G2532"\w* \w sat|strong="G2523"\w* \w down|strong="G2523"\w* \w and|strong="G2532"\w* \w taught|strong="G1321"\w* \w them|strong="G3588"\w*. +\v 3 \w The|strong="G1722"\w* \w scribes|strong="G1122"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w Pharisees|strong="G5330"\w* \w brought|strong="G1161"\w* \w a|strong="G2532"\w* \w woman|strong="G1135"\w* \w taken|strong="G2638"\w* \w in|strong="G1722"\w* \w adultery|strong="G3430"\w*. \w Having|strong="G2532"\w* \w set|strong="G2476"\w* \w her|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w middle|strong="G3319"\w*, +\v 4 \w they|strong="G3588"\w* \w told|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Teacher|strong="G1320"\w*, \w we|strong="G3778"\w* \w found|strong="G2638"\w* \w this|strong="G3778"\w* \w woman|strong="G1135"\w* \w in|strong="G3004"\w* \w adultery|strong="G3431"\w*, \w in|strong="G3004"\w* \w the|strong="G3588"\w* \w very|strong="G3778"\w* \w act|strong="G1888"\w*. +\v 5 \w Now|strong="G1161"\w* \w in|strong="G1722"\w* \w our|strong="G1722"\w* \w law|strong="G3551"\w*, \w Moses|strong="G3475"\w* \w commanded|strong="G1781"\w* \w us|strong="G3004"\w* \w to|strong="G3004"\w* \w stone|strong="G3036"\w* \w such|strong="G5108"\w* \w women|strong="G5108"\w*.\x + \xo 8:5 \xt Leviticus 20:10; Deuteronomy 22:22\x* \w What|strong="G5101"\w* \w then|strong="G3767"\w* \w do|strong="G5101"\w* \w you|strong="G4771"\w* \w say|strong="G3004"\w* \w about|strong="G1722"\w* \w her|strong="G3588"\w*?” +\v 6 \w They|strong="G1161"\w* \w said|strong="G3004"\w* \w this|strong="G3778"\w* \w testing|strong="G3985"\w* \w him|strong="G3588"\w*, \w that|strong="G2443"\w* \w they|strong="G1161"\w* \w might|strong="G3778"\w* \w have|strong="G2192"\w* something \w to|strong="G1519"\w* \w accuse|strong="G2723"\w* \w him|strong="G3588"\w* \w of|strong="G1093"\w*. +\p \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w stooped|strong="G2955"\w* \w down|strong="G2736"\w* \w and|strong="G1161"\w* \w wrote|strong="G1125"\w* \w on|strong="G1519"\w* \w the|strong="G1519"\w* \w ground|strong="G1093"\w* \w with|strong="G1519"\w* \w his|strong="G1519"\w* \w finger|strong="G1147"\w*. +\v 7 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w they|strong="G1161"\w* \w continued|strong="G1961"\w* \w asking|strong="G2065"\w* \w him|strong="G3588"\w*, \w he|strong="G1161"\w* looked \w up|strong="G1909"\w* \w and|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \wj “\+w He|strong="G1161"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w without|strong="G5613"\+w* sin \+w among|strong="G4314"\+w* \+w you|strong="G5210"\+w*, \+w let|strong="G1161"\+w* \+w him|strong="G3588"\+w* throw \+w the|strong="G1161"\+w* \+w first|strong="G4413"\+w* \+w stone|strong="G3037"\+w* \+w at|strong="G1909"\+w* \+w her|strong="G3588"\+w*.” \wj* +\v 8 \w Again|strong="G3825"\w* \w he|strong="G2532"\w* \w stooped|strong="G2955"\w* \w down|strong="G2736"\w* \w and|strong="G2532"\w* \w wrote|strong="G1125"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w ground|strong="G1093"\w* \w with|strong="G2532"\w* \w his|strong="G1519"\w* finger. +\p +\v 9 \w They|strong="G2532"\w*, \w when|strong="G1161"\w* \w they|strong="G2532"\w* heard \w it|strong="G2532"\w*, \w being|strong="G2532"\w* \w convicted|strong="G1651"\w* \w by|strong="G1722"\w* \w their|strong="G2532"\w* \w conscience|strong="G4893"\w*, \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w one|strong="G1520"\w* \w by|strong="G1722"\w* \w one|strong="G1520"\w*, beginning \w from|strong="G2532"\w* \w the|strong="G1722"\w* oldest, \w even|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w last|strong="G2078"\w*. \w Jesus|strong="G2424"\w* \w was|strong="G3588"\w* \w left|strong="G2641"\w* \w alone|strong="G3441"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w woman|strong="G1135"\w* \w where|strong="G1722"\w* \w she|strong="G2532"\w* \w was|strong="G3588"\w*, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w middle|strong="G3319"\w*. +\v 10 \w Jesus|strong="G2424"\w*, standing \w up|strong="G2532"\w*, \w saw|strong="G2300"\w* \w her|strong="G3588"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Woman|strong="G1135"\+w*, \+w where|strong="G4226"\+w* \+w are|strong="G1510"\+w* \+w your|strong="G2532"\+w* \+w accusers|strong="G2725"\+w*? \+w Did|strong="G2532"\+w* \+w no|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w condemn|strong="G2632"\+w* \+w you|strong="G4771"\+w*?”\wj* +\p +\v 11 \w She|strong="G2532"\w* \w said|strong="G3004"\w*, “\w No|strong="G3762"\w* \w one|strong="G3762"\w*, \w Lord|strong="G2962"\w*.” +\p \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w*, \wj “\+w Neither|strong="G3761"\+w* \+w do|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w condemn|strong="G2632"\+w* \+w you|strong="G4771"\+w*. \+w Go|strong="G4198"\+w* \+w your|strong="G2962"\+w* \+w way|strong="G4198"\+w*. \+w From|strong="G2532"\+w* \+w now|strong="G1161"\+w* \+w on|strong="G4198"\+w*, sin \+w no|strong="G3762"\+w* \+w more|strong="G3371"\+w*.”\wj*\f + \fr 8:11 \ft NU includes John 7:53–John 8:11, but puts brackets around it to indicate that the textual critics had less confidence that this was original.\f* +\p +\v 12 \w Again|strong="G3825"\w*, \w therefore|strong="G3767"\w*, \w Jesus|strong="G2424"\w* \w spoke|strong="G2980"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, \w saying|strong="G3004"\w*, \wj “\+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w the|strong="G1722"\+w* \+w light|strong="G5457"\+w* \+w of|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w world|strong="G2889"\+w*.\wj*\x + \xo 8:12 \xt Isaiah 60:1\x* \wj \+w He|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w follows|strong="G3004"\+w* \+w me|strong="G1473"\+w* \+w will|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w walk|strong="G4043"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w darkness|strong="G4653"\+w*, \+w but|strong="G3361"\+w* \+w will|strong="G1510"\+w* \+w have|strong="G2192"\+w* \+w the|strong="G1722"\+w* \+w light|strong="G5457"\+w* \+w of|strong="G1722"\+w* \+w life|strong="G2222"\+w*.”\wj* +\p +\v 13 \w The|strong="G3588"\w* \w Pharisees|strong="G5330"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w You|strong="G4771"\w* \w testify|strong="G3140"\w* \w about|strong="G4012"\w* \w yourself|strong="G4572"\w*. \w Your|strong="G3588"\w* \w testimony|strong="G3141"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* valid.” +\p +\v 14 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Even|strong="G2532"\+w* \+w if|strong="G2579"\+w* \+w I|strong="G1473"\+w* \+w testify|strong="G3140"\+w* \+w about|strong="G4012"\+w* \+w myself|strong="G1683"\+w*, \+w my|strong="G1473"\+w* \+w testimony|strong="G3141"\+w* \+w is|strong="G1510"\+w* \+w true|strong="G3588"\+w*, \+w for|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w know|strong="G1492"\+w* \+w where|strong="G4226"\+w* \+w I|strong="G1473"\+w* \+w came|strong="G2064"\+w* \+w from|strong="G2064"\+w*, \+w and|strong="G2532"\+w* \+w where|strong="G4226"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w going|strong="G5217"\+w*; \+w but|strong="G1161"\+w* \+w you|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w* \+w where|strong="G4226"\+w* \+w I|strong="G1473"\+w* \+w came|strong="G2064"\+w* \+w from|strong="G2064"\+w*, \+w or|strong="G2228"\+w* \+w where|strong="G4226"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w going|strong="G5217"\+w*. \wj* +\v 15 \wj \+w You|strong="G5210"\+w* \+w judge|strong="G2919"\+w* \+w according|strong="G2596"\+w* \+w to|strong="G2596"\+w* \+w the|strong="G2596"\+w* \+w flesh|strong="G4561"\+w*. \+w I|strong="G1473"\+w* \+w judge|strong="G2919"\+w* \+w no|strong="G3756"\+w* \+w one|strong="G3762"\+w*. \wj* +\v 16 \wj \+w Even|strong="G2532"\+w* \+w if|strong="G1437"\+w* \+w I|strong="G1473"\+w* \+w do|strong="G2919"\+w* \+w judge|strong="G2919"\+w*, \+w my|strong="G1699"\+w* \+w judgment|strong="G2920"\+w* \+w is|strong="G1510"\+w* \+w true|strong="G3588"\+w*, \+w for|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w alone|strong="G3441"\+w*, \+w but|strong="G1161"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w with|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3588"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 17 \wj \+w It|strong="G2532"\+w*’s \+w also|strong="G2532"\+w* \+w written|strong="G1125"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G5212"\+w* \+w law|strong="G3551"\+w* \+w that|strong="G3754"\+w* \+w the|strong="G1722"\+w* \+w testimony|strong="G3141"\+w* \+w of|strong="G2532"\+w* \+w two|strong="G1417"\+w* \+w people|strong="G1510"\+w* \+w is|strong="G1510"\+w* valid.\wj*\x + \xo 8:17 \xt Deuteronomy 17:6; 19:15\x* +\v 18 \wj \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w one|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w testifies|strong="G3140"\+w* \+w about|strong="G4012"\+w* \+w myself|strong="G1683"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3588"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1473"\+w* \+w testifies|strong="G3140"\+w* \+w about|strong="G4012"\+w* \+w me|strong="G1473"\+w*.”\wj* +\p +\v 19 \w They|strong="G2532"\w* \w said|strong="G3004"\w* \w therefore|strong="G3767"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Where|strong="G4226"\w* \w is|strong="G1510"\w* \w your|strong="G2532"\w* \w Father|strong="G3962"\w*?” +\p \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w*, \wj “\+w You|strong="G4771"\+w* \+w know|strong="G1492"\+w* \+w neither|strong="G3777"\+w* \+w me|strong="G1473"\+w* \+w nor|strong="G3777"\+w* \+w my|strong="G1473"\+w* \+w Father|strong="G3962"\+w*. \+w If|strong="G1487"\+w* \+w you|strong="G4771"\+w* \+w knew|strong="G1492"\+w* \+w me|strong="G1473"\+w*, \+w you|strong="G4771"\+w* \+w would|strong="G2532"\+w* \+w know|strong="G1492"\+w* \+w my|strong="G1473"\+w* \+w Father|strong="G3962"\+w* \+w also|strong="G2532"\+w*.”\wj* +\v 20 \w Jesus|strong="G2532"\w* \w spoke|strong="G2980"\w* \w these|strong="G3778"\w* \w words|strong="G4487"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w treasury|strong="G1049"\w*, \w as|strong="G1722"\w* \w he|strong="G2532"\w* \w taught|strong="G1321"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w*. \w Yet|strong="G2532"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w* arrested \w him|strong="G3588"\w*, \w because|strong="G3754"\w* \w his|strong="G1722"\w* \w hour|strong="G5610"\w* \w had|strong="G2532"\w* \w not|strong="G3762"\w* \w yet|strong="G2532"\w* \w come|strong="G2064"\w*. +\v 21 \w Jesus|strong="G3004"\w* \w said|strong="G3004"\w* \w therefore|strong="G3767"\w* \w again|strong="G3825"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* \+w going|strong="G5217"\+w* \+w away|strong="G5217"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w seek|strong="G2212"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* die \+w in|strong="G1722"\+w* \+w your|strong="G2532"\+w* sins. \+w Where|strong="G3699"\+w* \+w I|strong="G1473"\+w* \+w go|strong="G5217"\+w*, \+w you|strong="G5210"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w come|strong="G2064"\+w*.” \wj* +\p +\v 22 \w The|strong="G3588"\w* \w Jews|strong="G2453"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w*, “\w Will|strong="G1473"\w* \w he|strong="G3754"\w* kill \w himself|strong="G1438"\w*, \w because|strong="G3754"\w* \w he|strong="G3754"\w* \w says|strong="G3004"\w*, \wj ‘\+w Where|strong="G3699"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* \+w going|strong="G5217"\+w*, \+w you|strong="G5210"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w come|strong="G2064"\+w*’\wj*?” +\p +\v 23 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w You|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w from|strong="G1537"\+w* \+w beneath|strong="G2736"\+w*. \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w from|strong="G1537"\+w* above. \+w You|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w of|strong="G1537"\+w* \+w this|strong="G3778"\+w* \+w world|strong="G2889"\+w*. \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w of|strong="G1537"\+w* \+w this|strong="G3778"\+w* \+w world|strong="G2889"\+w*. \wj* +\v 24 \wj \+w I|strong="G1473"\+w* \+w said|strong="G3004"\+w* \+w therefore|strong="G3767"\+w* \+w to|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G1510"\+w* die \+w in|strong="G1722"\+w* \+w your|strong="G1437"\+w* sins; \+w for|strong="G1063"\+w* \+w unless|strong="G1437"\+w* \+w you|strong="G5210"\+w* \+w believe|strong="G4100"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w*\wj*\f + \fr 8:24 \ft or, I AM\f* \wj \+w he|strong="G3754"\+w*, \+w you|strong="G5210"\+w* \+w will|strong="G1510"\+w* die \+w in|strong="G1722"\+w* \+w your|strong="G1437"\+w* sins.” \wj* +\p +\v 25 \w They|strong="G2532"\w* \w said|strong="G3004"\w* \w therefore|strong="G3767"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Who|strong="G3739"\w* \w are|strong="G1510"\w* \w you|strong="G5210"\w*?” +\p \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Just|strong="G2532"\+w* \+w what|strong="G5101"\+w* \+w I|strong="G3739"\+w* \+w have|strong="G2532"\+w* \+w been|strong="G1510"\+w* \+w saying|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w from|strong="G2532"\+w* \+w the|strong="G2532"\+w* beginning. \wj* +\v 26 \wj \+w I|strong="G1473"\+w* \+w have|strong="G2192"\+w* \+w many|strong="G4183"\+w* \+w things|strong="G3778"\+w* \+w to|strong="G1519"\+w* \+w speak|strong="G2980"\+w* \+w and|strong="G2532"\+w* \+w to|strong="G1519"\+w* \+w judge|strong="G2919"\+w* \+w concerning|strong="G4012"\+w* \+w you|strong="G5210"\+w*. However, \+w he|strong="G2532"\+w* \+w who|strong="G3739"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1473"\+w* \+w is|strong="G1510"\+w* \+w true|strong="G3588"\+w*; \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3778"\+w* \+w which|strong="G3739"\+w* \+w I|strong="G1473"\+w* heard \+w from|strong="G3844"\+w* \+w him|strong="G3588"\+w*, \+w these|strong="G3778"\+w* \+w I|strong="G1473"\+w* \+w say|strong="G2980"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w world|strong="G2889"\+w*.”\wj* +\p +\v 27 \w They|strong="G3588"\w* didn’\w t|strong="G3588"\w* \w understand|strong="G1097"\w* \w that|strong="G3754"\w* \w he|strong="G3754"\w* \w spoke|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w* \w about|strong="G3754"\w* \w the|strong="G3588"\w* \w Father|strong="G3962"\w*. +\v 28 \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w When|strong="G3752"\+w* \+w you|strong="G3752"\+w* \+w have|strong="G2532"\+w* \+w lifted|strong="G5312"\+w* \+w up|strong="G5312"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G3778"\+w*, \+w then|strong="G3767"\+w* \+w you|strong="G3752"\+w* \+w will|strong="G1510"\+w* \+w know|strong="G1097"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w he|strong="G2532"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w do|strong="G4160"\+w* \+w nothing|strong="G3762"\+w* \+w of|strong="G5207"\+w* \+w myself|strong="G1683"\+w*, \+w but|strong="G2532"\+w* \+w as|strong="G2531"\+w* \+w my|strong="G1473"\+w* \+w Father|strong="G3962"\+w* \+w taught|strong="G1321"\+w* \+w me|strong="G1473"\+w*, \+w I|strong="G1473"\+w* \+w say|strong="G3004"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w*. \wj* +\v 29 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1473"\+w* \+w is|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1473"\+w*. \+w The|strong="G2532"\+w* Father hasn’\+w t|strong="G3588"\+w* left \+w me|strong="G1473"\+w* \+w alone|strong="G3441"\+w*, \+w for|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w always|strong="G3842"\+w* \+w do|strong="G4160"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3588"\+w* \+w that|strong="G3754"\+w* \+w are|strong="G1510"\+w* pleasing \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w*.”\wj* +\p +\v 30 \w As|strong="G1519"\w* \w he|strong="G3778"\w* \w spoke|strong="G2980"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w many|strong="G4183"\w* \w believed|strong="G4100"\w* \w in|strong="G1519"\w* \w him|strong="G1519"\w*. +\v 31 \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w those|strong="G3588"\w* \w Jews|strong="G2453"\w* \w who|strong="G3588"\w* \w had|strong="G2424"\w* \w believed|strong="G4100"\w* \w him|strong="G3588"\w*, \wj “\+w If|strong="G1437"\+w* \+w you|strong="G5210"\+w* \+w remain|strong="G3306"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G1699"\+w* \+w word|strong="G3056"\+w*, \+w then|strong="G3767"\+w* \+w you|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w truly|strong="G1722"\+w* \+w my|strong="G1699"\+w* \+w disciples|strong="G3101"\+w*. \wj* +\v 32 \wj \+w You|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w know|strong="G1097"\+w* \+w the|strong="G2532"\+w* truth, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* truth \+w will|strong="G2532"\+w* \+w make|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w free|strong="G1659"\+w*.” \wj*\x + \xo 8:32 \xt Psalms 119:45\x* +\p +\v 33 \w They|strong="G2532"\w* \w answered|strong="G3004"\w* \w him|strong="G2532"\w*, “\w We|strong="G3754"\w* \w are|strong="G1510"\w* Abraham’s offspring, \w and|strong="G2532"\w* \w have|strong="G2532"\w* \w never|strong="G3762"\w* \w been|strong="G1510"\w* \w in|strong="G2532"\w* \w bondage|strong="G1398"\w* \w to|strong="G4314"\w* \w anyone|strong="G3762"\w*. \w How|strong="G4459"\w* \w do|strong="G1096"\w* \w you|strong="G4771"\w* \w say|strong="G3004"\w*, \wj ‘\+w You|strong="G4771"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1096"\+w* \+w made|strong="G1096"\+w* \+w free|strong="G1658"\+w*’\wj*?” +\p +\v 34 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “Most certainly \+w I|strong="G3754"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w everyone|strong="G3956"\+w* \+w who|strong="G3588"\+w* \+w commits|strong="G4160"\+w* sin \+w is|strong="G1510"\+w* \+w the|strong="G3956"\+w* bondservant \+w of|strong="G1401"\+w* sin. \wj* +\v 35 \wj \+w A|strong="G1519"\+w* bondservant doesn’\+w t|strong="G3588"\+w* live \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w house|strong="G3614"\+w* \+w forever|strong="G1519"\+w*. \+w A|strong="G1519"\+w* \+w son|strong="G5207"\+w* \+w remains|strong="G3306"\+w* \+w forever|strong="G1519"\+w*. \wj* +\v 36 \wj \+w If|strong="G1437"\+w* \+w therefore|strong="G3767"\+w* \+w the|strong="G3588"\+w* \+w Son|strong="G5207"\+w* \+w makes|strong="G1659"\+w* \+w you|strong="G5210"\+w* \+w free|strong="G1658"\+w*, \+w you|strong="G5210"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w free|strong="G1658"\+w* \+w indeed|strong="G3689"\+w*. \wj* +\v 37 \wj \+w I|strong="G1473"\+w* \+w know|strong="G1492"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w are|strong="G1510"\+w* Abraham’s offspring, \+w yet|strong="G5210"\+w* \+w you|strong="G5210"\+w* \+w seek|strong="G2212"\+w* \+w to|strong="G2212"\+w* kill \+w me|strong="G1473"\+w*, \+w because|strong="G3754"\+w* \+w my|strong="G1699"\+w* \+w word|strong="G3056"\+w* finds \+w no|strong="G3756"\+w* \+w place|strong="G5562"\+w* \+w in|strong="G1722"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 38 \wj \+w I|strong="G1473"\+w* \+w say|strong="G2980"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3588"\+w* \+w which|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w seen|strong="G3708"\+w* \+w with|strong="G3844"\+w* \+w my|strong="G3708"\+w* \+w Father|strong="G3962"\+w*; \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w also|strong="G2532"\+w* \+w do|strong="G4160"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3588"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2532"\+w* \+w seen|strong="G3708"\+w* \+w with|strong="G3844"\+w* \+w your|strong="G2532"\+w* \+w father|strong="G3962"\+w*.”\wj* +\p +\v 39 \w They|strong="G2532"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Our|strong="G2424"\w* \w father|strong="G3962"\w* \w is|strong="G1510"\w* Abraham.” +\p \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w If|strong="G1487"\+w* \+w you|strong="G1487"\+w* \+w were|strong="G1510"\+w* Abraham’s \+w children|strong="G5043"\+w*, \+w you|strong="G1487"\+w* \+w would|strong="G2532"\+w* \+w do|strong="G4160"\+w* \+w the|strong="G2532"\+w* \+w works|strong="G2041"\+w* \+w of|strong="G2532"\+w* Abraham. \wj* +\v 40 \wj \+w But|strong="G1161"\+w* \+w now|strong="G1161"\+w* \+w you|strong="G5210"\+w* \+w seek|strong="G2212"\+w* \+w to|strong="G2212"\+w* kill \+w me|strong="G1473"\+w*, \+w a|strong="G4160"\+w* \+w man|strong="G3778"\+w* \+w who|strong="G3739"\+w* \+w has|strong="G2316"\+w* \+w told|strong="G2980"\+w* \+w you|strong="G5210"\+w* \+w the|strong="G1161"\+w* truth \+w which|strong="G3739"\+w* \+w I|strong="G1473"\+w* heard \+w from|strong="G3844"\+w* \+w God|strong="G2316"\+w*. Abraham didn’\+w t|strong="G3588"\+w* \+w do|strong="G4160"\+w* \+w this|strong="G3778"\+w*. \wj* +\v 41 \wj \+w You|strong="G5210"\+w* \+w do|strong="G4160"\+w* \+w the|strong="G1537"\+w* \+w works|strong="G2041"\+w* \+w of|strong="G1537"\+w* \+w your|strong="G2192"\+w* \+w father|strong="G3962"\+w*.”\wj* +\p \w They|strong="G3588"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w We|strong="G2249"\w* \w were|strong="G3588"\w* \w not|strong="G3756"\w* \w born|strong="G1080"\w* \w of|strong="G1537"\w* \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w*. \w We|strong="G2249"\w* \w have|strong="G2192"\w* \w one|strong="G1520"\w* \w Father|strong="G3962"\w*, \w God|strong="G2316"\w*.” +\p +\v 42 \w Therefore|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w If|strong="G1487"\+w* \+w God|strong="G2316"\+w* \+w were|strong="G1510"\+w* \+w your|strong="G2532"\+w* \+w father|strong="G3962"\+w*, \+w you|strong="G5210"\+w* \+w would|strong="G2316"\+w* love \+w me|strong="G1473"\+w*, \+w for|strong="G1063"\+w* \+w I|strong="G1473"\+w* \+w came|strong="G2064"\+w* \+w out|strong="G1831"\+w* \+w and|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w from|strong="G1537"\+w* \+w God|strong="G2316"\+w*. \+w For|strong="G1063"\+w* \+w I|strong="G1473"\+w* haven’\+w t|strong="G3588"\+w* \+w come|strong="G2064"\+w* \+w of|strong="G1537"\+w* \+w myself|strong="G1683"\+w*, \+w but|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w sent|strong="G2316"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 43 \wj \+w Why|strong="G5101"\+w* don’\+w t|strong="G3588"\+w* \+w you|strong="G3754"\+w* \+w understand|strong="G1097"\+w* \+w my|strong="G1699"\+w* \+w speech|strong="G3056"\+w*? \+w Because|strong="G3754"\+w* \+w you|strong="G3754"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w hear|strong="G5101"\+w* \+w my|strong="G1699"\+w* \+w word|strong="G3056"\+w*. \wj* +\v 44 \wj \+w You|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w of|strong="G1537"\+w* \+w your|strong="G2532"\+w* \+w father|strong="G3962"\+w* \+w the|strong="G1722"\+w* \+w devil|strong="G1228"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w want|strong="G2309"\+w* \+w to|strong="G2532"\+w* \+w do|strong="G4160"\+w* \+w the|strong="G1722"\+w* \+w desires|strong="G1939"\+w* \+w of|strong="G1537"\+w* \+w your|strong="G2532"\+w* \+w father|strong="G3962"\+w*. \+w He|strong="G2532"\+w* \+w was|strong="G1510"\+w* \+w a|strong="G2532"\+w* murderer \+w from|strong="G1537"\+w* \+w the|strong="G1722"\+w* beginning, \+w and|strong="G2532"\+w* doesn’\+w t|strong="G3588"\+w* \+w stand|strong="G2476"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* truth, \+w because|strong="G3754"\+w* \+w there|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w no|strong="G3756"\+w* truth \+w in|strong="G1722"\+w* \+w him|strong="G3588"\+w*. \+w When|strong="G3752"\+w* \+w he|strong="G2532"\+w* \+w speaks|strong="G2980"\+w* \+w a|strong="G2532"\+w* \+w lie|strong="G5579"\+w*, \+w he|strong="G2532"\+w* \+w speaks|strong="G2980"\+w* \+w on|strong="G1722"\+w* \+w his|strong="G1722"\+w* \+w own|strong="G2398"\+w*; \+w for|strong="G3754"\+w* \+w he|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w a|strong="G2532"\+w* \+w liar|strong="G5583"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w father|strong="G3962"\+w* \+w of|strong="G1537"\+w* lies. \wj* +\v 45 \wj \+w But|strong="G1161"\+w* \+w because|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w the|strong="G1161"\+w* truth, \+w you|strong="G3754"\+w* don’\+w t|strong="G3588"\+w* \+w believe|strong="G4100"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 46 \wj \+w Which|strong="G5101"\+w* \+w of|strong="G1537"\+w* \+w you|strong="G5210"\+w* \+w convicts|strong="G1651"\+w* \+w me|strong="G1473"\+w* \+w of|strong="G1537"\+w* sin? \+w If|strong="G1487"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w the|strong="G1537"\+w* truth, \+w why|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G5210"\+w* \+w not|strong="G3756"\+w* \+w believe|strong="G4100"\+w* \+w me|strong="G1473"\+w*? \wj* +\v 47 \wj \+w He|strong="G3754"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w of|strong="G1537"\+w* \+w God|strong="G2316"\+w* hears \+w the|strong="G1537"\+w* \+w words|strong="G4487"\+w* \+w of|strong="G1537"\+w* \+w God|strong="G2316"\+w*. \+w For|strong="G3754"\+w* \+w this|strong="G3778"\+w* \+w cause|strong="G1223"\+w* \+w you|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* hear, \+w because|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w of|strong="G1537"\+w* \+w God|strong="G2316"\+w*.”\wj* +\p +\v 48 \w Then|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, “Don’\w t|strong="G3588"\w* \w we|strong="G2249"\w* \w say|strong="G3004"\w* \w well|strong="G2573"\w* \w that|strong="G3754"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w a|strong="G2192"\w* \w Samaritan|strong="G4541"\w*, \w and|strong="G2532"\w* \w have|strong="G2192"\w* \w a|strong="G2192"\w* \w demon|strong="G1140"\w*?” +\p +\v 49 \w Jesus|strong="G2424"\w* answered, \wj “\+w I|strong="G1473"\+w* don’\+w t|strong="G3588"\+w* \+w have|strong="G2192"\+w* \+w a|strong="G2192"\+w* \+w demon|strong="G1140"\+w*, \+w but|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w honor|strong="G5091"\+w* \+w my|strong="G1473"\+w* \+w Father|strong="G3962"\+w* \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* dishonor \+w me|strong="G1473"\+w*. \wj* +\v 50 \wj \+w But|strong="G1161"\+w* \+w I|strong="G1473"\+w* don’\+w t|strong="G3588"\+w* \+w seek|strong="G2212"\+w* \+w my|strong="G2212"\+w* own \+w glory|strong="G1391"\+w*. \+w There|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w one|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w seeks|strong="G2212"\+w* \+w and|strong="G2532"\+w* \+w judges|strong="G2919"\+w*. \wj* +\v 51 \wj Most \+w certainly|strong="G3756"\+w*, \+w I|strong="G1437"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w if|strong="G1437"\+w* \+w a|strong="G1519"\+w* \+w person|strong="G5100"\+w* \+w keeps|strong="G5083"\+w* \+w my|strong="G1699"\+w* \+w word|strong="G3056"\+w*, \+w he|strong="G3588"\+w* \+w will|strong="G5100"\+w* \+w never|strong="G3756"\+w* \+w see|strong="G2334"\+w* \+w death|strong="G2288"\+w*.”\wj* +\p +\v 52 \w Then|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, “\w Now|strong="G3568"\w* \w we|strong="G1437"\w* \w know|strong="G1097"\w* \w that|strong="G3754"\w* \w you|strong="G4771"\w* \w have|strong="G2192"\w* \w a|strong="G2192"\w* \w demon|strong="G1140"\w*. Abraham \w died|strong="G2288"\w*, \w as|strong="G1519"\w* \w did|strong="G2532"\w* \w the|strong="G2532"\w* \w prophets|strong="G4396"\w*; \w and|strong="G2532"\w* \w you|strong="G4771"\w* \w say|strong="G3004"\w*, \wj ‘\+w If|strong="G1437"\+w* \+w a|strong="G2192"\+w* \+w man|strong="G5100"\+w* \+w keeps|strong="G5083"\+w* \+w my|strong="G5083"\+w* \+w word|strong="G3056"\+w*, \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w never|strong="G3756"\+w* \+w taste|strong="G1089"\+w* \+w of|strong="G3056"\+w* \+w death|strong="G2288"\+w*.’\wj* +\v 53 \w Are|strong="G1510"\w* \w you|strong="G4771"\w* \w greater|strong="G3173"\w* \w than|strong="G3173"\w* \w our|strong="G2532"\w* \w father|strong="G3962"\w* Abraham, \w who|strong="G5101"\w* \w died|strong="G3588"\w*? \w The|strong="G2532"\w* \w prophets|strong="G4396"\w* \w died|strong="G3588"\w*. \w Who|strong="G5101"\w* \w do|strong="G4160"\w* \w you|strong="G4771"\w* \w make|strong="G4160"\w* \w yourself|strong="G4572"\w* \w out|strong="G2532"\w* \w to|strong="G2532"\w* \w be|strong="G1510"\w*?” +\p +\v 54 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w*, \wj “\+w If|strong="G1437"\+w* \+w I|strong="G1473"\+w* \+w glorify|strong="G1392"\+w* \+w myself|strong="G1683"\+w*, \+w my|strong="G1473"\+w* \+w glory|strong="G1391"\+w* \+w is|strong="G1510"\+w* \+w nothing|strong="G3762"\+w*. \+w It|strong="G3754"\+w* \+w is|strong="G1510"\+w* \+w my|strong="G1473"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3739"\+w* \+w glorifies|strong="G1392"\+w* \+w me|strong="G1473"\+w*, \+w of|strong="G2316"\+w* \+w whom|strong="G3739"\+w* \+w you|strong="G5210"\+w* \+w say|strong="G3004"\+w* \+w that|strong="G3754"\+w* \+w he|strong="G3739"\+w* \+w is|strong="G1510"\+w* \+w our|strong="G2316"\+w* \+w God|strong="G2316"\+w*. \wj* +\v 55 \wj \+w You|strong="G5210"\+w* \+w have|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w known|strong="G1097"\+w* \+w him|strong="G3588"\+w*, \+w but|strong="G1161"\+w* \+w I|strong="G1473"\+w* \+w know|strong="G1492"\+w* \+w him|strong="G3588"\+w*. \+w If|strong="G2579"\+w* \+w I|strong="G1473"\+w* \+w said|strong="G3004"\+w*, ‘\+w I|strong="G1473"\+w* don’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w* \+w him|strong="G3588"\+w*,’ \+w I|strong="G1473"\+w* \+w would|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w like|strong="G3664"\+w* \+w you|strong="G5210"\+w*, \+w a|strong="G2532"\+w* \+w liar|strong="G5583"\+w*. \+w But|strong="G1161"\+w* \+w I|strong="G1473"\+w* \+w know|strong="G1492"\+w* \+w him|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w keep|strong="G5083"\+w* \+w his|strong="G2532"\+w* \+w word|strong="G3056"\+w*. \wj* +\v 56 \wj \+w Your|strong="G2532"\+w* \+w father|strong="G3962"\+w* Abraham \+w rejoiced|strong="G5463"\+w* \+w to|strong="G2443"\+w* \+w see|strong="G3708"\+w* \+w my|strong="G1699"\+w* \+w day|strong="G2250"\+w*. \+w He|strong="G2532"\+w* \+w saw|strong="G1492"\+w* \+w it|strong="G2532"\+w* \+w and|strong="G2532"\+w* \+w was|strong="G3588"\+w* \+w glad|strong="G5463"\+w*.”\wj* +\p +\v 57 \w The|strong="G2532"\w* \w Jews|strong="G2453"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w You|strong="G3004"\w* \w are|strong="G3588"\w* \w not|strong="G3768"\w* \w yet|strong="G2532"\w* \w fifty|strong="G4004"\w* \w years|strong="G2094"\w* \w old|strong="G2094"\w*! \w Have|strong="G2192"\w* \w you|strong="G3004"\w* \w seen|strong="G3708"\w* Abraham?” +\p +\v 58 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3004"\w*, \wj “Most certainly, \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w before|strong="G4250"\+w* Abraham \+w came|strong="G1096"\+w* \+w into|strong="G1096"\+w* existence, \+w I|strong="G1473"\+w* \+w AM|strong="G1510"\+w*.\wj*\x + \xo 8:58 \xt Exodus 3:14\x*\wj ”\wj* +\p +\v 59 \w Therefore|strong="G3767"\w* \w they|strong="G2532"\w* \w took|strong="G2532"\w* \w up|strong="G2532"\w* \w stones|strong="G3037"\w* \w to|strong="G2443"\w* throw \w at|strong="G1909"\w* \w him|strong="G3588"\w*, \w but|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w hid|strong="G2928"\w* \w himself|strong="G2928"\w* \w and|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w temple|strong="G2413"\w*, \w having|strong="G2532"\w* \w gone|strong="G1831"\w* \w through|strong="G1537"\w* \w the|strong="G2532"\w* middle \w of|strong="G1537"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w so|strong="G2443"\w* \w passed|strong="G2424"\w* \w by|strong="G1537"\w*. +\c 9 +\p +\v 1 \w As|strong="G2532"\w* \w he|strong="G2532"\w* \w passed|strong="G3855"\w* \w by|strong="G1537"\w*, \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w a|strong="G2532"\w* \w man|strong="G5185"\w* \w blind|strong="G5185"\w* \w from|strong="G1537"\w* \w birth|strong="G1079"\w*. +\v 2 \w His|strong="G2532"\w* \w disciples|strong="G3101"\w* \w asked|strong="G2065"\w* \w him|strong="G3588"\w*, “\w Rabbi|strong="G4461"\w*, \w who|strong="G5101"\w* sinned, \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w or|strong="G2228"\w* \w his|strong="G2532"\w* \w parents|strong="G1118"\w*, \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w born|strong="G1080"\w* \w blind|strong="G5185"\w*?” +\p +\v 3 \w Jesus|strong="G2424"\w* answered, \wj “\+w This|strong="G3778"\+w* \+w man|strong="G3778"\+w* didn’\+w t|strong="G3588"\+w* sin, \+w nor|strong="G3777"\+w* \+w did|strong="G2316"\+w* \+w his|strong="G1722"\+w* \+w parents|strong="G1118"\+w*, \+w but|strong="G2316"\+w* \+w that|strong="G2443"\+w* \+w the|strong="G1722"\+w* \+w works|strong="G2041"\+w* \+w of|strong="G2316"\+w* \+w God|strong="G2316"\+w* \+w might|strong="G2316"\+w* \+w be|strong="G2316"\+w* \+w revealed|strong="G5319"\+w* \+w in|strong="G1722"\+w* \+w him|strong="G3588"\+w*. \wj* +\v 4 \wj \+w I|strong="G1473"\+w* \+w must|strong="G1163"\+w* \+w work|strong="G2041"\+w* \+w the|strong="G3588"\+w* \+w works|strong="G2041"\+w* \+w of|strong="G2250"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1473"\+w* \+w while|strong="G2193"\+w* \+w it|strong="G1510"\+w* \+w is|strong="G1510"\+w* \+w day|strong="G2250"\+w*. \+w The|strong="G3588"\+w* \+w night|strong="G3571"\+w* \+w is|strong="G1510"\+w* \+w coming|strong="G2064"\+w*, \+w when|strong="G3753"\+w* \+w no|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w can|strong="G1410"\+w* \+w work|strong="G2041"\+w*. \wj* +\v 5 \wj \+w While|strong="G1722"\+w* \+w I|strong="G3752"\+w* \+w am|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w world|strong="G2889"\+w*, \+w I|strong="G3752"\+w* \+w am|strong="G1510"\+w* \+w the|strong="G1722"\+w* \+w light|strong="G5457"\+w* \+w of|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w world|strong="G2889"\+w*.”\wj* +\v 6 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w said|strong="G3004"\w* \w this|strong="G3778"\w*, \w he|strong="G2532"\w* \w spat|strong="G4429"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w ground|strong="G5476"\w*, \w made|strong="G4160"\w* \w mud|strong="G4081"\w* \w with|strong="G1537"\w* \w the|strong="G2532"\w* saliva, \w anointed|strong="G2025"\w* \w the|strong="G2532"\w* blind \w man|strong="G3778"\w*’s \w eyes|strong="G3788"\w* \w with|strong="G1537"\w* \w the|strong="G2532"\w* \w mud|strong="G4081"\w*, +\v 7 \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \wj “\+w Go|strong="G5217"\+w*, \+w wash|strong="G3538"\+w* \+w in|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w pool|strong="G2861"\+w* \+w of|strong="G2532"\+w* \+w Siloam|strong="G4611"\+w*”\wj* (\w which|strong="G3739"\w* \w means|strong="G3004"\w* “\w Sent|strong="G2532"\w*”). \w So|strong="G3767"\w* \w he|strong="G2532"\w* \w went|strong="G2064"\w* \w away|strong="G5217"\w*, \w washed|strong="G3538"\w*, \w and|strong="G2532"\w* \w came|strong="G2064"\w* \w back|strong="G1519"\w* seeing. +\p +\v 8 \w Therefore|strong="G3767"\w* \w the|strong="G2532"\w* \w neighbors|strong="G1069"\w* \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w saw|strong="G2334"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* blind \w before|strong="G4386"\w* \w said|strong="G3004"\w*, “Isn’\w t|strong="G3588"\w* \w this|strong="G3778"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w sat|strong="G2521"\w* \w and|strong="G2532"\w* \w begged|strong="G4319"\w*?” +\v 9 \w Others|strong="G3754"\w* \w were|strong="G1510"\w* \w saying|strong="G3004"\w*, “\w It|strong="G3754"\w* \w is|strong="G1510"\w* \w he|strong="G3754"\w*.” Still \w others|strong="G3754"\w* \w were|strong="G1510"\w* \w saying|strong="G3004"\w*, “\w He|strong="G3754"\w* looks \w like|strong="G3664"\w* \w him|strong="G1565"\w*.” +\p \w He|strong="G3754"\w* \w said|strong="G3004"\w*, “\w I|strong="G1473"\w* \w am|strong="G1510"\w* \w he|strong="G3754"\w*.” +\p +\v 10 \w They|strong="G3588"\w* \w therefore|strong="G3767"\w* \w were|strong="G3588"\w* \w asking|strong="G3004"\w* \w him|strong="G3588"\w*, “\w How|strong="G4459"\w* \w were|strong="G3588"\w* \w your|strong="G3588"\w* \w eyes|strong="G3788"\w* \w opened|strong="G4459"\w*?” +\p +\v 11 \w He|strong="G2532"\w* \w answered|strong="G3004"\w*, “\w A|strong="G2532"\w* \w man|strong="G1519"\w* \w called|strong="G3004"\w* \w Jesus|strong="G2424"\w* \w made|strong="G4160"\w* \w mud|strong="G4081"\w*, \w anointed|strong="G2025"\w* \w my|strong="G1473"\w* \w eyes|strong="G3788"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w me|strong="G1473"\w*, \wj ‘\+w Go|strong="G5217"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* pool \+w of|strong="G2532"\+w* \+w Siloam|strong="G4611"\+w* \+w and|strong="G2532"\+w* \+w wash|strong="G3538"\+w*.’\wj* \w So|strong="G3767"\w* \w I|strong="G1473"\w* \w went|strong="G2424"\w* \w away|strong="G5217"\w* \w and|strong="G2532"\w* \w washed|strong="G3538"\w*, \w and|strong="G2532"\w* \w I|strong="G1473"\w* \w received|strong="G3788"\w* \w sight|strong="G3788"\w*.” +\p +\v 12 \w Then|strong="G2532"\w* \w they|strong="G2532"\w* \w asked|strong="G3004"\w* \w him|strong="G1565"\w*, “\w Where|strong="G4226"\w* \w is|strong="G1510"\w* \w he|strong="G2532"\w*?” +\p \w He|strong="G2532"\w* \w said|strong="G3004"\w*, “\w I|strong="G2532"\w* don’t \w know|strong="G1492"\w*.” +\p +\v 13 \w They|strong="G3588"\w* brought \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w had|strong="G3588"\w* been \w blind|strong="G5185"\w* \w to|strong="G4314"\w* \w the|strong="G4314"\w* \w Pharisees|strong="G5330"\w*. +\v 14 \w It|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w Sabbath|strong="G4521"\w* \w when|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w made|strong="G4160"\w* \w the|strong="G1722"\w* \w mud|strong="G4081"\w* \w and|strong="G2532"\w* opened \w his|strong="G1722"\w* \w eyes|strong="G3788"\w*. +\v 15 \w Again|strong="G3825"\w* \w therefore|strong="G3767"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w also|strong="G2532"\w* \w asked|strong="G2065"\w* \w him|strong="G3588"\w* \w how|strong="G4459"\w* \w he|strong="G2532"\w* \w received|strong="G3788"\w* \w his|strong="G2007"\w* \w sight|strong="G3788"\w*. \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, “\w He|strong="G2532"\w* \w put|strong="G2007"\w* \w mud|strong="G4081"\w* \w on|strong="G1909"\w* \w my|strong="G1473"\w* \w eyes|strong="G3788"\w*, \w I|strong="G1473"\w* \w washed|strong="G3538"\w*, \w and|strong="G2532"\w* \w I|strong="G1473"\w* see.” +\p +\v 16 \w Some|strong="G5100"\w* \w therefore|strong="G3767"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w Pharisees|strong="G5330"\w* \w said|strong="G3004"\w*, “\w This|strong="G3778"\w* \w man|strong="G5100"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w from|strong="G1537"\w* \w God|strong="G2316"\w*, \w because|strong="G3754"\w* \w he|strong="G2532"\w* doesn’\w t|strong="G3588"\w* \w keep|strong="G5083"\w* \w the|strong="G1722"\w* \w Sabbath|strong="G4521"\w*.” +\p \w Others|strong="G3588"\w* \w said|strong="G3004"\w*, “\w How|strong="G4459"\w* \w can|strong="G1410"\w* \w a|strong="G2532"\w* \w man|strong="G5100"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w a|strong="G2532"\w* sinner \w do|strong="G4160"\w* \w such|strong="G5108"\w* \w signs|strong="G4592"\w*?” \w So|strong="G3767"\w* \w there|strong="G2532"\w* \w was|strong="G1510"\w* \w division|strong="G4978"\w* \w among|strong="G1722"\w* \w them|strong="G3588"\w*. +\p +\v 17 \w Therefore|strong="G3767"\w* \w they|strong="G1161"\w* \w asked|strong="G3004"\w* \w the|strong="G1161"\w* \w blind|strong="G5185"\w* \w man|strong="G5185"\w* \w again|strong="G3825"\w*, “\w What|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G4771"\w* \w say|strong="G3004"\w* \w about|strong="G4012"\w* \w him|strong="G3588"\w*, \w because|strong="G3754"\w* \w he|strong="G1161"\w* opened \w your|strong="G3588"\w* \w eyes|strong="G3788"\w*?” +\p \w He|strong="G1161"\w* \w said|strong="G3004"\w*, “\w He|strong="G1161"\w* \w is|strong="G1510"\w* \w a|strong="G1510"\w* \w prophet|strong="G4396"\w*.” +\p +\v 18 \w The|strong="G2532"\w* \w Jews|strong="G2453"\w* \w therefore|strong="G3767"\w* didn’\w t|strong="G3588"\w* \w believe|strong="G4100"\w* \w concerning|strong="G4012"\w* \w him|strong="G3588"\w*, \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w been|strong="G1510"\w* \w blind|strong="G5185"\w* \w and|strong="G2532"\w* \w had|strong="G2532"\w* received \w his|strong="G4012"\w* \w sight|strong="G3588"\w*, \w until|strong="G2193"\w* \w they|strong="G2532"\w* \w called|strong="G5455"\w* \w the|strong="G2532"\w* \w parents|strong="G1118"\w* \w of|strong="G4012"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w had|strong="G2532"\w* received \w his|strong="G4012"\w* \w sight|strong="G3588"\w*, +\v 19 \w and|strong="G2532"\w* \w asked|strong="G2065"\w* \w them|strong="G3588"\w*, “\w Is|strong="G1510"\w* \w this|strong="G3778"\w* \w your|strong="G2532"\w* \w son|strong="G5207"\w*, \w whom|strong="G3739"\w* \w you|strong="G5210"\w* \w say|strong="G3004"\w* \w was|strong="G1510"\w* \w born|strong="G1080"\w* \w blind|strong="G5185"\w*? \w How|strong="G4459"\w* \w then|strong="G3767"\w* \w does|strong="G1510"\w* \w he|strong="G2532"\w* \w now|strong="G2532"\w* see?” +\p +\v 20 \w His|strong="G2532"\w* \w parents|strong="G1118"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, “\w We|strong="G2249"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w this|strong="G3778"\w* \w is|strong="G1510"\w* \w our|strong="G2532"\w* \w son|strong="G5207"\w*, \w and|strong="G2532"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w born|strong="G1080"\w* \w blind|strong="G5185"\w*; +\v 21 \w but|strong="G1161"\w* \w how|strong="G4459"\w* \w he|strong="G1161"\w* \w now|strong="G1161"\w* \w sees|strong="G1492"\w*, \w we|strong="G2249"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w*; \w or|strong="G2228"\w* \w who|strong="G5101"\w* \w opened|strong="G4459"\w* \w his|strong="G1438"\w* \w eyes|strong="G3788"\w*, \w we|strong="G2249"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w*. \w He|strong="G1161"\w* \w is|strong="G3588"\w* \w of|strong="G4012"\w* \w age|strong="G2244"\w*. \w Ask|strong="G2065"\w* \w him|strong="G3588"\w*. \w He|strong="G1161"\w* \w will|strong="G5101"\w* \w speak|strong="G2980"\w* \w for|strong="G4012"\w* \w himself|strong="G1438"\w*.” +\v 22 \w His|strong="G3754"\w* \w parents|strong="G1118"\w* \w said|strong="G3004"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w because|strong="G3754"\w* \w they|strong="G3588"\w* \w feared|strong="G5399"\w* \w the|strong="G3588"\w* \w Jews|strong="G2453"\w*; \w for|strong="G1063"\w* \w the|strong="G3588"\w* \w Jews|strong="G2453"\w* \w had|strong="G3588"\w* \w already|strong="G2235"\w* \w agreed|strong="G4934"\w* \w that|strong="G3754"\w* \w if|strong="G1437"\w* \w any|strong="G5100"\w* \w man|strong="G5100"\w* \w would|strong="G1096"\w* \w confess|strong="G3670"\w* \w him|strong="G3588"\w* \w as|strong="G1096"\w* \w Christ|strong="G5547"\w*, \w he|strong="G3754"\w* \w would|strong="G1096"\w* \w be|strong="G1096"\w* \w put|strong="G1096"\w* \w out|strong="G1096"\w* \w of|strong="G5100"\w* \w the|strong="G3588"\w* synagogue. +\v 23 \w Therefore|strong="G1223"\w* \w his|strong="G1223"\w* \w parents|strong="G1118"\w* \w said|strong="G3004"\w*, “\w He|strong="G3754"\w* \w is|strong="G3588"\w* \w of|strong="G1223"\w* \w age|strong="G2244"\w*. \w Ask|strong="G1905"\w* \w him|strong="G3588"\w*.” +\p +\v 24 \w So|strong="G3767"\w* \w they|strong="G2532"\w* \w called|strong="G3004"\w* \w the|strong="G2532"\w* \w man|strong="G3778"\w* \w who|strong="G3739"\w* \w was|strong="G1510"\w* \w blind|strong="G5185"\w* \w a|strong="G2532"\w* \w second|strong="G1208"\w* \w time|strong="G1208"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Give|strong="G1325"\w* \w glory|strong="G1391"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w*. \w We|strong="G2249"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w is|strong="G1510"\w* \w a|strong="G2532"\w* sinner.” +\p +\v 25 \w He|strong="G3754"\w* \w therefore|strong="G3767"\w* answered, “\w I|strong="G3754"\w* don’t \w know|strong="G1492"\w* \w if|strong="G1487"\w* \w he|strong="G3754"\w* \w is|strong="G1510"\w* \w a|strong="G1510"\w* sinner. \w One|strong="G1520"\w* \w thing|strong="G1520"\w* \w I|strong="G3754"\w* \w do|strong="G1492"\w* \w know|strong="G1492"\w*: \w that|strong="G3754"\w* \w though|strong="G1487"\w* \w I|strong="G3754"\w* \w was|strong="G1510"\w* \w blind|strong="G5185"\w*, \w now|strong="G3767"\w* \w I|strong="G3754"\w* \w see|strong="G1492"\w*.” +\p +\v 26 \w They|strong="G3588"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w* again, “\w What|strong="G5101"\w* \w did|strong="G4160"\w* \w he|strong="G3588"\w* \w do|strong="G4160"\w* \w to|strong="G3004"\w* \w you|strong="G4771"\w*? \w How|strong="G4459"\w* \w did|strong="G4160"\w* \w he|strong="G3588"\w* open \w your|strong="G4160"\w* \w eyes|strong="G3788"\w*?” +\p +\v 27 \w He|strong="G2532"\w* \w answered|strong="G3004"\w* \w them|strong="G3004"\w*, “\w I|strong="G2532"\w* \w told|strong="G3004"\w* \w you|strong="G5210"\w* \w already|strong="G2235"\w*, \w and|strong="G2532"\w* \w you|strong="G5210"\w* didn’t listen. \w Why|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G5210"\w* \w want|strong="G2309"\w* \w to|strong="G2532"\w* \w hear|strong="G5101"\w* \w it|strong="G2532"\w* \w again|strong="G3825"\w*? \w You|strong="G5210"\w* don’t \w also|strong="G2532"\w* \w want|strong="G2309"\w* \w to|strong="G2532"\w* \w become|strong="G1096"\w* \w his|strong="G2532"\w* \w disciples|strong="G3101"\w*, \w do|strong="G5101"\w* \w you|strong="G5210"\w*?” +\p +\v 28 \w They|strong="G2532"\w* insulted \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w You|strong="G4771"\w* \w are|strong="G1510"\w* \w his|strong="G2532"\w* \w disciple|strong="G3101"\w*, \w but|strong="G1161"\w* \w we|strong="G2249"\w* \w are|strong="G1510"\w* \w disciples|strong="G3101"\w* \w of|strong="G2532"\w* \w Moses|strong="G3475"\w*. +\v 29 \w We|strong="G2249"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w spoken|strong="G2980"\w* \w to|strong="G3756"\w* \w Moses|strong="G3475"\w*. \w But|strong="G1161"\w* \w as|strong="G1161"\w* \w for|strong="G3754"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w*, \w we|strong="G2249"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w where|strong="G4159"\w* \w he|strong="G1161"\w* \w comes|strong="G1510"\w* \w from|strong="G3756"\w*.” +\p +\v 30 \w The|strong="G1722"\w* \w man|strong="G3778"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, “\w How|strong="G3754"\w* \w amazing|strong="G2298"\w*! \w You|strong="G5210"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w where|strong="G4159"\w* \w he|strong="G2532"\w* \w comes|strong="G1510"\w* \w from|strong="G2532"\w*, \w yet|strong="G2532"\w* \w he|strong="G2532"\w* opened \w my|strong="G1722"\w* \w eyes|strong="G3788"\w*. +\v 31 \w We|strong="G1437"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w God|strong="G2316"\w* doesn’\w t|strong="G3588"\w* \w listen|strong="G1492"\w* \w to|strong="G2532"\w* sinners, \w but|strong="G2532"\w* \w if|strong="G1437"\w* \w anyone|strong="G5100"\w* \w is|strong="G1510"\w* \w a|strong="G2532"\w* worshiper \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w does|strong="G4160"\w* \w his|strong="G4160"\w* \w will|strong="G2307"\w*, \w he|strong="G2532"\w* listens \w to|strong="G2532"\w* \w him|strong="G3588"\w*.\x + \xo 9:31 \xt Psalms 66:18; Proverbs 15:29; 28:9\x* +\v 32 \w Since|strong="G3754"\w* \w the|strong="G1537"\w* world began \w it|strong="G3754"\w* \w has|strong="G5100"\w* \w never|strong="G3756"\w* \w been|strong="G3756"\w* heard \w of|strong="G1537"\w* \w that|strong="G3754"\w* \w anyone|strong="G5100"\w* opened \w the|strong="G1537"\w* \w eyes|strong="G3788"\w* \w of|strong="G1537"\w* \w someone|strong="G5100"\w* \w born|strong="G1080"\w* \w blind|strong="G5185"\w*. +\v 33 \w If|strong="G1487"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w were|strong="G1510"\w* \w not|strong="G3756"\w* \w from|strong="G3844"\w* \w God|strong="G2316"\w*, \w he|strong="G3778"\w* \w could|strong="G1410"\w* \w do|strong="G4160"\w* \w nothing|strong="G3762"\w*.” +\p +\v 34 \w They|strong="G2532"\w* \w answered|strong="G3004"\w* \w him|strong="G2532"\w*, “\w You|strong="G4771"\w* \w were|strong="G2532"\w* \w altogether|strong="G3650"\w* \w born|strong="G1080"\w* \w in|strong="G1722"\w* sins, \w and|strong="G2532"\w* \w do|strong="G2532"\w* \w you|strong="G4771"\w* \w teach|strong="G1321"\w* \w us|strong="G3004"\w*?” \w Then|strong="G2532"\w* \w they|strong="G2532"\w* \w threw|strong="G1544"\w* \w him|strong="G2532"\w* \w out|strong="G1544"\w*. +\p +\v 35 \w Jesus|strong="G2424"\w* heard \w that|strong="G3754"\w* \w they|strong="G2532"\w* \w had|strong="G2424"\w* \w thrown|strong="G1544"\w* \w him|strong="G3588"\w* \w out|strong="G1544"\w*, \w and|strong="G2532"\w* \w finding|strong="G2147"\w* \w him|strong="G3588"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Do|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w believe|strong="G4100"\+w* \+w in|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w God|strong="G3004"\+w*?”\wj* +\p +\v 36 \w He|strong="G2532"\w* \w answered|strong="G3004"\w*, “\w Who|strong="G5101"\w* \w is|strong="G1510"\w* \w he|strong="G2532"\w*, \w Lord|strong="G2962"\w*, \w that|strong="G2443"\w* \w I|strong="G2532"\w* \w may|strong="G2532"\w* \w believe|strong="G4100"\w* \w in|strong="G1519"\w* \w him|strong="G1565"\w*?” +\p +\v 37 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w You|strong="G4771"\+w* \+w have|strong="G2532"\+w* \+w both|strong="G2532"\+w* \+w seen|strong="G3708"\+w* \+w him|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w speaks|strong="G2980"\+w* \+w with|strong="G3326"\+w* \+w you|strong="G4771"\+w*.”\wj* +\p +\v 38 \w He|strong="G2532"\w* \w said|strong="G5346"\w*, “\w Lord|strong="G2962"\w*, \w I|strong="G2532"\w* \w believe|strong="G4100"\w*!” \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w worshiped|strong="G4352"\w* \w him|strong="G3588"\w*. +\p +\v 39 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w*, \wj “\+w I|strong="G1473"\+w* \+w came|strong="G2064"\+w* \+w into|strong="G1519"\+w* \+w this|strong="G3778"\+w* \+w world|strong="G2889"\+w* \+w for|strong="G1519"\+w* \+w judgment|strong="G2917"\+w*, \+w that|strong="G2443"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* don’\+w t|strong="G3588"\+w* see \+w may|strong="G2532"\+w* see; \+w and|strong="G2532"\+w* \+w that|strong="G2443"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* see \+w may|strong="G2532"\+w* \+w become|strong="G1096"\+w* \+w blind|strong="G5185"\+w*.”\wj* +\p +\v 40 \w Those|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w who|strong="G3588"\w* \w were|strong="G1510"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w* heard \w these|strong="G3326"\w* \w things|strong="G3588"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Are|strong="G1510"\w* \w we|strong="G2249"\w* \w also|strong="G2532"\w* \w blind|strong="G5185"\w*?” +\p +\v 41 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w If|strong="G1487"\+w* \+w you|strong="G5210"\+w* \+w were|strong="G1510"\+w* \+w blind|strong="G5185"\+w*, \+w you|strong="G5210"\+w* \+w would|strong="G1510"\+w* \+w have|strong="G2192"\+w* \+w no|strong="G3756"\+w* sin; \+w but|strong="G1161"\+w* \+w now|strong="G1161"\+w* \+w you|strong="G5210"\+w* \+w say|strong="G3004"\+w*, ‘\+w We|strong="G3754"\+w* see.’ \+w Therefore|strong="G1161"\+w* \+w your|strong="G2192"\+w* sin \+w remains|strong="G3306"\+w*.\wj* +\c 10 +\p +\v 1 \wj “Most \+w certainly|strong="G2532"\+w*, \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w one|strong="G3588"\+w* \+w who|strong="G3588"\+w* doesn’\+w t|strong="G3588"\+w* \+w enter|strong="G1525"\+w* \+w by|strong="G1223"\+w* \+w the|strong="G2532"\+w* \+w door|strong="G2374"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w sheep|strong="G4263"\+w* fold, \+w but|strong="G2532"\+w* climbs \+w up|strong="G1519"\+w* \+w some|strong="G3588"\+w* \+w other|strong="G3361"\+w* \+w way|strong="G1223"\+w*, \+w is|strong="G1510"\+w* \+w a|strong="G2532"\+w* \+w thief|strong="G2812"\+w* \+w and|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w robber|strong="G3027"\+w*. \wj* +\v 2 \wj \+w But|strong="G1161"\+w* \+w one|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w enters|strong="G1525"\+w* \+w in|strong="G1525"\+w* \+w by|strong="G1223"\+w* \+w the|strong="G1161"\+w* \+w door|strong="G2374"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G1161"\+w* \+w shepherd|strong="G4166"\+w* \+w of|strong="G1223"\+w* \+w the|strong="G1161"\+w* \+w sheep|strong="G4263"\+w*. \wj* +\v 3 \wj \+w The|strong="G2532"\+w* gatekeeper opens \+w the|strong="G2532"\+w* gate \+w for|strong="G2532"\+w* \+w him|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w sheep|strong="G4263"\+w* listen \+w to|strong="G2532"\+w* \+w his|strong="G2398"\+w* \+w voice|strong="G5456"\+w*. \+w He|strong="G2532"\+w* \+w calls|strong="G5455"\+w* \+w his|strong="G2398"\+w* \+w own|strong="G2398"\+w* \+w sheep|strong="G4263"\+w* \+w by|strong="G2596"\+w* \+w name|strong="G3686"\+w* \+w and|strong="G2532"\+w* \+w leads|strong="G1806"\+w* \+w them|strong="G3588"\+w* \+w out|strong="G1806"\+w*. \wj* +\v 4 \wj \+w Whenever|strong="G3752"\+w* \+w he|strong="G2532"\+w* \+w brings|strong="G1544"\+w* \+w out|strong="G1544"\+w* \+w his|strong="G3956"\+w* \+w own|strong="G2398"\+w* \+w sheep|strong="G4263"\+w*, \+w he|strong="G2532"\+w* \+w goes|strong="G4198"\+w* \+w before|strong="G1715"\+w* \+w them|strong="G3588"\+w*; \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w sheep|strong="G4263"\+w* \+w follow|strong="G4198"\+w* \+w him|strong="G3588"\+w*, \+w for|strong="G3754"\+w* \+w they|strong="G2532"\+w* \+w know|strong="G1492"\+w* \+w his|strong="G3956"\+w* \+w voice|strong="G5456"\+w*. \wj* +\v 5 \wj \+w They|strong="G1161"\+w* \+w will|strong="G3748"\+w* \+w by|strong="G3361"\+w* \+w no|strong="G3756"\+w* \+w means|strong="G3361"\+w* \+w follow|strong="G1161"\+w* \+w a|strong="G1161"\+w* stranger, \+w but|strong="G1161"\+w* \+w will|strong="G3748"\+w* \+w flee|strong="G5343"\+w* \+w from|strong="G5456"\+w* \+w him|strong="G3588"\+w*; \+w for|strong="G3754"\+w* \+w they|strong="G1161"\+w* don’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w* \+w the|strong="G1161"\+w* \+w voice|strong="G5456"\+w* \+w of|strong="G5456"\+w* strangers.”\wj* +\v 6 \w Jesus|strong="G2424"\w* \w spoke|strong="G2980"\w* \w this|strong="G3778"\w* \w parable|strong="G3942"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, \w but|strong="G1161"\w* \w they|strong="G1161"\w* didn’\w t|strong="G3588"\w* \w understand|strong="G1097"\w* \w what|strong="G5101"\w* \w he|strong="G1161"\w* \w was|strong="G1510"\w* \w telling|strong="G3004"\w* \w them|strong="G3588"\w*. +\p +\v 7 \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w* \w again|strong="G3825"\w*, \wj “Most certainly, \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w the|strong="G3588"\+w* \+w sheep|strong="G4263"\+w*’s \+w door|strong="G2374"\+w*. \wj* +\v 8 \wj \+w All|strong="G3956"\+w* \+w who|strong="G3588"\+w* \+w came|strong="G2064"\+w* \+w before|strong="G4253"\+w* \+w me|strong="G1473"\+w* \+w are|strong="G1510"\+w* \+w thieves|strong="G2812"\+w* \+w and|strong="G2532"\+w* \+w robbers|strong="G3027"\+w*, \+w but|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w sheep|strong="G4263"\+w* didn’\+w t|strong="G3588"\+w* listen \+w to|strong="G2532"\+w* \+w them|strong="G3588"\+w*. \wj* +\v 9 \wj \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w door|strong="G2374"\+w*. \+w If|strong="G1437"\+w* \+w anyone|strong="G5100"\+w* \+w enters|strong="G1525"\+w* \+w in|strong="G1525"\+w* \+w by|strong="G1223"\+w* \+w me|strong="G1473"\+w*, \+w he|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w saved|strong="G4982"\+w*, \+w and|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w go|strong="G1831"\+w* \+w in|strong="G1525"\+w* \+w and|strong="G2532"\+w* \+w go|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w and|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w find|strong="G2147"\+w* \+w pasture|strong="G3542"\+w*. \wj* +\v 10 \wj \+w The|strong="G2532"\+w* \+w thief|strong="G2812"\+w* \+w only|strong="G1487"\+w* \+w comes|strong="G2064"\+w* \+w to|strong="G2443"\+w* \+w steal|strong="G2813"\+w*, \+w kill|strong="G2380"\+w*, \+w and|strong="G2532"\+w* destroy. \+w I|strong="G1473"\+w* \+w came|strong="G2064"\+w* \+w that|strong="G2443"\+w* \+w they|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w life|strong="G2222"\+w*, \+w and|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w it|strong="G2532"\+w* \+w abundantly|strong="G4053"\+w*. \wj* +\p +\v 11 \wj “\+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w the|strong="G3588"\+w* \+w good|strong="G2570"\+w* \+w shepherd|strong="G4166"\+w*.\wj*\x + \xo 10:11 \xt Isaiah 40:11; Ezekiel 34:11-12,15,22\x* \wj \+w The|strong="G3588"\+w* \+w good|strong="G2570"\+w* \+w shepherd|strong="G4166"\+w* \+w lays|strong="G5087"\+w* \+w down|strong="G5087"\+w* \+w his|strong="G5087"\+w* \+w life|strong="G5590"\+w* \+w for|strong="G5228"\+w* \+w the|strong="G3588"\+w* \+w sheep|strong="G4263"\+w*. \wj* +\v 12 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3739"\+w* \+w is|strong="G1510"\+w* \+w a|strong="G2532"\+w* \+w hired|strong="G3411"\+w* \+w hand|strong="G3411"\+w*, \+w and|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w a|strong="G2532"\+w* \+w shepherd|strong="G4166"\+w*, \+w who|strong="G3739"\+w* doesn’\+w t|strong="G3588"\+w* \+w own|strong="G2398"\+w* \+w the|strong="G2532"\+w* \+w sheep|strong="G4263"\+w*, \+w sees|strong="G2334"\+w* \+w the|strong="G2532"\+w* \+w wolf|strong="G3074"\+w* \+w coming|strong="G2064"\+w*, leaves \+w the|strong="G2532"\+w* \+w sheep|strong="G4263"\+w*, \+w and|strong="G2532"\+w* \+w flees|strong="G5343"\+w*. \+w The|strong="G2532"\+w* \+w wolf|strong="G3074"\+w* snatches \+w the|strong="G2532"\+w* \+w sheep|strong="G4263"\+w* \+w and|strong="G2532"\+w* \+w scatters|strong="G4650"\+w* \+w them|strong="G3588"\+w*. \wj* +\v 13 \wj \+w The|strong="G2532"\+w* \+w hired|strong="G3411"\+w* \+w hand|strong="G3411"\+w* flees \+w because|strong="G3754"\+w* \+w he|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w a|strong="G2532"\+w* \+w hired|strong="G3411"\+w* \+w hand|strong="G3411"\+w* \+w and|strong="G2532"\+w* doesn’\+w t|strong="G3588"\+w* \+w care|strong="G3199"\+w* \+w for|strong="G3754"\+w* \+w the|strong="G2532"\+w* \+w sheep|strong="G4263"\+w*. \wj* +\v 14 \wj \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w good|strong="G2570"\+w* \+w shepherd|strong="G4166"\+w*. \+w I|strong="G1473"\+w* \+w know|strong="G1097"\+w* \+w my|strong="G1699"\+w* \+w own|strong="G1699"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w*’m \+w known|strong="G1097"\+w* \+w by|strong="G2532"\+w* \+w my|strong="G1699"\+w* \+w own|strong="G1699"\+w*; \wj* +\v 15 \wj \+w even|strong="G2532"\+w* \+w as|strong="G2531"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w knows|strong="G1097"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w know|strong="G1097"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w*. \+w I|strong="G1473"\+w* \+w lay|strong="G5087"\+w* \+w down|strong="G5087"\+w* \+w my|strong="G5087"\+w* \+w life|strong="G5590"\+w* \+w for|strong="G5228"\+w* \+w the|strong="G2532"\+w* \+w sheep|strong="G4263"\+w*. \wj* +\v 16 \wj \+w I|strong="G1473"\+w* \+w have|strong="G2192"\+w* \+w other|strong="G1520"\+w* \+w sheep|strong="G4263"\+w* \+w which|strong="G3739"\+w* \+w are|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w of|strong="G1537"\+w* \+w this|strong="G3778"\+w* \+w fold|strong="G4167"\+w*.\wj*\x + \xo 10:16 \xt Isaiah 56:8 \x* \wj \+w I|strong="G1473"\+w* \+w must|strong="G1163"\+w* \+w bring|strong="G2532"\+w* \+w them|strong="G3588"\+w* \+w also|strong="G2532"\+w*, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w hear|strong="G5456"\+w* \+w my|strong="G1473"\+w* \+w voice|strong="G5456"\+w*. \+w They|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w become|strong="G1096"\+w* \+w one|strong="G1520"\+w* \+w flock|strong="G4167"\+w* \+w with|strong="G1537"\+w* \+w one|strong="G1520"\+w* \+w shepherd|strong="G4166"\+w*. \wj* +\v 17 \wj \+w Therefore|strong="G1223"\+w* \+w the|strong="G1223"\+w* \+w Father|strong="G3962"\+w* loves \+w me|strong="G1473"\+w*, \+w because|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w lay|strong="G5087"\+w* \+w down|strong="G5087"\+w* \+w my|strong="G5087"\+w* \+w life|strong="G5590"\+w*, \wj*\x + \xo 10:17 \xt Isaiah 53:7-8\x* \wj \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w may|strong="G2443"\+w* \+w take|strong="G2983"\+w* \+w it|strong="G3754"\+w* \+w again|strong="G3825"\+w*. \wj* +\v 18 \wj \+w No|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w takes|strong="G2983"\+w* \+w it|strong="G2532"\+w* \+w away|strong="G5087"\+w* \+w from|strong="G3844"\+w* \+w me|strong="G1473"\+w*, \+w but|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w lay|strong="G5087"\+w* \+w it|strong="G2532"\+w* \+w down|strong="G5087"\+w* \+w by|strong="G3844"\+w* \+w myself|strong="G1683"\+w*. \+w I|strong="G1473"\+w* \+w have|strong="G2192"\+w* \+w power|strong="G1849"\+w* \+w to|strong="G2532"\+w* \+w lay|strong="G5087"\+w* \+w it|strong="G2532"\+w* \+w down|strong="G5087"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G2192"\+w* \+w power|strong="G1849"\+w* \+w to|strong="G2532"\+w* \+w take|strong="G2983"\+w* \+w it|strong="G2532"\+w* \+w again|strong="G3825"\+w*. \+w I|strong="G1473"\+w* \+w received|strong="G2983"\+w* \+w this|strong="G3778"\+w* \+w commandment|strong="G1785"\+w* \+w from|strong="G3844"\+w* \+w my|strong="G5087"\+w* \+w Father|strong="G3962"\+w*.”\wj* +\p +\v 19 \w Therefore|strong="G1223"\w* \w a|strong="G1096"\w* \w division|strong="G4978"\w* \w arose|strong="G1096"\w* \w again|strong="G3825"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w* \w because|strong="G1223"\w* \w of|strong="G3056"\w* \w these|strong="G3778"\w* \w words|strong="G3056"\w*. +\v 20 \w Many|strong="G4183"\w* \w of|strong="G1537"\w* \w them|strong="G3004"\w* \w said|strong="G3004"\w*, “\w He|strong="G2532"\w* \w has|strong="G2192"\w* \w a|strong="G2192"\w* \w demon|strong="G1140"\w* \w and|strong="G2532"\w* \w is|strong="G5101"\w* \w insane|strong="G3105"\w*! \w Why|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G3004"\w* listen \w to|strong="G2532"\w* \w him|strong="G2532"\w*?” +\v 21 \w Others|strong="G3588"\w* \w said|strong="G3004"\w*, “\w These|strong="G3778"\w* \w are|strong="G1510"\w* \w not|strong="G3756"\w* \w the|strong="G3588"\w* \w sayings|strong="G4487"\w* \w of|strong="G4487"\w* \w one|strong="G3588"\w* possessed \w by|strong="G3004"\w* \w a|strong="G1510"\w* \w demon|strong="G1140"\w*. \w It|strong="G3778"\w* isn’\w t|strong="G3588"\w* \w possible|strong="G1410"\w* \w for|strong="G3756"\w* \w a|strong="G1510"\w* \w demon|strong="G1140"\w* \w to|strong="G3004"\w* open \w the|strong="G3588"\w* \w eyes|strong="G3788"\w* \w of|strong="G4487"\w* \w the|strong="G3588"\w* \w blind|strong="G5185"\w*, \w is|strong="G1510"\w* \w it|strong="G3778"\w*?”\x + \xo 10:21 \xt Exodus 4:11\x* +\p +\v 22 \w It|strong="G1161"\w* \w was|strong="G1510"\w* \w the|strong="G1722"\w* \w Feast|strong="G1456"\w* \w of|strong="G1722"\w* \w the|strong="G1722"\w* \w Dedication|strong="G1456"\w*\f + \fr 10:22 \ft The “Feast of the Dedication” is the Greek name for “Hanukkah”, a celebration of the rededication of the Temple.\f* \w at|strong="G1722"\w* \w Jerusalem|strong="G2414"\w*. +\v 23 \w It|strong="G2532"\w* \w was|strong="G3588"\w* winter, \w and|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w was|strong="G3588"\w* \w walking|strong="G4043"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w*, \w in|strong="G1722"\w* \w Solomon|strong="G4672"\w*’s \w porch|strong="G4745"\w*. +\v 24 \w The|strong="G2532"\w* \w Jews|strong="G2453"\w* \w therefore|strong="G3767"\w* \w came|strong="G2532"\w* \w around|strong="G2944"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w How|strong="G2193"\w* \w long|strong="G2193"\w* \w will|strong="G1510"\w* \w you|strong="G4771"\w* \w hold|strong="G2249"\w* \w us|strong="G3004"\w* \w in|strong="G2532"\w* \w suspense|strong="G5590"\w*? \w If|strong="G1487"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* \w Christ|strong="G5547"\w*, \w tell|strong="G3004"\w* \w us|strong="G3004"\w* \w plainly|strong="G3954"\w*.” +\p +\v 25 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w I|strong="G1473"\+w* \+w told|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* \+w believe|strong="G4100"\+w*. \+w The|strong="G1722"\+w* \+w works|strong="G2041"\+w* \+w that|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w do|strong="G4160"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w Father|strong="G3962"\+w*’s \+w name|strong="G3686"\+w*, \+w these|strong="G3778"\+w* \+w testify|strong="G3140"\+w* \+w about|strong="G4012"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 26 \wj \+w But|strong="G3588"\+w* \+w you|strong="G5210"\+w* don’\+w t|strong="G3588"\+w* \+w believe|strong="G4100"\+w*, \+w because|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w of|strong="G1537"\+w* \+w my|strong="G1699"\+w* \+w sheep|strong="G4263"\+w*, \+w as|strong="G3754"\+w* \+w I|strong="G3754"\+w* told \+w you|strong="G5210"\+w*. \wj* +\v 27 \wj \+w My|strong="G1699"\+w* \+w sheep|strong="G4263"\+w* \+w hear|strong="G5456"\+w* \+w my|strong="G1699"\+w* \+w voice|strong="G5456"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w know|strong="G1097"\+w* \+w them|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* follow \+w me|strong="G1473"\+w*. \wj* +\v 28 \wj \+w I|strong="G1473"\+w* \+w give|strong="G1325"\+w* eternal \+w life|strong="G2222"\+w* \+w to|strong="G1519"\+w* \+w them|strong="G3588"\+w*. \+w They|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w never|strong="G3756"\+w* perish, \+w and|strong="G2532"\+w* \+w no|strong="G3756"\+w* \+w one|strong="G5100"\+w* \+w will|strong="G2532"\+w* snatch \+w them|strong="G3588"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w my|strong="G1325"\+w* \+w hand|strong="G5495"\+w*. \wj* +\v 29 \wj \+w My|strong="G3956"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3739"\+w* \+w has|strong="G3962"\+w* \+w given|strong="G1325"\+w* \+w them|strong="G3588"\+w* \+w to|strong="G2532"\+w* \+w me|strong="G1325"\+w* \+w is|strong="G1510"\+w* \+w greater|strong="G3173"\+w* \+w than|strong="G3173"\+w* \+w all|strong="G3956"\+w*. \+w No|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w is|strong="G1510"\+w* \+w able|strong="G1410"\+w* \+w to|strong="G2532"\+w* snatch \+w them|strong="G3588"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w my|strong="G3956"\+w* \+w Father|strong="G3962"\+w*’s \+w hand|strong="G5495"\+w*. \wj* +\v 30 \wj \+w I|strong="G1473"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w are|strong="G1510"\+w* \+w one|strong="G1520"\+w*.”\wj* +\p +\v 31 \w Therefore|strong="G3767"\w* \w the|strong="G3588"\w* \w Jews|strong="G2453"\w* \w took|strong="G2453"\w* up \w stones|strong="G3037"\w* \w again|strong="G3825"\w* \w to|strong="G2443"\w* \w stone|strong="G3037"\w* \w him|strong="G3588"\w*. +\v 32 \w Jesus|strong="G2424"\w* answered \w them|strong="G3588"\w*, \wj “\+w I|strong="G1473"\+w* \+w have|strong="G1473"\+w* \+w shown|strong="G1166"\+w* \+w you|strong="G5210"\+w* \+w many|strong="G4183"\+w* \+w good|strong="G2570"\+w* \+w works|strong="G2041"\+w* \+w from|strong="G1537"\+w* \+w my|strong="G1473"\+w* \+w Father|strong="G3962"\+w*. \+w For|strong="G1223"\+w* \+w which|strong="G3588"\+w* \+w of|strong="G1537"\+w* \+w those|strong="G3588"\+w* \+w works|strong="G2041"\+w* \+w do|strong="G2041"\+w* \+w you|strong="G5210"\+w* \+w stone|strong="G3034"\+w* \+w me|strong="G1473"\+w*?”\wj* +\p +\v 33 \w The|strong="G2532"\w* \w Jews|strong="G2453"\w* answered \w him|strong="G3588"\w*, “\w We|strong="G3754"\w* don’\w t|strong="G3588"\w* \w stone|strong="G3034"\w* \w you|strong="G4771"\w* \w for|strong="G3754"\w* \w a|strong="G2532"\w* \w good|strong="G2570"\w* \w work|strong="G2041"\w*, \w but|strong="G2532"\w* \w for|strong="G3754"\w* blasphemy, \w because|strong="G3754"\w* \w you|strong="G4771"\w*, \w being|strong="G1510"\w* \w a|strong="G2532"\w* \w man|strong="G3756"\w*, \w make|strong="G4160"\w* \w yourself|strong="G4572"\w* \w God|strong="G2316"\w*.” +\p +\v 34 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “Isn’\+w t|strong="G3588"\+w* \+w it|strong="G3754"\+w* \+w written|strong="G1125"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G1722"\+w* \+w law|strong="G3551"\+w*, ‘\+w I|strong="G1473"\+w* \+w said|strong="G3004"\+w*, \+w you|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w gods|strong="G2316"\+w*’?\wj*\x + \xo 10:34 \xt Psalms 82:6\x* +\v 35 \wj \+w If|strong="G1487"\+w* \+w he|strong="G2532"\+w* \+w called|strong="G3004"\+w* \+w them|strong="G3588"\+w* \+w gods|strong="G2316"\+w*, \+w to|strong="G4314"\+w* \+w whom|strong="G3739"\+w* \+w the|strong="G2532"\+w* \+w word|strong="G3056"\+w* \+w of|strong="G3056"\+w* \+w God|strong="G2316"\+w* \+w came|strong="G1096"\+w* (\+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Scripture|strong="G1124"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w be|strong="G1096"\+w* \+w broken|strong="G3089"\+w*), \wj* +\v 36 \wj \+w do|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w say|strong="G3004"\+w* \+w of|strong="G5207"\+w* \+w him|strong="G3588"\+w* \+w whom|strong="G3739"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w* sanctified \+w and|strong="G2532"\+w* \+w sent|strong="G2316"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w world|strong="G2889"\+w*, ‘\+w You|strong="G5210"\+w* blaspheme,’ \+w because|strong="G3754"\+w* \+w I|strong="G3739"\+w* \+w said|strong="G3004"\+w*, ‘\+w I|strong="G3739"\+w* \+w am|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w God|strong="G2316"\+w*’? \wj* +\v 37 \wj \+w If|strong="G1487"\+w* \+w I|strong="G1473"\+w* don’\+w t|strong="G3588"\+w* \+w do|strong="G4160"\+w* \+w the|strong="G3588"\+w* \+w works|strong="G2041"\+w* \+w of|strong="G3962"\+w* \+w my|strong="G1473"\+w* \+w Father|strong="G3962"\+w*, don’\+w t|strong="G3588"\+w* \+w believe|strong="G4100"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 38 \wj \+w But|strong="G1161"\+w* \+w if|strong="G1487"\+w* \+w I|strong="G1473"\+w* \+w do|strong="G4160"\+w* \+w them|strong="G3588"\+w*, \+w though|strong="G1487"\+w* \+w you|strong="G1487"\+w* don’\+w t|strong="G3588"\+w* \+w believe|strong="G4100"\+w* \+w me|strong="G1473"\+w*, \+w believe|strong="G4100"\+w* \+w the|strong="G1722"\+w* \+w works|strong="G2041"\+w*, \+w that|strong="G3754"\+w* \+w you|strong="G1487"\+w* \+w may|strong="G2532"\+w* \+w know|strong="G1097"\+w* \+w and|strong="G2532"\+w* \+w believe|strong="G4100"\+w* \+w that|strong="G3754"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w is|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w*.” \wj* +\p +\v 39 \w They|strong="G2532"\w* \w sought|strong="G2212"\w* \w again|strong="G3825"\w* \w to|strong="G2532"\w* \w seize|strong="G4084"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w their|strong="G2532"\w* \w hand|strong="G5495"\w*. +\v 40 \w He|strong="G2532"\w* \w went|strong="G2532"\w* away \w again|strong="G3825"\w* \w beyond|strong="G4008"\w* \w the|strong="G2532"\w* \w Jordan|strong="G2446"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w place|strong="G5117"\w* \w where|strong="G3699"\w* \w John|strong="G2491"\w* \w was|strong="G1510"\w* baptizing \w at|strong="G1519"\w* \w first|strong="G4413"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w stayed|strong="G3306"\w* \w there|strong="G1563"\w*. +\v 41 \w Many|strong="G4183"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w him|strong="G4160"\w*. \w They|strong="G2532"\w* \w said|strong="G3004"\w*, “\w John|strong="G2491"\w* \w indeed|strong="G2532"\w* \w did|strong="G4160"\w* \w no|strong="G3762"\w* \w sign|strong="G4592"\w*, \w but|strong="G1161"\w* \w everything|strong="G3956"\w* \w that|strong="G3754"\w* \w John|strong="G2491"\w* \w said|strong="G3004"\w* \w about|strong="G4012"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w is|strong="G1510"\w* true.” +\v 42 \w Many|strong="G4183"\w* \w believed|strong="G4100"\w* \w in|strong="G1519"\w* \w him|strong="G2532"\w* \w there|strong="G1563"\w*. +\c 11 +\p +\v 1 \w Now|strong="G1161"\w* \w a|strong="G2532"\w* \w certain|strong="G5100"\w* \w man|strong="G5100"\w* \w was|strong="G1510"\w* sick, \w Lazarus|strong="G2976"\w* \w from|strong="G1537"\w* Bethany, \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w village|strong="G2968"\w* \w of|strong="G1537"\w* \w Mary|strong="G3137"\w* \w and|strong="G2532"\w* \w her|strong="G3137"\w* sister, \w Martha|strong="G3136"\w*. +\v 2 \w It|strong="G2532"\w* \w was|strong="G1510"\w* \w that|strong="G3739"\w* \w Mary|strong="G3137"\w* \w who|strong="G3739"\w* \w had|strong="G2532"\w* anointed \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w with|strong="G2532"\w* \w ointment|strong="G3464"\w* \w and|strong="G2532"\w* \w wiped|strong="G1591"\w* \w his|strong="G2532"\w* \w feet|strong="G4228"\w* \w with|strong="G2532"\w* \w her|strong="G3137"\w* \w hair|strong="G2359"\w*, \w whose|strong="G3739"\w* brother \w Lazarus|strong="G2976"\w* \w was|strong="G1510"\w* sick. +\v 3 \w The|strong="G4314"\w* sisters \w therefore|strong="G3767"\w* sent \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w Lord|strong="G2962"\w*, \w behold|strong="G2396"\w*, \w he|strong="G3739"\w* \w for|strong="G4314"\w* \w whom|strong="G3739"\w* \w you|strong="G3739"\w* \w have|strong="G3588"\w* great affection \w is|strong="G3588"\w* sick.” +\p +\v 4 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w Jesus|strong="G2424"\w* heard \w it|strong="G1161"\w*, \w he|strong="G1161"\w* \w said|strong="G3004"\w*, \wj “\+w This|strong="G3778"\+w* sickness \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w to|strong="G4314"\+w* \+w death|strong="G2288"\+w*, \+w but|strong="G1161"\+w* \+w for|strong="G5228"\+w* \+w the|strong="G1161"\+w* \+w glory|strong="G1391"\+w* \+w of|strong="G5207"\+w* \+w God|strong="G2316"\+w*, \+w that|strong="G2443"\+w* \+w God|strong="G2316"\+w*’s \+w Son|strong="G5207"\+w* \+w may|strong="G2443"\+w* \+w be|strong="G1510"\+w* \+w glorified|strong="G1392"\+w* \+w by|strong="G1223"\+w* \+w it|strong="G1161"\+w*.”\wj* +\v 5 \w Now|strong="G1161"\w* \w Jesus|strong="G2424"\w* loved \w Martha|strong="G3136"\w*, \w and|strong="G2532"\w* \w her|strong="G3588"\w* sister, \w and|strong="G2532"\w* \w Lazarus|strong="G2976"\w*. +\v 6 \w When|strong="G5613"\w* \w therefore|strong="G3767"\w* \w he|strong="G3739"\w* heard \w that|strong="G3754"\w* \w he|strong="G3739"\w* \w was|strong="G1510"\w* sick, \w he|strong="G3739"\w* \w stayed|strong="G3306"\w* \w two|strong="G1417"\w* \w days|strong="G2250"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w place|strong="G5117"\w* \w where|strong="G3739"\w* \w he|strong="G3739"\w* \w was|strong="G1510"\w*. +\v 7 \w Then|strong="G1899"\w* \w after|strong="G3326"\w* \w this|strong="G3778"\w* \w he|strong="G3778"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w disciples|strong="G3101"\w*, \wj “\+w Let|strong="G3004"\+w*’s \+w go|strong="G1519"\+w* \+w into|strong="G1519"\+w* \+w Judea|strong="G2449"\+w* \+w again|strong="G3825"\+w*.”\wj* +\p +\v 8 \w The|strong="G2532"\w* \w disciples|strong="G3101"\w* \w asked|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Rabbi|strong="G4461"\w*, \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w were|strong="G3588"\w* \w just|strong="G2532"\w* \w trying|strong="G2212"\w* \w to|strong="G2532"\w* \w stone|strong="G3034"\w* \w you|strong="G4771"\w*. \w Are|strong="G3588"\w* \w you|strong="G4771"\w* \w going|strong="G5217"\w* \w there|strong="G1563"\w* \w again|strong="G3825"\w*?” +\p +\v 9 \w Jesus|strong="G2424"\w* answered, \wj “Aren’\+w t|strong="G3588"\+w* \+w there|strong="G3754"\+w* \+w twelve|strong="G1427"\+w* \+w hours|strong="G5610"\+w* \+w of|strong="G2250"\+w* \+w daylight|strong="G2250"\+w*? \+w If|strong="G1437"\+w* \+w a|strong="G1722"\+w* \+w man|strong="G5100"\+w* \+w walks|strong="G4043"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w day|strong="G2250"\+w*, \+w he|strong="G3754"\+w* doesn’\+w t|strong="G3588"\+w* \+w stumble|strong="G4350"\+w*, \+w because|strong="G3754"\+w* \+w he|strong="G3754"\+w* sees \+w the|strong="G1722"\+w* \+w light|strong="G5457"\+w* \+w of|strong="G2250"\+w* \+w this|strong="G3778"\+w* \+w world|strong="G2889"\+w*. \wj* +\v 10 \wj \+w But|strong="G1161"\+w* \+w if|strong="G1437"\+w* \+w a|strong="G1722"\+w* \+w man|strong="G5100"\+w* \+w walks|strong="G4043"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w night|strong="G3571"\+w*, \+w he|strong="G1161"\+w* \+w stumbles|strong="G4350"\+w*, \+w because|strong="G3754"\+w* \+w the|strong="G1722"\+w* \+w light|strong="G5457"\+w* isn’\+w t|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w him|strong="G3588"\+w*.”\wj* +\v 11 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w and|strong="G2532"\w* \w after|strong="G3326"\w* \w that|strong="G2443"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2443"\w* \w them|strong="G3588"\w*, \wj “\+w Our|strong="G2532"\+w* \+w friend|strong="G5384"\+w* \+w Lazarus|strong="G2976"\+w* \+w has|strong="G3778"\+w* \+w fallen|strong="G2837"\+w* \+w asleep|strong="G2837"\+w*, \+w but|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* \+w going|strong="G4198"\+w* \+w so|strong="G2443"\+w* \+w that|strong="G2443"\+w* \+w I|strong="G1473"\+w* \+w may|strong="G2532"\+w* awake \+w him|strong="G3588"\+w* \+w out|strong="G2532"\+w* \+w of|strong="G2532"\+w* \+w sleep|strong="G2837"\+w*.”\wj* +\p +\v 12 \w The|strong="G3588"\w* \w disciples|strong="G3101"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w*, “\w Lord|strong="G2962"\w*, \w if|strong="G1487"\w* \w he|strong="G3588"\w* \w has|strong="G2962"\w* \w fallen|strong="G2837"\w* \w asleep|strong="G2837"\w*, \w he|strong="G3588"\w* \w will|strong="G2962"\w* \w recover|strong="G4982"\w*.” +\p +\v 13 \w Now|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* \w spoken|strong="G3004"\w* \w of|strong="G4012"\w* \w his|strong="G4012"\w* \w death|strong="G2288"\w*, \w but|strong="G1161"\w* \w they|strong="G1161"\w* \w thought|strong="G1380"\w* \w that|strong="G3754"\w* \w he|strong="G1161"\w* \w spoke|strong="G3004"\w* \w of|strong="G4012"\w* taking \w rest|strong="G2838"\w* \w in|strong="G3004"\w* \w sleep|strong="G5258"\w*. +\v 14 \w So|strong="G3767"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w* \w plainly|strong="G3954"\w* \w then|strong="G3767"\w*, \wj “\+w Lazarus|strong="G2976"\+w* \+w is|strong="G3588"\+w* dead. \wj* +\v 15 \wj \+w I|strong="G2532"\+w* \+w am|strong="G1510"\+w* \+w glad|strong="G5463"\+w* \+w for|strong="G3754"\+w* \+w your|strong="G1223"\+w* \+w sakes|strong="G1223"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G2532"\+w* \+w was|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w there|strong="G1563"\+w*, \+w so|strong="G2443"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w may|strong="G2532"\+w* \+w believe|strong="G4100"\+w*. \+w Nevertheless|strong="G3756"\+w*, \+w let|strong="G1510"\+w*’s \+w go|strong="G2532"\+w* \+w to|strong="G4314"\+w* \+w him|strong="G2532"\+w*.”\wj* +\p +\v 16 \w Thomas|strong="G2381"\w* \w therefore|strong="G3767"\w*, \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w called|strong="G3004"\w* \w Didymus|strong="G1324"\w*,\f + \fr 11:16 \ft “Didymus” means “Twin”.\f* \w said|strong="G3004"\w* \w to|strong="G2443"\w* \w his|strong="G2532"\w* \w fellow|strong="G4827"\w* \w disciples|strong="G4827"\w*, “\w Let|strong="G2443"\w*’s \w also|strong="G2532"\w* \w go|strong="G2532"\w*, \w that|strong="G2443"\w* \w we|strong="G2249"\w* \w may|strong="G2532"\w* die \w with|strong="G3326"\w* \w him|strong="G3588"\w*.” +\p +\v 17 \w So|strong="G3767"\w* \w when|strong="G1722"\w* \w Jesus|strong="G2424"\w* \w came|strong="G2064"\w*, \w he|strong="G3588"\w* \w found|strong="G2147"\w* \w that|strong="G3588"\w* \w he|strong="G3588"\w* \w had|strong="G2192"\w* \w been|strong="G2192"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w tomb|strong="G3419"\w* \w four|strong="G5064"\w* \w days|strong="G2250"\w* \w already|strong="G2235"\w*. +\v 18 \w Now|strong="G1161"\w* Bethany \w was|strong="G1510"\w* \w near|strong="G1451"\w* \w Jerusalem|strong="G2414"\w*, \w about|strong="G5613"\w* \w fifteen|strong="G1178"\w* stadia\f + \fr 11:18 \ft 15 stadia is about 2.8 kilometers or 1.7 miles\f* away. +\v 19 \w Many|strong="G4183"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w had|strong="G2532"\w* joined \w the|strong="G2532"\w* women \w around|strong="G4012"\w* \w Martha|strong="G3136"\w* \w and|strong="G2532"\w* \w Mary|strong="G3137"\w*, \w to|strong="G4314"\w* \w console|strong="G3888"\w* \w them|strong="G3588"\w* \w concerning|strong="G4012"\w* \w their|strong="G1438"\w* brother. +\v 20 \w Then|strong="G3767"\w* \w when|strong="G1161"\w* \w Martha|strong="G3136"\w* heard \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w was|strong="G3588"\w* \w coming|strong="G2064"\w*, \w she|strong="G1161"\w* \w went|strong="G2064"\w* \w and|strong="G1161"\w* \w met|strong="G5221"\w* \w him|strong="G3588"\w*, \w but|strong="G1161"\w* \w Mary|strong="G3137"\w* \w stayed|strong="G2516"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w house|strong="G3624"\w*. +\v 21 \w Therefore|strong="G3767"\w* \w Martha|strong="G3136"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w Jesus|strong="G2424"\w*, “\w Lord|strong="G2962"\w*, \w if|strong="G1487"\w* \w you|strong="G1487"\w* \w would|strong="G1510"\w* \w have|strong="G1473"\w* \w been|strong="G1510"\w* \w here|strong="G5602"\w*, \w my|strong="G1473"\w* brother wouldn’\w t|strong="G3588"\w* \w have|strong="G1473"\w* \w died|strong="G3588"\w*. +\v 22 \w Even|strong="G2532"\w* \w now|strong="G3568"\w* \w I|strong="G2532"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w whatever|strong="G3745"\w* \w you|strong="G4771"\w* ask \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w God|strong="G2316"\w* \w will|strong="G2316"\w* \w give|strong="G1325"\w* \w you|strong="G4771"\w*.” +\p +\v 23 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w her|strong="G3588"\w*, \wj “\+w Your|strong="G3588"\+w* brother \+w will|strong="G3004"\+w* rise again.”\wj* +\p +\v 24 \w Martha|strong="G3136"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w I|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w he|strong="G3754"\w* \w will|strong="G2250"\w* \w rise|strong="G2250"\w* again \w in|strong="G1722"\w* \w the|strong="G1722"\w* resurrection \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w last|strong="G2078"\w* \w day|strong="G2250"\w*.” +\p +\v 25 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w her|strong="G1519"\w*, \wj “\+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w the|strong="G2532"\+w* resurrection \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w life|strong="G2222"\+w*. \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w believes|strong="G4100"\+w* \+w in|strong="G1519"\+w* \+w me|strong="G1473"\+w* \+w will|strong="G1510"\+w* still \+w live|strong="G2198"\+w*, \+w even|strong="G2532"\+w* \+w if|strong="G2579"\+w* \+w he|strong="G2532"\+w* dies. \wj* +\v 26 \wj \+w Whoever|strong="G3956"\+w* \+w lives|strong="G2198"\+w* \+w and|strong="G2532"\+w* \+w believes|strong="G4100"\+w* \+w in|strong="G1519"\+w* \+w me|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w never|strong="G3756"\+w* die. \+w Do|strong="G2532"\+w* \+w you|strong="G3956"\+w* \+w believe|strong="G4100"\+w* \+w this|strong="G3778"\+w*?”\wj* +\p +\v 27 \w She|strong="G3754"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, “\w Yes|strong="G3483"\w*, \w Lord|strong="G2962"\w*. \w I|strong="G1473"\w* \w have|strong="G1473"\w* \w come|strong="G2064"\w* \w to|strong="G1519"\w* \w believe|strong="G4100"\w* \w that|strong="G3754"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w the|strong="G1519"\w* \w Christ|strong="G5547"\w*, \w God|strong="G2316"\w*’\w s|strong="G2962"\w* \w Son|strong="G5207"\w*, \w he|strong="G3754"\w* \w who|strong="G3588"\w* \w comes|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w world|strong="G2889"\w*.” +\p +\v 28 \w When|strong="G2532"\w* \w she|strong="G2532"\w* \w had|strong="G2532"\w* \w said|strong="G3004"\w* \w this|strong="G3778"\w*, \w she|strong="G2532"\w* \w went|strong="G2532"\w* away \w and|strong="G2532"\w* \w called|strong="G3004"\w* \w Mary|strong="G3137"\w*, \w her|strong="G3137"\w* sister, \w secretly|strong="G2977"\w*, \w saying|strong="G3004"\w*, “\w The|strong="G2532"\w* \w Teacher|strong="G1320"\w* \w is|strong="G3588"\w* \w here|strong="G3918"\w* \w and|strong="G2532"\w* \w is|strong="G3588"\w* \w calling|strong="G5455"\w* \w you|strong="G4771"\w*.” +\p +\v 29 \w When|strong="G1161"\w* \w she|strong="G2532"\w* heard \w this|strong="G1565"\w*, \w she|strong="G2532"\w* \w arose|strong="G1453"\w* \w quickly|strong="G5035"\w* \w and|strong="G2532"\w* \w went|strong="G2064"\w* \w to|strong="G4314"\w* \w him|strong="G1565"\w*. +\v 30 \w Now|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* \w not|strong="G1510"\w* \w yet|strong="G2089"\w* \w come|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w village|strong="G2968"\w*, \w but|strong="G1161"\w* \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w place|strong="G5117"\w* \w where|strong="G3699"\w* \w Martha|strong="G3136"\w* \w met|strong="G5221"\w* \w him|strong="G3588"\w*. +\v 31 \w Then|strong="G3767"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w* \w who|strong="G3588"\w* \w were|strong="G1510"\w* \w with|strong="G3326"\w* \w her|strong="G1438"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w house|strong="G3614"\w* \w and|strong="G2532"\w* \w were|strong="G1510"\w* \w consoling|strong="G3888"\w* \w her|strong="G1438"\w*, \w when|strong="G2532"\w* \w they|strong="G2532"\w* \w saw|strong="G3708"\w* \w Mary|strong="G3137"\w*, \w that|strong="G3754"\w* \w she|strong="G2532"\w* \w rose|strong="G2532"\w* \w up|strong="G1519"\w* \w quickly|strong="G5030"\w* \w and|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w*, followed \w her|strong="G1438"\w*, \w saying|strong="G3754"\w*, “\w She|strong="G2532"\w* \w is|strong="G1510"\w* \w going|strong="G5217"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w tomb|strong="G3419"\w* \w to|strong="G1519"\w* \w weep|strong="G2799"\w* \w there|strong="G1563"\w*.” +\p +\v 32 \w Therefore|strong="G3767"\w* \w when|strong="G5613"\w* \w Mary|strong="G3137"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w where|strong="G3699"\w* \w Jesus|strong="G2424"\w* \w was|strong="G1510"\w* \w and|strong="G2064"\w* \w saw|strong="G3708"\w* \w him|strong="G3588"\w*, \w she|strong="G5613"\w* \w fell|strong="G4098"\w* \w down|strong="G4098"\w* \w at|strong="G4314"\w* \w his|strong="G3708"\w* \w feet|strong="G4228"\w*, \w saying|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w Lord|strong="G2962"\w*, \w if|strong="G1487"\w* \w you|strong="G1487"\w* \w would|strong="G2064"\w* \w have|strong="G1473"\w* \w been|strong="G1510"\w* \w here|strong="G5602"\w*, \w my|strong="G3708"\w* brother wouldn’\w t|strong="G3588"\w* \w have|strong="G1473"\w* \w died|strong="G4098"\w*.” +\p +\v 33 \w When|strong="G5613"\w* \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w* \w saw|strong="G3708"\w* \w her|strong="G1438"\w* \w weeping|strong="G2799"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w weeping|strong="G2799"\w* \w who|strong="G3588"\w* \w came|strong="G4905"\w* \w with|strong="G2532"\w* \w her|strong="G1438"\w*, \w he|strong="G2532"\w* \w groaned|strong="G1690"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w spirit|strong="G4151"\w* \w and|strong="G2532"\w* \w was|strong="G3588"\w* \w troubled|strong="G5015"\w*, +\v 34 \w and|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Where|strong="G4226"\+w* \+w have|strong="G2532"\+w* \+w you|strong="G3004"\+w* \+w laid|strong="G5087"\+w* \+w him|strong="G3708"\+w*?”\wj* +\p \w They|strong="G2532"\w* \w told|strong="G3004"\w* \w him|strong="G3708"\w*, “\w Lord|strong="G2962"\w*, \w come|strong="G2064"\w* \w and|strong="G2532"\w* \w see|strong="G3708"\w*.” +\p +\v 35 \w Jesus|strong="G2424"\w* \w wept|strong="G1145"\w*. +\p +\v 36 \w The|strong="G3588"\w* \w Jews|strong="G2453"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w*, “\w See|strong="G3708"\w* \w how|strong="G4459"\w* much affection \w he|strong="G3588"\w* \w had|strong="G3588"\w* \w for|strong="G2453"\w* \w him|strong="G3588"\w*!” +\v 37 \w Some|strong="G5100"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w* \w said|strong="G3004"\w*, “Couldn’\w t|strong="G3588"\w* \w this|strong="G3778"\w* \w man|strong="G5100"\w*, \w who|strong="G3588"\w* opened \w the|strong="G2532"\w* \w eyes|strong="G3788"\w* \w of|strong="G1537"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w blind|strong="G5185"\w*, \w have|strong="G2532"\w* \w also|strong="G2532"\w* \w kept|strong="G4160"\w* \w this|strong="G3778"\w* \w man|strong="G5100"\w* \w from|strong="G1537"\w* dying?” +\p +\v 38 \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w*, \w again|strong="G3825"\w* \w groaning|strong="G1690"\w* \w in|strong="G1722"\w* \w himself|strong="G1438"\w*, \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w tomb|strong="G3419"\w*. \w Now|strong="G1161"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w cave|strong="G4693"\w*, \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w stone|strong="G3037"\w* \w lay|strong="G1945"\w* \w against|strong="G1909"\w* \w it|strong="G2532"\w*. +\v 39 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w*, \wj “Take away \+w the|strong="G3588"\+w* \+w stone|strong="G3037"\+w*.”\wj* +\p \w Martha|strong="G3136"\w*, \w the|strong="G3588"\w* sister \w of|strong="G2962"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w was|strong="G1510"\w* \w dead|strong="G5053"\w*, \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Lord|strong="G2962"\w*, \w by|strong="G3004"\w* \w this|strong="G3588"\w* \w time|strong="G2235"\w* \w there|strong="G1063"\w* \w is|strong="G1510"\w* \w a|strong="G1510"\w* \w stench|strong="G3605"\w*, \w for|strong="G1063"\w* \w he|strong="G3588"\w* \w has|strong="G2962"\w* \w been|strong="G1510"\w* \w dead|strong="G5053"\w* \w four|strong="G5066"\w* \w days|strong="G5066"\w*.” +\p +\v 40 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w her|strong="G1437"\w*, \wj “Didn’\+w t|strong="G3588"\+w* \+w I|strong="G1437"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w* \+w that|strong="G3754"\+w* \+w if|strong="G1437"\+w* \+w you|strong="G4771"\+w* \+w believed|strong="G4100"\+w*, \+w you|strong="G4771"\+w* \+w would|strong="G2316"\+w* \+w see|strong="G3708"\+w* \+w God|strong="G2316"\+w*’s \+w glory|strong="G1391"\+w*?”\wj* +\p +\v 41 \w So|strong="G3767"\w* \w they|strong="G2532"\w* \w took|strong="G2532"\w* away \w the|strong="G2532"\w* \w stone|strong="G3037"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w place|strong="G1473"\w* where \w the|strong="G2532"\w* dead man \w was|strong="G3588"\w* lying.\f + \fr 11:41 \ft NU omits “from the place where the dead man was lying.”\f* \w Jesus|strong="G2424"\w* \w lifted|strong="G2532"\w* \w up|strong="G2532"\w* \w his|strong="G2532"\w* \w eyes|strong="G3788"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Father|strong="G3962"\+w*, \+w I|strong="G1473"\+w* \+w thank|strong="G2168"\+w* \+w you|strong="G4771"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w* listened \+w to|strong="G2532"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 42 \wj \+w I|strong="G1473"\+w* \+w know|strong="G1492"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w always|strong="G3842"\+w* \+w listen|strong="G1492"\+w* \+w to|strong="G2443"\+w* \+w me|strong="G1473"\+w*, \+w but|strong="G1161"\+w* \+w because|strong="G3754"\+w* \+w of|strong="G1223"\+w* \+w the|strong="G1161"\+w* \+w multitude|strong="G3793"\+w* \+w standing|strong="G4026"\+w* \+w around|strong="G4026"\+w* \+w I|strong="G1473"\+w* \+w said|strong="G3004"\+w* \+w this|strong="G3588"\+w*, \+w that|strong="G3754"\+w* \+w they|strong="G1161"\+w* \+w may|strong="G2443"\+w* \+w believe|strong="G4100"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w* sent \+w me|strong="G1473"\+w*.” \wj* +\v 43 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w said|strong="G3004"\w* \w this|strong="G3778"\w*, \w he|strong="G2532"\w* \w cried|strong="G2905"\w* \w with|strong="G2532"\w* \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, \wj “\+w Lazarus|strong="G2976"\+w*, \+w come|strong="G1204"\+w* \+w out|strong="G1854"\+w*!”\wj* +\p +\v 44 \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w dead|strong="G2348"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w*, \w bound|strong="G1210"\w* \w hand|strong="G5495"\w* \w and|strong="G2532"\w* \w foot|strong="G4228"\w* \w with|strong="G2532"\w* \w wrappings|strong="G2750"\w*, \w and|strong="G2532"\w* \w his|strong="G2532"\w* \w face|strong="G3799"\w* \w was|strong="G3588"\w* \w wrapped|strong="G1210"\w* \w around|strong="G4019"\w* \w with|strong="G2532"\w* \w a|strong="G2532"\w* \w cloth|strong="G4676"\w*. +\p \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Free|strong="G3089"\+w* \+w him|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w let|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w go|strong="G5217"\+w*.”\wj* +\p +\v 45 \w Therefore|strong="G3767"\w* \w many|strong="G4183"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w who|strong="G3739"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w Mary|strong="G3137"\w* \w and|strong="G2532"\w* \w saw|strong="G2300"\w* \w what|strong="G3739"\w* \w Jesus|strong="G2532"\w* \w did|strong="G4160"\w* \w believed|strong="G4100"\w* \w in|strong="G1519"\w* \w him|strong="G3588"\w*. +\v 46 \w But|strong="G1161"\w* \w some|strong="G5100"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w* \w went|strong="G2424"\w* away \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w and|strong="G2532"\w* \w told|strong="G3004"\w* \w them|strong="G3588"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w which|strong="G3739"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* \w done|strong="G4160"\w*. +\v 47 \w The|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w therefore|strong="G3767"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w gathered|strong="G4863"\w* \w a|strong="G2532"\w* \w council|strong="G4892"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w What|strong="G5101"\w* \w are|strong="G3588"\w* \w we|strong="G3754"\w* \w doing|strong="G4160"\w*? \w For|strong="G3754"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w does|strong="G4160"\w* \w many|strong="G4183"\w* \w signs|strong="G4592"\w*. +\v 48 \w If|strong="G1437"\w* \w we|strong="G2249"\w* leave \w him|strong="G3588"\w* \w alone|strong="G3779"\w* \w like|strong="G3779"\w* \w this|strong="G3588"\w*, \w everyone|strong="G3956"\w* \w will|strong="G2532"\w* \w believe|strong="G4100"\w* \w in|strong="G1519"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Romans|strong="G4514"\w* \w will|strong="G2532"\w* \w come|strong="G2064"\w* \w and|strong="G2532"\w* \w take|strong="G2532"\w* away \w both|strong="G2532"\w* \w our|strong="G2532"\w* \w place|strong="G5117"\w* \w and|strong="G2532"\w* \w our|strong="G2532"\w* \w nation|strong="G1484"\w*.” +\p +\v 49 \w But|strong="G1161"\w* \w a|strong="G1510"\w* \w certain|strong="G5100"\w* \w one|strong="G1520"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w*, \w Caiaphas|strong="G2533"\w*, \w being|strong="G1510"\w* \w high|strong="G5100"\w* priest \w that|strong="G3588"\w* \w year|strong="G1763"\w*, \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, “\w You|strong="G5210"\w* \w know|strong="G1492"\w* \w nothing|strong="G3762"\w* \w at|strong="G1537"\w* \w all|strong="G1161"\w*, +\v 50 \w nor|strong="G3761"\w* \w do|strong="G2532"\w* \w you|strong="G5210"\w* \w consider|strong="G3049"\w* \w that|strong="G3754"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* advantageous \w for|strong="G3754"\w* us \w that|strong="G3754"\w* \w one|strong="G1520"\w* \w man|strong="G1520"\w* \w should|strong="G3588"\w* die \w for|strong="G3754"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w*, \w and|strong="G2532"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w whole|strong="G3650"\w* \w nation|strong="G1484"\w* \w not|strong="G3361"\w* perish.” +\v 51 \w Now|strong="G1161"\w* \w he|strong="G1161"\w* didn’\w t|strong="G3588"\w* \w say|strong="G3004"\w* \w this|strong="G3778"\w* \w of|strong="G5228"\w* \w himself|strong="G1438"\w*, \w but|strong="G1161"\w* \w being|strong="G1510"\w* high priest \w that|strong="G3754"\w* \w year|strong="G1763"\w*, \w he|strong="G1161"\w* \w prophesied|strong="G4395"\w* \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w would|strong="G3195"\w* die \w for|strong="G3754"\w* \w the|strong="G1161"\w* \w nation|strong="G1484"\w*, +\v 52 \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w for|strong="G1519"\w* \w the|strong="G2532"\w* \w nation|strong="G1484"\w* \w only|strong="G3440"\w*, \w but|strong="G2532"\w* \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w also|strong="G2532"\w* \w gather|strong="G4863"\w* \w together|strong="G4863"\w* \w into|strong="G1519"\w* \w one|strong="G1520"\w* \w the|strong="G2532"\w* \w children|strong="G5043"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w scattered|strong="G1287"\w* \w abroad|strong="G1287"\w*. +\v 53 \w So|strong="G2443"\w* \w from|strong="G3588"\w* \w that|strong="G2443"\w* \w day|strong="G2250"\w* forward \w they|strong="G3588"\w* \w took|strong="G3767"\w* \w counsel|strong="G1011"\w* \w that|strong="G2443"\w* \w they|strong="G3588"\w* might put \w him|strong="G3588"\w* \w to|strong="G2443"\w* death. +\v 54 \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w* \w walked|strong="G4043"\w* \w no|strong="G3765"\w* \w more|strong="G3765"\w* \w openly|strong="G3954"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w*, \w but|strong="G3767"\w* departed \w from|strong="G3588"\w* \w there|strong="G1564"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w country|strong="G5561"\w* \w near|strong="G1451"\w* \w the|strong="G1722"\w* \w wilderness|strong="G2048"\w*, \w to|strong="G1519"\w* \w a|strong="G1519"\w* \w city|strong="G4172"\w* \w called|strong="G3004"\w* \w Ephraim|strong="G2187"\w*. \w He|strong="G3588"\w* \w stayed|strong="G3306"\w* \w there|strong="G1564"\w* \w with|strong="G3326"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w*. +\p +\v 55 \w Now|strong="G1161"\w* \w the|strong="G2532"\w* \w Passover|strong="G3957"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w was|strong="G1510"\w* \w at|strong="G1519"\w* \w hand|strong="G1451"\w*. \w Many|strong="G4183"\w* \w went|strong="G2532"\w* \w up|strong="G1519"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w country|strong="G5561"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w* \w before|strong="G4253"\w* \w the|strong="G2532"\w* \w Passover|strong="G3957"\w*, \w to|strong="G1519"\w* purify \w themselves|strong="G1438"\w*. +\v 56 \w Then|strong="G3767"\w* \w they|strong="G2532"\w* \w sought|strong="G2212"\w* \w for|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w and|strong="G2532"\w* \w spoke|strong="G3004"\w* \w with|strong="G3326"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w* \w as|strong="G1519"\w* \w they|strong="G2532"\w* \w stood|strong="G2476"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w*, “\w What|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G5210"\w* \w think|strong="G1380"\w*—\w that|strong="G3754"\w* \w he|strong="G2532"\w* isn’\w t|strong="G3588"\w* \w coming|strong="G2064"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w feast|strong="G1859"\w* \w at|strong="G1722"\w* \w all|strong="G2532"\w*?” +\v 57 \w Now|strong="G1161"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w had|strong="G2532"\w* \w commanded|strong="G1785"\w* \w that|strong="G2443"\w* \w if|strong="G1437"\w* \w anyone|strong="G5100"\w* \w knew|strong="G1097"\w* \w where|strong="G4226"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w*, \w he|strong="G2532"\w* \w should|strong="G5100"\w* \w report|strong="G3377"\w* \w it|strong="G2532"\w*, \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w seize|strong="G4084"\w* \w him|strong="G3588"\w*. +\c 12 +\p +\v 1 \w Then|strong="G3767"\w*, \w six|strong="G1803"\w* \w days|strong="G2250"\w* \w before|strong="G4253"\w* \w the|strong="G1519"\w* \w Passover|strong="G3957"\w*, \w Jesus|strong="G2424"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* Bethany, \w where|strong="G3699"\w* \w Lazarus|strong="G2976"\w* \w was|strong="G1510"\w*, \w who|strong="G3739"\w* \w had|strong="G2424"\w* \w been|strong="G1510"\w* \w dead|strong="G3498"\w*, \w whom|strong="G3739"\w* \w he|strong="G3739"\w* \w raised|strong="G1453"\w* \w from|strong="G1537"\w* \w the|strong="G1519"\w* \w dead|strong="G3498"\w*. +\v 2 \w So|strong="G3767"\w* \w they|strong="G2532"\w* \w made|strong="G4160"\w* \w him|strong="G3588"\w* \w a|strong="G2532"\w* \w supper|strong="G1173"\w* \w there|strong="G1563"\w*. \w Martha|strong="G3136"\w* \w served|strong="G1247"\w*, \w but|strong="G1161"\w* \w Lazarus|strong="G2976"\w* \w was|strong="G1510"\w* \w one|strong="G1520"\w* \w of|strong="G1537"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w sat|strong="G2532"\w* \w at|strong="G1537"\w* \w the|strong="G2532"\w* table \w with|strong="G4862"\w* \w him|strong="G3588"\w*. +\v 3 \w Therefore|strong="G3767"\w* \w Mary|strong="G3137"\w* \w took|strong="G2983"\w* \w a|strong="G2532"\w* \w pound|strong="G3046"\w*\f + \fr 12:3 \ft a Roman pound of 12 ounces, or about 340 grams\f* \w of|strong="G1537"\w* \w ointment|strong="G3464"\w* \w of|strong="G1537"\w* \w pure|strong="G4101"\w* \w nard|strong="G3487"\w*, \w very|strong="G2532"\w* \w precious|strong="G4186"\w*, \w and|strong="G2532"\w* anointed \w Jesus|strong="G2424"\w*’ \w feet|strong="G4228"\w* \w and|strong="G2532"\w* \w wiped|strong="G1591"\w* \w his|strong="G2983"\w* \w feet|strong="G4228"\w* \w with|strong="G1537"\w* \w her|strong="G3137"\w* \w hair|strong="G2359"\w*. \w The|strong="G2532"\w* \w house|strong="G3614"\w* \w was|strong="G3588"\w* \w filled|strong="G4137"\w* \w with|strong="G1537"\w* \w the|strong="G2532"\w* \w fragrance|strong="G3744"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w ointment|strong="G3464"\w*. +\p +\v 4 \w Then|strong="G1161"\w* \w Judas|strong="G2455"\w* \w Iscariot|strong="G2469"\w*, Simon’s son, \w one|strong="G1520"\w* \w of|strong="G1537"\w* \w his|strong="G3588"\w* \w disciples|strong="G3101"\w*, \w who|strong="G3588"\w* \w would|strong="G3195"\w* \w betray|strong="G3860"\w* \w him|strong="G3588"\w*, \w said|strong="G3004"\w*, +\v 5 “\w Why|strong="G5101"\w* wasn’\w t|strong="G3588"\w* \w this|strong="G3778"\w* \w ointment|strong="G3464"\w* \w sold|strong="G4097"\w* \w for|strong="G1223"\w* \w three|strong="G5145"\w* \w hundred|strong="G5145"\w* \w denarii|strong="G1220"\w*\f + \fr 12:5 \ft 300 denarii was about a year’s wages for an agricultural laborer.\f* \w and|strong="G2532"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w poor|strong="G4434"\w*?” +\v 6 \w Now|strong="G1161"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w this|strong="G3778"\w*, \w not|strong="G3756"\w* \w because|strong="G3754"\w* \w he|strong="G2532"\w* \w cared|strong="G3199"\w* \w for|strong="G3754"\w* \w the|strong="G2532"\w* \w poor|strong="G4434"\w*, \w but|strong="G1161"\w* \w because|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2192"\w* \w thief|strong="G2812"\w*, \w and|strong="G2532"\w* \w having|strong="G2192"\w* \w the|strong="G2532"\w* \w money|strong="G1101"\w* \w box|strong="G1101"\w*, used \w to|strong="G2532"\w* steal \w what|strong="G3588"\w* \w was|strong="G1510"\w* \w put|strong="G2532"\w* into \w it|strong="G2532"\w*. +\p +\v 7 \w But|strong="G3767"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w*, \wj “Leave \+w her|strong="G1438"\+w* \+w alone|strong="G1438"\+w*. \+w She|strong="G2443"\+w* \+w has|strong="G2424"\+w* \+w kept|strong="G5083"\+w* \+w this|strong="G3588"\+w* \+w for|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w day|strong="G2250"\+w* \+w of|strong="G2250"\+w* \+w my|strong="G5083"\+w* \+w burial|strong="G1780"\+w*. \wj* +\v 8 \wj \+w For|strong="G1063"\+w* \+w you|strong="G1438"\+w* \+w always|strong="G3842"\+w* \+w have|strong="G2192"\+w* \+w the|strong="G1161"\+w* \+w poor|strong="G4434"\+w* \+w with|strong="G3326"\+w* \+w you|strong="G1438"\+w*, \+w but|strong="G1161"\+w* \+w you|strong="G1438"\+w* don’\+w t|strong="G3588"\+w* \+w always|strong="G3842"\+w* \+w have|strong="G2192"\+w* \+w me|strong="G1473"\+w*.”\wj* +\p +\v 9 \w A|strong="G2532"\w* \w large|strong="G4183"\w* \w crowd|strong="G3793"\w* \w therefore|strong="G3767"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w learned|strong="G1097"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w there|strong="G1563"\w*; \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w came|strong="G2064"\w*, \w not|strong="G3756"\w* \w for|strong="G3754"\w* \w Jesus|strong="G2424"\w*’ \w sake|strong="G1223"\w* \w only|strong="G3440"\w*, \w but|strong="G2532"\w* \w that|strong="G3754"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w see|strong="G3708"\w* \w Lazarus|strong="G2976"\w* \w also|strong="G2532"\w*, \w whom|strong="G3739"\w* \w he|strong="G2532"\w* \w had|strong="G2424"\w* \w raised|strong="G1453"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*. +\v 10 \w But|strong="G1161"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests conspired \w to|strong="G2443"\w* \w put|strong="G2532"\w* \w Lazarus|strong="G2976"\w* \w to|strong="G2443"\w* death \w also|strong="G2532"\w*, +\v 11 \w because|strong="G3754"\w* \w on|strong="G1519"\w* \w account|strong="G1223"\w* \w of|strong="G1223"\w* \w him|strong="G3588"\w* \w many|strong="G4183"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w went|strong="G2424"\w* \w away|strong="G5217"\w* \w and|strong="G2532"\w* \w believed|strong="G4100"\w* \w in|strong="G1519"\w* \w Jesus|strong="G2424"\w*. +\p +\v 12 \w On|strong="G1519"\w* \w the|strong="G1519"\w* \w next|strong="G1887"\w* \w day|strong="G1887"\w* \w a|strong="G1519"\w* \w great|strong="G4183"\w* \w multitude|strong="G3793"\w* \w had|strong="G2424"\w* \w come|strong="G2064"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w feast|strong="G1859"\w*. \w When|strong="G2064"\w* \w they|strong="G3588"\w* heard \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w was|strong="G3588"\w* \w coming|strong="G2064"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w*, +\v 13 \w they|strong="G2532"\w* \w took|strong="G2983"\w* \w the|strong="G1722"\w* \w branches|strong="G5404"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w palm|strong="G5404"\w* \w trees|strong="G5404"\w* \w and|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w to|strong="G1519"\w* \w meet|strong="G5222"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w cried|strong="G2905"\w* \w out|strong="G1831"\w*, “\w Hosanna|strong="G5614"\w*!\f + \fr 12:13 \ft “Hosanna” means “save us” or “help us, we pray”.\f* \w Blessed|strong="G2127"\w* \w is|strong="G3588"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w comes|strong="G2064"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*,\x + \xo 12:13 \xt Psalms 118:25-26 \x* \w the|strong="G1722"\w* \w King|strong="G3588"\w* \w of|strong="G2532"\w* \w Israel|strong="G2474"\w*!” +\p +\v 14 \w Jesus|strong="G2424"\w*, having \w found|strong="G2147"\w* \w a|strong="G1510"\w* \w young|strong="G3678"\w* \w donkey|strong="G3678"\w*, \w sat|strong="G2523"\w* \w on|strong="G1909"\w* \w it|strong="G1161"\w*. \w As|strong="G2531"\w* \w it|strong="G1161"\w* \w is|strong="G1510"\w* \w written|strong="G1125"\w*, +\v 15 “Don’\w t|strong="G3588"\w* \w be|strong="G3361"\w* \w afraid|strong="G5399"\w*, \w daughter|strong="G2364"\w* \w of|strong="G1909"\w* \w Zion|strong="G4622"\w*. \w Behold|strong="G2400"\w*, \w your|strong="G3708"\w* \w King|strong="G3588"\w* \w comes|strong="G2064"\w*, \w sitting|strong="G2521"\w* \w on|strong="G1909"\w* \w a|strong="G1909"\w* \w donkey|strong="G3688"\w*’s \w colt|strong="G4454"\w*.”\x + \xo 12:15 \xt Zechariah 9:9\x* +\v 16 \w His|strong="G1909"\w* \w disciples|strong="G3101"\w* didn’\w t|strong="G3588"\w* \w understand|strong="G1097"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w at|strong="G1909"\w* \w first|strong="G4413"\w*, \w but|strong="G2532"\w* \w when|strong="G3753"\w* \w Jesus|strong="G2424"\w* \w was|strong="G1510"\w* \w glorified|strong="G1392"\w*, \w then|strong="G2532"\w* \w they|strong="G2532"\w* \w remembered|strong="G3403"\w* \w that|strong="G3754"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w were|strong="G1510"\w* \w written|strong="G1125"\w* \w about|strong="G1909"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w that|strong="G3754"\w* \w they|strong="G2532"\w* \w had|strong="G2424"\w* \w done|strong="G4160"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*. +\v 17 \w The|strong="G2532"\w* \w multitude|strong="G3793"\w* \w therefore|strong="G3767"\w* \w that|strong="G3754"\w* \w was|strong="G1510"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w* \w when|strong="G3753"\w* \w he|strong="G2532"\w* \w called|strong="G5455"\w* \w Lazarus|strong="G2976"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w tomb|strong="G3419"\w* \w and|strong="G2532"\w* \w raised|strong="G1453"\w* \w him|strong="G3588"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w* \w was|strong="G1510"\w* \w testifying|strong="G3140"\w* \w about|strong="G3754"\w* \w it|strong="G2532"\w*. +\v 18 \w For|strong="G3754"\w* \w this|strong="G3778"\w* \w cause|strong="G4160"\w* \w also|strong="G2532"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w* \w went|strong="G2532"\w* \w and|strong="G2532"\w* \w met|strong="G5221"\w* \w him|strong="G3588"\w*, \w because|strong="G3754"\w* \w they|strong="G2532"\w* heard \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w done|strong="G4160"\w* \w this|strong="G3778"\w* \w sign|strong="G4592"\w*. +\v 19 \w The|strong="G4314"\w* \w Pharisees|strong="G5330"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w among|strong="G4314"\w* \w themselves|strong="G1438"\w*, “\w See|strong="G3708"\w* \w how|strong="G3754"\w* \w you|strong="G3754"\w* accomplish \w nothing|strong="G3762"\w*. \w Behold|strong="G2396"\w*, \w the|strong="G4314"\w* \w world|strong="G2889"\w* \w has|strong="G3762"\w* gone \w after|strong="G3694"\w* \w him|strong="G3588"\w*.” +\p +\v 20 \w Now|strong="G1161"\w* \w there|strong="G1161"\w* \w were|strong="G1510"\w* \w certain|strong="G5100"\w* \w Greeks|strong="G1672"\w* \w among|strong="G1722"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w went|strong="G3588"\w* \w up|strong="G1722"\w* \w to|strong="G2443"\w* \w worship|strong="G4352"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w feast|strong="G1859"\w*. +\v 21 \w Therefore|strong="G3767"\w*, \w these|strong="G3778"\w* \w came|strong="G4334"\w* \w to|strong="G2532"\w* \w Philip|strong="G5376"\w*, \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w from|strong="G2532"\w* Bethsaida \w of|strong="G2532"\w* \w Galilee|strong="G1056"\w*, \w and|strong="G2532"\w* \w asked|strong="G2065"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w Sir|strong="G2962"\w*, \w we|strong="G2532"\w* \w want|strong="G2309"\w* \w to|strong="G2532"\w* \w see|strong="G3708"\w* \w Jesus|strong="G2424"\w*.” +\v 22 \w Philip|strong="G5376"\w* \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w told|strong="G3004"\w* Andrew, \w and|strong="G2532"\w* \w in|strong="G2532"\w* turn, Andrew \w came|strong="G2064"\w* \w with|strong="G2532"\w* \w Philip|strong="G5376"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w told|strong="G3004"\w* \w Jesus|strong="G2424"\w*. +\p +\v 23 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w The|strong="G1161"\+w* \+w time|strong="G5610"\+w* \+w has|strong="G5610"\+w* \+w come|strong="G2064"\+w* \+w for|strong="G1161"\+w* \+w the|strong="G1161"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w* \+w to|strong="G2443"\+w* \+w be|strong="G2443"\+w* \+w glorified|strong="G1392"\+w*. \wj* +\v 24 \wj \+w Most|strong="G4183"\+w* certainly \+w I|strong="G1161"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w unless|strong="G1437"\+w* \+w a|strong="G1519"\+w* \+w grain|strong="G2590"\+w* \+w of|strong="G1093"\+w* \+w wheat|strong="G4621"\+w* \+w falls|strong="G4098"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w earth|strong="G1093"\+w* \+w and|strong="G1161"\+w* dies, \+w it|strong="G1161"\+w* \+w remains|strong="G3306"\+w* \+w by|strong="G3004"\+w* itself \+w alone|strong="G3441"\+w*. \+w But|strong="G1161"\+w* \+w if|strong="G1437"\+w* \+w it|strong="G1161"\+w* dies, \+w it|strong="G1161"\+w* \+w bears|strong="G5342"\+w* \+w much|strong="G4183"\+w* \+w fruit|strong="G2590"\+w*. \wj* +\v 25 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w loves|strong="G5368"\+w* \+w his|strong="G1438"\+w* \+w life|strong="G2222"\+w* \+w will|strong="G2532"\+w* lose \+w it|strong="G2532"\+w*. \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w hates|strong="G3404"\+w* \+w his|strong="G1438"\+w* \+w life|strong="G2222"\+w* \+w in|strong="G1722"\+w* \+w this|strong="G3778"\+w* \+w world|strong="G2889"\+w* \+w will|strong="G2532"\+w* \+w keep|strong="G5442"\+w* \+w it|strong="G2532"\+w* \+w to|strong="G1519"\+w* eternal \+w life|strong="G2222"\+w*. \wj* +\v 26 \wj \+w If|strong="G1437"\+w* \+w anyone|strong="G5100"\+w* \+w serves|strong="G1247"\+w* \+w me|strong="G1473"\+w*, \+w let|strong="G1510"\+w* \+w him|strong="G3588"\+w* follow \+w me|strong="G1473"\+w*. \+w Where|strong="G3699"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w*, \+w there|strong="G1563"\+w* \+w my|strong="G1699"\+w* \+w servant|strong="G1249"\+w* \+w will|strong="G1510"\+w* \+w also|strong="G2532"\+w* \+w be|strong="G1510"\+w*. \+w If|strong="G1437"\+w* \+w anyone|strong="G5100"\+w* \+w serves|strong="G1247"\+w* \+w me|strong="G1473"\+w*, \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w will|strong="G1510"\+w* \+w honor|strong="G5091"\+w* \+w him|strong="G3588"\+w*.\wj* +\p +\v 27 \wj “\+w Now|strong="G3568"\+w* \+w my|strong="G1473"\+w* \+w soul|strong="G5590"\+w* \+w is|strong="G3588"\+w* \+w troubled|strong="G5015"\+w*. \+w What|strong="G5101"\+w* \+w shall|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w say|strong="G3004"\+w*? ‘\+w Father|strong="G3962"\+w*, \+w save|strong="G4982"\+w* \+w me|strong="G1473"\+w* \+w from|strong="G1537"\+w* \+w this|strong="G3778"\+w* \+w time|strong="G5610"\+w*’? \+w But|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w came|strong="G2064"\+w* \+w to|strong="G1519"\+w* \+w this|strong="G3778"\+w* \+w time|strong="G5610"\+w* \+w for|strong="G1519"\+w* \+w this|strong="G3778"\+w* \+w cause|strong="G1223"\+w*. \wj* +\v 28 \wj \+w Father|strong="G3962"\+w*, \+w glorify|strong="G1392"\+w* \+w your|strong="G2532"\+w* \+w name|strong="G3686"\+w*!”\wj* +\p \w Then|strong="G3767"\w* \w a|strong="G2532"\w* \w voice|strong="G5456"\w* \w came|strong="G2064"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w*, saying, “\w I|strong="G2532"\w* \w have|strong="G2532"\w* \w both|strong="G2532"\w* \w glorified|strong="G1392"\w* \w it|strong="G2532"\w* \w and|strong="G2532"\w* \w will|strong="G2532"\w* \w glorify|strong="G1392"\w* \w it|strong="G2532"\w* \w again|strong="G3825"\w*.” +\p +\v 29 \w Therefore|strong="G3767"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w* \w who|strong="G3588"\w* \w stood|strong="G2476"\w* \w by|strong="G2532"\w* \w and|strong="G2532"\w* heard \w it|strong="G2532"\w* \w said|strong="G3004"\w* \w that|strong="G3588"\w* \w it|strong="G2532"\w* \w had|strong="G2532"\w* \w thundered|strong="G1027"\w*. \w Others|strong="G3588"\w* \w said|strong="G3004"\w*, “\w An|strong="G2532"\w* angel \w has|strong="G1096"\w* \w spoken|strong="G2980"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*.” +\p +\v 30 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w*, \wj “\+w This|strong="G3778"\+w* \+w voice|strong="G5456"\+w* hasn’\+w t|strong="G3588"\+w* \+w come|strong="G1096"\+w* \+w for|strong="G1223"\+w* \+w my|strong="G1473"\+w* \+w sake|strong="G1223"\+w*, \+w but|strong="G2532"\+w* \+w for|strong="G1223"\+w* \+w your|strong="G1223"\+w* \+w sakes|strong="G1223"\+w*. \wj* +\v 31 \wj \+w Now|strong="G3568"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G3588"\+w* \+w judgment|strong="G2920"\+w* \+w of|strong="G3588"\+w* \+w this|strong="G3778"\+w* \+w world|strong="G2889"\+w*. \+w Now|strong="G3568"\+w* \+w the|strong="G3588"\+w* prince \+w of|strong="G3588"\+w* \+w this|strong="G3778"\+w* \+w world|strong="G2889"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w cast|strong="G1544"\+w* \+w out|strong="G1544"\+w*. \wj* +\v 32 \wj \+w And|strong="G1093"\+w* \+w I|strong="G2504"\+w*, \+w if|strong="G1437"\+w* \+w I|strong="G2504"\+w* \+w am|strong="G2504"\+w* \+w lifted|strong="G5312"\+w* \+w up|strong="G5312"\+w* \+w from|strong="G1537"\+w* \+w the|strong="G3956"\+w* \+w earth|strong="G1093"\+w*, \+w will|strong="G3956"\+w* \+w draw|strong="G1670"\+w* \+w all|strong="G3956"\+w* \+w people|strong="G3956"\+w* \+w to|strong="G4314"\+w* \+w myself|strong="G1683"\+w*.”\wj* +\v 33 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w said|strong="G3004"\w* \w this|strong="G3778"\w*, \w signifying|strong="G4591"\w* \w by|strong="G3004"\w* \w what|strong="G4169"\w* \w kind|strong="G4169"\w* \w of|strong="G3004"\w* \w death|strong="G2288"\w* \w he|strong="G1161"\w* \w should|strong="G3195"\w* \w die|strong="G2288"\w*. +\p +\v 34 \w The|strong="G2532"\w* \w multitude|strong="G3793"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, “\w We|strong="G2249"\w* \w have|strong="G2532"\w* heard \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w Christ|strong="G5547"\w* \w remains|strong="G3306"\w* \w forever|strong="G1519"\w*.\x + \xo 12:34 \xt Isaiah 9:7; Daniel 2:44; See Isaiah 53:8\x* \w How|strong="G4459"\w* \w do|strong="G5101"\w* \w you|strong="G4771"\w* \w say|strong="G3004"\w*, \wj ‘\+w The|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G1537"\+w* \+w Man|strong="G3778"\+w* \+w must|strong="G1163"\+w* \+w be|strong="G1510"\+w* \+w lifted|strong="G5312"\+w* \+w up|strong="G1210"\+w*’\wj*? \w Who|strong="G5101"\w* \w is|strong="G1510"\w* \w this|strong="G3778"\w* \w Son|strong="G5207"\w* \w of|strong="G1537"\w* \w Man|strong="G3778"\w*?” +\p +\v 35 \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G2443"\w* \w them|strong="G3588"\w*, \wj “\+w Yet|strong="G2089"\+w* \+w a|strong="G2192"\+w* \+w little|strong="G3397"\+w* \+w while|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w light|strong="G5457"\+w* \+w is|strong="G1510"\+w* \+w with|strong="G1722"\+w* \+w you|strong="G5210"\+w*. \+w Walk|strong="G4043"\+w* \+w while|strong="G1722"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2192"\+w* \+w the|strong="G1722"\+w* \+w light|strong="G5457"\+w*, \+w that|strong="G2443"\+w* \+w darkness|strong="G4653"\+w* doesn’\+w t|strong="G3588"\+w* \+w overtake|strong="G2638"\+w* \+w you|strong="G5210"\+w*. \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w walks|strong="G4043"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w darkness|strong="G4653"\+w* doesn’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w* \+w where|strong="G4226"\+w* \+w he|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w going|strong="G5217"\+w*. \wj* +\v 36 \wj \+w While|strong="G5613"\+w* \+w you|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w the|strong="G2532"\+w* \+w light|strong="G5457"\+w*, \+w believe|strong="G4100"\+w* \+w in|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w light|strong="G5457"\+w*, \+w that|strong="G2443"\+w* \+w you|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w become|strong="G1096"\+w* \+w children|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w light|strong="G5457"\+w*.”\wj* \w Jesus|strong="G2424"\w* \w said|strong="G2980"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* departed \w and|strong="G2532"\w* \w hid|strong="G2928"\w* \w himself|strong="G2928"\w* \w from|strong="G2532"\w* \w them|strong="G3588"\w*. +\v 37 \w But|strong="G1161"\w* \w though|strong="G1161"\w* \w he|strong="G1161"\w* \w had|strong="G4160"\w* \w done|strong="G4160"\w* \w so|strong="G1161"\w* \w many|strong="G5118"\w* \w signs|strong="G4592"\w* \w before|strong="G1715"\w* \w them|strong="G4160"\w*, \w yet|strong="G1161"\w* \w they|strong="G1161"\w* didn’t \w believe|strong="G4100"\w* \w in|strong="G1519"\w* \w him|strong="G4160"\w*, +\v 38 \w that|strong="G2443"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w Isaiah|strong="G2268"\w* \w the|strong="G2532"\w* \w prophet|strong="G4396"\w* \w might|strong="G2532"\w* \w be|strong="G2532"\w* \w fulfilled|strong="G4137"\w*, \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w spoke|strong="G3004"\w*: +\q1 “\w Lord|strong="G2962"\w*, \w who|strong="G3739"\w* \w has|strong="G2962"\w* \w believed|strong="G4100"\w* \w our|strong="G2532"\w* \w report|strong="G3056"\w*? +\q2 \w To|strong="G2443"\w* \w whom|strong="G3739"\w* \w has|strong="G2962"\w* \w the|strong="G2532"\w* \w arm|strong="G1023"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w been|strong="G2532"\w* revealed?”\x + \xo 12:38 \xt Isaiah 53:1\x* +\p +\v 39 \w For|strong="G3754"\w* \w this|strong="G3778"\w* \w cause|strong="G1223"\w* \w they|strong="G3754"\w* couldn’t \w believe|strong="G4100"\w*, \w for|strong="G3754"\w* \w Isaiah|strong="G2268"\w* \w said|strong="G3004"\w* \w again|strong="G3825"\w*: +\q1 +\v 40 “\w He|strong="G2532"\w* \w has|strong="G3708"\w* \w blinded|strong="G5186"\w* \w their|strong="G1438"\w* \w eyes|strong="G3788"\w* \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w hardened|strong="G4456"\w* \w their|strong="G1438"\w* \w heart|strong="G2588"\w*, +\q2 \w lest|strong="G3361"\w* \w they|strong="G2532"\w* \w should|strong="G3588"\w* \w see|strong="G3708"\w* \w with|strong="G2532"\w* \w their|strong="G1438"\w* \w eyes|strong="G3788"\w*, +\q2 \w and|strong="G2532"\w* \w perceive|strong="G3708"\w* \w with|strong="G2532"\w* \w their|strong="G1438"\w* \w heart|strong="G2588"\w*, +\q2 \w and|strong="G2532"\w* \w would|strong="G2532"\w* \w turn|strong="G4762"\w*, +\q2 \w and|strong="G2532"\w* \w I|strong="G2532"\w* \w would|strong="G2532"\w* \w heal|strong="G2390"\w* \w them|strong="G3588"\w*.”\x + \xo 12:40 \xt Isaiah 6:10\x* +\p +\v 41 \w Isaiah|strong="G2268"\w* \w said|strong="G3004"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w his|strong="G4012"\w* \w glory|strong="G1391"\w*, \w and|strong="G2532"\w* \w spoke|strong="G2980"\w* \w of|strong="G4012"\w* \w him|strong="G3588"\w*. \x + \xo 12:41 \xt Isaiah 6:1\x* +\v 42 \w Nevertheless|strong="G3305"\w*, \w even|strong="G2532"\w* \w many|strong="G4183"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* rulers \w believed|strong="G4100"\w* \w in|strong="G1519"\w* \w him|strong="G3588"\w*, \w but|strong="G2532"\w* \w because|strong="G1223"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w they|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w confess|strong="G3670"\w* \w it|strong="G2532"\w*, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w they|strong="G2532"\w* wouldn’\w t|strong="G3588"\w* \w be|strong="G1096"\w* \w put|strong="G2532"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* synagogue, +\v 43 \w for|strong="G1063"\w* \w they|strong="G3588"\w* loved \w men|strong="G3588"\w*’s \w praise|strong="G1391"\w* \w more|strong="G3123"\w* \w than|strong="G2260"\w* \w God|strong="G2316"\w*’s \w praise|strong="G1391"\w*. +\p +\v 44 \w Jesus|strong="G2424"\w* \w cried|strong="G2896"\w* \w out|strong="G2896"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Whoever|strong="G3588"\+w* \+w believes|strong="G4100"\+w* \+w in|strong="G1519"\+w* \+w me|strong="G1473"\+w*, \+w believes|strong="G4100"\+w* \+w not|strong="G3756"\+w* \+w in|strong="G1519"\+w* \+w me|strong="G1473"\+w*, \+w but|strong="G1161"\+w* \+w in|strong="G1519"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 45 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w sees|strong="G2334"\+w* \+w me|strong="G1473"\+w* \+w sees|strong="G2334"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 46 \wj \+w I|strong="G1473"\+w* \+w have|strong="G1473"\+w* \+w come|strong="G2064"\+w* \+w as|strong="G1519"\+w* \+w a|strong="G1519"\+w* \+w light|strong="G5457"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1722"\+w* \+w world|strong="G2889"\+w*, \+w that|strong="G2443"\+w* \+w whoever|strong="G3956"\+w* \+w believes|strong="G4100"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w* \+w may|strong="G2443"\+w* \+w not|strong="G3361"\+w* \+w remain|strong="G3306"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w darkness|strong="G4653"\+w*. \wj* +\v 47 \wj \+w If|strong="G1437"\+w* \+w anyone|strong="G5100"\+w* listens \+w to|strong="G2443"\+w* \+w my|strong="G1473"\+w* \+w sayings|strong="G4487"\+w* \+w and|strong="G2532"\+w* doesn’\+w t|strong="G3588"\+w* believe, \+w I|strong="G1473"\+w* don’\+w t|strong="G3588"\+w* \+w judge|strong="G2919"\+w* \+w him|strong="G3588"\+w*. \+w For|strong="G1063"\+w* \+w I|strong="G1473"\+w* \+w came|strong="G2064"\+w* \+w not|strong="G3756"\+w* \+w to|strong="G2443"\+w* \+w judge|strong="G2919"\+w* \+w the|strong="G2532"\+w* \+w world|strong="G2889"\+w*, \+w but|strong="G2532"\+w* \+w to|strong="G2443"\+w* \+w save|strong="G4982"\+w* \+w the|strong="G2532"\+w* \+w world|strong="G2889"\+w*. \wj* +\v 48 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3739"\+w* rejects \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* doesn’\+w t|strong="G3588"\+w* \+w receive|strong="G2983"\+w* \+w my|strong="G1722"\+w* \+w sayings|strong="G3056"\+w*, \+w has|strong="G2192"\+w* \+w one|strong="G3739"\+w* \+w who|strong="G3739"\+w* \+w judges|strong="G2919"\+w* \+w him|strong="G3588"\+w*. \+w The|strong="G1722"\+w* \+w word|strong="G3056"\+w* \+w that|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w spoke|strong="G2980"\+w* \+w will|strong="G2532"\+w* \+w judge|strong="G2919"\+w* \+w him|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w last|strong="G2078"\+w* \+w day|strong="G2250"\+w*. \wj* +\v 49 \wj \+w For|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w spoke|strong="G2980"\+w* \+w not|strong="G3756"\+w* \+w from|strong="G1537"\+w* \+w myself|strong="G1683"\+w*, \+w but|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G5101"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1325"\+w* \+w gave|strong="G1325"\+w* \+w me|strong="G1325"\+w* \+w a|strong="G2532"\+w* \+w commandment|strong="G1785"\+w*, \+w what|strong="G5101"\+w* \+w I|strong="G1473"\+w* \+w should|strong="G3588"\+w* \+w say|strong="G3004"\+w* \+w and|strong="G2532"\+w* \+w what|strong="G5101"\+w* \+w I|strong="G1473"\+w* \+w should|strong="G3588"\+w* \+w speak|strong="G2980"\+w*. \wj* +\v 50 \wj \+w I|strong="G1473"\+w* \+w know|strong="G1492"\+w* \+w that|strong="G3754"\+w* \+w his|strong="G2532"\+w* \+w commandment|strong="G1785"\+w* \+w is|strong="G1510"\+w* eternal \+w life|strong="G2222"\+w*. \+w The|strong="G2532"\+w* \+w things|strong="G3588"\+w* \+w therefore|strong="G3767"\+w* \+w which|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w speak|strong="G2980"\+w*, \+w even|strong="G2532"\+w* \+w as|strong="G2531"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w has|strong="G3962"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w me|strong="G1473"\+w*, \+w so|strong="G3779"\+w* \+w I|strong="G1473"\+w* \+w speak|strong="G2980"\+w*.”\wj* +\c 13 +\p +\v 1 \w Now|strong="G1161"\w* \w before|strong="G4253"\w* \w the|strong="G1722"\w* \w feast|strong="G1859"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w Passover|strong="G3957"\w*, \w Jesus|strong="G2424"\w*, \w knowing|strong="G1492"\w* \w that|strong="G3754"\w* \w his|strong="G1438"\w* \w time|strong="G5610"\w* \w had|strong="G2424"\w* \w come|strong="G2064"\w* \w that|strong="G3754"\w* \w he|strong="G1161"\w* \w would|strong="G2064"\w* \w depart|strong="G3327"\w* \w from|strong="G1537"\w* \w this|strong="G3778"\w* \w world|strong="G2889"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w Father|strong="G3962"\w*, \w having|strong="G1492"\w* loved \w his|strong="G1438"\w* \w own|strong="G2398"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*, \w he|strong="G1161"\w* loved \w them|strong="G3588"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w end|strong="G5056"\w*. +\v 2 \w During|strong="G1096"\w* \w supper|strong="G1173"\w*, \w the|strong="G2532"\w* \w devil|strong="G1228"\w* \w having|strong="G2532"\w* \w already|strong="G2235"\w* \w put|strong="G2532"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w heart|strong="G2588"\w* \w of|strong="G2532"\w* \w Judas|strong="G2455"\w* \w Iscariot|strong="G2469"\w*, \w Simon|strong="G4613"\w*’s son, \w to|strong="G1519"\w* \w betray|strong="G3860"\w* \w him|strong="G3588"\w*, +\v 3 \w Jesus|strong="G1831"\w*, \w knowing|strong="G1492"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w Father|strong="G3962"\w* \w had|strong="G2532"\w* \w given|strong="G1325"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w into|strong="G1519"\w* \w his|strong="G3956"\w* \w hands|strong="G5495"\w*, \w and|strong="G2532"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w came|strong="G1831"\w* \w from|strong="G2532"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w was|strong="G3588"\w* \w going|strong="G5217"\w* \w to|strong="G1519"\w* \w God|strong="G2316"\w*, +\v 4 \w arose|strong="G1453"\w* \w from|strong="G1537"\w* \w supper|strong="G1173"\w*, \w and|strong="G2532"\w* \w laid|strong="G5087"\w* \w aside|strong="G5087"\w* \w his|strong="G1438"\w* \w outer|strong="G2440"\w* \w garments|strong="G2440"\w*. \w He|strong="G2532"\w* \w took|strong="G2983"\w* \w a|strong="G2532"\w* \w towel|strong="G3012"\w* \w and|strong="G2532"\w* wrapped \w a|strong="G2532"\w* \w towel|strong="G3012"\w* around \w his|strong="G1438"\w* waist. +\v 5 \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w poured|strong="G2532"\w* \w water|strong="G5204"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w basin|strong="G3537"\w*, \w and|strong="G2532"\w* began \w to|strong="G1519"\w* \w wash|strong="G3538"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w*’ \w feet|strong="G4228"\w* \w and|strong="G2532"\w* \w to|strong="G1519"\w* \w wipe|strong="G1591"\w* \w them|strong="G3588"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w towel|strong="G3012"\w* \w that|strong="G3739"\w* \w was|strong="G1510"\w* wrapped around \w him|strong="G3588"\w*. +\v 6 \w Then|strong="G3767"\w* \w he|strong="G3588"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w Simon|strong="G4613"\w* \w Peter|strong="G4074"\w*. \w He|strong="G3588"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w Lord|strong="G2962"\w*, \w do|strong="G3004"\w* \w you|strong="G4771"\w* \w wash|strong="G3538"\w* \w my|strong="G1473"\w* \w feet|strong="G4228"\w*?” +\p +\v 7 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w him|strong="G3739"\w*, \wj “\+w You|strong="G4771"\+w* don’t \+w know|strong="G1492"\+w* \+w what|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* \+w doing|strong="G4160"\+w* \+w now|strong="G1161"\+w*, \+w but|strong="G1161"\+w* \+w you|strong="G4771"\+w* \+w will|strong="G2532"\+w* \+w understand|strong="G1097"\+w* \+w later|strong="G3326"\+w*.”\wj* +\p +\v 8 \w Peter|strong="G4074"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, “\w You|strong="G4771"\w* \w will|strong="G1473"\w* \w never|strong="G3756"\w* \w wash|strong="G3538"\w* \w my|strong="G1473"\w* \w feet|strong="G4228"\w*!” +\p \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w If|strong="G1437"\+w* \+w I|strong="G1473"\+w* don’\+w t|strong="G3588"\+w* \+w wash|strong="G3538"\+w* \+w you|strong="G4771"\+w*, \+w you|strong="G4771"\+w* \+w have|strong="G2192"\+w* \+w no|strong="G3756"\+w* \+w part|strong="G3313"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1473"\+w*.” \wj* +\p +\v 9 \w Simon|strong="G4613"\w* \w Peter|strong="G4074"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Lord|strong="G2962"\w*, \w not|strong="G3361"\w* \w my|strong="G1473"\w* \w feet|strong="G4228"\w* \w only|strong="G3440"\w*, \w but|strong="G2532"\w* \w also|strong="G2532"\w* \w my|strong="G1473"\w* \w hands|strong="G5495"\w* \w and|strong="G2532"\w* \w my|strong="G1473"\w* \w head|strong="G2776"\w*!” +\p +\v 10 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “Someone \+w who|strong="G3588"\+w* \+w has|strong="G2192"\+w* \+w bathed|strong="G3068"\+w* \+w only|strong="G1487"\+w* \+w needs|strong="G5532"\+w* \+w to|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w his|strong="G3956"\+w* \+w feet|strong="G4228"\+w* \+w washed|strong="G3538"\+w*, \+w but|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w completely|strong="G3650"\+w* \+w clean|strong="G2513"\+w*. \+w You|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w clean|strong="G2513"\+w*, \+w but|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w all|strong="G3956"\+w* \+w of|strong="G2532"\+w* \+w you|strong="G5210"\+w*.” \wj* +\v 11 \w For|strong="G1063"\w* \w he|strong="G3754"\w* \w knew|strong="G1492"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w would|strong="G1510"\w* \w betray|strong="G3860"\w* \w him|strong="G3588"\w*; \w therefore|strong="G1223"\w* \w he|strong="G3754"\w* \w said|strong="G3004"\w*, \wj “\+w You|strong="G3754"\+w* \+w are|strong="G1510"\+w* \+w not|strong="G3780"\+w* \+w all|strong="G3956"\+w* \+w clean|strong="G2513"\+w*.”\wj* +\v 12 \w So|strong="G3767"\w* \w when|strong="G3753"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w washed|strong="G3538"\w* \w their|strong="G2532"\w* \w feet|strong="G4228"\w*, \w put|strong="G4160"\w* \w his|strong="G4160"\w* \w outer|strong="G2440"\w* \w garment|strong="G2440"\w* \w back|strong="G3825"\w* \w on|strong="G4160"\w*, \w and|strong="G2532"\w* \w sat|strong="G2532"\w* down \w again|strong="G3825"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Do|strong="G4160"\+w* \+w you|strong="G5210"\+w* \+w know|strong="G1097"\+w* \+w what|strong="G5101"\+w* \+w I|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w done|strong="G4160"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*? \wj* +\v 13 \wj \+w You|strong="G5210"\+w* \+w call|strong="G3004"\+w* \+w me|strong="G1473"\+w*, ‘\+w Teacher|strong="G1320"\+w*’ \+w and|strong="G2532"\+w* ‘\+w Lord|strong="G2962"\+w*.’ \+w You|strong="G5210"\+w* \+w say|strong="G3004"\+w* \+w so|strong="G2532"\+w* \+w correctly|strong="G2573"\+w*, \+w for|strong="G1063"\+w* \+w so|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w*. \wj* +\v 14 \wj \+w If|strong="G1487"\+w* \+w I|strong="G1473"\+w* \+w then|strong="G3767"\+w*, \+w the|strong="G2532"\+w* \+w Lord|strong="G2962"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Teacher|strong="G1320"\+w*, \+w have|strong="G2532"\+w* \+w washed|strong="G3538"\+w* \+w your|strong="G2962"\+w* \+w feet|strong="G4228"\+w*, \+w you|strong="G5210"\+w* \+w also|strong="G2532"\+w* \+w ought|strong="G3784"\+w* \+w to|strong="G2532"\+w* \+w wash|strong="G3538"\+w* \+w one|strong="G3588"\+w* \+w another|strong="G3588"\+w*’\+w s|strong="G2962"\+w* \+w feet|strong="G4228"\+w*. \wj* +\v 15 \wj \+w For|strong="G1063"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w given|strong="G1325"\+w* \+w you|strong="G5210"\+w* \+w an|strong="G2532"\+w* \+w example|strong="G5262"\+w*, \+w that|strong="G2443"\+w* \+w you|strong="G5210"\+w* \+w should|strong="G2532"\+w* \+w also|strong="G2532"\+w* \+w do|strong="G4160"\+w* \+w as|strong="G2531"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w done|strong="G4160"\+w* \+w to|strong="G2443"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 16 \wj Most \+w certainly|strong="G3756"\+w* \+w I|strong="G1510"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w a|strong="G1510"\+w* \+w servant|strong="G1401"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w greater|strong="G3173"\+w* \+w than|strong="G3173"\+w* \+w his|strong="G3992"\+w* \+w lord|strong="G2962"\+w*, \+w neither|strong="G3761"\+w* \+w is|strong="G1510"\+w* \+w one|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w sent|strong="G3992"\+w* \+w greater|strong="G3173"\+w* \+w than|strong="G3173"\+w* \+w he|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w sent|strong="G3992"\+w* \+w him|strong="G3588"\+w*. \wj* +\v 17 \wj \+w If|strong="G1487"\+w* \+w you|strong="G1437"\+w* \+w know|strong="G1492"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w*, \+w blessed|strong="G3107"\+w* \+w are|strong="G1510"\+w* \+w you|strong="G1437"\+w* \+w if|strong="G1487"\+w* \+w you|strong="G1437"\+w* \+w do|strong="G4160"\+w* \+w them|strong="G4160"\+w*. \wj* +\v 18 \wj \+w I|strong="G1473"\+w* don’\+w t|strong="G3588"\+w* \+w speak|strong="G3004"\+w* \+w concerning|strong="G4012"\+w* \+w all|strong="G3956"\+w* \+w of|strong="G4012"\+w* \+w you|strong="G5210"\+w*. \+w I|strong="G1473"\+w* \+w know|strong="G1492"\+w* \+w whom|strong="G5101"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G1473"\+w* \+w chosen|strong="G1586"\+w*; \+w but|strong="G3588"\+w* \+w that|strong="G2443"\+w* \+w the|strong="G3956"\+w* \+w Scripture|strong="G1124"\+w* \+w may|strong="G2443"\+w* \+w be|strong="G3756"\+w* \+w fulfilled|strong="G4137"\+w*, ‘\+w He|strong="G3588"\+w* \+w who|strong="G5101"\+w* \+w eats|strong="G5176"\+w* bread \+w with|strong="G3326"\+w* \+w me|strong="G1473"\+w* \+w has|strong="G5101"\+w* \+w lifted|strong="G1869"\+w* \+w up|strong="G1869"\+w* \+w his|strong="G3956"\+w* \+w heel|strong="G4418"\+w* \+w against|strong="G1909"\+w* \+w me|strong="G1473"\+w*.’\wj*\x + \xo 13:18 \xt Psalms 41:9\x* +\v 19 \wj \+w From|strong="G3588"\+w* \+w now|strong="G1096"\+w* \+w on|strong="G1096"\+w*, \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w before|strong="G4253"\+w* \+w it|strong="G3754"\+w* \+w happens|strong="G1096"\+w*, \+w that|strong="G3754"\+w* \+w when|strong="G3752"\+w* \+w it|strong="G3754"\+w* \+w happens|strong="G1096"\+w*, \+w you|strong="G5210"\+w* \+w may|strong="G2443"\+w* \+w believe|strong="G4100"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w he|strong="G3754"\+w*. \wj* +\v 20 \wj Most certainly \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w he|strong="G1161"\+w* \+w who|strong="G3588"\+w* \+w receives|strong="G2983"\+w* whomever \+w I|strong="G1473"\+w* \+w send|strong="G3992"\+w*, \+w receives|strong="G2983"\+w* \+w me|strong="G1473"\+w*; \+w and|strong="G1161"\+w* \+w he|strong="G1161"\+w* \+w who|strong="G3588"\+w* \+w receives|strong="G2983"\+w* \+w me|strong="G1473"\+w*, \+w receives|strong="G2983"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1473"\+w*.”\wj* +\p +\v 21 \w When|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* \w said|strong="G3004"\w* \w this|strong="G3778"\w*, \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w troubled|strong="G5015"\w* \w in|strong="G2532"\w* \w spirit|strong="G4151"\w*, \w and|strong="G2532"\w* \w testified|strong="G3140"\w*, \wj “\+w Most|strong="G1537"\+w* \+w certainly|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w one|strong="G1520"\+w* \+w of|strong="G1537"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w betray|strong="G3860"\+w* \+w me|strong="G1473"\+w*.”\wj* +\p +\v 22 \w The|strong="G1519"\w* \w disciples|strong="G3101"\w* looked \w at|strong="G1519"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w*, perplexed \w about|strong="G4012"\w* \w whom|strong="G5101"\w* \w he|strong="G3588"\w* \w spoke|strong="G3004"\w*. +\v 23 \w One|strong="G1520"\w* \w of|strong="G1537"\w* \w his|strong="G1722"\w* \w disciples|strong="G3101"\w*, \w whom|strong="G3739"\w* \w Jesus|strong="G2424"\w* loved, \w was|strong="G1510"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* table, leaning \w against|strong="G1722"\w* \w Jesus|strong="G2424"\w*’ chest. +\v 24 \w Simon|strong="G4613"\w* \w Peter|strong="G4074"\w* \w therefore|strong="G3767"\w* \w beckoned|strong="G3506"\w* \w to|strong="G2532"\w* \w him|strong="G3739"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3739"\w*, “\w Tell|strong="G3004"\w* \w us|strong="G3004"\w* \w who|strong="G3739"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w of|strong="G4012"\w* \w whom|strong="G3739"\w* \w he|strong="G2532"\w* \w speaks|strong="G3004"\w*.” +\p +\v 25 \w He|strong="G3588"\w*, leaning back, \w as|strong="G3779"\w* \w he|strong="G3588"\w* \w was|strong="G1510"\w*, \w on|strong="G1909"\w* \w Jesus|strong="G2424"\w*’ \w chest|strong="G4738"\w*, \w asked|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Lord|strong="G2962"\w*, \w who|strong="G5101"\w* \w is|strong="G1510"\w* \w it|strong="G5101"\w*?” +\p +\v 26 \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w* answered, \wj “\+w It|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w he|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w whom|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G1510"\+w* \+w give|strong="G1325"\+w* \+w this|strong="G3588"\+w* piece \+w of|strong="G2532"\+w* bread \+w when|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* dipped \+w it|strong="G2532"\+w*.”\wj* \w So|strong="G3767"\w* \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2424"\w* dipped \w the|strong="G2532"\w* piece \w of|strong="G2532"\w* bread, \w he|strong="G2532"\w* \w gave|strong="G1325"\w* \w it|strong="G2532"\w* \w to|strong="G2532"\w* \w Judas|strong="G2455"\w*, \w the|strong="G2532"\w* son \w of|strong="G2532"\w* \w Simon|strong="G4613"\w* \w Iscariot|strong="G2469"\w*. +\v 27 \w After|strong="G3326"\w* \w the|strong="G2532"\w* piece \w of|strong="G2532"\w* bread, \w then|strong="G3767"\w* \w Satan|strong="G4567"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w him|strong="G3588"\w*. +\p \w Then|strong="G3767"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \wj “\+w What|strong="G3739"\+w* \+w you|strong="G3739"\+w* \+w do|strong="G4160"\+w*, \+w do|strong="G4160"\+w* \+w quickly|strong="G5032"\+w*.”\wj* +\p +\v 28 \w Now|strong="G1161"\w* \w nobody|strong="G3762"\w* \w at|strong="G4314"\w* \w the|strong="G1161"\w* table \w knew|strong="G1097"\w* \w why|strong="G5101"\w* \w he|strong="G1161"\w* \w said|strong="G3004"\w* \w this|strong="G3778"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*. +\v 29 \w For|strong="G1063"\w* \w some|strong="G5100"\w* \w thought|strong="G1380"\w*, \w because|strong="G3754"\w* \w Judas|strong="G2455"\w* \w had|strong="G2192"\w* \w the|strong="G1519"\w* \w money|strong="G1101"\w* \w box|strong="G1101"\w*, \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, “Buy \w what|strong="G3739"\w* \w things|strong="G3588"\w* \w we|strong="G3739"\w* \w need|strong="G5532"\w* \w for|strong="G1063"\w* \w the|strong="G1519"\w* \w feast|strong="G1859"\w*,” \w or|strong="G2228"\w* \w that|strong="G3754"\w* \w he|strong="G3739"\w* \w should|strong="G5100"\w* \w give|strong="G1325"\w* \w something|strong="G5100"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w poor|strong="G4434"\w*. +\v 30 \w Therefore|strong="G3767"\w* \w having|strong="G3767"\w* \w received|strong="G2983"\w* \w that|strong="G3588"\w* \w morsel|strong="G5596"\w*, \w he|strong="G1161"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w immediately|strong="G2112"\w*. \w It|strong="G1161"\w* \w was|strong="G1510"\w* \w night|strong="G3571"\w*. +\p +\v 31 \w When|strong="G3753"\w* \w he|strong="G2532"\w* \w had|strong="G2424"\w* \w gone|strong="G1831"\w* \w out|strong="G1831"\w*, \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w*, \wj “\+w Now|strong="G3568"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Man|strong="G5207"\+w* \+w has|strong="G2316"\+w* \+w been|strong="G2532"\+w* \+w glorified|strong="G1392"\+w*, \+w and|strong="G2532"\+w* \+w God|strong="G2316"\+w* \+w has|strong="G2316"\+w* \+w been|strong="G2532"\+w* \+w glorified|strong="G1392"\+w* \+w in|strong="G1722"\+w* \+w him|strong="G3588"\+w*. \wj* +\v 32 \wj \+w If|strong="G1487"\+w* \+w God|strong="G2316"\+w* \+w has|strong="G2316"\+w* \+w been|strong="G2532"\+w* \+w glorified|strong="G1392"\+w* \+w in|strong="G1722"\+w* \+w him|strong="G3588"\+w*, \+w God|strong="G2316"\+w* \+w will|strong="G2316"\+w* \+w also|strong="G2532"\+w* \+w glorify|strong="G1392"\+w* \+w him|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w himself|strong="G1438"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2316"\+w* \+w glorify|strong="G1392"\+w* \+w him|strong="G3588"\+w* \+w immediately|strong="G2112"\+w*. \wj* +\v 33 \wj \+w Little|strong="G3398"\+w* \+w children|strong="G5040"\+w*, \+w I|strong="G1473"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w you|strong="G5210"\+w* \+w a|strong="G2532"\+w* \+w little|strong="G3398"\+w* \+w while|strong="G3398"\+w* \+w longer|strong="G2089"\+w*. \+w You|strong="G5210"\+w* \+w will|strong="G1510"\+w* \+w seek|strong="G2212"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w as|strong="G2531"\+w* \+w I|strong="G1473"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Jews|strong="G2453"\+w*, ‘\+w Where|strong="G3699"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w going|strong="G5217"\+w*, \+w you|strong="G5210"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w come|strong="G2064"\+w*,’ \+w so|strong="G2532"\+w* \+w now|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 34 \wj \+w A|strong="G2532"\+w* \+w new|strong="G2537"\+w* \+w commandment|strong="G1785"\+w* \+w I|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w to|strong="G2443"\+w* \+w you|strong="G5210"\+w*, \+w that|strong="G2443"\+w* \+w you|strong="G5210"\+w* love \+w one|strong="G2532"\+w* another. \+w Just|strong="G2531"\+w* \+w as|strong="G2531"\+w* \+w I|strong="G2532"\+w* \+w have|strong="G2532"\+w* loved \+w you|strong="G5210"\+w*, \+w you|strong="G5210"\+w* \+w also|strong="G2532"\+w* love \+w one|strong="G2532"\+w* another. \wj* +\v 35 \wj \+w By|strong="G1722"\+w* \+w this|strong="G3778"\+w* \+w everyone|strong="G3956"\+w* \+w will|strong="G1510"\+w* \+w know|strong="G1097"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G1437"\+w* \+w are|strong="G1510"\+w* \+w my|strong="G1699"\+w* \+w disciples|strong="G3101"\+w*, \+w if|strong="G1437"\+w* \+w you|strong="G1437"\+w* \+w have|strong="G2192"\+w* love \+w for|strong="G3754"\+w* \+w one|strong="G3956"\+w* \+w another|strong="G1722"\+w*.”\wj* +\p +\v 36 \w Simon|strong="G4613"\w* \w Peter|strong="G4074"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G2424"\w*, “\w Lord|strong="G2962"\w*, \w where|strong="G3699"\w* \w are|strong="G3568"\w* \w you|strong="G3004"\w* \w going|strong="G5217"\w*?” +\p \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w*, \wj “\+w Where|strong="G3699"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* \+w going|strong="G5217"\+w*, \+w you|strong="G3004"\+w* \+w can|strong="G1410"\+w*’t \+w follow|strong="G1161"\+w* \+w now|strong="G1161"\+w*, \+w but|strong="G1161"\+w* \+w you|strong="G3004"\+w* \+w will|strong="G2962"\+w* \+w follow|strong="G1161"\+w* \+w afterwards|strong="G5305"\+w*.”\wj* +\p +\v 37 \w Peter|strong="G4074"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Lord|strong="G2962"\w*, \w why|strong="G5101"\w* \w can|strong="G1410"\w*’\w t|strong="G3588"\w* \w I|strong="G1473"\w* follow \w you|strong="G4771"\w* \w now|strong="G3756"\w*? \w I|strong="G1473"\w* \w will|strong="G5101"\w* \w lay|strong="G5087"\w* \w down|strong="G5087"\w* \w my|strong="G5087"\w* \w life|strong="G5590"\w* \w for|strong="G5228"\w* \w you|strong="G4771"\w*.” +\p +\v 38 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w Will|strong="G3739"\+w* \+w you|strong="G4771"\+w* \+w lay|strong="G5087"\+w* \+w down|strong="G5087"\+w* \+w your|strong="G5087"\+w* \+w life|strong="G5590"\+w* \+w for|strong="G5228"\+w* \+w me|strong="G1473"\+w*? \+w Most|strong="G5228"\+w* \+w certainly|strong="G3756"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w*, \+w the|strong="G3588"\+w* rooster won’\+w t|strong="G3588"\+w* \+w crow|strong="G5455"\+w* \+w until|strong="G2193"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G1473"\+w* denied \+w me|strong="G1473"\+w* \+w three|strong="G5151"\+w* \+w times|strong="G5151"\+w*.\wj* +\c 14 +\p +\v 1 \wj “Don’\+w t|strong="G3588"\+w* \+w let|strong="G5015"\+w* \+w your|strong="G2532"\+w* \+w heart|strong="G2588"\+w* \+w be|strong="G2532"\+w* \+w troubled|strong="G5015"\+w*. \+w Believe|strong="G4100"\+w* \+w in|strong="G1519"\+w* \+w God|strong="G2316"\+w*. \+w Believe|strong="G4100"\+w* \+w also|strong="G2532"\+w* \+w in|strong="G1519"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 2 \wj \+w In|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w Father|strong="G3962"\+w*’s \+w house|strong="G3614"\+w* \+w are|strong="G1510"\+w* \+w many|strong="G4183"\+w* homes. \+w If|strong="G1487"\+w* \+w it|strong="G3754"\+w* weren’\+w t|strong="G3588"\+w* \+w so|strong="G1161"\+w*, \+w I|strong="G1473"\+w* \+w would|strong="G1722"\+w* \+w have|strong="G1473"\+w* \+w told|strong="G3004"\+w* \+w you|strong="G5210"\+w*. \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w going|strong="G4198"\+w* \+w to|strong="G3004"\+w* \+w prepare|strong="G2090"\+w* \+w a|strong="G1722"\+w* \+w place|strong="G5117"\+w* \+w for|strong="G3754"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 3 \wj \+w If|strong="G1437"\+w* \+w I|strong="G1473"\+w* \+w go|strong="G4198"\+w* \+w and|strong="G2532"\+w* \+w prepare|strong="G2090"\+w* \+w a|strong="G2532"\+w* \+w place|strong="G5117"\+w* \+w for|strong="G4314"\+w* \+w you|strong="G5210"\+w*, \+w I|strong="G1473"\+w* \+w will|strong="G1510"\+w* \+w come|strong="G2064"\+w* \+w again|strong="G3825"\+w* \+w and|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w receive|strong="G3880"\+w* \+w you|strong="G5210"\+w* \+w to|strong="G4314"\+w* \+w myself|strong="G1683"\+w*; \+w that|strong="G2443"\+w* \+w where|strong="G3699"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w*, \+w you|strong="G5210"\+w* \+w may|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w there|strong="G2532"\+w* \+w also|strong="G2532"\+w*. \wj* +\v 4 \wj \+w You|strong="G2532"\+w* \+w know|strong="G1492"\+w* \+w where|strong="G3699"\+w* \+w I|strong="G1473"\+w* \+w go|strong="G5217"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G2532"\+w* \+w know|strong="G1492"\+w* \+w the|strong="G2532"\+w* \+w way|strong="G3598"\+w*.”\wj* +\p +\v 5 \w Thomas|strong="G2381"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Lord|strong="G2962"\w*, \w we|strong="G2532"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w where|strong="G4226"\w* \w you|strong="G3004"\w* \w are|strong="G3588"\w* \w going|strong="G5217"\w*. \w How|strong="G4459"\w* \w can|strong="G1410"\w* \w we|strong="G2532"\w* \w know|strong="G1492"\w* \w the|strong="G2532"\w* \w way|strong="G3598"\w*?” +\p +\v 6 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \wj “\+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w way|strong="G3598"\+w*, \+w the|strong="G2532"\+w* truth, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w life|strong="G2222"\+w*. \+w No|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w comes|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w*, \+w except|strong="G1487"\+w* \+w through|strong="G1223"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 7 \wj \+w If|strong="G1487"\+w* \+w you|strong="G1487"\+w* \+w had|strong="G2532"\+w* \+w known|strong="G1097"\+w* \+w me|strong="G1473"\+w*, \+w you|strong="G1487"\+w* \+w would|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w known|strong="G1097"\+w* \+w my|strong="G3708"\+w* \+w Father|strong="G3962"\+w* \+w also|strong="G2532"\+w*. \+w From|strong="G2532"\+w* \+w now|strong="G2532"\+w* \+w on|strong="G3588"\+w*, \+w you|strong="G1487"\+w* \+w know|strong="G1097"\+w* \+w him|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w seen|strong="G3708"\+w* \+w him|strong="G3588"\+w*.”\wj* +\p +\v 8 \w Philip|strong="G5376"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Lord|strong="G2962"\w*, \w show|strong="G1166"\w* \w us|strong="G3004"\w* \w the|strong="G2532"\w* \w Father|strong="G3962"\w*, \w and|strong="G2532"\w* \w that|strong="G3588"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* enough \w for|strong="G2532"\w* \w us|strong="G3004"\w*.” +\p +\v 9 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Have|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w been|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w you|strong="G5210"\+w* \+w such|strong="G5118"\+w* \+w a|strong="G2532"\+w* \+w long|strong="G5550"\+w* \+w time|strong="G5550"\+w*, \+w and|strong="G2532"\+w* \+w do|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w not|strong="G3756"\+w* \+w know|strong="G1097"\+w* \+w me|strong="G1473"\+w*, \+w Philip|strong="G5376"\+w*? \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w has|strong="G3962"\+w* \+w seen|strong="G3708"\+w* \+w me|strong="G1473"\+w* \+w has|strong="G3962"\+w* \+w seen|strong="G3708"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w*. \+w How|strong="G4459"\+w* \+w do|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w say|strong="G3004"\+w*, ‘\+w Show|strong="G1166"\+w* \+w us|strong="G3004"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w*’? \wj* +\v 10 \wj Don’\+w t|strong="G3588"\+w* \+w you|strong="G5210"\+w* \+w believe|strong="G4100"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w*? \+w The|strong="G1722"\+w* \+w words|strong="G4487"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w I|strong="G1473"\+w* \+w speak|strong="G2980"\+w* \+w not|strong="G3756"\+w* \+w from|strong="G2532"\+w* \+w myself|strong="G1683"\+w*; \+w but|strong="G1161"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w who|strong="G3739"\+w* \+w lives|strong="G3306"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w* \+w does|strong="G4160"\+w* \+w his|strong="G1722"\+w* \+w works|strong="G2041"\+w*. \wj* +\v 11 \wj \+w Believe|strong="G4100"\+w* \+w me|strong="G1473"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w*; \+w or|strong="G2532"\+w* \+w else|strong="G3361"\+w* \+w believe|strong="G4100"\+w* \+w me|strong="G1473"\+w* \+w for|strong="G3754"\+w* \+w the|strong="G1722"\+w* \+w very|strong="G2532"\+w* \+w works|strong="G2041"\+w*’ \+w sake|strong="G1223"\+w*. \wj* +\v 12 \wj Most \+w certainly|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w he|strong="G2532"\+w* \+w who|strong="G3739"\+w* \+w believes|strong="G4100"\+w* \+w in|strong="G1519"\+w* \+w me|strong="G1473"\+w*, \+w the|strong="G2532"\+w* \+w works|strong="G2041"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w do|strong="G4160"\+w*, \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w do|strong="G4160"\+w* \+w also|strong="G2532"\+w*; \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w do|strong="G4160"\+w* \+w greater|strong="G3173"\+w* \+w works|strong="G2041"\+w* \+w than|strong="G3173"\+w* \+w these|strong="G3778"\+w*, \+w because|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* \+w going|strong="G4198"\+w* \+w to|strong="G1519"\+w* \+w my|strong="G1473"\+w* \+w Father|strong="G3962"\+w*. \wj* +\v 13 \wj \+w Whatever|strong="G3739"\+w* \+w you|strong="G3739"\+w* \+w will|strong="G2532"\+w* ask \+w in|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w name|strong="G3686"\+w*, \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w do|strong="G4160"\+w* \+w it|strong="G2532"\+w*, \+w that|strong="G2443"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w may|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w glorified|strong="G1392"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w Son|strong="G5207"\+w*. \wj* +\v 14 \wj \+w If|strong="G1437"\+w* \+w you|strong="G1437"\+w* \+w will|strong="G1473"\+w* ask \+w anything|strong="G5100"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w name|strong="G3686"\+w*, \+w I|strong="G1473"\+w* \+w will|strong="G1473"\+w* \+w do|strong="G4160"\+w* \+w it|strong="G1437"\+w*. \wj* +\v 15 \wj \+w If|strong="G1437"\+w* \+w you|strong="G1437"\+w* love \+w me|strong="G1473"\+w*, \+w keep|strong="G5083"\+w* \+w my|strong="G1699"\+w* \+w commandments|strong="G1785"\+w*. \wj* +\v 16 \wj \+w I|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w pray|strong="G2065"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w give|strong="G1325"\+w* \+w you|strong="G5210"\+w* \+w another|strong="G3588"\+w* Counselor, \wj*\f + \fr 14:16 \ft Greek παρακλητον: Counselor, Helper, Intercessor, Advocate, and Comforter.\f* \wj \+w that|strong="G2443"\+w* \+w he|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w you|strong="G5210"\+w* \+w forever|strong="G1519"\+w*:\wj* +\v 17 \wj \+w the|strong="G1722"\+w* \+w Spirit|strong="G4151"\+w* \+w of|strong="G4151"\+w* truth, \+w whom|strong="G3739"\+w* \+w the|strong="G1722"\+w* \+w world|strong="G2889"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w receive|strong="G2983"\+w*, \+w for|strong="G3754"\+w* \+w it|strong="G2532"\+w* doesn’\+w t|strong="G3588"\+w* \+w see|strong="G2334"\+w* \+w him|strong="G3588"\+w* \+w and|strong="G2532"\+w* doesn’\+w t|strong="G3588"\+w* \+w know|strong="G1097"\+w* \+w him|strong="G3588"\+w*. \+w You|strong="G5210"\+w* \+w know|strong="G1097"\+w* \+w him|strong="G3588"\+w*, \+w for|strong="G3754"\+w* \+w he|strong="G2532"\+w* \+w lives|strong="G3306"\+w* \+w with|strong="G1722"\+w* \+w you|strong="G5210"\+w* \+w and|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 18 \wj \+w I|strong="G2064"\+w* \+w will|strong="G2064"\+w* \+w not|strong="G3756"\+w* leave \+w you|strong="G5210"\+w* \+w orphans|strong="G3737"\+w*. \+w I|strong="G2064"\+w* \+w will|strong="G2064"\+w* \+w come|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 19 \wj \+w Yet|strong="G2089"\+w* \+w a|strong="G2532"\+w* \+w little|strong="G3398"\+w* \+w while|strong="G3398"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w world|strong="G2889"\+w* \+w will|strong="G2532"\+w* \+w see|strong="G2334"\+w* \+w me|strong="G1473"\+w* \+w no|strong="G3765"\+w* \+w more|strong="G2089"\+w*; \+w but|strong="G1161"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w see|strong="G2334"\+w* \+w me|strong="G1473"\+w*. \+w Because|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w live|strong="G2198"\+w*, \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w live|strong="G2198"\+w* \+w also|strong="G2532"\+w*. \wj* +\v 20 \wj \+w In|strong="G1722"\+w* \+w that|strong="G3754"\+w* \+w day|strong="G2250"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w know|strong="G1097"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w Father|strong="G3962"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w in|strong="G1722"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 21 \wj \+w One|strong="G1438"\+w* \+w who|strong="G3588"\+w* \+w has|strong="G2192"\+w* \+w my|strong="G5083"\+w* \+w commandments|strong="G1785"\+w* \+w and|strong="G2532"\+w* \+w keeps|strong="G5083"\+w* \+w them|strong="G3588"\+w*, \+w that|strong="G3588"\+w* person \+w is|strong="G1510"\+w* \+w one|strong="G1438"\+w* \+w who|strong="G3588"\+w* loves \+w me|strong="G1473"\+w*. \+w One|strong="G1438"\+w* \+w who|strong="G3588"\+w* loves \+w me|strong="G1473"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* loved \+w by|strong="G5259"\+w* \+w my|strong="G5083"\+w* \+w Father|strong="G3962"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G1510"\+w* love \+w him|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w will|strong="G1510"\+w* reveal \+w myself|strong="G1683"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w*.”\wj* +\p +\v 22 \w Judas|strong="G2455"\w* (\w not|strong="G3756"\w* \w Iscariot|strong="G2469"\w*) \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Lord|strong="G2962"\w*, \w what|strong="G5101"\w* \w has|strong="G2962"\w* \w happened|strong="G1096"\w* \w that|strong="G3754"\w* \w you|strong="G3754"\w* \w are|strong="G3588"\w* \w about|strong="G3195"\w* \w to|strong="G2532"\w* reveal \w yourself|strong="G4572"\w* \w to|strong="G2532"\w* \w us|strong="G3004"\w*, \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w*?” +\p +\v 23 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w If|strong="G1437"\+w* \+w a|strong="G2532"\+w* \+w man|strong="G5100"\+w* loves \+w me|strong="G1473"\+w*, \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w keep|strong="G5083"\+w* \+w my|strong="G5083"\+w* \+w word|strong="G3056"\+w*. \+w My|strong="G5083"\+w* \+w Father|strong="G3962"\+w* \+w will|strong="G2532"\+w* love \+w him|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w we|strong="G1437"\+w* \+w will|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w him|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w make|strong="G4160"\+w* \+w our|strong="G2424"\+w* home \+w with|strong="G4314"\+w* \+w him|strong="G3588"\+w*. \wj* +\v 24 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3739"\+w* doesn’\+w t|strong="G3588"\+w* love \+w me|strong="G1473"\+w* doesn’\+w t|strong="G3588"\+w* \+w keep|strong="G5083"\+w* \+w my|strong="G1699"\+w* \+w words|strong="G3056"\+w*. \+w The|strong="G2532"\+w* \+w word|strong="G3056"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G3739"\+w* hear isn’\+w t|strong="G3588"\+w* \+w mine|strong="G1699"\+w*, \+w but|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w*’s \+w who|strong="G3739"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1473"\+w*. \wj* +\p +\v 25 \wj “\+w I|strong="G3778"\+w* \+w have|strong="G5210"\+w* \+w said|strong="G2980"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* \+w to|strong="G2980"\+w* \+w you|strong="G5210"\+w* \+w while|strong="G2980"\+w* \+w still|strong="G3306"\+w* \+w living|strong="G3306"\+w* \+w with|strong="G3844"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 26 \wj \+w But|strong="G1161"\+w* \+w the|strong="G1722"\+w* Counselor, \+w the|strong="G1722"\+w* \+w Holy|strong="G4151"\+w* \+w Spirit|strong="G4151"\+w*, \+w whom|strong="G3739"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w will|strong="G2532"\+w* \+w send|strong="G3992"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w name|strong="G3686"\+w*, \+w will|strong="G2532"\+w* \+w teach|strong="G1321"\+w* \+w you|strong="G5210"\+w* \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w*, \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w remind|strong="G5279"\+w* \+w you|strong="G5210"\+w* \+w of|strong="G4151"\+w* \+w all|strong="G3956"\+w* \+w that|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 27 \wj \+w Peace|strong="G1515"\+w* \+w I|strong="G1473"\+w* \+w leave|strong="G1325"\+w* \+w with|strong="G2588"\+w* \+w you|strong="G5210"\+w*. \+w My|strong="G1699"\+w* \+w peace|strong="G1515"\+w* \+w I|strong="G1473"\+w* \+w give|strong="G1325"\+w* \+w to|strong="G1325"\+w* \+w you|strong="G5210"\+w*; \+w not|strong="G3756"\+w* \+w as|strong="G2531"\+w* \+w the|strong="G3588"\+w* \+w world|strong="G2889"\+w* \+w gives|strong="G1325"\+w*, \+w I|strong="G1473"\+w* \+w give|strong="G1325"\+w* \+w to|strong="G1325"\+w* \+w you|strong="G5210"\+w*. Don’\+w t|strong="G3588"\+w* \+w let|strong="G5015"\+w* \+w your|strong="G1325"\+w* \+w heart|strong="G2588"\+w* \+w be|strong="G3756"\+w* \+w troubled|strong="G5015"\+w*, \+w neither|strong="G3756"\+w* \+w let|strong="G5015"\+w* \+w it|strong="G2531"\+w* \+w be|strong="G3756"\+w* \+w fearful|strong="G1168"\+w*. \wj* +\v 28 \wj \+w You|strong="G5210"\+w* heard \+w how|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w told|strong="G3004"\+w* \+w you|strong="G5210"\+w*, ‘\+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w going|strong="G5217"\+w* \+w away|strong="G5217"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G1510"\+w* \+w come|strong="G2064"\+w* \+w back|strong="G4314"\+w* \+w to|strong="G4314"\+w* \+w you|strong="G5210"\+w*.’ \+w If|strong="G1487"\+w* \+w you|strong="G5210"\+w* loved \+w me|strong="G1473"\+w*, \+w you|strong="G5210"\+w* \+w would|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w rejoiced|strong="G5463"\+w* \+w because|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w said|strong="G3004"\+w* ‘\+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w going|strong="G5217"\+w* \+w to|strong="G4314"\+w* \+w my|strong="G1473"\+w* \+w Father|strong="G3962"\+w*;’ \+w for|strong="G3754"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w is|strong="G1510"\+w* \+w greater|strong="G3173"\+w* \+w than|strong="G3173"\+w* \+w I|strong="G1473"\+w*. \wj* +\v 29 \wj \+w Now|strong="G3568"\+w* \+w I|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w told|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w before|strong="G4250"\+w* \+w it|strong="G2532"\+w* \+w happens|strong="G1096"\+w* \+w so|strong="G2443"\+w* \+w that|strong="G2443"\+w* \+w when|strong="G3752"\+w* \+w it|strong="G2532"\+w* \+w happens|strong="G1096"\+w*, \+w you|strong="G5210"\+w* \+w may|strong="G2532"\+w* \+w believe|strong="G4100"\+w*. \wj* +\v 30 \wj \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w no|strong="G3756"\+w* \+w more|strong="G4183"\+w* \+w speak|strong="G2980"\+w* \+w much|strong="G4183"\+w* \+w with|strong="G3326"\+w* \+w you|strong="G5210"\+w*, \+w for|strong="G1063"\+w* \+w the|strong="G1722"\+w* prince \+w of|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w world|strong="G2889"\+w* \+w comes|strong="G2064"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w has|strong="G2192"\+w* \+w nothing|strong="G3762"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 31 \wj \+w But|strong="G2532"\+w* \+w that|strong="G3754"\+w* \+w the|strong="G2532"\+w* \+w world|strong="G2889"\+w* \+w may|strong="G2532"\+w* \+w know|strong="G1097"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* love \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w*, \+w and|strong="G2532"\+w* \+w as|strong="G2531"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w commanded|strong="G1781"\+w* \+w me|strong="G1473"\+w*, \+w even|strong="G2532"\+w* \+w so|strong="G3779"\+w* \+w I|strong="G1473"\+w* \+w do|strong="G4160"\+w*. \+w Arise|strong="G1453"\+w*, \+w let|strong="G1097"\+w*’s \+w go|strong="G2532"\+w* \+w from|strong="G2532"\+w* \+w here|strong="G1782"\+w*.\wj* +\c 15 +\p +\v 1 \wj “\+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w true|strong="G3588"\+w* vine, \+w and|strong="G2532"\+w* \+w my|strong="G1473"\+w* \+w Father|strong="G3962"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w farmer|strong="G1092"\+w*. \wj* +\v 2 \wj \+w Every|strong="G3956"\+w* \+w branch|strong="G2814"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w* \+w that|strong="G2443"\+w* doesn’\+w t|strong="G3588"\+w* \+w bear|strong="G5342"\+w* \+w fruit|strong="G2590"\+w*, \+w he|strong="G2532"\+w* takes away. \+w Every|strong="G3956"\+w* \+w branch|strong="G2814"\+w* \+w that|strong="G2443"\+w* \+w bears|strong="G5342"\+w* \+w fruit|strong="G2590"\+w*, \+w he|strong="G2532"\+w* \+w prunes|strong="G2508"\+w*, \+w that|strong="G2443"\+w* \+w it|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w bear|strong="G5342"\+w* \+w more|strong="G4119"\+w* \+w fruit|strong="G2590"\+w*. \wj* +\v 3 \wj \+w You|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w already|strong="G2235"\+w* pruned \+w clean|strong="G2513"\+w* \+w because|strong="G1223"\+w* \+w of|strong="G3056"\+w* \+w the|strong="G1223"\+w* \+w word|strong="G3056"\+w* \+w which|strong="G3739"\+w* \+w I|strong="G3739"\+w* \+w have|strong="G1510"\+w* \+w spoken|strong="G2980"\+w* \+w to|strong="G2980"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 4 \wj \+w Remain|strong="G3306"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G3588"\+w* \+w I|strong="G1473"\+w* \+w in|strong="G1722"\+w* \+w you|strong="G5210"\+w*. \+w As|strong="G2531"\+w* \+w the|strong="G1722"\+w* \+w branch|strong="G2814"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* \+w bear|strong="G5342"\+w* \+w fruit|strong="G2590"\+w* \+w by|strong="G1722"\+w* \+w itself|strong="G1438"\+w* \+w unless|strong="G1437"\+w* \+w it|strong="G1437"\+w* \+w remains|strong="G3306"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* vine, \+w so|strong="G3779"\+w* \+w neither|strong="G3761"\+w* \+w can|strong="G1410"\+w* \+w you|strong="G5210"\+w*, \+w unless|strong="G1437"\+w* \+w you|strong="G5210"\+w* \+w remain|strong="G3306"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 5 \wj \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w the|strong="G1722"\+w* vine. \+w You|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w the|strong="G1722"\+w* \+w branches|strong="G2814"\+w*. \+w He|strong="G3754"\+w* \+w who|strong="G3588"\+w* \+w remains|strong="G3306"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w* \+w and|strong="G4160"\+w* \+w I|strong="G1473"\+w* \+w in|strong="G1722"\+w* \+w him|strong="G3588"\+w* \+w bears|strong="G4160"\+w* \+w much|strong="G4183"\+w* \+w fruit|strong="G2590"\+w*, \+w for|strong="G3754"\+w* \+w apart|strong="G5565"\+w* \+w from|strong="G3756"\+w* \+w me|strong="G1473"\+w* \+w you|strong="G5210"\+w* \+w can|strong="G1410"\+w* \+w do|strong="G4160"\+w* \+w nothing|strong="G3762"\+w*. \wj* +\v 6 \wj \+w If|strong="G1437"\+w* \+w a|strong="G5613"\+w* \+w man|strong="G5100"\+w* doesn’\+w t|strong="G3588"\+w* \+w remain|strong="G3306"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w*, \+w he|strong="G2532"\+w* \+w is|strong="G3588"\+w* thrown \+w out|strong="G1854"\+w* \+w as|strong="G5613"\+w* \+w a|strong="G5613"\+w* \+w branch|strong="G2814"\+w* \+w and|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w withered|strong="G3583"\+w*; \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w gather|strong="G4863"\+w* \+w them|strong="G3588"\+w*, throw \+w them|strong="G3588"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1722"\+w* \+w fire|strong="G4442"\+w*, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w are|strong="G3588"\+w* \+w burned|strong="G2545"\+w*. \wj* +\v 7 \wj \+w If|strong="G1437"\+w* \+w you|strong="G5210"\+w* \+w remain|strong="G3306"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w my|strong="G1722"\+w* \+w words|strong="G4487"\+w* \+w remain|strong="G3306"\+w* \+w in|strong="G1722"\+w* \+w you|strong="G5210"\+w*, \+w you|strong="G5210"\+w* \+w will|strong="G2309"\+w* ask \+w whatever|strong="G3739"\+w* \+w you|strong="G5210"\+w* \+w desire|strong="G2309"\+w*, \+w and|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w will|strong="G2309"\+w* \+w be|strong="G1096"\+w* \+w done|strong="G1096"\+w* \+w for|strong="G1722"\+w* \+w you|strong="G5210"\+w*.\wj* +\p +\v 8 \wj “\+w In|strong="G1722"\+w* \+w this|strong="G3778"\+w* \+w my|strong="G1699"\+w* \+w Father|strong="G3962"\+w* \+w is|strong="G3588"\+w* \+w glorified|strong="G1392"\+w*, \+w that|strong="G2443"\+w* \+w you|strong="G1722"\+w* \+w bear|strong="G5342"\+w* \+w much|strong="G4183"\+w* \+w fruit|strong="G2590"\+w*; \+w and|strong="G2532"\+w* \+w so|strong="G2443"\+w* \+w you|strong="G1722"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G1096"\+w* \+w my|strong="G1699"\+w* \+w disciples|strong="G3101"\+w*. \wj* +\v 9 \wj \+w Even|strong="G2531"\+w* \+w as|strong="G2531"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w has|strong="G3962"\+w* loved \+w me|strong="G1473"\+w*, \+w I|strong="G1473"\+w* \+w also|strong="G2504"\+w* \+w have|strong="G1473"\+w* loved \+w you|strong="G4771"\+w*. \+w Remain|strong="G3306"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G1699"\+w* love. \wj* +\v 10 \wj \+w If|strong="G1437"\+w* \+w you|strong="G1437"\+w* \+w keep|strong="G5083"\+w* \+w my|strong="G5083"\+w* \+w commandments|strong="G1785"\+w*, \+w you|strong="G1437"\+w* \+w will|strong="G2532"\+w* \+w remain|strong="G3306"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G5083"\+w* love, \+w even|strong="G2532"\+w* \+w as|strong="G2531"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w kept|strong="G5083"\+w* \+w my|strong="G5083"\+w* \+w Father|strong="G3962"\+w*’s \+w commandments|strong="G1785"\+w* \+w and|strong="G2532"\+w* \+w remain|strong="G3306"\+w* \+w in|strong="G1722"\+w* \+w his|strong="G1722"\+w* love. \wj* +\v 11 \wj \+w I|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w spoken|strong="G2980"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* \+w to|strong="G2443"\+w* \+w you|strong="G5210"\+w*, \+w that|strong="G2443"\+w* \+w my|strong="G1699"\+w* \+w joy|strong="G5479"\+w* \+w may|strong="G2532"\+w* \+w remain|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w you|strong="G5210"\+w*, \+w and|strong="G2532"\+w* \+w that|strong="G2443"\+w* \+w your|strong="G2532"\+w* \+w joy|strong="G5479"\+w* \+w may|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w made|strong="G4137"\+w* \+w full|strong="G4137"\+w*.\wj* +\p +\v 12 \wj “\+w This|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w my|strong="G1699"\+w* \+w commandment|strong="G1785"\+w*, \+w that|strong="G2443"\+w* \+w you|strong="G5210"\+w* love \+w one|strong="G3588"\+w* \+w another|strong="G3588"\+w*, \+w even|strong="G2531"\+w* \+w as|strong="G2531"\+w* \+w I|strong="G3778"\+w* \+w have|strong="G1510"\+w* loved \+w you|strong="G5210"\+w*. \wj* +\v 13 \wj \+w Greater|strong="G3173"\+w* love \+w has|strong="G2192"\+w* \+w no|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w than|strong="G5228"\+w* \+w this|strong="G3778"\+w*, \+w that|strong="G2443"\+w* someone \+w lay|strong="G5087"\+w* \+w down|strong="G5087"\+w* \+w his|strong="G2192"\+w* \+w life|strong="G5590"\+w* \+w for|strong="G5228"\+w* \+w his|strong="G2192"\+w* \+w friends|strong="G5384"\+w*. \wj* +\v 14 \wj \+w You|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w my|strong="G1473"\+w* \+w friends|strong="G5384"\+w* \+w if|strong="G1437"\+w* \+w you|strong="G5210"\+w* \+w do|strong="G4160"\+w* \+w whatever|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w command|strong="G1781"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 15 \wj \+w No|strong="G3756"\+w* \+w longer|strong="G3765"\+w* \+w do|strong="G4160"\+w* \+w I|strong="G1473"\+w* \+w call|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w servants|strong="G1401"\+w*, \+w for|strong="G3754"\+w* \+w the|strong="G3956"\+w* \+w servant|strong="G1401"\+w* doesn’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w* \+w what|strong="G5101"\+w* \+w his|strong="G3956"\+w* \+w lord|strong="G2962"\+w* \+w does|strong="G4160"\+w*. \+w But|strong="G1161"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G1473"\+w* \+w called|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w friends|strong="G5384"\+w*, \+w for|strong="G3754"\+w* \+w everything|strong="G3956"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* heard \+w from|strong="G3844"\+w* \+w my|strong="G3956"\+w* \+w Father|strong="G3962"\+w*, \+w I|strong="G1473"\+w* \+w have|strong="G1473"\+w* \+w made|strong="G4160"\+w* \+w known|strong="G1107"\+w* \+w to|strong="G3004"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 16 \wj \+w You|strong="G5210"\+w* didn’\+w t|strong="G3588"\+w* \+w choose|strong="G1586"\+w* \+w me|strong="G1325"\+w*, \+w but|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w chose|strong="G1586"\+w* \+w you|strong="G5210"\+w* \+w and|strong="G2532"\+w* \+w appointed|strong="G5087"\+w* \+w you|strong="G5210"\+w*, \+w that|strong="G2443"\+w* \+w you|strong="G5210"\+w* \+w should|strong="G5100"\+w* \+w go|strong="G5217"\+w* \+w and|strong="G2532"\+w* \+w bear|strong="G5342"\+w* \+w fruit|strong="G2590"\+w*, \+w and|strong="G2532"\+w* \+w that|strong="G2443"\+w* \+w your|strong="G5087"\+w* \+w fruit|strong="G2590"\+w* \+w should|strong="G5100"\+w* \+w remain|strong="G3306"\+w*; \+w that|strong="G2443"\+w* \+w whatever|strong="G3739"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* ask \+w of|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w name|strong="G3686"\+w*, \+w he|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w it|strong="G2532"\+w* \+w to|strong="G2443"\+w* \+w you|strong="G5210"\+w*.\wj* +\p +\v 17 \wj “\+w I|strong="G3778"\+w* \+w command|strong="G1781"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* \+w to|strong="G2443"\+w* \+w you|strong="G5210"\+w*, \+w that|strong="G2443"\+w* \+w you|strong="G5210"\+w* \+w may|strong="G2443"\+w* love \+w one|strong="G3778"\+w* another. \wj* +\v 18 \wj \+w If|strong="G1487"\+w* \+w the|strong="G3588"\+w* \+w world|strong="G2889"\+w* \+w hates|strong="G3404"\+w* \+w you|strong="G5210"\+w*, \+w you|strong="G5210"\+w* \+w know|strong="G1097"\+w* \+w that|strong="G3754"\+w* \+w it|strong="G3754"\+w* \+w has|strong="G2889"\+w* \+w hated|strong="G3404"\+w* \+w me|strong="G1473"\+w* \+w before|strong="G4413"\+w* \+w it|strong="G3754"\+w* \+w hated|strong="G3404"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 19 \wj \+w If|strong="G1487"\+w* \+w you|strong="G5210"\+w* \+w were|strong="G1510"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w world|strong="G2889"\+w*, \+w the|strong="G1537"\+w* \+w world|strong="G2889"\+w* \+w would|strong="G1510"\+w* \+w love|strong="G5368"\+w* \+w its|strong="G5368"\+w* \+w own|strong="G2398"\+w*. \+w But|strong="G1161"\+w* \+w because|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w are|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w world|strong="G2889"\+w*, \+w since|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w chose|strong="G1586"\+w* \+w you|strong="G5210"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w world|strong="G2889"\+w*, \+w therefore|strong="G1223"\+w* \+w the|strong="G1537"\+w* \+w world|strong="G2889"\+w* \+w hates|strong="G3404"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 20 \wj \+w Remember|strong="G3421"\+w* \+w the|strong="G2532"\+w* \+w word|strong="G3056"\+w* \+w that|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*: ‘\+w A|strong="G2532"\+w* \+w servant|strong="G1401"\+w* \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w greater|strong="G3173"\+w* \+w than|strong="G3173"\+w* \+w his|strong="G2532"\+w* \+w lord|strong="G2962"\+w*.’\wj*\x + \xo 15:20 \xt John 13:16\x* \wj \+w If|strong="G1487"\+w* \+w they|strong="G2532"\+w* \+w persecuted|strong="G1377"\+w* \+w me|strong="G1473"\+w*, \+w they|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w also|strong="G2532"\+w* \+w persecute|strong="G1377"\+w* \+w you|strong="G5210"\+w*. \+w If|strong="G1487"\+w* \+w they|strong="G2532"\+w* \+w kept|strong="G5083"\+w* \+w my|strong="G5083"\+w* \+w word|strong="G3056"\+w*, \+w they|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w also|strong="G2532"\+w* \+w keep|strong="G5083"\+w* \+w yours|strong="G4771"\+w*. \wj* +\v 21 \wj \+w But|strong="G3588"\+w* \+w they|strong="G3588"\+w* \+w will|strong="G1473"\+w* \+w do|strong="G4160"\+w* \+w all|strong="G3956"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3956"\+w* \+w to|strong="G1519"\+w* \+w you|strong="G5210"\+w* \+w for|strong="G3754"\+w* \+w my|strong="G3956"\+w* \+w name|strong="G3686"\+w*’s \+w sake|strong="G1223"\+w*, \+w because|strong="G3754"\+w* \+w they|strong="G3588"\+w* don’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 22 \wj \+w If|strong="G1487"\+w* \+w I|strong="G2532"\+w* \+w had|strong="G2192"\+w* \+w not|strong="G3756"\+w* \+w come|strong="G2064"\+w* \+w and|strong="G2532"\+w* \+w spoken|strong="G2980"\+w* \+w to|strong="G2532"\+w* \+w them|strong="G3588"\+w*, \+w they|strong="G2532"\+w* \+w would|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w have|strong="G2192"\+w* \+w had|strong="G2192"\+w* sin; \+w but|strong="G1161"\+w* \+w now|strong="G1161"\+w* \+w they|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w no|strong="G3756"\+w* \+w excuse|strong="G4392"\+w* \+w for|strong="G4012"\+w* \+w their|strong="G2532"\+w* sin. \wj* +\v 23 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w hates|strong="G3404"\+w* \+w me|strong="G1473"\+w*, \+w hates|strong="G3404"\+w* \+w my|strong="G1473"\+w* \+w Father|strong="G3962"\+w* \+w also|strong="G2532"\+w*. \wj* +\v 24 \wj \+w If|strong="G1487"\+w* \+w I|strong="G1473"\+w* hadn’\+w t|strong="G3588"\+w* \+w done|strong="G4160"\+w* \+w among|strong="G1722"\+w* \+w them|strong="G3588"\+w* \+w the|strong="G1722"\+w* \+w works|strong="G2041"\+w* \+w which|strong="G3739"\+w* \+w no|strong="G3756"\+w* \+w one|strong="G3762"\+w* \+w else|strong="G3361"\+w* \+w did|strong="G4160"\+w*, \+w they|strong="G2532"\+w* wouldn’\+w t|strong="G3588"\+w* \+w have|strong="G2192"\+w* \+w had|strong="G2192"\+w* sin. \+w But|strong="G1161"\+w* \+w now|strong="G1161"\+w* \+w they|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w seen|strong="G3708"\+w* \+w and|strong="G2532"\+w* \+w also|strong="G2532"\+w* \+w hated|strong="G3404"\+w* \+w both|strong="G2532"\+w* \+w me|strong="G1473"\+w* \+w and|strong="G2532"\+w* \+w my|strong="G3708"\+w* \+w Father|strong="G3962"\+w*. \wj* +\v 25 \wj \+w But|strong="G3551"\+w* \+w this|strong="G3588"\+w* \+w happened|strong="G3588"\+w* \+w so|strong="G2443"\+w* \+w that|strong="G3754"\+w* \+w the|strong="G1722"\+w* \+w word|strong="G3056"\+w* \+w may|strong="G2443"\+w* \+w be|strong="G2443"\+w* \+w fulfilled|strong="G4137"\+w* \+w which|strong="G3588"\+w* \+w was|strong="G3588"\+w* \+w written|strong="G1125"\+w* \+w in|strong="G1722"\+w* \+w their|strong="G1722"\+w* \+w law|strong="G3551"\+w*, ‘\+w They|strong="G3588"\+w* \+w hated|strong="G3404"\+w* \+w me|strong="G1473"\+w* \+w without|strong="G3588"\+w* \+w a|strong="G1722"\+w* \+w cause|strong="G3588"\+w*.’\wj*\x + \xo 15:25 \xt Psalms 35:19; 69:4\x* +\p +\v 26 \wj “\+w When|strong="G3752"\+w* \+w the|strong="G3588"\+w* Counselor\wj*\f + \fr 15:26 \ft Greek Parakletos: Counselor, Helper, Advocate, Intercessor, and Comforter.\f* \wj \+w has|strong="G3962"\+w* \+w come|strong="G2064"\+w*, \+w whom|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G3739"\+w* \+w send|strong="G3992"\+w* \+w to|strong="G2064"\+w* \+w you|strong="G5210"\+w* \+w from|strong="G3844"\+w* \+w the|strong="G3588"\+w* \+w Father|strong="G3962"\+w*, \+w the|strong="G3588"\+w* \+w Spirit|strong="G4151"\+w* \+w of|strong="G4012"\+w* truth, \+w who|strong="G3739"\+w* \+w proceeds|strong="G1607"\+w* \+w from|strong="G3844"\+w* \+w the|strong="G3588"\+w* \+w Father|strong="G3962"\+w*, \+w he|strong="G3739"\+w* \+w will|strong="G3739"\+w* \+w testify|strong="G3140"\+w* \+w about|strong="G4012"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 27 \wj \+w You|strong="G5210"\+w* \+w will|strong="G1510"\+w* \+w also|strong="G2532"\+w* \+w testify|strong="G3140"\+w*, \+w because|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2532"\+w* \+w been|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1473"\+w* \+w from|strong="G2532"\+w* \+w the|strong="G2532"\+w* beginning.\wj* +\c 16 +\p +\v 1 \wj “\+w I|strong="G3778"\+w* \+w have|strong="G5210"\+w* \+w said|strong="G2980"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* \+w to|strong="G2443"\+w* \+w you|strong="G5210"\+w* \+w so|strong="G2443"\+w* \+w that|strong="G2443"\+w* \+w you|strong="G5210"\+w* wouldn’t \+w be|strong="G3361"\+w* caused \+w to|strong="G2443"\+w* \+w stumble|strong="G4624"\+w*. \wj* +\v 2 \wj \+w They|strong="G3588"\+w* \+w will|strong="G2316"\+w* \+w put|strong="G4160"\+w* \+w you|strong="G5210"\+w* \+w out|strong="G2064"\+w* \+w of|strong="G2316"\+w* \+w the|strong="G3956"\+w* synagogues. Yes, \+w the|strong="G3956"\+w* \+w time|strong="G5610"\+w* \+w is|strong="G3588"\+w* \+w coming|strong="G2064"\+w* \+w that|strong="G2443"\+w* \+w whoever|strong="G3956"\+w* kills \+w you|strong="G5210"\+w* \+w will|strong="G2316"\+w* \+w think|strong="G1380"\+w* \+w that|strong="G2443"\+w* \+w he|strong="G3588"\+w* \+w offers|strong="G4374"\+w* \+w service|strong="G2999"\+w* \+w to|strong="G2443"\+w* \+w God|strong="G2316"\+w*. \wj* +\v 3 \wj \+w They|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w do|strong="G4160"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w*\wj*\f + \fr 16:3 \ft TR adds “to you”\f* \wj \+w because|strong="G3754"\+w* \+w they|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w known|strong="G1097"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w nor|strong="G3761"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 4 \wj \+w But|strong="G1161"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G1473"\+w* \+w told|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* \+w so|strong="G2443"\+w* \+w that|strong="G3754"\+w* \+w when|strong="G3752"\+w* \+w the|strong="G1537"\+w* \+w time|strong="G5610"\+w* \+w comes|strong="G2064"\+w*, \+w you|strong="G5210"\+w* \+w may|strong="G2443"\+w* \+w remember|strong="G3421"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w told|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w about|strong="G2980"\+w* \+w them|strong="G3588"\+w*. \+w I|strong="G1473"\+w* didn’\+w t|strong="G3588"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* \+w from|strong="G1537"\+w* \+w the|strong="G1537"\+w* beginning, \+w because|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w was|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 5 \wj \+w But|strong="G1161"\+w* \+w now|strong="G1161"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* \+w going|strong="G5217"\+w* \+w to|strong="G4314"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w none|strong="G3762"\+w* \+w of|strong="G1537"\+w* \+w you|strong="G5210"\+w* \+w asks|strong="G2065"\+w* \+w me|strong="G1473"\+w*, ‘\+w Where|strong="G4226"\+w* \+w are|strong="G3588"\+w* \+w you|strong="G5210"\+w* \+w going|strong="G5217"\+w*?’ \wj* +\v 6 \wj \+w But|strong="G3588"\+w* \+w because|strong="G3754"\+w* \+w I|strong="G3754"\+w* \+w have|strong="G3748"\+w* \+w told|strong="G2980"\+w* \+w you|strong="G5210"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w*, \+w sorrow|strong="G3077"\+w* \+w has|strong="G3778"\+w* \+w filled|strong="G4137"\+w* \+w your|strong="G3588"\+w* \+w heart|strong="G2588"\+w*. \wj* +\v 7 \wj \+w Nevertheless|strong="G1161"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w the|strong="G1161"\+w* truth: \+w It|strong="G1161"\+w* \+w is|strong="G3588"\+w* \+w to|strong="G4314"\+w* \+w your|strong="G1437"\+w* \+w advantage|strong="G4851"\+w* \+w that|strong="G2443"\+w* \+w I|strong="G1473"\+w* \+w go|strong="G4198"\+w* \+w away|strong="G4198"\+w*; \+w for|strong="G1063"\+w* \+w if|strong="G1437"\+w* \+w I|strong="G1473"\+w* don’\+w t|strong="G3588"\+w* \+w go|strong="G4198"\+w* \+w away|strong="G4198"\+w*, \+w the|strong="G1161"\+w* Counselor won’\+w t|strong="G3588"\+w* \+w come|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w you|strong="G5210"\+w*. \+w But|strong="G1161"\+w* \+w if|strong="G1437"\+w* \+w I|strong="G1473"\+w* \+w go|strong="G4198"\+w*, \+w I|strong="G1473"\+w* \+w will|strong="G1473"\+w* \+w send|strong="G3992"\+w* \+w him|strong="G3588"\+w* \+w to|strong="G4314"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 8 \wj \+w When|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w has|strong="G2889"\+w* \+w come|strong="G2064"\+w*, \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w convict|strong="G1651"\+w* \+w the|strong="G2532"\+w* \+w world|strong="G2889"\+w* \+w about|strong="G4012"\+w* sin, \+w about|strong="G4012"\+w* \+w righteousness|strong="G1343"\+w*, \+w and|strong="G2532"\+w* \+w about|strong="G4012"\+w* \+w judgment|strong="G2920"\+w*; \wj* +\v 9 \wj \+w about|strong="G4012"\+w* sin, \+w because|strong="G3754"\+w* \+w they|strong="G3754"\+w* don’t \+w believe|strong="G4100"\+w* \+w in|strong="G1519"\+w* \+w me|strong="G1473"\+w*; \wj* +\v 10 \wj \+w about|strong="G4012"\+w* \+w righteousness|strong="G1343"\+w*, \+w because|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* \+w going|strong="G5217"\+w* \+w to|strong="G4314"\+w* \+w my|strong="G1473"\+w* \+w Father|strong="G3962"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G3754"\+w* won’\+w t|strong="G3588"\+w* \+w see|strong="G2334"\+w* \+w me|strong="G1473"\+w* \+w any|strong="G3765"\+w* \+w more|strong="G3765"\+w*; \wj* +\v 11 \wj \+w about|strong="G4012"\+w* \+w judgment|strong="G2920"\+w*, \+w because|strong="G3754"\+w* \+w the|strong="G1161"\+w* prince \+w of|strong="G4012"\+w* \+w this|strong="G3778"\+w* \+w world|strong="G2889"\+w* \+w has|strong="G3778"\+w* been \+w judged|strong="G2919"\+w*. \wj* +\p +\v 12 \wj “\+w I|strong="G3004"\+w* \+w still|strong="G2089"\+w* \+w have|strong="G2192"\+w* \+w many|strong="G4183"\+w* \+w things|strong="G4183"\+w* \+w to|strong="G3004"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, but \+w you|strong="G5210"\+w* \+w can|strong="G1410"\+w*’t \+w bear|strong="G2192"\+w* \+w them|strong="G3004"\+w* \+w now|strong="G2089"\+w*. \wj* +\v 13 \wj \+w However|strong="G1161"\+w*, \+w when|strong="G3752"\+w* \+w he|strong="G2532"\+w*, \+w the|strong="G1722"\+w* \+w Spirit|strong="G4151"\+w* \+w of|strong="G4151"\+w* truth, \+w has|strong="G4151"\+w* \+w come|strong="G2064"\+w*, \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w guide|strong="G3594"\+w* \+w you|strong="G5210"\+w* \+w into|strong="G1722"\+w* \+w all|strong="G3956"\+w* truth, \+w for|strong="G1063"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w speak|strong="G2980"\+w* \+w from|strong="G2064"\+w* \+w himself|strong="G1438"\+w*; \+w but|strong="G1161"\+w* \+w whatever|strong="G3745"\+w* \+w he|strong="G2532"\+w* hears, \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w speak|strong="G2980"\+w*. \+w He|strong="G2532"\+w* \+w will|strong="G2532"\+w* declare \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w things|strong="G3956"\+w* \+w that|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w coming|strong="G2064"\+w*. \wj* +\v 14 \wj \+w He|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w glorify|strong="G1392"\+w* \+w me|strong="G1473"\+w*, \+w for|strong="G3754"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w take|strong="G2983"\+w* \+w from|strong="G1537"\+w* \+w what|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w mine|strong="G1699"\+w* \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* declare \+w it|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 15 \wj \+w All|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w that|strong="G3754"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w has|strong="G2192"\+w* \+w are|strong="G1510"\+w* \+w mine|strong="G1699"\+w*; \+w therefore|strong="G1223"\+w* \+w I|strong="G1473"\+w* \+w said|strong="G3004"\+w* \+w that|strong="G3754"\+w* \+w he|strong="G2532"\+w* \+w takes|strong="G2983"\+w*\wj*\f + \fr 16:15 \ft TR reads “will take” instead of “takes”\f* \wj \+w of|strong="G1537"\+w* \+w mine|strong="G1699"\+w* \+w and|strong="G2532"\+w* \+w will|strong="G1510"\+w* declare \+w it|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*. \wj* +\p +\v 16 \wj “\+w A|strong="G2532"\+w* \+w little|strong="G3398"\+w* \+w while|strong="G3398"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G3708"\+w* \+w will|strong="G2532"\+w* \+w not|strong="G3765"\+w* \+w see|strong="G3708"\+w* \+w me|strong="G1473"\+w*. \+w Again|strong="G3825"\+w* \+w a|strong="G2532"\+w* \+w little|strong="G3398"\+w* \+w while|strong="G3398"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G3708"\+w* \+w will|strong="G2532"\+w* \+w see|strong="G3708"\+w* \+w me|strong="G1473"\+w*.”\wj* +\p +\v 17 \w Some|strong="G3739"\w* \w of|strong="G1537"\w* \w his|strong="G3708"\w* \w disciples|strong="G3101"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w one|strong="G3739"\w* \w another|strong="G3739"\w*, “\w What|strong="G5101"\w* \w is|strong="G1510"\w* \w this|strong="G3778"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w says|strong="G3004"\w* \w to|strong="G4314"\w* \w us|strong="G3004"\w*, \wj ‘\+w A|strong="G2532"\+w* \+w little|strong="G3398"\+w* \+w while|strong="G3398"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G3739"\+w* won’\+w t|strong="G3588"\+w* \+w see|strong="G3708"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w again|strong="G3825"\+w* \+w a|strong="G2532"\+w* \+w little|strong="G3398"\+w* \+w while|strong="G3398"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G3739"\+w* \+w will|strong="G5101"\+w* \+w see|strong="G3708"\+w* \+w me|strong="G1473"\+w*;’\wj* \w and|strong="G2532"\w*, \wj ‘\+w Because|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w go|strong="G5217"\+w* \+w to|strong="G4314"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w*’\wj*?” +\v 18 \w They|strong="G3588"\w* \w said|strong="G3004"\w* \w therefore|strong="G3767"\w*, “\w What|strong="G5101"\w* \w is|strong="G1510"\w* \w this|strong="G3778"\w* \w that|strong="G3739"\w* \w he|strong="G3739"\w* \w says|strong="G3004"\w*, \wj ‘\+w A|strong="G1510"\+w* \+w little|strong="G3398"\+w* \+w while|strong="G2980"\+w*’\wj*? \w We|strong="G3739"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w what|strong="G5101"\w* \w he|strong="G3739"\w* \w is|strong="G1510"\w* \w saying|strong="G3004"\w*.” +\p +\v 19 \w Therefore|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w perceived|strong="G1097"\w* \w that|strong="G3754"\w* \w they|strong="G2532"\w* \w wanted|strong="G2309"\w* \w to|strong="G2532"\w* \w ask|strong="G2065"\w* \w him|strong="G3708"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3004"\w*, \wj “\+w Do|strong="G2532"\+w* \+w you|strong="G3754"\+w* \+w inquire|strong="G2212"\+w* \+w among|strong="G3326"\+w* yourselves \+w concerning|strong="G4012"\+w* \+w this|strong="G3778"\+w*, \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w said|strong="G3004"\+w*, ‘\+w A|strong="G2532"\+w* \+w little|strong="G3398"\+w* \+w while|strong="G3398"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G3754"\+w* won’t \+w see|strong="G3708"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w again|strong="G3825"\+w* \+w a|strong="G2532"\+w* \+w little|strong="G3398"\+w* \+w while|strong="G3398"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G3754"\+w* \+w will|strong="G2309"\+w* \+w see|strong="G3708"\+w* \+w me|strong="G1473"\+w*’? \wj* +\v 20 \wj Most \+w certainly|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w weep|strong="G2799"\+w* \+w and|strong="G2532"\+w* \+w lament|strong="G2354"\+w*, \+w but|strong="G1161"\+w* \+w the|strong="G2532"\+w* \+w world|strong="G2889"\+w* \+w will|strong="G2532"\+w* \+w rejoice|strong="G5463"\+w*. \+w You|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G1096"\+w* \+w sorrowful|strong="G3076"\+w*, \+w but|strong="G1161"\+w* \+w your|strong="G2532"\+w* \+w sorrow|strong="G3077"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G1096"\+w* \+w turned|strong="G1096"\+w* \+w into|strong="G1519"\+w* \+w joy|strong="G5479"\+w*. \wj* +\v 21 \wj \+w A|strong="G2192"\+w* \+w woman|strong="G1135"\+w*, \+w when|strong="G3752"\+w* \+w she|strong="G1161"\+w* \+w gives|strong="G1223"\+w* \+w birth|strong="G5088"\+w*, \+w has|strong="G2192"\+w* \+w sorrow|strong="G3077"\+w* \+w because|strong="G3754"\+w* \+w her|strong="G1519"\+w* \+w time|strong="G5610"\+w* \+w has|strong="G2192"\+w* \+w come|strong="G2064"\+w*. \+w But|strong="G1161"\+w* \+w when|strong="G3752"\+w* \+w she|strong="G1161"\+w* \+w has|strong="G2192"\+w* \+w delivered|strong="G5088"\+w* \+w the|strong="G1519"\+w* \+w child|strong="G3813"\+w*, \+w she|strong="G1161"\+w* doesn’\+w t|strong="G3588"\+w* \+w remember|strong="G3421"\+w* \+w the|strong="G1519"\+w* \+w anguish|strong="G2347"\+w* \+w any|strong="G2192"\+w* \+w more|strong="G3765"\+w*, \+w for|strong="G3754"\+w* \+w the|strong="G1519"\+w* \+w joy|strong="G5479"\+w* \+w that|strong="G3754"\+w* \+w a|strong="G2192"\+w* human \+w being|strong="G2192"\+w* \+w is|strong="G3588"\+w* \+w born|strong="G1080"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w world|strong="G2889"\+w*. \wj* +\v 22 \wj \+w Therefore|strong="G3767"\+w* \+w you|strong="G5210"\+w* \+w now|strong="G1161"\+w* \+w have|strong="G2192"\+w* \+w sorrow|strong="G3077"\+w*, \+w but|strong="G1161"\+w* \+w I|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w see|strong="G3708"\+w* \+w you|strong="G5210"\+w* \+w again|strong="G3825"\+w*, \+w and|strong="G2532"\+w* \+w your|strong="G2192"\+w* \+w heart|strong="G2588"\+w* \+w will|strong="G2532"\+w* \+w rejoice|strong="G5463"\+w*, \+w and|strong="G2532"\+w* \+w no|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w will|strong="G2532"\+w* \+w take|strong="G1161"\+w* \+w your|strong="G2192"\+w* \+w joy|strong="G5479"\+w* away \+w from|strong="G2532"\+w* \+w you|strong="G5210"\+w*.\wj* +\p +\v 23 \wj “\+w In|strong="G1722"\+w* \+w that|strong="G3588"\+w* \+w day|strong="G2250"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w ask|strong="G2065"\+w* \+w me|strong="G1325"\+w* \+w no|strong="G3756"\+w* questions. Most \+w certainly|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G5210"\+w*, \+w whatever|strong="G5100"\+w* \+w you|strong="G5210"\+w* \+w may|strong="G2532"\+w* \+w ask|strong="G2065"\+w* \+w of|strong="G2250"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w name|strong="G3686"\+w*, \+w he|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w it|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 24 \wj \+w Until|strong="G2193"\+w* \+w now|strong="G2532"\+w*, \+w you|strong="G5210"\+w* \+w have|strong="G2532"\+w* asked \+w nothing|strong="G3762"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w name|strong="G3686"\+w*. Ask, \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G1510"\+w* \+w receive|strong="G2983"\+w*, \+w that|strong="G2443"\+w* \+w your|strong="G2532"\+w* \+w joy|strong="G5479"\+w* \+w may|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w made|strong="G4137"\+w* \+w full|strong="G4137"\+w*. \wj* +\p +\v 25 \wj “\+w I|strong="G3778"\+w* \+w have|strong="G5210"\+w* \+w spoken|strong="G2980"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* \+w to|strong="G2064"\+w* \+w you|strong="G5210"\+w* \+w in|strong="G1722"\+w* figures \+w of|strong="G4012"\+w* \+w speech|strong="G3954"\+w*. \+w But|strong="G3588"\+w* \+w the|strong="G1722"\+w* \+w time|strong="G5610"\+w* \+w is|strong="G3588"\+w* \+w coming|strong="G2064"\+w* \+w when|strong="G3753"\+w* \+w I|strong="G3778"\+w* \+w will|strong="G3778"\+w* \+w no|strong="G3765"\+w* \+w more|strong="G3765"\+w* \+w speak|strong="G2980"\+w* \+w to|strong="G2064"\+w* \+w you|strong="G5210"\+w* \+w in|strong="G1722"\+w* figures \+w of|strong="G4012"\+w* \+w speech|strong="G3954"\+w*, \+w but|strong="G3588"\+w* \+w will|strong="G3778"\+w* \+w tell|strong="G2980"\+w* \+w you|strong="G5210"\+w* \+w plainly|strong="G3954"\+w* \+w about|strong="G4012"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w*. \wj* +\v 26 \wj \+w In|strong="G1722"\+w* \+w that|strong="G3754"\+w* \+w day|strong="G2250"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2532"\+w* \+w ask|strong="G2065"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w name|strong="G3686"\+w*; \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* don’\+w t|strong="G3588"\+w* \+w say|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w pray|strong="G2065"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w for|strong="G3754"\+w* \+w you|strong="G5210"\+w*, \wj* +\v 27 \wj \+w for|strong="G1063"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w* himself \+w loves|strong="G5368"\+w* \+w you|strong="G5210"\+w*, \+w because|strong="G3754"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2532"\+w* \+w loved|strong="G5368"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w believed|strong="G4100"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w came|strong="G1831"\+w* \+w from|strong="G3844"\+w* \+w God|strong="G2316"\+w*. \wj* +\v 28 \wj \+w I|strong="G2532"\+w* \+w came|strong="G2064"\+w* \+w from|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w and|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w world|strong="G2889"\+w*. \+w Again|strong="G3825"\+w*, \+w I|strong="G2532"\+w* \+w leave|strong="G1831"\+w* \+w the|strong="G2532"\+w* \+w world|strong="G2889"\+w* \+w and|strong="G2532"\+w* \+w go|strong="G4198"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w*.”\wj* +\p +\v 29 \w His|strong="G1722"\w* \w disciples|strong="G3101"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Behold|strong="G2396"\w*, \w now|strong="G3568"\w* \w you|strong="G1722"\w* \w are|strong="G3588"\w* \w speaking|strong="G2980"\w* \w plainly|strong="G3954"\w*, \w and|strong="G2532"\w* \w using|strong="G3004"\w* \w no|strong="G3762"\w* figures \w of|strong="G2532"\w* \w speech|strong="G3954"\w*. +\v 30 \w Now|strong="G3568"\w* \w we|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w you|strong="G4771"\w* \w know|strong="G1492"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w and|strong="G2532"\w* don’t \w need|strong="G5532"\w* \w for|strong="G3754"\w* \w anyone|strong="G5100"\w* \w to|strong="G2443"\w* \w question|strong="G2065"\w* \w you|strong="G4771"\w*. \w By|strong="G1722"\w* \w this|strong="G3778"\w* \w we|strong="G3754"\w* \w believe|strong="G4100"\w* \w that|strong="G3754"\w* \w you|strong="G4771"\w* \w came|strong="G1831"\w* \w from|strong="G2532"\w* \w God|strong="G2316"\w*.” +\p +\v 31 \w Jesus|strong="G2424"\w* answered \w them|strong="G4100"\w*, \wj “\+w Do|strong="G4100"\+w* \+w you|strong="G2424"\+w* now \+w believe|strong="G4100"\+w*? \wj* +\v 32 \wj \+w Behold|strong="G2400"\+w*, \+w the|strong="G2532"\+w* \+w time|strong="G5610"\+w* \+w is|strong="G1510"\+w* \+w coming|strong="G2064"\+w*, yes, \+w and|strong="G2532"\+w* \+w has|strong="G3962"\+w* \+w now|strong="G2532"\+w* \+w come|strong="G2064"\+w*, \+w that|strong="G3754"\+w* \+w you|strong="G3754"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w scattered|strong="G4650"\+w*, \+w everyone|strong="G1538"\+w* \+w to|strong="G1519"\+w* \+w his|strong="G1519"\+w* \+w own|strong="G2398"\+w* \+w place|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G3754"\+w* \+w will|strong="G1510"\+w* leave \+w me|strong="G1473"\+w* \+w alone|strong="G3441"\+w*. \+w Yet|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w alone|strong="G3441"\+w*, \+w because|strong="G3754"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w* \+w is|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 33 \wj \+w I|strong="G1473"\+w* \+w have|strong="G2192"\+w* \+w told|strong="G2980"\+w* \+w you|strong="G5210"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w*, \+w that|strong="G2443"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w* \+w you|strong="G5210"\+w* \+w may|strong="G2443"\+w* \+w have|strong="G2192"\+w* \+w peace|strong="G1515"\+w*. \+w In|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w world|strong="G2889"\+w* \+w you|strong="G5210"\+w* \+w have|strong="G2192"\+w* \+w trouble|strong="G2347"\+w*; \+w but|strong="G3588"\+w* cheer \+w up|strong="G1722"\+w*! \+w I|strong="G1473"\+w* \+w have|strong="G2192"\+w* \+w overcome|strong="G3528"\+w* \+w the|strong="G1722"\+w* \+w world|strong="G2889"\+w*.” \wj* +\c 17 +\p +\v 1 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w then|strong="G2532"\w* \w lifting|strong="G1869"\w* \w up|strong="G1869"\w* \w his|strong="G1519"\w* \w eyes|strong="G3788"\w* \w to|strong="G1519"\w* \w heaven|strong="G3772"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Father|strong="G3962"\+w*, \+w the|strong="G2532"\+w* \+w time|strong="G5610"\+w* \+w has|strong="G3962"\+w* \+w come|strong="G2064"\+w*. \+w Glorify|strong="G1392"\+w* \+w your|strong="G2532"\+w* \+w Son|strong="G5207"\+w*, \+w that|strong="G2443"\+w* \+w your|strong="G2532"\+w* \+w Son|strong="G5207"\+w* \+w may|strong="G2532"\+w* \+w also|strong="G2532"\+w* \+w glorify|strong="G1392"\+w* \+w you|strong="G4771"\+w*; \wj* +\v 2 \wj \+w even|strong="G2531"\+w* \+w as|strong="G2531"\+w* \+w you|strong="G3739"\+w* \+w gave|strong="G1325"\+w* \+w him|strong="G1325"\+w* \+w authority|strong="G1849"\+w* \+w over|strong="G1849"\+w* \+w all|strong="G3956"\+w* \+w flesh|strong="G4561"\+w*, \+w so|strong="G2443"\+w* \+w he|strong="G3739"\+w* \+w will|strong="G3739"\+w* \+w give|strong="G1325"\+w* eternal \+w life|strong="G2222"\+w* \+w to|strong="G2443"\+w* \+w all|strong="G3956"\+w* \+w whom|strong="G3739"\+w* \+w you|strong="G3739"\+w* \+w have|strong="G3956"\+w* \+w given|strong="G1325"\+w* \+w him|strong="G1325"\+w*. \wj* +\v 3 \wj \+w This|strong="G3778"\+w* \+w is|strong="G1510"\+w* eternal \+w life|strong="G2222"\+w*, \+w that|strong="G2443"\+w* \+w they|strong="G2532"\+w* \+w should|strong="G2316"\+w* \+w know|strong="G1097"\+w* \+w you|strong="G4771"\+w*, \+w the|strong="G2532"\+w* \+w only|strong="G3441"\+w* \+w true|strong="G3588"\+w* \+w God|strong="G2316"\+w*, \+w and|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w whom|strong="G3739"\+w* \+w you|strong="G4771"\+w* \+w sent|strong="G2316"\+w*, \+w Jesus|strong="G2424"\+w* \+w Christ|strong="G5547"\+w*. \wj* +\v 4 \wj \+w I|strong="G1473"\+w* \+w glorified|strong="G1392"\+w* \+w you|strong="G4771"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G1909"\+w* \+w earth|strong="G1093"\+w*. \+w I|strong="G1473"\+w* \+w have|strong="G1473"\+w* \+w accomplished|strong="G5048"\+w* \+w the|strong="G1909"\+w* \+w work|strong="G2041"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G1473"\+w* \+w given|strong="G1325"\+w* \+w me|strong="G1325"\+w* \+w to|strong="G2443"\+w* \+w do|strong="G4160"\+w*. \wj* +\v 5 \wj \+w Now|strong="G3568"\+w*, \+w Father|strong="G3962"\+w*, \+w glorify|strong="G1392"\+w* \+w me|strong="G1473"\+w* \+w with|strong="G3844"\+w* \+w your|strong="G2192"\+w* \+w own|strong="G4572"\+w* \+w self|strong="G4572"\+w* \+w with|strong="G3844"\+w* \+w the|strong="G2532"\+w* \+w glory|strong="G1391"\+w* \+w which|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w had|strong="G2192"\+w* \+w with|strong="G3844"\+w* \+w you|strong="G4771"\+w* \+w before|strong="G4253"\+w* \+w the|strong="G2532"\+w* \+w world|strong="G2889"\+w* \+w existed|strong="G1510"\+w*. \wj* +\p +\v 6 \wj “\+w I|strong="G1473"\+w* \+w revealed|strong="G5319"\+w* \+w your|strong="G4674"\+w* \+w name|strong="G3686"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w people|strong="G1510"\+w* \+w whom|strong="G3739"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2532"\+w* \+w given|strong="G1325"\+w* \+w me|strong="G1325"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w world|strong="G2889"\+w*. \+w They|strong="G2532"\+w* \+w were|strong="G1510"\+w* \+w yours|strong="G4771"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2532"\+w* \+w given|strong="G1325"\+w* \+w them|strong="G3588"\+w* \+w to|strong="G2532"\+w* \+w me|strong="G1325"\+w*. \+w They|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w kept|strong="G5083"\+w* \+w your|strong="G4674"\+w* \+w word|strong="G3056"\+w*. \wj* +\v 7 \wj \+w Now|strong="G3568"\+w* \+w they|strong="G3754"\+w* \+w have|strong="G1473"\+w* \+w known|strong="G1097"\+w* \+w that|strong="G3754"\+w* \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w whatever|strong="G3745"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G1473"\+w* \+w given|strong="G1325"\+w* \+w me|strong="G1325"\+w* \+w are|strong="G1510"\+w* \+w from|strong="G3844"\+w* \+w you|strong="G4771"\+w*, \wj* +\v 8 \wj \+w for|strong="G3754"\+w* \+w the|strong="G2532"\+w* \+w words|strong="G4487"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2532"\+w* \+w given|strong="G1325"\+w* \+w me|strong="G1325"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w given|strong="G1325"\+w* \+w to|strong="G2532"\+w* \+w them|strong="G3588"\+w*; \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w received|strong="G2983"\+w* \+w them|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w knew|strong="G1097"\+w* \+w for|strong="G3754"\+w* \+w sure|strong="G1097"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w came|strong="G1831"\+w* \+w from|strong="G3844"\+w* \+w you|strong="G4771"\+w*. \+w They|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w believed|strong="G4100"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w sent|strong="G2532"\+w* \+w me|strong="G1325"\+w*. \wj* +\v 9 \wj \+w I|strong="G1473"\+w* \+w pray|strong="G2065"\+w* \+w for|strong="G3754"\+w* \+w them|strong="G3588"\+w*. \+w I|strong="G1473"\+w* don’\+w t|strong="G3588"\+w* \+w pray|strong="G2065"\+w* \+w for|strong="G3754"\+w* \+w the|strong="G3588"\+w* \+w world|strong="G2889"\+w*, \+w but|strong="G3588"\+w* \+w for|strong="G3754"\+w* \+w those|strong="G3588"\+w* \+w whom|strong="G3739"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G1473"\+w* \+w given|strong="G1325"\+w* \+w me|strong="G1325"\+w*, \+w for|strong="G3754"\+w* \+w they|strong="G3588"\+w* \+w are|strong="G1510"\+w* \+w yours|strong="G4771"\+w*. \wj* +\v 10 \wj \+w All|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w that|strong="G3588"\+w* \+w are|strong="G1510"\+w* \+w mine|strong="G1699"\+w* \+w are|strong="G1510"\+w* \+w yours|strong="G4674"\+w*, \+w and|strong="G2532"\+w* \+w yours|strong="G4674"\+w* \+w are|strong="G1510"\+w* \+w mine|strong="G1699"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w am|strong="G1510"\+w* \+w glorified|strong="G1392"\+w* \+w in|strong="G1722"\+w* \+w them|strong="G3588"\+w*. \wj* +\v 11 \wj \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w no|strong="G3765"\+w* \+w more|strong="G3765"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w world|strong="G2889"\+w*, \+w but|strong="G2532"\+w* \+w these|strong="G3739"\+w* \+w are|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w world|strong="G2889"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w coming|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w you|strong="G4771"\+w*. Holy \+w Father|strong="G3962"\+w*, \+w keep|strong="G5083"\+w* \+w them|strong="G3588"\+w* \+w through|strong="G1722"\+w* \+w your|strong="G2532"\+w* \+w name|strong="G3686"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2532"\+w* \+w given|strong="G1325"\+w* \+w me|strong="G1325"\+w*, \+w that|strong="G2443"\+w* \+w they|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w one|strong="G1520"\+w*, \+w even|strong="G2532"\+w* \+w as|strong="G2531"\+w* \+w we|strong="G2249"\+w* \+w are|strong="G1510"\+w*. \wj* +\v 12 \wj \+w While|strong="G1722"\+w* \+w I|strong="G1473"\+w* \+w was|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w them|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* world, \+w I|strong="G1473"\+w* \+w kept|strong="G5083"\+w* \+w them|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G2532"\+w* \+w name|strong="G3686"\+w*. \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w kept|strong="G5083"\+w* \+w those|strong="G3588"\+w* \+w whom|strong="G3739"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2532"\+w* \+w given|strong="G1325"\+w* \+w me|strong="G1325"\+w*. \+w None|strong="G3762"\+w* \+w of|strong="G1537"\+w* \+w them|strong="G3588"\+w* \+w is|strong="G1510"\+w* lost \+w except|strong="G1487"\+w* \+w the|strong="G1722"\+w* \+w son|strong="G5207"\+w* \+w of|strong="G1537"\+w* destruction, \+w that|strong="G2443"\+w* \+w the|strong="G1722"\+w* \+w Scripture|strong="G1124"\+w* \+w might|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w fulfilled|strong="G4137"\+w*. \wj* +\v 13 \wj \+w But|strong="G1161"\+w* \+w now|strong="G1161"\+w* \+w I|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w to|strong="G4314"\+w* \+w you|strong="G4771"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w say|strong="G2980"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w world|strong="G2889"\+w*, \+w that|strong="G2443"\+w* \+w they|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w my|strong="G1699"\+w* \+w joy|strong="G5479"\+w* \+w made|strong="G4137"\+w* \+w full|strong="G4137"\+w* \+w in|strong="G1722"\+w* \+w themselves|strong="G1438"\+w*. \wj* +\v 14 \wj \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w given|strong="G1325"\+w* \+w them|strong="G3588"\+w* \+w your|strong="G2532"\+w* \+w word|strong="G3056"\+w*. \+w The|strong="G2532"\+w* \+w world|strong="G2889"\+w* \+w hated|strong="G3404"\+w* \+w them|strong="G3588"\+w* \+w because|strong="G3754"\+w* \+w they|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w world|strong="G2889"\+w*, \+w even|strong="G2532"\+w* \+w as|strong="G2531"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w world|strong="G2889"\+w*. \wj* +\v 15 \wj \+w I|strong="G2443"\+w* \+w pray|strong="G2065"\+w* \+w not|strong="G3756"\+w* \+w that|strong="G2443"\+w* \+w you|strong="G1438"\+w* \+w would|strong="G1438"\+w* \+w take|strong="G2443"\+w* \+w them|strong="G3588"\+w* \+w from|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w world|strong="G2889"\+w*, \+w but|strong="G3588"\+w* \+w that|strong="G2443"\+w* \+w you|strong="G1438"\+w* \+w would|strong="G1438"\+w* \+w keep|strong="G5083"\+w* \+w them|strong="G3588"\+w* \+w from|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w evil|strong="G4190"\+w* \+w one|strong="G1438"\+w*. \wj* +\v 16 \wj \+w They|strong="G3588"\+w* \+w are|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w world|strong="G2889"\+w*, \+w even|strong="G2531"\+w* \+w as|strong="G2531"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w world|strong="G2889"\+w*. \wj* +\v 17 \wj Sanctify \+w them|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w your|strong="G4674"\+w* truth. \+w Your|strong="G4674"\+w* \+w word|strong="G3056"\+w* \+w is|strong="G1510"\+w* truth.\wj*\x + \xo 17:17 \xt Psalms 119:142\x* +\v 18 \wj \+w As|strong="G2531"\+w* \+w you|strong="G1438"\+w* sent \+w me|strong="G1473"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w world|strong="G2889"\+w*, \+w even|strong="G2531"\+w* \+w so|strong="G1519"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G1473"\+w* sent \+w them|strong="G3588"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G1519"\+w* \+w world|strong="G2889"\+w*. \wj* +\v 19 \wj \+w For|strong="G5228"\+w* \+w their|strong="G2532"\+w* \+w sakes|strong="G5228"\+w* \+w I|strong="G1473"\+w* sanctify \+w myself|strong="G1683"\+w*, \+w that|strong="G2443"\+w* \+w they|strong="G2532"\+w* \+w themselves|strong="G1722"\+w* \+w also|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w be|strong="G1510"\+w* sanctified \+w in|strong="G1722"\+w* truth. \wj* +\p +\v 20 \wj “\+w Not|strong="G3756"\+w* \+w for|strong="G1519"\+w* \+w these|strong="G3778"\+w* \+w only|strong="G3440"\+w* \+w do|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w pray|strong="G2065"\+w*, \+w but|strong="G1161"\+w* \+w for|strong="G1519"\+w* \+w those|strong="G3588"\+w* \+w also|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w will|strong="G2532"\+w* \+w believe|strong="G4100"\+w* \+w in|strong="G1519"\+w* \+w me|strong="G1473"\+w* \+w through|strong="G1223"\+w* \+w their|strong="G2532"\+w* \+w word|strong="G3056"\+w*, \wj* +\v 21 \wj \+w that|strong="G3754"\+w* \+w they|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w all|strong="G3956"\+w* \+w be|strong="G1510"\+w* \+w one|strong="G1520"\+w*; \+w even|strong="G2532"\+w* \+w as|strong="G2531"\+w* \+w you|strong="G4771"\+w*, \+w Father|strong="G3962"\+w*, \+w are|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w in|strong="G1722"\+w* \+w you|strong="G4771"\+w*, \+w that|strong="G3754"\+w* \+w they|strong="G2532"\+w* \+w also|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w one|strong="G1520"\+w* \+w in|strong="G1722"\+w* \+w us|strong="G2249"\+w*; \+w that|strong="G3754"\+w* \+w the|strong="G1722"\+w* \+w world|strong="G2889"\+w* \+w may|strong="G2532"\+w* \+w believe|strong="G4100"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w sent|strong="G2532"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 22 \wj \+w The|strong="G3588"\+w* \+w glory|strong="G1391"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G3739"\+w* \+w have|strong="G1473"\+w* \+w given|strong="G1325"\+w* \+w me|strong="G1325"\+w*, \+w I|strong="G1473"\+w* \+w have|strong="G1473"\+w* \+w given|strong="G1325"\+w* \+w to|strong="G2443"\+w* \+w them|strong="G3588"\+w*, \+w that|strong="G2443"\+w* \+w they|strong="G3588"\+w* \+w may|strong="G2443"\+w* \+w be|strong="G1510"\+w* \+w one|strong="G1520"\+w*, \+w even|strong="G2531"\+w* \+w as|strong="G2531"\+w* \+w we|strong="G2249"\+w* \+w are|strong="G1510"\+w* \+w one|strong="G1520"\+w*, \wj* +\v 23 \wj \+w I|strong="G1473"\+w* \+w in|strong="G1722"\+w* \+w them|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w*, \+w that|strong="G3754"\+w* \+w they|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w perfected|strong="G5048"\+w* \+w into|strong="G1519"\+w* \+w one|strong="G1520"\+w*, \+w that|strong="G3754"\+w* \+w the|strong="G1722"\+w* \+w world|strong="G2889"\+w* \+w may|strong="G2532"\+w* \+w know|strong="G1097"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w sent|strong="G2532"\+w* \+w me|strong="G1473"\+w* \+w and|strong="G2532"\+w* loved \+w them|strong="G3588"\+w*, \+w even|strong="G2532"\+w* \+w as|strong="G2531"\+w* \+w you|strong="G4771"\+w* loved \+w me|strong="G1473"\+w*. \wj* +\v 24 \wj \+w Father|strong="G3962"\+w*, \+w I|strong="G1473"\+w* \+w desire|strong="G2309"\+w* \+w that|strong="G3754"\+w* \+w they|strong="G3588"\+w* \+w also|strong="G2548"\+w* \+w whom|strong="G3739"\+w* \+w you|strong="G3739"\+w* \+w have|strong="G2309"\+w* \+w given|strong="G1325"\+w* \+w me|strong="G1325"\+w* \+w be|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1325"\+w* \+w where|strong="G3699"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w*, \+w that|strong="G3754"\+w* \+w they|strong="G3588"\+w* \+w may|strong="G2443"\+w* \+w see|strong="G2334"\+w* \+w my|strong="G1699"\+w* \+w glory|strong="G1391"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G3739"\+w* \+w have|strong="G2309"\+w* \+w given|strong="G1325"\+w* \+w me|strong="G1325"\+w*, \+w for|strong="G3754"\+w* \+w you|strong="G3739"\+w* loved \+w me|strong="G1325"\+w* \+w before|strong="G4253"\+w* \+w the|strong="G3588"\+w* \+w foundation|strong="G2602"\+w* \+w of|strong="G1391"\+w* \+w the|strong="G3588"\+w* \+w world|strong="G2889"\+w*. \wj* +\v 25 \wj \+w Righteous|strong="G1342"\+w* \+w Father|strong="G3962"\+w*, \+w the|strong="G2532"\+w* \+w world|strong="G2889"\+w* hasn’\+w t|strong="G3588"\+w* \+w known|strong="G1097"\+w* \+w you|strong="G4771"\+w*, \+w but|strong="G1161"\+w* \+w I|strong="G1473"\+w* \+w knew|strong="G1097"\+w* \+w you|strong="G4771"\+w*; \+w and|strong="G2532"\+w* \+w these|strong="G3778"\+w* \+w knew|strong="G1097"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w sent|strong="G2532"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 26 \wj \+w I|strong="G1473"\+w* \+w made|strong="G1107"\+w* \+w known|strong="G1107"\+w* \+w to|strong="G2443"\+w* \+w them|strong="G3588"\+w* \+w your|strong="G2532"\+w* \+w name|strong="G3686"\+w*, \+w and|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w make|strong="G1107"\+w* \+w it|strong="G2532"\+w* \+w known|strong="G1107"\+w*; \+w that|strong="G2443"\+w* \+w the|strong="G1722"\+w* love \+w with|strong="G1722"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G4771"\+w* loved \+w me|strong="G1473"\+w* \+w may|strong="G2532"\+w* \+w be|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w them|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w in|strong="G1722"\+w* \+w them|strong="G3588"\+w*.”\wj* +\c 18 +\p +\v 1 \w When|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* \w spoken|strong="G3004"\w* \w these|strong="G3778"\w* \w words|strong="G2532"\w*, \w he|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w with|strong="G4862"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w over|strong="G4008"\w* \w the|strong="G2532"\w* \w brook|strong="G5493"\w* \w Kidron|strong="G2748"\w*, \w where|strong="G3699"\w* \w there|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w garden|strong="G2779"\w*, \w into|strong="G1519"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w and|strong="G2532"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w entered|strong="G1525"\w*. +\v 2 \w Now|strong="G1161"\w* \w Judas|strong="G2455"\w*, \w who|strong="G3588"\w* \w betrayed|strong="G3860"\w* \w him|strong="G3588"\w*, \w also|strong="G2532"\w* \w knew|strong="G1492"\w* \w the|strong="G2532"\w* \w place|strong="G5117"\w*, \w for|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w often|strong="G4178"\w* \w met|strong="G4863"\w* \w there|strong="G1563"\w* \w with|strong="G3326"\w* \w his|strong="G2532"\w* \w disciples|strong="G3101"\w*. +\v 3 \w Judas|strong="G2455"\w* \w then|strong="G3767"\w*, \w having|strong="G2532"\w* \w taken|strong="G2983"\w* \w a|strong="G2532"\w* detachment \w of|strong="G1537"\w* soldiers \w and|strong="G2532"\w* \w officers|strong="G5257"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w*, \w came|strong="G2064"\w* \w there|strong="G1563"\w* \w with|strong="G3326"\w* \w lanterns|strong="G5322"\w*, \w torches|strong="G2985"\w*, \w and|strong="G2532"\w* \w weapons|strong="G3696"\w*. +\v 4 \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w*, \w knowing|strong="G1492"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w things|strong="G3956"\w* \w that|strong="G3588"\w* \w were|strong="G3588"\w* happening \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w Who|strong="G5101"\+w* \+w are|strong="G3588"\+w* \+w you|strong="G3004"\+w* \+w looking|strong="G2212"\+w* \+w for|strong="G1909"\+w*?”\wj* +\p +\v 5 \w They|strong="G2532"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Jesus|strong="G2424"\w* \w of|strong="G2532"\w* \w Nazareth|strong="G3480"\w*.” +\p \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \wj “\+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w he|strong="G2532"\+w*.”\wj* +\p \w Judas|strong="G2455"\w* \w also|strong="G2532"\w*, \w who|strong="G3588"\w* \w betrayed|strong="G3860"\w* \w him|strong="G3588"\w*, \w was|strong="G1510"\w* \w standing|strong="G2476"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w*. +\v 6 \w When|strong="G5613"\w* \w therefore|strong="G3767"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w he|strong="G2532"\+w*,”\wj* \w they|strong="G2532"\w* \w went|strong="G2532"\w* \w backward|strong="G3694"\w* \w and|strong="G2532"\w* \w fell|strong="G4098"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w ground|strong="G5476"\w*. +\p +\v 7 \w Again|strong="G3825"\w* \w therefore|strong="G3767"\w* \w he|strong="G1161"\w* \w asked|strong="G1905"\w* \w them|strong="G3588"\w*, \wj “\+w Who|strong="G5101"\+w* \+w are|strong="G3588"\+w* \+w you|strong="G3004"\+w* \+w looking|strong="G2212"\+w* \+w for|strong="G1161"\+w*?”\wj* +\p \w They|strong="G1161"\w* \w said|strong="G3004"\w*, “\w Jesus|strong="G2424"\w* \w of|strong="G2424"\w* \w Nazareth|strong="G3480"\w*.” +\p +\v 8 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w*, \wj “\+w I|strong="G1473"\+w* \+w told|strong="G3004"\+w* \+w you|strong="G5210"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w he|strong="G3754"\+w*. \+w If|strong="G1487"\+w* \+w therefore|strong="G3767"\+w* \+w you|strong="G5210"\+w* \+w seek|strong="G2212"\+w* \+w me|strong="G1473"\+w*, \+w let|strong="G1510"\+w* \+w these|strong="G3778"\+w* \+w go|strong="G5217"\+w* \+w their|strong="G2212"\+w* \+w way|strong="G5217"\+w*,”\wj* +\v 9 \w that|strong="G3754"\w* \w the|strong="G1537"\w* \w word|strong="G3056"\w* \w might|strong="G1473"\w* \w be|strong="G3756"\w* \w fulfilled|strong="G4137"\w* \w which|strong="G3739"\w* \w he|strong="G3739"\w* \w spoke|strong="G3004"\w*, \wj “\+w Of|strong="G1537"\+w* \+w those|strong="G3588"\+w* \+w whom|strong="G3739"\+w* \+w you|strong="G3739"\+w* \+w have|strong="G1473"\+w* \+w given|strong="G1325"\+w* \+w me|strong="G1325"\+w*, \+w I|strong="G1473"\+w* \+w have|strong="G1473"\+w* lost \+w none|strong="G3762"\+w*.”\wj*\x + \xo 18:9 \xt John 6:39\x* +\p +\v 10 \w Simon|strong="G4613"\w* \w Peter|strong="G4074"\w* \w therefore|strong="G3767"\w*, \w having|strong="G2192"\w* \w a|strong="G2192"\w* \w sword|strong="G3162"\w*, \w drew|strong="G1670"\w* \w it|strong="G2532"\w*, \w struck|strong="G3817"\w* \w the|strong="G2532"\w* \w high|strong="G2532"\w* priest’\w s|strong="G2192"\w* \w servant|strong="G1401"\w*, \w and|strong="G2532"\w* \w cut|strong="G2532"\w* off \w his|strong="G1438"\w* \w right|strong="G1188"\w* \w ear|strong="G5621"\w*. \w The|strong="G2532"\w* \w servant|strong="G1401"\w*’\w s|strong="G2192"\w* \w name|strong="G3686"\w* \w was|strong="G1510"\w* \w Malchus|strong="G3124"\w*. +\v 11 \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w Peter|strong="G4074"\w*, \wj “\+w Put|strong="G1325"\+w* \+w the|strong="G1519"\+w* \+w sword|strong="G3162"\+w* \+w into|strong="G1519"\+w* \+w its|strong="G1325"\+w* \+w sheath|strong="G2336"\+w*. \+w The|strong="G1519"\+w* \+w cup|strong="G4221"\+w* \+w which|strong="G3739"\+w* \+w the|strong="G1519"\+w* \+w Father|strong="G3962"\+w* \+w has|strong="G3962"\+w* \+w given|strong="G1325"\+w* \+w me|strong="G1325"\+w*, \+w shall|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w not|strong="G3756"\+w* \+w surely|strong="G3361"\+w* \+w drink|strong="G4095"\+w* \+w it|strong="G3739"\+w*?”\wj* +\p +\v 12 \w So|strong="G3767"\w* \w the|strong="G2532"\w* detachment, \w the|strong="G2532"\w* commanding \w officer|strong="G5257"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w officers|strong="G5257"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w seized|strong="G4815"\w* \w Jesus|strong="G2424"\w* \w and|strong="G2532"\w* \w bound|strong="G1210"\w* \w him|strong="G3588"\w*, +\v 13 \w and|strong="G2532"\w* led \w him|strong="G3588"\w* \w to|strong="G4314"\w* Annas \w first|strong="G4413"\w*, \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w father-in-law|strong="G3995"\w* \w to|strong="G4314"\w* \w Caiaphas|strong="G2533"\w*, \w who|strong="G3739"\w* \w was|strong="G1510"\w* \w high|strong="G2532"\w* priest \w that|strong="G3739"\w* \w year|strong="G1763"\w*. +\v 14 \w Now|strong="G1161"\w* \w it|strong="G3754"\w* \w was|strong="G1510"\w* \w Caiaphas|strong="G2533"\w* \w who|strong="G3588"\w* \w advised|strong="G4823"\w* \w the|strong="G1161"\w* \w Jews|strong="G2453"\w* \w that|strong="G3754"\w* \w it|strong="G3754"\w* \w was|strong="G1510"\w* \w expedient|strong="G4851"\w* \w that|strong="G3754"\w* \w one|strong="G1520"\w* \w man|strong="G1520"\w* \w should|strong="G3588"\w* perish \w for|strong="G3754"\w* \w the|strong="G1161"\w* \w people|strong="G2992"\w*. +\p +\v 15 \w Simon|strong="G4613"\w* \w Peter|strong="G4074"\w* followed \w Jesus|strong="G2424"\w*, \w as|strong="G1519"\w* \w did|strong="G2532"\w* \w another|strong="G3588"\w* \w disciple|strong="G3101"\w*. \w Now|strong="G1161"\w* \w that|strong="G3588"\w* \w disciple|strong="G3101"\w* \w was|strong="G1510"\w* \w known|strong="G1110"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w high|strong="G2532"\w* priest, \w and|strong="G2532"\w* \w entered|strong="G4897"\w* \w in|strong="G1519"\w* \w with|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* court \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w high|strong="G2532"\w* priest; +\v 16 \w but|strong="G1161"\w* \w Peter|strong="G4074"\w* \w was|strong="G3588"\w* \w standing|strong="G2476"\w* \w at|strong="G4314"\w* \w the|strong="G2532"\w* \w door|strong="G2374"\w* \w outside|strong="G1854"\w*. \w So|strong="G3767"\w* \w the|strong="G2532"\w* \w other|strong="G1161"\w* \w disciple|strong="G3101"\w*, \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w known|strong="G1110"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w high|strong="G2532"\w* priest, \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w and|strong="G2532"\w* \w spoke|strong="G3004"\w* \w to|strong="G4314"\w* \w her|strong="G3588"\w* \w who|strong="G3588"\w* \w kept|strong="G2532"\w* \w the|strong="G2532"\w* \w door|strong="G2374"\w*, \w and|strong="G2532"\w* \w brought|strong="G1521"\w* \w in|strong="G2532"\w* \w Peter|strong="G4074"\w*. +\v 17 \w Then|strong="G3767"\w* \w the|strong="G2532"\w* \w maid|strong="G3814"\w* \w who|strong="G3588"\w* \w kept|strong="G2532"\w* \w the|strong="G2532"\w* \w door|strong="G2377"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w Peter|strong="G4074"\w*, “\w Are|strong="G1510"\w* \w you|strong="G4771"\w* \w also|strong="G2532"\w* \w one|strong="G3588"\w* \w of|strong="G1537"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w*’s \w disciples|strong="G3101"\w*?” +\p \w He|strong="G2532"\w* \w said|strong="G3004"\w*, “\w I|strong="G2532"\w* \w am|strong="G1510"\w* \w not|strong="G3756"\w*.” +\p +\v 18 \w Now|strong="G1161"\w* \w the|strong="G2532"\w* \w servants|strong="G1401"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w officers|strong="G5257"\w* \w were|strong="G1510"\w* \w standing|strong="G2476"\w* \w there|strong="G2532"\w*, \w having|strong="G2532"\w* \w made|strong="G4160"\w* \w a|strong="G2532"\w* fire \w of|strong="G2532"\w* coals, \w for|strong="G3754"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w cold|strong="G5592"\w*. \w They|strong="G2532"\w* \w were|strong="G1510"\w* \w warming|strong="G2328"\w* \w themselves|strong="G3326"\w*. \w Peter|strong="G4074"\w* \w was|strong="G1510"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w*, \w standing|strong="G2476"\w* \w and|strong="G2532"\w* \w warming|strong="G2328"\w* \w himself|strong="G2328"\w*. +\p +\v 19 \w The|strong="G2532"\w* \w high|strong="G2532"\w* priest \w therefore|strong="G3767"\w* \w asked|strong="G2065"\w* \w Jesus|strong="G2424"\w* \w about|strong="G4012"\w* \w his|strong="G4012"\w* \w disciples|strong="G3101"\w* \w and|strong="G2532"\w* \w about|strong="G4012"\w* \w his|strong="G4012"\w* \w teaching|strong="G1322"\w*. +\p +\v 20 \w Jesus|strong="G2424"\w* answered \w him|strong="G3588"\w*, \wj “\+w I|strong="G1473"\+w* \+w spoke|strong="G2980"\+w* \+w openly|strong="G3954"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w world|strong="G2889"\+w*. \+w I|strong="G1473"\+w* \+w always|strong="G3842"\+w* \+w taught|strong="G1321"\+w* \+w in|strong="G1722"\+w* \+w synagogues|strong="G4864"\+w* \+w and|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w temple|strong="G2413"\+w*, \+w where|strong="G3699"\+w* \+w the|strong="G1722"\+w* \+w Jews|strong="G2453"\+w* \+w always|strong="G3842"\+w* \+w meet|strong="G3588"\+w*. \+w I|strong="G1473"\+w* \+w said|strong="G2980"\+w* \+w nothing|strong="G3762"\+w* \+w in|strong="G1722"\+w* \+w secret|strong="G2927"\+w*. \wj* +\v 21 \wj \+w Why|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G3739"\+w* \+w ask|strong="G2065"\+w* \+w me|strong="G1473"\+w*? \+w Ask|strong="G2065"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3739"\+w* \+w have|strong="G1473"\+w* heard \+w me|strong="G1473"\+w* \+w what|strong="G5101"\+w* \+w I|strong="G1473"\+w* \+w said|strong="G3004"\+w* \+w to|strong="G3004"\+w* \+w them|strong="G3588"\+w*. \+w Behold|strong="G1492"\+w*, \+w they|strong="G3588"\+w* \+w know|strong="G1492"\+w* \+w the|strong="G3588"\+w* \+w things|strong="G3778"\+w* \+w which|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w said|strong="G3004"\+w*.”\wj* +\p +\v 22 \w When|strong="G1161"\w* \w he|strong="G1161"\w* \w had|strong="G2424"\w* \w said|strong="G3004"\w* \w this|strong="G3778"\w*, \w one|strong="G1520"\w* \w of|strong="G1520"\w* \w the|strong="G1161"\w* \w officers|strong="G5257"\w* \w standing|strong="G3936"\w* \w by|strong="G3936"\w* slapped \w Jesus|strong="G2424"\w* \w with|strong="G3588"\w* \w his|strong="G1325"\w* \w hand|strong="G1161"\w*, \w saying|strong="G3004"\w*, “\w Do|strong="G3004"\w* \w you|strong="G1325"\w* answer \w the|strong="G1161"\w* high priest \w like|strong="G3779"\w* \w that|strong="G3588"\w*?” +\p +\v 23 \w Jesus|strong="G2424"\w* answered \w him|strong="G3588"\w*, \wj “\+w If|strong="G1487"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G1473"\+w* \+w spoken|strong="G2980"\+w* \+w evil|strong="G2556"\+w*, \+w testify|strong="G3140"\+w* \+w of|strong="G4012"\+w* \+w the|strong="G1161"\+w* \+w evil|strong="G2556"\+w*; \+w but|strong="G1161"\+w* \+w if|strong="G1487"\+w* \+w well|strong="G2573"\+w*, \+w why|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G1487"\+w* \+w beat|strong="G1194"\+w* \+w me|strong="G1473"\+w*?”\wj* +\p +\v 24 Annas sent \w him|strong="G3588"\w* \w bound|strong="G1210"\w* \w to|strong="G4314"\w* \w Caiaphas|strong="G2533"\w*, \w the|strong="G4314"\w* high priest. +\p +\v 25 \w Now|strong="G1161"\w* \w Simon|strong="G4613"\w* \w Peter|strong="G4074"\w* \w was|strong="G1510"\w* \w standing|strong="G2476"\w* \w and|strong="G2532"\w* \w warming|strong="G2328"\w* \w himself|strong="G2328"\w*. \w They|strong="G2532"\w* \w said|strong="G3004"\w* \w therefore|strong="G3767"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w You|strong="G4771"\w* aren’\w t|strong="G3588"\w* \w also|strong="G2532"\w* \w one|strong="G3588"\w* \w of|strong="G1537"\w* \w his|strong="G2532"\w* \w disciples|strong="G3101"\w*, \w are|strong="G1510"\w* \w you|strong="G4771"\w*?” +\p \w He|strong="G2532"\w* denied \w it|strong="G2532"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w I|strong="G2532"\w* \w am|strong="G1510"\w* \w not|strong="G3756"\w*.” +\p +\v 26 \w One|strong="G1520"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w servants|strong="G1401"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* high priest, \w being|strong="G1510"\w* \w a|strong="G1722"\w* \w relative|strong="G4773"\w* \w of|strong="G1537"\w* \w him|strong="G3588"\w* \w whose|strong="G3739"\w* \w ear|strong="G5621"\w* \w Peter|strong="G4074"\w* \w had|strong="G1510"\w* \w cut|strong="G4074"\w* \w off|strong="G1537"\w*, \w said|strong="G3004"\w*, “Didn’\w t|strong="G3588"\w* \w I|strong="G1473"\w* \w see|strong="G3708"\w* \w you|strong="G4771"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w garden|strong="G2779"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w*?” +\p +\v 27 \w Peter|strong="G4074"\w* \w therefore|strong="G3767"\w* denied \w it|strong="G2532"\w* \w again|strong="G3825"\w*, \w and|strong="G2532"\w* \w immediately|strong="G2112"\w* \w the|strong="G2532"\w* rooster \w crowed|strong="G5455"\w*. +\p +\v 28 \w They|strong="G2532"\w* \w led|strong="G3767"\w* \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w* \w from|strong="G2532"\w* \w Caiaphas|strong="G2533"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w Praetorium|strong="G4232"\w*. \w It|strong="G2532"\w* \w was|strong="G1510"\w* \w early|strong="G4404"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w themselves|strong="G1519"\w* didn’\w t|strong="G3588"\w* \w enter|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w Praetorium|strong="G4232"\w*, \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w not|strong="G3756"\w* \w be|strong="G1510"\w* \w defiled|strong="G3392"\w*, \w but|strong="G1161"\w* \w might|strong="G2532"\w* \w eat|strong="G2068"\w* \w the|strong="G2532"\w* \w Passover|strong="G3957"\w*. +\v 29 \w Pilate|strong="G4091"\w* \w therefore|strong="G3767"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w said|strong="G5346"\w*, “\w What|strong="G5101"\w* \w accusation|strong="G2724"\w* \w do|strong="G5101"\w* \w you|strong="G1438"\w* \w bring|strong="G5342"\w* \w against|strong="G2596"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w*?” +\p +\v 30 \w They|strong="G2532"\w* \w answered|strong="G3004"\w* \w him|strong="G4160"\w*, “\w If|strong="G1487"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* weren’t \w an|strong="G2532"\w* \w evildoer|strong="G2556"\w*, \w we|strong="G2532"\w* wouldn’t \w have|strong="G2532"\w* \w delivered|strong="G3860"\w* \w him|strong="G4160"\w* \w up|strong="G3860"\w* \w to|strong="G2532"\w* \w you|strong="G4771"\w*.” +\p +\v 31 \w Pilate|strong="G4091"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, “\w Take|strong="G2983"\w* \w him|strong="G3588"\w* \w yourselves|strong="G4771"\w*, \w and|strong="G2532"\w* \w judge|strong="G2919"\w* \w him|strong="G3588"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w your|strong="G2532"\w* \w law|strong="G3551"\w*.” +\p \w Therefore|strong="G3767"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w It|strong="G2532"\w* \w is|strong="G3588"\w* illegal \w for|strong="G2532"\w* \w us|strong="G3004"\w* \w to|strong="G2532"\w* \w put|strong="G2532"\w* \w anyone|strong="G3762"\w* \w to|strong="G2532"\w* death,” +\v 32 \w that|strong="G2443"\w* \w the|strong="G3588"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w Jesus|strong="G2424"\w* might \w be|strong="G3195"\w* \w fulfilled|strong="G4137"\w*, \w which|strong="G3739"\w* \w he|strong="G3739"\w* \w spoke|strong="G3004"\w*, \w signifying|strong="G4591"\w* \w by|strong="G3004"\w* \w what|strong="G3739"\w* \w kind|strong="G4169"\w* \w of|strong="G3056"\w* \w death|strong="G2288"\w* \w he|strong="G3739"\w* \w should|strong="G3195"\w* \w die|strong="G2288"\w*. +\p +\v 33 \w Pilate|strong="G4091"\w* \w therefore|strong="G3767"\w* \w entered|strong="G1525"\w* \w again|strong="G3825"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w Praetorium|strong="G4232"\w*, \w called|strong="G3004"\w* \w Jesus|strong="G2424"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, “\w Are|strong="G1510"\w* \w you|strong="G4771"\w* \w the|strong="G2532"\w* \w King|strong="G3588"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w*?” +\p +\v 34 \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w* \w him|strong="G1438"\w*, \wj “\+w Do|strong="G3004"\+w* \+w you|strong="G4771"\+w* \+w say|strong="G3004"\+w* \+w this|strong="G3778"\+w* \+w by|strong="G3004"\+w* \+w yourself|strong="G4572"\+w*, \+w or|strong="G2228"\+w* \+w did|strong="G2228"\+w* others \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w* \+w about|strong="G4012"\+w* \+w me|strong="G1473"\+w*?”\wj* +\p +\v 35 \w Pilate|strong="G4091"\w* answered, “\w I|strong="G1473"\w*’m \w not|strong="G1510"\w* \w a|strong="G2532"\w* \w Jew|strong="G2453"\w*, \w am|strong="G1510"\w* \w I|strong="G1473"\w*? \w Your|strong="G4674"\w* \w own|strong="G4674"\w* \w nation|strong="G1484"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w delivered|strong="G3860"\w* \w you|strong="G4771"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w*. \w What|strong="G5101"\w* \w have|strong="G2532"\w* \w you|strong="G4771"\w* \w done|strong="G4160"\w*?” +\p +\v 36 \w Jesus|strong="G2424"\w* answered, \wj “\+w My|strong="G1699"\+w* Kingdom \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w of|strong="G1537"\+w* \+w this|strong="G3778"\+w* \+w world|strong="G2889"\+w*. \+w If|strong="G1487"\+w* \+w my|strong="G1699"\+w* Kingdom \+w were|strong="G1510"\+w* \+w of|strong="G1537"\+w* \+w this|strong="G3778"\+w* \+w world|strong="G2889"\+w*, \+w then|strong="G1161"\+w* \+w my|strong="G1699"\+w* \+w servants|strong="G5257"\+w* \+w would|strong="G1510"\+w* fight, \+w that|strong="G2443"\+w* \+w I|strong="G1473"\+w* wouldn’\+w t|strong="G3588"\+w* \+w be|strong="G1510"\+w* \+w delivered|strong="G3860"\+w* \+w to|strong="G2443"\+w* \+w the|strong="G1537"\+w* \+w Jews|strong="G2453"\+w*. \+w But|strong="G1161"\+w* \+w now|strong="G1161"\+w* \+w my|strong="G1699"\+w* Kingdom \+w is|strong="G1510"\+w* \+w not|strong="G3756"\+w* \+w from|strong="G1537"\+w* \+w here|strong="G1782"\+w*.”\wj* +\p +\v 37 \w Pilate|strong="G4091"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, “\w Are|strong="G1510"\w* \w you|strong="G4771"\w* \w a|strong="G2532"\w* \w king|strong="G3588"\w* \w then|strong="G3767"\w*?” +\p \w Jesus|strong="G2424"\w* \w answered|strong="G3004"\w*, \wj “\+w You|strong="G4771"\+w* \+w say|strong="G3004"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w a|strong="G2532"\+w* \+w king|strong="G3588"\+w*. \+w For|strong="G3754"\+w* \+w this|strong="G3778"\+w* \+w reason|strong="G1537"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w been|strong="G1510"\+w* \+w born|strong="G1080"\+w*, \+w and|strong="G2532"\+w* \+w for|strong="G3754"\+w* \+w this|strong="G3778"\+w* \+w reason|strong="G1537"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w world|strong="G2889"\+w*, \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w should|strong="G3588"\+w* \+w testify|strong="G3140"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* truth. \+w Everyone|strong="G3956"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* truth listens \+w to|strong="G1519"\+w* \+w my|strong="G3956"\+w* \+w voice|strong="G5456"\+w*.”\wj* +\p +\v 38 \w Pilate|strong="G4091"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w What|strong="G5101"\w* \w is|strong="G1510"\w* truth?” +\p \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w said|strong="G3004"\w* \w this|strong="G3778"\w*, \w he|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w again|strong="G3825"\w* \w to|strong="G4314"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, “\w I|strong="G1473"\w* \w find|strong="G2147"\w* \w no|strong="G3762"\w* basis \w for|strong="G4314"\w* \w a|strong="G2532"\w* charge \w against|strong="G4314"\w* \w him|strong="G3588"\w*. +\v 39 \w But|strong="G1161"\w* \w you|strong="G5210"\w* \w have|strong="G1510"\w* \w a|strong="G1722"\w* \w custom|strong="G4914"\w* \w that|strong="G2443"\w* \w I|strong="G1161"\w* \w should|strong="G3588"\w* release \w someone|strong="G1520"\w* \w to|strong="G2443"\w* \w you|strong="G5210"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w Passover|strong="G3957"\w*. \w Therefore|strong="G3767"\w*, \w do|strong="G1510"\w* \w you|strong="G5210"\w* \w want|strong="G1014"\w* me \w to|strong="G2443"\w* release \w to|strong="G2443"\w* \w you|strong="G5210"\w* \w the|strong="G1722"\w* \w King|strong="G3588"\w* \w of|strong="G1520"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w*?” +\p +\v 40 \w Then|strong="G3767"\w* \w they|strong="G1161"\w* \w all|strong="G3361"\w* shouted \w again|strong="G3825"\w*, \w saying|strong="G3004"\w*, “\w Not|strong="G3361"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w*, \w but|strong="G1161"\w* Barabbas!” \w Now|strong="G1161"\w* Barabbas \w was|strong="G1510"\w* \w a|strong="G1510"\w* \w robber|strong="G3027"\w*. +\c 19 +\p +\v 1 \w So|strong="G3767"\w* \w Pilate|strong="G4091"\w* \w then|strong="G3767"\w* \w took|strong="G2983"\w* \w Jesus|strong="G2424"\w* \w and|strong="G2532"\w* flogged \w him|strong="G3588"\w*. +\v 2 \w The|strong="G2532"\w* \w soldiers|strong="G4757"\w* \w twisted|strong="G4120"\w* thorns into \w a|strong="G2532"\w* \w crown|strong="G4735"\w* \w and|strong="G2532"\w* \w put|strong="G2007"\w* \w it|strong="G2532"\w* \w on|strong="G1537"\w* \w his|strong="G2007"\w* \w head|strong="G2776"\w*, \w and|strong="G2532"\w* \w dressed|strong="G4016"\w* \w him|strong="G3588"\w* \w in|strong="G2532"\w* \w a|strong="G2532"\w* \w purple|strong="G4210"\w* \w garment|strong="G2440"\w*. +\v 3 \w They|strong="G2532"\w* \w kept|strong="G2532"\w* \w saying|strong="G3004"\w*, “\w Hail|strong="G5463"\w*, \w King|strong="G3588"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w*!” \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w kept|strong="G2532"\w* slapping \w him|strong="G3588"\w*. +\p +\v 4 \w Then|strong="G2532"\w* \w Pilate|strong="G4091"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w again|strong="G3825"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2443"\w* \w them|strong="G3588"\w*, “\w Behold|strong="G2396"\w*, \w I|strong="G2532"\w* \w bring|strong="G2532"\w* \w him|strong="G3588"\w* \w out|strong="G1831"\w* \w to|strong="G2443"\w* \w you|strong="G5210"\w*, \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w may|strong="G2532"\w* \w know|strong="G1097"\w* \w that|strong="G3754"\w* \w I|strong="G2532"\w* \w find|strong="G2147"\w* \w no|strong="G3756"\w* basis \w for|strong="G3754"\w* \w a|strong="G2532"\w* charge \w against|strong="G1722"\w* \w him|strong="G3588"\w*.” +\p +\v 5 \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w*, \w wearing|strong="G5409"\w* \w the|strong="G2532"\w* \w crown|strong="G4735"\w* \w of|strong="G2532"\w* thorns \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w purple|strong="G4210"\w* \w garment|strong="G2440"\w*. \w Pilate|strong="G3004"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, “\w Behold|strong="G2400"\w*, \w the|strong="G2532"\w* man!” +\p +\v 6 \w When|strong="G3753"\w* \w therefore|strong="G3767"\w* \w the|strong="G1722"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w officers|strong="G5257"\w* \w saw|strong="G3708"\w* \w him|strong="G3588"\w*, \w they|strong="G2532"\w* shouted, \w saying|strong="G3004"\w*, “\w Crucify|strong="G4717"\w*! \w Crucify|strong="G4717"\w*!” +\p \w Pilate|strong="G4091"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, “\w Take|strong="G2983"\w* \w him|strong="G3588"\w* \w yourselves|strong="G4771"\w* \w and|strong="G2532"\w* \w crucify|strong="G4717"\w* \w him|strong="G3588"\w*, \w for|strong="G1063"\w* \w I|strong="G1473"\w* \w find|strong="G2147"\w* \w no|strong="G3756"\w* basis \w for|strong="G1063"\w* \w a|strong="G2532"\w* charge \w against|strong="G1722"\w* \w him|strong="G3588"\w*.” +\p +\v 7 \w The|strong="G2532"\w* \w Jews|strong="G2453"\w* answered \w him|strong="G3588"\w*, “\w We|strong="G2249"\w* \w have|strong="G2192"\w* \w a|strong="G2192"\w* \w law|strong="G3551"\w*, \w and|strong="G2532"\w* \w by|strong="G2596"\w* \w our|strong="G2316"\w* \w law|strong="G3551"\w* \w he|strong="G2532"\w* \w ought|strong="G3784"\w* \w to|strong="G2532"\w* die, \w because|strong="G3754"\w* \w he|strong="G2532"\w* \w made|strong="G4160"\w* \w himself|strong="G1438"\w* \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*.” +\p +\v 8 \w When|strong="G3753"\w* \w therefore|strong="G3767"\w* \w Pilate|strong="G4091"\w* heard \w this|strong="G3778"\w* \w saying|strong="G3056"\w*, \w he|strong="G3778"\w* \w was|strong="G3588"\w* \w more|strong="G3123"\w* \w afraid|strong="G5399"\w*. +\v 9 \w He|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w Praetorium|strong="G4232"\w* \w again|strong="G3825"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w Jesus|strong="G2424"\w*, “\w Where|strong="G4159"\w* \w are|strong="G1510"\w* \w you|strong="G4771"\w* \w from|strong="G2532"\w*?” \w But|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w gave|strong="G1325"\w* \w him|strong="G3588"\w* \w no|strong="G3756"\w* answer. +\v 10 \w Pilate|strong="G4091"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “Aren’\w t|strong="G3588"\w* \w you|strong="G4771"\w* \w speaking|strong="G2980"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w*? Don’\w t|strong="G3588"\w* \w you|strong="G4771"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w I|strong="G1473"\w* \w have|strong="G2192"\w* \w power|strong="G1849"\w* \w to|strong="G2532"\w* release \w you|strong="G4771"\w* \w and|strong="G2532"\w* \w have|strong="G2192"\w* \w power|strong="G1849"\w* \w to|strong="G2532"\w* \w crucify|strong="G4717"\w* \w you|strong="G4771"\w*?” +\p +\v 11 \w Jesus|strong="G2424"\w* answered, \wj “\+w You|strong="G4771"\+w* \+w would|strong="G1510"\+w* \+w have|strong="G2192"\+w* \+w no|strong="G3756"\+w* \+w power|strong="G1849"\+w* \+w at|strong="G2596"\+w* \+w all|strong="G2596"\+w* \+w against|strong="G2596"\+w* \+w me|strong="G1325"\+w*, \+w unless|strong="G1487"\+w* \+w it|strong="G1487"\+w* \+w were|strong="G1510"\+w* \+w given|strong="G1325"\+w* \+w to|strong="G2596"\+w* \+w you|strong="G4771"\+w* \+w from|strong="G2596"\+w* above. \+w Therefore|strong="G1223"\+w* \+w he|strong="G3778"\+w* \+w who|strong="G3588"\+w* \+w delivered|strong="G3860"\+w* \+w me|strong="G1325"\+w* \+w to|strong="G2596"\+w* \+w you|strong="G4771"\+w* \+w has|strong="G2192"\+w* \+w greater|strong="G3173"\+w* sin.”\wj* +\p +\v 12 \w At|strong="G1537"\w* \w this|strong="G3778"\w*, \w Pilate|strong="G4091"\w* \w was|strong="G1510"\w* \w seeking|strong="G2212"\w* \w to|strong="G3004"\w* release \w him|strong="G3588"\w*, \w but|strong="G1161"\w* \w the|strong="G3956"\w* \w Jews|strong="G2453"\w* \w cried|strong="G2905"\w* \w out|strong="G1537"\w*, \w saying|strong="G3004"\w*, “\w If|strong="G1437"\w* \w you|strong="G1437"\w* release \w this|strong="G3778"\w* \w man|strong="G3778"\w*, \w you|strong="G1437"\w* aren’\w t|strong="G3588"\w* \w Caesar|strong="G2541"\w*’s \w friend|strong="G5384"\w*! \w Everyone|strong="G3956"\w* \w who|strong="G3588"\w* \w makes|strong="G4160"\w* \w himself|strong="G1438"\w* \w a|strong="G1510"\w* \w king|strong="G3588"\w* \w speaks|strong="G3004"\w* \w against|strong="G1537"\w* \w Caesar|strong="G2541"\w*!” +\p +\v 13 \w When|strong="G1161"\w* \w Pilate|strong="G4091"\w* \w therefore|strong="G3767"\w* heard \w these|strong="G3778"\w* \w words|strong="G3056"\w*, \w he|strong="G2532"\w* \w brought|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w out|strong="G1854"\w* \w and|strong="G2532"\w* \w sat|strong="G2523"\w* \w down|strong="G2523"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* judgment \w seat|strong="G2523"\w* \w at|strong="G1909"\w* \w a|strong="G2532"\w* \w place|strong="G5117"\w* \w called|strong="G3004"\w* “\w The|strong="G2532"\w* \w Pavement|strong="G3038"\w*”, \w but|strong="G1161"\w* \w in|strong="G1519"\w* \w Hebrew|strong="G1447"\w*, “\w Gabbatha|strong="G1042"\w*.” +\v 14 \w Now|strong="G1161"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w the|strong="G2532"\w* \w Preparation|strong="G3904"\w* \w Day|strong="G3904"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Passover|strong="G3957"\w*, \w at|strong="G1161"\w* \w about|strong="G5613"\w* \w the|strong="G2532"\w* \w sixth|strong="G1623"\w* \w hour|strong="G5610"\w*.\f + \fr 19:14 \ft “the sixth hour” would have been 6:00 a.m. according to the Roman timekeeping system, or noon for the Jewish timekeeping system in use, then. \f* \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w*, “\w Behold|strong="G2396"\w*, \w your|strong="G2532"\w* \w King|strong="G3588"\w*!” +\p +\v 15 \w They|strong="G3588"\w* \w cried|strong="G2905"\w* \w out|strong="G2905"\w*, “Away \w with|strong="G2192"\w* \w him|strong="G3588"\w*! Away \w with|strong="G2192"\w* \w him|strong="G3588"\w*! \w Crucify|strong="G4717"\w* \w him|strong="G3588"\w*!” +\p \w Pilate|strong="G4091"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, “\w Shall|strong="G3361"\w* \w I|strong="G1487"\w* \w crucify|strong="G4717"\w* \w your|strong="G2192"\w* \w King|strong="G3588"\w*?” +\p \w The|strong="G3588"\w* chief priests \w answered|strong="G3004"\w*, “\w We|strong="G1487"\w* \w have|strong="G2192"\w* \w no|strong="G3756"\w* \w king|strong="G3588"\w* \w but|strong="G1487"\w* \w Caesar|strong="G2541"\w*!” +\p +\v 16 \w So|strong="G2443"\w* \w then|strong="G3767"\w* \w he|strong="G3588"\w* \w delivered|strong="G3860"\w* \w him|strong="G3588"\w* \w to|strong="G2443"\w* \w them|strong="G3588"\w* \w to|strong="G2443"\w* \w be|strong="G2443"\w* \w crucified|strong="G4717"\w*. \w So|strong="G2443"\w* \w they|strong="G3588"\w* \w took|strong="G3880"\w* \w Jesus|strong="G2424"\w* \w and|strong="G2424"\w* \w led|strong="G3767"\w* \w him|strong="G3588"\w* away. +\v 17 \w He|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w*, bearing \w his|strong="G1438"\w* \w cross|strong="G4716"\w*, \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w place|strong="G5117"\w* \w called|strong="G3004"\w* “\w The|strong="G2532"\w* \w Place|strong="G5117"\w* \w of|strong="G2532"\w* \w a|strong="G2532"\w* \w Skull|strong="G2898"\w*”, \w which|strong="G3739"\w* \w is|strong="G3588"\w* \w called|strong="G3004"\w* \w in|strong="G1519"\w* \w Hebrew|strong="G1447"\w*, “\w Golgotha|strong="G1115"\w*”, +\v 18 \w where|strong="G3699"\w* \w they|strong="G2532"\w* \w crucified|strong="G4717"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w* \w two|strong="G1417"\w* \w others|strong="G3588"\w*, \w on|strong="G1161"\w* \w either|strong="G1782"\w* \w side|strong="G1782"\w* \w one|strong="G3588"\w*, \w and|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w middle|strong="G3319"\w*. +\v 19 \w Pilate|strong="G4091"\w* \w wrote|strong="G1125"\w* \w a|strong="G2532"\w* \w title|strong="G5102"\w* \w also|strong="G2532"\w*, \w and|strong="G2532"\w* \w put|strong="G5087"\w* \w it|strong="G2532"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w cross|strong="G4716"\w*. \w There|strong="G2532"\w* \w was|strong="G1510"\w* \w written|strong="G1125"\w*, “\w JESUS|strong="G2424"\w* \w OF|strong="G2532"\w* \w NAZARETH|strong="G3480"\w*, \w THE|strong="G2532"\w* \w KING|strong="G3588"\w* \w OF|strong="G2532"\w* \w THE|strong="G2532"\w* \w JEWS|strong="G2453"\w*.” +\v 20 \w Therefore|strong="G3767"\w* \w many|strong="G4183"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w read|strong="G1125"\w* \w this|strong="G3778"\w* \w title|strong="G5102"\w*, \w for|strong="G3754"\w* \w the|strong="G2532"\w* \w place|strong="G5117"\w* \w where|strong="G3699"\w* \w Jesus|strong="G2424"\w* \w was|strong="G1510"\w* \w crucified|strong="G4717"\w* \w was|strong="G1510"\w* \w near|strong="G1451"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w*; \w and|strong="G2532"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w written|strong="G1125"\w* \w in|strong="G2532"\w* \w Hebrew|strong="G1447"\w*, \w in|strong="G2532"\w* \w Latin|strong="G4515"\w*, \w and|strong="G2532"\w* \w in|strong="G2532"\w* \w Greek|strong="G1676"\w*. +\v 21 \w The|strong="G3588"\w* chief priests \w of|strong="G3588"\w* \w the|strong="G3588"\w* \w Jews|strong="G2453"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w Pilate|strong="G4091"\w*, “Don’\w t|strong="G3588"\w* \w write|strong="G1125"\w*, ‘\w The|strong="G3588"\w* \w King|strong="G3588"\w* \w of|strong="G3588"\w* \w the|strong="G3588"\w* \w Jews|strong="G2453"\w*,’ \w but|strong="G3361"\w*, ‘\w he|strong="G3754"\w* \w said|strong="G3004"\w*, “\w I|strong="G3754"\w* \w am|strong="G1510"\w* \w King|strong="G3588"\w* \w of|strong="G3588"\w* \w the|strong="G3588"\w* \w Jews|strong="G2453"\w*.”’” +\p +\v 22 \w Pilate|strong="G4091"\w* answered, “\w What|strong="G3739"\w* \w I|strong="G3739"\w* \w have|strong="G3588"\w* \w written|strong="G1125"\w*, \w I|strong="G3739"\w* \w have|strong="G3588"\w* \w written|strong="G1125"\w*.” +\p +\v 23 \w Then|strong="G3767"\w* \w the|strong="G2532"\w* \w soldiers|strong="G4757"\w*, \w when|strong="G3753"\w* \w they|strong="G2532"\w* \w had|strong="G2424"\w* \w crucified|strong="G4717"\w* \w Jesus|strong="G2424"\w*, \w took|strong="G2983"\w* \w his|strong="G1223"\w* \w garments|strong="G2440"\w* \w and|strong="G2532"\w* \w made|strong="G4160"\w* \w four|strong="G5064"\w* \w parts|strong="G3313"\w*, \w to|strong="G2532"\w* \w every|strong="G1538"\w* \w soldier|strong="G4757"\w* \w a|strong="G2532"\w* \w part|strong="G3313"\w*; \w and|strong="G2532"\w* \w also|strong="G2532"\w* \w the|strong="G2532"\w* \w tunic|strong="G5509"\w*. \w Now|strong="G1161"\w* \w the|strong="G2532"\w* \w tunic|strong="G5509"\w* \w was|strong="G1510"\w* \w without|strong="G2532"\w* seam, \w woven|strong="G5307"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* top \w throughout|strong="G3650"\w*. +\v 24 \w Then|strong="G3767"\w* \w they|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w one|strong="G1438"\w* \w another|strong="G1438"\w*, “\w Let|strong="G1510"\w*’s \w not|strong="G3361"\w* \w tear|strong="G4977"\w* \w it|strong="G2532"\w*, \w but|strong="G2532"\w* \w cast|strong="G2532"\w* \w lots|strong="G2819"\w* \w for|strong="G4012"\w* \w it|strong="G2532"\w* \w to|strong="G4314"\w* decide \w whose|strong="G5101"\w* \w it|strong="G2532"\w* \w will|strong="G5101"\w* \w be|strong="G1510"\w*,” \w that|strong="G2443"\w* \w the|strong="G2532"\w* \w Scripture|strong="G1124"\w* \w might|strong="G2532"\w* \w be|strong="G1510"\w* \w fulfilled|strong="G4137"\w*, \w which|strong="G3588"\w* \w says|strong="G3004"\w*, +\q1 “\w They|strong="G2532"\w* \w parted|strong="G1266"\w* \w my|strong="G1473"\w* \w garments|strong="G2440"\w* \w among|strong="G4314"\w* \w them|strong="G3588"\w*. +\q2 \w They|strong="G2532"\w* \w cast|strong="G2532"\w* \w lots|strong="G2819"\w* \w for|strong="G4012"\w* \w my|strong="G1473"\w* \w clothing|strong="G2440"\w*.”\x + \xo 19:24 \xt Psalms 22:18\x* +\m \w Therefore|strong="G3767"\w* \w the|strong="G2532"\w* \w soldiers|strong="G4757"\w* \w did|strong="G4160"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*. +\p +\v 25 \w But|strong="G1161"\w* \w standing|strong="G2476"\w* \w by|strong="G3844"\w* \w Jesus|strong="G2424"\w*’ \w cross|strong="G4716"\w* \w were|strong="G3588"\w* \w his|strong="G2532"\w* \w mother|strong="G3384"\w*, \w his|strong="G2532"\w* \w mother|strong="G3384"\w*’s sister, \w Mary|strong="G3137"\w* \w the|strong="G2532"\w* wife \w of|strong="G2532"\w* \w Clopas|strong="G2832"\w*, \w and|strong="G2532"\w* \w Mary|strong="G3137"\w* \w Magdalene|strong="G3094"\w*. +\v 26 \w Therefore|strong="G3767"\w* \w when|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w saw|strong="G3708"\w* \w his|strong="G3708"\w* \w mother|strong="G3384"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w disciple|strong="G3101"\w* \w whom|strong="G3739"\w* \w he|strong="G2532"\w* loved \w standing|strong="G3936"\w* \w there|strong="G2532"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w his|strong="G3708"\w* \w mother|strong="G3384"\w*, \wj “\+w Woman|strong="G1135"\+w*, \+w behold|strong="G2396"\+w*, \+w your|strong="G2532"\+w* \+w son|strong="G5207"\+w*!” \wj* +\v 27 \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w disciple|strong="G3101"\w*, \wj “\+w Behold|strong="G2396"\+w*, \+w your|strong="G2532"\+w* \+w mother|strong="G3384"\+w*!”\wj* \w From|strong="G2532"\w* \w that|strong="G3588"\w* \w hour|strong="G5610"\w*, \w the|strong="G2532"\w* \w disciple|strong="G3101"\w* \w took|strong="G2983"\w* \w her|strong="G1438"\w* \w to|strong="G1519"\w* \w his|strong="G1438"\w* \w own|strong="G2398"\w* \w home|strong="G1519"\w*. +\p +\v 28 \w After|strong="G3326"\w* \w this|strong="G3778"\w*, \w Jesus|strong="G2424"\w*, \w seeing|strong="G3708"\w*\f + \fr 19:28 \ft NU, TR read “knowing” instead of “seeing” \f* \w that|strong="G3754"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w were|strong="G3588"\w* \w now|strong="G2235"\w* \w finished|strong="G5055"\w*, \w that|strong="G3754"\w* \w the|strong="G3956"\w* \w Scripture|strong="G1124"\w* \w might|strong="G3778"\w* \w be|strong="G3956"\w* \w fulfilled|strong="G5055"\w*, \w said|strong="G3004"\w*, \wj “\+w I|strong="G3754"\+w* \+w am|strong="G3588"\+w* \+w thirsty|strong="G1372"\+w*!”\wj* +\v 29 \w Now|strong="G3767"\w* \w a|strong="G4060"\w* \w vessel|strong="G4632"\w* \w full|strong="G3324"\w* \w of|strong="G4750"\w* \w vinegar|strong="G3690"\w* \w was|strong="G3588"\w* \w set|strong="G2749"\w* \w there|strong="G3767"\w*; \w so|strong="G3767"\w* \w they|strong="G3588"\w* \w put|strong="G4060"\w* \w a|strong="G4060"\w* \w sponge|strong="G4699"\w* \w full|strong="G3324"\w* \w of|strong="G4750"\w* \w the|strong="G3588"\w* \w vinegar|strong="G3690"\w* \w on|strong="G3588"\w* \w hyssop|strong="G5301"\w*, \w and|strong="G3767"\w* held \w it|strong="G3588"\w* \w at|strong="G3588"\w* \w his|strong="G3588"\w* \w mouth|strong="G4750"\w*. +\v 30 \w When|strong="G3753"\w* \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w* \w had|strong="G2424"\w* \w received|strong="G2983"\w* \w the|strong="G2532"\w* \w vinegar|strong="G3690"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w It|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w finished|strong="G5055"\+w*!”\wj* \w Then|strong="G3767"\w* \w he|strong="G2532"\w* \w bowed|strong="G2827"\w* \w his|strong="G2983"\w* \w head|strong="G2776"\w* \w and|strong="G2532"\w* \w gave|strong="G3860"\w* \w up|strong="G3860"\w* \w his|strong="G2983"\w* \w spirit|strong="G4151"\w*. +\p +\v 31 \w Therefore|strong="G3767"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w*, \w because|strong="G1063"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w the|strong="G1722"\w* \w Preparation|strong="G3904"\w* \w Day|strong="G2250"\w*, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w the|strong="G1722"\w* \w bodies|strong="G4983"\w* wouldn’\w t|strong="G3588"\w* \w remain|strong="G3306"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w cross|strong="G4716"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w Sabbath|strong="G4521"\w* (\w for|strong="G1063"\w* \w that|strong="G2443"\w* \w Sabbath|strong="G4521"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* special \w one|strong="G3588"\w*), \w asked|strong="G2065"\w* \w of|strong="G2250"\w* \w Pilate|strong="G4091"\w* \w that|strong="G2443"\w* \w their|strong="G2532"\w* \w legs|strong="G4628"\w* \w might|strong="G2532"\w* \w be|strong="G1510"\w* \w broken|strong="G2608"\w* \w and|strong="G2532"\w* \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w be|strong="G1510"\w* taken away. +\v 32 \w Therefore|strong="G3767"\w* \w the|strong="G2532"\w* \w soldiers|strong="G4757"\w* \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w broke|strong="G2608"\w* \w the|strong="G2532"\w* \w legs|strong="G4628"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w first|strong="G4413"\w* \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w other|strong="G3588"\w* \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w crucified|strong="G4957"\w* \w with|strong="G2532"\w* \w him|strong="G3588"\w*; +\v 33 \w but|strong="G1161"\w* \w when|strong="G1161"\w* \w they|strong="G1161"\w* \w came|strong="G2064"\w* \w to|strong="G1909"\w* \w Jesus|strong="G2424"\w* \w and|strong="G1161"\w* \w saw|strong="G3708"\w* \w that|strong="G3588"\w* \w he|strong="G1161"\w* \w was|strong="G3588"\w* \w already|strong="G2235"\w* \w dead|strong="G2348"\w*, \w they|strong="G1161"\w* didn’\w t|strong="G3588"\w* \w break|strong="G2608"\w* \w his|strong="G1909"\w* \w legs|strong="G4628"\w*. +\v 34 However, \w one|strong="G1520"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w soldiers|strong="G4757"\w* \w pierced|strong="G3572"\w* \w his|strong="G2532"\w* \w side|strong="G4125"\w* \w with|strong="G2532"\w* \w a|strong="G2532"\w* \w spear|strong="G3057"\w*, \w and|strong="G2532"\w* \w immediately|strong="G2112"\w* blood \w and|strong="G2532"\w* \w water|strong="G5204"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w*. +\v 35 \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w has|strong="G3708"\w* \w seen|strong="G3708"\w* \w has|strong="G3708"\w* \w testified|strong="G3140"\w*, \w and|strong="G2532"\w* \w his|strong="G3708"\w* \w testimony|strong="G3141"\w* \w is|strong="G1510"\w* \w true|strong="G3588"\w*. \w He|strong="G2532"\w* \w knows|strong="G1492"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* tells \w the|strong="G2532"\w* truth, \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w may|strong="G2532"\w* \w believe|strong="G4100"\w*. +\v 36 \w For|strong="G1063"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w happened|strong="G1096"\w* \w that|strong="G2443"\w* \w the|strong="G3588"\w* \w Scripture|strong="G1124"\w* \w might|strong="G3778"\w* \w be|strong="G1096"\w* \w fulfilled|strong="G4137"\w*, “\w A|strong="G1096"\w* \w bone|strong="G3747"\w* \w of|strong="G3588"\w* \w him|strong="G3588"\w* \w will|strong="G3778"\w* \w not|strong="G3756"\w* \w be|strong="G1096"\w* \w broken|strong="G4937"\w*.”\x + \xo 19:36 \xt Exodus 12:46; Numbers 9:12; Psalms 34:20 \x* +\v 37 \w Again|strong="G3825"\w* \w another|strong="G2087"\w* \w Scripture|strong="G1124"\w* \w says|strong="G3004"\w*, “\w They|strong="G2532"\w* \w will|strong="G2532"\w* \w look|strong="G3708"\w* \w on|strong="G1519"\w* \w him|strong="G3739"\w* \w whom|strong="G3739"\w* \w they|strong="G2532"\w* \w pierced|strong="G1574"\w*.”\x + \xo 19:37 \xt Zechariah 12:10\x* +\p +\v 38 \w After|strong="G3326"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w Joseph|strong="G2501"\w* \w of|strong="G1223"\w* Arimathaea, \w being|strong="G1510"\w* \w a|strong="G2532"\w* \w disciple|strong="G3101"\w* \w of|strong="G1223"\w* \w Jesus|strong="G2424"\w*, \w but|strong="G1161"\w* \w secretly|strong="G2928"\w* \w for|strong="G1223"\w* \w fear|strong="G5401"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w*, \w asked|strong="G2065"\w* \w of|strong="G1223"\w* \w Pilate|strong="G4091"\w* \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w take|strong="G1161"\w* \w away|strong="G3326"\w* \w Jesus|strong="G2424"\w*’ \w body|strong="G4983"\w*. \w Pilate|strong="G4091"\w* \w gave|strong="G2010"\w* \w him|strong="G3588"\w* \w permission|strong="G2010"\w*. \w He|strong="G2532"\w* \w came|strong="G2064"\w* \w therefore|strong="G3767"\w* \w and|strong="G2532"\w* \w took|strong="G2532"\w* \w away|strong="G3326"\w* \w his|strong="G1223"\w* \w body|strong="G4983"\w*. +\v 39 \w Nicodemus|strong="G3530"\w*, \w who|strong="G3588"\w* \w at|strong="G4314"\w* \w first|strong="G4413"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w Jesus|strong="G2532"\w* \w by|strong="G4314"\w* \w night|strong="G3571"\w*, \w also|strong="G2532"\w* \w came|strong="G2064"\w* \w bringing|strong="G5342"\w* \w a|strong="G5613"\w* \w mixture|strong="G3395"\w* \w of|strong="G2532"\w* \w myrrh|strong="G4666"\w* \w and|strong="G2532"\w* aloes, \w about|strong="G5613"\w* \w a|strong="G5613"\w* \w hundred|strong="G1540"\w* Roman \w pounds|strong="G3046"\w*.\f + \fr 19:39 \ft 100 Roman pounds of 12 ounces each, or about 72 pounds, or 33 Kilograms.\f* +\v 40 \w So|strong="G3767"\w* \w they|strong="G2532"\w* \w took|strong="G2983"\w* \w Jesus|strong="G2424"\w*’ \w body|strong="G4983"\w*, \w and|strong="G2532"\w* \w bound|strong="G1210"\w* \w it|strong="G2532"\w* \w in|strong="G2532"\w* \w linen|strong="G3608"\w* cloths \w with|strong="G3326"\w* \w the|strong="G2532"\w* spices, \w as|strong="G2531"\w* \w the|strong="G2532"\w* \w custom|strong="G1485"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w is|strong="G1510"\w* \w to|strong="G2532"\w* \w bury|strong="G1779"\w*. +\v 41 \w Now|strong="G1161"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w place|strong="G5117"\w* \w where|strong="G3699"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w crucified|strong="G4717"\w* \w there|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w garden|strong="G2779"\w*. \w In|strong="G1722"\w* \w the|strong="G1722"\w* \w garden|strong="G2779"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w new|strong="G2537"\w* \w tomb|strong="G3419"\w* \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w no|strong="G3762"\w* \w man|strong="G3762"\w* \w had|strong="G2532"\w* \w ever|strong="G3762"\w* \w yet|strong="G2532"\w* \w been|strong="G1510"\w* \w laid|strong="G5087"\w*. +\v 42 \w Then|strong="G3767"\w*, \w because|strong="G3754"\w* \w of|strong="G1223"\w* \w the|strong="G1223"\w* \w Jews|strong="G2453"\w*’ \w Preparation|strong="G3904"\w* \w Day|strong="G3904"\w* (\w for|strong="G3754"\w* \w the|strong="G1223"\w* \w tomb|strong="G3419"\w* \w was|strong="G1510"\w* \w near|strong="G1451"\w* \w at|strong="G1223"\w* \w hand|strong="G1451"\w*), \w they|strong="G3588"\w* \w laid|strong="G5087"\w* \w Jesus|strong="G2424"\w* \w there|strong="G1563"\w*. +\c 20 +\p +\v 1 \w Now|strong="G1161"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w first|strong="G1520"\w* \w day|strong="G4521"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w week|strong="G4521"\w*, \w Mary|strong="G3137"\w* \w Magdalene|strong="G3094"\w* \w went|strong="G2064"\w* \w early|strong="G4404"\w*, \w while|strong="G1161"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w still|strong="G2089"\w* \w dark|strong="G4653"\w*, \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w tomb|strong="G3419"\w*, \w and|strong="G2532"\w* saw \w that|strong="G3588"\w* \w the|strong="G2532"\w* \w stone|strong="G3037"\w* \w had|strong="G2532"\w* \w been|strong="G1510"\w* \w taken|strong="G3037"\w* away \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w tomb|strong="G3419"\w*. +\v 2 \w Therefore|strong="G3767"\w* \w she|strong="G2532"\w* \w ran|strong="G5143"\w* \w and|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w Simon|strong="G4613"\w* \w Peter|strong="G4074"\w* \w and|strong="G2532"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w other|strong="G3739"\w* \w disciple|strong="G3101"\w* \w whom|strong="G3739"\w* \w Jesus|strong="G2424"\w* \w loved|strong="G5368"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, “\w They|strong="G2532"\w* \w have|strong="G2532"\w* taken \w away|strong="G5087"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w tomb|strong="G3419"\w*, \w and|strong="G2532"\w* \w we|strong="G3739"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w where|strong="G4226"\w* \w they|strong="G2532"\w* \w have|strong="G2532"\w* \w laid|strong="G5087"\w* \w him|strong="G3588"\w*!” +\p +\v 3 \w Therefore|strong="G3767"\w* \w Peter|strong="G4074"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w other|strong="G3588"\w* \w disciple|strong="G3101"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w went|strong="G1831"\w* \w toward|strong="G1519"\w* \w the|strong="G2532"\w* \w tomb|strong="G3419"\w*. +\v 4 \w They|strong="G2532"\w* \w both|strong="G2532"\w* \w ran|strong="G5143"\w* \w together|strong="G3674"\w*. \w The|strong="G2532"\w* \w other|strong="G1161"\w* \w disciple|strong="G3101"\w* outran \w Peter|strong="G4074"\w* \w and|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w tomb|strong="G3419"\w* \w first|strong="G4413"\w*. +\v 5 \w Stooping|strong="G3879"\w* \w and|strong="G2532"\w* \w looking|strong="G3879"\w* \w in|strong="G1525"\w*, \w he|strong="G2532"\w* saw \w the|strong="G2532"\w* \w linen|strong="G3608"\w* cloths \w lying|strong="G2749"\w* \w there|strong="G2532"\w*; \w yet|strong="G2532"\w* \w he|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w enter|strong="G1525"\w* \w in|strong="G1525"\w*. +\v 6 \w Then|strong="G3767"\w* \w Simon|strong="G4613"\w* \w Peter|strong="G4074"\w* \w came|strong="G2064"\w*, following \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w tomb|strong="G3419"\w*. \w He|strong="G2532"\w* \w saw|strong="G2334"\w* \w the|strong="G2532"\w* \w linen|strong="G3608"\w* cloths \w lying|strong="G2749"\w*, +\v 7 \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w cloth|strong="G4676"\w* \w that|strong="G3739"\w* \w had|strong="G2532"\w* \w been|strong="G1510"\w* \w on|strong="G1909"\w* \w his|strong="G1519"\w* \w head|strong="G2776"\w*, \w not|strong="G3756"\w* \w lying|strong="G2749"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w linen|strong="G3608"\w* cloths, \w but|strong="G2532"\w* \w rolled|strong="G1794"\w* \w up|strong="G1519"\w* \w in|strong="G1519"\w* \w a|strong="G2532"\w* \w place|strong="G5117"\w* \w by|strong="G1909"\w* \w itself|strong="G5565"\w*. +\v 8 \w So|strong="G3767"\w* \w then|strong="G3767"\w* \w the|strong="G2532"\w* \w other|strong="G3588"\w* \w disciple|strong="G3101"\w* \w who|strong="G3588"\w* \w came|strong="G2064"\w* \w first|strong="G4413"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w tomb|strong="G3419"\w* \w also|strong="G2532"\w* \w entered|strong="G1525"\w* \w in|strong="G1519"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w and|strong="G2532"\w* \w believed|strong="G4100"\w*. +\v 9 \w For|strong="G1063"\w* \w as|strong="G1063"\w* \w yet|strong="G3764"\w* \w they|strong="G3588"\w* didn’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w the|strong="G1537"\w* \w Scripture|strong="G1124"\w*, \w that|strong="G3754"\w* \w he|strong="G3754"\w* \w must|strong="G1163"\w* \w rise|strong="G1163"\w* \w from|strong="G1537"\w* \w the|strong="G1537"\w* \w dead|strong="G3498"\w*. +\v 10 \w So|strong="G3767"\w* \w the|strong="G4314"\w* \w disciples|strong="G3101"\w* \w went|strong="G3101"\w* away \w again|strong="G3825"\w* \w to|strong="G4314"\w* \w their|strong="G1438"\w* \w own|strong="G1438"\w* homes. +\p +\v 11 \w But|strong="G1161"\w* \w Mary|strong="G3137"\w* \w was|strong="G3588"\w* \w standing|strong="G2476"\w* \w outside|strong="G1854"\w* \w at|strong="G1519"\w* \w the|strong="G1519"\w* \w tomb|strong="G3419"\w* \w weeping|strong="G2799"\w*. \w So|strong="G3767"\w* \w as|strong="G5613"\w* \w she|strong="G1161"\w* \w wept|strong="G2799"\w*, \w she|strong="G1161"\w* \w stooped|strong="G3879"\w* \w and|strong="G1161"\w* \w looked|strong="G3879"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w tomb|strong="G3419"\w*, +\v 12 \w and|strong="G2532"\w* \w she|strong="G2532"\w* \w saw|strong="G2334"\w* \w two|strong="G1417"\w* angels \w in|strong="G1722"\w* \w white|strong="G3022"\w* \w sitting|strong="G2516"\w*, \w one|strong="G1520"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w head|strong="G2776"\w* \w and|strong="G2532"\w* \w one|strong="G1520"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w feet|strong="G4228"\w*, \w where|strong="G3699"\w* \w the|strong="G1722"\w* \w body|strong="G4983"\w* \w of|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w had|strong="G2424"\w* \w lain|strong="G2749"\w*. +\v 13 \w They|strong="G2532"\w* \w asked|strong="G3004"\w* \w her|strong="G3754"\w*, “\w Woman|strong="G1135"\w*, \w why|strong="G5101"\w* \w are|strong="G3588"\w* \w you|strong="G3754"\w* \w weeping|strong="G2799"\w*?” +\p \w She|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, “\w Because|strong="G3754"\w* \w they|strong="G2532"\w* \w have|strong="G2532"\w* taken \w away|strong="G5087"\w* \w my|strong="G5087"\w* \w Lord|strong="G2962"\w*, \w and|strong="G2532"\w* \w I|strong="G1473"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w where|strong="G4226"\w* \w they|strong="G2532"\w* \w have|strong="G2532"\w* \w laid|strong="G5087"\w* \w him|strong="G3588"\w*.” +\v 14 \w When|strong="G2532"\w* \w she|strong="G2532"\w* \w had|strong="G2424"\w* \w said|strong="G3004"\w* \w this|strong="G3778"\w*, \w she|strong="G2532"\w* \w turned|strong="G4762"\w* \w around|strong="G3694"\w* \w and|strong="G2532"\w* \w saw|strong="G1492"\w* \w Jesus|strong="G2424"\w* \w standing|strong="G2476"\w*, \w and|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w Jesus|strong="G2424"\w*. +\p +\v 15 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w her|strong="G3754"\w*, \wj “\+w Woman|strong="G1135"\+w*, \+w why|strong="G5101"\+w* \+w are|strong="G1510"\+w* \+w you|strong="G4771"\+w* \+w weeping|strong="G2799"\+w*? \+w Who|strong="G5101"\+w* \+w are|strong="G1510"\+w* \+w you|strong="G4771"\+w* \+w looking|strong="G2212"\+w* \+w for|strong="G3754"\+w*?”\wj* +\p \w She|strong="G3754"\w*, \w supposing|strong="G1380"\w* \w him|strong="G3588"\w* \w to|strong="G3004"\w* \w be|strong="G1510"\w* \w the|strong="G3588"\w* \w gardener|strong="G2780"\w*, \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Sir|strong="G2962"\w*, \w if|strong="G1487"\w* \w you|strong="G4771"\w* \w have|strong="G1473"\w* carried \w him|strong="G3588"\w* \w away|strong="G5087"\w*, \w tell|strong="G3004"\w* \w me|strong="G1473"\w* \w where|strong="G4226"\w* \w you|strong="G4771"\w* \w have|strong="G1473"\w* \w laid|strong="G5087"\w* \w him|strong="G3588"\w*, \w and|strong="G2962"\w* \w I|strong="G1473"\w* \w will|strong="G5101"\w* \w take|strong="G5087"\w* \w him|strong="G3588"\w* \w away|strong="G5087"\w*.” +\p +\v 16 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w her|strong="G3137"\w*, \wj “\+w Mary|strong="G3137"\+w*.”\wj* +\p \w She|strong="G3739"\w* \w turned|strong="G4762"\w* \w and|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3739"\w*, “\w Rabboni|strong="G4462"\w*!”\f + \fr 20:16 \ft Rabboni is a transliteration of the Hebrew word for “great teacher.”\f* \w which|strong="G3739"\w* \w is|strong="G3739"\w* \w to|strong="G3004"\w* \w say|strong="G3004"\w*, “\w Teacher|strong="G1320"\w*!”\f + \fr 20:16 \ft or, Master\f* +\p +\v 17 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w her|strong="G3588"\w*, \wj “Don’\+w t|strong="G3588"\+w* hold \+w me|strong="G1473"\+w*, \+w for|strong="G1063"\+w* \+w I|strong="G1473"\+w* haven’\+w t|strong="G3588"\+w* \+w yet|strong="G2532"\+w* \+w ascended|strong="G3588"\+w* \+w to|strong="G4314"\+w* \+w my|strong="G1473"\+w* \+w Father|strong="G3962"\+w*; \+w but|strong="G1161"\+w* \+w go|strong="G4198"\+w* \+w to|strong="G4314"\+w* \+w my|strong="G1473"\+w* brothers \+w and|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w them|strong="G3588"\+w*, ‘\+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* ascending \+w to|strong="G4314"\+w* \+w my|strong="G1473"\+w* \+w Father|strong="G3962"\+w* \+w and|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w Father|strong="G3962"\+w*, \+w to|strong="G4314"\+w* \+w my|strong="G1473"\+w* \+w God|strong="G2316"\+w* \+w and|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w God|strong="G2316"\+w*.’”\wj* +\p +\v 18 \w Mary|strong="G3137"\w* \w Magdalene|strong="G3094"\w* \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w told|strong="G3004"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w that|strong="G3754"\w* \w she|strong="G2532"\w* \w had|strong="G2532"\w* \w seen|strong="G3708"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w and|strong="G2532"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w said|strong="G3004"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w to|strong="G2532"\w* \w her|strong="G3708"\w*. +\v 19 \w When|strong="G2532"\w* \w therefore|strong="G3767"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w evening|strong="G3798"\w* \w on|strong="G1519"\w* \w that|strong="G3588"\w* \w day|strong="G2250"\w*, \w the|strong="G2532"\w* \w first|strong="G1520"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* \w the|strong="G2532"\w* \w week|strong="G4521"\w*, \w and|strong="G2532"\w* \w when|strong="G2532"\w* \w the|strong="G2532"\w* \w doors|strong="G2374"\w* \w were|strong="G1510"\w* \w locked|strong="G2808"\w* \w where|strong="G3699"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w were|strong="G1510"\w* assembled, \w for|strong="G1519"\w* \w fear|strong="G5401"\w* \w of|strong="G2250"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w*, \w Jesus|strong="G2424"\w* \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w stood|strong="G2476"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w middle|strong="G3319"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Peace|strong="G1515"\+w* \+w be|strong="G1510"\+w* \+w to|strong="G1519"\+w* \+w you|strong="G5210"\+w*.”\wj* +\p +\v 20 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w said|strong="G3004"\w* \w this|strong="G3778"\w*, \w he|strong="G2532"\w* \w showed|strong="G1166"\w* \w them|strong="G3588"\w* \w his|strong="G3708"\w* \w hands|strong="G5495"\w* \w and|strong="G2532"\w* \w his|strong="G3708"\w* \w side|strong="G4125"\w*. \w The|strong="G2532"\w* \w disciples|strong="G3101"\w* \w therefore|strong="G3767"\w* \w were|strong="G3588"\w* \w glad|strong="G5463"\w* \w when|strong="G2532"\w* \w they|strong="G2532"\w* \w saw|strong="G3708"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*. +\v 21 \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w* \w again|strong="G3825"\w*, \wj “\+w Peace|strong="G1515"\+w* \+w be|strong="G3588"\+w* \+w to|strong="G3004"\+w* \+w you|strong="G5210"\+w*. \+w As|strong="G2531"\+w* \+w the|strong="G3588"\+w* \+w Father|strong="G3962"\+w* \+w has|strong="G3962"\+w* \+w sent|strong="G3992"\+w* \+w me|strong="G1473"\+w*, \+w even|strong="G2531"\+w* \+w so|strong="G3767"\+w* \+w I|strong="G1473"\+w* \+w send|strong="G3992"\+w* \+w you|strong="G5210"\+w*.”\wj* +\v 22 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w said|strong="G3004"\w* \w this|strong="G3778"\w*, \w he|strong="G2532"\w* \w breathed|strong="G1720"\w* \w on|strong="G4151"\w* \w them|strong="G3004"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3004"\w*, \wj “\+w Receive|strong="G2983"\+w* \+w the|strong="G2532"\+w* \+w Holy|strong="G4151"\+w* \+w Spirit|strong="G4151"\+w*! \wj* +\v 23 \wj If \+w you|strong="G5100"\+w* forgive \+w anyone|strong="G5100"\+w*’s sins, \+w they|strong="G3588"\+w* \+w have|strong="G5100"\+w* \+w been|strong="G5100"\+w* forgiven \+w them|strong="G3588"\+w*. If \+w you|strong="G5100"\+w* \+w retain|strong="G2902"\+w* \+w anyone|strong="G5100"\+w*’s sins, \+w they|strong="G3588"\+w* \+w have|strong="G5100"\+w* \+w been|strong="G5100"\+w* \+w retained|strong="G2902"\+w*.”\wj* +\p +\v 24 \w But|strong="G1161"\w* \w Thomas|strong="G2381"\w*, \w one|strong="G1520"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w twelve|strong="G1427"\w*, \w called|strong="G3004"\w* \w Didymus|strong="G1324"\w*,\f + \fr 20:24 \ft or, Twin\f* wasn’\w t|strong="G3588"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w* \w when|strong="G3753"\w* \w Jesus|strong="G2424"\w* \w came|strong="G2064"\w*. +\v 25 \w The|strong="G1722"\w* \w other|strong="G1161"\w* \w disciples|strong="G3101"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, “\w We|strong="G1437"\w* \w have|strong="G2532"\w* \w seen|strong="G3708"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*!” +\p \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, “\w Unless|strong="G1437"\w* \w I|strong="G1473"\w* \w see|strong="G3708"\w* \w in|strong="G1722"\w* \w his|strong="G1519"\w* \w hands|strong="G5495"\w* \w the|strong="G1722"\w* \w print|strong="G5179"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w nails|strong="G2247"\w*, \w put|strong="G2532"\w* \w my|strong="G3708"\w* \w finger|strong="G1147"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w print|strong="G5179"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w nails|strong="G2247"\w*, \w and|strong="G2532"\w* \w put|strong="G2532"\w* \w my|strong="G3708"\w* \w hand|strong="G5495"\w* \w into|strong="G1519"\w* \w his|strong="G1519"\w* \w side|strong="G4125"\w*, \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w not|strong="G3756"\w* \w believe|strong="G4100"\w*.” +\p +\v 26 \w After|strong="G3326"\w* \w eight|strong="G3638"\w* \w days|strong="G2250"\w*, \w again|strong="G3825"\w* \w his|strong="G1519"\w* \w disciples|strong="G3101"\w* \w were|strong="G1510"\w* \w inside|strong="G2080"\w* \w and|strong="G2532"\w* \w Thomas|strong="G2381"\w* \w was|strong="G1510"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w*. \w Jesus|strong="G2424"\w* \w came|strong="G2064"\w*, \w the|strong="G2532"\w* \w doors|strong="G2374"\w* \w being|strong="G1510"\w* \w locked|strong="G2808"\w*, \w and|strong="G2532"\w* \w stood|strong="G2476"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w middle|strong="G3319"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Peace|strong="G1515"\+w* \+w be|strong="G1510"\+w* \+w to|strong="G1519"\+w* \+w you|strong="G5210"\+w*.”\wj* +\v 27 \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w Thomas|strong="G2381"\w*, \wj “\+w Reach|strong="G5342"\+w* \+w here|strong="G5602"\+w* \+w your|strong="G2532"\+w* \+w finger|strong="G1147"\+w*, \+w and|strong="G2532"\+w* \+w see|strong="G3708"\+w* \+w my|strong="G3708"\+w* \+w hands|strong="G5495"\+w*. \+w Reach|strong="G5342"\+w* \+w here|strong="G5602"\+w* \+w your|strong="G2532"\+w* \+w hand|strong="G5495"\+w*, \+w and|strong="G2532"\+w* \+w put|strong="G2532"\+w* \+w it|strong="G2532"\+w* \+w into|strong="G1519"\+w* \+w my|strong="G3708"\+w* \+w side|strong="G4125"\+w*. Don’\+w t|strong="G3588"\+w* \+w be|strong="G1096"\+w* unbelieving, \+w but|strong="G2532"\+w* \+w believing|strong="G4103"\+w*.”\wj* +\p +\v 28 \w Thomas|strong="G2381"\w* \w answered|strong="G3004"\w* \w him|strong="G3588"\w*, “\w My|strong="G1473"\w* \w Lord|strong="G2962"\w* \w and|strong="G2532"\w* \w my|strong="G1473"\w* \w God|strong="G2316"\w*!” +\p +\v 29 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Because|strong="G3754"\+w* \+w you|strong="G3754"\+w* \+w have|strong="G2532"\+w* \+w seen|strong="G3708"\+w* \+w me|strong="G1473"\+w*,\wj*\f + \fr 20:29 \ft TR adds “Thomas,”\f* \wj \+w you|strong="G3754"\+w* \+w have|strong="G2532"\+w* \+w believed|strong="G4100"\+w*. \+w Blessed|strong="G3107"\+w* \+w are|strong="G3588"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w have|strong="G2532"\+w* \+w not|strong="G3361"\+w* \+w seen|strong="G3708"\+w* \+w and|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w believed|strong="G4100"\+w*.”\wj* +\p +\v 30 \w Therefore|strong="G3767"\w* \w Jesus|strong="G2424"\w* \w did|strong="G4160"\w* \w many|strong="G4183"\w* \w other|strong="G4183"\w* \w signs|strong="G4592"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w presence|strong="G1799"\w* \w of|strong="G2532"\w* \w his|strong="G1722"\w* \w disciples|strong="G3101"\w*, \w which|strong="G3739"\w* \w are|strong="G1510"\w* \w not|strong="G3756"\w* \w written|strong="G1125"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* \w book|strong="G3588"\w*; +\v 31 \w but|strong="G1161"\w* \w these|strong="G3778"\w* \w are|strong="G1510"\w* \w written|strong="G1125"\w* \w that|strong="G3754"\w* \w you|strong="G3754"\w* \w may|strong="G2532"\w* \w believe|strong="G4100"\w* \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w Christ|strong="G5547"\w*, \w the|strong="G1722"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w that|strong="G3754"\w* \w believing|strong="G4100"\w* \w you|strong="G3754"\w* \w may|strong="G2532"\w* \w have|strong="G2192"\w* \w life|strong="G2222"\w* \w in|strong="G1722"\w* \w his|strong="G1722"\w* \w name|strong="G3686"\w*. +\c 21 +\p +\v 1 \w After|strong="G3326"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w Jesus|strong="G2424"\w* \w revealed|strong="G5319"\w* \w himself|strong="G1438"\w* \w again|strong="G3825"\w* \w to|strong="G1909"\w* \w the|strong="G1161"\w* \w disciples|strong="G3101"\w* \w at|strong="G1909"\w* \w the|strong="G1161"\w* \w sea|strong="G2281"\w* \w of|strong="G1909"\w* \w Tiberias|strong="G5085"\w*. \w He|strong="G1161"\w* \w revealed|strong="G5319"\w* \w himself|strong="G1438"\w* \w this|strong="G3778"\w* \w way|strong="G3779"\w*. +\v 2 \w Simon|strong="G4613"\w* \w Peter|strong="G4074"\w*, \w Thomas|strong="G2381"\w* \w called|strong="G3004"\w* \w Didymus|strong="G1324"\w*,\f + \fr 21:2 \ft or, Twin\f* \w Nathanael|strong="G3482"\w* \w of|strong="G1537"\w* \w Cana|strong="G2580"\w* \w in|strong="G2532"\w* \w Galilee|strong="G1056"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* sons \w of|strong="G1537"\w* \w Zebedee|strong="G2199"\w*, \w and|strong="G2532"\w* \w two|strong="G1417"\w* \w others|strong="G3588"\w* \w of|strong="G1537"\w* \w his|strong="G2532"\w* \w disciples|strong="G3101"\w* \w were|strong="G1510"\w* \w together|strong="G3674"\w*. +\v 3 \w Simon|strong="G4613"\w* \w Peter|strong="G4074"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, “\w I|strong="G1473"\w*’m \w going|strong="G5217"\w* fishing.” +\p \w They|strong="G2532"\w* \w told|strong="G3004"\w* \w him|strong="G3588"\w*, “\w We|strong="G2249"\w* \w are|strong="G3588"\w* \w also|strong="G2532"\w* \w coming|strong="G2064"\w* \w with|strong="G1722"\w* \w you|strong="G4771"\w*.” \w They|strong="G2532"\w* immediately \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w and|strong="G2532"\w* \w entered|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w boat|strong="G4143"\w*. \w That|strong="G3588"\w* \w night|strong="G3571"\w*, \w they|strong="G2532"\w* \w caught|strong="G4084"\w* \w nothing|strong="G3762"\w*. +\v 4 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w day|strong="G3588"\w* \w had|strong="G2424"\w* \w already|strong="G2235"\w* \w come|strong="G1096"\w*, \w Jesus|strong="G2424"\w* \w stood|strong="G2476"\w* \w on|strong="G1909"\w* \w the|strong="G1519"\w* beach; \w yet|strong="G1161"\w* \w the|strong="G1519"\w* \w disciples|strong="G3101"\w* didn’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w it|strong="G3754"\w* \w was|strong="G1510"\w* \w Jesus|strong="G2424"\w*. +\v 5 \w Jesus|strong="G2424"\w* \w therefore|strong="G3767"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3004"\w*, \wj “\+w Children|strong="G3813"\+w*, \+w have|strong="G2192"\+w* \+w you|strong="G3004"\+w* \+w anything|strong="G5100"\+w* \+w to|strong="G3004"\+w* eat?” \wj* +\p \w They|strong="G3767"\w* \w answered|strong="G3004"\w* \w him|strong="G2424"\w*, “\w No|strong="G3756"\w*.” +\p +\v 6 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \wj “\+w Cast|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w net|strong="G1350"\+w* \+w on|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w right|strong="G1188"\+w* \+w side|strong="G3313"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w boat|strong="G4143"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G3004"\+w* \+w will|strong="G2532"\+w* \+w find|strong="G2147"\+w* \+w some|strong="G3588"\+w*.”\wj* +\p \w They|strong="G2532"\w* \w cast|strong="G2532"\w* \w it|strong="G2532"\w* \w therefore|strong="G3767"\w*, \w and|strong="G2532"\w* \w now|strong="G1161"\w* \w they|strong="G2532"\w* weren’\w t|strong="G3588"\w* \w able|strong="G2480"\w* \w to|strong="G1519"\w* \w draw|strong="G1670"\w* \w it|strong="G2532"\w* \w in|strong="G1519"\w* \w for|strong="G1519"\w* \w the|strong="G2532"\w* \w multitude|strong="G4128"\w* \w of|strong="G2532"\w* \w fish|strong="G2486"\w*. +\v 7 \w That|strong="G3754"\w* \w disciple|strong="G3101"\w* \w therefore|strong="G3767"\w* \w whom|strong="G3739"\w* \w Jesus|strong="G2424"\w* loved \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w Peter|strong="G4074"\w*, “\w It|strong="G2532"\w*’\w s|strong="G2962"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*!” +\p \w So|strong="G3767"\w* \w when|strong="G2532"\w* \w Simon|strong="G4613"\w* \w Peter|strong="G4074"\w* heard \w that|strong="G3754"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w he|strong="G2532"\w* wrapped \w his|strong="G1438"\w* coat around \w himself|strong="G1438"\w* (\w for|strong="G1063"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w naked|strong="G1131"\w*), \w and|strong="G2532"\w* threw \w himself|strong="G1438"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w*. +\v 8 \w But|strong="G1161"\w* \w the|strong="G1161"\w* \w other|strong="G1161"\w* \w disciples|strong="G3101"\w* \w came|strong="G2064"\w* \w in|strong="G3756"\w* \w the|strong="G1161"\w* \w little|strong="G4142"\w* \w boat|strong="G4142"\w* (\w for|strong="G1063"\w* \w they|strong="G1161"\w* \w were|strong="G1510"\w* \w not|strong="G3756"\w* \w far|strong="G3112"\w* \w from|strong="G2064"\w* \w the|strong="G1161"\w* \w land|strong="G1093"\w*, \w but|strong="G1161"\w* \w about|strong="G5613"\w* \w two|strong="G1250"\w* \w hundred|strong="G1250"\w* \w cubits|strong="G4083"\w*\f + \fr 21:8 \ft 200 cubits is about 100 yards or about 91 meters\f* \w away|strong="G4951"\w*), \w dragging|strong="G4951"\w* \w the|strong="G1161"\w* \w net|strong="G1350"\w* full \w of|strong="G1093"\w* \w fish|strong="G2486"\w*. +\v 9 \w So|strong="G3767"\w* \w when|strong="G5613"\w* \w they|strong="G2532"\w* got \w out|strong="G2532"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w land|strong="G1093"\w*, \w they|strong="G2532"\w* saw \w a|strong="G5613"\w* fire \w of|strong="G2532"\w* coals \w there|strong="G2532"\w*, \w with|strong="G2532"\w* \w fish|strong="G3795"\w* \w and|strong="G2532"\w* bread \w laid|strong="G2749"\w* \w on|strong="G1519"\w* \w it|strong="G2532"\w*. +\v 10 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Bring|strong="G5342"\+w* \+w some|strong="G3739"\+w* \+w of|strong="G2424"\+w* \+w the|strong="G3588"\+w* \+w fish|strong="G3795"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G3739"\+w* \+w have|strong="G3588"\+w* \+w just|strong="G3739"\+w* \+w caught|strong="G4084"\+w*.”\wj* +\p +\v 11 \w Simon|strong="G4613"\w* \w Peter|strong="G4074"\w* \w went|strong="G2532"\w* \w up|strong="G1519"\w*, \w and|strong="G2532"\w* \w drew|strong="G1670"\w* \w the|strong="G2532"\w* \w net|strong="G1350"\w* \w to|strong="G1519"\w* \w land|strong="G1093"\w*, \w full|strong="G3324"\w* \w of|strong="G2532"\w* \w one|strong="G3588"\w* \w hundred|strong="G1540"\w* \w fifty-three|strong="G4004"\w* \w great|strong="G3173"\w* \w fish|strong="G2486"\w*. \w Even|strong="G2532"\w* \w though|strong="G2532"\w* \w there|strong="G2532"\w* \w were|strong="G1510"\w* \w so|strong="G3767"\w* \w many|strong="G5118"\w*, \w the|strong="G2532"\w* \w net|strong="G1350"\w* wasn’\w t|strong="G3588"\w* \w torn|strong="G4977"\w*. +\p +\v 12 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w them|strong="G3588"\w*, \wj “\+w Come|strong="G1205"\+w* \+w and|strong="G1161"\+w* eat breakfast!”\wj* +\p \w None|strong="G3762"\w* \w of|strong="G2962"\w* \w the|strong="G1161"\w* \w disciples|strong="G3101"\w* \w dared|strong="G5111"\w* \w inquire|strong="G1833"\w* \w of|strong="G2962"\w* \w him|strong="G3588"\w*, “\w Who|strong="G5101"\w* \w are|strong="G1510"\w* \w you|strong="G4771"\w*?” \w knowing|strong="G1492"\w* \w that|strong="G3754"\w* \w it|strong="G3754"\w* \w was|strong="G1510"\w* \w the|strong="G1161"\w* \w Lord|strong="G2962"\w*. +\p +\v 13 \w Then|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w took|strong="G2983"\w* \w the|strong="G2532"\w* bread, \w gave|strong="G1325"\w* \w it|strong="G2532"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w fish|strong="G3795"\w* \w likewise|strong="G3668"\w*. +\v 14 \w This|strong="G3778"\w* \w is|strong="G3588"\w* \w now|strong="G2235"\w* \w the|strong="G1537"\w* \w third|strong="G5154"\w* \w time|strong="G5154"\w* \w that|strong="G3588"\w* \w Jesus|strong="G2424"\w* \w was|strong="G3588"\w* \w revealed|strong="G5319"\w* \w to|strong="G3101"\w* \w his|strong="G3588"\w* \w disciples|strong="G3101"\w* \w after|strong="G1537"\w* \w he|strong="G3778"\w* \w had|strong="G2424"\w* \w risen|strong="G1453"\w* \w from|strong="G1537"\w* \w the|strong="G1537"\w* \w dead|strong="G3498"\w*. +\v 15 \w So|strong="G3767"\w* \w when|strong="G3753"\w* \w they|strong="G3588"\w* \w had|strong="G2424"\w* eaten \w their|strong="G3588"\w* breakfast, \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w Simon|strong="G4613"\w* \w Peter|strong="G4074"\w*, \wj “\+w Simon|strong="G4613"\+w*, son \+w of|strong="G2962"\+w* Jonah, \+w do|strong="G1492"\+w* \+w you|strong="G4771"\+w* \+w love|strong="G5368"\+w* \+w me|strong="G1473"\+w* \+w more|strong="G4119"\+w* \+w than|strong="G4183"\+w* \+w these|strong="G3778"\+w*?”\wj* +\p \w He|strong="G3754"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Yes|strong="G3483"\w*, \w Lord|strong="G2962"\w*; \w you|strong="G4771"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w I|strong="G1473"\w* \w have|strong="G1473"\w* affection \w for|strong="G3754"\w* \w you|strong="G4771"\w*.” +\p \w He|strong="G3754"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “\+w Feed|strong="G1006"\+w* \+w my|strong="G1473"\+w* lambs.”\wj* +\v 16 \w He|strong="G3754"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w* \w again|strong="G3825"\w* \w a|strong="G1492"\w* \w second|strong="G1208"\w* \w time|strong="G1208"\w*, \wj “\+w Simon|strong="G4613"\+w*, son \+w of|strong="G2962"\+w* Jonah, \+w do|strong="G1492"\+w* \+w you|strong="G4771"\+w* \+w love|strong="G5368"\+w* \+w me|strong="G1473"\+w*?”\wj* +\p \w He|strong="G3754"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Yes|strong="G3483"\w*, \w Lord|strong="G2962"\w*; \w you|strong="G4771"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w I|strong="G1473"\w* \w have|strong="G1473"\w* affection \w for|strong="G3754"\w* \w you|strong="G4771"\w*.” +\p \w He|strong="G3754"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, \wj “Tend \+w my|strong="G1473"\+w* \+w sheep|strong="G4263"\+w*.”\wj* +\v 17 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w the|strong="G2532"\w* \w third|strong="G5154"\w* \w time|strong="G5154"\w*, \wj “\+w Simon|strong="G4613"\+w*, son \+w of|strong="G2532"\+w* Jonah, \+w do|strong="G1492"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2532"\+w* affection \+w for|strong="G3754"\+w* \+w me|strong="G1473"\+w*?”\wj* +\p \w Peter|strong="G4074"\w* \w was|strong="G3588"\w* \w grieved|strong="G3076"\w* \w because|strong="G3754"\w* \w he|strong="G2532"\w* \w asked|strong="G3004"\w* \w him|strong="G3588"\w* \w the|strong="G2532"\w* \w third|strong="G5154"\w* \w time|strong="G5154"\w*, \wj “\+w Do|strong="G1492"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2532"\+w* affection \+w for|strong="G3754"\+w* \+w me|strong="G1473"\+w*?”\wj* \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w Lord|strong="G2962"\w*, \w you|strong="G4771"\w* \w know|strong="G1492"\w* \w everything|strong="G3956"\w*. \w You|strong="G4771"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w I|strong="G1473"\w* \w have|strong="G2532"\w* affection \w for|strong="G3754"\w* \w you|strong="G4771"\w*.” +\p \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Feed|strong="G1006"\+w* \+w my|strong="G3956"\+w* \+w sheep|strong="G4263"\+w*. \wj* +\v 18 \wj Most \+w certainly|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w tell|strong="G3004"\+w* \+w you|strong="G4771"\+w*, \+w when|strong="G3752"\+w* \+w you|strong="G4771"\+w* \+w were|strong="G1510"\+w* \+w young|strong="G3501"\+w*, \+w you|strong="G4771"\+w* dressed \+w yourself|strong="G4572"\+w* \+w and|strong="G2532"\+w* \+w walked|strong="G4043"\+w* \+w where|strong="G3699"\+w* \+w you|strong="G4771"\+w* \+w wanted|strong="G2309"\+w* \+w to|strong="G2532"\+w*. \+w But|strong="G1161"\+w* \+w when|strong="G3752"\+w* \+w you|strong="G4771"\+w* \+w are|strong="G1510"\+w* \+w old|strong="G1095"\+w*, \+w you|strong="G4771"\+w* \+w will|strong="G2309"\+w* \+w stretch|strong="G1614"\+w* \+w out|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w hands|strong="G5495"\+w*, \+w and|strong="G2532"\+w* \+w another|strong="G3588"\+w* \+w will|strong="G2309"\+w* dress \+w you|strong="G4771"\+w* \+w and|strong="G2532"\+w* \+w carry|strong="G5342"\+w* \+w you|strong="G4771"\+w* \+w where|strong="G3699"\+w* \+w you|strong="G4771"\+w* don’\+w t|strong="G3588"\+w* \+w want|strong="G2309"\+w* \+w to|strong="G2532"\+w* \+w go|strong="G2309"\+w*.”\wj* +\p +\v 19 \w Now|strong="G1161"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w this|strong="G3778"\w*, \w signifying|strong="G4591"\w* \w by|strong="G2532"\w* \w what|strong="G4169"\w* \w kind|strong="G4169"\w* \w of|strong="G2316"\w* \w death|strong="G2288"\w* \w he|strong="G2532"\w* \w would|strong="G2316"\w* \w glorify|strong="G1392"\w* \w God|strong="G2316"\w*. \w When|strong="G1161"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w said|strong="G3004"\w* \w this|strong="G3778"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Follow|strong="G1161"\+w* \+w me|strong="G1473"\+w*.”\wj* +\p +\v 20 \w Then|strong="G2532"\w* \w Peter|strong="G4074"\w*, \w turning|strong="G1994"\w* \w around|strong="G1909"\w*, \w saw|strong="G2424"\w* \w a|strong="G2532"\w* \w disciple|strong="G3101"\w* \w following|strong="G1722"\w*. \w This|strong="G3588"\w* \w was|strong="G1510"\w* \w the|strong="G1722"\w* \w disciple|strong="G3101"\w* \w whom|strong="G3739"\w* \w Jesus|strong="G2424"\w* loved, \w the|strong="G1722"\w* \w one|strong="G3739"\w* \w who|strong="G3739"\w* \w had|strong="G2424"\w* \w also|strong="G2532"\w* leaned \w on|strong="G1909"\w* \w Jesus|strong="G2424"\w*’ \w chest|strong="G4738"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w supper|strong="G1173"\w* \w and|strong="G2532"\w* \w asked|strong="G3004"\w*, “\w Lord|strong="G2962"\w*, \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w going|strong="G2532"\w* \w to|strong="G2532"\w* \w betray|strong="G3860"\w* \w you|strong="G4771"\w*?” +\v 21 \w Peter|strong="G4074"\w*, \w seeing|strong="G3708"\w* \w him|strong="G3588"\w*, \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w Jesus|strong="G2424"\w*, “\w Lord|strong="G2962"\w*, \w what|strong="G5101"\w* \w about|strong="G2424"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w*?” +\p +\v 22 \w Jesus|strong="G2424"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \wj “\+w If|strong="G1437"\+w* \+w I|strong="G1473"\+w* \+w desire|strong="G2309"\+w* \+w that|strong="G3588"\+w* \+w he|strong="G3588"\+w* \+w stay|strong="G3306"\+w* \+w until|strong="G2193"\+w* \+w I|strong="G1473"\+w* \+w come|strong="G2064"\+w*, \+w what|strong="G5101"\+w* \+w is|strong="G3588"\+w* \+w that|strong="G3588"\+w* \+w to|strong="G4314"\+w* \+w you|strong="G4771"\+w*? \+w You|strong="G4771"\+w* \+w follow|strong="G2064"\+w* \+w me|strong="G1473"\+w*.”\wj* +\v 23 \w This|strong="G3778"\w* \w saying|strong="G3004"\w* \w therefore|strong="G3767"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w among|strong="G1519"\w* \w the|strong="G2532"\w* brothers\f + \fr 21:23 \ft The word for “brothers” here may be also correctly translated “brothers and sisters” or “siblings.”\f* \w that|strong="G3754"\w* \w this|strong="G3778"\w* \w disciple|strong="G3101"\w* wouldn’\w t|strong="G3588"\w* die. \w Yet|strong="G2532"\w* \w Jesus|strong="G2424"\w* didn’\w t|strong="G3588"\w* \w say|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* wouldn’\w t|strong="G3588"\w* die, \w but|strong="G1161"\w*, \wj “\+w If|strong="G1437"\+w* \+w I|strong="G2532"\+w* \+w desire|strong="G2309"\+w* \+w that|strong="G3754"\+w* \+w he|strong="G2532"\+w* \+w stay|strong="G3306"\+w* \+w until|strong="G2193"\+w* \+w I|strong="G2532"\+w* \+w come|strong="G2064"\+w*, \+w what|strong="G5101"\+w* \+w is|strong="G3588"\+w* \+w that|strong="G3754"\+w* \+w to|strong="G1519"\+w* \+w you|strong="G4771"\+w*?”\wj* +\p +\v 24 \w This|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w disciple|strong="G3101"\w* \w who|strong="G3588"\w* \w testifies|strong="G3140"\w* \w about|strong="G4012"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w and|strong="G2532"\w* \w wrote|strong="G1125"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*. \w We|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w his|strong="G4012"\w* \w witness|strong="G3140"\w* \w is|strong="G1510"\w* \w true|strong="G3588"\w*. +\v 25 \w There|strong="G2532"\w* \w are|strong="G1510"\w* \w also|strong="G2532"\w* \w many|strong="G4183"\w* \w other|strong="G1161"\w* \w things|strong="G4183"\w* \w which|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w did|strong="G4160"\w*, \w which|strong="G2532"\w* \w if|strong="G1437"\w* \w they|strong="G2532"\w* \w would|strong="G2532"\w* \w all|strong="G2532"\w* \w be|strong="G1510"\w* \w written|strong="G1125"\w*, \w I|strong="G2532"\w* \w suppose|strong="G3633"\w* \w that|strong="G2532"\w* \w even|strong="G2532"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w* itself wouldn’t \w have|strong="G2532"\w* \w room|strong="G5562"\w* \w for|strong="G1161"\w* \w the|strong="G2532"\w* books \w that|strong="G2532"\w* \w would|strong="G2532"\w* \w be|strong="G1510"\w* \w written|strong="G1125"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/74-ACTeng-web.usfm b/bibles/eng-web_usfm/74-ACTeng-web.usfm new file mode 100644 index 0000000..8d67a55 --- /dev/null +++ b/bibles/eng-web_usfm/74-ACTeng-web.usfm @@ -0,0 +1,1411 @@ +\id ACT 44-ACT-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Acts +\toc1 The Acts of the Apostles +\toc2 Acts +\toc3 Act +\mt1 The Acts of the Apostles +\c 1 +\p +\v 1 \w The|strong="G2532"\w* \w first|strong="G4413"\w* \w book|strong="G3588"\w* \w I|strong="G3739"\w* wrote, \w Theophilus|strong="G2321"\w*, concerned \w all|strong="G3956"\w* \w that|strong="G3739"\w* \w Jesus|strong="G2424"\w* began \w both|strong="G2532"\w* \w to|strong="G2532"\w* \w do|strong="G4160"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w teach|strong="G1321"\w*, +\v 2 until \w the|strong="G1223"\w* \w day|strong="G2250"\w* \w in|strong="G1223"\w* \w which|strong="G3739"\w* \w he|strong="G3739"\w* \w was|strong="G3588"\w* received up, \w after|strong="G1223"\w* \w he|strong="G3739"\w* \w had|strong="G3739"\w* \w given|strong="G1781"\w* \w commandment|strong="G1781"\w* \w through|strong="G1223"\w* \w the|strong="G1223"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w to|strong="G4151"\w* \w the|strong="G1223"\w* apostles \w whom|strong="G3739"\w* \w he|strong="G3739"\w* \w had|strong="G3739"\w* \w chosen|strong="G1586"\w*. +\v 3 \w To|strong="G2532"\w* \w these|strong="G3739"\w* \w he|strong="G2532"\w* \w also|strong="G2532"\w* showed \w himself|strong="G1438"\w* \w alive|strong="G2198"\w* \w after|strong="G3326"\w* \w he|strong="G2532"\w* \w suffered|strong="G3958"\w*, \w by|strong="G1223"\w* \w many|strong="G4183"\w* \w proofs|strong="G5039"\w*, \w appearing|strong="G3700"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w over|strong="G4012"\w* \w a|strong="G2532"\w* \w period|strong="G2532"\w* \w of|strong="G4012"\w* \w forty|strong="G5062"\w* \w days|strong="G2250"\w* \w and|strong="G2532"\w* \w speaking|strong="G3004"\w* \w about|strong="G4012"\w* \w God|strong="G2316"\w*’s Kingdom. +\v 4 \w Being|strong="G2532"\w* assembled \w together|strong="G4871"\w* \w with|strong="G2532"\w* \w them|strong="G3588"\w*, \w he|strong="G2532"\w* \w commanded|strong="G3853"\w* \w them|strong="G3588"\w*, \wj “Don’\+w t|strong="G3588"\+w* \+w depart|strong="G5563"\+w* \+w from|strong="G2532"\+w* \+w Jerusalem|strong="G2414"\+w*, \+w but|strong="G2532"\+w* \+w wait|strong="G4037"\+w* \+w for|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w promise|strong="G1860"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Father|strong="G3962"\+w*, \+w which|strong="G3739"\+w* \+w you|strong="G3739"\+w* heard \+w from|strong="G2532"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 5 \wj \+w For|strong="G3754"\+w* \+w John|strong="G2491"\+w* \+w indeed|strong="G3303"\+w* baptized \+w in|strong="G1722"\+w* \+w water|strong="G5204"\+w*, \+w but|strong="G1161"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G4183"\+w* \+w be|strong="G3756"\+w* baptized \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w Holy|strong="G4151"\+w* \+w Spirit|strong="G4151"\+w* \+w not|strong="G3756"\+w* \+w many|strong="G4183"\+w* \+w days|strong="G2250"\+w* \+w from|strong="G3756"\+w* \+w now|strong="G1161"\+w*.”\wj* +\p +\v 6 \w Therefore|strong="G3767"\w*, \w when|strong="G1722"\w* \w they|strong="G3588"\w* \w had|strong="G3588"\w* \w come|strong="G4905"\w* \w together|strong="G4905"\w*, \w they|strong="G3588"\w* \w asked|strong="G2065"\w* \w him|strong="G3588"\w*, “\w Lord|strong="G2962"\w*, \w are|strong="G3588"\w* \w you|strong="G1487"\w* \w now|strong="G3767"\w* restoring \w the|strong="G1722"\w* kingdom \w to|strong="G3004"\w* \w Israel|strong="G2474"\w*?” +\p +\v 7 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \wj “\+w It|strong="G1161"\+w* isn’\+w t|strong="G3588"\+w* \+w for|strong="G4314"\+w* \+w you|strong="G5210"\+w* \+w to|strong="G4314"\+w* \+w know|strong="G1097"\+w* \+w times|strong="G2540"\+w* \+w or|strong="G2228"\+w* \+w seasons|strong="G2540"\+w* \+w which|strong="G3739"\+w* \+w the|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w has|strong="G3962"\+w* \+w set|strong="G5087"\+w* \+w within|strong="G1722"\+w* \+w his|strong="G1438"\+w* \+w own|strong="G2398"\+w* \+w authority|strong="G1849"\+w*. \wj* +\v 8 \wj \+w But|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G1510"\+w* \+w receive|strong="G2983"\+w* \+w power|strong="G1411"\+w* \+w when|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w Holy|strong="G4151"\+w* \+w Spirit|strong="G4151"\+w* \+w has|strong="G4151"\+w* \+w come|strong="G1904"\+w* \+w upon|strong="G1909"\+w* \+w you|strong="G5210"\+w*. \+w You|strong="G5210"\+w* \+w will|strong="G1510"\+w* \+w be|strong="G1510"\+w* \+w witnesses|strong="G3144"\+w* \+w to|strong="G2532"\+w* \+w me|strong="G1473"\+w* \+w in|strong="G1722"\+w* \+w Jerusalem|strong="G2419"\+w*, \+w in|strong="G1722"\+w* \+w all|strong="G3956"\+w* \+w Judea|strong="G2449"\+w* \+w and|strong="G2532"\+w* \+w Samaria|strong="G4540"\+w*, \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G1722"\+w* uttermost parts \+w of|strong="G4151"\+w* \+w the|strong="G1722"\+w* \+w earth|strong="G1093"\+w*.”\wj* +\p +\v 9 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w said|strong="G3004"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w as|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w looking|strong="G2532"\w*, \w he|strong="G2532"\w* \w was|strong="G3588"\w* taken \w up|strong="G1869"\w*, \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w cloud|strong="G3507"\w* \w received|strong="G5274"\w* \w him|strong="G3588"\w* \w out|strong="G2532"\w* \w of|strong="G2532"\w* \w their|strong="G2532"\w* \w sight|strong="G3788"\w*. +\v 10 \w While|strong="G1722"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w looking|strong="G2532"\w* steadfastly \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w sky|strong="G3772"\w* \w as|strong="G5613"\w* \w he|strong="G2532"\w* \w went|strong="G4198"\w*, \w behold|strong="G2400"\w*,\f + \fr 1:10 \ft “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w two|strong="G1417"\w* \w men|strong="G1417"\w* \w stood|strong="G3936"\w* \w by|strong="G1722"\w* \w them|strong="G3588"\w* \w in|strong="G1722"\w* \w white|strong="G3022"\w* \w clothing|strong="G2066"\w*, +\v 11 \w who|strong="G3739"\w* \w also|strong="G2532"\w* \w said|strong="G3004"\w*, “\w You|strong="G5210"\w* \w men|strong="G3778"\w* \w of|strong="G2532"\w* \w Galilee|strong="G1057"\w*, \w why|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G5210"\w* \w stand|strong="G2476"\w* \w looking|strong="G2424"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w*? \w This|strong="G3778"\w* \w Jesus|strong="G2424"\w*, \w who|strong="G3739"\w* \w was|strong="G3588"\w* received \w up|strong="G1519"\w* \w from|strong="G2064"\w* \w you|strong="G5210"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w*, \w will|strong="G5101"\w* \w come|strong="G2064"\w* \w back|strong="G1519"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w same|strong="G3778"\w* \w way|strong="G3779"\w* \w as|strong="G1519"\w* \w you|strong="G5210"\w* \w saw|strong="G2300"\w* \w him|strong="G3588"\w* \w going|strong="G4198"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w*.” +\p +\v 12 \w Then|strong="G5119"\w* \w they|strong="G3588"\w* \w returned|strong="G5290"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w* \w from|strong="G3588"\w* \w the|strong="G1519"\w* \w mountain|strong="G3735"\w* \w called|strong="G2564"\w* \w Olivet|strong="G1638"\w*, \w which|strong="G3739"\w* \w is|strong="G1510"\w* \w near|strong="G1451"\w* \w Jerusalem|strong="G2419"\w*, \w a|strong="G2192"\w* \w Sabbath|strong="G4521"\w* \w day|strong="G4521"\w*’\w s|strong="G2192"\w* \w journey|strong="G3598"\w* \w away|strong="G5290"\w*. +\v 13 \w When|strong="G3753"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w come|strong="G1525"\w* \w in|strong="G1519"\w*, \w they|strong="G2532"\w* \w went|strong="G1525"\w* \w up|strong="G1519"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w upper|strong="G5253"\w* \w room|strong="G5253"\w* \w where|strong="G3757"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w staying|strong="G2650"\w*, \w that|strong="G3588"\w* \w is|strong="G1510"\w* \w Peter|strong="G4074"\w*, \w John|strong="G2491"\w*, \w James|strong="G2385"\w*, Andrew, \w Philip|strong="G5376"\w*, \w Thomas|strong="G2381"\w*, Bartholomew, \w Matthew|strong="G3156"\w*, \w James|strong="G2385"\w* \w the|strong="G2532"\w* son \w of|strong="G2532"\w* Alphaeus, \w Simon|strong="G4613"\w* \w the|strong="G2532"\w* Zealot, \w and|strong="G2532"\w* \w Judas|strong="G2455"\w* \w the|strong="G2532"\w* son \w of|strong="G2532"\w* \w James|strong="G2385"\w*. +\v 14 \w All|strong="G3956"\w* \w these|strong="G3778"\w* \w with|strong="G4862"\w* \w one|strong="G3956"\w* \w accord|strong="G3661"\w* \w continued|strong="G4342"\w* steadfastly \w in|strong="G2532"\w* \w prayer|strong="G4335"\w* \w and|strong="G2532"\w* supplication, \w along|strong="G4862"\w* \w with|strong="G4862"\w* \w the|strong="G2532"\w* \w women|strong="G1135"\w* \w and|strong="G2532"\w* \w Mary|strong="G3137"\w* \w the|strong="G2532"\w* \w mother|strong="G3384"\w* \w of|strong="G2532"\w* \w Jesus|strong="G2424"\w*, \w and|strong="G2532"\w* \w with|strong="G4862"\w* \w his|strong="G3956"\w* brothers. +\p +\v 15 \w In|strong="G1722"\w* \w these|strong="G3778"\w* \w days|strong="G2250"\w*, \w Peter|strong="G4074"\w* \w stood|strong="G3588"\w* \w up|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w middle|strong="G3319"\w* \w of|strong="G2250"\w* \w the|strong="G1722"\w* \w disciples|strong="G1510"\w* (\w and|strong="G2532"\w* \w the|strong="G1722"\w* \w number|strong="G3793"\w* \w of|strong="G2250"\w* \w names|strong="G3686"\w* \w was|strong="G1510"\w* \w about|strong="G5613"\w* \w one|strong="G3588"\w* \w hundred|strong="G1540"\w* \w twenty|strong="G1501"\w*), \w and|strong="G2532"\w* \w said|strong="G3004"\w*, +\v 16 “Brothers, \w it|strong="G3739"\w* \w was|strong="G1096"\w* \w necessary|strong="G1163"\w* \w that|strong="G3739"\w* \w this|strong="G3588"\w* \w Scripture|strong="G1124"\w* \w should|strong="G1163"\w* \w be|strong="G1096"\w* \w fulfilled|strong="G4137"\w*, \w which|strong="G3739"\w* \w the|strong="G1223"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* spoke \w before|strong="G4302"\w* \w by|strong="G1223"\w* \w the|strong="G1223"\w* \w mouth|strong="G4750"\w* \w of|strong="G4012"\w* \w David|strong="G1138"\w* \w concerning|strong="G4012"\w* \w Judas|strong="G2455"\w*, \w who|strong="G3739"\w* \w was|strong="G1096"\w* \w guide|strong="G3595"\w* \w to|strong="G1163"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w took|strong="G1096"\w* \w Jesus|strong="G2424"\w*. +\v 17 \w For|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w counted|strong="G2674"\w* \w with|strong="G1722"\w* \w us|strong="G2249"\w*, \w and|strong="G2532"\w* \w received|strong="G2975"\w* \w his|strong="G1722"\w* \w portion|strong="G2819"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* \w ministry|strong="G1248"\w*. +\v 18 \w Now|strong="G2532"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w obtained|strong="G2932"\w* \w a|strong="G1096"\w* \w field|strong="G5564"\w* \w with|strong="G1537"\w* \w the|strong="G2532"\w* \w reward|strong="G3408"\w* \w for|strong="G2532"\w* \w his|strong="G3956"\w* wickedness; \w and|strong="G2532"\w* \w falling|strong="G1096"\w* \w headlong|strong="G4248"\w*, \w his|strong="G3956"\w* body \w burst|strong="G2997"\w* \w open|strong="G2997"\w* \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w his|strong="G3956"\w* \w intestines|strong="G4698"\w* \w gushed|strong="G1632"\w* \w out|strong="G1537"\w*. +\v 19 \w It|strong="G2532"\w* \w became|strong="G1096"\w* \w known|strong="G1110"\w* \w to|strong="G2532"\w* \w everyone|strong="G3956"\w* \w who|strong="G3739"\w* \w lived|strong="G2730"\w* \w in|strong="G2532"\w* \w Jerusalem|strong="G2419"\w* \w that|strong="G3739"\w* \w in|strong="G2532"\w* \w their|strong="G2532"\w* \w language|strong="G1258"\w* \w that|strong="G3739"\w* \w field|strong="G5564"\w* \w was|strong="G1510"\w* \w called|strong="G2564"\w* ‘Akeldama,’ \w that|strong="G3739"\w* \w is|strong="G1510"\w*, ‘\w The|strong="G2532"\w* \w field|strong="G5564"\w* \w of|strong="G2532"\w* blood.’ +\v 20 \w For|strong="G1063"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w written|strong="G1125"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w book|strong="G3588"\w* \w of|strong="G2532"\w* \w Psalms|strong="G5568"\w*, +\q1 ‘\w Let|strong="G1096"\w* \w his|strong="G1722"\w* \w habitation|strong="G1886"\w* \w be|strong="G1096"\w* \w made|strong="G1096"\w* \w desolate|strong="G2048"\w*. +\q2 \w Let|strong="G1096"\w* \w no|strong="G3361"\w* \w one|strong="G3588"\w* \w dwell|strong="G2730"\w* \w in|strong="G1722"\w* \w it|strong="G2532"\w*;’\x + \xo 1:20 \xt Psalms 69:25\x* +\p \w and|strong="G2532"\w*, +\q1 ‘\w Let|strong="G1096"\w* \w another|strong="G2087"\w* \w take|strong="G2983"\w* \w his|strong="G1722"\w* \w office|strong="G1984"\w*.’\x + \xo 1:20 \xt Psalms 109:8\x* +\p +\v 21 “\w Of|strong="G2532"\w* \w the|strong="G1722"\w* \w men|strong="G3956"\w* \w therefore|strong="G3767"\w* \w who|strong="G3739"\w* \w have|strong="G2532"\w* \w accompanied|strong="G4905"\w* \w us|strong="G2249"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w time|strong="G5550"\w* \w that|strong="G3739"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w went|strong="G1831"\w* \w in|strong="G1722"\w* \w and|strong="G2532"\w* \w out|strong="G1831"\w* \w among|strong="G1722"\w* \w us|strong="G2249"\w*, +\v 22 beginning \w from|strong="G3588"\w* \w the|strong="G3588"\w* baptism \w of|strong="G2250"\w* \w John|strong="G2491"\w* \w to|strong="G2193"\w* \w the|strong="G3588"\w* \w day|strong="G2250"\w* \w that|strong="G3739"\w* \w he|strong="G3739"\w* \w was|strong="G1096"\w* received up \w from|strong="G3588"\w* \w us|strong="G2249"\w*, \w of|strong="G2250"\w* \w these|strong="G3778"\w* \w one|strong="G1520"\w* \w must|strong="G1096"\w* \w become|strong="G1096"\w* \w a|strong="G1096"\w* \w witness|strong="G3144"\w* \w with|strong="G4862"\w* \w us|strong="G2249"\w* \w of|strong="G2250"\w* \w his|strong="G3739"\w* resurrection.” +\p +\v 23 \w They|strong="G2532"\w* \w put|strong="G2476"\w* \w forward|strong="G2476"\w* \w two|strong="G1417"\w*: \w Joseph|strong="G2501"\w* \w called|strong="G2564"\w* Barsabbas, \w who|strong="G3739"\w* \w was|strong="G3588"\w* \w also|strong="G2532"\w* \w called|strong="G2564"\w* \w Justus|strong="G2459"\w*, \w and|strong="G2532"\w* \w Matthias|strong="G3159"\w*. +\v 24 \w They|strong="G2532"\w* \w prayed|strong="G4336"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w You|strong="G4771"\w*, \w Lord|strong="G2962"\w*, \w who|strong="G3739"\w* \w know|strong="G2589"\w* \w the|strong="G2532"\w* \w hearts|strong="G2589"\w* \w of|strong="G1537"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w*, show \w which|strong="G3739"\w* \w one|strong="G1520"\w* \w of|strong="G1537"\w* \w these|strong="G3778"\w* \w two|strong="G1417"\w* \w you|strong="G4771"\w* \w have|strong="G2532"\w* \w chosen|strong="G1586"\w* +\v 25 \w to|strong="G1519"\w* \w take|strong="G2983"\w* \w part|strong="G2532"\w* \w in|strong="G1519"\w* \w this|strong="G3778"\w* \w ministry|strong="G1248"\w* \w and|strong="G2532"\w* apostleship \w from|strong="G2532"\w* \w which|strong="G3739"\w* \w Judas|strong="G2455"\w* \w fell|strong="G2532"\w* \w away|strong="G4198"\w*, \w that|strong="G3739"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w go|strong="G4198"\w* \w to|strong="G1519"\w* \w his|strong="G1519"\w* \w own|strong="G2398"\w* \w place|strong="G5117"\w*.” +\v 26 \w They|strong="G2532"\w* \w drew|strong="G2532"\w* \w lots|strong="G2819"\w* \w for|strong="G1909"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w lot|strong="G2819"\w* \w fell|strong="G4098"\w* \w on|strong="G1909"\w* \w Matthias|strong="G3159"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* counted \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w eleven|strong="G1733"\w* apostles. +\c 2 +\p +\v 1 \w Now|strong="G2532"\w* \w when|strong="G2532"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* \w Pentecost|strong="G4005"\w* \w had|strong="G2532"\w* \w come|strong="G1510"\w*, \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w all|strong="G3956"\w* \w with|strong="G1722"\w* \w one|strong="G3956"\w* accord \w in|strong="G1722"\w* \w one|strong="G3956"\w* \w place|strong="G1722"\w*. +\v 2 Suddenly \w there|strong="G2532"\w* \w came|strong="G1096"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w* \w a|strong="G1096"\w* \w sound|strong="G2279"\w* \w like|strong="G5618"\w* \w the|strong="G2532"\w* \w rushing|strong="G5342"\w* \w of|strong="G1537"\w* \w a|strong="G1096"\w* \w mighty|strong="G2532"\w* \w wind|strong="G4157"\w*, \w and|strong="G2532"\w* \w it|strong="G2532"\w* \w filled|strong="G4137"\w* \w all|strong="G3650"\w* \w the|strong="G2532"\w* \w house|strong="G3624"\w* \w where|strong="G3757"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w sitting|strong="G2521"\w*. +\v 3 \w Tongues|strong="G1100"\w* \w like|strong="G5616"\w* \w fire|strong="G4442"\w* \w appeared|strong="G3708"\w* \w and|strong="G2532"\w* \w were|strong="G2532"\w* distributed \w to|strong="G2532"\w* \w them|strong="G3708"\w*, \w and|strong="G2532"\w* \w one|strong="G1520"\w* \w sat|strong="G2523"\w* \w on|strong="G1909"\w* \w each|strong="G1538"\w* \w of|strong="G2532"\w* \w them|strong="G3708"\w*. +\v 4 \w They|strong="G2532"\w* \w were|strong="G3588"\w* \w all|strong="G3956"\w* \w filled|strong="G4130"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w and|strong="G2532"\w* began \w to|strong="G2532"\w* \w speak|strong="G2980"\w* \w with|strong="G2532"\w* \w other|strong="G2087"\w* \w languages|strong="G1100"\w*, \w as|strong="G2531"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w* \w gave|strong="G1325"\w* \w them|strong="G3588"\w* \w the|strong="G2532"\w* ability \w to|strong="G2532"\w* \w speak|strong="G2980"\w*. +\p +\v 5 \w Now|strong="G1161"\w* \w there|strong="G1161"\w* \w were|strong="G1510"\w* \w dwelling|strong="G2730"\w* \w in|strong="G1722"\w* \w Jerusalem|strong="G2419"\w* \w Jews|strong="G2453"\w*, \w devout|strong="G2126"\w* \w men|strong="G3956"\w*, \w from|strong="G5259"\w* \w every|strong="G3956"\w* \w nation|strong="G1484"\w* \w under|strong="G5259"\w* \w the|strong="G1722"\w* \w sky|strong="G3772"\w*. +\v 6 \w When|strong="G1161"\w* \w this|strong="G3778"\w* \w sound|strong="G5456"\w* \w was|strong="G1096"\w* heard, \w the|strong="G2532"\w* \w multitude|strong="G4128"\w* \w came|strong="G1096"\w* \w together|strong="G4905"\w* \w and|strong="G2532"\w* \w were|strong="G3588"\w* \w bewildered|strong="G4797"\w*, \w because|strong="G3754"\w* \w everyone|strong="G1538"\w* heard \w them|strong="G3588"\w* \w speaking|strong="G2980"\w* \w in|strong="G2532"\w* \w his|strong="G2398"\w* \w own|strong="G2398"\w* \w language|strong="G1258"\w*. +\v 7 \w They|strong="G2532"\w* \w were|strong="G1510"\w* \w all|strong="G3956"\w* \w amazed|strong="G2296"\w* \w and|strong="G2532"\w* \w marveled|strong="G2296"\w*, \w saying|strong="G3004"\w* \w to|strong="G2532"\w* \w one|strong="G3956"\w* \w another|strong="G3588"\w*, “\w Behold|strong="G2400"\w*, aren’\w t|strong="G3588"\w* \w all|strong="G3956"\w* \w these|strong="G3778"\w* \w who|strong="G3588"\w* \w speak|strong="G2980"\w* \w Galileans|strong="G1057"\w*? +\v 8 \w How|strong="G4459"\w* \w do|strong="G2532"\w* \w we|strong="G2249"\w* hear, \w everyone|strong="G1538"\w* \w in|strong="G1722"\w* \w our|strong="G2532"\w* \w own|strong="G2398"\w* \w native|strong="G1722"\w* \w language|strong="G1258"\w*? +\v 9 \w Parthians|strong="G3934"\w*, \w Medes|strong="G3370"\w*, \w Elamites|strong="G1639"\w*, \w and|strong="G2532"\w* \w people|strong="G3588"\w* \w from|strong="G2532"\w* \w Mesopotamia|strong="G3318"\w*, \w Judea|strong="G2449"\w*, \w Cappadocia|strong="G2587"\w*, \w Pontus|strong="G4195"\w*, \w Asia|strong="G3588"\w*, +\v 10 \w Phrygia|strong="G5435"\w*, \w Pamphylia|strong="G3828"\w*, Egypt, \w the|strong="G2532"\w* \w parts|strong="G3313"\w* \w of|strong="G2532"\w* \w Libya|strong="G3033"\w* \w around|strong="G2596"\w* \w Cyrene|strong="G2957"\w*, \w visitors|strong="G1927"\w* \w from|strong="G2532"\w* \w Rome|strong="G4514"\w*, \w both|strong="G2532"\w* \w Jews|strong="G2453"\w* \w and|strong="G2532"\w* \w proselytes|strong="G4339"\w*, +\v 11 \w Cretans|strong="G2912"\w* \w and|strong="G2532"\w* Arabians—\w we|strong="G2532"\w* hear \w them|strong="G3588"\w* \w speaking|strong="G2980"\w* \w in|strong="G2532"\w* \w our|strong="G2316"\w* \w languages|strong="G1100"\w* \w the|strong="G2532"\w* \w mighty|strong="G2532"\w* \w works|strong="G3167"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*!” +\v 12 \w They|strong="G2532"\w* \w were|strong="G1510"\w* \w all|strong="G3956"\w* \w amazed|strong="G1839"\w* \w and|strong="G2532"\w* \w were|strong="G1510"\w* \w perplexed|strong="G1280"\w*, \w saying|strong="G3004"\w* \w to|strong="G4314"\w* \w one|strong="G3956"\w* \w another|strong="G1161"\w*, “\w What|strong="G5101"\w* \w does|strong="G1510"\w* \w this|strong="G3778"\w* \w mean|strong="G3004"\w*?” +\v 13 \w Others|strong="G2087"\w*, \w mocking|strong="G5512"\w*, \w said|strong="G3004"\w*, “\w They|strong="G1161"\w* \w are|strong="G1510"\w* filled \w with|strong="G1161"\w* new \w wine|strong="G1098"\w*.” +\p +\v 14 \w But|strong="G1161"\w* \w Peter|strong="G4074"\w*, \w standing|strong="G2476"\w* \w up|strong="G1869"\w* \w with|strong="G4862"\w* \w the|strong="G2532"\w* \w eleven|strong="G1733"\w*, \w lifted|strong="G1869"\w* \w up|strong="G1869"\w* \w his|strong="G3956"\w* \w voice|strong="G5456"\w* \w and|strong="G2532"\w* spoke \w out|strong="G2532"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, “\w You|strong="G5210"\w* \w men|strong="G3956"\w* \w of|strong="G2532"\w* \w Judea|strong="G2453"\w* \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w you|strong="G5210"\w* \w who|strong="G3588"\w* \w dwell|strong="G2730"\w* \w at|strong="G2730"\w* \w Jerusalem|strong="G2419"\w*, \w let|strong="G1161"\w* \w this|strong="G3778"\w* \w be|strong="G1510"\w* \w known|strong="G1110"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*, \w and|strong="G2532"\w* listen \w to|strong="G2532"\w* \w my|strong="G3956"\w* \w words|strong="G4487"\w*. +\v 15 \w For|strong="G1063"\w* \w these|strong="G3778"\w* aren’\w t|strong="G3588"\w* \w drunken|strong="G3184"\w*, \w as|strong="G5613"\w* \w you|strong="G5210"\w* \w suppose|strong="G5274"\w*, \w seeing|strong="G5613"\w* \w it|strong="G1063"\w* \w is|strong="G1510"\w* \w only|strong="G3756"\w* \w the|strong="G3588"\w* \w third|strong="G5154"\w* \w hour|strong="G5610"\w* \w of|strong="G2250"\w* \w the|strong="G3588"\w* \w day|strong="G2250"\w*.\f + \fr 2:15 \ft about 9:00 a.m.\f* +\v 16 \w But|strong="G3588"\w* \w this|strong="G3778"\w* \w is|strong="G1510"\w* \w what|strong="G3588"\w* \w has|strong="G3778"\w* \w been|strong="G1510"\w* \w spoken|strong="G3004"\w* \w through|strong="G1223"\w* \w the|strong="G1223"\w* \w prophet|strong="G4396"\w* \w Joel|strong="G2493"\w*: +\q1 +\v 17 ‘\w It|strong="G2532"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w last|strong="G2078"\w* \w days|strong="G2250"\w*, \w says|strong="G3004"\w* \w God|strong="G2316"\w*, +\q2 \w that|strong="G3588"\w* \w I|strong="G1473"\w* \w will|strong="G2316"\w* \w pour|strong="G1632"\w* \w out|strong="G1632"\w* \w my|strong="G3708"\w* \w Spirit|strong="G4151"\w* \w on|strong="G1909"\w* \w all|strong="G3956"\w* \w flesh|strong="G4561"\w*. +\q1 \w Your|strong="G2532"\w* \w sons|strong="G5207"\w* \w and|strong="G2532"\w* \w your|strong="G2532"\w* \w daughters|strong="G2364"\w* \w will|strong="G2316"\w* \w prophesy|strong="G4395"\w*. +\q2 \w Your|strong="G2532"\w* \w young|strong="G3495"\w* \w men|strong="G3956"\w* \w will|strong="G2316"\w* \w see|strong="G3708"\w* \w visions|strong="G3706"\w*. +\q2 \w Your|strong="G2532"\w* \w old|strong="G4245"\w* \w men|strong="G3956"\w* \w will|strong="G2316"\w* \w dream|strong="G1797"\w* \w dreams|strong="G1798"\w*. +\q1 +\v 18 Yes, \w and|strong="G2532"\w* \w on|strong="G1909"\w* \w my|strong="G1722"\w* \w servants|strong="G1401"\w* \w and|strong="G2532"\w* \w on|strong="G1909"\w* \w my|strong="G1722"\w* \w handmaidens|strong="G1399"\w* \w in|strong="G1722"\w* \w those|strong="G3588"\w* \w days|strong="G2250"\w*, +\q2 \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w pour|strong="G1632"\w* \w out|strong="G1632"\w* \w my|strong="G1722"\w* \w Spirit|strong="G4151"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w will|strong="G2532"\w* \w prophesy|strong="G4395"\w*. +\q1 +\v 19 \w I|strong="G2532"\w* \w will|strong="G2532"\w* \w show|strong="G1325"\w* \w wonders|strong="G5059"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w sky|strong="G3772"\w* \w above|strong="G1909"\w*, +\q2 \w and|strong="G2532"\w* \w signs|strong="G4592"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w* \w beneath|strong="G2736"\w*: +\q2 blood, \w and|strong="G2532"\w* \w fire|strong="G4442"\w*, \w and|strong="G2532"\w* billows \w of|strong="G2532"\w* \w smoke|strong="G2586"\w*. +\q1 +\v 20 \w The|strong="G2532"\w* \w sun|strong="G2246"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w turned|strong="G3344"\w* \w into|strong="G1519"\w* \w darkness|strong="G4655"\w*, +\q2 \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w moon|strong="G4582"\w* \w into|strong="G1519"\w* blood, +\q2 \w before|strong="G4250"\w* \w the|strong="G2532"\w* \w great|strong="G3173"\w* \w and|strong="G2532"\w* \w glorious|strong="G2016"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w comes|strong="G2064"\w*. +\q1 +\v 21 \w It|strong="G2532"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w that|strong="G3739"\w* \w whoever|strong="G3739"\w* \w will|strong="G1510"\w* \w call|strong="G1941"\w* \w on|strong="G1941"\w* \w the|strong="G2532"\w* \w name|strong="G3686"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w saved|strong="G4982"\w*.’\x + \xo 2:21 \xt Joel 2:28-32\x* +\p +\v 22 “\w Men|strong="G3778"\w* \w of|strong="G3056"\w* \w Israel|strong="G2475"\w*, hear \w these|strong="G3778"\w* \w words|strong="G3056"\w*! \w Jesus|strong="G2424"\w* \w of|strong="G3056"\w* \w Nazareth|strong="G3480"\w*, \w a|strong="G2532"\w* \w man|strong="G3778"\w* approved \w by|strong="G1223"\w* \w God|strong="G2316"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w by|strong="G1223"\w* \w mighty|strong="G1411"\w* \w works|strong="G1411"\w* \w and|strong="G2532"\w* \w wonders|strong="G5059"\w* \w and|strong="G2532"\w* \w signs|strong="G4592"\w* \w which|strong="G3739"\w* \w God|strong="G2316"\w* \w did|strong="G4160"\w* \w by|strong="G1223"\w* \w him|strong="G3588"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w you|strong="G5210"\w* \w yourselves|strong="G4771"\w* \w know|strong="G1492"\w*, +\v 23 \w him|strong="G3588"\w*, \w being|strong="G2532"\w* \w delivered|strong="G1560"\w* \w up|strong="G2532"\w* \w by|strong="G1223"\w* \w the|strong="G2532"\w* \w determined|strong="G3724"\w* \w counsel|strong="G1012"\w* \w and|strong="G2532"\w* \w foreknowledge|strong="G4268"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w*, \w you|strong="G2532"\w* \w have|strong="G2532"\w* taken \w by|strong="G1223"\w* \w the|strong="G2532"\w* \w hand|strong="G5495"\w* \w of|strong="G1223"\w* lawless \w men|strong="G3778"\w*, \w crucified|strong="G4362"\w* \w and|strong="G2532"\w* killed; +\v 24 \w whom|strong="G3739"\w* \w God|strong="G2316"\w* \w raised|strong="G2316"\w* \w up|strong="G3089"\w*, \w having|strong="G2316"\w* freed \w him|strong="G3588"\w* \w from|strong="G5259"\w* \w the|strong="G3588"\w* \w agony|strong="G5604"\w* \w of|strong="G5259"\w* \w death|strong="G2288"\w*, \w because|strong="G2530"\w* \w it|strong="G3739"\w* \w was|strong="G1510"\w* \w not|strong="G3756"\w* \w possible|strong="G1415"\w* \w that|strong="G3739"\w* \w he|strong="G3739"\w* \w should|strong="G2316"\w* \w be|strong="G1510"\w* \w held|strong="G2902"\w* \w by|strong="G5259"\w* \w it|strong="G3739"\w*. +\v 25 \w For|strong="G1063"\w* \w David|strong="G1138"\w* \w says|strong="G3004"\w* \w concerning|strong="G1519"\w* \w him|strong="G3588"\w*, +\q1 ‘\w I|strong="G1473"\w* \w saw|strong="G4308"\w* \w the|strong="G1519"\w* \w Lord|strong="G2962"\w* \w always|strong="G3956"\w* \w before|strong="G1799"\w* \w my|strong="G3956"\w* face, +\q2 \w for|strong="G1063"\w* \w he|strong="G3754"\w* \w is|strong="G1510"\w* \w on|strong="G1519"\w* \w my|strong="G3956"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w*, \w that|strong="G3754"\w* \w I|strong="G1473"\w* \w should|strong="G3588"\w* \w not|strong="G3361"\w* \w be|strong="G1510"\w* \w moved|strong="G3361"\w*. +\q1 +\v 26 \w Therefore|strong="G1223"\w* \w my|strong="G1473"\w* \w heart|strong="G2588"\w* \w was|strong="G3588"\w* \w glad|strong="G2165"\w*, \w and|strong="G2532"\w* \w my|strong="G1473"\w* \w tongue|strong="G1100"\w* \w rejoiced|strong="G2165"\w*. +\q2 \w Moreover|strong="G1161"\w* \w my|strong="G1473"\w* \w flesh|strong="G4561"\w* \w also|strong="G2532"\w* \w will|strong="G2532"\w* \w dwell|strong="G1909"\w* \w in|strong="G1909"\w* \w hope|strong="G1680"\w*, +\q1 +\v 27 \w because|strong="G3754"\w* \w you|strong="G4771"\w* \w will|strong="G1473"\w* \w not|strong="G3756"\w* \w leave|strong="G1459"\w* \w my|strong="G3708"\w* \w soul|strong="G5590"\w* \w in|strong="G1519"\w* Hades,\f + \fr 2:27 \ft or, Hell\f* +\q2 \w neither|strong="G3761"\w* \w will|strong="G1473"\w* \w you|strong="G4771"\w* \w allow|strong="G1325"\w* \w your|strong="G3708"\w* \w Holy|strong="G3741"\w* \w One|strong="G3588"\w* \w to|strong="G1519"\w* \w see|strong="G3708"\w* \w decay|strong="G1312"\w*. +\q1 +\v 28 \w You|strong="G4771"\w* \w made|strong="G1107"\w* \w known|strong="G1107"\w* \w to|strong="G3326"\w* \w me|strong="G1473"\w* \w the|strong="G3588"\w* \w ways|strong="G3598"\w* \w of|strong="G3598"\w* \w life|strong="G2222"\w*. +\q2 \w You|strong="G4771"\w* \w will|strong="G1473"\w* \w make|strong="G1107"\w* \w me|strong="G1473"\w* \w full|strong="G4137"\w* \w of|strong="G3598"\w* \w gladness|strong="G2167"\w* \w with|strong="G3326"\w* \w your|strong="G3588"\w* \w presence|strong="G4383"\w*.’\x + \xo 2:28 \xt Psalms 16:8-11 \x* +\p +\v 29 “Brothers, \w I|strong="G1473"\w* \w may|strong="G2532"\w* \w tell|strong="G3004"\w* \w you|strong="G5210"\w* \w freely|strong="G3954"\w* \w of|strong="G4012"\w* \w the|strong="G1722"\w* \w patriarch|strong="G3966"\w* \w David|strong="G1138"\w*, \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w both|strong="G2532"\w* \w died|strong="G5053"\w* \w and|strong="G2532"\w* \w was|strong="G1510"\w* \w buried|strong="G2290"\w*, \w and|strong="G2532"\w* \w his|strong="G4012"\w* \w tomb|strong="G3418"\w* \w is|strong="G1510"\w* \w with|strong="G3326"\w* \w us|strong="G3004"\w* \w to|strong="G4314"\w* \w this|strong="G3778"\w* \w day|strong="G2250"\w*. +\v 30 \w Therefore|strong="G3767"\w*, \w being|strong="G5225"\w* \w a|strong="G2532"\w* \w prophet|strong="G4396"\w*, \w and|strong="G2532"\w* \w knowing|strong="G1492"\w* \w that|strong="G3754"\w* \w God|strong="G2316"\w* \w had|strong="G2532"\w* \w sworn|strong="G3660"\w* \w with|strong="G1537"\w* \w an|strong="G2532"\w* \w oath|strong="G3727"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w that|strong="G3754"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w fruit|strong="G2590"\w* \w of|strong="G1537"\w* \w his|strong="G1909"\w* body, \w according|strong="G2316"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* flesh, \w he|strong="G2532"\w* \w would|strong="G2316"\w* \w raise|strong="G2532"\w* \w up|strong="G2532"\w* \w the|strong="G2532"\w* Christ\f + \fr 2:30 \ft “Christ” means “Anointed One”.\f* \w to|strong="G2532"\w* \w sit|strong="G2523"\w* \w on|strong="G1909"\w* \w his|strong="G1909"\w* \w throne|strong="G2362"\w*, +\v 31 \w he|strong="G3754"\w* foreseeing \w this|strong="G3588"\w*, \w spoke|strong="G2980"\w* \w about|strong="G4012"\w* \w the|strong="G1519"\w* resurrection \w of|strong="G4012"\w* \w the|strong="G1519"\w* \w Christ|strong="G5547"\w*, \w that|strong="G3754"\w* \w his|strong="G1519"\w* soul wasn’\w t|strong="G3588"\w* \w left|strong="G1459"\w* \w in|strong="G1519"\w* Hades,\f + \fr 2:31 \ft or, Hell\f* \w and|strong="G4561"\w* \w his|strong="G1519"\w* \w flesh|strong="G4561"\w* didn’\w t|strong="G3588"\w* \w see|strong="G3708"\w* \w decay|strong="G1312"\w*. +\v 32 \w This|strong="G3778"\w* \w Jesus|strong="G2424"\w* \w God|strong="G2316"\w* \w raised|strong="G2316"\w* up, \w to|strong="G2316"\w* \w which|strong="G3739"\w* \w we|strong="G2249"\w* \w all|strong="G3956"\w* \w are|strong="G1510"\w* \w witnesses|strong="G3144"\w*. +\v 33 \w Being|strong="G2532"\w* \w therefore|strong="G3767"\w* \w exalted|strong="G5312"\w* \w by|strong="G3844"\w* \w the|strong="G2532"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* \w of|strong="G4151"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w having|strong="G2532"\w* \w received|strong="G2983"\w* \w from|strong="G3844"\w* \w the|strong="G2532"\w* \w Father|strong="G3962"\w* \w the|strong="G2532"\w* \w promise|strong="G1860"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*, \w he|strong="G2532"\w* \w has|strong="G2316"\w* \w poured|strong="G1632"\w* \w out|strong="G1632"\w* \w this|strong="G3778"\w* \w which|strong="G3739"\w* \w you|strong="G5210"\w* \w now|strong="G2532"\w* see \w and|strong="G2532"\w* hear. +\v 34 \w For|strong="G1063"\w* \w David|strong="G1138"\w* didn’\w t|strong="G3588"\w* \w ascend|strong="G1537"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w heavens|strong="G3772"\w*, \w but|strong="G1161"\w* \w he|strong="G1161"\w* \w says|strong="G3004"\w* \w himself|strong="G1519"\w*, +\q1 ‘\w The|strong="G1519"\w* \w Lord|strong="G2962"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w my|strong="G1473"\w* \w Lord|strong="G2962"\w*, “\w Sit|strong="G2521"\w* \w by|strong="G1537"\w* \w my|strong="G1473"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* +\q2 +\v 35 \w until|strong="G2193"\w* \w I|strong="G2193"\w* \w make|strong="G5087"\w* \w your|strong="G5087"\w* \w enemies|strong="G2190"\w* \w a|strong="G5087"\w* \w footstool|strong="G5286"\w* \w for|strong="G4228"\w* \w your|strong="G5087"\w* \w feet|strong="G4228"\w*.”’\x + \xo 2:35 \xt Psalms 110:1 \x* +\p +\v 36 “\w Let|strong="G1097"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w house|strong="G3624"\w* \w of|strong="G2316"\w* \w Israel|strong="G2474"\w* \w therefore|strong="G3767"\w* \w know|strong="G1097"\w* \w certainly|strong="G2532"\w* \w that|strong="G3754"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w made|strong="G4160"\w* \w him|strong="G3588"\w* \w both|strong="G2532"\w* \w Lord|strong="G2962"\w* \w and|strong="G2532"\w* \w Christ|strong="G5547"\w*, \w this|strong="G3778"\w* \w Jesus|strong="G2424"\w* \w whom|strong="G3739"\w* \w you|strong="G5210"\w* \w crucified|strong="G4717"\w*.” +\p +\v 37 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w they|strong="G2532"\w* heard \w this|strong="G3588"\w*, \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w cut|strong="G2532"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w heart|strong="G2588"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w Peter|strong="G4074"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w rest|strong="G3062"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* apostles, “Brothers, \w what|strong="G5101"\w* \w shall|strong="G2532"\w* \w we|strong="G2532"\w* \w do|strong="G4160"\w*?” +\p +\v 38 \w Peter|strong="G4074"\w* \w said|strong="G5346"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, “\w Repent|strong="G3340"\w* \w and|strong="G2532"\w* \w be|strong="G2532"\w* baptized, \w every|strong="G1538"\w* \w one|strong="G1538"\w* \w of|strong="G4151"\w* \w you|strong="G5210"\w*, \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w name|strong="G3686"\w* \w of|strong="G4151"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w for|strong="G1519"\w* \w the|strong="G2532"\w* forgiveness \w of|strong="G4151"\w* sins, \w and|strong="G2532"\w* \w you|strong="G5210"\w* \w will|strong="G2532"\w* \w receive|strong="G2983"\w* \w the|strong="G2532"\w* \w gift|strong="G1431"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*. +\v 39 \w For|strong="G1063"\w* \w the|strong="G2532"\w* \w promise|strong="G1860"\w* \w is|strong="G1510"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w to|strong="G1519"\w* \w your|strong="G2962"\w* \w children|strong="G5043"\w*, \w and|strong="G2532"\w* \w to|strong="G1519"\w* \w all|strong="G3956"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w far|strong="G3588"\w* off, \w even|strong="G2532"\w* \w as|strong="G3745"\w* \w many|strong="G3745"\w* \w as|strong="G3745"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w* \w will|strong="G2316"\w* \w call|strong="G4341"\w* \w to|strong="G1519"\w* \w himself|strong="G1519"\w*.” +\v 40 \w With|strong="G2532"\w* \w many|strong="G4183"\w* \w other|strong="G2087"\w* \w words|strong="G3056"\w* \w he|strong="G2532"\w* \w testified|strong="G1263"\w* \w and|strong="G2532"\w* \w exhorted|strong="G3870"\w* \w them|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w Save|strong="G4982"\w* \w yourselves|strong="G1438"\w* \w from|strong="G2532"\w* \w this|strong="G3778"\w* \w crooked|strong="G4646"\w* \w generation|strong="G1074"\w*!” +\p +\v 41 \w Then|strong="G3767"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* gladly received \w his|strong="G1722"\w* \w word|strong="G3056"\w* \w were|strong="G3588"\w* baptized. \w There|strong="G2532"\w* \w were|strong="G3588"\w* \w added|strong="G4369"\w* \w that|strong="G3588"\w* \w day|strong="G2250"\w* \w about|strong="G5616"\w* \w three|strong="G5153"\w* \w thousand|strong="G5153"\w* \w souls|strong="G5590"\w*. +\v 42 \w They|strong="G2532"\w* \w continued|strong="G4342"\w* steadfastly \w in|strong="G2532"\w* \w the|strong="G2532"\w* apostles’ \w teaching|strong="G1322"\w* \w and|strong="G2532"\w* \w fellowship|strong="G2842"\w*, \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w breaking|strong="G2800"\w* \w of|strong="G2532"\w* bread, \w and|strong="G2532"\w* \w prayer|strong="G4335"\w*. +\v 43 \w Fear|strong="G5401"\w* \w came|strong="G1096"\w* \w on|strong="G1909"\w* \w every|strong="G3956"\w* \w soul|strong="G5590"\w*, \w and|strong="G2532"\w* \w many|strong="G4183"\w* \w wonders|strong="G5059"\w* \w and|strong="G2532"\w* \w signs|strong="G4592"\w* \w were|strong="G1510"\w* \w done|strong="G1096"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* apostles. +\v 44 \w All|strong="G3956"\w* \w who|strong="G3588"\w* \w believed|strong="G4100"\w* \w were|strong="G1510"\w* \w together|strong="G1909"\w*, \w and|strong="G2532"\w* \w had|strong="G2192"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w in|strong="G1909"\w* \w common|strong="G2839"\w*. +\v 45 \w They|strong="G2532"\w* \w sold|strong="G4097"\w* \w their|strong="G2532"\w* \w possessions|strong="G2933"\w* \w and|strong="G2532"\w* \w goods|strong="G5223"\w*, \w and|strong="G2532"\w* distributed \w them|strong="G3588"\w* \w to|strong="G2532"\w* \w all|strong="G3956"\w*, \w according|strong="G5100"\w* \w as|strong="G2532"\w* \w anyone|strong="G5100"\w* \w had|strong="G2192"\w* \w need|strong="G5532"\w*. +\v 46 \w Day|strong="G2250"\w* \w by|strong="G1722"\w* \w day|strong="G2250"\w*, \w continuing|strong="G4342"\w* steadfastly \w with|strong="G1722"\w* \w one|strong="G3588"\w* \w accord|strong="G3661"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w*, \w and|strong="G2532"\w* \w breaking|strong="G2806"\w* bread \w at|strong="G1722"\w* \w home|strong="G3624"\w*, \w they|strong="G2532"\w* \w took|strong="G2532"\w* \w their|strong="G2532"\w* \w food|strong="G5160"\w* \w with|strong="G1722"\w* gladness \w and|strong="G2532"\w* singleness \w of|strong="G2250"\w* \w heart|strong="G2588"\w*, +\v 47 praising \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w having|strong="G2192"\w* \w favor|strong="G5485"\w* \w with|strong="G4314"\w* \w all|strong="G3650"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w*. \w The|strong="G2532"\w* \w Lord|strong="G2962"\w* \w added|strong="G4369"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* assembly \w day|strong="G2250"\w* \w by|strong="G2596"\w* \w day|strong="G2250"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w being|strong="G2532"\w* \w saved|strong="G4982"\w*. +\c 3 +\p +\v 1 \w Peter|strong="G4074"\w* \w and|strong="G2532"\w* \w John|strong="G2491"\w* \w were|strong="G3588"\w* \w going|strong="G2532"\w* \w up|strong="G1519"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w temple|strong="G2411"\w* \w at|strong="G1909"\w* \w the|strong="G2532"\w* \w hour|strong="G5610"\w* \w of|strong="G2532"\w* \w prayer|strong="G4335"\w*, \w the|strong="G2532"\w* \w ninth|strong="G1766"\w* \w hour|strong="G5610"\w*.\f + \fr 3:1 \ft 3:00 p.m.\f* +\v 2 \w A|strong="G2532"\w* \w certain|strong="G5100"\w* \w man|strong="G5100"\w* \w who|strong="G3739"\w* \w was|strong="G3588"\w* \w lame|strong="G5560"\w* \w from|strong="G1537"\w* \w his|strong="G1519"\w* \w mother|strong="G3384"\w*’s \w womb|strong="G2836"\w* \w was|strong="G3588"\w* \w being|strong="G5225"\w* \w carried|strong="G2532"\w*, \w whom|strong="G3739"\w* \w they|strong="G2532"\w* \w laid|strong="G5087"\w* \w daily|strong="G2250"\w* \w at|strong="G1519"\w* \w the|strong="G2532"\w* \w door|strong="G2374"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w temple|strong="G2413"\w* \w which|strong="G3739"\w* \w is|strong="G3588"\w* \w called|strong="G3004"\w* \w Beautiful|strong="G5611"\w*, \w to|strong="G1519"\w* \w ask|strong="G3004"\w* \w gifts|strong="G1654"\w* \w for|strong="G1519"\w* \w the|strong="G2532"\w* needy \w of|strong="G1537"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w entered|strong="G1531"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w temple|strong="G2413"\w*. +\v 3 \w Seeing|strong="G3708"\w* \w Peter|strong="G4074"\w* \w and|strong="G2532"\w* \w John|strong="G2491"\w* \w about|strong="G3195"\w* \w to|strong="G1519"\w* \w go|strong="G1524"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w temple|strong="G2411"\w*, \w he|strong="G2532"\w* \w asked|strong="G2065"\w* \w to|strong="G1519"\w* \w receive|strong="G2983"\w* \w gifts|strong="G1654"\w* \w for|strong="G1519"\w* \w the|strong="G2532"\w* needy. +\v 4 \w Peter|strong="G4074"\w*, fastening \w his|strong="G1519"\w* eyes \w on|strong="G1519"\w* \w him|strong="G3588"\w*, \w with|strong="G4862"\w* \w John|strong="G2491"\w*, \w said|strong="G3004"\w*, “Look \w at|strong="G1519"\w* \w us|strong="G3004"\w*.” +\v 5 \w He|strong="G1161"\w* listened \w to|strong="G5100"\w* \w them|strong="G3588"\w*, \w expecting|strong="G4328"\w* \w to|strong="G5100"\w* \w receive|strong="G2983"\w* \w something|strong="G5100"\w* \w from|strong="G3844"\w* \w them|strong="G3588"\w*. +\v 6 \w But|strong="G1161"\w* \w Peter|strong="G4074"\w* \w said|strong="G3004"\w*, “\w I|strong="G1473"\w* \w have|strong="G2192"\w* \w no|strong="G3756"\w* silver \w or|strong="G2532"\w* \w gold|strong="G5553"\w*, \w but|strong="G1161"\w* \w what|strong="G3739"\w* \w I|strong="G1473"\w* \w have|strong="G2192"\w*, \w that|strong="G3739"\w* \w I|strong="G1473"\w* \w give|strong="G1325"\w* \w you|strong="G4771"\w*. \w In|strong="G1722"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w of|strong="G2532"\w* \w Nazareth|strong="G3480"\w*, \w get|strong="G2192"\w* \w up|strong="G1325"\w* \w and|strong="G2532"\w* \w walk|strong="G4043"\w*!” +\v 7 \w He|strong="G2532"\w* \w took|strong="G2532"\w* \w him|strong="G3588"\w* \w by|strong="G2532"\w* \w the|strong="G2532"\w* \w right|strong="G1188"\w* \w hand|strong="G5495"\w* \w and|strong="G2532"\w* \w raised|strong="G1453"\w* \w him|strong="G3588"\w* \w up|strong="G1453"\w*. \w Immediately|strong="G3916"\w* \w his|strong="G2532"\w* feet \w and|strong="G2532"\w* \w his|strong="G2532"\w* \w ankle|strong="G2532"\w* \w bones|strong="G4974"\w* \w received|strong="G4974"\w* \w strength|strong="G4732"\w*. +\v 8 \w Leaping|strong="G2476"\w* \w up|strong="G1519"\w*, \w he|strong="G2532"\w* \w stood|strong="G2476"\w* \w and|strong="G2532"\w* began \w to|strong="G1519"\w* \w walk|strong="G4043"\w*. \w He|strong="G2532"\w* \w entered|strong="G1525"\w* \w with|strong="G4862"\w* \w them|strong="G3588"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w temple|strong="G2411"\w*, \w walking|strong="G4043"\w*, \w leaping|strong="G2476"\w*, \w and|strong="G2532"\w* praising \w God|strong="G2316"\w*. +\v 9 \w All|strong="G3956"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w* \w saw|strong="G3708"\w* \w him|strong="G3588"\w* \w walking|strong="G4043"\w* \w and|strong="G2532"\w* praising \w God|strong="G2316"\w*. +\v 10 \w They|strong="G2532"\w* \w recognized|strong="G1921"\w* \w him|strong="G3588"\w*, \w that|strong="G3754"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* used \w to|strong="G4314"\w* \w sit|strong="G2521"\w* begging \w for|strong="G3754"\w* \w gifts|strong="G1654"\w* \w for|strong="G3754"\w* \w the|strong="G2532"\w* needy \w at|strong="G1909"\w* \w the|strong="G2532"\w* \w Beautiful|strong="G5611"\w* \w Gate|strong="G4439"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w temple|strong="G2413"\w*. \w They|strong="G2532"\w* \w were|strong="G1510"\w* \w filled|strong="G4130"\w* \w with|strong="G4314"\w* \w wonder|strong="G2285"\w* \w and|strong="G2532"\w* \w amazement|strong="G1611"\w* \w at|strong="G1909"\w* \w what|strong="G3588"\w* \w had|strong="G2532"\w* \w happened|strong="G4819"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*. +\v 11 \w As|strong="G1161"\w* \w the|strong="G2532"\w* lame \w man|strong="G3956"\w* \w who|strong="G3588"\w* \w was|strong="G3588"\w* healed \w held|strong="G2902"\w* \w on|strong="G1909"\w* \w to|strong="G4314"\w* \w Peter|strong="G4074"\w* \w and|strong="G2532"\w* \w John|strong="G2491"\w*, \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w* \w ran|strong="G4936"\w* \w together|strong="G1909"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w* \w in|strong="G1909"\w* \w the|strong="G2532"\w* \w porch|strong="G4745"\w* \w that|strong="G3588"\w* \w is|strong="G3588"\w* \w called|strong="G2564"\w* \w Solomon|strong="G4672"\w*’s, greatly \w wondering|strong="G1569"\w*. +\p +\v 12 \w When|strong="G1161"\w* \w Peter|strong="G4074"\w* \w saw|strong="G3708"\w* \w it|strong="G1161"\w*, \w he|strong="G1161"\w* responded \w to|strong="G4314"\w* \w the|strong="G1161"\w* \w people|strong="G2992"\w*, “\w You|strong="G3708"\w* \w men|strong="G3778"\w* \w of|strong="G1411"\w* \w Israel|strong="G2475"\w*, \w why|strong="G5101"\w* \w do|strong="G4160"\w* \w you|strong="G3708"\w* \w marvel|strong="G2296"\w* \w at|strong="G1909"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w*? \w Why|strong="G5101"\w* \w do|strong="G4160"\w* \w you|strong="G3708"\w* fasten \w your|strong="G3708"\w* eyes \w on|strong="G1909"\w* \w us|strong="G4160"\w*, \w as|strong="G5613"\w* \w though|strong="G5613"\w* \w by|strong="G1909"\w* \w our|strong="G4314"\w* \w own|strong="G2398"\w* \w power|strong="G1411"\w* \w or|strong="G2228"\w* \w godliness|strong="G2150"\w* \w we|strong="G2249"\w* \w had|strong="G3588"\w* \w made|strong="G4160"\w* \w him|strong="G3588"\w* \w walk|strong="G4043"\w*? +\v 13 \w The|strong="G2532"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* Abraham, \w Isaac|strong="G2464"\w*, \w and|strong="G2532"\w* \w Jacob|strong="G2384"\w*, \w the|strong="G2532"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* \w our|strong="G2316"\w* \w fathers|strong="G3962"\w*, \w has|strong="G2316"\w* \w glorified|strong="G1392"\w* \w his|strong="G2532"\w* \w Servant|strong="G3816"\w* \w Jesus|strong="G2424"\w*, \w whom|strong="G3739"\w* \w you|strong="G5210"\w* \w delivered|strong="G3860"\w* \w up|strong="G3860"\w* \w and|strong="G2532"\w* denied \w in|strong="G2596"\w* \w the|strong="G2532"\w* \w presence|strong="G4383"\w* \w of|strong="G2316"\w* \w Pilate|strong="G4091"\w*, \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2424"\w* \w determined|strong="G2919"\w* \w to|strong="G2532"\w* release \w him|strong="G3588"\w*. +\v 14 \w But|strong="G1161"\w* \w you|strong="G5210"\w* denied \w the|strong="G2532"\w* Holy \w and|strong="G2532"\w* \w Righteous|strong="G1342"\w* \w One|strong="G3588"\w* \w and|strong="G2532"\w* asked \w for|strong="G1161"\w* \w a|strong="G2532"\w* \w murderer|strong="G5406"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w granted|strong="G5483"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*, +\v 15 \w and|strong="G1161"\w* killed \w the|strong="G1537"\w* Prince \w of|strong="G1537"\w* \w life|strong="G2222"\w*, \w whom|strong="G3739"\w* \w God|strong="G2316"\w* \w raised|strong="G1453"\w* \w from|strong="G1537"\w* \w the|strong="G1537"\w* \w dead|strong="G3498"\w*, \w to|strong="G1161"\w* \w which|strong="G3739"\w* \w we|strong="G2249"\w* \w are|strong="G1510"\w* \w witnesses|strong="G3144"\w*. +\v 16 \w By|strong="G1223"\w* \w faith|strong="G4102"\w* \w in|strong="G1909"\w* \w his|strong="G3956"\w* \w name|strong="G3686"\w*, \w his|strong="G3956"\w* \w name|strong="G3686"\w* \w has|strong="G3739"\w* \w made|strong="G3956"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w strong|strong="G2532"\w*, \w whom|strong="G3739"\w* \w you|strong="G5210"\w* \w see|strong="G1492"\w* \w and|strong="G2532"\w* \w know|strong="G1492"\w*. Yes, \w the|strong="G2532"\w* \w faith|strong="G4102"\w* \w which|strong="G3739"\w* \w is|strong="G3588"\w* \w through|strong="G1223"\w* \w him|strong="G3588"\w* \w has|strong="G3739"\w* \w given|strong="G1325"\w* \w him|strong="G3588"\w* \w this|strong="G3778"\w* \w perfect|strong="G3778"\w* \w soundness|strong="G3647"\w* \w in|strong="G1909"\w* \w the|strong="G2532"\w* \w presence|strong="G1223"\w* \w of|strong="G1223"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w*. +\p +\v 17 “\w Now|strong="G3568"\w*, brothers,\f + \fr 3:17 \ft The word for “brothers” here may be also correctly translated “brothers and sisters” or “siblings.”\f* \w I|strong="G2532"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w did|strong="G2532"\w* \w this|strong="G3588"\w* \w in|strong="G2596"\w* ignorance, \w as|strong="G5618"\w* \w did|strong="G2532"\w* \w also|strong="G2532"\w* \w your|strong="G2532"\w* rulers. +\v 18 \w But|strong="G1161"\w* \w the|strong="G3956"\w* \w things|strong="G3956"\w* \w which|strong="G3739"\w* \w God|strong="G2316"\w* \w announced|strong="G4293"\w* \w by|strong="G1223"\w* \w the|strong="G3956"\w* \w mouth|strong="G4750"\w* \w of|strong="G1223"\w* \w all|strong="G3956"\w* \w his|strong="G3956"\w* \w prophets|strong="G4396"\w*, \w that|strong="G3739"\w* \w Christ|strong="G5547"\w* \w should|strong="G2316"\w* \w suffer|strong="G3958"\w*, \w he|strong="G1161"\w* \w thus|strong="G3779"\w* \w fulfilled|strong="G4137"\w*. +\p +\v 19 “\w Repent|strong="G3340"\w* \w therefore|strong="G3767"\w*, \w and|strong="G2532"\w* \w turn|strong="G1994"\w* \w again|strong="G1994"\w*, \w that|strong="G3588"\w* \w your|strong="G2962"\w* sins \w may|strong="G2532"\w* \w be|strong="G2532"\w* blotted \w out|strong="G2532"\w*, \w so|strong="G3767"\w* \w that|strong="G3588"\w* \w there|strong="G2532"\w* \w may|strong="G2532"\w* \w come|strong="G2064"\w* \w times|strong="G2540"\w* \w of|strong="G2532"\w* refreshing \w from|strong="G2064"\w* \w the|strong="G2532"\w* \w presence|strong="G4383"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, +\v 20 \w and|strong="G2532"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w may|strong="G2532"\w* send \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*, \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w ordained|strong="G2962"\w* \w for|strong="G2532"\w* \w you|strong="G5210"\w* \w before|strong="G3588"\w*, +\v 21 \w whom|strong="G3739"\w* \w heaven|strong="G3772"\w* \w must|strong="G1163"\w* \w receive|strong="G1209"\w* until \w the|strong="G3956"\w* \w times|strong="G5550"\w* \w of|strong="G1223"\w* restoration \w of|strong="G1223"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w which|strong="G3739"\w* \w God|strong="G2316"\w* \w spoke|strong="G2980"\w* \w long|strong="G5550"\w* \w ago|strong="G5550"\w* \w by|strong="G1223"\w* \w the|strong="G3956"\w* \w mouth|strong="G4750"\w* \w of|strong="G1223"\w* \w his|strong="G3956"\w* holy \w prophets|strong="G4396"\w*. +\v 22 \w For|strong="G3754"\w* \w Moses|strong="G3475"\w* \w indeed|strong="G3303"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w the|strong="G3956"\w* fathers, ‘\w The|strong="G3956"\w* \w Lord|strong="G2962"\w* \w God|strong="G2316"\w* \w will|strong="G2316"\w* \w raise|strong="G2316"\w* \w up|strong="G1537"\w* \w a|strong="G5613"\w* \w prophet|strong="G4396"\w* \w for|strong="G3754"\w* \w you|strong="G5210"\w* \w from|strong="G1537"\w* \w among|strong="G1537"\w* \w your|strong="G2962"\w* brothers, \w like|strong="G5613"\w* \w me|strong="G1473"\w*. \w You|strong="G5210"\w* \w shall|strong="G2316"\w* listen \w to|strong="G4314"\w* \w him|strong="G3588"\w* \w in|strong="G2596"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w whatever|strong="G3745"\w* \w he|strong="G3754"\w* \w says|strong="G3004"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*. +\v 23 \w It|strong="G1161"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w that|strong="G3588"\w* \w every|strong="G3956"\w* \w soul|strong="G5590"\w* \w that|strong="G3588"\w* \w will|strong="G1510"\w* \w not|strong="G3361"\w* listen \w to|strong="G1161"\w* \w that|strong="G3588"\w* \w prophet|strong="G4396"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w utterly|strong="G1842"\w* \w destroyed|strong="G1842"\w* \w from|strong="G1537"\w* \w among|strong="G1537"\w* \w the|strong="G3956"\w* \w people|strong="G2992"\w*.’\x + \xo 3:23 \xt Deuteronomy 18:15,18-19 \x* +\v 24 \w Yes|strong="G1161"\w*, \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w prophets|strong="G4396"\w* \w from|strong="G2532"\w* \w Samuel|strong="G4545"\w* \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* followed \w after|strong="G1161"\w*, \w as|strong="G3745"\w* \w many|strong="G3745"\w* \w as|strong="G3745"\w* \w have|strong="G2532"\w* \w spoken|strong="G2980"\w*, \w also|strong="G2532"\w* \w told|strong="G2980"\w* \w of|strong="G2250"\w* \w these|strong="G3778"\w* \w days|strong="G2250"\w*. +\v 25 \w You|strong="G5210"\w* \w are|strong="G1510"\w* \w the|strong="G1722"\w* \w children|strong="G5207"\w* \w of|strong="G5207"\w* \w the|strong="G1722"\w* \w prophets|strong="G4396"\w*, \w and|strong="G2532"\w* \w of|strong="G5207"\w* \w the|strong="G1722"\w* \w covenant|strong="G1242"\w* \w which|strong="G3739"\w* \w God|strong="G2316"\w* \w made|strong="G1303"\w* \w with|strong="G1722"\w* \w our|strong="G2316"\w* \w fathers|strong="G3962"\w*, \w saying|strong="G3004"\w* \w to|strong="G4314"\w* Abraham, ‘\w All|strong="G3956"\w* \w the|strong="G1722"\w* \w families|strong="G3965"\w* \w of|strong="G5207"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w blessed|strong="G1757"\w* \w through|strong="G1722"\w* \w your|strong="G2532"\w* offspring.’\f + \fr 3:25 \ft or, seed\f*\x + \xo 3:25 \xt Genesis 22:18; 26:4\x* +\v 26 \w God|strong="G2316"\w*, \w having|strong="G2316"\w* \w raised|strong="G2316"\w* \w up|strong="G1722"\w* \w his|strong="G1722"\w* \w servant|strong="G3816"\w* Jesus, \w sent|strong="G2316"\w* \w him|strong="G3588"\w* \w to|strong="G1722"\w* \w you|strong="G5210"\w* \w first|strong="G4413"\w* \w to|strong="G1722"\w* \w bless|strong="G2127"\w* \w you|strong="G5210"\w*, \w in|strong="G1722"\w* \w turning|strong="G1722"\w* away \w every|strong="G1538"\w* \w one|strong="G1538"\w* \w of|strong="G2316"\w* \w you|strong="G5210"\w* \w from|strong="G3588"\w* \w your|strong="G1722"\w* \w wickedness|strong="G4189"\w*.” +\c 4 +\p +\v 1 \w As|strong="G1161"\w* \w they|strong="G2532"\w* \w spoke|strong="G2980"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w*, \w the|strong="G2532"\w* \w priests|strong="G2409"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w captain|strong="G4755"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w temple|strong="G2413"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Sadducees|strong="G4523"\w* \w came|strong="G2532"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, +\v 2 \w being|strong="G2532"\w* upset \w because|strong="G1223"\w* \w they|strong="G2532"\w* \w taught|strong="G1321"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w* \w and|strong="G2532"\w* \w proclaimed|strong="G2605"\w* \w in|strong="G1722"\w* \w Jesus|strong="G2424"\w* \w the|strong="G1722"\w* resurrection \w from|strong="G1537"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w*. +\v 3 \w They|strong="G2532"\w* \w laid|strong="G5087"\w* \w hands|strong="G5495"\w* \w on|strong="G1519"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w put|strong="G5087"\w* \w them|strong="G3588"\w* \w in|strong="G1519"\w* custody \w until|strong="G1519"\w* \w the|strong="G2532"\w* \w next|strong="G1519"\w* \w day|strong="G3588"\w*, \w for|strong="G1063"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w now|strong="G2532"\w* \w evening|strong="G2073"\w*. +\v 4 \w But|strong="G1161"\w* \w many|strong="G4183"\w* \w of|strong="G3056"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* heard \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w believed|strong="G4100"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* number \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w men|strong="G3588"\w* \w came|strong="G1096"\w* \w to|strong="G2532"\w* \w be|strong="G1096"\w* \w about|strong="G5613"\w* \w five|strong="G4002"\w* \w thousand|strong="G5505"\w*. +\p +\v 5 \w In|strong="G1722"\w* \w the|strong="G1722"\w* morning, \w their|strong="G2532"\w* rulers, \w elders|strong="G4245"\w*, \w and|strong="G2532"\w* \w scribes|strong="G1122"\w* \w were|strong="G3588"\w* \w gathered|strong="G4863"\w* \w together|strong="G4863"\w* \w in|strong="G1722"\w* \w Jerusalem|strong="G2419"\w*. +\v 6 Annas \w the|strong="G2532"\w* \w high|strong="G2532"\w* priest \w was|strong="G1510"\w* \w there|strong="G2532"\w*, \w with|strong="G1537"\w* \w Caiaphas|strong="G2533"\w*, \w John|strong="G2491"\w*, Alexander, \w and|strong="G2532"\w* \w as|strong="G3745"\w* \w many|strong="G3745"\w* \w as|strong="G3745"\w* \w were|strong="G1510"\w* relatives \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w high|strong="G2532"\w* priest. +\v 7 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w stood|strong="G2476"\w* \w Peter|strong="G4160"\w* \w and|strong="G2532"\w* \w John|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w middle|strong="G3319"\w* \w of|strong="G2532"\w* \w them|strong="G3588"\w*, \w they|strong="G2532"\w* \w inquired|strong="G4441"\w*, “\w By|strong="G1722"\w* \w what|strong="G4169"\w* \w power|strong="G1411"\w*, \w or|strong="G2228"\w* \w in|strong="G1722"\w* \w what|strong="G4169"\w* \w name|strong="G3686"\w*, \w have|strong="G2532"\w* \w you|strong="G5210"\w* \w done|strong="G4160"\w* \w this|strong="G3778"\w*?” +\p +\v 8 \w Then|strong="G2532"\w* \w Peter|strong="G4074"\w*, \w filled|strong="G4130"\w* \w with|strong="G4314"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*, \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, “\w You|strong="G3004"\w* rulers \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w* \w and|strong="G2532"\w* \w elders|strong="G4245"\w* \w of|strong="G4151"\w* Israel, +\v 9 \w if|strong="G1487"\w* \w we|strong="G2249"\w* \w are|strong="G3778"\w* examined \w today|strong="G4594"\w* \w concerning|strong="G1909"\w* \w a|strong="G1722"\w* \w good|strong="G5101"\w* deed \w done|strong="G2108"\w* \w to|strong="G1909"\w* \w a|strong="G1722"\w* crippled \w man|strong="G3778"\w*, \w by|strong="G1722"\w* \w what|strong="G5101"\w* \w means|strong="G5101"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w has|strong="G5101"\w* been \w healed|strong="G4982"\w*, +\v 10 \w may|strong="G2532"\w* \w it|strong="G2532"\w* \w be|strong="G1510"\w* \w known|strong="G1110"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w* \w of|strong="G1537"\w* \w Israel|strong="G2474"\w*, \w that|strong="G3754"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G1537"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w of|strong="G1537"\w* \w Nazareth|strong="G3480"\w*, \w whom|strong="G3739"\w* \w you|strong="G5210"\w* \w crucified|strong="G4717"\w*, \w whom|strong="G3739"\w* \w God|strong="G2316"\w* \w raised|strong="G1453"\w* \w from|strong="G1537"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w*, \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w stands|strong="G3936"\w* \w here|strong="G3936"\w* \w before|strong="G1799"\w* \w you|strong="G5210"\w* \w whole|strong="G3956"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*. +\v 11 \w He|strong="G3778"\w* \w is|strong="G1510"\w* ‘\w the|strong="G1519"\w* \w stone|strong="G3037"\w* \w which|strong="G3588"\w* \w was|strong="G1510"\w* regarded \w as|strong="G1519"\w* worthless \w by|strong="G5259"\w* \w you|strong="G5210"\w*, \w the|strong="G1519"\w* \w builders|strong="G3618"\w*, \w which|strong="G3588"\w* \w has|strong="G1096"\w* \w become|strong="G1096"\w* \w the|strong="G1519"\w* \w head|strong="G2776"\w* \w of|strong="G5259"\w* \w the|strong="G1519"\w* \w corner|strong="G1137"\w*.’\x + \xo 4:11 \xt Psalms 118:22\x* +\v 12 \w There|strong="G2532"\w* \w is|strong="G1510"\w* \w salvation|strong="G4991"\w* \w in|strong="G1722"\w* \w no|strong="G3756"\w* \w one|strong="G3762"\w* \w else|strong="G2087"\w*, \w for|strong="G1063"\w* \w there|strong="G2532"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* \w other|strong="G2087"\w* \w name|strong="G3686"\w* \w under|strong="G5259"\w* \w heaven|strong="G3772"\w* \w that|strong="G3739"\w* \w is|strong="G1510"\w* \w given|strong="G1325"\w* \w among|strong="G1722"\w* \w men|strong="G3588"\w*, \w by|strong="G1722"\w* \w which|strong="G3739"\w* \w we|strong="G2249"\w* \w must|strong="G1163"\w* \w be|strong="G1510"\w* \w saved|strong="G4982"\w*!” +\p +\v 13 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w they|strong="G2532"\w* \w saw|strong="G2334"\w* \w the|strong="G2532"\w* \w boldness|strong="G3954"\w* \w of|strong="G2532"\w* \w Peter|strong="G4074"\w* \w and|strong="G2532"\w* \w John|strong="G2491"\w*, \w and|strong="G2532"\w* \w had|strong="G2424"\w* \w perceived|strong="G1921"\w* \w that|strong="G3754"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w unlearned|strong="G2399"\w* \w and|strong="G2532"\w* \w ignorant|strong="G2399"\w* \w men|strong="G3588"\w*, \w they|strong="G2532"\w* \w marveled|strong="G2296"\w*. \w They|strong="G2532"\w* \w recognized|strong="G1921"\w* \w that|strong="G3754"\w* \w they|strong="G2532"\w* \w had|strong="G2424"\w* \w been|strong="G1510"\w* \w with|strong="G4862"\w* \w Jesus|strong="G2424"\w*. +\v 14 \w Seeing|strong="G2192"\w* \w the|strong="G3588"\w* \w man|strong="G3762"\w* \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w healed|strong="G2323"\w* \w standing|strong="G2476"\w* \w with|strong="G4862"\w* \w them|strong="G3588"\w*, \w they|strong="G3588"\w* \w could|strong="G2192"\w* say \w nothing|strong="G3762"\w* \w against|strong="G3762"\w* \w it|strong="G3588"\w*. +\v 15 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w they|strong="G1161"\w* \w had|strong="G3588"\w* \w commanded|strong="G2753"\w* \w them|strong="G3588"\w* \w to|strong="G4314"\w* go aside \w out|strong="G1854"\w* \w of|strong="G3588"\w* \w the|strong="G1161"\w* \w council|strong="G4892"\w*, \w they|strong="G1161"\w* \w conferred|strong="G4820"\w* \w among|strong="G4314"\w* \w themselves|strong="G1438"\w*, +\v 16 \w saying|strong="G3004"\w*, “\w What|strong="G5101"\w* \w shall|strong="G2532"\w* \w we|strong="G3754"\w* \w do|strong="G4160"\w* \w to|strong="G2532"\w* \w these|strong="G3778"\w* \w men|strong="G3956"\w*? \w Because|strong="G3754"\w* \w indeed|strong="G2532"\w* \w a|strong="G1096"\w* \w notable|strong="G1110"\w* \w miracle|strong="G4592"\w* \w has|strong="G5101"\w* \w been|strong="G1096"\w* \w done|strong="G4160"\w* \w through|strong="G1223"\w* \w them|strong="G3588"\w*, \w as|strong="G2532"\w* \w can|strong="G1410"\w* \w be|strong="G1096"\w* plainly seen \w by|strong="G1223"\w* \w all|strong="G3956"\w* \w who|strong="G5101"\w* \w dwell|strong="G2730"\w* \w in|strong="G2532"\w* \w Jerusalem|strong="G2419"\w*, \w and|strong="G2532"\w* \w we|strong="G3754"\w* \w can|strong="G1410"\w*’\w t|strong="G3588"\w* \w deny|strong="G3588"\w* \w it|strong="G2532"\w*. +\v 17 \w But|strong="G3361"\w* \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w this|strong="G3778"\w* spreads \w no|strong="G3361"\w* \w further|strong="G4119"\w* \w among|strong="G1519"\w* \w the|strong="G1519"\w* \w people|strong="G2992"\w*, \w let|strong="G2443"\w*’s threaten \w them|strong="G3588"\w*, \w that|strong="G2443"\w* \w from|strong="G3588"\w* now \w on|strong="G1909"\w* \w they|strong="G3588"\w* don’\w t|strong="G3588"\w* \w speak|strong="G2980"\w* \w to|strong="G1519"\w* \w anyone|strong="G3367"\w* \w in|strong="G1519"\w* \w this|strong="G3778"\w* \w name|strong="G3686"\w*.” +\v 18 \w They|strong="G2532"\w* \w called|strong="G2564"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w commanded|strong="G3853"\w* \w them|strong="G3588"\w* \w not|strong="G3361"\w* \w to|strong="G2532"\w* \w speak|strong="G5350"\w* \w at|strong="G1909"\w* \w all|strong="G2532"\w* \w nor|strong="G3366"\w* \w teach|strong="G1321"\w* \w in|strong="G1909"\w* \w the|strong="G2532"\w* \w name|strong="G3686"\w* \w of|strong="G2532"\w* \w Jesus|strong="G2424"\w*. +\p +\v 19 \w But|strong="G1161"\w* \w Peter|strong="G4074"\w* \w and|strong="G2532"\w* \w John|strong="G2491"\w* \w answered|strong="G3004"\w* \w them|strong="G3588"\w*, “\w Whether|strong="G1487"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w right|strong="G1342"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w sight|strong="G1799"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w to|strong="G4314"\w* listen \w to|strong="G4314"\w* \w you|strong="G5210"\w* \w rather|strong="G3123"\w* \w than|strong="G2228"\w* \w to|strong="G4314"\w* \w God|strong="G2316"\w*, \w judge|strong="G2919"\w* \w for|strong="G4314"\w* \w yourselves|strong="G1438"\w*, +\v 20 \w for|strong="G1063"\w* \w we|strong="G2249"\w* \w can|strong="G1410"\w*’t help \w telling|strong="G2980"\w* \w the|strong="G2532"\w* \w things|strong="G3739"\w* \w which|strong="G3739"\w* \w we|strong="G2249"\w* \w saw|strong="G3708"\w* \w and|strong="G2532"\w* heard.” +\p +\v 21 \w When|strong="G1161"\w* \w they|strong="G1161"\w* \w had|strong="G2316"\w* \w further|strong="G1909"\w* \w threatened|strong="G4324"\w* \w them|strong="G3588"\w*, \w they|strong="G1161"\w* \w let|strong="G1096"\w* \w them|strong="G3588"\w* go, \w finding|strong="G2147"\w* \w no|strong="G3367"\w* \w way|strong="G1223"\w* \w to|strong="G1909"\w* \w punish|strong="G2849"\w* \w them|strong="G3588"\w*, \w because|strong="G3754"\w* \w of|strong="G1223"\w* \w the|strong="G3956"\w* \w people|strong="G2992"\w*; \w for|strong="G3754"\w* \w everyone|strong="G3956"\w* \w glorified|strong="G1392"\w* \w God|strong="G2316"\w* \w for|strong="G3754"\w* \w that|strong="G3754"\w* \w which|strong="G3588"\w* \w was|strong="G1096"\w* \w done|strong="G1096"\w*. +\v 22 \w For|strong="G1063"\w* \w the|strong="G1909"\w* \w man|strong="G3778"\w* \w on|strong="G1909"\w* \w whom|strong="G3739"\w* \w this|strong="G3778"\w* \w miracle|strong="G4592"\w* \w of|strong="G1909"\w* \w healing|strong="G2392"\w* \w was|strong="G1510"\w* \w performed|strong="G1096"\w* \w was|strong="G1510"\w* \w more|strong="G4119"\w* \w than|strong="G4183"\w* \w forty|strong="G5062"\w* \w years|strong="G2094"\w* \w old|strong="G2094"\w*. +\p +\v 23 \w Being|strong="G2532"\w* \w let|strong="G1161"\w* \w go|strong="G2064"\w*, \w they|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w their|strong="G1438"\w* \w own|strong="G2398"\w* \w company|strong="G2398"\w* \w and|strong="G2532"\w* \w reported|strong="G3004"\w* \w all|strong="G3745"\w* \w that|strong="G3588"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w* \w had|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*. +\v 24 \w When|strong="G1161"\w* \w they|strong="G2532"\w* heard \w it|strong="G2532"\w*, \w they|strong="G2532"\w* \w lifted|strong="G2532"\w* \w up|strong="G2532"\w* \w their|strong="G2532"\w* \w voice|strong="G5456"\w* \w to|strong="G4314"\w* \w God|strong="G2316"\w* \w with|strong="G1722"\w* \w one|strong="G3956"\w* \w accord|strong="G3661"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “O \w Lord|strong="G1203"\w*, \w you|strong="G4771"\w* \w are|strong="G3588"\w* \w God|strong="G2316"\w*, \w who|strong="G3588"\w* \w made|strong="G4160"\w* \w the|strong="G1722"\w* \w heaven|strong="G3772"\w*, \w the|strong="G1722"\w* \w earth|strong="G1093"\w*, \w the|strong="G1722"\w* \w sea|strong="G2281"\w*, \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w that|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w them|strong="G3588"\w*; +\v 25 \w who|strong="G3588"\w* \w by|strong="G1223"\w* \w the|strong="G2532"\w* \w mouth|strong="G4750"\w* \w of|strong="G4151"\w* \w your|strong="G1223"\w* \w servant|strong="G3816"\w* \w David|strong="G1138"\w*, \w said|strong="G3004"\w*, +\q1 ‘\w Why|strong="G1223"\w* \w do|strong="G2532"\w* \w the|strong="G2532"\w* \w nations|strong="G1484"\w* \w rage|strong="G5433"\w*, +\q2 \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w peoples|strong="G2992"\w* \w plot|strong="G3191"\w* \w a|strong="G2532"\w* \w vain|strong="G2756"\w* \w thing|strong="G3004"\w*? +\q1 +\v 26 \w The|strong="G2532"\w* \w kings|strong="G3588"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w take|strong="G2532"\w* \w a|strong="G2532"\w* \w stand|strong="G3936"\w*, +\q2 \w and|strong="G2532"\w* \w the|strong="G2532"\w* rulers plot \w together|strong="G4863"\w*, +\q2 \w against|strong="G2596"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w and|strong="G2532"\w* \w against|strong="G2596"\w* \w his|strong="G1909"\w* \w Christ|strong="G5547"\w*.’\f + \fr 4:26 \ft Christ (Greek) and Messiah (Hebrew) both mean Anointed One.\f*\x + \xo 4:26 \xt Psalms 2:1-2\x* +\p +\v 27 “\w For|strong="G1063"\w* \w truly|strong="G1909"\w*,\f + \fr 4:27 \ft nu adds “in this city,”\f* \w both|strong="G2532"\w* \w Herod|strong="G2264"\w* \w and|strong="G2532"\w* \w Pontius|strong="G4194"\w* \w Pilate|strong="G4091"\w*, \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w* \w of|strong="G2532"\w* \w Israel|strong="G2474"\w*, \w were|strong="G3588"\w* \w gathered|strong="G4863"\w* \w together|strong="G4863"\w* \w against|strong="G1909"\w* \w your|strong="G2532"\w* holy \w servant|strong="G3816"\w* \w Jesus|strong="G2424"\w*, \w whom|strong="G3739"\w* \w you|strong="G4771"\w* \w anointed|strong="G5548"\w*, +\v 28 \w to|strong="G2532"\w* \w do|strong="G4160"\w* \w whatever|strong="G3745"\w* \w your|strong="G2532"\w* \w hand|strong="G5495"\w* \w and|strong="G2532"\w* \w your|strong="G2532"\w* \w counsel|strong="G1012"\w* foreordained \w to|strong="G2532"\w* \w happen|strong="G1096"\w*. +\v 29 \w Now|strong="G3568"\w*, \w Lord|strong="G2962"\w*, look \w at|strong="G1909"\w* \w their|strong="G2532"\w* threats, \w and|strong="G2532"\w* \w grant|strong="G1325"\w* \w to|strong="G2532"\w* \w your|strong="G2962"\w* \w servants|strong="G1401"\w* \w to|strong="G2532"\w* \w speak|strong="G2980"\w* \w your|strong="G2962"\w* \w word|strong="G3056"\w* \w with|strong="G3326"\w* \w all|strong="G3956"\w* \w boldness|strong="G3954"\w*, +\v 30 \w while|strong="G1722"\w* \w you|strong="G4771"\w* \w stretch|strong="G1614"\w* \w out|strong="G2532"\w* \w your|strong="G1223"\w* \w hand|strong="G5495"\w* \w to|strong="G1519"\w* \w heal|strong="G2392"\w*; \w and|strong="G2532"\w* \w that|strong="G3588"\w* \w signs|strong="G4592"\w* \w and|strong="G2532"\w* \w wonders|strong="G5059"\w* \w may|strong="G2532"\w* \w be|strong="G1096"\w* \w done|strong="G1096"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G1223"\w* \w your|strong="G1223"\w* holy \w Servant|strong="G3816"\w* \w Jesus|strong="G2424"\w*.” +\p +\v 31 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w prayed|strong="G1189"\w*, \w the|strong="G1722"\w* \w place|strong="G5117"\w* \w was|strong="G1510"\w* \w shaken|strong="G4531"\w* \w where|strong="G3739"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w gathered|strong="G4863"\w* \w together|strong="G4863"\w*. \w They|strong="G2532"\w* \w were|strong="G1510"\w* \w all|strong="G2532"\w* \w filled|strong="G4130"\w* \w with|strong="G3326"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w spoke|strong="G2980"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w* \w with|strong="G3326"\w* \w boldness|strong="G3954"\w*. +\p +\v 32 \w The|strong="G2532"\w* \w multitude|strong="G4128"\w* \w of|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w believed|strong="G4100"\w* \w were|strong="G1510"\w* \w of|strong="G2532"\w* \w one|strong="G1520"\w* \w heart|strong="G2588"\w* \w and|strong="G2532"\w* \w soul|strong="G5590"\w*. \w Not|strong="G3761"\w* \w one|strong="G1520"\w* \w of|strong="G2532"\w* \w them|strong="G3588"\w* \w claimed|strong="G3004"\w* \w that|strong="G3588"\w* \w anything|strong="G5100"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w things|strong="G3956"\w* \w which|strong="G3588"\w* \w he|strong="G2532"\w* possessed \w was|strong="G1510"\w* \w his|strong="G3956"\w* \w own|strong="G2398"\w*, \w but|strong="G1161"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w in|strong="G2532"\w* \w common|strong="G2839"\w*. +\v 33 \w With|strong="G2532"\w* \w great|strong="G3173"\w* \w power|strong="G1411"\w*, \w the|strong="G2532"\w* apostles \w gave|strong="G2532"\w* \w their|strong="G1438"\w* \w testimony|strong="G3142"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* resurrection \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*. \w Great|strong="G3173"\w* \w grace|strong="G5485"\w* \w was|strong="G1510"\w* \w on|strong="G1909"\w* \w them|strong="G3588"\w* \w all|strong="G3956"\w*. +\v 34 \w For|strong="G1063"\w* \w neither|strong="G3761"\w* \w was|strong="G1510"\w* \w there|strong="G1063"\w* \w among|strong="G1722"\w* \w them|strong="G3588"\w* \w any|strong="G5100"\w* \w who|strong="G3588"\w* \w lacked|strong="G1729"\w*, \w for|strong="G1063"\w* \w as|strong="G3745"\w* \w many|strong="G3745"\w* \w as|strong="G3745"\w* \w were|strong="G1510"\w* \w owners|strong="G2935"\w* \w of|strong="G5100"\w* \w lands|strong="G5564"\w* \w or|strong="G2228"\w* \w houses|strong="G3614"\w* \w sold|strong="G4453"\w* \w them|strong="G3588"\w*, \w and|strong="G5092"\w* \w brought|strong="G5342"\w* \w the|strong="G1722"\w* \w proceeds|strong="G5092"\w* \w of|strong="G5100"\w* \w the|strong="G1722"\w* \w things|strong="G3588"\w* \w that|strong="G3588"\w* \w were|strong="G1510"\w* \w sold|strong="G4453"\w*, +\v 35 \w and|strong="G2532"\w* \w laid|strong="G5087"\w* \w them|strong="G3588"\w* \w at|strong="G3844"\w* \w the|strong="G2532"\w* apostles’ \w feet|strong="G4228"\w*; \w and|strong="G2532"\w* distribution \w was|strong="G3588"\w* \w made|strong="G5087"\w* \w to|strong="G2532"\w* \w each|strong="G1538"\w*, \w according|strong="G1538"\w* \w as|strong="G1161"\w* \w anyone|strong="G5100"\w* \w had|strong="G2192"\w* \w need|strong="G5532"\w*. +\p +\v 36 Joses, \w who|strong="G3739"\w* \w by|strong="G3739"\w* \w the|strong="G1161"\w* apostles \w was|strong="G1510"\w* \w also|strong="G1161"\w* \w called|strong="G1941"\w* Barnabas (\w which|strong="G3739"\w* \w is|strong="G1510"\w*, \w being|strong="G1510"\w* \w interpreted|strong="G3177"\w*, \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w Encouragement|strong="G3874"\w*), \w a|strong="G1510"\w* \w Levite|strong="G3019"\w*, \w a|strong="G1510"\w* \w man|strong="G3739"\w* \w of|strong="G5207"\w* \w Cyprus|strong="G2953"\w* \w by|strong="G3739"\w* \w race|strong="G1085"\w*, +\v 37 \w having|strong="G2532"\w* \w a|strong="G2532"\w* field, \w sold|strong="G4453"\w* \w it|strong="G2532"\w* \w and|strong="G2532"\w* \w brought|strong="G5342"\w* \w the|strong="G2532"\w* \w money|strong="G5536"\w* \w and|strong="G2532"\w* \w laid|strong="G5087"\w* \w it|strong="G2532"\w* \w at|strong="G4314"\w* \w the|strong="G2532"\w* apostles’ \w feet|strong="G4228"\w*. +\c 5 +\p +\v 1 \w But|strong="G1161"\w* \w a|strong="G1161"\w* \w certain|strong="G5100"\w* \w man|strong="G5100"\w* \w named|strong="G3686"\w* Ananias, \w with|strong="G4862"\w* \w Sapphira|strong="G4551"\w* \w his|strong="G3588"\w* \w wife|strong="G1135"\w*, \w sold|strong="G4453"\w* \w a|strong="G1161"\w* \w possession|strong="G2933"\w*, +\v 2 \w and|strong="G2532"\w* \w kept|strong="G5087"\w* \w back|strong="G3557"\w* \w part|strong="G3313"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w price|strong="G5092"\w*, \w his|strong="G2532"\w* \w wife|strong="G1135"\w* \w also|strong="G2532"\w* \w being|strong="G2532"\w* \w aware|strong="G4894"\w* \w of|strong="G2532"\w* \w it|strong="G2532"\w*, \w then|strong="G2532"\w* \w brought|strong="G5342"\w* \w a|strong="G2532"\w* \w certain|strong="G5100"\w* \w part|strong="G3313"\w* \w and|strong="G2532"\w* \w laid|strong="G5087"\w* \w it|strong="G2532"\w* \w at|strong="G3844"\w* \w the|strong="G2532"\w* apostles’ \w feet|strong="G4228"\w*. +\v 3 \w But|strong="G1161"\w* \w Peter|strong="G4074"\w* \w said|strong="G3004"\w*, “Ananias, \w why|strong="G5101"\w* \w has|strong="G5101"\w* \w Satan|strong="G4567"\w* \w filled|strong="G4137"\w* \w your|strong="G1223"\w* \w heart|strong="G2588"\w* \w to|strong="G2532"\w* \w lie|strong="G5574"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w keep|strong="G3557"\w* \w back|strong="G3557"\w* \w part|strong="G1161"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w price|strong="G5092"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w land|strong="G5564"\w*? +\v 4 \w While|strong="G1722"\w* \w you|strong="G4771"\w* \w kept|strong="G5087"\w* \w it|strong="G2532"\w*, didn’\w t|strong="G3588"\w* \w it|strong="G2532"\w* \w remain|strong="G3306"\w* \w your|strong="G4674"\w* \w own|strong="G4674"\w*? \w After|strong="G2532"\w* \w it|strong="G2532"\w* \w was|strong="G3588"\w* \w sold|strong="G4097"\w*, wasn’\w t|strong="G3588"\w* \w it|strong="G2532"\w* \w in|strong="G1722"\w* \w your|strong="G4674"\w* \w power|strong="G1849"\w*? \w How|strong="G5101"\w* \w is|strong="G3588"\w* \w it|strong="G2532"\w* \w that|strong="G3754"\w* \w you|strong="G4771"\w* \w have|strong="G2532"\w* \w conceived|strong="G5087"\w* \w this|strong="G3778"\w* \w thing|strong="G3778"\w* \w in|strong="G1722"\w* \w your|strong="G4674"\w* \w heart|strong="G2588"\w*? \w You|strong="G4771"\w* haven’\w t|strong="G3588"\w* \w lied|strong="G5574"\w* \w to|strong="G2532"\w* \w men|strong="G3778"\w*, \w but|strong="G2532"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w*.” +\p +\v 5 Ananias, hearing \w these|strong="G3778"\w* \w words|strong="G3056"\w*, \w fell|strong="G4098"\w* \w down|strong="G4098"\w* \w and|strong="G2532"\w* \w died|strong="G1634"\w*. \w Great|strong="G3173"\w* \w fear|strong="G5401"\w* \w came|strong="G1096"\w* \w on|strong="G1909"\w* \w all|strong="G3956"\w* \w who|strong="G3588"\w* heard \w these|strong="G3778"\w* \w things|strong="G3956"\w*. +\v 6 \w The|strong="G2532"\w* \w young|strong="G3501"\w* \w men|strong="G3501"\w* arose \w and|strong="G2532"\w* \w wrapped|strong="G4958"\w* \w him|strong="G3588"\w* \w up|strong="G4958"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w carried|strong="G1627"\w* \w him|strong="G3588"\w* \w out|strong="G2532"\w* \w and|strong="G2532"\w* \w buried|strong="G2290"\w* \w him|strong="G3588"\w*. +\v 7 \w About|strong="G5613"\w* \w three|strong="G5140"\w* \w hours|strong="G5610"\w* later, \w his|strong="G2532"\w* \w wife|strong="G1135"\w*, \w not|strong="G3361"\w* \w knowing|strong="G1492"\w* \w what|strong="G3588"\w* \w had|strong="G2532"\w* \w happened|strong="G1096"\w*, \w came|strong="G1096"\w* \w in|strong="G1525"\w*. +\v 8 \w Peter|strong="G4074"\w* \w answered|strong="G3004"\w* \w her|strong="G1438"\w*, “\w Tell|strong="G3004"\w* \w me|strong="G1473"\w* \w whether|strong="G1487"\w* \w you|strong="G1487"\w* sold \w the|strong="G1161"\w* \w land|strong="G5564"\w* \w for|strong="G4314"\w* \w so|strong="G1161"\w* \w much|strong="G5118"\w*.” +\p \w She|strong="G1161"\w* \w said|strong="G3004"\w*, “\w Yes|strong="G3483"\w*, \w for|strong="G4314"\w* \w so|strong="G1161"\w* \w much|strong="G5118"\w*.” +\p +\v 9 \w But|strong="G1161"\w* \w Peter|strong="G4074"\w* \w asked|strong="G3985"\w* \w her|strong="G1438"\w*, “\w How|strong="G5101"\w* \w is|strong="G3588"\w* \w it|strong="G2532"\w* \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w have|strong="G2532"\w* \w agreed|strong="G4856"\w* \w together|strong="G1909"\w* \w to|strong="G4314"\w* \w tempt|strong="G3985"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*? \w Behold|strong="G2400"\w*, \w the|strong="G2532"\w* \w feet|strong="G4228"\w* \w of|strong="G4151"\w* \w those|strong="G3588"\w* \w who|strong="G5101"\w* \w have|strong="G2532"\w* \w buried|strong="G2290"\w* \w your|strong="G2962"\w* husband \w are|strong="G3588"\w* \w at|strong="G1909"\w* \w the|strong="G2532"\w* \w door|strong="G2374"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w will|strong="G5101"\w* \w carry|strong="G1627"\w* \w you|strong="G5210"\w* \w out|strong="G2532"\w*.” +\p +\v 10 \w She|strong="G2532"\w* \w fell|strong="G4098"\w* \w down|strong="G4098"\w* \w immediately|strong="G3916"\w* \w at|strong="G4314"\w* \w his|strong="G1438"\w* \w feet|strong="G4228"\w* \w and|strong="G2532"\w* \w died|strong="G1634"\w*. \w The|strong="G2532"\w* \w young|strong="G3495"\w* \w men|strong="G3495"\w* \w came|strong="G1525"\w* \w in|strong="G1525"\w* \w and|strong="G2532"\w* \w found|strong="G2147"\w* \w her|strong="G1438"\w* \w dead|strong="G3498"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w carried|strong="G1627"\w* \w her|strong="G1438"\w* \w out|strong="G2532"\w* \w and|strong="G2532"\w* \w buried|strong="G2290"\w* \w her|strong="G1438"\w* \w by|strong="G4314"\w* \w her|strong="G1438"\w* husband. +\v 11 \w Great|strong="G3173"\w* \w fear|strong="G5401"\w* \w came|strong="G1096"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w whole|strong="G3650"\w* \w assembly|strong="G1577"\w*, \w and|strong="G2532"\w* \w on|strong="G1909"\w* \w all|strong="G3956"\w* \w who|strong="G3588"\w* heard \w these|strong="G3778"\w* \w things|strong="G3956"\w*. +\p +\v 12 \w By|strong="G1223"\w* \w the|strong="G1722"\w* \w hands|strong="G5495"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* apostles \w many|strong="G4183"\w* \w signs|strong="G4592"\w* \w and|strong="G2532"\w* \w wonders|strong="G5059"\w* \w were|strong="G1510"\w* \w done|strong="G1096"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w*. \w They|strong="G2532"\w* \w were|strong="G1510"\w* \w all|strong="G2532"\w* \w with|strong="G1722"\w* \w one|strong="G3588"\w* \w accord|strong="G3661"\w* \w in|strong="G1722"\w* \w Solomon|strong="G4672"\w*’s \w porch|strong="G4745"\w*. +\v 13 \w None|strong="G3762"\w* \w of|strong="G2992"\w* \w the|strong="G1161"\w* \w rest|strong="G3062"\w* \w dared|strong="G5111"\w* \w to|strong="G1161"\w* \w join|strong="G2853"\w* \w them|strong="G3588"\w*; \w however|strong="G1161"\w*, \w the|strong="G1161"\w* \w people|strong="G2992"\w* honored \w them|strong="G3588"\w*. +\v 14 \w More|strong="G3123"\w* \w believers|strong="G4100"\w* \w were|strong="G3588"\w* \w added|strong="G4369"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w multitudes|strong="G4128"\w* \w of|strong="G2532"\w* \w both|strong="G2532"\w* \w men|strong="G3588"\w* \w and|strong="G2532"\w* \w women|strong="G1135"\w*. +\v 15 \w They|strong="G2532"\w* \w even|strong="G2532"\w* \w carried|strong="G1627"\w* \w out|strong="G2532"\w* \w the|strong="G2532"\w* sick \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w streets|strong="G4113"\w* \w and|strong="G2532"\w* \w laid|strong="G5087"\w* \w them|strong="G3588"\w* \w on|strong="G1909"\w* cots \w and|strong="G2532"\w* mattresses, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w as|strong="G1519"\w* \w Peter|strong="G4074"\w* \w came|strong="G2064"\w* \w by|strong="G1909"\w*, \w at|strong="G1909"\w* \w least|strong="G2579"\w* \w his|strong="G1519"\w* \w shadow|strong="G4639"\w* \w might|strong="G2532"\w* \w overshadow|strong="G1982"\w* \w some|strong="G5100"\w* \w of|strong="G2532"\w* \w them|strong="G3588"\w*. +\v 16 \w The|strong="G2532"\w* \w multitude|strong="G4128"\w* \w also|strong="G2532"\w* \w came|strong="G4905"\w* \w together|strong="G4905"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w cities|strong="G4172"\w* \w around|strong="G4038"\w* \w Jerusalem|strong="G2419"\w*, \w bringing|strong="G5342"\w* \w sick|strong="G5342"\w* \w people|strong="G4128"\w* \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* tormented \w by|strong="G5259"\w* unclean \w spirits|strong="G4151"\w*; \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w all|strong="G2532"\w* \w healed|strong="G2323"\w*. +\p +\v 17 \w But|strong="G1161"\w* \w the|strong="G2532"\w* \w high|strong="G3956"\w* priest \w rose|strong="G2532"\w* \w up|strong="G2532"\w*, \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G1510"\w* \w with|strong="G4862"\w* \w him|strong="G3588"\w* (\w which|strong="G3588"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* sect \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Sadducees|strong="G4523"\w*), \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w filled|strong="G4130"\w* \w with|strong="G4862"\w* \w jealousy|strong="G2205"\w* +\v 18 \w and|strong="G2532"\w* \w laid|strong="G5087"\w* \w hands|strong="G5495"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* apostles, \w then|strong="G2532"\w* \w put|strong="G5087"\w* \w them|strong="G3588"\w* \w in|strong="G1722"\w* \w public|strong="G1219"\w* custody. +\v 19 \w But|strong="G1161"\w* \w an|strong="G1161"\w* angel \w of|strong="G1223"\w* \w the|strong="G1161"\w* \w Lord|strong="G2962"\w* opened \w the|strong="G1161"\w* \w prison|strong="G5438"\w* \w doors|strong="G2374"\w* \w by|strong="G1223"\w* \w night|strong="G3571"\w*, \w and|strong="G1161"\w* \w brought|strong="G1806"\w* \w them|strong="G3588"\w* \w out|strong="G1806"\w* \w and|strong="G1161"\w* \w said|strong="G3004"\w*, +\v 20 “\w Go|strong="G4198"\w* \w stand|strong="G2476"\w* \w and|strong="G2532"\w* \w speak|strong="G2980"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w words|strong="G4487"\w* \w of|strong="G2532"\w* \w this|strong="G3778"\w* \w life|strong="G2222"\w*.” +\p +\v 21 \w When|strong="G1161"\w* \w they|strong="G2532"\w* heard \w this|strong="G3588"\w*, \w they|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w temple|strong="G2411"\w* \w about|strong="G1519"\w* \w daybreak|strong="G3722"\w* \w and|strong="G2532"\w* \w taught|strong="G1321"\w*. \w But|strong="G1161"\w* \w the|strong="G2532"\w* \w high|strong="G3956"\w* priest \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w with|strong="G4862"\w* \w him|strong="G3588"\w* \w came|strong="G3854"\w* \w and|strong="G2532"\w* \w called|strong="G4779"\w* \w the|strong="G2532"\w* \w council|strong="G4892"\w* \w together|strong="G4779"\w*, \w with|strong="G4862"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w senate|strong="G1087"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w children|strong="G5207"\w* \w of|strong="G5207"\w* \w Israel|strong="G2474"\w*, \w and|strong="G2532"\w* \w sent|strong="G2532"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w prison|strong="G1201"\w* \w to|strong="G1519"\w* \w have|strong="G2532"\w* \w them|strong="G3588"\w* \w brought|strong="G1161"\w*. +\v 22 \w But|strong="G1161"\w* \w the|strong="G1722"\w* \w officers|strong="G5257"\w* \w who|strong="G3588"\w* \w came|strong="G3854"\w* didn’\w t|strong="G3588"\w* \w find|strong="G2147"\w* \w them|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w prison|strong="G5438"\w*. \w They|strong="G1161"\w* returned \w and|strong="G1161"\w* reported, +\v 23 “\w We|strong="G3754"\w* \w found|strong="G2147"\w* \w the|strong="G1722"\w* \w prison|strong="G1201"\w* \w shut|strong="G2808"\w* \w and|strong="G2532"\w* \w locked|strong="G2808"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w guards|strong="G5441"\w* \w standing|strong="G2476"\w* \w before|strong="G1909"\w* \w the|strong="G1722"\w* \w doors|strong="G2374"\w*, \w but|strong="G1161"\w* \w when|strong="G1161"\w* \w we|strong="G3754"\w* opened \w them|strong="G3588"\w*, \w we|strong="G3754"\w* \w found|strong="G2147"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w* \w inside|strong="G2080"\w*!” +\p +\v 24 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w the|strong="G2532"\w* \w high|strong="G2532"\w* priest, \w the|strong="G2532"\w* \w captain|strong="G4755"\w* \w of|strong="G4012"\w* \w the|strong="G2532"\w* \w temple|strong="G2413"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w chief|strong="G4755"\w* priests heard \w these|strong="G3778"\w* \w words|strong="G3056"\w*, \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w very|strong="G2532"\w* \w perplexed|strong="G1280"\w* \w about|strong="G4012"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w what|strong="G5101"\w* \w might|strong="G2532"\w* \w become|strong="G1096"\w* \w of|strong="G4012"\w* \w this|strong="G3778"\w*. +\v 25 \w One|strong="G5100"\w* \w came|strong="G3854"\w* \w and|strong="G2532"\w* told \w them|strong="G3588"\w*, “\w Behold|strong="G2400"\w*, \w the|strong="G1722"\w* \w men|strong="G5100"\w* \w whom|strong="G3739"\w* \w you|strong="G3739"\w* \w put|strong="G5087"\w* \w in|strong="G1722"\w* \w prison|strong="G5438"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w*, \w standing|strong="G2476"\w* \w and|strong="G2532"\w* \w teaching|strong="G1321"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w*.” +\v 26 \w Then|strong="G5119"\w* \w the|strong="G3588"\w* \w captain|strong="G4755"\w* \w went|strong="G5119"\w* \w with|strong="G3326"\w* \w the|strong="G3588"\w* \w officers|strong="G5257"\w*, \w and|strong="G2992"\w* brought \w them|strong="G3588"\w* \w without|strong="G3361"\w* violence, \w for|strong="G1063"\w* \w they|strong="G3588"\w* \w were|strong="G3588"\w* \w afraid|strong="G5399"\w* \w that|strong="G2443"\w* \w the|strong="G3588"\w* \w people|strong="G2992"\w* might \w stone|strong="G3034"\w* \w them|strong="G3588"\w*. +\p +\v 27 \w When|strong="G1161"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w brought|strong="G1161"\w* \w them|strong="G3588"\w*, \w they|strong="G2532"\w* \w set|strong="G2476"\w* \w them|strong="G3588"\w* \w before|strong="G1722"\w* \w the|strong="G1722"\w* \w council|strong="G4892"\w*. \w The|strong="G1722"\w* \w high|strong="G2532"\w* priest \w questioned|strong="G1905"\w* \w them|strong="G3588"\w*, +\v 28 \w saying|strong="G3004"\w*, “Didn’\w t|strong="G3588"\w* \w we|strong="G2249"\w* strictly \w command|strong="G3853"\w* \w you|strong="G5210"\w* \w not|strong="G3361"\w* \w to|strong="G2532"\w* \w teach|strong="G1321"\w* \w in|strong="G1909"\w* \w this|strong="G3778"\w* \w name|strong="G3686"\w*? \w Behold|strong="G2400"\w*, \w you|strong="G5210"\w* \w have|strong="G2532"\w* \w filled|strong="G4137"\w* \w Jerusalem|strong="G2419"\w* \w with|strong="G2532"\w* \w your|strong="G2532"\w* \w teaching|strong="G1321"\w*, \w and|strong="G2532"\w* \w intend|strong="G1014"\w* \w to|strong="G2532"\w* \w bring|strong="G1863"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w*’s blood \w on|strong="G1909"\w* \w us|strong="G3004"\w*.” +\p +\v 29 \w But|strong="G1161"\w* \w Peter|strong="G4074"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* apostles \w answered|strong="G3004"\w*, “\w We|strong="G2532"\w* \w must|strong="G1163"\w* \w obey|strong="G3980"\w* \w God|strong="G2316"\w* \w rather|strong="G3123"\w* \w than|strong="G2228"\w* \w men|strong="G3588"\w*. +\v 30 \w The|strong="G1909"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* \w our|strong="G2316"\w* \w fathers|strong="G3962"\w* \w raised|strong="G1453"\w* \w up|strong="G1453"\w* \w Jesus|strong="G2424"\w*, \w whom|strong="G3739"\w* \w you|strong="G5210"\w* killed, \w hanging|strong="G2910"\w* \w him|strong="G3588"\w* \w on|strong="G1909"\w* \w a|strong="G1909"\w* \w tree|strong="G3586"\w*. +\v 31 \w God|strong="G2316"\w* \w exalted|strong="G5312"\w* \w him|strong="G3588"\w* \w with|strong="G2532"\w* \w his|strong="G2532"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w a|strong="G2532"\w* Prince \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w Savior|strong="G4990"\w*, \w to|strong="G2532"\w* \w give|strong="G1325"\w* \w repentance|strong="G3341"\w* \w to|strong="G2532"\w* \w Israel|strong="G2474"\w*, \w and|strong="G2532"\w* remission \w of|strong="G2316"\w* sins. +\v 32 \w We|strong="G2249"\w* \w are|strong="G1510"\w* \w his|strong="G2532"\w* \w witnesses|strong="G3144"\w* \w of|strong="G4151"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*; \w and|strong="G2532"\w* \w so|strong="G2532"\w* \w also|strong="G2532"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*, \w whom|strong="G3739"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w obey|strong="G3980"\w* \w him|strong="G3588"\w*.” +\p +\v 33 \w But|strong="G1161"\w* \w they|strong="G2532"\w*, \w when|strong="G1161"\w* \w they|strong="G2532"\w* heard \w this|strong="G3588"\w*, \w were|strong="G3588"\w* \w cut|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* heart, \w and|strong="G2532"\w* \w were|strong="G3588"\w* \w determined|strong="G1011"\w* \w to|strong="G2532"\w* kill \w them|strong="G3588"\w*. +\v 34 \w But|strong="G1161"\w* \w one|strong="G5100"\w* \w stood|strong="G3588"\w* \w up|strong="G1722"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w council|strong="G4892"\w*, \w a|strong="G1722"\w* \w Pharisee|strong="G5330"\w* \w named|strong="G3686"\w* \w Gamaliel|strong="G1059"\w*, \w a|strong="G1722"\w* \w teacher|strong="G3547"\w* \w of|strong="G3686"\w* \w the|strong="G1722"\w* \w law|strong="G3547"\w*, honored \w by|strong="G1722"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w*, \w and|strong="G1161"\w* \w commanded|strong="G2753"\w* \w to|strong="G1722"\w* \w put|strong="G4160"\w* \w the|strong="G1722"\w* apostles \w out|strong="G1854"\w* \w for|strong="G1161"\w* \w a|strong="G1722"\w* \w little|strong="G1024"\w* \w while|strong="G1722"\w*. +\v 35 \w He|strong="G3778"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, “\w You|strong="G3004"\w* \w men|strong="G3778"\w* \w of|strong="G1909"\w* \w Israel|strong="G2475"\w*, \w be|strong="G3195"\w* \w careful|strong="G4337"\w* \w concerning|strong="G1909"\w* \w these|strong="G3778"\w* \w men|strong="G3778"\w*, \w what|strong="G5101"\w* \w you|strong="G3004"\w* \w are|strong="G3588"\w* \w about|strong="G3195"\w* \w to|strong="G4314"\w* \w do|strong="G4238"\w*. +\v 36 \w For|strong="G1063"\w* \w before|strong="G4253"\w* \w these|strong="G3778"\w* \w days|strong="G2250"\w* \w Theudas|strong="G2333"\w* \w rose|strong="G2532"\w* \w up|strong="G1519"\w*, \w making|strong="G2532"\w* \w himself|strong="G1438"\w* \w out|strong="G2532"\w* \w to|strong="G1519"\w* \w be|strong="G1096"\w* \w somebody|strong="G5100"\w*; \w to|strong="G1519"\w* \w whom|strong="G3739"\w* \w a|strong="G1096"\w* number \w of|strong="G2250"\w* \w men|strong="G3956"\w*, \w about|strong="G5613"\w* \w four|strong="G5071"\w* \w hundred|strong="G5071"\w*, \w joined|strong="G1096"\w* \w themselves|strong="G1438"\w*. \w He|strong="G2532"\w* \w was|strong="G1510"\w* slain; \w and|strong="G2532"\w* \w all|strong="G3956"\w*, \w as|strong="G5613"\w* \w many|strong="G3745"\w* \w as|strong="G5613"\w* \w obeyed|strong="G3982"\w* \w him|strong="G3588"\w*, \w were|strong="G1510"\w* \w dispersed|strong="G1262"\w* \w and|strong="G2532"\w* \w came|strong="G1096"\w* \w to|strong="G1519"\w* \w nothing|strong="G3762"\w*. +\v 37 \w After|strong="G3326"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w*, \w Judas|strong="G2455"\w* \w of|strong="G2250"\w* \w Galilee|strong="G1057"\w* \w rose|strong="G2532"\w* \w up|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w days|strong="G2250"\w* \w of|strong="G2250"\w* \w the|strong="G1722"\w* enrollment, \w and|strong="G2532"\w* \w drew|strong="G2532"\w* \w away|strong="G3326"\w* \w some|strong="G3588"\w* \w people|strong="G2992"\w* \w after|strong="G3326"\w* \w him|strong="G3588"\w*. \w He|strong="G2532"\w* \w also|strong="G2532"\w* perished, \w and|strong="G2532"\w* \w all|strong="G3956"\w*, \w as|strong="G3745"\w* \w many|strong="G3745"\w* \w as|strong="G3745"\w* \w obeyed|strong="G3982"\w* \w him|strong="G3588"\w*, \w were|strong="G3588"\w* \w scattered|strong="G1287"\w* \w abroad|strong="G1287"\w*. +\v 38 \w Now|strong="G3568"\w* \w I|strong="G2532"\w* \w tell|strong="G3004"\w* \w you|strong="G5210"\w*, withdraw \w from|strong="G1537"\w* \w these|strong="G3778"\w* \w men|strong="G3778"\w* \w and|strong="G2532"\w* leave \w them|strong="G3588"\w* \w alone|strong="G1438"\w*. \w For|strong="G3754"\w* \w if|strong="G1437"\w* \w this|strong="G3778"\w* \w counsel|strong="G1012"\w* \w or|strong="G2228"\w* \w this|strong="G3778"\w* \w work|strong="G2041"\w* \w is|strong="G1510"\w* \w of|strong="G1537"\w* \w men|strong="G3778"\w*, \w it|strong="G2532"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w overthrown|strong="G2647"\w*. +\v 39 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*, \w you|strong="G1487"\w* \w will|strong="G2316"\w* \w not|strong="G3756"\w* \w be|strong="G1510"\w* \w able|strong="G1410"\w* \w to|strong="G2532"\w* \w overthrow|strong="G2647"\w* \w it|strong="G2532"\w*, \w and|strong="G2532"\w* \w you|strong="G1487"\w* \w would|strong="G2316"\w* \w be|strong="G1510"\w* \w found|strong="G2147"\w* \w even|strong="G2532"\w* \w to|strong="G2532"\w* \w be|strong="G1510"\w* \w fighting|strong="G2314"\w* \w against|strong="G1537"\w* \w God|strong="G2316"\w*!” +\p +\v 40 \w They|strong="G2532"\w* \w agreed|strong="G3982"\w* \w with|strong="G2532"\w* \w him|strong="G3588"\w*. \w Summoning|strong="G4341"\w* \w the|strong="G2532"\w* apostles, \w they|strong="G2532"\w* \w beat|strong="G1194"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w commanded|strong="G3853"\w* \w them|strong="G3588"\w* \w not|strong="G3361"\w* \w to|strong="G2532"\w* \w speak|strong="G2980"\w* \w in|strong="G1909"\w* \w the|strong="G2532"\w* \w name|strong="G3686"\w* \w of|strong="G2532"\w* \w Jesus|strong="G2424"\w*, \w and|strong="G2532"\w* \w let|strong="G1161"\w* \w them|strong="G3588"\w* \w go|strong="G2532"\w*. +\v 41 \w They|strong="G3588"\w* \w therefore|strong="G3767"\w* \w departed|strong="G4198"\w* \w from|strong="G3588"\w* \w the|strong="G3588"\w* \w presence|strong="G4383"\w* \w of|strong="G3686"\w* \w the|strong="G3588"\w* \w council|strong="G4892"\w*, \w rejoicing|strong="G5463"\w* \w that|strong="G3754"\w* \w they|strong="G3588"\w* \w were|strong="G3588"\w* counted \w worthy|strong="G2661"\w* \w to|strong="G4198"\w* suffer dishonor \w for|strong="G3754"\w* \w Jesus|strong="G4198"\w*’ \w name|strong="G3686"\w*. +\p +\v 42 \w Every|strong="G3956"\w* \w day|strong="G2250"\w*, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w* \w and|strong="G2532"\w* \w at|strong="G1722"\w* \w home|strong="G3624"\w*, \w they|strong="G2532"\w* \w never|strong="G3756"\w* \w stopped|strong="G3973"\w* \w teaching|strong="G1321"\w* \w and|strong="G2532"\w* \w preaching|strong="G2097"\w* \w Jesus|strong="G2424"\w*, \w the|strong="G1722"\w* \w Christ|strong="G5547"\w*. +\c 6 +\p +\v 1 \w Now|strong="G1161"\w* \w in|strong="G1722"\w* \w those|strong="G3588"\w* \w days|strong="G2250"\w*, \w when|strong="G1161"\w* \w the|strong="G1722"\w* \w number|strong="G4129"\w* \w of|strong="G2250"\w* \w the|strong="G1722"\w* \w disciples|strong="G3101"\w* \w was|strong="G1096"\w* \w multiplying|strong="G4129"\w*, \w a|strong="G1096"\w* \w complaint|strong="G1112"\w* \w arose|strong="G1096"\w* \w from|strong="G3588"\w* \w the|strong="G1722"\w* Hellenists\f + \fr 6:1 \ft The Hellenists used Greek language and culture, even though they were also of Hebrew descent.\f* \w against|strong="G4314"\w* \w the|strong="G1722"\w* \w Hebrews|strong="G1445"\w*, \w because|strong="G3754"\w* \w their|strong="G1722"\w* \w widows|strong="G5503"\w* \w were|strong="G3588"\w* \w neglected|strong="G3865"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w daily|strong="G2250"\w* \w service|strong="G1248"\w*. +\v 2 \w The|strong="G1161"\w* \w twelve|strong="G1427"\w* \w summoned|strong="G4341"\w* \w the|strong="G1161"\w* \w multitude|strong="G4128"\w* \w of|strong="G3056"\w* \w the|strong="G1161"\w* \w disciples|strong="G3101"\w* \w and|strong="G1161"\w* \w said|strong="G3004"\w*, “\w It|strong="G1161"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* appropriate \w for|strong="G1161"\w* \w us|strong="G3004"\w* \w to|strong="G3004"\w* forsake \w the|strong="G1161"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w* \w and|strong="G1161"\w* \w serve|strong="G1247"\w* \w tables|strong="G5132"\w*. +\v 3 \w Therefore|strong="G1161"\w*, \w select|strong="G1980"\w* \w from|strong="G1537"\w* \w among|strong="G1537"\w* \w you|strong="G5210"\w*, brothers, \w seven|strong="G2033"\w* \w men|strong="G3778"\w* \w of|strong="G1537"\w* \w good|strong="G3588"\w* \w report|strong="G3140"\w*, \w full|strong="G4134"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w and|strong="G2532"\w* \w of|strong="G1537"\w* \w wisdom|strong="G4678"\w*, \w whom|strong="G3739"\w* \w we|strong="G3739"\w* \w may|strong="G2532"\w* \w appoint|strong="G2525"\w* \w over|strong="G1909"\w* \w this|strong="G3778"\w* \w business|strong="G3588"\w*. +\v 4 \w But|strong="G1161"\w* \w we|strong="G2249"\w* \w will|strong="G2532"\w* \w continue|strong="G2532"\w* steadfastly \w in|strong="G2532"\w* \w prayer|strong="G4335"\w* \w and|strong="G2532"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w ministry|strong="G1248"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w*.” +\p +\v 5 \w These|strong="G3956"\w* \w words|strong="G3056"\w* pleased \w the|strong="G2532"\w* \w whole|strong="G3956"\w* \w multitude|strong="G4128"\w*. \w They|strong="G2532"\w* \w chose|strong="G1586"\w* \w Stephen|strong="G4736"\w*, \w a|strong="G2532"\w* \w man|strong="G3956"\w* \w full|strong="G4134"\w* \w of|strong="G3056"\w* \w faith|strong="G4102"\w* \w and|strong="G2532"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*, \w Philip|strong="G5376"\w*, \w Prochorus|strong="G4402"\w*, \w Nicanor|strong="G3527"\w*, \w Timon|strong="G5096"\w*, \w Parmenas|strong="G3937"\w*, \w and|strong="G2532"\w* Nicolaus, \w a|strong="G2532"\w* \w proselyte|strong="G4339"\w* \w of|strong="G3056"\w* Antioch, +\v 6 \w whom|strong="G3739"\w* \w they|strong="G2532"\w* \w set|strong="G2476"\w* \w before|strong="G1799"\w* \w the|strong="G2532"\w* apostles. \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w prayed|strong="G4336"\w*, \w they|strong="G2532"\w* \w laid|strong="G2007"\w* \w their|strong="G2532"\w* \w hands|strong="G5495"\w* \w on|strong="G5495"\w* \w them|strong="G3588"\w*. +\p +\v 7 \w The|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w* \w increased|strong="G4129"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w number|strong="G3793"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w disciples|strong="G3101"\w* \w greatly|strong="G4183"\w* \w multiplied|strong="G4129"\w* \w in|strong="G1722"\w* \w Jerusalem|strong="G2419"\w*. \w A|strong="G2532"\w* \w great|strong="G4183"\w* \w company|strong="G3793"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w priests|strong="G2409"\w* \w were|strong="G3588"\w* \w obedient|strong="G5219"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w faith|strong="G4102"\w*. +\p +\v 8 \w Stephen|strong="G4736"\w*, \w full|strong="G4134"\w* \w of|strong="G2532"\w* faith \w and|strong="G2532"\w* \w power|strong="G1411"\w*, \w performed|strong="G4160"\w* \w great|strong="G3173"\w* \w wonders|strong="G5059"\w* \w and|strong="G2532"\w* \w signs|strong="G4592"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w*. +\v 9 \w But|strong="G1161"\w* \w some|strong="G5100"\w* \w of|strong="G1537"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w synagogue|strong="G4864"\w* \w called|strong="G3004"\w* “\w The|strong="G2532"\w* \w Libertines|strong="G3032"\w*”, \w and|strong="G2532"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w Cyrenians|strong="G2956"\w*, \w of|strong="G1537"\w* \w the|strong="G2532"\w* Alexandrians, \w and|strong="G2532"\w* \w of|strong="G1537"\w* \w those|strong="G3588"\w* \w of|strong="G1537"\w* \w Cilicia|strong="G2791"\w* \w and|strong="G2532"\w* \w Asia|strong="G3588"\w* arose, \w disputing|strong="G4802"\w* \w with|strong="G1537"\w* \w Stephen|strong="G4736"\w*. +\v 10 \w They|strong="G2532"\w* weren’\w t|strong="G3588"\w* \w able|strong="G2480"\w* \w to|strong="G2532"\w* withstand \w the|strong="G2532"\w* \w wisdom|strong="G4678"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w* \w by|strong="G2532"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w spoke|strong="G2980"\w*. +\v 11 \w Then|strong="G2532"\w* \w they|strong="G2532"\w* \w secretly|strong="G5260"\w* \w induced|strong="G5260"\w* \w men|strong="G3588"\w* \w to|strong="G1519"\w* \w say|strong="G3004"\w*, “\w We|strong="G3754"\w* \w have|strong="G2532"\w* heard \w him|strong="G3588"\w* \w speak|strong="G2980"\w* blasphemous \w words|strong="G4487"\w* \w against|strong="G1519"\w* \w Moses|strong="G3475"\w* \w and|strong="G2532"\w* \w God|strong="G2316"\w*.” +\v 12 \w They|strong="G2532"\w* \w stirred|strong="G2532"\w* \w up|strong="G1519"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w*, \w the|strong="G2532"\w* \w elders|strong="G4245"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w scribes|strong="G1122"\w*, \w and|strong="G2532"\w* \w came|strong="G2532"\w* \w against|strong="G1519"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w seized|strong="G4884"\w* \w him|strong="G3588"\w*, \w then|strong="G2532"\w* \w brought|strong="G2532"\w* \w him|strong="G3588"\w* \w in|strong="G1519"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w council|strong="G4892"\w*, +\v 13 \w and|strong="G2532"\w* \w set|strong="G2476"\w* \w up|strong="G2476"\w* \w false|strong="G5571"\w* \w witnesses|strong="G3144"\w* \w who|strong="G3588"\w* \w said|strong="G3004"\w*, “\w This|strong="G3778"\w* \w man|strong="G3778"\w* \w never|strong="G3756"\w* stops \w speaking|strong="G2980"\w* blasphemous \w words|strong="G4487"\w* \w against|strong="G2596"\w* \w this|strong="G3778"\w* holy \w place|strong="G5117"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w*. +\v 14 \w For|strong="G1063"\w* \w we|strong="G2249"\w* \w have|strong="G2532"\w* heard \w him|strong="G3588"\w* \w say|strong="G3004"\w* \w that|strong="G3754"\w* \w this|strong="G3778"\w* \w Jesus|strong="G2424"\w* \w of|strong="G2532"\w* \w Nazareth|strong="G3480"\w* \w will|strong="G2532"\w* \w destroy|strong="G2647"\w* \w this|strong="G3778"\w* \w place|strong="G5117"\w*, \w and|strong="G2532"\w* \w will|strong="G2532"\w* change \w the|strong="G2532"\w* \w customs|strong="G1485"\w* \w which|strong="G3739"\w* \w Moses|strong="G3475"\w* \w delivered|strong="G3860"\w* \w to|strong="G2532"\w* \w us|strong="G3004"\w*.” +\v 15 \w All|strong="G3956"\w* \w who|strong="G3588"\w* \w sat|strong="G2516"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w council|strong="G4892"\w*, fastening \w their|strong="G2532"\w* eyes \w on|strong="G1722"\w* \w him|strong="G3588"\w*, \w saw|strong="G3708"\w* \w his|strong="G3956"\w* \w face|strong="G4383"\w* \w like|strong="G5616"\w* \w it|strong="G2532"\w* \w was|strong="G3588"\w* \w the|strong="G1722"\w* \w face|strong="G4383"\w* \w of|strong="G2532"\w* \w an|strong="G2532"\w* angel. +\c 7 +\p +\v 1 \w The|strong="G1161"\w* high priest \w said|strong="G3004"\w*, “\w Are|strong="G3588"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w so|strong="G3779"\w*?” +\p +\v 2 \w He|strong="G2532"\w* \w said|strong="G5346"\w*, “Brothers \w and|strong="G2532"\w* \w fathers|strong="G3962"\w*, listen. \w The|strong="G1722"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* \w glory|strong="G1391"\w* \w appeared|strong="G3708"\w* \w to|strong="G2532"\w* \w our|strong="G2316"\w* \w father|strong="G3962"\w* Abraham \w when|strong="G1161"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w Mesopotamia|strong="G3318"\w*, \w before|strong="G4250"\w* \w he|strong="G2532"\w* \w lived|strong="G2730"\w* \w in|strong="G1722"\w* \w Haran|strong="G5488"\w*, +\v 3 \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, ‘\w Get|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w your|strong="G2532"\w* \w land|strong="G1093"\w* \w and|strong="G2532"\w* \w away|strong="G1831"\w* \w from|strong="G1537"\w* \w your|strong="G2532"\w* \w relatives|strong="G4772"\w*, \w and|strong="G2532"\w* \w come|strong="G1831"\w* \w into|strong="G1519"\w* \w a|strong="G2532"\w* \w land|strong="G1093"\w* \w which|strong="G3739"\w* \w I|strong="G3739"\w* \w will|strong="G2532"\w* \w show|strong="G1166"\w* \w you|strong="G4771"\w*.’\x + \xo 7:3 \xt Genesis 12:1\x* +\v 4 \w Then|strong="G5119"\w* \w he|strong="G3739"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w land|strong="G1093"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* Chaldaeans \w and|strong="G3962"\w* \w lived|strong="G2730"\w* \w in|strong="G1722"\w* \w Haran|strong="G5488"\w*. \w From|strong="G1537"\w* \w there|strong="G2547"\w*, \w when|strong="G1722"\w* \w his|strong="G1519"\w* \w father|strong="G3962"\w* \w was|strong="G3588"\w* dead, \w God|strong="G2730"\w* moved \w him|strong="G3588"\w* \w into|strong="G1519"\w* \w this|strong="G3778"\w* \w land|strong="G1093"\w* \w where|strong="G3739"\w* \w you|strong="G5210"\w* \w are|strong="G3588"\w* \w now|strong="G3568"\w* \w living|strong="G2730"\w*. +\v 5 \w He|strong="G2532"\w* \w gave|strong="G1325"\w* \w him|strong="G3588"\w* \w no|strong="G3756"\w* \w inheritance|strong="G2817"\w* \w in|strong="G1722"\w* \w it|strong="G2532"\w*, \w no|strong="G3756"\w*, \w not|strong="G3756"\w* \w so|strong="G2532"\w* much \w as|strong="G1519"\w* \w to|strong="G1519"\w* \w set|strong="G2532"\w* \w his|strong="G1438"\w* \w foot|strong="G4228"\w* \w on|strong="G1722"\w*. \w He|strong="G2532"\w* \w promised|strong="G1861"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w would|strong="G2532"\w* \w give|strong="G1325"\w* \w it|strong="G2532"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w for|strong="G1519"\w* \w a|strong="G2532"\w* \w possession|strong="G2697"\w*, \w and|strong="G2532"\w* \w to|strong="G1519"\w* \w his|strong="G1438"\w* offspring \w after|strong="G3326"\w* \w him|strong="G3588"\w*, \w when|strong="G2532"\w* \w he|strong="G2532"\w* still \w had|strong="G2532"\w* \w no|strong="G3756"\w* \w child|strong="G5043"\w*. +\v 6 \w God|strong="G2316"\w* \w spoke|strong="G2980"\w* \w in|strong="G1722"\w* \w this|strong="G3588"\w* \w way|strong="G3779"\w*: \w that|strong="G3754"\w* \w his|strong="G1722"\w* offspring \w would|strong="G2316"\w* \w live|strong="G2532"\w* \w as|strong="G1722"\w* \w aliens|strong="G3941"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* strange \w land|strong="G1093"\w*, \w and|strong="G2532"\w* \w that|strong="G3754"\w* \w they|strong="G2532"\w* \w would|strong="G2316"\w* \w be|strong="G1510"\w* \w enslaved|strong="G1402"\w* \w and|strong="G2532"\w* \w mistreated|strong="G2559"\w* \w for|strong="G3754"\w* \w four|strong="G5071"\w* \w hundred|strong="G5071"\w* \w years|strong="G2094"\w*. +\v 7 ‘\w I|strong="G1473"\w* \w will|strong="G2316"\w* \w judge|strong="G2919"\w* \w the|strong="G1722"\w* \w nation|strong="G1484"\w* \w to|strong="G2532"\w* \w which|strong="G3739"\w* \w they|strong="G2532"\w* \w will|strong="G2316"\w* \w be|strong="G2532"\w* \w in|strong="G1722"\w* \w bondage|strong="G1398"\w*,’ \w said|strong="G3004"\w* \w God|strong="G2316"\w*, ‘\w and|strong="G2532"\w* \w after|strong="G3326"\w* \w that|strong="G3739"\w* \w they|strong="G2532"\w* \w will|strong="G2316"\w* \w come|strong="G1831"\w* \w out|strong="G1831"\w* \w and|strong="G2532"\w* \w serve|strong="G1398"\w* \w me|strong="G1473"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* \w place|strong="G5117"\w*.’\x + \xo 7:7 \xt Genesis 15:13-14\x* +\v 8 \w He|strong="G2532"\w* \w gave|strong="G1325"\w* \w him|strong="G3588"\w* \w the|strong="G2532"\w* \w covenant|strong="G1242"\w* \w of|strong="G2250"\w* \w circumcision|strong="G4061"\w*. \w So|strong="G3779"\w* Abraham \w became|strong="G1080"\w* \w the|strong="G2532"\w* \w father|strong="G1080"\w* \w of|strong="G2250"\w* \w Isaac|strong="G2464"\w*, \w and|strong="G2532"\w* \w circumcised|strong="G4059"\w* \w him|strong="G3588"\w* \w the|strong="G2532"\w* \w eighth|strong="G3590"\w* \w day|strong="G2250"\w*. \w Isaac|strong="G2464"\w* \w became|strong="G1080"\w* \w the|strong="G2532"\w* \w father|strong="G1080"\w* \w of|strong="G2250"\w* \w Jacob|strong="G2384"\w*, \w and|strong="G2532"\w* \w Jacob|strong="G2384"\w* \w became|strong="G1080"\w* \w the|strong="G2532"\w* \w father|strong="G1080"\w* \w of|strong="G2250"\w* \w the|strong="G2532"\w* \w twelve|strong="G1427"\w* \w patriarchs|strong="G3966"\w*. +\p +\v 9 “\w The|strong="G2532"\w* \w patriarchs|strong="G3966"\w*, moved \w with|strong="G3326"\w* jealousy \w against|strong="G1519"\w* \w Joseph|strong="G2501"\w*, \w sold|strong="G2532"\w* \w him|strong="G3588"\w* \w into|strong="G1519"\w* Egypt. \w God|strong="G2316"\w* \w was|strong="G1510"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w* +\v 10 \w and|strong="G2532"\w* \w delivered|strong="G1807"\w* \w him|strong="G3588"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w all|strong="G3956"\w* \w his|strong="G3956"\w* \w afflictions|strong="G2347"\w*, \w and|strong="G2532"\w* \w gave|strong="G1325"\w* \w him|strong="G3588"\w* \w favor|strong="G5485"\w* \w and|strong="G2532"\w* \w wisdom|strong="G4678"\w* \w before|strong="G1909"\w* \w Pharaoh|strong="G5328"\w*, \w king|strong="G3588"\w* \w of|strong="G1537"\w* Egypt. \w He|strong="G2532"\w* \w made|strong="G2525"\w* \w him|strong="G3588"\w* \w governor|strong="G2233"\w* \w over|strong="G1909"\w* Egypt \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w his|strong="G3956"\w* \w house|strong="G3624"\w*. +\v 11 \w Now|strong="G1161"\w* \w a|strong="G2532"\w* \w famine|strong="G3042"\w* \w came|strong="G2064"\w* \w over|strong="G1909"\w* \w all|strong="G3650"\w* \w the|strong="G2532"\w* land \w of|strong="G2532"\w* Egypt \w and|strong="G2532"\w* \w Canaan|strong="G5477"\w*, \w and|strong="G2532"\w* \w great|strong="G3173"\w* \w affliction|strong="G2347"\w*. \w Our|strong="G2532"\w* \w fathers|strong="G3962"\w* \w found|strong="G2147"\w* \w no|strong="G3756"\w* \w food|strong="G5527"\w*. +\v 12 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w Jacob|strong="G2384"\w* heard \w that|strong="G3588"\w* \w there|strong="G1161"\w* \w was|strong="G1510"\w* \w grain|strong="G4621"\w* \w in|strong="G1519"\w* Egypt, \w he|strong="G1161"\w* \w sent|strong="G1821"\w* \w out|strong="G1821"\w* \w our|strong="G1519"\w* \w fathers|strong="G3962"\w* \w the|strong="G1519"\w* \w first|strong="G4413"\w* \w time|strong="G4413"\w*. +\v 13 \w On|strong="G1722"\w* \w the|strong="G1722"\w* \w second|strong="G1208"\w* \w time|strong="G1208"\w* \w Joseph|strong="G2501"\w* \w was|strong="G1096"\w* \w made|strong="G1096"\w* \w known|strong="G5318"\w* \w to|strong="G2532"\w* \w his|strong="G1722"\w* brothers, \w and|strong="G2532"\w* \w Joseph|strong="G2501"\w*’s \w family|strong="G1085"\w* \w was|strong="G1096"\w* \w revealed|strong="G5318"\w* \w to|strong="G2532"\w* \w Pharaoh|strong="G5328"\w*. +\v 14 \w Joseph|strong="G2501"\w* \w sent|strong="G2532"\w* \w and|strong="G2532"\w* summoned \w Jacob|strong="G2384"\w* \w his|strong="G3956"\w* \w father|strong="G3962"\w* \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w his|strong="G3956"\w* \w relatives|strong="G4772"\w*, \w seventy-five|strong="G1440"\w* \w souls|strong="G5590"\w*. +\v 15 \w Jacob|strong="G2384"\w* \w went|strong="G2597"\w* \w down|strong="G2597"\w* \w into|strong="G1519"\w* Egypt \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w died|strong="G5053"\w*, \w himself|strong="G1519"\w* \w and|strong="G2532"\w* \w our|strong="G2532"\w* \w fathers|strong="G3962"\w*; +\v 16 \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w brought|strong="G2532"\w* \w back|strong="G1519"\w* \w to|strong="G1519"\w* \w Shechem|strong="G4966"\w* \w and|strong="G2532"\w* \w laid|strong="G5087"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w tomb|strong="G3418"\w* \w that|strong="G3739"\w* Abraham \w bought|strong="G5608"\w* \w for|strong="G1519"\w* \w a|strong="G2532"\w* \w price|strong="G5092"\w* \w in|strong="G1722"\w* silver \w from|strong="G3844"\w* \w the|strong="G1722"\w* \w children|strong="G5207"\w* \w of|strong="G5207"\w* \w Hamor|strong="G1697"\w* \w of|strong="G5207"\w* \w Shechem|strong="G4966"\w*. +\p +\v 17 “\w But|strong="G1161"\w* \w as|strong="G2531"\w* \w the|strong="G1722"\w* \w time|strong="G5550"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w promise|strong="G1860"\w* \w came|strong="G2532"\w* \w close|strong="G1448"\w* \w which|strong="G3739"\w* \w God|strong="G2316"\w* \w had|strong="G2532"\w* sworn \w to|strong="G2532"\w* Abraham, \w the|strong="G1722"\w* \w people|strong="G2992"\w* grew \w and|strong="G2532"\w* \w multiplied|strong="G4129"\w* \w in|strong="G1722"\w* Egypt, +\v 18 until \w there|strong="G1492"\w* arose \w a|strong="G1909"\w* \w different|strong="G2087"\w* \w king|strong="G3588"\w* \w who|strong="G3739"\w* didn’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w Joseph|strong="G2501"\w*. +\v 19 \w The|strong="G1519"\w* \w same|strong="G3778"\w* \w took|strong="G4160"\w* \w advantage|strong="G2686"\w* \w of|strong="G3962"\w* \w our|strong="G1519"\w* \w race|strong="G1085"\w* \w and|strong="G3962"\w* \w mistreated|strong="G2559"\w* \w our|strong="G1519"\w* \w fathers|strong="G3962"\w*, \w and|strong="G3962"\w* forced \w them|strong="G3588"\w* \w to|strong="G1519"\w* abandon \w their|strong="G1519"\w* \w babies|strong="G1025"\w*, \w so|strong="G1519"\w* \w that|strong="G3588"\w* \w they|strong="G3588"\w* wouldn’\w t|strong="G3588"\w* stay alive. +\v 20 \w At|strong="G1722"\w* \w that|strong="G3739"\w* \w time|strong="G2540"\w* \w Moses|strong="G3475"\w* \w was|strong="G1510"\w* \w born|strong="G1080"\w*, \w and|strong="G2532"\w* \w was|strong="G1510"\w* \w exceedingly|strong="G1510"\w* handsome \w to|strong="G2532"\w* \w God|strong="G2316"\w*. \w He|strong="G2532"\w* \w was|strong="G1510"\w* nourished \w three|strong="G5140"\w* \w months|strong="G3376"\w* \w in|strong="G1722"\w* \w his|strong="G1722"\w* \w father|strong="G3962"\w*’s \w house|strong="G3624"\w*. +\v 21 \w When|strong="G1161"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* abandoned, \w Pharaoh|strong="G5328"\w*’s \w daughter|strong="G2364"\w* \w took|strong="G2532"\w* \w him|strong="G3588"\w* \w up|strong="G1519"\w* \w and|strong="G2532"\w* reared \w him|strong="G3588"\w* \w as|strong="G1519"\w* \w her|strong="G1438"\w* \w own|strong="G1438"\w* \w son|strong="G5207"\w*. +\v 22 \w Moses|strong="G3475"\w* \w was|strong="G1510"\w* instructed \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w wisdom|strong="G4678"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* Egyptians. \w He|strong="G2532"\w* \w was|strong="G1510"\w* \w mighty|strong="G1415"\w* \w in|strong="G1722"\w* \w his|strong="G3956"\w* \w words|strong="G3056"\w* \w and|strong="G2532"\w* \w works|strong="G2041"\w*. +\v 23 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w he|strong="G1161"\w* \w was|strong="G3588"\w* \w forty|strong="G5063"\w* \w years|strong="G5063"\w* \w old|strong="G5550"\w*, \w it|strong="G1161"\w* \w came|strong="G3588"\w* \w into|strong="G1909"\w* \w his|strong="G1909"\w* \w heart|strong="G2588"\w* \w to|strong="G1909"\w* \w visit|strong="G1980"\w* \w his|strong="G1909"\w* brothers,\f + \fr 7:23 \ft The word for “brothers” here and where the context allows may be also correctly translated “brothers and sisters” or “siblings.”\f* \w the|strong="G1161"\w* \w children|strong="G5207"\w* \w of|strong="G5207"\w* \w Israel|strong="G2474"\w*. +\v 24 \w Seeing|strong="G3708"\w* \w one|strong="G5100"\w* \w of|strong="G2532"\w* \w them|strong="G3588"\w* \w suffer|strong="G2532"\w* \w wrong|strong="G1557"\w*, \w he|strong="G2532"\w* defended \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w avenged|strong="G1557"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w oppressed|strong="G2669"\w*, \w striking|strong="G3960"\w* \w the|strong="G2532"\w* Egyptian. +\v 25 \w He|strong="G1161"\w* \w supposed|strong="G3543"\w* \w that|strong="G3754"\w* \w his|strong="G1223"\w* brothers \w understood|strong="G4920"\w* \w that|strong="G3754"\w* \w God|strong="G2316"\w*, \w by|strong="G1223"\w* \w his|strong="G1223"\w* \w hand|strong="G5495"\w*, \w was|strong="G3588"\w* \w giving|strong="G1325"\w* \w them|strong="G3588"\w* \w deliverance|strong="G4991"\w*; \w but|strong="G1161"\w* \w they|strong="G1161"\w* didn’\w t|strong="G3588"\w* \w understand|strong="G4920"\w*. +\p +\v 26 “\w The|strong="G2532"\w* \w day|strong="G2250"\w* \w following|strong="G1966"\w*, \w he|strong="G2532"\w* \w appeared|strong="G3708"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w* \w as|strong="G1519"\w* \w they|strong="G2532"\w* fought, \w and|strong="G2532"\w* urged \w them|strong="G3588"\w* \w to|strong="G1519"\w* \w be|strong="G1510"\w* \w at|strong="G1519"\w* \w peace|strong="G1515"\w* \w again|strong="G1519"\w*, \w saying|strong="G3004"\w*, ‘Sirs, \w you|strong="G3004"\w* \w are|strong="G1510"\w* brothers. \w Why|strong="G2444"\w* \w do|strong="G2532"\w* \w you|strong="G3004"\w* wrong \w one|strong="G1438"\w* \w another|strong="G1438"\w*?’ +\v 27 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w who|strong="G5101"\w* \w did|strong="G2532"\w* \w his|strong="G1909"\w* \w neighbor|strong="G4139"\w* wrong pushed \w him|strong="G3588"\w* away, \w saying|strong="G3004"\w*, ‘\w Who|strong="G5101"\w* \w made|strong="G2525"\w* \w you|strong="G4771"\w* \w a|strong="G2532"\w* \w ruler|strong="G2525"\w* \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w judge|strong="G1348"\w* \w over|strong="G1909"\w* \w us|strong="G3004"\w*? +\v 28 \w Do|strong="G3361"\w* \w you|strong="G4771"\w* \w want|strong="G2309"\w* \w to|strong="G2309"\w* kill \w me|strong="G1473"\w* \w as|strong="G3739"\w* \w you|strong="G4771"\w* killed \w the|strong="G3588"\w* Egyptian \w yesterday|strong="G5504"\w*?’\x + \xo 7:28 \xt Exodus 2:14\x* +\v 29 \w Moses|strong="G3475"\w* \w fled|strong="G5343"\w* \w at|strong="G1722"\w* \w this|strong="G3778"\w* \w saying|strong="G3056"\w*, \w and|strong="G2532"\w* \w became|strong="G1096"\w* \w a|strong="G1096"\w* \w stranger|strong="G3941"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w land|strong="G1093"\w* \w of|strong="G5207"\w* \w Midian|strong="G3099"\w*, \w where|strong="G3757"\w* \w he|strong="G2532"\w* \w became|strong="G1096"\w* \w the|strong="G1722"\w* \w father|strong="G1080"\w* \w of|strong="G5207"\w* \w two|strong="G1417"\w* \w sons|strong="G5207"\w*. +\p +\v 30 “\w When|strong="G2532"\w* \w forty|strong="G5062"\w* \w years|strong="G2094"\w* \w were|strong="G3588"\w* \w fulfilled|strong="G4137"\w*, \w an|strong="G2532"\w* angel \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Lord|strong="G3588"\w* \w appeared|strong="G3708"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wilderness|strong="G2048"\w* \w of|strong="G2532"\w* \w Mount|strong="G3735"\w* \w Sinai|strong="G4614"\w*, \w in|strong="G1722"\w* \w a|strong="G2532"\w* \w flame|strong="G5395"\w* \w of|strong="G2532"\w* \w fire|strong="G4442"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* bush. +\v 31 \w When|strong="G1161"\w* \w Moses|strong="G3475"\w* \w saw|strong="G3708"\w* \w it|strong="G1161"\w*, \w he|strong="G1161"\w* \w wondered|strong="G2296"\w* \w at|strong="G2296"\w* \w the|strong="G1161"\w* \w sight|strong="G3705"\w*. \w As|strong="G1161"\w* \w he|strong="G1161"\w* \w came|strong="G4334"\w* close \w to|strong="G4334"\w* \w see|strong="G3708"\w*, \w the|strong="G1161"\w* \w voice|strong="G5456"\w* \w of|strong="G2962"\w* \w the|strong="G1161"\w* \w Lord|strong="G2962"\w* \w came|strong="G4334"\w* \w to|strong="G4334"\w* \w him|strong="G3588"\w*, +\v 32 ‘\w I|strong="G1473"\w* \w am|strong="G1473"\w* \w the|strong="G2532"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* \w your|strong="G2532"\w* \w fathers|strong="G3962"\w*: \w the|strong="G2532"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* Abraham, \w the|strong="G2532"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* \w Isaac|strong="G2464"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* \w Jacob|strong="G2384"\w*.’\x + \xo 7:32 \xt Exodus 3:6\x* \w Moses|strong="G3475"\w* \w trembled|strong="G1790"\w* \w and|strong="G2532"\w* \w dared|strong="G5111"\w* \w not|strong="G3756"\w* \w look|strong="G2657"\w*. +\v 33 \w The|strong="G1161"\w* \w Lord|strong="G2962"\w* \w said|strong="G3004"\w* \w to|strong="G1909"\w* \w him|strong="G3588"\w*, ‘\w Take|strong="G3089"\w* \w off|strong="G3089"\w* \w your|strong="G2962"\w* \w sandals|strong="G5266"\w*, \w for|strong="G1063"\w* \w the|strong="G1161"\w* \w place|strong="G5117"\w* \w where|strong="G3739"\w* \w you|strong="G4771"\w* \w stand|strong="G2476"\w* \w is|strong="G1510"\w* holy \w ground|strong="G1093"\w*. +\v 34 \w I|strong="G1473"\w* \w have|strong="G2532"\w* surely \w seen|strong="G3708"\w* \w the|strong="G1722"\w* \w affliction|strong="G2561"\w* \w of|strong="G2532"\w* \w my|strong="G3708"\w* \w people|strong="G2992"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w in|strong="G1722"\w* Egypt, \w and|strong="G2532"\w* \w have|strong="G2532"\w* heard \w their|strong="G1438"\w* \w groaning|strong="G4726"\w*. \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w come|strong="G1204"\w* \w down|strong="G2597"\w* \w to|strong="G1519"\w* \w deliver|strong="G1807"\w* \w them|strong="G3588"\w*. \w Now|strong="G3568"\w* \w come|strong="G1204"\w*, \w I|strong="G1473"\w* \w will|strong="G2532"\w* send \w you|strong="G4771"\w* \w into|strong="G1519"\w* Egypt.’\x + \xo 7:34 \xt Exodus 3:5,7-8,10\x* +\p +\v 35 “\w This|strong="G3778"\w* \w Moses|strong="G3475"\w* \w whom|strong="G3739"\w* \w they|strong="G2532"\w* refused, \w saying|strong="G3004"\w*, ‘\w Who|strong="G3739"\w* \w made|strong="G2525"\w* \w you|strong="G4771"\w* \w a|strong="G2532"\w* \w ruler|strong="G2525"\w* \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w judge|strong="G1348"\w*?’—\w God|strong="G2316"\w* \w has|strong="G2316"\w* \w sent|strong="G2316"\w* \w him|strong="G3588"\w* \w as|strong="G1722"\w* \w both|strong="G2532"\w* \w a|strong="G2532"\w* \w ruler|strong="G2525"\w* \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w deliverer|strong="G3086"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w hand|strong="G5495"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* angel \w who|strong="G3739"\w* \w appeared|strong="G3708"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* bush. +\v 36 \w This|strong="G3778"\w* \w man|strong="G3778"\w* \w led|strong="G1806"\w* \w them|strong="G3588"\w* \w out|strong="G1806"\w*, \w having|strong="G2532"\w* \w worked|strong="G4160"\w* \w wonders|strong="G5059"\w* \w and|strong="G2532"\w* \w signs|strong="G4592"\w* \w in|strong="G1722"\w* Egypt, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Red|strong="G2063"\w* \w Sea|strong="G2281"\w*, \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wilderness|strong="G2048"\w* \w for|strong="G1722"\w* \w forty|strong="G5062"\w* \w years|strong="G2094"\w*. +\v 37 \w This|strong="G3778"\w* \w is|strong="G1510"\w* \w that|strong="G3588"\w* \w Moses|strong="G3475"\w* \w who|strong="G3588"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w the|strong="G1537"\w* \w children|strong="G5207"\w* \w of|strong="G1537"\w* \w Israel|strong="G2474"\w*, ‘\w The|strong="G1537"\w* \w Lord|strong="G3588"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w* \w will|strong="G2316"\w* \w raise|strong="G2316"\w* \w up|strong="G1537"\w* \w a|strong="G5613"\w* \w prophet|strong="G4396"\w* \w for|strong="G1537"\w* \w you|strong="G5210"\w* \w from|strong="G1537"\w* \w among|strong="G1537"\w* \w your|strong="G3588"\w* brothers, \w like|strong="G5613"\w* \w me|strong="G1473"\w*.’\f + \fr 7:37 \ft TR adds “You shall listen to him.”\f*\x + \xo 7:37 \xt Deuteronomy 18:15\x* +\v 38 \w This|strong="G3778"\w* \w is|strong="G1510"\w* \w he|strong="G2532"\w* \w who|strong="G3739"\w* \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wilderness|strong="G2048"\w* \w with|strong="G3326"\w* \w the|strong="G1722"\w* angel \w that|strong="G3739"\w* \w spoke|strong="G2980"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w on|strong="G1722"\w* \w Mount|strong="G3735"\w* \w Sinai|strong="G4614"\w*, \w and|strong="G2532"\w* \w with|strong="G3326"\w* \w our|strong="G2532"\w* \w fathers|strong="G3962"\w*, \w who|strong="G3739"\w* \w received|strong="G1209"\w* \w living|strong="G2198"\w* revelations \w to|strong="G2532"\w* \w give|strong="G1325"\w* \w to|strong="G2532"\w* \w us|strong="G1325"\w*, +\v 39 \w to|strong="G1519"\w* \w whom|strong="G3739"\w* \w our|strong="G2532"\w* \w fathers|strong="G3962"\w* wouldn’\w t|strong="G3588"\w* \w be|strong="G1096"\w* \w obedient|strong="G5255"\w*, \w but|strong="G2532"\w* rejected \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w turned|strong="G4762"\w* \w back|strong="G1519"\w* \w in|strong="G1722"\w* \w their|strong="G2532"\w* \w hearts|strong="G2588"\w* \w to|strong="G1519"\w* Egypt, +\v 40 \w saying|strong="G3004"\w* \w to|strong="G3004"\w* Aaron, ‘\w Make|strong="G4160"\w* \w us|strong="G3004"\w* \w gods|strong="G2316"\w* \w that|strong="G3739"\w* \w will|strong="G2316"\w* \w go|strong="G4313"\w* \w before|strong="G3588"\w* \w us|strong="G3004"\w*, \w for|strong="G1063"\w* \w as|strong="G3739"\w* \w for|strong="G1063"\w* \w this|strong="G3778"\w* \w Moses|strong="G3475"\w* \w who|strong="G3739"\w* \w led|strong="G1806"\w* \w us|strong="G3004"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w land|strong="G1093"\w* \w of|strong="G1537"\w* Egypt, \w we|strong="G2249"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w what|strong="G5101"\w* \w has|strong="G2316"\w* \w become|strong="G1096"\w* \w of|strong="G1537"\w* \w him|strong="G3588"\w*.’\x + \xo 7:40 \xt Exodus 32:1\x* +\v 41 \w They|strong="G2532"\w* \w made|strong="G1565"\w* \w a|strong="G2532"\w* \w calf|strong="G3447"\w* \w in|strong="G1722"\w* \w those|strong="G3588"\w* \w days|strong="G2250"\w*, \w and|strong="G2532"\w* \w brought|strong="G2532"\w* \w a|strong="G2532"\w* \w sacrifice|strong="G2378"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w idol|strong="G1497"\w*, \w and|strong="G2532"\w* \w rejoiced|strong="G2165"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w works|strong="G2041"\w* \w of|strong="G2250"\w* \w their|strong="G2532"\w* \w hands|strong="G5495"\w*. +\v 42 \w But|strong="G1161"\w* \w God|strong="G2316"\w* \w turned|strong="G4762"\w* \w away|strong="G4762"\w* \w and|strong="G2532"\w* \w gave|strong="G3860"\w* \w them|strong="G3588"\w* \w up|strong="G3860"\w* \w to|strong="G2532"\w* \w serve|strong="G3000"\w* \w the|strong="G1722"\w* \w army|strong="G4756"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w sky|strong="G3772"\w*,\f + \fr 7:42 \ft This idiom could also be translated “host of heaven”, or “angelic beings”, or “heavenly bodies.”\f* \w as|strong="G2531"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w book|strong="G3588"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w prophets|strong="G4396"\w*, +\q1 ‘\w Did|strong="G2532"\w* \w you|strong="G1722"\w* \w offer|strong="G4374"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w* slain animals \w and|strong="G2532"\w* \w sacrifices|strong="G2378"\w* +\q2 \w forty|strong="G5062"\w* \w years|strong="G2094"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wilderness|strong="G2048"\w*, O \w house|strong="G3624"\w* \w of|strong="G2316"\w* \w Israel|strong="G2474"\w*? +\q1 +\v 43 \w You|strong="G5210"\w* \w took|strong="G2532"\w* \w up|strong="G2532"\w* \w the|strong="G2532"\w* \w tabernacle|strong="G4633"\w* \w of|strong="G2316"\w* \w Moloch|strong="G3434"\w*, +\q2 \w the|strong="G2532"\w* star \w of|strong="G2316"\w* \w your|strong="G2532"\w* \w god|strong="G2316"\w* \w Rephan|strong="G4481"\w*, +\q1 \w the|strong="G2532"\w* \w figures|strong="G5179"\w* \w which|strong="G3739"\w* \w you|strong="G5210"\w* \w made|strong="G4160"\w* \w to|strong="G2532"\w* \w worship|strong="G4352"\w*, +\q2 \w so|strong="G2532"\w* \w I|strong="G3739"\w* \w will|strong="G2316"\w* \w carry|strong="G3351"\w* \w you|strong="G5210"\w* \w away|strong="G3351"\w*\x + \xo 7:43 \xt Amos 5:25-27\x* \w beyond|strong="G1900"\w* Babylon.’ +\p +\v 44 “\w Our|strong="G1722"\w* \w fathers|strong="G3962"\w* \w had|strong="G1510"\w* \w the|strong="G1722"\w* \w tabernacle|strong="G4633"\w* \w of|strong="G3962"\w* \w the|strong="G1722"\w* \w testimony|strong="G3142"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wilderness|strong="G2048"\w*, \w even|strong="G2531"\w* \w as|strong="G2531"\w* \w he|strong="G3739"\w* \w who|strong="G3739"\w* \w spoke|strong="G2980"\w* \w to|strong="G2596"\w* \w Moses|strong="G3475"\w* \w commanded|strong="G1299"\w* \w him|strong="G3588"\w* \w to|strong="G2596"\w* \w make|strong="G4160"\w* \w it|strong="G4160"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1722"\w* \w pattern|strong="G5179"\w* \w that|strong="G3739"\w* \w he|strong="G3739"\w* \w had|strong="G1510"\w* \w seen|strong="G3708"\w*; +\v 45 \w which|strong="G3739"\w* \w also|strong="G2532"\w* \w our|strong="G2316"\w* \w fathers|strong="G3962"\w*, \w in|strong="G1722"\w* \w their|strong="G2532"\w* \w turn|strong="G1237"\w*, \w brought|strong="G1521"\w* \w in|strong="G1722"\w* \w with|strong="G3326"\w* \w Joshua|strong="G2424"\w* \w when|strong="G2532"\w* \w they|strong="G2532"\w* entered \w into|strong="G1722"\w* \w the|strong="G1722"\w* \w possession|strong="G2697"\w* \w of|strong="G2250"\w* \w the|strong="G1722"\w* \w nations|strong="G1484"\w* \w whom|strong="G3739"\w* \w God|strong="G2316"\w* \w drove|strong="G1856"\w* \w out|strong="G2532"\w* \w before|strong="G1722"\w* \w the|strong="G1722"\w* \w face|strong="G4383"\w* \w of|strong="G2250"\w* \w our|strong="G2316"\w* \w fathers|strong="G3962"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w days|strong="G2250"\w* \w of|strong="G2250"\w* \w David|strong="G1138"\w*, +\v 46 \w who|strong="G3739"\w* \w found|strong="G2147"\w* \w favor|strong="G5485"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w sight|strong="G1799"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* asked \w to|strong="G2532"\w* \w find|strong="G2147"\w* \w a|strong="G2532"\w* habitation \w for|strong="G2532"\w* \w the|strong="G2532"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* \w Jacob|strong="G2384"\w*. +\v 47 \w But|strong="G1161"\w* \w Solomon|strong="G4672"\w* \w built|strong="G3618"\w* him \w a|strong="G1161"\w* \w house|strong="G3624"\w*. +\v 48 However, \w the|strong="G1722"\w* \w Most|strong="G5310"\w* \w High|strong="G5310"\w* doesn’\w t|strong="G3588"\w* \w dwell|strong="G2730"\w* \w in|strong="G1722"\w* temples \w made|strong="G5499"\w* \w with|strong="G1722"\w* \w hands|strong="G5499"\w*, \w as|strong="G2531"\w* \w the|strong="G1722"\w* \w prophet|strong="G4396"\w* \w says|strong="G3004"\w*, +\q1 +\v 49 ‘\w heaven|strong="G3772"\w* \w is|strong="G3588"\w* \w my|strong="G1473"\w* \w throne|strong="G2362"\w*, +\q2 \w and|strong="G1161"\w* \w the|strong="G1161"\w* \w earth|strong="G1093"\w* \w a|strong="G2228"\w* \w footstool|strong="G5286"\w* \w for|strong="G1161"\w* \w my|strong="G1473"\w* \w feet|strong="G4228"\w*. +\q1 \w What|strong="G5101"\w* \w kind|strong="G4169"\w* \w of|strong="G3624"\w* \w house|strong="G3624"\w* \w will|strong="G5101"\w* \w you|strong="G3004"\w* \w build|strong="G3618"\w* \w me|strong="G1473"\w*?’ \w says|strong="G3004"\w* \w the|strong="G1161"\w* \w Lord|strong="G2962"\w*. +\q2 ‘\w Or|strong="G2228"\w* \w what|strong="G5101"\w* \w is|strong="G3588"\w* \w the|strong="G1161"\w* \w place|strong="G5117"\w* \w of|strong="G3624"\w* \w my|strong="G1473"\w* \w rest|strong="G2663"\w*? +\q1 +\v 50 Didn’\w t|strong="G3588"\w* \w my|strong="G3956"\w* \w hand|strong="G5495"\w* \w make|strong="G4160"\w* \w all|strong="G3956"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w*?’\x + \xo 7:50 \xt Isaiah 66:1-2\x* +\p +\v 51 “\w You|strong="G5210"\w* \w stiff-necked|strong="G4644"\w* \w and|strong="G2532"\w* uncircumcised \w in|strong="G2532"\w* \w heart|strong="G2588"\w* \w and|strong="G2532"\w* \w ears|strong="G3775"\w*, \w you|strong="G5210"\w* always resist \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*! \w As|strong="G5613"\w* \w your|strong="G2532"\w* \w fathers|strong="G3962"\w* \w did|strong="G2532"\w*, \w so|strong="G2532"\w* \w you|strong="G5210"\w* \w do|strong="G2532"\w*. +\v 52 \w Which|strong="G3739"\w* \w of|strong="G4012"\w* \w the|strong="G2532"\w* \w prophets|strong="G4396"\w* didn’\w t|strong="G3588"\w* \w your|strong="G2532"\w* \w fathers|strong="G3962"\w* \w persecute|strong="G1377"\w*? \w They|strong="G2532"\w* killed \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w foretold|strong="G4293"\w* \w the|strong="G2532"\w* \w coming|strong="G1096"\w* \w of|strong="G4012"\w* \w the|strong="G2532"\w* \w Righteous|strong="G1342"\w* \w One|strong="G3739"\w*, \w of|strong="G4012"\w* \w whom|strong="G3739"\w* \w you|strong="G5210"\w* \w have|strong="G2532"\w* \w now|strong="G3568"\w* \w become|strong="G1096"\w* \w betrayers|strong="G4273"\w* \w and|strong="G2532"\w* \w murderers|strong="G5406"\w*. +\v 53 \w You|strong="G2532"\w* \w received|strong="G2983"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w* \w as|strong="G1519"\w* \w it|strong="G2532"\w* \w was|strong="G3588"\w* \w ordained|strong="G1296"\w* \w by|strong="G2532"\w* angels, \w and|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w keep|strong="G5442"\w* \w it|strong="G2532"\w*!” +\p +\v 54 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w they|strong="G2532"\w* heard \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w cut|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w heart|strong="G2588"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w gnashed|strong="G1031"\w* \w at|strong="G1909"\w* \w him|strong="G3588"\w* \w with|strong="G2532"\w* \w their|strong="G2532"\w* \w teeth|strong="G3599"\w*. +\v 55 \w But|strong="G1161"\w* \w he|strong="G2532"\w*, \w being|strong="G5225"\w* \w full|strong="G4134"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*, \w looked|strong="G3708"\w* \w up|strong="G1519"\w* steadfastly \w into|strong="G1519"\w* \w heaven|strong="G3772"\w* \w and|strong="G2532"\w* \w saw|strong="G3708"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w standing|strong="G2476"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*, +\v 56 \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Behold|strong="G2400"\w*, \w I|strong="G2532"\w* \w see|strong="G3708"\w* \w the|strong="G2532"\w* \w heavens|strong="G3772"\w* \w opened|strong="G1272"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w of|strong="G1537"\w* \w Man|strong="G5207"\w* \w standing|strong="G2476"\w* \w at|strong="G1537"\w* \w the|strong="G2532"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*!” +\p +\v 57 \w But|strong="G1161"\w* \w they|strong="G2532"\w* \w cried|strong="G2896"\w* \w out|strong="G2896"\w* \w with|strong="G2532"\w* \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w* \w and|strong="G2532"\w* \w stopped|strong="G4912"\w* \w their|strong="G2532"\w* \w ears|strong="G3775"\w*, \w then|strong="G2532"\w* \w rushed|strong="G3729"\w* \w at|strong="G1909"\w* \w him|strong="G3588"\w* \w with|strong="G2532"\w* \w one|strong="G3588"\w* \w accord|strong="G3661"\w*. +\v 58 \w They|strong="G2532"\w* \w threw|strong="G1544"\w* \w him|strong="G3588"\w* \w out|strong="G1544"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w and|strong="G2532"\w* \w stoned|strong="G3036"\w* \w him|strong="G3588"\w*. \w The|strong="G2532"\w* \w witnesses|strong="G3144"\w* placed \w their|strong="G2532"\w* \w garments|strong="G2440"\w* \w at|strong="G3844"\w* \w the|strong="G2532"\w* \w feet|strong="G4228"\w* \w of|strong="G2532"\w* \w a|strong="G2532"\w* \w young|strong="G3494"\w* \w man|strong="G3494"\w* \w named|strong="G2564"\w* \w Saul|strong="G4569"\w*. +\v 59 \w They|strong="G2532"\w* \w stoned|strong="G3036"\w* \w Stephen|strong="G4736"\w* \w as|strong="G2532"\w* \w he|strong="G2532"\w* \w called|strong="G3004"\w* \w out|strong="G2532"\w*, \w saying|strong="G3004"\w*, “\w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*, \w receive|strong="G1209"\w* \w my|strong="G1473"\w* \w spirit|strong="G4151"\w*!” +\v 60 \w He|strong="G2532"\w* \w kneeled|strong="G5087"\w* \w down|strong="G5087"\w* \w and|strong="G2532"\w* \w cried|strong="G2896"\w* \w with|strong="G2532"\w* \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, “\w Lord|strong="G2962"\w*, don’\w t|strong="G3588"\w* \w hold|strong="G2476"\w* \w this|strong="G3778"\w* sin \w against|strong="G3361"\w* \w them|strong="G3588"\w*!” \w When|strong="G1161"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w said|strong="G3004"\w* \w this|strong="G3778"\w*, \w he|strong="G2532"\w* \w fell|strong="G2837"\w* \w asleep|strong="G2837"\w*. +\c 8 +\p +\v 1 \w Saul|strong="G4569"\w* \w was|strong="G1510"\w* \w consenting|strong="G2532"\w* \w to|strong="G2532"\w* \w his|strong="G3956"\w* death. \w A|strong="G1096"\w* \w great|strong="G3173"\w* \w persecution|strong="G1375"\w* \w arose|strong="G1096"\w* \w against|strong="G2596"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w* \w which|strong="G3588"\w* \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w Jerusalem|strong="G2414"\w* \w in|strong="G1722"\w* \w that|strong="G3588"\w* \w day|strong="G2250"\w*. \w They|strong="G2532"\w* \w were|strong="G1510"\w* \w all|strong="G3956"\w* \w scattered|strong="G1289"\w* \w abroad|strong="G1289"\w* \w throughout|strong="G2596"\w* \w the|strong="G1722"\w* \w regions|strong="G5561"\w* \w of|strong="G2250"\w* \w Judea|strong="G2449"\w* \w and|strong="G2532"\w* \w Samaria|strong="G4540"\w*, \w except|strong="G4133"\w* \w for|strong="G1909"\w* \w the|strong="G1722"\w* apostles. +\v 2 \w Devout|strong="G2126"\w* \w men|strong="G3588"\w* \w buried|strong="G4792"\w* \w Stephen|strong="G4736"\w* \w and|strong="G2532"\w* lamented \w greatly|strong="G3173"\w* \w over|strong="G1909"\w* \w him|strong="G3588"\w*. +\v 3 \w But|strong="G1161"\w* \w Saul|strong="G4569"\w* ravaged \w the|strong="G2532"\w* \w assembly|strong="G1577"\w*, \w entering|strong="G1531"\w* \w into|strong="G1519"\w* \w every|strong="G2596"\w* \w house|strong="G3624"\w* \w and|strong="G2532"\w* \w dragged|strong="G4951"\w* \w both|strong="G2532"\w* \w men|strong="G3588"\w* \w and|strong="G2532"\w* \w women|strong="G1135"\w* \w off|strong="G2596"\w* \w to|strong="G1519"\w* \w prison|strong="G5438"\w*. +\v 4 \w Therefore|strong="G3767"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w scattered|strong="G1289"\w* \w abroad|strong="G1289"\w* \w went|strong="G1330"\w* around \w preaching|strong="G2097"\w* \w the|strong="G3588"\w* \w word|strong="G3056"\w*. +\v 5 \w Philip|strong="G5376"\w* \w went|strong="G2718"\w* \w down|strong="G2718"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w city|strong="G4172"\w* \w of|strong="G4172"\w* \w Samaria|strong="G4540"\w* \w and|strong="G1161"\w* \w proclaimed|strong="G2784"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w* \w the|strong="G1519"\w* \w Christ|strong="G5547"\w*. +\v 6 \w The|strong="G1722"\w* \w multitudes|strong="G3793"\w* listened \w with|strong="G1722"\w* \w one|strong="G3739"\w* \w accord|strong="G3661"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w things|strong="G3588"\w* \w that|strong="G3739"\w* \w were|strong="G3588"\w* \w spoken|strong="G3004"\w* \w by|strong="G1722"\w* \w Philip|strong="G5376"\w* \w when|strong="G1161"\w* \w they|strong="G2532"\w* heard \w and|strong="G2532"\w* saw \w the|strong="G1722"\w* \w signs|strong="G4592"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w did|strong="G4160"\w*. +\v 7 \w For|strong="G1063"\w* unclean \w spirits|strong="G4151"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G4151"\w* \w many|strong="G4183"\w* \w of|strong="G4151"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w had|strong="G2192"\w* \w them|strong="G3588"\w*. \w They|strong="G2532"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w*, crying \w with|strong="G2532"\w* \w a|strong="G2192"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*. \w Many|strong="G4183"\w* \w who|strong="G3588"\w* \w had|strong="G2192"\w* \w been|strong="G2192"\w* \w paralyzed|strong="G3886"\w* \w and|strong="G2532"\w* \w lame|strong="G5560"\w* \w were|strong="G3588"\w* \w healed|strong="G2323"\w*. +\v 8 \w There|strong="G1161"\w* \w was|strong="G1096"\w* \w great|strong="G4183"\w* \w joy|strong="G5479"\w* \w in|strong="G1722"\w* \w that|strong="G3588"\w* \w city|strong="G4172"\w*. +\p +\v 9 \w But|strong="G1161"\w* \w there|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w certain|strong="G5100"\w* \w man|strong="G5100"\w*, \w Simon|strong="G4613"\w* \w by|strong="G1722"\w* \w name|strong="G3686"\w*, \w who|strong="G3588"\w* \w used|strong="G4172"\w* \w to|strong="G2532"\w* practice \w sorcery|strong="G3096"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w city|strong="G4172"\w* \w and|strong="G2532"\w* \w amazed|strong="G1839"\w* \w the|strong="G1722"\w* \w people|strong="G1484"\w* \w of|strong="G2532"\w* \w Samaria|strong="G4540"\w*, \w making|strong="G2532"\w* \w himself|strong="G1438"\w* \w out|strong="G2532"\w* \w to|strong="G2532"\w* \w be|strong="G1510"\w* \w some|strong="G5100"\w* \w great|strong="G3173"\w* \w one|strong="G5100"\w*, +\v 10 \w to|strong="G3004"\w* \w whom|strong="G3739"\w* \w they|strong="G3588"\w* \w all|strong="G3956"\w* listened, \w from|strong="G3588"\w* \w the|strong="G3956"\w* \w least|strong="G3398"\w* \w to|strong="G3004"\w* \w the|strong="G3956"\w* \w greatest|strong="G3173"\w*, \w saying|strong="G3004"\w*, “\w This|strong="G3778"\w* \w man|strong="G3778"\w* \w is|strong="G1510"\w* \w that|strong="G3739"\w* \w great|strong="G3173"\w* \w power|strong="G1411"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*.” +\v 11 \w They|strong="G1161"\w* listened \w to|strong="G1161"\w* \w him|strong="G3588"\w* \w because|strong="G1223"\w* \w for|strong="G1223"\w* \w a|strong="G1161"\w* \w long|strong="G2425"\w* \w time|strong="G5550"\w* \w he|strong="G1161"\w* \w had|strong="G3588"\w* \w amazed|strong="G1839"\w* \w them|strong="G3588"\w* \w with|strong="G1223"\w* \w his|strong="G1438"\w* \w sorceries|strong="G3095"\w*. +\v 12 \w But|strong="G1161"\w* \w when|strong="G3753"\w* \w they|strong="G2532"\w* \w believed|strong="G4100"\w* \w Philip|strong="G5376"\w* \w preaching|strong="G2097"\w* \w good|strong="G2097"\w* \w news|strong="G2097"\w* \w concerning|strong="G4012"\w* \w God|strong="G2316"\w*’s Kingdom \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w name|strong="G3686"\w* \w of|strong="G4012"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w they|strong="G2532"\w* \w were|strong="G3588"\w* baptized, \w both|strong="G2532"\w* \w men|strong="G3588"\w* \w and|strong="G2532"\w* \w women|strong="G1135"\w*. +\v 13 \w Simon|strong="G4613"\w* \w himself|strong="G1839"\w* \w also|strong="G2532"\w* \w believed|strong="G4100"\w*. \w Being|strong="G1510"\w* baptized, \w he|strong="G2532"\w* \w continued|strong="G4342"\w* \w with|strong="G2532"\w* \w Philip|strong="G5376"\w*. \w Seeing|strong="G2334"\w* \w signs|strong="G4592"\w* \w and|strong="G2532"\w* \w great|strong="G3173"\w* \w miracles|strong="G1411"\w* occurring, \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w amazed|strong="G1839"\w*. +\p +\v 14 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w the|strong="G1722"\w* apostles \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w at|strong="G1722"\w* \w Jerusalem|strong="G2414"\w* heard \w that|strong="G3754"\w* \w Samaria|strong="G4540"\w* \w had|strong="G2532"\w* \w received|strong="G1209"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w*, \w they|strong="G2532"\w* \w sent|strong="G2316"\w* \w Peter|strong="G4074"\w* \w and|strong="G2532"\w* \w John|strong="G2491"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, +\v 15 \w who|strong="G3748"\w*, \w when|strong="G4336"\w* \w they|strong="G3748"\w* \w had|strong="G3748"\w* \w come|strong="G2597"\w* \w down|strong="G2597"\w*, \w prayed|strong="G4336"\w* \w for|strong="G4012"\w* \w them|strong="G2983"\w*, \w that|strong="G3704"\w* \w they|strong="G3748"\w* might \w receive|strong="G2983"\w* \w the|strong="G2983"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*; +\v 16 \w for|strong="G1063"\w* \w as|strong="G1519"\w* \w yet|strong="G1161"\w* \w he|strong="G1161"\w* \w had|strong="G2424"\w* \w fallen|strong="G1968"\w* \w on|strong="G1909"\w* \w none|strong="G3762"\w* \w of|strong="G3686"\w* \w them|strong="G3588"\w*. \w They|strong="G1161"\w* \w had|strong="G2424"\w* \w only|strong="G3440"\w* \w been|strong="G1510"\w* baptized \w in|strong="G1519"\w* \w the|strong="G1519"\w* \w name|strong="G3686"\w* \w of|strong="G3686"\w* \w Christ|strong="G2962"\w* \w Jesus|strong="G2424"\w*. +\v 17 \w Then|strong="G2532"\w* \w they|strong="G2532"\w* \w laid|strong="G2007"\w* \w their|strong="G1438"\w* \w hands|strong="G5495"\w* \w on|strong="G1909"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w received|strong="G2983"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*. +\v 18 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w Simon|strong="G4613"\w* \w saw|strong="G3708"\w* \w that|strong="G3754"\w* \w the|strong="G1161"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w through|strong="G1223"\w* \w the|strong="G1161"\w* \w laying|strong="G1936"\w* \w on|strong="G5495"\w* \w of|strong="G4151"\w* \w the|strong="G1161"\w* apostles’ \w hands|strong="G5495"\w*, \w he|strong="G1161"\w* \w offered|strong="G4374"\w* \w them|strong="G3588"\w* \w money|strong="G5536"\w*, +\v 19 \w saying|strong="G3004"\w*, “\w Give|strong="G1325"\w* \w me|strong="G1325"\w* \w also|strong="G2504"\w* \w this|strong="G3778"\w* \w power|strong="G1849"\w*, \w that|strong="G2443"\w* \w whomever|strong="G3739"\w* \w I|strong="G3739"\w* \w lay|strong="G2007"\w* \w my|strong="G1325"\w* \w hands|strong="G5495"\w* \w on|strong="G5495"\w* \w may|strong="G2443"\w* \w receive|strong="G2983"\w* \w the|strong="G3588"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*.” +\v 20 \w But|strong="G1161"\w* \w Peter|strong="G4074"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, “\w May|strong="G2316"\w* \w your|strong="G1223"\w* silver perish \w with|strong="G4862"\w* \w you|strong="G4771"\w*, \w because|strong="G3754"\w* \w you|strong="G4771"\w* \w thought|strong="G3543"\w* \w you|strong="G4771"\w* \w could|strong="G3588"\w* \w obtain|strong="G2932"\w* \w the|strong="G1519"\w* \w gift|strong="G1431"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w* \w with|strong="G4862"\w* \w money|strong="G5536"\w*! +\v 21 \w You|strong="G4771"\w* \w have|strong="G1510"\w* \w neither|strong="G3761"\w* \w part|strong="G3310"\w* \w nor|strong="G3761"\w* \w lot|strong="G2819"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* \w matter|strong="G3056"\w*, \w for|strong="G1063"\w* \w your|strong="G1722"\w* \w heart|strong="G2588"\w* isn’\w t|strong="G3588"\w* \w right|strong="G2117"\w* \w before|strong="G1722"\w* \w God|strong="G2316"\w*. +\v 22 \w Repent|strong="G3340"\w* \w therefore|strong="G3767"\w* \w of|strong="G2532"\w* \w this|strong="G3778"\w*, \w your|strong="G2962"\w* \w wickedness|strong="G2549"\w*, \w and|strong="G2532"\w* \w ask|strong="G1189"\w* \w God|strong="G2532"\w* \w if|strong="G1487"\w* perhaps \w the|strong="G2532"\w* \w thought|strong="G1963"\w* \w of|strong="G2532"\w* \w your|strong="G2962"\w* \w heart|strong="G2588"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* forgiven \w you|strong="G4771"\w*. +\v 23 \w For|strong="G1063"\w* \w I|strong="G2532"\w* \w see|strong="G3708"\w* \w that|strong="G2532"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* poison \w of|strong="G2532"\w* \w bitterness|strong="G4088"\w* \w and|strong="G2532"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w bondage|strong="G4886"\w* \w of|strong="G2532"\w* iniquity.” +\p +\v 24 \w Simon|strong="G4613"\w* \w answered|strong="G3004"\w*, “\w Pray|strong="G1189"\w* \w for|strong="G5228"\w* \w me|strong="G1473"\w* \w to|strong="G4314"\w* \w the|strong="G1161"\w* \w Lord|strong="G2962"\w*, \w that|strong="G3739"\w* \w none|strong="G3367"\w* \w of|strong="G2962"\w* \w the|strong="G1161"\w* \w things|strong="G3588"\w* \w which|strong="G3739"\w* \w you|strong="G5210"\w* \w have|strong="G1473"\w* \w spoken|strong="G3004"\w* \w happen|strong="G1904"\w* \w to|strong="G4314"\w* \w me|strong="G1473"\w*.” +\p +\v 25 \w They|strong="G2532"\w* \w therefore|strong="G3767"\w*, \w when|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w testified|strong="G1263"\w* \w and|strong="G2532"\w* \w spoken|strong="G2980"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w returned|strong="G5290"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w*, \w and|strong="G2532"\w* \w preached|strong="G2097"\w* \w the|strong="G2532"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w* \w to|strong="G1519"\w* \w many|strong="G4183"\w* \w villages|strong="G2968"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w Samaritans|strong="G4541"\w*. +\p +\v 26 \w Then|strong="G2532"\w* \w an|strong="G2532"\w* \w angel|strong="G2597"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w spoke|strong="G2980"\w* \w to|strong="G1519"\w* \w Philip|strong="G5376"\w*, \w saying|strong="G3004"\w*, “Arise, \w and|strong="G2532"\w* \w go|strong="G4198"\w* \w toward|strong="G1519"\w* \w the|strong="G2532"\w* \w south|strong="G3314"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w way|strong="G3598"\w* \w that|strong="G3588"\w* \w goes|strong="G4198"\w* \w down|strong="G2597"\w* \w from|strong="G2597"\w* \w Jerusalem|strong="G2419"\w* \w to|strong="G1519"\w* \w Gaza|strong="G1048"\w*. \w This|strong="G3778"\w* \w is|strong="G1510"\w* \w a|strong="G2532"\w* \w desert|strong="G2048"\w*.” +\p +\v 27 \w He|strong="G2532"\w* arose \w and|strong="G2532"\w* \w went|strong="G4198"\w*; \w and|strong="G2532"\w* \w behold|strong="G2400"\w*, \w there|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w man|strong="G3956"\w* \w of|strong="G2532"\w* Ethiopia, \w a|strong="G2532"\w* \w eunuch|strong="G2135"\w* \w of|strong="G2532"\w* \w great|strong="G3956"\w* \w authority|strong="G1413"\w* \w under|strong="G1909"\w* \w Candace|strong="G2582"\w*, queen \w of|strong="G2532"\w* \w the|strong="G2532"\w* Ethiopians, \w who|strong="G3739"\w* \w was|strong="G1510"\w* \w over|strong="G1909"\w* \w all|strong="G3956"\w* \w her|strong="G1519"\w* \w treasure|strong="G1047"\w*, \w who|strong="G3739"\w* \w had|strong="G2532"\w* \w come|strong="G2064"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w* \w to|strong="G1519"\w* \w worship|strong="G4352"\w*. +\v 28 \w He|strong="G2532"\w* \w was|strong="G1510"\w* \w returning|strong="G5290"\w* \w and|strong="G2532"\w* \w sitting|strong="G2521"\w* \w in|strong="G1909"\w* \w his|strong="G1909"\w* chariot, \w and|strong="G2532"\w* \w was|strong="G1510"\w* reading \w the|strong="G2532"\w* \w prophet|strong="G4396"\w* \w Isaiah|strong="G2268"\w*. +\p +\v 29 \w The|strong="G2532"\w* \w Spirit|strong="G4151"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w Philip|strong="G5376"\w*, “\w Go|strong="G4151"\w* \w near|strong="G4334"\w*, \w and|strong="G2532"\w* \w join|strong="G2853"\w* yourself \w to|strong="G2532"\w* \w this|strong="G3778"\w* chariot.” +\p +\v 30 \w Philip|strong="G5376"\w* \w ran|strong="G4370"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w heard|strong="G1097"\w* \w him|strong="G3588"\w* reading \w Isaiah|strong="G2268"\w* \w the|strong="G2532"\w* \w prophet|strong="G4396"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Do|strong="G2532"\w* \w you|strong="G3739"\w* \w understand|strong="G1097"\w* \w what|strong="G3739"\w* \w you|strong="G3739"\w* \w are|strong="G3588"\w* reading?” +\p +\v 31 \w He|strong="G1161"\w* \w said|strong="G3004"\w*, “\w How|strong="G4459"\w* \w can|strong="G1410"\w* \w I|strong="G1473"\w*, \w unless|strong="G1437"\w* \w someone|strong="G5100"\w* explains \w it|strong="G1161"\w* \w to|strong="G3004"\w* \w me|strong="G1473"\w*?” \w He|strong="G1161"\w* \w begged|strong="G3870"\w* \w Philip|strong="G5376"\w* \w to|strong="G3004"\w* come \w up|strong="G3361"\w* \w and|strong="G1161"\w* \w sit|strong="G2523"\w* \w with|strong="G4862"\w* \w him|strong="G3588"\w*. +\v 32 \w Now|strong="G1161"\w* \w the|strong="G2532"\w* \w passage|strong="G4042"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Scripture|strong="G1124"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* reading \w was|strong="G1510"\w* \w this|strong="G3778"\w*, +\q1 “\w He|strong="G2532"\w* \w was|strong="G1510"\w* led \w as|strong="G5613"\w* \w a|strong="G5613"\w* \w sheep|strong="G4263"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w slaughter|strong="G4967"\w*. +\q2 \w As|strong="G5613"\w* \w a|strong="G5613"\w* lamb \w before|strong="G1909"\w* \w his|strong="G1909"\w* \w shearer|strong="G2751"\w* \w is|strong="G1510"\w* silent, +\q2 \w so|strong="G3779"\w* \w he|strong="G2532"\w* doesn’\w t|strong="G3588"\w* open \w his|strong="G1909"\w* \w mouth|strong="G4750"\w*. +\q1 +\v 33 \w In|strong="G1722"\w* \w his|strong="G1722"\w* \w humiliation|strong="G5014"\w*, \w his|strong="G1722"\w* \w judgment|strong="G2920"\w* \w was|strong="G3588"\w* taken away. +\q2 \w Who|strong="G5101"\w* \w will|strong="G5101"\w* \w declare|strong="G1334"\w* \w His|strong="G1722"\w* \w generation|strong="G1074"\w*? +\q2 \w For|strong="G3754"\w* \w his|strong="G1722"\w* \w life|strong="G2222"\w* \w is|strong="G3588"\w* taken \w from|strong="G3588"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w*.”\x + \xo 8:33 \xt Isaiah 53:7,8\x* +\p +\v 34 \w The|strong="G1161"\w* \w eunuch|strong="G2135"\w* \w answered|strong="G3004"\w* \w Philip|strong="G5376"\w*, “\w Who|strong="G5101"\w* \w is|strong="G3588"\w* \w the|strong="G1161"\w* \w prophet|strong="G4396"\w* \w talking|strong="G3004"\w* \w about|strong="G4012"\w*? \w About|strong="G4012"\w* \w himself|strong="G1438"\w*, \w or|strong="G2228"\w* \w about|strong="G4012"\w* \w someone|strong="G5100"\w* \w else|strong="G2228"\w*?” +\p +\v 35 \w Philip|strong="G5376"\w* opened \w his|strong="G2532"\w* \w mouth|strong="G4750"\w*, \w and|strong="G2532"\w* beginning \w from|strong="G2532"\w* \w this|strong="G3778"\w* \w Scripture|strong="G1124"\w*, \w preached|strong="G2097"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w about|strong="G2424"\w* \w Jesus|strong="G2424"\w*. +\v 36 \w As|strong="G5613"\w* \w they|strong="G2532"\w* \w went|strong="G4198"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w way|strong="G3598"\w*, \w they|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G2532"\w* \w some|strong="G5100"\w* \w water|strong="G5204"\w*; \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w eunuch|strong="G2135"\w* \w said|strong="G5346"\w*, “\w Behold|strong="G2400"\w*, \w here|strong="G2400"\w* \w is|strong="G3588"\w* \w water|strong="G5204"\w*. \w What|strong="G5101"\w* \w is|strong="G3588"\w* keeping \w me|strong="G1473"\w* \w from|strong="G2064"\w* \w being|strong="G2532"\w* baptized?” +\p +\v 37 \f + \fr 8:37 \ft TR adds \fqa Philip said, “If you believe with all your heart, you may.” He answered, “I believe that Jesus Christ is the Son of God.”\f* +\v 38 \w He|strong="G2532"\w* \w commanded|strong="G2753"\w* \w the|strong="G2532"\w* chariot \w to|strong="G1519"\w* \w stand|strong="G2476"\w* \w still|strong="G2476"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w both|strong="G2532"\w* \w went|strong="G2597"\w* \w down|strong="G2597"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w water|strong="G5204"\w*, \w both|strong="G2532"\w* \w Philip|strong="G5376"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w eunuch|strong="G2135"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* baptized \w him|strong="G3588"\w*. +\p +\v 39 \w When|strong="G3753"\w* \w they|strong="G2532"\w* \w came|strong="G2532"\w* \w up|strong="G2532"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w water|strong="G5204"\w*, \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w caught|strong="G2962"\w* \w Philip|strong="G5376"\w* \w away|strong="G4198"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w eunuch|strong="G2135"\w* didn’\w t|strong="G3588"\w* \w see|strong="G3708"\w* \w him|strong="G3588"\w* \w any|strong="G3756"\w* \w more|strong="G3765"\w*, \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w went|strong="G4198"\w* \w on|strong="G1537"\w* \w his|strong="G3708"\w* \w way|strong="G3598"\w* \w rejoicing|strong="G5463"\w*. +\v 40 \w But|strong="G1161"\w* \w Philip|strong="G5376"\w* \w was|strong="G3588"\w* \w found|strong="G2147"\w* \w at|strong="G1519"\w* Azotus. \w Passing|strong="G1330"\w* \w through|strong="G1330"\w*, \w he|strong="G2532"\w* \w preached|strong="G2097"\w* \w the|strong="G2532"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w* \w to|strong="G1519"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w cities|strong="G4172"\w* \w until|strong="G2193"\w* \w he|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w Caesarea|strong="G2542"\w*. +\c 9 +\p +\v 1 \w But|strong="G1161"\w* \w Saul|strong="G4569"\w*, \w still|strong="G2089"\w* \w breathing|strong="G1709"\w* threats \w and|strong="G2532"\w* \w slaughter|strong="G5408"\w* \w against|strong="G1519"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w went|strong="G4334"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w high|strong="G2532"\w* priest +\v 2 \w and|strong="G2532"\w* asked \w for|strong="G1519"\w* \w letters|strong="G1992"\w* \w from|strong="G3844"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w synagogues|strong="G4864"\w* \w of|strong="G2532"\w* \w Damascus|strong="G1154"\w*, \w that|strong="G3588"\w* \w if|strong="G1437"\w* \w he|strong="G2532"\w* \w found|strong="G2147"\w* \w any|strong="G5100"\w* \w who|strong="G3588"\w* \w were|strong="G1510"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Way|strong="G3598"\w*, \w whether|strong="G1437"\w* \w men|strong="G5100"\w* \w or|strong="G2532"\w* \w women|strong="G1135"\w*, \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w bring|strong="G2532"\w* \w them|strong="G3588"\w* \w bound|strong="G1210"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w*. +\v 3 \w As|strong="G1722"\w* \w he|strong="G1161"\w* traveled, \w he|strong="G1161"\w* \w got|strong="G1096"\w* \w close|strong="G1448"\w* \w to|strong="G1722"\w* \w Damascus|strong="G1154"\w*, \w and|strong="G1161"\w* \w suddenly|strong="G1810"\w* \w a|strong="G1096"\w* \w light|strong="G5457"\w* \w from|strong="G1537"\w* \w the|strong="G1722"\w* \w sky|strong="G3772"\w* \w shone|strong="G4015"\w* \w around|strong="G4015"\w* \w him|strong="G3588"\w*. +\v 4 \w He|strong="G2532"\w* \w fell|strong="G4098"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w and|strong="G2532"\w* heard \w a|strong="G2532"\w* \w voice|strong="G5456"\w* \w saying|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \wj “\+w Saul|strong="G4549"\+w*, \+w Saul|strong="G4549"\+w*, \+w why|strong="G5101"\+w* \+w do|strong="G5101"\+w* \+w you|strong="G3004"\+w* \+w persecute|strong="G1377"\+w* \+w me|strong="G1473"\+w*?”\wj* +\p +\v 5 \w He|strong="G1161"\w* \w said|strong="G3004"\w*, “\w Who|strong="G3739"\w* \w are|strong="G1510"\w* \w you|strong="G4771"\w*, \w Lord|strong="G2962"\w*?” +\p \w The|strong="G1161"\w* \w Lord|strong="G2962"\w* \w said|strong="G3004"\w*, \wj “\+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w Jesus|strong="G2424"\+w*, \+w whom|strong="G3739"\+w* \+w you|strong="G4771"\+w* \+w are|strong="G1510"\+w* \+w persecuting|strong="G1377"\+w*.\wj*\f + \fr 9:5 \ft TR adds “It’s hard for you to kick against the cattle prods.”\f* +\v 6 \wj \+w But|strong="G2532"\+w*\wj*\f + \fr 9:6 \ft TR omits “But” \f* \wj \+w rise|strong="G1163"\+w* \+w up|strong="G1210"\+w* \+w and|strong="G2532"\+w* \+w enter|strong="G1525"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w city|strong="G4172"\+w*, \+w then|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w will|strong="G5101"\+w* \+w be|strong="G2532"\+w* \+w told|strong="G2980"\+w* \+w what|strong="G5101"\+w* \+w you|strong="G4771"\+w* \+w must|strong="G1163"\+w* \+w do|strong="G4160"\+w*.”\wj* +\p +\v 7 \w The|strong="G1161"\w* \w men|strong="G3588"\w* \w who|strong="G3588"\w* \w traveled|strong="G4922"\w* \w with|strong="G3588"\w* \w him|strong="G3588"\w* \w stood|strong="G2476"\w* \w speechless|strong="G1769"\w*, hearing \w the|strong="G1161"\w* \w sound|strong="G5456"\w*, \w but|strong="G1161"\w* \w seeing|strong="G2334"\w* \w no|strong="G3367"\w* \w one|strong="G3367"\w*. +\v 8 \w Saul|strong="G4569"\w* \w arose|strong="G1453"\w* \w from|strong="G3588"\w* \w the|strong="G1519"\w* \w ground|strong="G1093"\w*, \w and|strong="G1161"\w* \w when|strong="G1161"\w* \w his|strong="G1519"\w* \w eyes|strong="G3788"\w* \w were|strong="G3588"\w* opened, \w he|strong="G1161"\w* saw \w no|strong="G3762"\w* \w one|strong="G3762"\w*. \w They|strong="G1161"\w* \w led|strong="G5496"\w* \w him|strong="G3588"\w* \w by|strong="G1519"\w* \w the|strong="G1519"\w* \w hand|strong="G1161"\w* \w and|strong="G1161"\w* \w brought|strong="G1521"\w* \w him|strong="G3588"\w* \w into|strong="G1519"\w* \w Damascus|strong="G1154"\w*. +\v 9 \w He|strong="G2532"\w* \w was|strong="G1510"\w* \w without|strong="G3361"\w* sight \w for|strong="G2532"\w* \w three|strong="G5140"\w* \w days|strong="G2250"\w*, \w and|strong="G2532"\w* \w neither|strong="G3761"\w* \w ate|strong="G2068"\w* \w nor|strong="G3761"\w* \w drank|strong="G4095"\w*. +\p +\v 10 \w Now|strong="G1161"\w* \w there|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w certain|strong="G5100"\w* \w disciple|strong="G3101"\w* \w at|strong="G1722"\w* \w Damascus|strong="G1154"\w* \w named|strong="G3686"\w* Ananias. \w The|strong="G1722"\w* \w Lord|strong="G2962"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* \w vision|strong="G3705"\w*, \wj “Ananias!”\wj* +\p \w He|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Behold|strong="G2400"\w*, \w it|strong="G2532"\w*’\w s|strong="G2962"\w* \w me|strong="G1473"\w*, \w Lord|strong="G2962"\w*.” +\p +\v 11 \w The|strong="G1722"\w* \w Lord|strong="G2962"\w* \w said|strong="G1161"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \wj “Arise \+w and|strong="G2532"\+w* \+w go|strong="G4198"\+w* \+w to|strong="G4314"\+w* \+w the|strong="G1722"\+w* \+w street|strong="G4505"\+w* \+w which|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w called|strong="G2564"\+w* \+w Straight|strong="G2117"\+w*, \+w and|strong="G2532"\+w* \+w inquire|strong="G2212"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w house|strong="G3614"\+w* \+w of|strong="G2532"\+w* \+w Judah|strong="G2455"\+w*\wj*\f + \fr 9:11 \ft or, Judas\f* \wj \+w for|strong="G1063"\+w* \+w one|strong="G3588"\+w* \+w named|strong="G3686"\+w* \+w Saul|strong="G4569"\+w*, \+w a|strong="G2532"\+w* man \+w of|strong="G2532"\+w* \+w Tarsus|strong="G5018"\+w*. \+w For|strong="G1063"\+w* \+w behold|strong="G2400"\+w*, \+w he|strong="G2532"\+w* \+w is|strong="G3588"\+w* \+w praying|strong="G4336"\+w*, \wj* +\v 12 \wj \+w and|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w a|strong="G2532"\+w* \+w vision|strong="G3705"\+w* \+w he|strong="G2532"\+w* \+w has|strong="G3708"\+w* \+w seen|strong="G3708"\+w* \+w a|strong="G2532"\+w* man \+w named|strong="G3686"\+w* Ananias \+w coming|strong="G1525"\+w* \+w in|strong="G1722"\+w* \+w and|strong="G2532"\+w* \+w laying|strong="G2007"\+w* \+w his|strong="G2007"\+w* \+w hands|strong="G5495"\+w* \+w on|strong="G1722"\+w* \+w him|strong="G3708"\+w*, \+w that|strong="G3704"\+w* \+w he|strong="G2532"\+w* \+w might|strong="G2532"\+w* receive \+w his|strong="G2007"\+w* \+w sight|strong="G3705"\+w*.”\wj* +\p +\v 13 \w But|strong="G1161"\w* Ananias answered, “\w Lord|strong="G2962"\w*, \w I|strong="G1161"\w* \w have|strong="G3745"\w* heard \w from|strong="G3588"\w* \w many|strong="G4183"\w* \w about|strong="G4012"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w*, \w how|strong="G3745"\w* \w much|strong="G4183"\w* \w evil|strong="G2556"\w* \w he|strong="G1161"\w* \w did|strong="G4160"\w* \w to|strong="G1722"\w* \w your|strong="G2962"\w* saints \w at|strong="G1722"\w* \w Jerusalem|strong="G2419"\w*. +\v 14 \w Here|strong="G5602"\w* \w he|strong="G2532"\w* \w has|strong="G2192"\w* \w authority|strong="G1849"\w* \w from|strong="G3844"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w to|strong="G2532"\w* \w bind|strong="G1210"\w* \w all|strong="G3956"\w* \w who|strong="G3588"\w* \w call|strong="G1941"\w* \w on|strong="G1941"\w* \w your|strong="G2192"\w* \w name|strong="G3686"\w*.” +\p +\v 15 \w But|strong="G1161"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \wj “\+w Go|strong="G4198"\+w* \+w your|strong="G2962"\+w* \+w way|strong="G4198"\+w*, \+w for|strong="G3754"\+w* \+w he|strong="G2532"\+w* \+w is|strong="G1510"\+w* \+w my|strong="G1473"\+w* \+w chosen|strong="G1589"\+w* \+w vessel|strong="G4632"\+w* \+w to|strong="G4314"\+w* \+w bear|strong="G2532"\+w* \+w my|strong="G1473"\+w* \+w name|strong="G3686"\+w* \+w before|strong="G1799"\+w* \+w the|strong="G2532"\+w* \+w nations|strong="G1484"\+w* \+w and|strong="G2532"\+w* \+w kings|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w children|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Israel|strong="G2474"\+w*. \wj* +\v 16 \wj \+w For|strong="G1063"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G1473"\+w* \+w show|strong="G5263"\+w* \+w him|strong="G3588"\+w* \+w how|strong="G3745"\+w* \+w many|strong="G3745"\+w* \+w things|strong="G3588"\+w* \+w he|strong="G3588"\+w* \+w must|strong="G1163"\+w* \+w suffer|strong="G3958"\+w* \+w for|strong="G1063"\+w* \+w my|strong="G1473"\+w* \+w name|strong="G3686"\+w*’s \+w sake|strong="G5228"\+w*.”\wj* +\p +\v 17 Ananias departed \w and|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w house|strong="G3614"\w*. \w Laying|strong="G2007"\w* \w his|strong="G2007"\w* \w hands|strong="G5495"\w* \w on|strong="G1909"\w* \w him|strong="G3588"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w*, “Brother \w Saul|strong="G4549"\w*, \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w who|strong="G3739"\w* \w appeared|strong="G3708"\w* \w to|strong="G1519"\w* \w you|strong="G4771"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w road|strong="G3598"\w* \w by|strong="G1722"\w* \w which|strong="G3739"\w* \w you|strong="G4771"\w* \w came|strong="G2064"\w*, \w has|strong="G2962"\w* \w sent|strong="G2532"\w* \w me|strong="G1473"\w* \w that|strong="G3739"\w* \w you|strong="G4771"\w* \w may|strong="G2532"\w* receive \w your|strong="G2962"\w* \w sight|strong="G3588"\w* \w and|strong="G2532"\w* \w be|strong="G2532"\w* \w filled|strong="G4130"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*.” +\v 18 \w Immediately|strong="G2112"\w* \w something|strong="G3788"\w* \w like|strong="G5613"\w* \w scales|strong="G3013"\w* \w fell|strong="G2532"\w* \w from|strong="G2532"\w* \w his|strong="G2532"\w* \w eyes|strong="G3788"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w received|strong="G3788"\w* \w his|strong="G2532"\w* \w sight|strong="G3788"\w*. \w He|strong="G2532"\w* arose \w and|strong="G2532"\w* \w was|strong="G3588"\w* baptized. +\v 19 \w He|strong="G2532"\w* \w took|strong="G2983"\w* \w food|strong="G5160"\w* \w and|strong="G2532"\w* \w was|strong="G1096"\w* \w strengthened|strong="G1765"\w*. +\p Saul stayed \w several|strong="G5100"\w* \w days|strong="G2250"\w* \w with|strong="G3326"\w* \w the|strong="G1722"\w* \w disciples|strong="G3101"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w at|strong="G1722"\w* \w Damascus|strong="G1154"\w*. +\v 20 \w Immediately|strong="G2112"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w synagogues|strong="G4864"\w* \w he|strong="G2532"\w* \w proclaimed|strong="G2784"\w* \w the|strong="G1722"\w* Christ, \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*. +\v 21 \w All|strong="G3956"\w* \w who|strong="G3588"\w* heard \w him|strong="G3588"\w* \w were|strong="G1510"\w* \w amazed|strong="G1839"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “Isn’\w t|strong="G3588"\w* \w this|strong="G3778"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w in|strong="G1722"\w* \w Jerusalem|strong="G2419"\w* \w made|strong="G3756"\w* havoc \w of|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w called|strong="G3004"\w* \w on|strong="G1909"\w* \w this|strong="G3778"\w* \w name|strong="G3686"\w*? \w And|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w come|strong="G2064"\w* \w here|strong="G5602"\w* intending \w to|strong="G1519"\w* \w bring|strong="G2532"\w* \w them|strong="G3588"\w* \w bound|strong="G1210"\w* \w before|strong="G1909"\w* \w the|strong="G1722"\w* \w chief|strong="G2532"\w* priests!” +\p +\v 22 \w But|strong="G1161"\w* \w Saul|strong="G4569"\w* \w increased|strong="G1743"\w* \w more|strong="G3123"\w* \w in|strong="G1722"\w* \w strength|strong="G1743"\w*, \w and|strong="G2532"\w* \w confounded|strong="G4797"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w* \w who|strong="G3588"\w* \w lived|strong="G2730"\w* \w at|strong="G1722"\w* \w Damascus|strong="G1154"\w*, \w proving|strong="G4822"\w* \w that|strong="G3754"\w* \w this|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w Christ|strong="G5547"\w*. +\v 23 \w When|strong="G1161"\w* \w many|strong="G2425"\w* \w days|strong="G2250"\w* \w were|strong="G3588"\w* \w fulfilled|strong="G4137"\w*, \w the|strong="G1161"\w* \w Jews|strong="G2453"\w* conspired \w together|strong="G4823"\w* \w to|strong="G1161"\w* kill \w him|strong="G3588"\w*, +\v 24 \w but|strong="G1161"\w* \w their|strong="G2532"\w* \w plot|strong="G1917"\w* \w became|strong="G1917"\w* \w known|strong="G1097"\w* \w to|strong="G2532"\w* \w Saul|strong="G4569"\w*. \w They|strong="G2532"\w* \w watched|strong="G3906"\w* \w the|strong="G2532"\w* \w gates|strong="G4439"\w* \w both|strong="G2532"\w* \w day|strong="G2250"\w* \w and|strong="G2532"\w* \w night|strong="G3571"\w* \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* kill \w him|strong="G3588"\w*, +\v 25 \w but|strong="G1161"\w* \w his|strong="G1223"\w* \w disciples|strong="G3101"\w* \w took|strong="G2983"\w* \w him|strong="G3588"\w* \w by|strong="G1223"\w* \w night|strong="G3571"\w* \w and|strong="G1161"\w* \w let|strong="G5465"\w* \w him|strong="G3588"\w* \w down|strong="G5465"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w wall|strong="G5038"\w*, \w lowering|strong="G2524"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w a|strong="G1722"\w* \w basket|strong="G4711"\w*. +\p +\v 26 \w When|strong="G1161"\w* Saul \w had|strong="G2532"\w* \w come|strong="G3854"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w*, \w he|strong="G2532"\w* \w tried|strong="G3985"\w* \w to|strong="G1519"\w* \w join|strong="G2853"\w* \w himself|strong="G2853"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w*; \w but|strong="G1161"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w all|strong="G3956"\w* \w afraid|strong="G5399"\w* \w of|strong="G2532"\w* \w him|strong="G3588"\w*, \w not|strong="G3361"\w* \w believing|strong="G4100"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w disciple|strong="G3101"\w*. +\v 27 \w But|strong="G1161"\w* Barnabas \w took|strong="G1949"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w brought|strong="G1161"\w* \w him|strong="G3588"\w* \w to|strong="G4314"\w* \w the|strong="G1722"\w* apostles, \w and|strong="G2532"\w* \w declared|strong="G1334"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w* \w how|strong="G4459"\w* \w he|strong="G2532"\w* \w had|strong="G2424"\w* \w seen|strong="G3708"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w way|strong="G3598"\w*, \w and|strong="G2532"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w had|strong="G2424"\w* \w spoken|strong="G2980"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w how|strong="G4459"\w* \w at|strong="G1722"\w* \w Damascus|strong="G1154"\w* \w he|strong="G2532"\w* \w had|strong="G2424"\w* \w preached|strong="G2980"\w* \w boldly|strong="G3955"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G2532"\w* \w Jesus|strong="G2424"\w*. +\v 28 \w He|strong="G2532"\w* \w was|strong="G1510"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w* \w entering|strong="G1531"\w* \w into|strong="G1519"\w*\f + \fr 9:28 \ft TR and NU add “and going out” \f* \w Jerusalem|strong="G2419"\w*, +\v 29 \w preaching|strong="G2980"\w* boldly \w in|strong="G2532"\w* \w the|strong="G2532"\w* name \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G3588"\w* \w Jesus|strong="G2532"\w*.\f + \fr 9:29 \ft TR and NU omit “Jesus” and reverse the order of verses 28 & 29.\f* \w He|strong="G2532"\w* \w spoke|strong="G2980"\w* \w and|strong="G2532"\w* \w disputed|strong="G4802"\w* \w against|strong="G4314"\w* \w the|strong="G2532"\w* Hellenists,\f + \fr 9:29 \ft The Hellenists were Hebrews who used Greek language and culture.\f* \w but|strong="G1161"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* seeking \w to|strong="G4314"\w* kill \w him|strong="G3588"\w*. +\v 30 \w When|strong="G1161"\w* \w the|strong="G2532"\w* brothers\f + \fr 9:30 \ft The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.” \f* \w knew|strong="G1921"\w* \w it|strong="G2532"\w*, \w they|strong="G2532"\w* \w brought|strong="G2609"\w* \w him|strong="G3588"\w* \w down|strong="G2609"\w* \w to|strong="G1519"\w* \w Caesarea|strong="G2542"\w* \w and|strong="G2532"\w* \w sent|strong="G1821"\w* \w him|strong="G3588"\w* \w off|strong="G1821"\w* \w to|strong="G1519"\w* \w Tarsus|strong="G5019"\w*. +\p +\v 31 \w So|strong="G3767"\w* \w the|strong="G2532"\w* \w assemblies|strong="G1577"\w* \w throughout|strong="G2596"\w* \w all|strong="G3650"\w* \w Judea|strong="G2449"\w*, \w Galilee|strong="G1056"\w*, \w and|strong="G2532"\w* \w Samaria|strong="G4540"\w* \w had|strong="G2192"\w* \w peace|strong="G1515"\w* \w and|strong="G2532"\w* \w were|strong="G3588"\w* \w built|strong="G3618"\w* \w up|strong="G3618"\w*. \w They|strong="G2532"\w* \w were|strong="G3588"\w* \w multiplied|strong="G4129"\w*, \w walking|strong="G4198"\w* \w in|strong="G2596"\w* \w the|strong="G2532"\w* \w fear|strong="G5401"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w and|strong="G2532"\w* \w in|strong="G2596"\w* \w the|strong="G2532"\w* \w comfort|strong="G3874"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*. +\p +\v 32 \w As|strong="G1161"\w* \w Peter|strong="G4074"\w* \w went|strong="G1330"\w* \w throughout|strong="G1223"\w* \w all|strong="G3956"\w* \w those|strong="G3588"\w* parts, \w he|strong="G2532"\w* \w came|strong="G1096"\w* \w down|strong="G2718"\w* \w also|strong="G2532"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* saints \w who|strong="G3588"\w* \w lived|strong="G2730"\w* \w at|strong="G4314"\w* \w Lydda|strong="G3069"\w*. +\v 33 \w There|strong="G1563"\w* \w he|strong="G1161"\w* \w found|strong="G2147"\w* \w a|strong="G1510"\w* \w certain|strong="G5100"\w* \w man|strong="G5100"\w* \w named|strong="G3686"\w* Aeneas, \w who|strong="G3739"\w* \w had|strong="G1510"\w* \w been|strong="G1510"\w* \w bedridden|strong="G2621"\w* \w for|strong="G1909"\w* \w eight|strong="G3638"\w* \w years|strong="G2094"\w* \w because|strong="G1537"\w* \w he|strong="G1161"\w* \w was|strong="G1510"\w* \w paralyzed|strong="G3886"\w*. +\v 34 \w Peter|strong="G4074"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “Aeneas, \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w heals|strong="G2390"\w* \w you|strong="G4771"\w*. \w Get|strong="G2532"\w* \w up|strong="G2532"\w* \w and|strong="G2532"\w* \w make|strong="G4766"\w* \w your|strong="G2532"\w* \w bed|strong="G4766"\w*!” \w Immediately|strong="G2112"\w* \w he|strong="G2532"\w* arose. +\v 35 \w All|strong="G3956"\w* \w who|strong="G3588"\w* \w lived|strong="G2730"\w* \w at|strong="G1909"\w* \w Lydda|strong="G3069"\w* \w and|strong="G2532"\w* \w in|strong="G1909"\w* \w Sharon|strong="G4565"\w* \w saw|strong="G3708"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w turned|strong="G1994"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*. +\p +\v 36 \w Now|strong="G1161"\w* \w there|strong="G2532"\w* \w was|strong="G1510"\w* \w at|strong="G1722"\w* \w Joppa|strong="G2445"\w* \w a|strong="G2532"\w* \w certain|strong="G5100"\w* \w disciple|strong="G3102"\w* \w named|strong="G3686"\w* \w Tabitha|strong="G5000"\w*, \w which|strong="G3739"\w* \w when|strong="G1161"\w* \w translated|strong="G1329"\w* \w means|strong="G1510"\w* \w Dorcas|strong="G1393"\w*.\f + \fr 9:36 \ft “Dorcas” is Greek for “Gazelle.”\f* \w This|strong="G3778"\w* \w woman|strong="G3778"\w* \w was|strong="G1510"\w* \w full|strong="G4134"\w* \w of|strong="G2532"\w* \w good|strong="G2532"\w* \w works|strong="G2041"\w* \w and|strong="G2532"\w* \w acts|strong="G4160"\w* \w of|strong="G2532"\w* mercy \w which|strong="G3739"\w* \w she|strong="G2532"\w* \w did|strong="G4160"\w*. +\v 37 \w In|strong="G1722"\w* \w those|strong="G3588"\w* \w days|strong="G2250"\w*, \w she|strong="G1161"\w* \w became|strong="G1096"\w* sick \w and|strong="G1161"\w* \w died|strong="G3588"\w*. \w When|strong="G1161"\w* \w they|strong="G1161"\w* \w had|strong="G3588"\w* \w washed|strong="G3068"\w* \w her|strong="G1438"\w*, \w they|strong="G1161"\w* \w laid|strong="G5087"\w* \w her|strong="G1438"\w* \w in|strong="G1722"\w* \w an|strong="G1722"\w* \w upper|strong="G5253"\w* \w room|strong="G5253"\w*. +\v 38 \w As|strong="G1722"\w* \w Lydda|strong="G3069"\w* \w was|strong="G1510"\w* \w near|strong="G1451"\w* \w Joppa|strong="G2445"\w*, \w the|strong="G1722"\w* \w disciples|strong="G3101"\w*, hearing \w that|strong="G3754"\w* \w Peter|strong="G4074"\w* \w was|strong="G1510"\w* \w there|strong="G1161"\w*, sent \w two|strong="G1417"\w* \w men|strong="G1417"\w*\f + \fr 9:38 \ft Reading from NU, TR; MT omits “two men”\f* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \w imploring|strong="G3870"\w* \w him|strong="G3588"\w* \w not|strong="G3361"\w* \w to|strong="G4314"\w* \w delay|strong="G3635"\w* \w in|strong="G1722"\w* \w coming|strong="G1330"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*. +\v 39 \w Peter|strong="G4074"\w* got \w up|strong="G1519"\w* \w and|strong="G2532"\w* \w went|strong="G2532"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w*. \w When|strong="G1161"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w come|strong="G3854"\w*, \w they|strong="G2532"\w* \w brought|strong="G1161"\w* \w him|strong="G3588"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w upper|strong="G5253"\w* \w room|strong="G5253"\w*. \w All|strong="G3956"\w* \w the|strong="G2532"\w* \w widows|strong="G5503"\w* \w stood|strong="G3936"\w* \w by|strong="G3936"\w* \w him|strong="G3588"\w* \w weeping|strong="G2799"\w*, \w and|strong="G2532"\w* \w showing|strong="G1925"\w* \w the|strong="G2532"\w* \w tunics|strong="G5509"\w* \w and|strong="G2532"\w* \w other|strong="G1161"\w* \w garments|strong="G2440"\w* \w which|strong="G3739"\w* \w Dorcas|strong="G1393"\w* \w had|strong="G2532"\w* \w made|strong="G4160"\w* \w while|strong="G1161"\w* \w she|strong="G2532"\w* \w was|strong="G1510"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w*. +\v 40 \w Peter|strong="G4074"\w* \w sent|strong="G1544"\w* \w them|strong="G3588"\w* \w all|strong="G3956"\w* \w out|strong="G1544"\w*, \w and|strong="G2532"\w* \w knelt|strong="G1119"\w* \w down|strong="G5087"\w* \w and|strong="G2532"\w* \w prayed|strong="G4336"\w*. \w Turning|strong="G1994"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w body|strong="G4983"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Tabitha|strong="G5000"\w*, \w get|strong="G2532"\w* \w up|strong="G2532"\w*!” \w She|strong="G2532"\w* opened \w her|strong="G3708"\w* \w eyes|strong="G3788"\w*, \w and|strong="G2532"\w* \w when|strong="G1161"\w* \w she|strong="G2532"\w* \w saw|strong="G3708"\w* \w Peter|strong="G4074"\w*, \w she|strong="G2532"\w* \w sat|strong="G4074"\w* \w up|strong="G2532"\w*. +\v 41 \w He|strong="G2532"\w* \w gave|strong="G1325"\w* \w her|strong="G1325"\w* \w his|strong="G1438"\w* \w hand|strong="G5495"\w* \w and|strong="G2532"\w* \w raised|strong="G2532"\w* \w her|strong="G1325"\w* \w up|strong="G1325"\w*. \w Calling|strong="G5455"\w* \w the|strong="G2532"\w* saints \w and|strong="G2532"\w* \w widows|strong="G5503"\w*, \w he|strong="G2532"\w* \w presented|strong="G3936"\w* \w her|strong="G1325"\w* \w alive|strong="G2198"\w*. +\v 42 \w This|strong="G3588"\w* \w became|strong="G1096"\w* \w known|strong="G1110"\w* \w throughout|strong="G2596"\w* \w all|strong="G3650"\w* \w Joppa|strong="G2445"\w*, \w and|strong="G2532"\w* \w many|strong="G4183"\w* \w believed|strong="G4100"\w* \w in|strong="G1909"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*. +\v 43 \w He|strong="G1161"\w* \w stayed|strong="G3306"\w* \w many|strong="G2425"\w* \w days|strong="G2250"\w* \w in|strong="G1722"\w* \w Joppa|strong="G2445"\w* \w with|strong="G1722"\w* \w a|strong="G1096"\w* \w tanner|strong="G1038"\w* \w named|strong="G4613"\w* \w Simon|strong="G4613"\w*. +\c 10 +\p +\v 1 \w Now|strong="G1161"\w* \w there|strong="G1161"\w* \w was|strong="G3588"\w* \w a|strong="G1722"\w* \w certain|strong="G5100"\w* \w man|strong="G5100"\w* \w in|strong="G1722"\w* \w Caesarea|strong="G2542"\w*, \w Cornelius|strong="G2883"\w* \w by|strong="G1722"\w* \w name|strong="G3686"\w*, \w a|strong="G1722"\w* \w centurion|strong="G1543"\w* \w of|strong="G1537"\w* \w what|strong="G3588"\w* \w was|strong="G3588"\w* \w called|strong="G2564"\w* \w the|strong="G1722"\w* \w Italian|strong="G2483"\w* Regiment, +\v 2 \w a|strong="G2532"\w* \w devout|strong="G2152"\w* \w man|strong="G3956"\w*, \w and|strong="G2532"\w* \w one|strong="G3956"\w* \w who|strong="G3588"\w* \w feared|strong="G5399"\w* \w God|strong="G2316"\w* \w with|strong="G4862"\w* \w all|strong="G3956"\w* \w his|strong="G3956"\w* \w house|strong="G3624"\w*, \w who|strong="G3588"\w* \w gave|strong="G4160"\w* \w gifts|strong="G1654"\w* \w for|strong="G1223"\w* \w the|strong="G2532"\w* needy generously \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w*, \w and|strong="G2532"\w* \w always|strong="G3956"\w* \w prayed|strong="G1189"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w*. +\v 3 \w At|strong="G1722"\w* \w about|strong="G4012"\w* \w the|strong="G1722"\w* \w ninth|strong="G1766"\w* \w hour|strong="G5610"\w* \w of|strong="G4012"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w*,\f + \fr 10:3 \ft 3:00 p.m.\f* \w he|strong="G2532"\w* \w clearly|strong="G5320"\w* \w saw|strong="G3708"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* \w vision|strong="G3705"\w* \w an|strong="G2532"\w* angel \w of|strong="G4012"\w* \w God|strong="G2316"\w* \w coming|strong="G2316"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w saying|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w Cornelius|strong="G2883"\w*!” +\p +\v 4 \w He|strong="G2532"\w*, fastening \w his|strong="G1519"\w* eyes \w on|strong="G1519"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w being|strong="G1510"\w* \w frightened|strong="G1719"\w*, \w said|strong="G3004"\w*, “\w What|strong="G5101"\w* \w is|strong="G1510"\w* \w it|strong="G2532"\w*, \w Lord|strong="G2962"\w*?” +\p \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, “\w Your|strong="G2962"\w* \w prayers|strong="G4335"\w* \w and|strong="G2532"\w* \w your|strong="G2962"\w* \w gifts|strong="G1654"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* needy \w have|strong="G2532"\w* gone \w up|strong="G1519"\w* \w for|strong="G1519"\w* \w a|strong="G1096"\w* \w memorial|strong="G3422"\w* \w before|strong="G1715"\w* \w God|strong="G2316"\w*. +\v 5 \w Now|strong="G3568"\w* \w send|strong="G3992"\w* \w men|strong="G5100"\w* \w to|strong="G1519"\w* \w Joppa|strong="G2445"\w*, \w and|strong="G2532"\w* \w get|strong="G2532"\w* \w Simon|strong="G4613"\w*, \w who|strong="G3739"\w* \w is|strong="G3739"\w* \w also|strong="G2532"\w* \w called|strong="G1941"\w* \w Peter|strong="G4074"\w*. +\v 6 \w He|strong="G3739"\w* \w is|strong="G1510"\w* \w staying|strong="G3579"\w* \w with|strong="G3844"\w* \w a|strong="G1510"\w* \w tanner|strong="G1038"\w* \w named|strong="G4613"\w* \w Simon|strong="G4613"\w*, \w whose|strong="G3739"\w* \w house|strong="G3614"\w* \w is|strong="G1510"\w* \w by|strong="G3844"\w* \w the|strong="G3739"\w* seaside.\f + \fr 10:6 \ft TR adds “This one will tell you what it is necessary for you to do.”\f* +\p +\v 7 \w When|strong="G1161"\w* \w the|strong="G2532"\w* angel \w who|strong="G3588"\w* \w spoke|strong="G2980"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w had|strong="G2532"\w* departed, \w Cornelius|strong="G5455"\w* \w called|strong="G5455"\w* \w two|strong="G1417"\w* \w of|strong="G2532"\w* \w his|strong="G2532"\w* \w household|strong="G3610"\w* \w servants|strong="G3610"\w* \w and|strong="G2532"\w* \w a|strong="G5613"\w* \w devout|strong="G2152"\w* \w soldier|strong="G4757"\w* \w of|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w waited|strong="G4342"\w* \w on|strong="G1161"\w* \w him|strong="G3588"\w* \w continually|strong="G4342"\w*. +\v 8 \w Having|strong="G2532"\w* \w explained|strong="G1834"\w* everything \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \w he|strong="G2532"\w* \w sent|strong="G2532"\w* \w them|strong="G3588"\w* \w to|strong="G1519"\w* \w Joppa|strong="G2445"\w*. +\p +\v 9 \w Now|strong="G1161"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w next|strong="G1887"\w* \w day|strong="G1887"\w* \w as|strong="G1161"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w on|strong="G1909"\w* \w their|strong="G2532"\w* \w journey|strong="G3596"\w* \w and|strong="G2532"\w* got \w close|strong="G1448"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w*, \w Peter|strong="G4074"\w* \w went|strong="G2532"\w* \w up|strong="G2532"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w housetop|strong="G1430"\w* \w to|strong="G2532"\w* \w pray|strong="G4336"\w* \w at|strong="G1909"\w* \w about|strong="G4012"\w* \w noon|strong="G5610"\w*. +\v 10 \w He|strong="G2532"\w* \w became|strong="G1096"\w* \w hungry|strong="G4361"\w* \w and|strong="G2532"\w* \w desired|strong="G2309"\w* \w to|strong="G2532"\w* \w eat|strong="G1089"\w*, \w but|strong="G1161"\w* \w while|strong="G1161"\w* \w they|strong="G2532"\w* \w were|strong="G1096"\w* preparing, \w he|strong="G2532"\w* \w fell|strong="G1096"\w* \w into|strong="G1909"\w* \w a|strong="G1096"\w* \w trance|strong="G1611"\w*. +\v 11 \w He|strong="G2532"\w* \w saw|strong="G2334"\w* \w heaven|strong="G3772"\w* opened \w and|strong="G2532"\w* \w a|strong="G5613"\w* \w certain|strong="G5100"\w* \w container|strong="G4632"\w* \w descending|strong="G2597"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \w like|strong="G5613"\w* \w a|strong="G5613"\w* \w great|strong="G3173"\w* \w sheet|strong="G3607"\w* \w let|strong="G2524"\w* \w down|strong="G2597"\w* \w by|strong="G1909"\w* \w four|strong="G5064"\w* corners \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, +\v 12 \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w were|strong="G3588"\w* \w all|strong="G3956"\w* \w kinds|strong="G3956"\w* \w of|strong="G2532"\w* \w four-footed|strong="G5074"\w* \w animals|strong="G5074"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w*, \w wild|strong="G2532"\w* \w animals|strong="G5074"\w*, \w reptiles|strong="G2062"\w*, \w and|strong="G2532"\w* \w birds|strong="G4071"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w sky|strong="G3772"\w*. +\v 13 \w A|strong="G1096"\w* \w voice|strong="G5456"\w* \w came|strong="G1096"\w* \w to|strong="G4314"\w* \w him|strong="G2532"\w*, \wj “Rise, \+w Peter|strong="G4074"\+w*, \+w kill|strong="G2380"\+w* \+w and|strong="G2532"\+w* \+w eat|strong="G2068"\+w*!”\wj* +\p +\v 14 \w But|strong="G1161"\w* \w Peter|strong="G4074"\w* \w said|strong="G3004"\w*, “\w Not|strong="G2532"\w* \w so|strong="G2532"\w*, \w Lord|strong="G2962"\w*; \w for|strong="G3754"\w* \w I|strong="G2532"\w* \w have|strong="G2532"\w* \w never|strong="G3763"\w* \w eaten|strong="G5315"\w* \w anything|strong="G3956"\w* \w that|strong="G3754"\w* \w is|strong="G3588"\w* \w common|strong="G2839"\w* \w or|strong="G2532"\w* \w unclean|strong="G2839"\w*.” +\p +\v 15 \w A|strong="G2532"\w* \w voice|strong="G5456"\w* \w came|strong="G2532"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w* \w again|strong="G3825"\w* \w the|strong="G2532"\w* \w second|strong="G1208"\w* \w time|strong="G1208"\w*, \wj “\+w What|strong="G3739"\+w* \+w God|strong="G2316"\+w* \+w has|strong="G2316"\+w* \+w cleansed|strong="G2511"\+w*, \+w you|strong="G4771"\+w* \+w must|strong="G3588"\+w* \+w not|strong="G3361"\+w* \+w call|strong="G2532"\+w* \+w unclean|strong="G2840"\+w*.”\wj* +\v 16 \w This|strong="G3778"\w* \w was|strong="G1096"\w* \w done|strong="G1096"\w* \w three|strong="G5151"\w* \w times|strong="G5151"\w*, \w and|strong="G2532"\w* \w immediately|strong="G2112"\w* \w the|strong="G2532"\w* \w thing|strong="G3778"\w* \w was|strong="G1096"\w* received \w up|strong="G1519"\w* \w into|strong="G1519"\w* \w heaven|strong="G3772"\w*. +\p +\v 17 \w Now|strong="G1161"\w* \w while|strong="G1722"\w* \w Peter|strong="G4074"\w* \w was|strong="G1510"\w* \w very|strong="G3588"\w* \w perplexed|strong="G1280"\w* \w in|strong="G1722"\w* \w himself|strong="G1438"\w* \w what|strong="G5101"\w* \w the|strong="G1722"\w* \w vision|strong="G3705"\w* \w which|strong="G3739"\w* \w he|strong="G1161"\w* \w had|strong="G1510"\w* \w seen|strong="G3708"\w* might \w mean|strong="G1510"\w*, \w behold|strong="G2400"\w*, \w the|strong="G1722"\w* \w men|strong="G3588"\w* \w who|strong="G3739"\w* \w were|strong="G1510"\w* sent \w by|strong="G1722"\w* \w Cornelius|strong="G2883"\w*, having \w made|strong="G1161"\w* inquiry \w for|strong="G1909"\w* \w Simon|strong="G4613"\w*’s \w house|strong="G3614"\w*, \w stood|strong="G2186"\w* \w before|strong="G1909"\w* \w the|strong="G1722"\w* \w gate|strong="G4440"\w*, +\v 18 \w and|strong="G2532"\w* \w called|strong="G5455"\w* \w and|strong="G2532"\w* \w asked|strong="G4441"\w* \w whether|strong="G1487"\w* \w Simon|strong="G4613"\w*, \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w also|strong="G2532"\w* \w called|strong="G5455"\w* \w Peter|strong="G4074"\w*, \w was|strong="G3588"\w* \w lodging|strong="G3579"\w* \w there|strong="G2532"\w*. +\v 19 \w While|strong="G1161"\w* \w Peter|strong="G4074"\w* \w was|strong="G3588"\w* pondering \w the|strong="G1161"\w* \w vision|strong="G3705"\w*, \w the|strong="G1161"\w* \w Spirit|strong="G4151"\w* \w said|strong="G3004"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Behold|strong="G2400"\w*, three\f + \fr 10:19 \ft Reading from TR and NU. MT omits “three”\f* \w men|strong="G3588"\w* \w seek|strong="G2212"\w* \w you|strong="G4771"\w*. +\v 20 \w But|strong="G2532"\w* arise, \w get|strong="G2532"\w* \w down|strong="G2597"\w*, \w and|strong="G2532"\w* \w go|strong="G4198"\w* \w with|strong="G4862"\w* \w them|strong="G1438"\w*, \w doubting|strong="G1252"\w* \w nothing|strong="G3367"\w*; \w for|strong="G3754"\w* \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w sent|strong="G2532"\w* \w them|strong="G1438"\w*.” +\p +\v 21 \w Peter|strong="G4074"\w* \w went|strong="G2597"\w* \w down|strong="G2597"\w* \w to|strong="G4314"\w* \w the|strong="G1161"\w* \w men|strong="G3588"\w*, \w and|strong="G1161"\w* \w said|strong="G3004"\w*, “\w Behold|strong="G2400"\w*, \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w he|strong="G1161"\w* \w whom|strong="G3739"\w* \w you|strong="G3739"\w* \w seek|strong="G2212"\w*. \w Why|strong="G5101"\w* \w have|strong="G1473"\w* \w you|strong="G3739"\w* \w come|strong="G2597"\w*?” +\p +\v 22 \w They|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Cornelius|strong="G2883"\w*, \w a|strong="G2532"\w* \w centurion|strong="G1543"\w*, \w a|strong="G2532"\w* \w righteous|strong="G1342"\w* \w man|strong="G1342"\w* \w and|strong="G2532"\w* \w one|strong="G3588"\w* \w who|strong="G3588"\w* \w fears|strong="G5399"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w well|strong="G2532"\w* \w spoken|strong="G3004"\w* \w of|strong="G5259"\w* \w by|strong="G5259"\w* \w all|strong="G3650"\w* \w the|strong="G2532"\w* \w nation|strong="G1484"\w* \w of|strong="G5259"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w*, \w was|strong="G3588"\w* \w directed|strong="G5537"\w* \w by|strong="G5259"\w* \w a|strong="G2532"\w* holy angel \w to|strong="G1519"\w* invite \w you|strong="G4771"\w* \w to|strong="G1519"\w* \w his|strong="G1519"\w* \w house|strong="G3624"\w*, \w and|strong="G2532"\w* \w to|strong="G1519"\w* listen \w to|strong="G1519"\w* \w what|strong="G3588"\w* \w you|strong="G4771"\w* \w say|strong="G3004"\w*.” +\v 23 \w So|strong="G3767"\w* \w he|strong="G2532"\w* \w called|strong="G3767"\w* \w them|strong="G3588"\w* \w in|strong="G2532"\w* \w and|strong="G2532"\w* provided \w a|strong="G2532"\w* place \w to|strong="G2532"\w* stay. +\p \w On|strong="G1161"\w* \w the|strong="G2532"\w* \w next|strong="G1887"\w* \w day|strong="G1887"\w* \w Peter|strong="G1831"\w* arose \w and|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w with|strong="G4862"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w some|strong="G5100"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* brothers \w from|strong="G2532"\w* \w Joppa|strong="G2445"\w* \w accompanied|strong="G4905"\w* \w him|strong="G3588"\w*. +\v 24 \w On|strong="G1519"\w* \w the|strong="G2532"\w* \w next|strong="G1887"\w* \w day|strong="G1887"\w* \w they|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w Caesarea|strong="G2542"\w*. \w Cornelius|strong="G2883"\w* \w was|strong="G1510"\w* \w waiting|strong="G4328"\w* \w for|strong="G1519"\w* \w them|strong="G3588"\w*, \w having|strong="G2532"\w* \w called|strong="G4779"\w* \w together|strong="G4779"\w* \w his|strong="G1438"\w* \w relatives|strong="G4773"\w* \w and|strong="G2532"\w* \w his|strong="G1438"\w* \w near|strong="G1519"\w* \w friends|strong="G5384"\w*. +\v 25 \w When|strong="G1161"\w* \w Peter|strong="G4074"\w* \w entered|strong="G1525"\w*, \w Cornelius|strong="G2883"\w* \w met|strong="G4876"\w* \w him|strong="G3588"\w*, \w fell|strong="G4098"\w* \w down|strong="G4098"\w* \w at|strong="G1909"\w* \w his|strong="G1909"\w* \w feet|strong="G4228"\w*, \w and|strong="G1161"\w* \w worshiped|strong="G4352"\w* \w him|strong="G3588"\w*. +\v 26 \w But|strong="G1161"\w* \w Peter|strong="G4074"\w* \w raised|strong="G1453"\w* \w him|strong="G3588"\w* \w up|strong="G1453"\w*, \w saying|strong="G3004"\w*, “\w Stand|strong="G1453"\w* \w up|strong="G1453"\w*! \w I|strong="G1473"\w* \w myself|strong="G1473"\w* \w am|strong="G1510"\w* \w also|strong="G2532"\w* \w a|strong="G2532"\w* man.” +\v 27 \w As|strong="G2532"\w* \w he|strong="G2532"\w* \w talked|strong="G4926"\w* \w with|strong="G2532"\w* \w him|strong="G2532"\w*, \w he|strong="G2532"\w* \w went|strong="G1525"\w* \w in|strong="G1525"\w* \w and|strong="G2532"\w* \w found|strong="G2147"\w* \w many|strong="G4183"\w* \w gathered|strong="G4905"\w* \w together|strong="G4905"\w*. +\v 28 \w He|strong="G3588"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, “\w You|strong="G5210"\w* \w yourselves|strong="G1438"\w* \w know|strong="G1987"\w* \w how|strong="G5613"\w* \w it|strong="G1510"\w* \w is|strong="G1510"\w* \w an|strong="G2228"\w* unlawful \w thing|strong="G3367"\w* \w for|strong="G4314"\w* \w a|strong="G5613"\w* \w man|strong="G3367"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w a|strong="G5613"\w* \w Jew|strong="G2453"\w* \w to|strong="G4314"\w* \w join|strong="G2853"\w* \w himself|strong="G1438"\w* \w or|strong="G2228"\w* \w come|strong="G1510"\w* \w to|strong="G4314"\w* \w one|strong="G3367"\w* \w of|strong="G2316"\w* \w another|strong="G1438"\w* nation, \w but|strong="G2316"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w shown|strong="G1166"\w* \w me|strong="G3004"\w* \w that|strong="G3588"\w* \w I|strong="G2504"\w* shouldn’\w t|strong="G3588"\w* \w call|strong="G3004"\w* \w any|strong="G3367"\w* \w man|strong="G3367"\w* \w unholy|strong="G2839"\w* \w or|strong="G2228"\w* \w unclean|strong="G2839"\w*. +\v 29 \w Therefore|strong="G3767"\w* \w I|strong="G1473"\w* \w also|strong="G2532"\w* \w came|strong="G2064"\w* \w without|strong="G2532"\w* \w complaint|strong="G3056"\w* \w when|strong="G2532"\w* \w I|strong="G1473"\w* \w was|strong="G2532"\w* \w sent|strong="G3343"\w* \w for|strong="G2532"\w*. \w I|strong="G1473"\w* \w ask|strong="G4441"\w* \w therefore|strong="G3767"\w*, \w why|strong="G5101"\w* \w did|strong="G2532"\w* \w you|strong="G2532"\w* \w send|strong="G3343"\w* \w for|strong="G2532"\w* \w me|strong="G1473"\w*?” +\p +\v 30 \w Cornelius|strong="G2883"\w* \w said|strong="G5346"\w*, “\w Four|strong="G5067"\w* \w days|strong="G2250"\w* ago, \w I|strong="G1473"\w* \w was|strong="G1510"\w* fasting \w until|strong="G3360"\w* \w this|strong="G3778"\w* \w hour|strong="G5610"\w*; \w and|strong="G2532"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w ninth|strong="G1766"\w* \w hour|strong="G5610"\w*,\f + \fr 10:30 \ft 3:00 p.m.\f* \w I|strong="G1473"\w* \w prayed|strong="G4336"\w* \w in|strong="G1722"\w* \w my|strong="G3708"\w* \w house|strong="G3624"\w*, \w and|strong="G2532"\w* \w behold|strong="G2400"\w*, \w a|strong="G2532"\w* \w man|strong="G3778"\w* \w stood|strong="G2476"\w* \w before|strong="G1799"\w* \w me|strong="G1473"\w* \w in|strong="G1722"\w* \w bright|strong="G2986"\w* \w clothing|strong="G2066"\w* +\v 31 \w and|strong="G2532"\w* \w said|strong="G5346"\w*, ‘\w Cornelius|strong="G2883"\w*, \w your|strong="G2532"\w* \w prayer|strong="G4335"\w* \w is|strong="G3588"\w* \w heard|strong="G1522"\w*, \w and|strong="G2532"\w* \w your|strong="G2532"\w* \w gifts|strong="G1654"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* needy \w are|strong="G3588"\w* \w remembered|strong="G3403"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w sight|strong="G1799"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\v 32 \w Send|strong="G3992"\w* \w therefore|strong="G3767"\w* \w to|strong="G1519"\w* \w Joppa|strong="G2445"\w* \w and|strong="G2532"\w* \w summon|strong="G3333"\w* \w Simon|strong="G4613"\w*, \w who|strong="G3739"\w* \w is|strong="G3778"\w* \w also|strong="G2532"\w* \w called|strong="G1941"\w* \w Peter|strong="G4074"\w*. \w He|strong="G2532"\w* \w is|strong="G3778"\w* \w staying|strong="G3579"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w house|strong="G3614"\w* \w of|strong="G2532"\w* \w a|strong="G2532"\w* \w tanner|strong="G1038"\w* \w named|strong="G4613"\w* \w Simon|strong="G4613"\w*, \w by|strong="G1722"\w* \w the|strong="G1722"\w* seaside. \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w comes|strong="G2532"\w*, \w he|strong="G2532"\w* \w will|strong="G2532"\w* \w speak|strong="G3778"\w* \w to|strong="G1519"\w* \w you|strong="G3739"\w*.’ +\v 33 \w Therefore|strong="G3767"\w* \w I|strong="G1473"\w* \w sent|strong="G3992"\w* \w to|strong="G4314"\w* \w you|strong="G4771"\w* \w at|strong="G4314"\w* \w once|strong="G1824"\w*, \w and|strong="G5037"\w* \w it|strong="G4160"\w* \w was|strong="G3588"\w* \w good|strong="G2573"\w* \w of|strong="G5259"\w* \w you|strong="G4771"\w* \w to|strong="G4314"\w* \w come|strong="G3854"\w*. \w Now|strong="G3568"\w* \w therefore|strong="G3767"\w* \w we|strong="G2249"\w* \w are|strong="G3588"\w* \w all|strong="G3956"\w* \w here|strong="G3918"\w* \w present|strong="G3568"\w* \w in|strong="G2316"\w* \w the|strong="G3956"\w* \w sight|strong="G1799"\w* \w of|strong="G5259"\w* \w God|strong="G2316"\w* \w to|strong="G4314"\w* hear \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w that|strong="G3588"\w* \w have|strong="G1473"\w* \w been|strong="G3568"\w* \w commanded|strong="G4367"\w* \w you|strong="G4771"\w* \w by|strong="G5259"\w* \w God|strong="G2316"\w*.” +\p +\v 34 \w Peter|strong="G4074"\w* opened \w his|strong="G1909"\w* \w mouth|strong="G4750"\w* \w and|strong="G1161"\w* \w said|strong="G3004"\w*, “\w Truly|strong="G1909"\w* \w I|strong="G1161"\w* \w perceive|strong="G2638"\w* \w that|strong="G3754"\w* \w God|strong="G2316"\w* doesn’\w t|strong="G3588"\w* \w show|strong="G4381"\w* favoritism; +\v 35 \w but|strong="G2532"\w* \w in|strong="G1722"\w* \w every|strong="G3956"\w* \w nation|strong="G1484"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w fears|strong="G5399"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w works|strong="G2038"\w* \w righteousness|strong="G1343"\w* \w is|strong="G1510"\w* \w acceptable|strong="G1184"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*. +\v 36 \w The|strong="G3956"\w* \w word|strong="G3056"\w* \w which|strong="G3739"\w* \w he|strong="G3739"\w* \w sent|strong="G2424"\w* \w to|strong="G2424"\w* \w the|strong="G3956"\w* \w children|strong="G5207"\w* \w of|strong="G5207"\w* \w Israel|strong="G2474"\w*, \w preaching|strong="G2097"\w* \w good|strong="G2097"\w* \w news|strong="G2097"\w* \w of|strong="G5207"\w* \w peace|strong="G1515"\w* \w by|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*—\w he|strong="G3739"\w* \w is|strong="G1510"\w* \w Lord|strong="G2962"\w* \w of|strong="G5207"\w* \w all|strong="G3956"\w*— +\v 37 \w you|strong="G5210"\w* \w yourselves|strong="G4771"\w* \w know|strong="G1492"\w* \w what|strong="G3739"\w* \w happened|strong="G1096"\w*, \w which|strong="G3739"\w* \w was|strong="G1096"\w* \w proclaimed|strong="G2784"\w* \w throughout|strong="G2596"\w* \w all|strong="G3650"\w* \w Judea|strong="G2449"\w*, beginning \w from|strong="G2596"\w* \w Galilee|strong="G1056"\w*, \w after|strong="G3326"\w* \w the|strong="G2596"\w* baptism \w which|strong="G3739"\w* \w John|strong="G2491"\w* \w preached|strong="G2784"\w*; +\v 38 \w how|strong="G5613"\w* \w God|strong="G2316"\w* \w anointed|strong="G5548"\w* \w Jesus|strong="G2424"\w* \w of|strong="G5259"\w* \w Nazareth|strong="G3478"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w and|strong="G2532"\w* \w with|strong="G3326"\w* \w power|strong="G1411"\w*, \w who|strong="G3739"\w* \w went|strong="G2424"\w* \w about|strong="G5613"\w* \w doing|strong="G1330"\w* \w good|strong="G3956"\w* \w and|strong="G2532"\w* \w healing|strong="G2390"\w* \w all|strong="G3956"\w* \w who|strong="G3739"\w* \w were|strong="G1510"\w* \w oppressed|strong="G2616"\w* \w by|strong="G5259"\w* \w the|strong="G2532"\w* \w devil|strong="G1228"\w*, \w for|strong="G3754"\w* \w God|strong="G2316"\w* \w was|strong="G1510"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w*. +\v 39 \w We|strong="G2249"\w* \w are|strong="G3588"\w* \w witnesses|strong="G3144"\w* \w of|strong="G2532"\w* \w everything|strong="G3956"\w* \w he|strong="G2532"\w* \w did|strong="G4160"\w* \w both|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w country|strong="G5561"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w* \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w Jerusalem|strong="G2419"\w*; \w whom|strong="G3739"\w* \w they|strong="G2532"\w* \w also|strong="G2532"\w*\f + \fr 10:39 \ft TR omits “also”\f* killed, \w hanging|strong="G2910"\w* \w him|strong="G3588"\w* \w on|strong="G1909"\w* \w a|strong="G2532"\w* \w tree|strong="G3586"\w*. +\v 40 \w God|strong="G2316"\w* \w raised|strong="G1453"\w* \w him|strong="G3588"\w* \w up|strong="G1453"\w* \w the|strong="G1722"\w* \w third|strong="G5154"\w* \w day|strong="G2250"\w* \w and|strong="G2532"\w* \w gave|strong="G1325"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w be|strong="G1096"\w* revealed, +\v 41 \w not|strong="G3756"\w* \w to|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w*, \w but|strong="G2532"\w* \w to|strong="G2532"\w* \w witnesses|strong="G3144"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w chosen|strong="G3144"\w* \w before|strong="G3588"\w* \w by|strong="G5259"\w* \w God|strong="G2316"\w*, \w to|strong="G2532"\w* \w us|strong="G2249"\w*, \w who|strong="G3588"\w* \w ate|strong="G4906"\w* \w and|strong="G2532"\w* \w drank|strong="G4844"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w* \w after|strong="G3326"\w* \w he|strong="G2532"\w* \w rose|strong="G2532"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*. +\v 42 \w He|strong="G2532"\w* \w commanded|strong="G3853"\w* \w us|strong="G2249"\w* \w to|strong="G2532"\w* \w preach|strong="G2784"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w testify|strong="G1263"\w* \w that|strong="G3754"\w* \w this|strong="G3588"\w* \w is|strong="G1510"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w appointed|strong="G3724"\w* \w by|strong="G5259"\w* \w God|strong="G2316"\w* \w as|strong="G2532"\w* \w the|strong="G2532"\w* \w Judge|strong="G2923"\w* \w of|strong="G5259"\w* \w the|strong="G2532"\w* \w living|strong="G2198"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*. +\v 43 \w All|strong="G3956"\w* \w the|strong="G1519"\w* \w prophets|strong="G4396"\w* \w testify|strong="G3140"\w* \w about|strong="G1519"\w* \w him|strong="G3588"\w*, \w that|strong="G3588"\w* \w through|strong="G1223"\w* \w his|strong="G3956"\w* \w name|strong="G3686"\w* \w everyone|strong="G3956"\w* \w who|strong="G3588"\w* \w believes|strong="G4100"\w* \w in|strong="G1519"\w* \w him|strong="G3588"\w* \w will|strong="G3956"\w* \w receive|strong="G2983"\w* remission \w of|strong="G1223"\w* sins.” +\p +\v 44 \w While|strong="G2980"\w* \w Peter|strong="G4074"\w* \w was|strong="G3588"\w* \w still|strong="G2089"\w* \w speaking|strong="G2980"\w* \w these|strong="G3778"\w* \w words|strong="G3056"\w*, \w the|strong="G3956"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w fell|strong="G1968"\w* \w on|strong="G1909"\w* \w all|strong="G3956"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* heard \w the|strong="G3956"\w* \w word|strong="G3056"\w*. +\v 45 \w They|strong="G2532"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w circumcision|strong="G4061"\w* \w who|strong="G3588"\w* \w believed|strong="G3588"\w* \w were|strong="G3588"\w* \w amazed|strong="G1839"\w*, \w as|strong="G3745"\w* \w many|strong="G3745"\w* \w as|strong="G3745"\w* \w came|strong="G4905"\w* \w with|strong="G1537"\w* \w Peter|strong="G4074"\w*, \w because|strong="G3754"\w* \w the|strong="G2532"\w* \w gift|strong="G1431"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w was|strong="G3588"\w* \w also|strong="G2532"\w* \w poured|strong="G1632"\w* \w out|strong="G1537"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w*. +\v 46 \w For|strong="G1063"\w* \w they|strong="G2532"\w* heard \w them|strong="G3588"\w* \w speaking|strong="G2980"\w* \w in|strong="G2532"\w* \w other|strong="G3588"\w* \w languages|strong="G1100"\w* \w and|strong="G2532"\w* magnifying \w God|strong="G2316"\w*. +\p \w Then|strong="G2532"\w* \w Peter|strong="G4074"\w* answered, +\v 47 “\w Can|strong="G1410"\w* \w anyone|strong="G5100"\w* \w forbid|strong="G2967"\w* \w these|strong="G3778"\w* \w people|strong="G2983"\w* \w from|strong="G2532"\w* \w being|strong="G2532"\w* baptized \w with|strong="G2532"\w* \w water|strong="G5204"\w*? \w They|strong="G2532"\w* \w have|strong="G2532"\w* \w received|strong="G2983"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w just|strong="G5613"\w* \w like|strong="G5613"\w* \w us|strong="G2249"\w*.” +\v 48 \w He|strong="G1161"\w* \w commanded|strong="G4367"\w* \w them|strong="G3588"\w* \w to|strong="G1722"\w* \w be|strong="G3588"\w* baptized \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G2250"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. \w Then|strong="G5119"\w* \w they|strong="G1161"\w* \w asked|strong="G2065"\w* \w him|strong="G3588"\w* \w to|strong="G1722"\w* \w stay|strong="G1961"\w* \w some|strong="G5100"\w* \w days|strong="G2250"\w*. +\c 11 +\p +\v 1 \w Now|strong="G1161"\w* \w the|strong="G2532"\w* apostles \w and|strong="G2532"\w* \w the|strong="G2532"\w* brothers\f + \fr 11:1 \ft The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”\f* \w who|strong="G3588"\w* \w were|strong="G1510"\w* \w in|strong="G2596"\w* \w Judea|strong="G2449"\w* \w heard|strong="G1484"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w* \w had|strong="G2532"\w* \w also|strong="G2532"\w* \w received|strong="G1209"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w*. +\v 2 \w When|strong="G3753"\w* \w Peter|strong="G4074"\w* \w had|strong="G3588"\w* \w come|strong="G1537"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w*, \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G1519"\w* \w circumcision|strong="G4061"\w* \w contended|strong="G1252"\w* \w with|strong="G4314"\w* \w him|strong="G3588"\w*, +\v 3 \w saying|strong="G3004"\w*, “\w You|strong="G3754"\w* \w went|strong="G1525"\w* \w in|strong="G1525"\w* \w to|strong="G4314"\w* uncircumcised men \w and|strong="G2532"\w* \w ate|strong="G4906"\w* \w with|strong="G4314"\w* \w them|strong="G3004"\w*!” +\p +\v 4 \w But|strong="G1161"\w* \w Peter|strong="G4074"\w* \w began|strong="G1161"\w*, \w and|strong="G1161"\w* \w explained|strong="G1620"\w* \w to|strong="G3004"\w* \w them|strong="G3004"\w* \w in|strong="G3004"\w* \w order|strong="G2517"\w*, \w saying|strong="G3004"\w*, +\v 5 “\w I|strong="G1473"\w* \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w city|strong="G4172"\w* \w of|strong="G1537"\w* \w Joppa|strong="G2445"\w* \w praying|strong="G4336"\w*, \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w a|strong="G5613"\w* \w trance|strong="G1611"\w* \w I|strong="G1473"\w* \w saw|strong="G3708"\w* \w a|strong="G5613"\w* \w vision|strong="G3705"\w*: \w a|strong="G5613"\w* \w certain|strong="G5100"\w* \w container|strong="G4632"\w* \w descending|strong="G2597"\w*, \w like|strong="G5613"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G5613"\w* \w great|strong="G3173"\w* \w sheet|strong="G3607"\w* \w let|strong="G2524"\w* \w down|strong="G2597"\w* \w from|strong="G1537"\w* \w heaven|strong="G3772"\w* \w by|strong="G1722"\w* \w four|strong="G5064"\w* corners. \w It|strong="G2532"\w* \w came|strong="G2064"\w* \w as|strong="G5613"\w* \w far|strong="G3588"\w* \w as|strong="G5613"\w* \w me|strong="G1473"\w*. +\v 6 \w When|strong="G2532"\w* \w I|strong="G3739"\w* \w had|strong="G2532"\w* \w looked|strong="G3708"\w* intently \w at|strong="G1519"\w* \w it|strong="G2532"\w*, \w I|strong="G3739"\w* \w considered|strong="G2657"\w*, \w and|strong="G2532"\w* \w saw|strong="G3708"\w* \w the|strong="G2532"\w* \w four-footed|strong="G5074"\w* \w animals|strong="G5074"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w wild|strong="G2342"\w* \w animals|strong="G5074"\w*, \w creeping|strong="G2532"\w* \w things|strong="G3588"\w*, \w and|strong="G2532"\w* \w birds|strong="G4071"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w*. +\v 7 \w I|strong="G1473"\w* \w also|strong="G2532"\w* heard \w a|strong="G2532"\w* \w voice|strong="G5456"\w* \w saying|strong="G3004"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w*, \wj ‘Rise, \+w Peter|strong="G4074"\+w*, \+w kill|strong="G2380"\+w* \+w and|strong="G2532"\+w* \+w eat|strong="G2068"\+w*!’ \wj* +\v 8 \w But|strong="G1161"\w* \w I|strong="G1473"\w* \w said|strong="G3004"\w*, ‘\w Not|strong="G1473"\w* \w so|strong="G1161"\w*, \w Lord|strong="G2962"\w*, \w for|strong="G3754"\w* \w nothing|strong="G3763"\w* \w unholy|strong="G2839"\w* \w or|strong="G2228"\w* \w unclean|strong="G2839"\w* \w has|strong="G2962"\w* \w ever|strong="G1519"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w my|strong="G1525"\w* \w mouth|strong="G4750"\w*.’ +\v 9 \w But|strong="G1161"\w* \w a|strong="G1161"\w* \w voice|strong="G5456"\w* answered \w me|strong="G2511"\w* \w the|strong="G1537"\w* \w second|strong="G1208"\w* \w time|strong="G1208"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w heaven|strong="G3772"\w*, \wj ‘\+w What|strong="G3739"\+w* \+w God|strong="G2316"\+w* \+w has|strong="G2316"\+w* \+w cleansed|strong="G2511"\+w*, don’\+w t|strong="G3588"\+w* \+w you|strong="G4771"\+w* \+w call|strong="G2840"\+w* \+w unclean|strong="G2840"\+w*.’\wj* +\v 10 \w This|strong="G3778"\w* \w was|strong="G1096"\w* \w done|strong="G1096"\w* \w three|strong="G5151"\w* \w times|strong="G5151"\w*, \w and|strong="G2532"\w* \w all|strong="G2532"\w* \w were|strong="G3588"\w* drawn \w up|strong="G1519"\w* \w again|strong="G3825"\w* \w into|strong="G1519"\w* \w heaven|strong="G3772"\w*. +\v 11 \w Behold|strong="G2400"\w*, \w immediately|strong="G1824"\w* \w three|strong="G5140"\w* \w men|strong="G3588"\w* \w stood|strong="G2186"\w* \w before|strong="G1909"\w* \w the|strong="G1722"\w* \w house|strong="G3614"\w* \w where|strong="G3739"\w* \w I|strong="G1473"\w* \w was|strong="G1510"\w*, \w having|strong="G2532"\w* \w been|strong="G1510"\w* \w sent|strong="G2532"\w* \w from|strong="G2532"\w* \w Caesarea|strong="G2542"\w* \w to|strong="G4314"\w* \w me|strong="G1473"\w*. +\v 12 \w The|strong="G2532"\w* \w Spirit|strong="G4151"\w* \w told|strong="G3004"\w* \w me|strong="G1473"\w* \w to|strong="G1519"\w* \w go|strong="G1525"\w* \w with|strong="G4862"\w* \w them|strong="G3588"\w* \w without|strong="G3367"\w* discriminating. \w These|strong="G3778"\w* \w six|strong="G1803"\w* brothers \w also|strong="G2532"\w* \w accompanied|strong="G4905"\w* \w me|strong="G1473"\w*, \w and|strong="G2532"\w* \w we|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w man|strong="G3778"\w*’s \w house|strong="G3624"\w*. +\v 13 \w He|strong="G2532"\w* \w told|strong="G3004"\w* \w us|strong="G3004"\w* \w how|strong="G4459"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w seen|strong="G3708"\w* \w the|strong="G1722"\w* angel \w standing|strong="G2476"\w* \w in|strong="G1722"\w* \w his|strong="G1519"\w* \w house|strong="G3624"\w* \w and|strong="G2532"\w* \w saying|strong="G3004"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, ‘\w Send|strong="G3343"\w* \w to|strong="G1519"\w* \w Joppa|strong="G2445"\w* \w and|strong="G2532"\w* \w get|strong="G2532"\w* \w Simon|strong="G4613"\w*, \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w called|strong="G3004"\w* \w Peter|strong="G4074"\w*, +\v 14 \w who|strong="G3739"\w* \w will|strong="G2532"\w* \w speak|strong="G2980"\w* \w to|strong="G4314"\w* \w you|strong="G4771"\w* \w words|strong="G4487"\w* \w by|strong="G1722"\w* \w which|strong="G3739"\w* \w you|strong="G4771"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w saved|strong="G4982"\w*, \w you|strong="G4771"\w* \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w your|strong="G2532"\w* \w house|strong="G3624"\w*.’ +\v 15 \w As|strong="G5618"\w* \w I|strong="G1473"\w* \w began|strong="G1909"\w* \w to|strong="G2532"\w* \w speak|strong="G2980"\w*, \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w fell|strong="G1968"\w* \w on|strong="G1909"\w* \w them|strong="G3588"\w*, \w even|strong="G2532"\w* \w as|strong="G5618"\w* \w on|strong="G1909"\w* \w us|strong="G2249"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* beginning. +\v 16 \w I|strong="G1161"\w* \w remembered|strong="G3403"\w* \w the|strong="G1722"\w* \w word|strong="G4487"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w how|strong="G5613"\w* \w he|strong="G1161"\w* \w said|strong="G3004"\w*, \wj ‘\+w John|strong="G2491"\+w* \+w indeed|strong="G3303"\+w* baptized \+w in|strong="G1722"\+w* \+w water|strong="G5204"\+w*, \+w but|strong="G1161"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G2962"\+w* \+w be|strong="G3588"\+w* baptized \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w Holy|strong="G4151"\+w* \+w Spirit|strong="G4151"\+w*.’\wj* +\v 17 \w If|strong="G1487"\w* \w then|strong="G3767"\w* \w God|strong="G2316"\w* \w gave|strong="G1325"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w the|strong="G2532"\w* \w same|strong="G2470"\w* \w gift|strong="G1431"\w* \w as|strong="G5613"\w* \w us|strong="G1325"\w* \w when|strong="G5613"\w* \w we|strong="G2249"\w* \w believed|strong="G4100"\w* \w in|strong="G1909"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w who|strong="G5101"\w* \w was|strong="G1510"\w* \w I|strong="G1473"\w*, \w that|strong="G3588"\w* \w I|strong="G1473"\w* \w could|strong="G1415"\w* \w withstand|strong="G2967"\w* \w God|strong="G2316"\w*?” +\p +\v 18 \w When|strong="G1161"\w* \w they|strong="G2532"\w* \w heard|strong="G1484"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w they|strong="G2532"\w* held \w their|strong="G2532"\w* \w peace|strong="G2270"\w* \w and|strong="G2532"\w* \w glorified|strong="G1392"\w* \w God|strong="G2316"\w*, \w saying|strong="G3004"\w*, “\w Then|strong="G2532"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w also|strong="G2532"\w* \w granted|strong="G1325"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w* \w repentance|strong="G3341"\w* \w to|strong="G1519"\w* \w life|strong="G2222"\w*!” +\p +\v 19 \w They|strong="G2532"\w* \w therefore|strong="G3767"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w scattered|strong="G1289"\w* \w abroad|strong="G1289"\w* \w by|strong="G1909"\w* \w the|strong="G2532"\w* oppression \w that|strong="G3588"\w* \w arose|strong="G1096"\w* \w about|strong="G1909"\w* \w Stephen|strong="G4736"\w* traveled \w as|strong="G2532"\w* \w far|strong="G2193"\w* \w as|strong="G2532"\w* \w Phoenicia|strong="G5403"\w*, \w Cyprus|strong="G2954"\w*, \w and|strong="G2532"\w* Antioch, \w speaking|strong="G2980"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w to|strong="G2532"\w* \w no|strong="G3361"\w* \w one|strong="G3367"\w* \w except|strong="G1487"\w* \w to|strong="G2532"\w* \w Jews|strong="G2453"\w* \w only|strong="G3440"\w*. +\v 20 \w But|strong="G1161"\w* \w there|strong="G2532"\w* \w were|strong="G1510"\w* \w some|strong="G5100"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w*, \w men|strong="G5100"\w* \w of|strong="G1537"\w* \w Cyprus|strong="G2953"\w* \w and|strong="G2532"\w* \w Cyrene|strong="G2956"\w*, \w who|strong="G3588"\w*, \w when|strong="G1161"\w* \w they|strong="G2532"\w* \w had|strong="G2424"\w* \w come|strong="G2064"\w* \w to|strong="G1519"\w* Antioch, \w spoke|strong="G2980"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* Hellenists,\f + \fr 11:20 \ft A Hellenist is someone who keeps Greek customs and culture.\f* \w preaching|strong="G2097"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*. +\v 21 \w The|strong="G2532"\w* \w hand|strong="G5495"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w was|strong="G1510"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w great|strong="G4183"\w* number \w believed|strong="G4100"\w* \w and|strong="G2532"\w* \w turned|strong="G1994"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*. +\v 22 \w The|strong="G1722"\w* \w report|strong="G3056"\w* \w concerning|strong="G4012"\w* \w them|strong="G3588"\w* \w came|strong="G2532"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w ears|strong="G3775"\w* \w of|strong="G4012"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w* \w which|strong="G3588"\w* \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w Jerusalem|strong="G2419"\w*. \w They|strong="G2532"\w* \w sent|strong="G1821"\w* \w out|strong="G2532"\w* Barnabas \w to|strong="G1519"\w* \w go|strong="G1519"\w* \w as|strong="G1519"\w* \w far|strong="G2193"\w* \w as|strong="G1519"\w* Antioch, +\v 23 \w who|strong="G3739"\w*, \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w come|strong="G3854"\w*, \w and|strong="G2532"\w* \w had|strong="G2532"\w* \w seen|strong="G3708"\w* \w the|strong="G2532"\w* \w grace|strong="G5485"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w was|strong="G3588"\w* \w glad|strong="G5463"\w*. \w He|strong="G2532"\w* \w exhorted|strong="G3870"\w* \w them|strong="G3588"\w* \w all|strong="G3956"\w*, \w that|strong="G3739"\w* \w with|strong="G2532"\w* \w purpose|strong="G4286"\w* \w of|strong="G2316"\w* \w heart|strong="G2588"\w* \w they|strong="G2532"\w* \w should|strong="G2316"\w* \w remain|strong="G4357"\w* near \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*. +\v 24 \w For|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w good|strong="G2425"\w* man, \w and|strong="G2532"\w* \w full|strong="G4134"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w and|strong="G2532"\w* \w of|strong="G4151"\w* \w faith|strong="G4102"\w*, \w and|strong="G2532"\w* \w many|strong="G2425"\w* \w people|strong="G3793"\w* \w were|strong="G1510"\w* \w added|strong="G4369"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*. +\p +\v 25 Barnabas \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w to|strong="G1519"\w* \w Tarsus|strong="G5019"\w* \w to|strong="G1519"\w* look \w for|strong="G1519"\w* \w Saul|strong="G4569"\w*. +\v 26 \w When|strong="G1161"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w found|strong="G2147"\w* \w him|strong="G3588"\w*, \w he|strong="G2532"\w* \w brought|strong="G1096"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* Antioch. \w For|strong="G1519"\w* \w a|strong="G1096"\w* \w whole|strong="G3650"\w* \w year|strong="G1763"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w gathered|strong="G4863"\w* \w together|strong="G4863"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w*, \w and|strong="G2532"\w* \w taught|strong="G1321"\w* \w many|strong="G2425"\w* \w people|strong="G3793"\w*. \w The|strong="G1722"\w* \w disciples|strong="G3101"\w* \w were|strong="G3588"\w* \w first|strong="G4413"\w* \w called|strong="G5537"\w* \w Christians|strong="G5546"\w* \w in|strong="G1722"\w* Antioch. +\p +\v 27 \w Now|strong="G1161"\w* \w in|strong="G1722"\w* \w these|strong="G3778"\w* \w days|strong="G2250"\w*, \w prophets|strong="G4396"\w* \w came|strong="G2718"\w* \w down|strong="G2718"\w* \w from|strong="G2718"\w* \w Jerusalem|strong="G2414"\w* \w to|strong="G1519"\w* Antioch. +\v 28 \w One|strong="G1520"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w* \w named|strong="G3686"\w* Agabus \w stood|strong="G3588"\w* \w up|strong="G1537"\w* \w and|strong="G1161"\w* indicated \w by|strong="G1223"\w* \w the|strong="G1537"\w* \w Spirit|strong="G4151"\w* \w that|strong="G3588"\w* \w there|strong="G1161"\w* \w should|strong="G3195"\w* \w be|strong="G1096"\w* \w a|strong="G1096"\w* \w great|strong="G3173"\w* \w famine|strong="G3042"\w* \w all|strong="G3650"\w* \w over|strong="G1909"\w* \w the|strong="G1537"\w* \w world|strong="G3625"\w*, \w which|strong="G3588"\w* \w also|strong="G1161"\w* \w happened|strong="G1096"\w* \w in|strong="G1909"\w* \w the|strong="G1537"\w* days \w of|strong="G1537"\w* \w Claudius|strong="G2804"\w*. +\v 29 \w As|strong="G2531"\w* \w any|strong="G5100"\w* \w of|strong="G5100"\w* \w the|strong="G1722"\w* \w disciples|strong="G3101"\w* \w had|strong="G3588"\w* plenty, \w each|strong="G1538"\w* \w determined|strong="G3724"\w* \w to|strong="G1519"\w* \w send|strong="G3992"\w* \w relief|strong="G1248"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* brothers \w who|strong="G3588"\w* \w lived|strong="G2730"\w* \w in|strong="G1722"\w* \w Judea|strong="G2449"\w*; +\v 30 \w which|strong="G3739"\w* \w they|strong="G2532"\w* \w also|strong="G2532"\w* \w did|strong="G4160"\w*, sending \w it|strong="G2532"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w* \w by|strong="G1223"\w* \w the|strong="G2532"\w* \w hands|strong="G5495"\w* \w of|strong="G1223"\w* Barnabas \w and|strong="G2532"\w* \w Saul|strong="G4569"\w*. +\c 12 +\p +\v 1 \w Now|strong="G1161"\w* \w about|strong="G2596"\w* \w that|strong="G3588"\w* \w time|strong="G2540"\w*, \w King|strong="G3588"\w* \w Herod|strong="G2264"\w* stretched \w out|strong="G2596"\w* \w his|strong="G1565"\w* \w hands|strong="G5495"\w* \w to|strong="G2596"\w* oppress \w some|strong="G5100"\w* \w of|strong="G1577"\w* \w the|strong="G1161"\w* \w assembly|strong="G1577"\w*. +\v 2 \w He|strong="G1161"\w* killed \w James|strong="G2385"\w*, \w the|strong="G1161"\w* brother \w of|strong="G3588"\w* \w John|strong="G2491"\w*, \w with|strong="G3588"\w* \w the|strong="G1161"\w* \w sword|strong="G3162"\w*. +\v 3 \w When|strong="G1161"\w* \w he|strong="G2532"\w* \w saw|strong="G3708"\w* \w that|strong="G3754"\w* \w it|strong="G2532"\w* pleased \w the|strong="G2532"\w* \w Jews|strong="G2453"\w*, \w he|strong="G2532"\w* \w proceeded|strong="G4369"\w* \w to|strong="G2532"\w* seize \w Peter|strong="G4074"\w* \w also|strong="G2532"\w*. \w This|strong="G3588"\w* \w was|strong="G1510"\w* during \w the|strong="G2532"\w* \w days|strong="G2250"\w* \w of|strong="G2250"\w* unleavened bread. +\v 4 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* arrested \w him|strong="G3588"\w*, \w he|strong="G2532"\w* \w put|strong="G5087"\w* \w him|strong="G3588"\w* \w in|strong="G1519"\w* \w prison|strong="G5438"\w* \w and|strong="G2532"\w* \w delivered|strong="G3860"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w four|strong="G5064"\w* \w squads|strong="G5069"\w* \w of|strong="G2532"\w* \w four|strong="G5064"\w* \w soldiers|strong="G4757"\w* \w each|strong="G3326"\w* \w to|strong="G1519"\w* \w guard|strong="G5442"\w* \w him|strong="G3588"\w*, \w intending|strong="G1014"\w* \w to|strong="G1519"\w* \w bring|strong="G2532"\w* \w him|strong="G3588"\w* \w out|strong="G2532"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w* \w after|strong="G3326"\w* \w the|strong="G2532"\w* \w Passover|strong="G3957"\w*. +\v 5 \w Peter|strong="G4074"\w* \w therefore|strong="G3767"\w* \w was|strong="G1510"\w* \w kept|strong="G5083"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w prison|strong="G5438"\w*, \w but|strong="G1161"\w* constant \w prayer|strong="G4335"\w* \w was|strong="G1510"\w* \w made|strong="G1096"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w* \w to|strong="G4314"\w* \w God|strong="G2316"\w* \w for|strong="G4012"\w* \w him|strong="G3588"\w*. +\v 6 \w The|strong="G1161"\w* \w same|strong="G1565"\w* \w night|strong="G3571"\w* \w when|strong="G3753"\w* \w Herod|strong="G2264"\w* \w was|strong="G1510"\w* \w about|strong="G3195"\w* \w to|strong="G3195"\w* \w bring|strong="G4254"\w* \w him|strong="G3588"\w* \w out|strong="G1510"\w*, \w Peter|strong="G4074"\w* \w was|strong="G1510"\w* \w sleeping|strong="G2837"\w* \w between|strong="G3342"\w* \w two|strong="G1417"\w* \w soldiers|strong="G4757"\w*, \w bound|strong="G1210"\w* \w with|strong="G1210"\w* \w two|strong="G1417"\w* \w chains|strong="G1210"\w*. \w Guards|strong="G5441"\w* \w in|strong="G1161"\w* \w front|strong="G4253"\w* \w of|strong="G3588"\w* \w the|strong="G1161"\w* \w door|strong="G2374"\w* \w kept|strong="G5083"\w* \w the|strong="G1161"\w* \w prison|strong="G5438"\w*. +\p +\v 7 \w And|strong="G2532"\w* \w behold|strong="G2400"\w*, \w an|strong="G2532"\w* angel \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w stood|strong="G2186"\w* \w by|strong="G1722"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w light|strong="G5457"\w* \w shone|strong="G2989"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w cell|strong="G3612"\w*. \w He|strong="G2532"\w* \w struck|strong="G3960"\w* \w Peter|strong="G4074"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w side|strong="G4125"\w* \w and|strong="G2532"\w* \w woke|strong="G1453"\w* \w him|strong="G3588"\w* \w up|strong="G1453"\w*, \w saying|strong="G3004"\w*, “\w Stand|strong="G1453"\w* \w up|strong="G1453"\w* \w quickly|strong="G5034"\w*!” \w His|strong="G1722"\w* chains \w fell|strong="G2532"\w* \w off|strong="G1601"\w* \w his|strong="G1722"\w* \w hands|strong="G5495"\w*. +\v 8 \w The|strong="G2532"\w* angel \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w Get|strong="G2532"\w* \w dressed|strong="G4016"\w* \w and|strong="G2532"\w* \w put|strong="G4160"\w* \w on|strong="G1161"\w* \w your|strong="G2532"\w* \w sandals|strong="G4547"\w*.” \w He|strong="G2532"\w* \w did|strong="G4160"\w* \w so|strong="G3779"\w*. \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w Put|strong="G4160"\w* \w on|strong="G1161"\w* \w your|strong="G2532"\w* \w cloak|strong="G2440"\w* \w and|strong="G2532"\w* \w follow|strong="G1161"\w* \w me|strong="G1473"\w*.” +\v 9 \w And|strong="G2532"\w* \w he|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w and|strong="G2532"\w* \w followed|strong="G1096"\w* \w him|strong="G3588"\w*. \w He|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w what|strong="G3588"\w* \w was|strong="G1510"\w* \w being|strong="G1510"\w* \w done|strong="G1096"\w* \w by|strong="G1223"\w* \w the|strong="G2532"\w* angel \w was|strong="G1510"\w* real, \w but|strong="G1161"\w* \w thought|strong="G1380"\w* \w he|strong="G2532"\w* \w saw|strong="G1492"\w* \w a|strong="G1096"\w* \w vision|strong="G3705"\w*. +\v 10 \w When|strong="G1161"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w past|strong="G1330"\w* \w the|strong="G2532"\w* \w first|strong="G4413"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w second|strong="G1208"\w* \w guard|strong="G2532"\w*, \w they|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w iron|strong="G4603"\w* \w gate|strong="G4439"\w* \w that|strong="G3588"\w* \w leads|strong="G1519"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w*, \w which|strong="G3588"\w* opened \w to|strong="G1519"\w* \w them|strong="G3588"\w* \w by|strong="G1909"\w* itself. \w They|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w and|strong="G2532"\w* \w went|strong="G1831"\w* down \w one|strong="G1520"\w* \w street|strong="G4505"\w*, \w and|strong="G2532"\w* \w immediately|strong="G2112"\w* \w the|strong="G2532"\w* angel \w departed|strong="G1831"\w* \w from|strong="G2064"\w* \w him|strong="G3588"\w*. +\p +\v 11 \w When|strong="G2532"\w* \w Peter|strong="G4074"\w* \w had|strong="G2532"\w* \w come|strong="G1096"\w* \w to|strong="G2532"\w* \w himself|strong="G1438"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Now|strong="G3568"\w* \w I|strong="G1473"\w* \w truly|strong="G1722"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w has|strong="G2962"\w* \w sent|strong="G1821"\w* \w out|strong="G1537"\w* \w his|strong="G1438"\w* angel \w and|strong="G2532"\w* \w delivered|strong="G1807"\w* \w me|strong="G1473"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w hand|strong="G5495"\w* \w of|strong="G1537"\w* \w Herod|strong="G2264"\w*, \w and|strong="G2532"\w* \w from|strong="G1537"\w* \w everything|strong="G3956"\w* \w the|strong="G1722"\w* \w Jewish|strong="G2453"\w* \w people|strong="G2992"\w* \w were|strong="G3588"\w* \w expecting|strong="G4329"\w*.” +\v 12 Thinking \w about|strong="G1909"\w* \w that|strong="G3588"\w*, \w he|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w house|strong="G3614"\w* \w of|strong="G2532"\w* \w Mary|strong="G3137"\w*, \w the|strong="G2532"\w* \w mother|strong="G3384"\w* \w of|strong="G2532"\w* \w John|strong="G2491"\w* \w who|strong="G3588"\w* \w was|strong="G1510"\w* \w called|strong="G1941"\w* \w Mark|strong="G3138"\w*, \w where|strong="G3757"\w* \w many|strong="G2425"\w* \w were|strong="G1510"\w* \w gathered|strong="G4867"\w* \w together|strong="G1909"\w* \w and|strong="G2532"\w* \w were|strong="G1510"\w* \w praying|strong="G4336"\w*. +\v 13 \w When|strong="G1161"\w* Peter \w knocked|strong="G2925"\w* \w at|strong="G1161"\w* \w the|strong="G1161"\w* \w door|strong="G2374"\w* \w of|strong="G3686"\w* \w the|strong="G1161"\w* \w gate|strong="G4440"\w*, \w a|strong="G1161"\w* \w servant|strong="G3588"\w* girl \w named|strong="G3686"\w* \w Rhoda|strong="G4498"\w* \w came|strong="G4334"\w* \w to|strong="G4334"\w* \w answer|strong="G5219"\w*. +\v 14 \w When|strong="G1161"\w* \w she|strong="G2532"\w* \w recognized|strong="G1921"\w* \w Peter|strong="G4074"\w*’s \w voice|strong="G5456"\w*, \w she|strong="G2532"\w* didn’\w t|strong="G3588"\w* open \w the|strong="G2532"\w* \w gate|strong="G4440"\w* \w for|strong="G1161"\w* \w joy|strong="G5479"\w*, \w but|strong="G1161"\w* \w ran|strong="G1532"\w* \w in|strong="G2532"\w* \w and|strong="G2532"\w* reported \w that|strong="G3588"\w* \w Peter|strong="G4074"\w* \w was|strong="G3588"\w* \w standing|strong="G2476"\w* \w in|strong="G2532"\w* \w front|strong="G4253"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w gate|strong="G4440"\w*. +\p +\v 15 \w They|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w her|strong="G1438"\w*, “\w You|strong="G3004"\w* \w are|strong="G1510"\w* crazy!” \w But|strong="G1161"\w* \w she|strong="G1161"\w* insisted \w that|strong="G3588"\w* \w it|strong="G1161"\w* \w was|strong="G1510"\w* \w so|strong="G3779"\w*. \w They|strong="G1161"\w* \w said|strong="G3004"\w*, “\w It|strong="G1161"\w* \w is|strong="G1510"\w* \w his|strong="G1438"\w* angel.” +\v 16 \w But|strong="G1161"\w* \w Peter|strong="G4074"\w* \w continued|strong="G1961"\w* \w knocking|strong="G2925"\w*. \w When|strong="G1161"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* opened, \w they|strong="G2532"\w* \w saw|strong="G3708"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w were|strong="G3588"\w* \w amazed|strong="G1839"\w*. +\v 17 \w But|strong="G1161"\w* \w he|strong="G2532"\w*, \w beckoning|strong="G2678"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w* \w with|strong="G1537"\w* \w his|strong="G1519"\w* \w hand|strong="G5495"\w* \w to|strong="G1519"\w* \w be|strong="G2532"\w* \w silent|strong="G4601"\w*, \w declared|strong="G1334"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w* \w how|strong="G4459"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w had|strong="G2532"\w* \w brought|strong="G1806"\w* \w him|strong="G3588"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w prison|strong="G5438"\w*. \w He|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Tell|strong="G3004"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w to|strong="G1519"\w* \w James|strong="G2385"\w* \w and|strong="G2532"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* brothers.” \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w departed|strong="G1831"\w* \w and|strong="G2532"\w* \w went|strong="G1831"\w* \w to|strong="G1519"\w* \w another|strong="G2087"\w* \w place|strong="G5117"\w*. +\p +\v 18 \w Now|strong="G1161"\w* \w as|strong="G1722"\w* \w soon|strong="G1722"\w* \w as|strong="G1722"\w* \w it|strong="G1161"\w* \w was|strong="G1510"\w* \w day|strong="G2250"\w*, \w there|strong="G1161"\w* \w was|strong="G1510"\w* \w no|strong="G3756"\w* \w small|strong="G3641"\w* \w stir|strong="G5017"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w soldiers|strong="G4757"\w* \w about|strong="G1722"\w* \w what|strong="G5101"\w* \w had|strong="G1510"\w* \w become|strong="G1096"\w* \w of|strong="G2250"\w* \w Peter|strong="G4074"\w*. +\v 19 \w When|strong="G1161"\w* \w Herod|strong="G2264"\w* \w had|strong="G2532"\w* \w sought|strong="G1934"\w* \w for|strong="G1519"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w find|strong="G2147"\w* \w him|strong="G3588"\w*, \w he|strong="G2532"\w* examined \w the|strong="G2532"\w* \w guards|strong="G5441"\w*, \w then|strong="G2532"\w* \w commanded|strong="G2753"\w* \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w should|strong="G3588"\w* \w be|strong="G2532"\w* \w put|strong="G2532"\w* \w to|strong="G1519"\w* death. \w He|strong="G2532"\w* \w went|strong="G2532"\w* \w down|strong="G2718"\w* \w from|strong="G2532"\w* \w Judea|strong="G2449"\w* \w to|strong="G1519"\w* \w Caesarea|strong="G2542"\w*, \w and|strong="G2532"\w* \w stayed|strong="G1304"\w* \w there|strong="G2532"\w*. +\p +\v 20 \w Now|strong="G1161"\w* \w Herod|strong="G1510"\w* \w was|strong="G1510"\w* \w very|strong="G2532"\w* \w angry|strong="G2371"\w* \w with|strong="G4314"\w* \w the|strong="G2532"\w* \w people|strong="G1510"\w* \w of|strong="G1223"\w* \w Tyre|strong="G5183"\w* \w and|strong="G2532"\w* \w Sidon|strong="G4606"\w*. \w They|strong="G2532"\w* \w came|strong="G2532"\w* \w with|strong="G4314"\w* \w one|strong="G3588"\w* \w accord|strong="G3661"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w*, \w having|strong="G2532"\w* \w made|strong="G1161"\w* Blastus, \w the|strong="G2532"\w* \w king|strong="G3588"\w*’s personal aide, \w their|strong="G2532"\w* \w friend|strong="G3982"\w*, \w they|strong="G2532"\w* asked \w for|strong="G1223"\w* \w peace|strong="G1515"\w*, \w because|strong="G1223"\w* \w their|strong="G2532"\w* \w country|strong="G5561"\w* depended \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w king|strong="G3588"\w*’s \w country|strong="G5561"\w* \w for|strong="G1223"\w* food. +\v 21 \w On|strong="G1909"\w* \w an|strong="G2532"\w* \w appointed|strong="G5002"\w* \w day|strong="G2250"\w*, \w Herod|strong="G2264"\w* \w dressed|strong="G1746"\w* \w himself|strong="G1438"\w* \w in|strong="G1909"\w* royal \w clothing|strong="G2066"\w*, \w sat|strong="G2523"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* throne, \w and|strong="G2532"\w* \w gave|strong="G2532"\w* \w a|strong="G2532"\w* speech \w to|strong="G4314"\w* \w them|strong="G3588"\w*. +\v 22 \w The|strong="G2532"\w* \w people|strong="G1218"\w* \w shouted|strong="G2019"\w*, “\w The|strong="G2532"\w* \w voice|strong="G5456"\w* \w of|strong="G2316"\w* \w a|strong="G2532"\w* \w god|strong="G2316"\w*, \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w of|strong="G2316"\w* \w a|strong="G2532"\w* \w man|strong="G3756"\w*!” +\v 23 \w Immediately|strong="G3916"\w* \w an|strong="G2532"\w* angel \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w struck|strong="G3960"\w* \w him|strong="G3588"\w*, \w because|strong="G1161"\w* \w he|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w give|strong="G1325"\w* \w God|strong="G2316"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w*. \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w was|strong="G1096"\w* \w eaten|strong="G4662"\w* \w by|strong="G2532"\w* \w worms|strong="G4662"\w* \w and|strong="G2532"\w* \w died|strong="G1634"\w*. +\p +\v 24 \w But|strong="G1161"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w* grew \w and|strong="G2532"\w* \w multiplied|strong="G4129"\w*. +\v 25 Barnabas \w and|strong="G2532"\w* \w Saul|strong="G4569"\w* \w returned|strong="G5290"\w* \w to|strong="G1519"\w*\f + \fr 12:25 \ft TR reads “from” instead of “to”\f* \w Jerusalem|strong="G2419"\w* \w when|strong="G1161"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w fulfilled|strong="G4137"\w* \w their|strong="G2532"\w* \w service|strong="G1248"\w*, \w also|strong="G2532"\w* \w taking|strong="G4838"\w* \w with|strong="G1537"\w* \w them|strong="G3588"\w* \w John|strong="G2491"\w* \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w called|strong="G1941"\w* \w Mark|strong="G3138"\w*. +\c 13 +\p +\v 1 \w Now|strong="G1161"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w* \w that|strong="G3588"\w* \w was|strong="G1510"\w* \w at|strong="G1722"\w* Antioch \w there|strong="G2532"\w* \w were|strong="G1510"\w* \w some|strong="G3588"\w* \w prophets|strong="G4396"\w* \w and|strong="G2532"\w* \w teachers|strong="G1320"\w*: Barnabas, \w Simeon|strong="G4826"\w* \w who|strong="G3588"\w* \w was|strong="G1510"\w* \w called|strong="G2564"\w* \w Niger|strong="G3526"\w*, \w Lucius|strong="G3066"\w* \w of|strong="G2532"\w* \w Cyrene|strong="G2956"\w*, \w Manaen|strong="G3127"\w* \w the|strong="G1722"\w* foster brother \w of|strong="G2532"\w* \w Herod|strong="G2264"\w* \w the|strong="G1722"\w* \w tetrarch|strong="G5076"\w*, \w and|strong="G2532"\w* \w Saul|strong="G4569"\w*. +\v 2 \w As|strong="G1519"\w* \w they|strong="G2532"\w* served \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w and|strong="G2532"\w* \w fasted|strong="G3522"\w*, \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w said|strong="G3004"\w*, “Separate Barnabas \w and|strong="G2532"\w* \w Saul|strong="G4569"\w* \w for|strong="G1519"\w* \w me|strong="G1473"\w*, \w for|strong="G1519"\w* \w the|strong="G2532"\w* \w work|strong="G2041"\w* \w to|strong="G1519"\w* \w which|strong="G3739"\w* \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w called|strong="G3004"\w* \w them|strong="G3588"\w*.” +\p +\v 3 \w Then|strong="G2532"\w*, \w when|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w fasted|strong="G3522"\w* \w and|strong="G2532"\w* \w prayed|strong="G4336"\w* \w and|strong="G2532"\w* \w laid|strong="G2007"\w* \w their|strong="G2532"\w* \w hands|strong="G5495"\w* \w on|strong="G5495"\w* \w them|strong="G3588"\w*, \w they|strong="G2532"\w* \w sent|strong="G2532"\w* \w them|strong="G3588"\w* away. +\v 4 \w So|strong="G3767"\w*, \w being|strong="G3767"\w* \w sent|strong="G1599"\w* \w out|strong="G1519"\w* \w by|strong="G5259"\w* \w the|strong="G1519"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*, \w they|strong="G3588"\w* \w went|strong="G2718"\w* \w down|strong="G2718"\w* \w to|strong="G1519"\w* \w Seleucia|strong="G4581"\w*. \w From|strong="G5259"\w* \w there|strong="G1564"\w* \w they|strong="G3588"\w* sailed \w to|strong="G1519"\w* \w Cyprus|strong="G2954"\w*. +\v 5 \w When|strong="G1161"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w at|strong="G1722"\w* \w Salamis|strong="G4529"\w*, \w they|strong="G2532"\w* \w proclaimed|strong="G2605"\w* \w God|strong="G2316"\w*’\w s|strong="G2192"\w* \w word|strong="G3056"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Jewish|strong="G2453"\w* \w synagogues|strong="G4864"\w*. \w They|strong="G2532"\w* \w also|strong="G2532"\w* \w had|strong="G2192"\w* \w John|strong="G2491"\w* \w as|strong="G1722"\w* \w their|strong="G2532"\w* \w attendant|strong="G5257"\w*. +\v 6 \w When|strong="G1161"\w* \w they|strong="G1161"\w* \w had|strong="G3739"\w* \w gone|strong="G1330"\w* \w through|strong="G1330"\w* \w the|strong="G1161"\w* \w island|strong="G3520"\w* \w to|strong="G5100"\w* \w Paphos|strong="G3974"\w*, \w they|strong="G1161"\w* \w found|strong="G2147"\w* \w a|strong="G2147"\w* \w certain|strong="G5100"\w* \w sorcerer|strong="G3097"\w*, \w a|strong="G2147"\w* \w false|strong="G5578"\w* \w prophet|strong="G5578"\w*, \w a|strong="G2147"\w* \w Jew|strong="G2453"\w* \w whose|strong="G3739"\w* \w name|strong="G3686"\w* \w was|strong="G3588"\w* Bar Jesus, +\v 7 \w who|strong="G3739"\w* \w was|strong="G1510"\w* \w with|strong="G4862"\w* \w the|strong="G2532"\w* proconsul, \w Sergius|strong="G4588"\w* \w Paulus|strong="G3972"\w*, \w a|strong="G2532"\w* \w man|strong="G3778"\w* \w of|strong="G3056"\w* understanding. \w This|strong="G3778"\w* \w man|strong="G3778"\w* \w summoned|strong="G4341"\w* Barnabas \w and|strong="G2532"\w* \w Saul|strong="G4569"\w*, \w and|strong="G2532"\w* \w sought|strong="G1934"\w* \w to|strong="G2532"\w* hear \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w*. +\v 8 \w But|strong="G1161"\w* \w Elymas|strong="G1681"\w* \w the|strong="G1161"\w* \w sorcerer|strong="G3097"\w* (\w for|strong="G1063"\w* \w so|strong="G3779"\w* \w is|strong="G3588"\w* \w his|strong="G2212"\w* \w name|strong="G3686"\w* \w by|strong="G1063"\w* \w interpretation|strong="G3177"\w*) withstood \w them|strong="G3588"\w*, \w seeking|strong="G2212"\w* \w to|strong="G2212"\w* \w turn|strong="G1294"\w* \w the|strong="G1161"\w* proconsul \w away|strong="G1294"\w* \w from|strong="G3588"\w* \w the|strong="G1161"\w* \w faith|strong="G4102"\w*. +\v 9 \w But|strong="G1161"\w* \w Saul|strong="G4569"\w*, \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w also|strong="G2532"\w* \w called|strong="G3972"\w* \w Paul|strong="G3972"\w*, \w filled|strong="G4130"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*, fastened \w his|strong="G1519"\w* eyes \w on|strong="G1519"\w* \w him|strong="G3588"\w* +\v 10 \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w You|strong="G3004"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w devil|strong="G1228"\w*, \w full|strong="G4134"\w* \w of|strong="G5207"\w* \w all|strong="G3956"\w* \w deceit|strong="G1388"\w* \w and|strong="G2532"\w* \w all|strong="G3956"\w* cunning, \w you|strong="G3004"\w* \w enemy|strong="G2190"\w* \w of|strong="G5207"\w* \w all|strong="G3956"\w* \w righteousness|strong="G1343"\w*, \w will|strong="G2532"\w* \w you|strong="G3004"\w* \w not|strong="G3756"\w* \w cease|strong="G3973"\w* \w to|strong="G2532"\w* \w pervert|strong="G1294"\w* \w the|strong="G2532"\w* \w right|strong="G2117"\w* \w ways|strong="G3598"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*? +\v 11 \w Now|strong="G1161"\w*, \w behold|strong="G2400"\w*, \w the|strong="G2532"\w* \w hand|strong="G5495"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w is|strong="G1510"\w* \w on|strong="G1909"\w* \w you|strong="G4771"\w*, \w and|strong="G2532"\w* \w you|strong="G4771"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w blind|strong="G5185"\w*, \w not|strong="G3361"\w* \w seeing|strong="G3708"\w* \w the|strong="G2532"\w* \w sun|strong="G2246"\w* \w for|strong="G1909"\w* \w a|strong="G2532"\w* \w season|strong="G2540"\w*!” +\p \w Immediately|strong="G3916"\w* \w a|strong="G2532"\w* mist \w and|strong="G2532"\w* \w darkness|strong="G4655"\w* \w fell|strong="G4098"\w* \w on|strong="G1909"\w* \w him|strong="G3588"\w*. \w He|strong="G2532"\w* \w went|strong="G2532"\w* \w around|strong="G1909"\w* \w seeking|strong="G2212"\w* someone \w to|strong="G2532"\w* \w lead|strong="G1510"\w* \w him|strong="G3588"\w* \w by|strong="G1909"\w* \w the|strong="G2532"\w* \w hand|strong="G5495"\w*. +\v 12 \w Then|strong="G5119"\w* \w the|strong="G1909"\w* proconsul, \w when|strong="G1096"\w* \w he|strong="G3588"\w* \w saw|strong="G3708"\w* \w what|strong="G3588"\w* \w was|strong="G1096"\w* \w done|strong="G1096"\w*, \w believed|strong="G4100"\w*, \w being|strong="G1096"\w* \w astonished|strong="G1605"\w* \w at|strong="G1909"\w* \w the|strong="G1909"\w* \w teaching|strong="G1322"\w* \w of|strong="G2962"\w* \w the|strong="G1909"\w* \w Lord|strong="G2962"\w*. +\p +\v 13 \w Now|strong="G1161"\w* \w Paul|strong="G3972"\w* \w and|strong="G1161"\w* \w his|strong="G1519"\w* \w company|strong="G4012"\w* \w set|strong="G2064"\w* sail \w from|strong="G2064"\w* \w Paphos|strong="G3974"\w* \w and|strong="G1161"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w Perga|strong="G4011"\w* \w in|strong="G1519"\w* \w Pamphylia|strong="G3828"\w*. \w John|strong="G2491"\w* departed \w from|strong="G2064"\w* \w them|strong="G3588"\w* \w and|strong="G1161"\w* \w returned|strong="G5290"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w*. +\v 14 \w But|strong="G1161"\w* \w they|strong="G2532"\w*, \w passing|strong="G1330"\w* \w on|strong="G1519"\w* \w from|strong="G2064"\w* \w Perga|strong="G4011"\w*, \w came|strong="G2064"\w* \w to|strong="G1519"\w* Antioch \w of|strong="G2250"\w* \w Pisidia|strong="G4099"\w*. \w They|strong="G2532"\w* \w went|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w synagogue|strong="G4864"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w Sabbath|strong="G4521"\w* \w day|strong="G2250"\w* \w and|strong="G2532"\w* \w sat|strong="G2523"\w* \w down|strong="G2523"\w*. +\v 15 \w After|strong="G3326"\w* \w the|strong="G1722"\w* reading \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w prophets|strong="G4396"\w*, \w the|strong="G1722"\w* rulers \w of|strong="G3056"\w* \w the|strong="G1722"\w* synagogue \w sent|strong="G2532"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \w saying|strong="G3004"\w*, “Brothers, \w if|strong="G1487"\w* \w you|strong="G5210"\w* \w have|strong="G2532"\w* \w any|strong="G5100"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w exhortation|strong="G3874"\w* \w for|strong="G4314"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w*, \w speak|strong="G3004"\w*.” +\p +\v 16 \w Paul|strong="G3972"\w* \w stood|strong="G3588"\w* \w up|strong="G2532"\w*, \w and|strong="G2532"\w* \w gesturing|strong="G2678"\w* \w with|strong="G2532"\w* \w his|strong="G2532"\w* \w hand|strong="G5495"\w* \w said|strong="G3004"\w*, “\w Men|strong="G3588"\w* \w of|strong="G2316"\w* \w Israel|strong="G2475"\w*, \w and|strong="G2532"\w* \w you|strong="G3004"\w* \w who|strong="G3588"\w* \w fear|strong="G5399"\w* \w God|strong="G2316"\w*, listen. +\v 17 \w The|strong="G1722"\w* \w God|strong="G2316"\w* \w of|strong="G1537"\w* \w this|strong="G3778"\w* \w people|strong="G2992"\w*\f + \fr 13:17 \ft TR, NU add “Israel”\f* \w chose|strong="G1586"\w* \w our|strong="G2316"\w* \w fathers|strong="G3962"\w*, \w and|strong="G2532"\w* \w exalted|strong="G5312"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w* \w when|strong="G2532"\w* \w they|strong="G2532"\w* stayed \w as|strong="G1722"\w* aliens \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w land|strong="G1093"\w* \w of|strong="G1537"\w* Egypt, \w and|strong="G2532"\w* \w with|strong="G3326"\w* \w an|strong="G2532"\w* \w uplifted|strong="G5308"\w* \w arm|strong="G1023"\w*, \w he|strong="G2532"\w* \w led|strong="G1806"\w* \w them|strong="G3588"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w it|strong="G2532"\w*. +\v 18 \w For|strong="G1722"\w* \w a|strong="G5613"\w* \w period|strong="G5550"\w* \w of|strong="G2532"\w* \w about|strong="G5613"\w* \w forty|strong="G5063"\w* \w years|strong="G5063"\w* \w he|strong="G2532"\w* \w put|strong="G2532"\w* \w up|strong="G2532"\w* \w with|strong="G1722"\w* \w them|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wilderness|strong="G2048"\w*. +\v 19 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w destroyed|strong="G2507"\w* \w seven|strong="G2033"\w* \w nations|strong="G1484"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w land|strong="G1093"\w* \w of|strong="G2532"\w* \w Canaan|strong="G5477"\w*, \w he|strong="G2532"\w* \w gave|strong="G2532"\w* \w them|strong="G3588"\w* \w their|strong="G2532"\w* \w land|strong="G1093"\w* \w for|strong="G1722"\w* \w an|strong="G2532"\w* \w inheritance|strong="G2624"\w* \w for|strong="G1722"\w* \w about|strong="G1722"\w* four hundred fifty years. +\v 20 \w After|strong="G3326"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w he|strong="G2532"\w* \w gave|strong="G1325"\w* \w them|strong="G1325"\w* \w judges|strong="G2923"\w* \w until|strong="G2193"\w* \w Samuel|strong="G4545"\w* \w the|strong="G2532"\w* \w prophet|strong="G4396"\w*. +\v 21 \w Afterward|strong="G2547"\w* \w they|strong="G2532"\w* asked \w for|strong="G2532"\w* \w a|strong="G2532"\w* \w king|strong="G3588"\w*, \w and|strong="G2532"\w* \w God|strong="G2316"\w* \w gave|strong="G1325"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w Saul|strong="G4549"\w* \w the|strong="G2532"\w* \w son|strong="G5207"\w* \w of|strong="G1537"\w* \w Kish|strong="G2797"\w*, \w a|strong="G2532"\w* \w man|strong="G5207"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w tribe|strong="G5443"\w* \w of|strong="G1537"\w* Benjamin, \w for|strong="G2532"\w* \w forty|strong="G5062"\w* \w years|strong="G2094"\w*. +\v 22 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w removed|strong="G3179"\w* \w him|strong="G3588"\w*, \w he|strong="G2532"\w* \w raised|strong="G1453"\w* \w up|strong="G1453"\w* \w David|strong="G1138"\w* \w to|strong="G1519"\w* \w be|strong="G2532"\w* \w their|strong="G2532"\w* \w king|strong="G3588"\w*, \w to|strong="G1519"\w* \w whom|strong="G3739"\w* \w he|strong="G2532"\w* \w also|strong="G2532"\w* \w testified|strong="G3140"\w*, ‘\w I|strong="G1473"\w* \w have|strong="G2532"\w* \w found|strong="G2147"\w* \w David|strong="G1138"\w* \w the|strong="G2532"\w* son \w of|strong="G2532"\w* \w Jesse|strong="G2421"\w*, \w a|strong="G2532"\w* \w man|strong="G3956"\w* \w after|strong="G2596"\w* \w my|strong="G3956"\w* \w heart|strong="G2588"\w*, \w who|strong="G3739"\w* \w will|strong="G2307"\w* \w do|strong="G4160"\w* \w all|strong="G3956"\w* \w my|strong="G3956"\w* \w will|strong="G2307"\w*.’ +\v 23 \w From|strong="G2596"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w*’s offspring, \w God|strong="G2316"\w* \w has|strong="G2316"\w* brought salvation\f + \fr 13:23 \ft TR, NU read “a Savior, Jesus” instead of “salvation”\f* \w to|strong="G2596"\w* \w Israel|strong="G2474"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w his|strong="G2596"\w* \w promise|strong="G1860"\w*, +\v 24 \w before|strong="G4253"\w* \w his|strong="G3956"\w* \w coming|strong="G1529"\w*, \w when|strong="G3588"\w* \w John|strong="G2491"\w* \w had|strong="G3588"\w* \w first|strong="G3588"\w* \w preached|strong="G4296"\w* \w the|strong="G3956"\w* baptism \w of|strong="G3956"\w* \w repentance|strong="G3341"\w* \w to|strong="G3956"\w* \w Israel|strong="G2474"\w*.\f + \fr 13:24 \ft TR, NU read “to all the people of Israel” instead of “to Israel”\f* +\v 25 \w As|strong="G5613"\w* \w John|strong="G2491"\w* \w was|strong="G1510"\w* fulfilling \w his|strong="G3708"\w* \w course|strong="G1408"\w*, \w he|strong="G1161"\w* \w said|strong="G3004"\w*, ‘\w What|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G3739"\w* \w suppose|strong="G5101"\w* \w that|strong="G3739"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w*? \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w not|strong="G3756"\w* \w he|strong="G1161"\w*. \w But|strong="G1161"\w* \w behold|strong="G2400"\w*, \w one|strong="G3739"\w* \w comes|strong="G2064"\w* \w after|strong="G3326"\w* \w me|strong="G1473"\w*, \w the|strong="G1161"\w* \w sandals|strong="G5266"\w* \w of|strong="G3588"\w* \w whose|strong="G3739"\w* \w feet|strong="G4228"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w not|strong="G3756"\w* worthy \w to|strong="G3004"\w* \w untie|strong="G3089"\w*.’ +\p +\v 26 “Brothers, \w children|strong="G5207"\w* \w of|strong="G5207"\w* \w the|strong="G1722"\w* \w stock|strong="G1085"\w* \w of|strong="G5207"\w* Abraham, \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w* \w who|strong="G3588"\w* \w fear|strong="G5399"\w* \w God|strong="G2316"\w*, \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G5207"\w* \w this|strong="G3778"\w* \w salvation|strong="G4991"\w* \w is|strong="G3588"\w* \w sent|strong="G1821"\w* \w out|strong="G2532"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*. +\v 27 \w For|strong="G1063"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w dwell|strong="G2730"\w* \w in|strong="G1722"\w* \w Jerusalem|strong="G2419"\w*, \w and|strong="G2532"\w* \w their|strong="G2532"\w* rulers, \w because|strong="G1063"\w* \w they|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w know|strong="G1722"\w* \w him|strong="G3588"\w*, \w nor|strong="G2532"\w* \w the|strong="G1722"\w* \w voices|strong="G5456"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w prophets|strong="G4396"\w* \w which|strong="G3588"\w* \w are|strong="G3588"\w* read \w every|strong="G3956"\w* \w Sabbath|strong="G4521"\w*, \w fulfilled|strong="G4137"\w* \w them|strong="G3588"\w* \w by|strong="G1722"\w* \w condemning|strong="G2919"\w* \w him|strong="G3588"\w*. +\v 28 \w Though|strong="G2532"\w* \w they|strong="G2532"\w* \w found|strong="G2147"\w* \w no|strong="G3367"\w* \w cause|strong="G3367"\w* \w for|strong="G2532"\w* \w death|strong="G2288"\w*, \w they|strong="G2532"\w* still asked \w Pilate|strong="G4091"\w* \w to|strong="G2532"\w* \w have|strong="G2532"\w* \w him|strong="G2532"\w* killed. +\v 29 \w When|strong="G1161"\w* \w they|strong="G1161"\w* \w had|strong="G3588"\w* \w fulfilled|strong="G5055"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w that|strong="G3588"\w* \w were|strong="G3588"\w* \w written|strong="G1125"\w* \w about|strong="G4012"\w* \w him|strong="G3588"\w*, \w they|strong="G1161"\w* \w took|strong="G2507"\w* \w him|strong="G3588"\w* \w down|strong="G5087"\w* \w from|strong="G3588"\w* \w the|strong="G1519"\w* \w tree|strong="G3586"\w* \w and|strong="G1161"\w* \w laid|strong="G5087"\w* \w him|strong="G3588"\w* \w in|strong="G1519"\w* \w a|strong="G5613"\w* \w tomb|strong="G3419"\w*. +\v 30 \w But|strong="G1161"\w* \w God|strong="G2316"\w* \w raised|strong="G1453"\w* \w him|strong="G3588"\w* \w from|strong="G1537"\w* \w the|strong="G1537"\w* \w dead|strong="G3498"\w*, +\v 31 \w and|strong="G2250"\w* \w he|strong="G3739"\w* \w was|strong="G1510"\w* \w seen|strong="G3708"\w* \w for|strong="G1519"\w* \w many|strong="G4183"\w* \w days|strong="G2250"\w* \w by|strong="G1909"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w came|strong="G3588"\w* \w up|strong="G1519"\w* \w with|strong="G4314"\w* \w him|strong="G3588"\w* \w from|strong="G3588"\w* \w Galilee|strong="G1056"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w*, \w who|strong="G3739"\w* \w are|strong="G1510"\w* \w his|strong="G1519"\w* \w witnesses|strong="G3144"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w people|strong="G2992"\w*. +\v 32 \w We|strong="G2249"\w* \w bring|strong="G2097"\w* \w you|strong="G5210"\w* \w good|strong="G2097"\w* \w news|strong="G2097"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w promise|strong="G1860"\w* \w made|strong="G1096"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w fathers|strong="G3962"\w*, +\v 33 \w that|strong="G3588"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w fulfilled|strong="G1603"\w* \w this|strong="G3588"\w* \w to|strong="G2532"\w* \w us|strong="G1722"\w*, \w their|strong="G2532"\w* \w children|strong="G5043"\w*, \w in|strong="G1722"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w raised|strong="G2316"\w* \w up|strong="G2532"\w* \w Jesus|strong="G2424"\w*. \w As|strong="G5613"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w also|strong="G2532"\w* \w written|strong="G1125"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w second|strong="G1208"\w* \w psalm|strong="G5568"\w*, +\q1 ‘\w You|strong="G4771"\w* \w are|strong="G1510"\w* \w my|strong="G1722"\w* \w Son|strong="G5207"\w*. +\q2 \w Today|strong="G4594"\w* \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w become|strong="G1510"\w* \w your|strong="G2532"\w* \w father|strong="G1080"\w*.’\x + \xo 13:33 \xt Psalms 2:7\x* +\p +\v 34 “\w Concerning|strong="G1519"\w* \w that|strong="G3754"\w* \w he|strong="G1161"\w* \w raised|strong="G3498"\w* \w him|strong="G3588"\w* \w up|strong="G1519"\w* \w from|strong="G1537"\w* \w the|strong="G1519"\w* \w dead|strong="G3498"\w*, \w now|strong="G1161"\w* \w no|strong="G3371"\w* \w more|strong="G3371"\w* \w to|strong="G1519"\w* \w return|strong="G5290"\w* \w to|strong="G1519"\w* \w corruption|strong="G1312"\w*, \w he|strong="G1161"\w* \w has|strong="G3748"\w* \w spoken|strong="G3004"\w* \w thus|strong="G3779"\w*: ‘\w I|strong="G1161"\w* \w will|strong="G3195"\w* \w give|strong="G1325"\w* \w you|strong="G5210"\w* \w the|strong="G1519"\w* \w holy|strong="G3741"\w* \w and|strong="G1161"\w* \w sure|strong="G4103"\w* blessings \w of|strong="G1537"\w* \w David|strong="G1138"\w*.’\x + \xo 13:34 \xt Isaiah 55:3\x* +\v 35 \w Therefore|strong="G1360"\w* \w he|strong="G2532"\w* \w says|strong="G3004"\w* \w also|strong="G2532"\w* \w in|strong="G1722"\w* \w another|strong="G2087"\w* psalm, ‘\w You|strong="G4771"\w* \w will|strong="G2532"\w* \w not|strong="G3756"\w* \w allow|strong="G1325"\w* \w your|strong="G2532"\w* \w Holy|strong="G3741"\w* \w One|strong="G3588"\w* \w to|strong="G2532"\w* \w see|strong="G3708"\w* \w decay|strong="G1312"\w*.’\x + \xo 13:35 \xt Psalms 16:10\x* +\v 36 \w For|strong="G1063"\w* \w David|strong="G1138"\w*, \w after|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w in|strong="G2532"\w* \w his|strong="G2398"\w* \w own|strong="G2398"\w* \w generation|strong="G1074"\w* \w served|strong="G5256"\w* \w the|strong="G2532"\w* \w counsel|strong="G1012"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w fell|strong="G2837"\w* \w asleep|strong="G2837"\w*, \w was|strong="G3588"\w* \w laid|strong="G4369"\w* \w with|strong="G4314"\w* \w his|strong="G2398"\w* \w fathers|strong="G3962"\w*, \w and|strong="G2532"\w* \w saw|strong="G3708"\w* \w decay|strong="G1312"\w*. +\v 37 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w whom|strong="G3739"\w* \w God|strong="G2316"\w* \w raised|strong="G1453"\w* \w up|strong="G1453"\w* \w saw|strong="G3708"\w* \w no|strong="G3756"\w* \w decay|strong="G1312"\w*. +\v 38 \w Be|strong="G1510"\w* \w it|strong="G2532"\w* \w known|strong="G1110"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w therefore|strong="G3767"\w*, brothers,\f + \fr 13:38 \ft The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.”\f* \w that|strong="G3754"\w* \w through|strong="G1223"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w is|strong="G1510"\w* \w proclaimed|strong="G2605"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* remission \w of|strong="G1223"\w* sins; +\v 39 \w and|strong="G3956"\w* \w by|strong="G1722"\w* \w him|strong="G3588"\w* \w everyone|strong="G3956"\w* \w who|strong="G3739"\w* \w believes|strong="G4100"\w* \w is|strong="G3588"\w* \w justified|strong="G1344"\w* \w from|strong="G3756"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w from|strong="G3756"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w could|strong="G1410"\w* \w not|strong="G3756"\w* \w be|strong="G3756"\w* \w justified|strong="G1344"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w of|strong="G3551"\w* \w Moses|strong="G3475"\w*. +\v 40 Beware \w therefore|strong="G3767"\w*, \w lest|strong="G3361"\w* \w that|strong="G3588"\w* \w come|strong="G1904"\w* \w on|strong="G1722"\w* \w you|strong="G1722"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w spoken|strong="G3004"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w prophets|strong="G4396"\w*: +\q1 +\v 41 ‘\w Behold|strong="G3708"\w*, \w you|strong="G5210"\w* \w scoffers|strong="G2707"\w*! +\q2 \w Wonder|strong="G2296"\w* \w and|strong="G2532"\w* perish, +\q2 \w for|strong="G3754"\w* \w I|strong="G1473"\w* \w work|strong="G2041"\w* \w a|strong="G2532"\w* \w work|strong="G2041"\w* \w in|strong="G1722"\w* \w your|strong="G1437"\w* \w days|strong="G2250"\w*, +\q2 \w a|strong="G2532"\w* \w work|strong="G2041"\w* \w which|strong="G3739"\w* \w you|strong="G5210"\w* \w will|strong="G2532"\w* \w in|strong="G1722"\w* \w no|strong="G3756"\w* \w way|strong="G1722"\w* \w believe|strong="G4100"\w*, \w if|strong="G1437"\w* \w one|strong="G5100"\w* declares \w it|strong="G2532"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*.’”\x + \xo 13:41 \xt Habakkuk 1:5\x* +\p +\v 42 \w So|strong="G1161"\w* \w when|strong="G1161"\w* \w the|strong="G1519"\w* Jews \w went|strong="G3588"\w* \w out|strong="G1826"\w* \w of|strong="G4487"\w* \w the|strong="G1519"\w* synagogue, \w the|strong="G1519"\w* Gentiles \w begged|strong="G3870"\w* \w that|strong="G3588"\w* \w these|strong="G3778"\w* \w words|strong="G4487"\w* \w might|strong="G3778"\w* \w be|strong="G1519"\w* \w preached|strong="G2980"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w* \w the|strong="G1519"\w* \w next|strong="G3342"\w* \w Sabbath|strong="G4521"\w*. +\v 43 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w the|strong="G2532"\w* \w synagogue|strong="G4864"\w* \w broke|strong="G3089"\w* \w up|strong="G2532"\w*, \w many|strong="G4183"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w and|strong="G2532"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w devout|strong="G4576"\w* \w proselytes|strong="G4339"\w* \w followed|strong="G3982"\w* \w Paul|strong="G3972"\w* \w and|strong="G2532"\w* Barnabas; \w who|strong="G3588"\w*, \w speaking|strong="G4354"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, urged \w them|strong="G3588"\w* \w to|strong="G2532"\w* \w continue|strong="G2532"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w grace|strong="G5485"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\p +\v 44 \w The|strong="G3956"\w* \w next|strong="G2064"\w* \w Sabbath|strong="G4521"\w*, \w almost|strong="G4975"\w* \w the|strong="G3956"\w* \w whole|strong="G3956"\w* \w city|strong="G4172"\w* \w was|strong="G3588"\w* \w gathered|strong="G4863"\w* \w together|strong="G4863"\w* \w to|strong="G2064"\w* hear \w the|strong="G3956"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2962"\w*. +\v 45 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w saw|strong="G3708"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w*, \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w filled|strong="G4130"\w* \w with|strong="G2532"\w* \w jealousy|strong="G2205"\w*, \w and|strong="G2532"\w* contradicted \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w which|strong="G3588"\w* \w were|strong="G3588"\w* \w spoken|strong="G2980"\w* \w by|strong="G5259"\w* \w Paul|strong="G3972"\w*, \w and|strong="G2532"\w* blasphemed. +\p +\v 46 \w Paul|strong="G3972"\w* \w and|strong="G2532"\w* Barnabas \w spoke|strong="G2980"\w* \w out|strong="G2532"\w* \w boldly|strong="G3955"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w It|strong="G2532"\w* \w was|strong="G1510"\w* necessary \w that|strong="G3588"\w* \w God|strong="G2316"\w*’s \w word|strong="G3056"\w* \w should|strong="G2316"\w* \w be|strong="G1510"\w* \w spoken|strong="G2980"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w first|strong="G4413"\w*. \w Since|strong="G1894"\w* \w indeed|strong="G2532"\w* \w you|strong="G5210"\w* thrust \w it|strong="G2532"\w* \w from|strong="G2532"\w* \w yourselves|strong="G1438"\w*, \w and|strong="G2532"\w* \w judge|strong="G2919"\w* \w yourselves|strong="G1438"\w* \w unworthy|strong="G3756"\w* \w of|strong="G3056"\w* eternal \w life|strong="G2222"\w*, \w behold|strong="G2400"\w*, \w we|strong="G2532"\w* \w turn|strong="G4762"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w*. +\v 47 \w For|strong="G1063"\w* \w so|strong="G3779"\w* \w has|strong="G2962"\w* \w the|strong="G1519"\w* \w Lord|strong="G2962"\w* \w commanded|strong="G1781"\w* \w us|strong="G1519"\w*, saying, +\q1 ‘\w I|strong="G1473"\w* \w have|strong="G1473"\w* \w set|strong="G5087"\w* \w you|strong="G4771"\w* \w as|strong="G1519"\w* \w a|strong="G1519"\w* \w light|strong="G5457"\w* \w for|strong="G1063"\w* \w the|strong="G1519"\w* \w Gentiles|strong="G1484"\w*, +\q2 \w that|strong="G3588"\w* \w you|strong="G4771"\w* \w should|strong="G3588"\w* \w bring|strong="G1519"\w* \w salvation|strong="G4991"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* uttermost parts \w of|strong="G2962"\w* \w the|strong="G1519"\w* \w earth|strong="G1093"\w*.’”\x + \xo 13:47 \xt Isaiah 49:6\x* +\p +\v 48 \w As|strong="G3745"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w* \w heard|strong="G1484"\w* \w this|strong="G3588"\w*, \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w glad|strong="G5463"\w* \w and|strong="G2532"\w* \w glorified|strong="G1392"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2532"\w*. \w As|strong="G3745"\w* \w many|strong="G3745"\w* \w as|strong="G3745"\w* \w were|strong="G1510"\w* \w appointed|strong="G5021"\w* \w to|strong="G1519"\w* eternal \w life|strong="G2222"\w* \w believed|strong="G4100"\w*. +\v 49 \w The|strong="G1161"\w* \w Lord|strong="G2962"\w*’\w s|strong="G2962"\w* \w word|strong="G3056"\w* \w was|strong="G3588"\w* \w spread|strong="G1308"\w* abroad \w throughout|strong="G2596"\w* \w all|strong="G3650"\w* \w the|strong="G1161"\w* \w region|strong="G5561"\w*. +\v 50 \w But|strong="G1161"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w stirred|strong="G2453"\w* \w up|strong="G2532"\w* \w the|strong="G2532"\w* \w devout|strong="G4576"\w* \w and|strong="G2532"\w* \w prominent|strong="G2158"\w* \w women|strong="G1135"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w chief|strong="G4413"\w* \w men|strong="G4413"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w*, \w and|strong="G2532"\w* \w stirred|strong="G2453"\w* \w up|strong="G2532"\w* \w a|strong="G2532"\w* \w persecution|strong="G1375"\w* \w against|strong="G1909"\w* \w Paul|strong="G3972"\w* \w and|strong="G2532"\w* Barnabas, \w and|strong="G2532"\w* \w threw|strong="G1544"\w* \w them|strong="G3588"\w* \w out|strong="G1544"\w* \w of|strong="G2532"\w* \w their|strong="G1438"\w* \w borders|strong="G3725"\w*. +\v 51 \w But|strong="G1161"\w* \w they|strong="G1161"\w* \w shook|strong="G1621"\w* \w off|strong="G1621"\w* \w the|strong="G1519"\w* \w dust|strong="G2868"\w* \w of|strong="G1909"\w* \w their|strong="G1438"\w* \w feet|strong="G4228"\w* \w against|strong="G1909"\w* \w them|strong="G3588"\w*, \w and|strong="G1161"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w Iconium|strong="G2430"\w*. +\v 52 \w The|strong="G2532"\w* \w disciples|strong="G3101"\w* \w were|strong="G3588"\w* \w filled|strong="G4137"\w* \w with|strong="G2532"\w* \w joy|strong="G5479"\w* \w and|strong="G2532"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*. +\c 14 +\p +\v 1 \w In|strong="G1722"\w* \w Iconium|strong="G2430"\w*, \w they|strong="G2532"\w* \w entered|strong="G1525"\w* \w together|strong="G2596"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w synagogue|strong="G4864"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w*, \w and|strong="G2532"\w* \w so|strong="G3779"\w* \w spoke|strong="G2980"\w* \w that|strong="G3588"\w* \w a|strong="G1096"\w* \w great|strong="G4183"\w* \w multitude|strong="G4128"\w* \w both|strong="G2532"\w* \w of|strong="G2532"\w* \w Jews|strong="G2453"\w* \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w Greeks|strong="G1672"\w* \w believed|strong="G4100"\w*. +\v 2 \w But|strong="G1161"\w* \w the|strong="G2532"\w* disbelieving\f + \fr 14:2 \ft or, disobedient\f* \w Jews|strong="G2453"\w* \w stirred|strong="G2453"\w* \w up|strong="G2532"\w* \w and|strong="G2532"\w* \w embittered|strong="G2559"\w* \w the|strong="G2532"\w* \w souls|strong="G5590"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w* \w against|strong="G2596"\w* \w the|strong="G2532"\w* brothers. +\v 3 \w Therefore|strong="G3767"\w* \w they|strong="G2532"\w* \w stayed|strong="G1304"\w* \w there|strong="G2532"\w* \w a|strong="G1096"\w* \w long|strong="G2425"\w* \w time|strong="G5550"\w*, \w speaking|strong="G3955"\w* \w boldly|strong="G3955"\w* \w in|strong="G1909"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w who|strong="G3588"\w* \w testified|strong="G3140"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w his|strong="G1223"\w* \w grace|strong="G5485"\w*, \w granting|strong="G1325"\w* \w signs|strong="G4592"\w* \w and|strong="G2532"\w* \w wonders|strong="G5059"\w* \w to|strong="G2532"\w* \w be|strong="G1096"\w* \w done|strong="G1096"\w* \w by|strong="G1223"\w* \w their|strong="G2532"\w* \w hands|strong="G5495"\w*. +\v 4 \w But|strong="G1161"\w* \w the|strong="G2532"\w* \w multitude|strong="G4128"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w was|strong="G1510"\w* \w divided|strong="G4977"\w*. \w Part|strong="G1161"\w* \w sided|strong="G1510"\w* \w with|strong="G4862"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w and|strong="G2532"\w* \w part|strong="G1161"\w* \w with|strong="G4862"\w* \w the|strong="G2532"\w* apostles. +\v 5 \w When|strong="G1161"\w* \w some|strong="G3588"\w* \w of|strong="G2532"\w* \w both|strong="G2532"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w*, \w with|strong="G4862"\w* \w their|strong="G1438"\w* rulers, \w made|strong="G1096"\w* \w a|strong="G1096"\w* violent \w attempt|strong="G3730"\w* \w to|strong="G2532"\w* \w mistreat|strong="G5195"\w* \w and|strong="G2532"\w* \w stone|strong="G3036"\w* \w them|strong="G3588"\w*, +\v 6 \w they|strong="G2532"\w* \w became|strong="G3588"\w* \w aware|strong="G4894"\w* \w of|strong="G2532"\w* \w it|strong="G2532"\w* \w and|strong="G2532"\w* \w fled|strong="G2703"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w cities|strong="G4172"\w* \w of|strong="G2532"\w* \w Lycaonia|strong="G3071"\w*, \w Lystra|strong="G3082"\w*, \w Derbe|strong="G1191"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w surrounding|strong="G4066"\w* \w region|strong="G4066"\w*. +\v 7 \w There|strong="G2546"\w* \w they|strong="G1510"\w* \w preached|strong="G2097"\w* \w the|strong="G2097"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w*. +\p +\v 8 \w At|strong="G1722"\w* \w Lystra|strong="G3082"\w* \w a|strong="G2532"\w* \w certain|strong="G5100"\w* \w man|strong="G5100"\w* \w sat|strong="G2521"\w*, impotent \w in|strong="G1722"\w* \w his|strong="G1722"\w* \w feet|strong="G4228"\w*, \w a|strong="G2532"\w* \w cripple|strong="G5560"\w* \w from|strong="G1537"\w* \w his|strong="G1722"\w* \w mother|strong="G3384"\w*’s \w womb|strong="G2836"\w*, \w who|strong="G3739"\w* \w never|strong="G3763"\w* \w had|strong="G2532"\w* \w walked|strong="G4043"\w*. +\v 9 \w He|strong="G2532"\w* \w was|strong="G3588"\w* listening \w to|strong="G2532"\w* \w Paul|strong="G3972"\w* \w speaking|strong="G2980"\w*, \w who|strong="G3739"\w*, fastening eyes \w on|strong="G4102"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w seeing|strong="G3708"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w had|strong="G2192"\w* \w faith|strong="G4102"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w made|strong="G4982"\w* \w whole|strong="G4982"\w*, +\v 10 \w said|strong="G3004"\w* \w with|strong="G2532"\w* \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, “Stand \w upright|strong="G3717"\w* \w on|strong="G1909"\w* \w your|strong="G2532"\w* \w feet|strong="G4228"\w*!” \w He|strong="G2532"\w* leaped \w up|strong="G2532"\w* \w and|strong="G2532"\w* \w walked|strong="G4043"\w*. +\v 11 \w When|strong="G3739"\w* \w the|strong="G4314"\w* \w multitude|strong="G3793"\w* \w saw|strong="G3708"\w* \w what|strong="G3739"\w* \w Paul|strong="G3972"\w* \w had|strong="G2316"\w* \w done|strong="G4160"\w*, \w they|strong="G3588"\w* \w lifted|strong="G1869"\w* \w up|strong="G1869"\w* \w their|strong="G3588"\w* \w voice|strong="G5456"\w*, \w saying|strong="G3004"\w* \w in|strong="G2316"\w* \w the|strong="G4314"\w* \w language|strong="G5456"\w* \w of|strong="G2316"\w* \w Lycaonia|strong="G3072"\w*, “\w The|strong="G4314"\w* \w gods|strong="G2316"\w* \w have|strong="G1473"\w* \w come|strong="G2597"\w* \w down|strong="G2597"\w* \w to|strong="G4314"\w* \w us|strong="G3004"\w* \w in|strong="G2316"\w* \w the|strong="G4314"\w* \w likeness|strong="G3666"\w* \w of|strong="G2316"\w* \w men|strong="G3588"\w*!” +\v 12 \w They|strong="G1161"\w* \w called|strong="G2564"\w* Barnabas “\w Jupiter|strong="G2203"\w*”, \w and|strong="G1161"\w* \w Paul|strong="G3972"\w* “Mercury”, \w because|strong="G1894"\w* \w he|strong="G1161"\w* \w was|strong="G1510"\w* \w the|strong="G1161"\w* \w chief|strong="G2233"\w* \w speaker|strong="G3056"\w*. +\v 13 \w The|strong="G2532"\w* \w priest|strong="G2409"\w* \w of|strong="G2532"\w* \w Jupiter|strong="G2203"\w*, \w whose|strong="G3588"\w* temple \w was|strong="G1510"\w* \w in|strong="G1909"\w* \w front|strong="G4253"\w* \w of|strong="G2532"\w* \w their|strong="G2532"\w* \w city|strong="G4172"\w*, \w brought|strong="G5342"\w* \w oxen|strong="G5022"\w* \w and|strong="G2532"\w* \w garlands|strong="G4725"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w gates|strong="G4440"\w*, \w and|strong="G2532"\w* \w would|strong="G2309"\w* \w have|strong="G2309"\w* \w made|strong="G5342"\w* \w a|strong="G2532"\w* \w sacrifice|strong="G2380"\w* \w along|strong="G4862"\w* \w with|strong="G4862"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w*. +\p +\v 14 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w the|strong="G2532"\w* apostles, Barnabas \w and|strong="G2532"\w* \w Paul|strong="G3972"\w*, heard \w of|strong="G2532"\w* \w it|strong="G2532"\w*, \w they|strong="G2532"\w* \w tore|strong="G1284"\w* \w their|strong="G2532"\w* \w clothes|strong="G2440"\w* \w and|strong="G2532"\w* sprang \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w*, \w crying|strong="G2896"\w* \w out|strong="G2896"\w*, +\v 15 “\w Men|strong="G3956"\w*, \w why|strong="G5101"\w* \w are|strong="G1510"\w* \w you|strong="G5210"\w* \w doing|strong="G4160"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w*? \w We|strong="G2249"\w* \w also|strong="G2532"\w* \w are|strong="G1510"\w* \w men|strong="G3956"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w same|strong="G3778"\w* \w nature|strong="G3663"\w* \w as|strong="G1722"\w* \w you|strong="G5210"\w*, \w and|strong="G2532"\w* \w bring|strong="G4160"\w* \w you|strong="G5210"\w* \w good|strong="G2097"\w* \w news|strong="G2097"\w*, \w that|strong="G3739"\w* \w you|strong="G5210"\w* \w should|strong="G2316"\w* \w turn|strong="G1994"\w* \w from|strong="G2532"\w* \w these|strong="G3778"\w* \w vain|strong="G3152"\w* \w things|strong="G3956"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w living|strong="G2198"\w* \w God|strong="G2316"\w*, \w who|strong="G3739"\w* \w made|strong="G4160"\w* \w the|strong="G1722"\w* \w sky|strong="G3772"\w*, \w the|strong="G1722"\w* \w earth|strong="G1093"\w*, \w the|strong="G1722"\w* \w sea|strong="G2281"\w*, \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w that|strong="G3739"\w* \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w them|strong="G3588"\w*; +\v 16 \w who|strong="G3739"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w generations|strong="G1074"\w* \w gone|strong="G4198"\w* \w by|strong="G1722"\w* \w allowed|strong="G1439"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w nations|strong="G1484"\w* \w to|strong="G1722"\w* \w walk|strong="G4198"\w* \w in|strong="G1722"\w* \w their|strong="G1722"\w* own \w ways|strong="G3598"\w*. +\v 17 \w Yet|strong="G2532"\w* \w he|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w leave|strong="G1325"\w* \w himself|strong="G1438"\w* \w without|strong="G2532"\w* witness, \w in|strong="G2532"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w did|strong="G2532"\w* \w good|strong="G3756"\w* \w and|strong="G2532"\w* \w gave|strong="G1325"\w* \w you|strong="G5210"\w*\f + \fr 14:17 \ft TR reads “us” instead of “you”\f* \w rains|strong="G5205"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* sky \w and|strong="G2532"\w* \w fruitful|strong="G2593"\w* \w seasons|strong="G2540"\w*, \w filling|strong="G1705"\w* \w our|strong="G2532"\w* \w hearts|strong="G2588"\w* \w with|strong="G2532"\w* \w food|strong="G5160"\w* \w and|strong="G2532"\w* \w gladness|strong="G2167"\w*.” +\p +\v 18 \w Even|strong="G2532"\w* \w saying|strong="G3004"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w they|strong="G2532"\w* \w hardly|strong="G3433"\w* stopped \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w* \w from|strong="G2532"\w* \w making|strong="G2532"\w* \w a|strong="G2532"\w* \w sacrifice|strong="G2380"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*. +\v 19 \w But|strong="G1161"\w* \w some|strong="G3588"\w* \w Jews|strong="G2453"\w* \w from|strong="G2532"\w* Antioch \w and|strong="G2532"\w* \w Iconium|strong="G2430"\w* \w came|strong="G2532"\w* \w there|strong="G2532"\w*, \w and|strong="G2532"\w* \w having|strong="G2532"\w* \w persuaded|strong="G3982"\w* \w the|strong="G2532"\w* \w multitudes|strong="G3793"\w*, \w they|strong="G2532"\w* \w stoned|strong="G3034"\w* \w Paul|strong="G3972"\w* \w and|strong="G2532"\w* \w dragged|strong="G4951"\w* \w him|strong="G3588"\w* \w out|strong="G1854"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w*, \w supposing|strong="G3543"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w dead|strong="G2348"\w*. +\p +\v 20 \w But|strong="G1161"\w* \w as|strong="G1519"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w stood|strong="G3588"\w* \w around|strong="G2944"\w* \w him|strong="G3588"\w*, \w he|strong="G2532"\w* \w rose|strong="G2532"\w* \w up|strong="G1519"\w*, \w and|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w*. \w On|strong="G1519"\w* \w the|strong="G2532"\w* \w next|strong="G1887"\w* \w day|strong="G1887"\w* \w he|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w with|strong="G4862"\w* Barnabas \w to|strong="G1519"\w* \w Derbe|strong="G1191"\w*. +\p +\v 21 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w preached|strong="G2097"\w* \w the|strong="G2532"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w* \w to|strong="G1519"\w* \w that|strong="G3588"\w* \w city|strong="G4172"\w* \w and|strong="G2532"\w* \w had|strong="G2532"\w* \w made|strong="G3100"\w* \w many|strong="G2425"\w* \w disciples|strong="G3100"\w*, \w they|strong="G2532"\w* \w returned|strong="G5290"\w* \w to|strong="G1519"\w* \w Lystra|strong="G3082"\w*, \w Iconium|strong="G2430"\w*, \w and|strong="G2532"\w* Antioch, +\v 22 \w strengthening|strong="G1991"\w* \w the|strong="G2532"\w* \w souls|strong="G5590"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w*, \w exhorting|strong="G3870"\w* \w them|strong="G3588"\w* \w to|strong="G1519"\w* \w continue|strong="G1696"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w faith|strong="G4102"\w*, \w and|strong="G2532"\w* \w that|strong="G3754"\w* \w through|strong="G1223"\w* \w many|strong="G4183"\w* \w afflictions|strong="G2347"\w* \w we|strong="G2249"\w* \w must|strong="G1163"\w* \w enter|strong="G1525"\w* \w into|strong="G1519"\w* \w God|strong="G2316"\w*’s Kingdom. +\v 23 \w When|strong="G1161"\w* \w they|strong="G1161"\w* \w had|strong="G3739"\w* \w appointed|strong="G5500"\w* \w elders|strong="G4245"\w* \w for|strong="G1519"\w* \w them|strong="G3588"\w* \w in|strong="G1519"\w* \w every|strong="G2596"\w* \w assembly|strong="G1577"\w*, \w and|strong="G1161"\w* \w had|strong="G3739"\w* \w prayed|strong="G4336"\w* \w with|strong="G3326"\w* \w fasting|strong="G3521"\w*, \w they|strong="G1161"\w* \w commended|strong="G3908"\w* \w them|strong="G3588"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w Lord|strong="G2962"\w* \w on|strong="G1519"\w* \w whom|strong="G3739"\w* \w they|strong="G1161"\w* \w had|strong="G3739"\w* \w believed|strong="G4100"\w*. +\p +\v 24 \w They|strong="G2532"\w* \w passed|strong="G1330"\w* \w through|strong="G1330"\w* \w Pisidia|strong="G4099"\w* \w and|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w Pamphylia|strong="G3828"\w*. +\v 25 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w spoken|strong="G2980"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w in|strong="G1722"\w* \w Perga|strong="G4011"\w*, \w they|strong="G2532"\w* \w went|strong="G2597"\w* \w down|strong="G2597"\w* \w to|strong="G1519"\w* Attalia. +\v 26 \w From|strong="G3588"\w* \w there|strong="G2547"\w* \w they|strong="G3588"\w* sailed \w to|strong="G1519"\w* Antioch, \w from|strong="G3588"\w* \w where|strong="G3739"\w* \w they|strong="G3588"\w* \w had|strong="G2316"\w* \w been|strong="G1510"\w* \w committed|strong="G3860"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w grace|strong="G5485"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w for|strong="G1519"\w* \w the|strong="G1519"\w* \w work|strong="G2041"\w* \w which|strong="G3739"\w* \w they|strong="G3588"\w* \w had|strong="G2316"\w* \w fulfilled|strong="G4137"\w*. +\v 27 \w When|strong="G1161"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w arrived|strong="G3854"\w* \w and|strong="G2532"\w* \w had|strong="G2532"\w* \w gathered|strong="G4863"\w* \w the|strong="G2532"\w* \w assembly|strong="G1577"\w* \w together|strong="G4863"\w*, \w they|strong="G2532"\w* reported \w all|strong="G3745"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w that|strong="G3754"\w* \w God|strong="G2316"\w* \w had|strong="G2532"\w* \w done|strong="G4160"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* opened \w a|strong="G2532"\w* \w door|strong="G2374"\w* \w of|strong="G2316"\w* \w faith|strong="G4102"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w nations|strong="G1484"\w*. +\v 28 \w They|strong="G1161"\w* \w stayed|strong="G1304"\w* \w there|strong="G1161"\w* \w with|strong="G4862"\w* \w the|strong="G1161"\w* \w disciples|strong="G3101"\w* \w for|strong="G1161"\w* \w a|strong="G1161"\w* \w long|strong="G5550"\w* \w time|strong="G5550"\w*. +\c 15 +\p +\v 1 \w Some|strong="G5100"\w* \w men|strong="G5100"\w* \w came|strong="G2718"\w* \w down|strong="G2718"\w* \w from|strong="G2532"\w* \w Judea|strong="G2449"\w* \w and|strong="G2532"\w* \w taught|strong="G1321"\w* \w the|strong="G2532"\w* brothers,\f + \fr 15:1 \ft The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.”\f* “\w Unless|strong="G1437"\w* \w you|strong="G1437"\w* \w are|strong="G3588"\w* \w circumcised|strong="G4059"\w* \w after|strong="G2532"\w* \w the|strong="G2532"\w* \w custom|strong="G1485"\w* \w of|strong="G2532"\w* \w Moses|strong="G3475"\w*, \w you|strong="G1437"\w* \w can|strong="G1410"\w*’\w t|strong="G3588"\w* \w be|strong="G2532"\w* \w saved|strong="G4982"\w*.” +\v 2 \w Therefore|strong="G1161"\w* \w when|strong="G1161"\w* \w Paul|strong="G3972"\w* \w and|strong="G2532"\w* Barnabas \w had|strong="G2532"\w* \w no|strong="G3756"\w* \w small|strong="G3641"\w* discord \w and|strong="G2532"\w* \w discussion|strong="G2214"\w* \w with|strong="G4314"\w* \w them|strong="G3588"\w*, \w they|strong="G2532"\w* \w appointed|strong="G5021"\w* \w Paul|strong="G3972"\w*, Barnabas, \w and|strong="G2532"\w* \w some|strong="G5100"\w* \w others|strong="G3588"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w* \w to|strong="G1519"\w* \w go|strong="G1519"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* apostles \w and|strong="G2532"\w* \w elders|strong="G4245"\w* \w about|strong="G4012"\w* \w this|strong="G3778"\w* \w question|strong="G2213"\w*. +\v 3 \w They|strong="G2532"\w*, \w being|strong="G2532"\w* \w sent|strong="G2532"\w* \w on|strong="G4311"\w* \w their|strong="G2532"\w* \w way|strong="G4311"\w* \w by|strong="G5259"\w* \w the|strong="G2532"\w* \w assembly|strong="G1577"\w*, \w passed|strong="G1330"\w* \w through|strong="G1330"\w* \w both|strong="G2532"\w* \w Phoenicia|strong="G5403"\w* \w and|strong="G2532"\w* \w Samaria|strong="G4540"\w*, \w declaring|strong="G1555"\w* \w the|strong="G2532"\w* \w conversion|strong="G1995"\w* \w of|strong="G5259"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w*. \w They|strong="G2532"\w* \w caused|strong="G4160"\w* \w great|strong="G3173"\w* \w joy|strong="G5479"\w* \w to|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* brothers. +\v 4 \w When|strong="G1161"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w come|strong="G3854"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w*, \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w received|strong="G3858"\w* \w by|strong="G5259"\w* \w the|strong="G2532"\w* \w assembly|strong="G1577"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* apostles \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* reported \w everything|strong="G3745"\w* \w that|strong="G3588"\w* \w God|strong="G2316"\w* \w had|strong="G2532"\w* \w done|strong="G4160"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w*. +\p +\v 5 \w But|strong="G1161"\w* \w some|strong="G5100"\w* \w of|strong="G3551"\w* \w the|strong="G1161"\w* sect \w of|strong="G3551"\w* \w the|strong="G1161"\w* \w Pharisees|strong="G5330"\w* \w who|strong="G3588"\w* \w believed|strong="G4100"\w* rose \w up|strong="G1210"\w*, \w saying|strong="G3004"\w*, “\w It|strong="G3754"\w* \w is|strong="G3588"\w* \w necessary|strong="G1163"\w* \w to|strong="G3004"\w* \w circumcise|strong="G4059"\w* \w them|strong="G3588"\w*, \w and|strong="G1161"\w* \w to|strong="G3004"\w* \w command|strong="G3853"\w* \w them|strong="G3588"\w* \w to|strong="G3004"\w* \w keep|strong="G5083"\w* \w the|strong="G1161"\w* \w law|strong="G3551"\w* \w of|strong="G3551"\w* \w Moses|strong="G3475"\w*.” +\p +\v 6 \w The|strong="G2532"\w* apostles \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w* \w were|strong="G3588"\w* \w gathered|strong="G4863"\w* \w together|strong="G4863"\w* \w to|strong="G2532"\w* \w see|strong="G3708"\w* \w about|strong="G4012"\w* \w this|strong="G3778"\w* \w matter|strong="G3056"\w*. +\v 7 \w When|strong="G1161"\w* \w there|strong="G2532"\w* \w had|strong="G2532"\w* \w been|strong="G1096"\w* \w much|strong="G4183"\w* \w discussion|strong="G2214"\w*, \w Peter|strong="G4074"\w* \w rose|strong="G2532"\w* \w up|strong="G2532"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, “Brothers, \w you|strong="G5210"\w* \w know|strong="G1987"\w* \w that|strong="G3754"\w* \w a|strong="G1096"\w* \w good|strong="G1223"\w* \w while|strong="G1722"\w* ago \w God|strong="G2316"\w* \w made|strong="G1096"\w* \w a|strong="G1096"\w* \w choice|strong="G1586"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w* \w that|strong="G3754"\w* \w by|strong="G1223"\w* \w my|strong="G1722"\w* \w mouth|strong="G4750"\w* \w the|strong="G1722"\w* \w nations|strong="G1484"\w* \w should|strong="G2316"\w* hear \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w Good|strong="G1223"\w* \w News|strong="G3056"\w* \w and|strong="G2532"\w* \w believe|strong="G4100"\w*. +\v 8 \w God|strong="G2316"\w*, \w who|strong="G3588"\w* \w knows|strong="G2589"\w* \w the|strong="G2532"\w* \w heart|strong="G2589"\w*, \w testified|strong="G3140"\w* \w about|strong="G3588"\w* \w them|strong="G3588"\w*, \w giving|strong="G1325"\w* \w them|strong="G3588"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*, \w just|strong="G2531"\w* \w like|strong="G2531"\w* \w he|strong="G2532"\w* \w did|strong="G2532"\w* \w to|strong="G2532"\w* \w us|strong="G1325"\w*. +\v 9 \w He|strong="G2532"\w* \w made|strong="G1252"\w* \w no|strong="G3762"\w* \w distinction|strong="G1252"\w* \w between|strong="G3342"\w* \w us|strong="G2249"\w* \w and|strong="G2532"\w* \w them|strong="G3588"\w*, \w cleansing|strong="G2511"\w* \w their|strong="G2532"\w* \w hearts|strong="G2588"\w* \w by|strong="G2532"\w* \w faith|strong="G4102"\w*. +\v 10 \w Now|strong="G3568"\w* \w therefore|strong="G3767"\w* \w why|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G3739"\w* \w tempt|strong="G3985"\w* \w God|strong="G2316"\w*, \w that|strong="G3739"\w* \w you|strong="G3739"\w* \w should|strong="G2316"\w* \w put|strong="G2007"\w* \w a|strong="G1909"\w* \w yoke|strong="G2218"\w* \w on|strong="G1909"\w* \w the|strong="G1909"\w* \w neck|strong="G5137"\w* \w of|strong="G2316"\w* \w the|strong="G1909"\w* \w disciples|strong="G3101"\w* \w which|strong="G3739"\w* \w neither|strong="G3777"\w* \w our|strong="G2316"\w* \w fathers|strong="G3962"\w* \w nor|strong="G3777"\w* \w we|strong="G2249"\w* \w were|strong="G3588"\w* \w able|strong="G2480"\w* \w to|strong="G1909"\w* bear? +\v 11 \w But|strong="G3588"\w* \w we|strong="G3739"\w* \w believe|strong="G4100"\w* \w that|strong="G3739"\w* \w we|strong="G3739"\w* \w are|strong="G3588"\w* \w saved|strong="G4982"\w* \w through|strong="G1223"\w* \w the|strong="G1223"\w* \w grace|strong="G5485"\w* \w of|strong="G1223"\w* \w the|strong="G1223"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*,\f + \fr 15:11 \ft TR adds “Christ”\f* \w just|strong="G2596"\w* \w as|strong="G2596"\w* \w they|strong="G3588"\w* \w are|strong="G3588"\w*.” +\p +\v 12 \w All|strong="G3956"\w* \w the|strong="G1722"\w* \w multitude|strong="G4128"\w* \w kept|strong="G4160"\w* \w silence|strong="G4601"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* listened \w to|strong="G2532"\w* Barnabas \w and|strong="G2532"\w* \w Paul|strong="G3972"\w* reporting \w what|strong="G3588"\w* \w signs|strong="G4592"\w* \w and|strong="G2532"\w* \w wonders|strong="G5059"\w* \w God|strong="G2316"\w* \w had|strong="G2532"\w* \w done|strong="G4160"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w nations|strong="G1484"\w* \w through|strong="G1223"\w* \w them|strong="G3588"\w*. +\v 13 \w After|strong="G3326"\w* \w they|strong="G1161"\w* \w were|strong="G3588"\w* \w silent|strong="G4601"\w*, \w James|strong="G2385"\w* \w answered|strong="G3004"\w*, “Brothers, listen \w to|strong="G3004"\w* \w me|strong="G1473"\w*. +\v 14 \w Simeon|strong="G4826"\w* \w has|strong="G2316"\w* reported \w how|strong="G2531"\w* \w God|strong="G2316"\w* \w first|strong="G4413"\w* \w visited|strong="G1980"\w* \w the|strong="G1537"\w* \w nations|strong="G1484"\w* \w to|strong="G2316"\w* \w take|strong="G2983"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w* \w a|strong="G2983"\w* \w people|strong="G2992"\w* \w for|strong="G1537"\w* \w his|strong="G2983"\w* \w name|strong="G3686"\w*. +\v 15 \w This|strong="G3778"\w* agrees \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w words|strong="G3056"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w prophets|strong="G4396"\w*. \w As|strong="G2531"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, +\q1 +\v 16 ‘\w After|strong="G3326"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w I|strong="G2532"\w* \w will|strong="G2532"\w* return. +\q1 \w I|strong="G2532"\w* \w will|strong="G2532"\w* \w again|strong="G2532"\w* build \w the|strong="G2532"\w* \w tabernacle|strong="G4633"\w* \w of|strong="G2532"\w* \w David|strong="G1138"\w*, \w which|strong="G3588"\w* \w has|strong="G3778"\w* \w fallen|strong="G4098"\w*. +\q1 \w I|strong="G2532"\w* \w will|strong="G2532"\w* \w again|strong="G2532"\w* build its \w ruins|strong="G2690"\w*. +\q1 \w I|strong="G2532"\w* \w will|strong="G2532"\w* \w set|strong="G2532"\w* \w it|strong="G2532"\w* \w up|strong="G2532"\w* +\v 17 \w that|strong="G3739"\w* \w the|strong="G2532"\w* \w rest|strong="G2645"\w* \w of|strong="G2532"\w* \w men|strong="G3956"\w* \w may|strong="G2532"\w* \w seek|strong="G1567"\w* \w after|strong="G1909"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*: +\q1 \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w* \w who|strong="G3739"\w* \w are|strong="G3588"\w* \w called|strong="G3004"\w* \w by|strong="G1909"\w* \w my|strong="G3956"\w* \w name|strong="G3686"\w*, +\q1 \w says|strong="G3004"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w who|strong="G3739"\w* \w does|strong="G4160"\w* \w all|strong="G3956"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w*.’\x + \xo 15:17 \xt Amos 9:11-12\x* +\p +\v 18 “All \w of|strong="G1110"\w* God’s works are \w known|strong="G1110"\w* \w to|strong="G1110"\w* him \w from|strong="G1110"\w* eternity. +\v 19 \w Therefore|strong="G1352"\w* \w my|strong="G1473"\w* \w judgment|strong="G2919"\w* \w is|strong="G3588"\w* \w that|strong="G3588"\w* \w we|strong="G1352"\w* don’\w t|strong="G3588"\w* \w trouble|strong="G3926"\w* \w those|strong="G3588"\w* \w from|strong="G3588"\w* \w among|strong="G1909"\w* \w the|strong="G1909"\w* \w Gentiles|strong="G1484"\w* \w who|strong="G3588"\w* \w turn|strong="G1994"\w* \w to|strong="G1909"\w* \w God|strong="G2316"\w*, +\v 20 \w but|strong="G2532"\w* \w that|strong="G3588"\w* \w we|strong="G2532"\w* \w write|strong="G1989"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w that|strong="G3588"\w* \w they|strong="G2532"\w* abstain \w from|strong="G2532"\w* \w the|strong="G2532"\w* pollution \w of|strong="G2532"\w* \w idols|strong="G1497"\w*, \w from|strong="G2532"\w* \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w*, \w from|strong="G2532"\w* \w what|strong="G3588"\w* \w is|strong="G3588"\w* \w strangled|strong="G4156"\w*, \w and|strong="G2532"\w* \w from|strong="G2532"\w* blood. +\v 21 \w For|strong="G1063"\w* \w Moses|strong="G3475"\w* \w from|strong="G1537"\w* \w generations|strong="G1074"\w* \w of|strong="G1537"\w* \w old|strong="G2192"\w* \w has|strong="G2192"\w* \w in|strong="G1722"\w* \w every|strong="G3956"\w* \w city|strong="G4172"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w preach|strong="G2784"\w* \w him|strong="G3588"\w*, \w being|strong="G2192"\w* read \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w synagogues|strong="G4864"\w* \w every|strong="G3956"\w* \w Sabbath|strong="G4521"\w*.” +\p +\v 22 \w Then|strong="G2532"\w* \w it|strong="G2532"\w* \w seemed|strong="G1380"\w* \w good|strong="G1380"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* apostles \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w elders|strong="G4245"\w*, \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w whole|strong="G3650"\w* \w assembly|strong="G1577"\w*, \w to|strong="G1519"\w* \w choose|strong="G1586"\w* \w men|strong="G4245"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w their|strong="G2532"\w* company, \w and|strong="G2532"\w* \w send|strong="G3992"\w* \w them|strong="G3588"\w* \w to|strong="G1519"\w* Antioch \w with|strong="G1722"\w* \w Paul|strong="G3972"\w* \w and|strong="G2532"\w* Barnabas: \w Judas|strong="G2455"\w* \w called|strong="G2564"\w* Barsabbas, \w and|strong="G2532"\w* \w Silas|strong="G4609"\w*, \w chief|strong="G2233"\w* \w men|strong="G4245"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* brothers.\f + \fr 15:22 \ft The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.”\f* +\v 23 \w They|strong="G2532"\w* \w wrote|strong="G1125"\w* \w these|strong="G3588"\w* \w things|strong="G3588"\w* \w by|strong="G1223"\w* \w their|strong="G2532"\w* \w hand|strong="G5495"\w*: +\p “\w The|strong="G2532"\w* apostles, \w the|strong="G2532"\w* \w elders|strong="G4245"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* brothers, \w to|strong="G2532"\w* \w the|strong="G2532"\w* brothers \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w* \w in|strong="G2596"\w* Antioch, \w Syria|strong="G4947"\w*, \w and|strong="G2532"\w* \w Cilicia|strong="G2791"\w*: \w greetings|strong="G5463"\w*. +\v 24 \w Because|strong="G3754"\w* \w we|strong="G2249"\w* \w have|strong="G1473"\w* heard \w that|strong="G3754"\w* \w some|strong="G5100"\w* \w who|strong="G3739"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w from|strong="G1537"\w* \w us|strong="G2249"\w* \w have|strong="G1473"\w* \w troubled|strong="G5015"\w* \w you|strong="G5210"\w* \w with|strong="G1537"\w* \w words|strong="G3056"\w*, unsettling \w your|strong="G3588"\w* \w souls|strong="G5590"\w*, \w saying|strong="G3056"\w*, ‘\w You|strong="G5210"\w* \w must|strong="G5100"\w* \w be|strong="G3756"\w* circumcised \w and|strong="G3056"\w* keep \w the|strong="G1537"\w* law,’ \w to|strong="G3756"\w* \w whom|strong="G3739"\w* \w we|strong="G2249"\w* \w gave|strong="G1291"\w* \w no|strong="G3756"\w* \w commandment|strong="G1291"\w*; +\v 25 \w it|strong="G2532"\w* \w seemed|strong="G1380"\w* \w good|strong="G1380"\w* \w to|strong="G4314"\w* \w us|strong="G2249"\w*, \w having|strong="G2532"\w* \w come|strong="G1096"\w* \w to|strong="G4314"\w* \w one|strong="G3588"\w* \w accord|strong="G3661"\w*, \w to|strong="G4314"\w* \w choose|strong="G1586"\w* \w out|strong="G2532"\w* \w men|strong="G3588"\w* \w and|strong="G2532"\w* \w send|strong="G3992"\w* \w them|strong="G3588"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w* \w with|strong="G4862"\w* \w our|strong="G2532"\w* beloved Barnabas \w and|strong="G2532"\w* \w Paul|strong="G3972"\w*, +\v 26 \w men|strong="G3588"\w* \w who|strong="G3588"\w* \w have|strong="G1473"\w* \w risked|strong="G3860"\w* \w their|strong="G3588"\w* \w lives|strong="G5590"\w* \w for|strong="G5228"\w* \w the|strong="G3588"\w* \w name|strong="G3686"\w* \w of|strong="G3686"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\v 27 \w We|strong="G2532"\w* \w have|strong="G2532"\w* \w sent|strong="G2532"\w* \w therefore|strong="G3767"\w* \w Judas|strong="G2455"\w* \w and|strong="G2532"\w* \w Silas|strong="G4609"\w*, \w who|strong="G3588"\w* \w themselves|strong="G1438"\w* \w will|strong="G2532"\w* \w also|strong="G2532"\w* tell \w you|strong="G1438"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w* \w things|strong="G3588"\w* \w by|strong="G1223"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w mouth|strong="G3056"\w*. +\v 28 \w For|strong="G1063"\w* \w it|strong="G2532"\w* \w seemed|strong="G1380"\w* \w good|strong="G1380"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w us|strong="G2249"\w*, \w to|strong="G2532"\w* \w lay|strong="G2007"\w* \w no|strong="G3367"\w* \w greater|strong="G4183"\w* burden \w on|strong="G2007"\w* \w you|strong="G5210"\w* \w than|strong="G4183"\w* \w these|strong="G3778"\w* \w necessary|strong="G1876"\w* \w things|strong="G3778"\w*: +\v 29 \w that|strong="G3739"\w* \w you|strong="G3739"\w* abstain \w from|strong="G1537"\w* \w things|strong="G3739"\w* \w sacrificed|strong="G1494"\w* \w to|strong="G2532"\w* \w idols|strong="G1494"\w*, \w from|strong="G1537"\w* blood, \w from|strong="G1537"\w* \w things|strong="G3739"\w* \w strangled|strong="G4156"\w*, \w and|strong="G2532"\w* \w from|strong="G1537"\w* \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w*, \w from|strong="G1537"\w* \w which|strong="G3739"\w* \w if|strong="G2532"\w* \w you|strong="G3739"\w* \w keep|strong="G1301"\w* \w yourselves|strong="G1438"\w*, \w it|strong="G2532"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w well|strong="G2532"\w* \w with|strong="G1537"\w* \w you|strong="G3739"\w*. \w Farewell|strong="G4517"\w*.” +\p +\v 30 \w So|strong="G3767"\w*, \w when|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w sent|strong="G2532"\w* off, \w they|strong="G2532"\w* \w came|strong="G2718"\w* \w to|strong="G1519"\w* Antioch. \w Having|strong="G2532"\w* \w gathered|strong="G4863"\w* \w the|strong="G2532"\w* \w multitude|strong="G4128"\w* \w together|strong="G4863"\w*, \w they|strong="G2532"\w* \w delivered|strong="G1929"\w* \w the|strong="G2532"\w* \w letter|strong="G1992"\w*. +\v 31 \w When|strong="G1161"\w* \w they|strong="G1161"\w* \w had|strong="G3588"\w* read \w it|strong="G1161"\w*, \w they|strong="G1161"\w* \w rejoiced|strong="G5463"\w* \w over|strong="G1909"\w* \w the|strong="G1161"\w* \w encouragement|strong="G3874"\w*. +\v 32 \w Judas|strong="G2455"\w* \w and|strong="G2532"\w* \w Silas|strong="G4609"\w*, \w also|strong="G2532"\w* \w being|strong="G1510"\w* \w prophets|strong="G4396"\w* \w themselves|strong="G1510"\w*, \w encouraged|strong="G3870"\w* \w the|strong="G2532"\w* brothers \w with|strong="G1223"\w* \w many|strong="G4183"\w* \w words|strong="G3056"\w* \w and|strong="G2532"\w* \w strengthened|strong="G1991"\w* \w them|strong="G3588"\w*. +\v 33 \w After|strong="G3326"\w* \w they|strong="G1161"\w* \w had|strong="G3588"\w* \w spent|strong="G4160"\w* \w some|strong="G3588"\w* \w time|strong="G5550"\w* \w there|strong="G1161"\w*, \w they|strong="G1161"\w* \w were|strong="G3588"\w* dismissed \w in|strong="G4314"\w* \w peace|strong="G1515"\w* \w from|strong="G1515"\w* \w the|strong="G1161"\w* brothers \w to|strong="G4314"\w* \w the|strong="G1161"\w* apostles. +\v 34 \f + \fr 15:34 \ft Some manuscripts add: \fqa But it seemed good to Silas to stay there. \f* +\v 35 \w But|strong="G1161"\w* \w Paul|strong="G3972"\w* \w and|strong="G2532"\w* Barnabas \w stayed|strong="G1304"\w* \w in|strong="G1722"\w* Antioch, \w teaching|strong="G1321"\w* \w and|strong="G2532"\w* \w preaching|strong="G2097"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w with|strong="G3326"\w* \w many|strong="G4183"\w* \w others|strong="G2087"\w* \w also|strong="G2532"\w*. +\p +\v 36 \w After|strong="G3326"\w* \w some|strong="G5100"\w* \w days|strong="G2250"\w* \w Paul|strong="G3972"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* Barnabas, “\w Let|strong="G1161"\w*’\w s|strong="G2962"\w* \w return|strong="G1994"\w* \w now|strong="G1161"\w* \w and|strong="G1161"\w* \w visit|strong="G1980"\w* \w our|strong="G3956"\w* brothers \w in|strong="G1722"\w* \w every|strong="G3956"\w* \w city|strong="G4172"\w* \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w we|strong="G3739"\w* \w proclaimed|strong="G2605"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w to|strong="G4314"\w* see \w how|strong="G4459"\w* \w they|strong="G1161"\w* \w are|strong="G3588"\w* doing.” +\v 37 Barnabas \w planned|strong="G1014"\w* \w to|strong="G2532"\w* \w take|strong="G4838"\w* \w John|strong="G2491"\w*, \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w called|strong="G2564"\w* \w Mark|strong="G3138"\w*, \w with|strong="G2532"\w* \w them|strong="G3588"\w* \w also|strong="G2532"\w*. +\v 38 \w But|strong="G1161"\w* \w Paul|strong="G3972"\w* didn’\w t|strong="G3588"\w* think \w that|strong="G3588"\w* \w it|strong="G2532"\w* \w was|strong="G3588"\w* \w a|strong="G2532"\w* \w good|strong="G3588"\w* idea \w to|strong="G1519"\w* \w take|strong="G4838"\w* \w with|strong="G2532"\w* \w them|strong="G3588"\w* someone \w who|strong="G3588"\w* \w had|strong="G2532"\w* withdrawn \w from|strong="G2532"\w* \w them|strong="G3588"\w* \w in|strong="G1519"\w* \w Pamphylia|strong="G3828"\w*, \w and|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w go|strong="G1519"\w* \w with|strong="G2532"\w* \w them|strong="G3588"\w* \w to|strong="G1519"\w* \w do|strong="G2532"\w* \w the|strong="G2532"\w* \w work|strong="G2041"\w*. +\v 39 \w Then|strong="G1161"\w* \w the|strong="G1519"\w* \w contention|strong="G3948"\w* grew \w so|strong="G1161"\w* \w sharp|strong="G3948"\w* \w that|strong="G3588"\w* \w they|strong="G1161"\w* separated \w from|strong="G3588"\w* \w each|strong="G1438"\w* \w other|strong="G1161"\w*. Barnabas \w took|strong="G3880"\w* \w Mark|strong="G3138"\w* \w with|strong="G1519"\w* \w him|strong="G3588"\w* \w and|strong="G1161"\w* \w sailed|strong="G1602"\w* \w away|strong="G1602"\w* \w to|strong="G1519"\w* \w Cyprus|strong="G2954"\w*, +\v 40 \w but|strong="G1161"\w* \w Paul|strong="G3972"\w* \w chose|strong="G1951"\w* \w Silas|strong="G4609"\w* \w and|strong="G1161"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w*, \w being|strong="G1161"\w* \w commended|strong="G3860"\w* \w by|strong="G5259"\w* \w the|strong="G1161"\w* brothers \w to|strong="G1161"\w* \w the|strong="G1161"\w* \w grace|strong="G5485"\w* \w of|strong="G5259"\w* \w God|strong="G2962"\w*. +\v 41 \w He|strong="G2532"\w* \w went|strong="G1330"\w* \w through|strong="G1330"\w* \w Syria|strong="G4947"\w* \w and|strong="G2532"\w* \w Cilicia|strong="G2791"\w*, \w strengthening|strong="G1991"\w* \w the|strong="G2532"\w* \w assemblies|strong="G1577"\w*. +\c 16 +\p +\v 1 \w He|strong="G2532"\w* \w came|strong="G2658"\w* \w to|strong="G1519"\w* \w Derbe|strong="G1191"\w* \w and|strong="G2532"\w* \w Lystra|strong="G3082"\w*; \w and|strong="G2532"\w* \w behold|strong="G2400"\w*, \w a|strong="G2532"\w* \w certain|strong="G5100"\w* \w disciple|strong="G3101"\w* \w was|strong="G1510"\w* \w there|strong="G1563"\w*, \w named|strong="G3686"\w* \w Timothy|strong="G5095"\w*, \w the|strong="G2532"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w a|strong="G2532"\w* \w Jewess|strong="G2453"\w* \w who|strong="G3962"\w* \w believed|strong="G4103"\w*, \w but|strong="G1161"\w* \w his|strong="G1519"\w* \w father|strong="G3962"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w Greek|strong="G1672"\w*. +\v 2 \w The|strong="G1722"\w* brothers \w who|strong="G3739"\w* \w were|strong="G3588"\w* \w at|strong="G1722"\w* \w Lystra|strong="G3082"\w* \w and|strong="G2532"\w* \w Iconium|strong="G2430"\w* \w gave|strong="G2532"\w* \w a|strong="G2532"\w* \w good|strong="G3588"\w* \w testimony|strong="G3140"\w* \w about|strong="G1722"\w* \w him|strong="G3588"\w*. +\v 3 \w Paul|strong="G3972"\w* \w wanted|strong="G2309"\w* \w to|strong="G2532"\w* \w have|strong="G2309"\w* \w him|strong="G3588"\w* \w go|strong="G1831"\w* \w out|strong="G1831"\w* \w with|strong="G1722"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w took|strong="G2983"\w* \w and|strong="G2532"\w* \w circumcised|strong="G4059"\w* \w him|strong="G3588"\w* \w because|strong="G3754"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w* \w who|strong="G3588"\w* \w were|strong="G1510"\w* \w in|strong="G1722"\w* \w those|strong="G3588"\w* \w parts|strong="G5117"\w*, \w for|strong="G1063"\w* \w they|strong="G2532"\w* \w all|strong="G2532"\w* \w knew|strong="G1492"\w* \w that|strong="G3754"\w* \w his|strong="G1223"\w* \w father|strong="G3962"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w Greek|strong="G1672"\w*. +\v 4 \w As|strong="G5613"\w* \w they|strong="G2532"\w* \w went|strong="G2532"\w* \w on|strong="G1722"\w* \w their|strong="G2532"\w* \w way|strong="G1722"\w* \w through|strong="G1722"\w* \w the|strong="G1722"\w* \w cities|strong="G4172"\w*, \w they|strong="G2532"\w* \w delivered|strong="G3860"\w* \w the|strong="G1722"\w* \w decrees|strong="G1378"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w to|strong="G2532"\w* \w keep|strong="G5442"\w* \w which|strong="G3588"\w* \w had|strong="G2532"\w* \w been|strong="G2532"\w* \w ordained|strong="G2919"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* apostles \w and|strong="G2532"\w* \w elders|strong="G4245"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w at|strong="G1722"\w* \w Jerusalem|strong="G2414"\w*. +\v 5 \w So|strong="G3767"\w* \w the|strong="G2532"\w* \w assemblies|strong="G1577"\w* \w were|strong="G3588"\w* \w strengthened|strong="G4732"\w* \w in|strong="G2596"\w* \w the|strong="G2532"\w* \w faith|strong="G4102"\w*, \w and|strong="G2532"\w* \w increased|strong="G4052"\w* \w in|strong="G2596"\w* number \w daily|strong="G2250"\w*. +\p +\v 6 \w When|strong="G1161"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w gone|strong="G1330"\w* \w through|strong="G1722"\w* \w the|strong="G1722"\w* \w region|strong="G5561"\w* \w of|strong="G3056"\w* \w Phrygia|strong="G5435"\w* \w and|strong="G2532"\w* \w Galatia|strong="G1054"\w*, \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w forbidden|strong="G2967"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w to|strong="G2532"\w* \w speak|strong="G2980"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w in|strong="G1722"\w* \w Asia|strong="G3588"\w*. +\v 7 \w When|strong="G1161"\w* \w they|strong="G2532"\w* \w had|strong="G2424"\w* \w come|strong="G2064"\w* opposite \w Mysia|strong="G3465"\w*, \w they|strong="G2532"\w* \w tried|strong="G3985"\w* \w to|strong="G1519"\w* \w go|strong="G4198"\w* \w into|strong="G1519"\w* Bithynia, \w but|strong="G1161"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w* didn’\w t|strong="G3588"\w* \w allow|strong="G1439"\w* \w them|strong="G3588"\w*. +\v 8 \w Passing|strong="G3928"\w* \w by|strong="G1519"\w* \w Mysia|strong="G3465"\w*, \w they|strong="G1161"\w* \w came|strong="G2597"\w* \w down|strong="G2597"\w* \w to|strong="G1519"\w* \w Troas|strong="G5174"\w*. +\v 9 \w A|strong="G2532"\w* \w vision|strong="G3705"\w* \w appeared|strong="G3708"\w* \w to|strong="G1519"\w* \w Paul|strong="G3972"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w night|strong="G3571"\w*. \w There|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w man|strong="G5100"\w* \w of|strong="G1223"\w* \w Macedonia|strong="G3109"\w* \w standing|strong="G2476"\w*, \w begging|strong="G3870"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w saying|strong="G3004"\w*, “\w Come|strong="G1510"\w* \w over|strong="G1224"\w* \w into|strong="G1519"\w* \w Macedonia|strong="G3109"\w* \w and|strong="G2532"\w* help \w us|strong="G3004"\w*.” +\v 10 \w When|strong="G1161"\w* \w he|strong="G1161"\w* \w had|strong="G2316"\w* \w seen|strong="G3708"\w* \w the|strong="G1519"\w* \w vision|strong="G3705"\w*, \w immediately|strong="G2112"\w* \w we|strong="G2249"\w* \w sought|strong="G2212"\w* \w to|strong="G1519"\w* \w go|strong="G1831"\w* \w out|strong="G1831"\w* \w to|strong="G1519"\w* \w Macedonia|strong="G3109"\w*, \w concluding|strong="G4822"\w* \w that|strong="G3754"\w* \w the|strong="G1519"\w* \w Lord|strong="G3588"\w* \w had|strong="G2316"\w* \w called|strong="G4341"\w* \w us|strong="G2097"\w* \w to|strong="G1519"\w* \w preach|strong="G2097"\w* \w the|strong="G1519"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*. +\v 11 Setting sail \w therefore|strong="G3767"\w* \w from|strong="G3588"\w* \w Troas|strong="G5174"\w*, \w we|strong="G1161"\w* \w made|strong="G1161"\w* \w a|strong="G1519"\w* \w straight|strong="G2113"\w* \w course|strong="G2113"\w* \w to|strong="G1519"\w* \w Samothrace|strong="G4543"\w*, \w and|strong="G1161"\w* \w the|strong="G1519"\w* \w day|strong="G3588"\w* \w following|strong="G1966"\w* \w to|strong="G1519"\w* \w Neapolis|strong="G3501"\w*; +\v 12 \w and|strong="G1161"\w* \w from|strong="G3588"\w* \w there|strong="G1161"\w* \w to|strong="G1519"\w* \w Philippi|strong="G5375"\w*, \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w a|strong="G1519"\w* \w city|strong="G4172"\w* \w of|strong="G2250"\w* \w Macedonia|strong="G3109"\w*, \w the|strong="G1722"\w* \w foremost|strong="G4413"\w* \w of|strong="G2250"\w* \w the|strong="G1722"\w* \w district|strong="G3310"\w*, \w a|strong="G1519"\w* Roman \w colony|strong="G2862"\w*. \w We|strong="G1161"\w* \w were|strong="G1510"\w* \w staying|strong="G1304"\w* \w some|strong="G5100"\w* \w days|strong="G2250"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* \w city|strong="G4172"\w*. +\p +\v 13 \w On|strong="G2523"\w* \w the|strong="G2532"\w* \w Sabbath|strong="G4521"\w* \w day|strong="G2250"\w* \w we|strong="G2532"\w* \w went|strong="G1831"\w* \w outside|strong="G1854"\w* \w of|strong="G2250"\w* \w the|strong="G2532"\w* city \w by|strong="G3844"\w* \w a|strong="G2532"\w* \w riverside|strong="G3844"\w*, \w where|strong="G3757"\w* \w we|strong="G2532"\w* \w supposed|strong="G3543"\w* \w there|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w place|strong="G4335"\w* \w of|strong="G2250"\w* \w prayer|strong="G4335"\w*, \w and|strong="G2532"\w* \w we|strong="G2532"\w* \w sat|strong="G2523"\w* \w down|strong="G2523"\w* \w and|strong="G2532"\w* \w spoke|strong="G2980"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w women|strong="G1135"\w* \w who|strong="G3588"\w* \w had|strong="G2532"\w* \w come|strong="G1831"\w* \w together|strong="G4905"\w*. +\v 14 \w A|strong="G2532"\w* \w certain|strong="G5100"\w* \w woman|strong="G1135"\w* \w named|strong="G3686"\w* \w Lydia|strong="G3070"\w*, \w a|strong="G2532"\w* \w seller|strong="G4211"\w* \w of|strong="G5259"\w* \w purple|strong="G4211"\w*, \w of|strong="G5259"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w of|strong="G5259"\w* \w Thyatira|strong="G2363"\w*, \w one|strong="G5100"\w* \w who|strong="G3739"\w* worshiped \w God|strong="G2316"\w*, heard us. \w The|strong="G2532"\w* \w Lord|strong="G2962"\w* \w opened|strong="G1272"\w* \w her|strong="G5259"\w* \w heart|strong="G2588"\w* \w to|strong="G2532"\w* listen \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w which|strong="G3739"\w* \w were|strong="G3588"\w* \w spoken|strong="G2980"\w* \w by|strong="G5259"\w* \w Paul|strong="G3972"\w*. +\v 15 \w When|strong="G1161"\w* \w she|strong="G2532"\w* \w and|strong="G2532"\w* \w her|strong="G1519"\w* \w household|strong="G3624"\w* \w were|strong="G1510"\w* baptized, \w she|strong="G2532"\w* \w begged|strong="G3870"\w* \w us|strong="G3004"\w*, \w saying|strong="G3004"\w*, “\w If|strong="G1487"\w* \w you|strong="G1487"\w* \w have|strong="G2532"\w* \w judged|strong="G2919"\w* \w me|strong="G1473"\w* \w to|strong="G1519"\w* \w be|strong="G1510"\w* \w faithful|strong="G4103"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w come|strong="G1525"\w* \w into|strong="G1519"\w* \w my|strong="G1525"\w* \w house|strong="G3624"\w* \w and|strong="G2532"\w* \w stay|strong="G3306"\w*.” \w So|strong="G2532"\w* \w she|strong="G2532"\w* persuaded \w us|strong="G3004"\w*. +\p +\v 16 \w As|strong="G1519"\w* \w we|strong="G2249"\w* \w were|strong="G3588"\w* \w going|strong="G4198"\w* \w to|strong="G1519"\w* \w prayer|strong="G4335"\w*, \w a|strong="G2192"\w* \w certain|strong="G5100"\w* girl \w having|strong="G2192"\w* \w a|strong="G2192"\w* \w spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w divination|strong="G4436"\w* \w met|strong="G5221"\w* \w us|strong="G1519"\w*, \w who|strong="G3588"\w* \w brought|strong="G3930"\w* \w her|strong="G1519"\w* \w masters|strong="G2962"\w* \w much|strong="G4183"\w* \w gain|strong="G2039"\w* \w by|strong="G1519"\w* fortune telling. +\v 17 \w Following|strong="G2628"\w* \w Paul|strong="G3972"\w* \w and|strong="G2532"\w* \w us|strong="G3004"\w*, \w she|strong="G2532"\w* \w cried|strong="G2896"\w* \w out|strong="G2896"\w*, “\w These|strong="G3778"\w* \w men|strong="G3778"\w* \w are|strong="G1510"\w* \w servants|strong="G1401"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w Most|strong="G5310"\w* \w High|strong="G5310"\w* \w God|strong="G2316"\w*, \w who|strong="G3588"\w* \w proclaim|strong="G2605"\w* \w to|strong="G2532"\w* \w us|strong="G3004"\w* \w a|strong="G2532"\w* \w way|strong="G3598"\w* \w of|strong="G2316"\w* \w salvation|strong="G4991"\w*!” +\v 18 \w She|strong="G2532"\w* \w was|strong="G3588"\w* \w doing|strong="G4160"\w* \w this|strong="G3778"\w* \w for|strong="G1909"\w* \w many|strong="G4183"\w* \w days|strong="G2250"\w*. +\p \w But|strong="G1161"\w* \w Paul|strong="G3972"\w*, becoming \w greatly|strong="G4183"\w* \w annoyed|strong="G1278"\w*, \w turned|strong="G1994"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w spirit|strong="G4151"\w*, “\w I|strong="G2532"\w* \w command|strong="G3853"\w* \w you|strong="G4771"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G4151"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w to|strong="G2532"\w* \w come|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G4151"\w* \w her|strong="G4160"\w*!” \w It|strong="G2532"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w* \w that|strong="G3588"\w* \w very|strong="G4183"\w* \w hour|strong="G5610"\w*. +\v 19 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w her|strong="G1519"\w* \w masters|strong="G2962"\w* \w saw|strong="G3708"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w hope|strong="G1680"\w* \w of|strong="G2532"\w* \w their|strong="G2532"\w* \w gain|strong="G2039"\w* \w was|strong="G3588"\w* \w gone|strong="G1831"\w*, \w they|strong="G2532"\w* \w seized|strong="G1949"\w* \w Paul|strong="G3972"\w* \w and|strong="G2532"\w* \w Silas|strong="G4609"\w* \w and|strong="G2532"\w* \w dragged|strong="G1670"\w* \w them|strong="G3588"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* marketplace \w before|strong="G1909"\w* \w the|strong="G2532"\w* rulers. +\v 20 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w brought|strong="G4317"\w* \w them|strong="G3588"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w magistrates|strong="G4755"\w*, \w they|strong="G2532"\w* \w said|strong="G3004"\w*, “\w These|strong="G3778"\w* \w men|strong="G3778"\w*, \w being|strong="G5225"\w* \w Jews|strong="G2453"\w*, \w are|strong="G3588"\w* agitating \w our|strong="G2532"\w* \w city|strong="G4172"\w* +\v 21 \w and|strong="G2532"\w* advocate \w customs|strong="G1485"\w* \w which|strong="G3739"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w lawful|strong="G1832"\w* \w for|strong="G2532"\w* \w us|strong="G4160"\w* \w to|strong="G2532"\w* \w accept|strong="G3858"\w* \w or|strong="G2532"\w* \w to|strong="G2532"\w* \w observe|strong="G4160"\w*, \w being|strong="G1510"\w* \w Romans|strong="G4514"\w*.” +\p +\v 22 \w The|strong="G2532"\w* \w multitude|strong="G3793"\w* \w rose|strong="G2532"\w* \w up|strong="G2532"\w* \w together|strong="G4911"\w* \w against|strong="G2596"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w magistrates|strong="G4755"\w* \w tore|strong="G4048"\w* \w their|strong="G2532"\w* \w clothes|strong="G2440"\w* \w from|strong="G2532"\w* \w them|strong="G3588"\w*, \w then|strong="G2532"\w* \w commanded|strong="G2753"\w* \w them|strong="G3588"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w beaten|strong="G4463"\w* \w with|strong="G2532"\w* \w rods|strong="G4463"\w*. +\v 23 \w When|strong="G2007"\w* \w they|strong="G3588"\w* \w had|strong="G3588"\w* \w laid|strong="G2007"\w* \w many|strong="G4183"\w* \w stripes|strong="G4127"\w* \w on|strong="G1519"\w* \w them|strong="G3588"\w*, \w they|strong="G3588"\w* threw \w them|strong="G3588"\w* \w into|strong="G1519"\w* \w prison|strong="G5438"\w*, \w charging|strong="G3853"\w* \w the|strong="G1519"\w* \w jailer|strong="G1200"\w* \w to|strong="G1519"\w* \w keep|strong="G5083"\w* \w them|strong="G3588"\w* safely. +\v 24 \w Having|strong="G2532"\w* \w received|strong="G2983"\w* \w such|strong="G5108"\w* \w a|strong="G2532"\w* \w command|strong="G3852"\w*, \w he|strong="G2532"\w* threw \w them|strong="G3588"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w inner|strong="G2082"\w* \w prison|strong="G5438"\w* \w and|strong="G2532"\w* secured \w their|strong="G1438"\w* \w feet|strong="G4228"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w stocks|strong="G3586"\w*. +\p +\v 25 \w But|strong="G1161"\w* \w about|strong="G2596"\w* \w midnight|strong="G3317"\w* \w Paul|strong="G3972"\w* \w and|strong="G2532"\w* \w Silas|strong="G4609"\w* \w were|strong="G3588"\w* \w praying|strong="G4336"\w* \w and|strong="G2532"\w* \w singing|strong="G5214"\w* \w hymns|strong="G5214"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w prisoners|strong="G1198"\w* \w were|strong="G3588"\w* \w listening|strong="G1874"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*. +\v 26 Suddenly \w there|strong="G2532"\w* \w was|strong="G1096"\w* \w a|strong="G1096"\w* \w great|strong="G3173"\w* \w earthquake|strong="G4578"\w*, \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w the|strong="G2532"\w* \w foundations|strong="G2310"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w prison|strong="G1201"\w* \w were|strong="G3588"\w* \w shaken|strong="G4531"\w*; \w and|strong="G2532"\w* \w immediately|strong="G3916"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w doors|strong="G2374"\w* \w were|strong="G3588"\w* opened, \w and|strong="G2532"\w* \w everyone|strong="G3956"\w*’s \w bonds|strong="G1199"\w* \w were|strong="G3588"\w* loosened. +\v 27 \w The|strong="G2532"\w* \w jailer|strong="G1200"\w*, \w being|strong="G1096"\w* roused \w out|strong="G2532"\w* \w of|strong="G2532"\w* \w sleep|strong="G1853"\w* \w and|strong="G2532"\w* \w seeing|strong="G3708"\w* \w the|strong="G2532"\w* \w prison|strong="G5438"\w* \w doors|strong="G2374"\w* open, \w drew|strong="G4685"\w* \w his|strong="G1438"\w* \w sword|strong="G3162"\w* \w and|strong="G2532"\w* \w was|strong="G1096"\w* \w about|strong="G3195"\w* \w to|strong="G2532"\w* kill \w himself|strong="G1438"\w*, \w supposing|strong="G3543"\w* \w that|strong="G3588"\w* \w the|strong="G2532"\w* \w prisoners|strong="G1198"\w* \w had|strong="G2532"\w* \w escaped|strong="G1628"\w*. +\v 28 \w But|strong="G1161"\w* \w Paul|strong="G3972"\w* \w cried|strong="G5455"\w* \w with|strong="G1161"\w* \w a|strong="G1510"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, \w saying|strong="G3004"\w*, “Don’t \w harm|strong="G2556"\w* \w yourself|strong="G4572"\w*, \w for|strong="G1063"\w* \w we|strong="G1063"\w* \w are|strong="G1510"\w* \w all|strong="G1161"\w* \w here|strong="G1759"\w*!” +\p +\v 29 \w He|strong="G2532"\w* \w called|strong="G3972"\w* \w for|strong="G1161"\w* \w lights|strong="G5457"\w*, sprang \w in|strong="G2532"\w*, \w fell|strong="G4363"\w* \w down|strong="G4363"\w* \w trembling|strong="G1790"\w* \w before|strong="G4363"\w* \w Paul|strong="G3972"\w* \w and|strong="G2532"\w* \w Silas|strong="G4609"\w*, +\v 30 \w brought|strong="G4254"\w* \w them|strong="G1438"\w* \w out|strong="G1854"\w*, \w and|strong="G2532"\w* \w said|strong="G5346"\w*, “\w Sirs|strong="G2962"\w*, \w what|strong="G5101"\w* \w must|strong="G1163"\w* \w I|strong="G1473"\w* \w do|strong="G4160"\w* \w to|strong="G2443"\w* \w be|strong="G2532"\w* \w saved|strong="G4982"\w*?” +\p +\v 31 \w They|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Believe|strong="G4100"\w* \w in|strong="G1909"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G2962"\w*, \w and|strong="G2532"\w* \w you|strong="G4771"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w saved|strong="G4982"\w*, \w you|strong="G4771"\w* \w and|strong="G2532"\w* \w your|strong="G2962"\w* \w household|strong="G3624"\w*.” +\v 32 \w They|strong="G2532"\w* \w spoke|strong="G2980"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w all|strong="G3956"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w in|strong="G1722"\w* \w his|strong="G3956"\w* \w house|strong="G3614"\w*. +\p +\v 33 \w He|strong="G2532"\w* \w took|strong="G3880"\w* \w them|strong="G3588"\w* \w the|strong="G1722"\w* \w same|strong="G1565"\w* \w hour|strong="G5610"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w night|strong="G3571"\w* \w and|strong="G2532"\w* \w washed|strong="G3068"\w* \w their|strong="G1438"\w* \w stripes|strong="G4127"\w*, \w and|strong="G2532"\w* \w was|strong="G3588"\w* \w immediately|strong="G3916"\w* baptized, \w he|strong="G2532"\w* \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w his|strong="G1438"\w* household. +\v 34 \w He|strong="G2532"\w* \w brought|strong="G2532"\w* \w them|strong="G3588"\w* \w up|strong="G1519"\w* \w into|strong="G1519"\w* \w his|strong="G1438"\w* \w house|strong="G3624"\w* \w and|strong="G2532"\w* \w set|strong="G3908"\w* \w food|strong="G5132"\w* \w before|strong="G3908"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* rejoiced \w greatly|strong="G4100"\w* \w with|strong="G2532"\w* \w all|strong="G2532"\w* \w his|strong="G1438"\w* \w household|strong="G3624"\w*, \w having|strong="G2532"\w* \w believed|strong="G4100"\w* \w in|strong="G1519"\w* \w God|strong="G2316"\w*. +\p +\v 35 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w it|strong="G1161"\w* \w was|strong="G1096"\w* \w day|strong="G2250"\w*, \w the|strong="G1161"\w* \w magistrates|strong="G4755"\w* sent \w the|strong="G1161"\w* sergeants, \w saying|strong="G3004"\w*, “\w Let|strong="G1096"\w* \w those|strong="G3588"\w* \w men|strong="G3588"\w* go.” +\p +\v 36 \w The|strong="G1722"\w* \w jailer|strong="G1200"\w* reported \w these|strong="G3778"\w* \w words|strong="G3056"\w* \w to|strong="G4314"\w* \w Paul|strong="G3972"\w*, \w saying|strong="G3056"\w*, “\w The|strong="G1722"\w* \w magistrates|strong="G4755"\w* \w have|strong="G3748"\w* sent \w to|strong="G4314"\w* \w let|strong="G1161"\w* \w you|strong="G3754"\w* \w go|strong="G4198"\w*; \w now|strong="G1161"\w* \w therefore|strong="G3767"\w* \w come|strong="G1831"\w* \w out|strong="G1831"\w* \w and|strong="G1161"\w* \w go|strong="G4198"\w* \w in|strong="G1722"\w* \w peace|strong="G1515"\w*.” +\p +\v 37 \w But|strong="G1161"\w* \w Paul|strong="G3972"\w* \w said|strong="G5346"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, “\w They|strong="G2532"\w* \w have|strong="G2532"\w* \w beaten|strong="G1194"\w* \w us|strong="G1519"\w* \w publicly|strong="G1219"\w* \w without|strong="G2532"\w* \w a|strong="G2532"\w* trial, \w men|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w Romans|strong="G4514"\w*, \w and|strong="G2532"\w* \w have|strong="G2532"\w* \w cast|strong="G1544"\w* \w us|strong="G1519"\w* \w into|strong="G1519"\w* \w prison|strong="G5438"\w*! \w Do|strong="G2532"\w* \w they|strong="G2532"\w* \w now|strong="G1161"\w* release \w us|strong="G1519"\w* \w secretly|strong="G2977"\w*? \w No|strong="G3756"\w*, most \w certainly|strong="G1063"\w*, \w but|strong="G1161"\w* \w let|strong="G1161"\w* \w them|strong="G3588"\w* \w come|strong="G2064"\w* \w themselves|strong="G1438"\w* \w and|strong="G2532"\w* \w bring|strong="G2532"\w* \w us|strong="G1519"\w* \w out|strong="G1544"\w*!” +\p +\v 38 \w The|strong="G1161"\w* sergeants reported \w these|strong="G3778"\w* \w words|strong="G4487"\w* \w to|strong="G1161"\w* \w the|strong="G1161"\w* \w magistrates|strong="G4755"\w*, \w and|strong="G1161"\w* \w they|strong="G1161"\w* \w were|strong="G1510"\w* \w afraid|strong="G5399"\w* \w when|strong="G1161"\w* \w they|strong="G1161"\w* heard \w that|strong="G3754"\w* \w they|strong="G1161"\w* \w were|strong="G1510"\w* \w Romans|strong="G4514"\w*, +\v 39 \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w begged|strong="G3870"\w* \w them|strong="G3588"\w*. \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w brought|strong="G1806"\w* \w them|strong="G3588"\w* \w out|strong="G1806"\w*, \w they|strong="G2532"\w* \w asked|strong="G2065"\w* \w them|strong="G3588"\w* \w to|strong="G2532"\w* depart \w from|strong="G2064"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w*. +\v 40 \w They|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w prison|strong="G5438"\w* \w and|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1525"\w* \w Lydia|strong="G3070"\w*’s house. \w When|strong="G1161"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w seen|strong="G3708"\w* \w the|strong="G2532"\w* brothers, \w they|strong="G2532"\w* \w encouraged|strong="G3870"\w* \w them|strong="G3588"\w*, \w then|strong="G2532"\w* \w departed|strong="G1831"\w*. +\c 17 +\p +\v 1 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w passed|strong="G3588"\w* \w through|strong="G1353"\w* Amphipolis \w and|strong="G2532"\w* Apollonia, \w they|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w Thessalonica|strong="G2332"\w*, \w where|strong="G3699"\w* \w there|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w Jewish|strong="G2453"\w* \w synagogue|strong="G4864"\w*. +\v 2 \w Paul|strong="G3972"\w*, \w as|strong="G1161"\w* \w was|strong="G3588"\w* \w his|strong="G1438"\w* \w custom|strong="G1486"\w*, \w went|strong="G1525"\w* \w in|strong="G1909"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*; \w and|strong="G2532"\w* \w for|strong="G1909"\w* \w three|strong="G5140"\w* \w Sabbath|strong="G4521"\w* \w days|strong="G4521"\w* \w reasoned|strong="G1256"\w* \w with|strong="G4314"\w* \w them|strong="G3588"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w Scriptures|strong="G1124"\w*, +\v 3 \w explaining|strong="G1272"\w* \w and|strong="G2532"\w* \w demonstrating|strong="G3908"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w Christ|strong="G5547"\w* \w had|strong="G2424"\w* \w to|strong="G2532"\w* \w suffer|strong="G3958"\w* \w and|strong="G2532"\w* \w rise|strong="G1163"\w* \w again|strong="G2532"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*, \w and|strong="G2532"\w* \w saying|strong="G3754"\w*, “\w This|strong="G3778"\w* \w Jesus|strong="G2424"\w*, \w whom|strong="G3739"\w* \w I|strong="G1473"\w* \w proclaim|strong="G2605"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*, \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w Christ|strong="G5547"\w*.” +\p +\v 4 \w Some|strong="G5100"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w* \w were|strong="G3588"\w* \w persuaded|strong="G3982"\w* \w and|strong="G2532"\w* \w joined|strong="G4345"\w* \w Paul|strong="G3972"\w* \w and|strong="G2532"\w* \w Silas|strong="G4609"\w*: \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w devout|strong="G4576"\w* \w Greeks|strong="G1672"\w* \w a|strong="G2532"\w* \w great|strong="G4183"\w* \w multitude|strong="G4128"\w*, \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w a|strong="G2532"\w* \w few|strong="G3641"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w chief|strong="G4413"\w* \w women|strong="G1135"\w*. +\v 5 \w But|strong="G1161"\w* \w the|strong="G2532"\w* unpersuaded \w Jews|strong="G2453"\w* \w took|strong="G4355"\w* \w along|strong="G2532"\w*\f + \fr 17:5 \ft TR reads “And the Jews who were unpersuaded, becoming envious and taking along” instead of “But the unpersuaded Jews took along”\f* \w some|strong="G5100"\w* \w wicked|strong="G4190"\w* \w men|strong="G5100"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* marketplace \w and|strong="G2532"\w* gathering \w a|strong="G2532"\w* crowd, \w set|strong="G2532"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w in|strong="G1519"\w* \w an|strong="G2532"\w* \w uproar|strong="G2350"\w*. Assaulting \w the|strong="G2532"\w* \w house|strong="G3614"\w* \w of|strong="G2532"\w* \w Jason|strong="G2394"\w*, \w they|strong="G2532"\w* \w sought|strong="G2212"\w* \w to|strong="G1519"\w* \w bring|strong="G4254"\w* \w them|strong="G3588"\w* \w out|strong="G2532"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w people|strong="G1218"\w*. +\v 6 \w When|strong="G1161"\w* \w they|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w find|strong="G2147"\w* \w them|strong="G3588"\w*, \w they|strong="G2532"\w* \w dragged|strong="G4951"\w* \w Jason|strong="G2394"\w* \w and|strong="G2532"\w* \w certain|strong="G5100"\w* brothers\f + \fr 17:6 \ft The word for “brothers” here and where the context allows may be also correctly translated “brothers and sisters” or “siblings.”\f* \w before|strong="G1909"\w* \w the|strong="G2532"\w* rulers \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w city|strong="G4173"\w*, crying, “\w These|strong="G3778"\w* \w who|strong="G3588"\w* \w have|strong="G2532"\w* turned \w the|strong="G2532"\w* \w world|strong="G3625"\w* \w upside|strong="G3625"\w* down \w have|strong="G2532"\w* \w come|strong="G3918"\w* \w here|strong="G1759"\w* \w also|strong="G2532"\w*, +\v 7 \w whom|strong="G3739"\w* \w Jason|strong="G2394"\w* \w has|strong="G3739"\w* \w received|strong="G5264"\w*. \w These|strong="G3778"\w* \w all|strong="G3956"\w* \w act|strong="G4238"\w* contrary \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w decrees|strong="G1378"\w* \w of|strong="G2532"\w* \w Caesar|strong="G2541"\w*, \w saying|strong="G3004"\w* \w that|strong="G3739"\w* \w there|strong="G2532"\w* \w is|strong="G1510"\w* \w another|strong="G2087"\w* \w king|strong="G3588"\w*, \w Jesus|strong="G2424"\w*!” +\v 8 \w The|strong="G2532"\w* \w multitude|strong="G3793"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* rulers \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w city|strong="G4173"\w* \w were|strong="G3588"\w* \w troubled|strong="G5015"\w* \w when|strong="G1161"\w* \w they|strong="G2532"\w* heard \w these|strong="G3778"\w* \w things|strong="G3778"\w*. +\v 9 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w taken|strong="G2983"\w* \w security|strong="G2425"\w* \w from|strong="G3844"\w* \w Jason|strong="G2394"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w rest|strong="G3062"\w*, \w they|strong="G2532"\w* \w let|strong="G2983"\w* \w them|strong="G3588"\w* \w go|strong="G2532"\w*. +\p +\v 10 \w The|strong="G2532"\w* brothers \w immediately|strong="G2112"\w* \w sent|strong="G1599"\w* \w Paul|strong="G3972"\w* \w and|strong="G2532"\w* \w Silas|strong="G4609"\w* \w away|strong="G1599"\w* \w by|strong="G1223"\w* \w night|strong="G3571"\w* \w to|strong="G1519"\w* Beroea. \w When|strong="G1161"\w* \w they|strong="G2532"\w* \w arrived|strong="G3854"\w*, \w they|strong="G2532"\w* \w went|strong="G2532"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w Jewish|strong="G2453"\w* \w synagogue|strong="G4864"\w*. +\p +\v 11 \w Now|strong="G1161"\w* \w these|strong="G3778"\w* \w were|strong="G1510"\w* \w more|strong="G2192"\w* \w noble|strong="G2104"\w* \w than|strong="G2104"\w* \w those|strong="G3588"\w* \w in|strong="G1722"\w* \w Thessalonica|strong="G2332"\w*, \w in|strong="G1722"\w* \w that|strong="G3588"\w* \w they|strong="G1161"\w* \w received|strong="G1209"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w with|strong="G3326"\w* \w all|strong="G3956"\w* \w readiness|strong="G4288"\w* \w of|strong="G3056"\w* \w mind|strong="G4288"\w*, examining \w the|strong="G1722"\w* \w Scriptures|strong="G1124"\w* \w daily|strong="G2250"\w* \w to|strong="G2596"\w* see \w whether|strong="G1487"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w* \w were|strong="G1510"\w* \w so|strong="G3779"\w*. +\v 12 \w Many|strong="G4183"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w* \w therefore|strong="G3767"\w* \w believed|strong="G4100"\w*; \w also|strong="G2532"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w prominent|strong="G2158"\w* \w Greek|strong="G1674"\w* \w women|strong="G1135"\w*, \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w a|strong="G2532"\w* \w few|strong="G3641"\w* \w men|strong="G3588"\w*. +\v 13 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w* \w of|strong="G3056"\w* \w Thessalonica|strong="G2332"\w* \w had|strong="G2532"\w* \w knowledge|strong="G1097"\w* \w that|strong="G3754"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w* \w was|strong="G3588"\w* \w proclaimed|strong="G2605"\w* \w by|strong="G1722"\w* \w Paul|strong="G3972"\w* \w at|strong="G1722"\w* Beroea \w also|strong="G2532"\w*, \w they|strong="G2532"\w* \w came|strong="G2064"\w* \w there|strong="G2532"\w* \w likewise|strong="G2532"\w*, \w agitating|strong="G4531"\w* \w the|strong="G1722"\w* \w multitudes|strong="G3793"\w*. +\v 14 \w Then|strong="G2532"\w* \w the|strong="G2532"\w* brothers \w immediately|strong="G2112"\w* \w sent|strong="G1821"\w* \w out|strong="G2532"\w* \w Paul|strong="G3972"\w* \w to|strong="G2532"\w* \w go|strong="G4198"\w* \w as|strong="G1161"\w* \w far|strong="G2193"\w* \w as|strong="G1161"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w*, \w and|strong="G2532"\w* \w Silas|strong="G4609"\w* \w and|strong="G2532"\w* \w Timothy|strong="G5095"\w* \w still|strong="G2193"\w* \w stayed|strong="G5278"\w* \w there|strong="G1563"\w*. +\v 15 \w But|strong="G1161"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w escorted|strong="G2525"\w* \w Paul|strong="G3972"\w* \w brought|strong="G2064"\w* \w him|strong="G3588"\w* \w as|strong="G5613"\w* \w far|strong="G2193"\w* \w as|strong="G5613"\w* Athens. \w Receiving|strong="G2983"\w* \w a|strong="G5613"\w* \w commandment|strong="G1785"\w* \w to|strong="G4314"\w* \w Silas|strong="G4609"\w* \w and|strong="G2532"\w* \w Timothy|strong="G5095"\w* \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w should|strong="G3588"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w* \w very|strong="G2532"\w* \w quickly|strong="G5036"\w*, \w they|strong="G2532"\w* \w departed|strong="G1826"\w*. +\p +\v 16 \w Now|strong="G1161"\w* \w while|strong="G1722"\w* \w Paul|strong="G3972"\w* \w waited|strong="G1551"\w* \w for|strong="G1161"\w* \w them|strong="G3588"\w* \w at|strong="G1722"\w* Athens, \w his|strong="G1438"\w* \w spirit|strong="G4151"\w* \w was|strong="G1510"\w* \w provoked|strong="G3947"\w* \w within|strong="G1722"\w* \w him|strong="G3588"\w* \w as|strong="G1722"\w* \w he|strong="G1161"\w* \w saw|strong="G2334"\w* \w the|strong="G1722"\w* \w city|strong="G4172"\w* \w full|strong="G1722"\w* \w of|strong="G4151"\w* \w idols|strong="G2712"\w*. +\v 17 \w So|strong="G3767"\w* \w he|strong="G2532"\w* \w reasoned|strong="G1256"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w synagogue|strong="G4864"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w devout|strong="G4576"\w* \w persons|strong="G4576"\w*, \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* marketplace \w every|strong="G3956"\w* \w day|strong="G2250"\w* \w with|strong="G1722"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* met \w him|strong="G3588"\w*. +\v 18 \w Some|strong="G5100"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Epicurean|strong="G1946"\w* \w and|strong="G2532"\w* \w Stoic|strong="G4770"\w* \w philosophers|strong="G5386"\w* \w also|strong="G2532"\w*\f + \fr 17:18 \ft TR omits “also” \f* \w were|strong="G1510"\w* \w conversing|strong="G4820"\w* \w with|strong="G2532"\w* \w him|strong="G3588"\w*. \w Some|strong="G5100"\w* \w said|strong="G3004"\w*, “\w What|strong="G5101"\w* \w does|strong="G1510"\w* \w this|strong="G3778"\w* \w babbler|strong="G4691"\w* \w want|strong="G2309"\w* \w to|strong="G2532"\w* \w say|strong="G3004"\w*?” +\p \w Others|strong="G3588"\w* \w said|strong="G3004"\w*, “\w He|strong="G2532"\w* \w seems|strong="G1380"\w* \w to|strong="G2532"\w* \w be|strong="G1510"\w* advocating foreign \w deities|strong="G1140"\w*,” \w because|strong="G3754"\w* \w he|strong="G2532"\w* \w preached|strong="G2097"\w* \w Jesus|strong="G2424"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* resurrection. +\p +\v 19 \w They|strong="G3588"\w* \w took|strong="G1949"\w* \w hold|strong="G1949"\w* \w of|strong="G5259"\w* \w him|strong="G3588"\w* \w and|strong="G5037"\w* brought \w him|strong="G3588"\w* \w to|strong="G1909"\w* \w the|strong="G1909"\w* Areopagus, \w saying|strong="G3004"\w*, “\w May|strong="G1410"\w* \w we|strong="G3778"\w* \w know|strong="G1097"\w* \w what|strong="G5101"\w* \w this|strong="G3778"\w* \w new|strong="G2537"\w* \w teaching|strong="G1322"\w* \w is|strong="G3588"\w*, \w which|strong="G3588"\w* \w you|strong="G4771"\w* \w are|strong="G3588"\w* \w speaking|strong="G2980"\w* \w about|strong="G1909"\w*? +\v 20 \w For|strong="G1063"\w* \w you|strong="G1510"\w* \w bring|strong="G1533"\w* \w certain|strong="G5100"\w* \w strange|strong="G3579"\w* \w things|strong="G3778"\w* \w to|strong="G1519"\w* \w our|strong="G1519"\w* ears. \w We|strong="G2249"\w* \w want|strong="G2309"\w* \w to|strong="G1519"\w* \w know|strong="G1097"\w* \w therefore|strong="G3767"\w* \w what|strong="G5101"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w mean|strong="G2309"\w*.” +\v 21 \w Now|strong="G1161"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* Athenians \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w strangers|strong="G3581"\w* living \w there|strong="G2532"\w* spent \w their|strong="G2532"\w* \w time|strong="G2119"\w* \w in|strong="G1519"\w* \w nothing|strong="G3762"\w* \w else|strong="G2228"\w*, \w but|strong="G1161"\w* \w either|strong="G2228"\w* \w to|strong="G1519"\w* \w tell|strong="G3004"\w* \w or|strong="G2228"\w* \w to|strong="G1519"\w* hear \w some|strong="G5100"\w* \w new|strong="G2537"\w* \w thing|strong="G5100"\w*. +\p +\v 22 \w Paul|strong="G3972"\w* \w stood|strong="G2476"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w middle|strong="G3319"\w* \w of|strong="G1722"\w* \w the|strong="G1722"\w* Areopagus \w and|strong="G1161"\w* \w said|strong="G5346"\w*, “\w You|strong="G5210"\w* \w men|strong="G3956"\w* \w of|strong="G1722"\w* Athens, \w I|strong="G1161"\w* \w perceive|strong="G2334"\w* \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w are|strong="G3588"\w* \w very|strong="G3588"\w* religious \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*. +\v 23 \w For|strong="G1063"\w* \w as|strong="G1722"\w* \w I|strong="G1473"\w* \w passed|strong="G1330"\w* \w along|strong="G2532"\w* \w and|strong="G2532"\w* observed \w the|strong="G1722"\w* \w objects|strong="G4574"\w* \w of|strong="G2316"\w* \w your|strong="G2532"\w* \w worship|strong="G2151"\w*, \w I|strong="G1473"\w* \w also|strong="G2532"\w* \w found|strong="G2147"\w* \w an|strong="G2532"\w* \w altar|strong="G1041"\w* \w with|strong="G1722"\w* \w this|strong="G3778"\w* \w inscription|strong="G1924"\w*: ‘\w TO|strong="G2532"\w* \w AN|strong="G2532"\w* UNKNOWN \w GOD|strong="G2316"\w*.’ \w What|strong="G3739"\w* \w therefore|strong="G3767"\w* \w you|strong="G5210"\w* \w worship|strong="G2151"\w* \w in|strong="G1722"\w* ignorance, \w I|strong="G1473"\w* announce \w to|strong="G2532"\w* \w you|strong="G5210"\w*. +\v 24 \w The|strong="G1722"\w* \w God|strong="G2316"\w* \w who|strong="G3588"\w* \w made|strong="G4160"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w* \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w in|strong="G1722"\w* \w it|strong="G2532"\w*, \w he|strong="G2532"\w*, \w being|strong="G5225"\w* \w Lord|strong="G2962"\w* \w of|strong="G2316"\w* \w heaven|strong="G3772"\w* \w and|strong="G2532"\w* \w earth|strong="G1093"\w*, doesn’\w t|strong="G3588"\w* \w dwell|strong="G2730"\w* \w in|strong="G1722"\w* \w temples|strong="G3485"\w* \w made|strong="G4160"\w* \w with|strong="G1722"\w* \w hands|strong="G5499"\w*. +\v 25 \w He|strong="G2532"\w* isn’\w t|strong="G3588"\w* \w served|strong="G2323"\w* \w by|strong="G5259"\w* \w men|strong="G3956"\w*’s \w hands|strong="G5495"\w*, \w as|strong="G2532"\w* \w though|strong="G2532"\w* \w he|strong="G2532"\w* \w needed|strong="G4326"\w* \w anything|strong="G5100"\w*, seeing \w he|strong="G2532"\w* himself \w gives|strong="G1325"\w* \w to|strong="G2532"\w* \w all|strong="G3956"\w* \w life|strong="G2222"\w* \w and|strong="G2532"\w* \w breath|strong="G4157"\w* \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*. +\v 26 \w He|strong="G2532"\w* \w made|strong="G4160"\w* \w from|strong="G1537"\w* \w one|strong="G1520"\w* blood \w every|strong="G3956"\w* \w nation|strong="G1484"\w* \w of|strong="G1537"\w* \w men|strong="G3956"\w* \w to|strong="G2532"\w* \w dwell|strong="G2730"\w* \w on|strong="G1909"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* surface \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w having|strong="G2532"\w* \w determined|strong="G3724"\w* \w appointed|strong="G4160"\w* \w seasons|strong="G2540"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w boundaries|strong="G3734"\w* \w of|strong="G1537"\w* \w their|strong="G2532"\w* dwellings, +\v 27 \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w should|strong="G2316"\w* \w seek|strong="G2212"\w* \w the|strong="G2532"\w* \w Lord|strong="G3588"\w*, \w if|strong="G1487"\w* perhaps \w they|strong="G2532"\w* \w might|strong="G2532"\w* reach \w out|strong="G2532"\w* \w for|strong="G1520"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w find|strong="G2147"\w* \w him|strong="G3588"\w*, \w though|strong="G1487"\w* \w he|strong="G2532"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w far|strong="G3112"\w* \w from|strong="G2532"\w* \w each|strong="G1538"\w* \w one|strong="G1520"\w* \w of|strong="G2316"\w* \w us|strong="G2249"\w*. +\v 28 ‘\w For|strong="G1063"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w* \w we|strong="G1063"\w* \w live|strong="G2198"\w*, \w move|strong="G2795"\w*, \w and|strong="G2532"\w* \w have|strong="G2532"\w* \w our|strong="G2532"\w* \w being|strong="G1510"\w*.’ \w As|strong="G5613"\w* \w some|strong="G5100"\w* \w of|strong="G2532"\w* \w your|strong="G2532"\w* own \w poets|strong="G4163"\w* \w have|strong="G2532"\w* \w said|strong="G3004"\w*, ‘\w For|strong="G1063"\w* \w we|strong="G1063"\w* \w are|strong="G1510"\w* \w also|strong="G2532"\w* \w his|strong="G1722"\w* \w offspring|strong="G1085"\w*.’ +\v 29 \w Being|strong="G1510"\w* \w then|strong="G3767"\w* \w the|strong="G2532"\w* \w offspring|strong="G1085"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w we|strong="G2532"\w* \w ought|strong="G3784"\w* \w not|strong="G3756"\w* \w to|strong="G2532"\w* \w think|strong="G3543"\w* \w that|strong="G3588"\w* \w the|strong="G2532"\w* \w Divine|strong="G2304"\w* \w Nature|strong="G2304"\w* \w is|strong="G1510"\w* \w like|strong="G3664"\w* \w gold|strong="G5557"\w*, \w or|strong="G2228"\w* silver, \w or|strong="G2228"\w* \w stone|strong="G3037"\w*, engraved \w by|strong="G2532"\w* \w art|strong="G5078"\w* \w and|strong="G2532"\w* design \w of|strong="G2316"\w* \w man|strong="G3756"\w*. +\v 30 \w The|strong="G3956"\w* \w times|strong="G5550"\w* \w of|strong="G2316"\w* ignorance \w therefore|strong="G3767"\w* \w God|strong="G2316"\w* \w overlooked|strong="G5237"\w*. \w But|strong="G3767"\w* \w now|strong="G3568"\w* \w he|strong="G3588"\w* \w commands|strong="G3853"\w* \w that|strong="G3588"\w* \w all|strong="G3956"\w* \w people|strong="G3956"\w* \w everywhere|strong="G3837"\w* \w should|strong="G2316"\w* \w repent|strong="G3340"\w*, +\v 31 \w because|strong="G1537"\w* \w he|strong="G3739"\w* \w has|strong="G3739"\w* \w appointed|strong="G3724"\w* \w a|strong="G1722"\w* \w day|strong="G2250"\w* \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w he|strong="G3739"\w* \w will|strong="G3195"\w* \w judge|strong="G2919"\w* \w the|strong="G1722"\w* \w world|strong="G3625"\w* \w in|strong="G1722"\w* \w righteousness|strong="G1343"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w man|strong="G3956"\w* \w whom|strong="G3739"\w* \w he|strong="G3739"\w* \w has|strong="G3739"\w* \w ordained|strong="G3724"\w*; \w of|strong="G1537"\w* \w which|strong="G3739"\w* \w he|strong="G3739"\w* \w has|strong="G3739"\w* \w given|strong="G3930"\w* \w assurance|strong="G4102"\w* \w to|strong="G3195"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w*, \w in|strong="G1722"\w* \w that|strong="G3739"\w* \w he|strong="G3739"\w* \w has|strong="G3739"\w* \w raised|strong="G3498"\w* \w him|strong="G3588"\w* \w from|strong="G1537"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w*.” +\p +\v 32 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w they|strong="G2532"\w* heard \w of|strong="G4012"\w* \w the|strong="G2532"\w* resurrection \w of|strong="G4012"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*, \w some|strong="G3588"\w* \w mocked|strong="G5512"\w*; \w but|strong="G1161"\w* \w others|strong="G3588"\w* \w said|strong="G3004"\w*, “\w We|strong="G2532"\w* want \w to|strong="G2532"\w* hear \w you|strong="G4771"\w* \w again|strong="G3825"\w* \w concerning|strong="G4012"\w* \w this|strong="G3778"\w*.” +\p +\v 33 \w Thus|strong="G3779"\w* \w Paul|strong="G3972"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w from|strong="G1537"\w* \w among|strong="G1537"\w* \w them|strong="G3588"\w*. +\v 34 \w But|strong="G1161"\w* \w certain|strong="G5100"\w* \w men|strong="G5100"\w* \w joined|strong="G2853"\w* \w with|strong="G1722"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w believed|strong="G4100"\w*, \w including|strong="G4862"\w* \w Dionysius|strong="G1354"\w* \w the|strong="G1722"\w* Areopagite, \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w woman|strong="G1135"\w* \w named|strong="G3686"\w* \w Damaris|strong="G1152"\w*, \w and|strong="G2532"\w* \w others|strong="G2087"\w* \w with|strong="G1722"\w* \w them|strong="G3588"\w*. +\c 18 +\p +\v 1 \w After|strong="G3326"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w Paul|strong="G5563"\w* \w departed|strong="G5563"\w* \w from|strong="G1537"\w* Athens \w and|strong="G2064"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w Corinth|strong="G2882"\w*. +\v 2 \w He|strong="G2532"\w* \w found|strong="G2147"\w* \w a|strong="G2532"\w* \w certain|strong="G5100"\w* \w Jew|strong="G2453"\w* \w named|strong="G3686"\w* Aquila, \w a|strong="G2532"\w* \w man|strong="G5100"\w* \w of|strong="G1223"\w* \w Pontus|strong="G4193"\w* \w by|strong="G1223"\w* \w race|strong="G1085"\w*, \w who|strong="G3588"\w* \w had|strong="G2532"\w* \w recently|strong="G4373"\w* \w come|strong="G2064"\w* \w from|strong="G2064"\w* \w Italy|strong="G2482"\w* \w with|strong="G1223"\w* \w his|strong="G3956"\w* \w wife|strong="G1135"\w* \w Priscilla|strong="G4252"\w*, \w because|strong="G1223"\w* \w Claudius|strong="G2804"\w* \w had|strong="G2532"\w* \w commanded|strong="G1299"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w to|strong="G2532"\w* \w depart|strong="G5563"\w* \w from|strong="G2064"\w* \w Rome|strong="G4516"\w*. \w He|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, +\v 3 \w and|strong="G2532"\w* \w because|strong="G1223"\w* \w he|strong="G2532"\w* practiced \w the|strong="G2532"\w* \w same|strong="G2532"\w* \w trade|strong="G3673"\w*, \w he|strong="G2532"\w* \w lived|strong="G1510"\w* \w with|strong="G3844"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w worked|strong="G2038"\w*, \w for|strong="G1063"\w* \w by|strong="G1223"\w* \w trade|strong="G3673"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* tent makers. +\v 4 \w He|strong="G2532"\w* \w reasoned|strong="G1256"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w synagogue|strong="G4864"\w* \w every|strong="G3956"\w* \w Sabbath|strong="G4521"\w* \w and|strong="G2532"\w* \w persuaded|strong="G3982"\w* \w Jews|strong="G2453"\w* \w and|strong="G2532"\w* \w Greeks|strong="G1672"\w*. +\p +\v 5 \w When|strong="G1161"\w* \w Silas|strong="G4609"\w* \w and|strong="G2532"\w* \w Timothy|strong="G5095"\w* \w came|strong="G2718"\w* \w down|strong="G2718"\w* \w from|strong="G2532"\w* \w Macedonia|strong="G3109"\w*, \w Paul|strong="G3972"\w* \w was|strong="G1510"\w* compelled \w by|strong="G2532"\w* \w the|strong="G2532"\w* \w Spirit|strong="G3588"\w*, \w testifying|strong="G1263"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w that|strong="G3588"\w* \w Jesus|strong="G2424"\w* \w was|strong="G1510"\w* \w the|strong="G2532"\w* \w Christ|strong="G5547"\w*. +\v 6 \w When|strong="G1161"\w* \w they|strong="G2532"\w* opposed \w him|strong="G3588"\w* \w and|strong="G2532"\w* blasphemed, \w he|strong="G2532"\w* \w shook|strong="G1621"\w* \w out|strong="G2532"\w* \w his|strong="G1438"\w* \w clothing|strong="G2440"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, “\w Your|strong="G2532"\w* blood \w be|strong="G2532"\w* \w on|strong="G1909"\w* \w your|strong="G2532"\w* \w own|strong="G1438"\w* \w heads|strong="G2776"\w*! \w I|strong="G1473"\w* \w am|strong="G1473"\w* \w clean|strong="G2513"\w*. \w From|strong="G2532"\w* \w now|strong="G1161"\w* \w on|strong="G1909"\w*, \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w go|strong="G4198"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w*!” +\p +\v 7 \w He|strong="G2532"\w* \w departed|strong="G3327"\w* \w there|strong="G2532"\w* \w and|strong="G2532"\w* \w went|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w house|strong="G3614"\w* \w of|strong="G2316"\w* \w a|strong="G2532"\w* \w certain|strong="G5100"\w* \w man|strong="G5100"\w* \w named|strong="G3686"\w* \w Justus|strong="G2459"\w*, \w one|strong="G5100"\w* \w who|strong="G3739"\w* worshiped \w God|strong="G2316"\w*, \w whose|strong="G3739"\w* \w house|strong="G3614"\w* \w was|strong="G1510"\w* \w next|strong="G4927"\w* door \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w synagogue|strong="G4864"\w*. +\v 8 \w Crispus|strong="G2921"\w*, \w the|strong="G2532"\w* ruler \w of|strong="G2532"\w* \w the|strong="G2532"\w* synagogue, \w believed|strong="G4100"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w with|strong="G4862"\w* \w all|strong="G3650"\w* \w his|strong="G2532"\w* \w house|strong="G3624"\w*. \w Many|strong="G4183"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Corinthians|strong="G2881"\w*, \w when|strong="G1161"\w* \w they|strong="G2532"\w* heard, \w believed|strong="G4100"\w* \w and|strong="G2532"\w* \w were|strong="G3588"\w* baptized. +\v 9 \w The|strong="G1722"\w* \w Lord|strong="G2962"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w Paul|strong="G3972"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w night|strong="G3571"\w* \w by|strong="G1223"\w* \w a|strong="G2532"\w* \w vision|strong="G3705"\w*, \wj “Don’\+w t|strong="G3588"\+w* \+w be|strong="G2532"\+w* \+w afraid|strong="G5399"\+w*, \+w but|strong="G1161"\+w* \+w speak|strong="G2980"\+w* \+w and|strong="G2532"\+w* don’\+w t|strong="G3588"\+w* \+w be|strong="G2532"\+w* \+w silent|strong="G4623"\+w*; \wj* +\v 10 \wj \+w for|strong="G1722"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w you|strong="G4771"\+w*, \+w and|strong="G2532"\+w* \+w no|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w will|strong="G1510"\+w* \+w attack|strong="G2007"\+w* \+w you|strong="G4771"\+w* \+w to|strong="G2532"\+w* \+w harm|strong="G2559"\+w* \+w you|strong="G4771"\+w*, \+w for|strong="G1722"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w many|strong="G4183"\+w* \+w people|strong="G2992"\+w* \+w in|strong="G1722"\+w* \+w this|strong="G3778"\+w* \+w city|strong="G4172"\+w*.”\wj* +\p +\v 11 \w He|strong="G2532"\w* \w lived|strong="G2532"\w* \w there|strong="G2532"\w* \w a|strong="G2532"\w* \w year|strong="G1763"\w* \w and|strong="G2532"\w* \w six|strong="G1803"\w* \w months|strong="G3376"\w*, \w teaching|strong="G1321"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w* \w among|strong="G1722"\w* \w them|strong="G3588"\w*. +\v 12 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w Gallio|strong="G1058"\w* \w was|strong="G1510"\w* proconsul \w of|strong="G2532"\w* Achaia, \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w with|strong="G2532"\w* \w one|strong="G3588"\w* \w accord|strong="G3661"\w* \w rose|strong="G2532"\w* \w up|strong="G2532"\w* \w against|strong="G1909"\w* \w Paul|strong="G3972"\w* \w and|strong="G2532"\w* \w brought|strong="G1161"\w* \w him|strong="G3588"\w* \w before|strong="G1909"\w* \w the|strong="G2532"\w* judgment seat, +\v 13 \w saying|strong="G3004"\w*, “\w This|strong="G3778"\w* \w man|strong="G3778"\w* persuades \w men|strong="G3778"\w* \w to|strong="G3004"\w* \w worship|strong="G4576"\w* \w God|strong="G2316"\w* \w contrary|strong="G3844"\w* \w to|strong="G3004"\w* \w the|strong="G3588"\w* \w law|strong="G3551"\w*.” +\p +\v 14 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w Paul|strong="G3972"\w* \w was|strong="G1510"\w* \w about|strong="G3195"\w* \w to|strong="G4314"\w* open \w his|strong="G2596"\w* \w mouth|strong="G4750"\w*, \w Gallio|strong="G1058"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w the|strong="G1161"\w* \w Jews|strong="G2453"\w*, “\w If|strong="G1487"\w* \w indeed|strong="G3303"\w* \w it|strong="G1161"\w* \w were|strong="G1510"\w* \w a|strong="G1510"\w* \w matter|strong="G3056"\w* \w of|strong="G3056"\w* wrong \w or|strong="G2228"\w* \w of|strong="G3056"\w* \w wicked|strong="G4190"\w* \w crime|strong="G4467"\w*, \w you|strong="G5210"\w* \w Jews|strong="G2453"\w*, \w it|strong="G1161"\w* \w would|strong="G3195"\w* \w be|strong="G1510"\w* \w reasonable|strong="G3056"\w* \w that|strong="G3588"\w* \w I|strong="G1161"\w* \w should|strong="G3195"\w* bear \w with|strong="G4314"\w* \w you|strong="G5210"\w*; +\v 15 \w but|strong="G1161"\w* \w if|strong="G1487"\w* \w they|strong="G2532"\w* \w are|strong="G1510"\w* \w questions|strong="G2213"\w* \w about|strong="G4012"\w* \w words|strong="G3056"\w* \w and|strong="G2532"\w* \w names|strong="G3686"\w* \w and|strong="G2532"\w* \w your|strong="G2532"\w* own \w law|strong="G3551"\w*, \w look|strong="G3708"\w* \w to|strong="G2532"\w* \w it|strong="G2532"\w* \w yourselves|strong="G4771"\w*. \w For|strong="G4012"\w* \w I|strong="G1473"\w* don’\w t|strong="G3588"\w* \w want|strong="G1014"\w* \w to|strong="G2532"\w* \w be|strong="G1510"\w* \w a|strong="G2532"\w* \w judge|strong="G2923"\w* \w of|strong="G4012"\w* \w these|strong="G3778"\w* \w matters|strong="G3056"\w*.” +\v 16 \w So|strong="G2532"\w* \w he|strong="G2532"\w* drove \w them|strong="G3588"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* judgment seat. +\p +\v 17 \w Then|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* Greeks \w seized|strong="G1949"\w* \w Sosthenes|strong="G4988"\w*, \w the|strong="G2532"\w* ruler \w of|strong="G2532"\w* \w the|strong="G2532"\w* synagogue, \w and|strong="G2532"\w* \w beat|strong="G5180"\w* \w him|strong="G3588"\w* \w before|strong="G1715"\w* \w the|strong="G2532"\w* judgment seat. \w Gallio|strong="G1058"\w* didn’\w t|strong="G3588"\w* \w care|strong="G3199"\w* \w about|strong="G3199"\w* \w any|strong="G3956"\w* \w of|strong="G2532"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w*. +\p +\v 18 \w Paul|strong="G3972"\w*, \w having|strong="G2192"\w* stayed \w after|strong="G1161"\w* \w this|strong="G3588"\w* \w many|strong="G2425"\w* \w more|strong="G2089"\w* \w days|strong="G2250"\w*, \w took|strong="G2532"\w* \w his|strong="G1519"\w* leave \w of|strong="G2250"\w* \w the|strong="G1722"\w* brothers,\f + \fr 18:18 \ft The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.”\f* \w and|strong="G2532"\w* \w sailed|strong="G1602"\w* \w from|strong="G2532"\w* \w there|strong="G2532"\w* \w for|strong="G1063"\w* \w Syria|strong="G4947"\w*, \w together|strong="G4862"\w* \w with|strong="G1722"\w* \w Priscilla|strong="G4252"\w* \w and|strong="G2532"\w* Aquila. \w He|strong="G2532"\w* shaved \w his|strong="G1519"\w* \w head|strong="G2776"\w* \w in|strong="G1722"\w* Cenchreae, \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w had|strong="G2192"\w* \w a|strong="G2192"\w* \w vow|strong="G2171"\w*. +\v 19 \w He|strong="G1161"\w* \w came|strong="G1525"\w* \w to|strong="G1519"\w* \w Ephesus|strong="G2181"\w*, \w and|strong="G1161"\w* \w he|strong="G1161"\w* \w left|strong="G2641"\w* \w them|strong="G3588"\w* \w there|strong="G1161"\w*; \w but|strong="G1161"\w* \w he|strong="G1161"\w* \w himself|strong="G1519"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w synagogue|strong="G4864"\w* \w and|strong="G1161"\w* \w reasoned|strong="G1256"\w* \w with|strong="G1519"\w* \w the|strong="G1519"\w* \w Jews|strong="G2453"\w*. +\v 20 \w When|strong="G1161"\w* \w they|strong="G1161"\w* \w asked|strong="G2065"\w* \w him|strong="G2065"\w* \w to|strong="G1909"\w* \w stay|strong="G3306"\w* \w with|strong="G1909"\w* \w them|strong="G4183"\w* \w a|strong="G1909"\w* \w longer|strong="G1909"\w* \w time|strong="G5550"\w*, \w he|strong="G1161"\w* declined; +\v 21 \w but|strong="G2532"\w* taking \w his|strong="G2532"\w* leave \w of|strong="G2316"\w* \w them|strong="G3588"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w*, “\w I|strong="G2532"\w* \w must|strong="G3588"\w* \w by|strong="G4314"\w* \w all|strong="G2532"\w* \w means|strong="G3004"\w* keep \w this|strong="G3588"\w* \w coming|strong="G2316"\w* feast \w in|strong="G2532"\w* Jerusalem, \w but|strong="G2532"\w* \w I|strong="G2532"\w* \w will|strong="G2309"\w* return \w again|strong="G3825"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w* \w if|strong="G2532"\w* \w God|strong="G2316"\w* \w wills|strong="G2309"\w*.” \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w set|strong="G2532"\w* sail \w from|strong="G2532"\w* \w Ephesus|strong="G2181"\w*. +\p +\v 22 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w landed|strong="G2718"\w* \w at|strong="G1519"\w* \w Caesarea|strong="G2542"\w*, \w he|strong="G2532"\w* \w went|strong="G2597"\w* \w up|strong="G1519"\w* \w and|strong="G2532"\w* greeted \w the|strong="G2532"\w* \w assembly|strong="G1577"\w*, \w and|strong="G2532"\w* \w went|strong="G2597"\w* \w down|strong="G2597"\w* \w to|strong="G1519"\w* Antioch. +\v 23 \w Having|strong="G2532"\w* \w spent|strong="G4160"\w* \w some|strong="G5100"\w* \w time|strong="G5550"\w* \w there|strong="G2532"\w*, \w he|strong="G2532"\w* \w departed|strong="G1831"\w* \w and|strong="G2532"\w* \w went|strong="G1831"\w* \w through|strong="G1330"\w* \w the|strong="G2532"\w* \w region|strong="G5561"\w* \w of|strong="G2532"\w* \w Galatia|strong="G1054"\w* \w and|strong="G2532"\w* \w Phrygia|strong="G5435"\w*, \w in|strong="G2532"\w* \w order|strong="G2517"\w*, \w establishing|strong="G4160"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w*. +\v 24 \w Now|strong="G1161"\w* \w a|strong="G1519"\w* \w certain|strong="G5100"\w* \w Jew|strong="G2453"\w* \w named|strong="G3686"\w* Apollos, \w an|strong="G1519"\w* Alexandrian \w by|strong="G1722"\w* \w race|strong="G1085"\w*, \w an|strong="G1519"\w* \w eloquent|strong="G3052"\w* \w man|strong="G5100"\w*, \w came|strong="G2658"\w* \w to|strong="G1519"\w* \w Ephesus|strong="G2181"\w*. \w He|strong="G1161"\w* \w was|strong="G1510"\w* \w mighty|strong="G1415"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Scriptures|strong="G1124"\w*. +\v 25 \w This|strong="G3778"\w* \w man|strong="G3778"\w* \w had|strong="G2424"\w* \w been|strong="G1510"\w* \w instructed|strong="G2727"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w way|strong="G3598"\w* \w of|strong="G4012"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*; \w and|strong="G2532"\w* \w being|strong="G1510"\w* \w fervent|strong="G2204"\w* \w in|strong="G2532"\w* \w spirit|strong="G4151"\w*, \w he|strong="G2532"\w* \w spoke|strong="G2980"\w* \w and|strong="G2532"\w* \w taught|strong="G1321"\w* accurately \w the|strong="G2532"\w* \w things|strong="G3778"\w* \w concerning|strong="G4012"\w* \w Jesus|strong="G2424"\w*, \w although|strong="G2532"\w* \w he|strong="G2532"\w* knew \w only|strong="G3440"\w* \w the|strong="G2532"\w* baptism \w of|strong="G4012"\w* \w John|strong="G2491"\w*. +\v 26 \w He|strong="G2532"\w* \w began|strong="G1161"\w* \w to|strong="G2532"\w* \w speak|strong="G3955"\w* \w boldly|strong="G3955"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w synagogue|strong="G4864"\w*. \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w Priscilla|strong="G4252"\w* \w and|strong="G2532"\w* Aquila heard \w him|strong="G3588"\w*, \w they|strong="G2532"\w* \w took|strong="G4355"\w* \w him|strong="G3588"\w* \w aside|strong="G4355"\w*, \w and|strong="G2532"\w* \w explained|strong="G1620"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w the|strong="G1722"\w* \w way|strong="G3598"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w more|strong="G2532"\w* accurately. +\p +\v 27 \w When|strong="G1161"\w* \w he|strong="G1161"\w* \w had|strong="G3739"\w* determined \w to|strong="G1519"\w* \w pass|strong="G1330"\w* \w over|strong="G1330"\w* \w into|strong="G1519"\w* Achaia, \w the|strong="G1519"\w* brothers \w encouraged|strong="G4389"\w* \w him|strong="G3588"\w*; \w and|strong="G1161"\w* \w wrote|strong="G1125"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w disciples|strong="G3101"\w* \w to|strong="G1519"\w* receive \w him|strong="G3588"\w*. \w When|strong="G1161"\w* \w he|strong="G1161"\w* \w had|strong="G3739"\w* \w come|strong="G3854"\w*, \w he|strong="G1161"\w* \w greatly|strong="G4183"\w* \w helped|strong="G4820"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w had|strong="G3739"\w* \w believed|strong="G4100"\w* \w through|strong="G1223"\w* \w grace|strong="G5485"\w*; +\v 28 \w for|strong="G1063"\w* \w he|strong="G3588"\w* \w powerfully|strong="G2159"\w* \w refuted|strong="G1246"\w* \w the|strong="G1223"\w* \w Jews|strong="G2453"\w*, \w publicly|strong="G1219"\w* \w showing|strong="G1925"\w* \w by|strong="G1223"\w* \w the|strong="G1223"\w* \w Scriptures|strong="G1124"\w* \w that|strong="G3588"\w* \w Jesus|strong="G2424"\w* \w was|strong="G1510"\w* \w the|strong="G1223"\w* \w Christ|strong="G5547"\w*. +\c 19 +\p +\v 1 \w While|strong="G1722"\w* Apollos \w was|strong="G1510"\w* \w at|strong="G1722"\w* \w Corinth|strong="G2882"\w*, \w Paul|strong="G3972"\w*, \w having|strong="G2532"\w* \w passed|strong="G1330"\w* \w through|strong="G1722"\w* \w the|strong="G1722"\w* upper \w country|strong="G3313"\w*, \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w Ephesus|strong="G2181"\w* \w and|strong="G2532"\w* \w found|strong="G2147"\w* \w certain|strong="G5100"\w* \w disciples|strong="G3101"\w*. +\v 2 \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, “\w Did|strong="G4100"\w* \w you|strong="G1487"\w* \w receive|strong="G2983"\w* \w the|strong="G1161"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w when|strong="G1161"\w* \w you|strong="G1487"\w* \w believed|strong="G4100"\w*?” +\p \w They|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w No|strong="G3761"\w*, \w we|strong="G1161"\w* haven’\w t|strong="G3588"\w* \w even|strong="G3761"\w* heard \w that|strong="G3588"\w* \w there|strong="G1161"\w* \w is|strong="G1510"\w* \w a|strong="G2983"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*.” +\p +\v 3 \w He|strong="G1161"\w* \w said|strong="G3004"\w*, “\w Into|strong="G1519"\w* \w what|strong="G5101"\w* \w then|strong="G3767"\w* \w were|strong="G3588"\w* \w you|strong="G3004"\w* baptized?” +\p \w They|strong="G1161"\w* \w said|strong="G3004"\w*, “\w Into|strong="G1519"\w* \w John|strong="G2491"\w*’s baptism.” +\p +\v 4 \w Paul|strong="G3972"\w* \w said|strong="G3004"\w*, “\w John|strong="G2491"\w* \w indeed|strong="G1161"\w* baptized \w with|strong="G3326"\w* \w the|strong="G1519"\w* baptism \w of|strong="G2424"\w* \w repentance|strong="G3341"\w*, \w saying|strong="G3004"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w people|strong="G2992"\w* \w that|strong="G2443"\w* \w they|strong="G1161"\w* \w should|strong="G3588"\w* \w believe|strong="G4100"\w* \w in|strong="G1519"\w* \w the|strong="G1519"\w* \w one|strong="G3588"\w* \w who|strong="G3588"\w* \w would|strong="G2064"\w* \w come|strong="G2064"\w* \w after|strong="G3326"\w* \w him|strong="G3588"\w*, \w that|strong="G2443"\w* \w is|strong="G1510"\w*, \w in|strong="G1519"\w* Christ \w Jesus|strong="G2424"\w*.”\f + \fr 19:4 \ft NU omits Christ.\f* +\p +\v 5 \w When|strong="G1161"\w* \w they|strong="G1161"\w* heard \w this|strong="G3588"\w*, \w they|strong="G1161"\w* \w were|strong="G3588"\w* baptized \w in|strong="G1519"\w* \w the|strong="G1519"\w* \w name|strong="G3686"\w* \w of|strong="G3686"\w* \w the|strong="G1519"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*. +\v 6 \w When|strong="G2532"\w* \w Paul|strong="G3972"\w* \w had|strong="G2532"\w* \w laid|strong="G2007"\w* \w his|strong="G1438"\w* \w hands|strong="G5495"\w* \w on|strong="G1909"\w* \w them|strong="G3588"\w*, \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w came|strong="G2064"\w* \w on|strong="G1909"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w spoke|strong="G2980"\w* \w with|strong="G2532"\w* \w other|strong="G1438"\w* \w languages|strong="G1100"\w* \w and|strong="G2532"\w* \w prophesied|strong="G4395"\w*. +\v 7 \w They|strong="G1161"\w* \w were|strong="G1510"\w* \w about|strong="G5616"\w* \w twelve|strong="G1427"\w* \w men|strong="G3956"\w* \w in|strong="G3956"\w* \w all|strong="G3956"\w*. +\p +\v 8 \w He|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w synagogue|strong="G4864"\w* \w and|strong="G2532"\w* \w spoke|strong="G3955"\w* \w boldly|strong="G3955"\w* \w for|strong="G1519"\w* \w a|strong="G2532"\w* \w period|strong="G2532"\w* \w of|strong="G4012"\w* \w three|strong="G5140"\w* \w months|strong="G3376"\w*, \w reasoning|strong="G1256"\w* \w and|strong="G2532"\w* \w persuading|strong="G3982"\w* \w about|strong="G4012"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w concerning|strong="G4012"\w* \w God|strong="G2316"\w*’s Kingdom. +\p +\v 9 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w some|strong="G5100"\w* \w were|strong="G3588"\w* \w hardened|strong="G4645"\w* \w and|strong="G2532"\w* disobedient, \w speaking|strong="G2551"\w* \w evil|strong="G2551"\w* \w of|strong="G2250"\w* \w the|strong="G1722"\w* \w Way|strong="G3598"\w* \w before|strong="G1799"\w* \w the|strong="G1722"\w* \w multitude|strong="G4128"\w*, \w he|strong="G2532"\w* departed \w from|strong="G2532"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* separated \w the|strong="G1722"\w* \w disciples|strong="G3101"\w*, \w reasoning|strong="G1256"\w* \w daily|strong="G2250"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w school|strong="G4981"\w* \w of|strong="G2250"\w* \w Tyrannus|strong="G5181"\w*. +\v 10 \w This|strong="G3778"\w* \w continued|strong="G1096"\w* \w for|strong="G1909"\w* \w two|strong="G1417"\w* \w years|strong="G2094"\w*, \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w all|strong="G3956"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w lived|strong="G2730"\w* \w in|strong="G1909"\w* \w Asia|strong="G3588"\w* heard \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2532"\w*, \w both|strong="G2532"\w* \w Jews|strong="G2453"\w* \w and|strong="G2532"\w* \w Greeks|strong="G1672"\w*. +\p +\v 11 \w God|strong="G2316"\w* \w worked|strong="G4160"\w* \w special|strong="G5177"\w* \w miracles|strong="G1411"\w* \w by|strong="G1223"\w* \w the|strong="G1223"\w* \w hands|strong="G5495"\w* \w of|strong="G1223"\w* \w Paul|strong="G3972"\w*, +\v 12 \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w even|strong="G2532"\w* \w handkerchiefs|strong="G4676"\w* \w or|strong="G2228"\w* \w aprons|strong="G4612"\w* \w were|strong="G3588"\w* \w carried|strong="G2532"\w* away \w from|strong="G2532"\w* \w his|strong="G1909"\w* \w body|strong="G5559"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* sick, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w diseases|strong="G3554"\w* \w departed|strong="G1607"\w* \w from|strong="G2532"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w evil|strong="G4190"\w* \w spirits|strong="G4151"\w* \w went|strong="G2532"\w* \w out|strong="G1607"\w*. +\v 13 \w But|strong="G1161"\w* \w some|strong="G5100"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w itinerant|strong="G4022"\w* \w Jews|strong="G2453"\w*, \w exorcists|strong="G1845"\w*, \w took|strong="G2532"\w* \w on|strong="G1909"\w* themselves \w to|strong="G2532"\w* invoke \w over|strong="G1909"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w had|strong="G2192"\w* \w the|strong="G2532"\w* \w evil|strong="G4190"\w* \w spirits|strong="G4151"\w* \w the|strong="G2532"\w* \w name|strong="G3686"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*, \w saying|strong="G3004"\w*, “\w We|strong="G3739"\w* \w adjure|strong="G3726"\w* \w you|strong="G5210"\w* \w by|strong="G1909"\w* \w Jesus|strong="G2424"\w* \w whom|strong="G3739"\w* \w Paul|strong="G3972"\w* \w preaches|strong="G2784"\w*.” +\v 14 \w There|strong="G1161"\w* \w were|strong="G1510"\w* \w seven|strong="G2033"\w* \w sons|strong="G5207"\w* \w of|strong="G5207"\w* \w one|strong="G5100"\w* \w Sceva|strong="G4630"\w*, \w a|strong="G1510"\w* \w Jewish|strong="G2453"\w* chief priest, \w who|strong="G2453"\w* \w did|strong="G4160"\w* \w this|strong="G3778"\w*. +\p +\v 15 \w The|strong="G2532"\w* \w evil|strong="G4190"\w* \w spirit|strong="G4151"\w* \w answered|strong="G3004"\w*, “\w Jesus|strong="G2424"\w* \w I|strong="G2532"\w* \w know|strong="G1097"\w*, \w and|strong="G2532"\w* \w Paul|strong="G3972"\w* \w I|strong="G2532"\w* \w know|strong="G1097"\w*, \w but|strong="G1161"\w* \w who|strong="G5101"\w* \w are|strong="G1510"\w* \w you|strong="G5210"\w*?” +\v 16 \w The|strong="G1722"\w* \w man|strong="G3739"\w* \w in|strong="G1722"\w* \w whom|strong="G3739"\w* \w the|strong="G1722"\w* \w evil|strong="G4190"\w* \w spirit|strong="G4151"\w* \w was|strong="G1510"\w* \w leaped|strong="G2177"\w* \w on|strong="G1909"\w* \w them|strong="G3588"\w*, \w overpowered|strong="G2480"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w prevailed|strong="G2480"\w* \w against|strong="G2596"\w* \w them|strong="G3588"\w*, \w so|strong="G2532"\w* \w that|strong="G3739"\w* \w they|strong="G2532"\w* \w fled|strong="G1628"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w that|strong="G3739"\w* \w house|strong="G3624"\w* \w naked|strong="G1131"\w* \w and|strong="G2532"\w* \w wounded|strong="G5135"\w*. +\v 17 \w This|strong="G3778"\w* \w became|strong="G1096"\w* \w known|strong="G1110"\w* \w to|strong="G2532"\w* \w all|strong="G3956"\w*, \w both|strong="G2532"\w* \w Jews|strong="G2453"\w* \w and|strong="G2532"\w* \w Greeks|strong="G1672"\w*, \w who|strong="G3588"\w* \w lived|strong="G2730"\w* \w at|strong="G1909"\w* \w Ephesus|strong="G2181"\w*. \w Fear|strong="G5401"\w* \w fell|strong="G1968"\w* \w on|strong="G1909"\w* \w them|strong="G3588"\w* \w all|strong="G3956"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w name|strong="G3686"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w was|strong="G1096"\w* \w magnified|strong="G3170"\w*. +\v 18 \w Many|strong="G4183"\w* \w also|strong="G2532"\w* \w of|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w had|strong="G2532"\w* \w believed|strong="G4100"\w* \w came|strong="G2064"\w*, \w confessing|strong="G1843"\w* \w and|strong="G2532"\w* declaring \w their|strong="G2532"\w* \w deeds|strong="G4234"\w*. +\v 19 \w Many|strong="G2425"\w* \w of|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w practiced|strong="G4238"\w* magical \w arts|strong="G4021"\w* \w brought|strong="G1161"\w* \w their|strong="G2532"\w* books \w together|strong="G4851"\w* \w and|strong="G2532"\w* \w burned|strong="G2618"\w* \w them|strong="G3588"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w sight|strong="G1799"\w* \w of|strong="G2532"\w* \w all|strong="G3956"\w*. \w They|strong="G2532"\w* \w counted|strong="G4860"\w* \w their|strong="G2532"\w* \w price|strong="G5092"\w*, \w and|strong="G2532"\w* \w found|strong="G2147"\w* \w it|strong="G2532"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w fifty|strong="G3461"\w* \w thousand|strong="G3461"\w* pieces \w of|strong="G2532"\w* silver.\f + \fr 19:19 \ft The 50,000 pieces of silver here probably referred to 50,000 drachmas. If so, the value of the burned books was equivalent to about 160 man-years of wages for agricultural laborers\f* +\v 20 \w So|strong="G3779"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w was|strong="G3588"\w* growing \w and|strong="G2532"\w* becoming \w mighty|strong="G2532"\w*. +\p +\v 21 \w Now|strong="G1161"\w* \w after|strong="G3326"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w had|strong="G2532"\w* \w ended|strong="G4137"\w*, \w Paul|strong="G3972"\w* determined \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w*, \w when|strong="G1161"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w passed|strong="G1330"\w* \w through|strong="G1722"\w* \w Macedonia|strong="G3109"\w* \w and|strong="G2532"\w* Achaia, \w to|strong="G1519"\w* \w go|strong="G4198"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w*, \w saying|strong="G3004"\w*, “\w After|strong="G3326"\w* \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w been|strong="G1096"\w* \w there|strong="G1563"\w*, \w I|strong="G1473"\w* \w must|strong="G1163"\w* \w also|strong="G2532"\w* \w see|strong="G3708"\w* \w Rome|strong="G4516"\w*.” +\p +\v 22 \w Having|strong="G2532"\w* \w sent|strong="G2532"\w* \w into|strong="G1519"\w* \w Macedonia|strong="G3109"\w* \w two|strong="G1417"\w* \w of|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w served|strong="G1247"\w* \w him|strong="G3588"\w*, \w Timothy|strong="G5095"\w* \w and|strong="G2532"\w* \w Erastus|strong="G2037"\w*, \w he|strong="G2532"\w* \w himself|strong="G1519"\w* \w stayed|strong="G1907"\w* \w in|strong="G1519"\w* \w Asia|strong="G3588"\w* \w for|strong="G1519"\w* \w a|strong="G2532"\w* \w while|strong="G5550"\w*. +\v 23 \w About|strong="G4012"\w* \w that|strong="G3588"\w* \w time|strong="G2540"\w* \w there|strong="G1161"\w* \w arose|strong="G1096"\w* \w no|strong="G3756"\w* \w small|strong="G3641"\w* \w disturbance|strong="G5017"\w* \w concerning|strong="G4012"\w* \w the|strong="G1161"\w* \w Way|strong="G3598"\w*. +\v 24 \w For|strong="G1063"\w* \w a|strong="G4160"\w* \w certain|strong="G5100"\w* \w man|strong="G5100"\w* \w named|strong="G3686"\w* \w Demetrius|strong="G1216"\w*, \w a|strong="G4160"\w* silversmith \w who|strong="G3588"\w* \w made|strong="G4160"\w* silver \w shrines|strong="G3485"\w* \w of|strong="G3686"\w* Artemis, \w brought|strong="G3930"\w* \w no|strong="G3756"\w* \w little|strong="G3641"\w* \w business|strong="G2039"\w* \w to|strong="G3756"\w* \w the|strong="G3588"\w* \w craftsmen|strong="G5079"\w*, +\v 25 \w whom|strong="G3739"\w* \w he|strong="G2532"\w* \w gathered|strong="G4867"\w* \w together|strong="G4867"\w* \w with|strong="G1537"\w* \w the|strong="G2532"\w* \w workmen|strong="G2040"\w* \w of|strong="G1537"\w* \w like|strong="G5108"\w* \w occupation|strong="G5108"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “Sirs, \w you|strong="G3739"\w* \w know|strong="G1987"\w* \w that|strong="G3754"\w* \w by|strong="G1537"\w* \w this|strong="G3778"\w* \w business|strong="G2039"\w* \w we|strong="G2249"\w* \w have|strong="G2532"\w* \w our|strong="G2532"\w* \w wealth|strong="G2142"\w*. +\v 26 \w You|strong="G3754"\w* \w see|strong="G2334"\w* \w and|strong="G2532"\w* hear \w that|strong="G3754"\w* \w not|strong="G3756"\w* \w at|strong="G3756"\w* \w Ephesus|strong="G2181"\w* \w alone|strong="G3441"\w*, \w but|strong="G2532"\w* \w almost|strong="G4975"\w* \w throughout|strong="G1223"\w* \w all|strong="G3956"\w* \w Asia|strong="G3588"\w*, \w this|strong="G3778"\w* \w Paul|strong="G3972"\w* \w has|strong="G2316"\w* \w persuaded|strong="G3982"\w* \w and|strong="G2532"\w* \w turned|strong="G3179"\w* \w away|strong="G3179"\w* \w many|strong="G2425"\w* \w people|strong="G3793"\w*, \w saying|strong="G3004"\w* \w that|strong="G3754"\w* \w they|strong="G2532"\w* \w are|strong="G1510"\w* \w no|strong="G3756"\w* \w gods|strong="G2316"\w* \w that|strong="G3754"\w* \w are|strong="G1510"\w* \w made|strong="G1096"\w* \w with|strong="G1223"\w* \w hands|strong="G5495"\w*. +\v 27 \w Not|strong="G3756"\w* \w only|strong="G3440"\w* \w is|strong="G3588"\w* \w there|strong="G2532"\w* \w danger|strong="G2793"\w* \w that|strong="G3739"\w* \w this|strong="G3778"\w* \w our|strong="G2532"\w* \w trade|strong="G3313"\w* \w come|strong="G2064"\w* \w into|strong="G1519"\w* disrepute, \w but|strong="G1161"\w* \w also|strong="G2532"\w* \w that|strong="G3739"\w* \w the|strong="G2532"\w* \w temple|strong="G2411"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w great|strong="G3173"\w* \w goddess|strong="G2299"\w* Artemis \w will|strong="G3195"\w* \w be|strong="G2532"\w* \w counted|strong="G3049"\w* \w as|strong="G1519"\w* \w nothing|strong="G3762"\w* \w and|strong="G2532"\w* \w her|strong="G1519"\w* \w majesty|strong="G3168"\w* \w destroyed|strong="G2507"\w*, \w whom|strong="G3739"\w* \w all|strong="G3650"\w* \w Asia|strong="G3588"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w world|strong="G3625"\w* worships.” +\p +\v 28 \w When|strong="G1161"\w* \w they|strong="G2532"\w* heard \w this|strong="G3588"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w filled|strong="G4134"\w* \w with|strong="G2532"\w* \w anger|strong="G2372"\w*, \w and|strong="G2532"\w* \w cried|strong="G2896"\w* \w out|strong="G2896"\w*, \w saying|strong="G3004"\w*, “\w Great|strong="G3173"\w* \w is|strong="G3588"\w* Artemis \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Ephesians|strong="G2180"\w*!” +\v 29 \w The|strong="G2532"\w* whole \w city|strong="G4172"\w* \w was|strong="G3588"\w* \w filled|strong="G4130"\w* \w with|strong="G2532"\w* \w confusion|strong="G4799"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w rushed|strong="G3729"\w* \w with|strong="G2532"\w* \w one|strong="G3588"\w* \w accord|strong="G3661"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w theater|strong="G2302"\w*, \w having|strong="G2532"\w* \w seized|strong="G4884"\w* \w Gaius|strong="G1050"\w* \w and|strong="G2532"\w* Aristarchus, \w men|strong="G3588"\w* \w of|strong="G2532"\w* \w Macedonia|strong="G3110"\w*, \w Paul|strong="G3972"\w*’s \w companions|strong="G3588"\w* \w in|strong="G1519"\w* \w travel|strong="G4898"\w*. +\v 30 \w When|strong="G1161"\w* \w Paul|strong="G3972"\w* \w wanted|strong="G1014"\w* \w to|strong="G1519"\w* \w enter|strong="G1525"\w* \w in|strong="G1519"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w people|strong="G1218"\w*, \w the|strong="G1519"\w* \w disciples|strong="G3101"\w* didn’\w t|strong="G3588"\w* \w allow|strong="G1439"\w* \w him|strong="G3588"\w*. +\v 31 \w Certain|strong="G5100"\w* \w also|strong="G2532"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* Asiarchs, \w being|strong="G1510"\w* \w his|strong="G1438"\w* \w friends|strong="G5384"\w*, \w sent|strong="G3992"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w begged|strong="G3870"\w* \w him|strong="G3588"\w* \w not|strong="G3361"\w* \w to|strong="G1519"\w* \w venture|strong="G1325"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w theater|strong="G2302"\w*. +\v 32 \w Some|strong="G5100"\w* \w therefore|strong="G3767"\w* \w cried|strong="G2896"\w* \w one|strong="G5100"\w* \w thing|strong="G5100"\w*, \w and|strong="G2532"\w* \w some|strong="G5100"\w* \w another|strong="G5100"\w*, \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w assembly|strong="G1577"\w* \w was|strong="G1510"\w* \w in|strong="G2532"\w* \w confusion|strong="G4797"\w*. \w Most|strong="G4183"\w* \w of|strong="G2532"\w* \w them|strong="G3588"\w* didn’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w why|strong="G5101"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w come|strong="G4905"\w* \w together|strong="G4905"\w*. +\v 33 \w They|strong="G1161"\w* \w brought|strong="G1161"\w* Alexander \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w multitude|strong="G3793"\w*, \w the|strong="G1537"\w* \w Jews|strong="G2453"\w* \w putting|strong="G4261"\w* \w him|strong="G3588"\w* \w forward|strong="G4261"\w*. Alexander \w beckoned|strong="G2678"\w* \w with|strong="G1537"\w* \w his|strong="G3588"\w* \w hand|strong="G5495"\w*, \w and|strong="G1161"\w* \w would|strong="G2309"\w* \w have|strong="G2309"\w* \w made|strong="G1161"\w* \w a|strong="G3793"\w* defense \w to|strong="G2309"\w* \w the|strong="G1537"\w* \w people|strong="G3793"\w*. +\v 34 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w they|strong="G1161"\w* \w perceived|strong="G1921"\w* \w that|strong="G3754"\w* \w he|strong="G1161"\w* \w was|strong="G1510"\w* \w a|strong="G1096"\w* \w Jew|strong="G2453"\w*, \w all|strong="G3956"\w* \w with|strong="G1537"\w* \w one|strong="G1520"\w* \w voice|strong="G5456"\w* \w for|strong="G3754"\w* \w a|strong="G1096"\w* \w time|strong="G5610"\w* \w of|strong="G1537"\w* \w about|strong="G5613"\w* \w two|strong="G1417"\w* \w hours|strong="G5610"\w* \w cried|strong="G2896"\w* \w out|strong="G1537"\w*, “\w Great|strong="G3173"\w* \w is|strong="G1510"\w* Artemis \w of|strong="G1537"\w* \w the|strong="G3956"\w* \w Ephesians|strong="G2180"\w*!” +\p +\v 35 \w When|strong="G1161"\w* \w the|strong="G2532"\w* \w town|strong="G4172"\w* \w clerk|strong="G1122"\w* \w had|strong="G2532"\w* \w quieted|strong="G2687"\w* \w the|strong="G2532"\w* \w multitude|strong="G3793"\w*, \w he|strong="G2532"\w* \w said|strong="G5346"\w*, “\w You|strong="G3739"\w* \w men|strong="G3588"\w* \w of|strong="G2532"\w* \w Ephesus|strong="G2180"\w*, \w what|strong="G5101"\w* \w man|strong="G3739"\w* \w is|strong="G1510"\w* \w there|strong="G2532"\w* \w who|strong="G3739"\w* doesn’\w t|strong="G3588"\w* \w know|strong="G1097"\w* \w that|strong="G3739"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Ephesians|strong="G2180"\w* \w is|strong="G1510"\w* \w temple|strong="G3511"\w* keeper \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w great|strong="G3173"\w* goddess Artemis, \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* image \w which|strong="G3739"\w* \w fell|strong="G2532"\w* \w down|strong="G1356"\w* \w from|strong="G2532"\w* Zeus? +\v 36 Seeing \w then|strong="G3767"\w* \w that|strong="G2532"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* can’t \w be|strong="G1510"\w* denied, \w you|strong="G5210"\w* \w ought|strong="G1163"\w* \w to|strong="G2532"\w* \w be|strong="G1510"\w* \w quiet|strong="G2687"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w do|strong="G4238"\w* \w nothing|strong="G3367"\w* \w rash|strong="G4312"\w*. +\v 37 \w For|strong="G1063"\w* \w you|strong="G3778"\w* \w have|strong="G1473"\w* brought \w these|strong="G3778"\w* \w men|strong="G3778"\w* \w here|strong="G3778"\w*, \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w neither|strong="G3777"\w* \w robbers|strong="G2417"\w* \w of|strong="G2316"\w* \w temples|strong="G2417"\w* \w nor|strong="G3777"\w* blasphemers \w of|strong="G2316"\w* \w your|strong="G3588"\w* \w goddess|strong="G2316"\w*. +\v 38 \w If|strong="G1487"\w* \w therefore|strong="G3767"\w* \w Demetrius|strong="G1216"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w craftsmen|strong="G5079"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w with|strong="G4862"\w* \w him|strong="G3588"\w* \w have|strong="G2192"\w* \w a|strong="G2192"\w* \w matter|strong="G3056"\w* \w against|strong="G4314"\w* \w anyone|strong="G5100"\w*, \w the|strong="G2532"\w* courts \w are|strong="G1510"\w* open \w and|strong="G2532"\w* \w there|strong="G2532"\w* \w are|strong="G1510"\w* proconsuls. \w Let|strong="G1510"\w* \w them|strong="G3588"\w* press \w charges|strong="G1458"\w* \w against|strong="G4314"\w* \w one|strong="G5100"\w* \w another|strong="G5100"\w*. +\v 39 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w you|strong="G1487"\w* \w seek|strong="G1934"\w* \w anything|strong="G5100"\w* \w about|strong="G4012"\w* \w other|strong="G2087"\w* \w matters|strong="G2087"\w*, \w it|strong="G1161"\w* \w will|strong="G5100"\w* \w be|strong="G3588"\w* \w settled|strong="G1956"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* regular \w assembly|strong="G1577"\w*. +\v 40 \w For|strong="G1063"\w* \w indeed|strong="G2532"\w* \w we|strong="G3739"\w* \w are|strong="G3588"\w* \w in|strong="G2532"\w* \w danger|strong="G2793"\w* \w of|strong="G4012"\w* \w being|strong="G5225"\w* \w accused|strong="G1458"\w* \w concerning|strong="G4012"\w* \w today|strong="G4594"\w*’s \w riot|strong="G4714"\w*, \w there|strong="G2532"\w* \w being|strong="G5225"\w* \w no|strong="G3756"\w* \w cause|strong="G3739"\w*. \w Concerning|strong="G4012"\w* \w it|strong="G2532"\w*, \w we|strong="G3739"\w* wouldn’\w t|strong="G3588"\w* \w be|strong="G2532"\w* \w able|strong="G1410"\w* \w to|strong="G2532"\w* \w give|strong="G3004"\w* \w an|strong="G2532"\w* \w account|strong="G3056"\w* \w of|strong="G4012"\w* \w this|strong="G3778"\w* commotion.” +\v 41 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w thus|strong="G2532"\w* \w spoken|strong="G3004"\w*, \w he|strong="G2532"\w* dismissed \w the|strong="G2532"\w* \w assembly|strong="G1577"\w*. +\c 20 +\p +\v 1 \w After|strong="G3326"\w* \w the|strong="G2532"\w* \w uproar|strong="G2351"\w* \w had|strong="G2532"\w* \w ceased|strong="G3973"\w*, \w Paul|strong="G3972"\w* \w sent|strong="G3343"\w* \w for|strong="G1519"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w*, \w took|strong="G2532"\w* \w leave|strong="G1831"\w* \w of|strong="G2532"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w departed|strong="G1831"\w* \w to|strong="G1519"\w* \w go|strong="G4198"\w* \w into|strong="G1519"\w* \w Macedonia|strong="G3109"\w*. +\v 2 \w When|strong="G1161"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w gone|strong="G1330"\w* \w through|strong="G1330"\w* \w those|strong="G3588"\w* \w parts|strong="G3313"\w* \w and|strong="G2532"\w* \w had|strong="G2532"\w* \w encouraged|strong="G3870"\w* \w them|strong="G3588"\w* \w with|strong="G2532"\w* \w many|strong="G4183"\w* \w words|strong="G3056"\w*, \w he|strong="G2532"\w* \w came|strong="G2064"\w* \w into|strong="G1519"\w* \w Greece|strong="G1671"\w*. +\v 3 \w When|strong="G1096"\w* \w he|strong="G3588"\w* \w had|strong="G3588"\w* \w spent|strong="G4160"\w* \w three|strong="G5140"\w* \w months|strong="G3376"\w* \w there|strong="G1096"\w*, \w and|strong="G5037"\w* \w a|strong="G1096"\w* \w plot|strong="G1917"\w* \w was|strong="G1096"\w* \w made|strong="G4160"\w* \w against|strong="G1519"\w* \w him|strong="G3588"\w* \w by|strong="G1223"\w* \w Jews|strong="G2453"\w* \w as|strong="G1519"\w* \w he|strong="G3588"\w* \w was|strong="G1096"\w* \w about|strong="G3195"\w* \w to|strong="G1519"\w* \w set|strong="G5037"\w* sail \w for|strong="G1519"\w* \w Syria|strong="G4947"\w*, \w he|strong="G3588"\w* determined \w to|strong="G1519"\w* \w return|strong="G5290"\w* \w through|strong="G1223"\w* \w Macedonia|strong="G3109"\w*. +\v 4 \w These|strong="G1161"\w* \w accompanied|strong="G4902"\w* \w him|strong="G2532"\w* \w as|strong="G1161"\w* far \w as|strong="G1161"\w* Asia: \w Sopater|strong="G4986"\w* \w of|strong="G2532"\w* Beroea, Aristarchus \w and|strong="G2532"\w* \w Secundus|strong="G4580"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Thessalonians|strong="G2331"\w*, \w Gaius|strong="G1050"\w* \w of|strong="G2532"\w* \w Derbe|strong="G1190"\w*, \w Timothy|strong="G5095"\w*, \w and|strong="G2532"\w* \w Tychicus|strong="G5190"\w* \w and|strong="G2532"\w* \w Trophimus|strong="G5161"\w* \w of|strong="G2532"\w* Asia. +\v 5 \w But|strong="G1161"\w* \w these|strong="G3778"\w* \w had|strong="G3778"\w* \w gone|strong="G4281"\w* \w ahead|strong="G4281"\w*, \w and|strong="G1161"\w* \w were|strong="G3778"\w* \w waiting|strong="G3306"\w* \w for|strong="G1161"\w* \w us|strong="G2249"\w* \w at|strong="G1722"\w* \w Troas|strong="G5174"\w*. +\v 6 \w We|strong="G2249"\w* \w sailed|strong="G1602"\w* \w away|strong="G1602"\w* \w from|strong="G2064"\w* \w Philippi|strong="G5375"\w* \w after|strong="G3326"\w* \w the|strong="G2532"\w* \w days|strong="G2250"\w* \w of|strong="G2250"\w* Unleavened Bread, \w and|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w* \w at|strong="G1519"\w* \w Troas|strong="G5174"\w* \w in|strong="G1519"\w* \w five|strong="G4002"\w* \w days|strong="G2250"\w*, \w where|strong="G3699"\w* \w we|strong="G2249"\w* \w stayed|strong="G1304"\w* \w seven|strong="G2033"\w* \w days|strong="G2250"\w*. +\p +\v 7 \w On|strong="G1722"\w* \w the|strong="G1722"\w* \w first|strong="G1520"\w* \w day|strong="G1887"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w week|strong="G4521"\w*, \w when|strong="G1161"\w* \w the|strong="G1722"\w* \w disciples|strong="G3588"\w* \w were|strong="G3588"\w* \w gathered|strong="G4863"\w* \w together|strong="G4863"\w* \w to|strong="G3195"\w* \w break|strong="G2806"\w* bread, \w Paul|strong="G3972"\w* talked \w with|strong="G1722"\w* \w them|strong="G3588"\w*, \w intending|strong="G3195"\w* \w to|strong="G3195"\w* \w depart|strong="G1826"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w next|strong="G1887"\w* \w day|strong="G1887"\w*; \w and|strong="G1161"\w* \w continued|strong="G3905"\w* \w his|strong="G1722"\w* \w speech|strong="G3056"\w* \w until|strong="G3360"\w* \w midnight|strong="G3317"\w*. +\v 8 \w There|strong="G1161"\w* \w were|strong="G1510"\w* \w many|strong="G2425"\w* \w lights|strong="G2985"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w upper|strong="G5253"\w* \w room|strong="G5253"\w* \w where|strong="G3757"\w* \w we|strong="G1161"\w*\f + \fr 20:8 \ft TR reads “they” instead of “we”\f* \w were|strong="G1510"\w* \w gathered|strong="G4863"\w* \w together|strong="G4863"\w*. +\v 9 \w A|strong="G2532"\w* \w certain|strong="G5100"\w* \w young|strong="G3494"\w* \w man|strong="G5100"\w* \w named|strong="G3686"\w* \w Eutychus|strong="G2161"\w* \w sat|strong="G2516"\w* \w in|strong="G1909"\w* \w the|strong="G2532"\w* \w window|strong="G2376"\w*, weighed \w down|strong="G4098"\w* \w with|strong="G2532"\w* \w deep|strong="G4183"\w* \w sleep|strong="G5258"\w*. \w As|strong="G1161"\w* \w Paul|strong="G3972"\w* spoke still \w longer|strong="G1909"\w*, \w being|strong="G2532"\w* weighed \w down|strong="G4098"\w* \w by|strong="G1909"\w* \w his|strong="G1909"\w* \w sleep|strong="G5258"\w*, \w he|strong="G2532"\w* \w fell|strong="G4098"\w* \w down|strong="G4098"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w third|strong="G5152"\w* \w floor|strong="G5152"\w* \w and|strong="G2532"\w* \w was|strong="G3588"\w* taken \w up|strong="G2532"\w* \w dead|strong="G3498"\w*. +\v 10 \w Paul|strong="G3972"\w* \w went|strong="G2597"\w* \w down|strong="G2597"\w* \w and|strong="G2532"\w* \w fell|strong="G1968"\w* \w upon|strong="G1968"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w embracing|strong="G4843"\w* \w him|strong="G3588"\w* \w said|strong="G3004"\w*, “Don’\w t|strong="G3588"\w* \w be|strong="G1510"\w* \w troubled|strong="G2350"\w*, \w for|strong="G1063"\w* \w his|strong="G1722"\w* \w life|strong="G5590"\w* \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*.” +\p +\v 11 \w When|strong="G1161"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w gone|strong="G1831"\w* \w up|strong="G2532"\w*, \w had|strong="G2532"\w* \w broken|strong="G2806"\w* bread \w and|strong="G2532"\w* \w eaten|strong="G1089"\w*, \w and|strong="G2532"\w* \w had|strong="G2532"\w* \w talked|strong="G3656"\w* \w with|strong="G2532"\w* \w them|strong="G3588"\w* \w a|strong="G2532"\w* \w long|strong="G2425"\w* \w while|strong="G1161"\w*, \w even|strong="G2532"\w* \w until|strong="G2532"\w* \w break|strong="G2806"\w* \w of|strong="G2532"\w* \w day|strong="G3588"\w*, \w he|strong="G2532"\w* \w departed|strong="G1831"\w*. +\v 12 \w They|strong="G2532"\w* \w brought|strong="G1161"\w* \w the|strong="G2532"\w* \w boy|strong="G3816"\w* \w in|strong="G2532"\w* \w alive|strong="G2198"\w*, \w and|strong="G2532"\w* \w were|strong="G3588"\w* \w greatly|strong="G3756"\w* \w comforted|strong="G3870"\w*. +\p +\v 13 \w But|strong="G1161"\w* \w we|strong="G2249"\w*, \w going|strong="G3195"\w* \w ahead|strong="G4281"\w* \w to|strong="G1909"\w* \w the|strong="G1161"\w* \w ship|strong="G4143"\w*, set sail \w for|strong="G1063"\w* Assos, \w intending|strong="G3195"\w* \w to|strong="G1909"\w* \w take|strong="G1161"\w* \w Paul|strong="G3972"\w* aboard \w there|strong="G1161"\w*; \w for|strong="G1063"\w* \w he|strong="G1161"\w* \w had|strong="G3972"\w* \w so|strong="G3779"\w* \w arranged|strong="G1299"\w*, \w intending|strong="G3195"\w* himself \w to|strong="G1909"\w* \w go|strong="G4281"\w* \w by|strong="G1909"\w* \w land|strong="G3978"\w*. +\v 14 \w When|strong="G1161"\w* \w he|strong="G1161"\w* \w met|strong="G4820"\w* \w us|strong="G1519"\w* \w at|strong="G1519"\w* Assos, \w we|strong="G2249"\w* \w took|strong="G1161"\w* \w him|strong="G3588"\w* aboard \w and|strong="G1161"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w Mitylene|strong="G3412"\w*. +\v 15 Sailing \w from|strong="G2064"\w* \w there|strong="G1161"\w*, \w we|strong="G1161"\w* \w came|strong="G2064"\w* \w the|strong="G1519"\w* \w following|strong="G1966"\w* \w day|strong="G3588"\w* opposite \w Chios|strong="G5508"\w*. \w The|strong="G1519"\w* \w next|strong="G2087"\w* \w day|strong="G3588"\w* \w we|strong="G1161"\w* touched \w at|strong="G1519"\w* \w Samos|strong="G4544"\w* \w and|strong="G1161"\w* stayed \w at|strong="G1519"\w* Trogyllium, \w and|strong="G1161"\w* \w the|strong="G1519"\w* \w day|strong="G3588"\w* \w after|strong="G1161"\w* \w we|strong="G1161"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w Miletus|strong="G3399"\w*. +\v 16 \w For|strong="G1063"\w* \w Paul|strong="G3972"\w* \w had|strong="G3972"\w* \w determined|strong="G2919"\w* \w to|strong="G1519"\w* \w sail|strong="G3896"\w* \w past|strong="G1096"\w* \w Ephesus|strong="G2181"\w*, \w that|strong="G3588"\w* \w he|strong="G3588"\w* \w might|strong="G1096"\w* \w not|strong="G3361"\w* \w have|strong="G1510"\w* \w to|strong="G1519"\w* \w spend|strong="G5551"\w* \w time|strong="G2250"\w* \w in|strong="G1722"\w* \w Asia|strong="G3588"\w*; \w for|strong="G1063"\w* \w he|strong="G3588"\w* \w was|strong="G1510"\w* \w hastening|strong="G4692"\w*, \w if|strong="G1487"\w* \w it|strong="G1063"\w* \w were|strong="G1510"\w* \w possible|strong="G1415"\w* \w for|strong="G1063"\w* \w him|strong="G3588"\w*, \w to|strong="G1519"\w* \w be|strong="G1096"\w* \w in|strong="G1722"\w* \w Jerusalem|strong="G2419"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* \w Pentecost|strong="G4005"\w*. +\p +\v 17 \w From|strong="G3588"\w* \w Miletus|strong="G3399"\w* \w he|strong="G1161"\w* \w sent|strong="G3992"\w* \w to|strong="G1519"\w* \w Ephesus|strong="G2181"\w* \w and|strong="G1161"\w* \w called|strong="G3333"\w* \w to|strong="G1519"\w* \w himself|strong="G1519"\w* \w the|strong="G1519"\w* \w elders|strong="G4245"\w* \w of|strong="G1577"\w* \w the|strong="G1519"\w* \w assembly|strong="G1577"\w*. +\v 18 \w When|strong="G1161"\w* \w they|strong="G1161"\w* \w had|strong="G3739"\w* \w come|strong="G1096"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \w he|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, “\w You|strong="G5210"\w* \w yourselves|strong="G4771"\w* \w know|strong="G1987"\w*, \w from|strong="G3588"\w* \w the|strong="G1519"\w* \w first|strong="G4413"\w* \w day|strong="G2250"\w* \w that|strong="G3739"\w* \w I|strong="G3739"\w* \w set|strong="G1910"\w* \w foot|strong="G1910"\w* \w in|strong="G1519"\w* \w Asia|strong="G3588"\w*, \w how|strong="G4459"\w* \w I|strong="G3739"\w* \w was|strong="G1096"\w* \w with|strong="G3326"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w* \w the|strong="G1519"\w* \w time|strong="G5550"\w*, +\v 19 \w serving|strong="G1398"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w with|strong="G3326"\w* \w all|strong="G3956"\w* \w humility|strong="G5012"\w*, \w with|strong="G3326"\w* \w many|strong="G1722"\w* \w tears|strong="G1144"\w*, \w and|strong="G2532"\w* \w with|strong="G3326"\w* \w trials|strong="G3986"\w* \w which|strong="G3588"\w* \w happened|strong="G4819"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w plots|strong="G1917"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w*; +\v 20 \w how|strong="G5613"\w* \w I|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w shrink|strong="G5288"\w* \w from|strong="G2532"\w* declaring \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w anything|strong="G3762"\w* \w that|strong="G3588"\w* \w was|strong="G3588"\w* \w profitable|strong="G4851"\w*, \w teaching|strong="G1321"\w* \w you|strong="G5210"\w* \w publicly|strong="G1219"\w* \w and|strong="G2532"\w* \w from|strong="G2532"\w* \w house|strong="G3624"\w* \w to|strong="G2532"\w* \w house|strong="G3624"\w*, +\v 21 \w testifying|strong="G1263"\w* \w both|strong="G2532"\w* \w to|strong="G1519"\w* \w Jews|strong="G2453"\w* \w and|strong="G2532"\w* \w to|strong="G1519"\w* \w Greeks|strong="G1672"\w* \w repentance|strong="G3341"\w* \w toward|strong="G1519"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w faith|strong="G4102"\w* \w toward|strong="G1519"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*.\f + \fr 20:21 \ft TR adds “Christ”\f* +\v 22 \w Now|strong="G3568"\w*, \w behold|strong="G2400"\w*, \w I|strong="G1473"\w* \w go|strong="G4198"\w* \w bound|strong="G1210"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w*, \w not|strong="G3361"\w* \w knowing|strong="G1492"\w* \w what|strong="G3588"\w* \w will|strong="G2532"\w* \w happen|strong="G1519"\w* \w to|strong="G1519"\w* \w me|strong="G1473"\w* \w there|strong="G2532"\w*; +\v 23 \w except|strong="G4133"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w testifies|strong="G1263"\w* \w in|strong="G2596"\w* \w every|strong="G2596"\w* \w city|strong="G4172"\w*, \w saying|strong="G3004"\w* \w that|strong="G3754"\w* \w bonds|strong="G1199"\w* \w and|strong="G2532"\w* \w afflictions|strong="G2347"\w* \w wait|strong="G4151"\w* \w for|strong="G3754"\w* \w me|strong="G1473"\w*. +\v 24 \w But|strong="G2532"\w* \w these|strong="G3739"\w* \w things|strong="G3588"\w* don’\w t|strong="G3588"\w* count; \w nor|strong="G2532"\w* \w do|strong="G4160"\w* \w I|strong="G1473"\w* hold \w my|strong="G1473"\w* \w life|strong="G5590"\w* \w dear|strong="G5093"\w* \w to|strong="G2532"\w* \w myself|strong="G1683"\w*, \w so|strong="G2532"\w* \w that|strong="G3739"\w* \w I|strong="G1473"\w* \w may|strong="G2532"\w* \w finish|strong="G5048"\w* \w my|strong="G1473"\w* race \w with|strong="G3844"\w* \w joy|strong="G5485"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w ministry|strong="G1248"\w* \w which|strong="G3739"\w* \w I|strong="G1473"\w* \w received|strong="G2983"\w* \w from|strong="G3844"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*, \w to|strong="G2532"\w* fully \w testify|strong="G1263"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Good|strong="G3588"\w* \w News|strong="G3056"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w grace|strong="G5485"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w*. +\p +\v 25 “\w Now|strong="G3568"\w*, \w behold|strong="G2400"\w*, \w I|strong="G1473"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w*, \w among|strong="G1722"\w* \w whom|strong="G3739"\w* \w I|strong="G1473"\w* \w went|strong="G1330"\w* \w about|strong="G1722"\w* \w preaching|strong="G2784"\w* \w God|strong="G2532"\w*’s Kingdom, \w will|strong="G2532"\w* \w see|strong="G3708"\w* \w my|strong="G3708"\w* \w face|strong="G4383"\w* \w no|strong="G3765"\w* \w more|strong="G3765"\w*. +\v 26 \w Therefore|strong="G1360"\w* \w I|strong="G3754"\w* \w testify|strong="G3143"\w* \w to|strong="G1722"\w* \w you|strong="G5210"\w* \w today|strong="G4594"\w* \w that|strong="G3754"\w* \w I|strong="G3754"\w* \w am|strong="G1510"\w* \w clean|strong="G2513"\w* \w from|strong="G3588"\w* \w the|strong="G1722"\w* blood \w of|strong="G2250"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w*, +\v 27 \w for|strong="G1063"\w* \w I|strong="G1063"\w* didn’\w t|strong="G3588"\w* \w shrink|strong="G5288"\w* \w from|strong="G3756"\w* declaring \w to|strong="G3756"\w* \w you|strong="G5210"\w* \w the|strong="G3956"\w* \w whole|strong="G3956"\w* \w counsel|strong="G1012"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\v 28 \w Take|strong="G2316"\w* \w heed|strong="G4337"\w*, \w therefore|strong="G1223"\w*, \w to|strong="G2532"\w* \w yourselves|strong="G1438"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w flock|strong="G4168"\w*, \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w has|strong="G2316"\w* \w made|strong="G5087"\w* \w you|strong="G5210"\w* \w overseers|strong="G1985"\w*, \w to|strong="G2532"\w* \w shepherd|strong="G4165"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w and|strong="G2532"\w*\f + \fr 20:28 \ft TR, NU omit “the Lord and”\f* \w God|strong="G2316"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w purchased|strong="G4046"\w* \w with|strong="G1722"\w* \w his|strong="G1438"\w* \w own|strong="G2398"\w* blood. +\v 29 \w For|strong="G3754"\w* \w I|strong="G1473"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w after|strong="G3326"\w* \w my|strong="G1525"\w* departure, vicious \w wolves|strong="G3074"\w* \w will|strong="G1473"\w* \w enter|strong="G1525"\w* \w in|strong="G1519"\w* \w among|strong="G1519"\w* \w you|strong="G5210"\w*, \w not|strong="G3361"\w* \w sparing|strong="G5339"\w* \w the|strong="G1519"\w* \w flock|strong="G4168"\w*. +\v 30 \w Men|strong="G3588"\w* \w will|strong="G2532"\w* arise \w from|strong="G1537"\w* \w among|strong="G1537"\w* \w your|strong="G2532"\w* \w own|strong="G1438"\w* \w selves|strong="G1438"\w*, \w speaking|strong="G2980"\w* \w perverse|strong="G1294"\w* \w things|strong="G3588"\w*, \w to|strong="G2532"\w* draw \w away|strong="G1294"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w after|strong="G3694"\w* \w them|strong="G3588"\w*. +\v 31 \w Therefore|strong="G1352"\w* \w watch|strong="G1127"\w*, \w remembering|strong="G3421"\w* \w that|strong="G3754"\w* \w for|strong="G3754"\w* \w a|strong="G2532"\w* \w period|strong="G5148"\w* \w of|strong="G2250"\w* \w three|strong="G5148"\w* \w years|strong="G2250"\w* \w I|strong="G2532"\w* didn’t \w cease|strong="G3973"\w* \w to|strong="G2532"\w* \w admonish|strong="G3560"\w* \w everyone|strong="G1538"\w* \w night|strong="G3571"\w* \w and|strong="G2532"\w* \w day|strong="G2250"\w* \w with|strong="G3326"\w* \w tears|strong="G1144"\w*. +\v 32 \w Now|strong="G3568"\w*, brothers,\f + \fr 20:32 \ft The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.” \f* \w I|strong="G2532"\w* \w entrust|strong="G3908"\w* \w you|strong="G5210"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w his|strong="G3956"\w* \w grace|strong="G5485"\w*, \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w able|strong="G1410"\w* \w to|strong="G2532"\w* \w build|strong="G3618"\w* \w up|strong="G3618"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w give|strong="G1325"\w* \w you|strong="G5210"\w* \w the|strong="G1722"\w* \w inheritance|strong="G2817"\w* \w among|strong="G1722"\w* \w all|strong="G3956"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w sanctified|strong="G3956"\w*. +\v 33 \w I|strong="G2228"\w* \w coveted|strong="G1937"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w*’s silver, \w gold|strong="G5553"\w*, \w or|strong="G2228"\w* \w clothing|strong="G2441"\w*. +\v 34 \w You|strong="G3754"\w* yourselves \w know|strong="G1097"\w* \w that|strong="G3754"\w* \w these|strong="G3778"\w* \w hands|strong="G5495"\w* \w served|strong="G5256"\w* \w my|strong="G1473"\w* \w necessities|strong="G5532"\w*, \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G1510"\w* \w with|strong="G3326"\w* \w me|strong="G1473"\w*. +\v 35 \w In|strong="G3956"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w I|strong="G3754"\w* \w gave|strong="G1325"\w* \w you|strong="G5210"\w* \w an|strong="G2228"\w* example, \w that|strong="G3754"\w* \w so|strong="G3779"\w* laboring \w you|strong="G5210"\w* \w ought|strong="G1163"\w* \w to|strong="G3004"\w* help \w the|strong="G3956"\w* weak, \w and|strong="G5037"\w* \w to|strong="G3004"\w* \w remember|strong="G3421"\w* \w the|strong="G3956"\w* \w words|strong="G3056"\w* \w of|strong="G3056"\w* \w the|strong="G3956"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*, \w that|strong="G3754"\w* \w he|strong="G3754"\w* himself \w said|strong="G3004"\w*, \wj ‘\+w It|strong="G3754"\+w* \+w is|strong="G1510"\+w* \+w more|strong="G3123"\+w* \+w blessed|strong="G3107"\+w* \+w to|strong="G3004"\+w* \+w give|strong="G1325"\+w* \+w than|strong="G2228"\+w* \+w to|strong="G3004"\+w* \+w receive|strong="G2983"\+w*.’\wj* ” +\p +\v 36 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w spoken|strong="G3004"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w*, \w he|strong="G2532"\w* \w knelt|strong="G1119"\w* \w down|strong="G5087"\w* \w and|strong="G2532"\w* \w prayed|strong="G4336"\w* \w with|strong="G4862"\w* \w them|strong="G3588"\w* \w all|strong="G3956"\w*. +\v 37 \w They|strong="G2532"\w* \w all|strong="G3956"\w* \w wept|strong="G1096"\w* \w freely|strong="G2532"\w*, \w and|strong="G2532"\w* \w fell|strong="G1968"\w* \w on|strong="G1909"\w* \w Paul|strong="G3972"\w*’s \w neck|strong="G5137"\w* \w and|strong="G2532"\w* \w kissed|strong="G2705"\w* \w him|strong="G3588"\w*, +\v 38 \w sorrowing|strong="G3600"\w* most \w of|strong="G3056"\w* \w all|strong="G1161"\w* \w because|strong="G3754"\w* \w of|strong="G3056"\w* \w the|strong="G1519"\w* \w word|strong="G3056"\w* \w which|strong="G3739"\w* \w he|strong="G1161"\w* \w had|strong="G3739"\w* \w spoken|strong="G3004"\w*, \w that|strong="G3754"\w* \w they|strong="G1161"\w* \w should|strong="G3195"\w* \w see|strong="G2334"\w* \w his|strong="G1519"\w* \w face|strong="G4383"\w* \w no|strong="G3765"\w* \w more|strong="G3765"\w*. \w Then|strong="G1161"\w* \w they|strong="G1161"\w* \w accompanied|strong="G4311"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w ship|strong="G4143"\w*. +\c 21 +\p +\v 1 \w When|strong="G1161"\w* \w we|strong="G2249"\w* \w had|strong="G3588"\w* departed \w from|strong="G2064"\w* \w them|strong="G3588"\w* \w and|strong="G1161"\w* \w had|strong="G3588"\w* \w set|strong="G2064"\w* sail, \w we|strong="G2249"\w* \w came|strong="G2064"\w* \w with|strong="G1519"\w* \w a|strong="G1096"\w* \w straight|strong="G2113"\w* \w course|strong="G2113"\w* \w to|strong="G1519"\w* \w Cos|strong="G2972"\w*, \w and|strong="G1161"\w* \w the|strong="G1519"\w* \w next|strong="G1836"\w* \w day|strong="G1836"\w* \w to|strong="G1519"\w* \w Rhodes|strong="G4499"\w*, \w and|strong="G1161"\w* \w from|strong="G2064"\w* \w there|strong="G1161"\w* \w to|strong="G1519"\w* \w Patara|strong="G3959"\w*. +\v 2 \w Having|strong="G2532"\w* \w found|strong="G2147"\w* \w a|strong="G2532"\w* \w ship|strong="G4143"\w* \w crossing|strong="G1276"\w* \w over|strong="G1276"\w* \w to|strong="G1519"\w* \w Phoenicia|strong="G5403"\w*, \w we|strong="G2532"\w* \w went|strong="G2532"\w* \w aboard|strong="G1910"\w* \w and|strong="G2532"\w* \w set|strong="G1910"\w* sail. +\v 3 \w When|strong="G1161"\w* \w we|strong="G1063"\w* \w had|strong="G2532"\w* \w come|strong="G1510"\w* \w in|strong="G1519"\w* \w sight|strong="G3588"\w* \w of|strong="G2532"\w* \w Cyprus|strong="G2954"\w*, \w leaving|strong="G2641"\w* \w it|strong="G2532"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w left|strong="G2641"\w* \w hand|strong="G1161"\w*, \w we|strong="G1063"\w* \w sailed|strong="G4126"\w* \w to|strong="G1519"\w* \w Syria|strong="G4947"\w* \w and|strong="G2532"\w* \w landed|strong="G2718"\w* \w at|strong="G1519"\w* \w Tyre|strong="G5184"\w*, \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w ship|strong="G4143"\w* \w was|strong="G1510"\w* \w there|strong="G2532"\w* \w to|strong="G1519"\w* unload \w her|strong="G1438"\w* \w cargo|strong="G1117"\w*. +\v 4 \w Having|strong="G3361"\w* found \w disciples|strong="G3101"\w*, \w we|strong="G1161"\w* \w stayed|strong="G1961"\w* \w there|strong="G1161"\w* \w seven|strong="G2033"\w* \w days|strong="G2250"\w*. \w These|strong="G3588"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w Paul|strong="G3972"\w* \w through|strong="G1223"\w* \w the|strong="G1519"\w* \w Spirit|strong="G4151"\w* \w that|strong="G3588"\w* \w he|strong="G1161"\w* \w should|strong="G3588"\w* \w not|strong="G3361"\w* \w go|strong="G4151"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w*. +\v 5 \w When|strong="G3753"\w* \w those|strong="G3588"\w* \w days|strong="G2250"\w* \w were|strong="G3588"\w* \w over|strong="G1909"\w*, \w we|strong="G2249"\w* \w departed|strong="G1831"\w* \w and|strong="G2532"\w* \w went|strong="G1831"\w* \w on|strong="G1909"\w* \w our|strong="G2532"\w* \w journey|strong="G4311"\w*. \w They|strong="G2532"\w* \w all|strong="G3956"\w*, \w with|strong="G4862"\w* \w wives|strong="G1135"\w* \w and|strong="G2532"\w* \w children|strong="G5043"\w*, \w brought|strong="G1096"\w* \w us|strong="G2249"\w* \w on|strong="G1909"\w* \w our|strong="G2532"\w* \w way|strong="G4198"\w* \w until|strong="G2193"\w* \w we|strong="G2249"\w* \w were|strong="G3588"\w* \w out|strong="G1831"\w* \w of|strong="G2250"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w*. \w Kneeling|strong="G1119"\w* \w down|strong="G5087"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* beach, \w we|strong="G2249"\w* \w prayed|strong="G4336"\w*. +\v 6 \w After|strong="G1161"\w* saying goodbye \w to|strong="G1519"\w* \w each|strong="G1519"\w* \w other|strong="G1161"\w*, \w we|strong="G2532"\w* \w went|strong="G2532"\w* \w on|strong="G1519"\w* \w board|strong="G1684"\w* \w the|strong="G2532"\w* \w ship|strong="G4143"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w returned|strong="G5290"\w* \w home|strong="G1519"\w* \w again|strong="G5290"\w*. +\p +\v 7 \w When|strong="G1161"\w* \w we|strong="G2249"\w* \w had|strong="G2532"\w* \w finished|strong="G1274"\w* \w the|strong="G2532"\w* \w voyage|strong="G4144"\w* \w from|strong="G3844"\w* \w Tyre|strong="G5184"\w*, \w we|strong="G2249"\w* \w arrived|strong="G2658"\w* \w at|strong="G1519"\w* \w Ptolemais|strong="G4424"\w*. \w We|strong="G2249"\w* greeted \w the|strong="G2532"\w* brothers \w and|strong="G2532"\w* \w stayed|strong="G3306"\w* \w with|strong="G3844"\w* \w them|strong="G3588"\w* \w one|strong="G1520"\w* \w day|strong="G2250"\w*. +\v 8 \w On|strong="G1519"\w* \w the|strong="G2532"\w* \w next|strong="G1887"\w* \w day|strong="G1887"\w*, \w we|strong="G2532"\w* \w who|strong="G3588"\w* \w were|strong="G1510"\w* \w Paul|strong="G1510"\w*’s \w companions|strong="G3588"\w* \w departed|strong="G1831"\w* \w and|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w Caesarea|strong="G2542"\w*. +\p \w We|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w house|strong="G3624"\w* \w of|strong="G1537"\w* \w Philip|strong="G5376"\w* \w the|strong="G2532"\w* \w evangelist|strong="G2099"\w*, \w who|strong="G3588"\w* \w was|strong="G1510"\w* \w one|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w*, \w and|strong="G2532"\w* \w stayed|strong="G3306"\w* \w with|strong="G3844"\w* \w him|strong="G3588"\w*. +\v 9 \w Now|strong="G1161"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w had|strong="G1510"\w* \w four|strong="G5064"\w* \w virgin|strong="G3933"\w* \w daughters|strong="G2364"\w* \w who|strong="G3778"\w* \w prophesied|strong="G4395"\w*. +\v 10 \w As|strong="G1161"\w* \w we|strong="G1161"\w* \w stayed|strong="G1961"\w* \w there|strong="G1161"\w* \w some|strong="G5100"\w* \w days|strong="G2250"\w*, \w a|strong="G1161"\w* \w certain|strong="G5100"\w* \w prophet|strong="G4396"\w* \w named|strong="G3686"\w* Agabus \w came|strong="G2718"\w* \w down|strong="G2718"\w* \w from|strong="G2718"\w* \w Judea|strong="G2449"\w*. +\v 11 \w Coming|strong="G2064"\w* \w to|strong="G1519"\w* \w us|strong="G3004"\w* \w and|strong="G2532"\w* taking \w Paul|strong="G3972"\w*’s \w belt|strong="G2223"\w*, \w he|strong="G2532"\w* \w bound|strong="G1210"\w* \w his|strong="G1438"\w* \w own|strong="G1438"\w* \w feet|strong="G4228"\w* \w and|strong="G2532"\w* \w hands|strong="G5495"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w The|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w says|strong="G3004"\w*: ‘\w So|strong="G3779"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w* \w at|strong="G1722"\w* \w Jerusalem|strong="G2419"\w* \w will|strong="G1510"\w* \w bind|strong="G1210"\w* \w the|strong="G1722"\w* \w man|strong="G3778"\w* \w who|strong="G3739"\w* \w owns|strong="G1510"\w* \w this|strong="G3778"\w* \w belt|strong="G2223"\w*, \w and|strong="G2532"\w* \w will|strong="G1510"\w* \w deliver|strong="G3860"\w* \w him|strong="G3588"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w hands|strong="G5495"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w*.’” +\p +\v 12 \w When|strong="G1161"\w* \w we|strong="G2249"\w* heard \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w both|strong="G2532"\w* \w we|strong="G2249"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w people|strong="G3361"\w* \w of|strong="G2532"\w* \w that|strong="G3588"\w* \w place|strong="G1473"\w* \w begged|strong="G3870"\w* \w him|strong="G3588"\w* \w not|strong="G3361"\w* \w to|strong="G1519"\w* \w go|strong="G1519"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w*. +\v 13 \w Then|strong="G2532"\w* \w Paul|strong="G3972"\w* \w answered|strong="G3004"\w*, “\w What|strong="G5101"\w* \w are|strong="G3588"\w* \w you|strong="G3004"\w* \w doing|strong="G4160"\w*, \w weeping|strong="G2799"\w* \w and|strong="G2532"\w* \w breaking|strong="G4919"\w* \w my|strong="G1473"\w* \w heart|strong="G2588"\w*? \w For|strong="G1063"\w* \w I|strong="G1473"\w* \w am|strong="G1473"\w* \w ready|strong="G2093"\w* \w not|strong="G3756"\w* \w only|strong="G3440"\w* \w to|strong="G1519"\w* \w be|strong="G2532"\w* \w bound|strong="G1210"\w*, \w but|strong="G2532"\w* \w also|strong="G2532"\w* \w to|strong="G1519"\w* die \w at|strong="G1519"\w* \w Jerusalem|strong="G2419"\w* \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w name|strong="G3686"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*.” +\p +\v 14 \w When|strong="G1161"\w* \w he|strong="G1161"\w* \w would|strong="G1096"\w* \w not|strong="G3361"\w* \w be|strong="G1096"\w* \w persuaded|strong="G3982"\w*, \w we|strong="G1161"\w* \w ceased|strong="G2270"\w*, \w saying|strong="G3004"\w*, “\w The|strong="G1161"\w* \w Lord|strong="G2962"\w*’\w s|strong="G2962"\w* \w will|strong="G2307"\w* \w be|strong="G1096"\w* \w done|strong="G1096"\w*.” +\p +\v 15 \w After|strong="G3326"\w* \w these|strong="G3778"\w* \w days|strong="G2250"\w* \w we|strong="G1161"\w* \w took|strong="G1161"\w* \w up|strong="G1519"\w* \w our|strong="G3326"\w* baggage \w and|strong="G1161"\w* \w went|strong="G3588"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w*. +\v 16 \w Some|strong="G5100"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w disciples|strong="G3101"\w* \w from|strong="G3844"\w* \w Caesarea|strong="G2542"\w* \w also|strong="G2532"\w* \w went|strong="G2532"\w* \w with|strong="G4862"\w* \w us|strong="G3579"\w*, bringing \w one|strong="G5100"\w* \w Mnason|strong="G3416"\w* \w of|strong="G2532"\w* \w Cyprus|strong="G2953"\w*, \w an|strong="G2532"\w* early \w disciple|strong="G3101"\w*, \w with|strong="G4862"\w* \w whom|strong="G3739"\w* \w we|strong="G2249"\w* \w would|strong="G2532"\w* stay. +\p +\v 17 \w When|strong="G1161"\w* \w we|strong="G2249"\w* \w had|strong="G3588"\w* \w come|strong="G1096"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w*, \w the|strong="G1519"\w* brothers received \w us|strong="G1519"\w* gladly. +\v 18 \w The|strong="G3956"\w* \w day|strong="G3588"\w* \w following|strong="G1966"\w*, \w Paul|strong="G3972"\w* \w went|strong="G1524"\w* \w in|strong="G3956"\w* \w with|strong="G4862"\w* \w us|strong="G2249"\w* \w to|strong="G4314"\w* \w James|strong="G2385"\w*; \w and|strong="G1161"\w* \w all|strong="G3956"\w* \w the|strong="G3956"\w* \w elders|strong="G4245"\w* \w were|strong="G3588"\w* \w present|strong="G3854"\w*. +\v 19 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* greeted \w them|strong="G3588"\w*, \w he|strong="G2532"\w* reported \w one|strong="G1520"\w* \w by|strong="G1223"\w* \w one|strong="G1520"\w* \w the|strong="G1722"\w* \w things|strong="G3588"\w* \w which|strong="G3739"\w* \w God|strong="G2316"\w* \w had|strong="G2532"\w* \w worked|strong="G4160"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w* \w through|strong="G1223"\w* \w his|strong="G1438"\w* \w ministry|strong="G1248"\w*. +\v 20 \w They|strong="G2532"\w*, \w when|strong="G1161"\w* \w they|strong="G2532"\w* heard \w it|strong="G2532"\w*, \w glorified|strong="G1392"\w* \w God|strong="G2316"\w*. \w They|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, “\w You|strong="G1722"\w* \w see|strong="G2334"\w*, brother, \w how|strong="G4214"\w* \w many|strong="G4214"\w* \w thousands|strong="G3461"\w* \w there|strong="G2532"\w* \w are|strong="G1510"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w* \w of|strong="G2316"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w have|strong="G2532"\w* \w believed|strong="G4100"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w are|strong="G1510"\w* \w all|strong="G3956"\w* \w zealous|strong="G2207"\w* \w for|strong="G1161"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w*. +\v 21 \w They|strong="G1161"\w* \w have|strong="G3748"\w* \w been|strong="G3361"\w* \w informed|strong="G2727"\w* \w about|strong="G4012"\w* \w you|strong="G4771"\w*, \w that|strong="G3754"\w* \w you|strong="G4771"\w* \w teach|strong="G1321"\w* \w all|strong="G3956"\w* \w the|strong="G3956"\w* \w Jews|strong="G2453"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w among|strong="G2596"\w* \w the|strong="G3956"\w* \w Gentiles|strong="G1484"\w* \w to|strong="G2596"\w* forsake \w Moses|strong="G3475"\w*, \w telling|strong="G3004"\w* \w them|strong="G3588"\w* \w not|strong="G3361"\w* \w to|strong="G2596"\w* \w circumcise|strong="G4059"\w* \w their|strong="G1438"\w* \w children|strong="G5043"\w* \w and|strong="G1161"\w* \w not|strong="G3361"\w* \w to|strong="G2596"\w* \w walk|strong="G4043"\w* \w after|strong="G2596"\w* \w the|strong="G3956"\w* \w customs|strong="G1485"\w*. +\v 22 \w What|strong="G5101"\w* \w then|strong="G3767"\w*? \w The|strong="G3754"\w* \w assembly|strong="G4128"\w* \w must|strong="G1163"\w* \w certainly|strong="G1063"\w* \w meet|strong="G4905"\w*, \w for|strong="G1063"\w* \w they|strong="G3754"\w* \w will|strong="G5101"\w* \w hear|strong="G5101"\w* \w that|strong="G3754"\w* \w you|strong="G3754"\w* \w have|strong="G3748"\w* \w come|strong="G2064"\w*. +\v 23 \w Therefore|strong="G3767"\w* \w do|strong="G4160"\w* \w what|strong="G3739"\w* \w we|strong="G2249"\w* \w tell|strong="G3004"\w* \w you|strong="G4771"\w*. \w We|strong="G2249"\w* \w have|strong="G2192"\w* \w four|strong="G5064"\w* \w men|strong="G3778"\w* \w who|strong="G3739"\w* \w have|strong="G2192"\w* taken \w a|strong="G2192"\w* \w vow|strong="G2171"\w*. +\v 24 \w Take|strong="G3880"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* purify \w yourself|strong="G4771"\w* \w with|strong="G4862"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w pay|strong="G1159"\w* \w their|strong="G2532"\w* \w expenses|strong="G1159"\w* \w for|strong="G3754"\w* \w them|strong="G3588"\w*, \w that|strong="G3754"\w* \w they|strong="G2532"\w* \w may|strong="G2532"\w* \w shave|strong="G3587"\w* \w their|strong="G2532"\w* \w heads|strong="G2776"\w*. \w Then|strong="G2532"\w* \w all|strong="G3956"\w* \w will|strong="G1510"\w* \w know|strong="G1097"\w* \w that|strong="G3754"\w* \w there|strong="G2532"\w* \w is|strong="G1510"\w* \w no|strong="G3762"\w* truth \w in|strong="G1909"\w* \w the|strong="G2532"\w* \w things|strong="G3956"\w* \w that|strong="G3754"\w* \w they|strong="G2532"\w* \w have|strong="G2532"\w* \w been|strong="G1510"\w* \w informed|strong="G2727"\w* \w about|strong="G4012"\w* \w you|strong="G4771"\w*, \w but|strong="G2532"\w* \w that|strong="G3754"\w* \w you|strong="G4771"\w* \w yourself|strong="G4771"\w* \w also|strong="G2532"\w* \w walk|strong="G4748"\w* \w keeping|strong="G5442"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w*. +\v 25 \w But|strong="G1161"\w* \w concerning|strong="G4012"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w* \w who|strong="G3588"\w* \w believe|strong="G4100"\w*, \w we|strong="G2249"\w* \w have|strong="G2532"\w* \w written|strong="G1989"\w* \w our|strong="G2532"\w* decision \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w should|strong="G3588"\w* \w observe|strong="G5442"\w* \w no|strong="G2532"\w* \w such|strong="G1161"\w* \w thing|strong="G1494"\w*, except \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w should|strong="G3588"\w* \w keep|strong="G5442"\w* \w themselves|strong="G1438"\w* \w from|strong="G2532"\w* food offered \w to|strong="G2532"\w* \w idols|strong="G1494"\w*, \w from|strong="G2532"\w* blood, \w from|strong="G2532"\w* \w strangled|strong="G4156"\w* \w things|strong="G3588"\w*, \w and|strong="G2532"\w* \w from|strong="G2532"\w* \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w*.” +\p +\v 26 \w Then|strong="G5119"\w* \w Paul|strong="G3972"\w* \w took|strong="G3880"\w* \w the|strong="G1519"\w* \w men|strong="G3588"\w*, \w and|strong="G3972"\w* \w the|strong="G1519"\w* \w next|strong="G2192"\w* \w day|strong="G2250"\w* purified \w himself|strong="G4862"\w* \w and|strong="G3972"\w* \w went|strong="G1524"\w* \w with|strong="G4862"\w* \w them|strong="G3588"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w temple|strong="G2411"\w*, declaring \w the|strong="G1519"\w* fulfillment \w of|strong="G2250"\w* \w the|strong="G1519"\w* \w days|strong="G2250"\w* \w of|strong="G2250"\w* purification, \w until|strong="G2193"\w* \w the|strong="G1519"\w* \w offering|strong="G4376"\w* \w was|strong="G3588"\w* \w offered|strong="G4374"\w* \w for|strong="G1519"\w* \w every|strong="G1538"\w* \w one|strong="G1520"\w* \w of|strong="G2250"\w* \w them|strong="G3588"\w*. +\v 27 \w When|strong="G1161"\w* \w the|strong="G1722"\w* \w seven|strong="G2033"\w* \w days|strong="G2250"\w* \w were|strong="G3588"\w* \w almost|strong="G3195"\w* completed, \w the|strong="G1722"\w* \w Jews|strong="G2453"\w* \w from|strong="G2532"\w* \w Asia|strong="G3588"\w*, \w when|strong="G1161"\w* \w they|strong="G2532"\w* \w saw|strong="G2300"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w*, \w stirred|strong="G2453"\w* \w up|strong="G4797"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w multitude|strong="G3793"\w* \w and|strong="G2532"\w* \w laid|strong="G1911"\w* \w hands|strong="G5495"\w* \w on|strong="G1909"\w* \w him|strong="G3588"\w*, +\v 28 \w crying|strong="G2896"\w* \w out|strong="G2896"\w*, “\w Men|strong="G3956"\w* \w of|strong="G2532"\w* \w Israel|strong="G2475"\w*, help! \w This|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w man|strong="G3778"\w* \w who|strong="G3588"\w* \w teaches|strong="G1321"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w* \w everywhere|strong="G3837"\w* \w against|strong="G2596"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w*, \w and|strong="G2532"\w* \w this|strong="G3778"\w* \w place|strong="G5117"\w*. \w Moreover|strong="G2532"\w*, \w he|strong="G2532"\w* \w also|strong="G2532"\w* \w brought|strong="G1521"\w* \w Greeks|strong="G1672"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w temple|strong="G2411"\w* \w and|strong="G2532"\w* \w has|strong="G3778"\w* \w defiled|strong="G2840"\w* \w this|strong="G3778"\w* holy \w place|strong="G5117"\w*!” +\v 29 \w For|strong="G1063"\w* \w they|strong="G3588"\w* \w had|strong="G3972"\w* \w seen|strong="G4308"\w* \w Trophimus|strong="G5161"\w* \w the|strong="G1722"\w* \w Ephesian|strong="G2180"\w* \w with|strong="G1722"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w city|strong="G4172"\w*, \w and|strong="G3972"\w* \w they|strong="G3588"\w* \w supposed|strong="G3543"\w* \w that|strong="G3754"\w* \w Paul|strong="G3972"\w* \w had|strong="G3972"\w* \w brought|strong="G1521"\w* \w him|strong="G3588"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w temple|strong="G2411"\w*. +\p +\v 30 \w All|strong="G3650"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w was|strong="G1096"\w* \w moved|strong="G2795"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w* \w ran|strong="G2992"\w* \w together|strong="G4890"\w*. \w They|strong="G2532"\w* \w seized|strong="G1949"\w* \w Paul|strong="G3972"\w* \w and|strong="G2532"\w* \w dragged|strong="G1670"\w* \w him|strong="G3588"\w* \w out|strong="G1854"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w temple|strong="G2413"\w*. \w Immediately|strong="G2112"\w* \w the|strong="G2532"\w* \w doors|strong="G2374"\w* \w were|strong="G3588"\w* \w shut|strong="G2808"\w*. +\v 31 \w As|strong="G3754"\w* \w they|strong="G3588"\w* \w were|strong="G3588"\w* \w trying|strong="G2212"\w* \w to|strong="G2212"\w* kill \w him|strong="G3588"\w*, news \w came|strong="G3588"\w* \w up|strong="G4797"\w* \w to|strong="G2212"\w* \w the|strong="G3588"\w* commanding officer \w of|strong="G3588"\w* \w the|strong="G3588"\w* regiment \w that|strong="G3754"\w* \w all|strong="G3650"\w* \w Jerusalem|strong="G2419"\w* \w was|strong="G3588"\w* \w in|strong="G3588"\w* \w an|strong="G3754"\w* \w uproar|strong="G4797"\w*. +\v 32 \w Immediately|strong="G1824"\w* \w he|strong="G2532"\w* \w took|strong="G3880"\w* \w soldiers|strong="G4757"\w* \w and|strong="G2532"\w* \w centurions|strong="G1543"\w* \w and|strong="G2532"\w* \w ran|strong="G1161"\w* \w down|strong="G2701"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*. \w They|strong="G2532"\w*, \w when|strong="G1161"\w* \w they|strong="G2532"\w* \w saw|strong="G3708"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* \w captain|strong="G5506"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w soldiers|strong="G4757"\w*, \w stopped|strong="G3973"\w* \w beating|strong="G5180"\w* \w Paul|strong="G3972"\w*. +\v 33 \w Then|strong="G2532"\w* \w the|strong="G2532"\w* \w commanding|strong="G2753"\w* officer \w came|strong="G2532"\w* \w near|strong="G1448"\w*, arrested \w him|strong="G3588"\w*, \w commanded|strong="G2753"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w be|strong="G1510"\w* \w bound|strong="G1210"\w* \w with|strong="G2532"\w* \w two|strong="G1417"\w* \w chains|strong="G1210"\w*, \w and|strong="G2532"\w* \w inquired|strong="G4441"\w* \w who|strong="G5101"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w and|strong="G2532"\w* \w what|strong="G5101"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w done|strong="G4160"\w*. +\v 34 \w Some|strong="G5100"\w* \w shouted|strong="G2019"\w* \w one|strong="G5100"\w* \w thing|strong="G5100"\w* \w and|strong="G1161"\w* \w some|strong="G5100"\w* \w another|strong="G5100"\w*, \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w crowd|strong="G3793"\w*. \w When|strong="G1161"\w* \w he|strong="G1161"\w* couldn’\w t|strong="G3588"\w* \w find|strong="G1097"\w* \w out|strong="G3793"\w* \w the|strong="G1722"\w* truth \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* noise, \w he|strong="G1161"\w* \w commanded|strong="G2753"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w be|strong="G3361"\w* \w brought|strong="G1161"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w barracks|strong="G3925"\w*. +\p +\v 35 \w When|strong="G3753"\w* \w he|strong="G1161"\w* \w came|strong="G1096"\w* \w to|strong="G1909"\w* \w the|strong="G1161"\w* stairs, \w he|strong="G1161"\w* \w was|strong="G1096"\w* \w carried|strong="G1096"\w* \w by|strong="G1223"\w* \w the|strong="G1161"\w* \w soldiers|strong="G4757"\w* \w because|strong="G1223"\w* \w of|strong="G5259"\w* \w the|strong="G1161"\w* violence \w of|strong="G5259"\w* \w the|strong="G1161"\w* \w crowd|strong="G3793"\w*; +\v 36 \w for|strong="G1063"\w* \w the|strong="G3588"\w* \w multitude|strong="G4128"\w* \w of|strong="G4128"\w* \w the|strong="G3588"\w* \w people|strong="G2992"\w* \w followed|strong="G2992"\w* \w after|strong="G1063"\w*, \w crying|strong="G2896"\w* \w out|strong="G2896"\w*, “Away \w with|strong="G2896"\w* \w him|strong="G3588"\w*!” +\v 37 \w As|strong="G1519"\w* \w Paul|strong="G3972"\w* \w was|strong="G3588"\w* \w about|strong="G3195"\w* \w to|strong="G1519"\w* \w be|strong="G3195"\w* \w brought|strong="G1521"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w barracks|strong="G3925"\w*, \w he|strong="G1161"\w* \w asked|strong="G3004"\w* \w the|strong="G1519"\w* commanding officer, “\w May|strong="G1832"\w* \w I|strong="G1473"\w* \w speak|strong="G3004"\w* \w to|strong="G1519"\w* \w you|strong="G4771"\w*?” +\p \w He|strong="G1161"\w* \w said|strong="G3004"\w*, “\w Do|strong="G3004"\w* \w you|strong="G4771"\w* \w know|strong="G1097"\w* \w Greek|strong="G1676"\w*? +\v 38 Aren’\w t|strong="G3588"\w* \w you|strong="G4771"\w* \w then|strong="G2532"\w* \w the|strong="G2532"\w* Egyptian \w who|strong="G3588"\w* \w before|strong="G4253"\w* \w these|strong="G3778"\w* \w days|strong="G2250"\w* \w stirred|strong="G2532"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* sedition \w and|strong="G2532"\w* \w led|strong="G1806"\w* \w out|strong="G1806"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w wilderness|strong="G2048"\w* \w the|strong="G2532"\w* \w four|strong="G5070"\w* \w thousand|strong="G5070"\w* \w men|strong="G3778"\w* \w of|strong="G2250"\w* \w the|strong="G2532"\w* \w Assassins|strong="G4607"\w*?” +\p +\v 39 \w But|strong="G1161"\w* \w Paul|strong="G3972"\w* \w said|strong="G3004"\w*, “\w I|strong="G1473"\w* \w am|strong="G1510"\w* \w a|strong="G1510"\w* \w Jew|strong="G2453"\w* \w from|strong="G3756"\w* \w Tarsus|strong="G5018"\w* \w in|strong="G2980"\w* \w Cilicia|strong="G2791"\w*, \w a|strong="G1510"\w* \w citizen|strong="G4177"\w* \w of|strong="G4172"\w* \w no|strong="G3756"\w* insignificant \w city|strong="G4172"\w*. \w I|strong="G1473"\w* \w beg|strong="G1189"\w* \w you|strong="G4771"\w*, \w allow|strong="G2010"\w* \w me|strong="G1473"\w* \w to|strong="G4314"\w* \w speak|strong="G2980"\w* \w to|strong="G4314"\w* \w the|strong="G1161"\w* \w people|strong="G2992"\w*.” +\p +\v 40 \w When|strong="G1161"\w* \w he|strong="G1161"\w* \w had|strong="G3972"\w* \w given|strong="G2010"\w* \w him|strong="G3588"\w* \w permission|strong="G2010"\w*, \w Paul|strong="G3972"\w*, \w standing|strong="G2476"\w* \w on|strong="G1909"\w* \w the|strong="G1161"\w* stairs, \w beckoned|strong="G2678"\w* \w with|strong="G1909"\w* \w his|strong="G1909"\w* \w hand|strong="G5495"\w* \w to|strong="G1909"\w* \w the|strong="G1161"\w* \w people|strong="G2992"\w*. \w When|strong="G1161"\w* \w there|strong="G1161"\w* \w was|strong="G1096"\w* \w a|strong="G1096"\w* \w great|strong="G4183"\w* \w silence|strong="G4602"\w*, \w he|strong="G1161"\w* \w spoke|strong="G3004"\w* \w to|strong="G1909"\w* \w them|strong="G3588"\w* \w in|strong="G1909"\w* \w the|strong="G1161"\w* \w Hebrew|strong="G1446"\w* \w language|strong="G1258"\w*, \w saying|strong="G3004"\w*, +\c 22 +\p +\v 1 “Brothers \w and|strong="G2532"\w* \w fathers|strong="G3962"\w*, listen \w to|strong="G4314"\w* \w the|strong="G2532"\w* defense \w which|strong="G3588"\w* \w I|strong="G1473"\w* \w now|strong="G2532"\w* \w make|strong="G2532"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*.” +\p +\v 2 \w When|strong="G1161"\w* \w they|strong="G2532"\w* heard \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w spoke|strong="G4377"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w Hebrew|strong="G1446"\w* \w language|strong="G1258"\w*, \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w even|strong="G2532"\w* \w more|strong="G3123"\w* \w quiet|strong="G2271"\w*. +\p \w He|strong="G2532"\w* \w said|strong="G5346"\w*, +\v 3 “\w I|strong="G1473"\w* \w am|strong="G1510"\w* \w indeed|strong="G1161"\w* \w a|strong="G1722"\w* \w Jew|strong="G2453"\w*, \w born|strong="G1080"\w* \w in|strong="G1722"\w* \w Tarsus|strong="G5019"\w* \w of|strong="G2316"\w* \w Cilicia|strong="G2791"\w*, \w but|strong="G1161"\w* \w brought|strong="G1161"\w* \w up|strong="G1722"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* \w city|strong="G4172"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w feet|strong="G4228"\w* \w of|strong="G2316"\w* \w Gamaliel|strong="G1059"\w*, instructed \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1722"\w* strict tradition \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w of|strong="G2316"\w* \w our|strong="G2316"\w* \w fathers|strong="G3971"\w*, \w being|strong="G1510"\w* \w zealous|strong="G2207"\w* \w for|strong="G1161"\w* \w God|strong="G2316"\w*, \w even|strong="G2531"\w* \w as|strong="G2531"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w* \w are|strong="G1510"\w* \w today|strong="G4594"\w*. +\v 4 \w I|strong="G3739"\w* \w persecuted|strong="G1377"\w* \w this|strong="G3778"\w* \w Way|strong="G3598"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w death|strong="G2288"\w*, \w binding|strong="G1195"\w* \w and|strong="G2532"\w* \w delivering|strong="G3860"\w* \w into|strong="G1519"\w* \w prisons|strong="G5438"\w* \w both|strong="G2532"\w* \w men|strong="G3778"\w* \w and|strong="G2532"\w* \w women|strong="G1135"\w*, +\v 5 \w as|strong="G5613"\w* \w also|strong="G2532"\w* \w the|strong="G2532"\w* \w high|strong="G3956"\w* priest \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w council|strong="G4244"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w elders|strong="G4244"\w* \w testify|strong="G3140"\w*, \w from|strong="G3844"\w* \w whom|strong="G3739"\w* \w also|strong="G2532"\w* \w I|strong="G1473"\w* \w received|strong="G1209"\w* \w letters|strong="G1992"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* brothers, \w and|strong="G2532"\w* traveled \w to|strong="G1519"\w* \w Damascus|strong="G1154"\w* \w to|strong="G1519"\w* \w bring|strong="G2532"\w* \w them|strong="G3588"\w* \w also|strong="G2532"\w* \w who|strong="G3739"\w* \w were|strong="G1510"\w* \w there|strong="G2532"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w* \w in|strong="G1519"\w* \w bonds|strong="G1210"\w* \w to|strong="G1519"\w* \w be|strong="G1510"\w* \w punished|strong="G5097"\w*. +\p +\v 6 “\w As|strong="G1161"\w* \w I|strong="G1473"\w* \w made|strong="G1096"\w* \w my|strong="G1473"\w* \w journey|strong="G4198"\w* \w and|strong="G2532"\w* \w came|strong="G1096"\w* \w close|strong="G1448"\w* \w to|strong="G2532"\w* \w Damascus|strong="G1154"\w*, \w about|strong="G4012"\w* \w noon|strong="G3314"\w* \w suddenly|strong="G1810"\w* \w a|strong="G1096"\w* \w great|strong="G2532"\w* \w light|strong="G5457"\w* \w shone|strong="G4015"\w* \w around|strong="G4012"\w* \w me|strong="G1473"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w*. +\v 7 \w I|strong="G1473"\w* \w fell|strong="G4098"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w ground|strong="G1475"\w* \w and|strong="G2532"\w* heard \w a|strong="G2532"\w* \w voice|strong="G5456"\w* \w saying|strong="G3004"\w* \w to|strong="G1519"\w* \w me|strong="G1473"\w*, \wj ‘\+w Saul|strong="G4549"\+w*, \+w Saul|strong="G4549"\+w*, \+w why|strong="G5101"\+w* \+w are|strong="G3588"\+w* \+w you|strong="G3004"\+w* \+w persecuting|strong="G1377"\+w* \+w me|strong="G1473"\+w*?’\wj* +\v 8 \w I|strong="G1473"\w* \w answered|strong="G3004"\w*, ‘\w Who|strong="G3739"\w* \w are|strong="G1510"\w* \w you|strong="G4771"\w*, \w Lord|strong="G2962"\w*?’ \w He|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w me|strong="G1473"\w*, \wj ‘\+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w Jesus|strong="G2424"\+w* \+w of|strong="G2962"\+w* \+w Nazareth|strong="G3480"\+w*, \+w whom|strong="G3739"\+w* \+w you|strong="G4771"\+w* \+w persecute|strong="G1377"\+w*.’\wj* +\p +\v 9 “\w Those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G1510"\w* \w with|strong="G4862"\w* \w me|strong="G1473"\w* \w indeed|strong="G3303"\w* \w saw|strong="G2300"\w* \w the|strong="G1161"\w* \w light|strong="G5457"\w* \w and|strong="G1161"\w* \w were|strong="G1510"\w* afraid, \w but|strong="G1161"\w* \w they|strong="G1161"\w* didn’\w t|strong="G3588"\w* understand \w the|strong="G1161"\w* \w voice|strong="G5456"\w* \w of|strong="G5456"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w spoke|strong="G2980"\w* \w to|strong="G3756"\w* \w me|strong="G1473"\w*. +\v 10 \w I|strong="G1473"\w* \w said|strong="G3004"\w*, ‘\w What|strong="G5101"\w* \w shall|strong="G3739"\w* \w I|strong="G1473"\w* \w do|strong="G4160"\w*, \w Lord|strong="G2962"\w*?’ \w The|strong="G1519"\w* \w Lord|strong="G2962"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w me|strong="G1473"\w*, \wj ‘Arise, \+w and|strong="G1161"\+w* \+w go|strong="G4198"\+w* \+w into|strong="G1519"\+w* \+w Damascus|strong="G1154"\+w*. \+w There|strong="G1161"\+w* \+w you|strong="G4771"\+w* \+w will|strong="G5101"\+w* \+w be|strong="G3956"\+w* \+w told|strong="G3004"\+w* \+w about|strong="G4012"\+w* \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w which|strong="G3739"\+w* \+w are|strong="G3588"\+w* \+w appointed|strong="G4160"\+w* \+w for|strong="G1519"\+w* \+w you|strong="G4771"\+w* \+w to|strong="G1519"\+w* \+w do|strong="G4160"\+w*.’\wj* +\v 11 \w When|strong="G1161"\w* \w I|strong="G1473"\w* couldn’\w t|strong="G3588"\w* \w see|strong="G1689"\w* \w for|strong="G1519"\w* \w the|strong="G1519"\w* \w glory|strong="G1391"\w* \w of|strong="G5259"\w* \w that|strong="G3588"\w* \w light|strong="G5457"\w*, \w being|strong="G1161"\w* \w led|strong="G5496"\w* \w by|strong="G5259"\w* \w the|strong="G1519"\w* \w hand|strong="G1161"\w* \w of|strong="G5259"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w with|strong="G5259"\w* \w me|strong="G1473"\w*, \w I|strong="G1473"\w* \w came|strong="G2064"\w* \w into|strong="G1519"\w* \w Damascus|strong="G1154"\w*. +\p +\v 12 “\w One|strong="G5100"\w* Ananias, \w a|strong="G1161"\w* \w devout|strong="G2126"\w* \w man|strong="G5100"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G3956"\w* \w law|strong="G3551"\w*, \w well|strong="G3140"\w* \w reported|strong="G3140"\w* \w of|strong="G5259"\w* \w by|strong="G5259"\w* \w all|strong="G3956"\w* \w the|strong="G3956"\w* \w Jews|strong="G2453"\w* \w who|strong="G3588"\w* \w lived|strong="G2730"\w* \w in|strong="G2596"\w* Damascus, +\v 13 \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w me|strong="G1473"\w*, \w and|strong="G2532"\w* \w standing|strong="G2186"\w* \w by|strong="G4314"\w* \w me|strong="G1473"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w me|strong="G1473"\w*, ‘Brother \w Saul|strong="G4549"\w*, receive \w your|strong="G2532"\w* \w sight|strong="G3588"\w*!’ \w In|strong="G1519"\w* \w that|strong="G3588"\w* \w very|strong="G2532"\w* \w hour|strong="G5610"\w* \w I|strong="G1473"\w* \w looked|strong="G2532"\w* \w up|strong="G1519"\w* \w at|strong="G1519"\w* \w him|strong="G3588"\w*. +\v 14 \w He|strong="G2532"\w* \w said|strong="G3004"\w*, ‘\w The|strong="G2532"\w* \w God|strong="G2316"\w* \w of|strong="G1537"\w* \w our|strong="G2316"\w* \w fathers|strong="G3962"\w* \w has|strong="G2316"\w* \w appointed|strong="G4400"\w* \w you|strong="G4771"\w* \w to|strong="G2532"\w* \w know|strong="G1097"\w* \w his|strong="G3708"\w* \w will|strong="G2307"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w see|strong="G3708"\w* \w the|strong="G2532"\w* \w Righteous|strong="G1342"\w* \w One|strong="G3588"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w hear|strong="G5456"\w* \w a|strong="G2532"\w* \w voice|strong="G5456"\w* \w from|strong="G1537"\w* \w his|strong="G3708"\w* \w mouth|strong="G4750"\w*. +\v 15 \w For|strong="G3754"\w* \w you|strong="G3739"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w a|strong="G2532"\w* \w witness|strong="G3144"\w* \w for|strong="G3754"\w* \w him|strong="G3739"\w* \w to|strong="G4314"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w* \w of|strong="G2532"\w* \w what|strong="G3739"\w* \w you|strong="G3739"\w* \w have|strong="G2532"\w* \w seen|strong="G3708"\w* \w and|strong="G2532"\w* heard. +\v 16 \w Now|strong="G3568"\w* \w why|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G4771"\w* wait? Arise, \w be|strong="G2532"\w* baptized, \w and|strong="G2532"\w* \w wash|strong="G2532"\w* away \w your|strong="G2532"\w* sins, \w calling|strong="G1941"\w* \w on|strong="G1941"\w* \w the|strong="G2532"\w* \w name|strong="G3686"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G3588"\w*.’ +\p +\v 17 “\w When|strong="G1161"\w* \w I|strong="G1473"\w* \w had|strong="G2532"\w* \w returned|strong="G5290"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w* \w and|strong="G2532"\w* \w while|strong="G1722"\w* \w I|strong="G1473"\w* \w prayed|strong="G4336"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w*, \w I|strong="G1473"\w* \w fell|strong="G1096"\w* \w into|strong="G1519"\w* \w a|strong="G1096"\w* \w trance|strong="G1611"\w* +\v 18 \w and|strong="G2532"\w* \w saw|strong="G3708"\w* \w him|strong="G3708"\w* \w saying|strong="G3004"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w*, \wj ‘\+w Hurry|strong="G4692"\+w* \+w and|strong="G2532"\+w* \+w get|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w of|strong="G1537"\+w* \+w Jerusalem|strong="G2419"\+w* \+w quickly|strong="G5034"\+w*, \+w because|strong="G1360"\+w* \+w they|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w not|strong="G3756"\+w* \+w receive|strong="G3858"\+w* \+w testimony|strong="G3141"\+w* \+w concerning|strong="G4012"\+w* \+w me|strong="G1473"\+w* \+w from|strong="G1537"\+w* \+w you|strong="G4771"\+w*.’\wj* +\v 19 \w I|strong="G1473"\w* \w said|strong="G3004"\w*, ‘\w Lord|strong="G2962"\w*, \w they|strong="G2532"\w* \w themselves|strong="G1510"\w* \w know|strong="G1987"\w* \w that|strong="G3754"\w* \w I|strong="G1473"\w* \w imprisoned|strong="G5439"\w* \w and|strong="G2532"\w* \w beat|strong="G1194"\w* \w in|strong="G1909"\w* \w every|strong="G2596"\w* \w synagogue|strong="G4864"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w believed|strong="G4100"\w* \w in|strong="G1909"\w* \w you|strong="G4771"\w*. +\v 20 \w When|strong="G3753"\w* \w the|strong="G2532"\w* blood \w of|strong="G2532"\w* \w Stephen|strong="G4736"\w*, \w your|strong="G2532"\w* \w witness|strong="G3144"\w*, \w was|strong="G1510"\w* \w shed|strong="G1632"\w*, \w I|strong="G2532"\w* \w also|strong="G2532"\w* \w was|strong="G1510"\w* \w standing|strong="G2186"\w* \w by|strong="G2532"\w*, \w consenting|strong="G2532"\w* \w to|strong="G2532"\w* \w his|strong="G2532"\w* death, \w and|strong="G2532"\w* \w guarding|strong="G5442"\w* \w the|strong="G2532"\w* \w cloaks|strong="G2440"\w* \w of|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* killed \w him|strong="G3588"\w*.’ +\p +\v 21 “\w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w me|strong="G1473"\w*, \wj ‘\+w Depart|strong="G4198"\+w*, \+w for|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w send|strong="G1821"\+w* \+w you|strong="G4771"\+w* \+w out|strong="G2532"\+w* \+w far|strong="G3112"\+w* \+w from|strong="G2532"\+w* \+w here|strong="G1519"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w Gentiles|strong="G1484"\+w*.’\wj* ” +\p +\v 22 \w They|strong="G2532"\w* listened \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w until|strong="G2532"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w that|strong="G3588"\w*; \w then|strong="G2532"\w* \w they|strong="G2532"\w* \w lifted|strong="G1869"\w* \w up|strong="G1869"\w* \w their|strong="G2532"\w* \w voice|strong="G5456"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “Rid \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w of|strong="G3056"\w* \w this|strong="G3778"\w* \w fellow|strong="G5108"\w*, \w for|strong="G1063"\w* \w he|strong="G2532"\w* isn’\w t|strong="G3588"\w* \w fit|strong="G2520"\w* \w to|strong="G2532"\w* \w live|strong="G2198"\w*!” +\p +\v 23 \w As|strong="G1519"\w* \w they|strong="G2532"\w* \w cried|strong="G2905"\w* \w out|strong="G2905"\w*, \w threw|strong="G4496"\w* \w off|strong="G4495"\w* \w their|strong="G2532"\w* \w cloaks|strong="G2440"\w*, \w and|strong="G2532"\w* \w threw|strong="G4496"\w* \w dust|strong="G2868"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* air, +\v 24 \w the|strong="G1519"\w* \w commanding|strong="G2753"\w* officer \w commanded|strong="G2753"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w be|strong="G1519"\w* \w brought|strong="G1521"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w barracks|strong="G3925"\w*, \w ordering|strong="G2753"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w be|strong="G1519"\w* examined \w by|strong="G1223"\w* \w scourging|strong="G3148"\w*, \w that|strong="G2443"\w* \w he|strong="G3739"\w* might \w know|strong="G1921"\w* \w for|strong="G1519"\w* \w what|strong="G3739"\w* crime \w they|strong="G3588"\w* \w shouted|strong="G2019"\w* \w against|strong="G1519"\w* \w him|strong="G3588"\w* \w like|strong="G3779"\w* \w that|strong="G2443"\w*. +\v 25 \w When|strong="G1161"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* tied \w him|strong="G3588"\w* \w up|strong="G2476"\w* \w with|strong="G4314"\w* straps, \w Paul|strong="G3972"\w* \w asked|strong="G3004"\w* \w the|strong="G2532"\w* \w centurion|strong="G1543"\w* \w who|strong="G3588"\w* \w stood|strong="G2476"\w* \w by|strong="G4314"\w*, “\w Is|strong="G3588"\w* \w it|strong="G2532"\w* \w lawful|strong="G1832"\w* \w for|strong="G4314"\w* \w you|strong="G5210"\w* \w to|strong="G4314"\w* \w scourge|strong="G3147"\w* \w a|strong="G5613"\w* man \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w a|strong="G5613"\w* \w Roman|strong="G4514"\w*, \w and|strong="G2532"\w* \w not|strong="G2532"\w* \w found|strong="G2532"\w* guilty?” +\p +\v 26 \w When|strong="G1161"\w* \w the|strong="G1161"\w* \w centurion|strong="G1543"\w* heard \w it|strong="G1161"\w*, \w he|strong="G1161"\w* \w went|strong="G4334"\w* \w to|strong="G3004"\w* \w the|strong="G1161"\w* commanding officer \w and|strong="G1161"\w* \w told|strong="G3004"\w* \w him|strong="G3588"\w*, “Watch \w what|strong="G5101"\w* \w you|strong="G3004"\w* \w are|strong="G1510"\w* \w about|strong="G3195"\w* \w to|strong="G3004"\w* \w do|strong="G4160"\w*, \w for|strong="G1063"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w is|strong="G1510"\w* \w a|strong="G1510"\w* \w Roman|strong="G4514"\w*!” +\p +\v 27 \w The|strong="G1161"\w* commanding officer \w came|strong="G4334"\w* \w and|strong="G1161"\w* \w asked|strong="G3004"\w* \w him|strong="G3588"\w*, “\w Tell|strong="G3004"\w* \w me|strong="G1473"\w*, \w are|strong="G1510"\w* \w you|strong="G4771"\w* \w a|strong="G1510"\w* \w Roman|strong="G4514"\w*?” +\p \w He|strong="G1161"\w* \w said|strong="G3004"\w*, “\w Yes|strong="G3483"\w*.” +\p +\v 28 \w The|strong="G2532"\w* commanding officer \w answered|strong="G5346"\w*, “\w I|strong="G1473"\w* bought \w my|strong="G1473"\w* \w citizenship|strong="G4174"\w* \w for|strong="G1161"\w* \w a|strong="G2532"\w* \w great|strong="G4183"\w* \w price|strong="G4183"\w*.” +\p \w Paul|strong="G3972"\w* \w said|strong="G5346"\w*, “\w But|strong="G1161"\w* \w I|strong="G1473"\w* \w was|strong="G3588"\w* \w born|strong="G1080"\w* \w a|strong="G2532"\w* Roman.” +\p +\v 29 \w Immediately|strong="G2112"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G1510"\w* \w about|strong="G3195"\w* \w to|strong="G2532"\w* examine \w him|strong="G3588"\w* departed \w from|strong="G2532"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* commanding officer \w also|strong="G2532"\w* \w was|strong="G1510"\w* \w afraid|strong="G5399"\w* \w when|strong="G1161"\w* \w he|strong="G2532"\w* \w realized|strong="G1921"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w Roman|strong="G4514"\w*, \w because|strong="G3754"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w bound|strong="G1210"\w* \w him|strong="G3588"\w*. +\v 30 \w But|strong="G1161"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w next|strong="G1887"\w* \w day|strong="G1887"\w*, \w desiring|strong="G1014"\w* \w to|strong="G1519"\w* \w know|strong="G1097"\w* \w the|strong="G2532"\w* truth \w about|strong="G1519"\w* \w why|strong="G5101"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w accused|strong="G2723"\w* \w by|strong="G5259"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w*, \w he|strong="G2532"\w* freed \w him|strong="G3588"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* bonds \w and|strong="G2532"\w* \w commanded|strong="G2753"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w council|strong="G4892"\w* \w to|strong="G1519"\w* \w come|strong="G4905"\w* \w together|strong="G4905"\w*, \w and|strong="G2532"\w* \w brought|strong="G2609"\w* \w Paul|strong="G3972"\w* \w down|strong="G2609"\w* \w and|strong="G2532"\w* \w set|strong="G2476"\w* \w him|strong="G3588"\w* \w before|strong="G1519"\w* \w them|strong="G3588"\w*. +\c 23 +\p +\v 1 \w Paul|strong="G3972"\w*, looking steadfastly \w at|strong="G1161"\w* \w the|strong="G3956"\w* \w council|strong="G4892"\w*, \w said|strong="G3004"\w*, “Brothers, \w I|strong="G1473"\w* \w have|strong="G1473"\w* \w lived|strong="G4176"\w* \w before|strong="G3588"\w* \w God|strong="G2316"\w* \w in|strong="G2316"\w* \w all|strong="G3956"\w* \w good|strong="G3956"\w* \w conscience|strong="G4893"\w* until \w today|strong="G2250"\w*.” +\p +\v 2 \w The|strong="G1161"\w* high priest, Ananias, \w commanded|strong="G2004"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w stood|strong="G3936"\w* \w by|strong="G3936"\w* \w him|strong="G3588"\w* \w to|strong="G1161"\w* \w strike|strong="G5180"\w* \w him|strong="G3588"\w* \w on|strong="G1161"\w* \w the|strong="G1161"\w* \w mouth|strong="G4750"\w*. +\p +\v 3 \w Then|strong="G2532"\w* \w Paul|strong="G3972"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w God|strong="G2316"\w* \w will|strong="G2316"\w* \w strike|strong="G5180"\w* \w you|strong="G4771"\w*, \w you|strong="G4771"\w* \w whitewashed|strong="G2867"\w* \w wall|strong="G5109"\w*! \w Do|strong="G2919"\w* \w you|strong="G4771"\w* \w sit|strong="G2521"\w* \w to|strong="G4314"\w* \w judge|strong="G2919"\w* \w me|strong="G1473"\w* \w according|strong="G2596"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w*, \w and|strong="G2532"\w* \w command|strong="G3004"\w* \w me|strong="G1473"\w* \w to|strong="G4314"\w* \w be|strong="G2532"\w* \w struck|strong="G5180"\w* \w contrary|strong="G2316"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w*?” +\p +\v 4 \w Those|strong="G3588"\w* \w who|strong="G3588"\w* \w stood|strong="G3936"\w* \w by|strong="G3936"\w* \w said|strong="G3004"\w*, “\w Do|strong="G3004"\w* \w you|strong="G3004"\w* malign \w God|strong="G2316"\w*’s \w high|strong="G2316"\w* priest?” +\p +\v 5 \w Paul|strong="G3972"\w* \w said|strong="G3004"\w*, “\w I|strong="G1063"\w* didn’\w t|strong="G3588"\w* \w know|strong="G1492"\w*, brothers, \w that|strong="G3754"\w* \w he|strong="G3754"\w* \w was|strong="G1510"\w* high priest. \w For|strong="G1063"\w* \w it|strong="G3754"\w* \w is|strong="G1510"\w* \w written|strong="G1125"\w*, ‘\w You|strong="G4771"\w* \w shall|strong="G3748"\w* \w not|strong="G3756"\w* \w speak|strong="G3004"\w* \w evil|strong="G2560"\w* \w of|strong="G2992"\w* \w a|strong="G1510"\w* ruler \w of|strong="G2992"\w* \w your|strong="G3588"\w* \w people|strong="G2992"\w*.’”\x + \xo 23:5 \xt Exodus 22:28\x* +\p +\v 6 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w Paul|strong="G3972"\w* \w perceived|strong="G1097"\w* \w that|strong="G3754"\w* \w the|strong="G1722"\w* \w one|strong="G1520"\w* \w part|strong="G3313"\w* \w were|strong="G1510"\w* \w Sadducees|strong="G4523"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w other|strong="G2087"\w* \w Pharisees|strong="G5330"\w*, \w he|strong="G2532"\w* \w cried|strong="G2896"\w* \w out|strong="G2896"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w council|strong="G4892"\w*, “\w Men|strong="G3588"\w* \w and|strong="G2532"\w* brothers, \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w a|strong="G2532"\w* \w Pharisee|strong="G5330"\w*, \w a|strong="G2532"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w Pharisees|strong="G5330"\w*. \w Concerning|strong="G4012"\w* \w the|strong="G1722"\w* \w hope|strong="G1680"\w* \w and|strong="G2532"\w* resurrection \w of|strong="G5207"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w being|strong="G1510"\w* \w judged|strong="G2919"\w*!” +\p +\v 7 \w When|strong="G1161"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w said|strong="G2980"\w* \w this|strong="G3778"\w*, \w an|strong="G2532"\w* argument \w arose|strong="G1096"\w* \w between|strong="G2532"\w* \w the|strong="G2532"\w* \w Pharisees|strong="G5330"\w* \w and|strong="G2532"\w* \w Sadducees|strong="G4523"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w crowd|strong="G4128"\w* \w was|strong="G1096"\w* \w divided|strong="G4977"\w*. +\v 8 \w For|strong="G1063"\w* \w the|strong="G1161"\w* \w Sadducees|strong="G4523"\w* \w say|strong="G3004"\w* \w that|strong="G3588"\w* \w there|strong="G1161"\w* \w is|strong="G1510"\w* \w no|strong="G3361"\w* resurrection, \w nor|strong="G3383"\w* angel, \w nor|strong="G3383"\w* \w spirit|strong="G4151"\w*; \w but|strong="G1161"\w* \w the|strong="G1161"\w* \w Pharisees|strong="G5330"\w* \w confess|strong="G3670"\w* \w all|strong="G3361"\w* \w of|strong="G4151"\w* \w these|strong="G3588"\w*. +\v 9 \w A|strong="G1096"\w* \w great|strong="G3173"\w* \w clamor|strong="G2906"\w* \w arose|strong="G1096"\w*, \w and|strong="G2532"\w* \w some|strong="G5100"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w scribes|strong="G1122"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w Pharisees|strong="G5330"\w*’ \w part|strong="G3313"\w* \w stood|strong="G3588"\w* \w up|strong="G2532"\w*, \w and|strong="G2532"\w* contended, \w saying|strong="G3004"\w*, “\w We|strong="G2532"\w* \w find|strong="G2147"\w* \w no|strong="G3762"\w* \w evil|strong="G2556"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* \w man|strong="G5100"\w*. \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w a|strong="G1096"\w* \w spirit|strong="G4151"\w* \w or|strong="G2228"\w* angel \w has|strong="G1096"\w* \w spoken|strong="G2980"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \w let|strong="G1096"\w*’s \w not|strong="G3762"\w* fight \w against|strong="G1722"\w* \w God|strong="G3004"\w*!” +\p +\v 10 \w When|strong="G1161"\w* \w a|strong="G1096"\w* \w great|strong="G4183"\w* argument \w arose|strong="G1096"\w*, \w the|strong="G1519"\w* \w commanding|strong="G2753"\w* officer, \w fearing|strong="G5399"\w* \w that|strong="G3588"\w* \w Paul|strong="G3972"\w* \w would|strong="G1096"\w* \w be|strong="G1096"\w* \w torn|strong="G1288"\w* \w in|strong="G1519"\w* \w pieces|strong="G1288"\w* \w by|strong="G5259"\w* \w them|strong="G3588"\w*, \w commanded|strong="G2753"\w* \w the|strong="G1519"\w* \w soldiers|strong="G4753"\w* \w to|strong="G1519"\w* \w go|strong="G2597"\w* \w down|strong="G2597"\w* \w and|strong="G1161"\w* \w take|strong="G1096"\w* \w him|strong="G3588"\w* \w by|strong="G5259"\w* force \w from|strong="G1537"\w* \w among|strong="G1519"\w* \w them|strong="G3588"\w* \w and|strong="G1161"\w* \w bring|strong="G1519"\w* \w him|strong="G3588"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w barracks|strong="G3925"\w*. +\p +\v 11 \w The|strong="G2532"\w* \w following|strong="G1966"\w* \w night|strong="G3571"\w*, \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w stood|strong="G2186"\w* \w by|strong="G2532"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “Cheer \+w up|strong="G1210"\+w*, \+w Paul|strong="G3588"\+w*, \+w for|strong="G1063"\+w* \+w as|strong="G5613"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2532"\+w* \+w testified|strong="G3140"\+w* \+w about|strong="G4012"\+w* \+w me|strong="G1473"\+w* \+w at|strong="G1519"\+w* \+w Jerusalem|strong="G2419"\+w*, \+w so|strong="G3779"\+w* \+w you|strong="G4771"\+w* \+w must|strong="G1163"\+w* \+w testify|strong="G3140"\+w* \+w also|strong="G2532"\+w* \+w at|strong="G1519"\+w* \+w Rome|strong="G4516"\+w*.”\wj* +\p +\v 12 \w When|strong="G1161"\w* \w it|strong="G1161"\w* \w was|strong="G1096"\w* \w day|strong="G2250"\w*, \w some|strong="G3739"\w* \w of|strong="G2250"\w* \w the|strong="G1161"\w* \w Jews|strong="G2453"\w* \w banded|strong="G4160"\w* \w together|strong="G4963"\w* \w and|strong="G1161"\w* bound \w themselves|strong="G1438"\w* under \w a|strong="G1096"\w* curse, \w saying|strong="G3004"\w* \w that|strong="G3739"\w* \w they|strong="G1161"\w* \w would|strong="G1096"\w* \w neither|strong="G3383"\w* \w eat|strong="G2068"\w* \w nor|strong="G3383"\w* \w drink|strong="G4095"\w* \w until|strong="G2193"\w* \w they|strong="G1161"\w* \w had|strong="G3972"\w* killed \w Paul|strong="G3972"\w*. +\v 13 \w There|strong="G1161"\w* \w were|strong="G1510"\w* \w more|strong="G4119"\w* \w than|strong="G4183"\w* \w forty|strong="G5062"\w* \w people|strong="G1510"\w* \w who|strong="G3588"\w* \w had|strong="G1510"\w* \w made|strong="G4160"\w* \w this|strong="G3778"\w* \w conspiracy|strong="G4945"\w*. +\v 14 \w They|strong="G2532"\w* \w came|strong="G4334"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w We|strong="G3739"\w* \w have|strong="G2532"\w* bound \w ourselves|strong="G1438"\w* under \w a|strong="G2532"\w* \w great|strong="G2532"\w* curse \w to|strong="G2532"\w* \w taste|strong="G1089"\w* \w nothing|strong="G3367"\w* \w until|strong="G2193"\w* \w we|strong="G3739"\w* \w have|strong="G2532"\w* killed \w Paul|strong="G3972"\w*. +\v 15 \w Now|strong="G1161"\w* \w therefore|strong="G3767"\w*, \w you|strong="G5210"\w* \w with|strong="G4862"\w* \w the|strong="G1519"\w* \w council|strong="G4892"\w* inform \w the|strong="G1519"\w* commanding officer \w that|strong="G3588"\w* \w he|strong="G1161"\w* \w should|strong="G3195"\w* \w bring|strong="G2609"\w* \w him|strong="G3588"\w* \w down|strong="G2609"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* tomorrow, \w as|strong="G5613"\w* \w though|strong="G5613"\w* \w you|strong="G5210"\w* \w were|strong="G1510"\w* \w going|strong="G3195"\w* \w to|strong="G1519"\w* \w judge|strong="G4253"\w* \w his|strong="G1519"\w* \w case|strong="G3588"\w* \w more|strong="G1161"\w* exactly. \w We|strong="G2249"\w* \w are|strong="G1510"\w* \w ready|strong="G2092"\w* \w to|strong="G1519"\w* kill \w him|strong="G3588"\w* \w before|strong="G4253"\w* \w he|strong="G1161"\w* \w comes|strong="G1510"\w* \w near|strong="G1448"\w*.” +\p +\v 16 \w But|strong="G1161"\w* \w Paul|strong="G3972"\w*’s sister’s \w son|strong="G5207"\w* heard \w they|strong="G2532"\w* \w were|strong="G3588"\w* lying \w in|strong="G1519"\w* \w wait|strong="G1747"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w came|strong="G3854"\w* \w and|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w barracks|strong="G3925"\w* \w and|strong="G2532"\w* told \w Paul|strong="G3972"\w*. +\v 17 \w Paul|strong="G3972"\w* \w summoned|strong="G4341"\w* \w one|strong="G1520"\w* \w of|strong="G1520"\w* \w the|strong="G1161"\w* \w centurions|strong="G1543"\w* \w and|strong="G1161"\w* \w said|strong="G5346"\w*, “Bring \w this|strong="G3778"\w* \w young|strong="G3494"\w* \w man|strong="G5100"\w* \w to|strong="G4314"\w* \w the|strong="G1161"\w* commanding officer, \w for|strong="G1063"\w* \w he|strong="G1161"\w* \w has|strong="G2192"\w* \w something|strong="G5100"\w* \w to|strong="G4314"\w* tell \w him|strong="G3588"\w*.” +\p +\v 18 \w So|strong="G3767"\w* \w he|strong="G2532"\w* \w took|strong="G3880"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w brought|strong="G2532"\w* \w him|strong="G3588"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* commanding officer \w and|strong="G2532"\w* \w said|strong="G5346"\w*, “\w Paul|strong="G3972"\w*, \w the|strong="G2532"\w* \w prisoner|strong="G1198"\w*, \w summoned|strong="G4341"\w* \w me|strong="G1473"\w* \w and|strong="G2532"\w* \w asked|strong="G2065"\w* \w me|strong="G1473"\w* \w to|strong="G4314"\w* \w bring|strong="G2532"\w* \w this|strong="G3778"\w* \w young|strong="G3495"\w* \w man|strong="G5100"\w* \w to|strong="G4314"\w* \w you|strong="G4771"\w*. \w He|strong="G2532"\w* \w has|strong="G2192"\w* \w something|strong="G5100"\w* \w to|strong="G4314"\w* \w tell|strong="G2980"\w* \w you|strong="G4771"\w*.” +\p +\v 19 \w The|strong="G2532"\w* commanding officer \w took|strong="G1949"\w* \w him|strong="G3588"\w* \w by|strong="G2596"\w* \w the|strong="G2532"\w* \w hand|strong="G5495"\w*, \w and|strong="G2532"\w* \w going|strong="G2532"\w* \w aside|strong="G2596"\w*, \w asked|strong="G4441"\w* \w him|strong="G3588"\w* \w privately|strong="G2398"\w*, “\w What|strong="G5101"\w* \w is|strong="G1510"\w* \w it|strong="G2532"\w* \w that|strong="G3739"\w* \w you|strong="G3739"\w* \w have|strong="G2192"\w* \w to|strong="G2532"\w* tell \w me|strong="G1473"\w*?” +\p +\v 20 \w He|strong="G1161"\w* \w said|strong="G3004"\w*, “\w The|strong="G1519"\w* \w Jews|strong="G2453"\w* \w have|strong="G3748"\w* \w agreed|strong="G4934"\w* \w to|strong="G1519"\w* \w ask|strong="G2065"\w* \w you|strong="G4771"\w* \w to|strong="G1519"\w* \w bring|strong="G2609"\w* \w Paul|strong="G3972"\w* \w down|strong="G2609"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w council|strong="G4892"\w* tomorrow, \w as|strong="G5613"\w* \w though|strong="G5613"\w* \w intending|strong="G3195"\w* \w to|strong="G1519"\w* \w inquire|strong="G4441"\w* \w somewhat|strong="G5100"\w* \w more|strong="G1161"\w* accurately \w concerning|strong="G4012"\w* \w him|strong="G3588"\w*. +\v 21 \w Therefore|strong="G3767"\w* don’\w t|strong="G3588"\w* \w yield|strong="G3982"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, \w for|strong="G1063"\w* \w more|strong="G4119"\w* \w than|strong="G4183"\w* \w forty|strong="G5062"\w* \w men|strong="G3588"\w* lie \w in|strong="G2532"\w* \w wait|strong="G1748"\w* \w for|strong="G1063"\w* \w him|strong="G3588"\w*, \w who|strong="G3739"\w* \w have|strong="G2532"\w* bound \w themselves|strong="G1438"\w* \w under|strong="G1537"\w* \w a|strong="G2532"\w* curse \w to|strong="G2532"\w* \w neither|strong="G3383"\w* \w eat|strong="G2068"\w* \w nor|strong="G3383"\w* \w drink|strong="G4095"\w* \w until|strong="G2193"\w* \w they|strong="G2532"\w* \w have|strong="G2532"\w* killed \w him|strong="G3588"\w*. \w Now|strong="G3568"\w* \w they|strong="G2532"\w* \w are|strong="G1510"\w* \w ready|strong="G2092"\w*, \w looking|strong="G4327"\w* \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w promise|strong="G1860"\w* \w from|strong="G1537"\w* \w you|strong="G4771"\w*.” +\p +\v 22 \w So|strong="G3767"\w* \w the|strong="G4314"\w* \w commanding|strong="G3853"\w* officer \w let|strong="G3767"\w* \w the|strong="G4314"\w* \w young|strong="G3495"\w* \w man|strong="G3778"\w* go, \w charging|strong="G3853"\w* \w him|strong="G3588"\w*, “\w Tell|strong="G1583"\w* \w no|strong="G3367"\w* \w one|strong="G3367"\w* \w that|strong="G3754"\w* \w you|strong="G3754"\w* \w have|strong="G1473"\w* revealed \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w to|strong="G4314"\w* \w me|strong="G1473"\w*.” +\p +\v 23 \w He|strong="G2532"\w* \w called|strong="G3004"\w* \w to|strong="G2532"\w* himself \w two|strong="G1417"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w centurions|strong="G1543"\w*, \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Prepare|strong="G2090"\w* \w two|strong="G1417"\w* \w hundred|strong="G1250"\w* \w soldiers|strong="G4757"\w* \w to|strong="G2532"\w* \w go|strong="G4198"\w* \w as|strong="G2532"\w* \w far|strong="G2193"\w* \w as|strong="G2532"\w* \w Caesarea|strong="G2542"\w*, \w with|strong="G2532"\w* \w seventy|strong="G1440"\w* \w horsemen|strong="G2460"\w* \w and|strong="G2532"\w* \w two|strong="G1417"\w* \w hundred|strong="G1250"\w* \w men|strong="G5100"\w* armed \w with|strong="G2532"\w* spears, \w at|strong="G3588"\w* \w the|strong="G2532"\w* \w third|strong="G5154"\w* \w hour|strong="G5610"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w night|strong="G3571"\w*.”\f + \fr 23:23 \ft about 9:00 p.m.\f* +\v 24 \w He|strong="G3588"\w* asked \w them|strong="G3588"\w* \w to|strong="G4314"\w* \w provide|strong="G3936"\w* \w mounts|strong="G2934"\w*, \w that|strong="G2443"\w* \w they|strong="G3588"\w* might \w set|strong="G1913"\w* \w Paul|strong="G3972"\w* \w on|strong="G1913"\w* \w one|strong="G3588"\w*, \w and|strong="G5037"\w* \w bring|strong="G1295"\w* \w him|strong="G3588"\w* \w safely|strong="G1295"\w* \w to|strong="G4314"\w* \w Felix|strong="G5344"\w* \w the|strong="G4314"\w* \w governor|strong="G2232"\w*. +\v 25 \w He|strong="G3778"\w* \w wrote|strong="G1125"\w* \w a|strong="G2192"\w* \w letter|strong="G1992"\w* \w like|strong="G5179"\w* \w this|strong="G3778"\w*: +\p +\v 26 “\w Claudius|strong="G2804"\w* \w Lysias|strong="G3079"\w* \w to|strong="G3588"\w* \w the|strong="G3588"\w* \w most|strong="G2903"\w* \w excellent|strong="G2903"\w* \w governor|strong="G2232"\w* \w Felix|strong="G5344"\w*: \w Greetings|strong="G5463"\w*. +\p +\v 27 “\w This|strong="G3778"\w* \w man|strong="G3778"\w* \w was|strong="G1510"\w* \w seized|strong="G4815"\w* \w by|strong="G5259"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w*, \w and|strong="G2532"\w* \w was|strong="G1510"\w* \w about|strong="G3195"\w* \w to|strong="G2532"\w* \w be|strong="G1510"\w* killed \w by|strong="G5259"\w* \w them|strong="G3588"\w* \w when|strong="G2532"\w* \w I|strong="G2532"\w* \w came|strong="G2532"\w* \w with|strong="G4862"\w* \w the|strong="G2532"\w* \w soldiers|strong="G4753"\w* \w and|strong="G2532"\w* \w rescued|strong="G1807"\w* \w him|strong="G3588"\w*, \w having|strong="G2532"\w* \w learned|strong="G3129"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w Roman|strong="G4514"\w*. +\v 28 \w Desiring|strong="G1014"\w* \w to|strong="G1519"\w* \w know|strong="G1921"\w* \w the|strong="G1519"\w* \w cause|strong="G1223"\w* \w why|strong="G1223"\w* \w they|strong="G3588"\w* \w accused|strong="G1458"\w* \w him|strong="G3588"\w*, \w I|strong="G3739"\w* \w brought|strong="G2609"\w* \w him|strong="G3588"\w* \w down|strong="G2609"\w* \w to|strong="G1519"\w* \w their|strong="G1519"\w* \w council|strong="G4892"\w*. +\v 29 \w I|strong="G3739"\w* \w found|strong="G2147"\w* \w him|strong="G3588"\w* \w to|strong="G1161"\w* \w be|strong="G3588"\w* \w accused|strong="G1458"\w* \w about|strong="G4012"\w* \w questions|strong="G2213"\w* \w of|strong="G4012"\w* \w their|strong="G4012"\w* \w law|strong="G3551"\w*, \w but|strong="G1161"\w* \w not|strong="G3367"\w* \w to|strong="G1161"\w* \w be|strong="G3588"\w* charged \w with|strong="G2192"\w* \w anything|strong="G3367"\w* worthy \w of|strong="G4012"\w* \w death|strong="G2288"\w* \w or|strong="G2228"\w* \w of|strong="G4012"\w* \w imprisonment|strong="G1199"\w*. +\v 30 \w When|strong="G1161"\w* \w I|strong="G1473"\w* \w was|strong="G1510"\w* \w told|strong="G3004"\w* \w that|strong="G3588"\w* \w the|strong="G2532"\w* Jews lay \w in|strong="G1519"\w* \w wait|strong="G1917"\w* \w for|strong="G1519"\w* \w the|strong="G2532"\w* \w man|strong="G1519"\w*, \w I|strong="G1473"\w* \w sent|strong="G3992"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w you|strong="G4771"\w* \w immediately|strong="G1824"\w*, \w charging|strong="G3853"\w* \w his|strong="G1519"\w* \w accusers|strong="G2725"\w* \w also|strong="G2532"\w* \w to|strong="G1519"\w* \w bring|strong="G2532"\w* \w their|strong="G2532"\w* accusations \w against|strong="G1909"\w* \w him|strong="G3588"\w* \w before|strong="G1909"\w* \w you|strong="G4771"\w*. Farewell.” +\p +\v 31 \w So|strong="G3767"\w* \w the|strong="G1519"\w* \w soldiers|strong="G4757"\w*, carrying \w out|strong="G1519"\w* \w their|strong="G2596"\w* \w orders|strong="G1299"\w*, \w took|strong="G3767"\w* \w Paul|strong="G3972"\w* \w and|strong="G3972"\w* \w brought|strong="G1519"\w* \w him|strong="G3588"\w* \w by|strong="G1223"\w* \w night|strong="G3571"\w* \w to|strong="G1519"\w* Antipatris. +\v 32 \w But|strong="G1161"\w* \w on|strong="G1519"\w* \w the|strong="G1519"\w* \w next|strong="G1887"\w* \w day|strong="G1887"\w* \w they|strong="G1161"\w* \w left|strong="G1439"\w* \w the|strong="G1519"\w* \w horsemen|strong="G2460"\w* \w to|strong="G1519"\w* \w go|strong="G1519"\w* \w with|strong="G4862"\w* \w him|strong="G3588"\w*, \w and|strong="G1161"\w* \w returned|strong="G5290"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w barracks|strong="G3925"\w*. +\v 33 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w came|strong="G1525"\w* \w to|strong="G1519"\w* \w Caesarea|strong="G2542"\w* \w and|strong="G2532"\w* delivered \w the|strong="G2532"\w* \w letter|strong="G1992"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w governor|strong="G2232"\w*, \w they|strong="G2532"\w* \w also|strong="G2532"\w* \w presented|strong="G3936"\w* \w Paul|strong="G3972"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*. +\v 34 \w When|strong="G1161"\w* \w the|strong="G2532"\w* governor \w had|strong="G2532"\w* read \w it|strong="G2532"\w*, \w he|strong="G2532"\w* \w asked|strong="G1905"\w* \w what|strong="G4169"\w* \w province|strong="G1885"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w from|strong="G1537"\w*. \w When|strong="G1161"\w* \w he|strong="G2532"\w* \w understood|strong="G4441"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w from|strong="G1537"\w* \w Cilicia|strong="G2791"\w*, \w he|strong="G2532"\w* \w said|strong="G1161"\w*, +\v 35 “\w I|strong="G2532"\w* \w will|strong="G2532"\w* \w hear|strong="G1251"\w* \w you|strong="G4771"\w* fully \w when|strong="G3752"\w* \w your|strong="G2532"\w* \w accusers|strong="G2725"\w* \w also|strong="G2532"\w* \w arrive|strong="G3854"\w*.” \w He|strong="G2532"\w* \w commanded|strong="G2753"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w be|strong="G2532"\w* \w kept|strong="G5442"\w* \w in|strong="G1722"\w* \w Herod|strong="G2264"\w*’s \w palace|strong="G4232"\w*. +\c 24 +\p +\v 1 \w After|strong="G3326"\w* \w five|strong="G4002"\w* \w days|strong="G2250"\w*, \w the|strong="G2532"\w* \w high|strong="G2532"\w* priest, Ananias, \w came|strong="G2597"\w* \w down|strong="G2597"\w* \w with|strong="G3326"\w* \w certain|strong="G5100"\w* \w elders|strong="G4245"\w* \w and|strong="G2532"\w* \w an|strong="G2532"\w* \w orator|strong="G4489"\w*, \w one|strong="G5100"\w* \w Tertullus|strong="G5061"\w*. \w They|strong="G2532"\w* \w informed|strong="G1718"\w* \w the|strong="G2532"\w* \w governor|strong="G2232"\w* \w against|strong="G2596"\w* \w Paul|strong="G3972"\w*. +\v 2 \w When|strong="G1161"\w* \w he|strong="G2532"\w* \w was|strong="G1096"\w* \w called|strong="G2564"\w*, \w Tertullus|strong="G5061"\w* \w began|strong="G1096"\w* \w to|strong="G2532"\w* \w accuse|strong="G2723"\w* \w him|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w Seeing|strong="G1223"\w* \w that|strong="G3588"\w* \w by|strong="G1223"\w* \w you|strong="G4771"\w* \w we|strong="G2532"\w* \w enjoy|strong="G5177"\w* \w much|strong="G4183"\w* \w peace|strong="G1515"\w*, \w and|strong="G2532"\w* \w that|strong="G3588"\w* prosperity \w is|strong="G3588"\w* \w coming|strong="G1096"\w* \w to|strong="G2532"\w* \w this|strong="G3588"\w* \w nation|strong="G1484"\w* \w by|strong="G1223"\w* \w your|strong="G4674"\w* \w foresight|strong="G4307"\w*, +\v 3 \w we|strong="G2532"\w* accept \w it|strong="G2532"\w* \w in|strong="G2532"\w* \w all|strong="G3956"\w* ways \w and|strong="G2532"\w* \w in|strong="G2532"\w* \w all|strong="G3956"\w* \w places|strong="G3837"\w*, \w most|strong="G4183"\w* \w excellent|strong="G2903"\w* \w Felix|strong="G5344"\w*, \w with|strong="G3326"\w* \w all|strong="G3956"\w* \w thankfulness|strong="G2169"\w*. +\v 4 \w But|strong="G1161"\w* \w that|strong="G2443"\w* \w I|strong="G1473"\w* don’\w t|strong="G3588"\w* \w delay|strong="G1465"\w* \w you|strong="G4771"\w*, \w I|strong="G1473"\w* \w entreat|strong="G3870"\w* \w you|strong="G4771"\w* \w to|strong="G2443"\w* \w bear|strong="G2443"\w* \w with|strong="G1909"\w* \w us|strong="G2249"\w* \w and|strong="G1161"\w* hear \w a|strong="G1909"\w* few \w words|strong="G4935"\w*. +\v 5 \w For|strong="G1063"\w* \w we|strong="G1063"\w* \w have|strong="G2532"\w* \w found|strong="G2147"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w a|strong="G2532"\w* plague, \w an|strong="G2532"\w* instigator \w of|strong="G2532"\w* insurrections \w among|strong="G2596"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w throughout|strong="G2596"\w* \w the|strong="G2532"\w* \w world|strong="G3625"\w*, \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w ringleader|strong="G4414"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* sect \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Nazarenes|strong="G3480"\w*. +\v 6 \w He|strong="G2532"\w* \w even|strong="G2532"\w* \w tried|strong="G3985"\w* \w to|strong="G2532"\w* profane \w the|strong="G2532"\w* \w temple|strong="G2411"\w*, \w and|strong="G2532"\w* \w we|strong="G3739"\w* \w arrested|strong="G2902"\w* \w him|strong="G3588"\w*.\f + \fr 24:6 \ft TR adds “We wanted to judge him according to our law,”\f* +\v 7 \f + \fr 24:7 \ft TR adds “but the commanding officer, Lysias, came by and with great violence took him out of our hands,”\f* +\v 8 \f + \fr 24:8 \ft TR adds “commanding his accusers to come to you.”\f*\w By|strong="G3844"\w* examining \w him|strong="G3739"\w* yourself \w you|strong="G3739"\w* \w may|strong="G1410"\w* \w ascertain|strong="G1921"\w* \w all|strong="G3956"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w* \w of|strong="G4012"\w* \w which|strong="G3739"\w* \w we|strong="G2249"\w* \w accuse|strong="G2723"\w* \w him|strong="G3739"\w*.” +\p +\v 9 \w The|strong="G2532"\w* \w Jews|strong="G2453"\w* \w also|strong="G2532"\w* \w joined|strong="G4934"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* attack, affirming \w that|strong="G3588"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w were|strong="G3588"\w* \w so|strong="G3779"\w*. +\p +\v 10 \w When|strong="G1510"\w* \w the|strong="G1537"\w* \w governor|strong="G2232"\w* \w had|strong="G3972"\w* \w beckoned|strong="G3506"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w* \w to|strong="G3004"\w* \w speak|strong="G3004"\w*, \w Paul|strong="G3972"\w* \w answered|strong="G3004"\w*, “\w Because|strong="G1537"\w* \w I|strong="G3778"\w* \w know|strong="G1987"\w* \w that|strong="G3588"\w* \w you|strong="G4771"\w* \w have|strong="G1510"\w* \w been|strong="G1510"\w* \w a|strong="G1510"\w* \w judge|strong="G2923"\w* \w of|strong="G1537"\w* \w this|strong="G3778"\w* \w nation|strong="G1484"\w* \w for|strong="G4012"\w* \w many|strong="G4183"\w* \w years|strong="G2094"\w*, \w I|strong="G3778"\w* \w cheerfully|strong="G2115"\w* make \w my|strong="G1683"\w* defense, +\v 11 \w seeing|strong="G3754"\w* \w that|strong="G3754"\w* \w you|strong="G4771"\w* \w can|strong="G1410"\w* \w verify|strong="G1921"\w* \w that|strong="G3754"\w* \w it|strong="G3754"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w more|strong="G4119"\w* \w than|strong="G4183"\w* \w twelve|strong="G1427"\w* \w days|strong="G2250"\w* \w since|strong="G3754"\w* \w I|strong="G1473"\w* \w went|strong="G3739"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w worship|strong="G4352"\w* \w at|strong="G1519"\w* \w Jerusalem|strong="G2419"\w*. +\v 12 \w In|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w* \w they|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w find|strong="G2147"\w* \w me|strong="G1473"\w* \w disputing|strong="G1256"\w* \w with|strong="G1722"\w* \w anyone|strong="G5100"\w* \w or|strong="G2228"\w* stirring \w up|strong="G2532"\w* \w a|strong="G2532"\w* \w crowd|strong="G3793"\w*, \w either|strong="G2228"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w synagogues|strong="G4864"\w* \w or|strong="G2228"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w city|strong="G4172"\w*. +\v 13 \w Nor|strong="G3761"\w* \w can|strong="G1410"\w* \w they|strong="G3739"\w* \w prove|strong="G3936"\w* \w to|strong="G1410"\w* \w you|strong="G4771"\w* \w the|strong="G3739"\w* \w things|strong="G3739"\w* \w of|strong="G4012"\w* \w which|strong="G3739"\w* \w they|strong="G3739"\w* \w now|strong="G3570"\w* \w accuse|strong="G2723"\w* \w me|strong="G1473"\w*. +\v 14 \w But|strong="G1161"\w* \w this|strong="G3778"\w* \w I|strong="G3739"\w* \w confess|strong="G3670"\w* \w to|strong="G2532"\w* \w you|strong="G4771"\w*, \w that|strong="G3754"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w Way|strong="G3598"\w*, \w which|strong="G3739"\w* \w they|strong="G2532"\w* \w call|strong="G3004"\w* \w a|strong="G2532"\w* sect, \w so|strong="G3779"\w* \w I|strong="G3739"\w* \w serve|strong="G3000"\w* \w the|strong="G1722"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* \w our|strong="G2316"\w* \w fathers|strong="G3971"\w*, \w believing|strong="G4100"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w which|strong="G3739"\w* \w are|strong="G3588"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w*, \w and|strong="G2532"\w* \w which|strong="G3739"\w* \w are|strong="G3588"\w* \w written|strong="G1125"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w prophets|strong="G4396"\w*; +\v 15 \w having|strong="G2192"\w* \w hope|strong="G1680"\w* \w toward|strong="G1519"\w* \w God|strong="G2316"\w*, \w which|strong="G3739"\w* \w these|strong="G3778"\w* \w also|strong="G2532"\w* \w themselves|strong="G1519"\w* look \w for|strong="G1519"\w*, \w that|strong="G3739"\w* \w there|strong="G2532"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w a|strong="G2192"\w* resurrection \w of|strong="G2316"\w* \w the|strong="G2532"\w* dead, \w both|strong="G2532"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w just|strong="G1342"\w* \w and|strong="G2532"\w* unjust. +\v 16 \w In|strong="G1722"\w* \w this|strong="G3778"\w* \w I|strong="G2532"\w* \w also|strong="G2532"\w* practice \w always|strong="G3956"\w* \w having|strong="G2192"\w* \w a|strong="G2192"\w* \w conscience|strong="G4893"\w* void \w of|strong="G1223"\w* offense \w toward|strong="G4314"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w men|strong="G3956"\w*. +\v 17 \w Now|strong="G1161"\w* \w after|strong="G1161"\w* \w some|strong="G3588"\w* \w years|strong="G2094"\w*, \w I|strong="G1473"\w* \w came|strong="G3854"\w* \w to|strong="G1519"\w* \w bring|strong="G4160"\w* \w gifts|strong="G1654"\w* \w for|strong="G1519"\w* \w the|strong="G2532"\w* needy \w to|strong="G1519"\w* \w my|strong="G1473"\w* \w nation|strong="G1484"\w*, \w and|strong="G2532"\w* \w offerings|strong="G4376"\w*; +\v 18 \w amid|strong="G3326"\w* \w which|strong="G3739"\w* \w certain|strong="G5100"\w* \w Jews|strong="G2453"\w* \w from|strong="G3756"\w* \w Asia|strong="G3588"\w* \w found|strong="G2147"\w* \w me|strong="G1473"\w* purified \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w*, \w not|strong="G3756"\w* \w with|strong="G3326"\w* \w a|strong="G1722"\w* \w mob|strong="G3793"\w*, \w nor|strong="G3761"\w* \w with|strong="G3326"\w* turmoil. +\v 19 \w They|strong="G2532"\w* \w ought|strong="G1163"\w* \w to|strong="G4314"\w* \w have|strong="G2192"\w* \w been|strong="G2192"\w* \w here|strong="G3918"\w* \w before|strong="G1909"\w* \w you|strong="G4771"\w* \w and|strong="G2532"\w* \w to|strong="G4314"\w* \w make|strong="G2532"\w* \w accusation|strong="G2723"\w* \w if|strong="G1487"\w* \w they|strong="G2532"\w* \w had|strong="G2192"\w* \w anything|strong="G5100"\w* \w against|strong="G1909"\w* \w me|strong="G1473"\w*. +\v 20 \w Or|strong="G2228"\w* \w else|strong="G2228"\w* \w let|strong="G2228"\w* \w these|strong="G3778"\w* \w men|strong="G3778"\w* \w themselves|strong="G3778"\w* \w say|strong="G3004"\w* \w what|strong="G5101"\w* injustice \w they|strong="G3588"\w* \w found|strong="G2147"\w* \w in|strong="G1909"\w* \w me|strong="G1473"\w* \w when|strong="G2147"\w* \w I|strong="G1473"\w* \w stood|strong="G2476"\w* \w before|strong="G1909"\w* \w the|strong="G1909"\w* \w council|strong="G4892"\w*, +\v 21 unless \w it|strong="G3754"\w* \w is|strong="G3778"\w* \w for|strong="G3754"\w* \w this|strong="G3778"\w* \w one|strong="G1520"\w* \w thing|strong="G1520"\w* \w that|strong="G3754"\w* \w I|strong="G1473"\w* \w cried|strong="G2896"\w* \w standing|strong="G2476"\w* \w among|strong="G1722"\w* \w them|strong="G1722"\w*, ‘\w Concerning|strong="G4012"\w* \w the|strong="G1722"\w* resurrection \w of|strong="G4012"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w* \w I|strong="G1473"\w* \w am|strong="G1473"\w* \w being|strong="G1722"\w* \w judged|strong="G2919"\w* \w before|strong="G1909"\w* \w you|strong="G5210"\w* \w today|strong="G4594"\w*!’” +\p +\v 22 \w But|strong="G1161"\w* \w Felix|strong="G5344"\w*, \w having|strong="G1492"\w* \w more|strong="G1492"\w* exact \w knowledge|strong="G1492"\w* \w concerning|strong="G4012"\w* \w the|strong="G1161"\w* \w Way|strong="G3598"\w*, deferred \w them|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w When|strong="G3752"\w* \w Lysias|strong="G3079"\w*, \w the|strong="G1161"\w* commanding officer, \w comes|strong="G2597"\w* \w down|strong="G2597"\w*, \w I|strong="G1161"\w* \w will|strong="G3004"\w* \w decide|strong="G1231"\w* \w your|strong="G3708"\w* \w case|strong="G3588"\w*.” +\v 23 \w He|strong="G2532"\w* \w ordered|strong="G1299"\w* \w the|strong="G2532"\w* \w centurion|strong="G1543"\w* \w that|strong="G3588"\w* \w Paul|strong="G3588"\w* \w should|strong="G3588"\w* \w be|strong="G2532"\w* \w kept|strong="G5083"\w* \w in|strong="G2532"\w* \w custody|strong="G5083"\w* \w and|strong="G2532"\w* \w should|strong="G3588"\w* \w have|strong="G2192"\w* \w some|strong="G3588"\w* privileges, \w and|strong="G2532"\w* \w not|strong="G3367"\w* \w to|strong="G2532"\w* \w forbid|strong="G2967"\w* \w any|strong="G3367"\w* \w of|strong="G2532"\w* \w his|strong="G2398"\w* \w friends|strong="G2398"\w* \w to|strong="G2532"\w* \w serve|strong="G2192"\w* \w him|strong="G3588"\w* \w or|strong="G2532"\w* \w to|strong="G2532"\w* visit \w him|strong="G3588"\w*. +\p +\v 24 \w After|strong="G3326"\w* \w some|strong="G5100"\w* \w days|strong="G2250"\w*, \w Felix|strong="G5344"\w* \w came|strong="G3854"\w* \w with|strong="G3326"\w* \w Drusilla|strong="G1409"\w* \w his|strong="G1519"\w* \w wife|strong="G1135"\w*, \w who|strong="G3588"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w Jewess|strong="G2453"\w*, \w and|strong="G2532"\w* \w sent|strong="G3343"\w* \w for|strong="G1519"\w* \w Paul|strong="G3972"\w* \w and|strong="G2532"\w* heard \w him|strong="G3588"\w* \w concerning|strong="G4012"\w* \w the|strong="G2532"\w* \w faith|strong="G4102"\w* \w in|strong="G1519"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*. +\v 25 \w As|strong="G1161"\w* \w he|strong="G2532"\w* \w reasoned|strong="G1256"\w* \w about|strong="G4012"\w* \w righteousness|strong="G1343"\w*, \w self-control|strong="G1466"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w judgment|strong="G2917"\w* \w to|strong="G2532"\w* \w come|strong="G1096"\w*, \w Felix|strong="G5344"\w* \w was|strong="G1096"\w* \w terrified|strong="G1719"\w*, \w and|strong="G2532"\w* answered, “\w Go|strong="G4198"\w* \w your|strong="G2192"\w* \w way|strong="G4198"\w* \w for|strong="G4012"\w* \w this|strong="G3588"\w* \w time|strong="G2540"\w*, \w and|strong="G2532"\w* \w when|strong="G1161"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* convenient \w for|strong="G4012"\w* \w me|strong="G2192"\w*, \w I|strong="G2532"\w* \w will|strong="G3195"\w* \w summon|strong="G3333"\w* \w you|strong="G4771"\w*.” +\v 26 Meanwhile, \w he|strong="G2532"\w* \w also|strong="G2532"\w* \w hoped|strong="G1679"\w* \w that|strong="G3754"\w* \w money|strong="G5536"\w* \w would|strong="G2532"\w* \w be|strong="G2532"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w by|strong="G5259"\w* \w Paul|strong="G3972"\w*, \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* release \w him|strong="G3588"\w*. \w Therefore|strong="G1352"\w* \w also|strong="G2532"\w* \w he|strong="G2532"\w* \w sent|strong="G3343"\w* \w for|strong="G3754"\w* \w him|strong="G3588"\w* \w more|strong="G2532"\w* \w often|strong="G4437"\w* \w and|strong="G2532"\w* \w talked|strong="G3656"\w* \w with|strong="G2532"\w* \w him|strong="G3588"\w*. +\p +\v 27 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w two|strong="G1333"\w* \w years|strong="G1333"\w* \w were|strong="G3588"\w* \w fulfilled|strong="G4137"\w*, \w Felix|strong="G5344"\w* \w was|strong="G3588"\w* \w succeeded|strong="G1240"\w* \w by|strong="G2453"\w* \w Porcius|strong="G4201"\w* \w Festus|strong="G5347"\w*, \w and|strong="G1161"\w* \w desiring|strong="G2309"\w* \w to|strong="G2309"\w* gain \w favor|strong="G5485"\w* \w with|strong="G4137"\w* \w the|strong="G1161"\w* \w Jews|strong="G2453"\w*, \w Felix|strong="G5344"\w* \w left|strong="G2641"\w* \w Paul|strong="G3972"\w* \w in|strong="G1161"\w* \w bonds|strong="G1210"\w*. +\c 25 +\p +\v 1 \w Festus|strong="G5347"\w* \w therefore|strong="G3767"\w*, \w having|strong="G3767"\w* \w come|strong="G1910"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w province|strong="G1885"\w*, \w after|strong="G3326"\w* \w three|strong="G5140"\w* \w days|strong="G2250"\w* \w went|strong="G3767"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w* \w from|strong="G3588"\w* \w Caesarea|strong="G2542"\w*. +\v 2 \w Then|strong="G2532"\w* \w the|strong="G2532"\w* \w high|strong="G2532"\w* priest \w and|strong="G2532"\w* \w the|strong="G2532"\w* principal \w men|strong="G4413"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w informed|strong="G1718"\w* \w him|strong="G3588"\w* \w against|strong="G2596"\w* \w Paul|strong="G3972"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w begged|strong="G3870"\w* \w him|strong="G3588"\w*, +\v 3 asking \w a|strong="G1519"\w* \w favor|strong="G5485"\w* \w against|strong="G2596"\w* \w him|strong="G3588"\w*, \w that|strong="G3588"\w* \w he|strong="G3588"\w* \w would|strong="G5485"\w* \w summon|strong="G3343"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w*, plotting \w to|strong="G1519"\w* kill \w him|strong="G3588"\w* \w on|strong="G1519"\w* \w the|strong="G1519"\w* \w way|strong="G3598"\w*. +\v 4 \w However|strong="G1161"\w* \w Festus|strong="G5347"\w* answered \w that|strong="G3588"\w* \w Paul|strong="G3972"\w* \w should|strong="G3195"\w* \w be|strong="G3195"\w* \w kept|strong="G5083"\w* \w in|strong="G1722"\w* \w custody|strong="G5083"\w* \w at|strong="G1722"\w* \w Caesarea|strong="G2542"\w*, \w and|strong="G1161"\w* \w that|strong="G3588"\w* \w he|strong="G1161"\w* \w himself|strong="G1438"\w* \w was|strong="G3588"\w* \w about|strong="G3195"\w* \w to|strong="G1519"\w* \w depart|strong="G1607"\w* \w shortly|strong="G5034"\w*. +\v 5 “\w Let|strong="G1510"\w* \w them|strong="G3588"\w* \w therefore|strong="G3767"\w*”, \w he|strong="G3588"\w* \w said|strong="G5346"\w*, “\w that|strong="G3588"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w power|strong="G1415"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w* \w go|strong="G4782"\w* down \w with|strong="G1722"\w* me, \w and|strong="G3767"\w* \w if|strong="G1487"\w* \w there|strong="G1510"\w* \w is|strong="G1510"\w* \w anything|strong="G5100"\w* wrong \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w man|strong="G5100"\w*, \w let|strong="G1510"\w* \w them|strong="G3588"\w* \w accuse|strong="G2723"\w* \w him|strong="G3588"\w*.” +\p +\v 6 \w When|strong="G1161"\w* \w he|strong="G1161"\w* \w had|strong="G3972"\w* \w stayed|strong="G1304"\w* \w among|strong="G1722"\w* \w them|strong="G3588"\w* \w more|strong="G4119"\w* \w than|strong="G2228"\w* \w ten|strong="G1176"\w* \w days|strong="G2250"\w*, \w he|strong="G1161"\w* \w went|strong="G2597"\w* \w down|strong="G2597"\w* \w to|strong="G1519"\w* \w Caesarea|strong="G2542"\w*, \w and|strong="G1161"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w next|strong="G1887"\w* \w day|strong="G2250"\w* \w he|strong="G1161"\w* \w sat|strong="G2523"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w judgment|strong="G2250"\w* \w seat|strong="G2523"\w*, \w and|strong="G1161"\w* \w commanded|strong="G2753"\w* \w Paul|strong="G3972"\w* \w to|strong="G1519"\w* \w be|strong="G3756"\w* \w brought|strong="G1161"\w*. +\v 7 \w When|strong="G1161"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w come|strong="G3854"\w*, \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w who|strong="G3739"\w* \w had|strong="G2532"\w* \w come|strong="G3854"\w* \w down|strong="G2597"\w* \w from|strong="G2597"\w* \w Jerusalem|strong="G2414"\w* \w stood|strong="G3588"\w* \w around|strong="G4026"\w* \w him|strong="G3588"\w*, \w bringing|strong="G2702"\w* \w against|strong="G2702"\w* \w him|strong="G3588"\w* \w many|strong="G4183"\w* \w and|strong="G2532"\w* grievous charges \w which|strong="G3739"\w* \w they|strong="G2532"\w* \w could|strong="G2480"\w* \w not|strong="G3756"\w* prove, +\v 8 \w while|strong="G3754"\w* \w he|strong="G3754"\w* \w said|strong="G3972"\w* \w in|strong="G1519"\w* \w his|strong="G1519"\w* defense, “\w Neither|strong="G3777"\w* \w against|strong="G1519"\w* \w the|strong="G1519"\w* \w law|strong="G3551"\w* \w of|strong="G3551"\w* \w the|strong="G1519"\w* \w Jews|strong="G2453"\w*, \w nor|strong="G3777"\w* \w against|strong="G1519"\w* \w the|strong="G1519"\w* \w temple|strong="G2411"\w*, \w nor|strong="G3777"\w* \w against|strong="G1519"\w* \w Caesar|strong="G2541"\w*, \w have|strong="G3748"\w* \w I|strong="G3754"\w* sinned \w at|strong="G1519"\w* \w all|strong="G3588"\w*.” +\p +\v 9 \w But|strong="G1161"\w* \w Festus|strong="G5347"\w*, \w desiring|strong="G2309"\w* \w to|strong="G1519"\w* gain \w favor|strong="G5485"\w* \w with|strong="G1909"\w* \w the|strong="G1519"\w* \w Jews|strong="G2453"\w*, \w answered|strong="G3004"\w* \w Paul|strong="G3972"\w* \w and|strong="G1161"\w* \w said|strong="G3004"\w*, “\w Are|strong="G3588"\w* \w you|strong="G3004"\w* \w willing|strong="G2309"\w* \w to|strong="G1519"\w* \w go|strong="G2309"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w* \w and|strong="G1161"\w* \w be|strong="G1519"\w* \w judged|strong="G2919"\w* \w by|strong="G1909"\w* \w me|strong="G1473"\w* \w there|strong="G1563"\w* \w concerning|strong="G4012"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*?” +\p +\v 10 \w But|strong="G1161"\w* \w Paul|strong="G3972"\w* \w said|strong="G3004"\w*, “\w I|strong="G1473"\w* \w am|strong="G1510"\w* \w standing|strong="G2476"\w* \w before|strong="G1909"\w* \w Caesar|strong="G2541"\w*’s \w judgment|strong="G2919"\w* seat, \w where|strong="G3757"\w* \w I|strong="G1473"\w* \w ought|strong="G1163"\w* \w to|strong="G2532"\w* \w be|strong="G1510"\w* \w tried|strong="G2919"\w*. \w I|strong="G1473"\w* \w have|strong="G2532"\w* done \w no|strong="G3762"\w* wrong \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w*, \w as|strong="G5613"\w* \w you|strong="G4771"\w* \w also|strong="G2532"\w* \w know|strong="G1921"\w* \w very|strong="G2532"\w* \w well|strong="G2532"\w*. +\v 11 \w For|strong="G1161"\w* \w if|strong="G1487"\w* \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w done|strong="G4238"\w* wrong \w and|strong="G2532"\w* \w have|strong="G2532"\w* \w committed|strong="G4238"\w* \w anything|strong="G5100"\w* worthy \w of|strong="G2532"\w* \w death|strong="G2288"\w*, \w I|strong="G1473"\w* don’\w t|strong="G3588"\w* \w refuse|strong="G3868"\w* \w to|strong="G2532"\w* \w die|strong="G2288"\w*; \w but|strong="G1161"\w* \w if|strong="G1487"\w* \w none|strong="G3762"\w* \w of|strong="G2532"\w* \w those|strong="G3588"\w* \w things|strong="G3778"\w* \w is|strong="G1510"\w* \w true|strong="G3588"\w* \w that|strong="G3739"\w* \w they|strong="G2532"\w* \w accuse|strong="G2723"\w* \w me|strong="G1473"\w* \w of|strong="G2532"\w*, \w no|strong="G3756"\w* \w one|strong="G5100"\w* \w can|strong="G1410"\w* \w give|strong="G5483"\w* \w me|strong="G1473"\w* \w up|strong="G2532"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*. \w I|strong="G1473"\w* \w appeal|strong="G1941"\w* \w to|strong="G2532"\w* \w Caesar|strong="G2541"\w*!” +\p +\v 12 \w Then|strong="G5119"\w* \w Festus|strong="G5347"\w*, \w when|strong="G5119"\w* \w he|strong="G3588"\w* \w had|strong="G3588"\w* \w conferred|strong="G4824"\w* \w with|strong="G3326"\w* \w the|strong="G1909"\w* \w council|strong="G4824"\w*, answered, “\w You|strong="G1909"\w* \w have|strong="G3588"\w* \w appealed|strong="G1941"\w* \w to|strong="G1909"\w* \w Caesar|strong="G2541"\w*. \w To|strong="G1909"\w* \w Caesar|strong="G2541"\w* \w you|strong="G1909"\w* \w shall|strong="G3588"\w* \w go|strong="G4198"\w*.” +\p +\v 13 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w some|strong="G5100"\w* \w days|strong="G2250"\w* \w had|strong="G2532"\w* \w passed|strong="G3588"\w*, \w King|strong="G3588"\w* Agrippa \w and|strong="G2532"\w* Bernice \w arrived|strong="G2658"\w* \w at|strong="G1519"\w* \w Caesarea|strong="G2542"\w* \w and|strong="G2532"\w* greeted \w Festus|strong="G5347"\w*. +\v 14 \w As|strong="G5613"\w* \w he|strong="G1161"\w* \w stayed|strong="G1510"\w* \w there|strong="G1563"\w* \w many|strong="G4183"\w* \w days|strong="G2250"\w*, \w Festus|strong="G5347"\w* \w laid|strong="G1563"\w* \w Paul|strong="G3972"\w*’s \w case|strong="G3588"\w* \w before|strong="G2596"\w* \w the|strong="G1161"\w* \w king|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w There|strong="G1563"\w* \w is|strong="G1510"\w* \w a|strong="G5613"\w* \w certain|strong="G5100"\w* \w man|strong="G5100"\w* \w left|strong="G2641"\w* \w a|strong="G5613"\w* \w prisoner|strong="G1198"\w* \w by|strong="G5259"\w* \w Felix|strong="G5344"\w*; +\v 15 \w about|strong="G4012"\w* \w whom|strong="G3739"\w*, \w when|strong="G2532"\w* \w I|strong="G1473"\w* \w was|strong="G1096"\w* \w at|strong="G1519"\w* \w Jerusalem|strong="G2414"\w*, \w the|strong="G2532"\w* \w chief|strong="G2532"\w* priests \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w* \w of|strong="G4012"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w informed|strong="G1718"\w* \w me|strong="G1473"\w*, asking \w for|strong="G1519"\w* \w a|strong="G1096"\w* \w sentence|strong="G1473"\w* \w against|strong="G2596"\w* \w him|strong="G3588"\w*. +\v 16 \w I|strong="G3739"\w* answered \w them|strong="G3588"\w* \w that|strong="G3754"\w* \w it|strong="G3754"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w the|strong="G2596"\w* \w custom|strong="G1485"\w* \w of|strong="G4012"\w* \w the|strong="G2596"\w* \w Romans|strong="G4514"\w* \w to|strong="G4314"\w* \w give|strong="G5483"\w* up \w any|strong="G5100"\w* \w man|strong="G5100"\w* \w to|strong="G4314"\w* destruction \w before|strong="G4250"\w* \w the|strong="G2596"\w* \w accused|strong="G2723"\w* \w has|strong="G2192"\w* met \w the|strong="G2596"\w* \w accusers|strong="G2725"\w* \w face|strong="G4383"\w* \w to|strong="G4314"\w* \w face|strong="G4383"\w* \w and|strong="G5037"\w* \w has|strong="G2192"\w* \w had|strong="G2192"\w* \w opportunity|strong="G5117"\w* \w to|strong="G4314"\w* \w make|strong="G2723"\w* \w his|strong="G4012"\w* defense \w concerning|strong="G4012"\w* \w the|strong="G2596"\w* \w matter|strong="G5100"\w* laid \w against|strong="G2596"\w* \w him|strong="G3588"\w*. +\v 17 \w When|strong="G3767"\w* \w therefore|strong="G3767"\w* \w they|strong="G3588"\w* \w had|strong="G3588"\w* \w come|strong="G4905"\w* \w together|strong="G4905"\w* \w here|strong="G1759"\w*, \w I|strong="G3767"\w* didn’\w t|strong="G3588"\w* delay, \w but|strong="G3767"\w* \w on|strong="G1909"\w* \w the|strong="G1909"\w* \w next|strong="G1836"\w* \w day|strong="G1836"\w* \w sat|strong="G2523"\w* \w on|strong="G1909"\w* \w the|strong="G1909"\w* judgment \w seat|strong="G2523"\w* \w and|strong="G3767"\w* \w commanded|strong="G2753"\w* \w the|strong="G1909"\w* \w man|strong="G3367"\w* \w to|strong="G1909"\w* \w be|strong="G3588"\w* brought. +\v 18 \w When|strong="G3739"\w* \w the|strong="G3588"\w* \w accusers|strong="G2725"\w* \w stood|strong="G2476"\w* \w up|strong="G2476"\w*, \w they|strong="G3588"\w* \w brought|strong="G5342"\w* \w no|strong="G3762"\w* charges \w against|strong="G4012"\w* \w him|strong="G3588"\w* \w of|strong="G4012"\w* \w such|strong="G3588"\w* \w things|strong="G3588"\w* \w as|strong="G3739"\w* \w I|strong="G1473"\w* \w supposed|strong="G5282"\w*; +\v 19 \w but|strong="G1161"\w* \w had|strong="G2192"\w* \w certain|strong="G5100"\w* \w questions|strong="G2213"\w* \w against|strong="G4314"\w* \w him|strong="G3588"\w* \w about|strong="G4012"\w* \w their|strong="G2532"\w* \w own|strong="G2398"\w* \w religion|strong="G1175"\w* \w and|strong="G2532"\w* \w about|strong="G4012"\w* \w one|strong="G5100"\w* \w Jesus|strong="G2424"\w*, \w who|strong="G3739"\w* \w was|strong="G3588"\w* \w dead|strong="G2348"\w*, \w whom|strong="G3739"\w* \w Paul|strong="G3972"\w* \w affirmed|strong="G5335"\w* \w to|strong="G4314"\w* \w be|strong="G2532"\w* \w alive|strong="G2198"\w*. +\v 20 \w Being|strong="G1161"\w* perplexed \w how|strong="G1161"\w* \w to|strong="G1519"\w* inquire \w concerning|strong="G4012"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w I|strong="G1473"\w* \w asked|strong="G3004"\w* \w whether|strong="G1487"\w* \w he|strong="G1161"\w* \w was|strong="G3588"\w* \w willing|strong="G1014"\w* \w to|strong="G1519"\w* \w go|strong="G4198"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w* \w and|strong="G1161"\w* \w there|strong="G1161"\w* \w be|strong="G1519"\w* \w judged|strong="G2919"\w* \w concerning|strong="G4012"\w* \w these|strong="G3778"\w* matters. +\v 21 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w Paul|strong="G3972"\w* \w had|strong="G3972"\w* \w appealed|strong="G1941"\w* \w to|strong="G1519"\w* \w be|strong="G1519"\w* \w kept|strong="G5083"\w* \w for|strong="G1519"\w* \w the|strong="G1519"\w* \w decision|strong="G1233"\w* \w of|strong="G3588"\w* \w the|strong="G1519"\w* \w emperor|strong="G4575"\w*, \w I|strong="G3739"\w* \w commanded|strong="G2753"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w be|strong="G1519"\w* \w kept|strong="G5083"\w* \w until|strong="G2193"\w* \w I|strong="G3739"\w* \w could|strong="G3588"\w* send \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w Caesar|strong="G2541"\w*.” +\p +\v 22 Agrippa \w said|strong="G5346"\w* \w to|strong="G4314"\w* \w Festus|strong="G5347"\w*, “\w I|strong="G2532"\w* \w also|strong="G2532"\w* \w would|strong="G1014"\w* \w like|strong="G4314"\w* \w to|strong="G4314"\w* hear \w the|strong="G2532"\w* man myself.” +\p “Tomorrow,” \w he|strong="G2532"\w* \w said|strong="G5346"\w*, “\w you|strong="G2532"\w* \w shall|strong="G2532"\w* hear \w him|strong="G3588"\w*.” +\p +\v 23 \w So|strong="G3767"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w next|strong="G1887"\w* \w day|strong="G1887"\w*, \w when|strong="G2532"\w* Agrippa \w and|strong="G2532"\w* Bernice \w had|strong="G2532"\w* \w come|strong="G2064"\w* \w with|strong="G3326"\w* \w great|strong="G4183"\w* \w pomp|strong="G5325"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* place \w of|strong="G2532"\w* hearing \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w commanding|strong="G2753"\w* officers \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w principal|strong="G1851"\w* \w men|strong="G3588"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w*, \w at|strong="G1519"\w* \w the|strong="G2532"\w* \w command|strong="G2753"\w* \w of|strong="G2532"\w* \w Festus|strong="G5347"\w*, \w Paul|strong="G3972"\w* \w was|strong="G3588"\w* \w brought|strong="G2064"\w* \w in|strong="G1519"\w*. +\v 24 \w Festus|strong="G5347"\w* \w said|strong="G5346"\w*, “\w King|strong="G3588"\w* Agrippa, \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w* \w who|strong="G3739"\w* \w are|strong="G3588"\w* \w here|strong="G1759"\w* \w present|strong="G4840"\w* \w with|strong="G1722"\w* \w us|strong="G2249"\w*, \w you|strong="G3739"\w* \w see|strong="G2334"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w about|strong="G4012"\w* \w whom|strong="G3739"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w multitude|strong="G4128"\w* \w of|strong="G4012"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w* petitioned \w me|strong="G1473"\w*, \w both|strong="G2532"\w* \w at|strong="G1722"\w* \w Jerusalem|strong="G2414"\w* \w and|strong="G2532"\w* \w here|strong="G1759"\w*, crying \w that|strong="G3739"\w* \w he|strong="G2532"\w* \w ought|strong="G1163"\w* \w not|strong="G3361"\w* \w to|strong="G2532"\w* \w live|strong="G2198"\w* \w any|strong="G3956"\w* \w longer|strong="G3371"\w*. +\v 25 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w I|strong="G1473"\w* \w found|strong="G2638"\w* \w that|strong="G3588"\w* \w he|strong="G1161"\w* \w had|strong="G3588"\w* \w committed|strong="G4238"\w* \w nothing|strong="G3367"\w* worthy \w of|strong="G3588"\w* \w death|strong="G2288"\w*, \w and|strong="G1161"\w* \w as|strong="G1161"\w* \w he|strong="G1161"\w* himself \w appealed|strong="G1941"\w* \w to|strong="G1161"\w* \w the|strong="G1161"\w* \w emperor|strong="G4575"\w*, \w I|strong="G1473"\w* \w determined|strong="G2919"\w* \w to|strong="G1161"\w* \w send|strong="G3992"\w* \w him|strong="G3588"\w*, +\v 26 \w of|strong="G4012"\w* \w whom|strong="G3739"\w* \w I|strong="G3739"\w* \w have|strong="G2192"\w* \w no|strong="G3756"\w* \w certain|strong="G5100"\w* \w thing|strong="G5100"\w* \w to|strong="G2532"\w* \w write|strong="G1125"\w* \w to|strong="G2532"\w* \w my|strong="G3739"\w* \w lord|strong="G2962"\w*. \w Therefore|strong="G1352"\w* \w I|strong="G3739"\w* \w have|strong="G2192"\w* \w brought|strong="G4254"\w* \w him|strong="G3588"\w* \w out|strong="G2532"\w* \w before|strong="G1909"\w* \w you|strong="G5210"\w*, \w and|strong="G2532"\w* \w especially|strong="G3122"\w* \w before|strong="G1909"\w* \w you|strong="G5210"\w*, \w King|strong="G3588"\w* Agrippa, \w that|strong="G3739"\w*, \w after|strong="G1909"\w* examination \w I|strong="G3739"\w* \w may|strong="G2532"\w* \w have|strong="G2192"\w* \w something|strong="G5100"\w* \w to|strong="G2532"\w* \w write|strong="G1125"\w*. +\v 27 \w For|strong="G1063"\w* \w it|strong="G2532"\w* \w seems|strong="G1380"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w* unreasonable, \w in|strong="G2596"\w* \w sending|strong="G3992"\w* \w a|strong="G2532"\w* \w prisoner|strong="G1198"\w*, \w not|strong="G3361"\w* \w to|strong="G2532"\w* \w also|strong="G2532"\w* specify \w the|strong="G2532"\w* charges \w against|strong="G2596"\w* \w him|strong="G3588"\w*.” +\c 26 +\p +\v 1 Agrippa \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w Paul|strong="G3972"\w*, “\w You|strong="G4771"\w* \w may|strong="G3004"\w* \w speak|strong="G3004"\w* \w for|strong="G5228"\w* \w yourself|strong="G4572"\w*.” +\p \w Then|strong="G5119"\w* \w Paul|strong="G3972"\w* \w stretched|strong="G1614"\w* \w out|strong="G1614"\w* \w his|strong="G4012"\w* \w hand|strong="G5495"\w*, \w and|strong="G1161"\w* \w made|strong="G1161"\w* \w his|strong="G4012"\w* defense. +\v 2 “\w I|strong="G3739"\w* \w think|strong="G2233"\w* \w myself|strong="G1683"\w* \w happy|strong="G3107"\w*, King Agrippa, \w that|strong="G3739"\w* \w I|strong="G3739"\w* \w am|strong="G3195"\w* \w to|strong="G1909"\w* make \w my|strong="G3956"\w* defense \w before|strong="G1909"\w* \w you|strong="G4771"\w* \w today|strong="G4594"\w* \w concerning|strong="G4012"\w* \w all|strong="G3956"\w* \w the|strong="G3956"\w* \w things|strong="G3956"\w* \w that|strong="G3739"\w* \w I|strong="G3739"\w* \w am|strong="G3195"\w* \w accused|strong="G1458"\w* \w by|strong="G5259"\w* \w the|strong="G3956"\w* \w Jews|strong="G2453"\w*, +\v 3 \w especially|strong="G3122"\w* \w because|strong="G2532"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w expert|strong="G1109"\w* \w in|strong="G2596"\w* \w all|strong="G3956"\w* \w customs|strong="G1485"\w* \w and|strong="G2532"\w* \w questions|strong="G2213"\w* \w which|strong="G3588"\w* \w are|strong="G1510"\w* \w among|strong="G2596"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w*. \w Therefore|strong="G1352"\w* \w I|strong="G1473"\w* \w beg|strong="G1189"\w* \w you|strong="G4771"\w* \w to|strong="G2532"\w* hear \w me|strong="G1473"\w* \w patiently|strong="G3116"\w*. +\p +\v 4 “\w Indeed|strong="G3303"\w*, \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w* \w know|strong="G1492"\w* \w my|strong="G1722"\w* \w way|strong="G1722"\w* \w of|strong="G1537"\w* life \w from|strong="G1537"\w* \w my|strong="G1722"\w* \w youth|strong="G3503"\w* \w up|strong="G1722"\w*, \w which|strong="G3588"\w* \w was|strong="G1096"\w* \w from|strong="G1537"\w* \w the|strong="G1722"\w* beginning \w among|strong="G1722"\w* \w my|strong="G1722"\w* own \w nation|strong="G1484"\w* \w and|strong="G5037"\w* \w at|strong="G1722"\w* \w Jerusalem|strong="G2414"\w*; +\v 5 \w having|strong="G3140"\w* \w known|strong="G4267"\w* \w me|strong="G1473"\w* \w from|strong="G2596"\w* \w the|strong="G2596"\w* \w first|strong="G3588"\w*, \w if|strong="G1437"\w* \w they|strong="G3588"\w* \w are|strong="G3588"\w* \w willing|strong="G2309"\w* \w to|strong="G2596"\w* \w testify|strong="G3140"\w*, \w that|strong="G3754"\w* \w after|strong="G2596"\w* \w the|strong="G2596"\w* strictest sect \w of|strong="G2596"\w* \w our|strong="G2251"\w* \w religion|strong="G2356"\w* \w I|strong="G1473"\w* \w lived|strong="G2198"\w* \w a|strong="G1437"\w* \w Pharisee|strong="G5330"\w*. +\v 6 \w Now|strong="G3568"\w* \w I|strong="G1473"\w* \w stand|strong="G2476"\w* \w here|strong="G1519"\w* \w to|strong="G1519"\w* \w be|strong="G1096"\w* \w judged|strong="G2919"\w* \w for|strong="G1519"\w* \w the|strong="G2532"\w* \w hope|strong="G1680"\w* \w of|strong="G5259"\w* \w the|strong="G2532"\w* \w promise|strong="G1860"\w* \w made|strong="G1096"\w* \w by|strong="G5259"\w* \w God|strong="G2316"\w* \w to|strong="G1519"\w* \w our|strong="G2316"\w* \w fathers|strong="G3962"\w*, +\v 7 \w which|strong="G3739"\w* \w our|strong="G2532"\w* \w twelve|strong="G1429"\w* \w tribes|strong="G1429"\w*, \w earnestly|strong="G2532"\w* \w serving|strong="G3000"\w* \w night|strong="G3571"\w* \w and|strong="G2532"\w* \w day|strong="G2250"\w*, \w hope|strong="G1680"\w* \w to|strong="G1519"\w* \w attain|strong="G2658"\w*. \w Concerning|strong="G4012"\w* \w this|strong="G3588"\w* \w hope|strong="G1680"\w* \w I|strong="G1473"\w* \w am|strong="G1473"\w* \w accused|strong="G1458"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w*, \w King|strong="G3588"\w* Agrippa! +\v 8 \w Why|strong="G5101"\w* \w is|strong="G3588"\w* \w it|strong="G1487"\w* \w judged|strong="G2919"\w* incredible \w with|strong="G3844"\w* \w you|strong="G5210"\w* \w if|strong="G1487"\w* \w God|strong="G2316"\w* \w does|strong="G5101"\w* \w raise|strong="G1453"\w* \w the|strong="G3588"\w* \w dead|strong="G3498"\w*? +\p +\v 9 “\w I|strong="G1473"\w* \w myself|strong="G1683"\w* \w most|strong="G4183"\w* \w certainly|strong="G3303"\w* \w thought|strong="G1380"\w* \w that|strong="G3588"\w* \w I|strong="G1473"\w* \w ought|strong="G1163"\w* \w to|strong="G4314"\w* \w do|strong="G4238"\w* \w many|strong="G4183"\w* \w things|strong="G3588"\w* \w contrary|strong="G1727"\w* \w to|strong="G4314"\w* \w the|strong="G4314"\w* \w name|strong="G3686"\w* \w of|strong="G3686"\w* \w Jesus|strong="G2424"\w* \w of|strong="G3686"\w* \w Nazareth|strong="G3480"\w*. +\v 10 \w I|strong="G1473"\w* \w also|strong="G2532"\w* \w did|strong="G4160"\w* \w this|strong="G3588"\w* \w in|strong="G1722"\w* \w Jerusalem|strong="G2414"\w*. \w I|strong="G1473"\w* \w both|strong="G2532"\w* \w shut|strong="G1473"\w* \w up|strong="G2623"\w* \w many|strong="G4183"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* saints \w in|strong="G1722"\w* \w prisons|strong="G5438"\w*, \w having|strong="G2532"\w* \w received|strong="G2983"\w* \w authority|strong="G1849"\w* \w from|strong="G3844"\w* \w the|strong="G1722"\w* \w chief|strong="G2532"\w* priests; \w and|strong="G2532"\w* \w when|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w put|strong="G4160"\w* \w to|strong="G2532"\w* death \w I|strong="G1473"\w* \w gave|strong="G4160"\w* \w my|strong="G1722"\w* \w vote|strong="G5586"\w* \w against|strong="G1722"\w* \w them|strong="G3588"\w*. +\v 11 Punishing \w them|strong="G3588"\w* \w often|strong="G4178"\w* \w in|strong="G1519"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w synagogues|strong="G4864"\w*, \w I|strong="G2532"\w* tried \w to|strong="G1519"\w* \w make|strong="G1519"\w* \w them|strong="G3588"\w* blaspheme. \w Being|strong="G2532"\w* \w exceedingly|strong="G4057"\w* \w enraged|strong="G1693"\w* \w against|strong="G2596"\w* \w them|strong="G3588"\w*, \w I|strong="G2532"\w* \w persecuted|strong="G1377"\w* \w them|strong="G3588"\w* \w even|strong="G2532"\w* \w to|strong="G1519"\w* \w foreign|strong="G1854"\w* \w cities|strong="G4172"\w*. +\p +\v 12 “\w Whereupon|strong="G3739"\w* \w as|strong="G1519"\w* \w I|strong="G3739"\w* traveled \w to|strong="G1519"\w* \w Damascus|strong="G1154"\w* \w with|strong="G3326"\w* \w the|strong="G1722"\w* \w authority|strong="G1849"\w* \w and|strong="G2532"\w* \w commission|strong="G2011"\w* \w from|strong="G2532"\w* \w the|strong="G1722"\w* \w chief|strong="G2532"\w* priests, +\v 13 \w at|strong="G2596"\w* noon, O \w king|strong="G3588"\w*, \w I|strong="G1473"\w* \w saw|strong="G3708"\w* \w on|strong="G5228"\w* \w the|strong="G2532"\w* \w way|strong="G3598"\w* \w a|strong="G2532"\w* \w light|strong="G5457"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* sky, \w brighter|strong="G2987"\w* \w than|strong="G5228"\w* \w the|strong="G2532"\w* \w sun|strong="G2246"\w*, \w shining|strong="G4034"\w* \w around|strong="G4034"\w* \w me|strong="G1473"\w* \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* traveled \w with|strong="G4862"\w* \w me|strong="G1473"\w*. +\v 14 \w When|strong="G3004"\w* \w we|strong="G2249"\w* \w had|strong="G3588"\w* \w all|strong="G3956"\w* \w fallen|strong="G2667"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w earth|strong="G1093"\w*, \w I|strong="G1473"\w* heard \w a|strong="G1519"\w* \w voice|strong="G5456"\w* \w saying|strong="G3004"\w* \w to|strong="G1519"\w* \w me|strong="G1473"\w* \w in|strong="G1519"\w* \w the|strong="G1519"\w* \w Hebrew|strong="G1446"\w* \w language|strong="G1258"\w*, \wj ‘\+w Saul|strong="G4549"\+w*, \+w Saul|strong="G4549"\+w*, \+w why|strong="G5101"\+w* \+w are|strong="G3588"\+w* \+w you|strong="G4771"\+w* \+w persecuting|strong="G1377"\+w* \+w me|strong="G1473"\+w*? \+w It|strong="G5101"\+w* \+w is|strong="G3588"\+w* \+w hard|strong="G4642"\+w* \+w for|strong="G1519"\+w* \+w you|strong="G4771"\+w* \+w to|strong="G1519"\+w* \+w kick|strong="G2979"\+w* \+w against|strong="G4314"\+w* \+w the|strong="G1519"\+w* \+w goads|strong="G2759"\+w*.’\wj* +\p +\v 15 “\w I|strong="G1473"\w* \w said|strong="G3004"\w*, ‘\w Who|strong="G3739"\w* \w are|strong="G1510"\w* \w you|strong="G4771"\w*, \w Lord|strong="G2962"\w*?’ +\p “\w He|strong="G1161"\w* \w said|strong="G3004"\w*, \wj ‘\+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w Jesus|strong="G2424"\+w*, \+w whom|strong="G3739"\+w* \+w you|strong="G4771"\+w* \+w are|strong="G1510"\+w* \+w persecuting|strong="G1377"\+w*. \wj* +\v 16 \wj \+w But|strong="G2532"\+w* arise, \+w and|strong="G2532"\+w* \+w stand|strong="G2476"\+w* \+w on|strong="G1909"\+w* \+w your|strong="G2532"\+w* \+w feet|strong="G4228"\+w*, \+w for|strong="G1063"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w appeared|strong="G3708"\+w* \+w to|strong="G1519"\+w* \+w you|strong="G4771"\+w* \+w for|strong="G1063"\+w* \+w this|strong="G3778"\+w* \+w purpose|strong="G3739"\+w*: \+w to|strong="G1519"\+w* \+w appoint|strong="G4400"\+w* \+w you|strong="G4771"\+w* \+w a|strong="G2532"\+w* \+w servant|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w a|strong="G2532"\+w* \+w witness|strong="G3144"\+w* \+w both|strong="G2532"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3778"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2532"\+w* \+w seen|strong="G3708"\+w* \+w and|strong="G2532"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3778"\+w* \+w which|strong="G3739"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* reveal \+w to|strong="G1519"\+w* \+w you|strong="G4771"\+w*; \wj* +\v 17 \wj \+w delivering|strong="G1807"\+w* \+w you|strong="G4771"\+w* \+w from|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w people|strong="G2992"\+w* \+w and|strong="G2532"\+w* \+w from|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w Gentiles|strong="G1484"\+w*, \+w to|strong="G1519"\+w* \+w whom|strong="G3739"\+w* \+w I|strong="G1473"\+w* send \+w you|strong="G4771"\+w*, \wj* +\v 18 \wj \+w to|strong="G1519"\+w* open \+w their|strong="G1438"\+w* \+w eyes|strong="G3788"\+w*, \+w that|strong="G3588"\+w* \+w they|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w turn|strong="G1994"\+w* \+w from|strong="G2532"\+w* \+w darkness|strong="G4655"\+w* \+w to|strong="G1519"\+w* \+w light|strong="G5457"\+w* \+w and|strong="G2532"\+w* \+w from|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w power|strong="G1849"\+w* \+w of|strong="G2316"\+w* \+w Satan|strong="G4567"\+w* \+w to|strong="G1519"\+w* \+w God|strong="G2316"\+w*, \+w that|strong="G3588"\+w* \+w they|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w receive|strong="G2983"\+w* remission \+w of|strong="G2316"\+w* sins \+w and|strong="G2532"\+w* \+w an|strong="G2532"\+w* \+w inheritance|strong="G2819"\+w* \+w among|strong="G1722"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* sanctified \+w by|strong="G1722"\+w* \+w faith|strong="G4102"\+w* \+w in|strong="G1722"\+w* \+w me|strong="G1473"\+w*.’\wj* +\p +\v 19 “\w Therefore|strong="G3606"\w*, \w King|strong="G3588"\w* Agrippa, \w I|strong="G1096"\w* \w was|strong="G1096"\w* \w not|strong="G3756"\w* disobedient \w to|strong="G3756"\w* \w the|strong="G3588"\w* \w heavenly|strong="G3770"\w* \w vision|strong="G3701"\w*, +\v 20 \w but|strong="G2532"\w* declared \w first|strong="G4413"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w of|strong="G2316"\w* \w Damascus|strong="G1154"\w*, \w at|strong="G1722"\w* \w Jerusalem|strong="G2414"\w*, \w and|strong="G2532"\w* \w throughout|strong="G1722"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w country|strong="G5561"\w* \w of|strong="G2316"\w* \w Judea|strong="G2449"\w*, \w and|strong="G2532"\w* \w also|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w*, \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w should|strong="G2316"\w* \w repent|strong="G3340"\w* \w and|strong="G2532"\w* \w turn|strong="G1994"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w*, \w doing|strong="G4238"\w* \w works|strong="G2041"\w* worthy \w of|strong="G2316"\w* \w repentance|strong="G3341"\w*. +\v 21 \w For|strong="G1752"\w* \w this|strong="G3778"\w* \w reason|strong="G1752"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w* \w seized|strong="G4815"\w* \w me|strong="G1473"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w temple|strong="G2413"\w* \w and|strong="G2453"\w* \w tried|strong="G3987"\w* \w to|strong="G1722"\w* \w kill|strong="G1315"\w* \w me|strong="G1473"\w*. +\v 22 \w Having|strong="G2532"\w* \w therefore|strong="G3767"\w* \w obtained|strong="G5177"\w* \w the|strong="G2532"\w* \w help|strong="G1947"\w* \w that|strong="G3739"\w* \w is|strong="G3588"\w* \w from|strong="G2532"\w* \w God|strong="G2316"\w*, \w I|strong="G3739"\w* \w stand|strong="G2476"\w* \w to|strong="G2532"\w* \w this|strong="G3778"\w* \w day|strong="G2250"\w* \w testifying|strong="G3143"\w* \w both|strong="G2532"\w* \w to|strong="G2532"\w* \w small|strong="G3398"\w* \w and|strong="G2532"\w* \w great|strong="G3173"\w*, \w saying|strong="G3004"\w* \w nothing|strong="G3762"\w* \w but|strong="G2532"\w* \w what|strong="G3739"\w* \w the|strong="G2532"\w* \w prophets|strong="G4396"\w* \w and|strong="G2532"\w* \w Moses|strong="G3475"\w* \w said|strong="G3004"\w* \w would|strong="G3195"\w* \w happen|strong="G1096"\w*, +\v 23 how \w the|strong="G2532"\w* \w Christ|strong="G5547"\w* \w must|strong="G5547"\w* \w suffer|strong="G3805"\w*, \w and|strong="G2532"\w* how, \w by|strong="G1537"\w* \w the|strong="G2532"\w* resurrection \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*, \w he|strong="G2532"\w* \w would|strong="G3195"\w* \w be|strong="G2532"\w* \w first|strong="G4413"\w* \w to|strong="G2532"\w* \w proclaim|strong="G2605"\w* \w light|strong="G5457"\w* \w both|strong="G2532"\w* \w to|strong="G2532"\w* \w these|strong="G3588"\w* \w people|strong="G2992"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w*.” +\p +\v 24 \w As|strong="G1519"\w* \w he|strong="G1161"\w* \w thus|strong="G1519"\w* \w made|strong="G1161"\w* \w his|strong="G1519"\w* defense, \w Festus|strong="G5347"\w* \w said|strong="G5346"\w* \w with|strong="G1519"\w* \w a|strong="G1519"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, “\w Paul|strong="G3972"\w*, \w you|strong="G4771"\w* \w are|strong="G3588"\w* crazy! \w Your|strong="G3588"\w* \w great|strong="G3173"\w* \w learning|strong="G1121"\w* \w is|strong="G3588"\w* \w driving|strong="G4062"\w* \w you|strong="G4771"\w* \w insane|strong="G3105"\w*!” +\p +\v 25 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w said|strong="G5346"\w*, “\w I|strong="G2532"\w* \w am|strong="G2532"\w* \w not|strong="G3756"\w* crazy, \w most|strong="G2903"\w* \w excellent|strong="G2903"\w* \w Festus|strong="G5347"\w*, \w but|strong="G1161"\w* boldly declare \w words|strong="G4487"\w* \w of|strong="G2532"\w* truth \w and|strong="G2532"\w* reasonableness. +\v 26 \w For|strong="G1063"\w* \w the|strong="G1722"\w* \w king|strong="G3588"\w* \w knows|strong="G1987"\w* \w of|strong="G4012"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w to|strong="G4314"\w* \w whom|strong="G3739"\w* \w also|strong="G2532"\w* \w I|strong="G3739"\w* \w speak|strong="G2980"\w* \w freely|strong="G3955"\w*. \w For|strong="G1063"\w* \w I|strong="G3739"\w* \w am|strong="G1510"\w* \w persuaded|strong="G3982"\w* \w that|strong="G3739"\w* \w none|strong="G3762"\w* \w of|strong="G4012"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w is|strong="G1510"\w* hidden \w from|strong="G2532"\w* \w him|strong="G3588"\w*, \w for|strong="G1063"\w* \w this|strong="G3778"\w* \w has|strong="G3739"\w* \w not|strong="G3756"\w* \w been|strong="G1510"\w* \w done|strong="G4238"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* \w corner|strong="G1137"\w*. +\v 27 \w King|strong="G3588"\w* Agrippa, \w do|strong="G1492"\w* \w you|strong="G3754"\w* \w believe|strong="G4100"\w* \w the|strong="G3588"\w* \w prophets|strong="G4396"\w*? \w I|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w you|strong="G3754"\w* \w believe|strong="G4100"\w*.” +\p +\v 28 Agrippa \w said|strong="G1161"\w* \w to|strong="G4314"\w* \w Paul|strong="G3972"\w*, “\w With|strong="G1722"\w* \w a|strong="G1722"\w* \w little|strong="G3641"\w* persuasion \w are|strong="G3588"\w* \w you|strong="G1722"\w* trying \w to|strong="G4314"\w* \w make|strong="G4160"\w* \w me|strong="G1473"\w* \w a|strong="G1722"\w* \w Christian|strong="G5546"\w*?” +\p +\v 29 \w Paul|strong="G3972"\w* \w said|strong="G1161"\w*, “\w I|strong="G1473"\w* \w pray|strong="G2172"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w*, \w that|strong="G3588"\w* \w whether|strong="G2532"\w* \w with|strong="G1722"\w* \w little|strong="G3641"\w* \w or|strong="G2532"\w* \w with|strong="G1722"\w* \w much|strong="G3173"\w*, \w not|strong="G3756"\w* \w only|strong="G3440"\w* \w you|strong="G4771"\w*, \w but|strong="G1161"\w* \w also|strong="G2532"\w* \w all|strong="G3956"\w* \w that|strong="G3588"\w* hear \w me|strong="G1473"\w* \w today|strong="G4594"\w*, \w might|strong="G2532"\w* \w become|strong="G1096"\w* \w such|strong="G5108"\w* \w as|strong="G1722"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w*, \w except|strong="G3924"\w* \w for|strong="G1161"\w* \w these|strong="G3778"\w* \w bonds|strong="G1199"\w*.” +\p +\v 30 \w The|strong="G2532"\w* \w king|strong="G3588"\w* \w rose|strong="G2532"\w* \w up|strong="G2532"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w governor|strong="G2232"\w* \w and|strong="G2532"\w* Bernice, \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w sat|strong="G4775"\w* \w with|strong="G2532"\w* \w them|strong="G3588"\w*. +\v 31 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* withdrawn, \w they|strong="G2532"\w* \w spoke|strong="G2980"\w* \w to|strong="G4314"\w* \w one|strong="G5100"\w* \w another|strong="G5100"\w*, \w saying|strong="G3004"\w*, “\w This|strong="G3778"\w* \w man|strong="G5100"\w* \w does|strong="G2980"\w* \w nothing|strong="G3762"\w* worthy \w of|strong="G2532"\w* \w death|strong="G2288"\w* \w or|strong="G2228"\w* \w of|strong="G2532"\w* \w bonds|strong="G1199"\w*.” +\v 32 Agrippa \w said|strong="G5346"\w* \w to|strong="G1410"\w* \w Festus|strong="G5347"\w*, “\w This|strong="G3778"\w* \w man|strong="G3778"\w* \w might|strong="G1410"\w* \w have|strong="G3588"\w* \w been|strong="G3361"\w* set free \w if|strong="G1487"\w* \w he|strong="G1161"\w* \w had|strong="G3588"\w* \w not|strong="G3361"\w* \w appealed|strong="G1941"\w* \w to|strong="G1410"\w* \w Caesar|strong="G2541"\w*.” +\c 27 +\p +\v 1 \w When|strong="G1161"\w* \w it|strong="G2532"\w* \w was|strong="G3588"\w* \w determined|strong="G2919"\w* \w that|strong="G3588"\w* \w we|strong="G2249"\w* \w should|strong="G5100"\w* sail \w for|strong="G1519"\w* \w Italy|strong="G2482"\w*, \w they|strong="G2532"\w* \w delivered|strong="G3860"\w* \w Paul|strong="G3972"\w* \w and|strong="G2532"\w* \w certain|strong="G5100"\w* \w other|strong="G2087"\w* \w prisoners|strong="G1202"\w* \w to|strong="G1519"\w* \w a|strong="G5613"\w* \w centurion|strong="G1543"\w* \w named|strong="G3686"\w* \w Julius|strong="G2457"\w*, \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Augustan|strong="G4575"\w* \w band|strong="G4686"\w*. +\v 2 \w Embarking|strong="G1910"\w* \w in|strong="G1519"\w* \w a|strong="G1519"\w* \w ship|strong="G4143"\w* \w of|strong="G2596"\w* Adramyttium, \w which|strong="G3588"\w* \w was|strong="G1510"\w* \w about|strong="G3195"\w* \w to|strong="G1519"\w* \w sail|strong="G4126"\w* \w to|strong="G1519"\w* \w places|strong="G5117"\w* \w on|strong="G1519"\w* \w the|strong="G1519"\w* \w coast|strong="G2596"\w* \w of|strong="G2596"\w* \w Asia|strong="G3588"\w*, \w we|strong="G2249"\w* \w put|strong="G1519"\w* \w to|strong="G1519"\w* sea, Aristarchus, \w a|strong="G1519"\w* \w Macedonian|strong="G3110"\w* \w of|strong="G2596"\w* \w Thessalonica|strong="G2331"\w* \w being|strong="G1510"\w* \w with|strong="G4862"\w* \w us|strong="G1519"\w*. +\v 3 \w The|strong="G1519"\w* \w next|strong="G2087"\w* \w day|strong="G3588"\w*, \w we|strong="G4314"\w* \w touched|strong="G2609"\w* \w at|strong="G1519"\w* \w Sidon|strong="G4605"\w*. \w Julius|strong="G2457"\w* \w treated|strong="G5530"\w* \w Paul|strong="G3972"\w* \w kindly|strong="G5364"\w* \w and|strong="G5037"\w* \w gave|strong="G2010"\w* \w him|strong="G3588"\w* \w permission|strong="G2010"\w* \w to|strong="G1519"\w* \w go|strong="G4198"\w* \w to|strong="G1519"\w* \w his|strong="G1519"\w* \w friends|strong="G5384"\w* \w and|strong="G5037"\w* refresh \w himself|strong="G1519"\w*. +\v 4 Putting \w to|strong="G1510"\w* sea \w from|strong="G3588"\w* \w there|strong="G2547"\w*, \w we|strong="G1510"\w* \w sailed|strong="G5284"\w* \w under|strong="G5284"\w* \w the|strong="G1223"\w* lee \w of|strong="G1223"\w* \w Cyprus|strong="G2954"\w*, \w because|strong="G1223"\w* \w the|strong="G1223"\w* winds \w were|strong="G1510"\w* \w contrary|strong="G1727"\w*. +\v 5 \w When|strong="G2532"\w* \w we|strong="G2532"\w* \w had|strong="G2532"\w* \w sailed|strong="G1277"\w* across \w the|strong="G2532"\w* \w sea|strong="G3989"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w off|strong="G2596"\w* \w Cilicia|strong="G2791"\w* \w and|strong="G2532"\w* \w Pamphylia|strong="G3828"\w*, \w we|strong="G2532"\w* \w came|strong="G2718"\w* \w to|strong="G1519"\w* \w Myra|strong="G3460"\w*, \w a|strong="G2532"\w* city \w of|strong="G2532"\w* \w Lycia|strong="G3073"\w*. +\v 6 \w There|strong="G2546"\w* \w the|strong="G1519"\w* \w centurion|strong="G1543"\w* \w found|strong="G2147"\w* \w a|strong="G1519"\w* \w ship|strong="G4143"\w* \w of|strong="G3588"\w* Alexandria \w sailing|strong="G4126"\w* \w for|strong="G1519"\w* \w Italy|strong="G2482"\w*, \w and|strong="G3588"\w* \w he|strong="G3588"\w* \w put|strong="G1688"\w* \w us|strong="G1519"\w* \w on|strong="G1519"\w* board. +\v 7 \w When|strong="G1161"\w* \w we|strong="G2249"\w* \w had|strong="G2532"\w* \w sailed|strong="G5284"\w* \w slowly|strong="G1020"\w* \w many|strong="G2425"\w* \w days|strong="G2250"\w*, \w and|strong="G2532"\w* \w had|strong="G2532"\w* \w come|strong="G1096"\w* \w with|strong="G1722"\w* \w difficulty|strong="G3433"\w* opposite \w Cnidus|strong="G2834"\w*, \w the|strong="G1722"\w* wind \w not|strong="G3361"\w* allowing \w us|strong="G2249"\w* further, \w we|strong="G2249"\w* \w sailed|strong="G5284"\w* \w under|strong="G1722"\w* \w the|strong="G1722"\w* lee \w of|strong="G2250"\w* \w Crete|strong="G2914"\w*, opposite \w Salmone|strong="G4534"\w*. +\v 8 \w With|strong="G1519"\w* \w difficulty|strong="G3433"\w* \w sailing|strong="G3881"\w* \w along|strong="G3881"\w* \w it|strong="G3739"\w* \w we|strong="G3739"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w a|strong="G1519"\w* \w certain|strong="G5100"\w* \w place|strong="G5117"\w* \w called|strong="G2564"\w* \w Fair|strong="G2570"\w* Havens, \w near|strong="G1451"\w* \w the|strong="G1519"\w* \w city|strong="G4172"\w* \w of|strong="G5100"\w* \w Lasea|strong="G2996"\w*. +\p +\v 9 \w When|strong="G1161"\w* \w much|strong="G2425"\w* \w time|strong="G5550"\w* \w had|strong="G2532"\w* \w passed|strong="G3588"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w voyage|strong="G4144"\w* \w was|strong="G1510"\w* \w now|strong="G1161"\w* \w dangerous|strong="G2000"\w* \w because|strong="G1223"\w* \w the|strong="G2532"\w* \w Fast|strong="G3521"\w* \w had|strong="G2532"\w* \w now|strong="G1161"\w* \w already|strong="G2235"\w* gone \w by|strong="G1223"\w*, \w Paul|strong="G3972"\w* \w admonished|strong="G3867"\w* \w them|strong="G3588"\w* +\v 10 \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, “Sirs, \w I|strong="G1473"\w* \w perceive|strong="G2334"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w voyage|strong="G4144"\w* \w will|strong="G3195"\w* \w be|strong="G1510"\w* \w with|strong="G3326"\w* injury \w and|strong="G2532"\w* \w much|strong="G4183"\w* \w loss|strong="G2209"\w*, \w not|strong="G3756"\w* \w only|strong="G3440"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w cargo|strong="G5413"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w ship|strong="G4143"\w*, \w but|strong="G2532"\w* \w also|strong="G2532"\w* \w of|strong="G2532"\w* \w our|strong="G2532"\w* \w lives|strong="G5590"\w*.” +\v 11 \w But|strong="G1161"\w* \w the|strong="G2532"\w* \w centurion|strong="G1543"\w* \w gave|strong="G2532"\w* \w more|strong="G3123"\w* heed \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w master|strong="G2942"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* owner \w of|strong="G5259"\w* \w the|strong="G2532"\w* \w ship|strong="G3490"\w* \w than|strong="G2228"\w* \w to|strong="G2532"\w* \w those|strong="G3588"\w* \w things|strong="G3588"\w* \w which|strong="G3588"\w* \w were|strong="G3588"\w* \w spoken|strong="G3004"\w* \w by|strong="G5259"\w* \w Paul|strong="G3972"\w*. +\v 12 \w Because|strong="G1161"\w* \w the|strong="G2532"\w* \w haven|strong="G3040"\w* \w was|strong="G3588"\w* \w not|strong="G1410"\w* \w suitable|strong="G3588"\w* \w to|strong="G1519"\w* \w winter|strong="G3914"\w* \w in|strong="G1519"\w*, \w the|strong="G2532"\w* \w majority|strong="G4183"\w* \w advised|strong="G5087"\w* \w going|strong="G2532"\w* \w to|strong="G1519"\w* \w sea|strong="G2532"\w* \w from|strong="G2532"\w* \w there|strong="G2532"\w*, \w if|strong="G1487"\w* \w by|strong="G2596"\w* \w any|strong="G1487"\w* \w means|strong="G1513"\w* \w they|strong="G2532"\w* \w could|strong="G1410"\w* \w reach|strong="G2658"\w* \w Phoenix|strong="G5405"\w* \w and|strong="G2532"\w* \w winter|strong="G3914"\w* \w there|strong="G2532"\w*, \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w a|strong="G2532"\w* port \w of|strong="G2532"\w* \w Crete|strong="G2914"\w*, \w looking|strong="G2532"\w* \w southwest|strong="G3047"\w* \w and|strong="G2532"\w* \w northwest|strong="G5566"\w*. +\p +\v 13 \w When|strong="G1161"\w* \w the|strong="G1161"\w* \w south|strong="G3558"\w* \w wind|strong="G3558"\w* \w blew|strong="G3558"\w* \w softly|strong="G5285"\w*, \w supposing|strong="G1380"\w* \w that|strong="G3588"\w* \w they|strong="G1161"\w* \w had|strong="G3588"\w* \w obtained|strong="G2902"\w* \w their|strong="G3588"\w* \w purpose|strong="G4286"\w*, \w they|strong="G1161"\w* weighed anchor \w and|strong="G1161"\w* \w sailed|strong="G3881"\w* \w along|strong="G3881"\w* \w Crete|strong="G2914"\w*, close \w to|strong="G1161"\w* shore. +\v 14 \w But|strong="G1161"\w* \w before|strong="G2596"\w* \w long|strong="G4183"\w*, \w a|strong="G1161"\w* stormy wind beat \w down|strong="G2596"\w* \w from|strong="G2596"\w* shore, \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w called|strong="G2564"\w* \w Euroclydon|strong="G2148"\w*.\f + \fr 27:14 \ft Or, “a northeaster”.\f* +\v 15 \w When|strong="G1161"\w* \w the|strong="G2532"\w* \w ship|strong="G4143"\w* \w was|strong="G3588"\w* \w caught|strong="G4884"\w* \w and|strong="G2532"\w* couldn’\w t|strong="G3588"\w* face \w the|strong="G2532"\w* wind, \w we|strong="G2532"\w* \w gave|strong="G2532"\w* \w way|strong="G1929"\w* \w to|strong="G2532"\w* \w it|strong="G2532"\w* \w and|strong="G2532"\w* \w were|strong="G3588"\w* \w driven|strong="G5342"\w* \w along|strong="G2532"\w*. +\v 16 \w Running|strong="G5295"\w* \w under|strong="G5295"\w* \w the|strong="G1161"\w* lee \w of|strong="G5100"\w* \w a|strong="G1096"\w* \w small|strong="G3519"\w* \w island|strong="G3519"\w* \w called|strong="G2564"\w* \w Clauda|strong="G2802"\w*, \w we|strong="G1161"\w* \w were|strong="G3588"\w* \w able|strong="G2480"\w*, \w with|strong="G3588"\w* \w difficulty|strong="G3433"\w*, \w to|strong="G1096"\w* secure \w the|strong="G1161"\w* \w boat|strong="G4627"\w*. +\v 17 \w After|strong="G3739"\w* \w they|strong="G3588"\w* \w had|strong="G3739"\w* hoisted \w it|strong="G3739"\w* \w up|strong="G1519"\w*, \w they|strong="G3588"\w* \w used|strong="G5530"\w* cables \w to|strong="G1519"\w* help reinforce \w the|strong="G1519"\w* \w ship|strong="G4143"\w*. \w Fearing|strong="G5399"\w* \w that|strong="G3739"\w* \w they|strong="G3588"\w* would \w run|strong="G1601"\w* \w aground|strong="G1601"\w* \w on|strong="G1519"\w* \w the|strong="G1519"\w* \w Syrtis|strong="G4950"\w* sand bars, \w they|strong="G3588"\w* lowered \w the|strong="G1519"\w* \w sea|strong="G4632"\w* \w anchor|strong="G4632"\w*, \w and|strong="G5037"\w* \w so|strong="G3779"\w* \w were|strong="G3588"\w* \w driven|strong="G5342"\w* \w along|strong="G5037"\w*. +\v 18 \w As|strong="G1161"\w* \w we|strong="G2249"\w* labored \w exceedingly|strong="G4971"\w* \w with|strong="G4160"\w* \w the|strong="G1161"\w* storm, \w the|strong="G1161"\w* \w next|strong="G1836"\w* \w day|strong="G1836"\w* \w they|strong="G1161"\w* \w began|strong="G1161"\w* \w to|strong="G1161"\w* throw \w things|strong="G3588"\w* overboard. +\v 19 \w On|strong="G3588"\w* \w the|strong="G2532"\w* \w third|strong="G5154"\w* \w day|strong="G3588"\w*, \w they|strong="G2532"\w* \w threw|strong="G4496"\w* \w out|strong="G2532"\w* \w the|strong="G2532"\w* \w ship|strong="G4143"\w*’s \w tackle|strong="G4631"\w* \w with|strong="G2532"\w* \w their|strong="G2532"\w* own hands. +\v 20 \w When|strong="G1161"\w* \w neither|strong="G3756"\w* \w sun|strong="G2246"\w* \w nor|strong="G3383"\w* stars shone \w on|strong="G1909"\w* \w us|strong="G2249"\w* \w for|strong="G1909"\w* \w many|strong="G4183"\w* \w days|strong="G2250"\w*, \w and|strong="G1161"\w* \w no|strong="G3756"\w* \w small|strong="G3641"\w* \w storm|strong="G5494"\w* pressed \w on|strong="G1909"\w* \w us|strong="G2249"\w*, \w all|strong="G3956"\w* \w hope|strong="G1680"\w* \w that|strong="G3588"\w* \w we|strong="G2249"\w* \w would|strong="G2250"\w* \w be|strong="G3756"\w* \w saved|strong="G4982"\w* \w was|strong="G3588"\w* \w now|strong="G1161"\w* \w taken|strong="G3063"\w* \w away|strong="G4014"\w*. +\p +\v 21 \w When|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2532"\w* \w been|strong="G2532"\w* \w long|strong="G4183"\w* \w without|strong="G3361"\w* food, \w Paul|strong="G3972"\w* \w stood|strong="G2476"\w* \w up|strong="G2476"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w middle|strong="G3319"\w* \w of|strong="G2532"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, “Sirs, \w you|strong="G1722"\w* \w should|strong="G1163"\w* \w have|strong="G2532"\w* listened \w to|strong="G2532"\w* \w me|strong="G1473"\w*, \w and|strong="G2532"\w* \w not|strong="G3361"\w* \w have|strong="G2532"\w* \w set|strong="G2476"\w* sail \w from|strong="G2532"\w* \w Crete|strong="G2914"\w* \w and|strong="G2532"\w* \w have|strong="G2532"\w* gotten \w this|strong="G3778"\w* injury \w and|strong="G2532"\w* \w loss|strong="G2209"\w*. +\v 22 \w Now|strong="G3568"\w* \w I|strong="G2532"\w* exhort \w you|strong="G5210"\w* \w to|strong="G2532"\w* \w cheer|strong="G2114"\w* \w up|strong="G2532"\w*, \w for|strong="G1063"\w* \w there|strong="G2532"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w no|strong="G3762"\w* loss \w of|strong="G1537"\w* \w life|strong="G5590"\w* \w among|strong="G1537"\w* \w you|strong="G5210"\w*, \w but|strong="G2532"\w* \w only|strong="G2532"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w ship|strong="G4143"\w*. +\v 23 \w For|strong="G1063"\w* \w there|strong="G2532"\w* \w stood|strong="G3936"\w* \w by|strong="G3936"\w* \w me|strong="G1473"\w* \w this|strong="G3778"\w* \w night|strong="G3571"\w* \w an|strong="G2532"\w* angel, \w belonging|strong="G1510"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w God|strong="G2316"\w* \w whose|strong="G3739"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w and|strong="G2532"\w* \w whom|strong="G3739"\w* \w I|strong="G1473"\w* \w serve|strong="G3000"\w*, +\v 24 \w saying|strong="G3004"\w*, ‘Don’\w t|strong="G3588"\w* \w be|strong="G2532"\w* \w afraid|strong="G5399"\w*, \w Paul|strong="G3972"\w*. \w You|strong="G4771"\w* \w must|strong="G1163"\w* \w stand|strong="G3936"\w* \w before|strong="G3936"\w* \w Caesar|strong="G2541"\w*. \w Behold|strong="G2400"\w*, \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w granted|strong="G5483"\w* \w you|strong="G4771"\w* \w all|strong="G3956"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w sail|strong="G4126"\w* \w with|strong="G3326"\w* \w you|strong="G4771"\w*.’ +\v 25 \w Therefore|strong="G1352"\w*, sirs, \w cheer|strong="G2114"\w* up! \w For|strong="G1063"\w* \w I|strong="G1473"\w* \w believe|strong="G4100"\w* \w God|strong="G2316"\w*, \w that|strong="G3754"\w* \w it|strong="G3754"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w just|strong="G2596"\w* \w as|strong="G2596"\w* \w it|strong="G3754"\w* \w has|strong="G2316"\w* \w been|strong="G1510"\w* \w spoken|strong="G2980"\w* \w to|strong="G2596"\w* \w me|strong="G1473"\w*. +\v 26 \w But|strong="G1161"\w* \w we|strong="G2249"\w* \w must|strong="G1163"\w* \w run|strong="G1601"\w* \w aground|strong="G1601"\w* \w on|strong="G1519"\w* \w a|strong="G1519"\w* \w certain|strong="G5100"\w* \w island|strong="G3520"\w*.” +\p +\v 27 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w the|strong="G1722"\w* \w fourteenth|strong="G5065"\w* \w night|strong="G3571"\w* \w had|strong="G3588"\w* \w come|strong="G1096"\w*, \w as|strong="G5613"\w* \w we|strong="G2249"\w* \w were|strong="G3588"\w* \w driven|strong="G1308"\w* back \w and|strong="G1161"\w* \w forth|strong="G3319"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* Adriatic Sea, \w about|strong="G5613"\w* \w midnight|strong="G3319"\w* \w the|strong="G1722"\w* \w sailors|strong="G3492"\w* surmised \w that|strong="G3588"\w* \w they|strong="G1161"\w* \w were|strong="G3588"\w* \w drawing|strong="G1096"\w* \w near|strong="G5561"\w* \w to|strong="G2596"\w* \w some|strong="G5100"\w* \w land|strong="G5561"\w*. +\v 28 \w They|strong="G2532"\w* \w took|strong="G2532"\w* \w soundings|strong="G1001"\w* \w and|strong="G2532"\w* \w found|strong="G2147"\w* \w twenty|strong="G1501"\w* \w fathoms|strong="G3712"\w*.\f + \fr 27:28 \ft 20 fathoms = 120 feet = 36.6 meters\f* \w After|strong="G1161"\w* \w a|strong="G2532"\w* \w little|strong="G1024"\w* \w while|strong="G1161"\w*, \w they|strong="G2532"\w* \w took|strong="G2532"\w* \w soundings|strong="G1001"\w* \w again|strong="G3825"\w*, \w and|strong="G2532"\w* \w found|strong="G2147"\w* \w fifteen|strong="G1178"\w* \w fathoms|strong="G3712"\w*.\f + \fr 27:28 \ft 15 fathoms = 90 feet = 27.4 meters\f* +\v 29 \w Fearing|strong="G5399"\w* \w that|strong="G1096"\w* \w we|strong="G2250"\w* \w would|strong="G1096"\w* \w run|strong="G1601"\w* \w aground|strong="G1601"\w* \w on|strong="G1537"\w* rocky ground, \w they|strong="G5037"\w* \w let|strong="G1096"\w* go \w four|strong="G5064"\w* anchors \w from|strong="G1537"\w* \w the|strong="G1537"\w* \w stern|strong="G4403"\w*, \w and|strong="G5037"\w* \w wished|strong="G2172"\w* \w for|strong="G1537"\w* \w daylight|strong="G2250"\w*. +\v 30 \w As|strong="G5613"\w* \w the|strong="G2532"\w* \w sailors|strong="G3492"\w* \w were|strong="G3588"\w* \w trying|strong="G2212"\w* \w to|strong="G1519"\w* \w flee|strong="G5343"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w ship|strong="G4143"\w* \w and|strong="G2532"\w* \w had|strong="G2532"\w* lowered \w the|strong="G2532"\w* \w boat|strong="G4143"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w*, \w pretending|strong="G4392"\w* \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w would|strong="G3195"\w* \w lay|strong="G1614"\w* \w out|strong="G1537"\w* anchors \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w bow|strong="G4408"\w*, +\v 31 \w Paul|strong="G3972"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w centurion|strong="G1543"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w soldiers|strong="G4757"\w*, “\w Unless|strong="G1437"\w* \w these|strong="G3778"\w* \w stay|strong="G3306"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w ship|strong="G4143"\w*, \w you|strong="G5210"\w* \w can|strong="G1410"\w*’\w t|strong="G3588"\w* \w be|strong="G2532"\w* \w saved|strong="G4982"\w*.” +\v 32 \w Then|strong="G2532"\w* \w the|strong="G2532"\w* \w soldiers|strong="G4757"\w* \w cut|strong="G2532"\w* \w away|strong="G1601"\w* \w the|strong="G2532"\w* \w ropes|strong="G4979"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w boat|strong="G4627"\w* \w and|strong="G2532"\w* \w let|strong="G1439"\w* \w it|strong="G2532"\w* \w fall|strong="G1601"\w* \w off|strong="G1601"\w*. +\p +\v 33 \w While|strong="G1161"\w* \w the|strong="G1161"\w* \w day|strong="G2250"\w* \w was|strong="G1096"\w* \w coming|strong="G1096"\w* \w on|strong="G1161"\w*, \w Paul|strong="G3972"\w* \w begged|strong="G3870"\w* \w them|strong="G3588"\w* \w all|strong="G1161"\w* \w to|strong="G3004"\w* \w take|strong="G1096"\w* \w some|strong="G3739"\w* \w food|strong="G5160"\w*, \w saying|strong="G3004"\w*, “\w Today|strong="G4594"\w* \w is|strong="G3588"\w* \w the|strong="G1161"\w* \w fourteenth|strong="G5065"\w* \w day|strong="G2250"\w* \w that|strong="G3739"\w* \w you|strong="G3739"\w* wait \w and|strong="G1161"\w* \w continue|strong="G1096"\w* fasting, having \w taken|strong="G1096"\w* \w nothing|strong="G3367"\w*. +\v 34 \w Therefore|strong="G1352"\w* \w I|strong="G1063"\w* \w beg|strong="G3870"\w* \w you|strong="G5210"\w* \w to|strong="G4314"\w* \w take|strong="G3335"\w* \w some|strong="G3588"\w* \w food|strong="G5160"\w*, \w for|strong="G1063"\w* \w this|strong="G3778"\w* \w is|strong="G3588"\w* \w for|strong="G1063"\w* \w your|strong="G5212"\w* safety; \w for|strong="G1063"\w* \w not|strong="G3762"\w* \w a|strong="G4314"\w* \w hair|strong="G2359"\w* \w will|strong="G3778"\w* perish \w from|strong="G3588"\w* \w any|strong="G3762"\w* \w of|strong="G2776"\w* \w your|strong="G5212"\w* \w heads|strong="G2776"\w*.” +\v 35 \w When|strong="G1161"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w said|strong="G3004"\w* \w this|strong="G3778"\w* \w and|strong="G2532"\w* \w had|strong="G2532"\w* \w taken|strong="G2983"\w* bread, \w he|strong="G2532"\w* \w gave|strong="G2532"\w* \w thanks|strong="G2168"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w presence|strong="G1799"\w* \w of|strong="G2316"\w* \w all|strong="G3956"\w*; \w then|strong="G2532"\w* \w he|strong="G2532"\w* \w broke|strong="G2806"\w* \w it|strong="G2532"\w* \w and|strong="G2532"\w* \w began|strong="G1161"\w* \w to|strong="G2532"\w* \w eat|strong="G2068"\w*. +\v 36 \w Then|strong="G2532"\w* \w they|strong="G2532"\w* \w all|strong="G3956"\w* cheered \w up|strong="G2532"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w also|strong="G2532"\w* \w took|strong="G4355"\w* \w food|strong="G5160"\w*. +\v 37 \w In|strong="G1722"\w* \w all|strong="G3956"\w*, \w we|strong="G1161"\w* \w were|strong="G1510"\w* \w two|strong="G1250"\w* \w hundred|strong="G1250"\w* \w seventy-six|strong="G1440"\w* \w souls|strong="G5590"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w ship|strong="G4143"\w*. +\v 38 \w When|strong="G1161"\w* \w they|strong="G1161"\w* \w had|strong="G3588"\w* \w eaten|strong="G2880"\w* \w enough|strong="G2880"\w*, \w they|strong="G1161"\w* \w lightened|strong="G2893"\w* \w the|strong="G1519"\w* \w ship|strong="G4143"\w*, \w throwing|strong="G1544"\w* \w out|strong="G1544"\w* \w the|strong="G1519"\w* \w wheat|strong="G4621"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w sea|strong="G2281"\w*. +\v 39 \w When|strong="G3753"\w* \w it|strong="G1161"\w* \w was|strong="G1096"\w* \w day|strong="G2250"\w*, \w they|strong="G1161"\w* didn’\w t|strong="G3588"\w* \w recognize|strong="G1921"\w* \w the|strong="G1519"\w* \w land|strong="G1093"\w*, \w but|strong="G1161"\w* \w they|strong="G1161"\w* noticed \w a|strong="G2192"\w* \w certain|strong="G5100"\w* \w bay|strong="G2859"\w* \w with|strong="G1519"\w* \w a|strong="G2192"\w* beach, \w and|strong="G1161"\w* \w they|strong="G1161"\w* \w decided|strong="G1096"\w* \w to|strong="G1519"\w* try \w to|strong="G1519"\w* \w drive|strong="G1856"\w* \w the|strong="G1519"\w* \w ship|strong="G4143"\w* \w onto|strong="G1519"\w* \w it|strong="G1161"\w*. +\v 40 \w Casting|strong="G4014"\w* \w off|strong="G4014"\w* \w the|strong="G2532"\w* anchors, \w they|strong="G2532"\w* \w left|strong="G1439"\w* \w them|strong="G3588"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w*, \w at|strong="G1519"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w* time untying \w the|strong="G2532"\w* \w rudder|strong="G4079"\w* \w ropes|strong="G2202"\w*. \w Hoisting|strong="G1869"\w* \w up|strong="G1869"\w* \w the|strong="G2532"\w* foresail \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w wind|strong="G4154"\w*, \w they|strong="G2532"\w* \w made|strong="G2722"\w* \w for|strong="G1519"\w* \w the|strong="G2532"\w* beach. +\v 41 \w But|strong="G1161"\w* coming \w to|strong="G1519"\w* \w a|strong="G2532"\w* \w place|strong="G5117"\w* \w where|strong="G5117"\w* \w two|strong="G1337"\w* \w seas|strong="G1337"\w* \w met|strong="G1337"\w*, \w they|strong="G2532"\w* \w ran|strong="G2027"\w* \w the|strong="G2532"\w* \w vessel|strong="G3491"\w* \w aground|strong="G2027"\w*. \w The|strong="G2532"\w* \w bow|strong="G4408"\w* struck \w and|strong="G2532"\w* \w remained|strong="G3306"\w* immovable, \w but|strong="G1161"\w* \w the|strong="G2532"\w* \w stern|strong="G4403"\w* \w began|strong="G1161"\w* \w to|strong="G1519"\w* \w break|strong="G3089"\w* \w up|strong="G1519"\w* \w by|strong="G5259"\w* \w the|strong="G2532"\w* violence \w of|strong="G5259"\w* \w the|strong="G2532"\w* waves. +\p +\v 42 \w The|strong="G1161"\w* \w soldiers|strong="G4757"\w*’ \w counsel|strong="G1012"\w* \w was|strong="G1096"\w* \w to|strong="G2443"\w* kill \w the|strong="G1161"\w* \w prisoners|strong="G1202"\w*, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w none|strong="G3361"\w* \w of|strong="G5100"\w* \w them|strong="G3588"\w* \w would|strong="G1096"\w* \w swim|strong="G1579"\w* \w out|strong="G1096"\w* \w and|strong="G1161"\w* \w escape|strong="G1309"\w*. +\v 43 \w But|strong="G1161"\w* \w the|strong="G1161"\w* \w centurion|strong="G1543"\w*, \w desiring|strong="G1014"\w* \w to|strong="G1909"\w* \w save|strong="G1295"\w* \w Paul|strong="G3972"\w*, stopped \w them|strong="G3588"\w* \w from|strong="G3588"\w* \w their|strong="G1438"\w* \w purpose|strong="G1013"\w*, \w and|strong="G1161"\w* \w commanded|strong="G2753"\w* \w that|strong="G3588"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w could|strong="G1410"\w* \w swim|strong="G2860"\w* \w should|strong="G3588"\w* throw \w themselves|strong="G1438"\w* overboard \w first|strong="G4413"\w* \w to|strong="G1909"\w* go \w toward|strong="G1909"\w* \w the|strong="G1161"\w* \w land|strong="G1093"\w*; +\v 44 \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w rest|strong="G3062"\w* \w should|strong="G5100"\w* \w follow|strong="G1161"\w*, \w some|strong="G5100"\w* \w on|strong="G1909"\w* \w planks|strong="G4548"\w* \w and|strong="G2532"\w* \w some|strong="G5100"\w* \w on|strong="G1909"\w* \w other|strong="G3062"\w* \w things|strong="G3956"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w ship|strong="G4143"\w*. \w So|strong="G3779"\w* \w they|strong="G2532"\w* \w all|strong="G3956"\w* \w escaped|strong="G1295"\w* \w safely|strong="G1295"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w land|strong="G1093"\w*. +\c 28 +\p +\v 1 \w When|strong="G2532"\w* \w we|strong="G3754"\w* \w had|strong="G2532"\w* \w escaped|strong="G1295"\w*, \w then|strong="G2532"\w* \w they|strong="G2532"\w*\f + \fr 28:1 \ft NU reads “we”\f* \w learned|strong="G1921"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w island|strong="G3520"\w* \w was|strong="G3588"\w* \w called|strong="G2564"\w* \w Malta|strong="G3194"\w*. +\v 2 \w The|strong="G2532"\w* natives \w showed|strong="G3930"\w* \w us|strong="G2249"\w* uncommon \w kindness|strong="G5363"\w*; \w for|strong="G1063"\w* \w they|strong="G2532"\w* kindled \w a|strong="G2532"\w* \w fire|strong="G4443"\w* \w and|strong="G2532"\w* \w received|strong="G4355"\w* \w us|strong="G2249"\w* \w all|strong="G3956"\w*, \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w present|strong="G2186"\w* \w rain|strong="G5205"\w* \w and|strong="G2532"\w* \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w cold|strong="G5592"\w*. +\v 3 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w Paul|strong="G3972"\w* \w had|strong="G2532"\w* \w gathered|strong="G4962"\w* \w a|strong="G2532"\w* \w bundle|strong="G4128"\w* \w of|strong="G2532"\w* \w sticks|strong="G5434"\w* \w and|strong="G2532"\w* \w laid|strong="G2007"\w* \w them|strong="G3588"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w fire|strong="G4443"\w*, \w a|strong="G2532"\w* \w viper|strong="G2191"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w* \w because|strong="G1909"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w heat|strong="G2329"\w* \w and|strong="G2532"\w* \w fastened|strong="G2510"\w* \w on|strong="G1909"\w* \w his|strong="G2007"\w* \w hand|strong="G5495"\w*. +\v 4 \w When|strong="G1161"\w* \w the|strong="G1537"\w* natives \w saw|strong="G3708"\w* \w the|strong="G1537"\w* \w creature|strong="G2342"\w* \w hanging|strong="G2910"\w* \w from|strong="G1537"\w* \w his|strong="G3708"\w* \w hand|strong="G5495"\w*, \w they|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w one|strong="G3739"\w* \w another|strong="G3739"\w*, “\w No|strong="G3756"\w* \w doubt|strong="G3843"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w is|strong="G1510"\w* \w a|strong="G5613"\w* \w murderer|strong="G5406"\w*, \w whom|strong="G3739"\w*, \w though|strong="G5613"\w* \w he|strong="G1161"\w* \w has|strong="G3739"\w* \w escaped|strong="G1295"\w* \w from|strong="G1537"\w* \w the|strong="G1537"\w* \w sea|strong="G2281"\w*, \w yet|strong="G1161"\w* \w Justice|strong="G1349"\w* \w has|strong="G3739"\w* \w not|strong="G3756"\w* \w allowed|strong="G1439"\w* \w to|strong="G4314"\w* \w live|strong="G2198"\w*.” +\v 5 \w However|strong="G3767"\w* \w he|strong="G3588"\w* shook off \w the|strong="G1519"\w* \w creature|strong="G2342"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w fire|strong="G4442"\w*, \w and|strong="G3767"\w* wasn’\w t|strong="G3588"\w* harmed. +\v 6 \w But|strong="G1161"\w* \w they|strong="G2532"\w* expected \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w would|strong="G3195"\w* \w have|strong="G2532"\w* \w swollen|strong="G4092"\w* \w or|strong="G2228"\w* \w fallen|strong="G2667"\w* \w down|strong="G2667"\w* \w dead|strong="G3498"\w* suddenly, \w but|strong="G1161"\w* \w when|strong="G1161"\w* \w they|strong="G2532"\w* \w watched|strong="G2334"\w* \w for|strong="G1519"\w* \w a|strong="G1096"\w* \w long|strong="G4183"\w* \w time|strong="G1909"\w* \w and|strong="G2532"\w* \w saw|strong="G2334"\w* \w nothing|strong="G3367"\w* bad \w happen|strong="G1096"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*, \w they|strong="G2532"\w* \w changed|strong="G3328"\w* \w their|strong="G2532"\w* \w minds|strong="G3328"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w a|strong="G1096"\w* \w god|strong="G2316"\w*. +\p +\v 7 \w Now|strong="G1161"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w neighborhood|strong="G4012"\w* \w of|strong="G4012"\w* \w that|strong="G3739"\w* \w place|strong="G5117"\w* \w were|strong="G3588"\w* \w lands|strong="G5564"\w* \w belonging|strong="G5225"\w* \w to|strong="G1722"\w* \w the|strong="G1722"\w* \w chief|strong="G4413"\w* \w man|strong="G4413"\w* \w of|strong="G4012"\w* \w the|strong="G1722"\w* \w island|strong="G3520"\w*, \w named|strong="G3686"\w* \w Publius|strong="G4196"\w*, \w who|strong="G3739"\w* received \w us|strong="G3579"\w* \w and|strong="G1161"\w* \w courteously|strong="G5390"\w* \w entertained|strong="G3579"\w* \w us|strong="G3579"\w* \w for|strong="G4012"\w* \w three|strong="G5140"\w* \w days|strong="G2250"\w*. +\v 8 \w The|strong="G2532"\w* \w father|strong="G3962"\w* \w of|strong="G2532"\w* \w Publius|strong="G4196"\w* \w lay|strong="G2007"\w* \w sick|strong="G2621"\w* \w of|strong="G2532"\w* \w fever|strong="G4446"\w* \w and|strong="G2532"\w* \w dysentery|strong="G1420"\w*. \w Paul|strong="G3972"\w* \w entered|strong="G1525"\w* \w in|strong="G1525"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, \w prayed|strong="G4336"\w*, \w and|strong="G2532"\w* \w laying|strong="G2007"\w* \w his|strong="G2007"\w* \w hands|strong="G5495"\w* \w on|strong="G5495"\w* \w him|strong="G3588"\w*, \w healed|strong="G2390"\w* \w him|strong="G3588"\w*. +\v 9 \w Then|strong="G2532"\w* \w when|strong="G1161"\w* \w this|strong="G3778"\w* \w was|strong="G1096"\w* \w done|strong="G1096"\w*, \w the|strong="G1722"\w* \w rest|strong="G3062"\w* \w also|strong="G2532"\w* \w who|strong="G3588"\w* \w had|strong="G2192"\w* diseases \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w island|strong="G3520"\w* \w came|strong="G4334"\w* \w and|strong="G2532"\w* \w were|strong="G3588"\w* \w cured|strong="G2323"\w*. +\v 10 \w They|strong="G2532"\w* \w also|strong="G2532"\w* \w honored|strong="G5091"\w* \w us|strong="G2249"\w* \w with|strong="G4314"\w* \w many|strong="G4183"\w* \w honors|strong="G5091"\w*; \w and|strong="G2532"\w* \w when|strong="G2532"\w* \w we|strong="G2249"\w* \w sailed|strong="G2249"\w*, \w they|strong="G2532"\w* \w put|strong="G2007"\w* \w on|strong="G2007"\w* board \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w that|strong="G3739"\w* \w we|strong="G2249"\w* \w needed|strong="G5532"\w*. +\p +\v 11 \w After|strong="G3326"\w* \w three|strong="G5140"\w* \w months|strong="G3376"\w*, \w we|strong="G1161"\w* set sail \w in|strong="G1722"\w* \w a|strong="G1722"\w* \w ship|strong="G4143"\w* \w of|strong="G1722"\w* Alexandria \w which|strong="G3588"\w* \w had|strong="G3588"\w* \w wintered|strong="G3914"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w island|strong="G3520"\w*, \w whose|strong="G3588"\w* \w figurehead|strong="G3902"\w* \w was|strong="G3588"\w* “\w The|strong="G1722"\w* \w Twin|strong="G1359"\w* \w Brothers|strong="G1359"\w*.” +\v 12 Touching \w at|strong="G1519"\w* \w Syracuse|strong="G4946"\w*, \w we|strong="G2532"\w* \w stayed|strong="G1961"\w* \w there|strong="G2532"\w* \w three|strong="G5140"\w* \w days|strong="G2250"\w*. +\v 13 \w From|strong="G2064"\w* \w there|strong="G2532"\w* \w we|strong="G2532"\w* circled \w around|strong="G4022"\w* \w and|strong="G2532"\w* \w arrived|strong="G2064"\w* \w at|strong="G1519"\w* \w Rhegium|strong="G4484"\w*. \w After|strong="G3326"\w* \w one|strong="G1520"\w* \w day|strong="G2250"\w*, \w a|strong="G2532"\w* \w south|strong="G3558"\w* \w wind|strong="G3558"\w* \w sprang|strong="G1920"\w* \w up|strong="G1519"\w*, \w and|strong="G2532"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w second|strong="G1206"\w* \w day|strong="G2250"\w* \w we|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w Puteoli|strong="G4223"\w*, +\v 14 \w where|strong="G3757"\w* \w we|strong="G2532"\w* \w found|strong="G2147"\w* brothers,\f + \fr 28:14 \ft The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”\f* \w and|strong="G2532"\w* \w were|strong="G3588"\w* entreated \w to|strong="G1519"\w* \w stay|strong="G1961"\w* \w with|strong="G3844"\w* \w them|strong="G3588"\w* \w for|strong="G1519"\w* \w seven|strong="G2033"\w* \w days|strong="G2250"\w*. \w So|strong="G3779"\w* \w we|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w Rome|strong="G4516"\w*. +\v 15 \w From|strong="G2064"\w* \w there|strong="G2532"\w* \w the|strong="G2532"\w* brothers, \w when|strong="G2532"\w* \w they|strong="G2532"\w* heard \w of|strong="G4012"\w* \w us|strong="G1519"\w*, \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w meet|strong="G3588"\w* \w us|strong="G1519"\w* \w as|strong="G1519"\w* \w far|strong="G3588"\w* \w as|strong="G1519"\w* \w The|strong="G2532"\w* \w Market|strong="G5410"\w* \w of|strong="G4012"\w* Appius \w and|strong="G2532"\w* \w The|strong="G2532"\w* \w Three|strong="G5140"\w* \w Taverns|strong="G4999"\w*. \w When|strong="G2532"\w* \w Paul|strong="G3972"\w* \w saw|strong="G3708"\w* \w them|strong="G3588"\w*, \w he|strong="G2532"\w* \w thanked|strong="G2168"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w took|strong="G2983"\w* \w courage|strong="G2294"\w*. +\v 16 \w When|strong="G3753"\w* \w we|strong="G1161"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w Rome|strong="G4516"\w*, \w the|strong="G1519"\w* centurion delivered \w the|strong="G1519"\w* prisoners \w to|strong="G1519"\w* \w the|strong="G1519"\w* captain \w of|strong="G2596"\w* \w the|strong="G1519"\w* \w guard|strong="G5442"\w*, \w but|strong="G1161"\w* \w Paul|strong="G3972"\w* \w was|strong="G3588"\w* \w allowed|strong="G2010"\w* \w to|strong="G1519"\w* \w stay|strong="G3306"\w* \w by|strong="G2596"\w* \w himself|strong="G1438"\w* \w with|strong="G4862"\w* \w the|strong="G1519"\w* \w soldier|strong="G4757"\w* \w who|strong="G3588"\w* \w guarded|strong="G5442"\w* \w him|strong="G3588"\w*. +\p +\v 17 \w After|strong="G3326"\w* \w three|strong="G5140"\w* \w days|strong="G2250"\w* \w Paul|strong="G1510"\w* \w called|strong="G3004"\w* \w together|strong="G4905"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G1510"\w* \w the|strong="G1519"\w* \w leaders|strong="G4413"\w* \w of|strong="G1537"\w* \w the|strong="G1519"\w* \w Jews|strong="G2453"\w*. \w When|strong="G1161"\w* \w they|strong="G1161"\w* \w had|strong="G1510"\w* \w come|strong="G1096"\w* \w together|strong="G4905"\w*, \w he|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, “\w I|strong="G1473"\w*, brothers, \w though|strong="G1161"\w* \w I|strong="G1473"\w* \w had|strong="G1510"\w* \w done|strong="G4160"\w* \w nothing|strong="G3762"\w* \w against|strong="G4314"\w* \w the|strong="G1519"\w* \w people|strong="G2992"\w* \w or|strong="G2228"\w* \w the|strong="G1519"\w* \w customs|strong="G1485"\w* \w of|strong="G1537"\w* \w our|strong="G3326"\w* \w fathers|strong="G3971"\w*, still \w was|strong="G1510"\w* \w delivered|strong="G3860"\w* \w prisoner|strong="G1198"\w* \w from|strong="G1537"\w* \w Jerusalem|strong="G2414"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w hands|strong="G5495"\w* \w of|strong="G1537"\w* \w the|strong="G1519"\w* \w Romans|strong="G4514"\w*, +\v 18 \w who|strong="G3588"\w*, \w when|strong="G1722"\w* \w they|strong="G3588"\w* \w had|strong="G3588"\w* examined \w me|strong="G1473"\w*, desired \w to|strong="G1722"\w* set \w me|strong="G1473"\w* \w free|strong="G1722"\w*, \w because|strong="G1223"\w* \w there|strong="G1722"\w* \w was|strong="G3588"\w* \w no|strong="G3367"\w* \w cause|strong="G1223"\w* \w of|strong="G1223"\w* \w death|strong="G2288"\w* \w in|strong="G1722"\w* \w me|strong="G1473"\w*. +\v 19 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w the|strong="G1161"\w* \w Jews|strong="G2453"\w* spoke \w against|strong="G2723"\w* \w it|strong="G1161"\w*, \w I|strong="G1473"\w* \w was|strong="G3588"\w* constrained \w to|strong="G3756"\w* \w appeal|strong="G1941"\w* \w to|strong="G3756"\w* \w Caesar|strong="G2541"\w*, \w not|strong="G3756"\w* \w that|strong="G3588"\w* \w I|strong="G1473"\w* \w had|strong="G2192"\w* \w anything|strong="G5100"\w* \w about|strong="G5613"\w* \w which|strong="G3588"\w* \w to|strong="G3756"\w* \w accuse|strong="G2723"\w* \w my|strong="G1473"\w* \w nation|strong="G1484"\w*. +\v 20 \w For|strong="G1063"\w* \w this|strong="G3778"\w* \w cause|strong="G1223"\w* \w therefore|strong="G3767"\w* \w I|strong="G2532"\w* \w asked|strong="G3870"\w* \w to|strong="G2532"\w* \w see|strong="G3708"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w speak|strong="G4354"\w* \w with|strong="G1223"\w* \w you|strong="G5210"\w*. \w For|strong="G1063"\w* \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w hope|strong="G1680"\w* \w of|strong="G1223"\w* \w Israel|strong="G2474"\w* \w I|strong="G2532"\w* \w am|strong="G2532"\w* bound \w with|strong="G1223"\w* \w this|strong="G3778"\w* chain.” +\p +\v 21 \w They|strong="G1161"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, “\w We|strong="G2249"\w* \w neither|strong="G3777"\w* \w received|strong="G1209"\w* \w letters|strong="G1121"\w* \w from|strong="G3588"\w* \w Judea|strong="G2449"\w* \w concerning|strong="G4012"\w* \w you|strong="G4771"\w*, \w nor|strong="G3777"\w* \w did|strong="G5100"\w* \w any|strong="G5100"\w* \w of|strong="G4012"\w* \w the|strong="G1161"\w* brothers \w come|strong="G3854"\w* \w here|strong="G3854"\w* \w and|strong="G1161"\w* report \w or|strong="G2228"\w* \w speak|strong="G2980"\w* \w any|strong="G5100"\w* \w evil|strong="G4190"\w* \w of|strong="G4012"\w* \w you|strong="G4771"\w*. +\v 22 \w But|strong="G1161"\w* \w we|strong="G2249"\w* desire \w to|strong="G1161"\w* hear \w from|strong="G3844"\w* \w you|strong="G4771"\w* \w what|strong="G3739"\w* \w you|strong="G4771"\w* \w think|strong="G5426"\w*. \w For|strong="G1063"\w*, \w as|strong="G1161"\w* \w concerning|strong="G4012"\w* \w this|strong="G3778"\w* sect, \w it|strong="G3754"\w* \w is|strong="G1510"\w* \w known|strong="G1110"\w* \w to|strong="G1161"\w* \w us|strong="G2249"\w* \w that|strong="G3754"\w* \w everywhere|strong="G3837"\w* \w it|strong="G3754"\w* \w is|strong="G1510"\w* spoken \w against|strong="G4012"\w*.” +\p +\v 23 \w When|strong="G1161"\w* \w they|strong="G2532"\w* \w had|strong="G2424"\w* \w appointed|strong="G5021"\w* \w him|strong="G3588"\w* \w a|strong="G2532"\w* \w day|strong="G2250"\w*, \w many|strong="G4183"\w* \w people|strong="G2240"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w at|strong="G1519"\w* \w his|strong="G1438"\w* \w lodging|strong="G3578"\w*. \w He|strong="G2532"\w* \w explained|strong="G1620"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \w testifying|strong="G1263"\w* \w about|strong="G4012"\w* \w God|strong="G2316"\w*’s Kingdom, \w and|strong="G2532"\w* \w persuading|strong="G3982"\w* \w them|strong="G3588"\w* \w concerning|strong="G4012"\w* \w Jesus|strong="G2424"\w*, \w both|strong="G2532"\w* \w from|strong="G2064"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w* \w of|strong="G4012"\w* \w Moses|strong="G3475"\w* \w and|strong="G2532"\w* \w from|strong="G2064"\w* \w the|strong="G2532"\w* \w prophets|strong="G4396"\w*, \w from|strong="G2064"\w* \w morning|strong="G4404"\w* \w until|strong="G2193"\w* \w evening|strong="G2073"\w*. +\v 24 \w Some|strong="G3588"\w* \w believed|strong="G3982"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w which|strong="G3588"\w* \w were|strong="G3588"\w* \w spoken|strong="G3004"\w*, \w and|strong="G2532"\w* \w some|strong="G3588"\w* disbelieved. +\v 25 \w When|strong="G1161"\w* \w they|strong="G1161"\w* didn’\w t|strong="G3588"\w* \w agree|strong="G1510"\w* \w among|strong="G4314"\w* \w themselves|strong="G1510"\w*, \w they|strong="G1161"\w* departed \w after|strong="G1161"\w* \w Paul|strong="G3972"\w* \w had|strong="G3972"\w* \w spoken|strong="G2980"\w* \w one|strong="G1520"\w* \w message|strong="G4487"\w*: “\w The|strong="G1161"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w spoke|strong="G2980"\w* \w rightly|strong="G2573"\w* \w through|strong="G1223"\w* \w Isaiah|strong="G2268"\w* \w the|strong="G1161"\w* \w prophet|strong="G4396"\w* \w to|strong="G4314"\w* \w our|strong="G1223"\w* \w fathers|strong="G3962"\w*, +\v 26 \w saying|strong="G3004"\w*, +\q1 ‘\w Go|strong="G4198"\w* \w to|strong="G4314"\w* \w this|strong="G3778"\w* \w people|strong="G2992"\w* \w and|strong="G2532"\w* \w say|strong="G3004"\w*, +\q1 \w in|strong="G2532"\w* hearing, \w you|strong="G3004"\w* \w will|strong="G2532"\w* hear, +\q2 \w but|strong="G2532"\w* \w will|strong="G2532"\w* \w in|strong="G2532"\w* \w no|strong="G3756"\w* \w way|strong="G4198"\w* \w understand|strong="G4920"\w*. +\q1 \w In|strong="G2532"\w* \w seeing|strong="G3708"\w*, \w you|strong="G3004"\w* \w will|strong="G2532"\w* \w see|strong="G3708"\w*, +\q2 \w but|strong="G2532"\w* \w will|strong="G2532"\w* \w in|strong="G2532"\w* \w no|strong="G3756"\w* \w way|strong="G4198"\w* \w perceive|strong="G3708"\w*. +\q1 +\v 27 \w For|strong="G1063"\w* \w this|strong="G3778"\w* \w people|strong="G2992"\w*’s \w heart|strong="G2588"\w* \w has|strong="G3778"\w* grown callous. +\q2 \w Their|strong="G1438"\w* \w ears|strong="G3775"\w* \w are|strong="G3588"\w* \w dull|strong="G3975"\w* \w of|strong="G2532"\w* \w hearing|strong="G3775"\w*. +\q2 \w Their|strong="G1438"\w* \w eyes|strong="G3788"\w* \w they|strong="G2532"\w* \w have|strong="G2532"\w* \w closed|strong="G2576"\w*. +\q1 \w Lest|strong="G3379"\w* \w they|strong="G2532"\w* \w should|strong="G3588"\w* \w see|strong="G3708"\w* \w with|strong="G2532"\w* \w their|strong="G1438"\w* \w eyes|strong="G3788"\w*, +\q2 hear \w with|strong="G2532"\w* \w their|strong="G1438"\w* \w ears|strong="G3775"\w*, +\q2 \w understand|strong="G4920"\w* \w with|strong="G2532"\w* \w their|strong="G1438"\w* \w heart|strong="G2588"\w*, +\q2 \w and|strong="G2532"\w* \w would|strong="G2532"\w* \w turn|strong="G1994"\w* \w again|strong="G1994"\w*, +\q2 \w then|strong="G2532"\w* \w I|strong="G2532"\w* \w would|strong="G2532"\w* \w heal|strong="G2390"\w* \w them|strong="G3588"\w*.’\x + \xo 28:27 \xt Isaiah 6:9-10\x* +\p +\v 28 “\w Be|strong="G1510"\w* \w it|strong="G2532"\w* \w known|strong="G1110"\w* \w therefore|strong="G3767"\w* \w to|strong="G2532"\w* \w you|strong="G4771"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w salvation|strong="G4992"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w is|strong="G1510"\w* \w sent|strong="G2316"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w nations|strong="G1484"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w will|strong="G2316"\w* listen.” +\p +\v 29 When he had said these words, the Jews departed, having a great dispute among themselves.\f + \fr 28:29 \ft NU omits verse 29.\f* +\p +\v 30 \w Paul|strong="G1696"\w* \w stayed|strong="G1696"\w* \w two|strong="G1333"\w* \w whole|strong="G3650"\w* \w years|strong="G1333"\w* \w in|strong="G1722"\w* \w his|strong="G3956"\w* \w own|strong="G2398"\w* \w rented|strong="G3410"\w* \w house|strong="G3410"\w* \w and|strong="G2532"\w* received \w all|strong="G3956"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* coming \w to|strong="G4314"\w* \w him|strong="G3588"\w*, +\v 31 \w preaching|strong="G2784"\w* \w God|strong="G2316"\w*’\w s|strong="G2962"\w* Kingdom \w and|strong="G2532"\w* \w teaching|strong="G1321"\w* \w the|strong="G2532"\w* \w things|strong="G3956"\w* \w concerning|strong="G4012"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w with|strong="G3326"\w* \w all|strong="G3956"\w* \w boldness|strong="G3954"\w*, \w without|strong="G2532"\w* hindrance. \ No newline at end of file diff --git a/bibles/eng-web_usfm/75-ROMeng-web.usfm b/bibles/eng-web_usfm/75-ROMeng-web.usfm new file mode 100644 index 0000000..3d2aff1 --- /dev/null +++ b/bibles/eng-web_usfm/75-ROMeng-web.usfm @@ -0,0 +1,627 @@ +\id ROM 45-ROM-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Romans +\toc1 Paul’s Letter to the Romans +\toc2 Romans +\toc3 Rom +\mt2 Paul’s Letter to the +\mt1 Romans +\c 1 +\p +\v 1 \w Paul|strong="G3972"\w*, \w a|strong="G1519"\w* \w servant|strong="G1401"\w* \w of|strong="G2316"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*,\f + \fr 1:1 \ft “Christ” means “Anointed One”.\f* \w called|strong="G2822"\w* \w to|strong="G1519"\w* \w be|strong="G1519"\w* \w an|strong="G1519"\w* apostle, set apart \w for|strong="G1519"\w* \w the|strong="G1519"\w* \w Good|strong="G2098"\w* \w News|strong="G2098"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, +\v 2 \w which|strong="G3739"\w* \w he|strong="G3739"\w* \w promised|strong="G4279"\w* \w before|strong="G1722"\w* \w through|strong="G1223"\w* \w his|strong="G1223"\w* \w prophets|strong="G4396"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* holy \w Scriptures|strong="G1124"\w*, +\v 3 \w concerning|strong="G4012"\w* \w his|strong="G4012"\w* \w Son|strong="G5207"\w*, \w who|strong="G3588"\w* \w was|strong="G1096"\w* \w born|strong="G1096"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* offspring\f + \fr 1:3 \ft or, seed\f* \w of|strong="G1537"\w* \w David|strong="G1138"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1537"\w* \w flesh|strong="G4561"\w*, +\v 4 \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w declared|strong="G3724"\w* \w to|strong="G2596"\w* \w be|strong="G2316"\w* \w the|strong="G1722"\w* \w Son|strong="G5207"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w* \w with|strong="G1722"\w* \w power|strong="G1411"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w of|strong="G1537"\w* holiness, \w by|strong="G1722"\w* \w the|strong="G1722"\w* resurrection \w from|strong="G1537"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w*, \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w*, +\v 5 \w through|strong="G1223"\w* \w whom|strong="G3739"\w* \w we|strong="G3739"\w* \w received|strong="G2983"\w* \w grace|strong="G5485"\w* \w and|strong="G2532"\w* apostleship \w for|strong="G1519"\w* \w obedience|strong="G5218"\w* \w of|strong="G1223"\w* \w faith|strong="G4102"\w* \w among|strong="G1722"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w nations|strong="G1484"\w* \w for|strong="G1519"\w* \w his|strong="G3956"\w* \w name|strong="G3686"\w*’s \w sake|strong="G1223"\w*; +\v 6 \w among|strong="G1722"\w* \w whom|strong="G3739"\w* \w you|strong="G5210"\w* \w are|strong="G1510"\w* \w also|strong="G2532"\w* \w called|strong="G2822"\w* \w to|strong="G2532"\w* \w belong|strong="G1510"\w* \w to|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*; +\v 7 \w to|strong="G2532"\w* \w all|strong="G3956"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w Rome|strong="G4516"\w*, beloved \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w called|strong="G2822"\w* \w to|strong="G2532"\w* \w be|strong="G1510"\w* saints: \w Grace|strong="G5485"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w peace|strong="G1515"\w* \w from|strong="G1515"\w* \w God|strong="G2316"\w* \w our|strong="G2316"\w* \w Father|strong="G3962"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\p +\v 8 \w First|strong="G4413"\w*, \w I|strong="G1473"\w* \w thank|strong="G2168"\w* \w my|strong="G1722"\w* \w God|strong="G2316"\w* \w through|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w for|strong="G3754"\w* \w all|strong="G3956"\w* \w of|strong="G4012"\w* \w you|strong="G5210"\w*, \w that|strong="G3754"\w* \w your|strong="G3650"\w* \w faith|strong="G4102"\w* \w is|strong="G3588"\w* \w proclaimed|strong="G2605"\w* \w throughout|strong="G1722"\w* \w the|strong="G1722"\w* \w whole|strong="G3650"\w* \w world|strong="G2889"\w*. +\v 9 \w For|strong="G1063"\w* \w God|strong="G2316"\w* \w is|strong="G1510"\w* \w my|strong="G1722"\w* \w witness|strong="G3144"\w*, \w whom|strong="G3739"\w* \w I|strong="G1473"\w* \w serve|strong="G3000"\w* \w in|strong="G1722"\w* \w my|strong="G1722"\w* \w spirit|strong="G4151"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w of|strong="G5207"\w* \w his|strong="G1722"\w* \w Son|strong="G5207"\w*, \w how|strong="G5613"\w* unceasingly \w I|strong="G1473"\w* \w make|strong="G4160"\w* \w mention|strong="G3417"\w* \w of|strong="G5207"\w* \w you|strong="G5210"\w* always \w in|strong="G1722"\w* \w my|strong="G1722"\w* prayers, +\v 10 requesting, \w if|strong="G1487"\w* \w by|strong="G1722"\w* \w any|strong="G1487"\w* \w means|strong="G1513"\w* \w now|strong="G2235"\w* \w at|strong="G1722"\w* \w last|strong="G4218"\w* \w I|strong="G1473"\w* \w may|strong="G2316"\w* \w be|strong="G2316"\w* prospered \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w will|strong="G2307"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w to|strong="G4314"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*. +\v 11 \w For|strong="G1063"\w* \w I|strong="G1063"\w* \w long|strong="G1971"\w* \w to|strong="G1519"\w* \w see|strong="G3708"\w* \w you|strong="G5210"\w*, \w that|strong="G2443"\w* \w I|strong="G1063"\w* \w may|strong="G2443"\w* \w impart|strong="G3330"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w some|strong="G5100"\w* \w spiritual|strong="G4152"\w* \w gift|strong="G5486"\w*, \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w end|strong="G1519"\w* \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w may|strong="G2443"\w* \w be|strong="G1519"\w* \w established|strong="G4741"\w*; +\v 12 \w that|strong="G3588"\w* \w is|strong="G1510"\w*, \w that|strong="G3588"\w* \w I|strong="G1473"\w* \w with|strong="G1722"\w* \w you|strong="G5210"\w* \w may|strong="G2532"\w* \w be|strong="G1510"\w* \w encouraged|strong="G4837"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w*, \w each|strong="G1223"\w* \w of|strong="G1223"\w* \w us|strong="G1722"\w* \w by|strong="G1223"\w* \w the|strong="G1722"\w* \w other|strong="G1161"\w*’s \w faith|strong="G4102"\w*, \w both|strong="G2532"\w* \w yours|strong="G4771"\w* \w and|strong="G2532"\w* \w mine|strong="G1473"\w*. +\p +\v 13 \w Now|strong="G1161"\w* \w I|strong="G2532"\w* don’\w t|strong="G3588"\w* \w desire|strong="G2309"\w* \w to|strong="G4314"\w* \w have|strong="G2192"\w* \w you|strong="G5210"\w* \w unaware|strong="G3756"\w*, brothers, \w that|strong="G3754"\w* \w I|strong="G2532"\w* \w often|strong="G4178"\w* \w planned|strong="G4388"\w* \w to|strong="G4314"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w* (\w and|strong="G2532"\w* \w was|strong="G3588"\w* \w hindered|strong="G2967"\w* \w so|strong="G2443"\w* \w far|strong="G3588"\w*), \w that|strong="G3754"\w* \w I|strong="G2532"\w* \w might|strong="G2532"\w* \w have|strong="G2192"\w* \w some|strong="G5100"\w* \w fruit|strong="G2590"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w* \w also|strong="G2532"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w rest|strong="G3062"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w*. +\v 14 \w I|strong="G2532"\w* \w am|strong="G1510"\w* \w debtor|strong="G3781"\w* \w both|strong="G2532"\w* \w to|strong="G2532"\w* \w Greeks|strong="G1672"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* foreigners, \w both|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w wise|strong="G4680"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w foolish|strong="G2532"\w*. +\v 15 \w So|strong="G3779"\w* \w as|strong="G1722"\w* much \w as|strong="G1722"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w me|strong="G1473"\w*, \w I|strong="G1473"\w* \w am|strong="G1473"\w* \w eager|strong="G4289"\w* \w to|strong="G2532"\w* \w preach|strong="G2097"\w* \w the|strong="G1722"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w also|strong="G2532"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w in|strong="G1722"\w* \w Rome|strong="G4516"\w*. +\p +\v 16 \w For|strong="G1063"\w* \w I|strong="G2532"\w* \w am|strong="G1510"\w* \w not|strong="G3756"\w* \w ashamed|strong="G1870"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w Good|strong="G3956"\w* \w News|strong="G2098"\w* \w of|strong="G2316"\w* Christ, \w because|strong="G1063"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w power|strong="G1411"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w for|strong="G1063"\w* \w salvation|strong="G4991"\w* \w for|strong="G1063"\w* \w everyone|strong="G3956"\w* \w who|strong="G3588"\w* \w believes|strong="G4100"\w*, \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w Jew|strong="G2453"\w* \w first|strong="G4413"\w*, \w and|strong="G2532"\w* \w also|strong="G2532"\w* \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w Greek|strong="G1672"\w*. +\v 17 \w For|strong="G1063"\w* \w in|strong="G1722"\w* \w it|strong="G1161"\w* \w is|strong="G3588"\w* revealed \w God|strong="G2316"\w*’s \w righteousness|strong="G1343"\w* \w from|strong="G1537"\w* \w faith|strong="G4102"\w* \w to|strong="G1519"\w* \w faith|strong="G4102"\w*. \w As|strong="G2531"\w* \w it|strong="G1161"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, “\w But|strong="G1161"\w* \w the|strong="G1722"\w* \w righteous|strong="G1342"\w* \w shall|strong="G2316"\w* \w live|strong="G2198"\w* \w by|strong="G1722"\w* \w faith|strong="G4102"\w*.”\x + \xo 1:17 \xt Habakkuk 2:4\x* +\p +\v 18 \w For|strong="G1063"\w* \w the|strong="G1722"\w* \w wrath|strong="G3709"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w is|strong="G3588"\w* revealed \w from|strong="G2532"\w* \w heaven|strong="G3772"\w* \w against|strong="G1909"\w* \w all|strong="G3956"\w* ungodliness \w and|strong="G2532"\w* unrighteousness \w of|strong="G2316"\w* \w men|strong="G3956"\w* \w who|strong="G3588"\w* \w suppress|strong="G2722"\w* \w the|strong="G1722"\w* truth \w in|strong="G1722"\w* unrighteousness, +\v 19 \w because|strong="G1063"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w known|strong="G1110"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w is|strong="G1510"\w* \w revealed|strong="G5319"\w* \w in|strong="G1722"\w* \w them|strong="G3588"\w*, \w for|strong="G1063"\w* \w God|strong="G2316"\w* \w revealed|strong="G5319"\w* \w it|strong="G1063"\w* \w to|strong="G1722"\w* \w them|strong="G3588"\w*. +\v 20 \w For|strong="G1063"\w* \w the|strong="G2532"\w* invisible \w things|strong="G3588"\w* \w of|strong="G2532"\w* \w him|strong="G3588"\w* \w since|strong="G1063"\w* \w the|strong="G2532"\w* \w creation|strong="G2937"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w* \w are|strong="G1510"\w* \w clearly|strong="G2529"\w* \w seen|strong="G2529"\w*, \w being|strong="G1510"\w* perceived \w through|strong="G3539"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w that|strong="G3588"\w* \w are|strong="G1510"\w* \w made|strong="G4161"\w*, \w even|strong="G2532"\w* \w his|strong="G1438"\w* everlasting \w power|strong="G1411"\w* \w and|strong="G2532"\w* divinity, \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w may|strong="G2532"\w* \w be|strong="G1510"\w* \w without|strong="G2532"\w* excuse. +\v 21 \w Because|strong="G1360"\w* \w knowing|strong="G1097"\w* \w God|strong="G2316"\w*, \w they|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w glorify|strong="G1392"\w* \w him|strong="G3588"\w* \w as|strong="G5613"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w give|strong="G2168"\w* \w thanks|strong="G2168"\w*, \w but|strong="G2532"\w* \w became|strong="G3154"\w* \w vain|strong="G2532"\w* \w in|strong="G1722"\w* \w their|strong="G2532"\w* \w reasoning|strong="G1261"\w*, \w and|strong="G2532"\w* \w their|strong="G2532"\w* senseless \w heart|strong="G2588"\w* \w was|strong="G3588"\w* \w darkened|strong="G4654"\w*. +\p +\v 22 \w Professing|strong="G5335"\w* \w themselves|strong="G5335"\w* \w to|strong="G1510"\w* \w be|strong="G1510"\w* \w wise|strong="G4680"\w*, \w they|strong="G1510"\w* \w became|strong="G3471"\w* \w fools|strong="G3471"\w*, +\v 23 \w and|strong="G2532"\w* traded \w the|strong="G1722"\w* \w glory|strong="G1391"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* incorruptible \w God|strong="G2316"\w* \w for|strong="G1722"\w* \w the|strong="G1722"\w* \w likeness|strong="G3667"\w* \w of|strong="G2316"\w* \w an|strong="G2532"\w* \w image|strong="G1504"\w* \w of|strong="G2316"\w* \w corruptible|strong="G5349"\w* \w man|strong="G2316"\w*, \w and|strong="G2532"\w* \w of|strong="G2316"\w* \w birds|strong="G4071"\w*, \w four-footed|strong="G5074"\w* \w animals|strong="G5074"\w*, \w and|strong="G2532"\w* \w creeping|strong="G2532"\w* \w things|strong="G3588"\w*. +\v 24 \w Therefore|strong="G1352"\w* \w God|strong="G2316"\w* \w also|strong="G2316"\w* \w gave|strong="G3860"\w* \w them|strong="G3588"\w* \w up|strong="G3860"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w lusts|strong="G1939"\w* \w of|strong="G2316"\w* \w their|strong="G1438"\w* \w hearts|strong="G2588"\w* \w to|strong="G1519"\w* uncleanness, \w that|strong="G3588"\w* \w their|strong="G1438"\w* \w bodies|strong="G4983"\w* \w should|strong="G2316"\w* \w be|strong="G1519"\w* dishonored \w among|strong="G1722"\w* \w themselves|strong="G1438"\w*; +\v 25 \w who|strong="G3739"\w* \w exchanged|strong="G3337"\w* \w the|strong="G1722"\w* truth \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w for|strong="G1519"\w* \w a|strong="G2532"\w* \w lie|strong="G5579"\w*, \w and|strong="G2532"\w* \w worshiped|strong="G4573"\w* \w and|strong="G2532"\w* \w served|strong="G3000"\w* \w the|strong="G1722"\w* \w creature|strong="G2937"\w* \w rather|strong="G3844"\w* \w than|strong="G3844"\w* \w the|strong="G1722"\w* \w Creator|strong="G2936"\w*, \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w blessed|strong="G2128"\w* \w forever|strong="G1519"\w*. Amen. +\p +\v 26 \w For|strong="G1063"\w* \w this|strong="G3778"\w* \w reason|strong="G1223"\w*, \w God|strong="G2316"\w* \w gave|strong="G3860"\w* \w them|strong="G3588"\w* \w up|strong="G3860"\w* \w to|strong="G1519"\w* vile \w passions|strong="G3806"\w*. \w For|strong="G1063"\w* \w their|strong="G1438"\w* \w women|strong="G2338"\w* \w changed|strong="G3337"\w* \w the|strong="G1519"\w* \w natural|strong="G5446"\w* \w function|strong="G5540"\w* \w into|strong="G1519"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w against|strong="G1519"\w* \w nature|strong="G5449"\w*. +\v 27 \w Likewise|strong="G3668"\w* \w also|strong="G2532"\w* \w the|strong="G1722"\w* \w men|strong="G3588"\w*, \w leaving|strong="G3588"\w* \w the|strong="G1722"\w* \w natural|strong="G5446"\w* \w function|strong="G5540"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w woman|strong="G1572"\w*, \w burned|strong="G1722"\w* \w in|strong="G1722"\w* \w their|strong="G1438"\w* lust \w toward|strong="G1519"\w* \w one|strong="G3739"\w* \w another|strong="G1438"\w*, \w men|strong="G3588"\w* \w doing|strong="G2716"\w* \w what|strong="G3739"\w* \w is|strong="G3588"\w* inappropriate \w with|strong="G1722"\w* \w men|strong="G3588"\w*, \w and|strong="G2532"\w* receiving \w in|strong="G1722"\w* \w themselves|strong="G1438"\w* \w the|strong="G1722"\w* \w due|strong="G1163"\w* penalty \w of|strong="G2532"\w* \w their|strong="G1438"\w* \w error|strong="G4106"\w*. +\v 28 \w Even|strong="G2532"\w* \w as|strong="G2531"\w* \w they|strong="G2532"\w* \w refused|strong="G3756"\w* \w to|strong="G1519"\w* \w have|strong="G2192"\w* \w God|strong="G2316"\w* \w in|strong="G1722"\w* \w their|strong="G1438"\w* \w knowledge|strong="G1922"\w*, \w God|strong="G2316"\w* \w gave|strong="G3860"\w* \w them|strong="G3588"\w* \w up|strong="G3860"\w* \w to|strong="G1519"\w* \w a|strong="G2192"\w* reprobate \w mind|strong="G3563"\w*, \w to|strong="G1519"\w* \w do|strong="G4160"\w* \w those|strong="G3588"\w* \w things|strong="G3588"\w* \w which|strong="G3588"\w* \w are|strong="G3588"\w* \w not|strong="G3756"\w* fitting; +\v 29 being \w filled|strong="G4137"\w* \w with|strong="G4137"\w* \w all|strong="G3956"\w* unrighteousness, sexual immorality, \w wickedness|strong="G4189"\w*, \w covetousness|strong="G4124"\w*, \w malice|strong="G2549"\w*; \w full|strong="G3324"\w* \w of|strong="G3956"\w* \w envy|strong="G5355"\w*, \w murder|strong="G5408"\w*, \w strife|strong="G2054"\w*, \w deceit|strong="G1388"\w*, \w evil|strong="G2549"\w* habits, secret slanderers, +\v 30 \w backbiters|strong="G2637"\w*, hateful \w to|strong="G2556"\w* \w God|strong="G2319"\w*, \w insolent|strong="G5197"\w*, \w arrogant|strong="G5244"\w*, boastful, \w inventors|strong="G2182"\w* \w of|strong="G1118"\w* \w evil|strong="G2556"\w* \w things|strong="G2556"\w*, disobedient \w to|strong="G2556"\w* \w parents|strong="G1118"\w*, +\v 31 without understanding, covenant breakers, without natural affection, unforgiving, unmerciful; +\v 32 \w who|strong="G3588"\w*, \w knowing|strong="G1921"\w* \w the|strong="G2532"\w* \w ordinance|strong="G1345"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w that|strong="G3754"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w practice|strong="G4238"\w* \w such|strong="G5108"\w* \w things|strong="G3588"\w* \w are|strong="G1510"\w* worthy \w of|strong="G2316"\w* \w death|strong="G2288"\w*, \w not|strong="G3756"\w* \w only|strong="G3440"\w* \w do|strong="G4160"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w*, \w but|strong="G2532"\w* \w also|strong="G2532"\w* \w approve|strong="G4909"\w* \w of|strong="G2316"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w practice|strong="G4238"\w* \w them|strong="G3588"\w*. +\c 2 +\p +\v 1 \w Therefore|strong="G1352"\w* \w you|strong="G3739"\w* \w are|strong="G1510"\w* \w without|strong="G3588"\w* excuse, \w O|strong="G5599"\w* \w man|strong="G3956"\w*, \w whoever|strong="G3739"\w* \w you|strong="G3739"\w* \w are|strong="G1510"\w* \w who|strong="G3739"\w* \w judge|strong="G2919"\w*. \w For|strong="G1063"\w* \w in|strong="G1722"\w* \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w judge|strong="G2919"\w* \w another|strong="G2087"\w*, \w you|strong="G3739"\w* \w condemn|strong="G2632"\w* \w yourself|strong="G4572"\w*. \w For|strong="G1063"\w* \w you|strong="G3739"\w* \w who|strong="G3739"\w* \w judge|strong="G2919"\w* \w practice|strong="G4238"\w* \w the|strong="G1722"\w* \w same|strong="G3739"\w* \w things|strong="G3956"\w*. +\v 2 \w We|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w the|strong="G1161"\w* \w judgment|strong="G2917"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w is|strong="G1510"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* truth \w against|strong="G2596"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w practice|strong="G4238"\w* \w such|strong="G5108"\w* \w things|strong="G3588"\w*. +\v 3 \w Do|strong="G4160"\w* \w you|strong="G4771"\w* \w think|strong="G3049"\w* \w this|strong="G3778"\w*, \w O|strong="G5599"\w* \w man|strong="G3778"\w* \w who|strong="G3588"\w* \w judges|strong="G2919"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w practice|strong="G4238"\w* \w such|strong="G5108"\w* \w things|strong="G3778"\w*, \w and|strong="G2532"\w* \w do|strong="G4160"\w* \w the|strong="G2532"\w* \w same|strong="G3778"\w*, \w that|strong="G3754"\w* \w you|strong="G4771"\w* \w will|strong="G2316"\w* \w escape|strong="G1628"\w* \w the|strong="G2532"\w* \w judgment|strong="G2917"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*? +\v 4 \w Or|strong="G2228"\w* \w do|strong="G2532"\w* \w you|strong="G4771"\w* \w despise|strong="G2706"\w* \w the|strong="G2532"\w* \w riches|strong="G4149"\w* \w of|strong="G2316"\w* \w his|strong="G1519"\w* \w goodness|strong="G5544"\w*, forbearance, \w and|strong="G2532"\w* \w patience|strong="G3115"\w*, \w not|strong="G2532"\w* knowing \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w goodness|strong="G5544"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w leads|strong="G1519"\w* \w you|strong="G4771"\w* \w to|strong="G1519"\w* \w repentance|strong="G3341"\w*? +\v 5 \w But|strong="G1161"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w your|strong="G2532"\w* \w hardness|strong="G4643"\w* \w and|strong="G2532"\w* unrepentant \w heart|strong="G2588"\w* \w you|strong="G4771"\w* \w are|strong="G3588"\w* treasuring \w up|strong="G2343"\w* \w for|strong="G1161"\w* \w yourself|strong="G4572"\w* \w wrath|strong="G3709"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* \w wrath|strong="G3709"\w*, revelation, \w and|strong="G2532"\w* \w of|strong="G2250"\w* \w the|strong="G1722"\w* \w righteous|strong="G1341"\w* \w judgment|strong="G1341"\w* \w of|strong="G2250"\w* \w God|strong="G2316"\w*, +\v 6 \w who|strong="G3739"\w* “\w will|strong="G3739"\w* pay back \w to|strong="G2596"\w* \w everyone|strong="G1538"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w their|strong="G2596"\w* \w works|strong="G2041"\w*:”\x + \xo 2:6 \xt Psalms 62:12; Proverbs 24:12\x* +\v 7 \w to|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w by|strong="G2596"\w* \w perseverance|strong="G5281"\w* \w in|strong="G2596"\w* well-doing \w seek|strong="G2212"\w* \w for|strong="G2212"\w* \w glory|strong="G1391"\w*, \w honor|strong="G5092"\w*, \w and|strong="G2532"\w* incorruptibility, eternal \w life|strong="G2222"\w*; +\v 8 \w but|strong="G1161"\w* \w to|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* self-seeking \w and|strong="G2532"\w* don’\w t|strong="G3588"\w* \w obey|strong="G3982"\w* \w the|strong="G2532"\w* truth, \w but|strong="G1161"\w* \w obey|strong="G3982"\w* unrighteousness, \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w wrath|strong="G3709"\w*, \w indignation|strong="G2372"\w*, +\v 9 oppression, \w and|strong="G2532"\w* \w anguish|strong="G2347"\w* \w on|strong="G1909"\w* \w every|strong="G3956"\w* \w soul|strong="G5590"\w* \w of|strong="G2532"\w* \w man|strong="G3956"\w* \w who|strong="G3588"\w* \w does|strong="G2716"\w* \w evil|strong="G2556"\w*, \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Jew|strong="G2453"\w* \w first|strong="G4413"\w*, \w and|strong="G2532"\w* \w also|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Greek|strong="G1672"\w*. +\p +\v 10 \w But|strong="G1161"\w* \w glory|strong="G1391"\w*, \w honor|strong="G5092"\w*, \w and|strong="G2532"\w* \w peace|strong="G1515"\w* \w go|strong="G2532"\w* \w to|strong="G2532"\w* \w every|strong="G3956"\w* \w man|strong="G3956"\w* \w who|strong="G3588"\w* \w does|strong="G2038"\w* \w good|strong="G3956"\w*, \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Jew|strong="G2453"\w* \w first|strong="G4413"\w*, \w and|strong="G2532"\w* \w also|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Greek|strong="G1672"\w*. +\v 11 \w For|strong="G1063"\w* \w there|strong="G1063"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* \w partiality|strong="G4382"\w* \w with|strong="G3844"\w* \w God|strong="G2316"\w*. +\v 12 \w For|strong="G1063"\w* \w as|strong="G3745"\w* \w many|strong="G3745"\w* \w as|strong="G3745"\w* \w have|strong="G2532"\w* sinned \w without|strong="G2532"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w will|strong="G2532"\w* \w also|strong="G2532"\w* perish \w without|strong="G2532"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w*. \w As|strong="G3745"\w* \w many|strong="G3745"\w* \w as|strong="G3745"\w* \w have|strong="G2532"\w* sinned \w under|strong="G1722"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w judged|strong="G2919"\w* \w by|strong="G1223"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w*. +\v 13 \w For|strong="G1063"\w* \w it|strong="G1063"\w* isn’\w t|strong="G3588"\w* \w the|strong="G3588"\w* hearers \w of|strong="G2316"\w* \w the|strong="G3588"\w* \w law|strong="G3551"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w righteous|strong="G1342"\w* \w before|strong="G3844"\w* \w God|strong="G2316"\w*, \w but|strong="G1063"\w* \w the|strong="G3588"\w* \w doers|strong="G4163"\w* \w of|strong="G2316"\w* \w the|strong="G3588"\w* \w law|strong="G3551"\w* \w will|strong="G2316"\w* \w be|strong="G3756"\w* \w justified|strong="G1344"\w* +\v 14 (\w for|strong="G1063"\w* \w when|strong="G3752"\w* \w Gentiles|strong="G1484"\w* \w who|strong="G3588"\w* don’\w t|strong="G3588"\w* \w have|strong="G2192"\w* \w the|strong="G3588"\w* \w law|strong="G3551"\w* \w do|strong="G4160"\w* \w by|strong="G1438"\w* \w nature|strong="G5449"\w* \w the|strong="G3588"\w* \w things|strong="G3778"\w* \w of|strong="G3551"\w* \w the|strong="G3588"\w* \w law|strong="G3551"\w*, \w these|strong="G3778"\w*, \w not|strong="G3361"\w* \w having|strong="G2192"\w* \w the|strong="G3588"\w* \w law|strong="G3551"\w*, \w are|strong="G1510"\w* \w a|strong="G2192"\w* \w law|strong="G3551"\w* \w to|strong="G3361"\w* \w themselves|strong="G1438"\w*, +\v 15 \w in|strong="G1722"\w* \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w show|strong="G1731"\w* \w the|strong="G1722"\w* \w work|strong="G2041"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w written|strong="G1123"\w* \w in|strong="G1722"\w* \w their|strong="G2532"\w* \w hearts|strong="G2588"\w*, \w their|strong="G2532"\w* \w conscience|strong="G4893"\w* testifying \w with|strong="G1722"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w their|strong="G2532"\w* \w thoughts|strong="G3053"\w* \w among|strong="G1722"\w* \w themselves|strong="G1722"\w* \w accusing|strong="G2723"\w* \w or|strong="G2228"\w* \w else|strong="G2228"\w* excusing \w them|strong="G3588"\w*) +\v 16 \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w when|strong="G3753"\w* \w God|strong="G2316"\w* \w will|strong="G2316"\w* \w judge|strong="G2919"\w* \w the|strong="G1722"\w* \w secrets|strong="G2927"\w* \w of|strong="G2250"\w* \w men|strong="G3588"\w*, \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w my|strong="G1722"\w* \w Good|strong="G1223"\w* \w News|strong="G2098"\w*, \w by|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\p +\v 17 \w Indeed|strong="G2532"\w* \w you|strong="G4771"\w* \w bear|strong="G2532"\w* \w the|strong="G1722"\w* \w name|strong="G2028"\w* \w of|strong="G2316"\w* \w a|strong="G2532"\w* \w Jew|strong="G2453"\w*, \w rest|strong="G1879"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w*, \w glory|strong="G2744"\w* \w in|strong="G1722"\w* \w God|strong="G2316"\w*, +\v 18 \w know|strong="G1097"\w* \w his|strong="G2532"\w* \w will|strong="G2307"\w*, \w and|strong="G2532"\w* \w approve|strong="G1381"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w that|strong="G3588"\w* \w are|strong="G3588"\w* \w excellent|strong="G1308"\w*, \w being|strong="G2532"\w* \w instructed|strong="G2727"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w*, +\v 19 \w and|strong="G5037"\w* \w are|strong="G1510"\w* \w confident|strong="G3982"\w* \w that|strong="G3588"\w* \w you|strong="G1722"\w* \w yourself|strong="G4572"\w* \w are|strong="G1510"\w* \w a|strong="G1722"\w* \w guide|strong="G3595"\w* \w of|strong="G1722"\w* \w the|strong="G1722"\w* \w blind|strong="G5185"\w*, \w a|strong="G1722"\w* \w light|strong="G5457"\w* \w to|strong="G1722"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w darkness|strong="G4655"\w*, +\v 20 \w a|strong="G2192"\w* \w corrector|strong="G3810"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w foolish|strong="G2532"\w*, \w a|strong="G2192"\w* \w teacher|strong="G1320"\w* \w of|strong="G2532"\w* babies, \w having|strong="G2192"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w the|strong="G1722"\w* \w form|strong="G3446"\w* \w of|strong="G2532"\w* \w knowledge|strong="G1108"\w* \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* truth. +\v 21 \w You|strong="G1321"\w* \w therefore|strong="G3767"\w* \w who|strong="G3588"\w* \w teach|strong="G1321"\w* \w another|strong="G2087"\w*, don’\w t|strong="G3588"\w* \w you|strong="G1321"\w* \w teach|strong="G1321"\w* \w yourself|strong="G4572"\w*? \w You|strong="G1321"\w* \w who|strong="G3588"\w* \w preach|strong="G2784"\w* \w that|strong="G3588"\w* \w a|strong="G3756"\w* \w man|strong="G3361"\w* shouldn’\w t|strong="G3588"\w* \w steal|strong="G2813"\w*, \w do|strong="G3361"\w* \w you|strong="G1321"\w* \w steal|strong="G2813"\w*? +\v 22 \w You|strong="G3004"\w* \w who|strong="G3588"\w* \w say|strong="G3004"\w* \w a|strong="G3004"\w* \w man|strong="G3361"\w* shouldn’\w t|strong="G3588"\w* \w commit|strong="G3431"\w* \w adultery|strong="G3431"\w*, \w do|strong="G3004"\w* \w you|strong="G3004"\w* \w commit|strong="G3431"\w* \w adultery|strong="G3431"\w*? \w You|strong="G3004"\w* \w who|strong="G3588"\w* abhor \w idols|strong="G1497"\w*, \w do|strong="G3004"\w* \w you|strong="G3004"\w* \w rob|strong="G2416"\w* \w temples|strong="G2416"\w*? +\v 23 \w You|strong="G3739"\w* \w who|strong="G3739"\w* \w glory|strong="G2744"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w*, \w do|strong="G1223"\w* \w you|strong="G3739"\w* dishonor \w God|strong="G2316"\w* \w by|strong="G1223"\w* disobeying \w the|strong="G1722"\w* \w law|strong="G3551"\w*? +\v 24 \w For|strong="G1063"\w* “\w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w* \w is|strong="G3588"\w* blasphemed \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w* \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w you|strong="G5210"\w*,”\x + \xo 2:24 \xt Isaiah 52:5; Ezekiel 36:22\x* \w just|strong="G2531"\w* \w as|strong="G2531"\w* \w it|strong="G1063"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*. +\v 25 \w For|strong="G1063"\w* \w circumcision|strong="G4061"\w* \w indeed|strong="G3303"\w* \w profits|strong="G5623"\w*, \w if|strong="G1437"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w a|strong="G1096"\w* doer \w of|strong="G3551"\w* \w the|strong="G1161"\w* \w law|strong="G3551"\w*, \w but|strong="G1161"\w* \w if|strong="G1437"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w a|strong="G1096"\w* \w transgressor|strong="G3848"\w* \w of|strong="G3551"\w* \w the|strong="G1161"\w* \w law|strong="G3551"\w*, \w your|strong="G1437"\w* \w circumcision|strong="G4061"\w* \w has|strong="G1096"\w* \w become|strong="G1096"\w* uncircumcision. +\v 26 \w If|strong="G1437"\w* \w therefore|strong="G3767"\w* \w the|strong="G1519"\w* uncircumcised \w keep|strong="G5442"\w* \w the|strong="G1519"\w* \w ordinances|strong="G1345"\w* \w of|strong="G3551"\w* \w the|strong="G1519"\w* \w law|strong="G3551"\w*, won’\w t|strong="G3588"\w* \w his|strong="G1519"\w* uncircumcision \w be|strong="G3756"\w* \w accounted|strong="G3049"\w* \w as|strong="G1519"\w* \w circumcision|strong="G4061"\w*? +\v 27 Won’\w t|strong="G3588"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w physically|strong="G5449"\w* uncircumcised, \w but|strong="G2532"\w* fulfill \w the|strong="G2532"\w* \w law|strong="G3551"\w*, \w judge|strong="G2919"\w* \w you|strong="G4771"\w*, \w who|strong="G3588"\w* \w with|strong="G1537"\w* \w the|strong="G2532"\w* \w letter|strong="G1121"\w* \w and|strong="G2532"\w* \w circumcision|strong="G4061"\w* \w are|strong="G3588"\w* \w a|strong="G2532"\w* \w transgressor|strong="G3848"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w*? +\v 28 \w For|strong="G1063"\w* \w he|strong="G3588"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w a|strong="G1722"\w* \w Jew|strong="G2453"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w one|strong="G3588"\w* \w outwardly|strong="G1722"\w*, \w neither|strong="G3761"\w* \w is|strong="G1510"\w* \w that|strong="G3588"\w* \w circumcision|strong="G4061"\w* \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w outward|strong="G5318"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*; +\v 29 \w but|strong="G2532"\w* \w he|strong="G2532"\w* \w is|strong="G3588"\w* \w a|strong="G2532"\w* \w Jew|strong="G2453"\w* \w who|strong="G3739"\w* \w is|strong="G3588"\w* \w one|strong="G3739"\w* \w inwardly|strong="G2927"\w*, \w and|strong="G2532"\w* \w circumcision|strong="G4061"\w* \w is|strong="G3588"\w* \w that|strong="G3739"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w heart|strong="G2588"\w*, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w spirit|strong="G4151"\w*, \w not|strong="G3756"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w letter|strong="G1121"\w*; \w whose|strong="G3739"\w* \w praise|strong="G1868"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w from|strong="G1537"\w* \w men|strong="G3588"\w*, \w but|strong="G2532"\w* \w from|strong="G1537"\w* \w God|strong="G2316"\w*. +\c 3 +\p +\v 1 \w Then|strong="G3767"\w* \w what|strong="G5101"\w* \w advantage|strong="G4053"\w* \w does|strong="G5101"\w* \w the|strong="G3588"\w* \w Jew|strong="G2453"\w* \w have|strong="G5101"\w*? \w Or|strong="G2228"\w* \w what|strong="G5101"\w* \w is|strong="G3588"\w* \w the|strong="G3588"\w* \w profit|strong="G5622"\w* \w of|strong="G2228"\w* \w circumcision|strong="G4061"\w*? +\v 2 \w Much|strong="G4183"\w* \w in|strong="G2596"\w* \w every|strong="G3956"\w* \w way|strong="G5158"\w*! \w Because|strong="G3754"\w* \w first|strong="G4413"\w* \w of|strong="G2316"\w* \w all|strong="G3956"\w*, \w they|strong="G3588"\w* \w were|strong="G3588"\w* \w entrusted|strong="G4100"\w* \w with|strong="G2316"\w* \w the|strong="G3956"\w* revelations \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\v 3 \w For|strong="G1063"\w* \w what|strong="G5101"\w* \w if|strong="G1487"\w* \w some|strong="G5100"\w* \w were|strong="G3588"\w* \w without|strong="G3361"\w* \w faith|strong="G4102"\w*? \w Will|strong="G2316"\w* \w their|strong="G3588"\w* \w lack|strong="G5101"\w* \w of|strong="G2316"\w* \w faith|strong="G4102"\w* \w nullify|strong="G2673"\w* \w the|strong="G3588"\w* \w faithfulness|strong="G4102"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*? +\v 4 \w May|strong="G2532"\w* \w it|strong="G2532"\w* \w never|strong="G3361"\w* \w be|strong="G1096"\w*! \w Yes|strong="G1161"\w*, \w let|strong="G1096"\w* \w God|strong="G2316"\w* \w be|strong="G1096"\w* \w found|strong="G1096"\w* \w true|strong="G3588"\w*, \w but|strong="G1161"\w* \w every|strong="G3956"\w* \w man|strong="G3956"\w* \w a|strong="G1096"\w* \w liar|strong="G5583"\w*. \w As|strong="G2531"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, +\q1 “\w that|strong="G3588"\w* \w you|strong="G4771"\w* \w might|strong="G2532"\w* \w be|strong="G1096"\w* \w justified|strong="G1344"\w* \w in|strong="G1722"\w* \w your|strong="G2532"\w* \w words|strong="G3056"\w*, +\q2 \w and|strong="G2532"\w* \w might|strong="G2532"\w* \w prevail|strong="G3528"\w* \w when|strong="G1161"\w* \w you|strong="G4771"\w* \w come|strong="G1096"\w* \w into|strong="G1722"\w* \w judgment|strong="G2919"\w*.”\x + \xo 3:4 \xt Psalms 51:4\x* +\p +\v 5 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w our|strong="G2316"\w* unrighteousness \w commends|strong="G4921"\w* \w the|strong="G1161"\w* \w righteousness|strong="G1343"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w what|strong="G5101"\w* \w will|strong="G2316"\w* \w we|strong="G2249"\w* \w say|strong="G3004"\w*? \w Is|strong="G3588"\w* \w God|strong="G2316"\w* unrighteous \w who|strong="G5101"\w* \w inflicts|strong="G2018"\w* \w wrath|strong="G3709"\w*? \w I|strong="G1473"\w* \w speak|strong="G3004"\w* \w like|strong="G2596"\w* \w men|strong="G3588"\w* \w do|strong="G5101"\w*. +\v 6 \w May|strong="G2889"\w* \w it|strong="G1893"\w* \w never|strong="G3361"\w* \w be|strong="G1096"\w*! \w For|strong="G2316"\w* \w then|strong="G1893"\w* \w how|strong="G4459"\w* \w will|strong="G2316"\w* \w God|strong="G2316"\w* \w judge|strong="G2919"\w* \w the|strong="G3588"\w* \w world|strong="G2889"\w*? +\v 7 \w For|strong="G1519"\w* \w if|strong="G1487"\w* \w the|strong="G1722"\w* truth \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w through|strong="G1722"\w* \w my|strong="G1699"\w* \w lie|strong="G5582"\w* \w abounded|strong="G4052"\w* \w to|strong="G1519"\w* \w his|strong="G1519"\w* \w glory|strong="G1391"\w*, \w why|strong="G5101"\w* \w am|strong="G2504"\w* \w I|strong="G2504"\w* \w also|strong="G2504"\w* \w still|strong="G2089"\w* \w judged|strong="G2919"\w* \w as|strong="G5613"\w* \w a|strong="G5613"\w* sinner? +\v 8 \w Why|strong="G2443"\w* \w not|strong="G3361"\w* (\w as|strong="G2531"\w* \w we|strong="G2249"\w* \w are|strong="G1510"\w* slanderously \w reported|strong="G3004"\w*, \w and|strong="G2532"\w* \w as|strong="G2531"\w* \w some|strong="G5100"\w* \w affirm|strong="G5100"\w* \w that|strong="G3754"\w* \w we|strong="G2249"\w* \w say|strong="G3004"\w*), “\w Let|strong="G1510"\w*’s \w do|strong="G4160"\w* \w evil|strong="G2556"\w*, \w that|strong="G3754"\w* \w good|strong="G3588"\w* \w may|strong="G2532"\w* \w come|strong="G2064"\w*?” \w Those|strong="G3588"\w* \w who|strong="G3739"\w* \w say|strong="G3004"\w* \w so|strong="G2443"\w* \w are|strong="G1510"\w* justly \w condemned|strong="G2917"\w*. +\p +\v 9 \w What|strong="G5101"\w* \w then|strong="G3767"\w*? \w Are|strong="G1510"\w* \w we|strong="G1063"\w* \w better|strong="G4284"\w* \w than|strong="G2532"\w* \w they|strong="G2532"\w*? \w No|strong="G3756"\w*, \w in|strong="G2532"\w* \w no|strong="G3756"\w* \w way|strong="G3956"\w*. \w For|strong="G1063"\w* \w we|strong="G1063"\w* previously warned \w both|strong="G2532"\w* \w Jews|strong="G2453"\w* \w and|strong="G2532"\w* \w Greeks|strong="G1672"\w* \w that|strong="G3956"\w* \w they|strong="G2532"\w* \w are|strong="G1510"\w* \w all|strong="G3956"\w* \w under|strong="G5259"\w* sin. +\v 10 \w As|strong="G2531"\w* \w it|strong="G3754"\w* \w is|strong="G1510"\w* \w written|strong="G1125"\w*, +\q1 “\w There|strong="G3754"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* \w one|strong="G1520"\w* \w righteous|strong="G1342"\w*; +\q2 \w no|strong="G3756"\w*, \w not|strong="G3756"\w* \w one|strong="G1520"\w*. +\q1 +\v 11 \w There|strong="G1510"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* \w one|strong="G3588"\w* \w who|strong="G3588"\w* \w understands|strong="G4920"\w*. +\q2 \w There|strong="G1510"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* \w one|strong="G3588"\w* \w who|strong="G3588"\w* \w seeks|strong="G1567"\w* \w after|strong="G1567"\w* \w God|strong="G2316"\w*. +\q1 +\v 12 \w They|strong="G3588"\w* \w have|strong="G1510"\w* \w all|strong="G3956"\w* \w turned|strong="G1578"\w* \w away|strong="G1578"\w*. +\q2 \w They|strong="G3588"\w* \w have|strong="G1510"\w* together \w become|strong="G1510"\w* unprofitable. +\q1 \w There|strong="G1510"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* \w one|strong="G1520"\w* \w who|strong="G3588"\w* \w does|strong="G4160"\w* \w good|strong="G3956"\w*, +\q2 \w no|strong="G3756"\w*, \w not|strong="G3756"\w* \w so|strong="G4160"\w* much \w as|strong="G2193"\w* \w one|strong="G1520"\w*.”\x + \xo 3:12 \xt Psalms 14:1-3; 53:1-3; Ecclesiastes 7:20\x* +\q1 +\v 13 “\w Their|strong="G3588"\w* \w throat|strong="G2995"\w* \w is|strong="G3588"\w* \w an|strong="G1100"\w* open tomb. +\q2 \w With|strong="G5259"\w* \w their|strong="G3588"\w* \w tongues|strong="G1100"\w* \w they|strong="G3588"\w* \w have|strong="G3588"\w* used \w deceit|strong="G1387"\w*.”\x + \xo 3:13 \xt Psalms 5:9\x* +\q1 “\w The|strong="G3588"\w* \w poison|strong="G2447"\w* \w of|strong="G5259"\w* vipers \w is|strong="G3588"\w* \w under|strong="G5259"\w* \w their|strong="G3588"\w* \w lips|strong="G5491"\w*.”\x + \xo 3:13 \xt Psalms 140:3\x* +\q2 +\v 14 “\w Their|strong="G2532"\w* \w mouth|strong="G4750"\w* \w is|strong="G3588"\w* \w full|strong="G1073"\w* \w of|strong="G2532"\w* cursing \w and|strong="G2532"\w* \w bitterness|strong="G4088"\w*.”\x + \xo 3:14 \xt Psalms 10:7\x* +\q1 +\v 15 “\w Their|strong="G3588"\w* \w feet|strong="G4228"\w* \w are|strong="G3588"\w* \w swift|strong="G3691"\w* \w to|strong="G3588"\w* \w shed|strong="G1632"\w* blood. +\q2 +\v 16 \w Destruction|strong="G4938"\w* \w and|strong="G2532"\w* \w misery|strong="G5004"\w* \w are|strong="G3588"\w* \w in|strong="G1722"\w* \w their|strong="G2532"\w* \w ways|strong="G3598"\w*. +\q2 +\v 17 \w The|strong="G2532"\w* \w way|strong="G3598"\w* \w of|strong="G2532"\w* \w peace|strong="G1515"\w*, \w they|strong="G2532"\w* haven’t \w known|strong="G1097"\w*.”\x + \xo 3:17 \xt Isaiah 59:7-8\x* +\q1 +\v 18 “\w There|strong="G1510"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* \w fear|strong="G5401"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w before|strong="G3588"\w* \w their|strong="G3588"\w* \w eyes|strong="G3788"\w*.”\x + \xo 3:18 \xt Psalms 36:1\x* +\p +\v 19 \w Now|strong="G1161"\w* \w we|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w whatever|strong="G3745"\w* \w things|strong="G3956"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w says|strong="G3004"\w*, \w it|strong="G2532"\w* \w speaks|strong="G2980"\w* \w to|strong="G2443"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w under|strong="G1722"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w*, \w that|strong="G3754"\w* \w every|strong="G3956"\w* \w mouth|strong="G4750"\w* \w may|strong="G2532"\w* \w be|strong="G1096"\w* \w closed|strong="G5420"\w*, \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w* \w may|strong="G2532"\w* \w be|strong="G1096"\w* \w brought|strong="G1096"\w* \w under|strong="G1722"\w* \w the|strong="G1722"\w* judgment \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\v 20 \w Because|strong="G1223"\w* \w by|strong="G1223"\w* \w the|strong="G3956"\w* \w works|strong="G2041"\w* \w of|strong="G1537"\w* \w the|strong="G3956"\w* \w law|strong="G3551"\w*, \w no|strong="G3756"\w* \w flesh|strong="G4561"\w* \w will|strong="G3956"\w* \w be|strong="G3756"\w* \w justified|strong="G1344"\w* \w in|strong="G3956"\w* \w his|strong="G3956"\w* \w sight|strong="G1799"\w*; \w for|strong="G1063"\w* \w through|strong="G1223"\w* \w the|strong="G3956"\w* \w law|strong="G3551"\w* \w comes|strong="G1922"\w* \w the|strong="G3956"\w* \w knowledge|strong="G1922"\w* \w of|strong="G1537"\w* sin. +\p +\v 21 \w But|strong="G1161"\w* \w now|strong="G1161"\w* \w apart|strong="G5565"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w*, \w a|strong="G2532"\w* \w righteousness|strong="G1343"\w* \w of|strong="G5259"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w been|strong="G2532"\w* \w revealed|strong="G5319"\w*, \w being|strong="G2532"\w* \w testified|strong="G3140"\w* \w by|strong="G5259"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w prophets|strong="G4396"\w*; +\v 22 \w even|strong="G1161"\w* \w the|strong="G1519"\w* \w righteousness|strong="G1343"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w* \w through|strong="G1223"\w* \w faith|strong="G4102"\w* \w in|strong="G1519"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w to|strong="G1519"\w* \w all|strong="G3956"\w* \w and|strong="G1161"\w* \w on|strong="G1519"\w* \w all|strong="G3956"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w believe|strong="G4100"\w*. \w For|strong="G1063"\w* \w there|strong="G1161"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* \w distinction|strong="G1293"\w*, +\v 23 \w for|strong="G1063"\w* \w all|strong="G3956"\w* \w have|strong="G2532"\w* sinned, \w and|strong="G2532"\w* \w fall|strong="G5302"\w* \w short|strong="G5302"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w of|strong="G2532"\w* \w God|strong="G2316"\w*; +\v 24 \w being|strong="G5547"\w* \w justified|strong="G1344"\w* \w freely|strong="G1432"\w* \w by|strong="G1223"\w* \w his|strong="G1223"\w* \w grace|strong="G5485"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* redemption \w that|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*, +\v 25 \w whom|strong="G3739"\w* \w God|strong="G2316"\w* \w sent|strong="G2316"\w* \w to|strong="G1519"\w* \w be|strong="G1519"\w* \w an|strong="G1519"\w* atoning sacrifice\f + \fr 3:25 \ft or, a propitiation\f* \w through|strong="G1223"\w* \w faith|strong="G4102"\w* \w in|strong="G1722"\w* \w his|strong="G1223"\w* blood, \w for|strong="G1519"\w* \w a|strong="G1519"\w* \w demonstration|strong="G1732"\w* \w of|strong="G1223"\w* \w his|strong="G1223"\w* \w righteousness|strong="G1343"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* passing \w over|strong="G1519"\w* \w of|strong="G1223"\w* prior sins, \w in|strong="G1722"\w* \w God|strong="G2316"\w*’s forbearance; +\v 26 \w to|strong="G1519"\w* \w demonstrate|strong="G1732"\w* \w his|strong="G1519"\w* \w righteousness|strong="G1343"\w* \w at|strong="G1722"\w* \w this|strong="G3588"\w* \w present|strong="G3568"\w* \w time|strong="G2540"\w*, \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w himself|strong="G1519"\w* \w be|strong="G1510"\w* \w just|strong="G1342"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w justifier|strong="G1344"\w* \w of|strong="G1537"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w has|strong="G2316"\w* \w faith|strong="G4102"\w* \w in|strong="G1722"\w* \w Jesus|strong="G2424"\w*. +\p +\v 27 \w Where|strong="G4226"\w* \w then|strong="G3767"\w* \w is|strong="G3588"\w* \w the|strong="G1223"\w* \w boasting|strong="G2746"\w*? \w It|strong="G1223"\w* \w is|strong="G3588"\w* \w excluded|strong="G1576"\w*. \w By|strong="G1223"\w* \w what|strong="G4169"\w* \w kind|strong="G4169"\w* \w of|strong="G1223"\w* \w law|strong="G3551"\w*? \w Of|strong="G1223"\w* \w works|strong="G2041"\w*? \w No|strong="G3780"\w*, \w but|strong="G3767"\w* \w by|strong="G1223"\w* \w a|strong="G1223"\w* \w law|strong="G3551"\w* \w of|strong="G1223"\w* \w faith|strong="G4102"\w*. +\v 28 \w We|strong="G1063"\w* \w maintain|strong="G3049"\w* \w therefore|strong="G1063"\w* \w that|strong="G1063"\w* \w a|strong="G2041"\w* man \w is|strong="G4102"\w* \w justified|strong="G1344"\w* \w by|strong="G1344"\w* \w faith|strong="G4102"\w* \w apart|strong="G5565"\w* \w from|strong="G5565"\w* \w the|strong="G1063"\w* \w works|strong="G2041"\w* \w of|strong="G3551"\w* \w the|strong="G1063"\w* \w law|strong="G3551"\w*. +\v 29 \w Or|strong="G2228"\w* \w is|strong="G3588"\w* \w God|strong="G2316"\w* \w the|strong="G2532"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* \w Jews|strong="G2453"\w* \w only|strong="G3440"\w*? Isn’\w t|strong="G3588"\w* \w he|strong="G2532"\w* \w the|strong="G2532"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* \w Gentiles|strong="G1484"\w* \w also|strong="G2532"\w*? \w Yes|strong="G3483"\w*, \w of|strong="G2316"\w* \w Gentiles|strong="G1484"\w* \w also|strong="G2532"\w*, +\v 30 \w since|strong="G1537"\w* \w indeed|strong="G2532"\w* \w there|strong="G2532"\w* \w is|strong="G3588"\w* \w one|strong="G1520"\w* \w God|strong="G2316"\w* \w who|strong="G3739"\w* \w will|strong="G2316"\w* \w justify|strong="G1344"\w* \w the|strong="G2532"\w* \w circumcised|strong="G4061"\w* \w by|strong="G1223"\w* \w faith|strong="G4102"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* uncircumcised \w through|strong="G1223"\w* \w faith|strong="G4102"\w*. +\p +\v 31 \w Do|strong="G1096"\w* \w we|strong="G3767"\w* \w then|strong="G3767"\w* \w nullify|strong="G2673"\w* \w the|strong="G1223"\w* \w law|strong="G3551"\w* \w through|strong="G1223"\w* \w faith|strong="G4102"\w*? \w May|strong="G4102"\w* \w it|strong="G1223"\w* \w never|strong="G3361"\w* \w be|strong="G1096"\w*! \w No|strong="G3361"\w*, \w we|strong="G3767"\w* \w establish|strong="G2476"\w* \w the|strong="G1223"\w* \w law|strong="G3551"\w*. +\c 4 +\p +\v 1 \w What|strong="G5101"\w* \w then|strong="G3767"\w* \w will|strong="G5101"\w* \w we|strong="G2249"\w* \w say|strong="G3004"\w* \w that|strong="G3588"\w* Abraham, \w our|strong="G2596"\w* \w forefather|strong="G3962"\w*, \w has|strong="G3962"\w* \w found|strong="G2147"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G2596"\w* \w flesh|strong="G4561"\w*? +\v 2 \w For|strong="G1063"\w* \w if|strong="G1487"\w* Abraham \w was|strong="G2316"\w* \w justified|strong="G1344"\w* \w by|strong="G1537"\w* \w works|strong="G2041"\w*, \w he|strong="G1063"\w* \w has|strong="G2192"\w* \w something|strong="G2745"\w* \w to|strong="G4314"\w* \w boast|strong="G2745"\w* \w about|strong="G4314"\w*, \w but|strong="G1487"\w* \w not|strong="G3756"\w* \w toward|strong="G4314"\w* \w God|strong="G2316"\w*. +\v 3 \w For|strong="G1063"\w* \w what|strong="G5101"\w* \w does|strong="G5101"\w* \w the|strong="G2532"\w* \w Scripture|strong="G1124"\w* \w say|strong="G3004"\w*? “\w Abraham|strong="G4100"\w* \w believed|strong="G4100"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w it|strong="G2532"\w* \w was|strong="G3588"\w* \w accounted|strong="G3049"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w for|strong="G1063"\w* \w righteousness|strong="G1343"\w*.”\x + \xo 4:3 \xt Genesis 15:6\x* +\v 4 \w Now|strong="G1161"\w* \w to|strong="G2596"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w works|strong="G2038"\w*, \w the|strong="G1161"\w* \w reward|strong="G3408"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w counted|strong="G3049"\w* \w as|strong="G1161"\w* \w grace|strong="G5485"\w*, \w but|strong="G1161"\w* \w as|strong="G1161"\w* something owed. +\v 5 \w But|strong="G1161"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* doesn’\w t|strong="G3588"\w* \w work|strong="G2038"\w*, \w but|strong="G1161"\w* \w believes|strong="G4100"\w* \w in|strong="G1519"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w justifies|strong="G1344"\w* \w the|strong="G1519"\w* ungodly, \w his|strong="G1519"\w* \w faith|strong="G4102"\w* \w is|strong="G3588"\w* \w accounted|strong="G3049"\w* \w for|strong="G1519"\w* \w righteousness|strong="G1343"\w*. +\v 6 \w Even|strong="G2532"\w* \w as|strong="G2509"\w* \w David|strong="G1138"\w* \w also|strong="G2532"\w* pronounces \w blessing|strong="G3108"\w* \w on|strong="G3049"\w* \w the|strong="G2532"\w* \w man|strong="G3739"\w* \w to|strong="G2532"\w* \w whom|strong="G3739"\w* \w God|strong="G2316"\w* counts \w righteousness|strong="G1343"\w* \w apart|strong="G5565"\w* \w from|strong="G2532"\w* \w works|strong="G2041"\w*: +\q1 +\v 7 “\w Blessed|strong="G3107"\w* \w are|strong="G3588"\w* \w they|strong="G2532"\w* \w whose|strong="G3739"\w* iniquities \w are|strong="G3588"\w* forgiven, +\q2 \w whose|strong="G3739"\w* sins \w are|strong="G3588"\w* \w covered|strong="G1943"\w*. +\q1 +\v 8 \w Blessed|strong="G3107"\w* \w is|strong="G3739"\w* \w the|strong="G3739"\w* \w man|strong="G3361"\w* \w whom|strong="G3739"\w* \w the|strong="G3739"\w* \w Lord|strong="G2962"\w* \w will|strong="G3739"\w* \w by|strong="G3739"\w* \w no|strong="G3756"\w* \w means|strong="G3361"\w* charge \w with|strong="G2962"\w* sin.”\x + \xo 4:8 \xt Psalms 32:1-2\x* +\p +\v 9 \w Is|strong="G3588"\w* \w this|strong="G3778"\w* \w blessing|strong="G3108"\w* \w then|strong="G3767"\w* pronounced \w only|strong="G2532"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w circumcised|strong="G4061"\w*, \w or|strong="G2228"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* uncircumcised \w also|strong="G2532"\w*? \w For|strong="G1063"\w* \w we|strong="G1063"\w* \w say|strong="G3004"\w* \w that|strong="G3588"\w* \w faith|strong="G4102"\w* \w was|strong="G3588"\w* \w accounted|strong="G3049"\w* \w to|strong="G1519"\w* Abraham \w for|strong="G1063"\w* \w righteousness|strong="G1343"\w*. +\v 10 \w How|strong="G4459"\w* \w then|strong="G3767"\w* \w was|strong="G1510"\w* \w it|strong="G1510"\w* \w counted|strong="G3049"\w*? \w When|strong="G1722"\w* \w he|strong="G1510"\w* \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w circumcision|strong="G4061"\w*, \w or|strong="G2228"\w* \w in|strong="G1722"\w* uncircumcision? \w Not|strong="G3756"\w* \w in|strong="G1722"\w* \w circumcision|strong="G4061"\w*, \w but|strong="G3767"\w* \w in|strong="G1722"\w* uncircumcision. +\v 11 \w He|strong="G2532"\w* \w received|strong="G2983"\w* \w the|strong="G1722"\w* \w sign|strong="G4592"\w* \w of|strong="G1223"\w* \w circumcision|strong="G4061"\w*, \w a|strong="G2532"\w* \w seal|strong="G4973"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* \w righteousness|strong="G1343"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* \w faith|strong="G4102"\w* \w which|strong="G3588"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w while|strong="G1722"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w in|strong="G1722"\w* uncircumcision, \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w be|strong="G1510"\w* \w the|strong="G1722"\w* \w father|strong="G3962"\w* \w of|strong="G1223"\w* \w all|strong="G3956"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w believe|strong="G4100"\w*, \w though|strong="G2532"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w be|strong="G1510"\w* \w in|strong="G1722"\w* uncircumcision, \w that|strong="G3588"\w* \w righteousness|strong="G1343"\w* \w might|strong="G2532"\w* \w also|strong="G2532"\w* \w be|strong="G1510"\w* \w accounted|strong="G3049"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*. +\v 12 \w He|strong="G2532"\w* \w is|strong="G3588"\w* \w the|strong="G1722"\w* \w father|strong="G3962"\w* \w of|strong="G1537"\w* \w circumcision|strong="G4061"\w* \w to|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w not|strong="G3756"\w* \w only|strong="G3440"\w* \w are|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w circumcision|strong="G4061"\w*, \w but|strong="G2532"\w* \w who|strong="G3588"\w* \w also|strong="G2532"\w* \w walk|strong="G4748"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w steps|strong="G2487"\w* \w of|strong="G1537"\w* \w that|strong="G3588"\w* \w faith|strong="G4102"\w* \w of|strong="G1537"\w* \w our|strong="G2532"\w* \w father|strong="G3962"\w* Abraham, \w which|strong="G3588"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w in|strong="G1722"\w* uncircumcision. +\p +\v 13 \w For|strong="G1063"\w* \w the|strong="G1223"\w* \w promise|strong="G1860"\w* \w to|strong="G3756"\w* Abraham \w and|strong="G4102"\w* \w to|strong="G3756"\w* \w his|strong="G1223"\w* offspring \w that|strong="G3588"\w* \w he|strong="G3588"\w* \w would|strong="G1510"\w* \w be|strong="G1510"\w* \w heir|strong="G2818"\w* \w of|strong="G1223"\w* \w the|strong="G1223"\w* \w world|strong="G2889"\w* wasn’\w t|strong="G3588"\w* \w through|strong="G1223"\w* \w the|strong="G1223"\w* \w law|strong="G3551"\w*, \w but|strong="G1063"\w* \w through|strong="G1223"\w* \w the|strong="G1223"\w* \w righteousness|strong="G1343"\w* \w of|strong="G1223"\w* \w faith|strong="G4102"\w*. +\v 14 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w* \w are|strong="G3588"\w* \w heirs|strong="G2818"\w*, \w faith|strong="G4102"\w* \w is|strong="G3588"\w* \w made|strong="G2758"\w* \w void|strong="G2758"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w promise|strong="G1860"\w* \w is|strong="G3588"\w* \w made|strong="G2758"\w* \w of|strong="G1537"\w* \w no|strong="G2532"\w* \w effect|strong="G2673"\w*. +\v 15 \w For|strong="G1063"\w* \w the|strong="G1161"\w* \w law|strong="G3551"\w* \w produces|strong="G2716"\w* \w wrath|strong="G3709"\w*; \w for|strong="G1063"\w* \w where|strong="G3757"\w* \w there|strong="G1161"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* \w law|strong="G3551"\w*, \w neither|strong="G3761"\w* \w is|strong="G1510"\w* \w there|strong="G1161"\w* disobedience. +\p +\v 16 \w For|strong="G1519"\w* \w this|strong="G3778"\w* \w cause|strong="G1223"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w of|strong="G1537"\w* \w faith|strong="G4102"\w*, \w that|strong="G2443"\w* \w it|strong="G2532"\w* \w may|strong="G2532"\w* \w be|strong="G1510"\w* \w according|strong="G2596"\w* \w to|strong="G1519"\w* \w grace|strong="G5485"\w*, \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w end|strong="G1519"\w* \w that|strong="G2443"\w* \w the|strong="G2532"\w* \w promise|strong="G1860"\w* \w may|strong="G2532"\w* \w be|strong="G1510"\w* sure \w to|strong="G1519"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* offspring, \w not|strong="G3756"\w* \w to|strong="G1519"\w* \w that|strong="G2443"\w* \w only|strong="G3440"\w* \w which|strong="G3739"\w* \w is|strong="G1510"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w*, \w but|strong="G2532"\w* \w to|strong="G1519"\w* \w that|strong="G2443"\w* \w also|strong="G2532"\w* \w which|strong="G3739"\w* \w is|strong="G1510"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w faith|strong="G4102"\w* \w of|strong="G1537"\w* Abraham, \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w father|strong="G3962"\w* \w of|strong="G1537"\w* \w us|strong="G1519"\w* \w all|strong="G3956"\w*. +\v 17 \w As|strong="G5613"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w written|strong="G1125"\w*, “\w I|strong="G3739"\w* \w have|strong="G2532"\w* \w made|strong="G5087"\w* \w you|strong="G4771"\w* \w a|strong="G5613"\w* \w father|strong="G3962"\w* \w of|strong="G2316"\w* \w many|strong="G4183"\w* \w nations|strong="G1484"\w*.”\x + \xo 4:17 \xt Genesis 17:5\x* \w This|strong="G3588"\w* \w is|strong="G1510"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w presence|strong="G2713"\w* \w of|strong="G2316"\w* \w him|strong="G3588"\w* \w whom|strong="G3739"\w* \w he|strong="G2532"\w* \w believed|strong="G4100"\w*: \w God|strong="G2316"\w*, \w who|strong="G3739"\w* \w gives|strong="G2227"\w* \w life|strong="G2227"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*, \w and|strong="G2532"\w* \w calls|strong="G2564"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w that|strong="G3754"\w* \w are|strong="G1510"\w* \w not|strong="G3361"\w*, \w as|strong="G5613"\w* \w though|strong="G5613"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w*. +\v 18 \w Against|strong="G2596"\w* \w hope|strong="G1680"\w*, \w Abraham|strong="G4100"\w* \w in|strong="G1519"\w* \w hope|strong="G1680"\w* \w believed|strong="G4100"\w*, \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w end|strong="G1519"\w* \w that|strong="G3739"\w* \w he|strong="G3739"\w* \w might|strong="G1484"\w* \w become|strong="G1096"\w* \w a|strong="G1096"\w* \w father|strong="G3962"\w* \w of|strong="G3844"\w* \w many|strong="G4183"\w* \w nations|strong="G1484"\w*, \w according|strong="G2596"\w* \w to|strong="G1519"\w* \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w had|strong="G1510"\w* \w been|strong="G1510"\w* \w spoken|strong="G3004"\w*, “\w So|strong="G3779"\w* \w will|strong="G1510"\w* \w your|strong="G1909"\w* offspring \w be|strong="G1096"\w*.”\x + \xo 4:18 \xt Genesis 15:5\x* +\v 19 \w Without|strong="G3361"\w* \w being|strong="G5225"\w* weakened \w in|strong="G2532"\w* \w faith|strong="G4102"\w*, \w he|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w consider|strong="G2657"\w* \w his|strong="G1438"\w* \w own|strong="G1438"\w* \w body|strong="G4983"\w*, already \w having|strong="G2532"\w* \w been|strong="G2532"\w* worn \w out|strong="G2532"\w*, (\w he|strong="G2532"\w* \w being|strong="G5225"\w* \w about|strong="G4225"\w* \w a|strong="G2532"\w* \w hundred|strong="G1541"\w* \w years|strong="G1541"\w* \w old|strong="G1541"\w*), \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w deadness|strong="G3500"\w* \w of|strong="G2532"\w* \w Sarah|strong="G4564"\w*’s \w womb|strong="G3388"\w*. +\v 20 \w Yet|strong="G1161"\w*, looking \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w promise|strong="G1860"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w he|strong="G1161"\w* didn’\w t|strong="G3588"\w* \w waver|strong="G1252"\w* \w through|strong="G2316"\w* unbelief, \w but|strong="G1161"\w* \w grew|strong="G1743"\w* \w strong|strong="G1743"\w* \w through|strong="G2316"\w* \w faith|strong="G4102"\w*, \w giving|strong="G1325"\w* \w glory|strong="G1391"\w* \w to|strong="G1519"\w* \w God|strong="G2316"\w*, +\v 21 \w and|strong="G2532"\w* \w being|strong="G1510"\w* \w fully|strong="G4135"\w* \w assured|strong="G4135"\w* \w that|strong="G3754"\w* \w what|strong="G3739"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w promised|strong="G1861"\w*, \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w also|strong="G2532"\w* \w able|strong="G1415"\w* \w to|strong="G2532"\w* \w perform|strong="G4160"\w*. +\v 22 \w Therefore|strong="G1352"\w* \w it|strong="G2532"\w* \w also|strong="G2532"\w* \w was|strong="G2532"\w* “\w credited|strong="G3049"\w* \w to|strong="G1519"\w* \w him|strong="G2532"\w* \w for|strong="G1519"\w* \w righteousness|strong="G1343"\w*.”\x + \xo 4:22 \xt Genesis 15:6\x* +\v 23 \w Now|strong="G1161"\w* \w it|strong="G3754"\w* \w was|strong="G3748"\w* \w not|strong="G3756"\w* \w written|strong="G1125"\w* \w that|strong="G3754"\w* \w it|strong="G3754"\w* \w was|strong="G3748"\w* \w accounted|strong="G3049"\w* \w to|strong="G3756"\w* \w him|strong="G3049"\w* \w for|strong="G3754"\w* \w his|strong="G1223"\w* \w sake|strong="G1223"\w* \w alone|strong="G3441"\w*, +\v 24 \w but|strong="G2532"\w* \w for|strong="G1223"\w* \w our|strong="G2424"\w* \w sake|strong="G1223"\w* \w also|strong="G2532"\w*, \w to|strong="G2532"\w* \w whom|strong="G3739"\w* \w it|strong="G2532"\w* \w will|strong="G3195"\w* \w be|strong="G2532"\w* \w accounted|strong="G3049"\w*, \w who|strong="G3739"\w* \w believe|strong="G4100"\w* \w in|strong="G1909"\w* \w him|strong="G3588"\w* \w who|strong="G3739"\w* \w raised|strong="G1453"\w* \w Jesus|strong="G2424"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*, +\v 25 \w who|strong="G3739"\w* \w was|strong="G3588"\w* \w delivered|strong="G3860"\w* \w up|strong="G1453"\w* \w for|strong="G1223"\w* \w our|strong="G2532"\w* \w trespasses|strong="G3900"\w*, \w and|strong="G2532"\w* \w was|strong="G3588"\w* \w raised|strong="G1453"\w* \w for|strong="G1223"\w* \w our|strong="G2532"\w* \w justification|strong="G1347"\w*. +\c 5 +\p +\v 1 \w Being|strong="G2192"\w* \w therefore|strong="G3767"\w* \w justified|strong="G1344"\w* \w by|strong="G1223"\w* \w faith|strong="G4102"\w*, \w we|strong="G2249"\w* \w have|strong="G2192"\w* \w peace|strong="G1515"\w* \w with|strong="G4314"\w* \w God|strong="G2316"\w* \w through|strong="G1223"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*; +\v 2 \w through|strong="G1223"\w* \w whom|strong="G3739"\w* \w we|strong="G3739"\w* \w also|strong="G2532"\w* \w have|strong="G2192"\w* \w our|strong="G2316"\w* \w access|strong="G4318"\w* \w by|strong="G1223"\w* \w faith|strong="G4102"\w* \w into|strong="G1519"\w* \w this|strong="G3778"\w* \w grace|strong="G5485"\w* \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w we|strong="G3739"\w* \w stand|strong="G2476"\w*. \w We|strong="G3739"\w* \w rejoice|strong="G2744"\w* \w in|strong="G1722"\w* \w hope|strong="G1680"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* \w glory|strong="G1391"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w*. +\v 3 \w Not|strong="G3756"\w* \w only|strong="G3440"\w* \w this|strong="G3588"\w*, \w but|strong="G1161"\w* \w we|strong="G3754"\w* \w also|strong="G2532"\w* \w rejoice|strong="G2744"\w* \w in|strong="G1722"\w* \w our|strong="G2532"\w* \w sufferings|strong="G2347"\w*, \w knowing|strong="G1492"\w* \w that|strong="G3754"\w* \w suffering|strong="G2347"\w* \w produces|strong="G2716"\w* \w perseverance|strong="G5281"\w*; +\v 4 \w and|strong="G1161"\w* \w perseverance|strong="G5281"\w*, \w proven|strong="G1382"\w* \w character|strong="G1382"\w*; \w and|strong="G1161"\w* \w proven|strong="G1382"\w* \w character|strong="G1382"\w*, \w hope|strong="G1680"\w*; +\v 5 \w and|strong="G1161"\w* \w hope|strong="G1680"\w* doesn’\w t|strong="G3588"\w* \w disappoint|strong="G2617"\w* \w us|strong="G1325"\w*, \w because|strong="G3754"\w* \w God|strong="G2316"\w*’s love \w has|strong="G2316"\w* \w been|strong="G1325"\w* \w poured|strong="G1632"\w* \w into|strong="G1722"\w* \w our|strong="G2316"\w* \w hearts|strong="G2588"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G1722"\w* \w us|strong="G1325"\w*. +\p +\v 6 \w For|strong="G1063"\w* \w while|strong="G1510"\w* \w we|strong="G2249"\w* \w were|strong="G1510"\w* \w yet|strong="G2089"\w* weak, \w at|strong="G2596"\w* \w the|strong="G2596"\w* \w right|strong="G2540"\w* \w time|strong="G2540"\w* \w Christ|strong="G5547"\w* died \w for|strong="G1063"\w* \w the|strong="G2596"\w* ungodly. +\v 7 \w For|strong="G1063"\w* \w one|strong="G5100"\w* \w will|strong="G2532"\w* \w hardly|strong="G3433"\w* die \w for|strong="G1063"\w* \w a|strong="G2532"\w* \w righteous|strong="G1342"\w* \w man|strong="G5100"\w*. \w Yet|strong="G2532"\w* \w perhaps|strong="G5029"\w* \w for|strong="G1063"\w* \w a|strong="G2532"\w* \w good|strong="G3588"\w* \w person|strong="G1342"\w* \w someone|strong="G5100"\w* \w would|strong="G2532"\w* \w even|strong="G2532"\w* \w dare|strong="G5111"\w* \w to|strong="G2532"\w* die. +\v 8 \w But|strong="G1161"\w* \w God|strong="G2316"\w* \w commends|strong="G4921"\w* \w his|strong="G1438"\w* \w own|strong="G1438"\w* love \w toward|strong="G1519"\w* \w us|strong="G1519"\w*, \w in|strong="G1519"\w* \w that|strong="G3754"\w* \w while|strong="G1161"\w* \w we|strong="G2249"\w* \w were|strong="G1510"\w* \w yet|strong="G2089"\w* sinners, \w Christ|strong="G5547"\w* \w died|strong="G3588"\w* \w for|strong="G3754"\w* \w us|strong="G1519"\w*. +\p +\v 9 \w Much|strong="G4183"\w* \w more|strong="G3123"\w* \w then|strong="G3767"\w*, \w being|strong="G1722"\w* \w now|strong="G3568"\w* \w justified|strong="G1344"\w* \w by|strong="G1223"\w* \w his|strong="G1223"\w* blood, \w we|strong="G3568"\w* \w will|strong="G4183"\w* \w be|strong="G3588"\w* \w saved|strong="G4982"\w* \w from|strong="G3588"\w* \w God|strong="G3588"\w*’s \w wrath|strong="G3709"\w* \w through|strong="G1223"\w* \w him|strong="G3588"\w*. +\v 10 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w while|strong="G1722"\w* \w we|strong="G1063"\w* \w were|strong="G1510"\w* \w enemies|strong="G2190"\w*, \w we|strong="G1063"\w* \w were|strong="G1510"\w* \w reconciled|strong="G2644"\w* \w to|strong="G1722"\w* \w God|strong="G2316"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w death|strong="G2288"\w* \w of|strong="G5207"\w* \w his|strong="G1223"\w* \w Son|strong="G5207"\w*, \w much|strong="G4183"\w* \w more|strong="G3123"\w*, \w being|strong="G1510"\w* \w reconciled|strong="G2644"\w*, \w we|strong="G1063"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w saved|strong="G4982"\w* \w by|strong="G1223"\w* \w his|strong="G1223"\w* \w life|strong="G2222"\w*. +\p +\v 11 \w Not|strong="G3756"\w* \w only|strong="G3440"\w* \w so|strong="G2532"\w*, \w but|strong="G1161"\w* \w we|strong="G2249"\w* \w also|strong="G2532"\w* \w rejoice|strong="G2744"\w* \w in|strong="G1722"\w* \w God|strong="G2316"\w* \w through|strong="G1223"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w through|strong="G1223"\w* \w whom|strong="G3739"\w* \w we|strong="G2249"\w* \w have|strong="G2532"\w* \w now|strong="G1161"\w* \w received|strong="G2983"\w* \w the|strong="G1722"\w* \w reconciliation|strong="G2643"\w*. +\v 12 \w Therefore|strong="G1223"\w*, \w as|strong="G5618"\w* sin \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w* \w through|strong="G1223"\w* \w one|strong="G1520"\w* \w man|strong="G3778"\w*, \w and|strong="G2532"\w* \w death|strong="G2288"\w* \w through|strong="G1223"\w* sin, \w so|strong="G3779"\w* \w death|strong="G2288"\w* \w passed|strong="G1330"\w* \w to|strong="G1519"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w* \w because|strong="G1223"\w* \w all|strong="G3956"\w* sinned. +\v 13 \w For|strong="G1063"\w* \w until|strong="G1722"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w*, sin \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*; \w but|strong="G1161"\w* sin \w is|strong="G1510"\w* \w not|strong="G3756"\w* charged \w when|strong="G1161"\w* \w there|strong="G1161"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* \w law|strong="G3551"\w*. +\v 14 \w Nevertheless|strong="G2532"\w* \w death|strong="G2288"\w* reigned \w from|strong="G2532"\w* Adam \w until|strong="G3360"\w* \w Moses|strong="G3475"\w*, \w even|strong="G2532"\w* \w over|strong="G1909"\w* \w those|strong="G3588"\w* \w whose|strong="G3739"\w* sins weren’\w t|strong="G3588"\w* \w like|strong="G5179"\w* Adam’s disobedience, \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w a|strong="G2532"\w* foreshadowing \w of|strong="G2532"\w* \w him|strong="G3588"\w* \w who|strong="G3739"\w* \w was|strong="G1510"\w* \w to|strong="G2532"\w* \w come|strong="G3195"\w*. +\p +\v 15 \w But|strong="G2532"\w* \w the|strong="G1722"\w* \w free|strong="G5486"\w* \w gift|strong="G1431"\w* isn’\w t|strong="G3588"\w* \w like|strong="G5613"\w* \w the|strong="G1722"\w* \w trespass|strong="G3900"\w*. \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w trespass|strong="G3900"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w one|strong="G1520"\w* \w the|strong="G1722"\w* \w many|strong="G4183"\w* \w died|strong="G3588"\w*, \w much|strong="G4183"\w* \w more|strong="G3123"\w* \w did|strong="G2532"\w* \w the|strong="G1722"\w* \w grace|strong="G5485"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w gift|strong="G1431"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w grace|strong="G5485"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w one|strong="G1520"\w* \w man|strong="G1520"\w*, \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w abound|strong="G4052"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w many|strong="G4183"\w*. +\v 16 \w The|strong="G2532"\w* \w gift|strong="G5486"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w as|strong="G5613"\w* \w through|strong="G1223"\w* \w one|strong="G1520"\w* \w who|strong="G3588"\w* sinned; \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w judgment|strong="G2917"\w* \w came|strong="G2532"\w* \w by|strong="G1223"\w* \w one|strong="G1520"\w* \w to|strong="G1519"\w* \w condemnation|strong="G2917"\w*, \w but|strong="G1161"\w* \w the|strong="G2532"\w* \w free|strong="G5486"\w* \w gift|strong="G5486"\w* followed \w many|strong="G4183"\w* \w trespasses|strong="G3900"\w* \w to|strong="G1519"\w* \w justification|strong="G1345"\w*. +\v 17 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w by|strong="G1223"\w* \w the|strong="G1722"\w* \w trespass|strong="G3900"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* \w one|strong="G1520"\w*, \w death|strong="G2288"\w* reigned \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w one|strong="G1520"\w*; \w so|strong="G2532"\w* \w much|strong="G4183"\w* \w more|strong="G3123"\w* \w will|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w receive|strong="G2983"\w* \w the|strong="G1722"\w* \w abundance|strong="G4050"\w* \w of|strong="G1223"\w* \w grace|strong="G5485"\w* \w and|strong="G2532"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* \w gift|strong="G1431"\w* \w of|strong="G1223"\w* \w righteousness|strong="G1343"\w* \w reign|strong="G2532"\w* \w in|strong="G1722"\w* \w life|strong="G2222"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w one|strong="G1520"\w*, \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\p +\v 18 \w So|strong="G3779"\w* \w then|strong="G3767"\w* \w as|strong="G5613"\w* \w through|strong="G1223"\w* \w one|strong="G1520"\w* \w trespass|strong="G3900"\w*, \w all|strong="G3956"\w* \w men|strong="G3956"\w* \w were|strong="G2532"\w* condemned; \w even|strong="G2532"\w* \w so|strong="G3779"\w* \w through|strong="G1223"\w* \w one|strong="G1520"\w* \w act|strong="G1345"\w* \w of|strong="G1223"\w* \w righteousness|strong="G1345"\w*, \w all|strong="G3956"\w* \w men|strong="G3956"\w* \w were|strong="G2532"\w* justified \w to|strong="G1519"\w* \w life|strong="G2222"\w*. +\v 19 \w For|strong="G1063"\w* \w as|strong="G5618"\w* \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w one|strong="G1520"\w* \w man|strong="G1342"\w*’s \w disobedience|strong="G3876"\w* \w many|strong="G4183"\w* \w were|strong="G3588"\w* \w made|strong="G2525"\w* sinners, \w even|strong="G2532"\w* \w so|strong="G3779"\w* \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w obedience|strong="G5218"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w one|strong="G1520"\w*, \w many|strong="G4183"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w made|strong="G2525"\w* \w righteous|strong="G1342"\w*. +\v 20 \w The|strong="G1161"\w* \w law|strong="G3551"\w* \w came|strong="G3588"\w* \w in|strong="G1161"\w* \w that|strong="G2443"\w* \w the|strong="G1161"\w* \w trespass|strong="G3900"\w* \w might|strong="G3900"\w* \w abound|strong="G4121"\w*; \w but|strong="G1161"\w* \w where|strong="G3757"\w* \w sin|strong="G3900"\w* \w abounded|strong="G5248"\w*, \w grace|strong="G5485"\w* \w abounded|strong="G5248"\w* \w more|strong="G1161"\w* exceedingly, +\v 21 \w that|strong="G2443"\w* \w as|strong="G5618"\w* sin reigned \w in|strong="G1722"\w* \w death|strong="G2288"\w*, \w even|strong="G2532"\w* \w so|strong="G3779"\w* \w grace|strong="G5485"\w* \w might|strong="G2532"\w* \w reign|strong="G2532"\w* \w through|strong="G1223"\w* \w righteousness|strong="G1343"\w* \w to|strong="G1519"\w* eternal \w life|strong="G2222"\w* \w through|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w*. +\c 6 +\p +\v 1 \w What|strong="G5101"\w* \w shall|strong="G5101"\w* \w we|strong="G2443"\w* \w say|strong="G3004"\w* \w then|strong="G3767"\w*? \w Shall|strong="G5101"\w* \w we|strong="G2443"\w* \w continue|strong="G1961"\w* \w in|strong="G1961"\w* sin, \w that|strong="G2443"\w* \w grace|strong="G5485"\w* \w may|strong="G2443"\w* \w abound|strong="G4121"\w*? +\v 2 May \w it|strong="G1096"\w* \w never|strong="G3361"\w* \w be|strong="G1096"\w*! \w We|strong="G1722"\w* \w who|strong="G3588"\w* \w died|strong="G3588"\w* \w to|strong="G1722"\w* sin, \w how|strong="G4459"\w* \w could|strong="G3361"\w* \w we|strong="G1722"\w* \w live|strong="G2198"\w* \w in|strong="G1722"\w* \w it|strong="G1096"\w* \w any|strong="G3361"\w* \w longer|strong="G2089"\w*? +\v 3 \w Or|strong="G2228"\w* don’\w t|strong="G3588"\w* \w you|strong="G3754"\w* know \w that|strong="G3754"\w* \w all|strong="G3745"\w* \w of|strong="G2424"\w* \w us|strong="G1519"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* baptized \w into|strong="G1519"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w were|strong="G3588"\w* baptized \w into|strong="G1519"\w* \w his|strong="G1519"\w* \w death|strong="G2288"\w*? +\v 4 \w We|strong="G2249"\w* \w were|strong="G3588"\w* \w buried|strong="G4916"\w* \w therefore|strong="G3767"\w* \w with|strong="G1722"\w* \w him|strong="G3588"\w* \w through|strong="G1223"\w* baptism \w into|strong="G1519"\w* \w death|strong="G2288"\w*, \w that|strong="G2443"\w* \w just|strong="G5618"\w* \w as|strong="G5618"\w* \w Christ|strong="G5547"\w* \w was|strong="G3588"\w* \w raised|strong="G1453"\w* \w from|strong="G1537"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w glory|strong="G1391"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w Father|strong="G3962"\w*, \w so|strong="G3779"\w* \w we|strong="G2249"\w* \w also|strong="G2532"\w* \w might|strong="G2532"\w* \w walk|strong="G4043"\w* \w in|strong="G1722"\w* \w newness|strong="G2538"\w* \w of|strong="G1537"\w* \w life|strong="G2222"\w*. +\p +\v 5 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w we|strong="G1063"\w* \w have|strong="G2532"\w* \w become|strong="G1096"\w* \w united|strong="G4854"\w* \w with|strong="G2532"\w* \w him|strong="G3588"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w likeness|strong="G3667"\w* \w of|strong="G2532"\w* \w his|strong="G2532"\w* \w death|strong="G2288"\w*, \w we|strong="G1063"\w* \w will|strong="G1510"\w* \w also|strong="G2532"\w* \w be|strong="G1096"\w* \w part|strong="G2532"\w* \w of|strong="G2532"\w* \w his|strong="G2532"\w* resurrection; +\v 6 \w knowing|strong="G1097"\w* \w this|strong="G3778"\w*, \w that|strong="G3754"\w* our \w old|strong="G3820"\w* \w man|strong="G3778"\w* \w was|strong="G3588"\w* \w crucified|strong="G4957"\w* \w with|strong="G4957"\w* \w him|strong="G3588"\w*, \w that|strong="G3754"\w* \w the|strong="G3588"\w* \w body|strong="G4983"\w* \w of|strong="G4983"\w* sin \w might|strong="G3778"\w* \w be|strong="G2443"\w* \w done|strong="G2673"\w* \w away|strong="G2673"\w* \w with|strong="G4957"\w*, \w so|strong="G2443"\w* \w that|strong="G3754"\w* \w we|strong="G2249"\w* would \w no|strong="G3371"\w* \w longer|strong="G3371"\w* \w be|strong="G2443"\w* \w in|strong="G3588"\w* \w bondage|strong="G1398"\w* \w to|strong="G2443"\w* sin. +\v 7 \w For|strong="G1063"\w* \w he|strong="G3588"\w* \w who|strong="G3588"\w* has \w died|strong="G3588"\w* has been \w freed|strong="G1344"\w* \w from|strong="G3588"\w* sin. +\v 8 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w we|strong="G3754"\w* died \w with|strong="G4862"\w* \w Christ|strong="G5547"\w*, \w we|strong="G3754"\w* \w believe|strong="G4100"\w* \w that|strong="G3754"\w* \w we|strong="G3754"\w* \w will|strong="G2532"\w* \w also|strong="G2532"\w* \w live|strong="G4800"\w* \w with|strong="G4862"\w* \w him|strong="G2532"\w*, +\v 9 \w knowing|strong="G1492"\w* \w that|strong="G3754"\w* \w Christ|strong="G5547"\w*, \w being|strong="G5547"\w* \w raised|strong="G1453"\w* \w from|strong="G1537"\w* \w the|strong="G1537"\w* \w dead|strong="G3498"\w*, dies \w no|strong="G3765"\w* \w more|strong="G3765"\w*. \w Death|strong="G2288"\w* \w no|strong="G3765"\w* \w longer|strong="G3765"\w* \w has|strong="G5547"\w* \w dominion|strong="G2961"\w* \w over|strong="G2961"\w* \w him|strong="G1537"\w*! +\v 10 \w For|strong="G1063"\w* \w the|strong="G1161"\w* death \w that|strong="G3739"\w* \w he|strong="G1161"\w* \w died|strong="G3588"\w*, \w he|strong="G1161"\w* \w died|strong="G3588"\w* \w to|strong="G1161"\w* sin \w one|strong="G3739"\w* \w time|strong="G3739"\w*; \w but|strong="G1161"\w* \w the|strong="G1161"\w* \w life|strong="G2198"\w* \w that|strong="G3739"\w* \w he|strong="G1161"\w* \w lives|strong="G2198"\w*, \w he|strong="G1161"\w* \w lives|strong="G2198"\w* \w to|strong="G1161"\w* \w God|strong="G2316"\w*. +\v 11 \w Thus|strong="G3779"\w* \w consider|strong="G3049"\w* \w yourselves|strong="G1438"\w* \w also|strong="G2532"\w* \w to|strong="G2532"\w* \w be|strong="G1510"\w* \w dead|strong="G3498"\w* \w to|strong="G2532"\w* sin, \w but|strong="G1161"\w* \w alive|strong="G2198"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w our|strong="G2316"\w* \w Lord|strong="G3588"\w*. +\p +\v 12 \w Therefore|strong="G3767"\w* don’\w t|strong="G3588"\w* \w let|strong="G3767"\w* sin reign \w in|strong="G1722"\w* \w your|strong="G1722"\w* \w mortal|strong="G2349"\w* \w body|strong="G4983"\w*, \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w should|strong="G3588"\w* \w obey|strong="G5219"\w* \w it|strong="G1519"\w* \w in|strong="G1722"\w* \w its|strong="G5219"\w* \w lusts|strong="G1939"\w*. +\v 13 \w Also|strong="G2532"\w*, \w do|strong="G2532"\w* \w not|strong="G3366"\w* \w present|strong="G3936"\w* \w your|strong="G2532"\w* \w members|strong="G3196"\w* \w to|strong="G2532"\w* sin \w as|strong="G2532"\w* \w instruments|strong="G3696"\w* \w of|strong="G1537"\w* unrighteousness, \w but|strong="G2532"\w* \w present|strong="G3936"\w* \w yourselves|strong="G1438"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w* \w as|strong="G2532"\w* \w alive|strong="G2198"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*, \w and|strong="G2532"\w* \w your|strong="G2532"\w* \w members|strong="G3196"\w* \w as|strong="G2532"\w* \w instruments|strong="G3696"\w* \w of|strong="G1537"\w* \w righteousness|strong="G1343"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w*. +\v 14 \w For|strong="G1063"\w* sin \w will|strong="G1510"\w* \w not|strong="G3756"\w* \w have|strong="G1510"\w* \w dominion|strong="G2961"\w* \w over|strong="G2961"\w* \w you|strong="G5210"\w*, \w for|strong="G1063"\w* \w you|strong="G5210"\w* \w are|strong="G1510"\w* \w not|strong="G3756"\w* \w under|strong="G5259"\w* \w law|strong="G3551"\w*, \w but|strong="G1063"\w* \w under|strong="G5259"\w* \w grace|strong="G5485"\w*. +\p +\v 15 \w What|strong="G5101"\w* \w then|strong="G3767"\w*? \w Shall|strong="G5101"\w* \w we|strong="G3754"\w* sin \w because|strong="G3754"\w* \w we|strong="G3754"\w* \w are|strong="G1510"\w* \w not|strong="G3756"\w* \w under|strong="G5259"\w* \w law|strong="G3551"\w* \w but|strong="G3361"\w* \w under|strong="G5259"\w* \w grace|strong="G5485"\w*? \w May|strong="G5485"\w* \w it|strong="G3754"\w* \w never|strong="G3756"\w* \w be|strong="G1096"\w*! +\v 16 Don’t \w you|strong="G3739"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w when|strong="G1492"\w* \w you|strong="G3739"\w* \w present|strong="G3936"\w* \w yourselves|strong="G1438"\w* \w as|strong="G1519"\w* \w servants|strong="G1401"\w* \w and|strong="G1401"\w* \w obey|strong="G5219"\w* \w someone|strong="G3739"\w*, \w you|strong="G3739"\w* \w are|strong="G1510"\w* \w the|strong="G1519"\w* \w servants|strong="G1401"\w* \w of|strong="G1401"\w* \w whomever|strong="G3739"\w* \w you|strong="G3739"\w* \w obey|strong="G5219"\w*, \w whether|strong="G3739"\w* \w of|strong="G1401"\w* sin \w to|strong="G1519"\w* \w death|strong="G2288"\w*, \w or|strong="G2228"\w* \w of|strong="G1401"\w* \w obedience|strong="G5218"\w* \w to|strong="G1519"\w* \w righteousness|strong="G1343"\w*? +\v 17 \w But|strong="G1161"\w* \w thanks|strong="G5485"\w* \w be|strong="G1510"\w* \w to|strong="G1519"\w* \w God|strong="G2316"\w* \w that|strong="G3754"\w*, \w whereas|strong="G1161"\w* \w you|strong="G3739"\w* \w were|strong="G1510"\w* bondservants \w of|strong="G1537"\w* sin, \w you|strong="G3739"\w* \w became|strong="G5219"\w* \w obedient|strong="G5219"\w* \w from|strong="G1537"\w* \w the|strong="G1519"\w* \w heart|strong="G2588"\w* \w to|strong="G1519"\w* \w that|strong="G3754"\w* \w form|strong="G5179"\w* \w of|strong="G1537"\w* \w teaching|strong="G1322"\w* \w to|strong="G1519"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w were|strong="G1510"\w* \w delivered|strong="G3860"\w*. +\v 18 \w Being|strong="G1161"\w* \w made|strong="G1161"\w* \w free|strong="G1659"\w* \w from|strong="G3588"\w* sin, \w you|strong="G1659"\w* \w became|strong="G1402"\w* bondservants \w of|strong="G1343"\w* \w righteousness|strong="G1343"\w*. +\p +\v 19 \w I|strong="G2532"\w* \w speak|strong="G3004"\w* \w in|strong="G1519"\w* \w human|strong="G4561"\w* terms \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* weakness \w of|strong="G1223"\w* \w your|strong="G1223"\w* \w flesh|strong="G4561"\w*; \w for|strong="G1063"\w* \w as|strong="G5618"\w* \w you|strong="G5210"\w* \w presented|strong="G3936"\w* \w your|strong="G1223"\w* \w members|strong="G3196"\w* \w as|strong="G5618"\w* \w servants|strong="G1401"\w* \w to|strong="G1519"\w* uncleanness \w and|strong="G2532"\w* \w to|strong="G1519"\w* wickedness \w upon|strong="G1519"\w* wickedness, \w even|strong="G2532"\w* \w so|strong="G3779"\w* \w now|strong="G3568"\w* \w present|strong="G3936"\w* \w your|strong="G1223"\w* \w members|strong="G3196"\w* \w as|strong="G5618"\w* \w servants|strong="G1401"\w* \w to|strong="G1519"\w* \w righteousness|strong="G1343"\w* \w for|strong="G1063"\w* sanctification. +\v 20 \w For|strong="G1063"\w* \w when|strong="G3753"\w* \w you|strong="G1510"\w* \w were|strong="G1510"\w* \w servants|strong="G1401"\w* \w of|strong="G1401"\w* sin, \w you|strong="G1510"\w* \w were|strong="G1510"\w* \w free|strong="G1658"\w* \w from|strong="G3588"\w* \w righteousness|strong="G1343"\w*. +\v 21 \w What|strong="G5101"\w* \w fruit|strong="G2590"\w* \w then|strong="G3767"\w* \w did|strong="G5101"\w* \w you|strong="G3739"\w* \w have|strong="G2192"\w* \w at|strong="G1909"\w* \w that|strong="G3739"\w* \w time|strong="G5119"\w* \w in|strong="G1909"\w* \w the|strong="G1909"\w* \w things|strong="G3588"\w* \w of|strong="G1909"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w are|strong="G3588"\w* \w now|strong="G3568"\w* \w ashamed|strong="G1870"\w*? \w For|strong="G1063"\w* \w the|strong="G1909"\w* \w end|strong="G5056"\w* \w of|strong="G1909"\w* \w those|strong="G3588"\w* \w things|strong="G3588"\w* \w is|strong="G3588"\w* \w death|strong="G2288"\w*. +\v 22 \w But|strong="G1161"\w* \w now|strong="G1161"\w*, \w being|strong="G2192"\w* \w made|strong="G2316"\w* \w free|strong="G1659"\w* \w from|strong="G3588"\w* sin \w and|strong="G1161"\w* \w having|strong="G2192"\w* \w become|strong="G1161"\w* \w servants|strong="G1402"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w you|strong="G5210"\w* \w have|strong="G2192"\w* \w your|strong="G2192"\w* \w fruit|strong="G2590"\w* \w of|strong="G2316"\w* sanctification \w and|strong="G1161"\w* \w the|strong="G1519"\w* \w result|strong="G1519"\w* \w of|strong="G2316"\w* eternal \w life|strong="G2222"\w*. +\v 23 \w For|strong="G1063"\w* \w the|strong="G1722"\w* \w wages|strong="G3800"\w* \w of|strong="G2316"\w* sin \w is|strong="G3588"\w* \w death|strong="G2288"\w*, \w but|strong="G1161"\w* \w the|strong="G1722"\w* \w free|strong="G5486"\w* \w gift|strong="G5486"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w is|strong="G3588"\w* eternal \w life|strong="G2222"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w*. +\c 7 +\p +\v 1 \w Or|strong="G2228"\w* don’\w t|strong="G3588"\w* \w you|strong="G3754"\w* \w know|strong="G1097"\w*, brothers\f + \fr 7:1 \ft The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”\f* (\w for|strong="G1063"\w* \w I|strong="G1063"\w* \w speak|strong="G2980"\w* \w to|strong="G1909"\w* \w men|strong="G3588"\w* \w who|strong="G3588"\w* \w know|strong="G1097"\w* \w the|strong="G1909"\w* \w law|strong="G3551"\w*), \w that|strong="G3754"\w* \w the|strong="G1909"\w* \w law|strong="G3551"\w* \w has|strong="G3748"\w* \w dominion|strong="G2961"\w* \w over|strong="G1909"\w* \w a|strong="G1909"\w* man \w for|strong="G1063"\w* \w as|strong="G3745"\w* \w long|strong="G5550"\w* \w as|strong="G3745"\w* \w he|strong="G3754"\w* \w lives|strong="G2198"\w*? +\v 2 \w For|strong="G1063"\w* \w the|strong="G1161"\w* \w woman|strong="G1135"\w* \w that|strong="G3588"\w* \w has|strong="G3551"\w* \w a|strong="G1437"\w* \w husband|strong="G5220"\w* \w is|strong="G3588"\w* \w bound|strong="G1210"\w* \w by|strong="G2198"\w* \w law|strong="G3551"\w* \w to|strong="G1161"\w* \w the|strong="G1161"\w* \w husband|strong="G5220"\w* \w while|strong="G1161"\w* \w he|strong="G1161"\w* \w lives|strong="G2198"\w*, \w but|strong="G1161"\w* \w if|strong="G1437"\w* \w the|strong="G1161"\w* \w husband|strong="G5220"\w* dies, \w she|strong="G1161"\w* \w is|strong="G3588"\w* discharged \w from|strong="G3588"\w* \w the|strong="G1161"\w* \w law|strong="G3551"\w* \w of|strong="G3551"\w* \w the|strong="G1161"\w* \w husband|strong="G5220"\w*. +\v 3 \w So|strong="G3767"\w* \w then|strong="G3767"\w* \w if|strong="G1437"\w*, \w while|strong="G1161"\w* \w the|strong="G1161"\w* husband \w lives|strong="G2198"\w*, \w she|strong="G1161"\w* \w is|strong="G1510"\w* \w joined|strong="G1096"\w* \w to|strong="G1096"\w* \w another|strong="G2087"\w* \w man|strong="G3361"\w*, \w she|strong="G1161"\w* \w would|strong="G1096"\w* \w be|strong="G1096"\w* \w called|strong="G5537"\w* \w an|strong="G1096"\w* \w adulteress|strong="G3428"\w*. \w But|strong="G1161"\w* \w if|strong="G1437"\w* \w the|strong="G1161"\w* husband dies, \w she|strong="G1161"\w* \w is|strong="G1510"\w* \w free|strong="G1658"\w* \w from|strong="G3588"\w* \w the|strong="G1161"\w* \w law|strong="G3551"\w*, \w so|strong="G3767"\w* \w that|strong="G3588"\w* \w she|strong="G1161"\w* \w is|strong="G1510"\w* \w no|strong="G3361"\w* \w adulteress|strong="G3428"\w*, \w though|strong="G1437"\w* \w she|strong="G1161"\w* \w is|strong="G1510"\w* \w joined|strong="G1096"\w* \w to|strong="G1096"\w* \w another|strong="G2087"\w* \w man|strong="G3361"\w*. +\v 4 \w Therefore|strong="G1223"\w*, \w my|strong="G1473"\w* brothers, \w you|strong="G5210"\w* \w also|strong="G2532"\w* \w were|strong="G3588"\w* \w made|strong="G1096"\w* \w dead|strong="G3498"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w* \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w body|strong="G4983"\w* \w of|strong="G1537"\w* \w Christ|strong="G5547"\w*, \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w would|strong="G1096"\w* \w be|strong="G1096"\w* \w joined|strong="G1096"\w* \w to|strong="G1519"\w* \w another|strong="G2087"\w*, \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w was|strong="G1096"\w* \w raised|strong="G1453"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*, \w that|strong="G2443"\w* \w we|strong="G2532"\w* \w might|strong="G2532"\w* produce \w fruit|strong="G2592"\w* \w to|strong="G1519"\w* \w God|strong="G2316"\w*. +\v 5 \w For|strong="G1063"\w* \w when|strong="G3753"\w* \w we|strong="G2249"\w* \w were|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*, \w the|strong="G1722"\w* sinful \w passions|strong="G3804"\w* \w which|strong="G3588"\w* \w were|strong="G1510"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w worked|strong="G1754"\w* \w in|strong="G1722"\w* \w our|strong="G1223"\w* \w members|strong="G3196"\w* \w to|strong="G1519"\w* \w bring|strong="G1519"\w* \w out|strong="G1063"\w* \w fruit|strong="G2592"\w* \w to|strong="G1519"\w* \w death|strong="G2288"\w*. +\v 6 \w But|strong="G1161"\w* \w now|strong="G1161"\w* \w we|strong="G2249"\w* \w have|strong="G2532"\w* \w been|strong="G2532"\w* discharged \w from|strong="G2532"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w*, \w having|strong="G2532"\w* \w died|strong="G3588"\w* \w to|strong="G2532"\w* \w that|strong="G3739"\w* \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w we|strong="G2249"\w* \w were|strong="G3588"\w* \w held|strong="G2722"\w*; \w so|strong="G2532"\w* \w that|strong="G3739"\w* \w we|strong="G2249"\w* \w serve|strong="G1398"\w* \w in|strong="G1722"\w* \w newness|strong="G2538"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w spirit|strong="G4151"\w*, \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w in|strong="G1722"\w* \w oldness|strong="G3821"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w letter|strong="G1121"\w*. +\p +\v 7 \w What|strong="G5101"\w* \w shall|strong="G5101"\w* \w we|strong="G1063"\w* \w say|strong="G3004"\w* \w then|strong="G3767"\w*? \w Is|strong="G3588"\w* \w the|strong="G1223"\w* \w law|strong="G3551"\w* sin? \w May|strong="G3004"\w* \w it|strong="G1063"\w* \w never|strong="G3756"\w* \w be|strong="G1096"\w*! \w However|strong="G3767"\w*, \w I|strong="G1063"\w* wouldn’\w t|strong="G3588"\w* \w have|strong="G1096"\w* \w known|strong="G1097"\w* sin \w except|strong="G1487"\w* \w through|strong="G1223"\w* \w the|strong="G1223"\w* \w law|strong="G3551"\w*. \w For|strong="G1063"\w* \w I|strong="G1063"\w* wouldn’\w t|strong="G3588"\w* \w have|strong="G1096"\w* \w known|strong="G1097"\w* \w coveting|strong="G1939"\w* \w unless|strong="G1487"\w* \w the|strong="G1223"\w* \w law|strong="G3551"\w* \w had|strong="G3588"\w* \w said|strong="G3004"\w*, “\w You|strong="G1487"\w* \w shall|strong="G5101"\w* \w not|strong="G3756"\w* \w covet|strong="G1937"\w*.”\x + \xo 7:7 \xt Exodus 20:17; Deuteronomy 5:21\x* +\v 8 \w But|strong="G1161"\w* sin, \w finding|strong="G1063"\w* \w occasion|strong="G1223"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w commandment|strong="G1785"\w*, \w produced|strong="G2716"\w* \w in|strong="G1722"\w* \w me|strong="G1473"\w* \w all|strong="G3956"\w* \w kinds|strong="G3956"\w* \w of|strong="G1223"\w* \w coveting|strong="G1939"\w*. \w For|strong="G1063"\w* \w apart|strong="G5565"\w* \w from|strong="G3588"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w*, sin \w is|strong="G3588"\w* \w dead|strong="G3498"\w*. +\v 9 \w I|strong="G1473"\w* \w was|strong="G3588"\w* \w alive|strong="G2198"\w* \w apart|strong="G5565"\w* \w from|strong="G2064"\w* \w the|strong="G1161"\w* \w law|strong="G3551"\w* \w once|strong="G4218"\w*, \w but|strong="G1161"\w* \w when|strong="G1161"\w* \w the|strong="G1161"\w* \w commandment|strong="G1785"\w* \w came|strong="G2064"\w*, sin revived \w and|strong="G1161"\w* \w I|strong="G1473"\w* \w died|strong="G3588"\w*. +\v 10 \w The|strong="G2532"\w* \w commandment|strong="G1785"\w* \w which|strong="G3588"\w* \w was|strong="G3588"\w* \w for|strong="G1519"\w* \w life|strong="G2222"\w*, \w this|strong="G3778"\w* \w I|strong="G1473"\w* \w found|strong="G2147"\w* \w to|strong="G1519"\w* \w be|strong="G2532"\w* \w for|strong="G1519"\w* \w death|strong="G2288"\w*; +\v 11 \w for|strong="G1063"\w* sin, \w finding|strong="G1063"\w* \w occasion|strong="G1223"\w* \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w commandment|strong="G1785"\w*, \w deceived|strong="G1818"\w* \w me|strong="G1473"\w*, \w and|strong="G2532"\w* \w through|strong="G1223"\w* \w it|strong="G2532"\w* killed \w me|strong="G1473"\w*. +\v 12 \w Therefore|strong="G5620"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w* \w indeed|strong="G2532"\w* \w is|strong="G3588"\w* holy, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w commandment|strong="G1785"\w* holy, \w righteous|strong="G1342"\w*, \w and|strong="G2532"\w* \w good|strong="G3588"\w*. +\p +\v 13 \w Did|strong="G1096"\w* \w then|strong="G3767"\w* \w that|strong="G2443"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w good|strong="G1223"\w* \w become|strong="G1096"\w* \w death|strong="G2288"\w* \w to|strong="G2443"\w* \w me|strong="G1473"\w*? \w May|strong="G2443"\w* \w it|strong="G1223"\w* \w never|strong="G3361"\w* \w be|strong="G1096"\w*! \w But|strong="G3361"\w* sin, \w that|strong="G2443"\w* \w it|strong="G1223"\w* \w might|strong="G1785"\w* \w be|strong="G1096"\w* \w shown|strong="G5316"\w* \w to|strong="G2443"\w* \w be|strong="G1096"\w* sin, \w was|strong="G1096"\w* \w producing|strong="G2716"\w* \w death|strong="G2288"\w* \w in|strong="G2596"\w* \w me|strong="G1473"\w* \w through|strong="G1223"\w* \w that|strong="G2443"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w good|strong="G1223"\w*; \w that|strong="G2443"\w* \w through|strong="G1223"\w* \w the|strong="G1223"\w* \w commandment|strong="G1785"\w* sin \w might|strong="G1785"\w* \w become|strong="G1096"\w* exceedingly sinful. +\v 14 \w For|strong="G1063"\w* \w we|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w the|strong="G1161"\w* \w law|strong="G3551"\w* \w is|strong="G1510"\w* \w spiritual|strong="G4152"\w*, \w but|strong="G1161"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* fleshly, \w sold|strong="G4097"\w* \w under|strong="G5259"\w* sin. +\v 15 \w For|strong="G1063"\w* \w I|strong="G3739"\w* don’t \w understand|strong="G1097"\w* \w what|strong="G3739"\w* \w I|strong="G3739"\w* \w am|strong="G2309"\w* \w doing|strong="G4160"\w*. \w For|strong="G1063"\w* \w I|strong="G3739"\w* don’t \w practice|strong="G4238"\w* \w what|strong="G3739"\w* \w I|strong="G3739"\w* \w desire|strong="G2309"\w* \w to|strong="G2309"\w* \w do|strong="G4160"\w*; \w but|strong="G1063"\w* \w what|strong="G3739"\w* \w I|strong="G3739"\w* \w hate|strong="G3404"\w*, \w that|strong="G3739"\w* \w I|strong="G3739"\w* \w do|strong="G4160"\w*. +\v 16 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w what|strong="G3739"\w* \w I|strong="G3739"\w* don’\w t|strong="G3588"\w* \w desire|strong="G2309"\w*, \w that|strong="G3754"\w* \w I|strong="G3739"\w* \w do|strong="G4160"\w*, \w I|strong="G3739"\w* consent \w to|strong="G2309"\w* \w the|strong="G1161"\w* \w law|strong="G3551"\w* \w that|strong="G3754"\w* \w it|strong="G3754"\w* \w is|strong="G3588"\w* \w good|strong="G2570"\w*. +\v 17 \w So|strong="G1161"\w* \w now|strong="G1161"\w* \w it|strong="G1161"\w* \w is|strong="G3588"\w* \w no|strong="G3765"\w* \w more|strong="G3765"\w* \w I|strong="G1473"\w* \w that|strong="G3588"\w* \w do|strong="G2716"\w* \w it|strong="G1161"\w*, \w but|strong="G1161"\w* sin \w which|strong="G3588"\w* \w dwells|strong="G3611"\w* \w in|strong="G1722"\w* \w me|strong="G1473"\w*. +\v 18 \w For|strong="G1063"\w* \w I|strong="G1473"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w in|strong="G1722"\w* \w me|strong="G1473"\w*, \w that|strong="G3754"\w* \w is|strong="G1510"\w*, \w in|strong="G1722"\w* \w my|strong="G1722"\w* \w flesh|strong="G4561"\w*, \w dwells|strong="G3611"\w* \w no|strong="G3756"\w* \w good|strong="G2570"\w* \w thing|strong="G3778"\w*. \w For|strong="G1063"\w* \w desire|strong="G2309"\w* \w is|strong="G1510"\w* \w present|strong="G3873"\w* \w with|strong="G1722"\w* \w me|strong="G1473"\w*, \w but|strong="G1161"\w* \w I|strong="G1473"\w* don’\w t|strong="G3588"\w* find \w it|strong="G3754"\w* \w doing|strong="G2716"\w* \w that|strong="G3754"\w* \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w good|strong="G2570"\w*. +\v 19 \w For|strong="G1063"\w* \w the|strong="G1063"\w* \w good|strong="G3756"\w* \w which|strong="G3739"\w* \w I|strong="G3739"\w* \w desire|strong="G2309"\w*, \w I|strong="G3739"\w* don’t \w do|strong="G4160"\w*; \w but|strong="G1063"\w* \w the|strong="G1063"\w* \w evil|strong="G2556"\w* \w which|strong="G3739"\w* \w I|strong="G3739"\w* don’t \w desire|strong="G2309"\w*, \w that|strong="G3739"\w* \w I|strong="G3739"\w* \w practice|strong="G4238"\w*. +\v 20 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w what|strong="G3739"\w* \w I|strong="G1473"\w* don’\w t|strong="G3588"\w* \w desire|strong="G2309"\w*, \w that|strong="G3739"\w* \w I|strong="G1473"\w* \w do|strong="G4160"\w*, \w it|strong="G1161"\w* \w is|strong="G3588"\w* \w no|strong="G3756"\w* \w more|strong="G3765"\w* \w I|strong="G1473"\w* \w that|strong="G3739"\w* \w do|strong="G4160"\w* \w it|strong="G1161"\w*, \w but|strong="G1161"\w* sin \w which|strong="G3739"\w* \w dwells|strong="G3611"\w* \w in|strong="G1722"\w* \w me|strong="G1473"\w*. +\v 21 \w I|strong="G1473"\w* \w find|strong="G2147"\w* \w then|strong="G3754"\w* \w the|strong="G3588"\w* \w law|strong="G3551"\w* \w that|strong="G3754"\w*, \w while|strong="G3754"\w* \w I|strong="G1473"\w* \w desire|strong="G2309"\w* \w to|strong="G2309"\w* \w do|strong="G4160"\w* \w good|strong="G2570"\w*, \w evil|strong="G2556"\w* \w is|strong="G3588"\w* \w present|strong="G3873"\w*. +\v 22 \w For|strong="G1063"\w* \w I|strong="G1063"\w* \w delight|strong="G4913"\w* \w in|strong="G2596"\w* \w God|strong="G2316"\w*’s \w law|strong="G3551"\w* \w after|strong="G2596"\w* \w the|strong="G2596"\w* \w inward|strong="G2080"\w* person, +\v 23 \w but|strong="G1161"\w* \w I|strong="G1473"\w* see \w a|strong="G2532"\w* \w different|strong="G2087"\w* \w law|strong="G3551"\w* \w in|strong="G1722"\w* \w my|strong="G1722"\w* \w members|strong="G3196"\w*, warring \w against|strong="G1722"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w of|strong="G2532"\w* \w my|strong="G1722"\w* \w mind|strong="G3563"\w*, \w and|strong="G2532"\w* bringing \w me|strong="G1473"\w* \w into|strong="G1722"\w* captivity \w under|strong="G1722"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w of|strong="G2532"\w* sin \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w my|strong="G1722"\w* \w members|strong="G3196"\w*. +\v 24 \w What|strong="G5101"\w* \w a|strong="G1537"\w* \w wretched|strong="G5005"\w* \w man|strong="G3778"\w* \w I|strong="G1473"\w* \w am|strong="G1473"\w*! \w Who|strong="G5101"\w* \w will|strong="G5101"\w* \w deliver|strong="G4506"\w* \w me|strong="G1473"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w body|strong="G4983"\w* \w of|strong="G1537"\w* \w this|strong="G3778"\w* \w death|strong="G2288"\w*? +\v 25 \w I|strong="G1473"\w* \w thank|strong="G5485"\w* \w God|strong="G2316"\w* \w through|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w our|strong="G2316"\w* \w Lord|strong="G2962"\w*! \w So|strong="G3767"\w* \w then|strong="G3767"\w* \w with|strong="G1223"\w* \w the|strong="G1161"\w* \w mind|strong="G3563"\w*, \w I|strong="G1473"\w* \w myself|strong="G1473"\w* \w serve|strong="G1398"\w* \w God|strong="G2316"\w*’\w s|strong="G2962"\w* \w law|strong="G3551"\w*, \w but|strong="G1161"\w* \w with|strong="G1223"\w* \w the|strong="G1161"\w* \w flesh|strong="G4561"\w*, sin’\w s|strong="G2962"\w* \w law|strong="G3551"\w*. +\c 8 +\p +\v 1 \w There|strong="G1722"\w* \w is|strong="G3588"\w* therefore \w now|strong="G3568"\w* \w no|strong="G3762"\w* \w condemnation|strong="G2631"\w* \w to|strong="G1722"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*, \w who|strong="G3588"\w* don’\w t|strong="G3588"\w* walk \w according|strong="G3588"\w* \w to|strong="G1722"\w* \w the|strong="G1722"\w* flesh, \w but|strong="G3762"\w* \w according|strong="G3588"\w* \w to|strong="G1722"\w* \w the|strong="G1722"\w* \w Spirit|strong="G3588"\w*.\f + \fr 8:1 \ft NU omits “who don’t walk according to the flesh, but according to the Spirit”\f* +\v 2 \w For|strong="G1063"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w life|strong="G2222"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w made|strong="G1659"\w* me \w free|strong="G1659"\w* \w from|strong="G2532"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w of|strong="G4151"\w* sin \w and|strong="G2532"\w* \w of|strong="G4151"\w* \w death|strong="G2288"\w*. +\v 3 \w For|strong="G1063"\w* \w what|strong="G3739"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* couldn’\w t|strong="G3588"\w* \w do|strong="G2532"\w*, \w in|strong="G1722"\w* \w that|strong="G3739"\w* \w it|strong="G2532"\w* \w was|strong="G3588"\w* weak \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*, \w God|strong="G2316"\w* \w did|strong="G2532"\w*, \w sending|strong="G3992"\w* \w his|strong="G1438"\w* \w own|strong="G1438"\w* \w Son|strong="G5207"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w likeness|strong="G3667"\w* \w of|strong="G5207"\w* sinful \w flesh|strong="G4561"\w* \w and|strong="G2532"\w* \w for|strong="G1063"\w* sin, \w he|strong="G2532"\w* \w condemned|strong="G2632"\w* sin \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*, +\v 4 \w that|strong="G2443"\w* \w the|strong="G1722"\w* \w ordinance|strong="G1345"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w might|strong="G1473"\w* \w be|strong="G3361"\w* \w fulfilled|strong="G4137"\w* \w in|strong="G1722"\w* \w us|strong="G2249"\w* \w who|strong="G3588"\w* don’\w t|strong="G3588"\w* \w walk|strong="G4043"\w* \w according|strong="G2596"\w* \w to|strong="G2443"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*, \w but|strong="G3361"\w* \w according|strong="G2596"\w* \w to|strong="G2443"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w*. +\v 5 \w For|strong="G1063"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w live|strong="G5426"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1161"\w* \w flesh|strong="G4561"\w* \w set|strong="G5426"\w* \w their|strong="G2596"\w* \w minds|strong="G5426"\w* \w on|strong="G2596"\w* \w the|strong="G1161"\w* \w things|strong="G3588"\w* \w of|strong="G4151"\w* \w the|strong="G1161"\w* \w flesh|strong="G4561"\w*, \w but|strong="G1161"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w live|strong="G5426"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1161"\w* \w Spirit|strong="G4151"\w*, \w the|strong="G1161"\w* \w things|strong="G3588"\w* \w of|strong="G4151"\w* \w the|strong="G1161"\w* \w Spirit|strong="G4151"\w*. +\v 6 \w For|strong="G1063"\w* \w the|strong="G2532"\w* \w mind|strong="G5427"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w* \w is|strong="G3588"\w* \w death|strong="G2288"\w*, \w but|strong="G1161"\w* \w the|strong="G2532"\w* \w mind|strong="G5427"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w* \w is|strong="G3588"\w* \w life|strong="G2222"\w* \w and|strong="G2532"\w* \w peace|strong="G1515"\w*; +\v 7 \w because|strong="G1063"\w* \w the|strong="G1519"\w* \w mind|strong="G5427"\w* \w of|strong="G2316"\w* \w the|strong="G1519"\w* \w flesh|strong="G4561"\w* \w is|strong="G3588"\w* \w hostile|strong="G2189"\w* \w toward|strong="G1519"\w* \w God|strong="G2316"\w*, \w for|strong="G1063"\w* \w it|strong="G1063"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w subject|strong="G5293"\w* \w to|strong="G1519"\w* \w God|strong="G2316"\w*’s \w law|strong="G3551"\w*, \w neither|strong="G3761"\w* \w indeed|strong="G1063"\w* \w can|strong="G1410"\w* \w it|strong="G1063"\w* \w be|strong="G3756"\w*. +\v 8 \w Those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w* \w can|strong="G1410"\w*’\w t|strong="G3588"\w* please \w God|strong="G2316"\w*. +\p +\v 9 \w But|strong="G1161"\w* \w you|strong="G5210"\w* \w are|strong="G1510"\w* \w not|strong="G3756"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w* \w but|strong="G1161"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w*, \w if|strong="G1487"\w* \w it|strong="G1161"\w* \w is|strong="G1510"\w* \w so|strong="G1161"\w* \w that|strong="G1487"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w God|strong="G2316"\w* \w dwells|strong="G3611"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w*. \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w any|strong="G5100"\w* \w man|strong="G5100"\w* doesn’t \w have|strong="G2192"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w Christ|strong="G5547"\w*, \w he|strong="G1161"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w his|strong="G1722"\w*. +\v 10 \w If|strong="G1487"\w* \w Christ|strong="G5547"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w*, \w the|strong="G1722"\w* \w body|strong="G4983"\w* \w is|strong="G3588"\w* \w dead|strong="G3498"\w* \w because|strong="G1223"\w* \w of|strong="G4151"\w* sin, \w but|strong="G1161"\w* \w the|strong="G1722"\w* \w spirit|strong="G4151"\w* \w is|strong="G3588"\w* \w alive|strong="G2222"\w* \w because|strong="G1223"\w* \w of|strong="G4151"\w* \w righteousness|strong="G1343"\w*. +\v 11 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w of|strong="G1537"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w raised|strong="G1453"\w* \w up|strong="G1453"\w* \w Jesus|strong="G2424"\w* \w from|strong="G1537"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w* \w dwells|strong="G3611"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w*, \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w raised|strong="G1453"\w* \w up|strong="G1453"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w from|strong="G1537"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w* \w will|strong="G2532"\w* \w also|strong="G2532"\w* \w give|strong="G2227"\w* \w life|strong="G2227"\w* \w to|strong="G2532"\w* \w your|strong="G1223"\w* \w mortal|strong="G2349"\w* \w bodies|strong="G4983"\w* \w through|strong="G1223"\w* \w his|strong="G1223"\w* \w Spirit|strong="G4151"\w* \w who|strong="G3588"\w* \w dwells|strong="G3611"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w*. +\p +\v 12 \w So|strong="G3767"\w* \w then|strong="G3767"\w*, brothers, \w we|strong="G1510"\w* \w are|strong="G1510"\w* \w debtors|strong="G3781"\w*, \w not|strong="G3756"\w* \w to|strong="G2596"\w* \w the|strong="G2596"\w* \w flesh|strong="G4561"\w*, \w to|strong="G2596"\w* \w live|strong="G2198"\w* \w after|strong="G2596"\w* \w the|strong="G2596"\w* \w flesh|strong="G4561"\w*. +\v 13 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w you|strong="G1487"\w* \w live|strong="G2198"\w* \w after|strong="G2596"\w* \w the|strong="G1161"\w* \w flesh|strong="G4561"\w*, \w you|strong="G1487"\w* \w must|strong="G3195"\w* \w die|strong="G2289"\w*; \w but|strong="G1161"\w* \w if|strong="G1487"\w* \w by|strong="G2596"\w* \w the|strong="G1161"\w* \w Spirit|strong="G4151"\w* \w you|strong="G1487"\w* \w put|strong="G2289"\w* \w to|strong="G2596"\w* \w death|strong="G2289"\w* \w the|strong="G1161"\w* \w deeds|strong="G4234"\w* \w of|strong="G4151"\w* \w the|strong="G1161"\w* \w body|strong="G4983"\w*, \w you|strong="G1487"\w* \w will|strong="G3195"\w* \w live|strong="G2198"\w*. +\v 14 \w For|strong="G1063"\w* \w as|strong="G3745"\w* \w many|strong="G3745"\w* \w as|strong="G3745"\w* \w are|strong="G1510"\w* led \w by|strong="G1063"\w* \w the|strong="G1063"\w* \w Spirit|strong="G4151"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*, \w these|strong="G3778"\w* \w are|strong="G1510"\w* \w children|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*. +\v 15 \w For|strong="G1063"\w* \w you|strong="G3739"\w* didn’\w t|strong="G3588"\w* \w receive|strong="G2983"\w* \w the|strong="G1722"\w* \w spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w bondage|strong="G1397"\w* \w again|strong="G3825"\w* \w to|strong="G1519"\w* \w fear|strong="G5401"\w*, \w but|strong="G1063"\w* \w you|strong="G3739"\w* \w received|strong="G2983"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w adoption|strong="G5206"\w*, \w by|strong="G1722"\w* \w whom|strong="G3739"\w* \w we|strong="G3739"\w* \w cry|strong="G2896"\w*, “Abba!\f + \fr 8:15 \ft Abba is an Aramaic word for “Father” or “Daddy”, which can be used affectionately and respectfully in prayer to our Father in heaven.\f* \w Father|strong="G3962"\w*!” +\p +\v 16 \w The|strong="G3588"\w* \w Spirit|strong="G4151"\w* himself \w testifies|strong="G4828"\w* \w with|strong="G2316"\w* \w our|strong="G2316"\w* \w spirit|strong="G4151"\w* \w that|strong="G3754"\w* \w we|strong="G2249"\w* \w are|strong="G1510"\w* \w children|strong="G5043"\w* \w of|strong="G4151"\w* \w God|strong="G2316"\w*; +\v 17 \w and|strong="G2532"\w* \w if|strong="G1487"\w* \w children|strong="G5043"\w*, \w then|strong="G2532"\w* \w heirs|strong="G2818"\w*—\w heirs|strong="G2818"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* joint \w heirs|strong="G2818"\w* \w with|strong="G2532"\w* \w Christ|strong="G5547"\w*, \w if|strong="G1487"\w* \w indeed|strong="G2532"\w* \w we|strong="G2532"\w* \w suffer|strong="G4841"\w* \w with|strong="G2532"\w* \w him|strong="G2532"\w*, \w that|strong="G2443"\w* \w we|strong="G2532"\w* \w may|strong="G2532"\w* \w also|strong="G2532"\w* \w be|strong="G2532"\w* \w glorified|strong="G4888"\w* \w with|strong="G2532"\w* \w him|strong="G2532"\w*. +\p +\v 18 \w For|strong="G1063"\w* \w I|strong="G1473"\w* \w consider|strong="G3049"\w* \w that|strong="G3754"\w* \w the|strong="G1519"\w* \w sufferings|strong="G3804"\w* \w of|strong="G1391"\w* \w this|strong="G3588"\w* \w present|strong="G3568"\w* \w time|strong="G2540"\w* \w are|strong="G3588"\w* \w not|strong="G3756"\w* worthy \w to|strong="G1519"\w* \w be|strong="G3756"\w* compared \w with|strong="G4314"\w* \w the|strong="G1519"\w* \w glory|strong="G1391"\w* \w which|strong="G3588"\w* \w will|strong="G3195"\w* \w be|strong="G3756"\w* revealed \w toward|strong="G1519"\w* \w us|strong="G1519"\w*. +\v 19 \w For|strong="G1063"\w* \w the|strong="G3588"\w* \w creation|strong="G2937"\w* waits \w with|strong="G2316"\w* eager expectation \w for|strong="G1063"\w* \w the|strong="G3588"\w* \w children|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w* \w to|strong="G2316"\w* \w be|strong="G2316"\w* revealed. +\v 20 \w For|strong="G1063"\w* \w the|strong="G1909"\w* \w creation|strong="G2937"\w* \w was|strong="G3588"\w* \w subjected|strong="G5293"\w* \w to|strong="G1909"\w* \w vanity|strong="G3153"\w*, \w not|strong="G3756"\w* \w of|strong="G1223"\w* \w its|strong="G1223"\w* own will, \w but|strong="G1063"\w* \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w subjected|strong="G5293"\w* \w it|strong="G1063"\w*, \w in|strong="G1909"\w* \w hope|strong="G1680"\w* +\v 21 \w that|strong="G3588"\w* \w the|strong="G2532"\w* \w creation|strong="G2937"\w* itself \w also|strong="G2532"\w* \w will|strong="G2316"\w* \w be|strong="G2532"\w* \w delivered|strong="G1659"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w bondage|strong="G1397"\w* \w of|strong="G2316"\w* decay \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w liberty|strong="G1657"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w children|strong="G5043"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\v 22 \w For|strong="G1063"\w* \w we|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w whole|strong="G3956"\w* \w creation|strong="G2937"\w* \w groans|strong="G4959"\w* \w and|strong="G2532"\w* travails \w in|strong="G2532"\w* pain \w together|strong="G4944"\w* \w until|strong="G2532"\w* \w now|strong="G3568"\w*. +\v 23 \w Not|strong="G3756"\w* \w only|strong="G3440"\w* \w so|strong="G2532"\w*, \w but|strong="G1161"\w* \w ourselves|strong="G1438"\w* \w also|strong="G2532"\w*, \w who|strong="G3588"\w* \w have|strong="G2192"\w* \w the|strong="G1722"\w* \w first|strong="G3588"\w* fruits \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w*, \w even|strong="G2532"\w* \w we|strong="G2249"\w* \w ourselves|strong="G1438"\w* \w groan|strong="G4727"\w* \w within|strong="G1722"\w* \w ourselves|strong="G1438"\w*, waiting \w for|strong="G1161"\w* \w adoption|strong="G5206"\w*, \w the|strong="G1722"\w* redemption \w of|strong="G4151"\w* \w our|strong="G2532"\w* \w body|strong="G4983"\w*. +\v 24 \w For|strong="G1063"\w* \w we|strong="G3739"\w* \w were|strong="G1510"\w* \w saved|strong="G4982"\w* \w in|strong="G2532"\w* \w hope|strong="G1680"\w*, \w but|strong="G1161"\w* \w hope|strong="G1680"\w* \w that|strong="G3739"\w* \w is|strong="G1510"\w* seen \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w hope|strong="G1680"\w*. \w For|strong="G1063"\w* \w who|strong="G3739"\w* \w hopes|strong="G1679"\w* \w for|strong="G1063"\w* \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* sees? +\v 25 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w we|strong="G3739"\w* \w hope|strong="G1679"\w* \w for|strong="G1223"\w* \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w we|strong="G3739"\w* don’t see, \w we|strong="G3739"\w* \w wait|strong="G5281"\w* \w for|strong="G1223"\w* \w it|strong="G1161"\w* \w with|strong="G1223"\w* \w patience|strong="G5281"\w*. +\p +\v 26 \w In|strong="G2532"\w* \w the|strong="G2532"\w* \w same|strong="G5615"\w* \w way|strong="G5615"\w*, \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w* \w also|strong="G2532"\w* \w helps|strong="G4878"\w* \w our|strong="G2532"\w* weaknesses, \w for|strong="G1063"\w* \w we|strong="G2249"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w how|strong="G5101"\w* \w to|strong="G2532"\w* \w pray|strong="G4336"\w* \w as|strong="G1161"\w* \w we|strong="G2249"\w* \w ought|strong="G1163"\w*. \w But|strong="G1161"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w* himself makes \w intercession|strong="G5241"\w* \w for|strong="G1063"\w* \w us|strong="G2249"\w* \w with|strong="G2532"\w* \w groanings|strong="G4726"\w* \w which|strong="G3588"\w* \w can|strong="G1063"\w*’\w t|strong="G3588"\w* \w be|strong="G2532"\w* uttered. +\v 27 \w He|strong="G1161"\w* \w who|strong="G5101"\w* \w searches|strong="G2045"\w* \w the|strong="G1161"\w* \w hearts|strong="G2588"\w* \w knows|strong="G1492"\w* \w what|strong="G5101"\w* \w is|strong="G3588"\w* \w on|strong="G5228"\w* \w the|strong="G1161"\w* \w Spirit|strong="G4151"\w*’s \w mind|strong="G5427"\w*, \w because|strong="G3754"\w* \w he|strong="G1161"\w* makes \w intercession|strong="G1793"\w* \w for|strong="G3754"\w* \w the|strong="G1161"\w* saints \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w God|strong="G2316"\w*. +\p +\v 28 \w We|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w work|strong="G4903"\w* \w together|strong="G4903"\w* \w for|strong="G3754"\w* \w good|strong="G3956"\w* \w for|strong="G3754"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* love \w God|strong="G2316"\w*, \w for|strong="G3754"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w called|strong="G2822"\w* \w according|strong="G2596"\w* \w to|strong="G1519"\w* \w his|strong="G3956"\w* \w purpose|strong="G4286"\w*. +\v 29 \w For|strong="G3754"\w* \w whom|strong="G3739"\w* \w he|strong="G2532"\w* \w foreknew|strong="G4267"\w*, \w he|strong="G2532"\w* \w also|strong="G2532"\w* \w predestined|strong="G4309"\w* \w to|strong="G1519"\w* \w be|strong="G1510"\w* \w conformed|strong="G4832"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w image|strong="G1504"\w* \w of|strong="G5207"\w* \w his|strong="G1519"\w* \w Son|strong="G5207"\w*, \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w be|strong="G1510"\w* \w the|strong="G1722"\w* \w firstborn|strong="G4416"\w* \w among|strong="G1722"\w* \w many|strong="G4183"\w* brothers.\f + \fr 8:29 \ft The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”\f* +\v 30 \w Whom|strong="G3739"\w* \w he|strong="G2532"\w* \w predestined|strong="G4309"\w*, \w those|strong="G3778"\w* \w he|strong="G2532"\w* \w also|strong="G2532"\w* \w called|strong="G2564"\w*. \w Whom|strong="G3739"\w* \w he|strong="G2532"\w* \w called|strong="G2564"\w*, \w those|strong="G3778"\w* \w he|strong="G2532"\w* \w also|strong="G2532"\w* \w justified|strong="G1344"\w*. \w Whom|strong="G3739"\w* \w he|strong="G2532"\w* \w justified|strong="G1344"\w*, \w those|strong="G3778"\w* \w he|strong="G2532"\w* \w also|strong="G2532"\w* \w glorified|strong="G1392"\w*. +\p +\v 31 \w What|strong="G5101"\w* \w then|strong="G3767"\w* \w shall|strong="G2316"\w* \w we|strong="G2249"\w* \w say|strong="G3004"\w* \w about|strong="G2596"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*? \w If|strong="G1487"\w* \w God|strong="G2316"\w* \w is|strong="G3588"\w* \w for|strong="G5228"\w* \w us|strong="G3004"\w*, \w who|strong="G5101"\w* \w can|strong="G3004"\w* \w be|strong="G2316"\w* \w against|strong="G2596"\w* \w us|strong="G3004"\w*? +\v 32 \w He|strong="G2532"\w* \w who|strong="G3739"\w* didn’\w t|strong="G3588"\w* \w spare|strong="G5339"\w* \w his|strong="G3956"\w* \w own|strong="G2398"\w* \w Son|strong="G5207"\w*, \w but|strong="G2532"\w* \w delivered|strong="G3860"\w* \w him|strong="G3588"\w* \w up|strong="G3860"\w* \w for|strong="G5228"\w* \w us|strong="G5483"\w* \w all|strong="G3956"\w*, \w how|strong="G4459"\w* \w would|strong="G2532"\w* \w he|strong="G2532"\w* \w not|strong="G3756"\w* \w also|strong="G2532"\w* \w with|strong="G4862"\w* \w him|strong="G3588"\w* \w freely|strong="G5483"\w* \w give|strong="G5483"\w* \w us|strong="G5483"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*? +\v 33 \w Who|strong="G5101"\w* \w could|strong="G3588"\w* \w bring|strong="G1458"\w* \w a|strong="G2596"\w* \w charge|strong="G1458"\w* \w against|strong="G2596"\w* \w God|strong="G2316"\w*’s \w chosen|strong="G1588"\w* ones? \w It|strong="G5101"\w* \w is|strong="G3588"\w* \w God|strong="G2316"\w* \w who|strong="G5101"\w* \w justifies|strong="G1344"\w*. +\v 34 \w Who|strong="G3739"\w* \w is|strong="G1510"\w* \w he|strong="G2532"\w* \w who|strong="G3739"\w* \w condemns|strong="G2632"\w*? \w It|strong="G2532"\w* \w is|strong="G1510"\w* \w Christ|strong="G5547"\w* \w who|strong="G3739"\w* \w died|strong="G3588"\w*, \w yes|strong="G1161"\w* \w rather|strong="G3123"\w*, \w who|strong="G3739"\w* \w was|strong="G1510"\w* \w raised|strong="G1453"\w* \w from|strong="G2532"\w* \w the|strong="G1722"\w* dead, \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w who|strong="G3739"\w* \w also|strong="G2532"\w* makes \w intercession|strong="G1793"\w* \w for|strong="G5228"\w* \w us|strong="G2249"\w*. +\p +\v 35 \w Who|strong="G5101"\w* \w shall|strong="G5101"\w* \w separate|strong="G5563"\w* \w us|strong="G2249"\w* \w from|strong="G3588"\w* \w the|strong="G3588"\w* love \w of|strong="G2228"\w* \w Christ|strong="G5547"\w*? \w Could|strong="G3588"\w* oppression, \w or|strong="G2228"\w* \w anguish|strong="G2347"\w*, \w or|strong="G2228"\w* \w persecution|strong="G1375"\w*, \w or|strong="G2228"\w* \w famine|strong="G3042"\w*, \w or|strong="G2228"\w* \w nakedness|strong="G1132"\w*, \w or|strong="G2228"\w* \w peril|strong="G2794"\w*, \w or|strong="G2228"\w* \w sword|strong="G3162"\w*? +\v 36 \w Even|strong="G2531"\w* \w as|strong="G5613"\w* \w it|strong="G3754"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, +\q1 “\w For|strong="G3754"\w* \w your|strong="G3650"\w* \w sake|strong="G1752"\w* \w we|strong="G3754"\w* \w are|strong="G3588"\w* \w killed|strong="G2289"\w* \w all|strong="G3650"\w* \w day|strong="G2250"\w* \w long|strong="G2250"\w*. +\q2 \w We|strong="G3754"\w* \w were|strong="G3588"\w* \w accounted|strong="G3049"\w* \w as|strong="G5613"\w* \w sheep|strong="G4263"\w* \w for|strong="G3754"\w* \w the|strong="G3588"\w* \w slaughter|strong="G4967"\w*.”\x + \xo 8:36 \xt Psalms 44:22\x* +\m +\v 37 \w No|strong="G3956"\w*, \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w* \w we|strong="G2249"\w* \w are|strong="G3588"\w* \w more|strong="G3956"\w* than \w conquerors|strong="G5245"\w* \w through|strong="G1223"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* loved \w us|strong="G2249"\w*. +\v 38 \w For|strong="G1063"\w* \w I|strong="G1063"\w* \w am|strong="G3195"\w* \w persuaded|strong="G3982"\w* \w that|strong="G3754"\w* \w neither|strong="G3777"\w* \w death|strong="G2288"\w*, \w nor|strong="G3777"\w* \w life|strong="G2222"\w*, \w nor|strong="G3777"\w* angels, \w nor|strong="G3777"\w* principalities, \w nor|strong="G3777"\w* \w things|strong="G3195"\w* \w present|strong="G1764"\w*, \w nor|strong="G3777"\w* \w things|strong="G3195"\w* \w to|strong="G3195"\w* \w come|strong="G3195"\w*, \w nor|strong="G3777"\w* \w powers|strong="G1411"\w*, +\v 39 \w nor|strong="G3777"\w* \w height|strong="G5313"\w*, \w nor|strong="G3777"\w* depth, \w nor|strong="G3777"\w* \w any|strong="G5100"\w* \w other|strong="G2087"\w* \w created|strong="G2937"\w* \w thing|strong="G5100"\w* \w will|strong="G2316"\w* \w be|strong="G1410"\w* \w able|strong="G1410"\w* \w to|strong="G1410"\w* \w separate|strong="G5563"\w* \w us|strong="G2249"\w* \w from|strong="G3588"\w* \w God|strong="G2316"\w*’\w s|strong="G2962"\w* love \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w*. +\c 9 +\p +\v 1 \w I|strong="G1473"\w* \w tell|strong="G3004"\w* \w the|strong="G1722"\w* truth \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*. \w I|strong="G1473"\w* \w am|strong="G1473"\w* \w not|strong="G3756"\w* \w lying|strong="G5574"\w*, \w my|strong="G1722"\w* \w conscience|strong="G4893"\w* testifying \w with|strong="G1722"\w* \w me|strong="G1473"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* +\v 2 \w that|strong="G3754"\w* \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w great|strong="G3173"\w* \w sorrow|strong="G3077"\w* \w and|strong="G2532"\w* unceasing \w pain|strong="G3077"\w* \w in|strong="G2532"\w* \w my|strong="G1473"\w* \w heart|strong="G2588"\w*. +\v 3 \w For|strong="G1063"\w* \w I|strong="G1473"\w* \w could|strong="G3588"\w* \w wish|strong="G2172"\w* \w that|strong="G3588"\w* \w I|strong="G1473"\w* \w myself|strong="G1473"\w* \w were|strong="G1510"\w* accursed \w from|strong="G2596"\w* \w Christ|strong="G5547"\w* \w for|strong="G1063"\w* \w my|strong="G1473"\w* brothers’ \w sake|strong="G5228"\w*, \w my|strong="G1473"\w* \w relatives|strong="G4773"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G2596"\w* \w flesh|strong="G4561"\w* +\v 4 \w who|strong="G3739"\w* \w are|strong="G1510"\w* \w Israelites|strong="G2475"\w*; \w whose|strong="G3739"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w adoption|strong="G5206"\w*, \w the|strong="G2532"\w* \w glory|strong="G1391"\w*, \w the|strong="G2532"\w* \w covenants|strong="G1242"\w*, \w the|strong="G2532"\w* \w giving|strong="G3548"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w law|strong="G3548"\w*, \w the|strong="G2532"\w* \w service|strong="G2999"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w promises|strong="G1860"\w*; +\v 5 \w of|strong="G1537"\w* \w whom|strong="G3739"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* \w fathers|strong="G3962"\w*, \w and|strong="G2532"\w* \w from|strong="G1537"\w* \w whom|strong="G3739"\w* \w is|strong="G1510"\w* \w Christ|strong="G5547"\w* \w as|strong="G1519"\w* \w concerning|strong="G1519"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w*, \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w over|strong="G1909"\w* \w all|strong="G3956"\w*, \w God|strong="G2316"\w*, \w blessed|strong="G2128"\w* \w forever|strong="G1519"\w*. Amen. +\p +\v 6 \w But|strong="G1161"\w* \w it|strong="G3754"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w as|strong="G1161"\w* \w though|strong="G1161"\w* \w the|strong="G3956"\w* \w word|strong="G3056"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w come|strong="G3756"\w* \w to|strong="G3756"\w* \w nothing|strong="G3756"\w*. \w For|strong="G1063"\w* \w they|strong="G1161"\w* \w are|strong="G3588"\w* \w not|strong="G3756"\w* \w all|strong="G3956"\w* \w Israel|strong="G2474"\w* \w that|strong="G3754"\w* \w are|strong="G3588"\w* \w of|strong="G1537"\w* \w Israel|strong="G2474"\w*. +\v 7 \w Neither|strong="G3761"\w*, \w because|strong="G3754"\w* \w they|strong="G3754"\w* \w are|strong="G1510"\w* Abraham’s offspring, \w are|strong="G1510"\w* \w they|strong="G3754"\w* \w all|strong="G3956"\w* \w children|strong="G5043"\w*. \w But|strong="G3761"\w*, “\w your|strong="G3956"\w* offspring \w will|strong="G1510"\w* \w be|strong="G1510"\w* accounted \w as|strong="G1722"\w* \w from|strong="G1722"\w* \w Isaac|strong="G2464"\w*.”\x + \xo 9:7 \xt Genesis 21:12\x* +\v 8 \w That|strong="G3588"\w* \w is|strong="G1510"\w*, \w it|strong="G3778"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w the|strong="G1519"\w* \w children|strong="G5043"\w* \w of|strong="G2316"\w* \w the|strong="G1519"\w* \w flesh|strong="G4561"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w children|strong="G5043"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w but|strong="G2316"\w* \w the|strong="G1519"\w* \w children|strong="G5043"\w* \w of|strong="G2316"\w* \w the|strong="G1519"\w* \w promise|strong="G1860"\w* \w are|strong="G1510"\w* \w counted|strong="G3049"\w* \w as|strong="G1519"\w* heirs. +\v 9 \w For|strong="G1063"\w* \w this|strong="G3778"\w* \w is|strong="G1510"\w* \w a|strong="G2532"\w* \w word|strong="G3056"\w* \w of|strong="G5207"\w* \w promise|strong="G1860"\w*: “\w At|strong="G2596"\w* \w the|strong="G2532"\w* appointed \w time|strong="G2540"\w* \w I|strong="G2532"\w* \w will|strong="G1510"\w* \w come|strong="G2064"\w*, \w and|strong="G2532"\w* \w Sarah|strong="G4564"\w* \w will|strong="G1510"\w* \w have|strong="G2532"\w* \w a|strong="G2532"\w* \w son|strong="G5207"\w*.”\x + \xo 9:9 \xt Genesis 18:10,14\x* +\v 10 \w Not|strong="G3756"\w* \w only|strong="G3440"\w* \w so|strong="G2532"\w*, \w but|strong="G1161"\w* \w Rebekah|strong="G4479"\w* \w also|strong="G2532"\w* \w conceived|strong="G2845"\w* \w by|strong="G1537"\w* \w one|strong="G1520"\w*, \w by|strong="G1537"\w* \w our|strong="G2532"\w* \w father|strong="G3962"\w* \w Isaac|strong="G2464"\w*. +\v 11 \w For|strong="G1063"\w* \w being|strong="G2443"\w* \w not|strong="G3756"\w* \w yet|strong="G1063"\w* \w born|strong="G1080"\w*, \w neither|strong="G3756"\w* \w having|strong="G3366"\w* \w done|strong="G4238"\w* \w anything|strong="G5100"\w* \w good|strong="G3756"\w* \w or|strong="G2228"\w* \w bad|strong="G5337"\w*, \w that|strong="G2443"\w* \w the|strong="G1537"\w* \w purpose|strong="G4286"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w* \w according|strong="G2596"\w* \w to|strong="G2443"\w* \w election|strong="G1589"\w* \w might|strong="G2316"\w* \w stand|strong="G3306"\w*, \w not|strong="G3756"\w* \w of|strong="G1537"\w* \w works|strong="G2041"\w*, \w but|strong="G1063"\w* \w of|strong="G1537"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w calls|strong="G2564"\w*,\f + \fr 9:11 \ft NU puts the phrase “not of works, but of him who calls” at the beginning of verse 12 instead of the end of verse 11.\f* +\v 12 \w it|strong="G3754"\w* \w was|strong="G3588"\w* \w said|strong="G2046"\w* \w to|strong="G1398"\w* \w her|strong="G3754"\w*, “\w The|strong="G3588"\w* elder \w will|strong="G3748"\w* \w serve|strong="G1398"\w* \w the|strong="G3588"\w* \w younger|strong="G1640"\w*.”\x + \xo 9:12 \xt Genesis 25:23\x* +\v 13 \w Even|strong="G2531"\w* \w as|strong="G2531"\w* \w it|strong="G1161"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, “\w Jacob|strong="G2384"\w* \w I|strong="G1161"\w* loved, \w but|strong="G1161"\w* \w Esau|strong="G2269"\w* \w I|strong="G1161"\w* \w hated|strong="G3404"\w*.”\x + \xo 9:13 \xt Malachi 1:2-3\x* +\p +\v 14 \w What|strong="G5101"\w* \w shall|strong="G2316"\w* \w we|strong="G3767"\w* \w say|strong="G3004"\w* \w then|strong="G3767"\w*? \w Is|strong="G3588"\w* \w there|strong="G1096"\w* unrighteousness \w with|strong="G3844"\w* \w God|strong="G2316"\w*? \w May|strong="G2316"\w* \w it|strong="G5101"\w* \w never|strong="G3361"\w* \w be|strong="G1096"\w*! +\v 15 \w For|strong="G1063"\w* \w he|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w Moses|strong="G3475"\w*, “\w I|strong="G3739"\w* \w will|strong="G2532"\w* \w have|strong="G2532"\w* \w mercy|strong="G1653"\w* \w on|strong="G1653"\w* \w whom|strong="G3739"\w* \w I|strong="G3739"\w* \w have|strong="G2532"\w* \w mercy|strong="G1653"\w*, \w and|strong="G2532"\w* \w I|strong="G3739"\w* \w will|strong="G2532"\w* \w have|strong="G2532"\w* \w compassion|strong="G3627"\w* \w on|strong="G1653"\w* \w whom|strong="G3739"\w* \w I|strong="G3739"\w* \w have|strong="G2532"\w* \w compassion|strong="G3627"\w*.”\x + \xo 9:15 \xt Exodus 33:19\x* +\v 16 \w So|strong="G3767"\w* \w then|strong="G3767"\w* \w it|strong="G3588"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w of|strong="G2316"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w wills|strong="G2309"\w*, \w nor|strong="G3761"\w* \w of|strong="G2316"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w runs|strong="G5143"\w*, \w but|strong="G3767"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w who|strong="G3588"\w* \w has|strong="G2316"\w* \w mercy|strong="G1653"\w*. +\v 17 \w For|strong="G1063"\w* \w the|strong="G1722"\w* \w Scripture|strong="G1124"\w* \w says|strong="G3004"\w* \w to|strong="G1519"\w* \w Pharaoh|strong="G5328"\w*, “\w For|strong="G1063"\w* \w this|strong="G3778"\w* \w very|strong="G2532"\w* purpose \w I|strong="G1473"\w* caused \w you|strong="G4771"\w* \w to|strong="G1519"\w* \w be|strong="G2532"\w* \w raised|strong="G1825"\w* \w up|strong="G1519"\w*, \w that|strong="G3754"\w* \w I|strong="G1473"\w* \w might|strong="G2532"\w* \w show|strong="G1731"\w* \w in|strong="G1722"\w* \w you|strong="G4771"\w* \w my|strong="G1722"\w* \w power|strong="G1411"\w*, \w and|strong="G2532"\w* \w that|strong="G3754"\w* \w my|strong="G1722"\w* \w name|strong="G3686"\w* \w might|strong="G2532"\w* \w be|strong="G2532"\w* \w proclaimed|strong="G1229"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w*.”\x + \xo 9:17 \xt Exodus 9:16\x* +\v 18 \w So|strong="G3767"\w* \w then|strong="G3767"\w*, \w he|strong="G1161"\w* \w has|strong="G3739"\w* \w mercy|strong="G1653"\w* \w on|strong="G1653"\w* \w whom|strong="G3739"\w* \w he|strong="G1161"\w* \w desires|strong="G2309"\w*, \w and|strong="G1161"\w* \w he|strong="G1161"\w* \w hardens|strong="G4645"\w* \w whom|strong="G3739"\w* \w he|strong="G1161"\w* \w desires|strong="G2309"\w*. +\p +\v 19 \w You|strong="G3004"\w* \w will|strong="G5101"\w* \w say|strong="G3004"\w* \w then|strong="G3767"\w* \w to|strong="G3004"\w* \w me|strong="G1473"\w*, “\w Why|strong="G5101"\w* \w does|strong="G5101"\w* \w he|strong="G3588"\w* \w still|strong="G2089"\w* \w find|strong="G3201"\w* \w fault|strong="G3201"\w*? \w For|strong="G1063"\w* \w who|strong="G5101"\w* withstands \w his|strong="G3588"\w* \w will|strong="G5101"\w*?” +\v 20 \w But|strong="G3361"\w* \w indeed|strong="G3304"\w*, \w O|strong="G5599"\w* \w man|strong="G3361"\w*, \w who|strong="G5101"\w* \w are|strong="G1510"\w* \w you|strong="G4771"\w* \w to|strong="G3004"\w* \w reply|strong="G3004"\w* \w against|strong="G3779"\w* \w God|strong="G2316"\w*? \w Will|strong="G2316"\w* \w the|strong="G3588"\w* \w thing|strong="G5101"\w* \w formed|strong="G4160"\w* \w ask|strong="G3004"\w* \w him|strong="G3588"\w* \w who|strong="G5101"\w* \w formed|strong="G4160"\w* \w it|strong="G4160"\w*, “\w Why|strong="G5101"\w* \w did|strong="G4160"\w* \w you|strong="G4771"\w* \w make|strong="G4160"\w* \w me|strong="G1473"\w* \w like|strong="G3779"\w* \w this|strong="G3588"\w*?”\x + \xo 9:20 \xt Isaiah 29:16; 45:9\x* +\v 21 \w Or|strong="G2228"\w* hasn’\w t|strong="G3588"\w* \w the|strong="G1519"\w* \w potter|strong="G2763"\w* \w a|strong="G2192"\w* \w right|strong="G1849"\w* \w over|strong="G1537"\w* \w the|strong="G1519"\w* \w clay|strong="G4081"\w*, \w from|strong="G1537"\w* \w the|strong="G1519"\w* \w same|strong="G3739"\w* \w lump|strong="G5445"\w* \w to|strong="G1519"\w* \w make|strong="G4160"\w* \w one|strong="G3739"\w* \w part|strong="G1161"\w* \w a|strong="G2192"\w* \w vessel|strong="G4632"\w* \w for|strong="G1519"\w* \w honor|strong="G5092"\w*, \w and|strong="G1161"\w* \w another|strong="G3739"\w* \w for|strong="G1519"\w* dishonor? +\v 22 \w What|strong="G3588"\w* \w if|strong="G1487"\w* \w God|strong="G2316"\w*, \w willing|strong="G2309"\w* \w to|strong="G1519"\w* \w show|strong="G1731"\w* \w his|strong="G1519"\w* \w wrath|strong="G3709"\w* \w and|strong="G2532"\w* \w to|strong="G1519"\w* \w make|strong="G1107"\w* \w his|strong="G1519"\w* \w power|strong="G1415"\w* \w known|strong="G1107"\w*, \w endured|strong="G5342"\w* \w with|strong="G1722"\w* \w much|strong="G4183"\w* \w patience|strong="G3115"\w* \w vessels|strong="G4632"\w* \w of|strong="G2316"\w* \w wrath|strong="G3709"\w* \w prepared|strong="G2675"\w* \w for|strong="G1519"\w* destruction, +\v 23 \w and|strong="G2532"\w* \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w make|strong="G1107"\w* \w known|strong="G1107"\w* \w the|strong="G2532"\w* \w riches|strong="G4149"\w* \w of|strong="G2532"\w* \w his|strong="G1519"\w* \w glory|strong="G1391"\w* \w on|strong="G1909"\w* \w vessels|strong="G4632"\w* \w of|strong="G2532"\w* \w mercy|strong="G1656"\w*, \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w prepared|strong="G4282"\w* \w beforehand|strong="G4282"\w* \w for|strong="G1519"\w* \w glory|strong="G1391"\w*— +\v 24 \w us|strong="G2249"\w*, \w whom|strong="G3739"\w* \w he|strong="G2532"\w* \w also|strong="G2532"\w* \w called|strong="G2564"\w*, \w not|strong="G3756"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w only|strong="G3440"\w*, \w but|strong="G2532"\w* \w also|strong="G2532"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w*? +\v 25 \w As|strong="G5613"\w* \w he|strong="G2532"\w* \w says|strong="G3004"\w* \w also|strong="G2532"\w* \w in|strong="G1722"\w* \w Hosea|strong="G5617"\w*, +\q1 “\w I|strong="G1473"\w* \w will|strong="G2532"\w* \w call|strong="G2564"\w* \w them|strong="G3588"\w* ‘\w my|strong="G1722"\w* \w people|strong="G2992"\w*,’ \w which|strong="G3588"\w* \w were|strong="G3588"\w* \w not|strong="G3756"\w* \w my|strong="G1722"\w* \w people|strong="G2992"\w*; +\q2 \w and|strong="G2532"\w* \w her|strong="G3588"\w* ‘beloved,’ \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w not|strong="G3756"\w* beloved.”\x + \xo 9:25 \xt Hosea 2:23\x* +\q1 +\v 26 “\w It|strong="G2532"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w that|strong="G3739"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w place|strong="G5117"\w* \w where|strong="G3757"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w said|strong="G2046"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, ‘\w You|strong="G5210"\w* \w are|strong="G1510"\w* \w not|strong="G3756"\w* \w my|strong="G1722"\w* \w people|strong="G2992"\w*,’ +\q2 \w there|strong="G1563"\w* \w they|strong="G2532"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w called|strong="G2564"\w* ‘\w children|strong="G5207"\w* \w of|strong="G5207"\w* \w the|strong="G1722"\w* \w living|strong="G2198"\w* \w God|strong="G2316"\w*.’”\x + \xo 9:26 \xt Hosea 1:10 \x* +\p +\v 27 \w Isaiah|strong="G2268"\w* \w cries|strong="G2896"\w* \w concerning|strong="G5228"\w* \w Israel|strong="G2474"\w*, +\q1 “\w If|strong="G1437"\w* \w the|strong="G1161"\w* number \w of|strong="G5207"\w* \w the|strong="G1161"\w* \w children|strong="G5207"\w* \w of|strong="G5207"\w* \w Israel|strong="G2474"\w* \w are|strong="G1510"\w* \w as|strong="G5613"\w* \w the|strong="G1161"\w* sand \w of|strong="G5207"\w* \w the|strong="G1161"\w* \w sea|strong="G2281"\w*, +\q2 \w it|strong="G1161"\w* \w is|strong="G1510"\w* \w the|strong="G1161"\w* \w remnant|strong="G3005"\w* \w who|strong="G3588"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w saved|strong="G4982"\w*; +\q1 +\v 28 \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w will|strong="G2532"\w* \w finish|strong="G4931"\w* \w the|strong="G2532"\w* \w work|strong="G3056"\w* \w and|strong="G2532"\w* \w cut|strong="G2532"\w* \w it|strong="G2532"\w* \w short|strong="G4932"\w* \w in|strong="G1909"\w* righteousness, +\q2 \w because|strong="G1063"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w will|strong="G2532"\w* \w make|strong="G4160"\w* \w a|strong="G2532"\w* \w short|strong="G4932"\w* \w work|strong="G3056"\w* \w upon|strong="G1909"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*.”\x + \xo 9:28 \xt Isaiah 10:22-23\x* +\p +\v 29 \w As|strong="G5613"\w* \w Isaiah|strong="G2268"\w* \w has|strong="G2962"\w* \w said|strong="G2532"\w* \w before|strong="G4302"\w*, +\q1 “\w Unless|strong="G1487"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w of|strong="G2532"\w* Armies\f + \fr 9:29 \ft Greek: Sabaoth (or Hebrew: Tze’va’ot) \f* \w had|strong="G2532"\w* \w left|strong="G1459"\w* \w us|strong="G2249"\w* \w a|strong="G1096"\w* \w seed|strong="G4690"\w*, +\q2 \w we|strong="G2249"\w* \w would|strong="G1096"\w* \w have|strong="G2532"\w* \w become|strong="G1096"\w* \w like|strong="G5613"\w* \w Sodom|strong="G4670"\w*, +\q2 \w and|strong="G2532"\w* \w would|strong="G1096"\w* \w have|strong="G2532"\w* \w been|strong="G1096"\w* \w made|strong="G1096"\w* \w like|strong="G5613"\w* \w Gomorrah|strong="G1116"\w*.”\x + \xo 9:29 \xt Isaiah 1:9\x* +\p +\v 30 \w What|strong="G5101"\w* \w shall|strong="G5101"\w* \w we|strong="G3754"\w* \w say|strong="G3004"\w* \w then|strong="G3767"\w*? \w That|strong="G3754"\w* \w the|strong="G1537"\w* \w Gentiles|strong="G1484"\w*, \w who|strong="G5101"\w* didn’\w t|strong="G3588"\w* \w follow|strong="G1377"\w* \w after|strong="G1161"\w* \w righteousness|strong="G1343"\w*, \w attained|strong="G2638"\w* \w to|strong="G3004"\w* \w righteousness|strong="G1343"\w*, \w even|strong="G1161"\w* \w the|strong="G1537"\w* \w righteousness|strong="G1343"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w of|strong="G1537"\w* \w faith|strong="G4102"\w*; +\v 31 \w but|strong="G1161"\w* \w Israel|strong="G2474"\w*, following \w after|strong="G1161"\w* \w a|strong="G1519"\w* \w law|strong="G3551"\w* \w of|strong="G3551"\w* \w righteousness|strong="G1343"\w*, didn’t \w arrive|strong="G5348"\w* \w at|strong="G1519"\w* \w the|strong="G1519"\w* \w law|strong="G3551"\w* \w of|strong="G3551"\w* \w righteousness|strong="G1343"\w*. +\v 32 \w Why|strong="G5101"\w*? \w Because|strong="G3754"\w* \w they|strong="G3588"\w* didn’\w t|strong="G3588"\w* \w seek|strong="G5101"\w* \w it|strong="G3754"\w* \w by|strong="G1223"\w* \w faith|strong="G4102"\w*, \w but|strong="G3588"\w* \w as|strong="G5613"\w* \w it|strong="G3754"\w* \w were|strong="G3588"\w* \w by|strong="G1223"\w* \w works|strong="G2041"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* law. \w They|strong="G3588"\w* \w stumbled|strong="G4350"\w* \w over|strong="G1537"\w* \w the|strong="G1537"\w* \w stumbling|strong="G4348"\w* \w stone|strong="G3037"\w*, +\v 33 \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, +\q1 “\w Behold|strong="G2400"\w*,\f + \fr 9:33 \ft “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w I|strong="G2532"\w* \w lay|strong="G5087"\w* \w in|strong="G1722"\w* \w Zion|strong="G4622"\w* \w a|strong="G2532"\w* \w stumbling|strong="G4625"\w* \w stone|strong="G3037"\w* \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w rock|strong="G4073"\w* \w of|strong="G2532"\w* \w offense|strong="G4625"\w*; +\q2 \w and|strong="G2532"\w* \w no|strong="G3756"\w* \w one|strong="G3588"\w* \w who|strong="G3588"\w* \w believes|strong="G4100"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w disappointed|strong="G2617"\w*.”\x + \xo 9:33 \xt Isaiah 8:14; 28:16\x* +\c 10 +\p +\v 1 Brothers, \w my|strong="G1699"\w* \w heart|strong="G2588"\w*’s \w desire|strong="G2107"\w* \w and|strong="G2532"\w* \w my|strong="G1699"\w* \w prayer|strong="G1162"\w* \w to|strong="G1519"\w* \w God|strong="G2316"\w* \w is|strong="G3588"\w* \w for|strong="G1519"\w* Israel, \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* \w saved|strong="G4991"\w*. +\v 2 \w For|strong="G1063"\w* \w I|strong="G1063"\w* \w testify|strong="G3140"\w* \w about|strong="G2596"\w* \w them|strong="G3754"\w* \w that|strong="G3754"\w* \w they|strong="G3754"\w* \w have|strong="G2192"\w* \w a|strong="G2192"\w* \w zeal|strong="G2205"\w* \w for|strong="G1063"\w* \w God|strong="G2316"\w*, \w but|strong="G1063"\w* \w not|strong="G3756"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w knowledge|strong="G1922"\w*. +\v 3 \w For|strong="G1063"\w* \w being|strong="G2532"\w* ignorant \w of|strong="G2316"\w* \w God|strong="G2316"\w*’s \w righteousness|strong="G1343"\w*, \w and|strong="G2532"\w* \w seeking|strong="G2212"\w* \w to|strong="G2532"\w* \w establish|strong="G2476"\w* \w their|strong="G2532"\w* \w own|strong="G2398"\w* \w righteousness|strong="G1343"\w*, \w they|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w subject|strong="G5293"\w* \w themselves|strong="G2398"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w righteousness|strong="G1343"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\v 4 \w For|strong="G1063"\w* \w Christ|strong="G5547"\w* \w is|strong="G3588"\w* \w the|strong="G1519"\w* \w fulfillment|strong="G5056"\w*\f + \fr 10:4 \ft or, completion, or end\f* \w of|strong="G3551"\w* \w the|strong="G1519"\w* \w law|strong="G3551"\w* \w for|strong="G1063"\w* \w righteousness|strong="G1343"\w* \w to|strong="G1519"\w* \w everyone|strong="G3956"\w* \w who|strong="G3588"\w* \w believes|strong="G4100"\w*. +\p +\v 5 \w For|strong="G1063"\w* \w Moses|strong="G3475"\w* \w writes|strong="G1125"\w* \w about|strong="G1722"\w* \w the|strong="G1722"\w* \w righteousness|strong="G1343"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w*, “\w The|strong="G1722"\w* \w one|strong="G3588"\w* \w who|strong="G3588"\w* \w does|strong="G4160"\w* \w them|strong="G3588"\w* \w will|strong="G4160"\w* \w live|strong="G2198"\w* \w by|strong="G1722"\w* \w them|strong="G3588"\w*.”\x + \xo 10:5 \xt Leviticus 18:5\x* +\v 6 \w But|strong="G1161"\w* \w the|strong="G1722"\w* \w righteousness|strong="G1343"\w* \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w of|strong="G1537"\w* \w faith|strong="G4102"\w* \w says|strong="G3004"\w* \w this|strong="G3778"\w*, “Don’\w t|strong="G3588"\w* \w say|strong="G3004"\w* \w in|strong="G1722"\w* \w your|strong="G1722"\w* \w heart|strong="G2588"\w*, ‘\w Who|strong="G5101"\w* \w will|strong="G5101"\w* \w ascend|strong="G1537"\w* \w into|strong="G1519"\w* \w heaven|strong="G3772"\w*?’\x + \xo 10:6 \xt Deuteronomy 30:12\x* (\w that|strong="G3588"\w* \w is|strong="G1510"\w*, \w to|strong="G1519"\w* \w bring|strong="G2609"\w* \w Christ|strong="G5547"\w* \w down|strong="G2609"\w*); +\v 7 \w or|strong="G2228"\w*, ‘\w Who|strong="G5101"\w* \w will|strong="G5101"\w* \w descend|strong="G2597"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* abyss?’\x + \xo 10:7 \xt Deuteronomy 30:13\x* (\w that|strong="G3588"\w* \w is|strong="G1510"\w*, \w to|strong="G1519"\w* \w bring|strong="G1519"\w* \w Christ|strong="G5547"\w* \w up|strong="G1519"\w* \w from|strong="G1537"\w* \w the|strong="G1519"\w* \w dead|strong="G3498"\w*.)” +\v 8 \w But|strong="G2532"\w* \w what|strong="G5101"\w* \w does|strong="G1510"\w* \w it|strong="G2532"\w* \w say|strong="G3004"\w*? “\w The|strong="G1722"\w* \w word|strong="G4487"\w* \w is|strong="G1510"\w* \w near|strong="G1451"\w* \w you|strong="G4771"\w*, \w in|strong="G1722"\w* \w your|strong="G2532"\w* \w mouth|strong="G4750"\w* \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w your|strong="G2532"\w* \w heart|strong="G2588"\w*;”\x + \xo 10:8 \xt Deuteronomy 30:14\x* \w that|strong="G3739"\w* \w is|strong="G1510"\w*, \w the|strong="G1722"\w* \w word|strong="G4487"\w* \w of|strong="G2532"\w* \w faith|strong="G4102"\w* \w which|strong="G3739"\w* \w we|strong="G3739"\w* \w preach|strong="G2784"\w*: +\v 9 \w that|strong="G3754"\w* \w if|strong="G1437"\w* \w you|strong="G4771"\w* \w will|strong="G2316"\w* \w confess|strong="G3670"\w* \w with|strong="G1722"\w* \w your|strong="G2962"\w* \w mouth|strong="G4750"\w* \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w is|strong="G3588"\w* \w Lord|strong="G2962"\w* \w and|strong="G2532"\w* \w believe|strong="G4100"\w* \w in|strong="G1722"\w* \w your|strong="G2962"\w* \w heart|strong="G2588"\w* \w that|strong="G3754"\w* \w God|strong="G2316"\w* \w raised|strong="G1453"\w* \w him|strong="G3588"\w* \w from|strong="G1537"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w*, \w you|strong="G4771"\w* \w will|strong="G2316"\w* \w be|strong="G2532"\w* \w saved|strong="G4982"\w*. +\v 10 \w For|strong="G1063"\w* \w with|strong="G1519"\w* \w the|strong="G1519"\w* \w heart|strong="G2588"\w* \w one|strong="G1519"\w* \w believes|strong="G4100"\w* \w resulting|strong="G1519"\w* \w in|strong="G1519"\w* \w righteousness|strong="G1343"\w*; \w and|strong="G1161"\w* \w with|strong="G1519"\w* \w the|strong="G1519"\w* \w mouth|strong="G4750"\w* confession \w is|strong="G1343"\w* \w made|strong="G3670"\w* \w resulting|strong="G1519"\w* \w in|strong="G1519"\w* \w salvation|strong="G4991"\w*. +\v 11 \w For|strong="G1063"\w* \w the|strong="G3956"\w* \w Scripture|strong="G1124"\w* \w says|strong="G3004"\w*, “\w Whoever|strong="G3956"\w* \w believes|strong="G4100"\w* \w in|strong="G1909"\w* \w him|strong="G3588"\w* \w will|strong="G3956"\w* \w not|strong="G3756"\w* \w be|strong="G3756"\w* \w disappointed|strong="G2617"\w*.”\x + \xo 10:11 \xt Isaiah 28:16\x* +\p +\v 12 \w For|strong="G1063"\w* \w there|strong="G2532"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* \w distinction|strong="G1293"\w* \w between|strong="G5037"\w* \w Jew|strong="G2453"\w* \w and|strong="G2532"\w* \w Greek|strong="G1672"\w*; \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w* \w Lord|strong="G2962"\w* \w is|strong="G1510"\w* \w Lord|strong="G2962"\w* \w of|strong="G2532"\w* \w all|strong="G3956"\w*, \w and|strong="G2532"\w* \w is|strong="G1510"\w* \w rich|strong="G4147"\w* \w to|strong="G1519"\w* \w all|strong="G3956"\w* \w who|strong="G3588"\w* \w call|strong="G1941"\w* \w on|strong="G1519"\w* \w him|strong="G3588"\w*. +\v 13 \w For|strong="G1063"\w*, “\w Whoever|strong="G3739"\w* \w will|strong="G3739"\w* \w call|strong="G1941"\w* \w on|strong="G1941"\w* \w the|strong="G3956"\w* \w name|strong="G3686"\w* \w of|strong="G3686"\w* \w the|strong="G3956"\w* \w Lord|strong="G2962"\w* \w will|strong="G3739"\w* \w be|strong="G3956"\w* \w saved|strong="G4982"\w*.”\x + \xo 10:13 \xt Joel 2:32\x* +\v 14 \w How|strong="G4459"\w* \w then|strong="G3767"\w* \w will|strong="G3739"\w* \w they|strong="G1161"\w* \w call|strong="G1941"\w* \w on|strong="G1519"\w* \w him|strong="G3739"\w* \w in|strong="G1519"\w* \w whom|strong="G3739"\w* \w they|strong="G1161"\w* \w have|strong="G4100"\w* \w not|strong="G3756"\w* \w believed|strong="G4100"\w*? \w How|strong="G4459"\w* \w will|strong="G3739"\w* \w they|strong="G1161"\w* \w believe|strong="G4100"\w* \w in|strong="G1519"\w* \w him|strong="G3739"\w* \w whom|strong="G3739"\w* \w they|strong="G1161"\w* \w have|strong="G4100"\w* \w not|strong="G3756"\w* heard? \w How|strong="G4459"\w* \w will|strong="G3739"\w* \w they|strong="G1161"\w* hear \w without|strong="G5565"\w* \w a|strong="G1519"\w* \w preacher|strong="G2784"\w*? +\v 15 \w And|strong="G1161"\w* \w how|strong="G4459"\w* \w will|strong="G4459"\w* \w they|strong="G1161"\w* \w preach|strong="G2784"\w* \w unless|strong="G1437"\w* \w they|strong="G1161"\w* \w are|strong="G3588"\w* \w sent|strong="G1125"\w*? \w As|strong="G5613"\w* \w it|strong="G1161"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*: +\q1 “\w How|strong="G4459"\w* \w beautiful|strong="G5611"\w* \w are|strong="G3588"\w* \w the|strong="G1161"\w* \w feet|strong="G4228"\w* \w of|strong="G3588"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w preach|strong="G2784"\w* \w the|strong="G1161"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w* \w of|strong="G3588"\w* peace, +\q2 \w who|strong="G3588"\w* \w bring|strong="G2097"\w* glad \w tidings|strong="G2097"\w* \w of|strong="G3588"\w* \w good|strong="G2097"\w* \w things|strong="G3588"\w*!”\x + \xo 10:15 \xt Isaiah 52:7\x* +\p +\v 16 \w But|strong="G1063"\w* \w they|strong="G3588"\w* didn’\w t|strong="G3588"\w* \w all|strong="G3956"\w* listen \w to|strong="G3004"\w* \w the|strong="G3956"\w* glad \w news|strong="G2098"\w*. \w For|strong="G1063"\w* \w Isaiah|strong="G2268"\w* \w says|strong="G3004"\w*, “\w Lord|strong="G2962"\w*, \w who|strong="G5101"\w* \w has|strong="G2962"\w* \w believed|strong="G4100"\w* \w our|strong="G3956"\w* report?”\x + \xo 10:16 \xt Isaiah 53:1\x* +\v 17 \w So|strong="G1161"\w* \w faith|strong="G4102"\w* comes \w by|strong="G1223"\w* hearing, \w and|strong="G1161"\w* hearing \w by|strong="G1223"\w* \w the|strong="G1537"\w* \w word|strong="G4487"\w* \w of|strong="G1537"\w* \w God|strong="G3588"\w*. +\v 18 \w But|strong="G2532"\w* \w I|strong="G2532"\w* \w say|strong="G3004"\w*, didn’\w t|strong="G3588"\w* \w they|strong="G2532"\w* hear? Yes, most \w certainly|strong="G2532"\w*, +\q1 “\w Their|strong="G2532"\w* \w sound|strong="G5353"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w into|strong="G1519"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, +\q2 \w their|strong="G2532"\w* \w words|strong="G4487"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w ends|strong="G4009"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w world|strong="G3625"\w*.”\x + \xo 10:18 \xt Psalms 19:4\x* +\p +\v 19 \w But|strong="G3361"\w* \w I|strong="G1473"\w* \w ask|strong="G3004"\w*, didn’t \w Israel|strong="G2474"\w* \w know|strong="G1097"\w*? \w First|strong="G4413"\w* \w Moses|strong="G3475"\w* \w says|strong="G3004"\w*, +\q1 “\w I|strong="G1473"\w* \w will|strong="G1473"\w* \w provoke|strong="G3863"\w* \w you|strong="G5210"\w* \w to|strong="G1909"\w* \w jealousy|strong="G3863"\w* \w with|strong="G1909"\w* \w that|strong="G3004"\w* \w which|strong="G1484"\w* \w is|strong="G3756"\w* \w no|strong="G3756"\w* \w nation|strong="G1484"\w*. +\q2 \w I|strong="G1473"\w* \w will|strong="G1473"\w* \w make|strong="G3863"\w* \w you|strong="G5210"\w* angry \w with|strong="G1909"\w* \w a|strong="G1909"\w* \w nation|strong="G1484"\w* void \w of|strong="G1909"\w* understanding.”\x + \xo 10:19 \xt Deuteronomy 32:21\x* +\p +\v 20 \w Isaiah|strong="G2268"\w* \w is|strong="G3588"\w* \w very|strong="G2532"\w* bold \w and|strong="G2532"\w* \w says|strong="G3004"\w*, +\q1 “\w I|strong="G1473"\w* \w was|strong="G1096"\w* \w found|strong="G2147"\w* \w by|strong="G1722"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* didn’\w t|strong="G3588"\w* \w seek|strong="G2212"\w* \w me|strong="G1473"\w*. +\q2 \w I|strong="G1473"\w* \w was|strong="G1096"\w* revealed \w to|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* didn’\w t|strong="G3588"\w* \w ask|strong="G1905"\w* \w for|strong="G1161"\w* \w me|strong="G1473"\w*.”\x + \xo 10:20 \xt Isaiah 65:1\x* +\p +\v 21 \w But|strong="G1161"\w* \w about|strong="G4314"\w* \w Israel|strong="G2474"\w* \w he|strong="G2532"\w* \w says|strong="G3004"\w*, “\w All|strong="G3650"\w* \w day|strong="G2250"\w* \w long|strong="G2250"\w* \w I|strong="G1473"\w* \w stretched|strong="G1600"\w* \w out|strong="G2532"\w* \w my|strong="G1473"\w* \w hands|strong="G5495"\w* \w to|strong="G4314"\w* \w a|strong="G2532"\w* disobedient \w and|strong="G2532"\w* contrary \w people|strong="G2992"\w*.”\x + \xo 10:21 \xt Isaiah 65:2\x* +\c 11 +\p +\v 1 \w I|strong="G1473"\w* \w ask|strong="G3004"\w* \w then|strong="G3767"\w*, \w did|strong="G2532"\w* \w God|strong="G2316"\w* reject \w his|strong="G2532"\w* \w people|strong="G2992"\w*? \w May|strong="G2532"\w* \w it|strong="G2532"\w* \w never|strong="G3361"\w* \w be|strong="G1096"\w*! \w For|strong="G1063"\w* \w I|strong="G1473"\w* \w also|strong="G2532"\w* \w am|strong="G1510"\w* \w an|strong="G2532"\w* \w Israelite|strong="G2475"\w*, \w a|strong="G1096"\w* \w descendant|strong="G4690"\w* \w of|strong="G1537"\w* Abraham, \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w tribe|strong="G5443"\w* \w of|strong="G1537"\w* Benjamin. +\v 2 \w God|strong="G2316"\w* didn’\w t|strong="G3588"\w* reject \w his|strong="G1722"\w* \w people|strong="G2992"\w*, \w whom|strong="G3739"\w* \w he|strong="G3739"\w* \w foreknew|strong="G4267"\w*. \w Or|strong="G2228"\w* don’\w t|strong="G3588"\w* \w you|strong="G3739"\w* \w know|strong="G1492"\w* \w what|strong="G5101"\w* \w the|strong="G1722"\w* \w Scripture|strong="G1124"\w* \w says|strong="G3004"\w* \w about|strong="G5613"\w* \w Elijah|strong="G2243"\w*? \w How|strong="G5613"\w* \w he|strong="G3739"\w* \w pleads|strong="G1793"\w* \w with|strong="G1722"\w* \w God|strong="G2316"\w* \w against|strong="G2596"\w* \w Israel|strong="G2474"\w*: +\v 3 “\w Lord|strong="G2962"\w*, \w they|strong="G2532"\w* \w have|strong="G2532"\w* killed \w your|strong="G2962"\w* \w prophets|strong="G4396"\w*. \w They|strong="G2532"\w* \w have|strong="G2532"\w* broken \w down|strong="G2679"\w* \w your|strong="G2962"\w* \w altars|strong="G2379"\w*. \w I|strong="G1473"\w* \w am|strong="G1473"\w* \w left|strong="G5275"\w* \w alone|strong="G3441"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w seek|strong="G2212"\w* \w my|strong="G2212"\w* \w life|strong="G5590"\w*.”\x + \xo 11:3 \xt 1 Kings 19:10,14\x* +\v 4 \w But|strong="G3588"\w* \w how|strong="G5101"\w* \w does|strong="G5101"\w* \w God|strong="G3004"\w* answer \w him|strong="G3588"\w*? “\w I|strong="G3004"\w* \w have|strong="G3748"\w* \w reserved|strong="G2641"\w* \w for|strong="G3756"\w* \w myself|strong="G1683"\w* \w seven|strong="G2035"\w* \w thousand|strong="G2035"\w* \w men|strong="G3588"\w* \w who|strong="G5101"\w* \w have|strong="G3748"\w* \w not|strong="G3756"\w* \w bowed|strong="G2578"\w* \w the|strong="G3588"\w* \w knee|strong="G1119"\w* \w to|strong="G3004"\w* Baal.”\x + \xo 11:4 \xt 1 Kings 19:18\x* +\v 5 \w Even|strong="G2532"\w* \w so|strong="G3779"\w* \w too|strong="G2532"\w* \w at|strong="G1722"\w* \w this|strong="G3588"\w* \w present|strong="G3568"\w* \w time|strong="G2540"\w* \w also|strong="G2532"\w* \w there|strong="G2532"\w* \w is|strong="G3588"\w* \w a|strong="G1096"\w* \w remnant|strong="G3005"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w election|strong="G1589"\w* \w of|strong="G2532"\w* \w grace|strong="G5485"\w*. +\v 6 \w And|strong="G1161"\w* \w if|strong="G1487"\w* \w by|strong="G1537"\w* \w grace|strong="G5485"\w*, \w then|strong="G1161"\w* \w it|strong="G1161"\w* \w is|strong="G3588"\w* \w no|strong="G3765"\w* \w longer|strong="G3765"\w* \w of|strong="G1537"\w* \w works|strong="G2041"\w*; \w otherwise|strong="G1893"\w* \w grace|strong="G5485"\w* \w is|strong="G3588"\w* \w no|strong="G3765"\w* \w longer|strong="G3765"\w* \w grace|strong="G5485"\w*. \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w it|strong="G1161"\w* \w is|strong="G3588"\w* \w of|strong="G1537"\w* \w works|strong="G2041"\w*, \w it|strong="G1161"\w* \w is|strong="G3588"\w* \w no|strong="G3765"\w* \w longer|strong="G3765"\w* \w grace|strong="G5485"\w*; \w otherwise|strong="G1893"\w* \w work|strong="G2041"\w* \w is|strong="G3588"\w* \w no|strong="G3765"\w* \w longer|strong="G3765"\w* \w work|strong="G2041"\w*. +\p +\v 7 \w What|strong="G5101"\w* \w then|strong="G3767"\w*? \w That|strong="G3739"\w* \w which|strong="G3739"\w* \w Israel|strong="G2474"\w* \w seeks|strong="G1934"\w* \w for|strong="G1161"\w*, \w that|strong="G3739"\w* \w he|strong="G1161"\w* didn’\w t|strong="G3588"\w* \w obtain|strong="G2013"\w*, \w but|strong="G1161"\w* \w the|strong="G1161"\w* \w chosen|strong="G1589"\w* ones \w obtained|strong="G2013"\w* \w it|strong="G1161"\w*, \w and|strong="G1161"\w* \w the|strong="G1161"\w* \w rest|strong="G3062"\w* \w were|strong="G3588"\w* \w hardened|strong="G4456"\w*. +\v 8 \w According|strong="G2316"\w* \w as|strong="G2531"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, “\w God|strong="G2316"\w* \w gave|strong="G1325"\w* \w them|strong="G3588"\w* \w a|strong="G2532"\w* \w spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w stupor|strong="G2659"\w*, \w eyes|strong="G3788"\w* \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w should|strong="G2316"\w* \w not|strong="G3361"\w* see, \w and|strong="G2532"\w* \w ears|strong="G3775"\w* \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w should|strong="G2316"\w* \w not|strong="G3361"\w* hear, \w to|strong="G2532"\w* \w this|strong="G3588"\w* \w very|strong="G2532"\w* \w day|strong="G2250"\w*.”\x + \xo 11:8 \xt Deuteronomy 29:4; Isaiah 29:10\x* +\p +\v 9 \w David|strong="G1138"\w* \w says|strong="G3004"\w*, +\q1 “\w Let|strong="G1096"\w* \w their|strong="G2532"\w* \w table|strong="G5132"\w* \w be|strong="G1096"\w* \w made|strong="G1096"\w* \w a|strong="G1096"\w* \w snare|strong="G3803"\w*, \w a|strong="G1096"\w* \w trap|strong="G3803"\w*, +\q2 \w a|strong="G1096"\w* \w stumbling|strong="G4625"\w* \w block|strong="G4625"\w*, \w and|strong="G2532"\w* \w a|strong="G1096"\w* retribution \w to|strong="G1519"\w* \w them|strong="G3588"\w*. +\q1 +\v 10 \w Let|strong="G4654"\w* \w their|strong="G2532"\w* \w eyes|strong="G3788"\w* \w be|strong="G2532"\w* \w darkened|strong="G4654"\w*, \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w may|strong="G2532"\w* \w not|strong="G3361"\w* see. +\q2 \w Always|strong="G3956"\w* \w keep|strong="G3361"\w* \w their|strong="G2532"\w* \w backs|strong="G3577"\w* bent.”\x + \xo 11:10 \xt Psalms 69:22,23\x* +\p +\v 11 \w I|strong="G3767"\w* \w ask|strong="G3004"\w* \w then|strong="G3767"\w*, \w did|strong="G1096"\w* \w they|strong="G3588"\w* \w stumble|strong="G4417"\w* \w that|strong="G2443"\w* \w they|strong="G3588"\w* \w might|strong="G1484"\w* \w fall|strong="G4098"\w*? \w May|strong="G2443"\w* \w it|strong="G1096"\w* \w never|strong="G3361"\w* \w be|strong="G1096"\w*! \w But|strong="G3361"\w* \w by|strong="G3004"\w* \w their|strong="G1438"\w* \w fall|strong="G4098"\w* \w salvation|strong="G4991"\w* \w has|strong="G1096"\w* \w come|strong="G1096"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w Gentiles|strong="G1484"\w*, \w to|strong="G1519"\w* \w provoke|strong="G3863"\w* \w them|strong="G3588"\w* \w to|strong="G1519"\w* \w jealousy|strong="G3863"\w*. +\v 12 \w Now|strong="G1161"\w* \w if|strong="G1487"\w* \w their|strong="G2532"\w* \w fall|strong="G3900"\w* \w is|strong="G3588"\w* \w the|strong="G2532"\w* \w riches|strong="G4149"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w*, \w and|strong="G2532"\w* \w their|strong="G2532"\w* loss \w the|strong="G2532"\w* \w riches|strong="G4149"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w*, \w how|strong="G4214"\w* \w much|strong="G4214"\w* \w more|strong="G3123"\w* \w their|strong="G2532"\w* \w fullness|strong="G4138"\w*! +\p +\v 13 \w For|strong="G1909"\w* \w I|strong="G1473"\w* \w speak|strong="G3004"\w* \w to|strong="G1909"\w* \w you|strong="G5210"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w Gentiles|strong="G1484"\w*. \w Since|strong="G1161"\w* \w then|strong="G3767"\w* \w as|strong="G3745"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w an|strong="G1510"\w* apostle \w to|strong="G1909"\w* \w Gentiles|strong="G1484"\w*, \w I|strong="G1473"\w* \w glorify|strong="G1392"\w* \w my|strong="G1473"\w* \w ministry|strong="G1248"\w*, +\v 14 \w if|strong="G1487"\w* \w by|strong="G1537"\w* \w any|strong="G5100"\w* \w means|strong="G1513"\w* \w I|strong="G1473"\w* \w may|strong="G2532"\w* \w provoke|strong="G3863"\w* \w to|strong="G2532"\w* \w jealousy|strong="G3863"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w my|strong="G1473"\w* \w flesh|strong="G4561"\w*, \w and|strong="G2532"\w* \w may|strong="G2532"\w* \w save|strong="G4982"\w* \w some|strong="G5100"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w*. +\v 15 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w the|strong="G1537"\w* rejection \w of|strong="G1537"\w* \w them|strong="G3588"\w* \w is|strong="G3588"\w* \w the|strong="G1537"\w* \w reconciling|strong="G2643"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w world|strong="G2889"\w*, \w what|strong="G5101"\w* \w would|strong="G5101"\w* \w their|strong="G3588"\w* \w acceptance|strong="G4356"\w* \w be|strong="G3361"\w*, \w but|strong="G1487"\w* \w life|strong="G2222"\w* \w from|strong="G1537"\w* \w the|strong="G1537"\w* \w dead|strong="G3498"\w*? +\p +\v 16 \w If|strong="G1487"\w* \w the|strong="G2532"\w* \w first|strong="G3588"\w* fruit \w is|strong="G3588"\w* holy, \w so|strong="G2532"\w* \w is|strong="G3588"\w* \w the|strong="G2532"\w* \w lump|strong="G5445"\w*. \w If|strong="G1487"\w* \w the|strong="G2532"\w* \w root|strong="G4491"\w* \w is|strong="G3588"\w* holy, \w so|strong="G2532"\w* \w are|strong="G3588"\w* \w the|strong="G2532"\w* \w branches|strong="G2798"\w*. +\v 17 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w some|strong="G5100"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w branches|strong="G2798"\w* \w were|strong="G1510"\w* \w broken|strong="G1575"\w* \w off|strong="G1575"\w*, \w and|strong="G2532"\w* \w you|strong="G4771"\w*, \w being|strong="G1510"\w* \w a|strong="G1096"\w* \w wild|strong="G2532"\w* \w olive|strong="G1636"\w*, \w were|strong="G1510"\w* \w grafted|strong="G1461"\w* \w in|strong="G1722"\w* \w among|strong="G1722"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w became|strong="G1096"\w* \w partaker|strong="G4791"\w* \w with|strong="G1722"\w* \w them|strong="G3588"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w root|strong="G4491"\w* \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* richness \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w olive|strong="G1636"\w* \w tree|strong="G1636"\w*, +\v 18 don’\w t|strong="G3588"\w* \w boast|strong="G2620"\w* \w over|strong="G2620"\w* \w the|strong="G1161"\w* \w branches|strong="G2798"\w*. \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w you|strong="G4771"\w* \w boast|strong="G2620"\w*, remember \w that|strong="G3588"\w* \w it|strong="G1161"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w you|strong="G4771"\w* \w who|strong="G3588"\w* support \w the|strong="G1161"\w* \w root|strong="G4491"\w*, \w but|strong="G1161"\w* \w the|strong="G1161"\w* \w root|strong="G4491"\w* supports \w you|strong="G4771"\w*. +\v 19 \w You|strong="G3004"\w* \w will|strong="G1473"\w* \w say|strong="G3004"\w* \w then|strong="G3767"\w*, “\w Branches|strong="G2798"\w* \w were|strong="G2798"\w* \w broken|strong="G1575"\w* \w off|strong="G1575"\w*, \w that|strong="G2443"\w* \w I|strong="G1473"\w* \w might|strong="G1473"\w* \w be|strong="G2443"\w* \w grafted|strong="G1461"\w* \w in|strong="G3004"\w*.” +\v 20 \w True|strong="G3588"\w*; \w by|strong="G2476"\w* \w their|strong="G3588"\w* unbelief \w they|strong="G1161"\w* \w were|strong="G3588"\w* \w broken|strong="G1575"\w* \w off|strong="G1575"\w*, \w and|strong="G1161"\w* \w you|strong="G4771"\w* \w stand|strong="G2476"\w* \w by|strong="G2476"\w* \w your|strong="G5426"\w* \w faith|strong="G4102"\w*. Don’\w t|strong="G3588"\w* \w be|strong="G3361"\w* \w conceited|strong="G5426"\w*, \w but|strong="G1161"\w* \w fear|strong="G5399"\w*; +\v 21 \w for|strong="G1063"\w* \w if|strong="G1487"\w* \w God|strong="G2316"\w* didn’\w t|strong="G3588"\w* \w spare|strong="G5339"\w* \w the|strong="G2596"\w* \w natural|strong="G5449"\w* \w branches|strong="G2798"\w*, \w neither|strong="G3761"\w* \w will|strong="G2316"\w* \w he|strong="G3588"\w* \w spare|strong="G5339"\w* \w you|strong="G4771"\w*. +\v 22 \w See|strong="G3708"\w* \w then|strong="G3767"\w* \w the|strong="G2532"\w* \w goodness|strong="G5544"\w* \w and|strong="G2532"\w* severity \w of|strong="G2316"\w* \w God|strong="G2316"\w*. \w Toward|strong="G1909"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w fell|strong="G4098"\w*, severity; \w but|strong="G1161"\w* \w toward|strong="G1909"\w* \w you|strong="G4771"\w*, \w goodness|strong="G5544"\w*, \w if|strong="G1437"\w* \w you|strong="G4771"\w* \w continue|strong="G1961"\w* \w in|strong="G1909"\w* \w his|strong="G1909"\w* \w goodness|strong="G5544"\w*; \w otherwise|strong="G1893"\w* \w you|strong="G4771"\w* \w also|strong="G2532"\w* \w will|strong="G2316"\w* \w be|strong="G2532"\w* \w cut|strong="G1581"\w* \w off|strong="G1581"\w*. +\v 23 \w They|strong="G1161"\w* \w also|strong="G1161"\w*, \w if|strong="G1437"\w* \w they|strong="G1161"\w* don’\w t|strong="G3588"\w* \w continue|strong="G1961"\w* \w in|strong="G2316"\w* \w their|strong="G1438"\w* unbelief, \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w grafted|strong="G1461"\w* \w in|strong="G2316"\w*, \w for|strong="G1063"\w* \w God|strong="G2316"\w* \w is|strong="G1510"\w* \w able|strong="G1415"\w* \w to|strong="G1161"\w* \w graft|strong="G1461"\w* \w them|strong="G3588"\w* \w in|strong="G2316"\w* \w again|strong="G3825"\w*. +\v 24 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w you|strong="G4771"\w* \w were|strong="G3588"\w* \w cut|strong="G1581"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w by|strong="G1537"\w* \w nature|strong="G5449"\w* \w a|strong="G2532"\w* \w wild|strong="G2532"\w* \w olive|strong="G1636"\w* \w tree|strong="G1636"\w*, \w and|strong="G2532"\w* \w were|strong="G3588"\w* \w grafted|strong="G1461"\w* \w contrary|strong="G3844"\w* \w to|strong="G1519"\w* \w nature|strong="G5449"\w* \w into|strong="G1519"\w* \w a|strong="G2532"\w* \w good|strong="G3588"\w* \w olive|strong="G1636"\w* \w tree|strong="G1636"\w*, \w how|strong="G4214"\w* \w much|strong="G4214"\w* \w more|strong="G3123"\w* \w will|strong="G2532"\w* \w these|strong="G3778"\w*, \w which|strong="G3588"\w* \w are|strong="G3588"\w* \w the|strong="G2532"\w* \w natural|strong="G5449"\w* branches, \w be|strong="G2532"\w* \w grafted|strong="G1461"\w* \w into|strong="G1519"\w* \w their|strong="G2532"\w* \w own|strong="G2398"\w* \w olive|strong="G1636"\w* \w tree|strong="G1636"\w*? +\p +\v 25 \w For|strong="G1063"\w* \w I|strong="G3739"\w* don’\w t|strong="G3588"\w* \w desire|strong="G2309"\w* \w you|strong="G5210"\w* \w to|strong="G2443"\w* \w be|strong="G1096"\w* \w ignorant|strong="G3361"\w*, brothers,\f + \fr 11:25 \ft The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”\f* \w of|strong="G3844"\w* \w this|strong="G3778"\w* \w mystery|strong="G3466"\w*, \w so|strong="G2443"\w* \w that|strong="G3754"\w* \w you|strong="G5210"\w* won’\w t|strong="G3588"\w* \w be|strong="G1096"\w* \w wise|strong="G5429"\w* \w in|strong="G1525"\w* \w your|strong="G1438"\w* \w own|strong="G1438"\w* \w conceits|strong="G1438"\w*, \w that|strong="G3754"\w* \w a|strong="G1096"\w* \w partial|strong="G3313"\w* \w hardening|strong="G4457"\w* \w has|strong="G3739"\w* \w happened|strong="G1096"\w* \w to|strong="G2443"\w* \w Israel|strong="G2474"\w*, until \w the|strong="G3588"\w* \w fullness|strong="G4138"\w* \w of|strong="G3844"\w* \w the|strong="G3588"\w* \w Gentiles|strong="G1484"\w* \w has|strong="G3739"\w* \w come|strong="G1096"\w* \w in|strong="G1525"\w*, +\v 26 \w and|strong="G2532"\w* \w so|strong="G3779"\w* \w all|strong="G3956"\w* \w Israel|strong="G2474"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w saved|strong="G4982"\w*. \w Even|strong="G2532"\w* \w as|strong="G2531"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, +\q1 “\w There|strong="G2532"\w* \w will|strong="G2532"\w* \w come|strong="G2240"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w Zion|strong="G4622"\w* \w the|strong="G2532"\w* \w Deliverer|strong="G4506"\w*, +\q2 \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w will|strong="G2532"\w* turn away ungodliness \w from|strong="G1537"\w* \w Jacob|strong="G2384"\w*. +\q1 +\v 27 \w This|strong="G3778"\w* \w is|strong="G3588"\w* \w my|strong="G1473"\w* \w covenant|strong="G1242"\w* \w with|strong="G3844"\w* \w them|strong="G3588"\w*, +\q2 \w when|strong="G3752"\w* \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w take|strong="G2532"\w* away \w their|strong="G2532"\w* sins.”\x + \xo 11:27 \xt Isaiah 59:20-21; 27:9; Jeremiah 31:33-34\x* +\p +\v 28 \w Concerning|strong="G2596"\w* \w the|strong="G1161"\w* \w Good|strong="G1223"\w* \w News|strong="G2098"\w*, \w they|strong="G1161"\w* \w are|strong="G3588"\w* \w enemies|strong="G2190"\w* \w for|strong="G1223"\w* \w your|strong="G1223"\w* \w sake|strong="G1223"\w*. \w But|strong="G1161"\w* \w concerning|strong="G2596"\w* \w the|strong="G1161"\w* \w election|strong="G1589"\w*, \w they|strong="G1161"\w* \w are|strong="G3588"\w* beloved \w for|strong="G1223"\w* \w the|strong="G1161"\w* \w fathers|strong="G3962"\w*’ \w sake|strong="G1223"\w*. +\v 29 \w For|strong="G1063"\w* \w the|strong="G2532"\w* \w gifts|strong="G5486"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w calling|strong="G2821"\w* \w of|strong="G2532"\w* \w God|strong="G2316"\w* \w are|strong="G3588"\w* irrevocable. +\v 30 \w For|strong="G1063"\w* \w as|strong="G5618"\w* \w you|strong="G5210"\w* \w in|strong="G2316"\w* \w time|strong="G4218"\w* \w past|strong="G4218"\w* \w were|strong="G3588"\w* disobedient \w to|strong="G1161"\w* \w God|strong="G2316"\w*, \w but|strong="G1161"\w* \w now|strong="G1161"\w* \w have|strong="G1653"\w* \w obtained|strong="G3568"\w* \w mercy|strong="G1653"\w* \w by|strong="G1063"\w* \w their|strong="G3588"\w* disobedience, +\v 31 \w even|strong="G2532"\w* \w so|strong="G3779"\w* \w these|strong="G3778"\w* \w also|strong="G2532"\w* \w have|strong="G2532"\w* \w now|strong="G3568"\w* \w been|strong="G2532"\w* disobedient, \w that|strong="G2443"\w* \w by|strong="G2532"\w* \w the|strong="G2532"\w* \w mercy|strong="G1656"\w* \w shown|strong="G1653"\w* \w to|strong="G2443"\w* \w you|strong="G3779"\w* \w they|strong="G2532"\w* \w may|strong="G2532"\w* \w also|strong="G2532"\w* obtain \w mercy|strong="G1656"\w*. +\v 32 \w For|strong="G1063"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* bound \w all|strong="G3956"\w* \w to|strong="G1519"\w* disobedience, \w that|strong="G2443"\w* \w he|strong="G3588"\w* \w might|strong="G2316"\w* \w have|strong="G1653"\w* \w mercy|strong="G1653"\w* \w on|strong="G1519"\w* \w all|strong="G3956"\w*. +\p +\v 33 \w Oh|strong="G5599"\w* \w the|strong="G2532"\w* depth \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w riches|strong="G4149"\w* \w both|strong="G2532"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w wisdom|strong="G4678"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w knowledge|strong="G1108"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*! \w How|strong="G5613"\w* unsearchable \w are|strong="G3588"\w* \w his|strong="G2532"\w* \w judgments|strong="G2917"\w*, \w and|strong="G2532"\w* \w his|strong="G2532"\w* \w ways|strong="G3598"\w* past tracing \w out|strong="G2532"\w*! +\q1 +\v 34 “\w For|strong="G1063"\w* \w who|strong="G5101"\w* \w has|strong="G2962"\w* \w known|strong="G1097"\w* \w the|strong="G1063"\w* \w mind|strong="G3563"\w* \w of|strong="G2962"\w* \w the|strong="G1063"\w* \w Lord|strong="G2962"\w*? +\q2 \w Or|strong="G2228"\w* \w who|strong="G5101"\w* \w has|strong="G2962"\w* \w been|strong="G1096"\w* \w his|strong="G2228"\w* \w counselor|strong="G4825"\w*?”\x + \xo 11:34 \xt Isaiah 40:13\x* +\q1 +\v 35 “\w Or|strong="G2228"\w* \w who|strong="G5101"\w* \w has|strong="G5101"\w* \w first|strong="G4272"\w* \w given|strong="G4272"\w* \w to|strong="G2532"\w* \w him|strong="G2532"\w*, +\q2 \w and|strong="G2532"\w* \w it|strong="G2532"\w* \w will|strong="G5101"\w* \w be|strong="G2532"\w* repaid \w to|strong="G2532"\w* \w him|strong="G2532"\w* \w again|strong="G2532"\w*?”\x + \xo 11:35 \xt Job 41:11\x* +\p +\v 36 \w For|strong="G3754"\w* \w of|strong="G1537"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w through|strong="G1223"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w are|strong="G3588"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*. \w To|strong="G1519"\w* \w him|strong="G3588"\w* \w be|strong="G2532"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w for|strong="G3754"\w* \w ever|strong="G1519"\w*! Amen. +\c 12 +\p +\v 1 \w Therefore|strong="G3767"\w* \w I|strong="G1223"\w* \w urge|strong="G3870"\w* \w you|strong="G5210"\w*, brothers, \w by|strong="G1223"\w* \w the|strong="G1223"\w* \w mercies|strong="G3628"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w*, \w to|strong="G2316"\w* \w present|strong="G3936"\w* \w your|strong="G1223"\w* \w bodies|strong="G4983"\w* \w a|strong="G1223"\w* \w living|strong="G2198"\w* \w sacrifice|strong="G2378"\w*, holy, \w acceptable|strong="G2101"\w* \w to|strong="G2316"\w* \w God|strong="G2316"\w*, \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w your|strong="G1223"\w* \w spiritual|strong="G3050"\w* \w service|strong="G2999"\w*. +\v 2 Don’\w t|strong="G3588"\w* \w be|strong="G2532"\w* \w conformed|strong="G4964"\w* \w to|strong="G1519"\w* \w this|strong="G3778"\w* world, \w but|strong="G2532"\w* \w be|strong="G2532"\w* \w transformed|strong="G3339"\w* \w by|strong="G2532"\w* \w the|strong="G2532"\w* renewing \w of|strong="G2316"\w* \w your|strong="G2532"\w* \w mind|strong="G3563"\w*, \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w may|strong="G2532"\w* \w prove|strong="G1381"\w* \w what|strong="G5101"\w* \w is|strong="G3588"\w* \w the|strong="G2532"\w* \w good|strong="G5101"\w*, \w well-pleasing|strong="G2101"\w*, \w and|strong="G2532"\w* \w perfect|strong="G5046"\w* \w will|strong="G2307"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\p +\v 3 \w For|strong="G1063"\w* \w I|strong="G1473"\w* \w say|strong="G3004"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w grace|strong="G5485"\w* \w that|strong="G3739"\w* \w was|strong="G1510"\w* \w given|strong="G1325"\w* \w me|strong="G1325"\w*, \w to|strong="G1519"\w* \w everyone|strong="G3956"\w* \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w*, \w not|strong="G3361"\w* \w to|strong="G1519"\w* \w think|strong="G5426"\w* \w of|strong="G1223"\w* \w yourself|strong="G4771"\w* \w more|strong="G1325"\w* \w highly|strong="G5252"\w* \w than|strong="G3844"\w* \w you|strong="G5210"\w* \w ought|strong="G1163"\w* \w to|strong="G1519"\w* \w think|strong="G5426"\w*; \w but|strong="G3361"\w* \w to|strong="G1519"\w* \w think|strong="G5426"\w* reasonably, \w as|strong="G5613"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w apportioned|strong="G3307"\w* \w to|strong="G1519"\w* \w each|strong="G1538"\w* \w person|strong="G3739"\w* \w a|strong="G5613"\w* \w measure|strong="G3358"\w* \w of|strong="G1223"\w* \w faith|strong="G4102"\w*. +\v 4 \w For|strong="G1063"\w* \w even|strong="G1161"\w* \w as|strong="G1722"\w* \w we|strong="G1063"\w* \w have|strong="G2192"\w* \w many|strong="G4183"\w* \w members|strong="G3196"\w* \w in|strong="G1722"\w* \w one|strong="G1520"\w* \w body|strong="G4983"\w*, \w and|strong="G1161"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w members|strong="G3196"\w* don’\w t|strong="G3588"\w* \w have|strong="G2192"\w* \w the|strong="G1722"\w* same \w function|strong="G4234"\w*, +\v 5 \w so|strong="G3779"\w* \w we|strong="G1161"\w*, \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w many|strong="G4183"\w*, \w are|strong="G1510"\w* \w one|strong="G1520"\w* \w body|strong="G4983"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*, \w and|strong="G1161"\w* \w individually|strong="G2596"\w* \w members|strong="G3196"\w* \w of|strong="G1520"\w* \w one|strong="G1520"\w* \w another|strong="G2596"\w*, +\v 6 \w having|strong="G2192"\w* \w gifts|strong="G5486"\w* \w differing|strong="G1313"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1161"\w* \w grace|strong="G5485"\w* \w that|strong="G3588"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G2596"\w* \w us|strong="G1325"\w*: \w if|strong="G1535"\w* \w prophecy|strong="G4394"\w*, \w let|strong="G1161"\w*’\w s|strong="G2192"\w* prophesy \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1161"\w* proportion \w of|strong="G5485"\w* \w our|strong="G2596"\w* \w faith|strong="G4102"\w*; +\v 7 \w or|strong="G1535"\w* \w service|strong="G1248"\w*, let’s give ourselves \w to|strong="G1722"\w* \w service|strong="G1248"\w*; \w or|strong="G1535"\w* \w he|strong="G3588"\w* \w who|strong="G3588"\w* \w teaches|strong="G1321"\w*, \w to|strong="G1722"\w* \w his|strong="G1722"\w* \w teaching|strong="G1321"\w*; +\v 8 \w or|strong="G1535"\w* \w he|strong="G3588"\w* \w who|strong="G3588"\w* \w exhorts|strong="G3870"\w*, \w to|strong="G1722"\w* \w his|strong="G1722"\w* \w exhorting|strong="G3870"\w*; \w he|strong="G3588"\w* \w who|strong="G3588"\w* \w gives|strong="G3330"\w*, let \w him|strong="G3588"\w* \w do|strong="G1722"\w* \w it|strong="G3588"\w* \w with|strong="G1722"\w* generosity; \w he|strong="G3588"\w* \w who|strong="G3588"\w* rules, \w with|strong="G1722"\w* \w diligence|strong="G4710"\w*; \w he|strong="G3588"\w* \w who|strong="G3588"\w* \w shows|strong="G1653"\w* \w mercy|strong="G1653"\w*, \w with|strong="G1722"\w* \w cheerfulness|strong="G2432"\w*. +\p +\v 9 Let love \w be|strong="G3588"\w* \w without|strong="G3588"\w* hypocrisy. Abhor \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w evil|strong="G4190"\w*. \w Cling|strong="G2853"\w* \w to|strong="G3588"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w good|strong="G3588"\w*. +\v 10 \w In|strong="G1519"\w* \w love|strong="G5360"\w* \w of|strong="G3588"\w* \w the|strong="G1519"\w* brothers \w be|strong="G1519"\w* tenderly affectionate \w to|strong="G1519"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w*; \w in|strong="G1519"\w* \w honor|strong="G5092"\w* prefer \w one|strong="G3588"\w* \w another|strong="G3588"\w*, +\v 11 \w not|strong="G3361"\w* \w lagging|strong="G3636"\w* \w in|strong="G3588"\w* \w diligence|strong="G4710"\w*, \w fervent|strong="G2204"\w* \w in|strong="G3588"\w* \w spirit|strong="G4151"\w*, \w serving|strong="G1398"\w* \w the|strong="G3588"\w* \w Lord|strong="G2962"\w*, +\v 12 \w rejoicing|strong="G5463"\w* \w in|strong="G5463"\w* \w hope|strong="G1680"\w*, enduring \w in|strong="G5463"\w* \w troubles|strong="G2347"\w*, \w continuing|strong="G4342"\w* steadfastly \w in|strong="G5463"\w* \w prayer|strong="G4335"\w*, +\v 13 \w contributing|strong="G2841"\w* \w to|strong="G3588"\w* \w the|strong="G3588"\w* \w needs|strong="G5532"\w* \w of|strong="G5532"\w* \w the|strong="G3588"\w* saints, \w and|strong="G3588"\w* given \w to|strong="G3588"\w* \w hospitality|strong="G5381"\w*. +\p +\v 14 \w Bless|strong="G2127"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w persecute|strong="G1377"\w* \w you|strong="G5210"\w*; \w bless|strong="G2127"\w*, \w and|strong="G2532"\w* don’\w t|strong="G3588"\w* \w curse|strong="G2672"\w*. +\v 15 \w Rejoice|strong="G5463"\w* \w with|strong="G3326"\w* those who \w rejoice|strong="G5463"\w*. \w Weep|strong="G2799"\w* \w with|strong="G3326"\w* those who \w weep|strong="G2799"\w*. +\v 16 \w Be|strong="G1096"\w* \w of|strong="G3844"\w* \w the|strong="G1519"\w* same \w mind|strong="G5426"\w* \w one|strong="G1438"\w* \w toward|strong="G1519"\w* \w another|strong="G1438"\w*. Don’\w t|strong="G3588"\w* \w set|strong="G5426"\w* \w your|strong="G5426"\w* \w mind|strong="G5426"\w* \w on|strong="G1519"\w* \w high|strong="G5308"\w* \w things|strong="G3588"\w*, \w but|strong="G3361"\w* \w associate|strong="G4879"\w* \w with|strong="G3844"\w* \w the|strong="G1519"\w* \w humble|strong="G5011"\w*. Don’\w t|strong="G3588"\w* \w be|strong="G1096"\w* \w wise|strong="G5429"\w* \w in|strong="G1519"\w* \w your|strong="G5426"\w* \w own|strong="G1438"\w* \w conceits|strong="G1438"\w*. +\v 17 Repay \w no|strong="G3367"\w* \w one|strong="G3367"\w* \w evil|strong="G2556"\w* \w for|strong="G2570"\w* \w evil|strong="G2556"\w*. \w Respect|strong="G4306"\w* \w what|strong="G2556"\w* \w is|strong="G3956"\w* \w honorable|strong="G2570"\w* \w in|strong="G3956"\w* \w the|strong="G3956"\w* \w sight|strong="G1799"\w* \w of|strong="G1799"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w*. +\v 18 \w If|strong="G1487"\w* \w it|strong="G1487"\w* \w is|strong="G3588"\w* \w possible|strong="G1415"\w*, \w as|strong="G3956"\w* much \w as|strong="G3956"\w* \w it|strong="G1487"\w* \w is|strong="G3588"\w* \w up|strong="G1537"\w* \w to|strong="G3956"\w* \w you|strong="G5210"\w*, \w be|strong="G3956"\w* \w at|strong="G1537"\w* \w peace|strong="G1514"\w* \w with|strong="G3326"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w*. +\v 19 Don’\w t|strong="G3588"\w* seek \w revenge|strong="G1556"\w* \w yourselves|strong="G1438"\w*, beloved, \w but|strong="G3361"\w* \w give|strong="G1325"\w* \w place|strong="G5117"\w* \w to|strong="G3004"\w* \w God|strong="G3004"\w*’\w s|strong="G2962"\w* \w wrath|strong="G3709"\w*. \w For|strong="G1063"\w* \w it|strong="G1063"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, “\w Vengeance|strong="G1557"\w* belongs \w to|strong="G3004"\w* \w me|strong="G1325"\w*; \w I|strong="G1473"\w* \w will|strong="G2962"\w* repay, \w says|strong="G3004"\w* \w the|strong="G3588"\w* \w Lord|strong="G2962"\w*.”\x + \xo 12:19 \xt Deuteronomy 32:35\x* +\v 20 \w Therefore|strong="G1063"\w* +\q1 “\w If|strong="G1437"\w* \w your|strong="G1437"\w* \w enemy|strong="G2190"\w* \w is|strong="G3588"\w* \w hungry|strong="G3983"\w*, \w feed|strong="G5595"\w* \w him|strong="G3588"\w*. +\q2 \w If|strong="G1437"\w* \w he|strong="G3778"\w* \w is|strong="G3588"\w* \w thirsty|strong="G1372"\w*, \w give|strong="G4160"\w* \w him|strong="G3588"\w* \w a|strong="G1437"\w* \w drink|strong="G4222"\w*; +\q2 \w for|strong="G1063"\w* \w in|strong="G1909"\w* \w doing|strong="G4160"\w* \w so|strong="G1063"\w*, \w you|strong="G4771"\w* \w will|strong="G3778"\w* \w heap|strong="G4987"\w* coals \w of|strong="G1909"\w* \w fire|strong="G4442"\w* \w on|strong="G1909"\w* \w his|strong="G1909"\w* \w head|strong="G2776"\w*.”\x + \xo 12:20 \xt Proverbs 25:21-22\x* +\p +\v 21 Don’\w t|strong="G3588"\w* \w be|strong="G3361"\w* \w overcome|strong="G3528"\w* \w by|strong="G1722"\w* \w evil|strong="G2556"\w*, \w but|strong="G3361"\w* \w overcome|strong="G3528"\w* \w evil|strong="G2556"\w* \w with|strong="G1722"\w* \w good|strong="G3588"\w*. +\c 13 +\p +\v 1 \w Let|strong="G1161"\w* \w every|strong="G3956"\w* \w soul|strong="G5590"\w* \w be|strong="G1510"\w* \w in|strong="G2316"\w* \w subjection|strong="G5293"\w* \w to|strong="G1849"\w* \w the|strong="G3956"\w* \w higher|strong="G5242"\w* \w authorities|strong="G1849"\w*, \w for|strong="G1063"\w* \w there|strong="G1161"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* \w authority|strong="G1849"\w* \w except|strong="G1487"\w* \w from|strong="G5259"\w* \w God|strong="G2316"\w*, \w and|strong="G1161"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w exist|strong="G1510"\w* \w are|strong="G1510"\w* \w ordained|strong="G5021"\w* \w by|strong="G5259"\w* \w God|strong="G2316"\w*. +\v 2 \w Therefore|strong="G5620"\w* \w he|strong="G1161"\w* \w who|strong="G3588"\w* resists \w the|strong="G1161"\w* \w authority|strong="G1849"\w* withstands \w the|strong="G1161"\w* \w ordinance|strong="G1296"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*; \w and|strong="G1161"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* withstand \w will|strong="G2316"\w* \w receive|strong="G2983"\w* \w to|strong="G1849"\w* \w themselves|strong="G1438"\w* \w judgment|strong="G2917"\w*. +\v 3 \w For|strong="G1063"\w* rulers \w are|strong="G1510"\w* \w not|strong="G3756"\w* \w a|strong="G2192"\w* \w terror|strong="G5401"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w good|strong="G3756"\w* \w work|strong="G2041"\w*, \w but|strong="G1161"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w evil|strong="G2556"\w*. \w Do|strong="G4160"\w* \w you|strong="G1510"\w* \w desire|strong="G2309"\w* \w to|strong="G2532"\w* \w have|strong="G2192"\w* \w no|strong="G3756"\w* \w fear|strong="G5401"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w authority|strong="G1849"\w*? \w Do|strong="G4160"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w good|strong="G3756"\w*, \w and|strong="G2532"\w* \w you|strong="G1510"\w* \w will|strong="G2309"\w* \w have|strong="G2192"\w* \w praise|strong="G1868"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w authority|strong="G1849"\w*, +\v 4 \w for|strong="G1063"\w* \w he|strong="G1161"\w* \w is|strong="G1510"\w* \w a|strong="G1519"\w* \w servant|strong="G1249"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w to|strong="G1519"\w* \w you|strong="G4771"\w* \w for|strong="G1063"\w* \w good|strong="G3756"\w*. \w But|strong="G1161"\w* \w if|strong="G1437"\w* \w you|strong="G4771"\w* \w do|strong="G4160"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w evil|strong="G2556"\w*, \w be|strong="G1510"\w* \w afraid|strong="G5399"\w*, \w for|strong="G1063"\w* \w he|strong="G1161"\w* doesn’\w t|strong="G3588"\w* \w bear|strong="G4160"\w* \w the|strong="G1519"\w* \w sword|strong="G3162"\w* \w in|strong="G1519"\w* \w vain|strong="G1500"\w*; \w for|strong="G1063"\w* \w he|strong="G1161"\w* \w is|strong="G1510"\w* \w a|strong="G1519"\w* \w servant|strong="G1249"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w an|strong="G1519"\w* \w avenger|strong="G1558"\w* \w for|strong="G1063"\w* \w wrath|strong="G3709"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w does|strong="G4160"\w* \w evil|strong="G2556"\w*. +\v 5 \w Therefore|strong="G1352"\w* \w you|strong="G2532"\w* need \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w in|strong="G2532"\w* \w subjection|strong="G5293"\w*, \w not|strong="G3756"\w* \w only|strong="G3440"\w* \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w wrath|strong="G3709"\w*, \w but|strong="G2532"\w* \w also|strong="G2532"\w* \w for|strong="G1223"\w* \w conscience|strong="G4893"\w*’ \w sake|strong="G1223"\w*. +\v 6 \w For|strong="G1063"\w* \w this|strong="G3778"\w* \w reason|strong="G1223"\w* \w you|strong="G1510"\w* \w also|strong="G2532"\w* \w pay|strong="G5055"\w* \w taxes|strong="G5411"\w*, \w for|strong="G1063"\w* \w they|strong="G2532"\w* \w are|strong="G1510"\w* \w servants|strong="G3011"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w*’s service, \w continually|strong="G1223"\w* doing \w this|strong="G3778"\w* \w very|strong="G2532"\w* \w thing|strong="G3778"\w*. +\v 7 Therefore \w give|strong="G3956"\w* \w everyone|strong="G3956"\w* \w what|strong="G3588"\w* \w you|strong="G3956"\w* owe: if \w you|strong="G3956"\w* owe \w taxes|strong="G5411"\w*, pay \w taxes|strong="G5411"\w*; if \w customs|strong="G5056"\w*, \w then|strong="G3956"\w* \w customs|strong="G5056"\w*; if \w respect|strong="G5092"\w*, \w then|strong="G3956"\w* \w respect|strong="G5092"\w*; if \w honor|strong="G5092"\w*, \w then|strong="G3956"\w* \w honor|strong="G5092"\w*. +\p +\v 8 \w Owe|strong="G3784"\w* \w no|strong="G3361"\w* \w one|strong="G3367"\w* \w anything|strong="G3367"\w*, \w except|strong="G1487"\w* \w to|strong="G3361"\w* love \w one|strong="G3367"\w* \w another|strong="G2087"\w*; \w for|strong="G1063"\w* \w he|strong="G3588"\w* \w who|strong="G3588"\w* loves \w his|strong="G3588"\w* \w neighbor|strong="G2087"\w* \w has|strong="G4137"\w* \w fulfilled|strong="G4137"\w* \w the|strong="G3588"\w* \w law|strong="G3551"\w*. +\v 9 \w For|strong="G1063"\w* \w the|strong="G1722"\w* \w commandments|strong="G1785"\w*, “\w You|strong="G4771"\w* \w shall|strong="G2532"\w* \w not|strong="G3756"\w* \w commit|strong="G3431"\w* \w adultery|strong="G3431"\w*,” “\w You|strong="G4771"\w* \w shall|strong="G2532"\w* \w not|strong="G3756"\w* \w murder|strong="G5407"\w*,” “\w You|strong="G4771"\w* \w shall|strong="G2532"\w* \w not|strong="G3756"\w* \w steal|strong="G2813"\w*,”\f + \fr 13:9 \ft TR adds “You shall not give false testimony,”\f* “\w You|strong="G4771"\w* \w shall|strong="G2532"\w* \w not|strong="G3756"\w* \w covet|strong="G1937"\w*,”\x + \xo 13:9 \xt Exodus 20:13-15,17; Deuteronomy 5:17-19,21\x* \w and|strong="G2532"\w* \w whatever|strong="G5100"\w* \w other|strong="G2087"\w* \w commandments|strong="G1785"\w* \w there|strong="G2532"\w* \w are|strong="G3588"\w*, \w are|strong="G3588"\w* \w all|strong="G2532"\w* summed \w up|strong="G2532"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* \w saying|strong="G3056"\w*, \w namely|strong="G5613"\w*, “\w You|strong="G4771"\w* \w shall|strong="G2532"\w* love \w your|strong="G2532"\w* \w neighbor|strong="G4139"\w* \w as|strong="G5613"\w* \w yourself|strong="G4572"\w*.”\x + \xo 13:9 \xt Leviticus 19:18\x* +\v 10 Love doesn’\w t|strong="G3588"\w* \w harm|strong="G2556"\w* \w a|strong="G3756"\w* \w neighbor|strong="G4139"\w*. Love \w therefore|strong="G3767"\w* \w is|strong="G3588"\w* \w the|strong="G3588"\w* \w fulfillment|strong="G4138"\w* \w of|strong="G3551"\w* \w the|strong="G3588"\w* \w law|strong="G3551"\w*. +\p +\v 11 \w Do|strong="G1492"\w* \w this|strong="G3778"\w*, \w knowing|strong="G1492"\w* \w the|strong="G2532"\w* \w time|strong="G2540"\w*, \w that|strong="G3754"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w already|strong="G2235"\w* \w time|strong="G2540"\w* \w for|strong="G1063"\w* \w you|strong="G5210"\w* \w to|strong="G2532"\w* \w awaken|strong="G1453"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w sleep|strong="G5258"\w*, \w for|strong="G1063"\w* \w salvation|strong="G4991"\w* \w is|strong="G3588"\w* \w now|strong="G3568"\w* \w nearer|strong="G1452"\w* \w to|strong="G2532"\w* \w us|strong="G2249"\w* \w than|strong="G2228"\w* \w when|strong="G3753"\w* \w we|strong="G2249"\w* \w first|strong="G3588"\w* \w believed|strong="G4100"\w*. +\v 12 \w The|strong="G1161"\w* \w night|strong="G3571"\w* \w is|strong="G3588"\w* \w far|strong="G3588"\w* \w gone|strong="G4298"\w*, \w and|strong="G1161"\w* \w the|strong="G1161"\w* \w day|strong="G2250"\w* \w is|strong="G3588"\w* \w near|strong="G1448"\w*. \w Let|strong="G1161"\w*’s \w therefore|strong="G3767"\w* throw off \w the|strong="G1161"\w* \w deeds|strong="G2041"\w* \w of|strong="G2250"\w* \w darkness|strong="G4655"\w*, \w and|strong="G1161"\w* \w let|strong="G1161"\w*’s \w put|strong="G1746"\w* \w on|strong="G1746"\w* \w the|strong="G1161"\w* \w armor|strong="G3696"\w* \w of|strong="G2250"\w* \w light|strong="G5457"\w*. +\v 13 \w Let|strong="G2532"\w*’s \w walk|strong="G4043"\w* \w properly|strong="G2156"\w*, \w as|strong="G5613"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w*; \w not|strong="G3361"\w* \w in|strong="G1722"\w* reveling \w and|strong="G2532"\w* \w drunkenness|strong="G3178"\w*, \w not|strong="G3361"\w* \w in|strong="G1722"\w* \w sexual|strong="G2845"\w* \w promiscuity|strong="G2845"\w* \w and|strong="G2532"\w* lustful acts, \w and|strong="G2532"\w* \w not|strong="G3361"\w* \w in|strong="G1722"\w* \w strife|strong="G2054"\w* \w and|strong="G2532"\w* \w jealousy|strong="G2205"\w*. +\v 14 \w But|strong="G2532"\w* \w put|strong="G1746"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w and|strong="G2532"\w* \w make|strong="G4160"\w* \w no|strong="G3361"\w* \w provision|strong="G4307"\w* \w for|strong="G1519"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w*, \w for|strong="G1519"\w* its \w lusts|strong="G1939"\w*. +\c 14 +\p +\v 1 \w Now|strong="G1161"\w* \w accept|strong="G4355"\w* \w one|strong="G3588"\w* \w who|strong="G3588"\w* \w is|strong="G3588"\w* weak \w in|strong="G1519"\w* \w faith|strong="G4102"\w*, \w but|strong="G1161"\w* \w not|strong="G3361"\w* \w for|strong="G1519"\w* disputes \w over|strong="G1519"\w* \w opinions|strong="G1261"\w*. +\v 2 \w One|strong="G3739"\w* \w man|strong="G3956"\w* \w has|strong="G3739"\w* \w faith|strong="G3739"\w* \w to|strong="G1161"\w* \w eat|strong="G2068"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w but|strong="G1161"\w* \w he|strong="G1161"\w* \w who|strong="G3739"\w* \w is|strong="G3588"\w* weak \w eats|strong="G2068"\w* \w only|strong="G3303"\w* \w vegetables|strong="G3001"\w*. +\v 3 Don’\w t|strong="G3588"\w* \w let|strong="G1161"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w eats|strong="G2068"\w* \w despise|strong="G1848"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* doesn’\w t|strong="G3588"\w* \w eat|strong="G2068"\w*. Don’\w t|strong="G3588"\w* \w let|strong="G1161"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* doesn’\w t|strong="G3588"\w* \w eat|strong="G2068"\w* \w judge|strong="G2919"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w eats|strong="G2068"\w*, \w for|strong="G1063"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w accepted|strong="G4355"\w* \w him|strong="G3588"\w*. +\v 4 \w Who|strong="G5101"\w* \w are|strong="G1510"\w* \w you|strong="G4771"\w* \w who|strong="G5101"\w* \w judge|strong="G2919"\w* \w another|strong="G3588"\w*’\w s|strong="G2962"\w* \w servant|strong="G3610"\w*? \w To|strong="G1161"\w* \w his|strong="G2398"\w* \w own|strong="G2398"\w* \w lord|strong="G2962"\w* \w he|strong="G1161"\w* \w stands|strong="G2476"\w* \w or|strong="G2228"\w* \w falls|strong="G4098"\w*. \w Yes|strong="G1063"\w*, \w he|strong="G1161"\w* \w will|strong="G5101"\w* \w be|strong="G1510"\w* \w made|strong="G1161"\w* \w to|strong="G1161"\w* \w stand|strong="G2476"\w*, \w for|strong="G1063"\w* \w God|strong="G2962"\w* \w has|strong="G2962"\w* power \w to|strong="G1161"\w* \w make|strong="G2476"\w* \w him|strong="G3588"\w* \w stand|strong="G2476"\w*. +\p +\v 5 \w One|strong="G1538"\w* \w man|strong="G1538"\w* esteems \w one|strong="G1538"\w* \w day|strong="G2250"\w* \w as|strong="G1722"\w* \w more|strong="G1161"\w* important. \w Another|strong="G3739"\w* esteems \w every|strong="G3956"\w* \w day|strong="G2250"\w* alike. \w Let|strong="G1161"\w* \w each|strong="G1538"\w* \w man|strong="G1538"\w* \w be|strong="G3956"\w* \w fully|strong="G4135"\w* \w assured|strong="G4135"\w* \w in|strong="G1722"\w* \w his|strong="G3956"\w* \w own|strong="G2398"\w* \w mind|strong="G3563"\w*. +\v 6 \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w observes|strong="G5426"\w* \w the|strong="G2532"\w* \w day|strong="G2250"\w*, \w observes|strong="G5426"\w* \w it|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w does|strong="G2068"\w* \w not|strong="G3756"\w* observe \w the|strong="G2532"\w* \w day|strong="G2250"\w*, \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w he|strong="G2532"\w* \w does|strong="G2068"\w* \w not|strong="G3756"\w* observe \w it|strong="G2532"\w*. \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w eats|strong="G2068"\w*, \w eats|strong="G2068"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w gives|strong="G2168"\w* \w God|strong="G2316"\w* \w thanks|strong="G2168"\w*. \w He|strong="G2532"\w* \w who|strong="G3588"\w* doesn’\w t|strong="G3588"\w* \w eat|strong="G2068"\w*, \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w he|strong="G2532"\w* doesn’\w t|strong="G3588"\w* \w eat|strong="G2068"\w*, \w and|strong="G2532"\w* \w gives|strong="G2168"\w* \w God|strong="G2316"\w* \w thanks|strong="G2168"\w*. +\v 7 \w For|strong="G1063"\w* \w none|strong="G3762"\w* \w of|strong="G2532"\w* \w us|strong="G2249"\w* \w lives|strong="G2198"\w* \w to|strong="G2532"\w* \w himself|strong="G1438"\w*, \w and|strong="G2532"\w* \w none|strong="G3762"\w* dies \w to|strong="G2532"\w* \w himself|strong="G1438"\w*. +\v 8 \w For|strong="G1063"\w* \w if|strong="G1437"\w* \w we|strong="G1437"\w* \w live|strong="G2198"\w*, \w we|strong="G1437"\w* \w live|strong="G2198"\w* \w to|strong="G5037"\w* \w the|strong="G3588"\w* \w Lord|strong="G2962"\w*. \w Or|strong="G1437"\w* \w if|strong="G1437"\w* \w we|strong="G1437"\w* die, \w we|strong="G1437"\w* die \w to|strong="G5037"\w* \w the|strong="G3588"\w* \w Lord|strong="G2962"\w*. \w If|strong="G1437"\w* \w therefore|strong="G3767"\w* \w we|strong="G1437"\w* \w live|strong="G2198"\w* \w or|strong="G1437"\w* die, \w we|strong="G1437"\w* \w are|strong="G1510"\w* \w the|strong="G3588"\w* \w Lord|strong="G2962"\w*’\w s|strong="G2962"\w*. +\v 9 \w For|strong="G1063"\w* \w to|strong="G1519"\w* \w this|strong="G3778"\w* \w end|strong="G1519"\w* \w Christ|strong="G5547"\w* died, \w rose|strong="G2532"\w*, \w and|strong="G2532"\w* \w lived|strong="G2198"\w* \w again|strong="G1519"\w*, \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w be|strong="G2532"\w* \w Lord|strong="G2961"\w* \w of|strong="G2532"\w* \w both|strong="G2532"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w living|strong="G2198"\w*. +\p +\v 10 \w But|strong="G1161"\w* \w you|strong="G4771"\w*, \w why|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G4771"\w* \w judge|strong="G2919"\w* \w your|strong="G2532"\w* brother? \w Or|strong="G2228"\w* \w you|strong="G4771"\w* \w again|strong="G2532"\w*, \w why|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G4771"\w* \w despise|strong="G1848"\w* \w your|strong="G2532"\w* brother? \w For|strong="G1063"\w* \w we|strong="G1063"\w* \w will|strong="G2316"\w* \w all|strong="G3956"\w* \w stand|strong="G3936"\w* \w before|strong="G3936"\w* \w the|strong="G2532"\w* \w judgment|strong="G2919"\w* seat \w of|strong="G2316"\w* Christ. +\v 11 \w For|strong="G1063"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, +\q1 “‘\w As|strong="G2532"\w* \w I|strong="G1473"\w* \w live|strong="G2198"\w*,’ \w says|strong="G3004"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, ‘\w to|strong="G2532"\w* \w me|strong="G1473"\w* \w every|strong="G3956"\w* \w knee|strong="G1119"\w* \w will|strong="G2316"\w* \w bow|strong="G2578"\w*. +\q2 \w Every|strong="G3956"\w* \w tongue|strong="G1100"\w* \w will|strong="G2316"\w* \w confess|strong="G1843"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w*.’”\x + \xo 14:11 \xt Isaiah 45:23\x* +\p +\v 12 \w So|strong="G3767"\w* \w then|strong="G3767"\w* \w each|strong="G1538"\w* \w one|strong="G1538"\w* \w of|strong="G4012"\w* \w us|strong="G1325"\w* \w will|strong="G2316"\w* \w give|strong="G1325"\w* \w account|strong="G3056"\w* \w of|strong="G4012"\w* \w himself|strong="G1438"\w* \w to|strong="G1325"\w* \w God|strong="G2316"\w*. +\p +\v 13 \w Therefore|strong="G3767"\w* \w let|strong="G2919"\w*’s \w not|strong="G3361"\w* \w judge|strong="G2919"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w* \w any|strong="G3361"\w* \w more|strong="G3123"\w*, \w but|strong="G3361"\w* \w judge|strong="G2919"\w* \w this|strong="G3778"\w* \w rather|strong="G3123"\w*, \w that|strong="G3588"\w* \w no|strong="G3361"\w* \w man|strong="G3778"\w* \w put|strong="G5087"\w* \w a|strong="G2228"\w* \w stumbling|strong="G4625"\w* \w block|strong="G4625"\w* \w in|strong="G5087"\w* \w his|strong="G5087"\w* brother’s \w way|strong="G3778"\w*, \w or|strong="G2228"\w* \w an|strong="G2228"\w* occasion \w for|strong="G2228"\w* \w falling|strong="G5087"\w*. +\v 14 \w I|strong="G2532"\w* \w know|strong="G1492"\w* \w and|strong="G2532"\w* \w am|strong="G1510"\w* \w persuaded|strong="G3982"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w that|strong="G3754"\w* \w nothing|strong="G3762"\w* \w is|strong="G1510"\w* \w unclean|strong="G2839"\w* \w of|strong="G1223"\w* \w itself|strong="G1438"\w*; \w except|strong="G1487"\w* \w that|strong="G3754"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* considers \w anything|strong="G5100"\w* \w to|strong="G2532"\w* \w be|strong="G1510"\w* \w unclean|strong="G2839"\w*, \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w unclean|strong="G2839"\w*. +\v 15 \w Yet|strong="G1063"\w* \w if|strong="G1487"\w* \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w food|strong="G1033"\w* \w your|strong="G1223"\w* brother \w is|strong="G3588"\w* \w grieved|strong="G3076"\w*, \w you|strong="G4771"\w* \w walk|strong="G4043"\w* \w no|strong="G3361"\w* \w longer|strong="G3765"\w* \w in|strong="G2596"\w* love. Don’\w t|strong="G3588"\w* destroy \w with|strong="G1223"\w* \w your|strong="G1223"\w* \w food|strong="G1033"\w* \w him|strong="G3588"\w* \w for|strong="G1063"\w* \w whom|strong="G3739"\w* \w Christ|strong="G5547"\w* \w died|strong="G3588"\w*. +\v 16 \w Then|strong="G3767"\w* don’\w t|strong="G3588"\w* \w let|strong="G3767"\w* \w your|strong="G3588"\w* \w good|strong="G3588"\w* \w be|strong="G3361"\w* slandered, +\v 17 \w for|strong="G1063"\w* \w God|strong="G2316"\w*’s Kingdom \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w eating|strong="G1035"\w* \w and|strong="G2532"\w* \w drinking|strong="G4213"\w*, \w but|strong="G2532"\w* \w righteousness|strong="G1343"\w*, \w peace|strong="G1515"\w*, \w and|strong="G2532"\w* \w joy|strong="G5479"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*. +\v 18 \w For|strong="G1063"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w serves|strong="G1398"\w* \w Christ|strong="G5547"\w* \w in|strong="G1722"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w is|strong="G3588"\w* \w acceptable|strong="G2101"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w approved|strong="G1384"\w* \w by|strong="G1722"\w* \w men|strong="G3778"\w*. +\v 19 \w So|strong="G3767"\w* \w then|strong="G3767"\w*, \w let|strong="G3767"\w*’s \w follow|strong="G1377"\w* \w after|strong="G1377"\w* \w things|strong="G3588"\w* \w which|strong="G3588"\w* \w make|strong="G1519"\w* \w for|strong="G1519"\w* \w peace|strong="G1515"\w*, \w and|strong="G2532"\w* \w things|strong="G3588"\w* \w by|strong="G2532"\w* \w which|strong="G3588"\w* \w we|strong="G2532"\w* \w may|strong="G2532"\w* \w build|strong="G3619"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w* \w up|strong="G1519"\w*. +\v 20 Don’\w t|strong="G3588"\w* \w overthrow|strong="G2647"\w* \w God|strong="G2316"\w*’s \w work|strong="G2041"\w* \w for|strong="G1223"\w* \w food|strong="G1033"\w*’s \w sake|strong="G1223"\w*. \w All|strong="G3956"\w* \w things|strong="G3956"\w* \w indeed|strong="G3303"\w* \w are|strong="G3588"\w* \w clean|strong="G2513"\w*, \w however|strong="G3303"\w* \w it|strong="G1223"\w* \w is|strong="G3588"\w* \w evil|strong="G2556"\w* \w for|strong="G1223"\w* \w that|strong="G3588"\w* \w man|strong="G3956"\w* \w who|strong="G3588"\w* creates \w a|strong="G1223"\w* \w stumbling|strong="G4348"\w* \w block|strong="G4348"\w* \w by|strong="G1223"\w* \w eating|strong="G2068"\w*. +\v 21 \w It|strong="G3739"\w* \w is|strong="G3588"\w* \w good|strong="G2570"\w* \w to|strong="G1722"\w* \w not|strong="G3361"\w* \w eat|strong="G2068"\w* \w meat|strong="G2907"\w*, \w drink|strong="G4095"\w* \w wine|strong="G3631"\w*, \w nor|strong="G3366"\w* \w do|strong="G3361"\w* \w anything|strong="G5315"\w* \w by|strong="G1722"\w* \w which|strong="G3739"\w* \w your|strong="G1722"\w* brother \w stumbles|strong="G4350"\w*, \w is|strong="G3588"\w* \w offended|strong="G4624"\w*, \w or|strong="G2228"\w* \w is|strong="G3588"\w* made weak. +\p +\v 22 \w Do|strong="G2919"\w* \w you|strong="G4771"\w* \w have|strong="G2192"\w* \w faith|strong="G4102"\w*? \w Have|strong="G2192"\w* \w it|strong="G3739"\w* \w to|strong="G2596"\w* \w yourself|strong="G4572"\w* \w before|strong="G1799"\w* \w God|strong="G2316"\w*. \w Happy|strong="G3107"\w* \w is|strong="G3588"\w* \w he|strong="G3739"\w* \w who|strong="G3739"\w* doesn’\w t|strong="G3588"\w* \w judge|strong="G2919"\w* \w himself|strong="G1438"\w* \w in|strong="G1722"\w* \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w he|strong="G3739"\w* \w approves|strong="G1381"\w*. +\v 23 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w who|strong="G3739"\w* \w doubts|strong="G1252"\w* \w is|strong="G1510"\w* \w condemned|strong="G2632"\w* \w if|strong="G1437"\w* \w he|strong="G1161"\w* \w eats|strong="G2068"\w*, \w because|strong="G3754"\w* \w it|strong="G3754"\w* isn’\w t|strong="G3588"\w* \w of|strong="G1537"\w* \w faith|strong="G4102"\w*; \w and|strong="G1161"\w* \w whatever|strong="G3739"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w of|strong="G1537"\w* \w faith|strong="G4102"\w* \w is|strong="G1510"\w* sin. +\p +\v 24 Now to him who is able to establish you according to my Good News and the preaching of Jesus Christ, according to the revelation of the mystery which has been kept secret through long ages, +\v 25 but now is revealed, and by the Scriptures of the prophets, according to the commandment of the eternal God, is made known for obedience of faith to all the nations; +\v 26 to the only wise God, through Jesus Christ, to whom be the glory forever! Amen.\f + \fr 14:26 \ft TR places verses 24-26 after Romans 16:24 as verses 25-27. \f* +\c 15 +\p +\v 1 \w Now|strong="G1161"\w* \w we|strong="G2249"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w strong|strong="G1415"\w* \w ought|strong="G3784"\w* \w to|strong="G2532"\w* \w bear|strong="G2532"\w* \w the|strong="G2532"\w* weaknesses \w of|strong="G2532"\w* \w the|strong="G2532"\w* weak, \w and|strong="G2532"\w* \w not|strong="G3361"\w* \w to|strong="G2532"\w* please \w ourselves|strong="G1438"\w*. +\v 2 Let \w each|strong="G1538"\w* \w one|strong="G1538"\w* \w of|strong="G3588"\w* \w us|strong="G1519"\w* please \w his|strong="G1519"\w* \w neighbor|strong="G4139"\w* \w for|strong="G1519"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w good|strong="G3588"\w*, \w to|strong="G1519"\w* \w be|strong="G1519"\w* \w building|strong="G3619"\w* \w him|strong="G3588"\w* \w up|strong="G1519"\w*. +\v 3 \w For|strong="G1063"\w* \w even|strong="G2532"\w* \w Christ|strong="G5547"\w* didn’\w t|strong="G3588"\w* please \w himself|strong="G1438"\w*. \w But|strong="G2532"\w*, \w as|strong="G2531"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, “\w The|strong="G2532"\w* \w reproaches|strong="G3680"\w* \w of|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w reproached|strong="G3679"\w* \w you|strong="G4771"\w* \w fell|strong="G1968"\w* \w on|strong="G1909"\w* \w me|strong="G1473"\w*.”\x + \xo 15:3 \xt Psalms 69:9\x* +\v 4 \w For|strong="G1063"\w* \w whatever|strong="G3745"\w* \w things|strong="G3588"\w* \w were|strong="G3588"\w* \w written|strong="G1125"\w* \w before|strong="G1519"\w* \w were|strong="G3588"\w* \w written|strong="G1125"\w* \w for|strong="G1063"\w* \w our|strong="G2251"\w* \w learning|strong="G1319"\w*, \w that|strong="G2443"\w* \w through|strong="G1223"\w* \w perseverance|strong="G5281"\w* \w and|strong="G2532"\w* \w through|strong="G1223"\w* \w encouragement|strong="G3874"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w Scriptures|strong="G1124"\w* \w we|strong="G1063"\w* \w might|strong="G2532"\w* \w have|strong="G2192"\w* \w hope|strong="G1680"\w*. +\v 5 \w Now|strong="G1161"\w* \w the|strong="G1722"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* \w perseverance|strong="G5281"\w* \w and|strong="G2532"\w* \w of|strong="G2316"\w* \w encouragement|strong="G3874"\w* \w grant|strong="G1325"\w* \w you|strong="G5210"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w same|strong="G2532"\w* \w mind|strong="G5426"\w* \w with|strong="G1722"\w* \w one|strong="G3588"\w* \w another|strong="G2596"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*, +\v 6 \w that|strong="G2443"\w* \w with|strong="G1722"\w* \w one|strong="G1520"\w* \w accord|strong="G3661"\w* \w you|strong="G1722"\w* \w may|strong="G2532"\w* \w with|strong="G1722"\w* \w one|strong="G1520"\w* \w mouth|strong="G4750"\w* \w glorify|strong="G1392"\w* \w the|strong="G1722"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w Father|strong="G3962"\w* \w of|strong="G2316"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\p +\v 7 \w Therefore|strong="G1352"\w* \w accept|strong="G4355"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w Christ|strong="G5547"\w* \w also|strong="G2532"\w* \w accepted|strong="G4355"\w* \w you|strong="G5210"\w*,\f + \fr 15:7 \ft TR reads “us” instead of “you”\f* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\v 8 \w Now|strong="G1096"\w* \w I|strong="G1063"\w* \w say|strong="G3004"\w* \w that|strong="G3588"\w* \w Christ|strong="G5547"\w* \w has|strong="G2316"\w* \w been|strong="G1096"\w* \w made|strong="G1096"\w* \w a|strong="G1096"\w* \w servant|strong="G1249"\w* \w of|strong="G2316"\w* \w the|strong="G1519"\w* \w circumcision|strong="G4061"\w* \w for|strong="G1063"\w* \w the|strong="G1519"\w* truth \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w that|strong="G3588"\w* \w he|strong="G3588"\w* \w might|strong="G2316"\w* confirm \w the|strong="G1519"\w* \w promises|strong="G1860"\w* given \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w fathers|strong="G3962"\w*, +\v 9 \w and|strong="G2532"\w* \w that|strong="G3588"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w* \w might|strong="G2532"\w* \w glorify|strong="G1392"\w* \w God|strong="G2316"\w* \w for|strong="G5228"\w* \w his|strong="G1223"\w* \w mercy|strong="G1656"\w*. \w As|strong="G2531"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, +\q1 “\w Therefore|strong="G1223"\w* \w I|strong="G2532"\w* \w will|strong="G2316"\w* \w give|strong="G1843"\w* \w praise|strong="G1843"\w* \w to|strong="G2532"\w* \w you|strong="G4771"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w* +\q2 \w and|strong="G2532"\w* \w sing|strong="G5567"\w* \w to|strong="G2532"\w* \w your|strong="G1223"\w* \w name|strong="G3686"\w*.”\x + \xo 15:9 \xt 2 Samuel 22:50; Psalms 18:49\x* +\p +\v 10 \w Again|strong="G3825"\w* \w he|strong="G2532"\w* \w says|strong="G3004"\w*, +\q1 “\w Rejoice|strong="G2165"\w*, \w you|strong="G3004"\w* \w Gentiles|strong="G1484"\w*, \w with|strong="G3326"\w* \w his|strong="G2532"\w* \w people|strong="G2992"\w*.”\x + \xo 15:10 \xt Deuteronomy 32:43\x* +\p +\v 11 \w Again|strong="G3825"\w*, +\q1 “\w Praise|strong="G1867"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w all|strong="G3956"\w* \w you|strong="G3956"\w* \w Gentiles|strong="G1484"\w*! +\q2 \w Let|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w peoples|strong="G2992"\w* \w praise|strong="G1867"\w* \w him|strong="G3588"\w*.”\x + \xo 15:11 \xt Psalms 117:1\x* +\p +\v 12 \w Again|strong="G3825"\w*, \w Isaiah|strong="G2268"\w* \w says|strong="G3004"\w*, +\q1 “\w There|strong="G2532"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w the|strong="G2532"\w* \w root|strong="G4491"\w* \w of|strong="G2532"\w* \w Jesse|strong="G2421"\w*, +\q2 \w he|strong="G2532"\w* \w who|strong="G3588"\w* arises \w to|strong="G2532"\w* rule \w over|strong="G1909"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w*; +\q2 \w in|strong="G1909"\w* \w him|strong="G3588"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w* \w will|strong="G1510"\w* \w hope|strong="G1679"\w*.”\x + \xo 15:12 \xt Isaiah 11:10\x* +\p +\v 13 \w Now|strong="G1161"\w* \w may|strong="G2532"\w* \w the|strong="G1722"\w* \w God|strong="G2316"\w* \w of|strong="G4151"\w* \w hope|strong="G1680"\w* \w fill|strong="G4137"\w* \w you|strong="G5210"\w* \w with|strong="G1722"\w* \w all|strong="G3956"\w* \w joy|strong="G5479"\w* \w and|strong="G2532"\w* \w peace|strong="G1515"\w* \w in|strong="G1722"\w* \w believing|strong="G4100"\w*, \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w may|strong="G2532"\w* \w abound|strong="G4052"\w* \w in|strong="G1722"\w* \w hope|strong="G1680"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w power|strong="G1411"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*. +\p +\v 14 \w I|strong="G1473"\w* \w myself|strong="G1473"\w* \w am|strong="G1510"\w* \w also|strong="G2532"\w* \w persuaded|strong="G3982"\w* \w about|strong="G4012"\w* \w you|strong="G5210"\w*, \w my|strong="G3956"\w* brothers,\f + \fr 15:14 \ft The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”\f* \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w yourselves|strong="G4771"\w* \w are|strong="G1510"\w* \w full|strong="G3324"\w* \w of|strong="G4012"\w* goodness, \w filled|strong="G4137"\w* \w with|strong="G2532"\w* \w all|strong="G3956"\w* \w knowledge|strong="G1108"\w*, \w able|strong="G1410"\w* \w also|strong="G2532"\w* \w to|strong="G2532"\w* \w admonish|strong="G3560"\w* \w others|strong="G3588"\w*. +\v 15 \w But|strong="G1161"\w* \w I|strong="G1473"\w* \w write|strong="G1125"\w* \w the|strong="G1161"\w* \w more|strong="G1161"\w* \w boldly|strong="G5112"\w* \w to|strong="G1325"\w* \w you|strong="G5210"\w* \w in|strong="G2316"\w* \w part|strong="G3313"\w* \w as|strong="G5613"\w* reminding \w you|strong="G5210"\w*, \w because|strong="G1223"\w* \w of|strong="G5259"\w* \w the|strong="G1161"\w* \w grace|strong="G5485"\w* \w that|strong="G3588"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G1325"\w* \w me|strong="G1325"\w* \w by|strong="G1223"\w* \w God|strong="G2316"\w*, +\v 16 \w that|strong="G2443"\w* \w I|strong="G1473"\w* \w should|strong="G2316"\w* \w be|strong="G1096"\w* \w a|strong="G1096"\w* \w servant|strong="G3588"\w* \w of|strong="G4151"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w*, serving \w as|strong="G1519"\w* \w a|strong="G1096"\w* \w priest|strong="G2418"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w of|strong="G4151"\w* \w God|strong="G2316"\w*, \w that|strong="G2443"\w* \w the|strong="G1722"\w* \w offering|strong="G4376"\w* \w up|strong="G1519"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w* \w might|strong="G1484"\w* \w be|strong="G1096"\w* \w made|strong="G1096"\w* \w acceptable|strong="G2144"\w*, sanctified \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*. +\v 17 \w I|strong="G3767"\w* \w have|strong="G2192"\w* \w therefore|strong="G3767"\w* \w my|strong="G1722"\w* \w boasting|strong="G2746"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w in|strong="G1722"\w* \w things|strong="G3588"\w* \w pertaining|strong="G4314"\w* \w to|strong="G4314"\w* \w God|strong="G2316"\w*. +\v 18 \w For|strong="G1063"\w* \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w not|strong="G3756"\w* \w dare|strong="G5111"\w* \w to|strong="G1519"\w* \w speak|strong="G2980"\w* \w of|strong="G3056"\w* \w any|strong="G5100"\w* \w things|strong="G3739"\w* \w except|strong="G3756"\w* \w those|strong="G3739"\w* \w which|strong="G3739"\w* \w Christ|strong="G5547"\w* worked \w through|strong="G1223"\w* \w me|strong="G1473"\w* \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w obedience|strong="G5218"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w*, \w by|strong="G1223"\w* \w word|strong="G3056"\w* \w and|strong="G2532"\w* \w deed|strong="G2041"\w*, +\v 19 \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w power|strong="G1411"\w* \w of|strong="G4151"\w* \w signs|strong="G4592"\w* \w and|strong="G2532"\w* \w wonders|strong="G5059"\w*, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w power|strong="G1411"\w* \w of|strong="G4151"\w* \w God|strong="G2316"\w*’s \w Spirit|strong="G4151"\w*; \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w from|strong="G2532"\w* \w Jerusalem|strong="G2419"\w* \w and|strong="G2532"\w* \w around|strong="G2945"\w* \w as|strong="G1722"\w* \w far|strong="G3588"\w* \w as|strong="G1722"\w* \w to|strong="G2532"\w* \w Illyricum|strong="G2437"\w*, \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w fully|strong="G4137"\w* \w preached|strong="G4137"\w* \w the|strong="G1722"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w of|strong="G4151"\w* \w Christ|strong="G5547"\w*; +\v 20 \w yes|strong="G1161"\w*, making \w it|strong="G1161"\w* \w my|strong="G3618"\w* aim \w to|strong="G2443"\w* \w preach|strong="G2097"\w* \w the|strong="G1161"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w*, \w not|strong="G3756"\w* \w where|strong="G3699"\w* \w Christ|strong="G5547"\w* \w was|strong="G5547"\w* already \w named|strong="G3687"\w*, \w that|strong="G2443"\w* \w I|strong="G1161"\w* \w might|strong="G5547"\w* \w not|strong="G3756"\w* \w build|strong="G3618"\w* \w on|strong="G1909"\w* \w another|strong="G1909"\w*’s \w foundation|strong="G2310"\w*. +\v 21 \w But|strong="G2532"\w*, \w as|strong="G2531"\w* \w it|strong="G2532"\w* \w is|strong="G3739"\w* \w written|strong="G1125"\w*, +\q1 “\w They|strong="G2532"\w* \w will|strong="G2532"\w* \w see|strong="G3708"\w*, \w to|strong="G2532"\w* \w whom|strong="G3739"\w* \w no|strong="G3756"\w* news \w of|strong="G4012"\w* \w him|strong="G3739"\w* \w came|strong="G2532"\w*. +\q2 \w They|strong="G2532"\w* \w who|strong="G3739"\w* haven’t heard \w will|strong="G2532"\w* \w understand|strong="G4920"\w*.”\x + \xo 15:21 \xt Isaiah 52:15\x* +\p +\v 22 \w Therefore|strong="G1352"\w* \w also|strong="G2532"\w* \w I|strong="G2532"\w* \w was|strong="G3588"\w* \w hindered|strong="G1465"\w* \w these|strong="G3588"\w* \w many|strong="G4183"\w* times \w from|strong="G2064"\w* \w coming|strong="G2064"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*, +\v 23 \w but|strong="G1161"\w* \w now|strong="G1161"\w*, \w no|strong="G3371"\w* \w longer|strong="G3371"\w* \w having|strong="G2192"\w* \w any|strong="G2192"\w* \w place|strong="G5117"\w* \w in|strong="G1722"\w* \w these|strong="G3778"\w* \w regions|strong="G2824"\w*, \w and|strong="G1161"\w* \w having|strong="G2192"\w* \w these|strong="G3778"\w* \w many|strong="G4183"\w* \w years|strong="G2094"\w* \w a|strong="G2192"\w* \w longing|strong="G1974"\w* \w to|strong="G4314"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*, +\v 24 \w whenever|strong="G1437"\w* \w I|strong="G2532"\w* travel \w to|strong="G1519"\w* \w Spain|strong="G4681"\w*, \w I|strong="G2532"\w* \w will|strong="G2532"\w* \w come|strong="G2532"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w*. \w For|strong="G1063"\w* \w I|strong="G2532"\w* \w hope|strong="G1679"\w* \w to|strong="G1519"\w* \w see|strong="G2300"\w* \w you|strong="G5210"\w* \w on|strong="G1519"\w* \w my|strong="G5259"\w* \w journey|strong="G4311"\w*, \w and|strong="G2532"\w* \w to|strong="G1519"\w* \w be|strong="G2532"\w* \w helped|strong="G4311"\w* \w on|strong="G1519"\w* \w my|strong="G5259"\w* \w way|strong="G4198"\w* \w there|strong="G1563"\w* \w by|strong="G5259"\w* \w you|strong="G5210"\w*, \w if|strong="G1437"\w* \w first|strong="G4413"\w* \w I|strong="G2532"\w* \w may|strong="G2532"\w* enjoy \w your|strong="G1437"\w* company \w for|strong="G1063"\w* \w a|strong="G5613"\w* \w while|strong="G5613"\w*. +\v 25 \w But|strong="G1161"\w* \w now|strong="G1161"\w*, \w I|strong="G1161"\w* say, \w I|strong="G1161"\w* \w am|strong="G3588"\w* \w going|strong="G4198"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w*, \w serving|strong="G1247"\w* \w the|strong="G1519"\w* saints. +\v 26 \w For|strong="G1063"\w* \w it|strong="G2532"\w* \w has|strong="G5100"\w* \w been|strong="G2532"\w* \w the|strong="G1722"\w* \w good|strong="G2106"\w* \w pleasure|strong="G2106"\w* \w of|strong="G2532"\w* \w Macedonia|strong="G3109"\w* \w and|strong="G2532"\w* Achaia \w to|strong="G1519"\w* \w make|strong="G4160"\w* \w a|strong="G2532"\w* \w certain|strong="G5100"\w* \w contribution|strong="G2842"\w* \w for|strong="G1063"\w* \w the|strong="G1722"\w* \w poor|strong="G4434"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* saints \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w at|strong="G1722"\w* \w Jerusalem|strong="G2419"\w*. +\v 27 \w Yes|strong="G1063"\w*, \w it|strong="G2532"\w* \w has|strong="G1510"\w* \w been|strong="G1510"\w* \w their|strong="G2532"\w* \w good|strong="G2106"\w* \w pleasure|strong="G2106"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w are|strong="G1510"\w* \w their|strong="G2532"\w* \w debtors|strong="G3781"\w*. \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w* \w have|strong="G2532"\w* \w been|strong="G1510"\w* made \w partakers|strong="G2841"\w* \w of|strong="G2532"\w* \w their|strong="G2532"\w* \w spiritual|strong="G4152"\w* \w things|strong="G3588"\w*, \w they|strong="G2532"\w* \w owe|strong="G3784"\w* \w it|strong="G2532"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w also|strong="G2532"\w* \w to|strong="G2532"\w* serve \w them|strong="G3588"\w* \w in|strong="G1722"\w* \w material|strong="G4559"\w* \w things|strong="G3588"\w*. +\v 28 \w When|strong="G2532"\w* \w therefore|strong="G3767"\w* \w I|strong="G2532"\w* \w have|strong="G2532"\w* \w accomplished|strong="G2005"\w* \w this|strong="G3778"\w*, \w and|strong="G2532"\w* \w have|strong="G2532"\w* \w sealed|strong="G4972"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w* \w this|strong="G3778"\w* \w fruit|strong="G2590"\w*, \w I|strong="G2532"\w* \w will|strong="G2532"\w* \w go|strong="G1519"\w* \w on|strong="G1519"\w* \w by|strong="G1223"\w* \w way|strong="G1223"\w* \w of|strong="G1223"\w* \w you|strong="G5210"\w* \w to|strong="G1519"\w* \w Spain|strong="G4681"\w*. +\v 29 \w I|strong="G1161"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w when|strong="G1161"\w* \w I|strong="G1161"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*, \w I|strong="G1161"\w* \w will|strong="G3748"\w* \w come|strong="G2064"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w fullness|strong="G4138"\w* \w of|strong="G1722"\w* \w the|strong="G1722"\w* \w blessing|strong="G2129"\w* \w of|strong="G1722"\w* \w the|strong="G1722"\w* Good News \w of|strong="G1722"\w* \w Christ|strong="G5547"\w*. +\p +\v 30 \w Now|strong="G1161"\w* \w I|strong="G1473"\w* \w beg|strong="G3870"\w* \w you|strong="G5210"\w*, brothers, \w by|strong="G1223"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w and|strong="G2532"\w* \w by|strong="G1223"\w* \w the|strong="G1722"\w* love \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w*, \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w strive|strong="G4865"\w* \w together|strong="G4865"\w* \w with|strong="G1722"\w* \w me|strong="G1473"\w* \w in|strong="G1722"\w* \w your|strong="G1223"\w* \w prayers|strong="G4335"\w* \w to|strong="G4314"\w* \w God|strong="G2316"\w* \w for|strong="G5228"\w* \w me|strong="G1473"\w*, +\v 31 \w that|strong="G2443"\w* \w I|strong="G1473"\w* \w may|strong="G2532"\w* \w be|strong="G1096"\w* \w delivered|strong="G4506"\w* \w from|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* disobedient \w in|strong="G1722"\w* \w Judea|strong="G2449"\w*, \w and|strong="G2532"\w* \w that|strong="G2443"\w* \w my|strong="G1722"\w* \w service|strong="G1248"\w* \w which|strong="G3588"\w* \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w for|strong="G1519"\w* \w Jerusalem|strong="G2419"\w* \w may|strong="G2532"\w* \w be|strong="G1096"\w* \w acceptable|strong="G2144"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* saints, +\v 32 \w that|strong="G2443"\w* \w I|strong="G1223"\w* \w may|strong="G2443"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w joy|strong="G5479"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w will|strong="G2307"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w*, \w and|strong="G2064"\w* \w together|strong="G4314"\w* \w with|strong="G1722"\w* \w you|strong="G5210"\w*, \w find|strong="G4875"\w* \w rest|strong="G4875"\w*. +\v 33 \w Now|strong="G1161"\w* \w the|strong="G3956"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* \w peace|strong="G1515"\w* \w be|strong="G3956"\w* \w with|strong="G3326"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w*. Amen. +\c 16 +\p +\v 1 \w I|strong="G1473"\w* \w commend|strong="G4921"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w Phoebe|strong="G5402"\w*, \w our|strong="G2532"\w* sister, \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w a|strong="G2532"\w* \w servant|strong="G1249"\w*\f + \fr 16:1 \ft or, deacon \f* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w* \w that|strong="G3588"\w* \w is|strong="G1510"\w* \w at|strong="G1722"\w* Cenchreae, +\v 2 \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w receive|strong="G4327"\w* \w her|strong="G1438"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w in|strong="G1722"\w* \w a|strong="G1096"\w* \w way|strong="G1722"\w* worthy \w of|strong="G2532"\w* \w the|strong="G1722"\w* saints, \w and|strong="G2532"\w* \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w assist|strong="G3936"\w* \w her|strong="G1438"\w* \w in|strong="G1722"\w* \w whatever|strong="G3739"\w* \w matter|strong="G4229"\w* \w she|strong="G2532"\w* \w may|strong="G2532"\w* \w need|strong="G5535"\w* \w from|strong="G2532"\w* \w you|strong="G5210"\w*, \w for|strong="G1063"\w* \w she|strong="G2532"\w* \w herself|strong="G1438"\w* \w also|strong="G2532"\w* \w has|strong="G2962"\w* \w been|strong="G1096"\w* \w a|strong="G1096"\w* \w helper|strong="G4368"\w* \w of|strong="G2532"\w* \w many|strong="G4183"\w*, \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w my|strong="G1722"\w* \w own|strong="G1438"\w* self. +\p +\v 3 Greet \w Prisca|strong="G4251"\w* \w and|strong="G2532"\w* Aquila, \w my|strong="G1722"\w* \w fellow|strong="G4904"\w* \w workers|strong="G4904"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*, +\v 4 \w who|strong="G3739"\w* \w risked|strong="G5294"\w* \w their|strong="G1438"\w* \w own|strong="G1438"\w* \w necks|strong="G5137"\w* \w for|strong="G5228"\w* \w my|strong="G3956"\w* \w life|strong="G5590"\w*, \w to|strong="G2532"\w* \w whom|strong="G3739"\w* \w not|strong="G3756"\w* \w only|strong="G3441"\w* \w I|strong="G1473"\w* \w give|strong="G2168"\w* \w thanks|strong="G2168"\w*, \w but|strong="G2532"\w* \w also|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w assemblies|strong="G1577"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w*. +\v 5 Greet \w the|strong="G2532"\w* \w assembly|strong="G1577"\w* \w that|strong="G3739"\w* \w is|strong="G1510"\w* \w in|strong="G1519"\w* \w their|strong="G2532"\w* \w house|strong="G3624"\w*. Greet \w Epaenetus|strong="G1866"\w*, \w my|strong="G1473"\w* beloved, \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w first|strong="G3588"\w* fruits \w of|strong="G2532"\w* Achaia \w to|strong="G1519"\w* \w Christ|strong="G5547"\w*. +\v 6 Greet \w Mary|strong="G3137"\w*, \w who|strong="G3748"\w* \w labored|strong="G2872"\w* \w much|strong="G4183"\w* \w for|strong="G1519"\w* \w us|strong="G1519"\w*. +\v 7 Greet Andronicus \w and|strong="G2532"\w* \w Junia|strong="G2458"\w*, \w my|strong="G1722"\w* \w relatives|strong="G4773"\w* \w and|strong="G2532"\w* \w my|strong="G1722"\w* \w fellow|strong="G4869"\w* \w prisoners|strong="G4869"\w*, \w who|strong="G3739"\w* \w are|strong="G1510"\w* \w notable|strong="G1978"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* apostles, \w who|strong="G3739"\w* \w were|strong="G1510"\w* \w also|strong="G2532"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w before|strong="G4253"\w* \w me|strong="G1473"\w*. +\v 8 Greet Amplias, \w my|strong="G1722"\w* beloved \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\v 9 Greet \w Urbanus|strong="G3773"\w*, \w our|strong="G2532"\w* \w fellow|strong="G4904"\w* \w worker|strong="G4904"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*, \w and|strong="G2532"\w* \w Stachys|strong="G4720"\w*, \w my|strong="G1722"\w* beloved. +\v 10 Greet Apelles, \w the|strong="G1722"\w* \w approved|strong="G1384"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*. Greet \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* household \w of|strong="G1537"\w* Aristobulus. +\v 11 Greet \w Herodion|strong="G2267"\w*, \w my|strong="G1722"\w* \w kinsman|strong="G4773"\w*. Greet \w them|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* household \w of|strong="G1537"\w* \w Narcissus|strong="G3488"\w*, \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\v 12 Greet \w Tryphaena|strong="G5170"\w* \w and|strong="G2532"\w* \w Tryphosa|strong="G5173"\w*, \w who|strong="G3588"\w* \w labor|strong="G2872"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. Greet \w Persis|strong="G4069"\w*, \w the|strong="G1722"\w* beloved, \w who|strong="G3588"\w* \w labored|strong="G2872"\w* \w much|strong="G4183"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\v 13 Greet \w Rufus|strong="G4504"\w*, \w the|strong="G1722"\w* \w chosen|strong="G1588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w and|strong="G2532"\w* \w his|strong="G1722"\w* \w mother|strong="G3384"\w* \w and|strong="G2532"\w* \w mine|strong="G1473"\w*. +\v 14 Greet Asyncritus, \w Phlegon|strong="G5393"\w*, \w Hermes|strong="G2060"\w*, \w Patrobas|strong="G3969"\w*, \w Hermas|strong="G2057"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* brothers\f + \fr 16:14 \ft The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”\f* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w with|strong="G4862"\w* \w them|strong="G3588"\w*. +\v 15 Greet \w Philologus|strong="G5378"\w* \w and|strong="G2532"\w* \w Julia|strong="G2456"\w*, \w Nereus|strong="G3517"\w* \w and|strong="G2532"\w* \w his|strong="G3956"\w* sister, \w and|strong="G2532"\w* \w Olympas|strong="G3652"\w*, \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* saints \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w with|strong="G4862"\w* \w them|strong="G3588"\w*. +\v 16 Greet \w one|strong="G3956"\w* \w another|strong="G3588"\w* \w with|strong="G1722"\w* \w a|strong="G1722"\w* holy \w kiss|strong="G5370"\w*. \w The|strong="G1722"\w* \w assemblies|strong="G1577"\w* \w of|strong="G1577"\w* \w Christ|strong="G5547"\w* greet \w you|strong="G5210"\w*. +\p +\v 17 \w Now|strong="G1161"\w* \w I|strong="G3739"\w* \w beg|strong="G3870"\w* \w you|strong="G5210"\w*, brothers, \w look|strong="G4648"\w* \w out|strong="G2532"\w* \w for|strong="G1161"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w are|strong="G3588"\w* \w causing|strong="G4160"\w* \w the|strong="G2532"\w* \w divisions|strong="G1370"\w* \w and|strong="G2532"\w* occasions \w of|strong="G2532"\w* \w stumbling|strong="G4625"\w*, \w contrary|strong="G3844"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w doctrine|strong="G1322"\w* \w which|strong="G3739"\w* \w you|strong="G5210"\w* \w learned|strong="G3129"\w*, \w and|strong="G2532"\w* \w turn|strong="G1578"\w* \w away|strong="G1578"\w* \w from|strong="G3844"\w* \w them|strong="G3588"\w*. +\v 18 \w For|strong="G1063"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w such|strong="G5108"\w* don’\w t|strong="G3588"\w* \w serve|strong="G1398"\w* \w our|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2532"\w* \w Christ|strong="G5547"\w*, \w but|strong="G2532"\w* \w their|strong="G1438"\w* \w own|strong="G1438"\w* \w belly|strong="G2836"\w*; \w and|strong="G2532"\w* \w by|strong="G1223"\w* \w their|strong="G1438"\w* \w smooth|strong="G5542"\w* \w and|strong="G2532"\w* \w flattering|strong="G2129"\w* \w speech|strong="G2129"\w* \w they|strong="G2532"\w* \w deceive|strong="G1818"\w* \w the|strong="G2532"\w* \w hearts|strong="G2588"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* innocent. +\v 19 \w For|strong="G1063"\w* \w your|strong="G3956"\w* \w obedience|strong="G5218"\w* \w has|strong="G1510"\w* \w become|strong="G1510"\w* known \w to|strong="G1519"\w* \w all|strong="G3956"\w*. \w I|strong="G1161"\w* \w rejoice|strong="G5463"\w* \w therefore|strong="G3767"\w* \w over|strong="G1909"\w* \w you|strong="G5210"\w*. \w But|strong="G1161"\w* \w I|strong="G1161"\w* \w desire|strong="G2309"\w* \w to|strong="G1519"\w* \w have|strong="G2309"\w* \w you|strong="G5210"\w* \w wise|strong="G4680"\w* \w in|strong="G1519"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w good|strong="G3956"\w*, \w but|strong="G1161"\w* innocent \w in|strong="G1519"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w evil|strong="G2556"\w*. +\v 20 \w And|strong="G1161"\w* \w the|strong="G1722"\w* \w God|strong="G2316"\w* \w of|strong="G5259"\w* \w peace|strong="G1515"\w* \w will|strong="G2316"\w* \w quickly|strong="G5034"\w* \w crush|strong="G4937"\w* \w Satan|strong="G4567"\w* \w under|strong="G5259"\w* \w your|strong="G2962"\w* \w feet|strong="G4228"\w*. +\p \w The|strong="G1722"\w* \w grace|strong="G5485"\w* \w of|strong="G5259"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w be|strong="G2316"\w* \w with|strong="G3326"\w* \w you|strong="G5210"\w*. +\p +\v 21 \w Timothy|strong="G5095"\w*, \w my|strong="G1473"\w* \w fellow|strong="G4904"\w* \w worker|strong="G4904"\w*, greets \w you|strong="G5210"\w*, \w as|strong="G2532"\w* \w do|strong="G2532"\w* \w Lucius|strong="G3066"\w*, \w Jason|strong="G2394"\w*, \w and|strong="G2532"\w* \w Sosipater|strong="G4989"\w*, \w my|strong="G1473"\w* \w relatives|strong="G4773"\w*. +\v 22 \w I|strong="G1473"\w*, \w Tertius|strong="G5060"\w*, \w who|strong="G3588"\w* \w write|strong="G1125"\w* \w the|strong="G1722"\w* \w letter|strong="G1992"\w*, greet \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\v 23 \w Gaius|strong="G1050"\w*, \w my|strong="G1473"\w* \w host|strong="G3581"\w* \w and|strong="G2532"\w* \w host|strong="G3581"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w whole|strong="G3650"\w* \w assembly|strong="G1577"\w*, greets \w you|strong="G5210"\w*. \w Erastus|strong="G2037"\w*, \w the|strong="G2532"\w* \w treasurer|strong="G3623"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w*, greets \w you|strong="G5210"\w*, \w as|strong="G2532"\w* does \w Quartus|strong="G2890"\w*, \w the|strong="G2532"\w* brother. +\v 24 \w The|strong="G3956"\w* \w grace|strong="G5485"\w* \w of|strong="G5485"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w be|strong="G3956"\w* \w with|strong="G3326"\w* \w you|strong="G4771"\w* \w all|strong="G3956"\w*! Amen. +\v 25 \f + \fr 16:25 \ft TR places Romans 14:24-26 at the end of Romans instead of at the end of chapter 14, and numbers these verses 16:25-27.\f* \ No newline at end of file diff --git a/bibles/eng-web_usfm/76-1COeng-web.usfm b/bibles/eng-web_usfm/76-1COeng-web.usfm new file mode 100644 index 0000000..2386dee --- /dev/null +++ b/bibles/eng-web_usfm/76-1COeng-web.usfm @@ -0,0 +1,555 @@ +\id 1CO 46-1CO-web.sfm World English Bible (WEB) +\ide UTF-8 +\h 1 Corinthians +\toc1 Paul’s First Letter to the Corinthians +\toc2 1 Corinthians +\toc3 1Co +\mt1 Paul’s First Letter to the Corinthians +\c 1 +\p +\v 1 \w Paul|strong="G3972"\w*, \w called|strong="G2822"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w an|strong="G2532"\w* apostle \w of|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*\f + \fr 1:1 \ft “Christ” means “Anointed One”.\f* \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w will|strong="G2307"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w our|strong="G2316"\w* brother \w Sosthenes|strong="G4988"\w*, +\v 2 \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w at|strong="G1722"\w* \w Corinth|strong="G2882"\w*—\w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w sanctified|strong="G3956"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*, \w called|strong="G2822"\w* saints, \w with|strong="G1722"\w* \w all|strong="G3956"\w* \w who|strong="G3588"\w* \w call|strong="G1941"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G2316"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w in|strong="G1722"\w* \w every|strong="G3956"\w* \w place|strong="G5117"\w*, \w both|strong="G2532"\w* theirs \w and|strong="G2532"\w* \w ours|strong="G1473"\w*: +\v 3 \w Grace|strong="G5485"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w peace|strong="G1515"\w* \w from|strong="G1515"\w* \w God|strong="G2316"\w* \w our|strong="G2316"\w* \w Father|strong="G3962"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\p +\v 4 \w I|strong="G1473"\w* \w always|strong="G3842"\w* \w thank|strong="G2168"\w* \w my|strong="G1722"\w* \w God|strong="G2316"\w* \w concerning|strong="G4012"\w* \w you|strong="G5210"\w* \w for|strong="G4012"\w* \w the|strong="G1722"\w* \w grace|strong="G5485"\w* \w of|strong="G4012"\w* \w God|strong="G2316"\w* \w which|strong="G3588"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*, +\v 5 \w that|strong="G3754"\w* \w in|strong="G1722"\w* \w everything|strong="G3956"\w* \w you|strong="G3754"\w* \w were|strong="G2532"\w* \w enriched|strong="G4148"\w* \w in|strong="G1722"\w* \w him|strong="G2532"\w*, \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w speech|strong="G3056"\w* \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w knowledge|strong="G1108"\w*— +\v 6 \w even|strong="G2531"\w* \w as|strong="G2531"\w* \w the|strong="G1722"\w* \w testimony|strong="G3142"\w* \w of|strong="G1722"\w* \w Christ|strong="G5547"\w* \w was|strong="G3588"\w* confirmed \w in|strong="G1722"\w* \w you|strong="G5210"\w*— +\v 7 \w so|strong="G5620"\w* \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w come|strong="G5302"\w* \w behind|strong="G5302"\w* \w in|strong="G1722"\w* \w no|strong="G3361"\w* \w gift|strong="G5486"\w*, waiting \w for|strong="G1722"\w* \w the|strong="G1722"\w* revelation \w of|strong="G2962"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, +\v 8 \w who|strong="G3739"\w* \w will|strong="G2532"\w* \w also|strong="G2532"\w* confirm \w you|strong="G5210"\w* \w until|strong="G2193"\w* \w the|strong="G1722"\w* \w end|strong="G5056"\w*, blameless \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\v 9 \w God|strong="G2316"\w* \w is|strong="G3588"\w* \w faithful|strong="G4103"\w*, \w through|strong="G1223"\w* \w whom|strong="G3739"\w* \w you|strong="G3739"\w* \w were|strong="G3588"\w* \w called|strong="G2564"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w fellowship|strong="G2842"\w* \w of|strong="G5207"\w* \w his|strong="G1223"\w* \w Son|strong="G5207"\w*, \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w*. +\p +\v 10 \w Now|strong="G1161"\w* \w I|strong="G1473"\w* \w beg|strong="G3870"\w* \w you|strong="G5210"\w*, brothers,\f + \fr 1:10 \ft The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”\f* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G1223"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w*, \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w* \w speak|strong="G3004"\w* \w the|strong="G1722"\w* \w same|strong="G2532"\w* \w thing|strong="G3956"\w*, \w and|strong="G2532"\w* \w that|strong="G2443"\w* \w there|strong="G2532"\w* \w be|strong="G1510"\w* \w no|strong="G3361"\w* \w divisions|strong="G4978"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w*, \w but|strong="G1161"\w* \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w be|strong="G1510"\w* perfected \w together|strong="G2675"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w same|strong="G2532"\w* \w mind|strong="G3563"\w* \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w same|strong="G2532"\w* \w judgment|strong="G1106"\w*. +\v 11 \w For|strong="G1063"\w* \w it|strong="G3754"\w* \w has|strong="G3748"\w* \w been|strong="G1510"\w* reported \w to|strong="G1722"\w* \w me|strong="G1473"\w* \w concerning|strong="G4012"\w* \w you|strong="G5210"\w*, \w my|strong="G1722"\w* brothers, \w by|strong="G1722"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w from|strong="G5259"\w* \w Chloe|strong="G5514"\w*’s household, \w that|strong="G3754"\w* \w there|strong="G1063"\w* \w are|strong="G1510"\w* \w contentions|strong="G2054"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w*. +\v 12 \w Now|strong="G1161"\w* \w I|strong="G1473"\w* \w mean|strong="G3004"\w* \w this|strong="G3778"\w*, \w that|strong="G3754"\w* \w each|strong="G1538"\w* \w one|strong="G1538"\w* \w of|strong="G1538"\w* \w you|strong="G5210"\w* \w says|strong="G3004"\w*, “\w I|strong="G1473"\w* \w follow|strong="G1161"\w* \w Paul|strong="G3972"\w*,” “\w I|strong="G1473"\w* \w follow|strong="G1161"\w* Apollos,” “\w I|strong="G1473"\w* \w follow|strong="G1161"\w* \w Cephas|strong="G2786"\w*,” \w and|strong="G1161"\w*, “\w I|strong="G1473"\w* \w follow|strong="G1161"\w* \w Christ|strong="G5547"\w*.” +\v 13 \w Is|strong="G3588"\w* \w Christ|strong="G5547"\w* \w divided|strong="G3307"\w*? \w Was|strong="G3588"\w* \w Paul|strong="G3972"\w* \w crucified|strong="G4717"\w* \w for|strong="G1519"\w* \w you|strong="G5210"\w*? \w Or|strong="G2228"\w* \w were|strong="G3588"\w* \w you|strong="G5210"\w* baptized \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w name|strong="G3686"\w* \w of|strong="G3686"\w* \w Paul|strong="G3972"\w*? +\v 14 \w I|strong="G2532"\w* \w thank|strong="G2168"\w* \w God|strong="G2532"\w* \w that|strong="G3754"\w* \w I|strong="G2532"\w* baptized \w none|strong="G3762"\w* \w of|strong="G2532"\w* \w you|strong="G5210"\w* \w except|strong="G1487"\w* \w Crispus|strong="G2921"\w* \w and|strong="G2532"\w* \w Gaius|strong="G1050"\w*, +\v 15 \w so|strong="G2443"\w* \w that|strong="G3754"\w* \w no|strong="G3361"\w* \w one|strong="G5100"\w* \w should|strong="G5100"\w* \w say|strong="G3004"\w* \w that|strong="G3754"\w* \w I|strong="G3754"\w* \w had|strong="G3588"\w* baptized \w you|strong="G3754"\w* \w into|strong="G1519"\w* \w my|strong="G1699"\w* \w own|strong="G1699"\w* \w name|strong="G3686"\w*. +\v 16 (\w I|strong="G2532"\w* \w also|strong="G2532"\w* baptized \w the|strong="G2532"\w* \w household|strong="G3624"\w* \w of|strong="G2532"\w* \w Stephanas|strong="G4734"\w*; \w besides|strong="G3063"\w* \w them|strong="G3588"\w*, \w I|strong="G2532"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w whether|strong="G1487"\w* \w I|strong="G2532"\w* baptized \w any|strong="G5100"\w* \w other|strong="G1161"\w*.) +\v 17 \w For|strong="G1063"\w* \w Christ|strong="G5547"\w* sent \w me|strong="G1473"\w* \w not|strong="G3756"\w* \w to|strong="G2443"\w* baptize, \w but|strong="G3361"\w* \w to|strong="G2443"\w* \w preach|strong="G2097"\w* \w the|strong="G1722"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w*—\w not|strong="G3756"\w* \w in|strong="G1722"\w* \w wisdom|strong="G4678"\w* \w of|strong="G3056"\w* \w words|strong="G3056"\w*, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w the|strong="G1722"\w* \w cross|strong="G4716"\w* \w of|strong="G3056"\w* \w Christ|strong="G5547"\w* wouldn’\w t|strong="G3588"\w* \w be|strong="G3756"\w* \w made|strong="G2758"\w* \w void|strong="G2758"\w*. +\v 18 \w For|strong="G1063"\w* \w the|strong="G1161"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w the|strong="G1161"\w* \w cross|strong="G4716"\w* \w is|strong="G1510"\w* \w foolishness|strong="G3472"\w* \w to|strong="G1161"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* dying, \w but|strong="G1161"\w* \w to|strong="G1161"\w* \w us|strong="G2249"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w being|strong="G1510"\w* \w saved|strong="G4982"\w* \w it|strong="G1161"\w* \w is|strong="G1510"\w* \w the|strong="G1161"\w* \w power|strong="G1411"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w*. +\v 19 \w For|strong="G1063"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, +\q1 “\w I|strong="G2532"\w* \w will|strong="G2532"\w* destroy \w the|strong="G2532"\w* \w wisdom|strong="G4678"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w wise|strong="G4680"\w*. +\q2 \w I|strong="G2532"\w* \w will|strong="G2532"\w* \w bring|strong="G2532"\w* \w the|strong="G2532"\w* discernment \w of|strong="G2532"\w* \w the|strong="G2532"\w* discerning \w to|strong="G2532"\w* nothing.”\x + \xo 1:19 \xt Isaiah 29:14\x* +\p +\v 20 \w Where|strong="G4226"\w* \w is|strong="G3588"\w* \w the|strong="G3588"\w* \w wise|strong="G4680"\w*? \w Where|strong="G4226"\w* \w is|strong="G3588"\w* \w the|strong="G3588"\w* \w scribe|strong="G1122"\w*? \w Where|strong="G4226"\w* \w is|strong="G3588"\w* \w the|strong="G3588"\w* \w debater|strong="G4804"\w* \w of|strong="G2316"\w* \w this|strong="G3778"\w* \w age|strong="G2889"\w*? Hasn’\w t|strong="G3588"\w* \w God|strong="G2316"\w* \w made|strong="G2316"\w* \w foolish|strong="G3471"\w* \w the|strong="G3588"\w* \w wisdom|strong="G4678"\w* \w of|strong="G2316"\w* \w this|strong="G3778"\w* \w world|strong="G2889"\w*? +\v 21 \w For|strong="G1063"\w* \w seeing|strong="G1894"\w* \w that|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wisdom|strong="G4678"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w*, \w the|strong="G1722"\w* \w world|strong="G2889"\w* \w through|strong="G1223"\w* \w its|strong="G1223"\w* \w wisdom|strong="G4678"\w* didn’\w t|strong="G3588"\w* \w know|strong="G1097"\w* \w God|strong="G2316"\w*, \w it|strong="G1063"\w* \w was|strong="G3588"\w* \w God|strong="G2316"\w*’s \w good|strong="G2106"\w* \w pleasure|strong="G2106"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w foolishness|strong="G3472"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* \w preaching|strong="G2782"\w* \w to|strong="G1722"\w* \w save|strong="G4982"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w believe|strong="G4100"\w*. +\v 22 \w For|strong="G2212"\w* \w Jews|strong="G2453"\w* ask \w for|strong="G2212"\w* \w signs|strong="G4592"\w*, \w Greeks|strong="G1672"\w* \w seek|strong="G2212"\w* \w after|strong="G2532"\w* \w wisdom|strong="G4678"\w*, +\v 23 \w but|strong="G1161"\w* \w we|strong="G2249"\w* \w preach|strong="G2784"\w* \w Christ|strong="G5547"\w* \w crucified|strong="G4717"\w*, \w a|strong="G1161"\w* \w stumbling|strong="G4625"\w* \w block|strong="G4625"\w* \w to|strong="G1161"\w* \w Jews|strong="G2453"\w* \w and|strong="G1161"\w* \w foolishness|strong="G3472"\w* \w to|strong="G1161"\w* Greeks, +\v 24 \w but|strong="G1161"\w* \w to|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w called|strong="G2822"\w*, \w both|strong="G2532"\w* \w Jews|strong="G2453"\w* \w and|strong="G2532"\w* \w Greeks|strong="G1672"\w*, \w Christ|strong="G5547"\w* \w is|strong="G3588"\w* \w the|strong="G2532"\w* \w power|strong="G1411"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w wisdom|strong="G4678"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*; +\v 25 \w because|strong="G3754"\w* \w the|strong="G2532"\w* \w foolishness|strong="G3474"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w is|strong="G1510"\w* \w wiser|strong="G4680"\w* \w than|strong="G2478"\w* \w men|strong="G3588"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* weakness \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w is|strong="G1510"\w* \w stronger|strong="G2478"\w* \w than|strong="G2478"\w* \w men|strong="G3588"\w*. +\p +\v 26 \w For|strong="G1063"\w* \w you|strong="G5210"\w* see \w your|strong="G3588"\w* \w calling|strong="G2821"\w*, brothers, \w that|strong="G3754"\w* \w not|strong="G3756"\w* \w many|strong="G4183"\w* \w are|strong="G3588"\w* \w wise|strong="G4680"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G2596"\w* \w flesh|strong="G4561"\w*, \w not|strong="G3756"\w* \w many|strong="G4183"\w* \w mighty|strong="G1415"\w*, \w and|strong="G4561"\w* \w not|strong="G3756"\w* \w many|strong="G4183"\w* \w noble|strong="G2104"\w*; +\v 27 \w but|strong="G2532"\w* \w God|strong="G2316"\w* \w chose|strong="G1586"\w* \w the|strong="G2532"\w* \w foolish|strong="G3474"\w* \w things|strong="G3588"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w* \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w put|strong="G2617"\w* \w to|strong="G2443"\w* \w shame|strong="G2617"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w wise|strong="G4680"\w*. \w God|strong="G2316"\w* \w chose|strong="G1586"\w* \w the|strong="G2532"\w* weak \w things|strong="G3588"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w* \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w put|strong="G2617"\w* \w to|strong="G2443"\w* \w shame|strong="G2617"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w that|strong="G2443"\w* \w are|strong="G3588"\w* \w strong|strong="G2478"\w*. +\v 28 \w God|strong="G2316"\w* \w chose|strong="G1586"\w* \w the|strong="G2532"\w* lowly \w things|strong="G3588"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w that|strong="G2443"\w* \w are|strong="G1510"\w* \w despised|strong="G1848"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w that|strong="G2443"\w* don’\w t|strong="G3588"\w* \w exist|strong="G1510"\w*, \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w bring|strong="G2532"\w* \w to|strong="G2443"\w* \w nothing|strong="G3361"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w that|strong="G2443"\w* \w exist|strong="G1510"\w*, +\v 29 \w that|strong="G3588"\w* \w no|strong="G3361"\w* \w flesh|strong="G4561"\w* \w should|strong="G2316"\w* \w boast|strong="G2744"\w* \w before|strong="G1799"\w* \w God|strong="G2316"\w*. +\v 30 \w Because|strong="G1537"\w* \w of|strong="G1537"\w* \w him|strong="G3739"\w*, \w you|strong="G5210"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*, \w who|strong="G3739"\w* \w was|strong="G1510"\w* \w made|strong="G1096"\w* \w to|strong="G2532"\w* \w us|strong="G2249"\w* \w wisdom|strong="G4678"\w* \w from|strong="G1537"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w righteousness|strong="G1343"\w* \w and|strong="G2532"\w* sanctification, \w and|strong="G2532"\w* redemption, +\v 31 \w that|strong="G2443"\w*, \w as|strong="G2531"\w* \w it|strong="G2531"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, “\w He|strong="G3588"\w* \w who|strong="G3588"\w* \w boasts|strong="G2744"\w*, \w let|strong="G2443"\w* \w him|strong="G3588"\w* \w boast|strong="G2744"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*.”\x + \xo 1:31 \xt Jeremiah 9:24\x* +\c 2 +\p +\v 1 \w When|strong="G2064"\w* \w I|strong="G2504"\w* \w came|strong="G2064"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*, brothers, \w I|strong="G2504"\w* didn’\w t|strong="G3588"\w* \w come|strong="G2064"\w* \w with|strong="G4314"\w* excellence \w of|strong="G3056"\w* \w speech|strong="G3056"\w* \w or|strong="G2228"\w* \w of|strong="G3056"\w* \w wisdom|strong="G4678"\w*, \w proclaiming|strong="G2605"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w* \w the|strong="G2596"\w* \w testimony|strong="G3142"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w*. +\v 2 \w For|strong="G1063"\w* \w I|strong="G2532"\w* \w determined|strong="G2919"\w* \w not|strong="G3756"\w* \w to|strong="G2532"\w* \w know|strong="G1492"\w* \w anything|strong="G5100"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w* \w except|strong="G1487"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w and|strong="G2532"\w* \w him|strong="G2532"\w* \w crucified|strong="G4717"\w*. +\v 3 \w I|strong="G2532"\w* \w was|strong="G1096"\w* \w with|strong="G1722"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* weakness, \w in|strong="G1722"\w* \w fear|strong="G5401"\w*, \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w much|strong="G4183"\w* \w trembling|strong="G5156"\w*. +\v 4 \w My|strong="G1722"\w* \w speech|strong="G3056"\w* \w and|strong="G2532"\w* \w my|strong="G1722"\w* \w preaching|strong="G2782"\w* \w were|strong="G3588"\w* \w not|strong="G3756"\w* \w in|strong="G1722"\w* \w persuasive|strong="G3981"\w* \w words|strong="G3056"\w* \w of|strong="G3056"\w* human \w wisdom|strong="G4678"\w*, \w but|strong="G2532"\w* \w in|strong="G1722"\w* demonstration \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w and|strong="G2532"\w* \w of|strong="G3056"\w* \w power|strong="G1411"\w*, +\v 5 \w that|strong="G2443"\w* \w your|strong="G1722"\w* \w faith|strong="G4102"\w* wouldn’\w t|strong="G3588"\w* \w stand|strong="G5210"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wisdom|strong="G4678"\w* \w of|strong="G2316"\w* \w men|strong="G3588"\w*, \w but|strong="G3361"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w power|strong="G1411"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\p +\v 6 \w We|strong="G1161"\w* \w speak|strong="G2980"\w* \w wisdom|strong="G4678"\w*, \w however|strong="G1161"\w*, \w among|strong="G1722"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w full|strong="G1722"\w* grown, \w yet|strong="G1161"\w* \w a|strong="G1722"\w* \w wisdom|strong="G4678"\w* \w not|strong="G3756"\w* \w of|strong="G1722"\w* \w this|strong="G3778"\w* world \w nor|strong="G3761"\w* \w of|strong="G1722"\w* \w the|strong="G1722"\w* rulers \w of|strong="G1722"\w* \w this|strong="G3778"\w* world \w who|strong="G3588"\w* \w are|strong="G3588"\w* coming \w to|strong="G1722"\w* \w nothing|strong="G3756"\w*. +\v 7 \w But|strong="G2316"\w* \w we|strong="G2249"\w* \w speak|strong="G2980"\w* \w God|strong="G2316"\w*’s \w wisdom|strong="G4678"\w* \w in|strong="G1722"\w* \w a|strong="G1519"\w* \w mystery|strong="G3466"\w*, \w the|strong="G1722"\w* \w wisdom|strong="G4678"\w* \w that|strong="G3739"\w* \w has|strong="G2316"\w* been hidden, \w which|strong="G3739"\w* \w God|strong="G2316"\w* foreordained \w before|strong="G4253"\w* \w the|strong="G1722"\w* worlds \w for|strong="G1519"\w* \w our|strong="G2316"\w* \w glory|strong="G1391"\w*, +\v 8 \w which|strong="G3739"\w* \w none|strong="G3762"\w* \w of|strong="G1391"\w* \w the|strong="G3588"\w* rulers \w of|strong="G1391"\w* \w this|strong="G3778"\w* world \w has|strong="G2962"\w* \w known|strong="G1097"\w*. \w For|strong="G1063"\w* \w had|strong="G3739"\w* \w they|strong="G3588"\w* \w known|strong="G1097"\w* \w it|strong="G1063"\w*, \w they|strong="G3588"\w* wouldn’\w t|strong="G3588"\w* \w have|strong="G3588"\w* \w crucified|strong="G4717"\w* \w the|strong="G3588"\w* \w Lord|strong="G2962"\w* \w of|strong="G1391"\w* \w glory|strong="G1391"\w*. +\v 9 \w But|strong="G2532"\w* \w as|strong="G2531"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, +\q1 “\w Things|strong="G3588"\w* \w which|strong="G3739"\w* \w an|strong="G2532"\w* \w eye|strong="G3788"\w* didn’\w t|strong="G3588"\w* \w see|strong="G3708"\w*, \w and|strong="G2532"\w* \w an|strong="G2532"\w* \w ear|strong="G3775"\w* didn’\w t|strong="G3588"\w* hear, +\q2 \w which|strong="G3739"\w* didn’\w t|strong="G3588"\w* \w enter|strong="G3756"\w* \w into|strong="G1909"\w* \w the|strong="G2532"\w* \w heart|strong="G2588"\w* \w of|strong="G2316"\w* \w man|strong="G2588"\w*, +\q2 \w these|strong="G3739"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w prepared|strong="G2090"\w* \w for|strong="G1909"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* love \w him|strong="G3588"\w*.”\x + \xo 2:9 \xt Isaiah 64:4\x* +\p +\v 10 \w But|strong="G1161"\w* \w to|strong="G2532"\w* \w us|strong="G2249"\w*, \w God|strong="G2316"\w* revealed \w them|strong="G3588"\w* \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w*. \w For|strong="G1063"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w* \w searches|strong="G2045"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w yes|strong="G1063"\w*, \w the|strong="G2532"\w* deep \w things|strong="G3956"\w* \w of|strong="G4151"\w* \w God|strong="G2316"\w*. +\v 11 \w For|strong="G1063"\w* \w who|strong="G5101"\w* \w among|strong="G1722"\w* \w men|strong="G3588"\w* \w knows|strong="G1097"\w* \w the|strong="G1722"\w* \w things|strong="G3588"\w* \w of|strong="G4151"\w* \w a|strong="G2532"\w* \w man|strong="G3762"\w* \w except|strong="G1487"\w* \w the|strong="G1722"\w* \w spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w man|strong="G3762"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*? \w Even|strong="G2532"\w* \w so|strong="G3779"\w*, \w no|strong="G3762"\w* \w one|strong="G3762"\w* \w knows|strong="G1097"\w* \w the|strong="G1722"\w* \w things|strong="G3588"\w* \w of|strong="G4151"\w* \w God|strong="G2316"\w* \w except|strong="G1487"\w* \w God|strong="G2316"\w*’s \w Spirit|strong="G4151"\w*. +\v 12 \w But|strong="G1161"\w* \w we|strong="G2249"\w* \w received|strong="G2983"\w* \w not|strong="G3756"\w* \w the|strong="G1537"\w* \w spirit|strong="G4151"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w world|strong="G2889"\w*, \w but|strong="G1161"\w* \w the|strong="G1537"\w* \w Spirit|strong="G4151"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w from|strong="G1537"\w* \w God|strong="G2316"\w*, \w that|strong="G2443"\w* \w we|strong="G2249"\w* \w might|strong="G2316"\w* \w know|strong="G1492"\w* \w the|strong="G1537"\w* \w things|strong="G3588"\w* \w that|strong="G2443"\w* \w were|strong="G3588"\w* \w freely|strong="G5483"\w* \w given|strong="G5483"\w* \w to|strong="G2443"\w* \w us|strong="G5483"\w* \w by|strong="G5259"\w* \w God|strong="G2316"\w*. +\v 13 \w We|strong="G3739"\w* \w also|strong="G2532"\w* \w speak|strong="G2980"\w* \w these|strong="G3739"\w* \w things|strong="G3739"\w*, \w not|strong="G3756"\w* \w in|strong="G1722"\w* \w words|strong="G3056"\w* \w which|strong="G3739"\w* \w man|strong="G3739"\w*’s \w wisdom|strong="G4678"\w* teaches \w but|strong="G2532"\w* \w which|strong="G3739"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* teaches, \w comparing|strong="G4793"\w* \w spiritual|strong="G4152"\w* \w things|strong="G3739"\w* \w with|strong="G1722"\w* \w spiritual|strong="G4152"\w* \w things|strong="G3739"\w*. +\v 14 \w Now|strong="G1161"\w* \w the|strong="G2532"\w* \w natural|strong="G5591"\w* \w man|strong="G3756"\w* doesn’\w t|strong="G3588"\w* \w receive|strong="G1209"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w of|strong="G4151"\w* \w God|strong="G2316"\w*’s \w Spirit|strong="G4151"\w*, \w for|strong="G1063"\w* \w they|strong="G2532"\w* \w are|strong="G1510"\w* \w foolishness|strong="G3472"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w can|strong="G1410"\w*’\w t|strong="G3588"\w* \w know|strong="G1097"\w* \w them|strong="G3588"\w*, \w because|strong="G3754"\w* \w they|strong="G2532"\w* \w are|strong="G1510"\w* \w spiritually|strong="G4153"\w* discerned. +\v 15 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w spiritual|strong="G4152"\w* discerns \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w and|strong="G1161"\w* \w he|strong="G1161"\w* himself \w is|strong="G3588"\w* \w to|strong="G1161"\w* \w be|strong="G3956"\w* judged \w by|strong="G5259"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w*. +\v 16 “\w For|strong="G1063"\w* \w who|strong="G3739"\w* \w has|strong="G2192"\w* \w known|strong="G1097"\w* \w the|strong="G1161"\w* \w mind|strong="G3563"\w* \w of|strong="G2962"\w* \w the|strong="G1161"\w* \w Lord|strong="G2962"\w* \w that|strong="G3739"\w* \w he|strong="G1161"\w* \w should|strong="G2249"\w* \w instruct|strong="G4822"\w* \w him|strong="G3739"\w*?”\x + \xo 2:16 \xt Isaiah 40:13\x* \w But|strong="G1161"\w* \w we|strong="G2249"\w* \w have|strong="G2192"\w* \w Christ|strong="G5547"\w*’\w s|strong="G2962"\w* \w mind|strong="G3563"\w*. +\c 3 +\p +\v 1 Brothers, \w I|strong="G2504"\w* couldn’t \w speak|strong="G2980"\w* \w to|strong="G1410"\w* \w you|strong="G5210"\w* \w as|strong="G5613"\w* \w to|strong="G1410"\w* \w spiritual|strong="G4152"\w*, but \w as|strong="G5613"\w* \w to|strong="G1410"\w* fleshly, \w as|strong="G5613"\w* \w to|strong="G1410"\w* babies \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*. +\v 2 \w I|strong="G1063"\w* \w fed|strong="G4222"\w* \w you|strong="G5210"\w* \w with|strong="G3756"\w* \w milk|strong="G1051"\w*, \w not|strong="G3756"\w* \w with|strong="G3756"\w* solid \w food|strong="G1033"\w*, \w for|strong="G1063"\w* \w you|strong="G5210"\w* weren’t \w yet|strong="G2089"\w* \w ready|strong="G1410"\w*. \w Indeed|strong="G1063"\w*, \w you|strong="G5210"\w* aren’t \w ready|strong="G1410"\w* \w even|strong="G3761"\w* \w now|strong="G3568"\w*, +\v 3 \w for|strong="G1063"\w* \w you|strong="G5210"\w* \w are|strong="G1510"\w* \w still|strong="G2089"\w* \w fleshly|strong="G4559"\w*. \w For|strong="G1063"\w* insofar \w as|strong="G1722"\w* \w there|strong="G2532"\w* \w is|strong="G1510"\w* \w jealousy|strong="G2205"\w*, \w strife|strong="G2054"\w*, \w and|strong="G2532"\w* factions \w among|strong="G1722"\w* \w you|strong="G5210"\w*, aren’t \w you|strong="G5210"\w* \w fleshly|strong="G4559"\w*, \w and|strong="G2532"\w* don’t \w you|strong="G5210"\w* \w walk|strong="G4043"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* ways \w of|strong="G2532"\w* \w men|strong="G3699"\w*? +\v 4 \w For|strong="G1063"\w* \w when|strong="G3752"\w* \w one|strong="G5100"\w* \w says|strong="G3004"\w*, “\w I|strong="G1473"\w* \w follow|strong="G1161"\w* \w Paul|strong="G3972"\w*,” \w and|strong="G1161"\w* \w another|strong="G2087"\w*, “\w I|strong="G1473"\w* \w follow|strong="G1161"\w* Apollos,” aren’t \w you|strong="G3752"\w* fleshly? +\p +\v 5 \w Who|strong="G3739"\w* \w then|strong="G3767"\w* \w is|strong="G1510"\w* Apollos, \w and|strong="G2532"\w* \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w Paul|strong="G3972"\w*, \w but|strong="G1161"\w* \w servants|strong="G1249"\w* \w through|strong="G1223"\w* \w whom|strong="G3739"\w* \w you|strong="G3739"\w* \w believed|strong="G4100"\w*, \w and|strong="G2532"\w* \w each|strong="G1538"\w* \w as|strong="G5613"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w gave|strong="G1325"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*? +\v 6 \w I|strong="G1473"\w* \w planted|strong="G5452"\w*. Apollos \w watered|strong="G4222"\w*. \w But|strong="G2316"\w* \w God|strong="G2316"\w* \w gave|strong="G4222"\w* \w the|strong="G3588"\w* increase. +\v 7 \w So|strong="G5620"\w* \w then|strong="G5620"\w* \w neither|strong="G3777"\w* \w he|strong="G3588"\w* \w who|strong="G3588"\w* \w plants|strong="G5452"\w* \w is|strong="G1510"\w* \w anything|strong="G5100"\w*, \w nor|strong="G3777"\w* \w he|strong="G3588"\w* \w who|strong="G3588"\w* \w waters|strong="G4222"\w*, \w but|strong="G2316"\w* \w God|strong="G2316"\w* \w who|strong="G3588"\w* \w gives|strong="G4222"\w* \w the|strong="G3588"\w* increase. +\v 8 \w Now|strong="G1161"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w plants|strong="G5452"\w* \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w waters|strong="G4222"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w*, \w but|strong="G1161"\w* \w each|strong="G1538"\w* \w will|strong="G1510"\w* \w receive|strong="G2983"\w* \w his|strong="G2983"\w* \w own|strong="G2398"\w* \w reward|strong="G3408"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w his|strong="G2983"\w* \w own|strong="G2398"\w* \w labor|strong="G2873"\w*. +\v 9 \w For|strong="G1063"\w* \w we|strong="G1063"\w* \w are|strong="G1510"\w* \w God|strong="G2316"\w*’s \w fellow|strong="G4904"\w* \w workers|strong="G4904"\w*. \w You|strong="G1510"\w* \w are|strong="G1510"\w* \w God|strong="G2316"\w*’s farming, \w God|strong="G2316"\w*’s \w building|strong="G3619"\w*. +\p +\v 10 \w According|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1161"\w* \w grace|strong="G5485"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w which|strong="G3588"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G2596"\w* \w me|strong="G1325"\w*, \w as|strong="G5613"\w* \w a|strong="G5613"\w* \w wise|strong="G4680"\w* master builder \w I|strong="G1473"\w* \w laid|strong="G5087"\w* \w a|strong="G5613"\w* \w foundation|strong="G2310"\w*, \w and|strong="G1161"\w* \w another|strong="G2596"\w* \w builds|strong="G2026"\w* \w on|strong="G2596"\w* \w it|strong="G1161"\w*. \w But|strong="G1161"\w* \w let|strong="G1161"\w* \w each|strong="G1538"\w* \w man|strong="G1538"\w* \w be|strong="G2316"\w* careful \w how|strong="G4459"\w* \w he|strong="G1161"\w* \w builds|strong="G2026"\w* \w on|strong="G2596"\w* \w it|strong="G1161"\w*. +\v 11 \w For|strong="G1063"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w* \w can|strong="G1410"\w* \w lay|strong="G5087"\w* \w any|strong="G3762"\w* \w other|strong="G3739"\w* \w foundation|strong="G2310"\w* \w than|strong="G3844"\w* \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w has|strong="G3739"\w* \w been|strong="G1510"\w* \w laid|strong="G5087"\w*, \w which|strong="G3739"\w* \w is|strong="G1510"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\v 12 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w anyone|strong="G5100"\w* \w builds|strong="G2026"\w* \w on|strong="G1909"\w* \w the|strong="G1161"\w* \w foundation|strong="G2310"\w* \w with|strong="G1909"\w* \w gold|strong="G5553"\w*, silver, \w costly|strong="G5093"\w* \w stones|strong="G3037"\w*, \w wood|strong="G3586"\w*, \w hay|strong="G5528"\w*, \w or|strong="G1161"\w* \w straw|strong="G2562"\w*, +\v 13 \w each|strong="G1538"\w* \w man|strong="G1538"\w*’s \w work|strong="G2041"\w* \w will|strong="G1510"\w* \w be|strong="G1096"\w* \w revealed|strong="G5318"\w*. \w For|strong="G1063"\w* \w the|strong="G1722"\w* \w Day|strong="G2250"\w* \w will|strong="G1510"\w* declare \w it|strong="G2532"\w*, \w because|strong="G3754"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w revealed|strong="G5318"\w* \w in|strong="G1722"\w* \w fire|strong="G4442"\w*; \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w fire|strong="G4442"\w* itself \w will|strong="G1510"\w* \w test|strong="G1381"\w* \w what|strong="G3588"\w* \w sort|strong="G3697"\w* \w of|strong="G2250"\w* \w work|strong="G2041"\w* \w each|strong="G1538"\w* \w man|strong="G1538"\w*’s \w work|strong="G2041"\w* \w is|strong="G1510"\w*. +\v 14 \w If|strong="G1487"\w* \w any|strong="G5100"\w* \w man|strong="G5100"\w*’s \w work|strong="G2041"\w* \w remains|strong="G3306"\w* \w which|strong="G3739"\w* \w he|strong="G3739"\w* \w built|strong="G2026"\w* \w on|strong="G2026"\w* \w it|strong="G1487"\w*, \w he|strong="G3739"\w* \w will|strong="G3739"\w* \w receive|strong="G2983"\w* \w a|strong="G2983"\w* \w reward|strong="G3408"\w*. +\v 15 \w If|strong="G1487"\w* \w any|strong="G5100"\w* \w man|strong="G5100"\w*’s \w work|strong="G2041"\w* \w is|strong="G3588"\w* \w burned|strong="G2618"\w*, \w he|strong="G1161"\w* \w will|strong="G5100"\w* \w suffer|strong="G2210"\w* \w loss|strong="G2210"\w*, \w but|strong="G1161"\w* \w he|strong="G1161"\w* himself \w will|strong="G5100"\w* \w be|strong="G3588"\w* \w saved|strong="G4982"\w*, \w but|strong="G1161"\w* \w as|strong="G5613"\w* \w through|strong="G1223"\w* \w fire|strong="G4442"\w*. +\p +\v 16 Don’\w t|strong="G3588"\w* \w you|strong="G5210"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w are|strong="G1510"\w* \w God|strong="G2316"\w*’s \w temple|strong="G3485"\w* \w and|strong="G2532"\w* \w that|strong="G3754"\w* \w God|strong="G2316"\w*’s \w Spirit|strong="G4151"\w* \w lives|strong="G3611"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w*? +\v 17 \w If|strong="G1487"\w* \w anyone|strong="G5100"\w* \w destroys|strong="G5351"\w* \w God|strong="G2316"\w*’s \w temple|strong="G3485"\w*, \w God|strong="G2316"\w* \w will|strong="G2316"\w* \w destroy|strong="G5351"\w* \w him|strong="G3588"\w*; \w for|strong="G1063"\w* \w God|strong="G2316"\w*’s \w temple|strong="G3485"\w* \w is|strong="G1510"\w* holy, \w which|strong="G3588"\w* \w you|strong="G5210"\w* \w are|strong="G1510"\w*. +\p +\v 18 \w Let|strong="G1096"\w* \w no|strong="G3367"\w* \w one|strong="G5100"\w* \w deceive|strong="G1818"\w* \w himself|strong="G1438"\w*. \w If|strong="G1487"\w* \w anyone|strong="G5100"\w* \w thinks|strong="G1380"\w* \w that|strong="G2443"\w* \w he|strong="G3778"\w* \w is|strong="G1510"\w* \w wise|strong="G4680"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* world, \w let|strong="G1096"\w* \w him|strong="G3588"\w* \w become|strong="G1096"\w* \w a|strong="G1096"\w* \w fool|strong="G3474"\w* \w that|strong="G2443"\w* \w he|strong="G3778"\w* \w may|strong="G2443"\w* \w become|strong="G1096"\w* \w wise|strong="G4680"\w*. +\v 19 \w For|strong="G1063"\w* \w the|strong="G1722"\w* \w wisdom|strong="G4678"\w* \w of|strong="G2316"\w* \w this|strong="G3778"\w* \w world|strong="G2889"\w* \w is|strong="G1510"\w* \w foolishness|strong="G3472"\w* \w with|strong="G1722"\w* \w God|strong="G2316"\w*. \w For|strong="G1063"\w* \w it|strong="G1063"\w* \w is|strong="G1510"\w* \w written|strong="G1125"\w*, “\w He|strong="G3778"\w* \w has|strong="G2316"\w* taken \w the|strong="G1722"\w* \w wise|strong="G4680"\w* \w in|strong="G1722"\w* \w their|strong="G1722"\w* \w craftiness|strong="G3834"\w*.”\x + \xo 3:19 \xt Job 5:13\x* +\v 20 \w And|strong="G2532"\w* \w again|strong="G3825"\w*, “\w The|strong="G2532"\w* \w Lord|strong="G2962"\w* \w knows|strong="G1097"\w* \w the|strong="G2532"\w* \w reasoning|strong="G1261"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w wise|strong="G4680"\w*, \w that|strong="G3754"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w worthless|strong="G3152"\w*.”\x + \xo 3:20 \xt Psalms 94:11\x* +\v 21 \w Therefore|strong="G5620"\w* \w let|strong="G1510"\w* \w no|strong="G3367"\w* \w one|strong="G3367"\w* \w boast|strong="G2744"\w* \w in|strong="G1722"\w* \w men|strong="G3956"\w*. \w For|strong="G1063"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w are|strong="G1510"\w* \w yours|strong="G4771"\w*, +\v 22 \w whether|strong="G1535"\w* \w Paul|strong="G3972"\w*, \w or|strong="G1535"\w* Apollos, \w or|strong="G1535"\w* \w Cephas|strong="G2786"\w*, \w or|strong="G1535"\w* \w the|strong="G3956"\w* \w world|strong="G2889"\w*, \w or|strong="G1535"\w* \w life|strong="G2222"\w*, \w or|strong="G1535"\w* \w death|strong="G2288"\w*, \w or|strong="G1535"\w* \w things|strong="G3956"\w* \w present|strong="G1764"\w*, \w or|strong="G1535"\w* \w things|strong="G3956"\w* \w to|strong="G3195"\w* \w come|strong="G3195"\w*. \w All|strong="G3956"\w* \w are|strong="G3956"\w* \w yours|strong="G4771"\w*, +\v 23 \w and|strong="G1161"\w* \w you|strong="G5210"\w* \w are|strong="G5547"\w* \w Christ|strong="G5547"\w*’s, \w and|strong="G1161"\w* \w Christ|strong="G5547"\w* \w is|strong="G2316"\w* \w God|strong="G2316"\w*’s. +\c 4 +\p +\v 1 \w So|strong="G3779"\w* \w let|strong="G3049"\w* \w a|strong="G5613"\w* \w man|strong="G2316"\w* \w think|strong="G3049"\w* \w of|strong="G2316"\w* \w us|strong="G2249"\w* \w as|strong="G5613"\w* \w Christ|strong="G5547"\w*’s \w servants|strong="G5257"\w* \w and|strong="G2532"\w* \w stewards|strong="G3623"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*’s \w mysteries|strong="G3466"\w*. +\v 2 \w Here|strong="G5602"\w*, \w moreover|strong="G3063"\w*, \w it|strong="G2147"\w* \w is|strong="G3588"\w* \w required|strong="G2212"\w* \w of|strong="G5100"\w* \w stewards|strong="G3623"\w* \w that|strong="G2443"\w* \w they|strong="G3588"\w* \w be|strong="G2443"\w* \w found|strong="G2147"\w* \w faithful|strong="G4103"\w*. +\v 3 \w But|strong="G1161"\w* \w with|strong="G5259"\w* \w me|strong="G1473"\w* \w it|strong="G1161"\w* \w is|strong="G1510"\w* \w a|strong="G1519"\w* \w very|strong="G1646"\w* \w small|strong="G1646"\w* \w thing|strong="G1646"\w* \w that|strong="G2443"\w* \w I|strong="G1473"\w* \w should|strong="G1519"\w* \w be|strong="G1510"\w* judged \w by|strong="G5259"\w* \w you|strong="G5210"\w*, \w or|strong="G2228"\w* \w by|strong="G5259"\w* \w a|strong="G1519"\w* human \w court|strong="G2250"\w*. \w Yes|strong="G1161"\w*, \w I|strong="G1473"\w* don’t \w even|strong="G3761"\w* judge \w my|strong="G1473"\w* \w own|strong="G1683"\w* \w self|strong="G1683"\w*. +\v 4 \w For|strong="G1063"\w* \w I|strong="G1473"\w* \w know|strong="G1722"\w* \w nothing|strong="G3762"\w* \w against|strong="G1722"\w* \w myself|strong="G1683"\w*. \w Yet|strong="G1161"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w not|strong="G3756"\w* \w justified|strong="G1344"\w* \w by|strong="G1722"\w* \w this|strong="G3778"\w*, \w but|strong="G1161"\w* \w he|strong="G1161"\w* \w who|strong="G3588"\w* judges \w me|strong="G1473"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\v 5 \w Therefore|strong="G5620"\w* \w judge|strong="G2919"\w* \w nothing|strong="G3361"\w* \w before|strong="G4253"\w* \w the|strong="G2532"\w* \w time|strong="G2540"\w*, \w until|strong="G2193"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w comes|strong="G2064"\w*, \w who|strong="G3739"\w* \w will|strong="G2316"\w* \w both|strong="G2532"\w* \w bring|strong="G5461"\w* \w to|strong="G2532"\w* \w light|strong="G5461"\w* \w the|strong="G2532"\w* \w hidden|strong="G2927"\w* \w things|strong="G3588"\w* \w of|strong="G2316"\w* \w darkness|strong="G4655"\w* \w and|strong="G2532"\w* \w reveal|strong="G5319"\w* \w the|strong="G2532"\w* \w counsels|strong="G1012"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w hearts|strong="G2588"\w*. \w Then|strong="G2532"\w* \w each|strong="G1538"\w* \w man|strong="G5100"\w* \w will|strong="G2316"\w* \w get|strong="G1096"\w* \w his|strong="G2532"\w* \w praise|strong="G1868"\w* \w from|strong="G2064"\w* \w God|strong="G2316"\w*. +\p +\v 6 \w Now|strong="G1161"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, brothers, \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* figure \w transferred|strong="G3345"\w* \w to|strong="G1519"\w* \w myself|strong="G1683"\w* \w and|strong="G2532"\w* Apollos \w for|strong="G1519"\w* \w your|strong="G1223"\w* \w sakes|strong="G1223"\w*, \w that|strong="G2443"\w* \w in|strong="G1722"\w* \w us|strong="G1519"\w* \w you|strong="G5210"\w* \w might|strong="G2532"\w* \w learn|strong="G3129"\w* \w not|strong="G3361"\w* \w to|strong="G1519"\w* think \w beyond|strong="G5228"\w* \w the|strong="G1722"\w* \w things|strong="G3778"\w* \w which|strong="G3739"\w* \w are|strong="G3588"\w* \w written|strong="G1125"\w*, \w that|strong="G2443"\w* \w none|strong="G3361"\w* \w of|strong="G1223"\w* \w you|strong="G5210"\w* \w be|strong="G2532"\w* puffed \w up|strong="G5448"\w* \w against|strong="G2596"\w* \w one|strong="G1520"\w* \w another|strong="G2087"\w*. +\v 7 \w For|strong="G1063"\w* \w who|strong="G3739"\w* makes \w you|strong="G4771"\w* different? \w And|strong="G2532"\w* \w what|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G4771"\w* \w have|strong="G2192"\w* \w that|strong="G3739"\w* \w you|strong="G4771"\w* didn’t \w receive|strong="G2983"\w*? \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w you|strong="G4771"\w* \w did|strong="G2532"\w* \w receive|strong="G2983"\w* \w it|strong="G2532"\w*, \w why|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G4771"\w* \w boast|strong="G2744"\w* \w as|strong="G5613"\w* \w if|strong="G1487"\w* \w you|strong="G4771"\w* \w had|strong="G2192"\w* \w not|strong="G3756"\w* \w received|strong="G2983"\w* \w it|strong="G2532"\w*? +\p +\v 8 \w You|strong="G5210"\w* \w are|strong="G1510"\w* \w already|strong="G2235"\w* \w filled|strong="G2880"\w*. \w You|strong="G5210"\w* \w have|strong="G2532"\w* \w already|strong="G2235"\w* \w become|strong="G1510"\w* \w rich|strong="G4147"\w*. \w You|strong="G5210"\w* \w have|strong="G2532"\w* \w come|strong="G1510"\w* \w to|strong="G2443"\w* \w reign|strong="G4821"\w* \w without|strong="G5565"\w* \w us|strong="G2249"\w*. Yes, \w and|strong="G2532"\w* \w I|strong="G1473"\w* \w wish|strong="G3785"\w* \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w did|strong="G2532"\w* \w reign|strong="G4821"\w*, \w that|strong="G2443"\w* \w we|strong="G2249"\w* \w also|strong="G2532"\w* \w might|strong="G2532"\w* \w reign|strong="G4821"\w* \w with|strong="G2532"\w* \w you|strong="G5210"\w*! +\v 9 \w For|strong="G1063"\w* \w I|strong="G1473"\w* \w think|strong="G1380"\w* \w that|strong="G3754"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* displayed \w us|strong="G2249"\w*, \w the|strong="G2532"\w* apostles, \w last|strong="G2078"\w* \w of|strong="G2316"\w* \w all|strong="G2532"\w*, \w like|strong="G5613"\w* \w men|strong="G3588"\w* sentenced \w to|strong="G2532"\w* \w death|strong="G1935"\w*. \w For|strong="G1063"\w* \w we|strong="G2249"\w* \w are|strong="G3588"\w* \w made|strong="G1096"\w* \w a|strong="G1096"\w* \w spectacle|strong="G2302"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w*, \w both|strong="G2532"\w* \w to|strong="G2532"\w* angels \w and|strong="G2532"\w* \w men|strong="G3588"\w*. +\v 10 \w We|strong="G2249"\w* \w are|strong="G2249"\w* \w fools|strong="G3474"\w* \w for|strong="G1223"\w* \w Christ|strong="G5547"\w*’s \w sake|strong="G1223"\w*, \w but|strong="G1161"\w* \w you|strong="G5210"\w* \w are|strong="G2249"\w* \w wise|strong="G5429"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*. \w We|strong="G2249"\w* \w are|strong="G2249"\w* weak, \w but|strong="G1161"\w* \w you|strong="G5210"\w* \w are|strong="G2249"\w* \w strong|strong="G2478"\w*. \w You|strong="G5210"\w* \w have|strong="G1473"\w* honor, \w but|strong="G1161"\w* \w we|strong="G2249"\w* \w have|strong="G1473"\w* dishonor. +\v 11 \w Even|strong="G2532"\w* \w to|strong="G2532"\w* \w this|strong="G3588"\w* present \w hour|strong="G5610"\w* \w we|strong="G2532"\w* \w hunger|strong="G3983"\w*, \w thirst|strong="G1372"\w*, \w are|strong="G3588"\w* \w naked|strong="G1130"\w*, \w are|strong="G3588"\w* beaten, \w and|strong="G2532"\w* \w have|strong="G2532"\w* \w no|strong="G2532"\w* \w certain|strong="G2532"\w* dwelling place. +\v 12 \w We|strong="G2532"\w* \w toil|strong="G2872"\w*, \w working|strong="G2038"\w* \w with|strong="G2532"\w* \w our|strong="G2532"\w* \w own|strong="G2398"\w* \w hands|strong="G5495"\w*. \w When|strong="G2532"\w* \w people|strong="G3588"\w* curse \w us|strong="G1377"\w*, \w we|strong="G2532"\w* \w bless|strong="G2127"\w*. \w Being|strong="G2532"\w* \w persecuted|strong="G1377"\w*, \w we|strong="G2532"\w* endure. +\v 13 \w Being|strong="G1096"\w* defamed, \w we|strong="G5613"\w* \w entreat|strong="G3870"\w*. \w We|strong="G5613"\w* \w are|strong="G3588"\w* \w made|strong="G1096"\w* \w as|strong="G5613"\w* \w the|strong="G3956"\w* \w filth|strong="G4027"\w* \w of|strong="G3956"\w* \w the|strong="G3956"\w* \w world|strong="G2889"\w*, \w the|strong="G3956"\w* \w dirt|strong="G4027"\w* wiped off \w by|strong="G3956"\w* \w all|strong="G3956"\w*, \w even|strong="G2193"\w* \w until|strong="G2193"\w* \w now|strong="G1096"\w*. +\p +\v 14 \w I|strong="G1473"\w* don’t \w write|strong="G1125"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w to|strong="G3756"\w* \w shame|strong="G1788"\w* \w you|strong="G5210"\w*, \w but|strong="G3778"\w* \w to|strong="G3756"\w* \w admonish|strong="G3560"\w* \w you|strong="G5210"\w* \w as|strong="G5613"\w* \w my|strong="G1473"\w* beloved \w children|strong="G5043"\w*. +\v 15 \w For|strong="G1063"\w* \w though|strong="G1437"\w* \w you|strong="G5210"\w* \w have|strong="G2192"\w* \w ten|strong="G3463"\w* \w thousand|strong="G3463"\w* \w tutors|strong="G3807"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*, \w you|strong="G5210"\w* don’\w t|strong="G3588"\w* \w have|strong="G2192"\w* \w many|strong="G4183"\w* \w fathers|strong="G3962"\w*. \w For|strong="G1063"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*, \w I|strong="G1473"\w* \w became|strong="G1080"\w* \w your|strong="G1223"\w* \w father|strong="G3962"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w Good|strong="G1223"\w* \w News|strong="G2098"\w*. +\v 16 \w I|strong="G1473"\w* \w beg|strong="G3870"\w* \w you|strong="G5210"\w* \w therefore|strong="G3767"\w*, \w be|strong="G1096"\w* \w imitators|strong="G3402"\w* \w of|strong="G1096"\w* \w me|strong="G1473"\w*. +\v 17 \w Because|strong="G1223"\w* \w of|strong="G1223"\w* \w this|strong="G3778"\w* \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w sent|strong="G3992"\w* \w Timothy|strong="G5095"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*, \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w my|strong="G1722"\w* beloved \w and|strong="G2532"\w* \w faithful|strong="G4103"\w* \w child|strong="G5043"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w who|strong="G3739"\w* \w will|strong="G1510"\w* remind \w you|strong="G5210"\w* \w of|strong="G1223"\w* \w my|strong="G1722"\w* \w ways|strong="G3598"\w* \w which|strong="G3739"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w I|strong="G1473"\w* \w teach|strong="G1321"\w* \w everywhere|strong="G3837"\w* \w in|strong="G1722"\w* \w every|strong="G3956"\w* \w assembly|strong="G1577"\w*. +\v 18 \w Now|strong="G1161"\w* \w some|strong="G5100"\w* \w are|strong="G5210"\w* puffed \w up|strong="G5448"\w*, \w as|strong="G5613"\w* \w though|strong="G5613"\w* \w I|strong="G1473"\w* \w were|strong="G5613"\w* \w not|strong="G3361"\w* \w coming|strong="G2064"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*. +\v 19 \w But|strong="G1161"\w* \w I|strong="G2532"\w* \w will|strong="G2309"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w* \w shortly|strong="G5030"\w*, \w if|strong="G1437"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w is|strong="G3588"\w* \w willing|strong="G2309"\w*. \w And|strong="G2532"\w* \w I|strong="G2532"\w* \w will|strong="G2309"\w* \w know|strong="G1097"\w*, \w not|strong="G3756"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w puffed|strong="G3756"\w* \w up|strong="G5448"\w*, \w but|strong="G1161"\w* \w the|strong="G2532"\w* \w power|strong="G1411"\w*. +\v 20 \w For|strong="G1063"\w* \w God|strong="G2316"\w*’s Kingdom \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w in|strong="G1722"\w* \w word|strong="G3056"\w*, \w but|strong="G1063"\w* \w in|strong="G1722"\w* \w power|strong="G1411"\w*. +\v 21 \w What|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G5210"\w* \w want|strong="G2309"\w*? \w Shall|strong="G5101"\w* \w I|strong="G2309"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w* \w with|strong="G1722"\w* \w a|strong="G1722"\w* \w rod|strong="G4464"\w*, \w or|strong="G2228"\w* \w in|strong="G1722"\w* \w love|strong="G2309"\w* \w and|strong="G5037"\w* \w a|strong="G1722"\w* \w spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w gentleness|strong="G4240"\w*? +\c 5 +\p +\v 1 \w It|strong="G2532"\w* \w is|strong="G3588"\w* \w actually|strong="G3654"\w* reported \w that|strong="G3588"\w* \w there|strong="G2532"\w* \w is|strong="G3588"\w* \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w*, \w and|strong="G2532"\w* \w such|strong="G5108"\w* \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w* \w as|strong="G1722"\w* \w is|strong="G3588"\w* \w not|strong="G3761"\w* \w even|strong="G2532"\w* named \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w*, \w that|strong="G3588"\w* \w one|strong="G5100"\w* \w has|strong="G2192"\w* \w his|strong="G1722"\w* \w father|strong="G3962"\w*’\w s|strong="G2192"\w* \w wife|strong="G1135"\w*. +\v 2 \w You|strong="G5210"\w* \w are|strong="G1510"\w* \w arrogant|strong="G5448"\w*, \w and|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w mourn|strong="G3996"\w* \w instead|strong="G3123"\w*, \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w had|strong="G2532"\w* \w done|strong="G4160"\w* \w this|strong="G3778"\w* \w deed|strong="G2041"\w* \w might|strong="G2532"\w* \w be|strong="G1510"\w* removed \w from|strong="G1537"\w* \w among|strong="G1537"\w* \w you|strong="G5210"\w*. +\v 3 \w For|strong="G1063"\w* \w I|strong="G1473"\w* most \w certainly|strong="G3303"\w*, \w as|strong="G5613"\w* \w being|strong="G1161"\w* absent \w in|strong="G1161"\w* \w body|strong="G4983"\w* \w but|strong="G1161"\w* \w present|strong="G3918"\w* \w in|strong="G1161"\w* \w spirit|strong="G4151"\w*, \w have|strong="G1473"\w* \w already|strong="G2235"\w*, \w as|strong="G5613"\w* \w though|strong="G5613"\w* \w I|strong="G1473"\w* \w were|strong="G3588"\w* \w present|strong="G3918"\w*, \w judged|strong="G2919"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w has|strong="G3778"\w* \w done|strong="G2716"\w* \w this|strong="G3778"\w* \w thing|strong="G3778"\w*. +\v 4 \w In|strong="G1722"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G4151"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G2962"\w*, \w when|strong="G2532"\w* \w you|strong="G5210"\w* \w are|strong="G3588"\w* \w gathered|strong="G4863"\w* \w together|strong="G4863"\w* \w with|strong="G1722"\w* \w my|strong="G1699"\w* \w spirit|strong="G4151"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w power|strong="G1411"\w* \w of|strong="G4151"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G2962"\w*, +\v 5 \w you|strong="G1722"\w* \w are|strong="G3588"\w* \w to|strong="G1519"\w* \w deliver|strong="G3860"\w* \w such|strong="G5108"\w* \w a|strong="G1519"\w* \w one|strong="G5108"\w* \w to|strong="G1519"\w* \w Satan|strong="G4567"\w* \w for|strong="G1519"\w* \w the|strong="G1722"\w* \w destruction|strong="G3639"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*, \w that|strong="G2443"\w* \w the|strong="G1722"\w* \w spirit|strong="G4151"\w* \w may|strong="G2443"\w* \w be|strong="G1519"\w* \w saved|strong="G4982"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*. +\p +\v 6 \w Your|strong="G3650"\w* \w boasting|strong="G2745"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w good|strong="G2570"\w*. Don’\w t|strong="G3588"\w* \w you|strong="G5210"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w a|strong="G3756"\w* \w little|strong="G3398"\w* \w yeast|strong="G2219"\w* \w leavens|strong="G2220"\w* \w the|strong="G3588"\w* \w whole|strong="G3650"\w* \w lump|strong="G5445"\w*? +\v 7 \w Purge|strong="G1571"\w* \w out|strong="G2532"\w* \w the|strong="G2532"\w* \w old|strong="G3820"\w* \w yeast|strong="G2219"\w*, \w that|strong="G2443"\w* \w you|strong="G1510"\w* \w may|strong="G2532"\w* \w be|strong="G1510"\w* \w a|strong="G2532"\w* \w new|strong="G3501"\w* \w lump|strong="G5445"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w you|strong="G1510"\w* \w are|strong="G1510"\w* unleavened. \w For|strong="G1063"\w* \w indeed|strong="G2532"\w* \w Christ|strong="G5547"\w*, \w our|strong="G2532"\w* \w Passover|strong="G3957"\w*, \w has|strong="G5547"\w* \w been|strong="G1510"\w* \w sacrificed|strong="G2380"\w* \w in|strong="G2532"\w* \w our|strong="G2532"\w* \w place|strong="G1473"\w*. +\v 8 \w Therefore|strong="G5620"\w* \w let|strong="G2532"\w*’s \w keep|strong="G3361"\w* \w the|strong="G1722"\w* \w feast|strong="G1858"\w*, \w not|strong="G3361"\w* \w with|strong="G1722"\w* \w old|strong="G3820"\w* \w yeast|strong="G2219"\w*, \w neither|strong="G3366"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w yeast|strong="G2219"\w* \w of|strong="G2532"\w* \w malice|strong="G2549"\w* \w and|strong="G2532"\w* \w wickedness|strong="G4189"\w*, \w but|strong="G2532"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* unleavened bread \w of|strong="G2532"\w* \w sincerity|strong="G1505"\w* \w and|strong="G2532"\w* truth. +\p +\v 9 \w I|strong="G1722"\w* \w wrote|strong="G1125"\w* \w to|strong="G1722"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w my|strong="G1722"\w* \w letter|strong="G1992"\w* \w to|strong="G1722"\w* \w have|strong="G5210"\w* \w no|strong="G3361"\w* \w company|strong="G4874"\w* \w with|strong="G1722"\w* sexual sinners; +\v 10 \w yet|strong="G2532"\w* \w not|strong="G3756"\w* \w at|strong="G1537"\w* \w all|strong="G2532"\w* meaning \w with|strong="G1537"\w* \w the|strong="G2532"\w* sexual sinners \w of|strong="G1537"\w* \w this|strong="G3778"\w* \w world|strong="G2889"\w*, \w or|strong="G2228"\w* \w with|strong="G1537"\w* \w the|strong="G2532"\w* \w covetous|strong="G4123"\w* \w and|strong="G2532"\w* extortionists, \w or|strong="G2228"\w* \w with|strong="G1537"\w* \w idolaters|strong="G1496"\w*, \w for|strong="G2532"\w* \w then|strong="G2532"\w* \w you|strong="G2532"\w* \w would|strong="G2532"\w* \w have|strong="G2532"\w* \w to|strong="G2532"\w* \w leave|strong="G1831"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w*. +\v 11 \w But|strong="G1161"\w* \w as|strong="G1161"\w* \w it|strong="G1161"\w* \w is|strong="G1510"\w*, \w I|strong="G1161"\w* \w wrote|strong="G1125"\w* \w to|strong="G5100"\w* \w you|strong="G5210"\w* \w not|strong="G3361"\w* \w to|strong="G5100"\w* \w associate|strong="G4874"\w* \w with|strong="G3588"\w* \w anyone|strong="G5100"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w called|strong="G3687"\w* \w a|strong="G1510"\w* brother \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w a|strong="G1510"\w* sexual sinner, \w or|strong="G2228"\w* \w covetous|strong="G4123"\w*, \w or|strong="G2228"\w* \w an|strong="G2228"\w* \w idolater|strong="G1496"\w*, \w or|strong="G2228"\w* \w a|strong="G1510"\w* slanderer, \w or|strong="G2228"\w* \w a|strong="G1510"\w* \w drunkard|strong="G3183"\w*, \w or|strong="G2228"\w* \w an|strong="G2228"\w* extortionist. Don’\w t|strong="G3588"\w* \w even|strong="G1161"\w* \w eat|strong="G4906"\w* \w with|strong="G3588"\w* \w such|strong="G5108"\w* \w a|strong="G1510"\w* \w person|strong="G5108"\w*. +\v 12 \w For|strong="G1063"\w* \w what|strong="G5101"\w* \w do|strong="G5101"\w* \w I|strong="G1473"\w* \w have|strong="G1473"\w* \w to|strong="G5101"\w* \w do|strong="G5101"\w* \w with|strong="G3588"\w* \w also|strong="G4771"\w* \w judging|strong="G2919"\w* \w those|strong="G3588"\w* \w who|strong="G5101"\w* \w are|strong="G3588"\w* \w outside|strong="G1854"\w*? Don’\w t|strong="G3588"\w* \w you|strong="G5210"\w* \w judge|strong="G2919"\w* \w those|strong="G3588"\w* \w who|strong="G5101"\w* \w are|strong="G3588"\w* \w within|strong="G2080"\w*? +\v 13 \w But|strong="G1161"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w outside|strong="G1854"\w*, \w God|strong="G2316"\w* \w judges|strong="G2919"\w*. “Put \w away|strong="G1854"\w* \w the|strong="G1537"\w* \w wicked|strong="G4190"\w* \w man|strong="G4190"\w* \w from|strong="G1537"\w* \w among|strong="G1537"\w* \w yourselves|strong="G4771"\w*.”\x + \xo 5:13 \xt Deuteronomy 17:7; 19:19; 21:21; 22:21; 24:7\x* +\c 6 +\p +\v 1 \w Dare|strong="G5111"\w* \w any|strong="G5100"\w* \w of|strong="G2532"\w* \w you|strong="G5210"\w*, \w having|strong="G2192"\w* \w a|strong="G2192"\w* \w matter|strong="G4229"\w* \w against|strong="G1909"\w* \w his|strong="G1909"\w* \w neighbor|strong="G2087"\w*, \w go|strong="G2192"\w* \w to|strong="G4314"\w* \w law|strong="G2919"\w* \w before|strong="G1909"\w* \w the|strong="G2532"\w* unrighteous, \w and|strong="G2532"\w* \w not|strong="G3780"\w* \w before|strong="G1909"\w* \w the|strong="G2532"\w* saints? +\v 2 Don’\w t|strong="G3588"\w* \w you|strong="G5210"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w the|strong="G1722"\w* saints \w will|strong="G1510"\w* \w judge|strong="G2919"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*? \w And|strong="G2532"\w* \w if|strong="G1487"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w* \w is|strong="G1510"\w* \w judged|strong="G2919"\w* \w by|strong="G1722"\w* \w you|strong="G5210"\w*, \w are|strong="G1510"\w* \w you|strong="G5210"\w* \w unworthy|strong="G3756"\w* \w to|strong="G2532"\w* \w judge|strong="G2919"\w* \w the|strong="G1722"\w* \w smallest|strong="G1646"\w* \w matters|strong="G1646"\w*? +\v 3 Don’t \w you|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w we|strong="G3754"\w* \w will|strong="G3748"\w* \w judge|strong="G2919"\w* angels? \w How|strong="G3754"\w* \w much|strong="G3386"\w* \w more|strong="G1492"\w*, \w things|strong="G3748"\w* \w that|strong="G3754"\w* pertain \w to|strong="G3756"\w* \w this|strong="G3748"\w* life? +\v 4 \w If|strong="G1437"\w* \w then|strong="G3767"\w* \w you|strong="G1437"\w* \w have|strong="G2192"\w* \w to|strong="G1722"\w* \w judge|strong="G2922"\w* \w things|strong="G3778"\w* pertaining \w to|strong="G1722"\w* \w this|strong="G3778"\w* life, \w do|strong="G2192"\w* \w you|strong="G1437"\w* \w set|strong="G2523"\w* \w them|strong="G3588"\w* \w to|strong="G1722"\w* \w judge|strong="G2922"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w of|strong="G1577"\w* \w no|strong="G3588"\w* \w account|strong="G1848"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w*? +\v 5 \w I|strong="G3739"\w* \w say|strong="G3004"\w* \w this|strong="G3588"\w* \w to|strong="G4314"\w* move \w you|strong="G5210"\w* \w to|strong="G4314"\w* \w shame|strong="G1791"\w*. Isn’\w t|strong="G3588"\w* \w there|strong="G1762"\w* \w even|strong="G3739"\w* \w one|strong="G3762"\w* \w wise|strong="G4680"\w* \w man|strong="G3762"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w* \w who|strong="G3739"\w* \w would|strong="G1722"\w* \w be|strong="G3756"\w* \w able|strong="G1410"\w* \w to|strong="G4314"\w* \w decide|strong="G1252"\w* \w between|strong="G3319"\w* \w his|strong="G1722"\w* brothers? +\v 6 \w But|strong="G2532"\w* brother \w goes|strong="G2919"\w* \w to|strong="G2532"\w* \w law|strong="G2919"\w* \w with|strong="G3326"\w* brother, \w and|strong="G2532"\w* \w that|strong="G2532"\w* \w before|strong="G1909"\w* unbelievers! +\v 7 \w Therefore|strong="G3767"\w* \w it|strong="G3754"\w* \w is|strong="G1510"\w* \w already|strong="G2235"\w* altogether \w a|strong="G2192"\w* defect \w in|strong="G1223"\w* \w you|strong="G5210"\w* \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w have|strong="G2192"\w* \w lawsuits|strong="G2917"\w* \w one|strong="G1438"\w* \w with|strong="G3326"\w* \w another|strong="G1438"\w*. \w Why|strong="G5101"\w* \w not|strong="G3780"\w* \w rather|strong="G3123"\w* \w be|strong="G1510"\w* wronged? \w Why|strong="G5101"\w* \w not|strong="G3780"\w* \w rather|strong="G3123"\w* \w be|strong="G1510"\w* defrauded? +\v 8 \w No|strong="G2532"\w*, \w but|strong="G2532"\w* \w you|strong="G5210"\w* \w yourselves|strong="G4771"\w* \w do|strong="G2532"\w* wrong \w and|strong="G2532"\w* defraud, \w and|strong="G2532"\w* \w that|strong="G2532"\w* against \w your|strong="G2532"\w* brothers. +\p +\v 9 \w Or|strong="G2228"\w* don’t \w you|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w the|strong="G3754"\w* unrighteous \w will|strong="G2316"\w* \w not|strong="G3756"\w* \w inherit|strong="G2816"\w* \w God|strong="G2316"\w*’s Kingdom? Don’t \w be|strong="G3756"\w* \w deceived|strong="G4105"\w*. \w Neither|strong="G3777"\w* \w the|strong="G3754"\w* sexually \w immoral|strong="G4205"\w*, \w nor|strong="G3777"\w* \w idolaters|strong="G1496"\w*, \w nor|strong="G3777"\w* \w adulterers|strong="G3432"\w*, \w nor|strong="G3777"\w* male prostitutes, \w nor|strong="G3777"\w* homosexuals, +\v 10 \w nor|strong="G3777"\w* \w thieves|strong="G2812"\w*, \w nor|strong="G3777"\w* \w covetous|strong="G4123"\w*, \w nor|strong="G3777"\w* \w drunkards|strong="G3183"\w*, \w nor|strong="G3777"\w* slanderers, \w nor|strong="G3777"\w* extortionists, \w will|strong="G2316"\w* \w inherit|strong="G2816"\w* \w God|strong="G2316"\w*’s Kingdom. +\v 11 \w Some|strong="G5100"\w* \w of|strong="G4151"\w* \w you|strong="G1722"\w* \w were|strong="G1510"\w* \w such|strong="G3778"\w*, \w but|strong="G2532"\w* \w you|strong="G1722"\w* \w were|strong="G1510"\w* washed. \w You|strong="G1722"\w* \w were|strong="G1510"\w* sanctified. \w You|strong="G1722"\w* \w were|strong="G1510"\w* \w justified|strong="G1344"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*, \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w*. +\p +\v 12 “\w All|strong="G3956"\w* \w things|strong="G3956"\w* \w are|strong="G3956"\w* \w lawful|strong="G1832"\w* \w for|strong="G1832"\w* \w me|strong="G1473"\w*,” \w but|strong="G1473"\w* \w not|strong="G3756"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w are|strong="G3956"\w* \w expedient|strong="G4851"\w*. “\w All|strong="G3956"\w* \w things|strong="G3956"\w* \w are|strong="G3956"\w* \w lawful|strong="G1832"\w* \w for|strong="G1832"\w* \w me|strong="G1473"\w*,” \w but|strong="G1473"\w* \w I|strong="G1473"\w* \w will|strong="G1473"\w* \w not|strong="G3756"\w* \w be|strong="G3756"\w* \w brought|strong="G4851"\w* \w under|strong="G5259"\w* \w the|strong="G3956"\w* \w power|strong="G1850"\w* \w of|strong="G5259"\w* \w anything|strong="G5100"\w*. +\v 13 “\w Foods|strong="G1033"\w* \w for|strong="G1161"\w* \w the|strong="G2532"\w* \w belly|strong="G2836"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w belly|strong="G2836"\w* \w for|strong="G1161"\w* \w foods|strong="G1033"\w*,” \w but|strong="G1161"\w* \w God|strong="G2316"\w* \w will|strong="G2316"\w* \w bring|strong="G2532"\w* \w to|strong="G2532"\w* \w nothing|strong="G3756"\w* \w both|strong="G2532"\w* \w it|strong="G2532"\w* \w and|strong="G2532"\w* \w them|strong="G3588"\w*. \w But|strong="G1161"\w* \w the|strong="G2532"\w* \w body|strong="G4983"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w for|strong="G1161"\w* \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w*, \w but|strong="G1161"\w* \w for|strong="G1161"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w for|strong="G1161"\w* \w the|strong="G2532"\w* \w body|strong="G4983"\w*. +\v 14 \w Now|strong="G1161"\w* \w God|strong="G2316"\w* \w raised|strong="G1453"\w* \w up|strong="G1453"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w and|strong="G2532"\w* \w will|strong="G2316"\w* \w also|strong="G2532"\w* \w raise|strong="G1453"\w* \w us|strong="G2249"\w* \w up|strong="G1453"\w* \w by|strong="G1223"\w* \w his|strong="G1223"\w* \w power|strong="G1411"\w*. +\v 15 Don’\w t|strong="G3588"\w* \w you|strong="G5210"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w your|strong="G4160"\w* \w bodies|strong="G4983"\w* \w are|strong="G1510"\w* \w members|strong="G3196"\w* \w of|strong="G4983"\w* \w Christ|strong="G5547"\w*? \w Shall|strong="G3748"\w* \w I|strong="G3754"\w* \w then|strong="G3767"\w* \w take|strong="G1096"\w* \w the|strong="G3588"\w* \w members|strong="G3196"\w* \w of|strong="G4983"\w* \w Christ|strong="G5547"\w* \w and|strong="G3767"\w* \w make|strong="G4160"\w* \w them|strong="G3588"\w* \w members|strong="G3196"\w* \w of|strong="G4983"\w* \w a|strong="G1096"\w* \w prostitute|strong="G4204"\w*? \w May|strong="G5547"\w* \w it|strong="G3754"\w* \w never|strong="G3756"\w* \w be|strong="G1096"\w*! +\v 16 \w Or|strong="G2228"\w* don’\w t|strong="G3588"\w* \w you|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w he|strong="G3754"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w joined|strong="G2853"\w* \w to|strong="G1519"\w* \w a|strong="G1519"\w* \w prostitute|strong="G4204"\w* \w is|strong="G1510"\w* \w one|strong="G1520"\w* \w body|strong="G4983"\w*? \w For|strong="G1063"\w*, “\w The|strong="G1519"\w* \w two|strong="G1417"\w*”, \w he|strong="G3754"\w* \w says|strong="G5346"\w*, “\w will|strong="G1510"\w* \w become|strong="G1510"\w* \w one|strong="G1520"\w* \w flesh|strong="G4561"\w*.”\x + \xo 6:16 \xt Genesis 2:24\x* +\v 17 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w joined|strong="G2853"\w* \w to|strong="G1161"\w* \w the|strong="G1161"\w* \w Lord|strong="G2962"\w* \w is|strong="G1510"\w* \w one|strong="G1520"\w* \w spirit|strong="G4151"\w*. +\v 18 \w Flee|strong="G5343"\w* \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w*! “\w Every|strong="G3956"\w* sin \w that|strong="G3739"\w* \w a|strong="G1519"\w* \w man|strong="G3956"\w* \w does|strong="G4160"\w* \w is|strong="G1510"\w* \w outside|strong="G1622"\w* \w the|strong="G1519"\w* \w body|strong="G4983"\w*,” \w but|strong="G1161"\w* \w he|strong="G1161"\w* \w who|strong="G3739"\w* \w commits|strong="G4160"\w* \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w* sins \w against|strong="G1519"\w* \w his|strong="G3956"\w* \w own|strong="G2398"\w* \w body|strong="G4983"\w*. +\v 19 \w Or|strong="G2228"\w* don’\w t|strong="G3588"\w* \w you|strong="G5210"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w your|strong="G2192"\w* \w body|strong="G4983"\w* \w is|strong="G1510"\w* \w a|strong="G2192"\w* \w temple|strong="G3485"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w*, \w whom|strong="G3739"\w* \w you|strong="G5210"\w* \w have|strong="G2192"\w* \w from|strong="G2532"\w* \w God|strong="G2316"\w*? \w You|strong="G5210"\w* \w are|strong="G1510"\w* \w not|strong="G3756"\w* \w your|strong="G2192"\w* \w own|strong="G1438"\w*, +\v 20 \w for|strong="G1063"\w* \w you|strong="G5210"\w* \w were|strong="G3588"\w* bought \w with|strong="G1722"\w* \w a|strong="G1722"\w* \w price|strong="G5092"\w*. \w Therefore|strong="G1211"\w* \w glorify|strong="G1392"\w* \w God|strong="G2316"\w* \w in|strong="G1722"\w* \w your|strong="G1392"\w* \w body|strong="G4983"\w* \w and|strong="G2316"\w* \w in|strong="G1722"\w* \w your|strong="G1392"\w* \w spirit|strong="G3588"\w*, \w which|strong="G3588"\w* \w are|strong="G3588"\w* \w God|strong="G2316"\w*’s. +\c 7 +\p +\v 1 \w Now|strong="G1161"\w* \w concerning|strong="G4012"\w* \w the|strong="G1161"\w* \w things|strong="G3739"\w* \w about|strong="G4012"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w wrote|strong="G1125"\w* \w to|strong="G3361"\w* me: \w it|strong="G1161"\w* \w is|strong="G3739"\w* \w good|strong="G2570"\w* \w for|strong="G4012"\w* \w a|strong="G1161"\w* \w man|strong="G3361"\w* \w not|strong="G3361"\w* \w to|strong="G3361"\w* touch \w a|strong="G1161"\w* \w woman|strong="G1135"\w*. +\v 2 \w But|strong="G1161"\w*, \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w sexual|strong="G4202"\w* \w immoralities|strong="G4202"\w*, \w let|strong="G1161"\w* \w each|strong="G1538"\w* \w man|strong="G1538"\w* \w have|strong="G2192"\w* \w his|strong="G1438"\w* \w own|strong="G2398"\w* \w wife|strong="G1135"\w*, \w and|strong="G2532"\w* \w let|strong="G1161"\w* \w each|strong="G1538"\w* \w woman|strong="G1135"\w* \w have|strong="G2192"\w* \w her|strong="G1438"\w* \w own|strong="G2398"\w* husband. +\v 3 \w Let|strong="G1161"\w* \w the|strong="G2532"\w* husband give \w his|strong="G2532"\w* \w wife|strong="G1135"\w* \w the|strong="G2532"\w* affection owed \w her|strong="G3588"\w*,\f + \fr 7:3 \ft NU and TR have “what is owed her” instead of “the affection owed her”.\f* \w and|strong="G2532"\w* \w likewise|strong="G3668"\w* \w also|strong="G2532"\w* \w the|strong="G2532"\w* \w wife|strong="G1135"\w* \w her|strong="G3588"\w* husband. +\v 4 \w The|strong="G2532"\w* \w wife|strong="G1135"\w* doesn’\w t|strong="G3588"\w* \w have|strong="G2532"\w* \w authority|strong="G1850"\w* \w over|strong="G1850"\w* \w her|strong="G3588"\w* \w own|strong="G2398"\w* \w body|strong="G4983"\w*, \w but|strong="G1161"\w* \w the|strong="G2532"\w* husband does. \w Likewise|strong="G3668"\w* \w also|strong="G2532"\w* \w the|strong="G2532"\w* husband doesn’\w t|strong="G3588"\w* \w have|strong="G2532"\w* \w authority|strong="G1850"\w* \w over|strong="G1850"\w* \w his|strong="G2398"\w* \w own|strong="G2398"\w* \w body|strong="G4983"\w*, \w but|strong="G1161"\w* \w the|strong="G2532"\w* \w wife|strong="G1135"\w* does. +\v 5 Don’\w t|strong="G3588"\w* deprive \w one|strong="G3588"\w* \w another|strong="G3825"\w*, \w unless|strong="G1487"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w by|strong="G1223"\w* \w consent|strong="G4859"\w* \w for|strong="G1223"\w* \w a|strong="G2532"\w* \w season|strong="G2540"\w*, \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w may|strong="G2532"\w* give \w yourselves|strong="G4771"\w* \w to|strong="G4314"\w* fasting \w and|strong="G2532"\w* \w prayer|strong="G4335"\w*, \w and|strong="G2532"\w* \w may|strong="G2532"\w* \w be|strong="G1510"\w* \w together|strong="G1909"\w* \w again|strong="G3825"\w*, \w that|strong="G2443"\w* \w Satan|strong="G4567"\w* doesn’\w t|strong="G3588"\w* \w tempt|strong="G3985"\w* \w you|strong="G5210"\w* \w because|strong="G1223"\w* \w of|strong="G1537"\w* \w your|strong="G1223"\w* lack \w of|strong="G1537"\w* self-control. +\p +\v 6 \w But|strong="G1161"\w* \w this|strong="G3778"\w* \w I|strong="G1161"\w* \w say|strong="G3004"\w* \w by|strong="G2596"\w* \w way|strong="G2596"\w* \w of|strong="G2596"\w* \w concession|strong="G4774"\w*, \w not|strong="G3756"\w* \w of|strong="G2596"\w* \w commandment|strong="G2003"\w*. +\v 7 \w Yet|strong="G2532"\w* \w I|strong="G2532"\w* \w wish|strong="G2309"\w* \w that|strong="G3588"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w* \w were|strong="G1510"\w* \w like|strong="G5613"\w* \w me|strong="G1683"\w*. \w However|strong="G1161"\w*, \w each|strong="G1538"\w* \w man|strong="G1538"\w* \w has|strong="G2192"\w* \w his|strong="G3956"\w* \w own|strong="G2398"\w* \w gift|strong="G5486"\w* \w from|strong="G1537"\w* \w God|strong="G2316"\w*, \w one|strong="G1538"\w* \w of|strong="G1537"\w* \w this|strong="G3588"\w* \w kind|strong="G3956"\w*, \w and|strong="G2532"\w* \w another|strong="G3588"\w* \w of|strong="G1537"\w* \w that|strong="G3588"\w* \w kind|strong="G3956"\w*. +\v 8 \w But|strong="G1161"\w* \w I|strong="G2532"\w* \w say|strong="G3004"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* unmarried \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w widows|strong="G5503"\w*, \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w good|strong="G2570"\w* \w for|strong="G1161"\w* \w them|strong="G3588"\w* \w if|strong="G1437"\w* \w they|strong="G2532"\w* \w remain|strong="G3306"\w* \w even|strong="G2532"\w* \w as|strong="G5613"\w* \w I|strong="G2532"\w* \w am|strong="G2532"\w*. +\v 9 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w they|strong="G1161"\w* don’t \w have|strong="G1510"\w* \w self-control|strong="G1467"\w*, \w let|strong="G1161"\w* \w them|strong="G1510"\w* \w marry|strong="G1060"\w*. \w For|strong="G1063"\w* \w it|strong="G1161"\w*’s \w better|strong="G2909"\w* \w to|strong="G3756"\w* \w marry|strong="G1060"\w* \w than|strong="G2228"\w* \w to|strong="G3756"\w* \w burn|strong="G4448"\w* \w with|strong="G3756"\w* passion. +\v 10 \w But|strong="G1161"\w* \w to|strong="G3756"\w* \w the|strong="G1161"\w* \w married|strong="G1060"\w* \w I|strong="G1473"\w* \w command|strong="G3853"\w*—\w not|strong="G3756"\w* \w I|strong="G1473"\w*, \w but|strong="G1161"\w* \w the|strong="G1161"\w* \w Lord|strong="G2962"\w*—\w that|strong="G3588"\w* \w the|strong="G1161"\w* \w wife|strong="G1135"\w* \w not|strong="G3756"\w* \w leave|strong="G5563"\w* \w her|strong="G3588"\w* husband +\v 11 (\w but|strong="G1161"\w* \w if|strong="G1437"\w* \w she|strong="G2532"\w* departs, \w let|strong="G1161"\w* \w her|strong="G1437"\w* \w remain|strong="G3306"\w* unmarried, \w or|strong="G2228"\w* \w else|strong="G2228"\w* \w be|strong="G2532"\w* \w reconciled|strong="G2644"\w* \w to|strong="G2532"\w* \w her|strong="G1437"\w* husband), \w and|strong="G2532"\w* \w that|strong="G3588"\w* \w the|strong="G2532"\w* husband \w not|strong="G3361"\w* \w leave|strong="G5563"\w* \w his|strong="G2532"\w* \w wife|strong="G1135"\w*. +\p +\v 12 \w But|strong="G1161"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w rest|strong="G3062"\w* \w I|strong="G1473"\w*—\w not|strong="G3756"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*—\w say|strong="G3004"\w*, \w if|strong="G1487"\w* \w any|strong="G5100"\w* brother \w has|strong="G2192"\w* \w an|strong="G2192"\w* unbelieving \w wife|strong="G1135"\w*, \w and|strong="G2532"\w* \w she|strong="G2532"\w* \w is|strong="G3588"\w* content \w to|strong="G2532"\w* \w live|strong="G2532"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w*, \w let|strong="G1161"\w* \w him|strong="G3588"\w* \w not|strong="G3756"\w* leave \w her|strong="G1438"\w*. +\v 13 \w The|strong="G2532"\w* \w woman|strong="G1135"\w* \w who|strong="G3588"\w* \w has|strong="G2192"\w* \w an|strong="G2192"\w* unbelieving husband, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w is|strong="G3588"\w* content \w to|strong="G2532"\w* \w live|strong="G2532"\w* \w with|strong="G3326"\w* \w her|strong="G2192"\w*, \w let|strong="G2192"\w* \w her|strong="G2192"\w* \w not|strong="G3361"\w* leave \w her|strong="G2192"\w* husband. +\v 14 \w For|strong="G1063"\w* \w the|strong="G1722"\w* unbelieving husband \w is|strong="G1510"\w* sanctified \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wife|strong="G1135"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* unbelieving \w wife|strong="G1135"\w* \w is|strong="G1510"\w* sanctified \w in|strong="G1722"\w* \w the|strong="G1722"\w* husband. \w Otherwise|strong="G1893"\w* \w your|strong="G2532"\w* \w children|strong="G5043"\w* \w would|strong="G2532"\w* \w be|strong="G1510"\w* unclean, \w but|strong="G1161"\w* \w now|strong="G1161"\w* \w they|strong="G2532"\w* \w are|strong="G1510"\w* holy. +\v 15 \w Yet|strong="G1161"\w* \w if|strong="G1487"\w* \w the|strong="G1722"\w* unbeliever departs, \w let|strong="G1161"\w* \w there|strong="G1161"\w* \w be|strong="G3756"\w* separation. \w The|strong="G1722"\w* brother \w or|strong="G2228"\w* \w the|strong="G1722"\w* sister \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w under|strong="G1722"\w* \w bondage|strong="G1402"\w* \w in|strong="G1722"\w* \w such|strong="G5108"\w* cases, \w but|strong="G1161"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w called|strong="G2564"\w* \w us|strong="G2564"\w* \w in|strong="G1722"\w* \w peace|strong="G1515"\w*. +\v 16 \w For|strong="G1063"\w* \w how|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G1487"\w* \w know|strong="G1492"\w*, \w wife|strong="G1135"\w*, \w whether|strong="G1487"\w* \w you|strong="G1487"\w* \w will|strong="G5101"\w* \w save|strong="G4982"\w* \w your|strong="G1487"\w* husband? \w Or|strong="G2228"\w* \w how|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G1487"\w* \w know|strong="G1492"\w*, husband, \w whether|strong="G1487"\w* \w you|strong="G1487"\w* \w will|strong="G5101"\w* \w save|strong="G4982"\w* \w your|strong="G1487"\w* \w wife|strong="G1135"\w*? +\p +\v 17 \w Only|strong="G1487"\w*, \w as|strong="G5613"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w has|strong="G2316"\w* \w distributed|strong="G3307"\w* \w to|strong="G2532"\w* \w each|strong="G1538"\w* \w man|strong="G1538"\w*, \w as|strong="G5613"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w called|strong="G2564"\w* \w each|strong="G1538"\w*, \w so|strong="G3779"\w* \w let|strong="G2532"\w* \w him|strong="G3588"\w* \w walk|strong="G4043"\w*. \w So|strong="G3779"\w* \w I|strong="G2532"\w* command \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w assemblies|strong="G1577"\w*. +\p +\v 18 \w Was|strong="G2564"\w* \w anyone|strong="G5100"\w* \w called|strong="G2564"\w* \w having|strong="G5100"\w* \w been|strong="G3361"\w* \w circumcised|strong="G4059"\w*? Let \w him|strong="G2564"\w* \w not|strong="G3361"\w* \w become|strong="G3361"\w* \w uncircumcised|strong="G1986"\w*. \w Has|strong="G5100"\w* \w anyone|strong="G5100"\w* \w been|strong="G3361"\w* \w called|strong="G2564"\w* \w in|strong="G1722"\w* uncircumcision? Let \w him|strong="G2564"\w* \w not|strong="G3361"\w* \w be|strong="G3361"\w* \w circumcised|strong="G4059"\w*. +\v 19 \w Circumcision|strong="G4061"\w* \w is|strong="G1510"\w* \w nothing|strong="G3762"\w*, \w and|strong="G2532"\w* uncircumcision \w is|strong="G1510"\w* \w nothing|strong="G3762"\w*, \w but|strong="G2532"\w* \w what|strong="G3588"\w* matters \w is|strong="G1510"\w* \w keeping|strong="G5084"\w* \w God|strong="G2316"\w*’s \w commandments|strong="G1785"\w*. +\v 20 \w Let|strong="G3306"\w* \w each|strong="G1538"\w* \w man|strong="G3778"\w* \w stay|strong="G3306"\w* \w in|strong="G1722"\w* \w that|strong="G3739"\w* \w calling|strong="G2821"\w* \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w he|strong="G3739"\w* \w was|strong="G3588"\w* \w called|strong="G2564"\w*. +\v 21 \w Were|strong="G1096"\w* \w you|strong="G4771"\w* \w called|strong="G2564"\w* \w being|strong="G1096"\w* \w a|strong="G1096"\w* bondservant? Don’t \w let|strong="G1096"\w* \w that|strong="G2532"\w* bother \w you|strong="G4771"\w*, \w but|strong="G2532"\w* \w if|strong="G1487"\w* \w you|strong="G4771"\w* \w get|strong="G1096"\w* \w an|strong="G2532"\w* opportunity \w to|strong="G2532"\w* \w become|strong="G1096"\w* \w free|strong="G1658"\w*, \w use|strong="G5530"\w* \w it|strong="G2532"\w*. +\v 22 \w For|strong="G1063"\w* \w he|strong="G3588"\w* \w who|strong="G3588"\w* \w was|strong="G1510"\w* \w called|strong="G2564"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w being|strong="G1510"\w* \w a|strong="G1722"\w* bondservant \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*’\w s|strong="G2962"\w* \w free|strong="G1658"\w* \w man|strong="G1658"\w*. \w Likewise|strong="G3668"\w* \w he|strong="G3588"\w* \w who|strong="G3588"\w* \w was|strong="G1510"\w* \w called|strong="G2564"\w* \w being|strong="G1510"\w* \w free|strong="G1658"\w* \w is|strong="G1510"\w* \w Christ|strong="G5547"\w*’\w s|strong="G2962"\w* bondservant. +\v 23 \w You|strong="G3361"\w* \w were|strong="G1096"\w* bought \w with|strong="G1096"\w* \w a|strong="G1096"\w* \w price|strong="G5092"\w*. Don’t \w become|strong="G1096"\w* bondservants \w of|strong="G1401"\w* \w men|strong="G1401"\w*. +\v 24 Brothers, \w let|strong="G3306"\w* \w each|strong="G1538"\w* \w man|strong="G3778"\w*, \w in|strong="G1722"\w* \w whatever|strong="G3739"\w* condition \w he|strong="G3739"\w* \w was|strong="G3739"\w* \w called|strong="G2564"\w*, \w stay|strong="G3306"\w* \w in|strong="G1722"\w* \w that|strong="G3739"\w* condition \w with|strong="G1722"\w* \w God|strong="G2316"\w*. +\p +\v 25 \w Now|strong="G1161"\w* \w concerning|strong="G4012"\w* \w virgins|strong="G3933"\w*, \w I|strong="G1161"\w* \w have|strong="G2192"\w* \w no|strong="G3756"\w* \w commandment|strong="G2003"\w* \w from|strong="G5259"\w* \w the|strong="G1161"\w* \w Lord|strong="G2962"\w*, \w but|strong="G1161"\w* \w I|strong="G1161"\w* \w give|strong="G1325"\w* \w my|strong="G1325"\w* \w judgment|strong="G1106"\w* \w as|strong="G5613"\w* \w one|strong="G3588"\w* \w who|strong="G3588"\w* \w has|strong="G2192"\w* \w obtained|strong="G2192"\w* \w mercy|strong="G1653"\w* \w from|strong="G5259"\w* \w the|strong="G1161"\w* \w Lord|strong="G2962"\w* \w to|strong="G1325"\w* \w be|strong="G1510"\w* \w trustworthy|strong="G4103"\w*. +\v 26 \w Therefore|strong="G3767"\w* \w I|strong="G3754"\w* \w think|strong="G3543"\w* \w that|strong="G3754"\w* \w because|strong="G3754"\w* \w of|strong="G1223"\w* \w the|strong="G1223"\w* distress \w that|strong="G3754"\w* \w is|strong="G1510"\w* \w on|strong="G3588"\w* us, \w it|strong="G3754"\w*’s \w good|strong="G2570"\w* \w for|strong="G3754"\w* \w a|strong="G1510"\w* \w man|strong="G3778"\w* \w to|strong="G3778"\w* \w remain|strong="G1510"\w* \w as|strong="G3779"\w* \w he|strong="G3754"\w* \w is|strong="G1510"\w*. +\v 27 \w Are|strong="G2212"\w* \w you|strong="G3361"\w* \w bound|strong="G1210"\w* \w to|strong="G2212"\w* \w a|strong="G3361"\w* \w wife|strong="G1135"\w*? Don’t \w seek|strong="G2212"\w* \w to|strong="G2212"\w* \w be|strong="G3361"\w* freed. \w Are|strong="G2212"\w* \w you|strong="G3361"\w* \w free|strong="G3089"\w* \w from|strong="G3361"\w* \w a|strong="G3361"\w* \w wife|strong="G1135"\w*? Don’t \w seek|strong="G2212"\w* \w a|strong="G3361"\w* \w wife|strong="G1135"\w*. +\v 28 \w But|strong="G1161"\w* \w if|strong="G1437"\w* \w you|strong="G5210"\w* \w marry|strong="G1060"\w*, \w you|strong="G5210"\w* \w have|strong="G2192"\w* \w not|strong="G3756"\w* sinned. \w If|strong="G1437"\w* \w a|strong="G2192"\w* \w virgin|strong="G3933"\w* \w marries|strong="G1060"\w*, \w she|strong="G2532"\w* \w has|strong="G2192"\w* \w not|strong="G3756"\w* sinned. \w Yet|strong="G2532"\w* \w such|strong="G5108"\w* \w will|strong="G2532"\w* \w have|strong="G2192"\w* oppression \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w*, \w and|strong="G2532"\w* \w I|strong="G1473"\w* want \w to|strong="G2532"\w* \w spare|strong="G5339"\w* \w you|strong="G5210"\w*. +\v 29 \w But|strong="G1161"\w* \w I|strong="G2532"\w* \w say|strong="G5346"\w* \w this|strong="G3778"\w*, brothers: \w the|strong="G2532"\w* \w time|strong="G2540"\w* \w is|strong="G1510"\w* \w short|strong="G3588"\w*. \w From|strong="G2532"\w* \w now|strong="G1161"\w* \w on|strong="G1161"\w*, \w both|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w have|strong="G2192"\w* \w wives|strong="G1135"\w* \w may|strong="G2532"\w* \w be|strong="G1510"\w* \w as|strong="G5613"\w* \w though|strong="G5613"\w* \w they|strong="G2532"\w* \w had|strong="G2192"\w* \w none|strong="G3361"\w*; +\v 30 \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w weep|strong="G2799"\w*, \w as|strong="G5613"\w* \w though|strong="G5613"\w* \w they|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w weep|strong="G2799"\w*; \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w rejoice|strong="G5463"\w*, \w as|strong="G5613"\w* \w though|strong="G5613"\w* \w they|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w rejoice|strong="G5463"\w*; \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* buy, \w as|strong="G5613"\w* \w though|strong="G5613"\w* \w they|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w possess|strong="G2722"\w*; +\v 31 \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w use|strong="G5530"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w*, \w as|strong="G5613"\w* \w not|strong="G3361"\w* \w using|strong="G2710"\w* \w it|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* fullest. \w For|strong="G1063"\w* \w the|strong="G2532"\w* mode \w of|strong="G2532"\w* \w this|strong="G3778"\w* \w world|strong="G2889"\w* passes \w away|strong="G3855"\w*. +\p +\v 32 \w But|strong="G1161"\w* \w I|strong="G1161"\w* \w desire|strong="G2309"\w* \w to|strong="G2309"\w* \w have|strong="G2309"\w* \w you|strong="G5210"\w* \w to|strong="G2309"\w* \w be|strong="G1510"\w* free \w from|strong="G3588"\w* cares. \w He|strong="G1161"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* unmarried \w is|strong="G1510"\w* \w concerned|strong="G3309"\w* \w for|strong="G1161"\w* \w the|strong="G1161"\w* \w things|strong="G3588"\w* \w of|strong="G2962"\w* \w the|strong="G1161"\w* \w Lord|strong="G2962"\w*, \w how|strong="G4459"\w* \w he|strong="G1161"\w* \w may|strong="G5210"\w* \w please|strong="G2309"\w* \w the|strong="G1161"\w* \w Lord|strong="G2962"\w*; +\v 33 \w but|strong="G1161"\w* \w he|strong="G1161"\w* \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w married|strong="G1060"\w* \w is|strong="G3588"\w* \w concerned|strong="G3309"\w* \w about|strong="G3309"\w* \w the|strong="G1161"\w* \w things|strong="G3588"\w* \w of|strong="G3588"\w* \w the|strong="G1161"\w* \w world|strong="G2889"\w*, \w how|strong="G4459"\w* \w he|strong="G1161"\w* \w may|strong="G2889"\w* please \w his|strong="G3588"\w* \w wife|strong="G1135"\w*. +\v 34 \w There|strong="G2532"\w* \w is|strong="G1510"\w* \w also|strong="G2532"\w* \w a|strong="G2532"\w* \w difference|strong="G3307"\w* \w between|strong="G3307"\w* \w a|strong="G2532"\w* \w wife|strong="G1135"\w* \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w virgin|strong="G3933"\w*. \w The|strong="G2532"\w* \w unmarried|strong="G3933"\w* \w woman|strong="G1135"\w* cares \w about|strong="G3309"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w that|strong="G2443"\w* \w she|strong="G2532"\w* \w may|strong="G2532"\w* \w be|strong="G1510"\w* \w holy|strong="G4151"\w* \w both|strong="G2532"\w* \w in|strong="G2532"\w* \w body|strong="G4983"\w* \w and|strong="G2532"\w* \w in|strong="G2532"\w* \w spirit|strong="G4151"\w*. \w But|strong="G1161"\w* \w she|strong="G2532"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w married|strong="G1060"\w* cares \w about|strong="G3309"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w*—\w how|strong="G4459"\w* \w she|strong="G2532"\w* \w may|strong="G2532"\w* please \w her|strong="G3588"\w* husband. +\v 35 \w This|strong="G3778"\w* \w I|strong="G2532"\w* \w say|strong="G3004"\w* \w for|strong="G4314"\w* \w your|strong="G2962"\w* own \w benefit|strong="G4851"\w*, \w not|strong="G3756"\w* \w that|strong="G2443"\w* \w I|strong="G2532"\w* \w may|strong="G2532"\w* ensnare \w you|strong="G5210"\w*, \w but|strong="G1161"\w* \w for|strong="G4314"\w* \w that|strong="G2443"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w appropriate|strong="G2158"\w*, \w and|strong="G2532"\w* \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w may|strong="G2532"\w* attend \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w without|strong="G2532"\w* distraction. +\p +\v 36 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w any|strong="G5100"\w* \w man|strong="G5100"\w* \w thinks|strong="G3543"\w* \w that|strong="G3739"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* behaving inappropriately \w toward|strong="G1909"\w* \w his|strong="G1909"\w* \w virgin|strong="G3933"\w*, \w if|strong="G1487"\w* \w she|strong="G2532"\w* \w is|strong="G1510"\w* \w past|strong="G1096"\w* \w the|strong="G2532"\w* flower \w of|strong="G2532"\w* \w her|strong="G1437"\w* \w age|strong="G5230"\w*, \w and|strong="G2532"\w* \w if|strong="G1487"\w* \w need|strong="G1487"\w* \w so|strong="G3779"\w* requires, \w let|strong="G1096"\w* \w him|strong="G3588"\w* \w do|strong="G4160"\w* \w what|strong="G3739"\w* \w he|strong="G2532"\w* \w desires|strong="G2309"\w*. \w He|strong="G2532"\w* doesn’\w t|strong="G3588"\w* sin. \w Let|strong="G1096"\w* \w them|strong="G3588"\w* \w marry|strong="G1060"\w*. +\v 37 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w who|strong="G3739"\w* \w stands|strong="G2476"\w* \w steadfast|strong="G1476"\w* \w in|strong="G1722"\w* \w his|strong="G1438"\w* \w heart|strong="G2588"\w*, \w having|strong="G2192"\w* \w no|strong="G3361"\w* urgency, \w but|strong="G1161"\w* \w has|strong="G2192"\w* \w power|strong="G1849"\w* \w over|strong="G4012"\w* \w his|strong="G1438"\w* \w own|strong="G2398"\w* \w will|strong="G2307"\w*, \w and|strong="G2532"\w* \w has|strong="G2192"\w* \w determined|strong="G2919"\w* \w in|strong="G1722"\w* \w his|strong="G1438"\w* \w own|strong="G2398"\w* \w heart|strong="G2588"\w* \w to|strong="G2532"\w* \w keep|strong="G5083"\w* \w his|strong="G1438"\w* \w own|strong="G2398"\w* \w virgin|strong="G3933"\w*, \w does|strong="G4160"\w* \w well|strong="G2573"\w*. +\v 38 \w So|strong="G2532"\w* \w then|strong="G2532"\w* \w both|strong="G2532"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w gives|strong="G1061"\w* \w his|strong="G1438"\w* \w own|strong="G1438"\w* \w virgin|strong="G3933"\w* \w in|strong="G2532"\w* \w marriage|strong="G1061"\w* \w does|strong="G4160"\w* \w well|strong="G2573"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* doesn’\w t|strong="G3588"\w* \w give|strong="G4160"\w* \w her|strong="G1438"\w* \w in|strong="G2532"\w* \w marriage|strong="G1061"\w* \w does|strong="G4160"\w* \w better|strong="G2909"\w*. +\p +\v 39 \w A|strong="G1722"\w* \w wife|strong="G1135"\w* \w is|strong="G1510"\w* \w bound|strong="G1210"\w* \w by|strong="G1722"\w* law \w for|strong="G1909"\w* \w as|strong="G3745"\w* \w long|strong="G5550"\w* \w as|strong="G3745"\w* \w her|strong="G1437"\w* husband \w lives|strong="G2198"\w*; \w but|strong="G1161"\w* \w if|strong="G1437"\w* \w the|strong="G1722"\w* husband \w is|strong="G1510"\w* \w dead|strong="G2837"\w*, \w she|strong="G1161"\w* \w is|strong="G1510"\w* \w free|strong="G1658"\w* \w to|strong="G1909"\w* \w be|strong="G1510"\w* \w married|strong="G1060"\w* \w to|strong="G1909"\w* \w whomever|strong="G3739"\w* \w she|strong="G1161"\w* \w desires|strong="G2309"\w*, \w only|strong="G3440"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\v 40 \w But|strong="G1161"\w* \w she|strong="G1161"\w* \w is|strong="G1510"\w* \w happier|strong="G3107"\w* \w if|strong="G1437"\w* \w she|strong="G1161"\w* stays \w as|strong="G1161"\w* \w she|strong="G1161"\w* \w is|strong="G1510"\w*, \w in|strong="G2596"\w* \w my|strong="G1699"\w* \w judgment|strong="G1106"\w*, \w and|strong="G1161"\w* \w I|strong="G2504"\w* \w think|strong="G1380"\w* \w that|strong="G3588"\w* \w I|strong="G2504"\w* \w also|strong="G2504"\w* \w have|strong="G2192"\w* \w God|strong="G2316"\w*’\w s|strong="G2192"\w* \w Spirit|strong="G4151"\w*. +\c 8 +\p +\v 1 \w Now|strong="G1161"\w* \w concerning|strong="G4012"\w* \w things|strong="G3956"\w* \w sacrificed|strong="G1494"\w* \w to|strong="G1161"\w* \w idols|strong="G1494"\w*: \w We|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w we|strong="G3754"\w* \w all|strong="G3956"\w* \w have|strong="G2192"\w* \w knowledge|strong="G1108"\w*. \w Knowledge|strong="G1108"\w* puffs \w up|strong="G5448"\w*, \w but|strong="G1161"\w* love \w builds|strong="G3618"\w* \w up|strong="G5448"\w*. +\v 2 \w But|strong="G1487"\w* \w if|strong="G1487"\w* \w anyone|strong="G5100"\w* \w thinks|strong="G1380"\w* \w that|strong="G1097"\w* \w he|strong="G1487"\w* \w knows|strong="G1097"\w* \w anything|strong="G5100"\w*, \w he|strong="G1487"\w* doesn’t \w yet|strong="G3768"\w* \w know|strong="G1097"\w* \w as|strong="G2531"\w* \w he|strong="G1487"\w* \w ought|strong="G1163"\w* \w to|strong="G1163"\w* \w know|strong="G1097"\w*. +\v 3 \w But|strong="G1161"\w* \w anyone|strong="G5100"\w* \w who|strong="G3588"\w* loves \w God|strong="G2316"\w* \w is|strong="G3588"\w* \w known|strong="G1097"\w* \w by|strong="G5259"\w* \w him|strong="G3588"\w*. +\p +\v 4 \w Therefore|strong="G3767"\w* \w concerning|strong="G4012"\w* \w the|strong="G1722"\w* \w eating|strong="G1035"\w* \w of|strong="G4012"\w* \w things|strong="G3588"\w* \w sacrificed|strong="G1494"\w* \w to|strong="G2532"\w* \w idols|strong="G1497"\w*, \w we|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w no|strong="G3762"\w* \w idol|strong="G1497"\w* \w is|strong="G3588"\w* \w anything|strong="G3762"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*, \w and|strong="G2532"\w* \w that|strong="G3754"\w* \w there|strong="G2532"\w* \w is|strong="G3588"\w* \w no|strong="G3762"\w* \w other|strong="G1520"\w* \w God|strong="G2316"\w* \w but|strong="G2532"\w* \w one|strong="G1520"\w*. +\v 5 \w For|strong="G1063"\w* \w though|strong="G2532"\w* \w there|strong="G2532"\w* \w are|strong="G1510"\w* \w things|strong="G4183"\w* \w that|strong="G2532"\w* \w are|strong="G1510"\w* \w called|strong="G3004"\w* “\w gods|strong="G2316"\w*”, \w whether|strong="G1535"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w heavens|strong="G3772"\w* \w or|strong="G1535"\w* \w on|strong="G1909"\w* \w earth|strong="G1093"\w*—\w as|strong="G5618"\w* \w there|strong="G2532"\w* \w are|strong="G1510"\w* \w many|strong="G4183"\w* “\w gods|strong="G2316"\w*” \w and|strong="G2532"\w* \w many|strong="G4183"\w* “\w lords|strong="G2962"\w*”— +\v 6 \w yet|strong="G2532"\w* \w to|strong="G1519"\w* \w us|strong="G1519"\w* \w there|strong="G2532"\w* \w is|strong="G3588"\w* \w one|strong="G1520"\w* \w God|strong="G2316"\w*, \w the|strong="G2532"\w* \w Father|strong="G3962"\w*, \w of|strong="G1537"\w* \w whom|strong="G3739"\w* \w are|strong="G3588"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w and|strong="G2532"\w* \w we|strong="G2249"\w* \w for|strong="G1519"\w* \w him|strong="G3588"\w*; \w and|strong="G2532"\w* \w one|strong="G1520"\w* \w Lord|strong="G2962"\w*, \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w through|strong="G1223"\w* \w whom|strong="G3739"\w* \w are|strong="G3588"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w and|strong="G2532"\w* \w we|strong="G2249"\w* \w live|strong="G2532"\w* \w through|strong="G1223"\w* \w him|strong="G3588"\w*. +\p +\v 7 \w However|strong="G1161"\w*, \w that|strong="G3588"\w* \w knowledge|strong="G1108"\w* isn’\w t|strong="G3588"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w*. \w But|strong="G1161"\w* \w some|strong="G5100"\w*, \w with|strong="G1722"\w* \w consciousness|strong="G4893"\w* \w of|strong="G2532"\w* \w an|strong="G2532"\w* \w idol|strong="G1497"\w* \w until|strong="G2193"\w* \w now|strong="G1161"\w*, \w eat|strong="G2068"\w* \w as|strong="G5613"\w* \w of|strong="G2532"\w* \w a|strong="G5613"\w* \w thing|strong="G5100"\w* \w sacrificed|strong="G1494"\w* \w to|strong="G2532"\w* \w an|strong="G2532"\w* \w idol|strong="G1497"\w*, \w and|strong="G2532"\w* \w their|strong="G2532"\w* \w conscience|strong="G4893"\w*, \w being|strong="G1510"\w* weak, \w is|strong="G1510"\w* \w defiled|strong="G3435"\w*. +\v 8 \w But|strong="G1161"\w* \w food|strong="G1033"\w* \w will|strong="G2316"\w* \w not|strong="G3756"\w* \w commend|strong="G3936"\w* \w us|strong="G2249"\w* \w to|strong="G3756"\w* \w God|strong="G2316"\w*. \w For|strong="G1063"\w* \w neither|strong="G3777"\w*, \w if|strong="G1437"\w* \w we|strong="G2249"\w* don’\w t|strong="G3588"\w* \w eat|strong="G2068"\w* \w are|strong="G3588"\w* \w we|strong="G2249"\w* \w the|strong="G1161"\w* \w worse|strong="G5302"\w*, \w nor|strong="G3777"\w* \w if|strong="G1437"\w* \w we|strong="G2249"\w* \w eat|strong="G2068"\w* \w are|strong="G3588"\w* \w we|strong="G2249"\w* \w the|strong="G1161"\w* \w better|strong="G4052"\w*. +\v 9 \w But|strong="G1161"\w* \w be|strong="G1096"\w* careful \w that|strong="G3588"\w* \w by|strong="G3361"\w* \w no|strong="G3361"\w* \w means|strong="G3381"\w* \w does|strong="G1096"\w* \w this|strong="G3778"\w* \w liberty|strong="G1849"\w* \w of|strong="G3588"\w* \w yours|strong="G4771"\w* \w become|strong="G1096"\w* \w a|strong="G1096"\w* \w stumbling|strong="G4348"\w* \w block|strong="G4348"\w* \w to|strong="G1849"\w* \w the|strong="G1161"\w* weak. +\v 10 \w For|strong="G1063"\w* \w if|strong="G1437"\w* \w a|strong="G2192"\w* \w man|strong="G5100"\w* \w sees|strong="G3708"\w* \w you|strong="G4771"\w* \w who|strong="G3588"\w* \w have|strong="G2192"\w* \w knowledge|strong="G1108"\w* \w sitting|strong="G2621"\w* \w in|strong="G1722"\w* \w an|strong="G2192"\w* \w idol|strong="G1494"\w*’\w s|strong="G2192"\w* \w temple|strong="G1493"\w*, won’\w t|strong="G3588"\w* \w his|strong="G1519"\w* \w conscience|strong="G4893"\w*, \w if|strong="G1437"\w* \w he|strong="G3588"\w* \w is|strong="G1510"\w* weak, \w be|strong="G1510"\w* \w emboldened|strong="G3618"\w* \w to|strong="G1519"\w* \w eat|strong="G2068"\w* \w things|strong="G3588"\w* \w sacrificed|strong="G1494"\w* \w to|strong="G1519"\w* \w idols|strong="G1494"\w*? +\v 11 \w And|strong="G5547"\w* \w through|strong="G1223"\w* \w your|strong="G4674"\w* \w knowledge|strong="G1108"\w*, \w he|strong="G3739"\w* \w who|strong="G3739"\w* \w is|strong="G3588"\w* weak perishes, \w the|strong="G1722"\w* brother \w for|strong="G1063"\w* \w whose|strong="G3739"\w* \w sake|strong="G1223"\w* \w Christ|strong="G5547"\w* \w died|strong="G3588"\w*. +\v 12 \w Thus|strong="G3779"\w*, sinning \w against|strong="G1519"\w* \w the|strong="G2532"\w* brothers, \w and|strong="G2532"\w* \w wounding|strong="G5180"\w* \w their|strong="G2532"\w* \w conscience|strong="G4893"\w* \w when|strong="G1161"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* weak, \w you|strong="G3779"\w* sin \w against|strong="G1519"\w* \w Christ|strong="G5547"\w*. +\v 13 \w Therefore|strong="G1355"\w*, \w if|strong="G1487"\w* \w food|strong="G1033"\w* \w causes|strong="G4624"\w* \w my|strong="G1473"\w* brother \w to|strong="G1519"\w* \w stumble|strong="G4624"\w*, \w I|strong="G1473"\w* \w will|strong="G1473"\w* \w eat|strong="G2068"\w* \w no|strong="G3756"\w* \w meat|strong="G1033"\w* \w forever|strong="G1519"\w* \w more|strong="G3756"\w*, \w that|strong="G2443"\w* \w I|strong="G1473"\w* don’\w t|strong="G3588"\w* \w cause|strong="G4624"\w* \w my|strong="G1473"\w* brother \w to|strong="G1519"\w* \w stumble|strong="G4624"\w*. +\c 9 +\p +\v 1 \w Am|strong="G1510"\w* \w I|strong="G1473"\w* \w not|strong="G3756"\w* \w free|strong="G1658"\w*? \w Am|strong="G1510"\w* \w I|strong="G1473"\w* \w not|strong="G3756"\w* \w an|strong="G1722"\w* apostle? Haven’\w t|strong="G3588"\w* \w I|strong="G1473"\w* \w seen|strong="G3708"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G2962"\w*, \w our|strong="G2424"\w* \w Lord|strong="G2962"\w*? Aren’\w t|strong="G3588"\w* \w you|strong="G5210"\w* \w my|strong="G3708"\w* \w work|strong="G2041"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*? +\v 2 \w If|strong="G1487"\w* \w to|strong="G1722"\w* \w others|strong="G3588"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w not|strong="G3756"\w* \w an|strong="G1722"\w* apostle, \w yet|strong="G1065"\w* \w at|strong="G1722"\w* least \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w to|strong="G1722"\w* \w you|strong="G5210"\w*; \w for|strong="G1063"\w* \w you|strong="G5210"\w* \w are|strong="G1510"\w* \w the|strong="G1722"\w* \w seal|strong="G4973"\w* \w of|strong="G2962"\w* \w my|strong="G1722"\w* apostleship \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\p +\v 3 \w My|strong="G1699"\w* defense \w to|strong="G3778"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* examine \w me|strong="G1473"\w* \w is|strong="G1510"\w* \w this|strong="G3778"\w*: +\v 4 \w Have|strong="G2192"\w* \w we|strong="G2532"\w* \w no|strong="G3756"\w* \w right|strong="G1849"\w* \w to|strong="G2532"\w* \w eat|strong="G2068"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w drink|strong="G4095"\w*? +\v 5 \w Have|strong="G2192"\w* \w we|strong="G2532"\w* \w no|strong="G3756"\w* \w right|strong="G1849"\w* \w to|strong="G2532"\w* \w take|strong="G2532"\w* \w along|strong="G2532"\w* \w a|strong="G2192"\w* \w wife|strong="G1135"\w* \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w a|strong="G2192"\w* believer, \w even|strong="G2532"\w* \w as|strong="G5613"\w* \w the|strong="G2532"\w* \w rest|strong="G3062"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* apostles, \w and|strong="G2532"\w* \w the|strong="G2532"\w* brothers \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w and|strong="G2532"\w* \w Cephas|strong="G2786"\w*? +\v 6 \w Or|strong="G2228"\w* \w have|strong="G2192"\w* \w only|strong="G3441"\w* Barnabas \w and|strong="G2532"\w* \w I|strong="G1473"\w* \w no|strong="G3756"\w* \w right|strong="G1849"\w* \w to|strong="G2532"\w* \w not|strong="G3756"\w* \w work|strong="G2038"\w*? +\v 7 \w What|strong="G5101"\w* \w soldier|strong="G4754"\w* \w ever|strong="G4218"\w* \w serves|strong="G4754"\w* \w at|strong="G1537"\w* \w his|strong="G2398"\w* \w own|strong="G2398"\w* \w expense|strong="G3800"\w*? \w Who|strong="G5101"\w* \w plants|strong="G5452"\w* \w a|strong="G2532"\w* vineyard, \w and|strong="G2532"\w* doesn’\w t|strong="G3588"\w* \w eat|strong="G2068"\w* \w of|strong="G1537"\w* \w its|strong="G1537"\w* \w fruit|strong="G2590"\w*? \w Or|strong="G2228"\w* \w who|strong="G5101"\w* feeds \w a|strong="G2532"\w* \w flock|strong="G4167"\w*, \w and|strong="G2532"\w* doesn’\w t|strong="G3588"\w* \w drink|strong="G2532"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w flock|strong="G4167"\w*’s \w milk|strong="G1051"\w*? +\p +\v 8 \w Do|strong="G2532"\w* \w I|strong="G2532"\w* \w speak|strong="G2980"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* ways \w of|strong="G2532"\w* \w men|strong="G3778"\w*? \w Or|strong="G2228"\w* doesn’\w t|strong="G3588"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w* \w also|strong="G2532"\w* \w say|strong="G3004"\w* \w the|strong="G2532"\w* \w same|strong="G3778"\w* \w thing|strong="G3778"\w*? +\v 9 \w For|strong="G1063"\w* \w it|strong="G1063"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w of|strong="G2316"\w* \w Moses|strong="G3475"\w*, “\w You|strong="G1722"\w* \w shall|strong="G2316"\w* \w not|strong="G3756"\w* \w muzzle|strong="G5392"\w* \w an|strong="G1722"\w* \w ox|strong="G1016"\w* \w while|strong="G1722"\w* \w it|strong="G1063"\w* treads \w out|strong="G1063"\w* \w the|strong="G1722"\w* grain.”\x + \xo 9:9 \xt Deuteronomy 25:4\x* \w Is|strong="G3588"\w* \w it|strong="G1063"\w* \w for|strong="G1063"\w* \w the|strong="G1722"\w* \w oxen|strong="G1016"\w* \w that|strong="G3588"\w* \w God|strong="G2316"\w* \w cares|strong="G3199"\w*, +\v 10 \w or|strong="G2228"\w* \w does|strong="G3004"\w* \w he|strong="G2532"\w* \w say|strong="G3004"\w* \w it|strong="G2532"\w* assuredly \w for|strong="G1063"\w* \w our|strong="G2532"\w* \w sake|strong="G1223"\w*? \w Yes|strong="G1063"\w*, \w it|strong="G2532"\w* \w was|strong="G3588"\w* \w written|strong="G1125"\w* \w for|strong="G1063"\w* \w our|strong="G2532"\w* \w sake|strong="G1223"\w*, \w because|strong="G3754"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* plows \w ought|strong="G3784"\w* \w to|strong="G2532"\w* plow \w in|strong="G1909"\w* \w hope|strong="G1680"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* threshes \w in|strong="G1909"\w* \w hope|strong="G1680"\w* \w should|strong="G3784"\w* \w partake|strong="G3348"\w* \w of|strong="G1223"\w* \w his|strong="G1223"\w* \w hope|strong="G1680"\w*. +\v 11 \w If|strong="G1487"\w* \w we|strong="G2249"\w* \w sowed|strong="G4687"\w* \w to|strong="G3588"\w* \w you|strong="G5210"\w* \w spiritual|strong="G4152"\w* \w things|strong="G3588"\w*, \w is|strong="G3588"\w* \w it|strong="G1487"\w* \w a|strong="G1487"\w* \w great|strong="G3173"\w* \w thing|strong="G3173"\w* \w if|strong="G1487"\w* \w we|strong="G2249"\w* \w reap|strong="G2325"\w* \w your|strong="G1487"\w* \w fleshly|strong="G4559"\w* \w things|strong="G3588"\w*? +\v 12 \w If|strong="G1487"\w* \w others|strong="G3588"\w* \w partake|strong="G3348"\w* \w of|strong="G2098"\w* \w this|strong="G3778"\w* \w right|strong="G1849"\w* \w over|strong="G1849"\w* \w you|strong="G5210"\w*, don’\w t|strong="G3588"\w* \w we|strong="G2249"\w* \w yet|strong="G5210"\w* \w more|strong="G3123"\w*? +\p \w Nevertheless|strong="G3756"\w* \w we|strong="G2249"\w* didn’\w t|strong="G3588"\w* \w use|strong="G5530"\w* \w this|strong="G3778"\w* \w right|strong="G1849"\w*, \w but|strong="G1487"\w* \w we|strong="G2249"\w* \w bear|strong="G2443"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w that|strong="G2443"\w* \w we|strong="G2249"\w* \w may|strong="G2443"\w* \w cause|strong="G1325"\w* \w no|strong="G3756"\w* \w hindrance|strong="G1464"\w* \w to|strong="G2443"\w* \w the|strong="G3956"\w* \w Good|strong="G3956"\w* \w News|strong="G2098"\w* \w of|strong="G2098"\w* \w Christ|strong="G5547"\w*. +\v 13 Don’\w t|strong="G3588"\w* \w you|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* serve around \w sacred|strong="G2413"\w* \w things|strong="G3588"\w* \w eat|strong="G2068"\w* \w from|strong="G1537"\w* \w the|strong="G1537"\w* \w things|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w temple|strong="G2413"\w*, \w and|strong="G2068"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w wait|strong="G4332"\w* \w on|strong="G1537"\w* \w the|strong="G1537"\w* \w altar|strong="G2379"\w* \w have|strong="G3748"\w* \w their|strong="G2068"\w* portion \w with|strong="G1537"\w* \w the|strong="G1537"\w* \w altar|strong="G2379"\w*? +\v 14 \w Even|strong="G2532"\w* \w so|strong="G3779"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w ordained|strong="G1299"\w* \w that|strong="G3588"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w proclaim|strong="G2605"\w* \w the|strong="G2532"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w should|strong="G3588"\w* \w live|strong="G2198"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w*. +\p +\v 15 \w But|strong="G1161"\w* \w I|strong="G1473"\w* \w have|strong="G1473"\w* \w used|strong="G5530"\w* \w none|strong="G3762"\w* \w of|strong="G1722"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w and|strong="G1161"\w* \w I|strong="G1473"\w* don’\w t|strong="G3588"\w* \w write|strong="G1125"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w that|strong="G2443"\w* \w it|strong="G1161"\w* \w may|strong="G2443"\w* \w be|strong="G1096"\w* \w done|strong="G1096"\w* \w so|strong="G3779"\w* \w in|strong="G1722"\w* \w my|strong="G1722"\w* \w case|strong="G3588"\w*; \w for|strong="G1063"\w* \w I|strong="G1473"\w* \w would|strong="G1096"\w* \w rather|strong="G3123"\w* die, \w than|strong="G2228"\w* \w that|strong="G2443"\w* \w anyone|strong="G3762"\w* \w should|strong="G3588"\w* \w make|strong="G2758"\w* \w my|strong="G1722"\w* \w boasting|strong="G2745"\w* \w void|strong="G2758"\w*. +\v 16 \w For|strong="G1063"\w* \w if|strong="G1437"\w* \w I|strong="G1473"\w* \w preach|strong="G2097"\w* \w the|strong="G1063"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w*, \w I|strong="G1473"\w* \w have|strong="G1473"\w* \w nothing|strong="G3756"\w* \w to|strong="G3756"\w* \w boast|strong="G2745"\w* \w about|strong="G3361"\w*, \w for|strong="G1063"\w* necessity \w is|strong="G1510"\w* \w laid|strong="G1945"\w* \w on|strong="G3361"\w* \w me|strong="G1473"\w*; \w but|strong="G3361"\w* \w woe|strong="G3759"\w* \w is|strong="G1510"\w* \w to|strong="G3756"\w* \w me|strong="G1473"\w* \w if|strong="G1437"\w* \w I|strong="G1473"\w* don’t \w preach|strong="G2097"\w* \w the|strong="G1063"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w*. +\v 17 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w I|strong="G1161"\w* \w do|strong="G4238"\w* \w this|strong="G3778"\w* \w of|strong="G2192"\w* \w my|strong="G4100"\w* own \w will|strong="G3778"\w*, \w I|strong="G1161"\w* \w have|strong="G2192"\w* \w a|strong="G2192"\w* \w reward|strong="G3408"\w*. \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w not|strong="G2192"\w* \w of|strong="G2192"\w* \w my|strong="G4100"\w* own \w will|strong="G3778"\w*, \w I|strong="G1161"\w* \w have|strong="G2192"\w* \w a|strong="G2192"\w* \w stewardship|strong="G3622"\w* \w entrusted|strong="G4100"\w* \w to|strong="G1161"\w* \w me|strong="G2192"\w*. +\v 18 \w What|strong="G5101"\w* \w then|strong="G3767"\w* \w is|strong="G1510"\w* \w my|strong="G1722"\w* \w reward|strong="G3408"\w*? \w That|strong="G2443"\w* \w when|strong="G1722"\w* \w I|strong="G1473"\w* \w preach|strong="G2097"\w* \w the|strong="G1722"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w*, \w I|strong="G1473"\w* \w may|strong="G2443"\w* \w present|strong="G5087"\w* \w the|strong="G1722"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w* \w of|strong="G2098"\w* Christ \w without|strong="G3361"\w* \w charge|strong="G1849"\w*, \w so|strong="G2443"\w* \w as|strong="G1519"\w* \w not|strong="G3361"\w* \w to|strong="G1519"\w* \w abuse|strong="G2710"\w* \w my|strong="G1722"\w* \w authority|strong="G1849"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w*. +\p +\v 19 \w For|strong="G1063"\w* \w though|strong="G1063"\w* \w I|strong="G1063"\w* \w was|strong="G1510"\w* \w free|strong="G1658"\w* \w from|strong="G1537"\w* \w all|strong="G3956"\w*, \w I|strong="G1063"\w* brought \w myself|strong="G1683"\w* \w under|strong="G1537"\w* \w bondage|strong="G1402"\w* \w to|strong="G2443"\w* \w all|strong="G3956"\w*, \w that|strong="G2443"\w* \w I|strong="G1063"\w* \w might|strong="G3956"\w* \w gain|strong="G2770"\w* \w the|strong="G3956"\w* \w more|strong="G4119"\w*. +\v 20 \w To|strong="G2443"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w I|strong="G2532"\w* \w became|strong="G1096"\w* \w as|strong="G5613"\w* \w a|strong="G1096"\w* \w Jew|strong="G2453"\w*, \w that|strong="G2443"\w* \w I|strong="G2532"\w* \w might|strong="G2532"\w* \w gain|strong="G2770"\w* \w Jews|strong="G2453"\w*; \w to|strong="G2443"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w under|strong="G5259"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w*, \w as|strong="G5613"\w* \w under|strong="G5259"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w*,\f + \fr 9:20 \ft NU adds: though I myself am not under the law\f* \w that|strong="G2443"\w* \w I|strong="G2532"\w* \w might|strong="G2532"\w* \w gain|strong="G2770"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w under|strong="G5259"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w*; +\v 21 \w to|strong="G2443"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w without|strong="G3361"\w* \w law|strong="G1772"\w*, \w as|strong="G5613"\w* \w without|strong="G3361"\w* \w law|strong="G1772"\w* (\w not|strong="G3361"\w* \w being|strong="G1510"\w* \w without|strong="G3361"\w* \w law|strong="G1772"\w* toward \w God|strong="G2316"\w*, \w but|strong="G3361"\w* \w under|strong="G1772"\w* \w law|strong="G1772"\w* toward \w Christ|strong="G5547"\w*), \w that|strong="G2443"\w* \w I|strong="G5613"\w* \w might|strong="G2316"\w* \w win|strong="G2770"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w without|strong="G3361"\w* \w law|strong="G1772"\w*. +\v 22 \w To|strong="G2443"\w* \w the|strong="G3956"\w* weak \w I|strong="G2443"\w* \w became|strong="G1096"\w* \w as|strong="G1096"\w* weak, \w that|strong="G2443"\w* \w I|strong="G2443"\w* \w might|strong="G4982"\w* \w gain|strong="G2770"\w* \w the|strong="G3956"\w* weak. \w I|strong="G2443"\w* \w have|strong="G1096"\w* \w become|strong="G1096"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w to|strong="G2443"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w*, \w that|strong="G2443"\w* \w I|strong="G2443"\w* \w may|strong="G2443"\w* \w by|strong="G3956"\w* \w all|strong="G3956"\w* \w means|strong="G3843"\w* \w save|strong="G4982"\w* \w some|strong="G5100"\w*. +\v 23 \w Now|strong="G1161"\w* \w I|strong="G1161"\w* \w do|strong="G4160"\w* \w this|strong="G3588"\w* \w for|strong="G1223"\w* \w the|strong="G3956"\w* \w sake|strong="G1223"\w* \w of|strong="G1223"\w* \w the|strong="G3956"\w* \w Good|strong="G3956"\w* \w News|strong="G2098"\w*, \w that|strong="G2443"\w* \w I|strong="G1161"\w* \w may|strong="G2443"\w* \w be|strong="G1096"\w* \w a|strong="G1096"\w* joint \w partaker|strong="G4791"\w* \w of|strong="G1223"\w* \w it|strong="G1161"\w*. +\v 24 Don’\w t|strong="G3588"\w* \w you|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w run|strong="G5143"\w* \w in|strong="G1722"\w* \w a|strong="G1722"\w* \w race|strong="G4712"\w* \w all|strong="G3956"\w* \w run|strong="G5143"\w*, \w but|strong="G1161"\w* \w one|strong="G1520"\w* \w receives|strong="G2983"\w* \w the|strong="G1722"\w* \w prize|strong="G1017"\w*? \w Run|strong="G5143"\w* \w like|strong="G3779"\w* \w that|strong="G3754"\w*, \w so|strong="G3779"\w* \w that|strong="G3754"\w* \w you|strong="G3754"\w* \w may|strong="G2443"\w* \w win|strong="G2638"\w*. +\v 25 \w Every|strong="G3956"\w* \w man|strong="G3956"\w* \w who|strong="G3588"\w* strives \w in|strong="G3956"\w* \w the|strong="G3956"\w* games \w exercises|strong="G1467"\w* \w self-control|strong="G1467"\w* \w in|strong="G3956"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*. \w Now|strong="G1161"\w* \w they|strong="G1161"\w* \w do|strong="G2983"\w* \w it|strong="G1161"\w* \w to|strong="G2443"\w* \w receive|strong="G2983"\w* \w a|strong="G2983"\w* \w corruptible|strong="G5349"\w* \w crown|strong="G4735"\w*, \w but|strong="G1161"\w* \w we|strong="G2249"\w* \w an|strong="G1161"\w* incorruptible. +\v 26 \w I|strong="G1473"\w* \w therefore|strong="G5106"\w* \w run|strong="G5143"\w* \w like|strong="G5613"\w* \w that|strong="G5613"\w*, \w not|strong="G3756"\w* aimlessly. \w I|strong="G1473"\w* \w fight|strong="G3779"\w* \w like|strong="G5613"\w* \w that|strong="G5613"\w*, \w not|strong="G3756"\w* \w beating|strong="G1194"\w* \w the|strong="G5613"\w* air, +\v 27 \w but|strong="G2532"\w* \w I|strong="G1473"\w* beat \w my|strong="G1473"\w* \w body|strong="G4983"\w* \w and|strong="G2532"\w* \w bring|strong="G1396"\w* \w it|strong="G2532"\w* \w into|strong="G1096"\w* submission, \w lest|strong="G3361"\w* \w by|strong="G2532"\w* \w any|strong="G3361"\w* \w means|strong="G3381"\w*, \w after|strong="G2532"\w* \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w preached|strong="G2784"\w* \w to|strong="G2532"\w* \w others|strong="G3588"\w*, \w I|strong="G1473"\w* \w myself|strong="G1473"\w* \w should|strong="G3588"\w* \w be|strong="G1096"\w* disqualified. +\c 10 +\p +\v 1 \w Now|strong="G2532"\w* \w I|strong="G1473"\w* \w would|strong="G2309"\w* \w not|strong="G3756"\w* \w have|strong="G2309"\w* \w you|strong="G5210"\w* ignorant, brothers, \w that|strong="G3754"\w* \w our|strong="G2532"\w* \w fathers|strong="G3962"\w* \w were|strong="G1510"\w* \w all|strong="G3956"\w* \w under|strong="G5259"\w* \w the|strong="G2532"\w* \w cloud|strong="G3507"\w*, \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w passed|strong="G1330"\w* \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w*; +\v 2 \w and|strong="G2532"\w* \w were|strong="G3588"\w* \w all|strong="G3956"\w* baptized \w into|strong="G1519"\w* \w Moses|strong="G3475"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w cloud|strong="G3507"\w* \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w*; +\v 3 \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w ate|strong="G2068"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w* \w spiritual|strong="G4152"\w* \w food|strong="G1033"\w*; +\v 4 \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w drank|strong="G4095"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w* \w spiritual|strong="G4152"\w* \w drink|strong="G4095"\w*. \w For|strong="G1063"\w* \w they|strong="G2532"\w* \w drank|strong="G4095"\w* \w of|strong="G1537"\w* \w a|strong="G2532"\w* \w spiritual|strong="G4152"\w* \w rock|strong="G4073"\w* \w that|strong="G3588"\w* followed \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w rock|strong="G4073"\w* \w was|strong="G1510"\w* \w Christ|strong="G5547"\w*. +\v 5 However \w with|strong="G1722"\w* \w most|strong="G4183"\w* \w of|strong="G2316"\w* \w them|strong="G3588"\w*, \w God|strong="G2316"\w* \w was|strong="G3588"\w* \w not|strong="G3756"\w* \w well|strong="G1063"\w* \w pleased|strong="G2106"\w*, \w for|strong="G1063"\w* \w they|strong="G3588"\w* \w were|strong="G3588"\w* \w overthrown|strong="G2693"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wilderness|strong="G2048"\w*. +\p +\v 6 \w Now|strong="G1161"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w were|strong="G1510"\w* \w our|strong="G1519"\w* \w examples|strong="G5179"\w*, \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w intent|strong="G1519"\w* \w we|strong="G2249"\w* \w should|strong="G3588"\w* \w not|strong="G3361"\w* \w lust|strong="G1937"\w* \w after|strong="G1161"\w* \w evil|strong="G2556"\w* \w things|strong="G3778"\w* \w as|strong="G2531"\w* \w they|strong="G1161"\w* \w also|strong="G1161"\w* \w lusted|strong="G1937"\w*. +\v 7 Don’\w t|strong="G3588"\w* \w be|strong="G1096"\w* \w idolaters|strong="G1496"\w*, \w as|strong="G2531"\w* \w some|strong="G5100"\w* \w of|strong="G2532"\w* \w them|strong="G3588"\w* \w were|strong="G3588"\w*. \w As|strong="G2531"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, “\w The|strong="G2532"\w* \w people|strong="G2992"\w* \w sat|strong="G2523"\w* \w down|strong="G2523"\w* \w to|strong="G2532"\w* \w eat|strong="G2068"\w* \w and|strong="G2532"\w* \w drink|strong="G4095"\w*, \w and|strong="G2532"\w* \w rose|strong="G2532"\w* \w up|strong="G2532"\w* \w to|strong="G2532"\w* \w play|strong="G3815"\w*.”\x + \xo 10:7 \xt Exodus 32:6\x* +\v 8 \w Let|strong="G2532"\w*’s \w not|strong="G3366"\w* \w commit|strong="G4203"\w* sexual \w immorality|strong="G4203"\w*, \w as|strong="G2531"\w* \w some|strong="G5100"\w* \w of|strong="G2250"\w* \w them|strong="G2250"\w* \w committed|strong="G4203"\w*, \w and|strong="G2532"\w* \w in|strong="G2532"\w* \w one|strong="G1520"\w* \w day|strong="G2250"\w* \w twenty-three|strong="G1501"\w* \w thousand|strong="G5505"\w* \w fell|strong="G4098"\w*. +\v 9 \w Let|strong="G2532"\w*’\w s|strong="G2962"\w* \w not|strong="G3366"\w* \w test|strong="G3985"\w* \w Christ|strong="G5547"\w*,\f + \fr 10:9 \ft NU reads “the Lord” instead of “Christ”.\f* \w as|strong="G2531"\w* \w some|strong="G5100"\w* \w of|strong="G5259"\w* \w them|strong="G3588"\w* \w tested|strong="G3985"\w*, \w and|strong="G2532"\w* perished \w by|strong="G5259"\w* \w the|strong="G2532"\w* \w serpents|strong="G3789"\w*. +\v 10 Don’\w t|strong="G3588"\w* \w grumble|strong="G1111"\w*, \w as|strong="G2509"\w* \w some|strong="G5100"\w* \w of|strong="G5259"\w* \w them|strong="G3588"\w* \w also|strong="G2532"\w* \w grumbled|strong="G1111"\w*, \w and|strong="G2532"\w* perished \w by|strong="G5259"\w* \w the|strong="G2532"\w* \w destroyer|strong="G3644"\w*. +\v 11 \w Now|strong="G1161"\w* \w all|strong="G1161"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w happened|strong="G4819"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w* \w by|strong="G4314"\w* \w way|strong="G3739"\w* \w of|strong="G3588"\w* \w example|strong="G5179"\w*, \w and|strong="G1161"\w* \w they|strong="G1161"\w* \w were|strong="G3588"\w* \w written|strong="G1125"\w* \w for|strong="G1519"\w* \w our|strong="G4314"\w* \w admonition|strong="G3559"\w*, \w on|strong="G1519"\w* \w whom|strong="G3739"\w* \w the|strong="G1519"\w* \w ends|strong="G5056"\w* \w of|strong="G3588"\w* \w the|strong="G1519"\w* ages \w have|strong="G1473"\w* \w come|strong="G2658"\w*. +\v 12 \w Therefore|strong="G5620"\w* \w let|strong="G1380"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w thinks|strong="G1380"\w* \w he|strong="G3588"\w* \w stands|strong="G2476"\w* \w be|strong="G3361"\w* careful \w that|strong="G3588"\w* \w he|strong="G3588"\w* doesn’\w t|strong="G3588"\w* \w fall|strong="G4098"\w*. +\p +\v 13 \w No|strong="G3756"\w* \w temptation|strong="G3986"\w* \w has|strong="G2316"\w* \w taken|strong="G2983"\w* \w you|strong="G5210"\w* \w except|strong="G1487"\w* \w what|strong="G3739"\w* \w is|strong="G3588"\w* common \w to|strong="G2532"\w* \w man|strong="G3361"\w*. \w God|strong="G2316"\w* \w is|strong="G3588"\w* \w faithful|strong="G4103"\w*, \w who|strong="G3739"\w* \w will|strong="G2316"\w* \w not|strong="G3756"\w* \w allow|strong="G1439"\w* \w you|strong="G5210"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w tempted|strong="G3985"\w* \w above|strong="G5228"\w* \w what|strong="G3739"\w* \w you|strong="G5210"\w* \w are|strong="G3588"\w* \w able|strong="G1410"\w*, \w but|strong="G1161"\w* \w will|strong="G2316"\w* \w with|strong="G4862"\w* \w the|strong="G2532"\w* \w temptation|strong="G3986"\w* \w also|strong="G2532"\w* \w make|strong="G4160"\w* \w the|strong="G2532"\w* \w way|strong="G3739"\w* \w of|strong="G2316"\w* \w escape|strong="G1545"\w*, \w that|strong="G3739"\w* \w you|strong="G5210"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* \w able|strong="G1410"\w* \w to|strong="G2532"\w* \w endure|strong="G5297"\w* \w it|strong="G2532"\w*. +\p +\v 14 \w Therefore|strong="G1355"\w*, \w my|strong="G1473"\w* beloved, \w flee|strong="G5343"\w* \w from|strong="G3588"\w* \w idolatry|strong="G1495"\w*. +\v 15 \w I|strong="G3739"\w* \w speak|strong="G3004"\w* \w as|strong="G5613"\w* \w to|strong="G3004"\w* \w wise|strong="G5429"\w* \w men|strong="G5429"\w*. \w Judge|strong="G2919"\w* \w what|strong="G3739"\w* \w I|strong="G3739"\w* \w say|strong="G3004"\w*. +\v 16 \w The|strong="G3588"\w* \w cup|strong="G4221"\w* \w of|strong="G4983"\w* \w blessing|strong="G2129"\w* \w which|strong="G3739"\w* \w we|strong="G3739"\w* \w bless|strong="G2127"\w*, isn’\w t|strong="G3588"\w* \w it|strong="G3739"\w* \w a|strong="G1510"\w* \w sharing|strong="G2842"\w* \w of|strong="G4983"\w* \w the|strong="G3588"\w* blood \w of|strong="G4983"\w* \w Christ|strong="G5547"\w*? \w The|strong="G3588"\w* bread \w which|strong="G3739"\w* \w we|strong="G3739"\w* \w break|strong="G2806"\w*, isn’\w t|strong="G3588"\w* \w it|strong="G3739"\w* \w a|strong="G1510"\w* \w sharing|strong="G2842"\w* \w of|strong="G4983"\w* \w the|strong="G3588"\w* \w body|strong="G4983"\w* \w of|strong="G4983"\w* \w Christ|strong="G5547"\w*? +\v 17 \w Because|strong="G3754"\w* \w there|strong="G1063"\w* \w is|strong="G1510"\w* \w one|strong="G1520"\w* loaf \w of|strong="G1537"\w* bread, \w we|strong="G3754"\w*, \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w many|strong="G4183"\w*, \w are|strong="G1510"\w* \w one|strong="G1520"\w* \w body|strong="G4983"\w*; \w for|strong="G1063"\w* \w we|strong="G3754"\w* \w all|strong="G3956"\w* \w partake|strong="G3348"\w* \w of|strong="G1537"\w* \w the|strong="G3956"\w* \w one|strong="G1520"\w* loaf \w of|strong="G1537"\w* bread. +\v 18 Consider \w Israel|strong="G2474"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G2596"\w* \w flesh|strong="G4561"\w*. Don’\w t|strong="G3588"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w eat|strong="G2068"\w* \w the|strong="G2596"\w* \w sacrifices|strong="G2378"\w* participate \w in|strong="G2596"\w* \w the|strong="G2596"\w* \w altar|strong="G2379"\w*? +\p +\v 19 \w What|strong="G5101"\w* \w am|strong="G1510"\w* \w I|strong="G3754"\w* \w saying|strong="G3754"\w* \w then|strong="G3767"\w*? \w That|strong="G3754"\w* \w a|strong="G1510"\w* \w thing|strong="G5100"\w* \w sacrificed|strong="G1494"\w* \w to|strong="G5100"\w* \w idols|strong="G1497"\w* \w is|strong="G1510"\w* \w anything|strong="G5100"\w*, \w or|strong="G2228"\w* \w that|strong="G3754"\w* \w an|strong="G2228"\w* \w idol|strong="G1497"\w* \w is|strong="G1510"\w* \w anything|strong="G5100"\w*? +\v 20 \w But|strong="G1161"\w* \w I|strong="G3739"\w* \w say|strong="G2532"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w which|strong="G3739"\w* \w the|strong="G2532"\w* Gentiles \w sacrifice|strong="G2380"\w*, \w they|strong="G2532"\w* \w sacrifice|strong="G2380"\w* \w to|strong="G2532"\w* \w demons|strong="G1140"\w* \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w I|strong="G3739"\w* don’\w t|strong="G3588"\w* \w desire|strong="G2309"\w* \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w would|strong="G2309"\w* \w have|strong="G2309"\w* \w fellowship|strong="G2844"\w* \w with|strong="G2532"\w* \w demons|strong="G1140"\w*. +\v 21 \w You|strong="G2532"\w* \w can|strong="G1410"\w*’t \w both|strong="G2532"\w* \w drink|strong="G4095"\w* \w the|strong="G2532"\w* \w cup|strong="G4221"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w cup|strong="G4221"\w* \w of|strong="G2532"\w* \w demons|strong="G1140"\w*. \w You|strong="G2532"\w* \w can|strong="G1410"\w*’t \w both|strong="G2532"\w* \w partake|strong="G3348"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w table|strong="G5132"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w table|strong="G5132"\w* \w of|strong="G2532"\w* \w demons|strong="G1140"\w*. +\v 22 \w Or|strong="G2228"\w* \w do|strong="G3361"\w* \w we|strong="G1510"\w* \w provoke|strong="G3863"\w* \w the|strong="G3588"\w* \w Lord|strong="G2962"\w* \w to|strong="G3361"\w* \w jealousy|strong="G3863"\w*? \w Are|strong="G1510"\w* \w we|strong="G1510"\w* \w stronger|strong="G2478"\w* \w than|strong="G2228"\w* \w he|strong="G3588"\w*? +\p +\v 23 “\w All|strong="G3956"\w* \w things|strong="G3956"\w* \w are|strong="G3956"\w* \w lawful|strong="G1832"\w* \w for|strong="G1832"\w* \w me|strong="G3756"\w*,” but \w not|strong="G3756"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w are|strong="G3956"\w* \w profitable|strong="G4851"\w*. “\w All|strong="G3956"\w* \w things|strong="G3956"\w* \w are|strong="G3956"\w* \w lawful|strong="G1832"\w* \w for|strong="G1832"\w* \w me|strong="G3756"\w*,” but \w not|strong="G3756"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w build|strong="G3618"\w* \w up|strong="G3618"\w*. +\v 24 Let \w no|strong="G3367"\w* \w one|strong="G3367"\w* \w seek|strong="G2212"\w* \w his|strong="G1438"\w* \w own|strong="G1438"\w*, \w but|strong="G3588"\w* \w each|strong="G1438"\w* \w one|strong="G3367"\w* \w his|strong="G1438"\w* \w neighbor|strong="G2087"\w*’s \w good|strong="G3588"\w*. +\v 25 \w Whatever|strong="G3956"\w* \w is|strong="G3588"\w* \w sold|strong="G4453"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* butcher shop, \w eat|strong="G2068"\w*, asking \w no|strong="G3367"\w* question \w for|strong="G1223"\w* \w the|strong="G1722"\w* \w sake|strong="G1223"\w* \w of|strong="G1223"\w* \w conscience|strong="G4893"\w*, +\v 26 \w for|strong="G1063"\w* “\w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w is|strong="G3588"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*’\w s|strong="G2962"\w*, \w and|strong="G2532"\w* its \w fullness|strong="G4138"\w*.”\x + \xo 10:26 \xt Psalms 24:1 \x* +\v 27 \w But|strong="G2532"\w* \w if|strong="G1487"\w* \w one|strong="G5100"\w* \w of|strong="G1223"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* don’\w t|strong="G3588"\w* believe \w invites|strong="G2564"\w* \w you|strong="G5210"\w* \w to|strong="G2532"\w* \w a|strong="G2532"\w* meal, \w and|strong="G2532"\w* \w you|strong="G5210"\w* \w are|strong="G3588"\w* inclined \w to|strong="G2532"\w* \w go|strong="G4198"\w*, \w eat|strong="G2068"\w* \w whatever|strong="G3956"\w* \w is|strong="G3588"\w* \w set|strong="G3908"\w* \w before|strong="G3908"\w* \w you|strong="G5210"\w*, asking \w no|strong="G3367"\w* questions \w for|strong="G1223"\w* \w the|strong="G2532"\w* \w sake|strong="G1223"\w* \w of|strong="G1223"\w* \w conscience|strong="G4893"\w*. +\v 28 \w But|strong="G1161"\w* \w if|strong="G1437"\w* \w anyone|strong="G5100"\w* \w says|strong="G3004"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*, “\w This|strong="G3778"\w* \w was|strong="G1510"\w* offered \w to|strong="G2532"\w* \w idols|strong="G1494"\w*,” don’\w t|strong="G3588"\w* \w eat|strong="G2068"\w* \w it|strong="G2532"\w* \w for|strong="G1223"\w* \w the|strong="G2532"\w* \w sake|strong="G1223"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w one|strong="G5100"\w* \w who|strong="G3588"\w* \w told|strong="G3004"\w* \w you|strong="G5210"\w*, \w and|strong="G2532"\w* \w for|strong="G1223"\w* \w the|strong="G2532"\w* \w sake|strong="G1223"\w* \w of|strong="G1223"\w* \w conscience|strong="G4893"\w*. \w For|strong="G1223"\w* “\w the|strong="G2532"\w* \w earth|strong="G2532"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w Lord|strong="G3588"\w*’s, \w with|strong="G1223"\w* \w all|strong="G2532"\w* \w its|strong="G1223"\w* fullness.” +\v 29 \w Conscience|strong="G4893"\w*, \w I|strong="G1473"\w* \w say|strong="G3004"\w*, \w not|strong="G3780"\w* \w your|strong="G5259"\w* \w own|strong="G1438"\w*, \w but|strong="G1161"\w* \w the|strong="G1161"\w* \w other|strong="G2087"\w*’s \w conscience|strong="G4893"\w*. \w For|strong="G1063"\w* \w why|strong="G2444"\w* \w is|strong="G3588"\w* \w my|strong="G1473"\w* \w liberty|strong="G1657"\w* \w judged|strong="G2919"\w* \w by|strong="G5259"\w* \w another|strong="G2087"\w* \w conscience|strong="G4893"\w*? +\v 30 \w If|strong="G1487"\w* \w I|strong="G1473"\w* \w partake|strong="G3348"\w* \w with|strong="G5485"\w* \w thankfulness|strong="G5485"\w*, \w why|strong="G5101"\w* \w am|strong="G1473"\w* \w I|strong="G1473"\w* denounced \w for|strong="G5228"\w* \w something|strong="G5101"\w* \w I|strong="G1473"\w* \w give|strong="G2168"\w* \w thanks|strong="G2168"\w* \w for|strong="G5228"\w*? +\p +\v 31 \w Whether|strong="G1535"\w* \w therefore|strong="G3767"\w* \w you|strong="G4160"\w* \w eat|strong="G2068"\w* \w or|strong="G1535"\w* \w drink|strong="G4095"\w*, \w or|strong="G1535"\w* \w whatever|strong="G3956"\w* \w you|strong="G4160"\w* \w do|strong="G4160"\w*, \w do|strong="G4160"\w* \w all|strong="G3956"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w glory|strong="G1391"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\v 32 \w Give|strong="G1096"\w* \w no|strong="G2532"\w* occasion \w for|strong="G2532"\w* stumbling, \w whether|strong="G2532"\w* \w to|strong="G2532"\w* \w Jews|strong="G2453"\w*, \w to|strong="G2532"\w* \w Greeks|strong="G1672"\w*, \w or|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w assembly|strong="G1577"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*; +\v 33 \w even|strong="G2531"\w* \w as|strong="G2531"\w* \w I|strong="G2504"\w* \w also|strong="G2504"\w* please \w all|strong="G3956"\w* \w men|strong="G3956"\w* \w in|strong="G3956"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w not|strong="G3361"\w* \w seeking|strong="G2212"\w* \w my|strong="G2212"\w* \w own|strong="G1683"\w* \w profit|strong="G4851"\w*, \w but|strong="G3361"\w* \w the|strong="G3956"\w* \w profit|strong="G4851"\w* \w of|strong="G3956"\w* \w the|strong="G3956"\w* \w many|strong="G4183"\w*, \w that|strong="G2443"\w* \w they|strong="G3588"\w* \w may|strong="G2443"\w* \w be|strong="G3361"\w* \w saved|strong="G4982"\w*. +\c 11 +\p +\v 1 \w Be|strong="G1096"\w* \w imitators|strong="G3402"\w* \w of|strong="G1096"\w* \w me|strong="G1473"\w*, \w even|strong="G2531"\w* \w as|strong="G2531"\w* \w I|strong="G1473"\w* \w also|strong="G2504"\w* \w am|strong="G1473"\w* \w of|strong="G1096"\w* \w Christ|strong="G5547"\w*. +\p +\v 2 \w Now|strong="G1161"\w* \w I|strong="G1473"\w* \w praise|strong="G1867"\w* \w you|strong="G5210"\w*, brothers, \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w remember|strong="G3403"\w* \w me|strong="G1473"\w* \w in|strong="G2532"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w and|strong="G2532"\w* \w hold|strong="G2722"\w* firm \w the|strong="G2532"\w* \w traditions|strong="G3862"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w I|strong="G1473"\w* \w delivered|strong="G3860"\w* \w them|strong="G3588"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*. +\v 3 \w But|strong="G1161"\w* \w I|strong="G1161"\w* \w would|strong="G2309"\w* \w have|strong="G2309"\w* \w you|strong="G5210"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w the|strong="G3956"\w* \w head|strong="G2776"\w*\f + \fr 11:3 \ft or, origin\f* \w of|strong="G2316"\w* \w every|strong="G3956"\w* \w man|strong="G3956"\w* \w is|strong="G1510"\w* \w Christ|strong="G5547"\w*, \w and|strong="G1161"\w* \w the|strong="G3956"\w* \w head|strong="G2776"\w*\f + \fr 11:3 \ft or, origin\f* \w of|strong="G2316"\w* \w the|strong="G3956"\w* \w woman|strong="G1135"\w* \w is|strong="G1510"\w* \w man|strong="G3956"\w*, \w and|strong="G1161"\w* \w the|strong="G3956"\w* \w head|strong="G2776"\w*\f + \fr 11:3 \ft or, origin\f* \w of|strong="G2316"\w* \w Christ|strong="G5547"\w* \w is|strong="G1510"\w* \w God|strong="G2316"\w*. +\v 4 \w Every|strong="G3956"\w* \w man|strong="G3956"\w* \w praying|strong="G4336"\w* \w or|strong="G2228"\w* \w prophesying|strong="G4395"\w*, \w having|strong="G2192"\w* \w his|strong="G3956"\w* \w head|strong="G2776"\w* \w covered|strong="G2596"\w*, dishonors \w his|strong="G3956"\w* \w head|strong="G2776"\w*. +\v 5 \w But|strong="G1161"\w* \w every|strong="G3956"\w* \w woman|strong="G1135"\w* \w praying|strong="G4336"\w* \w or|strong="G2228"\w* \w prophesying|strong="G4395"\w* \w with|strong="G2532"\w* \w her|strong="G3956"\w* \w head|strong="G2776"\w* uncovered dishonors \w her|strong="G3956"\w* \w head|strong="G2776"\w*. \w For|strong="G1063"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w one|strong="G1520"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w* \w thing|strong="G1520"\w* \w as|strong="G1161"\w* \w if|strong="G2532"\w* \w she|strong="G2532"\w* \w were|strong="G1510"\w* \w shaved|strong="G3587"\w*. +\v 6 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w a|strong="G2532"\w* \w woman|strong="G1135"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w covered|strong="G2619"\w*, \w let|strong="G1161"\w* \w her|strong="G3588"\w* \w hair|strong="G2751"\w* \w also|strong="G2532"\w* \w be|strong="G2532"\w* \w cut|strong="G2532"\w* \w off|strong="G2751"\w*. \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* shameful \w for|strong="G1063"\w* \w a|strong="G2532"\w* \w woman|strong="G1135"\w* \w to|strong="G2532"\w* \w have|strong="G2532"\w* \w her|strong="G3588"\w* \w hair|strong="G2751"\w* \w cut|strong="G2532"\w* \w off|strong="G2751"\w* \w or|strong="G2228"\w* \w be|strong="G2532"\w* \w shaved|strong="G3587"\w*, \w let|strong="G1161"\w* \w her|strong="G3588"\w* \w be|strong="G2532"\w* \w covered|strong="G2619"\w*. +\v 7 \w For|strong="G1063"\w* \w a|strong="G2532"\w* \w man|strong="G3756"\w* \w indeed|strong="G2532"\w* \w ought|strong="G3784"\w* \w not|strong="G3756"\w* \w to|strong="G2532"\w* \w have|strong="G2532"\w* \w his|strong="G2532"\w* \w head|strong="G2776"\w* \w covered|strong="G2619"\w*, \w because|strong="G1063"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w image|strong="G1504"\w* \w and|strong="G2532"\w* \w glory|strong="G1391"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w but|strong="G1161"\w* \w the|strong="G2532"\w* \w woman|strong="G1135"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w man|strong="G3756"\w*. +\v 8 \w For|strong="G1063"\w* \w man|strong="G3756"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w from|strong="G1537"\w* \w woman|strong="G1135"\w*, \w but|strong="G1063"\w* \w woman|strong="G1135"\w* \w from|strong="G1537"\w* \w man|strong="G3756"\w*; +\v 9 \w for|strong="G1063"\w* \w man|strong="G3756"\w* wasn’\w t|strong="G3588"\w* \w created|strong="G2936"\w* \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w woman|strong="G1135"\w*, \w but|strong="G2532"\w* \w woman|strong="G1135"\w* \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w man|strong="G3756"\w*. +\v 10 \w For|strong="G1223"\w* \w this|strong="G3778"\w* \w cause|strong="G1223"\w* \w the|strong="G1909"\w* \w woman|strong="G1135"\w* \w ought|strong="G3784"\w* \w to|strong="G1909"\w* \w have|strong="G2192"\w* \w authority|strong="G1849"\w* \w over|strong="G1909"\w* \w her|strong="G2192"\w* own \w head|strong="G2776"\w*, \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w the|strong="G1909"\w* angels. +\p +\v 11 \w Nevertheless|strong="G4133"\w*, \w neither|strong="G3777"\w* \w is|strong="G2962"\w* \w the|strong="G1722"\w* \w woman|strong="G1135"\w* \w independent|strong="G5565"\w* \w of|strong="G2962"\w* \w the|strong="G1722"\w* man, \w nor|strong="G3777"\w* \w the|strong="G1722"\w* man \w independent|strong="G5565"\w* \w of|strong="G2962"\w* \w the|strong="G1722"\w* \w woman|strong="G1135"\w*, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\v 12 \w For|strong="G1063"\w* \w as|strong="G5618"\w* \w woman|strong="G1135"\w* \w came|strong="G2532"\w* \w from|strong="G1537"\w* \w man|strong="G3956"\w*, \w so|strong="G3779"\w* \w a|strong="G2532"\w* \w man|strong="G3956"\w* \w also|strong="G2532"\w* \w comes|strong="G2532"\w* \w through|strong="G1223"\w* \w a|strong="G2532"\w* \w woman|strong="G1135"\w*; \w but|strong="G1161"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w are|strong="G3588"\w* \w from|strong="G1537"\w* \w God|strong="G2316"\w*. +\v 13 \w Judge|strong="G2919"\w* \w for|strong="G1722"\w* \w yourselves|strong="G4771"\w*. \w Is|strong="G1510"\w* \w it|strong="G1510"\w* appropriate \w that|strong="G3588"\w* \w a|strong="G1722"\w* \w woman|strong="G1135"\w* \w pray|strong="G4336"\w* \w to|strong="G1722"\w* \w God|strong="G2316"\w* unveiled? +\v 14 Doesn’\w t|strong="G3588"\w* \w even|strong="G3761"\w* \w nature|strong="G5449"\w* itself \w teach|strong="G1321"\w* \w you|strong="G5210"\w* \w that|strong="G3754"\w* \w if|strong="G1437"\w* \w a|strong="G1510"\w* man \w has|strong="G3748"\w* \w long|strong="G2863"\w* \w hair|strong="G2863"\w*, \w it|strong="G3754"\w* \w is|strong="G1510"\w* \w a|strong="G1510"\w* dishonor \w to|strong="G1510"\w* \w him|strong="G3588"\w*? +\v 15 \w But|strong="G1161"\w* \w if|strong="G1437"\w* \w a|strong="G1510"\w* \w woman|strong="G1135"\w* \w has|strong="G3748"\w* \w long|strong="G2863"\w* \w hair|strong="G2863"\w*, \w it|strong="G3754"\w* \w is|strong="G1510"\w* \w a|strong="G1510"\w* \w glory|strong="G1391"\w* \w to|strong="G1325"\w* \w her|strong="G1437"\w*, \w for|strong="G3754"\w* \w her|strong="G1437"\w* \w hair|strong="G2863"\w* \w is|strong="G1510"\w* \w given|strong="G1325"\w* \w to|strong="G1325"\w* \w her|strong="G1437"\w* \w for|strong="G3754"\w* \w a|strong="G1510"\w* \w covering|strong="G4018"\w*. +\v 16 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w any|strong="G5100"\w* \w man|strong="G5100"\w* \w seems|strong="G1380"\w* \w to|strong="G3756"\w* \w be|strong="G1510"\w* \w contentious|strong="G5380"\w*, \w we|strong="G2249"\w* \w have|strong="G2192"\w* \w no|strong="G3756"\w* \w such|strong="G5108"\w* \w custom|strong="G4914"\w*, \w neither|strong="G3761"\w* \w do|strong="G1380"\w* \w God|strong="G2316"\w*’\w s|strong="G2192"\w* \w assemblies|strong="G1577"\w*. +\p +\v 17 \w But|strong="G1161"\w* \w in|strong="G1519"\w* \w giving|strong="G3853"\w* \w you|strong="G3754"\w* \w this|strong="G3778"\w* \w command|strong="G3853"\w* \w I|strong="G1161"\w* don’\w t|strong="G3588"\w* \w praise|strong="G1867"\w* \w you|strong="G3754"\w*, \w because|strong="G3754"\w* \w you|strong="G3754"\w* \w come|strong="G4905"\w* \w together|strong="G4905"\w* \w not|strong="G3756"\w* \w for|strong="G3754"\w* \w the|strong="G1519"\w* \w better|strong="G2909"\w* \w but|strong="G1161"\w* \w for|strong="G3754"\w* \w the|strong="G1519"\w* \w worse|strong="G2276"\w*. +\v 18 \w For|strong="G1063"\w* \w first|strong="G4413"\w* \w of|strong="G2532"\w* \w all|strong="G2532"\w*, \w when|strong="G2532"\w* \w you|strong="G5210"\w* \w come|strong="G4905"\w* \w together|strong="G4905"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w*, \w I|strong="G2532"\w* hear \w that|strong="G2532"\w* \w divisions|strong="G4978"\w* \w exist|strong="G5225"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w*, \w and|strong="G2532"\w* \w I|strong="G2532"\w* \w partly|strong="G3313"\w* \w believe|strong="G4100"\w* \w it|strong="G2532"\w*. +\v 19 \w For|strong="G1063"\w* \w there|strong="G2532"\w* \w also|strong="G2532"\w* \w must|strong="G1163"\w* \w be|strong="G1096"\w* factions \w among|strong="G1722"\w* \w you|strong="G5210"\w*, \w that|strong="G2443"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w approved|strong="G1384"\w* \w may|strong="G2532"\w* \w be|strong="G1096"\w* \w revealed|strong="G5318"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w*. +\v 20 \w When|strong="G3767"\w* \w therefore|strong="G3767"\w* \w you|strong="G5210"\w* \w assemble|strong="G4905"\w* \w yourselves|strong="G4771"\w* \w together|strong="G4905"\w*, \w it|strong="G1510"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w the|strong="G1909"\w* \w Lord|strong="G3588"\w*’s \w supper|strong="G1173"\w* \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w eat|strong="G2068"\w*. +\v 21 \w For|strong="G1063"\w* \w in|strong="G1722"\w* \w your|strong="G2532"\w* \w eating|strong="G2068"\w* \w each|strong="G1538"\w* \w one|strong="G1538"\w* \w takes|strong="G4301"\w* \w his|strong="G1722"\w* \w own|strong="G2398"\w* \w supper|strong="G1173"\w* \w first|strong="G3588"\w*. \w One|strong="G1538"\w* \w is|strong="G3588"\w* \w hungry|strong="G3983"\w*, \w and|strong="G2532"\w* \w another|strong="G3739"\w* \w is|strong="G3588"\w* \w drunken|strong="G3184"\w*. +\v 22 \w What|strong="G5101"\w*, don’\w t|strong="G3588"\w* \w you|strong="G5210"\w* \w have|strong="G2192"\w* \w houses|strong="G3614"\w* \w to|strong="G1519"\w* \w eat|strong="G2068"\w* \w and|strong="G2532"\w* \w to|strong="G1519"\w* \w drink|strong="G4095"\w* \w in|strong="G1722"\w*? \w Or|strong="G2228"\w* \w do|strong="G5101"\w* \w you|strong="G5210"\w* \w despise|strong="G2706"\w* \w God|strong="G2316"\w*’\w s|strong="G2192"\w* \w assembly|strong="G1577"\w* \w and|strong="G2532"\w* \w put|strong="G2617"\w* \w them|strong="G3588"\w* \w to|strong="G1519"\w* \w shame|strong="G2617"\w* \w who|strong="G5101"\w* don’\w t|strong="G3588"\w* \w have|strong="G2192"\w* enough? \w What|strong="G5101"\w* \w shall|strong="G2532"\w* \w I|strong="G2532"\w* \w tell|strong="G3004"\w* \w you|strong="G5210"\w*? \w Shall|strong="G2532"\w* \w I|strong="G2532"\w* \w praise|strong="G1867"\w* \w you|strong="G5210"\w*? \w In|strong="G1722"\w* \w this|strong="G3778"\w* \w I|strong="G2532"\w* don’\w t|strong="G3588"\w* \w praise|strong="G1867"\w* \w you|strong="G5210"\w*. +\p +\v 23 \w For|strong="G1063"\w* \w I|strong="G1473"\w* \w received|strong="G2983"\w* \w from|strong="G2532"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w that|strong="G3754"\w* \w which|strong="G3739"\w* \w also|strong="G2532"\w* \w I|strong="G1473"\w* \w delivered|strong="G3860"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*, \w that|strong="G3754"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w night|strong="G3571"\w* \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w betrayed|strong="G3860"\w* \w took|strong="G2983"\w* bread. +\v 24 \w When|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w given|strong="G2168"\w* \w thanks|strong="G2168"\w*, \w he|strong="G2532"\w* \w broke|strong="G2806"\w* \w it|strong="G2532"\w* \w and|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Take|strong="G2532"\+w*, eat. \+w This|strong="G3778"\+w* \+w is|strong="G1510"\+w* \+w my|strong="G1699"\+w* \+w body|strong="G4983"\+w*, \+w which|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w broken|strong="G2806"\+w* \+w for|strong="G1519"\+w* \+w you|strong="G5210"\+w*. \+w Do|strong="G4160"\+w* \+w this|strong="G3778"\+w* \+w in|strong="G1519"\+w* memory \+w of|strong="G2532"\+w* \+w me|strong="G1473"\+w*.”\wj* +\v 25 \w In|strong="G1722"\w* \w the|strong="G1722"\w* \w same|strong="G3778"\w* \w way|strong="G1722"\w* \w he|strong="G2532"\w* \w also|strong="G2532"\w* \w took|strong="G2532"\w* \w the|strong="G1722"\w* \w cup|strong="G4221"\w* \w after|strong="G3326"\w* \w supper|strong="G1172"\w*, \w saying|strong="G3004"\w*, \wj “\+w This|strong="G3778"\+w* \+w cup|strong="G4221"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G1722"\+w* \+w new|strong="G2537"\+w* \+w covenant|strong="G1242"\+w* \+w in|strong="G1722"\+w* \+w my|strong="G1699"\+w* blood. \+w Do|strong="G4160"\+w* \+w this|strong="G3778"\+w*, \+w as|strong="G1519"\+w* \+w often|strong="G3740"\+w* \+w as|strong="G1519"\+w* \+w you|strong="G1437"\+w* \+w drink|strong="G4095"\+w*, \+w in|strong="G1722"\+w* memory \+w of|strong="G2532"\+w* \+w me|strong="G3004"\+w*.”\wj* +\v 26 \w For|strong="G1063"\w* \w as|strong="G2532"\w* \w often|strong="G3740"\w* \w as|strong="G2532"\w* \w you|strong="G3739"\w* \w eat|strong="G2068"\w* \w this|strong="G3778"\w* bread \w and|strong="G2532"\w* \w drink|strong="G4095"\w* \w this|strong="G3778"\w* \w cup|strong="G4221"\w*, \w you|strong="G3739"\w* \w proclaim|strong="G2605"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*’\w s|strong="G2962"\w* \w death|strong="G2288"\w* \w until|strong="G2532"\w* \w he|strong="G2532"\w* \w comes|strong="G2064"\w*. +\p +\v 27 \w Therefore|strong="G5620"\w* \w whoever|strong="G3739"\w* \w eats|strong="G2068"\w* \w this|strong="G3588"\w* bread \w or|strong="G2228"\w* \w drinks|strong="G4095"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*’\w s|strong="G2962"\w* \w cup|strong="G4221"\w* \w in|strong="G2532"\w* \w a|strong="G2532"\w* \w way|strong="G3739"\w* unworthy \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w guilty|strong="G1777"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w body|strong="G4983"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* blood \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*. +\v 28 \w But|strong="G1161"\w* \w let|strong="G1161"\w* \w a|strong="G2532"\w* man \w examine|strong="G1381"\w* \w himself|strong="G1438"\w*, \w and|strong="G2532"\w* \w so|strong="G3779"\w* \w let|strong="G1161"\w* \w him|strong="G3588"\w* \w eat|strong="G2068"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* bread \w and|strong="G2532"\w* \w drink|strong="G4095"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w cup|strong="G4221"\w*. +\v 29 \w For|strong="G1063"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w eats|strong="G2068"\w* \w and|strong="G2532"\w* \w drinks|strong="G4095"\w* \w in|strong="G2532"\w* \w an|strong="G2532"\w* unworthy \w way|strong="G2917"\w* \w eats|strong="G2068"\w* \w and|strong="G2532"\w* \w drinks|strong="G4095"\w* \w judgment|strong="G2917"\w* \w to|strong="G2532"\w* \w himself|strong="G1438"\w* \w if|strong="G2532"\w* \w he|strong="G2532"\w* doesn’\w t|strong="G3588"\w* \w discern|strong="G1252"\w* \w the|strong="G2532"\w* \w Lord|strong="G3588"\w*’s \w body|strong="G4983"\w*. +\v 30 \w For|strong="G1223"\w* \w this|strong="G3778"\w* \w cause|strong="G1223"\w* \w many|strong="G4183"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w* \w are|strong="G3778"\w* weak \w and|strong="G2532"\w* sickly, \w and|strong="G2532"\w* \w not|strong="G1223"\w* \w a|strong="G2532"\w* \w few|strong="G1722"\w* \w sleep|strong="G2837"\w*. +\v 31 \w For|strong="G1161"\w* \w if|strong="G1487"\w* \w we|strong="G1161"\w* discerned \w ourselves|strong="G1438"\w*, \w we|strong="G1161"\w* wouldn’t \w be|strong="G3756"\w* \w judged|strong="G2919"\w*. +\v 32 \w But|strong="G1161"\w* \w when|strong="G1161"\w* \w we|strong="G1161"\w* \w are|strong="G3588"\w* \w judged|strong="G2919"\w*, \w we|strong="G1161"\w* \w are|strong="G3588"\w* \w disciplined|strong="G3811"\w* \w by|strong="G5259"\w* \w the|strong="G1161"\w* \w Lord|strong="G2962"\w*, \w that|strong="G2443"\w* \w we|strong="G1161"\w* \w may|strong="G2443"\w* \w not|strong="G3361"\w* \w be|strong="G3361"\w* \w condemned|strong="G2632"\w* \w with|strong="G4862"\w* \w the|strong="G1161"\w* \w world|strong="G2889"\w*. +\v 33 \w Therefore|strong="G5620"\w*, \w my|strong="G1473"\w* brothers, \w when|strong="G4905"\w* \w you|strong="G1519"\w* \w come|strong="G4905"\w* \w together|strong="G4905"\w* \w to|strong="G1519"\w* \w eat|strong="G2068"\w*, \w wait|strong="G1551"\w* \w for|strong="G1519"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w*. +\v 34 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w anyone|strong="G5100"\w* \w is|strong="G3588"\w* \w hungry|strong="G3983"\w*, \w let|strong="G1161"\w* \w him|strong="G3588"\w* \w eat|strong="G2068"\w* \w at|strong="G1722"\w* \w home|strong="G3624"\w*, \w lest|strong="G3361"\w* \w your|strong="G1487"\w* \w coming|strong="G2064"\w* \w together|strong="G4905"\w* \w be|strong="G3361"\w* \w for|strong="G1519"\w* \w judgment|strong="G2917"\w*. \w The|strong="G1722"\w* \w rest|strong="G3062"\w* \w I|strong="G1161"\w* \w will|strong="G5100"\w* \w set|strong="G2443"\w* \w in|strong="G1722"\w* \w order|strong="G2443"\w* \w whenever|strong="G5613"\w* \w I|strong="G1161"\w* \w come|strong="G2064"\w*. +\c 12 +\p +\v 1 \w Now|strong="G1161"\w* \w concerning|strong="G4012"\w* \w spiritual|strong="G4152"\w* \w things|strong="G3588"\w*, brothers, \w I|strong="G1161"\w* don’\w t|strong="G3588"\w* \w want|strong="G2309"\w* \w you|strong="G5210"\w* \w to|strong="G2309"\w* \w be|strong="G3756"\w* ignorant. +\v 2 \w You|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w when|strong="G3753"\w* \w you|strong="G3754"\w* \w were|strong="G1510"\w* \w heathen|strong="G1484"\w*,\f + \fr 12:2 \ft or Gentiles\f* \w you|strong="G3754"\w* \w were|strong="G1510"\w* led away \w to|strong="G4314"\w* \w those|strong="G3588"\w* mute \w idols|strong="G1497"\w*, \w however|strong="G5613"\w* \w you|strong="G3754"\w* \w might|strong="G1484"\w* \w be|strong="G1510"\w* led. +\v 3 \w Therefore|strong="G1352"\w* \w I|strong="G2532"\w* \w make|strong="G1107"\w* \w known|strong="G1107"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w that|strong="G3754"\w* \w no|strong="G3762"\w* \w man|strong="G3762"\w* \w speaking|strong="G2980"\w* \w by|strong="G1722"\w* \w God|strong="G2316"\w*’\w s|strong="G2962"\w* \w Spirit|strong="G4151"\w* \w says|strong="G3004"\w*, “\w Jesus|strong="G2424"\w* \w is|strong="G2316"\w* accursed.” \w No|strong="G3762"\w* \w one|strong="G3762"\w* \w can|strong="G1410"\w* \w say|strong="G3004"\w*, “\w Jesus|strong="G2424"\w* \w is|strong="G2316"\w* \w Lord|strong="G2962"\w*,” \w but|strong="G2532"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*. +\p +\v 4 \w Now|strong="G1161"\w* \w there|strong="G1161"\w* \w are|strong="G1510"\w* various kinds \w of|strong="G4151"\w* \w gifts|strong="G5486"\w*, \w but|strong="G1161"\w* \w the|strong="G1161"\w* same \w Spirit|strong="G4151"\w*. +\v 5 \w There|strong="G2532"\w* \w are|strong="G1510"\w* various kinds \w of|strong="G2532"\w* \w service|strong="G1248"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w* \w Lord|strong="G2962"\w*. +\v 6 \w There|strong="G2532"\w* \w are|strong="G1510"\w* various \w kinds|strong="G3956"\w* \w of|strong="G2316"\w* workings, \w but|strong="G1161"\w* \w the|strong="G1722"\w* \w same|strong="G2532"\w* \w God|strong="G2316"\w* \w who|strong="G3588"\w* \w works|strong="G1754"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w*. +\v 7 \w But|strong="G1161"\w* \w to|strong="G4314"\w* \w each|strong="G1538"\w* \w one|strong="G1538"\w* \w is|strong="G3588"\w* \w given|strong="G1325"\w* \w the|strong="G1161"\w* \w manifestation|strong="G5321"\w* \w of|strong="G4151"\w* \w the|strong="G1161"\w* \w Spirit|strong="G4151"\w* \w for|strong="G4314"\w* \w the|strong="G1161"\w* \w profit|strong="G4851"\w* \w of|strong="G4151"\w* \w all|strong="G1161"\w*. +\v 8 \w For|strong="G1063"\w* \w to|strong="G2596"\w* \w one|strong="G3739"\w* \w is|strong="G3588"\w* \w given|strong="G1325"\w* \w through|strong="G1223"\w* \w the|strong="G1161"\w* \w Spirit|strong="G4151"\w* \w the|strong="G1161"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w wisdom|strong="G4678"\w*, \w and|strong="G1161"\w* \w to|strong="G2596"\w* \w another|strong="G3739"\w* \w the|strong="G1161"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w knowledge|strong="G1108"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1161"\w* \w same|strong="G3739"\w* \w Spirit|strong="G4151"\w*, +\v 9 \w to|strong="G1722"\w* \w another|strong="G2087"\w* \w faith|strong="G4102"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* same \w Spirit|strong="G4151"\w*, \w and|strong="G1161"\w* \w to|strong="G1722"\w* \w another|strong="G2087"\w* \w gifts|strong="G5486"\w* \w of|strong="G4151"\w* \w healings|strong="G2386"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* same \w Spirit|strong="G4151"\w*, +\v 10 \w and|strong="G1161"\w* \w to|strong="G1161"\w* \w another|strong="G2087"\w* workings \w of|strong="G4151"\w* \w miracles|strong="G1411"\w*, \w and|strong="G1161"\w* \w to|strong="G1161"\w* \w another|strong="G2087"\w* \w prophecy|strong="G4394"\w*, \w and|strong="G1161"\w* \w to|strong="G1161"\w* \w another|strong="G2087"\w* \w discerning|strong="G1253"\w* \w of|strong="G4151"\w* \w spirits|strong="G4151"\w*, \w to|strong="G1161"\w* \w another|strong="G2087"\w* \w different|strong="G2087"\w* \w kinds|strong="G1085"\w* \w of|strong="G4151"\w* \w languages|strong="G1100"\w*, \w and|strong="G1161"\w* \w to|strong="G1161"\w* \w another|strong="G2087"\w* \w the|strong="G1161"\w* \w interpretation|strong="G2058"\w* \w of|strong="G4151"\w* \w languages|strong="G1100"\w*. +\v 11 \w But|strong="G1161"\w* \w the|strong="G2532"\w* \w one|strong="G1520"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w same|strong="G3778"\w* \w Spirit|strong="G4151"\w* produces \w all|strong="G3956"\w* \w of|strong="G4151"\w* \w these|strong="G3778"\w*, \w distributing|strong="G1244"\w* \w to|strong="G2532"\w* \w each|strong="G1538"\w* \w one|strong="G1520"\w* separately \w as|strong="G2531"\w* \w he|strong="G2532"\w* \w desires|strong="G1014"\w*. +\p +\v 12 \w For|strong="G1063"\w* \w as|strong="G1161"\w* \w the|strong="G2532"\w* \w body|strong="G4983"\w* \w is|strong="G1510"\w* \w one|strong="G1520"\w* \w and|strong="G2532"\w* \w has|strong="G2192"\w* \w many|strong="G4183"\w* \w members|strong="G3196"\w*, \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w members|strong="G3196"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w body|strong="G4983"\w*, \w being|strong="G1510"\w* \w many|strong="G4183"\w*, \w are|strong="G1510"\w* \w one|strong="G1520"\w* \w body|strong="G4983"\w*; \w so|strong="G3779"\w* \w also|strong="G2532"\w* \w is|strong="G1510"\w* \w Christ|strong="G5547"\w*. +\v 13 \w For|strong="G1063"\w* \w in|strong="G1722"\w* \w one|strong="G1520"\w* \w Spirit|strong="G4151"\w* \w we|strong="G2249"\w* \w were|strong="G2532"\w* \w all|strong="G3956"\w* baptized \w into|strong="G1519"\w* \w one|strong="G1520"\w* \w body|strong="G4983"\w*, \w whether|strong="G1535"\w* \w Jews|strong="G2453"\w* \w or|strong="G1535"\w* \w Greeks|strong="G1672"\w*, \w whether|strong="G1535"\w* \w bond|strong="G1401"\w* \w or|strong="G1535"\w* \w free|strong="G1658"\w*; \w and|strong="G2532"\w* \w were|strong="G2532"\w* \w all|strong="G3956"\w* given \w to|strong="G1519"\w* \w drink|strong="G4222"\w* \w into|strong="G1519"\w* \w one|strong="G1520"\w* \w Spirit|strong="G4151"\w*. +\p +\v 14 \w For|strong="G1063"\w* \w the|strong="G2532"\w* \w body|strong="G4983"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w one|strong="G1520"\w* \w member|strong="G3196"\w*, \w but|strong="G2532"\w* \w many|strong="G4183"\w*. +\v 15 \w If|strong="G1437"\w* \w the|strong="G1537"\w* \w foot|strong="G4228"\w* \w would|strong="G1437"\w* \w say|strong="G3004"\w*, “\w Because|strong="G3754"\w* \w I|strong="G1437"\w*’m \w not|strong="G3756"\w* \w the|strong="G1537"\w* \w hand|strong="G5495"\w*, \w I|strong="G1437"\w*’m \w not|strong="G3756"\w* part \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w body|strong="G4983"\w*,” \w it|strong="G3754"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w therefore|strong="G3844"\w* \w not|strong="G3756"\w* part \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w body|strong="G4983"\w*. +\v 16 \w If|strong="G1437"\w* \w the|strong="G2532"\w* \w ear|strong="G3775"\w* \w would|strong="G2532"\w* \w say|strong="G3004"\w*, “\w Because|strong="G3754"\w* \w I|strong="G2532"\w*’m \w not|strong="G3756"\w* \w the|strong="G2532"\w* \w eye|strong="G3788"\w*, \w I|strong="G2532"\w*’m \w not|strong="G3756"\w* \w part|strong="G2532"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w body|strong="G4983"\w*,” \w it|strong="G2532"\w*’s \w not|strong="G3756"\w* \w therefore|strong="G3844"\w* \w not|strong="G3756"\w* \w part|strong="G2532"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w body|strong="G4983"\w*. +\v 17 \w If|strong="G1487"\w* \w the|strong="G3588"\w* \w whole|strong="G3650"\w* \w body|strong="G4983"\w* \w were|strong="G3588"\w* \w an|strong="G3788"\w* \w eye|strong="G3788"\w*, \w where|strong="G4226"\w* would \w the|strong="G3588"\w* hearing \w be|strong="G3588"\w*? \w If|strong="G1487"\w* \w the|strong="G3588"\w* \w whole|strong="G3650"\w* \w were|strong="G3588"\w* hearing, \w where|strong="G4226"\w* would \w the|strong="G3588"\w* \w smelling|strong="G3750"\w* \w be|strong="G3588"\w*? +\v 18 \w But|strong="G1161"\w* \w now|strong="G1161"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w set|strong="G5087"\w* \w the|strong="G1722"\w* \w members|strong="G3196"\w*, \w each|strong="G1538"\w* \w one|strong="G1520"\w* \w of|strong="G2316"\w* \w them|strong="G3588"\w*, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w body|strong="G4983"\w*, \w just|strong="G2531"\w* \w as|strong="G2531"\w* \w he|strong="G1161"\w* \w desired|strong="G2309"\w*. +\v 19 \w If|strong="G1487"\w* \w they|strong="G1161"\w* \w were|strong="G1510"\w* \w all|strong="G3956"\w* \w one|strong="G1520"\w* \w member|strong="G3196"\w*, \w where|strong="G4226"\w* \w would|strong="G1510"\w* \w the|strong="G3956"\w* \w body|strong="G4983"\w* \w be|strong="G1510"\w*? +\v 20 \w But|strong="G1161"\w* \w now|strong="G1161"\w* \w they|strong="G1161"\w* \w are|strong="G3568"\w* \w many|strong="G4183"\w* \w members|strong="G3196"\w*, \w but|strong="G1161"\w* \w one|strong="G1520"\w* \w body|strong="G4983"\w*. +\v 21 \w The|strong="G1161"\w* \w eye|strong="G3788"\w* \w can|strong="G1410"\w*’\w t|strong="G3588"\w* \w tell|strong="G3004"\w* \w the|strong="G1161"\w* \w hand|strong="G5495"\w*, “\w I|strong="G1161"\w* \w have|strong="G2192"\w* \w no|strong="G3756"\w* \w need|strong="G5532"\w* \w for|strong="G1161"\w* \w you|strong="G5210"\w*,” \w or|strong="G2228"\w* \w again|strong="G3825"\w* \w the|strong="G1161"\w* \w head|strong="G2776"\w* \w to|strong="G3004"\w* \w the|strong="G1161"\w* \w feet|strong="G4228"\w*, “\w I|strong="G1161"\w* \w have|strong="G2192"\w* \w no|strong="G3756"\w* \w need|strong="G5532"\w* \w for|strong="G1161"\w* \w you|strong="G5210"\w*.” +\v 22 \w No|strong="G3588"\w*, \w much|strong="G4183"\w* \w rather|strong="G3123"\w*, \w those|strong="G3588"\w* \w members|strong="G3196"\w* \w of|strong="G4983"\w* \w the|strong="G3588"\w* \w body|strong="G4983"\w* \w which|strong="G3588"\w* \w seem|strong="G1380"\w* \w to|strong="G1380"\w* \w be|strong="G1510"\w* weaker \w are|strong="G1510"\w* necessary. +\v 23 \w Those|strong="G3588"\w* parts \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w body|strong="G4983"\w* \w which|strong="G3739"\w* \w we|strong="G2249"\w* \w think|strong="G1380"\w* \w to|strong="G2532"\w* \w be|strong="G1510"\w* less \w honorable|strong="G5092"\w*, \w on|strong="G3588"\w* \w those|strong="G3588"\w* \w we|strong="G2249"\w* \w bestow|strong="G4060"\w* \w more|strong="G4053"\w* \w abundant|strong="G4053"\w* \w honor|strong="G5092"\w*; \w and|strong="G2532"\w* \w our|strong="G2532"\w* \w unpresentable|strong="G2157"\w* parts \w have|strong="G2192"\w* \w more|strong="G4053"\w* \w abundant|strong="G4053"\w* modesty, +\v 24 \w while|strong="G1161"\w* \w our|strong="G2316"\w* \w presentable|strong="G2158"\w* parts \w have|strong="G2192"\w* \w no|strong="G3756"\w* \w such|strong="G1161"\w* \w need|strong="G5532"\w*. \w But|strong="G1161"\w* \w God|strong="G2316"\w* \w composed|strong="G4786"\w* \w the|strong="G1161"\w* \w body|strong="G4983"\w* \w together|strong="G4786"\w*, \w giving|strong="G1325"\w* \w more|strong="G4053"\w* \w abundant|strong="G4053"\w* \w honor|strong="G5092"\w* \w to|strong="G1325"\w* \w the|strong="G1161"\w* \w inferior|strong="G5302"\w* \w part|strong="G1473"\w*, +\v 25 \w that|strong="G2443"\w* \w there|strong="G1510"\w* \w should|strong="G3588"\w* \w be|strong="G1510"\w* \w no|strong="G3361"\w* \w division|strong="G4978"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w body|strong="G4983"\w*, \w but|strong="G3361"\w* \w that|strong="G2443"\w* \w the|strong="G1722"\w* \w members|strong="G3196"\w* \w should|strong="G3588"\w* \w have|strong="G1510"\w* \w the|strong="G1722"\w* same \w care|strong="G3309"\w* \w for|strong="G5228"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w*. +\v 26 \w When|strong="G2532"\w* \w one|strong="G1520"\w* \w member|strong="G3196"\w* \w suffers|strong="G3958"\w*, \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w members|strong="G3196"\w* \w suffer|strong="G3958"\w* \w with|strong="G2532"\w* \w it|strong="G2532"\w*. \w When|strong="G2532"\w* \w one|strong="G1520"\w* \w member|strong="G3196"\w* \w is|strong="G3588"\w* \w honored|strong="G1392"\w*, \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w members|strong="G3196"\w* \w rejoice|strong="G4796"\w* \w with|strong="G2532"\w* \w it|strong="G2532"\w*. +\p +\v 27 \w Now|strong="G1161"\w* \w you|strong="G5210"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* \w body|strong="G4983"\w* \w of|strong="G1537"\w* \w Christ|strong="G5547"\w*, \w and|strong="G2532"\w* \w members|strong="G3196"\w* \w individually|strong="G3313"\w*. +\v 28 \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w set|strong="G5087"\w* \w some|strong="G3739"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w*: \w first|strong="G4413"\w* apostles, \w second|strong="G1208"\w* \w prophets|strong="G4396"\w*, \w third|strong="G5154"\w* \w teachers|strong="G1320"\w*, \w then|strong="G2532"\w* \w miracle|strong="G1411"\w* workers, \w then|strong="G2532"\w* \w gifts|strong="G5486"\w* \w of|strong="G2316"\w* \w healings|strong="G2386"\w*, helps, \w governments|strong="G2941"\w*, \w and|strong="G2532"\w* various \w kinds|strong="G1085"\w* \w of|strong="G2316"\w* \w languages|strong="G1100"\w*. +\v 29 \w Are|strong="G3956"\w* \w all|strong="G3956"\w* apostles? \w Are|strong="G3956"\w* \w all|strong="G3956"\w* \w prophets|strong="G4396"\w*? \w Are|strong="G3956"\w* \w all|strong="G3956"\w* \w teachers|strong="G1320"\w*? \w Are|strong="G3956"\w* \w all|strong="G3956"\w* \w miracle|strong="G1411"\w* workers? +\v 30 \w Do|strong="G2192"\w* \w all|strong="G3956"\w* \w have|strong="G2192"\w* \w gifts|strong="G5486"\w* \w of|strong="G3956"\w* \w healings|strong="G2386"\w*? \w Do|strong="G2192"\w* \w all|strong="G3956"\w* \w speak|strong="G2980"\w* \w with|strong="G2980"\w* various \w languages|strong="G1100"\w*? \w Do|strong="G2192"\w* \w all|strong="G3956"\w* \w interpret|strong="G1329"\w*? +\v 31 \w But|strong="G1161"\w* \w earnestly|strong="G2206"\w* \w desire|strong="G2206"\w* \w the|strong="G2532"\w* best \w gifts|strong="G5486"\w*. \w Moreover|strong="G1161"\w*, \w I|strong="G2532"\w* \w show|strong="G1166"\w* \w a|strong="G2532"\w* most \w excellent|strong="G5236"\w* \w way|strong="G3598"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*. +\c 13 +\p +\v 1 \w If|strong="G1437"\w* \w I|strong="G2532"\w* \w speak|strong="G2980"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w languages|strong="G1100"\w* \w of|strong="G2532"\w* \w men|strong="G3588"\w* \w and|strong="G2532"\w* \w of|strong="G2532"\w* angels, \w but|strong="G1161"\w* don’\w t|strong="G3588"\w* \w have|strong="G2192"\w* love, \w I|strong="G2532"\w* \w have|strong="G2192"\w* \w become|strong="G1096"\w* \w sounding|strong="G2278"\w* \w brass|strong="G5475"\w* \w or|strong="G2228"\w* \w a|strong="G2192"\w* clanging \w cymbal|strong="G2950"\w*. +\v 2 \w If|strong="G1437"\w* \w I|strong="G2532"\w* \w have|strong="G2192"\w* \w the|strong="G2532"\w* gift \w of|strong="G2532"\w* \w prophecy|strong="G4394"\w*, \w and|strong="G2532"\w* \w know|strong="G1492"\w* \w all|strong="G3956"\w* \w mysteries|strong="G3466"\w* \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w knowledge|strong="G1108"\w*, \w and|strong="G2532"\w* \w if|strong="G1437"\w* \w I|strong="G2532"\w* \w have|strong="G2192"\w* \w all|strong="G3956"\w* \w faith|strong="G4102"\w*, \w so|strong="G2532"\w* \w as|strong="G1161"\w* \w to|strong="G2532"\w* \w remove|strong="G3179"\w* \w mountains|strong="G3735"\w*, \w but|strong="G1161"\w* don’\w t|strong="G3588"\w* \w have|strong="G2192"\w* love, \w I|strong="G2532"\w* \w am|strong="G1510"\w* \w nothing|strong="G3762"\w*. +\v 3 \w If|strong="G1437"\w* \w I|strong="G1473"\w* \w give|strong="G1473"\w* away \w all|strong="G3956"\w* \w my|strong="G3956"\w* goods \w to|strong="G2443"\w* \w feed|strong="G5595"\w* \w the|strong="G2532"\w* poor, \w and|strong="G2532"\w* \w if|strong="G1437"\w* \w I|strong="G1473"\w* \w give|strong="G1473"\w* \w my|strong="G3956"\w* \w body|strong="G4983"\w* \w to|strong="G2443"\w* \w be|strong="G2532"\w* \w burned|strong="G2545"\w*, \w but|strong="G1161"\w* don’\w t|strong="G3588"\w* \w have|strong="G2192"\w* love, \w it|strong="G2532"\w* \w profits|strong="G5623"\w* \w me|strong="G1473"\w* \w nothing|strong="G3762"\w*. +\p +\v 4 Love \w is|strong="G3588"\w* \w patient|strong="G3114"\w* \w and|strong="G3588"\w* \w is|strong="G3588"\w* \w kind|strong="G5541"\w*. Love doesn’\w t|strong="G3588"\w* \w envy|strong="G2206"\w*. Love doesn’\w t|strong="G3588"\w* \w brag|strong="G4068"\w*, \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w proud|strong="G5448"\w*, +\v 5 doesn’\w t|strong="G3588"\w* \w behave|strong="G3756"\w* \w itself|strong="G1438"\w* inappropriately, doesn’\w t|strong="G3588"\w* \w seek|strong="G2212"\w* \w its|strong="G2212"\w* \w own|strong="G1438"\w* way, \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w provoked|strong="G3947"\w*, takes \w no|strong="G3756"\w* \w account|strong="G3049"\w* \w of|strong="G3588"\w* \w evil|strong="G2556"\w*; +\v 6 doesn’\w t|strong="G3588"\w* \w rejoice|strong="G5463"\w* \w in|strong="G1909"\w* unrighteousness, \w but|strong="G1161"\w* \w rejoices|strong="G5463"\w* \w with|strong="G1909"\w* \w the|strong="G1161"\w* truth; +\v 7 \w bears|strong="G4722"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w believes|strong="G4100"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w hopes|strong="G1679"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w and|strong="G3956"\w* \w endures|strong="G5278"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*. +\p +\v 8 Love \w never|strong="G3763"\w* \w fails|strong="G4098"\w*. \w But|strong="G1161"\w* where \w there|strong="G1161"\w* \w are|strong="G3588"\w* \w prophecies|strong="G4394"\w*, \w they|strong="G1161"\w* \w will|strong="G1100"\w* \w be|strong="G3588"\w* \w done|strong="G2673"\w* \w away|strong="G2673"\w* \w with|strong="G3588"\w*. Where \w there|strong="G1161"\w* \w are|strong="G3588"\w* various \w languages|strong="G1100"\w*, \w they|strong="G1161"\w* \w will|strong="G1100"\w* \w cease|strong="G3973"\w*. Where \w there|strong="G1161"\w* \w is|strong="G3588"\w* \w knowledge|strong="G1108"\w*, \w it|strong="G1161"\w* \w will|strong="G1100"\w* \w be|strong="G3588"\w* \w done|strong="G2673"\w* \w away|strong="G2673"\w* \w with|strong="G3588"\w*. +\v 9 \w For|strong="G1063"\w* \w we|strong="G1063"\w* \w know|strong="G1097"\w* \w in|strong="G2532"\w* \w part|strong="G3313"\w* \w and|strong="G2532"\w* \w we|strong="G1063"\w* \w prophesy|strong="G4395"\w* \w in|strong="G2532"\w* \w part|strong="G3313"\w*; +\v 10 \w but|strong="G1161"\w* \w when|strong="G3752"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w complete|strong="G5046"\w* \w has|strong="G2064"\w* \w come|strong="G2064"\w*, \w then|strong="G1161"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w partial|strong="G3313"\w* \w will|strong="G2064"\w* \w be|strong="G3588"\w* \w done|strong="G2673"\w* \w away|strong="G2673"\w* \w with|strong="G1537"\w*. +\v 11 \w When|strong="G3753"\w* \w I|strong="G5613"\w* \w was|strong="G1510"\w* \w a|strong="G1096"\w* \w child|strong="G3516"\w*, \w I|strong="G5613"\w* \w spoke|strong="G2980"\w* \w as|strong="G5613"\w* \w a|strong="G1096"\w* \w child|strong="G3516"\w*, \w I|strong="G5613"\w* \w felt|strong="G1510"\w* \w as|strong="G5613"\w* \w a|strong="G1096"\w* \w child|strong="G3516"\w*, \w I|strong="G5613"\w* \w thought|strong="G3049"\w* \w as|strong="G5613"\w* \w a|strong="G1096"\w* \w child|strong="G3516"\w*. \w Now|strong="G1096"\w* \w that|strong="G3588"\w* \w I|strong="G5613"\w* \w have|strong="G1510"\w* \w become|strong="G1096"\w* \w a|strong="G1096"\w* man, \w I|strong="G5613"\w* \w have|strong="G1510"\w* \w put|strong="G1096"\w* \w away|strong="G2673"\w* \w childish|strong="G3516"\w* \w things|strong="G3588"\w*. +\v 12 \w For|strong="G1063"\w* \w now|strong="G1161"\w* \w we|strong="G1063"\w* \w see|strong="G1097"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* \w mirror|strong="G2072"\w*, dimly, \w but|strong="G1161"\w* \w then|strong="G2532"\w* \w face|strong="G4383"\w* \w to|strong="G4314"\w* \w face|strong="G4383"\w*. \w Now|strong="G1161"\w* \w I|strong="G2532"\w* \w know|strong="G1097"\w* \w in|strong="G1722"\w* \w part|strong="G3313"\w*, \w but|strong="G1161"\w* \w then|strong="G2532"\w* \w I|strong="G2532"\w* \w will|strong="G2532"\w* \w know|strong="G1097"\w* \w fully|strong="G1921"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w I|strong="G2532"\w* \w was|strong="G2532"\w* \w also|strong="G2532"\w* \w fully|strong="G1921"\w* \w known|strong="G1097"\w*. +\v 13 \w But|strong="G1161"\w* \w now|strong="G1161"\w* \w faith|strong="G4102"\w*, \w hope|strong="G1680"\w*, \w and|strong="G1161"\w* love \w remain|strong="G3306"\w*—\w these|strong="G3778"\w* \w three|strong="G5140"\w*. \w The|strong="G1161"\w* \w greatest|strong="G3173"\w* \w of|strong="G1680"\w* \w these|strong="G3778"\w* \w is|strong="G3588"\w* love. +\c 14 +\p +\v 1 \w Follow|strong="G1377"\w* \w after|strong="G1161"\w* love \w and|strong="G1161"\w* \w earnestly|strong="G2206"\w* \w desire|strong="G2206"\w* \w spiritual|strong="G4152"\w* gifts, \w but|strong="G1161"\w* \w especially|strong="G3123"\w* \w that|strong="G2443"\w* you \w may|strong="G2443"\w* \w prophesy|strong="G4395"\w*. +\v 2 \w For|strong="G1063"\w* \w he|strong="G1161"\w* \w who|strong="G3588"\w* \w speaks|strong="G2980"\w* \w in|strong="G2316"\w* \w another|strong="G3588"\w* \w language|strong="G1100"\w* \w speaks|strong="G2980"\w* \w not|strong="G3756"\w* \w to|strong="G3756"\w* \w men|strong="G3588"\w*, \w but|strong="G1161"\w* \w to|strong="G3756"\w* \w God|strong="G2316"\w*, \w for|strong="G1063"\w* \w no|strong="G3756"\w* \w one|strong="G3762"\w* understands, \w but|strong="G1161"\w* \w in|strong="G2316"\w* \w the|strong="G1161"\w* \w Spirit|strong="G4151"\w* \w he|strong="G1161"\w* \w speaks|strong="G2980"\w* \w mysteries|strong="G3466"\w*. +\v 3 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w prophesies|strong="G4395"\w* \w speaks|strong="G2980"\w* \w to|strong="G2532"\w* \w men|strong="G3588"\w* \w for|strong="G1161"\w* \w their|strong="G2532"\w* \w edification|strong="G3619"\w*, \w exhortation|strong="G3874"\w*, \w and|strong="G2532"\w* \w consolation|strong="G3874"\w*. +\v 4 \w He|strong="G1161"\w* \w who|strong="G3588"\w* \w speaks|strong="G2980"\w* \w in|strong="G2980"\w* \w another|strong="G1438"\w* \w language|strong="G1100"\w* \w edifies|strong="G3618"\w* \w himself|strong="G1438"\w*, \w but|strong="G1161"\w* \w he|strong="G1161"\w* \w who|strong="G3588"\w* \w prophesies|strong="G4395"\w* \w edifies|strong="G3618"\w* \w the|strong="G1161"\w* \w assembly|strong="G1577"\w*. +\v 5 \w Now|strong="G1161"\w* \w I|strong="G1161"\w* \w desire|strong="G2309"\w* \w to|strong="G2443"\w* \w have|strong="G2309"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w* \w speak|strong="G2980"\w* \w with|strong="G2980"\w* \w other|strong="G1161"\w* \w languages|strong="G1100"\w*, \w but|strong="G1161"\w* \w even|strong="G1161"\w* \w more|strong="G3123"\w* \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w would|strong="G2309"\w* \w prophesy|strong="G4395"\w*. \w For|strong="G1161"\w* \w he|strong="G1161"\w* \w is|strong="G3588"\w* \w greater|strong="G3173"\w* \w who|strong="G3588"\w* \w prophesies|strong="G4395"\w* \w than|strong="G2228"\w* \w he|strong="G1161"\w* \w who|strong="G3588"\w* \w speaks|strong="G2980"\w* \w with|strong="G2980"\w* \w other|strong="G1161"\w* \w languages|strong="G1100"\w*, \w unless|strong="G1487"\w* \w he|strong="G1161"\w* \w interprets|strong="G1329"\w*, \w that|strong="G2443"\w* \w the|strong="G3956"\w* \w assembly|strong="G1577"\w* \w may|strong="G2443"\w* \w be|strong="G3361"\w* built \w up|strong="G3361"\w*. +\p +\v 6 \w But|strong="G1161"\w* \w now|strong="G1161"\w*, brothers,\f + \fr 14:6 \ft The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” \f* \w if|strong="G1437"\w* \w I|strong="G1161"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w* \w speaking|strong="G2980"\w* \w with|strong="G1722"\w* \w other|strong="G1161"\w* \w languages|strong="G1100"\w*, \w what|strong="G5101"\w* \w would|strong="G5101"\w* \w I|strong="G1161"\w* \w profit|strong="G5623"\w* \w you|strong="G5210"\w* \w unless|strong="G1437"\w* \w I|strong="G1161"\w* \w speak|strong="G2980"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w* \w either|strong="G2228"\w* \w by|strong="G1722"\w* \w way|strong="G1722"\w* \w of|strong="G1722"\w* revelation, \w or|strong="G2228"\w* \w of|strong="G1722"\w* \w knowledge|strong="G1108"\w*, \w or|strong="G2228"\w* \w of|strong="G1722"\w* \w prophesying|strong="G4394"\w*, \w or|strong="G2228"\w* \w of|strong="G1722"\w* \w teaching|strong="G1322"\w*? +\v 7 \w Even|strong="G3676"\w* lifeless \w things|strong="G3588"\w* \w that|strong="G3588"\w* \w make|strong="G1325"\w* \w a|strong="G1437"\w* \w sound|strong="G5456"\w*, \w whether|strong="G1535"\w* pipe \w or|strong="G2228"\w* \w harp|strong="G2788"\w*, \w if|strong="G1437"\w* \w they|strong="G3588"\w* didn’\w t|strong="G3588"\w* \w give|strong="G1325"\w* \w a|strong="G1437"\w* \w distinction|strong="G1293"\w* \w in|strong="G2228"\w* \w the|strong="G3588"\w* \w sounds|strong="G5456"\w*, \w how|strong="G4459"\w* \w would|strong="G1437"\w* \w it|strong="G1437"\w* \w be|strong="G3361"\w* \w known|strong="G1097"\w* \w what|strong="G3588"\w* \w is|strong="G3588"\w* piped \w or|strong="G2228"\w* \w harped|strong="G2789"\w*? +\v 8 \w For|strong="G1063"\w* \w if|strong="G1437"\w* \w the|strong="G2532"\w* \w trumpet|strong="G4536"\w* \w gave|strong="G1325"\w* \w an|strong="G2532"\w* uncertain \w sound|strong="G5456"\w*, \w who|strong="G5101"\w* \w would|strong="G2532"\w* \w prepare|strong="G3903"\w* \w himself|strong="G1519"\w* \w for|strong="G1063"\w* \w war|strong="G4171"\w*? +\v 9 \w So|strong="G3779"\w* \w also|strong="G2532"\w* \w you|strong="G5210"\w*, \w unless|strong="G1437"\w* \w you|strong="G5210"\w* \w uttered|strong="G2980"\w* \w by|strong="G1223"\w* \w the|strong="G2532"\w* \w tongue|strong="G1100"\w* \w words|strong="G3056"\w* \w easy|strong="G2154"\w* \w to|strong="G1519"\w* \w understand|strong="G1097"\w*, \w how|strong="G4459"\w* \w would|strong="G2532"\w* \w it|strong="G2532"\w* \w be|strong="G1510"\w* \w known|strong="G1097"\w* \w what|strong="G3588"\w* \w is|strong="G1510"\w* \w spoken|strong="G2980"\w*? \w For|strong="G1063"\w* \w you|strong="G5210"\w* \w would|strong="G2532"\w* \w be|strong="G1510"\w* \w speaking|strong="G2980"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* air. +\v 10 \w There|strong="G2532"\w* \w are|strong="G1510"\w*, \w it|strong="G2532"\w* \w may|strong="G2532"\w* \w be|strong="G1510"\w*, \w so|strong="G2532"\w* \w many|strong="G5118"\w* \w kinds|strong="G1085"\w* \w of|strong="G2532"\w* \w languages|strong="G5456"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*, \w and|strong="G2532"\w* \w none|strong="G3762"\w* \w of|strong="G2532"\w* \w them|strong="G1722"\w* \w is|strong="G1510"\w* \w without|strong="G2532"\w* meaning. +\v 11 \w If|strong="G1437"\w* \w then|strong="G3767"\w* \w I|strong="G1473"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w the|strong="G1722"\w* \w meaning|strong="G1411"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w language|strong="G5456"\w*, \w I|strong="G1473"\w* \w would|strong="G2532"\w* \w be|strong="G1510"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w speaks|strong="G2980"\w* \w a|strong="G2532"\w* foreigner, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w speaks|strong="G2980"\w* \w would|strong="G2532"\w* \w be|strong="G1510"\w* \w a|strong="G2532"\w* foreigner \w to|strong="G2532"\w* \w me|strong="G1473"\w*. +\v 12 \w So|strong="G3779"\w* \w also|strong="G2532"\w* \w you|strong="G5210"\w*, \w since|strong="G1893"\w* \w you|strong="G5210"\w* \w are|strong="G1510"\w* \w zealous|strong="G2207"\w* \w for|strong="G4314"\w* \w spiritual|strong="G4151"\w* gifts, \w seek|strong="G2212"\w* \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w may|strong="G2532"\w* \w abound|strong="G4052"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w building|strong="G3619"\w* \w up|strong="G2532"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w assembly|strong="G1577"\w*. +\p +\v 13 \w Therefore|strong="G1352"\w* \w let|strong="G2443"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w speaks|strong="G2980"\w* \w in|strong="G2980"\w* \w another|strong="G3588"\w* \w language|strong="G1100"\w* \w pray|strong="G4336"\w* \w that|strong="G2443"\w* \w he|strong="G3588"\w* \w may|strong="G2443"\w* \w interpret|strong="G1329"\w*. +\v 14 \w For|strong="G1063"\w* \w if|strong="G1437"\w* \w I|strong="G1473"\w* \w pray|strong="G4336"\w* \w in|strong="G1161"\w* \w another|strong="G3588"\w* \w language|strong="G1100"\w*, \w my|strong="G1473"\w* \w spirit|strong="G4151"\w* \w prays|strong="G4336"\w*, \w but|strong="G1161"\w* \w my|strong="G1473"\w* \w understanding|strong="G3563"\w* \w is|strong="G1510"\w* unfruitful. +\p +\v 15 \w What|strong="G5101"\w* \w should|strong="G3588"\w* \w I|strong="G2532"\w* \w do|strong="G5101"\w*? \w I|strong="G2532"\w* \w will|strong="G5101"\w* \w pray|strong="G4336"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w spirit|strong="G4151"\w*, \w and|strong="G2532"\w* \w I|strong="G2532"\w* \w will|strong="G5101"\w* \w pray|strong="G4336"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w understanding|strong="G3563"\w* \w also|strong="G2532"\w*. \w I|strong="G2532"\w* \w will|strong="G5101"\w* \w sing|strong="G5567"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w spirit|strong="G4151"\w*, \w and|strong="G2532"\w* \w I|strong="G2532"\w* \w will|strong="G5101"\w* \w sing|strong="G5567"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w understanding|strong="G3563"\w* \w also|strong="G2532"\w*. +\v 16 \w Otherwise|strong="G1893"\w*, \w if|strong="G1437"\w* \w you|strong="G1437"\w* \w bless|strong="G2127"\w* \w with|strong="G1909"\w* \w the|strong="G1909"\w* \w spirit|strong="G4151"\w*, \w how|strong="G4459"\w* \w will|strong="G5101"\w* \w he|strong="G3588"\w* \w who|strong="G5101"\w* fills \w the|strong="G1909"\w* \w place|strong="G5117"\w* \w of|strong="G4151"\w* \w the|strong="G1909"\w* \w unlearned|strong="G2399"\w* \w say|strong="G3004"\w* \w the|strong="G1909"\w* “Amen” \w at|strong="G1909"\w* \w your|strong="G4674"\w* \w giving|strong="G2169"\w* \w of|strong="G4151"\w* \w thanks|strong="G2169"\w*, \w seeing|strong="G1492"\w* \w he|strong="G3588"\w* doesn’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w what|strong="G5101"\w* \w you|strong="G1437"\w* \w say|strong="G3004"\w*? +\v 17 \w For|strong="G1063"\w* \w you|strong="G4771"\w* most \w certainly|strong="G3303"\w* \w give|strong="G2168"\w* \w thanks|strong="G2168"\w* \w well|strong="G2573"\w*, \w but|strong="G1063"\w* \w the|strong="G3588"\w* \w other|strong="G2087"\w* \w person|strong="G2087"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w built|strong="G3618"\w* \w up|strong="G3618"\w*. +\v 18 \w I|strong="G3956"\w* \w thank|strong="G2168"\w* \w my|strong="G3956"\w* \w God|strong="G2316"\w*, \w I|strong="G3956"\w* \w speak|strong="G2980"\w* \w with|strong="G2980"\w* \w other|strong="G3588"\w* \w languages|strong="G1100"\w* \w more|strong="G3123"\w* \w than|strong="G3123"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w*. +\v 19 However, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w* \w I|strong="G1473"\w* \w would|strong="G2309"\w* \w rather|strong="G2228"\w* \w speak|strong="G2980"\w* \w five|strong="G4002"\w* \w words|strong="G3056"\w* \w with|strong="G1722"\w* \w my|strong="G1722"\w* \w understanding|strong="G3563"\w*, \w that|strong="G2443"\w* \w I|strong="G1473"\w* \w might|strong="G2532"\w* \w instruct|strong="G2727"\w* \w others|strong="G3588"\w* \w also|strong="G2532"\w*, \w than|strong="G2228"\w* \w ten|strong="G3463"\w* \w thousand|strong="G3463"\w* \w words|strong="G3056"\w* \w in|strong="G1722"\w* \w another|strong="G3588"\w* \w language|strong="G1100"\w*. +\p +\v 20 Brothers, don’\w t|strong="G3588"\w* \w be|strong="G1096"\w* \w children|strong="G3813"\w* \w in|strong="G1096"\w* thoughts, \w yet|strong="G1161"\w* \w in|strong="G1096"\w* \w malice|strong="G2549"\w* \w be|strong="G1096"\w* babies, \w but|strong="G1161"\w* \w in|strong="G1096"\w* thoughts \w be|strong="G1096"\w* \w mature|strong="G5046"\w*. +\v 21 \w In|strong="G1722"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, “\w By|strong="G1722"\w* \w men|strong="G3778"\w* \w of|strong="G2532"\w* \w strange|strong="G2087"\w* languages \w and|strong="G2532"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w lips|strong="G5491"\w* \w of|strong="G2532"\w* \w strangers|strong="G2087"\w* \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w speak|strong="G2980"\w* \w to|strong="G2532"\w* \w this|strong="G3778"\w* \w people|strong="G2992"\w*. \w They|strong="G2532"\w* won’\w t|strong="G3588"\w* \w even|strong="G2532"\w* \w listen|strong="G1522"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w* \w that|strong="G3754"\w* \w way|strong="G3779"\w*, \w says|strong="G3004"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*.”\x + \xo 14:21 \xt Isaiah 28:11-12\x* +\v 22 \w Therefore|strong="G5620"\w* \w other|strong="G1161"\w* \w languages|strong="G1100"\w* \w are|strong="G1510"\w* \w for|strong="G1519"\w* \w a|strong="G1519"\w* \w sign|strong="G4592"\w*, \w not|strong="G3756"\w* \w to|strong="G1519"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w believe|strong="G4100"\w*, \w but|strong="G1161"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* unbelieving; \w but|strong="G1161"\w* \w prophesying|strong="G4394"\w* \w is|strong="G1510"\w* \w for|strong="G1519"\w* \w a|strong="G1519"\w* \w sign|strong="G4592"\w*, \w not|strong="G3756"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* unbelieving, \w but|strong="G1161"\w* \w to|strong="G1519"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w believe|strong="G4100"\w*. +\v 23 \w If|strong="G1437"\w* \w therefore|strong="G3767"\w* \w the|strong="G2532"\w* \w whole|strong="G3650"\w* \w assembly|strong="G1577"\w* \w is|strong="G3588"\w* \w assembled|strong="G4905"\w* \w together|strong="G4905"\w* \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w speak|strong="G2980"\w* \w with|strong="G2532"\w* \w other|strong="G1161"\w* \w languages|strong="G1100"\w*, \w and|strong="G2532"\w* \w unlearned|strong="G2399"\w* \w or|strong="G2228"\w* unbelieving \w people|strong="G3956"\w* \w come|strong="G1525"\w* \w in|strong="G1909"\w*, won’\w t|strong="G3588"\w* \w they|strong="G2532"\w* \w say|strong="G3004"\w* \w that|strong="G3754"\w* \w you|strong="G1437"\w* \w are|strong="G3588"\w* crazy? +\v 24 \w But|strong="G1161"\w* \w if|strong="G1437"\w* \w all|strong="G3956"\w* \w prophesy|strong="G4395"\w*, \w and|strong="G1161"\w* \w someone|strong="G5100"\w* unbelieving \w or|strong="G2228"\w* \w unlearned|strong="G2399"\w* \w comes|strong="G1525"\w* \w in|strong="G1525"\w*, \w he|strong="G1161"\w* \w is|strong="G5100"\w* \w reproved|strong="G1651"\w* \w by|strong="G5259"\w* \w all|strong="G3956"\w*, \w and|strong="G1161"\w* \w he|strong="G1161"\w* \w is|strong="G5100"\w* judged \w by|strong="G5259"\w* \w all|strong="G3956"\w*. +\v 25 \w And|strong="G2532"\w* \w thus|strong="G3779"\w* \w the|strong="G1722"\w* \w secrets|strong="G2927"\w* \w of|strong="G2316"\w* \w his|strong="G1909"\w* \w heart|strong="G2588"\w* \w are|strong="G1510"\w* \w revealed|strong="G5318"\w*. \w So|strong="G3779"\w* \w he|strong="G2532"\w* \w will|strong="G2316"\w* \w fall|strong="G4098"\w* \w down|strong="G4098"\w* \w on|strong="G1909"\w* \w his|strong="G1909"\w* \w face|strong="G4383"\w* \w and|strong="G2532"\w* \w worship|strong="G4352"\w* \w God|strong="G2316"\w*, declaring \w that|strong="G3754"\w* \w God|strong="G2316"\w* \w is|strong="G1510"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w* \w indeed|strong="G2532"\w*. +\p +\v 26 \w What|strong="G5101"\w* \w is|strong="G1510"\w* \w it|strong="G5101"\w* \w then|strong="G3767"\w*, brothers? \w When|strong="G3752"\w* \w you|strong="G3752"\w* \w come|strong="G1096"\w* \w together|strong="G4905"\w*, \w each|strong="G1538"\w* \w one|strong="G1538"\w* \w of|strong="G3956"\w* \w you|strong="G3752"\w* \w has|strong="G2192"\w* \w a|strong="G2192"\w* \w psalm|strong="G5568"\w*, \w has|strong="G2192"\w* \w a|strong="G2192"\w* \w teaching|strong="G1322"\w*, \w has|strong="G2192"\w* \w a|strong="G2192"\w* revelation, \w has|strong="G2192"\w* another \w language|strong="G1100"\w*, or \w has|strong="G2192"\w* \w an|strong="G2192"\w* \w interpretation|strong="G2058"\w*. \w Let|strong="G1096"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w be|strong="G1096"\w* \w done|strong="G1096"\w* \w to|strong="G4314"\w* \w build|strong="G3619"\w* \w each|strong="G1538"\w* other \w up|strong="G3619"\w*. +\v 27 \w If|strong="G1535"\w* \w any|strong="G5100"\w* \w man|strong="G5100"\w* \w speaks|strong="G2980"\w* \w in|strong="G2596"\w* \w another|strong="G2596"\w* \w language|strong="G1100"\w*, \w let|strong="G2532"\w* \w there|strong="G2532"\w* \w be|strong="G2532"\w* \w two|strong="G1417"\w*, \w or|strong="G2228"\w* \w at|strong="G2596"\w* \w the|strong="G2532"\w* \w most|strong="G4183"\w* \w three|strong="G5140"\w*, \w and|strong="G2532"\w* \w in|strong="G2596"\w* \w turn|strong="G3313"\w*; \w and|strong="G2532"\w* \w let|strong="G2532"\w* \w one|strong="G1520"\w* \w interpret|strong="G1329"\w*. +\v 28 \w But|strong="G1161"\w* \w if|strong="G1437"\w* \w there|strong="G2532"\w* \w is|strong="G1510"\w* \w no|strong="G3361"\w* \w interpreter|strong="G1328"\w*, \w let|strong="G1161"\w* \w him|strong="G3588"\w* \w keep|strong="G3361"\w* \w silent|strong="G4601"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w*, \w and|strong="G2532"\w* \w let|strong="G1161"\w* \w him|strong="G3588"\w* \w speak|strong="G2980"\w* \w to|strong="G2532"\w* \w himself|strong="G1438"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w*. +\v 29 \w Let|strong="G1161"\w* \w two|strong="G1417"\w* \w or|strong="G2228"\w* \w three|strong="G5140"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w prophets|strong="G4396"\w* \w speak|strong="G2980"\w*, \w and|strong="G2532"\w* \w let|strong="G1161"\w* \w the|strong="G2532"\w* \w others|strong="G3588"\w* \w discern|strong="G1252"\w*. +\v 30 \w But|strong="G1161"\w* \w if|strong="G1437"\w* \w a|strong="G1437"\w* revelation \w is|strong="G3588"\w* \w made|strong="G1161"\w* \w to|strong="G1161"\w* \w another|strong="G3588"\w* \w sitting|strong="G2521"\w* \w by|strong="G2521"\w*, \w let|strong="G1161"\w* \w the|strong="G1161"\w* \w first|strong="G4413"\w* \w keep|strong="G4601"\w* \w silent|strong="G4601"\w*. +\v 31 \w For|strong="G1063"\w* \w you|strong="G3956"\w* \w all|strong="G3956"\w* \w can|strong="G1410"\w* \w prophesy|strong="G4395"\w* \w one|strong="G1520"\w* \w by|strong="G2596"\w* \w one|strong="G1520"\w*, \w that|strong="G2443"\w* \w all|strong="G3956"\w* \w may|strong="G2532"\w* \w learn|strong="G3129"\w* \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* \w exhorted|strong="G3870"\w*. +\v 32 \w The|strong="G2532"\w* \w spirits|strong="G4151"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w prophets|strong="G4396"\w* \w are|strong="G2532"\w* \w subject|strong="G5293"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w prophets|strong="G4396"\w*, +\v 33 \w for|strong="G1063"\w* \w God|strong="G2316"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w a|strong="G5613"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* confusion \w but|strong="G1063"\w* \w of|strong="G2316"\w* \w peace|strong="G1515"\w*, \w as|strong="G5613"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w assemblies|strong="G1577"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* saints. +\v 34 \w Let|strong="G2010"\w* \w the|strong="G1722"\w* \w wives|strong="G1135"\w* \w be|strong="G2532"\w* \w quiet|strong="G4601"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w assemblies|strong="G1577"\w*, \w for|strong="G1063"\w* \w it|strong="G2532"\w* \w has|strong="G2532"\w* \w not|strong="G3756"\w* \w been|strong="G2532"\w* \w permitted|strong="G2010"\w* \w for|strong="G1063"\w* \w them|strong="G3588"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w talking|strong="G2980"\w* \w except|strong="G3756"\w* \w in|strong="G1722"\w* submission, \w as|strong="G2531"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w also|strong="G2532"\w* \w says|strong="G3004"\w*,\x + \xo 14:34 \xt Deuteronomy 27:9\x* +\v 35 \w if|strong="G1487"\w* \w they|strong="G1161"\w* \w desire|strong="G2309"\w* \w to|strong="G2309"\w* \w learn|strong="G3129"\w* \w anything|strong="G5100"\w*. “\w Let|strong="G1161"\w* \w them|strong="G3588"\w* \w ask|strong="G1905"\w* \w their|strong="G1722"\w* \w own|strong="G2398"\w* husbands \w at|strong="G1722"\w* \w home|strong="G3624"\w*, \w for|strong="G1063"\w* \w it|strong="G1161"\w* \w is|strong="G1510"\w* shameful \w for|strong="G1063"\w* \w a|strong="G1722"\w* \w wife|strong="G1135"\w* \w to|strong="G2309"\w* \w be|strong="G1510"\w* \w talking|strong="G2980"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w*.” +\v 36 \w What|strong="G3588"\w*!? \w Was|strong="G3588"\w* \w it|strong="G1519"\w* \w from|strong="G1831"\w* \w you|strong="G5210"\w* \w that|strong="G3588"\w* \w the|strong="G1519"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w*? \w Or|strong="G2228"\w* \w did|strong="G2316"\w* \w it|strong="G1519"\w* \w come|strong="G1831"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w alone|strong="G3441"\w*? +\p +\v 37 \w If|strong="G1487"\w* \w any|strong="G5100"\w* \w man|strong="G5100"\w* \w thinks|strong="G1380"\w* \w himself|strong="G1380"\w* \w to|strong="G5100"\w* \w be|strong="G1510"\w* \w a|strong="G1510"\w* \w prophet|strong="G4396"\w* \w or|strong="G2228"\w* \w spiritual|strong="G4152"\w*, \w let|strong="G1510"\w* \w him|strong="G3739"\w* \w recognize|strong="G1921"\w* \w the|strong="G3754"\w* \w things|strong="G3739"\w* \w which|strong="G3739"\w* \w I|strong="G3739"\w* \w write|strong="G1125"\w* \w to|strong="G5100"\w* \w you|strong="G5210"\w*, \w that|strong="G3754"\w* \w they|strong="G3739"\w* \w are|strong="G1510"\w* \w the|strong="G3754"\w* commandment \w of|strong="G2962"\w* \w the|strong="G3754"\w* \w Lord|strong="G2962"\w*. +\v 38 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w anyone|strong="G5100"\w* \w is|strong="G5100"\w* ignorant, \w let|strong="G1161"\w* him \w be|strong="G5100"\w* ignorant. +\p +\v 39 \w Therefore|strong="G5620"\w*, brothers, \w desire|strong="G2206"\w* \w earnestly|strong="G2206"\w* \w to|strong="G2532"\w* \w prophesy|strong="G4395"\w*, \w and|strong="G2532"\w* don’\w t|strong="G3588"\w* \w forbid|strong="G2967"\w* \w speaking|strong="G2980"\w* \w with|strong="G2532"\w* \w other|strong="G3361"\w* \w languages|strong="G1100"\w*. +\v 40 \w Let|strong="G1096"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w be|strong="G1096"\w* \w done|strong="G1096"\w* \w decently|strong="G2156"\w* \w and|strong="G2532"\w* \w in|strong="G2596"\w* \w order|strong="G5010"\w*. +\c 15 +\p +\v 1 \w Now|strong="G1161"\w* \w I|strong="G3739"\w* \w declare|strong="G1107"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*, brothers, \w the|strong="G1722"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w* \w which|strong="G3739"\w* \w I|strong="G3739"\w* \w preached|strong="G2097"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*, \w which|strong="G3739"\w* \w also|strong="G2532"\w* \w you|strong="G5210"\w* \w received|strong="G3880"\w*, \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w you|strong="G5210"\w* \w also|strong="G2532"\w* \w stand|strong="G2476"\w*, +\v 2 \w by|strong="G1223"\w* \w which|strong="G3739"\w* \w also|strong="G2532"\w* \w you|strong="G5210"\w* \w are|strong="G3739"\w* \w saved|strong="G4982"\w*, \w if|strong="G1487"\w* \w you|strong="G5210"\w* \w hold|strong="G2722"\w* \w firmly|strong="G2722"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w which|strong="G3739"\w* \w I|strong="G3739"\w* \w preached|strong="G2097"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*—\w unless|strong="G1487"\w* \w you|strong="G5210"\w* \w believed|strong="G4100"\w* \w in|strong="G2532"\w* \w vain|strong="G1500"\w*. +\p +\v 3 \w For|strong="G1063"\w* \w I|strong="G1473"\w* \w delivered|strong="G3860"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w first|strong="G4413"\w* \w of|strong="G2532"\w* \w all|strong="G2532"\w* \w that|strong="G3754"\w* \w which|strong="G3739"\w* \w I|strong="G1473"\w* \w also|strong="G2532"\w* \w received|strong="G3880"\w*: \w that|strong="G3754"\w* \w Christ|strong="G5547"\w* \w died|strong="G3588"\w* \w for|strong="G1063"\w* \w our|strong="G2532"\w* sins \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w Scriptures|strong="G1124"\w*, +\v 4 \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w buried|strong="G2290"\w*, \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w raised|strong="G1453"\w* \w on|strong="G2596"\w* \w the|strong="G2532"\w* \w third|strong="G5154"\w* \w day|strong="G2250"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Scriptures|strong="G1124"\w*, +\v 5 \w and|strong="G2532"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w appeared|strong="G3708"\w* \w to|strong="G2532"\w* \w Cephas|strong="G2786"\w*, \w then|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w twelve|strong="G1427"\w*. +\v 6 \w Then|strong="G1161"\w* \w he|strong="G1161"\w* \w appeared|strong="G3708"\w* \w to|strong="G2193"\w* \w over|strong="G1883"\w* \w five|strong="G4001"\w* \w hundred|strong="G4001"\w* brothers \w at|strong="G1537"\w* \w once|strong="G2178"\w*, \w most|strong="G4183"\w* \w of|strong="G1537"\w* \w whom|strong="G3739"\w* \w remain|strong="G3306"\w* \w until|strong="G2193"\w* \w now|strong="G1161"\w*, \w but|strong="G1161"\w* \w some|strong="G5100"\w* \w have|strong="G5100"\w* \w also|strong="G1161"\w* \w fallen|strong="G2837"\w* \w asleep|strong="G2837"\w*. +\v 7 \w Then|strong="G1899"\w* \w he|strong="G3588"\w* \w appeared|strong="G3708"\w* \w to|strong="G3956"\w* \w James|strong="G2385"\w*, \w then|strong="G1899"\w* \w to|strong="G3956"\w* \w all|strong="G3956"\w* \w the|strong="G3956"\w* apostles, +\v 8 \w and|strong="G1161"\w* \w last|strong="G2078"\w* \w of|strong="G3956"\w* \w all|strong="G3956"\w*, \w as|strong="G1161"\w* \w to|strong="G1161"\w* \w the|strong="G3956"\w* child \w born|strong="G1626"\w* \w at|strong="G1161"\w* \w the|strong="G3956"\w* wrong \w time|strong="G1626"\w*, \w he|strong="G1161"\w* \w appeared|strong="G3708"\w* \w to|strong="G1161"\w* \w me|strong="G2504"\w* \w also|strong="G2504"\w*. +\v 9 \w For|strong="G1063"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w the|strong="G3588"\w* \w least|strong="G1646"\w* \w of|strong="G2316"\w* \w the|strong="G3588"\w* apostles, \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w worthy|strong="G2425"\w* \w to|strong="G3756"\w* \w be|strong="G1510"\w* \w called|strong="G2564"\w* \w an|strong="G1510"\w* apostle, \w because|strong="G1063"\w* \w I|strong="G1473"\w* \w persecuted|strong="G1377"\w* \w the|strong="G3588"\w* \w assembly|strong="G1577"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\v 10 \w But|strong="G1161"\w* \w by|strong="G2532"\w* \w the|strong="G2532"\w* \w grace|strong="G5485"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w what|strong="G3739"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w*. \w His|strong="G3956"\w* \w grace|strong="G5485"\w* \w which|strong="G3739"\w* \w was|strong="G1510"\w* given \w to|strong="G1519"\w* \w me|strong="G1473"\w* \w was|strong="G1510"\w* \w not|strong="G3756"\w* \w futile|strong="G2756"\w*, \w but|strong="G1161"\w* \w I|strong="G1473"\w* \w worked|strong="G2872"\w* \w more|strong="G2532"\w* \w than|strong="G2532"\w* \w all|strong="G3956"\w* \w of|strong="G2316"\w* \w them|strong="G3588"\w*; \w yet|strong="G2532"\w* \w not|strong="G3756"\w* \w I|strong="G1473"\w*, \w but|strong="G1161"\w* \w the|strong="G2532"\w* \w grace|strong="G5485"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w which|strong="G3739"\w* \w was|strong="G1510"\w* \w with|strong="G4862"\w* \w me|strong="G1473"\w*. +\v 11 \w Whether|strong="G1535"\w* \w then|strong="G3767"\w* \w it|strong="G2532"\w* \w is|strong="G2532"\w* \w I|strong="G1473"\w* \w or|strong="G1535"\w* \w they|strong="G2532"\w*, \w so|strong="G3779"\w* \w we|strong="G2532"\w* \w preach|strong="G2784"\w*, \w and|strong="G2532"\w* \w so|strong="G3779"\w* \w you|strong="G3779"\w* \w believed|strong="G4100"\w*. +\p +\v 12 \w Now|strong="G1161"\w* \w if|strong="G1487"\w* \w Christ|strong="G5547"\w* \w is|strong="G1510"\w* \w preached|strong="G2784"\w*, \w that|strong="G3754"\w* \w he|strong="G1161"\w* \w has|strong="G5547"\w* \w been|strong="G1510"\w* \w raised|strong="G1453"\w* \w from|strong="G1537"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w*, \w how|strong="G4459"\w* \w do|strong="G3004"\w* \w some|strong="G5100"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w* \w say|strong="G3004"\w* \w that|strong="G3754"\w* \w there|strong="G1161"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* resurrection \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w*? +\v 13 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w there|strong="G1161"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* resurrection \w of|strong="G1510"\w* \w the|strong="G1161"\w* \w dead|strong="G3498"\w*, \w neither|strong="G3761"\w* \w has|strong="G5547"\w* \w Christ|strong="G5547"\w* \w been|strong="G1510"\w* \w raised|strong="G1453"\w*. +\v 14 \w If|strong="G1487"\w* \w Christ|strong="G5547"\w* \w has|strong="G4102"\w* \w not|strong="G3756"\w* \w been|strong="G2532"\w* \w raised|strong="G1453"\w*, \w then|strong="G2532"\w* \w our|strong="G2532"\w* \w preaching|strong="G2782"\w* \w is|strong="G3588"\w* \w in|strong="G2532"\w* \w vain|strong="G2756"\w* \w and|strong="G2532"\w* \w your|strong="G2532"\w* \w faith|strong="G4102"\w* \w also|strong="G2532"\w* \w is|strong="G3588"\w* \w in|strong="G2532"\w* \w vain|strong="G2756"\w*. +\v 15 \w Yes|strong="G1161"\w*, \w we|strong="G3739"\w* \w are|strong="G3588"\w* \w also|strong="G2532"\w* \w found|strong="G2147"\w* \w false|strong="G2147"\w* \w witnesses|strong="G5575"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w because|strong="G3754"\w* \w we|strong="G3739"\w* \w testified|strong="G3140"\w* \w about|strong="G2596"\w* \w God|strong="G2316"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w raised|strong="G1453"\w* \w up|strong="G1453"\w* \w Christ|strong="G5547"\w*, \w whom|strong="G3739"\w* \w he|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w raise|strong="G1453"\w* \w up|strong="G1453"\w* \w if|strong="G1512"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w true|strong="G3588"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w* \w are|strong="G3588"\w* \w not|strong="G3756"\w* \w raised|strong="G1453"\w*. +\v 16 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w the|strong="G1063"\w* \w dead|strong="G3498"\w* aren’t \w raised|strong="G1453"\w*, \w neither|strong="G3761"\w* \w has|strong="G5547"\w* \w Christ|strong="G5547"\w* \w been|strong="G3756"\w* \w raised|strong="G1453"\w*. +\v 17 \w If|strong="G1487"\w* \w Christ|strong="G5547"\w* \w has|strong="G4102"\w* \w not|strong="G3756"\w* \w been|strong="G1510"\w* \w raised|strong="G1453"\w*, \w your|strong="G1487"\w* \w faith|strong="G4102"\w* \w is|strong="G1510"\w* \w vain|strong="G3152"\w*; \w you|strong="G5210"\w* \w are|strong="G1510"\w* \w still|strong="G2089"\w* \w in|strong="G1722"\w* \w your|strong="G1487"\w* sins. +\v 18 \w Then|strong="G2532"\w* \w they|strong="G2532"\w* \w also|strong="G2532"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w fallen|strong="G2837"\w* \w asleep|strong="G2837"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w have|strong="G2532"\w* perished. +\v 19 \w If|strong="G1487"\w* \w we|strong="G1487"\w* \w have|strong="G1510"\w* \w only|strong="G3440"\w* \w hoped|strong="G1679"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* \w life|strong="G2222"\w*, \w we|strong="G1487"\w* \w are|strong="G1510"\w* \w of|strong="G1722"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w* \w most|strong="G1652"\w* pitiable. +\p +\v 20 \w But|strong="G1161"\w* \w now|strong="G1161"\w* \w Christ|strong="G5547"\w* \w has|strong="G5547"\w* \w been|strong="G5547"\w* \w raised|strong="G1453"\w* \w from|strong="G1537"\w* \w the|strong="G1537"\w* \w dead|strong="G3498"\w*. \w He|strong="G1161"\w* \w became|strong="G3588"\w* \w the|strong="G1537"\w* \w first|strong="G3588"\w* fruit \w of|strong="G1537"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w asleep|strong="G2837"\w*. +\v 21 \w For|strong="G1063"\w* \w since|strong="G1894"\w* \w death|strong="G2288"\w* \w came|strong="G2532"\w* \w by|strong="G1223"\w* \w man|strong="G3498"\w*, \w the|strong="G2532"\w* resurrection \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w* \w also|strong="G2532"\w* \w came|strong="G2532"\w* \w by|strong="G1223"\w* \w man|strong="G3498"\w*. +\v 22 \w For|strong="G1063"\w* \w as|strong="G5618"\w* \w in|strong="G1722"\w* Adam \w all|strong="G3956"\w* die, \w so|strong="G3779"\w* \w also|strong="G2532"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w all|strong="G3956"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w made|strong="G2227"\w* \w alive|strong="G2227"\w*. +\v 23 \w But|strong="G1161"\w* \w each|strong="G1538"\w* \w in|strong="G1722"\w* \w his|strong="G1722"\w* \w own|strong="G2398"\w* \w order|strong="G5001"\w*: \w Christ|strong="G5547"\w* \w the|strong="G1722"\w* \w first|strong="G3588"\w* fruits, \w then|strong="G1161"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w Christ|strong="G5547"\w*’s \w at|strong="G1722"\w* \w his|strong="G1722"\w* \w coming|strong="G3952"\w*. +\v 24 \w Then|strong="G2532"\w* \w the|strong="G2532"\w* \w end|strong="G5056"\w* \w comes|strong="G2532"\w*, \w when|strong="G3752"\w* \w he|strong="G2532"\w* \w will|strong="G2316"\w* \w deliver|strong="G3860"\w* \w up|strong="G3860"\w* \w the|strong="G2532"\w* Kingdom \w to|strong="G2532"\w* \w God|strong="G2316"\w* \w the|strong="G2532"\w* \w Father|strong="G3962"\w*, \w when|strong="G3752"\w* \w he|strong="G2532"\w* \w will|strong="G2316"\w* \w have|strong="G2532"\w* \w abolished|strong="G2673"\w* \w all|strong="G3956"\w* rule \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w authority|strong="G1849"\w* \w and|strong="G2532"\w* \w power|strong="G1411"\w*. +\v 25 \w For|strong="G1063"\w* \w he|strong="G3739"\w* \w must|strong="G1163"\w* reign until \w he|strong="G3739"\w* \w has|strong="G3739"\w* \w put|strong="G5087"\w* \w all|strong="G3956"\w* \w his|strong="G3956"\w* \w enemies|strong="G2190"\w* \w under|strong="G5259"\w* \w his|strong="G3956"\w* \w feet|strong="G4228"\w*. +\v 26 \w The|strong="G3588"\w* \w last|strong="G2078"\w* \w enemy|strong="G2190"\w* \w that|strong="G3588"\w* \w will|strong="G2190"\w* \w be|strong="G3588"\w* \w abolished|strong="G2673"\w* \w is|strong="G3588"\w* \w death|strong="G2288"\w*. +\v 27 \w For|strong="G1063"\w*, “\w He|strong="G1161"\w* \w put|strong="G5293"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w in|strong="G3956"\w* \w subjection|strong="G5293"\w* \w under|strong="G5259"\w* \w his|strong="G3956"\w* \w feet|strong="G4228"\w*.”\x + \xo 15:27 \xt Psalms 8:6\x* \w But|strong="G1161"\w* \w when|strong="G3752"\w* \w he|strong="G1161"\w* \w says|strong="G3004"\w*, “\w All|strong="G3956"\w* \w things|strong="G3956"\w* \w are|strong="G3588"\w* \w put|strong="G5293"\w* \w in|strong="G3956"\w* \w subjection|strong="G5293"\w*”, \w it|strong="G3754"\w* \w is|strong="G3588"\w* \w evident|strong="G1212"\w* \w that|strong="G3754"\w* \w he|strong="G1161"\w* \w is|strong="G3588"\w* \w excepted|strong="G1622"\w* \w who|strong="G3588"\w* \w subjected|strong="G5293"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w to|strong="G3004"\w* \w him|strong="G3588"\w*. +\v 28 \w When|strong="G3752"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w have|strong="G2532"\w* \w been|strong="G1510"\w* \w subjected|strong="G5293"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w*, \w then|strong="G2532"\w* \w the|strong="G1722"\w* \w Son|strong="G5207"\w* \w will|strong="G2316"\w* \w also|strong="G2532"\w* himself \w be|strong="G1510"\w* \w subjected|strong="G5293"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w subjected|strong="G5293"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w*, \w that|strong="G2443"\w* \w God|strong="G2316"\w* \w may|strong="G2532"\w* \w be|strong="G1510"\w* \w all|strong="G3956"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w*. +\p +\v 29 \w Or|strong="G2532"\w* \w else|strong="G1893"\w* \w what|strong="G5101"\w* \w will|strong="G5101"\w* \w they|strong="G2532"\w* \w do|strong="G4160"\w* \w who|strong="G5101"\w* \w are|strong="G3588"\w* baptized \w for|strong="G5228"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*? \w If|strong="G1487"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w* aren’\w t|strong="G3588"\w* \w raised|strong="G1453"\w* \w at|strong="G3756"\w* \w all|strong="G2532"\w*, \w why|strong="G5101"\w* \w then|strong="G2532"\w* \w are|strong="G3588"\w* \w they|strong="G2532"\w* baptized \w for|strong="G5228"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*? +\v 30 \w Why|strong="G5101"\w* \w do|strong="G5101"\w* \w we|strong="G2249"\w* \w also|strong="G2532"\w* \w stand|strong="G2793"\w* \w in|strong="G2532"\w* \w jeopardy|strong="G2793"\w* \w every|strong="G3956"\w* \w hour|strong="G5610"\w*? +\v 31 \w I|strong="G1473"\w* \w affirm|strong="G3513"\w*, \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w boasting|strong="G2746"\w* \w in|strong="G1722"\w* \w you|strong="G3739"\w* \w which|strong="G3739"\w* \w I|strong="G1473"\w* \w have|strong="G2192"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w*, \w I|strong="G1473"\w* die \w daily|strong="G2250"\w*. +\v 32 \w If|strong="G1487"\w* \w I|strong="G1473"\w* \w fought|strong="G2341"\w* \w with|strong="G1722"\w* animals \w at|strong="G1722"\w* \w Ephesus|strong="G2181"\w* \w for|strong="G1063"\w* human purposes, \w what|strong="G5101"\w* \w does|strong="G2068"\w* \w it|strong="G2532"\w* \w profit|strong="G3786"\w* \w me|strong="G1473"\w*? \w If|strong="G1487"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w* \w are|strong="G3588"\w* \w not|strong="G3756"\w* \w raised|strong="G1453"\w*, \w then|strong="G2532"\w* “\w let|strong="G1063"\w*’s \w eat|strong="G2068"\w* \w and|strong="G2532"\w* \w drink|strong="G4095"\w*, \w for|strong="G1063"\w* tomorrow \w we|strong="G1063"\w* die.”\x + \xo 15:32 \xt Isaiah 22:13\x* +\v 33 Don’t \w be|strong="G3361"\w* \w deceived|strong="G4105"\w*! “\w Evil|strong="G2556"\w* companionships \w corrupt|strong="G5351"\w* \w good|strong="G5543"\w* \w morals|strong="G2239"\w*.” +\v 34 Wake \w up|strong="G3361"\w* \w righteously|strong="G1346"\w* \w and|strong="G2532"\w* don’t sin, \w for|strong="G1063"\w* \w some|strong="G5100"\w* \w have|strong="G2192"\w* \w no|strong="G3361"\w* knowledge \w of|strong="G2316"\w* \w God|strong="G2316"\w*. \w I|strong="G2532"\w* \w say|strong="G2980"\w* \w this|strong="G2532"\w* \w to|strong="G4314"\w* \w your|strong="G2192"\w* \w shame|strong="G1791"\w*. +\p +\v 35 \w But|strong="G1161"\w* \w someone|strong="G5100"\w* \w will|strong="G5100"\w* \w say|strong="G3004"\w*, “\w How|strong="G4459"\w* \w are|strong="G3588"\w* \w the|strong="G1161"\w* \w dead|strong="G3498"\w* \w raised|strong="G1453"\w*?” \w and|strong="G1161"\w*, “\w With|strong="G2064"\w* \w what|strong="G4169"\w* \w kind|strong="G4169"\w* \w of|strong="G5100"\w* \w body|strong="G4983"\w* \w do|strong="G3004"\w* \w they|strong="G1161"\w* \w come|strong="G2064"\w*?” +\v 36 \w You|strong="G4771"\w* foolish \w one|strong="G3739"\w*, \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w you|strong="G4771"\w* \w yourself|strong="G4771"\w* \w sow|strong="G4687"\w* \w is|strong="G3739"\w* \w not|strong="G3756"\w* \w made|strong="G3756"\w* \w alive|strong="G2227"\w* \w unless|strong="G1437"\w* \w it|strong="G1437"\w* dies. +\v 37 \w That|strong="G3739"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w sow|strong="G4687"\w*, \w you|strong="G3739"\w* don’\w t|strong="G3588"\w* \w sow|strong="G4687"\w* \w the|strong="G2532"\w* \w body|strong="G4983"\w* \w that|strong="G3739"\w* \w will|strong="G2532"\w* \w be|strong="G1096"\w*, \w but|strong="G2532"\w* \w a|strong="G1096"\w* \w bare|strong="G1131"\w* \w grain|strong="G4621"\w*, maybe \w of|strong="G2532"\w* \w wheat|strong="G4621"\w*, \w or|strong="G2228"\w* \w of|strong="G2532"\w* \w some|strong="G5100"\w* \w other|strong="G3062"\w* \w kind|strong="G5100"\w*. +\v 38 \w But|strong="G1161"\w* \w God|strong="G2316"\w* \w gives|strong="G1325"\w* \w it|strong="G2532"\w* \w a|strong="G2532"\w* \w body|strong="G4983"\w* \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w it|strong="G2532"\w* pleased \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w each|strong="G1538"\w* \w seed|strong="G4690"\w* \w a|strong="G2532"\w* \w body|strong="G4983"\w* \w of|strong="G2316"\w* \w its|strong="G1325"\w* \w own|strong="G2398"\w*. +\v 39 \w All|strong="G3956"\w* \w flesh|strong="G4561"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w the|strong="G3956"\w* same \w flesh|strong="G4561"\w*, \w but|strong="G1161"\w* \w there|strong="G1161"\w* \w is|strong="G3588"\w* \w one|strong="G3956"\w* \w flesh|strong="G4561"\w* \w of|strong="G3956"\w* \w men|strong="G3956"\w*, \w another|strong="G3588"\w* \w flesh|strong="G4561"\w* \w of|strong="G3956"\w* animals, \w another|strong="G3588"\w* \w of|strong="G3956"\w* \w fish|strong="G2486"\w*, \w and|strong="G1161"\w* \w another|strong="G3588"\w* \w of|strong="G3956"\w* \w birds|strong="G4421"\w*. +\v 40 \w There|strong="G2532"\w* \w are|strong="G3588"\w* \w also|strong="G2532"\w* \w celestial|strong="G2032"\w* \w bodies|strong="G4983"\w* \w and|strong="G2532"\w* \w terrestrial|strong="G1919"\w* \w bodies|strong="G4983"\w*; \w but|strong="G1161"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w celestial|strong="G2032"\w* differs \w from|strong="G2532"\w* \w that|strong="G3588"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w terrestrial|strong="G1919"\w*. +\v 41 \w There|strong="G2532"\w* \w is|strong="G2532"\w* \w one|strong="G1722"\w* \w glory|strong="G1391"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w sun|strong="G2246"\w*, \w another|strong="G1722"\w* \w glory|strong="G1391"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w moon|strong="G4582"\w*, \w and|strong="G2532"\w* \w another|strong="G1722"\w* \w glory|strong="G1391"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* stars; \w for|strong="G1063"\w* \w one|strong="G1722"\w* star \w differs|strong="G1308"\w* \w from|strong="G2532"\w* \w another|strong="G1722"\w* star \w in|strong="G1722"\w* \w glory|strong="G1391"\w*. +\p +\v 42 \w So|strong="G3779"\w* \w also|strong="G2532"\w* \w is|strong="G3588"\w* \w the|strong="G1722"\w* resurrection \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w*. \w The|strong="G1722"\w* body \w is|strong="G3588"\w* \w sown|strong="G4687"\w* \w perishable|strong="G5356"\w*; \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w raised|strong="G1453"\w* imperishable. +\v 43 \w It|strong="G1453"\w* \w is|strong="G1453"\w* \w sown|strong="G4687"\w* \w in|strong="G1722"\w* dishonor; \w it|strong="G1453"\w* \w is|strong="G1453"\w* \w raised|strong="G1453"\w* \w in|strong="G1722"\w* \w glory|strong="G1391"\w*. \w It|strong="G1453"\w* \w is|strong="G1453"\w* \w sown|strong="G4687"\w* \w in|strong="G1722"\w* weakness; \w it|strong="G1453"\w* \w is|strong="G1453"\w* \w raised|strong="G1453"\w* \w in|strong="G1722"\w* \w power|strong="G1411"\w*. +\v 44 \w It|strong="G2532"\w* \w is|strong="G1510"\w* \w sown|strong="G4687"\w* \w a|strong="G2532"\w* \w natural|strong="G5591"\w* \w body|strong="G4983"\w*; \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w raised|strong="G1453"\w* \w a|strong="G2532"\w* \w spiritual|strong="G4152"\w* \w body|strong="G4983"\w*. \w There|strong="G2532"\w* \w is|strong="G1510"\w* \w a|strong="G2532"\w* \w natural|strong="G5591"\w* \w body|strong="G4983"\w* \w and|strong="G2532"\w* \w there|strong="G2532"\w* \w is|strong="G1510"\w* \w also|strong="G2532"\w* \w a|strong="G2532"\w* \w spiritual|strong="G4152"\w* \w body|strong="G4983"\w*. +\p +\v 45 \w So|strong="G3779"\w* \w also|strong="G2532"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, “\w The|strong="G2532"\w* \w first|strong="G4413"\w* \w man|strong="G4413"\w* Adam \w became|strong="G1096"\w* \w a|strong="G1096"\w* \w living|strong="G2198"\w* \w soul|strong="G5590"\w*.”\x + \xo 15:45 \xt Genesis 2:7\x* \w The|strong="G2532"\w* \w last|strong="G2078"\w* Adam \w became|strong="G1096"\w* \w a|strong="G1096"\w* \w life-giving|strong="G2227"\w* \w spirit|strong="G4151"\w*. +\v 46 However, \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w spiritual|strong="G4152"\w* isn’\w t|strong="G3588"\w* \w first|strong="G4413"\w*, \w but|strong="G3588"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w natural|strong="G5591"\w*, \w then|strong="G1899"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w spiritual|strong="G4152"\w*. +\v 47 \w The|strong="G1537"\w* \w first|strong="G4413"\w* \w man|strong="G4413"\w* \w is|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w earth|strong="G1093"\w*, \w made|strong="G4413"\w* \w of|strong="G1537"\w* dust. \w The|strong="G1537"\w* \w second|strong="G1208"\w* \w man|strong="G4413"\w* \w is|strong="G3588"\w* \w the|strong="G1537"\w* \w Lord|strong="G3588"\w* \w from|strong="G1537"\w* \w heaven|strong="G3772"\w*. +\v 48 \w As|strong="G2532"\w* \w is|strong="G3588"\w* \w the|strong="G2532"\w* \w one|strong="G5108"\w* made \w of|strong="G2532"\w* dust, \w such|strong="G5108"\w* \w are|strong="G3588"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w also|strong="G2532"\w* made \w of|strong="G2532"\w* dust; \w and|strong="G2532"\w* \w as|strong="G2532"\w* \w is|strong="G3588"\w* \w the|strong="G2532"\w* \w heavenly|strong="G2032"\w*, \w such|strong="G5108"\w* \w are|strong="G3588"\w* \w they|strong="G2532"\w* \w also|strong="G2532"\w* \w that|strong="G3588"\w* \w are|strong="G3588"\w* \w heavenly|strong="G2032"\w*. +\v 49 \w As|strong="G2531"\w* \w we|strong="G2532"\w* \w have|strong="G2532"\w* \w borne|strong="G5409"\w* \w the|strong="G2532"\w* \w image|strong="G1504"\w* \w of|strong="G2532"\w* \w those|strong="G3588"\w* made \w of|strong="G2532"\w* dust, \w let|strong="G2532"\w*’s\f + \fr 15:49 \ft NU, TR read “we will” instead of “let’s”\f* \w also|strong="G2532"\w* \w bear|strong="G5409"\w* \w the|strong="G2532"\w* \w image|strong="G1504"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w heavenly|strong="G2032"\w*. +\v 50 \w Now|strong="G1161"\w* \w I|strong="G2532"\w* \w say|strong="G5346"\w* \w this|strong="G3778"\w*, brothers,\f + \fr 15:50 \ft The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”\f* \w that|strong="G3754"\w* \w flesh|strong="G4561"\w* \w and|strong="G2532"\w* blood \w can|strong="G1410"\w*’\w t|strong="G3588"\w* \w inherit|strong="G2816"\w* \w God|strong="G2316"\w*’s Kingdom; \w neither|strong="G3761"\w* \w does|strong="G3761"\w* \w the|strong="G2532"\w* \w perishable|strong="G5356"\w* \w inherit|strong="G2816"\w* imperishable. +\p +\v 51 \w Behold|strong="G2400"\w*,\f + \fr 15:51 \ft “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w I|strong="G1161"\w* \w tell|strong="G3004"\w* \w you|strong="G5210"\w* \w a|strong="G3708"\w* \w mystery|strong="G3466"\w*. \w We|strong="G1161"\w* \w will|strong="G3956"\w* \w not|strong="G3756"\w* \w all|strong="G3956"\w* \w sleep|strong="G2837"\w*, \w but|strong="G1161"\w* \w we|strong="G1161"\w* \w will|strong="G3956"\w* \w all|strong="G3956"\w* \w be|strong="G3756"\w* changed, +\v 52 \w in|strong="G1722"\w* \w a|strong="G2532"\w* moment, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w twinkling|strong="G4493"\w* \w of|strong="G2532"\w* \w an|strong="G2532"\w* \w eye|strong="G3788"\w*, \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w last|strong="G2078"\w* \w trumpet|strong="G4536"\w*. \w For|strong="G1063"\w* \w the|strong="G1722"\w* \w trumpet|strong="G4536"\w* \w will|strong="G2532"\w* \w sound|strong="G4537"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w raised|strong="G1453"\w* incorruptible, \w and|strong="G2532"\w* \w we|strong="G2249"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* changed. +\v 53 \w For|strong="G1063"\w* \w this|strong="G3778"\w* \w perishable|strong="G5349"\w* body \w must|strong="G1163"\w* become imperishable, \w and|strong="G2532"\w* \w this|strong="G3778"\w* \w mortal|strong="G2349"\w* \w must|strong="G1163"\w* \w put|strong="G1746"\w* \w on|strong="G1746"\w* immortality. +\v 54 \w But|strong="G1161"\w* \w when|strong="G3752"\w* \w this|strong="G3778"\w* \w perishable|strong="G5349"\w* \w body|strong="G1519"\w* \w will|strong="G2532"\w* \w have|strong="G2532"\w* \w become|strong="G1096"\w* imperishable, \w and|strong="G2532"\w* \w this|strong="G3778"\w* \w mortal|strong="G2349"\w* \w will|strong="G2532"\w* \w have|strong="G2532"\w* \w put|strong="G1746"\w* \w on|strong="G1519"\w* immortality, \w then|strong="G2532"\w* \w what|strong="G3588"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w* \w will|strong="G2532"\w* \w happen|strong="G1096"\w*: “\w Death|strong="G2288"\w* \w is|strong="G3588"\w* \w swallowed|strong="G2666"\w* \w up|strong="G1519"\w* \w in|strong="G1519"\w* \w victory|strong="G3534"\w*.”\x + \xo 15:54 \xt Isaiah 25:8\x* +\q1 +\v 55 “\w Death|strong="G2288"\w*, \w where|strong="G4226"\w* \w is|strong="G3588"\w* \w your|strong="G3588"\w* \w sting|strong="G2759"\w*? +\q2 Hades,\f + \fr 15:55 \ft or, Hell\f* \w where|strong="G4226"\w* \w is|strong="G3588"\w* \w your|strong="G3588"\w* \w victory|strong="G3534"\w*?”\x + \xo 15:55 \xt See Hosea 13:14\x* +\p +\v 56 \w The|strong="G1161"\w* \w sting|strong="G2759"\w* \w of|strong="G3551"\w* \w death|strong="G2288"\w* \w is|strong="G3588"\w* sin, \w and|strong="G1161"\w* \w the|strong="G1161"\w* \w power|strong="G1411"\w* \w of|strong="G3551"\w* sin \w is|strong="G3588"\w* \w the|strong="G1161"\w* \w law|strong="G3551"\w*. +\v 57 \w But|strong="G1161"\w* \w thanks|strong="G5485"\w* \w be|strong="G2316"\w* \w to|strong="G1325"\w* \w God|strong="G2316"\w*, \w who|strong="G3588"\w* \w gives|strong="G1325"\w* \w us|strong="G1325"\w* \w the|strong="G1161"\w* \w victory|strong="G3534"\w* \w through|strong="G1223"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\v 58 \w Therefore|strong="G5620"\w*, \w my|strong="G1722"\w* beloved brothers, \w be|strong="G1096"\w* \w steadfast|strong="G1476"\w*, immovable, \w always|strong="G3842"\w* \w abounding|strong="G4052"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*’\w s|strong="G2962"\w* \w work|strong="G2041"\w*, \w because|strong="G3754"\w* \w you|strong="G5210"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w your|strong="G2962"\w* \w labor|strong="G2873"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w in|strong="G1722"\w* \w vain|strong="G2756"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\c 16 +\p +\v 1 \w Now|strong="G1161"\w* \w concerning|strong="G4012"\w* \w the|strong="G2532"\w* \w collection|strong="G3048"\w* \w for|strong="G1519"\w* \w the|strong="G2532"\w* saints: \w as|strong="G5618"\w* \w I|strong="G2532"\w* \w commanded|strong="G1299"\w* \w the|strong="G2532"\w* \w assemblies|strong="G1577"\w* \w of|strong="G4012"\w* \w Galatia|strong="G1053"\w*, \w you|strong="G5210"\w* \w do|strong="G4160"\w* \w likewise|strong="G2532"\w*. +\v 2 \w On|strong="G2596"\w* \w the|strong="G2596"\w* \w first|strong="G1520"\w* \w day|strong="G4521"\w* \w of|strong="G3844"\w* \w every|strong="G2596"\w* \w week|strong="G4521"\w*, \w let|strong="G1096"\w* \w each|strong="G1538"\w* \w one|strong="G1520"\w* \w of|strong="G3844"\w* \w you|strong="G5210"\w* \w save|strong="G3361"\w* \w as|strong="G2596"\w* \w he|strong="G3739"\w* \w may|strong="G2443"\w* \w prosper|strong="G2137"\w*, \w that|strong="G2443"\w* \w no|strong="G3361"\w* \w collections|strong="G3048"\w* \w are|strong="G3739"\w* \w made|strong="G1096"\w* \w when|strong="G3752"\w* \w I|strong="G3739"\w* \w come|strong="G2064"\w*. +\v 3 \w When|strong="G3752"\w* \w I|strong="G3739"\w* \w arrive|strong="G3854"\w*, \w I|strong="G3739"\w* \w will|strong="G3739"\w* \w send|strong="G3992"\w* \w whoever|strong="G3739"\w* \w you|strong="G5210"\w* \w approve|strong="G1381"\w* \w with|strong="G1223"\w* \w letters|strong="G1992"\w* \w to|strong="G1519"\w* carry \w your|strong="G1223"\w* \w gracious|strong="G5485"\w* \w gift|strong="G5485"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2419"\w*. +\v 4 \w If|strong="G1437"\w* \w it|strong="G1161"\w* \w is|strong="G1510"\w* appropriate \w for|strong="G1161"\w* \w me|strong="G1473"\w* \w to|strong="G4198"\w* \w go|strong="G4198"\w* \w also|strong="G2504"\w*, \w they|strong="G1161"\w* \w will|strong="G1510"\w* \w go|strong="G4198"\w* \w with|strong="G4862"\w* \w me|strong="G1473"\w*. +\p +\v 5 \w I|strong="G1161"\w* \w will|strong="G2064"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w* \w when|strong="G3752"\w* \w I|strong="G1161"\w* \w have|strong="G5210"\w* \w passed|strong="G1330"\w* \w through|strong="G1330"\w* \w Macedonia|strong="G3109"\w*, \w for|strong="G1063"\w* \w I|strong="G1161"\w* \w am|strong="G2064"\w* \w passing|strong="G1330"\w* \w through|strong="G1330"\w* \w Macedonia|strong="G3109"\w*. +\v 6 \w But|strong="G1161"\w* \w with|strong="G4314"\w* \w you|strong="G5210"\w* \w it|strong="G2532"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* \w that|strong="G2443"\w* \w I|strong="G1473"\w* \w will|strong="G2532"\w* stay \w with|strong="G4314"\w* \w you|strong="G5210"\w*, \w or|strong="G2228"\w* \w even|strong="G2532"\w* \w winter|strong="G3914"\w* \w with|strong="G4314"\w* \w you|strong="G5210"\w*, \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w may|strong="G2532"\w* \w send|strong="G4311"\w* \w me|strong="G1473"\w* \w on|strong="G4198"\w* \w my|strong="G1473"\w* \w journey|strong="G4311"\w* \w wherever|strong="G3757"\w* \w I|strong="G1473"\w* \w go|strong="G4198"\w*. +\v 7 \w For|strong="G1063"\w* \w I|strong="G1063"\w* \w do|strong="G3708"\w* \w not|strong="G3756"\w* \w wish|strong="G2309"\w* \w to|strong="G4314"\w* \w see|strong="G3708"\w* \w you|strong="G5210"\w* \w now|strong="G3756"\w* \w in|strong="G1722"\w* \w passing|strong="G3938"\w*, \w but|strong="G1063"\w* \w I|strong="G1063"\w* \w hope|strong="G1679"\w* \w to|strong="G4314"\w* \w stay|strong="G1961"\w* \w a|strong="G1722"\w* \w while|strong="G1722"\w* \w with|strong="G1722"\w* \w you|strong="G5210"\w*, \w if|strong="G1437"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w permits|strong="G2010"\w*. +\v 8 \w But|strong="G1161"\w* \w I|strong="G1161"\w* \w will|strong="G1722"\w* \w stay|strong="G1961"\w* \w at|strong="G1722"\w* \w Ephesus|strong="G2181"\w* \w until|strong="G2193"\w* \w Pentecost|strong="G4005"\w*, +\v 9 \w for|strong="G1063"\w* \w a|strong="G2532"\w* \w great|strong="G3173"\w* \w and|strong="G2532"\w* \w effective|strong="G1756"\w* \w door|strong="G2374"\w* \w has|strong="G2532"\w* opened \w to|strong="G2532"\w* \w me|strong="G1473"\w*, \w and|strong="G2532"\w* \w there|strong="G2532"\w* \w are|strong="G2532"\w* \w many|strong="G4183"\w* adversaries. +\p +\v 10 \w Now|strong="G1161"\w* \w if|strong="G1437"\w* \w Timothy|strong="G5095"\w* \w comes|strong="G2064"\w*, see \w that|strong="G2443"\w* \w he|strong="G1161"\w* \w is|strong="G3588"\w* \w with|strong="G4314"\w* \w you|strong="G5210"\w* \w without|strong="G5613"\w* \w fear|strong="G2443"\w*, \w for|strong="G1063"\w* \w he|strong="G1161"\w* \w does|strong="G2038"\w* \w the|strong="G1161"\w* \w work|strong="G2041"\w* \w of|strong="G2962"\w* \w the|strong="G1161"\w* \w Lord|strong="G2962"\w*, \w as|strong="G5613"\w* \w I|strong="G2504"\w* \w also|strong="G2504"\w* \w do|strong="G1096"\w*. +\v 11 \w Therefore|strong="G3767"\w* \w let|strong="G1161"\w* \w no|strong="G3361"\w* \w one|strong="G5100"\w* \w despise|strong="G1848"\w* \w him|strong="G3588"\w*. \w But|strong="G1161"\w* \w set|strong="G2443"\w* \w him|strong="G3588"\w* forward \w on|strong="G1722"\w* \w his|strong="G1722"\w* \w journey|strong="G4311"\w* \w in|strong="G1722"\w* \w peace|strong="G1515"\w*, \w that|strong="G2443"\w* \w he|strong="G1161"\w* \w may|strong="G2443"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w me|strong="G1473"\w*; \w for|strong="G1063"\w* \w I|strong="G1473"\w* \w expect|strong="G1551"\w* \w him|strong="G3588"\w* \w with|strong="G3326"\w* \w the|strong="G1722"\w* brothers. +\p +\v 12 \w Now|strong="G1161"\w* \w concerning|strong="G4012"\w* Apollos \w the|strong="G2532"\w* brother, \w I|strong="G2532"\w* \w strongly|strong="G4183"\w* \w urged|strong="G3870"\w* \w him|strong="G3588"\w* \w to|strong="G4314"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* brothers, \w but|strong="G1161"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w not|strong="G3756"\w* \w at|strong="G4314"\w* \w all|strong="G2532"\w* \w his|strong="G4012"\w* \w desire|strong="G2307"\w* \w to|strong="G4314"\w* \w come|strong="G2064"\w* \w now|strong="G1161"\w*; \w but|strong="G1161"\w* \w he|strong="G2532"\w* \w will|strong="G2307"\w* \w come|strong="G2064"\w* \w when|strong="G3752"\w* \w he|strong="G2532"\w* \w has|strong="G1510"\w* \w an|strong="G2532"\w* \w opportunity|strong="G2119"\w*. +\p +\v 13 \w Watch|strong="G1127"\w*! \w Stand|strong="G4739"\w* \w firm|strong="G4739"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w faith|strong="G4102"\w*! \w Be|strong="G3588"\w* courageous! \w Be|strong="G3588"\w* \w strong|strong="G2901"\w*! +\v 14 \w Let|strong="G1096"\w* \w all|strong="G3956"\w* \w that|strong="G3956"\w* \w you|strong="G5210"\w* \w do|strong="G1096"\w* \w be|strong="G1096"\w* \w done|strong="G1096"\w* \w in|strong="G1722"\w* love. +\p +\v 15 \w Now|strong="G1161"\w* \w I|strong="G2532"\w* \w beg|strong="G3870"\w* \w you|strong="G5210"\w*, brothers—\w you|strong="G5210"\w* \w know|strong="G1492"\w* \w the|strong="G2532"\w* \w house|strong="G3614"\w* \w of|strong="G2532"\w* \w Stephanas|strong="G4734"\w*, \w that|strong="G3754"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w first|strong="G3588"\w* fruits \w of|strong="G2532"\w* Achaia, \w and|strong="G2532"\w* \w that|strong="G3754"\w* \w they|strong="G2532"\w* \w have|strong="G2532"\w* \w set|strong="G5021"\w* \w themselves|strong="G1438"\w* \w to|strong="G1519"\w* \w serve|strong="G1248"\w* \w the|strong="G2532"\w* saints— +\v 16 \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w also|strong="G2532"\w* \w be|strong="G2532"\w* \w in|strong="G2532"\w* \w subjection|strong="G5293"\w* \w to|strong="G2443"\w* \w such|strong="G5108"\w*, \w and|strong="G2532"\w* \w to|strong="G2443"\w* \w everyone|strong="G3956"\w* \w who|strong="G3588"\w* \w helps|strong="G4903"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w work|strong="G2872"\w* \w and|strong="G2532"\w* \w labors|strong="G2872"\w*. +\v 17 \w I|strong="G2532"\w* \w rejoice|strong="G5463"\w* \w at|strong="G1909"\w* \w the|strong="G2532"\w* \w coming|strong="G3952"\w* \w of|strong="G2532"\w* \w Stephanas|strong="G4734"\w*, \w Fortunatus|strong="G5415"\w*, \w and|strong="G2532"\w* Achaicus; \w for|strong="G3754"\w* \w that|strong="G3754"\w* \w which|strong="G3588"\w* \w was|strong="G3588"\w* \w lacking|strong="G5303"\w* \w on|strong="G1909"\w* \w your|strong="G5212"\w* \w part|strong="G1161"\w*, \w they|strong="G2532"\w* supplied. +\v 18 \w For|strong="G1063"\w* \w they|strong="G2532"\w* refreshed \w my|strong="G1699"\w* \w spirit|strong="G4151"\w* \w and|strong="G2532"\w* \w yours|strong="G4771"\w*. \w Therefore|strong="G3767"\w* \w acknowledge|strong="G1921"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w like|strong="G5108"\w* \w that|strong="G3588"\w*. +\p +\v 19 \w The|strong="G1722"\w* \w assemblies|strong="G1577"\w* \w of|strong="G2532"\w* \w Asia|strong="G3588"\w* greet \w you|strong="G5210"\w*. Aquila \w and|strong="G2532"\w* \w Priscilla|strong="G4251"\w* greet \w you|strong="G5210"\w* \w warmly|strong="G4183"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w together|strong="G2596"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w* \w that|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w their|strong="G2532"\w* \w house|strong="G3624"\w*. +\v 20 \w All|strong="G3956"\w* \w the|strong="G1722"\w* brothers greet \w you|strong="G5210"\w*. Greet \w one|strong="G3956"\w* \w another|strong="G3588"\w* \w with|strong="G1722"\w* \w a|strong="G1722"\w* holy \w kiss|strong="G5370"\w*. +\p +\v 21 \w This|strong="G3588"\w* greeting \w is|strong="G3588"\w* \w by|strong="G3588"\w* \w me|strong="G1699"\w*, \w Paul|strong="G3972"\w*, \w with|strong="G5495"\w* \w my|strong="G1699"\w* \w own|strong="G1699"\w* \w hand|strong="G5495"\w*. +\v 22 \w If|strong="G1487"\w* \w any|strong="G5100"\w* \w man|strong="G5100"\w* doesn’\w t|strong="G3588"\w* \w love|strong="G5368"\w* \w the|strong="G3588"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G1510"\w* \w Christ|strong="G2962"\w*, \w let|strong="G1510"\w* \w him|strong="G3588"\w* \w be|strong="G1510"\w* cursed.\f + \fr 16:22 \ft Greek: anathema.\f* \w Come|strong="G1510"\w*, \w Lord|strong="G2962"\w*!\f + \fr 16:22 \ft Aramaic: Maranatha!\f* +\v 23 \w The|strong="G3588"\w* \w grace|strong="G5485"\w* \w of|strong="G5485"\w* \w the|strong="G3588"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G2962"\w* \w be|strong="G3588"\w* \w with|strong="G3326"\w* \w you|strong="G5210"\w*. +\v 24 \w My|strong="G1722"\w* love \w to|strong="G1722"\w* \w all|strong="G3956"\w* \w of|strong="G1722"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/77-2COeng-web.usfm b/bibles/eng-web_usfm/77-2COeng-web.usfm new file mode 100644 index 0000000..13f395c --- /dev/null +++ b/bibles/eng-web_usfm/77-2COeng-web.usfm @@ -0,0 +1,345 @@ +\id 2CO 47-2CO-web.sfm World English Bible (WEB) +\ide UTF-8 +\h 2 Corinthians +\toc1 Paul’s Second Letter to the Corinthians +\toc2 2 Corinthians +\toc3 2Co +\mt1 Paul’s Second Letter to the Corinthians +\c 1 +\p +\v 1 \w Paul|strong="G3972"\w*, \w an|strong="G2532"\w* apostle \w of|strong="G1223"\w* \w Christ|strong="G5547"\w*\f + \fr 1:1 \ft “Christ” means “Anointed One”.\f* \w Jesus|strong="G2424"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w will|strong="G2307"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w Timothy|strong="G5095"\w* \w our|strong="G2316"\w* brother, \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w* \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w at|strong="G1722"\w* \w Corinth|strong="G2882"\w*, \w with|strong="G1722"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* saints \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w whole|strong="G3650"\w* \w of|strong="G1223"\w* Achaia: +\v 2 \w Grace|strong="G5485"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w peace|strong="G1515"\w* \w from|strong="G1515"\w* \w God|strong="G2316"\w* \w our|strong="G2316"\w* \w Father|strong="G3962"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\p +\v 3 \w Blessed|strong="G2128"\w* \w be|strong="G2532"\w* \w the|strong="G2532"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w Father|strong="G3962"\w* \w of|strong="G2316"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w the|strong="G2532"\w* \w Father|strong="G3962"\w* \w of|strong="G2316"\w* \w mercies|strong="G3628"\w* \w and|strong="G2532"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* \w all|strong="G3956"\w* \w comfort|strong="G3874"\w*, +\v 4 \w who|strong="G3739"\w* \w comforts|strong="G3870"\w* \w us|strong="G1519"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w our|strong="G2316"\w* \w affliction|strong="G2347"\w*, \w that|strong="G3739"\w* \w we|strong="G2249"\w* \w may|strong="G1410"\w* \w be|strong="G1410"\w* \w able|strong="G1410"\w* \w to|strong="G1519"\w* \w comfort|strong="G3874"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w are|strong="G3588"\w* \w in|strong="G1722"\w* \w any|strong="G3956"\w* \w affliction|strong="G2347"\w*, \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w comfort|strong="G3874"\w* \w with|strong="G1722"\w* \w which|strong="G3739"\w* \w we|strong="G2249"\w* \w ourselves|strong="G2249"\w* \w are|strong="G3588"\w* \w comforted|strong="G3870"\w* \w by|strong="G1223"\w* \w God|strong="G2316"\w*. +\v 5 \w For|strong="G3754"\w* \w as|strong="G2531"\w* \w the|strong="G2532"\w* \w sufferings|strong="G3804"\w* \w of|strong="G1223"\w* \w Christ|strong="G5547"\w* \w abound|strong="G4052"\w* \w to|strong="G1519"\w* \w us|strong="G1519"\w*, \w even|strong="G2532"\w* \w so|strong="G3779"\w* \w our|strong="G2532"\w* \w comfort|strong="G3874"\w* \w also|strong="G2532"\w* abounds \w through|strong="G1223"\w* \w Christ|strong="G5547"\w*. +\v 6 \w But|strong="G1161"\w* \w if|strong="G1535"\w* \w we|strong="G2249"\w* \w are|strong="G3588"\w* \w afflicted|strong="G2346"\w*, \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w for|strong="G5228"\w* \w your|strong="G2532"\w* \w comfort|strong="G3874"\w* \w and|strong="G2532"\w* \w salvation|strong="G4991"\w*. \w If|strong="G1535"\w* \w we|strong="G2249"\w* \w are|strong="G3588"\w* \w comforted|strong="G3870"\w*, \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w for|strong="G5228"\w* \w your|strong="G2532"\w* \w comfort|strong="G3874"\w*, \w which|strong="G3739"\w* produces \w in|strong="G1722"\w* \w you|strong="G5210"\w* \w the|strong="G1722"\w* \w patient|strong="G5281"\w* \w enduring|strong="G5281"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w same|strong="G3739"\w* \w sufferings|strong="G3804"\w* \w which|strong="G3739"\w* \w we|strong="G2249"\w* \w also|strong="G2532"\w* \w suffer|strong="G3958"\w*. +\v 7 \w Our|strong="G2532"\w* \w hope|strong="G1680"\w* \w for|strong="G3754"\w* \w you|strong="G4771"\w* \w is|strong="G1510"\w* steadfast, \w knowing|strong="G1492"\w* \w that|strong="G3754"\w*, \w since|strong="G3754"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w partakers|strong="G2844"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w sufferings|strong="G3804"\w*, \w so|strong="G3779"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w also|strong="G2532"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w comfort|strong="G3874"\w*. +\p +\v 8 \w For|strong="G1063"\w* \w we|strong="G2249"\w* don’\w t|strong="G3588"\w* \w desire|strong="G2309"\w* \w to|strong="G2532"\w* \w have|strong="G2309"\w* \w you|strong="G5210"\w* uninformed, brothers,\f + \fr 1:8 \ft The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”\f* \w concerning|strong="G2596"\w* \w our|strong="G2532"\w* \w affliction|strong="G2347"\w* \w which|strong="G3588"\w* \w happened|strong="G1096"\w* \w to|strong="G2532"\w* \w us|strong="G2249"\w* \w in|strong="G1722"\w* \w Asia|strong="G3588"\w*: \w that|strong="G3754"\w* \w we|strong="G2249"\w* \w were|strong="G3588"\w* weighed \w down|strong="G2596"\w* exceedingly, \w beyond|strong="G5228"\w* \w our|strong="G2532"\w* \w power|strong="G1411"\w*, \w so|strong="G2532"\w* much \w that|strong="G3754"\w* \w we|strong="G2249"\w* \w despaired|strong="G1820"\w* \w even|strong="G2532"\w* \w of|strong="G2532"\w* \w life|strong="G2198"\w*. +\v 9 Yes, \w we|strong="G2192"\w* \w ourselves|strong="G1438"\w* \w have|strong="G2192"\w* \w had|strong="G2192"\w* \w the|strong="G1722"\w* sentence \w of|strong="G2316"\w* \w death|strong="G2288"\w* \w within|strong="G1722"\w* \w ourselves|strong="G1438"\w*, \w that|strong="G2443"\w* \w we|strong="G2192"\w* \w should|strong="G2316"\w* \w not|strong="G3361"\w* \w trust|strong="G3982"\w* \w in|strong="G1722"\w* \w ourselves|strong="G1438"\w*, \w but|strong="G3361"\w* \w in|strong="G1722"\w* \w God|strong="G2316"\w* \w who|strong="G3588"\w* \w raises|strong="G1453"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w*, +\v 10 \w who|strong="G3739"\w* \w delivered|strong="G4506"\w* \w us|strong="G1519"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w so|strong="G2532"\w* \w great|strong="G5082"\w* \w a|strong="G2532"\w* \w death|strong="G2288"\w*, \w and|strong="G2532"\w* does \w deliver|strong="G4506"\w*, \w on|strong="G1519"\w* \w whom|strong="G3739"\w* \w we|strong="G2249"\w* \w have|strong="G2532"\w* \w set|strong="G1679"\w* \w our|strong="G2532"\w* \w hope|strong="G1679"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w will|strong="G2532"\w* \w also|strong="G2532"\w* \w still|strong="G2089"\w* \w deliver|strong="G4506"\w* \w us|strong="G1519"\w*, +\v 11 \w you|strong="G5210"\w* \w also|strong="G2532"\w* \w helping|strong="G4943"\w* \w together|strong="G4943"\w* \w on|strong="G1519"\w* \w our|strong="G2532"\w* \w behalf|strong="G5228"\w* \w by|strong="G1223"\w* \w your|strong="G1223"\w* \w supplication|strong="G1162"\w*; \w that|strong="G2443"\w*, \w for|strong="G1519"\w* \w the|strong="G2532"\w* \w gift|strong="G5486"\w* \w given|strong="G2168"\w* \w to|strong="G1519"\w* \w us|strong="G1519"\w* \w by|strong="G1223"\w* \w means|strong="G1223"\w* \w of|strong="G1537"\w* \w many|strong="G4183"\w*, \w thanks|strong="G2168"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* \w given|strong="G2168"\w* \w by|strong="G1223"\w* \w many|strong="G4183"\w* \w persons|strong="G4383"\w* \w on|strong="G1519"\w* \w your|strong="G1223"\w* \w behalf|strong="G5228"\w*. +\p +\v 12 \w For|strong="G1063"\w* \w our|strong="G2316"\w* \w boasting|strong="G2746"\w* \w is|strong="G1510"\w* \w this|strong="G3778"\w*: \w the|strong="G1722"\w* \w testimony|strong="G3142"\w* \w of|strong="G2316"\w* \w our|strong="G2316"\w* \w conscience|strong="G4893"\w* \w that|strong="G3754"\w* \w in|strong="G1722"\w* holiness \w and|strong="G2532"\w* \w sincerity|strong="G1505"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w not|strong="G3756"\w* \w in|strong="G1722"\w* \w fleshly|strong="G4559"\w* \w wisdom|strong="G4678"\w* \w but|strong="G1161"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w grace|strong="G5485"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w we|strong="G2249"\w* behaved \w ourselves|strong="G2249"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*, \w and|strong="G2532"\w* \w more|strong="G2532"\w* \w abundantly|strong="G4056"\w* \w toward|strong="G4314"\w* \w you|strong="G5210"\w*. +\v 13 \w For|strong="G1063"\w* \w we|strong="G3739"\w* \w write|strong="G1125"\w* \w no|strong="G3756"\w* \w other|strong="G1161"\w* \w things|strong="G3739"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w than|strong="G2228"\w* \w what|strong="G3739"\w* \w you|strong="G5210"\w* \w read|strong="G1125"\w* \w or|strong="G2228"\w* \w even|strong="G2532"\w* \w acknowledge|strong="G1921"\w*, \w and|strong="G2532"\w* \w I|strong="G3739"\w* \w hope|strong="G1679"\w* \w you|strong="G5210"\w* \w will|strong="G2532"\w* \w acknowledge|strong="G1921"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w end|strong="G5056"\w*— +\v 14 \w as|strong="G2531"\w* \w also|strong="G2532"\w* \w you|strong="G5210"\w* \w acknowledged|strong="G1921"\w* \w us|strong="G2249"\w* \w in|strong="G1722"\w* \w part|strong="G3313"\w*—\w that|strong="G3754"\w* \w we|strong="G2249"\w* \w are|strong="G1510"\w* \w your|strong="G2962"\w* \w boasting|strong="G2745"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w you|strong="G5210"\w* \w also|strong="G2532"\w* \w are|strong="G1510"\w* \w ours|strong="G1473"\w*, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*. +\p +\v 15 \w In|strong="G2532"\w* \w this|strong="G3778"\w* \w confidence|strong="G4006"\w*, \w I|strong="G2532"\w* \w was|strong="G3588"\w* determined \w to|strong="G4314"\w* \w come|strong="G2064"\w* \w first|strong="G4386"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*, \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w might|strong="G2532"\w* \w have|strong="G2192"\w* \w a|strong="G2192"\w* \w second|strong="G1208"\w* \w benefit|strong="G5485"\w*, +\v 16 \w and|strong="G2532"\w* \w by|strong="G1223"\w* \w you|strong="G5210"\w* \w to|strong="G1519"\w* \w pass|strong="G1330"\w* \w into|strong="G1519"\w* \w Macedonia|strong="G3109"\w*, \w and|strong="G2532"\w* \w again|strong="G3825"\w* \w from|strong="G2064"\w* \w Macedonia|strong="G3109"\w* \w to|strong="G1519"\w* \w come|strong="G2064"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w*, \w and|strong="G2532"\w* \w to|strong="G1519"\w* \w be|strong="G2532"\w* \w sent|strong="G2532"\w* \w forward|strong="G1519"\w* \w by|strong="G1223"\w* \w you|strong="G5210"\w* \w on|strong="G1519"\w* \w my|strong="G5259"\w* \w journey|strong="G4311"\w* \w to|strong="G1519"\w* \w Judea|strong="G2449"\w*. +\v 17 \w When|strong="G2532"\w* \w I|strong="G1473"\w* \w therefore|strong="G3767"\w* \w planned|strong="G1011"\w* \w this|strong="G3778"\w*, \w did|strong="G2532"\w* \w I|strong="G1473"\w* show fickleness? \w Or|strong="G2228"\w* \w the|strong="G2532"\w* \w things|strong="G3778"\w* \w that|strong="G2443"\w* \w I|strong="G1473"\w* plan, \w do|strong="G2532"\w* \w I|strong="G1473"\w* plan \w according|strong="G2596"\w* \w to|strong="G2443"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w*, \w that|strong="G2443"\w* \w with|strong="G3844"\w* \w me|strong="G1473"\w* \w there|strong="G2532"\w* \w should|strong="G3588"\w* \w be|strong="G1510"\w* \w the|strong="G2532"\w* “\w Yes|strong="G3483"\w*, \w yes|strong="G3483"\w*” \w and|strong="G2532"\w* \w the|strong="G2532"\w* “\w No|strong="G3756"\w*, \w no|strong="G3756"\w*?” +\v 18 \w But|strong="G1161"\w* \w as|strong="G1161"\w* \w God|strong="G2316"\w* \w is|strong="G1510"\w* \w faithful|strong="G4103"\w*, \w our|strong="G2316"\w* \w word|strong="G3056"\w* \w toward|strong="G4314"\w* \w you|strong="G5210"\w* \w was|strong="G1510"\w* \w not|strong="G3756"\w* “\w Yes|strong="G3483"\w* \w and|strong="G2532"\w* \w no|strong="G3756"\w*.” +\v 19 \w For|strong="G1063"\w* \w the|strong="G1722"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*, \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w who|strong="G3588"\w* \w was|strong="G1096"\w* \w preached|strong="G2784"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w* \w by|strong="G1223"\w* \w us|strong="G2249"\w*—\w by|strong="G1223"\w* \w me|strong="G1473"\w*, \w Silvanus|strong="G4610"\w*, \w and|strong="G2532"\w* \w Timothy|strong="G5095"\w*—\w was|strong="G1096"\w* \w not|strong="G3756"\w* “\w Yes|strong="G3483"\w* \w and|strong="G2532"\w* \w no|strong="G3756"\w*,” \w but|strong="G2532"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w* \w is|strong="G3588"\w* “\w Yes|strong="G3483"\w*.” +\v 20 \w For|strong="G1063"\w* however \w many|strong="G3745"\w* \w are|strong="G3588"\w* \w the|strong="G1722"\w* \w promises|strong="G1860"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w*, \w in|strong="G1722"\w* \w him|strong="G3588"\w* \w is|strong="G3588"\w* \w the|strong="G1722"\w* “\w Yes|strong="G3483"\w*.” \w Therefore|strong="G1352"\w* \w also|strong="G2532"\w* \w through|strong="G1223"\w* \w him|strong="G3588"\w* \w is|strong="G3588"\w* \w the|strong="G1722"\w* “Amen”, \w to|strong="G4314"\w* \w the|strong="G1722"\w* \w glory|strong="G1391"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w* \w through|strong="G1223"\w* \w us|strong="G2249"\w*. +\p +\v 21 \w Now|strong="G1161"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* establishes \w us|strong="G1519"\w* \w with|strong="G4862"\w* \w you|strong="G5210"\w* \w in|strong="G1519"\w* \w Christ|strong="G5547"\w* \w and|strong="G2532"\w* \w anointed|strong="G5548"\w* \w us|strong="G1519"\w* \w is|strong="G3588"\w* \w God|strong="G2316"\w*, +\v 22 \w who|strong="G3588"\w* \w also|strong="G2532"\w* \w sealed|strong="G4972"\w* \w us|strong="G1325"\w* \w and|strong="G2532"\w* \w gave|strong="G1325"\w* \w us|strong="G1325"\w* \w the|strong="G1722"\w* down payment \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w in|strong="G1722"\w* \w our|strong="G2532"\w* \w hearts|strong="G2588"\w*. +\p +\v 23 \w But|strong="G1161"\w* \w I|strong="G1473"\w* \w call|strong="G1941"\w* \w God|strong="G2316"\w* \w for|strong="G3754"\w* \w a|strong="G1519"\w* \w witness|strong="G3144"\w* \w to|strong="G1519"\w* \w my|strong="G1699"\w* \w soul|strong="G5590"\w*, \w that|strong="G3754"\w* \w to|strong="G1519"\w* \w spare|strong="G5339"\w* \w you|strong="G5210"\w*, \w I|strong="G1473"\w* didn’\w t|strong="G3588"\w* \w come|strong="G2064"\w* \w to|strong="G1519"\w* \w Corinth|strong="G2882"\w*. +\v 24 \w We|strong="G3754"\w* don’\w t|strong="G3588"\w* control \w your|strong="G3588"\w* \w faith|strong="G4102"\w*, \w but|strong="G1063"\w* \w are|strong="G1510"\w* \w fellow|strong="G4904"\w* \w workers|strong="G4904"\w* \w with|strong="G3756"\w* \w you|strong="G5210"\w* \w for|strong="G1063"\w* \w your|strong="G3588"\w* \w joy|strong="G5479"\w*. \w For|strong="G1063"\w* \w you|strong="G5210"\w* \w stand|strong="G2476"\w* \w firm|strong="G2476"\w* \w in|strong="G4102"\w* \w faith|strong="G4102"\w*. +\c 2 +\p +\v 1 \w But|strong="G1161"\w* \w I|strong="G1161"\w* \w determined|strong="G2919"\w* \w this|strong="G3778"\w* \w for|strong="G1063"\w* \w myself|strong="G1683"\w*, \w that|strong="G3588"\w* \w I|strong="G1161"\w* \w would|strong="G2064"\w* \w not|strong="G3361"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w* \w again|strong="G3825"\w* \w in|strong="G1722"\w* \w sorrow|strong="G3077"\w*. +\v 2 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w I|strong="G1473"\w* \w make|strong="G2532"\w* \w you|strong="G5210"\w* \w grieve|strong="G3076"\w*, \w then|strong="G2532"\w* \w who|strong="G5101"\w* \w will|strong="G5101"\w* \w make|strong="G2532"\w* \w me|strong="G1473"\w* \w glad|strong="G2165"\w* \w but|strong="G2532"\w* \w he|strong="G2532"\w* \w who|strong="G5101"\w* \w is|strong="G3588"\w* \w made|strong="G3076"\w* \w to|strong="G2532"\w* \w grieve|strong="G3076"\w* \w by|strong="G1537"\w* \w me|strong="G1473"\w*? +\v 3 \w And|strong="G2532"\w* \w I|strong="G1473"\w* \w wrote|strong="G1125"\w* \w this|strong="G3778"\w* \w very|strong="G2532"\w* \w thing|strong="G3956"\w* \w to|strong="G2443"\w* \w you|strong="G5210"\w*, \w so|strong="G2443"\w* \w that|strong="G3754"\w* \w when|strong="G2532"\w* \w I|strong="G1473"\w* \w came|strong="G2064"\w*, \w I|strong="G1473"\w* wouldn’\w t|strong="G3588"\w* \w have|strong="G2192"\w* \w sorrow|strong="G3077"\w* \w from|strong="G2064"\w* \w them|strong="G3588"\w* \w of|strong="G2532"\w* \w whom|strong="G3739"\w* \w I|strong="G1473"\w* \w ought|strong="G1163"\w* \w to|strong="G2443"\w* \w rejoice|strong="G5463"\w*; \w having|strong="G2192"\w* \w confidence|strong="G3982"\w* \w in|strong="G1909"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w* \w that|strong="G3754"\w* \w my|strong="G1699"\w* \w joy|strong="G5479"\w* \w would|strong="G2532"\w* \w be|strong="G1510"\w* shared \w by|strong="G1909"\w* \w all|strong="G3956"\w* \w of|strong="G2532"\w* \w you|strong="G5210"\w*. +\v 4 \w For|strong="G1063"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w much|strong="G4183"\w* \w affliction|strong="G2347"\w* \w and|strong="G2532"\w* \w anguish|strong="G4928"\w* \w of|strong="G1537"\w* \w heart|strong="G2588"\w* \w I|strong="G3739"\w* \w wrote|strong="G1125"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w with|strong="G1537"\w* \w many|strong="G4183"\w* \w tears|strong="G1144"\w*, \w not|strong="G3756"\w* \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w should|strong="G3588"\w* \w be|strong="G2532"\w* \w made|strong="G3076"\w* \w to|strong="G1519"\w* \w grieve|strong="G3076"\w*, \w but|strong="G2532"\w* \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w might|strong="G2532"\w* \w know|strong="G1097"\w* \w the|strong="G2532"\w* love \w that|strong="G2443"\w* \w I|strong="G3739"\w* \w have|strong="G2192"\w* \w so|strong="G2443"\w* \w abundantly|strong="G4056"\w* \w for|strong="G1063"\w* \w you|strong="G5210"\w*. +\p +\v 5 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w any|strong="G5100"\w* \w has|strong="G5100"\w* \w caused|strong="G3076"\w* \w sorrow|strong="G3076"\w*, \w he|strong="G1161"\w* \w has|strong="G5100"\w* \w caused|strong="G3076"\w* \w sorrow|strong="G3076"\w* \w not|strong="G3756"\w* \w to|strong="G2443"\w* \w me|strong="G1473"\w*, \w but|strong="G1161"\w* \w in|strong="G3956"\w* \w part|strong="G3313"\w* (\w that|strong="G2443"\w* \w I|strong="G1473"\w* \w not|strong="G3756"\w* press \w too|strong="G1912"\w* heavily) \w to|strong="G2443"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w*. +\v 6 \w This|strong="G3778"\w* \w punishment|strong="G2009"\w* \w which|strong="G3588"\w* \w was|strong="G3588"\w* inflicted \w by|strong="G5259"\w* \w the|strong="G3588"\w* \w many|strong="G4183"\w* \w is|strong="G3588"\w* \w sufficient|strong="G2425"\w* \w for|strong="G3778"\w* \w such|strong="G5108"\w* \w a|strong="G5108"\w* \w one|strong="G5108"\w*; +\v 7 \w so|strong="G2532"\w* \w that|strong="G3588"\w*, \w on|strong="G3588"\w* \w the|strong="G2532"\w* \w contrary|strong="G5121"\w*, \w you|strong="G4771"\w* \w should|strong="G3588"\w* \w rather|strong="G3123"\w* \w forgive|strong="G5483"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w comfort|strong="G3870"\w* \w him|strong="G3588"\w*, \w lest|strong="G3361"\w* \w by|strong="G2532"\w* \w any|strong="G3361"\w* \w means|strong="G3381"\w* \w such|strong="G5108"\w* \w a|strong="G2532"\w* \w one|strong="G5108"\w* \w should|strong="G3588"\w* \w be|strong="G2532"\w* \w swallowed|strong="G2666"\w* \w up|strong="G2666"\w* \w with|strong="G2532"\w* \w his|strong="G2532"\w* \w excessive|strong="G4053"\w* \w sorrow|strong="G3077"\w*. +\v 8 \w Therefore|strong="G1352"\w* \w I|strong="G1352"\w* \w beg|strong="G3870"\w* \w you|strong="G5210"\w* \w to|strong="G1519"\w* \w confirm|strong="G2964"\w* \w your|strong="G3870"\w* love \w toward|strong="G1519"\w* \w him|strong="G3870"\w*. +\v 9 \w For|strong="G1063"\w* \w to|strong="G1519"\w* \w this|strong="G3778"\w* \w end|strong="G1519"\w* \w I|strong="G2532"\w* \w also|strong="G2532"\w* \w wrote|strong="G1125"\w*, \w that|strong="G2443"\w* \w I|strong="G2532"\w* \w might|strong="G2532"\w* \w know|strong="G1097"\w* \w the|strong="G2532"\w* \w proof|strong="G1382"\w* \w of|strong="G2532"\w* \w you|strong="G5210"\w*, \w whether|strong="G1487"\w* \w you|strong="G5210"\w* \w are|strong="G1510"\w* \w obedient|strong="G5255"\w* \w in|strong="G1519"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*. +\v 10 \w Now|strong="G1161"\w* \w I|strong="G1473"\w* \w also|strong="G2532"\w* \w forgive|strong="G5483"\w* \w whomever|strong="G3739"\w* \w you|strong="G5210"\w* \w forgive|strong="G5483"\w* \w anything|strong="G5100"\w*. \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w indeed|strong="G2532"\w* \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w forgiven|strong="G5483"\w* \w anything|strong="G5100"\w*, \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w forgiven|strong="G5483"\w* \w that|strong="G3739"\w* \w one|strong="G5100"\w* \w for|strong="G1063"\w* \w your|strong="G1223"\w* \w sakes|strong="G1223"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w presence|strong="G4383"\w* \w of|strong="G1223"\w* \w Christ|strong="G5547"\w*, +\v 11 \w that|strong="G2443"\w* \w no|strong="G3756"\w* \w advantage|strong="G4122"\w* \w may|strong="G2443"\w* \w be|strong="G3756"\w* gained \w over|strong="G5259"\w* us \w by|strong="G5259"\w* \w Satan|strong="G4567"\w*, \w for|strong="G1063"\w* \w we|strong="G1063"\w* \w are|strong="G3588"\w* \w not|strong="G3756"\w* \w ignorant|strong="G3361"\w* \w of|strong="G5259"\w* \w his|strong="G5259"\w* \w schemes|strong="G3540"\w*. +\p +\v 12 \w Now|strong="G1161"\w* \w when|strong="G1161"\w* \w I|strong="G1473"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w Troas|strong="G5174"\w* \w for|strong="G1519"\w* \w the|strong="G1722"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w of|strong="G2532"\w* \w Christ|strong="G5547"\w*, \w and|strong="G2532"\w* \w when|strong="G1161"\w* \w a|strong="G2532"\w* \w door|strong="G2374"\w* \w was|strong="G3588"\w* opened \w to|strong="G1519"\w* \w me|strong="G1473"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, +\v 13 \w I|strong="G1473"\w* \w had|strong="G2192"\w* \w no|strong="G3756"\w* relief \w for|strong="G1519"\w* \w my|strong="G1473"\w* \w spirit|strong="G4151"\w*, \w because|strong="G2192"\w* \w I|strong="G1473"\w* didn’\w t|strong="G3588"\w* \w find|strong="G2147"\w* \w Titus|strong="G5103"\w* \w my|strong="G1473"\w* brother, \w but|strong="G3361"\w* taking \w my|strong="G1473"\w* \w leave|strong="G1831"\w* \w of|strong="G4151"\w* \w them|strong="G3588"\w*, \w I|strong="G1473"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w into|strong="G1519"\w* \w Macedonia|strong="G3109"\w*. +\p +\v 14 \w Now|strong="G1161"\w* \w thanks|strong="G5485"\w* \w be|strong="G2532"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w* \w who|strong="G3588"\w* \w always|strong="G3842"\w* \w leads|strong="G2358"\w* \w us|strong="G2249"\w* \w in|strong="G1722"\w* \w triumph|strong="G2358"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*, \w and|strong="G2532"\w* reveals \w through|strong="G1223"\w* \w us|strong="G2249"\w* \w the|strong="G1722"\w* \w sweet|strong="G3744"\w* \w aroma|strong="G3744"\w* \w of|strong="G1223"\w* \w his|strong="G3956"\w* \w knowledge|strong="G1108"\w* \w in|strong="G1722"\w* \w every|strong="G3956"\w* \w place|strong="G5117"\w*. +\v 15 \w For|strong="G3754"\w* \w we|strong="G3754"\w* \w are|strong="G1510"\w* \w a|strong="G2532"\w* sweet aroma \w of|strong="G2316"\w* \w Christ|strong="G5547"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w* \w in|strong="G1722"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w saved|strong="G4982"\w* \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* perish: +\v 16 \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w one|strong="G3739"\w* \w a|strong="G2532"\w* stench \w from|strong="G1537"\w* \w death|strong="G2288"\w* \w to|strong="G1519"\w* \w death|strong="G2288"\w*, \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w other|strong="G1161"\w* \w a|strong="G2532"\w* \w sweet|strong="G3744"\w* \w aroma|strong="G3744"\w* \w from|strong="G1537"\w* \w life|strong="G2222"\w* \w to|strong="G1519"\w* \w life|strong="G2222"\w*. \w Who|strong="G3739"\w* \w is|strong="G5101"\w* \w sufficient|strong="G2425"\w* \w for|strong="G1519"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*? +\v 17 \w For|strong="G1063"\w* \w we|strong="G1063"\w* \w are|strong="G1510"\w* \w not|strong="G3756"\w* \w as|strong="G5613"\w* \w so|strong="G5613"\w* \w many|strong="G4183"\w*, \w peddling|strong="G2585"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*. \w But|strong="G1063"\w* \w as|strong="G5613"\w* \w of|strong="G1537"\w* \w sincerity|strong="G1505"\w*, \w but|strong="G1063"\w* \w as|strong="G5613"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w sight|strong="G2713"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*, \w we|strong="G1063"\w* \w speak|strong="G2980"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*. +\c 3 +\p +\v 1 \w Are|strong="G5210"\w* \w we|strong="G5613"\w* beginning \w again|strong="G3825"\w* \w to|strong="G4314"\w* \w commend|strong="G4921"\w* \w ourselves|strong="G1438"\w*? \w Or|strong="G2228"\w* \w do|strong="G3361"\w* \w we|strong="G5613"\w* \w need|strong="G5535"\w*, \w as|strong="G5613"\w* \w do|strong="G3361"\w* \w some|strong="G5100"\w*, \w letters|strong="G1992"\w* \w of|strong="G1537"\w* \w commendation|strong="G4956"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w* \w or|strong="G2228"\w* \w from|strong="G1537"\w* \w you|strong="G5210"\w*? +\v 2 \w You|strong="G5210"\w* \w are|strong="G1510"\w* \w our|strong="G2532"\w* \w letter|strong="G1992"\w*, \w written|strong="G1449"\w* \w in|strong="G1722"\w* \w our|strong="G2532"\w* \w hearts|strong="G2588"\w*, \w known|strong="G1097"\w* \w and|strong="G2532"\w* read \w by|strong="G1722"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w*, +\v 3 \w being|strong="G1510"\w* \w revealed|strong="G5319"\w* \w that|strong="G3754"\w* \w you|strong="G3754"\w* \w are|strong="G1510"\w* \w a|strong="G1722"\w* \w letter|strong="G1992"\w* \w of|strong="G5259"\w* \w Christ|strong="G5547"\w*, \w served|strong="G1247"\w* \w by|strong="G1722"\w* \w us|strong="G2249"\w*, \w written|strong="G1449"\w* \w not|strong="G3756"\w* \w with|strong="G1722"\w* \w ink|strong="G3188"\w*, \w but|strong="G2316"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w of|strong="G5259"\w* \w the|strong="G1722"\w* \w living|strong="G2198"\w* \w God|strong="G2316"\w*; \w not|strong="G3756"\w* \w in|strong="G1722"\w* \w tablets|strong="G4109"\w* \w of|strong="G5259"\w* \w stone|strong="G3035"\w*, \w but|strong="G2316"\w* \w in|strong="G1722"\w* \w tablets|strong="G4109"\w* \w that|strong="G3754"\w* \w are|strong="G1510"\w* \w hearts|strong="G2588"\w* \w of|strong="G5259"\w* \w flesh|strong="G4560"\w*. +\p +\v 4 \w Such|strong="G5108"\w* \w confidence|strong="G4006"\w* \w we|strong="G1161"\w* \w have|strong="G2192"\w* \w through|strong="G1223"\w* \w Christ|strong="G5547"\w* \w toward|strong="G4314"\w* \w God|strong="G2316"\w*, +\v 5 \w not|strong="G3756"\w* \w that|strong="G3754"\w* \w we|strong="G2249"\w* \w are|strong="G1510"\w* \w sufficient|strong="G2425"\w* \w of|strong="G1537"\w* \w ourselves|strong="G1438"\w* \w to|strong="G3756"\w* \w account|strong="G3049"\w* \w anything|strong="G5100"\w* \w as|strong="G5613"\w* \w from|strong="G1537"\w* \w ourselves|strong="G1438"\w*; \w but|strong="G2316"\w* \w our|strong="G2316"\w* \w sufficiency|strong="G2426"\w* \w is|strong="G1510"\w* \w from|strong="G1537"\w* \w God|strong="G2316"\w*, +\v 6 \w who|strong="G3739"\w* \w also|strong="G2532"\w* \w made|strong="G2427"\w* \w us|strong="G2427"\w* sufficient \w as|strong="G1161"\w* \w servants|strong="G1249"\w* \w of|strong="G4151"\w* \w a|strong="G2532"\w* \w new|strong="G2537"\w* \w covenant|strong="G1242"\w*, \w not|strong="G3756"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w letter|strong="G1121"\w* \w but|strong="G1161"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w*. \w For|strong="G1063"\w* \w the|strong="G2532"\w* \w letter|strong="G1121"\w* kills, \w but|strong="G1161"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w* \w gives|strong="G2227"\w* \w life|strong="G2227"\w*. +\p +\v 7 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w the|strong="G1722"\w* \w service|strong="G1248"\w* \w of|strong="G5207"\w* \w death|strong="G2288"\w*, \w written|strong="G1121"\w* \w engraved|strong="G1795"\w* \w on|strong="G1722"\w* \w stones|strong="G3037"\w*, \w came|strong="G1096"\w* \w with|strong="G1722"\w* \w glory|strong="G1391"\w*, \w so|strong="G1161"\w* \w that|strong="G3588"\w* \w the|strong="G1722"\w* \w children|strong="G5207"\w* \w of|strong="G5207"\w* \w Israel|strong="G2474"\w* \w could|strong="G1410"\w* \w not|strong="G3361"\w* \w look|strong="G1096"\w* steadfastly \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w face|strong="G4383"\w* \w of|strong="G5207"\w* \w Moses|strong="G3475"\w* \w for|strong="G1519"\w* \w the|strong="G1722"\w* \w glory|strong="G1391"\w* \w of|strong="G5207"\w* \w his|strong="G1223"\w* \w face|strong="G4383"\w*, \w which|strong="G3588"\w* \w was|strong="G1096"\w* \w passing|strong="G2673"\w* \w away|strong="G2673"\w*, +\v 8 won’\w t|strong="G3588"\w* \w service|strong="G1248"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w be|strong="G1510"\w* \w with|strong="G1722"\w* \w much|strong="G3123"\w* \w more|strong="G3123"\w* \w glory|strong="G1391"\w*? +\v 9 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w the|strong="G3588"\w* \w service|strong="G1248"\w* \w of|strong="G1391"\w* \w condemnation|strong="G2633"\w* \w has|strong="G4052"\w* \w glory|strong="G1391"\w*, \w the|strong="G3588"\w* \w service|strong="G1248"\w* \w of|strong="G1391"\w* \w righteousness|strong="G1343"\w* exceeds \w much|strong="G4183"\w* \w more|strong="G3123"\w* \w in|strong="G4052"\w* \w glory|strong="G1391"\w*. +\v 10 \w For|strong="G1063"\w* most \w certainly|strong="G1063"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w has|strong="G3778"\w* \w been|strong="G2532"\w* \w made|strong="G3756"\w* \w glorious|strong="G1391"\w* \w has|strong="G3778"\w* \w not|strong="G3756"\w* \w been|strong="G2532"\w* \w made|strong="G3756"\w* \w glorious|strong="G1391"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* \w respect|strong="G3313"\w*, \w by|strong="G1722"\w* \w reason|strong="G1752"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w glory|strong="G1391"\w* \w that|strong="G3588"\w* \w surpasses|strong="G5235"\w*. +\v 11 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* passes \w away|strong="G2673"\w* \w was|strong="G3588"\w* \w with|strong="G1722"\w* \w glory|strong="G1391"\w*, \w much|strong="G4183"\w* \w more|strong="G3123"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w remains|strong="G3306"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w glory|strong="G1391"\w*. +\p +\v 12 \w Having|strong="G2192"\w* \w therefore|strong="G3767"\w* \w such|strong="G5108"\w* \w a|strong="G2192"\w* \w hope|strong="G1680"\w*, \w we|strong="G2192"\w* \w use|strong="G5530"\w* \w great|strong="G4183"\w* \w boldness|strong="G3954"\w* \w of|strong="G1680"\w* \w speech|strong="G3954"\w*, +\v 13 \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w as|strong="G1519"\w* \w Moses|strong="G3475"\w*, \w who|strong="G3588"\w* \w put|strong="G5087"\w* \w a|strong="G2532"\w* \w veil|strong="G2571"\w* \w on|strong="G1909"\w* \w his|strong="G1438"\w* \w face|strong="G4383"\w* \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w the|strong="G2532"\w* \w children|strong="G5207"\w* \w of|strong="G5207"\w* \w Israel|strong="G2474"\w* wouldn’\w t|strong="G3588"\w* look steadfastly \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w end|strong="G5056"\w* \w of|strong="G5207"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w was|strong="G3588"\w* \w passing|strong="G2532"\w* \w away|strong="G2673"\w*. +\v 14 \w But|strong="G3361"\w* \w their|strong="G1722"\w* \w minds|strong="G3540"\w* \w were|strong="G3588"\w* \w hardened|strong="G4456"\w*, \w for|strong="G1063"\w* \w until|strong="G1722"\w* \w this|strong="G3588"\w* \w very|strong="G4594"\w* \w day|strong="G2250"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* reading \w of|strong="G2250"\w* \w the|strong="G1722"\w* \w old|strong="G3820"\w* \w covenant|strong="G1242"\w* \w the|strong="G1722"\w* same \w veil|strong="G2571"\w* \w remains|strong="G3306"\w*, \w because|strong="G3754"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w it|strong="G3754"\w* passes \w away|strong="G2673"\w*. +\v 15 \w But|strong="G3588"\w* \w to|strong="G1909"\w* \w this|strong="G3588"\w* \w day|strong="G4594"\w*, \w when|strong="G2259"\w* \w Moses|strong="G3475"\w* \w is|strong="G3588"\w* read, \w a|strong="G1909"\w* \w veil|strong="G2571"\w* \w lies|strong="G2749"\w* \w on|strong="G1909"\w* \w their|strong="G3588"\w* \w heart|strong="G2588"\w*. +\v 16 \w But|strong="G1161"\w* \w whenever|strong="G1437"\w* someone \w turns|strong="G1994"\w* \w to|strong="G4314"\w* \w the|strong="G1161"\w* \w Lord|strong="G2962"\w*, \w the|strong="G1161"\w* \w veil|strong="G2571"\w* \w is|strong="G3588"\w* \w taken|strong="G4014"\w* \w away|strong="G4014"\w*. +\v 17 \w Now|strong="G1161"\w* \w the|strong="G1161"\w* \w Lord|strong="G2962"\w* \w is|strong="G1510"\w* \w the|strong="G1161"\w* \w Spirit|strong="G4151"\w*; \w and|strong="G1161"\w* \w where|strong="G3757"\w* \w the|strong="G1161"\w* \w Spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w the|strong="G1161"\w* \w Lord|strong="G2962"\w* \w is|strong="G1510"\w*, \w there|strong="G1161"\w* \w is|strong="G1510"\w* \w liberty|strong="G1657"\w*. +\v 18 \w But|strong="G1161"\w* \w we|strong="G2249"\w* \w all|strong="G3956"\w*, \w with|strong="G1519"\w* unveiled \w face|strong="G4383"\w* seeing \w the|strong="G1519"\w* \w glory|strong="G1391"\w* \w of|strong="G4151"\w* \w the|strong="G1519"\w* \w Lord|strong="G2962"\w* \w as|strong="G1519"\w* \w in|strong="G1519"\w* \w a|strong="G1519"\w* \w mirror|strong="G2734"\w*, \w are|strong="G3588"\w* \w transformed|strong="G3339"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* same \w image|strong="G1504"\w* \w from|strong="G3588"\w* \w glory|strong="G1391"\w* \w to|strong="G1519"\w* \w glory|strong="G1391"\w*, \w even|strong="G1161"\w* \w as|strong="G1519"\w* \w from|strong="G3588"\w* \w the|strong="G1519"\w* \w Lord|strong="G2962"\w*, \w the|strong="G1519"\w* \w Spirit|strong="G4151"\w*. +\c 4 +\p +\v 1 \w Therefore|strong="G1223"\w*, \w seeing|strong="G1223"\w* \w we|strong="G2192"\w* \w have|strong="G2192"\w* \w this|strong="G3778"\w* \w ministry|strong="G1248"\w*, \w even|strong="G2531"\w* \w as|strong="G2531"\w* \w we|strong="G2192"\w* \w obtained|strong="G2192"\w* \w mercy|strong="G1653"\w*, \w we|strong="G2192"\w* don’\w t|strong="G3588"\w* \w faint|strong="G1573"\w*. +\v 2 \w But|strong="G3361"\w* \w we|strong="G1722"\w* \w have|strong="G3956"\w* renounced \w the|strong="G1722"\w* \w hidden|strong="G2927"\w* \w things|strong="G3956"\w* \w of|strong="G3056"\w* shame, \w not|strong="G3361"\w* \w walking|strong="G4043"\w* \w in|strong="G1722"\w* \w craftiness|strong="G3834"\w* \w nor|strong="G3366"\w* \w handling|strong="G1389"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w* \w deceitfully|strong="G1389"\w*, \w but|strong="G3361"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w manifestation|strong="G5321"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* truth \w commending|strong="G4921"\w* \w ourselves|strong="G1438"\w* \w to|strong="G4314"\w* \w every|strong="G3956"\w* \w man|strong="G3956"\w*’s \w conscience|strong="G4893"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w sight|strong="G1799"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w*. +\v 3 \w Even|strong="G2532"\w* \w if|strong="G1487"\w* \w our|strong="G2532"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w is|strong="G1510"\w* \w veiled|strong="G2572"\w*, \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w veiled|strong="G2572"\w* \w in|strong="G1722"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* dying, +\v 4 \w in|strong="G1722"\w* \w whom|strong="G3739"\w* \w the|strong="G1722"\w* \w god|strong="G2316"\w* \w of|strong="G2316"\w* \w this|strong="G3778"\w* world \w has|strong="G2316"\w* \w blinded|strong="G5186"\w* \w the|strong="G1722"\w* \w minds|strong="G3540"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* unbelieving, \w that|strong="G3739"\w* \w the|strong="G1722"\w* \w light|strong="G5462"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w glory|strong="G1391"\w* \w of|strong="G2316"\w* \w Christ|strong="G5547"\w*, \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w image|strong="G1504"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w should|strong="G2316"\w* \w not|strong="G3361"\w* dawn \w on|strong="G1722"\w* \w them|strong="G3588"\w*. +\v 5 \w For|strong="G1063"\w* \w we|strong="G1063"\w* don’t \w preach|strong="G2784"\w* \w ourselves|strong="G1438"\w*, \w but|strong="G1161"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w as|strong="G1161"\w* \w Lord|strong="G2962"\w*, \w and|strong="G1161"\w* \w ourselves|strong="G1438"\w* \w as|strong="G1161"\w* \w your|strong="G1223"\w* \w servants|strong="G1401"\w* \w for|strong="G1063"\w* \w Jesus|strong="G2424"\w*’ \w sake|strong="G1223"\w*, +\v 6 \w seeing|strong="G3754"\w* \w it|strong="G3754"\w* \w is|strong="G3588"\w* \w God|strong="G2316"\w* \w who|strong="G3739"\w* \w said|strong="G3004"\w*, “\w Light|strong="G5457"\w* \w will|strong="G2316"\w* \w shine|strong="G2989"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w darkness|strong="G4655"\w*,”\x + \xo 4:6 \xt Genesis 1:3\x* \w who|strong="G3739"\w* \w has|strong="G2316"\w* \w shone|strong="G2989"\w* \w in|strong="G1722"\w* \w our|strong="G2316"\w* \w hearts|strong="G2588"\w* \w to|strong="G4314"\w* \w give|strong="G3004"\w* \w the|strong="G1722"\w* \w light|strong="G5457"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w knowledge|strong="G1108"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w glory|strong="G1391"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w face|strong="G4383"\w* \w of|strong="G1537"\w* \w Jesus|strong="G3004"\w* \w Christ|strong="G5547"\w*. +\p +\v 7 \w But|strong="G1161"\w* \w we|strong="G2249"\w* \w have|strong="G2192"\w* \w this|strong="G3778"\w* \w treasure|strong="G2344"\w* \w in|strong="G1722"\w* \w clay|strong="G3749"\w* \w vessels|strong="G4632"\w*, \w that|strong="G2443"\w* \w the|strong="G1722"\w* \w exceeding|strong="G5236"\w* \w greatness|strong="G5236"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w power|strong="G1411"\w* \w may|strong="G2532"\w* \w be|strong="G1510"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w not|strong="G3361"\w* \w from|strong="G1537"\w* \w ourselves|strong="G2249"\w*. +\v 8 \w We|strong="G1722"\w* \w are|strong="G3956"\w* pressed \w on|strong="G1722"\w* \w every|strong="G3956"\w* \w side|strong="G3956"\w*, yet \w not|strong="G3756"\w* \w crushed|strong="G4729"\w*; perplexed, yet \w not|strong="G3756"\w* \w to|strong="G1722"\w* \w despair|strong="G1820"\w*; +\v 9 pursued, yet \w not|strong="G3756"\w* \w forsaken|strong="G1459"\w*; \w struck|strong="G2598"\w* \w down|strong="G2598"\w*, yet \w not|strong="G3756"\w* destroyed; +\v 10 \w always|strong="G3842"\w* \w carrying|strong="G4064"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w body|strong="G4983"\w* \w the|strong="G1722"\w* \w putting|strong="G2532"\w* \w to|strong="G2443"\w* death \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Lord|strong="G3588"\w* \w Jesus|strong="G2424"\w*, \w that|strong="G2443"\w* \w the|strong="G1722"\w* \w life|strong="G2222"\w* \w of|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w may|strong="G2532"\w* \w also|strong="G2532"\w* \w be|strong="G2532"\w* \w revealed|strong="G5319"\w* \w in|strong="G1722"\w* \w our|strong="G2424"\w* \w body|strong="G4983"\w*. +\v 11 \w For|strong="G1063"\w* \w we|strong="G2249"\w* \w who|strong="G3588"\w* \w live|strong="G2198"\w* \w are|strong="G3588"\w* \w always|strong="G1223"\w* \w delivered|strong="G3860"\w* \w to|strong="G1519"\w* \w death|strong="G2288"\w* \w for|strong="G1063"\w* \w Jesus|strong="G2424"\w*’ \w sake|strong="G1223"\w*, \w that|strong="G2443"\w* \w the|strong="G1722"\w* \w life|strong="G2222"\w* \w also|strong="G2532"\w* \w of|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* \w revealed|strong="G5319"\w* \w in|strong="G1722"\w* \w our|strong="G2424"\w* \w mortal|strong="G2349"\w* \w flesh|strong="G4561"\w*. +\v 12 \w So|strong="G1161"\w* \w then|strong="G1161"\w* \w death|strong="G2288"\w* \w works|strong="G1754"\w* \w in|strong="G1722"\w* \w us|strong="G2249"\w*, \w but|strong="G1161"\w* \w life|strong="G2222"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w*. +\p +\v 13 \w But|strong="G1161"\w* \w having|strong="G2192"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w* \w spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w faith|strong="G4102"\w*, \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, “\w I|strong="G1473"\w* \w believed|strong="G4100"\w*, \w and|strong="G2532"\w* \w therefore|strong="G1352"\w* \w I|strong="G1473"\w* \w spoke|strong="G2980"\w*.”\x + \xo 4:13 \xt Psalms 116:10\x* \w We|strong="G2249"\w* \w also|strong="G2532"\w* \w believe|strong="G4100"\w*, \w and|strong="G2532"\w* \w therefore|strong="G1352"\w* \w we|strong="G2249"\w* \w also|strong="G2532"\w* \w speak|strong="G2980"\w*, +\v 14 \w knowing|strong="G1492"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w raised|strong="G1453"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w will|strong="G2532"\w* \w raise|strong="G1453"\w* \w us|strong="G2249"\w* \w also|strong="G2532"\w* \w with|strong="G4862"\w* \w Jesus|strong="G2424"\w*, \w and|strong="G2532"\w* \w will|strong="G2532"\w* \w present|strong="G3936"\w* \w us|strong="G2249"\w* \w with|strong="G4862"\w* \w you|strong="G5210"\w*. +\v 15 \w For|strong="G1063"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w are|strong="G3588"\w* \w for|strong="G1063"\w* \w your|strong="G1223"\w* \w sakes|strong="G1223"\w*, \w that|strong="G2443"\w* \w the|strong="G1519"\w* \w grace|strong="G5485"\w*, \w being|strong="G2443"\w* multiplied \w through|strong="G1223"\w* \w the|strong="G1519"\w* \w many|strong="G4183"\w*, \w may|strong="G2443"\w* \w cause|strong="G1223"\w* \w the|strong="G1519"\w* \w thanksgiving|strong="G2169"\w* \w to|strong="G1519"\w* \w abound|strong="G4052"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w glory|strong="G1391"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w*. +\p +\v 16 \w Therefore|strong="G1352"\w* \w we|strong="G2249"\w* don’\w t|strong="G3588"\w* \w faint|strong="G1573"\w*, \w but|strong="G2532"\w* \w though|strong="G1487"\w* \w our|strong="G2532"\w* \w outward|strong="G1854"\w* person \w is|strong="G3588"\w* \w decaying|strong="G1311"\w*, \w yet|strong="G2532"\w* \w our|strong="G2532"\w* \w inward|strong="G2080"\w* person \w is|strong="G3588"\w* renewed \w day|strong="G2250"\w* \w by|strong="G2532"\w* \w day|strong="G2250"\w*. +\v 17 \w For|strong="G1063"\w* \w our|strong="G2596"\w* \w light|strong="G1645"\w* \w affliction|strong="G2347"\w*, \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w for|strong="G1063"\w* \w the|strong="G1519"\w* \w moment|strong="G3910"\w*, works \w for|strong="G1063"\w* \w us|strong="G1519"\w* \w more|strong="G5236"\w* \w and|strong="G1391"\w* \w more|strong="G5236"\w* exceedingly \w an|strong="G1519"\w* eternal weight \w of|strong="G1391"\w* \w glory|strong="G1391"\w*, +\v 18 \w while|strong="G1161"\w* \w we|strong="G2249"\w* don’\w t|strong="G3588"\w* \w look|strong="G4648"\w* \w at|strong="G1161"\w* \w the|strong="G1161"\w* \w things|strong="G3588"\w* \w which|strong="G3588"\w* \w are|strong="G3588"\w* seen, \w but|strong="G1161"\w* \w at|strong="G1161"\w* \w the|strong="G1161"\w* \w things|strong="G3588"\w* \w which|strong="G3588"\w* \w are|strong="G3588"\w* \w not|strong="G3361"\w* seen. \w For|strong="G1063"\w* \w the|strong="G1161"\w* \w things|strong="G3588"\w* \w which|strong="G3588"\w* \w are|strong="G3588"\w* seen \w are|strong="G3588"\w* \w temporal|strong="G4340"\w*, \w but|strong="G1161"\w* \w the|strong="G1161"\w* \w things|strong="G3588"\w* \w which|strong="G3588"\w* \w are|strong="G3588"\w* \w not|strong="G3361"\w* seen \w are|strong="G3588"\w* eternal. +\c 5 +\p +\v 1 \w For|strong="G1063"\w* \w we|strong="G2249"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w if|strong="G1437"\w* \w the|strong="G1722"\w* \w earthly|strong="G1919"\w* \w house|strong="G3614"\w* \w of|strong="G1537"\w* \w our|strong="G2316"\w* \w tent|strong="G4636"\w* \w is|strong="G3588"\w* \w dissolved|strong="G2647"\w*, \w we|strong="G2249"\w* \w have|strong="G2192"\w* \w a|strong="G2192"\w* \w building|strong="G3619"\w* \w from|strong="G1537"\w* \w God|strong="G2316"\w*, \w a|strong="G2192"\w* \w house|strong="G3614"\w* \w not|strong="G2192"\w* \w made|strong="G2316"\w* \w with|strong="G1722"\w* hands, eternal, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w heavens|strong="G3772"\w*. +\v 2 \w For|strong="G1063"\w* \w most|strong="G1537"\w* \w certainly|strong="G1063"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* \w we|strong="G2249"\w* \w groan|strong="G4727"\w*, \w longing|strong="G1971"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w clothed|strong="G1902"\w* \w with|strong="G1722"\w* \w our|strong="G2532"\w* \w habitation|strong="G3613"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w from|strong="G1537"\w* \w heaven|strong="G3772"\w*, +\v 3 \w if|strong="G1487"\w* \w indeed|strong="G2532"\w* \w being|strong="G2532"\w* \w clothed|strong="G1746"\w*, \w we|strong="G2532"\w* \w will|strong="G2532"\w* \w not|strong="G3756"\w* \w be|strong="G2532"\w* \w found|strong="G2147"\w* \w naked|strong="G1131"\w*. +\v 4 \w For|strong="G1063"\w* \w indeed|strong="G2532"\w* \w we|strong="G3739"\w* \w who|strong="G3739"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w this|strong="G3588"\w* \w tent|strong="G4636"\w* \w do|strong="G2532"\w* \w groan|strong="G4727"\w*, \w being|strong="G1510"\w* burdened, \w not|strong="G3756"\w* \w that|strong="G2443"\w* \w we|strong="G3739"\w* \w desire|strong="G2309"\w* \w to|strong="G2443"\w* \w be|strong="G1510"\w* \w unclothed|strong="G1562"\w*, \w but|strong="G2532"\w* \w that|strong="G2443"\w* \w we|strong="G3739"\w* \w desire|strong="G2309"\w* \w to|strong="G2443"\w* \w be|strong="G1510"\w* \w clothed|strong="G1902"\w*, \w that|strong="G2443"\w* \w what|strong="G3739"\w* \w is|strong="G1510"\w* \w mortal|strong="G2349"\w* \w may|strong="G2532"\w* \w be|strong="G1510"\w* \w swallowed|strong="G2666"\w* \w up|strong="G2666"\w* \w by|strong="G1722"\w* \w life|strong="G2222"\w*. +\v 5 \w Now|strong="G1161"\w* \w he|strong="G1161"\w* \w who|strong="G3588"\w* \w made|strong="G2316"\w* \w us|strong="G1325"\w* \w for|strong="G1519"\w* \w this|strong="G3778"\w* \w very|strong="G3778"\w* \w thing|strong="G3778"\w* \w is|strong="G3588"\w* \w God|strong="G2316"\w*, \w who|strong="G3588"\w* \w also|strong="G1161"\w* \w gave|strong="G1325"\w* \w to|strong="G1519"\w* \w us|strong="G1325"\w* \w the|strong="G1519"\w* down payment \w of|strong="G4151"\w* \w the|strong="G1519"\w* \w Spirit|strong="G4151"\w*. +\p +\v 6 \w Therefore|strong="G3767"\w* \w we|strong="G3754"\w* \w are|strong="G3588"\w* \w always|strong="G3842"\w* \w confident|strong="G2292"\w* \w and|strong="G2532"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w while|strong="G1722"\w* \w we|strong="G3754"\w* \w are|strong="G3588"\w* \w at|strong="G1722"\w* \w home|strong="G1736"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w body|strong="G4983"\w*, \w we|strong="G3754"\w* \w are|strong="G3588"\w* \w absent|strong="G1553"\w* \w from|strong="G2532"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*; +\v 7 \w for|strong="G1063"\w* \w we|strong="G1063"\w* \w walk|strong="G4043"\w* \w by|strong="G1223"\w* \w faith|strong="G4102"\w*, \w not|strong="G3756"\w* \w by|strong="G1223"\w* \w sight|strong="G1491"\w*. +\v 8 \w We|strong="G2532"\w* \w are|strong="G3588"\w* courageous, \w I|strong="G2532"\w* \w say|strong="G1537"\w*, \w and|strong="G2532"\w* \w are|strong="G3588"\w* \w willing|strong="G2106"\w* \w rather|strong="G3123"\w* \w to|strong="G4314"\w* \w be|strong="G2532"\w* \w absent|strong="G1553"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w body|strong="G4983"\w* \w and|strong="G2532"\w* \w to|strong="G4314"\w* \w be|strong="G2532"\w* \w at|strong="G4314"\w* \w home|strong="G1736"\w* \w with|strong="G4314"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*. +\v 9 \w Therefore|strong="G1352"\w* \w also|strong="G2532"\w* \w we|strong="G2532"\w* \w make|strong="G2532"\w* \w it|strong="G2532"\w* \w our|strong="G2532"\w* aim, \w whether|strong="G1535"\w* \w at|strong="G2532"\w* \w home|strong="G1736"\w* \w or|strong="G1535"\w* \w absent|strong="G1553"\w*, \w to|strong="G2532"\w* \w be|strong="G1510"\w* \w well|strong="G2532"\w* \w pleasing|strong="G2101"\w* \w to|strong="G2532"\w* \w him|strong="G2532"\w*. +\v 10 \w For|strong="G1063"\w* \w we|strong="G2249"\w* \w must|strong="G1163"\w* \w all|strong="G3956"\w* \w be|strong="G1163"\w* \w revealed|strong="G5319"\w* \w before|strong="G1715"\w* \w the|strong="G3956"\w* judgment seat \w of|strong="G1223"\w* \w Christ|strong="G5547"\w* \w that|strong="G2443"\w* \w each|strong="G1538"\w* \w one|strong="G1538"\w* \w may|strong="G2443"\w* \w receive|strong="G2865"\w* \w the|strong="G3956"\w* \w things|strong="G3956"\w* \w in|strong="G3956"\w* \w the|strong="G3956"\w* \w body|strong="G4983"\w* \w according|strong="G1538"\w* \w to|strong="G4314"\w* \w what|strong="G3739"\w* \w he|strong="G3739"\w* \w has|strong="G3739"\w* \w done|strong="G4238"\w*, \w whether|strong="G1535"\w* \w good|strong="G3956"\w* \w or|strong="G1535"\w* \w bad|strong="G5337"\w*. +\p +\v 11 \w Knowing|strong="G1492"\w* \w therefore|strong="G3767"\w* \w the|strong="G1722"\w* \w fear|strong="G5401"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w we|strong="G2532"\w* \w persuade|strong="G3982"\w* \w men|strong="G3588"\w*, \w but|strong="G1161"\w* \w we|strong="G2532"\w* \w are|strong="G3588"\w* \w revealed|strong="G5319"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w I|strong="G2532"\w* \w hope|strong="G1679"\w* \w that|strong="G3588"\w* \w we|strong="G2532"\w* \w are|strong="G3588"\w* \w revealed|strong="G5319"\w* \w also|strong="G2532"\w* \w in|strong="G1722"\w* \w your|strong="G2962"\w* \w consciences|strong="G4893"\w*. +\v 12 \w For|strong="G1063"\w* \w we|strong="G2249"\w* \w are|strong="G3588"\w* \w not|strong="G3756"\w* \w commending|strong="G4921"\w* \w ourselves|strong="G1438"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w* \w again|strong="G3825"\w*, \w but|strong="G2532"\w* speak \w as|strong="G1722"\w* \w giving|strong="G1325"\w* \w you|strong="G5210"\w* occasion \w of|strong="G2532"\w* \w boasting|strong="G2745"\w* \w on|strong="G1722"\w* \w our|strong="G2532"\w* \w behalf|strong="G5228"\w*, \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w may|strong="G2532"\w* \w have|strong="G2192"\w* \w something|strong="G2745"\w* \w to|strong="G4314"\w* answer \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w boast|strong="G2744"\w* \w in|strong="G1722"\w* \w appearance|strong="G4383"\w* \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w in|strong="G1722"\w* \w heart|strong="G2588"\w*. +\v 13 \w For|strong="G1063"\w* \w if|strong="G1535"\w* \w we|strong="G1063"\w* \w are|strong="G5210"\w* \w beside|strong="G1839"\w* \w ourselves|strong="G1839"\w*, \w it|strong="G1063"\w* \w is|strong="G2316"\w* \w for|strong="G1063"\w* \w God|strong="G2316"\w*. \w Or|strong="G1535"\w* \w if|strong="G1535"\w* \w we|strong="G1063"\w* \w are|strong="G5210"\w* \w of|strong="G2316"\w* \w sober|strong="G4993"\w* \w mind|strong="G4993"\w*, \w it|strong="G1063"\w* \w is|strong="G2316"\w* \w for|strong="G1063"\w* \w you|strong="G5210"\w*. +\v 14 \w For|strong="G1063"\w* \w the|strong="G3956"\w* love \w of|strong="G1520"\w* \w Christ|strong="G5547"\w* compels \w us|strong="G2249"\w*; \w because|strong="G1063"\w* \w we|strong="G2249"\w* \w judge|strong="G2919"\w* thus: \w that|strong="G3588"\w* \w one|strong="G1520"\w* \w died|strong="G3588"\w* \w for|strong="G1063"\w* \w all|strong="G3956"\w*, \w therefore|strong="G1063"\w* \w all|strong="G3956"\w* \w died|strong="G3588"\w*. +\v 15 \w He|strong="G2532"\w* \w died|strong="G3588"\w* \w for|strong="G3754"\w* \w all|strong="G3956"\w*, \w that|strong="G3754"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w live|strong="G2198"\w* \w should|strong="G3588"\w* \w no|strong="G3371"\w* \w longer|strong="G3371"\w* \w live|strong="G2198"\w* \w to|strong="G2443"\w* \w themselves|strong="G1438"\w*, \w but|strong="G2532"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w for|strong="G3754"\w* \w their|strong="G1438"\w* \w sakes|strong="G5228"\w* \w died|strong="G3588"\w* \w and|strong="G2532"\w* \w rose|strong="G2532"\w* \w again|strong="G1453"\w*. +\p +\v 16 \w Therefore|strong="G5620"\w* \w we|strong="G2249"\w* \w know|strong="G1492"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w* \w from|strong="G2532"\w* \w now|strong="G3568"\w* \w on|strong="G2596"\w*. \w Even|strong="G2532"\w* \w though|strong="G1487"\w* \w we|strong="G2249"\w* \w have|strong="G2532"\w* \w known|strong="G1097"\w* \w Christ|strong="G5547"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w*, \w yet|strong="G2532"\w* \w now|strong="G3568"\w* \w we|strong="G2249"\w* \w know|strong="G1492"\w* \w him|strong="G3588"\w* \w so|strong="G2532"\w* \w no|strong="G3762"\w* \w more|strong="G3765"\w*. +\v 17 \w Therefore|strong="G5620"\w* \w if|strong="G1487"\w* \w anyone|strong="G5100"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*, \w he|strong="G3588"\w* \w is|strong="G3588"\w* \w a|strong="G1096"\w* \w new|strong="G2537"\w* \w creation|strong="G2937"\w*. \w The|strong="G1722"\w* old \w things|strong="G3588"\w* \w have|strong="G1096"\w* \w passed|strong="G3588"\w* \w away|strong="G3928"\w*. \w Behold|strong="G2400"\w*,\f + \fr 5:17 \ft “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w all|strong="G1722"\w* \w things|strong="G3588"\w* \w have|strong="G1096"\w* \w become|strong="G1096"\w* \w new|strong="G2537"\w*. +\v 18 \w But|strong="G1161"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w are|strong="G3588"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*, \w who|strong="G3588"\w* \w reconciled|strong="G2644"\w* \w us|strong="G1325"\w* \w to|strong="G2532"\w* \w himself|strong="G1438"\w* \w through|strong="G1223"\w* \w Jesus|strong="G2532"\w* \w Christ|strong="G5547"\w*, \w and|strong="G2532"\w* \w gave|strong="G1325"\w* \w to|strong="G2532"\w* \w us|strong="G1325"\w* \w the|strong="G2532"\w* \w ministry|strong="G1248"\w* \w of|strong="G1537"\w* \w reconciliation|strong="G2643"\w*; +\v 19 \w namely|strong="G5613"\w*, \w that|strong="G3754"\w* \w God|strong="G2316"\w* \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w reconciling|strong="G2644"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w* \w to|strong="G2532"\w* \w himself|strong="G1438"\w*, \w not|strong="G3361"\w* reckoning \w to|strong="G2532"\w* \w them|strong="G3588"\w* \w their|strong="G1438"\w* \w trespasses|strong="G3900"\w*, \w and|strong="G2532"\w* \w having|strong="G2532"\w* \w committed|strong="G5087"\w* \w to|strong="G2532"\w* \w us|strong="G2249"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w reconciliation|strong="G2643"\w*. +\p +\v 20 \w We|strong="G2249"\w* \w are|strong="G3588"\w* \w therefore|strong="G3767"\w* \w ambassadors|strong="G4243"\w* \w on|strong="G5228"\w* \w behalf|strong="G5228"\w* \w of|strong="G1223"\w* \w Christ|strong="G5547"\w*, \w as|strong="G5613"\w* \w though|strong="G5613"\w* \w God|strong="G2316"\w* \w were|strong="G3588"\w* entreating \w by|strong="G1223"\w* \w us|strong="G2249"\w*: \w we|strong="G2249"\w* \w beg|strong="G1189"\w* \w you|strong="G5613"\w* \w on|strong="G5228"\w* \w behalf|strong="G5228"\w* \w of|strong="G1223"\w* \w Christ|strong="G5547"\w*, \w be|strong="G2316"\w* \w reconciled|strong="G2644"\w* \w to|strong="G2316"\w* \w God|strong="G2316"\w*. +\v 21 \w For|strong="G5228"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w knew|strong="G1097"\w* \w no|strong="G3361"\w* sin \w he|strong="G3588"\w* \w made|strong="G4160"\w* \w to|strong="G2443"\w* \w be|strong="G1096"\w* sin \w on|strong="G1722"\w* \w our|strong="G2316"\w* \w behalf|strong="G5228"\w*, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w* \w we|strong="G2249"\w* \w might|strong="G2316"\w* \w become|strong="G1096"\w* \w the|strong="G1722"\w* \w righteousness|strong="G1343"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\c 6 +\p +\v 1 \w Working|strong="G4903"\w* \w together|strong="G4903"\w*, \w we|strong="G2532"\w* \w entreat|strong="G3870"\w* \w also|strong="G2532"\w* \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w do|strong="G2532"\w* \w not|strong="G3361"\w* \w receive|strong="G1209"\w* \w the|strong="G2532"\w* \w grace|strong="G5485"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w in|strong="G1519"\w* \w vain|strong="G2756"\w*. +\v 2 \w For|strong="G1063"\w* \w he|strong="G2532"\w* \w says|strong="G3004"\w*, +\q1 “\w At|strong="G1722"\w* \w an|strong="G2532"\w* \w acceptable|strong="G2144"\w* \w time|strong="G2540"\w* \w I|strong="G2532"\w* \w listened|strong="G1873"\w* \w to|strong="G2532"\w* \w you|strong="G4771"\w*. +\q1 \w In|strong="G1722"\w* \w a|strong="G2532"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* \w salvation|strong="G4991"\w* \w I|strong="G2532"\w* helped \w you|strong="G4771"\w*.”\x + \xo 6:2 \xt Isaiah 49:8\x* +\p \w Behold|strong="G2400"\w*, \w now|strong="G3568"\w* \w is|strong="G2532"\w* \w the|strong="G1722"\w* \w acceptable|strong="G2144"\w* \w time|strong="G2540"\w*. \w Behold|strong="G2400"\w*, \w now|strong="G3568"\w* \w is|strong="G2532"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* \w salvation|strong="G4991"\w*. +\v 3 \w We|strong="G2443"\w* \w give|strong="G1325"\w* \w no|strong="G3361"\w* occasion \w of|strong="G1722"\w* stumbling \w in|strong="G1722"\w* \w anything|strong="G3367"\w*, \w that|strong="G2443"\w* \w our|strong="G1722"\w* \w service|strong="G1248"\w* \w may|strong="G2443"\w* \w not|strong="G3361"\w* \w be|strong="G3361"\w* \w blamed|strong="G3469"\w*, +\v 4 \w but|strong="G2316"\w* \w in|strong="G1722"\w* \w everything|strong="G3956"\w* \w commending|strong="G4921"\w* \w ourselves|strong="G1438"\w* \w as|strong="G5613"\w* \w servants|strong="G1249"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*: \w in|strong="G1722"\w* \w great|strong="G4183"\w* \w endurance|strong="G5281"\w*, \w in|strong="G1722"\w* \w afflictions|strong="G2347"\w*, \w in|strong="G1722"\w* hardships, \w in|strong="G1722"\w* \w distresses|strong="G4730"\w*, +\v 5 \w in|strong="G1722"\w* \w beatings|strong="G4127"\w*, \w in|strong="G1722"\w* \w imprisonments|strong="G5438"\w*, \w in|strong="G1722"\w* riots, \w in|strong="G1722"\w* \w labors|strong="G2873"\w*, \w in|strong="G1722"\w* watchings, \w in|strong="G1722"\w* \w fastings|strong="G3521"\w*, +\v 6 \w in|strong="G1722"\w* pureness, \w in|strong="G1722"\w* \w knowledge|strong="G1108"\w*, \w in|strong="G1722"\w* \w perseverance|strong="G3115"\w*, \w in|strong="G1722"\w* \w kindness|strong="G5544"\w*, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*, \w in|strong="G1722"\w* sincere love, +\v 7 \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* truth, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w power|strong="G1411"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w*, \w by|strong="G1223"\w* \w the|strong="G1722"\w* \w armor|strong="G3696"\w* \w of|strong="G3056"\w* \w righteousness|strong="G1343"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* \w and|strong="G2532"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* left, +\v 8 \w by|strong="G1223"\w* \w glory|strong="G1391"\w* \w and|strong="G2532"\w* dishonor, \w by|strong="G1223"\w* \w evil|strong="G1223"\w* \w report|strong="G2162"\w* \w and|strong="G2532"\w* \w good|strong="G1223"\w* \w report|strong="G2162"\w*, \w as|strong="G5613"\w* \w deceivers|strong="G4108"\w* \w and|strong="G2532"\w* \w yet|strong="G2532"\w* true, +\v 9 \w as|strong="G5613"\w* unknown \w and|strong="G2532"\w* \w yet|strong="G2532"\w* \w well|strong="G2532"\w* \w known|strong="G1921"\w*, \w as|strong="G5613"\w* dying \w and|strong="G2532"\w* \w behold|strong="G2400"\w*—\w we|strong="G2532"\w* \w live|strong="G2198"\w*, \w as|strong="G5613"\w* \w punished|strong="G3811"\w* \w and|strong="G2532"\w* \w not|strong="G3361"\w* \w killed|strong="G2289"\w*, +\v 10 \w as|strong="G5613"\w* \w sorrowful|strong="G3076"\w* \w yet|strong="G2532"\w* \w always|strong="G3956"\w* \w rejoicing|strong="G5463"\w*, \w as|strong="G5613"\w* \w poor|strong="G4434"\w* \w yet|strong="G2532"\w* \w making|strong="G4148"\w* \w many|strong="G4183"\w* \w rich|strong="G4148"\w*, \w as|strong="G5613"\w* \w having|strong="G2192"\w* \w nothing|strong="G3367"\w* \w and|strong="G2532"\w* \w yet|strong="G2532"\w* \w possessing|strong="G2722"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*. +\p +\v 11 \w Our|strong="G4314"\w* \w mouth|strong="G4750"\w* \w is|strong="G3588"\w* \w open|strong="G4115"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*, \w Corinthians|strong="G2881"\w*. \w Our|strong="G4314"\w* \w heart|strong="G2588"\w* \w is|strong="G3588"\w* \w enlarged|strong="G4115"\w*. +\v 12 \w You|strong="G5210"\w* \w are|strong="G3588"\w* \w not|strong="G3756"\w* \w restricted|strong="G4729"\w* \w by|strong="G1722"\w* \w us|strong="G2249"\w*, \w but|strong="G1161"\w* \w you|strong="G5210"\w* \w are|strong="G3588"\w* \w restricted|strong="G4729"\w* \w by|strong="G1722"\w* \w your|strong="G1722"\w* own \w affections|strong="G4698"\w*. +\v 13 \w Now|strong="G1161"\w* \w in|strong="G2532"\w* return—\w I|strong="G2532"\w* \w speak|strong="G3004"\w* \w as|strong="G5613"\w* \w to|strong="G2532"\w* \w my|strong="G3588"\w* \w children|strong="G5043"\w*—\w you|strong="G5210"\w* \w also|strong="G2532"\w* \w open|strong="G4115"\w* \w your|strong="G2532"\w* hearts. +\p +\v 14 Don’t \w be|strong="G1096"\w* unequally yoked \w with|strong="G4314"\w* unbelievers, \w for|strong="G1063"\w* \w what|strong="G5101"\w* \w fellowship|strong="G2842"\w* \w do|strong="G5101"\w* \w righteousness|strong="G1343"\w* \w and|strong="G2532"\w* iniquity \w have|strong="G2532"\w*? \w Or|strong="G2228"\w* \w what|strong="G5101"\w* \w fellowship|strong="G2842"\w* \w does|strong="G5101"\w* \w light|strong="G5457"\w* \w have|strong="G2532"\w* \w with|strong="G4314"\w* \w darkness|strong="G4655"\w*? +\v 15 \w What|strong="G5101"\w* \w agreement|strong="G4857"\w* \w does|strong="G5101"\w* \w Christ|strong="G5547"\w* \w have|strong="G5101"\w* \w with|strong="G3326"\w* Belial? \w Or|strong="G2228"\w* \w what|strong="G5101"\w* portion \w does|strong="G5101"\w* \w a|strong="G2228"\w* \w believer|strong="G4103"\w* \w have|strong="G5101"\w* \w with|strong="G3326"\w* \w an|strong="G2228"\w* unbeliever? +\v 16 \w What|strong="G5101"\w* \w agreement|strong="G4783"\w* \w does|strong="G1510"\w* \w a|strong="G2532"\w* \w temple|strong="G3485"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w have|strong="G2532"\w* \w with|strong="G3326"\w* \w idols|strong="G1497"\w*? \w For|strong="G1063"\w* \w you|strong="G3754"\w* \w are|strong="G1510"\w* \w a|strong="G2532"\w* \w temple|strong="G3485"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w living|strong="G2198"\w* \w God|strong="G2316"\w*. \w Even|strong="G2532"\w* \w as|strong="G2531"\w* \w God|strong="G2316"\w* \w said|strong="G3004"\w*, “\w I|strong="G1473"\w* \w will|strong="G2316"\w* \w dwell|strong="G1774"\w* \w in|strong="G1722"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w walk|strong="G1704"\w* \w in|strong="G1722"\w* \w them|strong="G3588"\w*. \w I|strong="G1473"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w their|strong="G2532"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w my|strong="G1722"\w* \w people|strong="G2992"\w*.”\x + \xo 6:16 \xt Leviticus 26:12; Jeremiah 32:38; Ezekiel 37:27\x* +\v 17 \w Therefore|strong="G1352"\w* +\q1 “‘\w Come|strong="G1831"\w* \w out|strong="G1831"\w* \w from|strong="G1537"\w* \w among|strong="G1537"\w* \w them|strong="G3004"\w*, +\q2 \w and|strong="G2532"\w* \w be|strong="G2532"\w* separate,’ \w says|strong="G3004"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*. +\q1 ‘Touch \w no|strong="G3361"\w* unclean \w thing|strong="G3004"\w*. +\q2 \w I|strong="G2532"\w* \w will|strong="G2532"\w* \w receive|strong="G1352"\w* \w you|strong="G5210"\w*.\x + \xo 6:17 \xt Isaiah 52:11; Ezekiel 20:34,41\x* +\q1 +\v 18 \w I|strong="G1473"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w a|strong="G2532"\w* \w Father|strong="G3962"\w*. +\q2 \w You|strong="G5210"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w to|strong="G1519"\w* \w me|strong="G1473"\w* \w sons|strong="G5207"\w* \w and|strong="G2532"\w* \w daughters|strong="G2364"\w*,’ +\p \w says|strong="G3004"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Almighty|strong="G3841"\w*.”\x + \xo 6:18 \xt 2 Samuel 7:14; 7:8\x* +\c 7 +\p +\v 1 \w Having|strong="G2192"\w* \w therefore|strong="G3767"\w* \w these|strong="G3778"\w* \w promises|strong="G1860"\w*, beloved, \w let|strong="G3767"\w*’\w s|strong="G2192"\w* \w cleanse|strong="G2511"\w* \w ourselves|strong="G1438"\w* \w from|strong="G2532"\w* \w all|strong="G3956"\w* \w defilement|strong="G3436"\w* \w of|strong="G4151"\w* \w flesh|strong="G4561"\w* \w and|strong="G2532"\w* \w spirit|strong="G4151"\w*, \w perfecting|strong="G2005"\w* holiness \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w fear|strong="G5401"\w* \w of|strong="G4151"\w* \w God|strong="G2316"\w*. +\p +\v 2 Open your hearts \w to|strong="G3762"\w* \w us|strong="G2249"\w*. \w We|strong="G2249"\w* wronged \w no|strong="G3762"\w* \w one|strong="G3762"\w*. \w We|strong="G2249"\w* \w corrupted|strong="G5351"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w*. \w We|strong="G2249"\w* \w took|strong="G4122"\w* \w advantage|strong="G4122"\w* \w of|strong="G3762"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w*. +\v 3 \w I|strong="G1473"\w* \w say|strong="G3004"\w* \w this|strong="G3588"\w* \w not|strong="G3756"\w* \w to|strong="G1519"\w* \w condemn|strong="G2633"\w* \w you|strong="G3754"\w*, \w for|strong="G1063"\w* \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w said|strong="G3004"\w* \w before|strong="G4314"\w* \w that|strong="G3754"\w* \w you|strong="G3754"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w our|strong="G2532"\w* \w hearts|strong="G2588"\w* \w to|strong="G1519"\w* \w die|strong="G4880"\w* \w together|strong="G4314"\w* \w and|strong="G2532"\w* \w live|strong="G4800"\w* \w together|strong="G4314"\w*. +\v 4 \w Great|strong="G4183"\w* \w is|strong="G3588"\w* \w my|strong="G3956"\w* \w boldness|strong="G3954"\w* \w of|strong="G1909"\w* \w speech|strong="G3954"\w* \w toward|strong="G4314"\w* \w you|strong="G5210"\w*. \w Great|strong="G4183"\w* \w is|strong="G3588"\w* \w my|strong="G3956"\w* \w boasting|strong="G2746"\w* \w on|strong="G1909"\w* \w your|strong="G3956"\w* \w behalf|strong="G5228"\w*. \w I|strong="G1473"\w* \w am|strong="G1473"\w* \w filled|strong="G4137"\w* \w with|strong="G4314"\w* \w comfort|strong="G3874"\w*. \w I|strong="G1473"\w* overflow \w with|strong="G4314"\w* \w joy|strong="G5479"\w* \w in|strong="G1909"\w* \w all|strong="G3956"\w* \w our|strong="G3956"\w* \w affliction|strong="G2347"\w*. +\p +\v 5 \w For|strong="G1063"\w* \w even|strong="G2532"\w* \w when|strong="G2532"\w* \w we|strong="G2249"\w* \w had|strong="G2192"\w* \w come|strong="G2064"\w* \w into|strong="G1519"\w* \w Macedonia|strong="G3109"\w*, \w our|strong="G2532"\w* \w flesh|strong="G4561"\w* \w had|strong="G2192"\w* \w no|strong="G3762"\w* relief, \w but|strong="G2532"\w* \w we|strong="G2249"\w* \w were|strong="G3588"\w* \w afflicted|strong="G2346"\w* \w on|strong="G1722"\w* \w every|strong="G3956"\w* \w side|strong="G3956"\w*. \w Fightings|strong="G3163"\w* \w were|strong="G3588"\w* \w outside|strong="G1855"\w*. \w Fear|strong="G5401"\w* \w was|strong="G3588"\w* \w inside|strong="G2081"\w*. +\v 6 Nevertheless, \w he|strong="G3588"\w* \w who|strong="G3588"\w* \w comforts|strong="G3870"\w* \w the|strong="G1722"\w* \w lowly|strong="G5011"\w*, \w God|strong="G2316"\w*, \w comforted|strong="G3870"\w* \w us|strong="G2249"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w coming|strong="G3952"\w* \w of|strong="G2316"\w* \w Titus|strong="G5103"\w*, +\v 7 \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w by|strong="G1722"\w* \w his|strong="G1909"\w* \w coming|strong="G3952"\w* \w only|strong="G3440"\w*, \w but|strong="G1161"\w* \w also|strong="G2532"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w comfort|strong="G3874"\w* \w with|strong="G1722"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w comforted|strong="G3870"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w* \w while|strong="G1722"\w* \w he|strong="G2532"\w* told \w us|strong="G2249"\w* \w of|strong="G2532"\w* \w your|strong="G2532"\w* \w longing|strong="G1972"\w*, \w your|strong="G2532"\w* \w mourning|strong="G3602"\w*, \w and|strong="G2532"\w* \w your|strong="G2532"\w* \w zeal|strong="G2205"\w* \w for|strong="G5228"\w* \w me|strong="G1473"\w*, \w so|strong="G2532"\w* \w that|strong="G3739"\w* \w I|strong="G1473"\w* \w rejoiced|strong="G5463"\w* \w still|strong="G3123"\w* \w more|strong="G3123"\w*. +\p +\v 8 \w For|strong="G1063"\w* \w though|strong="G1487"\w* \w I|strong="G2532"\w* \w grieved|strong="G3076"\w* \w you|strong="G5210"\w* \w with|strong="G1722"\w* \w my|strong="G1722"\w* \w letter|strong="G1992"\w*, \w I|strong="G2532"\w* \w do|strong="G2532"\w* \w not|strong="G3756"\w* \w regret|strong="G3338"\w* \w it|strong="G2532"\w*, \w though|strong="G1487"\w* \w I|strong="G2532"\w* \w did|strong="G2532"\w* \w regret|strong="G3338"\w* \w it|strong="G2532"\w*. \w For|strong="G1063"\w* \w I|strong="G2532"\w* see \w that|strong="G3754"\w* \w my|strong="G1722"\w* \w letter|strong="G1992"\w* \w made|strong="G3076"\w* \w you|strong="G5210"\w* \w grieve|strong="G3076"\w*, \w though|strong="G1487"\w* \w just|strong="G2532"\w* \w for|strong="G1063"\w* \w a|strong="G2532"\w* \w while|strong="G1722"\w*. +\v 9 \w I|strong="G1473"\w* \w now|strong="G3568"\w* \w rejoice|strong="G5463"\w*, \w not|strong="G3756"\w* \w that|strong="G3754"\w* \w you|strong="G3754"\w* \w were|strong="G3748"\w* \w grieved|strong="G3076"\w*, \w but|strong="G1063"\w* \w that|strong="G3754"\w* \w you|strong="G3754"\w* \w were|strong="G3748"\w* \w grieved|strong="G3076"\w* \w to|strong="G1519"\w* \w repentance|strong="G3341"\w*. \w For|strong="G1063"\w* \w you|strong="G3754"\w* \w were|strong="G3748"\w* \w grieved|strong="G3076"\w* \w in|strong="G1722"\w* \w a|strong="G1519"\w* \w godly|strong="G2316"\w* \w way|strong="G2596"\w*, \w that|strong="G3754"\w* \w you|strong="G3754"\w* \w might|strong="G2316"\w* \w suffer|strong="G2210"\w* \w loss|strong="G2210"\w* \w by|strong="G1722"\w* \w us|strong="G1519"\w* \w in|strong="G1722"\w* \w nothing|strong="G3367"\w*. +\v 10 \w For|strong="G1063"\w* \w godly|strong="G2316"\w* \w sorrow|strong="G3077"\w* \w produces|strong="G2716"\w* \w repentance|strong="G3341"\w* \w leading|strong="G1519"\w* \w to|strong="G1519"\w* \w salvation|strong="G4991"\w*, \w which|strong="G3588"\w* \w brings|strong="G2716"\w* \w no|strong="G3588"\w* regret. \w But|strong="G1161"\w* \w the|strong="G1519"\w* \w sorrow|strong="G3077"\w* \w of|strong="G2316"\w* \w the|strong="G1519"\w* \w world|strong="G2889"\w* \w produces|strong="G2716"\w* \w death|strong="G2288"\w*. +\v 11 \w For|strong="G1063"\w* \w behold|strong="G2400"\w*, \w this|strong="G3778"\w* \w same|strong="G3778"\w* \w thing|strong="G3956"\w*, \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w were|strong="G1510"\w* \w grieved|strong="G3076"\w* \w in|strong="G1722"\w* \w a|strong="G1722"\w* \w godly|strong="G2316"\w* \w way|strong="G2596"\w*, \w what|strong="G3588"\w* earnest \w care|strong="G4710"\w* \w it|strong="G1063"\w* worked \w in|strong="G1722"\w* \w you|strong="G5210"\w*. \w Yes|strong="G1063"\w*, \w what|strong="G3588"\w* defense, \w indignation|strong="G2205"\w*, \w fear|strong="G5401"\w*, \w longing|strong="G1972"\w*, \w zeal|strong="G2205"\w*, \w and|strong="G2316"\w* vindication! \w In|strong="G1722"\w* \w everything|strong="G3956"\w* \w you|strong="G5210"\w* \w demonstrated|strong="G4921"\w* \w yourselves|strong="G1438"\w* \w to|strong="G2596"\w* \w be|strong="G1510"\w* pure \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w matter|strong="G4229"\w*. +\v 12 \w So|strong="G2532"\w* \w although|strong="G5210"\w* \w I|strong="G1473"\w* \w wrote|strong="G1125"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*, \w I|strong="G1473"\w* \w wrote|strong="G1125"\w* \w not|strong="G3756"\w* \w for|strong="G5228"\w* \w his|strong="G2532"\w* \w cause|strong="G1752"\w* \w that|strong="G3588"\w* \w did|strong="G2532"\w* \w the|strong="G2532"\w* wrong, \w nor|strong="G3761"\w* \w for|strong="G5228"\w* \w his|strong="G2532"\w* \w cause|strong="G1752"\w* \w that|strong="G3588"\w* suffered \w the|strong="G2532"\w* wrong, \w but|strong="G2532"\w* \w that|strong="G3588"\w* \w your|strong="G2532"\w* earnest \w care|strong="G4710"\w* \w for|strong="G5228"\w* \w us|strong="G2249"\w* \w might|strong="G2532"\w* \w be|strong="G2532"\w* \w revealed|strong="G5319"\w* \w in|strong="G2532"\w* \w you|strong="G5210"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w sight|strong="G1799"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\v 13 \w Therefore|strong="G1223"\w* \w we|strong="G2249"\w* \w have|strong="G1473"\w* been \w comforted|strong="G3870"\w*. \w In|strong="G1909"\w* \w our|strong="G1223"\w* \w comfort|strong="G3874"\w* \w we|strong="G2249"\w* \w rejoiced|strong="G5463"\w* \w the|strong="G3956"\w* \w more|strong="G3123"\w* \w exceedingly|strong="G4056"\w* \w for|strong="G3754"\w* \w the|strong="G3956"\w* \w joy|strong="G5479"\w* \w of|strong="G4151"\w* \w Titus|strong="G5103"\w*, \w because|strong="G3754"\w* \w his|strong="G3956"\w* \w spirit|strong="G4151"\w* \w has|strong="G3778"\w* been refreshed \w by|strong="G1223"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w*. +\v 14 \w For|strong="G3754"\w* \w if|strong="G1487"\w* \w in|strong="G1722"\w* \w anything|strong="G5100"\w* \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w boasted|strong="G2744"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w on|strong="G1909"\w* \w your|strong="G2532"\w* \w behalf|strong="G5228"\w*, \w I|strong="G1473"\w* \w was|strong="G1096"\w* \w not|strong="G3756"\w* \w disappointed|strong="G2617"\w*. \w But|strong="G2532"\w* \w as|strong="G5613"\w* \w we|strong="G2249"\w* \w spoke|strong="G2980"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* truth, \w so|strong="G3779"\w* \w our|strong="G2532"\w* \w glorying|strong="G2746"\w* \w also|strong="G2532"\w* \w which|strong="G3588"\w* \w I|strong="G1473"\w* \w made|strong="G1096"\w* \w before|strong="G1909"\w* \w Titus|strong="G5103"\w* \w was|strong="G1096"\w* \w found|strong="G1096"\w* \w to|strong="G2532"\w* \w be|strong="G1096"\w* truth. +\v 15 \w His|strong="G3956"\w* \w affection|strong="G4698"\w* \w is|strong="G1510"\w* \w more|strong="G2532"\w* \w abundantly|strong="G4056"\w* \w toward|strong="G1519"\w* \w you|strong="G5210"\w*, \w while|strong="G5613"\w* \w he|strong="G2532"\w* remembers \w all|strong="G3956"\w* \w of|strong="G2532"\w* \w your|strong="G2532"\w* \w obedience|strong="G5218"\w*, \w how|strong="G5613"\w* \w with|strong="G3326"\w* \w fear|strong="G5401"\w* \w and|strong="G2532"\w* \w trembling|strong="G5156"\w* \w you|strong="G5210"\w* \w received|strong="G1209"\w* \w him|strong="G3588"\w*. +\v 16 \w I|strong="G3754"\w* \w rejoice|strong="G5463"\w* \w that|strong="G3754"\w* \w in|strong="G1722"\w* \w everything|strong="G3956"\w* \w I|strong="G3754"\w* \w am|strong="G5463"\w* \w confident|strong="G2292"\w* \w concerning|strong="G1722"\w* \w you|strong="G5210"\w*. +\c 8 +\p +\v 1 \w Moreover|strong="G1161"\w*, brothers, \w we|strong="G1161"\w* \w make|strong="G1107"\w* \w known|strong="G1107"\w* \w to|strong="G1722"\w* \w you|strong="G5210"\w* \w the|strong="G1722"\w* \w grace|strong="G5485"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w which|strong="G3588"\w* \w has|strong="G2316"\w* \w been|strong="G1325"\w* \w given|strong="G1325"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w assemblies|strong="G1577"\w* \w of|strong="G2316"\w* \w Macedonia|strong="G3109"\w*, +\v 2 \w how|strong="G3754"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* severe \w ordeal|strong="G1382"\w* \w of|strong="G2532"\w* \w affliction|strong="G2347"\w*, \w the|strong="G1722"\w* \w abundance|strong="G4052"\w* \w of|strong="G2532"\w* \w their|strong="G2532"\w* \w joy|strong="G5479"\w* \w and|strong="G2532"\w* \w their|strong="G2532"\w* \w deep|strong="G4183"\w* \w poverty|strong="G4432"\w* \w abounded|strong="G4052"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w riches|strong="G4149"\w* \w of|strong="G2532"\w* \w their|strong="G2532"\w* generosity. +\v 3 \w For|strong="G3754"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w their|strong="G2532"\w* \w power|strong="G1411"\w*, \w I|strong="G2532"\w* \w testify|strong="G3140"\w*, yes \w and|strong="G2532"\w* \w beyond|strong="G3844"\w* \w their|strong="G2532"\w* \w power|strong="G1411"\w*, \w they|strong="G2532"\w* \w gave|strong="G2532"\w* \w of|strong="G2532"\w* \w their|strong="G2532"\w* own \w accord|strong="G2596"\w*, +\v 4 \w begging|strong="G1189"\w* \w us|strong="G1519"\w* \w with|strong="G3326"\w* \w much|strong="G4183"\w* entreaty \w to|strong="G1519"\w* receive \w this|strong="G3588"\w* \w grace|strong="G5485"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w fellowship|strong="G2842"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w service|strong="G1248"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* saints. +\v 5 \w This|strong="G3588"\w* \w was|strong="G3588"\w* \w not|strong="G3756"\w* \w as|strong="G2531"\w* \w we|strong="G2249"\w* \w had|strong="G2532"\w* \w expected|strong="G1679"\w*, \w but|strong="G2532"\w* \w first|strong="G4413"\w* \w they|strong="G2532"\w* \w gave|strong="G1325"\w* \w their|strong="G1438"\w* \w own|strong="G1438"\w* \w selves|strong="G1438"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w us|strong="G1325"\w* \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w will|strong="G2307"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w*. +\v 6 \w So|strong="G3779"\w* \w we|strong="G2249"\w* \w urged|strong="G3870"\w* \w Titus|strong="G5103"\w*, \w that|strong="G2443"\w* \w as|strong="G2531"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w made|strong="G1519"\w* \w a|strong="G2532"\w* \w beginning|strong="G4278"\w* \w before|strong="G1519"\w*, \w so|strong="G3779"\w* \w he|strong="G2532"\w* \w would|strong="G2532"\w* \w also|strong="G2532"\w* \w complete|strong="G2005"\w* \w in|strong="G1519"\w* \w you|strong="G5210"\w* \w this|strong="G3778"\w* \w grace|strong="G5485"\w*. +\v 7 \w But|strong="G2532"\w* \w as|strong="G5618"\w* \w you|strong="G5210"\w* \w abound|strong="G4052"\w* \w in|strong="G1722"\w* \w everything|strong="G3956"\w*—\w in|strong="G1722"\w* \w faith|strong="G4102"\w*, \w utterance|strong="G3056"\w*, \w knowledge|strong="G1108"\w*, \w all|strong="G3956"\w* \w earnestness|strong="G4710"\w*, \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w your|strong="G2532"\w* love \w to|strong="G2443"\w* \w us|strong="G2249"\w*—see \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w also|strong="G2532"\w* \w abound|strong="G4052"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* \w grace|strong="G5485"\w*. +\p +\v 8 \w I|strong="G2532"\w* \w speak|strong="G3004"\w* \w not|strong="G3756"\w* \w by|strong="G1223"\w* \w way|strong="G2596"\w* \w of|strong="G1223"\w* \w commandment|strong="G2003"\w*, \w but|strong="G2532"\w* \w as|strong="G2596"\w* \w proving|strong="G1381"\w* \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w earnestness|strong="G4710"\w* \w of|strong="G1223"\w* \w others|strong="G2087"\w* \w the|strong="G2532"\w* \w sincerity|strong="G1103"\w* \w also|strong="G2532"\w* \w of|strong="G1223"\w* \w your|strong="G5212"\w* love. +\v 9 \w For|strong="G1063"\w* \w you|strong="G5210"\w* \w know|strong="G1097"\w* \w the|strong="G1223"\w* \w grace|strong="G5485"\w* \w of|strong="G1223"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w that|strong="G3754"\w* \w though|strong="G3754"\w* \w he|strong="G3754"\w* \w was|strong="G1510"\w* \w rich|strong="G4145"\w*, \w yet|strong="G1063"\w* \w for|strong="G1063"\w* \w your|strong="G1223"\w* \w sakes|strong="G1223"\w* \w he|strong="G3754"\w* \w became|strong="G4433"\w* \w poor|strong="G4433"\w*, \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w through|strong="G1223"\w* \w his|strong="G1223"\w* \w poverty|strong="G4432"\w* \w might|strong="G5210"\w* \w become|strong="G1510"\w* \w rich|strong="G4145"\w*. +\v 10 \w I|strong="G2532"\w* \w give|strong="G1325"\w* \w advice|strong="G1106"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w*: \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w expedient|strong="G4851"\w* \w for|strong="G1063"\w* \w you|strong="G5210"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w the|strong="G1722"\w* \w first|strong="G3588"\w* \w to|strong="G2532"\w* start \w a|strong="G2532"\w* \w year|strong="G4070"\w* \w ago|strong="G4070"\w*, \w not|strong="G3756"\w* \w only|strong="G3440"\w* \w to|strong="G2532"\w* \w do|strong="G4160"\w*, \w but|strong="G2532"\w* \w also|strong="G2532"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w willing|strong="G2309"\w*. +\v 11 \w But|strong="G1161"\w* \w now|strong="G1161"\w* \w complete|strong="G2005"\w* \w the|strong="G2532"\w* \w doing|strong="G4160"\w* \w also|strong="G2532"\w*, \w that|strong="G3588"\w* \w as|strong="G1161"\w* \w there|strong="G2532"\w* \w was|strong="G3588"\w* \w the|strong="G2532"\w* \w readiness|strong="G4288"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w willing|strong="G2309"\w*, \w so|strong="G3779"\w* \w there|strong="G2532"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* \w the|strong="G2532"\w* \w completion|strong="G2005"\w* \w also|strong="G2532"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w your|strong="G2192"\w* \w ability|strong="G2192"\w*. +\v 12 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w the|strong="G3588"\w* \w readiness|strong="G4288"\w* \w is|strong="G3588"\w* \w there|strong="G1063"\w*, \w it|strong="G1063"\w* \w is|strong="G3588"\w* \w acceptable|strong="G2144"\w* \w according|strong="G3756"\w* \w to|strong="G3756"\w* \w what|strong="G3588"\w* \w you|strong="G1437"\w* \w have|strong="G2192"\w*, \w not|strong="G3756"\w* \w according|strong="G3756"\w* \w to|strong="G3756"\w* \w what|strong="G3588"\w* \w you|strong="G1437"\w* don’\w t|strong="G3588"\w* \w have|strong="G2192"\w*. +\v 13 \w For|strong="G1063"\w* \w this|strong="G3588"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w that|strong="G2443"\w* \w others|strong="G3588"\w* \w may|strong="G2443"\w* \w be|strong="G3756"\w* eased \w and|strong="G3588"\w* \w you|strong="G5210"\w* distressed, +\v 14 \w but|strong="G2532"\w* \w for|strong="G1519"\w* \w equality|strong="G2471"\w*. \w Your|strong="G2532"\w* \w abundance|strong="G4051"\w* \w at|strong="G1722"\w* \w this|strong="G3588"\w* \w present|strong="G3568"\w* \w time|strong="G2540"\w* supplies \w their|strong="G2532"\w* \w lack|strong="G5303"\w*, \w that|strong="G2443"\w* \w their|strong="G2532"\w* \w abundance|strong="G4051"\w* \w also|strong="G2532"\w* \w may|strong="G2532"\w* \w become|strong="G1096"\w* \w a|strong="G1096"\w* supply \w for|strong="G1519"\w* \w your|strong="G2532"\w* \w lack|strong="G5303"\w*, \w that|strong="G2443"\w* \w there|strong="G2532"\w* \w may|strong="G2532"\w* \w be|strong="G1096"\w* \w equality|strong="G2471"\w*. +\v 15 \w As|strong="G2531"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, “\w He|strong="G2532"\w* \w who|strong="G3588"\w* gathered \w much|strong="G4183"\w* \w had|strong="G2532"\w* \w nothing|strong="G3756"\w* left \w over|strong="G4121"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* gathered \w little|strong="G3641"\w* \w had|strong="G2532"\w* \w no|strong="G3756"\w* \w lack|strong="G1641"\w*.”\x + \xo 8:15 \xt Exodus 16:18\x* +\p +\v 16 \w But|strong="G1161"\w* \w thanks|strong="G5485"\w* \w be|strong="G2316"\w* \w to|strong="G1722"\w* \w God|strong="G2316"\w*, \w who|strong="G3588"\w* \w puts|strong="G1325"\w* \w the|strong="G1722"\w* same earnest \w care|strong="G4710"\w* \w for|strong="G5228"\w* \w you|strong="G5210"\w* \w into|strong="G1722"\w* \w the|strong="G1722"\w* \w heart|strong="G2588"\w* \w of|strong="G2316"\w* \w Titus|strong="G5103"\w*. +\v 17 \w For|strong="G3754"\w* \w he|strong="G1161"\w* \w indeed|strong="G3303"\w* \w accepted|strong="G1209"\w* \w our|strong="G4314"\w* \w exhortation|strong="G3874"\w*, \w but|strong="G1161"\w* \w being|strong="G5225"\w* himself \w very|strong="G3588"\w* \w earnest|strong="G4705"\w*, \w he|strong="G1161"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w* \w of|strong="G3588"\w* \w his|strong="G3754"\w* own \w accord|strong="G4314"\w*. +\v 18 \w We|strong="G3739"\w* \w have|strong="G3956"\w* \w sent|strong="G4842"\w* \w together|strong="G3326"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w* \w the|strong="G1722"\w* brother \w whose|strong="G3739"\w* \w praise|strong="G1868"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Good|strong="G3956"\w* \w News|strong="G2098"\w* \w is|strong="G3588"\w* known \w throughout|strong="G1722"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w assemblies|strong="G1577"\w*. +\v 19 \w Not|strong="G3756"\w* \w only|strong="G3440"\w* \w so|strong="G2532"\w*, \w but|strong="G1161"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w also|strong="G2532"\w* \w appointed|strong="G5500"\w* \w by|strong="G5259"\w* \w the|strong="G2532"\w* \w assemblies|strong="G1577"\w* \w to|strong="G4314"\w* \w travel|strong="G4898"\w* \w with|strong="G4862"\w* \w us|strong="G2249"\w* \w in|strong="G2532"\w* \w this|strong="G3778"\w* \w grace|strong="G5485"\w*, \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w served|strong="G1247"\w* \w by|strong="G5259"\w* \w us|strong="G2249"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w of|strong="G5259"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w himself|strong="G4862"\w*, \w and|strong="G2532"\w* \w to|strong="G4314"\w* show \w our|strong="G2532"\w* \w readiness|strong="G4288"\w*. +\v 20 \w We|strong="G2249"\w* \w are|strong="G3588"\w* \w avoiding|strong="G4724"\w* \w this|strong="G3778"\w*, \w that|strong="G3588"\w* \w any|strong="G5100"\w* \w man|strong="G5100"\w* \w should|strong="G5100"\w* \w blame|strong="G3469"\w* \w us|strong="G2249"\w* \w concerning|strong="G1722"\w* \w this|strong="G3778"\w* abundance \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w administered|strong="G1247"\w* \w by|strong="G1722"\w* \w us|strong="G2249"\w*. +\v 21 \w Having|strong="G2532"\w* \w regard|strong="G4306"\w* \w for|strong="G1063"\w* \w honorable|strong="G2570"\w* \w things|strong="G2570"\w*, \w not|strong="G3756"\w* \w only|strong="G3440"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w sight|strong="G1799"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w but|strong="G2532"\w* \w also|strong="G2532"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w sight|strong="G1799"\w* \w of|strong="G2532"\w* men. +\v 22 \w We|strong="G2249"\w* \w have|strong="G1473"\w* \w sent|strong="G4842"\w* \w with|strong="G1722"\w* \w them|strong="G3588"\w* \w our|strong="G1722"\w* brother \w whom|strong="G3739"\w* \w we|strong="G2249"\w* \w have|strong="G1473"\w* \w many|strong="G4183"\w* \w times|strong="G4178"\w* \w proved|strong="G1381"\w* \w earnest|strong="G4705"\w* \w in|strong="G1722"\w* \w many|strong="G4183"\w* \w things|strong="G3588"\w*, \w but|strong="G1161"\w* \w now|strong="G1161"\w* \w much|strong="G4183"\w* \w more|strong="G4183"\w* \w earnest|strong="G4705"\w*, \w by|strong="G1722"\w* reason \w of|strong="G1722"\w* \w the|strong="G1722"\w* \w great|strong="G4183"\w* \w confidence|strong="G4006"\w* \w which|strong="G3739"\w* \w he|strong="G1161"\w* \w has|strong="G3739"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w*. +\v 23 \w As|strong="G1519"\w* \w for|strong="G1519"\w* \w Titus|strong="G5103"\w*, \w he|strong="G2532"\w* \w is|strong="G5547"\w* \w my|strong="G1699"\w* \w partner|strong="G2844"\w* \w and|strong="G2532"\w* \w fellow|strong="G4904"\w* \w worker|strong="G4904"\w* \w for|strong="G1519"\w* \w you|strong="G5210"\w*. \w As|strong="G1519"\w* \w for|strong="G1519"\w* \w our|strong="G2532"\w* brothers, \w they|strong="G2532"\w* \w are|strong="G2532"\w* \w the|strong="G2532"\w* apostles \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w assemblies|strong="G1577"\w*, \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w of|strong="G2532"\w* \w Christ|strong="G5547"\w*. +\v 24 \w Therefore|strong="G3767"\w* \w show|strong="G1731"\w* \w the|strong="G2532"\w* \w proof|strong="G1732"\w* \w of|strong="G2532"\w* \w your|strong="G2532"\w* love \w to|strong="G1519"\w* \w them|strong="G3588"\w* \w before|strong="G1519"\w* \w the|strong="G2532"\w* \w assemblies|strong="G1577"\w*, \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w our|strong="G2532"\w* \w boasting|strong="G2746"\w* \w on|strong="G1519"\w* \w your|strong="G2532"\w* \w behalf|strong="G5228"\w*. +\c 9 +\p +\v 1 \w It|strong="G1063"\w* \w is|strong="G1510"\w* \w indeed|strong="G3303"\w* unnecessary \w for|strong="G1063"\w* \w me|strong="G1473"\w* \w to|strong="G1519"\w* \w write|strong="G1125"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w concerning|strong="G4012"\w* \w the|strong="G1519"\w* \w service|strong="G1248"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* saints, +\v 2 \w for|strong="G1063"\w* \w I|strong="G3739"\w* \w know|strong="G1492"\w* \w your|strong="G2532"\w* \w readiness|strong="G4288"\w*, \w of|strong="G2532"\w* \w which|strong="G3739"\w* \w I|strong="G3739"\w* \w boast|strong="G2744"\w* \w on|strong="G5228"\w* \w your|strong="G2532"\w* \w behalf|strong="G5228"\w* \w to|strong="G2532"\w* \w those|strong="G3588"\w* \w of|strong="G2532"\w* \w Macedonia|strong="G3110"\w*, \w that|strong="G3754"\w* Achaia \w has|strong="G3739"\w* \w been|strong="G2532"\w* \w prepared|strong="G3903"\w* \w for|strong="G1063"\w* \w the|strong="G2532"\w* past \w year|strong="G4070"\w*. \w Your|strong="G2532"\w* \w zeal|strong="G2205"\w* \w has|strong="G3739"\w* \w stirred|strong="G2532"\w* \w up|strong="G2532"\w* \w very|strong="G4183"\w* \w many|strong="G4183"\w* \w of|strong="G2532"\w* \w them|strong="G3588"\w*. +\v 3 \w But|strong="G1161"\w* \w I|strong="G1473"\w* \w have|strong="G1473"\w* \w sent|strong="G3992"\w* \w the|strong="G1722"\w* brothers \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w our|strong="G1722"\w* \w boasting|strong="G2745"\w* \w on|strong="G1722"\w* \w your|strong="G1722"\w* \w behalf|strong="G5228"\w* \w may|strong="G2443"\w* \w not|strong="G3361"\w* \w be|strong="G1510"\w* \w in|strong="G1722"\w* \w vain|strong="G2758"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* \w respect|strong="G3313"\w*, \w that|strong="G2443"\w*, \w just|strong="G2531"\w* \w as|strong="G2531"\w* \w I|strong="G1473"\w* \w said|strong="G3004"\w*, \w you|strong="G5210"\w* \w may|strong="G2443"\w* \w be|strong="G1510"\w* \w prepared|strong="G3903"\w*, +\v 4 \w lest|strong="G3361"\w* \w by|strong="G1722"\w* \w any|strong="G1437"\w* \w means|strong="G3381"\w*, \w if|strong="G1437"\w* \w anyone|strong="G1437"\w* \w from|strong="G2064"\w* \w Macedonia|strong="G3110"\w* \w comes|strong="G2064"\w* \w there|strong="G2532"\w* \w with|strong="G1722"\w* \w me|strong="G1473"\w* \w and|strong="G2532"\w* \w finds|strong="G2147"\w* \w you|strong="G5210"\w* unprepared, \w we|strong="G2249"\w* (\w to|strong="G2443"\w* \w say|strong="G3004"\w* \w nothing|strong="G3361"\w* \w of|strong="G2532"\w* \w you|strong="G5210"\w*) \w would|strong="G2532"\w* \w be|strong="G2532"\w* \w disappointed|strong="G2617"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* \w confident|strong="G1722"\w* \w boasting|strong="G3004"\w*. +\v 5 \w I|strong="G2532"\w* \w thought|strong="G2233"\w* \w it|strong="G2532"\w* \w necessary|strong="G3767"\w* \w therefore|strong="G3767"\w* \w to|strong="G1519"\w* \w entreat|strong="G3870"\w* \w the|strong="G2532"\w* brothers \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w would|strong="G2532"\w* \w go|strong="G4281"\w* \w before|strong="G1519"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w arrange|strong="G4294"\w* \w ahead|strong="G4281"\w* \w of|strong="G2532"\w* time \w the|strong="G2532"\w* generous \w gift|strong="G2129"\w* \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w promised|strong="G4279"\w* \w before|strong="G1519"\w*, \w that|strong="G2443"\w* \w the|strong="G2532"\w* \w same|strong="G3778"\w* \w might|strong="G2532"\w* \w be|strong="G1510"\w* \w ready|strong="G2092"\w* \w as|strong="G5613"\w* \w a|strong="G5613"\w* matter \w of|strong="G2532"\w* generosity, \w and|strong="G2532"\w* \w not|strong="G3361"\w* \w of|strong="G2532"\w* \w greediness|strong="G4124"\w*. +\p +\v 6 Remember \w this|strong="G3778"\w*: \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w sows|strong="G4687"\w* \w sparingly|strong="G5340"\w* \w will|strong="G2532"\w* \w also|strong="G2532"\w* \w reap|strong="G2325"\w* \w sparingly|strong="G5340"\w*. \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w sows|strong="G4687"\w* \w bountifully|strong="G2129"\w* \w will|strong="G2532"\w* \w also|strong="G2532"\w* \w reap|strong="G2325"\w* \w bountifully|strong="G2129"\w*. +\v 7 \w Let|strong="G1063"\w* \w each|strong="G1538"\w* \w man|strong="G1538"\w* give \w according|strong="G1538"\w* \w as|strong="G2531"\w* \w he|strong="G3588"\w* \w has|strong="G2316"\w* determined \w in|strong="G2316"\w* \w his|strong="G3588"\w* \w heart|strong="G2588"\w*, \w not|strong="G3361"\w* \w grudgingly|strong="G1537"\w* \w or|strong="G2228"\w* \w under|strong="G1537"\w* compulsion, \w for|strong="G1063"\w* \w God|strong="G2316"\w* loves \w a|strong="G2228"\w* \w cheerful|strong="G2431"\w* \w giver|strong="G1395"\w*. +\v 8 \w And|strong="G1161"\w* \w God|strong="G2316"\w* \w is|strong="G3588"\w* \w able|strong="G2192"\w* \w to|strong="G1519"\w* \w make|strong="G1519"\w* \w all|strong="G3956"\w* \w grace|strong="G5485"\w* \w abound|strong="G4052"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w*, \w that|strong="G2443"\w* \w you|strong="G5210"\w*, \w always|strong="G3842"\w* \w having|strong="G2192"\w* \w all|strong="G3956"\w* sufficiency \w in|strong="G1722"\w* \w everything|strong="G3956"\w*, \w may|strong="G2443"\w* \w abound|strong="G4052"\w* \w to|strong="G1519"\w* \w every|strong="G3956"\w* \w good|strong="G3956"\w* \w work|strong="G2041"\w*. +\v 9 \w As|strong="G2531"\w* \w it|strong="G2531"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, +\q1 “\w He|strong="G3588"\w* \w has|strong="G1519"\w* \w scattered|strong="G4650"\w* \w abroad|strong="G4650"\w*. \w He|strong="G3588"\w* \w has|strong="G1519"\w* \w given|strong="G1325"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w poor|strong="G3993"\w*. +\q2 \w His|strong="G1519"\w* \w righteousness|strong="G1343"\w* \w remains|strong="G3306"\w* \w forever|strong="G1519"\w*.”\x + \xo 9:9 \xt Psalms 112:9\x* +\p +\v 10 \w Now|strong="G1161"\w* \w may|strong="G2532"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w supplies|strong="G5524"\w* \w seed|strong="G4690"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w sower|strong="G4687"\w* \w and|strong="G2532"\w* bread \w for|strong="G1519"\w* \w food|strong="G1035"\w*, \w supply|strong="G2023"\w* \w and|strong="G2532"\w* \w multiply|strong="G4129"\w* \w your|strong="G2532"\w* \w seed|strong="G4690"\w* \w for|strong="G1519"\w* \w sowing|strong="G4687"\w*, \w and|strong="G2532"\w* \w increase|strong="G4129"\w* \w the|strong="G2532"\w* \w fruits|strong="G1081"\w* \w of|strong="G2532"\w* \w your|strong="G2532"\w* \w righteousness|strong="G1343"\w*, +\v 11 \w you|strong="G1722"\w* \w being|strong="G1722"\w* \w enriched|strong="G4148"\w* \w in|strong="G1722"\w* \w everything|strong="G3956"\w* \w for|strong="G1519"\w* \w all|strong="G3956"\w* generosity, \w which|strong="G3588"\w* \w produces|strong="G2716"\w* \w thanksgiving|strong="G2169"\w* \w to|strong="G1519"\w* \w God|strong="G2316"\w* \w through|strong="G1223"\w* \w us|strong="G1519"\w*. +\v 12 \w For|strong="G3754"\w* \w this|strong="G3778"\w* \w service|strong="G1248"\w* \w of|strong="G1223"\w* \w giving|strong="G2169"\w* \w that|strong="G3754"\w* \w you|strong="G3754"\w* perform \w not|strong="G3756"\w* \w only|strong="G3440"\w* makes \w up|strong="G2532"\w* \w for|strong="G3754"\w* \w lack|strong="G3756"\w* \w among|strong="G3588"\w* \w the|strong="G2532"\w* saints, \w but|strong="G2532"\w* abounds \w also|strong="G2532"\w* \w through|strong="G1223"\w* \w much|strong="G4183"\w* \w giving|strong="G2169"\w* \w of|strong="G1223"\w* \w thanks|strong="G2169"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w*, +\v 13 \w seeing|strong="G1223"\w* \w that|strong="G3588"\w* \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w proof|strong="G1382"\w* given \w by|strong="G1223"\w* \w this|strong="G3778"\w* \w service|strong="G1248"\w*, \w they|strong="G2532"\w* \w glorify|strong="G1392"\w* \w God|strong="G2316"\w* \w for|strong="G1519"\w* \w the|strong="G2532"\w* \w obedience|strong="G5292"\w* \w of|strong="G1223"\w* \w your|strong="G1223"\w* \w confession|strong="G3671"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w Good|strong="G3956"\w* \w News|strong="G2098"\w* \w of|strong="G1223"\w* \w Christ|strong="G5547"\w* \w and|strong="G2532"\w* \w for|strong="G1519"\w* \w the|strong="G2532"\w* generosity \w of|strong="G1223"\w* \w your|strong="G1223"\w* \w contribution|strong="G2842"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w to|strong="G1519"\w* \w all|strong="G3956"\w*, +\v 14 \w while|strong="G2532"\w* \w they|strong="G2532"\w* themselves \w also|strong="G2532"\w*, \w with|strong="G1223"\w* \w supplication|strong="G1162"\w* \w on|strong="G1909"\w* \w your|strong="G1223"\w* \w behalf|strong="G5228"\w*, \w yearn|strong="G1971"\w* \w for|strong="G5228"\w* \w you|strong="G5210"\w* \w by|strong="G1223"\w* \w reason|strong="G1223"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w exceeding|strong="G5235"\w* \w grace|strong="G5485"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w* \w in|strong="G1909"\w* \w you|strong="G5210"\w*. +\v 15 Now \w thanks|strong="G5485"\w* \w be|strong="G2316"\w* \w to|strong="G1909"\w* \w God|strong="G2316"\w* \w for|strong="G1909"\w* \w his|strong="G1909"\w* unspeakable \w gift|strong="G1431"\w*! +\c 10 +\p +\v 1 \w Now|strong="G1161"\w* \w I|strong="G1473"\w* \w Paul|strong="G3972"\w*, \w myself|strong="G1473"\w*, \w entreat|strong="G3870"\w* \w you|strong="G5210"\w* \w by|strong="G1223"\w* \w the|strong="G1722"\w* \w humility|strong="G4240"\w* \w and|strong="G2532"\w* \w gentleness|strong="G4240"\w* \w of|strong="G1223"\w* \w Christ|strong="G5547"\w*, \w I|strong="G1473"\w* \w who|strong="G3739"\w* \w in|strong="G1722"\w* \w your|strong="G1223"\w* \w presence|strong="G4383"\w* \w am|strong="G1473"\w* \w lowly|strong="G5011"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w*, \w but|strong="G1161"\w* \w being|strong="G2532"\w* absent \w am|strong="G1473"\w* \w bold|strong="G2292"\w* \w toward|strong="G1519"\w* \w you|strong="G5210"\w*. +\v 2 \w Yes|strong="G1161"\w*, \w I|strong="G1473"\w* \w beg|strong="G1189"\w* \w you|strong="G3739"\w* \w that|strong="G3739"\w* \w I|strong="G1473"\w* \w may|strong="G5100"\w* \w not|strong="G3361"\w*, \w when|strong="G1161"\w* \w present|strong="G3918"\w*, show \w courage|strong="G5111"\w* \w with|strong="G1909"\w* \w the|strong="G1161"\w* \w confidence|strong="G4006"\w* \w with|strong="G1909"\w* \w which|strong="G3739"\w* \w I|strong="G1473"\w* intend \w to|strong="G2596"\w* \w be|strong="G3361"\w* \w bold|strong="G5111"\w* \w against|strong="G2596"\w* \w some|strong="G5100"\w*, \w who|strong="G3739"\w* \w consider|strong="G3049"\w* \w us|strong="G2249"\w* \w to|strong="G2596"\w* \w be|strong="G3361"\w* \w walking|strong="G4043"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1161"\w* \w flesh|strong="G4561"\w*. +\v 3 \w For|strong="G1063"\w* \w though|strong="G1722"\w* \w we|strong="G1063"\w* \w walk|strong="G4043"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*, \w we|strong="G1063"\w* don’t \w wage|strong="G4754"\w* \w war|strong="G4754"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*; +\v 4 \w for|strong="G1063"\w* \w the|strong="G4314"\w* \w weapons|strong="G3696"\w* \w of|strong="G2316"\w* \w our|strong="G2316"\w* \w warfare|strong="G4752"\w* \w are|strong="G3588"\w* \w not|strong="G3756"\w* \w of|strong="G2316"\w* \w the|strong="G4314"\w* \w flesh|strong="G4559"\w*, \w but|strong="G1063"\w* \w mighty|strong="G1415"\w* \w before|strong="G4314"\w* \w God|strong="G2316"\w* \w to|strong="G4314"\w* \w the|strong="G4314"\w* throwing \w down|strong="G2507"\w* \w of|strong="G2316"\w* \w strongholds|strong="G3794"\w*, +\v 5 throwing \w down|strong="G2507"\w* \w imaginations|strong="G3053"\w* \w and|strong="G2532"\w* \w every|strong="G3956"\w* \w high|strong="G3956"\w* \w thing|strong="G3956"\w* \w that|strong="G3588"\w* \w is|strong="G3588"\w* exalted \w against|strong="G2596"\w* \w the|strong="G2532"\w* \w knowledge|strong="G1108"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* bringing \w every|strong="G3956"\w* \w thought|strong="G3540"\w* \w into|strong="G1519"\w* captivity \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w obedience|strong="G5218"\w* \w of|strong="G2316"\w* \w Christ|strong="G5547"\w*, +\v 6 \w and|strong="G2532"\w* \w being|strong="G2532"\w* \w in|strong="G1722"\w* \w readiness|strong="G2092"\w* \w to|strong="G2532"\w* \w avenge|strong="G1556"\w* \w all|strong="G3956"\w* \w disobedience|strong="G3876"\w* \w when|strong="G3752"\w* \w your|strong="G2192"\w* \w obedience|strong="G5218"\w* \w is|strong="G3588"\w* \w made|strong="G4137"\w* \w full|strong="G4137"\w*. +\p +\v 7 \w Do|strong="G2532"\w* \w you|strong="G1487"\w* look \w at|strong="G1909"\w* \w things|strong="G3778"\w* \w only|strong="G1487"\w* \w as|strong="G2531"\w* \w they|strong="G2532"\w* \w appear|strong="G1510"\w* \w in|strong="G1909"\w* front \w of|strong="G2532"\w* \w your|strong="G2532"\w* \w face|strong="G4383"\w*? \w If|strong="G1487"\w* \w anyone|strong="G5100"\w* \w trusts|strong="G3982"\w* \w in|strong="G1909"\w* \w himself|strong="G1438"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w Christ|strong="G5547"\w*’s, \w let|strong="G3049"\w* \w him|strong="G3588"\w* \w consider|strong="G3049"\w* \w this|strong="G3778"\w* \w again|strong="G3825"\w* \w with|strong="G2532"\w* \w himself|strong="G1438"\w*, \w that|strong="G3754"\w* \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w Christ|strong="G5547"\w*’s, \w so|strong="G3779"\w* \w we|strong="G2249"\w* \w also|strong="G2532"\w* \w are|strong="G1510"\w* \w Christ|strong="G5547"\w*’s. +\v 8 \w For|strong="G1063"\w* \w even|strong="G2532"\w* \w if|strong="G1437"\w* \w I|strong="G1473"\w* \w boast|strong="G2744"\w* \w somewhat|strong="G5100"\w* abundantly \w concerning|strong="G4012"\w* \w our|strong="G2532"\w* \w authority|strong="G1849"\w*, \w which|strong="G3739"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w gave|strong="G1325"\w* \w for|strong="G1063"\w* \w building|strong="G3619"\w* \w you|strong="G5210"\w* \w up|strong="G1519"\w* \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w for|strong="G1063"\w* \w casting|strong="G5100"\w* \w you|strong="G5210"\w* \w down|strong="G2506"\w*, \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w not|strong="G3756"\w* \w be|strong="G2532"\w* ashamed, +\v 9 \w that|strong="G2443"\w* \w I|strong="G5613"\w* \w may|strong="G2443"\w* \w not|strong="G3361"\w* \w seem|strong="G1380"\w* \w as|strong="G5613"\w* \w if|strong="G5613"\w* \w I|strong="G5613"\w* desire \w to|strong="G2443"\w* \w terrify|strong="G1629"\w* \w you|strong="G5210"\w* \w by|strong="G1223"\w* \w my|strong="G3588"\w* \w letters|strong="G1992"\w*. +\v 10 \w For|strong="G3754"\w*, “\w His|strong="G2532"\w* \w letters|strong="G1992"\w*”, \w they|strong="G2532"\w* \w say|strong="G5346"\w*, “\w are|strong="G3588"\w* weighty \w and|strong="G2532"\w* \w strong|strong="G2478"\w*, \w but|strong="G1161"\w* \w his|strong="G2532"\w* \w bodily|strong="G4983"\w* \w presence|strong="G3952"\w* \w is|strong="G3588"\w* weak, \w and|strong="G2532"\w* \w his|strong="G2532"\w* \w speech|strong="G3056"\w* \w is|strong="G3588"\w* \w despised|strong="G1848"\w*.” +\v 11 \w Let|strong="G3049"\w* \w such|strong="G5108"\w* \w a|strong="G2532"\w* \w person|strong="G5108"\w* \w consider|strong="G3049"\w* \w this|strong="G3778"\w*, \w that|strong="G3754"\w* \w what|strong="G3588"\w* \w we|strong="G3754"\w* \w are|strong="G1510"\w* \w in|strong="G2532"\w* \w word|strong="G3056"\w* \w by|strong="G1223"\w* \w letters|strong="G1992"\w* \w when|strong="G2532"\w* \w we|strong="G3754"\w* \w are|strong="G1510"\w* absent, \w such|strong="G5108"\w* \w are|strong="G1510"\w* \w we|strong="G3754"\w* \w also|strong="G2532"\w* \w in|strong="G2532"\w* \w deed|strong="G2041"\w* \w when|strong="G2532"\w* \w we|strong="G3754"\w* \w are|strong="G1510"\w* \w present|strong="G3918"\w*. +\p +\v 12 \w For|strong="G1063"\w* \w we|strong="G1063"\w* \w are|strong="G3588"\w* \w not|strong="G3756"\w* \w bold|strong="G5111"\w* \w to|strong="G2532"\w* \w number|strong="G3756"\w* \w or|strong="G2228"\w* \w compare|strong="G4793"\w* \w ourselves|strong="G1438"\w* \w with|strong="G1722"\w* \w some|strong="G5100"\w* \w of|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w commend|strong="G4921"\w* \w themselves|strong="G1438"\w*. \w But|strong="G2532"\w* \w they|strong="G2532"\w* \w themselves|strong="G1438"\w*, \w measuring|strong="G3354"\w* \w themselves|strong="G1438"\w* \w by|strong="G1722"\w* \w themselves|strong="G1438"\w*, \w and|strong="G2532"\w* \w comparing|strong="G4793"\w* \w themselves|strong="G1438"\w* \w with|strong="G1722"\w* \w themselves|strong="G1438"\w*, \w are|strong="G3588"\w* \w without|strong="G2532"\w* \w understanding|strong="G4920"\w*. +\v 13 \w But|strong="G1161"\w* \w we|strong="G2249"\w* \w will|strong="G2316"\w* \w not|strong="G3756"\w* \w boast|strong="G2744"\w* \w beyond|strong="G1519"\w* \w proper|strong="G3358"\w* limits, \w but|strong="G1161"\w* \w within|strong="G2596"\w* \w the|strong="G2532"\w* boundaries \w with|strong="G2532"\w* \w which|strong="G3739"\w* \w God|strong="G2316"\w* appointed \w to|strong="G1519"\w* \w us|strong="G1519"\w*, \w which|strong="G3739"\w* \w reach|strong="G2185"\w* \w even|strong="G2532"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w*. +\v 14 \w For|strong="G1063"\w* \w we|strong="G1063"\w* don’\w t|strong="G3588"\w* \w stretch|strong="G5239"\w* \w ourselves|strong="G1438"\w* \w too|strong="G2532"\w* much, \w as|strong="G5613"\w* \w though|strong="G5613"\w* \w we|strong="G1063"\w* didn’\w t|strong="G3588"\w* \w reach|strong="G2185"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w*. \w For|strong="G1063"\w* \w we|strong="G1063"\w* \w came|strong="G2532"\w* \w even|strong="G2532"\w* \w as|strong="G5613"\w* \w far|strong="G3588"\w* \w as|strong="G5613"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w Good|strong="G3756"\w* \w News|strong="G2098"\w* \w of|strong="G2532"\w* \w Christ|strong="G5547"\w*, +\v 15 \w not|strong="G3756"\w* \w boasting|strong="G2744"\w* \w beyond|strong="G1519"\w* proper limits \w in|strong="G1722"\w* \w other|strong="G1161"\w* \w men|strong="G3588"\w*’\w s|strong="G2192"\w* \w labors|strong="G2873"\w*, \w but|strong="G1161"\w* \w having|strong="G2192"\w* \w hope|strong="G1680"\w* \w that|strong="G3588"\w* \w as|strong="G1519"\w* \w your|strong="G2192"\w* \w faith|strong="G4102"\w* grows, \w we|strong="G2249"\w* \w will|strong="G1473"\w* \w be|strong="G3756"\w* \w abundantly|strong="G4050"\w* \w enlarged|strong="G3170"\w* \w by|strong="G1722"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w our|strong="G1722"\w* \w sphere|strong="G2583"\w* \w of|strong="G1722"\w* influence, +\v 16 \w so|strong="G1519"\w* \w as|strong="G1519"\w* \w to|strong="G1519"\w* \w preach|strong="G2097"\w* \w the|strong="G1722"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w* \w even|strong="G1519"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* parts \w beyond|strong="G1519"\w* \w you|strong="G5210"\w*, \w not|strong="G3756"\w* \w to|strong="G1519"\w* \w boast|strong="G2744"\w* \w in|strong="G1722"\w* \w what|strong="G3588"\w* someone else \w has|strong="G1519"\w* already done. +\v 17 \w But|strong="G1161"\w* “\w he|strong="G1161"\w* \w who|strong="G3588"\w* \w boasts|strong="G2744"\w*, \w let|strong="G1161"\w* \w him|strong="G3588"\w* \w boast|strong="G2744"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*.”\x + \xo 10:17 \xt Jeremiah 9:24 \x* +\v 18 \w For|strong="G1063"\w* \w it|strong="G1063"\w* isn’\w t|strong="G3588"\w* \w he|strong="G3739"\w* \w who|strong="G3739"\w* \w commends|strong="G4921"\w* \w himself|strong="G1438"\w* \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w approved|strong="G1384"\w*, \w but|strong="G1063"\w* \w whom|strong="G3739"\w* \w the|strong="G3588"\w* \w Lord|strong="G2962"\w* \w commends|strong="G4921"\w*. +\c 11 +\p +\v 1 \w I|strong="G1473"\w* \w wish|strong="G3785"\w* \w that|strong="G2532"\w* \w you|strong="G2532"\w* \w would|strong="G2532"\w* \w bear|strong="G2532"\w* \w with|strong="G2532"\w* \w me|strong="G1473"\w* \w in|strong="G2532"\w* \w a|strong="G2532"\w* \w little|strong="G3398"\w* foolishness, \w but|strong="G2532"\w* \w indeed|strong="G2532"\w* \w you|strong="G2532"\w* \w do|strong="G2532"\w* \w bear|strong="G2532"\w* \w with|strong="G2532"\w* \w me|strong="G1473"\w*. +\v 2 \w For|strong="G1063"\w* \w I|strong="G1063"\w* \w am|strong="G3588"\w* \w jealous|strong="G2206"\w* \w over|strong="G2206"\w* \w you|strong="G5210"\w* \w with|strong="G2316"\w* \w a|strong="G1520"\w* \w godly|strong="G2316"\w* \w jealousy|strong="G2205"\w*. \w For|strong="G1063"\w* \w I|strong="G1063"\w* promised \w you|strong="G5210"\w* \w in|strong="G2316"\w* marriage \w to|strong="G2316"\w* \w one|strong="G1520"\w* husband, \w that|strong="G3588"\w* \w I|strong="G1063"\w* \w might|strong="G2316"\w* \w present|strong="G3936"\w* \w you|strong="G5210"\w* \w as|strong="G1063"\w* \w a|strong="G1520"\w* pure \w virgin|strong="G3933"\w* \w to|strong="G2316"\w* \w Christ|strong="G5547"\w*. +\v 3 \w But|strong="G1161"\w* \w I|strong="G2532"\w* \w am|strong="G2532"\w* \w afraid|strong="G5399"\w* \w that|strong="G3588"\w* somehow, \w as|strong="G5613"\w* \w the|strong="G1722"\w* \w serpent|strong="G3789"\w* \w deceived|strong="G1818"\w* \w Eve|strong="G2096"\w* \w in|strong="G1722"\w* \w his|strong="G1519"\w* \w craftiness|strong="G3834"\w*, \w so|strong="G2532"\w* \w your|strong="G2532"\w* \w minds|strong="G3540"\w* \w might|strong="G2532"\w* \w be|strong="G2532"\w* \w corrupted|strong="G5351"\w* \w from|strong="G2532"\w* \w the|strong="G1722"\w* simplicity \w that|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*. +\v 4 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w he|strong="G3739"\w* \w who|strong="G3739"\w* \w comes|strong="G2064"\w* \w preaches|strong="G2784"\w* \w another|strong="G2087"\w* \w Jesus|strong="G2424"\w* \w whom|strong="G3739"\w* \w we|strong="G3739"\w* didn’\w t|strong="G3588"\w* \w preach|strong="G2784"\w*, \w or|strong="G2228"\w* \w if|strong="G1487"\w* \w you|strong="G3739"\w* \w receive|strong="G2983"\w* \w a|strong="G2983"\w* \w different|strong="G2087"\w* \w spirit|strong="G4151"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* didn’\w t|strong="G3588"\w* \w receive|strong="G2983"\w*, \w or|strong="G2228"\w* \w a|strong="G2983"\w* \w different|strong="G2087"\w* “\w good|strong="G2573"\w* \w news|strong="G2098"\w*” \w which|strong="G3739"\w* \w you|strong="G3739"\w* didn’\w t|strong="G3588"\w* \w accept|strong="G2983"\w*, \w you|strong="G3739"\w* \w put|strong="G2424"\w* \w up|strong="G1209"\w* \w with|strong="G2064"\w* \w that|strong="G3739"\w* \w well|strong="G2573"\w* \w enough|strong="G2573"\w*. +\v 5 \w For|strong="G1063"\w* \w I|strong="G1063"\w* \w reckon|strong="G3049"\w* \w that|strong="G3588"\w* \w I|strong="G1063"\w* \w am|strong="G3588"\w* \w not|strong="G3367"\w* \w at|strong="G3588"\w* \w all|strong="G3588"\w* \w behind|strong="G5302"\w* \w the|strong="G3588"\w* \w very|strong="G3029"\w* best apostles. +\v 6 \w But|strong="G1161"\w* \w though|strong="G1487"\w* \w I|strong="G2532"\w* \w am|strong="G2532"\w* \w unskilled|strong="G2399"\w* \w in|strong="G1722"\w* \w speech|strong="G3056"\w*, \w yet|strong="G2532"\w* \w I|strong="G2532"\w* \w am|strong="G2532"\w* \w not|strong="G3756"\w* \w unskilled|strong="G2399"\w* \w in|strong="G1722"\w* \w knowledge|strong="G1108"\w*. \w No|strong="G3756"\w*, \w in|strong="G1722"\w* \w every|strong="G3956"\w* \w way|strong="G1722"\w* \w we|strong="G2532"\w* \w have|strong="G2532"\w* \w been|strong="G2532"\w* \w revealed|strong="G5319"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*. +\p +\v 7 \w Or|strong="G2228"\w* \w did|strong="G4160"\w* \w I|strong="G3754"\w* \w commit|strong="G4160"\w* \w a|strong="G4160"\w* sin \w in|strong="G2316"\w* \w humbling|strong="G5013"\w* \w myself|strong="G1683"\w* \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w might|strong="G2316"\w* \w be|strong="G2316"\w* \w exalted|strong="G5312"\w*, \w because|strong="G3754"\w* \w I|strong="G3754"\w* \w preached|strong="G2097"\w* \w to|strong="G2443"\w* \w you|strong="G5210"\w* \w God|strong="G2316"\w*’s \w Good|strong="G2097"\w* \w News|strong="G2097"\w* free \w of|strong="G2316"\w* charge? +\v 8 \w I|strong="G2532"\w* \w robbed|strong="G4813"\w* \w other|strong="G3588"\w* \w assemblies|strong="G1577"\w*, \w taking|strong="G2983"\w* \w wages|strong="G3800"\w* \w from|strong="G2532"\w* \w them|strong="G3588"\w* \w that|strong="G3588"\w* \w I|strong="G2532"\w* \w might|strong="G2532"\w* \w serve|strong="G1248"\w* \w you|strong="G5210"\w*. +\v 9 \w When|strong="G2532"\w* \w I|strong="G1473"\w* \w was|strong="G3588"\w* \w present|strong="G3918"\w* \w with|strong="G1722"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w was|strong="G3588"\w* \w in|strong="G1722"\w* \w need|strong="G5303"\w*, \w I|strong="G1473"\w* wasn’\w t|strong="G3588"\w* \w a|strong="G2532"\w* \w burden|strong="G2655"\w* \w on|strong="G1722"\w* \w anyone|strong="G3956"\w*, \w for|strong="G1063"\w* \w the|strong="G1722"\w* brothers, \w when|strong="G2532"\w* \w they|strong="G2532"\w* \w came|strong="G2064"\w* \w from|strong="G2064"\w* \w Macedonia|strong="G3109"\w*, \w supplied|strong="G4322"\w* \w the|strong="G1722"\w* measure \w of|strong="G2532"\w* \w my|strong="G5083"\w* \w need|strong="G5303"\w*. \w In|strong="G1722"\w* \w everything|strong="G3956"\w* \w I|strong="G1473"\w* \w kept|strong="G5083"\w* \w myself|strong="G1683"\w* \w from|strong="G2064"\w* \w being|strong="G2532"\w* \w burdensome|strong="G2655"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*, \w and|strong="G2532"\w* \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w continue|strong="G2532"\w* \w to|strong="G4314"\w* \w do|strong="G2532"\w* \w so|strong="G2532"\w*. +\v 10 \w As|strong="G1519"\w* \w the|strong="G1722"\w* truth \w of|strong="G1722"\w* \w Christ|strong="G5547"\w* \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w me|strong="G1473"\w*, \w no|strong="G3756"\w* \w one|strong="G3588"\w* \w will|strong="G1510"\w* stop \w me|strong="G1473"\w* \w from|strong="G3756"\w* \w this|strong="G3778"\w* \w boasting|strong="G2746"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w regions|strong="G2824"\w* \w of|strong="G1722"\w* Achaia. +\v 11 \w Why|strong="G5101"\w*? \w Because|strong="G3754"\w* \w I|strong="G3754"\w* don’\w t|strong="G3588"\w* love \w you|strong="G5210"\w*? \w God|strong="G2316"\w* \w knows|strong="G1492"\w*. +\p +\v 12 \w But|strong="G1161"\w* \w what|strong="G3739"\w* \w I|strong="G1473"\w* \w do|strong="G4160"\w*, \w that|strong="G2443"\w* \w I|strong="G1473"\w* \w will|strong="G2309"\w* \w continue|strong="G2532"\w* \w to|strong="G2443"\w* \w do|strong="G4160"\w*, \w that|strong="G2443"\w* \w I|strong="G1473"\w* \w may|strong="G2532"\w* \w cut|strong="G1581"\w* \w off|strong="G1581"\w* opportunity \w from|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w desire|strong="G2309"\w* \w an|strong="G2532"\w* opportunity, \w that|strong="G2443"\w* \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w they|strong="G2532"\w* \w boast|strong="G2744"\w*, \w they|strong="G2532"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* recognized \w just|strong="G2531"\w* \w like|strong="G2531"\w* \w us|strong="G4160"\w*. +\v 13 \w For|strong="G1063"\w* \w such|strong="G5108"\w* \w men|strong="G5108"\w* \w are|strong="G3588"\w* \w false|strong="G5570"\w* \w apostles|strong="G5570"\w*, \w deceitful|strong="G1386"\w* \w workers|strong="G2040"\w*, masquerading \w as|strong="G1519"\w* \w Christ|strong="G5547"\w*’s \w apostles|strong="G5570"\w*. +\v 14 \w And|strong="G2532"\w* \w no|strong="G3756"\w* \w wonder|strong="G2295"\w*, \w for|strong="G1063"\w* \w even|strong="G2532"\w* \w Satan|strong="G4567"\w* masquerades \w as|strong="G1519"\w* \w an|strong="G2532"\w* angel \w of|strong="G2532"\w* \w light|strong="G5457"\w*. +\v 15 \w It|strong="G2532"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* \w great|strong="G3173"\w* \w thing|strong="G3739"\w* \w therefore|strong="G3767"\w* \w if|strong="G1487"\w* \w his|strong="G2532"\w* \w servants|strong="G1249"\w* \w also|strong="G2532"\w* masquerade \w as|strong="G5613"\w* \w servants|strong="G1249"\w* \w of|strong="G2532"\w* \w righteousness|strong="G1343"\w*, \w whose|strong="G3739"\w* \w end|strong="G5056"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w their|strong="G2532"\w* \w works|strong="G2041"\w*. +\p +\v 16 \w I|strong="G1473"\w* \w say|strong="G3004"\w* \w again|strong="G3825"\w*, \w let|strong="G1161"\w* \w no|strong="G3361"\w* \w one|strong="G5100"\w* \w think|strong="G1380"\w* \w me|strong="G1473"\w* foolish. \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w so|strong="G2443"\w*, \w yet|strong="G1161"\w* \w receive|strong="G1209"\w* \w me|strong="G1473"\w* \w as|strong="G5613"\w* foolish, \w that|strong="G2443"\w* \w I|strong="G1473"\w* \w also|strong="G2504"\w* \w may|strong="G2443"\w* \w boast|strong="G2744"\w* \w a|strong="G5613"\w* \w little|strong="G3398"\w*. +\v 17 \w That|strong="G3739"\w* \w which|strong="G3739"\w* \w I|strong="G3739"\w* \w speak|strong="G2980"\w*, \w I|strong="G3739"\w* don’\w t|strong="G3588"\w* \w speak|strong="G2980"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w but|strong="G3588"\w* \w as|strong="G5613"\w* \w in|strong="G1722"\w* foolishness, \w in|strong="G1722"\w* \w this|strong="G3778"\w* \w confidence|strong="G5287"\w* \w of|strong="G2962"\w* \w boasting|strong="G2746"\w*. +\v 18 \w Seeing|strong="G1893"\w* \w that|strong="G2596"\w* \w many|strong="G4183"\w* \w boast|strong="G2744"\w* \w after|strong="G2596"\w* \w the|strong="G2596"\w* \w flesh|strong="G4561"\w*, \w I|strong="G2504"\w* \w will|strong="G4183"\w* \w also|strong="G2504"\w* \w boast|strong="G2744"\w*. +\v 19 \w For|strong="G1063"\w* \w you|strong="G1510"\w* bear \w with|strong="G3588"\w* \w the|strong="G3588"\w* foolish \w gladly|strong="G2234"\w*, \w being|strong="G1510"\w* \w wise|strong="G5429"\w*. +\v 20 \w For|strong="G1063"\w* \w you|strong="G5210"\w* bear \w with|strong="G1519"\w* \w a|strong="G1519"\w* \w man|strong="G5100"\w* \w if|strong="G1487"\w* \w he|strong="G1063"\w* \w brings|strong="G1519"\w* \w you|strong="G5210"\w* \w into|strong="G1519"\w* \w bondage|strong="G2615"\w*, \w if|strong="G1487"\w* \w he|strong="G1063"\w* \w devours|strong="G2719"\w* \w you|strong="G5210"\w*, \w if|strong="G1487"\w* \w he|strong="G1063"\w* \w takes|strong="G2983"\w* \w you|strong="G5210"\w* captive, \w if|strong="G1487"\w* \w he|strong="G1063"\w* \w exalts|strong="G1869"\w* \w himself|strong="G1519"\w*, \w or|strong="G1487"\w* \w if|strong="G1487"\w* \w he|strong="G1063"\w* \w strikes|strong="G1194"\w* \w you|strong="G5210"\w* \w on|strong="G1519"\w* \w the|strong="G1519"\w* \w face|strong="G4383"\w*. +\v 21 \w To|strong="G2596"\w* \w my|strong="G1722"\w* shame, \w I|strong="G1473"\w* \w speak|strong="G3004"\w* \w as|strong="G5613"\w* \w though|strong="G5613"\w* \w we|strong="G2249"\w* \w had|strong="G3739"\w* \w been|strong="G5100"\w* weak. \w Yet|strong="G1161"\w* \w in|strong="G1722"\w* \w whatever|strong="G3739"\w* \w way|strong="G2596"\w* \w anyone|strong="G5100"\w* \w is|strong="G3739"\w* \w bold|strong="G5111"\w* (\w I|strong="G1473"\w* \w speak|strong="G3004"\w* \w in|strong="G1722"\w* foolishness), \w I|strong="G1473"\w* \w am|strong="G1473"\w* \w bold|strong="G5111"\w* \w also|strong="G2504"\w*. +\v 22 \w Are|strong="G1510"\w* \w they|strong="G1510"\w* \w Hebrews|strong="G1445"\w*? \w So|strong="G2504"\w* \w am|strong="G1510"\w* \w I|strong="G2504"\w*. \w Are|strong="G1510"\w* \w they|strong="G1510"\w* \w Israelites|strong="G2475"\w*? \w So|strong="G2504"\w* \w am|strong="G1510"\w* \w I|strong="G2504"\w*. \w Are|strong="G1510"\w* \w they|strong="G1510"\w* \w the|strong="G1510"\w* offspring\f + \fr 11:22 \ft or, seed\f* \w of|strong="G4690"\w* Abraham? \w So|strong="G2504"\w* \w am|strong="G1510"\w* \w I|strong="G2504"\w*. +\v 23 \w Are|strong="G1510"\w* \w they|strong="G1510"\w* \w servants|strong="G1249"\w* \w of|strong="G1722"\w* \w Christ|strong="G5547"\w*? (\w I|strong="G1473"\w* \w speak|strong="G2980"\w* \w as|strong="G1722"\w* \w one|strong="G1722"\w* beside himself.) \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w more|strong="G5228"\w* \w so|strong="G1722"\w*: \w in|strong="G1722"\w* \w labors|strong="G2873"\w* \w more|strong="G5228"\w* \w abundantly|strong="G4056"\w*, \w in|strong="G1722"\w* \w prisons|strong="G5438"\w* \w more|strong="G5228"\w* \w abundantly|strong="G4056"\w*, \w in|strong="G1722"\w* \w stripes|strong="G4127"\w* \w above|strong="G5228"\w* \w measure|strong="G5234"\w*, \w and|strong="G2980"\w* \w in|strong="G1722"\w* \w deaths|strong="G2288"\w* \w often|strong="G4178"\w*. +\v 24 \w Five|strong="G3999"\w* \w times|strong="G3999"\w* \w I|strong="G2453"\w* \w received|strong="G2983"\w* \w forty|strong="G5062"\w* stripes minus \w one|strong="G1520"\w* \w from|strong="G3844"\w* \w the|strong="G2983"\w* \w Jews|strong="G2453"\w*. +\v 25 \w Three|strong="G5151"\w* \w times|strong="G5151"\w* \w I|strong="G1722"\w* \w was|strong="G3588"\w* \w beaten|strong="G4463"\w* \w with|strong="G1722"\w* \w rods|strong="G4463"\w*. Once \w I|strong="G1722"\w* \w was|strong="G3588"\w* \w stoned|strong="G3034"\w*. \w Three|strong="G5151"\w* \w times|strong="G5151"\w* \w I|strong="G1722"\w* \w suffered|strong="G3489"\w* \w shipwreck|strong="G3489"\w*. \w I|strong="G1722"\w* \w have|strong="G4160"\w* \w been|strong="G4160"\w* \w a|strong="G1722"\w* \w night|strong="G3574"\w* \w and|strong="G4160"\w* \w a|strong="G1722"\w* \w day|strong="G3574"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w deep|strong="G1037"\w*. +\v 26 \w I|strong="G1722"\w* \w have|strong="G1484"\w* \w been|strong="G4178"\w* \w in|strong="G1722"\w* travels \w often|strong="G4178"\w*, \w perils|strong="G2794"\w* \w of|strong="G1537"\w* \w rivers|strong="G4215"\w*, \w perils|strong="G2794"\w* \w of|strong="G1537"\w* \w robbers|strong="G3027"\w*, \w perils|strong="G2794"\w* \w from|strong="G1537"\w* \w my|strong="G1722"\w* \w countrymen|strong="G1085"\w*, \w perils|strong="G2794"\w* \w from|strong="G1537"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w*, \w perils|strong="G2794"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w city|strong="G4172"\w*, \w perils|strong="G2794"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wilderness|strong="G2047"\w*, \w perils|strong="G2794"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w*, \w perils|strong="G2794"\w* \w among|strong="G1722"\w* \w false|strong="G5569"\w* brothers; +\v 27 \w in|strong="G1722"\w* \w labor|strong="G2873"\w* \w and|strong="G2532"\w* \w travail|strong="G3449"\w*, \w in|strong="G1722"\w* watchings \w often|strong="G4178"\w*, \w in|strong="G1722"\w* \w hunger|strong="G3042"\w* \w and|strong="G2532"\w* \w thirst|strong="G1373"\w*, \w in|strong="G1722"\w* \w fastings|strong="G3521"\w* \w often|strong="G4178"\w*, \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w cold|strong="G5592"\w* \w and|strong="G2532"\w* \w nakedness|strong="G1132"\w*. +\p +\v 28 \w Besides|strong="G5565"\w* \w those|strong="G3588"\w* \w things|strong="G3956"\w* \w that|strong="G3588"\w* \w are|strong="G3588"\w* outside, \w there|strong="G2250"\w* \w is|strong="G3588"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* presses \w on|strong="G2596"\w* \w me|strong="G1473"\w* \w daily|strong="G2250"\w*: \w anxiety|strong="G3308"\w* \w for|strong="G3956"\w* \w all|strong="G3956"\w* \w the|strong="G3956"\w* \w assemblies|strong="G1577"\w*. +\v 29 \w Who|strong="G5101"\w* \w is|strong="G5101"\w* weak, \w and|strong="G2532"\w* \w I|strong="G1473"\w* \w am|strong="G1473"\w* \w not|strong="G3756"\w* weak? \w Who|strong="G5101"\w* \w is|strong="G5101"\w* caused \w to|strong="G2532"\w* \w stumble|strong="G4624"\w*, \w and|strong="G2532"\w* \w I|strong="G1473"\w* don’t \w burn|strong="G4448"\w* \w with|strong="G2532"\w* indignation? +\p +\v 30 \w If|strong="G1487"\w* \w I|strong="G1473"\w* \w must|strong="G1163"\w* \w boast|strong="G2744"\w*, \w I|strong="G1473"\w* \w will|strong="G1473"\w* \w boast|strong="G2744"\w* \w of|strong="G3588"\w* \w the|strong="G3588"\w* \w things|strong="G3588"\w* \w that|strong="G3588"\w* concern \w my|strong="G1473"\w* weakness. +\v 31 \w The|strong="G2532"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w Father|strong="G3962"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G2962"\w*, \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w blessed|strong="G2128"\w* \w forever|strong="G1519"\w* \w more|strong="G2532"\w*, \w knows|strong="G1492"\w* \w that|strong="G3754"\w* \w I|strong="G2532"\w* don’\w t|strong="G3588"\w* \w lie|strong="G5574"\w*. +\v 32 \w In|strong="G1722"\w* \w Damascus|strong="G1154"\w* \w the|strong="G1722"\w* \w governor|strong="G1481"\w* \w under|strong="G1722"\w* \w King|strong="G3588"\w* Aretas guarded \w the|strong="G1722"\w* \w Damascenes|strong="G1153"\w*’ \w city|strong="G4172"\w*, desiring \w to|strong="G1722"\w* \w arrest|strong="G4084"\w* \w me|strong="G1473"\w*. +\v 33 \w I|strong="G2532"\w* \w was|strong="G3588"\w* \w let|strong="G5465"\w* \w down|strong="G5465"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* \w basket|strong="G4553"\w* \w through|strong="G1223"\w* \w a|strong="G2532"\w* \w window|strong="G2376"\w* \w by|strong="G1223"\w* \w the|strong="G1722"\w* \w wall|strong="G5038"\w*, \w and|strong="G2532"\w* \w escaped|strong="G1628"\w* \w his|strong="G1223"\w* \w hands|strong="G5495"\w*. +\c 12 +\p +\v 1 \w It|strong="G2532"\w* \w is|strong="G2962"\w* doubtless \w not|strong="G3756"\w* \w profitable|strong="G4851"\w* \w for|strong="G1519"\w* \w me|strong="G3756"\w* \w to|strong="G1519"\w* \w boast|strong="G2744"\w*, \w but|strong="G1161"\w* \w I|strong="G2532"\w* \w will|strong="G2532"\w* \w come|strong="G2064"\w* \w to|strong="G1519"\w* \w visions|strong="G3701"\w* \w and|strong="G2532"\w* revelations \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*. +\v 2 \w I|strong="G2193"\w* \w know|strong="G1492"\w* \w a|strong="G1722"\w* \w man|strong="G5108"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w caught|strong="G5108"\w* \w up|strong="G1722"\w* \w into|strong="G1722"\w* \w the|strong="G1722"\w* \w third|strong="G5154"\w* \w heaven|strong="G3772"\w* \w fourteen|strong="G1180"\w* \w years|strong="G2094"\w* \w ago|strong="G4253"\w*—\w whether|strong="G1535"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w body|strong="G4983"\w*, \w I|strong="G2193"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w*, \w or|strong="G1535"\w* \w whether|strong="G1535"\w* \w out|strong="G1535"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w body|strong="G4983"\w*, \w I|strong="G2193"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w*; \w God|strong="G2316"\w* \w knows|strong="G1492"\w*. +\v 3 \w I|strong="G2532"\w* \w know|strong="G1492"\w* \w such|strong="G5108"\w* \w a|strong="G2532"\w* \w man|strong="G5108"\w* (\w whether|strong="G1535"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w body|strong="G4983"\w*, \w or|strong="G1535"\w* outside \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w body|strong="G4983"\w*, \w I|strong="G2532"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w*; \w God|strong="G2316"\w* \w knows|strong="G1492"\w*), +\v 4 \w how|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* caught \w up|strong="G1519"\w* \w into|strong="G1519"\w* \w Paradise|strong="G3857"\w* \w and|strong="G2532"\w* heard unspeakable \w words|strong="G4487"\w*, \w which|strong="G3739"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w lawful|strong="G1832"\w* \w for|strong="G3754"\w* \w a|strong="G2532"\w* \w man|strong="G3739"\w* \w to|strong="G1519"\w* \w utter|strong="G2980"\w*. +\v 5 \w On|strong="G1722"\w* \w behalf|strong="G5228"\w* \w of|strong="G1722"\w* \w such|strong="G5108"\w* \w a|strong="G1722"\w* \w one|strong="G5108"\w* \w I|strong="G1473"\w* \w will|strong="G1473"\w* \w boast|strong="G2744"\w*, \w but|strong="G1161"\w* \w on|strong="G1722"\w* \w my|strong="G1722"\w* \w own|strong="G1683"\w* \w behalf|strong="G5228"\w* \w I|strong="G1473"\w* \w will|strong="G1473"\w* \w not|strong="G3756"\w* \w boast|strong="G2744"\w*, \w except|strong="G1487"\w* \w in|strong="G1722"\w* \w my|strong="G1722"\w* weaknesses. +\v 6 \w For|strong="G1063"\w* \w if|strong="G1437"\w* \w I|strong="G1473"\w* \w would|strong="G2309"\w* \w desire|strong="G2309"\w* \w to|strong="G1519"\w* \w boast|strong="G2744"\w*, \w I|strong="G1473"\w* \w will|strong="G2309"\w* \w not|strong="G3756"\w* \w be|strong="G1510"\w* foolish; \w for|strong="G1063"\w* \w I|strong="G1473"\w* \w will|strong="G2309"\w* \w speak|strong="G3004"\w* \w the|strong="G1519"\w* truth. \w But|strong="G1161"\w* \w I|strong="G1473"\w* \w refrain|strong="G3756"\w*, \w so|strong="G1161"\w* \w that|strong="G3739"\w* \w no|strong="G3756"\w* \w man|strong="G5100"\w* \w may|strong="G5100"\w* \w think|strong="G3049"\w* \w more|strong="G5228"\w* \w of|strong="G1537"\w* \w me|strong="G1473"\w* \w than|strong="G2228"\w* \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w he|strong="G1161"\w* sees \w in|strong="G1519"\w* \w me|strong="G1473"\w* \w or|strong="G2228"\w* hears \w from|strong="G1537"\w* \w me|strong="G1473"\w*. +\v 7 \w By|strong="G2532"\w* \w reason|strong="G1352"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w exceeding|strong="G5236"\w* \w greatness|strong="G5236"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* revelations, \w that|strong="G2443"\w* \w I|strong="G1473"\w* \w should|strong="G3588"\w* \w not|strong="G3361"\w* \w be|strong="G2532"\w* exalted \w excessively|strong="G5236"\w*, \w a|strong="G2532"\w* \w thorn|strong="G4647"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G2443"\w* \w me|strong="G1325"\w*: \w a|strong="G2532"\w* messenger \w of|strong="G2532"\w* \w Satan|strong="G4567"\w* \w to|strong="G2443"\w* \w torment|strong="G2852"\w* \w me|strong="G1325"\w*, \w that|strong="G2443"\w* \w I|strong="G1473"\w* \w should|strong="G3588"\w* \w not|strong="G3361"\w* \w be|strong="G2532"\w* exalted \w excessively|strong="G5236"\w*. +\v 8 \w Concerning|strong="G5228"\w* \w this|strong="G3778"\w* \w thing|strong="G3778"\w*, \w I|strong="G1473"\w* \w begged|strong="G3870"\w* \w the|strong="G3588"\w* \w Lord|strong="G2962"\w* \w three|strong="G5151"\w* \w times|strong="G5151"\w* \w that|strong="G2443"\w* \w it|strong="G3778"\w* \w might|strong="G3778"\w* depart \w from|strong="G3588"\w* \w me|strong="G1473"\w*. +\v 9 \w He|strong="G2532"\w* \w has|strong="G5547"\w* \w said|strong="G3004"\w* \w to|strong="G2443"\w* \w me|strong="G1473"\w*, \wj “\+w My|strong="G1722"\+w* \+w grace|strong="G5485"\+w* \+w is|strong="G3588"\+w* sufficient \+w for|strong="G1063"\+w* \+w you|strong="G4771"\+w*, \+w for|strong="G1063"\+w* \+w my|strong="G1722"\+w* \+w power|strong="G1411"\+w* \+w is|strong="G3588"\+w* \+w made|strong="G3004"\+w* perfect \+w in|strong="G1722"\+w* weakness.”\wj* \w Most|strong="G3123"\w* \w gladly|strong="G2236"\w* \w therefore|strong="G3767"\w* \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w rather|strong="G3123"\w* \w glory|strong="G2744"\w* \w in|strong="G1722"\w* \w my|strong="G1722"\w* weaknesses, \w that|strong="G2443"\w* \w the|strong="G1722"\w* \w power|strong="G1411"\w* \w of|strong="G2532"\w* \w Christ|strong="G5547"\w* \w may|strong="G2532"\w* \w rest|strong="G1981"\w* \w on|strong="G1909"\w* \w me|strong="G1473"\w*. +\p +\v 10 \w Therefore|strong="G1352"\w* \w I|strong="G2532"\w* \w take|strong="G2106"\w* \w pleasure|strong="G2106"\w* \w in|strong="G1722"\w* weaknesses, \w in|strong="G1722"\w* injuries, \w in|strong="G1722"\w* necessities, \w in|strong="G1722"\w* \w persecutions|strong="G1375"\w*, \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w distresses|strong="G4730"\w*, \w for|strong="G1063"\w* \w Christ|strong="G5547"\w*’s \w sake|strong="G5228"\w*. \w For|strong="G1063"\w* \w when|strong="G3752"\w* \w I|strong="G2532"\w* \w am|strong="G1510"\w* weak, \w then|strong="G2532"\w* \w am|strong="G1510"\w* \w I|strong="G2532"\w* \w strong|strong="G1415"\w*. +\v 11 \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w become|strong="G1096"\w* \w foolish|strong="G2532"\w* \w in|strong="G2532"\w* boasting. \w You|strong="G5210"\w* compelled \w me|strong="G1473"\w*, \w for|strong="G1063"\w* \w I|strong="G1473"\w* \w ought|strong="G3784"\w* \w to|strong="G2532"\w* \w have|strong="G2532"\w* \w been|strong="G1510"\w* \w commended|strong="G4921"\w* \w by|strong="G5259"\w* \w you|strong="G5210"\w*, \w for|strong="G1063"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w in|strong="G2532"\w* \w no|strong="G3762"\w* way \w inferior|strong="G5302"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w very|strong="G3029"\w* best apostles, \w though|strong="G1487"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w nothing|strong="G3762"\w*. +\v 12 \w Truly|strong="G3303"\w* \w the|strong="G1722"\w* \w signs|strong="G4592"\w* \w of|strong="G2532"\w* \w an|strong="G2532"\w* apostle \w were|strong="G3588"\w* worked \w among|strong="G1722"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w perseverance|strong="G5281"\w*, \w in|strong="G1722"\w* \w signs|strong="G4592"\w* \w and|strong="G2532"\w* \w wonders|strong="G5059"\w* \w and|strong="G2532"\w* \w mighty|strong="G1411"\w* \w works|strong="G1411"\w*. +\v 13 \w For|strong="G1063"\w* \w what|strong="G5101"\w* \w is|strong="G1510"\w* \w there|strong="G1063"\w* \w in|strong="G1577"\w* \w which|strong="G3739"\w* \w you|strong="G5210"\w* \w were|strong="G1510"\w* \w made|strong="G3756"\w* \w inferior|strong="G2274"\w* \w to|strong="G3756"\w* \w the|strong="G3588"\w* \w rest|strong="G3062"\w* \w of|strong="G1577"\w* \w the|strong="G3588"\w* \w assemblies|strong="G1577"\w*, \w unless|strong="G1487"\w* \w it|strong="G3754"\w* \w is|strong="G1510"\w* \w that|strong="G3754"\w* \w I|strong="G1473"\w* \w myself|strong="G1473"\w* \w was|strong="G1510"\w* \w not|strong="G3756"\w* \w a|strong="G1510"\w* \w burden|strong="G2655"\w* \w to|strong="G3756"\w* \w you|strong="G5210"\w*? \w Forgive|strong="G5483"\w* \w me|strong="G1473"\w* \w this|strong="G3778"\w* wrong! +\p +\v 14 \w Behold|strong="G2400"\w*, \w this|strong="G3778"\w* \w is|strong="G3588"\w* \w the|strong="G2532"\w* \w third|strong="G5154"\w* \w time|strong="G5154"\w* \w I|strong="G2532"\w* \w am|strong="G2532"\w* \w ready|strong="G2093"\w* \w to|strong="G4314"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*, \w and|strong="G2532"\w* \w I|strong="G2532"\w* \w will|strong="G2532"\w* \w not|strong="G3756"\w* \w be|strong="G2532"\w* \w a|strong="G2192"\w* \w burden|strong="G2655"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*; \w for|strong="G1063"\w* \w I|strong="G2532"\w* \w seek|strong="G2212"\w* \w not|strong="G3756"\w* \w your|strong="G2192"\w* possessions, \w but|strong="G2532"\w* \w you|strong="G5210"\w*. \w For|strong="G1063"\w* \w the|strong="G2532"\w* \w children|strong="G5043"\w* \w ought|strong="G3784"\w* \w not|strong="G3756"\w* \w to|strong="G4314"\w* \w save|strong="G2343"\w* \w up|strong="G2343"\w* \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w parents|strong="G1118"\w*, \w but|strong="G2532"\w* \w the|strong="G2532"\w* \w parents|strong="G1118"\w* \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w children|strong="G5043"\w*. +\v 15 \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w most|strong="G5228"\w* \w gladly|strong="G2236"\w* \w spend|strong="G1159"\w* \w and|strong="G2532"\w* \w be|strong="G2532"\w* \w spent|strong="G1159"\w* \w for|strong="G5228"\w* \w your|strong="G2532"\w* \w souls|strong="G5590"\w*. \w If|strong="G1487"\w* \w I|strong="G1473"\w* love \w you|strong="G5210"\w* \w more|strong="G5228"\w* \w abundantly|strong="G4056"\w*, \w am|strong="G1473"\w* \w I|strong="G1473"\w* loved \w the|strong="G2532"\w* \w less|strong="G2276"\w*? +\v 16 \w Even|strong="G1161"\w* \w so|strong="G1161"\w*, \w I|strong="G1473"\w* \w myself|strong="G1473"\w* didn’t \w burden|strong="G2599"\w* \w you|strong="G5210"\w*. \w But|strong="G1161"\w* \w you|strong="G5210"\w* \w might|strong="G5210"\w* \w say|strong="G1473"\w* \w that|strong="G1161"\w* \w being|strong="G1510"\w* \w crafty|strong="G3835"\w*, \w I|strong="G1473"\w* \w caught|strong="G2983"\w* \w you|strong="G5210"\w* \w with|strong="G3756"\w* deception. +\v 17 \w Did|strong="G3361"\w* \w I|strong="G3739"\w* \w take|strong="G4122"\w* \w advantage|strong="G4122"\w* \w of|strong="G1223"\w* \w you|strong="G5210"\w* \w by|strong="G1223"\w* \w anyone|strong="G5100"\w* \w of|strong="G1223"\w* \w those|strong="G3739"\w* \w whom|strong="G3739"\w* \w I|strong="G3739"\w* \w have|strong="G5210"\w* sent \w to|strong="G4314"\w* \w you|strong="G5210"\w*? +\v 18 \w I|strong="G2532"\w* \w exhorted|strong="G3870"\w* \w Titus|strong="G5103"\w*, \w and|strong="G2532"\w* \w I|strong="G2532"\w* \w sent|strong="G4882"\w* \w the|strong="G2532"\w* brother \w with|strong="G2532"\w* \w him|strong="G3588"\w*. \w Did|strong="G2532"\w* \w Titus|strong="G5103"\w* \w take|strong="G2532"\w* \w any|strong="G3756"\w* \w advantage|strong="G4122"\w* \w of|strong="G4151"\w* \w you|strong="G5210"\w*? Didn’\w t|strong="G3588"\w* \w we|strong="G2532"\w* \w walk|strong="G4043"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w* \w spirit|strong="G4151"\w*? Didn’\w t|strong="G3588"\w* \w we|strong="G2532"\w* \w walk|strong="G4043"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w* \w steps|strong="G2487"\w*? +\p +\v 19 Again, \w do|strong="G1380"\w* \w you|strong="G5210"\w* \w think|strong="G1380"\w* \w that|strong="G3754"\w* \w we|strong="G3754"\w* \w are|strong="G3588"\w* excusing ourselves \w to|strong="G1722"\w* \w you|strong="G5210"\w*? \w In|strong="G1722"\w* \w the|strong="G1722"\w* \w sight|strong="G2713"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w we|strong="G3754"\w* \w speak|strong="G2980"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*. \w But|strong="G1161"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, beloved, \w are|strong="G3588"\w* \w for|strong="G3754"\w* \w your|strong="G3956"\w* \w edifying|strong="G3619"\w*. +\v 20 \w For|strong="G1063"\w* \w I|strong="G2504"\w* \w am|strong="G2309"\w* \w afraid|strong="G5399"\w* \w that|strong="G3361"\w* \w perhaps|strong="G3381"\w* \w when|strong="G2064"\w* \w I|strong="G2504"\w* \w come|strong="G2064"\w*, \w I|strong="G2504"\w* \w might|strong="G5210"\w* \w find|strong="G2147"\w* \w you|strong="G5210"\w* \w not|strong="G3756"\w* \w the|strong="G1063"\w* way \w I|strong="G2504"\w* \w want|strong="G2309"\w* \w to|strong="G2309"\w*, \w and|strong="G2064"\w* \w that|strong="G3361"\w* \w I|strong="G2504"\w* \w might|strong="G5210"\w* \w be|strong="G3756"\w* \w found|strong="G2147"\w* \w by|strong="G2064"\w* \w you|strong="G5210"\w* \w as|strong="G3634"\w* \w you|strong="G5210"\w* don’t \w desire|strong="G2309"\w*, \w that|strong="G3361"\w* \w perhaps|strong="G3381"\w* \w there|strong="G1063"\w* \w would|strong="G2309"\w* \w be|strong="G3756"\w* \w strife|strong="G2054"\w*, \w jealousy|strong="G2205"\w*, \w outbursts|strong="G2372"\w* \w of|strong="G2372"\w* \w anger|strong="G2372"\w*, factions, \w slander|strong="G2636"\w*, \w whisperings|strong="G5587"\w*, proud thoughts, \w or|strong="G3361"\w* riots, +\v 21 \w that|strong="G3739"\w* \w again|strong="G3825"\w* \w when|strong="G2532"\w* \w I|strong="G1473"\w* \w come|strong="G2064"\w* \w my|strong="G1473"\w* \w God|strong="G2316"\w* \w would|strong="G2316"\w* \w humble|strong="G5013"\w* \w me|strong="G1473"\w* \w before|strong="G1909"\w* \w you|strong="G5210"\w*, \w and|strong="G2532"\w* \w I|strong="G1473"\w* \w would|strong="G2316"\w* \w mourn|strong="G3996"\w* \w for|strong="G1909"\w* \w many|strong="G4183"\w* \w of|strong="G2316"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w have|strong="G2532"\w* \w sinned|strong="G4258"\w* \w before|strong="G1909"\w* \w now|strong="G2532"\w*, \w and|strong="G2532"\w* \w not|strong="G3361"\w* \w repented|strong="G3340"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* uncleanness, \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w*, \w and|strong="G2532"\w* lustfulness \w which|strong="G3739"\w* \w they|strong="G2532"\w* \w committed|strong="G4238"\w*. +\c 13 +\p +\v 1 \w This|strong="G3778"\w* \w is|strong="G3778"\w* \w the|strong="G2532"\w* \w third|strong="G5154"\w* \w time|strong="G5154"\w* \w I|strong="G2532"\w* \w am|strong="G2532"\w* \w coming|strong="G2064"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*. “\w At|strong="G1909"\w* \w the|strong="G2532"\w* \w mouth|strong="G4750"\w* \w of|strong="G2532"\w* \w two|strong="G1417"\w* \w or|strong="G2532"\w* \w three|strong="G5140"\w* \w witnesses|strong="G3144"\w* \w shall|strong="G2532"\w* \w every|strong="G3956"\w* \w word|strong="G4487"\w* \w be|strong="G2532"\w* \w established|strong="G2476"\w*.”\x + \xo 13:1 \xt Deuteronomy 19:15\x* +\v 2 \w I|strong="G2532"\w* \w have|strong="G2532"\w* warned previously, \w and|strong="G2532"\w* \w I|strong="G2532"\w* warn \w again|strong="G3825"\w*, \w as|strong="G5613"\w* \w when|strong="G5613"\w* \w I|strong="G2532"\w* \w was|strong="G3588"\w* \w present|strong="G3568"\w* \w the|strong="G2532"\w* \w second|strong="G1208"\w* \w time|strong="G1208"\w*, \w so|strong="G2532"\w* \w now|strong="G3568"\w*, \w being|strong="G2532"\w* absent, \w I|strong="G2532"\w* write \w to|strong="G1519"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w have|strong="G2532"\w* \w sinned|strong="G4258"\w* \w before|strong="G1519"\w* \w now|strong="G3568"\w* \w and|strong="G2532"\w* \w to|strong="G1519"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w rest|strong="G3062"\w* \w that|strong="G3754"\w* \w if|strong="G1437"\w* \w I|strong="G2532"\w* \w come|strong="G2064"\w* \w again|strong="G3825"\w*, \w I|strong="G2532"\w* \w will|strong="G2532"\w* \w not|strong="G3756"\w* \w spare|strong="G5339"\w*, +\v 3 \w seeing|strong="G1893"\w* \w that|strong="G3739"\w* \w you|strong="G5210"\w* \w seek|strong="G2212"\w* \w a|strong="G1519"\w* \w proof|strong="G1382"\w* \w of|strong="G1722"\w* \w Christ|strong="G5547"\w* \w who|strong="G3739"\w* \w speaks|strong="G2980"\w* \w in|strong="G1722"\w* \w me|strong="G1473"\w* \w who|strong="G3739"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* weak, \w but|strong="G3588"\w* \w is|strong="G3588"\w* powerful \w in|strong="G1722"\w* \w you|strong="G5210"\w*. +\v 4 \w For|strong="G1063"\w* \w he|strong="G2532"\w* \w was|strong="G2532"\w* \w crucified|strong="G4717"\w* \w through|strong="G1722"\w* weakness, \w yet|strong="G2532"\w* \w he|strong="G2532"\w* \w lives|strong="G2198"\w* \w through|strong="G1722"\w* \w the|strong="G1722"\w* \w power|strong="G1411"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*. \w For|strong="G1063"\w* \w we|strong="G2249"\w* \w also|strong="G2532"\w* \w are|strong="G2532"\w* weak \w in|strong="G1722"\w* \w him|strong="G2532"\w*, \w but|strong="G2532"\w* \w we|strong="G2249"\w* \w will|strong="G2316"\w* \w live|strong="G2198"\w* \w with|strong="G1722"\w* \w him|strong="G2532"\w* \w through|strong="G1722"\w* \w the|strong="G1722"\w* \w power|strong="G1411"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w* \w toward|strong="G1519"\w* \w you|strong="G5210"\w*. +\p +\v 5 \w Examine|strong="G1381"\w* \w your|strong="G1487"\w* \w own|strong="G1438"\w* \w selves|strong="G1438"\w*, \w whether|strong="G1487"\w* \w you|strong="G5210"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w faith|strong="G4102"\w*. \w Test|strong="G3985"\w* \w your|strong="G1487"\w* \w own|strong="G1438"\w* \w selves|strong="G1438"\w*. \w Or|strong="G2228"\w* don’\w t|strong="G3588"\w* \w you|strong="G5210"\w* \w know|strong="G1921"\w* \w about|strong="G1722"\w* \w your|strong="G1487"\w* \w own|strong="G1438"\w* \w selves|strong="G1438"\w*, \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w*?—\w unless|strong="G1487"\w* \w indeed|strong="G1510"\w* \w you|strong="G5210"\w* \w are|strong="G1510"\w* disqualified. +\v 6 \w But|strong="G1161"\w* \w I|strong="G1473"\w* \w hope|strong="G1679"\w* \w that|strong="G3754"\w* \w you|strong="G3754"\w* \w will|strong="G1510"\w* \w know|strong="G1097"\w* \w that|strong="G3754"\w* \w we|strong="G2249"\w* aren’t disqualified. +\p +\v 7 \w Now|strong="G1161"\w* \w I|strong="G1473"\w* \w pray|strong="G2172"\w* \w to|strong="G4314"\w* \w God|strong="G2316"\w* \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w do|strong="G4160"\w* \w no|strong="G3756"\w* \w evil|strong="G2556"\w*; \w not|strong="G3756"\w* \w that|strong="G2443"\w* \w we|strong="G2249"\w* \w may|strong="G2443"\w* \w appear|strong="G5316"\w* \w approved|strong="G1384"\w*, \w but|strong="G1161"\w* \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w may|strong="G2443"\w* \w do|strong="G4160"\w* \w that|strong="G2443"\w* \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w honorable|strong="G2570"\w*, \w though|strong="G5613"\w* \w we|strong="G2249"\w* \w may|strong="G2443"\w* \w seem|strong="G5316"\w* \w to|strong="G4314"\w* \w have|strong="G1473"\w* \w failed|strong="G3756"\w*. +\v 8 \w For|strong="G1063"\w* \w we|strong="G1063"\w* \w can|strong="G1410"\w* \w do|strong="G1410"\w* \w nothing|strong="G3756"\w* \w against|strong="G2596"\w* \w the|strong="G2596"\w* truth, \w but|strong="G1063"\w* \w for|strong="G1063"\w* \w the|strong="G2596"\w* truth. +\v 9 \w For|strong="G1063"\w* \w we|strong="G2249"\w* \w rejoice|strong="G5463"\w* \w when|strong="G3752"\w* \w we|strong="G2249"\w* \w are|strong="G1510"\w* weak \w and|strong="G2532"\w* \w you|strong="G5210"\w* \w are|strong="G1510"\w* \w strong|strong="G1415"\w*. \w We|strong="G2249"\w* \w also|strong="G2532"\w* \w pray|strong="G2172"\w* \w for|strong="G1063"\w* \w this|strong="G3778"\w*: \w your|strong="G2532"\w* becoming \w perfect|strong="G3778"\w*. +\v 10 \w For|strong="G1519"\w* \w this|strong="G3778"\w* \w cause|strong="G1223"\w* \w I|strong="G1473"\w* \w write|strong="G1125"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w while|strong="G3739"\w* absent, \w that|strong="G2443"\w* \w I|strong="G1473"\w* \w may|strong="G2532"\w* \w not|strong="G3756"\w* deal sharply \w when|strong="G2532"\w* \w present|strong="G3918"\w*, \w according|strong="G2596"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w authority|strong="G1849"\w* \w which|strong="G3739"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w gave|strong="G1325"\w* \w me|strong="G1325"\w* \w for|strong="G1519"\w* \w building|strong="G3619"\w* \w up|strong="G1519"\w* \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w for|strong="G1519"\w* \w tearing|strong="G2506"\w* \w down|strong="G2596"\w*. +\p +\v 11 \w Finally|strong="G3063"\w*, brothers, \w rejoice|strong="G5463"\w*! \w Be|strong="G1510"\w* perfected. \w Be|strong="G1510"\w* \w comforted|strong="G3870"\w*. \w Be|strong="G1510"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w* \w mind|strong="G5426"\w*. \w Live|strong="G2532"\w* \w in|strong="G2532"\w* \w peace|strong="G1515"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* love \w and|strong="G2532"\w* \w peace|strong="G1515"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w with|strong="G3326"\w* \w you|strong="G5210"\w*. +\v 12 Greet \w one|strong="G3956"\w* \w another|strong="G3588"\w* \w with|strong="G1722"\w* \w a|strong="G1722"\w* holy \w kiss|strong="G5370"\w*. +\p +\v 13 \w All|strong="G3956"\w* \w the|strong="G2532"\w* saints greet \w you|strong="G5210"\w*. +\p +\v 14 The grace of the Lord Jesus Christ, God’s love, and the fellowship of the Holy Spirit be with you all. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/78-GALeng-web.usfm b/bibles/eng-web_usfm/78-GALeng-web.usfm new file mode 100644 index 0000000..a8cce01 --- /dev/null +++ b/bibles/eng-web_usfm/78-GALeng-web.usfm @@ -0,0 +1,201 @@ +\id GAL 48-GAL-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Galatians +\toc1 Paul’s Letter to the Galatians +\toc2 Galatians +\toc3 Gal +\mt1 Paul’s Letter to the Galatians +\c 1 +\p +\v 1 \w Paul|strong="G3972"\w*, \w an|strong="G2532"\w* apostle—\w not|strong="G3756"\w* \w from|strong="G1537"\w* \w men|strong="G3588"\w*, \w nor|strong="G3761"\w* \w through|strong="G1223"\w* \w man|strong="G3498"\w*, \w but|strong="G2532"\w* \w through|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*,\f + \fr 1:1 \ft “Christ” means “Anointed One”.\f* \w and|strong="G2532"\w* \w God|strong="G2316"\w* \w the|strong="G2532"\w* \w Father|strong="G3962"\w*, \w who|strong="G3588"\w* \w raised|strong="G1453"\w* \w him|strong="G3588"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*— +\v 2 \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* brothers\f + \fr 1:2 \ft The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” \f* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w with|strong="G4862"\w* \w me|strong="G1473"\w*, \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w assemblies|strong="G1577"\w* \w of|strong="G2532"\w* \w Galatia|strong="G1053"\w*: +\v 3 \w Grace|strong="G5485"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w peace|strong="G1515"\w* \w from|strong="G1515"\w* \w God|strong="G2316"\w* \w the|strong="G2532"\w* \w Father|strong="G3962"\w* \w and|strong="G2532"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, +\v 4 \w who|strong="G3588"\w* \w gave|strong="G1325"\w* \w himself|strong="G1438"\w* \w for|strong="G5228"\w* \w our|strong="G2316"\w* sins, \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w deliver|strong="G1807"\w* \w us|strong="G1325"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w this|strong="G3588"\w* \w present|strong="G1764"\w* \w evil|strong="G4190"\w* age, \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w will|strong="G2307"\w* \w of|strong="G1537"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w Father|strong="G3962"\w*— +\v 5 \w to|strong="G1519"\w* \w whom|strong="G3739"\w* \w be|strong="G1519"\w* \w the|strong="G1519"\w* \w glory|strong="G1391"\w* \w forever|strong="G1519"\w* \w and|strong="G1391"\w* \w ever|strong="G1519"\w*. Amen. +\p +\v 6 \w I|strong="G3754"\w* \w marvel|strong="G2296"\w* \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w are|strong="G3588"\w* \w so|strong="G3779"\w* \w quickly|strong="G5030"\w* \w deserting|strong="G3346"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w called|strong="G2564"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w grace|strong="G5485"\w* \w of|strong="G5485"\w* \w Christ|strong="G5547"\w* \w to|strong="G1519"\w* \w a|strong="G1519"\w* \w different|strong="G2087"\w* “\w good|strong="G3588"\w* \w news|strong="G2098"\w*”, +\v 7 \w but|strong="G2532"\w* \w there|strong="G2532"\w* isn’\w t|strong="G3588"\w* \w another|strong="G3739"\w* “\w good|strong="G3756"\w* \w news|strong="G2098"\w*.” \w Only|strong="G1487"\w* \w there|strong="G2532"\w* \w are|strong="G1510"\w* \w some|strong="G5100"\w* \w who|strong="G3739"\w* \w trouble|strong="G5015"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w want|strong="G2309"\w* \w to|strong="G2532"\w* \w pervert|strong="G3344"\w* \w the|strong="G2532"\w* \w Good|strong="G3756"\w* \w News|strong="G2098"\w* \w of|strong="G2532"\w* \w Christ|strong="G5547"\w*. +\v 8 \w But|strong="G2532"\w* \w even|strong="G2532"\w* \w though|strong="G1437"\w* \w we|strong="G2249"\w*, \w or|strong="G2228"\w* \w an|strong="G2532"\w* angel \w from|strong="G1537"\w* \w heaven|strong="G3772"\w*, \w should|strong="G2532"\w* \w preach|strong="G2097"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w any|strong="G1437"\w* “\w good|strong="G2097"\w* \w news|strong="G2097"\w*” \w other|strong="G3739"\w* \w than|strong="G2228"\w* \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w we|strong="G2249"\w* \w preached|strong="G2097"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*, \w let|strong="G1510"\w* \w him|strong="G3739"\w* \w be|strong="G1510"\w* cursed. +\v 9 \w As|strong="G5613"\w* \w we|strong="G3739"\w* \w have|strong="G2532"\w* \w said|strong="G3004"\w* \w before|strong="G3844"\w*, \w so|strong="G2532"\w* \w I|strong="G3739"\w* \w now|strong="G2532"\w* \w say|strong="G3004"\w* \w again|strong="G3825"\w*: \w if|strong="G1487"\w* \w any|strong="G5100"\w* \w man|strong="G5100"\w* preaches \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w any|strong="G5100"\w* “\w good|strong="G2097"\w* \w news|strong="G2097"\w*” \w other|strong="G3739"\w* \w than|strong="G3844"\w* \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w you|strong="G5210"\w* \w received|strong="G3880"\w*, \w let|strong="G1510"\w* \w him|strong="G3739"\w* \w be|strong="G1510"\w* cursed. +\p +\v 10 \w For|strong="G1063"\w* \w am|strong="G1510"\w* \w I|strong="G1063"\w* \w now|strong="G1510"\w* \w seeking|strong="G2212"\w* \w the|strong="G3588"\w* \w favor|strong="G3982"\w* \w of|strong="G2316"\w* \w men|strong="G1401"\w*, \w or|strong="G2228"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*? \w Or|strong="G2228"\w* \w am|strong="G1510"\w* \w I|strong="G1063"\w* \w striving|strong="G2212"\w* \w to|strong="G2212"\w* please \w men|strong="G1401"\w*? \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w I|strong="G1063"\w* \w were|strong="G1510"\w* \w still|strong="G2089"\w* pleasing \w men|strong="G1401"\w*, \w I|strong="G1063"\w* wouldn’\w t|strong="G3588"\w* \w be|strong="G1510"\w* \w a|strong="G1510"\w* \w servant|strong="G1401"\w* \w of|strong="G2316"\w* \w Christ|strong="G5547"\w*. +\p +\v 11 \w But|strong="G1161"\w* \w I|strong="G1473"\w* \w make|strong="G1107"\w* \w known|strong="G1107"\w* \w to|strong="G2596"\w* \w you|strong="G5210"\w*, brothers, \w concerning|strong="G2596"\w* \w the|strong="G1161"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w* \w which|strong="G3588"\w* \w was|strong="G1510"\w* \w preached|strong="G2097"\w* \w by|strong="G5259"\w* \w me|strong="G1473"\w*, \w that|strong="G3754"\w* \w it|strong="G3754"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w man|strong="G3756"\w*. +\v 12 \w For|strong="G1063"\w* \w I|strong="G1473"\w* didn’t \w receive|strong="G3880"\w* \w it|strong="G1063"\w* \w from|strong="G3844"\w* man, \w nor|strong="G3761"\w* \w was|strong="G2424"\w* \w I|strong="G1473"\w* \w taught|strong="G1321"\w* \w it|strong="G1063"\w*, \w but|strong="G1063"\w* \w it|strong="G1063"\w* \w came|strong="G1223"\w* \w to|strong="G2424"\w* \w me|strong="G1473"\w* \w through|strong="G1223"\w* revelation \w of|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\v 13 \w For|strong="G1063"\w* \w you|strong="G3754"\w* \w have|strong="G2532"\w* heard \w of|strong="G2316"\w* \w my|strong="G1699"\w* \w way|strong="G2596"\w* \w of|strong="G2316"\w* living \w in|strong="G1722"\w* \w time|strong="G4218"\w* \w past|strong="G4218"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* Jews’ religion, \w how|strong="G3754"\w* \w that|strong="G3754"\w* \w beyond|strong="G3754"\w* \w measure|strong="G5236"\w* \w I|strong="G2532"\w* \w persecuted|strong="G1377"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* ravaged \w it|strong="G2532"\w*. +\v 14 \w I|strong="G1473"\w* advanced \w in|strong="G1722"\w* \w the|strong="G1722"\w* Jews’ religion \w beyond|strong="G5228"\w* \w many|strong="G4183"\w* \w of|strong="G2532"\w* \w my|strong="G1722"\w* own age \w among|strong="G1722"\w* \w my|strong="G1722"\w* \w countrymen|strong="G1085"\w*, \w being|strong="G5225"\w* \w more|strong="G4183"\w* \w exceedingly|strong="G4056"\w* \w zealous|strong="G2207"\w* \w for|strong="G5228"\w* \w the|strong="G1722"\w* \w traditions|strong="G3862"\w* \w of|strong="G2532"\w* \w my|strong="G1722"\w* \w fathers|strong="G3862"\w*. +\v 15 \w But|strong="G1161"\w* \w when|strong="G3753"\w* \w it|strong="G2532"\w* \w was|strong="G3588"\w* \w the|strong="G2532"\w* \w good|strong="G2106"\w* \w pleasure|strong="G2106"\w* \w of|strong="G1537"\w* \w God|strong="G2532"\w*, \w who|strong="G3588"\w* separated \w me|strong="G1473"\w* \w from|strong="G1537"\w* \w my|strong="G1473"\w* \w mother|strong="G3384"\w*’s \w womb|strong="G2836"\w* \w and|strong="G2532"\w* \w called|strong="G2564"\w* \w me|strong="G1473"\w* \w through|strong="G1223"\w* \w his|strong="G1223"\w* \w grace|strong="G5485"\w*, +\v 16 \w to|strong="G2443"\w* reveal \w his|strong="G1722"\w* \w Son|strong="G5207"\w* \w in|strong="G1722"\w* \w me|strong="G1473"\w*, \w that|strong="G2443"\w* \w I|strong="G1473"\w* \w might|strong="G2532"\w* \w preach|strong="G2097"\w* \w him|strong="G3588"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w*, \w I|strong="G1473"\w* didn’\w t|strong="G3588"\w* \w immediately|strong="G2112"\w* confer \w with|strong="G1722"\w* \w flesh|strong="G4561"\w* \w and|strong="G2532"\w* blood, +\v 17 \w nor|strong="G3761"\w* \w did|strong="G2532"\w* \w I|strong="G1473"\w* \w go|strong="G1519"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w* \w to|strong="G1519"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* apostles \w before|strong="G4253"\w* \w me|strong="G1473"\w*, \w but|strong="G2532"\w* \w I|strong="G1473"\w* \w went|strong="G2532"\w* \w away|strong="G5290"\w* \w into|strong="G1519"\w* Arabia. \w Then|strong="G2532"\w* \w I|strong="G1473"\w* \w returned|strong="G5290"\w* \w to|strong="G1519"\w* \w Damascus|strong="G1154"\w*. +\p +\v 18 \w Then|strong="G2532"\w* \w after|strong="G3326"\w* \w three|strong="G5140"\w* \w years|strong="G2094"\w* \w I|strong="G2532"\w* \w went|strong="G2532"\w* \w up|strong="G1519"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w* \w to|strong="G1519"\w* visit \w Peter|strong="G2532"\w*, \w and|strong="G2532"\w* \w stayed|strong="G1961"\w* \w with|strong="G3326"\w* \w him|strong="G2532"\w* \w fifteen|strong="G1178"\w* \w days|strong="G2250"\w*. +\v 19 \w But|strong="G1161"\w* \w of|strong="G2962"\w* \w the|strong="G1161"\w* \w other|strong="G2087"\w* apostles \w I|strong="G1161"\w* \w saw|strong="G3708"\w* \w no|strong="G3756"\w* \w one|strong="G3588"\w* \w except|strong="G1487"\w* \w James|strong="G2385"\w*, \w the|strong="G1161"\w* \w Lord|strong="G2962"\w*’\w s|strong="G2962"\w* brother. +\v 20 \w Now|strong="G1161"\w* \w about|strong="G3754"\w* \w the|strong="G1161"\w* \w things|strong="G3588"\w* \w which|strong="G3739"\w* \w I|strong="G3739"\w* \w write|strong="G1125"\w* \w to|strong="G3756"\w* \w you|strong="G5210"\w*, \w behold|strong="G2400"\w*,\f + \fr 1:20 \ft “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w before|strong="G1799"\w* \w God|strong="G2316"\w*, \w I|strong="G3739"\w*’m \w not|strong="G3756"\w* \w lying|strong="G5574"\w*. +\v 21 \w Then|strong="G2532"\w* \w I|strong="G2532"\w* \w came|strong="G2064"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w regions|strong="G2824"\w* \w of|strong="G2532"\w* \w Syria|strong="G4947"\w* \w and|strong="G2532"\w* \w Cilicia|strong="G2791"\w*. +\v 22 \w I|strong="G1161"\w* \w was|strong="G1510"\w* still unknown \w by|strong="G1722"\w* \w face|strong="G4383"\w* \w to|strong="G1722"\w* \w the|strong="G1722"\w* \w assemblies|strong="G1577"\w* \w of|strong="G1577"\w* \w Judea|strong="G2449"\w* \w which|strong="G3588"\w* \w were|strong="G1510"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*, +\v 23 \w but|strong="G1161"\w* \w they|strong="G1161"\w* \w only|strong="G3440"\w* heard, “\w He|strong="G1161"\w* \w who|strong="G3739"\w* \w once|strong="G4218"\w* \w persecuted|strong="G1377"\w* \w us|strong="G2097"\w* \w now|strong="G1161"\w* preaches \w the|strong="G1161"\w* \w faith|strong="G4102"\w* \w that|strong="G3754"\w* \w he|strong="G1161"\w* \w once|strong="G4218"\w* tried \w to|strong="G1161"\w* \w destroy|strong="G4199"\w*.” +\v 24 \w So|strong="G2532"\w* \w they|strong="G2532"\w* \w glorified|strong="G1392"\w* \w God|strong="G2316"\w* \w in|strong="G1722"\w* \w me|strong="G1473"\w*. +\c 2 +\p +\v 1 \w Then|strong="G2532"\w* \w after|strong="G3326"\w* \w a|strong="G2532"\w* \w period|strong="G2532"\w* \w of|strong="G1223"\w* \w fourteen|strong="G1180"\w* \w years|strong="G2094"\w* \w I|strong="G2532"\w* \w went|strong="G2532"\w* \w up|strong="G1519"\w* \w again|strong="G3825"\w* \w to|strong="G1519"\w* \w Jerusalem|strong="G2414"\w* \w with|strong="G3326"\w* Barnabas, \w taking|strong="G4838"\w* \w Titus|strong="G5103"\w* \w also|strong="G2532"\w* \w with|strong="G3326"\w* \w me|strong="G1223"\w*. +\v 2 \w I|strong="G3739"\w* \w went|strong="G2532"\w* \w up|strong="G1519"\w* \w by|strong="G1722"\w* revelation, \w and|strong="G2532"\w* \w I|strong="G3739"\w* \w laid|strong="G2532"\w* \w before|strong="G1722"\w* \w them|strong="G3588"\w* \w the|strong="G1722"\w* \w Good|strong="G1380"\w* \w News|strong="G2098"\w* \w which|strong="G3739"\w* \w I|strong="G3739"\w* \w preach|strong="G2784"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w*, \w but|strong="G1161"\w* \w privately|strong="G2398"\w* \w before|strong="G1722"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w were|strong="G3588"\w* respected, \w for|strong="G1519"\w* \w fear|strong="G3381"\w* \w that|strong="G3739"\w* \w I|strong="G3739"\w* \w might|strong="G2532"\w* \w be|strong="G2532"\w* \w running|strong="G5143"\w*, \w or|strong="G2228"\w* \w had|strong="G2532"\w* \w run|strong="G5143"\w*, \w in|strong="G1722"\w* \w vain|strong="G2756"\w*. +\v 3 \w But|strong="G3588"\w* \w not|strong="G3761"\w* \w even|strong="G3761"\w* \w Titus|strong="G5103"\w*, \w who|strong="G3588"\w* \w was|strong="G1510"\w* \w with|strong="G4862"\w* \w me|strong="G1473"\w*, \w being|strong="G1510"\w* \w a|strong="G1510"\w* \w Greek|strong="G1672"\w*, \w was|strong="G1510"\w* compelled \w to|strong="G1510"\w* \w be|strong="G1510"\w* \w circumcised|strong="G4059"\w*. +\v 4 \w This|strong="G3588"\w* \w was|strong="G3588"\w* \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* \w false|strong="G5569"\w* brothers \w secretly|strong="G3920"\w* \w brought|strong="G1161"\w* \w in|strong="G1722"\w*, \w who|strong="G3739"\w* stole \w in|strong="G1722"\w* \w to|strong="G2443"\w* \w spy|strong="G2684"\w* \w out|strong="G2684"\w* \w our|strong="G2424"\w* \w liberty|strong="G1657"\w* \w which|strong="G3739"\w* \w we|strong="G2249"\w* \w have|strong="G2192"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*, \w that|strong="G2443"\w* \w they|strong="G1161"\w* \w might|strong="G2192"\w* \w bring|strong="G2615"\w* \w us|strong="G2249"\w* \w into|strong="G1722"\w* \w bondage|strong="G2615"\w*, +\v 5 \w to|strong="G4314"\w* \w whom|strong="G3739"\w* \w we|strong="G3739"\w* \w gave|strong="G3588"\w* \w no|strong="G3761"\w* \w place|strong="G1502"\w* \w in|strong="G4314"\w* \w the|strong="G4314"\w* \w way|strong="G3739"\w* \w of|strong="G2098"\w* \w subjection|strong="G5292"\w*, \w not|strong="G3761"\w* \w for|strong="G4314"\w* \w an|strong="G4314"\w* \w hour|strong="G5610"\w*, \w that|strong="G2443"\w* \w the|strong="G4314"\w* truth \w of|strong="G2098"\w* \w the|strong="G4314"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w might|strong="G5610"\w* \w continue|strong="G1265"\w* \w with|strong="G4314"\w* \w you|strong="G5210"\w*. +\v 6 \w But|strong="G1161"\w* \w from|strong="G3756"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G1510"\w* \w reputed|strong="G1380"\w* \w to|strong="G3756"\w* \w be|strong="G1510"\w* important—\w whatever|strong="G5100"\w* \w they|strong="G1161"\w* \w were|strong="G1510"\w*, \w it|strong="G1161"\w* \w makes|strong="G1308"\w* \w no|strong="G3756"\w* \w difference|strong="G1308"\w* \w to|strong="G3756"\w* \w me|strong="G1473"\w*; \w God|strong="G2316"\w* doesn’\w t|strong="G3588"\w* \w show|strong="G2983"\w* \w partiality|strong="G4383"\w* \w to|strong="G3756"\w* \w man|strong="G5100"\w*—\w they|strong="G1161"\w*, \w I|strong="G1473"\w* \w say|strong="G1473"\w*, \w who|strong="G3588"\w* \w were|strong="G1510"\w* respected imparted \w nothing|strong="G3762"\w* \w to|strong="G3756"\w* \w me|strong="G1473"\w*, +\v 7 \w but|strong="G3588"\w* \w to|strong="G3708"\w* \w the|strong="G3588"\w* \w contrary|strong="G5121"\w*, \w when|strong="G3754"\w* \w they|strong="G3588"\w* \w saw|strong="G3708"\w* \w that|strong="G3754"\w* \w I|strong="G3754"\w* \w had|strong="G3588"\w* been \w entrusted|strong="G4100"\w* \w with|strong="G3588"\w* \w the|strong="G3588"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w for|strong="G3754"\w* \w the|strong="G3588"\w* uncircumcised, \w even|strong="G2531"\w* \w as|strong="G2531"\w* \w Peter|strong="G4074"\w* \w with|strong="G3588"\w* \w the|strong="G3588"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w for|strong="G3754"\w* \w the|strong="G3588"\w* \w circumcised|strong="G4061"\w*— +\v 8 \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w worked|strong="G1754"\w* through \w Peter|strong="G4074"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* apostleship \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w circumcised|strong="G4061"\w* \w also|strong="G2532"\w* \w worked|strong="G1754"\w* through \w me|strong="G1473"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w*— +\v 9 \w and|strong="G2532"\w* \w when|strong="G1161"\w* \w they|strong="G2532"\w* \w perceived|strong="G1097"\w* \w the|strong="G2532"\w* \w grace|strong="G5485"\w* \w that|strong="G2443"\w* \w was|strong="G1510"\w* \w given|strong="G1325"\w* \w to|strong="G1519"\w* \w me|strong="G1325"\w*, \w James|strong="G2385"\w* \w and|strong="G2532"\w* \w Cephas|strong="G2786"\w* \w and|strong="G2532"\w* \w John|strong="G2491"\w*, \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G1510"\w* \w reputed|strong="G1380"\w* \w to|strong="G1519"\w* \w be|strong="G1510"\w* \w pillars|strong="G4769"\w*, \w gave|strong="G1325"\w* \w to|strong="G1519"\w* Barnabas \w and|strong="G2532"\w* \w me|strong="G1325"\w* \w the|strong="G2532"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* \w of|strong="G2532"\w* \w fellowship|strong="G2842"\w*, \w that|strong="G2443"\w* \w we|strong="G2249"\w* \w should|strong="G3588"\w* \w go|strong="G1519"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w circumcision|strong="G4061"\w*. +\v 10 \w They|strong="G2532"\w* \w only|strong="G3440"\w* asked \w us|strong="G4160"\w* \w to|strong="G2443"\w* \w remember|strong="G3421"\w* \w the|strong="G2532"\w* \w poor|strong="G4434"\w*—\w which|strong="G3739"\w* \w very|strong="G2532"\w* \w thing|strong="G3778"\w* \w I|strong="G3739"\w* \w was|strong="G3588"\w* \w also|strong="G2532"\w* zealous \w to|strong="G2443"\w* \w do|strong="G4160"\w*. +\p +\v 11 \w But|strong="G1161"\w* \w when|strong="G3753"\w* Peter \w came|strong="G2064"\w* \w to|strong="G1519"\w* Antioch, \w I|strong="G1161"\w* resisted \w him|strong="G1519"\w* \w to|strong="G1519"\w* \w his|strong="G1519"\w* \w face|strong="G4383"\w*, \w because|strong="G3754"\w* \w he|strong="G1161"\w* stood \w condemned|strong="G2607"\w*. +\v 12 \w For|strong="G1063"\w* \w before|strong="G4253"\w* \w some|strong="G5100"\w* \w people|strong="G1484"\w* \w came|strong="G2064"\w* \w from|strong="G1537"\w* \w James|strong="G2385"\w*, \w he|strong="G2532"\w* \w ate|strong="G4906"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w*. \w But|strong="G1161"\w* \w when|strong="G3753"\w* \w they|strong="G2532"\w* \w came|strong="G2064"\w*, \w he|strong="G2532"\w* \w drew|strong="G2532"\w* \w back|strong="G5288"\w* \w and|strong="G2532"\w* separated \w himself|strong="G1438"\w*, \w fearing|strong="G5399"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w circumcision|strong="G4061"\w*. +\v 13 \w And|strong="G2532"\w* \w the|strong="G2532"\w* \w rest|strong="G3062"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w joined|strong="G4942"\w* \w him|strong="G3588"\w* \w in|strong="G2532"\w* \w his|strong="G2532"\w* \w hypocrisy|strong="G5272"\w*, \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w even|strong="G2532"\w* Barnabas \w was|strong="G3588"\w* \w carried|strong="G4879"\w* \w away|strong="G4879"\w* \w with|strong="G2532"\w* \w their|strong="G2532"\w* \w hypocrisy|strong="G5272"\w*. +\v 14 \w But|strong="G2532"\w* \w when|strong="G3753"\w* \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w that|strong="G3754"\w* \w they|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w walk|strong="G2532"\w* \w uprightly|strong="G3716"\w* \w according|strong="G3756"\w* \w to|strong="G4314"\w* \w the|strong="G2532"\w* truth \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Good|strong="G3956"\w* \w News|strong="G2098"\w*, \w I|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w Peter|strong="G2532"\w* \w before|strong="G1715"\w* \w them|strong="G3588"\w* \w all|strong="G3956"\w*, “\w If|strong="G1487"\w* \w you|strong="G4771"\w*, \w being|strong="G5225"\w* \w a|strong="G2532"\w* \w Jew|strong="G2453"\w*, \w live|strong="G2198"\w* \w as|strong="G2532"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w* \w do|strong="G2532"\w*, \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w as|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w do|strong="G2532"\w*, \w why|strong="G3754"\w* \w do|strong="G2532"\w* \w you|strong="G4771"\w* compel \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w* \w to|strong="G4314"\w* \w live|strong="G2198"\w* \w as|strong="G2532"\w* \w the|strong="G2532"\w* \w Jews|strong="G2453"\w* \w do|strong="G2532"\w*? +\p +\v 15 “\w We|strong="G2249"\w*, \w being|strong="G2532"\w* \w Jews|strong="G2453"\w* \w by|strong="G1537"\w* \w nature|strong="G5449"\w* \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w Gentile|strong="G1484"\w* sinners, +\v 16 \w yet|strong="G2532"\w* \w knowing|strong="G1492"\w* \w that|strong="G3754"\w* \w a|strong="G2532"\w* \w man|strong="G3956"\w* \w is|strong="G5547"\w* \w not|strong="G3756"\w* \w justified|strong="G1344"\w* \w by|strong="G1223"\w* \w the|strong="G2532"\w* \w works|strong="G2041"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w* \w but|strong="G1161"\w* \w through|strong="G1223"\w* \w faith|strong="G4102"\w* \w in|strong="G1519"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w even|strong="G2532"\w* \w we|strong="G2249"\w* \w believed|strong="G4100"\w* \w in|strong="G1519"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*, \w that|strong="G3754"\w* \w we|strong="G2249"\w* \w might|strong="G2532"\w* \w be|strong="G2532"\w* \w justified|strong="G1344"\w* \w by|strong="G1223"\w* \w faith|strong="G4102"\w* \w in|strong="G1519"\w* \w Christ|strong="G5547"\w* \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w by|strong="G1223"\w* \w the|strong="G2532"\w* \w works|strong="G2041"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w*, \w because|strong="G3754"\w* \w no|strong="G3756"\w* \w flesh|strong="G4561"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w justified|strong="G1344"\w* \w by|strong="G1223"\w* \w the|strong="G2532"\w* \w works|strong="G2041"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w*. +\v 17 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w while|strong="G1722"\w* \w we|strong="G2532"\w* \w sought|strong="G2212"\w* \w to|strong="G2532"\w* \w be|strong="G1096"\w* \w justified|strong="G1344"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*, \w we|strong="G2532"\w* \w ourselves|strong="G1096"\w* \w also|strong="G2532"\w* \w were|strong="G1096"\w* \w found|strong="G2147"\w* sinners, \w is|strong="G1096"\w* \w Christ|strong="G5547"\w* \w a|strong="G1096"\w* \w servant|strong="G1249"\w* \w of|strong="G2532"\w* sin? \w Certainly|strong="G2532"\w* \w not|strong="G3361"\w*! +\v 18 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w I|strong="G3739"\w* \w build|strong="G3618"\w* \w up|strong="G3618"\w* \w again|strong="G3825"\w* \w those|strong="G3778"\w* \w things|strong="G3778"\w* \w which|strong="G3739"\w* \w I|strong="G3739"\w* \w destroyed|strong="G2647"\w*, \w I|strong="G3739"\w* \w prove|strong="G4921"\w* \w myself|strong="G1683"\w* \w a|strong="G1487"\w* law-breaker. +\v 19 \w For|strong="G1063"\w* \w I|strong="G1473"\w* \w through|strong="G1223"\w* \w the|strong="G1223"\w* \w law|strong="G3551"\w* died \w to|strong="G2443"\w* \w the|strong="G1223"\w* \w law|strong="G3551"\w*, \w that|strong="G2443"\w* \w I|strong="G1473"\w* \w might|strong="G2316"\w* \w live|strong="G2198"\w* \w to|strong="G2443"\w* \w God|strong="G2316"\w*. +\v 20 \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w been|strong="G2532"\w* \w crucified|strong="G4957"\w* \w with|strong="G1722"\w* \w Christ|strong="G5547"\w*, \w and|strong="G2532"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w no|strong="G3765"\w* \w longer|strong="G3765"\w* \w I|strong="G1473"\w* \w who|strong="G3739"\w* \w live|strong="G2198"\w*, \w but|strong="G1161"\w* \w Christ|strong="G5547"\w* \w lives|strong="G2198"\w* \w in|strong="G1722"\w* \w me|strong="G1473"\w*. \w That|strong="G3739"\w* \w life|strong="G2198"\w* \w which|strong="G3739"\w* \w I|strong="G1473"\w* \w now|strong="G1161"\w* \w live|strong="G2198"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*, \w I|strong="G1473"\w* \w live|strong="G2198"\w* \w by|strong="G1722"\w* \w faith|strong="G4102"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*, \w who|strong="G3739"\w* loved \w me|strong="G1473"\w* \w and|strong="G2532"\w* \w gave|strong="G3860"\w* \w himself|strong="G1438"\w* \w up|strong="G3860"\w* \w for|strong="G5228"\w* \w me|strong="G1473"\w*. +\v 21 \w I|strong="G1063"\w* don’\w t|strong="G3588"\w* reject \w the|strong="G1223"\w* \w grace|strong="G5485"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w*. \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w righteousness|strong="G1343"\w* \w is|strong="G3588"\w* \w through|strong="G1223"\w* \w the|strong="G1223"\w* \w law|strong="G3551"\w*, \w then|strong="G1063"\w* \w Christ|strong="G5547"\w* \w died|strong="G3588"\w* \w for|strong="G1063"\w* \w nothing|strong="G3756"\w*!” +\c 3 +\p +\v 1 Foolish \w Galatians|strong="G1052"\w*, \w who|strong="G3739"\w* \w has|strong="G5101"\w* bewitched \w you|strong="G5210"\w* \w not|strong="G3739"\w* \w to|strong="G2596"\w* obey \w the|strong="G2596"\w* truth, \w before|strong="G2596"\w* \w whose|strong="G3739"\w* \w eyes|strong="G3788"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w was|strong="G2424"\w* openly \w portrayed|strong="G4270"\w* \w among|strong="G2596"\w* \w you|strong="G5210"\w* \w as|strong="G2596"\w* \w crucified|strong="G4717"\w*? +\v 2 \w I|strong="G3778"\w* \w just|strong="G3440"\w* \w want|strong="G2309"\w* \w to|strong="G2309"\w* \w learn|strong="G3129"\w* \w this|strong="G3778"\w* \w from|strong="G1537"\w* \w you|strong="G5210"\w*: \w Did|strong="G3588"\w* \w you|strong="G5210"\w* \w receive|strong="G2983"\w* \w the|strong="G1537"\w* \w Spirit|strong="G4151"\w* \w by|strong="G1537"\w* \w the|strong="G1537"\w* \w works|strong="G2041"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w law|strong="G3551"\w*, \w or|strong="G2228"\w* \w by|strong="G1537"\w* hearing \w of|strong="G1537"\w* \w faith|strong="G4102"\w*? +\v 3 \w Are|strong="G1510"\w* \w you|strong="G1510"\w* \w so|strong="G3779"\w* foolish? \w Having|strong="G4151"\w* \w begun|strong="G1728"\w* \w in|strong="G4151"\w* \w the|strong="G4151"\w* \w Spirit|strong="G4151"\w*, \w are|strong="G1510"\w* \w you|strong="G1510"\w* \w now|strong="G3568"\w* completed \w in|strong="G4151"\w* \w the|strong="G4151"\w* \w flesh|strong="G4561"\w*? +\v 4 \w Did|strong="G2532"\w* \w you|strong="G1487"\w* \w suffer|strong="G3958"\w* \w so|strong="G2532"\w* \w many|strong="G5118"\w* \w things|strong="G5118"\w* \w in|strong="G2532"\w* \w vain|strong="G1500"\w*, \w if|strong="G1487"\w* \w it|strong="G2532"\w* \w is|strong="G2532"\w* \w indeed|strong="G2532"\w* \w in|strong="G2532"\w* \w vain|strong="G1500"\w*? +\v 5 \w He|strong="G2532"\w* \w therefore|strong="G3767"\w* \w who|strong="G3588"\w* \w supplies|strong="G2023"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w does|strong="G2023"\w* \w miracles|strong="G1411"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w*, \w does|strong="G2023"\w* \w he|strong="G2532"\w* \w do|strong="G2532"\w* \w it|strong="G2532"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w works|strong="G2041"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w*, \w or|strong="G2228"\w* \w by|strong="G1722"\w* hearing \w of|strong="G1537"\w* \w faith|strong="G4102"\w*? +\v 6 \w Even|strong="G2532"\w* \w so|strong="G2532"\w*, \w Abraham|strong="G4100"\w* “\w believed|strong="G4100"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w it|strong="G2532"\w* \w was|strong="G3588"\w* \w counted|strong="G3049"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w for|strong="G1519"\w* \w righteousness|strong="G1343"\w*.”\x + \xo 3:6 \xt Genesis 15:6\x* +\v 7 \w Know|strong="G1097"\w* \w therefore|strong="G3754"\w* \w that|strong="G3754"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w of|strong="G1537"\w* \w faith|strong="G4102"\w* \w are|strong="G1510"\w* \w children|strong="G5207"\w* \w of|strong="G1537"\w* Abraham. +\v 8 \w The|strong="G1722"\w* \w Scripture|strong="G1124"\w*, foreseeing \w that|strong="G3754"\w* \w God|strong="G2316"\w* \w would|strong="G2316"\w* \w justify|strong="G1344"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w* \w by|strong="G1722"\w* \w faith|strong="G4102"\w*, \w preached|strong="G4283"\w* \w the|strong="G1722"\w* \w Good|strong="G3956"\w* News \w beforehand|strong="G4283"\w* \w to|strong="G1722"\w* Abraham, \w saying|strong="G3754"\w*, “\w In|strong="G1722"\w* \w you|strong="G4771"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w nations|strong="G1484"\w* \w will|strong="G2316"\w* \w be|strong="G3956"\w* \w blessed|strong="G1757"\w*.”\x + \xo 3:8 \xt Genesis 12:3; 18:18; 22:18\x* +\v 9 \w So|strong="G5620"\w* \w then|strong="G5620"\w*, \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w of|strong="G1537"\w* \w faith|strong="G4102"\w* \w are|strong="G3588"\w* \w blessed|strong="G2127"\w* \w with|strong="G4862"\w* \w the|strong="G1537"\w* \w faithful|strong="G4103"\w* Abraham. +\p +\v 10 \w For|strong="G1063"\w* \w as|strong="G3745"\w* \w many|strong="G3745"\w* \w as|strong="G3745"\w* \w are|strong="G1510"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w works|strong="G2041"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w are|strong="G1510"\w* \w under|strong="G5259"\w* \w a|strong="G1722"\w* \w curse|strong="G2671"\w*. \w For|strong="G1063"\w* \w it|strong="G3754"\w* \w is|strong="G1510"\w* \w written|strong="G1125"\w*, “\w Cursed|strong="G1944"\w* \w is|strong="G1510"\w* \w everyone|strong="G3956"\w* \w who|strong="G3739"\w* doesn’\w t|strong="G3588"\w* \w continue|strong="G1696"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w that|strong="G3754"\w* \w are|strong="G1510"\w* \w written|strong="G1125"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w book|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w*, \w to|strong="G1722"\w* \w do|strong="G4160"\w* \w them|strong="G3588"\w*.”\x + \xo 3:10 \xt Deuteronomy 27:26\x* +\v 11 \w Now|strong="G1161"\w* \w that|strong="G3754"\w* \w no|strong="G3762"\w* \w man|strong="G3762"\w* \w is|strong="G3588"\w* \w justified|strong="G1344"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w before|strong="G3844"\w* \w God|strong="G2316"\w* \w is|strong="G3588"\w* \w evident|strong="G1212"\w*, \w for|strong="G3754"\w*, “\w The|strong="G1722"\w* \w righteous|strong="G1342"\w* \w will|strong="G2316"\w* \w live|strong="G2198"\w* \w by|strong="G1722"\w* \w faith|strong="G4102"\w*.”\x + \xo 3:11 \xt Habakkuk 2:4\x* +\v 12 \w The|strong="G1722"\w* \w law|strong="G3551"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w of|strong="G1537"\w* \w faith|strong="G4102"\w*, \w but|strong="G1161"\w*, “\w The|strong="G1722"\w* \w man|strong="G3756"\w* \w who|strong="G3588"\w* \w does|strong="G4160"\w* \w them|strong="G3588"\w* \w will|strong="G1510"\w* \w live|strong="G2198"\w* \w by|strong="G1722"\w* \w them|strong="G3588"\w*.”\x + \xo 3:12 \xt Leviticus 18:5\x* +\p +\v 13 \w Christ|strong="G5547"\w* \w redeemed|strong="G1805"\w* \w us|strong="G2249"\w* \w from|strong="G1537"\w* \w the|strong="G3956"\w* \w curse|strong="G2671"\w* \w of|strong="G1537"\w* \w the|strong="G3956"\w* \w law|strong="G3551"\w*, having \w become|strong="G1096"\w* \w a|strong="G1096"\w* \w curse|strong="G2671"\w* \w for|strong="G3754"\w* \w us|strong="G2249"\w*. \w For|strong="G3754"\w* \w it|strong="G3754"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, “\w Cursed|strong="G1944"\w* \w is|strong="G3588"\w* \w everyone|strong="G3956"\w* \w who|strong="G3588"\w* \w hangs|strong="G2910"\w* \w on|strong="G1909"\w* \w a|strong="G1096"\w* \w tree|strong="G3586"\w*,”\x + \xo 3:13 \xt Deuteronomy 21:23\x* +\v 14 \w that|strong="G2443"\w* \w the|strong="G1722"\w* \w blessing|strong="G2129"\w* \w of|strong="G4151"\w* Abraham \w might|strong="G1484"\w* \w come|strong="G1096"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w* \w through|strong="G1223"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*, \w that|strong="G2443"\w* \w we|strong="G2443"\w* \w might|strong="G1484"\w* \w receive|strong="G2983"\w* \w the|strong="G1722"\w* \w promise|strong="G1860"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w through|strong="G1223"\w* \w faith|strong="G4102"\w*. +\p +\v 15 Brothers, \w speaking|strong="G3004"\w* \w of|strong="G2596"\w* human \w terms|strong="G2596"\w*, \w though|strong="G3676"\w* \w it|strong="G3004"\w* \w is|strong="G3762"\w* only \w a|strong="G2228"\w* \w man|strong="G3762"\w*’s \w covenant|strong="G1242"\w*, \w yet|strong="G3676"\w* \w when|strong="G3004"\w* \w it|strong="G3004"\w* \w has|strong="G3762"\w* been \w confirmed|strong="G2964"\w*, \w no|strong="G3762"\w* \w one|strong="G3762"\w* makes \w it|strong="G3004"\w* void \w or|strong="G2228"\w* \w adds|strong="G1928"\w* \w to|strong="G2596"\w* \w it|strong="G3004"\w*. +\v 16 \w Now|strong="G1161"\w* \w the|strong="G2532"\w* \w promises|strong="G1860"\w* \w were|strong="G1510"\w* \w spoken|strong="G3004"\w* \w to|strong="G2532"\w* Abraham \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w his|strong="G1909"\w* offspring.\f + \fr 3:16 \ft or, seed\f* \w He|strong="G2532"\w* doesn’\w t|strong="G3588"\w* \w say|strong="G3004"\w*, “\w To|strong="G2532"\w* \w descendants|strong="G4690"\w*\f + \fr 3:16 \ft or, seeds\f*”, \w as|strong="G5613"\w* \w of|strong="G2532"\w* \w many|strong="G4183"\w*, \w but|strong="G1161"\w* \w as|strong="G5613"\w* \w of|strong="G2532"\w* \w one|strong="G1520"\w*, “\w To|strong="G2532"\w* \w your|strong="G2532"\w* offspring”,\x + \xo 3:16 \xt Genesis 12:7; 13:15; 24:7\x* \w which|strong="G3739"\w* \w is|strong="G1510"\w* \w Christ|strong="G5547"\w*. +\v 17 \w Now|strong="G1161"\w* \w I|strong="G2532"\w* \w say|strong="G3004"\w* \w this|strong="G3778"\w*: \w A|strong="G1096"\w* \w covenant|strong="G1242"\w* confirmed beforehand \w by|strong="G5259"\w* \w God|strong="G2316"\w* \w in|strong="G1519"\w* Christ, \w the|strong="G2532"\w* \w law|strong="G3551"\w*, \w which|strong="G3588"\w* \w came|strong="G1096"\w* \w four|strong="G5071"\w* \w hundred|strong="G5071"\w* \w thirty|strong="G5144"\w* \w years|strong="G2094"\w* \w after|strong="G3326"\w*, \w does|strong="G2316"\w* \w not|strong="G3756"\w* annul, \w so|strong="G2532"\w* \w as|strong="G1519"\w* \w to|strong="G1519"\w* \w make|strong="G2673"\w* \w the|strong="G2532"\w* \w promise|strong="G1860"\w* \w of|strong="G5259"\w* \w no|strong="G3756"\w* \w effect|strong="G2673"\w*. +\v 18 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w the|strong="G1537"\w* \w inheritance|strong="G2817"\w* \w is|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w law|strong="G3551"\w*, \w it|strong="G1161"\w* \w is|strong="G3588"\w* \w no|strong="G3765"\w* \w more|strong="G3765"\w* \w of|strong="G1537"\w* \w promise|strong="G1860"\w*; \w but|strong="G1161"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w granted|strong="G5483"\w* \w it|strong="G1161"\w* \w to|strong="G1161"\w* Abraham \w by|strong="G1223"\w* \w promise|strong="G1860"\w*. +\p +\v 19 \w Then|strong="G3767"\w* \w why|strong="G5101"\w* \w is|strong="G3588"\w* \w there|strong="G1722"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w*? \w It|strong="G5101"\w* \w was|strong="G3588"\w* \w added|strong="G4369"\w* \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w transgressions|strong="G3847"\w*, \w until|strong="G1722"\w* \w the|strong="G1722"\w* offspring \w should|strong="G3588"\w* \w come|strong="G2064"\w* \w to|strong="G2064"\w* \w whom|strong="G3739"\w* \w the|strong="G1722"\w* \w promise|strong="G1861"\w* \w has|strong="G5101"\w* been \w made|strong="G1861"\w*. \w It|strong="G5101"\w* \w was|strong="G3588"\w* \w ordained|strong="G1299"\w* \w through|strong="G1223"\w* angels \w by|strong="G1223"\w* \w the|strong="G1722"\w* \w hand|strong="G5495"\w* \w of|strong="G1223"\w* \w a|strong="G1722"\w* \w mediator|strong="G3316"\w*. +\v 20 \w Now|strong="G1161"\w* \w a|strong="G1510"\w* \w mediator|strong="G3316"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w between|strong="G3316"\w* \w one|strong="G1520"\w*, \w but|strong="G1161"\w* \w God|strong="G2316"\w* \w is|strong="G1510"\w* \w one|strong="G1520"\w*. +\p +\v 21 \w Is|strong="G1510"\w* \w the|strong="G1537"\w* \w law|strong="G3551"\w* \w then|strong="G3767"\w* \w against|strong="G2596"\w* \w the|strong="G1537"\w* \w promises|strong="G1860"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*? \w Certainly|strong="G3689"\w* \w not|strong="G3361"\w*! \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w there|strong="G1063"\w* \w had|strong="G2316"\w* \w been|strong="G1510"\w* \w a|strong="G1096"\w* \w law|strong="G3551"\w* \w given|strong="G1325"\w* \w which|strong="G3588"\w* \w could|strong="G1410"\w* \w make|strong="G1325"\w* \w alive|strong="G2227"\w*, \w most|strong="G2316"\w* \w certainly|strong="G3689"\w* \w righteousness|strong="G1343"\w* \w would|strong="G1096"\w* \w have|strong="G1510"\w* \w been|strong="G1510"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w law|strong="G3551"\w*. +\v 22 \w But|strong="G3588"\w* \w the|strong="G3956"\w* \w Scripture|strong="G1124"\w* \w imprisoned|strong="G4788"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w under|strong="G5259"\w* sin, \w that|strong="G2443"\w* \w the|strong="G3956"\w* \w promise|strong="G1860"\w* \w by|strong="G5259"\w* \w faith|strong="G4102"\w* \w in|strong="G3956"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w might|strong="G1124"\w* \w be|strong="G3956"\w* \w given|strong="G1325"\w* \w to|strong="G2443"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w believe|strong="G4100"\w*. +\p +\v 23 \w But|strong="G1161"\w* \w before|strong="G4253"\w* \w faith|strong="G4102"\w* \w came|strong="G2064"\w*, \w we|strong="G1161"\w* \w were|strong="G3588"\w* \w kept|strong="G5432"\w* \w in|strong="G1519"\w* \w custody|strong="G5432"\w* \w under|strong="G5259"\w* \w the|strong="G1519"\w* \w law|strong="G3551"\w*, confined \w for|strong="G1519"\w* \w the|strong="G1519"\w* \w faith|strong="G4102"\w* \w which|strong="G3588"\w* \w should|strong="G3195"\w* \w afterwards|strong="G3195"\w* \w be|strong="G3195"\w* revealed. +\v 24 \w So|strong="G2443"\w* \w that|strong="G2443"\w* \w the|strong="G1519"\w* \w law|strong="G3551"\w* \w has|strong="G4102"\w* \w become|strong="G1096"\w* \w our|strong="G5547"\w* \w tutor|strong="G3807"\w* \w to|strong="G1519"\w* \w bring|strong="G1519"\w* \w us|strong="G1519"\w* \w to|strong="G1519"\w* \w Christ|strong="G5547"\w*, \w that|strong="G2443"\w* \w we|strong="G2249"\w* \w might|strong="G1096"\w* \w be|strong="G1096"\w* \w justified|strong="G1344"\w* \w by|strong="G1537"\w* \w faith|strong="G4102"\w*. +\v 25 \w But|strong="G1161"\w* \w now|strong="G1161"\w* \w that|strong="G3588"\w* \w faith|strong="G4102"\w* \w has|strong="G4102"\w* \w come|strong="G2064"\w*, \w we|strong="G1161"\w* \w are|strong="G1510"\w* \w no|strong="G3765"\w* \w longer|strong="G3765"\w* \w under|strong="G5259"\w* \w a|strong="G1510"\w* \w tutor|strong="G3807"\w*. +\v 26 \w For|strong="G1063"\w* \w you|strong="G1722"\w* \w are|strong="G1510"\w* \w all|strong="G3956"\w* \w children|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*, \w through|strong="G1223"\w* \w faith|strong="G4102"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*. +\v 27 \w For|strong="G1063"\w* \w as|strong="G3745"\w* \w many|strong="G3745"\w* \w of|strong="G1519"\w* \w you|strong="G3745"\w* \w as|strong="G3745"\w* \w were|strong="G3745"\w* baptized \w into|strong="G1519"\w* \w Christ|strong="G5547"\w* \w have|strong="G3745"\w* \w put|strong="G1746"\w* \w on|strong="G1519"\w* \w Christ|strong="G5547"\w*. +\v 28 \w There|strong="G2532"\w* \w is|strong="G1510"\w* \w neither|strong="G3761"\w* \w Jew|strong="G2453"\w* \w nor|strong="G3761"\w* \w Greek|strong="G1672"\w*, \w there|strong="G2532"\w* \w is|strong="G1510"\w* \w neither|strong="G3761"\w* \w slave|strong="G1401"\w* \w nor|strong="G3761"\w* \w free|strong="G1658"\w* \w man|strong="G3956"\w*, \w there|strong="G2532"\w* \w is|strong="G1510"\w* \w neither|strong="G3761"\w* male \w nor|strong="G3761"\w* \w female|strong="G2338"\w*; \w for|strong="G1063"\w* \w you|strong="G5210"\w* \w are|strong="G1510"\w* \w all|strong="G3956"\w* \w one|strong="G1520"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*. +\v 29 \w If|strong="G1487"\w* \w you|strong="G5210"\w* \w are|strong="G1510"\w* \w Christ|strong="G5547"\w*’s, \w then|strong="G1161"\w* \w you|strong="G5210"\w* \w are|strong="G1510"\w* Abraham’s offspring \w and|strong="G1161"\w* \w heirs|strong="G2818"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w promise|strong="G1860"\w*. +\c 4 +\p +\v 1 \w But|strong="G1161"\w* \w I|strong="G1161"\w* \w say|strong="G3004"\w* \w that|strong="G3588"\w* \w so|strong="G1161"\w* \w long|strong="G5550"\w* \w as|strong="G3745"\w* \w the|strong="G3956"\w* \w heir|strong="G2818"\w* \w is|strong="G1510"\w* \w a|strong="G1510"\w* \w child|strong="G3516"\w*, \w he|strong="G1161"\w* \w is|strong="G1510"\w* \w no|strong="G3762"\w* \w different|strong="G1308"\w* \w from|strong="G3588"\w* \w a|strong="G1510"\w* bondservant, \w though|strong="G1161"\w* \w he|strong="G1161"\w* \w is|strong="G1510"\w* \w lord|strong="G2962"\w* \w of|strong="G2962"\w* \w all|strong="G3956"\w*, +\v 2 \w but|strong="G2532"\w* \w is|strong="G1510"\w* \w under|strong="G5259"\w* \w guardians|strong="G2012"\w* \w and|strong="G2532"\w* \w stewards|strong="G3623"\w* \w until|strong="G2532"\w* \w the|strong="G2532"\w* \w day|strong="G3588"\w* \w appointed|strong="G4287"\w* \w by|strong="G5259"\w* \w the|strong="G2532"\w* \w father|strong="G3962"\w*. +\v 3 \w So|strong="G3779"\w* \w we|strong="G2249"\w* \w also|strong="G2532"\w*, \w when|strong="G3753"\w* \w we|strong="G2249"\w* \w were|strong="G1510"\w* \w children|strong="G3516"\w*, \w were|strong="G1510"\w* \w held|strong="G1402"\w* \w in|strong="G2532"\w* \w bondage|strong="G1402"\w* \w under|strong="G5259"\w* \w the|strong="G2532"\w* \w elemental|strong="G4747"\w* \w principles|strong="G4747"\w* \w of|strong="G5259"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w*. +\v 4 \w But|strong="G1161"\w* \w when|strong="G3753"\w* \w the|strong="G1537"\w* \w fullness|strong="G4138"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w time|strong="G5550"\w* \w came|strong="G2064"\w*, \w God|strong="G2316"\w* \w sent|strong="G1821"\w* \w out|strong="G1537"\w* \w his|strong="G5259"\w* \w Son|strong="G5207"\w*, \w born|strong="G1096"\w* \w to|strong="G2064"\w* \w a|strong="G1096"\w* \w woman|strong="G1135"\w*, \w born|strong="G1096"\w* \w under|strong="G5259"\w* \w the|strong="G1537"\w* \w law|strong="G3551"\w*, +\v 5 \w that|strong="G2443"\w* \w he|strong="G3588"\w* might \w redeem|strong="G1805"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w under|strong="G5259"\w* \w the|strong="G3588"\w* \w law|strong="G3551"\w*, \w that|strong="G2443"\w* \w we|strong="G2443"\w* might receive \w the|strong="G3588"\w* \w adoption|strong="G5206"\w* \w as|strong="G5206"\w* \w children|strong="G5206"\w*. +\v 6 \w And|strong="G1161"\w* \w because|strong="G3754"\w* \w you|strong="G3754"\w* \w are|strong="G1510"\w* \w children|strong="G5207"\w*, \w God|strong="G2316"\w* \w sent|strong="G1821"\w* \w out|strong="G2896"\w* \w the|strong="G1519"\w* \w Spirit|strong="G4151"\w* \w of|strong="G5207"\w* \w his|strong="G1519"\w* \w Son|strong="G5207"\w* \w into|strong="G1519"\w* \w your|strong="G3588"\w* \w hearts|strong="G2588"\w*, \w crying|strong="G2896"\w*, “Abba,\f + \fr 4:6 \ft Abba is a Greek spelling for the Aramaic word for “Father” or “Daddy” used in a familiar, respectful, and loving way. \f* \w Father|strong="G3962"\w*!” +\v 7 \w So|strong="G2532"\w* \w you|strong="G1487"\w* \w are|strong="G1510"\w* \w no|strong="G3765"\w* \w longer|strong="G3765"\w* \w a|strong="G2532"\w* bondservant, \w but|strong="G1161"\w* \w a|strong="G2532"\w* \w son|strong="G5207"\w*; \w and|strong="G2532"\w* \w if|strong="G1487"\w* \w a|strong="G2532"\w* \w son|strong="G5207"\w*, \w then|strong="G2532"\w* \w an|strong="G2532"\w* \w heir|strong="G2818"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w* \w through|strong="G1223"\w* Christ. +\p +\v 8 \w However|strong="G3303"\w* \w at|strong="G3756"\w* \w that|strong="G3588"\w* \w time|strong="G5119"\w*, \w not|strong="G3756"\w* \w knowing|strong="G1492"\w* \w God|strong="G2316"\w*, \w you|strong="G1510"\w* \w were|strong="G1510"\w* \w in|strong="G2316"\w* \w bondage|strong="G1398"\w* \w to|strong="G3756"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w by|strong="G3361"\w* \w nature|strong="G5449"\w* \w are|strong="G1510"\w* \w not|strong="G3756"\w* \w gods|strong="G2316"\w*. +\v 9 \w But|strong="G1161"\w* \w now|strong="G1161"\w* \w that|strong="G3739"\w* \w you|strong="G3739"\w* \w have|strong="G2309"\w* \w come|strong="G2532"\w* \w to|strong="G2532"\w* \w know|strong="G1097"\w* \w God|strong="G2316"\w*, \w or|strong="G2532"\w* \w rather|strong="G3123"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w known|strong="G1097"\w* \w by|strong="G5259"\w* \w God|strong="G2316"\w*, \w why|strong="G4459"\w* \w do|strong="G2532"\w* \w you|strong="G3739"\w* \w turn|strong="G1994"\w* \w back|strong="G3825"\w* \w again|strong="G3825"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* weak \w and|strong="G2532"\w* miserable \w elemental|strong="G4747"\w* \w principles|strong="G4747"\w*, \w to|strong="G2532"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w desire|strong="G2309"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w in|strong="G1909"\w* \w bondage|strong="G1398"\w* \w all|strong="G2532"\w* \w over|strong="G1909"\w* \w again|strong="G3825"\w*? +\v 10 \w You|strong="G2532"\w* \w observe|strong="G3906"\w* \w days|strong="G2250"\w*, \w months|strong="G3376"\w*, \w seasons|strong="G2540"\w*, \w and|strong="G2532"\w* \w years|strong="G1763"\w*. +\v 11 \w I|strong="G2872"\w* \w am|strong="G5399"\w* \w afraid|strong="G5399"\w* \w for|strong="G1519"\w* \w you|strong="G5210"\w*, \w that|strong="G1519"\w* \w I|strong="G2872"\w* \w might|strong="G5210"\w* \w have|strong="G5210"\w* wasted my \w labor|strong="G2872"\w* \w for|strong="G1519"\w* \w you|strong="G5210"\w*. +\p +\v 12 \w I|strong="G1473"\w* \w beg|strong="G1189"\w* \w you|strong="G5210"\w*, brothers, \w become|strong="G1096"\w* \w as|strong="G5613"\w* \w I|strong="G1473"\w* \w am|strong="G1473"\w*, \w for|strong="G3754"\w* \w I|strong="G1473"\w* \w also|strong="G2504"\w* \w have|strong="G1473"\w* \w become|strong="G1096"\w* \w as|strong="G5613"\w* \w you|strong="G5210"\w* \w are|strong="G3748"\w*. \w You|strong="G5210"\w* \w did|strong="G1096"\w* \w me|strong="G1473"\w* \w no|strong="G3762"\w* wrong, +\v 13 \w but|strong="G1161"\w* \w you|strong="G5210"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w because|strong="G3754"\w* \w of|strong="G1223"\w* weakness \w in|strong="G1223"\w* \w the|strong="G1161"\w* \w flesh|strong="G4561"\w* \w I|strong="G1161"\w* \w preached|strong="G2097"\w* \w the|strong="G1161"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w* \w to|strong="G1161"\w* \w you|strong="G5210"\w* \w the|strong="G1161"\w* \w first|strong="G4386"\w* \w time|strong="G4387"\w*. +\v 14 \w That|strong="G3588"\w* \w which|strong="G3588"\w* \w was|strong="G3588"\w* \w a|strong="G5613"\w* \w temptation|strong="G3986"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w my|strong="G1722"\w* \w flesh|strong="G4561"\w*, \w you|strong="G5210"\w* didn’\w t|strong="G3588"\w* \w despise|strong="G1848"\w* \w nor|strong="G3761"\w* \w reject|strong="G1609"\w*; \w but|strong="G2532"\w* \w you|strong="G5210"\w* \w received|strong="G1209"\w* \w me|strong="G1473"\w* \w as|strong="G5613"\w* \w an|strong="G2532"\w* angel \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w even|strong="G2532"\w* \w as|strong="G5613"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*. +\p +\v 15 \w What|strong="G3588"\w* \w was|strong="G3588"\w* \w the|strong="G3588"\w* \w blessing|strong="G3108"\w* \w you|strong="G5210"\w* enjoyed? \w For|strong="G1063"\w* \w I|strong="G1473"\w* \w testify|strong="G3140"\w* \w to|strong="G1325"\w* \w you|strong="G5210"\w* \w that|strong="G3754"\w*, \w if|strong="G1487"\w* \w possible|strong="G1415"\w*, \w you|strong="G5210"\w* \w would|strong="G1325"\w* \w have|strong="G1473"\w* \w plucked|strong="G1846"\w* \w out|strong="G1063"\w* \w your|strong="G1487"\w* \w eyes|strong="G3788"\w* \w and|strong="G3767"\w* \w given|strong="G1325"\w* \w them|strong="G3588"\w* \w to|strong="G1325"\w* \w me|strong="G1325"\w*. +\v 16 \w So|strong="G5620"\w* \w then|strong="G5620"\w*, \w have|strong="G5210"\w* \w I|strong="G1096"\w* \w become|strong="G1096"\w* \w your|strong="G5210"\w* \w enemy|strong="G2190"\w* \w by|strong="G1096"\w* telling \w you|strong="G5210"\w* \w the|strong="G1096"\w* truth? +\v 17 \w They|strong="G2443"\w* zealously \w seek|strong="G2206"\w* \w you|strong="G5210"\w* \w in|strong="G1438"\w* \w no|strong="G3756"\w* \w good|strong="G2573"\w* way. \w No|strong="G3756"\w*, \w they|strong="G2443"\w* \w desire|strong="G2309"\w* \w to|strong="G2443"\w* alienate \w you|strong="G5210"\w*, \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w may|strong="G2443"\w* \w seek|strong="G2206"\w* \w them|strong="G1438"\w*. +\v 18 \w But|strong="G1161"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w always|strong="G3842"\w* \w good|strong="G2570"\w* \w to|strong="G4314"\w* \w be|strong="G2532"\w* zealous \w in|strong="G1722"\w* \w a|strong="G2532"\w* \w good|strong="G2570"\w* \w cause|strong="G3588"\w*, \w and|strong="G2532"\w* \w not|strong="G3361"\w* \w only|strong="G3440"\w* \w when|strong="G1161"\w* \w I|strong="G1473"\w* \w am|strong="G1473"\w* \w present|strong="G3918"\w* \w with|strong="G1722"\w* \w you|strong="G5210"\w*. +\p +\v 19 \w My|strong="G1722"\w* little \w children|strong="G5043"\w*, \w of|strong="G1722"\w* \w whom|strong="G3739"\w* \w I|strong="G1473"\w* \w am|strong="G1473"\w* \w again|strong="G3825"\w* \w in|strong="G1722"\w* travail \w until|strong="G3360"\w* \w Christ|strong="G5547"\w* \w is|strong="G3739"\w* \w formed|strong="G3445"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w*— +\v 20 \w but|strong="G1161"\w* \w I|strong="G1473"\w* \w could|strong="G3588"\w* \w wish|strong="G2309"\w* \w to|strong="G4314"\w* \w be|strong="G2532"\w* \w present|strong="G3918"\w* \w with|strong="G1722"\w* \w you|strong="G5210"\w* \w now|strong="G1161"\w*, \w and|strong="G2532"\w* \w to|strong="G4314"\w* change \w my|strong="G1722"\w* \w tone|strong="G5456"\w*, \w for|strong="G3754"\w* \w I|strong="G1473"\w* \w am|strong="G1473"\w* perplexed \w about|strong="G1722"\w* \w you|strong="G5210"\w*. +\p +\v 21 \w Tell|strong="G3004"\w* \w me|strong="G1473"\w*, \w you|strong="G3004"\w* \w that|strong="G3588"\w* \w desire|strong="G2309"\w* \w to|strong="G3004"\w* \w be|strong="G1510"\w* \w under|strong="G5259"\w* \w the|strong="G3588"\w* \w law|strong="G3551"\w*, don’\w t|strong="G3588"\w* \w you|strong="G3004"\w* listen \w to|strong="G3004"\w* \w the|strong="G3588"\w* \w law|strong="G3551"\w*? +\v 22 \w For|strong="G1063"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w* \w that|strong="G3754"\w* Abraham \w had|strong="G2192"\w* \w two|strong="G1417"\w* \w sons|strong="G5207"\w*, \w one|strong="G1520"\w* \w by|strong="G1537"\w* \w the|strong="G2532"\w* \w servant|strong="G3588"\w*, \w and|strong="G2532"\w* \w one|strong="G1520"\w* \w by|strong="G1537"\w* \w the|strong="G2532"\w* \w free|strong="G1658"\w* \w woman|strong="G1658"\w*. +\v 23 \w However|strong="G1161"\w*, \w the|strong="G1537"\w* son \w by|strong="G1223"\w* \w the|strong="G1537"\w* \w servant|strong="G3588"\w* \w was|strong="G3588"\w* \w born|strong="G1080"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1537"\w* \w flesh|strong="G4561"\w*, \w but|strong="G1161"\w* \w the|strong="G1537"\w* son \w by|strong="G1223"\w* \w the|strong="G1537"\w* \w free|strong="G1658"\w* \w woman|strong="G1658"\w* \w was|strong="G3588"\w* \w born|strong="G1080"\w* \w through|strong="G1223"\w* \w promise|strong="G1860"\w*. +\v 24 \w These|strong="G3778"\w* \w things|strong="G3778"\w* contain \w an|strong="G1519"\w* allegory, \w for|strong="G1063"\w* \w these|strong="G3778"\w* \w are|strong="G1510"\w* \w two|strong="G1417"\w* \w covenants|strong="G1242"\w*. \w One|strong="G1520"\w* \w is|strong="G1510"\w* \w from|strong="G1519"\w* \w Mount|strong="G3735"\w* \w Sinai|strong="G4614"\w*, \w bearing|strong="G1080"\w* \w children|strong="G1080"\w* \w to|strong="G1519"\w* \w bondage|strong="G1397"\w*, \w which|strong="G3748"\w* \w is|strong="G1510"\w* Hagar. +\v 25 \w For|strong="G1063"\w* \w this|strong="G3588"\w* Hagar \w is|strong="G1510"\w* \w Mount|strong="G3735"\w* \w Sinai|strong="G4614"\w* \w in|strong="G1722"\w* Arabia, \w and|strong="G1161"\w* answers \w to|strong="G1722"\w* \w the|strong="G1722"\w* \w Jerusalem|strong="G2419"\w* \w that|strong="G3588"\w* exists \w now|strong="G1161"\w*, \w for|strong="G1063"\w* \w she|strong="G1161"\w* \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w bondage|strong="G1398"\w* \w with|strong="G3326"\w* \w her|strong="G3588"\w* \w children|strong="G5043"\w*. +\v 26 \w But|strong="G1161"\w* \w the|strong="G1161"\w* \w Jerusalem|strong="G2419"\w* \w that|strong="G3588"\w* \w is|strong="G1510"\w* above \w is|strong="G1510"\w* \w free|strong="G1658"\w*, \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w the|strong="G1161"\w* \w mother|strong="G3384"\w* \w of|strong="G3384"\w* \w us|strong="G2249"\w* \w all|strong="G1161"\w*. +\v 27 \w For|strong="G1063"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w*, +\q1 “\w Rejoice|strong="G2165"\w*, \w you|strong="G3754"\w* \w barren|strong="G4723"\w* \w who|strong="G3588"\w* don’\w t|strong="G3588"\w* \w bear|strong="G5088"\w*. +\q2 \w Break|strong="G4486"\w* \w out|strong="G2532"\w* \w and|strong="G2532"\w* shout, \w you|strong="G3754"\w* \w who|strong="G3588"\w* don’\w t|strong="G3588"\w* travail. +\q2 \w For|strong="G1063"\w* \w the|strong="G2532"\w* \w desolate|strong="G2048"\w* women \w have|strong="G2192"\w* \w more|strong="G3123"\w* \w children|strong="G5043"\w* \w than|strong="G2228"\w* \w her|strong="G3754"\w* \w who|strong="G3588"\w* \w has|strong="G2192"\w* \w a|strong="G2192"\w* husband.”\x + \xo 4:27 \xt Isaiah 54:1\x* +\p +\v 28 \w Now|strong="G1161"\w* \w we|strong="G1161"\w*, brothers, \w as|strong="G1161"\w* \w Isaac|strong="G2464"\w* \w was|strong="G1510"\w*, \w are|strong="G1510"\w* \w children|strong="G5043"\w* \w of|strong="G5043"\w* \w promise|strong="G1860"\w*. +\v 29 \w But|strong="G2532"\w* \w as|strong="G5618"\w* \w then|strong="G2532"\w*, \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w born|strong="G1080"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w* \w persecuted|strong="G1377"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w born|strong="G1080"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w*, \w so|strong="G3779"\w* \w also|strong="G2532"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w now|strong="G3568"\w*. +\v 30 However, \w what|strong="G5101"\w* \w does|strong="G5101"\w* \w the|strong="G2532"\w* \w Scripture|strong="G1124"\w* \w say|strong="G3004"\w*? “\w Throw|strong="G1544"\w* \w out|strong="G1544"\w* \w the|strong="G2532"\w* \w servant|strong="G3588"\w* \w and|strong="G2532"\w* \w her|strong="G3588"\w* \w son|strong="G5207"\w*, \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w servant|strong="G3588"\w* \w will|strong="G5101"\w* \w not|strong="G3756"\w* \w inherit|strong="G2816"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w free|strong="G1658"\w* \w woman|strong="G1658"\w*.”\x + \xo 4:30 \xt Genesis 21:10\x* +\v 31 \w So|strong="G1352"\w* \w then|strong="G1352"\w*, brothers, \w we|strong="G1352"\w* \w are|strong="G1510"\w* \w not|strong="G3756"\w* \w children|strong="G5043"\w* \w of|strong="G5043"\w* \w a|strong="G1510"\w* \w servant|strong="G3588"\w*, \w but|strong="G3588"\w* \w of|strong="G5043"\w* \w the|strong="G3588"\w* \w free|strong="G1658"\w* \w woman|strong="G1658"\w*. +\c 5 +\p +\v 1 \w Stand|strong="G4739"\w* \w firm|strong="G4739"\w* \w therefore|strong="G3767"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w liberty|strong="G1657"\w* \w by|strong="G2532"\w* \w which|strong="G3588"\w* \w Christ|strong="G5547"\w* \w has|strong="G5547"\w* \w made|strong="G1659"\w* \w us|strong="G2249"\w* \w free|strong="G1659"\w*, \w and|strong="G2532"\w* don’\w t|strong="G3588"\w* \w be|strong="G2532"\w* \w entangled|strong="G1758"\w* \w again|strong="G3825"\w* \w with|strong="G2532"\w* \w a|strong="G2532"\w* \w yoke|strong="G2218"\w* \w of|strong="G2532"\w* \w bondage|strong="G1397"\w*. +\p +\v 2 \w Behold|strong="G2396"\w*, \w I|strong="G1473"\w*, \w Paul|strong="G3972"\w*, \w tell|strong="G3004"\w* \w you|strong="G5210"\w* \w that|strong="G3754"\w* \w if|strong="G1437"\w* \w you|strong="G5210"\w* \w receive|strong="G4059"\w* \w circumcision|strong="G4059"\w*, \w Christ|strong="G5547"\w* \w will|strong="G1473"\w* \w profit|strong="G5623"\w* \w you|strong="G5210"\w* \w nothing|strong="G3762"\w*. +\v 3 \w Yes|strong="G1161"\w*, \w I|strong="G1161"\w* \w testify|strong="G3143"\w* \w again|strong="G3825"\w* \w to|strong="G1161"\w* \w every|strong="G3956"\w* \w man|strong="G3956"\w* \w who|strong="G3588"\w* \w receives|strong="G4059"\w* \w circumcision|strong="G4059"\w* \w that|strong="G3754"\w* \w he|strong="G1161"\w* \w is|strong="G1510"\w* \w a|strong="G1510"\w* \w debtor|strong="G3781"\w* \w to|strong="G1161"\w* \w do|strong="G4160"\w* \w the|strong="G3956"\w* \w whole|strong="G3650"\w* \w law|strong="G3551"\w*. +\v 4 \w You|strong="G1722"\w* \w are|strong="G3588"\w* alienated \w from|strong="G3588"\w* \w Christ|strong="G5547"\w*, \w you|strong="G1722"\w* \w who|strong="G3588"\w* desire \w to|strong="G1722"\w* \w be|strong="G3588"\w* \w justified|strong="G1344"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w*. \w You|strong="G1722"\w* \w have|strong="G3748"\w* \w fallen|strong="G1601"\w* \w away|strong="G2673"\w* \w from|strong="G3588"\w* \w grace|strong="G5485"\w*. +\v 5 \w For|strong="G1063"\w* \w we|strong="G2249"\w* \w through|strong="G1537"\w* \w the|strong="G1537"\w* \w Spirit|strong="G4151"\w*, \w by|strong="G1537"\w* \w faith|strong="G4102"\w* \w wait|strong="G4151"\w* \w for|strong="G1063"\w* \w the|strong="G1537"\w* \w hope|strong="G1680"\w* \w of|strong="G1537"\w* \w righteousness|strong="G1343"\w*. +\v 6 \w For|strong="G1063"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w neither|strong="G3777"\w* \w circumcision|strong="G4061"\w* \w nor|strong="G3777"\w* uncircumcision amounts \w to|strong="G1722"\w* \w anything|strong="G5100"\w*, \w but|strong="G1063"\w* \w faith|strong="G4102"\w* \w working|strong="G1754"\w* \w through|strong="G1223"\w* love. +\p +\v 7 \w You|strong="G5210"\w* \w were|strong="G5101"\w* \w running|strong="G5143"\w* \w well|strong="G2573"\w*! \w Who|strong="G5101"\w* interfered \w with|strong="G3361"\w* \w you|strong="G5210"\w* \w that|strong="G3361"\w* \w you|strong="G5210"\w* \w should|strong="G3982"\w* \w not|strong="G3361"\w* \w obey|strong="G3982"\w* \w the|strong="G3361"\w* truth? +\v 8 \w This|strong="G3588"\w* \w persuasion|strong="G3988"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w from|strong="G1537"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w calls|strong="G2564"\w* \w you|strong="G5210"\w*. +\v 9 \w A|strong="G3588"\w* \w little|strong="G3398"\w* \w yeast|strong="G2219"\w* grows through \w the|strong="G3588"\w* \w whole|strong="G3650"\w* \w lump|strong="G5445"\w*. +\v 10 \w I|strong="G1473"\w* \w have|strong="G1473"\w* \w confidence|strong="G3982"\w* \w toward|strong="G1519"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w will|strong="G1510"\w* \w think|strong="G5426"\w* \w no|strong="G3762"\w* \w other|strong="G1161"\w* \w way|strong="G1722"\w*. \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w who|strong="G3588"\w* troubles \w you|strong="G5210"\w* \w will|strong="G1510"\w* bear \w his|strong="G1519"\w* \w judgment|strong="G2917"\w*, \w whoever|strong="G3748"\w* \w he|strong="G1161"\w* \w is|strong="G1510"\w*. +\p +\v 11 \w But|strong="G1161"\w* \w I|strong="G1473"\w*, brothers, \w if|strong="G1487"\w* \w I|strong="G1473"\w* \w still|strong="G2089"\w* \w preach|strong="G2784"\w* \w circumcision|strong="G4061"\w*, \w why|strong="G5101"\w* \w am|strong="G1473"\w* \w I|strong="G1473"\w* \w still|strong="G2089"\w* \w persecuted|strong="G1377"\w*? \w Then|strong="G1161"\w* \w the|strong="G1161"\w* \w stumbling|strong="G4625"\w* \w block|strong="G4625"\w* \w of|strong="G3588"\w* \w the|strong="G1161"\w* \w cross|strong="G4716"\w* \w has|strong="G5101"\w* been \w removed|strong="G2673"\w*. +\v 12 \w I|strong="G2532"\w* \w wish|strong="G3785"\w* \w that|strong="G3588"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* disturb \w you|strong="G5210"\w* \w would|strong="G2532"\w* \w cut|strong="G2532"\w* themselves off. +\p +\v 13 \w For|strong="G1063"\w* \w you|strong="G5210"\w*, brothers, \w were|strong="G3588"\w* \w called|strong="G2564"\w* \w for|strong="G1063"\w* \w freedom|strong="G1657"\w*. \w Only|strong="G3440"\w* don’\w t|strong="G3588"\w* \w use|strong="G3588"\w* \w your|strong="G1223"\w* \w freedom|strong="G1657"\w* \w as|strong="G1519"\w* \w an|strong="G1519"\w* opportunity \w for|strong="G1063"\w* \w the|strong="G1519"\w* \w flesh|strong="G4561"\w*, \w but|strong="G3361"\w* \w through|strong="G1223"\w* love \w be|strong="G3361"\w* servants \w to|strong="G1519"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w*. +\v 14 \w For|strong="G1063"\w* \w the|strong="G1722"\w* \w whole|strong="G3956"\w* \w law|strong="G3551"\w* \w is|strong="G3588"\w* \w fulfilled|strong="G4137"\w* \w in|strong="G1722"\w* \w one|strong="G1520"\w* \w word|strong="G3056"\w*, \w in|strong="G1722"\w* \w this|strong="G3588"\w*: “\w You|strong="G4771"\w* \w shall|strong="G3956"\w* love \w your|strong="G3956"\w* \w neighbor|strong="G4139"\w* \w as|strong="G5613"\w* \w yourself|strong="G4572"\w*.”\x + \xo 5:14 \xt Leviticus 19:18\x* +\v 15 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w you|strong="G1487"\w* \w bite|strong="G1143"\w* \w and|strong="G2532"\w* \w devour|strong="G2719"\w* \w one|strong="G3361"\w* \w another|strong="G1161"\w*, \w be|strong="G2532"\w* careful \w that|strong="G2532"\w* \w you|strong="G1487"\w* don’t \w consume|strong="G2719"\w* \w one|strong="G3361"\w* \w another|strong="G1161"\w*. +\p +\v 16 \w But|strong="G1161"\w* \w I|strong="G2532"\w* \w say|strong="G3004"\w*, \w walk|strong="G4043"\w* \w by|strong="G2532"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w*, \w and|strong="G2532"\w* \w you|strong="G3004"\w* won’t fulfill \w the|strong="G2532"\w* \w lust|strong="G1939"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w*. +\v 17 \w For|strong="G1063"\w* \w the|strong="G1161"\w* \w flesh|strong="G4561"\w* lusts \w against|strong="G2596"\w* \w the|strong="G1161"\w* \w Spirit|strong="G4151"\w*, \w and|strong="G1161"\w* \w the|strong="G1161"\w* \w Spirit|strong="G4151"\w* \w against|strong="G2596"\w* \w the|strong="G1161"\w* \w flesh|strong="G4561"\w*; \w and|strong="G1161"\w* \w these|strong="G3778"\w* \w are|strong="G3588"\w* \w contrary|strong="G2596"\w* \w to|strong="G2443"\w* \w one|strong="G3739"\w* \w another|strong="G3739"\w*, \w that|strong="G2443"\w* \w you|strong="G3739"\w* \w may|strong="G2443"\w* \w not|strong="G3361"\w* \w do|strong="G4160"\w* \w the|strong="G1161"\w* \w things|strong="G3778"\w* \w that|strong="G2443"\w* \w you|strong="G3739"\w* \w desire|strong="G2309"\w*. +\v 18 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w you|strong="G1487"\w* \w are|strong="G1510"\w* led \w by|strong="G5259"\w* \w the|strong="G1161"\w* \w Spirit|strong="G4151"\w*, \w you|strong="G1487"\w* \w are|strong="G1510"\w* \w not|strong="G3756"\w* \w under|strong="G5259"\w* \w the|strong="G1161"\w* \w law|strong="G3551"\w*. +\v 19 \w Now|strong="G1161"\w* \w the|strong="G1161"\w* \w deeds|strong="G2041"\w* \w of|strong="G2041"\w* \w the|strong="G1161"\w* \w flesh|strong="G4561"\w* \w are|strong="G1510"\w* \w obvious|strong="G5318"\w*, \w which|strong="G3588"\w* \w are|strong="G1510"\w*: adultery, \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w*, uncleanness, lustfulness, +\v 20 \w idolatry|strong="G1495"\w*, \w sorcery|strong="G5331"\w*, \w hatred|strong="G2189"\w*, \w strife|strong="G2054"\w*, jealousies, \w outbursts|strong="G2372"\w* \w of|strong="G2372"\w* \w anger|strong="G2372"\w*, rivalries, \w divisions|strong="G1370"\w*, heresies, +\v 21 \w envy|strong="G5355"\w*, murders, \w drunkenness|strong="G3178"\w*, orgies, \w and|strong="G2532"\w* \w things|strong="G3778"\w* \w like|strong="G3664"\w* \w these|strong="G3778"\w*; \w of|strong="G2316"\w* \w which|strong="G3739"\w* \w I|strong="G3739"\w* \w forewarn|strong="G4302"\w* \w you|strong="G5210"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w I|strong="G3739"\w* \w also|strong="G2532"\w* forewarned \w you|strong="G5210"\w*, \w that|strong="G3754"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w practice|strong="G4238"\w* \w such|strong="G5108"\w* \w things|strong="G3778"\w* \w will|strong="G2316"\w* \w not|strong="G3756"\w* \w inherit|strong="G2816"\w* \w God|strong="G2316"\w*’s Kingdom. +\p +\v 22 \w But|strong="G1161"\w* \w the|strong="G1161"\w* \w fruit|strong="G2590"\w* \w of|strong="G4151"\w* \w the|strong="G1161"\w* \w Spirit|strong="G4151"\w* \w is|strong="G1510"\w* love, \w joy|strong="G5479"\w*, \w peace|strong="G1515"\w*, \w patience|strong="G3115"\w*, \w kindness|strong="G5544"\w*, \w goodness|strong="G5544"\w*, \w faith|strong="G4102"\w*,\f + \fr 5:22 \ft or, faithfulness\f* +\v 23 \w gentleness|strong="G4240"\w*, \w and|strong="G3551"\w* \w self-control|strong="G1466"\w*. \w Against|strong="G2596"\w* \w such|strong="G5108"\w* \w things|strong="G3588"\w* \w there|strong="G1510"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* \w law|strong="G3551"\w*. +\v 24 \w Those|strong="G3588"\w* \w who|strong="G3588"\w* belong \w to|strong="G2532"\w* \w Christ|strong="G5547"\w* \w have|strong="G2532"\w* \w crucified|strong="G4717"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w* \w with|strong="G4862"\w* its \w passions|strong="G3804"\w* \w and|strong="G2532"\w* \w lusts|strong="G1939"\w*. +\p +\v 25 \w If|strong="G1487"\w* \w we|strong="G2532"\w* \w live|strong="G2198"\w* \w by|strong="G2532"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w*, \w let|strong="G2532"\w*’s \w also|strong="G2532"\w* \w walk|strong="G4748"\w* \w by|strong="G2532"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w*. +\v 26 \w Let|strong="G1096"\w*’s \w not|strong="G3361"\w* \w become|strong="G1096"\w* \w conceited|strong="G2755"\w*, \w provoking|strong="G4292"\w* \w one|strong="G3361"\w* another, \w and|strong="G1096"\w* \w envying|strong="G5354"\w* \w one|strong="G3361"\w* another. +\c 6 +\p +\v 1 Brothers, \w even|strong="G2532"\w* \w if|strong="G1437"\w* \w a|strong="G2532"\w* \w man|strong="G5100"\w* \w is|strong="G3588"\w* \w caught|strong="G4301"\w* \w in|strong="G1722"\w* \w some|strong="G5100"\w* \w fault|strong="G3900"\w*, \w you|strong="G5210"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w spiritual|strong="G4152"\w* \w must|strong="G5100"\w* \w restore|strong="G2675"\w* \w such|strong="G5108"\w* \w a|strong="G2532"\w* \w one|strong="G5100"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* \w spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w gentleness|strong="G4240"\w*, \w looking|strong="G2532"\w* \w to|strong="G2532"\w* \w yourself|strong="G4572"\w* \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w also|strong="G2532"\w* aren’\w t|strong="G3588"\w* \w tempted|strong="G3985"\w*. +\v 2 \w Bear|strong="G2532"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w*’s burdens, \w and|strong="G2532"\w* \w so|strong="G3779"\w* fulfill \w the|strong="G2532"\w* \w law|strong="G3551"\w* \w of|strong="G2532"\w* \w Christ|strong="G5547"\w*. +\v 3 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w a|strong="G1510"\w* \w man|strong="G5100"\w* \w thinks|strong="G1380"\w* \w himself|strong="G1438"\w* \w to|strong="G5100"\w* \w be|strong="G1510"\w* \w something|strong="G5100"\w* \w when|strong="G1510"\w* \w he|strong="G1063"\w* \w is|strong="G1510"\w* \w nothing|strong="G3367"\w*, \w he|strong="G1063"\w* \w deceives|strong="G5422"\w* \w himself|strong="G1438"\w*. +\v 4 \w But|strong="G1161"\w* \w let|strong="G1161"\w* \w each|strong="G1538"\w* \w man|strong="G1538"\w* \w examine|strong="G1381"\w* \w his|strong="G1438"\w* \w own|strong="G1438"\w* \w work|strong="G2041"\w*, \w and|strong="G2532"\w* \w then|strong="G2532"\w* \w he|strong="G2532"\w* \w will|strong="G2532"\w* \w have|strong="G2192"\w* \w reason|strong="G2745"\w* \w to|strong="G1519"\w* \w boast|strong="G2745"\w* \w in|strong="G1519"\w* \w himself|strong="G1438"\w*, \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w in|strong="G1519"\w* \w someone|strong="G2087"\w* \w else|strong="G2087"\w*. +\v 5 \w For|strong="G1063"\w* \w each|strong="G1538"\w* \w man|strong="G1538"\w* \w will|strong="G1538"\w* bear \w his|strong="G2398"\w* \w own|strong="G2398"\w* \w burden|strong="G5413"\w*. +\p +\v 6 \w But|strong="G1161"\w* \w let|strong="G1161"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w taught|strong="G2727"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w share|strong="G2841"\w* \w all|strong="G3956"\w* \w good|strong="G3956"\w* \w things|strong="G3956"\w* \w with|strong="G1722"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w teaches|strong="G2727"\w*. +\p +\v 7 Don’t \w be|strong="G2532"\w* \w deceived|strong="G4105"\w*. \w God|strong="G2316"\w* \w is|strong="G2316"\w* \w not|strong="G3756"\w* \w mocked|strong="G3456"\w*, \w for|strong="G1063"\w* \w whatever|strong="G3739"\w* \w a|strong="G2532"\w* \w man|strong="G3778"\w* \w sows|strong="G4687"\w*, \w that|strong="G3739"\w* \w he|strong="G2532"\w* \w will|strong="G2316"\w* \w also|strong="G2532"\w* \w reap|strong="G2325"\w*. +\v 8 \w For|strong="G3754"\w* \w he|strong="G1161"\w* \w who|strong="G3588"\w* \w sows|strong="G4687"\w* \w to|strong="G1519"\w* \w his|strong="G1438"\w* \w own|strong="G1438"\w* \w flesh|strong="G4561"\w* \w will|strong="G3748"\w* \w from|strong="G1537"\w* \w the|strong="G1519"\w* \w flesh|strong="G4561"\w* \w reap|strong="G2325"\w* \w corruption|strong="G5356"\w*. \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w who|strong="G3588"\w* \w sows|strong="G4687"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w Spirit|strong="G4151"\w* \w will|strong="G3748"\w* \w from|strong="G1537"\w* \w the|strong="G1519"\w* \w Spirit|strong="G4151"\w* \w reap|strong="G2325"\w* eternal \w life|strong="G2222"\w*. +\v 9 \w Let|strong="G1161"\w*’s \w not|strong="G3361"\w* \w be|strong="G3361"\w* \w weary|strong="G1573"\w* \w in|strong="G1161"\w* \w doing|strong="G4160"\w* \w good|strong="G2570"\w*, \w for|strong="G1063"\w* \w we|strong="G1063"\w* \w will|strong="G4160"\w* \w reap|strong="G2325"\w* \w in|strong="G1161"\w* \w due|strong="G2398"\w* \w season|strong="G2540"\w* \w if|strong="G1161"\w* \w we|strong="G1063"\w* don’\w t|strong="G3588"\w* \w give|strong="G4160"\w* \w up|strong="G3361"\w*. +\v 10 \w So|strong="G3767"\w* \w then|strong="G3767"\w*, \w as|strong="G5613"\w* \w we|strong="G1161"\w* \w have|strong="G2192"\w* \w opportunity|strong="G2540"\w*, \w let|strong="G1161"\w*’\w s|strong="G2192"\w* \w do|strong="G2192"\w* \w what|strong="G3588"\w* \w is|strong="G3588"\w* \w good|strong="G3956"\w* \w toward|strong="G4314"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w*, \w and|strong="G1161"\w* \w especially|strong="G3122"\w* \w toward|strong="G4314"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w of|strong="G3956"\w* \w the|strong="G3956"\w* \w household|strong="G3609"\w* \w of|strong="G3956"\w* \w the|strong="G3956"\w* \w faith|strong="G4102"\w*. +\p +\v 11 \w See|strong="G3708"\w* \w with|strong="G5495"\w* \w what|strong="G3588"\w* \w large|strong="G4080"\w* \w letters|strong="G1121"\w* \w I|strong="G1125"\w* \w write|strong="G1125"\w* \w to|strong="G3708"\w* \w you|strong="G5210"\w* \w with|strong="G5495"\w* \w my|strong="G1699"\w* \w own|strong="G1699"\w* \w hand|strong="G5495"\w*. +\v 12 \w As|strong="G3745"\w* \w many|strong="G3745"\w* \w as|strong="G3745"\w* \w desire|strong="G2309"\w* \w to|strong="G2443"\w* \w make|strong="G2309"\w* \w a|strong="G1722"\w* \w good|strong="G3588"\w* impression \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w* compel \w you|strong="G5210"\w* \w to|strong="G2443"\w* \w be|strong="G3361"\w* \w circumcised|strong="G4059"\w*, \w just|strong="G3440"\w* \w so|strong="G2443"\w* \w they|strong="G3588"\w* \w may|strong="G2443"\w* \w not|strong="G3361"\w* \w be|strong="G3361"\w* \w persecuted|strong="G1377"\w* \w for|strong="G1722"\w* \w the|strong="G1722"\w* \w cross|strong="G4716"\w* \w of|strong="G1722"\w* \w Christ|strong="G5547"\w*. +\v 13 \w For|strong="G1063"\w* \w even|strong="G3761"\w* \w they|strong="G3588"\w* \w who|strong="G3588"\w* \w receive|strong="G4059"\w* \w circumcision|strong="G4059"\w* don’\w t|strong="G3588"\w* \w keep|strong="G5442"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w themselves|strong="G1722"\w*, \w but|strong="G1063"\w* \w they|strong="G3588"\w* \w desire|strong="G2309"\w* \w to|strong="G2443"\w* \w have|strong="G2309"\w* \w you|strong="G5210"\w* \w circumcised|strong="G4059"\w*, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w they|strong="G3588"\w* \w may|strong="G2443"\w* \w boast|strong="G2744"\w* \w in|strong="G1722"\w* \w your|strong="G5212"\w* \w flesh|strong="G4561"\w*. +\v 14 \w But|strong="G1161"\w* \w far|strong="G3588"\w* \w be|strong="G1096"\w* \w it|strong="G1161"\w* \w from|strong="G3588"\w* \w me|strong="G1473"\w* \w to|strong="G1722"\w* \w boast|strong="G2744"\w* \w except|strong="G1487"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w cross|strong="G4716"\w* \w of|strong="G1223"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w through|strong="G1223"\w* \w which|strong="G3739"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w* \w has|strong="G2962"\w* \w been|strong="G1096"\w* \w crucified|strong="G4717"\w* \w to|strong="G1722"\w* \w me|strong="G1473"\w*, \w and|strong="G1161"\w* \w I|strong="G1473"\w* \w to|strong="G1722"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*. +\v 15 \w For|strong="G1063"\w* \w in|strong="G1063"\w* Christ \w Jesus|strong="G1510"\w* \w neither|strong="G3777"\w* \w is|strong="G1510"\w* \w circumcision|strong="G4061"\w* \w anything|strong="G5100"\w*, \w nor|strong="G3777"\w* uncircumcision, \w but|strong="G1063"\w* \w a|strong="G1510"\w* \w new|strong="G2537"\w* \w creation|strong="G2937"\w*. +\v 16 \w As|strong="G3745"\w* \w many|strong="G3745"\w* \w as|strong="G3745"\w* \w walk|strong="G4748"\w* \w by|strong="G1909"\w* \w this|strong="G3778"\w* \w rule|strong="G2583"\w*, \w peace|strong="G1515"\w* \w and|strong="G2532"\w* \w mercy|strong="G1656"\w* \w be|strong="G2532"\w* \w on|strong="G1909"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w on|strong="G1909"\w* \w God|strong="G2316"\w*’s \w Israel|strong="G2474"\w*. +\p +\v 17 \w From|strong="G3588"\w* \w now|strong="G1722"\w* \w on|strong="G1722"\w*, \w let|strong="G3930"\w* \w no|strong="G3367"\w* \w one|strong="G3367"\w* \w cause|strong="G3930"\w* \w me|strong="G1473"\w* \w any|strong="G3367"\w* \w trouble|strong="G2873"\w*, \w for|strong="G1063"\w* \w I|strong="G1473"\w* bear \w the|strong="G1722"\w* \w marks|strong="G4742"\w* \w of|strong="G4983"\w* \w the|strong="G1722"\w* \w Lord|strong="G3588"\w* \w Jesus|strong="G2424"\w* branded \w on|strong="G1722"\w* \w my|strong="G1722"\w* \w body|strong="G4983"\w*. +\p +\v 18 \w The|strong="G3588"\w* \w grace|strong="G5485"\w* \w of|strong="G4151"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w be|strong="G3588"\w* \w with|strong="G3326"\w* \w your|strong="G2962"\w* \w spirit|strong="G4151"\w*, brothers. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/79-EPHeng-web.usfm b/bibles/eng-web_usfm/79-EPHeng-web.usfm new file mode 100644 index 0000000..e077842 --- /dev/null +++ b/bibles/eng-web_usfm/79-EPHeng-web.usfm @@ -0,0 +1,198 @@ +\id EPH 49-EPH-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Ephesians +\toc1 Paul’s Letter to the Ephesians +\toc2 Ephesians +\toc3 Eph +\mt1 Paul’s Letter to the Ephesians +\c 1 +\p +\v 1 \w Paul|strong="G3972"\w*, \w an|strong="G2532"\w* apostle \w of|strong="G1223"\w* \w Christ|strong="G5547"\w*\f + \fr 1:1 \ft “Christ” means “Anointed One”.\f* \w Jesus|strong="G2424"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w will|strong="G2307"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w*, \w to|strong="G2532"\w* \w the|strong="G1722"\w* saints \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w at|strong="G1722"\w* \w Ephesus|strong="G2181"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w faithful|strong="G4103"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*: +\v 2 \w Grace|strong="G5485"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w peace|strong="G1515"\w* \w from|strong="G1515"\w* \w God|strong="G2316"\w* \w our|strong="G2316"\w* \w Father|strong="G3962"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\p +\v 3 \w Blessed|strong="G2127"\w* \w be|strong="G2532"\w* \w the|strong="G1722"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w Father|strong="G3962"\w* \w of|strong="G2316"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w who|strong="G3588"\w* \w has|strong="G2316"\w* \w blessed|strong="G2127"\w* \w us|strong="G2249"\w* \w with|strong="G1722"\w* \w every|strong="G3956"\w* \w spiritual|strong="G4152"\w* \w blessing|strong="G2129"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w heavenly|strong="G2032"\w* places \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*, +\v 4 \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w he|strong="G2532"\w* \w chose|strong="G1586"\w* \w us|strong="G2249"\w* \w in|strong="G1722"\w* \w him|strong="G2532"\w* \w before|strong="G4253"\w* \w the|strong="G1722"\w* \w foundation|strong="G2602"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*, \w that|strong="G2532"\w* \w we|strong="G2249"\w* \w would|strong="G2532"\w* \w be|strong="G1510"\w* holy \w and|strong="G2532"\w* \w without|strong="G2532"\w* defect \w before|strong="G4253"\w* \w him|strong="G2532"\w* \w in|strong="G1722"\w* love, +\v 5 having \w predestined|strong="G4309"\w* \w us|strong="G1519"\w* \w for|strong="G1519"\w* \w adoption|strong="G5206"\w* \w as|strong="G1519"\w* \w children|strong="G5206"\w* \w through|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w to|strong="G1519"\w* \w himself|strong="G1519"\w*, \w according|strong="G2596"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w good|strong="G2107"\w* \w pleasure|strong="G2107"\w* \w of|strong="G1223"\w* \w his|strong="G1223"\w* \w desire|strong="G2107"\w*, +\v 6 \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w praise|strong="G1868"\w* \w of|strong="G5485"\w* \w the|strong="G1722"\w* \w glory|strong="G1391"\w* \w of|strong="G5485"\w* \w his|strong="G1519"\w* \w grace|strong="G5485"\w*, \w by|strong="G1722"\w* \w which|strong="G3739"\w* \w he|strong="G3739"\w* \w freely|strong="G5487"\w* \w gave|strong="G3588"\w* \w us|strong="G1519"\w* \w favor|strong="G5485"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* Beloved. +\v 7 \w In|strong="G1722"\w* \w him|strong="G3588"\w* \w we|strong="G3739"\w* \w have|strong="G2192"\w* \w our|strong="G1223"\w* redemption \w through|strong="G1223"\w* \w his|strong="G1223"\w* blood, \w the|strong="G1722"\w* forgiveness \w of|strong="G1223"\w* \w our|strong="G1223"\w* \w trespasses|strong="G3900"\w*, \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1722"\w* \w riches|strong="G4149"\w* \w of|strong="G1223"\w* \w his|strong="G1223"\w* \w grace|strong="G5485"\w* +\v 8 \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w made|strong="G3956"\w* \w to|strong="G1519"\w* \w abound|strong="G4052"\w* \w toward|strong="G1519"\w* \w us|strong="G1519"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w wisdom|strong="G4678"\w* \w and|strong="G2532"\w* \w prudence|strong="G5428"\w*, +\v 9 making \w known|strong="G1107"\w* \w to|strong="G2596"\w* \w us|strong="G2249"\w* \w the|strong="G1722"\w* \w mystery|strong="G3466"\w* \w of|strong="G2307"\w* \w his|strong="G1722"\w* \w will|strong="G2307"\w*, \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w his|strong="G1722"\w* \w good|strong="G2107"\w* \w pleasure|strong="G2107"\w* \w which|strong="G3739"\w* \w he|strong="G3739"\w* \w purposed|strong="G4388"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w* +\v 10 \w to|strong="G1519"\w* \w an|strong="G2532"\w* \w administration|strong="G3622"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w fullness|strong="G4138"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w times|strong="G2540"\w*, \w to|strong="G1519"\w* sum \w up|strong="G1519"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*, \w the|strong="G1722"\w* \w things|strong="G3956"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w heavens|strong="G3772"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w things|strong="G3956"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w*, \w in|strong="G1722"\w* \w him|strong="G3588"\w*. +\v 11 \w We|strong="G3739"\w* \w were|strong="G3588"\w* \w also|strong="G2532"\w* assigned \w an|strong="G2532"\w* \w inheritance|strong="G2820"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*, \w having|strong="G2532"\w* \w been|strong="G2532"\w* foreordained \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w purpose|strong="G4286"\w* \w of|strong="G2532"\w* \w him|strong="G3588"\w* \w who|strong="G3739"\w* does \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w after|strong="G2596"\w* \w the|strong="G1722"\w* \w counsel|strong="G1012"\w* \w of|strong="G2532"\w* \w his|strong="G3956"\w* \w will|strong="G2307"\w*, +\v 12 \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w end|strong="G1519"\w* \w that|strong="G3588"\w* \w we|strong="G2249"\w* \w should|strong="G3588"\w* \w be|strong="G1510"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w praise|strong="G1868"\w* \w of|strong="G1391"\w* \w his|strong="G1519"\w* \w glory|strong="G1391"\w*, \w we|strong="G2249"\w* \w who|strong="G3588"\w* \w had|strong="G1510"\w* \w before|strong="G1722"\w* hoped \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*. +\v 13 \w In|strong="G1722"\w* \w him|strong="G3588"\w* \w you|strong="G5210"\w* \w also|strong="G2532"\w*, \w having|strong="G2532"\w* heard \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* truth, \w the|strong="G1722"\w* \w Good|strong="G3588"\w* \w News|strong="G3056"\w* \w of|strong="G3056"\w* \w your|strong="G2532"\w* \w salvation|strong="G4991"\w*—\w in|strong="G1722"\w* \w whom|strong="G3739"\w*, \w having|strong="G2532"\w* \w also|strong="G2532"\w* \w believed|strong="G4100"\w*, \w you|strong="G5210"\w* \w were|strong="G3588"\w* \w sealed|strong="G4972"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w promised|strong="G1860"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*, +\v 14 \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w a|strong="G1519"\w* pledge \w of|strong="G1391"\w* \w our|strong="G1519"\w* \w inheritance|strong="G2817"\w*, \w to|strong="G1519"\w* \w the|strong="G1519"\w* redemption \w of|strong="G1391"\w* \w God|strong="G1519"\w*’s own \w possession|strong="G4047"\w*, \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w praise|strong="G1868"\w* \w of|strong="G1391"\w* \w his|strong="G1519"\w* \w glory|strong="G1391"\w*. +\p +\v 15 \w For|strong="G1519"\w* \w this|strong="G3778"\w* \w cause|strong="G1223"\w* \w I|strong="G2532"\w* \w also|strong="G2532"\w*, \w having|strong="G2532"\w* heard \w of|strong="G1223"\w* \w the|strong="G1722"\w* \w faith|strong="G4102"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* love \w which|strong="G3588"\w* \w you|strong="G5210"\w* \w have|strong="G2532"\w* \w toward|strong="G1519"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* saints, +\v 16 don’\w t|strong="G3588"\w* \w cease|strong="G3973"\w* \w to|strong="G1909"\w* \w give|strong="G2168"\w* \w thanks|strong="G2168"\w* \w for|strong="G5228"\w* \w you|strong="G5210"\w*, \w making|strong="G4160"\w* \w mention|strong="G3417"\w* \w of|strong="G1909"\w* \w you|strong="G5210"\w* \w in|strong="G1909"\w* \w my|strong="G1473"\w* \w prayers|strong="G4335"\w*, +\v 17 \w that|strong="G2443"\w* \w the|strong="G1722"\w* \w God|strong="G2316"\w* \w of|strong="G4151"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w the|strong="G1722"\w* \w Father|strong="G3962"\w* \w of|strong="G4151"\w* \w glory|strong="G1391"\w*, \w may|strong="G2532"\w* \w give|strong="G1325"\w* \w to|strong="G2443"\w* \w you|strong="G5210"\w* \w a|strong="G2532"\w* \w spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w wisdom|strong="G4678"\w* \w and|strong="G2532"\w* revelation \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w knowledge|strong="G1922"\w* \w of|strong="G4151"\w* \w him|strong="G3588"\w*, +\v 18 \w having|strong="G1492"\w* \w the|strong="G1722"\w* \w eyes|strong="G3788"\w* \w of|strong="G1391"\w* \w your|strong="G1722"\w* \w hearts|strong="G2588"\w*\f + \fr 1:18 \ft TR reads “understanding” instead of “hearts”\f* \w enlightened|strong="G5461"\w*, \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w may|strong="G5210"\w* \w know|strong="G1492"\w* \w what|strong="G5101"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w hope|strong="G1680"\w* \w of|strong="G1391"\w* \w his|strong="G1519"\w* \w calling|strong="G2821"\w*, \w and|strong="G1391"\w* \w what|strong="G5101"\w* \w are|strong="G1510"\w* \w the|strong="G1722"\w* \w riches|strong="G4149"\w* \w of|strong="G1391"\w* \w the|strong="G1722"\w* \w glory|strong="G1391"\w* \w of|strong="G1391"\w* \w his|strong="G1519"\w* \w inheritance|strong="G2817"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* saints, +\v 19 \w and|strong="G2532"\w* \w what|strong="G5101"\w* \w is|strong="G3588"\w* \w the|strong="G2532"\w* \w exceeding|strong="G5235"\w* \w greatness|strong="G3174"\w* \w of|strong="G2532"\w* \w his|strong="G1519"\w* \w power|strong="G1411"\w* \w toward|strong="G1519"\w* \w us|strong="G1519"\w* \w who|strong="G5101"\w* \w believe|strong="G4100"\w*, \w according|strong="G2596"\w* \w to|strong="G1519"\w* \w that|strong="G3588"\w* \w working|strong="G1753"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w strength|strong="G2479"\w* \w of|strong="G2532"\w* \w his|strong="G1519"\w* \w might|strong="G2479"\w* +\v 20 \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w worked|strong="G1754"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w raised|strong="G1453"\w* \w him|strong="G3588"\w* \w from|strong="G1537"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w* \w and|strong="G2532"\w* made \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w sit|strong="G2523"\w* \w at|strong="G1722"\w* \w his|strong="G1722"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w heavenly|strong="G2032"\w* places, +\v 21 \w far|strong="G5231"\w* \w above|strong="G5231"\w* \w all|strong="G3956"\w* rule, \w authority|strong="G1849"\w*, \w power|strong="G1411"\w*, \w dominion|strong="G2963"\w*, \w and|strong="G2532"\w* \w every|strong="G3956"\w* \w name|strong="G3686"\w* \w that|strong="G3588"\w* \w is|strong="G3588"\w* \w named|strong="G3686"\w*, \w not|strong="G3756"\w* \w only|strong="G3440"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* age, \w but|strong="G2532"\w* \w also|strong="G2532"\w* \w in|strong="G1722"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w to|strong="G2532"\w* \w come|strong="G3195"\w*. +\v 22 \w He|strong="G2532"\w* \w put|strong="G5293"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w in|strong="G2532"\w* \w subjection|strong="G5293"\w* \w under|strong="G5259"\w* \w his|strong="G3956"\w* \w feet|strong="G4228"\w*, \w and|strong="G2532"\w* \w gave|strong="G1325"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w head|strong="G2776"\w* \w over|strong="G5228"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w for|strong="G5228"\w* \w the|strong="G2532"\w* \w assembly|strong="G1577"\w*, +\v 23 \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w his|strong="G3956"\w* \w body|strong="G4983"\w*, \w the|strong="G1722"\w* \w fullness|strong="G4138"\w* \w of|strong="G4983"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w fills|strong="G4137"\w* \w all|strong="G3956"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w*. +\c 2 +\p +\v 1 \w You|strong="G5210"\w* \w were|strong="G1510"\w* made alive \w when|strong="G2532"\w* \w you|strong="G5210"\w* \w were|strong="G1510"\w* \w dead|strong="G3498"\w* \w in|strong="G2532"\w* \w transgressions|strong="G3900"\w* \w and|strong="G2532"\w* \w sins|strong="G3900"\w*, +\v 2 \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w once|strong="G4218"\w* \w walked|strong="G4043"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1722"\w* course \w of|strong="G5207"\w* \w this|strong="G3778"\w* \w world|strong="G2889"\w*, \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1722"\w* prince \w of|strong="G5207"\w* \w the|strong="G1722"\w* \w power|strong="G1849"\w* \w of|strong="G5207"\w* \w the|strong="G1722"\w* air, \w the|strong="G1722"\w* \w spirit|strong="G4151"\w* \w who|strong="G3739"\w* \w now|strong="G3568"\w* \w works|strong="G1754"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w children|strong="G5207"\w* \w of|strong="G5207"\w* disobedience. +\v 3 \w We|strong="G2249"\w* \w also|strong="G2532"\w* \w all|strong="G3956"\w* \w once|strong="G4218"\w* \w lived|strong="G1510"\w* \w among|strong="G1722"\w* \w them|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w lusts|strong="G1939"\w* \w of|strong="G2532"\w* \w our|strong="G2532"\w* \w flesh|strong="G4561"\w*, \w doing|strong="G4160"\w* \w the|strong="G1722"\w* \w desires|strong="G1939"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w* \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w mind|strong="G1271"\w*, \w and|strong="G2532"\w* \w were|strong="G1510"\w* \w by|strong="G1722"\w* \w nature|strong="G5449"\w* \w children|strong="G5043"\w* \w of|strong="G2532"\w* \w wrath|strong="G3709"\w*, \w even|strong="G2532"\w* \w as|strong="G5613"\w* \w the|strong="G1722"\w* \w rest|strong="G3062"\w*. +\v 4 \w But|strong="G1161"\w* \w God|strong="G2316"\w*, \w being|strong="G1510"\w* \w rich|strong="G4145"\w* \w in|strong="G1722"\w* \w mercy|strong="G1656"\w*, \w for|strong="G1223"\w* \w his|strong="G1223"\w* \w great|strong="G4183"\w* love \w with|strong="G1722"\w* \w which|strong="G3739"\w* \w he|strong="G1161"\w* loved \w us|strong="G2249"\w*, +\v 5 \w even|strong="G2532"\w* \w when|strong="G2532"\w* \w we|strong="G2249"\w* \w were|strong="G1510"\w* \w dead|strong="G3498"\w* \w through|strong="G3900"\w* \w our|strong="G2532"\w* \w trespasses|strong="G3900"\w*, \w made|strong="G4982"\w* \w us|strong="G2249"\w* \w alive|strong="G4806"\w* \w together|strong="G4806"\w* \w with|strong="G2532"\w* \w Christ|strong="G5547"\w*—\w by|strong="G2532"\w* \w grace|strong="G5485"\w* \w you|strong="G1510"\w* \w have|strong="G2532"\w* \w been|strong="G1510"\w* \w saved|strong="G4982"\w*— +\v 6 \w and|strong="G2532"\w* \w raised|strong="G4891"\w* \w us|strong="G1722"\w* \w up|strong="G2532"\w* \w with|strong="G1722"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w made|strong="G4776"\w* \w us|strong="G1722"\w* \w to|strong="G2532"\w* sit \w with|strong="G1722"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w heavenly|strong="G2032"\w* places \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*, +\v 7 \w that|strong="G2443"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* ages \w to|strong="G2443"\w* \w come|strong="G1904"\w* \w he|strong="G3588"\w* \w might|strong="G5547"\w* \w show|strong="G1731"\w* \w the|strong="G1722"\w* \w exceeding|strong="G5235"\w* \w riches|strong="G4149"\w* \w of|strong="G5485"\w* \w his|strong="G1909"\w* \w grace|strong="G5485"\w* \w in|strong="G1722"\w* \w kindness|strong="G5544"\w* \w toward|strong="G1909"\w* \w us|strong="G2249"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*; +\v 8 \w for|strong="G1063"\w* \w by|strong="G1223"\w* \w grace|strong="G5485"\w* \w you|strong="G5210"\w* \w have|strong="G2532"\w* \w been|strong="G1510"\w* \w saved|strong="G4982"\w* \w through|strong="G1223"\w* \w faith|strong="G4102"\w*, \w and|strong="G2532"\w* \w that|strong="G3588"\w* \w not|strong="G3756"\w* \w of|strong="G1537"\w* \w yourselves|strong="G4771"\w*; \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w gift|strong="G1435"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*, +\v 9 \w not|strong="G3756"\w* \w of|strong="G1537"\w* \w works|strong="G2041"\w*, \w that|strong="G2443"\w* \w no|strong="G3756"\w* \w one|strong="G5100"\w* \w would|strong="G5100"\w* \w boast|strong="G2744"\w*. +\v 10 \w For|strong="G1063"\w* \w we|strong="G3739"\w* \w are|strong="G1510"\w* \w his|strong="G1909"\w* \w workmanship|strong="G4161"\w*, \w created|strong="G2936"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w for|strong="G1063"\w* \w good|strong="G3588"\w* \w works|strong="G2041"\w*, \w which|strong="G3739"\w* \w God|strong="G2316"\w* \w prepared|strong="G4282"\w* \w before|strong="G1909"\w* \w that|strong="G2443"\w* \w we|strong="G3739"\w* \w would|strong="G2316"\w* \w walk|strong="G4043"\w* \w in|strong="G1722"\w* \w them|strong="G3588"\w*. +\p +\v 11 \w Therefore|strong="G1352"\w* \w remember|strong="G3421"\w* \w that|strong="G3754"\w* \w once|strong="G4218"\w* \w you|strong="G5210"\w*, \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*, \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w called|strong="G3004"\w* “uncircumcision” \w by|strong="G1722"\w* \w that|strong="G3754"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w called|strong="G3004"\w* “\w circumcision|strong="G4061"\w*” (\w in|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*, \w made|strong="G5499"\w* \w by|strong="G1722"\w* \w hands|strong="G5499"\w*), +\v 12 \w that|strong="G3754"\w* \w you|strong="G3754"\w* \w were|strong="G1510"\w* \w at|strong="G1722"\w* \w that|strong="G3754"\w* \w time|strong="G2540"\w* \w separate|strong="G5565"\w* \w from|strong="G2532"\w* \w Christ|strong="G5547"\w*, alienated \w from|strong="G2532"\w* \w the|strong="G1722"\w* \w commonwealth|strong="G4174"\w* \w of|strong="G2532"\w* \w Israel|strong="G2474"\w*, \w and|strong="G2532"\w* \w strangers|strong="G3581"\w* \w from|strong="G2532"\w* \w the|strong="G1722"\w* \w covenants|strong="G1242"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w promise|strong="G1860"\w*, \w having|strong="G2192"\w* \w no|strong="G3361"\w* \w hope|strong="G1680"\w* \w and|strong="G2532"\w* \w without|strong="G5565"\w* \w God|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*. +\v 13 \w But|strong="G1161"\w* \w now|strong="G1161"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w you|strong="G5210"\w* \w who|strong="G3588"\w* \w once|strong="G4218"\w* \w were|strong="G1510"\w* \w far|strong="G3112"\w* \w off|strong="G3112"\w* \w are|strong="G1510"\w* \w made|strong="G1096"\w* \w near|strong="G1451"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* blood \w of|strong="G1722"\w* \w Christ|strong="G5547"\w*. +\v 14 \w For|strong="G1063"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w our|strong="G2532"\w* \w peace|strong="G1515"\w*, \w who|strong="G3588"\w* \w made|strong="G4160"\w* \w both|strong="G2532"\w* \w one|strong="G1520"\w*, \w and|strong="G2532"\w* \w broke|strong="G3089"\w* \w down|strong="G3089"\w* \w the|strong="G1722"\w* middle \w wall|strong="G3320"\w* \w of|strong="G2532"\w* separation, +\v 15 \w having|strong="G4160"\w* \w abolished|strong="G2673"\w* \w in|strong="G1722"\w* \w his|strong="G1438"\w* \w flesh|strong="G4561"\w* \w the|strong="G1722"\w* \w hostility|strong="G2189"\w*, \w the|strong="G1722"\w* \w law|strong="G3551"\w* \w of|strong="G3551"\w* \w commandments|strong="G1785"\w* contained \w in|strong="G1722"\w* \w ordinances|strong="G1378"\w*, \w that|strong="G2443"\w* \w he|strong="G3588"\w* \w might|strong="G1785"\w* \w create|strong="G2936"\w* \w in|strong="G1722"\w* \w himself|strong="G1438"\w* \w one|strong="G1520"\w* \w new|strong="G2537"\w* \w man|strong="G1520"\w* \w of|strong="G3551"\w* \w the|strong="G1722"\w* \w two|strong="G1417"\w*, \w making|strong="G4160"\w* \w peace|strong="G1515"\w*, +\v 16 \w and|strong="G2532"\w* \w might|strong="G2532"\w* reconcile \w them|strong="G3588"\w* \w both|strong="G2532"\w* \w in|strong="G1722"\w* \w one|strong="G1520"\w* \w body|strong="G4983"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w cross|strong="G4716"\w*, \w having|strong="G2532"\w* killed \w the|strong="G1722"\w* \w hostility|strong="G2189"\w* \w through|strong="G1223"\w* \w it|strong="G2532"\w*. +\v 17 \w He|strong="G2532"\w* \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w preached|strong="G2097"\w* \w peace|strong="G1515"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w far|strong="G3112"\w* \w off|strong="G3112"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w near|strong="G1451"\w*. +\v 18 \w For|strong="G3754"\w* \w through|strong="G1223"\w* \w him|strong="G3588"\w* \w we|strong="G3754"\w* \w both|strong="G3588"\w* \w have|strong="G2192"\w* \w our|strong="G1223"\w* \w access|strong="G4318"\w* \w in|strong="G1722"\w* \w one|strong="G1520"\w* \w Spirit|strong="G4151"\w* \w to|strong="G4314"\w* \w the|strong="G1722"\w* \w Father|strong="G3962"\w*. +\v 19 \w So|strong="G3767"\w* \w then|strong="G3767"\w* \w you|strong="G1510"\w* \w are|strong="G1510"\w* \w no|strong="G3765"\w* \w longer|strong="G3765"\w* \w strangers|strong="G3581"\w* \w and|strong="G2532"\w* \w foreigners|strong="G3941"\w*, \w but|strong="G2532"\w* \w you|strong="G1510"\w* \w are|strong="G1510"\w* \w fellow|strong="G4847"\w* \w citizens|strong="G4847"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* saints \w and|strong="G2532"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w household|strong="G3609"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, +\v 20 \w being|strong="G1510"\w* \w built|strong="G2026"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w foundation|strong="G2310"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* apostles \w and|strong="G2532"\w* \w prophets|strong="G4396"\w*, \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* himself \w being|strong="G1510"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* cornerstone; +\v 21 \w in|strong="G1722"\w* \w whom|strong="G3739"\w* \w the|strong="G1722"\w* \w whole|strong="G3956"\w* \w building|strong="G3619"\w*, \w fitted|strong="G4883"\w* \w together|strong="G4883"\w*, grows \w into|strong="G1519"\w* \w a|strong="G1519"\w* holy \w temple|strong="G3485"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*; +\v 22 \w in|strong="G1722"\w* \w whom|strong="G3739"\w* \w you|strong="G5210"\w* \w also|strong="G2532"\w* \w are|strong="G3588"\w* \w built|strong="G4925"\w* \w together|strong="G4925"\w* \w for|strong="G1519"\w* \w a|strong="G2532"\w* \w habitation|strong="G2732"\w* \w of|strong="G4151"\w* \w God|strong="G2316"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w*. +\c 3 +\p +\v 1 \w For|strong="G5228"\w* \w this|strong="G3778"\w* \w cause|strong="G5484"\w* \w I|strong="G1473"\w*, \w Paul|strong="G3972"\w*, \w am|strong="G1473"\w* \w the|strong="G3588"\w* \w prisoner|strong="G1198"\w* \w of|strong="G5228"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w on|strong="G5228"\w* \w behalf|strong="G5228"\w* \w of|strong="G5228"\w* \w you|strong="G5210"\w* \w Gentiles|strong="G1484"\w*, +\v 2 \w if|strong="G1487"\w* \w it|strong="G1487"\w* \w is|strong="G3588"\w* \w so|strong="G1519"\w* \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w have|strong="G1473"\w* heard \w of|strong="G2316"\w* \w the|strong="G1519"\w* \w administration|strong="G3622"\w* \w of|strong="G2316"\w* \w that|strong="G3588"\w* \w grace|strong="G5485"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w which|strong="G3588"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w me|strong="G1325"\w* \w toward|strong="G1519"\w* \w you|strong="G5210"\w*, +\v 3 \w how|strong="G3754"\w* \w that|strong="G3754"\w* \w by|strong="G1722"\w* revelation \w the|strong="G1722"\w* \w mystery|strong="G3466"\w* \w was|strong="G3588"\w* \w made|strong="G1107"\w* \w known|strong="G1107"\w* \w to|strong="G2596"\w* \w me|strong="G1473"\w*, \w as|strong="G2531"\w* \w I|strong="G1473"\w* \w wrote|strong="G4270"\w* \w before|strong="G1722"\w* \w in|strong="G1722"\w* \w few|strong="G3641"\w* \w words|strong="G3641"\w*, +\v 4 \w by|strong="G1722"\w* \w which|strong="G3739"\w*, \w when|strong="G1722"\w* \w you|strong="G3739"\w* read, \w you|strong="G3739"\w* \w can|strong="G1410"\w* \w perceive|strong="G3539"\w* \w my|strong="G1722"\w* \w understanding|strong="G4907"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w mystery|strong="G3466"\w* \w of|strong="G1722"\w* \w Christ|strong="G5547"\w*, +\v 5 \w which|strong="G3739"\w* \w in|strong="G1722"\w* \w other|strong="G2087"\w* \w generations|strong="G1074"\w* \w was|strong="G3588"\w* \w not|strong="G3756"\w* \w made|strong="G1107"\w* \w known|strong="G1107"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w children|strong="G5207"\w* \w of|strong="G5207"\w* \w men|strong="G3588"\w*, \w as|strong="G5613"\w* \w it|strong="G2532"\w* \w has|strong="G3739"\w* \w now|strong="G3568"\w* \w been|strong="G2532"\w* revealed \w to|strong="G2532"\w* \w his|strong="G1722"\w* \w holy|strong="G4151"\w* apostles \w and|strong="G2532"\w* \w prophets|strong="G4396"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w*, +\v 6 \w that|strong="G3588"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w* \w are|strong="G1510"\w* \w fellow|strong="G4789"\w* \w heirs|strong="G4789"\w* \w and|strong="G2532"\w* \w fellow|strong="G4789"\w* \w members|strong="G4954"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* \w body|strong="G4954"\w*, \w and|strong="G2532"\w* \w fellow|strong="G4789"\w* \w partakers|strong="G4830"\w* \w of|strong="G1223"\w* \w his|strong="G1223"\w* \w promise|strong="G1860"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w Good|strong="G1223"\w* \w News|strong="G2098"\w*, +\v 7 \w of|strong="G2316"\w* \w which|strong="G3739"\w* \w I|strong="G1473"\w* \w was|strong="G1096"\w* \w made|strong="G1096"\w* \w a|strong="G1096"\w* \w servant|strong="G1249"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G2596"\w* \w gift|strong="G1431"\w* \w of|strong="G2316"\w* \w that|strong="G3739"\w* \w grace|strong="G5485"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w which|strong="G3739"\w* \w was|strong="G1096"\w* \w given|strong="G1325"\w* \w me|strong="G1325"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G2596"\w* \w working|strong="G1753"\w* \w of|strong="G2316"\w* \w his|strong="G1325"\w* \w power|strong="G1411"\w*. +\v 8 \w To|strong="G1325"\w* \w me|strong="G1325"\w*, \w the|strong="G3956"\w* \w very|strong="G1646"\w* \w least|strong="G1646"\w* \w of|strong="G5485"\w* \w all|strong="G3956"\w* saints, \w was|strong="G3588"\w* \w this|strong="G3778"\w* \w grace|strong="G5485"\w* \w given|strong="G1325"\w*, \w to|strong="G1325"\w* \w preach|strong="G2097"\w* \w to|strong="G1325"\w* \w the|strong="G3956"\w* \w Gentiles|strong="G1484"\w* \w the|strong="G3956"\w* unsearchable \w riches|strong="G4149"\w* \w of|strong="G5485"\w* \w Christ|strong="G5547"\w*, +\v 9 \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w make|strong="G2936"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w* \w see|strong="G5461"\w* \w what|strong="G5101"\w* \w is|strong="G3588"\w* \w the|strong="G1722"\w* \w administration|strong="G3622"\w*\f + \fr 3:9 \ft TR reads “fellowship” instead of “administration”\f* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w mystery|strong="G3466"\w* \w which|strong="G3588"\w* \w for|strong="G1722"\w* ages \w has|strong="G2316"\w* \w been|strong="G2532"\w* hidden \w in|strong="G1722"\w* \w God|strong="G2316"\w*, \w who|strong="G5101"\w* \w created|strong="G2936"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w through|strong="G1722"\w* \w Jesus|strong="G2532"\w* Christ, +\v 10 \w to|strong="G2443"\w* \w the|strong="G1722"\w* intent \w that|strong="G2443"\w* \w now|strong="G3568"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w* \w the|strong="G1722"\w* \w manifold|strong="G4182"\w* \w wisdom|strong="G4678"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w* \w might|strong="G2532"\w* \w be|strong="G2532"\w* \w made|strong="G1107"\w* \w known|strong="G1107"\w* \w to|strong="G2443"\w* \w the|strong="G1722"\w* principalities \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w powers|strong="G1849"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w heavenly|strong="G2032"\w* places, +\v 11 \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1722"\w* eternal \w purpose|strong="G4286"\w* \w which|strong="G3739"\w* \w he|strong="G3739"\w* \w accomplished|strong="G4160"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w*. +\v 12 \w In|strong="G1722"\w* \w him|strong="G3588"\w* \w we|strong="G3739"\w* \w have|strong="G2192"\w* \w boldness|strong="G3954"\w* \w and|strong="G2532"\w* \w access|strong="G4318"\w* \w in|strong="G1722"\w* \w confidence|strong="G3954"\w* \w through|strong="G1223"\w* \w our|strong="G2532"\w* \w faith|strong="G4102"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*. +\v 13 \w Therefore|strong="G1352"\w* \w I|strong="G1473"\w* ask \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w may|strong="G5210"\w* \w not|strong="G3361"\w* lose heart \w at|strong="G1722"\w* \w my|strong="G1722"\w* \w troubles|strong="G2347"\w* \w for|strong="G5228"\w* \w you|strong="G5210"\w*, \w which|strong="G3588"\w* \w are|strong="G1510"\w* \w your|strong="G1722"\w* \w glory|strong="G1391"\w*. +\p +\v 14 \w For|strong="G4314"\w* \w this|strong="G3778"\w* \w cause|strong="G5484"\w*, \w I|strong="G1473"\w* \w bow|strong="G2578"\w* \w my|strong="G1473"\w* \w knees|strong="G1119"\w* \w to|strong="G4314"\w* \w the|strong="G4314"\w* \w Father|strong="G3962"\w* \w of|strong="G3962"\w* \w our|strong="G4314"\w* \w Lord|strong="G3588"\w* \w Jesus|strong="G3778"\w* Christ, +\v 15 \w from|strong="G1537"\w* \w whom|strong="G3739"\w* \w every|strong="G3956"\w* \w family|strong="G3965"\w* \w in|strong="G1722"\w* \w heaven|strong="G3772"\w* \w and|strong="G2532"\w* \w on|strong="G1909"\w* \w earth|strong="G1093"\w* \w is|strong="G3739"\w* \w named|strong="G3687"\w*, +\v 16 \w that|strong="G2443"\w* \w he|strong="G3588"\w* \w would|strong="G1325"\w* \w grant|strong="G1325"\w* \w you|strong="G5210"\w*, \w according|strong="G2596"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w riches|strong="G4149"\w* \w of|strong="G4151"\w* \w his|strong="G1223"\w* \w glory|strong="G1391"\w*, \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w may|strong="G2443"\w* \w be|strong="G1519"\w* \w strengthened|strong="G2901"\w* \w with|strong="G1223"\w* \w power|strong="G1411"\w* \w through|strong="G1223"\w* \w his|strong="G1223"\w* \w Spirit|strong="G4151"\w* \w in|strong="G1519"\w* \w the|strong="G1519"\w* \w inner|strong="G2080"\w* person, +\v 17 \w that|strong="G3588"\w* \w Christ|strong="G5547"\w* \w may|strong="G2532"\w* \w dwell|strong="G2730"\w* \w in|strong="G1722"\w* \w your|strong="G1223"\w* \w hearts|strong="G2588"\w* \w through|strong="G1223"\w* \w faith|strong="G4102"\w*, \w to|strong="G2532"\w* \w the|strong="G1722"\w* end \w that|strong="G3588"\w* \w you|strong="G5210"\w*, \w being|strong="G2532"\w* rooted \w and|strong="G2532"\w* \w grounded|strong="G2311"\w* \w in|strong="G1722"\w* love, +\v 18 \w may|strong="G2532"\w* \w be|strong="G2532"\w* strengthened \w to|strong="G2443"\w* \w comprehend|strong="G2638"\w* \w with|strong="G1722"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* saints \w what|strong="G5101"\w* \w is|strong="G3588"\w* \w the|strong="G1722"\w* \w width|strong="G4114"\w* \w and|strong="G2532"\w* \w length|strong="G3372"\w* \w and|strong="G2532"\w* \w height|strong="G5311"\w* \w and|strong="G2532"\w* depth, +\v 19 \w and|strong="G5037"\w* \w to|strong="G1519"\w* \w know|strong="G1097"\w* \w Christ|strong="G5547"\w*’s love \w which|strong="G3588"\w* \w surpasses|strong="G5235"\w* \w knowledge|strong="G1108"\w*, \w that|strong="G2443"\w* \w you|strong="G3956"\w* \w may|strong="G2443"\w* \w be|strong="G3956"\w* \w filled|strong="G4137"\w* \w with|strong="G2316"\w* \w all|strong="G3956"\w* \w the|strong="G1519"\w* \w fullness|strong="G4138"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\p +\v 20 \w Now|strong="G1161"\w* \w to|strong="G2596"\w* \w him|strong="G3588"\w* \w who|strong="G3739"\w* \w is|strong="G3588"\w* \w able|strong="G1410"\w* \w to|strong="G2596"\w* \w do|strong="G4160"\w* exceedingly \w abundantly|strong="G4053"\w* \w above|strong="G5228"\w* \w all|strong="G3956"\w* \w that|strong="G3739"\w* \w we|strong="G2249"\w* ask \w or|strong="G2228"\w* \w think|strong="G3539"\w*, \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1722"\w* \w power|strong="G1411"\w* \w that|strong="G3739"\w* \w works|strong="G1754"\w* \w in|strong="G1722"\w* \w us|strong="G4160"\w*, +\v 21 \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w be|strong="G2532"\w* \w the|strong="G1722"\w* \w glory|strong="G1391"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w* \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w to|strong="G1519"\w* \w all|strong="G3956"\w* \w generations|strong="G1074"\w*, \w forever|strong="G1519"\w* \w and|strong="G2532"\w* \w ever|strong="G1519"\w*. Amen. +\c 4 +\p +\v 1 \w I|strong="G1473"\w* \w therefore|strong="G3767"\w*, \w the|strong="G1722"\w* \w prisoner|strong="G1198"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w beg|strong="G3870"\w* \w you|strong="G5210"\w* \w to|strong="G1722"\w* \w walk|strong="G4043"\w* worthily \w of|strong="G2962"\w* \w the|strong="G1722"\w* \w calling|strong="G2821"\w* \w with|strong="G1722"\w* \w which|strong="G3739"\w* \w you|strong="G5210"\w* \w were|strong="G3588"\w* \w called|strong="G2564"\w*, +\v 2 \w with|strong="G3326"\w* \w all|strong="G3956"\w* \w lowliness|strong="G5012"\w* \w and|strong="G2532"\w* \w humility|strong="G5012"\w*, \w with|strong="G3326"\w* \w patience|strong="G3115"\w*, bearing \w with|strong="G3326"\w* \w one|strong="G3956"\w* \w another|strong="G1722"\w* \w in|strong="G1722"\w* love, +\v 3 \w being|strong="G1722"\w* \w eager|strong="G4704"\w* \w to|strong="G1722"\w* \w keep|strong="G5083"\w* \w the|strong="G1722"\w* \w unity|strong="G1775"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w bond|strong="G4886"\w* \w of|strong="G4151"\w* \w peace|strong="G1515"\w*. +\v 4 \w There|strong="G2532"\w* \w is|strong="G3588"\w* \w one|strong="G1520"\w* \w body|strong="G4983"\w* \w and|strong="G2532"\w* \w one|strong="G1520"\w* \w Spirit|strong="G4151"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w you|strong="G5210"\w* \w also|strong="G2532"\w* \w were|strong="G3588"\w* \w called|strong="G2564"\w* \w in|strong="G1722"\w* \w one|strong="G1520"\w* \w hope|strong="G1680"\w* \w of|strong="G4151"\w* \w your|strong="G2532"\w* \w calling|strong="G2821"\w*, +\v 5 \w one|strong="G1520"\w* \w Lord|strong="G2962"\w*, \w one|strong="G1520"\w* \w faith|strong="G4102"\w*, \w one|strong="G1520"\w* baptism, +\v 6 \w one|strong="G1520"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w Father|strong="G3962"\w* \w of|strong="G1223"\w* \w all|strong="G3956"\w*, \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w over|strong="G1909"\w* \w all|strong="G3956"\w* \w and|strong="G2532"\w* \w through|strong="G1223"\w* \w all|strong="G3956"\w* \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w us|strong="G1722"\w* \w all|strong="G3956"\w*. +\v 7 \w But|strong="G1161"\w* \w to|strong="G2596"\w* \w each|strong="G1538"\w* \w one|strong="G1520"\w* \w of|strong="G5485"\w* \w us|strong="G1325"\w*, \w the|strong="G1161"\w* \w grace|strong="G5485"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1161"\w* \w measure|strong="G3358"\w* \w of|strong="G5485"\w* \w the|strong="G1161"\w* \w gift|strong="G1431"\w* \w of|strong="G5485"\w* \w Christ|strong="G5547"\w*. +\v 8 \w Therefore|strong="G1352"\w* \w he|strong="G3588"\w* \w says|strong="G3004"\w*, +\q1 “\w When|strong="G3004"\w* \w he|strong="G3588"\w* \w ascended|strong="G3588"\w* \w on|strong="G1519"\w* \w high|strong="G5311"\w*, +\q2 \w he|strong="G3588"\w* led captivity captive, +\q2 \w and|strong="G3588"\w* \w gave|strong="G1325"\w* \w gifts|strong="G1390"\w* \w to|strong="G1519"\w* \w people|strong="G3004"\w*.”\x + \xo 4:8 \xt Psalms 68:18\x* +\m +\v 9 \w Now|strong="G1161"\w* \w this|strong="G3588"\w*, “\w He|strong="G2532"\w* \w ascended|strong="G3588"\w*”, \w what|strong="G5101"\w* \w is|strong="G1510"\w* \w it|strong="G2532"\w* \w but|strong="G1161"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w also|strong="G2532"\w* \w first|strong="G3588"\w* \w descended|strong="G2597"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w lower|strong="G2737"\w* \w parts|strong="G3313"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*? +\v 10 \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w descended|strong="G2597"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w one|strong="G3956"\w* \w who|strong="G3588"\w* \w also|strong="G2532"\w* \w ascended|strong="G3588"\w* \w far|strong="G5231"\w* \w above|strong="G5231"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w heavens|strong="G3772"\w*, \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w fill|strong="G4137"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*. +\p +\v 11 \w He|strong="G2532"\w* \w gave|strong="G1325"\w* \w some|strong="G3588"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* apostles; \w and|strong="G2532"\w* \w some|strong="G3588"\w*, \w prophets|strong="G4396"\w*; \w and|strong="G2532"\w* \w some|strong="G3588"\w*, \w evangelists|strong="G2099"\w*; \w and|strong="G2532"\w* \w some|strong="G3588"\w*, \w shepherds|strong="G4166"\w*\f + \fr 4:11 \ft or, pastors\f* \w and|strong="G2532"\w* \w teachers|strong="G1320"\w*; +\v 12 \w for|strong="G1519"\w* \w the|strong="G1519"\w* \w perfecting|strong="G2677"\w* \w of|strong="G2041"\w* \w the|strong="G1519"\w* saints, \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w work|strong="G2041"\w* \w of|strong="G2041"\w* \w serving|strong="G1248"\w*, \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w building|strong="G3619"\w* \w up|strong="G1519"\w* \w of|strong="G2041"\w* \w the|strong="G1519"\w* \w body|strong="G4983"\w* \w of|strong="G2041"\w* \w Christ|strong="G5547"\w*, +\v 13 \w until|strong="G3360"\w* \w we|strong="G2532"\w* \w all|strong="G3956"\w* \w attain|strong="G2658"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w unity|strong="G1775"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w faith|strong="G4102"\w* \w and|strong="G2532"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w knowledge|strong="G1922"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*, \w to|strong="G1519"\w* \w a|strong="G2532"\w* \w full|strong="G4138"\w* grown \w man|strong="G3956"\w*, \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w measure|strong="G3358"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w stature|strong="G2244"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w fullness|strong="G4138"\w* \w of|strong="G5207"\w* \w Christ|strong="G5547"\w*, +\v 14 \w that|strong="G2443"\w* \w we|strong="G2532"\w* \w may|strong="G2532"\w* \w no|strong="G3371"\w* \w longer|strong="G3371"\w* \w be|strong="G1510"\w* \w children|strong="G3516"\w*, \w tossed|strong="G2831"\w* \w back|strong="G4314"\w* \w and|strong="G2532"\w* forth \w and|strong="G2532"\w* \w carried|strong="G2532"\w* \w about|strong="G1722"\w* \w with|strong="G1722"\w* \w every|strong="G3956"\w* wind \w of|strong="G2532"\w* \w doctrine|strong="G1319"\w*, \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w trickery|strong="G3834"\w* \w of|strong="G2532"\w* \w men|strong="G3956"\w*, \w in|strong="G1722"\w* \w craftiness|strong="G3834"\w*, \w after|strong="G2532"\w* \w the|strong="G1722"\w* \w wiles|strong="G3180"\w* \w of|strong="G2532"\w* \w error|strong="G4106"\w*; +\v 15 \w but|strong="G1161"\w* speaking truth \w in|strong="G1722"\w* love, \w we|strong="G3739"\w* \w may|strong="G5547"\w* grow \w up|strong="G1519"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w into|strong="G1519"\w* \w him|strong="G3588"\w* \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w head|strong="G2776"\w*, \w Christ|strong="G5547"\w*, +\v 16 \w from|strong="G1537"\w* \w whom|strong="G3739"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w body|strong="G4983"\w*, \w being|strong="G2532"\w* \w fitted|strong="G4883"\w* \w and|strong="G2532"\w* \w knit|strong="G4822"\w* \w together|strong="G4822"\w* \w through|strong="G1223"\w* \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w every|strong="G3956"\w* joint \w supplies|strong="G2024"\w*, \w according|strong="G2596"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w working|strong="G1753"\w* \w in|strong="G1722"\w* \w measure|strong="G3358"\w* \w of|strong="G1537"\w* \w each|strong="G1538"\w* \w individual|strong="G1520"\w* \w part|strong="G3313"\w*, \w makes|strong="G4160"\w* \w the|strong="G1722"\w* \w body|strong="G4983"\w* increase \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w building|strong="G3619"\w* \w up|strong="G1519"\w* \w of|strong="G1537"\w* \w itself|strong="G1438"\w* \w in|strong="G1722"\w* love. +\p +\v 17 \w This|strong="G3778"\w* \w I|strong="G2532"\w* \w say|strong="G3004"\w* \w therefore|strong="G3767"\w*, \w and|strong="G2532"\w* \w testify|strong="G3143"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w no|strong="G3371"\w* \w longer|strong="G3371"\w* \w walk|strong="G4043"\w* \w as|strong="G2531"\w* \w the|strong="G1722"\w* rest \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w* \w also|strong="G2532"\w* \w walk|strong="G4043"\w*, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w futility|strong="G3153"\w* \w of|strong="G2532"\w* \w their|strong="G2532"\w* \w mind|strong="G3563"\w*, +\v 18 \w being|strong="G1510"\w* \w darkened|strong="G4656"\w* \w in|strong="G1722"\w* \w their|strong="G1722"\w* \w understanding|strong="G1271"\w*, alienated \w from|strong="G3588"\w* \w the|strong="G1722"\w* \w life|strong="G2222"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w* \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* ignorance \w that|strong="G3588"\w* \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w them|strong="G3588"\w*, \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* \w hardening|strong="G4457"\w* \w of|strong="G1223"\w* \w their|strong="G1722"\w* \w hearts|strong="G2588"\w*. +\v 19 \w They|strong="G3588"\w*, having become callous, \w gave|strong="G3860"\w* \w themselves|strong="G1438"\w* \w up|strong="G3860"\w* \w to|strong="G1519"\w* lust, \w to|strong="G1519"\w* \w work|strong="G2039"\w* \w all|strong="G3956"\w* uncleanness \w with|strong="G1722"\w* \w greediness|strong="G4124"\w*. +\v 20 \w But|strong="G1161"\w* \w you|strong="G5210"\w* didn’\w t|strong="G3588"\w* \w learn|strong="G3129"\w* \w Christ|strong="G5547"\w* \w that|strong="G3588"\w* \w way|strong="G3779"\w*, +\v 21 \w if|strong="G1487"\w* \w indeed|strong="G2532"\w* \w you|strong="G1487"\w* heard \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w were|strong="G1510"\w* \w taught|strong="G1321"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* truth \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w Jesus|strong="G2424"\w*: +\v 22 \w that|strong="G3588"\w* \w you|strong="G5210"\w* put away, \w as|strong="G2596"\w* \w concerning|strong="G2596"\w* \w your|strong="G3588"\w* \w former|strong="G4387"\w* \w way|strong="G2596"\w* \w of|strong="G2596"\w* life, \w the|strong="G2596"\w* \w old|strong="G3820"\w* man \w that|strong="G3588"\w* grows \w corrupt|strong="G5351"\w* \w after|strong="G2596"\w* \w the|strong="G2596"\w* \w lusts|strong="G1939"\w* \w of|strong="G2596"\w* deceit, +\v 23 \w and|strong="G1161"\w* \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w be|strong="G3588"\w* renewed \w in|strong="G1161"\w* \w the|strong="G1161"\w* \w spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w your|strong="G3588"\w* \w mind|strong="G3563"\w*, +\v 24 \w and|strong="G2532"\w* \w put|strong="G1746"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w new|strong="G2537"\w* \w man|strong="G2316"\w*, \w who|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* likeness \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w been|strong="G2532"\w* \w created|strong="G2936"\w* \w in|strong="G1722"\w* \w righteousness|strong="G1343"\w* \w and|strong="G2532"\w* \w holiness|strong="G3742"\w* \w of|strong="G2316"\w* truth. +\p +\v 25 \w Therefore|strong="G1352"\w*, \w putting|strong="G1352"\w* \w away|strong="G3326"\w* \w falsehood|strong="G5579"\w*, \w speak|strong="G2980"\w* truth \w each|strong="G1538"\w* \w one|strong="G1538"\w* \w with|strong="G3326"\w* \w his|strong="G3754"\w* \w neighbor|strong="G4139"\w*, \w for|strong="G3754"\w* \w we|strong="G3754"\w* \w are|strong="G1510"\w* \w members|strong="G3196"\w* \w of|strong="G3588"\w* \w one|strong="G1538"\w* \w another|strong="G3588"\w*. +\v 26 “\w Be|strong="G2532"\w* \w angry|strong="G3710"\w*, \w and|strong="G2532"\w* don’\w t|strong="G3588"\w* sin.”\x + \xo 4:26 \xt Psalms 4:4\x* Don’\w t|strong="G3588"\w* \w let|strong="G1931"\w* \w the|strong="G2532"\w* \w sun|strong="G2246"\w* \w go|strong="G2246"\w* \w down|strong="G1931"\w* \w on|strong="G1909"\w* \w your|strong="G2532"\w* \w wrath|strong="G3950"\w*, +\v 27 \w and|strong="G3588"\w* don’\w t|strong="G3588"\w* \w give|strong="G1325"\w* \w place|strong="G5117"\w*\f + \fr 4:27 \ft or, opportunity\f* \w to|strong="G1325"\w* \w the|strong="G3588"\w* \w devil|strong="G1228"\w*. +\v 28 \w Let|strong="G1161"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w stole|strong="G2813"\w* \w steal|strong="G2813"\w* \w no|strong="G3371"\w* \w more|strong="G3123"\w*; \w but|strong="G1161"\w* \w rather|strong="G3123"\w* \w let|strong="G1161"\w* \w him|strong="G3588"\w* \w labor|strong="G2872"\w*, producing \w with|strong="G2192"\w* \w his|strong="G2398"\w* \w hands|strong="G5495"\w* something \w that|strong="G2443"\w* \w is|strong="G3588"\w* \w good|strong="G3588"\w*, \w that|strong="G2443"\w* \w he|strong="G1161"\w* \w may|strong="G2443"\w* \w have|strong="G2192"\w* something \w to|strong="G2443"\w* \w give|strong="G3330"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w has|strong="G2192"\w* \w need|strong="G5532"\w*. +\v 29 \w Let|strong="G2443"\w* \w no|strong="G3361"\w* \w corrupt|strong="G4550"\w* \w speech|strong="G3056"\w* \w proceed|strong="G1607"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w your|strong="G1487"\w* \w mouth|strong="G4750"\w*, \w but|strong="G1487"\w* \w only|strong="G1487"\w* \w what|strong="G3588"\w* \w is|strong="G3588"\w* \w good|strong="G3956"\w* \w for|strong="G4314"\w* \w building|strong="G3619"\w* \w others|strong="G3588"\w* \w up|strong="G1325"\w* \w as|strong="G1607"\w* \w the|strong="G3956"\w* \w need|strong="G5532"\w* \w may|strong="G2443"\w* \w be|strong="G3361"\w*, \w that|strong="G2443"\w* \w it|strong="G1487"\w* \w may|strong="G2443"\w* \w give|strong="G1325"\w* \w grace|strong="G5485"\w* \w to|strong="G4314"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* hear. +\v 30 Don’\w t|strong="G3588"\w* \w grieve|strong="G3076"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w God|strong="G2316"\w*, \w in|strong="G1722"\w* \w whom|strong="G3739"\w* \w you|strong="G3739"\w* \w were|strong="G3588"\w* \w sealed|strong="G4972"\w* \w for|strong="G1519"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w of|strong="G4151"\w* redemption. +\v 31 \w Let|strong="G2532"\w* \w all|strong="G3956"\w* \w bitterness|strong="G4088"\w*, \w wrath|strong="G3709"\w*, \w anger|strong="G3709"\w*, outcry, \w and|strong="G2532"\w* slander \w be|strong="G2532"\w* \w put|strong="G2532"\w* away \w from|strong="G2532"\w* \w you|strong="G5210"\w*, \w with|strong="G4862"\w* \w all|strong="G3956"\w* \w malice|strong="G2549"\w*. +\v 32 \w And|strong="G2532"\w* \w be|strong="G1096"\w* \w kind|strong="G5543"\w* \w to|strong="G1519"\w* \w one|strong="G1438"\w* \w another|strong="G1438"\w*, tender hearted, \w forgiving|strong="G5483"\w* \w each|strong="G1438"\w* \w other|strong="G1161"\w*, \w just|strong="G2531"\w* \w as|strong="G2531"\w* \w God|strong="G2316"\w* \w also|strong="G2532"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w forgave|strong="G5483"\w* \w you|strong="G5210"\w*. +\c 5 +\p +\v 1 \w Be|strong="G1096"\w* \w therefore|strong="G3767"\w* \w imitators|strong="G3402"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w as|strong="G5613"\w* beloved \w children|strong="G5043"\w*. +\v 2 \w Walk|strong="G4043"\w* \w in|strong="G1722"\w* love, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w Christ|strong="G5547"\w* \w also|strong="G2532"\w* loved \w us|strong="G1519"\w* \w and|strong="G2532"\w* \w gave|strong="G3860"\w* \w himself|strong="G1438"\w* \w up|strong="G3860"\w* \w for|strong="G1519"\w* \w us|strong="G1519"\w*, \w an|strong="G2532"\w* \w offering|strong="G4376"\w* \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w sacrifice|strong="G2378"\w* \w to|strong="G1519"\w* \w God|strong="G2316"\w* \w for|strong="G1519"\w* \w a|strong="G2532"\w* sweet-smelling \w fragrance|strong="G3744"\w*. +\p +\v 3 \w But|strong="G1161"\w* \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w*, \w and|strong="G2532"\w* \w all|strong="G3956"\w* uncleanness \w or|strong="G2228"\w* \w covetousness|strong="G4124"\w*, \w let|strong="G1161"\w* \w it|strong="G2532"\w* \w not|strong="G3366"\w* \w even|strong="G2532"\w* \w be|strong="G2532"\w* mentioned \w among|strong="G1722"\w* \w you|strong="G5210"\w*, \w as|strong="G2531"\w* becomes saints; +\v 4 \w nor|strong="G2532"\w* filthiness, \w nor|strong="G2532"\w* \w foolish|strong="G2532"\w* \w talking|strong="G3473"\w*, \w nor|strong="G2532"\w* \w jesting|strong="G2160"\w*, \w which|strong="G3739"\w* \w are|strong="G3739"\w* \w not|strong="G3756"\w* appropriate, \w but|strong="G2532"\w* \w rather|strong="G3123"\w* \w giving|strong="G2169"\w* \w of|strong="G2532"\w* \w thanks|strong="G2169"\w*. +\p +\v 5 \w Know|strong="G1492"\w* \w this|strong="G3778"\w* \w for|strong="G1063"\w* \w sure|strong="G1097"\w*, \w that|strong="G3754"\w* \w no|strong="G3756"\w* sexually \w immoral|strong="G4205"\w* \w person|strong="G3739"\w*, \w nor|strong="G2532"\w* \w unclean|strong="G2228"\w* \w person|strong="G3739"\w*, \w nor|strong="G2532"\w* \w covetous|strong="G4123"\w* \w man|strong="G3778"\w* (\w who|strong="G3739"\w* \w is|strong="G1510"\w* \w an|strong="G2192"\w* \w idolater|strong="G1496"\w*), \w has|strong="G2192"\w* \w any|strong="G3956"\w* \w inheritance|strong="G2817"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* Kingdom \w of|strong="G2316"\w* \w Christ|strong="G5547"\w* \w and|strong="G2532"\w* \w God|strong="G2316"\w*. +\p +\v 6 \w Let|strong="G1063"\w* \w no|strong="G3367"\w* \w one|strong="G3367"\w* deceive \w you|strong="G5210"\w* \w with|strong="G1223"\w* \w empty|strong="G2756"\w* \w words|strong="G3056"\w*, \w for|strong="G1063"\w* \w because|strong="G1223"\w* \w of|strong="G5207"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w the|strong="G1909"\w* \w wrath|strong="G3709"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w* \w comes|strong="G2064"\w* \w on|strong="G1909"\w* \w the|strong="G1909"\w* \w children|strong="G5207"\w* \w of|strong="G5207"\w* disobedience. +\v 7 \w Therefore|strong="G3767"\w* don’t \w be|strong="G1096"\w* \w partakers|strong="G4830"\w* \w with|strong="G1096"\w* them. +\v 8 \w For|strong="G1063"\w* \w you|strong="G1722"\w* \w were|strong="G1510"\w* \w once|strong="G4218"\w* \w darkness|strong="G4655"\w*, \w but|strong="G1161"\w* \w are|strong="G1510"\w* \w now|strong="G1161"\w* \w light|strong="G5457"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. \w Walk|strong="G4043"\w* \w as|strong="G5613"\w* \w children|strong="G5043"\w* \w of|strong="G2962"\w* \w light|strong="G5457"\w*, +\v 9 \w for|strong="G1063"\w* \w the|strong="G1722"\w* \w fruit|strong="G2590"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Spirit|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* goodness \w and|strong="G2532"\w* \w righteousness|strong="G1343"\w* \w and|strong="G2532"\w* truth, +\v 10 \w proving|strong="G1381"\w* \w what|strong="G5101"\w* \w is|strong="G1510"\w* \w well|strong="G2101"\w* \w pleasing|strong="G2101"\w* \w to|strong="G5101"\w* \w the|strong="G3588"\w* \w Lord|strong="G2962"\w*. +\v 11 \w Have|strong="G2532"\w* \w no|strong="G3361"\w* \w fellowship|strong="G4790"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* unfruitful \w deeds|strong="G2041"\w* \w of|strong="G2532"\w* \w darkness|strong="G4655"\w*, \w but|strong="G1161"\w* \w rather|strong="G3123"\w* \w even|strong="G2532"\w* \w reprove|strong="G1651"\w* \w them|strong="G3588"\w*. +\v 12 \w For|strong="G1063"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w a|strong="G1096"\w* shame \w even|strong="G2532"\w* \w to|strong="G2532"\w* \w speak|strong="G3004"\w* \w of|strong="G5259"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w which|strong="G3588"\w* \w are|strong="G1510"\w* \w done|strong="G1096"\w* \w by|strong="G5259"\w* \w them|strong="G3588"\w* \w in|strong="G2532"\w* \w secret|strong="G2931"\w*. +\v 13 \w But|strong="G1161"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w when|strong="G1161"\w* \w they|strong="G1161"\w* \w are|strong="G1510"\w* \w reproved|strong="G1651"\w*, \w are|strong="G1510"\w* \w revealed|strong="G5319"\w* \w by|strong="G5259"\w* \w the|strong="G3956"\w* \w light|strong="G5457"\w*, \w for|strong="G1063"\w* \w everything|strong="G3956"\w* \w that|strong="G3588"\w* reveals \w is|strong="G1510"\w* \w light|strong="G5457"\w*. +\v 14 \w Therefore|strong="G1352"\w* \w he|strong="G2532"\w* \w says|strong="G3004"\w*, “\w Awake|strong="G1453"\w*, \w you|strong="G4771"\w* \w who|strong="G3588"\w* \w sleep|strong="G2518"\w*, \w and|strong="G2532"\w* \w arise|strong="G1453"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*, \w and|strong="G2532"\w* \w Christ|strong="G5547"\w* \w will|strong="G1510"\w* \w shine|strong="G2017"\w* \w on|strong="G1537"\w* \w you|strong="G4771"\w*.” +\p +\v 15 \w Therefore|strong="G3767"\w* watch \w carefully|strong="G4459"\w* \w how|strong="G4459"\w* \w you|strong="G4459"\w* \w walk|strong="G4043"\w*, \w not|strong="G3361"\w* \w as|strong="G5613"\w* unwise, \w but|strong="G3361"\w* \w as|strong="G5613"\w* \w wise|strong="G4680"\w*, +\v 16 \w redeeming|strong="G1805"\w* \w the|strong="G3588"\w* \w time|strong="G2540"\w*, \w because|strong="G3754"\w* \w the|strong="G3588"\w* \w days|strong="G2250"\w* \w are|strong="G1510"\w* \w evil|strong="G4190"\w*. +\v 17 \w Therefore|strong="G1223"\w*, don’\w t|strong="G3588"\w* \w be|strong="G1096"\w* foolish, \w but|strong="G3361"\w* \w understand|strong="G4920"\w* \w what|strong="G5101"\w* \w the|strong="G1223"\w* \w will|strong="G2307"\w* \w of|strong="G1223"\w* \w the|strong="G1223"\w* \w Lord|strong="G2962"\w* \w is|strong="G3588"\w*. +\v 18 Don’t \w be|strong="G1510"\w* \w drunken|strong="G3182"\w* \w with|strong="G1722"\w* \w wine|strong="G3631"\w*, \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w is|strong="G1510"\w* dissipation, \w but|strong="G2532"\w* \w be|strong="G1510"\w* \w filled|strong="G4137"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w*, +\v 19 \w speaking|strong="G2980"\w* \w to|strong="G2532"\w* \w one|strong="G1438"\w* \w another|strong="G1438"\w* \w in|strong="G2532"\w* \w psalms|strong="G5568"\w*, \w hymns|strong="G5215"\w*, \w and|strong="G2532"\w* \w spiritual|strong="G4152"\w* \w songs|strong="G5603"\w*; singing \w and|strong="G2532"\w* \w making|strong="G5567"\w* \w melody|strong="G5567"\w* \w in|strong="G2532"\w* \w your|strong="G2962"\w* \w heart|strong="G2588"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*; +\v 20 \w giving|strong="G2168"\w* \w thanks|strong="G2168"\w* \w always|strong="G3842"\w* \w concerning|strong="G5228"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G2316"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w*, \w even|strong="G2532"\w* \w the|strong="G1722"\w* \w Father|strong="G3962"\w*; +\v 21 \w subjecting|strong="G5293"\w* \w yourselves|strong="G5293"\w* \w to|strong="G1722"\w* \w one|strong="G1722"\w* \w another|strong="G5293"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w fear|strong="G5401"\w* \w of|strong="G1722"\w* \w Christ|strong="G5547"\w*. +\p +\v 22 \w Wives|strong="G1135"\w*, \w be|strong="G3588"\w* subject \w to|strong="G2962"\w* \w your|strong="G2962"\w* \w own|strong="G2398"\w* husbands, \w as|strong="G5613"\w* \w to|strong="G2962"\w* \w the|strong="G3588"\w* \w Lord|strong="G2962"\w*. +\v 23 \w For|strong="G3754"\w* \w the|strong="G2532"\w* husband \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w head|strong="G2776"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w wife|strong="G1135"\w*, \w as|strong="G5613"\w* \w Christ|strong="G5547"\w* \w also|strong="G2532"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w head|strong="G2776"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w assembly|strong="G1577"\w*, \w being|strong="G1510"\w* himself \w the|strong="G2532"\w* \w savior|strong="G4990"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w body|strong="G4983"\w*. +\v 24 \w But|strong="G2532"\w* \w as|strong="G5613"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w* \w is|strong="G3588"\w* \w subject|strong="G5293"\w* \w to|strong="G2532"\w* \w Christ|strong="G5547"\w*, \w so|strong="G3779"\w* \w let|strong="G2532"\w* \w the|strong="G1722"\w* \w wives|strong="G1135"\w* \w also|strong="G2532"\w* \w be|strong="G2532"\w* \w to|strong="G2532"\w* \w their|strong="G2532"\w* own husbands \w in|strong="G1722"\w* \w everything|strong="G3956"\w*. +\p +\v 25 Husbands, love \w your|strong="G2532"\w* \w wives|strong="G1135"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w Christ|strong="G5547"\w* \w also|strong="G2532"\w* loved \w the|strong="G2532"\w* \w assembly|strong="G1577"\w* \w and|strong="G2532"\w* \w gave|strong="G3860"\w* \w himself|strong="G1438"\w* \w up|strong="G3860"\w* \w for|strong="G5228"\w* \w her|strong="G1438"\w*, +\v 26 \w that|strong="G2443"\w* \w he|strong="G3588"\w* might sanctify \w her|strong="G1438"\w*, having \w cleansed|strong="G2511"\w* \w her|strong="G1438"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w washing|strong="G3067"\w* \w of|strong="G1722"\w* \w water|strong="G5204"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w word|strong="G4487"\w*, +\v 27 \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w present|strong="G3936"\w* \w the|strong="G2532"\w* \w assembly|strong="G1577"\w* \w to|strong="G2443"\w* \w himself|strong="G1438"\w* gloriously, \w not|strong="G3361"\w* \w having|strong="G2192"\w* \w spot|strong="G4696"\w* \w or|strong="G2228"\w* \w wrinkle|strong="G4512"\w* \w or|strong="G2228"\w* \w any|strong="G5100"\w* \w such|strong="G5108"\w* \w thing|strong="G5100"\w*, \w but|strong="G2532"\w* \w that|strong="G2443"\w* \w she|strong="G2532"\w* \w should|strong="G5100"\w* \w be|strong="G1510"\w* holy \w and|strong="G2532"\w* \w without|strong="G3361"\w* defect. +\v 28 \w Even|strong="G2532"\w* \w so|strong="G3779"\w* husbands \w also|strong="G2532"\w* \w ought|strong="G3784"\w* \w to|strong="G2532"\w* love \w their|strong="G1438"\w* \w own|strong="G1438"\w* \w wives|strong="G1135"\w* \w as|strong="G5613"\w* \w their|strong="G1438"\w* \w own|strong="G1438"\w* \w bodies|strong="G4983"\w*. \w He|strong="G2532"\w* \w who|strong="G3588"\w* loves \w his|strong="G1438"\w* \w own|strong="G1438"\w* \w wife|strong="G1135"\w* loves \w himself|strong="G1438"\w*. +\v 29 \w For|strong="G1063"\w* \w no|strong="G3762"\w* \w man|strong="G3762"\w* \w ever|strong="G4218"\w* \w hated|strong="G3404"\w* \w his|strong="G1438"\w* \w own|strong="G1438"\w* \w flesh|strong="G4561"\w*, \w but|strong="G2532"\w* \w nourishes|strong="G1625"\w* \w and|strong="G2532"\w* \w cherishes|strong="G2282"\w* \w it|strong="G2532"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w the|strong="G2532"\w* \w Lord|strong="G3588"\w* \w also|strong="G2532"\w* \w does|strong="G3404"\w* \w the|strong="G2532"\w* \w assembly|strong="G1577"\w*, +\v 30 \w because|strong="G3754"\w* \w we|strong="G3754"\w* \w are|strong="G1510"\w* \w members|strong="G3196"\w* \w of|strong="G4983"\w* \w his|strong="G3754"\w* \w body|strong="G4983"\w*, \w of|strong="G4983"\w* \w his|strong="G3754"\w* flesh \w and|strong="G4983"\w* bones. +\v 31 “\w For|strong="G1519"\w* \w this|strong="G3778"\w* \w cause|strong="G3588"\w* \w a|strong="G2532"\w* \w man|strong="G3778"\w* \w will|strong="G1510"\w* \w leave|strong="G2641"\w* \w his|strong="G1519"\w* \w father|strong="G3962"\w* \w and|strong="G2532"\w* \w mother|strong="G3384"\w* \w and|strong="G2532"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w joined|strong="G4347"\w* \w to|strong="G1519"\w* \w his|strong="G1519"\w* \w wife|strong="G1135"\w*. \w Then|strong="G2532"\w* \w the|strong="G2532"\w* \w two|strong="G1417"\w* \w will|strong="G1510"\w* \w become|strong="G1510"\w* \w one|strong="G1520"\w* \w flesh|strong="G4561"\w*.”\x + \xo 5:31 \xt Genesis 2:24\x* +\v 32 \w This|strong="G3778"\w* \w mystery|strong="G3466"\w* \w is|strong="G1510"\w* \w great|strong="G3173"\w*, \w but|strong="G1161"\w* \w I|strong="G1473"\w* \w speak|strong="G3004"\w* \w concerning|strong="G1519"\w* \w Christ|strong="G5547"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w assembly|strong="G1577"\w*. +\v 33 \w Nevertheless|strong="G4133"\w* \w each|strong="G1538"\w* \w of|strong="G2532"\w* \w you|strong="G5210"\w* \w must|strong="G1135"\w* \w also|strong="G2532"\w* love \w his|strong="G1438"\w* \w own|strong="G1438"\w* \w wife|strong="G1135"\w* \w even|strong="G2532"\w* \w as|strong="G5613"\w* \w himself|strong="G1438"\w*; \w and|strong="G2532"\w* \w let|strong="G1161"\w* \w the|strong="G2532"\w* \w wife|strong="G1135"\w* see \w that|strong="G2443"\w* \w she|strong="G2532"\w* \w respects|strong="G5399"\w* \w her|strong="G1438"\w* husband. +\c 6 +\p +\v 1 \w Children|strong="G5043"\w*, \w obey|strong="G5219"\w* \w your|strong="G2962"\w* \w parents|strong="G1118"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w for|strong="G1063"\w* \w this|strong="G3778"\w* \w is|strong="G1510"\w* \w right|strong="G1342"\w*. +\v 2 “\w Honor|strong="G5091"\w* \w your|strong="G5091"\w* \w father|strong="G3962"\w* \w and|strong="G2532"\w* \w mother|strong="G3384"\w*,” \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w first|strong="G4413"\w* \w commandment|strong="G1785"\w* \w with|strong="G1722"\w* \w a|strong="G2532"\w* \w promise|strong="G1860"\w*: +\v 3 “\w that|strong="G2443"\w* \w it|strong="G2532"\w* \w may|strong="G2532"\w* \w be|strong="G1096"\w* \w well|strong="G2532"\w* \w with|strong="G2532"\w* \w you|strong="G4771"\w*, \w and|strong="G2532"\w* \w you|strong="G4771"\w* \w may|strong="G2532"\w* \w live|strong="G2532"\w* \w long|strong="G3118"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*.”\x + \xo 6:3 \xt Deuteronomy 5:16\x* +\p +\v 4 \w You|strong="G5210"\w* \w fathers|strong="G3962"\w*, don’\w t|strong="G3588"\w* \w provoke|strong="G3949"\w* \w your|strong="G2962"\w* \w children|strong="G5043"\w* \w to|strong="G2532"\w* \w wrath|strong="G3949"\w*, \w but|strong="G2532"\w* \w nurture|strong="G3809"\w* \w them|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w discipline|strong="G3809"\w* \w and|strong="G2532"\w* \w instruction|strong="G3559"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\p +\v 5 \w Servants|strong="G1401"\w*, \w be|strong="G2532"\w* \w obedient|strong="G5219"\w* \w to|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w* \w are|strong="G3588"\w* \w your|strong="G2962"\w* \w masters|strong="G2962"\w*, \w with|strong="G3326"\w* \w fear|strong="G5401"\w* \w and|strong="G2532"\w* \w trembling|strong="G5156"\w*, \w in|strong="G1722"\w* singleness \w of|strong="G2532"\w* \w your|strong="G2962"\w* \w heart|strong="G2588"\w*, \w as|strong="G5613"\w* \w to|strong="G2532"\w* \w Christ|strong="G5547"\w*, +\v 6 \w not|strong="G3361"\w* \w in|strong="G2596"\w* \w the|strong="G1537"\w* \w way|strong="G2596"\w* \w of|strong="G1537"\w* \w service|strong="G3787"\w* only \w when|strong="G5613"\w* eyes \w are|strong="G3588"\w* \w on|strong="G1537"\w* \w you|strong="G4160"\w*, \w as|strong="G5613"\w* \w men|strong="G1401"\w* pleasers, \w but|strong="G3361"\w* \w as|strong="G5613"\w* \w servants|strong="G1401"\w* \w of|strong="G1537"\w* \w Christ|strong="G5547"\w*, \w doing|strong="G4160"\w* \w the|strong="G1537"\w* \w will|strong="G2307"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w* \w from|strong="G1537"\w* \w the|strong="G1537"\w* \w heart|strong="G5590"\w*, +\v 7 \w with|strong="G3326"\w* \w good|strong="G3756"\w* \w will|strong="G2532"\w* \w doing|strong="G2133"\w* \w service|strong="G1398"\w* \w as|strong="G5613"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w to|strong="G2532"\w* \w men|strong="G3588"\w*, +\v 8 \w knowing|strong="G1492"\w* \w that|strong="G3754"\w* \w whatever|strong="G1437"\w* \w good|strong="G1437"\w* \w thing|strong="G5100"\w* \w each|strong="G1538"\w* \w one|strong="G5100"\w* \w does|strong="G4160"\w*, \w he|strong="G3754"\w* \w will|strong="G2962"\w* \w receive|strong="G2865"\w* \w the|strong="G3754"\w* \w same|strong="G3778"\w* \w good|strong="G1437"\w* again \w from|strong="G3844"\w* \w the|strong="G3754"\w* \w Lord|strong="G2962"\w*, \w whether|strong="G1535"\w* \w he|strong="G3754"\w* \w is|strong="G3778"\w* bound \w or|strong="G1535"\w* \w free|strong="G1658"\w*. +\p +\v 9 \w You|strong="G5210"\w* \w masters|strong="G2962"\w*, \w do|strong="G4160"\w* \w the|strong="G1722"\w* \w same|strong="G2532"\w* \w things|strong="G3588"\w* \w to|strong="G4314"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w give|strong="G4160"\w* \w up|strong="G2532"\w* threatening, \w knowing|strong="G1492"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w both|strong="G2532"\w* \w their|strong="G1438"\w* \w Master|strong="G2962"\w* \w and|strong="G2532"\w* \w yours|strong="G4771"\w* \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w heaven|strong="G3772"\w*, \w and|strong="G2532"\w* \w there|strong="G2532"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* \w partiality|strong="G4382"\w* \w with|strong="G1722"\w* \w him|strong="G3588"\w*. +\p +\v 10 \w Finally|strong="G3064"\w*, \w be|strong="G2532"\w* \w strong|strong="G1743"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w strength|strong="G2479"\w* \w of|strong="G2532"\w* \w his|strong="G1722"\w* \w might|strong="G2479"\w*. +\v 11 \w Put|strong="G1746"\w* \w on|strong="G1746"\w* \w the|strong="G4314"\w* whole \w armor|strong="G3833"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w may|strong="G1410"\w* \w be|strong="G1410"\w* \w able|strong="G1410"\w* \w to|strong="G4314"\w* \w stand|strong="G2476"\w* \w against|strong="G4314"\w* \w the|strong="G4314"\w* \w wiles|strong="G3180"\w* \w of|strong="G2316"\w* \w the|strong="G4314"\w* \w devil|strong="G1228"\w*. +\v 12 \w For|strong="G3754"\w* \w our|strong="G2532"\w* wrestling \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w against|strong="G4314"\w* \w flesh|strong="G4561"\w* \w and|strong="G2532"\w* blood, \w but|strong="G2532"\w* \w against|strong="G4314"\w* \w the|strong="G1722"\w* principalities, \w against|strong="G4314"\w* \w the|strong="G1722"\w* \w powers|strong="G1849"\w*, \w against|strong="G4314"\w* \w the|strong="G1722"\w* \w world|strong="G2888"\w*’s \w rulers|strong="G2888"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w darkness|strong="G4655"\w* \w of|strong="G2532"\w* \w this|strong="G3778"\w* age, \w and|strong="G2532"\w* \w against|strong="G4314"\w* \w the|strong="G1722"\w* \w spiritual|strong="G4152"\w* \w forces|strong="G4189"\w* \w of|strong="G2532"\w* \w wickedness|strong="G4189"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w heavenly|strong="G2032"\w* places. +\v 13 \w Therefore|strong="G1223"\w* \w put|strong="G2476"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w whole|strong="G1722"\w* \w armor|strong="G3833"\w* \w of|strong="G2250"\w* \w God|strong="G2316"\w*, \w that|strong="G2443"\w* \w you|strong="G1722"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* \w able|strong="G1410"\w* \w to|strong="G2443"\w* withstand \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w evil|strong="G4190"\w* \w day|strong="G2250"\w*, \w and|strong="G2532"\w* \w having|strong="G2532"\w* \w done|strong="G2716"\w* \w all|strong="G2532"\w*, \w to|strong="G2443"\w* \w stand|strong="G2476"\w*. +\v 14 \w Stand|strong="G2476"\w* \w therefore|strong="G3767"\w*, \w having|strong="G2532"\w* \w the|strong="G1722"\w* utility \w belt|strong="G4024"\w* \w of|strong="G2532"\w* truth buckled around \w your|strong="G2532"\w* \w waist|strong="G3751"\w*, \w and|strong="G2532"\w* \w having|strong="G2532"\w* \w put|strong="G1746"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w breastplate|strong="G2382"\w* \w of|strong="G2532"\w* \w righteousness|strong="G1343"\w*, +\v 15 \w and|strong="G2532"\w* \w having|strong="G2532"\w* fitted \w your|strong="G2532"\w* \w feet|strong="G4228"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w preparation|strong="G2091"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w of|strong="G2532"\w* \w peace|strong="G1515"\w*, +\v 16 above \w all|strong="G3956"\w*, taking \w up|strong="G1722"\w* \w the|strong="G1722"\w* \w shield|strong="G2375"\w* \w of|strong="G1722"\w* \w faith|strong="G4102"\w*, \w with|strong="G1722"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w will|strong="G3739"\w* \w be|strong="G1410"\w* \w able|strong="G1410"\w* \w to|strong="G1410"\w* \w quench|strong="G4570"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w fiery|strong="G4448"\w* darts \w of|strong="G1722"\w* \w the|strong="G1722"\w* \w evil|strong="G4190"\w* \w one|strong="G3739"\w*. +\v 17 \w And|strong="G2532"\w* \w take|strong="G1209"\w* \w the|strong="G2532"\w* \w helmet|strong="G4030"\w* \w of|strong="G4151"\w* \w salvation|strong="G4992"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w sword|strong="G3162"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w*, \w which|strong="G3739"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w word|strong="G4487"\w*\f + \fr 6:17 \ft from the Greek “ῥῆμα” (rhema), which means “spoken word”\f* \w of|strong="G4151"\w* \w God|strong="G2316"\w*; +\v 18 \w with|strong="G1722"\w* \w all|strong="G3956"\w* \w prayer|strong="G4335"\w* \w and|strong="G2532"\w* \w requests|strong="G1162"\w*, \w praying|strong="G4336"\w* \w at|strong="G1722"\w* \w all|strong="G3956"\w* \w times|strong="G2540"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w*, \w and|strong="G2532"\w* \w being|strong="G2532"\w* watchful \w to|strong="G1519"\w* \w this|strong="G3588"\w* \w end|strong="G1519"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w perseverance|strong="G4343"\w* \w and|strong="G2532"\w* \w requests|strong="G1162"\w* \w for|strong="G1519"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* saints. +\v 19 \w Pray|strong="G5228"\w* \w for|strong="G5228"\w* \w me|strong="G1325"\w*, \w that|strong="G2443"\w* \w utterance|strong="G3056"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* \w given|strong="G1325"\w* \w to|strong="G2443"\w* \w me|strong="G1325"\w* \w in|strong="G1722"\w* opening \w my|strong="G1722"\w* \w mouth|strong="G4750"\w*, \w to|strong="G2443"\w* \w make|strong="G1107"\w* \w known|strong="G1107"\w* \w with|strong="G1722"\w* \w boldness|strong="G3954"\w* \w the|strong="G1722"\w* \w mystery|strong="G3466"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w Good|strong="G3588"\w* \w News|strong="G3056"\w*, +\v 20 \w for|strong="G5228"\w* \w which|strong="G3739"\w* \w I|strong="G1473"\w* \w am|strong="G1473"\w* \w an|strong="G1722"\w* \w ambassador|strong="G4243"\w* \w in|strong="G1722"\w* \w chains|strong="G1210"\w*; \w that|strong="G2443"\w* \w in|strong="G1722"\w* \w it|strong="G3739"\w* \w I|strong="G1473"\w* \w may|strong="G2443"\w* \w speak|strong="G2980"\w* \w boldly|strong="G3955"\w*, \w as|strong="G5613"\w* \w I|strong="G1473"\w* \w ought|strong="G1163"\w* \w to|strong="G2443"\w* \w speak|strong="G2980"\w*. +\p +\v 21 \w But|strong="G1161"\w* \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w also|strong="G2532"\w* \w may|strong="G2532"\w* \w know|strong="G1492"\w* \w my|strong="G1722"\w* \w affairs|strong="G3588"\w*, \w how|strong="G5101"\w* \w I|strong="G1473"\w* \w am|strong="G1473"\w* \w doing|strong="G4238"\w*, \w Tychicus|strong="G5190"\w*, \w the|strong="G1722"\w* beloved brother \w and|strong="G2532"\w* \w faithful|strong="G4103"\w* \w servant|strong="G1249"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w will|strong="G5101"\w* \w make|strong="G1107"\w* \w known|strong="G1107"\w* \w to|strong="G2443"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*. +\v 22 \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w sent|strong="G3992"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w for|strong="G1519"\w* \w this|strong="G3778"\w* \w very|strong="G2532"\w* \w purpose|strong="G3739"\w*, \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w may|strong="G2532"\w* \w know|strong="G1097"\w* \w our|strong="G2532"\w* \w state|strong="G4012"\w* \w and|strong="G2532"\w* \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w may|strong="G2532"\w* \w comfort|strong="G3870"\w* \w your|strong="G2532"\w* \w hearts|strong="G2588"\w*. +\p +\v 23 \w Peace|strong="G1515"\w* \w be|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* brothers, \w and|strong="G2532"\w* love \w with|strong="G3326"\w* \w faith|strong="G4102"\w*, \w from|strong="G1515"\w* \w God|strong="G2316"\w* \w the|strong="G2532"\w* \w Father|strong="G3962"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\v 24 \w Grace|strong="G5485"\w* \w be|strong="G3956"\w* \w with|strong="G3326"\w* \w all|strong="G3956"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* love \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w with|strong="G3326"\w* incorruptible love. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/80-PHPeng-web.usfm b/bibles/eng-web_usfm/80-PHPeng-web.usfm new file mode 100644 index 0000000..8bc1c60 --- /dev/null +++ b/bibles/eng-web_usfm/80-PHPeng-web.usfm @@ -0,0 +1,139 @@ +\id PHP 50-PHP-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Philippians +\toc1 Paul’s Letter to the Philippians +\toc2 Philippians +\toc3 Php +\mt1 Paul’s Letter to the Philippians +\c 1 +\p +\v 1 \w Paul|strong="G3972"\w* \w and|strong="G2532"\w* \w Timothy|strong="G5095"\w*, \w servants|strong="G1401"\w* \w of|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*,\f + \fr 1:1 \ft “Christ” means “Anointed One”.\f* \w to|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* saints \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w at|strong="G1722"\w* \w Philippi|strong="G5375"\w*, \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w overseers|strong="G1985"\w*\f + \fr 1:1 \ft or, superintendents, or bishops\f* \w and|strong="G2532"\w* \w servants|strong="G1401"\w*:\f + \fr 1:1 \ft Or, deacons\f* +\v 2 \w Grace|strong="G5485"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w peace|strong="G1515"\w* \w from|strong="G1515"\w* \w God|strong="G2316"\w* \w our|strong="G2316"\w* \w Father|strong="G3962"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\p +\v 3 \w I|strong="G1473"\w* \w thank|strong="G2168"\w* \w my|strong="G3956"\w* \w God|strong="G2316"\w* whenever \w I|strong="G1473"\w* remember \w you|strong="G5210"\w*, +\v 4 \w always|strong="G3842"\w* \w in|strong="G1722"\w* \w every|strong="G3956"\w* \w request|strong="G1162"\w* \w of|strong="G1722"\w* \w mine|strong="G1473"\w* \w on|strong="G1722"\w* \w behalf|strong="G5228"\w* \w of|strong="G1722"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w*, \w making|strong="G4160"\w* \w my|strong="G1722"\w* \w requests|strong="G1162"\w* \w with|strong="G3326"\w* \w joy|strong="G5479"\w*, +\v 5 \w for|strong="G1519"\w* \w your|strong="G1909"\w* partnership\f + \fr 1:5 \ft The word translated “partnership” (κοινωνίᾳ) also means “fellowship” and “sharing”.\f* \w in|strong="G1519"\w* furtherance \w of|strong="G2250"\w* \w the|strong="G1519"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w from|strong="G3588"\w* \w the|strong="G1519"\w* \w first|strong="G4413"\w* \w day|strong="G2250"\w* \w until|strong="G1519"\w* \w now|strong="G3568"\w*; +\v 6 \w being|strong="G5547"\w* \w confident|strong="G3982"\w* \w of|strong="G2250"\w* \w this|strong="G3778"\w* \w very|strong="G3778"\w* \w thing|strong="G3778"\w*, \w that|strong="G3754"\w* \w he|strong="G3754"\w* \w who|strong="G3588"\w* \w began|strong="G1728"\w* \w a|strong="G1722"\w* \w good|strong="G3588"\w* \w work|strong="G2041"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w* \w will|strong="G3778"\w* \w complete|strong="G2005"\w* \w it|strong="G3754"\w* \w until|strong="G1722"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\v 7 \w It|strong="G2532"\w* \w is|strong="G1510"\w* \w even|strong="G2532"\w* \w right|strong="G1342"\w* \w for|strong="G5228"\w* \w me|strong="G1473"\w* \w to|strong="G2532"\w* \w think|strong="G5426"\w* \w this|strong="G3778"\w* \w way|strong="G1722"\w* \w on|strong="G1722"\w* \w behalf|strong="G5228"\w* \w of|strong="G1223"\w* \w all|strong="G3956"\w* \w of|strong="G1223"\w* \w you|strong="G5210"\w*, \w because|strong="G1223"\w* \w I|strong="G1473"\w* \w have|strong="G2192"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w my|strong="G1722"\w* \w heart|strong="G2588"\w*, \w because|strong="G1223"\w* \w both|strong="G2532"\w* \w in|strong="G1722"\w* \w my|strong="G1722"\w* \w bonds|strong="G1199"\w* \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* defense \w and|strong="G2532"\w* confirmation \w of|strong="G1223"\w* \w the|strong="G1722"\w* \w Good|strong="G3956"\w* \w News|strong="G2098"\w*, \w you|strong="G5210"\w* \w all|strong="G3956"\w* \w are|strong="G1510"\w* \w partakers|strong="G4791"\w* \w with|strong="G1722"\w* \w me|strong="G1473"\w* \w of|strong="G1223"\w* \w grace|strong="G5485"\w*. +\v 8 \w For|strong="G1063"\w* \w God|strong="G2316"\w* \w is|strong="G3588"\w* \w my|strong="G1722"\w* \w witness|strong="G3144"\w*, \w how|strong="G5613"\w* \w I|strong="G1473"\w* \w long|strong="G1971"\w* \w after|strong="G5613"\w* \w all|strong="G3956"\w* \w of|strong="G2316"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w tender|strong="G4698"\w* mercies \w of|strong="G2316"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*. +\p +\v 9 \w This|strong="G3778"\w* \w I|strong="G2532"\w* \w pray|strong="G4336"\w*, \w that|strong="G2443"\w* \w your|strong="G2532"\w* love \w may|strong="G2532"\w* \w abound|strong="G4052"\w* \w yet|strong="G2089"\w* \w more|strong="G3123"\w* \w and|strong="G2532"\w* \w more|strong="G3123"\w* \w in|strong="G1722"\w* \w knowledge|strong="G1922"\w* \w and|strong="G2532"\w* \w all|strong="G3956"\w* discernment, +\v 10 \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w may|strong="G2532"\w* \w approve|strong="G1381"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w that|strong="G2443"\w* \w are|strong="G1510"\w* \w excellent|strong="G1308"\w*, \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w may|strong="G2532"\w* \w be|strong="G1510"\w* \w sincere|strong="G1506"\w* \w and|strong="G2532"\w* \w without|strong="G2532"\w* offense \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* \w Christ|strong="G5547"\w*, +\v 11 \w being|strong="G2532"\w* \w filled|strong="G4137"\w* \w with|strong="G1223"\w* \w the|strong="G2532"\w* \w fruits|strong="G2590"\w* \w of|strong="G1223"\w* \w righteousness|strong="G1343"\w* \w which|strong="G3588"\w* \w are|strong="G3588"\w* \w through|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w and|strong="G2532"\w* \w praise|strong="G1868"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w*. +\p +\v 12 \w Now|strong="G1161"\w* \w I|strong="G1473"\w* \w desire|strong="G1014"\w* \w to|strong="G1519"\w* \w have|strong="G1473"\w* \w you|strong="G5210"\w* \w know|strong="G1097"\w*, brothers,\f + \fr 1:12 \ft The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”\f* \w that|strong="G3754"\w* \w the|strong="G1519"\w* \w things|strong="G3588"\w* \w which|strong="G3588"\w* \w happened|strong="G3588"\w* \w to|strong="G1519"\w* \w me|strong="G1473"\w* \w have|strong="G1473"\w* \w turned|strong="G2064"\w* \w out|strong="G2064"\w* \w rather|strong="G3123"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w progress|strong="G4297"\w* \w of|strong="G2098"\w* \w the|strong="G1519"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w*, +\v 13 \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w it|strong="G2532"\w* \w became|strong="G1096"\w* \w evident|strong="G5318"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w whole|strong="G3650"\w* \w palace|strong="G4232"\w*\f + \fr 1:13 \ft or, praetorian \f* \w guard|strong="G2532"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w rest|strong="G3062"\w*, \w that|strong="G3588"\w* \w my|strong="G1722"\w* \w bonds|strong="G1199"\w* \w are|strong="G3588"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*, +\v 14 \w and|strong="G2532"\w* \w that|strong="G3588"\w* \w most|strong="G4183"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* brothers \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w being|strong="G2532"\w* \w confident|strong="G3982"\w* \w through|strong="G1722"\w* \w my|strong="G1722"\w* \w bonds|strong="G1199"\w*, \w are|strong="G3588"\w* \w more|strong="G4119"\w* \w abundantly|strong="G4056"\w* \w bold|strong="G5111"\w* \w to|strong="G2532"\w* \w speak|strong="G2980"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w* \w without|strong="G2532"\w* fear. +\v 15 \w Some|strong="G5100"\w* \w indeed|strong="G2532"\w* \w preach|strong="G2784"\w* \w Christ|strong="G5547"\w* \w even|strong="G2532"\w* \w out|strong="G2532"\w* \w of|strong="G1223"\w* \w envy|strong="G5355"\w* \w and|strong="G2532"\w* \w strife|strong="G2054"\w*, \w and|strong="G2532"\w* \w some|strong="G5100"\w* \w also|strong="G2532"\w* \w out|strong="G2532"\w* \w of|strong="G1223"\w* \w good|strong="G2107"\w* \w will|strong="G2532"\w*. +\v 16 \w The|strong="G1519"\w* \w former|strong="G3588"\w* insincerely preach Christ \w from|strong="G1537"\w* selfish ambition, thinking \w that|strong="G3754"\w* \w they|strong="G3588"\w* add affliction \w to|strong="G1519"\w* \w my|strong="G3754"\w* chains; +\v 17 \w but|strong="G1161"\w* \w the|strong="G1537"\w* latter \w out|strong="G1537"\w* \w of|strong="G1537"\w* love, knowing \w that|strong="G3588"\w* \w I|strong="G1473"\w* \w am|strong="G1473"\w* appointed \w for|strong="G1161"\w* \w the|strong="G1537"\w* defense \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w Good|strong="G3756"\w* News. +\p +\v 18 \w What|strong="G5101"\w* \w does|strong="G5101"\w* \w it|strong="G2532"\w* matter? \w Only|strong="G2532"\w* \w that|strong="G3754"\w* \w in|strong="G1722"\w* \w every|strong="G3956"\w* \w way|strong="G5158"\w*, \w whether|strong="G1535"\w* \w in|strong="G1722"\w* \w pretense|strong="G4392"\w* \w or|strong="G1535"\w* \w in|strong="G1722"\w* truth, \w Christ|strong="G5547"\w* \w is|strong="G5101"\w* \w proclaimed|strong="G2605"\w*. \w I|strong="G2532"\w* \w rejoice|strong="G5463"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w*, \w yes|strong="G1063"\w*, \w and|strong="G2532"\w* \w will|strong="G5101"\w* \w rejoice|strong="G5463"\w*. +\v 19 \w For|strong="G1063"\w* \w I|strong="G1473"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w this|strong="G3778"\w* \w will|strong="G2532"\w* turn \w out|strong="G2532"\w* \w to|strong="G1519"\w* \w my|strong="G1473"\w* \w salvation|strong="G4991"\w* \w through|strong="G1223"\w* \w your|strong="G1223"\w* \w prayers|strong="G1162"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w supply|strong="G2024"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, +\v 20 \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w my|strong="G1722"\w* earnest expectation \w and|strong="G2532"\w* \w hope|strong="G1680"\w*, \w that|strong="G3754"\w* \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w in|strong="G1722"\w* \w no|strong="G3762"\w* \w way|strong="G2596"\w* \w be|strong="G2532"\w* disappointed, \w but|strong="G2532"\w* \w with|strong="G1722"\w* \w all|strong="G3956"\w* \w boldness|strong="G3954"\w*, \w as|strong="G5613"\w* \w always|strong="G3842"\w*, \w now|strong="G3568"\w* \w also|strong="G2532"\w* \w Christ|strong="G5547"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w magnified|strong="G3170"\w* \w in|strong="G1722"\w* \w my|strong="G1722"\w* \w body|strong="G4983"\w*, \w whether|strong="G1535"\w* \w by|strong="G1223"\w* \w life|strong="G2222"\w* \w or|strong="G1535"\w* \w by|strong="G1223"\w* \w death|strong="G2288"\w*. +\v 21 \w For|strong="G1063"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w* \w to|strong="G2532"\w* \w live|strong="G2198"\w* \w is|strong="G3588"\w* \w Christ|strong="G5547"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* die \w is|strong="G3588"\w* \w gain|strong="G2771"\w*. +\v 22 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w I|strong="G1473"\w* \w live|strong="G2198"\w* \w on|strong="G1722"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*, \w this|strong="G3778"\w* \w will|strong="G5101"\w* \w bring|strong="G2532"\w* \w fruit|strong="G2590"\w* \w from|strong="G2532"\w* \w my|strong="G1722"\w* \w work|strong="G2041"\w*; \w yet|strong="G2532"\w* \w I|strong="G1473"\w* don’\w t|strong="G3588"\w* \w know|strong="G1722"\w* \w what|strong="G5101"\w* \w I|strong="G1473"\w* \w will|strong="G5101"\w* choose. +\v 23 \w But|strong="G1161"\w* \w I|strong="G2532"\w* \w am|strong="G1510"\w* \w hard|strong="G4183"\w* \w pressed|strong="G4912"\w* \w between|strong="G2532"\w* \w the|strong="G2532"\w* \w two|strong="G1417"\w*, \w having|strong="G2192"\w* \w the|strong="G2532"\w* \w desire|strong="G1939"\w* \w to|strong="G1519"\w* depart \w and|strong="G2532"\w* \w be|strong="G1510"\w* \w with|strong="G4862"\w* \w Christ|strong="G5547"\w*, \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w far|strong="G3123"\w* \w better|strong="G2909"\w*. +\v 24 \w Yet|strong="G1161"\w* \w to|strong="G1722"\w* \w remain|strong="G1961"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w* \w is|strong="G3588"\w* \w more|strong="G1161"\w* needful \w for|strong="G1223"\w* \w your|strong="G1223"\w* \w sake|strong="G1223"\w*. +\v 25 \w Having|strong="G2532"\w* \w this|strong="G3778"\w* \w confidence|strong="G3982"\w*, \w I|strong="G2532"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w I|strong="G2532"\w* \w will|strong="G2532"\w* \w remain|strong="G3306"\w*, yes, \w and|strong="G2532"\w* \w remain|strong="G3306"\w* \w with|strong="G2532"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w* \w for|strong="G3754"\w* \w your|strong="G2532"\w* \w progress|strong="G4297"\w* \w and|strong="G2532"\w* \w joy|strong="G5479"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w faith|strong="G4102"\w*, +\v 26 \w that|strong="G2443"\w* \w your|strong="G1223"\w* \w boasting|strong="G2745"\w*\f + \fr 1:26 \ft or, rejoicing\f* \w may|strong="G2443"\w* \w abound|strong="G4052"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w in|strong="G1722"\w* \w me|strong="G1473"\w* \w through|strong="G1223"\w* \w my|strong="G1699"\w* \w presence|strong="G3952"\w* \w with|strong="G1722"\w* \w you|strong="G5210"\w* \w again|strong="G3825"\w*. +\p +\v 27 \w Only|strong="G3440"\w* \w let|strong="G2443"\w* \w your|strong="G2532"\w* \w way|strong="G1722"\w* \w of|strong="G4012"\w* \w life|strong="G5590"\w* \w be|strong="G2532"\w* worthy \w of|strong="G4012"\w* \w the|strong="G1722"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w of|strong="G4012"\w* \w Christ|strong="G5547"\w*, \w that|strong="G3754"\w* \w whether|strong="G1535"\w* \w I|strong="G2532"\w* \w come|strong="G2064"\w* \w and|strong="G2532"\w* \w see|strong="G3708"\w* \w you|strong="G5210"\w* \w or|strong="G1535"\w* \w am|strong="G2532"\w* absent, \w I|strong="G2532"\w* \w may|strong="G2532"\w* hear \w of|strong="G4012"\w* \w your|strong="G2532"\w* \w state|strong="G4012"\w*, \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w stand|strong="G4739"\w* \w firm|strong="G4739"\w* \w in|strong="G1722"\w* \w one|strong="G1520"\w* \w spirit|strong="G4151"\w*, \w with|strong="G1722"\w* \w one|strong="G1520"\w* \w soul|strong="G5590"\w* \w striving|strong="G4866"\w* \w for|strong="G3754"\w* \w the|strong="G1722"\w* \w faith|strong="G4102"\w* \w of|strong="G4012"\w* \w the|strong="G1722"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w*; +\v 28 \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w nothing|strong="G3367"\w* frightened \w by|strong="G1722"\w* \w the|strong="G1722"\w* adversaries, \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w for|strong="G1161"\w* \w them|strong="G3588"\w* \w a|strong="G2532"\w* \w proof|strong="G1732"\w* \w of|strong="G5259"\w* destruction, \w but|strong="G1161"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w of|strong="G5259"\w* \w salvation|strong="G4991"\w*, \w and|strong="G2532"\w* \w that|strong="G3588"\w* \w from|strong="G2532"\w* \w God|strong="G2316"\w*. +\v 29 \w Because|strong="G3754"\w* \w it|strong="G2532"\w* \w has|strong="G5547"\w* \w been|strong="G2532"\w* \w granted|strong="G5483"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w on|strong="G1519"\w* \w behalf|strong="G5228"\w* \w of|strong="G2532"\w* \w Christ|strong="G5547"\w*, \w not|strong="G3756"\w* \w only|strong="G3440"\w* \w to|strong="G1519"\w* \w believe|strong="G4100"\w* \w in|strong="G1519"\w* \w him|strong="G3588"\w*, \w but|strong="G2532"\w* \w also|strong="G2532"\w* \w to|strong="G1519"\w* \w suffer|strong="G3958"\w* \w on|strong="G1519"\w* \w his|strong="G1519"\w* \w behalf|strong="G5228"\w*, +\v 30 \w having|strong="G2192"\w* \w the|strong="G1722"\w* \w same|strong="G2532"\w* conflict \w which|strong="G3588"\w* \w you|strong="G1722"\w* \w saw|strong="G3708"\w* \w in|strong="G1722"\w* \w me|strong="G1473"\w* \w and|strong="G2532"\w* \w now|strong="G3568"\w* hear \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w me|strong="G1473"\w*. +\c 2 +\p +\v 1 \w If|strong="G1487"\w* \w therefore|strong="G3767"\w* \w there|strong="G2532"\w* \w is|strong="G5547"\w* \w any|strong="G5100"\w* \w exhortation|strong="G3874"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*, \w if|strong="G1487"\w* \w any|strong="G5100"\w* \w consolation|strong="G3874"\w* \w of|strong="G4151"\w* love, \w if|strong="G1487"\w* \w any|strong="G5100"\w* \w fellowship|strong="G2842"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w*, \w if|strong="G1487"\w* \w any|strong="G5100"\w* \w tender|strong="G4698"\w* \w mercies|strong="G3628"\w* \w and|strong="G2532"\w* \w compassion|strong="G3628"\w*, +\v 2 \w make|strong="G4137"\w* \w my|strong="G1473"\w* \w joy|strong="G5479"\w* \w full|strong="G4137"\w* \w by|strong="G1520"\w* \w being|strong="G2192"\w* like-minded, \w having|strong="G2192"\w* \w the|strong="G3588"\w* same love, \w being|strong="G2192"\w* \w of|strong="G1520"\w* \w one|strong="G1520"\w* \w accord|strong="G4861"\w*, \w of|strong="G1520"\w* \w one|strong="G1520"\w* \w mind|strong="G5426"\w*; +\v 3 doing \w nothing|strong="G3367"\w* \w through|strong="G2596"\w* rivalry \w or|strong="G3366"\w* \w through|strong="G2596"\w* \w conceit|strong="G2754"\w*, \w but|strong="G3588"\w* \w in|strong="G2596"\w* \w humility|strong="G5012"\w*, \w each|strong="G2596"\w* counting \w others|strong="G3588"\w* \w better|strong="G5242"\w* \w than|strong="G5242"\w* \w himself|strong="G1438"\w*; +\v 4 \w each|strong="G1538"\w* \w of|strong="G2532"\w* \w you|strong="G1438"\w* \w not|strong="G3361"\w* \w just|strong="G2532"\w* \w looking|strong="G2532"\w* \w to|strong="G2532"\w* \w his|strong="G1438"\w* \w own|strong="G1438"\w* \w things|strong="G3588"\w*, \w but|strong="G2532"\w* \w each|strong="G1538"\w* \w of|strong="G2532"\w* \w you|strong="G1438"\w* \w also|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w of|strong="G2532"\w* \w others|strong="G2087"\w*. +\p +\v 5 \w Have|strong="G2532"\w* \w this|strong="G3778"\w* \w in|strong="G1722"\w* \w your|strong="G2532"\w* \w mind|strong="G5426"\w*, \w which|strong="G3739"\w* \w was|strong="G2424"\w* \w also|strong="G2532"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*, +\v 6 \w who|strong="G3739"\w*, existing \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w form|strong="G3444"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, didn’\w t|strong="G3588"\w* \w consider|strong="G2233"\w* \w equality|strong="G2470"\w* \w with|strong="G1722"\w* \w God|strong="G2316"\w* \w a|strong="G1722"\w* \w thing|strong="G3739"\w* \w to|strong="G1722"\w* \w be|strong="G1510"\w* grasped, +\v 7 \w but|strong="G2532"\w* \w emptied|strong="G2758"\w* \w himself|strong="G1438"\w*, \w taking|strong="G2983"\w* \w the|strong="G1722"\w* \w form|strong="G3444"\w* \w of|strong="G2532"\w* \w a|strong="G1096"\w* \w servant|strong="G1401"\w*, \w being|strong="G1096"\w* \w made|strong="G1096"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w likeness|strong="G3667"\w* \w of|strong="G2532"\w* \w men|strong="G1401"\w*. +\v 8 \w And|strong="G1161"\w* \w being|strong="G1096"\w* \w found|strong="G1096"\w* \w in|strong="G1096"\w* human form, \w he|strong="G1161"\w* \w humbled|strong="G5013"\w* \w himself|strong="G1438"\w*, \w becoming|strong="G1096"\w* \w obedient|strong="G5255"\w* \w to|strong="G1096"\w* \w the|strong="G1161"\w* \w point|strong="G3360"\w* \w of|strong="G4716"\w* \w death|strong="G2288"\w*, \w yes|strong="G1161"\w*, \w the|strong="G1161"\w* \w death|strong="G2288"\w* \w of|strong="G4716"\w* \w the|strong="G1161"\w* \w cross|strong="G4716"\w*. +\v 9 \w Therefore|strong="G1352"\w* \w God|strong="G2316"\w* \w also|strong="G2532"\w* \w highly|strong="G5251"\w* \w exalted|strong="G5251"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w gave|strong="G2532"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w the|strong="G2532"\w* \w name|strong="G3686"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w above|strong="G5228"\w* \w every|strong="G3956"\w* \w name|strong="G3686"\w*, +\v 10 \w that|strong="G2443"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w every|strong="G3956"\w* \w knee|strong="G1119"\w* \w should|strong="G3588"\w* \w bow|strong="G2578"\w*, \w of|strong="G2532"\w* \w those|strong="G3588"\w* \w in|strong="G1722"\w* \w heaven|strong="G2032"\w*, \w those|strong="G3588"\w* \w on|strong="G1722"\w* \w earth|strong="G2709"\w*, \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w under|strong="G1722"\w* \w the|strong="G1722"\w* \w earth|strong="G2709"\w*, +\v 11 \w and|strong="G2532"\w* \w that|strong="G3754"\w* \w every|strong="G3956"\w* \w tongue|strong="G1100"\w* \w should|strong="G2316"\w* \w confess|strong="G1843"\w* \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w is|strong="G2316"\w* \w Lord|strong="G2962"\w*, \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w the|strong="G2532"\w* \w Father|strong="G3962"\w*. +\p +\v 12 \w So|strong="G2532"\w* \w then|strong="G2532"\w*, \w my|strong="G1722"\w* beloved, \w even|strong="G2532"\w* \w as|strong="G5613"\w* \w you|strong="G1722"\w* \w have|strong="G2532"\w* \w always|strong="G3842"\w* \w obeyed|strong="G5219"\w*, \w not|strong="G3361"\w* \w only|strong="G3440"\w* \w in|strong="G1722"\w* \w my|strong="G1722"\w* \w presence|strong="G3952"\w*, \w but|strong="G2532"\w* \w now|strong="G3568"\w* \w much|strong="G4183"\w* \w more|strong="G3123"\w* \w in|strong="G1722"\w* \w my|strong="G1722"\w* absence, \w work|strong="G2716"\w* \w out|strong="G2532"\w* \w your|strong="G2532"\w* \w own|strong="G1438"\w* \w salvation|strong="G4991"\w* \w with|strong="G3326"\w* \w fear|strong="G5401"\w* \w and|strong="G2532"\w* \w trembling|strong="G5156"\w*. +\v 13 \w For|strong="G1063"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w God|strong="G2316"\w* \w who|strong="G3588"\w* \w works|strong="G1754"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w* \w both|strong="G2532"\w* \w to|strong="G2532"\w* \w will|strong="G2309"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w work|strong="G1754"\w* \w for|strong="G1063"\w* \w his|strong="G1722"\w* \w good|strong="G2107"\w* \w pleasure|strong="G2107"\w*. +\p +\v 14 \w Do|strong="G4160"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w without|strong="G5565"\w* \w complaining|strong="G1112"\w* \w and|strong="G2532"\w* \w arguing|strong="G1261"\w*, +\v 15 \w that|strong="G2443"\w* \w you|strong="G3739"\w* \w may|strong="G2532"\w* \w become|strong="G1096"\w* blameless \w and|strong="G2532"\w* harmless, \w children|strong="G5043"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w without|strong="G2532"\w* defect \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w middle|strong="G3319"\w* \w of|strong="G2316"\w* \w a|strong="G1096"\w* \w crooked|strong="G4646"\w* \w and|strong="G2532"\w* \w perverse|strong="G1294"\w* \w generation|strong="G1074"\w*, \w among|strong="G1722"\w* \w whom|strong="G3739"\w* \w you|strong="G3739"\w* \w are|strong="G3739"\w* \w seen|strong="G5316"\w* \w as|strong="G5613"\w* \w lights|strong="G5458"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*, +\v 16 \w holding|strong="G1907"\w* \w up|strong="G1519"\w* \w the|strong="G1519"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w life|strong="G2222"\w*, \w that|strong="G3754"\w* \w I|strong="G1473"\w* \w may|strong="G5547"\w* \w have|strong="G1473"\w* \w something|strong="G2745"\w* \w to|strong="G1519"\w* \w boast|strong="G2745"\w* \w in|strong="G1519"\w* \w the|strong="G1519"\w* \w day|strong="G2250"\w* \w of|strong="G3056"\w* \w Christ|strong="G5547"\w* \w that|strong="G3754"\w* \w I|strong="G1473"\w* didn’t \w run|strong="G5143"\w* \w in|strong="G1519"\w* \w vain|strong="G2756"\w* \w nor|strong="G3761"\w* \w labor|strong="G2872"\w* \w in|strong="G1519"\w* \w vain|strong="G2756"\w*. +\v 17 Yes, \w and|strong="G2532"\w* \w if|strong="G1487"\w* \w I|strong="G2532"\w* \w am|strong="G2532"\w* \w poured|strong="G2532"\w* \w out|strong="G2532"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w sacrifice|strong="G2378"\w* \w and|strong="G2532"\w* \w service|strong="G3009"\w* \w of|strong="G2532"\w* \w your|strong="G2532"\w* \w faith|strong="G4102"\w*, \w I|strong="G2532"\w* \w am|strong="G2532"\w* \w glad|strong="G5463"\w* \w and|strong="G2532"\w* \w rejoice|strong="G5463"\w* \w with|strong="G2532"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w*. +\v 18 \w In|strong="G2532"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w* way, \w you|strong="G5210"\w* \w also|strong="G2532"\w* \w should|strong="G3588"\w* \w be|strong="G2532"\w* \w glad|strong="G5463"\w* \w and|strong="G2532"\w* \w rejoice|strong="G5463"\w* \w with|strong="G2532"\w* \w me|strong="G1473"\w*. +\p +\v 19 \w But|strong="G1161"\w* \w I|strong="G2504"\w* \w hope|strong="G1679"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w to|strong="G2443"\w* \w send|strong="G3992"\w* \w Timothy|strong="G5095"\w* \w to|strong="G2443"\w* \w you|strong="G5210"\w* \w soon|strong="G5030"\w*, \w that|strong="G2443"\w* \w I|strong="G2504"\w* \w also|strong="G2504"\w* \w may|strong="G2443"\w* \w be|strong="G2443"\w* cheered \w up|strong="G1722"\w* \w when|strong="G1161"\w* \w I|strong="G2504"\w* \w know|strong="G1097"\w* \w how|strong="G1161"\w* \w you|strong="G5210"\w* \w are|strong="G3588"\w* doing. +\v 20 \w For|strong="G1063"\w* \w I|strong="G1063"\w* \w have|strong="G2192"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w* else like-minded, \w who|strong="G3588"\w* \w will|strong="G3748"\w* truly \w care|strong="G3309"\w* \w about|strong="G4012"\w* \w you|strong="G5210"\w*. +\v 21 \w For|strong="G1063"\w* \w they|strong="G3588"\w* \w all|strong="G3956"\w* \w seek|strong="G2212"\w* \w their|strong="G1438"\w* \w own|strong="G1438"\w*, \w not|strong="G3756"\w* \w the|strong="G3956"\w* \w things|strong="G3956"\w* \w of|strong="G3956"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\v 22 \w But|strong="G1161"\w* \w you|strong="G3754"\w* \w know|strong="G1097"\w* \w that|strong="G3754"\w* \w he|strong="G1161"\w* \w has|strong="G3962"\w* proved \w himself|strong="G4862"\w*. \w As|strong="G5613"\w* \w a|strong="G5613"\w* \w child|strong="G5043"\w* \w serves|strong="G1398"\w* \w a|strong="G5613"\w* \w father|strong="G3962"\w*, \w so|strong="G1161"\w* \w he|strong="G1161"\w* \w served|strong="G1398"\w* \w with|strong="G4862"\w* \w me|strong="G1473"\w* \w in|strong="G1519"\w* furtherance \w of|strong="G3962"\w* \w the|strong="G1519"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w*. +\v 23 \w Therefore|strong="G3767"\w* \w I|strong="G1473"\w* \w hope|strong="G1679"\w* \w to|strong="G1679"\w* \w send|strong="G3992"\w* \w him|strong="G3588"\w* \w at|strong="G4012"\w* \w once|strong="G1824"\w*, \w as|strong="G5613"\w* \w soon|strong="G5613"\w* \w as|strong="G5613"\w* \w I|strong="G1473"\w* see \w how|strong="G5613"\w* \w it|strong="G3778"\w* \w will|strong="G1473"\w* go \w with|strong="G4012"\w* \w me|strong="G1473"\w*. +\v 24 \w But|strong="G1161"\w* \w I|strong="G2532"\w* \w trust|strong="G3982"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w that|strong="G3754"\w* \w I|strong="G2532"\w* myself \w also|strong="G2532"\w* \w will|strong="G2532"\w* \w come|strong="G2064"\w* \w shortly|strong="G5030"\w*. +\p +\v 25 \w But|strong="G1161"\w* \w I|strong="G1473"\w* \w thought|strong="G2233"\w* \w it|strong="G2532"\w* \w necessary|strong="G5532"\w* \w to|strong="G4314"\w* \w send|strong="G3992"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w* \w Epaphroditus|strong="G1891"\w*, \w my|strong="G1473"\w* brother, \w fellow|strong="G4904"\w* \w worker|strong="G4904"\w*, \w fellow|strong="G4904"\w* \w soldier|strong="G4961"\w*, \w and|strong="G2532"\w* \w your|strong="G2532"\w* apostle \w and|strong="G2532"\w* \w servant|strong="G3588"\w* \w of|strong="G2532"\w* \w my|strong="G1473"\w* \w need|strong="G5532"\w*, +\v 26 \w since|strong="G3754"\w* \w he|strong="G2532"\w* \w longed|strong="G2532"\w* \w for|strong="G3754"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w*, \w and|strong="G2532"\w* \w was|strong="G1510"\w* \w very|strong="G2532"\w* troubled \w because|strong="G3754"\w* \w you|strong="G5210"\w* \w had|strong="G2532"\w* heard \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w sick|strong="G3956"\w*. +\v 27 \w For|strong="G1063"\w* \w indeed|strong="G2532"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* sick nearly \w to|strong="G2443"\w* \w death|strong="G2288"\w*, \w but|strong="G1161"\w* \w God|strong="G2316"\w* \w had|strong="G2192"\w* \w mercy|strong="G1653"\w* \w on|strong="G1909"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w on|strong="G1909"\w* \w him|strong="G3588"\w* \w only|strong="G3441"\w*, \w but|strong="G1161"\w* \w on|strong="G1909"\w* \w me|strong="G1473"\w* \w also|strong="G2532"\w*, \w that|strong="G2443"\w* \w I|strong="G1473"\w* \w might|strong="G2532"\w* \w not|strong="G3756"\w* \w have|strong="G2192"\w* \w sorrow|strong="G3077"\w* \w on|strong="G1909"\w* \w sorrow|strong="G3077"\w*. +\v 28 \w I|strong="G2504"\w* \w have|strong="G1510"\w* \w sent|strong="G3992"\w* \w him|strong="G3708"\w* \w therefore|strong="G3767"\w* \w the|strong="G3767"\w* \w more|strong="G3825"\w* \w diligently|strong="G4709"\w*, \w that|strong="G2443"\w* \w when|strong="G3767"\w* \w you|strong="G3708"\w* \w see|strong="G3708"\w* \w him|strong="G3708"\w* \w again|strong="G3825"\w*, \w you|strong="G3708"\w* \w may|strong="G2443"\w* \w rejoice|strong="G5463"\w*, \w and|strong="G3767"\w* \w that|strong="G2443"\w* \w I|strong="G2504"\w* \w may|strong="G2443"\w* \w be|strong="G1510"\w* \w the|strong="G3767"\w* less sorrowful. +\v 29 \w Receive|strong="G4327"\w* \w him|strong="G3588"\w* \w therefore|strong="G3767"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w with|strong="G3326"\w* \w all|strong="G3956"\w* \w joy|strong="G5479"\w*, \w and|strong="G2532"\w* \w hold|strong="G2192"\w* \w such|strong="G5108"\w* \w people|strong="G3956"\w* \w in|strong="G1722"\w* \w honor|strong="G1784"\w*, +\v 30 \w because|strong="G3754"\w* \w for|strong="G3754"\w* \w the|strong="G1223"\w* \w work|strong="G2041"\w* \w of|strong="G1223"\w* \w Christ|strong="G5547"\w* \w he|strong="G3754"\w* \w came|strong="G3588"\w* \w near|strong="G1448"\w* \w to|strong="G4314"\w* \w death|strong="G2288"\w*, risking \w his|strong="G1223"\w* \w life|strong="G5590"\w* \w to|strong="G4314"\w* supply \w that|strong="G3754"\w* \w which|strong="G3588"\w* \w was|strong="G3588"\w* \w lacking|strong="G5303"\w* \w in|strong="G1223"\w* \w your|strong="G1223"\w* \w service|strong="G3009"\w* \w toward|strong="G4314"\w* \w me|strong="G1473"\w*. +\c 3 +\p +\v 1 \w Finally|strong="G3063"\w*, \w my|strong="G1722"\w* brothers, \w rejoice|strong="G5463"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*! \w To|strong="G1722"\w* \w write|strong="G1125"\w* \w the|strong="G1722"\w* same \w things|strong="G3588"\w* \w to|strong="G1722"\w* \w you|strong="G5210"\w*, \w to|strong="G1722"\w* \w me|strong="G1473"\w* \w indeed|strong="G3303"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* tiresome, \w but|strong="G1161"\w* \w for|strong="G1161"\w* \w you|strong="G5210"\w* \w it|strong="G1161"\w* \w is|strong="G3588"\w* \w safe|strong="G1722"\w*. +\p +\v 2 Beware \w of|strong="G3588"\w* \w the|strong="G3588"\w* \w dogs|strong="G2965"\w*; beware \w of|strong="G3588"\w* \w the|strong="G3588"\w* \w evil|strong="G2556"\w* \w workers|strong="G2040"\w*; beware \w of|strong="G3588"\w* \w the|strong="G3588"\w* \w false|strong="G2699"\w* \w circumcision|strong="G2699"\w*. +\v 3 \w For|strong="G1063"\w* \w we|strong="G2249"\w* \w are|strong="G1510"\w* \w the|strong="G1722"\w* \w circumcision|strong="G4061"\w*, \w who|strong="G3588"\w* \w worship|strong="G3000"\w* \w God|strong="G2316"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w*, \w and|strong="G2532"\w* \w rejoice|strong="G2744"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*, \w and|strong="G2532"\w* \w have|strong="G2532"\w* \w no|strong="G3756"\w* \w confidence|strong="G3982"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*; +\v 4 \w though|strong="G1487"\w* \w I|strong="G1473"\w* \w myself|strong="G1473"\w* \w might|strong="G2532"\w* \w have|strong="G2192"\w* \w confidence|strong="G4006"\w* \w even|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*. \w If|strong="G1487"\w* \w any|strong="G5100"\w* \w other|strong="G5100"\w* \w man|strong="G5100"\w* \w thinks|strong="G1380"\w* \w that|strong="G2532"\w* \w he|strong="G2532"\w* \w has|strong="G2192"\w* \w confidence|strong="G4006"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*, \w I|strong="G1473"\w* \w yet|strong="G2532"\w* \w more|strong="G3123"\w*: +\v 5 \w circumcised|strong="G4061"\w* \w the|strong="G1537"\w* \w eighth|strong="G3637"\w* \w day|strong="G3637"\w*, \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w stock|strong="G1085"\w* \w of|strong="G1537"\w* \w Israel|strong="G2474"\w*, \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w tribe|strong="G5443"\w* \w of|strong="G1537"\w* Benjamin, \w a|strong="G1537"\w* \w Hebrew|strong="G1445"\w* \w of|strong="G1537"\w* \w Hebrews|strong="G1445"\w*; \w concerning|strong="G2596"\w* \w the|strong="G1537"\w* \w law|strong="G3551"\w*, \w a|strong="G1537"\w* \w Pharisee|strong="G5330"\w*; +\v 6 \w concerning|strong="G2596"\w* \w zeal|strong="G2205"\w*, \w persecuting|strong="G1377"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w*; \w concerning|strong="G2596"\w* \w the|strong="G1722"\w* \w righteousness|strong="G1343"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w*, \w found|strong="G1096"\w* blameless. +\p +\v 7 However, \w I|strong="G1473"\w* \w consider|strong="G2233"\w* \w those|strong="G3588"\w* \w things|strong="G3778"\w* \w that|strong="G3588"\w* \w were|strong="G1510"\w* \w gain|strong="G2771"\w* \w to|strong="G3778"\w* \w me|strong="G1473"\w* \w as|strong="G2233"\w* \w a|strong="G1510"\w* \w loss|strong="G2209"\w* \w for|strong="G1223"\w* \w Christ|strong="G5547"\w*. +\v 8 Yes most \w certainly|strong="G2532"\w*, \w and|strong="G2532"\w* \w I|strong="G1473"\w* \w count|strong="G2233"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w to|strong="G2443"\w* \w be|strong="G1510"\w* \w a|strong="G2532"\w* \w loss|strong="G2209"\w* \w for|strong="G1223"\w* \w the|strong="G2532"\w* \w excellency|strong="G5242"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w knowledge|strong="G1108"\w* \w of|strong="G1223"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*, \w my|strong="G3956"\w* \w Lord|strong="G2962"\w*, \w for|strong="G1223"\w* \w whom|strong="G3739"\w* \w I|strong="G1473"\w* \w suffered|strong="G2210"\w* \w the|strong="G2532"\w* \w loss|strong="G2209"\w* \w of|strong="G1223"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w and|strong="G2532"\w* \w count|strong="G2233"\w* \w them|strong="G3588"\w* \w nothing|strong="G3956"\w* \w but|strong="G2532"\w* refuse, \w that|strong="G2443"\w* \w I|strong="G1473"\w* \w may|strong="G2532"\w* \w gain|strong="G2770"\w* \w Christ|strong="G5547"\w* +\v 9 \w and|strong="G2532"\w* \w be|strong="G2532"\w* \w found|strong="G2147"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*, \w not|strong="G3361"\w* \w having|strong="G2192"\w* \w a|strong="G2192"\w* \w righteousness|strong="G1343"\w* \w of|strong="G1537"\w* \w my|strong="G1699"\w* \w own|strong="G1699"\w*, \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w*, \w but|strong="G2532"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w through|strong="G1223"\w* \w faith|strong="G4102"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*, \w the|strong="G1722"\w* \w righteousness|strong="G1343"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w from|strong="G1537"\w* \w God|strong="G2316"\w* \w by|strong="G1223"\w* \w faith|strong="G4102"\w*, +\v 10 \w that|strong="G3588"\w* \w I|strong="G2532"\w* \w may|strong="G2532"\w* \w know|strong="G1097"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w power|strong="G1411"\w* \w of|strong="G2532"\w* \w his|strong="G2532"\w* resurrection, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w fellowship|strong="G2842"\w* \w of|strong="G2532"\w* \w his|strong="G2532"\w* \w sufferings|strong="G3804"\w*, becoming conformed \w to|strong="G2532"\w* \w his|strong="G2532"\w* \w death|strong="G2288"\w*, +\v 11 \w if|strong="G1487"\w* \w by|strong="G1537"\w* \w any|strong="G1487"\w* \w means|strong="G1513"\w* \w I|strong="G1487"\w* \w may|strong="G1487"\w* \w attain|strong="G2658"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w resurrection|strong="G1815"\w* \w from|strong="G1537"\w* \w the|strong="G1519"\w* \w dead|strong="G3498"\w*. +\v 12 \w Not|strong="G3756"\w* \w that|strong="G3754"\w* \w I|strong="G3739"\w* \w have|strong="G2532"\w* \w already|strong="G2235"\w* \w obtained|strong="G2983"\w*, \w or|strong="G2228"\w* \w am|strong="G2532"\w* \w already|strong="G2235"\w* \w made|strong="G5048"\w* \w perfect|strong="G5048"\w*; \w but|strong="G1161"\w* \w I|strong="G3739"\w* \w press|strong="G1377"\w* \w on|strong="G1909"\w*, \w that|strong="G3754"\w* \w I|strong="G3739"\w* \w may|strong="G2532"\w* \w take|strong="G2983"\w* \w hold|strong="G2638"\w* \w of|strong="G5259"\w* \w that|strong="G3754"\w* \w for|strong="G3754"\w* \w which|strong="G3739"\w* \w also|strong="G2532"\w* \w I|strong="G3739"\w* \w was|strong="G2424"\w* \w taken|strong="G2983"\w* \w hold|strong="G2638"\w* \w of|strong="G5259"\w* \w by|strong="G5259"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*. +\p +\v 13 Brothers, \w I|strong="G1473"\w* don’t \w regard|strong="G3049"\w* \w myself|strong="G1683"\w* \w as|strong="G1161"\w* \w yet|strong="G1161"\w* having \w taken|strong="G2638"\w* \w hold|strong="G2638"\w*, \w but|strong="G1161"\w* \w one|strong="G1520"\w* \w thing|strong="G1520"\w* \w I|strong="G1473"\w* \w do|strong="G1950"\w*: \w forgetting|strong="G1950"\w* \w the|strong="G1161"\w* things which \w are|strong="G1473"\w* \w behind|strong="G3694"\w* \w and|strong="G1161"\w* stretching \w forward|strong="G1901"\w* \w to|strong="G1161"\w* \w the|strong="G1161"\w* things which \w are|strong="G1473"\w* \w before|strong="G1715"\w*, +\v 14 \w I|strong="G1161"\w* \w press|strong="G1377"\w* \w on|strong="G1722"\w* \w toward|strong="G1519"\w* \w the|strong="G1722"\w* \w goal|strong="G4649"\w* \w for|strong="G1519"\w* \w the|strong="G1722"\w* \w prize|strong="G1017"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w high|strong="G2316"\w* \w calling|strong="G2821"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*. +\v 15 \w Let|strong="G3767"\w* \w us|strong="G5426"\w* \w therefore|strong="G3767"\w*, \w as|strong="G3745"\w* \w many|strong="G3745"\w* \w as|strong="G3745"\w* \w are|strong="G3588"\w* \w perfect|strong="G5046"\w*, \w think|strong="G5426"\w* \w this|strong="G3778"\w* \w way|strong="G5100"\w*. \w If|strong="G1487"\w* \w in|strong="G2532"\w* \w anything|strong="G5100"\w* \w you|strong="G5210"\w* \w think|strong="G5426"\w* \w otherwise|strong="G1487"\w*, \w God|strong="G2316"\w* \w will|strong="G2316"\w* \w also|strong="G2532"\w* reveal \w that|strong="G3588"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*. +\v 16 \w Nevertheless|strong="G4133"\w*, \w to|strong="G1519"\w* \w the|strong="G1519"\w* extent \w that|strong="G3739"\w* \w we|strong="G3739"\w* \w have|strong="G3588"\w* already \w attained|strong="G5348"\w*, let’s \w walk|strong="G4748"\w* \w by|strong="G1519"\w* \w the|strong="G1519"\w* \w same|strong="G3739"\w* rule. Let’s \w be|strong="G1519"\w* \w of|strong="G3588"\w* \w the|strong="G1519"\w* \w same|strong="G3739"\w* mind. +\p +\v 17 Brothers, \w be|strong="G1096"\w* \w imitators|strong="G4831"\w* \w together|strong="G4831"\w* \w of|strong="G2532"\w* \w me|strong="G1473"\w*, \w and|strong="G2532"\w* note \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w walk|strong="G4043"\w* \w this|strong="G3588"\w* \w way|strong="G3779"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w you|strong="G3779"\w* \w have|strong="G2192"\w* \w us|strong="G2249"\w* \w for|strong="G2532"\w* \w an|strong="G2192"\w* \w example|strong="G5179"\w*. +\v 18 \w For|strong="G1063"\w* \w many|strong="G4183"\w* \w walk|strong="G4043"\w*, \w of|strong="G2532"\w* \w whom|strong="G3739"\w* \w I|strong="G3739"\w* \w told|strong="G3004"\w* \w you|strong="G5210"\w* \w often|strong="G4178"\w*, \w and|strong="G2532"\w* \w now|strong="G1161"\w* \w tell|strong="G3004"\w* \w you|strong="G5210"\w* \w even|strong="G2532"\w* \w weeping|strong="G2799"\w*, \w as|strong="G1161"\w* \w the|strong="G2532"\w* \w enemies|strong="G2190"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w cross|strong="G4716"\w* \w of|strong="G2532"\w* \w Christ|strong="G5547"\w*, +\v 19 \w whose|strong="G3739"\w* \w end|strong="G5056"\w* \w is|strong="G3588"\w* destruction, \w whose|strong="G3739"\w* \w god|strong="G2316"\w* \w is|strong="G3588"\w* \w the|strong="G1722"\w* \w belly|strong="G2836"\w*, \w and|strong="G2532"\w* \w whose|strong="G3739"\w* \w glory|strong="G1391"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w their|strong="G2532"\w* shame, \w who|strong="G3739"\w* \w think|strong="G5426"\w* \w about|strong="G1722"\w* \w earthly|strong="G1919"\w* \w things|strong="G3588"\w*. +\v 20 \w For|strong="G1063"\w* \w our|strong="G2424"\w* \w citizenship|strong="G4175"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w heaven|strong="G3772"\w*, \w from|strong="G1537"\w* \w where|strong="G3739"\w* \w we|strong="G2249"\w* \w also|strong="G2532"\w* wait \w for|strong="G1063"\w* \w a|strong="G2532"\w* \w Savior|strong="G4990"\w*, \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, +\v 21 \w who|strong="G3739"\w* \w will|strong="G2532"\w* \w change|strong="G3345"\w* \w the|strong="G2532"\w* \w body|strong="G4983"\w* \w of|strong="G2532"\w* \w our|strong="G2532"\w* \w humiliation|strong="G5014"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w conformed|strong="G4832"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w body|strong="G4983"\w* \w of|strong="G2532"\w* \w his|strong="G1438"\w* \w glory|strong="G1391"\w*, \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w working|strong="G1753"\w* \w by|strong="G2596"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w is|strong="G3588"\w* \w able|strong="G1410"\w* \w even|strong="G2532"\w* \w to|strong="G2532"\w* \w subject|strong="G5293"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w to|strong="G2532"\w* \w himself|strong="G1438"\w*. +\c 4 +\p +\v 1 \w Therefore|strong="G5620"\w*, \w my|strong="G1722"\w* brothers, beloved \w and|strong="G2532"\w* \w longed|strong="G2532"\w* \w for|strong="G1722"\w*, \w my|strong="G1722"\w* \w joy|strong="G5479"\w* \w and|strong="G2532"\w* \w crown|strong="G4735"\w*, \w stand|strong="G4739"\w* \w firm|strong="G4739"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w in|strong="G1722"\w* \w this|strong="G3779"\w* \w way|strong="G3779"\w*, \w my|strong="G1722"\w* beloved. +\p +\v 2 \w I|strong="G2532"\w* \w exhort|strong="G3870"\w* \w Euodia|strong="G2136"\w*, \w and|strong="G2532"\w* \w I|strong="G2532"\w* \w exhort|strong="G3870"\w* \w Syntyche|strong="G4941"\w*, \w to|strong="G2532"\w* \w think|strong="G5426"\w* \w the|strong="G1722"\w* \w same|strong="G2532"\w* \w way|strong="G1722"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\v 3 \w Yes|strong="G3483"\w*, \w I|strong="G1473"\w* \w beg|strong="G2065"\w* \w you|strong="G4771"\w* \w also|strong="G2532"\w*, \w true|strong="G1103"\w* partner, \w help|strong="G4815"\w* \w these|strong="G3739"\w* \w women|strong="G3062"\w*, \w for|strong="G1722"\w* \w they|strong="G2532"\w* labored \w with|strong="G3326"\w* \w me|strong="G1473"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w with|strong="G3326"\w* \w Clement|strong="G2815"\w* \w also|strong="G2532"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w rest|strong="G3062"\w* \w of|strong="G2532"\w* \w my|strong="G1722"\w* \w fellow|strong="G4904"\w* \w workers|strong="G4904"\w*, \w whose|strong="G3739"\w* \w names|strong="G3686"\w* \w are|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w book|strong="G3588"\w* \w of|strong="G2532"\w* \w life|strong="G2222"\w*. +\p +\v 4 \w Rejoice|strong="G5463"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w always|strong="G3842"\w*! \w Again|strong="G3825"\w* \w I|strong="G3004"\w* \w will|strong="G2962"\w* \w say|strong="G3004"\w*, “\w Rejoice|strong="G5463"\w*!” +\v 5 \w Let|strong="G1097"\w* \w your|strong="G2962"\w* \w gentleness|strong="G1933"\w* \w be|strong="G3956"\w* \w known|strong="G1097"\w* \w to|strong="G2962"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w*. \w The|strong="G3956"\w* \w Lord|strong="G2962"\w* \w is|strong="G3588"\w* \w at|strong="G3588"\w* \w hand|strong="G1451"\w*. +\v 6 \w In|strong="G1722"\w* \w nothing|strong="G3367"\w* \w be|strong="G2532"\w* \w anxious|strong="G3309"\w*, \w but|strong="G2532"\w* \w in|strong="G1722"\w* \w everything|strong="G3956"\w*, \w by|strong="G1722"\w* \w prayer|strong="G4335"\w* \w and|strong="G2532"\w* \w petition|strong="G1162"\w* \w with|strong="G3326"\w* \w thanksgiving|strong="G2169"\w*, \w let|strong="G2532"\w* \w your|strong="G2532"\w* \w requests|strong="G1162"\w* \w be|strong="G2532"\w* \w made|strong="G1107"\w* \w known|strong="G1107"\w* \w to|strong="G4314"\w* \w God|strong="G2316"\w*. +\v 7 \w And|strong="G2532"\w* \w the|strong="G1722"\w* \w peace|strong="G1515"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w which|strong="G3588"\w* \w surpasses|strong="G5242"\w* \w all|strong="G3956"\w* \w understanding|strong="G3563"\w*, \w will|strong="G2316"\w* \w guard|strong="G2532"\w* \w your|strong="G2532"\w* \w hearts|strong="G2588"\w* \w and|strong="G2532"\w* \w your|strong="G2532"\w* thoughts \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*. +\p +\v 8 \w Finally|strong="G3063"\w*, brothers, \w whatever|strong="G3745"\w* \w things|strong="G3778"\w* \w are|strong="G1510"\w* \w true|strong="G3588"\w*, \w whatever|strong="G3745"\w* \w things|strong="G3778"\w* \w are|strong="G1510"\w* \w honorable|strong="G4586"\w*, \w whatever|strong="G3745"\w* \w things|strong="G3778"\w* \w are|strong="G1510"\w* \w just|strong="G1342"\w*, \w whatever|strong="G3745"\w* \w things|strong="G3778"\w* \w are|strong="G1510"\w* pure, \w whatever|strong="G3745"\w* \w things|strong="G3778"\w* \w are|strong="G1510"\w* \w lovely|strong="G4375"\w*, \w whatever|strong="G3745"\w* \w things|strong="G3778"\w* \w are|strong="G1510"\w* \w of|strong="G2532"\w* \w good|strong="G3588"\w* \w report|strong="G2163"\w*: \w if|strong="G1487"\w* \w there|strong="G2532"\w* \w is|strong="G1510"\w* \w any|strong="G5100"\w* virtue \w and|strong="G2532"\w* \w if|strong="G1487"\w* \w there|strong="G2532"\w* \w is|strong="G1510"\w* \w anything|strong="G5100"\w* \w worthy|strong="G1868"\w* \w of|strong="G2532"\w* \w praise|strong="G1868"\w*, \w think|strong="G3049"\w* \w about|strong="G3588"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*. +\v 9 \w Do|strong="G4238"\w* \w the|strong="G1722"\w* \w things|strong="G3778"\w* \w which|strong="G3739"\w* \w you|strong="G5210"\w* \w learned|strong="G3129"\w*, \w received|strong="G3880"\w*, heard, \w and|strong="G2532"\w* \w saw|strong="G3708"\w* \w in|strong="G1722"\w* \w me|strong="G1473"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* \w peace|strong="G1515"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w with|strong="G3326"\w* \w you|strong="G5210"\w*. +\p +\v 10 \w But|strong="G1161"\w* \w I|strong="G1473"\w* \w rejoice|strong="G5463"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w greatly|strong="G3171"\w* \w that|strong="G3754"\w* \w now|strong="G1161"\w* \w at|strong="G1722"\w* \w length|strong="G4218"\w* \w you|strong="G3739"\w* \w have|strong="G2532"\w* revived \w your|strong="G2962"\w* thought \w for|strong="G3754"\w* \w me|strong="G1473"\w*; \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w did|strong="G2532"\w* \w indeed|strong="G2532"\w* \w take|strong="G1161"\w* thought, \w but|strong="G1161"\w* \w you|strong="G3739"\w* lacked opportunity. +\v 11 \w Not|strong="G3756"\w* \w that|strong="G3754"\w* \w I|strong="G1473"\w* \w speak|strong="G3004"\w* \w because|strong="G3754"\w* \w of|strong="G1722"\w* \w lack|strong="G3756"\w*, \w for|strong="G1063"\w* \w I|strong="G1473"\w* \w have|strong="G1473"\w* \w learned|strong="G3129"\w* \w in|strong="G1722"\w* \w whatever|strong="G3739"\w* \w state|strong="G2596"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w*, \w to|strong="G2596"\w* \w be|strong="G1510"\w* content \w in|strong="G1722"\w* \w it|strong="G3754"\w*. +\v 12 \w I|strong="G2532"\w* \w know|strong="G1492"\w* \w how|strong="G1492"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w humbled|strong="G5013"\w*, \w and|strong="G2532"\w* \w I|strong="G2532"\w* \w also|strong="G2532"\w* \w know|strong="G1492"\w* \w how|strong="G1492"\w* \w to|strong="G2532"\w* \w abound|strong="G4052"\w*. \w In|strong="G1722"\w* \w any|strong="G3956"\w* \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w circumstances|strong="G1722"\w* \w I|strong="G2532"\w* \w have|strong="G2532"\w* \w learned|strong="G3453"\w* \w the|strong="G1722"\w* \w secret|strong="G3453"\w* \w both|strong="G2532"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w filled|strong="G5526"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w hungry|strong="G3983"\w*, \w both|strong="G2532"\w* \w to|strong="G2532"\w* \w abound|strong="G4052"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w in|strong="G1722"\w* \w need|strong="G5302"\w*. +\v 13 \w I|strong="G1473"\w* \w can|strong="G2480"\w* \w do|strong="G2480"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w through|strong="G1722"\w* Christ \w who|strong="G3588"\w* \w strengthens|strong="G1743"\w* \w me|strong="G1473"\w*. +\v 14 \w However|strong="G4133"\w* \w you|strong="G4160"\w* \w did|strong="G4160"\w* \w well|strong="G2573"\w* \w that|strong="G3588"\w* \w you|strong="G4160"\w* shared \w in|strong="G4160"\w* \w my|strong="G1473"\w* \w affliction|strong="G2347"\w*. +\v 15 \w You|strong="G5210"\w* \w yourselves|strong="G4771"\w* \w also|strong="G2532"\w* \w know|strong="G1492"\w*, \w you|strong="G5210"\w* \w Philippians|strong="G5374"\w*, \w that|strong="G3754"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* beginning \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w Good|strong="G3588"\w* \w News|strong="G3056"\w*, \w when|strong="G3753"\w* \w I|strong="G1473"\w* \w departed|strong="G1831"\w* \w from|strong="G2532"\w* \w Macedonia|strong="G3109"\w*, \w no|strong="G3762"\w* \w assembly|strong="G1577"\w* \w shared|strong="G2841"\w* \w with|strong="G1722"\w* \w me|strong="G1473"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w matter|strong="G3056"\w* \w of|strong="G3056"\w* \w giving|strong="G1394"\w* \w and|strong="G2532"\w* \w receiving|strong="G3028"\w* \w but|strong="G1161"\w* \w you|strong="G5210"\w* \w only|strong="G3441"\w*. +\v 16 \w For|strong="G3754"\w* \w even|strong="G2532"\w* \w in|strong="G1722"\w* \w Thessalonica|strong="G2332"\w* \w you|strong="G3754"\w* \w sent|strong="G3992"\w* once \w and|strong="G2532"\w* \w again|strong="G1364"\w* \w to|strong="G1519"\w* \w my|strong="G1722"\w* \w need|strong="G5532"\w*. +\v 17 \w Not|strong="G3756"\w* \w that|strong="G3754"\w* \w I|strong="G3754"\w* \w seek|strong="G1934"\w* \w for|strong="G3754"\w* \w the|strong="G1519"\w* \w gift|strong="G1390"\w*, \w but|strong="G3588"\w* \w I|strong="G3754"\w* \w seek|strong="G1934"\w* \w for|strong="G3754"\w* \w the|strong="G1519"\w* \w fruit|strong="G2590"\w* \w that|strong="G3754"\w* \w increases|strong="G4121"\w* \w to|strong="G1519"\w* \w your|strong="G3588"\w* \w account|strong="G3056"\w*. +\v 18 \w But|strong="G1161"\w* \w I|strong="G2532"\w* \w have|strong="G2532"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w and|strong="G2532"\w* \w abound|strong="G4052"\w*. \w I|strong="G2532"\w* \w am|strong="G2532"\w* \w filled|strong="G4137"\w*, \w having|strong="G2532"\w* \w received|strong="G1209"\w* \w from|strong="G3844"\w* \w Epaphroditus|strong="G1891"\w* \w the|strong="G2532"\w* \w things|strong="G3956"\w* \w that|strong="G3588"\w* \w came|strong="G2532"\w* \w from|strong="G3844"\w* \w you|strong="G5210"\w*, \w a|strong="G2532"\w* sweet-smelling \w fragrance|strong="G3744"\w*, \w an|strong="G2532"\w* \w acceptable|strong="G2101"\w* \w and|strong="G2532"\w* \w well-pleasing|strong="G2101"\w* \w sacrifice|strong="G2378"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w*. +\v 19 \w My|strong="G1722"\w* \w God|strong="G2316"\w* \w will|strong="G2316"\w* \w supply|strong="G4137"\w* \w every|strong="G3956"\w* \w need|strong="G5532"\w* \w of|strong="G2316"\w* \w yours|strong="G4771"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w his|strong="G3956"\w* \w riches|strong="G4149"\w* \w in|strong="G1722"\w* \w glory|strong="G1391"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*. +\v 20 \w Now|strong="G1161"\w* \w to|strong="G1519"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w Father|strong="G3962"\w* \w be|strong="G2532"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w forever|strong="G1519"\w* \w and|strong="G2532"\w* \w ever|strong="G1519"\w*! Amen. +\p +\v 21 Greet \w every|strong="G3956"\w* saint \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*. \w The|strong="G1722"\w* brothers \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w with|strong="G1722"\w* \w me|strong="G1473"\w* greet \w you|strong="G5210"\w*. +\v 22 \w All|strong="G3956"\w* \w the|strong="G3956"\w* saints greet \w you|strong="G5210"\w*, \w especially|strong="G3122"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w of|strong="G1537"\w* \w Caesar|strong="G2541"\w*’s \w household|strong="G3614"\w*. +\p +\v 23 \w The|strong="G3588"\w* \w grace|strong="G5485"\w* \w of|strong="G4151"\w* \w the|strong="G3588"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w be|strong="G3588"\w* \w with|strong="G3326"\w* \w you|strong="G5210"\w* \w all|strong="G3588"\w*. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/81-COLeng-web.usfm b/bibles/eng-web_usfm/81-COLeng-web.usfm new file mode 100644 index 0000000..96c9af5 --- /dev/null +++ b/bibles/eng-web_usfm/81-COLeng-web.usfm @@ -0,0 +1,134 @@ +\id COL 51-COL-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Colossians +\toc1 Paul’s Letter to the Colossians +\toc2 Colossians +\toc3 Col +\mt1 Paul’s Letter to the Colossians +\c 1 +\p +\v 1 \w Paul|strong="G3972"\w*, \w an|strong="G2532"\w* apostle \w of|strong="G1223"\w* \w Christ|strong="G5547"\w*\f + \fr 1:1 \ft “Christ” means “Anointed One”.\f* \w Jesus|strong="G2424"\w* \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w will|strong="G2307"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w Timothy|strong="G5095"\w* \w our|strong="G2316"\w* brother, +\v 2 \w to|strong="G2532"\w* \w the|strong="G1722"\w* saints \w and|strong="G2532"\w* \w faithful|strong="G4103"\w* brothers\f + \fr 1:2 \ft The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”\f* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w at|strong="G1722"\w* \w Colossae|strong="G2857"\w*: \w Grace|strong="G5485"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w peace|strong="G1515"\w* \w from|strong="G1515"\w* \w God|strong="G2316"\w* \w our|strong="G2316"\w* \w Father|strong="G3962"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w Lord|strong="G3588"\w* \w Jesus|strong="G2532"\w* \w Christ|strong="G5547"\w*. +\p +\v 3 \w We|strong="G2249"\w* \w give|strong="G2168"\w* \w thanks|strong="G2168"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w* \w the|strong="G2532"\w* \w Father|strong="G3962"\w* \w of|strong="G4012"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w praying|strong="G4336"\w* \w always|strong="G3842"\w* \w for|strong="G4012"\w* \w you|strong="G5210"\w*, +\v 4 \w having|strong="G2192"\w* heard \w of|strong="G2532"\w* \w your|strong="G2192"\w* \w faith|strong="G4102"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* love \w which|strong="G3739"\w* \w you|strong="G5210"\w* \w have|strong="G2192"\w* \w toward|strong="G1519"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* saints, +\v 5 \w because|strong="G1223"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w hope|strong="G1680"\w* \w which|strong="G3739"\w* \w is|strong="G3588"\w* laid \w up|strong="G1722"\w* \w for|strong="G1223"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w heavens|strong="G3772"\w*, \w of|strong="G3056"\w* \w which|strong="G3739"\w* \w you|strong="G5210"\w* \w heard|strong="G4257"\w* \w before|strong="G1722"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* truth \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w Good|strong="G1223"\w* \w News|strong="G3056"\w* +\v 6 \w which|strong="G3739"\w* \w has|strong="G2316"\w* \w come|strong="G1510"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w* \w and|strong="G2532"\w* \w is|strong="G1510"\w* \w bearing|strong="G2592"\w* \w fruit|strong="G2592"\w* \w and|strong="G2532"\w* \w growing|strong="G1722"\w*, \w as|strong="G2531"\w* \w it|strong="G2532"\w* \w does|strong="G1510"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w* \w also|strong="G2532"\w*, since \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w you|strong="G5210"\w* heard \w and|strong="G2532"\w* \w knew|strong="G1921"\w* \w the|strong="G1722"\w* \w grace|strong="G5485"\w* \w of|strong="G2250"\w* \w God|strong="G2316"\w* \w in|strong="G1722"\w* truth, +\v 7 \w even|strong="G2531"\w* \w as|strong="G2531"\w* \w you|strong="G5210"\w* \w learned|strong="G3129"\w* \w from|strong="G3588"\w* \w Epaphras|strong="G1889"\w* \w our|strong="G5547"\w* beloved \w fellow|strong="G4889"\w* \w servant|strong="G1249"\w*, \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w a|strong="G1510"\w* \w faithful|strong="G4103"\w* \w servant|strong="G1249"\w* \w of|strong="G5228"\w* \w Christ|strong="G5547"\w* \w on|strong="G5228"\w* \w your|strong="G5228"\w*\f + \fr 1:7 \ft NU reads \fqa our\f* \w behalf|strong="G5228"\w*, +\v 8 \w who|strong="G3588"\w* \w also|strong="G2532"\w* \w declared|strong="G1213"\w* \w to|strong="G2532"\w* \w us|strong="G2249"\w* \w your|strong="G2532"\w* love \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w*. +\p +\v 9 \w For|strong="G5228"\w* \w this|strong="G3778"\w* \w cause|strong="G1223"\w*, \w we|strong="G2249"\w* \w also|strong="G2532"\w*, \w since|strong="G1223"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w we|strong="G2249"\w* heard \w this|strong="G3778"\w*, don’\w t|strong="G3588"\w* \w cease|strong="G3973"\w* \w praying|strong="G4336"\w* \w and|strong="G2532"\w* \w making|strong="G2532"\w* requests \w for|strong="G5228"\w* \w you|strong="G5210"\w*, \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* \w filled|strong="G4137"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w knowledge|strong="G1922"\w* \w of|strong="G2250"\w* \w his|strong="G3956"\w* \w will|strong="G2307"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w spiritual|strong="G4152"\w* \w wisdom|strong="G4678"\w* \w and|strong="G2532"\w* \w understanding|strong="G4907"\w*, +\v 10 \w that|strong="G3588"\w* \w you|strong="G1722"\w* \w may|strong="G2532"\w* \w walk|strong="G4043"\w* worthily \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w to|strong="G1519"\w* please \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w respects|strong="G3956"\w*, \w bearing|strong="G2592"\w* \w fruit|strong="G2592"\w* \w in|strong="G1722"\w* \w every|strong="G3956"\w* \w good|strong="G3956"\w* \w work|strong="G2041"\w* \w and|strong="G2532"\w* increasing \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w knowledge|strong="G1922"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, +\v 11 \w strengthened|strong="G1412"\w* \w with|strong="G3326"\w* \w all|strong="G3956"\w* \w power|strong="G1411"\w*, \w according|strong="G2596"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w might|strong="G2532"\w* \w of|strong="G2532"\w* \w his|strong="G3956"\w* \w glory|strong="G1391"\w*, \w for|strong="G1519"\w* \w all|strong="G3956"\w* \w endurance|strong="G5281"\w* \w and|strong="G2532"\w* \w perseverance|strong="G5281"\w* \w with|strong="G3326"\w* \w joy|strong="G5479"\w*, +\v 12 \w giving|strong="G2168"\w* \w thanks|strong="G2168"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w Father|strong="G3962"\w*, \w who|strong="G3588"\w* \w made|strong="G2427"\w* \w us|strong="G2427"\w* fit \w to|strong="G1519"\w* \w be|strong="G1519"\w* \w partakers|strong="G3310"\w* \w of|strong="G3962"\w* \w the|strong="G1722"\w* \w inheritance|strong="G2819"\w* \w of|strong="G3962"\w* \w the|strong="G1722"\w* saints \w in|strong="G1722"\w* \w light|strong="G5457"\w*, +\v 13 \w who|strong="G3739"\w* \w delivered|strong="G4506"\w* \w us|strong="G1519"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w power|strong="G1849"\w* \w of|strong="G1537"\w* \w darkness|strong="G4655"\w*, \w and|strong="G2532"\w* \w translated|strong="G3179"\w* \w us|strong="G1519"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* Kingdom \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w of|strong="G1537"\w* \w his|strong="G1519"\w* love, +\v 14 \w in|strong="G1722"\w* \w whom|strong="G3739"\w* \w we|strong="G3739"\w* \w have|strong="G2192"\w* \w our|strong="G1722"\w* redemption,\f + \fr 1:14 \ft TR adds “through his blood,” \f* \w the|strong="G1722"\w* forgiveness \w of|strong="G1722"\w* \w our|strong="G1722"\w* sins. +\p +\v 15 \w He|strong="G3739"\w* \w is|strong="G1510"\w* \w the|strong="G3956"\w* \w image|strong="G1504"\w* \w of|strong="G2316"\w* \w the|strong="G3956"\w* invisible \w God|strong="G2316"\w*, \w the|strong="G3956"\w* \w firstborn|strong="G4416"\w* \w of|strong="G2316"\w* \w all|strong="G3956"\w* \w creation|strong="G2937"\w*. +\v 16 \w For|strong="G3754"\w* \w by|strong="G1223"\w* \w him|strong="G3588"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w were|strong="G3588"\w* \w created|strong="G2936"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w heavens|strong="G3772"\w* \w and|strong="G2532"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w*, \w visible|strong="G3707"\w* \w things|strong="G3956"\w* \w and|strong="G2532"\w* invisible \w things|strong="G3956"\w*, \w whether|strong="G1535"\w* \w thrones|strong="G2362"\w* \w or|strong="G1535"\w* \w dominions|strong="G2963"\w* \w or|strong="G1535"\w* principalities \w or|strong="G1535"\w* \w powers|strong="G1849"\w*. \w All|strong="G3956"\w* \w things|strong="G3956"\w* \w have|strong="G2532"\w* \w been|strong="G2532"\w* \w created|strong="G2936"\w* \w through|strong="G1223"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w for|strong="G3754"\w* \w him|strong="G3588"\w*. +\v 17 \w He|strong="G2532"\w* \w is|strong="G1510"\w* \w before|strong="G4253"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w are|strong="G1510"\w* held \w together|strong="G2532"\w*. +\v 18 \w He|strong="G2532"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w head|strong="G2776"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w body|strong="G4983"\w*, \w the|strong="G1722"\w* \w assembly|strong="G1577"\w*, \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* beginning, \w the|strong="G1722"\w* \w firstborn|strong="G4416"\w* \w from|strong="G1537"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w*, \w that|strong="G2443"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w have|strong="G2532"\w* \w the|strong="G1722"\w* \w preeminence|strong="G4409"\w*. +\v 19 \w For|strong="G3754"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w fullness|strong="G4138"\w* \w was|strong="G3588"\w* \w pleased|strong="G2106"\w* \w to|strong="G1722"\w* \w dwell|strong="G2730"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*, +\v 20 \w and|strong="G2532"\w* \w through|strong="G1223"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* reconcile \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w to|strong="G1519"\w* \w himself|strong="G1519"\w* \w by|strong="G1223"\w* \w him|strong="G3588"\w*, \w whether|strong="G1535"\w* \w things|strong="G3956"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w* \w or|strong="G1535"\w* \w things|strong="G3956"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w heavens|strong="G3772"\w*, \w having|strong="G2532"\w* \w made|strong="G3956"\w* \w peace|strong="G1517"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* blood \w of|strong="G1223"\w* \w his|strong="G3956"\w* \w cross|strong="G4716"\w*. +\p +\v 21 \w You|strong="G5210"\w*, \w being|strong="G1510"\w* \w in|strong="G1722"\w* \w past|strong="G4218"\w* \w times|strong="G4218"\w* alienated \w and|strong="G2532"\w* \w enemies|strong="G2190"\w* \w in|strong="G1722"\w* \w your|strong="G2532"\w* \w mind|strong="G1271"\w* \w in|strong="G1722"\w* \w your|strong="G2532"\w* \w evil|strong="G4190"\w* \w deeds|strong="G2041"\w*, +\v 22 \w yet|strong="G2532"\w* \w now|strong="G1161"\w* \w he|strong="G2532"\w* \w has|strong="G2288"\w* reconciled \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w body|strong="G4983"\w* \w of|strong="G1223"\w* \w his|strong="G1223"\w* \w flesh|strong="G4561"\w* \w through|strong="G1223"\w* \w death|strong="G2288"\w*, \w to|strong="G2532"\w* \w present|strong="G3936"\w* \w you|strong="G5210"\w* holy \w and|strong="G2532"\w* \w without|strong="G2532"\w* defect \w and|strong="G2532"\w* blameless \w before|strong="G1722"\w* \w him|strong="G3588"\w*, +\v 23 \w if|strong="G1487"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w so|strong="G2532"\w* \w that|strong="G3739"\w* \w you|strong="G3739"\w* \w continue|strong="G1961"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w faith|strong="G4102"\w*, \w grounded|strong="G2311"\w* \w and|strong="G2532"\w* \w steadfast|strong="G1476"\w*, \w and|strong="G2532"\w* \w not|strong="G3361"\w* \w moved|strong="G3361"\w* \w away|strong="G3334"\w* \w from|strong="G2532"\w* \w the|strong="G1722"\w* \w hope|strong="G1680"\w* \w of|strong="G5259"\w* \w the|strong="G1722"\w* \w Good|strong="G3956"\w* \w News|strong="G2098"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* heard, \w which|strong="G3739"\w* \w was|strong="G1096"\w* \w proclaimed|strong="G2784"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w creation|strong="G2937"\w* \w under|strong="G5259"\w* \w heaven|strong="G3772"\w*, \w of|strong="G5259"\w* \w which|strong="G3739"\w* \w I|strong="G1473"\w*, \w Paul|strong="G3972"\w*, \w was|strong="G1096"\w* \w made|strong="G1096"\w* \w a|strong="G1096"\w* \w servant|strong="G1249"\w*. +\p +\v 24 \w Now|strong="G3568"\w* \w I|strong="G1473"\w* \w rejoice|strong="G5463"\w* \w in|strong="G1722"\w* \w my|strong="G1722"\w* \w sufferings|strong="G3804"\w* \w for|strong="G5228"\w* \w your|strong="G2532"\w* \w sake|strong="G5228"\w*, \w and|strong="G2532"\w* \w fill|strong="G2532"\w* \w up|strong="G2532"\w* \w on|strong="G1722"\w* \w my|strong="G1722"\w* \w part|strong="G1473"\w* \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w is|strong="G1510"\w* \w lacking|strong="G5303"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w afflictions|strong="G2347"\w* \w of|strong="G2532"\w* \w Christ|strong="G5547"\w* \w in|strong="G1722"\w* \w my|strong="G1722"\w* \w flesh|strong="G4561"\w* \w for|strong="G5228"\w* \w his|strong="G1722"\w* \w body|strong="G4983"\w*’s \w sake|strong="G5228"\w*, \w which|strong="G3739"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w*, +\v 25 \w of|strong="G3056"\w* \w which|strong="G3739"\w* \w I|strong="G1473"\w* \w was|strong="G1096"\w* \w made|strong="G1096"\w* \w a|strong="G1096"\w* \w servant|strong="G1249"\w* \w according|strong="G2596"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w stewardship|strong="G3622"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w* \w which|strong="G3739"\w* \w was|strong="G1096"\w* \w given|strong="G1325"\w* \w me|strong="G1325"\w* \w toward|strong="G1519"\w* \w you|strong="G5210"\w* \w to|strong="G1519"\w* \w fulfill|strong="G4137"\w* \w the|strong="G1519"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w*, +\v 26 \w the|strong="G2532"\w* \w mystery|strong="G3466"\w* \w which|strong="G3588"\w* \w has|strong="G5319"\w* \w been|strong="G2532"\w* hidden \w for|strong="G1161"\w* \w ages|strong="G1074"\w* \w and|strong="G2532"\w* \w generations|strong="G1074"\w*. \w But|strong="G1161"\w* \w now|strong="G1161"\w* \w it|strong="G2532"\w* \w has|strong="G5319"\w* \w been|strong="G2532"\w* \w revealed|strong="G5319"\w* \w to|strong="G2532"\w* \w his|strong="G2532"\w* saints, +\v 27 \w to|strong="G2309"\w* \w whom|strong="G3739"\w* \w God|strong="G2316"\w* \w was|strong="G1510"\w* pleased \w to|strong="G2309"\w* \w make|strong="G1107"\w* \w known|strong="G1107"\w* \w what|strong="G5101"\w* \w are|strong="G1510"\w* \w the|strong="G1722"\w* \w riches|strong="G4149"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w glory|strong="G1391"\w* \w of|strong="G2316"\w* \w this|strong="G3778"\w* \w mystery|strong="G3466"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w*, \w which|strong="G3739"\w* \w is|strong="G1510"\w* \w Christ|strong="G5547"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w*, \w the|strong="G1722"\w* \w hope|strong="G1680"\w* \w of|strong="G2316"\w* \w glory|strong="G1391"\w*. +\v 28 \w We|strong="G2249"\w* \w proclaim|strong="G2605"\w* \w him|strong="G3739"\w*, \w admonishing|strong="G3560"\w* \w every|strong="G3956"\w* \w man|strong="G3956"\w* \w and|strong="G2532"\w* \w teaching|strong="G1321"\w* \w every|strong="G3956"\w* \w man|strong="G3956"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w wisdom|strong="G4678"\w*, \w that|strong="G2443"\w* \w we|strong="G2249"\w* \w may|strong="G2532"\w* \w present|strong="G3936"\w* \w every|strong="G3956"\w* \w man|strong="G3956"\w* \w perfect|strong="G5046"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2532"\w*; +\v 29 \w for|strong="G1519"\w* \w which|strong="G3739"\w* \w I|strong="G1473"\w* \w also|strong="G2532"\w* \w labor|strong="G2872"\w*, striving \w according|strong="G2596"\w* \w to|strong="G1519"\w* \w his|strong="G1519"\w* \w working|strong="G1753"\w*, \w which|strong="G3739"\w* \w works|strong="G1754"\w* \w in|strong="G1722"\w* \w me|strong="G1473"\w* \w mightily|strong="G1411"\w*. +\c 2 +\p +\v 1 \w For|strong="G1063"\w* \w I|strong="G1473"\w* \w desire|strong="G2309"\w* \w to|strong="G2532"\w* \w have|strong="G2192"\w* \w you|strong="G5210"\w* \w know|strong="G1492"\w* \w how|strong="G1492"\w* \w greatly|strong="G3756"\w* \w I|strong="G1473"\w* struggle \w for|strong="G1063"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w for|strong="G1063"\w* \w those|strong="G3588"\w* \w at|strong="G1722"\w* \w Laodicea|strong="G2993"\w*, \w and|strong="G2532"\w* \w for|strong="G1063"\w* \w as|strong="G3745"\w* \w many|strong="G3745"\w* \w as|strong="G3745"\w* \w have|strong="G2192"\w* \w not|strong="G3756"\w* \w seen|strong="G3708"\w* \w my|strong="G3708"\w* \w face|strong="G4383"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*; +\v 2 \w that|strong="G2443"\w* \w their|strong="G2532"\w* \w hearts|strong="G2588"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* \w comforted|strong="G3870"\w*, \w they|strong="G2532"\w* \w being|strong="G2532"\w* \w knit|strong="G4822"\w* \w together|strong="G4822"\w* \w in|strong="G1722"\w* love, \w and|strong="G2532"\w* gaining \w all|strong="G3956"\w* \w riches|strong="G4149"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w full|strong="G3956"\w* \w assurance|strong="G4136"\w* \w of|strong="G2316"\w* \w understanding|strong="G4907"\w*, \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w may|strong="G2532"\w* \w know|strong="G1722"\w* \w the|strong="G1722"\w* \w mystery|strong="G3466"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w both|strong="G2532"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* Father \w and|strong="G2532"\w* \w of|strong="G2316"\w* \w Christ|strong="G5547"\w*, +\v 3 \w in|strong="G1722"\w* \w whom|strong="G3739"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w treasures|strong="G2344"\w* \w of|strong="G2532"\w* \w wisdom|strong="G4678"\w* \w and|strong="G2532"\w* \w knowledge|strong="G1108"\w* \w are|strong="G1510"\w* hidden. +\v 4 \w Now|strong="G1722"\w* \w I|strong="G3778"\w* \w say|strong="G3004"\w* \w this|strong="G3778"\w* \w that|strong="G2443"\w* \w no|strong="G3367"\w* \w one|strong="G3367"\w* \w may|strong="G2443"\w* \w delude|strong="G3884"\w* \w you|strong="G5210"\w* \w with|strong="G1722"\w* persuasiveness \w of|strong="G1722"\w* speech. +\v 5 \w For|strong="G1063"\w* \w though|strong="G1487"\w* \w I|strong="G2532"\w* \w am|strong="G1510"\w* absent \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w*, \w yet|strong="G2532"\w* \w I|strong="G2532"\w* \w am|strong="G1510"\w* \w with|strong="G4862"\w* \w you|strong="G5210"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w spirit|strong="G4151"\w*, \w rejoicing|strong="G5463"\w* \w and|strong="G2532"\w* seeing \w your|strong="G2532"\w* \w order|strong="G5010"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* steadfastness \w of|strong="G4151"\w* \w your|strong="G2532"\w* \w faith|strong="G4102"\w* \w in|strong="G1519"\w* \w Christ|strong="G5547"\w*. +\p +\v 6 \w As|strong="G5613"\w* \w therefore|strong="G3767"\w* \w you|strong="G1722"\w* \w received|strong="G3880"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w walk|strong="G4043"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*, +\v 7 \w rooted|strong="G4492"\w* \w and|strong="G2532"\w* \w built|strong="G2026"\w* \w up|strong="G2026"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* established \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w faith|strong="G4102"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w you|strong="G1722"\w* \w were|strong="G3588"\w* \w taught|strong="G1321"\w*, \w abounding|strong="G4052"\w* \w in|strong="G1722"\w* \w it|strong="G2532"\w* \w in|strong="G1722"\w* \w thanksgiving|strong="G2169"\w*. +\p +\v 8 \w Be|strong="G1510"\w* careful \w that|strong="G3588"\w* \w you|strong="G5210"\w* don’\w t|strong="G3588"\w* \w let|strong="G1510"\w* \w anyone|strong="G5100"\w* rob \w you|strong="G5210"\w* \w through|strong="G1223"\w* \w his|strong="G1223"\w* \w philosophy|strong="G5385"\w* \w and|strong="G2532"\w* \w vain|strong="G2756"\w* deceit, \w after|strong="G2596"\w* \w the|strong="G2532"\w* \w tradition|strong="G3862"\w* \w of|strong="G1223"\w* \w men|strong="G5100"\w*, \w after|strong="G2596"\w* \w the|strong="G2532"\w* \w elemental|strong="G4747"\w* \w spirits|strong="G2889"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w*, \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w after|strong="G2596"\w* \w Christ|strong="G5547"\w*. +\v 9 \w For|strong="G3754"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w fullness|strong="G4138"\w* \w of|strong="G1722"\w* \w the|strong="G1722"\w* \w Deity|strong="G2320"\w* \w dwells|strong="G2730"\w* \w bodily|strong="G4985"\w*, +\v 10 \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w* \w you|strong="G3739"\w* \w are|strong="G1510"\w* \w made|strong="G4137"\w* \w full|strong="G4137"\w*, \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w head|strong="G2776"\w* \w of|strong="G2532"\w* \w all|strong="G3956"\w* principality \w and|strong="G2532"\w* \w power|strong="G1849"\w*. +\v 11 \w In|strong="G1722"\w* \w him|strong="G3588"\w* \w you|strong="G3739"\w* \w were|strong="G3588"\w* \w also|strong="G2532"\w* \w circumcised|strong="G4059"\w* \w with|strong="G1722"\w* \w a|strong="G2532"\w* \w circumcision|strong="G4061"\w* \w not|strong="G3739"\w* made \w with|strong="G1722"\w* hands, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w putting|strong="G2532"\w* off \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w body|strong="G4983"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* sins \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w circumcision|strong="G4061"\w* \w of|strong="G2532"\w* \w Christ|strong="G5547"\w*, +\v 12 \w having|strong="G2532"\w* \w been|strong="G2532"\w* \w buried|strong="G4916"\w* \w with|strong="G1722"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* baptism, \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w were|strong="G3588"\w* \w also|strong="G2532"\w* \w raised|strong="G1453"\w* \w with|strong="G1722"\w* \w him|strong="G3588"\w* \w through|strong="G1223"\w* \w faith|strong="G4102"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w working|strong="G1753"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*, \w who|strong="G3739"\w* \w raised|strong="G1453"\w* \w him|strong="G3588"\w* \w from|strong="G1537"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w*. +\v 13 \w You|strong="G5210"\w* \w were|strong="G1510"\w* \w dead|strong="G3498"\w* \w through|strong="G1722"\w* \w your|strong="G2532"\w* \w trespasses|strong="G3900"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* uncircumcision \w of|strong="G2532"\w* \w your|strong="G2532"\w* \w flesh|strong="G4561"\w*. \w He|strong="G2532"\w* \w made|strong="G4806"\w* \w you|strong="G5210"\w* \w alive|strong="G4806"\w* \w together|strong="G4806"\w* \w with|strong="G1722"\w* \w him|strong="G3588"\w*, \w having|strong="G2532"\w* \w forgiven|strong="G5483"\w* \w us|strong="G5483"\w* \w all|strong="G3956"\w* \w our|strong="G2532"\w* \w trespasses|strong="G3900"\w*, +\v 14 wiping \w out|strong="G1537"\w* \w the|strong="G2532"\w* \w handwriting|strong="G5498"\w* \w in|strong="G2596"\w* \w ordinances|strong="G1378"\w* \w which|strong="G3739"\w* \w was|strong="G1510"\w* \w against|strong="G2596"\w* \w us|strong="G2249"\w*. \w He|strong="G2532"\w* \w has|strong="G3739"\w* taken \w it|strong="G2532"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w way|strong="G2596"\w*, \w nailing|strong="G4338"\w* \w it|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w cross|strong="G4716"\w*. +\v 15 \w Having|strong="G2532"\w* stripped \w the|strong="G1722"\w* principalities \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w powers|strong="G1849"\w*, \w he|strong="G2532"\w* \w made|strong="G1165"\w* \w a|strong="G2532"\w* show \w of|strong="G2532"\w* \w them|strong="G3588"\w* \w openly|strong="G3954"\w*, triumphing \w over|strong="G1849"\w* \w them|strong="G3588"\w* \w in|strong="G1722"\w* \w it|strong="G2532"\w*. +\p +\v 16 \w Let|strong="G2919"\w* \w no|strong="G3361"\w* \w one|strong="G5100"\w* \w therefore|strong="G3767"\w* \w judge|strong="G2919"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w eating|strong="G1035"\w* \w or|strong="G2228"\w* \w drinking|strong="G4213"\w*, \w or|strong="G2228"\w* \w with|strong="G1722"\w* \w respect|strong="G3313"\w* \w to|strong="G1722"\w* \w a|strong="G1722"\w* \w feast|strong="G1859"\w* \w day|strong="G4521"\w* \w or|strong="G2228"\w* \w a|strong="G1722"\w* \w new|strong="G5100"\w* \w moon|strong="G3561"\w* \w or|strong="G2228"\w* \w a|strong="G1722"\w* \w Sabbath|strong="G4521"\w* \w day|strong="G4521"\w*, +\v 17 \w which|strong="G3739"\w* \w are|strong="G1510"\w* \w a|strong="G1510"\w* \w shadow|strong="G4639"\w* \w of|strong="G4983"\w* \w the|strong="G1161"\w* \w things|strong="G3588"\w* \w to|strong="G3195"\w* \w come|strong="G3195"\w*; \w but|strong="G1161"\w* \w the|strong="G1161"\w* \w body|strong="G4983"\w* \w is|strong="G1510"\w* \w Christ|strong="G5547"\w*’s. +\v 18 \w Let|strong="G2532"\w* \w no|strong="G3367"\w* \w one|strong="G3367"\w* rob \w you|strong="G5210"\w* \w of|strong="G5259"\w* \w your|strong="G2532"\w* \w prize|strong="G2603"\w* \w by|strong="G1722"\w* \w self-abasement|strong="G5012"\w* \w and|strong="G2532"\w* worshiping \w of|strong="G5259"\w* \w the|strong="G1722"\w* angels, dwelling \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w things|strong="G3588"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w has|strong="G3739"\w* \w not|strong="G3367"\w* \w seen|strong="G3708"\w*, \w vainly|strong="G1500"\w* \w puffed|strong="G1500"\w* \w up|strong="G5448"\w* \w by|strong="G1722"\w* \w his|strong="G1722"\w* \w fleshly|strong="G4561"\w* \w mind|strong="G3563"\w*, +\v 19 \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w holding|strong="G2902"\w* firmly \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Head|strong="G2776"\w*, \w from|strong="G1537"\w* \w whom|strong="G3739"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w body|strong="G4983"\w*, \w being|strong="G2532"\w* \w supplied|strong="G2023"\w* \w and|strong="G2532"\w* \w knit|strong="G4822"\w* \w together|strong="G4822"\w* \w through|strong="G1223"\w* \w the|strong="G2532"\w* joints \w and|strong="G2532"\w* \w ligaments|strong="G4886"\w*, grows \w with|strong="G1537"\w* \w God|strong="G2316"\w*’s growth. +\p +\v 20 \w If|strong="G1487"\w* \w you|strong="G1487"\w* \w died|strong="G3588"\w* \w with|strong="G1722"\w* \w Christ|strong="G5547"\w* \w from|strong="G3588"\w* \w the|strong="G1722"\w* \w elemental|strong="G4747"\w* \w spirits|strong="G2889"\w* \w of|strong="G1722"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*, \w why|strong="G5101"\w*, \w as|strong="G5613"\w* \w though|strong="G5613"\w* \w living|strong="G2198"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*, \w do|strong="G5101"\w* \w you|strong="G1487"\w* subject \w yourselves|strong="G1722"\w* \w to|strong="G1722"\w* \w ordinances|strong="G1379"\w*, +\v 21 “Don’t \w handle|strong="G2345"\w*, \w nor|strong="G3366"\w* \w taste|strong="G1089"\w*, \w nor|strong="G3366"\w* \w touch|strong="G2345"\w*” +\v 22 (\w all|strong="G3956"\w* \w of|strong="G2532"\w* \w which|strong="G3739"\w* \w perish|strong="G5356"\w* \w with|strong="G2532"\w* \w use|strong="G3588"\w*), \w according|strong="G2596"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w precepts|strong="G1778"\w* \w and|strong="G2532"\w* \w doctrines|strong="G1319"\w* \w of|strong="G2532"\w* \w men|strong="G3956"\w*? +\v 23 \w These|strong="G3588"\w* \w things|strong="G3588"\w* \w indeed|strong="G2532"\w* \w appear|strong="G1510"\w* \w like|strong="G4314"\w* \w wisdom|strong="G4678"\w* \w in|strong="G1722"\w* self-imposed \w worship|strong="G1479"\w*, \w humility|strong="G5012"\w*, \w and|strong="G2532"\w* severity \w to|strong="G4314"\w* \w the|strong="G1722"\w* \w body|strong="G4983"\w*, \w but|strong="G2532"\w* aren’\w t|strong="G3588"\w* \w of|strong="G3056"\w* \w any|strong="G5100"\w* \w value|strong="G5092"\w* \w against|strong="G4314"\w* \w the|strong="G1722"\w* \w indulgence|strong="G4140"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*. +\c 3 +\p +\v 1 \w If|strong="G1487"\w* \w then|strong="G3767"\w* \w you|strong="G1487"\w* \w were|strong="G1510"\w* \w raised|strong="G4891"\w* \w together|strong="G4891"\w* \w with|strong="G1722"\w* \w Christ|strong="G5547"\w*, \w seek|strong="G2212"\w* \w the|strong="G1722"\w* \w things|strong="G3588"\w* \w that|strong="G3588"\w* \w are|strong="G1510"\w* above, \w where|strong="G3757"\w* \w Christ|strong="G5547"\w* \w is|strong="G1510"\w*, \w seated|strong="G2521"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\v 2 \w Set|strong="G5426"\w* \w your|strong="G1909"\w* \w mind|strong="G5426"\w* \w on|strong="G1909"\w* \w the|strong="G1909"\w* \w things|strong="G3588"\w* \w that|strong="G3588"\w* \w are|strong="G3588"\w* \w above|strong="G1909"\w*, \w not|strong="G3361"\w* \w on|strong="G1909"\w* \w the|strong="G1909"\w* \w things|strong="G3588"\w* \w that|strong="G3588"\w* \w are|strong="G3588"\w* \w on|strong="G1909"\w* \w the|strong="G1909"\w* \w earth|strong="G1093"\w*. +\v 3 \w For|strong="G1063"\w* \w you|strong="G5210"\w* \w died|strong="G3588"\w*, \w and|strong="G2532"\w* \w your|strong="G2532"\w* \w life|strong="G2222"\w* \w is|strong="G3588"\w* \w hidden|strong="G2928"\w* \w with|strong="G1722"\w* \w Christ|strong="G5547"\w* \w in|strong="G1722"\w* \w God|strong="G2316"\w*. +\v 4 \w When|strong="G3752"\w* \w Christ|strong="G5547"\w*, \w our|strong="G2532"\w* \w life|strong="G2222"\w*, \w is|strong="G3588"\w* \w revealed|strong="G5319"\w*, \w then|strong="G2532"\w* \w you|strong="G5210"\w* \w will|strong="G2532"\w* \w also|strong="G2532"\w* \w be|strong="G2532"\w* \w revealed|strong="G5319"\w* \w with|strong="G1722"\w* \w him|strong="G3588"\w* \w in|strong="G1722"\w* \w glory|strong="G1391"\w*. +\p +\v 5 \w Put|strong="G2532"\w* \w to|strong="G2532"\w* death \w therefore|strong="G3767"\w* \w your|strong="G2532"\w* \w members|strong="G3196"\w* \w which|strong="G3588"\w* \w are|strong="G1510"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*: \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w*, uncleanness, depraved \w passion|strong="G3806"\w*, \w evil|strong="G2556"\w* \w desire|strong="G1939"\w*, \w and|strong="G2532"\w* \w covetousness|strong="G4124"\w*, \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w idolatry|strong="G1495"\w*. +\v 6 \w For|strong="G1223"\w* \w these|strong="G3739"\w* \w things|strong="G3588"\w*’ \w sake|strong="G1223"\w* \w the|strong="G1909"\w* \w wrath|strong="G3709"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w* \w comes|strong="G2064"\w* \w on|strong="G1909"\w* \w the|strong="G1909"\w* \w children|strong="G5207"\w* \w of|strong="G5207"\w* disobedience. +\v 7 \w You|strong="G5210"\w* \w also|strong="G2532"\w* \w once|strong="G4218"\w* \w walked|strong="G4043"\w* \w in|strong="G1722"\w* \w those|strong="G3778"\w*, \w when|strong="G3753"\w* \w you|strong="G5210"\w* \w lived|strong="G2198"\w* \w in|strong="G1722"\w* \w them|strong="G1722"\w*, +\v 8 \w but|strong="G1161"\w* \w now|strong="G1161"\w* \w you|strong="G5210"\w* \w must|strong="G3588"\w* \w put|strong="G2532"\w* \w them|strong="G3588"\w* \w all|strong="G3956"\w* away: \w anger|strong="G3709"\w*, \w wrath|strong="G3709"\w*, \w malice|strong="G2549"\w*, slander, \w and|strong="G2532"\w* shameful speaking \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w your|strong="G2532"\w* \w mouth|strong="G4750"\w*. +\v 9 Don’\w t|strong="G3588"\w* \w lie|strong="G5574"\w* \w to|strong="G1519"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w*, seeing \w that|strong="G3588"\w* \w you|strong="G3361"\w* \w have|strong="G3588"\w* \w put|strong="G3361"\w* off \w the|strong="G1519"\w* \w old|strong="G3820"\w* \w man|strong="G3361"\w* \w with|strong="G4862"\w* \w his|strong="G1519"\w* doings, +\v 10 \w and|strong="G2532"\w* \w have|strong="G2532"\w* \w put|strong="G1746"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w new|strong="G3501"\w* \w man|strong="G1519"\w*, \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w being|strong="G2532"\w* renewed \w in|strong="G1519"\w* \w knowledge|strong="G1922"\w* \w after|strong="G2596"\w* \w the|strong="G2532"\w* \w image|strong="G1504"\w* \w of|strong="G2532"\w* \w his|strong="G1519"\w* \w Creator|strong="G2936"\w*, +\v 11 \w where|strong="G3699"\w* \w there|strong="G2532"\w* can’\w t|strong="G3588"\w* \w be|strong="G2532"\w* \w Greek|strong="G1672"\w* \w and|strong="G2532"\w* \w Jew|strong="G2453"\w*, \w circumcision|strong="G4061"\w* \w and|strong="G2532"\w* uncircumcision, barbarian, \w Scythian|strong="G4658"\w*, bondservant, \w or|strong="G2532"\w* \w free|strong="G1658"\w* person; \w but|strong="G2532"\w* \w Christ|strong="G5547"\w* \w is|strong="G3588"\w* \w all|strong="G3956"\w*, \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w*. +\p +\v 12 \w Put|strong="G1746"\w* \w on|strong="G1746"\w* \w therefore|strong="G3767"\w*, \w as|strong="G5613"\w* \w God|strong="G2316"\w*’s \w chosen|strong="G1588"\w* ones, holy \w and|strong="G2532"\w* beloved, \w a|strong="G5613"\w* \w heart|strong="G4698"\w* \w of|strong="G2316"\w* \w compassion|strong="G3628"\w*, \w kindness|strong="G5544"\w*, \w lowliness|strong="G5012"\w*, \w humility|strong="G5012"\w*, \w and|strong="G2532"\w* \w perseverance|strong="G3115"\w*; +\v 13 \w bearing|strong="G2192"\w* \w with|strong="G4314"\w* \w one|strong="G5100"\w* \w another|strong="G1438"\w*, \w and|strong="G2532"\w* \w forgiving|strong="G5483"\w* \w each|strong="G1438"\w* \w other|strong="G5100"\w*, \w if|strong="G1437"\w* \w any|strong="G5100"\w* \w man|strong="G5100"\w* \w has|strong="G2192"\w* \w a|strong="G2192"\w* \w complaint|strong="G3437"\w* \w against|strong="G4314"\w* \w any|strong="G5100"\w*; \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w Christ|strong="G5547"\w* \w forgave|strong="G5483"\w* \w you|strong="G5210"\w*, \w so|strong="G3779"\w* \w you|strong="G5210"\w* \w also|strong="G2532"\w* \w do|strong="G2532"\w*. +\p +\v 14 \w Above|strong="G1909"\w* \w all|strong="G3956"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w*, walk \w in|strong="G1909"\w* love, \w which|strong="G3739"\w* \w is|strong="G1510"\w* \w the|strong="G3956"\w* \w bond|strong="G4886"\w* \w of|strong="G1909"\w* \w perfection|strong="G5047"\w*. +\v 15 \w And|strong="G2532"\w* \w let|strong="G1096"\w* \w the|strong="G1722"\w* \w peace|strong="G1515"\w* \w of|strong="G2532"\w* \w God|strong="G2532"\w* \w rule|strong="G1018"\w* \w in|strong="G1722"\w* \w your|strong="G2532"\w* \w hearts|strong="G2588"\w*, \w to|strong="G1519"\w* \w which|strong="G3739"\w* \w also|strong="G2532"\w* \w you|strong="G5210"\w* \w were|strong="G3588"\w* \w called|strong="G2564"\w* \w in|strong="G1722"\w* \w one|strong="G1520"\w* \w body|strong="G4983"\w*, \w and|strong="G2532"\w* \w be|strong="G1096"\w* \w thankful|strong="G2170"\w*. +\v 16 \w Let|strong="G1774"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w Christ|strong="G5547"\w* \w dwell|strong="G1774"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w* \w richly|strong="G4146"\w*; \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w wisdom|strong="G4678"\w* \w teaching|strong="G1321"\w* \w and|strong="G2532"\w* \w admonishing|strong="G3560"\w* \w one|strong="G3956"\w* \w another|strong="G1438"\w* \w with|strong="G1722"\w* \w psalms|strong="G5568"\w*, \w hymns|strong="G5215"\w*, \w and|strong="G2532"\w* \w spiritual|strong="G4152"\w* \w songs|strong="G5603"\w*, singing \w with|strong="G1722"\w* \w grace|strong="G5485"\w* \w in|strong="G1722"\w* \w your|strong="G2532"\w* \w heart|strong="G2588"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w Lord|strong="G3588"\w*. +\p +\v 17 \w Whatever|strong="G3739"\w* \w you|strong="G3739"\w* \w do|strong="G4160"\w*, \w in|strong="G1722"\w* \w word|strong="G3056"\w* \w or|strong="G2228"\w* \w in|strong="G1722"\w* \w deed|strong="G2041"\w*, \w do|strong="G4160"\w* \w all|strong="G3956"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*, \w giving|strong="G2168"\w* \w thanks|strong="G2168"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w* \w the|strong="G1722"\w* \w Father|strong="G3962"\w* \w through|strong="G1223"\w* \w him|strong="G3588"\w*. +\p +\v 18 \w Wives|strong="G1135"\w*, \w be|strong="G3588"\w* \w in|strong="G1722"\w* \w subjection|strong="G5293"\w* \w to|strong="G1722"\w* \w your|strong="G2962"\w* husbands, \w as|strong="G5613"\w* \w is|strong="G3588"\w* fitting \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\p +\v 19 Husbands, love \w your|strong="G2532"\w* \w wives|strong="G1135"\w*, \w and|strong="G2532"\w* don’\w t|strong="G3588"\w* \w be|strong="G2532"\w* \w bitter|strong="G4087"\w* \w against|strong="G4314"\w* \w them|strong="G3588"\w*. +\p +\v 20 \w Children|strong="G5043"\w*, \w obey|strong="G5219"\w* \w your|strong="G2962"\w* \w parents|strong="G1118"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w for|strong="G1063"\w* \w this|strong="G3778"\w* pleases \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\p +\v 21 \w Fathers|strong="G3962"\w*, don’\w t|strong="G3588"\w* \w provoke|strong="G2042"\w* \w your|strong="G3588"\w* \w children|strong="G5043"\w*, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w they|strong="G3588"\w* won’\w t|strong="G3588"\w* \w be|strong="G3361"\w* discouraged. +\p +\v 22 \w Servants|strong="G1401"\w*, \w obey|strong="G5219"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w your|strong="G2962"\w* \w masters|strong="G2962"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*, \w not|strong="G3361"\w* \w just|strong="G5613"\w* \w when|strong="G5613"\w* \w they|strong="G3588"\w* \w are|strong="G3588"\w* looking, \w as|strong="G5613"\w* \w men|strong="G3956"\w* pleasers, \w but|strong="G3361"\w* \w in|strong="G1722"\w* singleness \w of|strong="G2962"\w* \w heart|strong="G2588"\w*, \w fearing|strong="G5399"\w* \w God|strong="G3361"\w*. +\v 23 \w And|strong="G2532"\w* \w whatever|strong="G3739"\w* \w you|strong="G3739"\w* \w do|strong="G4160"\w*, \w work|strong="G2038"\w* \w heartily|strong="G5590"\w*, \w as|strong="G5613"\w* \w for|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w for|strong="G2532"\w* \w men|strong="G3588"\w*, +\v 24 \w knowing|strong="G1492"\w* \w that|strong="G3754"\w* \w from|strong="G3588"\w* \w the|strong="G3588"\w* \w Lord|strong="G2962"\w* \w you|strong="G3754"\w* \w will|strong="G2962"\w* receive \w the|strong="G3588"\w* reward \w of|strong="G2962"\w* \w the|strong="G3588"\w* \w inheritance|strong="G2817"\w*; \w for|strong="G3754"\w* \w you|strong="G3754"\w* \w serve|strong="G1398"\w* \w the|strong="G3588"\w* \w Lord|strong="G2962"\w* \w Christ|strong="G5547"\w*. +\v 25 \w But|strong="G2532"\w* \w he|strong="G2532"\w* \w who|strong="G3739"\w* \w does|strong="G1510"\w* \w wrong|strong="G2865"\w* \w will|strong="G1510"\w* \w receive|strong="G2865"\w* \w again|strong="G2532"\w* \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w wrong|strong="G2865"\w* \w that|strong="G3739"\w* \w he|strong="G2532"\w* \w has|strong="G3739"\w* done, \w and|strong="G2532"\w* \w there|strong="G2532"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* \w partiality|strong="G4382"\w*. +\c 4 +\p +\v 1 \w Masters|strong="G2962"\w*, \w give|strong="G3930"\w* \w to|strong="G2532"\w* \w your|strong="G2192"\w* \w servants|strong="G1401"\w* \w that|strong="G3754"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w just|strong="G1342"\w* \w and|strong="G2532"\w* \w equal|strong="G2471"\w*, \w knowing|strong="G1492"\w* \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w also|strong="G2532"\w* \w have|strong="G2192"\w* \w a|strong="G2192"\w* \w Master|strong="G2962"\w* \w in|strong="G1722"\w* \w heaven|strong="G3772"\w*. +\p +\v 2 \w Continue|strong="G4342"\w* steadfastly \w in|strong="G1722"\w* \w prayer|strong="G4335"\w*, \w watching|strong="G1127"\w* \w in|strong="G1722"\w* \w it|strong="G3588"\w* \w with|strong="G1722"\w* \w thanksgiving|strong="G2169"\w*, +\v 3 \w praying|strong="G4336"\w* \w together|strong="G2532"\w* \w for|strong="G1223"\w* \w us|strong="G2249"\w* \w also|strong="G2532"\w*, \w that|strong="G2443"\w* \w God|strong="G2316"\w* \w may|strong="G2532"\w* open \w to|strong="G2443"\w* \w us|strong="G2249"\w* \w a|strong="G2532"\w* \w door|strong="G2374"\w* \w for|strong="G1223"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w*, \w to|strong="G2443"\w* \w speak|strong="G2980"\w* \w the|strong="G2532"\w* \w mystery|strong="G3466"\w* \w of|strong="G4012"\w* \w Christ|strong="G5547"\w*, \w for|strong="G1223"\w* \w which|strong="G3739"\w* \w I|strong="G1473"\w* \w am|strong="G1473"\w* \w also|strong="G2532"\w* \w in|strong="G2532"\w* \w bonds|strong="G1210"\w*, +\v 4 \w that|strong="G2443"\w* \w I|strong="G1473"\w* \w may|strong="G2443"\w* \w reveal|strong="G5319"\w* \w it|strong="G5613"\w* \w as|strong="G5613"\w* \w I|strong="G1473"\w* \w ought|strong="G1163"\w* \w to|strong="G2443"\w* \w speak|strong="G2980"\w*. +\p +\v 5 \w Walk|strong="G4043"\w* \w in|strong="G1722"\w* \w wisdom|strong="G4678"\w* \w toward|strong="G4314"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w outside|strong="G1854"\w*, \w redeeming|strong="G1805"\w* \w the|strong="G1722"\w* \w time|strong="G2540"\w*. +\v 6 Let \w your|strong="G1722"\w* \w speech|strong="G3056"\w* \w always|strong="G3842"\w* \w be|strong="G1163"\w* \w with|strong="G1722"\w* \w grace|strong="G5485"\w*, seasoned \w with|strong="G1722"\w* salt, \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w may|strong="G5485"\w* \w know|strong="G1492"\w* \w how|strong="G4459"\w* \w you|strong="G5210"\w* \w ought|strong="G1163"\w* \w to|strong="G1722"\w* \w answer|strong="G3056"\w* \w each|strong="G1538"\w* \w one|strong="G1520"\w*. +\p +\v 7 \w All|strong="G3956"\w* \w my|strong="G1722"\w* \w affairs|strong="G3588"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w made|strong="G1107"\w* \w known|strong="G1107"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w by|strong="G1722"\w* \w Tychicus|strong="G5190"\w*, \w the|strong="G1722"\w* beloved brother, \w faithful|strong="G4103"\w* \w servant|strong="G1249"\w*, \w and|strong="G2532"\w* \w fellow|strong="G4889"\w* bondservant \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\v 8 \w I|strong="G1473"\w* \w am|strong="G1473"\w* \w sending|strong="G3992"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w for|strong="G1519"\w* \w this|strong="G3778"\w* \w very|strong="G2532"\w* \w purpose|strong="G3739"\w*, \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w may|strong="G2532"\w* \w know|strong="G1097"\w* \w your|strong="G2532"\w* \w circumstances|strong="G3588"\w* \w and|strong="G2532"\w* \w comfort|strong="G3870"\w* \w your|strong="G2532"\w* \w hearts|strong="G2588"\w*, +\v 9 \w together|strong="G4862"\w* \w with|strong="G4862"\w* \w Onesimus|strong="G3682"\w*, \w the|strong="G2532"\w* \w faithful|strong="G4103"\w* \w and|strong="G2532"\w* beloved brother, \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w one|strong="G3739"\w* \w of|strong="G1537"\w* \w you|strong="G5210"\w*. \w They|strong="G2532"\w* \w will|strong="G1510"\w* \w make|strong="G1107"\w* \w known|strong="G1107"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w everything|strong="G3956"\w* \w that|strong="G3739"\w* \w is|strong="G1510"\w* \w going|strong="G2532"\w* \w on|strong="G1537"\w* \w here|strong="G5602"\w*. +\p +\v 10 Aristarchus, \w my|strong="G1473"\w* \w fellow|strong="G4869"\w* \w prisoner|strong="G4869"\w*, greets \w you|strong="G5210"\w*, \w and|strong="G2532"\w* \w Mark|strong="G3138"\w* \w the|strong="G2532"\w* cousin \w of|strong="G4012"\w* Barnabas (\w concerning|strong="G4012"\w* \w whom|strong="G3739"\w* \w you|strong="G5210"\w* \w received|strong="G2983"\w* \w instructions|strong="G1785"\w*, “\w if|strong="G1437"\w* \w he|strong="G2532"\w* \w comes|strong="G2064"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*, \w receive|strong="G2983"\w* \w him|strong="G3588"\w*”), +\v 11 \w and|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w called|strong="G3004"\w* \w Justus|strong="G2459"\w*. \w These|strong="G3778"\w* \w are|strong="G1510"\w* \w my|strong="G1473"\w* \w only|strong="G3441"\w* \w fellow|strong="G4904"\w* \w workers|strong="G4904"\w* \w for|strong="G1519"\w* \w God|strong="G2316"\w*’s Kingdom \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w circumcision|strong="G4061"\w*, \w men|strong="G3778"\w* \w who|strong="G3588"\w* \w have|strong="G2532"\w* \w been|strong="G1510"\w* \w a|strong="G1096"\w* \w comfort|strong="G3931"\w* \w to|strong="G1519"\w* \w me|strong="G1473"\w*. +\p +\v 12 \w Epaphras|strong="G1889"\w*, \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w one|strong="G3956"\w* \w of|strong="G1537"\w* \w you|strong="G5210"\w*, \w a|strong="G2532"\w* \w servant|strong="G1401"\w* \w of|strong="G1537"\w* \w Christ|strong="G5547"\w*, salutes \w you|strong="G5210"\w*, \w always|strong="G3842"\w* striving \w for|strong="G5228"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w his|strong="G3956"\w* \w prayers|strong="G4335"\w*, \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w may|strong="G2532"\w* \w stand|strong="G2476"\w* \w perfect|strong="G5046"\w* \w and|strong="G2532"\w* \w complete|strong="G3956"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w will|strong="G2307"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*. +\v 13 \w For|strong="G1063"\w* \w I|strong="G2532"\w* \w testify|strong="G3140"\w* \w about|strong="G1722"\w* \w him|strong="G3588"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w has|strong="G2192"\w* \w great|strong="G4183"\w* zeal \w for|strong="G1063"\w* \w you|strong="G5210"\w*, \w and|strong="G2532"\w* \w for|strong="G1063"\w* \w those|strong="G3588"\w* \w in|strong="G1722"\w* \w Laodicea|strong="G2993"\w*, \w and|strong="G2532"\w* \w for|strong="G1063"\w* \w those|strong="G3588"\w* \w in|strong="G1722"\w* \w Hierapolis|strong="G2404"\w*. +\v 14 \w Luke|strong="G3065"\w* \w the|strong="G2532"\w* beloved \w physician|strong="G2395"\w* \w and|strong="G2532"\w* \w Demas|strong="G1214"\w* greet \w you|strong="G5210"\w*. +\v 15 Greet \w the|strong="G1722"\w* brothers \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w in|strong="G1722"\w* \w Laodicea|strong="G2993"\w*, \w with|strong="G1722"\w* \w Nymphas|strong="G3564"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w* \w that|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w his|strong="G1722"\w* \w house|strong="G3624"\w*. +\v 16 \w When|strong="G3752"\w* \w this|strong="G3588"\w* \w letter|strong="G1992"\w* \w has|strong="G2532"\w* \w been|strong="G2532"\w* read \w among|strong="G1722"\w* \w you|strong="G5210"\w*, \w cause|strong="G4160"\w* \w it|strong="G2532"\w* \w to|strong="G2443"\w* \w be|strong="G2532"\w* read \w also|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w Laodiceans|strong="G2994"\w*, \w and|strong="G2532"\w* \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w also|strong="G2532"\w* read \w the|strong="G1722"\w* \w letter|strong="G1992"\w* \w from|strong="G1537"\w* \w Laodicea|strong="G2993"\w*. +\v 17 \w Tell|strong="G3004"\w* Archippus, “\w Take|strong="G3880"\w* heed \w to|strong="G2443"\w* \w the|strong="G1722"\w* \w ministry|strong="G1248"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w have|strong="G2532"\w* \w received|strong="G3880"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w that|strong="G2443"\w* \w you|strong="G3739"\w* \w fulfill|strong="G4137"\w* \w it|strong="G2532"\w*.” +\p +\v 18 \w I|strong="G1473"\w*, \w Paul|strong="G3972"\w*, write \w this|strong="G3588"\w* greeting \w with|strong="G3326"\w* \w my|strong="G1699"\w* \w own|strong="G1699"\w* \w hand|strong="G5495"\w*. \w Remember|strong="G3421"\w* \w my|strong="G1699"\w* \w chains|strong="G1199"\w*. \w Grace|strong="G5485"\w* \w be|strong="G3588"\w* \w with|strong="G3326"\w* \w you|strong="G5210"\w*. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/82-1THeng-web.usfm b/bibles/eng-web_usfm/82-1THeng-web.usfm new file mode 100644 index 0000000..72a7285 --- /dev/null +++ b/bibles/eng-web_usfm/82-1THeng-web.usfm @@ -0,0 +1,122 @@ +\id 1TH 52-1TH-web.sfm World English Bible (WEB) +\ide UTF-8 +\h 1 Thessalonians +\toc1 Paul’s First Letter to the Thessalonians +\toc2 1 Thessalonians +\toc3 1Th +\mt1 Paul’s First Letter to the Thessalonians +\c 1 +\p +\v 1 \w Paul|strong="G3972"\w*, \w Silvanus|strong="G4610"\w*, \w and|strong="G2532"\w* \w Timothy|strong="G5095"\w*, \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w Thessalonians|strong="G2331"\w* \w in|strong="G1722"\w* \w God|strong="G2316"\w* \w the|strong="G1722"\w* \w Father|strong="G3962"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*:\f + \fr 1:1 \ft “Christ” means “Anointed One”.\f* \w Grace|strong="G5485"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w peace|strong="G1515"\w* \w from|strong="G1515"\w* \w God|strong="G2316"\w* \w our|strong="G2316"\w* \w Father|strong="G3962"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\p +\v 2 \w We|strong="G2249"\w* \w always|strong="G3842"\w* \w give|strong="G2168"\w* \w thanks|strong="G2168"\w* \w to|strong="G1909"\w* \w God|strong="G2316"\w* \w for|strong="G4012"\w* \w all|strong="G3956"\w* \w of|strong="G4012"\w* \w you|strong="G5210"\w*, mentioning \w you|strong="G5210"\w* \w in|strong="G1909"\w* \w our|strong="G2316"\w* \w prayers|strong="G4335"\w*, +\v 3 \w remembering|strong="G3421"\w* \w without|strong="G2532"\w* ceasing \w your|strong="G2962"\w* \w work|strong="G2041"\w* \w of|strong="G2316"\w* \w faith|strong="G4102"\w* \w and|strong="G2532"\w* \w labor|strong="G2873"\w* \w of|strong="G2316"\w* love \w and|strong="G2532"\w* \w perseverance|strong="G5281"\w* \w of|strong="G2316"\w* \w hope|strong="G1680"\w* \w in|strong="G2532"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w before|strong="G1715"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w Father|strong="G3962"\w*. +\v 4 \w We|strong="G1492"\w* \w know|strong="G1492"\w*, brothers\f + \fr 1:4 \ft The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” \f* loved \w by|strong="G5259"\w* \w God|strong="G2316"\w*, \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w are|strong="G3588"\w* \w chosen|strong="G1589"\w*, +\v 5 \w and|strong="G2532"\w* \w that|strong="G3754"\w* \w our|strong="G2532"\w* \w Good|strong="G1223"\w* \w News|strong="G3056"\w* \w came|strong="G1096"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w not|strong="G3756"\w* \w in|strong="G1722"\w* \w word|strong="G3056"\w* \w only|strong="G3440"\w*, \w but|strong="G2532"\w* \w also|strong="G2532"\w* \w in|strong="G1722"\w* \w power|strong="G1411"\w*, \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w and|strong="G2532"\w* \w with|strong="G1722"\w* \w much|strong="G4183"\w* \w assurance|strong="G4136"\w*. \w You|strong="G5210"\w* \w know|strong="G1492"\w* \w what|strong="G3588"\w* \w kind|strong="G3634"\w* \w of|strong="G3056"\w* \w men|strong="G3588"\w* \w we|strong="G2249"\w* showed \w ourselves|strong="G2249"\w* \w to|strong="G1519"\w* \w be|strong="G1096"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w* \w for|strong="G3754"\w* \w your|strong="G1223"\w* \w sake|strong="G1223"\w*. +\v 6 \w You|strong="G5210"\w* \w became|strong="G1096"\w* \w imitators|strong="G3402"\w* \w of|strong="G3056"\w* \w us|strong="G2249"\w* \w and|strong="G2532"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w having|strong="G2532"\w* \w received|strong="G1209"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w in|strong="G1722"\w* \w much|strong="G4183"\w* \w affliction|strong="G2347"\w*, \w with|strong="G3326"\w* \w joy|strong="G5479"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*, +\v 7 \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w became|strong="G1096"\w* \w an|strong="G2532"\w* \w example|strong="G5179"\w* \w to|strong="G2532"\w* \w all|strong="G3956"\w* \w who|strong="G3588"\w* \w believe|strong="G4100"\w* \w in|strong="G1722"\w* \w Macedonia|strong="G3109"\w* \w and|strong="G2532"\w* \w in|strong="G1722"\w* Achaia. +\v 8 \w For|strong="G1063"\w* \w from|strong="G2532"\w* \w you|strong="G5210"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w has|strong="G2192"\w* \w been|strong="G2192"\w* \w declared|strong="G2980"\w*, \w not|strong="G3756"\w* \w only|strong="G3440"\w* \w in|strong="G1722"\w* \w Macedonia|strong="G3109"\w* \w and|strong="G2532"\w* Achaia, \w but|strong="G2532"\w* \w also|strong="G2532"\w* \w in|strong="G1722"\w* \w every|strong="G3956"\w* \w place|strong="G5117"\w* \w your|strong="G2192"\w* \w faith|strong="G4102"\w* \w toward|strong="G4314"\w* \w God|strong="G2316"\w* \w has|strong="G2192"\w* \w gone|strong="G1831"\w* \w out|strong="G1831"\w*, \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w we|strong="G2249"\w* \w need|strong="G5532"\w* \w not|strong="G3756"\w* \w to|strong="G4314"\w* \w say|strong="G2980"\w* \w anything|strong="G5100"\w*. +\v 9 \w For|strong="G1063"\w* \w they|strong="G2532"\w* themselves report \w concerning|strong="G4012"\w* \w us|strong="G2249"\w* \w what|strong="G3588"\w* \w kind|strong="G3697"\w* \w of|strong="G4012"\w* \w a|strong="G2192"\w* \w reception|strong="G1529"\w* \w we|strong="G2249"\w* \w had|strong="G2192"\w* \w from|strong="G2532"\w* \w you|strong="G5210"\w*, \w and|strong="G2532"\w* \w how|strong="G4459"\w* \w you|strong="G5210"\w* \w turned|strong="G1994"\w* \w to|strong="G4314"\w* \w God|strong="G2316"\w* \w from|strong="G2532"\w* \w idols|strong="G1497"\w* \w to|strong="G4314"\w* \w serve|strong="G1398"\w* \w a|strong="G2192"\w* \w living|strong="G2198"\w* \w and|strong="G2532"\w* \w true|strong="G3588"\w* \w God|strong="G2316"\w*, +\v 10 \w and|strong="G2532"\w* \w to|strong="G2532"\w* wait \w for|strong="G2532"\w* \w his|strong="G2532"\w* \w Son|strong="G5207"\w* \w from|strong="G1537"\w* \w heaven|strong="G3772"\w*, \w whom|strong="G3739"\w* \w he|strong="G2532"\w* \w raised|strong="G1453"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*: \w Jesus|strong="G2424"\w*, \w who|strong="G3739"\w* delivers \w us|strong="G2249"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w wrath|strong="G3709"\w* \w to|strong="G2532"\w* \w come|strong="G2064"\w*. +\c 2 +\p +\v 1 \w For|strong="G1063"\w* \w you|strong="G5210"\w* \w yourselves|strong="G4771"\w* \w know|strong="G1492"\w*, brothers, \w our|strong="G4314"\w* visit \w to|strong="G4314"\w* \w you|strong="G5210"\w* wasn’\w t|strong="G3588"\w* \w in|strong="G1096"\w* \w vain|strong="G2756"\w*, +\v 2 \w but|strong="G2532"\w* \w having|strong="G2532"\w* \w suffered|strong="G4310"\w* \w before|strong="G4314"\w* \w and|strong="G2532"\w* \w been|strong="G2532"\w* shamefully treated, \w as|strong="G2531"\w* \w you|strong="G5210"\w* \w know|strong="G1492"\w*, \w at|strong="G1722"\w* \w Philippi|strong="G5375"\w*, \w we|strong="G2249"\w* grew \w bold|strong="G3955"\w* \w in|strong="G1722"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w* \w to|strong="G4314"\w* \w tell|strong="G1492"\w* \w you|strong="G5210"\w* \w the|strong="G1722"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w in|strong="G1722"\w* \w much|strong="G4183"\w* conflict. +\v 3 \w For|strong="G1063"\w* \w our|strong="G1722"\w* \w exhortation|strong="G3874"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w of|strong="G1537"\w* \w error|strong="G4106"\w*, \w nor|strong="G3761"\w* \w of|strong="G1537"\w* uncleanness, \w nor|strong="G3761"\w* \w in|strong="G1722"\w* \w deception|strong="G4106"\w*. +\v 4 \w But|strong="G2316"\w* \w even|strong="G2531"\w* \w as|strong="G5613"\w* \w we|strong="G2249"\w* \w have|strong="G1473"\w* \w been|strong="G3756"\w* \w approved|strong="G1381"\w* \w by|strong="G5259"\w* \w God|strong="G2316"\w* \w to|strong="G3756"\w* \w be|strong="G3756"\w* \w entrusted|strong="G4100"\w* \w with|strong="G2980"\w* \w the|strong="G3588"\w* \w Good|strong="G3756"\w* \w News|strong="G2098"\w*, \w so|strong="G3779"\w* \w we|strong="G2249"\w* \w speak|strong="G2980"\w*—\w not|strong="G3756"\w* \w as|strong="G5613"\w* pleasing \w men|strong="G3588"\w*, \w but|strong="G2316"\w* \w God|strong="G2316"\w*, \w who|strong="G3588"\w* tests \w our|strong="G2316"\w* \w hearts|strong="G2588"\w*. +\v 5 \w For|strong="G1063"\w* \w neither|strong="G3777"\w* \w were|strong="G1096"\w* \w we|strong="G1063"\w* \w at|strong="G1722"\w* \w any|strong="G1492"\w* \w time|strong="G4218"\w* \w found|strong="G1096"\w* using \w words|strong="G3056"\w* \w of|strong="G3056"\w* flattery, \w as|strong="G2531"\w* \w you|strong="G1722"\w* \w know|strong="G1492"\w*, \w nor|strong="G3777"\w* \w a|strong="G1096"\w* cloak \w of|strong="G3056"\w* \w covetousness|strong="G4124"\w* (\w God|strong="G2316"\w* \w is|strong="G2316"\w* \w witness|strong="G3144"\w*), +\v 6 \w nor|strong="G3777"\w* \w seeking|strong="G2212"\w* \w glory|strong="G1391"\w* \w from|strong="G1537"\w* \w men|strong="G1722"\w* (\w neither|strong="G3777"\w* \w from|strong="G1537"\w* \w you|strong="G5210"\w* \w nor|strong="G3777"\w* \w from|strong="G1537"\w* others), \w when|strong="G5613"\w* \w we|strong="G5613"\w* \w might|strong="G1410"\w* \w have|strong="G1510"\w* claimed \w authority|strong="G2212"\w* \w as|strong="G5613"\w* apostles \w of|strong="G1537"\w* \w Christ|strong="G5547"\w*. +\v 7 \w But|strong="G1437"\w* \w we|strong="G1437"\w* \w were|strong="G1510"\w* \w gentle|strong="G2261"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w*, \w like|strong="G5613"\w* \w a|strong="G1096"\w* \w nursing|strong="G5162"\w* mother \w cherishes|strong="G2282"\w* \w her|strong="G1437"\w* \w own|strong="G1438"\w* \w children|strong="G5043"\w*. +\p +\v 8 \w Even|strong="G2532"\w* \w so|strong="G3779"\w*, affectionately longing \w for|strong="G1360"\w* \w you|strong="G5210"\w*, \w we|strong="G2249"\w* \w were|strong="G3588"\w* \w well|strong="G2532"\w* \w pleased|strong="G2106"\w* \w to|strong="G2532"\w* \w impart|strong="G3330"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w not|strong="G3756"\w* \w the|strong="G2532"\w* \w Good|strong="G2106"\w* \w News|strong="G2098"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w only|strong="G3440"\w*, \w but|strong="G2532"\w* \w also|strong="G2532"\w* \w our|strong="G2316"\w* \w own|strong="G1438"\w* \w souls|strong="G5590"\w*, \w because|strong="G1360"\w* \w you|strong="G5210"\w* \w had|strong="G2532"\w* \w become|strong="G1096"\w* \w very|strong="G2532"\w* dear \w to|strong="G2532"\w* \w us|strong="G2249"\w*. +\v 9 \w For|strong="G1063"\w* \w you|strong="G5210"\w* \w remember|strong="G3421"\w*, brothers, \w our|strong="G2316"\w* \w labor|strong="G2873"\w* \w and|strong="G2532"\w* \w travail|strong="G3449"\w*; \w for|strong="G1063"\w* \w working|strong="G2038"\w* \w night|strong="G3571"\w* \w and|strong="G2532"\w* \w day|strong="G2250"\w*, \w that|strong="G3588"\w* \w we|strong="G2249"\w* \w might|strong="G2532"\w* \w not|strong="G3361"\w* \w burden|strong="G1912"\w* \w any|strong="G5100"\w* \w of|strong="G2250"\w* \w you|strong="G5210"\w*, \w we|strong="G2249"\w* \w preached|strong="G2784"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w the|strong="G2532"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w of|strong="G2250"\w* \w God|strong="G2316"\w*. +\v 10 \w You|strong="G5210"\w* \w are|strong="G3588"\w* \w witnesses|strong="G3144"\w* \w with|strong="G2532"\w* \w God|strong="G2316"\w* \w how|strong="G5613"\w* holy, \w righteously|strong="G1346"\w*, \w and|strong="G2532"\w* blamelessly \w we|strong="G2532"\w* \w behaved|strong="G1096"\w* \w ourselves|strong="G1096"\w* toward \w you|strong="G5210"\w* \w who|strong="G3588"\w* \w believe|strong="G4100"\w*. +\v 11 \w As|strong="G5613"\w* \w you|strong="G5210"\w* \w know|strong="G1492"\w*, \w we|strong="G2532"\w* \w exhorted|strong="G3870"\w*, \w comforted|strong="G3870"\w*, \w and|strong="G2532"\w* \w implored|strong="G3870"\w* \w every|strong="G1538"\w* \w one|strong="G1520"\w* \w of|strong="G2532"\w* \w you|strong="G5210"\w*, \w as|strong="G5613"\w* \w a|strong="G5613"\w* \w father|strong="G3962"\w* \w does|strong="G1492"\w* \w his|strong="G1438"\w* \w own|strong="G1438"\w* \w children|strong="G5043"\w*, +\v 12 \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w end|strong="G1519"\w* \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w should|strong="G2316"\w* \w walk|strong="G4043"\w* worthily \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w who|strong="G3588"\w* \w calls|strong="G2564"\w* \w you|strong="G5210"\w* \w into|strong="G1519"\w* \w his|strong="G1438"\w* \w own|strong="G1438"\w* Kingdom \w and|strong="G2532"\w* \w glory|strong="G1391"\w*. +\p +\v 13 \w For|strong="G3754"\w* \w this|strong="G3778"\w* \w cause|strong="G1223"\w* \w we|strong="G2249"\w* \w also|strong="G2532"\w* \w thank|strong="G2168"\w* \w God|strong="G2316"\w* \w without|strong="G2532"\w* ceasing \w that|strong="G3754"\w* \w when|strong="G2532"\w* \w you|strong="G5210"\w* \w received|strong="G1209"\w* \w from|strong="G3844"\w* \w us|strong="G2249"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w message|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w*, \w you|strong="G5210"\w* \w accepted|strong="G1209"\w* \w it|strong="G2532"\w* \w not|strong="G3756"\w* \w as|strong="G2531"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w men|strong="G3778"\w*, \w but|strong="G2532"\w* \w as|strong="G2531"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w in|strong="G1722"\w* truth, \w God|strong="G2316"\w*’s \w word|strong="G3056"\w*, \w which|strong="G3739"\w* \w also|strong="G2532"\w* \w works|strong="G1754"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w* \w who|strong="G3739"\w* \w believe|strong="G4100"\w*. +\v 14 \w For|strong="G1063"\w* \w you|strong="G5210"\w*, brothers, \w became|strong="G1096"\w* \w imitators|strong="G3402"\w* \w of|strong="G5259"\w* \w the|strong="G1722"\w* \w assemblies|strong="G1577"\w* \w of|strong="G5259"\w* \w God|strong="G2316"\w* \w which|strong="G3588"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w Judea|strong="G2453"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*; \w for|strong="G1063"\w* \w you|strong="G5210"\w* \w also|strong="G2532"\w* \w suffered|strong="G3958"\w* \w the|strong="G1722"\w* \w same|strong="G2532"\w* \w things|strong="G3588"\w* \w from|strong="G2532"\w* \w your|strong="G2532"\w* \w own|strong="G2398"\w* \w countrymen|strong="G4853"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w they|strong="G2532"\w* \w did|strong="G2532"\w* \w from|strong="G2532"\w* \w the|strong="G1722"\w* \w Jews|strong="G2453"\w* +\v 15 \w who|strong="G3588"\w* killed \w both|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w and|strong="G2532"\w* \w their|strong="G2532"\w* own \w prophets|strong="G4396"\w*, \w and|strong="G2532"\w* \w drove|strong="G1559"\w* \w us|strong="G2249"\w* \w out|strong="G2532"\w*, \w and|strong="G2532"\w* don’\w t|strong="G3588"\w* please \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w are|strong="G3588"\w* \w contrary|strong="G1727"\w* \w to|strong="G2532"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w*, +\v 16 \w forbidding|strong="G2967"\w* \w us|strong="G1519"\w* \w to|strong="G1519"\w* \w speak|strong="G2980"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w Gentiles|strong="G1484"\w* \w that|strong="G2443"\w* \w they|strong="G1161"\w* \w may|strong="G2443"\w* \w be|strong="G1519"\w* \w saved|strong="G4982"\w*, \w to|strong="G1519"\w* \w fill|strong="G1519"\w* \w up|strong="G1519"\w* \w their|strong="G1438"\w* sins \w always|strong="G3842"\w*. \w But|strong="G1161"\w* \w wrath|strong="G3709"\w* \w has|strong="G3709"\w* \w come|strong="G5348"\w* \w on|strong="G1909"\w* \w them|strong="G3588"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w uttermost|strong="G5056"\w*. +\p +\v 17 \w But|strong="G1161"\w* \w we|strong="G2249"\w*, brothers, \w being|strong="G1722"\w* bereaved \w of|strong="G1722"\w* \w you|strong="G5210"\w* \w for|strong="G4314"\w* \w a|strong="G1722"\w* \w short|strong="G3588"\w* \w season|strong="G2540"\w* \w in|strong="G1722"\w* \w presence|strong="G4383"\w*, \w not|strong="G3756"\w* \w in|strong="G1722"\w* \w heart|strong="G2588"\w*, tried \w even|strong="G1161"\w* harder \w to|strong="G4314"\w* \w see|strong="G3708"\w* \w your|strong="G3708"\w* \w face|strong="G4383"\w* \w with|strong="G1722"\w* \w great|strong="G4183"\w* \w desire|strong="G1939"\w*, +\v 18 \w because|strong="G1360"\w* \w we|strong="G2249"\w* \w wanted|strong="G2309"\w* \w to|strong="G4314"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*—\w indeed|strong="G2532"\w*, \w I|strong="G1473"\w*, \w Paul|strong="G3972"\w*, once \w and|strong="G2532"\w* \w again|strong="G1364"\w*—\w but|strong="G2532"\w* \w Satan|strong="G4567"\w* \w hindered|strong="G1465"\w* \w us|strong="G2249"\w*. +\v 19 \w For|strong="G1063"\w* \w what|strong="G5101"\w* \w is|strong="G3588"\w* \w our|strong="G2424"\w* \w hope|strong="G1680"\w*, \w or|strong="G2228"\w* \w joy|strong="G5479"\w*, \w or|strong="G2228"\w* \w crown|strong="G4735"\w* \w of|strong="G2532"\w* \w rejoicing|strong="G2746"\w*? Isn’\w t|strong="G3588"\w* \w it|strong="G2532"\w* \w even|strong="G2532"\w* \w you|strong="G5210"\w*, \w before|strong="G1715"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*\f + \fr 2:19 \ft TR adds “Christ”\f* \w at|strong="G1722"\w* \w his|strong="G1722"\w* \w coming|strong="G3952"\w*? +\v 20 \w For|strong="G1063"\w* \w you|strong="G5210"\w* \w are|strong="G1510"\w* \w our|strong="G2532"\w* \w glory|strong="G1391"\w* \w and|strong="G2532"\w* \w our|strong="G2532"\w* \w joy|strong="G5479"\w*. +\c 3 +\p +\v 1 \w Therefore|strong="G1352"\w* \w when|strong="G1722"\w* \w we|strong="G1352"\w* couldn’t stand \w it|strong="G2106"\w* \w any|strong="G1722"\w* \w longer|strong="G3371"\w*, \w we|strong="G1352"\w* \w thought|strong="G2106"\w* \w it|strong="G2106"\w* \w good|strong="G2106"\w* \w to|strong="G1722"\w* \w be|strong="G3371"\w* \w left|strong="G2641"\w* \w behind|strong="G2641"\w* \w at|strong="G1722"\w* Athens \w alone|strong="G3441"\w*, +\v 2 \w and|strong="G2532"\w* \w sent|strong="G3992"\w* \w Timothy|strong="G5095"\w*, \w our|strong="G2316"\w* brother \w and|strong="G2532"\w* \w God|strong="G2316"\w*’s \w servant|strong="G1249"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w of|strong="G2316"\w* \w Christ|strong="G5547"\w*, \w to|strong="G1519"\w* \w establish|strong="G4741"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w to|strong="G1519"\w* \w comfort|strong="G3870"\w* \w you|strong="G5210"\w* \w concerning|strong="G1519"\w* \w your|strong="G2532"\w* \w faith|strong="G4102"\w*, +\v 3 \w that|strong="G3754"\w* \w no|strong="G3367"\w* \w one|strong="G3367"\w* \w would|strong="G1722"\w* \w be|strong="G1519"\w* \w moved|strong="G4525"\w* \w by|strong="G1722"\w* \w these|strong="G3778"\w* \w afflictions|strong="G2347"\w*. \w For|strong="G1063"\w* \w you|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w we|strong="G3754"\w* \w are|strong="G3588"\w* \w appointed|strong="G2749"\w* \w to|strong="G1519"\w* \w this|strong="G3778"\w* task. +\v 4 \w For|strong="G1063"\w* most \w certainly|strong="G3195"\w*, \w when|strong="G3753"\w* \w we|strong="G3754"\w* \w were|strong="G1510"\w* \w with|strong="G4314"\w* \w you|strong="G5210"\w*, \w we|strong="G3754"\w* \w told|strong="G4314"\w* \w you|strong="G5210"\w* beforehand \w that|strong="G3754"\w* \w we|strong="G3754"\w* \w are|strong="G1510"\w* \w to|strong="G4314"\w* \w suffer|strong="G2532"\w* \w affliction|strong="G2346"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w it|strong="G2532"\w* \w happened|strong="G1096"\w*, \w and|strong="G2532"\w* \w you|strong="G5210"\w* \w know|strong="G1492"\w*. +\v 5 \w For|strong="G1519"\w* \w this|strong="G3778"\w* \w cause|strong="G1223"\w* \w I|strong="G1473"\w* \w also|strong="G2532"\w*, \w when|strong="G2532"\w* \w I|strong="G1473"\w* couldn’\w t|strong="G3588"\w* \w stand|strong="G5210"\w* \w it|strong="G2532"\w* \w any|strong="G3361"\w* \w longer|strong="G3371"\w*, \w sent|strong="G3992"\w* \w that|strong="G3588"\w* \w I|strong="G1473"\w* \w might|strong="G2532"\w* \w know|strong="G1097"\w* \w your|strong="G1223"\w* \w faith|strong="G4102"\w*, \w for|strong="G1519"\w* \w fear|strong="G3381"\w* \w that|strong="G3588"\w* \w by|strong="G1223"\w* \w any|strong="G3361"\w* \w means|strong="G3381"\w* \w the|strong="G2532"\w* \w tempter|strong="G3985"\w* \w had|strong="G2532"\w* \w tempted|strong="G3985"\w* \w you|strong="G5210"\w*, \w and|strong="G2532"\w* \w our|strong="G2532"\w* \w labor|strong="G2873"\w* \w would|strong="G1096"\w* \w have|strong="G2532"\w* \w been|strong="G1096"\w* \w in|strong="G1519"\w* \w vain|strong="G2756"\w*. +\p +\v 6 \w But|strong="G1161"\w* \w Timothy|strong="G5095"\w* \w has|strong="G2192"\w* \w just|strong="G2509"\w* \w now|strong="G1161"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w us|strong="G2097"\w* \w from|strong="G2064"\w* \w you|strong="G5210"\w*, \w and|strong="G2532"\w* \w brought|strong="G2064"\w* \w us|strong="G2097"\w* glad \w news|strong="G2097"\w* \w of|strong="G2532"\w* \w your|strong="G2192"\w* \w faith|strong="G4102"\w* \w and|strong="G2532"\w* love, \w and|strong="G2532"\w* \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w have|strong="G2192"\w* \w good|strong="G2097"\w* memories \w of|strong="G2532"\w* \w us|strong="G2097"\w* \w always|strong="G3842"\w*, \w longing|strong="G1971"\w* \w to|strong="G4314"\w* \w see|strong="G3708"\w* \w us|strong="G2097"\w*, \w even|strong="G2532"\w* \w as|strong="G1161"\w* \w we|strong="G2249"\w* \w also|strong="G2532"\w* \w long|strong="G1971"\w* \w to|strong="G4314"\w* \w see|strong="G3708"\w* \w you|strong="G5210"\w*. +\v 7 \w For|strong="G1223"\w* \w this|strong="G3778"\w* \w cause|strong="G1223"\w*, brothers, \w we|strong="G2249"\w* \w were|strong="G3588"\w* \w comforted|strong="G3870"\w* \w over|strong="G1909"\w* \w you|strong="G5210"\w* \w in|strong="G1909"\w* \w all|strong="G3956"\w* \w our|strong="G2532"\w* \w distress|strong="G2347"\w* \w and|strong="G2532"\w* \w affliction|strong="G2347"\w* \w through|strong="G1223"\w* \w your|strong="G1223"\w* \w faith|strong="G4102"\w*. +\v 8 \w For|strong="G3754"\w* \w now|strong="G3568"\w* \w we|strong="G1437"\w* \w live|strong="G2198"\w*, \w if|strong="G1437"\w* \w you|strong="G5210"\w* \w stand|strong="G4739"\w* \w fast|strong="G4739"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\v 9 \w For|strong="G1063"\w* \w what|strong="G5101"\w* \w thanksgiving|strong="G2169"\w* \w can|strong="G1410"\w* \w we|strong="G2249"\w* \w give|strong="G1473"\w* again \w to|strong="G1909"\w* \w God|strong="G2316"\w* \w for|strong="G1063"\w* \w you|strong="G5210"\w*, \w for|strong="G1063"\w* \w all|strong="G3956"\w* \w the|strong="G3956"\w* \w joy|strong="G5479"\w* \w with|strong="G1223"\w* \w which|strong="G3739"\w* \w we|strong="G2249"\w* \w rejoice|strong="G5463"\w* \w for|strong="G1063"\w* \w your|strong="G1223"\w* \w sakes|strong="G1223"\w* \w before|strong="G1715"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w*, +\v 10 \w night|strong="G3571"\w* \w and|strong="G2532"\w* \w day|strong="G2250"\w* \w praying|strong="G1189"\w* exceedingly \w that|strong="G3588"\w* \w we|strong="G2532"\w* \w may|strong="G2532"\w* \w see|strong="G3708"\w* \w your|strong="G2532"\w* \w face|strong="G4383"\w* \w and|strong="G2532"\w* \w may|strong="G2532"\w* \w perfect|strong="G2675"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w lacking|strong="G5303"\w* \w in|strong="G1519"\w* \w your|strong="G2532"\w* \w faith|strong="G4102"\w*? +\p +\v 11 \w Now|strong="G1161"\w* \w may|strong="G2532"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w Father|strong="G3962"\w* himself, \w and|strong="G2532"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G2962"\w*, \w direct|strong="G2720"\w* \w our|strong="G2316"\w* \w way|strong="G3598"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*. +\v 12 \w May|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w make|strong="G1519"\w* \w you|strong="G5210"\w* \w to|strong="G1519"\w* \w increase|strong="G4121"\w* \w and|strong="G2532"\w* \w abound|strong="G4052"\w* \w in|strong="G1519"\w* love \w toward|strong="G1519"\w* \w one|strong="G3956"\w* \w another|strong="G3588"\w* \w and|strong="G2532"\w* \w toward|strong="G1519"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w*, \w even|strong="G2532"\w* \w as|strong="G1519"\w* \w we|strong="G2249"\w* \w also|strong="G2532"\w* \w do|strong="G2532"\w* \w toward|strong="G1519"\w* \w you|strong="G5210"\w*, +\v 13 \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w end|strong="G1519"\w* \w he|strong="G2532"\w* \w may|strong="G2532"\w* \w establish|strong="G4741"\w* \w your|strong="G2962"\w* \w hearts|strong="G2588"\w* blameless \w in|strong="G1722"\w* holiness \w before|strong="G1715"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w Father|strong="G3962"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w coming|strong="G3952"\w* \w of|strong="G2316"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w with|strong="G3326"\w* \w all|strong="G3956"\w* \w his|strong="G3956"\w* saints. +\c 4 +\p +\v 1 \w Finally|strong="G3063"\w* \w then|strong="G3767"\w*, brothers, \w we|strong="G2249"\w* \w beg|strong="G3870"\w* \w and|strong="G2532"\w* \w exhort|strong="G3870"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*, \w that|strong="G2443"\w* \w as|strong="G2531"\w* \w you|strong="G5210"\w* \w received|strong="G3880"\w* \w from|strong="G3844"\w* \w us|strong="G2249"\w* \w how|strong="G4459"\w* \w you|strong="G5210"\w* \w ought|strong="G1163"\w* \w to|strong="G2443"\w* \w walk|strong="G4043"\w* \w and|strong="G2532"\w* \w to|strong="G2443"\w* \w please|strong="G2065"\w* \w God|strong="G2316"\w*, \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w abound|strong="G4052"\w* \w more|strong="G3123"\w* \w and|strong="G2532"\w* \w more|strong="G3123"\w*. +\v 2 \w For|strong="G1063"\w* \w you|strong="G5210"\w* \w know|strong="G1492"\w* \w what|strong="G5101"\w* instructions \w we|strong="G1063"\w* \w gave|strong="G1325"\w* \w you|strong="G5210"\w* \w through|strong="G1223"\w* \w the|strong="G1223"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*. +\v 3 \w For|strong="G1063"\w* \w this|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G3588"\w* \w will|strong="G2307"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*: \w your|strong="G3588"\w* sanctification, \w that|strong="G3588"\w* \w you|strong="G5210"\w* abstain \w from|strong="G3588"\w* \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w*, +\v 4 \w that|strong="G3588"\w* \w each|strong="G1538"\w* \w one|strong="G1538"\w* \w of|strong="G2532"\w* \w you|strong="G5210"\w* \w know|strong="G1492"\w* \w how|strong="G1492"\w* \w to|strong="G2532"\w* control \w his|strong="G1438"\w* \w own|strong="G1438"\w* \w body|strong="G4632"\w*\f + \fr 4:4 \ft literally, possess his own vessel\f* \w in|strong="G1722"\w* sanctification \w and|strong="G2532"\w* \w honor|strong="G5092"\w*, +\v 5 \w not|strong="G3361"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w passion|strong="G3806"\w* \w of|strong="G2316"\w* \w lust|strong="G1939"\w*, \w even|strong="G2532"\w* \w as|strong="G1722"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w* \w who|strong="G3588"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w God|strong="G2316"\w*, +\v 6 \w that|strong="G3588"\w* \w no|strong="G3361"\w* \w one|strong="G3956"\w* \w should|strong="G3588"\w* \w take|strong="G2532"\w* \w advantage|strong="G4122"\w* \w of|strong="G4012"\w* \w and|strong="G2532"\w* wrong \w a|strong="G2532"\w* brother \w or|strong="G2532"\w* sister \w in|strong="G1722"\w* \w this|strong="G3778"\w* \w matter|strong="G4229"\w*; \w because|strong="G1360"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w is|strong="G3588"\w* \w an|strong="G2532"\w* \w avenger|strong="G1558"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w*, \w as|strong="G2531"\w* \w also|strong="G2532"\w* \w we|strong="G2532"\w* forewarned \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w testified|strong="G1263"\w*. +\v 7 \w For|strong="G1063"\w* \w God|strong="G2316"\w* \w called|strong="G2564"\w* \w us|strong="G2249"\w* \w not|strong="G3756"\w* \w for|strong="G1063"\w* uncleanness, \w but|strong="G1063"\w* \w in|strong="G1722"\w* sanctification. +\v 8 \w Therefore|strong="G5105"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* rejects \w this|strong="G3588"\w* doesn’\w t|strong="G3588"\w* reject \w man|strong="G3756"\w*, \w but|strong="G2532"\w* \w God|strong="G2316"\w*, \w who|strong="G3588"\w* \w has|strong="G2316"\w* \w also|strong="G2532"\w* \w given|strong="G1325"\w* \w his|strong="G1519"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w*. +\p +\v 9 \w But|strong="G1161"\w* \w concerning|strong="G4012"\w* \w brotherly|strong="G5360"\w* \w love|strong="G5360"\w*, \w you|strong="G5210"\w* \w have|strong="G2192"\w* \w no|strong="G3756"\w* \w need|strong="G5532"\w* \w that|strong="G3588"\w* \w one|strong="G3588"\w* \w write|strong="G1125"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w*. \w For|strong="G1063"\w* \w you|strong="G5210"\w* \w yourselves|strong="G4771"\w* \w are|strong="G1510"\w* \w taught|strong="G2312"\w* \w by|strong="G1519"\w* \w God|strong="G2312"\w* \w to|strong="G1519"\w* \w love|strong="G5360"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w*, +\v 10 \w for|strong="G1063"\w* \w indeed|strong="G2532"\w* \w you|strong="G5210"\w* \w do|strong="G4160"\w* \w it|strong="G2532"\w* \w toward|strong="G1519"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* brothers \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w Macedonia|strong="G3109"\w*. \w But|strong="G1161"\w* \w we|strong="G1063"\w* \w exhort|strong="G3870"\w* \w you|strong="G5210"\w*, brothers, \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w abound|strong="G4052"\w* \w more|strong="G3123"\w* \w and|strong="G2532"\w* \w more|strong="G3123"\w*; +\v 11 \w and|strong="G2532"\w* \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w make|strong="G2532"\w* \w it|strong="G2532"\w* \w your|strong="G2532"\w* \w ambition|strong="G5389"\w* \w to|strong="G2532"\w* \w lead|strong="G2270"\w* \w a|strong="G2532"\w* \w quiet|strong="G2270"\w* \w life|strong="G2270"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w do|strong="G4238"\w* \w your|strong="G2532"\w* \w own|strong="G2398"\w* \w business|strong="G3588"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w work|strong="G2038"\w* \w with|strong="G2532"\w* \w your|strong="G2532"\w* \w own|strong="G2398"\w* \w hands|strong="G5495"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w we|strong="G2532"\w* \w instructed|strong="G3853"\w* \w you|strong="G5210"\w*, +\v 12 \w that|strong="G2443"\w* \w you|strong="G2532"\w* \w may|strong="G2532"\w* \w walk|strong="G4043"\w* \w properly|strong="G2156"\w* \w toward|strong="G4314"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w outside|strong="G1854"\w*, \w and|strong="G2532"\w* \w may|strong="G2532"\w* \w have|strong="G2192"\w* \w need|strong="G5532"\w* \w of|strong="G2532"\w* \w nothing|strong="G3367"\w*. +\p +\v 13 \w But|strong="G1161"\w* \w we|strong="G2532"\w* don’\w t|strong="G3588"\w* \w want|strong="G2309"\w* \w you|strong="G5210"\w* \w to|strong="G2443"\w* \w be|strong="G2532"\w* \w ignorant|strong="G3361"\w*, brothers, \w concerning|strong="G4012"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w have|strong="G2192"\w* \w fallen|strong="G2837"\w* \w asleep|strong="G2837"\w*, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w you|strong="G5210"\w* don’\w t|strong="G3588"\w* \w grieve|strong="G3076"\w* \w like|strong="G2531"\w* \w the|strong="G2532"\w* \w rest|strong="G3062"\w*, \w who|strong="G3588"\w* \w have|strong="G2192"\w* \w no|strong="G3756"\w* \w hope|strong="G1680"\w*. +\v 14 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w we|strong="G3754"\w* \w believe|strong="G4100"\w* \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w died|strong="G2837"\w* \w and|strong="G2532"\w* \w rose|strong="G2532"\w* \w again|strong="G2532"\w*, \w even|strong="G2532"\w* \w so|strong="G3779"\w* \w God|strong="G2316"\w* \w will|strong="G2316"\w* \w bring|strong="G2532"\w* \w with|strong="G4862"\w* \w him|strong="G3588"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w have|strong="G2532"\w* \w fallen|strong="G2837"\w* \w asleep|strong="G2837"\w* \w in|strong="G2532"\w* \w Jesus|strong="G2424"\w*. +\v 15 \w For|strong="G1063"\w* \w this|strong="G3778"\w* \w we|strong="G2249"\w* \w tell|strong="G3004"\w* \w you|strong="G5210"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w that|strong="G3754"\w* \w we|strong="G2249"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w alive|strong="G2198"\w*, \w who|strong="G3588"\w* \w are|strong="G3588"\w* left \w until|strong="G1519"\w* \w the|strong="G1722"\w* \w coming|strong="G3952"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w will|strong="G2962"\w* \w in|strong="G1722"\w* \w no|strong="G3756"\w* \w way|strong="G1722"\w* \w precede|strong="G5348"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w have|strong="G1473"\w* \w fallen|strong="G2837"\w* \w asleep|strong="G2837"\w*. +\v 16 \w For|strong="G3754"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* himself \w will|strong="G2316"\w* \w descend|strong="G2597"\w* \w from|strong="G2597"\w* \w heaven|strong="G3772"\w* \w with|strong="G1722"\w* \w a|strong="G2532"\w* \w shout|strong="G2752"\w*, \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w voice|strong="G5456"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* archangel \w and|strong="G2532"\w* \w with|strong="G1722"\w* \w God|strong="G2316"\w*’\w s|strong="G2962"\w* \w trumpet|strong="G4536"\w*. \w The|strong="G1722"\w* \w dead|strong="G3498"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w will|strong="G2316"\w* rise \w first|strong="G4413"\w*, +\v 17 \w then|strong="G2532"\w* \w we|strong="G2249"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w alive|strong="G2198"\w*, \w who|strong="G3588"\w* \w are|strong="G1510"\w* left, \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w caught|strong="G2962"\w* \w up|strong="G1519"\w* \w together|strong="G4862"\w* \w with|strong="G1722"\w* \w them|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w clouds|strong="G3507"\w* \w to|strong="G1519"\w* \w meet|strong="G3588"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* air. \w So|strong="G3779"\w* \w we|strong="G2249"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w forever|strong="G1519"\w*. +\v 18 \w Therefore|strong="G5620"\w* \w comfort|strong="G3870"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w* \w with|strong="G1722"\w* \w these|strong="G3778"\w* \w words|strong="G3056"\w*. +\c 5 +\p +\v 1 \w But|strong="G1161"\w* \w concerning|strong="G4012"\w* \w the|strong="G2532"\w* \w times|strong="G2540"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w seasons|strong="G2540"\w*, brothers, \w you|strong="G5210"\w* \w have|strong="G2192"\w* \w no|strong="G3756"\w* \w need|strong="G5532"\w* \w that|strong="G3588"\w* anything \w be|strong="G2532"\w* \w written|strong="G1125"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*. +\v 2 \w For|strong="G1063"\w* \w you|strong="G3754"\w* \w yourselves|strong="G1722"\w* \w know|strong="G1492"\w* \w well|strong="G1063"\w* \w that|strong="G3754"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w comes|strong="G2064"\w* \w like|strong="G5613"\w* \w a|strong="G5613"\w* \w thief|strong="G2812"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w night|strong="G3571"\w*. +\v 3 \w For|strong="G1722"\w* \w when|strong="G3752"\w* \w they|strong="G2532"\w* \w are|strong="G3588"\w* \w saying|strong="G3004"\w*, “\w Peace|strong="G1515"\w* \w and|strong="G2532"\w* safety,” \w then|strong="G2532"\w* sudden \w destruction|strong="G3639"\w* \w will|strong="G2532"\w* \w come|strong="G2186"\w* \w on|strong="G1722"\w* \w them|strong="G3588"\w*, \w like|strong="G5618"\w* \w birth|strong="G5604"\w* \w pains|strong="G5604"\w* \w on|strong="G1722"\w* \w a|strong="G2192"\w* \w pregnant|strong="G1064"\w* \w woman|strong="G2192"\w*. \w Then|strong="G2532"\w* \w they|strong="G2532"\w* \w will|strong="G2532"\w* \w in|strong="G1722"\w* \w no|strong="G3756"\w* \w way|strong="G1722"\w* \w escape|strong="G1628"\w*. +\v 4 \w But|strong="G1161"\w* \w you|strong="G5210"\w*, brothers, aren’\w t|strong="G3588"\w* \w in|strong="G1722"\w* \w darkness|strong="G4655"\w*, \w that|strong="G2443"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w should|strong="G3588"\w* \w overtake|strong="G2638"\w* \w you|strong="G5210"\w* \w like|strong="G5613"\w* \w a|strong="G5613"\w* \w thief|strong="G2812"\w*. +\v 5 \w You|strong="G5210"\w* \w are|strong="G1510"\w* \w all|strong="G3956"\w* \w children|strong="G5207"\w* \w of|strong="G5207"\w* \w light|strong="G5457"\w* \w and|strong="G2532"\w* \w children|strong="G5207"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w day|strong="G2250"\w*. \w We|strong="G1063"\w* don’t \w belong|strong="G1510"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w night|strong="G3571"\w*, \w nor|strong="G3761"\w* \w to|strong="G2532"\w* \w darkness|strong="G4655"\w*, +\v 6 \w so|strong="G3767"\w* \w then|strong="G3767"\w* \w let|strong="G3767"\w*’s \w not|strong="G3361"\w* \w sleep|strong="G2518"\w*, \w as|strong="G5613"\w* \w the|strong="G2532"\w* \w rest|strong="G3062"\w* \w do|strong="G2532"\w*, \w but|strong="G2532"\w* \w let|strong="G3767"\w*’s \w watch|strong="G1127"\w* \w and|strong="G2532"\w* \w be|strong="G2532"\w* \w sober|strong="G3525"\w*. +\v 7 \w For|strong="G1063"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w sleep|strong="G2518"\w*, \w sleep|strong="G2518"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w night|strong="G3571"\w*; \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w drunk|strong="G3184"\w* \w are|strong="G3588"\w* \w drunk|strong="G3184"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w night|strong="G3571"\w*. +\v 8 \w But|strong="G1161"\w* \w since|strong="G1161"\w* \w we|strong="G2249"\w* \w belong|strong="G1510"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w day|strong="G2250"\w*, \w let|strong="G1161"\w*’s \w be|strong="G1510"\w* \w sober|strong="G3525"\w*, \w putting|strong="G2532"\w* \w on|strong="G1746"\w* \w the|strong="G2532"\w* \w breastplate|strong="G2382"\w* \w of|strong="G2250"\w* \w faith|strong="G4102"\w* \w and|strong="G2532"\w* love, \w and|strong="G2532"\w* \w for|strong="G1161"\w* \w a|strong="G2532"\w* \w helmet|strong="G4030"\w*, \w the|strong="G2532"\w* \w hope|strong="G1680"\w* \w of|strong="G2250"\w* \w salvation|strong="G4991"\w*. +\v 9 \w For|strong="G3754"\w* \w God|strong="G2316"\w* didn’\w t|strong="G3588"\w* \w appoint|strong="G5087"\w* \w us|strong="G1519"\w* \w to|strong="G1519"\w* \w wrath|strong="G3709"\w*, \w but|strong="G2316"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w obtaining|strong="G4047"\w* \w of|strong="G1223"\w* \w salvation|strong="G4991"\w* \w through|strong="G1223"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, +\v 10 \w who|strong="G3588"\w* \w died|strong="G3588"\w* \w for|strong="G4012"\w* \w us|strong="G2249"\w*, \w that|strong="G2443"\w*, \w whether|strong="G1535"\w* \w we|strong="G2249"\w* \w wake|strong="G1127"\w* \w or|strong="G1535"\w* \w sleep|strong="G2518"\w*, \w we|strong="G2249"\w* \w should|strong="G3588"\w* \w live|strong="G2198"\w* \w together|strong="G4862"\w* \w with|strong="G4862"\w* \w him|strong="G3588"\w*. +\v 11 \w Therefore|strong="G1352"\w* \w exhort|strong="G3870"\w* \w one|strong="G1520"\w* \w another|strong="G1520"\w*, \w and|strong="G2532"\w* \w build|strong="G3618"\w* each \w other|strong="G1520"\w* \w up|strong="G3618"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w you|strong="G4160"\w* \w also|strong="G2532"\w* \w do|strong="G4160"\w*. +\p +\v 12 \w But|strong="G1161"\w* \w we|strong="G2532"\w* \w beg|strong="G2065"\w* \w you|strong="G5210"\w*, brothers, \w to|strong="G2532"\w* \w know|strong="G1492"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w labor|strong="G2872"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w*, \w and|strong="G2532"\w* \w are|strong="G3588"\w* \w over|strong="G1722"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w and|strong="G2532"\w* \w admonish|strong="G3560"\w* \w you|strong="G5210"\w*, +\v 13 \w and|strong="G2532"\w* \w to|strong="G2532"\w* respect \w and|strong="G2532"\w* honor \w them|strong="G3588"\w* \w in|strong="G1722"\w* love \w for|strong="G1223"\w* \w their|strong="G1438"\w* \w work|strong="G2041"\w*’s \w sake|strong="G1223"\w*. +\p \w Be|strong="G2532"\w* \w at|strong="G1722"\w* \w peace|strong="G1514"\w* \w among|strong="G1722"\w* \w yourselves|strong="G1438"\w*. +\v 14 \w We|strong="G1161"\w* \w exhort|strong="G3870"\w* \w you|strong="G5210"\w*, brothers: \w Admonish|strong="G3560"\w* \w the|strong="G3956"\w* disorderly; \w encourage|strong="G3870"\w* \w the|strong="G3956"\w* faint-hearted; support \w the|strong="G3956"\w* weak; \w be|strong="G3956"\w* \w patient|strong="G3114"\w* \w toward|strong="G4314"\w* \w all|strong="G3956"\w*. +\v 15 \w See|strong="G3708"\w* \w that|strong="G3588"\w* \w no|strong="G3361"\w* \w one|strong="G5100"\w* returns \w evil|strong="G2556"\w* \w for|strong="G1519"\w* \w evil|strong="G2556"\w* \w to|strong="G1519"\w* \w anyone|strong="G5100"\w*, \w but|strong="G2532"\w* \w always|strong="G3842"\w* \w follow|strong="G1377"\w* \w after|strong="G1377"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w good|strong="G3956"\w* \w for|strong="G1519"\w* \w one|strong="G5100"\w* \w another|strong="G5100"\w* \w and|strong="G2532"\w* \w for|strong="G1519"\w* \w all|strong="G3956"\w*. +\p +\v 16 \w Always|strong="G3842"\w* \w rejoice|strong="G5463"\w*. +\v 17 \w Pray|strong="G4336"\w* \w without|strong="G4336"\w* ceasing. +\v 18 \w In|strong="G1722"\w* \w everything|strong="G3956"\w* \w give|strong="G2168"\w* \w thanks|strong="G2168"\w*, \w for|strong="G1063"\w* \w this|strong="G3778"\w* \w is|strong="G2316"\w* \w the|strong="G1722"\w* \w will|strong="G2307"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w toward|strong="G1519"\w* \w you|strong="G5210"\w*. +\v 19 Don’\w t|strong="G3588"\w* \w quench|strong="G4570"\w* \w the|strong="G3588"\w* \w Spirit|strong="G4151"\w*. +\v 20 Don’t \w despise|strong="G1848"\w* \w prophecies|strong="G4394"\w*. +\v 21 \w Test|strong="G1381"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w and|strong="G1161"\w* \w hold|strong="G2722"\w* \w firmly|strong="G2722"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w good|strong="G2570"\w*. +\v 22 Abstain \w from|strong="G4190"\w* \w every|strong="G3956"\w* \w form|strong="G1491"\w* \w of|strong="G3956"\w* \w evil|strong="G4190"\w*. +\p +\v 23 \w May|strong="G2532"\w* \w the|strong="G1722"\w* \w God|strong="G2316"\w* \w of|strong="G4151"\w* \w peace|strong="G1515"\w* himself sanctify \w you|strong="G5210"\w* \w completely|strong="G3648"\w*. \w May|strong="G2532"\w* \w your|strong="G2962"\w* \w whole|strong="G3648"\w* \w spirit|strong="G4151"\w*, \w soul|strong="G5590"\w*, \w and|strong="G2532"\w* \w body|strong="G4983"\w* \w be|strong="G2532"\w* \w preserved|strong="G5083"\w* blameless \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w coming|strong="G3952"\w* \w of|strong="G4151"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\p +\v 24 \w He|strong="G2532"\w* \w who|strong="G3739"\w* \w calls|strong="G2564"\w* \w you|strong="G5210"\w* \w is|strong="G3588"\w* \w faithful|strong="G4103"\w*, \w who|strong="G3739"\w* \w will|strong="G2532"\w* \w also|strong="G2532"\w* \w do|strong="G4160"\w* \w it|strong="G2532"\w*. +\p +\v 25 Brothers, \w pray|strong="G4336"\w* \w for|strong="G4012"\w* \w us|strong="G2249"\w*. +\p +\v 26 Greet \w all|strong="G3956"\w* \w the|strong="G1722"\w* brothers \w with|strong="G1722"\w* \w a|strong="G1722"\w* holy \w kiss|strong="G5370"\w*. +\v 27 \w I|strong="G3956"\w* solemnly command \w you|strong="G5210"\w* \w by|strong="G3956"\w* \w the|strong="G3956"\w* \w Lord|strong="G2962"\w* \w that|strong="G3588"\w* \w this|strong="G3588"\w* \w letter|strong="G1992"\w* \w be|strong="G3956"\w* read \w to|strong="G3956"\w* \w all|strong="G3956"\w* \w the|strong="G3956"\w* holy brothers. +\p +\v 28 \w The|strong="G3588"\w* \w grace|strong="G5485"\w* \w of|strong="G5485"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w be|strong="G3588"\w* \w with|strong="G3326"\w* \w you|strong="G5210"\w*. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/83-2THeng-web.usfm b/bibles/eng-web_usfm/83-2THeng-web.usfm new file mode 100644 index 0000000..07b6e16 --- /dev/null +++ b/bibles/eng-web_usfm/83-2THeng-web.usfm @@ -0,0 +1,68 @@ +\id 2TH 53-2TH-web.sfm World English Bible (WEB) +\ide UTF-8 +\h 2 Thessalonians +\toc1 Paul’s Second Letter to the Thessalonians +\toc2 2 Thessalonians +\toc3 2Th +\mt1 Paul’s Second Letter to the Thessalonians +\c 1 +\p +\v 1 \w Paul|strong="G3972"\w*, \w Silvanus|strong="G4610"\w*, \w and|strong="G2532"\w* \w Timothy|strong="G5095"\w*, \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w Thessalonians|strong="G2331"\w* \w in|strong="G1722"\w* \w God|strong="G2316"\w* \w our|strong="G2316"\w* \w Father|strong="G3962"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*: +\v 2 \w Grace|strong="G5485"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w peace|strong="G1515"\w* \w from|strong="G1515"\w* \w God|strong="G2316"\w* \w our|strong="G2316"\w* \w Father|strong="G3962"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\p +\v 3 \w We|strong="G3754"\w* \w are|strong="G1510"\w* \w bound|strong="G3784"\w* \w to|strong="G1519"\w* \w always|strong="G3842"\w* \w give|strong="G2168"\w* \w thanks|strong="G2168"\w* \w to|strong="G1519"\w* \w God|strong="G2316"\w* \w for|strong="G3754"\w* \w you|strong="G5210"\w*, brothers,\f + \fr 1:3 \ft The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”\f* \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* appropriate, \w because|strong="G3754"\w* \w your|strong="G2532"\w* \w faith|strong="G4102"\w* \w grows|strong="G4121"\w* \w exceedingly|strong="G5232"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* love \w of|strong="G4012"\w* \w each|strong="G1538"\w* \w and|strong="G2532"\w* \w every|strong="G3956"\w* \w one|strong="G1520"\w* \w of|strong="G4012"\w* \w you|strong="G5210"\w* \w toward|strong="G1519"\w* \w one|strong="G1520"\w* \w another|strong="G1520"\w* abounds, +\v 4 \w so|strong="G2532"\w* \w that|strong="G3739"\w* \w we|strong="G2249"\w* \w ourselves|strong="G1438"\w* \w boast|strong="G2744"\w* \w about|strong="G1722"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w assemblies|strong="G1577"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w for|strong="G5228"\w* \w your|strong="G2532"\w* \w perseverance|strong="G5281"\w* \w and|strong="G2532"\w* \w faith|strong="G4102"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w your|strong="G2532"\w* \w persecutions|strong="G1375"\w* \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w afflictions|strong="G2347"\w* \w which|strong="G3739"\w* \w you|strong="G5210"\w* endure. +\v 5 \w This|strong="G3588"\w* \w is|strong="G3588"\w* \w an|strong="G2532"\w* obvious sign \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w righteous|strong="G1342"\w* \w judgment|strong="G2920"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w end|strong="G1519"\w* \w that|strong="G3739"\w* \w you|strong="G5210"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* counted \w worthy|strong="G2661"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*’s Kingdom, \w for|strong="G1519"\w* \w which|strong="G3739"\w* \w you|strong="G5210"\w* \w also|strong="G2532"\w* \w suffer|strong="G3958"\w*. +\v 6 \w For|strong="G3844"\w* \w it|strong="G3588"\w* \w is|strong="G3588"\w* \w a|strong="G2316"\w* \w righteous|strong="G1342"\w* \w thing|strong="G1342"\w* \w with|strong="G3844"\w* \w God|strong="G2316"\w* \w to|strong="G2316"\w* repay \w affliction|strong="G2347"\w* \w to|strong="G2316"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w afflict|strong="G2346"\w* \w you|strong="G5210"\w*, +\v 7 \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w give|strong="G1473"\w* relief \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w afflicted|strong="G2346"\w* \w with|strong="G3326"\w* \w us|strong="G2249"\w* \w when|strong="G2532"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w is|strong="G3588"\w* revealed \w from|strong="G2532"\w* \w heaven|strong="G3772"\w* \w with|strong="G3326"\w* \w his|strong="G1722"\w* \w mighty|strong="G1411"\w* angels \w in|strong="G1722"\w* flaming fire, +\v 8 punishing \w those|strong="G3588"\w* \w who|strong="G3588"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* don’\w t|strong="G3588"\w* \w obey|strong="G5219"\w* \w the|strong="G1722"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w of|strong="G2316"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*, +\v 9 \w who|strong="G3588"\w* \w will|strong="G2532"\w* \w pay|strong="G5099"\w* \w the|strong="G2532"\w* \w penalty|strong="G1349"\w*: eternal \w destruction|strong="G3639"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w face|strong="G4383"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w and|strong="G2532"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w of|strong="G2532"\w* \w his|strong="G2532"\w* \w might|strong="G2479"\w*, +\v 10 \w when|strong="G3752"\w* \w he|strong="G2532"\w* \w comes|strong="G2064"\w* \w in|strong="G1722"\w* \w that|strong="G3754"\w* \w day|strong="G2250"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w glorified|strong="G1740"\w* \w in|strong="G1722"\w* \w his|strong="G3956"\w* saints \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w admired|strong="G2296"\w* \w among|strong="G1722"\w* \w all|strong="G3956"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w have|strong="G2532"\w* \w believed|strong="G4100"\w*, \w because|strong="G3754"\w* \w our|strong="G2532"\w* \w testimony|strong="G3142"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w was|strong="G3588"\w* \w believed|strong="G4100"\w*. +\p +\v 11 \w To|strong="G1519"\w* \w this|strong="G3588"\w* \w end|strong="G1519"\w* \w we|strong="G2249"\w* \w also|strong="G2532"\w* \w pray|strong="G4336"\w* \w always|strong="G3842"\w* \w for|strong="G1519"\w* \w you|strong="G5210"\w* \w that|strong="G2443"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w* \w may|strong="G2532"\w* count \w you|strong="G5210"\w* worthy \w of|strong="G4012"\w* \w your|strong="G2532"\w* \w calling|strong="G2821"\w*, \w and|strong="G2532"\w* \w fulfill|strong="G4137"\w* \w every|strong="G3956"\w* \w desire|strong="G2107"\w* \w of|strong="G4012"\w* goodness \w and|strong="G2532"\w* \w work|strong="G2041"\w* \w of|strong="G4012"\w* \w faith|strong="G4102"\w* \w with|strong="G1722"\w* \w power|strong="G1411"\w*, +\v 12 \w that|strong="G3588"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G2316"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*\f + \fr 1:12 \ft TR adds “Christ”\f* \w may|strong="G2532"\w* \w be|strong="G2532"\w* \w glorified|strong="G1740"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w*, \w and|strong="G2532"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*, \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w grace|strong="G5485"\w* \w of|strong="G2316"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\c 2 +\p +\v 1 \w Now|strong="G1161"\w*, brothers, \w concerning|strong="G5228"\w* \w the|strong="G2532"\w* \w coming|strong="G3952"\w* \w of|strong="G2532"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w and|strong="G2532"\w* \w our|strong="G2424"\w* \w gathering|strong="G1997"\w* \w together|strong="G1909"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \w we|strong="G2249"\w* \w ask|strong="G2065"\w* \w you|strong="G5210"\w* +\v 2 \w not|strong="G3361"\w* \w to|strong="G1519"\w* \w be|strong="G3361"\w* \w quickly|strong="G5030"\w* \w shaken|strong="G4531"\w* \w in|strong="G1519"\w* \w your|strong="G1223"\w* \w mind|strong="G3563"\w* \w or|strong="G3366"\w* \w troubled|strong="G2360"\w*, \w either|strong="G3383"\w* \w by|strong="G1223"\w* \w spirit|strong="G4151"\w* \w or|strong="G3366"\w* \w by|strong="G1223"\w* \w word|strong="G3056"\w* \w or|strong="G3366"\w* \w by|strong="G1223"\w* \w letter|strong="G1992"\w* \w as|strong="G5613"\w* \w if|strong="G5613"\w* \w from|strong="G3588"\w* \w us|strong="G1519"\w*, \w saying|strong="G3056"\w* \w that|strong="G3754"\w* \w the|strong="G1519"\w* \w day|strong="G2250"\w* \w of|strong="G3056"\w* \w Christ|strong="G2962"\w* \w has|strong="G2962"\w* already \w come|strong="G1764"\w*. +\v 3 \w Let|strong="G1818"\w* \w no|strong="G3361"\w* \w one|strong="G5100"\w* \w deceive|strong="G1818"\w* \w you|strong="G5210"\w* \w in|strong="G2596"\w* \w any|strong="G5100"\w* \w way|strong="G5158"\w*. \w For|strong="G3754"\w* \w it|strong="G2532"\w* \w will|strong="G2532"\w* \w not|strong="G3361"\w* \w be|strong="G2532"\w* \w unless|strong="G1437"\w* \w the|strong="G2532"\w* rebellion\f + \fr 2:3 \ft or, \fqa falling away\ft , or, \fqa defection\f* \w comes|strong="G2064"\w* \w first|strong="G4413"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w man|strong="G5100"\w* \w of|strong="G5207"\w* sin \w is|strong="G3588"\w* revealed, \w the|strong="G2532"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* destruction. +\v 4 \w He|strong="G2532"\w* opposes \w and|strong="G2532"\w* \w exalts|strong="G5229"\w* \w himself|strong="G1438"\w* \w against|strong="G1909"\w* \w all|strong="G3956"\w* \w that|strong="G3754"\w* \w is|strong="G1510"\w* \w called|strong="G3004"\w* \w God|strong="G2316"\w* \w or|strong="G2228"\w* \w that|strong="G3754"\w* \w is|strong="G1510"\w* worshiped, \w so|strong="G2532"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w sits|strong="G2523"\w* \w as|strong="G1519"\w* \w God|strong="G2316"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w temple|strong="G3485"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, setting \w himself|strong="G1438"\w* \w up|strong="G1519"\w* \w as|strong="G1519"\w* \w God|strong="G2316"\w*. +\v 5 Don’t \w you|strong="G5210"\w* \w remember|strong="G3421"\w* \w that|strong="G3754"\w* \w when|strong="G1510"\w* \w I|strong="G3754"\w* \w was|strong="G1510"\w* \w still|strong="G2089"\w* \w with|strong="G4314"\w* \w you|strong="G5210"\w*, \w I|strong="G3754"\w* \w told|strong="G3004"\w* \w you|strong="G5210"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*? +\v 6 \w Now|strong="G3568"\w* \w you|strong="G1722"\w* \w know|strong="G1492"\w* \w what|strong="G3588"\w* \w is|strong="G3588"\w* restraining \w him|strong="G3588"\w*, \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w end|strong="G1519"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* revealed \w in|strong="G1722"\w* \w his|strong="G1438"\w* \w own|strong="G1438"\w* \w season|strong="G2540"\w*. +\v 7 \w For|strong="G1063"\w* \w the|strong="G1537"\w* \w mystery|strong="G3466"\w* \w of|strong="G1537"\w* lawlessness \w already|strong="G2235"\w* \w works|strong="G1754"\w*. \w Only|strong="G3440"\w* \w there|strong="G1063"\w* \w is|strong="G3588"\w* \w one|strong="G3588"\w* \w who|strong="G3588"\w* \w restrains|strong="G2722"\w* \w now|strong="G2235"\w*, \w until|strong="G2193"\w* \w he|strong="G3588"\w* \w is|strong="G3588"\w* \w taken|strong="G1096"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w way|strong="G3319"\w*. +\v 8 \w Then|strong="G2532"\w* \w the|strong="G2532"\w* lawless \w one|strong="G3739"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* revealed, \w whom|strong="G3739"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w will|strong="G2532"\w* kill \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w breath|strong="G4151"\w* \w of|strong="G4151"\w* \w his|strong="G2532"\w* \w mouth|strong="G4750"\w* \w and|strong="G2532"\w* \w destroy|strong="G2673"\w* \w by|strong="G2532"\w* \w the|strong="G2532"\w* manifestation \w of|strong="G4151"\w* \w his|strong="G2532"\w* \w coming|strong="G3952"\w*; +\v 9 \w even|strong="G2532"\w* \w he|strong="G2532"\w* \w whose|strong="G3739"\w* \w coming|strong="G3952"\w* \w is|strong="G1510"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w working|strong="G1753"\w* \w of|strong="G2532"\w* \w Satan|strong="G4567"\w* \w with|strong="G1722"\w* \w all|strong="G3956"\w* \w power|strong="G1411"\w* \w and|strong="G2532"\w* \w signs|strong="G4592"\w* \w and|strong="G2532"\w* \w lying|strong="G5579"\w* \w wonders|strong="G5059"\w*, +\v 10 \w and|strong="G2532"\w* \w with|strong="G1722"\w* \w all|strong="G3956"\w* deception \w of|strong="G2532"\w* \w wickedness|strong="G1722"\w* \w for|strong="G1519"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w are|strong="G3588"\w* \w being|strong="G2532"\w* lost, \w because|strong="G1722"\w* \w they|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w receive|strong="G1209"\w* \w the|strong="G1722"\w* love \w of|strong="G2532"\w* \w the|strong="G1722"\w* truth, \w that|strong="G3739"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w be|strong="G2532"\w* \w saved|strong="G4982"\w*. +\v 11 \w Because|strong="G1223"\w* \w of|strong="G1223"\w* \w this|strong="G3778"\w*, \w God|strong="G2316"\w* \w sends|strong="G3992"\w* \w them|strong="G3588"\w* \w a|strong="G2532"\w* powerful \w delusion|strong="G4106"\w*, \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w should|strong="G2316"\w* \w believe|strong="G4100"\w* \w a|strong="G2532"\w* \w lie|strong="G5579"\w*, +\v 12 \w that|strong="G2443"\w* \w they|strong="G3588"\w* \w all|strong="G3956"\w* \w might|strong="G3956"\w* \w be|strong="G3361"\w* \w judged|strong="G2919"\w* \w who|strong="G3588"\w* didn’\w t|strong="G3588"\w* \w believe|strong="G4100"\w* \w the|strong="G3956"\w* truth, \w but|strong="G3361"\w* \w had|strong="G3588"\w* \w pleasure|strong="G2106"\w* \w in|strong="G3956"\w* unrighteousness. +\p +\v 13 \w But|strong="G1161"\w* \w we|strong="G2249"\w* \w are|strong="G3588"\w* \w bound|strong="G3784"\w* \w to|strong="G1519"\w* \w always|strong="G3842"\w* \w give|strong="G2168"\w* \w thanks|strong="G2168"\w* \w to|strong="G1519"\w* \w God|strong="G2316"\w* \w for|strong="G3754"\w* \w you|strong="G5210"\w*, brothers loved \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w because|strong="G3754"\w* \w God|strong="G2316"\w* chose \w you|strong="G5210"\w* \w from|strong="G2532"\w* \w the|strong="G1722"\w* beginning \w for|strong="G3754"\w* \w salvation|strong="G4991"\w* \w through|strong="G1722"\w* sanctification \w of|strong="G4012"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w and|strong="G2532"\w* \w belief|strong="G4102"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* truth, +\v 14 \w to|strong="G1519"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w called|strong="G2564"\w* \w you|strong="G5210"\w* \w through|strong="G1223"\w* \w our|strong="G2424"\w* \w Good|strong="G1223"\w* \w News|strong="G2098"\w*, \w for|strong="G1519"\w* \w the|strong="G2532"\w* \w obtaining|strong="G4047"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w of|strong="G1223"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\v 15 \w So|strong="G3767"\w* \w then|strong="G3767"\w*, brothers, \w stand|strong="G4739"\w* \w firm|strong="G4739"\w* \w and|strong="G2532"\w* \w hold|strong="G2902"\w* \w the|strong="G2532"\w* \w traditions|strong="G3862"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w were|strong="G3588"\w* \w taught|strong="G1321"\w* \w by|strong="G1223"\w* \w us|strong="G2249"\w*, \w whether|strong="G1535"\w* \w by|strong="G1223"\w* \w word|strong="G3056"\w* \w or|strong="G1535"\w* \w by|strong="G1223"\w* \w letter|strong="G1992"\w*. +\p +\v 16 \w Now|strong="G1161"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* himself, \w and|strong="G2532"\w* \w God|strong="G2316"\w* \w our|strong="G2316"\w* \w Father|strong="G3962"\w*, \w who|strong="G3588"\w* loved \w us|strong="G1325"\w* \w and|strong="G2532"\w* \w gave|strong="G1325"\w* \w us|strong="G1325"\w* eternal \w comfort|strong="G3874"\w* \w and|strong="G2532"\w* \w good|strong="G3588"\w* \w hope|strong="G1680"\w* \w through|strong="G1722"\w* \w grace|strong="G5485"\w*, +\v 17 \w comfort|strong="G3870"\w* \w your|strong="G2532"\w* \w hearts|strong="G2588"\w* \w and|strong="G2532"\w* \w establish|strong="G4741"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w every|strong="G3956"\w* \w good|strong="G3956"\w* \w work|strong="G2041"\w* \w and|strong="G2532"\w* \w word|strong="G3056"\w*. +\c 3 +\p +\v 1 \w Finally|strong="G3063"\w*, brothers, \w pray|strong="G4336"\w* \w for|strong="G4012"\w* \w us|strong="G2249"\w*, \w that|strong="G2443"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w of|strong="G4012"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w may|strong="G2532"\w* \w spread|strong="G5143"\w* \w rapidly|strong="G5143"\w* \w and|strong="G2532"\w* \w be|strong="G2532"\w* \w glorified|strong="G1392"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w also|strong="G2532"\w* \w with|strong="G4314"\w* \w you|strong="G5210"\w*, +\v 2 \w and|strong="G2532"\w* \w that|strong="G2443"\w* \w we|strong="G1063"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* \w delivered|strong="G4506"\w* \w from|strong="G2532"\w* unreasonable \w and|strong="G2532"\w* \w evil|strong="G4190"\w* \w men|strong="G3956"\w*; \w for|strong="G1063"\w* \w not|strong="G3756"\w* \w all|strong="G3956"\w* \w have|strong="G2532"\w* \w faith|strong="G4102"\w*. +\v 3 \w But|strong="G1161"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w is|strong="G1510"\w* \w faithful|strong="G4103"\w*, \w who|strong="G3739"\w* \w will|strong="G1510"\w* \w establish|strong="G4741"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w guard|strong="G5442"\w* \w you|strong="G5210"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w evil|strong="G4190"\w* \w one|strong="G3739"\w*. +\v 4 \w We|strong="G3739"\w* \w have|strong="G2532"\w* \w confidence|strong="G3982"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w concerning|strong="G1909"\w* \w you|strong="G5210"\w*, \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w both|strong="G2532"\w* \w do|strong="G4160"\w* \w and|strong="G2532"\w* \w will|strong="G2532"\w* \w do|strong="G4160"\w* \w the|strong="G1722"\w* \w things|strong="G3739"\w* \w we|strong="G3739"\w* \w command|strong="G3853"\w*. +\v 5 \w May|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w direct|strong="G2720"\w* \w your|strong="G2962"\w* \w hearts|strong="G2588"\w* \w into|strong="G1519"\w* \w God|strong="G2316"\w*’\w s|strong="G2962"\w* love \w and|strong="G2532"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w perseverance|strong="G5281"\w* \w of|strong="G2316"\w* \w Christ|strong="G5547"\w*. +\p +\v 6 \w Now|strong="G1161"\w* \w we|strong="G2249"\w* \w command|strong="G3853"\w* \w you|strong="G5210"\w*, brothers, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G2532"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w that|strong="G3739"\w* \w you|strong="G5210"\w* withdraw \w yourselves|strong="G4771"\w* \w from|strong="G3844"\w* \w every|strong="G3956"\w* brother \w who|strong="G3739"\w* \w walks|strong="G4043"\w* \w in|strong="G1722"\w* rebellion \w and|strong="G2532"\w* \w not|strong="G3361"\w* \w after|strong="G2596"\w* \w the|strong="G1722"\w* \w tradition|strong="G3862"\w* \w which|strong="G3739"\w* \w they|strong="G2532"\w* \w received|strong="G3880"\w* \w from|strong="G3844"\w* \w us|strong="G2249"\w*. +\v 7 \w For|strong="G1063"\w* \w you|strong="G5210"\w* \w know|strong="G1492"\w* \w how|strong="G4459"\w* \w you|strong="G5210"\w* \w ought|strong="G1163"\w* \w to|strong="G1722"\w* \w imitate|strong="G3401"\w* \w us|strong="G2249"\w*. \w For|strong="G1063"\w* \w we|strong="G2249"\w* didn’t \w behave|strong="G3756"\w* \w ourselves|strong="G2249"\w* rebelliously \w among|strong="G1722"\w* \w you|strong="G5210"\w*, +\v 8 \w neither|strong="G3761"\w* \w did|strong="G2532"\w* \w we|strong="G2532"\w* \w eat|strong="G2068"\w* bread \w from|strong="G3844"\w* \w anyone|strong="G5100"\w*’s hand \w without|strong="G3361"\w* paying \w for|strong="G4314"\w* \w it|strong="G2532"\w*, \w but|strong="G2532"\w* \w in|strong="G1722"\w* \w labor|strong="G2873"\w* \w and|strong="G2532"\w* \w travail|strong="G3449"\w* \w worked|strong="G2038"\w* \w night|strong="G3571"\w* \w and|strong="G2532"\w* \w day|strong="G2250"\w*, \w that|strong="G3588"\w* \w we|strong="G2532"\w* \w might|strong="G2532"\w* \w not|strong="G3361"\w* \w burden|strong="G1912"\w* \w any|strong="G5100"\w* \w of|strong="G2250"\w* \w you|strong="G5210"\w*. +\v 9 \w This|strong="G3588"\w* \w was|strong="G3588"\w* \w not|strong="G3756"\w* \w because|strong="G3754"\w* \w we|strong="G2249"\w* don’\w t|strong="G3588"\w* \w have|strong="G2192"\w* \w the|strong="G1519"\w* \w right|strong="G1849"\w*, \w but|strong="G3588"\w* \w to|strong="G1519"\w* \w make|strong="G1519"\w* \w ourselves|strong="G1438"\w* \w an|strong="G2192"\w* \w example|strong="G5179"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w*, \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w should|strong="G3588"\w* \w imitate|strong="G3401"\w* \w us|strong="G1325"\w*. +\v 10 \w For|strong="G1063"\w* \w even|strong="G2532"\w* \w when|strong="G3753"\w* \w we|strong="G3754"\w* \w were|strong="G1510"\w* \w with|strong="G4314"\w* \w you|strong="G5210"\w*, \w we|strong="G3754"\w* \w commanded|strong="G3853"\w* \w you|strong="G5210"\w* \w this|strong="G3778"\w*: “\w If|strong="G1487"\w* \w anyone|strong="G5100"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w willing|strong="G2309"\w* \w to|strong="G4314"\w* \w work|strong="G2038"\w*, don’t \w let|strong="G1510"\w* \w him|strong="G2532"\w* \w eat|strong="G2068"\w*.” +\v 11 \w For|strong="G1063"\w* \w we|strong="G1063"\w* hear \w of|strong="G5100"\w* \w some|strong="G5100"\w* \w who|strong="G5100"\w* \w walk|strong="G4043"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* rebellion, \w who|strong="G5100"\w* don’t \w work|strong="G2038"\w* \w at|strong="G1722"\w* \w all|strong="G1722"\w*, \w but|strong="G1063"\w* \w are|strong="G4043"\w* \w busybodies|strong="G4020"\w*. +\v 12 \w Now|strong="G1161"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w that|strong="G2443"\w* \w way|strong="G1722"\w*, \w we|strong="G2532"\w* \w command|strong="G3853"\w* \w and|strong="G2532"\w* \w exhort|strong="G3870"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w work|strong="G2038"\w* \w with|strong="G3326"\w* \w quietness|strong="G2271"\w* \w and|strong="G2532"\w* \w eat|strong="G2068"\w* \w their|strong="G1438"\w* \w own|strong="G1438"\w* bread. +\p +\v 13 \w But|strong="G1161"\w* \w you|strong="G5210"\w*, brothers, don’t \w be|strong="G3361"\w* \w weary|strong="G1573"\w* \w in|strong="G1161"\w* \w doing|strong="G2569"\w* \w what|strong="G1161"\w* \w is|strong="G3361"\w* right. +\v 14 \w If|strong="G1487"\w* \w any|strong="G5100"\w* \w man|strong="G5100"\w* doesn’\w t|strong="G3588"\w* \w obey|strong="G5219"\w* \w our|strong="G1223"\w* \w word|strong="G3056"\w* \w in|strong="G1223"\w* \w this|strong="G3778"\w* \w letter|strong="G1992"\w*, \w note|strong="G4593"\w* \w that|strong="G2443"\w* \w man|strong="G5100"\w* \w and|strong="G1161"\w* \w have|strong="G1473"\w* \w no|strong="G3756"\w* \w company|strong="G4874"\w* \w with|strong="G1223"\w* \w him|strong="G3588"\w*, \w to|strong="G2443"\w* \w the|strong="G1161"\w* \w end|strong="G3778"\w* \w that|strong="G2443"\w* \w he|strong="G1161"\w* \w may|strong="G2443"\w* \w be|strong="G3756"\w* \w ashamed|strong="G1788"\w*. +\v 15 Don’t \w count|strong="G2233"\w* \w him|strong="G2532"\w* \w as|strong="G5613"\w* \w an|strong="G2532"\w* \w enemy|strong="G2190"\w*, \w but|strong="G2532"\w* \w admonish|strong="G3560"\w* \w him|strong="G2532"\w* \w as|strong="G5613"\w* \w a|strong="G5613"\w* brother. +\p +\v 16 \w Now|strong="G1161"\w* \w may|strong="G3956"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w of|strong="G1223"\w* \w peace|strong="G1515"\w* himself \w give|strong="G1325"\w* \w you|strong="G5210"\w* \w peace|strong="G1515"\w* \w at|strong="G1722"\w* \w all|strong="G3956"\w* times \w in|strong="G1722"\w* \w all|strong="G3956"\w* ways. \w The|strong="G1722"\w* \w Lord|strong="G2962"\w* \w be|strong="G3956"\w* \w with|strong="G3326"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w*. +\p +\v 17 \w I|strong="G3739"\w*, \w Paul|strong="G3972"\w*, \w write|strong="G1125"\w* \w this|strong="G3588"\w* greeting \w with|strong="G1722"\w* \w my|strong="G1699"\w* \w own|strong="G1699"\w* \w hand|strong="G5495"\w*, \w which|strong="G3739"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w sign|strong="G4592"\w* \w in|strong="G1722"\w* \w every|strong="G3956"\w* \w letter|strong="G1992"\w*. \w This|strong="G3588"\w* \w is|strong="G1510"\w* \w how|strong="G3779"\w* \w I|strong="G3739"\w* \w write|strong="G1125"\w*. +\v 18 \w The|strong="G3956"\w* \w grace|strong="G5485"\w* \w of|strong="G5485"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w be|strong="G3956"\w* \w with|strong="G3326"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w*. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/84-1TIeng-web.usfm b/bibles/eng-web_usfm/84-1TIeng-web.usfm new file mode 100644 index 0000000..9be16ab --- /dev/null +++ b/bibles/eng-web_usfm/84-1TIeng-web.usfm @@ -0,0 +1,160 @@ +\id 1TI 54-1TI-web.sfm World English Bible (WEB) +\ide UTF-8 +\h 1 Timothy +\toc1 Paul’s First Letter to Timothy +\toc2 1 Timothy +\toc3 1Ti +\mt1 Paul’s First Letter to Timothy +\c 1 +\p +\v 1 \w Paul|strong="G3972"\w*, \w an|strong="G2532"\w* apostle \w of|strong="G2316"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w commandment|strong="G2003"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w our|strong="G2316"\w* \w Savior|strong="G4990"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G3588"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*\f + \fr 1:1 \ft NU reads \fqa Christ Jesus \ft and omits \fqa the Lord. \f* \w our|strong="G2316"\w* \w hope|strong="G1680"\w*, +\v 2 \w to|strong="G2532"\w* \w Timothy|strong="G5095"\w*, \w my|strong="G1722"\w* \w true|strong="G1103"\w* \w child|strong="G5043"\w* \w in|strong="G1722"\w* \w faith|strong="G4102"\w*: \w Grace|strong="G5485"\w*, \w mercy|strong="G1656"\w*, \w and|strong="G2532"\w* \w peace|strong="G1515"\w* \w from|strong="G1515"\w* \w God|strong="G2316"\w* \w our|strong="G2316"\w* \w Father|strong="G3962"\w* \w and|strong="G2532"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w*. +\p +\v 3 \w As|strong="G2531"\w* \w I|strong="G2443"\w* \w urged|strong="G3870"\w* \w you|strong="G4771"\w* \w when|strong="G1722"\w* \w I|strong="G2443"\w* \w was|strong="G4771"\w* \w going|strong="G4198"\w* \w into|strong="G1519"\w* \w Macedonia|strong="G3109"\w*, stay \w at|strong="G1722"\w* \w Ephesus|strong="G2181"\w* \w that|strong="G2443"\w* \w you|strong="G4771"\w* \w might|strong="G5100"\w* \w command|strong="G3853"\w* \w certain|strong="G5100"\w* \w men|strong="G5100"\w* \w not|strong="G3361"\w* \w to|strong="G1519"\w* \w teach|strong="G2085"\w* \w a|strong="G1519"\w* \w different|strong="G2085"\w* \w doctrine|strong="G2085"\w*, +\v 4 \w and|strong="G2532"\w* \w not|strong="G3366"\w* \w to|strong="G2532"\w* \w pay|strong="G4337"\w* \w attention|strong="G4337"\w* \w to|strong="G2532"\w* \w myths|strong="G3454"\w* \w and|strong="G2532"\w* endless \w genealogies|strong="G1076"\w*, \w which|strong="G3588"\w* \w cause|strong="G3930"\w* disputes \w rather|strong="G3123"\w* \w than|strong="G2228"\w* \w God|strong="G2316"\w*’s \w stewardship|strong="G3622"\w*, \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w faith|strong="G4102"\w*. +\v 5 \w But|strong="G1161"\w* \w the|strong="G2532"\w* \w goal|strong="G5056"\w* \w of|strong="G1537"\w* \w this|strong="G3588"\w* \w command|strong="G3852"\w* \w is|strong="G1510"\w* love \w from|strong="G1537"\w* \w a|strong="G2532"\w* \w pure|strong="G2513"\w* \w heart|strong="G2588"\w*, \w a|strong="G2532"\w* \w good|strong="G3588"\w* \w conscience|strong="G4893"\w*, \w and|strong="G2532"\w* sincere \w faith|strong="G4102"\w*, +\v 6 \w from|strong="G1519"\w* \w which|strong="G3739"\w* \w things|strong="G3739"\w* \w some|strong="G5100"\w*, \w having|strong="G5100"\w* missed \w the|strong="G1519"\w* mark, \w have|strong="G5100"\w* \w turned|strong="G1624"\w* away \w to|strong="G1519"\w* \w vain|strong="G1519"\w* talking, +\v 7 \w desiring|strong="G2309"\w* \w to|strong="G3004"\w* \w be|strong="G1510"\w* \w teachers|strong="G3547"\w* \w of|strong="G4012"\w* \w the|strong="G3004"\w* \w law|strong="G3547"\w*, though \w they|strong="G3739"\w* \w understand|strong="G3539"\w* \w neither|strong="G3383"\w* \w what|strong="G5101"\w* \w they|strong="G3739"\w* \w say|strong="G3004"\w* \w nor|strong="G3383"\w* \w about|strong="G4012"\w* \w what|strong="G5101"\w* \w they|strong="G3739"\w* strongly \w affirm|strong="G1226"\w*. +\p +\v 8 \w But|strong="G1161"\w* \w we|strong="G1437"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w the|strong="G1161"\w* \w law|strong="G3551"\w* \w is|strong="G3588"\w* \w good|strong="G2570"\w* \w if|strong="G1437"\w* \w a|strong="G1437"\w* \w person|strong="G5100"\w* \w uses|strong="G5530"\w* \w it|strong="G3754"\w* \w lawfully|strong="G3545"\w*, +\v 9 \w as|strong="G1161"\w* \w knowing|strong="G1492"\w* \w this|strong="G3778"\w*, \w that|strong="G3754"\w* \w law|strong="G3551"\w* \w is|strong="G3778"\w* \w not|strong="G3756"\w* \w made|strong="G3756"\w* \w for|strong="G3754"\w* \w a|strong="G2532"\w* \w righteous|strong="G1342"\w* \w person|strong="G1342"\w*, \w but|strong="G1161"\w* \w for|strong="G3754"\w* \w the|strong="G2532"\w* lawless \w and|strong="G2532"\w* insubordinate, \w for|strong="G3754"\w* \w the|strong="G2532"\w* ungodly \w and|strong="G2532"\w* sinners, \w for|strong="G3754"\w* \w the|strong="G2532"\w* unholy \w and|strong="G2532"\w* profane, \w for|strong="G3754"\w* murderers \w of|strong="G2532"\w* \w fathers|strong="G3964"\w* \w and|strong="G2532"\w* murderers \w of|strong="G2532"\w* \w mothers|strong="G3389"\w*, \w for|strong="G3754"\w* manslayers, +\v 10 \w for|strong="G2532"\w* \w the|strong="G2532"\w* sexually \w immoral|strong="G4205"\w*, \w for|strong="G2532"\w* homosexuals, \w for|strong="G2532"\w* slave-traders, \w for|strong="G2532"\w* \w liars|strong="G5583"\w*, \w for|strong="G2532"\w* \w perjurers|strong="G1965"\w*, \w and|strong="G2532"\w* \w for|strong="G2532"\w* \w any|strong="G5100"\w* \w other|strong="G2087"\w* \w thing|strong="G5100"\w* contrary \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w sound|strong="G5198"\w* \w doctrine|strong="G1319"\w*, +\v 11 \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G2596"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w of|strong="G2316"\w* \w the|strong="G2596"\w* \w glory|strong="G1391"\w* \w of|strong="G2316"\w* \w the|strong="G2596"\w* \w blessed|strong="G3107"\w* \w God|strong="G2316"\w*, \w which|strong="G3739"\w* \w was|strong="G3588"\w* \w committed|strong="G4100"\w* \w to|strong="G2596"\w* \w my|strong="G1473"\w* \w trust|strong="G4100"\w*. +\p +\v 12 \w I|strong="G1473"\w* \w thank|strong="G5485"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w enabled|strong="G1743"\w* \w me|strong="G1473"\w*, \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w*, \w because|strong="G3754"\w* \w he|strong="G3754"\w* \w counted|strong="G2233"\w* \w me|strong="G1473"\w* \w faithful|strong="G4103"\w*, appointing \w me|strong="G1473"\w* \w to|strong="G1519"\w* \w service|strong="G1248"\w*, +\v 13 \w although|strong="G3748"\w* \w I|strong="G2532"\w* used \w to|strong="G2532"\w* \w be|strong="G1510"\w* \w a|strong="G2532"\w* blasphemer, \w a|strong="G2532"\w* \w persecutor|strong="G1376"\w*, \w and|strong="G2532"\w* \w insolent|strong="G5197"\w*. However, \w I|strong="G2532"\w* obtained \w mercy|strong="G1653"\w* \w because|strong="G3754"\w* \w I|strong="G2532"\w* \w did|strong="G4160"\w* \w it|strong="G2532"\w* ignorantly \w in|strong="G1722"\w* unbelief. +\v 14 \w The|strong="G1722"\w* \w grace|strong="G5485"\w* \w of|strong="G2532"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* abounded exceedingly \w with|strong="G3326"\w* \w faith|strong="G4102"\w* \w and|strong="G2532"\w* love \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*. +\v 15 \w The|strong="G2532"\w* \w saying|strong="G3056"\w* \w is|strong="G1510"\w* \w faithful|strong="G4103"\w* \w and|strong="G2532"\w* worthy \w of|strong="G3056"\w* \w all|strong="G3956"\w* acceptance, \w that|strong="G3754"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w came|strong="G2064"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w* \w to|strong="G1519"\w* \w save|strong="G4982"\w* sinners, \w of|strong="G3056"\w* \w whom|strong="G3739"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w chief|strong="G4413"\w*. +\v 16 However, \w for|strong="G1519"\w* \w this|strong="G3778"\w* \w cause|strong="G1223"\w* \w I|strong="G1473"\w* obtained \w mercy|strong="G1653"\w*, \w that|strong="G2443"\w* \w in|strong="G1722"\w* \w me|strong="G1473"\w* \w first|strong="G4413"\w*, \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w might|strong="G3778"\w* display \w all|strong="G1722"\w* \w his|strong="G1223"\w* \w patience|strong="G3115"\w* \w for|strong="G1519"\w* \w an|strong="G1519"\w* \w example|strong="G5296"\w* \w of|strong="G1223"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w going|strong="G3195"\w* \w to|strong="G1519"\w* \w believe|strong="G4100"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w* \w for|strong="G1519"\w* eternal \w life|strong="G2222"\w*. +\v 17 \w Now|strong="G1161"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w King|strong="G3588"\w* eternal, immortal, invisible, \w to|strong="G1519"\w* \w God|strong="G2316"\w* \w who|strong="G3588"\w* \w alone|strong="G3441"\w* \w is|strong="G3588"\w* wise, \w be|strong="G2532"\w* \w honor|strong="G5092"\w* \w and|strong="G2532"\w* \w glory|strong="G1391"\w* \w forever|strong="G1519"\w* \w and|strong="G2532"\w* \w ever|strong="G1519"\w*. Amen. +\p +\v 18 \w I|strong="G3778"\w* \w commit|strong="G3908"\w* \w this|strong="G3778"\w* \w instruction|strong="G3852"\w* \w to|strong="G2443"\w* \w you|strong="G4771"\w*, \w my|strong="G1722"\w* \w child|strong="G5043"\w* \w Timothy|strong="G5095"\w*, \w according|strong="G2596"\w* \w to|strong="G2443"\w* \w the|strong="G1722"\w* \w prophecies|strong="G4394"\w* \w which|strong="G3588"\w* \w were|strong="G3588"\w* given \w to|strong="G2443"\w* \w you|strong="G4771"\w* \w before|strong="G1909"\w*, \w that|strong="G2443"\w* \w by|strong="G1722"\w* \w them|strong="G3588"\w* \w you|strong="G4771"\w* \w may|strong="G2443"\w* \w wage|strong="G4754"\w* \w the|strong="G1722"\w* \w good|strong="G2570"\w* \w warfare|strong="G4752"\w*, +\v 19 \w holding|strong="G2192"\w* \w faith|strong="G4102"\w* \w and|strong="G2532"\w* \w a|strong="G2192"\w* \w good|strong="G3588"\w* \w conscience|strong="G4893"\w*, \w which|strong="G3739"\w* \w some|strong="G5100"\w* \w having|strong="G2192"\w* thrust away \w made|strong="G4102"\w* \w a|strong="G2192"\w* \w shipwreck|strong="G3489"\w* \w concerning|strong="G4012"\w* \w the|strong="G2532"\w* \w faith|strong="G4102"\w*, +\v 20 \w of|strong="G2532"\w* \w whom|strong="G3739"\w* \w are|strong="G1510"\w* \w Hymenaeus|strong="G5211"\w* \w and|strong="G2532"\w* Alexander, \w whom|strong="G3739"\w* \w I|strong="G3739"\w* \w delivered|strong="G3860"\w* \w to|strong="G2443"\w* \w Satan|strong="G4567"\w* \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w be|strong="G1510"\w* \w taught|strong="G3811"\w* \w not|strong="G3361"\w* \w to|strong="G2443"\w* blaspheme. +\c 2 +\p +\v 1 \w I|strong="G3767"\w* \w exhort|strong="G3870"\w* \w therefore|strong="G3767"\w*, \w first|strong="G4413"\w* \w of|strong="G5228"\w* \w all|strong="G3956"\w*, \w that|strong="G3956"\w* \w petitions|strong="G1783"\w*, \w prayers|strong="G4335"\w*, \w intercessions|strong="G1783"\w*, \w and|strong="G3767"\w* givings \w of|strong="G5228"\w* \w thanks|strong="G2169"\w* \w be|strong="G3956"\w* \w made|strong="G4160"\w* \w for|strong="G5228"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w*, +\v 2 \w for|strong="G5228"\w* \w kings|strong="G3588"\w* \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w high|strong="G3956"\w* places, \w that|strong="G2443"\w* \w we|strong="G2532"\w* \w may|strong="G2532"\w* \w lead|strong="G1236"\w* \w a|strong="G2532"\w* \w tranquil|strong="G2263"\w* \w and|strong="G2532"\w* \w quiet|strong="G2272"\w* \w life|strong="G1236"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w godliness|strong="G2150"\w* \w and|strong="G2532"\w* reverence. +\v 3 \w For|strong="G2532"\w* \w this|strong="G3778"\w* \w is|strong="G3588"\w* \w good|strong="G2570"\w* \w and|strong="G2532"\w* acceptable \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w sight|strong="G1799"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w our|strong="G2316"\w* \w Savior|strong="G4990"\w*, +\v 4 \w who|strong="G3739"\w* \w desires|strong="G2309"\w* \w all|strong="G3956"\w* \w people|strong="G3956"\w* \w to|strong="G1519"\w* \w be|strong="G2532"\w* \w saved|strong="G4982"\w* \w and|strong="G2532"\w* \w come|strong="G2064"\w* \w to|strong="G1519"\w* \w full|strong="G3956"\w* \w knowledge|strong="G1922"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* truth. +\v 5 \w For|strong="G1063"\w* \w there|strong="G2532"\w* \w is|strong="G2316"\w* \w one|strong="G1520"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w one|strong="G1520"\w* \w mediator|strong="G3316"\w* \w between|strong="G3316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* men, \w the|strong="G2532"\w* \w man|strong="G1520"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*, +\v 6 \w who|strong="G3588"\w* \w gave|strong="G1325"\w* \w himself|strong="G1438"\w* \w as|strong="G1438"\w* \w a|strong="G1325"\w* ransom \w for|strong="G5228"\w* \w all|strong="G3956"\w*, \w the|strong="G3956"\w* \w testimony|strong="G3142"\w* \w at|strong="G3588"\w* \w the|strong="G3956"\w* \w proper|strong="G2398"\w* \w time|strong="G2540"\w*, +\v 7 \w to|strong="G1519"\w* \w which|strong="G3739"\w* \w I|strong="G1473"\w* \w was|strong="G3739"\w* \w appointed|strong="G5087"\w* \w a|strong="G2532"\w* \w preacher|strong="G2783"\w* \w and|strong="G2532"\w* \w an|strong="G2532"\w* apostle—\w I|strong="G1473"\w* \w am|strong="G1473"\w* \w telling|strong="G3004"\w* \w the|strong="G1722"\w* truth \w in|strong="G1722"\w* Christ, \w not|strong="G3756"\w* \w lying|strong="G5574"\w*—\w a|strong="G2532"\w* \w teacher|strong="G1320"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w* \w in|strong="G1722"\w* \w faith|strong="G4102"\w* \w and|strong="G2532"\w* truth. +\p +\v 8 \w I|strong="G2532"\w* \w desire|strong="G1014"\w* \w therefore|strong="G3767"\w* \w that|strong="G3588"\w* \w the|strong="G1722"\w* \w men|strong="G3956"\w* \w in|strong="G1722"\w* \w every|strong="G3956"\w* \w place|strong="G5117"\w* \w pray|strong="G4336"\w*, \w lifting|strong="G1869"\w* \w up|strong="G1869"\w* \w holy|strong="G3741"\w* \w hands|strong="G5495"\w* \w without|strong="G5565"\w* \w anger|strong="G3709"\w* \w and|strong="G2532"\w* \w doubting|strong="G1261"\w*. +\v 9 \w In|strong="G1722"\w* \w the|strong="G1722"\w* \w same|strong="G5615"\w* \w way|strong="G1722"\w*, \w that|strong="G2532"\w* \w women|strong="G1135"\w* \w also|strong="G2532"\w* \w adorn|strong="G2885"\w* \w themselves|strong="G1438"\w* \w in|strong="G1722"\w* decent \w clothing|strong="G2441"\w*, \w with|strong="G3326"\w* modesty \w and|strong="G2532"\w* propriety, \w not|strong="G3361"\w*\f + \fr 2:9 \ft The word for “not” is the negative particle “μη” which denies an expected idea, as opposed to the usual word for “not” (ου) which denies a fact. Thus “μη” in this context is denying an expected idea (that women can be properly dressed without good works).\f* \w with|strong="G3326"\w* \w braided|strong="G4117"\w* \w hair|strong="G4117"\w*, \w gold|strong="G5553"\w*, \w pearls|strong="G3135"\w*, \w or|strong="G2228"\w* \w expensive|strong="G4185"\w* \w clothing|strong="G2441"\w*, +\v 10 \w but|strong="G3739"\w* \w with|strong="G1223"\w* \w good|strong="G1223"\w* \w works|strong="G2041"\w*, \w which|strong="G3739"\w* \w is|strong="G3739"\w* appropriate \w for|strong="G1223"\w* \w women|strong="G1135"\w* \w professing|strong="G1861"\w* \w godliness|strong="G2317"\w*. +\v 11 \w Let|strong="G3129"\w* \w a|strong="G1722"\w* \w woman|strong="G1135"\w* \w learn|strong="G3129"\w* \w in|strong="G1722"\w* \w quietness|strong="G2271"\w* \w with|strong="G1722"\w* \w full|strong="G3956"\w* submission. +\v 12 \w But|strong="G1161"\w* \w I|strong="G1161"\w* don’t \w permit|strong="G2010"\w* \w a|strong="G1722"\w* \w woman|strong="G1135"\w* \w to|strong="G1722"\w* \w teach|strong="G1321"\w*, \w nor|strong="G3761"\w* \w to|strong="G1722"\w* exercise authority \w over|strong="G1722"\w* \w a|strong="G1722"\w* \w man|strong="G3756"\w*, \w but|strong="G1161"\w* \w to|strong="G1722"\w* \w be|strong="G1510"\w* \w in|strong="G1722"\w* \w quietness|strong="G2271"\w*. +\v 13 \w For|strong="G1063"\w* Adam \w was|strong="G4111"\w* \w formed|strong="G4111"\w* \w first|strong="G4413"\w*, \w then|strong="G1534"\w* \w Eve|strong="G2096"\w*. +\v 14 Adam wasn’\w t|strong="G3588"\w* \w deceived|strong="G1818"\w*, \w but|strong="G1161"\w* \w the|strong="G1722"\w* \w woman|strong="G1135"\w*, \w being|strong="G1096"\w* \w deceived|strong="G1818"\w*, \w has|strong="G1096"\w* fallen \w into|strong="G1722"\w* disobedience; +\v 15 \w but|strong="G1161"\w* \w she|strong="G2532"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w saved|strong="G4982"\w* \w through|strong="G1223"\w* \w her|strong="G1437"\w* \w childbearing|strong="G5042"\w*, \w if|strong="G1437"\w* \w they|strong="G2532"\w* \w continue|strong="G3306"\w* \w in|strong="G1722"\w* \w faith|strong="G4102"\w*, love, \w and|strong="G2532"\w* holiness \w with|strong="G3326"\w* \w sobriety|strong="G4997"\w*. +\c 3 +\p +\v 1 \w This|strong="G3588"\w* \w is|strong="G3588"\w* \w a|strong="G1487"\w* \w faithful|strong="G4103"\w* \w saying|strong="G3056"\w*: \w someone|strong="G5100"\w* \w who|strong="G3588"\w* seeks \w to|strong="G5100"\w* \w be|strong="G3588"\w* \w an|strong="G3056"\w* \w overseer|strong="G1984"\w*\f + \fr 3:1 \ft or, superintendent, or bishop\f* \w desires|strong="G1937"\w* \w a|strong="G1487"\w* \w good|strong="G2570"\w* \w work|strong="G2041"\w*. +\v 2 \w The|strong="G3588"\w* \w overseer|strong="G1985"\w* \w therefore|strong="G3767"\w* \w must|strong="G1163"\w* \w be|strong="G1510"\w* \w without|strong="G3588"\w* reproach, \w the|strong="G3588"\w* husband \w of|strong="G1520"\w* \w one|strong="G1520"\w* \w wife|strong="G1135"\w*, \w temperate|strong="G3524"\w*, \w sensible|strong="G4998"\w*, \w modest|strong="G2887"\w*, \w hospitable|strong="G5382"\w*, \w good|strong="G3588"\w* \w at|strong="G3588"\w* teaching; +\v 3 \w not|strong="G3361"\w* \w a|strong="G3361"\w* drinker, \w not|strong="G3361"\w* \w violent|strong="G4131"\w*, \w not|strong="G3361"\w* greedy \w for|strong="G3361"\w* money, \w but|strong="G3361"\w* \w gentle|strong="G1933"\w*, \w not|strong="G3361"\w* quarrelsome, \w not|strong="G3361"\w* covetous; +\v 4 \w one|strong="G3956"\w* \w who|strong="G3588"\w* rules \w his|strong="G3956"\w* \w own|strong="G2398"\w* \w house|strong="G3624"\w* \w well|strong="G2573"\w*, \w having|strong="G2192"\w* \w children|strong="G5043"\w* \w in|strong="G1722"\w* \w subjection|strong="G5292"\w* \w with|strong="G3326"\w* \w all|strong="G3956"\w* reverence; +\v 5 (\w for|strong="G1161"\w* \w how|strong="G4459"\w* \w could|strong="G1492"\w* \w someone|strong="G5100"\w* \w who|strong="G3588"\w* doesn’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w how|strong="G4459"\w* \w to|strong="G3756"\w* \w rule|strong="G4291"\w* \w his|strong="G2398"\w* \w own|strong="G2398"\w* \w house|strong="G3624"\w* \w take|strong="G1959"\w* \w care|strong="G1959"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*’s \w assembly|strong="G1577"\w*?) +\v 6 \w not|strong="G3361"\w* \w a|strong="G1519"\w* \w new|strong="G3504"\w* \w convert|strong="G3504"\w*, \w lest|strong="G3361"\w* \w being|strong="G2443"\w* puffed \w up|strong="G1519"\w* \w he|strong="G3588"\w* \w fall|strong="G1706"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* same \w condemnation|strong="G2917"\w* \w as|strong="G1519"\w* \w the|strong="G1519"\w* \w devil|strong="G1228"\w*. +\v 7 \w Moreover|strong="G1161"\w* \w he|strong="G2532"\w* \w must|strong="G1163"\w* \w have|strong="G2192"\w* \w good|strong="G2570"\w* \w testimony|strong="G3141"\w* \w from|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w outside|strong="G1855"\w*, \w to|strong="G1519"\w* avoid falling \w into|strong="G1519"\w* \w reproach|strong="G3680"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w snare|strong="G3803"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w devil|strong="G1228"\w*. +\p +\v 8 \w Servants|strong="G1249"\w*,\f + \fr 3:8 \ft or, Deacons.\f* \w in|strong="G4183"\w* \w the|strong="G3361"\w* \w same|strong="G5615"\w* \w way|strong="G5615"\w*, must \w be|strong="G3361"\w* reverent, \w not|strong="G3361"\w* \w double-tongued|strong="G1351"\w*, \w not|strong="G3361"\w* \w addicted|strong="G4337"\w* \w to|strong="G3361"\w* \w much|strong="G4183"\w* \w wine|strong="G3631"\w*, \w not|strong="G3361"\w* greedy \w for|strong="G4183"\w* money, +\v 9 \w holding|strong="G2192"\w* \w the|strong="G1722"\w* \w mystery|strong="G3466"\w* \w of|strong="G1722"\w* \w the|strong="G1722"\w* \w faith|strong="G4102"\w* \w in|strong="G1722"\w* \w a|strong="G2192"\w* \w pure|strong="G2513"\w* \w conscience|strong="G4893"\w*. +\v 10 \w Let|strong="G1161"\w* \w them|strong="G3778"\w* \w also|strong="G2532"\w* \w first|strong="G4413"\w* \w be|strong="G1510"\w* \w tested|strong="G1381"\w*; \w then|strong="G2532"\w* \w let|strong="G1161"\w* \w them|strong="G3778"\w* \w serve|strong="G1247"\w*\f + \fr 3:10 \ft or, serve as deacons\f* \w if|strong="G2532"\w* \w they|strong="G2532"\w* \w are|strong="G1510"\w* blameless. +\v 11 \w Their|strong="G1722"\w* \w wives|strong="G1135"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w same|strong="G5615"\w* \w way|strong="G1722"\w* \w must|strong="G1135"\w* \w be|strong="G3361"\w* reverent, \w not|strong="G3361"\w* \w slanderers|strong="G1228"\w*, \w temperate|strong="G3524"\w*, \w and|strong="G1135"\w* \w faithful|strong="G4103"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*. +\v 12 \w Let|strong="G1510"\w* \w servants|strong="G1249"\w*\f + \fr 3:12 \ft or, deacons\f* \w be|strong="G1510"\w* husbands \w of|strong="G2532"\w* \w one|strong="G1520"\w* \w wife|strong="G1135"\w*, \w ruling|strong="G4291"\w* \w their|strong="G2532"\w* \w children|strong="G5043"\w* \w and|strong="G2532"\w* \w their|strong="G2532"\w* \w own|strong="G2398"\w* \w houses|strong="G3624"\w* \w well|strong="G2573"\w*. +\v 13 \w For|strong="G1063"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w have|strong="G2532"\w* \w served|strong="G1247"\w* \w well|strong="G2573"\w*\f + \fr 3:13 \ft or, served well as deacons\f* \w gain|strong="G4046"\w* \w for|strong="G1063"\w* \w themselves|strong="G1438"\w* \w a|strong="G2532"\w* \w good|strong="G2570"\w* standing \w and|strong="G2532"\w* \w great|strong="G4183"\w* \w boldness|strong="G3954"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w faith|strong="G4102"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*. +\p +\v 14 \w These|strong="G3778"\w* \w things|strong="G3778"\w* \w I|strong="G3778"\w* \w write|strong="G1125"\w* \w to|strong="G4314"\w* \w you|strong="G4771"\w*, \w hoping|strong="G1679"\w* \w to|strong="G4314"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w you|strong="G4771"\w* \w shortly|strong="G5034"\w*, +\v 15 \w but|strong="G1161"\w* \w if|strong="G1437"\w* \w I|strong="G2532"\w* wait \w long|strong="G1019"\w*, \w that|strong="G2443"\w* \w you|strong="G1437"\w* \w may|strong="G2532"\w* \w know|strong="G1492"\w* \w how|strong="G4459"\w* \w men|strong="G3588"\w* \w ought|strong="G1163"\w* \w to|strong="G2443"\w* behave \w themselves|strong="G1722"\w* \w in|strong="G1722"\w* \w God|strong="G2316"\w*’s \w house|strong="G3624"\w*, \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w living|strong="G2198"\w* \w God|strong="G2316"\w*, \w the|strong="G1722"\w* \w pillar|strong="G4769"\w* \w and|strong="G2532"\w* \w ground|strong="G1477"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* truth. +\v 16 \w Without|strong="G2532"\w* \w controversy|strong="G3672"\w*, \w the|strong="G1722"\w* \w mystery|strong="G3466"\w* \w of|strong="G4151"\w* \w godliness|strong="G2150"\w* \w is|strong="G1510"\w* \w great|strong="G3173"\w*: +\q1 \w God|strong="G2532"\w*\f + \fr 3:16 \ft NU replaces “God” with “who”\f* \w was|strong="G1510"\w* \w revealed|strong="G5319"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*, +\q1 \w justified|strong="G1344"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w spirit|strong="G4151"\w*, +\q1 \w seen|strong="G3708"\w* \w by|strong="G1722"\w* angels, +\q1 \w preached|strong="G2784"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w nations|strong="G1484"\w*, +\q1 \w believed|strong="G4100"\w* \w on|strong="G1722"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*, +\q1 \w and|strong="G2532"\w* received \w up|strong="G2532"\w* \w in|strong="G1722"\w* \w glory|strong="G1391"\w*. +\c 4 +\p +\v 1 \w But|strong="G1161"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w says|strong="G3004"\w* \w expressly|strong="G4490"\w* \w that|strong="G3754"\w* \w in|strong="G1722"\w* \w later|strong="G5306"\w* \w times|strong="G2540"\w* \w some|strong="G5100"\w* \w will|strong="G2532"\w* fall away \w from|strong="G2532"\w* \w the|strong="G1722"\w* \w faith|strong="G4102"\w*, \w paying|strong="G4337"\w* \w attention|strong="G4337"\w* \w to|strong="G2532"\w* \w seducing|strong="G4108"\w* \w spirits|strong="G4151"\w* \w and|strong="G2532"\w* \w doctrines|strong="G1319"\w* \w of|strong="G4151"\w* \w demons|strong="G1140"\w*, +\v 2 \w through|strong="G1722"\w* \w the|strong="G1722"\w* \w hypocrisy|strong="G5272"\w* \w of|strong="G1722"\w* \w men|strong="G3588"\w* \w who|strong="G3588"\w* speak \w lies|strong="G5573"\w*, branded \w in|strong="G1722"\w* \w their|strong="G1722"\w* \w own|strong="G2398"\w* \w conscience|strong="G4893"\w* \w as|strong="G1722"\w* \w with|strong="G1722"\w* \w a|strong="G1722"\w* hot \w iron|strong="G2743"\w*, +\v 3 \w forbidding|strong="G2967"\w* \w marriage|strong="G1060"\w* \w and|strong="G2532"\w* commanding \w to|strong="G1519"\w* abstain \w from|strong="G2532"\w* \w foods|strong="G1033"\w* \w which|strong="G3739"\w* \w God|strong="G2316"\w* \w created|strong="G2936"\w* \w to|strong="G1519"\w* \w be|strong="G2532"\w* \w received|strong="G3336"\w* \w with|strong="G3326"\w* \w thanksgiving|strong="G2169"\w* \w by|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w believe|strong="G4103"\w* \w and|strong="G2532"\w* \w know|strong="G1921"\w* \w the|strong="G2532"\w* truth. +\v 4 \w For|strong="G3754"\w* \w every|strong="G3956"\w* \w creature|strong="G2938"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w is|strong="G2316"\w* \w good|strong="G2570"\w*, \w and|strong="G2532"\w* \w nothing|strong="G3762"\w* \w is|strong="G2316"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* rejected \w if|strong="G2532"\w* \w it|strong="G2532"\w* \w is|strong="G2316"\w* \w received|strong="G2983"\w* \w with|strong="G3326"\w* \w thanksgiving|strong="G2169"\w*. +\v 5 \w For|strong="G1063"\w* \w it|strong="G2532"\w* \w is|strong="G2316"\w* sanctified \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w prayer|strong="G1783"\w*. +\p +\v 6 \w If|strong="G2532"\w* \w you|strong="G3739"\w* instruct \w the|strong="G2532"\w* brothers \w of|strong="G3056"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w you|strong="G3739"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w a|strong="G2532"\w* \w good|strong="G2570"\w* \w servant|strong="G1249"\w* \w of|strong="G3056"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*, \w nourished|strong="G1789"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w words|strong="G3056"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w faith|strong="G4102"\w* \w and|strong="G2532"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w good|strong="G2570"\w* \w doctrine|strong="G1319"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w have|strong="G2532"\w* \w followed|strong="G3877"\w*. +\v 7 \w But|strong="G1161"\w* \w refuse|strong="G3868"\w* profane \w and|strong="G2532"\w* \w old|strong="G2532"\w* wives’ \w fables|strong="G3454"\w*. \w Exercise|strong="G1128"\w* \w yourself|strong="G4572"\w* \w toward|strong="G4314"\w* \w godliness|strong="G2150"\w*. +\v 8 \w For|strong="G1063"\w* \w bodily|strong="G4984"\w* \w exercise|strong="G1129"\w* \w has|strong="G2192"\w* \w some|strong="G3588"\w* \w value|strong="G5624"\w*, \w but|strong="G1161"\w* \w godliness|strong="G2150"\w* \w has|strong="G2192"\w* \w value|strong="G5624"\w* \w in|strong="G2532"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w having|strong="G2192"\w* \w the|strong="G2532"\w* \w promise|strong="G1860"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w life|strong="G2222"\w* \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w now|strong="G1161"\w* \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w to|strong="G4314"\w* \w come|strong="G3195"\w*. +\v 9 \w This|strong="G3588"\w* \w saying|strong="G3056"\w* \w is|strong="G3588"\w* \w faithful|strong="G4103"\w* \w and|strong="G2532"\w* worthy \w of|strong="G3056"\w* \w all|strong="G3956"\w* acceptance. +\v 10 \w For|strong="G1063"\w* \w to|strong="G1519"\w* \w this|strong="G3778"\w* \w end|strong="G1519"\w* \w we|strong="G3739"\w* \w both|strong="G2532"\w* \w labor|strong="G2872"\w* \w and|strong="G2532"\w* \w suffer|strong="G2532"\w* \w reproach|strong="G3679"\w*, \w because|strong="G3754"\w* \w we|strong="G3739"\w* \w have|strong="G2532"\w* \w set|strong="G1679"\w* \w our|strong="G2316"\w* \w trust|strong="G1679"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w living|strong="G2198"\w* \w God|strong="G2316"\w*, \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w Savior|strong="G4990"\w* \w of|strong="G2316"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w*, \w especially|strong="G3122"\w* \w of|strong="G2316"\w* \w those|strong="G3778"\w* \w who|strong="G3739"\w* \w believe|strong="G4103"\w*. +\v 11 \w Command|strong="G3853"\w* \w and|strong="G2532"\w* \w teach|strong="G1321"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*. +\p +\v 12 \w Let|strong="G1096"\w* \w no|strong="G3367"\w* \w man|strong="G3367"\w* \w despise|strong="G2706"\w* \w your|strong="G1722"\w* \w youth|strong="G3503"\w*; \w but|strong="G3588"\w* \w be|strong="G1096"\w* \w an|strong="G1722"\w* \w example|strong="G5179"\w* \w to|strong="G1722"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w believe|strong="G4103"\w*, \w in|strong="G1722"\w* \w word|strong="G3056"\w*, \w in|strong="G1722"\w* \w your|strong="G1722"\w* \w way|strong="G1722"\w* \w of|strong="G3056"\w* life, \w in|strong="G1722"\w* love, \w in|strong="G1722"\w* \w spirit|strong="G3588"\w*, \w in|strong="G1722"\w* \w faith|strong="G4102"\w*, \w and|strong="G4102"\w* \w in|strong="G1722"\w* purity. +\v 13 \w Until|strong="G2193"\w* \w I|strong="G2193"\w* \w come|strong="G2064"\w*, \w pay|strong="G4337"\w* \w attention|strong="G4337"\w* \w to|strong="G2064"\w* reading, \w to|strong="G2064"\w* \w exhortation|strong="G3874"\w*, \w and|strong="G2064"\w* \w to|strong="G2064"\w* \w teaching|strong="G1319"\w*. +\v 14 Don’\w t|strong="G3588"\w* neglect \w the|strong="G1722"\w* \w gift|strong="G5486"\w* \w that|strong="G3739"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w you|strong="G4771"\w*, \w which|strong="G3739"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G1722"\w* \w you|strong="G4771"\w* \w by|strong="G1223"\w* \w prophecy|strong="G4394"\w* \w with|strong="G3326"\w* \w the|strong="G1722"\w* \w laying|strong="G1936"\w* \w on|strong="G1722"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* \w hands|strong="G5495"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* \w elders|strong="G4244"\w*. +\v 15 \w Be|strong="G1510"\w* diligent \w in|strong="G1722"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w*. \w Give|strong="G3956"\w* \w yourself|strong="G4771"\w* wholly \w to|strong="G2443"\w* \w them|strong="G3588"\w*, \w that|strong="G2443"\w* \w your|strong="G3956"\w* \w progress|strong="G4297"\w* \w may|strong="G2443"\w* \w be|strong="G1510"\w* \w revealed|strong="G5318"\w* \w to|strong="G2443"\w* \w all|strong="G3956"\w*. +\v 16 \w Pay|strong="G1907"\w* \w attention|strong="G1907"\w* \w to|strong="G2532"\w* \w yourself|strong="G4572"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w your|strong="G2532"\w* \w teaching|strong="G1319"\w*. \w Continue|strong="G1961"\w* \w in|strong="G2532"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w for|strong="G1063"\w* \w in|strong="G2532"\w* \w doing|strong="G4160"\w* \w this|strong="G3778"\w* \w you|strong="G4771"\w* \w will|strong="G2532"\w* \w save|strong="G4982"\w* \w both|strong="G2532"\w* \w yourself|strong="G4572"\w* \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* hear \w you|strong="G4771"\w*. +\c 5 +\p +\v 1 Don’t \w rebuke|strong="G1969"\w* \w an|strong="G5613"\w* \w older|strong="G4245"\w* \w man|strong="G3361"\w*, \w but|strong="G3361"\w* \w exhort|strong="G3870"\w* \w him|strong="G3870"\w* \w as|strong="G5613"\w* \w a|strong="G5613"\w* \w father|strong="G3962"\w*; \w the|strong="G5613"\w* \w younger|strong="G3501"\w* \w men|strong="G3501"\w* \w as|strong="G5613"\w* brothers; +\v 2 \w the|strong="G1722"\w* \w elder|strong="G4245"\w* \w women|strong="G4245"\w* \w as|strong="G5613"\w* \w mothers|strong="G3384"\w*; \w the|strong="G1722"\w* \w younger|strong="G3501"\w* \w as|strong="G5613"\w* sisters, \w in|strong="G1722"\w* \w all|strong="G3956"\w* purity. +\p +\v 3 \w Honor|strong="G5091"\w* \w widows|strong="G5503"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w widows|strong="G5503"\w* \w indeed|strong="G3689"\w*. +\v 4 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w any|strong="G5100"\w* \w widow|strong="G5503"\w* \w has|strong="G2192"\w* \w children|strong="G5043"\w* \w or|strong="G2228"\w* \w grandchildren|strong="G1549"\w*, \w let|strong="G1161"\w* \w them|strong="G3588"\w* \w learn|strong="G3129"\w* \w first|strong="G4412"\w* \w to|strong="G2532"\w* \w show|strong="G2192"\w* \w piety|strong="G2151"\w* toward \w their|strong="G2532"\w* \w own|strong="G2398"\w* \w family|strong="G3624"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w repay|strong="G2192"\w* \w their|strong="G2532"\w* \w parents|strong="G4269"\w*, \w for|strong="G1063"\w* \w this|strong="G3778"\w* \w is|strong="G1510"\w*\f + \fr 5:4 \ft TR adds “good and”\f* acceptable \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w sight|strong="G1799"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\v 5 \w Now|strong="G1161"\w* \w she|strong="G2532"\w* \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w a|strong="G2532"\w* \w widow|strong="G5503"\w* \w indeed|strong="G2532"\w* \w and|strong="G2532"\w* \w desolate|strong="G3443"\w*, \w has|strong="G2316"\w* \w her|strong="G3588"\w* \w hope|strong="G1679"\w* \w set|strong="G1679"\w* \w on|strong="G1909"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w continues|strong="G4357"\w* \w in|strong="G1909"\w* petitions \w and|strong="G2532"\w* \w prayers|strong="G4335"\w* \w night|strong="G3571"\w* \w and|strong="G2532"\w* \w day|strong="G2250"\w*. +\v 6 \w But|strong="G1161"\w* \w she|strong="G1161"\w* \w who|strong="G3588"\w* \w gives|strong="G4684"\w* \w herself|strong="G4684"\w* \w to|strong="G1161"\w* \w pleasure|strong="G4684"\w* \w is|strong="G3588"\w* \w dead|strong="G2348"\w* \w while|strong="G1161"\w* \w she|strong="G1161"\w* \w lives|strong="G2198"\w*. +\v 7 \w Also|strong="G2532"\w* \w command|strong="G3853"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w may|strong="G2532"\w* \w be|strong="G1510"\w* \w without|strong="G2532"\w* reproach. +\v 8 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w anyone|strong="G5100"\w* doesn’\w t|strong="G3588"\w* \w provide|strong="G4306"\w* \w for|strong="G1161"\w* \w his|strong="G2398"\w* \w own|strong="G2398"\w*, \w and|strong="G2532"\w* \w especially|strong="G3122"\w* \w his|strong="G2398"\w* \w own|strong="G2398"\w* \w household|strong="G3609"\w*, \w he|strong="G2532"\w* \w has|strong="G4102"\w* denied \w the|strong="G2532"\w* \w faith|strong="G4102"\w* \w and|strong="G2532"\w* \w is|strong="G1510"\w* \w worse|strong="G5501"\w* \w than|strong="G2532"\w* \w an|strong="G2532"\w* unbeliever. +\p +\v 9 \w Let|strong="G1096"\w* \w no|strong="G3361"\w* \w one|strong="G1520"\w* \w be|strong="G1096"\w* enrolled \w as|strong="G1096"\w* \w a|strong="G1096"\w* \w widow|strong="G5503"\w* \w under|strong="G1640"\w* \w sixty|strong="G1835"\w* \w years|strong="G2094"\w* \w old|strong="G2094"\w*, \w having|strong="G3361"\w* \w been|strong="G1096"\w* \w the|strong="G3361"\w* \w wife|strong="G1135"\w* \w of|strong="G1520"\w* \w one|strong="G1520"\w* \w man|strong="G1520"\w*, +\v 10 \w being|strong="G1722"\w* approved \w by|strong="G1722"\w* \w good|strong="G2570"\w* \w works|strong="G2041"\w*, \w if|strong="G1487"\w* \w she|strong="G3956"\w* \w has|strong="G2041"\w* \w brought|strong="G5044"\w* \w up|strong="G1722"\w* \w children|strong="G5044"\w*, \w if|strong="G1487"\w* \w she|strong="G3956"\w* \w has|strong="G2041"\w* been hospitable \w to|strong="G1722"\w* \w strangers|strong="G3580"\w*, \w if|strong="G1487"\w* \w she|strong="G3956"\w* \w has|strong="G2041"\w* \w washed|strong="G3538"\w* \w the|strong="G1722"\w* saints’ \w feet|strong="G4228"\w*, \w if|strong="G1487"\w* \w she|strong="G3956"\w* \w has|strong="G2041"\w* \w relieved|strong="G1884"\w* \w the|strong="G1722"\w* \w afflicted|strong="G2346"\w*, \w and|strong="G3956"\w* \w if|strong="G1487"\w* \w she|strong="G3956"\w* \w has|strong="G2041"\w* diligently \w followed|strong="G1872"\w* \w every|strong="G3956"\w* \w good|strong="G2570"\w* \w work|strong="G2041"\w*. +\p +\v 11 \w But|strong="G1161"\w* \w refuse|strong="G3868"\w* \w younger|strong="G3501"\w* \w widows|strong="G5503"\w*, \w for|strong="G1063"\w* \w when|strong="G3752"\w* \w they|strong="G1161"\w* \w have|strong="G2309"\w* grown wanton \w against|strong="G2691"\w* \w Christ|strong="G5547"\w*, \w they|strong="G1161"\w* \w desire|strong="G2309"\w* \w to|strong="G2309"\w* \w marry|strong="G1060"\w*, +\v 12 \w having|strong="G2192"\w* \w condemnation|strong="G2917"\w*, \w because|strong="G3754"\w* \w they|strong="G3588"\w* \w have|strong="G2192"\w* rejected \w their|strong="G3588"\w* \w first|strong="G4413"\w* \w pledge|strong="G4102"\w*. +\v 13 \w Besides|strong="G2532"\w*, \w they|strong="G2532"\w* \w also|strong="G2532"\w* \w learn|strong="G3129"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* idle, \w going|strong="G2532"\w* \w about|strong="G4022"\w* \w from|strong="G2532"\w* \w house|strong="G3614"\w* \w to|strong="G2532"\w* \w house|strong="G3614"\w*. \w Not|strong="G3756"\w* \w only|strong="G3440"\w* idle, \w but|strong="G1161"\w* \w also|strong="G2532"\w* \w gossips|strong="G5397"\w* \w and|strong="G2532"\w* \w busybodies|strong="G4021"\w*, \w saying|strong="G2980"\w* \w things|strong="G3588"\w* \w which|strong="G3588"\w* \w they|strong="G2532"\w* \w ought|strong="G1163"\w* \w not|strong="G3756"\w*. +\v 14 \w I|strong="G3767"\w* \w desire|strong="G1014"\w* \w therefore|strong="G3767"\w* \w that|strong="G3588"\w* \w the|strong="G3588"\w* \w younger|strong="G3501"\w* widows \w marry|strong="G1060"\w*, \w bear|strong="G5041"\w* \w children|strong="G5041"\w*, rule \w the|strong="G3588"\w* household, \w and|strong="G3767"\w* \w give|strong="G1325"\w* \w no|strong="G3367"\w* occasion \w to|strong="G1325"\w* \w the|strong="G3588"\w* adversary \w for|strong="G3367"\w* insulting. +\v 15 \w For|strong="G1063"\w* \w already|strong="G2235"\w* \w some|strong="G5100"\w* \w have|strong="G5100"\w* \w turned|strong="G1624"\w* away \w after|strong="G3694"\w* \w Satan|strong="G4567"\w*. +\v 16 \w If|strong="G1487"\w* \w any|strong="G5100"\w* \w man|strong="G5100"\w* \w or|strong="G2532"\w* \w woman|strong="G4103"\w* \w who|strong="G3588"\w* believes \w has|strong="G2192"\w* \w widows|strong="G5503"\w*, \w let|strong="G2443"\w* \w them|strong="G3588"\w* \w relieve|strong="G1884"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* don’\w t|strong="G3588"\w* \w let|strong="G2443"\w* \w the|strong="G2532"\w* \w assembly|strong="G1577"\w* \w be|strong="G2532"\w* burdened, \w that|strong="G2443"\w* \w it|strong="G2532"\w* \w might|strong="G2532"\w* \w relieve|strong="G1884"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w widows|strong="G5503"\w* \w indeed|strong="G2532"\w*. +\p +\v 17 \w Let|strong="G2532"\w* \w the|strong="G1722"\w* \w elders|strong="G4245"\w* \w who|strong="G3588"\w* \w rule|strong="G4291"\w* \w well|strong="G2573"\w* \w be|strong="G2532"\w* counted worthy \w of|strong="G3056"\w* \w double|strong="G1362"\w* \w honor|strong="G5092"\w*, \w especially|strong="G3122"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w labor|strong="G2872"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w teaching|strong="G1319"\w*. +\v 18 \w For|strong="G1063"\w* \w the|strong="G2532"\w* \w Scripture|strong="G1124"\w* \w says|strong="G3004"\w*, “\w You|strong="G3004"\w* \w shall|strong="G2532"\w* \w not|strong="G3756"\w* \w muzzle|strong="G5392"\w* \w the|strong="G2532"\w* \w ox|strong="G1016"\w* \w when|strong="G2532"\w* \w it|strong="G2532"\w* treads \w out|strong="G2532"\w* \w the|strong="G2532"\w* grain.”\x + \xo 5:18 \xt Deuteronomy 25:4\x* \w And|strong="G2532"\w*, \wj “\+w The|strong="G2532"\+w* \+w laborer|strong="G2040"\+w* \+w is|strong="G3588"\+w* worthy \+w of|strong="G2532"\+w* \+w his|strong="G2532"\+w* \+w wages|strong="G3408"\+w*.”\wj*\x + \xo 5:18 \xt Luke 10:7; Leviticus 19:13\x* +\p +\v 19 Don’t \w receive|strong="G3858"\w* \w an|strong="G2228"\w* \w accusation|strong="G2724"\w* \w against|strong="G2596"\w* \w an|strong="G2228"\w* \w elder|strong="G4245"\w* \w except|strong="G1487"\w* \w at|strong="G1909"\w* \w the|strong="G1909"\w* word \w of|strong="G1909"\w* \w two|strong="G1417"\w* \w or|strong="G2228"\w* \w three|strong="G5140"\w* \w witnesses|strong="G3144"\w*. +\v 20 \w Those|strong="G3588"\w* \w who|strong="G3588"\w* sin, \w reprove|strong="G1651"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w sight|strong="G1799"\w* \w of|strong="G2532"\w* \w all|strong="G3956"\w*, \w that|strong="G2443"\w* \w the|strong="G2532"\w* \w rest|strong="G3062"\w* \w also|strong="G2532"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* \w in|strong="G2532"\w* \w fear|strong="G5401"\w*. +\v 21 \w I|strong="G2532"\w* command \w you|strong="G4160"\w* \w in|strong="G2596"\w* \w the|strong="G2532"\w* \w sight|strong="G1799"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G3588"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w chosen|strong="G1588"\w* angels, \w that|strong="G2443"\w* \w you|strong="G4160"\w* \w observe|strong="G5442"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w without|strong="G5565"\w* \w prejudice|strong="G4299"\w*, \w doing|strong="G4160"\w* \w nothing|strong="G3367"\w* \w by|strong="G2596"\w* \w partiality|strong="G4346"\w*. +\v 22 \w Lay|strong="G2007"\w* \w hands|strong="G5495"\w* \w hastily|strong="G5030"\w* \w on|strong="G5495"\w* \w no|strong="G3367"\w* \w one|strong="G3367"\w*. Don’t \w be|strong="G3366"\w* \w a|strong="G2007"\w* participant \w in|strong="G5083"\w* \w other|strong="G2841"\w* people’s sins. \w Keep|strong="G5083"\w* \w yourself|strong="G4572"\w* pure. +\p +\v 23 \w Be|strong="G2532"\w* \w no|strong="G3371"\w* \w longer|strong="G3371"\w* \w a|strong="G2532"\w* drinker \w of|strong="G1223"\w* \w water|strong="G5202"\w* \w only|strong="G2532"\w*, \w but|strong="G2532"\w* \w use|strong="G5530"\w* \w a|strong="G2532"\w* \w little|strong="G3641"\w* \w wine|strong="G3631"\w* \w for|strong="G1223"\w* \w your|strong="G1223"\w* \w stomach|strong="G4751"\w*’s \w sake|strong="G1223"\w* \w and|strong="G2532"\w* \w your|strong="G1223"\w* \w frequent|strong="G4437"\w* infirmities. +\p +\v 24 \w Some|strong="G5100"\w* \w men|strong="G5100"\w*’s sins \w are|strong="G1510"\w* \w evident|strong="G4271"\w*, preceding \w them|strong="G3588"\w* \w to|strong="G1519"\w* \w judgment|strong="G2920"\w*, \w and|strong="G2532"\w* \w some|strong="G5100"\w* \w also|strong="G2532"\w* \w follow|strong="G1872"\w* later. +\v 25 \w In|strong="G2532"\w* \w the|strong="G2532"\w* \w same|strong="G5615"\w* \w way|strong="G5615"\w* \w also|strong="G2532"\w* \w there|strong="G2532"\w* \w are|strong="G3588"\w* \w good|strong="G2570"\w* \w works|strong="G2041"\w* \w that|strong="G3588"\w* \w are|strong="G3588"\w* \w obvious|strong="G4271"\w*, \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w that|strong="G3588"\w* \w are|strong="G3588"\w* otherwise \w can|strong="G1410"\w*’\w t|strong="G3588"\w* \w be|strong="G2532"\w* \w hidden|strong="G2928"\w*. +\c 6 +\p +\v 1 \w Let|strong="G1510"\w* \w as|strong="G3745"\w* \w many|strong="G3745"\w* \w as|strong="G3745"\w* \w are|strong="G1510"\w* bondservants \w under|strong="G5259"\w* \w the|strong="G2532"\w* \w yoke|strong="G2218"\w* \w count|strong="G2233"\w* \w their|strong="G2532"\w* \w own|strong="G2398"\w* \w masters|strong="G1203"\w* worthy \w of|strong="G5259"\w* \w all|strong="G3956"\w* \w honor|strong="G5092"\w*, \w that|strong="G2443"\w* \w the|strong="G2532"\w* \w name|strong="G3686"\w* \w of|strong="G5259"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w doctrine|strong="G1319"\w* \w not|strong="G3361"\w* \w be|strong="G1510"\w* blasphemed. +\v 2 \w Those|strong="G3588"\w* \w who|strong="G3588"\w* \w have|strong="G2192"\w* \w believing|strong="G4103"\w* \w masters|strong="G1203"\w*, \w let|strong="G1161"\w* \w them|strong="G3588"\w* \w not|strong="G3361"\w* \w despise|strong="G2706"\w* \w them|strong="G3588"\w* \w because|strong="G3754"\w* \w they|strong="G2532"\w* \w are|strong="G1510"\w* brothers, \w but|strong="G1161"\w* \w rather|strong="G3123"\w* \w let|strong="G1161"\w* \w them|strong="G3588"\w* \w serve|strong="G1398"\w* \w them|strong="G3588"\w*, \w because|strong="G3754"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* partake \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w benefit|strong="G2108"\w* \w are|strong="G1510"\w* \w believing|strong="G4103"\w* \w and|strong="G2532"\w* beloved. \w Teach|strong="G1321"\w* \w and|strong="G2532"\w* \w exhort|strong="G3870"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*. +\p +\v 3 \w If|strong="G1487"\w* \w anyone|strong="G5100"\w* teaches \w a|strong="G2532"\w* \w different|strong="G2085"\w* \w doctrine|strong="G1319"\w* \w and|strong="G2532"\w* doesn’\w t|strong="G3588"\w* \w consent|strong="G4334"\w* \w to|strong="G2532"\w* \w sound|strong="G5198"\w* \w words|strong="G3056"\w*, \w the|strong="G2532"\w* \w words|strong="G3056"\w* \w of|strong="G3056"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w doctrine|strong="G1319"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w godliness|strong="G2150"\w*, +\v 4 \w he|strong="G2532"\w* \w is|strong="G3739"\w* \w conceited|strong="G5187"\w*, \w knowing|strong="G1987"\w* \w nothing|strong="G3367"\w*, \w but|strong="G2532"\w* obsessed \w with|strong="G1537"\w* arguments, \w disputes|strong="G3055"\w*, \w and|strong="G2532"\w* word battles, \w from|strong="G1537"\w* \w which|strong="G3739"\w* \w come|strong="G1096"\w* \w envy|strong="G5355"\w*, \w strife|strong="G2054"\w*, insulting, \w evil|strong="G4190"\w* \w suspicions|strong="G5283"\w*, +\v 5 constant friction \w of|strong="G2532"\w* \w people|strong="G1510"\w* \w of|strong="G2532"\w* \w corrupt|strong="G1311"\w* \w minds|strong="G3563"\w* \w and|strong="G2532"\w* destitute \w of|strong="G2532"\w* \w the|strong="G2532"\w* truth, \w who|strong="G3588"\w* \w suppose|strong="G3543"\w* \w that|strong="G3588"\w* \w godliness|strong="G2150"\w* \w is|strong="G1510"\w* \w a|strong="G2532"\w* \w means|strong="G1510"\w* \w of|strong="G2532"\w* \w gain|strong="G4200"\w*. Withdraw yourself \w from|strong="G2532"\w* \w such|strong="G3588"\w*.\f + \fr 6:5 \ft NU omits “Withdraw yourself from such.”\f* +\p +\v 6 \w But|strong="G1161"\w* \w godliness|strong="G2150"\w* \w with|strong="G3326"\w* contentment \w is|strong="G1510"\w* \w great|strong="G3173"\w* \w gain|strong="G4200"\w*. +\v 7 \w For|strong="G1063"\w* \w we|strong="G3754"\w* \w brought|strong="G1533"\w* \w nothing|strong="G3762"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w world|strong="G2889"\w*, \w and|strong="G3588"\w* \w we|strong="G3754"\w* \w certainly|strong="G1063"\w* \w can|strong="G1410"\w*’\w t|strong="G3588"\w* \w carry|strong="G1627"\w* \w anything|strong="G5100"\w* \w out|strong="G1627"\w*. +\v 8 \w But|strong="G1161"\w* \w having|strong="G2192"\w* \w food|strong="G1305"\w* \w and|strong="G2532"\w* clothing, \w we|strong="G2532"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* content \w with|strong="G2532"\w* \w that|strong="G2532"\w*. +\v 9 \w But|strong="G1161"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* determined \w to|strong="G1519"\w* \w be|strong="G2532"\w* \w rich|strong="G4147"\w* \w fall|strong="G1706"\w* \w into|strong="G1519"\w* \w a|strong="G2532"\w* \w temptation|strong="G3986"\w*, \w a|strong="G2532"\w* \w snare|strong="G3803"\w*, \w and|strong="G2532"\w* \w many|strong="G4183"\w* \w foolish|strong="G2532"\w* \w and|strong="G2532"\w* harmful \w lusts|strong="G1939"\w*, \w such|strong="G1161"\w* \w as|strong="G1519"\w* \w drown|strong="G1036"\w* \w men|strong="G3588"\w* \w in|strong="G1519"\w* \w ruin|strong="G3639"\w* \w and|strong="G2532"\w* \w destruction|strong="G3639"\w*. +\v 10 \w For|strong="G1063"\w* \w the|strong="G2532"\w* \w love|strong="G5365"\w* \w of|strong="G2532"\w* \w money|strong="G5365"\w* \w is|strong="G1510"\w* \w a|strong="G2532"\w* \w root|strong="G4491"\w* \w of|strong="G2532"\w* \w all|strong="G3956"\w* \w kinds|strong="G3956"\w* \w of|strong="G2532"\w* \w evil|strong="G2556"\w*. \w Some|strong="G5100"\w* \w have|strong="G2532"\w* \w been|strong="G1510"\w* led astray \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w faith|strong="G4102"\w* \w in|strong="G2532"\w* \w their|strong="G1438"\w* greed, \w and|strong="G2532"\w* \w have|strong="G2532"\w* \w pierced|strong="G4044"\w* \w themselves|strong="G1438"\w* \w through|strong="G4044"\w* \w with|strong="G2532"\w* \w many|strong="G4183"\w* \w sorrows|strong="G3601"\w*. +\p +\v 11 \w But|strong="G1161"\w* \w you|strong="G4771"\w*, \w man|strong="G3778"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w flee|strong="G5343"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w and|strong="G1161"\w* \w follow|strong="G1377"\w* \w after|strong="G1161"\w* \w righteousness|strong="G1343"\w*, \w godliness|strong="G2150"\w*, \w faith|strong="G4102"\w*, love, \w perseverance|strong="G5281"\w*, \w and|strong="G1161"\w* \w gentleness|strong="G4240"\w*. +\v 12 Fight \w the|strong="G2532"\w* \w good|strong="G2570"\w* fight \w of|strong="G2532"\w* \w faith|strong="G4102"\w*. \w Take|strong="G1949"\w* \w hold|strong="G1949"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* eternal \w life|strong="G2222"\w* \w to|strong="G1519"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w were|strong="G3588"\w* \w called|strong="G2564"\w*, \w and|strong="G2532"\w* \w you|strong="G3739"\w* \w confessed|strong="G3670"\w* \w the|strong="G2532"\w* \w good|strong="G2570"\w* \w confession|strong="G3671"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w sight|strong="G1799"\w* \w of|strong="G2532"\w* \w many|strong="G4183"\w* \w witnesses|strong="G3144"\w*. +\v 13 \w I|strong="G2532"\w* \w command|strong="G3853"\w* \w you|strong="G4771"\w* \w before|strong="G1799"\w* \w God|strong="G2316"\w* \w who|strong="G3588"\w* \w gives|strong="G2225"\w* \w life|strong="G2225"\w* \w to|strong="G2532"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w and|strong="G2532"\w* \w before|strong="G1799"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w who|strong="G3588"\w* \w before|strong="G1799"\w* \w Pontius|strong="G4194"\w* \w Pilate|strong="G4091"\w* \w testified|strong="G3140"\w* \w the|strong="G2532"\w* \w good|strong="G2570"\w* \w confession|strong="G3671"\w*, +\v 14 \w that|strong="G3588"\w* \w you|strong="G4771"\w* \w keep|strong="G5083"\w* \w the|strong="G3588"\w* \w commandment|strong="G1785"\w* \w without|strong="G3588"\w* spot, blameless \w until|strong="G3360"\w* \w the|strong="G3588"\w* \w appearing|strong="G2015"\w* \w of|strong="G2962"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, +\v 15 \w which|strong="G3739"\w* \w at|strong="G3588"\w* \w the|strong="G2532"\w* \w right|strong="G2540"\w* \w time|strong="G2540"\w* \w he|strong="G2532"\w* \w will|strong="G2532"\w* \w show|strong="G1166"\w*, \w who|strong="G3739"\w* \w is|strong="G3588"\w* \w the|strong="G2532"\w* \w blessed|strong="G3107"\w* \w and|strong="G2532"\w* \w only|strong="G3441"\w* Ruler, \w the|strong="G2532"\w* \w King|strong="G3588"\w* \w of|strong="G2532"\w* \w kings|strong="G3588"\w* \w and|strong="G2532"\w* \w Lord|strong="G2962"\w* \w of|strong="G2532"\w* \w lords|strong="G2962"\w*. +\v 16 \w He|strong="G2532"\w* \w alone|strong="G3441"\w* \w has|strong="G2192"\w* immortality, dwelling \w in|strong="G2532"\w* unapproachable \w light|strong="G5457"\w*, \w whom|strong="G3739"\w* \w no|strong="G3762"\w* \w man|strong="G3762"\w* \w has|strong="G2192"\w* \w seen|strong="G3708"\w* \w nor|strong="G3761"\w* \w can|strong="G1410"\w* \w see|strong="G3708"\w*, \w to|strong="G2532"\w* \w whom|strong="G3739"\w* \w be|strong="G2532"\w* \w honor|strong="G5092"\w* \w and|strong="G2532"\w* eternal \w power|strong="G2904"\w*. Amen. +\p +\v 17 \w Charge|strong="G3853"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w rich|strong="G4145"\w* \w in|strong="G1722"\w* \w this|strong="G3588"\w* \w present|strong="G3568"\w* age \w that|strong="G3588"\w* \w they|strong="G3588"\w* \w not|strong="G3361"\w* \w be|strong="G3361"\w* arrogant, \w nor|strong="G3366"\w* \w have|strong="G1473"\w* \w their|strong="G1722"\w* \w hope|strong="G1679"\w* \w set|strong="G5426"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* uncertainty \w of|strong="G2316"\w* \w riches|strong="G4149"\w*, \w but|strong="G3361"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* living \w God|strong="G2316"\w*, \w who|strong="G3588"\w* \w richly|strong="G4146"\w* \w provides|strong="G3930"\w* \w us|strong="G1519"\w* \w with|strong="G1722"\w* \w everything|strong="G3956"\w* \w to|strong="G1519"\w* enjoy; +\v 18 \w that|strong="G1722"\w* \w they|strong="G1510"\w* \w do|strong="G1510"\w* \w good|strong="G2570"\w*, \w that|strong="G1722"\w* \w they|strong="G1510"\w* \w be|strong="G1510"\w* \w rich|strong="G4147"\w* \w in|strong="G1722"\w* \w good|strong="G2570"\w* \w works|strong="G2041"\w*, \w that|strong="G1722"\w* \w they|strong="G1510"\w* \w be|strong="G1510"\w* \w ready|strong="G2843"\w* \w to|strong="G1722"\w* \w distribute|strong="G2130"\w*, willing \w to|strong="G1722"\w* \w share|strong="G2843"\w*; +\v 19 laying \w up|strong="G1519"\w* \w in|strong="G1519"\w* store \w for|strong="G1519"\w* \w themselves|strong="G1438"\w* \w a|strong="G1519"\w* \w good|strong="G2570"\w* \w foundation|strong="G2310"\w* \w against|strong="G1519"\w* \w the|strong="G1519"\w* time \w to|strong="G1519"\w* \w come|strong="G3195"\w*, \w that|strong="G2443"\w* \w they|strong="G3588"\w* \w may|strong="G2443"\w* lay \w hold|strong="G1949"\w* \w of|strong="G3588"\w* eternal \w life|strong="G2222"\w*. +\p +\v 20 \w Timothy|strong="G5095"\w*, \w guard|strong="G5442"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w committed|strong="G3866"\w* \w to|strong="G2532"\w* \w you|strong="G2532"\w*, turning away \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w empty|strong="G2757"\w* \w chatter|strong="G2757"\w* \w and|strong="G2532"\w* oppositions \w of|strong="G2532"\w* \w what|strong="G3588"\w* \w is|strong="G3588"\w* \w falsely|strong="G5581"\w* \w called|strong="G5581"\w* \w knowledge|strong="G1108"\w*, +\v 21 \w which|strong="G3739"\w* \w some|strong="G5100"\w* profess, \w and|strong="G4102"\w* thus \w have|strong="G5210"\w* wandered \w from|strong="G3588"\w* \w the|strong="G3588"\w* \w faith|strong="G4102"\w*. +\p \w Grace|strong="G5485"\w* \w be|strong="G3588"\w* \w with|strong="G3326"\w* \w you|strong="G5210"\w*. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/85-2TIeng-web.usfm b/bibles/eng-web_usfm/85-2TIeng-web.usfm new file mode 100644 index 0000000..3fbdb64 --- /dev/null +++ b/bibles/eng-web_usfm/85-2TIeng-web.usfm @@ -0,0 +1,123 @@ +\id 2TI 55-2TI-web.sfm World English Bible (WEB) +\ide UTF-8 +\h 2 Timothy +\toc1 Paul’s Second Letter to Timothy +\toc2 2 Timothy +\toc3 2Ti +\mt1 Paul’s Second Letter to Timothy +\c 1 +\p +\v 1 \w Paul|strong="G3972"\w*, \w an|strong="G1722"\w* apostle \w of|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*\f + \fr 1:1 \ft “Christ” means “Anointed One”.\f* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w will|strong="G2307"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w*, \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1722"\w* \w promise|strong="G1860"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* \w life|strong="G2222"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*, +\v 2 \w to|strong="G2532"\w* \w Timothy|strong="G5095"\w*, \w my|strong="G1473"\w* beloved \w child|strong="G5043"\w*: \w Grace|strong="G5485"\w*, \w mercy|strong="G1656"\w*, \w and|strong="G2532"\w* \w peace|strong="G1515"\w*, \w from|strong="G1515"\w* \w God|strong="G2316"\w* \w the|strong="G2532"\w* \w Father|strong="G3962"\w* \w and|strong="G2532"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w*. +\p +\v 3 \w I|strong="G1473"\w* \w thank|strong="G5485"\w* \w God|strong="G2316"\w*, \w whom|strong="G3739"\w* \w I|strong="G1473"\w* \w serve|strong="G3000"\w* \w as|strong="G5613"\w* \w my|strong="G1722"\w* \w forefathers|strong="G4269"\w* \w did|strong="G2532"\w*, \w with|strong="G1722"\w* \w a|strong="G2192"\w* \w pure|strong="G2513"\w* \w conscience|strong="G4893"\w*. \w How|strong="G5613"\w* unceasing \w is|strong="G3588"\w* \w my|strong="G1722"\w* memory \w of|strong="G4012"\w* \w you|strong="G4771"\w* \w in|strong="G1722"\w* \w my|strong="G1722"\w* petitions, \w night|strong="G3571"\w* \w and|strong="G2532"\w* \w day|strong="G2250"\w* +\v 4 \w longing|strong="G1971"\w* \w to|strong="G2443"\w* \w see|strong="G3708"\w* \w you|strong="G4771"\w*, remembering \w your|strong="G3708"\w* \w tears|strong="G1144"\w*, \w that|strong="G2443"\w* \w I|strong="G2443"\w* \w may|strong="G2443"\w* \w be|strong="G2443"\w* \w filled|strong="G4137"\w* \w with|strong="G4137"\w* \w joy|strong="G5479"\w*; +\v 5 \w having|strong="G2532"\w* \w been|strong="G2532"\w* reminded \w of|strong="G2532"\w* \w the|strong="G1722"\w* sincere \w faith|strong="G4102"\w* \w that|strong="G3754"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w you|strong="G4771"\w*, \w which|strong="G3588"\w* \w lived|strong="G2532"\w* \w first|strong="G4413"\w* \w in|strong="G1722"\w* \w your|strong="G2532"\w* \w grandmother|strong="G3125"\w* \w Lois|strong="G3090"\w* \w and|strong="G2532"\w* \w your|strong="G2532"\w* \w mother|strong="G3384"\w* \w Eunice|strong="G2131"\w* \w and|strong="G2532"\w*, \w I|strong="G2532"\w* \w am|strong="G2532"\w* \w persuaded|strong="G3982"\w*, \w in|strong="G1722"\w* \w you|strong="G4771"\w* \w also|strong="G2532"\w*. +\p +\v 6 \w For|strong="G1223"\w* \w this|strong="G3588"\w* \w cause|strong="G1223"\w*, \w I|strong="G1473"\w* remind \w you|strong="G4771"\w* \w that|strong="G3739"\w* \w you|strong="G4771"\w* \w should|strong="G2316"\w* stir \w up|strong="G1722"\w* \w the|strong="G1722"\w* \w gift|strong="G5486"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w* \w which|strong="G3739"\w* \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w you|strong="G4771"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w laying|strong="G1936"\w* \w on|strong="G1722"\w* \w of|strong="G1223"\w* \w my|strong="G1722"\w* \w hands|strong="G5495"\w*. +\v 7 \w For|strong="G1063"\w* \w God|strong="G2316"\w* didn’\w t|strong="G3588"\w* \w give|strong="G1325"\w* \w us|strong="G1325"\w* \w a|strong="G2532"\w* \w spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w fear|strong="G1167"\w*, \w but|strong="G2532"\w* \w of|strong="G4151"\w* \w power|strong="G1411"\w*, love, \w and|strong="G2532"\w* \w self-control|strong="G4995"\w*. +\v 8 \w Therefore|strong="G3767"\w* don’\w t|strong="G3588"\w* \w be|strong="G3361"\w* \w ashamed|strong="G1870"\w* \w of|strong="G2316"\w* \w the|strong="G2596"\w* \w testimony|strong="G3142"\w* \w of|strong="G2316"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w*, \w nor|strong="G3366"\w* \w of|strong="G2316"\w* \w me|strong="G1473"\w* \w his|strong="G2596"\w* \w prisoner|strong="G1198"\w*; \w but|strong="G3361"\w* \w endure|strong="G3767"\w* \w hardship|strong="G4777"\w* \w for|strong="G2316"\w* \w the|strong="G2596"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G2596"\w* \w power|strong="G1411"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, +\v 9 \w who|strong="G3588"\w* \w saved|strong="G4982"\w* \w us|strong="G1325"\w* \w and|strong="G2532"\w* \w called|strong="G2564"\w* \w us|strong="G1325"\w* \w with|strong="G1722"\w* \w a|strong="G2532"\w* holy \w calling|strong="G2821"\w*, \w not|strong="G3756"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w our|strong="G2424"\w* \w works|strong="G2041"\w*, \w but|strong="G2532"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w his|strong="G1722"\w* \w own|strong="G2398"\w* \w purpose|strong="G4286"\w* \w and|strong="G2532"\w* \w grace|strong="G5485"\w*, \w which|strong="G3588"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* \w us|strong="G1325"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w before|strong="G4253"\w* \w times|strong="G5550"\w* eternal, +\v 10 \w but|strong="G1161"\w* \w has|strong="G5547"\w* \w now|strong="G1161"\w* \w been|strong="G2532"\w* \w revealed|strong="G5319"\w* \w by|strong="G1223"\w* \w the|strong="G2532"\w* \w appearing|strong="G2015"\w* \w of|strong="G1223"\w* \w our|strong="G2424"\w* \w Savior|strong="G4990"\w*, \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*, \w who|strong="G3588"\w* \w abolished|strong="G2673"\w* \w death|strong="G2288"\w*, \w and|strong="G2532"\w* \w brought|strong="G5461"\w* \w life|strong="G2222"\w* \w and|strong="G2532"\w* immortality \w to|strong="G2532"\w* \w light|strong="G5461"\w* \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w Good|strong="G1223"\w* \w News|strong="G2098"\w*. +\v 11 \w For|strong="G1519"\w* \w this|strong="G3739"\w* \w I|strong="G1473"\w* \w was|strong="G3739"\w* \w appointed|strong="G5087"\w* \w as|strong="G1519"\w* \w a|strong="G2532"\w* \w preacher|strong="G2783"\w*, \w an|strong="G2532"\w* apostle, \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w teacher|strong="G1320"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* Gentiles. +\v 12 \w For|strong="G1063"\w* \w this|strong="G3778"\w* \w cause|strong="G1223"\w* \w I|strong="G1473"\w* \w also|strong="G2532"\w* \w suffer|strong="G3958"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*. +\p \w Yet|strong="G2532"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w not|strong="G3756"\w* \w ashamed|strong="G1870"\w*, \w for|strong="G1063"\w* \w I|strong="G1473"\w* \w know|strong="G1492"\w* \w him|strong="G3588"\w* \w whom|strong="G3739"\w* \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w believed|strong="G4100"\w*, \w and|strong="G2532"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w persuaded|strong="G3982"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w able|strong="G1415"\w* \w to|strong="G1519"\w* \w guard|strong="G5442"\w* \w that|strong="G3754"\w* \w which|strong="G3739"\w* \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w committed|strong="G3866"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w against|strong="G1519"\w* \w that|strong="G3754"\w* \w day|strong="G2250"\w*. +\p +\v 13 \w Hold|strong="G2192"\w* \w the|strong="G1722"\w* \w pattern|strong="G5296"\w* \w of|strong="G3056"\w* \w sound|strong="G5198"\w* \w words|strong="G3056"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w have|strong="G2192"\w* heard \w from|strong="G3844"\w* \w me|strong="G1473"\w*, \w in|strong="G1722"\w* \w faith|strong="G4102"\w* \w and|strong="G2532"\w* love \w which|strong="G3739"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*. +\v 14 \w That|strong="G3588"\w* \w good|strong="G2570"\w* \w thing|strong="G2570"\w* \w which|strong="G3588"\w* \w was|strong="G3588"\w* \w committed|strong="G3866"\w* \w to|strong="G1722"\w* \w you|strong="G1722"\w*, \w guard|strong="G5442"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w who|strong="G3588"\w* \w dwells|strong="G1774"\w* \w in|strong="G1722"\w* \w us|strong="G2249"\w*. +\p +\v 15 \w This|strong="G3778"\w* \w you|strong="G3739"\w* \w know|strong="G1492"\w*, \w that|strong="G3754"\w* \w all|strong="G3956"\w* \w who|strong="G3739"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w Asia|strong="G3588"\w* turned away \w from|strong="G2532"\w* \w me|strong="G1473"\w*, \w of|strong="G2532"\w* \w whom|strong="G3739"\w* \w are|strong="G1510"\w* \w Phygelus|strong="G5436"\w* \w and|strong="G2532"\w* \w Hermogenes|strong="G2061"\w*. +\v 16 \w May|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w grant|strong="G1325"\w* \w mercy|strong="G1656"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w house|strong="G3624"\w* \w of|strong="G2532"\w* \w Onesiphorus|strong="G3683"\w*, \w for|strong="G3754"\w* \w he|strong="G2532"\w* \w often|strong="G4178"\w* refreshed \w me|strong="G1325"\w*, \w and|strong="G2532"\w* \w was|strong="G3588"\w* \w not|strong="G3756"\w* \w ashamed|strong="G1870"\w* \w of|strong="G2532"\w* \w my|strong="G1325"\w* chain, +\v 17 \w but|strong="G2532"\w* \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w was|strong="G1096"\w* \w in|strong="G1722"\w* \w Rome|strong="G4516"\w*, \w he|strong="G2532"\w* \w sought|strong="G2212"\w* \w me|strong="G1473"\w* \w diligently|strong="G4709"\w* \w and|strong="G2532"\w* \w found|strong="G2147"\w* \w me|strong="G1473"\w* +\v 18 (\w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w grant|strong="G1325"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w find|strong="G2147"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*’\w s|strong="G2962"\w* \w mercy|strong="G1656"\w* \w in|strong="G1722"\w* \w that|strong="G3588"\w* \w day|strong="G2250"\w*); \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w how|strong="G3745"\w* \w many|strong="G3745"\w* \w things|strong="G3588"\w* \w he|strong="G2532"\w* \w served|strong="G1247"\w* \w at|strong="G1722"\w* \w Ephesus|strong="G2181"\w*, \w you|strong="G4771"\w* \w know|strong="G1097"\w* \w very|strong="G2532"\w* \w well|strong="G2532"\w*. +\c 2 +\p +\v 1 \w You|strong="G4771"\w* \w therefore|strong="G3767"\w*, \w my|strong="G1722"\w* \w child|strong="G5043"\w*, \w be|strong="G3588"\w* \w strengthened|strong="G1743"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w grace|strong="G5485"\w* \w that|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*. +\v 2 \w The|strong="G2532"\w* \w things|strong="G3778"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w have|strong="G2532"\w* heard \w from|strong="G3844"\w* \w me|strong="G1473"\w* \w among|strong="G3844"\w* \w many|strong="G4183"\w* \w witnesses|strong="G3144"\w*, \w commit|strong="G3908"\w* \w the|strong="G2532"\w* \w same|strong="G3778"\w* \w things|strong="G3778"\w* \w to|strong="G2532"\w* \w faithful|strong="G4103"\w* \w men|strong="G3778"\w* \w who|strong="G3739"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w able|strong="G2425"\w* \w to|strong="G2532"\w* \w teach|strong="G1321"\w* \w others|strong="G2087"\w* \w also|strong="G2532"\w*. +\v 3 \w You|strong="G5613"\w* therefore \w must|strong="G5547"\w* endure \w hardship|strong="G4777"\w* \w as|strong="G5613"\w* \w a|strong="G5613"\w* \w good|strong="G2570"\w* \w soldier|strong="G4757"\w* \w of|strong="G2424"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*. +\v 4 \w No|strong="G3762"\w* \w soldier|strong="G4754"\w* \w on|strong="G2443"\w* duty \w entangles|strong="G1707"\w* \w himself|strong="G1707"\w* \w in|strong="G3588"\w* \w the|strong="G3588"\w* \w affairs|strong="G4230"\w* \w of|strong="G3588"\w* \w life|strong="G3762"\w*, \w that|strong="G2443"\w* \w he|strong="G3588"\w* \w may|strong="G2443"\w* please \w him|strong="G3588"\w* \w who|strong="G3588"\w* enrolled \w him|strong="G3588"\w* \w as|strong="G2443"\w* \w a|strong="G2443"\w* \w soldier|strong="G4754"\w*. +\v 5 \w Also|strong="G2532"\w*, \w if|strong="G1437"\w* \w anyone|strong="G5100"\w* competes \w in|strong="G2532"\w* athletics, \w he|strong="G2532"\w* isn’t \w crowned|strong="G4737"\w* \w unless|strong="G1437"\w* \w he|strong="G2532"\w* \w has|strong="G5100"\w* competed \w by|strong="G2532"\w* \w the|strong="G2532"\w* \w rules|strong="G3545"\w*. +\v 6 \w The|strong="G3588"\w* \w farmer|strong="G1092"\w* \w who|strong="G3588"\w* \w labors|strong="G2872"\w* \w must|strong="G1163"\w* \w be|strong="G1163"\w* \w the|strong="G3588"\w* \w first|strong="G4413"\w* \w to|strong="G1163"\w* get \w a|strong="G2590"\w* \w share|strong="G3335"\w* \w of|strong="G3588"\w* \w the|strong="G3588"\w* \w crops|strong="G2590"\w*. +\v 7 \w Consider|strong="G3539"\w* \w what|strong="G3739"\w* \w I|strong="G3739"\w* \w say|strong="G3004"\w*, \w and|strong="G2962"\w* \w may|strong="G3956"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w give|strong="G1325"\w* \w you|strong="G4771"\w* \w understanding|strong="G4907"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*. +\p +\v 8 \w Remember|strong="G3421"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w risen|strong="G1453"\w* \w from|strong="G1537"\w* \w the|strong="G1537"\w* \w dead|strong="G3498"\w*, \w of|strong="G1537"\w* \w the|strong="G1537"\w* offspring\f + \fr 2:8 \ft or, seed\f* \w of|strong="G1537"\w* \w David|strong="G1138"\w*, \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w my|strong="G1473"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w*, +\v 9 \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w I|strong="G3739"\w* \w suffer|strong="G2553"\w* \w hardship|strong="G2553"\w* \w to|strong="G1722"\w* \w the|strong="G1722"\w* \w point|strong="G3360"\w* \w of|strong="G3056"\w* \w chains|strong="G1199"\w* \w as|strong="G5613"\w* \w a|strong="G5613"\w* \w criminal|strong="G2557"\w*. \w But|strong="G2316"\w* \w God|strong="G2316"\w*’s \w word|strong="G3056"\w* isn’\w t|strong="G3588"\w* chained. +\v 10 \w Therefore|strong="G1223"\w* \w I|strong="G2532"\w* \w endure|strong="G5278"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w for|strong="G1223"\w* \w the|strong="G1722"\w* \w chosen|strong="G1588"\w* ones’ \w sake|strong="G1223"\w*, \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w also|strong="G2532"\w* \w may|strong="G2532"\w* \w obtain|strong="G5177"\w* \w the|strong="G1722"\w* \w salvation|strong="G4991"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w with|strong="G3326"\w* eternal \w glory|strong="G1391"\w*. +\v 11 \w This|strong="G3588"\w* \w saying|strong="G3056"\w* \w is|strong="G3588"\w* \w trustworthy|strong="G4103"\w*: +\q1 “\w For|strong="G1063"\w* \w if|strong="G1487"\w* \w we|strong="G1063"\w* \w died|strong="G4880"\w* \w with|strong="G2532"\w* \w him|strong="G3588"\w*, +\q2 \w we|strong="G1063"\w* \w will|strong="G2532"\w* \w also|strong="G2532"\w* \w live|strong="G4800"\w* \w with|strong="G2532"\w* \w him|strong="G3588"\w*. +\q1 +\v 12 \w If|strong="G1487"\w* \w we|strong="G2249"\w* \w endure|strong="G5278"\w*, +\q2 \w we|strong="G2249"\w* \w will|strong="G2532"\w* \w also|strong="G2532"\w* \w reign|strong="G4821"\w* \w with|strong="G2532"\w* \w him|strong="G2532"\w*. +\q1 \w If|strong="G1487"\w* \w we|strong="G2249"\w* deny \w him|strong="G2532"\w*, +\q2 \w he|strong="G2532"\w* \w also|strong="G2532"\w* \w will|strong="G2532"\w* deny \w us|strong="G2249"\w*. +\q1 +\v 13 \w If|strong="G1487"\w* \w we|strong="G1063"\w* \w are|strong="G3306"\w* faithless, +\q2 \w he|strong="G1565"\w* \w remains|strong="G3306"\w* \w faithful|strong="G4103"\w*; +\q2 \w for|strong="G1063"\w* \w he|strong="G1565"\w* \w can|strong="G1410"\w*’t deny \w himself|strong="G1438"\w*.” +\p +\v 14 \w Remind|strong="G5279"\w* \w them|strong="G3588"\w* \w of|strong="G2316"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w charging|strong="G1263"\w* \w them|strong="G3588"\w* \w in|strong="G1909"\w* \w the|strong="G1909"\w* \w sight|strong="G1799"\w* \w of|strong="G2316"\w* \w the|strong="G1909"\w* \w Lord|strong="G2962"\w* \w that|strong="G3588"\w* \w they|strong="G3588"\w* don’\w t|strong="G3588"\w* argue \w about|strong="G1909"\w* \w words|strong="G3054"\w* \w to|strong="G1909"\w* \w no|strong="G3762"\w* \w profit|strong="G5539"\w*, \w to|strong="G1909"\w* \w the|strong="G1909"\w* \w subverting|strong="G2692"\w* \w of|strong="G2316"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* hear. +\p +\v 15 Give \w diligence|strong="G4704"\w* \w to|strong="G4704"\w* \w present|strong="G3936"\w* \w yourself|strong="G4572"\w* \w approved|strong="G1384"\w* \w by|strong="G3936"\w* \w God|strong="G2316"\w*, \w a|strong="G3056"\w* \w workman|strong="G2040"\w* \w who|strong="G3588"\w* doesn’\w t|strong="G3588"\w* need \w to|strong="G4704"\w* \w be|strong="G2316"\w* ashamed, properly \w handling|strong="G3718"\w* \w the|strong="G3588"\w* \w Word|strong="G3056"\w* \w of|strong="G3056"\w* Truth. +\v 16 \w But|strong="G1161"\w* \w shun|strong="G4026"\w* \w empty|strong="G2757"\w* \w chatter|strong="G2757"\w*, \w for|strong="G1063"\w* \w it|strong="G1161"\w* \w will|strong="G4183"\w* \w go|strong="G4298"\w* \w further|strong="G4119"\w* \w in|strong="G1909"\w* ungodliness, +\v 17 \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w words|strong="G3056"\w* \w will|strong="G1510"\w* consume \w like|strong="G5613"\w* \w gangrene|strong="G1044"\w*, \w of|strong="G3056"\w* \w whom|strong="G3739"\w* \w is|strong="G1510"\w* \w Hymenaeus|strong="G5211"\w* \w and|strong="G2532"\w* \w Philetus|strong="G5372"\w*: +\v 18 \w men|strong="G5100"\w* \w who|strong="G3588"\w* \w have|strong="G2532"\w* erred \w concerning|strong="G4012"\w* \w the|strong="G2532"\w* truth, \w saying|strong="G3004"\w* \w that|strong="G3588"\w* \w the|strong="G2532"\w* resurrection \w is|strong="G3588"\w* \w already|strong="G2235"\w* \w past|strong="G1096"\w*, \w and|strong="G2532"\w* overthrowing \w the|strong="G2532"\w* \w faith|strong="G4102"\w* \w of|strong="G4012"\w* \w some|strong="G5100"\w*. +\v 19 \w However|strong="G3305"\w*, \w God|strong="G2316"\w*’\w s|strong="G2962"\w* \w firm|strong="G2476"\w* \w foundation|strong="G2310"\w* \w stands|strong="G2476"\w*, \w having|strong="G2192"\w* \w this|strong="G3778"\w* \w seal|strong="G4973"\w*: “\w The|strong="G2532"\w* \w Lord|strong="G2962"\w* \w knows|strong="G1097"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w his|strong="G3956"\w*,”\x + \xo 2:19 \xt Numbers 16:5\x* \w and|strong="G2532"\w*, “\w Let|strong="G1097"\w* \w every|strong="G3956"\w* \w one|strong="G3956"\w* \w who|strong="G3588"\w* \w names|strong="G3686"\w* \w the|strong="G2532"\w* \w name|strong="G3686"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*\f + \fr 2:19 \ft TR reads “Christ” instead of “the Lord”\f* depart \w from|strong="G2532"\w* unrighteousness.” +\p +\v 20 \w Now|strong="G1161"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* \w large|strong="G3173"\w* \w house|strong="G3614"\w* \w there|strong="G2532"\w* \w are|strong="G1510"\w* \w not|strong="G3756"\w* \w only|strong="G3440"\w* \w vessels|strong="G4632"\w* \w of|strong="G2532"\w* \w gold|strong="G5552"\w* \w and|strong="G2532"\w* \w of|strong="G2532"\w* silver, \w but|strong="G1161"\w* \w also|strong="G2532"\w* \w of|strong="G2532"\w* \w wood|strong="G3585"\w* \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w clay|strong="G3749"\w*. \w Some|strong="G3739"\w* \w are|strong="G1510"\w* \w for|strong="G1519"\w* \w honor|strong="G5092"\w* \w and|strong="G2532"\w* \w some|strong="G3739"\w* \w for|strong="G1519"\w* dishonor. +\v 21 \w If|strong="G1437"\w* \w anyone|strong="G5100"\w* \w therefore|strong="G3767"\w* purges \w himself|strong="G1438"\w* \w from|strong="G3588"\w* \w these|strong="G3778"\w*, \w he|strong="G3778"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w a|strong="G1519"\w* \w vessel|strong="G4632"\w* \w for|strong="G1519"\w* \w honor|strong="G5092"\w*, \w sanctified|strong="G3956"\w*, \w and|strong="G5092"\w* \w suitable|strong="G3588"\w* \w for|strong="G1519"\w* \w the|strong="G1519"\w* \w master|strong="G1203"\w*’s \w use|strong="G2173"\w*, \w prepared|strong="G2090"\w* \w for|strong="G1519"\w* \w every|strong="G3956"\w* \w good|strong="G3956"\w* \w work|strong="G2041"\w*. +\p +\v 22 \w Flee|strong="G5343"\w* \w from|strong="G1537"\w* \w youthful|strong="G3512"\w* \w lusts|strong="G1939"\w*; \w but|strong="G1161"\w* \w pursue|strong="G1377"\w* \w righteousness|strong="G1343"\w*, \w faith|strong="G4102"\w*, love, \w and|strong="G1161"\w* \w peace|strong="G1515"\w* \w with|strong="G3326"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w call|strong="G1941"\w* \w on|strong="G1537"\w* \w the|strong="G1537"\w* \w Lord|strong="G2962"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w a|strong="G1161"\w* \w pure|strong="G2513"\w* \w heart|strong="G2588"\w*. +\v 23 \w But|strong="G1161"\w* \w refuse|strong="G3868"\w* \w foolish|strong="G3474"\w* \w and|strong="G2532"\w* ignorant questionings, \w knowing|strong="G1492"\w* \w that|strong="G3754"\w* \w they|strong="G2532"\w* generate strife. +\v 24 \w The|strong="G3956"\w* \w Lord|strong="G2962"\w*’\w s|strong="G2962"\w* \w servant|strong="G1401"\w* \w must|strong="G1163"\w* \w not|strong="G3756"\w* quarrel, \w but|strong="G1161"\w* \w be|strong="G1510"\w* \w gentle|strong="G2261"\w* \w toward|strong="G4314"\w* \w all|strong="G3956"\w*, \w able|strong="G1317"\w* \w to|strong="G4314"\w* \w teach|strong="G1317"\w*, patient, +\v 25 \w in|strong="G1722"\w* \w gentleness|strong="G4240"\w* \w correcting|strong="G3811"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* oppose \w him|strong="G3588"\w*. \w Perhaps|strong="G3379"\w* \w God|strong="G2316"\w* \w may|strong="G2316"\w* \w give|strong="G1325"\w* \w them|strong="G3588"\w* \w repentance|strong="G3341"\w* \w leading|strong="G1519"\w* \w to|strong="G1519"\w* \w a|strong="G1519"\w* \w full|strong="G1722"\w* \w knowledge|strong="G1922"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* truth, +\v 26 \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w may|strong="G2532"\w* recover \w themselves|strong="G1519"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w devil|strong="G1228"\w*’s \w snare|strong="G3803"\w*, \w having|strong="G2532"\w* \w been|strong="G2532"\w* taken \w captive|strong="G2221"\w* \w by|strong="G5259"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w do|strong="G2532"\w* \w his|strong="G1519"\w* \w will|strong="G2307"\w*. +\c 3 +\p +\v 1 \w But|strong="G1161"\w* \w know|strong="G1097"\w* \w this|strong="G3778"\w*: \w that|strong="G3754"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w last|strong="G2078"\w* \w days|strong="G2250"\w*, grievous \w times|strong="G2540"\w* \w will|strong="G3778"\w* \w come|strong="G1764"\w*. +\v 2 \w For|strong="G1063"\w* \w men|strong="G3588"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w lovers|strong="G5366"\w* \w of|strong="G3588"\w* \w self|strong="G5367"\w*, \w lovers|strong="G5366"\w* \w of|strong="G3588"\w* \w money|strong="G5366"\w*, boastful, \w arrogant|strong="G5244"\w*, blasphemers, disobedient \w to|strong="G1510"\w* \w parents|strong="G1118"\w*, unthankful, unholy, +\v 3 without natural affection, unforgiving, \w slanderers|strong="G1228"\w*, without self-control, fierce, not lovers \w of|strong="G1228"\w* good, +\v 4 \w traitors|strong="G4273"\w*, headstrong, \w conceited|strong="G5187"\w*, \w lovers|strong="G5377"\w* \w of|strong="G2228"\w* \w pleasure|strong="G5369"\w* \w rather|strong="G3123"\w* \w than|strong="G2228"\w* \w lovers|strong="G5377"\w* \w of|strong="G2228"\w* \w God|strong="G5377"\w*, +\v 5 \w holding|strong="G2192"\w* \w a|strong="G2192"\w* \w form|strong="G3446"\w* \w of|strong="G2532"\w* \w godliness|strong="G2150"\w* \w but|strong="G1161"\w* \w having|strong="G2192"\w* denied its \w power|strong="G1411"\w*. Turn away \w from|strong="G2532"\w* \w these|strong="G3778"\w*, \w also|strong="G2532"\w*. +\v 6 \w For|strong="G1063"\w* \w some|strong="G3588"\w* \w of|strong="G1537"\w* \w these|strong="G3778"\w* \w are|strong="G1510"\w* \w people|strong="G1510"\w* \w who|strong="G3588"\w* \w creep|strong="G1744"\w* \w into|strong="G1519"\w* \w houses|strong="G3614"\w* \w and|strong="G2532"\w* \w take|strong="G2532"\w* captive gullible \w women|strong="G1133"\w* loaded \w down|strong="G1537"\w* \w with|strong="G1537"\w* sins, led away \w by|strong="G1537"\w* \w various|strong="G4164"\w* \w lusts|strong="G1939"\w*, +\v 7 \w always|strong="G3842"\w* \w learning|strong="G3129"\w* \w and|strong="G2532"\w* \w never|strong="G3368"\w* \w able|strong="G1410"\w* \w to|strong="G1519"\w* \w come|strong="G2064"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w knowledge|strong="G1922"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* truth. +\v 8 \w Even|strong="G2532"\w* \w as|strong="G1161"\w* \w Jannes|strong="G2389"\w* \w and|strong="G2532"\w* \w Jambres|strong="G2387"\w* opposed \w Moses|strong="G3475"\w*, \w so|strong="G3779"\w* \w these|strong="G3778"\w* \w also|strong="G2532"\w* oppose \w the|strong="G2532"\w* truth, \w men|strong="G3778"\w* corrupted \w in|strong="G2532"\w* \w mind|strong="G3563"\w*, \w who|strong="G3739"\w* \w concerning|strong="G4012"\w* \w the|strong="G2532"\w* \w faith|strong="G4102"\w* \w are|strong="G3588"\w* rejected. +\v 9 \w But|strong="G2532"\w* \w they|strong="G2532"\w* \w will|strong="G1510"\w* \w proceed|strong="G4298"\w* \w no|strong="G3756"\w* \w further|strong="G4119"\w*. \w For|strong="G1063"\w* \w their|strong="G2532"\w* folly \w will|strong="G1510"\w* \w be|strong="G1096"\w* evident \w to|strong="G2532"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w*, \w as|strong="G5613"\w* \w theirs|strong="G1565"\w* \w also|strong="G2532"\w* \w came|strong="G1096"\w* \w to|strong="G2532"\w* \w be|strong="G1096"\w*. +\p +\v 10 \w But|strong="G1161"\w* \w you|strong="G4771"\w* \w followed|strong="G3877"\w* \w my|strong="G1473"\w* \w teaching|strong="G1319"\w*, conduct, \w purpose|strong="G4286"\w*, \w faith|strong="G4102"\w*, \w patience|strong="G5281"\w*, love, \w steadfastness|strong="G5281"\w*, +\v 11 \w persecutions|strong="G1375"\w*, \w and|strong="G2532"\w* \w sufferings|strong="G3804"\w*—\w those|strong="G3588"\w* \w things|strong="G3956"\w* \w that|strong="G3588"\w* \w happened|strong="G1096"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w* \w at|strong="G1722"\w* Antioch, \w Iconium|strong="G2430"\w*, \w and|strong="G2532"\w* \w Lystra|strong="G3082"\w*. \w I|strong="G1473"\w* \w endured|strong="G5297"\w* \w those|strong="G3588"\w* \w persecutions|strong="G1375"\w*. \w The|strong="G1722"\w* \w Lord|strong="G2962"\w* \w delivered|strong="G4506"\w* \w me|strong="G1473"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w them|strong="G3588"\w* \w all|strong="G3956"\w*. +\v 12 \w Yes|strong="G1161"\w*, \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w who|strong="G3588"\w* \w desire|strong="G2309"\w* \w to|strong="G2532"\w* \w live|strong="G2198"\w* \w godly|strong="G2153"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w* \w will|strong="G2309"\w* \w suffer|strong="G2532"\w* \w persecution|strong="G1377"\w*. +\v 13 \w But|strong="G1161"\w* \w evil|strong="G4190"\w* \w men|strong="G3588"\w* \w and|strong="G2532"\w* \w impostors|strong="G1114"\w* \w will|strong="G2532"\w* grow \w worse|strong="G5501"\w* \w and|strong="G2532"\w* \w worse|strong="G5501"\w*, \w deceiving|strong="G4105"\w* \w and|strong="G2532"\w* \w being|strong="G2532"\w* \w deceived|strong="G4105"\w*. +\v 14 \w But|strong="G1161"\w* \w you|strong="G4771"\w* \w remain|strong="G3306"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w things|strong="G3739"\w* \w which|strong="G3739"\w* \w you|strong="G4771"\w* \w have|strong="G2532"\w* \w learned|strong="G3129"\w* \w and|strong="G2532"\w* \w have|strong="G2532"\w* \w been|strong="G2532"\w* assured \w of|strong="G2532"\w*, \w knowing|strong="G1492"\w* \w from|strong="G3844"\w* \w whom|strong="G3739"\w* \w you|strong="G4771"\w* \w have|strong="G2532"\w* \w learned|strong="G3129"\w* \w them|strong="G1722"\w*. +\v 15 \w From|strong="G2532"\w* \w infancy|strong="G1025"\w*, \w you|strong="G4771"\w* \w have|strong="G2532"\w* \w known|strong="G1492"\w* \w the|strong="G1722"\w* \w holy|strong="G2413"\w* \w Scriptures|strong="G1121"\w* \w which|strong="G3588"\w* \w are|strong="G3588"\w* \w able|strong="G1410"\w* \w to|strong="G1519"\w* \w make|strong="G1519"\w* \w you|strong="G4771"\w* \w wise|strong="G4679"\w* \w for|strong="G3754"\w* \w salvation|strong="G4991"\w* \w through|strong="G1223"\w* \w faith|strong="G4102"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*. +\v 16 \w Every|strong="G3956"\w* \w Scripture|strong="G1124"\w* \w is|strong="G3588"\w* God-breathed \w and|strong="G2532"\w*\f + \fr 3:16 \ft or, Every writing inspired by God is\f* \w profitable|strong="G5624"\w* \w for|strong="G4314"\w* \w teaching|strong="G1319"\w*, \w for|strong="G4314"\w* \w reproof|strong="G1650"\w*, \w for|strong="G4314"\w* \w correction|strong="G1882"\w*, \w and|strong="G2532"\w* \w for|strong="G4314"\w* \w instruction|strong="G1319"\w* \w in|strong="G1722"\w* \w righteousness|strong="G1343"\w*, +\v 17 \w that|strong="G2443"\w* each person \w who|strong="G3588"\w* \w belongs|strong="G1510"\w* \w to|strong="G4314"\w* \w God|strong="G2316"\w* \w may|strong="G2443"\w* \w be|strong="G1510"\w* \w complete|strong="G3956"\w*, thoroughly \w equipped|strong="G1822"\w* \w for|strong="G4314"\w* \w every|strong="G3956"\w* \w good|strong="G3956"\w* \w work|strong="G2041"\w*. +\c 4 +\p +\v 1 \w I|strong="G2532"\w* command \w you|strong="G2532"\w* \w therefore|strong="G2532"\w* \w before|strong="G1799"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G3588"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w who|strong="G3588"\w* \w will|strong="G2316"\w* \w judge|strong="G2919"\w* \w the|strong="G2532"\w* \w living|strong="G2198"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w* \w at|strong="G2316"\w* \w his|strong="G2532"\w* \w appearing|strong="G2015"\w* \w and|strong="G2532"\w* \w his|strong="G2532"\w* Kingdom: +\v 2 \w preach|strong="G2784"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w*; \w be|strong="G2532"\w* urgent \w in|strong="G1722"\w* \w season|strong="G2122"\w* \w and|strong="G2532"\w* \w out|strong="G2532"\w* \w of|strong="G3056"\w* \w season|strong="G2122"\w*; \w reprove|strong="G1651"\w*, \w rebuke|strong="G2008"\w*, \w and|strong="G2532"\w* \w exhort|strong="G3870"\w* \w with|strong="G1722"\w* \w all|strong="G3956"\w* \w patience|strong="G3115"\w* \w and|strong="G2532"\w* \w teaching|strong="G1322"\w*. +\v 3 \w For|strong="G1063"\w* \w the|strong="G2596"\w* \w time|strong="G2540"\w* \w will|strong="G1510"\w* \w come|strong="G1510"\w* \w when|strong="G3753"\w* \w they|strong="G3588"\w* \w will|strong="G1510"\w* \w not|strong="G3756"\w* listen \w to|strong="G2596"\w* \w the|strong="G2596"\w* \w sound|strong="G5198"\w* \w doctrine|strong="G1319"\w*, \w but|strong="G1063"\w* having \w itching|strong="G2833"\w* ears, \w will|strong="G1510"\w* \w heap|strong="G2002"\w* up \w for|strong="G1063"\w* \w themselves|strong="G1438"\w* \w teachers|strong="G1320"\w* \w after|strong="G2596"\w* \w their|strong="G1438"\w* \w own|strong="G2398"\w* \w lusts|strong="G1939"\w*, +\v 4 \w and|strong="G2532"\w* \w will|strong="G2532"\w* \w turn|strong="G1624"\w* away \w their|strong="G2532"\w* ears \w from|strong="G2532"\w* \w the|strong="G2532"\w* truth, \w and|strong="G2532"\w* \w turn|strong="G1624"\w* away \w to|strong="G2532"\w* \w fables|strong="G3454"\w*. +\v 5 \w But|strong="G1161"\w* \w you|strong="G4771"\w* \w be|strong="G3956"\w* \w sober|strong="G3525"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w suffer|strong="G2553"\w* \w hardship|strong="G2553"\w*, \w do|strong="G4160"\w* \w the|strong="G1722"\w* \w work|strong="G2041"\w* \w of|strong="G2041"\w* \w an|strong="G1722"\w* \w evangelist|strong="G2099"\w*, \w and|strong="G1161"\w* \w fulfill|strong="G4135"\w* \w your|strong="G4160"\w* \w ministry|strong="G1248"\w*. +\p +\v 6 \w For|strong="G1063"\w* \w I|strong="G1473"\w* \w am|strong="G1473"\w* \w already|strong="G2235"\w* \w being|strong="G2532"\w* \w offered|strong="G4689"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w time|strong="G2540"\w* \w of|strong="G2532"\w* \w my|strong="G1473"\w* departure \w has|strong="G2532"\w* \w come|strong="G2186"\w*. +\v 7 \w I|strong="G5083"\w* \w have|strong="G3588"\w* fought \w the|strong="G3588"\w* \w good|strong="G2570"\w* fight. \w I|strong="G5083"\w* \w have|strong="G3588"\w* \w finished|strong="G5055"\w* \w the|strong="G3588"\w* \w course|strong="G1408"\w*. \w I|strong="G5083"\w* \w have|strong="G3588"\w* \w kept|strong="G5083"\w* \w the|strong="G3588"\w* \w faith|strong="G4102"\w*. +\v 8 \w From|strong="G2532"\w* \w now|strong="G1161"\w* \w on|strong="G1722"\w*, \w the|strong="G1722"\w* \w crown|strong="G4735"\w* \w of|strong="G2250"\w* \w righteousness|strong="G1343"\w* \w is|strong="G3588"\w* stored \w up|strong="G2532"\w* \w for|strong="G1161"\w* \w me|strong="G1473"\w*, \w which|strong="G3739"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*, \w the|strong="G1722"\w* \w righteous|strong="G1342"\w* \w judge|strong="G2923"\w*, \w will|strong="G2532"\w* \w give|strong="G1473"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w* \w on|strong="G1722"\w* \w that|strong="G3739"\w* \w day|strong="G2250"\w*; \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w* \w only|strong="G3440"\w*, \w but|strong="G1161"\w* \w also|strong="G2532"\w* \w to|strong="G2532"\w* \w all|strong="G3956"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w have|strong="G2532"\w* loved \w his|strong="G3956"\w* \w appearing|strong="G2015"\w*. +\p +\v 9 Be \w diligent|strong="G4704"\w* \w to|strong="G4314"\w* \w come|strong="G2064"\w* \w to|strong="G4314"\w* \w me|strong="G1473"\w* \w soon|strong="G5030"\w*, +\v 10 \w for|strong="G1063"\w* \w Demas|strong="G1214"\w* \w left|strong="G1459"\w* \w me|strong="G1473"\w*, \w having|strong="G2532"\w* loved \w this|strong="G3588"\w* \w present|strong="G3568"\w* world, \w and|strong="G2532"\w* \w went|strong="G4198"\w* \w to|strong="G1519"\w* \w Thessalonica|strong="G2332"\w*; \w Crescens|strong="G2913"\w* \w to|strong="G1519"\w* \w Galatia|strong="G1053"\w*; \w and|strong="G2532"\w* \w Titus|strong="G5103"\w* \w to|strong="G1519"\w* \w Dalmatia|strong="G1149"\w*. +\v 11 \w Only|strong="G3441"\w* \w Luke|strong="G3065"\w* \w is|strong="G1510"\w* \w with|strong="G3326"\w* \w me|strong="G1473"\w*. Take \w Mark|strong="G3138"\w* \w and|strong="G3326"\w* \w bring|strong="G1519"\w* \w him|strong="G1519"\w* \w with|strong="G3326"\w* \w you|strong="G1510"\w*, \w for|strong="G1063"\w* \w he|strong="G1063"\w* \w is|strong="G1510"\w* \w useful|strong="G2173"\w* \w to|strong="G1519"\w* \w me|strong="G1473"\w* \w for|strong="G1063"\w* \w service|strong="G1248"\w*. +\v 12 \w But|strong="G1161"\w* \w I|strong="G1161"\w* sent \w Tychicus|strong="G5190"\w* \w to|strong="G1519"\w* \w Ephesus|strong="G2181"\w*. +\v 13 \w Bring|strong="G5342"\w* \w the|strong="G1722"\w* cloak \w that|strong="G3739"\w* \w I|strong="G3739"\w* left \w at|strong="G1722"\w* \w Troas|strong="G5174"\w* \w with|strong="G1722"\w* \w Carpus|strong="G2591"\w* \w when|strong="G2532"\w* \w you|strong="G3739"\w* \w come|strong="G2064"\w*—\w and|strong="G2532"\w* \w the|strong="G1722"\w* books, \w especially|strong="G3122"\w* \w the|strong="G1722"\w* \w parchments|strong="G3200"\w*. +\v 14 Alexander \w the|strong="G2596"\w* \w coppersmith|strong="G5471"\w* \w did|strong="G1731"\w* \w much|strong="G4183"\w* \w evil|strong="G2556"\w* \w to|strong="G2596"\w* \w me|strong="G1473"\w*. \w The|strong="G2596"\w* \w Lord|strong="G2962"\w* \w will|strong="G2962"\w* repay \w him|strong="G3588"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w his|strong="G2596"\w* \w deeds|strong="G2041"\w*. +\v 15 \w Beware|strong="G5442"\w* \w of|strong="G3056"\w* \w him|strong="G3588"\w*, \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w greatly|strong="G3029"\w* opposed \w our|strong="G2251"\w* \w words|strong="G3056"\w*. +\p +\v 16 \w At|strong="G1722"\w* \w my|strong="G1722"\w* \w first|strong="G4413"\w* defense, \w no|strong="G3762"\w* \w one|strong="G3762"\w* \w came|strong="G3854"\w* \w to|strong="G1722"\w* help \w me|strong="G1473"\w*, \w but|strong="G3361"\w* \w all|strong="G3956"\w* \w left|strong="G1459"\w* \w me|strong="G1473"\w*. \w May|strong="G3956"\w* \w it|strong="G3588"\w* \w not|strong="G3361"\w* \w be|strong="G3361"\w* held \w against|strong="G1722"\w* \w them|strong="G3588"\w*. +\v 17 \w But|strong="G1161"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w stood|strong="G3936"\w* \w by|strong="G1223"\w* \w me|strong="G1473"\w* \w and|strong="G2532"\w* \w strengthened|strong="G1743"\w* \w me|strong="G1473"\w*, \w that|strong="G2443"\w* \w through|strong="G1223"\w* \w me|strong="G1473"\w* \w the|strong="G2532"\w* \w message|strong="G2782"\w* \w might|strong="G2532"\w* \w be|strong="G2532"\w* \w fully|strong="G4135"\w* proclaimed, \w and|strong="G2532"\w* \w that|strong="G2443"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w Gentiles|strong="G1484"\w* \w might|strong="G2532"\w* hear. \w So|strong="G2443"\w* \w I|strong="G1473"\w* \w was|strong="G3588"\w* \w delivered|strong="G4506"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w mouth|strong="G4750"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w lion|strong="G3023"\w*. +\v 18 \w And|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w will|strong="G2532"\w* \w deliver|strong="G4506"\w* \w me|strong="G1473"\w* \w from|strong="G2532"\w* \w every|strong="G3956"\w* \w evil|strong="G4190"\w* \w work|strong="G2041"\w* \w and|strong="G2532"\w* \w will|strong="G2532"\w* \w preserve|strong="G4982"\w* \w me|strong="G1473"\w* \w for|strong="G1519"\w* \w his|strong="G3956"\w* \w heavenly|strong="G2032"\w* Kingdom. \w To|strong="G1519"\w* \w him|strong="G3588"\w* \w be|strong="G2532"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w forever|strong="G1519"\w* \w and|strong="G2532"\w* \w ever|strong="G1519"\w*. Amen. +\p +\v 19 Greet \w Prisca|strong="G4251"\w* \w and|strong="G2532"\w* Aquila, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w house|strong="G3624"\w* \w of|strong="G2532"\w* \w Onesiphorus|strong="G3683"\w*. +\v 20 \w Erastus|strong="G2037"\w* \w remained|strong="G3306"\w* \w at|strong="G1722"\w* \w Corinth|strong="G2882"\w*, \w but|strong="G1161"\w* \w I|strong="G1161"\w* left \w Trophimus|strong="G5161"\w* \w at|strong="G1722"\w* \w Miletus|strong="G3399"\w* sick. +\v 21 \w Be|strong="G2532"\w* \w diligent|strong="G4704"\w* \w to|strong="G2532"\w* \w come|strong="G2064"\w* \w before|strong="G4253"\w* \w winter|strong="G5494"\w*. \w Eubulus|strong="G2103"\w* salutes \w you|strong="G4771"\w*, \w as|strong="G2532"\w* \w do|strong="G2532"\w* \w Pudens|strong="G4227"\w*, \w Linus|strong="G3044"\w*, \w Claudia|strong="G2803"\w*, \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* brothers. +\p +\v 22 \w The|strong="G3588"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2962"\w* \w Christ|strong="G2962"\w* \w be|strong="G3588"\w* \w with|strong="G3326"\w* \w your|strong="G2962"\w* \w spirit|strong="G4151"\w*. \w Grace|strong="G5485"\w* \w be|strong="G3588"\w* \w with|strong="G3326"\w* \w you|strong="G5210"\w*. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/86-TITeng-web.usfm b/bibles/eng-web_usfm/86-TITeng-web.usfm new file mode 100644 index 0000000..9d4d471 --- /dev/null +++ b/bibles/eng-web_usfm/86-TITeng-web.usfm @@ -0,0 +1,67 @@ +\id TIT 56-TIT-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Titus +\toc1 Paul’s Letter to Titus +\toc2 Titus +\toc3 Tit +\mt1 Paul’s Letter to Titus +\c 1 +\p +\v 1 \w Paul|strong="G3972"\w*, \w a|strong="G2532"\w* \w servant|strong="G1401"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w an|strong="G2532"\w* apostle \w of|strong="G2316"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*,\f + \fr 1:1 \ft “Christ” means “Anointed One”.\f* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w faith|strong="G4102"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*’s \w chosen|strong="G1588"\w* ones \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w knowledge|strong="G1922"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* truth \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w godliness|strong="G2150"\w*, +\v 2 \w in|strong="G1909"\w* \w hope|strong="G1680"\w* \w of|strong="G2316"\w* eternal \w life|strong="G2222"\w*, \w which|strong="G3739"\w* \w God|strong="G2316"\w*, \w who|strong="G3739"\w* can’\w t|strong="G3588"\w* lie, \w promised|strong="G1861"\w* \w before|strong="G4253"\w* \w time|strong="G5550"\w* \w began|strong="G1909"\w*; +\v 3 \w but|strong="G1161"\w* \w in|strong="G1722"\w* \w his|strong="G1722"\w* \w own|strong="G2398"\w* \w time|strong="G2540"\w* \w revealed|strong="G5319"\w* \w his|strong="G1722"\w* \w word|strong="G3056"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w message|strong="G3056"\w* \w with|strong="G1722"\w* \w which|strong="G3739"\w* \w I|strong="G1473"\w* \w was|strong="G3588"\w* \w entrusted|strong="G4100"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1722"\w* \w commandment|strong="G2003"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w* \w our|strong="G2316"\w* \w Savior|strong="G4990"\w*, +\v 4 \w to|strong="G2532"\w* \w Titus|strong="G5103"\w*, \w my|strong="G1473"\w* \w true|strong="G1103"\w* \w child|strong="G5043"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w a|strong="G2532"\w* \w common|strong="G2839"\w* \w faith|strong="G4102"\w*: \w Grace|strong="G5485"\w*, mercy, \w and|strong="G2532"\w* \w peace|strong="G1515"\w* \w from|strong="G1515"\w* \w God|strong="G2316"\w* \w the|strong="G2532"\w* \w Father|strong="G3962"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G3588"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w our|strong="G2316"\w* \w Savior|strong="G4990"\w*. +\p +\v 5 \w I|strong="G1473"\w* \w left|strong="G5484"\w* \w you|strong="G4771"\w* \w in|strong="G1722"\w* \w Crete|strong="G2914"\w* \w for|strong="G1722"\w* \w this|strong="G3778"\w* \w reason|strong="G5484"\w*, \w that|strong="G2443"\w* \w you|strong="G4771"\w* \w would|strong="G2532"\w* \w set|strong="G2525"\w* \w in|strong="G1722"\w* \w order|strong="G2443"\w* \w the|strong="G1722"\w* \w things|strong="G3778"\w* \w that|strong="G2443"\w* \w were|strong="G3588"\w* \w lacking|strong="G3007"\w* \w and|strong="G2532"\w* \w appoint|strong="G2525"\w* \w elders|strong="G4245"\w* \w in|strong="G1722"\w* \w every|strong="G2596"\w* \w city|strong="G4172"\w*, \w as|strong="G5613"\w* \w I|strong="G1473"\w* \w directed|strong="G1299"\w* \w you|strong="G4771"\w*— +\v 6 \w if|strong="G1487"\w* \w anyone|strong="G5100"\w* \w is|strong="G1510"\w* blameless, \w the|strong="G1722"\w* husband \w of|strong="G1520"\w* \w one|strong="G1520"\w* \w wife|strong="G1135"\w*, \w having|strong="G2192"\w* \w children|strong="G5043"\w* \w who|strong="G5101"\w* \w believe|strong="G4103"\w*, \w who|strong="G5101"\w* \w are|strong="G1510"\w* \w not|strong="G3361"\w* \w accused|strong="G2724"\w* \w of|strong="G1520"\w* \w loose|strong="G5101"\w* \w or|strong="G2228"\w* unruly behavior. +\v 7 \w For|strong="G1063"\w* \w the|strong="G3588"\w* \w overseer|strong="G1985"\w* \w must|strong="G1163"\w* \w be|strong="G1510"\w* blameless, \w as|strong="G5613"\w* \w God|strong="G2316"\w*’s \w steward|strong="G3623"\w*, \w not|strong="G3361"\w* self-pleasing, \w not|strong="G3361"\w* easily angered, \w not|strong="G3361"\w* \w given|strong="G3361"\w* \w to|strong="G1163"\w* \w wine|strong="G3943"\w*, \w not|strong="G3361"\w* \w violent|strong="G4131"\w*, \w not|strong="G3361"\w* greedy \w for|strong="G1063"\w* dishonest gain; +\v 8 \w but|strong="G1342"\w* given \w to|strong="G3741"\w* \w hospitality|strong="G5382"\w*, a lover \w of|strong="G3741"\w* \w good|strong="G5358"\w*, \w sober|strong="G4998"\w* minded, fair, \w holy|strong="G3741"\w*, \w self-controlled|strong="G4998"\w*, +\v 9 holding \w to|strong="G2443"\w* \w the|strong="G1722"\w* \w faithful|strong="G4103"\w* \w word|strong="G3056"\w* \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w according|strong="G2596"\w* \w to|strong="G2443"\w* \w the|strong="G1722"\w* \w teaching|strong="G1322"\w*, \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w may|strong="G2532"\w* \w be|strong="G1510"\w* \w able|strong="G1415"\w* \w to|strong="G2443"\w* \w exhort|strong="G3870"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w sound|strong="G5198"\w* \w doctrine|strong="G1322"\w*, \w and|strong="G2532"\w* \w to|strong="G2443"\w* \w convict|strong="G1651"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* contradict \w him|strong="G3588"\w*. +\p +\v 10 \w For|strong="G1063"\w* \w there|strong="G2532"\w* \w are|strong="G1510"\w* \w also|strong="G2532"\w* \w many|strong="G4183"\w* unruly \w men|strong="G3588"\w*, \w vain|strong="G2532"\w* \w talkers|strong="G3151"\w* \w and|strong="G2532"\w* \w deceivers|strong="G5423"\w*, \w especially|strong="G3122"\w* \w those|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w circumcision|strong="G4061"\w*, +\v 11 \w whose|strong="G3739"\w* \w mouths|strong="G1993"\w* \w must|strong="G1163"\w* \w be|strong="G1163"\w* \w stopped|strong="G1993"\w*: \w men|strong="G3739"\w* \w who|strong="G3739"\w* overthrow \w whole|strong="G3650"\w* \w houses|strong="G3624"\w*, \w teaching|strong="G1321"\w* \w things|strong="G3739"\w* \w which|strong="G3739"\w* \w they|strong="G3739"\w* \w ought|strong="G1163"\w* \w not|strong="G3361"\w*, \w for|strong="G5484"\w* dishonest \w gain|strong="G2771"\w*’s \w sake|strong="G5484"\w*. +\v 12 \w One|strong="G5100"\w* \w of|strong="G1537"\w* \w them|strong="G3004"\w*, \w a|strong="G1537"\w* \w prophet|strong="G4396"\w* \w of|strong="G1537"\w* \w their|strong="G2398"\w* \w own|strong="G2398"\w*, \w said|strong="G3004"\w*, “\w Cretans|strong="G2912"\w* \w are|strong="G4396"\w* always \w liars|strong="G5583"\w*, \w evil|strong="G2556"\w* \w beasts|strong="G2342"\w*, \w and|strong="G4396"\w* idle \w gluttons|strong="G1064"\w*.” +\v 13 \w This|strong="G3778"\w* \w testimony|strong="G3141"\w* \w is|strong="G1510"\w* \w true|strong="G3588"\w*. \w For|strong="G1223"\w* \w this|strong="G3778"\w* \w cause|strong="G1223"\w*, \w reprove|strong="G1651"\w* \w them|strong="G3588"\w* sharply, \w that|strong="G2443"\w* \w they|strong="G3588"\w* \w may|strong="G2443"\w* \w be|strong="G1510"\w* \w sound|strong="G5198"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w faith|strong="G4102"\w*, +\v 14 \w not|strong="G3361"\w* \w paying|strong="G4337"\w* \w attention|strong="G4337"\w* \w to|strong="G2532"\w* \w Jewish|strong="G2451"\w* \w fables|strong="G3454"\w* \w and|strong="G2532"\w* \w commandments|strong="G1785"\w* \w of|strong="G2532"\w* \w men|strong="G3588"\w* \w who|strong="G3588"\w* turn away \w from|strong="G2532"\w* \w the|strong="G2532"\w* truth. +\v 15 \w To|strong="G2532"\w* \w the|strong="G2532"\w* \w pure|strong="G2513"\w*, \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w are|strong="G3588"\w* \w pure|strong="G2513"\w*, \w but|strong="G1161"\w* \w to|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w defiled|strong="G3392"\w* \w and|strong="G2532"\w* unbelieving, \w nothing|strong="G3762"\w* \w is|strong="G3588"\w* \w pure|strong="G2513"\w*; \w but|strong="G1161"\w* \w both|strong="G2532"\w* \w their|strong="G2532"\w* \w mind|strong="G3563"\w* \w and|strong="G2532"\w* \w their|strong="G2532"\w* \w conscience|strong="G4893"\w* \w are|strong="G3588"\w* \w defiled|strong="G3392"\w*. +\v 16 \w They|strong="G2532"\w* \w profess|strong="G3670"\w* \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w know|strong="G1492"\w* \w God|strong="G2316"\w*, \w but|strong="G1161"\w* \w by|strong="G4314"\w* \w their|strong="G2532"\w* \w deeds|strong="G2041"\w* \w they|strong="G2532"\w* \w deny|strong="G3588"\w* \w him|strong="G3588"\w*, \w being|strong="G1510"\w* abominable, disobedient, \w and|strong="G2532"\w* unfit \w for|strong="G4314"\w* \w any|strong="G3956"\w* \w good|strong="G3956"\w* \w work|strong="G2041"\w*. +\c 2 +\p +\v 1 \w But|strong="G1161"\w* \w say|strong="G2980"\w* \w the|strong="G1161"\w* \w things|strong="G3588"\w* \w which|strong="G3739"\w* fit \w sound|strong="G5198"\w* \w doctrine|strong="G1319"\w*, +\v 2 \w that|strong="G3588"\w* \w older|strong="G4246"\w* \w men|strong="G3588"\w* \w should|strong="G3588"\w* \w be|strong="G1510"\w* \w temperate|strong="G3524"\w*, \w sensible|strong="G4998"\w*, \w sober|strong="G4998"\w* minded, \w sound|strong="G5198"\w* \w in|strong="G4102"\w* \w faith|strong="G4102"\w*, \w in|strong="G4102"\w* love, \w and|strong="G4102"\w* \w in|strong="G4102"\w* \w perseverance|strong="G5281"\w*, +\v 3 \w and|strong="G3366"\w* \w that|strong="G3361"\w* \w older|strong="G4247"\w* \w women|strong="G4247"\w* \w likewise|strong="G5615"\w* \w be|strong="G3361"\w* \w reverent|strong="G2412"\w* \w in|strong="G1722"\w* \w behavior|strong="G2688"\w*, \w not|strong="G3361"\w* \w slanderers|strong="G1228"\w* \w nor|strong="G3366"\w* \w enslaved|strong="G1402"\w* \w to|strong="G1722"\w* \w much|strong="G4183"\w* \w wine|strong="G3631"\w*, teachers \w of|strong="G1722"\w* \w that|strong="G3361"\w* \w which|strong="G1722"\w* \w is|strong="G3631"\w* \w good|strong="G2567"\w*, +\v 4 \w that|strong="G2443"\w* \w they|strong="G3588"\w* \w may|strong="G2443"\w* train \w the|strong="G3588"\w* \w young|strong="G3501"\w* wives \w to|strong="G2443"\w* \w love|strong="G5388"\w* \w their|strong="G3588"\w* \w husbands|strong="G5362"\w*, \w to|strong="G2443"\w* \w love|strong="G5388"\w* \w their|strong="G3588"\w* \w children|strong="G5388"\w*, +\v 5 \w to|strong="G2443"\w* \w be|strong="G3361"\w* \w sober|strong="G4998"\w* minded, chaste, \w workers|strong="G3626"\w* \w at|strong="G2316"\w* \w home|strong="G3626"\w*, kind, \w being|strong="G2443"\w* \w in|strong="G2316"\w* \w subjection|strong="G5293"\w* \w to|strong="G2443"\w* \w their|strong="G2398"\w* \w own|strong="G2398"\w* husbands, \w that|strong="G2443"\w* \w God|strong="G2316"\w*’s \w word|strong="G3056"\w* \w may|strong="G2443"\w* \w not|strong="G3361"\w* \w be|strong="G3361"\w* blasphemed. +\p +\v 6 \w Likewise|strong="G5615"\w*, \w exhort|strong="G3870"\w* \w the|strong="G3588"\w* \w younger|strong="G3501"\w* \w men|strong="G3501"\w* \w to|strong="G3870"\w* \w be|strong="G3588"\w* \w sober|strong="G4993"\w* \w minded|strong="G4993"\w*. +\v 7 \w In|strong="G1722"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w show|strong="G3930"\w* \w yourself|strong="G4572"\w* \w an|strong="G1722"\w* \w example|strong="G5179"\w* \w of|strong="G4012"\w* \w good|strong="G2570"\w* \w works|strong="G2041"\w*. \w In|strong="G1722"\w* \w your|strong="G3956"\w* \w teaching|strong="G1319"\w*, \w show|strong="G3930"\w* integrity, seriousness, incorruptibility, +\v 8 \w and|strong="G3056"\w* soundness \w of|strong="G1537"\w* \w speech|strong="G3056"\w* \w that|strong="G2443"\w* \w can|strong="G3004"\w*’\w t|strong="G3588"\w* \w be|strong="G2443"\w* condemned, \w that|strong="G2443"\w* \w he|strong="G3588"\w* \w who|strong="G3588"\w* opposes \w you|strong="G3004"\w* \w may|strong="G2443"\w* \w be|strong="G2443"\w* \w ashamed|strong="G1788"\w*, \w having|strong="G2192"\w* \w no|strong="G3367"\w* \w evil|strong="G5337"\w* \w thing|strong="G3056"\w* \w to|strong="G2443"\w* \w say|strong="G3004"\w* \w about|strong="G4012"\w* \w us|strong="G3004"\w*. +\p +\v 9 Exhort \w servants|strong="G1401"\w* \w to|strong="G1722"\w* \w be|strong="G1510"\w* \w in|strong="G1722"\w* \w subjection|strong="G5293"\w* \w to|strong="G1722"\w* \w their|strong="G1722"\w* \w own|strong="G2398"\w* \w masters|strong="G1203"\w* \w and|strong="G1401"\w* \w to|strong="G1722"\w* \w be|strong="G1510"\w* \w well-pleasing|strong="G2101"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w not|strong="G3361"\w* contradicting, +\v 10 \w not|strong="G3361"\w* stealing, \w but|strong="G3361"\w* \w showing|strong="G1731"\w* \w all|strong="G3956"\w* \w good|strong="G3956"\w* \w fidelity|strong="G4102"\w*, \w that|strong="G2443"\w* \w they|strong="G3588"\w* \w may|strong="G2443"\w* \w adorn|strong="G2885"\w* \w the|strong="G1722"\w* \w doctrine|strong="G1319"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w our|strong="G2316"\w* \w Savior|strong="G4990"\w*, \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*. +\v 11 \w For|strong="G1063"\w* \w the|strong="G3956"\w* \w grace|strong="G5485"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w appeared|strong="G2014"\w*, \w bringing|strong="G4992"\w* \w salvation|strong="G4992"\w* \w to|strong="G2316"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w*, +\v 12 \w instructing|strong="G3811"\w* \w us|strong="G2249"\w* \w to|strong="G2443"\w* \w the|strong="G1722"\w* intent \w that|strong="G2443"\w*, denying ungodliness \w and|strong="G2532"\w* \w worldly|strong="G2886"\w* \w lusts|strong="G1939"\w*, \w we|strong="G2249"\w* \w would|strong="G2532"\w* \w live|strong="G2198"\w* \w soberly|strong="G4996"\w*, \w righteously|strong="G1346"\w*, \w and|strong="G2532"\w* \w godly|strong="G2153"\w* \w in|strong="G1722"\w* \w this|strong="G3588"\w* \w present|strong="G3568"\w* age; +\v 13 \w looking|strong="G4327"\w* \w for|strong="G2532"\w* \w the|strong="G2532"\w* \w blessed|strong="G3107"\w* \w hope|strong="G1680"\w* \w and|strong="G2532"\w* \w appearing|strong="G2015"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w of|strong="G2316"\w* \w our|strong="G2316"\w* \w great|strong="G3173"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w Savior|strong="G4990"\w*, \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, +\v 14 \w who|strong="G3739"\w* \w gave|strong="G1325"\w* \w himself|strong="G1438"\w* \w for|strong="G5228"\w* \w us|strong="G1325"\w*, \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w redeem|strong="G3084"\w* \w us|strong="G1325"\w* \w from|strong="G2532"\w* \w all|strong="G3956"\w* iniquity \w and|strong="G2532"\w* \w purify|strong="G2511"\w* \w for|strong="G5228"\w* \w himself|strong="G1438"\w* \w a|strong="G2532"\w* \w people|strong="G2992"\w* \w for|strong="G5228"\w* \w his|strong="G1438"\w* \w own|strong="G1438"\w* \w possession|strong="G4041"\w*, \w zealous|strong="G2207"\w* \w for|strong="G5228"\w* \w good|strong="G2570"\w* \w works|strong="G2041"\w*. +\p +\v 15 \w Say|strong="G2980"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w* \w and|strong="G2532"\w* \w exhort|strong="G3870"\w* \w and|strong="G2532"\w* \w reprove|strong="G1651"\w* \w with|strong="G3326"\w* \w all|strong="G3956"\w* \w authority|strong="G2003"\w*. \w Let|strong="G4065"\w* \w no|strong="G3367"\w* \w one|strong="G3367"\w* \w despise|strong="G4065"\w* \w you|strong="G4771"\w*. +\c 3 +\p +\v 1 \w Remind|strong="G5279"\w* \w them|strong="G1438"\w* \w to|strong="G4314"\w* \w be|strong="G1510"\w* \w in|strong="G3956"\w* \w subjection|strong="G5293"\w* \w to|strong="G4314"\w* rulers \w and|strong="G1849"\w* \w to|strong="G4314"\w* \w authorities|strong="G1849"\w*, \w to|strong="G4314"\w* \w be|strong="G1510"\w* \w obedient|strong="G5293"\w*, \w to|strong="G4314"\w* \w be|strong="G1510"\w* \w ready|strong="G2092"\w* \w for|strong="G4314"\w* \w every|strong="G3956"\w* \w good|strong="G3956"\w* \w work|strong="G2041"\w*, +\v 2 \w to|strong="G4314"\w* speak \w evil|strong="G3367"\w* \w of|strong="G3956"\w* \w no|strong="G3367"\w* \w one|strong="G3367"\w*, \w not|strong="G3367"\w* \w to|strong="G4314"\w* \w be|strong="G1510"\w* contentious, \w to|strong="G4314"\w* \w be|strong="G1510"\w* \w gentle|strong="G1933"\w*, \w showing|strong="G1731"\w* \w all|strong="G3956"\w* \w humility|strong="G4240"\w* \w toward|strong="G4314"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w*. +\v 3 \w For|strong="G1063"\w* \w we|strong="G2249"\w* \w were|strong="G1510"\w* \w also|strong="G2532"\w* \w once|strong="G4218"\w* \w foolish|strong="G2532"\w*, disobedient, \w deceived|strong="G4105"\w*, \w serving|strong="G1398"\w* \w various|strong="G4164"\w* \w lusts|strong="G1939"\w* \w and|strong="G2532"\w* \w pleasures|strong="G2237"\w*, \w living|strong="G1236"\w* \w in|strong="G1722"\w* \w malice|strong="G2549"\w* \w and|strong="G2532"\w* \w envy|strong="G5355"\w*, \w hateful|strong="G4767"\w*, \w and|strong="G2532"\w* \w hating|strong="G3404"\w* \w one|strong="G1722"\w* \w another|strong="G1722"\w*. +\v 4 \w But|strong="G1161"\w* \w when|strong="G3753"\w* \w the|strong="G2532"\w* \w kindness|strong="G5544"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w our|strong="G2316"\w* \w Savior|strong="G4990"\w* \w and|strong="G2532"\w* \w his|strong="G2532"\w* \w love|strong="G5363"\w* \w toward|strong="G4990"\w* \w mankind|strong="G5363"\w* \w appeared|strong="G2014"\w*, +\v 5 \w not|strong="G3756"\w* \w by|strong="G1223"\w* \w works|strong="G2041"\w* \w of|strong="G1537"\w* \w righteousness|strong="G1343"\w* \w which|strong="G3739"\w* \w we|strong="G2249"\w* \w did|strong="G4160"\w* \w ourselves|strong="G2249"\w*, \w but|strong="G2532"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w his|strong="G1223"\w* \w mercy|strong="G1656"\w*, \w he|strong="G2532"\w* \w saved|strong="G4982"\w* \w us|strong="G4160"\w* \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w washing|strong="G3067"\w* \w of|strong="G1537"\w* \w regeneration|strong="G3824"\w* \w and|strong="G2532"\w* renewing \w by|strong="G1223"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*, +\v 6 \w whom|strong="G3739"\w* \w he|strong="G3739"\w* \w poured|strong="G1632"\w* \w out|strong="G1632"\w* \w on|strong="G1909"\w* \w us|strong="G2249"\w* \w richly|strong="G4146"\w* \w through|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w our|strong="G2424"\w* \w Savior|strong="G4990"\w*; +\v 7 \w that|strong="G2443"\w* \w being|strong="G1096"\w* \w justified|strong="G1344"\w* \w by|strong="G2596"\w* \w his|strong="G1565"\w* \w grace|strong="G5485"\w*, \w we|strong="G2443"\w* \w might|strong="G1680"\w* \w be|strong="G1096"\w* \w made|strong="G1096"\w* \w heirs|strong="G2818"\w* \w according|strong="G2596"\w* \w to|strong="G2443"\w* \w the|strong="G2596"\w* \w hope|strong="G1680"\w* \w of|strong="G5485"\w* eternal \w life|strong="G2222"\w*. +\v 8 \w This|strong="G3778"\w* \w saying|strong="G3056"\w* \w is|strong="G1510"\w* \w faithful|strong="G4103"\w*, \w and|strong="G2532"\w* \w concerning|strong="G4012"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w I|strong="G2532"\w* \w desire|strong="G1014"\w* \w that|strong="G2443"\w* \w you|strong="G4771"\w* insist \w confidently|strong="G1226"\w*, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w have|strong="G2532"\w* \w believed|strong="G4100"\w* \w God|strong="G2316"\w* \w may|strong="G2532"\w* \w be|strong="G1510"\w* \w careful|strong="G5431"\w* \w to|strong="G2443"\w* \w maintain|strong="G4291"\w* \w good|strong="G2570"\w* \w works|strong="G2041"\w*. \w These|strong="G3778"\w* \w things|strong="G3778"\w* \w are|strong="G1510"\w* \w good|strong="G2570"\w* \w and|strong="G2532"\w* \w profitable|strong="G5624"\w* \w to|strong="G2443"\w* \w men|strong="G3778"\w*; +\v 9 \w but|strong="G1161"\w* \w shun|strong="G4026"\w* \w foolish|strong="G3474"\w* questionings, \w genealogies|strong="G1076"\w*, \w strife|strong="G2054"\w*, \w and|strong="G2532"\w* \w disputes|strong="G3163"\w* \w about|strong="G4026"\w* \w the|strong="G2532"\w* \w law|strong="G3544"\w*; \w for|strong="G1063"\w* \w they|strong="G2532"\w* \w are|strong="G1510"\w* unprofitable \w and|strong="G2532"\w* \w vain|strong="G3152"\w*. +\v 10 \w Avoid|strong="G3868"\w* \w a|strong="G2532"\w* factious \w man|strong="G1520"\w* \w after|strong="G3326"\w* \w a|strong="G2532"\w* \w first|strong="G1520"\w* \w and|strong="G2532"\w* \w second|strong="G1208"\w* \w warning|strong="G3559"\w*, +\v 11 \w knowing|strong="G1492"\w* \w that|strong="G3754"\w* \w such|strong="G5108"\w* \w a|strong="G2532"\w* \w one|strong="G5108"\w* \w is|strong="G1510"\w* \w perverted|strong="G1612"\w* \w and|strong="G2532"\w* sinful, \w being|strong="G1510"\w* self-condemned. +\p +\v 12 \w When|strong="G3752"\w* \w I|strong="G1473"\w* \w send|strong="G3992"\w* Artemas \w to|strong="G1519"\w* \w you|strong="G4771"\w*, \w or|strong="G2228"\w* \w Tychicus|strong="G5190"\w*, \w be|strong="G1519"\w* \w diligent|strong="G4704"\w* \w to|strong="G1519"\w* \w come|strong="G2064"\w* \w to|strong="G1519"\w* \w me|strong="G1473"\w* \w to|strong="G1519"\w* \w Nicopolis|strong="G3533"\w*, \w for|strong="G1063"\w* \w I|strong="G1473"\w* \w have|strong="G1473"\w* \w determined|strong="G2919"\w* \w to|strong="G1519"\w* \w winter|strong="G3914"\w* \w there|strong="G1563"\w*. +\v 13 \w Send|strong="G4311"\w* \w Zenas|strong="G2211"\w* \w the|strong="G2532"\w* \w lawyer|strong="G3544"\w* \w and|strong="G2532"\w* Apollos \w on|strong="G4311"\w* \w their|strong="G2532"\w* \w journey|strong="G4311"\w* speedily, \w that|strong="G2443"\w* \w nothing|strong="G3367"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* \w lacking|strong="G3007"\w* \w for|strong="G2532"\w* \w them|strong="G3588"\w*. +\v 14 \w Let|strong="G1161"\w* \w our|strong="G2251"\w* \w people|strong="G1510"\w* \w also|strong="G2532"\w* \w learn|strong="G3129"\w* \w to|strong="G1519"\w* \w maintain|strong="G4291"\w* \w good|strong="G2570"\w* \w works|strong="G2041"\w* \w to|strong="G1519"\w* \w meet|strong="G2570"\w* \w necessary|strong="G5532"\w* \w needs|strong="G5532"\w*, \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w may|strong="G2532"\w* \w not|strong="G3361"\w* \w be|strong="G1510"\w* unfruitful. +\p +\v 15 \w All|strong="G3956"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w with|strong="G3326"\w* \w me|strong="G1473"\w* greet \w you|strong="G5210"\w*. Greet \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w love|strong="G5368"\w* \w us|strong="G2249"\w* \w in|strong="G1722"\w* \w faith|strong="G4102"\w*. +\p \w Grace|strong="G5485"\w* \w be|strong="G3956"\w* \w with|strong="G3326"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w*. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/87-PHMeng-web.usfm b/bibles/eng-web_usfm/87-PHMeng-web.usfm new file mode 100644 index 0000000..8f3589b --- /dev/null +++ b/bibles/eng-web_usfm/87-PHMeng-web.usfm @@ -0,0 +1,41 @@ +\id PHM 57-PHM-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Philemon +\toc1 Paul’s Letter to Philemon +\toc2 Philemon +\toc3 Phm +\mt1 Paul’s Letter to Philemon +\c 1 +\p +\v 1 \w Paul|strong="G3972"\w*, \w a|strong="G2532"\w* \w prisoner|strong="G1198"\w* \w of|strong="G2532"\w* \w Christ|strong="G5547"\w*\f + \fr 1:1 \ft “Christ” means “Anointed One”.\f* \w Jesus|strong="G2424"\w*, \w and|strong="G2532"\w* \w Timothy|strong="G5095"\w* \w our|strong="G2424"\w* brother, \w to|strong="G2532"\w* \w Philemon|strong="G5371"\w*, \w our|strong="G2424"\w* beloved \w fellow|strong="G4904"\w* \w worker|strong="G4904"\w*, +\v 2 \w to|strong="G2532"\w* \w the|strong="G2532"\w* beloved Apphia, \w to|strong="G2532"\w* Archippus \w our|strong="G2532"\w* \w fellow|strong="G4961"\w* \w soldier|strong="G4961"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w assembly|strong="G1577"\w* \w in|strong="G2596"\w* \w your|strong="G2532"\w* \w house|strong="G3624"\w*: +\v 3 \w Grace|strong="G5485"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w peace|strong="G1515"\w* \w from|strong="G1515"\w* \w God|strong="G2316"\w* \w our|strong="G2316"\w* \w Father|strong="G3962"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\p +\v 4 \w I|strong="G1473"\w* \w thank|strong="G2168"\w* \w my|strong="G1473"\w* \w God|strong="G2316"\w* \w always|strong="G3842"\w*, \w making|strong="G4160"\w* \w mention|strong="G3417"\w* \w of|strong="G2316"\w* \w you|strong="G4771"\w* \w in|strong="G1909"\w* \w my|strong="G1473"\w* \w prayers|strong="G4335"\w*, +\v 5 hearing \w of|strong="G2532"\w* \w your|strong="G2192"\w* love \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w faith|strong="G4102"\w* \w which|strong="G3739"\w* \w you|strong="G4771"\w* \w have|strong="G2192"\w* \w toward|strong="G1519"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w and|strong="G2532"\w* \w toward|strong="G1519"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* saints, +\v 6 \w that|strong="G3588"\w* \w the|strong="G1722"\w* \w fellowship|strong="G2842"\w* \w of|strong="G1722"\w* \w your|strong="G3956"\w* \w faith|strong="G4102"\w* \w may|strong="G5547"\w* \w become|strong="G1096"\w* \w effective|strong="G1756"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w knowledge|strong="G1922"\w* \w of|strong="G1722"\w* \w every|strong="G3956"\w* \w good|strong="G3956"\w* \w thing|strong="G3956"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w us|strong="G1519"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G1096"\w*. +\v 7 \w For|strong="G1063"\w* \w we|strong="G3754"\w* \w have|strong="G2192"\w* \w much|strong="G4183"\w* \w joy|strong="G5479"\w* \w and|strong="G2532"\w* \w comfort|strong="G3874"\w* \w in|strong="G1909"\w* \w your|strong="G1223"\w* love, \w because|strong="G3754"\w* \w the|strong="G2532"\w* \w hearts|strong="G4698"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* saints \w have|strong="G2192"\w* \w been|strong="G2192"\w* refreshed \w through|strong="G1223"\w* \w you|strong="G4771"\w*, brother. +\p +\v 8 \w Therefore|strong="G1352"\w* \w though|strong="G1722"\w* \w I|strong="G1352"\w* \w have|strong="G2192"\w* \w all|strong="G1722"\w* \w boldness|strong="G3954"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w to|strong="G1722"\w* \w command|strong="G2004"\w* \w you|strong="G4771"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* appropriate, +\v 9 \w yet|strong="G2532"\w* \w for|strong="G1223"\w* love’s \w sake|strong="G1223"\w* \w I|strong="G2532"\w* \w rather|strong="G3123"\w* \w appeal|strong="G3870"\w* \w to|strong="G2532"\w* \w you|strong="G1510"\w*, \w being|strong="G1510"\w* \w such|strong="G5108"\w* \w a|strong="G5613"\w* \w one|strong="G5108"\w* \w as|strong="G5613"\w* \w Paul|strong="G3972"\w*, \w the|strong="G2532"\w* \w aged|strong="G4246"\w*, \w but|strong="G1161"\w* \w also|strong="G2532"\w* \w a|strong="G5613"\w* \w prisoner|strong="G1198"\w* \w of|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\v 10 \w I|strong="G1473"\w* \w appeal|strong="G3870"\w* \w to|strong="G1722"\w* \w you|strong="G4771"\w* \w for|strong="G4012"\w* \w my|strong="G1699"\w* \w child|strong="G5043"\w* \w Onesimus|strong="G3682"\w*, \w whom|strong="G3739"\w* \w I|strong="G1473"\w* \w have|strong="G1473"\w* become \w the|strong="G1722"\w* \w father|strong="G1080"\w* \w of|strong="G4012"\w* \w in|strong="G1722"\w* \w my|strong="G1699"\w* \w chains|strong="G1199"\w*,\f + \fr 1:10 \ft Onesimus means “useful”.\f* +\v 11 \w who|strong="G3739"\w* \w once|strong="G4218"\w* \w was|strong="G3588"\w* useless \w to|strong="G2532"\w* \w you|strong="G4771"\w*, \w but|strong="G1161"\w* \w now|strong="G1161"\w* \w is|strong="G3588"\w* \w useful|strong="G2173"\w* \w to|strong="G2532"\w* \w you|strong="G4771"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w*. +\v 12 \w I|strong="G3778"\w* \w am|strong="G1510"\w* sending \w him|strong="G3588"\w* back. Therefore receive \w him|strong="G3588"\w*, \w that|strong="G3588"\w* \w is|strong="G1510"\w*, \w my|strong="G1699"\w* \w own|strong="G1699"\w* \w heart|strong="G4698"\w*, +\v 13 \w whom|strong="G3739"\w* \w I|strong="G1473"\w* desired \w to|strong="G4314"\w* \w keep|strong="G2722"\w* \w with|strong="G1722"\w* \w me|strong="G1473"\w*, \w that|strong="G2443"\w* \w on|strong="G1722"\w* \w your|strong="G1722"\w* \w behalf|strong="G5228"\w* \w he|strong="G3739"\w* \w might|strong="G2098"\w* \w serve|strong="G1247"\w* \w me|strong="G1473"\w* \w in|strong="G1722"\w* \w my|strong="G1722"\w* \w chains|strong="G1199"\w* \w for|strong="G5228"\w* \w the|strong="G1722"\w* \w Good|strong="G3588"\w* \w News|strong="G2098"\w*. +\v 14 \w But|strong="G1161"\w* \w I|strong="G1161"\w* \w was|strong="G1510"\w* \w willing|strong="G2309"\w* \w to|strong="G2443"\w* \w do|strong="G4160"\w* \w nothing|strong="G3762"\w* \w without|strong="G5565"\w* \w your|strong="G4674"\w* \w consent|strong="G1106"\w*, \w that|strong="G2443"\w* \w your|strong="G4674"\w* goodness \w would|strong="G2309"\w* \w not|strong="G3361"\w* \w be|strong="G1510"\w* \w as|strong="G5613"\w* \w of|strong="G2596"\w* necessity, \w but|strong="G1161"\w* \w of|strong="G2596"\w* \w free|strong="G1595"\w* \w will|strong="G2309"\w*. +\v 15 \w For|strong="G1063"\w* \w perhaps|strong="G5029"\w* \w he|strong="G3778"\w* \w was|strong="G5610"\w* \w therefore|strong="G1223"\w* \w separated|strong="G5563"\w* \w from|strong="G1223"\w* \w you|strong="G3778"\w* \w for|strong="G1063"\w* \w a|strong="G4314"\w* \w while|strong="G5610"\w* \w that|strong="G2443"\w* \w you|strong="G3778"\w* would \w have|strong="G3778"\w* \w him|strong="G4314"\w* \w forever|strong="G1223"\w*, +\v 16 \w no|strong="G3756"\w* \w longer|strong="G2089"\w* \w as|strong="G5613"\w* \w a|strong="G5613"\w* \w slave|strong="G1401"\w*, \w but|strong="G1161"\w* \w more|strong="G3123"\w* \w than|strong="G5228"\w* \w a|strong="G5613"\w* \w slave|strong="G1401"\w*, \w a|strong="G5613"\w* beloved brother—\w especially|strong="G3122"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w*, \w but|strong="G1161"\w* \w how|strong="G5613"\w* \w much|strong="G4214"\w* \w rather|strong="G3123"\w* \w to|strong="G2532"\w* \w you|strong="G4771"\w*, \w both|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w* \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\p +\v 17 \w If|strong="G1487"\w* \w then|strong="G3767"\w* \w you|strong="G1487"\w* \w count|strong="G2192"\w* \w me|strong="G1473"\w* \w a|strong="G2192"\w* \w partner|strong="G2844"\w*, \w receive|strong="G4355"\w* \w him|strong="G4355"\w* \w as|strong="G5613"\w* \w you|strong="G1487"\w* would \w receive|strong="G4355"\w* \w me|strong="G1473"\w*. +\v 18 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w he|strong="G1161"\w* \w has|strong="G3778"\w* wronged \w you|strong="G4771"\w* \w at|strong="G1161"\w* \w all|strong="G1161"\w* \w or|strong="G2228"\w* \w owes|strong="G3784"\w* \w you|strong="G4771"\w* \w anything|strong="G5100"\w*, \w put|strong="G1677"\w* \w that|strong="G1487"\w* \w to|strong="G5100"\w* \w my|strong="G1473"\w* \w account|strong="G1677"\w*. +\v 19 \w I|strong="G1473"\w*, \w Paul|strong="G3972"\w*, \w write|strong="G1125"\w* \w this|strong="G3588"\w* \w with|strong="G2532"\w* \w my|strong="G1699"\w* \w own|strong="G1699"\w* \w hand|strong="G5495"\w*: \w I|strong="G1473"\w* \w will|strong="G2532"\w* repay \w it|strong="G2532"\w* (\w not|strong="G3361"\w* \w to|strong="G2443"\w* \w mention|strong="G3004"\w* \w to|strong="G2443"\w* \w you|strong="G4771"\w* \w that|strong="G3754"\w* \w you|strong="G4771"\w* \w owe|strong="G4359"\w* \w to|strong="G2443"\w* \w me|strong="G1473"\w* \w even|strong="G2532"\w* \w your|strong="G2532"\w* \w own|strong="G1699"\w* \w self|strong="G4572"\w* \w besides|strong="G2532"\w*). +\v 20 \w Yes|strong="G3483"\w*, brother, \w let|strong="G3685"\w* \w me|strong="G1473"\w* \w have|strong="G1473"\w* \w joy|strong="G3685"\w* \w from|strong="G3588"\w* \w you|strong="G4771"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. Refresh \w my|strong="G1722"\w* \w heart|strong="G4698"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\p +\v 21 \w Having|strong="G2532"\w* \w confidence|strong="G3982"\w* \w in|strong="G2532"\w* \w your|strong="G2532"\w* \w obedience|strong="G5218"\w*, \w I|strong="G3739"\w* \w write|strong="G1125"\w* \w to|strong="G2532"\w* \w you|strong="G4771"\w*, \w knowing|strong="G1492"\w* \w that|strong="G3754"\w* \w you|strong="G4771"\w* \w will|strong="G2532"\w* \w do|strong="G4160"\w* \w even|strong="G2532"\w* \w beyond|strong="G5228"\w* \w what|strong="G3739"\w* \w I|strong="G3739"\w* \w say|strong="G3004"\w*. +\p +\v 22 \w Also|strong="G2532"\w*, \w prepare|strong="G2090"\w* \w a|strong="G2532"\w* guest room \w for|strong="G1063"\w* \w me|strong="G1473"\w*, \w for|strong="G1063"\w* \w I|strong="G1473"\w* \w hope|strong="G1679"\w* \w that|strong="G3754"\w* \w through|strong="G1223"\w* \w your|strong="G1223"\w* \w prayers|strong="G4335"\w* \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* restored \w to|strong="G2532"\w* \w you|strong="G5210"\w*. +\p +\v 23 \w Epaphras|strong="G1889"\w*, \w my|strong="G1722"\w* \w fellow|strong="G4869"\w* \w prisoner|strong="G4869"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G2424"\w*, greets \w you|strong="G4771"\w*, +\v 24 \w as|strong="G3588"\w* \w do|strong="G3588"\w* \w Mark|strong="G3138"\w*, Aristarchus, \w Demas|strong="G1214"\w*, \w and|strong="G3588"\w* \w Luke|strong="G3065"\w*, \w my|strong="G1473"\w* \w fellow|strong="G4904"\w* \w workers|strong="G4904"\w*. +\p +\v 25 \w The|strong="G3588"\w* \w grace|strong="G5485"\w* \w of|strong="G4151"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w be|strong="G3588"\w* \w with|strong="G3326"\w* \w your|strong="G2962"\w* \w spirit|strong="G4151"\w*. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/88-HEBeng-web.usfm b/bibles/eng-web_usfm/88-HEBeng-web.usfm new file mode 100644 index 0000000..e4dedbc --- /dev/null +++ b/bibles/eng-web_usfm/88-HEBeng-web.usfm @@ -0,0 +1,497 @@ +\id HEB 58-HEB-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Hebrews +\toc1 The Letter to the Hebrews +\toc2 Hebrews +\toc3 Heb +\mt1 The Letter to the Hebrews +\c 1 +\p +\v 1 \w God|strong="G2316"\w*, \w having|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w past|strong="G3819"\w* \w spoken|strong="G2980"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w fathers|strong="G3962"\w* \w through|strong="G1722"\w* \w the|strong="G1722"\w* \w prophets|strong="G4396"\w* \w at|strong="G1722"\w* \w many|strong="G2980"\w* \w times|strong="G4181"\w* \w and|strong="G2532"\w* \w in|strong="G1722"\w* various \w ways|strong="G4187"\w*, +\v 2 \w has|strong="G3739"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w end|strong="G2078"\w* \w of|strong="G5207"\w* \w these|strong="G3956"\w* \w days|strong="G2250"\w* \w spoken|strong="G2980"\w* \w to|strong="G2532"\w* \w us|strong="G4160"\w* \w by|strong="G1223"\w* \w his|strong="G3956"\w* \w Son|strong="G5207"\w*, \w whom|strong="G3739"\w* \w he|strong="G2532"\w* \w appointed|strong="G5087"\w* \w heir|strong="G2818"\w* \w of|strong="G5207"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w through|strong="G1223"\w* \w whom|strong="G3739"\w* \w also|strong="G2532"\w* \w he|strong="G2532"\w* \w made|strong="G4160"\w* \w the|strong="G1722"\w* worlds. +\v 3 \w His|strong="G1438"\w* Son \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w radiance|strong="G1391"\w* \w of|strong="G1223"\w* \w his|strong="G1438"\w* \w glory|strong="G1391"\w*, \w the|strong="G1722"\w* \w very|strong="G2532"\w* \w image|strong="G5481"\w* \w of|strong="G1223"\w* \w his|strong="G1438"\w* \w substance|strong="G5287"\w*, \w and|strong="G2532"\w* \w upholding|strong="G5342"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w by|strong="G1223"\w* \w the|strong="G1722"\w* \w word|strong="G4487"\w* \w of|strong="G1223"\w* \w his|strong="G1438"\w* \w power|strong="G1411"\w*, \w who|strong="G3739"\w*, \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w by|strong="G1223"\w* \w himself|strong="G1438"\w* purified \w us|strong="G4160"\w* \w of|strong="G1223"\w* \w our|strong="G2532"\w* sins, \w sat|strong="G2523"\w* \w down|strong="G2523"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* \w Majesty|strong="G3172"\w* \w on|strong="G1722"\w* \w high|strong="G5308"\w*, +\v 4 having \w become|strong="G1096"\w* \w as|strong="G3745"\w* \w much|strong="G5118"\w* \w better|strong="G2909"\w* \w than|strong="G3844"\w* \w the|strong="G3588"\w* angels \w as|strong="G3745"\w* \w the|strong="G3588"\w* \w more|strong="G1313"\w* \w excellent|strong="G1313"\w* \w name|strong="G3686"\w* \w he|strong="G3588"\w* \w has|strong="G1096"\w* \w inherited|strong="G2816"\w* \w is|strong="G3588"\w* \w better|strong="G2909"\w* \w than|strong="G3844"\w* theirs. +\v 5 \w For|strong="G1063"\w* \w to|strong="G1519"\w* \w which|strong="G3588"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* angels \w did|strong="G2532"\w* \w he|strong="G2532"\w* \w say|strong="G3004"\w* \w at|strong="G1519"\w* \w any|strong="G5101"\w* \w time|strong="G4218"\w*, +\q1 “\w You|strong="G4771"\w* \w are|strong="G1510"\w* \w my|strong="G1473"\w* \w Son|strong="G5207"\w*. +\q2 \w Today|strong="G4594"\w* \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w become|strong="G1510"\w* \w your|strong="G2532"\w* \w father|strong="G3962"\w*?”\x + \xo 1:5 \xt Psalms 2:7\x* +\m \w and|strong="G2532"\w* \w again|strong="G3825"\w*, +\q1 “\w I|strong="G1473"\w* \w will|strong="G5101"\w* \w be|strong="G1510"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w a|strong="G2532"\w* \w Father|strong="G3962"\w*, +\q2 \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w will|strong="G5101"\w* \w be|strong="G1510"\w* \w to|strong="G1519"\w* \w me|strong="G1473"\w* \w a|strong="G2532"\w* \w Son|strong="G5207"\w*?”\x + \xo 1:5 \xt 2 Samuel 7:14; 1 Chronicles 17:13\x* +\p +\v 6 \w When|strong="G3752"\w* \w he|strong="G2532"\w* \w again|strong="G3825"\w* \w brings|strong="G1521"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w firstborn|strong="G4416"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w world|strong="G3625"\w* \w he|strong="G2532"\w* \w says|strong="G3004"\w*, “\w Let|strong="G1161"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* angels \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w worship|strong="G4352"\w* \w him|strong="G3588"\w*.”\x + \xo 1:6 \xt Deuteronomy 32:43 LXX\x* +\v 7 \w Of|strong="G4151"\w* \w the|strong="G2532"\w* angels \w he|strong="G2532"\w* \w says|strong="G3004"\w*, +\q1 “\w He|strong="G2532"\w* \w makes|strong="G4160"\w* \w his|strong="G4160"\w* angels \w winds|strong="G4151"\w*, +\q2 \w and|strong="G2532"\w* \w his|strong="G4160"\w* \w servants|strong="G3011"\w* \w a|strong="G2532"\w* \w flame|strong="G5395"\w* \w of|strong="G4151"\w* \w fire|strong="G4442"\w*.”\x + \xo 1:7 \xt Psalms 104:4\x* +\p +\v 8 \w But|strong="G1161"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w he|strong="G2532"\w* says, +\q1 “\w Your|strong="G2532"\w* \w throne|strong="G2362"\w*, O \w God|strong="G2316"\w*, \w is|strong="G3588"\w* \w forever|strong="G1519"\w* \w and|strong="G2532"\w* \w ever|strong="G1519"\w*. +\q2 \w The|strong="G2532"\w* \w scepter|strong="G4464"\w* \w of|strong="G5207"\w* uprightness \w is|strong="G3588"\w* \w the|strong="G2532"\w* \w scepter|strong="G4464"\w* \w of|strong="G5207"\w* \w your|strong="G2532"\w* Kingdom. +\q1 +\v 9 \w You|strong="G4771"\w* \w have|strong="G2532"\w* loved \w righteousness|strong="G1343"\w* \w and|strong="G2532"\w* \w hated|strong="G3404"\w* iniquity; +\q2 \w therefore|strong="G1223"\w* \w God|strong="G2316"\w*, \w your|strong="G1223"\w* \w God|strong="G2316"\w*, \w has|strong="G2316"\w* \w anointed|strong="G5548"\w* \w you|strong="G4771"\w* \w with|strong="G3844"\w* \w the|strong="G2532"\w* \w oil|strong="G1637"\w* \w of|strong="G1223"\w* gladness \w above|strong="G3844"\w* \w your|strong="G1223"\w* \w fellows|strong="G3353"\w*.”\x + \xo 1:9 \xt Psalms 45:6-7\x* +\p +\v 10 \w And|strong="G2532"\w*, +\q1 “\w You|strong="G4771"\w*, \w Lord|strong="G2962"\w*, \w in|strong="G2596"\w* \w the|strong="G2532"\w* beginning, \w laid|strong="G2532"\w* \w the|strong="G2532"\w* \w foundation|strong="G2311"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*. +\q2 \w The|strong="G2532"\w* \w heavens|strong="G3772"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* \w works|strong="G2041"\w* \w of|strong="G2532"\w* \w your|strong="G2962"\w* \w hands|strong="G5495"\w*. +\q1 +\v 11 \w They|strong="G2532"\w* \w will|strong="G2532"\w* perish, \w but|strong="G1161"\w* \w you|strong="G4771"\w* \w continue|strong="G1265"\w*. +\q2 \w They|strong="G2532"\w* \w all|strong="G3956"\w* \w will|strong="G2532"\w* grow \w old|strong="G3822"\w* \w like|strong="G5613"\w* \w a|strong="G5613"\w* \w garment|strong="G2440"\w* does. +\q1 +\v 12 \w You|strong="G4771"\w* \w will|strong="G1510"\w* \w roll|strong="G1667"\w* \w them|strong="G3588"\w* \w up|strong="G1667"\w* \w like|strong="G5613"\w* \w a|strong="G5613"\w* \w mantle|strong="G4018"\w*, +\q2 \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* changed; +\q2 \w but|strong="G1161"\w* \w you|strong="G4771"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w*. +\q2 \w Your|strong="G2532"\w* \w years|strong="G2094"\w* won’\w t|strong="G3588"\w* \w fail|strong="G1587"\w*.”\x + \xo 1:12 \xt Psalms 102:25-27\x* +\p +\v 13 \w But|strong="G1161"\w* \w which|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G1537"\w* angels \w has|strong="G5101"\w* \w he|strong="G1161"\w* \w told|strong="G3004"\w* \w at|strong="G4314"\w* \w any|strong="G4314"\w* \w time|strong="G4218"\w*, +\q1 “\w Sit|strong="G2521"\w* \w at|strong="G4314"\w* \w my|strong="G5087"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w*, +\q2 \w until|strong="G2193"\w* \w I|strong="G1473"\w* \w make|strong="G5087"\w* \w your|strong="G5087"\w* \w enemies|strong="G2190"\w* \w the|strong="G1537"\w* \w footstool|strong="G5286"\w* \w of|strong="G1537"\w* \w your|strong="G5087"\w* \w feet|strong="G4228"\w*?”\x + \xo 1:13 \xt Psalms 110:1\x* +\p +\v 14 Aren’\w t|strong="G3588"\w* \w they|strong="G3588"\w* \w all|strong="G3956"\w* \w serving|strong="G1248"\w* \w spirits|strong="G4151"\w*, \w sent|strong="G4151"\w* \w out|strong="G1519"\w* \w to|strong="G1519"\w* \w do|strong="G1510"\w* \w service|strong="G1248"\w* \w for|strong="G1519"\w* \w the|strong="G1519"\w* \w sake|strong="G1223"\w* \w of|strong="G4151"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w will|strong="G3195"\w* \w inherit|strong="G2816"\w* \w salvation|strong="G4991"\w*? +\c 2 +\p +\v 1 \w Therefore|strong="G1223"\w* \w we|strong="G2249"\w* \w ought|strong="G1163"\w* \w to|strong="G1163"\w* \w pay|strong="G4337"\w* greater \w attention|strong="G4337"\w* \w to|strong="G1163"\w* \w the|strong="G1223"\w* \w things|strong="G3778"\w* \w that|strong="G3588"\w* \w were|strong="G3588"\w* heard, \w lest|strong="G3379"\w* \w perhaps|strong="G3379"\w* \w we|strong="G2249"\w* \w drift|strong="G3901"\w* \w away|strong="G3901"\w*. +\v 2 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w spoken|strong="G2980"\w* \w through|strong="G1223"\w* angels \w proved|strong="G1096"\w* steadfast, \w and|strong="G2532"\w* \w every|strong="G3956"\w* \w transgression|strong="G3847"\w* \w and|strong="G2532"\w* \w disobedience|strong="G3876"\w* \w received|strong="G2983"\w* \w a|strong="G1096"\w* \w just|strong="G2532"\w* \w penalty|strong="G3405"\w*, +\v 3 \w how|strong="G4459"\w* \w will|strong="G2962"\w* \w we|strong="G2249"\w* \w escape|strong="G1628"\w* \w if|strong="G3748"\w* \w we|strong="G2249"\w* neglect \w so|strong="G1519"\w* \w great|strong="G5082"\w* \w a|strong="G1519"\w* \w salvation|strong="G4991"\w*—\w which|strong="G3588"\w* \w at|strong="G1519"\w* \w the|strong="G1519"\w* \w first|strong="G3588"\w* having \w been|strong="G2962"\w* \w spoken|strong="G2980"\w* \w through|strong="G1223"\w* \w the|strong="G1519"\w* \w Lord|strong="G2962"\w*, \w was|strong="G3588"\w* confirmed \w to|strong="G1519"\w* \w us|strong="G1519"\w* \w by|strong="G1223"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* heard, +\v 4 \w God|strong="G2316"\w* \w also|strong="G2532"\w* testifying \w with|strong="G2532"\w* \w them|strong="G3588"\w*, \w both|strong="G2532"\w* \w by|strong="G2596"\w* \w signs|strong="G4592"\w* \w and|strong="G2532"\w* \w wonders|strong="G5059"\w*, \w by|strong="G2596"\w* \w various|strong="G4164"\w* \w works|strong="G1411"\w* \w of|strong="G4151"\w* \w power|strong="G1411"\w*, \w and|strong="G2532"\w* \w by|strong="G2596"\w* \w gifts|strong="G3311"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*, \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w his|strong="G2532"\w* own \w will|strong="G2316"\w*? +\p +\v 5 \w For|strong="G1063"\w* \w he|strong="G3739"\w* didn’\w t|strong="G3588"\w* \w subject|strong="G5293"\w* \w the|strong="G3588"\w* \w world|strong="G3625"\w* \w to|strong="G3195"\w* \w come|strong="G3195"\w*, \w of|strong="G4012"\w* \w which|strong="G3739"\w* \w we|strong="G3739"\w* \w speak|strong="G2980"\w*, \w to|strong="G3195"\w* angels. +\v 6 \w But|strong="G1161"\w* \w one|strong="G5100"\w* \w has|strong="G5101"\w* \w somewhere|strong="G4225"\w* \w testified|strong="G1263"\w*, \w saying|strong="G3004"\w*, +\q1 “\w What|strong="G5101"\w* \w is|strong="G1510"\w* \w man|strong="G5100"\w*, \w that|strong="G3754"\w* \w you|strong="G3754"\w* \w think|strong="G5100"\w* \w of|strong="G5207"\w* \w him|strong="G1980"\w*? +\q2 \w Or|strong="G2228"\w* \w the|strong="G1161"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w man|strong="G5100"\w*, \w that|strong="G3754"\w* \w you|strong="G3754"\w* care \w for|strong="G3754"\w* \w him|strong="G1980"\w*? +\q1 +\v 7 \w You|strong="G2532"\w* \w made|strong="G1642"\w* \w him|strong="G2532"\w* \w a|strong="G2532"\w* \w little|strong="G1024"\w* \w lower|strong="G1642"\w* \w than|strong="G3844"\w* \w the|strong="G2532"\w* angels. +\q2 \w You|strong="G2532"\w* \w crowned|strong="G4737"\w* \w him|strong="G2532"\w* \w with|strong="G3844"\w* \w glory|strong="G1391"\w* \w and|strong="G2532"\w* \w honor|strong="G5092"\w*.\f + \fr 2:7 \ft TR adds “and set him over the works of your hands”\f* +\q2 +\v 8 \w You|strong="G1722"\w* \w have|strong="G3956"\w* \w put|strong="G5293"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w in|strong="G1722"\w* \w subjection|strong="G5293"\w* \w under|strong="G5270"\w* \w his|strong="G3956"\w* \w feet|strong="G4228"\w*.”\x + \xo 2:8 \xt Psalms 8:4-6 \x* +\p \w For|strong="G1063"\w* \w in|strong="G1722"\w* \w that|strong="G3588"\w* \w he|strong="G1161"\w* \w subjected|strong="G5293"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w to|strong="G1722"\w* \w him|strong="G3588"\w*, \w he|strong="G1161"\w* left \w nothing|strong="G3762"\w* \w that|strong="G3588"\w* \w is|strong="G3588"\w* \w not|strong="G3762"\w* \w subject|strong="G5293"\w* \w to|strong="G1722"\w* \w him|strong="G3588"\w*. \w But|strong="G1161"\w* \w now|strong="G1161"\w* \w we|strong="G1063"\w* don’\w t|strong="G3588"\w* \w yet|strong="G1161"\w* \w see|strong="G3708"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w subjected|strong="G5293"\w* \w to|strong="G1722"\w* \w him|strong="G3588"\w*. +\v 9 \w But|strong="G1161"\w* \w we|strong="G2532"\w* \w see|strong="G5092"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w has|strong="G2316"\w* \w been|strong="G2532"\w* \w made|strong="G2316"\w* \w a|strong="G2532"\w* \w little|strong="G1024"\w* \w lower|strong="G1642"\w* \w than|strong="G3844"\w* \w the|strong="G2532"\w* angels, \w Jesus|strong="G2424"\w*, \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w suffering|strong="G3804"\w* \w of|strong="G1223"\w* \w death|strong="G2288"\w* \w crowned|strong="G4737"\w* \w with|strong="G3844"\w* \w glory|strong="G1391"\w* \w and|strong="G2532"\w* \w honor|strong="G5092"\w*, \w that|strong="G3588"\w* \w by|strong="G1223"\w* \w the|strong="G2532"\w* \w grace|strong="G5485"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w* \w he|strong="G2532"\w* \w should|strong="G5100"\w* \w taste|strong="G1089"\w* \w of|strong="G1223"\w* \w death|strong="G2288"\w* \w for|strong="G5228"\w* \w everyone|strong="G3956"\w*. +\p +\v 10 \w For|strong="G1063"\w* \w it|strong="G2532"\w* \w became|strong="G4241"\w* \w him|strong="G3588"\w*, \w for|strong="G1063"\w* \w whom|strong="G3739"\w* \w are|strong="G3588"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w and|strong="G2532"\w* \w through|strong="G1223"\w* \w whom|strong="G3739"\w* \w are|strong="G3588"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w in|strong="G1519"\w* bringing \w many|strong="G4183"\w* \w children|strong="G5207"\w* \w to|strong="G1519"\w* \w glory|strong="G1391"\w*, \w to|strong="G1519"\w* \w make|strong="G5048"\w* \w the|strong="G2532"\w* author \w of|strong="G5207"\w* \w their|strong="G2532"\w* \w salvation|strong="G4991"\w* \w perfect|strong="G5048"\w* \w through|strong="G1223"\w* \w sufferings|strong="G3804"\w*. +\v 11 \w For|strong="G1063"\w* \w both|strong="G2532"\w* \w he|strong="G2532"\w* \w who|strong="G3739"\w* sanctifies \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w are|strong="G3588"\w* \w sanctified|strong="G3956"\w* \w are|strong="G3588"\w* \w all|strong="G3956"\w* \w from|strong="G1537"\w* \w one|strong="G1520"\w*, \w for|strong="G1063"\w* \w which|strong="G3739"\w* \w cause|strong="G1223"\w* \w he|strong="G2532"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w ashamed|strong="G1870"\w* \w to|strong="G2532"\w* \w call|strong="G2564"\w* \w them|strong="G3588"\w* brothers,\f + \fr 2:11 \ft The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”\f* +\v 12 \w saying|strong="G3004"\w*, +\q1 “\w I|strong="G1473"\w* \w will|strong="G1473"\w* declare \w your|strong="G1722"\w* \w name|strong="G3686"\w* \w to|strong="G3004"\w* \w my|strong="G1722"\w* brothers. +\q2 \w Among|strong="G1722"\w* \w the|strong="G1722"\w* \w congregation|strong="G1577"\w* \w I|strong="G1473"\w* \w will|strong="G1473"\w* \w sing|strong="G5214"\w* \w your|strong="G1722"\w* \w praise|strong="G5214"\w*.”\x + \xo 2:12 \xt Psalms 22:22\x* +\p +\v 13 \w Again|strong="G3825"\w*, “\w I|strong="G1473"\w* \w will|strong="G2316"\w* \w put|strong="G1325"\w* \w my|strong="G3708"\w* \w trust|strong="G3982"\w* \w in|strong="G1909"\w* \w him|strong="G3588"\w*.” \w Again|strong="G3825"\w*, “\w Behold|strong="G2400"\w*, \w here|strong="G2400"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w children|strong="G3813"\w* \w whom|strong="G3739"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w given|strong="G1325"\w* \w me|strong="G1325"\w*.”\x + \xo 2:13 \xt Isaiah 8:18\x* +\v 14 \w Since|strong="G1893"\w* \w then|strong="G3767"\w* \w the|strong="G2532"\w* \w children|strong="G3813"\w* \w have|strong="G2192"\w* \w shared|strong="G2841"\w* \w in|strong="G2532"\w* \w flesh|strong="G4561"\w* \w and|strong="G2532"\w* blood, \w he|strong="G2532"\w* \w also|strong="G2532"\w* himself \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w same|strong="G3778"\w* \w way|strong="G1223"\w* \w partook|strong="G3348"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w same|strong="G3778"\w*, \w that|strong="G2443"\w* \w through|strong="G1223"\w* \w death|strong="G2288"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w bring|strong="G2532"\w* \w to|strong="G2443"\w* nothing \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w had|strong="G2192"\w* \w the|strong="G2532"\w* \w power|strong="G2904"\w* \w of|strong="G1223"\w* \w death|strong="G2288"\w*, \w that|strong="G2443"\w* \w is|strong="G1510"\w*, \w the|strong="G2532"\w* \w devil|strong="G1228"\w*, +\v 15 \w and|strong="G2532"\w* \w might|strong="G2532"\w* deliver \w all|strong="G3956"\w* \w of|strong="G1223"\w* \w them|strong="G3588"\w* \w who|strong="G3588"\w* \w through|strong="G1223"\w* \w fear|strong="G5401"\w* \w of|strong="G1223"\w* \w death|strong="G2288"\w* \w were|strong="G1510"\w* \w all|strong="G3956"\w* \w their|strong="G2532"\w* \w lifetime|strong="G2198"\w* \w subject|strong="G1777"\w* \w to|strong="G2532"\w* \w bondage|strong="G1397"\w*. +\v 16 \w For|strong="G1063"\w* most \w certainly|strong="G1063"\w*, \w he|strong="G1063"\w* doesn’t \w give|strong="G1949"\w* \w help|strong="G1949"\w* \w to|strong="G3756"\w* angels, \w but|strong="G1063"\w* \w he|strong="G1063"\w* \w gives|strong="G1949"\w* \w help|strong="G1949"\w* \w to|strong="G3756"\w* \w the|strong="G1063"\w* offspring\f + \fr 2:16 \ft or, seed\f* \w of|strong="G4690"\w* Abraham. +\v 17 \w Therefore|strong="G3606"\w* \w he|strong="G2532"\w* \w was|strong="G1096"\w* \w obligated|strong="G3784"\w* \w in|strong="G1519"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w to|strong="G1519"\w* \w be|strong="G1096"\w* \w made|strong="G1096"\w* \w like|strong="G2596"\w* \w his|strong="G3956"\w* brothers, \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w become|strong="G1096"\w* \w a|strong="G1096"\w* \w merciful|strong="G1655"\w* \w and|strong="G2532"\w* \w faithful|strong="G4103"\w* \w high|strong="G3956"\w* priest \w in|strong="G1519"\w* \w things|strong="G3956"\w* \w pertaining|strong="G4314"\w* \w to|strong="G1519"\w* \w God|strong="G2316"\w*, \w to|strong="G1519"\w* \w make|strong="G1519"\w* atonement \w for|strong="G1519"\w* \w the|strong="G2532"\w* sins \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w*. +\v 18 \w For|strong="G1063"\w* \w in|strong="G1722"\w* \w that|strong="G3739"\w* \w he|strong="G3739"\w* himself \w has|strong="G3739"\w* \w suffered|strong="G3958"\w* \w being|strong="G1722"\w* \w tempted|strong="G3985"\w*, \w he|strong="G3739"\w* \w is|strong="G3588"\w* \w able|strong="G1410"\w* \w to|strong="G1410"\w* help \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w are|strong="G3588"\w* \w tempted|strong="G3985"\w*. +\c 3 +\p +\v 1 \w Therefore|strong="G3606"\w*, holy brothers, \w partakers|strong="G3353"\w* \w of|strong="G2532"\w* \w a|strong="G2532"\w* \w heavenly|strong="G2032"\w* \w calling|strong="G2821"\w*, \w consider|strong="G2657"\w* \w the|strong="G2532"\w* Apostle \w and|strong="G2532"\w* \w High|strong="G2532"\w* Priest \w of|strong="G2532"\w* \w our|strong="G2424"\w* \w confession|strong="G3671"\w*: \w Jesus|strong="G2424"\w*, +\v 2 \w who|strong="G3588"\w* \w was|strong="G1510"\w* \w faithful|strong="G4103"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w appointed|strong="G4160"\w* \w him|strong="G3588"\w*, \w as|strong="G5613"\w* \w also|strong="G2532"\w* \w Moses|strong="G3475"\w* \w was|strong="G1510"\w* \w in|strong="G1722"\w* \w all|strong="G3650"\w* \w his|strong="G1722"\w* \w house|strong="G3624"\w*. +\v 3 \w For|strong="G1063"\w* \w he|strong="G3778"\w* \w has|strong="G2192"\w* \w been|strong="G2192"\w* \w counted|strong="G2192"\w* worthy \w of|strong="G3844"\w* \w more|strong="G4119"\w* \w glory|strong="G1391"\w* \w than|strong="G3844"\w* \w Moses|strong="G3475"\w*, \w because|strong="G1063"\w* \w he|strong="G3778"\w* \w who|strong="G3588"\w* \w built|strong="G2680"\w* \w the|strong="G2596"\w* \w house|strong="G3624"\w* \w has|strong="G2192"\w* \w more|strong="G4119"\w* \w honor|strong="G5092"\w* \w than|strong="G3844"\w* \w the|strong="G2596"\w* \w house|strong="G3624"\w*. +\v 4 \w For|strong="G1063"\w* \w every|strong="G3956"\w* \w house|strong="G3624"\w* \w is|strong="G3588"\w* \w built|strong="G2680"\w* \w by|strong="G5259"\w* \w someone|strong="G5100"\w*; \w but|strong="G1161"\w* \w he|strong="G1161"\w* \w who|strong="G3588"\w* \w built|strong="G2680"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w is|strong="G3588"\w* \w God|strong="G2316"\w*. +\v 5 \w Moses|strong="G3475"\w* \w indeed|strong="G2532"\w* \w was|strong="G3588"\w* \w faithful|strong="G4103"\w* \w in|strong="G1722"\w* \w all|strong="G3650"\w* \w his|strong="G1519"\w* \w house|strong="G3624"\w* \w as|strong="G5613"\w* \w a|strong="G5613"\w* \w servant|strong="G2324"\w*, \w for|strong="G1519"\w* \w a|strong="G5613"\w* \w testimony|strong="G3142"\w* \w of|strong="G2532"\w* \w those|strong="G3588"\w* \w things|strong="G3588"\w* \w which|strong="G3588"\w* \w were|strong="G3588"\w* afterward \w to|strong="G1519"\w* \w be|strong="G2532"\w* \w spoken|strong="G2980"\w*, +\v 6 \w but|strong="G1161"\w* \w Christ|strong="G5547"\w*\f + \fr 3:6 \ft “Christ” means “Anointed One”.\f* \w is|strong="G1510"\w* faithful \w as|strong="G5613"\w* \w a|strong="G5613"\w* \w Son|strong="G5207"\w* \w over|strong="G1909"\w* \w his|strong="G1909"\w* \w house|strong="G3624"\w*. \w We|strong="G2249"\w* \w are|strong="G1510"\w* \w his|strong="G1909"\w* \w house|strong="G3624"\w*, \w if|strong="G1437"\w* \w we|strong="G2249"\w* \w hold|strong="G2722"\w* \w fast|strong="G2722"\w* \w our|strong="G2532"\w* \w confidence|strong="G3954"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w glorying|strong="G2745"\w* \w of|strong="G5207"\w* \w our|strong="G2532"\w* \w hope|strong="G1680"\w* firm \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w end|strong="G5056"\w*. +\v 7 \w Therefore|strong="G1352"\w*, \w even|strong="G2531"\w* \w as|strong="G2531"\w* \w the|strong="G3588"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w says|strong="G3004"\w*, +\q1 “\w Today|strong="G4594"\w* \w if|strong="G1437"\w* \w you|strong="G1437"\w* \w will|strong="G3004"\w* \w hear|strong="G5456"\w* \w his|strong="G3588"\w* \w voice|strong="G5456"\w*, +\q2 +\v 8 don’\w t|strong="G3588"\w* \w harden|strong="G4645"\w* \w your|strong="G1722"\w* \w hearts|strong="G2588"\w* \w as|strong="G5613"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* rebellion, +\q2 \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* \w the|strong="G1722"\w* \w trial|strong="G3986"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wilderness|strong="G2048"\w*, +\q2 +\v 9 \w where|strong="G3757"\w* \w your|strong="G2532"\w* \w fathers|strong="G3962"\w* \w tested|strong="G3985"\w* \w me|strong="G1473"\w* \w and|strong="G2532"\w* \w tried|strong="G3985"\w* \w me|strong="G1473"\w*, +\q2 \w and|strong="G2532"\w* \w saw|strong="G3708"\w* \w my|strong="G3708"\w* \w deeds|strong="G2041"\w* \w for|strong="G1722"\w* \w forty|strong="G5062"\w* \w years|strong="G2094"\w*. +\q1 +\v 10 \w Therefore|strong="G1352"\w* \w I|strong="G1473"\w* \w was|strong="G3588"\w* displeased \w with|strong="G2532"\w* \w that|strong="G3588"\w* \w generation|strong="G1074"\w*, +\q2 \w and|strong="G2532"\w* \w said|strong="G3004"\w*, ‘\w They|strong="G2532"\w* always \w err|strong="G4105"\w* \w in|strong="G2532"\w* \w their|strong="G2532"\w* \w heart|strong="G2588"\w*, +\q2 \w but|strong="G1161"\w* \w they|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w know|strong="G1097"\w* \w my|strong="G1473"\w* \w ways|strong="G3598"\w*.’ +\q1 +\v 11 \w As|strong="G5613"\w* \w I|strong="G1473"\w* \w swore|strong="G3660"\w* \w in|strong="G1722"\w* \w my|strong="G1722"\w* \w wrath|strong="G3709"\w*, +\q2 ‘\w They|strong="G3588"\w* \w will|strong="G1473"\w* \w not|strong="G1487"\w* \w enter|strong="G1525"\w* \w into|strong="G1519"\w* \w my|strong="G1722"\w* \w rest|strong="G2663"\w*.’”\x + \xo 3:11 \xt Psalms 95:7-11\x* +\p +\v 12 Beware, brothers, \w lest|strong="G3379"\w* \w perhaps|strong="G3379"\w* \w there|strong="G1510"\w* \w might|strong="G2316"\w* \w be|strong="G1510"\w* \w in|strong="G1722"\w* \w any|strong="G5100"\w* \w one|strong="G5100"\w* \w of|strong="G2316"\w* \w you|strong="G5210"\w* \w an|strong="G1722"\w* \w evil|strong="G4190"\w* \w heart|strong="G2588"\w* \w of|strong="G2316"\w* unbelief, \w in|strong="G1722"\w* falling away \w from|strong="G3588"\w* \w the|strong="G1722"\w* \w living|strong="G2198"\w* \w God|strong="G2316"\w*; +\v 13 \w but|strong="G3361"\w* \w exhort|strong="G3870"\w* \w one|strong="G5100"\w* \w another|strong="G1438"\w* \w day|strong="G2250"\w* \w by|strong="G1537"\w* \w day|strong="G2250"\w*, \w so|strong="G2443"\w* \w long|strong="G2250"\w* \w as|strong="G2596"\w* \w it|strong="G3739"\w* \w is|strong="G3588"\w* \w called|strong="G2564"\w* “\w today|strong="G4594"\w*”, \w lest|strong="G3361"\w* \w any|strong="G5100"\w* \w one|strong="G5100"\w* \w of|strong="G1537"\w* \w you|strong="G5210"\w* \w be|strong="G3361"\w* \w hardened|strong="G4645"\w* \w by|strong="G1537"\w* \w the|strong="G1537"\w* deceitfulness \w of|strong="G1537"\w* sin. +\v 14 \w For|strong="G1063"\w* \w we|strong="G1437"\w* \w have|strong="G1096"\w* \w become|strong="G1096"\w* \w partakers|strong="G3353"\w* \w of|strong="G3588"\w* \w Christ|strong="G5547"\w*, \w if|strong="G1437"\w* \w we|strong="G1437"\w* \w hold|strong="G2722"\w* \w the|strong="G3588"\w* beginning \w of|strong="G3588"\w* \w our|strong="G5547"\w* \w confidence|strong="G5287"\w* firm \w to|strong="G1096"\w* \w the|strong="G3588"\w* \w end|strong="G5056"\w*, +\v 15 \w while|strong="G1722"\w* \w it|strong="G1437"\w* \w is|strong="G3588"\w* \w said|strong="G3004"\w*, +\q1 “\w Today|strong="G4594"\w* \w if|strong="G1437"\w* \w you|strong="G5210"\w* \w will|strong="G3004"\w* \w hear|strong="G5456"\w* \w his|strong="G1722"\w* \w voice|strong="G5456"\w*, +\q2 don’\w t|strong="G3588"\w* \w harden|strong="G4645"\w* \w your|strong="G1437"\w* \w hearts|strong="G2588"\w*, \w as|strong="G5613"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* rebellion.”\x + \xo 3:15 \xt Psalms 95:7-8\x* +\p +\v 16 \w For|strong="G1063"\w* \w who|strong="G5101"\w*, \w when|strong="G1831"\w* \w they|strong="G3588"\w* heard, \w rebelled|strong="G3893"\w*? Wasn’\w t|strong="G3588"\w* \w it|strong="G1063"\w* \w all|strong="G3956"\w* \w those|strong="G3588"\w* \w who|strong="G5101"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* Egypt led \w by|strong="G1223"\w* \w Moses|strong="G3475"\w*? +\v 17 \w With|strong="G1722"\w* \w whom|strong="G3739"\w* \w was|strong="G3588"\w* \w he|strong="G1161"\w* displeased \w forty|strong="G5062"\w* \w years|strong="G2094"\w*? Wasn’\w t|strong="G3588"\w* \w it|strong="G1161"\w* \w with|strong="G1722"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* sinned, \w whose|strong="G3739"\w* \w bodies|strong="G2966"\w* \w fell|strong="G4098"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w wilderness|strong="G2048"\w*? +\v 18 \w To|strong="G1519"\w* \w whom|strong="G5101"\w* \w did|strong="G5101"\w* \w he|strong="G1161"\w* \w swear|strong="G3660"\w* \w that|strong="G3588"\w* \w they|strong="G1161"\w* wouldn’\w t|strong="G3588"\w* \w enter|strong="G1525"\w* \w into|strong="G1519"\w* \w his|strong="G1519"\w* \w rest|strong="G2663"\w*, \w but|strong="G1161"\w* \w to|strong="G1519"\w* \w those|strong="G3588"\w* \w who|strong="G5101"\w* \w were|strong="G3588"\w* disobedient? +\v 19 \w We|strong="G3754"\w* see \w that|strong="G3754"\w* \w they|strong="G2532"\w* weren’t \w able|strong="G1410"\w* \w to|strong="G2532"\w* \w enter|strong="G1525"\w* \w in|strong="G1525"\w* \w because|strong="G3754"\w* \w of|strong="G1223"\w* unbelief. +\c 4 +\p +\v 1 \w Let|strong="G3767"\w*’s \w fear|strong="G5399"\w* \w therefore|strong="G3767"\w*, \w lest|strong="G3379"\w* \w perhaps|strong="G3379"\w* \w anyone|strong="G5100"\w* \w of|strong="G1537"\w* \w you|strong="G5210"\w* \w should|strong="G5100"\w* \w seem|strong="G1380"\w* \w to|strong="G1519"\w* \w have|strong="G5210"\w* \w come|strong="G1525"\w* \w short|strong="G5302"\w* \w of|strong="G1537"\w* \w a|strong="G1519"\w* \w promise|strong="G1860"\w* \w of|strong="G1537"\w* \w entering|strong="G1525"\w* \w into|strong="G1519"\w* \w his|strong="G1519"\w* \w rest|strong="G2663"\w*. +\v 2 \w For|strong="G1063"\w* \w indeed|strong="G2532"\w* \w we|strong="G1063"\w* \w have|strong="G2532"\w* \w had|strong="G2532"\w* \w good|strong="G2097"\w* \w news|strong="G2097"\w* \w preached|strong="G2097"\w* \w to|strong="G2532"\w* \w us|strong="G2097"\w*, \w even|strong="G2532"\w* \w as|strong="G2509"\w* \w they|strong="G2532"\w* \w also|strong="G2532"\w* \w did|strong="G2532"\w*, \w but|strong="G2532"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w they|strong="G2532"\w* heard didn’\w t|strong="G3588"\w* \w profit|strong="G5623"\w* \w them|strong="G3588"\w*, \w because|strong="G1063"\w* \w it|strong="G2532"\w* wasn’\w t|strong="G3588"\w* mixed \w with|strong="G2532"\w* \w faith|strong="G4102"\w* \w by|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* heard. +\v 3 \w For|strong="G1063"\w* \w we|strong="G1063"\w* \w who|strong="G3588"\w* \w have|strong="G1473"\w* \w believed|strong="G4100"\w* \w do|strong="G1096"\w* \w enter|strong="G1525"\w* \w into|strong="G1519"\w* \w that|strong="G3588"\w* \w rest|strong="G2663"\w*, \w even|strong="G2531"\w* \w as|strong="G5613"\w* \w he|strong="G3588"\w* \w has|strong="G1096"\w* \w said|strong="G3004"\w*, “\w As|strong="G5613"\w* \w I|strong="G1473"\w* \w swore|strong="G3660"\w* \w in|strong="G1722"\w* \w my|strong="G1722"\w* \w wrath|strong="G3709"\w*, \w they|strong="G3588"\w* \w will|strong="G1473"\w* \w not|strong="G1487"\w* \w enter|strong="G1525"\w* \w into|strong="G1519"\w* \w my|strong="G1722"\w* \w rest|strong="G2663"\w*;”\x + \xo 4:3 \xt Psalms 95:11 \x* \w although|strong="G2543"\w* \w the|strong="G1722"\w* \w works|strong="G2041"\w* \w were|strong="G3588"\w* \w finished|strong="G1096"\w* \w from|strong="G3588"\w* \w the|strong="G1722"\w* \w foundation|strong="G2602"\w* \w of|strong="G2041"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*. +\v 4 \w For|strong="G1063"\w* \w he|strong="G2532"\w* \w has|strong="G2316"\w* \w said|strong="G3004"\w* \w this|strong="G3588"\w* \w somewhere|strong="G4225"\w* \w about|strong="G4012"\w* \w the|strong="G1722"\w* \w seventh|strong="G1442"\w* \w day|strong="G2250"\w*, “\w God|strong="G2316"\w* \w rested|strong="G2664"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w seventh|strong="G1442"\w* \w day|strong="G2250"\w* \w from|strong="G2532"\w* \w all|strong="G3956"\w* \w his|strong="G3956"\w* \w works|strong="G2041"\w*;”\x + \xo 4:4 \xt Genesis 2:2\x* +\v 5 \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* \w place|strong="G1722"\w* \w again|strong="G3825"\w*, “\w They|strong="G2532"\w* \w will|strong="G2532"\w* \w not|strong="G2532"\w* \w enter|strong="G1525"\w* \w into|strong="G1519"\w* \w my|strong="G1722"\w* \w rest|strong="G2663"\w*.”\x + \xo 4:5 \xt Psalms 95:11\x* +\p +\v 6 \w Seeing|strong="G1893"\w* \w therefore|strong="G3767"\w* \w it|strong="G2532"\w* remains \w that|strong="G3588"\w* \w some|strong="G5100"\w* \w should|strong="G5100"\w* \w enter|strong="G1525"\w* \w into|strong="G1519"\w* \w it|strong="G2532"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w to|strong="G1519"\w* \w whom|strong="G3588"\w* \w the|strong="G2532"\w* \w good|strong="G2097"\w* \w news|strong="G2097"\w* \w was|strong="G3588"\w* \w preached|strong="G2097"\w* \w before|strong="G4386"\w* \w failed|strong="G3756"\w* \w to|strong="G1519"\w* \w enter|strong="G1525"\w* \w in|strong="G1519"\w* \w because|strong="G1223"\w* \w of|strong="G1223"\w* disobedience, +\v 7 \w he|strong="G3588"\w* \w again|strong="G3825"\w* defines \w a|strong="G1722"\w* \w certain|strong="G5100"\w* \w day|strong="G2250"\w*, “\w today|strong="G4594"\w*”, \w saying|strong="G3004"\w* \w through|strong="G1722"\w* \w David|strong="G1138"\w* \w so|strong="G5118"\w* \w long|strong="G5550"\w* \w a|strong="G1722"\w* \w time|strong="G5550"\w* \w afterward|strong="G3326"\w* (\w just|strong="G2531"\w* \w as|strong="G2531"\w* \w has|strong="G5100"\w* \w been|strong="G3361"\w* \w said|strong="G3004"\w*), +\q1 “\w Today|strong="G4594"\w* \w if|strong="G1437"\w* \w you|strong="G5210"\w* \w will|strong="G5100"\w* \w hear|strong="G5456"\w* \w his|strong="G1722"\w* \w voice|strong="G5456"\w*, +\q2 don’\w t|strong="G3588"\w* \w harden|strong="G4645"\w* \w your|strong="G1437"\w* \w hearts|strong="G2588"\w*.”\x + \xo 4:7 \xt Psalms 95:7-8\x* +\p +\v 8 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w Joshua|strong="G2424"\w* \w had|strong="G2424"\w* \w given|strong="G2664"\w* \w them|strong="G1438"\w* \w rest|strong="G2664"\w*, \w he|strong="G3778"\w* \w would|strong="G2980"\w* \w not|strong="G3756"\w* \w have|strong="G2980"\w* \w spoken|strong="G2980"\w* \w afterward|strong="G3326"\w* \w of|strong="G4012"\w* \w another|strong="G1438"\w* \w day|strong="G2250"\w*. +\v 9 There remains therefore \w a|strong="G2316"\w* \w Sabbath|strong="G4520"\w* \w rest|strong="G4520"\w* \w for|strong="G2316"\w* \w the|strong="G3588"\w* \w people|strong="G2992"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\v 10 \w For|strong="G1063"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w has|strong="G2316"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w his|strong="G1519"\w* \w rest|strong="G2663"\w* \w has|strong="G2316"\w* \w himself|strong="G2398"\w* \w also|strong="G2532"\w* \w rested|strong="G2664"\w* \w from|strong="G2532"\w* \w his|strong="G1519"\w* \w works|strong="G2041"\w*, \w as|strong="G5618"\w* \w God|strong="G2316"\w* \w did|strong="G2532"\w* \w from|strong="G2532"\w* \w his|strong="G1519"\w*. +\v 11 \w Let|strong="G2443"\w*’s \w therefore|strong="G3767"\w* give \w diligence|strong="G4704"\w* \w to|strong="G1519"\w* \w enter|strong="G1525"\w* \w into|strong="G1519"\w* \w that|strong="G2443"\w* \w rest|strong="G2663"\w*, \w lest|strong="G3361"\w* \w anyone|strong="G5100"\w* \w fall|strong="G4098"\w* \w after|strong="G1722"\w* \w the|strong="G1722"\w* \w same|strong="G1565"\w* \w example|strong="G5262"\w* \w of|strong="G5100"\w* disobedience. +\v 12 \w For|strong="G1063"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w* \w is|strong="G3588"\w* \w living|strong="G2198"\w* \w and|strong="G2532"\w* \w active|strong="G1756"\w*, \w and|strong="G2532"\w* \w sharper|strong="G5114"\w* \w than|strong="G5228"\w* \w any|strong="G3956"\w* \w two-edged|strong="G1366"\w* \w sword|strong="G3162"\w*, \w piercing|strong="G1338"\w* \w even|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* dividing \w of|strong="G3056"\w* \w soul|strong="G5590"\w* \w and|strong="G2532"\w* \w spirit|strong="G4151"\w*, \w of|strong="G3056"\w* \w both|strong="G2532"\w* joints \w and|strong="G2532"\w* \w marrow|strong="G3452"\w*, \w and|strong="G2532"\w* \w is|strong="G3588"\w* \w able|strong="G2924"\w* \w to|strong="G2532"\w* discern \w the|strong="G2532"\w* \w thoughts|strong="G1761"\w* \w and|strong="G2532"\w* \w intentions|strong="G1771"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w heart|strong="G2588"\w*. +\v 13 \w There|strong="G2532"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* \w creature|strong="G2937"\w* \w that|strong="G3739"\w* \w is|strong="G1510"\w* hidden \w from|strong="G2532"\w* \w his|strong="G3956"\w* \w sight|strong="G1799"\w*, \w but|strong="G1161"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w are|strong="G1510"\w* \w naked|strong="G1131"\w* \w and|strong="G2532"\w* \w laid|strong="G2532"\w* \w open|strong="G1131"\w* \w before|strong="G1799"\w* \w the|strong="G2532"\w* \w eyes|strong="G3788"\w* \w of|strong="G3056"\w* \w him|strong="G3588"\w* \w to|strong="G4314"\w* \w whom|strong="G3739"\w* \w we|strong="G2249"\w* \w must|strong="G1510"\w* \w give|strong="G1473"\w* \w an|strong="G2532"\w* \w account|strong="G3056"\w*. +\p +\v 14 \w Having|strong="G2192"\w* \w then|strong="G3767"\w* \w a|strong="G2192"\w* \w great|strong="G3173"\w* \w high|strong="G3173"\w* priest \w who|strong="G3588"\w* \w has|strong="G2192"\w* \w passed|strong="G1330"\w* \w through|strong="G1330"\w* \w the|strong="G3588"\w* \w heavens|strong="G3772"\w*, \w Jesus|strong="G2424"\w*, \w the|strong="G3588"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*, \w let|strong="G3767"\w*’\w s|strong="G2192"\w* \w hold|strong="G2902"\w* tightly \w to|strong="G2316"\w* \w our|strong="G2316"\w* \w confession|strong="G3671"\w*. +\v 15 \w For|strong="G1063"\w* \w we|strong="G2249"\w* don’\w t|strong="G3588"\w* \w have|strong="G2192"\w* \w a|strong="G2192"\w* \w high|strong="G3956"\w* priest \w who|strong="G3588"\w* \w can|strong="G1410"\w*’\w t|strong="G3588"\w* \w be|strong="G3756"\w* touched \w with|strong="G2596"\w* \w the|strong="G3956"\w* feeling \w of|strong="G2596"\w* \w our|strong="G3956"\w* infirmities, \w but|strong="G1161"\w* \w one|strong="G3956"\w* \w who|strong="G3588"\w* \w has|strong="G2192"\w* \w been|strong="G2192"\w* \w in|strong="G2596"\w* \w all|strong="G3956"\w* \w points|strong="G3956"\w* \w tempted|strong="G3985"\w* \w like|strong="G2596"\w* \w we|strong="G2249"\w* \w are|strong="G3588"\w*, \w yet|strong="G1161"\w* \w without|strong="G5565"\w* sin. +\v 16 \w Let|strong="G2443"\w*’s \w therefore|strong="G3767"\w* \w draw|strong="G4334"\w* \w near|strong="G4334"\w* \w with|strong="G3326"\w* \w boldness|strong="G3954"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w* \w of|strong="G2532"\w* \w grace|strong="G5485"\w*, \w that|strong="G2443"\w* \w we|strong="G2532"\w* \w may|strong="G2532"\w* \w receive|strong="G2983"\w* \w mercy|strong="G1656"\w* \w and|strong="G2532"\w* \w may|strong="G2532"\w* \w find|strong="G2147"\w* \w grace|strong="G5485"\w* \w for|strong="G1519"\w* help \w in|strong="G1519"\w* \w time|strong="G2121"\w* \w of|strong="G2532"\w* \w need|strong="G2121"\w*. +\c 5 +\p +\v 1 \w For|strong="G1063"\w* \w every|strong="G3956"\w* \w high|strong="G3956"\w* \w priest|strong="G4374"\w*, \w being|strong="G2532"\w* \w taken|strong="G2983"\w* \w from|strong="G1537"\w* \w among|strong="G1537"\w* \w men|strong="G3956"\w*, \w is|strong="G3588"\w* \w appointed|strong="G2525"\w* \w for|strong="G1063"\w* \w men|strong="G3956"\w* \w in|strong="G2532"\w* \w things|strong="G3956"\w* \w pertaining|strong="G4314"\w* \w to|strong="G4314"\w* \w God|strong="G2316"\w*, \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w may|strong="G2532"\w* \w offer|strong="G4374"\w* \w both|strong="G2532"\w* \w gifts|strong="G1435"\w* \w and|strong="G2532"\w* \w sacrifices|strong="G2378"\w* \w for|strong="G1063"\w* sins. +\v 2 \w The|strong="G2532"\w* \w high|strong="G2532"\w* priest \w can|strong="G1410"\w* \w deal|strong="G3356"\w* \w gently|strong="G3356"\w* \w with|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* ignorant \w and|strong="G2532"\w* \w going|strong="G2532"\w* \w astray|strong="G4105"\w*, \w because|strong="G1893"\w* \w he|strong="G2532"\w* himself \w is|strong="G3588"\w* \w also|strong="G2532"\w* surrounded \w with|strong="G2532"\w* weakness. +\v 3 \w Because|strong="G1223"\w* \w of|strong="G4012"\w* \w this|strong="G3588"\w*, \w he|strong="G2532"\w* \w must|strong="G3784"\w* \w offer|strong="G4374"\w* sacrifices \w for|strong="G1223"\w* sins \w for|strong="G1223"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w*, \w as|strong="G2531"\w* \w well|strong="G2532"\w* \w as|strong="G2531"\w* \w for|strong="G1223"\w* \w himself|strong="G1438"\w*. +\v 4 Nobody \w takes|strong="G2983"\w* \w this|strong="G3588"\w* \w honor|strong="G5092"\w* \w on|strong="G3588"\w* \w himself|strong="G1438"\w*, \w but|strong="G2532"\w* \w he|strong="G2532"\w* \w is|strong="G3588"\w* \w called|strong="G2564"\w* \w by|strong="G5259"\w* \w God|strong="G2316"\w*, \w just|strong="G2531"\w* \w like|strong="G2531"\w* Aaron \w was|strong="G3588"\w*. +\v 5 \w So|strong="G3779"\w* \w also|strong="G2532"\w* \w Christ|strong="G5547"\w* didn’\w t|strong="G3588"\w* \w glorify|strong="G1392"\w* \w himself|strong="G1438"\w* \w to|strong="G4314"\w* \w be|strong="G1096"\w* \w made|strong="G1096"\w* \w a|strong="G1096"\w* \w high|strong="G2532"\w* priest, \w but|strong="G2532"\w* \w it|strong="G2532"\w* \w was|strong="G1510"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w said|strong="G2980"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w*, +\q1 “\w You|strong="G4771"\w* \w are|strong="G1510"\w* \w my|strong="G1473"\w* \w Son|strong="G5207"\w*. +\q2 \w Today|strong="G4594"\w* \w I|strong="G1473"\w* \w have|strong="G2532"\w* \w become|strong="G1096"\w* \w your|strong="G2532"\w* \w father|strong="G1080"\w*.”\x + \xo 5:5 \xt Psalms 2:7\x* +\p +\v 6 \w As|strong="G2531"\w* \w he|strong="G2532"\w* \w says|strong="G3004"\w* \w also|strong="G2532"\w* \w in|strong="G1722"\w* \w another|strong="G2087"\w* \w place|strong="G1722"\w*, +\q1 “\w You|strong="G4771"\w* \w are|strong="G3588"\w* \w a|strong="G2532"\w* \w priest|strong="G2409"\w* \w forever|strong="G1519"\w*, +\q2 \w after|strong="G2596"\w* \w the|strong="G1722"\w* \w order|strong="G5010"\w* \w of|strong="G2532"\w* \w Melchizedek|strong="G3198"\w*.”\x + \xo 5:6 \xt Psalms 110:4\x* +\p +\v 7 \w He|strong="G2532"\w*, \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w days|strong="G2250"\w* \w of|strong="G1537"\w* \w his|strong="G1722"\w* \w flesh|strong="G4561"\w*, \w having|strong="G2532"\w* \w offered|strong="G4374"\w* \w up|strong="G4374"\w* \w prayers|strong="G1162"\w* \w and|strong="G2532"\w* petitions \w with|strong="G3326"\w* \w strong|strong="G2478"\w* \w crying|strong="G2906"\w* \w and|strong="G2532"\w* \w tears|strong="G1144"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w* \w who|strong="G3739"\w* \w was|strong="G3588"\w* \w able|strong="G1410"\w* \w to|strong="G4314"\w* \w save|strong="G4982"\w* \w him|strong="G3588"\w* \w from|strong="G1537"\w* \w death|strong="G2288"\w*, \w and|strong="G2532"\w* \w having|strong="G2532"\w* \w been|strong="G2532"\w* \w heard|strong="G1522"\w* \w for|strong="G4314"\w* \w his|strong="G1722"\w* \w godly|strong="G2532"\w* \w fear|strong="G2124"\w*, +\v 8 \w though|strong="G2539"\w* \w he|strong="G3739"\w* \w was|strong="G1510"\w* \w a|strong="G1510"\w* \w Son|strong="G5207"\w*, \w yet|strong="G2539"\w* \w learned|strong="G3129"\w* \w obedience|strong="G5218"\w* \w by|strong="G3739"\w* \w the|strong="G3588"\w* \w things|strong="G3588"\w* \w which|strong="G3739"\w* \w he|strong="G3739"\w* \w suffered|strong="G3958"\w*. +\v 9 \w Having|strong="G2532"\w* \w been|strong="G1096"\w* \w made|strong="G1096"\w* \w perfect|strong="G5048"\w*, \w he|strong="G2532"\w* \w became|strong="G1096"\w* \w to|strong="G2532"\w* \w all|strong="G3956"\w* \w of|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w obey|strong="G5219"\w* \w him|strong="G3588"\w* \w the|strong="G2532"\w* author \w of|strong="G2532"\w* eternal \w salvation|strong="G4991"\w*, +\v 10 named \w by|strong="G5259"\w* \w God|strong="G2316"\w* \w a|strong="G5259"\w* \w high|strong="G2316"\w* priest \w after|strong="G2596"\w* \w the|strong="G2596"\w* \w order|strong="G5010"\w* \w of|strong="G5259"\w* \w Melchizedek|strong="G3198"\w*. +\p +\v 11 \w About|strong="G4012"\w* \w him|strong="G3588"\w* \w we|strong="G2249"\w* \w have|strong="G2532"\w* \w many|strong="G4183"\w* \w words|strong="G3056"\w* \w to|strong="G2532"\w* \w say|strong="G3004"\w*, \w and|strong="G2532"\w* \w hard|strong="G4183"\w* \w to|strong="G2532"\w* interpret, \w seeing|strong="G1893"\w* \w you|strong="G3739"\w* \w have|strong="G2532"\w* \w become|strong="G1096"\w* \w dull|strong="G3576"\w* \w of|strong="G4012"\w* hearing. +\v 12 \w For|strong="G1063"\w* \w although|strong="G5210"\w* \w by|strong="G1223"\w* \w this|strong="G3588"\w* \w time|strong="G5550"\w* \w you|strong="G5210"\w* \w should|strong="G5100"\w* \w be|strong="G1096"\w* \w teachers|strong="G1320"\w*, \w you|strong="G5210"\w* \w again|strong="G3825"\w* \w need|strong="G5532"\w* \w to|strong="G2532"\w* \w have|strong="G2192"\w* \w someone|strong="G5100"\w* \w teach|strong="G1321"\w* \w you|strong="G5210"\w* \w the|strong="G2532"\w* \w rudiments|strong="G4747"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w first|strong="G3588"\w* \w principles|strong="G4747"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* revelations \w of|strong="G1223"\w* \w God|strong="G2316"\w*. \w You|strong="G5210"\w* \w have|strong="G2192"\w* \w come|strong="G1096"\w* \w to|strong="G2532"\w* \w need|strong="G5532"\w* \w milk|strong="G1051"\w*, \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w solid|strong="G4731"\w* \w food|strong="G5160"\w*. +\v 13 \w For|strong="G1063"\w* \w everyone|strong="G3956"\w* \w who|strong="G3588"\w* lives \w on|strong="G3588"\w* \w milk|strong="G1051"\w* \w is|strong="G1510"\w* \w not|strong="G1510"\w* experienced \w in|strong="G3956"\w* \w the|strong="G3956"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w righteousness|strong="G1343"\w*, \w for|strong="G1063"\w* \w he|strong="G3588"\w* \w is|strong="G1510"\w* \w a|strong="G1510"\w* baby. +\v 14 \w But|strong="G1161"\w* \w solid|strong="G4731"\w* \w food|strong="G5160"\w* \w is|strong="G1510"\w* \w for|strong="G1223"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w full|strong="G2192"\w* grown, \w who|strong="G3588"\w* \w by|strong="G1223"\w* \w reason|strong="G1223"\w* \w of|strong="G1223"\w* \w use|strong="G1838"\w* \w have|strong="G2192"\w* \w their|strong="G2532"\w* senses \w exercised|strong="G1128"\w* \w to|strong="G4314"\w* \w discern|strong="G1253"\w* \w good|strong="G2570"\w* \w and|strong="G2532"\w* \w evil|strong="G2556"\w*. +\c 6 +\p +\v 1 \w Therefore|strong="G1352"\w* \w leaving|strong="G3588"\w* \w the|strong="G2532"\w* \w teaching|strong="G3056"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w first|strong="G3588"\w* principles \w of|strong="G3056"\w* \w Christ|strong="G5547"\w*, \w let|strong="G2532"\w*’s \w press|strong="G5342"\w* \w on|strong="G1909"\w* \w to|strong="G2532"\w* \w perfection|strong="G5047"\w*—\w not|strong="G3361"\w* \w laying|strong="G2598"\w* \w again|strong="G3825"\w* \w a|strong="G2532"\w* \w foundation|strong="G2310"\w* \w of|strong="G3056"\w* \w repentance|strong="G3341"\w* \w from|strong="G2532"\w* \w dead|strong="G3498"\w* \w works|strong="G2041"\w*, \w of|strong="G3056"\w* \w faith|strong="G4102"\w* \w toward|strong="G1909"\w* \w God|strong="G2316"\w*, +\v 2 \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w teaching|strong="G1322"\w* \w of|strong="G2532"\w* baptisms, \w of|strong="G2532"\w* \w laying|strong="G1936"\w* \w on|strong="G5495"\w* \w of|strong="G2532"\w* \w hands|strong="G5495"\w*, \w of|strong="G2532"\w* resurrection \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*, \w and|strong="G2532"\w* \w of|strong="G2532"\w* eternal \w judgment|strong="G2917"\w*. +\v 3 \w This|strong="G3778"\w* \w will|strong="G2316"\w* \w we|strong="G1437"\w* \w do|strong="G4160"\w*, \w if|strong="G1437"\w* \w God|strong="G2316"\w* \w permits|strong="G2010"\w*. +\v 4 \w For|strong="G1063"\w* concerning \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* once \w enlightened|strong="G5461"\w* \w and|strong="G2532"\w* \w tasted|strong="G1089"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w heavenly|strong="G2032"\w* \w gift|strong="G1431"\w*, \w and|strong="G2532"\w* \w were|strong="G3588"\w* \w made|strong="G1096"\w* \w partakers|strong="G3353"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*, +\v 5 \w and|strong="G2532"\w* \w tasted|strong="G1089"\w* \w the|strong="G2532"\w* \w good|strong="G2570"\w* \w word|strong="G4487"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w powers|strong="G1411"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* age \w to|strong="G2532"\w* \w come|strong="G3195"\w*, +\v 6 \w and|strong="G2532"\w* \w then|strong="G2532"\w* \w fell|strong="G2532"\w* \w away|strong="G3895"\w*, \w it|strong="G2532"\w* \w is|strong="G3588"\w* impossible \w to|strong="G1519"\w* renew \w them|strong="G3588"\w* \w again|strong="G3825"\w* \w to|strong="G1519"\w* \w repentance|strong="G3341"\w*; seeing \w they|strong="G2532"\w* crucify \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w* \w for|strong="G1519"\w* \w themselves|strong="G1438"\w* \w again|strong="G3825"\w*, \w and|strong="G2532"\w* \w put|strong="G3856"\w* \w him|strong="G3588"\w* \w to|strong="G1519"\w* \w open|strong="G3856"\w* \w shame|strong="G3856"\w*. +\v 7 \w For|strong="G1063"\w* \w the|strong="G2532"\w* \w land|strong="G1093"\w* \w which|strong="G3739"\w* \w has|strong="G2316"\w* \w drunk|strong="G4095"\w* \w the|strong="G2532"\w* \w rain|strong="G5205"\w* \w that|strong="G3739"\w* \w comes|strong="G2064"\w* \w often|strong="G4178"\w* \w on|strong="G1909"\w* \w it|strong="G2532"\w* \w and|strong="G2532"\w* produces \w a|strong="G2532"\w* crop \w suitable|strong="G3588"\w* \w for|strong="G1063"\w* \w them|strong="G3588"\w* \w for|strong="G1063"\w* \w whose|strong="G3739"\w* \w sake|strong="G1223"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w also|strong="G2532"\w* \w tilled|strong="G1090"\w*, \w receives|strong="G3335"\w* \w blessing|strong="G2129"\w* \w from|strong="G2064"\w* \w God|strong="G2316"\w*; +\v 8 \w but|strong="G1161"\w* \w if|strong="G2532"\w* \w it|strong="G2532"\w* bears thorns \w and|strong="G2532"\w* \w thistles|strong="G5146"\w*, \w it|strong="G2532"\w* \w is|strong="G3588"\w* rejected \w and|strong="G2532"\w* \w near|strong="G1451"\w* \w being|strong="G2532"\w* \w cursed|strong="G2671"\w*, \w whose|strong="G3739"\w* \w end|strong="G5056"\w* \w is|strong="G3588"\w* \w to|strong="G1519"\w* \w be|strong="G2532"\w* \w burned|strong="G2740"\w*. +\p +\v 9 \w But|strong="G1161"\w*, beloved, \w we|strong="G2532"\w* \w are|strong="G3588"\w* \w persuaded|strong="G3982"\w* \w of|strong="G4012"\w* \w better|strong="G2909"\w* \w things|strong="G3588"\w* \w for|strong="G4012"\w* \w you|strong="G5210"\w*, \w and|strong="G2532"\w* \w things|strong="G3588"\w* \w that|strong="G3588"\w* \w accompany|strong="G2192"\w* \w salvation|strong="G4991"\w*, \w even|strong="G2532"\w* \w though|strong="G1487"\w* \w we|strong="G2532"\w* \w speak|strong="G2980"\w* \w like|strong="G3779"\w* \w this|strong="G3588"\w*. +\v 10 \w For|strong="G1063"\w* \w God|strong="G2316"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* unrighteous, \w so|strong="G2532"\w* \w as|strong="G1519"\w* \w to|strong="G1519"\w* \w forget|strong="G1950"\w* \w your|strong="G2532"\w* \w work|strong="G2041"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w labor|strong="G2041"\w* \w of|strong="G2316"\w* love \w which|strong="G3739"\w* \w you|strong="G5210"\w* showed \w toward|strong="G1519"\w* \w his|strong="G1519"\w* \w name|strong="G3686"\w*, \w in|strong="G1519"\w* \w that|strong="G3739"\w* \w you|strong="G5210"\w* \w served|strong="G1247"\w* \w the|strong="G2532"\w* saints, \w and|strong="G2532"\w* still \w do|strong="G2532"\w* \w serve|strong="G1247"\w* \w them|strong="G3588"\w*. +\v 11 \w We|strong="G1161"\w* \w desire|strong="G1937"\w* \w that|strong="G3588"\w* \w each|strong="G1538"\w* \w one|strong="G1538"\w* \w of|strong="G1680"\w* \w you|strong="G5210"\w* \w may|strong="G5210"\w* \w show|strong="G1731"\w* \w the|strong="G1161"\w* same \w diligence|strong="G4710"\w* \w to|strong="G4314"\w* \w the|strong="G1161"\w* fullness \w of|strong="G1680"\w* \w hope|strong="G1680"\w* \w even|strong="G1161"\w* \w to|strong="G4314"\w* \w the|strong="G1161"\w* \w end|strong="G5056"\w*, +\v 12 \w that|strong="G2443"\w* \w you|strong="G2532"\w* won’\w t|strong="G3588"\w* \w be|strong="G1096"\w* \w sluggish|strong="G3576"\w*, \w but|strong="G1161"\w* \w imitators|strong="G3402"\w* \w of|strong="G1223"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w through|strong="G1223"\w* \w faith|strong="G4102"\w* \w and|strong="G2532"\w* \w perseverance|strong="G3115"\w* \w inherited|strong="G2816"\w* \w the|strong="G2532"\w* \w promises|strong="G1860"\w*. +\p +\v 13 \w For|strong="G1063"\w* \w when|strong="G2192"\w* \w God|strong="G2316"\w* \w made|strong="G1861"\w* \w a|strong="G2192"\w* \w promise|strong="G1861"\w* \w to|strong="G2596"\w* Abraham, \w since|strong="G1893"\w* \w he|strong="G3588"\w* \w could|strong="G2192"\w* \w swear|strong="G3660"\w* \w by|strong="G2596"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w* \w greater|strong="G3173"\w*, \w he|strong="G3588"\w* \w swore|strong="G3660"\w* \w by|strong="G2596"\w* \w himself|strong="G1438"\w*, +\v 14 \w saying|strong="G3004"\w*, “\w Surely|strong="G3375"\w* \w blessing|strong="G2127"\w* \w I|strong="G2532"\w* \w will|strong="G2532"\w* \w bless|strong="G2127"\w* \w you|strong="G4771"\w*, \w and|strong="G2532"\w* \w multiplying|strong="G4129"\w* \w I|strong="G2532"\w* \w will|strong="G2532"\w* \w multiply|strong="G4129"\w* \w you|strong="G4771"\w*.”\x + \xo 6:14 \xt Genesis 22:17\x* +\v 15 \w Thus|strong="G3779"\w*, \w having|strong="G2532"\w* \w patiently|strong="G3114"\w* \w endured|strong="G3114"\w*, \w he|strong="G2532"\w* \w obtained|strong="G2013"\w* \w the|strong="G2532"\w* \w promise|strong="G1860"\w*. +\v 16 \w For|strong="G1063"\w* \w men|strong="G3956"\w* \w indeed|strong="G2532"\w* \w swear|strong="G3660"\w* \w by|strong="G2596"\w* \w a|strong="G2532"\w* \w greater|strong="G3173"\w* \w one|strong="G3956"\w*, \w and|strong="G2532"\w* \w in|strong="G1519"\w* \w every|strong="G3956"\w* dispute \w of|strong="G2532"\w* theirs \w the|strong="G2532"\w* \w oath|strong="G3727"\w* \w is|strong="G3588"\w* final \w for|strong="G1063"\w* confirmation. +\v 17 \w In|strong="G1722"\w* \w this|strong="G3588"\w* \w way|strong="G1722"\w* \w God|strong="G2316"\w*, \w being|strong="G1722"\w* \w determined|strong="G1012"\w* \w to|strong="G1722"\w* \w show|strong="G1925"\w* \w more|strong="G4054"\w* \w abundantly|strong="G4054"\w* \w to|strong="G1722"\w* \w the|strong="G1722"\w* \w heirs|strong="G2818"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w promise|strong="G1860"\w* \w the|strong="G1722"\w* immutability \w of|strong="G2316"\w* \w his|strong="G1722"\w* \w counsel|strong="G1012"\w*, \w interposed|strong="G3315"\w* \w with|strong="G1722"\w* \w an|strong="G1722"\w* \w oath|strong="G3727"\w*, +\v 18 \w that|strong="G2443"\w* \w by|strong="G1223"\w* \w two|strong="G1417"\w* immutable \w things|strong="G3588"\w*, \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w it|strong="G3739"\w* \w is|strong="G3588"\w* impossible \w for|strong="G1223"\w* \w God|strong="G2316"\w* \w to|strong="G2443"\w* \w lie|strong="G5574"\w*, \w we|strong="G3739"\w* \w may|strong="G2443"\w* \w have|strong="G2192"\w* \w a|strong="G2192"\w* \w strong|strong="G2478"\w* \w encouragement|strong="G3874"\w*, \w who|strong="G3739"\w* \w have|strong="G2192"\w* \w fled|strong="G2703"\w* \w for|strong="G1223"\w* \w refuge|strong="G2703"\w* \w to|strong="G2443"\w* \w take|strong="G2902"\w* \w hold|strong="G2902"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* \w hope|strong="G1680"\w* \w set|strong="G4295"\w* \w before|strong="G1722"\w* \w us|strong="G4295"\w*. +\v 19 \w This|strong="G3588"\w* \w hope|strong="G2532"\w* \w we|strong="G3739"\w* \w have|strong="G2192"\w* \w as|strong="G5613"\w* \w an|strong="G2192"\w* anchor \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w soul|strong="G5590"\w*, \w a|strong="G2192"\w* \w hope|strong="G2532"\w* \w both|strong="G2532"\w* sure \w and|strong="G2532"\w* steadfast \w and|strong="G2532"\w* \w entering|strong="G1525"\w* \w into|strong="G1519"\w* \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w is|strong="G3588"\w* \w within|strong="G2082"\w* \w the|strong="G2532"\w* \w veil|strong="G2665"\w*, +\v 20 \w where|strong="G3699"\w* \w as|strong="G1519"\w* \w a|strong="G1096"\w* \w forerunner|strong="G4274"\w* \w Jesus|strong="G2424"\w* \w entered|strong="G1525"\w* \w for|strong="G1519"\w* \w us|strong="G1519"\w*, having \w become|strong="G1096"\w* \w a|strong="G1096"\w* high priest \w forever|strong="G1519"\w* \w after|strong="G2596"\w* \w the|strong="G1519"\w* \w order|strong="G5010"\w* \w of|strong="G2596"\w* \w Melchizedek|strong="G3198"\w*. +\c 7 +\p +\v 1 \w For|strong="G1063"\w* \w this|strong="G3778"\w* \w Melchizedek|strong="G3198"\w*, \w king|strong="G3588"\w* \w of|strong="G2316"\w* \w Salem|strong="G4532"\w*, \w priest|strong="G2409"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w Most|strong="G5310"\w* \w High|strong="G5310"\w*, \w who|strong="G3588"\w* \w met|strong="G4876"\w* Abraham \w returning|strong="G5290"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w slaughter|strong="G2871"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w kings|strong="G3588"\w* \w and|strong="G2532"\w* \w blessed|strong="G2127"\w* \w him|strong="G3588"\w*, +\v 2 \w to|strong="G2532"\w* \w whom|strong="G3739"\w* \w also|strong="G2532"\w* Abraham \w divided|strong="G3307"\w* \w a|strong="G2532"\w* \w tenth|strong="G1181"\w* \w part|strong="G1181"\w* \w of|strong="G2532"\w* \w all|strong="G3956"\w* (\w being|strong="G1510"\w* \w first|strong="G4413"\w*, \w by|strong="G2532"\w* \w interpretation|strong="G2059"\w*, “king \w of|strong="G2532"\w* \w righteousness|strong="G1343"\w*”, \w and|strong="G2532"\w* \w then|strong="G2532"\w* \w also|strong="G2532"\w* “king \w of|strong="G2532"\w* \w Salem|strong="G4532"\w*”, \w which|strong="G3739"\w* \w means|strong="G1510"\w* “king \w of|strong="G2532"\w* \w peace|strong="G1515"\w*”, +\v 3 \w without|strong="G2316"\w* father, \w without|strong="G2316"\w* mother, \w without|strong="G2316"\w* genealogy, \w having|strong="G2192"\w* \w neither|strong="G3383"\w* beginning \w of|strong="G5207"\w* \w days|strong="G2250"\w* \w nor|strong="G3383"\w* \w end|strong="G5056"\w* \w of|strong="G5207"\w* \w life|strong="G2222"\w*, \w but|strong="G1161"\w* \w made|strong="G2316"\w* \w like|strong="G5207"\w* \w the|strong="G1519"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*), \w remains|strong="G3306"\w* \w a|strong="G2192"\w* \w priest|strong="G2409"\w* \w continually|strong="G1336"\w*. +\p +\v 4 \w Now|strong="G1161"\w* \w consider|strong="G2334"\w* \w how|strong="G1161"\w* \w great|strong="G4080"\w* \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w was|strong="G3588"\w*, \w to|strong="G2532"\w* \w whom|strong="G3739"\w* \w even|strong="G2532"\w* Abraham \w the|strong="G2532"\w* \w patriarch|strong="G3966"\w* \w gave|strong="G1325"\w* \w a|strong="G2532"\w* \w tenth|strong="G1181"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* best plunder. +\v 5 \w They|strong="G2532"\w* \w indeed|strong="G2532"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w sons|strong="G5207"\w* \w of|strong="G1537"\w* \w Levi|strong="G3017"\w* \w who|strong="G3588"\w* \w receive|strong="G2983"\w* \w the|strong="G2532"\w* priest’\w s|strong="G2192"\w* \w office|strong="G2405"\w* \w have|strong="G2192"\w* \w a|strong="G2192"\w* \w commandment|strong="G1785"\w* \w to|strong="G2532"\w* \w take|strong="G2983"\w* tithes \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w*, \w that|strong="G3588"\w* \w is|strong="G1510"\w*, \w of|strong="G1537"\w* \w their|strong="G2532"\w* brothers, \w though|strong="G2539"\w* \w these|strong="G3778"\w* \w have|strong="G2192"\w* \w come|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* body \w of|strong="G1537"\w* Abraham, +\v 6 \w but|strong="G1161"\w* \w he|strong="G2532"\w* \w whose|strong="G3588"\w* \w genealogy|strong="G1075"\w* \w is|strong="G3588"\w* \w not|strong="G3361"\w* \w counted|strong="G2192"\w* \w from|strong="G1537"\w* \w them|strong="G3588"\w* \w has|strong="G2192"\w* accepted \w tithes|strong="G1183"\w* \w from|strong="G1537"\w* Abraham, \w and|strong="G2532"\w* \w has|strong="G2192"\w* \w blessed|strong="G2127"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w has|strong="G2192"\w* \w the|strong="G2532"\w* \w promises|strong="G1860"\w*. +\v 7 \w But|strong="G1161"\w* \w without|strong="G5565"\w* \w any|strong="G3956"\w* dispute \w the|strong="G3956"\w* \w lesser|strong="G1640"\w* \w is|strong="G3588"\w* \w blessed|strong="G2127"\w* \w by|strong="G5259"\w* \w the|strong="G3956"\w* \w greater|strong="G2909"\w*. +\v 8 \w Here|strong="G5602"\w* \w people|strong="G2983"\w* \w who|strong="G3748"\w* die \w receive|strong="G2983"\w* \w tithes|strong="G1181"\w*, \w but|strong="G1161"\w* \w there|strong="G1563"\w* \w one|strong="G3303"\w* \w receives|strong="G2983"\w* \w tithes|strong="G1181"\w* \w of|strong="G2532"\w* \w whom|strong="G1161"\w* \w it|strong="G2532"\w* \w is|strong="G3748"\w* \w testified|strong="G3140"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w lives|strong="G2198"\w*. +\v 9 \w We|strong="G2532"\w* \w can|strong="G3004"\w* \w say|strong="G3004"\w* \w that|strong="G3588"\w* \w through|strong="G1223"\w* Abraham \w even|strong="G2532"\w* \w Levi|strong="G3018"\w*, \w who|strong="G3588"\w* \w receives|strong="G2983"\w* \w tithes|strong="G1181"\w*, \w has|strong="G2532"\w* \w paid|strong="G1183"\w* \w tithes|strong="G1181"\w*, +\v 10 \w for|strong="G1063"\w* \w he|strong="G3588"\w* \w was|strong="G1510"\w* \w yet|strong="G2089"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* body \w of|strong="G3962"\w* \w his|strong="G1722"\w* \w father|strong="G3962"\w* \w when|strong="G3753"\w* \w Melchizedek|strong="G3198"\w* \w met|strong="G4876"\w* \w him|strong="G3588"\w*. +\p +\v 11 \w Now|strong="G2532"\w* \w if|strong="G1487"\w* \w perfection|strong="G5050"\w* \w was|strong="G1510"\w* \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w Levitical|strong="G3020"\w* \w priesthood|strong="G2420"\w* (\w for|strong="G1063"\w* \w under|strong="G1909"\w* \w it|strong="G2532"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w* \w have|strong="G2532"\w* \w received|strong="G3549"\w* \w the|strong="G2532"\w* \w law|strong="G3549"\w*), \w what|strong="G5101"\w* \w further|strong="G2089"\w* \w need|strong="G5532"\w* \w was|strong="G1510"\w* \w there|strong="G2532"\w* \w for|strong="G1063"\w* \w another|strong="G2087"\w* \w priest|strong="G2409"\w* \w to|strong="G2532"\w* arise \w after|strong="G2596"\w* \w the|strong="G2532"\w* \w order|strong="G5010"\w* \w of|strong="G1223"\w* \w Melchizedek|strong="G3198"\w*, \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w be|strong="G1510"\w* \w called|strong="G3004"\w* \w after|strong="G2596"\w* \w the|strong="G2532"\w* \w order|strong="G5010"\w* \w of|strong="G1223"\w* Aaron? +\v 12 \w For|strong="G1063"\w* \w the|strong="G2532"\w* \w priesthood|strong="G2420"\w* \w being|strong="G1096"\w* \w changed|strong="G3346"\w*, \w there|strong="G2532"\w* \w is|strong="G3588"\w* \w of|strong="G1537"\w* necessity \w a|strong="G1096"\w* \w change|strong="G3331"\w* \w made|strong="G1096"\w* \w also|strong="G2532"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w*. +\v 13 \w For|strong="G1063"\w* \w he|strong="G3739"\w* \w of|strong="G1909"\w* \w whom|strong="G3739"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w are|strong="G3588"\w* \w said|strong="G3004"\w* \w belongs|strong="G3348"\w* \w to|strong="G1909"\w* \w another|strong="G2087"\w* \w tribe|strong="G5443"\w*, \w from|strong="G3588"\w* \w which|strong="G3739"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w* \w has|strong="G3739"\w* \w officiated|strong="G4337"\w* \w at|strong="G1909"\w* \w the|strong="G1909"\w* \w altar|strong="G2379"\w*. +\v 14 \w For|strong="G1063"\w* \w it|strong="G3754"\w* \w is|strong="G3588"\w* \w evident|strong="G4271"\w* \w that|strong="G3754"\w* \w our|strong="G2962"\w* \w Lord|strong="G2962"\w* \w has|strong="G2962"\w* sprung \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w Judah|strong="G2455"\w*, \w about|strong="G4012"\w* \w which|strong="G3739"\w* \w tribe|strong="G5443"\w* \w Moses|strong="G3475"\w* \w spoke|strong="G2980"\w* \w nothing|strong="G3762"\w* \w concerning|strong="G4012"\w* priesthood. +\v 15 \w This|strong="G3588"\w* \w is|strong="G1510"\w* \w yet|strong="G2089"\w* \w more|strong="G2089"\w* \w abundantly|strong="G4054"\w* \w evident|strong="G2612"\w*, \w if|strong="G1487"\w* \w after|strong="G2596"\w* \w the|strong="G2532"\w* \w likeness|strong="G3665"\w* \w of|strong="G2532"\w* \w Melchizedek|strong="G3198"\w* \w there|strong="G2532"\w* arises \w another|strong="G2087"\w* \w priest|strong="G2409"\w*, +\v 16 \w who|strong="G3739"\w* \w has|strong="G3739"\w* \w been|strong="G1096"\w* \w made|strong="G1096"\w*, \w not|strong="G3756"\w* \w after|strong="G2596"\w* \w the|strong="G2596"\w* \w law|strong="G3551"\w* \w of|strong="G3551"\w* \w a|strong="G1096"\w* fleshly \w commandment|strong="G1785"\w*, \w but|strong="G3551"\w* \w after|strong="G2596"\w* \w the|strong="G2596"\w* \w power|strong="G1411"\w* \w of|strong="G3551"\w* \w an|strong="G1096"\w* endless \w life|strong="G2222"\w*; +\v 17 \w for|strong="G1063"\w* \w it|strong="G3754"\w* \w is|strong="G3588"\w* \w testified|strong="G3140"\w*, +\q1 “\w You|strong="G4771"\w* \w are|strong="G3588"\w* \w a|strong="G1519"\w* \w priest|strong="G2409"\w* \w forever|strong="G1519"\w*, +\q2 \w according|strong="G2596"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w order|strong="G5010"\w* \w of|strong="G2596"\w* \w Melchizedek|strong="G3198"\w*.”\x + \xo 7:17 \xt Psalms 110:4\x* +\p +\v 18 \w For|strong="G1063"\w* \w there|strong="G2532"\w* \w is|strong="G3588"\w* \w an|strong="G2532"\w* annulling \w of|strong="G1223"\w* \w a|strong="G1096"\w* foregoing \w commandment|strong="G1785"\w* \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w its|strong="G1223"\w* weakness \w and|strong="G2532"\w* uselessness +\v 19 (\w for|strong="G1063"\w* \w the|strong="G1161"\w* \w law|strong="G3551"\w* \w made|strong="G5048"\w* \w nothing|strong="G3762"\w* \w perfect|strong="G5048"\w*), \w and|strong="G1161"\w* \w a|strong="G1161"\w* \w bringing|strong="G1898"\w* \w in|strong="G2316"\w* \w of|strong="G1223"\w* \w a|strong="G1161"\w* \w better|strong="G2909"\w* \w hope|strong="G1680"\w*, \w through|strong="G1223"\w* \w which|strong="G3739"\w* \w we|strong="G3739"\w* \w draw|strong="G1448"\w* \w near|strong="G1448"\w* \w to|strong="G1161"\w* \w God|strong="G2316"\w*. +\v 20 \w Inasmuch|strong="G2596"\w* \w as|strong="G3745"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w not|strong="G3756"\w* \w made|strong="G1096"\w* \w priest|strong="G2409"\w* \w without|strong="G5565"\w* \w the|strong="G2532"\w* \w taking|strong="G1096"\w* \w of|strong="G2532"\w* \w an|strong="G2532"\w* \w oath|strong="G3728"\w* +\v 21 (\w for|strong="G1519"\w* \w they|strong="G2532"\w* \w indeed|strong="G2532"\w* \w have|strong="G2532"\w* \w been|strong="G2532"\w* \w made|strong="G3756"\w* \w priests|strong="G2409"\w* \w without|strong="G2532"\w* \w an|strong="G2532"\w* \w oath|strong="G3728"\w*), \w but|strong="G1161"\w* \w he|strong="G2532"\w* \w with|strong="G3326"\w* \w an|strong="G2532"\w* \w oath|strong="G3728"\w* \w by|strong="G1223"\w* \w him|strong="G3588"\w* \w that|strong="G3588"\w* \w says|strong="G3004"\w* \w of|strong="G1223"\w* \w him|strong="G3588"\w*, +\q1 “\w The|strong="G2532"\w* \w Lord|strong="G2962"\w* \w swore|strong="G3660"\w* \w and|strong="G2532"\w* \w will|strong="G2532"\w* \w not|strong="G3756"\w* \w change|strong="G3338"\w* \w his|strong="G1223"\w* \w mind|strong="G3338"\w*, +\q2 ‘\w You|strong="G4771"\w* \w are|strong="G3588"\w* \w a|strong="G2532"\w* \w priest|strong="G2409"\w* \w forever|strong="G1519"\w*, +\q2 \w according|strong="G3756"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w order|strong="G4314"\w* \w of|strong="G1223"\w* Melchizedek.’”\x + \xo 7:21 \xt Psalms 110:4\x* +\p +\v 22 \w By|strong="G2596"\w* \w so|strong="G2532"\w* \w much|strong="G5118"\w*, \w Jesus|strong="G2424"\w* \w has|strong="G1096"\w* \w become|strong="G1096"\w* \w the|strong="G2532"\w* \w guarantee|strong="G1450"\w* \w of|strong="G2532"\w* \w a|strong="G1096"\w* \w better|strong="G2909"\w* \w covenant|strong="G1242"\w*. +\p +\v 23 \w Many|strong="G4183"\w*, \w indeed|strong="G2532"\w*, \w have|strong="G2532"\w* \w been|strong="G1510"\w* \w made|strong="G1096"\w* \w priests|strong="G2409"\w*, \w because|strong="G1223"\w* \w they|strong="G2532"\w* \w are|strong="G1510"\w* \w hindered|strong="G2967"\w* \w from|strong="G2532"\w* \w continuing|strong="G3887"\w* \w by|strong="G1223"\w* \w death|strong="G2288"\w*. +\v 24 \w But|strong="G1161"\w* \w he|strong="G1161"\w*, \w because|strong="G1223"\w* \w he|strong="G1161"\w* \w lives|strong="G3306"\w* \w forever|strong="G1519"\w*, \w has|strong="G2192"\w* \w his|strong="G1223"\w* \w priesthood|strong="G2420"\w* unchangeable. +\v 25 \w Therefore|strong="G1223"\w* \w he|strong="G2532"\w* \w is|strong="G3588"\w* \w also|strong="G2532"\w* \w able|strong="G1410"\w* \w to|strong="G1519"\w* \w save|strong="G4982"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w uttermost|strong="G3838"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w draw|strong="G4334"\w* \w near|strong="G4334"\w* \w to|strong="G1519"\w* \w God|strong="G2316"\w* \w through|strong="G1223"\w* \w him|strong="G3588"\w*, \w seeing|strong="G1223"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w lives|strong="G2198"\w* \w forever|strong="G1519"\w* \w to|strong="G1519"\w* \w make|strong="G1519"\w* \w intercession|strong="G1793"\w* \w for|strong="G1519"\w* \w them|strong="G3588"\w*. +\p +\v 26 \w For|strong="G1063"\w* \w such|strong="G5108"\w* \w a|strong="G1096"\w* \w high|strong="G5308"\w* priest \w was|strong="G1096"\w* \w fitting|strong="G4241"\w* \w for|strong="G1063"\w* \w us|strong="G1096"\w*: \w holy|strong="G3741"\w*, guiltless, undefiled, \w separated|strong="G5563"\w* \w from|strong="G2532"\w* sinners, \w and|strong="G2532"\w* \w made|strong="G1096"\w* \w higher|strong="G5308"\w* \w than|strong="G2532"\w* \w the|strong="G2532"\w* \w heavens|strong="G3772"\w*; +\v 27 \w who|strong="G3739"\w* doesn’\w t|strong="G3588"\w* \w need|strong="G2192"\w*, \w like|strong="G5618"\w* \w those|strong="G3588"\w* high priests, \w to|strong="G2596"\w* \w offer|strong="G4374"\w* \w up|strong="G4374"\w* \w sacrifices|strong="G2378"\w* \w daily|strong="G2250"\w*, \w first|strong="G4386"\w* \w for|strong="G1063"\w* \w his|strong="G1438"\w* \w own|strong="G2398"\w* sins, \w and|strong="G2250"\w* \w then|strong="G1899"\w* \w for|strong="G1063"\w* \w the|strong="G2596"\w* sins \w of|strong="G2250"\w* \w the|strong="G2596"\w* \w people|strong="G2992"\w*. \w For|strong="G1063"\w* \w he|strong="G3739"\w* \w did|strong="G4160"\w* \w this|strong="G3778"\w* \w once|strong="G2178"\w* \w for|strong="G1063"\w* \w all|strong="G2596"\w*, \w when|strong="G3739"\w* \w he|strong="G3739"\w* \w offered|strong="G4374"\w* \w up|strong="G4374"\w* \w himself|strong="G1438"\w*. +\v 28 \w For|strong="G1063"\w* \w the|strong="G1519"\w* \w law|strong="G3551"\w* \w appoints|strong="G2525"\w* \w men|strong="G3588"\w* \w as|strong="G1519"\w* high priests \w who|strong="G3588"\w* \w have|strong="G2192"\w* weakness, \w but|strong="G1161"\w* \w the|strong="G1519"\w* \w word|strong="G3056"\w* \w of|strong="G5207"\w* \w the|strong="G1519"\w* \w oath|strong="G3728"\w*, \w which|strong="G3588"\w* \w came|strong="G3588"\w* \w after|strong="G3326"\w* \w the|strong="G1519"\w* \w law|strong="G3551"\w*, \w appoints|strong="G2525"\w* \w a|strong="G2192"\w* \w Son|strong="G5207"\w* \w forever|strong="G1519"\w* \w who|strong="G3588"\w* \w has|strong="G2192"\w* \w been|strong="G2192"\w* \w perfected|strong="G5048"\w*. +\c 8 +\p +\v 1 \w Now|strong="G1161"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w things|strong="G3588"\w* \w which|strong="G3739"\w* \w we|strong="G3739"\w* \w are|strong="G3588"\w* \w saying|strong="G3004"\w*, \w the|strong="G1722"\w* \w main|strong="G2774"\w* \w point|strong="G2774"\w* \w is|strong="G3588"\w* \w this|strong="G3588"\w*: \w we|strong="G3739"\w* \w have|strong="G2192"\w* \w such|strong="G5108"\w* \w a|strong="G2192"\w* high priest, \w who|strong="G3739"\w* \w sat|strong="G2523"\w* \w down|strong="G2523"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* \w of|strong="G1909"\w* \w the|strong="G1722"\w* \w throne|strong="G2362"\w* \w of|strong="G1909"\w* \w the|strong="G1722"\w* \w Majesty|strong="G3172"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w heavens|strong="G3772"\w*, +\v 2 \w a|strong="G2532"\w* \w servant|strong="G3588"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* sanctuary \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w true|strong="G3588"\w* \w tabernacle|strong="G4633"\w* \w which|strong="G3739"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w pitched|strong="G4078"\w*, \w not|strong="G3756"\w* \w man|strong="G3739"\w*. +\v 3 \w For|strong="G1063"\w* \w every|strong="G3956"\w* \w high|strong="G3956"\w* \w priest|strong="G4374"\w* \w is|strong="G3588"\w* \w appointed|strong="G2525"\w* \w to|strong="G1519"\w* \w offer|strong="G4374"\w* \w both|strong="G2532"\w* \w gifts|strong="G1435"\w* \w and|strong="G2532"\w* \w sacrifices|strong="G2378"\w*. \w Therefore|strong="G3606"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* necessary \w that|strong="G3739"\w* \w this|strong="G3778"\w* \w high|strong="G3956"\w* \w priest|strong="G4374"\w* \w also|strong="G2532"\w* \w have|strong="G2192"\w* \w something|strong="G5100"\w* \w to|strong="G1519"\w* \w offer|strong="G4374"\w*. +\v 4 \w For|strong="G1909"\w* \w if|strong="G1487"\w* \w he|strong="G3588"\w* \w were|strong="G1510"\w* \w on|strong="G1909"\w* \w earth|strong="G1093"\w*, \w he|strong="G3588"\w* \w would|strong="G1510"\w* \w not|strong="G3761"\w* \w be|strong="G1510"\w* \w a|strong="G1510"\w* \w priest|strong="G2409"\w* \w at|strong="G1909"\w* \w all|strong="G2596"\w*, seeing \w there|strong="G1510"\w* \w are|strong="G1510"\w* \w priests|strong="G2409"\w* \w who|strong="G3588"\w* \w offer|strong="G4374"\w* \w the|strong="G1909"\w* \w gifts|strong="G1435"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1909"\w* \w law|strong="G3551"\w*, +\v 5 \w who|strong="G3588"\w* \w serve|strong="G3000"\w* \w a|strong="G2532"\w* \w copy|strong="G5262"\w* \w and|strong="G2532"\w* \w shadow|strong="G4639"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w heavenly|strong="G2032"\w* \w things|strong="G3956"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w Moses|strong="G3475"\w* \w was|strong="G3588"\w* \w warned|strong="G5537"\w* \w by|strong="G1722"\w* \w God|strong="G5537"\w* \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w about|strong="G3195"\w* \w to|strong="G2532"\w* \w make|strong="G4160"\w* \w the|strong="G1722"\w* \w tabernacle|strong="G4633"\w*, \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w said|strong="G5346"\w*, “\w See|strong="G3708"\w*, \w you|strong="G4771"\w* \w shall|strong="G2532"\w* \w make|strong="G4160"\w* \w everything|strong="G3956"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w pattern|strong="G5179"\w* \w that|strong="G3588"\w* \w was|strong="G3588"\w* \w shown|strong="G1166"\w* \w to|strong="G2532"\w* \w you|strong="G4771"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w mountain|strong="G3735"\w*.”\x + \xo 8:5 \xt Exodus 25:40\x* +\v 6 \w But|strong="G1161"\w* \w now|strong="G1161"\w* \w he|strong="G2532"\w* \w has|strong="G3748"\w* \w obtained|strong="G5177"\w* \w a|strong="G2532"\w* \w more|strong="G1313"\w* \w excellent|strong="G1313"\w* \w ministry|strong="G3009"\w*, \w by|strong="G1909"\w* \w as|strong="G3745"\w* \w much|strong="G3745"\w* \w as|strong="G3745"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w also|strong="G2532"\w* \w the|strong="G2532"\w* \w mediator|strong="G3316"\w* \w of|strong="G2532"\w* \w a|strong="G2532"\w* \w better|strong="G2909"\w* \w covenant|strong="G1242"\w*, \w which|strong="G3748"\w* \w on|strong="G1909"\w* \w better|strong="G2909"\w* \w promises|strong="G1860"\w* \w has|strong="G3748"\w* \w been|strong="G1510"\w* given \w as|strong="G3745"\w* \w law|strong="G3549"\w*. +\p +\v 7 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w that|strong="G3588"\w* \w first|strong="G4413"\w* covenant \w had|strong="G1510"\w* \w been|strong="G1510"\w* faultless, \w then|strong="G1063"\w* \w no|strong="G3756"\w* \w place|strong="G5117"\w* \w would|strong="G1510"\w* \w have|strong="G1510"\w* \w been|strong="G1510"\w* \w sought|strong="G2212"\w* \w for|strong="G1063"\w* \w a|strong="G1510"\w* \w second|strong="G1208"\w*. +\v 8 \w For|strong="G1063"\w* \w finding|strong="G3201"\w* \w fault|strong="G3201"\w* \w with|strong="G2532"\w* \w them|strong="G3588"\w*, \w he|strong="G2532"\w* \w said|strong="G3004"\w*, +\q1 “\w Behold|strong="G2400"\w*,\f + \fr 8:8 \ft “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w the|strong="G2532"\w* \w days|strong="G2250"\w* \w are|strong="G3588"\w* \w coming|strong="G2064"\w*”, \w says|strong="G3004"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, +\q2 “\w that|strong="G3588"\w* \w I|strong="G2532"\w* \w will|strong="G2532"\w* \w make|strong="G2532"\w* \w a|strong="G2532"\w* \w new|strong="G2537"\w* \w covenant|strong="G1242"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w house|strong="G3624"\w* \w of|strong="G2250"\w* \w Israel|strong="G2474"\w* \w and|strong="G2532"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w house|strong="G3624"\w* \w of|strong="G2250"\w* \w Judah|strong="G2455"\w*; +\q1 +\v 9 \w not|strong="G3756"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G1722"\w* \w covenant|strong="G1242"\w* \w that|strong="G3754"\w* \w I|strong="G1473"\w* \w made|strong="G4160"\w* \w with|strong="G1722"\w* \w their|strong="G1438"\w* \w fathers|strong="G3962"\w* +\q2 \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w that|strong="G3754"\w* \w I|strong="G1473"\w* \w took|strong="G1949"\w* \w them|strong="G3588"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w hand|strong="G5495"\w* \w to|strong="G2596"\w* \w lead|strong="G1806"\w* \w them|strong="G3588"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w land|strong="G1093"\w* \w of|strong="G1537"\w* Egypt; +\q1 \w for|strong="G3754"\w* \w they|strong="G3588"\w* didn’\w t|strong="G3588"\w* \w continue|strong="G1696"\w* \w in|strong="G1722"\w* \w my|strong="G1722"\w* \w covenant|strong="G1242"\w*, +\q2 \w and|strong="G3962"\w* \w I|strong="G1473"\w* disregarded \w them|strong="G3588"\w*,” \w says|strong="G3004"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\q1 +\v 10 “\w For|strong="G3754"\w* \w this|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w covenant|strong="G1242"\w* \w that|strong="G3754"\w* \w I|strong="G1473"\w* \w will|strong="G2316"\w* \w make|strong="G1303"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w house|strong="G3624"\w* \w of|strong="G2250"\w* \w Israel|strong="G2474"\w* +\q2 \w after|strong="G3326"\w* \w those|strong="G3588"\w* \w days|strong="G2250"\w*,” \w says|strong="G3004"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*: +\q1 “\w I|strong="G1473"\w* \w will|strong="G2316"\w* \w put|strong="G1325"\w* \w my|strong="G1325"\w* \w laws|strong="G3551"\w* \w into|strong="G1519"\w* \w their|strong="G1438"\w* \w mind|strong="G1271"\w*; +\q2 \w I|strong="G1473"\w* \w will|strong="G2316"\w* \w also|strong="G2532"\w* \w write|strong="G1924"\w* \w them|strong="G3588"\w* \w on|strong="G1909"\w* \w their|strong="G1438"\w* \w heart|strong="G2588"\w*. +\q1 \w I|strong="G1473"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w their|strong="G1438"\w* \w God|strong="G2316"\w*, +\q2 \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w my|strong="G1325"\w* \w people|strong="G2992"\w*. +\q1 +\v 11 \w They|strong="G2532"\w* \w will|strong="G2532"\w* \w not|strong="G3756"\w* \w teach|strong="G1321"\w* \w every|strong="G3956"\w* \w man|strong="G1538"\w* \w his|strong="G3956"\w* \w fellow|strong="G4177"\w* \w citizen|strong="G4177"\w*\f + \fr 8:11 \ft TR reads “neighbor” instead of “fellow citizen”\f* +\q2 \w and|strong="G2532"\w* \w every|strong="G3956"\w* \w man|strong="G1538"\w* \w his|strong="G3956"\w* brother, \w saying|strong="G3004"\w*, ‘\w Know|strong="G1492"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*,’ +\q2 \w for|strong="G3754"\w* \w all|strong="G3956"\w* \w will|strong="G2532"\w* \w know|strong="G1492"\w* \w me|strong="G1473"\w*, +\q2 \w from|strong="G2532"\w* \w their|strong="G2532"\w* \w least|strong="G3398"\w* \w to|strong="G2532"\w* \w their|strong="G2532"\w* \w greatest|strong="G3173"\w*. +\q1 +\v 12 \w For|strong="G3754"\w* \w I|strong="G2532"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w merciful|strong="G2436"\w* \w to|strong="G2532"\w* \w their|strong="G2532"\w* unrighteousness. +\q2 \w I|strong="G2532"\w* \w will|strong="G1510"\w* \w remember|strong="G3403"\w* \w their|strong="G2532"\w* sins \w and|strong="G2532"\w* lawless deeds \w no|strong="G3756"\w* \w more|strong="G2089"\w*.”\x + \xo 8:12 \xt Jeremiah 31:31-34\x* +\p +\v 13 \w In|strong="G1722"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w says|strong="G3004"\w*, “\w A|strong="G2532"\w* \w new|strong="G2537"\w* covenant”, \w he|strong="G2532"\w* \w has|strong="G2532"\w* \w made|strong="G1161"\w* \w the|strong="G1722"\w* \w first|strong="G4413"\w* \w obsolete|strong="G3822"\w*. \w But|strong="G1161"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w becoming|strong="G3822"\w* \w obsolete|strong="G3822"\w* \w and|strong="G2532"\w* grows aged \w is|strong="G3588"\w* \w near|strong="G1451"\w* \w to|strong="G2532"\w* vanishing away. +\c 9 +\p +\v 1 \w Now|strong="G2532"\w* \w indeed|strong="G2532"\w* \w even|strong="G2532"\w* \w the|strong="G2532"\w* \w first|strong="G4413"\w*\f + \fr 9:1 \ft TR adds “tabernacle”\f* covenant \w had|strong="G2192"\w* \w ordinances|strong="G1345"\w* \w of|strong="G2532"\w* \w divine|strong="G2999"\w* \w service|strong="G2999"\w* \w and|strong="G2532"\w* \w an|strong="G2192"\w* \w earthly|strong="G2886"\w* sanctuary. +\v 2 \w For|strong="G1063"\w* \w a|strong="G2532"\w* \w tabernacle|strong="G4633"\w* \w was|strong="G3588"\w* \w prepared|strong="G2680"\w*. \w In|strong="G1722"\w* \w the|strong="G1722"\w* \w first|strong="G4413"\w* \w part|strong="G2532"\w* \w were|strong="G3588"\w* \w the|strong="G1722"\w* lamp stand, \w the|strong="G1722"\w* \w table|strong="G5132"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* show bread, \w which|strong="G3739"\w* \w is|strong="G3588"\w* \w called|strong="G3004"\w* \w the|strong="G1722"\w* Holy \w Place|strong="G1722"\w*. +\v 3 \w After|strong="G3326"\w* \w the|strong="G1161"\w* \w second|strong="G1208"\w* \w veil|strong="G2665"\w* \w was|strong="G3588"\w* \w the|strong="G1161"\w* \w tabernacle|strong="G4633"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w called|strong="G3004"\w* \w the|strong="G1161"\w* Holy \w of|strong="G3588"\w* Holies, +\v 4 \w having|strong="G2192"\w* \w a|strong="G2192"\w* \w golden|strong="G5552"\w* \w altar|strong="G2369"\w* \w of|strong="G2532"\w* \w incense|strong="G2369"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w ark|strong="G2787"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w covenant|strong="G1242"\w* \w overlaid|strong="G4028"\w* \w on|strong="G1722"\w* \w all|strong="G2532"\w* \w sides|strong="G3840"\w* \w with|strong="G1722"\w* \w gold|strong="G5553"\w*, \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w was|strong="G3588"\w* \w a|strong="G2192"\w* \w golden|strong="G5552"\w* \w pot|strong="G4713"\w* \w holding|strong="G2192"\w* \w the|strong="G1722"\w* \w manna|strong="G3131"\w*, Aaron’\w s|strong="G2192"\w* \w rod|strong="G4464"\w* \w that|strong="G3739"\w* budded, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w tablets|strong="G4109"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w covenant|strong="G1242"\w*; +\v 5 \w and|strong="G1161"\w* \w above|strong="G5231"\w* \w it|strong="G1161"\w* \w cherubim|strong="G5502"\w* \w of|strong="G4012"\w* \w glory|strong="G1391"\w* \w overshadowing|strong="G2683"\w* \w the|strong="G1161"\w* \w mercy|strong="G2435"\w* \w seat|strong="G2435"\w*, \w of|strong="G4012"\w* \w which|strong="G3739"\w* \w things|strong="G3588"\w* \w we|strong="G3739"\w* \w can|strong="G3004"\w*’\w t|strong="G3588"\w* \w speak|strong="G3004"\w* \w now|strong="G1161"\w* \w in|strong="G2596"\w* \w detail|strong="G3313"\w*. +\p +\v 6 \w Now|strong="G1161"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w* having been \w thus|strong="G3779"\w* \w prepared|strong="G2680"\w*, \w the|strong="G1519"\w* \w priests|strong="G2409"\w* \w go|strong="G1524"\w* \w in|strong="G1519"\w* \w continually|strong="G1223"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w first|strong="G4413"\w* \w tabernacle|strong="G4633"\w*, \w accomplishing|strong="G2005"\w* \w the|strong="G1519"\w* services, +\v 7 \w but|strong="G1161"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w second|strong="G1208"\w* \w the|strong="G2532"\w* \w high|strong="G2532"\w* \w priest|strong="G4374"\w* \w alone|strong="G3441"\w*, \w once|strong="G3739"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w year|strong="G1763"\w*, \w not|strong="G3756"\w* \w without|strong="G5565"\w* blood, \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w offers|strong="G4374"\w* \w for|strong="G1519"\w* \w himself|strong="G1438"\w* \w and|strong="G2532"\w* \w for|strong="G1519"\w* \w the|strong="G2532"\w* errors \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w*. +\v 8 \w The|strong="G3588"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w is|strong="G3588"\w* \w indicating|strong="G1213"\w* \w this|strong="G3778"\w*, \w that|strong="G3588"\w* \w the|strong="G3588"\w* \w way|strong="G3598"\w* into \w the|strong="G3588"\w* \w Holy|strong="G4151"\w* Place wasn’\w t|strong="G3588"\w* \w yet|strong="G2089"\w* \w revealed|strong="G5319"\w* \w while|strong="G3778"\w* \w the|strong="G3588"\w* \w first|strong="G4413"\w* \w tabernacle|strong="G4633"\w* \w was|strong="G3588"\w* \w still|strong="G2089"\w* \w standing|strong="G4714"\w*. +\v 9 \w This|strong="G3588"\w* \w is|strong="G3588"\w* \w a|strong="G2532"\w* \w symbol|strong="G3850"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w present|strong="G1764"\w* \w age|strong="G2540"\w*, \w where|strong="G3739"\w* \w gifts|strong="G1435"\w* \w and|strong="G2532"\w* \w sacrifices|strong="G2378"\w* \w are|strong="G3588"\w* \w offered|strong="G4374"\w* \w that|strong="G3739"\w* \w are|strong="G3588"\w* \w incapable|strong="G3361"\w*, \w concerning|strong="G1519"\w* \w the|strong="G2532"\w* \w conscience|strong="G4893"\w*, \w of|strong="G2532"\w* \w making|strong="G2532"\w* \w the|strong="G2532"\w* \w worshiper|strong="G3000"\w* \w perfect|strong="G5048"\w*, +\v 10 \w being|strong="G2532"\w* \w only|strong="G3440"\w* (\w with|strong="G2532"\w* \w foods|strong="G1033"\w* \w and|strong="G2532"\w* \w drinks|strong="G4188"\w* \w and|strong="G2532"\w* \w various|strong="G1313"\w* washings) \w fleshly|strong="G4561"\w* \w ordinances|strong="G1345"\w*, \w imposed|strong="G1945"\w* \w until|strong="G3360"\w* \w a|strong="G2532"\w* \w time|strong="G2540"\w* \w of|strong="G2532"\w* \w reformation|strong="G1357"\w*. +\p +\v 11 \w But|strong="G1161"\w* \w Christ|strong="G5547"\w* \w having|strong="G2532"\w* \w come|strong="G1096"\w* \w as|strong="G1161"\w* \w a|strong="G1096"\w* \w high|strong="G3173"\w* priest \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w coming|strong="G3854"\w* \w good|strong="G1223"\w* \w things|strong="G3778"\w*, \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w greater|strong="G3173"\w* \w and|strong="G2532"\w* \w more|strong="G3173"\w* \w perfect|strong="G5046"\w* \w tabernacle|strong="G4633"\w*, \w not|strong="G3756"\w* \w made|strong="G1096"\w* \w with|strong="G1223"\w* \w hands|strong="G5499"\w*, \w that|strong="G3588"\w* \w is|strong="G1510"\w* \w to|strong="G2532"\w* \w say|strong="G1223"\w*, \w not|strong="G3756"\w* \w of|strong="G1223"\w* \w this|strong="G3778"\w* \w creation|strong="G2937"\w*, +\v 12 \w nor|strong="G3761"\w* \w yet|strong="G2532"\w* \w through|strong="G1223"\w* \w the|strong="G2532"\w* blood \w of|strong="G1223"\w* \w goats|strong="G5131"\w* \w and|strong="G2532"\w* \w calves|strong="G3448"\w*, \w but|strong="G1161"\w* \w through|strong="G1223"\w* \w his|strong="G1223"\w* \w own|strong="G2398"\w* blood, \w entered|strong="G1525"\w* \w in|strong="G1519"\w* \w once|strong="G2178"\w* \w for|strong="G1519"\w* \w all|strong="G2532"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* Holy Place, \w having|strong="G2532"\w* \w obtained|strong="G2147"\w* eternal \w redemption|strong="G3085"\w*. +\v 13 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w the|strong="G2532"\w* blood \w of|strong="G2532"\w* \w goats|strong="G5131"\w* \w and|strong="G2532"\w* \w bulls|strong="G5022"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w ashes|strong="G4700"\w* \w of|strong="G2532"\w* \w a|strong="G2532"\w* \w heifer|strong="G1151"\w* \w sprinkling|strong="G4472"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w have|strong="G2532"\w* \w been|strong="G2532"\w* \w defiled|strong="G2840"\w*, sanctify \w to|strong="G4314"\w* \w the|strong="G2532"\w* cleanness \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w*, +\v 14 \w how|strong="G4214"\w* \w much|strong="G4214"\w* \w more|strong="G3123"\w* \w will|strong="G2316"\w* \w the|strong="G1519"\w* blood \w of|strong="G4151"\w* \w Christ|strong="G5547"\w*, \w who|strong="G3739"\w* \w through|strong="G1223"\w* \w the|strong="G1519"\w* eternal \w Spirit|strong="G4151"\w* \w offered|strong="G4374"\w* \w himself|strong="G1438"\w* \w without|strong="G1438"\w* defect \w to|strong="G1519"\w* \w God|strong="G2316"\w*, \w cleanse|strong="G2511"\w* \w your|strong="G1223"\w* \w conscience|strong="G4893"\w* \w from|strong="G3588"\w* \w dead|strong="G3498"\w* \w works|strong="G2041"\w* \w to|strong="G1519"\w* \w serve|strong="G3000"\w* \w the|strong="G1519"\w* \w living|strong="G2198"\w* \w God|strong="G2316"\w*? +\v 15 \w For|strong="G1519"\w* \w this|strong="G3778"\w* \w reason|strong="G1223"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w mediator|strong="G3316"\w* \w of|strong="G1223"\w* \w a|strong="G1096"\w* \w new|strong="G2537"\w* \w covenant|strong="G1242"\w*, \w since|strong="G1223"\w* \w a|strong="G1096"\w* \w death|strong="G2288"\w* \w has|strong="G1096"\w* \w occurred|strong="G1096"\w* \w for|strong="G1519"\w* \w the|strong="G2532"\w* redemption \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w transgressions|strong="G3847"\w* \w that|strong="G3588"\w* \w were|strong="G1510"\w* \w under|strong="G1909"\w* \w the|strong="G2532"\w* \w first|strong="G4413"\w* \w covenant|strong="G1242"\w*, \w that|strong="G3588"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w have|strong="G2532"\w* \w been|strong="G1510"\w* \w called|strong="G2564"\w* \w may|strong="G2532"\w* \w receive|strong="G2983"\w* \w the|strong="G2532"\w* \w promise|strong="G1860"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* eternal \w inheritance|strong="G2817"\w*. +\v 16 \w For|strong="G1063"\w* \w where|strong="G3699"\w* \w a|strong="G5342"\w* last will \w and|strong="G3588"\w* \w testament|strong="G1242"\w* \w is|strong="G3588"\w*, \w there|strong="G1063"\w* \w must|strong="G3588"\w* \w of|strong="G3588"\w* necessity \w be|strong="G3588"\w* \w the|strong="G3588"\w* \w death|strong="G2288"\w* \w of|strong="G3588"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w made|strong="G1303"\w* \w it|strong="G1063"\w*. +\v 17 \w For|strong="G1063"\w* \w a|strong="G1909"\w* \w will|strong="G3498"\w* \w is|strong="G3588"\w* \w in|strong="G1909"\w* \w force|strong="G2480"\w* where \w there|strong="G1063"\w* \w has|strong="G2480"\w* \w been|strong="G2480"\w* \w death|strong="G3498"\w*, \w for|strong="G1063"\w* \w it|strong="G1063"\w* \w is|strong="G3588"\w* \w never|strong="G3379"\w* \w in|strong="G1909"\w* \w force|strong="G2480"\w* \w while|strong="G3753"\w* \w he|strong="G3588"\w* \w who|strong="G3588"\w* \w made|strong="G1303"\w* \w it|strong="G1063"\w* \w lives|strong="G2198"\w*. +\v 18 \w Therefore|strong="G3606"\w* \w even|strong="G3761"\w* \w the|strong="G3588"\w* \w first|strong="G4413"\w* covenant \w has|strong="G3761"\w* \w not|strong="G3761"\w* been \w dedicated|strong="G1457"\w* \w without|strong="G5565"\w* blood. +\v 19 \w For|strong="G1063"\w* \w when|strong="G2532"\w* \w every|strong="G3956"\w* \w commandment|strong="G1785"\w* \w had|strong="G2532"\w* \w been|strong="G2532"\w* \w spoken|strong="G2980"\w* \w by|strong="G5259"\w* \w Moses|strong="G3475"\w* \w to|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w*, \w he|strong="G2532"\w* \w took|strong="G2983"\w* \w the|strong="G2532"\w* blood \w of|strong="G5259"\w* \w the|strong="G2532"\w* \w calves|strong="G3448"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w goats|strong="G5131"\w*, \w with|strong="G3326"\w* \w water|strong="G5204"\w* \w and|strong="G2532"\w* \w scarlet|strong="G2847"\w* \w wool|strong="G2053"\w* \w and|strong="G2532"\w* \w hyssop|strong="G5301"\w*, \w and|strong="G2532"\w* \w sprinkled|strong="G4472"\w* \w both|strong="G2532"\w* \w the|strong="G2532"\w* \w book|strong="G3588"\w* itself \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w people|strong="G2992"\w*, +\v 20 \w saying|strong="G3004"\w*, “\w This|strong="G3778"\w* \w is|strong="G3588"\w* \w the|strong="G4314"\w* blood \w of|strong="G2316"\w* \w the|strong="G4314"\w* \w covenant|strong="G1242"\w* \w which|strong="G3739"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w commanded|strong="G1781"\w* \w you|strong="G5210"\w*.”\x + \xo 9:20 \xt Exodus 24:8\x* +\p +\v 21 \w He|strong="G2532"\w* \w sprinkled|strong="G4472"\w* \w the|strong="G2532"\w* \w tabernacle|strong="G4633"\w* \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w vessels|strong="G4632"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w ministry|strong="G3009"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w same|strong="G3668"\w* \w way|strong="G3668"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* blood. +\v 22 \w According|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w law|strong="G3551"\w*, \w nearly|strong="G4975"\w* \w everything|strong="G3956"\w* \w is|strong="G3588"\w* \w cleansed|strong="G2511"\w* \w with|strong="G1722"\w* blood, \w and|strong="G2532"\w* \w apart|strong="G5565"\w* \w from|strong="G2532"\w* shedding \w of|strong="G2532"\w* blood \w there|strong="G2532"\w* \w is|strong="G3588"\w* \w no|strong="G3756"\w* remission. +\p +\v 23 \w It|strong="G1161"\w* \w was|strong="G3588"\w* \w necessary|strong="G3767"\w* \w therefore|strong="G3767"\w* \w that|strong="G3588"\w* \w the|strong="G1722"\w* \w copies|strong="G5262"\w* \w of|strong="G3844"\w* \w the|strong="G1722"\w* \w things|strong="G3778"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w heavens|strong="G3772"\w* \w should|strong="G3588"\w* \w be|strong="G3588"\w* \w cleansed|strong="G2511"\w* \w with|strong="G1722"\w* \w these|strong="G3778"\w*, \w but|strong="G1161"\w* \w the|strong="G1722"\w* \w heavenly|strong="G2032"\w* \w things|strong="G3778"\w* \w themselves|strong="G3778"\w* \w with|strong="G1722"\w* \w better|strong="G2909"\w* \w sacrifices|strong="G2378"\w* \w than|strong="G3844"\w* \w these|strong="G3778"\w*. +\v 24 \w For|strong="G1063"\w* \w Christ|strong="G5547"\w* hasn’\w t|strong="G3588"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* holy places \w made|strong="G5499"\w* \w with|strong="G2316"\w* \w hands|strong="G5499"\w*, \w which|strong="G3588"\w* \w are|strong="G3588"\w* representations \w of|strong="G2316"\w* \w the|strong="G1519"\w* \w true|strong="G3588"\w*, \w but|strong="G1063"\w* \w into|strong="G1519"\w* \w heaven|strong="G3772"\w* itself, \w now|strong="G3568"\w* \w to|strong="G1519"\w* \w appear|strong="G1718"\w* \w in|strong="G1519"\w* \w the|strong="G1519"\w* \w presence|strong="G4383"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w for|strong="G1063"\w* \w us|strong="G1519"\w*; +\v 25 \w nor|strong="G3761"\w* \w yet|strong="G3761"\w* \w that|strong="G2443"\w* \w he|strong="G3588"\w* \w should|strong="G3588"\w* \w offer|strong="G4374"\w* \w himself|strong="G1438"\w* \w often|strong="G4178"\w*, \w as|strong="G5618"\w* \w the|strong="G1722"\w* high \w priest|strong="G4374"\w* \w enters|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* holy \w place|strong="G1722"\w* \w year|strong="G1763"\w* \w by|strong="G1722"\w* \w year|strong="G1763"\w* \w with|strong="G1722"\w* blood \w not|strong="G3761"\w* \w his|strong="G1438"\w* \w own|strong="G1438"\w*, +\v 26 \w or|strong="G1161"\w* \w else|strong="G1893"\w* \w he|strong="G1161"\w* \w must|strong="G1163"\w* \w have|strong="G1163"\w* \w suffered|strong="G3958"\w* \w often|strong="G4178"\w* \w since|strong="G1893"\w* \w the|strong="G1519"\w* \w foundation|strong="G2602"\w* \w of|strong="G1223"\w* \w the|strong="G1519"\w* \w world|strong="G2889"\w*. \w But|strong="G1161"\w* \w now|strong="G1161"\w* once \w at|strong="G1909"\w* \w the|strong="G1519"\w* \w end|strong="G4930"\w* \w of|strong="G1223"\w* \w the|strong="G1519"\w* ages, \w he|strong="G1161"\w* \w has|strong="G2889"\w* \w been|strong="G5319"\w* \w revealed|strong="G5319"\w* \w to|strong="G1519"\w* \w put|strong="G1163"\w* away sin \w by|strong="G1223"\w* \w the|strong="G1519"\w* \w sacrifice|strong="G2378"\w* \w of|strong="G1223"\w* \w himself|strong="G1519"\w*. +\v 27 \w Inasmuch|strong="G2596"\w* \w as|strong="G3745"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* appointed \w for|strong="G1161"\w* \w men|strong="G3778"\w* \w to|strong="G2532"\w* die once, \w and|strong="G2532"\w* \w after|strong="G3326"\w* \w this|strong="G3778"\w*, \w judgment|strong="G2920"\w*, +\v 28 \w so|strong="G3779"\w* \w Christ|strong="G5547"\w* \w also|strong="G2532"\w*, \w having|strong="G2532"\w* \w been|strong="G2532"\w* \w offered|strong="G4374"\w* once \w to|strong="G1519"\w* \w bear|strong="G2532"\w* \w the|strong="G2532"\w* sins \w of|strong="G1537"\w* \w many|strong="G4183"\w*, \w will|strong="G2532"\w* \w appear|strong="G3708"\w* \w a|strong="G2532"\w* \w second|strong="G1208"\w* \w time|strong="G1208"\w*, \w not|strong="G2532"\w* \w to|strong="G1519"\w* \w deal|strong="G4183"\w* \w with|strong="G1537"\w* sin, \w but|strong="G2532"\w* \w to|strong="G1519"\w* save \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* eagerly waiting \w for|strong="G1519"\w* \w him|strong="G3588"\w*. +\c 10 +\p +\v 1 \w For|strong="G1063"\w* \w the|strong="G1519"\w* \w law|strong="G3551"\w*, \w having|strong="G2192"\w* \w a|strong="G2192"\w* \w shadow|strong="G4639"\w* \w of|strong="G3551"\w* \w the|strong="G1519"\w* \w good|strong="G3756"\w* \w to|strong="G1519"\w* \w come|strong="G3195"\w*, \w not|strong="G3756"\w* \w the|strong="G1519"\w* \w very|strong="G3588"\w* \w image|strong="G1504"\w* \w of|strong="G3551"\w* \w the|strong="G1519"\w* \w things|strong="G3588"\w*, \w can|strong="G1410"\w* \w never|strong="G3756"\w* \w with|strong="G2596"\w* \w the|strong="G1519"\w* \w same|strong="G3739"\w* \w sacrifices|strong="G2378"\w* \w year|strong="G1763"\w* \w by|strong="G2596"\w* \w year|strong="G1763"\w*, \w which|strong="G3739"\w* \w they|strong="G3588"\w* \w offer|strong="G4374"\w* \w continually|strong="G1336"\w*, \w make|strong="G5048"\w* \w perfect|strong="G5048"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w draw|strong="G4334"\w* \w near|strong="G4334"\w*. +\v 2 \w Or|strong="G3588"\w* \w else|strong="G1893"\w* wouldn’\w t|strong="G3588"\w* \w they|strong="G3588"\w* \w have|strong="G2192"\w* \w ceased|strong="G3973"\w* \w to|strong="G3756"\w* \w be|strong="G3756"\w* \w offered|strong="G4374"\w*, \w because|strong="G1223"\w* \w the|strong="G1223"\w* \w worshipers|strong="G3000"\w*, \w having|strong="G2192"\w* \w been|strong="G2192"\w* once \w cleansed|strong="G2511"\w*, \w would|strong="G1893"\w* \w have|strong="G2192"\w* \w had|strong="G2192"\w* \w no|strong="G3756"\w* \w more|strong="G2089"\w* \w consciousness|strong="G4893"\w* \w of|strong="G1223"\w* sins? +\v 3 But \w in|strong="G1722"\w* \w those|strong="G1722"\w* sacrifices \w there|strong="G1722"\w* \w is|strong="G1722"\w* \w a|strong="G1722"\w* yearly reminder \w of|strong="G1722"\w* sins. +\v 4 \w For|strong="G1063"\w* \w it|strong="G2532"\w* \w is|strong="G2532"\w* impossible \w that|strong="G2532"\w* \w the|strong="G2532"\w* blood \w of|strong="G2532"\w* \w bulls|strong="G5022"\w* \w and|strong="G2532"\w* \w goats|strong="G5131"\w* \w should|strong="G2532"\w* \w take|strong="G2532"\w* away sins. +\v 5 \w Therefore|strong="G1352"\w* \w when|strong="G1161"\w* \w he|strong="G2532"\w* \w comes|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w*, \w he|strong="G2532"\w* \w says|strong="G3004"\w*, +\q1 “\w You|strong="G3004"\w* didn’\w t|strong="G3588"\w* \w desire|strong="G2309"\w* \w sacrifice|strong="G2378"\w* \w and|strong="G2532"\w* \w offering|strong="G4376"\w*, +\q2 \w but|strong="G1161"\w* \w you|strong="G3004"\w* \w prepared|strong="G2675"\w* \w a|strong="G2532"\w* \w body|strong="G4983"\w* \w for|strong="G1519"\w* \w me|strong="G1473"\w*. +\q1 +\v 6 \w You|strong="G2532"\w* \w had|strong="G2532"\w* \w no|strong="G3756"\w* \w pleasure|strong="G2106"\w* \w in|strong="G2532"\w* \w whole|strong="G3646"\w* \w burnt|strong="G3646"\w* \w offerings|strong="G3646"\w* \w and|strong="G2532"\w* sacrifices \w for|strong="G4012"\w* sin. +\q2 +\v 7 \w Then|strong="G5119"\w* \w I|strong="G1473"\w* \w said|strong="G3004"\w*, ‘\w Behold|strong="G2400"\w*, \w I|strong="G1473"\w* \w have|strong="G1473"\w* \w come|strong="G2240"\w* (\w in|strong="G1722"\w* \w the|strong="G1722"\w* \w scroll|strong="G2777"\w* \w of|strong="G4012"\w* \w the|strong="G1722"\w* \w book|strong="G3588"\w* \w it|strong="G4160"\w* \w is|strong="G3588"\w* \w written|strong="G1125"\w* \w of|strong="G4012"\w* \w me|strong="G1473"\w*) +\q2 \w to|strong="G3004"\w* \w do|strong="G4160"\w* \w your|strong="G3708"\w* \w will|strong="G2307"\w*, O \w God|strong="G2316"\w*.’”\x + \xo 10:7 \xt Psalms 40:6-8\x* +\p +\v 8 Previously \w saying|strong="G3004"\w*, “\w Sacrifices|strong="G2378"\w* \w and|strong="G2532"\w* \w offerings|strong="G3646"\w* \w and|strong="G2532"\w* \w whole|strong="G3646"\w* \w burnt|strong="G3646"\w* \w offerings|strong="G3646"\w* \w and|strong="G2532"\w* \w sacrifices|strong="G2378"\w* \w for|strong="G3754"\w* sin \w you|strong="G3754"\w* didn’t \w desire|strong="G2309"\w*, \w neither|strong="G3761"\w* \w had|strong="G2532"\w* \w pleasure|strong="G2106"\w* \w in|strong="G2596"\w* \w them|strong="G3004"\w*” (\w those|strong="G4012"\w* \w which|strong="G3748"\w* \w are|strong="G2532"\w* \w offered|strong="G4374"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w*), +\v 9 \w then|strong="G5119"\w* \w he|strong="G3588"\w* \w has|strong="G3708"\w* \w said|strong="G3004"\w*, “\w Behold|strong="G2400"\w*, \w I|strong="G2443"\w* \w have|strong="G4160"\w* \w come|strong="G2240"\w* \w to|strong="G2443"\w* \w do|strong="G4160"\w* \w your|strong="G3708"\w* \w will|strong="G2307"\w*.” \w He|strong="G3588"\w* takes away \w the|strong="G3588"\w* \w first|strong="G4413"\w*, \w that|strong="G2443"\w* \w he|strong="G3588"\w* \w may|strong="G2443"\w* \w establish|strong="G2476"\w* \w the|strong="G3588"\w* \w second|strong="G1208"\w*, +\v 10 \w by|strong="G1223"\w* \w which|strong="G3739"\w* \w will|strong="G2307"\w* \w we|strong="G3739"\w* \w have|strong="G1510"\w* \w been|strong="G1510"\w* sanctified \w through|strong="G1223"\w* \w the|strong="G1722"\w* \w offering|strong="G4376"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* \w body|strong="G4983"\w* \w of|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w once|strong="G2178"\w* \w for|strong="G1223"\w* \w all|strong="G1722"\w*. +\p +\v 11 \w Every|strong="G3956"\w* \w priest|strong="G2409"\w* \w indeed|strong="G2532"\w* \w stands|strong="G2476"\w* \w day|strong="G2250"\w* \w by|strong="G2596"\w* \w day|strong="G2250"\w* \w serving|strong="G3008"\w* \w and|strong="G2532"\w* \w offering|strong="G4374"\w* \w often|strong="G4178"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w* \w sacrifices|strong="G2378"\w*, \w which|strong="G3588"\w* \w can|strong="G1410"\w* \w never|strong="G3763"\w* \w take|strong="G1410"\w* \w away|strong="G4014"\w* sins, +\v 12 \w but|strong="G1161"\w* \w he|strong="G1161"\w*, \w when|strong="G1161"\w* \w he|strong="G1161"\w* \w had|strong="G2316"\w* \w offered|strong="G4374"\w* \w one|strong="G1520"\w* \w sacrifice|strong="G2378"\w* \w for|strong="G1519"\w* sins \w forever|strong="G1519"\w*, \w sat|strong="G2523"\w* \w down|strong="G2523"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, +\v 13 \w from|strong="G3588"\w* \w that|strong="G3588"\w* time \w waiting|strong="G1551"\w* \w until|strong="G2193"\w* \w his|strong="G5087"\w* \w enemies|strong="G2190"\w* \w are|strong="G3588"\w* \w made|strong="G5087"\w* \w the|strong="G3588"\w* \w footstool|strong="G5286"\w* \w of|strong="G3588"\w* \w his|strong="G5087"\w* \w feet|strong="G4228"\w*. +\v 14 \w For|strong="G1063"\w* \w by|strong="G1519"\w* \w one|strong="G1520"\w* \w offering|strong="G4376"\w* \w he|strong="G3588"\w* \w has|strong="G1519"\w* \w perfected|strong="G5048"\w* \w forever|strong="G1519"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* being sanctified. +\v 15 \w The|strong="G2532"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w also|strong="G2532"\w* \w testifies|strong="G3140"\w* \w to|strong="G2532"\w* \w us|strong="G3004"\w*, \w for|strong="G1063"\w* \w after|strong="G3326"\w* \w saying|strong="G3004"\w*, +\q1 +\v 16 “\w This|strong="G3778"\w* \w is|strong="G3588"\w* \w the|strong="G2532"\w* \w covenant|strong="G1242"\w* \w that|strong="G3739"\w* \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w make|strong="G1303"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w* +\q2 \w after|strong="G3326"\w* \w those|strong="G3588"\w* \w days|strong="G2250"\w*,” \w says|strong="G3004"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, +\q1 “\w I|strong="G1473"\w* \w will|strong="G2532"\w* \w put|strong="G1325"\w* \w my|strong="G1325"\w* \w laws|strong="G3551"\w* \w on|strong="G1909"\w* \w their|strong="G1438"\w* \w heart|strong="G2588"\w*, +\q2 \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w also|strong="G2532"\w* \w write|strong="G1924"\w* \w them|strong="G3588"\w* \w on|strong="G1909"\w* \w their|strong="G1438"\w* \w mind|strong="G1271"\w*;”\x + \xo 10:16 \xt Jeremiah 31:33\x* +\p \w then|strong="G2532"\w* \w he|strong="G2532"\w* \w says|strong="G3004"\w*, +\q1 +\v 17 “\w I|strong="G2532"\w* \w will|strong="G2532"\w* \w remember|strong="G3403"\w* \w their|strong="G2532"\w* sins \w and|strong="G2532"\w* \w their|strong="G2532"\w* iniquities \w no|strong="G3756"\w* \w more|strong="G2089"\w*.”\x + \xo 10:17 \xt Jeremiah 31:34\x* +\p +\v 18 \w Now|strong="G1161"\w* \w where|strong="G3699"\w* remission \w of|strong="G4012"\w* \w these|strong="G3778"\w* \w is|strong="G3778"\w*, \w there|strong="G1161"\w* \w is|strong="G3778"\w* \w no|strong="G3765"\w* \w more|strong="G3765"\w* \w offering|strong="G4376"\w* \w for|strong="G4012"\w* sin. +\p +\v 19 \w Having|strong="G2192"\w* \w therefore|strong="G3767"\w*, brothers, \w boldness|strong="G3954"\w* \w to|strong="G1519"\w* \w enter|strong="G1529"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* holy \w place|strong="G1722"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* blood \w of|strong="G1722"\w* \w Jesus|strong="G2424"\w*, +\v 20 \w by|strong="G1223"\w* \w the|strong="G2532"\w* \w way|strong="G3598"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w dedicated|strong="G1457"\w* \w for|strong="G1223"\w* \w us|strong="G2249"\w*, \w a|strong="G2532"\w* \w new|strong="G4372"\w* \w and|strong="G2532"\w* \w living|strong="G2198"\w* \w way|strong="G3598"\w*, \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w veil|strong="G2665"\w*, \w that|strong="G3739"\w* \w is|strong="G1510"\w* \w to|strong="G2532"\w* \w say|strong="G1223"\w*, \w his|strong="G1223"\w* \w flesh|strong="G4561"\w*, +\v 21 \w and|strong="G2532"\w* \w having|strong="G2532"\w* \w a|strong="G2532"\w* \w great|strong="G3173"\w* \w priest|strong="G2409"\w* \w over|strong="G1909"\w* \w God|strong="G2316"\w*’s \w house|strong="G3624"\w*, +\v 22 \w let|strong="G2532"\w*’s \w draw|strong="G4334"\w* \w near|strong="G4334"\w* \w with|strong="G3326"\w* \w a|strong="G2532"\w* \w true|strong="G3588"\w* \w heart|strong="G2588"\w* \w in|strong="G1722"\w* fullness \w of|strong="G2532"\w* \w faith|strong="G4102"\w*, \w having|strong="G2532"\w* \w our|strong="G2532"\w* \w hearts|strong="G2588"\w* \w sprinkled|strong="G4472"\w* \w from|strong="G2532"\w* \w an|strong="G2532"\w* \w evil|strong="G4190"\w* \w conscience|strong="G4893"\w* \w and|strong="G2532"\w* \w having|strong="G2532"\w* \w our|strong="G2532"\w* \w body|strong="G4983"\w* \w washed|strong="G3068"\w* \w with|strong="G3326"\w* \w pure|strong="G2513"\w* water, +\v 23 \w let|strong="G1063"\w*’s \w hold|strong="G2722"\w* \w fast|strong="G2722"\w* \w the|strong="G2532"\w* \w confession|strong="G3671"\w* \w of|strong="G2532"\w* \w our|strong="G2532"\w* \w hope|strong="G1680"\w* \w without|strong="G2532"\w* wavering; \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w promised|strong="G1861"\w* \w is|strong="G3588"\w* \w faithful|strong="G4103"\w*. +\p +\v 24 \w Let|strong="G2532"\w*’s \w consider|strong="G2657"\w* \w how|strong="G2657"\w* \w to|strong="G1519"\w* \w provoke|strong="G3948"\w* \w one|strong="G2657"\w* another \w to|strong="G1519"\w* love \w and|strong="G2532"\w* \w good|strong="G2570"\w* \w works|strong="G2041"\w*, +\v 25 \w not|strong="G3361"\w* \w forsaking|strong="G1459"\w* \w our|strong="G2532"\w* \w own|strong="G1438"\w* \w assembling|strong="G1997"\w* \w together|strong="G1997"\w*, \w as|strong="G2531"\w* \w the|strong="G2532"\w* \w custom|strong="G1485"\w* \w of|strong="G2250"\w* \w some|strong="G5100"\w* \w is|strong="G3588"\w*, \w but|strong="G2532"\w* \w exhorting|strong="G3870"\w* \w one|strong="G5100"\w* \w another|strong="G1438"\w*, \w and|strong="G2532"\w* \w so|strong="G2532"\w* \w much|strong="G5118"\w* \w the|strong="G2532"\w* \w more|strong="G3123"\w* \w as|strong="G2531"\w* \w you|strong="G1438"\w* see \w the|strong="G2532"\w* \w Day|strong="G2250"\w* \w approaching|strong="G1448"\w*. +\p +\v 26 \w For|strong="G1063"\w* if \w we|strong="G2249"\w* sin \w willfully|strong="G1596"\w* \w after|strong="G3326"\w* \w we|strong="G2249"\w* \w have|strong="G1473"\w* \w received|strong="G2983"\w* \w the|strong="G3588"\w* \w knowledge|strong="G1922"\w* \w of|strong="G4012"\w* \w the|strong="G3588"\w* truth, \w there|strong="G1063"\w* remains \w no|strong="G3765"\w* \w more|strong="G3765"\w* \w a|strong="G2983"\w* \w sacrifice|strong="G2378"\w* \w for|strong="G1063"\w* sins, +\v 27 \w but|strong="G1161"\w* \w a|strong="G2532"\w* \w certain|strong="G5100"\w* \w fearful|strong="G5398"\w* \w expectation|strong="G1561"\w* \w of|strong="G2532"\w* \w judgment|strong="G2920"\w*, \w and|strong="G2532"\w* \w a|strong="G2532"\w* fierceness \w of|strong="G2532"\w* \w fire|strong="G4442"\w* \w which|strong="G3588"\w* \w will|strong="G3195"\w* \w devour|strong="G2068"\w* \w the|strong="G2532"\w* \w adversaries|strong="G5227"\w*. +\v 28 \w A|strong="G1909"\w* \w man|strong="G5100"\w* \w who|strong="G5100"\w* disregards \w Moses|strong="G3475"\w*’ \w law|strong="G3551"\w* dies \w without|strong="G5565"\w* \w compassion|strong="G3628"\w* \w on|strong="G1909"\w* \w the|strong="G1909"\w* word \w of|strong="G3551"\w* \w two|strong="G1417"\w* \w or|strong="G2228"\w* \w three|strong="G5140"\w* \w witnesses|strong="G3144"\w*. +\v 29 \w How|strong="G4214"\w* \w much|strong="G4214"\w* \w worse|strong="G5501"\w* \w punishment|strong="G5098"\w* \w do|strong="G2532"\w* \w you|strong="G3739"\w* \w think|strong="G1380"\w* \w he|strong="G2532"\w* \w will|strong="G2316"\w* \w be|strong="G2532"\w* \w judged|strong="G2233"\w* worthy \w of|strong="G5207"\w* \w who|strong="G3739"\w* \w has|strong="G2316"\w* trodden \w under|strong="G1722"\w* \w foot|strong="G2662"\w* \w the|strong="G1722"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w has|strong="G2316"\w* \w counted|strong="G2233"\w* \w the|strong="G1722"\w* blood \w of|strong="G5207"\w* \w the|strong="G1722"\w* \w covenant|strong="G1242"\w* \w with|strong="G1722"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* sanctified \w an|strong="G2532"\w* \w unholy|strong="G2839"\w* \w thing|strong="G3739"\w*, \w and|strong="G2532"\w* \w has|strong="G2316"\w* \w insulted|strong="G1796"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w of|strong="G5207"\w* \w grace|strong="G5485"\w*? +\v 30 \w For|strong="G1063"\w* \w we|strong="G1063"\w* \w know|strong="G1492"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w said|strong="G3004"\w*, “\w Vengeance|strong="G1557"\w* belongs \w to|strong="G2532"\w* \w me|strong="G1473"\w*. \w I|strong="G1473"\w* \w will|strong="G2532"\w* repay,” \w says|strong="G3004"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*.\x + \xo 10:30 \xt Deuteronomy 32:35\x* \w Again|strong="G3825"\w*, “\w The|strong="G2532"\w* \w Lord|strong="G2962"\w* \w will|strong="G2532"\w* \w judge|strong="G2919"\w* \w his|strong="G2532"\w* \w people|strong="G2992"\w*.”\x + \xo 10:30 \xt Deuteronomy 32:36; Psalms 135:14\x* +\v 31 \w It|strong="G1519"\w* \w is|strong="G3588"\w* \w a|strong="G1519"\w* \w fearful|strong="G5398"\w* \w thing|strong="G5398"\w* \w to|strong="G1519"\w* \w fall|strong="G1706"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w hands|strong="G5495"\w* \w of|strong="G2316"\w* \w the|strong="G1519"\w* \w living|strong="G2198"\w* \w God|strong="G2316"\w*. +\p +\v 32 \w But|strong="G1161"\w* remember \w the|strong="G1722"\w* \w former|strong="G4387"\w* \w days|strong="G2250"\w*, \w in|strong="G1722"\w* \w which|strong="G3739"\w*, \w after|strong="G1161"\w* \w you|strong="G3739"\w* \w were|strong="G3588"\w* \w enlightened|strong="G5461"\w*, \w you|strong="G3739"\w* \w endured|strong="G5278"\w* \w a|strong="G1722"\w* \w great|strong="G4183"\w* struggle \w with|strong="G1722"\w* \w sufferings|strong="G3804"\w*: +\v 33 \w partly|strong="G3778"\w*, \w being|strong="G1096"\w* exposed \w to|strong="G2532"\w* \w both|strong="G2532"\w* \w reproaches|strong="G3680"\w* \w and|strong="G2532"\w* oppressions, \w and|strong="G2532"\w* \w partly|strong="G3778"\w*, \w becoming|strong="G1096"\w* \w partakers|strong="G2844"\w* \w with|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* treated \w so|strong="G3779"\w*. +\v 34 \w For|strong="G1063"\w* \w you|strong="G5210"\w* \w both|strong="G2532"\w* \w had|strong="G2192"\w* \w compassion|strong="G4834"\w* \w on|strong="G3326"\w* \w me|strong="G2192"\w* \w in|strong="G2532"\w* \w my|strong="G3326"\w* chains \w and|strong="G2532"\w* \w joyfully|strong="G5479"\w* \w accepted|strong="G4327"\w* \w the|strong="G2532"\w* plundering \w of|strong="G2532"\w* \w your|strong="G2192"\w* \w possessions|strong="G5225"\w*, \w knowing|strong="G1097"\w* \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w have|strong="G2192"\w* \w for|strong="G1063"\w* \w yourselves|strong="G1438"\w* \w a|strong="G2192"\w* \w better|strong="G2909"\w* \w possession|strong="G5223"\w* \w and|strong="G2532"\w* \w an|strong="G2192"\w* \w enduring|strong="G3306"\w* \w one|strong="G1438"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* heavens. +\v 35 \w Therefore|strong="G3767"\w* don’\w t|strong="G3588"\w* throw away \w your|strong="G2192"\w* \w boldness|strong="G3954"\w*, \w which|strong="G3588"\w* \w has|strong="G2192"\w* \w a|strong="G2192"\w* \w great|strong="G3173"\w* \w reward|strong="G3405"\w*. +\v 36 \w For|strong="G1063"\w* \w you|strong="G4160"\w* \w need|strong="G5532"\w* \w endurance|strong="G5281"\w* \w so|strong="G2443"\w* \w that|strong="G2443"\w*, \w having|strong="G2192"\w* \w done|strong="G4160"\w* \w the|strong="G3588"\w* \w will|strong="G2307"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w you|strong="G4160"\w* \w may|strong="G2443"\w* \w receive|strong="G2865"\w* \w the|strong="G3588"\w* \w promise|strong="G1860"\w*. +\q1 +\v 37 “\w In|strong="G2532"\w* \w a|strong="G2532"\w* \w very|strong="G2532"\w* \w little|strong="G3398"\w* \w while|strong="G3398"\w*, +\q2 \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w comes|strong="G2064"\w* \w will|strong="G2532"\w* \w come|strong="G2064"\w* \w and|strong="G2532"\w* \w will|strong="G2532"\w* \w not|strong="G3756"\w* wait. +\q1 +\v 38 \w But|strong="G1161"\w* \w the|strong="G1722"\w* \w righteous|strong="G1342"\w* \w one|strong="G3588"\w* \w will|strong="G2532"\w* \w live|strong="G2198"\w* \w by|strong="G1722"\w* \w faith|strong="G4102"\w*. +\q2 \w If|strong="G1437"\w* \w he|strong="G2532"\w* \w shrinks|strong="G5288"\w* \w back|strong="G5288"\w*, \w my|strong="G1722"\w* \w soul|strong="G5590"\w* \w has|strong="G4102"\w* \w no|strong="G3756"\w* \w pleasure|strong="G2106"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*.”\x + \xo 10:38 \xt Habakkuk 2:3-4\x* +\p +\v 39 \w But|strong="G1161"\w* \w we|strong="G2249"\w* \w are|strong="G1510"\w* \w not|strong="G3756"\w* \w of|strong="G4102"\w* \w those|strong="G1161"\w* \w who|strong="G3756"\w* \w shrink|strong="G5289"\w* \w back|strong="G1519"\w* \w to|strong="G1519"\w* destruction, \w but|strong="G1161"\w* \w of|strong="G4102"\w* \w those|strong="G1161"\w* \w who|strong="G3756"\w* \w have|strong="G1473"\w* \w faith|strong="G4102"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w saving|strong="G4047"\w* \w of|strong="G4102"\w* \w the|strong="G1519"\w* \w soul|strong="G5590"\w*. +\c 11 +\p +\v 1 \w Now|strong="G1161"\w* \w faith|strong="G4102"\w* \w is|strong="G1510"\w* \w assurance|strong="G5287"\w* \w of|strong="G4102"\w* \w things|strong="G4229"\w* \w hoped|strong="G1679"\w* \w for|strong="G1161"\w*, \w proof|strong="G4102"\w* \w of|strong="G4102"\w* \w things|strong="G4229"\w* \w not|strong="G3756"\w* seen. +\v 2 \w For|strong="G1063"\w* \w by|strong="G1722"\w* \w this|strong="G3778"\w*, \w the|strong="G1722"\w* \w elders|strong="G4245"\w* \w obtained|strong="G3140"\w* \w approval|strong="G3140"\w*. +\v 3 \w By|strong="G1537"\w* \w faith|strong="G4102"\w* \w we|strong="G4102"\w* \w understand|strong="G3539"\w* \w that|strong="G3588"\w* \w the|strong="G1519"\w* universe \w has|strong="G2316"\w* \w been|strong="G1096"\w* \w framed|strong="G2675"\w* \w by|strong="G1537"\w* \w the|strong="G1519"\w* \w word|strong="G4487"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*, \w so|strong="G1519"\w* \w that|strong="G3588"\w* \w what|strong="G3588"\w* \w is|strong="G3588"\w* \w seen|strong="G5316"\w* \w has|strong="G2316"\w* \w not|strong="G3361"\w* \w been|strong="G1096"\w* \w made|strong="G1096"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w things|strong="G3588"\w* \w which|strong="G3588"\w* \w are|strong="G3588"\w* \w visible|strong="G5316"\w*. +\p +\v 4 \w By|strong="G1223"\w* \w faith|strong="G4102"\w* Abel \w offered|strong="G4374"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w* \w a|strong="G2532"\w* \w more|strong="G2089"\w* \w excellent|strong="G4119"\w* \w sacrifice|strong="G2378"\w* \w than|strong="G3844"\w* \w Cain|strong="G2535"\w*, \w through|strong="G1223"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w testimony|strong="G3140"\w* \w given|strong="G1435"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w that|strong="G3739"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w righteous|strong="G1342"\w*, \w God|strong="G2316"\w* \w testifying|strong="G3140"\w* \w with|strong="G3844"\w* \w respect|strong="G3739"\w* \w to|strong="G2532"\w* \w his|strong="G1223"\w* \w gifts|strong="G1435"\w*; \w and|strong="G2532"\w* \w through|strong="G1223"\w* \w it|strong="G2532"\w* \w he|strong="G2532"\w*, \w being|strong="G1510"\w* dead, \w still|strong="G2089"\w* \w speaks|strong="G2980"\w*. +\p +\v 5 \w By|strong="G2532"\w* \w faith|strong="G4102"\w* \w Enoch|strong="G1802"\w* \w was|strong="G3588"\w* \w taken|strong="G3331"\w* away, \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* wouldn’\w t|strong="G3588"\w* \w see|strong="G3708"\w* \w death|strong="G2288"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w not|strong="G3756"\w* \w found|strong="G2147"\w*, \w because|strong="G1063"\w* \w God|strong="G2316"\w* \w translated|strong="G3346"\w* \w him|strong="G3588"\w*. \w For|strong="G1063"\w* \w he|strong="G2532"\w* \w has|strong="G2316"\w* \w had|strong="G2532"\w* \w testimony|strong="G3140"\w* \w given|strong="G3361"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w that|strong="G3588"\w* \w before|strong="G4253"\w* \w his|strong="G3708"\w* \w translation|strong="G3331"\w* \w he|strong="G2532"\w* \w had|strong="G2532"\w* \w been|strong="G2532"\w* \w well|strong="G2532"\w* \w pleasing|strong="G2100"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w*. +\v 6 \w Without|strong="G5565"\w* \w faith|strong="G4102"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* impossible \w to|strong="G2532"\w* \w be|strong="G1096"\w* \w well|strong="G2532"\w* \w pleasing|strong="G2100"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w comes|strong="G1096"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w* \w must|strong="G1163"\w* \w believe|strong="G4100"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* exists, \w and|strong="G2532"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w a|strong="G1096"\w* \w rewarder|strong="G3406"\w* \w of|strong="G2316"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w seek|strong="G1567"\w* \w him|strong="G3588"\w*. +\p +\v 7 \w By|strong="G1223"\w* \w faith|strong="G4102"\w* \w Noah|strong="G3575"\w*, \w being|strong="G1096"\w* \w warned|strong="G5537"\w* \w about|strong="G4012"\w* \w things|strong="G3588"\w* \w not|strong="G3739"\w* \w yet|strong="G2532"\w* seen, moved \w with|strong="G1223"\w* \w godly|strong="G2596"\w* \w fear|strong="G2125"\w*,\f + \fr 11:7 \ft or, reverence\f* \w prepared|strong="G2680"\w* \w a|strong="G1096"\w* ship \w for|strong="G1519"\w* \w the|strong="G2532"\w* \w saving|strong="G4991"\w* \w of|strong="G4012"\w* \w his|strong="G1223"\w* \w house|strong="G3624"\w*, \w through|strong="G1223"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w condemned|strong="G2632"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w* \w and|strong="G2532"\w* \w became|strong="G1096"\w* \w heir|strong="G2818"\w* \w of|strong="G4012"\w* \w the|strong="G2532"\w* \w righteousness|strong="G1343"\w* \w which|strong="G3739"\w* \w is|strong="G3588"\w* \w according|strong="G2596"\w* \w to|strong="G1519"\w* \w faith|strong="G4102"\w*. +\p +\v 8 \w By|strong="G2532"\w* \w faith|strong="G4102"\w* Abraham, \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w was|strong="G3739"\w* \w called|strong="G2564"\w*, \w obeyed|strong="G5219"\w* \w to|strong="G1519"\w* \w go|strong="G1831"\w* \w out|strong="G1831"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w place|strong="G5117"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w was|strong="G3739"\w* \w to|strong="G1519"\w* \w receive|strong="G2983"\w* \w for|strong="G1519"\w* \w an|strong="G2532"\w* \w inheritance|strong="G2817"\w*. \w He|strong="G2532"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w*, \w not|strong="G3361"\w* \w knowing|strong="G1987"\w* \w where|strong="G4226"\w* \w he|strong="G2532"\w* \w went|strong="G1831"\w*. +\v 9 \w By|strong="G1722"\w* \w faith|strong="G4102"\w* \w he|strong="G2532"\w* \w lived|strong="G2730"\w* \w as|strong="G5613"\w* \w an|strong="G2532"\w* \w alien|strong="G3939"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w land|strong="G1093"\w* \w of|strong="G2532"\w* \w promise|strong="G1860"\w*, \w as|strong="G5613"\w* \w in|strong="G1722"\w* \w a|strong="G5613"\w* \w land|strong="G1093"\w* \w not|strong="G2532"\w* \w his|strong="G1519"\w* own, \w dwelling|strong="G2730"\w* \w in|strong="G1722"\w* \w tents|strong="G4633"\w* \w with|strong="G3326"\w* \w Isaac|strong="G2464"\w* \w and|strong="G2532"\w* \w Jacob|strong="G2384"\w*, \w the|strong="G1722"\w* \w heirs|strong="G4789"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w same|strong="G2532"\w* \w promise|strong="G1860"\w*. +\v 10 \w For|strong="G1063"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w looking|strong="G2532"\w* \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w which|strong="G3739"\w* \w has|strong="G2192"\w* \w foundations|strong="G2310"\w*, \w whose|strong="G3739"\w* \w builder|strong="G1217"\w* \w and|strong="G2532"\w* \w maker|strong="G1217"\w* \w is|strong="G3588"\w* \w God|strong="G2316"\w*. +\p +\v 11 \w By|strong="G3844"\w* \w faith|strong="G4102"\w* \w even|strong="G2532"\w* \w Sarah|strong="G4564"\w* herself \w received|strong="G2983"\w* \w power|strong="G1411"\w* \w to|strong="G1519"\w* \w conceive|strong="G2602"\w*, \w and|strong="G2532"\w* \w she|strong="G2532"\w* bore \w a|strong="G2532"\w* child \w when|strong="G2532"\w* \w she|strong="G2532"\w* \w was|strong="G3588"\w* \w past|strong="G3844"\w* \w age|strong="G2244"\w*, \w since|strong="G1893"\w* \w she|strong="G2532"\w* \w counted|strong="G2233"\w* \w him|strong="G3588"\w* \w faithful|strong="G4103"\w* \w who|strong="G3588"\w* \w had|strong="G2532"\w* \w promised|strong="G1861"\w*. +\v 12 \w Therefore|strong="G1352"\w* \w as|strong="G5613"\w* many \w as|strong="G5613"\w* \w the|strong="G2532"\w* stars \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w* \w in|strong="G2532"\w* \w multitude|strong="G4128"\w*, \w and|strong="G2532"\w* \w as|strong="G5613"\w* innumerable \w as|strong="G5613"\w* \w the|strong="G2532"\w* sand \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w by|strong="G3844"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w* \w shore|strong="G5491"\w*, \w were|strong="G3588"\w* \w fathered|strong="G1080"\w* \w by|strong="G3844"\w* \w one|strong="G1520"\w* \w man|strong="G3778"\w*, \w and|strong="G2532"\w* \w him|strong="G3588"\w* \w as|strong="G5613"\w* \w good|strong="G3588"\w* \w as|strong="G5613"\w* \w dead|strong="G3499"\w*. +\p +\v 13 \w These|strong="G3778"\w* \w all|strong="G3956"\w* \w died|strong="G3588"\w* \w in|strong="G1909"\w* \w faith|strong="G4102"\w*, \w not|strong="G3361"\w* \w having|strong="G2532"\w* \w received|strong="G2983"\w* \w the|strong="G2532"\w* \w promises|strong="G1860"\w*, \w but|strong="G2532"\w* \w having|strong="G2532"\w* \w seen|strong="G3708"\w*\f + \fr 11:13 \ft TR adds “and being convinced of”\f* \w them|strong="G3588"\w* \w and|strong="G2532"\w* embraced \w them|strong="G3588"\w* \w from|strong="G2532"\w* \w afar|strong="G3588"\w*, \w and|strong="G2532"\w* \w having|strong="G2532"\w* \w confessed|strong="G3670"\w* \w that|strong="G3754"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w strangers|strong="G3581"\w* \w and|strong="G2532"\w* \w pilgrims|strong="G3927"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*. +\v 14 \w For|strong="G1063"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w say|strong="G3004"\w* \w such|strong="G5108"\w* \w things|strong="G3588"\w* \w make|strong="G1718"\w* \w it|strong="G3754"\w* \w clear|strong="G1718"\w* \w that|strong="G3754"\w* \w they|strong="G3588"\w* \w are|strong="G3588"\w* \w seeking|strong="G1934"\w* \w a|strong="G5108"\w* \w country|strong="G3968"\w* \w of|strong="G3588"\w* \w their|strong="G3588"\w* \w own|strong="G3968"\w*. +\v 15 \w If|strong="G1487"\w* \w indeed|strong="G2532"\w* \w they|strong="G2532"\w* \w had|strong="G2192"\w* \w been|strong="G2192"\w* \w thinking|strong="G3421"\w* \w of|strong="G2532"\w* \w that|strong="G3739"\w* country \w from|strong="G2532"\w* \w which|strong="G3739"\w* \w they|strong="G2532"\w* \w went|strong="G2532"\w* \w out|strong="G2532"\w*, \w they|strong="G2532"\w* \w would|strong="G2532"\w* \w have|strong="G2192"\w* \w had|strong="G2192"\w* enough \w time|strong="G2540"\w* \w to|strong="G2532"\w* return. +\v 16 \w But|strong="G1161"\w* \w now|strong="G1161"\w* \w they|strong="G1161"\w* \w desire|strong="G3713"\w* \w a|strong="G1510"\w* \w better|strong="G2909"\w* country, \w that|strong="G3588"\w* \w is|strong="G1510"\w*, \w a|strong="G1510"\w* \w heavenly|strong="G2032"\w* \w one|strong="G1438"\w*. \w Therefore|strong="G1352"\w* \w God|strong="G2316"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w ashamed|strong="G1870"\w* \w of|strong="G2316"\w* \w them|strong="G3588"\w*, \w to|strong="G3756"\w* \w be|strong="G1510"\w* \w called|strong="G1941"\w* \w their|strong="G1438"\w* \w God|strong="G2316"\w*, \w for|strong="G1063"\w* \w he|strong="G1161"\w* \w has|strong="G2316"\w* \w prepared|strong="G2090"\w* \w a|strong="G1510"\w* \w city|strong="G4172"\w* \w for|strong="G1063"\w* \w them|strong="G3588"\w*. +\p +\v 17 \w By|strong="G2532"\w* \w faith|strong="G4102"\w*, Abraham, \w being|strong="G2532"\w* \w tested|strong="G3985"\w*, \w offered|strong="G4374"\w* \w up|strong="G4374"\w* \w Isaac|strong="G2464"\w*. Yes, \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w had|strong="G2532"\w* gladly received \w the|strong="G2532"\w* \w promises|strong="G1860"\w* \w was|strong="G3588"\w* \w offering|strong="G4374"\w* \w up|strong="G4374"\w* \w his|strong="G2532"\w* \w only|strong="G3439"\w* born\f + \fr 11:17 \ft The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”.\f* son, +\v 18 \w to|strong="G4314"\w* \w whom|strong="G3739"\w* \w it|strong="G3754"\w* \w was|strong="G3739"\w* \w said|strong="G2980"\w*, “\w Your|strong="G1722"\w* offspring \w will|strong="G3739"\w* \w be|strong="G4690"\w* accounted \w as|strong="G1722"\w* \w from|strong="G2980"\w* \w Isaac|strong="G2464"\w*,” \x + \xo 11:18 \xt Genesis 21:12\x* +\v 19 concluding \w that|strong="G3754"\w* \w God|strong="G2316"\w* \w is|strong="G3588"\w* \w able|strong="G1415"\w* \w to|strong="G2532"\w* \w raise|strong="G1453"\w* \w up|strong="G1453"\w* \w even|strong="G2532"\w* \w from|strong="G1537"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w*. Figuratively speaking, \w he|strong="G2532"\w* \w also|strong="G2532"\w* \w did|strong="G2532"\w* \w receive|strong="G2865"\w* \w him|strong="G3588"\w* \w back|strong="G2865"\w* \w from|strong="G1537"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w*. +\p +\v 20 \w By|strong="G2532"\w* \w faith|strong="G4102"\w* \w Isaac|strong="G2464"\w* \w blessed|strong="G2127"\w* \w Jacob|strong="G2384"\w* \w and|strong="G2532"\w* \w Esau|strong="G2269"\w*, \w even|strong="G2532"\w* \w concerning|strong="G4012"\w* \w things|strong="G3588"\w* \w to|strong="G2532"\w* \w come|strong="G3195"\w*. +\p +\v 21 \w By|strong="G1909"\w* \w faith|strong="G4102"\w* \w Jacob|strong="G2384"\w*, \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* dying, \w blessed|strong="G2127"\w* \w each|strong="G1538"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w sons|strong="G5207"\w* \w of|strong="G5207"\w* \w Joseph|strong="G2501"\w*, \w and|strong="G2532"\w* \w worshiped|strong="G4352"\w*, leaning \w on|strong="G1909"\w* \w the|strong="G2532"\w* top \w of|strong="G5207"\w* \w his|strong="G1909"\w* \w staff|strong="G4464"\w*. +\p +\v 22 \w By|strong="G2532"\w* \w faith|strong="G4102"\w* \w Joseph|strong="G2501"\w*, \w when|strong="G2532"\w* \w his|strong="G4012"\w* end \w was|strong="G3588"\w* near, \w made|strong="G4102"\w* \w mention|strong="G3421"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w departure|strong="G1841"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w children|strong="G5207"\w* \w of|strong="G5207"\w* \w Israel|strong="G2474"\w*, \w and|strong="G2532"\w* \w gave|strong="G2532"\w* instructions \w concerning|strong="G4012"\w* \w his|strong="G4012"\w* \w bones|strong="G3747"\w*. +\p +\v 23 \w By|strong="G5259"\w* \w faith|strong="G4102"\w* \w Moses|strong="G3475"\w*, \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w born|strong="G1080"\w*, \w was|strong="G3588"\w* \w hidden|strong="G2928"\w* \w for|strong="G1360"\w* \w three|strong="G5150"\w* \w months|strong="G5150"\w* \w by|strong="G5259"\w* \w his|strong="G3708"\w* \w parents|strong="G3962"\w*, \w because|strong="G1360"\w* \w they|strong="G2532"\w* \w saw|strong="G3708"\w* \w that|strong="G3588"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w a|strong="G2532"\w* beautiful \w child|strong="G3813"\w*; \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w not|strong="G3756"\w* \w afraid|strong="G5399"\w* \w of|strong="G5259"\w* \w the|strong="G2532"\w* \w king|strong="G3588"\w*’s \w commandment|strong="G1297"\w*. +\p +\v 24 \w By|strong="G3004"\w* \w faith|strong="G4102"\w* \w Moses|strong="G3475"\w*, \w when|strong="G1096"\w* \w he|strong="G3004"\w* \w had|strong="G1096"\w* \w grown|strong="G3173"\w* up, refused \w to|strong="G3004"\w* \w be|strong="G1096"\w* \w called|strong="G3004"\w* \w the|strong="G3004"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w Pharaoh|strong="G5328"\w*’s \w daughter|strong="G2364"\w*, +\v 25 choosing \w rather|strong="G3123"\w* \w to|strong="G2228"\w* share \w ill|strong="G2192"\w* treatment \w with|strong="G2316"\w* \w God|strong="G2316"\w*’\w s|strong="G2192"\w* \w people|strong="G2992"\w* \w than|strong="G2228"\w* \w to|strong="G2228"\w* \w enjoy|strong="G2192"\w* \w the|strong="G3588"\w* pleasures \w of|strong="G2316"\w* sin \w for|strong="G2316"\w* \w a|strong="G2192"\w* time, +\v 26 \w considering|strong="G2233"\w* \w the|strong="G1519"\w* \w reproach|strong="G3680"\w* \w of|strong="G3588"\w* \w Christ|strong="G5547"\w* \w greater|strong="G3173"\w* \w riches|strong="G4149"\w* \w than|strong="G3173"\w* \w the|strong="G1519"\w* \w treasures|strong="G2344"\w* \w of|strong="G3588"\w* Egypt; \w for|strong="G1063"\w* \w he|strong="G3588"\w* looked \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w reward|strong="G3405"\w*. +\v 27 \w By|strong="G1063"\w* \w faith|strong="G4102"\w* \w he|strong="G3588"\w* \w left|strong="G2641"\w* Egypt, \w not|strong="G3361"\w* \w fearing|strong="G5399"\w* \w the|strong="G3588"\w* \w wrath|strong="G2372"\w* \w of|strong="G4102"\w* \w the|strong="G3588"\w* \w king|strong="G3588"\w*; \w for|strong="G1063"\w* \w he|strong="G3588"\w* \w endured|strong="G2594"\w*, \w as|strong="G5613"\w* \w seeing|strong="G3708"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w is|strong="G3588"\w* invisible. +\v 28 \w By|strong="G2532"\w* \w faith|strong="G4102"\w* \w he|strong="G2532"\w* \w kept|strong="G4160"\w* \w the|strong="G2532"\w* \w Passover|strong="G3957"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w sprinkling|strong="G4378"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* blood, \w that|strong="G2443"\w* \w the|strong="G2532"\w* destroyer \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w firstborn|strong="G4416"\w* \w should|strong="G3588"\w* \w not|strong="G3361"\w* \w touch|strong="G2345"\w* \w them|strong="G3588"\w*. +\p +\v 29 \w By|strong="G1223"\w* \w faith|strong="G4102"\w* \w they|strong="G3588"\w* \w passed|strong="G3588"\w* \w through|strong="G1223"\w* \w the|strong="G1223"\w* \w Red|strong="G2063"\w* \w Sea|strong="G2281"\w* \w as|strong="G5613"\w* \w on|strong="G4102"\w* \w dry|strong="G3584"\w* \w land|strong="G1093"\w*. \w When|strong="G5613"\w* \w the|strong="G1223"\w* Egyptians \w tried|strong="G3984"\w* \w to|strong="G1093"\w* \w do|strong="G2983"\w* \w so|strong="G1223"\w*, \w they|strong="G3588"\w* \w were|strong="G3588"\w* \w swallowed|strong="G2666"\w* \w up|strong="G2666"\w*. +\p +\v 30 \w By|strong="G1909"\w* \w faith|strong="G4102"\w* \w the|strong="G1909"\w* \w walls|strong="G5038"\w* \w of|strong="G2250"\w* \w Jericho|strong="G2410"\w* \w fell|strong="G4098"\w* \w down|strong="G4098"\w* \w after|strong="G1909"\w* \w they|strong="G3588"\w* \w had|strong="G3588"\w* been \w encircled|strong="G2944"\w* \w for|strong="G1909"\w* \w seven|strong="G2033"\w* \w days|strong="G2250"\w*. +\p +\v 31 \w By|strong="G3588"\w* \w faith|strong="G4102"\w* \w Rahab|strong="G4460"\w* \w the|strong="G3588"\w* \w prostitute|strong="G4204"\w* didn’\w t|strong="G3588"\w* \w perish|strong="G4881"\w* \w with|strong="G3326"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* disobedient, having \w received|strong="G1209"\w* \w the|strong="G3588"\w* \w spies|strong="G2685"\w* \w in|strong="G4102"\w* \w peace|strong="G1515"\w*. +\p +\v 32 \w What|strong="G5101"\w* \w more|strong="G2089"\w* \w shall|strong="G2532"\w* \w I|strong="G1473"\w* \w say|strong="G3004"\w*? \w For|strong="G1063"\w* \w the|strong="G2532"\w* \w time|strong="G5550"\w* \w would|strong="G2532"\w* \w fail|strong="G1952"\w* \w me|strong="G1473"\w* \w if|strong="G2532"\w* \w I|strong="G1473"\w* \w told|strong="G3004"\w* \w of|strong="G4012"\w* \w Gideon|strong="G1066"\w*, Barak, \w Samson|strong="G4546"\w*, \w Jephthah|strong="G2422"\w*, \w David|strong="G1138"\w*, \w Samuel|strong="G4545"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w prophets|strong="G4396"\w*— +\v 33 \w who|strong="G3739"\w* \w through|strong="G1223"\w* \w faith|strong="G4102"\w* \w subdued|strong="G2610"\w* kingdoms, \w worked|strong="G2038"\w* \w out|strong="G1223"\w* \w righteousness|strong="G1343"\w*, \w obtained|strong="G2013"\w* \w promises|strong="G1860"\w*, \w stopped|strong="G5420"\w* \w the|strong="G1223"\w* \w mouths|strong="G4750"\w* \w of|strong="G1223"\w* \w lions|strong="G3023"\w*,\x + \xo 11:33 \xt Daniel 6:22-23\x* +\v 34 \w quenched|strong="G4570"\w* \w the|strong="G1722"\w* \w power|strong="G1411"\w* \w of|strong="G1411"\w* \w fire|strong="G4442"\w*,\x + \xo 11:34 \xt Daniel 3:1-30\x* \w escaped|strong="G5343"\w* \w the|strong="G1722"\w* \w edge|strong="G4750"\w* \w of|strong="G1411"\w* \w the|strong="G1722"\w* \w sword|strong="G3162"\w*,\x + \xo 11:34 \xt 1 Kings 19:1-3; 2 Kings 6:31—7:20\x* \w from|strong="G5343"\w* weakness \w were|strong="G1096"\w* \w made|strong="G1096"\w* \w strong|strong="G2478"\w*, grew \w mighty|strong="G2478"\w* \w in|strong="G1722"\w* \w war|strong="G4171"\w*, \w and|strong="G1411"\w* caused foreign \w armies|strong="G3925"\w* \w to|strong="G1722"\w* \w flee|strong="G5343"\w*. +\v 35 \w Women|strong="G1135"\w* \w received|strong="G2983"\w* \w their|strong="G3588"\w* \w dead|strong="G3498"\w* \w by|strong="G1537"\w* resurrection.\x + \xo 11:35 \xt 1 Kings 17:17-23; 2 Kings 4:32-37\x* \w Others|strong="G3588"\w* \w were|strong="G3588"\w* \w tortured|strong="G5178"\w*, \w not|strong="G3756"\w* \w accepting|strong="G4327"\w* \w their|strong="G3588"\w* deliverance, \w that|strong="G2443"\w* \w they|strong="G1161"\w* might \w obtain|strong="G5177"\w* \w a|strong="G2983"\w* \w better|strong="G2909"\w* resurrection. +\v 36 \w Others|strong="G2087"\w* \w were|strong="G2532"\w* \w tried|strong="G3984"\w* \w by|strong="G2532"\w* \w mocking|strong="G1701"\w* \w and|strong="G2532"\w* \w scourging|strong="G3148"\w*, \w yes|strong="G2089"\w*, \w moreover|strong="G1161"\w* \w by|strong="G2532"\w* \w bonds|strong="G1199"\w* \w and|strong="G2532"\w* \w imprisonment|strong="G1199"\w*. +\v 37 \w They|strong="G1722"\w* were \w stoned|strong="G3034"\w*.\x + \xo 11:37 \xt 2 Chronicles 24:20-21\x* \w They|strong="G1722"\w* were \w sawn|strong="G4249"\w* apart. \w They|strong="G1722"\w* were \w tempted|strong="G3985"\w*. \w They|strong="G1722"\w* were slain \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w sword|strong="G3162"\w*.\x + \xo 11:37 \xt Jeremiah 26:20-23; 1 Kings 19:10\x* \w They|strong="G1722"\w* \w went|strong="G4022"\w* \w around|strong="G4022"\w* \w in|strong="G1722"\w* sheep \w skins|strong="G1192"\w* \w and|strong="G3162"\w* \w in|strong="G1722"\w* goat \w skins|strong="G1192"\w*; \w being|strong="G1722"\w* \w destitute|strong="G5302"\w*, \w afflicted|strong="G2346"\w*, \w ill-treated|strong="G2558"\w*— +\v 38 \w of|strong="G2532"\w* \w whom|strong="G3739"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w* \w was|strong="G1510"\w* \w not|strong="G3756"\w* worthy—\w wandering|strong="G4105"\w* \w in|strong="G1909"\w* \w deserts|strong="G2047"\w*, \w mountains|strong="G3735"\w*, \w caves|strong="G4693"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w holes|strong="G3692"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*. +\p +\v 39 \w These|strong="G3778"\w* \w all|strong="G3956"\w*, \w having|strong="G2532"\w* \w been|strong="G2532"\w* \w commended|strong="G3140"\w* \w for|strong="G1223"\w* \w their|strong="G2532"\w* \w faith|strong="G4102"\w*, didn’\w t|strong="G3588"\w* \w receive|strong="G2865"\w* \w the|strong="G2532"\w* \w promise|strong="G1860"\w*, +\v 40 \w God|strong="G2316"\w* \w having|strong="G5100"\w* \w provided|strong="G4265"\w* \w some|strong="G5100"\w* \w better|strong="G2909"\w* \w thing|strong="G5100"\w* \w concerning|strong="G4012"\w* \w us|strong="G2249"\w*, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w apart|strong="G5565"\w* \w from|strong="G3588"\w* \w us|strong="G2249"\w* \w they|strong="G3588"\w* \w should|strong="G5100"\w* \w not|strong="G3361"\w* \w be|strong="G3361"\w* \w made|strong="G5048"\w* \w perfect|strong="G5048"\w*. +\c 12 +\p +\v 1 \w Therefore|strong="G1223"\w* \w let|strong="G2192"\w*’\w s|strong="G2192"\w* \w also|strong="G2532"\w*, \w seeing|strong="G1223"\w* \w we|strong="G2249"\w* \w are|strong="G3588"\w* surrounded \w by|strong="G1223"\w* \w so|strong="G2532"\w* \w great|strong="G5118"\w* \w a|strong="G2192"\w* \w cloud|strong="G3509"\w* \w of|strong="G1223"\w* \w witnesses|strong="G3144"\w*, lay aside \w every|strong="G3956"\w* \w weight|strong="G3591"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* sin \w which|strong="G3588"\w* \w so|strong="G2532"\w* \w easily|strong="G2139"\w* \w entangles|strong="G2139"\w* \w us|strong="G2249"\w*, \w and|strong="G2532"\w* \w let|strong="G2192"\w*’\w s|strong="G2192"\w* \w run|strong="G5143"\w* \w with|strong="G1223"\w* \w perseverance|strong="G5281"\w* \w the|strong="G2532"\w* race \w that|strong="G3588"\w* \w is|strong="G3588"\w* \w set|strong="G4295"\w* \w before|strong="G4295"\w* \w us|strong="G2249"\w*, +\v 2 \w looking|strong="G2424"\w* \w to|strong="G1519"\w* \w Jesus|strong="G2424"\w*, \w the|strong="G1722"\w* author \w and|strong="G2532"\w* \w perfecter|strong="G5051"\w* \w of|strong="G2316"\w* \w faith|strong="G4102"\w*, \w who|strong="G3739"\w* \w for|strong="G1519"\w* \w the|strong="G1722"\w* \w joy|strong="G5479"\w* \w that|strong="G3739"\w* \w was|strong="G3588"\w* \w set|strong="G2523"\w* \w before|strong="G1722"\w* \w him|strong="G3588"\w* \w endured|strong="G5278"\w* \w the|strong="G1722"\w* \w cross|strong="G4716"\w*, \w despising|strong="G2706"\w* its shame, \w and|strong="G2532"\w* \w has|strong="G2316"\w* \w sat|strong="G2523"\w* \w down|strong="G2523"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w throne|strong="G2362"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\p +\v 3 \w For|strong="G1063"\w* consider \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w has|strong="G1519"\w* \w endured|strong="G5278"\w* \w such|strong="G5108"\w* contradiction \w of|strong="G5259"\w* sinners \w against|strong="G1519"\w* \w himself|strong="G1438"\w*, \w that|strong="G2443"\w* \w you|strong="G5210"\w* don’\w t|strong="G3588"\w* \w grow|strong="G2577"\w* \w weary|strong="G1590"\w*, fainting \w in|strong="G1519"\w* \w your|strong="G5259"\w* \w souls|strong="G5590"\w*. +\v 4 You \w have|strong="G3588"\w* \w not|strong="G3768"\w* \w yet|strong="G3768"\w* resisted \w to|strong="G4314"\w* blood, striving \w against|strong="G4314"\w* sin. +\v 5 \w You|strong="G5210"\w* \w have|strong="G2532"\w* \w forgotten|strong="G1585"\w* \w the|strong="G2532"\w* \w exhortation|strong="G3874"\w* \w which|strong="G3588"\w* reasons \w with|strong="G2532"\w* \w you|strong="G5210"\w* \w as|strong="G5613"\w* \w with|strong="G2532"\w* \w children|strong="G5207"\w*, +\q1 “\w My|strong="G1473"\w* \w son|strong="G5207"\w*, don’\w t|strong="G3588"\w* \w take|strong="G2532"\w* \w lightly|strong="G3643"\w* \w the|strong="G2532"\w* \w chastening|strong="G3809"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, +\q2 \w nor|strong="G3366"\w* \w faint|strong="G1590"\w* \w when|strong="G5613"\w* \w you|strong="G5210"\w* \w are|strong="G3588"\w* \w reproved|strong="G1651"\w* \w by|strong="G5259"\w* \w him|strong="G3588"\w*; +\q2 +\v 6 \w for|strong="G1063"\w* \w whom|strong="G3739"\w* \w the|strong="G3956"\w* \w Lord|strong="G2962"\w* loves, \w he|strong="G1161"\w* \w disciplines|strong="G3811"\w*, +\q2 \w and|strong="G1161"\w* \w chastises|strong="G3146"\w* \w every|strong="G3956"\w* \w son|strong="G5207"\w* \w whom|strong="G3739"\w* \w he|strong="G1161"\w* \w receives|strong="G3858"\w*.”\x + \xo 12:6 \xt Proverbs 3:11-12\x* +\p +\v 7 \w It|strong="G1063"\w* \w is|strong="G3588"\w* \w for|strong="G1063"\w* \w discipline|strong="G3809"\w* \w that|strong="G3739"\w* \w you|strong="G5210"\w* \w endure|strong="G5278"\w*. \w God|strong="G2316"\w* \w deals|strong="G4374"\w* \w with|strong="G2316"\w* \w you|strong="G5210"\w* \w as|strong="G5613"\w* \w with|strong="G2316"\w* \w children|strong="G5207"\w*, \w for|strong="G1063"\w* \w what|strong="G5101"\w* \w son|strong="G5207"\w* \w is|strong="G3588"\w* \w there|strong="G1063"\w* \w whom|strong="G3739"\w* \w his|strong="G1519"\w* \w father|strong="G3962"\w* doesn’\w t|strong="G3588"\w* \w discipline|strong="G3809"\w*? +\v 8 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w you|strong="G3739"\w* \w are|strong="G1510"\w* \w without|strong="G5565"\w* \w discipline|strong="G3809"\w*, \w of|strong="G5207"\w* \w which|strong="G3739"\w* \w all|strong="G3956"\w* \w have|strong="G2532"\w* \w been|strong="G1510"\w* \w made|strong="G1096"\w* \w partakers|strong="G3353"\w*, \w then|strong="G2532"\w* \w you|strong="G3739"\w* \w are|strong="G1510"\w* \w illegitimate|strong="G3541"\w*, \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w children|strong="G5207"\w*. +\v 9 \w Furthermore|strong="G1534"\w*, \w we|strong="G2249"\w* \w had|strong="G2192"\w* \w the|strong="G2532"\w* \w fathers|strong="G3962"\w* \w of|strong="G4151"\w* \w our|strong="G2532"\w* \w flesh|strong="G4561"\w* \w to|strong="G2532"\w* chasten \w us|strong="G2249"\w*, \w and|strong="G2532"\w* \w we|strong="G2249"\w* paid \w them|strong="G3588"\w* \w respect|strong="G1788"\w*. \w Shall|strong="G2532"\w* \w we|strong="G2249"\w* \w not|strong="G3756"\w* \w much|strong="G4183"\w* \w rather|strong="G3123"\w* \w be|strong="G2532"\w* \w in|strong="G2532"\w* \w subjection|strong="G5293"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Father|strong="G3962"\w* \w of|strong="G4151"\w* \w spirits|strong="G4151"\w* \w and|strong="G2532"\w* \w live|strong="G2198"\w*? +\v 10 \w For|strong="G1063"\w* \w they|strong="G1161"\w* \w indeed|strong="G3303"\w* \w for|strong="G1063"\w* \w a|strong="G1519"\w* \w few|strong="G3641"\w* \w days|strong="G2250"\w* \w disciplined|strong="G3811"\w* \w us|strong="G1519"\w* \w as|strong="G1519"\w* \w seemed|strong="G1380"\w* \w good|strong="G1380"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \w but|strong="G1161"\w* \w he|strong="G1161"\w* \w for|strong="G1063"\w* \w our|strong="G2596"\w* \w profit|strong="G4851"\w*, \w that|strong="G3588"\w* \w we|strong="G1063"\w* \w may|strong="G1380"\w* \w be|strong="G1519"\w* \w partakers|strong="G3335"\w* \w of|strong="G2250"\w* \w his|strong="G1519"\w* holiness. +\v 11 \w All|strong="G3956"\w* \w chastening|strong="G3809"\w* \w seems|strong="G1380"\w* \w for|strong="G1223"\w* \w the|strong="G3956"\w* \w present|strong="G3918"\w* \w to|strong="G4314"\w* \w be|strong="G1510"\w* \w not|strong="G3756"\w* \w joyous|strong="G5479"\w* \w but|strong="G1161"\w* \w grievous|strong="G3077"\w*; \w yet|strong="G1161"\w* \w afterward|strong="G5305"\w* \w it|strong="G1161"\w* yields \w the|strong="G3956"\w* \w peaceful|strong="G1516"\w* \w fruit|strong="G2590"\w* \w of|strong="G1223"\w* \w righteousness|strong="G1343"\w* \w to|strong="G4314"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w have|strong="G1510"\w* \w been|strong="G1510"\w* \w trained|strong="G1128"\w* \w by|strong="G1223"\w* \w it|strong="G1161"\w*. +\v 12 \w Therefore|strong="G1352"\w* \w lift|strong="G1352"\w* \w up|strong="G2532"\w* \w the|strong="G2532"\w* \w hands|strong="G5495"\w* \w that|strong="G3588"\w* hang \w down|strong="G1119"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w feeble|strong="G3886"\w* \w knees|strong="G1119"\w*,\x + \xo 12:12 \xt Isaiah 35:3\x* +\v 13 \w and|strong="G2532"\w* \w make|strong="G4160"\w* \w straight|strong="G3717"\w* \w paths|strong="G5163"\w* \w for|strong="G1161"\w* \w your|strong="G2532"\w* \w feet|strong="G4228"\w*,\x + \xo 12:13 \xt Proverbs 4:26\x* \w so|strong="G2443"\w* \w what|strong="G3588"\w* \w is|strong="G3588"\w* \w lame|strong="G5560"\w* \w may|strong="G2532"\w* \w not|strong="G3361"\w* \w be|strong="G2532"\w* dislocated, \w but|strong="G1161"\w* \w rather|strong="G3123"\w* \w be|strong="G2532"\w* \w healed|strong="G2390"\w*. +\p +\v 14 \w Follow|strong="G1377"\w* \w after|strong="G3326"\w* \w peace|strong="G1515"\w* \w with|strong="G3326"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* sanctification \w without|strong="G5565"\w* \w which|strong="G3739"\w* \w no|strong="G3762"\w* \w man|strong="G3762"\w* \w will|strong="G2532"\w* \w see|strong="G3708"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, +\v 15 \w looking|strong="G2532"\w* carefully \w lest|strong="G3361"\w* \w there|strong="G2532"\w* \w be|strong="G2532"\w* \w any|strong="G5100"\w* \w man|strong="G5100"\w* \w who|strong="G3588"\w* falls \w short|strong="G5302"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w grace|strong="G5485"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w*, \w lest|strong="G3361"\w* \w any|strong="G5100"\w* \w root|strong="G4491"\w* \w of|strong="G1223"\w* \w bitterness|strong="G4088"\w* \w springing|strong="G5453"\w* \w up|strong="G3361"\w* \w trouble|strong="G1776"\w* \w you|strong="G2532"\w* \w and|strong="G2532"\w* \w many|strong="G4183"\w* \w be|strong="G2532"\w* \w defiled|strong="G3392"\w* \w by|strong="G1223"\w* \w it|strong="G2532"\w*, +\v 16 \w lest|strong="G3361"\w* \w there|strong="G3361"\w* \w be|strong="G3361"\w* \w any|strong="G5100"\w* sexually \w immoral|strong="G4205"\w* \w person|strong="G3739"\w* \w or|strong="G2228"\w* \w profane|strong="G2228"\w* \w person|strong="G3739"\w*, \w like|strong="G5613"\w* \w Esau|strong="G2269"\w*, \w who|strong="G3739"\w* sold \w his|strong="G1438"\w* \w birthright|strong="G4415"\w* \w for|strong="G1520"\w* \w one|strong="G1520"\w* \w meal|strong="G1035"\w*. +\v 17 \w For|strong="G1063"\w* \w you|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w even|strong="G2532"\w* \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w afterward|strong="G3326"\w* \w desired|strong="G2309"\w* \w to|strong="G2532"\w* \w inherit|strong="G2816"\w* \w the|strong="G2532"\w* \w blessing|strong="G2129"\w*, \w he|strong="G2532"\w* \w was|strong="G3588"\w* rejected, \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w found|strong="G2147"\w* \w no|strong="G3756"\w* \w place|strong="G5117"\w* \w for|strong="G1063"\w* \w a|strong="G2532"\w* change \w of|strong="G2532"\w* \w mind|strong="G1438"\w* \w though|strong="G2539"\w* \w he|strong="G2532"\w* \w sought|strong="G1567"\w* \w it|strong="G2532"\w* diligently \w with|strong="G3326"\w* \w tears|strong="G1144"\w*. +\p +\v 18 \w For|strong="G1063"\w* \w you|strong="G2532"\w* \w have|strong="G2532"\w* \w not|strong="G3756"\w* \w come|strong="G4334"\w* \w to|strong="G2532"\w* \w a|strong="G2532"\w* mountain \w that|strong="G2532"\w* \w might|strong="G2532"\w* \w be|strong="G2532"\w* \w touched|strong="G5584"\w* \w and|strong="G2532"\w* \w that|strong="G2532"\w* \w burned|strong="G2545"\w* \w with|strong="G2532"\w* \w fire|strong="G4442"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w blackness|strong="G1105"\w*, \w darkness|strong="G2217"\w*, storm, +\v 19 \w the|strong="G2532"\w* \w sound|strong="G5456"\w* \w of|strong="G3056"\w* \w a|strong="G2532"\w* \w trumpet|strong="G4536"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w voice|strong="G5456"\w* \w of|strong="G3056"\w* \w words|strong="G3056"\w*; \w which|strong="G3739"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* heard \w it|strong="G2532"\w* \w begged|strong="G3868"\w* \w that|strong="G3739"\w* \w not|strong="G3361"\w* \w one|strong="G3739"\w* \w more|strong="G2532"\w* \w word|strong="G3056"\w* \w should|strong="G3588"\w* \w be|strong="G2532"\w* \w spoken|strong="G4369"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*, +\v 20 \w for|strong="G1063"\w* \w they|strong="G3588"\w* \w could|strong="G3588"\w* \w not|strong="G3756"\w* stand \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w was|strong="G3588"\w* \w commanded|strong="G1291"\w*, “\w If|strong="G2579"\w* \w even|strong="G2579"\w* \w an|strong="G3735"\w* animal \w touches|strong="G2345"\w* \w the|strong="G3588"\w* \w mountain|strong="G3735"\w*, \w it|strong="G1063"\w* \w shall|strong="G3588"\w* \w be|strong="G3756"\w* \w stoned|strong="G3036"\w*”.\f + \fr 12:20 \ft TR adds “or shot with an arrow”\f*\x + \xo 12:20 \xt Exodus 19:12-13\x* +\v 21 \w So|strong="G3779"\w* \w fearful|strong="G5398"\w* \w was|strong="G1510"\w* \w the|strong="G2532"\w* appearance \w that|strong="G3588"\w* \w Moses|strong="G3475"\w* \w said|strong="G3004"\w*, “\w I|strong="G2532"\w* \w am|strong="G1510"\w* \w terrified|strong="G1630"\w* \w and|strong="G2532"\w* \w trembling|strong="G1790"\w*.”\x + \xo 12:21 \xt Deuteronomy 9:19\x* +\p +\v 22 \w But|strong="G2532"\w* \w you|strong="G2532"\w* \w have|strong="G2532"\w* \w come|strong="G4334"\w* \w to|strong="G2532"\w* \w Mount|strong="G3735"\w* \w Zion|strong="G4622"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w living|strong="G2198"\w* \w God|strong="G2316"\w*, \w the|strong="G2532"\w* \w heavenly|strong="G2032"\w* \w Jerusalem|strong="G2419"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* innumerable multitudes \w of|strong="G2316"\w* angels, +\v 23 \w to|strong="G2532"\w* \w the|strong="G1722"\w* festal gathering \w and|strong="G2532"\w* \w assembly|strong="G1577"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w firstborn|strong="G4416"\w* \w who|strong="G3956"\w* \w are|strong="G3956"\w* enrolled \w in|strong="G1722"\w* \w heaven|strong="G3772"\w*, \w to|strong="G2532"\w* \w God|strong="G2316"\w* \w the|strong="G1722"\w* \w Judge|strong="G2923"\w* \w of|strong="G4151"\w* \w all|strong="G3956"\w*, \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w spirits|strong="G4151"\w* \w of|strong="G4151"\w* \w just|strong="G1342"\w* \w men|strong="G3956"\w* \w made|strong="G5048"\w* \w perfect|strong="G5048"\w*, +\v 24 \w to|strong="G2532"\w* \w Jesus|strong="G2424"\w*, \w the|strong="G2532"\w* \w mediator|strong="G3316"\w* \w of|strong="G2532"\w* \w a|strong="G2532"\w* \w new|strong="G3501"\w* \w covenant|strong="G1242"\w*,\x + \xo 12:24 \xt Jeremiah 31:31\x* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* blood \w of|strong="G2532"\w* \w sprinkling|strong="G4473"\w* \w that|strong="G3588"\w* \w speaks|strong="G2980"\w* \w better|strong="G2909"\w* \w than|strong="G3844"\w* \w that|strong="G3588"\w* \w of|strong="G2532"\w* Abel. +\p +\v 25 See \w that|strong="G3588"\w* \w you|strong="G1487"\w* don’\w t|strong="G3588"\w* \w refuse|strong="G3868"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w speaks|strong="G2980"\w*. \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w they|strong="G3588"\w* didn’\w t|strong="G3588"\w* \w escape|strong="G1628"\w* \w when|strong="G2980"\w* \w they|strong="G3588"\w* \w refused|strong="G3756"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w warned|strong="G5537"\w* \w on|strong="G1909"\w* \w the|strong="G1909"\w* \w earth|strong="G1093"\w*, how \w much|strong="G4183"\w* \w more|strong="G3123"\w* \w will|strong="G1473"\w* \w we|strong="G2249"\w* \w not|strong="G3756"\w* \w escape|strong="G1628"\w* \w who|strong="G3588"\w* turn away \w from|strong="G3756"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* warns \w from|strong="G3756"\w* \w heaven|strong="G3772"\w*, +\v 26 \w whose|strong="G3739"\w* \w voice|strong="G5456"\w* \w shook|strong="G4531"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w then|strong="G2532"\w*, \w but|strong="G1161"\w* \w now|strong="G1161"\w* \w he|strong="G2532"\w* \w has|strong="G3739"\w* \w promised|strong="G1861"\w*, \w saying|strong="G3004"\w*, “\w Yet|strong="G2089"\w* \w once|strong="G3739"\w* \w more|strong="G2089"\w* \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w shake|strong="G4579"\w* \w not|strong="G3756"\w* \w only|strong="G3440"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w but|strong="G1161"\w* \w also|strong="G2532"\w* \w the|strong="G2532"\w* \w heavens|strong="G3772"\w*.”\x + \xo 12:26 \xt Haggai 2:6\x* +\v 27 \w This|strong="G3588"\w* phrase, “\w Yet|strong="G2089"\w* once \w more|strong="G2089"\w*” signifies \w the|strong="G1161"\w* \w removing|strong="G3331"\w* \w of|strong="G3588"\w* \w those|strong="G3588"\w* \w things|strong="G3588"\w* \w that|strong="G2443"\w* \w are|strong="G3588"\w* \w shaken|strong="G4531"\w*, \w as|strong="G5613"\w* \w of|strong="G3588"\w* \w things|strong="G3588"\w* \w that|strong="G2443"\w* \w have|strong="G4160"\w* \w been|strong="G4160"\w* \w made|strong="G4160"\w*, \w that|strong="G2443"\w* \w those|strong="G3588"\w* \w things|strong="G3588"\w* \w which|strong="G3588"\w* \w are|strong="G3588"\w* \w not|strong="G3361"\w* \w shaken|strong="G4531"\w* \w may|strong="G2443"\w* \w remain|strong="G3306"\w*. +\v 28 \w Therefore|strong="G1352"\w*, \w receiving|strong="G3880"\w* \w a|strong="G2192"\w* Kingdom \w that|strong="G3739"\w* can’\w t|strong="G3588"\w* \w be|strong="G2532"\w* shaken, \w let|strong="G2192"\w*’\w s|strong="G2192"\w* \w have|strong="G2192"\w* \w grace|strong="G5485"\w*, \w through|strong="G1223"\w* \w which|strong="G3739"\w* \w we|strong="G3739"\w* \w serve|strong="G3000"\w* \w God|strong="G2316"\w* \w acceptably|strong="G2102"\w*, \w with|strong="G3326"\w* \w reverence|strong="G2124"\w* \w and|strong="G2532"\w* awe, +\v 29 \w for|strong="G1063"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w* \w is|strong="G3588"\w* \w a|strong="G2532"\w* \w consuming|strong="G2654"\w* \w fire|strong="G4442"\w*.\x + \xo 12:29 \xt Deuteronomy 4:24\x* +\c 13 +\p +\v 1 \w Let|strong="G3306"\w* \w brotherly|strong="G5360"\w* \w love|strong="G5360"\w* \w continue|strong="G3306"\w*. +\v 2 Don’\w t|strong="G3588"\w* \w forget|strong="G1950"\w* \w to|strong="G5100"\w* show \w hospitality|strong="G5381"\w* \w to|strong="G5100"\w* \w strangers|strong="G5381"\w*, \w for|strong="G1063"\w* \w in|strong="G1223"\w* doing \w so|strong="G1223"\w*, \w some|strong="G5100"\w* \w have|strong="G5100"\w* \w entertained|strong="G3579"\w* angels \w without|strong="G3361"\w* \w knowing|strong="G2990"\w* \w it|strong="G1063"\w*. +\v 3 \w Remember|strong="G3403"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w bonds|strong="G1198"\w*, \w as|strong="G5613"\w* bound \w with|strong="G1722"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w ill-treated|strong="G2558"\w*, \w since|strong="G5613"\w* \w you|strong="G1722"\w* \w are|strong="G1510"\w* \w also|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w body|strong="G4983"\w*. +\v 4 \w Let|strong="G2919"\w* \w marriage|strong="G1062"\w* \w be|strong="G2532"\w* held \w in|strong="G1722"\w* \w honor|strong="G5093"\w* \w among|strong="G1722"\w* \w all|strong="G3956"\w*, \w and|strong="G2532"\w* \w let|strong="G2919"\w* \w the|strong="G1722"\w* \w bed|strong="G2845"\w* \w be|strong="G2532"\w* undefiled; \w but|strong="G2532"\w* \w God|strong="G2316"\w* \w will|strong="G2316"\w* \w judge|strong="G2919"\w* \w the|strong="G1722"\w* sexually \w immoral|strong="G4205"\w* \w and|strong="G2532"\w* \w adulterers|strong="G3432"\w*. +\p +\v 5 \w Be|strong="G3756"\w* free \w from|strong="G3756"\w* \w the|strong="G3588"\w* love \w of|strong="G3588"\w* money, content \w with|strong="G3756"\w* \w such|strong="G3588"\w* \w things|strong="G3588"\w* \w as|strong="G5158"\w* \w you|strong="G4771"\w* \w have|strong="G3588"\w*, \w for|strong="G1063"\w* \w he|strong="G3588"\w* \w has|strong="G3761"\w* \w said|strong="G3004"\w*, “\w I|strong="G1063"\w* \w will|strong="G3004"\w* \w in|strong="G3004"\w* \w no|strong="G3756"\w* \w way|strong="G5158"\w* \w leave|strong="G1459"\w* \w you|strong="G4771"\w*, \w neither|strong="G3761"\w* \w will|strong="G3004"\w* \w I|strong="G1063"\w* \w in|strong="G3004"\w* \w any|strong="G3361"\w* \w way|strong="G5158"\w* \w forsake|strong="G1459"\w* \w you|strong="G4771"\w*.”\x + \xo 13:5 \xt Deuteronomy 31:6\x* +\v 6 \w So|strong="G5620"\w* \w that|strong="G5620"\w* \w with|strong="G2962"\w* \w good|strong="G2292"\w* \w courage|strong="G2292"\w* \w we|strong="G2249"\w* \w say|strong="G3004"\w*, +\q1 “\w The|strong="G3004"\w* \w Lord|strong="G2962"\w* \w is|strong="G5101"\w* \w my|strong="G1473"\w* helper. \w I|strong="G1473"\w* \w will|strong="G5101"\w* \w not|strong="G3756"\w* \w fear|strong="G5399"\w*. +\q2 \w What|strong="G5101"\w* \w can|strong="G3004"\w* \w man|strong="G3756"\w* \w do|strong="G4160"\w* \w to|strong="G3004"\w* \w me|strong="G1473"\w*?”\x + \xo 13:6 \xt Psalms 118:6-7\x* +\p +\v 7 \w Remember|strong="G3421"\w* \w your|strong="G3588"\w* \w leaders|strong="G2233"\w*, \w men|strong="G3588"\w* \w who|strong="G3739"\w* \w spoke|strong="G2980"\w* \w to|strong="G2980"\w* \w you|strong="G5210"\w* \w the|strong="G3588"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w*, \w and|strong="G2316"\w* \w considering|strong="G2233"\w* \w the|strong="G3588"\w* results \w of|strong="G3056"\w* \w their|strong="G3588"\w* conduct, \w imitate|strong="G3401"\w* \w their|strong="G3588"\w* \w faith|strong="G4102"\w*. +\v 8 \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w is|strong="G3588"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w* \w yesterday|strong="G5504"\w*, \w today|strong="G4594"\w*, \w and|strong="G2532"\w* \w forever|strong="G1519"\w*. +\v 9 Don’\w t|strong="G3588"\w* \w be|strong="G2532"\w* \w carried|strong="G3911"\w* \w away|strong="G3911"\w* \w by|strong="G1722"\w* \w various|strong="G4164"\w* \w and|strong="G2532"\w* \w strange|strong="G3581"\w* \w teachings|strong="G1322"\w*, \w for|strong="G1063"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w good|strong="G2570"\w* \w that|strong="G3739"\w* \w the|strong="G1722"\w* \w heart|strong="G2588"\w* \w be|strong="G2532"\w* established \w by|strong="G1722"\w* \w grace|strong="G5485"\w*, \w not|strong="G3756"\w* \w by|strong="G1722"\w* \w foods|strong="G1033"\w*, \w through|strong="G1722"\w* \w which|strong="G3739"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w were|strong="G3588"\w* \w so|strong="G2532"\w* \w occupied|strong="G4043"\w* \w were|strong="G3588"\w* \w not|strong="G3756"\w* \w benefited|strong="G5623"\w*. +\p +\v 10 \w We|strong="G3739"\w* \w have|strong="G2192"\w* \w an|strong="G2192"\w* \w altar|strong="G2379"\w* \w from|strong="G1537"\w* \w which|strong="G3739"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w serve|strong="G3000"\w* \w the|strong="G1537"\w* holy \w tabernacle|strong="G4633"\w* \w have|strong="G2192"\w* \w no|strong="G3756"\w* \w right|strong="G1849"\w* \w to|strong="G1849"\w* \w eat|strong="G2068"\w*. +\v 11 \w For|strong="G1063"\w* \w the|strong="G1519"\w* \w bodies|strong="G4983"\w* \w of|strong="G4012"\w* \w those|strong="G3588"\w* \w animals|strong="G2226"\w*, \w whose|strong="G3739"\w* blood \w is|strong="G3588"\w* \w brought|strong="G1533"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* holy \w place|strong="G3739"\w* \w by|strong="G1223"\w* \w the|strong="G1519"\w* high priest \w as|strong="G1519"\w* \w an|strong="G1519"\w* offering \w for|strong="G1063"\w* sin, \w are|strong="G3588"\w* \w burned|strong="G2618"\w* \w outside|strong="G1854"\w* \w of|strong="G4012"\w* \w the|strong="G1519"\w* \w camp|strong="G3925"\w*.\x + \xo 13:11 \xt Leviticus 16:27\x* +\v 12 \w Therefore|strong="G1352"\w* \w Jesus|strong="G2424"\w* \w also|strong="G2532"\w*, \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* sanctify \w the|strong="G2532"\w* \w people|strong="G2992"\w* \w through|strong="G1223"\w* \w his|strong="G1223"\w* \w own|strong="G2398"\w* blood, \w suffered|strong="G3958"\w* \w outside|strong="G1854"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w gate|strong="G4439"\w*. +\v 13 Let’s \w therefore|strong="G5106"\w* \w go|strong="G1831"\w* \w out|strong="G1831"\w* \w to|strong="G4314"\w* \w him|strong="G3588"\w* \w outside|strong="G1854"\w* \w of|strong="G3588"\w* \w the|strong="G4314"\w* \w camp|strong="G3925"\w*, \w bearing|strong="G5342"\w* \w his|strong="G4314"\w* \w reproach|strong="G3680"\w*. +\v 14 \w For|strong="G1063"\w* \w we|strong="G1063"\w* don’\w t|strong="G3588"\w* \w have|strong="G2192"\w* \w here|strong="G5602"\w* \w an|strong="G2192"\w* \w enduring|strong="G3306"\w* \w city|strong="G4172"\w*, \w but|strong="G1063"\w* \w we|strong="G1063"\w* \w seek|strong="G1934"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w to|strong="G3195"\w* \w come|strong="G3195"\w*. +\v 15 \w Through|strong="G1223"\w* \w him|strong="G3588"\w*, \w then|strong="G3767"\w*, \w let|strong="G1510"\w*’s offer up \w a|strong="G1510"\w* \w sacrifice|strong="G2378"\w* \w of|strong="G1223"\w* praise \w to|strong="G2316"\w* \w God|strong="G2316"\w*\x + \xo 13:15 \xt Psalms 50:23\x* \w continually|strong="G1223"\w*, \w that|strong="G3588"\w* \w is|strong="G1510"\w*, \w the|strong="G3956"\w* \w fruit|strong="G2590"\w* \w of|strong="G1223"\w* \w lips|strong="G5491"\w* \w which|strong="G3588"\w* proclaim allegiance \w to|strong="G2316"\w* \w his|strong="G3956"\w* \w name|strong="G3686"\w*. +\v 16 \w But|strong="G1161"\w* don’\w t|strong="G3588"\w* \w forget|strong="G1950"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w doing|strong="G2140"\w* \w good|strong="G2140"\w* \w and|strong="G2532"\w* \w sharing|strong="G2842"\w*, \w for|strong="G1063"\w* \w with|strong="G2532"\w* \w such|strong="G5108"\w* \w sacrifices|strong="G2378"\w* \w God|strong="G2316"\w* \w is|strong="G3588"\w* \w well|strong="G2532"\w* \w pleased|strong="G2100"\w*. +\p +\v 17 \w Obey|strong="G3982"\w* \w your|strong="G2532"\w* \w leaders|strong="G2233"\w* \w and|strong="G2532"\w* \w submit|strong="G5226"\w* \w to|strong="G2443"\w* \w them|strong="G3588"\w*, \w for|strong="G1063"\w* \w they|strong="G2532"\w* watch \w on|strong="G5228"\w* \w behalf|strong="G5228"\w* \w of|strong="G3056"\w* \w your|strong="G2532"\w* \w souls|strong="G5590"\w*, \w as|strong="G5613"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w will|strong="G2532"\w* \w give|strong="G4160"\w* \w account|strong="G3056"\w*, \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w may|strong="G2532"\w* \w do|strong="G4160"\w* \w this|strong="G3778"\w* \w with|strong="G3326"\w* \w joy|strong="G5479"\w* \w and|strong="G2532"\w* \w not|strong="G3361"\w* \w with|strong="G3326"\w* groaning, \w for|strong="G1063"\w* \w that|strong="G2443"\w* \w would|strong="G2532"\w* \w be|strong="G2532"\w* unprofitable \w for|strong="G1063"\w* \w you|strong="G5210"\w*. +\p +\v 18 \w Pray|strong="G4336"\w* \w for|strong="G1063"\w* \w us|strong="G2249"\w*, \w for|strong="G1063"\w* \w we|strong="G2249"\w* \w are|strong="G3956"\w* \w persuaded|strong="G3982"\w* \w that|strong="G3754"\w* \w we|strong="G2249"\w* \w have|strong="G2192"\w* \w a|strong="G2192"\w* \w good|strong="G2570"\w* \w conscience|strong="G4893"\w*, \w desiring|strong="G2309"\w* \w to|strong="G2309"\w* \w live|strong="G2192"\w* \w honorably|strong="G2573"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*. +\v 19 \w I|strong="G1161"\w* strongly \w urge|strong="G3870"\w* \w you|strong="G5210"\w* \w to|strong="G2443"\w* \w do|strong="G4160"\w* \w this|strong="G3778"\w*, \w that|strong="G2443"\w* \w I|strong="G1161"\w* \w may|strong="G2443"\w* \w be|strong="G2443"\w* restored \w to|strong="G2443"\w* \w you|strong="G5210"\w* \w sooner|strong="G5032"\w*. +\p +\v 20 \w Now|strong="G1161"\w* \w may|strong="G2316"\w* \w the|strong="G1722"\w* \w God|strong="G2316"\w* \w of|strong="G1537"\w* \w peace|strong="G1515"\w*, \w who|strong="G3588"\w* \w brought|strong="G1161"\w* \w again|strong="G1537"\w* \w from|strong="G1537"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w* \w the|strong="G1722"\w* \w great|strong="G3173"\w* \w shepherd|strong="G4166"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w sheep|strong="G4263"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* blood \w of|strong="G1537"\w* \w an|strong="G1722"\w* eternal \w covenant|strong="G1242"\w*, \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*, +\v 21 \w make|strong="G4160"\w* \w you|strong="G5210"\w* \w complete|strong="G3956"\w* \w in|strong="G1722"\w* \w every|strong="G3956"\w* \w good|strong="G3956"\w* \w work|strong="G3956"\w* \w to|strong="G1519"\w* \w do|strong="G4160"\w* \w his|strong="G3956"\w* \w will|strong="G2307"\w*, \w working|strong="G4160"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w* \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w is|strong="G3588"\w* \w well|strong="G1722"\w* \w pleasing|strong="G2101"\w* \w in|strong="G1722"\w* \w his|strong="G3956"\w* \w sight|strong="G1799"\w*, \w through|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w to|strong="G1519"\w* \w whom|strong="G3739"\w* \w be|strong="G3956"\w* \w the|strong="G1722"\w* \w glory|strong="G1391"\w* \w forever|strong="G1519"\w* \w and|strong="G1391"\w* \w ever|strong="G1519"\w*. Amen. +\p +\v 22 \w But|strong="G1161"\w* \w I|strong="G2532"\w* \w exhort|strong="G3870"\w* \w you|strong="G5210"\w*, brothers, endure \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w exhortation|strong="G3874"\w*, \w for|strong="G1063"\w* \w I|strong="G2532"\w* \w have|strong="G2532"\w* \w written|strong="G1989"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w in|strong="G2532"\w* \w few|strong="G1223"\w* \w words|strong="G3056"\w*. +\v 23 \w Know|strong="G1097"\w* \w that|strong="G3739"\w* \w our|strong="G3326"\w* brother \w Timothy|strong="G5095"\w* \w has|strong="G3739"\w* been freed, \w with|strong="G3326"\w* \w whom|strong="G3739"\w*, \w if|strong="G1437"\w* \w he|strong="G3739"\w* \w comes|strong="G2064"\w* \w shortly|strong="G5032"\w*, \w I|strong="G1473"\w* \w will|strong="G3739"\w* \w see|strong="G3708"\w* \w you|strong="G5210"\w*. +\p +\v 24 Greet \w all|strong="G3956"\w* \w of|strong="G2532"\w* \w your|strong="G2532"\w* \w leaders|strong="G2233"\w* \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* saints. \w The|strong="G2532"\w* Italians greet \w you|strong="G5210"\w*. +\p +\v 25 \w Grace|strong="G5485"\w* \w be|strong="G3956"\w* \w with|strong="G3326"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w*. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/89-JASeng-web.usfm b/bibles/eng-web_usfm/89-JASeng-web.usfm new file mode 100644 index 0000000..8f81a49 --- /dev/null +++ b/bibles/eng-web_usfm/89-JASeng-web.usfm @@ -0,0 +1,144 @@ +\id JAS 59-JAS-web.sfm World English Bible (WEB) +\ide UTF-8 +\h James +\toc1 The Letter from James +\toc2 James +\toc3 Jas +\mt1 The Letter from James +\c 1 +\p +\v 1 \w James|strong="G2385"\w*, \w a|strong="G2532"\w* \w servant|strong="G1401"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*,\f + \fr 1:1 \ft “Christ” means “Anointed One”.\f* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w twelve|strong="G1427"\w* \w tribes|strong="G5443"\w* \w which|strong="G3588"\w* \w are|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Dispersion|strong="G1290"\w*: \w Greetings|strong="G5463"\w*. +\p +\v 2 \w Count|strong="G2233"\w* \w it|strong="G2233"\w* \w all|strong="G3956"\w* \w joy|strong="G5479"\w*, \w my|strong="G3956"\w* brothers,\f + \fr 1:2 \ft The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”\f* \w when|strong="G3752"\w* \w you|strong="G3752"\w* fall \w into|strong="G4045"\w* \w various|strong="G4164"\w* \w temptations|strong="G3986"\w*, +\v 3 \w knowing|strong="G1097"\w* \w that|strong="G3754"\w* \w the|strong="G3588"\w* \w testing|strong="G1383"\w* \w of|strong="G4102"\w* \w your|strong="G3588"\w* \w faith|strong="G4102"\w* \w produces|strong="G2716"\w* \w endurance|strong="G5281"\w*. +\v 4 \w Let|strong="G1161"\w* \w endurance|strong="G5281"\w* \w have|strong="G2192"\w* its \w perfect|strong="G5046"\w* \w work|strong="G2041"\w*, \w that|strong="G2443"\w* \w you|strong="G1722"\w* \w may|strong="G2532"\w* \w be|strong="G1510"\w* \w perfect|strong="G5046"\w* \w and|strong="G2532"\w* \w complete|strong="G3648"\w*, \w lacking|strong="G3007"\w* \w in|strong="G1722"\w* \w nothing|strong="G3367"\w*. +\p +\v 5 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w any|strong="G5100"\w* \w of|strong="G2316"\w* \w you|strong="G5210"\w* \w lacks|strong="G3007"\w* \w wisdom|strong="G4678"\w*, \w let|strong="G1161"\w* \w him|strong="G3588"\w* ask \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w who|strong="G3588"\w* \w gives|strong="G1325"\w* \w to|strong="G2532"\w* \w all|strong="G3956"\w* liberally \w and|strong="G2532"\w* \w without|strong="G3361"\w* \w reproach|strong="G3679"\w*, \w and|strong="G2532"\w* \w it|strong="G2532"\w* \w will|strong="G2316"\w* \w be|strong="G2532"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*. +\v 6 \w But|strong="G1161"\w* \w let|strong="G1161"\w* \w him|strong="G3588"\w* ask \w in|strong="G1722"\w* \w faith|strong="G4102"\w*, \w without|strong="G3367"\w* \w any|strong="G3367"\w* \w doubting|strong="G1252"\w*, \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w doubts|strong="G1252"\w* \w is|strong="G3588"\w* \w like|strong="G1503"\w* \w a|strong="G2532"\w* \w wave|strong="G2830"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w*, driven \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w wind|strong="G4494"\w* \w and|strong="G2532"\w* \w tossed|strong="G4494"\w*. +\v 7 \w For|strong="G1063"\w* \w that|strong="G3754"\w* \w man|strong="G5100"\w* shouldn’\w t|strong="G3588"\w* \w think|strong="G5100"\w* \w that|strong="G3754"\w* \w he|strong="G3754"\w* \w will|strong="G2962"\w* \w receive|strong="G2983"\w* \w anything|strong="G5100"\w* \w from|strong="G3844"\w* \w the|strong="G3588"\w* \w Lord|strong="G2962"\w*. +\v 8 \w He|strong="G3588"\w* \w is|strong="G3588"\w* \w a|strong="G1722"\w* \w double-minded|strong="G1374"\w* \w man|strong="G3956"\w*, unstable \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w his|strong="G3956"\w* \w ways|strong="G3598"\w*. +\p +\v 9 \w Let|strong="G1161"\w* \w the|strong="G1722"\w* brother \w in|strong="G1722"\w* \w humble|strong="G5011"\w* \w circumstances|strong="G1722"\w* \w glory|strong="G2744"\w* \w in|strong="G1722"\w* \w his|strong="G1722"\w* \w high|strong="G5311"\w* \w position|strong="G5311"\w*; +\v 10 \w and|strong="G1161"\w* \w the|strong="G1722"\w* \w rich|strong="G4145"\w*, \w in|strong="G1722"\w* \w that|strong="G3754"\w* \w he|strong="G1161"\w* \w is|strong="G3588"\w* \w made|strong="G1161"\w* \w humble|strong="G5014"\w*, \w because|strong="G3754"\w* \w like|strong="G5613"\w* \w the|strong="G1722"\w* flower \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w grass|strong="G5528"\w*, \w he|strong="G1161"\w* \w will|strong="G3748"\w* \w pass|strong="G3928"\w* \w away|strong="G3928"\w*. +\v 11 \w For|strong="G1063"\w* \w the|strong="G1722"\w* \w sun|strong="G2246"\w* arises \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w scorching|strong="G2742"\w* \w wind|strong="G2742"\w* \w and|strong="G2532"\w* \w withers|strong="G3583"\w* \w the|strong="G1722"\w* \w grass|strong="G5528"\w*; \w and|strong="G2532"\w* \w the|strong="G1722"\w* flower \w in|strong="G1722"\w* \w it|strong="G2532"\w* \w falls|strong="G1601"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w beauty|strong="G2143"\w* \w of|strong="G2532"\w* its \w appearance|strong="G4383"\w* perishes. \w So|strong="G3779"\w* \w the|strong="G1722"\w* \w rich|strong="G4145"\w* \w man|strong="G4145"\w* \w will|strong="G2532"\w* \w also|strong="G2532"\w* \w fade|strong="G3133"\w* \w away|strong="G3583"\w* \w in|strong="G1722"\w* \w his|strong="G1722"\w* \w pursuits|strong="G4197"\w*. +\p +\v 12 \w Blessed|strong="G3107"\w* \w is|strong="G3588"\w* \w a|strong="G1096"\w* \w person|strong="G3739"\w* \w who|strong="G3739"\w* \w endures|strong="G5278"\w* \w temptation|strong="G3986"\w*, \w for|strong="G3754"\w* \w when|strong="G1096"\w* \w he|strong="G3739"\w* \w has|strong="G3739"\w* \w been|strong="G1096"\w* \w approved|strong="G1384"\w*, \w he|strong="G3739"\w* \w will|strong="G3739"\w* \w receive|strong="G2983"\w* \w the|strong="G3588"\w* \w crown|strong="G4735"\w* \w of|strong="G4735"\w* \w life|strong="G2222"\w* \w which|strong="G3739"\w* \w the|strong="G3588"\w* \w Lord|strong="G3588"\w* \w promised|strong="G1861"\w* \w to|strong="G1096"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* love \w him|strong="G3588"\w*. +\p +\v 13 \w Let|strong="G1161"\w* \w no|strong="G3762"\w* \w man|strong="G3762"\w* \w say|strong="G3004"\w* \w when|strong="G1161"\w* \w he|strong="G1161"\w* \w is|strong="G1510"\w* \w tempted|strong="G3985"\w*, “\w I|strong="G1161"\w* \w am|strong="G1510"\w* \w tempted|strong="G3985"\w* \w by|strong="G3004"\w* \w God|strong="G2316"\w*,” \w for|strong="G1063"\w* \w God|strong="G2316"\w* \w can|strong="G3004"\w*’\w t|strong="G3588"\w* \w be|strong="G1510"\w* \w tempted|strong="G3985"\w* \w by|strong="G3004"\w* \w evil|strong="G2556"\w*, \w and|strong="G1161"\w* \w he|strong="G1161"\w* himself \w tempts|strong="G3985"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w*. +\v 14 \w But|strong="G1161"\w* \w each|strong="G1538"\w* \w one|strong="G1538"\w* \w is|strong="G3588"\w* \w tempted|strong="G3985"\w* \w when|strong="G1161"\w* \w he|strong="G2532"\w* \w is|strong="G3588"\w* drawn \w away|strong="G1828"\w* \w by|strong="G5259"\w* \w his|strong="G2398"\w* \w own|strong="G2398"\w* \w lust|strong="G1939"\w* \w and|strong="G2532"\w* \w enticed|strong="G1185"\w*. +\v 15 \w Then|strong="G1161"\w* \w the|strong="G1161"\w* \w lust|strong="G1939"\w*, \w when|strong="G1161"\w* \w it|strong="G1161"\w* \w has|strong="G2288"\w* \w conceived|strong="G4815"\w*, bears sin. \w The|strong="G1161"\w* sin, \w when|strong="G1161"\w* \w it|strong="G1161"\w* \w is|strong="G3588"\w* full grown, produces \w death|strong="G2288"\w*. +\v 16 Don’t \w be|strong="G3361"\w* \w deceived|strong="G4105"\w*, \w my|strong="G1473"\w* beloved brothers. +\v 17 \w Every|strong="G3956"\w* \w good|strong="G3956"\w* \w gift|strong="G1434"\w* \w and|strong="G2532"\w* \w every|strong="G3956"\w* \w perfect|strong="G5046"\w* \w gift|strong="G1434"\w* \w is|strong="G1510"\w* \w from|strong="G3844"\w* \w above|strong="G3844"\w*, \w coming|strong="G2597"\w* \w down|strong="G2597"\w* \w from|strong="G3844"\w* \w the|strong="G2532"\w* \w Father|strong="G3962"\w* \w of|strong="G2532"\w* \w lights|strong="G5457"\w*, \w with|strong="G3844"\w* \w whom|strong="G3739"\w* can \w be|strong="G1510"\w* \w no|strong="G3756"\w* \w variation|strong="G3883"\w* \w nor|strong="G2532"\w* \w turning|strong="G5157"\w* shadow. +\v 18 \w Of|strong="G3056"\w* \w his|strong="G1519"\w* own \w will|strong="G1510"\w* \w he|strong="G3588"\w* \w gave|strong="G3588"\w* birth \w to|strong="G1519"\w* \w us|strong="G1519"\w* \w by|strong="G1519"\w* \w the|strong="G1519"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* truth, \w that|strong="G3588"\w* \w we|strong="G2249"\w* \w should|strong="G5100"\w* \w be|strong="G1510"\w* \w a|strong="G1519"\w* \w kind|strong="G5100"\w* \w of|strong="G3056"\w* \w first|strong="G3588"\w* fruits \w of|strong="G3056"\w* \w his|strong="G1519"\w* \w creatures|strong="G2938"\w*. +\p +\v 19 \w So|strong="G1161"\w*, \w then|strong="G1161"\w*, \w my|strong="G3956"\w* beloved brothers, \w let|strong="G1161"\w* \w every|strong="G3956"\w* \w man|strong="G3956"\w* \w be|strong="G1510"\w* \w swift|strong="G5036"\w* \w to|strong="G1519"\w* hear, \w slow|strong="G1021"\w* \w to|strong="G1519"\w* \w speak|strong="G2980"\w*, \w and|strong="G1161"\w* \w slow|strong="G1021"\w* \w to|strong="G1519"\w* \w anger|strong="G3709"\w*; +\v 20 \w for|strong="G1063"\w* \w the|strong="G1063"\w* \w anger|strong="G3709"\w* \w of|strong="G2316"\w* \w man|strong="G3756"\w* doesn’t produce \w the|strong="G1063"\w* \w righteousness|strong="G1343"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\v 21 \w Therefore|strong="G1352"\w*, \w putting|strong="G2532"\w* away \w all|strong="G3956"\w* \w filthiness|strong="G4507"\w* \w and|strong="G2532"\w* overflowing \w of|strong="G3056"\w* \w wickedness|strong="G2549"\w*, \w receive|strong="G1209"\w* \w with|strong="G1722"\w* \w humility|strong="G4240"\w* \w the|strong="G1722"\w* \w implanted|strong="G1721"\w* \w word|strong="G3056"\w*, \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w able|strong="G1410"\w* \w to|strong="G2532"\w* \w save|strong="G4982"\w* \w your|strong="G2532"\w* \w souls|strong="G5590"\w*.\f + \fr 1:21 \ft or, preserve your life.\f* +\p +\v 22 \w But|strong="G1161"\w* \w be|strong="G1096"\w* \w doers|strong="G4163"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w*, \w and|strong="G2532"\w* \w not|strong="G3361"\w* \w only|strong="G3440"\w* hearers, deluding \w your|strong="G2532"\w* \w own|strong="G1438"\w* \w selves|strong="G1438"\w*. +\v 23 \w For|strong="G3754"\w* \w if|strong="G1487"\w* \w anyone|strong="G5100"\w* \w is|strong="G1510"\w* \w a|strong="G2532"\w* hearer \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w a|strong="G2532"\w* \w doer|strong="G4163"\w*, \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w like|strong="G1503"\w* \w a|strong="G2532"\w* \w man|strong="G5100"\w* \w looking|strong="G2532"\w* \w at|strong="G1722"\w* \w his|strong="G1722"\w* \w natural|strong="G1078"\w* \w face|strong="G4383"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* \w mirror|strong="G2072"\w*; +\v 24 \w for|strong="G1063"\w* \w he|strong="G2532"\w* sees \w himself|strong="G1438"\w*, \w and|strong="G2532"\w* goes away, \w and|strong="G2532"\w* \w immediately|strong="G2112"\w* \w forgets|strong="G1950"\w* \w what|strong="G1063"\w* \w kind|strong="G3697"\w* \w of|strong="G2532"\w* \w man|strong="G3697"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w*. +\v 25 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w looks|strong="G3879"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w perfect|strong="G5046"\w* \w law|strong="G3551"\w* \w of|strong="G2532"\w* \w freedom|strong="G1657"\w* \w and|strong="G2532"\w* continues, \w not|strong="G3756"\w* \w being|strong="G1510"\w* \w a|strong="G1096"\w* hearer \w who|strong="G3588"\w* forgets \w but|strong="G1161"\w* \w a|strong="G1096"\w* \w doer|strong="G4163"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w work|strong="G2041"\w*, \w this|strong="G3778"\w* \w man|strong="G3778"\w* \w will|strong="G1510"\w* \w be|strong="G1096"\w* \w blessed|strong="G3107"\w* \w in|strong="G1722"\w* \w what|strong="G3588"\w* \w he|strong="G2532"\w* \w does|strong="G1510"\w*. +\p +\v 26 \w If|strong="G1487"\w* \w anyone|strong="G5100"\w* \w among|strong="G3588"\w* \w you|strong="G1487"\w* \w thinks|strong="G1380"\w* \w himself|strong="G2588"\w* \w to|strong="G5100"\w* \w be|strong="G1510"\w* \w religious|strong="G2357"\w* \w while|strong="G1510"\w* \w he|strong="G3778"\w* doesn’\w t|strong="G3588"\w* \w bridle|strong="G5468"\w* \w his|strong="G3588"\w* \w tongue|strong="G1100"\w*, \w but|strong="G1487"\w* deceives \w his|strong="G3588"\w* \w heart|strong="G2588"\w*, \w this|strong="G3778"\w* \w man|strong="G5100"\w*’s \w religion|strong="G2356"\w* \w is|strong="G1510"\w* \w worthless|strong="G3152"\w*. +\v 27 \w Pure|strong="G2513"\w* \w religion|strong="G2356"\w* \w and|strong="G2532"\w* undefiled \w before|strong="G3844"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w Father|strong="G3962"\w* \w is|strong="G1510"\w* \w this|strong="G3778"\w*: \w to|strong="G2532"\w* \w visit|strong="G1980"\w* \w the|strong="G1722"\w* \w fatherless|strong="G3737"\w* \w and|strong="G2532"\w* \w widows|strong="G5503"\w* \w in|strong="G1722"\w* \w their|strong="G1438"\w* \w affliction|strong="G2347"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w keep|strong="G5083"\w* \w oneself|strong="G1438"\w* unstained \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*. +\c 2 +\p +\v 1 \w My|strong="G1722"\w* brothers, don’\w t|strong="G3588"\w* \w hold|strong="G2192"\w* \w the|strong="G1722"\w* \w faith|strong="G4102"\w* \w of|strong="G1391"\w* \w our|strong="G2424"\w* \w glorious|strong="G1391"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w with|strong="G1722"\w* \w partiality|strong="G4382"\w*. +\v 2 \w For|strong="G1063"\w* \w if|strong="G1437"\w* \w a|strong="G2532"\w* \w man|strong="G4434"\w* \w with|strong="G1722"\w* \w a|strong="G2532"\w* \w gold|strong="G5554"\w* \w ring|strong="G5554"\w*, \w in|strong="G1722"\w* \w fine|strong="G2986"\w* \w clothing|strong="G2066"\w*, \w comes|strong="G1525"\w* \w into|strong="G1519"\w* \w your|strong="G1437"\w* \w synagogue|strong="G4864"\w*,\f + \fr 2:2 \ft or, meeting\f* \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w poor|strong="G4434"\w* \w man|strong="G4434"\w* \w in|strong="G1722"\w* \w filthy|strong="G4508"\w* \w clothing|strong="G2066"\w* \w also|strong="G2532"\w* \w comes|strong="G1525"\w* \w in|strong="G1722"\w*, +\v 3 \w and|strong="G2532"\w* \w you|strong="G4771"\w* \w pay|strong="G1914"\w* \w special|strong="G1914"\w* \w attention|strong="G1914"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* wears \w the|strong="G2532"\w* \w fine|strong="G2986"\w* \w clothing|strong="G2066"\w* \w and|strong="G2532"\w* \w say|strong="G3004"\w*, “\w Sit|strong="G2521"\w* \w here|strong="G5602"\w* \w in|strong="G1909"\w* \w a|strong="G2532"\w* \w good|strong="G2573"\w* \w place|strong="G1563"\w*;” \w and|strong="G2532"\w* \w you|strong="G4771"\w* \w tell|strong="G3004"\w* \w the|strong="G2532"\w* \w poor|strong="G4434"\w* \w man|strong="G4434"\w*, “\w Stand|strong="G2476"\w* \w there|strong="G1563"\w*,” \w or|strong="G2228"\w* “\w Sit|strong="G2521"\w* \w by|strong="G5259"\w* \w my|strong="G1473"\w* \w footstool|strong="G5286"\w*” +\v 4 haven’t \w you|strong="G1722"\w* shown partiality \w among|strong="G1722"\w* \w yourselves|strong="G1438"\w*, \w and|strong="G2532"\w* \w become|strong="G1096"\w* \w judges|strong="G2923"\w* \w with|strong="G1722"\w* \w evil|strong="G4190"\w* \w thoughts|strong="G1261"\w*? +\v 5 Listen, \w my|strong="G1722"\w* beloved brothers. Didn’\w t|strong="G3588"\w* \w God|strong="G2316"\w* \w choose|strong="G1586"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w are|strong="G3588"\w* \w poor|strong="G4434"\w* \w in|strong="G1722"\w* \w this|strong="G3588"\w* \w world|strong="G2889"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w rich|strong="G4145"\w* \w in|strong="G1722"\w* \w faith|strong="G4102"\w* \w and|strong="G2532"\w* \w heirs|strong="G2818"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* Kingdom \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w promised|strong="G1861"\w* \w to|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* love \w him|strong="G3588"\w*? +\v 6 \w But|strong="G1161"\w* \w you|strong="G5210"\w* \w have|strong="G2532"\w* dishonored \w the|strong="G2532"\w* \w poor|strong="G4434"\w* \w man|strong="G4145"\w*. Don’\w t|strong="G3588"\w* \w the|strong="G2532"\w* \w rich|strong="G4145"\w* \w oppress|strong="G2616"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* personally \w drag|strong="G1670"\w* \w you|strong="G5210"\w* \w before|strong="G1519"\w* \w the|strong="G2532"\w* \w courts|strong="G2922"\w*? +\v 7 Don’\w t|strong="G3588"\w* \w they|strong="G3588"\w* blaspheme \w the|strong="G1909"\w* \w honorable|strong="G2570"\w* \w name|strong="G3686"\w* \w by|strong="G1909"\w* \w which|strong="G3588"\w* \w you|strong="G5210"\w* \w are|strong="G3588"\w* \w called|strong="G1941"\w*? +\p +\v 8 \w However|strong="G3305"\w*, \w if|strong="G1487"\w* \w you|strong="G4771"\w* fulfill \w the|strong="G2596"\w* royal \w law|strong="G3551"\w* \w according|strong="G2596"\w* \w to|strong="G2596"\w* \w the|strong="G2596"\w* \w Scripture|strong="G1124"\w*, “\w You|strong="G4771"\w* \w shall|strong="G4160"\w* love \w your|strong="G4160"\w* \w neighbor|strong="G4139"\w* \w as|strong="G5613"\w* \w yourself|strong="G4572"\w*,”\x + \xo 2:8 \xt Leviticus 19:18\x* \w you|strong="G4771"\w* \w do|strong="G4160"\w* \w well|strong="G2573"\w*. +\v 9 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w you|strong="G1487"\w* \w show|strong="G4380"\w* \w partiality|strong="G4380"\w*, \w you|strong="G1487"\w* \w commit|strong="G2038"\w* sin, \w being|strong="G1161"\w* \w convicted|strong="G1651"\w* \w by|strong="G5259"\w* \w the|strong="G1161"\w* \w law|strong="G3551"\w* \w as|strong="G5613"\w* \w transgressors|strong="G3848"\w*. +\v 10 \w For|strong="G1063"\w* \w whoever|strong="G3748"\w* \w keeps|strong="G5083"\w* \w the|strong="G1722"\w* \w whole|strong="G3650"\w* \w law|strong="G3551"\w*, \w and|strong="G1161"\w* \w yet|strong="G1161"\w* \w stumbles|strong="G4417"\w* \w in|strong="G1722"\w* \w one|strong="G1520"\w* point, \w he|strong="G1161"\w* \w has|strong="G1096"\w* \w become|strong="G1096"\w* \w guilty|strong="G1777"\w* \w of|strong="G3551"\w* \w all|strong="G3956"\w*. +\v 11 \w For|strong="G1063"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w said|strong="G3004"\w*, “\w Do|strong="G1096"\w* \w not|strong="G3756"\w* \w commit|strong="G3431"\w* \w adultery|strong="G3431"\w*,”\x + \xo 2:11 \xt Exodus 20:14; Deuteronomy 5:18\x* \w also|strong="G2532"\w* \w said|strong="G3004"\w*, “\w Do|strong="G1096"\w* \w not|strong="G3756"\w* \w commit|strong="G3431"\w* \w murder|strong="G5407"\w*.”\x + \xo 2:11 \xt Exodus 20:13; Deuteronomy 5:17 \x* \w Now|strong="G1161"\w* \w if|strong="G1487"\w* \w you|strong="G1487"\w* \w do|strong="G1096"\w* \w not|strong="G3756"\w* \w commit|strong="G3431"\w* \w adultery|strong="G3431"\w* \w but|strong="G1161"\w* \w do|strong="G1096"\w* \w murder|strong="G5407"\w*, \w you|strong="G1487"\w* \w have|strong="G2532"\w* \w become|strong="G1096"\w* \w a|strong="G1096"\w* \w transgressor|strong="G3848"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w*. +\v 12 \w So|strong="G3779"\w* \w speak|strong="G2980"\w* \w and|strong="G2532"\w* \w so|strong="G3779"\w* \w do|strong="G4160"\w* \w as|strong="G5613"\w* men \w who|strong="G2532"\w* \w are|strong="G2532"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w judged|strong="G2919"\w* \w by|strong="G1223"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w* \w of|strong="G1223"\w* \w freedom|strong="G1657"\w*. +\v 13 \w For|strong="G1063"\w* \w judgment|strong="G2920"\w* \w is|strong="G3588"\w* \w without|strong="G3361"\w* \w mercy|strong="G1656"\w* \w to|strong="G3361"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w has|strong="G2920"\w* \w shown|strong="G4160"\w* \w no|strong="G3361"\w* \w mercy|strong="G1656"\w*. \w Mercy|strong="G1656"\w* \w triumphs|strong="G2620"\w* \w over|strong="G2620"\w* \w judgment|strong="G2920"\w*. +\p +\v 14 \w What|strong="G5101"\w* \w good|strong="G3786"\w* \w is|strong="G3588"\w* \w it|strong="G1161"\w*, \w my|strong="G1473"\w* brothers, \w if|strong="G1437"\w* \w a|strong="G2192"\w* \w man|strong="G5100"\w* \w says|strong="G3004"\w* \w he|strong="G1161"\w* \w has|strong="G2192"\w* \w faith|strong="G4102"\w*, \w but|strong="G1161"\w* \w has|strong="G2192"\w* \w no|strong="G3361"\w* \w works|strong="G2041"\w*? \w Can|strong="G1410"\w* \w faith|strong="G4102"\w* \w save|strong="G4982"\w* \w him|strong="G3588"\w*? +\v 15 \w And|strong="G2532"\w* \w if|strong="G1437"\w* \w a|strong="G2532"\w* brother \w or|strong="G2228"\w* sister \w is|strong="G3588"\w* \w naked|strong="G1131"\w* \w and|strong="G2532"\w* \w in|strong="G2532"\w* \w lack|strong="G3007"\w* \w of|strong="G2532"\w* \w daily|strong="G2184"\w* \w food|strong="G5160"\w*, +\v 16 \w and|strong="G2532"\w* \w one|strong="G5100"\w* \w of|strong="G1537"\w* \w you|strong="G5210"\w* tells \w them|strong="G3588"\w*, “\w Go|strong="G5217"\w* \w in|strong="G1722"\w* \w peace|strong="G1515"\w*. \w Be|strong="G2532"\w* \w warmed|strong="G2532"\w* \w and|strong="G2532"\w* \w filled|strong="G5526"\w*;” \w yet|strong="G2532"\w* \w you|strong="G5210"\w* didn’\w t|strong="G3588"\w* \w give|strong="G1325"\w* \w them|strong="G3588"\w* \w the|strong="G1722"\w* \w things|strong="G3588"\w* \w the|strong="G1722"\w* \w body|strong="G4983"\w* \w needs|strong="G2006"\w*, \w what|strong="G5101"\w* \w good|strong="G3786"\w* \w is|strong="G3588"\w* \w it|strong="G2532"\w*? +\v 17 \w Even|strong="G2532"\w* \w so|strong="G3779"\w* \w faith|strong="G4102"\w*, \w if|strong="G1437"\w* \w it|strong="G2532"\w* \w has|strong="G2192"\w* \w no|strong="G3361"\w* \w works|strong="G2041"\w*, \w is|strong="G1510"\w* \w dead|strong="G3498"\w* \w in|strong="G2596"\w* \w itself|strong="G1438"\w*. +\v 18 Yes, \w a|strong="G2192"\w* \w man|strong="G5100"\w* \w will|strong="G1473"\w* \w say|strong="G3004"\w*, “\w You|strong="G4771"\w* \w have|strong="G2192"\w* \w faith|strong="G4102"\w*, \w and|strong="G4102"\w* \w I|strong="G1473"\w* \w have|strong="G2192"\w* \w works|strong="G2041"\w*.” \w Show|strong="G1166"\w* \w me|strong="G1473"\w* \w your|strong="G2192"\w* \w faith|strong="G4102"\w* \w without|strong="G5565"\w* \w works|strong="G2041"\w*, \w and|strong="G4102"\w* \w I|strong="G1473"\w* \w will|strong="G1473"\w* \w show|strong="G1166"\w* \w you|strong="G4771"\w* \w my|strong="G1473"\w* \w faith|strong="G4102"\w* \w by|strong="G1537"\w* \w my|strong="G1473"\w* \w works|strong="G2041"\w*. +\p +\v 19 \w You|strong="G4771"\w* \w believe|strong="G4100"\w* \w that|strong="G3754"\w* \w God|strong="G2316"\w* \w is|strong="G1510"\w* \w one|strong="G1520"\w*. \w You|strong="G4771"\w* \w do|strong="G4160"\w* \w well|strong="G2573"\w*. \w The|strong="G2532"\w* \w demons|strong="G1140"\w* \w also|strong="G2532"\w* \w believe|strong="G4100"\w*—\w and|strong="G2532"\w* \w shudder|strong="G5425"\w*. +\v 20 \w But|strong="G1161"\w* \w do|strong="G1510"\w* \w you|strong="G3754"\w* \w want|strong="G2309"\w* \w to|strong="G2309"\w* \w know|strong="G1097"\w*, \w vain|strong="G2756"\w* man, \w that|strong="G3754"\w* \w faith|strong="G4102"\w* \w apart|strong="G5565"\w* \w from|strong="G3588"\w* \w works|strong="G2041"\w* \w is|strong="G1510"\w* dead? +\v 21 Wasn’\w t|strong="G3588"\w* Abraham \w our|strong="G1537"\w* \w father|strong="G3962"\w* \w justified|strong="G1344"\w* \w by|strong="G1537"\w* \w works|strong="G2041"\w*, \w in|strong="G1909"\w* \w that|strong="G3588"\w* \w he|strong="G3588"\w* offered \w up|strong="G1537"\w* \w Isaac|strong="G2464"\w* \w his|strong="G1909"\w* \w son|strong="G5207"\w* \w on|strong="G1909"\w* \w the|strong="G1537"\w* \w altar|strong="G2379"\w*? +\v 22 \w You|strong="G3754"\w* see \w that|strong="G3754"\w* \w faith|strong="G4102"\w* \w worked|strong="G4903"\w* \w with|strong="G1537"\w* \w his|strong="G2532"\w* \w works|strong="G2041"\w*, \w and|strong="G2532"\w* \w by|strong="G1537"\w* \w works|strong="G2041"\w* \w faith|strong="G4102"\w* \w was|strong="G3588"\w* \w perfected|strong="G5048"\w*. +\v 23 \w So|strong="G2532"\w* \w the|strong="G2532"\w* \w Scripture|strong="G1124"\w* \w was|strong="G3588"\w* \w fulfilled|strong="G4137"\w* \w which|strong="G3588"\w* \w says|strong="G3004"\w*, “\w Abraham|strong="G4100"\w* \w believed|strong="G4100"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w it|strong="G2532"\w* \w was|strong="G3588"\w* \w accounted|strong="G3049"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w as|strong="G1519"\w* \w righteousness|strong="G1343"\w*,”\x + \xo 2:23 \xt Genesis 15:6\x* \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w called|strong="G2564"\w* \w the|strong="G2532"\w* \w friend|strong="G5384"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\v 24 \w You|strong="G3754"\w* \w see|strong="G3708"\w* \w then|strong="G2532"\w* \w that|strong="G3754"\w* \w by|strong="G1537"\w* \w works|strong="G2041"\w* \w a|strong="G2532"\w* \w man|strong="G3756"\w* \w is|strong="G3748"\w* \w justified|strong="G1344"\w*, \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w only|strong="G3440"\w* \w by|strong="G1537"\w* \w faith|strong="G4102"\w*. +\v 25 \w In|strong="G2532"\w* \w the|strong="G2532"\w* \w same|strong="G3668"\w* \w way|strong="G3598"\w*, wasn’\w t|strong="G3588"\w* \w Rahab|strong="G4460"\w* \w the|strong="G2532"\w* \w prostitute|strong="G4204"\w* \w also|strong="G2532"\w* \w justified|strong="G1344"\w* \w by|strong="G1537"\w* \w works|strong="G2041"\w* \w when|strong="G1161"\w* \w she|strong="G2532"\w* \w received|strong="G5264"\w* \w the|strong="G2532"\w* messengers \w and|strong="G2532"\w* \w sent|strong="G1544"\w* \w them|strong="G3588"\w* \w out|strong="G1537"\w* \w another|strong="G2087"\w* \w way|strong="G3598"\w*? +\v 26 \w For|strong="G1063"\w* \w as|strong="G5618"\w* \w the|strong="G2532"\w* \w body|strong="G4983"\w* \w apart|strong="G5565"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w spirit|strong="G4151"\w* \w is|strong="G1510"\w* \w dead|strong="G3498"\w*, \w even|strong="G2532"\w* \w so|strong="G3779"\w* \w faith|strong="G4102"\w* \w apart|strong="G5565"\w* \w from|strong="G2532"\w* \w works|strong="G2041"\w* \w is|strong="G1510"\w* \w dead|strong="G3498"\w*. +\c 3 +\p +\v 1 \w Let|strong="G1096"\w* \w not|strong="G3361"\w* \w many|strong="G4183"\w* \w of|strong="G1096"\w* \w you|strong="G3754"\w* \w be|strong="G1096"\w* \w teachers|strong="G1320"\w*, \w my|strong="G1473"\w* brothers, \w knowing|strong="G1492"\w* \w that|strong="G3754"\w* \w we|strong="G3754"\w* \w will|strong="G1473"\w* \w receive|strong="G2983"\w* heavier \w judgment|strong="G2917"\w*. +\v 2 \w For|strong="G1063"\w* \w we|strong="G1063"\w* \w all|strong="G3650"\w* \w stumble|strong="G4417"\w* \w in|strong="G1722"\w* \w many|strong="G4183"\w* \w things|strong="G3778"\w*. \w Anyone|strong="G5100"\w* \w who|strong="G3588"\w* doesn’\w t|strong="G3588"\w* \w stumble|strong="G4417"\w* \w in|strong="G1722"\w* \w word|strong="G3056"\w* \w is|strong="G3588"\w* \w a|strong="G2532"\w* \w perfect|strong="G5046"\w* \w person|strong="G5100"\w*, \w able|strong="G1415"\w* \w to|strong="G2532"\w* \w bridle|strong="G5468"\w* \w the|strong="G1722"\w* \w whole|strong="G3650"\w* \w body|strong="G4983"\w* \w also|strong="G2532"\w*. +\v 3 \w Indeed|strong="G2532"\w*, \w we|strong="G2249"\w* \w put|strong="G3982"\w* \w bits|strong="G5469"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w horses|strong="G2462"\w*’ \w mouths|strong="G4750"\w* \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w may|strong="G2532"\w* \w obey|strong="G3982"\w* \w us|strong="G1519"\w*, \w and|strong="G2532"\w* \w we|strong="G2249"\w* guide \w their|strong="G1438"\w* \w whole|strong="G3650"\w* \w body|strong="G4983"\w*. +\v 4 \w Behold|strong="G2400"\w*,\f + \fr 3:4 \ft “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w the|strong="G2532"\w* \w ships|strong="G4143"\w* \w also|strong="G2532"\w*, \w though|strong="G2532"\w* \w they|strong="G2532"\w* \w are|strong="G1510"\w* \w so|strong="G2532"\w* big \w and|strong="G2532"\w* \w are|strong="G1510"\w* \w driven|strong="G1643"\w* \w by|strong="G5259"\w* \w fierce|strong="G4642"\w* winds, \w are|strong="G1510"\w* \w yet|strong="G2532"\w* guided \w by|strong="G5259"\w* \w a|strong="G2532"\w* \w very|strong="G2532"\w* \w small|strong="G1646"\w* \w rudder|strong="G4079"\w*, \w wherever|strong="G3699"\w* \w the|strong="G2532"\w* \w pilot|strong="G2116"\w* \w desires|strong="G1014"\w*. +\v 5 \w So|strong="G3779"\w* \w the|strong="G2532"\w* \w tongue|strong="G1100"\w* \w is|strong="G1510"\w* \w also|strong="G2532"\w* \w a|strong="G2532"\w* \w little|strong="G3398"\w* \w member|strong="G3196"\w*, \w and|strong="G2532"\w* boasts \w great|strong="G3173"\w* \w things|strong="G3588"\w*. \w See|strong="G3708"\w* \w how|strong="G3779"\w* \w a|strong="G2532"\w* \w small|strong="G3398"\w* \w fire|strong="G4442"\w* can spread \w to|strong="G2532"\w* \w a|strong="G2532"\w* \w large|strong="G3173"\w* \w forest|strong="G5208"\w*! +\v 6 \w And|strong="G2532"\w* \w the|strong="G1722"\w* \w tongue|strong="G1100"\w* \w is|strong="G3588"\w* \w a|strong="G2532"\w* \w fire|strong="G4442"\w*. \w The|strong="G1722"\w* \w world|strong="G2889"\w* \w of|strong="G5259"\w* iniquity \w among|strong="G1722"\w* \w our|strong="G2532"\w* \w members|strong="G3196"\w* \w is|strong="G3588"\w* \w the|strong="G1722"\w* \w tongue|strong="G1100"\w*, \w which|strong="G3588"\w* \w defiles|strong="G4695"\w* \w the|strong="G1722"\w* \w whole|strong="G3650"\w* \w body|strong="G4983"\w*, \w and|strong="G2532"\w* \w sets|strong="G5394"\w* \w on|strong="G1722"\w* \w fire|strong="G4442"\w* \w the|strong="G1722"\w* \w course|strong="G5164"\w* \w of|strong="G5259"\w* \w nature|strong="G1078"\w*, \w and|strong="G2532"\w* \w is|strong="G3588"\w* \w set|strong="G2525"\w* \w on|strong="G1722"\w* \w fire|strong="G4442"\w* \w by|strong="G1722"\w* Gehenna.\f + \fr 3:6 \ft or, Hell\f* +\v 7 \w For|strong="G1063"\w* \w every|strong="G3956"\w* \w kind|strong="G3956"\w* \w of|strong="G2532"\w* animal, \w bird|strong="G4071"\w*, \w creeping|strong="G2532"\w* \w thing|strong="G3956"\w*, \w and|strong="G2532"\w* \w sea|strong="G1724"\w* \w creature|strong="G2342"\w* \w is|strong="G3588"\w* \w tamed|strong="G1150"\w*, \w and|strong="G2532"\w* \w has|strong="G2532"\w* \w been|strong="G2532"\w* \w tamed|strong="G1150"\w* \w by|strong="G2532"\w* mankind; +\v 8 \w but|strong="G1161"\w* \w nobody|strong="G3762"\w* \w can|strong="G1410"\w* \w tame|strong="G1150"\w* \w the|strong="G1161"\w* \w tongue|strong="G1100"\w*. \w It|strong="G1161"\w* \w is|strong="G3588"\w* \w a|strong="G1161"\w* restless \w evil|strong="G2556"\w*, \w full|strong="G3324"\w* \w of|strong="G3324"\w* \w deadly|strong="G2287"\w* \w poison|strong="G2447"\w*. +\v 9 \w With|strong="G1722"\w* \w it|strong="G2532"\w* \w we|strong="G2532"\w* \w bless|strong="G2127"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w Father|strong="G3962"\w*, \w and|strong="G2532"\w* \w with|strong="G1722"\w* \w it|strong="G2532"\w* \w we|strong="G2532"\w* \w curse|strong="G2672"\w* \w men|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w made|strong="G1096"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w image|strong="G3669"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\v 10 \w Out|strong="G1831"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w same|strong="G3778"\w* \w mouth|strong="G4750"\w* \w comes|strong="G1096"\w* \w blessing|strong="G2129"\w* \w and|strong="G2532"\w* \w cursing|strong="G2671"\w*. \w My|strong="G1473"\w* brothers, \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w ought|strong="G5534"\w* \w not|strong="G3756"\w* \w to|strong="G2532"\w* \w be|strong="G1096"\w* \w so|strong="G3779"\w*. +\v 11 \w Does|strong="G1032"\w* \w a|strong="G2532"\w* \w spring|strong="G4077"\w* \w send|strong="G1032"\w* \w out|strong="G1537"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w* \w opening|strong="G3692"\w* \w fresh|strong="G1099"\w* \w and|strong="G2532"\w* \w bitter|strong="G4089"\w* water? +\v 12 \w Can|strong="G1410"\w* \w a|strong="G4160"\w* \w fig|strong="G4808"\w* \w tree|strong="G4808"\w*, \w my|strong="G1473"\w* brothers, \w yield|strong="G4160"\w* \w olives|strong="G1636"\w*, \w or|strong="G2228"\w* \w a|strong="G4160"\w* vine \w figs|strong="G4810"\w*? Thus \w no|strong="G3361"\w* spring yields both salt \w water|strong="G5204"\w* \w and|strong="G4160"\w* \w fresh|strong="G1099"\w* \w water|strong="G5204"\w*. +\p +\v 13 \w Who|strong="G5101"\w* \w is|strong="G3588"\w* \w wise|strong="G4680"\w* \w and|strong="G2532"\w* \w understanding|strong="G1990"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w*? \w Let|strong="G2532"\w* \w him|strong="G3588"\w* \w show|strong="G1166"\w* \w by|strong="G1722"\w* \w his|strong="G1722"\w* \w good|strong="G2570"\w* \w conduct|strong="G2041"\w* \w that|strong="G3588"\w* \w his|strong="G1722"\w* \w deeds|strong="G2041"\w* \w are|strong="G3588"\w* \w done|strong="G2041"\w* \w in|strong="G1722"\w* \w gentleness|strong="G4240"\w* \w of|strong="G1537"\w* \w wisdom|strong="G4678"\w*. +\v 14 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w you|strong="G5210"\w* \w have|strong="G2192"\w* \w bitter|strong="G4089"\w* \w jealousy|strong="G2205"\w* \w and|strong="G2532"\w* \w selfish|strong="G2052"\w* \w ambition|strong="G2052"\w* \w in|strong="G1722"\w* \w your|strong="G2192"\w* \w heart|strong="G2588"\w*, don’\w t|strong="G3588"\w* \w boast|strong="G2620"\w* \w and|strong="G2532"\w* don’\w t|strong="G3588"\w* \w lie|strong="G5574"\w* \w against|strong="G2596"\w* \w the|strong="G1722"\w* truth. +\v 15 \w This|strong="G3778"\w* \w wisdom|strong="G4678"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w comes|strong="G1510"\w* \w down|strong="G2718"\w* \w from|strong="G3756"\w* above, \w but|strong="G3588"\w* \w is|strong="G1510"\w* \w earthly|strong="G1919"\w*, \w sensual|strong="G5591"\w*, \w and|strong="G4678"\w* \w demonic|strong="G1141"\w*. +\v 16 \w For|strong="G1063"\w* \w where|strong="G3699"\w* \w jealousy|strong="G2205"\w* \w and|strong="G2532"\w* \w selfish|strong="G2052"\w* \w ambition|strong="G2052"\w* \w are|strong="G3956"\w*, \w there|strong="G1563"\w* \w is|strong="G3956"\w* confusion \w and|strong="G2532"\w* \w every|strong="G3956"\w* \w evil|strong="G5337"\w* \w deed|strong="G4229"\w*. +\v 17 \w But|strong="G1161"\w* \w the|strong="G2532"\w* \w wisdom|strong="G4678"\w* \w that|strong="G3588"\w* \w is|strong="G1510"\w* \w from|strong="G2532"\w* \w above|strong="G4412"\w* \w is|strong="G1510"\w* \w first|strong="G4413"\w* pure, \w then|strong="G2532"\w* \w peaceful|strong="G1516"\w*, \w gentle|strong="G1933"\w*, \w reasonable|strong="G2138"\w*, \w full|strong="G3324"\w* \w of|strong="G2532"\w* \w mercy|strong="G1656"\w* \w and|strong="G2532"\w* \w good|strong="G3588"\w* \w fruits|strong="G2590"\w*, \w without|strong="G2532"\w* partiality, \w and|strong="G2532"\w* \w without|strong="G2532"\w* hypocrisy. +\v 18 \w Now|strong="G1161"\w* \w the|strong="G1722"\w* \w fruit|strong="G2590"\w* \w of|strong="G1722"\w* \w righteousness|strong="G1343"\w* \w is|strong="G3588"\w* \w sown|strong="G4687"\w* \w in|strong="G1722"\w* \w peace|strong="G1515"\w* \w by|strong="G1722"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w make|strong="G4160"\w* \w peace|strong="G1515"\w*. +\c 4 +\p +\v 1 \w Where|strong="G4159"\w* \w do|strong="G2532"\w* \w wars|strong="G4171"\w* \w and|strong="G2532"\w* \w fightings|strong="G3163"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w* \w come|strong="G2532"\w* \w from|strong="G1537"\w*? Don’\w t|strong="G3588"\w* \w they|strong="G2532"\w* \w come|strong="G2532"\w* \w from|strong="G1537"\w* \w your|strong="G2532"\w* \w pleasures|strong="G2237"\w* \w that|strong="G3588"\w* \w war|strong="G4171"\w* \w in|strong="G1722"\w* \w your|strong="G2532"\w* \w members|strong="G3196"\w*? +\v 2 \w You|strong="G5210"\w* \w lust|strong="G1937"\w*, \w and|strong="G2532"\w* don’\w t|strong="G3588"\w* \w have|strong="G2192"\w*. \w You|strong="G5210"\w* \w murder|strong="G5407"\w* \w and|strong="G2532"\w* \w covet|strong="G1937"\w*, \w and|strong="G2532"\w* \w can|strong="G1410"\w*’\w t|strong="G3588"\w* \w obtain|strong="G2013"\w*. \w You|strong="G5210"\w* \w fight|strong="G3164"\w* \w and|strong="G2532"\w* \w make|strong="G2532"\w* \w war|strong="G4170"\w*. \w You|strong="G5210"\w* don’\w t|strong="G3588"\w* \w have|strong="G2192"\w*, \w because|strong="G1223"\w* \w you|strong="G5210"\w* don’\w t|strong="G3588"\w* ask. +\v 3 \w You|strong="G5210"\w* ask, \w and|strong="G2532"\w* don’\w t|strong="G3588"\w* \w receive|strong="G2983"\w*, \w because|strong="G1360"\w* \w you|strong="G5210"\w* ask \w with|strong="G1722"\w* \w wrong|strong="G2560"\w* \w motives|strong="G2560"\w*, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w may|strong="G2532"\w* \w spend|strong="G1159"\w* \w it|strong="G2532"\w* \w on|strong="G1722"\w* \w your|strong="G2532"\w* \w pleasures|strong="G2237"\w*. +\v 4 \w You|strong="G3739"\w* \w adulterers|strong="G3428"\w* \w and|strong="G2316"\w* \w adulteresses|strong="G3428"\w*, don’\w t|strong="G3588"\w* \w you|strong="G3739"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w friendship|strong="G5373"\w* \w with|strong="G2316"\w* \w the|strong="G3588"\w* \w world|strong="G2889"\w* \w is|strong="G1510"\w* \w hostility|strong="G2189"\w* \w toward|strong="G2189"\w* \w God|strong="G2316"\w*? \w Whoever|strong="G3739"\w* \w therefore|strong="G3767"\w* wants \w to|strong="G1014"\w* \w be|strong="G1510"\w* \w a|strong="G1510"\w* \w friend|strong="G5384"\w* \w of|strong="G2316"\w* \w the|strong="G3588"\w* \w world|strong="G2889"\w* \w makes|strong="G2525"\w* himself \w an|strong="G1510"\w* \w enemy|strong="G2190"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\v 5 \w Or|strong="G2228"\w* \w do|strong="G1380"\w* \w you|strong="G3739"\w* \w think|strong="G1380"\w* \w that|strong="G3754"\w* \w the|strong="G1722"\w* \w Scripture|strong="G1124"\w* \w says|strong="G3004"\w* \w in|strong="G1722"\w* \w vain|strong="G2761"\w*, “\w The|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w who|strong="G3739"\w* \w lives|strong="G2730"\w* \w in|strong="G1722"\w* \w us|strong="G3004"\w* yearns \w jealously|strong="G5355"\w*”? +\v 6 \w But|strong="G1161"\w* \w he|strong="G1161"\w* \w gives|strong="G1325"\w* \w more|strong="G3173"\w* \w grace|strong="G5485"\w*. \w Therefore|strong="G1352"\w* \w it|strong="G1161"\w* \w says|strong="G3004"\w*, “\w God|strong="G2316"\w* resists \w the|strong="G1161"\w* \w proud|strong="G5244"\w*, \w but|strong="G1161"\w* \w gives|strong="G1325"\w* \w grace|strong="G5485"\w* \w to|strong="G3004"\w* \w the|strong="G1161"\w* \w humble|strong="G5011"\w*.”\x + \xo 4:6 \xt Proverbs 3:34\x* +\v 7 \w Be|strong="G2532"\w* \w subject|strong="G5293"\w* \w therefore|strong="G3767"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w*. Resist \w the|strong="G2532"\w* \w devil|strong="G1228"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w will|strong="G2316"\w* \w flee|strong="G5343"\w* \w from|strong="G2532"\w* \w you|strong="G5210"\w*. +\v 8 \w Draw|strong="G1448"\w* \w near|strong="G1448"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w will|strong="G2316"\w* \w draw|strong="G1448"\w* \w near|strong="G1448"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*. \w Cleanse|strong="G2511"\w* \w your|strong="G2532"\w* \w hands|strong="G5495"\w*, \w you|strong="G5210"\w* sinners. \w Purify|strong="G2511"\w* \w your|strong="G2532"\w* \w hearts|strong="G2588"\w*, \w you|strong="G5210"\w* \w double-minded|strong="G1374"\w*. +\v 9 Lament, \w mourn|strong="G3996"\w*, \w and|strong="G2532"\w* \w weep|strong="G2799"\w*. \w Let|strong="G2532"\w* \w your|strong="G2532"\w* \w laughter|strong="G1071"\w* \w be|strong="G2532"\w* \w turned|strong="G3344"\w* \w to|strong="G1519"\w* \w mourning|strong="G3997"\w* \w and|strong="G2532"\w* \w your|strong="G2532"\w* \w joy|strong="G5479"\w* \w to|strong="G1519"\w* \w gloom|strong="G2726"\w*. +\v 10 \w Humble|strong="G5013"\w* \w yourselves|strong="G4771"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w sight|strong="G1799"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w will|strong="G2532"\w* \w exalt|strong="G5312"\w* \w you|strong="G5210"\w*. +\p +\v 11 Don’\w t|strong="G3588"\w* \w speak|strong="G2635"\w* \w against|strong="G2635"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w*, brothers. \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w speaks|strong="G2635"\w* \w against|strong="G2635"\w* \w a|strong="G2532"\w* brother \w and|strong="G2532"\w* \w judges|strong="G2919"\w* \w his|strong="G2532"\w* brother, \w speaks|strong="G2635"\w* \w against|strong="G2635"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w* \w and|strong="G2532"\w* \w judges|strong="G2919"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w*. \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w you|strong="G1487"\w* \w judge|strong="G2919"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w*, \w you|strong="G1487"\w* \w are|strong="G1510"\w* \w not|strong="G3756"\w* \w a|strong="G2532"\w* \w doer|strong="G4163"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w law|strong="G3551"\w* \w but|strong="G1161"\w* \w a|strong="G2532"\w* \w judge|strong="G2919"\w*. +\v 12 \w Only|strong="G2532"\w* \w one|strong="G1520"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w lawgiver|strong="G3550"\w*, \w who|strong="G5101"\w* \w is|strong="G1510"\w* \w able|strong="G1410"\w* \w to|strong="G2532"\w* \w save|strong="G4982"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* destroy. \w But|strong="G1161"\w* \w who|strong="G5101"\w* \w are|strong="G1510"\w* \w you|strong="G4771"\w* \w to|strong="G2532"\w* \w judge|strong="G2919"\w* \w another|strong="G1520"\w*? +\p +\v 13 \w Come|strong="G2532"\w* \w now|strong="G3568"\w*, \w you|strong="G3004"\w* \w who|strong="G3588"\w* \w say|strong="G3004"\w*, “\w Today|strong="G4594"\w* \w or|strong="G2228"\w* tomorrow \w let|strong="G2532"\w*’s \w go|strong="G4198"\w* \w into|strong="G1519"\w* \w this|strong="G3588"\w* \w city|strong="G4172"\w* \w and|strong="G2532"\w* \w spend|strong="G4160"\w* \w a|strong="G2532"\w* \w year|strong="G1763"\w* \w there|strong="G1563"\w*, trade, \w and|strong="G2532"\w* \w make|strong="G4160"\w* \w a|strong="G2532"\w* \w profit|strong="G2770"\w*.” +\v 14 \w Yet|strong="G2532"\w* \w you|strong="G5210"\w* don’\w t|strong="G3588"\w* \w know|strong="G1987"\w* \w what|strong="G4169"\w* \w your|strong="G2532"\w* \w life|strong="G2222"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w like|strong="G4314"\w* tomorrow. \w For|strong="G1063"\w* \w what|strong="G4169"\w* \w is|strong="G1510"\w* \w your|strong="G2532"\w* \w life|strong="G2222"\w*? \w For|strong="G1063"\w* \w you|strong="G5210"\w* \w are|strong="G1510"\w* \w a|strong="G2532"\w* vapor \w that|strong="G3588"\w* \w appears|strong="G5316"\w* \w for|strong="G1063"\w* \w a|strong="G2532"\w* \w little|strong="G3641"\w* \w time|strong="G3641"\w* \w and|strong="G2532"\w* \w then|strong="G2532"\w* vanishes away. +\v 15 \w For|strong="G2532"\w* \w you|strong="G5210"\w* ought \w to|strong="G2532"\w* \w say|strong="G3004"\w*, “\w If|strong="G1437"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w wills|strong="G2309"\w*, \w we|strong="G1437"\w* \w will|strong="G2309"\w* \w both|strong="G2532"\w* \w live|strong="G2198"\w*, \w and|strong="G2532"\w* \w do|strong="G4160"\w* \w this|strong="G3778"\w* \w or|strong="G2228"\w* \w that|strong="G3588"\w*.” +\v 16 \w But|strong="G1161"\w* \w now|strong="G1161"\w* \w you|strong="G5210"\w* \w glory|strong="G2744"\w* \w in|strong="G1722"\w* \w your|strong="G3956"\w* \w boasting|strong="G2746"\w*. \w All|strong="G3956"\w* \w such|strong="G5108"\w* \w boasting|strong="G2746"\w* \w is|strong="G1510"\w* \w evil|strong="G4190"\w*. +\v 17 \w To|strong="G2532"\w* \w him|strong="G4160"\w* \w therefore|strong="G3767"\w* \w who|strong="G2532"\w* \w knows|strong="G1492"\w* \w to|strong="G2532"\w* \w do|strong="G4160"\w* \w good|strong="G2570"\w* \w and|strong="G2532"\w* doesn’t \w do|strong="G4160"\w* \w it|strong="G2532"\w*, \w to|strong="G2532"\w* \w him|strong="G4160"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* sin. +\c 5 +\p +\v 1 \w Come|strong="G1904"\w* \w now|strong="G3568"\w*, \w you|strong="G5210"\w* \w rich|strong="G4145"\w*, \w weep|strong="G2799"\w* \w and|strong="G2799"\w* \w howl|strong="G3649"\w* \w for|strong="G1909"\w* \w your|strong="G1909"\w* \w miseries|strong="G5004"\w* \w that|strong="G3588"\w* \w are|strong="G3588"\w* \w coming|strong="G1904"\w* \w on|strong="G1909"\w* \w you|strong="G5210"\w*. +\v 2 \w Your|strong="G2532"\w* \w riches|strong="G4149"\w* \w are|strong="G3588"\w* \w corrupted|strong="G4595"\w* \w and|strong="G2532"\w* \w your|strong="G2532"\w* \w garments|strong="G2440"\w* \w are|strong="G3588"\w* \w moth-eaten|strong="G4598"\w*. +\v 3 \w Your|strong="G2532"\w* \w gold|strong="G5557"\w* \w and|strong="G2532"\w* \w your|strong="G2532"\w* silver \w are|strong="G1510"\w* corroded, \w and|strong="G2532"\w* \w their|strong="G2532"\w* corrosion \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w for|strong="G1519"\w* \w a|strong="G5613"\w* \w testimony|strong="G3142"\w* \w against|strong="G1519"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w will|strong="G1510"\w* \w eat|strong="G2068"\w* \w your|strong="G2532"\w* \w flesh|strong="G4561"\w* \w like|strong="G5613"\w* \w fire|strong="G4442"\w*. \w You|strong="G5210"\w* \w have|strong="G2532"\w* \w laid|strong="G2532"\w* \w up|strong="G2343"\w* \w your|strong="G2532"\w* \w treasure|strong="G2343"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w last|strong="G2078"\w* \w days|strong="G2250"\w*. +\v 4 \w Behold|strong="G2400"\w*, \w the|strong="G2532"\w* \w wages|strong="G3408"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w laborers|strong="G2040"\w* \w who|strong="G3588"\w* mowed \w your|strong="G2962"\w* \w fields|strong="G5561"\w*, \w which|strong="G3588"\w* \w you|strong="G5210"\w* \w have|strong="G2532"\w* \w kept|strong="G2532"\w* \w back|strong="G1519"\w* \w by|strong="G2532"\w* fraud, \w cry|strong="G2896"\w* \w out|strong="G2896"\w*; \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w cries|strong="G2896"\w* \w of|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w reaped|strong="G2325"\w* \w have|strong="G2532"\w* \w entered|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w ears|strong="G3775"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w of|strong="G2532"\w* Armies.\f + \fr 5:4 \ft Greek: Sabaoth (or Hebrew: Tze’va’ot)\f* +\v 5 \w You|strong="G5210"\w* \w have|strong="G2532"\w* \w lived|strong="G2532"\w* \w in|strong="G1722"\w* luxury \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w*, \w and|strong="G2532"\w* taken \w your|strong="G2532"\w* \w pleasure|strong="G4684"\w*. \w You|strong="G5210"\w* \w have|strong="G2532"\w* \w nourished|strong="G5142"\w* \w your|strong="G2532"\w* \w hearts|strong="G2588"\w* \w as|strong="G1722"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* \w slaughter|strong="G4967"\w*. +\v 6 \w You|strong="G5210"\w* \w have|strong="G5210"\w* \w condemned|strong="G2613"\w* \w and|strong="G1342"\w* \w you|strong="G5210"\w* \w have|strong="G5210"\w* \w murdered|strong="G5407"\w* \w the|strong="G3588"\w* \w righteous|strong="G1342"\w* \w one|strong="G3588"\w*. \w He|strong="G3588"\w* doesn’\w t|strong="G3588"\w* resist \w you|strong="G5210"\w*. +\p +\v 7 \w Be|strong="G2532"\w* \w patient|strong="G3114"\w* \w therefore|strong="G3767"\w*, brothers, \w until|strong="G2193"\w* \w the|strong="G2532"\w* \w coming|strong="G3952"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*. \w Behold|strong="G2400"\w*, \w the|strong="G2532"\w* \w farmer|strong="G1092"\w* \w waits|strong="G1551"\w* \w for|strong="G1909"\w* \w the|strong="G2532"\w* \w precious|strong="G5093"\w* \w fruit|strong="G2590"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w being|strong="G2532"\w* \w patient|strong="G3114"\w* \w over|strong="G1909"\w* \w it|strong="G2532"\w*, \w until|strong="G2193"\w* \w it|strong="G2532"\w* \w receives|strong="G2983"\w* \w the|strong="G2532"\w* \w early|strong="G4406"\w* \w and|strong="G2532"\w* \w late|strong="G3797"\w* rain. +\v 8 \w You|strong="G5210"\w* \w also|strong="G2532"\w* \w be|strong="G2532"\w* \w patient|strong="G3114"\w*. \w Establish|strong="G4741"\w* \w your|strong="G2962"\w* \w hearts|strong="G2588"\w*, \w for|strong="G3754"\w* \w the|strong="G2532"\w* \w coming|strong="G3952"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w is|strong="G3588"\w* \w at|strong="G3588"\w* \w hand|strong="G1448"\w*. +\p +\v 9 Don’\w t|strong="G3588"\w* \w grumble|strong="G4727"\w*, brothers, \w against|strong="G2596"\w* \w one|strong="G3588"\w* \w another|strong="G2596"\w*, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w you|strong="G3708"\w* won’\w t|strong="G3588"\w* \w be|strong="G3361"\w* \w judged|strong="G2919"\w*. \w Behold|strong="G2400"\w*, \w the|strong="G2596"\w* \w judge|strong="G2919"\w* \w stands|strong="G2476"\w* \w at|strong="G2596"\w* \w the|strong="G2596"\w* \w door|strong="G2374"\w*. +\v 10 \w Take|strong="G2983"\w*, brothers, \w for|strong="G1722"\w* \w an|strong="G2532"\w* \w example|strong="G5262"\w* \w of|strong="G2532"\w* \w suffering|strong="G1722"\w* \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w perseverance|strong="G3115"\w*, \w the|strong="G1722"\w* \w prophets|strong="G4396"\w* \w who|strong="G3739"\w* \w spoke|strong="G2980"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*. +\v 11 \w Behold|strong="G2400"\w*, \w we|strong="G3754"\w* \w call|strong="G2532"\w* \w them|strong="G3588"\w* \w blessed|strong="G3106"\w* \w who|strong="G3588"\w* \w endured|strong="G5278"\w*. \w You|strong="G3754"\w* \w have|strong="G2532"\w* heard \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w perseverance|strong="G5281"\w* \w of|strong="G2532"\w* \w Job|strong="G2492"\w* \w and|strong="G2532"\w* \w have|strong="G2532"\w* \w seen|strong="G3708"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w outcome|strong="G5056"\w*, \w and|strong="G2532"\w* \w how|strong="G3754"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w is|strong="G1510"\w* \w full|strong="G4184"\w* \w of|strong="G2532"\w* \w compassion|strong="G4184"\w* \w and|strong="G2532"\w* \w mercy|strong="G3629"\w*. +\p +\v 12 \w But|strong="G1161"\w* \w above|strong="G4253"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w my|strong="G3956"\w* brothers, don’\w t|strong="G3588"\w* \w swear|strong="G3660"\w*—\w not|strong="G3756"\w* \w by|strong="G5259"\w* \w heaven|strong="G3772"\w*, \w or|strong="G2532"\w* \w by|strong="G5259"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w or|strong="G2532"\w* \w by|strong="G5259"\w* \w any|strong="G5100"\w* \w other|strong="G1161"\w* \w oath|strong="G3727"\w*; \w but|strong="G1161"\w* \w let|strong="G1161"\w* \w your|strong="G2532"\w* “\w yes|strong="G3483"\w*” \w be|strong="G1510"\w* “\w yes|strong="G3483"\w*”, \w and|strong="G2532"\w* \w your|strong="G2532"\w* “\w no|strong="G3756"\w*”, “\w no|strong="G3756"\w*”, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w you|strong="G5210"\w* don’\w t|strong="G3588"\w* \w fall|strong="G4098"\w* \w into|strong="G5259"\w* hypocrisy.\f + \fr 5:12 \ft TR reads “under judgment” instead of “into hypocrisy”\f* +\p +\v 13 \w Is|strong="G5100"\w* \w any|strong="G5100"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w* \w suffering|strong="G2553"\w*? Let \w him|strong="G1722"\w* \w pray|strong="G4336"\w*. \w Is|strong="G5100"\w* \w any|strong="G5100"\w* \w cheerful|strong="G2114"\w*? Let \w him|strong="G1722"\w* \w sing|strong="G5567"\w* \w praises|strong="G5567"\w*. +\v 14 \w Is|strong="G3588"\w* \w any|strong="G5100"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w* sick? \w Let|strong="G2532"\w* \w him|strong="G3588"\w* \w call|strong="G4341"\w* \w for|strong="G1909"\w* \w the|strong="G1722"\w* \w elders|strong="G4245"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w assembly|strong="G1577"\w*, \w and|strong="G2532"\w* \w let|strong="G2532"\w* \w them|strong="G3588"\w* \w pray|strong="G4336"\w* \w over|strong="G1909"\w* \w him|strong="G3588"\w*, anointing \w him|strong="G3588"\w* \w with|strong="G1722"\w* \w oil|strong="G1637"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w*; +\v 15 \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w prayer|strong="G2171"\w* \w of|strong="G2532"\w* \w faith|strong="G4102"\w* \w will|strong="G1510"\w* heal \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w sick|strong="G2577"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w will|strong="G1510"\w* \w raise|strong="G1453"\w* \w him|strong="G3588"\w* \w up|strong="G1453"\w*. \w If|strong="G2579"\w* \w he|strong="G2532"\w* \w has|strong="G2962"\w* \w committed|strong="G4160"\w* sins, \w he|strong="G2532"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* forgiven. +\v 16 \w Confess|strong="G1843"\w* \w your|strong="G2532"\w* sins \w to|strong="G2532"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w* \w and|strong="G2532"\w* \w pray|strong="G2172"\w* \w for|strong="G5228"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w*, \w that|strong="G3588"\w* \w you|strong="G2532"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* \w healed|strong="G2390"\w*. \w The|strong="G2532"\w* insistent \w prayer|strong="G1162"\w* \w of|strong="G2532"\w* \w a|strong="G2532"\w* \w righteous|strong="G1342"\w* \w person|strong="G1342"\w* \w is|strong="G3588"\w* powerfully \w effective|strong="G1754"\w*. +\v 17 \w Elijah|strong="G2243"\w* \w was|strong="G1510"\w* \w a|strong="G2532"\w* \w man|strong="G3361"\w* \w with|strong="G2532"\w* \w a|strong="G2532"\w* \w nature|strong="G3663"\w* \w like|strong="G3663"\w* \w ours|strong="G1473"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w prayed|strong="G4336"\w* \w earnestly|strong="G4335"\w* \w that|strong="G3588"\w* \w it|strong="G2532"\w* \w might|strong="G2532"\w* \w not|strong="G3756"\w* \w rain|strong="G1026"\w*, \w and|strong="G2532"\w* \w it|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w rain|strong="G1026"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w for|strong="G1909"\w* \w three|strong="G5140"\w* \w years|strong="G1763"\w* \w and|strong="G2532"\w* \w six|strong="G1803"\w* \w months|strong="G3376"\w*. +\v 18 \w He|strong="G2532"\w* \w prayed|strong="G4336"\w* \w again|strong="G3825"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w* \w gave|strong="G1325"\w* \w rain|strong="G5205"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w produced|strong="G1325"\w* \w its|strong="G1325"\w* \w fruit|strong="G2590"\w*. +\p +\v 19 Brothers, \w if|strong="G1437"\w* \w any|strong="G5100"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w* \w wanders|strong="G4105"\w* \w from|strong="G2532"\w* \w the|strong="G1722"\w* truth \w and|strong="G2532"\w* \w someone|strong="G5100"\w* \w turns|strong="G1994"\w* \w him|strong="G3588"\w* \w back|strong="G1994"\w*, +\v 20 \w let|strong="G1097"\w* \w him|strong="G3588"\w* \w know|strong="G1097"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w turns|strong="G1994"\w* \w a|strong="G2532"\w* sinner \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w error|strong="G4106"\w* \w of|strong="G1537"\w* \w his|strong="G2532"\w* \w way|strong="G3598"\w* \w will|strong="G2532"\w* \w save|strong="G4982"\w* \w a|strong="G2532"\w* \w soul|strong="G5590"\w* \w from|strong="G1537"\w* \w death|strong="G2288"\w* \w and|strong="G2532"\w* \w will|strong="G2532"\w* \w cover|strong="G2572"\w* \w a|strong="G2532"\w* \w multitude|strong="G4128"\w* \w of|strong="G1537"\w* sins. \ No newline at end of file diff --git a/bibles/eng-web_usfm/90-1PEeng-web.usfm b/bibles/eng-web_usfm/90-1PEeng-web.usfm new file mode 100644 index 0000000..d58446f --- /dev/null +++ b/bibles/eng-web_usfm/90-1PEeng-web.usfm @@ -0,0 +1,162 @@ +\id 1PE 60-1PE-web.sfm World English Bible (WEB) +\ide UTF-8 +\h 1 Peter +\toc1 Peter’s First Letter +\toc2 1 Peter +\toc3 1Pe +\mt1 Peter’s First Letter +\c 1 +\p +\v 1 \w Peter|strong="G4074"\w*, \w an|strong="G2532"\w* apostle \w of|strong="G2532"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*,\f + \fr 1:1 \ft “Christ” means “Anointed One”.\f* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w chosen|strong="G1588"\w* ones \w who|strong="G2532"\w* \w are|strong="G2532"\w* living \w as|strong="G2532"\w* \w foreigners|strong="G3927"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w Dispersion|strong="G1290"\w* \w in|strong="G2532"\w* \w Pontus|strong="G4195"\w*, \w Galatia|strong="G1053"\w*, \w Cappadocia|strong="G2587"\w*, Asia, \w and|strong="G2532"\w* Bithynia, +\v 2 \w according|strong="G2596"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w foreknowledge|strong="G4268"\w* \w of|strong="G4151"\w* \w God|strong="G2316"\w* \w the|strong="G1722"\w* \w Father|strong="G3962"\w*, \w in|strong="G1722"\w* sanctification \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w*, \w that|strong="G2532"\w* \w you|strong="G5210"\w* \w may|strong="G2532"\w* \w obey|strong="G5218"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w and|strong="G2532"\w* \w be|strong="G2532"\w* \w sprinkled|strong="G4473"\w* \w with|strong="G1722"\w* \w his|strong="G1519"\w* blood: \w Grace|strong="G5485"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w peace|strong="G1515"\w* \w be|strong="G2532"\w* \w multiplied|strong="G4129"\w*. +\p +\v 3 \w Blessed|strong="G2128"\w* \w be|strong="G2532"\w* \w the|strong="G2532"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w Father|strong="G3962"\w* \w of|strong="G1537"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w who|strong="G3588"\w* \w according|strong="G2596"\w* \w to|strong="G1519"\w* \w his|strong="G1223"\w* \w great|strong="G4183"\w* \w mercy|strong="G1656"\w* caused \w us|strong="G1519"\w* \w to|strong="G1519"\w* \w be|strong="G2532"\w* born \w again|strong="G1519"\w* \w to|strong="G1519"\w* \w a|strong="G2532"\w* \w living|strong="G2198"\w* \w hope|strong="G1680"\w* \w through|strong="G1223"\w* \w the|strong="G2532"\w* resurrection \w of|strong="G1537"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*, +\v 4 \w to|strong="G1519"\w* \w an|strong="G2532"\w* incorruptible \w and|strong="G2532"\w* undefiled \w inheritance|strong="G2817"\w* \w that|strong="G2532"\w* doesn’t fade away, \w reserved|strong="G5083"\w* \w in|strong="G1722"\w* \w Heaven|strong="G3772"\w* \w for|strong="G1519"\w* \w you|strong="G5210"\w*, +\v 5 \w who|strong="G3588"\w* \w by|strong="G1223"\w* \w the|strong="G1722"\w* \w power|strong="G1411"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w* \w are|strong="G3588"\w* guarded \w through|strong="G1223"\w* \w faith|strong="G4102"\w* \w for|strong="G1519"\w* \w a|strong="G1519"\w* \w salvation|strong="G4991"\w* \w ready|strong="G2092"\w* \w to|strong="G1519"\w* \w be|strong="G1519"\w* revealed \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w last|strong="G2078"\w* \w time|strong="G2540"\w*. +\v 6 \w In|strong="G1722"\w* \w this|strong="G3739"\w* \w you|strong="G3739"\w* greatly rejoice, \w though|strong="G1487"\w* \w now|strong="G1722"\w* \w for|strong="G1722"\w* \w a|strong="G1722"\w* \w little|strong="G3641"\w* \w while|strong="G1722"\w*, \w if|strong="G1487"\w* \w need|strong="G1487"\w* \w be|strong="G1163"\w*, \w you|strong="G3739"\w* \w have|strong="G1163"\w* \w been|strong="G1210"\w* \w grieved|strong="G3076"\w* \w in|strong="G1722"\w* \w various|strong="G4164"\w* \w trials|strong="G3986"\w*, +\v 7 \w that|strong="G2443"\w* \w the|strong="G1722"\w* \w proof|strong="G4102"\w* \w of|strong="G1223"\w* \w your|strong="G1223"\w* \w faith|strong="G4102"\w*, \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w more|strong="G2532"\w* \w precious|strong="G5092"\w* \w than|strong="G2532"\w* \w gold|strong="G5553"\w* \w that|strong="G2443"\w* perishes, \w even|strong="G2532"\w* \w though|strong="G2532"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w tested|strong="G1381"\w* \w by|strong="G1223"\w* \w fire|strong="G4442"\w*, \w may|strong="G2532"\w* \w be|strong="G2532"\w* \w found|strong="G2147"\w* \w to|strong="G1519"\w* \w result|strong="G1519"\w* \w in|strong="G1722"\w* \w praise|strong="G1868"\w*, \w glory|strong="G1391"\w*, \w and|strong="G2532"\w* \w honor|strong="G5092"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* revelation \w of|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*— +\v 8 \w whom|strong="G3739"\w*, \w not|strong="G3756"\w* \w having|strong="G2532"\w* known, \w you|strong="G3739"\w* love. \w In|strong="G1519"\w* \w him|strong="G3739"\w*, \w though|strong="G2532"\w* \w now|strong="G1161"\w* \w you|strong="G3739"\w* don’t \w see|strong="G3708"\w* \w him|strong="G3739"\w*, \w yet|strong="G2532"\w* \w believing|strong="G4100"\w*, \w you|strong="G3739"\w* \w rejoice|strong="G2532"\w* \w greatly|strong="G5479"\w* \w with|strong="G2532"\w* \w joy|strong="G5479"\w* \w that|strong="G3739"\w* \w is|strong="G3739"\w* unspeakable \w and|strong="G2532"\w* \w full|strong="G1392"\w* \w of|strong="G2532"\w* \w glory|strong="G1392"\w*, +\v 9 \w receiving|strong="G2865"\w* \w the|strong="G3588"\w* result \w of|strong="G4102"\w* \w your|strong="G3588"\w* \w faith|strong="G4102"\w*, \w the|strong="G3588"\w* \w salvation|strong="G4991"\w* \w of|strong="G4102"\w* \w your|strong="G3588"\w* \w souls|strong="G5590"\w*. +\p +\v 10 \w Concerning|strong="G4012"\w* \w this|strong="G3588"\w* \w salvation|strong="G4991"\w*, \w the|strong="G2532"\w* \w prophets|strong="G4396"\w* \w sought|strong="G1567"\w* \w and|strong="G2532"\w* \w searched|strong="G1567"\w* \w diligently|strong="G1830"\w*. \w They|strong="G2532"\w* \w prophesied|strong="G4395"\w* \w of|strong="G4012"\w* \w the|strong="G2532"\w* \w grace|strong="G5485"\w* \w that|strong="G3739"\w* \w would|strong="G2532"\w* \w come|strong="G2532"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w*, +\v 11 \w searching|strong="G2045"\w* \w for|strong="G1519"\w* \w who|strong="G5101"\w* \w or|strong="G2228"\w* \w what|strong="G5101"\w* \w kind|strong="G4169"\w* \w of|strong="G4151"\w* \w time|strong="G2540"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w Christ|strong="G5547"\w* \w which|strong="G3588"\w* \w was|strong="G3588"\w* \w in|strong="G1722"\w* \w them|strong="G3588"\w* pointed \w to|strong="G1519"\w* \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w predicted|strong="G4303"\w* \w the|strong="G1722"\w* \w sufferings|strong="G3804"\w* \w of|strong="G4151"\w* \w Christ|strong="G5547"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w glories|strong="G1391"\w* \w that|strong="G3588"\w* \w would|strong="G2532"\w* \w follow|strong="G3326"\w* \w them|strong="G3588"\w*. +\v 12 \w To|strong="G1519"\w* \w them|strong="G3588"\w* \w it|strong="G3754"\w* \w was|strong="G3588"\w* revealed \w that|strong="G3754"\w* \w they|strong="G1161"\w* \w served|strong="G1247"\w* \w not|strong="G3756"\w* \w themselves|strong="G1438"\w*, \w but|strong="G1161"\w* \w you|strong="G5210"\w*, \w in|strong="G1722"\w* \w these|strong="G3739"\w* \w things|strong="G3588"\w*, \w which|strong="G3739"\w* \w now|strong="G1161"\w* \w have|strong="G3748"\w* \w been|strong="G3568"\w* announced \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w through|strong="G1223"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w preached|strong="G2097"\w* \w the|strong="G1722"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w by|strong="G1223"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w* \w sent|strong="G4151"\w* \w out|strong="G1438"\w* \w from|strong="G3756"\w* \w heaven|strong="G3772"\w*; \w which|strong="G3739"\w* \w things|strong="G3588"\w* angels \w desire|strong="G1937"\w* \w to|strong="G1519"\w* \w look|strong="G3879"\w* \w into|strong="G1519"\w*. +\p +\v 13 \w Therefore|strong="G1352"\w* prepare \w your|strong="G1909"\w* \w minds|strong="G1271"\w* \w for|strong="G1909"\w* action.\f + \fr 1:13 \ft literally, “gird up the waist of your mind” or “put on the belt of the waist of your mind”\f* \w Be|strong="G3588"\w* \w sober|strong="G3525"\w*, \w and|strong="G2424"\w* \w set|strong="G1679"\w* \w your|strong="G1909"\w* \w hope|strong="G1679"\w* fully \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w grace|strong="G5485"\w* \w that|strong="G3588"\w* \w will|strong="G5547"\w* \w be|strong="G3588"\w* \w brought|strong="G5342"\w* \w to|strong="G1909"\w* \w you|strong="G5210"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* revelation \w of|strong="G5485"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*— +\v 14 \w as|strong="G5613"\w* \w children|strong="G5043"\w* \w of|strong="G1722"\w* \w obedience|strong="G5218"\w*, \w not|strong="G3361"\w* conforming \w yourselves|strong="G4771"\w* \w according|strong="G5613"\w* \w to|strong="G1722"\w* \w your|strong="G1722"\w* \w former|strong="G4387"\w* \w lusts|strong="G1939"\w* \w as|strong="G5613"\w* \w in|strong="G1722"\w* \w your|strong="G1722"\w* ignorance, +\v 15 \w but|strong="G2532"\w* \w just|strong="G2532"\w* \w as|strong="G1722"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w called|strong="G2564"\w* \w you|strong="G5210"\w* \w is|strong="G3588"\w* holy, \w you|strong="G5210"\w* \w yourselves|strong="G4771"\w* \w also|strong="G2532"\w* \w be|strong="G1096"\w* holy \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w of|strong="G2532"\w* \w your|strong="G2532"\w* behavior, +\v 16 \w because|strong="G1360"\w* \w it|strong="G1510"\w* \w is|strong="G1510"\w* \w written|strong="G1125"\w*, “\w You|strong="G1510"\w* \w shall|strong="G3748"\w* \w be|strong="G1510"\w* holy, \w for|strong="G1360"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* holy.”\x + \xo 1:16 \xt Leviticus 11:44-45\x* +\p +\v 17 \w If|strong="G1487"\w* \w you|strong="G5210"\w* \w call|strong="G1941"\w* \w on|strong="G1722"\w* \w him|strong="G3588"\w* \w as|strong="G1722"\w* \w Father|strong="G3962"\w*, \w who|strong="G3588"\w* \w without|strong="G2532"\w* \w respect|strong="G5401"\w* \w of|strong="G2532"\w* persons \w judges|strong="G2919"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w each|strong="G1538"\w* \w man|strong="G1538"\w*’s \w work|strong="G2041"\w*, \w pass|strong="G2919"\w* \w the|strong="G1722"\w* \w time|strong="G5550"\w* \w of|strong="G2532"\w* \w your|strong="G2532"\w* living \w as|strong="G1722"\w* foreigners \w here|strong="G1722"\w* \w in|strong="G1722"\w* reverent \w fear|strong="G5401"\w*, +\v 18 \w knowing|strong="G1492"\w* \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w were|strong="G3588"\w* \w redeemed|strong="G3084"\w*, \w not|strong="G3756"\w* \w with|strong="G1537"\w* \w corruptible|strong="G5349"\w* \w things|strong="G3588"\w* \w like|strong="G5349"\w* silver \w or|strong="G2228"\w* \w gold|strong="G5553"\w*, \w from|strong="G1537"\w* \w the|strong="G1537"\w* \w useless|strong="G3152"\w* \w way|strong="G1537"\w* \w of|strong="G1537"\w* life handed \w down|strong="G1537"\w* \w from|strong="G1537"\w* \w your|strong="G3588"\w* \w fathers|strong="G3970"\w*, +\v 19 \w but|strong="G2532"\w* \w with|strong="G2532"\w* \w precious|strong="G5093"\w* blood, \w as|strong="G5613"\w* \w of|strong="G2532"\w* \w a|strong="G5613"\w* lamb \w without|strong="G2532"\w* blemish \w or|strong="G2532"\w* spot, \w the|strong="G2532"\w* blood \w of|strong="G2532"\w* \w Christ|strong="G5547"\w*, +\v 20 \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w foreknown|strong="G4267"\w* \w indeed|strong="G3303"\w* \w before|strong="G4253"\w* \w the|strong="G1161"\w* \w foundation|strong="G2602"\w* \w of|strong="G1223"\w* \w the|strong="G1161"\w* \w world|strong="G2889"\w*, \w but|strong="G1161"\w* \w was|strong="G3588"\w* \w revealed|strong="G5319"\w* \w in|strong="G1909"\w* \w this|strong="G3588"\w* \w last|strong="G2078"\w* \w age|strong="G2889"\w* \w for|strong="G1223"\w* \w your|strong="G1223"\w* \w sake|strong="G1223"\w*, +\v 21 \w who|strong="G3588"\w* \w through|strong="G1223"\w* \w him|strong="G3588"\w* \w are|strong="G1510"\w* \w believers|strong="G4103"\w* \w in|strong="G1519"\w* \w God|strong="G2316"\w*, \w who|strong="G3588"\w* \w raised|strong="G1453"\w* \w him|strong="G3588"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w* \w and|strong="G2532"\w* \w gave|strong="G1325"\w* \w him|strong="G3588"\w* \w glory|strong="G1391"\w*, \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w your|strong="G1223"\w* \w faith|strong="G4102"\w* \w and|strong="G2532"\w* \w hope|strong="G1680"\w* \w might|strong="G2532"\w* \w be|strong="G1510"\w* \w in|strong="G1519"\w* \w God|strong="G2316"\w*. +\p +\v 22 Seeing \w you|strong="G5210"\w* \w have|strong="G5210"\w* purified \w your|strong="G1722"\w* \w souls|strong="G5590"\w* \w in|strong="G1722"\w* \w your|strong="G1722"\w* \w obedience|strong="G5218"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* truth \w through|strong="G1722"\w* \w the|strong="G1722"\w* \w Spirit|strong="G2588"\w* \w in|strong="G1722"\w* sincere \w brotherly|strong="G5360"\w* affection, \w love|strong="G5360"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w* \w from|strong="G1537"\w* \w the|strong="G1722"\w* \w heart|strong="G2588"\w* \w fervently|strong="G1619"\w*, +\v 23 \w having|strong="G2532"\w* \w been|strong="G2532"\w* born \w again|strong="G2532"\w*, \w not|strong="G3756"\w* \w of|strong="G1537"\w* \w corruptible|strong="G5349"\w* \w seed|strong="G4701"\w*, \w but|strong="G2532"\w* \w of|strong="G1537"\w* incorruptible, \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*, \w which|strong="G2532"\w* \w lives|strong="G2198"\w* \w and|strong="G2532"\w* \w remains|strong="G3306"\w* \w forever|strong="G1223"\w*. +\v 24 \w For|strong="G1360"\w*, +\q1 “\w All|strong="G3956"\w* \w flesh|strong="G4561"\w* \w is|strong="G3588"\w* \w like|strong="G5613"\w* \w grass|strong="G5528"\w*, +\q2 \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w of|strong="G2532"\w* \w man|strong="G3956"\w*’s \w glory|strong="G1391"\w* \w like|strong="G5613"\w* \w the|strong="G2532"\w* flower \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w grass|strong="G5528"\w*. +\q1 \w The|strong="G2532"\w* \w grass|strong="G5528"\w* \w withers|strong="G3583"\w*, \w and|strong="G2532"\w* \w its|strong="G3956"\w* flower \w falls|strong="G1601"\w*; +\q2 +\v 25 \w but|strong="G1161"\w* \w the|strong="G1519"\w* \w Lord|strong="G2962"\w*’\w s|strong="G2962"\w* \w word|strong="G4487"\w* \w endures|strong="G3306"\w* \w forever|strong="G1519"\w*.”\x + \xo 1:25 \xt Isaiah 40:6-8\x* +\p \w This|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G1519"\w* \w word|strong="G4487"\w* \w of|strong="G2962"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w* \w which|strong="G3588"\w* \w was|strong="G1510"\w* \w preached|strong="G2097"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w*. +\c 2 +\p +\v 1 \w Putting|strong="G2532"\w* away \w therefore|strong="G3767"\w* \w all|strong="G3956"\w* \w wickedness|strong="G2549"\w*, \w all|strong="G3956"\w* \w deceit|strong="G1388"\w*, \w hypocrisies|strong="G5272"\w*, \w envies|strong="G5355"\w*, \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w evil|strong="G2549"\w* speaking, +\v 2 \w as|strong="G5613"\w* newborn \w babies|strong="G1025"\w*, \w long|strong="G1971"\w* \w for|strong="G1519"\w* \w the|strong="G1722"\w* pure \w spiritual|strong="G3050"\w* \w milk|strong="G1051"\w*, \w that|strong="G2443"\w* \w with|strong="G1722"\w* \w it|strong="G5613"\w* \w you|strong="G1722"\w* \w may|strong="G2443"\w* grow, +\v 3 \w if|strong="G1487"\w* indeed \w you|strong="G1487"\w* \w have|strong="G3748"\w* \w tasted|strong="G1089"\w* \w that|strong="G3754"\w* \w the|strong="G3588"\w* \w Lord|strong="G2962"\w* \w is|strong="G3588"\w* \w gracious|strong="G5543"\w*. +\v 4 \w Come|strong="G4334"\w* \w to|strong="G4314"\w* \w him|strong="G3739"\w*, \w a|strong="G1161"\w* \w living|strong="G2198"\w* \w stone|strong="G3037"\w*, rejected \w indeed|strong="G3303"\w* \w by|strong="G5259"\w* \w men|strong="G3739"\w*, \w but|strong="G1161"\w* \w chosen|strong="G1588"\w* \w by|strong="G5259"\w* \w God|strong="G2316"\w*, \w precious|strong="G1784"\w*. +\v 5 \w You|strong="G2532"\w* \w also|strong="G2532"\w* \w as|strong="G5613"\w* \w living|strong="G2198"\w* \w stones|strong="G3037"\w* \w are|strong="G2532"\w* \w built|strong="G3618"\w* \w up|strong="G1519"\w* \w as|strong="G5613"\w* \w a|strong="G5613"\w* \w spiritual|strong="G4152"\w* \w house|strong="G3624"\w*, \w to|strong="G1519"\w* \w be|strong="G2532"\w* \w a|strong="G5613"\w* holy \w priesthood|strong="G2406"\w*, \w to|strong="G1519"\w* offer \w up|strong="G1519"\w* \w spiritual|strong="G4152"\w* \w sacrifices|strong="G2378"\w*, \w acceptable|strong="G2144"\w* \w to|strong="G1519"\w* \w God|strong="G2316"\w* \w through|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\v 6 \w Because|strong="G1360"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w contained|strong="G4023"\w* \w in|strong="G1722"\w* \w Scripture|strong="G1124"\w*, +\q1 “\w Behold|strong="G2400"\w*,\f + \fr 2:6 \ft “Behold”, from “\+wh הִנֵּה\+wh*” or “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w I|strong="G2532"\w* \w lay|strong="G5087"\w* \w in|strong="G1722"\w* \w Zion|strong="G4622"\w* \w a|strong="G2532"\w* \w chief|strong="G2532"\w* cornerstone, \w chosen|strong="G1588"\w* \w and|strong="G2532"\w* \w precious|strong="G1784"\w*. +\q2 \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w believes|strong="G4100"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w* \w will|strong="G2532"\w* \w not|strong="G3756"\w* \w be|strong="G2532"\w* \w disappointed|strong="G2617"\w*.”\x + \xo 2:6 \xt Isaiah 28:16 \x* +\p +\v 7 \w For|strong="G1519"\w* \w you|strong="G5210"\w* \w who|strong="G3739"\w* \w believe|strong="G4100"\w* \w therefore|strong="G3767"\w* \w is|strong="G3588"\w* \w the|strong="G2532"\w* \w honor|strong="G5092"\w*, \w but|strong="G1161"\w* \w for|strong="G1519"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w are|strong="G3588"\w* disobedient, +\q1 “\w The|strong="G2532"\w* \w stone|strong="G3037"\w* \w which|strong="G3739"\w* \w the|strong="G2532"\w* \w builders|strong="G3618"\w* rejected +\q2 \w has|strong="G3739"\w* \w become|strong="G1096"\w* \w the|strong="G2532"\w* \w chief|strong="G2776"\w* \w cornerstone|strong="G2776"\w*,”\x + \xo 2:7 \xt Psalms 118:22\x* +\p +\v 8 \w and|strong="G2532"\w*, +\q1 “\w a|strong="G2532"\w* \w stumbling|strong="G4625"\w* \w stone|strong="G3037"\w* \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w rock|strong="G4073"\w* \w of|strong="G3056"\w* \w offense|strong="G4625"\w*.”\x + \xo 2:8 \xt Isaiah 8:14\x* +\p \w For|strong="G1519"\w* \w they|strong="G2532"\w* \w stumble|strong="G4350"\w* \w at|strong="G1519"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w*, \w being|strong="G2532"\w* disobedient, \w to|strong="G1519"\w* \w which|strong="G3739"\w* \w also|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w appointed|strong="G5087"\w*. +\v 9 \w But|strong="G1161"\w* \w you|strong="G5210"\w* \w are|strong="G3588"\w* \w a|strong="G1519"\w* \w chosen|strong="G1588"\w* \w race|strong="G1085"\w*, \w a|strong="G1519"\w* royal \w priesthood|strong="G2406"\w*, \w a|strong="G1519"\w* holy \w nation|strong="G1484"\w*, \w a|strong="G1519"\w* \w people|strong="G2992"\w* \w for|strong="G1519"\w* \w God|strong="G1519"\w*’s own \w possession|strong="G4047"\w*, \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w may|strong="G3704"\w* \w proclaim|strong="G1804"\w* \w the|strong="G1519"\w* excellence \w of|strong="G1537"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w called|strong="G2564"\w* \w you|strong="G5210"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w darkness|strong="G4655"\w* \w into|strong="G1519"\w* \w his|strong="G1519"\w* \w marvelous|strong="G2298"\w* \w light|strong="G5457"\w*. +\v 10 \w In|strong="G2316"\w* \w the|strong="G1161"\w* \w past|strong="G4218"\w*, \w you|strong="G3739"\w* \w were|strong="G3588"\w* \w not|strong="G3756"\w* \w a|strong="G1161"\w* \w people|strong="G2992"\w*, \w but|strong="G1161"\w* \w now|strong="G1161"\w* \w are|strong="G3588"\w* \w God|strong="G2316"\w*’s \w people|strong="G2992"\w*, \w who|strong="G3739"\w* \w had|strong="G2316"\w* \w not|strong="G3756"\w* \w obtained|strong="G3568"\w* \w mercy|strong="G1653"\w*, \w but|strong="G1161"\w* \w now|strong="G1161"\w* \w have|strong="G1653"\w* \w obtained|strong="G3568"\w* \w mercy|strong="G1653"\w*. +\p +\v 11 Beloved, \w I|strong="G2532"\w* \w beg|strong="G3870"\w* \w you|strong="G2532"\w* \w as|strong="G5613"\w* \w foreigners|strong="G3941"\w* \w and|strong="G2532"\w* \w pilgrims|strong="G3927"\w* \w to|strong="G2532"\w* abstain \w from|strong="G2532"\w* \w fleshly|strong="G4559"\w* \w lusts|strong="G1939"\w* \w which|strong="G3588"\w* \w war|strong="G4754"\w* \w against|strong="G2596"\w* \w the|strong="G2532"\w* \w soul|strong="G5590"\w*, +\v 12 \w having|strong="G2192"\w* \w good|strong="G2570"\w* \w behavior|strong="G2041"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w nations|strong="G1484"\w*, \w so|strong="G2443"\w* \w in|strong="G1722"\w* \w that|strong="G2443"\w* \w of|strong="G1537"\w* \w which|strong="G3739"\w* \w they|strong="G3588"\w* \w speak|strong="G2635"\w* \w against|strong="G1722"\w* \w you|strong="G5210"\w* \w as|strong="G5613"\w* \w evildoers|strong="G2555"\w*, \w they|strong="G3588"\w* \w may|strong="G2443"\w* see \w your|strong="G2192"\w* \w good|strong="G2570"\w* \w works|strong="G2041"\w* \w and|strong="G2316"\w* \w glorify|strong="G1392"\w* \w God|strong="G2316"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w of|strong="G1537"\w* \w visitation|strong="G1984"\w*. +\p +\v 13 \w Therefore|strong="G1223"\w* \w subject|strong="G5293"\w* \w yourselves|strong="G5293"\w* \w to|strong="G5293"\w* \w every|strong="G3956"\w* \w ordinance|strong="G2937"\w* \w of|strong="G1223"\w* \w man|strong="G3956"\w* \w for|strong="G1223"\w* \w the|strong="G3956"\w* \w Lord|strong="G2962"\w*’\w s|strong="G2962"\w* \w sake|strong="G1223"\w*: \w whether|strong="G1535"\w* \w to|strong="G5293"\w* \w the|strong="G3956"\w* \w king|strong="G3588"\w*, \w as|strong="G5613"\w* \w supreme|strong="G5242"\w*, +\v 14 \w or|strong="G1535"\w* \w to|strong="G1519"\w* \w governors|strong="G2232"\w*, \w as|strong="G5613"\w* \w sent|strong="G3992"\w* \w by|strong="G1223"\w* \w him|strong="G1519"\w* \w for|strong="G1519"\w* \w vengeance|strong="G1557"\w* \w on|strong="G1519"\w* \w evildoers|strong="G2555"\w* \w and|strong="G1161"\w* \w for|strong="G1519"\w* \w praise|strong="G1868"\w* \w to|strong="G1519"\w* \w those|strong="G1161"\w* \w who|strong="G3992"\w* \w do|strong="G1223"\w* \w well|strong="G5613"\w*. +\v 15 \w For|strong="G3754"\w* \w this|strong="G3588"\w* \w is|strong="G1510"\w* \w the|strong="G3588"\w* \w will|strong="G2307"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w that|strong="G3754"\w* \w by|strong="G3588"\w* well-doing \w you|strong="G3754"\w* \w should|strong="G2316"\w* \w put|strong="G5392"\w* \w to|strong="G2316"\w* \w silence|strong="G5392"\w* \w the|strong="G3588"\w* ignorance \w of|strong="G2316"\w* foolish \w men|strong="G3588"\w*. +\v 16 \w Live|strong="G2532"\w* \w as|strong="G5613"\w* \w free|strong="G1658"\w* \w people|strong="G3361"\w*, \w yet|strong="G2532"\w* \w not|strong="G3361"\w* \w using|strong="G2192"\w* \w your|strong="G2192"\w* \w freedom|strong="G1657"\w* \w for|strong="G2532"\w* \w a|strong="G2192"\w* cloak \w of|strong="G2316"\w* \w wickedness|strong="G2549"\w*, \w but|strong="G2532"\w* \w as|strong="G5613"\w* bondservants \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\p +\v 17 \w Honor|strong="G5091"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w*. Love \w the|strong="G3956"\w* brotherhood. \w Fear|strong="G5399"\w* \w God|strong="G2316"\w*. \w Honor|strong="G5091"\w* \w the|strong="G3956"\w* \w king|strong="G3588"\w*. +\p +\v 18 \w Servants|strong="G3610"\w*, \w be|strong="G2532"\w* \w in|strong="G1722"\w* \w subjection|strong="G5293"\w* \w to|strong="G2532"\w* \w your|strong="G2532"\w* \w masters|strong="G1203"\w* \w with|strong="G1722"\w* \w all|strong="G3956"\w* \w respect|strong="G3956"\w*, \w not|strong="G3756"\w* \w only|strong="G3440"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w good|strong="G3956"\w* \w and|strong="G2532"\w* \w gentle|strong="G1933"\w*, \w but|strong="G2532"\w* \w also|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w wicked|strong="G3588"\w*. +\v 19 \w For|strong="G1063"\w* \w it|strong="G1063"\w* \w is|strong="G2316"\w* commendable \w if|strong="G1487"\w* \w someone|strong="G5100"\w* \w endures|strong="G5297"\w* \w pain|strong="G3077"\w*, \w suffering|strong="G3958"\w* unjustly, \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w conscience|strong="G4893"\w* \w toward|strong="G4893"\w* \w God|strong="G2316"\w*. +\v 20 \w For|strong="G1063"\w* \w what|strong="G4169"\w* \w glory|strong="G2811"\w* \w is|strong="G2316"\w* \w it|strong="G2532"\w* \w if|strong="G1487"\w*, \w when|strong="G2532"\w* \w you|strong="G1487"\w* sin, \w you|strong="G1487"\w* \w patiently|strong="G5278"\w* \w endure|strong="G5278"\w* beating? \w But|strong="G2532"\w* \w if|strong="G1487"\w* \w when|strong="G2532"\w* \w you|strong="G1487"\w* \w do|strong="G2532"\w* \w well|strong="G2532"\w*, \w you|strong="G1487"\w* \w patiently|strong="G5278"\w* \w endure|strong="G5278"\w* \w suffering|strong="G3958"\w*, \w this|strong="G3778"\w* \w is|strong="G2316"\w* commendable \w with|strong="G3844"\w* \w God|strong="G2316"\w*. +\v 21 \w For|strong="G1063"\w* \w you|strong="G5210"\w* \w were|strong="G3588"\w* \w called|strong="G2564"\w* \w to|strong="G1519"\w* \w this|strong="G3778"\w*, \w because|strong="G3754"\w* \w Christ|strong="G5547"\w* \w also|strong="G2532"\w* \w suffered|strong="G3958"\w* \w for|strong="G1063"\w* \w us|strong="G1519"\w*, \w leaving|strong="G5277"\w* \w you|strong="G5210"\w*\f + \fr 2:21 \ft TR reads “us” instead of “you”\f* \w an|strong="G2532"\w* \w example|strong="G5261"\w*, \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w should|strong="G3588"\w* \w follow|strong="G1872"\w* \w his|strong="G1519"\w* \w steps|strong="G2487"\w*, +\v 22 \w who|strong="G3739"\w* didn’\w t|strong="G3588"\w* sin, “\w neither|strong="G3761"\w* \w was|strong="G3588"\w* \w deceit|strong="G1388"\w* \w found|strong="G2147"\w* \w in|strong="G1722"\w* \w his|strong="G1722"\w* \w mouth|strong="G4750"\w*.”\x + \xo 2:22 \xt Isaiah 53:9\x* +\v 23 \w When|strong="G1161"\w* \w he|strong="G1161"\w* \w was|strong="G3588"\w* cursed, \w he|strong="G1161"\w* didn’\w t|strong="G3588"\w* curse back. \w When|strong="G1161"\w* \w he|strong="G1161"\w* \w suffered|strong="G3958"\w*, \w he|strong="G1161"\w* didn’\w t|strong="G3588"\w* threaten, \w but|strong="G1161"\w* \w committed|strong="G3860"\w* himself \w to|strong="G3756"\w* \w him|strong="G3588"\w* \w who|strong="G3739"\w* \w judges|strong="G2919"\w* \w righteously|strong="G1346"\w*. +\v 24 \w He|strong="G3739"\w* himself bore \w our|strong="G1722"\w* sins \w in|strong="G1722"\w* \w his|strong="G1909"\w* \w body|strong="G4983"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w tree|strong="G3586"\w*, \w that|strong="G2443"\w* \w we|strong="G2249"\w*, having \w died|strong="G3588"\w* \w to|strong="G2443"\w* sins, \w might|strong="G1473"\w* \w live|strong="G2198"\w* \w to|strong="G2443"\w* \w righteousness|strong="G1343"\w*. \w You|strong="G3739"\w* \w were|strong="G3588"\w* \w healed|strong="G2390"\w* \w by|strong="G1722"\w* \w his|strong="G1909"\w* \w wounds|strong="G3468"\w*.\f + \fr 2:24 \ft or, stripes\f* +\v 25 \w For|strong="G1063"\w* \w you|strong="G5210"\w* \w were|strong="G1510"\w* \w going|strong="G2532"\w* \w astray|strong="G4105"\w* \w like|strong="G5613"\w* \w sheep|strong="G4263"\w*; \w but|strong="G2532"\w* \w now|strong="G3568"\w* \w you|strong="G5210"\w* \w have|strong="G2532"\w* \w returned|strong="G1994"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Shepherd|strong="G4166"\w* \w and|strong="G2532"\w* \w Overseer|strong="G1985"\w*\f + \fr 2:25 \ft “Overseer” is from the Greek ἐπίσκοπον, which can mean overseer, curator, guardian, or superintendent.\f* \w of|strong="G2532"\w* \w your|strong="G2532"\w* \w souls|strong="G5590"\w*. +\c 3 +\p +\v 1 \w In|strong="G2532"\w* \w the|strong="G2532"\w* \w same|strong="G3668"\w* \w way|strong="G3668"\w*, \w wives|strong="G1135"\w*, \w be|strong="G2532"\w* \w in|strong="G2532"\w* \w subjection|strong="G5293"\w* \w to|strong="G2443"\w* \w your|strong="G1223"\w* \w own|strong="G2398"\w* husbands, \w so|strong="G2443"\w* \w that|strong="G2443"\w*, \w even|strong="G2532"\w* \w if|strong="G1487"\w* \w any|strong="G5100"\w* don’\w t|strong="G3588"\w* \w obey|strong="G5100"\w* \w the|strong="G2532"\w* \w Word|strong="G3056"\w*, \w they|strong="G2532"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* \w won|strong="G2770"\w* \w by|strong="G1223"\w* \w the|strong="G2532"\w* behavior \w of|strong="G3056"\w* \w their|strong="G2532"\w* \w wives|strong="G1135"\w* \w without|strong="G2532"\w* \w a|strong="G2532"\w* \w word|strong="G3056"\w*, +\v 2 seeing \w your|strong="G1722"\w* pure behavior \w in|strong="G1722"\w* \w fear|strong="G5401"\w*. +\v 3 \w Let|strong="G1510"\w* \w your|strong="G2532"\w* \w beauty|strong="G3756"\w* \w come|strong="G1510"\w* \w not|strong="G3756"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w outward|strong="G1855"\w* \w adorning|strong="G2889"\w* \w of|strong="G2532"\w* \w braiding|strong="G1708"\w* \w your|strong="G2532"\w* \w hair|strong="G2359"\w*, \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w wearing|strong="G4025"\w* \w gold|strong="G5553"\w* ornaments \w or|strong="G2228"\w* \w of|strong="G2532"\w* \w putting|strong="G1745"\w* \w on|strong="G1745"\w* \w fine|strong="G2532"\w* \w clothing|strong="G2440"\w*, +\v 4 \w but|strong="G2532"\w* \w from|strong="G2532"\w* \w the|strong="G1722"\w* \w hidden|strong="G2927"\w* \w person|strong="G3739"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w heart|strong="G2588"\w*, \w in|strong="G1722"\w* \w the|strong="G1722"\w* incorruptible adornment \w of|strong="G4151"\w* \w a|strong="G2532"\w* \w gentle|strong="G4239"\w* \w and|strong="G2532"\w* \w quiet|strong="G2272"\w* \w spirit|strong="G4151"\w*, \w which|strong="G3739"\w* \w is|strong="G1510"\w* \w very|strong="G2532"\w* \w precious|strong="G4185"\w* \w in|strong="G1722"\w* \w God|strong="G2316"\w*’s \w sight|strong="G1799"\w*. +\v 5 \w For|strong="G1063"\w* \w this|strong="G3588"\w* \w is|strong="G3588"\w* \w how|strong="G3779"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w past|strong="G4218"\w* \w the|strong="G2532"\w* holy \w women|strong="G1135"\w* \w who|strong="G3588"\w* \w hoped|strong="G1679"\w* \w in|strong="G1519"\w* \w God|strong="G2316"\w* \w also|strong="G2532"\w* \w adorned|strong="G2885"\w* \w themselves|strong="G1438"\w*, \w being|strong="G2532"\w* \w in|strong="G1519"\w* \w subjection|strong="G5293"\w* \w to|strong="G1519"\w* \w their|strong="G1438"\w* \w own|strong="G2398"\w* husbands. +\v 6 \w So|strong="G2532"\w* \w Sarah|strong="G4564"\w* \w obeyed|strong="G5219"\w* Abraham, \w calling|strong="G2564"\w* \w him|strong="G3588"\w* \w lord|strong="G2962"\w*, \w whose|strong="G3739"\w* \w children|strong="G5043"\w* \w you|strong="G3739"\w* \w now|strong="G2532"\w* \w are|strong="G3588"\w* \w if|strong="G5613"\w* \w you|strong="G3739"\w* \w do|strong="G1096"\w* \w well|strong="G2532"\w* \w and|strong="G2532"\w* \w are|strong="G3588"\w* \w not|strong="G3361"\w* \w put|strong="G2532"\w* \w in|strong="G2532"\w* \w fear|strong="G5399"\w* \w by|strong="G2532"\w* \w any|strong="G3367"\w* terror. +\p +\v 7 \w You|strong="G5210"\w* husbands, \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w same|strong="G3668"\w* \w way|strong="G3668"\w*, \w live|strong="G2532"\w* \w with|strong="G2532"\w* \w your|strong="G2532"\w* \w wives|strong="G5613"\w* \w according|strong="G2596"\w* \w to|strong="G1519"\w* \w knowledge|strong="G1108"\w*, giving \w honor|strong="G5092"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w woman|strong="G1134"\w* \w as|strong="G5613"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* weaker \w vessel|strong="G4632"\w*, \w as|strong="G5613"\w* \w also|strong="G2532"\w* \w being|strong="G2532"\w* joint \w heirs|strong="G4789"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w grace|strong="G5485"\w* \w of|strong="G2532"\w* \w life|strong="G2222"\w*, \w that|strong="G3588"\w* \w your|strong="G2532"\w* \w prayers|strong="G4335"\w* \w may|strong="G2532"\w* \w not|strong="G3361"\w* \w be|strong="G2532"\w* \w hindered|strong="G1465"\w*. +\p +\v 8 \w Finally|strong="G5056"\w*, \w all|strong="G3956"\w* \w of|strong="G3956"\w* \w you|strong="G3956"\w* \w be|strong="G3956"\w* like-minded, \w compassionate|strong="G2155"\w*, loving \w as|strong="G1161"\w* brothers, \w tenderhearted|strong="G2155"\w*, courteous, +\v 9 \w not|strong="G3361"\w* rendering \w evil|strong="G2556"\w* \w for|strong="G3754"\w* \w evil|strong="G2556"\w* \w or|strong="G2228"\w* \w insult|strong="G3059"\w* \w for|strong="G3754"\w* \w insult|strong="G3059"\w*; \w but|strong="G1161"\w* \w instead|strong="G1161"\w* \w blessing|strong="G2129"\w*, knowing \w that|strong="G3754"\w* \w you|strong="G3754"\w* \w were|strong="G3778"\w* \w called|strong="G2564"\w* \w to|strong="G1519"\w* \w this|strong="G3778"\w*, \w that|strong="G3754"\w* \w you|strong="G3754"\w* \w may|strong="G2443"\w* \w inherit|strong="G2816"\w* \w a|strong="G1519"\w* \w blessing|strong="G2129"\w*. +\v 10 \w For|strong="G1063"\w*, +\q1 “\w He|strong="G2532"\w* \w who|strong="G3588"\w* \w would|strong="G2309"\w* \w love|strong="G2309"\w* \w life|strong="G2222"\w* +\q2 \w and|strong="G2532"\w* \w see|strong="G3708"\w* \w good|strong="G3588"\w* \w days|strong="G2250"\w*, +\q1 \w let|strong="G1063"\w* \w him|strong="G3588"\w* \w keep|strong="G3361"\w* \w his|strong="G3708"\w* \w tongue|strong="G1100"\w* \w from|strong="G2532"\w* \w evil|strong="G2556"\w* +\q2 \w and|strong="G2532"\w* \w his|strong="G3708"\w* \w lips|strong="G5491"\w* \w from|strong="G2532"\w* \w speaking|strong="G2980"\w* \w deceit|strong="G1388"\w*. +\q1 +\v 11 \w Let|strong="G1161"\w* \w him|strong="G4160"\w* \w turn|strong="G1578"\w* \w away|strong="G1578"\w* \w from|strong="G1515"\w* \w evil|strong="G2556"\w* \w and|strong="G2532"\w* \w do|strong="G4160"\w* \w good|strong="G2532"\w*. +\q2 \w Let|strong="G1161"\w* \w him|strong="G4160"\w* \w seek|strong="G2212"\w* \w peace|strong="G1515"\w* \w and|strong="G2532"\w* \w pursue|strong="G1377"\w* \w it|strong="G2532"\w*. +\q1 +\v 12 \w For|strong="G3754"\w* \w the|strong="G2532"\w* \w eyes|strong="G3788"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w are|strong="G2532"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w righteous|strong="G1342"\w*, +\q2 \w and|strong="G2532"\w* \w his|strong="G1519"\w* \w ears|strong="G3775"\w* open \w to|strong="G1519"\w* \w their|strong="G2532"\w* \w prayer|strong="G1162"\w*; +\q2 \w but|strong="G1161"\w* \w the|strong="G2532"\w* \w face|strong="G4383"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w is|strong="G2962"\w* \w against|strong="G1909"\w* \w those|strong="G1161"\w* \w who|strong="G3748"\w* \w do|strong="G4160"\w* \w evil|strong="G2556"\w*.”\x + \xo 3:12 \xt Psalms 34:12-16\x* +\p +\v 13 \w Now|strong="G2532"\w* \w who|strong="G5101"\w* \w will|strong="G5101"\w* \w harm|strong="G2559"\w* \w you|strong="G5210"\w* \w if|strong="G1437"\w* \w you|strong="G5210"\w* \w become|strong="G1096"\w* imitators \w of|strong="G2532"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w good|strong="G5101"\w*? +\v 14 \w But|strong="G1161"\w* \w even|strong="G2532"\w* \w if|strong="G1487"\w* \w you|strong="G1487"\w* \w should|strong="G3588"\w* \w suffer|strong="G3958"\w* \w for|strong="G1223"\w* \w righteousness|strong="G1343"\w*’ \w sake|strong="G1223"\w*, \w you|strong="G1487"\w* \w are|strong="G3588"\w* \w blessed|strong="G3107"\w*. “Don’\w t|strong="G3588"\w* \w fear|strong="G5401"\w* \w what|strong="G3588"\w* \w they|strong="G2532"\w* \w fear|strong="G5401"\w*, \w neither|strong="G3366"\w* \w be|strong="G2532"\w* \w troubled|strong="G5015"\w*.”\x + \xo 3:14 \xt Isaiah 8:12\x* +\v 15 \w But|strong="G1161"\w* sanctify \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w God|strong="G2532"\w* \w in|strong="G1722"\w* \w your|strong="G2962"\w* \w hearts|strong="G2588"\w*. \w Always|strong="G3956"\w* \w be|strong="G2532"\w* \w ready|strong="G2092"\w* \w to|strong="G4314"\w* \w give|strong="G3956"\w* \w an|strong="G2532"\w* \w answer|strong="G3056"\w* \w to|strong="G4314"\w* \w everyone|strong="G3956"\w* \w who|strong="G3588"\w* asks \w you|strong="G5210"\w* \w a|strong="G2532"\w* \w reason|strong="G3056"\w* \w concerning|strong="G4012"\w* \w the|strong="G1722"\w* \w hope|strong="G1680"\w* \w that|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w*, \w with|strong="G3326"\w* \w humility|strong="G4240"\w* \w and|strong="G2532"\w* \w fear|strong="G5401"\w*, +\v 16 \w having|strong="G2192"\w* \w a|strong="G2192"\w* \w good|strong="G3588"\w* \w conscience|strong="G4893"\w*. \w Thus|strong="G2532"\w*, \w while|strong="G1722"\w* \w you|strong="G5210"\w* \w are|strong="G3588"\w* spoken \w against|strong="G3326"\w* \w as|strong="G1722"\w* evildoers, \w they|strong="G2532"\w* \w may|strong="G2532"\w* \w be|strong="G2532"\w* \w disappointed|strong="G2617"\w* \w who|strong="G3739"\w* \w curse|strong="G2617"\w* \w your|strong="G2192"\w* \w good|strong="G3588"\w* \w way|strong="G1722"\w* \w of|strong="G2532"\w* life \w in|strong="G1722"\w* \w Christ|strong="G5547"\w*. +\v 17 \w For|strong="G1063"\w* \w it|strong="G1063"\w* \w is|strong="G3588"\w* \w better|strong="G2909"\w*, \w if|strong="G1487"\w* \w it|strong="G1063"\w* \w is|strong="G3588"\w* \w God|strong="G2316"\w*’s \w will|strong="G2307"\w*, \w that|strong="G3588"\w* \w you|strong="G1487"\w* \w suffer|strong="G3958"\w* \w for|strong="G1063"\w* \w doing|strong="G2554"\w* \w what|strong="G3588"\w* \w is|strong="G3588"\w* right \w than|strong="G2228"\w* \w for|strong="G1063"\w* \w doing|strong="G2554"\w* \w evil|strong="G2554"\w*. +\v 18 \w Because|strong="G3754"\w* \w Christ|strong="G5547"\w* \w also|strong="G2532"\w* suffered \w for|strong="G3754"\w* sins once, \w the|strong="G2532"\w* \w righteous|strong="G1342"\w* \w for|strong="G3754"\w* \w the|strong="G2532"\w* unrighteous, \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w bring|strong="G4317"\w* \w you|strong="G5210"\w* \w to|strong="G2443"\w* \w God|strong="G2316"\w*, \w being|strong="G2532"\w* \w put|strong="G2289"\w* \w to|strong="G2443"\w* \w death|strong="G2289"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w*, \w but|strong="G1161"\w* \w made|strong="G2316"\w* \w alive|strong="G2227"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w*, +\v 19 \w in|strong="G1722"\w* \w whom|strong="G3739"\w* \w he|strong="G2532"\w* \w also|strong="G2532"\w* \w went|strong="G4198"\w* \w and|strong="G2532"\w* \w preached|strong="G2784"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w spirits|strong="G4151"\w* \w in|strong="G1722"\w* \w prison|strong="G5438"\w*, +\v 20 \w who|strong="G3739"\w* \w before|strong="G1722"\w* \w were|strong="G1510"\w* disobedient \w when|strong="G3753"\w* \w God|strong="G2316"\w* waited \w patiently|strong="G3115"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w days|strong="G2250"\w* \w of|strong="G2250"\w* \w Noah|strong="G3575"\w* \w while|strong="G1722"\w* \w the|strong="G1722"\w* ship \w was|strong="G1510"\w* \w being|strong="G1510"\w* \w built|strong="G2680"\w*. \w In|strong="G1722"\w* \w it|strong="G3778"\w*, \w few|strong="G3641"\w*, \w that|strong="G3739"\w* \w is|strong="G1510"\w*, \w eight|strong="G3638"\w* \w souls|strong="G5590"\w*, \w were|strong="G1510"\w* \w saved|strong="G1295"\w* \w through|strong="G1223"\w* \w water|strong="G5204"\w*. +\v 21 \w This|strong="G3739"\w* \w is|strong="G2316"\w* \w a|strong="G2532"\w* symbol \w of|strong="G1223"\w* baptism, \w which|strong="G3739"\w* \w now|strong="G3568"\w* \w saves|strong="G4982"\w* \w you|strong="G5210"\w*—\w not|strong="G3756"\w* \w the|strong="G2532"\w* \w putting|strong="G2532"\w* away \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w filth|strong="G4509"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w*, \w but|strong="G2532"\w* \w the|strong="G2532"\w* \w answer|strong="G1906"\w* \w of|strong="G1223"\w* \w a|strong="G2532"\w* \w good|strong="G1223"\w* \w conscience|strong="G4893"\w* \w toward|strong="G1519"\w* \w God|strong="G2316"\w*—\w through|strong="G1223"\w* \w the|strong="G2532"\w* resurrection \w of|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, +\v 22 \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w having|strong="G2532"\w* \w gone|strong="G4198"\w* \w into|strong="G1519"\w* \w heaven|strong="G3772"\w*, angels \w and|strong="G2532"\w* \w authorities|strong="G1849"\w* \w and|strong="G2532"\w* \w powers|strong="G1411"\w* \w being|strong="G1510"\w* \w made|strong="G2316"\w* \w subject|strong="G5293"\w* \w to|strong="G1519"\w* \w him|strong="G3739"\w*. +\c 4 +\p +\v 1 \w Therefore|strong="G3767"\w*, \w since|strong="G3754"\w* \w Christ|strong="G5547"\w* \w suffered|strong="G3958"\w* \w for|strong="G3754"\w* us \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w*, \w arm|strong="G3695"\w* \w yourselves|strong="G4771"\w* \w also|strong="G2532"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w* \w mind|strong="G1771"\w*; \w for|strong="G3754"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w has|strong="G5547"\w* \w suffered|strong="G3958"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w* \w has|strong="G5547"\w* \w ceased|strong="G3973"\w* \w from|strong="G2532"\w* sin, +\v 2 \w that|strong="G3588"\w* \w you|strong="G1722"\w* \w no|strong="G3371"\w* \w longer|strong="G3371"\w* \w should|strong="G2316"\w* live \w the|strong="G1722"\w* \w rest|strong="G1954"\w* \w of|strong="G2316"\w* \w your|strong="G1722"\w* \w time|strong="G5550"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w* \w for|strong="G1519"\w* \w the|strong="G1722"\w* \w lusts|strong="G1939"\w* \w of|strong="G2316"\w* \w men|strong="G3588"\w*, \w but|strong="G2316"\w* \w for|strong="G1519"\w* \w the|strong="G1722"\w* \w will|strong="G2307"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\v 3 \w For|strong="G1063"\w* \w we|strong="G1063"\w* \w have|strong="G2532"\w* spent enough \w of|strong="G2532"\w* \w our|strong="G2532"\w* \w past|strong="G3928"\w* \w time|strong="G5550"\w* \w doing|strong="G2716"\w* \w the|strong="G1722"\w* \w desire|strong="G1939"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Gentiles|strong="G1484"\w*, \w and|strong="G2532"\w* \w having|strong="G2532"\w* \w walked|strong="G4198"\w* \w in|strong="G1722"\w* lewdness, \w lusts|strong="G1939"\w*, drunken binges, orgies, carousings, \w and|strong="G2532"\w* abominable \w idolatries|strong="G1495"\w*. +\v 4 \w They|strong="G3588"\w* think \w it|strong="G3739"\w* \w is|strong="G3588"\w* \w strange|strong="G3579"\w* \w that|strong="G3739"\w* \w you|strong="G5210"\w* don’\w t|strong="G3588"\w* \w run|strong="G4936"\w* \w with|strong="G1722"\w* \w them|strong="G3588"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w same|strong="G3739"\w* excess \w of|strong="G1722"\w* riot, speaking evil \w of|strong="G1722"\w* \w you|strong="G5210"\w*. +\v 5 \w They|strong="G2532"\w* \w will|strong="G2532"\w* \w give|strong="G2192"\w* \w account|strong="G3056"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w who|strong="G3739"\w* \w is|strong="G3588"\w* \w ready|strong="G2093"\w* \w to|strong="G2532"\w* \w judge|strong="G2919"\w* \w the|strong="G2532"\w* \w living|strong="G2198"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*. +\v 6 \w For|strong="G1063"\w* \w to|strong="G1519"\w* \w this|strong="G3778"\w* \w end|strong="G1519"\w* \w the|strong="G2532"\w* \w Good|strong="G2097"\w* \w News|strong="G2097"\w* \w was|strong="G2532"\w* \w preached|strong="G2097"\w* \w even|strong="G2532"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w*, \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* \w be|strong="G2532"\w* \w judged|strong="G2919"\w* \w indeed|strong="G2532"\w* \w as|strong="G1519"\w* \w men|strong="G3778"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w*, \w but|strong="G1161"\w* \w live|strong="G2198"\w* \w as|strong="G1519"\w* \w to|strong="G1519"\w* \w God|strong="G2316"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w spirit|strong="G4151"\w*. +\p +\v 7 \w But|strong="G1161"\w* \w the|strong="G2532"\w* \w end|strong="G5056"\w* \w of|strong="G2532"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w is|strong="G3588"\w* \w near|strong="G1448"\w*. \w Therefore|strong="G3767"\w* \w be|strong="G2532"\w* \w of|strong="G2532"\w* \w sound|strong="G4993"\w* \w mind|strong="G4993"\w*, self-controlled, \w and|strong="G2532"\w* \w sober|strong="G3525"\w* \w in|strong="G1519"\w* \w prayer|strong="G4335"\w*. +\v 8 \w And|strong="G3956"\w* \w above|strong="G4253"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w be|strong="G3956"\w* earnest \w in|strong="G1519"\w* \w your|strong="G2192"\w* love \w among|strong="G1519"\w* \w yourselves|strong="G1438"\w*, \w for|strong="G3754"\w* love \w covers|strong="G2572"\w* \w a|strong="G2192"\w* \w multitude|strong="G4128"\w* \w of|strong="G3956"\w* sins. +\v 9 \w Be|strong="G1519"\w* \w hospitable|strong="G5382"\w* \w to|strong="G1519"\w* \w one|strong="G1519"\w* another without \w grumbling|strong="G1112"\w*. +\v 10 \w As|strong="G5613"\w* \w each|strong="G1538"\w* \w has|strong="G2316"\w* \w received|strong="G2983"\w* \w a|strong="G5613"\w* \w gift|strong="G5486"\w*, \w employ|strong="G1247"\w* \w it|strong="G2531"\w* \w in|strong="G1519"\w* \w serving|strong="G1247"\w* \w one|strong="G1538"\w* \w another|strong="G1438"\w*, \w as|strong="G5613"\w* \w good|strong="G2570"\w* \w managers|strong="G3623"\w* \w of|strong="G2316"\w* \w the|strong="G1519"\w* \w grace|strong="G5485"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w in|strong="G1519"\w* its \w various|strong="G4164"\w* forms. +\v 11 \w If|strong="G1487"\w* \w anyone|strong="G5100"\w* \w speaks|strong="G2980"\w*, \w let|strong="G1510"\w* \w it|strong="G2532"\w* \w be|strong="G1510"\w* \w as|strong="G5613"\w* \w it|strong="G2532"\w* \w were|strong="G1510"\w* \w the|strong="G1722"\w* \w very|strong="G2532"\w* \w words|strong="G2532"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*. \w If|strong="G1487"\w* \w anyone|strong="G5100"\w* \w serves|strong="G1247"\w*, \w let|strong="G1510"\w* \w it|strong="G2532"\w* \w be|strong="G1510"\w* \w as|strong="G5613"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w strength|strong="G2479"\w* \w which|strong="G3739"\w* \w God|strong="G2316"\w* \w supplies|strong="G5524"\w*, \w that|strong="G2443"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w God|strong="G2316"\w* \w may|strong="G2532"\w* \w be|strong="G1510"\w* \w glorified|strong="G1392"\w* \w through|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w to|strong="G1519"\w* \w whom|strong="G3739"\w* \w belong|strong="G1510"\w* \w the|strong="G1722"\w* \w glory|strong="G1391"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w dominion|strong="G2904"\w* \w forever|strong="G1519"\w* \w and|strong="G2532"\w* \w ever|strong="G1519"\w*. Amen. +\p +\v 12 Beloved, don’\w t|strong="G3588"\w* \w be|strong="G1096"\w* astonished \w at|strong="G1722"\w* \w the|strong="G1722"\w* \w fiery|strong="G4451"\w* \w trial|strong="G3986"\w* \w which|strong="G3588"\w* \w has|strong="G1096"\w* \w come|strong="G1096"\w* \w upon|strong="G1722"\w* \w you|strong="G5210"\w* \w to|strong="G4314"\w* test \w you|strong="G5210"\w*, \w as|strong="G5613"\w* \w though|strong="G5613"\w* \w a|strong="G1096"\w* \w strange|strong="G3581"\w* \w thing|strong="G3581"\w* \w happened|strong="G1096"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*. +\v 13 \w But|strong="G2532"\w* \w because|strong="G1722"\w* \w you|strong="G1722"\w* \w are|strong="G3588"\w* \w partakers|strong="G2841"\w* \w of|strong="G2532"\w* \w Christ|strong="G5547"\w*’s \w sufferings|strong="G3804"\w*, \w rejoice|strong="G5463"\w*, \w that|strong="G2443"\w* \w at|strong="G1722"\w* \w the|strong="G1722"\w* revelation \w of|strong="G2532"\w* \w his|strong="G1722"\w* \w glory|strong="G1391"\w* \w you|strong="G1722"\w* \w also|strong="G2532"\w* \w may|strong="G2532"\w* \w rejoice|strong="G5463"\w* \w with|strong="G1722"\w* \w exceeding|strong="G1722"\w* \w joy|strong="G5463"\w*. +\v 14 \w If|strong="G1487"\w* \w you|strong="G5210"\w* \w are|strong="G3588"\w* insulted \w for|strong="G3754"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G4151"\w* \w Christ|strong="G5547"\w*, \w you|strong="G5210"\w* \w are|strong="G3588"\w* \w blessed|strong="G3107"\w*, \w because|strong="G3754"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w glory|strong="G1391"\w* \w and|strong="G2532"\w* \w of|strong="G4151"\w* \w God|strong="G2316"\w* rests \w on|strong="G1909"\w* \w you|strong="G5210"\w*. \w On|strong="G1909"\w* \w their|strong="G2532"\w* \w part|strong="G2532"\w* \w he|strong="G2532"\w* \w is|strong="G3588"\w* blasphemed, \w but|strong="G2532"\w* \w on|strong="G1909"\w* \w your|strong="G2532"\w* \w part|strong="G2532"\w* \w he|strong="G2532"\w* \w is|strong="G3588"\w* \w glorified|strong="G2532"\w*. +\v 15 \w But|strong="G3361"\w* \w let|strong="G1063"\w* \w none|strong="G3361"\w* \w of|strong="G5100"\w* \w you|strong="G5210"\w* \w suffer|strong="G3958"\w* \w as|strong="G5613"\w* \w a|strong="G5613"\w* \w murderer|strong="G5406"\w*, \w or|strong="G2228"\w* \w a|strong="G5613"\w* \w thief|strong="G2812"\w*, \w or|strong="G2228"\w* \w an|strong="G2228"\w* \w evil|strong="G5100"\w* doer, \w or|strong="G2228"\w* \w a|strong="G5613"\w* meddler \w in|strong="G1063"\w* \w other|strong="G5100"\w* \w men|strong="G5100"\w*’s matters. +\v 16 \w But|strong="G1161"\w* \w if|strong="G1487"\w* \w one|strong="G3588"\w* \w of|strong="G2316"\w* \w you|strong="G1487"\w* suffers \w for|strong="G1161"\w* \w being|strong="G1722"\w* \w a|strong="G5613"\w* \w Christian|strong="G5546"\w*, \w let|strong="G1161"\w* \w him|strong="G3588"\w* \w not|strong="G3361"\w* \w be|strong="G3361"\w* ashamed; \w but|strong="G1161"\w* \w let|strong="G1161"\w* \w him|strong="G3588"\w* \w glorify|strong="G1392"\w* \w God|strong="G2316"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* matter. +\v 17 \w For|strong="G3754"\w* \w the|strong="G1161"\w* \w time|strong="G2540"\w* \w has|strong="G2316"\w* come \w for|strong="G3754"\w* \w judgment|strong="G2917"\w* \w to|strong="G1161"\w* begin \w with|strong="G2316"\w* \w the|strong="G1161"\w* \w household|strong="G3624"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. \w If|strong="G1487"\w* \w it|strong="G3754"\w* begins \w first|strong="G4413"\w* \w with|strong="G2316"\w* \w us|strong="G2249"\w*, \w what|strong="G5101"\w* \w will|strong="G2316"\w* happen \w to|strong="G1161"\w* \w those|strong="G3588"\w* \w who|strong="G5101"\w* don’\w t|strong="G3588"\w* obey \w the|strong="G1161"\w* \w Good|strong="G5101"\w* \w News|strong="G2098"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*? +\v 18 “\w If|strong="G1487"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* hard \w for|strong="G2532"\w* \w the|strong="G2532"\w* \w righteous|strong="G1342"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w saved|strong="G4982"\w*, \w what|strong="G3588"\w* \w will|strong="G2532"\w* happen \w to|strong="G2532"\w* \w the|strong="G2532"\w* ungodly \w and|strong="G2532"\w* \w the|strong="G2532"\w* sinner?”\x + \xo 4:18 \xt Proverbs 11:31\x* +\v 19 \w Therefore|strong="G5620"\w* \w let|strong="G3958"\w* \w them|strong="G3588"\w* \w also|strong="G2532"\w* \w who|strong="G3588"\w* \w suffer|strong="G3958"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w will|strong="G2307"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w in|strong="G1722"\w* doing \w good|strong="G3588"\w* \w entrust|strong="G3908"\w* \w their|strong="G2532"\w* \w souls|strong="G5590"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \w as|strong="G1722"\w* \w to|strong="G2532"\w* \w a|strong="G2532"\w* \w faithful|strong="G4103"\w* \w Creator|strong="G2939"\w*. +\c 5 +\p +\v 1 \w Therefore|strong="G3767"\w* \w I|strong="G2532"\w* \w exhort|strong="G3870"\w* \w the|strong="G1722"\w* \w elders|strong="G4245"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w*, \w as|strong="G1722"\w* \w a|strong="G2532"\w* \w fellow|strong="G4850"\w* \w elder|strong="G4245"\w* \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w witness|strong="G3144"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w sufferings|strong="G3804"\w* \w of|strong="G2532"\w* \w Christ|strong="G5547"\w*, \w and|strong="G2532"\w* \w who|strong="G3588"\w* \w will|strong="G3195"\w* \w also|strong="G2532"\w* \w share|strong="G2844"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w glory|strong="G1391"\w* \w that|strong="G3588"\w* \w will|strong="G3195"\w* \w be|strong="G2532"\w* revealed: +\v 2 \w shepherd|strong="G4165"\w* \w the|strong="G1722"\w* \w flock|strong="G4168"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w*, exercising \w the|strong="G1722"\w* \w oversight|strong="G1983"\w*, \w not|strong="G3361"\w* \w under|strong="G1722"\w* compulsion, \w but|strong="G3361"\w* \w voluntarily|strong="G1596"\w*; \w not|strong="G3361"\w* \w for|strong="G1722"\w* dishonest gain, \w but|strong="G3361"\w* \w willingly|strong="G1596"\w*; +\v 3 \w not|strong="G3366"\w* \w as|strong="G5613"\w* \w lording|strong="G2634"\w* \w it|strong="G5613"\w* \w over|strong="G2634"\w* \w those|strong="G3588"\w* entrusted \w to|strong="G1096"\w* \w you|strong="G5613"\w*, \w but|strong="G3588"\w* making \w yourselves|strong="G1096"\w* \w examples|strong="G5179"\w* \w to|strong="G1096"\w* \w the|strong="G3588"\w* \w flock|strong="G4168"\w*. +\v 4 \w When|strong="G2532"\w* \w the|strong="G2532"\w* \w chief|strong="G2532"\w* Shepherd \w is|strong="G3588"\w* \w revealed|strong="G5319"\w*, \w you|strong="G2532"\w* \w will|strong="G2532"\w* \w receive|strong="G2865"\w* \w the|strong="G2532"\w* \w crown|strong="G4735"\w* \w of|strong="G2532"\w* \w glory|strong="G1391"\w* \w that|strong="G3588"\w* doesn’\w t|strong="G3588"\w* fade away. +\p +\v 5 \w Likewise|strong="G3668"\w*, \w you|strong="G3754"\w* \w younger|strong="G3501"\w* \w ones|strong="G3748"\w*, \w be|strong="G3956"\w* \w subject|strong="G5293"\w* \w to|strong="G1325"\w* \w the|strong="G3956"\w* \w elder|strong="G4245"\w*. \w Yes|strong="G1161"\w*, \w all|strong="G3956"\w* \w of|strong="G2316"\w* \w you|strong="G3754"\w* \w clothe|strong="G1463"\w* \w yourselves|strong="G5293"\w* \w with|strong="G2316"\w* \w humility|strong="G5012"\w* \w and|strong="G1161"\w* \w subject|strong="G5293"\w* \w yourselves|strong="G5293"\w* \w to|strong="G1325"\w* \w one|strong="G3956"\w* \w another|strong="G3588"\w*; \w for|strong="G3754"\w* “\w God|strong="G2316"\w* resists \w the|strong="G3956"\w* \w proud|strong="G5244"\w*, \w but|strong="G1161"\w* \w gives|strong="G1325"\w* \w grace|strong="G5485"\w* \w to|strong="G1325"\w* \w the|strong="G3956"\w* \w humble|strong="G5011"\w*.”\x + \xo 5:5 \xt Proverbs 3:34 \x* +\v 6 \w Humble|strong="G5013"\w* \w yourselves|strong="G4771"\w* \w therefore|strong="G3767"\w* \w under|strong="G5259"\w* \w the|strong="G1722"\w* \w mighty|strong="G2900"\w* \w hand|strong="G5495"\w* \w of|strong="G5259"\w* \w God|strong="G2316"\w*, \w that|strong="G2443"\w* \w he|strong="G3588"\w* \w may|strong="G2443"\w* \w exalt|strong="G5312"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w due|strong="G1722"\w* \w time|strong="G2540"\w*, +\v 7 \w casting|strong="G1977"\w* \w all|strong="G3956"\w* \w your|strong="G3956"\w* \w worries|strong="G3308"\w* \w on|strong="G1909"\w* \w him|strong="G3588"\w*, \w because|strong="G3754"\w* \w he|strong="G3754"\w* \w cares|strong="G3308"\w* \w for|strong="G3754"\w* \w you|strong="G5210"\w*. +\p +\v 8 \w Be|strong="G3588"\w* \w sober|strong="G3525"\w* \w and|strong="G3588"\w* self-controlled. \w Be|strong="G3588"\w* \w watchful|strong="G1127"\w*. \w Your|strong="G3588"\w* adversary, \w the|strong="G3588"\w* \w devil|strong="G1228"\w*, \w walks|strong="G4043"\w* \w around|strong="G4043"\w* \w like|strong="G5613"\w* \w a|strong="G5613"\w* \w roaring|strong="G5612"\w* \w lion|strong="G3023"\w*, \w seeking|strong="G2212"\w* \w whom|strong="G5101"\w* \w he|strong="G3588"\w* \w may|strong="G5210"\w* \w devour|strong="G2666"\w*. +\v 9 Withstand \w him|strong="G3588"\w* steadfast \w in|strong="G1722"\w* \w your|strong="G1722"\w* \w faith|strong="G4102"\w*, \w knowing|strong="G1492"\w* \w that|strong="G3739"\w* \w your|strong="G1722"\w* brothers \w who|strong="G3739"\w* \w are|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w* \w are|strong="G3588"\w* undergoing \w the|strong="G1722"\w* \w same|strong="G3739"\w* \w sufferings|strong="G3804"\w*. +\v 10 \w But|strong="G1161"\w* \w may|strong="G5547"\w* \w the|strong="G1722"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* \w all|strong="G3956"\w* \w grace|strong="G5485"\w*, \w who|strong="G3588"\w* \w called|strong="G2564"\w* \w you|strong="G5210"\w* \w to|strong="G1519"\w* \w his|strong="G3956"\w* eternal \w glory|strong="G1391"\w* \w by|strong="G1722"\w* \w Christ|strong="G5547"\w* \w Jesus|strong="G4741"\w*, \w after|strong="G1161"\w* \w you|strong="G5210"\w* \w have|strong="G5210"\w* \w suffered|strong="G3958"\w* \w a|strong="G1519"\w* \w little|strong="G3641"\w* \w while|strong="G1722"\w*, \w perfect|strong="G2675"\w*, \w establish|strong="G4741"\w*, \w strengthen|strong="G4741"\w*, \w and|strong="G1161"\w* \w settle|strong="G2311"\w* \w you|strong="G5210"\w*. +\v 11 \w To|strong="G1519"\w* \w him|strong="G3588"\w* \w be|strong="G1519"\w* \w the|strong="G1519"\w* glory \w and|strong="G3588"\w* \w the|strong="G1519"\w* \w power|strong="G2904"\w* \w forever|strong="G1519"\w* \w and|strong="G3588"\w* \w ever|strong="G1519"\w*. Amen. +\p +\v 12 \w Through|strong="G1223"\w* \w Silvanus|strong="G4610"\w*, \w our|strong="G2316"\w* \w faithful|strong="G4103"\w* brother, \w as|strong="G5613"\w* \w I|strong="G3739"\w* \w consider|strong="G3049"\w* \w him|strong="G3588"\w*, \w I|strong="G3739"\w* \w have|strong="G2532"\w* \w written|strong="G1125"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w briefly|strong="G3641"\w*, \w exhorting|strong="G3870"\w* \w and|strong="G2532"\w* \w testifying|strong="G1957"\w* \w that|strong="G3739"\w* \w this|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w true|strong="G4103"\w* \w grace|strong="G5485"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w* \w in|strong="G1519"\w* \w which|strong="G3739"\w* \w you|strong="G5210"\w* \w stand|strong="G2476"\w*. +\v 13 \w She|strong="G2532"\w* \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* Babylon, \w chosen|strong="G4899"\w* \w together|strong="G2532"\w* \w with|strong="G1722"\w* \w you|strong="G5210"\w*, greets \w you|strong="G5210"\w*. \w So|strong="G2532"\w* \w does|strong="G5207"\w* \w Mark|strong="G3138"\w*, \w my|strong="G1722"\w* \w son|strong="G5207"\w*. +\v 14 Greet \w one|strong="G3956"\w* \w another|strong="G3588"\w* \w with|strong="G1722"\w* \w a|strong="G1722"\w* \w kiss|strong="G5370"\w* \w of|strong="G1722"\w* love. +\p \w Peace|strong="G1515"\w* \w be|strong="G3956"\w* \w to|strong="G1722"\w* \w all|strong="G3956"\w* \w of|strong="G1722"\w* \w you|strong="G5210"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w in|strong="G1722"\w* \w Christ|strong="G5547"\w* Jesus. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/91-2PEeng-web.usfm b/bibles/eng-web_usfm/91-2PEeng-web.usfm new file mode 100644 index 0000000..5ed7801 --- /dev/null +++ b/bibles/eng-web_usfm/91-2PEeng-web.usfm @@ -0,0 +1,82 @@ +\id 2PE 61-2PE-web.sfm World English Bible (WEB) +\ide UTF-8 +\h 2 Peter +\toc1 Peter’s Second Letter +\toc2 2 Peter +\toc3 2Pe +\mt1 Peter’s Second Letter +\c 1 +\p +\v 1 \w Simon|strong="G4826"\w* \w Peter|strong="G4074"\w*, \w a|strong="G2532"\w* \w servant|strong="G1401"\w* \w and|strong="G2532"\w* apostle \w of|strong="G2316"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*,\f + \fr 1:1 \ft “Christ” means “Anointed One”.\f* \w to|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w have|strong="G2532"\w* \w obtained|strong="G2975"\w* \w a|strong="G2532"\w* \w like|strong="G2975"\w* \w precious|strong="G2472"\w* \w faith|strong="G4102"\w* \w with|strong="G1722"\w* \w us|strong="G2249"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w righteousness|strong="G1343"\w* \w of|strong="G2316"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w Savior|strong="G4990"\w*, \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*: +\v 2 \w Grace|strong="G5485"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w peace|strong="G1515"\w* \w be|strong="G2532"\w* \w multiplied|strong="G4129"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w knowledge|strong="G1922"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w of|strong="G2316"\w* \w Jesus|strong="G2424"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w*, +\v 3 \w seeing|strong="G1223"\w* \w that|strong="G3588"\w* \w his|strong="G3956"\w* \w divine|strong="G2304"\w* \w power|strong="G1411"\w* \w has|strong="G2532"\w* \w granted|strong="G1433"\w* \w to|strong="G4314"\w* \w us|strong="G2249"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w that|strong="G3588"\w* \w pertain|strong="G3588"\w* \w to|strong="G4314"\w* \w life|strong="G2222"\w* \w and|strong="G2532"\w* \w godliness|strong="G2150"\w*, \w through|strong="G1223"\w* \w the|strong="G2532"\w* \w knowledge|strong="G1922"\w* \w of|strong="G1223"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w called|strong="G2564"\w* \w us|strong="G2249"\w* \w by|strong="G1223"\w* \w his|strong="G3956"\w* \w own|strong="G2398"\w* \w glory|strong="G1391"\w* \w and|strong="G2532"\w* \w virtue|strong="G1411"\w*, +\v 4 \w by|strong="G1223"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w has|strong="G3739"\w* \w granted|strong="G1433"\w* \w to|strong="G2443"\w* \w us|strong="G2249"\w* \w his|strong="G1223"\w* \w precious|strong="G5093"\w* \w and|strong="G2532"\w* \w exceedingly|strong="G3173"\w* \w great|strong="G3173"\w* \w promises|strong="G1862"\w*; \w that|strong="G2443"\w* \w through|strong="G1223"\w* \w these|strong="G3778"\w* \w you|strong="G3739"\w* \w may|strong="G2532"\w* \w become|strong="G1096"\w* \w partakers|strong="G2844"\w* \w of|strong="G1223"\w* \w the|strong="G1722"\w* \w divine|strong="G2304"\w* \w nature|strong="G5449"\w*, \w having|strong="G2532"\w* escaped \w from|strong="G2532"\w* \w the|strong="G1722"\w* \w corruption|strong="G5356"\w* \w that|strong="G2443"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w* \w by|strong="G1223"\w* \w lust|strong="G1939"\w*. +\v 5 \w Yes|strong="G1161"\w*, \w and|strong="G2532"\w* \w for|strong="G1161"\w* \w this|strong="G3778"\w* \w very|strong="G2532"\w* \w cause|strong="G3588"\w* adding \w on|strong="G1722"\w* \w your|strong="G2532"\w* \w part|strong="G1161"\w* \w all|strong="G3956"\w* \w diligence|strong="G4710"\w*, \w in|strong="G1722"\w* \w your|strong="G2532"\w* \w faith|strong="G4102"\w* \w supply|strong="G2023"\w* moral excellence; \w and|strong="G2532"\w* \w in|strong="G1722"\w* moral excellence, \w knowledge|strong="G1108"\w*; +\v 6 \w and|strong="G1161"\w* \w in|strong="G1722"\w* \w knowledge|strong="G1108"\w*, \w self-control|strong="G1466"\w*; \w and|strong="G1161"\w* \w in|strong="G1722"\w* \w self-control|strong="G1466"\w*, \w perseverance|strong="G5281"\w*; \w and|strong="G1161"\w* \w in|strong="G1722"\w* \w perseverance|strong="G5281"\w*, \w godliness|strong="G2150"\w*; +\v 7 \w and|strong="G1161"\w* \w in|strong="G1722"\w* \w godliness|strong="G2150"\w*, \w brotherly|strong="G5360"\w* affection; \w and|strong="G1161"\w* \w in|strong="G1722"\w* \w brotherly|strong="G5360"\w* affection, \w love|strong="G5360"\w*. +\v 8 \w For|strong="G1063"\w* \w if|strong="G2532"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w are|strong="G3588"\w* \w yours|strong="G4771"\w* \w and|strong="G2532"\w* \w abound|strong="G4121"\w*, \w they|strong="G2532"\w* \w make|strong="G1519"\w* \w you|strong="G5210"\w* \w to|strong="G1519"\w* \w not|strong="G3756"\w* \w be|strong="G2532"\w* idle \w or|strong="G2532"\w* unfruitful \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w knowledge|strong="G1922"\w* \w of|strong="G2532"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\v 9 \w For|strong="G1063"\w* \w he|strong="G3739"\w* \w who|strong="G3739"\w* \w lacks|strong="G3361"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w is|strong="G1510"\w* \w blind|strong="G5185"\w*, seeing only \w what|strong="G3739"\w* \w is|strong="G1510"\w* near, \w having|strong="G3361"\w* \w forgotten|strong="G2983"\w* \w the|strong="G3588"\w* \w cleansing|strong="G2512"\w* \w from|strong="G3588"\w* \w his|strong="G2983"\w* \w old|strong="G3819"\w* sins. +\v 10 \w Therefore|strong="G1352"\w*, brothers,\f + \fr 1:10 \ft The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” \f* \w be|strong="G2532"\w* \w more|strong="G3123"\w* \w diligent|strong="G4704"\w* \w to|strong="G2532"\w* \w make|strong="G4160"\w* \w your|strong="G2532"\w* \w calling|strong="G2821"\w* \w and|strong="G2532"\w* \w election|strong="G1589"\w* sure. \w For|strong="G1063"\w* \w if|strong="G2532"\w* \w you|strong="G5210"\w* \w do|strong="G4160"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w you|strong="G5210"\w* \w will|strong="G2532"\w* \w never|strong="G3756"\w* \w stumble|strong="G4417"\w*. +\v 11 \w For|strong="G1063"\w* \w thus|strong="G3779"\w* \w you|strong="G5210"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w richly|strong="G4146"\w* \w supplied|strong="G2023"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w entrance|strong="G1529"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* eternal Kingdom \w of|strong="G2532"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w and|strong="G2532"\w* \w Savior|strong="G4990"\w*, \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\p +\v 12 \w Therefore|strong="G1352"\w* \w I|strong="G2532"\w* \w will|strong="G3195"\w* \w not|strong="G2532"\w* \w be|strong="G2532"\w* negligent \w to|strong="G2532"\w* \w remind|strong="G5279"\w* \w you|strong="G5210"\w* \w of|strong="G4012"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w though|strong="G2539"\w* \w you|strong="G5210"\w* \w know|strong="G1492"\w* \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w are|strong="G3588"\w* \w established|strong="G4741"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w present|strong="G3918"\w* truth. +\v 13 \w I|strong="G1161"\w* \w think|strong="G2233"\w* \w it|strong="G1161"\w* \w right|strong="G1342"\w*, \w as|strong="G3745"\w* \w long|strong="G3745"\w* \w as|strong="G3745"\w* \w I|strong="G1161"\w* \w am|strong="G1510"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* tent, \w to|strong="G1909"\w* \w stir|strong="G1326"\w* \w you|strong="G5210"\w* \w up|strong="G1326"\w* \w by|strong="G1722"\w* reminding \w you|strong="G5210"\w*, +\v 14 \w knowing|strong="G1492"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w putting|strong="G2532"\w* off \w of|strong="G2532"\w* \w my|strong="G3708"\w* tent \w comes|strong="G1510"\w* swiftly, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w made|strong="G1213"\w* \w clear|strong="G1213"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w*. +\v 15 \w Yes|strong="G1161"\w*, \w I|strong="G2532"\w* \w will|strong="G2532"\w* \w make|strong="G4160"\w* \w every|strong="G2532"\w* \w effort|strong="G4704"\w* \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w may|strong="G2532"\w* \w always|strong="G1539"\w* \w be|strong="G2532"\w* \w able|strong="G2192"\w* \w to|strong="G2532"\w* \w remember|strong="G4160"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w even|strong="G2532"\w* \w after|strong="G3326"\w* \w my|strong="G1699"\w* \w departure|strong="G1841"\w*. +\p +\v 16 \w For|strong="G1063"\w* \w we|strong="G2249"\w* didn’\w t|strong="G3588"\w* \w follow|strong="G1811"\w* \w cunningly|strong="G1811"\w* \w devised|strong="G4679"\w* \w fables|strong="G3454"\w* \w when|strong="G2532"\w* \w we|strong="G2249"\w* \w made|strong="G1096"\w* \w known|strong="G1107"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w the|strong="G2532"\w* \w power|strong="G1411"\w* \w and|strong="G2532"\w* \w coming|strong="G3952"\w* \w of|strong="G2532"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w but|strong="G2532"\w* \w we|strong="G2249"\w* \w were|strong="G3588"\w* \w eyewitnesses|strong="G2030"\w* \w of|strong="G2532"\w* \w his|strong="G2532"\w* \w majesty|strong="G3168"\w*. +\v 17 \w For|strong="G1063"\w* \w he|strong="G2532"\w* \w received|strong="G2983"\w* \w from|strong="G3844"\w* \w God|strong="G2316"\w* \w the|strong="G2532"\w* \w Father|strong="G3962"\w* \w honor|strong="G5092"\w* \w and|strong="G2532"\w* \w glory|strong="G1391"\w* \w when|strong="G2532"\w* \w the|strong="G2532"\w* \w voice|strong="G5456"\w* \w came|strong="G2532"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w from|strong="G3844"\w* \w the|strong="G2532"\w* \w Majestic|strong="G3169"\w* \w Glory|strong="G1391"\w*, “\w This|strong="G3778"\w* \w is|strong="G1510"\w* \w my|strong="G1473"\w* beloved \w Son|strong="G5207"\w*, \w in|strong="G1519"\w* \w whom|strong="G3739"\w* \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w well|strong="G2532"\w* \w pleased|strong="G2106"\w*.”\x + \xo 1:17 \xt Matthew 17:5; Mark 9:7; Luke 9:35\x* +\v 18 \w We|strong="G2249"\w* heard \w this|strong="G3778"\w* \w voice|strong="G5456"\w* \w come|strong="G1510"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w heaven|strong="G3772"\w* \w when|strong="G2532"\w* \w we|strong="G2249"\w* \w were|strong="G1510"\w* \w with|strong="G1722"\w* \w him|strong="G3588"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* holy \w mountain|strong="G3735"\w*. +\p +\v 19 \w We|strong="G3739"\w* \w have|strong="G2192"\w* \w the|strong="G1722"\w* \w more|strong="G2192"\w* sure \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w prophecy|strong="G4397"\w*; \w and|strong="G2532"\w* \w you|strong="G5210"\w* \w do|strong="G4160"\w* \w well|strong="G2573"\w* \w that|strong="G3739"\w* \w you|strong="G5210"\w* \w heed|strong="G4337"\w* \w it|strong="G2532"\w* \w as|strong="G5613"\w* \w to|strong="G2532"\w* \w a|strong="G2192"\w* \w lamp|strong="G3088"\w* \w shining|strong="G5316"\w* \w in|strong="G1722"\w* \w a|strong="G2192"\w* dark \w place|strong="G5117"\w*, \w until|strong="G2193"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w dawns|strong="G1306"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w morning|strong="G2250"\w* \w star|strong="G5459"\w* arises \w in|strong="G1722"\w* \w your|strong="G2192"\w* \w hearts|strong="G2588"\w*, +\v 20 \w knowing|strong="G1097"\w* \w this|strong="G3778"\w* \w first|strong="G4413"\w*, \w that|strong="G3754"\w* \w no|strong="G3756"\w* \w prophecy|strong="G4394"\w* \w of|strong="G3956"\w* \w Scripture|strong="G1124"\w* \w is|strong="G3778"\w* \w of|strong="G3956"\w* \w private|strong="G2398"\w* \w interpretation|strong="G1955"\w*. +\v 21 \w For|strong="G1063"\w* \w no|strong="G3756"\w* \w prophecy|strong="G4394"\w* \w ever|strong="G4218"\w* \w came|strong="G5342"\w* \w by|strong="G5259"\w* \w the|strong="G1063"\w* \w will|strong="G2307"\w* \w of|strong="G5259"\w* \w man|strong="G3756"\w*, \w but|strong="G1063"\w* \w holy|strong="G4151"\w* men \w of|strong="G5259"\w* \w God|strong="G2316"\w* \w spoke|strong="G2980"\w*, being \w moved|strong="G5342"\w* \w by|strong="G5259"\w* \w the|strong="G1063"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*. +\c 2 +\p +\v 1 \w But|strong="G1161"\w* \w false|strong="G5578"\w* \w prophets|strong="G5578"\w* \w also|strong="G2532"\w* \w arose|strong="G1096"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* \w people|strong="G2992"\w*, \w as|strong="G5613"\w* \w false|strong="G5578"\w* \w teachers|strong="G5572"\w* \w will|strong="G1510"\w* \w also|strong="G2532"\w* \w be|strong="G1096"\w* \w among|strong="G1722"\w* \w you|strong="G5210"\w*, \w who|strong="G3588"\w* \w will|strong="G1510"\w* \w secretly|strong="G3919"\w* \w bring|strong="G1863"\w* \w in|strong="G1722"\w* destructive heresies, denying \w even|strong="G2532"\w* \w the|strong="G1722"\w* \w Master|strong="G1203"\w* \w who|strong="G3588"\w* bought \w them|strong="G3588"\w*, \w bringing|strong="G1863"\w* \w on|strong="G1722"\w* \w themselves|strong="G1438"\w* \w swift|strong="G5031"\w* destruction. +\v 2 \w Many|strong="G4183"\w* \w will|strong="G2532"\w* \w follow|strong="G1811"\w* \w their|strong="G2532"\w* immoral\f + \fr 2:2 \ft TR reads “destructive” instead of “immoral”\f* \w ways|strong="G3598"\w*, \w and|strong="G2532"\w* \w as|strong="G2532"\w* \w a|strong="G2532"\w* result, \w the|strong="G2532"\w* \w way|strong="G3598"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* truth \w will|strong="G2532"\w* \w be|strong="G2532"\w* maligned. +\v 3 \w In|strong="G1722"\w* \w covetousness|strong="G4124"\w* \w they|strong="G2532"\w* \w will|strong="G2532"\w* \w exploit|strong="G1710"\w* \w you|strong="G5210"\w* \w with|strong="G1722"\w* deceptive \w words|strong="G3056"\w*: \w whose|strong="G3739"\w* \w sentence|strong="G2917"\w* \w now|strong="G2532"\w* \w from|strong="G2532"\w* \w of|strong="G3056"\w* \w old|strong="G2532"\w* doesn’\w t|strong="G3588"\w* linger, \w and|strong="G2532"\w* \w their|strong="G2532"\w* destruction \w will|strong="G2532"\w* \w not|strong="G3756"\w* slumber. +\p +\v 4 \w For|strong="G1063"\w* \w if|strong="G1487"\w* \w God|strong="G2316"\w* didn’\w t|strong="G3588"\w* \w spare|strong="G5339"\w* angels \w when|strong="G3588"\w* \w they|strong="G3588"\w* sinned, \w but|strong="G1487"\w* \w cast|strong="G3756"\w* \w them|strong="G3588"\w* \w down|strong="G3860"\w* \w to|strong="G1519"\w* Tartarus,\f + \fr 2:4 \ft Tartarus is another name for Hell\f* \w and|strong="G2316"\w* \w committed|strong="G3860"\w* \w them|strong="G3588"\w* \w to|strong="G1519"\w* pits \w of|strong="G2316"\w* \w darkness|strong="G2217"\w* \w to|strong="G1519"\w* \w be|strong="G3756"\w* \w reserved|strong="G5083"\w* \w for|strong="G1063"\w* \w judgment|strong="G2920"\w*; +\v 5 \w and|strong="G2532"\w* didn’t \w spare|strong="G5339"\w* \w the|strong="G2532"\w* ancient \w world|strong="G2889"\w*, \w but|strong="G2532"\w* \w preserved|strong="G5442"\w* \w Noah|strong="G3575"\w* \w with|strong="G2532"\w* \w seven|strong="G3590"\w* \w others|strong="G3590"\w*, \w a|strong="G2532"\w* \w preacher|strong="G2783"\w* \w of|strong="G2532"\w* \w righteousness|strong="G1343"\w*, \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w brought|strong="G1863"\w* \w a|strong="G2532"\w* \w flood|strong="G2627"\w* \w on|strong="G3756"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* ungodly, +\v 6 \w and|strong="G2532"\w* \w turning|strong="G5077"\w* \w the|strong="G2532"\w* \w cities|strong="G4172"\w* \w of|strong="G2532"\w* \w Sodom|strong="G4670"\w* \w and|strong="G2532"\w* \w Gomorrah|strong="G1116"\w* \w into|strong="G1116"\w* \w ashes|strong="G5077"\w*, \w condemned|strong="G2632"\w* \w them|strong="G2532"\w* \w to|strong="G2532"\w* \w destruction|strong="G2692"\w*, \w having|strong="G2532"\w* \w made|strong="G5087"\w* \w them|strong="G2532"\w* \w an|strong="G2532"\w* \w example|strong="G5262"\w* \w to|strong="G2532"\w* \w those|strong="G3195"\w* \w who|strong="G2532"\w* \w would|strong="G3195"\w* \w live|strong="G2532"\w* \w in|strong="G2532"\w* \w an|strong="G2532"\w* ungodly way, +\v 7 \w and|strong="G2532"\w* \w delivered|strong="G4506"\w* \w righteous|strong="G1342"\w* \w Lot|strong="G3091"\w*, \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w very|strong="G2532"\w* distressed \w by|strong="G1722"\w* \w the|strong="G1722"\w* lustful life \w of|strong="G5259"\w* \w the|strong="G1722"\w* \w wicked|strong="G3588"\w* +\v 8 (\w for|strong="G1063"\w* \w that|strong="G3588"\w* \w righteous|strong="G1342"\w* \w man|strong="G1342"\w* \w dwelling|strong="G1460"\w* \w among|strong="G1722"\w* \w them|strong="G3588"\w* \w was|strong="G3588"\w* tormented \w in|strong="G1722"\w* \w his|strong="G1722"\w* \w righteous|strong="G1342"\w* \w soul|strong="G5590"\w* \w from|strong="G1537"\w* \w day|strong="G2250"\w* \w to|strong="G2532"\w* \w day|strong="G2250"\w* \w with|strong="G1722"\w* seeing \w and|strong="G2532"\w* hearing lawless \w deeds|strong="G2041"\w*), +\v 9 \w then|strong="G1161"\w* \w the|strong="G1519"\w* \w Lord|strong="G2962"\w* \w knows|strong="G1492"\w* \w how|strong="G1492"\w* \w to|strong="G1519"\w* \w deliver|strong="G4506"\w* \w the|strong="G1519"\w* \w godly|strong="G2152"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w temptation|strong="G3986"\w* \w and|strong="G1161"\w* \w to|strong="G1519"\w* \w keep|strong="G5083"\w* \w the|strong="G1519"\w* unrighteous \w under|strong="G1537"\w* \w punishment|strong="G2849"\w* \w for|strong="G1519"\w* \w the|strong="G1519"\w* \w day|strong="G2250"\w* \w of|strong="G1537"\w* \w judgment|strong="G2920"\w*, +\v 10 \w but|strong="G1161"\w* \w chiefly|strong="G3122"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w walk|strong="G4198"\w* \w after|strong="G3694"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w lust|strong="G1939"\w* \w of|strong="G2532"\w* defilement \w and|strong="G2532"\w* \w despise|strong="G2706"\w* \w authority|strong="G2963"\w*. \w Daring|strong="G5113"\w*, self-willed, \w they|strong="G2532"\w* \w are|strong="G3588"\w* \w not|strong="G3756"\w* \w afraid|strong="G5141"\w* \w to|strong="G2532"\w* \w speak|strong="G1161"\w* \w evil|strong="G2532"\w* \w of|strong="G2532"\w* dignitaries, +\v 11 \w whereas|strong="G3699"\w* angels, \w though|strong="G2532"\w* \w greater|strong="G3173"\w* \w in|strong="G2596"\w* \w might|strong="G2479"\w* \w and|strong="G2532"\w* \w power|strong="G1411"\w*, don’t \w bring|strong="G5342"\w* \w a|strong="G2532"\w* slanderous \w judgment|strong="G2920"\w* \w against|strong="G2596"\w* \w them|strong="G5342"\w* \w before|strong="G3844"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w*. +\v 12 \w But|strong="G1161"\w* \w these|strong="G3778"\w*, \w as|strong="G5613"\w* unreasoning \w creatures|strong="G2226"\w*, \w born|strong="G1080"\w* \w natural|strong="G5446"\w* \w animals|strong="G2226"\w* \w to|strong="G1519"\w* \w be|strong="G2532"\w* taken \w and|strong="G2532"\w* \w destroyed|strong="G5356"\w*, speaking \w evil|strong="G2532"\w* \w in|strong="G1722"\w* matters \w about|strong="G5613"\w* \w which|strong="G3739"\w* \w they|strong="G2532"\w* \w are|strong="G3588"\w* ignorant, \w will|strong="G2532"\w* \w in|strong="G1722"\w* \w their|strong="G2532"\w* destroying surely \w be|strong="G2532"\w* \w destroyed|strong="G5356"\w*, +\v 13 \w receiving|strong="G2865"\w* \w the|strong="G1722"\w* \w wages|strong="G3408"\w* \w of|strong="G2250"\w* unrighteousness; \w people|strong="G3588"\w* \w who|strong="G3588"\w* \w count|strong="G2233"\w* \w it|strong="G2532"\w* \w pleasure|strong="G2237"\w* \w to|strong="G2532"\w* \w revel|strong="G5172"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w daytime|strong="G2250"\w*, \w spots|strong="G4696"\w* \w and|strong="G2532"\w* defects, \w reveling|strong="G1792"\w* \w in|strong="G1722"\w* \w their|strong="G2532"\w* deceit \w while|strong="G1722"\w* \w they|strong="G2532"\w* \w feast|strong="G4910"\w* \w with|strong="G1722"\w* \w you|strong="G5210"\w*; +\v 14 \w having|strong="G2192"\w* \w eyes|strong="G3788"\w* \w full|strong="G3324"\w* \w of|strong="G2532"\w* \w adultery|strong="G3428"\w*, \w and|strong="G2532"\w* \w who|strong="G2532"\w* can’t cease \w from|strong="G2532"\w* sin, \w enticing|strong="G1185"\w* unsettled \w souls|strong="G5590"\w*, \w having|strong="G2192"\w* \w a|strong="G2192"\w* \w heart|strong="G2588"\w* \w trained|strong="G1128"\w* \w in|strong="G2532"\w* \w greed|strong="G4124"\w*, \w accursed|strong="G2671"\w* \w children|strong="G5043"\w*! +\v 15 \w Forsaking|strong="G2641"\w* \w the|strong="G3588"\w* \w right|strong="G2117"\w* \w way|strong="G3598"\w*, \w they|strong="G3588"\w* \w went|strong="G3588"\w* \w astray|strong="G4105"\w*, having \w followed|strong="G1811"\w* \w the|strong="G3588"\w* \w way|strong="G3598"\w* \w of|strong="G3598"\w* Balaam \w the|strong="G3588"\w* son \w of|strong="G3598"\w* Beor, \w who|strong="G3739"\w* loved \w the|strong="G3588"\w* \w wages|strong="G3408"\w* \w of|strong="G3598"\w* wrongdoing; +\v 16 \w but|strong="G1161"\w* \w he|strong="G1161"\w* \w was|strong="G3588"\w* \w rebuked|strong="G1649"\w* \w for|strong="G1161"\w* \w his|strong="G1722"\w* \w own|strong="G2398"\w* disobedience. \w A|strong="G2192"\w* speechless \w donkey|strong="G5268"\w* spoke \w with|strong="G1722"\w* \w a|strong="G2192"\w* man’\w s|strong="G2192"\w* \w voice|strong="G5456"\w* \w and|strong="G1161"\w* stopped \w the|strong="G1722"\w* \w madness|strong="G3913"\w* \w of|strong="G1722"\w* \w the|strong="G1722"\w* \w prophet|strong="G4396"\w*. +\p +\v 17 \w These|strong="G3778"\w* \w are|strong="G1510"\w* \w wells|strong="G4077"\w* \w without|strong="G2532"\w* water, clouds \w driven|strong="G1643"\w* \w by|strong="G5259"\w* \w a|strong="G2532"\w* \w storm|strong="G2978"\w*, \w for|strong="G2532"\w* \w whom|strong="G3739"\w* \w the|strong="G2532"\w* \w blackness|strong="G2217"\w* \w of|strong="G5259"\w* \w darkness|strong="G4655"\w* \w has|strong="G3739"\w* \w been|strong="G1510"\w* \w reserved|strong="G5083"\w* forever. +\v 18 \w For|strong="G1063"\w*, uttering \w great|strong="G5350"\w* \w swelling|strong="G5246"\w* \w words|strong="G3641"\w* \w of|strong="G1722"\w* emptiness, \w they|strong="G3588"\w* \w entice|strong="G1185"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w lusts|strong="G1939"\w* \w of|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*, \w by|strong="G1722"\w* licentiousness, \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w indeed|strong="G1063"\w* escaping \w from|strong="G3588"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* live \w in|strong="G1722"\w* \w error|strong="G4106"\w*; +\v 19 \w promising|strong="G1861"\w* \w them|strong="G3588"\w* \w liberty|strong="G1657"\w*, \w while|strong="G3739"\w* \w they|strong="G2532"\w* \w themselves|strong="G3778"\w* \w are|strong="G3588"\w* bondservants \w of|strong="G2532"\w* \w corruption|strong="G5356"\w*; \w for|strong="G1063"\w* \w a|strong="G2532"\w* \w man|strong="G5100"\w* \w is|strong="G3588"\w* \w brought|strong="G2532"\w* \w into|strong="G1401"\w* \w bondage|strong="G1402"\w* \w by|strong="G2532"\w* \w whoever|strong="G3739"\w* overcomes \w him|strong="G3588"\w*. +\p +\v 20 \w For|strong="G1063"\w* \w if|strong="G1487"\w*, \w after|strong="G1161"\w* \w they|strong="G2532"\w* \w have|strong="G2532"\w* escaped \w the|strong="G1722"\w* defilement \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w* \w through|strong="G1722"\w* \w the|strong="G1722"\w* \w knowledge|strong="G1922"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w and|strong="G2532"\w* \w Savior|strong="G4990"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w they|strong="G2532"\w* \w are|strong="G3588"\w* \w again|strong="G3825"\w* \w entangled|strong="G1707"\w* \w in|strong="G1722"\w* \w it|strong="G2532"\w* \w and|strong="G2532"\w* \w overcome|strong="G2274"\w*, \w the|strong="G1722"\w* \w last|strong="G2078"\w* state \w has|strong="G2962"\w* \w become|strong="G1096"\w* \w worse|strong="G5501"\w* \w for|strong="G1063"\w* \w them|strong="G3588"\w* \w than|strong="G2532"\w* \w the|strong="G1722"\w* \w first|strong="G4413"\w*. +\v 21 \w For|strong="G1063"\w* \w it|strong="G1063"\w* \w would|strong="G1510"\w* \w be|strong="G1510"\w* \w better|strong="G2909"\w* \w for|strong="G1063"\w* \w them|strong="G3588"\w* \w not|strong="G3361"\w* \w to|strong="G3361"\w* \w have|strong="G1510"\w* \w known|strong="G1921"\w* \w the|strong="G1537"\w* \w way|strong="G3598"\w* \w of|strong="G1537"\w* \w righteousness|strong="G1343"\w*, \w than|strong="G2228"\w* \w after|strong="G1063"\w* \w knowing|strong="G1921"\w* \w it|strong="G1063"\w*, \w to|strong="G3361"\w* \w turn|strong="G3860"\w* \w back|strong="G5290"\w* \w from|strong="G1537"\w* \w the|strong="G1537"\w* holy \w commandment|strong="G1785"\w* \w delivered|strong="G3860"\w* \w to|strong="G3361"\w* \w them|strong="G3588"\w*. +\v 22 \w But|strong="G2532"\w* \w it|strong="G2532"\w* \w has|strong="G2532"\w* \w happened|strong="G4819"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w* \w according|strong="G3588"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w true|strong="G3588"\w* \w proverb|strong="G3942"\w*, “\w The|strong="G2532"\w* \w dog|strong="G2965"\w* \w turns|strong="G1994"\w* \w to|strong="G1519"\w* \w his|strong="G1519"\w* \w own|strong="G2398"\w* \w vomit|strong="G1829"\w* \w again|strong="G1994"\w*,”\x + \xo 2:22 \xt Proverbs 26:11\x* \w and|strong="G2532"\w* “\w the|strong="G2532"\w* \w sow|strong="G5300"\w* \w that|strong="G3588"\w* \w has|strong="G2532"\w* \w washed|strong="G3068"\w* \w to|strong="G1519"\w* \w wallowing|strong="G2946"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w mire|strong="G1004"\w*.” +\c 3 +\p +\v 1 \w This|strong="G3778"\w* \w is|strong="G3588"\w* \w now|strong="G2235"\w*, beloved, \w the|strong="G1722"\w* \w second|strong="G1208"\w* \w letter|strong="G1992"\w* \w that|strong="G3739"\w* \w I|strong="G3739"\w* \w have|strong="G5210"\w* \w written|strong="G1125"\w* \w to|strong="G1722"\w* \w you|strong="G5210"\w*; \w and|strong="G3588"\w* \w in|strong="G1722"\w* \w both|strong="G3588"\w* \w of|strong="G1722"\w* \w them|strong="G3588"\w* \w I|strong="G3739"\w* \w stir|strong="G1326"\w* \w up|strong="G1326"\w* \w your|strong="G1722"\w* \w sincere|strong="G1506"\w* \w mind|strong="G1271"\w* \w by|strong="G1722"\w* reminding \w you|strong="G5210"\w* +\v 2 \w that|strong="G3588"\w* \w you|strong="G5210"\w* \w should|strong="G3588"\w* \w remember|strong="G3403"\w* \w the|strong="G2532"\w* \w words|strong="G4487"\w* \w which|strong="G3588"\w* \w were|strong="G3588"\w* spoken \w before|strong="G4302"\w* \w by|strong="G5259"\w* \w the|strong="G2532"\w* holy \w prophets|strong="G4396"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w commandment|strong="G1785"\w* \w of|strong="G5259"\w* us, \w the|strong="G2532"\w* apostles \w of|strong="G5259"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w and|strong="G2532"\w* \w Savior|strong="G4990"\w*, +\v 3 \w knowing|strong="G1097"\w* \w this|strong="G3778"\w* \w first|strong="G4413"\w*, \w that|strong="G3754"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w last|strong="G2078"\w* \w days|strong="G2250"\w* \w mockers|strong="G1703"\w* \w will|strong="G3778"\w* \w come|strong="G2064"\w*, \w walking|strong="G4198"\w* \w after|strong="G2596"\w* \w their|strong="G2596"\w* \w own|strong="G2398"\w* \w lusts|strong="G1939"\w* +\v 4 \w and|strong="G2532"\w* \w saying|strong="G3004"\w*, “\w Where|strong="G4226"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w promise|strong="G1860"\w* \w of|strong="G2532"\w* \w his|strong="G3956"\w* \w coming|strong="G3952"\w*? \w For|strong="G1063"\w*, \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w day|strong="G3588"\w* \w that|strong="G3739"\w* \w the|strong="G2532"\w* \w fathers|strong="G3962"\w* \w fell|strong="G2837"\w* \w asleep|strong="G2837"\w*, \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w continue|strong="G1265"\w* \w as|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G1510"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* beginning \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w creation|strong="G2937"\w*.” +\v 5 \w For|strong="G1063"\w* \w they|strong="G2532"\w* willfully forget \w that|strong="G3754"\w* \w there|strong="G2532"\w* \w were|strong="G1510"\w* \w heavens|strong="G3772"\w* \w from|strong="G1537"\w* \w of|strong="G1537"\w* \w old|strong="G2532"\w*, \w and|strong="G2532"\w* \w an|strong="G2532"\w* \w earth|strong="G1093"\w* \w formed|strong="G4921"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w water|strong="G5204"\w* \w and|strong="G2532"\w* amid \w water|strong="G5204"\w* \w by|strong="G1223"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*, +\v 6 \w by|strong="G1223"\w* \w which|strong="G3739"\w* \w means|strong="G1223"\w* \w the|strong="G1223"\w* \w world|strong="G2889"\w* \w that|strong="G3739"\w* existed \w then|strong="G5119"\w*, \w being|strong="G3739"\w* \w overflowed|strong="G2626"\w* \w with|strong="G1223"\w* \w water|strong="G5204"\w*, perished. +\v 7 \w But|strong="G1161"\w* \w the|strong="G2532"\w* \w heavens|strong="G3772"\w* \w that|strong="G3588"\w* \w exist|strong="G1510"\w* \w now|strong="G1161"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w by|strong="G2532"\w* \w the|strong="G2532"\w* \w same|strong="G2532"\w* \w word|strong="G3056"\w* \w have|strong="G2532"\w* \w been|strong="G1510"\w* \w stored|strong="G2343"\w* \w up|strong="G2343"\w* \w for|strong="G1519"\w* \w fire|strong="G4442"\w*, \w being|strong="G1510"\w* \w reserved|strong="G5083"\w* \w against|strong="G1519"\w* \w the|strong="G2532"\w* \w day|strong="G2250"\w* \w of|strong="G3056"\w* \w judgment|strong="G2920"\w* \w and|strong="G2532"\w* destruction \w of|strong="G3056"\w* ungodly \w men|strong="G3588"\w*. +\p +\v 8 \w But|strong="G1161"\w* don’t forget \w this|strong="G3778"\w* \w one|strong="G1520"\w* \w thing|strong="G1520"\w*, beloved, \w that|strong="G3754"\w* \w one|strong="G1520"\w* \w day|strong="G2250"\w* \w is|strong="G3778"\w* \w with|strong="G3844"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w as|strong="G5613"\w* \w a|strong="G5613"\w* \w thousand|strong="G5507"\w* \w years|strong="G2094"\w*, \w and|strong="G2532"\w* \w a|strong="G5613"\w* \w thousand|strong="G5507"\w* \w years|strong="G2094"\w* \w as|strong="G5613"\w* \w one|strong="G1520"\w* \w day|strong="G2250"\w*. +\v 9 \w The|strong="G1519"\w* \w Lord|strong="G2962"\w* \w is|strong="G3588"\w* \w not|strong="G3756"\w* \w slow|strong="G1019"\w* \w concerning|strong="G1519"\w* \w his|strong="G3956"\w* \w promise|strong="G1860"\w*, \w as|strong="G5613"\w* \w some|strong="G5100"\w* \w count|strong="G2233"\w* \w slowness|strong="G1022"\w*; \w but|strong="G3361"\w* \w he|strong="G3588"\w* \w is|strong="G3588"\w* \w patient|strong="G3114"\w* \w with|strong="G1223"\w* \w us|strong="G1519"\w*, \w not|strong="G3756"\w* \w wishing|strong="G1014"\w* \w that|strong="G3588"\w* \w anyone|strong="G5100"\w* \w should|strong="G5100"\w* perish, \w but|strong="G3361"\w* \w that|strong="G3588"\w* \w all|strong="G3956"\w* \w should|strong="G5100"\w* \w come|strong="G5562"\w* \w to|strong="G1519"\w* \w repentance|strong="G3341"\w*. +\v 10 \w But|strong="G1161"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w will|strong="G2532"\w* \w come|strong="G2240"\w* \w as|strong="G5613"\w* \w a|strong="G5613"\w* \w thief|strong="G2812"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* night, \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w the|strong="G1722"\w* \w heavens|strong="G3772"\w* \w will|strong="G2532"\w* \w pass|strong="G3928"\w* \w away|strong="G3928"\w* \w with|strong="G1722"\w* \w a|strong="G5613"\w* \w great|strong="G2532"\w* \w noise|strong="G4500"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w elements|strong="G4747"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w dissolved|strong="G3089"\w* \w with|strong="G1722"\w* fervent \w heat|strong="G2741"\w*; \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w works|strong="G2041"\w* \w that|strong="G3739"\w* \w are|strong="G3588"\w* \w in|strong="G1722"\w* \w it|strong="G2532"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w burned|strong="G2618"\w* \w up|strong="G2618"\w*. +\v 11 \w Therefore|strong="G3767"\w*, since \w all|strong="G3956"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w destroyed|strong="G3089"\w* like \w this|strong="G3778"\w*, \w what|strong="G4217"\w* \w kind|strong="G3956"\w* \w of|strong="G2532"\w* \w people|strong="G3956"\w* \w ought|strong="G1163"\w* \w you|strong="G5210"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w in|strong="G1722"\w* holy living \w and|strong="G2532"\w* \w godliness|strong="G2150"\w*, +\v 12 \w looking|strong="G4328"\w* \w for|strong="G1223"\w* \w and|strong="G2532"\w* \w earnestly|strong="G2532"\w* desiring \w the|strong="G2532"\w* \w coming|strong="G3952"\w* \w of|strong="G2250"\w* \w the|strong="G2532"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* \w God|strong="G2316"\w*, \w which|strong="G3739"\w* \w will|strong="G2316"\w* \w cause|strong="G1223"\w* \w the|strong="G2532"\w* \w burning|strong="G4448"\w* \w heavens|strong="G3772"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w dissolved|strong="G3089"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w elements|strong="G4747"\w* \w will|strong="G2316"\w* \w melt|strong="G5080"\w* \w with|strong="G1223"\w* fervent \w heat|strong="G2741"\w*? +\v 13 \w But|strong="G1161"\w*, \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w his|strong="G1722"\w* \w promise|strong="G1862"\w*, \w we|strong="G3739"\w* \w look|strong="G4328"\w* \w for|strong="G1161"\w* \w new|strong="G2537"\w* \w heavens|strong="G3772"\w* \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w new|strong="G2537"\w* \w earth|strong="G1093"\w*, \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w righteousness|strong="G1343"\w* \w dwells|strong="G2730"\w*. +\p +\v 14 \w Therefore|strong="G1352"\w*, beloved, seeing \w that|strong="G2532"\w* \w you|strong="G1722"\w* \w look|strong="G4328"\w* \w for|strong="G1722"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w be|strong="G2532"\w* \w diligent|strong="G4704"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w found|strong="G2147"\w* \w in|strong="G1722"\w* \w peace|strong="G1515"\w*, \w without|strong="G2532"\w* defect \w and|strong="G2532"\w* blameless \w in|strong="G1722"\w* \w his|strong="G1722"\w* sight. +\v 15 \w Regard|strong="G2233"\w* \w the|strong="G2532"\w* \w patience|strong="G3115"\w* \w of|strong="G2532"\w* \w our|strong="G2532"\w* \w Lord|strong="G2962"\w* \w as|strong="G2531"\w* \w salvation|strong="G4991"\w*; \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w our|strong="G2532"\w* beloved brother \w Paul|strong="G3972"\w* \w also|strong="G2532"\w*, \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w wisdom|strong="G4678"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*, \w wrote|strong="G1125"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*, +\v 16 \w as|strong="G5613"\w* \w also|strong="G2532"\w* \w in|strong="G1722"\w* \w all|strong="G3956"\w* \w of|strong="G4012"\w* \w his|strong="G3956"\w* \w letters|strong="G1992"\w*, \w speaking|strong="G2980"\w* \w in|strong="G1722"\w* \w them|strong="G3588"\w* \w of|strong="G4012"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w*. \w In|strong="G1722"\w* \w those|strong="G3588"\w*, \w there|strong="G2532"\w* \w are|strong="G1510"\w* \w some|strong="G5100"\w* \w things|strong="G3956"\w* \w that|strong="G3739"\w* \w are|strong="G1510"\w* \w hard|strong="G1425"\w* \w to|strong="G4314"\w* \w understand|strong="G1425"\w*, \w which|strong="G3739"\w* \w the|strong="G1722"\w* ignorant \w and|strong="G2532"\w* unsettled \w twist|strong="G4761"\w*, \w as|strong="G5613"\w* \w they|strong="G2532"\w* \w also|strong="G2532"\w* \w do|strong="G2532"\w* \w to|strong="G4314"\w* \w the|strong="G1722"\w* \w other|strong="G3062"\w* \w Scriptures|strong="G1124"\w*, \w to|strong="G4314"\w* \w their|strong="G2532"\w* \w own|strong="G2398"\w* destruction. +\v 17 \w You|strong="G5210"\w* \w therefore|strong="G3767"\w*, beloved, \w knowing|strong="G4267"\w* \w these|strong="G3588"\w* \w things|strong="G3588"\w* \w beforehand|strong="G4267"\w*, \w beware|strong="G5442"\w*, \w lest|strong="G3361"\w* \w being|strong="G2443"\w* \w carried|strong="G4879"\w* \w away|strong="G4879"\w* \w with|strong="G3588"\w* \w the|strong="G3588"\w* \w error|strong="G4106"\w* \w of|strong="G3588"\w* \w the|strong="G3588"\w* \w wicked|strong="G3588"\w*, \w you|strong="G5210"\w* \w fall|strong="G1601"\w* \w from|strong="G3588"\w* \w your|strong="G3588"\w* \w own|strong="G2398"\w* \w steadfastness|strong="G4740"\w*. +\v 18 \w But|strong="G1161"\w* grow \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w grace|strong="G5485"\w* \w and|strong="G2532"\w* \w knowledge|strong="G1108"\w* \w of|strong="G2250"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w and|strong="G2532"\w* \w Savior|strong="G4990"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. \w To|strong="G1519"\w* \w him|strong="G3588"\w* \w be|strong="G2532"\w* \w the|strong="G1722"\w* \w glory|strong="G1391"\w* \w both|strong="G2532"\w* \w now|strong="G1161"\w* \w and|strong="G2532"\w* \w forever|strong="G1519"\w*. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/92-1JNeng-web.usfm b/bibles/eng-web_usfm/92-1JNeng-web.usfm new file mode 100644 index 0000000..561e171 --- /dev/null +++ b/bibles/eng-web_usfm/92-1JNeng-web.usfm @@ -0,0 +1,148 @@ +\id 1JN 62-1JN-web.sfm World English Bible (WEB) +\ide UTF-8 +\h 1 John +\toc1 John’s First Letter +\toc2 1 John +\toc3 1Jn +\mt1 John’s First Letter +\c 1 +\p +\v 1 \w That|strong="G3739"\w* \w which|strong="G3739"\w* \w was|strong="G1510"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* beginning, \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w we|strong="G2249"\w* \w have|strong="G2532"\w* heard, \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w we|strong="G2249"\w* \w have|strong="G2532"\w* \w seen|strong="G3708"\w* \w with|strong="G2532"\w* \w our|strong="G2532"\w* \w eyes|strong="G3788"\w*, \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w we|strong="G2249"\w* \w saw|strong="G3708"\w*, \w and|strong="G2532"\w* \w our|strong="G2532"\w* \w hands|strong="G5495"\w* \w touched|strong="G5584"\w*, \w concerning|strong="G4012"\w* \w the|strong="G2532"\w* \w Word|strong="G3056"\w* \w of|strong="G4012"\w* \w life|strong="G2222"\w* +\v 2 (\w and|strong="G2532"\w* \w the|strong="G2532"\w* \w life|strong="G2222"\w* \w was|strong="G1510"\w* \w revealed|strong="G5319"\w*, \w and|strong="G2532"\w* \w we|strong="G2249"\w* \w have|strong="G2532"\w* \w seen|strong="G3708"\w*, \w and|strong="G2532"\w* \w testify|strong="G3140"\w*, \w and|strong="G2532"\w* declare \w to|strong="G4314"\w* \w you|strong="G5210"\w* \w the|strong="G2532"\w* \w life|strong="G2222"\w*, \w the|strong="G2532"\w* eternal \w life|strong="G2222"\w*, \w which|strong="G3588"\w* \w was|strong="G1510"\w* \w with|strong="G4314"\w* \w the|strong="G2532"\w* \w Father|strong="G3962"\w*, \w and|strong="G2532"\w* \w was|strong="G1510"\w* \w revealed|strong="G5319"\w* \w to|strong="G4314"\w* \w us|strong="G2249"\w*); +\v 3 \w that|strong="G2443"\w* \w which|strong="G3739"\w* \w we|strong="G2249"\w* \w have|strong="G2192"\w* \w seen|strong="G3708"\w* \w and|strong="G2532"\w* heard \w we|strong="G2249"\w* declare \w to|strong="G2443"\w* \w you|strong="G5210"\w*, \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w also|strong="G2532"\w* \w may|strong="G2532"\w* \w have|strong="G2192"\w* \w fellowship|strong="G2842"\w* \w with|strong="G3326"\w* \w us|strong="G2249"\w*. \w Yes|strong="G1161"\w*, \w and|strong="G2532"\w* \w our|strong="G2424"\w* \w fellowship|strong="G2842"\w* \w is|strong="G3588"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w Father|strong="G3962"\w* \w and|strong="G2532"\w* \w with|strong="G3326"\w* \w his|strong="G3708"\w* \w Son|strong="G5207"\w*, \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*.\f + \fr 1:3 \ft “Christ” means “Anointed One”.\f* +\v 4 \w And|strong="G2532"\w* \w we|strong="G2249"\w* \w write|strong="G1125"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w to|strong="G2443"\w* \w you|strong="G1510"\w*, \w that|strong="G2443"\w* \w our|strong="G2532"\w* \w joy|strong="G5479"\w* \w may|strong="G2532"\w* \w be|strong="G1510"\w* \w fulfilled|strong="G4137"\w*. +\p +\v 5 \w This|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* message \w which|strong="G3739"\w* \w we|strong="G3739"\w* \w have|strong="G2532"\w* heard \w from|strong="G2532"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* announce \w to|strong="G2532"\w* \w you|strong="G5210"\w*, \w that|strong="G3754"\w* \w God|strong="G2316"\w* \w is|strong="G1510"\w* \w light|strong="G5457"\w*, \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* \w darkness|strong="G4653"\w* \w at|strong="G1722"\w* \w all|strong="G2532"\w*. +\v 6 \w If|strong="G1437"\w* \w we|strong="G1437"\w* \w say|strong="G3004"\w* \w that|strong="G3754"\w* \w we|strong="G1437"\w* \w have|strong="G2192"\w* \w fellowship|strong="G2842"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w walk|strong="G4043"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w darkness|strong="G4655"\w*, \w we|strong="G1437"\w* \w lie|strong="G5574"\w* \w and|strong="G2532"\w* don’\w t|strong="G3588"\w* \w tell|strong="G3004"\w* \w the|strong="G1722"\w* truth. +\v 7 \w But|strong="G1161"\w* \w if|strong="G1437"\w* \w we|strong="G2249"\w* \w walk|strong="G4043"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w light|strong="G5457"\w* \w as|strong="G5613"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w light|strong="G5457"\w*, \w we|strong="G2249"\w* \w have|strong="G2192"\w* \w fellowship|strong="G2842"\w* \w with|strong="G3326"\w* \w one|strong="G3956"\w* \w another|strong="G3588"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* blood \w of|strong="G5207"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5613"\w* \w his|strong="G3956"\w* \w Son|strong="G5207"\w*, \w cleanses|strong="G2511"\w* \w us|strong="G2249"\w* \w from|strong="G2532"\w* \w all|strong="G3956"\w* sin. +\v 8 \w If|strong="G1437"\w* \w we|strong="G2249"\w* \w say|strong="G3004"\w* \w that|strong="G3754"\w* \w we|strong="G2249"\w* \w have|strong="G2192"\w* \w no|strong="G3756"\w* sin, \w we|strong="G2249"\w* \w deceive|strong="G4105"\w* \w ourselves|strong="G1438"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* truth \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w in|strong="G1722"\w* \w us|strong="G3004"\w*. +\v 9 \w If|strong="G1437"\w* \w we|strong="G2249"\w* \w confess|strong="G3670"\w* \w our|strong="G2532"\w* sins, \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w faithful|strong="G4103"\w* \w and|strong="G2532"\w* \w righteous|strong="G1342"\w* \w to|strong="G2443"\w* forgive \w us|strong="G2249"\w* \w the|strong="G2532"\w* sins \w and|strong="G2532"\w* \w to|strong="G2443"\w* \w cleanse|strong="G2511"\w* \w us|strong="G2249"\w* \w from|strong="G2532"\w* \w all|strong="G3956"\w* unrighteousness. +\v 10 \w If|strong="G1437"\w* \w we|strong="G2249"\w* \w say|strong="G3004"\w* \w that|strong="G3754"\w* \w we|strong="G2249"\w* haven’\w t|strong="G3588"\w* sinned, \w we|strong="G2249"\w* \w make|strong="G4160"\w* \w him|strong="G3588"\w* \w a|strong="G2532"\w* \w liar|strong="G5583"\w*, \w and|strong="G2532"\w* \w his|strong="G1722"\w* \w word|strong="G3056"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w in|strong="G1722"\w* \w us|strong="G3004"\w*. +\c 2 +\p +\v 1 \w My|strong="G1473"\w* \w little|strong="G5040"\w* \w children|strong="G5040"\w*, \w I|strong="G1473"\w* \w write|strong="G1125"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w* \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w you|strong="G5210"\w* \w may|strong="G2532"\w* \w not|strong="G3361"\w* sin. \w If|strong="G1437"\w* \w anyone|strong="G5100"\w* sins, \w we|strong="G1437"\w* \w have|strong="G2192"\w* \w a|strong="G2192"\w* Counselor\f + \fr 2:1 \ft Greek παρακλητον: Counselor, Helper, Intercessor, Advocate, and Comforter.\f* \w with|strong="G4314"\w* \w the|strong="G2532"\w* \w Father|strong="G3962"\w*, \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w the|strong="G2532"\w* \w righteous|strong="G1342"\w*. +\v 2 \w And|strong="G2532"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* atoning sacrifice\f + \fr 2:2 \ft “atoning sacrifice” is from the Greek “ιλασμος”, an appeasing, propitiating, or the means of appeasement or propitiation—the sacrifice that turns away God’s wrath because of our sin. \f* \w for|strong="G4012"\w* \w our|strong="G2251"\w* sins, \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w for|strong="G4012"\w* \w ours|strong="G1473"\w* \w only|strong="G3440"\w*, \w but|strong="G1161"\w* \w also|strong="G2532"\w* \w for|strong="G4012"\w* \w the|strong="G2532"\w* \w whole|strong="G3650"\w* \w world|strong="G2889"\w*. +\v 3 \w This|strong="G3778"\w* \w is|strong="G3588"\w* \w how|strong="G3754"\w* \w we|strong="G1437"\w* \w know|strong="G1097"\w* \w that|strong="G3754"\w* \w we|strong="G1437"\w* \w know|strong="G1097"\w* \w him|strong="G3588"\w*: \w if|strong="G1437"\w* \w we|strong="G1437"\w* \w keep|strong="G5083"\w* \w his|strong="G1722"\w* \w commandments|strong="G1785"\w*. +\v 4 \w One|strong="G3588"\w* \w who|strong="G3588"\w* \w says|strong="G3004"\w*, “\w I|strong="G2532"\w* \w know|strong="G1097"\w* \w him|strong="G3588"\w*,” \w and|strong="G2532"\w* doesn’\w t|strong="G3588"\w* \w keep|strong="G5083"\w* \w his|strong="G1722"\w* \w commandments|strong="G1785"\w*, \w is|strong="G1510"\w* \w a|strong="G2532"\w* \w liar|strong="G5583"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* truth isn’\w t|strong="G3588"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*. +\v 5 \w But|strong="G1161"\w* \w God|strong="G2316"\w*’s love \w has|strong="G2316"\w* \w most|strong="G2316"\w* certainly \w been|strong="G1510"\w* \w perfected|strong="G5048"\w* \w in|strong="G1722"\w* \w whoever|strong="G3739"\w* \w keeps|strong="G5083"\w* \w his|strong="G1722"\w* \w word|strong="G3056"\w*. \w This|strong="G3778"\w* \w is|strong="G1510"\w* \w how|strong="G3754"\w* \w we|strong="G3739"\w* \w know|strong="G1097"\w* \w that|strong="G3754"\w* \w we|strong="G3739"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*: +\v 6 \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w says|strong="G3004"\w* \w he|strong="G2532"\w* \w remains|strong="G3306"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w* \w ought|strong="G3784"\w* \w himself|strong="G1565"\w* \w also|strong="G2532"\w* \w to|strong="G2532"\w* \w walk|strong="G4043"\w* \w just|strong="G2531"\w* \w like|strong="G3779"\w* \w he|strong="G2532"\w* \w walked|strong="G4043"\w*. +\p +\v 7 Brothers, \w I|strong="G3739"\w* \w write|strong="G1125"\w* \w no|strong="G3756"\w* \w new|strong="G2537"\w* \w commandment|strong="G1785"\w* \w to|strong="G3756"\w* \w you|strong="G5210"\w*, \w but|strong="G3588"\w* \w an|strong="G2192"\w* \w old|strong="G3820"\w* \w commandment|strong="G1785"\w* \w which|strong="G3739"\w* \w you|strong="G5210"\w* \w had|strong="G2192"\w* \w from|strong="G3756"\w* \w the|strong="G3588"\w* beginning. \w The|strong="G3588"\w* \w old|strong="G3820"\w* \w commandment|strong="G1785"\w* \w is|strong="G1510"\w* \w the|strong="G3588"\w* \w word|strong="G3056"\w* \w which|strong="G3739"\w* \w you|strong="G5210"\w* heard \w from|strong="G3756"\w* \w the|strong="G3588"\w* beginning. +\v 8 \w Again|strong="G3825"\w*, \w I|strong="G3739"\w* \w write|strong="G1125"\w* \w a|strong="G2532"\w* \w new|strong="G2537"\w* \w commandment|strong="G1785"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*, \w which|strong="G3739"\w* \w is|strong="G1510"\w* \w true|strong="G3588"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w*, \w because|strong="G3754"\w* \w the|strong="G1722"\w* \w darkness|strong="G4653"\w* \w is|strong="G1510"\w* \w passing|strong="G3855"\w* \w away|strong="G3855"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w true|strong="G3588"\w* \w light|strong="G5457"\w* \w already|strong="G2235"\w* \w shines|strong="G5316"\w*. +\v 9 \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w says|strong="G3004"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w light|strong="G5457"\w* \w and|strong="G2532"\w* \w hates|strong="G3404"\w* \w his|strong="G1722"\w* brother \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w darkness|strong="G4653"\w* \w even|strong="G2532"\w* \w until|strong="G2193"\w* \w now|strong="G2532"\w*. +\v 10 \w He|strong="G2532"\w* \w who|strong="G3588"\w* loves \w his|strong="G1722"\w* brother \w remains|strong="G3306"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w light|strong="G5457"\w*, \w and|strong="G2532"\w* \w there|strong="G2532"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* occasion \w for|strong="G1722"\w* \w stumbling|strong="G4625"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*. +\v 11 \w But|strong="G1161"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w hates|strong="G3404"\w* \w his|strong="G1722"\w* brother \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w darkness|strong="G4653"\w*, \w and|strong="G2532"\w* \w walks|strong="G4043"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w darkness|strong="G4653"\w*, \w and|strong="G2532"\w* doesn’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w where|strong="G4226"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w going|strong="G5217"\w*, \w because|strong="G3754"\w* \w the|strong="G1722"\w* \w darkness|strong="G4653"\w* \w has|strong="G3748"\w* \w blinded|strong="G5186"\w* \w his|strong="G1722"\w* \w eyes|strong="G3788"\w*. +\p +\v 12 \w I|strong="G3754"\w* \w write|strong="G1125"\w* \w to|strong="G3588"\w* \w you|strong="G5210"\w*, \w little|strong="G5040"\w* \w children|strong="G5040"\w*, \w because|strong="G3754"\w* \w your|strong="G1223"\w* sins \w are|strong="G3588"\w* forgiven \w you|strong="G5210"\w* \w for|strong="G3754"\w* \w his|strong="G1223"\w* \w name|strong="G3686"\w*’s \w sake|strong="G1223"\w*. +\p +\v 13 \w I|strong="G3754"\w* \w write|strong="G1125"\w* \w to|strong="G3962"\w* \w you|strong="G5210"\w*, \w fathers|strong="G3962"\w*, \w because|strong="G3754"\w* \w you|strong="G5210"\w* \w know|strong="G1097"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w from|strong="G3588"\w* \w the|strong="G3588"\w* beginning. +\p \w I|strong="G3754"\w* \w write|strong="G1125"\w* \w to|strong="G3962"\w* \w you|strong="G5210"\w*, \w young|strong="G3495"\w* \w men|strong="G3495"\w*, \w because|strong="G3754"\w* \w you|strong="G5210"\w* \w have|strong="G3748"\w* \w overcome|strong="G3528"\w* \w the|strong="G3588"\w* \w evil|strong="G4190"\w* \w one|strong="G3588"\w*. +\p \w I|strong="G3754"\w* \w write|strong="G1125"\w* \w to|strong="G3962"\w* \w you|strong="G5210"\w*, little \w children|strong="G3813"\w*, \w because|strong="G3754"\w* \w you|strong="G5210"\w* \w know|strong="G1097"\w* \w the|strong="G3588"\w* \w Father|strong="G3962"\w*. +\p +\v 14 \w I|strong="G2532"\w* \w have|strong="G2532"\w* \w written|strong="G1125"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*, \w fathers|strong="G3962"\w*, \w because|strong="G3754"\w* \w you|strong="G5210"\w* \w know|strong="G1097"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w from|strong="G2532"\w* \w the|strong="G1722"\w* beginning. +\p \w I|strong="G2532"\w* \w have|strong="G2532"\w* \w written|strong="G1125"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*, \w young|strong="G3495"\w* \w men|strong="G3495"\w*, \w because|strong="G3754"\w* \w you|strong="G5210"\w* \w are|strong="G1510"\w* \w strong|strong="G2478"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w* \w remains|strong="G3306"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w*, \w and|strong="G2532"\w* \w you|strong="G5210"\w* \w have|strong="G2532"\w* \w overcome|strong="G3528"\w* \w the|strong="G1722"\w* \w evil|strong="G4190"\w* \w one|strong="G3588"\w*. +\p +\v 15 Don’\w t|strong="G3588"\w* love \w the|strong="G1722"\w* \w world|strong="G2889"\w* \w or|strong="G3366"\w* \w the|strong="G1722"\w* \w things|strong="G3588"\w* \w that|strong="G3588"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*. \w If|strong="G1437"\w* \w anyone|strong="G5100"\w* loves \w the|strong="G1722"\w* \w world|strong="G2889"\w*, \w the|strong="G1722"\w* \w Father|strong="G3962"\w*’s love isn’\w t|strong="G3588"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*. +\v 16 \w For|strong="G3754"\w* \w all|strong="G3956"\w* \w that|strong="G3754"\w* \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*—\w the|strong="G1722"\w* \w lust|strong="G1939"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*, \w the|strong="G1722"\w* \w lust|strong="G1939"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w eyes|strong="G3788"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* pride \w of|strong="G1537"\w* \w life|strong="G4561"\w*—isn’\w t|strong="G3588"\w* \w the|strong="G1722"\w* \w Father|strong="G3962"\w*’s, \w but|strong="G2532"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*’s. +\v 17 \w The|strong="G2532"\w* \w world|strong="G2889"\w* \w is|strong="G3588"\w* \w passing|strong="G3855"\w* \w away|strong="G3855"\w* \w with|strong="G2532"\w* its \w lusts|strong="G1939"\w*, \w but|strong="G1161"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w does|strong="G4160"\w* \w God|strong="G2316"\w*’s \w will|strong="G2307"\w* \w remains|strong="G3306"\w* \w forever|strong="G1519"\w*. +\p +\v 18 Little \w children|strong="G3813"\w*, \w these|strong="G3748"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* \w end|strong="G2078"\w* times, \w and|strong="G2532"\w* \w as|strong="G2531"\w* \w you|strong="G3754"\w* \w heard|strong="G1097"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* Antichrist \w is|strong="G1510"\w* \w coming|strong="G2064"\w*, \w even|strong="G2532"\w* \w now|strong="G3568"\w* \w many|strong="G4183"\w* antichrists \w have|strong="G2532"\w* arisen. \w By|strong="G2532"\w* \w this|strong="G3748"\w* \w we|strong="G3754"\w* \w know|strong="G1097"\w* \w that|strong="G3754"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w final|strong="G2078"\w* \w hour|strong="G5610"\w*. +\v 19 \w They|strong="G3754"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w* \w from|strong="G1537"\w* \w us|strong="G2249"\w*, \w but|strong="G1487"\w* \w they|strong="G3754"\w* didn’t \w belong|strong="G1510"\w* \w to|strong="G2443"\w* \w us|strong="G2249"\w*; \w for|strong="G1063"\w* \w if|strong="G1487"\w* \w they|strong="G3754"\w* \w had|strong="G1510"\w* \w belonged|strong="G1510"\w* \w to|strong="G2443"\w* \w us|strong="G2249"\w*, \w they|strong="G3754"\w* \w would|strong="G1510"\w* \w have|strong="G1473"\w* \w continued|strong="G3306"\w* \w with|strong="G3326"\w* \w us|strong="G2249"\w*. \w But|strong="G1487"\w* \w they|strong="G3754"\w* \w left|strong="G1831"\w*, \w that|strong="G3754"\w* \w they|strong="G3754"\w* \w might|strong="G3956"\w* \w be|strong="G1510"\w* \w revealed|strong="G5319"\w* \w that|strong="G3754"\w* \w none|strong="G3756"\w* \w of|strong="G1537"\w* \w them|strong="G3956"\w* \w belong|strong="G1510"\w* \w to|strong="G2443"\w* \w us|strong="G2249"\w*. +\v 20 \w You|strong="G5210"\w* \w have|strong="G2192"\w* \w an|strong="G2192"\w* \w anointing|strong="G5545"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* Holy \w One|strong="G3956"\w*, \w and|strong="G2532"\w* \w you|strong="G5210"\w* \w all|strong="G3956"\w* \w have|strong="G2192"\w* \w knowledge|strong="G1492"\w*.\f + \fr 2:20 \ft Or, “know what is true”, or, “know all things”\f* +\v 21 \w I|strong="G2532"\w* \w have|strong="G2532"\w* \w not|strong="G3756"\w* \w written|strong="G1125"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w because|strong="G3754"\w* \w you|strong="G5210"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w* \w the|strong="G2532"\w* truth, \w but|strong="G2532"\w* \w because|strong="G3754"\w* \w you|strong="G5210"\w* \w know|strong="G1492"\w* \w it|strong="G2532"\w*, \w and|strong="G2532"\w* \w because|strong="G3754"\w* \w no|strong="G3756"\w* \w lie|strong="G5579"\w* \w is|strong="G1510"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* truth. +\v 22 \w Who|strong="G5101"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w liar|strong="G5583"\w* \w but|strong="G2532"\w* \w he|strong="G2532"\w* \w who|strong="G5101"\w* denies \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w Christ|strong="G5547"\w*? \w This|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* Antichrist, \w he|strong="G2532"\w* \w who|strong="G5101"\w* denies \w the|strong="G2532"\w* \w Father|strong="G3962"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w Son|strong="G5207"\w*. +\v 23 \w Whoever|strong="G3956"\w* denies \w the|strong="G2532"\w* \w Son|strong="G5207"\w* doesn’\w t|strong="G3588"\w* \w have|strong="G2192"\w* \w the|strong="G2532"\w* \w Father|strong="G3962"\w*. \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w confesses|strong="G3670"\w* \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w has|strong="G2192"\w* \w the|strong="G2532"\w* \w Father|strong="G3962"\w* \w also|strong="G2532"\w*.\f + \fr 2:23 \ft MT omits: He who confesses the Son has the Father also.\f* +\p +\v 24 \w Therefore|strong="G2532"\w*, \w as|strong="G1722"\w* \w for|strong="G1722"\w* \w you|strong="G5210"\w*, \w let|strong="G3306"\w* \w that|strong="G3739"\w* \w remain|strong="G3306"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w* \w which|strong="G3739"\w* \w you|strong="G5210"\w* heard \w from|strong="G2532"\w* \w the|strong="G1722"\w* beginning. \w If|strong="G1437"\w* \w that|strong="G3739"\w* \w which|strong="G3739"\w* \w you|strong="G5210"\w* heard \w from|strong="G2532"\w* \w the|strong="G1722"\w* beginning \w remains|strong="G3306"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w*, \w you|strong="G5210"\w* \w also|strong="G2532"\w* \w will|strong="G2532"\w* \w remain|strong="G3306"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Son|strong="G5207"\w*, \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Father|strong="G3962"\w*. +\v 25 \w This|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w promise|strong="G1860"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w promised|strong="G1861"\w* \w us|strong="G2249"\w*, \w the|strong="G2532"\w* eternal \w life|strong="G2222"\w*. +\p +\v 26 \w These|strong="G3778"\w* \w things|strong="G3778"\w* \w I|strong="G3778"\w* \w have|strong="G5210"\w* \w written|strong="G1125"\w* \w to|strong="G3778"\w* \w you|strong="G5210"\w* \w concerning|strong="G4012"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* would lead \w you|strong="G5210"\w* \w astray|strong="G4105"\w*. +\v 27 \w As|strong="G5613"\w* \w for|strong="G4012"\w* \w you|strong="G5210"\w*, \w the|strong="G1722"\w* \w anointing|strong="G5545"\w* \w which|strong="G3739"\w* \w you|strong="G5210"\w* \w received|strong="G2983"\w* \w from|strong="G2532"\w* \w him|strong="G3588"\w* \w remains|strong="G3306"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w*, \w and|strong="G2532"\w* \w you|strong="G5210"\w* don’\w t|strong="G3588"\w* \w need|strong="G5532"\w* \w for|strong="G4012"\w* \w anyone|strong="G5100"\w* \w to|strong="G2443"\w* \w teach|strong="G1321"\w* \w you|strong="G5210"\w*. \w But|strong="G2532"\w* \w as|strong="G5613"\w* \w his|strong="G3956"\w* \w anointing|strong="G5545"\w* \w teaches|strong="G1321"\w* \w you|strong="G5210"\w* \w concerning|strong="G4012"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w and|strong="G2532"\w* \w is|strong="G1510"\w* \w true|strong="G3588"\w*, \w and|strong="G2532"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* \w lie|strong="G5579"\w*, \w and|strong="G2532"\w* \w even|strong="G2532"\w* \w as|strong="G5613"\w* \w it|strong="G2532"\w* \w taught|strong="G1321"\w* \w you|strong="G5210"\w*, \w you|strong="G5210"\w* \w will|strong="G1510"\w* \w remain|strong="G3306"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*. +\p +\v 28 \w Now|strong="G3568"\w*, \w little|strong="G5040"\w* \w children|strong="G5040"\w*, \w remain|strong="G3306"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*, \w that|strong="G2443"\w* \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w appears|strong="G5319"\w*, \w we|strong="G1437"\w* \w may|strong="G2532"\w* \w have|strong="G2192"\w* \w boldness|strong="G3954"\w* \w and|strong="G2532"\w* \w not|strong="G3361"\w* \w be|strong="G2532"\w* ashamed \w before|strong="G1722"\w* \w him|strong="G3588"\w* \w at|strong="G1722"\w* \w his|strong="G1722"\w* \w coming|strong="G3952"\w*. +\v 29 \w If|strong="G1437"\w* \w you|strong="G1437"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w righteous|strong="G1342"\w*, \w you|strong="G1437"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w everyone|strong="G3956"\w* \w who|strong="G3588"\w* \w practices|strong="G4160"\w* \w righteousness|strong="G1343"\w* \w has|strong="G3748"\w* \w been|strong="G1510"\w* \w born|strong="G1080"\w* \w of|strong="G1537"\w* \w him|strong="G3588"\w*. +\c 3 +\p +\v 1 \w See|strong="G3708"\w* \w how|strong="G3754"\w* \w great|strong="G2532"\w* \w a|strong="G2532"\w* love \w the|strong="G2532"\w* \w Father|strong="G3962"\w* \w has|strong="G2316"\w* \w given|strong="G1325"\w* \w to|strong="G2443"\w* \w us|strong="G1325"\w*, \w that|strong="G3754"\w* \w we|strong="G2249"\w* \w should|strong="G2316"\w* \w be|strong="G1510"\w* \w called|strong="G2564"\w* \w children|strong="G5043"\w* \w of|strong="G1223"\w* \w God|strong="G2316"\w*! \w For|strong="G3754"\w* \w this|strong="G3778"\w* \w cause|strong="G1223"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w* doesn’\w t|strong="G3588"\w* \w know|strong="G1097"\w* \w us|strong="G1325"\w*, \w because|strong="G3754"\w* \w it|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w know|strong="G1097"\w* \w him|strong="G3588"\w*. +\v 2 Beloved, \w now|strong="G3568"\w* \w we|strong="G1437"\w* \w are|strong="G1510"\w* \w children|strong="G5043"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. \w It|strong="G2532"\w* \w is|strong="G1510"\w* \w not|strong="G1510"\w* \w yet|strong="G2532"\w* \w revealed|strong="G5319"\w* \w what|strong="G5101"\w* \w we|strong="G1437"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w*; \w but|strong="G2532"\w* \w we|strong="G1437"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w when|strong="G2532"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w revealed|strong="G5319"\w*, \w we|strong="G1437"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w like|strong="G3664"\w* \w him|strong="G3708"\w*, \w for|strong="G3754"\w* \w we|strong="G1437"\w* \w will|strong="G2316"\w* \w see|strong="G3708"\w* \w him|strong="G3708"\w* \w just|strong="G2531"\w* \w as|strong="G2531"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w*. +\v 3 \w Everyone|strong="G3956"\w* \w who|strong="G3588"\w* \w has|strong="G2192"\w* \w this|strong="G3778"\w* \w hope|strong="G1680"\w* \w set|strong="G2532"\w* \w on|strong="G1909"\w* \w him|strong="G3588"\w* purifies \w himself|strong="G1438"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* pure. +\p +\v 4 \w Everyone|strong="G3956"\w* \w who|strong="G3588"\w* sins \w also|strong="G2532"\w* \w commits|strong="G4160"\w* lawlessness. Sin \w is|strong="G1510"\w* lawlessness. +\v 5 \w You|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G1510"\w* \w revealed|strong="G5319"\w* \w to|strong="G2443"\w* \w take|strong="G2532"\w* away \w our|strong="G2532"\w* sins, \w and|strong="G2532"\w* \w no|strong="G3756"\w* sin \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*. +\v 6 \w Whoever|strong="G3956"\w* \w remains|strong="G3306"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w* doesn’\w t|strong="G3588"\w* sin. \w Whoever|strong="G3956"\w* sins hasn’\w t|strong="G3588"\w* \w seen|strong="G3708"\w* \w him|strong="G3588"\w* \w and|strong="G3708"\w* doesn’\w t|strong="G3588"\w* \w know|strong="G1097"\w* \w him|strong="G3588"\w*. +\p +\v 7 \w Little|strong="G5040"\w* \w children|strong="G5040"\w*, \w let|strong="G1510"\w* \w no|strong="G3367"\w* \w one|strong="G3367"\w* \w lead|strong="G1510"\w* \w you|strong="G5210"\w* \w astray|strong="G4105"\w*. \w He|strong="G3588"\w* \w who|strong="G3588"\w* \w does|strong="G4160"\w* \w righteousness|strong="G1343"\w* \w is|strong="G1510"\w* \w righteous|strong="G1342"\w*, \w even|strong="G2531"\w* \w as|strong="G2531"\w* \w he|strong="G3588"\w* \w is|strong="G1510"\w* \w righteous|strong="G1342"\w*. +\v 8 \w He|strong="G3754"\w* \w who|strong="G3588"\w* sins \w is|strong="G1510"\w* \w of|strong="G1537"\w* \w the|strong="G1519"\w* \w devil|strong="G1228"\w*, \w for|strong="G3754"\w* \w the|strong="G1519"\w* \w devil|strong="G1228"\w* \w has|strong="G2316"\w* \w been|strong="G1510"\w* sinning \w from|strong="G1537"\w* \w the|strong="G1519"\w* beginning. \w To|strong="G1519"\w* \w this|strong="G3778"\w* \w end|strong="G1519"\w* \w the|strong="G1519"\w* \w Son|strong="G5207"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w* \w was|strong="G1510"\w* \w revealed|strong="G5319"\w*: \w that|strong="G3754"\w* \w he|strong="G3754"\w* \w might|strong="G2316"\w* \w destroy|strong="G3089"\w* \w the|strong="G1519"\w* \w works|strong="G2041"\w* \w of|strong="G1537"\w* \w the|strong="G1519"\w* \w devil|strong="G1228"\w*. +\v 9 \w Whoever|strong="G3748"\w* \w is|strong="G3588"\w* \w born|strong="G1080"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w* doesn’\w t|strong="G3588"\w* \w commit|strong="G4160"\w* sin, \w because|strong="G3754"\w* \w his|strong="G3956"\w* \w seed|strong="G4690"\w* \w remains|strong="G3306"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w can|strong="G1410"\w*’\w t|strong="G3588"\w* sin, \w because|strong="G3754"\w* \w he|strong="G2532"\w* \w is|strong="G3588"\w* \w born|strong="G1080"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*. +\v 10 \w In|strong="G1722"\w* \w this|strong="G3778"\w* \w the|strong="G1722"\w* \w children|strong="G5043"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w* \w are|strong="G1510"\w* \w revealed|strong="G5318"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w children|strong="G5043"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w devil|strong="G1228"\w*. \w Whoever|strong="G3956"\w* doesn’\w t|strong="G3588"\w* \w do|strong="G4160"\w* \w righteousness|strong="G1343"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*, \w neither|strong="G3756"\w* \w is|strong="G1510"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* doesn’\w t|strong="G3588"\w* love \w his|strong="G3956"\w* brother. +\v 11 \w For|strong="G3754"\w* \w this|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G3588"\w* message \w which|strong="G3739"\w* \w you|strong="G3739"\w* heard \w from|strong="G3588"\w* \w the|strong="G3588"\w* beginning, \w that|strong="G3754"\w* \w we|strong="G3739"\w* \w should|strong="G3588"\w* love \w one|strong="G3739"\w* \w another|strong="G3739"\w*— +\v 12 unlike \w Cain|strong="G2535"\w*, \w who|strong="G5101"\w* \w was|strong="G1510"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w evil|strong="G4190"\w* \w one|strong="G3588"\w* \w and|strong="G2532"\w* killed \w his|strong="G2532"\w* brother. \w Why|strong="G5101"\w* \w did|strong="G2532"\w* \w he|strong="G2532"\w* \w kill|strong="G4969"\w* \w him|strong="G3588"\w*? \w Because|strong="G3754"\w* \w his|strong="G2532"\w* \w deeds|strong="G2041"\w* \w were|strong="G1510"\w* \w evil|strong="G4190"\w*, \w and|strong="G2532"\w* \w his|strong="G2532"\w* brother’s \w righteous|strong="G1342"\w*. +\p +\v 13 Don’\w t|strong="G3588"\w* \w be|strong="G2532"\w* \w surprised|strong="G2296"\w*, \w my|strong="G3588"\w* brothers, \w if|strong="G1487"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w* \w hates|strong="G3404"\w* \w you|strong="G5210"\w*. +\v 14 \w We|strong="G2249"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w we|strong="G2249"\w* \w have|strong="G1473"\w* \w passed|strong="G3327"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w death|strong="G2288"\w* \w into|strong="G1519"\w* \w life|strong="G2222"\w*, \w because|strong="G3754"\w* \w we|strong="G2249"\w* love \w the|strong="G1722"\w* brothers. \w He|strong="G3754"\w* \w who|strong="G3588"\w* doesn’\w t|strong="G3588"\w* love \w his|strong="G1519"\w* brother \w remains|strong="G3306"\w* \w in|strong="G1722"\w* \w death|strong="G2288"\w*. +\v 15 \w Whoever|strong="G3748"\w* \w hates|strong="G3404"\w* \w his|strong="G1438"\w* brother \w is|strong="G1510"\w* \w a|strong="G2192"\w* murderer, \w and|strong="G2532"\w* \w you|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w no|strong="G3756"\w* murderer \w has|strong="G2192"\w* eternal \w life|strong="G2222"\w* \w remaining|strong="G3306"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*. +\p +\v 16 \w By|strong="G1722"\w* \w this|strong="G3778"\w* \w we|strong="G2249"\w* \w know|strong="G1097"\w* love, \w because|strong="G3754"\w* \w he|strong="G2532"\w* \w laid|strong="G5087"\w* \w down|strong="G5087"\w* \w his|strong="G1722"\w* \w life|strong="G5590"\w* \w for|strong="G3754"\w* \w us|strong="G2249"\w*. \w And|strong="G2532"\w* \w we|strong="G2249"\w* \w ought|strong="G3784"\w* \w to|strong="G2532"\w* \w lay|strong="G5087"\w* \w down|strong="G5087"\w* \w our|strong="G2532"\w* \w lives|strong="G5590"\w* \w for|strong="G3754"\w* \w the|strong="G1722"\w* brothers. +\v 17 \w But|strong="G1161"\w* \w whoever|strong="G3739"\w* \w has|strong="G2192"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*’\w s|strong="G2192"\w* goods \w and|strong="G2532"\w* \w sees|strong="G2334"\w* \w his|strong="G1722"\w* brother \w in|strong="G1722"\w* \w need|strong="G5532"\w*, \w then|strong="G2532"\w* \w closes|strong="G2808"\w* \w his|strong="G1722"\w* \w heart|strong="G4698"\w* \w of|strong="G2316"\w* \w compassion|strong="G4698"\w* \w against|strong="G1722"\w* \w him|strong="G3588"\w*, \w how|strong="G4459"\w* \w does|strong="G2192"\w* \w God|strong="G2316"\w*’\w s|strong="G2192"\w* love \w remain|strong="G3306"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*? +\p +\v 18 \w My|strong="G1722"\w* \w little|strong="G5040"\w* \w children|strong="G5040"\w*, \w let|strong="G2532"\w*’s \w not|strong="G3361"\w* love \w in|strong="G1722"\w* \w word|strong="G3056"\w* \w only|strong="G2532"\w*, \w or|strong="G2532"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w tongue|strong="G1100"\w* \w only|strong="G2532"\w*, \w but|strong="G2532"\w* \w in|strong="G1722"\w* \w deed|strong="G2041"\w* \w and|strong="G2532"\w* truth. +\v 19 \w And|strong="G2532"\w* \w by|strong="G1722"\w* \w this|strong="G3778"\w* \w we|strong="G2249"\w* \w know|strong="G1097"\w* \w that|strong="G3754"\w* \w we|strong="G2249"\w* \w are|strong="G1510"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* truth \w and|strong="G2532"\w* \w persuade|strong="G3982"\w* \w our|strong="G2532"\w* \w hearts|strong="G2588"\w* \w before|strong="G1715"\w* \w him|strong="G3588"\w*, +\v 20 \w because|strong="G3754"\w* \w if|strong="G1437"\w* \w our|strong="G2316"\w* \w heart|strong="G2588"\w* \w condemns|strong="G2607"\w* \w us|strong="G2249"\w*, \w God|strong="G2316"\w* \w is|strong="G1510"\w* \w greater|strong="G3173"\w* \w than|strong="G3173"\w* \w our|strong="G2316"\w* \w heart|strong="G2588"\w*, \w and|strong="G2532"\w* \w knows|strong="G1097"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*. +\v 21 Beloved, \w if|strong="G1437"\w* \w our|strong="G2316"\w* \w hearts|strong="G2588"\w* don’\w t|strong="G3588"\w* \w condemn|strong="G2607"\w* \w us|strong="G2249"\w*, \w we|strong="G2249"\w* \w have|strong="G2192"\w* \w boldness|strong="G3954"\w* \w toward|strong="G4314"\w* \w God|strong="G2316"\w*; +\v 22 \w so|strong="G2532"\w* \w whatever|strong="G3739"\w* \w we|strong="G3739"\w* ask, \w we|strong="G3739"\w* \w receive|strong="G2983"\w* \w from|strong="G2532"\w* \w him|strong="G3588"\w*, \w because|strong="G3754"\w* \w we|strong="G3739"\w* \w keep|strong="G5083"\w* \w his|strong="G4160"\w* \w commandments|strong="G1785"\w* \w and|strong="G2532"\w* \w do|strong="G4160"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w that|strong="G3754"\w* \w are|strong="G3588"\w* pleasing \w in|strong="G2532"\w* \w his|strong="G4160"\w* \w sight|strong="G1799"\w*. +\v 23 \w This|strong="G3778"\w* \w is|strong="G1510"\w* \w his|strong="G2532"\w* \w commandment|strong="G1785"\w*, \w that|strong="G2443"\w* \w we|strong="G2249"\w* \w should|strong="G3588"\w* \w believe|strong="G4100"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w name|strong="G3686"\w* \w of|strong="G5207"\w* \w his|strong="G2532"\w* \w Son|strong="G5207"\w*, \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w and|strong="G2532"\w* love \w one|strong="G3588"\w* \w another|strong="G3588"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w he|strong="G2532"\w* \w commanded|strong="G1785"\w*. +\v 24 \w He|strong="G2532"\w* \w who|strong="G3739"\w* \w keeps|strong="G5083"\w* \w his|strong="G1722"\w* \w commandments|strong="G1785"\w* \w remains|strong="G3306"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*. \w By|strong="G1722"\w* \w this|strong="G3778"\w* \w we|strong="G2249"\w* \w know|strong="G1097"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w remains|strong="G3306"\w* \w in|strong="G1722"\w* \w us|strong="G1325"\w*, \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w gave|strong="G1325"\w* \w us|strong="G1325"\w*. +\c 4 +\p +\v 1 Beloved, don’\w t|strong="G3588"\w* \w believe|strong="G4100"\w* \w every|strong="G3956"\w* \w spirit|strong="G4151"\w*, \w but|strong="G1487"\w* \w test|strong="G1381"\w* \w the|strong="G1519"\w* \w spirits|strong="G4151"\w*, \w whether|strong="G1487"\w* \w they|strong="G3588"\w* \w are|strong="G1510"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*, \w because|strong="G3754"\w* \w many|strong="G4183"\w* \w false|strong="G5578"\w* \w prophets|strong="G5578"\w* \w have|strong="G3748"\w* \w gone|strong="G1831"\w* \w out|strong="G1831"\w* \w into|strong="G1519"\w* \w the|strong="G1519"\w* \w world|strong="G2889"\w*. +\v 2 \w By|strong="G1722"\w* \w this|strong="G3778"\w* \w you|strong="G3739"\w* \w know|strong="G1097"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*: \w every|strong="G3956"\w* \w spirit|strong="G4151"\w* \w who|strong="G3739"\w* \w confesses|strong="G3670"\w* \w that|strong="G3739"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w has|strong="G2316"\w* \w come|strong="G2064"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w* \w is|strong="G1510"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*, +\v 3 \w and|strong="G2532"\w* \w every|strong="G3956"\w* \w spirit|strong="G4151"\w* \w who|strong="G3739"\w* doesn’\w t|strong="G3588"\w* \w confess|strong="G3670"\w* \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* Christ \w has|strong="G2316"\w* \w come|strong="G2064"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* flesh \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*; \w and|strong="G2532"\w* \w this|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w spirit|strong="G4151"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* Antichrist, \w of|strong="G1537"\w* \w whom|strong="G3739"\w* \w you|strong="G3739"\w* \w have|strong="G2532"\w* heard \w that|strong="G3754"\w* \w it|strong="G2532"\w* \w comes|strong="G2064"\w*. \w Now|strong="G3568"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w* \w already|strong="G2235"\w*. +\v 4 \w You|strong="G5210"\w* \w are|strong="G1510"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*, \w little|strong="G5040"\w* \w children|strong="G5040"\w*, \w and|strong="G2532"\w* \w have|strong="G2532"\w* \w overcome|strong="G3528"\w* \w them|strong="G3588"\w*, \w because|strong="G3754"\w* \w greater|strong="G3173"\w* \w is|strong="G1510"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w you|strong="G5210"\w* \w than|strong="G2228"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*. +\v 5 \w They|strong="G2532"\w* \w are|strong="G1510"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w*. \w Therefore|strong="G1223"\w* \w they|strong="G2532"\w* \w speak|strong="G2980"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w* hears \w them|strong="G3588"\w*. +\v 6 \w We|strong="G2249"\w* \w are|strong="G1510"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*. \w He|strong="G2532"\w* \w who|strong="G3739"\w* \w knows|strong="G1097"\w* \w God|strong="G2316"\w* listens \w to|strong="G2532"\w* \w us|strong="G2249"\w*. \w He|strong="G2532"\w* \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w* doesn’\w t|strong="G3588"\w* listen \w to|strong="G2532"\w* \w us|strong="G2249"\w*. \w By|strong="G1537"\w* \w this|strong="G3778"\w* \w we|strong="G2249"\w* \w know|strong="G1097"\w* \w the|strong="G2532"\w* \w spirit|strong="G4151"\w* \w of|strong="G1537"\w* truth, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w spirit|strong="G4151"\w* \w of|strong="G1537"\w* \w error|strong="G4106"\w*. +\p +\v 7 Beloved, \w let|strong="G1097"\w*’s love \w one|strong="G3956"\w* \w another|strong="G3588"\w*, \w for|strong="G3754"\w* love \w is|strong="G1510"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*; \w and|strong="G2532"\w* \w everyone|strong="G3956"\w* \w who|strong="G3588"\w* loves \w has|strong="G2316"\w* \w been|strong="G1510"\w* \w born|strong="G1080"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w knows|strong="G1097"\w* \w God|strong="G2316"\w*. +\v 8 \w He|strong="G3754"\w* \w who|strong="G3588"\w* doesn’\w t|strong="G3588"\w* love doesn’\w t|strong="G3588"\w* \w know|strong="G1097"\w* \w God|strong="G2316"\w*, \w for|strong="G3754"\w* \w God|strong="G2316"\w* \w is|strong="G1510"\w* love. +\v 9 \w By|strong="G1223"\w* \w this|strong="G3778"\w* \w God|strong="G2316"\w*’s love \w was|strong="G3588"\w* \w revealed|strong="G5319"\w* \w in|strong="G1722"\w* \w us|strong="G1519"\w*, \w that|strong="G3754"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w sent|strong="G2316"\w* \w his|strong="G1223"\w* \w only|strong="G3439"\w* born\f + \fr 4:9 \ft The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”.\f* \w Son|strong="G5207"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w* \w that|strong="G3754"\w* \w we|strong="G2249"\w* \w might|strong="G2316"\w* \w live|strong="G2198"\w* \w through|strong="G1223"\w* \w him|strong="G3588"\w*. +\v 10 \w In|strong="G1722"\w* \w this|strong="G3778"\w* \w is|strong="G1510"\w* love, \w not|strong="G3756"\w* \w that|strong="G3754"\w* \w we|strong="G2249"\w* loved \w God|strong="G2316"\w*, \w but|strong="G2532"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* loved \w us|strong="G2249"\w*, \w and|strong="G2532"\w* \w sent|strong="G2316"\w* \w his|strong="G4012"\w* \w Son|strong="G5207"\w* \w as|strong="G1722"\w* \w the|strong="G1722"\w* atoning sacrifice\f + \fr 4:10 \ft “atoning sacrifice” is from the Greek “ιλασμος”, an appeasing, propitiating, or the means of appeasement or propitiation—the sacrifice that turns away God’s wrath because of our sin. \f* \w for|strong="G3754"\w* \w our|strong="G2316"\w* sins. +\v 11 Beloved, \w if|strong="G1487"\w* \w God|strong="G2316"\w* loved \w us|strong="G2249"\w* \w in|strong="G2532"\w* \w this|strong="G3588"\w* \w way|strong="G3779"\w*, \w we|strong="G2249"\w* \w also|strong="G2532"\w* \w ought|strong="G3784"\w* \w to|strong="G2532"\w* love \w one|strong="G3588"\w* \w another|strong="G3588"\w*. +\v 12 \w No|strong="G3762"\w* \w one|strong="G3762"\w* \w has|strong="G2316"\w* \w seen|strong="G2300"\w* \w God|strong="G2316"\w* \w at|strong="G1722"\w* \w any|strong="G3762"\w* \w time|strong="G4455"\w*. \w If|strong="G1437"\w* \w we|strong="G2249"\w* love \w one|strong="G3762"\w* \w another|strong="G3588"\w*, \w God|strong="G2316"\w* \w remains|strong="G3306"\w* \w in|strong="G1722"\w* \w us|strong="G2249"\w*, \w and|strong="G2532"\w* \w his|strong="G1722"\w* love \w has|strong="G2316"\w* \w been|strong="G1510"\w* \w perfected|strong="G5048"\w* \w in|strong="G1722"\w* \w us|strong="G2249"\w*. +\p +\v 13 \w By|strong="G1722"\w* \w this|strong="G3778"\w* \w we|strong="G2249"\w* \w know|strong="G1097"\w* \w that|strong="G3754"\w* \w we|strong="G2249"\w* \w remain|strong="G3306"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w* \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w in|strong="G1722"\w* \w us|strong="G1325"\w*, \w because|strong="G3754"\w* \w he|strong="G2532"\w* \w has|strong="G3778"\w* \w given|strong="G1325"\w* \w us|strong="G1325"\w* \w of|strong="G1537"\w* \w his|strong="G1722"\w* \w Spirit|strong="G4151"\w*. +\v 14 \w We|strong="G2249"\w* \w have|strong="G2532"\w* \w seen|strong="G2300"\w* \w and|strong="G2532"\w* \w testify|strong="G3140"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w Father|strong="G3962"\w* \w has|strong="G3962"\w* \w sent|strong="G2532"\w* \w the|strong="G2532"\w* \w Son|strong="G5207"\w* \w as|strong="G2532"\w* \w the|strong="G2532"\w* \w Savior|strong="G4990"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w*. +\v 15 \w Whoever|strong="G3739"\w* \w confesses|strong="G3670"\w* \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*, \w God|strong="G2316"\w* \w remains|strong="G3306"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w in|strong="G1722"\w* \w God|strong="G2316"\w*. +\v 16 \w We|strong="G2249"\w* \w know|strong="G1097"\w* \w and|strong="G2532"\w* \w have|strong="G2192"\w* \w believed|strong="G4100"\w* \w the|strong="G1722"\w* love \w which|strong="G3739"\w* \w God|strong="G2316"\w* \w has|strong="G2192"\w* \w for|strong="G1722"\w* \w us|strong="G2249"\w*. \w God|strong="G2316"\w* \w is|strong="G1510"\w* love, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w who|strong="G3739"\w* \w remains|strong="G3306"\w* \w in|strong="G1722"\w* love \w remains|strong="G3306"\w* \w in|strong="G1722"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w God|strong="G2316"\w* \w remains|strong="G3306"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w*. +\v 17 \w In|strong="G1722"\w* \w this|strong="G3778"\w*, love \w has|strong="G2192"\w* \w been|strong="G1510"\w* \w made|strong="G5048"\w* \w perfect|strong="G5048"\w* \w among|strong="G1722"\w* \w us|strong="G2249"\w*, \w that|strong="G3754"\w* \w we|strong="G2249"\w* \w may|strong="G2532"\w* \w have|strong="G2192"\w* \w boldness|strong="G3954"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* \w judgment|strong="G2920"\w*, \w because|strong="G3754"\w* \w as|strong="G2531"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w*, \w even|strong="G2532"\w* \w so|strong="G2443"\w* \w we|strong="G2249"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* \w world|strong="G2889"\w*. +\v 18 \w There|strong="G1161"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* \w fear|strong="G5401"\w* \w in|strong="G1722"\w* love; \w but|strong="G1161"\w* \w perfect|strong="G5046"\w* love casts \w out|strong="G1854"\w* \w fear|strong="G5401"\w*, \w because|strong="G3754"\w* \w fear|strong="G5401"\w* \w has|strong="G2192"\w* \w punishment|strong="G2851"\w*. \w He|strong="G1161"\w* \w who|strong="G3588"\w* \w fears|strong="G5401"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w* \w made|strong="G5048"\w* \w perfect|strong="G5046"\w* \w in|strong="G1722"\w* love. +\v 19 \w We|strong="G2249"\w* love him,\f + \fr 4:19 \ft NU omits “him”.\f* \w because|strong="G3754"\w* \w he|strong="G3754"\w* \w first|strong="G4413"\w* loved \w us|strong="G2249"\w*. +\v 20 \w If|strong="G1437"\w* \w a|strong="G2532"\w* \w man|strong="G5100"\w* \w says|strong="G3004"\w*, “\w I|strong="G3739"\w* love \w God|strong="G2316"\w*,” \w and|strong="G2532"\w* \w hates|strong="G3404"\w* \w his|strong="G3708"\w* brother, \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w a|strong="G2532"\w* \w liar|strong="G5583"\w*; \w for|strong="G1063"\w* \w he|strong="G2532"\w* \w who|strong="G3739"\w* doesn’\w t|strong="G3588"\w* love \w his|strong="G3708"\w* brother \w whom|strong="G3739"\w* \w he|strong="G2532"\w* \w has|strong="G2316"\w* \w seen|strong="G3708"\w*, \w how|strong="G3754"\w* \w can|strong="G1410"\w* \w he|strong="G2532"\w* love \w God|strong="G2316"\w* \w whom|strong="G3739"\w* \w he|strong="G2532"\w* \w has|strong="G2316"\w* \w not|strong="G3756"\w* \w seen|strong="G3708"\w*? +\v 21 \w This|strong="G3778"\w* \w commandment|strong="G1785"\w* \w we|strong="G2532"\w* \w have|strong="G2192"\w* \w from|strong="G2532"\w* \w him|strong="G3588"\w*, \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* loves \w God|strong="G2316"\w* \w should|strong="G2316"\w* \w also|strong="G2532"\w* love \w his|strong="G2192"\w* brother. +\c 5 +\p +\v 1 \w Whoever|strong="G3748"\w* \w believes|strong="G4100"\w* \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w Christ|strong="G5547"\w* \w has|strong="G2316"\w* \w been|strong="G1510"\w* \w born|strong="G1080"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*. \w Whoever|strong="G3748"\w* loves \w the|strong="G2532"\w* \w Father|strong="G1080"\w* \w also|strong="G2532"\w* loves \w the|strong="G2532"\w* \w child|strong="G1080"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w born|strong="G1080"\w* \w of|strong="G1537"\w* \w him|strong="G3588"\w*. +\v 2 \w By|strong="G1722"\w* \w this|strong="G3778"\w* \w we|strong="G3754"\w* \w know|strong="G1097"\w* \w that|strong="G3754"\w* \w we|strong="G3754"\w* love \w the|strong="G1722"\w* \w children|strong="G5043"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w when|strong="G3752"\w* \w we|strong="G3754"\w* love \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w keep|strong="G4160"\w* \w his|strong="G1722"\w* \w commandments|strong="G1785"\w*. +\v 3 \w For|strong="G1063"\w* \w this|strong="G3778"\w* \w is|strong="G1510"\w* loving \w God|strong="G2316"\w*, \w that|strong="G2443"\w* \w we|strong="G1063"\w* \w keep|strong="G5083"\w* \w his|strong="G2532"\w* \w commandments|strong="G1785"\w*. \w His|strong="G2532"\w* \w commandments|strong="G1785"\w* \w are|strong="G1510"\w* \w not|strong="G3756"\w* grievous. +\v 4 \w For|strong="G3754"\w* \w whatever|strong="G3956"\w* \w is|strong="G1510"\w* \w born|strong="G1080"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w* \w overcomes|strong="G3528"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w*. \w This|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w victory|strong="G3529"\w* \w that|strong="G3754"\w* \w has|strong="G2316"\w* \w overcome|strong="G3528"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w*: \w your|strong="G2532"\w* \w faith|strong="G4102"\w*. +\v 5 \w Who|strong="G5101"\w* \w is|strong="G1510"\w* \w he|strong="G1161"\w* \w who|strong="G5101"\w* \w overcomes|strong="G3528"\w* \w the|strong="G1161"\w* \w world|strong="G2889"\w*, \w but|strong="G1161"\w* \w he|strong="G1161"\w* \w who|strong="G5101"\w* \w believes|strong="G4100"\w* \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w is|strong="G1510"\w* \w the|strong="G1161"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*? +\p +\v 6 \w This|strong="G3778"\w* \w is|strong="G1510"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w came|strong="G2064"\w* \w by|strong="G1223"\w* \w water|strong="G5204"\w* \w and|strong="G2532"\w* blood, \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*; \w not|strong="G3756"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w water|strong="G5204"\w* \w only|strong="G3440"\w*, \w but|strong="G2532"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w water|strong="G5204"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* blood. \w It|strong="G2532"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w who|strong="G3588"\w* \w testifies|strong="G3140"\w*, \w because|strong="G3754"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* truth. +\v 7 \w For|strong="G3754"\w* \w there|strong="G3754"\w* \w are|strong="G1510"\w* \w three|strong="G5140"\w* \w who|strong="G3588"\w* \w testify|strong="G3140"\w*:\f + \fr 5:7 \ft Only a few recent manuscripts add “in heaven: the Father, the Word, and the Holy Spirit; and these three are one. And there are three that testify on earth:”\f* +\v 8 \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w*, \w the|strong="G2532"\w* \w water|strong="G5204"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* blood; \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w three|strong="G5140"\w* \w agree|strong="G1510"\w* \w as|strong="G1519"\w* \w one|strong="G1520"\w*. +\v 9 \w If|strong="G1487"\w* \w we|strong="G3754"\w* \w receive|strong="G2983"\w* \w the|strong="G3588"\w* \w witness|strong="G3140"\w* \w of|strong="G5207"\w* \w men|strong="G3778"\w*, \w the|strong="G3588"\w* \w witness|strong="G3140"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w* \w is|strong="G1510"\w* \w greater|strong="G3173"\w*; \w for|strong="G3754"\w* \w this|strong="G3778"\w* \w is|strong="G1510"\w* \w God|strong="G2316"\w*’s \w testimony|strong="G3141"\w* \w which|strong="G3588"\w* \w he|strong="G3754"\w* \w has|strong="G2316"\w* \w testified|strong="G3140"\w* \w concerning|strong="G4012"\w* \w his|strong="G4012"\w* \w Son|strong="G5207"\w*. +\v 10 \w He|strong="G3739"\w* \w who|strong="G3739"\w* \w believes|strong="G4100"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w* \w has|strong="G2192"\w* \w the|strong="G1722"\w* \w testimony|strong="G3141"\w* \w in|strong="G1722"\w* \w himself|strong="G1438"\w*. \w He|strong="G3739"\w* \w who|strong="G3739"\w* doesn’\w t|strong="G3588"\w* \w believe|strong="G4100"\w* \w God|strong="G2316"\w* \w has|strong="G2192"\w* \w made|strong="G4160"\w* \w him|strong="G3588"\w* \w a|strong="G2192"\w* \w liar|strong="G5583"\w*, \w because|strong="G3754"\w* \w he|strong="G3739"\w* \w has|strong="G2192"\w* \w not|strong="G3756"\w* \w believed|strong="G4100"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w testimony|strong="G3141"\w* \w that|strong="G3754"\w* \w God|strong="G2316"\w* \w has|strong="G2192"\w* \w given|strong="G3361"\w* \w concerning|strong="G4012"\w* \w his|strong="G1438"\w* \w Son|strong="G5207"\w*. +\v 11 \w The|strong="G1722"\w* \w testimony|strong="G3141"\w* \w is|strong="G1510"\w* \w this|strong="G3778"\w*: \w that|strong="G3754"\w* \w God|strong="G2316"\w* \w gave|strong="G1325"\w* \w to|strong="G2532"\w* \w us|strong="G1325"\w* eternal \w life|strong="G2222"\w*, \w and|strong="G2532"\w* \w this|strong="G3778"\w* \w life|strong="G2222"\w* \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w his|strong="G1722"\w* \w Son|strong="G5207"\w*. +\v 12 \w He|strong="G3588"\w* \w who|strong="G3588"\w* \w has|strong="G2192"\w* \w the|strong="G3588"\w* \w Son|strong="G5207"\w* \w has|strong="G2192"\w* \w the|strong="G3588"\w* \w life|strong="G2222"\w*. \w He|strong="G3588"\w* \w who|strong="G3588"\w* doesn’\w t|strong="G3588"\w* \w have|strong="G2192"\w* \w God|strong="G2316"\w*’\w s|strong="G2192"\w* \w Son|strong="G5207"\w* doesn’\w t|strong="G3588"\w* \w have|strong="G2192"\w* \w the|strong="G3588"\w* \w life|strong="G2222"\w*. +\p +\v 13 \w These|strong="G3778"\w* \w things|strong="G3778"\w* \w I|strong="G3754"\w* \w have|strong="G2192"\w* \w written|strong="G1125"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w who|strong="G3588"\w* \w believe|strong="G4100"\w* \w in|strong="G1519"\w* \w the|strong="G1519"\w* \w name|strong="G3686"\w* \w of|strong="G5207"\w* \w the|strong="G1519"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*, \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w may|strong="G2443"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w have|strong="G2192"\w* eternal \w life|strong="G2222"\w*, \w and|strong="G2316"\w* \w that|strong="G3754"\w* \w you|strong="G5210"\w* \w may|strong="G2443"\w* continue \w to|strong="G1519"\w* \w believe|strong="G4100"\w* \w in|strong="G1519"\w* \w the|strong="G1519"\w* \w name|strong="G3686"\w* \w of|strong="G5207"\w* \w the|strong="G1519"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w*. +\p +\v 14 \w This|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w boldness|strong="G3954"\w* \w which|strong="G3739"\w* \w we|strong="G2249"\w* \w have|strong="G2192"\w* \w toward|strong="G4314"\w* \w him|strong="G3588"\w*, \w that|strong="G3754"\w* \w if|strong="G1437"\w* \w we|strong="G2249"\w* ask \w anything|strong="G5100"\w* \w according|strong="G2596"\w* \w to|strong="G4314"\w* \w his|strong="G2192"\w* \w will|strong="G2307"\w*, \w he|strong="G2532"\w* listens \w to|strong="G4314"\w* \w us|strong="G2249"\w*. +\v 15 \w And|strong="G2532"\w* \w if|strong="G1437"\w* \w we|strong="G2249"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* listens \w to|strong="G2532"\w* \w us|strong="G2249"\w*, \w whatever|strong="G3739"\w* \w we|strong="G2249"\w* ask, \w we|strong="G2249"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w we|strong="G2249"\w* \w have|strong="G2192"\w* \w the|strong="G2532"\w* petitions \w which|strong="G3739"\w* \w we|strong="G2249"\w* \w have|strong="G2192"\w* asked \w of|strong="G2532"\w* \w him|strong="G3588"\w*. +\p +\v 16 \w If|strong="G1437"\w* \w anyone|strong="G5100"\w* \w sees|strong="G3708"\w* \w his|strong="G4012"\w* brother sinning \w a|strong="G2532"\w* sin \w not|strong="G3756"\w* leading \w to|strong="G4314"\w* \w death|strong="G2288"\w*, \w he|strong="G2532"\w* \w shall|strong="G2532"\w* \w ask|strong="G2065"\w*, \w and|strong="G2532"\w* \w God|strong="G3004"\w* \w will|strong="G1510"\w* \w give|strong="G1325"\w* \w him|strong="G3588"\w* \w life|strong="G2222"\w* \w for|strong="G4012"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* sin \w not|strong="G3756"\w* leading \w to|strong="G4314"\w* \w death|strong="G2288"\w*. \w There|strong="G2532"\w* \w is|strong="G1510"\w* sin leading \w to|strong="G4314"\w* \w death|strong="G2288"\w*. \w I|strong="G2532"\w* don’\w t|strong="G3588"\w* \w say|strong="G3004"\w* \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w should|strong="G5100"\w* \w make|strong="G2532"\w* \w a|strong="G2532"\w* \w request|strong="G2065"\w* \w concerning|strong="G4012"\w* \w this|strong="G3588"\w*. +\v 17 \w All|strong="G3956"\w* unrighteousness \w is|strong="G1510"\w* sin, \w and|strong="G2532"\w* \w there|strong="G2532"\w* \w is|strong="G1510"\w* sin \w not|strong="G3756"\w* leading \w to|strong="G4314"\w* \w death|strong="G2288"\w*. +\p +\v 18 \w We|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w whoever|strong="G3748"\w* \w is|strong="G3588"\w* \w born|strong="G1080"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w* doesn’\w t|strong="G3588"\w* sin, \w but|strong="G2532"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w born|strong="G1080"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w* \w keeps|strong="G5083"\w* himself, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w evil|strong="G4190"\w* \w one|strong="G3956"\w* doesn’\w t|strong="G3588"\w* touch \w him|strong="G3588"\w*. +\v 19 \w We|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w we|strong="G3754"\w* \w are|strong="G1510"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w whole|strong="G3650"\w* \w world|strong="G2889"\w* \w lies|strong="G2749"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w power|strong="G2316"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w evil|strong="G4190"\w* \w one|strong="G3588"\w*. +\v 20 \w We|strong="G2249"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w the|strong="G1722"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w come|strong="G2240"\w* \w and|strong="G2532"\w* \w has|strong="G2316"\w* \w given|strong="G1325"\w* \w us|strong="G1325"\w* \w an|strong="G2532"\w* \w understanding|strong="G1271"\w*, \w that|strong="G3754"\w* \w we|strong="G2249"\w* \w know|strong="G1492"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w true|strong="G3588"\w*; \w and|strong="G2532"\w* \w we|strong="G2249"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w true|strong="G3588"\w*, \w in|strong="G1722"\w* \w his|strong="G1722"\w* \w Son|strong="G5207"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. \w This|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w true|strong="G3588"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* eternal \w life|strong="G2222"\w*. +\p +\v 21 \w Little|strong="G5040"\w* \w children|strong="G5040"\w*, \w keep|strong="G5442"\w* \w yourselves|strong="G1438"\w* \w from|strong="G3588"\w* \w idols|strong="G1497"\w*. \ No newline at end of file diff --git a/bibles/eng-web_usfm/93-2JNeng-web.usfm b/bibles/eng-web_usfm/93-2JNeng-web.usfm new file mode 100644 index 0000000..2b5193a --- /dev/null +++ b/bibles/eng-web_usfm/93-2JNeng-web.usfm @@ -0,0 +1,25 @@ +\id 2JN 63-2JN-web.sfm World English Bible (WEB) +\ide UTF-8 +\h 2 John +\toc1 John’s Second Letter +\toc2 2 John +\toc3 2Jn +\mt1 John’s Second Letter +\c 1 +\p +\v 1 \w The|strong="G1722"\w* \w elder|strong="G4245"\w*, \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w chosen|strong="G1588"\w* \w lady|strong="G2959"\w* \w and|strong="G2532"\w* \w her|strong="G3956"\w* \w children|strong="G5043"\w*, \w whom|strong="G3739"\w* \w I|strong="G1473"\w* love \w in|strong="G1722"\w* truth, \w and|strong="G2532"\w* \w not|strong="G3756"\w* \w I|strong="G1473"\w* \w only|strong="G3441"\w*, \w but|strong="G2532"\w* \w also|strong="G2532"\w* \w all|strong="G3956"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w know|strong="G1097"\w* \w the|strong="G1722"\w* truth, +\v 2 \w for|strong="G1519"\w* \w the|strong="G1722"\w* truth’s \w sake|strong="G1223"\w*, \w which|strong="G3588"\w* \w remains|strong="G3306"\w* \w in|strong="G1722"\w* \w us|strong="G1519"\w*, \w and|strong="G2532"\w* \w it|strong="G2532"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w with|strong="G3326"\w* \w us|strong="G1519"\w* \w forever|strong="G1519"\w*: +\v 3 \w Grace|strong="G5485"\w*, \w mercy|strong="G1656"\w*, \w and|strong="G2532"\w* \w peace|strong="G1515"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w with|strong="G3326"\w* \w us|strong="G2249"\w*, \w from|strong="G3844"\w* \w God|strong="G2316"\w* \w the|strong="G1722"\w* \w Father|strong="G3962"\w* \w and|strong="G2532"\w* \w from|strong="G3844"\w* \w the|strong="G1722"\w* \w Lord|strong="G3588"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*,\f + \fr 1:3 \ft “Christ” means “Anointed One”.\f* \w the|strong="G1722"\w* \w Son|strong="G5207"\w* \w of|strong="G5207"\w* \w the|strong="G1722"\w* \w Father|strong="G3962"\w*, \w in|strong="G1722"\w* truth \w and|strong="G2532"\w* love. +\p +\v 4 \w I|strong="G3754"\w* \w rejoice|strong="G5463"\w* \w greatly|strong="G3029"\w* \w that|strong="G3754"\w* \w I|strong="G3754"\w* \w have|strong="G3748"\w* \w found|strong="G2147"\w* \w some|strong="G3588"\w* \w of|strong="G1537"\w* \w your|strong="G2983"\w* \w children|strong="G5043"\w* \w walking|strong="G4043"\w* \w in|strong="G1722"\w* truth, \w even|strong="G2531"\w* \w as|strong="G2531"\w* \w we|strong="G3754"\w* \w have|strong="G3748"\w* been \w commanded|strong="G1785"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w Father|strong="G3962"\w*. +\v 5 \w Now|strong="G3568"\w* \w I|strong="G3739"\w* \w beg|strong="G2065"\w* \w you|strong="G4771"\w*, dear \w lady|strong="G2959"\w*, \w not|strong="G3756"\w* \w as|strong="G5613"\w* \w though|strong="G5613"\w* \w I|strong="G3739"\w* \w wrote|strong="G1125"\w* \w to|strong="G2443"\w* \w you|strong="G4771"\w* \w a|strong="G5613"\w* \w new|strong="G2537"\w* \w commandment|strong="G1785"\w*, \w but|strong="G2532"\w* \w that|strong="G2443"\w* \w which|strong="G3739"\w* \w we|strong="G3739"\w* \w had|strong="G2532"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* beginning, \w that|strong="G2443"\w* \w we|strong="G3739"\w* love \w one|strong="G3739"\w* \w another|strong="G3739"\w*. +\v 6 \w This|strong="G3778"\w* \w is|strong="G1510"\w* love, \w that|strong="G2443"\w* \w we|strong="G2532"\w* \w should|strong="G3588"\w* \w walk|strong="G4043"\w* \w according|strong="G2596"\w* \w to|strong="G2443"\w* \w his|strong="G1722"\w* \w commandments|strong="G1785"\w*. \w This|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w commandment|strong="G1785"\w*, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w you|strong="G1722"\w* heard \w from|strong="G2532"\w* \w the|strong="G1722"\w* beginning, \w that|strong="G2443"\w* \w you|strong="G1722"\w* \w should|strong="G3588"\w* \w walk|strong="G4043"\w* \w in|strong="G1722"\w* \w it|strong="G2532"\w*. +\p +\v 7 \w For|strong="G3754"\w* \w many|strong="G4183"\w* \w deceivers|strong="G4108"\w* \w have|strong="G2532"\w* \w gone|strong="G1831"\w* \w out|strong="G1831"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w*, \w those|strong="G3588"\w* \w who|strong="G3588"\w* don’\w t|strong="G3588"\w* \w confess|strong="G3670"\w* \w that|strong="G3754"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w came|strong="G2064"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*. \w This|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w deceiver|strong="G4108"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* Antichrist. +\v 8 Watch \w yourselves|strong="G1438"\w*, \w that|strong="G2443"\w* \w we|strong="G3739"\w* don’t lose \w the|strong="G3739"\w* \w things|strong="G3739"\w* \w which|strong="G3739"\w* \w we|strong="G3739"\w* \w have|strong="G3361"\w* \w accomplished|strong="G2038"\w*, \w but|strong="G3361"\w* \w that|strong="G2443"\w* \w we|strong="G3739"\w* receive \w a|strong="G3739"\w* \w full|strong="G4134"\w* \w reward|strong="G3408"\w*. +\v 9 \w Whoever|strong="G3956"\w* transgresses \w and|strong="G2532"\w* doesn’\w t|strong="G3588"\w* \w remain|strong="G3306"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w teaching|strong="G1322"\w* \w of|strong="G5207"\w* \w Christ|strong="G5547"\w* doesn’\w t|strong="G3588"\w* \w have|strong="G2192"\w* \w God|strong="G2316"\w*. \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w remains|strong="G3306"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w teaching|strong="G1322"\w* \w has|strong="G2192"\w* \w both|strong="G2532"\w* \w the|strong="G1722"\w* \w Father|strong="G3962"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w Son|strong="G5207"\w*. +\v 10 \w If|strong="G1487"\w* \w anyone|strong="G5100"\w* \w comes|strong="G2064"\w* \w to|strong="G1519"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* doesn’\w t|strong="G3588"\w* \w bring|strong="G5342"\w* \w this|strong="G3778"\w* \w teaching|strong="G1322"\w*, don’\w t|strong="G3588"\w* \w receive|strong="G2983"\w* \w him|strong="G3588"\w* \w into|strong="G1519"\w* \w your|strong="G2532"\w* \w house|strong="G3614"\w*, \w and|strong="G2532"\w* don’\w t|strong="G3588"\w* welcome \w him|strong="G3588"\w*, +\v 11 \w for|strong="G1063"\w* \w he|strong="G3588"\w* \w who|strong="G3588"\w* welcomes \w him|strong="G3588"\w* \w participates|strong="G2841"\w* \w in|strong="G3004"\w* \w his|strong="G3588"\w* \w evil|strong="G4190"\w* \w deeds|strong="G2041"\w*. +\p +\v 12 \w Having|strong="G2192"\w* \w many|strong="G4183"\w* \w things|strong="G3588"\w* \w to|strong="G4314"\w* \w write|strong="G1125"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*, \w I|strong="G2532"\w* don’\w t|strong="G3588"\w* \w want|strong="G1014"\w* \w to|strong="G4314"\w* \w do|strong="G1096"\w* \w so|strong="G2443"\w* \w with|strong="G4314"\w* \w paper|strong="G5489"\w* \w and|strong="G2532"\w* \w ink|strong="G3188"\w*, \w but|strong="G2532"\w* \w I|strong="G2532"\w* \w hope|strong="G1679"\w* \w to|strong="G4314"\w* \w come|strong="G1096"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w to|strong="G4314"\w* \w speak|strong="G2980"\w* \w face|strong="G4750"\w* \w to|strong="G4314"\w* \w face|strong="G4750"\w*, \w that|strong="G2443"\w* \w our|strong="G2532"\w* \w joy|strong="G5479"\w* \w may|strong="G2532"\w* \w be|strong="G1096"\w* \w made|strong="G1096"\w* \w full|strong="G4137"\w*. +\v 13 \w The|strong="G3588"\w* \w children|strong="G5043"\w* \w of|strong="G5043"\w* \w your|strong="G3588"\w* \w chosen|strong="G1588"\w* sister greet \w you|strong="G4771"\w*. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/94-3JNeng-web.usfm b/bibles/eng-web_usfm/94-3JNeng-web.usfm new file mode 100644 index 0000000..971f002 --- /dev/null +++ b/bibles/eng-web_usfm/94-3JNeng-web.usfm @@ -0,0 +1,29 @@ +\id 3JN 64-3JN-web.sfm World English Bible (WEB) +\ide UTF-8 +\h 3 John +\toc1 John’s Third Letter +\toc2 3 John +\toc3 3Jn +\mt1 John’s Third Letter +\c 1 +\p +\v 1 \w The|strong="G1722"\w* \w elder|strong="G4245"\w* \w to|strong="G1722"\w* \w Gaius|strong="G1050"\w* \w the|strong="G1722"\w* beloved, \w whom|strong="G3739"\w* \w I|strong="G1473"\w* love \w in|strong="G1722"\w* truth. +\p +\v 2 Beloved, \w I|strong="G2532"\w* \w pray|strong="G2172"\w* \w that|strong="G3588"\w* \w you|strong="G4771"\w* \w may|strong="G2532"\w* \w prosper|strong="G2137"\w* \w in|strong="G2532"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w* \w and|strong="G2532"\w* \w be|strong="G2532"\w* healthy, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w your|strong="G2532"\w* \w soul|strong="G5590"\w* \w prospers|strong="G2137"\w*. +\v 3 \w For|strong="G1063"\w* \w I|strong="G2532"\w* \w rejoiced|strong="G5463"\w* \w greatly|strong="G3029"\w* \w when|strong="G2532"\w* brothers \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w testified|strong="G3140"\w* \w about|strong="G1722"\w* \w your|strong="G2532"\w* truth, \w even|strong="G2532"\w* \w as|strong="G2531"\w* \w you|strong="G4771"\w* \w walk|strong="G4043"\w* \w in|strong="G1722"\w* truth. +\v 4 \w I|strong="G3778"\w* \w have|strong="G2192"\w* \w no|strong="G3756"\w* \w greater|strong="G3173"\w* \w joy|strong="G5479"\w* \w than|strong="G3173"\w* \w this|strong="G3778"\w*: \w to|strong="G2443"\w* hear \w about|strong="G1722"\w* \w my|strong="G1699"\w* \w children|strong="G5043"\w* \w walking|strong="G4043"\w* \w in|strong="G1722"\w* truth. +\p +\v 5 Beloved, \w you|strong="G3739"\w* \w do|strong="G4160"\w* \w a|strong="G2532"\w* \w faithful|strong="G4103"\w* \w work|strong="G2038"\w* \w in|strong="G1519"\w* \w whatever|strong="G3739"\w* \w you|strong="G3739"\w* \w accomplish|strong="G2038"\w* \w for|strong="G1519"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w are|strong="G3588"\w* brothers \w and|strong="G2532"\w* \w strangers|strong="G3581"\w*. +\v 6 \w They|strong="G3588"\w* \w have|strong="G4160"\w* \w testified|strong="G3140"\w* \w about|strong="G4160"\w* \w your|strong="G4160"\w* love \w before|strong="G1799"\w* \w the|strong="G3588"\w* \w assembly|strong="G1577"\w*. \w You|strong="G4771"\w* \w will|strong="G2316"\w* \w do|strong="G4160"\w* \w well|strong="G2573"\w* \w to|strong="G4160"\w* \w send|strong="G4311"\w* \w them|strong="G3588"\w* forward \w on|strong="G4311"\w* \w their|strong="G3588"\w* \w journey|strong="G4311"\w* \w in|strong="G2316"\w* \w a|strong="G4160"\w* \w way|strong="G4311"\w* worthy \w of|strong="G2316"\w* \w God|strong="G2316"\w*, +\v 7 \w because|strong="G1063"\w* \w for|strong="G1063"\w* \w the|strong="G3588"\w* \w sake|strong="G5228"\w* \w of|strong="G3686"\w* \w the|strong="G3588"\w* \w Name|strong="G3686"\w* \w they|strong="G3588"\w* \w went|strong="G1831"\w* \w out|strong="G1831"\w*, \w taking|strong="G2983"\w* \w nothing|strong="G3367"\w* \w from|strong="G1831"\w* \w the|strong="G3588"\w* \w Gentiles|strong="G1482"\w*. +\v 8 \w We|strong="G2249"\w* \w therefore|strong="G3767"\w* \w ought|strong="G3784"\w* \w to|strong="G2443"\w* receive \w such|strong="G5108"\w*, \w that|strong="G2443"\w* \w we|strong="G2249"\w* \w may|strong="G2443"\w* \w be|strong="G1096"\w* \w fellow|strong="G4904"\w* \w workers|strong="G4904"\w* \w for|strong="G2443"\w* \w the|strong="G3588"\w* truth. +\p +\v 9 \w I|strong="G1473"\w* \w wrote|strong="G1125"\w* \w to|strong="G3756"\w* \w the|strong="G3588"\w* \w assembly|strong="G1577"\w*, \w but|strong="G3588"\w* \w Diotrephes|strong="G1361"\w*, \w who|strong="G3588"\w* \w loves|strong="G5383"\w* \w to|strong="G3756"\w* \w be|strong="G3756"\w* \w first|strong="G3588"\w* \w among|strong="G5383"\w* \w them|strong="G3588"\w*, doesn’\w t|strong="G3588"\w* \w accept|strong="G1926"\w* \w what|strong="G3588"\w* \w we|strong="G2249"\w* \w say|strong="G1473"\w*. +\v 10 \w Therefore|strong="G1223"\w*, \w if|strong="G1437"\w* \w I|strong="G1473"\w* \w come|strong="G2064"\w*, \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w call|strong="G2532"\w* \w attention|strong="G5279"\w* \w to|strong="G2532"\w* \w his|strong="G1223"\w* \w deeds|strong="G2041"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w does|strong="G4160"\w*, \w unjustly|strong="G5396"\w* \w accusing|strong="G5396"\w* \w us|strong="G4160"\w* \w with|strong="G1223"\w* \w wicked|strong="G4190"\w* \w words|strong="G3056"\w*. \w Not|strong="G3361"\w* \w content|strong="G4160"\w* \w with|strong="G1223"\w* \w this|strong="G3778"\w*, \w he|strong="G2532"\w* doesn’\w t|strong="G3588"\w* \w receive|strong="G1926"\w* \w the|strong="G2532"\w* brothers himself, \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w would|strong="G1014"\w*, \w he|strong="G2532"\w* \w forbids|strong="G2967"\w* \w and|strong="G2532"\w* \w throws|strong="G1544"\w* \w out|strong="G1544"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w assembly|strong="G1577"\w*. +\p +\v 11 Beloved, don’\w t|strong="G3588"\w* \w imitate|strong="G3401"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w evil|strong="G2556"\w*, \w but|strong="G3361"\w* \w that|strong="G3588"\w* \w which|strong="G3588"\w* \w is|strong="G1510"\w* \w good|strong="G3756"\w*. \w He|strong="G3588"\w* \w who|strong="G3588"\w* \w does|strong="G1510"\w* \w good|strong="G3756"\w* \w is|strong="G1510"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*. \w He|strong="G3588"\w* \w who|strong="G3588"\w* \w does|strong="G1510"\w* \w evil|strong="G2556"\w* hasn’\w t|strong="G3588"\w* \w seen|strong="G3708"\w* \w God|strong="G2316"\w*. +\v 12 \w Demetrius|strong="G1216"\w* \w has|strong="G3748"\w* \w the|strong="G2532"\w* \w testimony|strong="G3141"\w* \w of|strong="G5259"\w* \w all|strong="G3956"\w*, \w and|strong="G2532"\w* \w of|strong="G5259"\w* \w the|strong="G2532"\w* truth itself; \w yes|strong="G1161"\w*, \w we|strong="G2249"\w* \w also|strong="G2532"\w* \w testify|strong="G3140"\w*, \w and|strong="G2532"\w* \w you|strong="G3754"\w* \w know|strong="G1492"\w* \w that|strong="G3754"\w* \w our|strong="G2532"\w* \w testimony|strong="G3141"\w* \w is|strong="G1510"\w* \w true|strong="G3588"\w*. +\p +\v 13 \w I|strong="G2532"\w* \w had|strong="G2192"\w* \w many|strong="G4183"\w* \w things|strong="G4183"\w* \w to|strong="G2532"\w* \w write|strong="G1125"\w* \w to|strong="G2532"\w* \w you|strong="G4771"\w*, \w but|strong="G2532"\w* \w I|strong="G2532"\w* \w am|strong="G2532"\w* \w unwilling|strong="G3756"\w* \w to|strong="G2532"\w* \w write|strong="G1125"\w* \w to|strong="G2532"\w* \w you|strong="G4771"\w* \w with|strong="G1223"\w* \w ink|strong="G3188"\w* \w and|strong="G2532"\w* \w pen|strong="G2563"\w*; +\v 14 \w but|strong="G1161"\w* \w I|strong="G2532"\w* \w hope|strong="G1679"\w* \w to|strong="G4314"\w* \w see|strong="G3708"\w* \w you|strong="G4771"\w* soon. \w Then|strong="G2532"\w* \w we|strong="G2532"\w* \w will|strong="G2532"\w* \w speak|strong="G2980"\w* \w face|strong="G4750"\w* \w to|strong="G4314"\w* \w face|strong="G4750"\w*. +\p Peace \w be|strong="G2532"\w* \w to|strong="G4314"\w* \w you|strong="G4771"\w*. \w The|strong="G2532"\w* friends greet \w you|strong="G4771"\w*. Greet \w the|strong="G2532"\w* friends \w by|strong="G4314"\w* name. \ No newline at end of file diff --git a/bibles/eng-web_usfm/95-JUDeng-web.usfm b/bibles/eng-web_usfm/95-JUDeng-web.usfm new file mode 100644 index 0000000..78a2cb5 --- /dev/null +++ b/bibles/eng-web_usfm/95-JUDeng-web.usfm @@ -0,0 +1,39 @@ +\id JUD 65-JUD-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Jude +\toc1 The Letter from Jude +\toc2 Jude +\toc3 Jud +\mt1 The Letter from Jude +\c 1 +\p +\v 1 \w Jude|strong="G2455"\w*,\f + \fr 1:1 \ft or, Judah\f* \w a|strong="G2532"\w* \w servant|strong="G1401"\w* \w of|strong="G2316"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*,\f + \fr 1:1 \ft “Christ” means “Anointed One”.\f* \w and|strong="G2532"\w* brother \w of|strong="G2316"\w* \w James|strong="G2385"\w*, \w to|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w called|strong="G2822"\w*, sanctified \w by|strong="G1722"\w* \w God|strong="G2316"\w* \w the|strong="G1722"\w* \w Father|strong="G3962"\w*, \w and|strong="G2532"\w* \w kept|strong="G5083"\w* \w for|strong="G1161"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*: +\v 2 \w May|strong="G2532"\w* \w mercy|strong="G1656"\w*, \w peace|strong="G1515"\w*, \w and|strong="G2532"\w* love \w be|strong="G2532"\w* \w multiplied|strong="G4129"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w*. +\p +\v 3 Beloved, \w while|strong="G3956"\w* \w I|strong="G1473"\w* \w was|strong="G3588"\w* \w very|strong="G3588"\w* \w eager|strong="G4710"\w* \w to|strong="G4160"\w* \w write|strong="G1125"\w* \w to|strong="G4160"\w* \w you|strong="G5210"\w* \w about|strong="G4012"\w* \w our|strong="G3956"\w* \w common|strong="G2839"\w* \w salvation|strong="G4991"\w*, \w I|strong="G1473"\w* \w was|strong="G3588"\w* constrained \w to|strong="G4160"\w* \w write|strong="G1125"\w* \w to|strong="G4160"\w* \w you|strong="G5210"\w* \w exhorting|strong="G3870"\w* \w you|strong="G5210"\w* \w to|strong="G4160"\w* \w contend|strong="G1864"\w* \w earnestly|strong="G1864"\w* \w for|strong="G4012"\w* \w the|strong="G3956"\w* \w faith|strong="G4102"\w* \w which|strong="G3588"\w* \w was|strong="G3588"\w* once \w for|strong="G4012"\w* \w all|strong="G3956"\w* \w delivered|strong="G3860"\w* \w to|strong="G4160"\w* \w the|strong="G3956"\w* saints. +\v 4 \w For|strong="G1063"\w* \w there|strong="G2532"\w* \w are|strong="G3588"\w* \w certain|strong="G5100"\w* \w men|strong="G3778"\w* \w who|strong="G3588"\w* \w crept|strong="G3921"\w* \w in|strong="G1519"\w* secretly, \w even|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w long|strong="G3819"\w* \w ago|strong="G3819"\w* \w written|strong="G4270"\w* \w about|strong="G1519"\w* \w for|strong="G1063"\w* \w this|strong="G3778"\w* \w condemnation|strong="G2917"\w*: ungodly \w men|strong="G3778"\w*, \w turning|strong="G3346"\w* \w the|strong="G2532"\w* \w grace|strong="G5485"\w* \w of|strong="G2316"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w* \w into|strong="G1519"\w* indecency, \w and|strong="G2532"\w* denying \w our|strong="G2316"\w* \w only|strong="G3441"\w* \w Master|strong="G2962"\w*, \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w Lord|strong="G2962"\w*, \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\p +\v 5 \w Now|strong="G1161"\w* \w I|strong="G1161"\w* \w desire|strong="G1014"\w* \w to|strong="G1014"\w* \w remind|strong="G5279"\w* \w you|strong="G5210"\w*, \w though|strong="G1161"\w* \w you|strong="G5210"\w* already \w know|strong="G1492"\w* \w this|strong="G3588"\w*, \w that|strong="G3754"\w* \w the|strong="G3956"\w* \w Lord|strong="G2962"\w*, \w having|strong="G1492"\w* \w saved|strong="G4982"\w* \w a|strong="G3708"\w* \w people|strong="G2992"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G3956"\w* \w land|strong="G1093"\w* \w of|strong="G1537"\w* Egypt, \w afterward|strong="G1208"\w* destroyed \w those|strong="G3588"\w* \w who|strong="G3588"\w* didn’\w t|strong="G3588"\w* \w believe|strong="G4100"\w*. +\v 6 Angels \w who|strong="G3588"\w* didn’\w t|strong="G3588"\w* \w keep|strong="G5083"\w* \w their|strong="G1438"\w* \w first|strong="G3588"\w* domain, \w but|strong="G3361"\w* deserted \w their|strong="G1438"\w* \w own|strong="G2398"\w* \w dwelling|strong="G3613"\w* place, \w he|strong="G3588"\w* \w has|strong="G2920"\w* \w kept|strong="G5083"\w* \w in|strong="G1519"\w* everlasting \w bonds|strong="G1199"\w* \w under|strong="G5259"\w* \w darkness|strong="G2217"\w* \w for|strong="G1519"\w* \w the|strong="G1519"\w* \w judgment|strong="G2920"\w* \w of|strong="G5259"\w* \w the|strong="G1519"\w* \w great|strong="G3173"\w* \w day|strong="G2250"\w*. +\v 7 \w Even|strong="G2532"\w* \w as|strong="G5613"\w* \w Sodom|strong="G4670"\w* \w and|strong="G2532"\w* \w Gomorrah|strong="G1116"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w cities|strong="G4172"\w* \w around|strong="G4012"\w* \w them|strong="G3588"\w*, \w having|strong="G2532"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w same|strong="G3778"\w* \w way|strong="G5158"\w* \w as|strong="G5613"\w* \w these|strong="G3778"\w* given \w themselves|strong="G1438"\w* \w over|strong="G4012"\w* \w to|strong="G2532"\w* sexual \w immorality|strong="G1608"\w* \w and|strong="G2532"\w* gone \w after|strong="G3694"\w* \w strange|strong="G2087"\w* \w flesh|strong="G4561"\w*, \w are|strong="G3588"\w* shown \w as|strong="G5613"\w* \w an|strong="G2532"\w* \w example|strong="G1164"\w*, \w suffering|strong="G5254"\w* \w the|strong="G2532"\w* \w punishment|strong="G1349"\w* \w of|strong="G4012"\w* eternal \w fire|strong="G4442"\w*. +\v 8 \w Yet|strong="G2532"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w same|strong="G3778"\w* \w way|strong="G3668"\w*, \w these|strong="G3778"\w* \w also|strong="G2532"\w* \w in|strong="G2532"\w* \w their|strong="G2532"\w* \w dreaming|strong="G1797"\w* \w defile|strong="G3392"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w*, despise \w authority|strong="G2963"\w*, \w and|strong="G2532"\w* slander celestial beings. +\v 9 \w But|strong="G1161"\w* \w Michael|strong="G3413"\w*, \w the|strong="G1161"\w* archangel, \w when|strong="G3753"\w* \w contending|strong="G1252"\w* \w with|strong="G4012"\w* \w the|strong="G1161"\w* \w devil|strong="G1228"\w* \w and|strong="G1161"\w* \w arguing|strong="G1256"\w* \w about|strong="G4012"\w* \w the|strong="G1161"\w* \w body|strong="G4983"\w* \w of|strong="G4012"\w* \w Moses|strong="G3475"\w*, \w dared|strong="G5111"\w* \w not|strong="G3756"\w* \w bring|strong="G3004"\w* \w against|strong="G4012"\w* \w him|strong="G3588"\w* \w an|strong="G1161"\w* abusive \w condemnation|strong="G2920"\w*, \w but|strong="G1161"\w* \w said|strong="G3004"\w*, “\w May|strong="G3004"\w* \w the|strong="G1161"\w* \w Lord|strong="G2962"\w* \w rebuke|strong="G2008"\w* \w you|strong="G4771"\w*!” +\v 10 \w But|strong="G1161"\w* \w these|strong="G3778"\w* \w speak|strong="G1161"\w* evil \w of|strong="G1722"\w* \w whatever|strong="G3745"\w* \w things|strong="G3778"\w* \w they|strong="G1161"\w* don’\w t|strong="G3588"\w* \w know|strong="G1492"\w*. \w They|strong="G1161"\w* \w are|strong="G3588"\w* \w destroyed|strong="G5351"\w* \w in|strong="G1722"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w that|strong="G3588"\w* \w they|strong="G1161"\w* \w understand|strong="G1492"\w* \w naturally|strong="G5447"\w*, \w like|strong="G5613"\w* \w the|strong="G1722"\w* \w creatures|strong="G2226"\w* \w without|strong="G3756"\w* reason. +\v 11 \w Woe|strong="G3759"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*! \w For|strong="G3754"\w* \w they|strong="G2532"\w* \w went|strong="G4198"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w way|strong="G3598"\w* \w of|strong="G2532"\w* \w Cain|strong="G2535"\w*, \w and|strong="G2532"\w* \w ran|strong="G2532"\w* riotously \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w error|strong="G4106"\w* \w of|strong="G2532"\w* Balaam \w for|strong="G3754"\w* \w hire|strong="G3408"\w*, \w and|strong="G2532"\w* perished \w in|strong="G2532"\w* \w Korah|strong="G2879"\w*’s rebellion. +\v 12 \w These|strong="G3778"\w* \w are|strong="G1510"\w* \w hidden|strong="G4694"\w* rocky \w reefs|strong="G4694"\w* \w in|strong="G1722"\w* \w your|strong="G1722"\w* love feasts \w when|strong="G1722"\w* \w they|strong="G3588"\w* \w feast|strong="G4910"\w* \w with|strong="G1722"\w* \w you|strong="G5210"\w*, shepherds \w who|strong="G3588"\w* \w without|strong="G1438"\w* fear \w feed|strong="G4165"\w* \w themselves|strong="G1438"\w*; \w clouds|strong="G3507"\w* \w without|strong="G1438"\w* water, \w carried|strong="G3911"\w* \w along|strong="G1722"\w* \w by|strong="G1722"\w* winds; \w autumn|strong="G5352"\w* \w trees|strong="G1186"\w* \w without|strong="G1438"\w* fruit, \w twice|strong="G1364"\w* dead, plucked \w up|strong="G1722"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w roots|strong="G1610"\w*; +\v 13 wild \w waves|strong="G2949"\w* \w of|strong="G2281"\w* \w the|strong="G1519"\w* \w sea|strong="G2281"\w*, foaming \w out|strong="G1438"\w* \w their|strong="G1438"\w* \w own|strong="G1438"\w* shame; \w wandering|strong="G4107"\w* stars, \w for|strong="G1519"\w* \w whom|strong="G3739"\w* \w the|strong="G1519"\w* \w blackness|strong="G2217"\w* \w of|strong="G2281"\w* \w darkness|strong="G4655"\w* \w has|strong="G3739"\w* been \w reserved|strong="G5083"\w* \w forever|strong="G1519"\w*. +\v 14 \w About|strong="G1722"\w* \w these|strong="G3778"\w* \w also|strong="G2532"\w* \w Enoch|strong="G1802"\w*, \w the|strong="G1722"\w* \w seventh|strong="G1442"\w* \w from|strong="G2064"\w* Adam, \w prophesied|strong="G4395"\w*, \w saying|strong="G3004"\w*, “\w Behold|strong="G2400"\w*,\f + \fr 1:14 \ft “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w came|strong="G2064"\w* \w with|strong="G1722"\w* \w ten|strong="G1722"\w* \w thousands|strong="G3461"\w* \w of|strong="G2532"\w* \w his|strong="G1722"\w* holy ones, +\v 15 \w to|strong="G2532"\w* \w execute|strong="G4160"\w* \w judgment|strong="G2920"\w* \w on|strong="G2596"\w* \w all|strong="G3956"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w convict|strong="G1651"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* ungodly \w of|strong="G4012"\w* \w all|strong="G3956"\w* \w their|strong="G2532"\w* \w works|strong="G2041"\w* \w of|strong="G4012"\w* ungodliness \w which|strong="G3739"\w* \w they|strong="G2532"\w* \w have|strong="G2532"\w* \w done|strong="G4160"\w* \w in|strong="G2596"\w* \w an|strong="G2532"\w* ungodly \w way|strong="G2596"\w*, \w and|strong="G2532"\w* \w of|strong="G4012"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w hard|strong="G4642"\w* \w things|strong="G3956"\w* \w which|strong="G3739"\w* ungodly sinners \w have|strong="G2532"\w* \w spoken|strong="G2980"\w* \w against|strong="G2596"\w* \w him|strong="G3588"\w*.” +\v 16 \w These|strong="G3778"\w* \w are|strong="G1510"\w* \w murmurers|strong="G1113"\w* \w and|strong="G2532"\w* \w complainers|strong="G3202"\w*, \w walking|strong="G4198"\w* \w after|strong="G2596"\w* \w their|strong="G2532"\w* \w lusts|strong="G1939"\w*—\w and|strong="G2532"\w* \w their|strong="G2532"\w* \w mouth|strong="G4750"\w* \w speaks|strong="G2980"\w* proud \w things|strong="G3778"\w*—showing respect \w of|strong="G2532"\w* \w persons|strong="G4383"\w* \w to|strong="G2532"\w* gain \w advantage|strong="G5622"\w*. +\p +\v 17 \w But|strong="G1161"\w* \w you|strong="G5210"\w*, beloved, \w remember|strong="G3403"\w* \w the|strong="G1161"\w* \w words|strong="G4487"\w* \w which|strong="G3588"\w* \w have|strong="G1473"\w* \w been|strong="G2962"\w* spoken \w before|strong="G4302"\w* \w by|strong="G5259"\w* \w the|strong="G1161"\w* apostles \w of|strong="G5259"\w* \w our|strong="G2424"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*. +\v 18 \w They|strong="G3588"\w* \w said|strong="G3004"\w* \w to|strong="G2596"\w* \w you|strong="G5210"\w*, “\w In|strong="G1909"\w* \w the|strong="G1909"\w* \w last|strong="G2078"\w* \w time|strong="G5550"\w* \w there|strong="G3754"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w mockers|strong="G1703"\w*, \w walking|strong="G4198"\w* \w after|strong="G2596"\w* \w their|strong="G1438"\w* \w own|strong="G1438"\w* ungodly \w lusts|strong="G1939"\w*.” +\v 19 \w These|strong="G3778"\w* \w are|strong="G1510"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w cause|strong="G3588"\w* divisions \w and|strong="G4151"\w* \w are|strong="G1510"\w* \w sensual|strong="G5591"\w*, \w not|strong="G3361"\w* \w having|strong="G2192"\w* \w the|strong="G3588"\w* \w Spirit|strong="G4151"\w*. +\p +\v 20 \w But|strong="G1161"\w* \w you|strong="G5210"\w*, beloved, keep \w building|strong="G2026"\w* \w up|strong="G2026"\w* \w yourselves|strong="G1438"\w* \w on|strong="G1722"\w* \w your|strong="G1722"\w* most \w holy|strong="G4151"\w* \w faith|strong="G4102"\w*, \w praying|strong="G4336"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Holy|strong="G4151"\w* \w Spirit|strong="G4151"\w*. +\v 21 \w Keep|strong="G5083"\w* \w yourselves|strong="G1438"\w* \w in|strong="G1722"\w* \w God|strong="G2316"\w*’\w s|strong="G2962"\w* love, \w looking|strong="G4327"\w* \w for|strong="G1519"\w* \w the|strong="G1722"\w* \w mercy|strong="G1656"\w* \w of|strong="G2316"\w* \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w* \w to|strong="G1519"\w* eternal \w life|strong="G2222"\w*. +\v 22 \w On|strong="G2532"\w* \w some|strong="G3739"\w* \w have|strong="G2532"\w* compassion, \w making|strong="G2532"\w* \w a|strong="G2532"\w* \w distinction|strong="G1252"\w*, +\v 23 \w and|strong="G2532"\w* \w some|strong="G3739"\w* \w save|strong="G4982"\w*, snatching \w them|strong="G3588"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w fire|strong="G4442"\w* \w with|strong="G1722"\w* \w fear|strong="G5401"\w*, \w hating|strong="G3404"\w* \w even|strong="G2532"\w* \w the|strong="G1722"\w* clothing \w stained|strong="G4695"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w flesh|strong="G4561"\w*. +\p +\v 24 \w Now|strong="G1161"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w able|strong="G1410"\w* \w to|strong="G2532"\w* \w keep|strong="G5442"\w* \w them|strong="G3588"\w*\f + \fr 1:24 \ft TR and NU read “you”\f* \w from|strong="G2532"\w* stumbling, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w present|strong="G2476"\w* \w you|strong="G5210"\w* faultless \w before|strong="G1722"\w* \w the|strong="G1722"\w* \w presence|strong="G2714"\w* \w of|strong="G2532"\w* \w his|strong="G1722"\w* \w glory|strong="G1391"\w* \w in|strong="G1722"\w* \w great|strong="G2532"\w* joy, +\v 25 \w to|strong="G1519"\w* \w God|strong="G2316"\w* \w our|strong="G2316"\w* \w Savior|strong="G4990"\w*, \w who|strong="G3588"\w* \w alone|strong="G3441"\w* \w is|strong="G3588"\w* wise, \w be|strong="G2532"\w* \w glory|strong="G1391"\w* \w and|strong="G2532"\w* \w majesty|strong="G3172"\w*, \w dominion|strong="G2904"\w* \w and|strong="G2532"\w* \w power|strong="G1849"\w*, \w both|strong="G2532"\w* \w now|strong="G3568"\w* \w and|strong="G2532"\w* \w forever|strong="G1519"\w*. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/96-REVeng-web.usfm b/bibles/eng-web_usfm/96-REVeng-web.usfm new file mode 100644 index 0000000..11cefdd --- /dev/null +++ b/bibles/eng-web_usfm/96-REVeng-web.usfm @@ -0,0 +1,600 @@ +\id REV 66-REV-web.sfm World English Bible (WEB) +\ide UTF-8 +\h Revelation +\toc1 The Revelation to John +\toc2 Revelation +\toc3 Rev +\mt1 The Revelation to John +\c 1 +\p +\v 1 \w This|strong="G3588"\w* \w is|strong="G3588"\w* \w the|strong="G1722"\w* Revelation \w of|strong="G1223"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*,\f + \fr 1:1 \ft “Christ” means “Anointed One”.\f* \w which|strong="G3739"\w* \w God|strong="G2316"\w* \w gave|strong="G1325"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w show|strong="G1166"\w* \w to|strong="G2532"\w* \w his|strong="G1223"\w* \w servants|strong="G1401"\w* \w the|strong="G1722"\w* \w things|strong="G3588"\w* \w which|strong="G3739"\w* \w must|strong="G1163"\w* \w happen|strong="G1096"\w* \w soon|strong="G5034"\w*, \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w sent|strong="G2316"\w* \w and|strong="G2532"\w* \w made|strong="G1096"\w* known \w by|strong="G1223"\w* \w his|strong="G1223"\w* angel\f + \fr 1:1 \ft or, messenger (here and wherever angel is mentioned)\f* \w to|strong="G2532"\w* \w his|strong="G1223"\w* \w servant|strong="G1401"\w*, \w John|strong="G2491"\w*, +\v 2 \w who|strong="G3739"\w* \w testified|strong="G3140"\w* \w to|strong="G2532"\w* \w God|strong="G2316"\w*’s \w word|strong="G3056"\w* \w and|strong="G2532"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w testimony|strong="G3141"\w* \w of|strong="G3056"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w about|strong="G2424"\w* \w everything|strong="G3745"\w* \w that|strong="G3739"\w* \w he|strong="G2532"\w* \w saw|strong="G3708"\w*. +\p +\v 3 \w Blessed|strong="G3107"\w* \w is|strong="G3588"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* reads \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* hear \w the|strong="G1722"\w* \w words|strong="G3056"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w prophecy|strong="G4394"\w*, \w and|strong="G2532"\w* \w keep|strong="G5083"\w* \w the|strong="G1722"\w* \w things|strong="G3588"\w* \w that|strong="G3588"\w* \w are|strong="G3588"\w* \w written|strong="G1125"\w* \w in|strong="G1722"\w* \w it|strong="G2532"\w*, \w for|strong="G1063"\w* \w the|strong="G1722"\w* \w time|strong="G2540"\w* \w is|strong="G3588"\w* \w near|strong="G1451"\w*. +\p +\v 4 \w John|strong="G2491"\w*, \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w seven|strong="G2033"\w* \w assemblies|strong="G1577"\w* \w that|strong="G3739"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w Asia|strong="G3588"\w*: \w Grace|strong="G5485"\w* \w to|strong="G2532"\w* \w you|strong="G5210"\w* \w and|strong="G2532"\w* \w peace|strong="G1515"\w* \w from|strong="G2064"\w* \w God|strong="G2532"\w*, \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w and|strong="G2532"\w* \w who|strong="G3739"\w* \w was|strong="G1510"\w* \w and|strong="G2532"\w* \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w to|strong="G2532"\w* \w come|strong="G2064"\w*; \w and|strong="G2532"\w* \w from|strong="G2064"\w* \w the|strong="G1722"\w* \w seven|strong="G2033"\w* \w Spirits|strong="G4151"\w* \w who|strong="G3739"\w* \w are|strong="G1510"\w* \w before|strong="G1799"\w* \w his|strong="G1722"\w* \w throne|strong="G2362"\w*; +\v 5 \w and|strong="G2532"\w* \w from|strong="G1537"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G5547"\w*, \w the|strong="G1722"\w* \w faithful|strong="G4103"\w* \w witness|strong="G3144"\w*, \w the|strong="G1722"\w* \w firstborn|strong="G4416"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* ruler \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w kings|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w*. \w To|strong="G2532"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* loves \w us|strong="G2249"\w*, \w and|strong="G2532"\w* washed \w us|strong="G2249"\w* \w from|strong="G1537"\w* \w our|strong="G2424"\w* sins \w by|strong="G1722"\w* \w his|strong="G1722"\w* blood— +\v 6 \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w made|strong="G4160"\w* \w us|strong="G4160"\w* \w to|strong="G1519"\w* \w be|strong="G2532"\w* \w a|strong="G2532"\w* Kingdom, \w priests|strong="G2409"\w*\x + \xo 1:6 \xt Exodus 19:6; Isaiah 61:6 \x* \w to|strong="G1519"\w* \w his|strong="G1519"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w Father|strong="G3962"\w*—\w to|strong="G1519"\w* \w him|strong="G3588"\w* \w be|strong="G2532"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w dominion|strong="G2904"\w* \w forever|strong="G1519"\w* \w and|strong="G2532"\w* \w ever|strong="G1519"\w*. Amen. +\p +\v 7 \w Behold|strong="G2400"\w*,\f + \fr 1:7 \ft “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.\f* \w he|strong="G2532"\w* \w is|strong="G3588"\w* \w coming|strong="G2064"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w clouds|strong="G3507"\w*, \w and|strong="G2532"\w* \w every|strong="G3956"\w* \w eye|strong="G3788"\w* \w will|strong="G2532"\w* \w see|strong="G3708"\w* \w him|strong="G3588"\w*, \w including|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w pierced|strong="G1574"\w* \w him|strong="G3588"\w*. \w All|strong="G3956"\w* \w the|strong="G2532"\w* \w tribes|strong="G5443"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w will|strong="G2532"\w* \w mourn|strong="G2875"\w* \w over|strong="G1909"\w* \w him|strong="G3588"\w*. \w Even|strong="G2532"\w* \w so|strong="G2532"\w*, Amen. +\p +\v 8 \wj “\+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w the|strong="G2532"\+w* Alpha \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Omega|strong="G5598"\+w*,\wj*\f + \fr 1:8 \ft TR adds “the Beginning and the End”\f*\wj ”\wj* \w says|strong="G3004"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w God|strong="G2316"\w*,\f + \fr 1:8 \ft TR omits “God”\f* \wj “\+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w and|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w was|strong="G1510"\+w* \+w and|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G1510"\+w* \+w to|strong="G2532"\+w* \+w come|strong="G2064"\+w*, \+w the|strong="G2532"\+w* \+w Almighty|strong="G3841"\+w*.”\wj* +\p +\v 9 \w I|strong="G1473"\w* \w John|strong="G2491"\w*, \w your|strong="G1223"\w* brother \w and|strong="G2532"\w* partner \w with|strong="G1722"\w* \w you|strong="G5210"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* oppression, Kingdom, \w and|strong="G2532"\w* \w perseverance|strong="G5281"\w* \w in|strong="G1722"\w* Christ \w Jesus|strong="G2424"\w*, \w was|strong="G1096"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w isle|strong="G3520"\w* \w that|strong="G3588"\w* \w is|strong="G3588"\w* \w called|strong="G2564"\w* \w Patmos|strong="G3963"\w* \w because|strong="G1223"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w*’s \w Word|strong="G3056"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w testimony|strong="G3141"\w* \w of|strong="G3056"\w* \w Jesus|strong="G2424"\w* Christ. +\v 10 \w I|strong="G1473"\w* \w was|strong="G1096"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G3588"\w*’s \w day|strong="G2250"\w*, \w and|strong="G2532"\w* \w I|strong="G1473"\w* heard \w behind|strong="G3694"\w* \w me|strong="G1473"\w* \w a|strong="G1096"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, \w like|strong="G5613"\w* \w a|strong="G1096"\w* \w trumpet|strong="G4536"\w* +\v 11 \w saying|strong="G3004"\w*,\f + \fr 1:11 \ft TR adds “I am the Alpha and the Omega, the First and the Last.”\f* \wj “\+w What|strong="G3739"\+w* \+w you|strong="G3739"\+w* see, \+w write|strong="G1125"\+w* \+w in|strong="G1519"\+w* \+w a|strong="G2532"\+w* \+w book|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w send|strong="G3992"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w seven|strong="G2033"\+w* \+w assemblies|strong="G1577"\+w*:\wj*\f + \fr 1:11 \ft TR adds “which are in Asia”\f* \wj \+w to|strong="G1519"\+w* \+w Ephesus|strong="G2181"\+w*, \+w Smyrna|strong="G4667"\+w*, \+w Pergamum|strong="G4010"\+w*, \+w Thyatira|strong="G2363"\+w*, \+w Sardis|strong="G4554"\+w*, \+w Philadelphia|strong="G5359"\+w*, \+w and|strong="G2532"\+w* \+w to|strong="G1519"\+w* \+w Laodicea|strong="G2993"\+w*.”\wj* +\p +\v 12 \w I|strong="G1473"\w* \w turned|strong="G1994"\w* \w to|strong="G2532"\w* \w see|strong="G3708"\w* \w the|strong="G2532"\w* \w voice|strong="G5456"\w* \w that|strong="G3588"\w* \w spoke|strong="G2980"\w* \w with|strong="G3326"\w* \w me|strong="G1473"\w*. \w Having|strong="G2532"\w* \w turned|strong="G1994"\w*, \w I|strong="G1473"\w* \w saw|strong="G3708"\w* \w seven|strong="G2033"\w* \w golden|strong="G5552"\w* lamp stands. +\v 13 \w And|strong="G2532"\w* \w among|strong="G1722"\w* \w the|strong="G1722"\w* lamp stands \w was|strong="G3588"\w* \w one|strong="G3588"\w* \w like|strong="G3664"\w* \w a|strong="G2532"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w man|strong="G5207"\w*,\x + \xo 1:13 \xt Daniel 7:13 \x* \w clothed|strong="G1746"\w* \w with|strong="G1722"\w* \w a|strong="G2532"\w* \w robe|strong="G4158"\w* \w reaching|strong="G4158"\w* down \w to|strong="G4314"\w* \w his|strong="G1722"\w* \w feet|strong="G4158"\w*, \w and|strong="G2532"\w* \w with|strong="G1722"\w* \w a|strong="G2532"\w* \w golden|strong="G5552"\w* \w sash|strong="G2223"\w* \w around|strong="G4314"\w* \w his|strong="G1722"\w* \w chest|strong="G3149"\w*. +\v 14 \w His|strong="G2532"\w* \w head|strong="G2776"\w* \w and|strong="G2532"\w* \w his|strong="G2532"\w* \w hair|strong="G2359"\w* \w were|strong="G3588"\w* \w white|strong="G3022"\w* \w as|strong="G5613"\w* \w white|strong="G3022"\w* \w wool|strong="G2053"\w*, \w like|strong="G5613"\w* \w snow|strong="G5510"\w*. \w His|strong="G2532"\w* \w eyes|strong="G3788"\w* \w were|strong="G3588"\w* \w like|strong="G5613"\w* \w a|strong="G5613"\w* \w flame|strong="G5395"\w* \w of|strong="G2532"\w* \w fire|strong="G4442"\w*. +\v 15 \w His|strong="G1722"\w* \w feet|strong="G4228"\w* \w were|strong="G3588"\w* \w like|strong="G5613"\w* \w burnished|strong="G5474"\w* \w brass|strong="G5474"\w*, \w as|strong="G5613"\w* \w if|strong="G5613"\w* \w it|strong="G2532"\w* \w had|strong="G2532"\w* \w been|strong="G2532"\w* \w refined|strong="G4448"\w* \w in|strong="G1722"\w* \w a|strong="G5613"\w* \w furnace|strong="G2575"\w*. \w His|strong="G1722"\w* \w voice|strong="G5456"\w* \w was|strong="G3588"\w* \w like|strong="G5613"\w* \w the|strong="G1722"\w* \w voice|strong="G5456"\w* \w of|strong="G2532"\w* \w many|strong="G4183"\w* \w waters|strong="G5204"\w*. +\v 16 \w He|strong="G2532"\w* \w had|strong="G2192"\w* \w seven|strong="G2033"\w* stars \w in|strong="G1722"\w* \w his|strong="G1722"\w* \w right|strong="G1188"\w* \w hand|strong="G5495"\w*. \w Out|strong="G1537"\w* \w of|strong="G1537"\w* \w his|strong="G1722"\w* \w mouth|strong="G4750"\w* \w proceeded|strong="G1607"\w* \w a|strong="G2192"\w* \w sharp|strong="G3691"\w* \w two-edged|strong="G1366"\w* \w sword|strong="G4501"\w*. \w His|strong="G1722"\w* \w face|strong="G4750"\w* \w was|strong="G3588"\w* \w like|strong="G5613"\w* \w the|strong="G1722"\w* \w sun|strong="G2246"\w* \w shining|strong="G5316"\w* \w at|strong="G1722"\w* \w its|strong="G1537"\w* brightest. +\v 17 \w When|strong="G3753"\w* \w I|strong="G1473"\w* \w saw|strong="G3708"\w* \w him|strong="G3588"\w*, \w I|strong="G1473"\w* \w fell|strong="G4098"\w* \w at|strong="G1909"\w* \w his|strong="G1909"\w* \w feet|strong="G4228"\w* \w like|strong="G5613"\w* \w a|strong="G5613"\w* \w dead|strong="G3498"\w* \w man|strong="G3361"\w*. +\p \w He|strong="G2532"\w* \w laid|strong="G5087"\w* \w his|strong="G1909"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* \w on|strong="G1909"\w* \w me|strong="G1473"\w*, \w saying|strong="G3004"\w*, \wj “Don’\+w t|strong="G3588"\+w* \+w be|strong="G1510"\+w* \+w afraid|strong="G5399"\+w*. \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w first|strong="G4413"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w last|strong="G2078"\+w*, \wj* +\v 18 \wj \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Living|strong="G2198"\+w* \+w one|strong="G3588"\+w*. \+w I|strong="G2532"\+w* \+w was|strong="G1510"\+w* \+w dead|strong="G3498"\+w*, \+w and|strong="G2532"\+w* \+w behold|strong="G2400"\+w*, \+w I|strong="G2532"\+w* \+w am|strong="G1510"\+w* \+w alive|strong="G2198"\+w* \+w forever|strong="G1519"\+w* \+w and|strong="G2532"\+w* \+w ever|strong="G1519"\+w*. Amen. \+w I|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w the|strong="G2532"\+w* \+w keys|strong="G2807"\+w* \+w of|strong="G2532"\+w* \+w Death|strong="G2288"\+w* \+w and|strong="G2532"\+w* \+w of|strong="G2532"\+w* Hades.\wj*\f + \fr 1:18 \ft or, Hell\f* +\v 19 \wj \+w Write|strong="G1125"\+w* \+w therefore|strong="G3767"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3778"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G3739"\+w* \+w have|strong="G2532"\+w* \+w seen|strong="G3708"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3778"\+w* \+w which|strong="G3739"\+w* \+w are|strong="G1510"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3778"\+w* \+w which|strong="G3739"\+w* \+w will|strong="G3195"\+w* \+w happen|strong="G1096"\+w* \+w hereafter|strong="G3326"\+w*. \wj* +\v 20 \wj \+w The|strong="G2532"\+w* \+w mystery|strong="G3466"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w seven|strong="G2033"\+w* stars \+w which|strong="G3739"\+w* \+w you|strong="G3739"\+w* \+w saw|strong="G3708"\+w* \+w in|strong="G1909"\+w* \+w my|strong="G3708"\+w* \+w right|strong="G1188"\+w* \+w hand|strong="G1188"\+w*, \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w seven|strong="G2033"\+w* \+w golden|strong="G5552"\+w* lamp stands \+w is|strong="G1510"\+w* \+w this|strong="G3588"\+w*: \+w The|strong="G2532"\+w* \+w seven|strong="G2033"\+w* stars \+w are|strong="G1510"\+w* \+w the|strong="G2532"\+w* angels\wj*\f + \fr 1:20 \ft or, messengers (here and wherever angels are mentioned)\f* \wj \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w seven|strong="G2033"\+w* \+w assemblies|strong="G1577"\+w*. \+w The|strong="G2532"\+w* \+w seven|strong="G2033"\+w* lamp stands \+w are|strong="G1510"\+w* \+w seven|strong="G2033"\+w* \+w assemblies|strong="G1577"\+w*.\wj* +\c 2 +\p +\v 1 \wj “\+w To|strong="G3004"\+w* \+w the|strong="G1722"\+w* angel \+w of|strong="G1577"\+w* \+w the|strong="G1722"\+w* \+w assembly|strong="G1577"\+w* \+w in|strong="G1722"\+w* \+w Ephesus|strong="G2181"\+w* \+w write|strong="G1125"\+w*:\wj* +\p \wj “\+w He|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w holds|strong="G2902"\+w* \+w the|strong="G1722"\+w* \+w seven|strong="G2033"\+w* stars \+w in|strong="G1722"\+w* \+w his|strong="G1722"\+w* \+w right|strong="G1188"\+w* \+w hand|strong="G1188"\+w*, \+w he|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w walks|strong="G4043"\+w* \+w among|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w seven|strong="G2033"\+w* \+w golden|strong="G5552"\+w* lamp stands \+w says|strong="G3004"\+w* \+w these|strong="G3588"\+w* \+w things|strong="G3588"\+w*:\wj* +\p +\v 2 \wj “\+w I|strong="G2532"\+w* \+w know|strong="G1492"\+w* \+w your|strong="G2532"\+w* \+w works|strong="G2041"\+w*, \+w and|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w toil|strong="G2873"\+w* \+w and|strong="G2532"\+w* \+w perseverance|strong="G5281"\+w*, \+w and|strong="G2532"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w can|strong="G1410"\+w*’\+w t|strong="G3588"\+w* tolerate \+w evil|strong="G2556"\+w* \+w men|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w tested|strong="G3985"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w call|strong="G3004"\+w* \+w themselves|strong="G1438"\+w* apostles, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w not|strong="G3756"\+w*, \+w and|strong="G2532"\+w* \+w found|strong="G2147"\+w* \+w them|strong="G3588"\+w* \+w false|strong="G5571"\+w*. \wj* +\v 3 \wj \+w You|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w perseverance|strong="G5281"\+w* \+w and|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w endured|strong="G5281"\+w* \+w for|strong="G1223"\+w* \+w my|strong="G1473"\+w* \+w name|strong="G3686"\+w*’\+w s|strong="G2192"\+w* \+w sake|strong="G1223"\+w*, \+w and|strong="G2532"\+w* \+w have|strong="G2192"\+w* \wj*\f + \fr 2:3 \ft TR adds “have labored and”\f* \wj \+w not|strong="G3756"\+w* \+w grown|strong="G2872"\+w* \+w weary|strong="G2872"\+w*. \wj* +\v 4 \wj \+w But|strong="G3588"\+w* \+w I|strong="G3754"\+w* \+w have|strong="G2192"\+w* \+w this|strong="G3588"\+w* \+w against|strong="G2596"\+w* \+w you|strong="G4771"\+w*, \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w* left \+w your|strong="G2192"\+w* \+w first|strong="G4413"\+w* love. \wj* +\v 5 \wj \+w Remember|strong="G3421"\+w* \+w therefore|strong="G3767"\+w* \+w from|strong="G1537"\+w* \+w where|strong="G4159"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2532"\+w* \+w fallen|strong="G4098"\+w*, \+w and|strong="G2532"\+w* \+w repent|strong="G3340"\+w* \+w and|strong="G2532"\+w* \+w do|strong="G4160"\+w* \+w the|strong="G2532"\+w* \+w first|strong="G4413"\+w* \+w works|strong="G2041"\+w*; \+w or|strong="G2532"\+w* \+w else|strong="G3361"\+w* \+w I|strong="G2532"\+w* \+w am|strong="G2532"\+w* \+w coming|strong="G2064"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G4771"\+w* swiftly, \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w move|strong="G2795"\+w* \+w your|strong="G1437"\+w* lamp stand \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w its|strong="G1537"\+w* \+w place|strong="G5117"\+w*, \+w unless|strong="G1437"\+w* \+w you|strong="G4771"\+w* \+w repent|strong="G3340"\+w*. \wj* +\v 6 \wj \+w But|strong="G3588"\+w* \+w this|strong="G3778"\+w* \+w you|strong="G3739"\+w* \+w have|strong="G2192"\+w*, \+w that|strong="G3754"\+w* \+w you|strong="G3739"\+w* \+w hate|strong="G3404"\+w* \+w the|strong="G3588"\+w* \+w works|strong="G2041"\+w* \+w of|strong="G2041"\+w* \+w the|strong="G3588"\+w* \+w Nicolaitans|strong="G3531"\+w*, \+w which|strong="G3739"\+w* \+w I|strong="G3739"\+w* \+w also|strong="G2504"\+w* \+w hate|strong="G3404"\+w*. \wj* +\v 7 \wj \+w He|strong="G3739"\+w* \+w who|strong="G3739"\+w* \+w has|strong="G2192"\+w* \+w an|strong="G2192"\+w* \+w ear|strong="G3775"\+w*, \+w let|strong="G1510"\+w* \+w him|strong="G3588"\+w* \+w hear|strong="G5101"\+w* \+w what|strong="G5101"\+w* \+w the|strong="G1722"\+w* \+w Spirit|strong="G4151"\+w* \+w says|strong="G3004"\+w* \+w to|strong="G3004"\+w* \+w the|strong="G1722"\+w* \+w assemblies|strong="G1577"\+w*. \+w To|strong="G3004"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3739"\+w* \+w overcomes|strong="G3528"\+w* \+w I|strong="G3739"\+w* \+w will|strong="G2316"\+w* \+w give|strong="G1325"\+w* \+w to|strong="G3004"\+w* \+w eat|strong="G2068"\+w* \+w from|strong="G1537"\+w* \+w the|strong="G1722"\+w* \+w tree|strong="G3586"\+w* \+w of|strong="G1537"\+w* \+w life|strong="G2222"\+w*, \+w which|strong="G3739"\+w* \+w is|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w Paradise|strong="G3857"\+w* \+w of|strong="G1537"\+w* \+w my|strong="G1722"\+w* \+w God|strong="G2316"\+w*.\wj* +\p +\v 8 \wj “\+w To|strong="G2532"\+w* \+w the|strong="G1722"\+w* angel \+w of|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w assembly|strong="G1577"\+w* \+w in|strong="G1722"\+w* \+w Smyrna|strong="G4667"\+w* \+w write|strong="G1125"\+w*:\wj* +\p \wj “\+w The|strong="G1722"\+w* \+w first|strong="G4413"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w last|strong="G2078"\+w*, \+w who|strong="G3739"\+w* \+w was|strong="G1096"\+w* \+w dead|strong="G3498"\+w*, \+w and|strong="G2532"\+w* \+w has|strong="G3739"\+w* \+w come|strong="G1096"\+w* \+w to|strong="G2532"\+w* \+w life|strong="G2198"\+w* \+w says|strong="G3004"\+w* \+w these|strong="G3739"\+w* \+w things|strong="G3588"\+w*:\wj* +\p +\v 9 \wj “\+w I|strong="G2532"\+w* \+w know|strong="G1492"\+w* \+w your|strong="G2532"\+w* works, oppression, \+w and|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w poverty|strong="G4432"\+w* (\+w but|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w are|strong="G1510"\+w* \+w rich|strong="G4145"\+w*), \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* blasphemy \+w of|strong="G1537"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w say|strong="G3004"\+w* \+w they|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w Jews|strong="G2453"\+w*, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w not|strong="G3756"\+w*, \+w but|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w a|strong="G2532"\+w* \+w synagogue|strong="G4864"\+w* \+w of|strong="G1537"\+w* \+w Satan|strong="G4567"\+w*. \wj* +\v 10 \wj Don’\+w t|strong="G3588"\+w* \+w be|strong="G1096"\+w* \+w afraid|strong="G5399"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3588"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G5210"\+w* \+w are|strong="G3588"\+w* \+w about|strong="G3195"\+w* \+w to|strong="G1519"\+w* \+w suffer|strong="G3958"\+w*. \+w Behold|strong="G2400"\+w*, \+w the|strong="G2532"\+w* \+w devil|strong="G1228"\+w* \+w is|strong="G3588"\+w* \+w about|strong="G3195"\+w* \+w to|strong="G1519"\+w* throw \+w some|strong="G3739"\+w* \+w of|strong="G1537"\+w* \+w you|strong="G5210"\+w* \+w into|strong="G1519"\+w* \+w prison|strong="G5438"\+w*, \+w that|strong="G2443"\+w* \+w you|strong="G5210"\+w* \+w may|strong="G2532"\+w* \+w be|strong="G1096"\+w* \+w tested|strong="G3985"\+w*; \+w and|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w will|strong="G3195"\+w* \+w have|strong="G2192"\+w* oppression \+w for|strong="G1519"\+w* \+w ten|strong="G1176"\+w* \+w days|strong="G2250"\+w*. \+w Be|strong="G1096"\+w* \+w faithful|strong="G4103"\+w* \+w to|strong="G1519"\+w* \+w death|strong="G2288"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G3739"\+w* \+w will|strong="G3195"\+w* \+w give|strong="G1325"\+w* \+w you|strong="G5210"\+w* \+w the|strong="G2532"\+w* \+w crown|strong="G4735"\+w* \+w of|strong="G1537"\+w* \+w life|strong="G2222"\+w*. \wj* +\v 11 \wj \+w He|strong="G3588"\+w* \+w who|strong="G5101"\+w* \+w has|strong="G2192"\+w* \+w an|strong="G2192"\+w* \+w ear|strong="G3775"\+w*, \+w let|strong="G2192"\+w* \+w him|strong="G3588"\+w* \+w hear|strong="G5101"\+w* \+w what|strong="G5101"\+w* \+w the|strong="G1537"\+w* \+w Spirit|strong="G4151"\+w* \+w says|strong="G3004"\+w* \+w to|strong="G3004"\+w* \+w the|strong="G1537"\+w* \+w assemblies|strong="G1577"\+w*. \+w He|strong="G3588"\+w* \+w who|strong="G5101"\+w* \+w overcomes|strong="G3528"\+w* won’\+w t|strong="G3588"\+w* \+w be|strong="G3756"\+w* harmed \+w by|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w second|strong="G1208"\+w* \+w death|strong="G2288"\+w*.\wj* +\p +\v 12 \wj “\+w To|strong="G2532"\+w* \+w the|strong="G1722"\+w* angel \+w of|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w assembly|strong="G1577"\+w* \+w in|strong="G1722"\+w* \+w Pergamum|strong="G4010"\+w* \+w write|strong="G1125"\+w*:\wj* +\p \wj “\+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w has|strong="G2192"\+w* \+w the|strong="G1722"\+w* \+w sharp|strong="G3691"\+w* \+w two-edged|strong="G1366"\+w* \+w sword|strong="G4501"\+w* \+w says|strong="G3004"\+w* \+w these|strong="G3588"\+w* \+w things|strong="G3588"\+w*:\wj* +\p +\v 13 \wj “\+w I|strong="G1473"\+w* \+w know|strong="G1492"\+w* \+w your|strong="G2532"\+w* works \+w and|strong="G2532"\+w* \+w where|strong="G3699"\+w* \+w you|strong="G5210"\+w* \+w dwell|strong="G2730"\+w*, \+w where|strong="G3699"\+w* \+w Satan|strong="G4567"\+w*’s \+w throne|strong="G2362"\+w* \+w is|strong="G3588"\+w*. \+w You|strong="G5210"\+w* \+w hold|strong="G2902"\+w* firmly \+w to|strong="G2532"\+w* \+w my|strong="G1722"\+w* \+w name|strong="G3686"\+w*, \+w and|strong="G2532"\+w* didn’\+w t|strong="G3588"\+w* \+w deny|strong="G3588"\+w* \+w my|strong="G1722"\+w* \+w faith|strong="G4102"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w days|strong="G2250"\+w* \+w of|strong="G2250"\+w* Antipas \+w my|strong="G1722"\+w* \+w witness|strong="G3144"\+w*, \+w my|strong="G1722"\+w* \+w faithful|strong="G4103"\+w* \+w one|strong="G3739"\+w*, \+w who|strong="G3739"\+w* \+w was|strong="G3588"\+w* killed \+w among|strong="G1722"\+w* \+w you|strong="G5210"\+w*, \+w where|strong="G3699"\+w* \+w Satan|strong="G4567"\+w* \+w dwells|strong="G2730"\+w*. \wj* +\v 14 \wj \+w But|strong="G2532"\+w* \+w I|strong="G3739"\+w* \+w have|strong="G2192"\+w* \+w a|strong="G2192"\+w* \+w few|strong="G3641"\+w* \+w things|strong="G3588"\+w* \+w against|strong="G2596"\+w* \+w you|strong="G4771"\+w*, \+w because|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2192"\+w* \+w there|strong="G1563"\+w* \+w some|strong="G3739"\+w* \+w who|strong="G3739"\+w* \+w hold|strong="G2902"\+w* \+w the|strong="G2532"\+w* \+w teaching|strong="G1321"\+w* \+w of|strong="G5207"\+w* Balaam, \+w who|strong="G3739"\+w* \+w taught|strong="G1321"\+w* Balak \+w to|strong="G2532"\+w* throw \+w a|strong="G2192"\+w* \+w stumbling|strong="G4625"\+w* \+w block|strong="G4625"\+w* \+w before|strong="G1799"\+w* \+w the|strong="G2532"\+w* \+w children|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w Israel|strong="G2474"\+w*, \+w to|strong="G2532"\+w* \+w eat|strong="G2068"\+w* \+w things|strong="G3588"\+w* \+w sacrificed|strong="G1494"\+w* \+w to|strong="G2532"\+w* \+w idols|strong="G1494"\+w*, \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w commit|strong="G4203"\+w* sexual \+w immorality|strong="G4203"\+w*. \wj* +\v 15 \wj \+w So|strong="G3779"\+w* \+w also|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w likewise|strong="G3668"\+w* \+w have|strong="G2192"\+w* \+w some|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w hold|strong="G2902"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w teaching|strong="G1322"\+w* \+w of|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Nicolaitans|strong="G3531"\+w*.\wj*\f + \fr 2:15 \ft TR reads “which I hate” instead of “likewise”\f* +\v 16 \wj \+w Repent|strong="G3340"\+w* \+w therefore|strong="G3767"\+w*, \+w or|strong="G2532"\+w* \+w else|strong="G3361"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* \+w coming|strong="G2064"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w quickly|strong="G5035"\+w* \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w make|strong="G2532"\+w* \+w war|strong="G4170"\+w* \+w against|strong="G3326"\+w* \+w them|strong="G3588"\+w* \+w with|strong="G3326"\+w* \+w the|strong="G1722"\+w* \+w sword|strong="G4501"\+w* \+w of|strong="G2532"\+w* \+w my|strong="G1722"\+w* \+w mouth|strong="G4750"\+w*. \wj* +\v 17 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3739"\+w* \+w has|strong="G2192"\+w* \+w an|strong="G2192"\+w* \+w ear|strong="G3775"\+w*, \+w let|strong="G2983"\+w* \+w him|strong="G3588"\+w* \+w hear|strong="G5101"\+w* \+w what|strong="G5101"\+w* \+w the|strong="G2532"\+w* \+w Spirit|strong="G4151"\+w* \+w says|strong="G3004"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w assemblies|strong="G1577"\+w*. \+w To|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3739"\+w* \+w overcomes|strong="G3528"\+w*, \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w I|strong="G3739"\+w* \+w will|strong="G5101"\+w* \+w give|strong="G1325"\+w* \+w of|strong="G4151"\+w* \+w the|strong="G2532"\+w* \+w hidden|strong="G2928"\+w* \+w manna|strong="G3131"\+w*, \wj*\f + \fr 2:17 \ft Manna is supernatural food, named after the Hebrew for “What is it?”. See Exodus 11:7-9.\f* \wj \+w and|strong="G2532"\+w* \+w I|strong="G3739"\+w* \+w will|strong="G5101"\+w* \+w give|strong="G1325"\+w* \+w him|strong="G3588"\+w* \+w a|strong="G2192"\+w* \+w white|strong="G3022"\+w* \+w stone|strong="G5586"\+w*, \+w and|strong="G2532"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w stone|strong="G5586"\+w* \+w a|strong="G2192"\+w* \+w new|strong="G2537"\+w* \+w name|strong="G3686"\+w* \+w written|strong="G1125"\+w* \+w which|strong="G3739"\+w* \+w no|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w knows|strong="G1492"\+w* \+w but|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3739"\+w* \+w receives|strong="G2983"\+w* \+w it|strong="G2532"\+w*.\wj* +\p +\v 18 \wj “\+w To|strong="G2532"\+w* \+w the|strong="G1722"\+w* angel \+w of|strong="G5207"\+w* \+w the|strong="G1722"\+w* \+w assembly|strong="G1577"\+w* \+w in|strong="G1722"\+w* \+w Thyatira|strong="G2363"\+w* \+w write|strong="G1125"\+w*:\wj* +\p \wj “\+w The|strong="G1722"\+w* \+w Son|strong="G5207"\+w* \+w of|strong="G5207"\+w* \+w God|strong="G2316"\+w*, \+w who|strong="G3588"\+w* \+w has|strong="G2192"\+w* \+w his|strong="G1722"\+w* \+w eyes|strong="G3788"\+w* \+w like|strong="G5613"\+w* \+w a|strong="G2192"\+w* \+w flame|strong="G5395"\+w* \+w of|strong="G5207"\+w* \+w fire|strong="G4442"\+w*, \+w and|strong="G2532"\+w* \+w his|strong="G1722"\+w* \+w feet|strong="G4228"\+w* \+w are|strong="G3588"\+w* \+w like|strong="G5613"\+w* \+w burnished|strong="G5474"\+w* \+w brass|strong="G5474"\+w*, \+w says|strong="G3004"\+w* \+w these|strong="G3588"\+w* \+w things|strong="G3588"\+w*:\wj* +\p +\v 19 \wj “\+w I|strong="G2532"\+w* \+w know|strong="G1492"\+w* \+w your|strong="G2532"\+w* \+w works|strong="G2041"\+w*, \+w your|strong="G2532"\+w* love, \+w faith|strong="G4102"\+w*, \+w service|strong="G1248"\+w*, \+w patient|strong="G5281"\+w* \+w endurance|strong="G5281"\+w*, \+w and|strong="G2532"\+w* \+w that|strong="G3588"\+w* \+w your|strong="G2532"\+w* \+w last|strong="G2078"\+w* \+w works|strong="G2041"\+w* \+w are|strong="G3588"\+w* \+w more|strong="G4119"\+w* \+w than|strong="G4183"\+w* \+w the|strong="G2532"\+w* \+w first|strong="G4413"\+w*. \wj* +\v 20 \wj \+w But|strong="G2532"\+w* \+w I|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w this|strong="G3588"\+w* \+w against|strong="G2596"\+w* \+w you|strong="G4771"\+w*, \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w* tolerate \+w your|strong="G2192"\+w*\wj*\f + \fr 2:20 \ft TR, NU read “that” instead of “your”\f* \wj \+w woman|strong="G1135"\+w* \+w Jezebel|strong="G2403"\+w*, \+w who|strong="G3588"\+w* \+w calls|strong="G3004"\+w* \+w herself|strong="G1438"\+w* \+w a|strong="G2192"\+w* \+w prophetess|strong="G4398"\+w*. \+w She|strong="G2532"\+w* \+w teaches|strong="G1321"\+w* \+w and|strong="G2532"\+w* seduces \+w my|strong="G1699"\+w* \+w servants|strong="G1401"\+w* \+w to|strong="G2532"\+w* \+w commit|strong="G4203"\+w* sexual \+w immorality|strong="G4203"\+w* \+w and|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w eat|strong="G2068"\+w* \+w things|strong="G3588"\+w* \+w sacrificed|strong="G1494"\+w* \+w to|strong="G2532"\+w* \+w idols|strong="G1494"\+w*. \wj* +\v 21 \wj \+w I|strong="G2532"\+w* \+w gave|strong="G1325"\+w* \+w her|strong="G1325"\+w* \+w time|strong="G5550"\+w* \+w to|strong="G2443"\+w* \+w repent|strong="G3340"\+w*, \+w but|strong="G2532"\+w* \+w she|strong="G2532"\+w* refuses \+w to|strong="G2443"\+w* \+w repent|strong="G3340"\+w* \+w of|strong="G1537"\+w* \+w her|strong="G1325"\+w* \+w sexual|strong="G4202"\+w* \+w immorality|strong="G4202"\+w*. \wj* +\v 22 \wj \+w Behold|strong="G2400"\+w*, \+w I|strong="G2532"\+w* \+w will|strong="G2532"\+w* throw \+w her|strong="G1437"\+w* \+w and|strong="G2532"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w commit|strong="G3431"\+w* \+w adultery|strong="G3431"\+w* \+w with|strong="G3326"\+w* \+w her|strong="G1437"\+w* \+w into|strong="G1519"\+w* \+w a|strong="G2532"\+w* \+w bed|strong="G2825"\+w* \+w of|strong="G1537"\+w* \+w great|strong="G3173"\+w* oppression, \+w unless|strong="G1437"\+w* \+w they|strong="G2532"\+w* \+w repent|strong="G3340"\+w* \+w of|strong="G1537"\+w* \+w her|strong="G1437"\+w* \+w works|strong="G2041"\+w*. \wj* +\v 23 \wj \+w I|strong="G1473"\+w* \+w will|strong="G1510"\+w* kill \+w her|strong="G1325"\+w* \+w children|strong="G5043"\+w* \+w with|strong="G1722"\+w* \+w Death|strong="G2288"\+w*, \+w and|strong="G2532"\+w* \+w all|strong="G3956"\+w* \+w the|strong="G1722"\+w* \+w assemblies|strong="G1577"\+w* \+w will|strong="G1510"\+w* \+w know|strong="G1097"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w searches|strong="G2045"\+w* \+w the|strong="G1722"\+w* \+w minds|strong="G2588"\+w* \+w and|strong="G2532"\+w* \+w hearts|strong="G2588"\+w*. \+w I|strong="G1473"\+w* \+w will|strong="G1510"\+w* \+w give|strong="G1325"\+w* \+w to|strong="G2532"\+w* \+w each|strong="G1538"\+w* \+w one|strong="G1538"\+w* \+w of|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w according|strong="G2596"\+w* \+w to|strong="G2532"\+w* \+w your|strong="G2532"\+w* \+w deeds|strong="G2041"\+w*. \wj* +\v 24 \wj \+w But|strong="G1161"\+w* \+w to|strong="G1909"\+w* \+w you|strong="G5210"\+w* \+w I|strong="G1161"\+w* \+w say|strong="G3004"\+w*, \+w to|strong="G1909"\+w* \+w the|strong="G1722"\+w* \+w rest|strong="G3062"\+w* \+w who|strong="G3588"\+w* \+w are|strong="G3588"\+w* \+w in|strong="G1722"\+w* \+w Thyatira|strong="G2363"\+w*—\+w as|strong="G5613"\+w* \+w many|strong="G3745"\+w* \+w as|strong="G5613"\+w* don’\+w t|strong="G3588"\+w* \+w have|strong="G2192"\+w* \+w this|strong="G3778"\+w* \+w teaching|strong="G1322"\+w*, \+w who|strong="G3588"\+w* don’\+w t|strong="G3588"\+w* \+w know|strong="G1097"\+w* \+w what|strong="G3588"\+w* \+w some|strong="G3588"\+w* \+w call|strong="G3004"\+w* ‘\+w the|strong="G1722"\+w* deep \+w things|strong="G3778"\+w* \+w of|strong="G1909"\+w* \+w Satan|strong="G4567"\+w*’—\+w to|strong="G1909"\+w* \+w you|strong="G5210"\+w* \+w I|strong="G1161"\+w* \+w say|strong="G3004"\+w*, \+w I|strong="G1161"\+w* \+w am|strong="G2192"\+w* \+w not|strong="G3756"\+w* \+w putting|strong="G1722"\+w* \+w any|strong="G2192"\+w* \+w other|strong="G3062"\+w* burden \+w on|strong="G1909"\+w* \+w you|strong="G5210"\+w*. \wj* +\v 25 \wj \+w Nevertheless|strong="G4133"\+w*, \+w hold|strong="G2902"\+w* \+w that|strong="G3739"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G3739"\+w* \+w have|strong="G2192"\+w* firmly until \+w I|strong="G3739"\+w* \+w come|strong="G2240"\+w*. \wj* +\v 26 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w overcomes|strong="G3528"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w keeps|strong="G5083"\+w* \+w my|strong="G5083"\+w* \+w works|strong="G2041"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w end|strong="G5056"\+w*, \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w authority|strong="G1849"\+w* \+w over|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w nations|strong="G1484"\+w*. \wj* +\v 27 \wj \+w He|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w rule|strong="G4165"\+w* \+w them|strong="G3588"\+w* \+w with|strong="G1722"\+w* \+w a|strong="G5613"\+w* \+w rod|strong="G4464"\+w* \+w of|strong="G2532"\+w* \+w iron|strong="G4603"\+w*, shattering \+w them|strong="G3588"\+w* \+w like|strong="G5613"\+w* \+w clay|strong="G2764"\+w* pots,\wj*\x + \xo 2:27 \xt Psalms 2:9\x* \wj \+w as|strong="G5613"\+w* \+w I|strong="G1473"\+w* \+w also|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w received|strong="G2983"\+w* \+w of|strong="G2532"\+w* \+w my|strong="G1722"\+w* \+w Father|strong="G3962"\+w*; \wj* +\v 28 \wj \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w him|strong="G3588"\+w* \+w the|strong="G2532"\+w* \+w morning|strong="G4407"\+w* star. \wj* +\v 29 \wj \+w He|strong="G3588"\+w* \+w who|strong="G5101"\+w* \+w has|strong="G2192"\+w* \+w an|strong="G2192"\+w* \+w ear|strong="G3775"\+w*, \+w let|strong="G2192"\+w* \+w him|strong="G3588"\+w* \+w hear|strong="G5101"\+w* \+w what|strong="G5101"\+w* \+w the|strong="G3588"\+w* \+w Spirit|strong="G4151"\+w* \+w says|strong="G3004"\+w* \+w to|strong="G3004"\+w* \+w the|strong="G3588"\+w* \+w assemblies|strong="G1577"\+w*.\wj* +\c 3 +\p +\v 1 \wj “\+w And|strong="G2532"\+w* \+w to|strong="G2532"\+w* \+w the|strong="G1722"\+w* angel \+w of|strong="G4151"\+w* \+w the|strong="G1722"\+w* \+w assembly|strong="G1577"\+w* \+w in|strong="G1722"\+w* \+w Sardis|strong="G4554"\+w* \+w write|strong="G1125"\+w*:\wj* +\p \wj “\+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w has|strong="G2192"\+w* \+w the|strong="G1722"\+w* \+w seven|strong="G2033"\+w* \+w Spirits|strong="G4151"\+w* \+w of|strong="G4151"\+w* \+w God|strong="G2316"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w seven|strong="G2033"\+w* stars \+w says|strong="G3004"\+w* \+w these|strong="G3588"\+w* \+w things|strong="G3588"\+w*:\wj* +\p \wj “\+w I|strong="G2532"\+w* \+w know|strong="G1492"\+w* \+w your|strong="G2192"\+w* \+w works|strong="G2041"\+w*, \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2192"\+w* \+w a|strong="G2192"\+w* reputation \+w of|strong="G4151"\+w* \+w being|strong="G1510"\+w* \+w alive|strong="G2198"\+w*, \+w but|strong="G2532"\+w* \+w you|strong="G4771"\+w* \+w are|strong="G1510"\+w* \+w dead|strong="G3498"\+w*. \wj* +\v 2 \wj \+w Wake|strong="G1127"\+w* \+w up|strong="G2532"\+w* \+w and|strong="G2532"\+w* \+w strengthen|strong="G4741"\+w* \+w the|strong="G2532"\+w* \+w things|strong="G3588"\+w* \+w that|strong="G3739"\+w* \+w remain|strong="G1096"\+w*, \+w which|strong="G3739"\+w* \+w you|strong="G4771"\+w* \+w were|strong="G3588"\+w* \+w about|strong="G3195"\+w* \+w to|strong="G2532"\+w* throw away,\wj*\f + \fr 3:2 \ft NU & TR read “which were about to die” instead of “which you were about to throw away”.\f* \wj \+w for|strong="G1063"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* \+w found|strong="G2147"\+w* \+w no|strong="G3756"\+w* \+w works|strong="G2041"\+w* \+w of|strong="G2316"\+w* \+w yours|strong="G4771"\+w* perfected \+w before|strong="G1799"\+w* \+w my|strong="G1473"\+w* \+w God|strong="G2316"\+w*. \wj* +\v 3 \wj \+w Remember|strong="G3421"\+w* \+w therefore|strong="G3767"\+w* \+w how|strong="G4459"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2532"\+w* \+w received|strong="G2983"\+w* \+w and|strong="G2532"\+w* \+w heard|strong="G1097"\+w*. \+w Keep|strong="G5083"\+w* \+w it|strong="G2532"\+w* \+w and|strong="G2532"\+w* \+w repent|strong="G3340"\+w*. \+w If|strong="G1437"\+w* \+w therefore|strong="G3767"\+w* \+w you|strong="G4771"\+w* won’t \+w watch|strong="G1127"\+w*, \+w I|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w come|strong="G2240"\+w* \+w as|strong="G5613"\+w* \+w a|strong="G5613"\+w* \+w thief|strong="G2812"\+w*, \+w and|strong="G2532"\+w* \+w you|strong="G4771"\+w* won’t \+w know|strong="G1097"\+w* \+w what|strong="G4169"\+w* \+w hour|strong="G5610"\+w* \+w I|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w come|strong="G2240"\+w* \+w upon|strong="G1909"\+w* \+w you|strong="G4771"\+w*. \wj* +\v 4 \wj \+w Nevertheless|strong="G3756"\+w* \+w you|strong="G3739"\+w* \+w have|strong="G2192"\+w* \+w a|strong="G2192"\+w* \+w few|strong="G3641"\+w* \+w names|strong="G3686"\+w* \+w in|strong="G1722"\+w* \+w Sardis|strong="G4554"\+w* \+w that|strong="G3754"\+w* didn’\+w t|strong="G3588"\+w* defile \+w their|strong="G2532"\+w* \+w garments|strong="G2440"\+w*. \+w They|strong="G2532"\+w* \+w will|strong="G1510"\+w* \+w walk|strong="G4043"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1473"\+w* \+w in|strong="G1722"\+w* \+w white|strong="G3022"\+w*, \+w for|strong="G3754"\+w* \+w they|strong="G2532"\+w* \+w are|strong="G1510"\+w* worthy. \wj* +\v 5 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w overcomes|strong="G3528"\+w* \+w will|strong="G2532"\+w* \+w be|strong="G2532"\+w* \+w arrayed|strong="G4016"\+w* \+w in|strong="G1722"\+w* \+w white|strong="G3022"\+w* \+w garments|strong="G2440"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w in|strong="G1722"\+w* \+w no|strong="G3756"\+w* \+w way|strong="G3779"\+w* blot \+w his|strong="G1722"\+w* \+w name|strong="G3686"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1722"\+w* \+w book|strong="G3588"\+w* \+w of|strong="G1537"\+w* \+w life|strong="G2222"\+w*, \+w and|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w confess|strong="G3670"\+w* \+w his|strong="G1722"\+w* \+w name|strong="G3686"\+w* \+w before|strong="G1799"\+w* \+w my|strong="G1722"\+w* \+w Father|strong="G3962"\+w*, \+w and|strong="G2532"\+w* \+w before|strong="G1799"\+w* \+w his|strong="G1722"\+w* angels. \wj* +\v 6 \wj \+w He|strong="G3588"\+w* \+w who|strong="G5101"\+w* \+w has|strong="G2192"\+w* \+w an|strong="G2192"\+w* \+w ear|strong="G3775"\+w*, \+w let|strong="G2192"\+w* \+w him|strong="G3588"\+w* \+w hear|strong="G5101"\+w* \+w what|strong="G5101"\+w* \+w the|strong="G3588"\+w* \+w Spirit|strong="G4151"\+w* \+w says|strong="G3004"\+w* \+w to|strong="G3004"\+w* \+w the|strong="G3588"\+w* \+w assemblies|strong="G1577"\+w*.\wj* +\p +\v 7 \wj “\+w To|strong="G2532"\+w* \+w the|strong="G1722"\+w* angel \+w of|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w assembly|strong="G1577"\+w* \+w in|strong="G1722"\+w* \+w Philadelphia|strong="G5359"\+w* \+w write|strong="G1125"\+w*:\wj* +\p \wj “\+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* holy, \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w true|strong="G3588"\+w*, \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w has|strong="G2192"\+w* \+w the|strong="G1722"\+w* \+w key|strong="G2807"\+w* \+w of|strong="G2532"\+w* \+w David|strong="G1138"\+w*, \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* opens \+w and|strong="G2532"\+w* \+w no|strong="G3762"\+w* \+w one|strong="G3762"\+w* \+w can|strong="G3004"\+w* \+w shut|strong="G2808"\+w*, \+w and|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w shuts|strong="G2808"\+w* \+w and|strong="G2532"\+w* \+w no|strong="G3762"\+w* \+w one|strong="G3762"\+w* opens, \+w says|strong="G3004"\+w* \+w these|strong="G3588"\+w* \+w things|strong="G3588"\+w*: \wj* +\p +\v 8 \wj “\+w I|strong="G1473"\+w* \+w know|strong="G1492"\+w* \+w your|strong="G2192"\+w* \+w works|strong="G2041"\+w* (\+w behold|strong="G2400"\+w*, \+w I|strong="G1473"\+w* \+w have|strong="G2192"\+w* \+w set|strong="G2532"\+w* \+w before|strong="G1799"\+w* \+w you|strong="G4771"\+w* \+w an|strong="G2192"\+w* open \+w door|strong="G2374"\+w*, \+w which|strong="G3739"\+w* \+w no|strong="G3756"\+w* \+w one|strong="G3762"\+w* \+w can|strong="G1410"\+w* \+w shut|strong="G2808"\+w*), \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2192"\+w* \+w a|strong="G2192"\+w* \+w little|strong="G3398"\+w* \+w power|strong="G1411"\+w*, \+w and|strong="G2532"\+w* \+w kept|strong="G5083"\+w* \+w my|strong="G5083"\+w* \+w word|strong="G3056"\+w*, \+w and|strong="G2532"\+w* didn’\+w t|strong="G3588"\+w* \+w deny|strong="G3588"\+w* \+w my|strong="G5083"\+w* \+w name|strong="G3686"\+w*. \wj* +\v 9 \wj \+w Behold|strong="G2400"\+w*, \+w I|strong="G1473"\+w* \+w make|strong="G4160"\+w* \+w some|strong="G3588"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w synagogue|strong="G4864"\+w* \+w of|strong="G1537"\+w* \+w Satan|strong="G4567"\+w*, \+w of|strong="G1537"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w say|strong="G3004"\+w* \+w they|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w Jews|strong="G2453"\+w*, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w are|strong="G1510"\+w* \+w not|strong="G3756"\+w*, \+w but|strong="G2532"\+w* \+w lie|strong="G5574"\+w*—\+w behold|strong="G2400"\+w*, \+w I|strong="G1473"\+w* \+w will|strong="G1510"\+w* \+w make|strong="G4160"\+w* \+w them|strong="G3588"\+w* \+w to|strong="G2443"\+w* \+w come|strong="G2240"\+w* \+w and|strong="G2532"\+w* \+w worship|strong="G4352"\+w* \+w before|strong="G1799"\+w* \+w your|strong="G2532"\+w* \+w feet|strong="G4228"\+w*, \+w and|strong="G2532"\+w* \+w to|strong="G2443"\+w* \+w know|strong="G1097"\+w* \+w that|strong="G3754"\+w* \+w I|strong="G1473"\+w* \+w have|strong="G2532"\+w* loved \+w you|strong="G4771"\+w*. \wj* +\v 10 \wj \+w Because|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w kept|strong="G5083"\+w* \+w my|strong="G5083"\+w* command \+w to|strong="G1909"\+w* endure, \+w I|strong="G1473"\+w* \+w also|strong="G2504"\+w* \+w will|strong="G3195"\+w* \+w keep|strong="G5083"\+w* \+w you|strong="G4771"\+w* \+w from|strong="G1537"\+w* \+w the|strong="G1537"\+w* \+w hour|strong="G5610"\+w* \+w of|strong="G1537"\+w* \+w testing|strong="G3985"\+w* \+w which|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w to|strong="G1909"\+w* \+w come|strong="G2064"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G1537"\+w* \+w whole|strong="G3650"\+w* \+w world|strong="G3625"\+w*, \+w to|strong="G1909"\+w* \+w test|strong="G3985"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w dwell|strong="G2730"\+w* \+w on|strong="G1909"\+w* \+w the|strong="G1537"\+w* \+w earth|strong="G1093"\+w*. \wj* +\v 11 \wj \+w I|strong="G3739"\+w* \+w am|strong="G2192"\+w* \+w coming|strong="G2064"\+w* \+w quickly|strong="G5035"\+w*! \+w Hold|strong="G2902"\+w* firmly \+w that|strong="G2443"\+w* \+w which|strong="G3739"\+w* \+w you|strong="G4771"\+w* \+w have|strong="G2192"\+w*, \+w so|strong="G2443"\+w* \+w that|strong="G2443"\+w* \+w no|strong="G3367"\+w* \+w one|strong="G3367"\+w* \+w takes|strong="G2983"\+w* \+w your|strong="G2192"\+w* \+w crown|strong="G4735"\+w*. \wj* +\v 12 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w overcomes|strong="G3528"\+w*, \+w I|strong="G1473"\+w* \+w will|strong="G2316"\+w* \+w make|strong="G4160"\+w* \+w him|strong="G3588"\+w* \+w a|strong="G2532"\+w* \+w pillar|strong="G4769"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w temple|strong="G3485"\+w* \+w of|strong="G1537"\+w* \+w my|strong="G1722"\+w* \+w God|strong="G2316"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2316"\+w* \+w go|strong="G1831"\+w* \+w out|strong="G1831"\+w* \+w from|strong="G1537"\+w* \+w there|strong="G2532"\+w* \+w no|strong="G3756"\+w* \+w more|strong="G2089"\+w*. \+w I|strong="G1473"\+w* \+w will|strong="G2316"\+w* \+w write|strong="G1125"\+w* \+w on|strong="G1909"\+w* \+w him|strong="G3588"\+w* \+w the|strong="G1722"\+w* \+w name|strong="G3686"\+w* \+w of|strong="G1537"\+w* \+w my|strong="G1722"\+w* \+w God|strong="G2316"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G1722"\+w* \+w name|strong="G3686"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G1722"\+w* \+w city|strong="G4172"\+w* \+w of|strong="G1537"\+w* \+w my|strong="G1722"\+w* \+w God|strong="G2316"\+w*, \+w the|strong="G1722"\+w* \+w new|strong="G2537"\+w* \+w Jerusalem|strong="G2419"\+w*, \+w which|strong="G3588"\+w* \+w comes|strong="G2597"\+w* \+w down|strong="G2597"\+w* \+w out|strong="G1831"\+w* \+w of|strong="G1537"\+w* \+w heaven|strong="G3772"\+w* \+w from|strong="G1537"\+w* \+w my|strong="G1722"\+w* \+w God|strong="G2316"\+w*, \+w and|strong="G2532"\+w* \+w my|strong="G1722"\+w* own \+w new|strong="G2537"\+w* \+w name|strong="G3686"\+w*. \wj* +\v 13 \wj \+w He|strong="G3588"\+w* \+w who|strong="G5101"\+w* \+w has|strong="G2192"\+w* \+w an|strong="G2192"\+w* \+w ear|strong="G3775"\+w*, \+w let|strong="G2192"\+w* \+w him|strong="G3588"\+w* \+w hear|strong="G5101"\+w* \+w what|strong="G5101"\+w* \+w the|strong="G3588"\+w* \+w Spirit|strong="G4151"\+w* \+w says|strong="G3004"\+w* \+w to|strong="G3004"\+w* \+w the|strong="G3588"\+w* \+w assemblies|strong="G1577"\+w*.\wj* +\p +\v 14 \wj “\+w To|strong="G2532"\+w* \+w the|strong="G1722"\+w* angel \+w of|strong="G2316"\+w* \+w the|strong="G1722"\+w* \+w assembly|strong="G1577"\+w* \+w in|strong="G1722"\+w* \+w Laodicea|strong="G2993"\+w* \+w write|strong="G1125"\+w*:\wj* +\p \wj “\+w The|strong="G1722"\+w* Amen, \+w the|strong="G1722"\+w* \+w Faithful|strong="G4103"\+w* \+w and|strong="G2532"\+w* \+w True|strong="G4103"\+w* \+w Witness|strong="G3144"\+w*, \+w the|strong="G1722"\+w* Beginning\wj*\f + \fr 3:14 \ft or, Source, or Head\f* \wj \+w of|strong="G2316"\+w* \+w God|strong="G2316"\+w*’s \+w creation|strong="G2937"\+w*, \+w says|strong="G3004"\+w* \+w these|strong="G3588"\+w* \+w things|strong="G3588"\+w*:\wj* +\p +\v 15 \wj “\+w I|strong="G3754"\+w* \+w know|strong="G1492"\+w* \+w your|strong="G3588"\+w* \+w works|strong="G2041"\+w*, \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w are|strong="G1510"\+w* \+w neither|strong="G3777"\+w* \+w cold|strong="G5593"\+w* \+w nor|strong="G3777"\+w* \+w hot|strong="G2200"\+w*. \+w I|strong="G3754"\+w* \+w wish|strong="G3785"\+w* \+w you|strong="G4771"\+w* \+w were|strong="G1510"\+w* \+w cold|strong="G5593"\+w* \+w or|strong="G2228"\+w* \+w hot|strong="G2200"\+w*. \wj* +\v 16 \wj \+w So|strong="G3779"\+w*, \+w because|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w are|strong="G1510"\+w* \+w lukewarm|strong="G5513"\+w*, \+w and|strong="G2532"\+w* \+w neither|strong="G3777"\+w* \+w hot|strong="G2200"\+w* \+w nor|strong="G3777"\+w* \+w cold|strong="G5593"\+w*, \+w I|strong="G1473"\+w* \+w will|strong="G3195"\+w* \+w vomit|strong="G1692"\+w* \+w you|strong="G4771"\+w* \+w out|strong="G1537"\+w* \+w of|strong="G1537"\+w* \+w my|strong="G1473"\+w* \+w mouth|strong="G4750"\+w*. \wj* +\v 17 \wj \+w Because|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w say|strong="G3004"\+w*, ‘\+w I|strong="G2532"\+w* \+w am|strong="G1510"\+w* \+w rich|strong="G4145"\+w*, \+w and|strong="G2532"\+w* \+w have|strong="G2192"\+w* gotten \+w riches|strong="G4147"\+w*, \+w and|strong="G2532"\+w* \+w have|strong="G2192"\+w* \+w need|strong="G5532"\+w* \+w of|strong="G2532"\+w* \+w nothing|strong="G3762"\+w*,’ \+w and|strong="G2532"\+w* don’\+w t|strong="G3588"\+w* \+w know|strong="G1492"\+w* \+w that|strong="G3754"\+w* \+w you|strong="G4771"\+w* \+w are|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w wretched|strong="G5005"\+w* \+w one|strong="G3762"\+w*, \+w miserable|strong="G1652"\+w*, \+w poor|strong="G4434"\+w*, \+w blind|strong="G5185"\+w*, \+w and|strong="G2532"\+w* \+w naked|strong="G1131"\+w*; \wj* +\v 18 \wj \+w I|strong="G1473"\+w* \+w counsel|strong="G4823"\+w* \+w you|strong="G4771"\+w* \+w to|strong="G2443"\+w* buy \+w from|strong="G1537"\+w* \+w me|strong="G1473"\+w* \+w gold|strong="G5553"\+w* \+w refined|strong="G4448"\+w* \+w by|strong="G1537"\+w* \+w fire|strong="G4442"\+w*, \+w that|strong="G2443"\+w* \+w you|strong="G4771"\+w* \+w may|strong="G2532"\+w* \+w become|strong="G4147"\+w* \+w rich|strong="G4147"\+w*; \+w and|strong="G2532"\+w* \+w white|strong="G3022"\+w* \+w garments|strong="G2440"\+w*, \+w that|strong="G2443"\+w* \+w you|strong="G4771"\+w* \+w may|strong="G2532"\+w* \+w clothe|strong="G4016"\+w* \+w yourself|strong="G4771"\+w*, \+w and|strong="G2532"\+w* \+w that|strong="G2443"\+w* \+w the|strong="G2532"\+w* shame \+w of|strong="G1537"\+w* \+w your|strong="G2532"\+w* \+w nakedness|strong="G1132"\+w* \+w may|strong="G2532"\+w* \+w not|strong="G3361"\+w* \+w be|strong="G2532"\+w* \+w revealed|strong="G5319"\+w*; \+w and|strong="G2532"\+w* \+w eye|strong="G3788"\+w* \+w salve|strong="G2854"\+w* \+w to|strong="G2443"\+w* \+w anoint|strong="G1472"\+w* \+w your|strong="G2532"\+w* \+w eyes|strong="G3788"\+w*, \+w that|strong="G2443"\+w* \+w you|strong="G4771"\+w* \+w may|strong="G2532"\+w* see. \wj* +\v 19 \wj \+w As|strong="G3745"\+w* \+w many|strong="G3745"\+w* \+w as|strong="G3745"\+w* \+w I|strong="G1473"\+w* \+w love|strong="G5368"\+w*, \+w I|strong="G1473"\+w* \+w reprove|strong="G1651"\+w* \+w and|strong="G2532"\+w* \+w chasten|strong="G3811"\+w*. \+w Be|strong="G2532"\+w* zealous \+w therefore|strong="G3767"\+w*, \+w and|strong="G2532"\+w* \+w repent|strong="G3340"\+w*. \wj* +\v 20 \wj \+w Behold|strong="G2400"\+w*, \+w I|strong="G1473"\+w* \+w stand|strong="G2476"\+w* \+w at|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w door|strong="G2374"\+w* \+w and|strong="G2532"\+w* \+w knock|strong="G2925"\+w*. \+w If|strong="G1437"\+w* \+w anyone|strong="G5100"\+w* hears \+w my|strong="G3708"\+w* \+w voice|strong="G5456"\+w* \+w and|strong="G2532"\+w* opens \+w the|strong="G2532"\+w* \+w door|strong="G2374"\+w*, \+w then|strong="G2532"\+w* \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w come|strong="G1525"\+w* \+w in|strong="G1909"\+w* \+w to|strong="G4314"\+w* \+w him|strong="G3588"\+w* \+w and|strong="G2532"\+w* \+w will|strong="G2532"\+w* \+w dine|strong="G1172"\+w* \+w with|strong="G3326"\+w* \+w him|strong="G3588"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1473"\+w*. \wj* +\v 21 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w overcomes|strong="G3528"\+w*, \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w to|strong="G2532"\+w* \+w sit|strong="G2523"\+w* \+w down|strong="G2523"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1325"\+w* \+w on|strong="G1722"\+w* \+w my|strong="G1722"\+w* \+w throne|strong="G2362"\+w*, \+w as|strong="G5613"\+w* \+w I|strong="G1473"\+w* \+w also|strong="G2532"\+w* \+w overcame|strong="G3528"\+w* \+w and|strong="G2532"\+w* \+w sat|strong="G2523"\+w* \+w down|strong="G2523"\+w* \+w with|strong="G3326"\+w* \+w my|strong="G1722"\+w* \+w Father|strong="G3962"\+w* \+w on|strong="G1722"\+w* \+w his|strong="G1722"\+w* \+w throne|strong="G2362"\+w*. \wj* +\v 22 \wj \+w He|strong="G3588"\+w* \+w who|strong="G5101"\+w* \+w has|strong="G2192"\+w* \+w an|strong="G2192"\+w* \+w ear|strong="G3775"\+w*, \+w let|strong="G2192"\+w* \+w him|strong="G3588"\+w* \+w hear|strong="G5101"\+w* \+w what|strong="G5101"\+w* \+w the|strong="G3588"\+w* \+w Spirit|strong="G4151"\+w* \+w says|strong="G3004"\+w* \+w to|strong="G3004"\+w* \+w the|strong="G3588"\+w* \+w assemblies|strong="G1577"\+w*.”\wj* +\c 4 +\p +\v 1 \w After|strong="G3326"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w I|strong="G1473"\w* \w looked|strong="G3708"\w* \w and|strong="G2532"\w* \w saw|strong="G3708"\w* \w a|strong="G1096"\w* \w door|strong="G2374"\w* opened \w in|strong="G1722"\w* \w heaven|strong="G3772"\w*; \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w first|strong="G4413"\w* \w voice|strong="G5456"\w* \w that|strong="G3739"\w* \w I|strong="G1473"\w* heard, \w like|strong="G5613"\w* \w a|strong="G1096"\w* \w trumpet|strong="G4536"\w* \w speaking|strong="G2980"\w* \w with|strong="G3326"\w* \w me|strong="G1473"\w*, \w was|strong="G1096"\w* \w one|strong="G3739"\w* \w saying|strong="G3004"\w*, “\w Come|strong="G1096"\w* \w up|strong="G1210"\w* \w here|strong="G5602"\w*, \w and|strong="G2532"\w* \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w show|strong="G1166"\w* \w you|strong="G4771"\w* \w the|strong="G1722"\w* \w things|strong="G3778"\w* \w which|strong="G3739"\w* \w must|strong="G1163"\w* \w happen|strong="G1096"\w* \w after|strong="G3326"\w* \w this|strong="G3778"\w*.” +\p +\v 2 \w Immediately|strong="G2112"\w* \w I|strong="G2532"\w* \w was|strong="G1096"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w*. \w Behold|strong="G2400"\w*, \w there|strong="G2532"\w* \w was|strong="G1096"\w* \w a|strong="G1096"\w* \w throne|strong="G2362"\w* \w set|strong="G2749"\w* \w in|strong="G1722"\w* \w heaven|strong="G3772"\w*, \w and|strong="G2532"\w* \w one|strong="G3588"\w* \w sitting|strong="G2521"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w throne|strong="G2362"\w* +\v 3 \w that|strong="G3588"\w* \w looked|strong="G2532"\w* \w like|strong="G3664"\w* \w a|strong="G2532"\w* \w jasper|strong="G2393"\w* \w stone|strong="G3037"\w* \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w sardius|strong="G4556"\w*. \w There|strong="G2532"\w* \w was|strong="G3588"\w* \w a|strong="G2532"\w* \w rainbow|strong="G2463"\w* \w around|strong="G2943"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w*, \w like|strong="G3664"\w* \w an|strong="G2532"\w* \w emerald|strong="G4664"\w* \w to|strong="G2532"\w* look \w at|strong="G3588"\w*. +\v 4 \w Around|strong="G1909"\w* \w the|strong="G1722"\w* \w throne|strong="G2362"\w* \w were|strong="G3588"\w* \w twenty-four|strong="G1501"\w* \w thrones|strong="G2362"\w*. \w On|strong="G1909"\w* \w the|strong="G1722"\w* \w thrones|strong="G2362"\w* \w were|strong="G3588"\w* \w twenty-four|strong="G1501"\w* \w elders|strong="G4245"\w* \w sitting|strong="G2521"\w*, \w dressed|strong="G4016"\w* \w in|strong="G1722"\w* \w white|strong="G3022"\w* \w garments|strong="G2440"\w*, \w with|strong="G1722"\w* \w crowns|strong="G4735"\w* \w of|strong="G2532"\w* \w gold|strong="G5552"\w* \w on|strong="G1909"\w* \w their|strong="G2532"\w* \w heads|strong="G2776"\w*. +\v 5 \w Out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w* \w proceed|strong="G1607"\w* lightnings, \w sounds|strong="G5456"\w*, \w and|strong="G2532"\w* \w thunders|strong="G1027"\w*. \w There|strong="G2532"\w* \w were|strong="G1510"\w* \w seven|strong="G2033"\w* \w lamps|strong="G2985"\w* \w of|strong="G1537"\w* \w fire|strong="G4442"\w* \w burning|strong="G2545"\w* \w before|strong="G1799"\w* \w his|strong="G2532"\w* \w throne|strong="G2362"\w*, \w which|strong="G3739"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* \w Spirits|strong="G4151"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*. +\v 6 \w Before|strong="G1799"\w* \w the|strong="G1722"\w* \w throne|strong="G2362"\w* \w was|strong="G3588"\w* \w something|strong="G3788"\w* \w like|strong="G5613"\w* \w a|strong="G5613"\w* \w sea|strong="G2281"\w* \w of|strong="G2532"\w* \w glass|strong="G5193"\w*, \w similar|strong="G3664"\w* \w to|strong="G2532"\w* \w crystal|strong="G2930"\w*. \w In|strong="G1722"\w* \w the|strong="G1722"\w* \w middle|strong="G3319"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w throne|strong="G2362"\w*, \w and|strong="G2532"\w* \w around|strong="G2945"\w* \w the|strong="G1722"\w* \w throne|strong="G2362"\w* \w were|strong="G3588"\w* \w four|strong="G5064"\w* \w living|strong="G2226"\w* \w creatures|strong="G2226"\w* \w full|strong="G1073"\w* \w of|strong="G2532"\w* \w eyes|strong="G3788"\w* \w before|strong="G1799"\w* \w and|strong="G2532"\w* \w behind|strong="G3693"\w*. +\v 7 \w The|strong="G2532"\w* \w first|strong="G4413"\w* \w creature|strong="G2226"\w* \w was|strong="G3588"\w* \w like|strong="G5613"\w* \w a|strong="G2192"\w* \w lion|strong="G3023"\w*, \w the|strong="G2532"\w* \w second|strong="G1208"\w* \w creature|strong="G2226"\w* \w like|strong="G5613"\w* \w a|strong="G2192"\w* \w calf|strong="G3448"\w*, \w the|strong="G2532"\w* \w third|strong="G5154"\w* \w creature|strong="G2226"\w* \w had|strong="G2192"\w* \w a|strong="G2192"\w* \w face|strong="G4383"\w* \w like|strong="G5613"\w* \w a|strong="G2192"\w* \w man|strong="G4413"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w fourth|strong="G5067"\w* \w was|strong="G3588"\w* \w like|strong="G5613"\w* \w a|strong="G2192"\w* \w flying|strong="G4072"\w* eagle. +\v 8 \w The|strong="G2532"\w* \w four|strong="G5064"\w* \w living|strong="G2226"\w* \w creatures|strong="G2226"\w*, \w each|strong="G2596"\w* \w one|strong="G1520"\w* \w of|strong="G2250"\w* \w them|strong="G3588"\w* \w having|strong="G2192"\w* \w six|strong="G1803"\w* \w wings|strong="G4420"\w*, \w are|strong="G1510"\w* \w full|strong="G1073"\w* \w of|strong="G2250"\w* \w eyes|strong="G3788"\w* \w around|strong="G2943"\w* \w and|strong="G2532"\w* \w within|strong="G2081"\w*. \w They|strong="G2532"\w* \w have|strong="G2192"\w* \w no|strong="G3756"\w* \w rest|strong="G1510"\w* \w day|strong="G2250"\w* \w and|strong="G2532"\w* \w night|strong="G3571"\w*, \w saying|strong="G3004"\w*, “Holy, holy, holy\f + \fr 4:8 \ft Hodges/Farstad MT reads “holy” 9 times instead of 3.\f* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w God|strong="G2316"\w*, \w the|strong="G2532"\w* \w Almighty|strong="G3841"\w*, \w who|strong="G3588"\w* \w was|strong="G1510"\w* \w and|strong="G2532"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w and|strong="G2532"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w to|strong="G2532"\w* \w come|strong="G2064"\w*!” +\p +\v 9 \w When|strong="G3752"\w* \w the|strong="G2532"\w* \w living|strong="G2198"\w* \w creatures|strong="G2226"\w* \w give|strong="G1325"\w* \w glory|strong="G1391"\w*, \w honor|strong="G5092"\w*, \w and|strong="G2532"\w* \w thanks|strong="G2169"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w sits|strong="G2521"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w*, \w to|strong="G1519"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w lives|strong="G2198"\w* \w forever|strong="G1519"\w* \w and|strong="G2532"\w* \w ever|strong="G1519"\w*, +\v 10 \w the|strong="G2532"\w* \w twenty-four|strong="G1501"\w* \w elders|strong="G4245"\w* \w fall|strong="G4098"\w* \w down|strong="G4098"\w* \w before|strong="G1799"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w sits|strong="G2521"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w* \w and|strong="G2532"\w* \w worship|strong="G4352"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w lives|strong="G2198"\w* \w forever|strong="G1519"\w* \w and|strong="G2532"\w* \w ever|strong="G1519"\w*, \w and|strong="G2532"\w* \w throw|strong="G4098"\w* \w their|strong="G2532"\w* \w crowns|strong="G4735"\w* \w before|strong="G1799"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w*, \w saying|strong="G3004"\w*, +\v 11 “Worthy \w are|strong="G1510"\w* \w you|strong="G4771"\w*, \w our|strong="G2316"\w* \w Lord|strong="G2962"\w* \w and|strong="G2532"\w* \w God|strong="G2316"\w*, \w the|strong="G2532"\w* Holy \w One|strong="G3956"\w*,\f + \fr 4:11 \ft TR omits “and God, the Holy One,”\f* \w to|strong="G2532"\w* \w receive|strong="G2983"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w*, \w the|strong="G2532"\w* \w honor|strong="G5092"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w power|strong="G1411"\w*, \w for|strong="G3754"\w* \w you|strong="G4771"\w* \w created|strong="G2936"\w* \w all|strong="G3956"\w* \w things|strong="G3956"\w*, \w and|strong="G2532"\w* \w because|strong="G3754"\w* \w of|strong="G1223"\w* \w your|strong="G1223"\w* \w desire|strong="G2307"\w* \w they|strong="G2532"\w* \w existed|strong="G1510"\w* \w and|strong="G2532"\w* \w were|strong="G1510"\w* \w created|strong="G2936"\w*!” +\c 5 +\p +\v 1 \w I|strong="G2532"\w* \w saw|strong="G3708"\w*, \w in|strong="G1909"\w* \w the|strong="G2532"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* \w of|strong="G2532"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w sat|strong="G2521"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w*, \w a|strong="G2532"\w* \w book|strong="G3588"\w* \w written|strong="G1125"\w* \w inside|strong="G2081"\w* \w and|strong="G2532"\w* outside, \w sealed|strong="G2696"\w* shut \w with|strong="G2532"\w* \w seven|strong="G2033"\w* \w seals|strong="G4973"\w*. +\v 2 \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w a|strong="G2532"\w* \w mighty|strong="G2478"\w* angel \w proclaiming|strong="G2784"\w* \w with|strong="G1722"\w* \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, “\w Who|strong="G5101"\w* \w is|strong="G3588"\w* worthy \w to|strong="G2532"\w* open \w the|strong="G1722"\w* \w book|strong="G3588"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w break|strong="G3089"\w* \w its|strong="G3089"\w* \w seals|strong="G4973"\w*?” +\v 3 \w No|strong="G3762"\w* \w one|strong="G3762"\w* \w in|strong="G1722"\w* \w heaven|strong="G3772"\w* \w above|strong="G1909"\w*, \w or|strong="G2532"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w*, \w or|strong="G2532"\w* \w under|strong="G5270"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w*, \w was|strong="G3588"\w* \w able|strong="G1410"\w* \w to|strong="G2532"\w* open \w the|strong="G1722"\w* \w book|strong="G3588"\w* \w or|strong="G2532"\w* \w to|strong="G2532"\w* look \w in|strong="G1722"\w* \w it|strong="G2532"\w*. +\v 4 \w Then|strong="G2532"\w* \w I|strong="G1473"\w* \w wept|strong="G2799"\w* \w much|strong="G4183"\w*, \w because|strong="G3754"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w* \w was|strong="G3588"\w* \w found|strong="G2147"\w* worthy \w to|strong="G2532"\w* open \w the|strong="G2532"\w* \w book|strong="G3588"\w* \w or|strong="G2532"\w* \w to|strong="G2532"\w* look \w in|strong="G2532"\w* \w it|strong="G2532"\w*. +\v 5 \w One|strong="G1520"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w*, “Don’\w t|strong="G3588"\w* \w weep|strong="G2799"\w*. \w Behold|strong="G2400"\w*, \w the|strong="G2532"\w* \w Lion|strong="G3023"\w* \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w tribe|strong="G5443"\w* \w of|strong="G1537"\w* \w Judah|strong="G2455"\w*, \w the|strong="G2532"\w* \w Root|strong="G4491"\w* \w of|strong="G1537"\w* \w David|strong="G1138"\w*, \w has|strong="G3708"\w* \w overcome|strong="G3528"\w*: \w he|strong="G2532"\w* \w who|strong="G3588"\w* opens \w the|strong="G2532"\w* \w book|strong="G3588"\w* \w and|strong="G2532"\w* \w its|strong="G1537"\w* \w seven|strong="G2033"\w* \w seals|strong="G4973"\w*.” +\p +\v 6 \w I|strong="G3739"\w* \w saw|strong="G3708"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w middle|strong="G3319"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w throne|strong="G2362"\w* \w and|strong="G2532"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w four|strong="G5064"\w* \w living|strong="G2226"\w* \w creatures|strong="G2226"\w*, \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w middle|strong="G3319"\w* \w of|strong="G4151"\w* \w the|strong="G1722"\w* \w elders|strong="G4245"\w*, \w a|strong="G2192"\w* Lamb \w standing|strong="G2476"\w*, \w as|strong="G5613"\w* \w though|strong="G5613"\w* \w it|strong="G2532"\w* \w had|strong="G2192"\w* \w been|strong="G1510"\w* \w slain|strong="G4969"\w*, \w having|strong="G2192"\w* \w seven|strong="G2033"\w* \w horns|strong="G2768"\w* \w and|strong="G2532"\w* \w seven|strong="G2033"\w* \w eyes|strong="G3788"\w*, \w which|strong="G3739"\w* \w are|strong="G1510"\w* \w the|strong="G1722"\w* \w seven|strong="G2033"\w* \w Spirits|strong="G4151"\w* \w of|strong="G4151"\w* \w God|strong="G2316"\w*, \w sent|strong="G2316"\w* \w out|strong="G2532"\w* \w into|strong="G1519"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w*. +\v 7 \w Then|strong="G2532"\w* \w he|strong="G2532"\w* \w came|strong="G2064"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w took|strong="G2983"\w* \w it|strong="G2532"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w right|strong="G1188"\w* \w hand|strong="G1188"\w* \w of|strong="G1537"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w sat|strong="G2521"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w*. +\v 8 \w Now|strong="G2532"\w* \w when|strong="G3753"\w* \w he|strong="G2532"\w* \w had|strong="G2192"\w* \w taken|strong="G2983"\w* \w the|strong="G2532"\w* \w book|strong="G3588"\w*, \w the|strong="G2532"\w* \w four|strong="G5064"\w* \w living|strong="G2226"\w* \w creatures|strong="G2226"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w twenty-four|strong="G1501"\w* \w elders|strong="G4245"\w* \w fell|strong="G4098"\w* \w down|strong="G4098"\w* \w before|strong="G1799"\w* \w the|strong="G2532"\w* Lamb, \w each|strong="G1538"\w* \w one|strong="G1538"\w* \w having|strong="G2192"\w* \w a|strong="G2192"\w* \w harp|strong="G2788"\w*, \w and|strong="G2532"\w* \w golden|strong="G5552"\w* \w bowls|strong="G5357"\w* \w full|strong="G1073"\w* \w of|strong="G2532"\w* \w incense|strong="G2368"\w*, \w which|strong="G3739"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* \w prayers|strong="G4335"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* saints. +\v 9 \w They|strong="G2532"\w* sang \w a|strong="G2532"\w* \w new|strong="G2537"\w* \w song|strong="G5603"\w*, \w saying|strong="G3004"\w*, +\q1 “\w You|strong="G4771"\w* \w are|strong="G1510"\w* worthy \w to|strong="G2532"\w* \w take|strong="G2983"\w* \w the|strong="G1722"\w* \w book|strong="G3588"\w* +\q2 \w and|strong="G2532"\w* \w to|strong="G2532"\w* open \w its|strong="G3956"\w* \w seals|strong="G4973"\w*, +\q1 \w for|strong="G3754"\w* \w you|strong="G4771"\w* \w were|strong="G1510"\w* killed, +\q2 \w and|strong="G2532"\w* bought \w us|strong="G3004"\w* \w for|strong="G3754"\w* \w God|strong="G2316"\w* \w with|strong="G1722"\w* \w your|strong="G2532"\w* blood +\q2 \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w every|strong="G3956"\w* \w tribe|strong="G5443"\w*, \w language|strong="G1100"\w*, \w people|strong="G2992"\w*, \w and|strong="G2532"\w* \w nation|strong="G1484"\w*, +\q1 +\v 10 \w and|strong="G2532"\w* \w made|strong="G4160"\w* \w us|strong="G4160"\w* \w kings|strong="G3588"\w* \w and|strong="G2532"\w* \w priests|strong="G2409"\w* \w to|strong="G2532"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w*; +\q2 \w and|strong="G2532"\w* \w we|strong="G2249"\w* \w will|strong="G2316"\w* \w reign|strong="G2532"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*.” +\p +\v 11 \w I|strong="G2532"\w* \w looked|strong="G3708"\w*, \w and|strong="G2532"\w* \w I|strong="G2532"\w* heard \w something|strong="G4183"\w* \w like|strong="G5613"\w* \w a|strong="G5613"\w* \w voice|strong="G5456"\w* \w of|strong="G2532"\w* \w many|strong="G4183"\w* angels \w around|strong="G2945"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w*, \w the|strong="G2532"\w* \w living|strong="G2226"\w* \w creatures|strong="G2226"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w*. \w The|strong="G2532"\w* number \w of|strong="G2532"\w* \w them|strong="G3588"\w* \w was|strong="G1510"\w* \w ten|strong="G3461"\w* \w thousands|strong="G3461"\w* \w of|strong="G2532"\w* \w ten|strong="G3461"\w* \w thousands|strong="G3461"\w*, \w and|strong="G2532"\w* \w thousands|strong="G3461"\w* \w of|strong="G2532"\w* \w thousands|strong="G3461"\w*, +\v 12 \w saying|strong="G3004"\w* \w with|strong="G2532"\w* \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, “Worthy \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w Lamb|strong="G3004"\w* \w who|strong="G3588"\w* \w has|strong="G1510"\w* \w been|strong="G1510"\w* killed \w to|strong="G2532"\w* \w receive|strong="G2983"\w* \w the|strong="G2532"\w* \w power|strong="G1411"\w*, \w wealth|strong="G4149"\w*, \w wisdom|strong="G4678"\w*, \w strength|strong="G2479"\w*, \w honor|strong="G5092"\w*, \w glory|strong="G1391"\w*, \w and|strong="G2532"\w* \w blessing|strong="G2129"\w*!” +\p +\v 13 \w I|strong="G3739"\w* heard \w every|strong="G3956"\w* \w created|strong="G2938"\w* \w thing|strong="G3956"\w* \w which|strong="G3739"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w heaven|strong="G3772"\w*, \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w*, \w under|strong="G5270"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w*, \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w*, \w and|strong="G2532"\w* \w everything|strong="G3956"\w* \w in|strong="G1722"\w* \w them|strong="G3588"\w*, \w saying|strong="G3004"\w*, “\w To|strong="G1519"\w* \w him|strong="G3588"\w* \w who|strong="G3739"\w* \w sits|strong="G2521"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w throne|strong="G2362"\w* \w and|strong="G2532"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w Lamb|strong="G3004"\w* \w be|strong="G2532"\w* \w the|strong="G1722"\w* \w blessing|strong="G2129"\w*, \w the|strong="G1722"\w* \w honor|strong="G5092"\w*, \w the|strong="G1722"\w* \w glory|strong="G1391"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w dominion|strong="G2904"\w*, \w forever|strong="G1519"\w* \w and|strong="G2532"\w* \w ever|strong="G1519"\w*! Amen!”\f + \fr 5:13 \ft TR omits “Amen!”\f* +\p +\v 14 \w The|strong="G2532"\w* \w four|strong="G5064"\w* \w living|strong="G2226"\w* \w creatures|strong="G2226"\w* \w said|strong="G3004"\w*, “Amen!” \w Then|strong="G2532"\w* \w the|strong="G2532"\w*\f + \fr 5:14 \ft TR adds “twenty-four”\f* \w elders|strong="G4245"\w* \w fell|strong="G4098"\w* \w down|strong="G4098"\w* \w and|strong="G2532"\w* \w worshiped|strong="G4352"\w*.\f + \fr 5:14 \ft TR adds “the one living forever and ever”\f* +\c 6 +\p +\v 1 \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w that|strong="G3588"\w* \w the|strong="G2532"\w* \w Lamb|strong="G3004"\w* opened \w one|strong="G1520"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* \w seals|strong="G4973"\w*, \w and|strong="G2532"\w* \w I|strong="G2532"\w* heard \w one|strong="G1520"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w four|strong="G5064"\w* \w living|strong="G2226"\w* \w creatures|strong="G2226"\w* \w saying|strong="G3004"\w*, \w as|strong="G5613"\w* \w with|strong="G1537"\w* \w a|strong="G5613"\w* \w voice|strong="G5456"\w* \w of|strong="G1537"\w* \w thunder|strong="G1027"\w*, “\w Come|strong="G2064"\w* \w and|strong="G2532"\w* \w see|strong="G3708"\w*!” +\v 2 \w Then|strong="G2532"\w* \w a|strong="G2192"\w* \w white|strong="G3022"\w* \w horse|strong="G2462"\w* \w appeared|strong="G3708"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w sat|strong="G2521"\w* \w on|strong="G1909"\w* \w it|strong="G2532"\w* \w had|strong="G2192"\w* \w a|strong="G2192"\w* \w bow|strong="G5115"\w*. \w A|strong="G2192"\w* \w crown|strong="G4735"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w* \w conquering|strong="G3528"\w*, \w and|strong="G2532"\w* \w to|strong="G2443"\w* \w conquer|strong="G3528"\w*. +\p +\v 3 \w When|strong="G3753"\w* \w he|strong="G2532"\w* opened \w the|strong="G2532"\w* \w second|strong="G1208"\w* \w seal|strong="G4973"\w*, \w I|strong="G2532"\w* heard \w the|strong="G2532"\w* \w second|strong="G1208"\w* \w living|strong="G2226"\w* \w creature|strong="G2226"\w* \w saying|strong="G3004"\w*, “\w Come|strong="G2064"\w*!” +\v 4 \w Another|strong="G3588"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w*, \w a|strong="G2532"\w* \w red|strong="G4450"\w* \w horse|strong="G2462"\w*. \w To|strong="G2443"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w sat|strong="G2521"\w* \w on|strong="G1909"\w* \w it|strong="G2532"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w power|strong="G1325"\w* \w to|strong="G2443"\w* \w take|strong="G2983"\w* \w peace|strong="G1515"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w and|strong="G2532"\w* \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w should|strong="G3588"\w* \w kill|strong="G4969"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w*. \w There|strong="G2532"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w* \w a|strong="G2532"\w* \w great|strong="G3173"\w* \w sword|strong="G3162"\w*. +\p +\v 5 \w When|strong="G3753"\w* \w he|strong="G2532"\w* opened \w the|strong="G1722"\w* \w third|strong="G5154"\w* \w seal|strong="G4973"\w*, \w I|strong="G2532"\w* heard \w the|strong="G1722"\w* \w third|strong="G5154"\w* \w living|strong="G2226"\w* \w creature|strong="G2226"\w* \w saying|strong="G3004"\w*, “\w Come|strong="G2064"\w* \w and|strong="G2532"\w* \w see|strong="G3708"\w*!” \w And|strong="G2532"\w* \w behold|strong="G2400"\w*, \w a|strong="G2192"\w* \w black|strong="G3189"\w* \w horse|strong="G2462"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w sat|strong="G2521"\w* \w on|strong="G1909"\w* \w it|strong="G2532"\w* \w had|strong="G2192"\w* \w a|strong="G2192"\w* balance \w in|strong="G1722"\w* \w his|strong="G1909"\w* \w hand|strong="G5495"\w*. +\v 6 \w I|strong="G2532"\w* heard \w a|strong="G5613"\w* \w voice|strong="G5456"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w middle|strong="G3319"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w four|strong="G5064"\w* \w living|strong="G2226"\w* \w creatures|strong="G2226"\w* \w saying|strong="G3004"\w*, “\w A|strong="G5613"\w* choenix\f + \fr 6:6 \ft A choenix is a dry volume measure that is a little more than a liter (a little more than a quart).\f* \w of|strong="G2532"\w* \w wheat|strong="G4621"\w* \w for|strong="G1722"\w* \w a|strong="G5613"\w* \w denarius|strong="G1220"\w*, \w and|strong="G2532"\w* \w three|strong="G5140"\w* choenix \w of|strong="G2532"\w* \w barley|strong="G2915"\w* \w for|strong="G1722"\w* \w a|strong="G5613"\w* \w denarius|strong="G1220"\w*! Don’\w t|strong="G3588"\w* damage \w the|strong="G1722"\w* \w oil|strong="G1637"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w wine|strong="G3631"\w*!” +\p +\v 7 \w When|strong="G3753"\w* \w he|strong="G2532"\w* opened \w the|strong="G2532"\w* \w fourth|strong="G5067"\w* \w seal|strong="G4973"\w*, \w I|strong="G2532"\w* heard \w the|strong="G2532"\w* \w fourth|strong="G5067"\w* \w living|strong="G2226"\w* \w creature|strong="G2226"\w* \w saying|strong="G3004"\w*, “\w Come|strong="G2064"\w* \w and|strong="G2532"\w* see!” +\v 8 \w And|strong="G2532"\w* \w behold|strong="G2400"\w*, \w a|strong="G2532"\w* \w pale|strong="G5515"\w* \w horse|strong="G2462"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* \w of|strong="G5259"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w sat|strong="G2521"\w* \w on|strong="G1909"\w* \w it|strong="G2532"\w* \w was|strong="G3588"\w* \w Death|strong="G2288"\w*. Hades\f + \fr 6:8 \ft or, Hell\f* followed \w with|strong="G3326"\w* \w him|strong="G3588"\w*. \w Authority|strong="G1849"\w* \w over|strong="G1909"\w* \w one|strong="G3588"\w* \w fourth|strong="G5067"\w* \w of|strong="G5259"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w*, \w to|strong="G2532"\w* kill \w with|strong="G3326"\w* \w the|strong="G1722"\w* \w sword|strong="G4501"\w*, \w with|strong="G3326"\w* \w famine|strong="G3042"\w*, \w with|strong="G3326"\w* \w death|strong="G2288"\w*, \w and|strong="G2532"\w* \w by|strong="G1722"\w* \w the|strong="G1722"\w* \w wild|strong="G2342"\w* animals \w of|strong="G5259"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*. +\p +\v 9 \w When|strong="G3753"\w* \w he|strong="G2532"\w* opened \w the|strong="G2532"\w* \w fifth|strong="G3991"\w* \w seal|strong="G4973"\w*, \w I|strong="G3739"\w* \w saw|strong="G3708"\w* \w underneath|strong="G5270"\w* \w the|strong="G2532"\w* \w altar|strong="G2379"\w* \w the|strong="G2532"\w* \w souls|strong="G5590"\w* \w of|strong="G3056"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w had|strong="G2192"\w* \w been|strong="G2192"\w* killed \w for|strong="G1223"\w* \w the|strong="G2532"\w* \w Word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w for|strong="G1223"\w* \w the|strong="G2532"\w* \w testimony|strong="G3141"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* Lamb \w which|strong="G3739"\w* \w they|strong="G2532"\w* \w had|strong="G2192"\w*. +\v 10 \w They|strong="G2532"\w* \w cried|strong="G2896"\w* \w with|strong="G1537"\w* \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, \w saying|strong="G3004"\w*, “\w How|strong="G2193"\w* \w long|strong="G2193"\w*, \w Master|strong="G1203"\w*, \w the|strong="G2532"\w* holy \w and|strong="G2532"\w* \w true|strong="G3588"\w*, \w until|strong="G2193"\w* \w you|strong="G3004"\w* \w judge|strong="G2919"\w* \w and|strong="G2532"\w* \w avenge|strong="G1556"\w* \w our|strong="G2532"\w* blood \w on|strong="G1909"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w dwell|strong="G2730"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*?” +\v 11 \w A|strong="G5613"\w* \w long|strong="G5550"\w* \w white|strong="G3022"\w* \w robe|strong="G4749"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G2443"\w* \w each|strong="G1538"\w* \w of|strong="G2532"\w* \w them|strong="G3588"\w*. \w They|strong="G2532"\w* \w were|strong="G3588"\w* told \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w should|strong="G3195"\w* rest \w yet|strong="G2089"\w* \w for|strong="G2532"\w* \w a|strong="G5613"\w* \w while|strong="G5613"\w*, \w until|strong="G2193"\w* \w their|strong="G2532"\w* \w fellow|strong="G4889"\w* \w servants|strong="G4889"\w* \w and|strong="G2532"\w* \w their|strong="G2532"\w* brothers,\f + \fr 6:11 \ft The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”\f* \w who|strong="G3588"\w* \w would|strong="G3195"\w* \w also|strong="G2532"\w* \w be|strong="G2532"\w* killed \w even|strong="G2532"\w* \w as|strong="G5613"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w*, \w should|strong="G3195"\w* \w complete|strong="G4137"\w* \w their|strong="G2532"\w* course. +\p +\v 12 \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w when|strong="G3753"\w* \w he|strong="G2532"\w* opened \w the|strong="G2532"\w* \w sixth|strong="G1623"\w* \w seal|strong="G4973"\w*, \w and|strong="G2532"\w* \w there|strong="G2532"\w* \w was|strong="G1096"\w* \w a|strong="G1096"\w* \w great|strong="G3173"\w* \w earthquake|strong="G4578"\w*. \w The|strong="G2532"\w* \w sun|strong="G2246"\w* \w became|strong="G1096"\w* \w black|strong="G3189"\w* \w as|strong="G5613"\w* \w sackcloth|strong="G4526"\w* \w made|strong="G1096"\w* \w of|strong="G2532"\w* \w hair|strong="G5155"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w whole|strong="G3650"\w* \w moon|strong="G4582"\w* \w became|strong="G1096"\w* \w as|strong="G5613"\w* blood. +\v 13 \w The|strong="G2532"\w* stars \w of|strong="G5259"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w* \w fell|strong="G4098"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w like|strong="G5613"\w* \w a|strong="G5613"\w* \w fig|strong="G4808"\w* \w tree|strong="G4808"\w* dropping \w its|strong="G5259"\w* \w unripe|strong="G3653"\w* \w figs|strong="G3653"\w* \w when|strong="G5613"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w shaken|strong="G4579"\w* \w by|strong="G5259"\w* \w a|strong="G5613"\w* \w great|strong="G3173"\w* wind. +\v 14 \w The|strong="G2532"\w* \w sky|strong="G3772"\w* \w was|strong="G3588"\w* removed \w like|strong="G5613"\w* \w a|strong="G5613"\w* scroll \w when|strong="G5613"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w rolled|strong="G1667"\w* \w up|strong="G1667"\w*. \w Every|strong="G3956"\w* \w mountain|strong="G3735"\w* \w and|strong="G2532"\w* \w island|strong="G3520"\w* \w was|strong="G3588"\w* \w moved|strong="G2795"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w its|strong="G3956"\w* \w place|strong="G5117"\w*. +\v 15 \w The|strong="G2532"\w* \w kings|strong="G3588"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w the|strong="G2532"\w* princes, \w the|strong="G2532"\w* commanding officers, \w the|strong="G2532"\w* \w rich|strong="G4145"\w*, \w the|strong="G2532"\w* \w strong|strong="G2478"\w*, \w and|strong="G2532"\w* \w every|strong="G3956"\w* \w slave|strong="G1401"\w* \w and|strong="G2532"\w* \w free|strong="G1658"\w* person, \w hid|strong="G2928"\w* \w themselves|strong="G1438"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w caves|strong="G4693"\w* \w and|strong="G2532"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w rocks|strong="G4073"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w mountains|strong="G3735"\w*. +\v 16 \w They|strong="G2532"\w* \w told|strong="G3004"\w* \w the|strong="G2532"\w* \w mountains|strong="G3735"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w rocks|strong="G4073"\w*, “\w Fall|strong="G4098"\w* \w on|strong="G1909"\w* \w us|strong="G3004"\w*, \w and|strong="G2532"\w* \w hide|strong="G2928"\w* \w us|strong="G3004"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w face|strong="G4383"\w* \w of|strong="G2532"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w sits|strong="G2521"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w*, \w and|strong="G2532"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w wrath|strong="G3709"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w Lamb|strong="G3004"\w*, +\v 17 \w for|strong="G3754"\w* \w the|strong="G2532"\w* \w great|strong="G3173"\w* \w day|strong="G2250"\w* \w of|strong="G2250"\w* \w his|strong="G2532"\w* \w wrath|strong="G3709"\w* \w has|strong="G5101"\w* \w come|strong="G2064"\w*, \w and|strong="G2532"\w* \w who|strong="G5101"\w* \w is|strong="G3588"\w* \w able|strong="G1410"\w* \w to|strong="G2532"\w* \w stand|strong="G2476"\w*?” +\c 7 +\p +\v 1 \w After|strong="G3326"\w* \w this|strong="G3778"\w*, \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w four|strong="G5064"\w* angels \w standing|strong="G2476"\w* \w at|strong="G1909"\w* \w the|strong="G2532"\w* \w four|strong="G5064"\w* \w corners|strong="G1137"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w holding|strong="G2902"\w* \w the|strong="G2532"\w* \w four|strong="G5064"\w* winds \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w no|strong="G3361"\w* \w wind|strong="G4154"\w* \w would|strong="G2532"\w* \w blow|strong="G4154"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w or|strong="G2532"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w*, \w or|strong="G2532"\w* \w on|strong="G1909"\w* \w any|strong="G3956"\w* \w tree|strong="G1186"\w*. +\v 2 \w I|strong="G3739"\w* \w saw|strong="G3708"\w* \w another|strong="G3739"\w* angel ascend \w from|strong="G2532"\w* \w the|strong="G2532"\w* sunrise, \w having|strong="G2192"\w* \w the|strong="G2532"\w* \w seal|strong="G4973"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w living|strong="G2198"\w* \w God|strong="G2316"\w*. \w He|strong="G2532"\w* \w cried|strong="G2896"\w* \w with|strong="G2532"\w* \w a|strong="G2192"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w four|strong="G5064"\w* angels \w to|strong="G2532"\w* \w whom|strong="G3739"\w* \w it|strong="G2532"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* harm \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w*, +\v 3 \w saying|strong="G3004"\w*, “Don’\w t|strong="G3588"\w* harm \w the|strong="G1909"\w* \w earth|strong="G1093"\w*, \w the|strong="G1909"\w* \w sea|strong="G2281"\w*, \w or|strong="G3383"\w* \w the|strong="G1909"\w* \w trees|strong="G1186"\w*, until \w we|strong="G2249"\w* \w have|strong="G1473"\w* \w sealed|strong="G4972"\w* \w the|strong="G1909"\w* bondservants \w of|strong="G2316"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w* \w on|strong="G1909"\w* \w their|strong="G3588"\w* \w foreheads|strong="G3359"\w*!” +\v 4 \w I|strong="G2532"\w* heard \w the|strong="G2532"\w* number \w of|strong="G1537"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w sealed|strong="G4972"\w*, \w one|strong="G3956"\w* \w hundred|strong="G1540"\w* \w forty-four|strong="G5062"\w* \w thousand|strong="G5505"\w*, \w sealed|strong="G4972"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w every|strong="G3956"\w* \w tribe|strong="G5443"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w children|strong="G5207"\w* \w of|strong="G1537"\w* \w Israel|strong="G2474"\w*: +\q1 +\v 5 \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w tribe|strong="G5443"\w* \w of|strong="G1537"\w* \w Judah|strong="G2455"\w* \w twelve|strong="G1427"\w* \w thousand|strong="G5505"\w* were \w sealed|strong="G4972"\w*, +\q1 \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w tribe|strong="G5443"\w* \w of|strong="G1537"\w* \w Reuben|strong="G4502"\w* \w twelve|strong="G1427"\w* \w thousand|strong="G5505"\w*, +\q1 \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w tribe|strong="G5443"\w* \w of|strong="G1537"\w* \w Gad|strong="G1045"\w* \w twelve|strong="G1427"\w* \w thousand|strong="G5505"\w*, +\q1 +\v 6 \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w tribe|strong="G5443"\w* \w of|strong="G1537"\w* Asher \w twelve|strong="G1427"\w* \w thousand|strong="G5505"\w*, +\q1 \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w tribe|strong="G5443"\w* \w of|strong="G1537"\w* \w Naphtali|strong="G3508"\w* \w twelve|strong="G1427"\w* \w thousand|strong="G5505"\w*, +\q1 \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w tribe|strong="G5443"\w* \w of|strong="G1537"\w* \w Manasseh|strong="G3128"\w* \w twelve|strong="G1427"\w* \w thousand|strong="G5505"\w*, +\q1 +\v 7 \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w tribe|strong="G5443"\w* \w of|strong="G1537"\w* \w Simeon|strong="G4826"\w* \w twelve|strong="G1427"\w* \w thousand|strong="G5505"\w*, +\q1 \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w tribe|strong="G5443"\w* \w of|strong="G1537"\w* \w Levi|strong="G3017"\w* \w twelve|strong="G1427"\w* \w thousand|strong="G5505"\w*, +\q1 \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w tribe|strong="G5443"\w* \w of|strong="G1537"\w* \w Issachar|strong="G2466"\w* \w twelve|strong="G1427"\w* \w thousand|strong="G5505"\w*, +\q1 +\v 8 \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w tribe|strong="G5443"\w* \w of|strong="G1537"\w* \w Zebulun|strong="G2194"\w* \w twelve|strong="G1427"\w* \w thousand|strong="G5505"\w*, +\q1 \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w tribe|strong="G5443"\w* \w of|strong="G1537"\w* \w Joseph|strong="G2501"\w* \w twelve|strong="G1427"\w* \w thousand|strong="G5505"\w*, \w and|strong="G5443"\w* +\q1 \w of|strong="G1537"\w* \w the|strong="G1537"\w* \w tribe|strong="G5443"\w* \w of|strong="G1537"\w* Benjamin \w twelve|strong="G1427"\w* \w thousand|strong="G5505"\w* were \w sealed|strong="G4972"\w*. +\p +\v 9 \w After|strong="G3326"\w* \w these|strong="G3778"\w* \w things|strong="G3956"\w* \w I|strong="G3739"\w* \w looked|strong="G3708"\w*, \w and|strong="G2532"\w* \w behold|strong="G2400"\w*, \w a|strong="G2532"\w* \w great|strong="G4183"\w* \w multitude|strong="G3793"\w* \w which|strong="G3739"\w* \w no|strong="G3762"\w* \w man|strong="G3778"\w* \w could|strong="G1410"\w* count, \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w every|strong="G3956"\w* \w nation|strong="G1484"\w* \w and|strong="G2532"\w* \w of|strong="G1537"\w* \w all|strong="G3956"\w* \w tribes|strong="G5443"\w*, \w peoples|strong="G2992"\w*, \w and|strong="G2532"\w* \w languages|strong="G1100"\w*, \w standing|strong="G2476"\w* \w before|strong="G1799"\w* \w the|strong="G1722"\w* \w throne|strong="G2362"\w* \w and|strong="G2532"\w* \w before|strong="G1799"\w* \w the|strong="G1722"\w* Lamb, \w dressed|strong="G4016"\w* \w in|strong="G1722"\w* \w white|strong="G3022"\w* \w robes|strong="G4749"\w*, \w with|strong="G3326"\w* \w palm|strong="G5404"\w* \w branches|strong="G5404"\w* \w in|strong="G1722"\w* \w their|strong="G2532"\w* \w hands|strong="G5495"\w*. +\v 10 \w They|strong="G2532"\w* \w cried|strong="G2896"\w* \w with|strong="G2532"\w* \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, \w saying|strong="G3004"\w*, “\w Salvation|strong="G4991"\w* \w be|strong="G2532"\w* \w to|strong="G2532"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w*, \w who|strong="G3588"\w* \w sits|strong="G2521"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w Lamb|strong="G3004"\w*!” +\p +\v 11 \w All|strong="G3956"\w* \w the|strong="G2532"\w* angels \w were|strong="G3588"\w* \w standing|strong="G2476"\w* \w around|strong="G1909"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w*, \w the|strong="G2532"\w* \w elders|strong="G4245"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w four|strong="G5064"\w* \w living|strong="G2226"\w* \w creatures|strong="G2226"\w*; \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w fell|strong="G4098"\w* \w on|strong="G1909"\w* \w their|strong="G2532"\w* \w faces|strong="G4383"\w* \w before|strong="G1799"\w* \w his|strong="G3956"\w* \w throne|strong="G2362"\w*, \w and|strong="G2532"\w* \w worshiped|strong="G4352"\w* \w God|strong="G2316"\w*, +\v 12 \w saying|strong="G3004"\w*, “Amen! \w Blessing|strong="G2129"\w*, \w glory|strong="G1391"\w*, \w wisdom|strong="G4678"\w*, \w thanksgiving|strong="G2169"\w*, \w honor|strong="G5092"\w*, \w power|strong="G1411"\w*, \w and|strong="G2532"\w* \w might|strong="G2479"\w*, \w be|strong="G2532"\w* \w to|strong="G1519"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w* \w forever|strong="G1519"\w* \w and|strong="G2532"\w* \w ever|strong="G1519"\w*! Amen.” +\p +\v 13 \w One|strong="G1520"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w* \w answered|strong="G3004"\w*, \w saying|strong="G3004"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w*, “\w These|strong="G3778"\w* \w who|strong="G5101"\w* \w are|strong="G1510"\w* \w arrayed|strong="G4016"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w white|strong="G3022"\w* \w robes|strong="G4749"\w*, \w who|strong="G5101"\w* \w are|strong="G1510"\w* \w they|strong="G2532"\w*, \w and|strong="G2532"\w* \w where|strong="G4159"\w* \w did|strong="G2532"\w* \w they|strong="G2532"\w* \w come|strong="G2064"\w* \w from|strong="G1537"\w*?” +\p +\v 14 \w I|strong="G1473"\w* \w told|strong="G3004"\w* \w him|strong="G3588"\w*, “\w My|strong="G1722"\w* \w lord|strong="G2962"\w*, \w you|strong="G4771"\w* \w know|strong="G1492"\w*.” +\p \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w*, “\w These|strong="G3778"\w* \w are|strong="G1510"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w came|strong="G2064"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w great|strong="G3173"\w* \w suffering|strong="G2347"\w*.\f + \fr 7:14 \ft or, oppression\f* \w They|strong="G2532"\w* \w washed|strong="G4150"\w* \w their|strong="G1438"\w* \w robes|strong="G4749"\w* \w and|strong="G2532"\w* \w made|strong="G3021"\w* \w them|strong="G3588"\w* \w white|strong="G3021"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lamb|strong="G3004"\w*’\w s|strong="G2962"\w* blood. +\v 15 \w Therefore|strong="G1223"\w* \w they|strong="G2532"\w* \w are|strong="G1510"\w* \w before|strong="G1799"\w* \w the|strong="G1722"\w* \w throne|strong="G2362"\w* \w of|strong="G2250"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w serve|strong="G3000"\w* \w him|strong="G3588"\w* \w day|strong="G2250"\w* \w and|strong="G2532"\w* \w night|strong="G3571"\w* \w in|strong="G1722"\w* \w his|strong="G1438"\w* \w temple|strong="G3485"\w*. \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w sits|strong="G2521"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w throne|strong="G2362"\w* \w will|strong="G2316"\w* \w spread|strong="G4637"\w* \w his|strong="G1438"\w* \w tabernacle|strong="G4637"\w* \w over|strong="G1909"\w* \w them|strong="G3588"\w*. +\v 16 \w They|strong="G3588"\w* \w will|strong="G3956"\w* \w never|strong="G3756"\w* \w be|strong="G3756"\w* \w hungry|strong="G3983"\w* \w or|strong="G3761"\w* \w thirsty|strong="G1372"\w* \w any|strong="G3956"\w* \w more|strong="G2089"\w*. \w The|strong="G3956"\w* \w sun|strong="G2246"\w* won’\w t|strong="G3588"\w* \w beat|strong="G4098"\w* \w on|strong="G1909"\w* \w them|strong="G3588"\w*, \w nor|strong="G3761"\w* \w any|strong="G3956"\w* \w heat|strong="G2738"\w*; +\v 17 \w for|strong="G3754"\w* \w the|strong="G2532"\w* Lamb \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1909"\w* \w the|strong="G2532"\w* \w middle|strong="G3319"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w* shepherds \w them|strong="G3588"\w* \w and|strong="G2532"\w* \w leads|strong="G3594"\w* \w them|strong="G3588"\w* \w to|strong="G2532"\w* \w springs|strong="G4077"\w* \w of|strong="G1537"\w* life-giving \w waters|strong="G5204"\w*. \w And|strong="G2532"\w* \w God|strong="G2316"\w* \w will|strong="G2316"\w* \w wipe|strong="G1813"\w* \w away|strong="G1813"\w* \w every|strong="G3956"\w* \w tear|strong="G1144"\w* \w from|strong="G1537"\w* \w their|strong="G1438"\w* \w eyes|strong="G3788"\w*.” +\c 8 +\p +\v 1 \w When|strong="G3752"\w* \w he|strong="G2532"\w* opened \w the|strong="G1722"\w* \w seventh|strong="G1442"\w* \w seal|strong="G4973"\w*, \w there|strong="G2532"\w* \w was|strong="G1096"\w* \w silence|strong="G4602"\w* \w in|strong="G1722"\w* \w heaven|strong="G3772"\w* \w for|strong="G1722"\w* \w about|strong="G5613"\w* \w half|strong="G2256"\w* \w an|strong="G2532"\w* \w hour|strong="G2256"\w*. +\v 2 \w I|strong="G3739"\w* \w saw|strong="G3708"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* angels \w who|strong="G3739"\w* \w stand|strong="G2476"\w* \w before|strong="G1799"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w seven|strong="G2033"\w* \w trumpets|strong="G4536"\w* \w were|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*. +\p +\v 3 \w Another|strong="G3588"\w* angel \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w stood|strong="G2476"\w* \w over|strong="G1909"\w* \w the|strong="G2532"\w* \w altar|strong="G2379"\w*, \w having|strong="G2192"\w* \w a|strong="G2192"\w* \w golden|strong="G5552"\w* \w censer|strong="G3031"\w*. \w Much|strong="G4183"\w* \w incense|strong="G2368"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w*, \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w should|strong="G3588"\w* \w add|strong="G1325"\w* \w it|strong="G2532"\w* \w to|strong="G2443"\w* \w the|strong="G2532"\w* \w prayers|strong="G4335"\w* \w of|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* saints \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w golden|strong="G5552"\w* \w altar|strong="G2379"\w* \w which|strong="G3588"\w* \w was|strong="G3588"\w* \w before|strong="G1799"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w*. +\v 4 \w The|strong="G2532"\w* \w smoke|strong="G2586"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w incense|strong="G2368"\w*, \w with|strong="G1537"\w* \w the|strong="G2532"\w* \w prayers|strong="G4335"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* saints, \w went|strong="G2532"\w* \w up|strong="G2532"\w* \w before|strong="G1799"\w* \w God|strong="G2316"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* angel’s \w hand|strong="G5495"\w*. +\v 5 \w The|strong="G2532"\w* angel \w took|strong="G2983"\w* \w the|strong="G2532"\w* \w censer|strong="G3031"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w filled|strong="G1072"\w* \w it|strong="G2532"\w* \w with|strong="G1537"\w* \w the|strong="G2532"\w* \w fire|strong="G4442"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w altar|strong="G2379"\w*, \w then|strong="G2532"\w* threw \w it|strong="G2532"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*. \w Thunders|strong="G1027"\w*, \w sounds|strong="G5456"\w*, lightnings, \w and|strong="G2532"\w* \w an|strong="G2532"\w* \w earthquake|strong="G4578"\w* \w followed|strong="G1096"\w*. +\p +\v 6 \w The|strong="G2532"\w* \w seven|strong="G2033"\w* angels \w who|strong="G3588"\w* \w had|strong="G2192"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* \w trumpets|strong="G4536"\w* \w prepared|strong="G2090"\w* \w themselves|strong="G1438"\w* \w to|strong="G2443"\w* \w sound|strong="G4537"\w*. +\p +\v 7 \w The|strong="G1722"\w* \w first|strong="G4413"\w* \w sounded|strong="G4537"\w*, \w and|strong="G2532"\w* \w there|strong="G2532"\w* \w followed|strong="G1096"\w* \w hail|strong="G5464"\w* \w and|strong="G2532"\w* \w fire|strong="G4442"\w*, \w mixed|strong="G3396"\w* \w with|strong="G1722"\w* blood, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* thrown \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w*. \w One|strong="G3956"\w* \w third|strong="G5154"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w* \w was|strong="G1096"\w* \w burned|strong="G2618"\w* \w up|strong="G1519"\w*,\f + \fr 8:7 \ft TR omits “One third of the earth was burned up”\f* \w and|strong="G2532"\w* \w one|strong="G3956"\w* \w third|strong="G5154"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w trees|strong="G1186"\w* \w were|strong="G3588"\w* \w burned|strong="G2618"\w* \w up|strong="G1519"\w*, \w and|strong="G2532"\w* \w all|strong="G3956"\w* \w green|strong="G5515"\w* \w grass|strong="G5528"\w* \w was|strong="G1096"\w* \w burned|strong="G2618"\w* \w up|strong="G1519"\w*. +\p +\v 8 \w The|strong="G2532"\w* \w second|strong="G1208"\w* angel \w sounded|strong="G4537"\w*, \w and|strong="G2532"\w* something \w like|strong="G5613"\w* \w a|strong="G1096"\w* \w great|strong="G3173"\w* \w burning|strong="G2545"\w* \w mountain|strong="G3735"\w* \w was|strong="G1096"\w* thrown \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w*. \w One|strong="G3588"\w* \w third|strong="G5154"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w* \w became|strong="G1096"\w* blood, +\v 9 \w and|strong="G2532"\w* \w one|strong="G3588"\w* \w third|strong="G5154"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w living|strong="G2192"\w* \w creatures|strong="G2938"\w* \w which|strong="G3588"\w* \w were|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w* \w died|strong="G3588"\w*. \w One|strong="G3588"\w* \w third|strong="G5154"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w ships|strong="G4143"\w* \w were|strong="G3588"\w* \w destroyed|strong="G1311"\w*. +\p +\v 10 \w The|strong="G2532"\w* \w third|strong="G5154"\w* angel \w sounded|strong="G4537"\w*, \w and|strong="G2532"\w* \w a|strong="G5613"\w* \w great|strong="G3173"\w* star \w fell|strong="G4098"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w*, \w burning|strong="G2545"\w* \w like|strong="G5613"\w* \w a|strong="G5613"\w* \w torch|strong="G2985"\w*, \w and|strong="G2532"\w* \w it|strong="G2532"\w* \w fell|strong="G4098"\w* \w on|strong="G1909"\w* \w one|strong="G3588"\w* \w third|strong="G5154"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w rivers|strong="G4215"\w*, \w and|strong="G2532"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w springs|strong="G4077"\w* \w of|strong="G1537"\w* \w water|strong="G5204"\w*. +\v 11 \w The|strong="G2532"\w* \w name|strong="G3686"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* star \w is|strong="G3588"\w* “\w Wormwood|strong="G4183"\w*.” \w One|strong="G3588"\w* \w third|strong="G5154"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w waters|strong="G5204"\w* \w became|strong="G1096"\w* \w wormwood|strong="G4183"\w*. \w Many|strong="G4183"\w* \w people|strong="G3004"\w* \w died|strong="G3588"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w waters|strong="G5204"\w*, \w because|strong="G3754"\w* \w they|strong="G2532"\w* \w were|strong="G3588"\w* \w made|strong="G1096"\w* \w bitter|strong="G4087"\w*. +\p +\v 12 \w The|strong="G2532"\w* \w fourth|strong="G5067"\w* angel \w sounded|strong="G4537"\w*, \w and|strong="G2532"\w* \w one|strong="G3588"\w* \w third|strong="G5154"\w* \w of|strong="G2250"\w* \w the|strong="G2532"\w* \w sun|strong="G2246"\w* \w was|strong="G3588"\w* \w struck|strong="G4141"\w*, \w and|strong="G2532"\w* \w one|strong="G3588"\w* \w third|strong="G5154"\w* \w of|strong="G2250"\w* \w the|strong="G2532"\w* \w moon|strong="G4582"\w*, \w and|strong="G2532"\w* \w one|strong="G3588"\w* \w third|strong="G5154"\w* \w of|strong="G2250"\w* \w the|strong="G2532"\w* stars, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w one|strong="G3588"\w* \w third|strong="G5154"\w* \w of|strong="G2250"\w* \w them|strong="G3588"\w* \w would|strong="G2532"\w* \w be|strong="G2532"\w* \w darkened|strong="G4654"\w*; \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w day|strong="G2250"\w* wouldn’\w t|strong="G3588"\w* \w shine|strong="G5316"\w* \w for|strong="G2532"\w* \w one|strong="G3588"\w* \w third|strong="G5154"\w* \w of|strong="G2250"\w* \w it|strong="G2532"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w night|strong="G3571"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w same|strong="G3668"\w* \w way|strong="G3668"\w*. +\v 13 \w I|strong="G2532"\w* \w saw|strong="G3708"\w*, \w and|strong="G2532"\w* \w I|strong="G2532"\w* heard \w an|strong="G2532"\w* eagle,\f + \fr 8:13 \ft TR reads “angel” instead of “eagle” \f* \w flying|strong="G4072"\w* \w in|strong="G1722"\w* mid \w heaven|strong="G3321"\w*, \w saying|strong="G3004"\w* \w with|strong="G1722"\w* \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, “\w Woe|strong="G3759"\w*! \w Woe|strong="G3759"\w*! \w Woe|strong="G3759"\w* \w to|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w dwell|strong="G2730"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w*, \w because|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w other|strong="G3062"\w* \w blasts|strong="G5456"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w trumpets|strong="G4536"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w three|strong="G5140"\w* angels, \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w yet|strong="G2532"\w* \w to|strong="G2532"\w* \w sound|strong="G5456"\w*!” +\c 9 +\p +\v 1 \w The|strong="G2532"\w* \w fifth|strong="G3991"\w* angel \w sounded|strong="G4537"\w*, \w and|strong="G2532"\w* \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w a|strong="G2532"\w* star \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w* \w which|strong="G3588"\w* \w had|strong="G2532"\w* \w fallen|strong="G4098"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*. \w The|strong="G2532"\w* \w key|strong="G2807"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w pit|strong="G5421"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* abyss \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G1519"\w* \w him|strong="G3588"\w*. +\v 2 \w He|strong="G2532"\w* opened \w the|strong="G2532"\w* \w pit|strong="G5421"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* abyss, \w and|strong="G2532"\w* \w smoke|strong="G2586"\w* \w went|strong="G2532"\w* \w up|strong="G2532"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w pit|strong="G5421"\w*, \w like|strong="G5613"\w* \w the|strong="G2532"\w* \w smoke|strong="G2586"\w* \w from|strong="G1537"\w* \w a|strong="G5613"\w*\f + \fr 9:2 \ft TR adds “great”\f* burning \w furnace|strong="G2575"\w*. \w The|strong="G2532"\w* \w sun|strong="G2246"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* air \w were|strong="G3588"\w* \w darkened|strong="G4656"\w* \w because|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w smoke|strong="G2586"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w pit|strong="G5421"\w*. +\v 3 \w Then|strong="G2532"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w smoke|strong="G2586"\w* \w came|strong="G1831"\w* locusts \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w and|strong="G2532"\w* \w power|strong="G1849"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, \w as|strong="G5613"\w* \w the|strong="G2532"\w* \w scorpions|strong="G4651"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w have|strong="G2192"\w* \w power|strong="G1849"\w*. +\v 4 \w They|strong="G2532"\w* \w were|strong="G3588"\w* told \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w should|strong="G2316"\w* \w not|strong="G3756"\w* hurt \w the|strong="G2532"\w* \w grass|strong="G5528"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w neither|strong="G3761"\w* \w any|strong="G3956"\w* \w green|strong="G5515"\w* \w thing|strong="G3956"\w*, \w neither|strong="G3761"\w* \w any|strong="G3956"\w* \w tree|strong="G1186"\w*, \w but|strong="G2532"\w* \w only|strong="G1487"\w* \w those|strong="G3588"\w* \w people|strong="G3956"\w* \w who|strong="G3588"\w* don’\w t|strong="G3588"\w* \w have|strong="G2192"\w* \w God|strong="G2316"\w*’\w s|strong="G2192"\w* \w seal|strong="G4973"\w* \w on|strong="G1909"\w* \w their|strong="G2532"\w* \w foreheads|strong="G3359"\w*. +\v 5 \w They|strong="G2532"\w* \w were|strong="G3588"\w* \w given|strong="G1325"\w* \w power|strong="G1325"\w*, \w not|strong="G3361"\w* \w to|strong="G2443"\w* kill \w them|strong="G3588"\w*, \w but|strong="G2532"\w* \w to|strong="G2443"\w* torment \w them|strong="G3588"\w* \w for|strong="G2532"\w* \w five|strong="G4002"\w* \w months|strong="G3376"\w*. \w Their|strong="G1438"\w* torment \w was|strong="G3588"\w* \w like|strong="G5613"\w* \w the|strong="G2532"\w* torment \w of|strong="G2532"\w* \w a|strong="G5613"\w* \w scorpion|strong="G4651"\w* \w when|strong="G3752"\w* \w it|strong="G2532"\w* strikes \w a|strong="G5613"\w* person. +\v 6 \w In|strong="G1722"\w* \w those|strong="G3588"\w* \w days|strong="G2250"\w* \w people|strong="G3361"\w* \w will|strong="G2532"\w* \w seek|strong="G2212"\w* \w death|strong="G2288"\w*, \w and|strong="G2532"\w* \w will|strong="G2532"\w* \w in|strong="G1722"\w* \w no|strong="G3756"\w* \w way|strong="G1722"\w* \w find|strong="G2147"\w* \w it|strong="G2532"\w*. \w They|strong="G2532"\w* \w will|strong="G2532"\w* \w desire|strong="G1937"\w* \w to|strong="G2532"\w* \w die|strong="G2288"\w*, \w and|strong="G2532"\w* \w death|strong="G2288"\w* \w will|strong="G2532"\w* \w flee|strong="G5343"\w* \w from|strong="G2532"\w* \w them|strong="G3588"\w*. +\p +\v 7 \w The|strong="G2532"\w* \w shapes|strong="G3667"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* locusts \w were|strong="G3588"\w* \w like|strong="G5613"\w* \w horses|strong="G2462"\w* \w prepared|strong="G2090"\w* \w for|strong="G1519"\w* \w war|strong="G4171"\w*. \w On|strong="G1909"\w* \w their|strong="G2532"\w* \w heads|strong="G2776"\w* \w were|strong="G3588"\w* something \w like|strong="G5613"\w* golden \w crowns|strong="G4735"\w*, \w and|strong="G2532"\w* \w their|strong="G2532"\w* \w faces|strong="G4383"\w* \w were|strong="G3588"\w* \w like|strong="G5613"\w* \w people|strong="G4383"\w*’s \w faces|strong="G4383"\w*. +\v 8 \w They|strong="G2532"\w* \w had|strong="G2192"\w* \w hair|strong="G2359"\w* \w like|strong="G5613"\w* \w women|strong="G1135"\w*’\w s|strong="G2192"\w* \w hair|strong="G2359"\w*, \w and|strong="G2532"\w* \w their|strong="G2532"\w* \w teeth|strong="G3599"\w* \w were|strong="G1510"\w* \w like|strong="G5613"\w* \w those|strong="G3588"\w* \w of|strong="G2532"\w* \w lions|strong="G3023"\w*. +\v 9 \w They|strong="G2532"\w* \w had|strong="G2192"\w* \w breastplates|strong="G2382"\w* \w like|strong="G5613"\w* \w breastplates|strong="G2382"\w* \w of|strong="G2532"\w* \w iron|strong="G4603"\w*. \w The|strong="G2532"\w* \w sound|strong="G5456"\w* \w of|strong="G2532"\w* \w their|strong="G2532"\w* \w wings|strong="G4420"\w* \w was|strong="G3588"\w* \w like|strong="G5613"\w* \w the|strong="G2532"\w* \w sound|strong="G5456"\w* \w of|strong="G2532"\w* \w many|strong="G4183"\w* chariots \w and|strong="G2532"\w* \w horses|strong="G2462"\w* \w rushing|strong="G5143"\w* \w to|strong="G1519"\w* \w war|strong="G4171"\w*. +\v 10 \w They|strong="G2532"\w* \w have|strong="G2192"\w* \w tails|strong="G3769"\w* \w like|strong="G3664"\w* \w those|strong="G3588"\w* \w of|strong="G2532"\w* \w scorpions|strong="G4651"\w*, \w with|strong="G1722"\w* \w stingers|strong="G2759"\w*. \w In|strong="G1722"\w* \w their|strong="G2532"\w* \w tails|strong="G3769"\w* \w they|strong="G2532"\w* \w have|strong="G2192"\w* \w power|strong="G1849"\w* \w to|strong="G2532"\w* harm \w men|strong="G3588"\w* \w for|strong="G1722"\w* \w five|strong="G4002"\w* \w months|strong="G3376"\w*. +\v 11 \w They|strong="G2532"\w* \w have|strong="G2192"\w* \w over|strong="G1909"\w* \w them|strong="G3588"\w* \w as|strong="G1722"\w* \w king|strong="G3588"\w* \w the|strong="G1722"\w* angel \w of|strong="G2532"\w* \w the|strong="G1722"\w* abyss. \w His|strong="G1909"\w* \w name|strong="G3686"\w* \w in|strong="G1722"\w* \w Hebrew|strong="G1447"\w* \w is|strong="G3588"\w* “Abaddon”,\f + \fr 9:11 \ft “Abaddon” is a Hebrew word that means “ruin”, “destruction”, or “the place of destruction”\f* \w but|strong="G2532"\w* \w in|strong="G1722"\w* \w Greek|strong="G1673"\w*, \w he|strong="G2532"\w* \w has|strong="G2192"\w* \w the|strong="G1722"\w* \w name|strong="G3686"\w* “Apollyon”.\f + \fr 9:11 \ft “Apollyon” means “Destroyer”.\f* +\p +\v 12 \w The|strong="G3588"\w* \w first|strong="G1520"\w* \w woe|strong="G3759"\w* \w is|strong="G3588"\w* past. \w Behold|strong="G2400"\w*, \w there|strong="G3778"\w* \w are|strong="G3588"\w* \w still|strong="G2089"\w* \w two|strong="G1417"\w* \w woes|strong="G3759"\w* \w coming|strong="G2064"\w* \w after|strong="G3326"\w* \w this|strong="G3778"\w*. +\p +\v 13 \w The|strong="G2532"\w* \w sixth|strong="G1623"\w* angel \w sounded|strong="G4537"\w*. \w I|strong="G2532"\w* heard \w a|strong="G2532"\w* \w voice|strong="G5456"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w horns|strong="G2768"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w golden|strong="G5552"\w* \w altar|strong="G2379"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w before|strong="G1799"\w* \w God|strong="G2316"\w*, +\v 14 \w saying|strong="G3004"\w* \w to|strong="G1909"\w* \w the|strong="G1909"\w* \w sixth|strong="G1623"\w* angel \w who|strong="G3588"\w* \w had|strong="G2192"\w* \w the|strong="G1909"\w* \w trumpet|strong="G4536"\w*, “\w Free|strong="G3089"\w* \w the|strong="G1909"\w* \w four|strong="G5064"\w* angels \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w bound|strong="G1210"\w* \w at|strong="G1909"\w* \w the|strong="G1909"\w* \w great|strong="G3173"\w* \w river|strong="G4215"\w* \w Euphrates|strong="G2166"\w*!” +\p +\v 15 \w The|strong="G2532"\w* \w four|strong="G5064"\w* angels \w were|strong="G3588"\w* freed \w who|strong="G3588"\w* \w had|strong="G2532"\w* \w been|strong="G2532"\w* \w prepared|strong="G2090"\w* \w for|strong="G1519"\w* \w that|strong="G2443"\w* \w hour|strong="G5610"\w* \w and|strong="G2532"\w* \w day|strong="G2250"\w* \w and|strong="G2532"\w* \w month|strong="G3376"\w* \w and|strong="G2532"\w* \w year|strong="G1763"\w*, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w they|strong="G2532"\w* \w might|strong="G2532"\w* kill \w one|strong="G3588"\w* \w third|strong="G5154"\w* \w of|strong="G2250"\w* mankind. +\v 16 \w The|strong="G2532"\w* number \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w armies|strong="G4753"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w horsemen|strong="G2461"\w* \w was|strong="G3588"\w* two hundred \w million|strong="G3461"\w*.\f + \fr 9:16 \ft literally, “ten thousands of ten thousands”\f* \w I|strong="G2532"\w* heard \w the|strong="G2532"\w* number \w of|strong="G2532"\w* \w them|strong="G3588"\w*. +\v 17 \w Thus|strong="G3779"\w* \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w the|strong="G1722"\w* \w horses|strong="G2462"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w vision|strong="G3706"\w* \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w sat|strong="G2521"\w* \w on|strong="G1909"\w* \w them|strong="G3588"\w*, \w having|strong="G2192"\w* \w breastplates|strong="G2382"\w* \w of|strong="G1537"\w* \w fiery|strong="G4442"\w* red, \w hyacinth|strong="G5191"\w* blue, \w and|strong="G2532"\w* \w sulfur|strong="G2303"\w* \w yellow|strong="G5191"\w*; \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w horses|strong="G2462"\w*’ \w heads|strong="G2776"\w* resembled \w lions|strong="G3023"\w*’ \w heads|strong="G2776"\w*. \w Out|strong="G1537"\w* \w of|strong="G1537"\w* \w their|strong="G2532"\w* \w mouths|strong="G4750"\w* \w proceed|strong="G1607"\w* \w fire|strong="G4442"\w*, \w smoke|strong="G2586"\w*, \w and|strong="G2532"\w* \w sulfur|strong="G2303"\w*. +\v 18 \w By|strong="G1537"\w* \w these|strong="G3778"\w* \w three|strong="G5140"\w* \w plagues|strong="G4127"\w*, \w one|strong="G3588"\w* \w third|strong="G5154"\w* \w of|strong="G1537"\w* mankind \w was|strong="G3588"\w* killed: \w by|strong="G1537"\w* \w the|strong="G2532"\w* \w fire|strong="G4442"\w*, \w the|strong="G2532"\w* \w smoke|strong="G2586"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w sulfur|strong="G2303"\w*, \w which|strong="G3588"\w* \w proceeded|strong="G1607"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w their|strong="G2532"\w* \w mouths|strong="G4750"\w*. +\v 19 \w For|strong="G1063"\w* \w the|strong="G1722"\w* \w power|strong="G1849"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w horses|strong="G2462"\w* \w is|strong="G1510"\w* \w in|strong="G1722"\w* \w their|strong="G2532"\w* \w mouths|strong="G4750"\w* \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w their|strong="G2532"\w* \w tails|strong="G3769"\w*. \w For|strong="G1063"\w* \w their|strong="G2532"\w* \w tails|strong="G3769"\w* \w are|strong="G1510"\w* \w like|strong="G3664"\w* \w serpents|strong="G3789"\w*, \w and|strong="G2532"\w* \w have|strong="G2192"\w* \w heads|strong="G2776"\w*; \w and|strong="G2532"\w* \w with|strong="G1722"\w* \w them|strong="G3588"\w* \w they|strong="G2532"\w* harm. +\p +\v 20 \w The|strong="G1722"\w* \w rest|strong="G3062"\w* \w of|strong="G1537"\w* mankind, \w who|strong="G3739"\w* \w were|strong="G3588"\w* \w not|strong="G3756"\w* killed \w with|strong="G1722"\w* \w these|strong="G3778"\w* \w plagues|strong="G4127"\w*, didn’\w t|strong="G3588"\w* \w repent|strong="G3340"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w works|strong="G2041"\w* \w of|strong="G1537"\w* \w their|strong="G2532"\w* \w hands|strong="G5495"\w*, \w that|strong="G2443"\w* \w they|strong="G2532"\w* wouldn’\w t|strong="G3588"\w* \w worship|strong="G4352"\w* \w demons|strong="G1140"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w idols|strong="G1497"\w* \w of|strong="G1537"\w* \w gold|strong="G5552"\w*, \w and|strong="G2532"\w* \w of|strong="G1537"\w* silver, \w and|strong="G2532"\w* \w of|strong="G1537"\w* \w brass|strong="G5470"\w*, \w and|strong="G2532"\w* \w of|strong="G1537"\w* \w stone|strong="G3035"\w*, \w and|strong="G2532"\w* \w of|strong="G1537"\w* \w wood|strong="G3585"\w*, \w which|strong="G3739"\w* \w can|strong="G1410"\w*’\w t|strong="G3588"\w* see, hear, \w or|strong="G2532"\w* \w walk|strong="G4043"\w*. +\v 21 \w They|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w repent|strong="G3340"\w* \w of|strong="G1537"\w* \w their|strong="G2532"\w* \w murders|strong="G5408"\w*, \w their|strong="G2532"\w* \w sorceries|strong="G5331"\w*,\f + \fr 9:21 \ft The word for “sorceries” (pharmakeia) also implies the use of potions, poisons, and drugs\f* \w their|strong="G2532"\w* \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w*, \w or|strong="G2532"\w* \w their|strong="G2532"\w* \w thefts|strong="G2809"\w*. +\c 10 +\p +\v 1 \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w a|strong="G5613"\w* \w mighty|strong="G2478"\w* \w angel|strong="G2597"\w* \w coming|strong="G2597"\w* \w down|strong="G2597"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w*, \w clothed|strong="G4016"\w* \w with|strong="G1537"\w* \w a|strong="G5613"\w* \w cloud|strong="G3507"\w*. \w A|strong="G5613"\w* \w rainbow|strong="G2463"\w* \w was|strong="G3588"\w* \w on|strong="G1909"\w* \w his|strong="G1909"\w* \w head|strong="G2776"\w*. \w His|strong="G1909"\w* \w face|strong="G4383"\w* \w was|strong="G3588"\w* \w like|strong="G5613"\w* \w the|strong="G2532"\w* \w sun|strong="G2246"\w*, \w and|strong="G2532"\w* \w his|strong="G1909"\w* \w feet|strong="G4228"\w* \w like|strong="G5613"\w* \w pillars|strong="G4769"\w* \w of|strong="G1537"\w* \w fire|strong="G4442"\w*. +\v 2 \w He|strong="G2532"\w* \w had|strong="G2192"\w* \w in|strong="G1722"\w* \w his|strong="G1909"\w* \w hand|strong="G5495"\w* \w a|strong="G2192"\w* little open \w book|strong="G3588"\w*. \w He|strong="G2532"\w* \w set|strong="G5087"\w* \w his|strong="G1909"\w* \w right|strong="G1188"\w* \w foot|strong="G4228"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w*, \w and|strong="G2532"\w* \w his|strong="G1909"\w* \w left|strong="G2176"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w land|strong="G1093"\w*. +\v 3 \w He|strong="G2532"\w* \w cried|strong="G2896"\w* \w with|strong="G2532"\w* \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, \w as|strong="G5618"\w* \w a|strong="G2532"\w* \w lion|strong="G3023"\w* \w roars|strong="G3455"\w*. \w When|strong="G3753"\w* \w he|strong="G2532"\w* \w cried|strong="G2896"\w*, \w the|strong="G2532"\w* \w seven|strong="G2033"\w* \w thunders|strong="G1027"\w* \w uttered|strong="G2980"\w* \w their|strong="G1438"\w* \w voices|strong="G5456"\w*. +\v 4 \w When|strong="G3753"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* \w thunders|strong="G1027"\w* \w sounded|strong="G2980"\w*, \w I|strong="G3739"\w* \w was|strong="G3588"\w* \w about|strong="G3195"\w* \w to|strong="G2532"\w* \w write|strong="G1125"\w*; \w but|strong="G2532"\w* \w I|strong="G3739"\w* heard \w a|strong="G2532"\w* \w voice|strong="G5456"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w* \w saying|strong="G3004"\w*, “\w Seal|strong="G4972"\w* \w up|strong="G4972"\w* \w the|strong="G2532"\w* \w things|strong="G3588"\w* \w which|strong="G3739"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* \w thunders|strong="G1027"\w* \w said|strong="G3004"\w*, \w and|strong="G2532"\w* don’\w t|strong="G3588"\w* \w write|strong="G1125"\w* \w them|strong="G3588"\w*.” +\p +\v 5 \w The|strong="G2532"\w* angel \w whom|strong="G3739"\w* \w I|strong="G3739"\w* \w saw|strong="G3708"\w* \w standing|strong="G2476"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w* \w and|strong="G2532"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w land|strong="G1093"\w* \w lifted|strong="G2532"\w* \w up|strong="G1519"\w* \w his|strong="G1519"\w* \w right|strong="G1188"\w* \w hand|strong="G5495"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w* +\v 6 \w and|strong="G2532"\w* \w swore|strong="G3660"\w* \w by|strong="G1722"\w* \w him|strong="G3588"\w* \w who|strong="G3739"\w* \w lives|strong="G2198"\w* \w forever|strong="G1519"\w* \w and|strong="G2532"\w* \w ever|strong="G1519"\w*, \w who|strong="G3739"\w* \w created|strong="G2936"\w* \w heaven|strong="G3772"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w things|strong="G3588"\w* \w that|strong="G3754"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w it|strong="G2532"\w*, \w the|strong="G1722"\w* \w earth|strong="G1093"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w things|strong="G3588"\w* \w that|strong="G3754"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w it|strong="G2532"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w things|strong="G3588"\w* \w that|strong="G3754"\w* \w are|strong="G1510"\w* \w in|strong="G1722"\w* \w it|strong="G2532"\w*, \w that|strong="G3754"\w* \w there|strong="G2532"\w* \w will|strong="G1510"\w* \w no|strong="G3765"\w* \w longer|strong="G3765"\w* \w be|strong="G1510"\w* \w delay|strong="G5550"\w*, +\v 7 \w but|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w days|strong="G2250"\w* \w of|strong="G2250"\w* \w the|strong="G1722"\w* \w voice|strong="G5456"\w* \w of|strong="G2250"\w* \w the|strong="G1722"\w* \w seventh|strong="G1442"\w* angel, \w when|strong="G3752"\w* \w he|strong="G2532"\w* \w is|strong="G3588"\w* \w about|strong="G5613"\w* \w to|strong="G2532"\w* \w sound|strong="G5456"\w*, \w then|strong="G2532"\w* \w the|strong="G1722"\w* \w mystery|strong="G3466"\w* \w of|strong="G2250"\w* \w God|strong="G2316"\w* \w is|strong="G3588"\w* \w finished|strong="G5055"\w*, \w as|strong="G5613"\w* \w he|strong="G2532"\w* \w declared|strong="G2097"\w* \w to|strong="G2532"\w* \w his|strong="G1438"\w* \w servants|strong="G1401"\w* \w the|strong="G1722"\w* \w prophets|strong="G4396"\w*. +\p +\v 8 \w The|strong="G1722"\w* \w voice|strong="G5456"\w* \w which|strong="G3739"\w* \w I|strong="G1473"\w* heard \w from|strong="G1537"\w* \w heaven|strong="G3772"\w*, \w again|strong="G3825"\w* \w speaking|strong="G2980"\w* \w with|strong="G3326"\w* \w me|strong="G1473"\w*, \w said|strong="G3004"\w*, “\w Go|strong="G5217"\w*, \w take|strong="G2983"\w* \w the|strong="G1722"\w* \w book|strong="G3588"\w* \w which|strong="G3739"\w* \w is|strong="G3588"\w* open \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w hand|strong="G5495"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* angel \w who|strong="G3739"\w* \w stands|strong="G2476"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w* \w and|strong="G2532"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w land|strong="G1093"\w*.” +\p +\v 9 \w I|strong="G1473"\w* \w went|strong="G2532"\w* \w to|strong="G4314"\w* \w the|strong="G1722"\w* angel, \w telling|strong="G3004"\w* \w him|strong="G3588"\w* \w to|strong="G4314"\w* \w give|strong="G1325"\w* \w me|strong="G1325"\w* \w the|strong="G1722"\w* little \w book|strong="G3588"\w*. +\p \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G4314"\w* \w me|strong="G1325"\w*, “\w Take|strong="G2983"\w* \w it|strong="G2532"\w* \w and|strong="G2532"\w* \w eat|strong="G2719"\w* \w it|strong="G2532"\w*. \w It|strong="G2532"\w* \w will|strong="G1510"\w* \w make|strong="G2532"\w* \w your|strong="G2532"\w* \w stomach|strong="G2836"\w* \w bitter|strong="G4087"\w*, \w but|strong="G2532"\w* \w in|strong="G1722"\w* \w your|strong="G2532"\w* \w mouth|strong="G4750"\w* \w it|strong="G2532"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w as|strong="G5613"\w* \w sweet|strong="G1099"\w* \w as|strong="G5613"\w* \w honey|strong="G3192"\w*.” +\p +\v 10 \w I|strong="G1473"\w* \w took|strong="G2983"\w* \w the|strong="G1722"\w* little \w book|strong="G3588"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* angel’s \w hand|strong="G5495"\w*, \w and|strong="G2532"\w* \w ate|strong="G2068"\w* \w it|strong="G2532"\w*. \w It|strong="G2532"\w* \w was|strong="G1510"\w* \w as|strong="G5613"\w* \w sweet|strong="G1099"\w* \w as|strong="G5613"\w* \w honey|strong="G3192"\w* \w in|strong="G1722"\w* \w my|strong="G1722"\w* \w mouth|strong="G4750"\w*. \w When|strong="G3753"\w* \w I|strong="G1473"\w* \w had|strong="G2532"\w* \w eaten|strong="G5315"\w* \w it|strong="G2532"\w*, \w my|strong="G1722"\w* \w stomach|strong="G2836"\w* \w was|strong="G1510"\w* \w made|strong="G4087"\w* \w bitter|strong="G4087"\w*. +\v 11 \w They|strong="G2532"\w*\f + \fr 10:11 \ft TR reads “He” instead of “They”\f* \w told|strong="G3004"\w* \w me|strong="G1473"\w*, “\w You|strong="G4771"\w* \w must|strong="G1163"\w* \w prophesy|strong="G4395"\w* \w again|strong="G3825"\w* \w over|strong="G1909"\w* \w many|strong="G4183"\w* \w peoples|strong="G2992"\w*, \w nations|strong="G1484"\w*, \w languages|strong="G1100"\w*, \w and|strong="G2532"\w* kings.” +\c 11 +\p +\v 1 \w A|strong="G2532"\w* \w reed|strong="G2563"\w* \w like|strong="G3664"\w* \w a|strong="G2532"\w* \w rod|strong="G4464"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* \w me|strong="G1325"\w*. Someone \w said|strong="G3004"\w*, “\w Rise|strong="G1453"\w* \w and|strong="G2532"\w* \w measure|strong="G3354"\w* \w God|strong="G2316"\w*’s \w temple|strong="G3485"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w altar|strong="G2379"\w*, \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w worship|strong="G4352"\w* \w in|strong="G1722"\w* \w it|strong="G2532"\w*. +\v 2 \w Leave|strong="G1544"\w* \w out|strong="G1544"\w* \w the|strong="G2532"\w* court \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w outside|strong="G1855"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w temple|strong="G3485"\w*, \w and|strong="G2532"\w* don’\w t|strong="G3588"\w* \w measure|strong="G3354"\w* \w it|strong="G2532"\w*, \w for|strong="G3754"\w* \w it|strong="G2532"\w* \w has|strong="G3748"\w* \w been|strong="G2532"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w nations|strong="G1484"\w*. \w They|strong="G2532"\w* \w will|strong="G2532"\w* \w tread|strong="G3961"\w* \w the|strong="G2532"\w* holy \w city|strong="G4172"\w* \w under|strong="G3961"\w* \w foot|strong="G3961"\w* \w for|strong="G3754"\w* forty-two \w months|strong="G3376"\w*. +\v 3 \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w give|strong="G1325"\w* \w power|strong="G1325"\w* \w to|strong="G2532"\w* \w my|strong="G1325"\w* \w two|strong="G1417"\w* \w witnesses|strong="G3144"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w will|strong="G2532"\w* \w prophesy|strong="G4395"\w* \w one|strong="G3588"\w* \w thousand|strong="G5507"\w* \w two|strong="G1417"\w* \w hundred|strong="G1250"\w* \w sixty|strong="G1835"\w* \w days|strong="G2250"\w*, \w clothed|strong="G4016"\w* \w in|strong="G2532"\w* \w sackcloth|strong="G4526"\w*.” +\p +\v 4 \w These|strong="G3778"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* \w two|strong="G1417"\w* \w olive|strong="G1636"\w* \w trees|strong="G1636"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w two|strong="G1417"\w* lamp \w stands|strong="G2476"\w*, \w standing|strong="G2476"\w* \w before|strong="G1799"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*. +\v 5 \w If|strong="G1487"\w* \w anyone|strong="G5100"\w* \w desires|strong="G2309"\w* \w to|strong="G2532"\w* harm \w them|strong="G3588"\w*, \w fire|strong="G4442"\w* \w proceeds|strong="G1607"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w their|strong="G1438"\w* \w mouth|strong="G4750"\w* \w and|strong="G2532"\w* \w devours|strong="G2719"\w* \w their|strong="G1438"\w* \w enemies|strong="G2190"\w*. \w If|strong="G1487"\w* \w anyone|strong="G5100"\w* \w desires|strong="G2309"\w* \w to|strong="G2532"\w* harm \w them|strong="G3588"\w*, \w he|strong="G2532"\w* \w must|strong="G1163"\w* \w be|strong="G2532"\w* killed \w in|strong="G2532"\w* \w this|strong="G3588"\w* \w way|strong="G3779"\w*. +\v 6 \w These|strong="G3778"\w* \w have|strong="G2192"\w* \w the|strong="G1722"\w* \w power|strong="G1849"\w* \w to|strong="G1519"\w* \w shut|strong="G2808"\w* \w up|strong="G1519"\w* \w the|strong="G1722"\w* \w sky|strong="G3772"\w*, \w that|strong="G2443"\w* \w it|strong="G2532"\w* \w may|strong="G2532"\w* \w not|strong="G3361"\w* \w rain|strong="G5205"\w* \w during|strong="G1722"\w* \w the|strong="G1722"\w* \w days|strong="G2250"\w* \w of|strong="G2250"\w* \w their|strong="G2532"\w* \w prophecy|strong="G4394"\w*. \w They|strong="G2532"\w* \w have|strong="G2192"\w* \w power|strong="G1849"\w* \w over|strong="G1909"\w* \w the|strong="G1722"\w* \w waters|strong="G5204"\w*, \w to|strong="G1519"\w* \w turn|strong="G4762"\w* \w them|strong="G3588"\w* \w into|strong="G1519"\w* blood, \w and|strong="G2532"\w* \w to|strong="G1519"\w* \w strike|strong="G3960"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w* \w with|strong="G1722"\w* \w every|strong="G3956"\w* \w plague|strong="G4127"\w*, \w as|strong="G1519"\w* \w often|strong="G3740"\w* \w as|strong="G1519"\w* \w they|strong="G2532"\w* \w desire|strong="G2309"\w*. +\p +\v 7 \w When|strong="G3752"\w* \w they|strong="G2532"\w* \w have|strong="G2532"\w* \w finished|strong="G5055"\w* \w their|strong="G1438"\w* \w testimony|strong="G3141"\w*, \w the|strong="G2532"\w* \w beast|strong="G2342"\w* \w that|strong="G3588"\w* \w comes|strong="G2532"\w* \w up|strong="G5055"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* abyss \w will|strong="G2532"\w* \w make|strong="G4160"\w* \w war|strong="G4171"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w overcome|strong="G3528"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* kill \w them|strong="G3588"\w*. +\v 8 \w Their|strong="G2532"\w* \w dead|strong="G4430"\w* \w bodies|strong="G4430"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w in|strong="G1909"\w* \w the|strong="G2532"\w* \w street|strong="G4113"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w great|strong="G3173"\w* \w city|strong="G4172"\w*, \w which|strong="G3588"\w* \w spiritually|strong="G4153"\w* \w is|strong="G3588"\w* \w called|strong="G2564"\w* \w Sodom|strong="G4670"\w* \w and|strong="G2532"\w* Egypt, \w where|strong="G3699"\w* \w also|strong="G2532"\w* \w their|strong="G2532"\w* \w Lord|strong="G2962"\w* \w was|strong="G3588"\w* \w crucified|strong="G4717"\w*. +\v 9 \w From|strong="G1537"\w* \w among|strong="G1519"\w* \w the|strong="G2532"\w* \w peoples|strong="G2992"\w*, \w tribes|strong="G5443"\w*, \w languages|strong="G1100"\w*, \w and|strong="G2532"\w* \w nations|strong="G1484"\w*, \w people|strong="G2992"\w* \w will|strong="G2532"\w* look \w at|strong="G1519"\w* \w their|strong="G2532"\w* \w dead|strong="G4430"\w* \w bodies|strong="G4430"\w* \w for|strong="G1519"\w* \w three|strong="G5140"\w* \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w half|strong="G2255"\w* \w days|strong="G2250"\w*, \w and|strong="G2532"\w* \w will|strong="G2532"\w* \w not|strong="G3756"\w* allow \w their|strong="G2532"\w* \w dead|strong="G4430"\w* \w bodies|strong="G4430"\w* \w to|strong="G1519"\w* \w be|strong="G2532"\w* \w laid|strong="G5087"\w* \w in|strong="G1519"\w* \w a|strong="G2532"\w* \w tomb|strong="G3418"\w*. +\v 10 \w Those|strong="G3588"\w* \w who|strong="G3588"\w* \w dwell|strong="G2730"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w will|strong="G2532"\w* \w rejoice|strong="G5463"\w* \w over|strong="G1909"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w glad|strong="G5463"\w*. \w They|strong="G2532"\w* \w will|strong="G2532"\w* give \w gifts|strong="G1435"\w* \w to|strong="G2532"\w* \w one|strong="G3588"\w* \w another|strong="G3588"\w*, \w because|strong="G3754"\w* \w these|strong="G3778"\w* \w two|strong="G1417"\w* \w prophets|strong="G4396"\w* tormented \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w dwell|strong="G2730"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*. +\p +\v 11 \w After|strong="G3326"\w* \w the|strong="G1722"\w* \w three|strong="G5140"\w* \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w half|strong="G2255"\w* \w days|strong="G2250"\w*, \w the|strong="G1722"\w* \w breath|strong="G4151"\w* \w of|strong="G1537"\w* \w life|strong="G2222"\w* \w from|strong="G1537"\w* \w God|strong="G2316"\w* \w entered|strong="G1525"\w* \w into|strong="G1909"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w stood|strong="G2476"\w* \w on|strong="G1909"\w* \w their|strong="G1438"\w* \w feet|strong="G4228"\w*. \w Great|strong="G3173"\w* \w fear|strong="G5401"\w* \w fell|strong="G1968"\w* \w on|strong="G1909"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w saw|strong="G2334"\w* \w them|strong="G3588"\w*. +\v 12 \w I|strong="G2532"\w* heard \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w* \w from|strong="G1537"\w* \w heaven|strong="G3772"\w* \w saying|strong="G3004"\w* \w to|strong="G1519"\w* \w them|strong="G3588"\w*, “\w Come|strong="G2532"\w* \w up|strong="G1519"\w* \w here|strong="G5602"\w*!” \w They|strong="G2532"\w* \w went|strong="G2532"\w* \w up|strong="G1519"\w* \w into|strong="G1519"\w* \w heaven|strong="G3772"\w* \w in|strong="G1722"\w* \w a|strong="G2532"\w* \w cloud|strong="G3507"\w*, \w and|strong="G2532"\w* \w their|strong="G1438"\w* \w enemies|strong="G2190"\w* \w saw|strong="G2334"\w* \w them|strong="G3588"\w*. +\v 13 \w In|strong="G1722"\w* \w that|strong="G3588"\w* \w day|strong="G5610"\w* \w there|strong="G2532"\w* \w was|strong="G1096"\w* \w a|strong="G1096"\w* \w great|strong="G3173"\w* \w earthquake|strong="G4578"\w*, \w and|strong="G2532"\w* \w a|strong="G1096"\w* \w tenth|strong="G1182"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w city|strong="G4172"\w* \w fell|strong="G4098"\w*. \w Seven|strong="G2033"\w* \w thousand|strong="G5505"\w* \w people|strong="G3588"\w* \w were|strong="G3588"\w* killed \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w earthquake|strong="G4578"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w rest|strong="G3062"\w* \w were|strong="G3588"\w* \w terrified|strong="G1719"\w* \w and|strong="G2532"\w* \w gave|strong="G1325"\w* \w glory|strong="G1391"\w* \w to|strong="G2532"\w* \w the|strong="G1722"\w* \w God|strong="G2316"\w* \w of|strong="G2316"\w* \w heaven|strong="G3772"\w*. +\p +\v 14 \w The|strong="G3588"\w* \w second|strong="G1208"\w* \w woe|strong="G3759"\w* \w is|strong="G3588"\w* past. \w Behold|strong="G2400"\w*, \w the|strong="G3588"\w* \w third|strong="G5154"\w* \w woe|strong="G3759"\w* \w comes|strong="G2064"\w* \w quickly|strong="G5035"\w*. +\p +\v 15 \w The|strong="G1722"\w* \w seventh|strong="G1442"\w* angel \w sounded|strong="G4537"\w*, \w and|strong="G2532"\w* \w great|strong="G3173"\w* \w voices|strong="G5456"\w* \w in|strong="G1722"\w* \w heaven|strong="G3772"\w* \w followed|strong="G1096"\w*, \w saying|strong="G3004"\w*, “\w The|strong="G1722"\w* kingdom \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w* \w has|strong="G2962"\w* \w become|strong="G1096"\w* \w the|strong="G1722"\w* Kingdom \w of|strong="G2532"\w* \w our|strong="G2532"\w* \w Lord|strong="G2962"\w* \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w his|strong="G1519"\w* \w Christ|strong="G5547"\w*. \w He|strong="G2532"\w* \w will|strong="G2532"\w* \w reign|strong="G2532"\w* \w forever|strong="G1519"\w* \w and|strong="G2532"\w* \w ever|strong="G1519"\w*!” +\p +\v 16 \w The|strong="G2532"\w* \w twenty-four|strong="G1501"\w* \w elders|strong="G4245"\w*, \w who|strong="G3739"\w* \w sit|strong="G2521"\w* \w on|strong="G1909"\w* \w their|strong="G2532"\w* \w thrones|strong="G2362"\w* \w before|strong="G1799"\w* \w God|strong="G2316"\w*’s \w throne|strong="G2362"\w*, \w fell|strong="G4098"\w* \w on|strong="G1909"\w* \w their|strong="G2532"\w* \w faces|strong="G4383"\w* \w and|strong="G2532"\w* \w worshiped|strong="G4352"\w* \w God|strong="G2316"\w*, +\v 17 \w saying|strong="G3004"\w*: “\w We|strong="G3754"\w* \w give|strong="G2168"\w* \w you|strong="G4771"\w* \w thanks|strong="G2168"\w*, \w Lord|strong="G2962"\w* \w God|strong="G2316"\w*, \w the|strong="G2532"\w* \w Almighty|strong="G3841"\w*, \w the|strong="G2532"\w* \w one|strong="G3588"\w* \w who|strong="G3588"\w* \w is|strong="G1510"\w* \w and|strong="G2532"\w* \w who|strong="G3588"\w* \w was|strong="G1510"\w*,\f + \fr 11:17 \ft TR adds “and who is coming”\f* \w because|strong="G3754"\w* \w you|strong="G4771"\w* \w have|strong="G2532"\w* \w taken|strong="G2983"\w* \w your|strong="G2962"\w* \w great|strong="G3173"\w* \w power|strong="G1411"\w* \w and|strong="G2532"\w* reigned. +\v 18 \w The|strong="G2532"\w* \w nations|strong="G1484"\w* \w were|strong="G3588"\w* \w angry|strong="G3710"\w*, \w and|strong="G2532"\w* \w your|strong="G2532"\w* \w wrath|strong="G3709"\w* \w came|strong="G2064"\w*, \w as|strong="G2532"\w* \w did|strong="G2532"\w* \w the|strong="G2532"\w* \w time|strong="G2540"\w* \w for|strong="G2532"\w* \w the|strong="G2532"\w* \w dead|strong="G3498"\w* \w to|strong="G2532"\w* \w be|strong="G2532"\w* \w judged|strong="G2919"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w give|strong="G1325"\w* \w your|strong="G2532"\w* bondservants \w the|strong="G2532"\w* \w prophets|strong="G4396"\w*, \w their|strong="G2532"\w* \w reward|strong="G3408"\w*, \w as|strong="G2532"\w* \w well|strong="G2532"\w* \w as|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* saints \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w fear|strong="G5399"\w* \w your|strong="G2532"\w* \w name|strong="G3686"\w*, \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w small|strong="G3398"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w great|strong="G3173"\w*, \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w destroy|strong="G1311"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w destroy|strong="G1311"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*.” +\p +\v 19 \w God|strong="G2316"\w*’s \w temple|strong="G3485"\w* \w that|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w heaven|strong="G3772"\w* \w was|strong="G1096"\w* opened, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w ark|strong="G2787"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* \w Lord|strong="G3588"\w*’s \w covenant|strong="G1242"\w* \w was|strong="G1096"\w* \w seen|strong="G3708"\w* \w in|strong="G1722"\w* \w his|strong="G1722"\w* \w temple|strong="G3485"\w*. Lightnings, \w sounds|strong="G5456"\w*, \w thunders|strong="G1027"\w*, \w an|strong="G2532"\w* \w earthquake|strong="G4578"\w*, \w and|strong="G2532"\w* \w great|strong="G3173"\w* \w hail|strong="G5464"\w* \w followed|strong="G1096"\w*. +\c 12 +\p +\v 1 \w A|strong="G2532"\w* \w great|strong="G3173"\w* \w sign|strong="G4592"\w* \w was|strong="G3588"\w* \w seen|strong="G3708"\w* \w in|strong="G1722"\w* \w heaven|strong="G3772"\w*: \w a|strong="G2532"\w* \w woman|strong="G1135"\w* \w clothed|strong="G4016"\w* \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w sun|strong="G2246"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w moon|strong="G4582"\w* \w under|strong="G5270"\w* \w her|strong="G3708"\w* \w feet|strong="G4228"\w*, \w and|strong="G2532"\w* \w on|strong="G1909"\w* \w her|strong="G3708"\w* \w head|strong="G2776"\w* \w a|strong="G2532"\w* \w crown|strong="G4735"\w* \w of|strong="G2532"\w* \w twelve|strong="G1427"\w* stars. +\v 2 \w She|strong="G2532"\w* \w was|strong="G2532"\w* \w with|strong="G1722"\w* \w child|strong="G1064"\w*. \w She|strong="G2532"\w* \w cried|strong="G2896"\w* \w out|strong="G2896"\w* \w in|strong="G1722"\w* pain, laboring \w to|strong="G2532"\w* \w give|strong="G5088"\w* \w birth|strong="G5088"\w*. +\p +\v 3 \w Another|strong="G3588"\w* \w sign|strong="G4592"\w* \w was|strong="G3588"\w* \w seen|strong="G3708"\w* \w in|strong="G1722"\w* \w heaven|strong="G3772"\w*. \w Behold|strong="G2400"\w*, \w a|strong="G2192"\w* \w great|strong="G3173"\w* \w red|strong="G4450"\w* \w dragon|strong="G1404"\w*, \w having|strong="G2192"\w* \w seven|strong="G2033"\w* \w heads|strong="G2776"\w* \w and|strong="G2532"\w* \w ten|strong="G1176"\w* \w horns|strong="G2768"\w*, \w and|strong="G2532"\w* \w on|strong="G1909"\w* \w his|strong="G1909"\w* \w heads|strong="G2776"\w* \w seven|strong="G2033"\w* \w crowns|strong="G1238"\w*. +\v 4 \w His|strong="G1438"\w* \w tail|strong="G3769"\w* \w drew|strong="G2532"\w* \w one|strong="G1438"\w* \w third|strong="G5154"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* stars \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w*, \w and|strong="G2532"\w* threw \w them|strong="G3588"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*. \w The|strong="G2532"\w* \w dragon|strong="G1404"\w* \w stood|strong="G2476"\w* \w before|strong="G1799"\w* \w the|strong="G2532"\w* \w woman|strong="G1135"\w* \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w about|strong="G3195"\w* \w to|strong="G1519"\w* \w give|strong="G5088"\w* \w birth|strong="G5088"\w*, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w when|strong="G3752"\w* \w she|strong="G2532"\w* \w gave|strong="G5088"\w* \w birth|strong="G5088"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w devour|strong="G2719"\w* \w her|strong="G1438"\w* \w child|strong="G5043"\w*. +\v 5 \w She|strong="G2532"\w* \w gave|strong="G5088"\w* \w birth|strong="G5088"\w* \w to|strong="G4314"\w* \w a|strong="G2532"\w* \w son|strong="G5207"\w*, \w a|strong="G2532"\w* male \w child|strong="G5043"\w*, \w who|strong="G3739"\w* \w is|strong="G3588"\w* \w to|strong="G4314"\w* \w rule|strong="G4165"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w nations|strong="G1484"\w* \w with|strong="G1722"\w* \w a|strong="G2532"\w* \w rod|strong="G4464"\w* \w of|strong="G5207"\w* \w iron|strong="G4603"\w*. \w Her|strong="G3956"\w* \w child|strong="G5043"\w* \w was|strong="G3588"\w* caught \w up|strong="G2532"\w* \w to|strong="G4314"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w to|strong="G4314"\w* \w his|strong="G3956"\w* \w throne|strong="G2362"\w*. +\v 6 \w The|strong="G2532"\w* \w woman|strong="G1135"\w* \w fled|strong="G5343"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w wilderness|strong="G2048"\w*, \w where|strong="G3699"\w* \w she|strong="G2532"\w* \w has|strong="G2192"\w* \w a|strong="G2192"\w* \w place|strong="G5117"\w* \w prepared|strong="G2090"\w* \w by|strong="G2532"\w* \w God|strong="G2316"\w*, \w that|strong="G2443"\w* \w there|strong="G1563"\w* \w they|strong="G2532"\w* \w may|strong="G2532"\w* nourish \w her|strong="G1438"\w* \w one|strong="G1438"\w* \w thousand|strong="G5507"\w* \w two|strong="G1250"\w* \w hundred|strong="G1250"\w* \w sixty|strong="G1835"\w* \w days|strong="G2250"\w*. +\p +\v 7 \w There|strong="G2532"\w* \w was|strong="G1096"\w* \w war|strong="G4171"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w sky|strong="G3772"\w*. \w Michael|strong="G3413"\w* \w and|strong="G2532"\w* \w his|strong="G1722"\w* angels \w made|strong="G1096"\w* \w war|strong="G4171"\w* \w on|strong="G1722"\w* \w the|strong="G1722"\w* \w dragon|strong="G1404"\w*. \w The|strong="G1722"\w* \w dragon|strong="G1404"\w* \w and|strong="G2532"\w* \w his|strong="G1722"\w* angels \w made|strong="G1096"\w* \w war|strong="G4171"\w*. +\v 8 \w They|strong="G2532"\w* didn’\w t|strong="G3588"\w* prevail. \w No|strong="G3756"\w* \w place|strong="G5117"\w* \w was|strong="G3588"\w* \w found|strong="G2147"\w* \w for|strong="G1722"\w* \w them|strong="G3588"\w* \w any|strong="G2089"\w* \w more|strong="G2089"\w* \w in|strong="G1722"\w* \w heaven|strong="G3772"\w*. +\v 9 \w The|strong="G2532"\w* \w great|strong="G3173"\w* \w dragon|strong="G1404"\w* \w was|strong="G3588"\w* thrown down, \w the|strong="G2532"\w* \w old|strong="G2532"\w* \w serpent|strong="G3789"\w*, \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w called|strong="G2564"\w* \w the|strong="G2532"\w* \w devil|strong="G1228"\w* \w and|strong="G2532"\w* \w Satan|strong="G4567"\w*, \w the|strong="G2532"\w* deceiver \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w whole|strong="G3650"\w* \w world|strong="G3625"\w*. \w He|strong="G2532"\w* \w was|strong="G3588"\w* thrown down \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w and|strong="G2532"\w* \w his|strong="G1519"\w* angels \w were|strong="G3588"\w* thrown down \w with|strong="G3326"\w* \w him|strong="G3588"\w*. +\p +\v 10 \w I|strong="G1473"\w* heard \w a|strong="G1096"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w* \w in|strong="G1722"\w* \w heaven|strong="G3772"\w*, \w saying|strong="G3004"\w*, “\w Now|strong="G2532"\w* \w the|strong="G1722"\w* \w salvation|strong="G4991"\w*, \w the|strong="G1722"\w* \w power|strong="G1411"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* Kingdom \w of|strong="G2250"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w authority|strong="G1849"\w* \w of|strong="G2250"\w* \w his|strong="G1438"\w* \w Christ|strong="G5547"\w* \w has|strong="G2316"\w* \w come|strong="G1096"\w*; \w for|strong="G3754"\w* \w the|strong="G1722"\w* \w accuser|strong="G2725"\w* \w of|strong="G2250"\w* \w our|strong="G2316"\w* brothers \w has|strong="G2316"\w* \w been|strong="G1096"\w* thrown down, \w who|strong="G3588"\w* \w accuses|strong="G2723"\w* \w them|strong="G3588"\w* \w before|strong="G1799"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w* \w day|strong="G2250"\w* \w and|strong="G2532"\w* \w night|strong="G3571"\w*. +\v 11 \w They|strong="G2532"\w* \w overcame|strong="G3528"\w* \w him|strong="G3588"\w* \w because|strong="G1223"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* Lamb’s blood, \w and|strong="G2532"\w* \w because|strong="G1223"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w their|strong="G2532"\w* \w testimony|strong="G3141"\w*. \w They|strong="G2532"\w* didn’\w t|strong="G3588"\w* love \w their|strong="G2532"\w* \w life|strong="G5590"\w*, \w even|strong="G2532"\w* \w to|strong="G2532"\w* \w death|strong="G2288"\w*. +\v 12 \w Therefore|strong="G1223"\w* \w rejoice|strong="G2165"\w*, \w heavens|strong="G3772"\w*, \w and|strong="G2532"\w* \w you|strong="G5210"\w* \w who|strong="G3588"\w* \w dwell|strong="G4637"\w* \w in|strong="G1722"\w* \w them|strong="G3588"\w*. \w Woe|strong="G3759"\w* \w to|strong="G4314"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w* \w and|strong="G2532"\w* \w to|strong="G4314"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w*, \w because|strong="G3754"\w* \w the|strong="G1722"\w* \w devil|strong="G1228"\w* \w has|strong="G2192"\w* gone \w down|strong="G2597"\w* \w to|strong="G4314"\w* \w you|strong="G5210"\w*, \w having|strong="G2192"\w* \w great|strong="G3173"\w* \w wrath|strong="G2372"\w*, \w knowing|strong="G1492"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w has|strong="G2192"\w* \w but|strong="G2532"\w* \w a|strong="G2192"\w* \w short|strong="G3641"\w* \w time|strong="G2540"\w*.” +\p +\v 13 \w When|strong="G3753"\w* \w the|strong="G2532"\w* \w dragon|strong="G1404"\w* \w saw|strong="G3708"\w* \w that|strong="G3754"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* thrown down \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w he|strong="G2532"\w* \w persecuted|strong="G1377"\w* \w the|strong="G2532"\w* \w woman|strong="G1135"\w* \w who|strong="G3588"\w* \w gave|strong="G5088"\w* \w birth|strong="G5088"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* male \w child|strong="G5088"\w*. +\v 14 \w Two|strong="G1417"\w* \w wings|strong="G4420"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w great|strong="G3173"\w* eagle \w were|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w woman|strong="G1135"\w*, \w that|strong="G2443"\w* \w she|strong="G2532"\w* \w might|strong="G2532"\w* \w fly|strong="G4072"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w wilderness|strong="G2048"\w* \w to|strong="G1519"\w* \w her|strong="G1325"\w* \w place|strong="G5117"\w*, \w so|strong="G2443"\w* \w that|strong="G2443"\w* \w she|strong="G2532"\w* \w might|strong="G2532"\w* \w be|strong="G2532"\w* \w nourished|strong="G5142"\w* \w for|strong="G1519"\w* \w a|strong="G2532"\w* \w time|strong="G2540"\w*, \w times|strong="G2540"\w*, \w and|strong="G2532"\w* \w half|strong="G2255"\w* \w a|strong="G2532"\w* \w time|strong="G2540"\w*, \w from|strong="G2532"\w* \w the|strong="G2532"\w* \w face|strong="G4383"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w serpent|strong="G3789"\w*. +\v 15 \w The|strong="G2532"\w* \w serpent|strong="G3789"\w* spewed \w water|strong="G5204"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w his|strong="G1438"\w* \w mouth|strong="G4750"\w* \w after|strong="G3694"\w* \w the|strong="G2532"\w* \w woman|strong="G1135"\w* \w like|strong="G5613"\w* \w a|strong="G5613"\w* \w river|strong="G4215"\w*, \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w might|strong="G2532"\w* \w cause|strong="G4160"\w* \w her|strong="G1438"\w* \w to|strong="G2443"\w* \w be|strong="G2532"\w* \w carried|strong="G2532"\w* \w away|strong="G4216"\w* \w by|strong="G1537"\w* \w the|strong="G2532"\w* stream. +\v 16 \w The|strong="G2532"\w* \w earth|strong="G1093"\w* helped \w the|strong="G2532"\w* \w woman|strong="G1135"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* opened \w its|strong="G1537"\w* \w mouth|strong="G4750"\w* \w and|strong="G2532"\w* \w swallowed|strong="G2666"\w* \w up|strong="G2666"\w* \w the|strong="G2532"\w* \w river|strong="G4215"\w* \w which|strong="G3739"\w* \w the|strong="G2532"\w* \w dragon|strong="G1404"\w* spewed \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w his|strong="G2532"\w* \w mouth|strong="G4750"\w*. +\v 17 \w The|strong="G2532"\w* \w dragon|strong="G1404"\w* grew \w angry|strong="G3710"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w woman|strong="G1135"\w*, \w and|strong="G2532"\w* \w went|strong="G2424"\w* \w away|strong="G3326"\w* \w to|strong="G2532"\w* \w make|strong="G4160"\w* \w war|strong="G4171"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w rest|strong="G3062"\w* \w of|strong="G2316"\w* \w her|strong="G2192"\w* offspring,\f + \fr 12:17 \ft or, seed\f* \w who|strong="G3588"\w* \w keep|strong="G5083"\w* \w God|strong="G2316"\w*’\w s|strong="G2192"\w* \w commandments|strong="G1785"\w* \w and|strong="G2532"\w* \w hold|strong="G2192"\w* \w Jesus|strong="G2424"\w*’ \w testimony|strong="G3141"\w*. +\c 13 +\p +\v 1 \w Then|strong="G2532"\w* \w I|strong="G2532"\w* \w stood|strong="G3588"\w*\f + \fr 13:1 \ft NU reads \fqa he stood\f* \w on|strong="G1909"\w* \w the|strong="G2532"\w* sand \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w*. \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w a|strong="G2192"\w* \w beast|strong="G2342"\w* \w coming|strong="G2342"\w* \w up|strong="G2532"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w*, \w having|strong="G2192"\w* \w ten|strong="G1176"\w* \w horns|strong="G2768"\w* \w and|strong="G2532"\w* \w seven|strong="G2033"\w* \w heads|strong="G2776"\w*. \w On|strong="G1909"\w* \w his|strong="G1909"\w* \w horns|strong="G2768"\w* \w were|strong="G3588"\w* \w ten|strong="G1176"\w* \w crowns|strong="G1238"\w*, \w and|strong="G2532"\w* \w on|strong="G1909"\w* \w his|strong="G1909"\w* \w heads|strong="G2776"\w*, blasphemous \w names|strong="G3686"\w*. +\v 2 \w The|strong="G2532"\w* \w beast|strong="G2342"\w* \w which|strong="G3739"\w* \w I|strong="G3739"\w* \w saw|strong="G3708"\w* \w was|strong="G1510"\w* \w like|strong="G5613"\w* \w a|strong="G5613"\w* \w leopard|strong="G3917"\w*, \w and|strong="G2532"\w* \w his|strong="G3708"\w* \w feet|strong="G4228"\w* \w were|strong="G1510"\w* \w like|strong="G5613"\w* \w those|strong="G3588"\w* \w of|strong="G2532"\w* \w a|strong="G5613"\w* \w bear|strong="G2532"\w*, \w and|strong="G2532"\w* \w his|strong="G3708"\w* \w mouth|strong="G4750"\w* \w like|strong="G5613"\w* \w the|strong="G2532"\w* \w mouth|strong="G4750"\w* \w of|strong="G2532"\w* \w a|strong="G5613"\w* \w lion|strong="G3023"\w*. \w The|strong="G2532"\w* \w dragon|strong="G1404"\w* \w gave|strong="G1325"\w* \w him|strong="G3588"\w* \w his|strong="G3708"\w* \w power|strong="G1411"\w*, \w his|strong="G3708"\w* \w throne|strong="G2362"\w*, \w and|strong="G2532"\w* \w great|strong="G3173"\w* \w authority|strong="G1849"\w*. +\v 3 \w One|strong="G1520"\w* \w of|strong="G1537"\w* \w his|strong="G1519"\w* \w heads|strong="G2776"\w* \w looked|strong="G2532"\w* \w like|strong="G5613"\w* \w it|strong="G2532"\w* \w had|strong="G2532"\w* \w been|strong="G2532"\w* \w wounded|strong="G4969"\w* fatally. \w His|strong="G1519"\w* \w fatal|strong="G2288"\w* \w wound|strong="G4127"\w* \w was|strong="G3588"\w* \w healed|strong="G2323"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w whole|strong="G3650"\w* \w earth|strong="G1093"\w* \w marveled|strong="G2296"\w* \w at|strong="G1519"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w*. +\v 4 \w They|strong="G2532"\w* \w worshiped|strong="G4352"\w* \w the|strong="G2532"\w* \w dragon|strong="G1404"\w* \w because|strong="G3754"\w* \w he|strong="G2532"\w* \w gave|strong="G1325"\w* \w his|strong="G2532"\w* \w authority|strong="G1849"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w*; \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w worshiped|strong="G4352"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w*, \w saying|strong="G3004"\w*, “\w Who|strong="G5101"\w* \w is|strong="G3588"\w* \w like|strong="G3664"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w*? \w Who|strong="G5101"\w* \w is|strong="G3588"\w* \w able|strong="G1410"\w* \w to|strong="G2532"\w* \w make|strong="G2532"\w* \w war|strong="G4170"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w*?” +\p +\v 5 \w A|strong="G2532"\w* \w mouth|strong="G4750"\w* \w speaking|strong="G2980"\w* \w great|strong="G3173"\w* \w things|strong="G3173"\w* \w and|strong="G2532"\w* blasphemy \w was|strong="G2532"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* \w him|strong="G1325"\w*. \w Authority|strong="G1849"\w* \w to|strong="G2532"\w* \w make|strong="G4160"\w* war \w for|strong="G2532"\w* forty-two \w months|strong="G3376"\w* \w was|strong="G2532"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* \w him|strong="G1325"\w*. +\v 6 \w He|strong="G2532"\w* opened \w his|strong="G1519"\w* \w mouth|strong="G4750"\w* \w for|strong="G1519"\w* blasphemy \w against|strong="G4314"\w* \w God|strong="G2316"\w*, \w to|strong="G1519"\w* blaspheme \w his|strong="G1519"\w* \w name|strong="G3686"\w*, \w his|strong="G1519"\w* dwelling, \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w dwell|strong="G4637"\w* \w in|strong="G1722"\w* \w heaven|strong="G3772"\w*. +\v 7 \w It|strong="G2532"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w make|strong="G4160"\w* \w war|strong="G4171"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* saints \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w overcome|strong="G3528"\w* \w them|strong="G3588"\w*. \w Authority|strong="G1849"\w* \w over|strong="G1909"\w* \w every|strong="G3956"\w* \w tribe|strong="G5443"\w*, \w people|strong="G2992"\w*, \w language|strong="G1100"\w*, \w and|strong="G2532"\w* \w nation|strong="G1484"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*. +\v 8 \w All|strong="G3956"\w* \w who|strong="G3739"\w* \w dwell|strong="G2730"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w* \w will|strong="G2532"\w* \w worship|strong="G4352"\w* \w him|strong="G3588"\w*, \w everyone|strong="G3956"\w* \w whose|strong="G3739"\w* \w name|strong="G3686"\w* \w has|strong="G3739"\w* \w not|strong="G3756"\w* \w been|strong="G2532"\w* \w written|strong="G1125"\w* \w from|strong="G2532"\w* \w the|strong="G1722"\w* \w foundation|strong="G2602"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w world|strong="G2889"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w book|strong="G3588"\w* \w of|strong="G2532"\w* \w life|strong="G2222"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* Lamb \w who|strong="G3739"\w* \w has|strong="G3739"\w* \w been|strong="G2532"\w* killed. +\v 9 \w If|strong="G1487"\w* \w anyone|strong="G5100"\w* \w has|strong="G2192"\w* \w an|strong="G2192"\w* \w ear|strong="G3775"\w*, \w let|strong="G2192"\w* him hear. +\v 10 \w If|strong="G1487"\w* \w anyone|strong="G5100"\w* \w is|strong="G1510"\w* \w to|strong="G1519"\w* \w go|strong="G5217"\w* \w into|strong="G1519"\w* captivity, \w he|strong="G2532"\w* \w will|strong="G1510"\w* \w go|strong="G5217"\w* \w into|strong="G1519"\w* captivity. \w If|strong="G1487"\w* \w anyone|strong="G5100"\w* \w is|strong="G1510"\w* \w to|strong="G1519"\w* \w be|strong="G1510"\w* killed \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w sword|strong="G3162"\w*, \w he|strong="G2532"\w* \w must|strong="G1163"\w* \w be|strong="G1510"\w* killed.\f + \fr 13:10 \ft TR reads “If anyone leads into captivity, into captivity he goes. If anyone will kill with the sword, he must be killed with a sword.” instead of “If anyone is to go into captivity, he will go into captivity. If anyone is to be killed with the sword, he must be killed.” \f* \w Here|strong="G5602"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w endurance|strong="G5281"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w faith|strong="G4102"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* saints. +\p +\v 11 \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w another|strong="G3588"\w* \w beast|strong="G2342"\w* \w coming|strong="G2342"\w* \w up|strong="G2532"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*. \w He|strong="G2532"\w* \w had|strong="G2192"\w* \w two|strong="G1417"\w* \w horns|strong="G2768"\w* \w like|strong="G5613"\w* \w a|strong="G2192"\w* lamb \w and|strong="G2532"\w* \w it|strong="G2532"\w* \w spoke|strong="G2980"\w* \w like|strong="G5613"\w* \w a|strong="G2192"\w* \w dragon|strong="G1404"\w*. +\v 12 \w He|strong="G2532"\w* \w exercises|strong="G4160"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w authority|strong="G1849"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w first|strong="G4413"\w* \w beast|strong="G2342"\w* \w in|strong="G1722"\w* \w his|strong="G3956"\w* \w presence|strong="G1799"\w*. \w He|strong="G2532"\w* \w makes|strong="G4160"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w* \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w dwell|strong="G2730"\w* \w in|strong="G1722"\w* \w it|strong="G2532"\w* \w to|strong="G2443"\w* \w worship|strong="G4352"\w* \w the|strong="G1722"\w* \w first|strong="G4413"\w* \w beast|strong="G2342"\w*, \w whose|strong="G3739"\w* \w fatal|strong="G2288"\w* \w wound|strong="G4127"\w* \w was|strong="G3588"\w* \w healed|strong="G2323"\w*. +\v 13 \w He|strong="G2532"\w* \w performs|strong="G4160"\w* \w great|strong="G3173"\w* \w signs|strong="G4592"\w*, \w even|strong="G2532"\w* \w making|strong="G4160"\w* \w fire|strong="G4442"\w* \w come|strong="G2597"\w* \w down|strong="G2597"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w sight|strong="G1799"\w* \w of|strong="G1537"\w* \w people|strong="G4160"\w*. +\v 14 \w He|strong="G2532"\w* \w deceives|strong="G4105"\w* \w my|strong="G1325"\w* own\f + \fr 13:14 \ft NU omits “my own”\f* \w people|strong="G4160"\w* \w who|strong="G3739"\w* \w dwell|strong="G2730"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w because|strong="G1223"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w signs|strong="G4592"\w* \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w granted|strong="G1325"\w* \w to|strong="G2532"\w* \w do|strong="G4160"\w* \w in|strong="G1909"\w* \w front|strong="G1799"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w*, \w saying|strong="G3004"\w* \w to|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w dwell|strong="G2730"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w that|strong="G3739"\w* \w they|strong="G2532"\w* \w should|strong="G3588"\w* \w make|strong="G4160"\w* \w an|strong="G2192"\w* \w image|strong="G1504"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w* \w who|strong="G3739"\w* \w had|strong="G2192"\w* \w the|strong="G2532"\w* \w sword|strong="G3162"\w* \w wound|strong="G4127"\w* \w and|strong="G2532"\w* \w lived|strong="G2730"\w*. +\v 15 \w It|strong="G2532"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G2443"\w* \w him|strong="G3588"\w* \w to|strong="G2443"\w* \w give|strong="G1325"\w* \w breath|strong="G4151"\w* \w to|strong="G2443"\w* \w the|strong="G2532"\w* \w image|strong="G1504"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w*, \w that|strong="G2443"\w* \w the|strong="G2532"\w* \w image|strong="G1504"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w* \w should|strong="G3588"\w* \w both|strong="G2532"\w* \w speak|strong="G2980"\w*, \w and|strong="G2532"\w* \w cause|strong="G4160"\w* \w as|strong="G3745"\w* \w many|strong="G3745"\w* \w as|strong="G3745"\w* wouldn’\w t|strong="G3588"\w* \w worship|strong="G4352"\w* \w the|strong="G2532"\w* \w image|strong="G1504"\w* \w of|strong="G4151"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w* \w to|strong="G2443"\w* \w be|strong="G2532"\w* killed. +\v 16 \w He|strong="G2532"\w* \w causes|strong="G4160"\w* \w all|strong="G3956"\w*, \w the|strong="G2532"\w* \w small|strong="G3398"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w great|strong="G3173"\w*, \w the|strong="G2532"\w* \w rich|strong="G4145"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w poor|strong="G4434"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w free|strong="G1658"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w slave|strong="G1401"\w*, \w to|strong="G2443"\w* \w be|strong="G2532"\w* \w given|strong="G1325"\w* marks \w on|strong="G1909"\w* \w their|strong="G2532"\w* \w right|strong="G1188"\w* \w hands|strong="G5495"\w* \w or|strong="G2228"\w* \w on|strong="G1909"\w* \w their|strong="G2532"\w* \w foreheads|strong="G3359"\w*; +\v 17 \w and|strong="G2532"\w* \w that|strong="G2443"\w* \w no|strong="G3361"\w* \w one|strong="G5100"\w* \w would|strong="G2532"\w* \w be|strong="G2532"\w* \w able|strong="G1410"\w* \w to|strong="G2443"\w* buy \w or|strong="G2228"\w* \w to|strong="G2443"\w* \w sell|strong="G4453"\w* \w unless|strong="G1487"\w* \w he|strong="G2532"\w* \w has|strong="G2192"\w* \w that|strong="G2443"\w* \w mark|strong="G5480"\w*, \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w the|strong="G2532"\w* \w name|strong="G3686"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w* \w or|strong="G2228"\w* \w the|strong="G2532"\w* number \w of|strong="G2532"\w* \w his|strong="G2192"\w* \w name|strong="G3686"\w*. +\v 18 \w Here|strong="G5602"\w* \w is|strong="G1510"\w* \w wisdom|strong="G4678"\w*. \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w has|strong="G2192"\w* \w understanding|strong="G3563"\w*, \w let|strong="G1510"\w* \w him|strong="G3588"\w* \w calculate|strong="G5585"\w* \w the|strong="G2532"\w* number \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w*, \w for|strong="G1063"\w* \w it|strong="G2532"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* number \w of|strong="G2532"\w* \w a|strong="G2192"\w* man. \w His|strong="G2192"\w* number \w is|strong="G1510"\w* \w six|strong="G1803"\w* \w hundred|strong="G1812"\w* \w sixty-six|strong="G1835"\w*. +\c 14 +\p +\v 1 \w I|strong="G2532"\w* \w saw|strong="G3708"\w*, \w and|strong="G2532"\w* \w behold|strong="G2400"\w*, \w the|strong="G2532"\w* Lamb \w standing|strong="G2476"\w* \w on|strong="G1909"\w* \w Mount|strong="G3735"\w* \w Zion|strong="G4622"\w*, \w and|strong="G2532"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w* \w a|strong="G2192"\w* number, \w one|strong="G3588"\w* \w hundred|strong="G1540"\w* \w forty-four|strong="G5062"\w* \w thousand|strong="G5505"\w*, \w having|strong="G2192"\w* \w his|strong="G1909"\w* \w name|strong="G3686"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w name|strong="G3686"\w* \w of|strong="G2532"\w* \w his|strong="G1909"\w* \w Father|strong="G3962"\w* \w written|strong="G1125"\w* \w on|strong="G1909"\w* \w their|strong="G2532"\w* \w foreheads|strong="G3359"\w*. +\v 2 \w I|strong="G3739"\w* heard \w a|strong="G5613"\w* \w sound|strong="G5456"\w* \w from|strong="G1537"\w* \w heaven|strong="G3772"\w* \w like|strong="G5613"\w* \w the|strong="G1722"\w* \w sound|strong="G5456"\w* \w of|strong="G1537"\w* \w many|strong="G4183"\w* \w waters|strong="G5204"\w* \w and|strong="G2532"\w* \w like|strong="G5613"\w* \w the|strong="G1722"\w* \w sound|strong="G5456"\w* \w of|strong="G1537"\w* \w a|strong="G5613"\w* \w great|strong="G3173"\w* \w thunder|strong="G1027"\w*. \w The|strong="G1722"\w* \w sound|strong="G5456"\w* \w which|strong="G3739"\w* \w I|strong="G3739"\w* heard \w was|strong="G3588"\w* \w like|strong="G5613"\w* \w that|strong="G3739"\w* \w of|strong="G1537"\w* \w harpists|strong="G2790"\w* \w playing|strong="G2789"\w* \w on|strong="G1722"\w* \w their|strong="G2532"\w* \w harps|strong="G2788"\w*. +\v 3 \w They|strong="G2532"\w* sing \w a|strong="G5613"\w* \w new|strong="G2537"\w* \w song|strong="G5603"\w* \w before|strong="G1799"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w* \w and|strong="G2532"\w* \w before|strong="G1799"\w* \w the|strong="G2532"\w* \w four|strong="G5064"\w* \w living|strong="G2226"\w* \w creatures|strong="G2226"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w elders|strong="G4245"\w*. \w No|strong="G3762"\w* \w one|strong="G3762"\w* \w could|strong="G1410"\w* \w learn|strong="G3129"\w* \w the|strong="G2532"\w* \w song|strong="G5603"\w* \w except|strong="G1487"\w* \w the|strong="G2532"\w* \w one|strong="G3762"\w* \w hundred|strong="G1540"\w* \w forty-four|strong="G5062"\w* \w thousand|strong="G5505"\w*, \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w had|strong="G2532"\w* \w been|strong="G2532"\w* redeemed \w out|strong="G2532"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*. +\v 4 \w These|strong="G3778"\w* \w are|strong="G1510"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w were|strong="G1510"\w* \w not|strong="G3756"\w* \w defiled|strong="G3435"\w* \w with|strong="G3326"\w* \w women|strong="G1135"\w*, \w for|strong="G1063"\w* \w they|strong="G2532"\w* \w are|strong="G1510"\w* \w virgins|strong="G3933"\w*. \w These|strong="G3778"\w* \w are|strong="G1510"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w follow|strong="G3326"\w* \w the|strong="G2532"\w* Lamb \w wherever|strong="G3699"\w* \w he|strong="G2532"\w* \w goes|strong="G5217"\w*. \w These|strong="G3778"\w* \w were|strong="G1510"\w* redeemed \w by|strong="G2532"\w* \w Jesus|strong="G1510"\w* \w from|strong="G2532"\w* \w among|strong="G3326"\w* \w men|strong="G3778"\w*, \w the|strong="G2532"\w* \w first|strong="G3588"\w* fruits \w to|strong="G2532"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* Lamb. +\v 5 \w In|strong="G1722"\w* \w their|strong="G2532"\w* \w mouth|strong="G4750"\w* \w was|strong="G1510"\w* \w found|strong="G2147"\w* \w no|strong="G3756"\w* \w lie|strong="G5579"\w*, \w for|strong="G1063"\w* \w they|strong="G2532"\w* \w are|strong="G1510"\w* blameless.\f + \fr 14:5 \ft TR adds “before the throne of God”\f* +\p +\v 6 \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w an|strong="G2192"\w* angel \w flying|strong="G4072"\w* \w in|strong="G1722"\w* mid \w heaven|strong="G3321"\w*, \w having|strong="G2192"\w* \w an|strong="G2192"\w* eternal \w Good|strong="G2097"\w* \w News|strong="G2097"\w* \w to|strong="G2532"\w* \w proclaim|strong="G2097"\w* \w to|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w dwell|strong="G2521"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w*—\w to|strong="G2532"\w* \w every|strong="G3956"\w* \w nation|strong="G1484"\w*, \w tribe|strong="G5443"\w*, \w language|strong="G1100"\w*, \w and|strong="G2532"\w* \w people|strong="G2992"\w*. +\v 7 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w with|strong="G1722"\w* \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, “\w Fear|strong="G5399"\w* \w the|strong="G1722"\w* \w Lord|strong="G3588"\w*, \w and|strong="G2532"\w* \w give|strong="G1325"\w* \w him|strong="G3588"\w* \w glory|strong="G1391"\w*, \w for|strong="G3754"\w* \w the|strong="G1722"\w* \w hour|strong="G5610"\w* \w of|strong="G2316"\w* \w his|strong="G1722"\w* \w judgment|strong="G2920"\w* \w has|strong="G2316"\w* \w come|strong="G2064"\w*. \w Worship|strong="G4352"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w made|strong="G4160"\w* \w the|strong="G1722"\w* \w heaven|strong="G3772"\w*, \w the|strong="G1722"\w* \w earth|strong="G1093"\w*, \w the|strong="G1722"\w* \w sea|strong="G2281"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w springs|strong="G4077"\w* \w of|strong="G2316"\w* \w waters|strong="G5204"\w*!” +\p +\v 8 \w Another|strong="G3739"\w*, \w a|strong="G2532"\w* \w second|strong="G1208"\w* angel, followed, \w saying|strong="G3004"\w*, “Babylon \w the|strong="G2532"\w* \w great|strong="G3173"\w* \w has|strong="G3739"\w* \w fallen|strong="G4098"\w*, \w which|strong="G3739"\w* \w has|strong="G3739"\w* \w made|strong="G4222"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w nations|strong="G1484"\w* \w to|strong="G2532"\w* \w drink|strong="G4222"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w wine|strong="G3631"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w wrath|strong="G2372"\w* \w of|strong="G1537"\w* \w her|strong="G3956"\w* \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w*.” +\p +\v 9 \w Another|strong="G5100"\w* angel, \w a|strong="G2532"\w* \w third|strong="G5154"\w*, followed \w them|strong="G3588"\w*, \w saying|strong="G3004"\w* \w with|strong="G1722"\w* \w a|strong="G2532"\w* \w great|strong="G3173"\w* \w voice|strong="G5456"\w*, “\w If|strong="G1487"\w* \w anyone|strong="G5100"\w* \w worships|strong="G4352"\w* \w the|strong="G1722"\w* \w beast|strong="G2342"\w* \w and|strong="G2532"\w* \w his|strong="G1909"\w* \w image|strong="G1504"\w*, \w and|strong="G2532"\w* \w receives|strong="G2983"\w* \w a|strong="G2532"\w* \w mark|strong="G5480"\w* \w on|strong="G1909"\w* \w his|strong="G1909"\w* \w forehead|strong="G3359"\w* \w or|strong="G2228"\w* \w on|strong="G1909"\w* \w his|strong="G1909"\w* \w hand|strong="G5495"\w*, +\v 10 \w he|strong="G2532"\w* \w also|strong="G2532"\w* \w will|strong="G2316"\w* \w drink|strong="G4095"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w wine|strong="G3631"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w wrath|strong="G3709"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*, \w which|strong="G3588"\w* \w is|strong="G3588"\w* prepared unmixed \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w cup|strong="G4221"\w* \w of|strong="G1537"\w* \w his|strong="G1722"\w* \w anger|strong="G3709"\w*. \w He|strong="G2532"\w* \w will|strong="G2316"\w* \w be|strong="G2532"\w* tormented \w with|strong="G1722"\w* \w fire|strong="G4442"\w* \w and|strong="G2532"\w* \w sulfur|strong="G2303"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w presence|strong="G1799"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* holy angels \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w presence|strong="G1799"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* Lamb. +\v 11 \w The|strong="G2532"\w* \w smoke|strong="G2586"\w* \w of|strong="G2250"\w* \w their|strong="G2532"\w* torment goes \w up|strong="G1519"\w* \w forever|strong="G1519"\w* \w and|strong="G2532"\w* \w ever|strong="G3756"\w*. \w They|strong="G2532"\w* \w have|strong="G2192"\w* \w no|strong="G3756"\w* \w rest|strong="G2192"\w* \w day|strong="G2250"\w* \w and|strong="G2532"\w* \w night|strong="G3571"\w*, \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w worship|strong="G4352"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w* \w and|strong="G2532"\w* \w his|strong="G1519"\w* \w image|strong="G1504"\w*, \w and|strong="G2532"\w* \w whoever|strong="G3588"\w* \w receives|strong="G2983"\w* \w the|strong="G2532"\w* \w mark|strong="G5480"\w* \w of|strong="G2250"\w* \w his|strong="G1519"\w* \w name|strong="G3686"\w*. +\p +\v 12 \w Here|strong="G5602"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w perseverance|strong="G5281"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* saints, \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w keep|strong="G5083"\w* \w the|strong="G2532"\w* \w commandments|strong="G1785"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w faith|strong="G4102"\w* \w of|strong="G2316"\w* \w Jesus|strong="G2424"\w*.” +\p +\v 13 \w I|strong="G2532"\w* heard \w a|strong="G2532"\w* \w voice|strong="G5456"\w* \w from|strong="G1537"\w* \w heaven|strong="G3772"\w* \w saying|strong="G3004"\w*, “\w Write|strong="G1125"\w*, ‘\w Blessed|strong="G3107"\w* \w are|strong="G3588"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w* \w who|strong="G3588"\w* die \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w from|strong="G1537"\w* \w now|strong="G2532"\w* \w on|strong="G1722"\w*.’” +\p “\w Yes|strong="G3483"\w*,” \w says|strong="G3004"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w*, “\w that|strong="G2443"\w* \w they|strong="G2532"\w* \w may|strong="G2532"\w* rest \w from|strong="G1537"\w* \w their|strong="G2532"\w* \w labors|strong="G2873"\w*, \w for|strong="G1063"\w* \w their|strong="G2532"\w* \w works|strong="G2041"\w* \w follow|strong="G3326"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w*.” +\p +\v 14 \w I|strong="G2532"\w* \w looked|strong="G3708"\w*, \w and|strong="G2532"\w* \w saw|strong="G3708"\w* \w a|strong="G2192"\w* \w white|strong="G3022"\w* \w cloud|strong="G3507"\w*, \w and|strong="G2532"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w cloud|strong="G3507"\w* \w one|strong="G3588"\w* \w sitting|strong="G2521"\w* \w like|strong="G3664"\w* \w a|strong="G2192"\w* \w son|strong="G5207"\w* \w of|strong="G5207"\w* \w man|strong="G5207"\w*,\x + \xo 14:14 \xt Daniel 7:13\x* \w having|strong="G2192"\w* \w on|strong="G1909"\w* \w his|strong="G1909"\w* \w head|strong="G2776"\w* \w a|strong="G2192"\w* \w golden|strong="G5552"\w* \w crown|strong="G4735"\w*, \w and|strong="G2532"\w* \w in|strong="G1722"\w* \w his|strong="G1909"\w* \w hand|strong="G5495"\w* \w a|strong="G2192"\w* \w sharp|strong="G3691"\w* \w sickle|strong="G1407"\w*. +\v 15 \w Another|strong="G3588"\w* angel \w came|strong="G2064"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w temple|strong="G3485"\w*, \w crying|strong="G2896"\w* \w with|strong="G1722"\w* \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w sat|strong="G2521"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w cloud|strong="G3507"\w*, “\w Send|strong="G3992"\w* \w your|strong="G2532"\w* \w sickle|strong="G1407"\w* \w and|strong="G2532"\w* \w reap|strong="G2325"\w*, \w for|strong="G3754"\w* \w the|strong="G1722"\w* \w hour|strong="G5610"\w* \w to|strong="G2532"\w* \w reap|strong="G2325"\w* \w has|strong="G5610"\w* \w come|strong="G2064"\w*; \w for|strong="G3754"\w* \w the|strong="G1722"\w* \w harvest|strong="G2326"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w* \w is|strong="G3588"\w* \w ripe|strong="G3583"\w*!” +\v 16 \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w sat|strong="G2521"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w cloud|strong="G3507"\w* thrust \w his|strong="G1909"\w* \w sickle|strong="G1407"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w was|strong="G3588"\w* \w reaped|strong="G2325"\w*. +\p +\v 17 \w Another|strong="G3588"\w* angel \w came|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w temple|strong="G3485"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w in|strong="G1722"\w* \w heaven|strong="G3772"\w*. \w He|strong="G2532"\w* \w also|strong="G2532"\w* \w had|strong="G2192"\w* \w a|strong="G2192"\w* \w sharp|strong="G3691"\w* \w sickle|strong="G1407"\w*. +\v 18 \w Another|strong="G3588"\w* angel \w came|strong="G1831"\w* \w out|strong="G1831"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w altar|strong="G2379"\w*, \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w has|strong="G2192"\w* \w power|strong="G1849"\w* \w over|strong="G1909"\w* \w fire|strong="G4442"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w called|strong="G3004"\w* \w with|strong="G1537"\w* \w a|strong="G2192"\w* \w great|strong="G3173"\w* \w voice|strong="G5456"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w had|strong="G2192"\w* \w the|strong="G2532"\w* \w sharp|strong="G3691"\w* \w sickle|strong="G1407"\w*, \w saying|strong="G3004"\w*, “\w Send|strong="G3992"\w* \w your|strong="G2192"\w* \w sharp|strong="G3691"\w* \w sickle|strong="G1407"\w* \w and|strong="G2532"\w* \w gather|strong="G5166"\w* \w the|strong="G2532"\w* \w clusters|strong="G1009"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w vine|strong="G1093"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w for|strong="G3754"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*’\w s|strong="G2192"\w* \w grapes|strong="G4718"\w* \w are|strong="G3588"\w* fully ripe!” +\v 19 \w The|strong="G2532"\w* angel thrust \w his|strong="G1519"\w* \w sickle|strong="G1407"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w and|strong="G2532"\w* \w gathered|strong="G5166"\w* \w the|strong="G2532"\w* vintage \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w and|strong="G2532"\w* threw \w it|strong="G2532"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w great|strong="G3173"\w* \w wine|strong="G3025"\w* \w press|strong="G3025"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w wrath|strong="G2372"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. +\v 20 \w The|strong="G2532"\w* \w wine|strong="G3025"\w* \w press|strong="G3025"\w* \w was|strong="G3588"\w* \w trodden|strong="G3961"\w* \w outside|strong="G1855"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w*, \w and|strong="G2532"\w* blood \w came|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w wine|strong="G3025"\w* \w press|strong="G3025"\w*, \w up|strong="G2532"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w bridles|strong="G5469"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w horses|strong="G2462"\w*, \w as|strong="G2532"\w* \w far|strong="G3588"\w* \w as|strong="G2532"\w* \w one|strong="G3588"\w* \w thousand|strong="G5507"\w* \w six|strong="G1812"\w* \w hundred|strong="G1812"\w* stadia.\f + \fr 14:20 \ft 1600 stadia = 296 kilometers or 184 miles\f* +\c 15 +\p +\v 1 \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w another|strong="G3588"\w* \w great|strong="G3173"\w* \w and|strong="G2532"\w* \w marvelous|strong="G2298"\w* \w sign|strong="G4592"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w sky|strong="G3772"\w*: \w seven|strong="G2033"\w* angels \w having|strong="G2192"\w* \w the|strong="G1722"\w* \w seven|strong="G2033"\w* \w last|strong="G2078"\w* \w plagues|strong="G4127"\w*, \w for|strong="G3754"\w* \w in|strong="G1722"\w* \w them|strong="G3588"\w* \w God|strong="G2316"\w*’\w s|strong="G2192"\w* \w wrath|strong="G2372"\w* \w is|strong="G3588"\w* \w finished|strong="G5055"\w*. +\p +\v 2 \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w something|strong="G3708"\w* \w like|strong="G5613"\w* \w a|strong="G2192"\w* \w sea|strong="G2281"\w* \w of|strong="G1537"\w* \w glass|strong="G5193"\w* \w mixed|strong="G3396"\w* \w with|strong="G1537"\w* \w fire|strong="G4442"\w*, \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w overcame|strong="G3528"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w*, \w his|strong="G1909"\w* \w image|strong="G1504"\w*,\f + \fr 15:2 \ft TR adds “his mark,”\f* \w and|strong="G2532"\w* \w the|strong="G2532"\w* number \w of|strong="G1537"\w* \w his|strong="G1909"\w* \w name|strong="G3686"\w*, \w standing|strong="G2476"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w* \w of|strong="G1537"\w* \w glass|strong="G5193"\w*, \w having|strong="G2192"\w* \w harps|strong="G2788"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*. +\v 3 \w They|strong="G2532"\w* sang \w the|strong="G2532"\w* \w song|strong="G5603"\w* \w of|strong="G2316"\w* \w Moses|strong="G3475"\w*, \w the|strong="G2532"\w* \w servant|strong="G1401"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w song|strong="G5603"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w Lamb|strong="G3004"\w*, \w saying|strong="G3004"\w*, +\q1 “\w Great|strong="G3173"\w* \w and|strong="G2532"\w* \w marvelous|strong="G2298"\w* \w are|strong="G3588"\w* \w your|strong="G2962"\w* \w works|strong="G2041"\w*, \w Lord|strong="G2962"\w* \w God|strong="G2316"\w*, \w the|strong="G2532"\w* \w Almighty|strong="G3841"\w*! +\q2 \w Righteous|strong="G1342"\w* \w and|strong="G2532"\w* \w true|strong="G3588"\w* \w are|strong="G3588"\w* \w your|strong="G2962"\w* \w ways|strong="G3598"\w*, \w you|strong="G4771"\w* \w King|strong="G3588"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w nations|strong="G1484"\w*. +\q1 +\v 4 \w Who|strong="G5101"\w* wouldn’\w t|strong="G3588"\w* \w fear|strong="G5399"\w* \w you|strong="G4771"\w*, \w Lord|strong="G2962"\w*, +\q2 \w and|strong="G2532"\w* \w glorify|strong="G1392"\w* \w your|strong="G2962"\w* \w name|strong="G3686"\w*? +\q1 \w For|strong="G3754"\w* \w you|strong="G4771"\w* \w only|strong="G3441"\w* \w are|strong="G3588"\w* \w holy|strong="G3741"\w*. +\q2 \w For|strong="G3754"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w nations|strong="G1484"\w* \w will|strong="G5101"\w* \w come|strong="G2240"\w* \w and|strong="G2532"\w* \w worship|strong="G4352"\w* \w before|strong="G1799"\w* \w you|strong="G4771"\w*. +\q2 \w For|strong="G3754"\w* \w your|strong="G2962"\w* \w righteous|strong="G1345"\w* \w acts|strong="G1345"\w* \w have|strong="G2532"\w* \w been|strong="G2532"\w* \w revealed|strong="G5319"\w*.” +\p +\v 5 \w After|strong="G3326"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w I|strong="G2532"\w* \w looked|strong="G3708"\w*, \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w temple|strong="G3485"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w tabernacle|strong="G4633"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w testimony|strong="G3142"\w* \w in|strong="G1722"\w* \w heaven|strong="G3772"\w* \w was|strong="G3588"\w* opened. +\v 6 \w The|strong="G2532"\w* \w seven|strong="G2033"\w* angels \w who|strong="G3588"\w* \w had|strong="G2192"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* \w plagues|strong="G4127"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w*, \w clothed|strong="G1746"\w* \w with|strong="G1537"\w* \w pure|strong="G2513"\w*, \w bright|strong="G2986"\w* \w linen|strong="G3043"\w*, \w and|strong="G2532"\w* \w wearing|strong="G1746"\w* \w golden|strong="G5552"\w* \w sashes|strong="G2223"\w* \w around|strong="G4012"\w* \w their|strong="G2532"\w* \w chests|strong="G4738"\w*. +\p +\v 7 \w One|strong="G1520"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w four|strong="G5064"\w* \w living|strong="G2198"\w* \w creatures|strong="G2226"\w* \w gave|strong="G1325"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* angels \w seven|strong="G2033"\w* \w golden|strong="G5552"\w* \w bowls|strong="G5357"\w* \w full|strong="G1073"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w wrath|strong="G2372"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*, \w who|strong="G3588"\w* \w lives|strong="G2198"\w* \w forever|strong="G1519"\w* \w and|strong="G2532"\w* \w ever|strong="G1519"\w*. +\v 8 \w The|strong="G2532"\w* \w temple|strong="G3485"\w* \w was|strong="G3588"\w* \w filled|strong="G1072"\w* \w with|strong="G1537"\w* \w smoke|strong="G2586"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w from|strong="G1537"\w* \w his|strong="G1519"\w* \w power|strong="G1411"\w*. \w No|strong="G3762"\w* \w one|strong="G3762"\w* \w was|strong="G3588"\w* \w able|strong="G1410"\w* \w to|strong="G1519"\w* \w enter|strong="G1525"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w temple|strong="G3485"\w* \w until|strong="G1519"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* \w plagues|strong="G4127"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* angels \w would|strong="G2316"\w* \w be|strong="G2532"\w* \w finished|strong="G5055"\w*. +\c 16 +\p +\v 1 \w I|strong="G2532"\w* heard \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w temple|strong="G3485"\w*, \w saying|strong="G3004"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* angels, “\w Go|strong="G5217"\w* \w and|strong="G2532"\w* \w pour|strong="G1632"\w* \w out|strong="G1537"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* \w bowls|strong="G5357"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w wrath|strong="G2372"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w* \w on|strong="G1519"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*!” +\p +\v 2 \w The|strong="G2532"\w* \w first|strong="G4413"\w* \w went|strong="G2532"\w*, \w and|strong="G2532"\w* \w poured|strong="G1632"\w* \w out|strong="G1632"\w* \w his|strong="G1519"\w* \w bowl|strong="G5357"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w and|strong="G2532"\w* \w it|strong="G2532"\w* \w became|strong="G1096"\w* \w a|strong="G2192"\w* harmful \w and|strong="G2532"\w* \w painful|strong="G4190"\w* \w sore|strong="G1668"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w people|strong="G3588"\w* \w who|strong="G3588"\w* \w had|strong="G2192"\w* \w the|strong="G2532"\w* \w mark|strong="G5480"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w*, \w and|strong="G2532"\w* \w who|strong="G3588"\w* \w worshiped|strong="G4352"\w* \w his|strong="G1519"\w* \w image|strong="G1504"\w*. +\p +\v 3 \w The|strong="G1722"\w* \w second|strong="G1208"\w* \w angel|strong="G1632"\w* \w poured|strong="G1632"\w* \w out|strong="G1632"\w* \w his|strong="G3956"\w* \w bowl|strong="G5357"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w*, \w and|strong="G2532"\w* \w it|strong="G2532"\w* \w became|strong="G1096"\w* blood \w as|strong="G5613"\w* \w of|strong="G2532"\w* \w a|strong="G1096"\w* \w dead|strong="G3498"\w* \w man|strong="G3956"\w*. \w Every|strong="G3956"\w* \w living|strong="G2222"\w* \w thing|strong="G3956"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w* \w died|strong="G3588"\w*. +\p +\v 4 \w The|strong="G2532"\w* \w third|strong="G5154"\w* \w poured|strong="G1632"\w* \w out|strong="G1632"\w* \w his|strong="G1519"\w* \w bowl|strong="G5357"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w rivers|strong="G4215"\w* \w and|strong="G2532"\w* \w springs|strong="G4077"\w* \w of|strong="G2532"\w* \w water|strong="G5204"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w became|strong="G1096"\w* blood. +\v 5 \w I|strong="G2532"\w* heard \w the|strong="G2532"\w* angel \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w waters|strong="G5204"\w* \w saying|strong="G3004"\w*, “\w You|strong="G3754"\w* \w are|strong="G1510"\w* \w righteous|strong="G1342"\w*, \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w and|strong="G2532"\w* \w who|strong="G3588"\w* \w were|strong="G1510"\w*, O \w Holy|strong="G3741"\w* \w One|strong="G3588"\w*, \w because|strong="G3754"\w* \w you|strong="G3754"\w* \w have|strong="G2532"\w* \w judged|strong="G2919"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*. +\v 6 \w For|strong="G3754"\w* \w they|strong="G2532"\w* \w poured|strong="G1632"\w* \w out|strong="G1632"\w* \w the|strong="G2532"\w* blood \w of|strong="G2532"\w* saints \w and|strong="G2532"\w* \w prophets|strong="G4396"\w*, \w and|strong="G2532"\w* \w you|strong="G3754"\w* \w have|strong="G2532"\w* \w given|strong="G1325"\w* \w them|strong="G1325"\w* blood \w to|strong="G2532"\w* \w drink|strong="G4095"\w*. \w They|strong="G2532"\w* deserve \w this|strong="G3748"\w*.” +\p +\v 7 \w I|strong="G2532"\w* heard \w the|strong="G2532"\w* \w altar|strong="G2379"\w* \w saying|strong="G3004"\w*, “\w Yes|strong="G3483"\w*, \w Lord|strong="G2962"\w* \w God|strong="G2316"\w*, \w the|strong="G2532"\w* \w Almighty|strong="G3841"\w*, \w true|strong="G3588"\w* \w and|strong="G2532"\w* \w righteous|strong="G1342"\w* \w are|strong="G3588"\w* \w your|strong="G2962"\w* \w judgments|strong="G2920"\w*.” +\p +\v 8 \w The|strong="G1722"\w* \w fourth|strong="G5067"\w* \w poured|strong="G1632"\w* \w out|strong="G1632"\w* \w his|strong="G1909"\w* \w bowl|strong="G5357"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w sun|strong="G2246"\w*, \w and|strong="G2532"\w* \w it|strong="G2532"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w* \w to|strong="G2532"\w* \w scorch|strong="G2739"\w* \w men|strong="G3588"\w* \w with|strong="G1722"\w* \w fire|strong="G4442"\w*. +\v 9 \w People|strong="G3588"\w* \w were|strong="G3588"\w* \w scorched|strong="G2739"\w* \w with|strong="G2532"\w* \w great|strong="G3173"\w* \w heat|strong="G2738"\w*, \w and|strong="G2532"\w* \w people|strong="G3588"\w* blasphemed \w the|strong="G2532"\w* \w name|strong="G3686"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w who|strong="G3588"\w* \w has|strong="G2192"\w* \w the|strong="G2532"\w* \w power|strong="G1849"\w* \w over|strong="G1909"\w* \w these|strong="G3778"\w* \w plagues|strong="G4127"\w*. \w They|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w repent|strong="G3340"\w* \w and|strong="G2532"\w* \w give|strong="G1325"\w* \w him|strong="G3588"\w* \w glory|strong="G1391"\w*. +\p +\v 10 \w The|strong="G2532"\w* \w fifth|strong="G3991"\w* \w poured|strong="G1632"\w* \w out|strong="G1537"\w* \w his|strong="G1909"\w* \w bowl|strong="G5357"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w*, \w and|strong="G2532"\w* \w his|strong="G1909"\w* kingdom \w was|strong="G1096"\w* \w darkened|strong="G4656"\w*. \w They|strong="G2532"\w* \w gnawed|strong="G3145"\w* \w their|strong="G2532"\w* \w tongues|strong="G1100"\w* \w because|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w pain|strong="G4192"\w*, +\v 11 \w and|strong="G2532"\w* \w they|strong="G2532"\w* blasphemed \w the|strong="G2532"\w* \w God|strong="G2316"\w* \w of|strong="G1537"\w* \w heaven|strong="G3772"\w* \w because|strong="G1537"\w* \w of|strong="G1537"\w* \w their|strong="G2532"\w* \w pains|strong="G4192"\w* \w and|strong="G2532"\w* \w their|strong="G2532"\w* \w sores|strong="G1668"\w*. \w They|strong="G2532"\w* still didn’\w t|strong="G3588"\w* \w repent|strong="G3340"\w* \w of|strong="G1537"\w* \w their|strong="G2532"\w* \w works|strong="G2041"\w*. +\p +\v 12 \w The|strong="G2532"\w* \w sixth|strong="G1623"\w* \w poured|strong="G1632"\w* \w out|strong="G1632"\w* \w his|strong="G1909"\w* \w bowl|strong="G5357"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w great|strong="G3173"\w* \w river|strong="G4215"\w*, \w the|strong="G2532"\w* \w Euphrates|strong="G2166"\w*. Its \w water|strong="G5204"\w* \w was|strong="G3588"\w* \w dried|strong="G3583"\w* \w up|strong="G3583"\w*, \w that|strong="G2443"\w* \w the|strong="G2532"\w* \w way|strong="G3598"\w* \w might|strong="G2532"\w* \w be|strong="G2532"\w* \w prepared|strong="G2090"\w* \w for|strong="G1909"\w* \w the|strong="G2532"\w* \w kings|strong="G3588"\w* \w that|strong="G2443"\w* \w come|strong="G2532"\w* \w from|strong="G2532"\w* \w the|strong="G2532"\w* sunrise.\f + \fr 16:12 \ft or, east\f* +\v 13 \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w coming|strong="G2342"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w mouth|strong="G4750"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w dragon|strong="G1404"\w*, \w and|strong="G2532"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w mouth|strong="G4750"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w*, \w and|strong="G2532"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w mouth|strong="G4750"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w false|strong="G5578"\w* \w prophet|strong="G5578"\w*, \w three|strong="G5140"\w* unclean \w spirits|strong="G4151"\w*, \w something|strong="G3708"\w* \w like|strong="G5613"\w* frogs; +\v 14 \w for|strong="G1063"\w* \w they|strong="G3588"\w* \w are|strong="G1510"\w* \w spirits|strong="G4151"\w* \w of|strong="G4151"\w* \w demons|strong="G1140"\w*, \w performing|strong="G4160"\w* \w signs|strong="G4592"\w*, \w which|strong="G3739"\w* \w go|strong="G1607"\w* \w out|strong="G1607"\w* \w to|strong="G1519"\w* \w the|strong="G1519"\w* \w kings|strong="G3588"\w* \w of|strong="G4151"\w* \w the|strong="G1519"\w* \w whole|strong="G3650"\w* \w inhabited|strong="G3625"\w* \w earth|strong="G3625"\w*, \w to|strong="G1519"\w* \w gather|strong="G4863"\w* \w them|strong="G3588"\w* \w together|strong="G4863"\w* \w for|strong="G1063"\w* \w the|strong="G1519"\w* \w war|strong="G4171"\w* \w of|strong="G4151"\w* \w that|strong="G3739"\w* \w great|strong="G3173"\w* \w day|strong="G2250"\w* \w of|strong="G4151"\w* \w God|strong="G2316"\w* \w the|strong="G1519"\w* \w Almighty|strong="G3841"\w*. +\p +\v 15 \wj “\+w Behold|strong="G2400"\+w*, \+w I|strong="G2532"\+w* \+w come|strong="G2064"\+w* \+w like|strong="G5613"\+w* \+w a|strong="G5613"\+w* \+w thief|strong="G2812"\+w*. \+w Blessed|strong="G3107"\+w* \+w is|strong="G3588"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* watches, \+w and|strong="G2532"\+w* \+w keeps|strong="G5083"\+w* \+w his|strong="G3708"\+w* \+w clothes|strong="G2440"\+w*, \+w so|strong="G2443"\+w* \+w that|strong="G2443"\+w* \+w he|strong="G2532"\+w* doesn’\+w t|strong="G3588"\+w* \+w walk|strong="G4043"\+w* \+w naked|strong="G1131"\+w*, \+w and|strong="G2532"\+w* \+w they|strong="G2532"\+w* \+w see|strong="G3708"\+w* \+w his|strong="G3708"\+w* shame.” \wj* +\v 16 \w He|strong="G2532"\w* \w gathered|strong="G4863"\w* \w them|strong="G3588"\w* \w together|strong="G4863"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w place|strong="G5117"\w* \w which|strong="G3588"\w* \w is|strong="G3588"\w* \w called|strong="G2564"\w* \w in|strong="G1519"\w* \w Hebrew|strong="G1447"\w*, “Harmagedon”. +\p +\v 17 \w The|strong="G2532"\w* \w seventh|strong="G1442"\w* \w poured|strong="G1632"\w* \w out|strong="G1831"\w* \w his|strong="G1909"\w* \w bowl|strong="G5357"\w* \w into|strong="G1909"\w* \w the|strong="G2532"\w* air. \w A|strong="G1096"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w* \w came|strong="G1096"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w temple|strong="G3485"\w* \w of|strong="G1537"\w* heaven, \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w*, \w saying|strong="G3004"\w*, “\w It|strong="G2532"\w* \w is|strong="G3588"\w* \w done|strong="G1096"\w*!” +\v 18 \w There|strong="G2532"\w* \w were|strong="G3588"\w* lightnings, \w sounds|strong="G5456"\w*, \w and|strong="G2532"\w* \w thunders|strong="G1027"\w*; \w and|strong="G2532"\w* \w there|strong="G2532"\w* \w was|strong="G1096"\w* \w a|strong="G1096"\w* \w great|strong="G3173"\w* \w earthquake|strong="G4578"\w* \w such|strong="G3779"\w* \w as|strong="G2532"\w* \w has|strong="G3739"\w* \w not|strong="G3756"\w* \w happened|strong="G1096"\w* \w since|strong="G1096"\w* \w there|strong="G2532"\w* \w were|strong="G3588"\w* \w men|strong="G3588"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*—\w so|strong="G3779"\w* \w great|strong="G3173"\w* \w an|strong="G2532"\w* \w earthquake|strong="G4578"\w* \w and|strong="G2532"\w* \w so|strong="G3779"\w* \w mighty|strong="G3173"\w*. +\v 19 \w The|strong="G2532"\w* \w great|strong="G3173"\w* \w city|strong="G4172"\w* \w was|strong="G1096"\w* \w divided|strong="G1096"\w* \w into|strong="G1519"\w* \w three|strong="G5140"\w* \w parts|strong="G3313"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w cities|strong="G4172"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w nations|strong="G1484"\w* \w fell|strong="G4098"\w*. Babylon \w the|strong="G2532"\w* \w great|strong="G3173"\w* \w was|strong="G1096"\w* \w remembered|strong="G3403"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w sight|strong="G1799"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*, \w to|strong="G1519"\w* \w give|strong="G1325"\w* \w to|strong="G1519"\w* \w her|strong="G1325"\w* \w the|strong="G2532"\w* \w cup|strong="G4221"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w wine|strong="G3631"\w* \w of|strong="G2316"\w* \w the|strong="G2532"\w* \w fierceness|strong="G2372"\w* \w of|strong="G2316"\w* \w his|strong="G1519"\w* \w wrath|strong="G3709"\w*. +\v 20 \w Every|strong="G3956"\w* \w island|strong="G3520"\w* \w fled|strong="G5343"\w* \w away|strong="G5343"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w mountains|strong="G3735"\w* \w were|strong="G2532"\w* \w not|strong="G3756"\w* \w found|strong="G2147"\w*. +\v 21 \w Great|strong="G3173"\w* \w hailstones|strong="G5464"\w*, \w about|strong="G5613"\w* \w the|strong="G2532"\w* weight \w of|strong="G1537"\w* \w a|strong="G5613"\w* \w talent|strong="G5006"\w*,\f + \fr 16:21 \ft A talent is about 30 kilograms or 66 pounds.\f* \w came|strong="G2597"\w* \w down|strong="G2597"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w* \w on|strong="G1909"\w* \w people|strong="G1510"\w*. \w People|strong="G1510"\w* blasphemed \w God|strong="G2316"\w* \w because|strong="G3754"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w plague|strong="G4127"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w hail|strong="G5464"\w*, \w for|strong="G3754"\w* \w this|strong="G3588"\w* \w plague|strong="G4127"\w* \w was|strong="G1510"\w* \w exceedingly|strong="G4970"\w* \w severe|strong="G3173"\w*. +\c 17 +\p +\v 1 \w One|strong="G1520"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* angels \w who|strong="G3588"\w* \w had|strong="G2192"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* \w bowls|strong="G5357"\w* \w came|strong="G2064"\w* \w and|strong="G2532"\w* \w spoke|strong="G2980"\w* \w with|strong="G3326"\w* \w me|strong="G1473"\w*, \w saying|strong="G3004"\w*, “\w Come|strong="G2064"\w* \w here|strong="G1204"\w*. \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w show|strong="G1166"\w* \w you|strong="G4771"\w* \w the|strong="G2532"\w* \w judgment|strong="G2917"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w great|strong="G3173"\w* \w prostitute|strong="G4204"\w* \w who|strong="G3588"\w* \w sits|strong="G2521"\w* \w on|strong="G1909"\w* \w many|strong="G4183"\w* \w waters|strong="G5204"\w*, +\v 2 \w with|strong="G3326"\w* \w whom|strong="G3739"\w* \w the|strong="G2532"\w* \w kings|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w committed|strong="G4203"\w* \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w*. \w Those|strong="G3588"\w* \w who|strong="G3739"\w* \w dwell|strong="G2730"\w* \w in|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w were|strong="G3588"\w* \w made|strong="G3184"\w* \w drunken|strong="G3184"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w wine|strong="G3631"\w* \w of|strong="G1537"\w* \w her|strong="G3588"\w* \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w*.” +\v 3 \w He|strong="G2532"\w* \w carried|strong="G2532"\w* \w me|strong="G1473"\w* away \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w into|strong="G1519"\w* \w a|strong="G2192"\w* \w wilderness|strong="G2048"\w*. \w I|strong="G1473"\w* \w saw|strong="G3708"\w* \w a|strong="G2192"\w* \w woman|strong="G1135"\w* \w sitting|strong="G2521"\w* \w on|strong="G1909"\w* \w a|strong="G2192"\w* scarlet-colored \w beast|strong="G2342"\w*, \w full|strong="G1073"\w* \w of|strong="G4151"\w* blasphemous \w names|strong="G3686"\w*, \w having|strong="G2192"\w* \w seven|strong="G2033"\w* \w heads|strong="G2776"\w* \w and|strong="G2532"\w* \w ten|strong="G1176"\w* \w horns|strong="G2768"\w*. +\v 4 \w The|strong="G1722"\w* \w woman|strong="G1135"\w* \w was|strong="G1510"\w* \w dressed|strong="G4016"\w* \w in|strong="G1722"\w* \w purple|strong="G4210"\w* \w and|strong="G2532"\w* \w scarlet|strong="G2847"\w*, \w and|strong="G2532"\w* \w decked|strong="G5558"\w* \w with|strong="G1722"\w* \w gold|strong="G5553"\w* \w and|strong="G2532"\w* \w precious|strong="G5093"\w* \w stones|strong="G3037"\w* \w and|strong="G2532"\w* \w pearls|strong="G3135"\w*, \w having|strong="G2192"\w* \w in|strong="G1722"\w* \w her|strong="G2192"\w* \w hand|strong="G5495"\w* \w a|strong="G2192"\w* \w golden|strong="G5552"\w* \w cup|strong="G4221"\w* \w full|strong="G1073"\w* \w of|strong="G2532"\w* abominations \w and|strong="G2532"\w* \w the|strong="G1722"\w* impurities \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w earth|strong="G2532"\w*. +\v 5 \w And|strong="G2532"\w* \w on|strong="G1909"\w* \w her|strong="G3588"\w* \w forehead|strong="G3359"\w* \w a|strong="G2532"\w* \w name|strong="G3686"\w* \w was|strong="G3588"\w* \w written|strong="G1125"\w*, “\w MYSTERY|strong="G3466"\w*, BABYLON \w THE|strong="G2532"\w* \w GREAT|strong="G3173"\w*, \w THE|strong="G2532"\w* \w MOTHER|strong="G3384"\w* \w OF|strong="G2532"\w* \w THE|strong="G2532"\w* \w PROSTITUTES|strong="G4204"\w* \w AND|strong="G2532"\w* \w OF|strong="G2532"\w* \w THE|strong="G2532"\w* ABOMINATIONS \w OF|strong="G2532"\w* \w THE|strong="G2532"\w* \w EARTH|strong="G1093"\w*.” +\v 6 \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w the|strong="G2532"\w* \w woman|strong="G1135"\w* \w drunken|strong="G3184"\w* \w with|strong="G1537"\w* \w the|strong="G2532"\w* blood \w of|strong="G1537"\w* \w the|strong="G2532"\w* saints \w and|strong="G2532"\w* \w with|strong="G1537"\w* \w the|strong="G2532"\w* blood \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w martyrs|strong="G3144"\w* \w of|strong="G1537"\w* \w Jesus|strong="G2424"\w*. \w When|strong="G2532"\w* \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w her|strong="G1438"\w*, \w I|strong="G2532"\w* \w wondered|strong="G2296"\w* \w with|strong="G1537"\w* \w great|strong="G3173"\w* \w amazement|strong="G2296"\w*. +\p +\v 7 \w The|strong="G2532"\w* angel \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w*, “\w Why|strong="G5101"\w* \w do|strong="G5101"\w* \w you|strong="G4771"\w* \w wonder|strong="G2296"\w*? \w I|strong="G1473"\w* \w will|strong="G5101"\w* \w tell|strong="G3004"\w* \w you|strong="G4771"\w* \w the|strong="G2532"\w* \w mystery|strong="G3466"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w woman|strong="G1135"\w* \w and|strong="G2532"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w* \w that|strong="G3588"\w* carries \w her|strong="G1438"\w*, \w which|strong="G3588"\w* \w has|strong="G2192"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* \w heads|strong="G2776"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w ten|strong="G1176"\w* \w horns|strong="G2768"\w*. +\v 8 \w The|strong="G2532"\w* \w beast|strong="G2342"\w* \w that|strong="G3754"\w* \w you|strong="G3739"\w* \w saw|strong="G3708"\w* \w was|strong="G1510"\w*, \w and|strong="G2532"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w*; \w and|strong="G2532"\w* \w is|strong="G1510"\w* \w about|strong="G3195"\w* \w to|strong="G1519"\w* \w come|strong="G3195"\w* \w up|strong="G1519"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* abyss \w and|strong="G2532"\w* \w to|strong="G1519"\w* \w go|strong="G5217"\w* \w into|strong="G1519"\w* destruction. \w Those|strong="G3588"\w* \w who|strong="G3739"\w* \w dwell|strong="G2730"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w and|strong="G2532"\w* \w whose|strong="G3739"\w* \w names|strong="G3686"\w* \w have|strong="G2532"\w* \w not|strong="G3756"\w* \w been|strong="G1510"\w* \w written|strong="G1125"\w* \w in|strong="G1519"\w* \w the|strong="G2532"\w* \w book|strong="G3588"\w* \w of|strong="G1537"\w* \w life|strong="G2222"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w foundation|strong="G2602"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w world|strong="G2889"\w* \w will|strong="G3195"\w* \w marvel|strong="G2296"\w* \w when|strong="G2532"\w* \w they|strong="G2532"\w* \w see|strong="G3708"\w* \w that|strong="G3754"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w* \w was|strong="G1510"\w*, \w and|strong="G2532"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w*, \w and|strong="G2532"\w* \w shall|strong="G2532"\w* \w be|strong="G1510"\w* \w present|strong="G3918"\w*.\f + \fr 17:8 \ft TR reads “yet is” instead of “shall be present”\f* +\p +\v 9 \w Here|strong="G5602"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w mind|strong="G3563"\w* \w that|strong="G3588"\w* \w has|strong="G2192"\w* \w wisdom|strong="G4678"\w*. \w The|strong="G2532"\w* \w seven|strong="G2033"\w* \w heads|strong="G2776"\w* \w are|strong="G1510"\w* \w seven|strong="G2033"\w* \w mountains|strong="G3735"\w* \w on|strong="G1909"\w* \w which|strong="G3588"\w* \w the|strong="G2532"\w* \w woman|strong="G1135"\w* \w sits|strong="G2521"\w*. +\v 10 \w They|strong="G2532"\w* \w are|strong="G1510"\w* \w seven|strong="G2033"\w* \w kings|strong="G3588"\w*. \w Five|strong="G4002"\w* \w have|strong="G2532"\w* \w fallen|strong="G4098"\w*, \w the|strong="G2532"\w* \w one|strong="G1520"\w* \w is|strong="G1510"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w other|strong="G1520"\w* \w has|strong="G1510"\w* \w not|strong="G1510"\w* \w yet|strong="G2532"\w* \w come|strong="G2064"\w*. \w When|strong="G3752"\w* \w he|strong="G2532"\w* \w comes|strong="G2064"\w*, \w he|strong="G2532"\w* \w must|strong="G1163"\w* \w continue|strong="G3306"\w* \w a|strong="G2532"\w* \w little|strong="G3641"\w* \w while|strong="G1510"\w*. +\v 11 \w The|strong="G2532"\w* \w beast|strong="G2342"\w* \w that|strong="G3739"\w* \w was|strong="G1510"\w*, \w and|strong="G2532"\w* \w is|strong="G1510"\w* \w not|strong="G3756"\w*, \w is|strong="G1510"\w* \w himself|strong="G1519"\w* \w also|strong="G2532"\w* \w an|strong="G2532"\w* \w eighth|strong="G3590"\w*, \w and|strong="G2532"\w* \w is|strong="G1510"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w goes|strong="G5217"\w* \w to|strong="G1519"\w* destruction. +\v 12 \w The|strong="G2532"\w* \w ten|strong="G1176"\w* \w horns|strong="G2768"\w* \w that|strong="G3739"\w* \w you|strong="G3739"\w* \w saw|strong="G3708"\w* \w are|strong="G1510"\w* \w ten|strong="G1176"\w* \w kings|strong="G3588"\w* \w who|strong="G3739"\w* \w have|strong="G2532"\w* \w received|strong="G2983"\w* \w no|strong="G2532"\w* kingdom \w as|strong="G5613"\w* \w yet|strong="G2532"\w*, \w but|strong="G2532"\w* \w they|strong="G2532"\w* \w receive|strong="G2983"\w* \w authority|strong="G1849"\w* \w as|strong="G5613"\w* \w kings|strong="G3588"\w* \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w* \w for|strong="G1520"\w* \w one|strong="G1520"\w* \w hour|strong="G5610"\w*. +\v 13 \w These|strong="G3778"\w* \w have|strong="G2192"\w* \w one|strong="G1520"\w* \w mind|strong="G1106"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w give|strong="G1325"\w* \w their|strong="G2532"\w* \w power|strong="G1411"\w* \w and|strong="G2532"\w* \w authority|strong="G1849"\w* \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w*. +\v 14 \w These|strong="G3778"\w* \w will|strong="G1510"\w* \w war|strong="G4170"\w* \w against|strong="G3326"\w* \w the|strong="G2532"\w* Lamb, \w and|strong="G2532"\w* \w the|strong="G2532"\w* Lamb \w will|strong="G1510"\w* \w overcome|strong="G3528"\w* \w them|strong="G3588"\w*, \w for|strong="G3754"\w* \w he|strong="G2532"\w* \w is|strong="G1510"\w* \w Lord|strong="G2962"\w* \w of|strong="G2532"\w* \w lords|strong="G2962"\w* \w and|strong="G2532"\w* \w King|strong="G3588"\w* \w of|strong="G2532"\w* \w kings|strong="G3588"\w*; \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w* \w are|strong="G1510"\w* \w called|strong="G2822"\w*, \w chosen|strong="G1588"\w*, \w and|strong="G2532"\w* \w faithful|strong="G4103"\w*.” +\v 15 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w*, “\w The|strong="G2532"\w* \w waters|strong="G5204"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w saw|strong="G3708"\w*, \w where|strong="G3757"\w* \w the|strong="G2532"\w* \w prostitute|strong="G4204"\w* \w sits|strong="G2521"\w*, \w are|strong="G1510"\w* \w peoples|strong="G2992"\w*, \w multitudes|strong="G3793"\w*, \w nations|strong="G1484"\w*, \w and|strong="G2532"\w* \w languages|strong="G1100"\w*. +\v 16 \w The|strong="G1722"\w* \w ten|strong="G1176"\w* \w horns|strong="G2768"\w* \w which|strong="G3739"\w* \w you|strong="G3739"\w* \w saw|strong="G3708"\w*, \w they|strong="G2532"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w beast|strong="G2342"\w* \w will|strong="G2532"\w* \w hate|strong="G3404"\w* \w the|strong="G1722"\w* \w prostitute|strong="G4204"\w*, \w will|strong="G2532"\w* \w make|strong="G4160"\w* \w her|strong="G1438"\w* \w desolate|strong="G2049"\w*, \w will|strong="G2532"\w* strip \w her|strong="G1438"\w* \w naked|strong="G1131"\w*, \w will|strong="G2532"\w* \w eat|strong="G2068"\w* \w her|strong="G1438"\w* \w flesh|strong="G4561"\w*, \w and|strong="G2532"\w* \w will|strong="G2532"\w* \w burn|strong="G2618"\w* \w her|strong="G1438"\w* utterly \w with|strong="G1722"\w* \w fire|strong="G4442"\w*. +\v 17 \w For|strong="G1063"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w put|strong="G1325"\w* \w in|strong="G1519"\w* \w their|strong="G2532"\w* \w hearts|strong="G2588"\w* \w to|strong="G1519"\w* \w do|strong="G4160"\w* \w what|strong="G3588"\w* \w he|strong="G2532"\w* \w has|strong="G2316"\w* \w in|strong="G1519"\w* \w mind|strong="G2588"\w*, \w to|strong="G1519"\w* \w be|strong="G2532"\w* \w of|strong="G3056"\w* \w one|strong="G1520"\w* \w mind|strong="G2588"\w*, \w and|strong="G2532"\w* \w to|strong="G1519"\w* \w give|strong="G1325"\w* \w their|strong="G2532"\w* kingdom \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w*, \w until|strong="G1519"\w* \w the|strong="G2532"\w* \w words|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w* \w should|strong="G2316"\w* \w be|strong="G2532"\w* \w accomplished|strong="G5055"\w*. +\v 18 \w The|strong="G2532"\w* \w woman|strong="G1135"\w* \w whom|strong="G3739"\w* \w you|strong="G3739"\w* \w saw|strong="G3708"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w great|strong="G3173"\w* \w city|strong="G4172"\w* \w which|strong="G3739"\w* \w reigns|strong="G2192"\w* \w over|strong="G1909"\w* \w the|strong="G2532"\w* \w kings|strong="G3588"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*.” +\c 18 +\p +\v 1 \w After|strong="G3326"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w another|strong="G3588"\w* \w angel|strong="G2597"\w* \w coming|strong="G2597"\w* \w down|strong="G2597"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w*, \w having|strong="G2192"\w* \w great|strong="G3173"\w* \w authority|strong="G1849"\w*. \w The|strong="G2532"\w* \w earth|strong="G1093"\w* \w was|strong="G3588"\w* \w illuminated|strong="G5461"\w* \w with|strong="G3326"\w* \w his|strong="G3708"\w* \w glory|strong="G1391"\w*. +\v 2 \w He|strong="G2532"\w* \w cried|strong="G2896"\w* \w with|strong="G1722"\w* \w a|strong="G1096"\w* \w mighty|strong="G2478"\w* \w voice|strong="G5456"\w*, \w saying|strong="G3004"\w*, “\w Fallen|strong="G4098"\w*, \w fallen|strong="G4098"\w* \w is|strong="G3588"\w* Babylon \w the|strong="G1722"\w* \w great|strong="G3173"\w*, \w and|strong="G2532"\w* \w she|strong="G2532"\w* \w has|strong="G1096"\w* \w become|strong="G1096"\w* \w a|strong="G1096"\w* \w habitation|strong="G2732"\w* \w of|strong="G4151"\w* \w demons|strong="G1140"\w*, \w a|strong="G1096"\w* \w prison|strong="G5438"\w* \w of|strong="G4151"\w* \w every|strong="G3956"\w* unclean \w spirit|strong="G4151"\w*, \w and|strong="G2532"\w* \w a|strong="G1096"\w* \w prison|strong="G5438"\w* \w of|strong="G4151"\w* \w every|strong="G3956"\w* unclean \w and|strong="G2532"\w* \w hated|strong="G3404"\w* \w bird|strong="G3732"\w*! +\v 3 \w For|strong="G3754"\w* \w all|strong="G3956"\w* \w the|strong="G2532"\w* \w nations|strong="G1484"\w* \w have|strong="G2532"\w* \w drunk|strong="G4095"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w wine|strong="G3631"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w wrath|strong="G2372"\w* \w of|strong="G1537"\w* \w her|strong="G3956"\w* \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w*, \w the|strong="G2532"\w* \w kings|strong="G3588"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w committed|strong="G4203"\w* \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w* \w with|strong="G3326"\w* \w her|strong="G3956"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w merchants|strong="G1713"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* grew \w rich|strong="G4147"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w abundance|strong="G1411"\w* \w of|strong="G1537"\w* \w her|strong="G3956"\w* luxury.” +\p +\v 4 \w I|strong="G1473"\w* heard \w another|strong="G3588"\w* \w voice|strong="G5456"\w* \w from|strong="G1537"\w* \w heaven|strong="G3772"\w*, \w saying|strong="G3004"\w*, “\w Come|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w her|strong="G3588"\w*, \w my|strong="G1473"\w* \w people|strong="G2992"\w*, \w that|strong="G2443"\w* \w you|strong="G3004"\w* \w have|strong="G2532"\w* \w no|strong="G3361"\w* participation \w in|strong="G2532"\w* \w her|strong="G3588"\w* sins, \w and|strong="G2532"\w* \w that|strong="G2443"\w* \w you|strong="G3004"\w* don’\w t|strong="G3588"\w* \w receive|strong="G2983"\w* \w of|strong="G1537"\w* \w her|strong="G3588"\w* \w plagues|strong="G4127"\w*, +\v 5 \w for|strong="G3754"\w* \w her|strong="G3754"\w* sins \w have|strong="G2532"\w* reached \w to|strong="G2532"\w* \w the|strong="G2532"\w* \w sky|strong="G3772"\w*, \w and|strong="G2532"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w remembered|strong="G3421"\w* \w her|strong="G3754"\w* iniquities. +\v 6 Return \w to|strong="G2532"\w* \w her|strong="G2596"\w* \w just|strong="G5613"\w* \w as|strong="G5613"\w* \w she|strong="G2532"\w* returned, \w and|strong="G2532"\w* repay \w her|strong="G2596"\w* \w double|strong="G1362"\w* \w as|strong="G5613"\w* \w she|strong="G2532"\w* \w did|strong="G2532"\w*, \w and|strong="G2532"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w her|strong="G2596"\w* \w works|strong="G2041"\w*. \w In|strong="G1722"\w* \w the|strong="G1722"\w* \w cup|strong="G4221"\w* \w which|strong="G3739"\w* \w she|strong="G2532"\w* \w mixed|strong="G2767"\w*, \w mix|strong="G2767"\w* \w to|strong="G2532"\w* \w her|strong="G2596"\w* \w double|strong="G1362"\w*. +\v 7 However \w much|strong="G5118"\w* \w she|strong="G2532"\w* \w glorified|strong="G1392"\w* \w herself|strong="G1438"\w* \w and|strong="G2532"\w* grew wanton, \w so|strong="G2532"\w* \w much|strong="G5118"\w* \w give|strong="G1325"\w* \w her|strong="G1325"\w* \w of|strong="G2532"\w* torment \w and|strong="G2532"\w* \w mourning|strong="G3997"\w*. \w For|strong="G3754"\w* \w she|strong="G2532"\w* \w says|strong="G3004"\w* \w in|strong="G1722"\w* \w her|strong="G1325"\w* \w heart|strong="G2588"\w*, ‘\w I|strong="G2532"\w* \w sit|strong="G2521"\w* \w a|strong="G2532"\w* queen, \w and|strong="G2532"\w* \w am|strong="G1510"\w* \w no|strong="G3756"\w* \w widow|strong="G5503"\w*, \w and|strong="G2532"\w* \w will|strong="G1510"\w* \w in|strong="G1722"\w* \w no|strong="G3756"\w* \w way|strong="G1722"\w* \w see|strong="G3708"\w* \w mourning|strong="G3997"\w*.’ +\v 8 \w Therefore|strong="G1223"\w* \w in|strong="G1722"\w* \w one|strong="G1520"\w* \w day|strong="G2250"\w* \w her|strong="G1438"\w* \w plagues|strong="G4127"\w* \w will|strong="G2316"\w* \w come|strong="G2240"\w*: \w death|strong="G2288"\w*, \w mourning|strong="G3997"\w*, \w and|strong="G2532"\w* \w famine|strong="G3042"\w*; \w and|strong="G2532"\w* \w she|strong="G2532"\w* \w will|strong="G2316"\w* \w be|strong="G2532"\w* utterly \w burned|strong="G2618"\w* \w with|strong="G1722"\w* \w fire|strong="G4442"\w*, \w for|strong="G3754"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w God|strong="G2316"\w* \w who|strong="G3588"\w* \w has|strong="G2316"\w* \w judged|strong="G2919"\w* \w her|strong="G1438"\w* \w is|strong="G3588"\w* \w strong|strong="G2478"\w*. +\p +\v 9 \w The|strong="G2532"\w* \w kings|strong="G3588"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w who|strong="G3588"\w* \w committed|strong="G4203"\w* sexual \w immorality|strong="G4203"\w* \w and|strong="G2532"\w* \w lived|strong="G2532"\w* wantonly \w with|strong="G3326"\w* \w her|strong="G1438"\w* \w will|strong="G2532"\w* \w weep|strong="G2799"\w* \w and|strong="G2532"\w* \w wail|strong="G2875"\w* \w over|strong="G1909"\w* \w her|strong="G1438"\w*, \w when|strong="G3752"\w* \w they|strong="G2532"\w* look \w at|strong="G1909"\w* \w the|strong="G2532"\w* \w smoke|strong="G2586"\w* \w of|strong="G2532"\w* \w her|strong="G1438"\w* \w burning|strong="G4451"\w*, +\v 10 \w standing|strong="G2476"\w* \w far|strong="G3113"\w* \w away|strong="G3113"\w* \w for|strong="G3754"\w* \w the|strong="G1223"\w* \w fear|strong="G5401"\w* \w of|strong="G1223"\w* \w her|strong="G3754"\w* torment, \w saying|strong="G3004"\w*, ‘\w Woe|strong="G3759"\w*, \w woe|strong="G3759"\w*, \w the|strong="G1223"\w* \w great|strong="G3173"\w* \w city|strong="G4172"\w*, Babylon, \w the|strong="G1223"\w* \w strong|strong="G2478"\w* \w city|strong="G4172"\w*! \w For|strong="G3754"\w* \w your|strong="G1223"\w* \w judgment|strong="G2920"\w* \w has|strong="G5610"\w* \w come|strong="G2064"\w* \w in|strong="G1223"\w* \w one|strong="G1520"\w* \w hour|strong="G5610"\w*.’ +\v 11 \w The|strong="G2532"\w* \w merchants|strong="G1713"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w weep|strong="G2799"\w* \w and|strong="G2532"\w* \w mourn|strong="G3996"\w* \w over|strong="G1909"\w* \w her|strong="G1438"\w*, \w for|strong="G3754"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w* buys \w their|strong="G1438"\w* \w merchandise|strong="G1117"\w* \w any|strong="G3762"\w* \w more|strong="G3765"\w*: +\v 12 \w merchandise|strong="G1117"\w* \w of|strong="G1537"\w* \w gold|strong="G5557"\w*, silver, \w precious|strong="G5093"\w* \w stones|strong="G3037"\w*, \w pearls|strong="G3135"\w*, \w fine|strong="G1039"\w* \w linen|strong="G1039"\w*, \w purple|strong="G4209"\w*, \w silk|strong="G4596"\w*, \w scarlet|strong="G2847"\w*, \w all|strong="G3956"\w* \w expensive|strong="G5093"\w* \w wood|strong="G3586"\w*, \w every|strong="G3956"\w* \w vessel|strong="G4632"\w* \w of|strong="G1537"\w* \w ivory|strong="G1661"\w*, \w every|strong="G3956"\w* \w vessel|strong="G4632"\w* \w made|strong="G3956"\w* \w of|strong="G1537"\w* \w most|strong="G1537"\w* \w precious|strong="G5093"\w* \w wood|strong="G3586"\w*, \w and|strong="G2532"\w* \w of|strong="G1537"\w* \w brass|strong="G5475"\w*, \w and|strong="G2532"\w* \w iron|strong="G4604"\w*, \w and|strong="G2532"\w* \w marble|strong="G3139"\w*; +\v 13 \w and|strong="G2532"\w* \w cinnamon|strong="G2792"\w*, \w incense|strong="G2368"\w*, \w perfume|strong="G3464"\w*, \w frankincense|strong="G3030"\w*, \w wine|strong="G3631"\w*, \w olive|strong="G1637"\w* \w oil|strong="G1637"\w*, \w fine|strong="G2532"\w* \w flour|strong="G4585"\w*, \w wheat|strong="G4621"\w*, \w cattle|strong="G2934"\w*, \w sheep|strong="G4263"\w*, \w horses|strong="G2462"\w*, \w chariots|strong="G4480"\w*, \w and|strong="G2532"\w* \w people|strong="G5590"\w*’s \w bodies|strong="G4983"\w* \w and|strong="G2532"\w* \w souls|strong="G5590"\w*. +\v 14 \w The|strong="G2532"\w* \w fruits|strong="G3703"\w* \w which|strong="G3588"\w* \w your|strong="G2532"\w* \w soul|strong="G5590"\w* \w lusted|strong="G5590"\w* \w after|strong="G2532"\w* \w have|strong="G2532"\w* \w been|strong="G2532"\w* lost \w to|strong="G2532"\w* \w you|strong="G4771"\w*. \w All|strong="G3956"\w* \w things|strong="G3956"\w* \w that|strong="G3588"\w* \w were|strong="G3588"\w* \w dainty|strong="G3045"\w* \w and|strong="G2532"\w* sumptuous \w have|strong="G2532"\w* perished \w from|strong="G2532"\w* \w you|strong="G4771"\w*, \w and|strong="G2532"\w* \w you|strong="G4771"\w* \w will|strong="G2532"\w* \w find|strong="G2147"\w* \w them|strong="G3588"\w* \w no|strong="G3756"\w* \w more|strong="G3765"\w* \w at|strong="G3756"\w* \w all|strong="G3956"\w*. +\v 15 \w The|strong="G2532"\w* \w merchants|strong="G1713"\w* \w of|strong="G1223"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*, \w who|strong="G3588"\w* \w were|strong="G3588"\w* made \w rich|strong="G4147"\w* \w by|strong="G1223"\w* \w her|strong="G3588"\w*, \w will|strong="G2532"\w* \w stand|strong="G2476"\w* \w far|strong="G3113"\w* \w away|strong="G3113"\w* \w for|strong="G1223"\w* \w the|strong="G2532"\w* \w fear|strong="G5401"\w* \w of|strong="G1223"\w* \w her|strong="G3588"\w* torment, \w weeping|strong="G2799"\w* \w and|strong="G2532"\w* \w mourning|strong="G3996"\w*, +\v 16 \w saying|strong="G3004"\w*, ‘\w Woe|strong="G3759"\w*, \w woe|strong="G3759"\w*, \w the|strong="G1722"\w* \w great|strong="G3173"\w* \w city|strong="G4172"\w*, \w she|strong="G2532"\w* \w who|strong="G3588"\w* \w was|strong="G3588"\w* \w dressed|strong="G4016"\w* \w in|strong="G1722"\w* \w fine|strong="G1039"\w* \w linen|strong="G1039"\w*, \w purple|strong="G4210"\w*, \w and|strong="G2532"\w* \w scarlet|strong="G2847"\w*, \w and|strong="G2532"\w* \w decked|strong="G5558"\w* \w with|strong="G1722"\w* \w gold|strong="G5553"\w* \w and|strong="G2532"\w* \w precious|strong="G5093"\w* \w stones|strong="G3037"\w* \w and|strong="G2532"\w* \w pearls|strong="G3135"\w*! +\v 17 \w For|strong="G1909"\w* \w in|strong="G1909"\w* \w an|strong="G2532"\w* \w hour|strong="G5610"\w* \w such|strong="G5118"\w* \w great|strong="G5118"\w* \w riches|strong="G4149"\w* \w are|strong="G3588"\w* \w made|strong="G3956"\w* desolate.’ \w Every|strong="G3956"\w* ship \w master|strong="G2942"\w*, \w and|strong="G2532"\w* \w everyone|strong="G3956"\w* \w who|strong="G3588"\w* sails anywhere, \w and|strong="G2532"\w* mariners, \w and|strong="G2532"\w* \w as|strong="G3745"\w* \w many|strong="G3745"\w* \w as|strong="G3745"\w* gain \w their|strong="G2532"\w* \w living|strong="G2038"\w* \w by|strong="G1909"\w* \w sea|strong="G2281"\w*, \w stood|strong="G2476"\w* \w far|strong="G3113"\w* \w away|strong="G3113"\w*, +\v 18 \w and|strong="G2532"\w* \w cried|strong="G2896"\w* \w out|strong="G2896"\w* \w as|strong="G2532"\w* \w they|strong="G2532"\w* \w looked|strong="G2532"\w* \w at|strong="G3588"\w* \w the|strong="G2532"\w* \w smoke|strong="G2586"\w* \w of|strong="G2532"\w* \w her|strong="G3588"\w* \w burning|strong="G4451"\w*, \w saying|strong="G3004"\w*, ‘\w What|strong="G5101"\w* \w is|strong="G3588"\w* \w like|strong="G3664"\w* \w the|strong="G2532"\w* \w great|strong="G3173"\w* \w city|strong="G4172"\w*?’ +\v 19 \w They|strong="G2532"\w* \w cast|strong="G2532"\w* \w dust|strong="G5522"\w* \w on|strong="G1909"\w* \w their|strong="G2532"\w* \w heads|strong="G2776"\w*, \w and|strong="G2532"\w* \w cried|strong="G2896"\w*, \w weeping|strong="G2799"\w* \w and|strong="G2532"\w* \w mourning|strong="G3996"\w*, \w saying|strong="G3004"\w*, ‘\w Woe|strong="G3759"\w*, \w woe|strong="G3759"\w*, \w the|strong="G1722"\w* \w great|strong="G3173"\w* \w city|strong="G4172"\w*, \w in|strong="G1722"\w* \w which|strong="G3739"\w* \w all|strong="G3956"\w* \w who|strong="G3739"\w* \w had|strong="G2192"\w* \w their|strong="G2532"\w* \w ships|strong="G4143"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w* \w were|strong="G3588"\w* \w made|strong="G3956"\w* \w rich|strong="G4147"\w* \w by|strong="G1722"\w* \w reason|strong="G1537"\w* \w of|strong="G1537"\w* \w her|strong="G3956"\w* \w great|strong="G3173"\w* \w wealth|strong="G5094"\w*!’ \w For|strong="G3754"\w* \w she|strong="G2532"\w* \w is|strong="G3588"\w* \w made|strong="G3956"\w* \w desolate|strong="G2049"\w* \w in|strong="G1722"\w* \w one|strong="G1520"\w* \w hour|strong="G5610"\w*. +\p +\v 20 “\w Rejoice|strong="G2165"\w* \w over|strong="G1909"\w* \w her|strong="G3754"\w*, O \w heaven|strong="G3772"\w*, \w you|strong="G5210"\w* saints, apostles, \w and|strong="G2532"\w* \w prophets|strong="G4396"\w*, \w for|strong="G3754"\w* \w God|strong="G2316"\w* \w has|strong="G2316"\w* \w judged|strong="G2919"\w* \w your|strong="G2532"\w* \w judgment|strong="G2917"\w* \w on|strong="G1909"\w* \w her|strong="G3754"\w*.” +\p +\v 21 \w A|strong="G5613"\w* \w mighty|strong="G2478"\w* angel \w took|strong="G2532"\w* \w up|strong="G1519"\w* \w a|strong="G5613"\w* \w stone|strong="G3037"\w* \w like|strong="G5613"\w* \w a|strong="G5613"\w* \w great|strong="G3173"\w* \w millstone|strong="G3458"\w* \w and|strong="G2532"\w* \w cast|strong="G2532"\w* \w it|strong="G2532"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w*, \w saying|strong="G3004"\w*, “\w Thus|strong="G3779"\w* \w with|strong="G2532"\w* \w violence|strong="G3731"\w* \w will|strong="G2532"\w* Babylon, \w the|strong="G2532"\w* \w great|strong="G3173"\w* \w city|strong="G4172"\w*, \w be|strong="G2532"\w* thrown down, \w and|strong="G2532"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w found|strong="G2147"\w* \w no|strong="G3756"\w* \w more|strong="G2089"\w* \w at|strong="G1519"\w* \w all|strong="G2532"\w*. +\v 22 \w The|strong="G1722"\w* \w voice|strong="G5456"\w* \w of|strong="G2532"\w* \w harpists|strong="G2790"\w*, minstrels, flute players, \w and|strong="G2532"\w* \w trumpeters|strong="G4538"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* heard \w no|strong="G3756"\w* \w more|strong="G2089"\w* \w at|strong="G1722"\w* \w all|strong="G3956"\w* \w in|strong="G1722"\w* \w you|strong="G4771"\w*. \w No|strong="G3756"\w* \w craftsman|strong="G5079"\w* \w of|strong="G2532"\w* \w whatever|strong="G3956"\w* \w craft|strong="G5078"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w found|strong="G2147"\w* \w any|strong="G3956"\w* \w more|strong="G2089"\w* \w at|strong="G1722"\w* \w all|strong="G3956"\w* \w in|strong="G1722"\w* \w you|strong="G4771"\w*. \w The|strong="G1722"\w* \w sound|strong="G5456"\w* \w of|strong="G2532"\w* \w a|strong="G2532"\w* \w mill|strong="G3458"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* heard \w no|strong="G3756"\w* \w more|strong="G2089"\w* \w at|strong="G1722"\w* \w all|strong="G3956"\w* \w in|strong="G1722"\w* \w you|strong="G4771"\w*. +\v 23 \w The|strong="G1722"\w* \w light|strong="G5457"\w* \w of|strong="G2532"\w* \w a|strong="G2532"\w* \w lamp|strong="G3088"\w* \w will|strong="G1510"\w* \w shine|strong="G5316"\w* \w no|strong="G3756"\w* \w more|strong="G2089"\w* \w at|strong="G1722"\w* \w all|strong="G3956"\w* \w in|strong="G1722"\w* \w you|strong="G4771"\w*. \w The|strong="G1722"\w* \w voice|strong="G5456"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w bridegroom|strong="G3566"\w* \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w bride|strong="G3565"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w heard|strong="G1484"\w* \w no|strong="G3756"\w* \w more|strong="G2089"\w* \w at|strong="G1722"\w* \w all|strong="G3956"\w* \w in|strong="G1722"\w* \w you|strong="G4771"\w*, \w for|strong="G3754"\w* \w your|strong="G2532"\w* \w merchants|strong="G1713"\w* \w were|strong="G1510"\w* \w the|strong="G1722"\w* princes \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w*; \w for|strong="G3754"\w* \w with|strong="G1722"\w* \w your|strong="G2532"\w* \w sorcery|strong="G5331"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w nations|strong="G1484"\w* \w were|strong="G1510"\w* \w deceived|strong="G4105"\w*. +\v 24 \w In|strong="G1722"\w* \w her|strong="G3956"\w* \w was|strong="G3588"\w* \w found|strong="G2147"\w* \w the|strong="G1722"\w* blood \w of|strong="G2532"\w* \w prophets|strong="G4396"\w* \w and|strong="G2532"\w* \w of|strong="G2532"\w* saints, \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w all|strong="G3956"\w* \w who|strong="G3588"\w* \w have|strong="G2532"\w* \w been|strong="G2532"\w* \w slain|strong="G4969"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w*.” +\c 19 +\p +\v 1 \w After|strong="G3326"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w I|strong="G1473"\w* heard \w something|strong="G4183"\w* \w like|strong="G5613"\w* \w a|strong="G5613"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w* \w of|strong="G2316"\w* \w a|strong="G5613"\w* \w great|strong="G3173"\w* \w multitude|strong="G3793"\w* \w in|strong="G1722"\w* \w heaven|strong="G3772"\w*, \w saying|strong="G3004"\w*, “Hallelujah! \w Salvation|strong="G4991"\w*, \w power|strong="G1411"\w*, \w and|strong="G2532"\w* \w glory|strong="G1391"\w* belong \w to|strong="G2532"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w*; +\v 2 \w for|strong="G3754"\w* \w his|strong="G1722"\w* \w judgments|strong="G2920"\w* \w are|strong="G3588"\w* \w true|strong="G3588"\w* \w and|strong="G2532"\w* \w righteous|strong="G1342"\w*. \w For|strong="G3754"\w* \w he|strong="G2532"\w* \w has|strong="G3748"\w* \w judged|strong="G2919"\w* \w the|strong="G1722"\w* \w great|strong="G3173"\w* \w prostitute|strong="G4204"\w* \w who|strong="G3588"\w* \w corrupted|strong="G5351"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w* \w with|strong="G1722"\w* \w her|strong="G3754"\w* \w sexual|strong="G4202"\w* \w immorality|strong="G4202"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w has|strong="G3748"\w* \w avenged|strong="G1556"\w* \w the|strong="G1722"\w* blood \w of|strong="G1537"\w* \w his|strong="G1722"\w* \w servants|strong="G1401"\w* \w at|strong="G1722"\w* \w her|strong="G3754"\w* \w hand|strong="G5495"\w*.” +\p +\v 3 \w A|strong="G2532"\w* \w second|strong="G1208"\w* \w said|strong="G3004"\w*, “Hallelujah! \w Her|strong="G1519"\w* \w smoke|strong="G2586"\w* goes \w up|strong="G1519"\w* \w forever|strong="G1519"\w* \w and|strong="G2532"\w* \w ever|strong="G1519"\w*.” +\v 4 \w The|strong="G2532"\w* \w twenty-four|strong="G1501"\w* \w elders|strong="G4245"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w four|strong="G5064"\w* \w living|strong="G2226"\w* \w creatures|strong="G2226"\w* \w fell|strong="G4098"\w* \w down|strong="G4098"\w* \w and|strong="G2532"\w* \w worshiped|strong="G4352"\w* \w God|strong="G2316"\w* \w who|strong="G3588"\w* \w sits|strong="G2521"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w*, \w saying|strong="G3004"\w*, “Amen! Hallelujah!” +\p +\v 5 \w A|strong="G2532"\w* \w voice|strong="G5456"\w* \w came|strong="G1831"\w* \w from|strong="G1537"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w*, \w saying|strong="G3004"\w*, “\w Give|strong="G3004"\w* praise \w to|strong="G2532"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w*, \w all|strong="G3956"\w* \w you|strong="G3004"\w* \w his|strong="G3956"\w* \w servants|strong="G1401"\w*, \w you|strong="G3004"\w* \w who|strong="G3588"\w* \w fear|strong="G5399"\w* \w him|strong="G3588"\w*, \w the|strong="G2532"\w* \w small|strong="G3398"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w great|strong="G3173"\w*!” +\p +\v 6 \w I|strong="G2532"\w* heard \w something|strong="G4183"\w* \w like|strong="G5613"\w* \w the|strong="G2532"\w* \w voice|strong="G5456"\w* \w of|strong="G2316"\w* \w a|strong="G5613"\w* \w great|strong="G4183"\w* \w multitude|strong="G3793"\w*, \w and|strong="G2532"\w* \w like|strong="G5613"\w* \w the|strong="G2532"\w* \w voice|strong="G5456"\w* \w of|strong="G2316"\w* \w many|strong="G4183"\w* \w waters|strong="G5204"\w*, \w and|strong="G2532"\w* \w like|strong="G5613"\w* \w the|strong="G2532"\w* \w voice|strong="G5456"\w* \w of|strong="G2316"\w* \w mighty|strong="G2478"\w* \w thunders|strong="G1027"\w*, \w saying|strong="G3004"\w*, “Hallelujah! \w For|strong="G3754"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w our|strong="G2316"\w* \w God|strong="G2316"\w*, \w the|strong="G2532"\w* \w Almighty|strong="G3841"\w*, reigns! +\v 7 \w Let|strong="G2532"\w*’s \w rejoice|strong="G5463"\w* \w and|strong="G2532"\w* \w be|strong="G2532"\w* exceedingly \w glad|strong="G5463"\w*, \w and|strong="G2532"\w* \w let|strong="G2532"\w*’s \w give|strong="G1325"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w to|strong="G2532"\w* \w him|strong="G3588"\w*. \w For|strong="G3754"\w* \w the|strong="G2532"\w* \w wedding|strong="G1062"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* Lamb \w has|strong="G3748"\w* \w come|strong="G2064"\w*, \w and|strong="G2532"\w* \w his|strong="G1438"\w* \w wife|strong="G1135"\w* \w has|strong="G3748"\w* \w made|strong="G2090"\w* \w herself|strong="G1438"\w* \w ready|strong="G2090"\w*.” +\v 8 \w It|strong="G2532"\w* \w was|strong="G1510"\w* \w given|strong="G1325"\w* \w to|strong="G2443"\w* \w her|strong="G1325"\w* \w that|strong="G2443"\w* \w she|strong="G2532"\w* \w would|strong="G2532"\w* array herself \w in|strong="G2532"\w* \w bright|strong="G2986"\w*, \w pure|strong="G2513"\w*, \w fine|strong="G1039"\w* \w linen|strong="G1039"\w*, \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w fine|strong="G1039"\w* \w linen|strong="G1039"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w righteous|strong="G1345"\w* \w acts|strong="G1345"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* saints. +\p +\v 9 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w me|strong="G1473"\w*, “\w Write|strong="G1125"\w*, ‘\w Blessed|strong="G3107"\w* \w are|strong="G1510"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G1510"\w* \w invited|strong="G2564"\w* \w to|strong="G1519"\w* \w the|strong="G2532"\w* \w wedding|strong="G1062"\w* \w supper|strong="G1173"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w Lamb|strong="G3004"\w*.’” \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G1519"\w* \w me|strong="G1473"\w*, “\w These|strong="G3778"\w* \w are|strong="G1510"\w* \w true|strong="G3588"\w* \w words|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w*.” +\p +\v 10 \w I|strong="G1473"\w* \w fell|strong="G4098"\w* \w down|strong="G4098"\w* \w before|strong="G1715"\w* \w his|strong="G3708"\w* \w feet|strong="G4228"\w* \w to|strong="G2532"\w* \w worship|strong="G4352"\w* \w him|strong="G3588"\w*. \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w*, “\w Look|strong="G3708"\w*! Don’\w t|strong="G3588"\w* \w do|strong="G2532"\w* \w it|strong="G2532"\w*! \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w a|strong="G2192"\w* \w fellow|strong="G4889"\w* bondservant \w with|strong="G2532"\w* \w you|strong="G4771"\w* \w and|strong="G2532"\w* \w with|strong="G2532"\w* \w your|strong="G2192"\w* brothers \w who|strong="G3588"\w* \w hold|strong="G2192"\w* \w the|strong="G2532"\w* \w testimony|strong="G3141"\w* \w of|strong="G4151"\w* \w Jesus|strong="G2424"\w*. \w Worship|strong="G4352"\w* \w God|strong="G2316"\w*, \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w testimony|strong="G3141"\w* \w of|strong="G4151"\w* \w Jesus|strong="G2424"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w Spirit|strong="G4151"\w* \w of|strong="G4151"\w* \w Prophecy|strong="G4394"\w*.” +\p +\v 11 \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w the|strong="G1722"\w* \w heaven|strong="G3772"\w* opened, \w and|strong="G2532"\w* \w behold|strong="G2400"\w*, \w a|strong="G2532"\w* \w white|strong="G3022"\w* \w horse|strong="G2462"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w sat|strong="G2521"\w* \w on|strong="G1909"\w* \w it|strong="G2532"\w* \w is|strong="G3588"\w* \w called|strong="G2564"\w* \w Faithful|strong="G4103"\w* \w and|strong="G2532"\w* \w True|strong="G4103"\w*. \w In|strong="G1722"\w* \w righteousness|strong="G1343"\w* \w he|strong="G2532"\w* \w judges|strong="G2919"\w* \w and|strong="G2532"\w* makes \w war|strong="G4170"\w*. +\v 12 \w His|strong="G1909"\w* \w eyes|strong="G3788"\w* \w are|strong="G3588"\w* \w a|strong="G2192"\w* \w flame|strong="G5395"\w* \w of|strong="G2532"\w* \w fire|strong="G4442"\w*, \w and|strong="G2532"\w* \w on|strong="G1909"\w* \w his|strong="G1909"\w* \w head|strong="G2776"\w* \w are|strong="G3588"\w* \w many|strong="G4183"\w* \w crowns|strong="G1238"\w*. \w He|strong="G2532"\w* \w has|strong="G2192"\w* \w names|strong="G3686"\w* \w written|strong="G1125"\w* \w and|strong="G2532"\w* \w a|strong="G2192"\w* \w name|strong="G3686"\w* \w written|strong="G1125"\w* \w which|strong="G3739"\w* \w no|strong="G3762"\w* \w one|strong="G3762"\w* \w knows|strong="G1492"\w* \w but|strong="G1161"\w* \w he|strong="G2532"\w* himself. +\v 13 \w He|strong="G2532"\w* \w is|strong="G3588"\w* \w clothed|strong="G4016"\w* \w in|strong="G2532"\w* \w a|strong="G2532"\w* \w garment|strong="G2440"\w* \w sprinkled|strong="G4472"\w* \w with|strong="G2532"\w* blood. \w His|strong="G2532"\w* \w name|strong="G3686"\w* \w is|strong="G3588"\w* \w called|strong="G2564"\w* “\w The|strong="G2532"\w* \w Word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w*.” +\v 14 \w The|strong="G1722"\w* \w armies|strong="G4753"\w* \w which|strong="G3588"\w* \w are|strong="G3588"\w* \w in|strong="G1722"\w* \w heaven|strong="G3772"\w*, \w clothed|strong="G1746"\w* \w in|strong="G1722"\w* \w white|strong="G3022"\w*, \w pure|strong="G2513"\w*, \w fine|strong="G1039"\w* \w linen|strong="G1039"\w*, followed \w him|strong="G3588"\w* \w on|strong="G1909"\w* \w white|strong="G3022"\w* \w horses|strong="G2462"\w*. +\v 15 \w Out|strong="G1537"\w* \w of|strong="G1537"\w* \w his|strong="G1438"\w* \w mouth|strong="G4750"\w* \w proceeds|strong="G1607"\w* \w a|strong="G2532"\w* \w sharp|strong="G3691"\w*, double-edged \w sword|strong="G4501"\w* \w that|strong="G2443"\w* \w with|strong="G1722"\w* \w it|strong="G2532"\w* \w he|strong="G2532"\w* \w should|strong="G2316"\w* \w strike|strong="G3960"\w* \w the|strong="G1722"\w* \w nations|strong="G1484"\w*. \w He|strong="G2532"\w* \w will|strong="G2316"\w* \w rule|strong="G4165"\w* \w them|strong="G3588"\w* \w with|strong="G1722"\w* \w an|strong="G2532"\w* \w iron|strong="G4603"\w* \w rod|strong="G4464"\w*.\x + \xo 19:15 \xt Psalms 2:9 \x* \w He|strong="G2532"\w* \w treads|strong="G3961"\w* \w the|strong="G1722"\w* \w wine|strong="G3631"\w* \w press|strong="G3025"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w fierceness|strong="G2372"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w wrath|strong="G3709"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w*, \w the|strong="G1722"\w* \w Almighty|strong="G3841"\w*. +\v 16 \w He|strong="G2532"\w* \w has|strong="G2192"\w* \w on|strong="G1909"\w* \w his|strong="G1909"\w* \w garment|strong="G2440"\w* \w and|strong="G2532"\w* \w on|strong="G1909"\w* \w his|strong="G1909"\w* \w thigh|strong="G3382"\w* \w a|strong="G2192"\w* \w name|strong="G3686"\w* \w written|strong="G1125"\w*, “\w KING|strong="G3588"\w* \w OF|strong="G2532"\w* \w KINGS|strong="G3588"\w* \w AND|strong="G2532"\w* \w LORD|strong="G2962"\w* \w OF|strong="G2532"\w* \w LORDS|strong="G2962"\w*.” +\p +\v 17 \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w an|strong="G2532"\w* angel \w standing|strong="G2476"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w sun|strong="G2246"\w*. \w He|strong="G2532"\w* \w cried|strong="G2896"\w* \w with|strong="G1722"\w* \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w*, \w saying|strong="G3004"\w* \w to|strong="G1519"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w birds|strong="G3732"\w* \w that|strong="G3588"\w* \w fly|strong="G4072"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* sky, “\w Come|strong="G1205"\w*! \w Be|strong="G2532"\w* \w gathered|strong="G4863"\w* \w together|strong="G4863"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w great|strong="G3173"\w* \w supper|strong="G1173"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*,\f + \fr 19:17 \ft TR reads “supper of the great God” instead of “great supper of God”\f* +\v 18 \w that|strong="G2443"\w* \w you|strong="G3956"\w* \w may|strong="G2532"\w* \w eat|strong="G2068"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w* \w of|strong="G2532"\w* \w kings|strong="G3588"\w*, \w the|strong="G2532"\w* \w flesh|strong="G4561"\w* \w of|strong="G2532"\w* \w captains|strong="G5506"\w*, \w the|strong="G2532"\w* \w flesh|strong="G4561"\w* \w of|strong="G2532"\w* \w mighty|strong="G2478"\w* \w men|strong="G3956"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w* \w of|strong="G2532"\w* \w horses|strong="G2462"\w* \w and|strong="G2532"\w* \w of|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w sit|strong="G2521"\w* \w on|strong="G1909"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w flesh|strong="G4561"\w* \w of|strong="G2532"\w* \w all|strong="G3956"\w* \w men|strong="G3956"\w*, \w both|strong="G2532"\w* \w free|strong="G1658"\w* \w and|strong="G2532"\w* \w slave|strong="G1401"\w*, \w small|strong="G3398"\w* \w and|strong="G2532"\w* \w great|strong="G3173"\w*.” +\v 19 \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w*, \w the|strong="G2532"\w* \w kings|strong="G3588"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w*, \w and|strong="G2532"\w* \w their|strong="G2532"\w* \w armies|strong="G4753"\w*, \w gathered|strong="G4863"\w* \w together|strong="G4863"\w* \w to|strong="G2532"\w* \w make|strong="G4160"\w* \w war|strong="G4171"\w* \w against|strong="G1909"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w sat|strong="G2521"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w horse|strong="G2462"\w* \w and|strong="G2532"\w* \w against|strong="G1909"\w* \w his|strong="G1909"\w* \w army|strong="G4753"\w*. +\v 20 \w The|strong="G1722"\w* \w beast|strong="G2342"\w* \w was|strong="G3588"\w* \w taken|strong="G2983"\w*, \w and|strong="G2532"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w* \w the|strong="G1722"\w* \w false|strong="G5578"\w* \w prophet|strong="G5578"\w* \w who|strong="G3739"\w* \w worked|strong="G4160"\w* \w the|strong="G1722"\w* \w signs|strong="G4592"\w* \w in|strong="G1722"\w* \w his|strong="G1519"\w* \w sight|strong="G1799"\w*, \w with|strong="G3326"\w* \w which|strong="G3739"\w* \w he|strong="G2532"\w* \w deceived|strong="G4105"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w had|strong="G2532"\w* \w received|strong="G2983"\w* \w the|strong="G1722"\w* \w mark|strong="G5480"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w beast|strong="G2342"\w* \w and|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3739"\w* \w worshiped|strong="G4352"\w* \w his|strong="G1519"\w* \w image|strong="G1504"\w*. \w These|strong="G3739"\w* \w two|strong="G1417"\w* \w were|strong="G3588"\w* thrown \w alive|strong="G2198"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w lake|strong="G3041"\w* \w of|strong="G2532"\w* \w fire|strong="G4442"\w* \w that|strong="G3739"\w* \w burns|strong="G2545"\w* \w with|strong="G3326"\w* \w sulfur|strong="G2303"\w*. +\v 21 \w The|strong="G1722"\w* \w rest|strong="G3062"\w* \w were|strong="G3588"\w* killed \w with|strong="G1722"\w* \w the|strong="G1722"\w* \w sword|strong="G4501"\w* \w of|strong="G1537"\w* \w him|strong="G3588"\w* \w who|strong="G3588"\w* \w sat|strong="G2521"\w* \w on|strong="G1909"\w* \w the|strong="G1722"\w* \w horse|strong="G2462"\w*, \w the|strong="G1722"\w* \w sword|strong="G4501"\w* \w which|strong="G3588"\w* \w came|strong="G1831"\w* \w out|strong="G1831"\w* \w of|strong="G1537"\w* \w his|strong="G3956"\w* \w mouth|strong="G4750"\w*. \w So|strong="G2532"\w* \w all|strong="G3956"\w* \w the|strong="G1722"\w* \w birds|strong="G3732"\w* \w were|strong="G3588"\w* \w filled|strong="G5526"\w* \w with|strong="G1722"\w* \w their|strong="G2532"\w* \w flesh|strong="G4561"\w*. +\c 20 +\p +\v 1 \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w an|strong="G2192"\w* \w angel|strong="G2597"\w* \w coming|strong="G2597"\w* \w down|strong="G2597"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w heaven|strong="G3772"\w*, \w having|strong="G2192"\w* \w the|strong="G2532"\w* \w key|strong="G2807"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* abyss \w and|strong="G2532"\w* \w a|strong="G2192"\w* \w great|strong="G3173"\w* chain \w in|strong="G1909"\w* \w his|strong="G1909"\w* \w hand|strong="G5495"\w*. +\v 2 \w He|strong="G2532"\w* \w seized|strong="G2902"\w* \w the|strong="G2532"\w* \w dragon|strong="G1404"\w*, \w the|strong="G2532"\w* \w old|strong="G2094"\w* \w serpent|strong="G3789"\w*, \w who|strong="G3739"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w devil|strong="G1228"\w* \w and|strong="G2532"\w* \w Satan|strong="G4567"\w*, \w who|strong="G3739"\w* deceives \w the|strong="G2532"\w* whole inhabited \w earth|strong="G2532"\w*,\f + \fr 20:2 \ft TR and NU omit “who deceives the whole inhabited earth”.\f* \w and|strong="G2532"\w* \w bound|strong="G1210"\w* \w him|strong="G3588"\w* \w for|strong="G2532"\w* \w a|strong="G2532"\w* \w thousand|strong="G5507"\w* \w years|strong="G2094"\w*, +\v 3 \w and|strong="G2532"\w* \w cast|strong="G2532"\w* \w him|strong="G3588"\w* \w into|strong="G1519"\w* \w the|strong="G2532"\w* abyss, \w and|strong="G2532"\w* \w shut|strong="G2808"\w* \w it|strong="G2532"\w* \w and|strong="G2532"\w* \w sealed|strong="G4972"\w* \w it|strong="G2532"\w* \w over|strong="G1883"\w* \w him|strong="G3588"\w*, \w that|strong="G2443"\w* \w he|strong="G2532"\w* \w should|strong="G1163"\w* \w deceive|strong="G4105"\w* \w the|strong="G2532"\w* \w nations|strong="G1484"\w* \w no|strong="G3361"\w* \w more|strong="G2089"\w* \w until|strong="G1519"\w* \w the|strong="G2532"\w* \w thousand|strong="G5507"\w* \w years|strong="G2094"\w* \w were|strong="G3588"\w* \w finished|strong="G5055"\w*. \w After|strong="G3326"\w* \w this|strong="G3778"\w*, \w he|strong="G2532"\w* \w must|strong="G1163"\w* \w be|strong="G2532"\w* freed \w for|strong="G1519"\w* \w a|strong="G2532"\w* \w short|strong="G3588"\w* \w time|strong="G5550"\w*. +\p +\v 4 \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w thrones|strong="G2362"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w sat|strong="G2523"\w* \w on|strong="G1909"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w judgment|strong="G2917"\w* \w was|strong="G3588"\w* \w given|strong="G1325"\w* \w to|strong="G2532"\w* \w them|strong="G3588"\w*. \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w the|strong="G2532"\w* \w souls|strong="G5590"\w* \w of|strong="G3056"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w had|strong="G2424"\w* \w been|strong="G2532"\w* \w beheaded|strong="G3990"\w* \w for|strong="G1223"\w* \w the|strong="G2532"\w* \w testimony|strong="G3141"\w* \w of|strong="G3056"\w* \w Jesus|strong="G2424"\w* \w and|strong="G2532"\w* \w for|strong="G1223"\w* \w the|strong="G2532"\w* \w word|strong="G3056"\w* \w of|strong="G3056"\w* \w God|strong="G2316"\w*, \w and|strong="G2532"\w* \w such|strong="G3588"\w* \w as|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w worship|strong="G4352"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w* \w nor|strong="G3761"\w* \w his|strong="G1438"\w* \w image|strong="G1504"\w*, \w and|strong="G2532"\w* didn’\w t|strong="G3588"\w* \w receive|strong="G2983"\w* \w the|strong="G2532"\w* \w mark|strong="G5480"\w* \w on|strong="G1909"\w* \w their|strong="G1438"\w* \w forehead|strong="G3359"\w* \w and|strong="G2532"\w* \w on|strong="G1909"\w* \w their|strong="G1438"\w* \w hand|strong="G5495"\w*. \w They|strong="G2532"\w* \w lived|strong="G2198"\w* \w and|strong="G2532"\w* reigned \w with|strong="G3326"\w* \w Christ|strong="G5547"\w* \w for|strong="G1223"\w* \w a|strong="G2532"\w* \w thousand|strong="G5507"\w* \w years|strong="G2094"\w*. +\v 5 \w The|strong="G3588"\w* \w rest|strong="G3062"\w* \w of|strong="G3588"\w* \w the|strong="G3588"\w* \w dead|strong="G3498"\w* didn’\w t|strong="G3588"\w* \w live|strong="G2198"\w* until \w the|strong="G3588"\w* \w thousand|strong="G5507"\w* \w years|strong="G2094"\w* \w were|strong="G3588"\w* \w finished|strong="G5055"\w*. \w This|strong="G3778"\w* \w is|strong="G3588"\w* \w the|strong="G3588"\w* \w first|strong="G4413"\w* resurrection. +\v 6 \w Blessed|strong="G3107"\w* \w and|strong="G2532"\w* holy \w is|strong="G1510"\w* \w he|strong="G2532"\w* \w who|strong="G3588"\w* \w has|strong="G2192"\w* \w part|strong="G3313"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w first|strong="G4413"\w* resurrection. \w Over|strong="G1909"\w* \w these|strong="G3778"\w*, \w the|strong="G1722"\w* \w second|strong="G1208"\w* \w death|strong="G2288"\w* \w has|strong="G2192"\w* \w no|strong="G3756"\w* \w power|strong="G1849"\w*, \w but|strong="G2532"\w* \w they|strong="G2532"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w priests|strong="G2409"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w of|strong="G2316"\w* \w Christ|strong="G5547"\w*, \w and|strong="G2532"\w* \w will|strong="G2316"\w* \w reign|strong="G2532"\w* \w with|strong="G3326"\w* \w him|strong="G3588"\w* \w one|strong="G3588"\w* \w thousand|strong="G5507"\w* \w years|strong="G2094"\w*. +\p +\v 7 \w And|strong="G2532"\w* \w after|strong="G2532"\w* \w the|strong="G2532"\w* \w thousand|strong="G5507"\w* \w years|strong="G2094"\w*, \w Satan|strong="G4567"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w released|strong="G3089"\w* \w from|strong="G1537"\w* \w his|strong="G2532"\w* \w prison|strong="G5438"\w* +\v 8 \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w will|strong="G2532"\w* \w come|strong="G1831"\w* \w out|strong="G1831"\w* \w to|strong="G1519"\w* \w deceive|strong="G4105"\w* \w the|strong="G1722"\w* \w nations|strong="G1484"\w* \w which|strong="G3739"\w* \w are|strong="G3588"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w four|strong="G5064"\w* \w corners|strong="G1137"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w earth|strong="G1093"\w*, \w Gog|strong="G1136"\w* \w and|strong="G2532"\w* \w Magog|strong="G3098"\w*, \w to|strong="G1519"\w* \w gather|strong="G4863"\w* \w them|strong="G3588"\w* \w together|strong="G4863"\w* \w to|strong="G1519"\w* \w the|strong="G1722"\w* \w war|strong="G4171"\w*, \w whose|strong="G3739"\w* \w number|strong="G1484"\w* \w is|strong="G3588"\w* \w as|strong="G5613"\w* \w the|strong="G1722"\w* sand \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w sea|strong="G2281"\w*. +\v 9 \w They|strong="G2532"\w* \w went|strong="G2597"\w* \w up|strong="G2719"\w* \w over|strong="G1909"\w* \w the|strong="G2532"\w* \w width|strong="G4114"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w and|strong="G2532"\w* \w surrounded|strong="G2944"\w* \w the|strong="G2532"\w* \w camp|strong="G3925"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* saints \w and|strong="G2532"\w* \w the|strong="G2532"\w* beloved \w city|strong="G4172"\w*. \w Fire|strong="G4442"\w* \w came|strong="G2597"\w* \w down|strong="G2597"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w heaven|strong="G3772"\w* \w from|strong="G1537"\w* \w God|strong="G2532"\w* \w and|strong="G2532"\w* \w devoured|strong="G2719"\w* \w them|strong="G3588"\w*. +\v 10 \w The|strong="G2532"\w* \w devil|strong="G1228"\w* \w who|strong="G3588"\w* \w deceived|strong="G4105"\w* \w them|strong="G3588"\w* \w was|strong="G3588"\w* thrown \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w lake|strong="G3041"\w* \w of|strong="G2250"\w* \w fire|strong="G4442"\w* \w and|strong="G2532"\w* \w sulfur|strong="G2303"\w*, \w where|strong="G3699"\w* \w the|strong="G2532"\w* \w beast|strong="G2342"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w false|strong="G5578"\w* \w prophet|strong="G5578"\w* \w are|strong="G3588"\w* \w also|strong="G2532"\w*. \w They|strong="G2532"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* tormented \w day|strong="G2250"\w* \w and|strong="G2532"\w* \w night|strong="G3571"\w* \w forever|strong="G1519"\w* \w and|strong="G2532"\w* \w ever|strong="G1519"\w*. +\p +\v 11 \w I|strong="G3739"\w* \w saw|strong="G3708"\w* \w a|strong="G2532"\w* \w great|strong="G3173"\w* \w white|strong="G3022"\w* \w throne|strong="G2362"\w* \w and|strong="G2532"\w* \w him|strong="G3588"\w* \w who|strong="G3739"\w* \w sat|strong="G2521"\w* \w on|strong="G1909"\w* \w it|strong="G2532"\w*, \w from|strong="G2532"\w* \w whose|strong="G3739"\w* \w face|strong="G4383"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w heaven|strong="G3772"\w* \w fled|strong="G5343"\w* \w away|strong="G5343"\w*. \w There|strong="G2532"\w* \w was|strong="G3588"\w* \w found|strong="G2147"\w* \w no|strong="G3756"\w* \w place|strong="G5117"\w* \w for|strong="G1909"\w* \w them|strong="G3588"\w*. +\v 12 \w I|strong="G3739"\w* \w saw|strong="G3708"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w*, \w the|strong="G1722"\w* \w great|strong="G3173"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* \w small|strong="G3398"\w*, \w standing|strong="G2476"\w* \w before|strong="G1799"\w* \w the|strong="G1722"\w* \w throne|strong="G2362"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* opened books. \w Another|strong="G3739"\w* \w book|strong="G3588"\w* \w was|strong="G1510"\w* opened, \w which|strong="G3739"\w* \w is|strong="G1510"\w* \w the|strong="G1722"\w* \w book|strong="G3588"\w* \w of|strong="G1537"\w* \w life|strong="G2222"\w*. \w The|strong="G1722"\w* \w dead|strong="G3498"\w* \w were|strong="G1510"\w* \w judged|strong="G2919"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w things|strong="G3588"\w* \w which|strong="G3739"\w* \w were|strong="G1510"\w* \w written|strong="G1125"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* books, \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w their|strong="G2532"\w* \w works|strong="G2041"\w*. +\v 13 \w The|strong="G1722"\w* \w sea|strong="G2281"\w* \w gave|strong="G1325"\w* \w up|strong="G1325"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w in|strong="G1722"\w* \w it|strong="G2532"\w*. \w Death|strong="G2288"\w* \w and|strong="G2532"\w* Hades\f + \fr 20:13 \ft or, Hell \f* \w gave|strong="G1325"\w* \w up|strong="G1325"\w* \w the|strong="G1722"\w* \w dead|strong="G3498"\w* \w who|strong="G3588"\w* \w were|strong="G3588"\w* \w in|strong="G1722"\w* \w them|strong="G3588"\w*. \w They|strong="G2532"\w* \w were|strong="G3588"\w* \w judged|strong="G2919"\w*, \w each|strong="G1538"\w* \w one|strong="G1538"\w* \w according|strong="G2596"\w* \w to|strong="G2532"\w* \w his|strong="G1722"\w* \w works|strong="G2041"\w*. +\v 14 \w Death|strong="G2288"\w* \w and|strong="G2532"\w* Hades\f + \fr 20:14 \ft or, Hell\f* \w were|strong="G1510"\w* thrown \w into|strong="G1519"\w* \w the|strong="G2532"\w* \w lake|strong="G3041"\w* \w of|strong="G2532"\w* \w fire|strong="G4442"\w*. \w This|strong="G3778"\w* \w is|strong="G1510"\w* \w the|strong="G2532"\w* \w second|strong="G1208"\w* \w death|strong="G2288"\w*, \w the|strong="G2532"\w* \w lake|strong="G3041"\w* \w of|strong="G2532"\w* \w fire|strong="G4442"\w*. +\v 15 \w If|strong="G1487"\w* \w anyone|strong="G5100"\w* \w was|strong="G3588"\w* \w not|strong="G3756"\w* \w found|strong="G2147"\w* \w written|strong="G1125"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w book|strong="G3588"\w* \w of|strong="G2532"\w* \w life|strong="G2222"\w*, \w he|strong="G2532"\w* \w was|strong="G3588"\w* \w cast|strong="G2532"\w* \w into|strong="G1519"\w* \w the|strong="G1722"\w* \w lake|strong="G3041"\w* \w of|strong="G2532"\w* \w fire|strong="G4442"\w*. +\c 21 +\p +\v 1 \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w a|strong="G2532"\w* \w new|strong="G2537"\w* \w heaven|strong="G3772"\w* \w and|strong="G2532"\w* \w a|strong="G2532"\w* \w new|strong="G2537"\w* \w earth|strong="G1093"\w*, \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w first|strong="G4413"\w* \w heaven|strong="G3772"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w first|strong="G4413"\w* \w earth|strong="G1093"\w* \w have|strong="G2532"\w* \w passed|strong="G3588"\w* away, \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w sea|strong="G2281"\w* \w is|strong="G1510"\w* \w no|strong="G3756"\w* \w more|strong="G2089"\w*. +\v 2 \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w the|strong="G2532"\w* holy \w city|strong="G4172"\w*, \w New|strong="G2537"\w* \w Jerusalem|strong="G2419"\w*, \w coming|strong="G2597"\w* \w down|strong="G2597"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w heaven|strong="G3772"\w* \w from|strong="G1537"\w* \w God|strong="G2316"\w*, \w prepared|strong="G2090"\w* \w like|strong="G5613"\w* \w a|strong="G5613"\w* \w bride|strong="G3565"\w* \w adorned|strong="G2885"\w* \w for|strong="G2532"\w* \w her|strong="G3708"\w* husband. +\v 3 \w I|strong="G2532"\w* heard \w a|strong="G2532"\w* \w loud|strong="G3173"\w* \w voice|strong="G5456"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* heaven \w saying|strong="G3004"\w*, “\w Behold|strong="G2400"\w*, \w God|strong="G2316"\w*’s dwelling \w is|strong="G1510"\w* \w with|strong="G3326"\w* \w people|strong="G2992"\w*; \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w will|strong="G2316"\w* \w dwell|strong="G4637"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w his|strong="G3708"\w* \w people|strong="G2992"\w*, \w and|strong="G2532"\w* \w God|strong="G2316"\w* himself \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w with|strong="G3326"\w* \w them|strong="G3588"\w* \w as|strong="G2532"\w* \w their|strong="G2532"\w* \w God|strong="G2316"\w*. +\v 4 \w He|strong="G2532"\w* \w will|strong="G1510"\w* \w wipe|strong="G1813"\w* \w away|strong="G1813"\w* \w every|strong="G3956"\w* \w tear|strong="G1144"\w* \w from|strong="G1537"\w* \w their|strong="G2532"\w* \w eyes|strong="G3788"\w*. \w Death|strong="G2288"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w no|strong="G3756"\w* \w more|strong="G2089"\w*; \w neither|strong="G3777"\w* \w will|strong="G1510"\w* \w there|strong="G2532"\w* \w be|strong="G1510"\w* \w mourning|strong="G3997"\w*, \w nor|strong="G3777"\w* \w crying|strong="G2906"\w*, \w nor|strong="G3777"\w* \w pain|strong="G4192"\w* \w any|strong="G3956"\w* \w more|strong="G2089"\w*. \w The|strong="G2532"\w* \w first|strong="G4413"\w* \w things|strong="G3956"\w* \w have|strong="G2532"\w* \w passed|strong="G3588"\w* \w away|strong="G1813"\w*.” +\p +\v 5 \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w sits|strong="G2521"\w* \w on|strong="G1909"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w* \w said|strong="G3004"\w*, \wj “\+w Behold|strong="G2400"\+w*, \+w I|strong="G2532"\+w* \+w am|strong="G1510"\+w* \+w making|strong="G4160"\+w* \+w all|strong="G3956"\+w* \+w things|strong="G3956"\+w* \+w new|strong="G2537"\+w*.”\wj* \w He|strong="G2532"\w* \w said|strong="G3004"\w*, \wj “\+w Write|strong="G1125"\+w*, \+w for|strong="G3754"\+w* \+w these|strong="G3778"\+w* \+w words|strong="G3056"\+w* \+w of|strong="G3056"\+w* \+w God|strong="G3004"\+w* \+w are|strong="G1510"\+w* \+w faithful|strong="G4103"\+w* \+w and|strong="G2532"\+w* \+w true|strong="G4103"\+w*.” \wj* +\v 6 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w me|strong="G1325"\w*, \wj “\+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* \+w the|strong="G2532"\+w* Alpha \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Omega|strong="G5598"\+w*, \+w the|strong="G2532"\+w* Beginning \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w End|strong="G5056"\+w*. \+w I|strong="G1473"\+w* \+w will|strong="G2532"\+w* \+w give|strong="G1325"\+w* \+w freely|strong="G1432"\+w* \+w to|strong="G2532"\+w* \+w him|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w is|strong="G3588"\+w* \+w thirsty|strong="G1372"\+w* \+w from|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w spring|strong="G4077"\+w* \+w of|strong="G1537"\+w* \+w the|strong="G2532"\+w* \+w water|strong="G5204"\+w* \+w of|strong="G1537"\+w* \+w life|strong="G2222"\+w*. \wj* +\v 7 \wj \+w He|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w overcomes|strong="G3528"\+w*, \+w I|strong="G1473"\+w* \+w will|strong="G2316"\+w* \+w give|strong="G1473"\+w* \+w him|strong="G3588"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w*. \+w I|strong="G1473"\+w* \+w will|strong="G2316"\+w* \+w be|strong="G1510"\+w* \+w his|strong="G2532"\+w* \+w God|strong="G2316"\+w*, \+w and|strong="G2532"\+w* \+w he|strong="G2532"\+w* \+w will|strong="G2316"\+w* \+w be|strong="G1510"\+w* \+w my|strong="G1473"\+w* \+w son|strong="G5207"\+w*. \wj* +\v 8 \wj \+w But|strong="G1161"\+w* \+w for|strong="G1161"\+w* \+w the|strong="G1722"\+w* \+w cowardly|strong="G1169"\+w*, unbelieving, sinners,\wj*\f + \fr 21:8 \ft TR and NU omit “sinners”\f* \wj abominable, \+w murderers|strong="G5406"\+w*, sexually \+w immoral|strong="G4205"\+w*, \+w sorcerers|strong="G5333"\+w*,\wj*\f + \fr 21:8 \ft The word for “sorcerers” here also includes users of potions and drugs.\f* \wj \+w idolaters|strong="G1496"\+w*, \+w and|strong="G2532"\+w* \+w all|strong="G3956"\+w* \+w liars|strong="G5571"\+w*, \+w their|strong="G2532"\+w* \+w part|strong="G3313"\+w* \+w is|strong="G1510"\+w* \+w in|strong="G1722"\+w* \+w the|strong="G1722"\+w* \+w lake|strong="G3041"\+w* \+w that|strong="G3739"\+w* \+w burns|strong="G2545"\+w* \+w with|strong="G1722"\+w* \+w fire|strong="G4442"\+w* \+w and|strong="G2532"\+w* \+w sulfur|strong="G2303"\+w*, \+w which|strong="G3739"\+w* \+w is|strong="G1510"\+w* \+w the|strong="G1722"\+w* \+w second|strong="G1208"\+w* \+w death|strong="G2288"\+w*.”\wj* +\p +\v 9 \w One|strong="G1520"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* angels \w who|strong="G3588"\w* \w had|strong="G2192"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* \w bowls|strong="G5357"\w* \w which|strong="G3588"\w* \w were|strong="G3588"\w* loaded \w with|strong="G3326"\w* \w the|strong="G2532"\w* \w seven|strong="G2033"\w* \w last|strong="G2078"\w* \w plagues|strong="G4127"\w* \w came|strong="G2064"\w*, \w and|strong="G2532"\w* \w he|strong="G2532"\w* \w spoke|strong="G2980"\w* \w with|strong="G3326"\w* \w me|strong="G1473"\w*, \w saying|strong="G3004"\w*, “\w Come|strong="G2064"\w* \w here|strong="G1204"\w*. \w I|strong="G1473"\w* \w will|strong="G2532"\w* \w show|strong="G1166"\w* \w you|strong="G4771"\w* \w the|strong="G2532"\w* \w bride|strong="G3565"\w*, \w the|strong="G2532"\w* \w Lamb|strong="G3004"\w*’\w s|strong="G2192"\w* \w wife|strong="G1135"\w*.” +\v 10 \w He|strong="G2532"\w* \w carried|strong="G2532"\w* \w me|strong="G1473"\w* away \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w Spirit|strong="G4151"\w* \w to|strong="G2532"\w* \w a|strong="G2532"\w* \w great|strong="G3173"\w* \w and|strong="G2532"\w* \w high|strong="G5308"\w* \w mountain|strong="G3735"\w*, \w and|strong="G2532"\w* \w showed|strong="G1166"\w* \w me|strong="G1473"\w* \w the|strong="G1722"\w* \w holy|strong="G4151"\w* \w city|strong="G4172"\w*, \w Jerusalem|strong="G2419"\w*, \w coming|strong="G2597"\w* \w down|strong="G2597"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w heaven|strong="G3772"\w* \w from|strong="G1537"\w* \w God|strong="G2316"\w*, +\v 11 \w having|strong="G2192"\w* \w the|strong="G3588"\w* \w glory|strong="G1391"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w*. \w Her|strong="G2192"\w* \w light|strong="G5458"\w* \w was|strong="G3588"\w* \w like|strong="G5613"\w* \w a|strong="G2192"\w* \w most|strong="G2316"\w* \w precious|strong="G5093"\w* \w stone|strong="G3037"\w*, \w like|strong="G5613"\w* \w a|strong="G2192"\w* \w jasper|strong="G2393"\w* \w stone|strong="G3037"\w*, clear \w as|strong="G5613"\w* \w crystal|strong="G2929"\w*; +\v 12 \w having|strong="G2192"\w* \w a|strong="G2192"\w* \w great|strong="G3173"\w* \w and|strong="G2532"\w* \w high|strong="G5308"\w* \w wall|strong="G5038"\w* \w with|strong="G2532"\w* \w twelve|strong="G1427"\w* \w gates|strong="G4440"\w*, \w and|strong="G2532"\w* \w at|strong="G1909"\w* \w the|strong="G2532"\w* \w gates|strong="G4440"\w* \w twelve|strong="G1427"\w* angels, \w and|strong="G2532"\w* \w names|strong="G3686"\w* \w written|strong="G3686"\w* \w on|strong="G1909"\w* \w them|strong="G3588"\w*, \w which|strong="G3739"\w* \w are|strong="G1510"\w* \w the|strong="G2532"\w* \w names|strong="G3686"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w twelve|strong="G1427"\w* \w tribes|strong="G5443"\w* \w of|strong="G5207"\w* \w the|strong="G2532"\w* \w children|strong="G5207"\w* \w of|strong="G5207"\w* \w Israel|strong="G2474"\w*. +\v 13 \w On|strong="G2532"\w* \w the|strong="G2532"\w* east \w were|strong="G2532"\w* \w three|strong="G5140"\w* \w gates|strong="G4440"\w*, \w and|strong="G2532"\w* \w on|strong="G2532"\w* \w the|strong="G2532"\w* \w north|strong="G1005"\w* \w three|strong="G5140"\w* \w gates|strong="G4440"\w*, \w and|strong="G2532"\w* \w on|strong="G2532"\w* \w the|strong="G2532"\w* \w south|strong="G3558"\w* \w three|strong="G5140"\w* \w gates|strong="G4440"\w*, \w and|strong="G2532"\w* \w on|strong="G2532"\w* \w the|strong="G2532"\w* \w west|strong="G1424"\w* \w three|strong="G5140"\w* \w gates|strong="G4440"\w*. +\v 14 \w The|strong="G2532"\w* \w wall|strong="G5038"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w had|strong="G2192"\w* \w twelve|strong="G1427"\w* \w foundations|strong="G2310"\w*, \w and|strong="G2532"\w* \w on|strong="G1909"\w* \w them|strong="G3588"\w* \w twelve|strong="G1427"\w* \w names|strong="G3686"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w twelve|strong="G1427"\w* Apostles \w of|strong="G2532"\w* \w the|strong="G2532"\w* Lamb. +\p +\v 15 \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w spoke|strong="G2980"\w* \w with|strong="G3326"\w* \w me|strong="G1473"\w* \w had|strong="G2192"\w* \w for|strong="G2532"\w* \w a|strong="G2192"\w* \w measure|strong="G3358"\w* \w a|strong="G2192"\w* \w golden|strong="G5552"\w* \w reed|strong="G2563"\w* \w to|strong="G2443"\w* \w measure|strong="G3358"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w*, \w its|strong="G3354"\w* \w gates|strong="G4440"\w*, \w and|strong="G2532"\w* \w its|strong="G3354"\w* \w walls|strong="G5038"\w*. +\v 16 \w The|strong="G2532"\w* \w city|strong="G4172"\w* \w is|strong="G1510"\w* \w square|strong="G5068"\w*. \w Its|strong="G3354"\w* \w length|strong="G3372"\w* \w is|strong="G1510"\w* \w as|strong="G3745"\w* \w great|strong="G3745"\w* \w as|strong="G3745"\w* \w its|strong="G3354"\w* \w width|strong="G4114"\w*. \w He|strong="G2532"\w* \w measured|strong="G3354"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w with|strong="G2532"\w* \w the|strong="G2532"\w* \w reed|strong="G2563"\w*: \w twelve|strong="G1427"\w* \w thousand|strong="G5505"\w* \w twelve|strong="G1427"\w* stadia.\f + \fr 21:16 \ft 12,012 stadia = 2,221 kilometers or 1,380 miles. TR reads 12,000 stadia instead of 12,012 stadia.\f* \w Its|strong="G3354"\w* \w length|strong="G3372"\w*, \w width|strong="G4114"\w*, \w and|strong="G2532"\w* \w height|strong="G5311"\w* \w are|strong="G1510"\w* \w equal|strong="G2470"\w*. +\v 17 \w Its|strong="G3354"\w* \w wall|strong="G5038"\w* \w is|strong="G1510"\w* \w one|strong="G3739"\w* \w hundred|strong="G1540"\w* \w forty-four|strong="G5062"\w* \w cubits|strong="G4083"\w*,\f + \fr 21:17 \ft 144 cubits is about 65.8 meters or 216 feet\f* \w by|strong="G2532"\w* \w the|strong="G2532"\w* \w measure|strong="G3358"\w* \w of|strong="G2532"\w* \w a|strong="G2532"\w* \w man|strong="G3739"\w*, \w that|strong="G3739"\w* \w is|strong="G1510"\w*, \w of|strong="G2532"\w* \w an|strong="G2532"\w* angel. +\v 18 \w The|strong="G2532"\w* construction \w of|strong="G2532"\w* its \w wall|strong="G5038"\w* \w was|strong="G3588"\w* \w jasper|strong="G2393"\w*. \w The|strong="G2532"\w* \w city|strong="G4172"\w* \w was|strong="G3588"\w* \w pure|strong="G2513"\w* \w gold|strong="G5553"\w*, \w like|strong="G3664"\w* \w pure|strong="G2513"\w* \w glass|strong="G5194"\w*. +\v 19 \w The|strong="G3956"\w* \w foundations|strong="G2310"\w* \w of|strong="G4172"\w* \w the|strong="G3956"\w* \w city|strong="G4172"\w*’s \w wall|strong="G5038"\w* \w were|strong="G3588"\w* \w adorned|strong="G2885"\w* \w with|strong="G2885"\w* \w all|strong="G3956"\w* \w kinds|strong="G3956"\w* \w of|strong="G4172"\w* \w precious|strong="G5093"\w* \w stones|strong="G3037"\w*. \w The|strong="G3956"\w* \w first|strong="G4413"\w* \w foundation|strong="G2310"\w* \w was|strong="G3588"\w* \w jasper|strong="G2393"\w*, \w the|strong="G3956"\w* \w second|strong="G1208"\w* \w sapphire|strong="G4552"\w*,\f + \fr 21:19 \ft or, lapis lazuli\f* \w the|strong="G3956"\w* \w third|strong="G5154"\w* \w chalcedony|strong="G5472"\w*, \w the|strong="G3956"\w* \w fourth|strong="G5067"\w* \w emerald|strong="G4665"\w*, +\v 20 \w the|strong="G3588"\w* \w fifth|strong="G3991"\w* \w sardonyx|strong="G4557"\w*, \w the|strong="G3588"\w* \w sixth|strong="G1623"\w* \w sardius|strong="G4556"\w*, \w the|strong="G3588"\w* \w seventh|strong="G1442"\w* \w chrysolite|strong="G5555"\w*, \w the|strong="G3588"\w* \w eighth|strong="G3590"\w* beryl, \w the|strong="G3588"\w* \w ninth|strong="G1766"\w* \w topaz|strong="G5116"\w*, \w the|strong="G3588"\w* \w tenth|strong="G1182"\w* \w chrysoprase|strong="G5556"\w*, \w the|strong="G3588"\w* \w eleventh|strong="G1734"\w* \w jacinth|strong="G5192"\w*, \w and|strong="G3588"\w* \w the|strong="G3588"\w* \w twelfth|strong="G1428"\w* amethyst. +\v 21 \w The|strong="G2532"\w* \w twelve|strong="G1427"\w* \w gates|strong="G4440"\w* \w were|strong="G1510"\w* \w twelve|strong="G1427"\w* \w pearls|strong="G3135"\w*. \w Each|strong="G1538"\w* \w one|strong="G1520"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w gates|strong="G4440"\w* \w was|strong="G1510"\w* made \w of|strong="G1537"\w* \w one|strong="G1520"\w* \w pearl|strong="G3135"\w*. \w The|strong="G2532"\w* \w street|strong="G4113"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w city|strong="G4172"\w* \w was|strong="G1510"\w* \w pure|strong="G2513"\w* \w gold|strong="G5553"\w*, \w like|strong="G5613"\w* \w transparent|strong="G1306"\w* \w glass|strong="G5194"\w*. +\p +\v 22 \w I|strong="G2532"\w* \w saw|strong="G3708"\w* \w no|strong="G3756"\w* \w temple|strong="G3485"\w* \w in|strong="G1722"\w* \w it|strong="G2532"\w*, \w for|strong="G1063"\w* \w the|strong="G1722"\w* \w Lord|strong="G2962"\w* \w God|strong="G2316"\w* \w the|strong="G1722"\w* \w Almighty|strong="G3841"\w* \w and|strong="G2532"\w* \w the|strong="G1722"\w* Lamb \w are|strong="G1510"\w* its \w temple|strong="G3485"\w*. +\v 23 \w The|strong="G2532"\w* \w city|strong="G4172"\w* \w has|strong="G2192"\w* \w no|strong="G3756"\w* \w need|strong="G5532"\w* \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w sun|strong="G2246"\w* \w or|strong="G2532"\w* \w moon|strong="G4582"\w* \w to|strong="G2443"\w* \w shine|strong="G5316"\w*, \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w very|strong="G2532"\w* \w glory|strong="G1391"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w illuminated|strong="G5461"\w* \w it|strong="G2532"\w* \w and|strong="G2532"\w* its \w lamp|strong="G3088"\w* \w is|strong="G3588"\w* \w the|strong="G2532"\w* Lamb. +\v 24 \w The|strong="G2532"\w* \w nations|strong="G1484"\w* \w will|strong="G2532"\w* \w walk|strong="G4043"\w* \w in|strong="G1519"\w* \w its|strong="G1223"\w* \w light|strong="G5457"\w*. \w The|strong="G2532"\w* \w kings|strong="G3588"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w earth|strong="G1093"\w* \w bring|strong="G5342"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w and|strong="G2532"\w* \w honor|strong="G1391"\w* \w of|strong="G1223"\w* \w the|strong="G2532"\w* \w nations|strong="G1484"\w* \w into|strong="G1519"\w* \w it|strong="G2532"\w*. +\v 25 Its \w gates|strong="G4440"\w* \w will|strong="G1510"\w* \w in|strong="G2532"\w* \w no|strong="G3756"\w* way \w be|strong="G1510"\w* \w shut|strong="G2808"\w* \w by|strong="G2532"\w* \w day|strong="G2250"\w* (\w for|strong="G1063"\w* \w there|strong="G1563"\w* \w will|strong="G1510"\w* \w be|strong="G1510"\w* \w no|strong="G3756"\w* \w night|strong="G3571"\w* \w there|strong="G1563"\w*), +\v 26 \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w shall|strong="G2532"\w* \w bring|strong="G5342"\w* \w the|strong="G2532"\w* \w glory|strong="G1391"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w honor|strong="G5092"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* \w nations|strong="G1484"\w* \w into|strong="G1519"\w* \w it|strong="G2532"\w* \w so|strong="G2532"\w* \w that|strong="G3588"\w* \w they|strong="G2532"\w* \w may|strong="G2532"\w* \w enter|strong="G1519"\w*. +\v 27 \w There|strong="G2532"\w* \w will|strong="G2532"\w* \w in|strong="G1722"\w* \w no|strong="G3756"\w* \w way|strong="G1722"\w* \w enter|strong="G1525"\w* \w into|strong="G1519"\w* \w it|strong="G2532"\w* \w anything|strong="G3956"\w* profane, \w or|strong="G2532"\w* \w one|strong="G3956"\w* \w who|strong="G3588"\w* \w causes|strong="G4160"\w* \w an|strong="G2532"\w* abomination \w or|strong="G2532"\w* \w a|strong="G2532"\w* \w lie|strong="G5579"\w*, \w but|strong="G2532"\w* \w only|strong="G1487"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w are|strong="G3588"\w* \w written|strong="G1125"\w* \w in|strong="G1722"\w* \w the|strong="G1722"\w* Lamb’s \w book|strong="G3588"\w* \w of|strong="G2532"\w* \w life|strong="G2222"\w*. +\c 22 +\p +\v 1 \w He|strong="G2532"\w* \w showed|strong="G1166"\w* \w me|strong="G1473"\w* \w a|strong="G5613"\w*\f + \fr 22:1 \ft TR adds “pure”\f* \w river|strong="G4215"\w* \w of|strong="G1537"\w* \w water|strong="G5204"\w* \w of|strong="G1537"\w* \w life|strong="G2222"\w*, \w clear|strong="G2986"\w* \w as|strong="G5613"\w* \w crystal|strong="G2930"\w*, \w proceeding|strong="G1607"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* \w throne|strong="G2362"\w* \w of|strong="G1537"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w of|strong="G1537"\w* \w the|strong="G2532"\w* Lamb, +\v 2 \w in|strong="G1722"\w* \w the|strong="G1722"\w* \w middle|strong="G3319"\w* \w of|strong="G2532"\w* \w its|strong="G3586"\w* \w street|strong="G4113"\w*. \w On|strong="G1722"\w* \w this|strong="G3588"\w* \w side|strong="G1782"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w river|strong="G4215"\w* \w and|strong="G2532"\w* \w on|strong="G1722"\w* \w that|strong="G3588"\w* \w was|strong="G3588"\w* \w the|strong="G1722"\w* \w tree|strong="G3586"\w* \w of|strong="G2532"\w* \w life|strong="G2222"\w*, \w bearing|strong="G4160"\w* \w twelve|strong="G1427"\w* \w kinds|strong="G2590"\w* \w of|strong="G2532"\w* \w fruits|strong="G2590"\w*, \w yielding|strong="G4160"\w* \w its|strong="G3586"\w* \w fruit|strong="G2590"\w* \w every|strong="G2596"\w* \w month|strong="G3376"\w*. \w The|strong="G1722"\w* \w leaves|strong="G5444"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w tree|strong="G3586"\w* \w were|strong="G3588"\w* \w for|strong="G1519"\w* \w the|strong="G1722"\w* \w healing|strong="G2322"\w* \w of|strong="G2532"\w* \w the|strong="G1722"\w* \w nations|strong="G1484"\w*. +\v 3 \w There|strong="G2532"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w no|strong="G3756"\w* \w curse|strong="G2652"\w* \w any|strong="G3956"\w* \w more|strong="G2089"\w*. \w The|strong="G1722"\w* \w throne|strong="G2362"\w* \w of|strong="G2316"\w* \w God|strong="G2316"\w* \w and|strong="G2532"\w* \w of|strong="G2316"\w* \w the|strong="G1722"\w* Lamb \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w in|strong="G1722"\w* \w it|strong="G2532"\w*, \w and|strong="G2532"\w* \w his|strong="G3956"\w* \w servants|strong="G1401"\w* \w will|strong="G2316"\w* \w serve|strong="G3000"\w* \w him|strong="G3588"\w*. +\v 4 \w They|strong="G2532"\w* \w will|strong="G2532"\w* \w see|strong="G3708"\w* \w his|strong="G1909"\w* \w face|strong="G4383"\w*, \w and|strong="G2532"\w* \w his|strong="G1909"\w* \w name|strong="G3686"\w* \w will|strong="G2532"\w* \w be|strong="G2532"\w* \w on|strong="G1909"\w* \w their|strong="G2532"\w* \w foreheads|strong="G3359"\w*. +\v 5 \w There|strong="G2532"\w* \w will|strong="G2316"\w* \w be|strong="G1510"\w* \w no|strong="G3756"\w* \w night|strong="G3571"\w*, \w and|strong="G2532"\w* \w they|strong="G2532"\w* \w need|strong="G5532"\w* \w no|strong="G3756"\w* \w lamp|strong="G3088"\w* \w light|strong="G5457"\w* \w or|strong="G2532"\w* \w sun|strong="G2246"\w* \w light|strong="G5457"\w*; \w for|strong="G3754"\w* \w the|strong="G2532"\w* \w Lord|strong="G2962"\w* \w God|strong="G2316"\w* \w will|strong="G2316"\w* illuminate \w them|strong="G3588"\w*. \w They|strong="G2532"\w* \w will|strong="G2316"\w* \w reign|strong="G2532"\w* \w forever|strong="G1519"\w* \w and|strong="G2532"\w* \w ever|strong="G3756"\w*. +\p +\v 6 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w*, “\w These|strong="G3778"\w* \w words|strong="G3056"\w* \w are|strong="G3588"\w* \w faithful|strong="G4103"\w* \w and|strong="G2532"\w* \w true|strong="G4103"\w*. \w The|strong="G1722"\w* \w Lord|strong="G2962"\w* \w God|strong="G2316"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w spirits|strong="G4151"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w prophets|strong="G4396"\w* \w sent|strong="G2316"\w* \w his|strong="G1722"\w* angel \w to|strong="G2532"\w* \w show|strong="G1166"\w* \w to|strong="G2532"\w* \w his|strong="G1722"\w* bondservants \w the|strong="G1722"\w* \w things|strong="G3778"\w* \w which|strong="G3739"\w* \w must|strong="G1163"\w* \w happen|strong="G1096"\w* \w soon|strong="G5034"\w*.” +\p +\v 7 \wj “\+w Behold|strong="G2400"\+w*, \+w I|strong="G2532"\+w* \+w am|strong="G2532"\+w* \+w coming|strong="G2064"\+w* \+w soon|strong="G5035"\+w*! \+w Blessed|strong="G3107"\+w* \+w is|strong="G3588"\+w* \+w he|strong="G2532"\+w* \+w who|strong="G3588"\+w* \+w keeps|strong="G5083"\+w* \+w the|strong="G2532"\+w* \+w words|strong="G3056"\+w* \+w of|strong="G3056"\+w* \+w the|strong="G2532"\+w* \+w prophecy|strong="G4394"\+w* \+w of|strong="G3056"\+w* \+w this|strong="G3778"\+w* \+w book|strong="G3588"\+w*.”\wj* +\p +\v 8 \w Now|strong="G2532"\w* \w I|strong="G1473"\w*, \w John|strong="G2491"\w*, \w am|strong="G1473"\w* \w the|strong="G2532"\w* \w one|strong="G3588"\w* \w who|strong="G3588"\w* heard \w and|strong="G2532"\w* saw \w these|strong="G3778"\w* \w things|strong="G3778"\w*. \w When|strong="G3753"\w* \w I|strong="G1473"\w* heard \w and|strong="G2532"\w* saw, \w I|strong="G1473"\w* \w fell|strong="G4098"\w* \w down|strong="G4098"\w* \w to|strong="G2532"\w* \w worship|strong="G4352"\w* \w before|strong="G1715"\w* \w the|strong="G2532"\w* \w feet|strong="G4228"\w* \w of|strong="G2532"\w* \w the|strong="G2532"\w* angel \w who|strong="G3588"\w* \w had|strong="G2532"\w* \w shown|strong="G1166"\w* \w me|strong="G1473"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w*. +\v 9 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w*, “\w You|strong="G4771"\w* \w must|strong="G1510"\w* \w not|strong="G3361"\w* \w do|strong="G2532"\w* \w that|strong="G3588"\w*! \w I|strong="G1473"\w* \w am|strong="G1510"\w* \w a|strong="G2532"\w* \w fellow|strong="G4889"\w* bondservant \w with|strong="G2532"\w* \w you|strong="G4771"\w* \w and|strong="G2532"\w* \w with|strong="G2532"\w* \w your|strong="G2532"\w* brothers, \w the|strong="G2532"\w* \w prophets|strong="G4396"\w*, \w and|strong="G2532"\w* \w with|strong="G2532"\w* \w those|strong="G3588"\w* \w who|strong="G3588"\w* \w keep|strong="G5083"\w* \w the|strong="G2532"\w* \w words|strong="G3056"\w* \w of|strong="G3056"\w* \w this|strong="G3778"\w* \w book|strong="G3588"\w*. \w Worship|strong="G4352"\w* \w God|strong="G2316"\w*.” +\v 10 \w He|strong="G2532"\w* \w said|strong="G3004"\w* \w to|strong="G2532"\w* \w me|strong="G1473"\w*, “Don’\w t|strong="G3588"\w* \w seal|strong="G4972"\w* \w up|strong="G4972"\w* \w the|strong="G2532"\w* \w words|strong="G3056"\w* \w of|strong="G3056"\w* \w the|strong="G2532"\w* \w prophecy|strong="G4394"\w* \w of|strong="G3056"\w* \w this|strong="G3778"\w* \w book|strong="G3588"\w*, \w for|strong="G1063"\w* \w the|strong="G2532"\w* \w time|strong="G2540"\w* \w is|strong="G1510"\w* \w at|strong="G3588"\w* \w hand|strong="G1451"\w*. +\v 11 \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w acts|strong="G4160"\w* unjustly, \w let|strong="G2532"\w* \w him|strong="G3588"\w* \w act|strong="G4160"\w* unjustly \w still|strong="G2089"\w*. \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w filthy|strong="G4510"\w*, \w let|strong="G2532"\w* \w him|strong="G3588"\w* \w be|strong="G2532"\w* \w filthy|strong="G4510"\w* \w still|strong="G2089"\w*. \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w righteous|strong="G1342"\w*, \w let|strong="G2532"\w* \w him|strong="G3588"\w* \w do|strong="G4160"\w* \w righteousness|strong="G1343"\w* \w still|strong="G2089"\w*. \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w is|strong="G3588"\w* holy, \w let|strong="G2532"\w* \w him|strong="G3588"\w* \w be|strong="G2532"\w* holy \w still|strong="G2089"\w*.” +\p +\v 12 \wj “\+w Behold|strong="G2400"\+w*, \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w coming|strong="G2064"\+w* \+w soon|strong="G5035"\+w*! \+w My|strong="G3708"\+w* \+w reward|strong="G3408"\+w* \+w is|strong="G1510"\+w* \+w with|strong="G3326"\+w* \+w me|strong="G1473"\+w*, \+w to|strong="G2532"\+w* repay \+w to|strong="G2532"\+w* \+w each|strong="G1538"\+w* \+w man|strong="G1538"\+w* \+w according|strong="G1538"\+w* \+w to|strong="G2532"\+w* \+w his|strong="G3708"\+w* \+w work|strong="G2041"\+w*. \wj* +\v 13 \wj \+w I|strong="G1473"\+w* \+w am|strong="G1473"\+w* \+w the|strong="G2532"\+w* Alpha \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Omega|strong="G5598"\+w*, \+w the|strong="G2532"\+w* \+w First|strong="G4413"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w Last|strong="G2078"\+w*, \+w the|strong="G2532"\+w* \+w Beginning|strong="G4413"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w End|strong="G5056"\+w*. \wj* +\v 14 \wj \+w Blessed|strong="G3107"\+w* \+w are|strong="G1510"\+w* \+w those|strong="G3588"\+w* \+w who|strong="G3588"\+w* \+w do|strong="G2532"\+w* \+w his|strong="G1519"\+w* commandments,\wj*\f + \fr 22:14 \ft NU reads “wash their robes” instead of “do his commandments”.\f* \wj \+w that|strong="G2443"\+w* \+w they|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w have|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w right|strong="G1849"\+w* \+w to|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w tree|strong="G3586"\+w* \+w of|strong="G2532"\+w* \+w life|strong="G2222"\+w*, \+w and|strong="G2532"\+w* \+w may|strong="G2532"\+w* \+w enter|strong="G1525"\+w* \+w in|strong="G1519"\+w* \+w by|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w gates|strong="G4440"\+w* \+w into|strong="G1519"\+w* \+w the|strong="G2532"\+w* \+w city|strong="G4172"\+w*. \wj* +\v 15 \wj \+w Outside|strong="G1854"\+w* \+w are|strong="G3588"\+w* \+w the|strong="G2532"\+w* \+w dogs|strong="G2965"\+w*, \+w the|strong="G2532"\+w* \+w sorcerers|strong="G5333"\+w*, \+w the|strong="G2532"\+w* sexually \+w immoral|strong="G4205"\+w*, \+w the|strong="G2532"\+w* \+w murderers|strong="G5406"\+w*, \+w the|strong="G2532"\+w* \+w idolaters|strong="G1496"\+w*, \+w and|strong="G2532"\+w* \+w everyone|strong="G3956"\+w* \+w who|strong="G3588"\+w* \+w loves|strong="G5368"\+w* \+w and|strong="G2532"\+w* \+w practices|strong="G4160"\+w* \+w falsehood|strong="G5579"\+w*. \wj* +\v 16 \wj \+w I|strong="G1473"\+w*, \+w Jesus|strong="G2424"\+w*, \+w have|strong="G2532"\+w* \+w sent|strong="G3992"\+w* \+w my|strong="G1473"\+w* angel \+w to|strong="G2532"\+w* \+w testify|strong="G3140"\+w* \+w these|strong="G3778"\+w* \+w things|strong="G3778"\+w* \+w to|strong="G2532"\+w* \+w you|strong="G5210"\+w* \+w for|strong="G1909"\+w* \+w the|strong="G2532"\+w* \+w assemblies|strong="G1577"\+w*. \+w I|strong="G1473"\+w* \+w am|strong="G1510"\+w* \+w the|strong="G2532"\+w* \+w root|strong="G4491"\+w* \+w and|strong="G2532"\+w* \+w the|strong="G2532"\+w* \+w offspring|strong="G1085"\+w* \+w of|strong="G2532"\+w* \+w David|strong="G1138"\+w*, \+w the|strong="G2532"\+w* \+w Bright|strong="G2986"\+w* \+w and|strong="G2532"\+w* \+w Morning|strong="G4407"\+w* Star.”\wj* +\p +\v 17 \w The|strong="G2532"\w* \w Spirit|strong="G4151"\w* \w and|strong="G2532"\w* \w the|strong="G2532"\w* \w bride|strong="G3565"\w* \w say|strong="G3004"\w*, “\w Come|strong="G2064"\w*!” \w He|strong="G2532"\w* \w who|strong="G3588"\w* hears, \w let|strong="G2983"\w* \w him|strong="G3588"\w* \w say|strong="G3004"\w*, “\w Come|strong="G2064"\w*!” \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w is|strong="G3588"\w* \w thirsty|strong="G1372"\w*, \w let|strong="G2983"\w* \w him|strong="G3588"\w* \w come|strong="G2064"\w*. \w He|strong="G2532"\w* \w who|strong="G3588"\w* \w desires|strong="G2309"\w*, \w let|strong="G2983"\w* \w him|strong="G3588"\w* \w take|strong="G2983"\w* \w the|strong="G2532"\w* \w water|strong="G5204"\w* \w of|strong="G4151"\w* \w life|strong="G2222"\w* \w freely|strong="G1432"\w*. +\p +\v 18 \w I|strong="G1473"\w* \w testify|strong="G3140"\w* \w to|strong="G1909"\w* \w everyone|strong="G3956"\w* \w who|strong="G3588"\w* hears \w the|strong="G1722"\w* \w words|strong="G3056"\w* \w of|strong="G3056"\w* \w the|strong="G1722"\w* \w prophecy|strong="G4394"\w* \w of|strong="G3056"\w* \w this|strong="G3778"\w* \w book|strong="G3588"\w*: \w if|strong="G1437"\w* \w anyone|strong="G5100"\w* \w adds|strong="G2007"\w* \w to|strong="G1909"\w* \w them|strong="G3588"\w*, \w God|strong="G2316"\w* \w will|strong="G2316"\w* \w add|strong="G2007"\w* \w to|strong="G1909"\w* \w him|strong="G3588"\w* \w the|strong="G1722"\w* \w plagues|strong="G4127"\w* \w which|strong="G3588"\w* \w are|strong="G3588"\w* \w written|strong="G1125"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* \w book|strong="G3588"\w*. +\v 19 \w If|strong="G1437"\w* \w anyone|strong="G5100"\w* takes away \w from|strong="G1537"\w* \w the|strong="G1722"\w* \w words|strong="G3056"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* \w book|strong="G3588"\w* \w of|strong="G1537"\w* \w this|strong="G3778"\w* \w prophecy|strong="G4394"\w*, \w God|strong="G2316"\w* \w will|strong="G2316"\w* \w take|strong="G2316"\w* away \w his|strong="G1722"\w* \w part|strong="G3313"\w* \w from|strong="G1537"\w* \w the|strong="G1722"\w* \w tree|strong="G3586"\w*\f + \fr 22:19 \ft TR reads “Book” instead of “tree”\f* \w of|strong="G1537"\w* \w life|strong="G2222"\w*, \w and|strong="G2532"\w* \w out|strong="G1537"\w* \w of|strong="G1537"\w* \w the|strong="G1722"\w* holy \w city|strong="G4172"\w*, \w which|strong="G3588"\w* \w are|strong="G3588"\w* \w written|strong="G1125"\w* \w in|strong="G1722"\w* \w this|strong="G3778"\w* \w book|strong="G3588"\w*. +\v 20 \w He|strong="G3778"\w* \w who|strong="G3588"\w* \w testifies|strong="G3140"\w* \w these|strong="G3778"\w* \w things|strong="G3778"\w* \w says|strong="G3004"\w*, \wj “\+w Yes|strong="G3483"\+w*, \+w I|strong="G3778"\+w* \+w am|strong="G3588"\+w* \+w coming|strong="G2064"\+w* \+w soon|strong="G5035"\+w*.” \wj* +\p Amen! \w Yes|strong="G3483"\w*, \w come|strong="G2064"\w*, \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w*! +\p +\v 21 \w The|strong="G3956"\w* \w grace|strong="G5485"\w* \w of|strong="G5485"\w* \w the|strong="G3956"\w* \w Lord|strong="G2962"\w* \w Jesus|strong="G2424"\w* \w Christ|strong="G2962"\w* \w be|strong="G3956"\w* \w with|strong="G3326"\w* \w all|strong="G3956"\w* \w the|strong="G3956"\w* saints. Amen. \ No newline at end of file diff --git a/bibles/eng-web_usfm/copr.htm b/bibles/eng-web_usfm/copr.htm new file mode 100644 index 0000000..96c4366 --- /dev/null +++ b/bibles/eng-web_usfm/copr.htm @@ -0,0 +1,44 @@ + + + + + + +World English Bible Classic + + + + +
+
+
+

The World English Bible

+

The World English Bible is in the Public Domain. That means that it is not copyrighted. However, "World English Bible" is a Trademark of eBible.org.

+

You may copy, publish, proclaim, distribute, redistribute, sell, give away, quote, memorize, read publicly, broadcast, transmit, share, back up, post on the Internet, print, reproduce, preach, teach from, and use +the World English Bible as much as you want, and others may also do so. All we ask is that if you CHANGE the actual text of the World English Bible in any way, you not call the result the World English Bible any more. +This is to avoid confusion, not to limit your freedom. The Holy Bible is God's Word. It belongs to God. He gave it to us freely, and we who have worked on this translation freely give it to you by dedicating it to the +Public Domain.

+

Donations to help with the expenses of this project and thus help others have free access to the Word of God may be made to us, but are not required. Please see +https://MLJohnson.org/partner/ if you are interested in helping to fund this work.

+

This is the 2020 stable text edition of the World English Bible. The main editing/updating work is done on all books. Although we may +choose to consider corrections of obvious typos or problems in the text, we are done with style updates and modernization of the language used in this +Bible translation, preferring to leave the text stable. +New updates, if any, will be posted on https://eBible.org/web/ and at https://WorldEnglish.Bible.

+
HTML generated with Haiola by eBible.org 10 Sep 2025 from source files dated 10 Sep 2025

eBible.org certified
+ +
+
+
+ +
diff --git a/bibles/eng-web_usfm/gentiumplus.css b/bibles/eng-web_usfm/gentiumplus.css new file mode 100644 index 0000000..2c332d8 --- /dev/null +++ b/bibles/eng-web_usfm/gentiumplus.css @@ -0,0 +1,173 @@ +* {margin:0;padding:0} +html,body {height:100%;font-size:1.2em;line-height:1.4em;color:black} +/* Note: if the following 2 .woff files are in another location, please edit the two url() specifiers, below. */ +@font-face { + font-family: 'gentiumw'; + src: url('fonts/gentium_plus.eot'); + src: url('fonts/gentium_plus.eot?#iefix') format('embedded-opentype'), + url('fonts/gentium_plus.woff') format('woff'), + url('fonts/gentium_plus.ttf') format('truetype'); + font-weight: normal; + font-style: normal; +} +html,body {font-family: 'gentiumw','Gentium Plus','Gentium','Gentium Basic','Times','serif';} +h1 { font-weight: normal; } +.main {min-height:100%;margin-bottom:-4em;padding:0.5em} +.main:after {content:"";display:block} +li {list-style:disc inside} +ul.cmenu ul{display:none} +ul.cmenu li:hover>ul{display:block} +ul.cmenu ul{position: absolute;left:-1px;top:98%} +ul.cmenu ul ul{position: absolute;left:98%;top:-2px} +ul.cmenu,ul.cmenu ul {margin:0px;list-style:none;padding:0px 2px 2px 0px;background-color:#000000;border-color:#cccccc #111111 #111111 #cccccc;border-width:1px;border-style:solid} +ul.cmenu table {border-collapse:collapse}ul.cmenu {display:block;zoom:1;float: left} +ul.cmenu li{display:block;margin:2px 0px 0px 2px;font-size:0px} +ul.cmenu a:active, ul.cmenu a:focus {outline-style:none} +ul.cmenu a, ul.cmenu li.dis a:hover, ul.cmenu li.sep a:hover {display:block;vertical-align:middle;background-color:#000000;border-width:1px;border-color:#333333;border-style:solid; + text-align:center;text-decoration:none;padding:2px 5px 2px 10px;_padding-left:0;font-style: normal;font-size: 16pt;color: #eeeeee;text-decoration:none;cursor:default} +ul.cmenu span{overflow:visible} +ul.cmenu li {float:left} +ul.cmenu ul li {float:none} +ul.cmenu ul a {text-align:center;white-space:nowrap} +ul.cmenu li.sep{text-align:center;padding:0px;line-height:0;height:100%} +ul.cmenu li.sep span{float:none;padding-right:0;width:3px;height:100%; display:inline-block;background-color:#cccccc #111111 #111111 #cccccc; background-image:none} +ul.cmenu ul li.sep span{width:100%;height:3px} +ul.cmenu li:hover{position:relative} +ul.cmenu li:hover>a{background-color:#377D9F !important;border-color:#377D9F;border-style:solid;font-style: normal;font-size: 16pt;color: #FFFFFF;text-decoration:none} +ul.cmenu li a:hover{position:relative;background-color:#377D9F;border-color:#377D9F;border-style:solid;font-style: normal;font-size:16pt;color:#FFFFFF;text-decoration:none} +ul.cmenu li.dis a {color:#666 !important} +ul.cmenu a:hover ul,ul.cmenu a:hover a:hover ul{display:block} +ul.cmenu a:hover ul ul{display:none} +ul.cmenu span{display:block;background-position:right center;background-repeat: no-repeat;padding-right:12px} +a.xx {background-color:#333333 !important} +a.nn {background-color:#202050 !important} +a.oo {background-color:#205030 !important} +a.aa {background-color:#333300 !important} +html[dir=rtl] body {text-align:right;direction:rtl} +span.add {font-style:italic} +.popup,.crpopup {position:absolute;bottom:0;display:none;background-color:#ffffd0;border:.1em solid #333;width:15em;height:auto;padding:1em;line-height:1em;text-indent:0em;margin 0.5em 0.5em 0.5em 0.5em} +.notemark:hover .popup {display:block} +.notemark:hover .crpopup {display:block} +.b {display:block;margin-left:12em;text-indent:-2em} +.bdit,.bk,.fk {font-weight:bold;font-style:italic} +.fw {font-weight:bold} +.ebm,.ebp,.ebq1,.ebq2,.ebq3,.cov,.cd,.conc,.cls {display:block;margin:.5em 0 .5em 0} +.cd,.conc,.cls {text-align:justify} +.cd,.conc {color:rgb(0,0,128)} +.cov {text-align:center} +.d {font-weight:bold;display:block;margin-top:1.4em} +.ebp {text-indent:2em} +.ebq1 {margin-left:12em;text-indent:-4em} +.ebq2 {margin-left:8em;text-indent:-4em} +.ebq3 {margin-left:6em;text-indent:-4em} +.ebs,.ebs1,.ebs2,.ebs3 {font-weight:bold;display:block;margin:.5em 0 .5em 0;text-indent:2em;color:rgb(0,0,128)} +.ebs1 {font-size:1.2em} +.ebs3 {font-size:0.9em} +.fm,.notemark {vertical-align:super;margin-left:.16em;line-height:0;position: relative;text-decoration:none;color:rgb(0,0,128)} +.fp {display:block;margin:.5em 0 .5em 12em} +.f,.glo {display:block;margin:.5em 0 .5em 0;color:rgb(0,0,128)} +.f,.x {margin:2em;text-size:0.7em;color:rgb(0,0,128)} +.fv {color:maroon} +.glo {font-weight:bold;text-indent:2em} +.ib,.idx,.ie,.iex,.intro,.ip,.ili,.ili1,.io,.io1,.io2,.io3,.io4,.io,.io1,.io2,.io3,.io4,.im,.imi,.imq,.imt,.imt1,.imt2,.imt3,.imte,.iot,.ipr,.iq,.iq1,.iq2,.iq3, +.is,.is1,.is2,.is3,.notebackref,.f,.x,.notemark {color:blue;font-size:14pt} +.ib,.idx,.ie,.iex,.intro,.ip,.zp {margin:.5em 0 .5em 0;text-indent:2em;display:block} +.ili,.ili1,.io,.io1,.io2,.io3,.io4 {margin:.5em 0 .5em 2em;list-style-type:square;display:list-item} +.io,.io1,.io2,.io3,.io4 {list-style-type:none} +.io2 {margin-left:4em} +.io3 {margin-left:6em} +.io4 {margin-left:8em} +.im,.imi,.imq {display:block;margin-bottom:.5em} +.imi {text-indent:2em;margin:.5em 12em 0 12em} +.imq {text-indent:2em;margin:.5em 0 0 12em} +.imt,.imt1,.imt2,.imt3,.imte,.iot {font-weight:bold;display:block;margin:.5em 0 .5em 0;text-indent:2em} +.imt2,.iot {text-indent:2em} +.ipi,.ipq,.pref,.pub,.pubinfo,.spine, +.ipr,.iq,.iq1,.iq2,.iq3 {display:block;margin:.5em 0 .5em 2em;text-indent:2em} +.iq,.iq1,.iq2,.iq3 {text-indent:-8em;margin-left:12em} +.iq2 {text-indent:-4em} +.iq3 {text-indent:-2em} +.is,.is1,.is2,.is3 {font-weight:bold;display:block;margin:.5em 0 .5em 0;color:rgb(0,0,128)} +.is,.is1 {font-size:1.2em} +.is3 {font-size:0.9em} +.keyword,.keyword1,.keyword2,.keyword3 {font-weight:bold;display:block;margin:.5em 12em .5em 0;text-indent:-12em} +.keyword2 {text-indent:-4em} +.keyword3 {text-indent:-2em} +.li,.li1,.ph,.ph1 {display:list-item;list-style-type:none;text-indent:2em} +.li2,.ph2,.phi,.li3,.ph3 {display:list-item;list-style-type:none;text-indent:4em} +.li3,.ph3 {text-indent:12em} +.m {margin-top:0} +.mainindex {background:rgb(240,255,244);max-width:40em} +.mi {text-indent:2em;margin-top:0} +.mr {display:block;margin:.5em 0 .5em 0;text-align:center;text-indent:2em} +.ms2,.ms3 {font-weight:bold;display:block;margin:.5em 0 .5em 0;text-align:center;text-indent:2em} +h1,h2,h3,.mt,.mt1,.mte, +.mte1,.mt2,.mte2,.mt3,.mte3 {font-weight:bold;font-size:1.2em;text-align:center} +.mt,.mt1,.mte,.mte1 {font-size:1.4em} +.mt2,mte2 {font-size:1.2em} +.qac,.k1,.nd,.xk,.k,.ior,.bd {font-weight:bold} +.sc {font-variant: small-caps} +.qs {text-align:right} +.ndx,.no,.ft {font-weight:normal} +.rr,.rq,.rq,.fq,.fqa,.it,.em,.sls,.sp {font-style:italic} +.w,.wg,.wh,.wr,.zc {font-style:normal} +.wj {color:rgb(128,0,0)} +.qt {font-style:oblique} +.ord {vertical-align:super;text-decoration:underline} +.nb, .ps { text-indent: 0em; margin-top: 0em } +.p,.p1,.pb,.pde,.pdi {text-indent:2em;margin-top:.5em} +.p,.nb {display:block;font-size:1em} +.pc {margin-top:.5em;text-align:center} +.pm,.pmo,.pmc,.psi,.pi,.pi1,.pi2,.pi3, +.pmr,.pr {text-indent:2em} +.pi,.pi1 {margin:.5em 0 0 2em} +.pi2 {margin:.5em 0 0 4em} +.pi3 {margin:.5em 0 0 12em} +.pm,.pmo,.pmc,.psi,.pmr,.pr {margin:.5em 2em 0 2em} +.q,.q1,.q2,.q3 {margin-top:0pt} +.q,.q1,.q2,.q3 {margin-top:0pt} +html[dir=ltr] .q,.q1 {text-indent:-2em;margin-left:2em} +html[dir=ltr] .q2 {text-indent:-1em; margin-left:2em} +html[dir=ltr] .q3 {text-indent:-1em; margin-left:3em} +html[dir=rtl] .q,.q1 {text-indent:-2em;margin-right:2em} +html[dir=rtl] .q2 {text-indent:-1em; margin-right:2em} +html[dir=rtl] .q3 {text-indent:-1em; margin-right:3em} +.qa {margin:.5em 0 .5em 0;font-weight:bold;display:block;text-align:center} +.qc {text-align:center} +.qm,.qm1,.qm2,.qm3 {margin-top:0;text-indent:-8em;margin-left:6em;margin-right:6em} +.qm2 {text-indent:-6em} +.qm3 {text-indent:-2em} +.r,.sr {font-style:italic;text-align:center;margin-bottom:.5em} +.s2,.s3 {font-weight:bold;text-align:center} +.s,.s1 {font-weight:bold;text-align:center;margin-top:.6em} +.toc,.toc1,.toc2 {display:block;font-size:1em} +.toc {margin-left:1em;margin-right:1em} +.toc1 {margin-left:2em;margin-right:2em} +.toc2 {font-size:0.9em;margin-left:3em;margin-right:3em} +.chapterlabel {text-align:center;margin-top:1em;font-size:1.1em} +.chapter {font-size:1.5em;font-weight:bold;float:left;margin-right:.3em;vertical-align:top} +.p .chapter, .q .chapter, +.q1 .chapter .q2 .chapter, +.q3 .chapter, .poetry .chapter {margin-right:1em} +.verse {white-space:nowrap;vertical-align:super;font-size:.6em;line-height:0} +.footnote, +.crossRefNote {display: block; margin-top:.5em;margin-left:0em} +.notebackref {margin: 1em} +.fine,.copyright,.figcopr {font-size:10pt;color:#333333} +.figref {font-style:italic;font-size:10pt;color:#000040} +.figCaption {font-size:11pt;color:#000040} +ul.tnav {list-style-type:none;padding:5px;margin-left:0;text-align:center} +.tnav li {display:inline} +.tnav a {display:inline-block;border:1px solid #000;padding:5px;background-color:#00CFFF;text-decoration:none;color:#000;border-radius:5px;min-width:1.5em} +.tnav a:visited {color:#404000} +.tnav a:link {color:#000040} +.tnav a:hover {color:#FFFFFF;background-color:#204880} + +ul.vnav {list-style-type:none;padding:5px;margin-left:0;text-align:center;float:left} +.vnav li {list-style-type:none} +.vnav a {display:block;padding:3px;background-color:#036;border-bottom:1px solid #eee;text-decoration:none;width:12rem} +.vnav a:visited {color:#ffff66} +.vnav a:link {color: #ffffff} +.vnav a:hover {background-color:#0520ff !important;color:#ffffff} + +div.bookList {float:left;margin:0px;padding:3px;width:13rem;background:rgb(223,255,255)} diff --git a/bibles/eng-web_usfm/keys.asc b/bibles/eng-web_usfm/keys.asc new file mode 100755 index 0000000..951f8db --- /dev/null +++ b/bibles/eng-web_usfm/keys.asc @@ -0,0 +1,336 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: GnuPG v1 +Comment: http://mljohnson.org/gpg.htm http://mljohnson.org/active-keys-2017-04-10.asc + +mQGiBD1M1fMRBACxdS9NaaoBkHi1hn9B3cD6xAU1oQA7SVfBYaXEq2r6zm2veFh/ +akkK8umw7Dze+qF0BvCshPt5jE8bvtPiuvE4XUkWfNNv8Ep7Op43Z2hlIRlm3mMw +5LlLdhSjt1Tn2E/7ZftAuOPtlA5pkz5WRrlEpXvh0m/gnoa6mbfNsR6mPwCg4Onn +5rC2mxwHAUisdYQJpqP8E1cEAISOBAJ8xV1jsKNif1gZAKgCl4y4pte7e45ALRZv +SoGnftAA0phDRF6LWunF+rgCpiYkuOxFSgTIBMIiDI9GHyGJLrnf8AOYhYRIn/vp +DBEdoj17y4LN2AuE6O+LOa6Bavg9mHLQvcvXZGUjqnfLeIruh3cKW5D8mFRbOqPE +IeD/A/9gEiM56L+AVdS9ueo2P2RNgZ1GgY+ZTYYnX+zYKrBglT0wzsAbTNPJNW8l +AqQBhwR/xyCVKHLgF99FClujaa6qE3BR95pEZF+lxueSGJLf6ueXMBQRcRyhBb7n +KkNjzrhpLcjiU/eAlwxwT7UPBxPf1TnpXbV50aLwdhzTxTrigbQwV29ybGQgRW5n +bGlzaCBCaWJsZSBlZGl0b3JzIDxlZGl0b3JzQGVCaWJsZS5vcmc+iFkEExECABkF +Aj1M1fQECwcDAgMVAgMDFgIBAh4BAheAAAoJEF9iAJ2TUF8mJr4An1mKjKfxPSqL +oA6Bq/K3UF0pcjCdAKC0Xhk+8Ri0+B+La8FrPCwSemZ3PohZBBMRAgAZBQI9TNX0 +BAsHAwIDFQIDAxYCAQIeAQIXgAAKCRBfYgCdk1BfJia+AJ9aI0RNHVzPk6irBOSD +IQH87MAjlACfakycxHA5OyBjKwSLVaPjmrwYaPuIRgQQEQIABgUCPUzvGgAKCRBE +j+DHF9dHu57EAKDkcng8N6bU5hirfE0DtJw60LsWJwCg/sr1uLsBWXMdOpriP0CF +pspxI5mIRgQQEQIABgUCR2NI5gAKCRDIatAFc/JXfo+/AJ9rX5ytxPcE3zuhHl8Z +o5MahyW+jQCfdh29DzFqUOVAN8z42V6W0r/9pFmJAhwEEAECAAYFAljrG9AACgkQ +1fEjZ0mPwAxVTxAAgODvkzrqoIChzxo0oqqxB8648KaUMBlVdvLG5oVNF3ieD7dl +wReXJXcRa5DmRcRu0kb4LA3Psdn0UXXKcSNK+EuKgXmQi+H65nGWzb3weO7s2iHT +aQd8fet+7YtRCPieA2GohxhR80YvyZfEhQK+Bv5YdGaEfrkIWnvr29AFn8bCWiOp +jIT5AkPU51bgFJzQ2OTVuwi3wMnwDovnsXR8XlpAwZuwPmEnuIjuR4f35ElQHCqF +k+kjhe7+WnpcMXcnYETS4BAk52AzEU7LY8Vq2qZ3T6vtMLRHmNCMJampCM3Fg0jp +NxsGosPbf8SooTWYNt601CD4N8eCRbEsqdare7kI/sgEBsWBT0Fhk9pFt/jUPbOS +6CP6v7pVghpVOwwTqmZXvMnbvB3s285dpiUppTuOePAW00tZ+m3+gPTaPhuVA7RP +79eNIhkFG1GaIFChxIRAvGiRq3qIsqmkZ72dBxhIC+jGV+Xcuk8iubu2dZdOxH4S +KeUmT1Y9Vkv20ArXwYh1ayrqaqb8mA2td/th0Rsmuz8jB8A3gmXR8hKI9JVFjKUD +5dQP9GJ0cKRSB1t5tZEwHf7cjVbnMJWSOW6DZevodY3fUlaVmWA32Dv7X/Qk4z6/ +/P95nWLENayCBG5hQbxewsbCrRR9e7nD8L4c/2+AGFnVGkoYeX9wzyScdyS5BA0E +PUzWjhAQAKeV6cKOrsBPV7IDAsXhOb7Sgt6LIRGtweFxp8OQ+9P7g7hAtJnjDTeE +ITbQdUPmP0D+xSrQ/o6cRCtOD0ERJf+i7D7aatkYDE2aPwpdWC5UIAxbD+rthlwa +9qDBDCmQ2zbzNJjn3PssSu0zX0RGVv0cfsOgdwKtZfLoAHByW8hvHDsHZWaiQgkJ +TT51E5S+U965nqaz1xkrg4Lboo+M8MAhHSZD/0TvkP19remWzCbb1HlRi4IwhXqU +PYyXVVhfb+1AB4s+6ELMHNAbv3sc+LYB+oHOVHYtDdN3y5AyXV8nXYnLACSYQFTB +ciQ+1jNRFlqCj6crk0DiUsjxHlRSW0ThV8MqFxkc2twMowkiMfF7O5iAuKLU0Xo6 +slq7V2FoTjKmFrP8tr7HHZXCeqg1uHMmJzaZpq6ztI6aKiX9yl7cQcJ3tDStvdqK +c3TJic4AOej5QF3t9fN87EbBTziARTCmt45/zyio9/DzrXvnn8hbH2uhpkrITXON ++FG91qEZ1L4OPUGWR/wrzJUa0mkFpL0MoB3Gilzn8/xgkHf7tOpb7z4a4V3WyO2G +ntzxjASJgiPTxumQfnyk69wcIf6wuyAY/qcpjKYsA1KMixUqXUhcRPjzBtmTj7kR +K41o/gMCX+2hn16+hCOzK/faPqbkw80w0PZLWqFcGy3pRwqBTNLzAAMFD/42dvqY +xsNnC4Hug6yl6gL9iV2PNoC0nyFPLoZypXM6CLKTeIZ29d8kMcDscYLLB5p8MGJ0 +PI1xkiz6YKaSfT1x8iNLUPP+kF6tiSbqAnqAiI2QXueWxgdlCK66EycBTdrbs5TE +64LtWGOoay/IMrAYWEkvk3qYsGdUfe8blOJkZC872hNbbh/VR9GJesEAxnZdfeyU +L+KKiSIzKkdUl2Cje9x3TIf2a8ySk5wEcc61ZVdn/JmUv/X8/OtFG6dfMm9VSjdb +OlB9ejhKT9nvHwgq1ADy+anQPoVkQLb3O2W6ZmZ8uKNkjbp2PlnqfC2UrNkYHPSq +eBNf4wGuAf4KPfvpjfX9yrDuyMRBW0jfVbGFo43Lu4epvnjcedw4gbkx/1rAuz5s +/Oo/3yL1DIfvw1wPV8Oh4z/XNPL3QRqCryTZgentHTMFCfcvwdbyY/VAUSAcYk8F +djplyMhflAHpgHrqMktaQa4ebKrAdgLSkZujNm24R/OFbHE27+3V3ZFf+JKTebrE +L0tiC+av3JwkPEaiyKkB2KKWJVmsX0JpCsK9aZLNFfXMEoTqlM1NJRSxKIuhq6e6 +chSSyoD2h0YxSXQSFg3edGYCpy8PbNIpzKyl7z3bGdkKu6S/G9/soGCJGRCSn5R/ +XL1sNYJ2PWjz/rxBsatPbv2T1zIWdMJj6yeKgIhGBBgRAgAGBQI9TNaOAAoJEF9i +AJ2TUF8mZHYAn3dTa9HWf69RzCQvwklr6Aadw6ezAJ4s5cA5+uKwai8Azq+xICzC +NVs8wYhGBBgRAgAGBQI9TNaOAAoJEF9iAJ2TUF8mZHYAn1rp+ma3TN1h3BAZWtBC +RIxghW/3AJ92JLAuLWD+vxWdgxDk5U+SI+kSeZkBogQzylhEEQQA1oc7o3KFW20N +HOojHCDav9mjNq6cQGKcYKLn/wJbZSEs6307QG4NcpA060bPEIOuElFgvGtDFs5Z +wl2Anf+7GJaCI1pO29ofT4c7sBXl6BLRRZixpS+oJo4AbDSU0XKdmR4rjL/ubmxX +gdJ+mQTSLltytSTJEtZJ6Gqd2wz4pokAoP8ksY+qMbLzQP6kApH5TpIBZ7ojA/4t +K5cJgHM+O1M5BYjVqT6ZYjD4RWLdGzm8mjKgtsywKE9u5zsrjGDNp/yz6P8QBAtQ +mIE8E3LYnGmSSNU0bV39vOxWEc4iW1Ghd7V7+MtHu9G74qvbd0R9+bo3zNHqnJX9 +/UsDZPb/swFENt74dZO967kzY1DmOy03rXxo6kOIOQQAl+QYJ8BsWtBOmlsvEjLG +yU5wsDwcFwa0EPSBuzFDYglGt8rsMyJa7tLN+0U4Lb2iOcUnl9hU6mZ4HaFm7EnF +8RL4+CiXiYosAAV0DZ6qE5aqUP+NncZu8wvu3LpR3DnqnpbKQJr4tO1HtxDEpu/V +luOQPJ5CnP31jtKa8vVLBSq0JU1pY2hhZWwgUGF1bCBKb2huc29uIDxtcGpAZWJp +YmxlLm9yZz6ITQQQEQIADgQLAwECBQI/6BOOAhkBAAoJEESP4McX10e7TJAAmLS8 +MYwmv52uP6ArAdc09bZSf+kAn12xyzkJihMKyxHDDkUEc/VgzQNRiQEVAwUQM8pm +8W+Iqt/O4EnZAQE+DggAhQPUYgHnliVl+pmvSHlry1m18FWD1Q35ijUBfek7TVZR +GHugfvCbda13czs5bVqig1bfvkx13IUCyK7iiEjlv8d/isYdiYgA2UQVLal+YnaV +WCu3IBFHKHV7Pwi44AWv2ygdeQ0+clDm8NDAl/gQADuMQF6evNazURWlVnWDYRZQ +K/mhN5OzsNxRU2RTGde/gb7PmNTIuXh959duCb3GlSRBrafKR9HmU/D8tzBdXL8B +ccK/Ejb25Ah4LMfESVNbUsiEnnZ5ENebteAh5WzUtWXH5G0Jj/MFxWyiT31zwfNB +hTt7KofqkViA9spcDiE3f9VX2T9cimpz/BmiCSIWoohGBBMRAgAGBQI9TPWzAAoJ +EF9iAJ2TUF8m2foAoJyymTr5XsEdNRDYnTamxcxINN/bAJ4wzEA6esJPYeddCO4X +35uFy1HiQ7kEDQQzylwNEBAA4NJruPjHhY9uHdFRw0DW0cpIOFLtQu1HaGZHrrfF +/YvITWfm2xZeINQv6GkwoPfY5s0q8jJJf70k7As9RiI01QAe4oskbSRSrgjtrm9M +zYtzNcEVDlKQDNyCRn8edQtYPfSaO4aHoXQD4CptX2y79I41tUiTu12OBshFpo9A +vVIqGIU7FzxMNs0jj9ntyulyEv3qX2oHzgsz7G9WFaPXq7v2l+YeQ1If0uaeLCwV +Bqq1mCrlE+LDSoykR5FNZd97sh+R83890VzVg6517a6nKN9wvOwkleGZJa1PYeeL +zH3+XHPwHa9tUnymMdVRwowm10uCtrl8/CZyY3tbAGPIgqN0KHZXTmTBYxR19NQw +HHd3w2oR9z7Xs8Wpwrfi9eZvCZYrBIl3bqAC3FxGPsPG06bslGpFM5zU5UY6i9qy ++J619LkIpYddGvT1HuXH1CGgwNRrcRk5U9+u91eXXlGZNEIm0Va4+oWai5xjZRQ5 +iq3F+spkFM4rD1lhnGJcnCfTEgPKLqb+bwpCd//qpixXMhd0dmleRCptoG8GnBUv +9XVoWkMUItoYVP/z+n0Kybay/9nEB7Wm8riM5q27HVtM9T2GZ19/CAcGeDO7ysGZ +/FZgJP7NK5q7BkXCgUGXoPn8tRlGpHfrlHAWWWiyQddVjc0VSmPPkZCvSjLQS6JZ +Sx0AAgIQAK5S7ozudE2PBSGpn9gDJfz1N7jWRrtCpyXIVcJ35wqEQ8rd6zSLPRl6 +hx8ym63+sVBQmTAv7WczuvAcwslqpP7LGCron3X3pXVf9YuAOe4JVyf4JJHD3wuP +aCWyVvD9EnyAwmDer+6LU2/DB2ca6vwDXBmYFjHdac/5zDtfLwHMQjsD0q0XOU/u +Pa2wnVAeh9irSrc7qMxKEXdvQqBMhkcFqIDSpUh9norSc6covEnqQ5ojQ1ERwkZ/ +V7ry0dIH1nJneyV581bY7ZmQD0VGIAWyKVjxpWVVXQJsdt4DJy6RbpYjlJnVwF0M +9Ahc85B46sfra1Smt7tId1QJFWJv/4dxrpFOJGLif8Bvr368ovPtOZmOozOkdCEm +j5C0EoB33fb+aOscwjqvSt8egZcgQpy21hlI7cYo2qRc64g3WJLKWQjCiN8qcTxj +9NXvE1x6XpWeGeJzHOXeUNN/fC1Tk48gjb+khYxm9dWQeJO58HJI5XOSTlGwnl+C +Pes9wVeweGgSIffyAyF7VI3G1RUowB32oABJ/GbTbhZY+X6YQ5zRgQksH6b8N7af +gLtg2mK2Pxnm6k7Xp+KV4ZGgDqCAEBPk2q4agQaSklBFg2Hag5fDRpnC8FAwV7vO +7x+g5rnxdo1sZOEoAv3oirGUiUKPatVwZzMOfRRV3nhx16KlrDkaiD8DBRgzylwN +RI/gxxfXR7sRAsDjAJ0bNgzLouYGq3jHXdMkPYAkFywqmACfYAaMTXbDcWt1slkZ +VCQ113n/8POZARQDMQ6beAAAAQgAyxaI/xlUQTzdcF7nS3dsXNIl8K4YZSRUlQ4U +ltqcHFQ9O3BhWUtL8ich0g60wsXvzr4Gwt0HzkvwByBMNWNsgD6cJfDzYbBU4q/Z +Ifzf0wTIXYJUn/tP/E1ecMT2BWKZZn6AgDaAWmKqYWUq3THgwPYjSg5RqsCZ2TYU +0mdwfbbUU4kgzdD2Vh9QFjE97t72yj06xnTsEtDTgko+tYxIwUFXxuntMw/qHPIK +GLEZGRVeUsHh6E3QmYMfxyBvdGFymhaJEjojMeGKLiZIUBe+954txZF/i7TctDvP +HDAoUp64H6Yy8JPKeay2PwsWC1PQSj21PallIF1viKrfzuBJ2QBAgAAAAAAAAAW0 +J01pY2hhZWwgUGF1bCBKb2huc29uIDxtcGpAY3NuLm5ldD4gbXBqQYkAlQMFEDKz +dSpleYS4x6lm3QEBmUgEAKGza3+ast8zd+mK/3ZvRmdIDCqiu2UafovYnDrwZAnt +mKF/oiyYAcYUQ/Z0MdwdAatn0FD1Ro9RE4eH19MWfxF2LrZo3rHqsQOVwEN1kkgr +7ph53KIp3gxjF6lE+QdP9ik1O5riyef+bf0gt+Lj/xRAFarL8BaWt345kfQsb1Rw +iQCVAwUQMQ6b//X0zg8FAL9FAQG3owP8Dtup/lBoWSxfUcLOwzJWCVknSQSKfVZj +AzK3BYFaamvOWfR2UA251wofBd4YZwqx7Csw5CrBl1YCBAkoHGVKOnfTo5whQLPj +Lv3EaR3cS0Pm0zIIH+rIInWFFmC4roeIPXHs2b+rQpVdqf4YmU+RgiiQGD8QXb2N +Scti6RNSQ9CJARUDBRAxDpt4b4iq387gSdkBAdMYCACBVYwre9UQDp5INVmiUPxQ +2jSZ4e3INIb/IPKta/H8JDSALQ3lJVu7WsOX0lH/s8zYHe/6omR4E71pGtoMxvVF +Ua6XjHKLO6ajgmqrhZg/m5wSc8pHQjV4XzBQyAnaMS7p+2ga2Zf6xf/6z6dYcWMM +vOb50LUy3p6/+jLYli4b1Z+y5tC8f8KfrRtBxb95oxaey3RXItf5mVbT8SeNuf+X +L5753+HVP6KTl5GfrM0lr3lovc8wZ/6h6Ofz+GlQ0XshRH5Om74kz4jwQmQqFvA2 +cIKvKMo3BZpeB+xeMfbNSUfIPrVEMdWjZXemziZ7DomxrwDAmjkPhmge+IblKn9W +iQEVAwUQMXBbWiawOej0JTJVAQHYswf/SJQwbfBXh8s+ZHrovA7I9vw14Zk5451T +jirHKe8mrOkcdL4o4JzObgIhvnHfJV5rSXqfaHTdHGFNssS0iWyfyXXnYOulu8cB +TT2+L+wJ9gKtysLZtI7An5GUx5nwwwg4xhgC8UJCoo1wwivPFgBoWhVzcbtiqQoz +0ejOvJ22o4Ky0Mi/OC64ixM8kDgNoOVLsmalo9BzUH8gmoSRWYwzQXDvtJfLPlcv +0kDHyb2clnLooCPCkJtfWWWBuDfz5kEF4Dr1IpuK/SPEMwWcEGv4KHDDNC4CW48p +ZH4INSziSDTjebPg/9TpmSqd53p8wP/EsbZ1fmUiSS18FOrCPJ3y3IkBFQIFEDJa +iYkdwoFOBhtwzQEBUgIIAJbuv97Bes7Z9qrcnWKy+AxGSx8PnSTLFOwLKr7X+5I+ +D6bsQhfG563rmHd8CUYBRfYJQdSU67s5utZTF3kbveq/YUB2/AvYZI54Ws4h8fJb +jfWuZLHmlXUa0gwdiAflSJiTZttWNWvjxTBkAfpn8rP9BbptWKdGEKb6trtz63Fm +BkOahFyNxoeCF+hAbHaRhmRU8bfSQh5ecz9aZytlhHeIni6QaFwzVcdy/JWgXWPI +fpXGr6ZN7BeaRWryQMj70GH77wq0gQVJfGscYDyDHn8JDCTAR/PZRWnterUW1B5G +hmw/XVayO2bSz5PqS2VdIKBCmUJnvja4aX7ShyvpIPGZAaIEQZ42UxEEAN7QfFz7 ++dD+gcQRzjl1NDe5CQ3KIZJRPw+Ve22PVb+SaufRDr3AerSWKmvb+x3XTjcXzn6Q +SJkfRSGukwHuAzbXoXUkbux/2upza3M2qOtfPcIg0Qe5GTS5WspkDJMYiU4kE1qj +PFf4h89NIa1ruXqfukmiTVG31xmHmmFlGoKXAKCtomUX9Eo2h//hRoYm2YHRjqEt +FwP+KWBDS0zDVeIRbBRODsJMtL1YNR11CZ6bxJdYcqDW+w9274QTA2pWGZq6HKS7 +7t/sVZKmCqjQlfA6r8oBpEOuGGW5iVub2zASf9f8zL59bNGLWB/xZcK+o8FGkRYC +PlNRyU0u2t9Hqg82UW0NEzm60PPKdmaCQ6npr/YvQeEPCmsD/2IY06Dxg8kL6+OM +j9naW0HMT6m912zwB8KmED4ExyjLqBXhmEOd9KHePgUrBtnhlqVvvuIzTPESAlzW +klOzCvlYcNZ3LFMT31UtpYveHXkrwmunggLLrkmXu8plRhEOMEFa90v/O8NNRvOn +4DaQQ/G9PxV6VDkOmsG2rdforw2wtCVNaWNoYWVsIFBhdWwgSm9obnNvbiA8bXBq +QGVCaWJsZS5vcmc+iGAEExECACAFAkdjRcgCGwMGCwkIBwMCBBUCCAMEFgIDAQIe +AQIXgAAKCRDIatAFc/JXfonKAJ40m9GZHzkEbHRWPoCoxwoc9mc13QCfSM7Lgr1S +rsgbto0YP1XbJ+m+u/qIRgQQEQIABgUCR2NF9gAKCRBEj+DHF9dHu/qTAKCuSZNp +LDAjvuT477o9tfzXt2HKcQCgjLimldSX4okQHE+308FuEyS0brSIRgQQEQIABgUC +R2NGWwAKCRDpGs+cxMRbOUKIAJ95fdhZ2jUG006xlE2YLeE4Clr0QACggZK24zKH +bB46l63D0UH+pIEKzfW0N0thaHVuYXB1bGUgTWljaGFlbCBQYXVsIEpvaG5zb24g +KGh0dHA6Ly9rYWh1bmFwdWxlLm9yZymIXgQTEQIAHgUCQZ42UwIbAwYLCQgHAwID +FQIDAxYCAQIeAQIXgAAKCRDIatAFc/JXfrsCAJ4wcwlWNEt+EIvjMjzHHL8akJX4 ++QCcCx1w+p2LjN4KmcaRTwbSKNWAWCiIRgQTEQIABgUCQZ420wAKCRBEj+DHF9dH +u39hAKDaDWKJEth8vzOrxjqT+ph/eCTG7wCgkeyynjSeCF9noLqa/THLpYa5dpqI +RgQQEQIABgUCR2NGXwAKCRDpGs+cxMRbOUZQAJ9D8tX6xqyjSEioAoXVeIhJ+jg7 +bACfZm4FqmW2CTbqF1Zuct2fmb89442IXgQTEQIAHgUCQZ42UwIbAwYLCQgHAwID +FQIDAxYCAQIeAQIXgAAKCRDIatAFc/JXfrsCAKCsvw4pmjMhdW0ShOQn9KpKUHZJ +EACgn8uIi+DLuzetLcjMNZXMI2BAWzC0M0thaHVuYXB1bGUgTWljaGFlbCBQYXVs +IEpvaG5zb24gPGthaHVuYXB1bGVAbXBqLmN4PohgBBMRAgAgBQJHY0RxAhsDBgsJ +CAcDAgQVAggDBBYCAwECHgECF4AACgkQyGrQBXPyV37KkACgn+GV7TvTOqc4pG/v +QYPz/5NsFEUAn28qEtkoLRcZZb7tAUUYh1+jBCW/iEYEEBECAAYFAkdjRfEACgkQ +RI/gxxfXR7vdXgCgwyHz/dwA+YXPRr3sDzcmfGqJs5QAnAoSpS1wv6ndcOsayaLE +bVxGG25RiEYEEBECAAYFAkdjRl8ACgkQ6RrPnMTEWzlaAACfQ17boopnwEbJw2bt +PTw7TZcDkysAoLPuIU2cz0XEHe9bQRk/LU4aHTg7tDJLYWh1bmFwdWxlIE1pY2hh +ZWwgSm9obnNvbiA8a2FodW5hcHVsZUBlQmlibGUub3JnPohgBBMRAgAgBQJHY0Sg +AhsDBgsJCAcDAgQVAggDBBYCAwECHgECF4AACgkQyGrQBXPyV34VAQCeO/5wPmSv +gGu+kGtTmP4AN7CUDgsAnAhXflDBlE/Q6XHvi+NHJ6TyEpDiiEYEEBECAAYFAkdj +RfYACgkQRI/gxxfXR7vtogCghIs5tYPMUB86sgUHEBq5GIe+WzEAoJslBtUVDHlE +f6y6v07yeOdLfnJ9iEUEEBECAAYFAkdjRl8ACgkQ6RrPnMTEWzkwRQCgoMABSzRL +QgfYKMfDPvZFYFlaCIIAl35pE4RbuVQMae7mOqoy+BLWlZO0MEthaHVuYXB1bGUg +Sm9obnNvbiA8a2FodW5hcHVsZUBjcnlwdG9ncmFwaHkub3JnPohgBBMRAgAgBQJH +Y0TPAhsDBgsJCAcDAgQVAggDBBYCAwECHgECF4AACgkQyGrQBXPyV34LAgCggR4B +uyLybhyW9ClQaqEHZEJ97jQAnRdsU/b2/OBnyfkHtVpV5LNMdPMaiEYEEBECAAYF +AkdjRfYACgkQRI/gxxfXR7tZswCcDJ/vm6gmWkCE5veygQBz5lFzUHQAn1LPyQCk +hP0xCBuxeWRjMCdcmAePiEYEEBECAAYFAkdjRl8ACgkQ6RrPnMTEWzkY8wCgmJns +8EXgx88FYMuDq8NhdSOILg4An1WacfpP775RSVG0etNk7fszQGn7tC5NaWNoYWVs +IFBhdWwgSm9obnNvbiA8a2FodW5hcHVsZUBiaWJsZWRpdC5vcmc+iGAEExECACAF +AkdjRQ8CGwMGCwkIBwMCBBUCCAMEFgIDAQIeAQIXgAAKCRDIatAFc/JXfi5nAJ9s +bFZ+6jdmVFi6wilNB2J/fuiaxQCeIOhA3J0lJcpIS5QPAC8gkAR6yJqIRgQQEQIA +BgUCR2NF9gAKCRBEj+DHF9dHu1JLAJ9t0AGQwIBQ1EQTGNd+1ZCLetgoswCcDomf +1M5GGAx+s6F0T8KX91SBnXCIRgQQEQIABgUCR2NGXwAKCRDpGs+cxMRbOZtfAKDf +OYVqTFjAYigIQgFFof21TCqkoACbBUtFK6b6uYdznjC7fWGcY/fvhSu0L0thaHVu +YXB1bGUgSm9obnNvbiA8S2FodW5hcHVsZV9Kb2huc29uQHNpbC5vcmc+iGAEExEC +ACAFAkdjRVUCGwMGCwkIBwMCBBUCCAMEFgIDAQIeAQIXgAAKCRDIatAFc/JXftX4 +AJ4vLrtbixo6xjp2ceFwBnddf6HAawCdEXNhsqhkb9YDgoeO2c9CBwoLcpGIRgQQ +EQIABgUCR2NF9gAKCRBEj+DHF9dHu4gYAKCVIeJafSwxwVjSB3H9zHkoJZsIlgCf +YUosySNizumUMC6u8bcuXtSV/HeIRgQQEQIABgUCR2NGXwAKCRDpGs+cxMRbOS9y +AKCwniihaSCxGS/Ylz75MiZlx+ex6ACg3VEOee2y2OLm6pR6vXybHn9gKUm0Pkth +aHVuYXB1bGUgTWljaGFlbCBQYXVsIEpvaG5zb24gPE1pY2hhZWxfUGF1bF9Kb2hu +c29uQHNpbC5vcmc+iGAEExECACAFAkdjRZgCGwMGCwkIBwMCBBUCCAMEFgIDAQIe +AQIXgAAKCRDIatAFc/JXfmsLAJ95PeR6Vzo+YJfiK5KpCPYUoaZdjQCggm/Av3FW +n3BCRu6Rq12cOKBR6mKIRgQQEQIABgUCR2NF9gAKCRBEj+DHF9dHu48UAJ9Pt1s6 +GRuwRTR4KewZBWlpDag+iQCgwxSsVxWG+Z6/Kjnfo4sj8bk6WuWIRgQQEQIABgUC +R2NGXwAKCRDpGs+cxMRbOQi/AJsF7cTvz+5lR/7jS+j+9FVHyyvuiACfRe3GVNnL +q4JfKHt3f1YsADcNHba5Ag0EQZ42cBAIAMQHwWkVsuGjw61PvQMA/wp91IhFMqvj +PKbREbqrSaQc1JpRTi7xWti8mgUGvDl1N2hjFHdcve4yne4faeI6MpYl/P+a0GW4 +4Fv0pagHrdpSreeGnLqaMCBIZk7LitCoU3/4mbh81ZCUdBveH8/iCbIA0geKTAhx +yhLOHuqAvuiqex+g7/JtBDeRx5kpDU/9P/7XxKvq5ATip2dtfx6Aj/gX3NB/6WWd +I4zEFhBFVPSTzhzjL08XHrDxn+QN/mEkkzsbClnuDGkDxadLvHZ51gudKYEYKym5 +2YwkjJhpJ+l9kIAbr06MFmWGvwA+zmPM4AaG6Ql4c16lP+GIu0UMIIcABA0H/2Ie +mk4/o9DrZlG5u18WHS8931TBswNWgzuU3e1kbvhW7JF9rAtwWu6UdGG7c+Ii2qGr +vhz2kPk1S2k77A4B6l0xJC6At8lqSFz/7bAawzbWI85op9l4yxzmy0o2rHXksh8c +3fYGXd7gUHREjNlRF2e07dqDGanWtY4Y++fyeqluykH0u8TTheEWuGfHiKVCJYpf +3YoBni3aZ3ji9coj95uKI5wQvWRdWXF7orNIkq8stBJiV6f5DO4a49WR62sZkQ8a +YgWRBV+325Ytc83sc9DBPTT/zAvxMXYITzSXGBVzz1DUdSkB3rAfabVmMZXlM/55 +D8xCrOB0/3cB/qStvJyISQQYEQIACQUCQZ42cAIbDAAKCRDIatAFc/JXfjroAKCB +nilL/LoeZNUDAe/9Dm4T5ARk4ACfQioY5fvjd6yu3KDd56CQg1HwUhOZAaIERD+T +AREEALkoTmsK1sCRws36RTcVcLh5M5S3JBABoti/c6v5MiiprAorDRhNB0aR+89O +CXL1N24VYO7igueCCFXr/MSHlInJr3mgBnHz6S6NwunVg5HGCn0tckZcK0TNFS6G +ChrTo4d6P2kvD1e7RJLEqgu5vg2VhsQFMt5ZISYbA2xEMfHnAKC9qqrxusfzyQqf +7DHDSULzb3fnSQP9GgDA7sRgh2jtn/1f/wBXDzZ0ECUTeT8tbsaq6T+MpK9wr9jL +zrDstr0pxvGyJCoKpgRvkcmX4AfCwlWBrcCDjqs1TTlw5HQmT4JxvIZRhgl4Ze0a +EnYyEuSOhjRxhbWElsLwzmQfBmzR3IOdK+sHNgFIHGYneuOuYqw1VuD+kEgD/2XT +uNHW3n85H5G+gXCoKGdMdrdc5XseEuP9WjSHObs2oT8x02g+HZKu6GlC5B6NwvO5 +ASMrDd2HmfqtcYEV2+GSsKEduz6I0D8AqXCpFAw50rq2wyu/2mwUoLfkPtYtlmSX +P83a+daoN9lVn0pCfokUSjvap6xNW6N6gjMXlaqotDlLYWh1bmFwdWxlIE1pY2hh +ZWwgSm9obnNvbiA8TWljaGFlbF9QYXVsX0pvaG5zb25Ac2lsLm9yZz6IXQQTEQIA +HQUCRD+TAQYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJEJp8xf/CHapSTwYAoIUU +kCyHLJOPetNcizRWVC6/ROZVAJ4oGXhqnmBvGpKJwusIZyFcpSWjt4hGBBMRAgAG +BQJEP5fkAAoJEMhq0AVz8ld+j4oAoII7EQ+98Ns1YFr0Yrn1+gkYVHe5AJ9y6CrM +A0DxQR7mYmJwsNh8L5nid4hGBBMRAgAGBQJEP5gkAAoJEESP4McX10e7qQcAoOSb +TGE6rBMq79g82lgTLEcF1/ooAKCCgfBUiRWnmZWWjykhUgRGi6zVG7kEDQREP5bZ +EBAA9Fu2YZ7R61Tvl5ofEqKcIuGloFcswbk7QE8E7JZj2EoG+kzBpks1ABAjDpY8 +2fY1bP52R5wnxQ+PFeH/de7b7S+hSsWmuSl0z2UIMLSTmXa50b9sLmITS3Q6f+hi +v47ahjw3hmchSbP1Bam9gIvhrgadCLTaszZd7g17IZe+Lxd2qMbKbo/V1m9oCfG4 +9Ap9fmteTdiRL/F4wJOZ6pQRueeWxd7TGTlepA3M9v1AbVJlv+aV/NpKAo8f8Crh +N8r9hq/8DiDDZnKAgdlk3C8wOC6OiuniTetWRy4pCKnAlbMcZDlM6Pp+dqquvaQN +LoiBm/sdp40y7oUGrwKiLesqufvkPus0gQgKKyAYqihncdpd3hw3T2+Mp3JBzE/q +2HjLEH7epRQXRqR2rWkURPcOZMpd8dNgUEn8Lrfwpuw3ZuFE+3+RTBfy3HSXJgtO +MbZU8MEqkzU8mzs9zGmIJpamq0XRA5kU3rW8j+Vrinebss0MHmcmK7T5iaeJc9Hs +oFY2q4vAGzbQbg7ANIbq3GY6YopuEwQoSQoqsRfBEGdhHe0PTzt2yQVgSI3xK4vw +tMGoPk3jXwhlLfSuzqqpBAuQD6j7YEzuEWotBeDOZpZ8QkdTsCa9ORBgE9I0jCYR +yu35in6qUtZCPI3vZtBwDfxw/ksXnjcsrh03WlNKyQpYkjMAAwYQAJA3bOlm+i4N +G6FpCaw0O62xLknUzXDB+jpCGQz9LE5ms81aGHYmACkjLfzfFvSfSdUZcIqWrjgw +mbJnjt6T0lKbuDgjD2AlcOJ51mi09MNwTJtNrLcQJWWlp+RtPo1rZ3BmpyaVL6lT +Ji4pCLeVBpTy48bnmMcQSUl8y9tzg5jw9NvK2a8Dy9JeUTGkEelYlY1ujkOiZklN +oWmAO6ayLJk8qJf72LAAt4lBzJMNTLKEq6Dfl+omPdOvxL+5RNUCq/t1dWzjnoeJ +loDt15x9cciggJooyYexhAD032pKpP4yyxj4ObBQTFMbeluJpnvMG2y8oPDPpJri +XYH5ckXc7AlMlj+8Sc03l4um/FsQ6G7A72Mcxu3w25hR6d2IADIr5/6NYnE9HvAk +FUOhQaO5wDWC51ycWJmWd5dydOt+qY2wZNxnKy4vnNWIGMSKFMsTiAI8dO+p1tXP +rwSgt73VtrAfSlgS8bmRfI5VgsiuwMuoa1KbDTi5L7ZXLrwBR6tIwcgOLQb14HFI +RmbY8OU/L6/gFX9ejrhR9aIx0q2xXPtk+3U8cHCMX7iQxphPxvvANR2Xhbf6w4jp +REkgtGx/HJRXZAIkyiNzRflIsVaMTzaKiZxLA3mnK0HKGR/vhYTtRanFGzRBeQqU +cmKrt4RkN3whKOTb4ppgpQT/jaNmPsnMiEYEGBECAAYFAkQ/ltkACgkQmnzF/8Id +qlIIKgCfd4iym5FDAoC8ZSdfFbhaAgO/13cAmwSwLGHgf+J3PKuHRa7D9YhaMGIy +mQENBE10rhcBCADWEGNyUFaMfO8bkqW2wAzT9Jt5S6U1PKHopoqo5/k1hKoZsXUC +rzLXSb4mGqSrqctsB3jmNPisd6xHagIFFp0tAsg9anwosqZAXoJVxVvaYEZupZsY +LnRAj0EUJgMxlN2jdujeSrwxnNq6Ju41NwyQtMLHiTdH0kucI/bWh9RD7aO0dg9D +jLoG6INnYV0UmFQSmRcC5ZxZyuNPmcN+qEzcF7gvVzL+hLKlfIp9/gx0y0/csZSl +/IRT/gu7LWzmrAOxppxK5RStWkANFH8CxHNUe8ieByYmD1bTQw1oNrfZ3BIB0MWM +ZDqYdspiS8NftYWmwnL/F5UcmsrlfUsa8ajtABEBAAG0NFBORyBTY3JpcHR1cmVz +IHdlYm1hc3RlciA8Y29udGFjdEBwbmdzY3JpcHR1cmVzLm9yZz6JATgEEwECACIF +Ak10rhcCGwMGCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheAAAoJEPOiezFq87vqBdEH +/ijoUmwUe7NzsMtIzZkrY+QXbCC1QMpD+eiWXmyrKZp9DnZ66ypW+6A2O1D5nxrC +oPW6hZ3piUQUrCnOz7k7WUO8uhK1T3r21weBAglxLHDCs/VyiBulpgwjiyjysU9q ++nsWJwNH8yI1sm9ztmY2hA1B6eLJbwzKZiEul5NDarWj2p0K6rmQ2IBr8MdCd4dP +8eFx1DK5Czn3HEr8Sgsx76qxJYqJ3kG/MK/YeNa4R9cFplu6b1bJ01d+YuDbOoUp +50Ag2DZNyZ+BMvSsk9qWWiRNRSiSoWAM2DPBqFbNAuCnsKUUFG6fMHeftGw6x9dN +de3+VzaNt33+H+0q0hssUvuIRgQQEQIABgUCTXSulAAKCRDIatAFc/JXfjdwAJ0Z +TpSwmflfwrWexzi9iYFdGW8ZwACgpG4tM2Mii2mBw4eM3tBeSHuN8he5AQ0ETXSu +FwEIAO86a4Xsx7+jXnNq17uz6PEpz3SMS84qQJ47NHCn9zUVCuUFmb8wZXmCjXy8 +RaFLiv717xOMn0c+HvBvMMiGGyNQYyl5maO2T75zQ4NliIUWtE8dXNPU01hGeX13 +usTweoo5Cba5TGY5Gbrpa4R3yqMZfB8rG5n2nBVfrt/JuEdod6pwKtwa4cpl76M6 +HThmIelsVZaFRQc9PFGTqsEgnuRPIUgHIV0tBM6u6H7Gmf2L30WVm30vRF3ncV00 +r8xXpWa+LJXmZZWJ2QYJ9u6vX/GtbXrVe2uSFDPIQNNuxXIfGpZ/ZGk+Zaf/JTmu +48ut5hcZp5OB0qYmZFQ1sO6nVAsAEQEAAYkBHwQYAQIACQUCTXSuFwIbDAAKCRDz +onsxavO76mhCB/4qmEzuO7PjjYadARfUd1l+G/pkI2Ea08iqTb6R3aHe2fHXMvnZ +CL1QxyvOUZlr0L300eH7M/y7xi0yGoBX7iS0xRwdnKNfV3B+v6Ruwlwm0ULQSW3e +VPCLDudvkJWnf84TuErjUL06WhV17qrWCuHH8ZeBHrsEfQXBjMqtUzKi1/lQbdjR +twthgIxPamu9VFPTFRdrYadylM/JVscrpLwhdtYZTFwc8rV4TWTwbQMYhJ/eR05Y +mMqZu4L7v0ap4ipD6qymr7JDhyrNTQa5mHZY9bGbeU5+2XCtjtzOm9wsz4XlqtuS +M+AoM6y8AjXvrZXeiJzxmQSDSYHnsv/3VpCgmQINBFjrDb0BEADGx7mQay7L5WdI +ktKHVOnCKrcl+rNsrZDDY/8ZLq/gocjLWqNpGmYsvcigHt2Dhw6Xpj0Htmq6UunZ +fJ0xxe4n1FPBnaT8+O0UwBafTlWUIuD3+LDoTQeZZAFD5gyluzdwldQXKuqBoENj +HjJ5ip8UCj4hKGw8eCKd737aJ2d2z6/ILFP6ywBJNZ/AineCLqnAdfPrlnZR1/O4 +TukYEtH9/ePQnAUBDenGSGo8XaUDwQamT5OIRCNK0dTkrfzyQwq6B0Ycf8/1PCde +jV8SJclEA98ICjQe4PbKV32RwZjslJ9vaHDulid32cj4B6D6AAxiKXnB7WYCWdTa +aUtGTdWieMF7v1naRPfNUIQj15XSVfOXSYMpI5vYr8fsaaK2DD8wvAZDuFTnSVSC +bWzL8b5G4IxzhOyJhE3kb7C236ihJ//t9g2VmxY/zdhw3AGAC3GL2UGS3L5wi7L2 +DnSK2h6C4YV8wGdH3R968uviKTPoWjArbQPaiCE91mwQA7HZwwtH3ccEZBr6qSE7 +islhHhR5DLgiSUeRKQAzlxvqpATH9UTMu+mF9h7sZd0tKJSAgT/Vb5PgwvAVhNMX +HQresgeO/VHT+jEFet6/nY1XxfVSOX1cN+VAryN8LQqP42NUmg/wYylhxwmvrSWW +pyCHNK4yfjvo1IRCeHrH+uCSnZ+7KwARAQABtERLYWh1bmFwdWxlIE1pY2hhZWwg +UGF1bCBKb2huc29uIChtbGpvaG5zb24ub3JnKSA8TWljaGFlbEBlQmlibGUub3Jn +PokCOAQTAQIAIgUCWOsNvQIbAwYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AACgkQ +1fEjZ0mPwAzOwg/+OLx3SpaPE3RFu0rnAl15fMi/e2tGsuwV5CEiU+e/92QF9Ul5 +PZs1BS93SyVDdFj/26dMOPtH4qgGmBLbX+dsDuye5BNSuGmY0RjAMBBzWUcLB0Ud +3RLmbwyEOBfaZKoM+AeQEaNxZdvBpSb4v/lKbfKIcp6fgKBZLus1h5nj+djS8wrI +FJIQghvOzmL0FXk1hQ/Ae9ZTH75uQS++saUnti5zMIFEClaTedC/lGZzKzGz/51s +Kaidpb3lm7ZB68XciRVqWwI3DBmeD9Z87+L13aOt5MIHmGC4kfry+knUEo3s39zv +JjYVAo6b/gYk3xyXqgH+kjzIXP6nOh8M8cuH2AHBfS46QGcPoyDRnF8I32aaO3dm +sSe6xDIs4rtabjI0HvkWEfHrHXBHhZD3RCHmZmj715p/Bg17BcpIek9HXaYvAn/6 +rs4WhXBh2eO9sl8tW4FSFJ5mXtlBClZu7JWZighY3u0JAiHdncXRUY3Hir41r1ld +EwGHJMmPuQDLCa6Je2Tc2Y/PkCJG62em0UnVZgxtLk0+zV4KVXMxii1mL04R9Zdy +vaaKKl29MC+R8kP7mNKzqifUUwZIoZgxSJcBRU68etf9LXvtQfrsbBru/uGGU7X7 +q5nu07ti/ypBeSpI8YAyLN1pm5FuhbKIrBxYttGytmXMC0C7LLPHPzKa9ZeJARwE +EAECAAYFAljrF/UACgkQb4iq387gSdnVHAgAqaRcW3k2Y6urdIVruk7SakAA5qag +OJ19jiOSQ1s0aam28n6JNaF3ATiAXKUaDkh5XAkDERJEJvpJYp1PlmZLE7xbHDDN +ol5VR1xebYOK5AAPJ8cG7czOb/62qTEM13XhcaobnuPqfVj7ZiMCTvZ+LMpAJ0OK +zKnmNOU4wpZv06JGqxhCGYfPtq4pwDBkGqX+aHq1t8Qma5Hbzxeqa9JNpKfLpHAy +4viqweOjPvdWDsxvkluFo2ajciZy2BMgh8AmQ8YhuKCI5dnkZWb84DXMTlgJAklV +6v6eRV9D+x++rMYSsEJMeFuYr5mGl8Tlg3RCX81I2PgTLJ6qjS+92v6KQohGBBAR +AgAGBQJY6xg7AAoJEF9iAJ2TUF8m/poAoLytJ2s+fZ9I0b57YqgSubwkJrHjAJ4r +5onFqkUf9AY+mMbFe/6Gw0xkOYhGBBARAgAGBQJY6xj4AAoJEESP4McX10e7514A +oJUnJh+NPzAXuIwGXnP1NJvek86iAKCBjIc6u8+V69Kk36pa3pxwCu+mxYhGBBAR +AgAGBQJY6xl4AAoJEMhq0AVz8ld+uXIAn3FEFMXFALVqme40Sywiq5scJORSAJ4g +xeIo57asByYUh7hFq6jzc6VzwYhGBBARAgAGBQJY6xngAAoJED/qsN8AXudiV08A +n07+K9YSFPe9GNPJ8HJeqt0Hx1OmAKCj23KuW+mPfwDBCbICd4rxqbefLIhGBBAR +AgAGBQJY6xpHAAoJEJp8xf/CHapSi14An2cWSTDPTwaHiPxKSzo6imwTaTd+AJ9u +o+n5tFSPYrvzQctjzE7GYw6Fl4hGBBARAgAGBQJY6xqLAAoJEDx2kEqiZjBHp5IA +n06rWmtQgFP5mwpuppK11qlm3aaIAJ9cQMha5KUzmRQb/ruIFxpr32HMAIkBHAQQ +AQIABgUCWOsauAAKCRDzonsxavO76gV5B/0V/ft+Epq4YAavZYJFmxsIlFPBVeWJ +hgGUTvPXWoc+8ywd0WYEZYS0SyA0zDJ4MMBeDUQegPyEZpyGl/0VwmMR94+YXMgD +dOCWXaBcmusOXDy6xKsGbu/JAct+ydE91ha17jqBpw20sFxYrwnYtobBoKWWmSZu +46NmeQSWYHm/Pd3lqjahUcO0Ha3awYUNICaSKT4MZ7YqtpAw9ypRD3qHtc5IMWx5 +PRNTxUMZB48zzMMIXFvvK08ezX/NacPAdxAuTgovdIlJLabozwjrLCc7sYjvsE6r +aC+pmZIMmD23LA0eeDN4HAc1HaV12cG+FlPhpXjvmZTThT/OvG+wCW5XuQINBFjr +Db0BEACqQ9Ywe4MegQw37zPHRHNEiqxr6ICCmmspLOJQqm7a/ABhv7Mx2WWv/zGK +oi3YXhDu7IQ8OXjCoL6sWxs+RABQtT/ffQdCx7Pxh0SL7bnPr2SLO8cDYmq5/mkX +Jn0Td8liANFL6zmJ+nZ9eXfbONTtILrVfLXtaIZJilYBrlUrYJgXCL0xt1kDbYaD +XS1mxagkADZGcWOCWXbwes/uLtVHrfX2SbktPFCJ2EeySJXFnmxy4IEMK4HuJrO7 +On/gCPCbseZx6RcoVZww81Hj9nwlJ3LZmWVm9J1hDChtLNKWvVAuH1s3dw9OBP4s +9dsan18oG+a3lacPRvaRT4tlIMajV5zqD08BMECPt1rcX7E5hEPi6nuTJc16lsMK +13BkQXGC7jaT1gmbYgkqTqarNAvpkGEyDd35NdK9oL45w9PLxw/I9s2g9Qzt+5or +wWSSnAoLgepYr127XzxYVWsTGIXJ2jiY+IUgqheU66i0KskKvASoKnNCwV40V/f5 +rZlrQukcTewUjgJUKnfv/MyWII6P9BIBbGUxyA+pW9OkHTrNGiR66JmlUO+jy84a +43R8V/0QfuSeXSzCzhoL0RcabuP8ITN6wi9XkBrQ9NwXSQe4htr8/WSEjnjRVeWz +yBjTLdnhqyZwnhQRpsp/rxyG46C/uLkGud1cb/peR3xjUvH9wQARAQABiQIfBBgB +AgAJBQJY6w29AhsMAAoJENXxI2dJj8AMsAAP/1cdmWNCxrAw67pfejAFIRvNJLs3 +cPX9+8XMTmDOY7Lww7JxWoDZ8YDovzp6TYOZa3lIlE4gLXX5whwT59nIH184PVRm +kn6hQBK0c728GhfV9JXCzOUl9ADDlv2CxBlp4LAtsNS8KvQ6OZN0pnO9CCbN/NHp +JUBD159PBBF7V+THaVNZOUNebEBlffBXrMUj7urmjRTu5c4zutKwTGzpVcaEHwTu +r7v1OAYlhioWv5oMtWYyGHDL3dgryFMysD2gCyuzgTPjfotKaMUXz9yi8bAQzKXs +H4koUt5XWGCe16uEYiBCxjFpTP0cJUke65F/LaBTnMRjhAAfpNFcR+Ux0HJSxTRh +cXQD5BY6lFhjwxjJ24FtVQ0qNQlWPKxzRLw41bnEU9UmzHG+nZLgeZoQSQgNjiav +uPAqxz5HcRoqwe0hmMbuwt4olTJozo8agHcLr3GDMaVWqEC+Ks7HUPWZM+iBeHzW +obXLJfGlEe8YzI/9kUnXGTy8ChFbnYaZoZfsFTkuS5WO5mueQ9N8Yh5shmPYVdeF +ek0PH4uQ5XdPISYveTL2IHHao5JEcGYoIcofLS21dCgbwiIxPs9WBToO3d30r/k/ +z8JWMNdSKF05y7YKoC2MVkyu+yKEMWKjyWCrbA3bf/AcqNmyTnupahOpBWQbpwm4 +dPdO2rp2LiiCIYwM +=QvUt +-----END PGP PUBLIC KEY BLOCK----- diff --git a/bibles/eng-web_usfm/signature.txt.asc b/bibles/eng-web_usfm/signature.txt.asc new file mode 100644 index 0000000..28dfdec --- /dev/null +++ b/bibles/eng-web_usfm/signature.txt.asc @@ -0,0 +1,108 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +# The files in this set are designed to be used to convert to other formats. See +# http://paratext.org/about/usfm for information about the format. +# ___ +# You may use the sha256sum and gpg programs to verify the integrity of the text in this archive. +# Use sha256sum -c to check each of the files listed below. http://en.wikipedia.org/wiki/SHA-2 +# The sha256sum program is a Linux core program and is available in Cygwin for Windows. http://cygwin.com +# Use Gnu Privacy Guard to check that this file has not been altered. http://gnupg.org/ +# The public key to use to verify this signature is at http://eBible.org/web/keys.asc for you to +# import into your gpg keyring before verifying this signature with gpg. +# Updates and revisions of redistributable texts are posted at https://eBible.org/Scriptures/ and +# ftp://eBible.org/pub/Scriptures/. +# Digitally signed 2025-09-10 07:58 +a99d85a20344711157254f1fde9528130beebd3b7428114c3928a693c0f136a0 00-FRTeng-web.usfm +a932e0f6c44c15186b683594ac99a495d9b7694a33745dd40a7f971c5a8cdfd0 02-GENeng-web.usfm +bb0726ecbe1e10a231e083de04239a3eccb9028a368df4dc7244dafc9282a100 03-EXOeng-web.usfm +d99b40d8a1e0c39d36e25940635c289184553f8354511b50aa6a9c9951b454aa 04-LEVeng-web.usfm +daa7f9e2e6ecb60ffa955af9699d6e6f36751d47c70f189ddd06decd93a32697 05-NUMeng-web.usfm +2b4b33bf21d128756354309a54610289486edc588f776d1f827f94690d17cb2a 06-DEUeng-web.usfm +3de9cf7886b1441f24ae7a5eed1dbe7e580dce08ea893994be5ef3c7f506f783 07-JOSeng-web.usfm +85e276e26c749a7aea1a57c4ce0b237ab1886c8d2181e43991e12b592bea1061 08-JDGeng-web.usfm +e58456d9c0ba03ff639b6dfc718892e7f81cc96a6b85bf36451a9933902fbd8c 09-RUTeng-web.usfm +35d8d64a943198dee0f3e614a8ea0a7034e6ecc20265840df1f78118290b87aa 10-1SAeng-web.usfm +82933d659dc27b4a595347a35611928cba5a2d9fdee8fbdf971bb2dfd0406bfe 106-GLOeng-web.usfm +c638f4c2cb2aa5c4885d54efc122fbc7ca0a1c53bf7641a7852541b99cb0f47e 11-2SAeng-web.usfm +70f45f05309c491ee27fa3502f715d250410e1d81227be5aec7d9709fbaf06b0 12-1KIeng-web.usfm +93b3ea6c6d5758ec63a961c09f0b498095aaedeb2e4d9d56520328102fab0cd2 13-2KIeng-web.usfm +9f35e83a47e4ec3ced06f7234b9fca2a22d1360bb949f1b55ce98844324f7ee2 14-1CHeng-web.usfm +7b1c05488d79d0c8fbaff43221c3d27d0bf178a69b233850737e0905be55f6ad 15-2CHeng-web.usfm +ece93faf4603e9e8c5e6002bf1d3ec447dd52e0a7d10215e654a5d2649e6faf7 16-EZReng-web.usfm +d6247f508b6c9bd105483ed56dd9a54ed4b16847a5f9cb30b08393ae636dad88 17-NEHeng-web.usfm +591846a1fe9e432b8fc6a0595cb839988421c32ce95c7bb341cea9575e436fb0 18-ESTeng-web.usfm +21dd776740ad32f733cc81b8cb72160245a8c9138f9141b88dfdf29e6529e6db 19-JOBeng-web.usfm +82d71fdf68c2481215ece268bd39ae8ec15b3669187ee246d78c4522eec24d47 20-PSAeng-web.usfm +b48679c43c5fa67bdca77e2fec482103b218ea6b06fdf78a035ce969f73bb215 21-PROeng-web.usfm +0e4027190ab93e85d242fd0c2ded9104d06da0c8663e37182733f158e69f28ad 22-ECCeng-web.usfm +9f0bf28a0eb25206810d05d7cc22293da8c016b088f5e36843e1832ddd094730 23-SNGeng-web.usfm +394128e661cd34a2bd9157bc0e50a2189f57febb5c0fc7f2304e5ef5661e4aab 24-ISAeng-web.usfm +c0b823439758953b162ea4b682749e9435514c13cea2f64baf6d5d9f05f258dd 25-JEReng-web.usfm +2ec4dd1d453053f99eedd09fc7b85fe17e1ea44b87a9771fb35a07a810f64ad9 26-LAMeng-web.usfm +2938af36232f8bb482cc41be1f1b9e1d7392db25244045ed51d214fce73f892d 27-EZKeng-web.usfm +9650b284a405194a8214f640a23e67d966a8fefacdf64fbed933f6c0607fbb0b 28-DANeng-web.usfm +503c2c0caaab28ac41db4c18e9a7107f0b95c5b99a9c4569e67dcd20b725b15b 29-HOSeng-web.usfm +bdee9078dab02f27abcd635da8687f2cb7897c3374b86e171aa0e75e8f5872b5 30-JOLeng-web.usfm +8fac6ca11a8187b1541712df5bcc87ea485a9c7552cb2033fb1fcb97d50ba7f8 31-AMOeng-web.usfm +8429ce2b2d10ecbbabb6e6a00cbd3a9fa7d4741d38c78f02f78b938bada6f2f5 32-OBAeng-web.usfm +dcd3f48a370341992862625500ba7f08059eccfc8c016a6f236fea050d295179 33-JONeng-web.usfm +a38eff4c19754ae0544299dc1e455402089f623a2dfbae26b6997688ea61f0cd 34-MICeng-web.usfm +4b03a24fc4dc7da28f6a29484ee2e85aedc398f634a0ff342f8e99f72e405be5 35-NAMeng-web.usfm +05fedd486fd2f166835cc99b90e55b69f803d631ddbf59acbe846d5f17b67316 36-HABeng-web.usfm +5543a63feb8c917c3bf0385651833348cec24c495d4cf3c323d5e15bd68dc425 37-ZEPeng-web.usfm +f773a491ce8678bf9515f0b84eb775e9d476383a587dd57d1a2e4fc614ad0fe7 38-HAGeng-web.usfm +aca01ffc980adba1ad0a05f2d305bfa858b7e0577a90e2d0b8b04d6f434b9cec 39-ZECeng-web.usfm +81e96b54a3d0153422e09d727dce4f1effb78041b349aa9b85b3e2199f77c6c6 40-MALeng-web.usfm +683f9eaebd16cfa1e8555cf22d2bb072125dfa8192ef3108cd20397d4f921c77 41-TOBeng-web.usfm +1dbaee755fae600973a52c1003a544b346aa7e10a1fb702bdb9c07fa2ca313a3 42-JDTeng-web.usfm +7640e6562d9c7aba227c01a74bee8721ea6880e5562d7a7e7c2963c92b86f277 43-ESGeng-web.usfm +36250127f854bd79318393f7c3c188bf17c3fb45eefa4f704e7c901c283eab0f 45-WISeng-web.usfm +7b94219da4d2b429ca5630f279af0fe522b1b4ef6a18bc0c7e61620766f17200 46-SIReng-web.usfm +ec251954c01deff81d9e899799c46ae11c63a9f5bbf49f909f8d1df2a3c4fe8a 47-BAReng-web.usfm +4bf0de0e0ebc0ff4fa8011e9ae9a7b2cd00859d97957ad1edb44b5e80b1fcb49 52-1MAeng-web.usfm +5d6c04d4b26689216921cdbc156bf22c68ffc9b4509db7c37983bd6bb46384ea 53-2MAeng-web.usfm +860489b214f982cd750a6cad0dd3cab2fbc22fef5f95d22ee33ef60d85d16d9d 54-1ESeng-web.usfm +018518186f0722c3438a08c021223a6fd383d33c94e7b636dc087aa22d6e4f91 55-MANeng-web.usfm +1fb30c4c048b6fec87f9630a2afdcf212f57594dab778047e8f9813edabaaa11 56-PS2eng-web.usfm +02e9245f072fda29899a27887dc8b5b394c3f60b90568939a012f7fd91288df7 57-3MAeng-web.usfm +e4325e5cd290556b34ae27b683e51c1d283b26bf0f95011e229a8124c7e0d91c 58-2ESeng-web.usfm +5a55fef9593503a057e75ce3eebd09f127a39abf5730f7cdb6169ed084ce06e0 59-4MAeng-web.usfm +01ce54762a8be2ca3cbdf9329ffca8ebd8c89952901bc244571060e4cae6efe0 66-DAGeng-web.usfm +cc85539f77f4a4f6d0714ca73952f9ca9b975e639c706e41861b236760ba1bc2 70-MATeng-web.usfm +f76c938e7e02946be65f0b19a7cb013f0f88e899bf7e3b051b36a4f183424081 71-MRKeng-web.usfm +8793c3b12f848f48359fb592526b4b1d9d764d89a0a0a924809c98992b4730fe 72-LUKeng-web.usfm +5abdcb2fbd23097d94cece9f2dca910433713734f1f581303f53c8cb06cdda41 73-JHNeng-web.usfm +07185101cb481b3b647245142b3a41c8237b119b5d1efe7bd5b9e1cc856fe6bc 74-ACTeng-web.usfm +39759acd4a8cc0986fc9f1c86fc42d6c534f8972021b3b42cd1427e9614cb7a0 75-ROMeng-web.usfm +83d246603e67ecc073b2a499d6dbdc7f8e9ec0af9481c72feb7c1aa9a2550b3c 76-1COeng-web.usfm +69501cef0b24a3e29ead23a1f52266fa93be664223e8dad11c2dab9bc1032cdc 77-2COeng-web.usfm +1cedfab7f78c517f7ea04ca0a6204a6ba7376aab531e8aeff870f1da9282c51c 78-GALeng-web.usfm +20897ebd4e9b7b2001aca4d53d8392faa08895fc769bf3a3b49d312d246406a1 79-EPHeng-web.usfm +5948ac82b27c2d942ec7128d49fcb7c39d4bf7c3a71d070767d02c5f58deaa70 80-PHPeng-web.usfm +034c3eac7c65261321d013e40c098a19330e99d49834ccdadeee76b5b1ca0842 81-COLeng-web.usfm +6c4c24445fcba9d7e95e45e8aa8e2a98726b97eabbda6aab647c5589e198a94c 82-1THeng-web.usfm +4ea97673aa973e803b411bfea89fef84e1121cab034b52ea2d18d141360d5008 83-2THeng-web.usfm +3e368e8db3590a8d55d9a9f2df9dd82eb0c2425b77c7d377be74fdfcc1ee2d17 84-1TIeng-web.usfm +ac6290206cae4a044ed9f6fc4b84b39b27f5f65e6043f7d1436798de0107cea1 85-2TIeng-web.usfm +a133a2ab3f51f28692468ecd8a54421cc8e712ebd05afbf2bb3c94a7f941a691 86-TITeng-web.usfm +30e00d99166c605daab24bc39ff750263c01f6fdce159996f9b2072a8a30be52 87-PHMeng-web.usfm +1c89ef8bd90a1aa3f240ae231ab5bace6bfd72206cef624d23592e0bc4d816c9 88-HEBeng-web.usfm +ce79ce623ec78971c1537ee658e9a7e756d2d7d4158cc3d91c76363c66f053fb 89-JASeng-web.usfm +b593e33cafa59f43901d571f1141fdb0955d2775f20229b06f9b655bcdbc3a97 90-1PEeng-web.usfm +1b29250d9cc0e860d59a22d1267fa389bc78f854d8d88c3eb303cf498f6ba7d3 91-2PEeng-web.usfm +28a61f35885e96d62a6e2ff2da0f1a0bb42651226a8361f8a462eb6ddf03f3ed 92-1JNeng-web.usfm +0d5f2e7d78908fd3baa055e6ce41e8957cf318ee948b220c48dbc888993e4104 93-2JNeng-web.usfm +66324acb8ad786a0449785d159ceeaee6c97b667e4a389020fd60efe3e76b6a9 94-3JNeng-web.usfm +2b400b84f00f7f0a97cfb6781bf40efb926e05549bfef85c550f52440c395eb5 95-JUDeng-web.usfm +2dd996bb91e490910ea8c1f0c497a27093dcad3398a048b9e8bbf18e4123241c 96-REVeng-web.usfm +c4c4a6d75e612f549e90a659ebc01ccdcc149856c1062a2403a0f3f3b946d1e3 copr.htm +bd21f257a489381fcb7c97e0e2f845dc1bd23e65d441a2848f4f30974b09b65b gentiumplus.css +-----BEGIN PGP SIGNATURE----- +Comment: https://mljohnson.org/gpg.htm https://mljohnson.org/active-keys.asc + +iHEEARECADEWIQRU1xTXaVbaZnPcHupfYgCdk1BfJgUCaMEvlhMcZWRpdG9yc0Bl +YmlibGUub3JnAAoJEF9iAJ2TUF8m/QEAn3QsBVpIVLPH7UJQ+8ipqInjbKDYAJ94 +3lqHD9JQ8J3hNzDAHDWQtMcboA== +=88w3 +-----END PGP SIGNATURE----- diff --git a/components/auth/auth-provider.tsx b/components/auth/auth-provider.tsx new file mode 100644 index 0000000..0949916 --- /dev/null +++ b/components/auth/auth-provider.tsx @@ -0,0 +1,316 @@ +'use client' + +import React, { createContext, useContext, useEffect, useState, ReactNode } from 'react' +import { useLocale } from 'next-intl' +import { useStore } from '@/lib/store' +import { isTokenExpired, clearExpiredToken } from '@/lib/auth/client' + +interface User { + id: string + email: string + name?: string + role: string + theme: string + fontSize: string + createdAt: Date + updatedAt: Date + lastLoginAt?: Date +} + +interface AuthContextType { + user: User | null + isAuthenticated: boolean + isLoading: boolean + login: (email: string, password: string) => Promise<{ success: boolean; error?: string }> + register: (email: string, password: string, name?: string) => Promise<{ success: boolean; error?: string }> + logout: () => Promise + refreshUser: () => Promise +} + +const AuthContext = createContext(undefined) + +interface AuthProviderProps { + children: ReactNode +} + +export function AuthProvider({ children }: AuthProviderProps) { + const [isLoading, setIsLoading] = useState(true) + const [initialized, setInitialized] = useState(false) + const locale = useLocale() + const { user, setUser } = useStore() + + const refreshUser = async (forceRefresh = false) => { + const token = localStorage.getItem('authToken') + if (!token) { + setUser(null) + setIsLoading(false) + return + } + + // Check if token is expired before making request + if (isTokenExpired(token)) { + console.log('Token expired in refreshUser, clearing auth state') + localStorage.removeItem('authToken') + setUser(null) + setIsLoading(false) + return + } + + // If we already have a user and this isn't a forced refresh, don't re-fetch + if (user && !forceRefresh) { + setIsLoading(false) + return + } + + try { + const response = await fetch(`/api/auth/me?locale=${locale}`, { + headers: { + 'Authorization': `Bearer ${token}` + } + }) + + if (response.ok) { + const data = await response.json() + setUser(data.user) + } else { + // Token is invalid or expired, get error details + try { + const errorData = await response.json() + console.log('Server returned 401 error:', errorData) + } catch (e) { + console.log('Server returned 401 without JSON body, status:', response.status) + } + console.log('Token expired or invalid, clearing auth state') + localStorage.removeItem('authToken') + setUser(null) + } + } catch (error) { + console.error('Auth check failed:', error) + // Network error or other issues, clean up auth state + localStorage.removeItem('authToken') + setUser(null) + } finally { + setIsLoading(false) + } + } + + // Debug database schema + const debugSchema = async () => { + try { + const response = await fetch('/api/debug/schema') + const debug = await response.json() + console.log('Database schema info:', debug) + } catch (e) { + console.log('Schema debug failed:', e) + } + } + + // Debug user lookup + const debugUser = async (userId: string) => { + try { + const response = await fetch('/api/debug/user', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ userId }) + }) + const debug = await response.json() + console.log('User debug info:', debug) + } catch (e) { + console.log('User debug failed:', e) + } + } + + // Debug token validation + const debugToken = async (token: string) => { + try { + const response = await fetch('/api/debug/token', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ token }) + }) + const debug = await response.json() + console.log('Token debug info:', debug) + + // Log more details about the token payload + if (debug.payload) { + console.log('Token payload:', debug.payload) + + // Debug user lookup + if (debug.payload.userId) { + debugUser(debug.payload.userId) + } + } + if (debug.verificationResult) { + console.log('Verification result:', debug.verificationResult) + } + } catch (e) { + console.log('Token debug failed:', e) + } + } + + // Clear expired tokens and sync state immediately on mount + useEffect(() => { + if (typeof window !== 'undefined') { + const token = localStorage.getItem('authToken') + console.log('Auth mount check - token exists:', !!token) + if (token) { + console.log('Token preview:', token.substring(0, 50) + '...') + + // Debug the database schema and token on server side + debugSchema() + debugToken(token) + + const expired = isTokenExpired(token) + console.log('Token expired:', expired) + if (expired) { + console.log('Clearing expired token and user state on mount') + localStorage.removeItem('authToken') + setUser(null) + } + } else if (user) { + console.log('No token but user exists in store, clearing user state') + setUser(null) + } + clearExpiredToken() + } + }, []) + + // Initialize auth state only once on mount + useEffect(() => { + if (!initialized && typeof window !== 'undefined') { + const token = localStorage.getItem('authToken') + console.log('Initialization flow - token exists:', !!token) + + if (token) { + // Check if token is expired before making request + if (isTokenExpired(token)) { + console.log('Token expired during initialization, clearing auth state') + localStorage.removeItem('authToken') + setUser(null) + setIsLoading(false) + } else { + console.log('Token is valid, calling refreshUser()') + // Token appears valid, try to refresh user data + // refreshUser will handle server-side validation failures + refreshUser() + } + } else { + console.log('No token found, clearing user state') + // No token, clear any stale user data + setUser(null) + setIsLoading(false) + } + + setInitialized(true) + } + }, [initialized]) + + // Handle hydration issues - ensure we stop loading once initialized + useEffect(() => { + if (initialized && isLoading) { + const token = localStorage.getItem('authToken') + if (!token) { + setIsLoading(false) + } + } + }, [initialized, isLoading]) + + const login = async (email: string, password: string): Promise<{ success: boolean; error?: string }> => { + try { + const response = await fetch(`/api/auth/login?locale=${locale}`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify({ email, password }), + }) + + const data = await response.json() + + if (response.ok) { + localStorage.setItem('authToken', data.token) + setUser(data.user) + return { success: true } + } else { + return { success: false, error: data.error } + } + } catch (error) { + console.error('Login error:', error) + return { + success: false, + error: locale === 'en' ? 'Login failed' : 'Autentificare eșuată' + } + } + } + + const register = async (email: string, password: string, name?: string): Promise<{ success: boolean; error?: string }> => { + try { + const response = await fetch(`/api/auth/register?locale=${locale}`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify({ email, password, name }), + }) + + const data = await response.json() + + if (response.ok) { + localStorage.setItem('authToken', data.token) + setUser(data.user) + return { success: true } + } else { + return { success: false, error: data.error } + } + } catch (error) { + console.error('Registration error:', error) + return { + success: false, + error: locale === 'en' ? 'Registration failed' : 'Înregistrare eșuată' + } + } + } + + const logout = async () => { + try { + const token = localStorage.getItem('authToken') + if (token) { + await fetch('/api/auth/logout', { + method: 'POST', + headers: { + 'Authorization': `Bearer ${token}` + } + }) + } + } catch (error) { + console.error('Logout error:', error) + } finally { + localStorage.removeItem('authToken') + setUser(null) + } + } + + const value: AuthContextType = { + user, + isAuthenticated: !!user, + isLoading, + login, + register, + logout, + refreshUser: () => refreshUser(true) + } + + return ( + + {children} + + ) +} + +export function useAuth(): AuthContextType { + const context = useContext(AuthContext) + if (context === undefined) { + throw new Error('useAuth must be used within an AuthProvider') + } + return context +} \ No newline at end of file diff --git a/components/auth/login-form.tsx b/components/auth/login-form.tsx index 35d198c..8de11d2 100644 --- a/components/auth/login-form.tsx +++ b/components/auth/login-form.tsx @@ -1,7 +1,23 @@ 'use client' import { useState } from 'react' -import { useStore } from '@/lib/store' +import { useTranslations } from 'next-intl' +import { useAuth } from './auth-provider' +import { + Box, + TextField, + Button, + Alert, + CircularProgress, + InputAdornment, + IconButton +} from '@mui/material' +import { + Email, + Lock, + Visibility, + VisibilityOff +} from '@mui/icons-material' interface LoginFormProps { onSuccess?: () => void @@ -12,7 +28,9 @@ export function LoginForm({ onSuccess }: LoginFormProps) { const [password, setPassword] = useState('') const [loading, setLoading] = useState(false) const [error, setError] = useState('') - const { setUser } = useStore() + const [showPassword, setShowPassword] = useState(false) + const { login } = useAuth() + const t = useTranslations('auth') const handleSubmit = async (e: React.FormEvent) => { e.preventDefault() @@ -20,74 +38,94 @@ export function LoginForm({ onSuccess }: LoginFormProps) { setError('') try { - const response = await fetch('/api/auth/login', { - method: 'POST', - headers: { 'Content-Type': 'application/json' }, - body: JSON.stringify({ email, password }) - }) + const result = await login(email, password) - const data = await response.json() - - if (!response.ok) { - setError(data.error || 'Eroare la autentificare') - return - } - - // Store user and token - setUser(data.user) - localStorage.setItem('authToken', data.token) - - if (onSuccess) { - onSuccess() + if (result.success) { + if (onSuccess) { + onSuccess() + } + } else { + setError(result.error || t('loginError')) } } catch (error) { - setError('Eroare de conexiune') + setError(t('connectionError')) } finally { setLoading(false) } } - return ( -
-
- - setEmail(e.target.value)} - className="mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500" - required - /> -
+ const handleClickShowPassword = () => { + setShowPassword(!showPassword) + } -
- - setPassword(e.target.value)} - className="mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500" - required - /> -
+ return ( + + setEmail(e.target.value)} + required + margin="normal" + variant="outlined" + disabled={loading} + InputProps={{ + startAdornment: ( + + + + ), + }} + /> + + setPassword(e.target.value)} + required + margin="normal" + variant="outlined" + disabled={loading} + InputProps={{ + startAdornment: ( + + + + ), + endAdornment: ( + + + {showPassword ? : } + + + ), + }} + /> {error && ( -
{error}
+ + {error} + )} - - + {loading ? t('logging_in') : t('login')} + +
) } \ No newline at end of file diff --git a/components/auth/protected-route.tsx b/components/auth/protected-route.tsx new file mode 100644 index 0000000..fc06af5 --- /dev/null +++ b/components/auth/protected-route.tsx @@ -0,0 +1,48 @@ +'use client' + +import { ReactNode, useEffect } from 'react' +import { useRouter } from 'next/navigation' +import { useLocale } from 'next-intl' +import { useAuth } from './auth-provider' +import { Box, CircularProgress, Typography } from '@mui/material' + +interface ProtectedRouteProps { + children: ReactNode + fallback?: ReactNode +} + +export function ProtectedRoute({ children, fallback }: ProtectedRouteProps) { + const { isAuthenticated, isLoading } = useAuth() + const router = useRouter() + const locale = useLocale() + + useEffect(() => { + if (!isLoading && !isAuthenticated) { + router.push(`/${locale}/login`) + } + }, [isAuthenticated, isLoading, router, locale]) + + if (isLoading) { + return fallback || ( + + + + Loading... + + + ) + } + + if (!isAuthenticated) { + return null + } + + return <>{children} +} \ No newline at end of file diff --git a/components/auth/register-form.tsx b/components/auth/register-form.tsx new file mode 100644 index 0000000..f1cc142 --- /dev/null +++ b/components/auth/register-form.tsx @@ -0,0 +1,200 @@ +'use client' + +import { useState } from 'react' +import { useTranslations } from 'next-intl' +import { useAuth } from './auth-provider' +import { + Box, + TextField, + Button, + Alert, + CircularProgress, + InputAdornment, + IconButton +} from '@mui/material' +import { + Email, + Lock, + Person, + Visibility, + VisibilityOff +} from '@mui/icons-material' + +interface RegisterFormProps { + onSuccess?: () => void +} + +export function RegisterForm({ onSuccess }: RegisterFormProps) { + const [email, setEmail] = useState('') + const [password, setPassword] = useState('') + const [confirmPassword, setConfirmPassword] = useState('') + const [name, setName] = useState('') + const [loading, setLoading] = useState(false) + const [error, setError] = useState('') + const [showPassword, setShowPassword] = useState(false) + const [showConfirmPassword, setShowConfirmPassword] = useState(false) + const { register } = useAuth() + const t = useTranslations('auth') + + const handleSubmit = async (e: React.FormEvent) => { + e.preventDefault() + setLoading(true) + setError('') + + if (password !== confirmPassword) { + setError(t('passwordMismatch')) + setLoading(false) + return + } + + try { + const result = await register(email, password, name || undefined) + + if (result.success) { + if (onSuccess) { + onSuccess() + } + } else { + setError(result.error || t('registerError')) + } + } catch (error) { + setError(t('connectionError')) + } finally { + setLoading(false) + } + } + + const handleClickShowPassword = () => { + setShowPassword(!showPassword) + } + + const handleClickShowConfirmPassword = () => { + setShowConfirmPassword(!showConfirmPassword) + } + + return ( + + setName(e.target.value)} + margin="normal" + variant="outlined" + disabled={loading} + InputProps={{ + startAdornment: ( + + + + ), + }} + /> + + setEmail(e.target.value)} + required + margin="normal" + variant="outlined" + disabled={loading} + InputProps={{ + startAdornment: ( + + + + ), + }} + /> + + setPassword(e.target.value)} + required + margin="normal" + variant="outlined" + disabled={loading} + InputProps={{ + startAdornment: ( + + + + ), + endAdornment: ( + + + {showPassword ? : } + + + ), + }} + /> + + setConfirmPassword(e.target.value)} + required + margin="normal" + variant="outlined" + disabled={loading} + error={confirmPassword !== '' && password !== confirmPassword} + helperText={ + confirmPassword !== '' && password !== confirmPassword + ? t('passwordMismatch') + : '' + } + InputProps={{ + startAdornment: ( + + + + ), + endAdornment: ( + + + {showConfirmPassword ? : } + + + ), + }} + /> + + {error && ( + + {error} + + )} + + + + ) +} \ No newline at end of file diff --git a/components/layout/navigation.tsx b/components/layout/navigation.tsx index ca3cff2..a294c29 100644 --- a/components/layout/navigation.tsx +++ b/components/layout/navigation.tsx @@ -30,10 +30,12 @@ import { Home, Settings, Logout, + Login, } from '@mui/icons-material' import { useRouter } from 'next/navigation' import { useTranslations, useLocale } from 'next-intl' import { LanguageSwitcher } from './language-switcher' +import { useAuth } from '@/hooks/use-auth' export function Navigation() { const [anchorElNav, setAnchorElNav] = useState(null) @@ -44,6 +46,7 @@ export function Navigation() { const isMobile = useMediaQuery(theme.breakpoints.down('md')) const t = useTranslations('navigation') const locale = useLocale() + const { user, isAuthenticated, logout } = useAuth() const pages = [ { name: t('home'), path: '/', icon: }, @@ -53,9 +56,9 @@ export function Navigation() { ] const settings = [ - { name: t('profile'), icon: }, - { name: t('settings'), icon: }, - { name: t('logout'), icon: }, + { name: t('profile'), icon: , action: 'profile' }, + { name: t('settings'), icon: , action: 'settings' }, + { name: t('logout'), icon: , action: 'logout' }, ] const handleOpenNavMenu = (event: React.MouseEvent) => { @@ -81,6 +84,29 @@ export function Navigation() { setDrawerOpen(false) } + const handleUserMenuAction = (action: string) => { + handleCloseUserMenu() + + switch (action) { + case 'profile': + router.push(`/${locale}/profile`) + break + case 'settings': + router.push(`/${locale}/settings`) + break + case 'logout': + logout() + router.push(`/${locale}`) + break + default: + break + } + } + + const handleLogin = () => { + router.push(`/${locale}/auth/login`) + } + const toggleDrawer = (open: boolean) => { setDrawerOpen(open) } @@ -191,38 +217,56 @@ export function Navigation() { {/* User Menu */} - - - - - - - - - {settings.map((setting) => ( - - - {setting.icon} - - {setting.name} - - ))} - + {isAuthenticated ? ( + <> + + + + {user?.name ? user.name.charAt(0).toUpperCase() : } + + + + + + + {user?.name || user?.email} + + + {settings.map((setting) => ( + handleUserMenuAction(setting.action)}> + + {setting.icon} + + {setting.name} + + ))} + + + ) : ( + + )} diff --git a/data/en_bible/BSB/EXO/chapter-1.json b/data/en_bible/BSB/EXO/chapter-1.json new file mode 100644 index 0000000..3871ca1 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-1.json @@ -0,0 +1,93 @@ +{ + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "These are the names of the sons of Israel who went to Egypt with Jacob, each with his family:" + }, + { + "verseNum": 2, + "text": "Reuben, Simeon, Levi, and Judah;" + }, + { + "verseNum": 3, + "text": "Issachar, Zebulun, and Benjamin;" + }, + { + "verseNum": 4, + "text": "Dan and Naphtali;\n \n Gad and Asher." + }, + { + "verseNum": 5, + "text": "The descendants of Jacob numbered seventy in all, including Joseph, who was already in Egypt." + }, + { + "verseNum": 6, + "text": "Now Joseph and all his brothers and all that generation died," + }, + { + "verseNum": 7, + "text": "but the Israelites were fruitful and increased rapidly; they multiplied and became exceedingly numerous, so that the land was filled with them." + }, + { + "verseNum": 8, + "text": "Then a new king, who did not know Joseph, came to power in Egypt." + }, + { + "verseNum": 9, + "text": "“Look,” he said to his people, “the Israelites have become too numerous and too powerful for us." + }, + { + "verseNum": 10, + "text": "Come, let us deal shrewdly with them, or they will increase even more; and if a war breaks out, they may join our enemies, fight against us, and leave the country.”" + }, + { + "verseNum": 11, + "text": "So the Egyptians appointed taskmasters over the Israelites to oppress them with forced labor. As a result, they built Pithom and Rameses as store cities for Pharaoh." + }, + { + "verseNum": 12, + "text": "But the more they were oppressed, the more they multiplied and flourished; so the Egyptians came to dread the Israelites." + }, + { + "verseNum": 13, + "text": "They worked the Israelites ruthlessly" + }, + { + "verseNum": 14, + "text": "and made their lives bitter with hard labor in brick and mortar, and with all kinds of work in the fields. Every service they imposed was harsh." + }, + { + "verseNum": 15, + "text": "Then the king of Egypt said to the Hebrew midwives, whose names were Shiphrah and Puah," + }, + { + "verseNum": 16, + "text": "“When you help the Hebrew women give birth, observe them on the birthstools. If the child is a son, kill him; but if it is a daughter, let her live.”" + }, + { + "verseNum": 17, + "text": "The midwives, however, feared God and did not do as the king of Egypt had instructed; they let the boys live." + }, + { + "verseNum": 18, + "text": "So the king of Egypt summoned the midwives and asked them, “Why have you done this? Why have you let the boys live?”" + }, + { + "verseNum": 19, + "text": "The midwives answered Pharaoh, “The Hebrew women are not like the Egyptian women, for they are vigorous and give birth before a midwife arrives.”" + }, + { + "verseNum": 20, + "text": "So God was good to the midwives, and the people multiplied and became even more numerous." + }, + { + "verseNum": 21, + "text": "And because the midwives feared God, He gave them families of their own." + }, + { + "verseNum": 22, + "text": "Then Pharaoh commanded all his people: “Every son born to the Hebrews you must throw into the Nile, but every daughter you may allow to live.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-10.json b/data/en_bible/BSB/EXO/chapter-10.json new file mode 100644 index 0000000..7024558 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-10.json @@ -0,0 +1,121 @@ +{ + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Go to Pharaoh, for I have hardened his heart and the hearts of his officials, that I may perform these miraculous signs of Mine among them," + }, + { + "verseNum": 2, + "text": "and that you may tell your children and grandchildren how severely I dealt with the Egyptians when I performed miraculous signs among them, so that all of you may know that I am the LORD.”" + }, + { + "verseNum": 3, + "text": "So Moses and Aaron went to Pharaoh and told him, “This is what the LORD, the God of the Hebrews, says: ‘How long will you refuse to humble yourself before Me? Let My people go, so that they may worship Me." + }, + { + "verseNum": 4, + "text": "But if you refuse to let My people go, I will bring locusts into your territory tomorrow." + }, + { + "verseNum": 5, + "text": "They will cover the face of the land so that no one can see it. They will devour whatever is left after the hail and eat every tree that grows in your fields." + }, + { + "verseNum": 6, + "text": "They will fill your houses and the houses of all your officials and every Egyptian—something neither your fathers nor your grandfathers have seen since the day they came into this land.’”\n \nThen Moses turned and left Pharaoh’s presence." + }, + { + "verseNum": 7, + "text": "Pharaoh’s officials asked him, “How long will this man be a snare to us? Let the people go, so that they may worship the LORD their God. Do you not yet realize that Egypt is in ruins?”" + }, + { + "verseNum": 8, + "text": "So Moses and Aaron were brought back to Pharaoh. “Go, worship the LORD your God,” he said. “But who exactly will be going?”" + }, + { + "verseNum": 9, + "text": "“We will go with our young and old,” Moses replied. “We will go with our sons and daughters, and with our flocks and herds, for we must hold a feast to the LORD.”" + }, + { + "verseNum": 10, + "text": "Then Pharaoh told them, “May the LORD be with you if I ever let you go with your little ones. Clearly you are bent on evil." + }, + { + "verseNum": 11, + "text": "No, only the men may go and worship the LORD, since that is what you have been requesting.” And Moses and Aaron were driven from Pharaoh’s presence." + }, + { + "verseNum": 12, + "text": "Then the LORD said to Moses, “Stretch out your hand over the land of Egypt, so that the locusts may swarm over it and devour every plant in the land—everything that the hail has left behind.”" + }, + { + "verseNum": 13, + "text": "So Moses stretched out his staff over the land of Egypt, and throughout that day and night the LORD sent an east wind across the land. By morning the east wind had brought the locusts." + }, + { + "verseNum": 14, + "text": "The locusts swarmed across the land and settled over the entire territory of Egypt. Never before had there been so many locusts, and never again will there be." + }, + { + "verseNum": 15, + "text": "They covered the face of all the land until it was black, and they consumed all the plants on the ground and all the fruit on the trees that the hail had left behind. Nothing green was left on any tree or plant in all the land of Egypt." + }, + { + "verseNum": 16, + "text": "Pharaoh quickly summoned Moses and Aaron and said, “I have sinned against the LORD your God and against you." + }, + { + "verseNum": 17, + "text": "Now please forgive my sin once more and appeal to the LORD your God, that He may remove this death from me.”" + }, + { + "verseNum": 18, + "text": "So Moses left Pharaoh’s presence and appealed to the LORD." + }, + { + "verseNum": 19, + "text": "And the LORD changed the wind to a very strong west wind that carried off the locusts and blew them into the Red Sea. Not a single locust remained anywhere in Egypt." + }, + { + "verseNum": 20, + "text": "But the LORD hardened Pharaoh’s heart, and he would not let the Israelites go." + }, + { + "verseNum": 21, + "text": "Then the LORD said to Moses, “Stretch out your hand toward heaven, so that darkness may spread over the land of Egypt—a palpable darkness.”" + }, + { + "verseNum": 22, + "text": "So Moses stretched out his hand toward heaven, and total darkness covered all the land of Egypt for three days." + }, + { + "verseNum": 23, + "text": "No one could see anyone else, and for three days no one left his place. Yet all the Israelites had light in their dwellings." + }, + { + "verseNum": 24, + "text": "Then Pharaoh summoned Moses and said, “Go, worship the LORD. Even your little ones may go with you; only your flocks and herds must stay behind.”" + }, + { + "verseNum": 25, + "text": "But Moses replied, “You must also provide us with sacrifices and burnt offerings to present to the LORD our God." + }, + { + "verseNum": 26, + "text": "Even our livestock must go with us; not a hoof will be left behind, for we will need some of them to worship the LORD our God, and we will not know how we are to worship the LORD until we arrive.”" + }, + { + "verseNum": 27, + "text": "But the LORD hardened Pharaoh’s heart, and he was unwilling to let them go." + }, + { + "verseNum": 28, + "text": "“Depart from me!” Pharaoh said to Moses. “Make sure you never see my face again, for on the day you see my face, you will die.”" + }, + { + "verseNum": 29, + "text": "“As you say,” Moses replied, “I will never see your face again.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-11.json b/data/en_bible/BSB/EXO/chapter-11.json new file mode 100644 index 0000000..f00368f --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-11.json @@ -0,0 +1,45 @@ +{ + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “I will bring upon Pharaoh and Egypt one more plague. After that, he will allow you to leave this place. And when he lets you go, he will drive you out completely." + }, + { + "verseNum": 2, + "text": "Now announce to the people that men and women alike should ask their neighbors for articles of silver and gold.”" + }, + { + "verseNum": 3, + "text": "And the LORD gave the people favor in the sight of the Egyptians. Moreover, Moses himself was highly regarded in Egypt by Pharaoh’s officials and by the people." + }, + { + "verseNum": 4, + "text": "So Moses declared, “This is what the LORD says: ‘About midnight I will go throughout Egypt," + }, + { + "verseNum": 5, + "text": "and every firstborn son in the land of Egypt will die, from the firstborn of Pharaoh who sits on his throne, to the firstborn of the servant girl behind the hand mill, as well as the firstborn of all the cattle." + }, + { + "verseNum": 6, + "text": "Then a great cry will go out over all the land of Egypt. Such an outcry has never been heard before and will never be heard again." + }, + { + "verseNum": 7, + "text": "But among all the Israelites, not even a dog will snarl at man or beast.’\n \nThen you will know that the LORD makes a distinction between Egypt and Israel." + }, + { + "verseNum": 8, + "text": "And all these officials of yours will come and bow before me, saying, ‘Go, you and all the people who follow you!’ After that, I will depart.”\n \nAnd hot with anger, Moses left Pharaoh’s presence." + }, + { + "verseNum": 9, + "text": "The LORD said to Moses, “Pharaoh will not listen to you, so that My wonders may be multiplied in the land of Egypt.”" + }, + { + "verseNum": 10, + "text": "Moses and Aaron did all these wonders before Pharaoh, but the LORD hardened Pharaoh’s heart so that he would not let the Israelites go out of his land." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-12.json b/data/en_bible/BSB/EXO/chapter-12.json new file mode 100644 index 0000000..cd14976 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-12.json @@ -0,0 +1,209 @@ +{ + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Now the LORD said to Moses and Aaron in the land of Egypt," + }, + { + "verseNum": 2, + "text": "“This month is the beginning of months for you; it shall be the first month of your year." + }, + { + "verseNum": 3, + "text": "Tell the whole congregation of Israel that on the tenth day of this month each man must select a lamb for his family, one per household." + }, + { + "verseNum": 4, + "text": "If the household is too small for a whole lamb, they are to share with the nearest neighbor based on the number of people, and apportion the lamb accordingly." + }, + { + "verseNum": 5, + "text": "Your lamb must be an unblemished year-old male, and you may take it from the sheep or the goats." + }, + { + "verseNum": 6, + "text": "You must keep it until the fourteenth day of the month, when the whole assembly of the congregation of Israel will slaughter the animals at twilight." + }, + { + "verseNum": 7, + "text": "They are to take some of the blood and put it on the sides and tops of the doorframes of the houses where they eat the lambs." + }, + { + "verseNum": 8, + "text": "They are to eat the meat that night, roasted over the fire, along with unleavened bread and bitter herbs." + }, + { + "verseNum": 9, + "text": "Do not eat any of the meat raw or cooked in boiling water, but only roasted over the fire—its head and legs and inner parts." + }, + { + "verseNum": 10, + "text": "Do not leave any of it until morning; before the morning you must burn up any part that is left over." + }, + { + "verseNum": 11, + "text": "This is how you are to eat it: You must be fully dressed for travel, with your sandals on your feet and your staff in your hand. You are to eat in haste; it is the LORD’s Passover." + }, + { + "verseNum": 12, + "text": "On that night I will pass through the land of Egypt and strike down every firstborn male, both man and beast, and I will execute judgment against all the gods of Egypt. I am the LORD." + }, + { + "verseNum": 13, + "text": "The blood on the houses where you are staying will distinguish them; when I see the blood, I will pass over you. No plague will fall on you to destroy you when I strike the land of Egypt." + }, + { + "verseNum": 14, + "text": "And this day will be a memorial for you, and you are to celebrate it as a feast to the LORD, as a permanent statute for the generations to come." + }, + { + "verseNum": 15, + "text": "For seven days you must eat unleavened bread. On the first day you are to remove the leaven from your houses. Whoever eats anything leavened from the first day through the seventh must be cut off from Israel." + }, + { + "verseNum": 16, + "text": "On the first day you are to hold a sacred assembly, and another on the seventh day. You must not do any work on those days, except to prepare the meals—that is all you may do." + }, + { + "verseNum": 17, + "text": "So you are to keep the Feast of Unleavened Bread, for on this very day I brought your divisions out of the land of Egypt. You must keep this day as a permanent statute for the generations to come." + }, + { + "verseNum": 18, + "text": "In the first month you are to eat unleavened bread, from the evening of the fourteenth day until the evening of the twenty-first day." + }, + { + "verseNum": 19, + "text": "For seven days there must be no leaven found in your houses. If anyone eats something leavened, that person, whether a foreigner or native of the land, must be cut off from the congregation of Israel." + }, + { + "verseNum": 20, + "text": "You are not to eat anything leavened; eat unleavened bread in all your homes.”" + }, + { + "verseNum": 21, + "text": "Then Moses summoned all the elders of Israel and told them, “Go at once and select for yourselves a lamb for each family, and slaughter the Passover lamb." + }, + { + "verseNum": 22, + "text": "Take a cluster of hyssop, dip it into the blood in the basin, and brush the blood on the top and sides of the doorframe. None of you shall go out the door of his house until morning." + }, + { + "verseNum": 23, + "text": "When the LORD passes through to strike down the Egyptians, He will see the blood on the top and sides of the doorframe and will pass over that doorway; so He will not allow the destroyer to enter your houses and strike you down." + }, + { + "verseNum": 24, + "text": "And you are to keep this command as a permanent statute for you and your descendants." + }, + { + "verseNum": 25, + "text": "When you enter the land that the LORD will give you as He promised, you are to keep this service." + }, + { + "verseNum": 26, + "text": "When your children ask you, ‘What does this service mean to you?’" + }, + { + "verseNum": 27, + "text": "you are to reply, ‘It is the Passover sacrifice to the LORD, who passed over the houses of the Israelites in Egypt when He struck down the Egyptians and spared our homes.’”\n \nThen the people bowed down and worshiped." + }, + { + "verseNum": 28, + "text": "And the Israelites went and did just what the LORD had commanded Moses and Aaron." + }, + { + "verseNum": 29, + "text": "Now at midnight the LORD struck down every firstborn male in the land of Egypt, from the firstborn of Pharaoh, who sat on his throne, to the firstborn of the prisoner in the dungeon, as well as all the firstborn among the livestock." + }, + { + "verseNum": 30, + "text": "During the night Pharaoh got up—he and all his officials and all the Egyptians—and there was loud wailing in Egypt; for there was no house without someone dead." + }, + { + "verseNum": 31, + "text": "Then Pharaoh summoned Moses and Aaron by night and said, “Get up, leave my people, both you and the Israelites! Go, worship the LORD as you have requested." + }, + { + "verseNum": 32, + "text": "Take your flocks and herds as well, just as you have said, and depart! And bless me also.”" + }, + { + "verseNum": 33, + "text": "And in order to send them out of the land quickly, the Egyptians urged the people on. “For otherwise,” they said, “we are all going to die!”" + }, + { + "verseNum": 34, + "text": "So the people took their dough before it was leavened, carrying it on their shoulders in kneading bowls wrapped in clothing." + }, + { + "verseNum": 35, + "text": "Furthermore, the Israelites acted on Moses’ word and asked the Egyptians for articles of silver and gold, and for clothing." + }, + { + "verseNum": 36, + "text": "And the LORD gave the people such favor in the sight of the Egyptians that they granted their request. In this way they plundered the Egyptians." + }, + { + "verseNum": 37, + "text": "The Israelites journeyed from Rameses to Succoth with about 600,000 men on foot, besides women and children." + }, + { + "verseNum": 38, + "text": "And a mixed multitude also went up with them, along with great droves of livestock, both flocks and herds." + }, + { + "verseNum": 39, + "text": "Since their dough had no leaven, the people baked what they had brought out of Egypt into unleavened loaves. For when they had been driven out of Egypt, they could not delay and had not prepared any provisions for themselves." + }, + { + "verseNum": 40, + "text": "Now the duration of the Israelites’ stay in Egypt was 430 years." + }, + { + "verseNum": 41, + "text": "At the end of the 430 years, to the very day, all the LORD’s divisions went out of the land of Egypt." + }, + { + "verseNum": 42, + "text": "Because the LORD kept a vigil that night to bring them out of the land of Egypt, this same night is to be a vigil to the LORD, to be observed by all the Israelites for the generations to come." + }, + { + "verseNum": 43, + "text": "And the LORD said to Moses and Aaron, “This is the statute of the Passover: No foreigner is to eat of it." + }, + { + "verseNum": 44, + "text": "But any slave who has been purchased may eat of it, after you have circumcised him." + }, + { + "verseNum": 45, + "text": "A temporary resident or hired hand shall not eat the Passover." + }, + { + "verseNum": 46, + "text": "It must be eaten inside one house. You are not to take any of the meat outside the house, and you may not break any of the bones." + }, + { + "verseNum": 47, + "text": "The whole congregation of Israel must celebrate it." + }, + { + "verseNum": 48, + "text": "If a foreigner resides with you and wants to celebrate the LORD’s Passover, all the males in the household must be circumcised; then he may come near to celebrate it, and he shall be like a native of the land. But no uncircumcised man may eat of it." + }, + { + "verseNum": 49, + "text": "The same law shall apply to both the native and the foreigner who resides among you.”" + }, + { + "verseNum": 50, + "text": "Then all the Israelites did this—they did just as the LORD had commanded Moses and Aaron." + }, + { + "verseNum": 51, + "text": "And on that very day the LORD brought the Israelites out of the land of Egypt by their divisions." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-13.json b/data/en_bible/BSB/EXO/chapter-13.json new file mode 100644 index 0000000..9a5584f --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-13.json @@ -0,0 +1,93 @@ +{ + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Consecrate to Me every firstborn male. The firstborn from every womb among the Israelites belongs to Me, both of man and beast.”" + }, + { + "verseNum": 3, + "text": "So Moses told the people, “Remember this day, the day you came out of Egypt, out of the house of slavery; for the LORD brought you out of it by the strength of His hand. And nothing leavened shall be eaten." + }, + { + "verseNum": 4, + "text": "Today, in the month of Abib, you are leaving." + }, + { + "verseNum": 5, + "text": "And when the LORD brings you into the land of the Canaanites, Hittites, Amorites, Hivites, and Jebusites—the land He swore to your fathers that He would give you, a land flowing with milk and honey—you shall keep this service in this month." + }, + { + "verseNum": 6, + "text": "For seven days you are to eat unleavened bread, and on the seventh day there shall be a feast to the LORD." + }, + { + "verseNum": 7, + "text": "Unleavened bread shall be eaten during those seven days. Nothing leavened may be found among you, nor shall leaven be found anywhere within your borders." + }, + { + "verseNum": 8, + "text": "And on that day you are to explain to your son, ‘This is because of what the LORD did for me when I came out of Egypt.’" + }, + { + "verseNum": 9, + "text": "It shall be a sign for you on your hand and a reminder on your forehead that the Law of the LORD is to be on your lips. For with a mighty hand the LORD brought you out of Egypt." + }, + { + "verseNum": 10, + "text": "Therefore you shall keep this statute at the appointed time year after year." + }, + { + "verseNum": 11, + "text": "And after the LORD brings you into the land of the Canaanites and gives it to you, as He swore to you and your fathers," + }, + { + "verseNum": 12, + "text": "you are to present to the LORD the firstborn male of every womb. All the firstborn males of your livestock belong to the LORD." + }, + { + "verseNum": 13, + "text": "You must redeem every firstborn donkey with a lamb, and if you do not redeem it, you are to break its neck. And every firstborn of your sons you must redeem." + }, + { + "verseNum": 14, + "text": "In the future, when your son asks you, ‘What does this mean?’ you are to tell him, ‘With a mighty hand the LORD brought us out of Egypt, out of the house of slavery." + }, + { + "verseNum": 15, + "text": "And when Pharaoh stubbornly refused to let us go, the LORD killed every firstborn in the land of Egypt, both of man and beast. This is why I sacrifice to the LORD the firstborn male of every womb, but I redeem all the firstborn of my sons.’" + }, + { + "verseNum": 16, + "text": "So it shall serve as a sign on your hand and a symbol on your forehead, for with a mighty hand the LORD brought us out of Egypt.”" + }, + { + "verseNum": 17, + "text": "When Pharaoh let the people go, God did not lead them along the road through the land of the Philistines, though it was shorter. For God said, “If the people face war, they might change their minds and return to Egypt.”" + }, + { + "verseNum": 18, + "text": "So God led the people around by the way of the wilderness toward the Red Sea. And the Israelites left the land of Egypt arrayed for battle." + }, + { + "verseNum": 19, + "text": "Moses took the bones of Joseph with him because Joseph had made the sons of Israel swear a solemn oath when he said, “God will surely attend to you, and then you must carry my bones with you from this place.”" + }, + { + "verseNum": 20, + "text": "They set out from Succoth and camped at Etham on the edge of the wilderness." + }, + { + "verseNum": 21, + "text": "And the LORD went before them in a pillar of cloud to guide their way by day, and in a pillar of fire to give them light by night, so that they could travel by day or night." + }, + { + "verseNum": 22, + "text": "Neither the pillar of cloud by day nor the pillar of fire by night left its place before the people." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-14.json b/data/en_bible/BSB/EXO/chapter-14.json new file mode 100644 index 0000000..8b0aac7 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-14.json @@ -0,0 +1,129 @@ +{ + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Tell the Israelites to turn back and encamp before Pi-hahiroth, between Migdol and the sea. You are to encamp by the sea, directly opposite Baal-zephon." + }, + { + "verseNum": 3, + "text": "For Pharaoh will say of the Israelites, ‘They are wandering the land in confusion; the wilderness has boxed them in.’" + }, + { + "verseNum": 4, + "text": "And I will harden Pharaoh’s heart so that he will pursue them. But I will gain honor by means of Pharaoh and all his army, and the Egyptians will know that I am the LORD.”\n \nSo this is what the Israelites did." + }, + { + "verseNum": 5, + "text": "When the king of Egypt was told that the people had fled, Pharaoh and his officials changed their minds about them and said, “What have we done? We have released Israel from serving us.”" + }, + { + "verseNum": 6, + "text": "So Pharaoh prepared his chariot and took his army with him." + }, + { + "verseNum": 7, + "text": "He took 600 of the best chariots, and all the other chariots of Egypt, with officers over all of them." + }, + { + "verseNum": 8, + "text": "And the LORD hardened the heart of Pharaoh king of Egypt so that he pursued the Israelites, who were marching out defiantly." + }, + { + "verseNum": 9, + "text": "The Egyptians—all Pharaoh’s horses and chariots, horsemen and troops—pursued the Israelites and overtook them as they camped by the sea near Pi-hahiroth, opposite Baal-zephon." + }, + { + "verseNum": 10, + "text": "As Pharaoh approached, the Israelites looked up and saw the Egyptians marching after them, and they were terrified and cried out to the LORD." + }, + { + "verseNum": 11, + "text": "They said to Moses, “Was it because there were no graves in Egypt that you brought us into the wilderness to die? What have you done to us by bringing us out of Egypt?" + }, + { + "verseNum": 12, + "text": "Did we not say to you in Egypt, ‘Leave us alone so that we may serve the Egyptians’? For it would have been better for us to serve the Egyptians than to die in the wilderness.”" + }, + { + "verseNum": 13, + "text": "But Moses told the people, “Do not be afraid. Stand firm and you will see the LORD’s salvation, which He will accomplish for you today; for the Egyptians you see today, you will never see again." + }, + { + "verseNum": 14, + "text": "The LORD will fight for you; you need only to be still.”" + }, + { + "verseNum": 15, + "text": "Then the LORD said to Moses, “Why are you crying out to Me? Tell the Israelites to go forward." + }, + { + "verseNum": 16, + "text": "And as for you, lift up your staff and stretch out your hand over the sea and divide it, so that the Israelites can go through the sea on dry ground." + }, + { + "verseNum": 17, + "text": "And I will harden the hearts of the Egyptians so that they will go in after them. Then I will gain honor by means of Pharaoh and all his army and chariots and horsemen." + }, + { + "verseNum": 18, + "text": "The Egyptians will know that I am the LORD when I am honored through Pharaoh, his chariots, and his horsemen.”" + }, + { + "verseNum": 19, + "text": "And the angel of God, who had gone before the camp of Israel, withdrew and went behind them. The pillar of cloud also moved from before them and stood behind them," + }, + { + "verseNum": 20, + "text": "so that it came between the camps of Egypt and Israel. The cloud was there in the darkness, but it lit up the night. So all night long neither camp went near the other." + }, + { + "verseNum": 21, + "text": "Then Moses stretched out his hand over the sea, and all that night the LORD drove back the sea with a strong east wind that turned it into dry land. So the waters were divided," + }, + { + "verseNum": 22, + "text": "and the Israelites went through the sea on dry ground, with walls of water on their right and on their left." + }, + { + "verseNum": 23, + "text": "And the Egyptians chased after them—all Pharaoh’s horses, chariots, and horsemen—and followed them into the sea." + }, + { + "verseNum": 24, + "text": "At morning watch, however, the LORD looked down on the army of the Egyptians from the pillar of fire and cloud, and He threw their camp into confusion." + }, + { + "verseNum": 25, + "text": "He caused their chariot wheels to wobble, so that they had difficulty driving. “Let us flee from the Israelites,” said the Egyptians, “for the LORD is fighting for them against Egypt!”" + }, + { + "verseNum": 26, + "text": "Then the LORD said to Moses, “Stretch out your hand over the sea, so that the waters may flow back over the Egyptians and their chariots and horsemen.”" + }, + { + "verseNum": 27, + "text": "So Moses stretched out his hand over the sea, and at daybreak the sea returned to its normal state. As the Egyptians were retreating, the LORD swept them into the sea." + }, + { + "verseNum": 28, + "text": "The waters flowed back and covered the chariots and horsemen—the entire army of Pharaoh that had chased the Israelites into the sea. Not one of them survived." + }, + { + "verseNum": 29, + "text": "But the Israelites had walked through the sea on dry ground, with walls of water on their right and on their left." + }, + { + "verseNum": 30, + "text": "That day the LORD saved Israel from the hand of the Egyptians, and Israel saw the Egyptians dead on the shore." + }, + { + "verseNum": 31, + "text": "When Israel saw the great power that the LORD had exercised over the Egyptians, the people feared the LORD and believed in Him and in His servant Moses." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-15.json b/data/en_bible/BSB/EXO/chapter-15.json new file mode 100644 index 0000000..cd67248 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-15.json @@ -0,0 +1,113 @@ +{ + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Then Moses and the Israelites sang this song to the LORD:\n \n “I will sing to the LORD,\n for He is highly exalted.\n The horse and rider\n He has thrown into the sea." + }, + { + "verseNum": 2, + "text": "The LORD is my strength and my song,\n and He has become my salvation.\n He is my God, and I will praise Him,\n my father’s God, and I will exalt Him." + }, + { + "verseNum": 3, + "text": "The LORD is a warrior,\n the LORD is His name." + }, + { + "verseNum": 4, + "text": "Pharaoh’s chariots and army\n He has cast into the sea;\n the finest of his officers\n are drowned in the Red Sea." + }, + { + "verseNum": 5, + "text": "The depths have covered them;\n they sank there like a stone." + }, + { + "verseNum": 6, + "text": "Your right hand, O LORD,\n is majestic in power;\n Your right hand, O LORD,\n has shattered the enemy." + }, + { + "verseNum": 7, + "text": "You overthrew Your adversaries\n by Your great majesty.\n You unleashed Your burning wrath;\n it consumed them like stubble." + }, + { + "verseNum": 8, + "text": "At the blast of Your nostrils\n the waters piled up;\n like a wall the currents stood firm;\n the depths congealed in the heart of the sea." + }, + { + "verseNum": 9, + "text": "The enemy declared,\n ‘I will pursue, I will overtake.\n I will divide the spoils;\n I will gorge myself on them.\n I will draw my sword;\n my hand will destroy them.’" + }, + { + "verseNum": 10, + "text": "But You blew with Your breath,\n and the sea covered them.\n They sank like lead\n in the mighty waters." + }, + { + "verseNum": 11, + "text": "Who among the gods is like You, O LORD?\n Who is like You—majestic in holiness,\n revered with praises,\n performing wonders?" + }, + { + "verseNum": 12, + "text": "You stretched out Your right hand,\n and the earth swallowed them up." + }, + { + "verseNum": 13, + "text": "With loving devotion You will lead\n the people You have redeemed;\n with Your strength You will guide them\n to Your holy dwelling." + }, + { + "verseNum": 14, + "text": "The nations will hear and tremble;\n anguish will grip the dwellers of Philistia." + }, + { + "verseNum": 15, + "text": "Then the chiefs of Edom will be dismayed;\n trembling will seize the leaders of Moab;\n those who dwell in Canaan will melt away," + }, + { + "verseNum": 16, + "text": "and terror and dread will fall on them.\n By the power of Your arm\n they will be as still as a stone\n until Your people pass by, O LORD,\n until the people You have bought pass by." + }, + { + "verseNum": 17, + "text": "You will bring them in and plant them\n on the mountain of Your inheritance—\n the place, O LORD, You have prepared for Your dwelling,\n the sanctuary, O Lord, Your hands have established." + }, + { + "verseNum": 18, + "text": "The LORD will reign forever and ever!”" + }, + { + "verseNum": 19, + "text": "For when Pharaoh’s horses, chariots, and horsemen went into the sea, the LORD brought the waters of the sea back over them. But the Israelites walked through the sea on dry ground." + }, + { + "verseNum": 20, + "text": "Then Miriam the prophetess, Aaron’s sister, took a tambourine in her hand, and all the women followed her with tambourines and dancing." + }, + { + "verseNum": 21, + "text": "And Miriam sang back to them:\n \n “Sing to the LORD,\n for He is highly exalted;\n the horse and rider\n He has thrown into the sea.”" + }, + { + "verseNum": 22, + "text": "Then Moses led Israel from the Red Sea, and they went out into the Desert of Shur. For three days they walked in the desert without finding water." + }, + { + "verseNum": 23, + "text": "And when they came to Marah, they could not drink the water there because it was bitter. (That is why it was named Marah.)" + }, + { + "verseNum": 24, + "text": "So the people grumbled against Moses, saying, “What are we to drink?”" + }, + { + "verseNum": 25, + "text": "And Moses cried out to the LORD, and the LORD showed him a log. And when he cast it into the waters, they were sweetened.\n \nThere the LORD made for them a statute and an ordinance, and there He tested them," + }, + { + "verseNum": 26, + "text": "saying, “If you will listen carefully to the voice of the LORD your God, and do what is right in His eyes, and pay attention to His commands, and keep all His statutes, then I will not bring on you any of the diseases I inflicted on the Egyptians. For I am the LORD who heals you.”" + }, + { + "verseNum": 27, + "text": "Then they came to Elim, where there were twelve springs of water and seventy palm trees, and they camped there by the waters." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-16.json b/data/en_bible/BSB/EXO/chapter-16.json new file mode 100644 index 0000000..7f0aed1 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-16.json @@ -0,0 +1,149 @@ +{ + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "On the fifteenth day of the second month after they had left the land of Egypt, the whole congregation of Israel set out from Elim and came to the Desert of Sin, which is between Elim and Sinai." + }, + { + "verseNum": 2, + "text": "And there in the desert they all grumbled against Moses and Aaron." + }, + { + "verseNum": 3, + "text": "“If only we had died by the LORD’s hand in the land of Egypt!” they said. “There we sat by pots of meat and ate our fill of bread, but you have brought us into this desert to starve this whole assembly to death!”" + }, + { + "verseNum": 4, + "text": "Then the LORD said to Moses, “Behold, I will rain down bread from heaven for you. Each day the people are to go out and gather enough for that day. In this way I will test whether or not they will follow My instructions." + }, + { + "verseNum": 5, + "text": "Then on the sixth day, when they prepare what they bring in, it will be twice as much as they gather on the other days.”" + }, + { + "verseNum": 6, + "text": "So Moses and Aaron said to all the Israelites, “This evening you will know that it was the LORD who brought you out of the land of Egypt," + }, + { + "verseNum": 7, + "text": "and in the morning you will see the LORD’s glory, because He has heard your grumbling against Him. For who are we that you should grumble against us?”" + }, + { + "verseNum": 8, + "text": "And Moses added, “The LORD will give you meat to eat this evening and bread to fill you in the morning, for He has heard your grumbling against Him. Who are we? Your grumblings are not against us but against the LORD.”" + }, + { + "verseNum": 9, + "text": "Then Moses said to Aaron, “Tell the whole congregation of Israel, ‘Come before the LORD, for He has heard your grumbling.’”" + }, + { + "verseNum": 10, + "text": "And as Aaron was speaking to the whole congregation of Israel, they looked toward the desert, and there in a cloud the glory of the LORD appeared." + }, + { + "verseNum": 11, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 12, + "text": "“I have heard the grumbling of the Israelites. Tell them, ‘At twilight you will eat meat, and in the morning you will be filled with bread. Then you will know that I am the LORD your God.’”" + }, + { + "verseNum": 13, + "text": "That evening quail came and covered the camp, and in the morning there was a layer of dew around the camp." + }, + { + "verseNum": 14, + "text": "When the layer of dew had evaporated, there were thin flakes on the desert floor, as fine as frost on the ground." + }, + { + "verseNum": 15, + "text": "When the Israelites saw it, they asked one another, “What is it?” For they did not know what it was.\n \nSo Moses told them, “It is the bread that the LORD has given you to eat." + }, + { + "verseNum": 16, + "text": "This is what the LORD has commanded: ‘Each one is to gather as much as he needs. You may take an omer for each person in your tent.’”" + }, + { + "verseNum": 17, + "text": "So the Israelites did this. Some gathered more, and some less." + }, + { + "verseNum": 18, + "text": "When they measured it by the omer, he who gathered much had no excess, and he who gathered little had no shortfall. Each one gathered as much as he needed to eat." + }, + { + "verseNum": 19, + "text": "Then Moses said to them, “No one may keep any of it until morning.”" + }, + { + "verseNum": 20, + "text": "But they did not listen to Moses; some people left part of it until morning, and it became infested with maggots and began to smell. So Moses was angry with them." + }, + { + "verseNum": 21, + "text": "Every morning each one gathered as much as was needed, and when the sun grew hot, it melted away." + }, + { + "verseNum": 22, + "text": "On the sixth day, they gathered twice as much food—two omers per person —and all the leaders of the congregation came and reported this to Moses." + }, + { + "verseNum": 23, + "text": "He told them, “This is what the LORD has said: ‘Tomorrow is to be a day of complete rest, a holy Sabbath to the LORD. So bake what you want to bake, and boil what you want to boil. Then set aside whatever remains and keep it until morning.’”" + }, + { + "verseNum": 24, + "text": "So they set it aside until morning as Moses had commanded, and it did not smell or contain any maggots." + }, + { + "verseNum": 25, + "text": "“Eat it today,” Moses said, “because today is a Sabbath to the LORD. Today you will not find anything in the field." + }, + { + "verseNum": 26, + "text": "For six days you may gather, but on the seventh day, the Sabbath, it will not be there.”" + }, + { + "verseNum": 27, + "text": "Yet on the seventh day some of the people went out to gather, but they did not find anything." + }, + { + "verseNum": 28, + "text": "Then the LORD said to Moses, “How long will you refuse to keep My commandments and instructions?" + }, + { + "verseNum": 29, + "text": "Understand that the LORD has given you the Sabbath; that is why on the sixth day He will give you bread for two days. On the seventh day, everyone must stay where he is; no one may leave his place.”" + }, + { + "verseNum": 30, + "text": "So the people rested on the seventh day." + }, + { + "verseNum": 31, + "text": "Now the house of Israel called the bread manna. It was white like coriander seed and tasted like wafers made with honey." + }, + { + "verseNum": 32, + "text": "Moses said, “This is what the LORD has commanded: ‘Keep an omer of manna for the generations to come, so that they may see the bread I fed you in the wilderness when I brought you out of the land of Egypt.’”" + }, + { + "verseNum": 33, + "text": "So Moses told Aaron, “Take a jar and fill it with an omer of manna. Then place it before the LORD to be preserved for the generations to come.”" + }, + { + "verseNum": 34, + "text": "And Aaron placed it in front of the Testimony, to be preserved just as the LORD had commanded Moses." + }, + { + "verseNum": 35, + "text": "The Israelites ate manna forty years, until they came to a land where they could settle; they ate manna until they reached the border of Canaan." + }, + { + "verseNum": 36, + "text": "(Now an omer is a tenth of an ephah.)" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-17.json b/data/en_bible/BSB/EXO/chapter-17.json new file mode 100644 index 0000000..14a2b77 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-17.json @@ -0,0 +1,69 @@ +{ + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Then the whole congregation of Israel left the Desert of Sin, moving from place to place as the LORD commanded. They camped at Rephidim, but there was no water for the people to drink." + }, + { + "verseNum": 2, + "text": "So the people contended with Moses, “Give us water to drink.”\n \n“Why do you contend with me?” Moses replied. “Why do you test the LORD?”" + }, + { + "verseNum": 3, + "text": "But the people thirsted for water there, and they grumbled against Moses: “Why have you brought us out of Egypt—to make us and our children and livestock die of thirst?”" + }, + { + "verseNum": 4, + "text": "Then Moses cried out to the LORD, “What should I do with these people? A little more and they will stone me!”" + }, + { + "verseNum": 5, + "text": "And the LORD said to Moses, “Walk on ahead of the people and take some of the elders of Israel with you. Take along in your hand the staff with which you struck the Nile, and go." + }, + { + "verseNum": 6, + "text": "Behold, I will stand there before you by the rock at Horeb. And when you strike the rock, water will come out of it for the people to drink.”\n \nSo Moses did this in the sight of the elders of Israel." + }, + { + "verseNum": 7, + "text": "He named the place Massah and Meribah because the Israelites quarreled, and because they tested the LORD, saying, “Is the LORD among us or not?”" + }, + { + "verseNum": 8, + "text": "After this, the Amalekites came and attacked the Israelites at Rephidim." + }, + { + "verseNum": 9, + "text": "So Moses said to Joshua, “Choose some of our men and go out to fight the Amalekites. Tomorrow I will stand on the hilltop with the staff of God in my hand.”" + }, + { + "verseNum": 10, + "text": "Joshua did as Moses had instructed him and fought against the Amalekites, while Moses, Aaron, and Hur went up to the top of the hill." + }, + { + "verseNum": 11, + "text": "As long as Moses held up his hands, Israel prevailed; but when he lowered them, Amalek prevailed." + }, + { + "verseNum": 12, + "text": "When Moses’ hands grew heavy, they took a stone and put it under him, and he sat on it. Then Aaron and Hur held his hands up, one on each side, so that his hands remained steady until the sun went down." + }, + { + "verseNum": 13, + "text": "So Joshua overwhelmed Amalek and his army with the sword." + }, + { + "verseNum": 14, + "text": "Then the LORD said to Moses, “Write this on a scroll as a reminder and recite it to Joshua, because I will utterly blot out the memory of Amalek from under heaven.”" + }, + { + "verseNum": 15, + "text": "And Moses built an altar and named it The LORD Is My Banner." + }, + { + "verseNum": 16, + "text": "“Indeed,” he said, “a hand was lifted up toward the throne of the LORD. The LORD will war against Amalek from generation to generation.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-18.json b/data/en_bible/BSB/EXO/chapter-18.json new file mode 100644 index 0000000..86cd30e --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-18.json @@ -0,0 +1,113 @@ +{ + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Now Moses’ father-in-law Jethro, the priest of Midian, heard about all that God had done for Moses and His people Israel, and how the LORD had brought Israel out of Egypt." + }, + { + "verseNum": 2, + "text": "After Moses had sent back his wife Zipporah, his father-in-law Jethro had received her," + }, + { + "verseNum": 3, + "text": "along with her two sons. One son was named Gershom, for Moses had said, “I have been a foreigner in a foreign land.”" + }, + { + "verseNum": 4, + "text": "The other son was named Eliezer, for Moses had said, “The God of my father was my helper and delivered me from the sword of Pharaoh.”" + }, + { + "verseNum": 5, + "text": "Moses’ father-in-law Jethro, along with Moses’ wife and sons, came to him in the desert, where he was encamped at the mountain of God." + }, + { + "verseNum": 6, + "text": "He sent word to Moses, “I, your father-in-law Jethro, am coming to you with your wife and her two sons.”" + }, + { + "verseNum": 7, + "text": "So Moses went out to meet his father-in-law and bowed down and kissed him. They greeted each other and went into the tent." + }, + { + "verseNum": 8, + "text": "Then Moses recounted to his father-in-law all that the LORD had done to Pharaoh and the Egyptians for Israel’s sake, all the hardships they had encountered along the way, and how the LORD had delivered them." + }, + { + "verseNum": 9, + "text": "And Jethro rejoiced over all the good things the LORD had done for Israel, whom He had rescued from the hand of the Egyptians." + }, + { + "verseNum": 10, + "text": "Jethro declared, “Blessed be the LORD, who has delivered you from the hand of the Egyptians and of Pharaoh, and who has delivered the people from the hand of the Egyptians." + }, + { + "verseNum": 11, + "text": "Now I know that the LORD is greater than all other gods, for He did this when they treated Israel with arrogance.”" + }, + { + "verseNum": 12, + "text": "Then Moses’ father-in-law Jethro brought a burnt offering and sacrifices to God, and Aaron came with all the elders of Israel to eat bread with Moses’ father-in-law in the presence of God." + }, + { + "verseNum": 13, + "text": "The next day Moses took his seat to judge the people, and they stood around him from morning until evening." + }, + { + "verseNum": 14, + "text": "When his father-in-law saw all that Moses was doing for the people, he asked, “What is this that you are doing for the people? Why do you sit alone as judge, with all the people standing around you from morning till evening?”" + }, + { + "verseNum": 15, + "text": "“Because the people come to me to inquire of God,” Moses replied." + }, + { + "verseNum": 16, + "text": "“Whenever they have a dispute, it is brought to me to judge between one man and another, and I make known to them the statutes and laws of God.”" + }, + { + "verseNum": 17, + "text": "But Moses’ father-in-law said to him, “What you are doing is not good." + }, + { + "verseNum": 18, + "text": "Surely you and these people with you will wear yourselves out, because the task is too heavy for you. You cannot handle it alone." + }, + { + "verseNum": 19, + "text": "Now listen to me; I will give you some advice, and may God be with you. You must be the people’s representative before God and bring their causes to Him." + }, + { + "verseNum": 20, + "text": "Teach them the statutes and laws, and show them the way to live and the work they must do." + }, + { + "verseNum": 21, + "text": "Furthermore, select capable men from among the people—God-fearing, trustworthy men who are averse to dishonest gain. Appoint them over the people as leaders of thousands, of hundreds, of fifties, and of tens." + }, + { + "verseNum": 22, + "text": "Have these men judge the people at all times. Then they can bring you any major issue, but all minor cases they can judge on their own, so that your load may be lightened as they share it with you." + }, + { + "verseNum": 23, + "text": "If you follow this advice and God so directs you, then you will be able to endure, and all these people can go home in peace.”" + }, + { + "verseNum": 24, + "text": "Moses listened to his father-in-law and did everything he said." + }, + { + "verseNum": 25, + "text": "So Moses chose capable men from all Israel and made them heads over the people as leaders of thousands, of hundreds, of fifties, and of tens." + }, + { + "verseNum": 26, + "text": "And they judged the people at all times; they would bring the difficult cases to Moses, but any minor issue they would judge themselves." + }, + { + "verseNum": 27, + "text": "Then Moses sent his father-in-law on his way, and Jethro returned to his own land." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-19.json b/data/en_bible/BSB/EXO/chapter-19.json new file mode 100644 index 0000000..a8fb6f6 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-19.json @@ -0,0 +1,105 @@ +{ + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "In the third month, on the same day of the month that the Israelites had left the land of Egypt, they came to the Wilderness of Sinai." + }, + { + "verseNum": 2, + "text": "After they had set out from Rephidim, they entered the Wilderness of Sinai, and Israel camped there in front of the mountain." + }, + { + "verseNum": 3, + "text": "Then Moses went up to God, and the LORD called to him from the mountain, “This is what you are to tell the house of Jacob and explain to the sons of Israel:" + }, + { + "verseNum": 4, + "text": "‘You have seen for yourselves what I did to Egypt, and how I carried you on eagles’ wings and brought you to Myself." + }, + { + "verseNum": 5, + "text": "Now if you will indeed obey My voice and keep My covenant, you will be My treasured possession out of all the nations—for the whole earth is Mine." + }, + { + "verseNum": 6, + "text": "And unto Me you shall be a kingdom of priests and a holy nation.’ These are the words that you are to speak to the Israelites.”" + }, + { + "verseNum": 7, + "text": "So Moses went back and summoned the elders of the people and set before them all these words that the LORD had commanded him." + }, + { + "verseNum": 8, + "text": "And all the people answered together, “We will do everything that the LORD has spoken.”\n \nSo Moses brought their words back to the LORD." + }, + { + "verseNum": 9, + "text": "The LORD said to Moses, “Behold, I will come to you in a dense cloud, so that the people will hear when I speak with you, and they will always put their trust in you.”\n \nAnd Moses relayed to the LORD what the people had said." + }, + { + "verseNum": 10, + "text": "Then the LORD said to Moses, “Go to the people and consecrate them today and tomorrow. They must wash their clothes" + }, + { + "verseNum": 11, + "text": "and be prepared by the third day, for on the third day the LORD will come down on Mount Sinai in the sight of all the people." + }, + { + "verseNum": 12, + "text": "And you are to set up a boundary for the people around the mountain and tell them, ‘Be careful not to go up on the mountain or touch its base. Whoever touches the mountain shall surely be put to death." + }, + { + "verseNum": 13, + "text": "No hand shall touch him, but he shall surely be stoned or shot with arrows—whether man or beast, he must not live.’\n \nOnly when the ram’s horn sounds a long blast may they approach the mountain.”" + }, + { + "verseNum": 14, + "text": "When Moses came down from the mountain to the people, he consecrated them, and they washed their clothes." + }, + { + "verseNum": 15, + "text": "“Be prepared for the third day,” he said to the people. “Do not draw near to a woman.”" + }, + { + "verseNum": 16, + "text": "On the third day, when morning came, there was thunder and lightning. A thick cloud was upon the mountain, and a very loud blast of the ram’s horn went out, so that all the people in the camp trembled." + }, + { + "verseNum": 17, + "text": "Then Moses brought the people out of the camp to meet with God, and they stood at the foot of the mountain." + }, + { + "verseNum": 18, + "text": "Mount Sinai was completely enveloped in smoke, because the LORD had descended on it in fire. And the smoke rose like the smoke of a furnace, and the whole mountain quaked violently." + }, + { + "verseNum": 19, + "text": "And as the sound of the ram’s horn grew louder and louder, Moses spoke and God answered him in the thunder." + }, + { + "verseNum": 20, + "text": "The LORD descended to the top of Mount Sinai and called Moses to the summit. So Moses went up," + }, + { + "verseNum": 21, + "text": "and the LORD said to him, “Go down and warn the people not to break through to see the LORD, lest many of them perish." + }, + { + "verseNum": 22, + "text": "Even the priests who approach the LORD must consecrate themselves, or the LORD will break out against them.”" + }, + { + "verseNum": 23, + "text": "But Moses said to the LORD, “The people cannot come up Mount Sinai, for You solemnly warned us, ‘Put a boundary around the mountain and set it apart as holy.’”" + }, + { + "verseNum": 24, + "text": "And the LORD replied, “Go down and bring Aaron with you. But the priests and the people must not break through to come up to the LORD, or He will break out against them.”" + }, + { + "verseNum": 25, + "text": "So Moses went down to the people and spoke to them." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-2.json b/data/en_bible/BSB/EXO/chapter-2.json new file mode 100644 index 0000000..9a81660 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-2.json @@ -0,0 +1,105 @@ +{ + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Now a man of the house of Levi married a daughter of Levi," + }, + { + "verseNum": 2, + "text": "and she conceived and gave birth to a son. When she saw that he was a beautiful child, she hid him for three months." + }, + { + "verseNum": 3, + "text": "But when she could no longer hide him, she got him a papyrus basket and coated it with tar and pitch. Then she placed the child in the basket and set it among the reeds along the bank of the Nile." + }, + { + "verseNum": 4, + "text": "And his sister stood at a distance to see what would happen to him." + }, + { + "verseNum": 5, + "text": "Soon the daughter of Pharaoh went down to bathe in the Nile, and her attendants were walking along the riverbank. And when she saw the basket among the reeds, she sent her maidservant to retrieve it." + }, + { + "verseNum": 6, + "text": "When she opened it, she saw the child, and behold, the little boy was crying. So she had compassion on him and said, “This is one of the Hebrew children.”" + }, + { + "verseNum": 7, + "text": "Then his sister said to Pharaoh’s daughter, “Shall I go and call one of the Hebrew women to nurse the child for you?”" + }, + { + "verseNum": 8, + "text": "“Go ahead,” Pharaoh’s daughter told her. And the girl went and called the boy’s mother." + }, + { + "verseNum": 9, + "text": "Pharaoh’s daughter said to her, “Take this child and nurse him for me, and I will pay your wages.” So the woman took the boy and nursed him." + }, + { + "verseNum": 10, + "text": "When the child had grown older, she brought him to Pharaoh’s daughter, and he became her son. She named him Moses and explained, “I drew him out of the water.”" + }, + { + "verseNum": 11, + "text": "One day, after Moses had grown up, he went out to his own people and observed their hard labor. He saw an Egyptian beating a Hebrew, one of his own people." + }, + { + "verseNum": 12, + "text": "After looking this way and that and seeing no one, he struck down the Egyptian and hid his body in the sand." + }, + { + "verseNum": 13, + "text": "The next day Moses went out and saw two Hebrews fighting. He asked the one in the wrong, “Why are you attacking your companion?”" + }, + { + "verseNum": 14, + "text": "But the man replied, “Who made you ruler and judge over us? Are you planning to kill me as you killed the Egyptian?”\n \nThen Moses was afraid and thought, “This thing I have done has surely become known.”" + }, + { + "verseNum": 15, + "text": "When Pharaoh heard about this matter, he sought to kill Moses. But Moses fled from Pharaoh and settled in the land of Midian, where he sat down beside a well." + }, + { + "verseNum": 16, + "text": "Now the priest of Midian had seven daughters, and they came to draw water and fill the troughs to water their father’s flock." + }, + { + "verseNum": 17, + "text": "And when some shepherds came along and drove them away, Moses rose up to help them and watered their flock." + }, + { + "verseNum": 18, + "text": "When the daughters returned to their father Reuel, he asked them, “Why have you returned so early today?”" + }, + { + "verseNum": 19, + "text": "“An Egyptian rescued us from the shepherds,” they replied. “He even drew water for us and watered the flock.”" + }, + { + "verseNum": 20, + "text": "“So where is he?” their father asked. “Why did you leave the man behind? Invite him to have something to eat.”" + }, + { + "verseNum": 21, + "text": "Moses agreed to stay with the man, and he gave his daughter Zipporah to Moses in marriage." + }, + { + "verseNum": 22, + "text": "And she gave birth to a son, and Moses named him Gershom, saying, “I have become a foreigner in a foreign land.”" + }, + { + "verseNum": 23, + "text": "After a long time, the king of Egypt died. The Israelites groaned and cried out under their burden of slavery, and their cry for deliverance from bondage ascended to God." + }, + { + "verseNum": 24, + "text": "So God heard their groaning, and He remembered His covenant with Abraham, Isaac, and Jacob." + }, + { + "verseNum": 25, + "text": "God saw the Israelites and took notice." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-20.json b/data/en_bible/BSB/EXO/chapter-20.json new file mode 100644 index 0000000..b7754c0 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-20.json @@ -0,0 +1,109 @@ +{ + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "And God spoke all these words:" + }, + { + "verseNum": 2, + "text": "“I am the LORD your God, who brought you out of the land of Egypt, out of the house of slavery." + }, + { + "verseNum": 3, + "text": "You shall have no other gods before Me." + }, + { + "verseNum": 4, + "text": "You shall not make for yourself an idol in the form of anything in the heavens above, on the earth below, or in the waters beneath." + }, + { + "verseNum": 5, + "text": "You shall not bow down to them or worship them; for I, the LORD your God, am a jealous God, visiting the iniquity of the fathers on their children to the third and fourth generations of those who hate Me," + }, + { + "verseNum": 6, + "text": "but showing loving devotion to a thousand generations of those who love Me and keep My commandments." + }, + { + "verseNum": 7, + "text": "You shall not take the name of the LORD your God in vain, for the LORD will not leave anyone unpunished who takes His name in vain." + }, + { + "verseNum": 8, + "text": "Remember the Sabbath day by keeping it holy." + }, + { + "verseNum": 9, + "text": "Six days you shall labor and do all your work," + }, + { + "verseNum": 10, + "text": "but the seventh day is a Sabbath to the LORD your God, on which you must not do any work—neither you, nor your son or daughter, nor your manservant or maidservant or livestock, nor the foreigner within your gates." + }, + { + "verseNum": 11, + "text": "For in six days the LORD made the heavens and the earth and the sea and all that is in them, but on the seventh day He rested. Therefore the LORD blessed the Sabbath day and set it apart as holy." + }, + { + "verseNum": 12, + "text": "Honor your father and mother, so that your days may be long in the land that the LORD your God is giving you." + }, + { + "verseNum": 13, + "text": "You shall not murder." + }, + { + "verseNum": 14, + "text": "You shall not commit adultery." + }, + { + "verseNum": 15, + "text": "You shall not steal." + }, + { + "verseNum": 16, + "text": "You shall not bear false witness against your neighbor." + }, + { + "verseNum": 17, + "text": "You shall not covet your neighbor’s house. You shall not covet your neighbor’s wife, or his manservant or maidservant, or his ox or donkey, or anything that belongs to your neighbor.”" + }, + { + "verseNum": 18, + "text": "When all the people witnessed the thunder and lightning, the sounding of the ram’s horn, and the mountain enveloped in smoke, they trembled and stood at a distance." + }, + { + "verseNum": 19, + "text": "“Speak to us yourself and we will listen,” they said to Moses. “But do not let God speak to us, or we will die.”" + }, + { + "verseNum": 20, + "text": "“Do not be afraid,” Moses replied. “For God has come to test you, so that the fear of Him may be before you, to keep you from sinning.”" + }, + { + "verseNum": 21, + "text": "And the people stood at a distance as Moses approached the thick darkness where God was." + }, + { + "verseNum": 22, + "text": "Then the LORD said to Moses, “This is what you are to tell the Israelites: ‘You have seen for yourselves that I have spoken to you from heaven." + }, + { + "verseNum": 23, + "text": "You are not to make any gods alongside Me; you are not to make for yourselves gods of silver or gold." + }, + { + "verseNum": 24, + "text": "You are to make for Me an altar of earth, and sacrifice on it your burnt offerings and peace offerings, your sheep and goats and cattle. In every place where I cause My name to be remembered, I will come to you and bless you." + }, + { + "verseNum": 25, + "text": "Now if you make an altar of stones for Me, you must not build it with stones shaped by tools; for if you use a chisel on it, you will defile it." + }, + { + "verseNum": 26, + "text": "And you must not go up to My altar on steps, lest your nakedness be exposed on it.’" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-21.json b/data/en_bible/BSB/EXO/chapter-21.json new file mode 100644 index 0000000..8ab3b43 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-21.json @@ -0,0 +1,149 @@ +{ + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "“These are the ordinances that you are to set before them:" + }, + { + "verseNum": 2, + "text": "If you buy a Hebrew servant, he is to serve you for six years. But in the seventh year, he shall go free without paying anything." + }, + { + "verseNum": 3, + "text": "If he arrived alone, he is to leave alone; if he arrived with a wife, she is to leave with him." + }, + { + "verseNum": 4, + "text": "If his master gives him a wife and she bears him sons or daughters, the woman and her children shall belong to her master, and only the man shall go free." + }, + { + "verseNum": 5, + "text": "But if the servant declares, ‘I love my master and my wife and children; I do not want to go free,’" + }, + { + "verseNum": 6, + "text": "then his master is to bring him before the judges. And he shall take him to the door or doorpost and pierce his ear with an awl. Then he shall serve his master for life." + }, + { + "verseNum": 7, + "text": "And if a man sells his daughter as a servant, she is not to go free as the menservants do." + }, + { + "verseNum": 8, + "text": "If she is displeasing in the eyes of her master who had designated her for himself, he must allow her to be redeemed. He has no right to sell her to foreigners, since he has broken faith with her." + }, + { + "verseNum": 9, + "text": "And if he chooses her for his son, he must deal with her as with a daughter." + }, + { + "verseNum": 10, + "text": "If he takes another wife, he must not reduce the food, clothing, or marital rights of his first wife." + }, + { + "verseNum": 11, + "text": "If, however, he does not provide her with these three things, she is free to go without monetary payment." + }, + { + "verseNum": 12, + "text": "Whoever strikes and kills a man must surely be put to death." + }, + { + "verseNum": 13, + "text": "If, however, he did not lie in wait, but God allowed it to happen, then I will appoint for you a place where he may flee." + }, + { + "verseNum": 14, + "text": "But if a man schemes and acts willfully against his neighbor to kill him, you must take him away from My altar to be put to death." + }, + { + "verseNum": 15, + "text": "Whoever strikes his father or mother must surely be put to death." + }, + { + "verseNum": 16, + "text": "Whoever kidnaps another man must be put to death, whether he sells him or the man is found in his possession." + }, + { + "verseNum": 17, + "text": "Anyone who curses his father or mother must surely be put to death." + }, + { + "verseNum": 18, + "text": "If men are quarreling and one strikes the other with a stone or a fist, and he does not die but is confined to bed," + }, + { + "verseNum": 19, + "text": "then the one who struck him shall go unpunished, as long as the other can get up and walk around outside with his staff. Nevertheless, he must compensate the man for his lost work and see that he is completely healed." + }, + { + "verseNum": 20, + "text": "If a man strikes his manservant or maidservant with a rod, and the servant dies by his hand, he shall surely be punished." + }, + { + "verseNum": 21, + "text": "However, if the servant gets up after a day or two, the owner shall not be punished, since the servant is his property." + }, + { + "verseNum": 22, + "text": "If men who are fighting strike a pregnant woman and her child is born prematurely, but there is no further injury, he shall surely be fined as the woman’s husband demands and as the court allows." + }, + { + "verseNum": 23, + "text": "But if a serious injury results, then you must require a life for a life—" + }, + { + "verseNum": 24, + "text": "eye for eye, tooth for tooth, hand for hand, foot for foot," + }, + { + "verseNum": 25, + "text": "burn for burn, wound for wound, and stripe for stripe." + }, + { + "verseNum": 26, + "text": "If a man strikes and blinds the eye of his manservant or maidservant, he must let the servant go free as compensation for the eye." + }, + { + "verseNum": 27, + "text": "And if he knocks out the tooth of his manservant or maidservant, he must let the servant go free as compensation for the tooth." + }, + { + "verseNum": 28, + "text": "If an ox gores a man or woman to death, the ox must surely be stoned, and its meat must not be eaten. But the owner of the ox shall not be held responsible." + }, + { + "verseNum": 29, + "text": "But if the ox has a habit of goring, and its owner has been warned yet does not restrain it, and it kills a man or woman, then the ox must be stoned and its owner must also be put to death." + }, + { + "verseNum": 30, + "text": "If payment is demanded of him instead, he may redeem his life by paying the full amount demanded of him." + }, + { + "verseNum": 31, + "text": "If the ox gores a son or a daughter, it shall be done to him according to the same rule." + }, + { + "verseNum": 32, + "text": "If the ox gores a manservant or maidservant, the owner must pay thirty shekels of silver to the master of that servant, and the ox must be stoned." + }, + { + "verseNum": 33, + "text": "If a man opens or digs a pit and fails to cover it, and an ox or a donkey falls into it," + }, + { + "verseNum": 34, + "text": "the owner of the pit shall make restitution; he must pay its owner, and the dead animal will be his." + }, + { + "verseNum": 35, + "text": "If a man’s ox injures his neighbor’s ox and it dies, they must sell the live one and divide the proceeds; they also must divide the dead animal." + }, + { + "verseNum": 36, + "text": "But if it was known that the ox had a habit of goring, yet its owner failed to restrain it, he shall pay full compensation, ox for ox, and the dead animal will be his." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-22.json b/data/en_bible/BSB/EXO/chapter-22.json new file mode 100644 index 0000000..6dd090f --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-22.json @@ -0,0 +1,129 @@ +{ + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "“If a man steals an ox or a sheep and slaughters or sells it, he must repay five oxen for an ox and four sheep for a sheep." + }, + { + "verseNum": 2, + "text": "If a thief is caught breaking in and is beaten to death, no one shall be guilty of bloodshed." + }, + { + "verseNum": 3, + "text": "But if it happens after sunrise, there is guilt for his bloodshed.\n \nA thief must make full restitution; if he has nothing, he himself shall be sold for his theft." + }, + { + "verseNum": 4, + "text": "If what was stolen is actually found alive in his possession—whether ox or donkey or sheep—he must pay back double." + }, + { + "verseNum": 5, + "text": "If a man grazes his livestock in a field or vineyard and allows them to stray so that they graze in someone else’s field, he must make restitution from the best of his own field or vineyard." + }, + { + "verseNum": 6, + "text": "If a fire breaks out and spreads to thornbushes so that it consumes stacked or standing grain, or the whole field, the one who started the fire must make full restitution." + }, + { + "verseNum": 7, + "text": "If a man gives his neighbor money or goods for safekeeping and they are stolen from the neighbor’s house, the thief, if caught, must pay back double." + }, + { + "verseNum": 8, + "text": "If the thief is not found, the owner of the house must appear before the judges to determine whether he has taken his neighbor’s property." + }, + { + "verseNum": 9, + "text": "In all cases of illegal possession of an ox, a donkey, a sheep, a garment, or any lost item that someone claims, ‘This is mine,’ both parties shall bring their cases before the judges. The one whom the judges find guilty must pay back double to his neighbor." + }, + { + "verseNum": 10, + "text": "If a man gives a donkey, an ox, a sheep, or any other animal to be cared for by his neighbor, but it dies or is injured or stolen while no one is watching," + }, + { + "verseNum": 11, + "text": "an oath before the LORD shall be made between the parties to determine whether or not the man has taken his neighbor’s property. The owner must accept the oath and require no restitution." + }, + { + "verseNum": 12, + "text": "But if the animal was actually stolen from the neighbor, he must make restitution to the owner." + }, + { + "verseNum": 13, + "text": "If the animal was torn to pieces, he shall bring it as evidence; he need not make restitution for the torn carcass." + }, + { + "verseNum": 14, + "text": "If a man borrows an animal from his neighbor and it is injured or dies while its owner is not present, he must make full restitution." + }, + { + "verseNum": 15, + "text": "If the owner was present, no restitution is required. If the animal was rented, the fee covers the loss." + }, + { + "verseNum": 16, + "text": "If a man seduces a virgin who is not pledged in marriage and sleeps with her, he must pay the full dowry for her to be his wife." + }, + { + "verseNum": 17, + "text": "If her father absolutely refuses to give her to him, the man still must pay an amount comparable to the bridal price of a virgin." + }, + { + "verseNum": 18, + "text": "You must not allow a sorceress to live." + }, + { + "verseNum": 19, + "text": "Whoever lies with an animal must surely be put to death." + }, + { + "verseNum": 20, + "text": "If anyone sacrifices to any god other than the LORD alone, he must be set apart for destruction." + }, + { + "verseNum": 21, + "text": "You must not exploit or oppress a foreign resident, for you yourselves were foreigners in the land of Egypt." + }, + { + "verseNum": 22, + "text": "You must not mistreat any widow or orphan." + }, + { + "verseNum": 23, + "text": "If you do mistreat them, and they cry out to Me in distress, I will surely hear their cry." + }, + { + "verseNum": 24, + "text": "My anger will be kindled, and I will kill you with the sword; then your wives will become widows and your children will be fatherless." + }, + { + "verseNum": 25, + "text": "If you lend money to one of My people among you who is poor, you must not act as a creditor to him; you are not to charge him interest." + }, + { + "verseNum": 26, + "text": "If you take your neighbor’s cloak as collateral, return it to him by sunset," + }, + { + "verseNum": 27, + "text": "because his cloak is the only covering he has for his body. What else will he sleep in? And if he cries out to Me, I will hear, for I am compassionate." + }, + { + "verseNum": 28, + "text": "You must not blaspheme God or curse the ruler of your people." + }, + { + "verseNum": 29, + "text": "You must not hold back offerings from your granaries or vats. You are to give Me the firstborn of your sons." + }, + { + "verseNum": 30, + "text": "You shall do likewise with your cattle and your sheep. Let them stay with their mothers for seven days, but on the eighth day you are to give them to Me." + }, + { + "verseNum": 31, + "text": "You are to be My holy people. You must not eat the meat of a mauled animal found in the field; you are to throw it to the dogs." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-23.json b/data/en_bible/BSB/EXO/chapter-23.json new file mode 100644 index 0000000..a7179e3 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-23.json @@ -0,0 +1,137 @@ +{ + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "“You shall not spread a false report. Do not join the wicked by being a malicious witness." + }, + { + "verseNum": 2, + "text": "You shall not follow the crowd in wrongdoing. When you testify in a lawsuit, do not pervert justice by siding with the crowd." + }, + { + "verseNum": 3, + "text": "And do not show favoritism to a poor man in his lawsuit." + }, + { + "verseNum": 4, + "text": "If you encounter your enemy’s stray ox or donkey, you must return it to him." + }, + { + "verseNum": 5, + "text": "If you see the donkey of one who hates you fallen under its load, do not leave it there; you must help him with it." + }, + { + "verseNum": 6, + "text": "You shall not deny justice to the poor in their lawsuits." + }, + { + "verseNum": 7, + "text": "Stay far away from a false accusation. Do not kill the innocent or the just, for I will not acquit the guilty." + }, + { + "verseNum": 8, + "text": "Do not accept a bribe, for a bribe blinds those who see and twists the words of the righteous." + }, + { + "verseNum": 9, + "text": "Do not oppress a foreign resident, since you yourselves know how it feels to be foreigners; for you were foreigners in the land of Egypt." + }, + { + "verseNum": 10, + "text": "For six years you are to sow your land and gather its produce," + }, + { + "verseNum": 11, + "text": "but in the seventh year you must let it rest and lie fallow, so that the poor among your people may eat from the field and the wild animals may consume what they leave. Do the same with your vineyard and olive grove." + }, + { + "verseNum": 12, + "text": "For six days you are to do your work, but on the seventh day you must cease, so that your ox and your donkey may rest and the son of your maidservant may be refreshed, as well as the foreign resident." + }, + { + "verseNum": 13, + "text": "Pay close attention to everything I have said to you. You must not invoke the names of other gods; they must not be heard on your lips." + }, + { + "verseNum": 14, + "text": "Three times a year you are to celebrate a feast to Me." + }, + { + "verseNum": 15, + "text": "You are to keep the Feast of Unleavened Bread as I commanded you: At the appointed time in the month of Abib you are to eat unleavened bread for seven days, because that was the month you came out of Egypt. No one may appear before Me empty-handed." + }, + { + "verseNum": 16, + "text": "You are also to keep the Feast of Harvest with the firstfruits of the produce from what you sow in the field.\n \nAnd keep the Feast of Ingathering at the end of the year, when you gather your produce from the field." + }, + { + "verseNum": 17, + "text": "Three times a year all your males are to appear before the Lord GOD." + }, + { + "verseNum": 18, + "text": "You must not offer the blood of My sacrifices with anything leavened, nor may the fat of My feast remain until morning." + }, + { + "verseNum": 19, + "text": "Bring the best of the firstfruits of your soil to the house of the LORD your God.\n \nYou must not cook a young goat in its mother’s milk." + }, + { + "verseNum": 20, + "text": "Behold, I am sending an angel before you to protect you along the way and to bring you to the place I have prepared." + }, + { + "verseNum": 21, + "text": "Pay attention to him and listen to his voice; do not defy him, for he will not forgive rebellion, since My Name is in him." + }, + { + "verseNum": 22, + "text": "But if you will listen carefully to his voice and do everything I say, I will be an enemy to your enemies and a foe to your foes." + }, + { + "verseNum": 23, + "text": "For My angel will go before you and bring you into the land of the Amorites, Hittites, Perizzites, Canaanites, Hivites, and Jebusites, and I will annihilate them." + }, + { + "verseNum": 24, + "text": "You must not bow down to their gods or serve them or follow their practices. Instead, you are to demolish them and smash their sacred stones to pieces." + }, + { + "verseNum": 25, + "text": "So you shall serve the LORD your God, and He will bless your bread and your water. And I will take away sickness from among you." + }, + { + "verseNum": 26, + "text": "No woman in your land will miscarry or be barren; I will fulfill the number of your days." + }, + { + "verseNum": 27, + "text": "I will send My terror ahead of you and throw into confusion every nation you encounter. I will make all your enemies turn and run." + }, + { + "verseNum": 28, + "text": "I will send the hornet before you to drive the Hivites and Canaanites and Hittites out of your way." + }, + { + "verseNum": 29, + "text": "I will not drive them out before you in a single year; otherwise the land would become desolate and wild animals would multiply against you." + }, + { + "verseNum": 30, + "text": "Little by little I will drive them out ahead of you, until you become fruitful and possess the land." + }, + { + "verseNum": 31, + "text": "And I will establish your borders from the Red Sea to the Sea of the Philistines, and from the desert to the Euphrates. For I will deliver the inhabitants into your hand, and you will drive them out before you." + }, + { + "verseNum": 32, + "text": "You shall make no covenant with them or with their gods." + }, + { + "verseNum": 33, + "text": "They must not remain in your land, lest they cause you to sin against Me. For if you serve their gods, it will surely be a snare to you.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-24.json b/data/en_bible/BSB/EXO/chapter-24.json new file mode 100644 index 0000000..e8a3b75 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-24.json @@ -0,0 +1,77 @@ +{ + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Come up to the LORD—you and Aaron, Nadab and Abihu, and seventy of Israel’s elders—and you are to worship at a distance." + }, + { + "verseNum": 2, + "text": "Moses alone shall approach the LORD, but the others must not come near. And the people may not go up with him.”" + }, + { + "verseNum": 3, + "text": "When Moses came and told the people all the words and ordinances of the LORD, they all responded with one voice: “All the words that the LORD has spoken, we will do.”" + }, + { + "verseNum": 4, + "text": "And Moses wrote down all the words of the LORD.\n \nEarly the next morning he got up and built an altar at the base of the mountain, along with twelve pillars for the twelve tribes of Israel." + }, + { + "verseNum": 5, + "text": "Then he sent out some young men of Israel, and they offered burnt offerings and sacrificed young bulls as peace offerings to the LORD." + }, + { + "verseNum": 6, + "text": "Moses took half of the blood and put it in bowls, and the other half he sprinkled on the altar." + }, + { + "verseNum": 7, + "text": "Then he took the Book of the Covenant and read it to the people, who replied, “All that the LORD has spoken we will do, and we will be obedient.”" + }, + { + "verseNum": 8, + "text": "So Moses took the blood, sprinkled it on the people, and said, “This is the blood of the covenant that the LORD has made with you in accordance with all these words.”" + }, + { + "verseNum": 9, + "text": "Then Moses went up with Aaron, Nadab and Abihu, and seventy of the elders of Israel," + }, + { + "verseNum": 10, + "text": "and they saw the God of Israel. Under His feet was a work like a pavement made of sapphire, as clear as the sky itself." + }, + { + "verseNum": 11, + "text": "But God did not lay His hand on the nobles of Israel; they saw Him, and they ate and drank." + }, + { + "verseNum": 12, + "text": "Then the LORD said to Moses, “Come up to Me on the mountain and stay here, so that I may give you the tablets of stone, with the law and commandments I have written for their instruction.”" + }, + { + "verseNum": 13, + "text": "So Moses set out with Joshua his attendant and went up on the mountain of God." + }, + { + "verseNum": 14, + "text": "And he said to the elders, “Wait here for us until we return to you. Aaron and Hur are here with you. Whoever has a dispute can go to them.”" + }, + { + "verseNum": 15, + "text": "When Moses went up on the mountain, the cloud covered it," + }, + { + "verseNum": 16, + "text": "and the glory of the LORD settled on Mount Sinai. For six days the cloud covered it, and on the seventh day the LORD called to Moses from within the cloud." + }, + { + "verseNum": 17, + "text": "And the sight of the glory of the LORD was like a consuming fire on the mountaintop in the eyes of the Israelites." + }, + { + "verseNum": 18, + "text": "Moses entered the cloud as he went up on the mountain, and he remained on the mountain forty days and forty nights." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-25.json b/data/en_bible/BSB/EXO/chapter-25.json new file mode 100644 index 0000000..5cd4678 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-25.json @@ -0,0 +1,165 @@ +{ + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Tell the Israelites to bring Me an offering. You are to receive My offering from every man whose heart compels him." + }, + { + "verseNum": 3, + "text": "This is the offering you are to accept from them:\n \n gold, silver, and bronze;" + }, + { + "verseNum": 4, + "text": "blue, purple, and scarlet yarn;\n \n fine linen and goat hair;" + }, + { + "verseNum": 5, + "text": "ram skins dyed red and fine leather;\n \n acacia wood;" + }, + { + "verseNum": 6, + "text": "olive oil for the light;\n \n spices for the anointing oil and for the fragrant incense;" + }, + { + "verseNum": 7, + "text": "and onyx stones and gemstones to be mounted on the ephod and breastpiece." + }, + { + "verseNum": 8, + "text": "And they are to make a sanctuary for Me, so that I may dwell among them." + }, + { + "verseNum": 9, + "text": "You must make the tabernacle and design all its furnishings according to the pattern I show you." + }, + { + "verseNum": 10, + "text": "And they are to construct an ark of acacia wood, two and a half cubits long, a cubit and a half wide, and a cubit and a half high." + }, + { + "verseNum": 11, + "text": "Overlay it with pure gold both inside and out, and make a gold molding around it." + }, + { + "verseNum": 12, + "text": "Cast four gold rings for it and fasten them to its four feet, two rings on one side and two on the other." + }, + { + "verseNum": 13, + "text": "And make poles of acacia wood and overlay them with gold." + }, + { + "verseNum": 14, + "text": "Insert the poles into the rings on the sides of the ark, in order to carry it." + }, + { + "verseNum": 15, + "text": "The poles are to remain in the rings of the ark; they must not be removed." + }, + { + "verseNum": 16, + "text": "And place inside the ark the Testimony, which I will give you." + }, + { + "verseNum": 17, + "text": "And you are to construct a mercy seat of pure gold, two and a half cubits long and a cubit and a half wide." + }, + { + "verseNum": 18, + "text": "Make two cherubim of hammered gold at the ends of the mercy seat," + }, + { + "verseNum": 19, + "text": "one cherub on one end and one on the other, all made from one piece of gold." + }, + { + "verseNum": 20, + "text": "And the cherubim are to have wings that spread upward, overshadowing the mercy seat. The cherubim are to face each other, looking toward the mercy seat." + }, + { + "verseNum": 21, + "text": "Set the mercy seat atop the ark, and put the Testimony that I will give you into the ark." + }, + { + "verseNum": 22, + "text": "And I will meet with you there above the mercy seat, between the two cherubim that are over the ark of the Testimony; I will speak with you about all that I command you regarding the Israelites." + }, + { + "verseNum": 23, + "text": "You are also to make a table of acacia wood two cubits long, a cubit wide, and a cubit and a half high." + }, + { + "verseNum": 24, + "text": "Overlay it with pure gold and make a gold molding around it." + }, + { + "verseNum": 25, + "text": "And make a rim around it a handbreadth wide and put a gold molding on the rim." + }, + { + "verseNum": 26, + "text": "Make four gold rings for the table and fasten them to the four corners at its four legs." + }, + { + "verseNum": 27, + "text": "The rings are to be close to the rim, to serve as holders for the poles used to carry the table." + }, + { + "verseNum": 28, + "text": "Make the poles of acacia wood and overlay them with gold, so that the table may be carried with them." + }, + { + "verseNum": 29, + "text": "You are also to make the plates and dishes, as well as the pitchers and bowls for pouring drink offerings. Make them out of pure gold." + }, + { + "verseNum": 30, + "text": "And place the Bread of the Presence on the table before Me at all times." + }, + { + "verseNum": 31, + "text": "Then you are to make a lampstand of pure, hammered gold. It shall be made of one piece, including its base and shaft, its cups, and its buds and petals." + }, + { + "verseNum": 32, + "text": "Six branches are to extend from the sides of the lampstand—three on one side and three on the other." + }, + { + "verseNum": 33, + "text": "There are to be three cups shaped like almond blossoms on the first branch, each with buds and petals, three on the next branch, and the same for all six branches that extend from the lampstand." + }, + { + "verseNum": 34, + "text": "And on the lampstand there shall be four cups shaped like almond blossoms with buds and petals." + }, + { + "verseNum": 35, + "text": "For the six branches that extend from the lampstand, a bud must be under the first pair of branches, a bud under the second pair, and a bud under the third pair." + }, + { + "verseNum": 36, + "text": "The buds and branches are to be all of one piece with the lampstand, hammered out of pure gold." + }, + { + "verseNum": 37, + "text": "Make seven lamps and set them up on the lampstand so that they illuminate the area in front of it." + }, + { + "verseNum": 38, + "text": "The wick trimmers and their trays must be of pure gold." + }, + { + "verseNum": 39, + "text": "The lampstand and all these utensils shall be made from a talent of pure gold." + }, + { + "verseNum": 40, + "text": "See to it that you make everything according to the pattern shown you on the mountain." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-26.json b/data/en_bible/BSB/EXO/chapter-26.json new file mode 100644 index 0000000..067ba2e --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-26.json @@ -0,0 +1,153 @@ +{ + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "“You are to construct the tabernacle itself with ten curtains of finely spun linen, each with blue, purple, and scarlet yarn, and cherubim skillfully worked into them." + }, + { + "verseNum": 2, + "text": "Each curtain shall be twenty-eight cubits long and four cubits wide —all curtains the same size." + }, + { + "verseNum": 3, + "text": "Five of the curtains are to be joined together, and the other five joined as well." + }, + { + "verseNum": 4, + "text": "Make loops of blue material on the edge of the end curtain in the first set, and do the same for the end curtain in the second set." + }, + { + "verseNum": 5, + "text": "Make fifty loops on one curtain and fifty loops on the end curtain of the second set, so that the loops line up opposite one another." + }, + { + "verseNum": 6, + "text": "Make fifty gold clasps as well, and join the curtains together with the clasps, so that the tabernacle will be a unit." + }, + { + "verseNum": 7, + "text": "You are to make curtains of goat hair for the tent over the tabernacle—eleven curtains in all." + }, + { + "verseNum": 8, + "text": "Each of the eleven curtains is to be the same size—thirty cubits long and four cubits wide." + }, + { + "verseNum": 9, + "text": "Join five of the curtains into one set and the other six into another. Then fold the sixth curtain over double at the front of the tent." + }, + { + "verseNum": 10, + "text": "Make fifty loops along the edge of the end curtain in the first set, and fifty loops along the edge of the corresponding curtain in the second set." + }, + { + "verseNum": 11, + "text": "Make fifty bronze clasps and put them through the loops to join the tent together as a unit." + }, + { + "verseNum": 12, + "text": "As for the overlap that remains of the tent curtains, the half curtain that is left over shall hang down over the back of the tabernacle." + }, + { + "verseNum": 13, + "text": "And the tent curtains will be a cubit longer on either side, and the excess will hang over the sides of the tabernacle to cover it." + }, + { + "verseNum": 14, + "text": "Also make a covering for the tent out of ram skins dyed red, and over that a covering of fine leather." + }, + { + "verseNum": 15, + "text": "You are to construct upright frames of acacia wood for the tabernacle." + }, + { + "verseNum": 16, + "text": "Each frame is to be ten cubits long and a cubit and a half wide." + }, + { + "verseNum": 17, + "text": "Two tenons must be connected to each other for each frame. Make all the frames of the tabernacle in this way." + }, + { + "verseNum": 18, + "text": "Construct twenty frames for the south side of the tabernacle," + }, + { + "verseNum": 19, + "text": "with forty silver bases under the twenty frames—two bases for each frame, one under each tenon." + }, + { + "verseNum": 20, + "text": "For the second side of the tabernacle, the north side, make twenty frames" + }, + { + "verseNum": 21, + "text": "and forty silver bases—two bases under each frame." + }, + { + "verseNum": 22, + "text": "Make six frames for the rear of the tabernacle, the west side," + }, + { + "verseNum": 23, + "text": "and two frames for the two back corners of the tabernacle," + }, + { + "verseNum": 24, + "text": "coupled together from bottom to top and fitted into a single ring. These will serve as the two corners." + }, + { + "verseNum": 25, + "text": "So there are to be eight frames and sixteen silver bases—two under each frame." + }, + { + "verseNum": 26, + "text": "You are also to make five crossbars of acacia wood for the frames on one side of the tabernacle," + }, + { + "verseNum": 27, + "text": "five for those on the other side, and five for those on the rear side of the tabernacle, to the west." + }, + { + "verseNum": 28, + "text": "The central crossbar in the middle of the frames shall extend from one end to the other." + }, + { + "verseNum": 29, + "text": "Overlay the frames with gold and make gold rings to hold the crossbars. Also overlay the crossbars with gold." + }, + { + "verseNum": 30, + "text": "So you are to set up the tabernacle according to the pattern shown you on the mountain." + }, + { + "verseNum": 31, + "text": "Make a veil of blue, purple, and scarlet yarn, and finely spun linen, with cherubim skillfully worked into it." + }, + { + "verseNum": 32, + "text": "Hang it with gold hooks on four posts of acacia wood, overlaid with gold and standing on four silver bases." + }, + { + "verseNum": 33, + "text": "And hang the veil from the clasps and place the ark of the Testimony behind the veil. So the veil will separate the Holy Place from the Most Holy Place." + }, + { + "verseNum": 34, + "text": "Put the mercy seat on the ark of the Testimony in the Most Holy Place." + }, + { + "verseNum": 35, + "text": "And place the table outside the veil on the north side of the tabernacle, and put the lampstand opposite the table, on the south side." + }, + { + "verseNum": 36, + "text": "For the entrance to the tent, you are to make a curtain embroidered with blue, purple, and scarlet yarn, and finely spun linen." + }, + { + "verseNum": 37, + "text": "Make five posts of acacia wood for the curtain, overlay them with gold hooks, and cast five bronze bases for them." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-27.json b/data/en_bible/BSB/EXO/chapter-27.json new file mode 100644 index 0000000..19970ff --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-27.json @@ -0,0 +1,89 @@ +{ + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "“You are to build an altar of acacia wood. The altar must be square, five cubits long, five cubits wide, and three cubits high." + }, + { + "verseNum": 2, + "text": "Make a horn on each of its four corners, so that the horns are of one piece, and overlay it with bronze." + }, + { + "verseNum": 3, + "text": "Make all its utensils of bronze—its pots for removing ashes, its shovels, its sprinkling bowls, its meat forks, and its firepans." + }, + { + "verseNum": 4, + "text": "Construct for it a grate of bronze mesh, and make a bronze ring at each of the four corners of the mesh." + }, + { + "verseNum": 5, + "text": "Set the grate beneath the ledge of the altar, so that the mesh comes halfway up the altar." + }, + { + "verseNum": 6, + "text": "Additionally, make poles of acacia wood for the altar and overlay them with bronze." + }, + { + "verseNum": 7, + "text": "The poles are to be inserted into the rings so that the poles are on two sides of the altar when it is carried." + }, + { + "verseNum": 8, + "text": "Construct the altar with boards so that it is hollow. It is to be made just as you were shown on the mountain." + }, + { + "verseNum": 9, + "text": "You are also to make a courtyard for the tabernacle. On the south side of the courtyard make curtains of finely spun linen, a hundred cubits long on one side," + }, + { + "verseNum": 10, + "text": "with twenty posts and twenty bronze bases, and silver hooks and bands on the posts." + }, + { + "verseNum": 11, + "text": "Likewise there are to be curtains on the north side, a hundred cubits long, with twenty posts and twenty bronze bases, and with silver hooks and bands on the posts." + }, + { + "verseNum": 12, + "text": "The curtains on the west side of the courtyard shall be fifty cubits wide, with ten posts and ten bases." + }, + { + "verseNum": 13, + "text": "The east side of the courtyard, toward the sunrise, is to be fifty cubits wide." + }, + { + "verseNum": 14, + "text": "Make the curtains on one side fifteen cubits long, with three posts and three bases," + }, + { + "verseNum": 15, + "text": "and the curtains on the other side fifteen cubits long, with three posts and three bases." + }, + { + "verseNum": 16, + "text": "The gate of the courtyard shall be twenty cubits long, with a curtain embroidered with blue, purple, and scarlet yarn, and finely spun linen. It shall have four posts and four bases." + }, + { + "verseNum": 17, + "text": "All the posts around the courtyard shall have silver bands, silver hooks, and bronze bases." + }, + { + "verseNum": 18, + "text": "The entire courtyard shall be a hundred cubits long and fifty cubits wide, with curtains of finely spun linen five cubits high, and with bronze bases." + }, + { + "verseNum": 19, + "text": "All the utensils of the tabernacle for every use, including all its tent pegs and the tent pegs of the courtyard, shall be made of bronze." + }, + { + "verseNum": 20, + "text": "And you are to command the Israelites to bring you pure oil of pressed olives for the light, to keep the lamps burning continually." + }, + { + "verseNum": 21, + "text": "In the Tent of Meeting, outside the veil that is in front of the Testimony, Aaron and his sons are to tend the lamps before the LORD from evening until morning. This is to be a permanent statute for the Israelites for the generations to come." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-28.json b/data/en_bible/BSB/EXO/chapter-28.json new file mode 100644 index 0000000..3419c04 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-28.json @@ -0,0 +1,177 @@ +{ + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "“Next, have your brother Aaron brought to you from among the Israelites, along with his sons Nadab, Abihu, Eleazar, and Ithamar, to serve Me as priests." + }, + { + "verseNum": 2, + "text": "Make holy garments for your brother Aaron, to give him glory and splendor." + }, + { + "verseNum": 3, + "text": "You are to instruct all the skilled craftsmen, whom I have filled with a spirit of wisdom, to make garments for Aaron’s consecration, so that he may serve Me as priest." + }, + { + "verseNum": 4, + "text": "These are the garments that they shall make: a breastpiece, an ephod, a robe, a woven tunic, a turban, and a sash. They are to make these holy garments for your brother Aaron and his sons, so that they may serve Me as priests." + }, + { + "verseNum": 5, + "text": "They shall use gold, along with blue, purple, and scarlet yarn, and fine linen." + }, + { + "verseNum": 6, + "text": "They are to make the ephod of finely spun linen embroidered with gold, and with blue, purple, and scarlet yarn." + }, + { + "verseNum": 7, + "text": "It shall have two shoulder pieces attached at two of its corners, so it can be fastened." + }, + { + "verseNum": 8, + "text": "And the skillfully woven waistband of the ephod must be of one piece, of the same workmanship—with gold, with blue, purple, and scarlet yarn, and with finely spun linen." + }, + { + "verseNum": 9, + "text": "Take two onyx stones and engrave on them the names of the sons of Israel:" + }, + { + "verseNum": 10, + "text": "six of their names on one stone and the remaining six on the other, in the order of their birth." + }, + { + "verseNum": 11, + "text": "Engrave the names of the sons of Israel on the two stones the way a gem cutter engraves a seal. Then mount the stones in gold filigree settings." + }, + { + "verseNum": 12, + "text": "Fasten both stones on the shoulder pieces of the ephod as memorial stones for the sons of Israel. Aaron is to bear their names on his two shoulders as a memorial before the LORD." + }, + { + "verseNum": 13, + "text": "Fashion gold filigree settings" + }, + { + "verseNum": 14, + "text": "and two chains of pure gold, made of braided cord work; and attach these chains to the settings." + }, + { + "verseNum": 15, + "text": "You are also to make a breastpiece of judgment with the same workmanship as the ephod. Construct it with gold, with blue, purple, and scarlet yarn, and with finely spun linen." + }, + { + "verseNum": 16, + "text": "It must be square when folded over double, a span long and a span wide." + }, + { + "verseNum": 17, + "text": "And mount on it a setting of gemstones, four rows of stones:\n \n In the first row there shall be a ruby, a topaz, and an emerald;" + }, + { + "verseNum": 18, + "text": "in the second row a turquoise, a sapphire, and a diamond;" + }, + { + "verseNum": 19, + "text": "in the third row a jacinth, an agate, and an amethyst;" + }, + { + "verseNum": 20, + "text": "and in the fourth row a beryl, an onyx, and a jasper.\n \nMount these stones in gold filigree settings." + }, + { + "verseNum": 21, + "text": "The twelve stones are to correspond to the names of the sons of Israel, each engraved like a seal with the name of one of the twelve tribes." + }, + { + "verseNum": 22, + "text": "For the breastpiece, make braided chains like cords of pure gold." + }, + { + "verseNum": 23, + "text": "You are also to make two gold rings and fasten them to the two corners of the breastpiece." + }, + { + "verseNum": 24, + "text": "Then fasten the two gold chains to the two gold rings at the corners of the breastpiece," + }, + { + "verseNum": 25, + "text": "and fasten the other ends of the two chains to the two filigree settings, attaching them to the shoulder pieces of the ephod at the front." + }, + { + "verseNum": 26, + "text": "Make two more gold rings and attach them to the other two corners of the breastpiece, on the inside edge next to the ephod." + }, + { + "verseNum": 27, + "text": "Make two additional gold rings and attach them to the bottom of the two shoulder pieces of the ephod, on its front, near its seam just above its woven waistband." + }, + { + "verseNum": 28, + "text": "The rings of the breastpiece shall be tied to the rings of the ephod with a cord of blue yarn, so that the breastpiece is above the waistband of the ephod and does not swing out from the ephod." + }, + { + "verseNum": 29, + "text": "Whenever Aaron enters the Holy Place, he shall bear the names of the sons of Israel over his heart on the breastpiece of judgment, as a continual reminder before the LORD." + }, + { + "verseNum": 30, + "text": "And place the Urim and Thummim in the breastpiece of judgment, so that they will also be over Aaron’s heart whenever he comes before the LORD. Aaron will continually carry the judgment of the sons of Israel over his heart before the LORD." + }, + { + "verseNum": 31, + "text": "You are to make the robe of the ephod entirely of blue cloth," + }, + { + "verseNum": 32, + "text": "with an opening at its top in the center. Around the opening shall be a woven collar with an opening like that of a garment, so that it will not tear." + }, + { + "verseNum": 33, + "text": "Make pomegranates of blue, purple, and scarlet yarn all the way around the lower hem, with gold bells between them," + }, + { + "verseNum": 34, + "text": "alternating the gold bells and pomegranates around the lower hem of the robe." + }, + { + "verseNum": 35, + "text": "Aaron must wear the robe whenever he ministers, and its sound will be heard when he enters or exits the sanctuary before the LORD, so that he will not die." + }, + { + "verseNum": 36, + "text": "You are to make a plate of pure gold and engrave on it as on a seal:\n \n HOLY TO THE LORD." + }, + { + "verseNum": 37, + "text": "Fasten to it a blue cord to mount it on the turban; it shall be on the front of the turban." + }, + { + "verseNum": 38, + "text": "And it will be worn on Aaron’s forehead, so that he may bear the iniquity of the holy things that the sons of Israel consecrate with regard to all their holy gifts. It shall always be on his forehead, so that they may be acceptable before the LORD." + }, + { + "verseNum": 39, + "text": "You are to weave the tunic with fine linen, make the turban of fine linen, and fashion an embroidered sash." + }, + { + "verseNum": 40, + "text": "Make tunics, sashes, and headbands for Aaron’s sons, to give them glory and splendor." + }, + { + "verseNum": 41, + "text": "After you put these garments on your brother Aaron and his sons, anoint them, ordain them, and consecrate them so that they may serve Me as priests." + }, + { + "verseNum": 42, + "text": "Make linen undergarments to cover their bare flesh, extending from waist to thigh." + }, + { + "verseNum": 43, + "text": "Aaron and his sons must wear them whenever they enter the Tent of Meeting or approach the altar to minister in the Holy Place, so that they will not incur guilt and die. This is to be a permanent statute for Aaron and his descendants." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-29.json b/data/en_bible/BSB/EXO/chapter-29.json new file mode 100644 index 0000000..21729e8 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-29.json @@ -0,0 +1,189 @@ +{ + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "“Now this is what you are to do to consecrate Aaron and his sons to serve Me as priests: Take a young bull and two rams without blemish," + }, + { + "verseNum": 2, + "text": "along with unleavened bread, unleavened cakes mixed with oil, and unleavened wafers anointed with oil. Make them out of fine wheat flour," + }, + { + "verseNum": 3, + "text": "put them in a basket, and present them in the basket, along with the bull and the two rams." + }, + { + "verseNum": 4, + "text": "Then present Aaron and his sons at the entrance to the Tent of Meeting and wash them with water." + }, + { + "verseNum": 5, + "text": "Take the garments and clothe Aaron with the tunic, the robe of the ephod, the ephod itself, and the breastplate. Fasten the ephod on him with its woven waistband." + }, + { + "verseNum": 6, + "text": "Put the turban on his head and attach the holy diadem to the turban." + }, + { + "verseNum": 7, + "text": "Then take the anointing oil and anoint him by pouring it on his head." + }, + { + "verseNum": 8, + "text": "Present his sons as well and clothe them with tunics." + }, + { + "verseNum": 9, + "text": "Wrap the sashes around Aaron and his sons and tie headbands on them. The priesthood shall be theirs by a permanent statute. In this way you are to ordain Aaron and his sons." + }, + { + "verseNum": 10, + "text": "You are to present the bull at the front of the Tent of Meeting, and Aaron and his sons are to lay their hands on its head." + }, + { + "verseNum": 11, + "text": "And you shall slaughter the bull before the LORD at the entrance to the Tent of Meeting." + }, + { + "verseNum": 12, + "text": "Take some of the blood of the bull and put it on the horns of the altar with your finger; then pour out the rest of the blood at the base of the altar." + }, + { + "verseNum": 13, + "text": "Take all the fat that covers the entrails and the lobe of the liver, and both kidneys with the fat on them, and burn them on the altar." + }, + { + "verseNum": 14, + "text": "But burn the flesh of the bull and its hide and dung outside the camp; it is a sin offering." + }, + { + "verseNum": 15, + "text": "Take one of the rams, and Aaron and his sons shall lay their hands on its head." + }, + { + "verseNum": 16, + "text": "You are to slaughter the ram, take its blood, and sprinkle it on all sides of the altar." + }, + { + "verseNum": 17, + "text": "Cut the ram into pieces, wash the entrails and legs, and place them with its head and other pieces." + }, + { + "verseNum": 18, + "text": "Then burn the entire ram on the altar; it is a burnt offering to the LORD, a pleasing aroma, an offering made by fire to the LORD." + }, + { + "verseNum": 19, + "text": "Take the second ram, and Aaron and his sons are to lay their hands on its head." + }, + { + "verseNum": 20, + "text": "Slaughter the ram, take some of its blood, and put it on the right earlobes of Aaron and his sons, on the thumbs of their right hands, and on the big toes of their right feet. Sprinkle the remaining blood on all sides of the altar." + }, + { + "verseNum": 21, + "text": "And take some of the blood on the altar and some of the anointing oil and sprinkle it on Aaron and his garments, as well as on his sons and their garments. Then he and his garments will be consecrated, as well as his sons and their garments." + }, + { + "verseNum": 22, + "text": "Take the fat from the ram, the fat tail, the fat covering the entrails, the lobe of the liver, both kidneys with the fat on them, and the right thigh (since this is a ram for ordination)," + }, + { + "verseNum": 23, + "text": "along with one loaf of bread, one cake of bread made with oil, and one wafer from the basket of unleavened bread that is before the LORD." + }, + { + "verseNum": 24, + "text": "Put all these in the hands of Aaron and his sons and wave them before the LORD as a wave offering." + }, + { + "verseNum": 25, + "text": "Then take them from their hands and burn them on the altar atop the burnt offering as a pleasing aroma before the LORD; it is an offering made by fire to the LORD." + }, + { + "verseNum": 26, + "text": "Take the breast of the ram of Aaron’s ordination and wave it before the LORD as a wave offering, and it will be your portion." + }, + { + "verseNum": 27, + "text": "Consecrate for Aaron and his sons the breast of the wave offering that is waved and the thigh of the heave offering that is lifted up from the ram of ordination." + }, + { + "verseNum": 28, + "text": "This will belong to Aaron and his sons as a regular portion from the Israelites, for it is the heave offering the Israelites will make to the LORD from their peace offerings." + }, + { + "verseNum": 29, + "text": "The holy garments that belong to Aaron will belong to his sons after him, so they can be anointed and ordained in them." + }, + { + "verseNum": 30, + "text": "The son who succeeds him as priest and enters the Tent of Meeting to minister in the Holy Place must wear them for seven days." + }, + { + "verseNum": 31, + "text": "You are to take the ram of ordination and boil its flesh in a holy place." + }, + { + "verseNum": 32, + "text": "At the entrance to the Tent of Meeting, Aaron and his sons are to eat the meat of the ram and the bread that is in the basket." + }, + { + "verseNum": 33, + "text": "They must eat those things by which atonement was made for their ordination and consecration. But no outsider may eat them, because these things are sacred." + }, + { + "verseNum": 34, + "text": "And if any of the meat of ordination or any bread is left until the morning, you are to burn up the remainder. It must not be eaten, because it is sacred." + }, + { + "verseNum": 35, + "text": "This is what you are to do for Aaron and his sons based on all that I have commanded you, taking seven days to ordain them." + }, + { + "verseNum": 36, + "text": "Sacrifice a bull as a sin offering each day for atonement. Purify the altar by making atonement for it, and anoint it to consecrate it." + }, + { + "verseNum": 37, + "text": "For seven days you shall make atonement for the altar and consecrate it. Then the altar will become most holy; whatever touches the altar will be holy." + }, + { + "verseNum": 38, + "text": "This is what you are to offer regularly on the altar, each day: two lambs that are a year old." + }, + { + "verseNum": 39, + "text": "Offer one lamb in the morning and the other at twilight." + }, + { + "verseNum": 40, + "text": "With the first lamb offer a tenth of an ephah of fine flour, mixed with a quarter hin of oil from pressed olives, and a drink offering of a quarter hin of wine." + }, + { + "verseNum": 41, + "text": "And offer the second lamb at twilight with the same grain offering and drink offering as in the morning, as a pleasing aroma, an offering made by fire to the LORD." + }, + { + "verseNum": 42, + "text": "For the generations to come, this burnt offering shall be made regularly at the entrance to the Tent of Meeting before the LORD, where I will meet you to speak with you." + }, + { + "verseNum": 43, + "text": "I will also meet with the Israelites there, and that place will be consecrated by My glory." + }, + { + "verseNum": 44, + "text": "So I will consecrate the Tent of Meeting and the altar, and I will consecrate Aaron and his sons to serve Me as priests." + }, + { + "verseNum": 45, + "text": "Then I will dwell among the Israelites and be their God." + }, + { + "verseNum": 46, + "text": "And they will know that I am the LORD their God, who brought them out of the land of Egypt so that I might dwell among them.\n \nI am the LORD their God." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-3.json b/data/en_bible/BSB/EXO/chapter-3.json new file mode 100644 index 0000000..c8015ef --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-3.json @@ -0,0 +1,93 @@ +{ + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Meanwhile, Moses was shepherding the flock of his father-in-law Jethro, the priest of Midian. He led the flock to the far side of the wilderness and came to Horeb, the mountain of God." + }, + { + "verseNum": 2, + "text": "There the angel of the LORD appeared to him in a blazing fire from within a bush. Moses saw the bush ablaze with fire, but it was not consumed." + }, + { + "verseNum": 3, + "text": "So Moses thought, “I must go over and see this marvelous sight. Why is the bush not burning up?”" + }, + { + "verseNum": 4, + "text": "When the LORD saw that he had gone over to look, God called out to him from within the bush, “Moses, Moses!”\n \n“Here I am,” he answered." + }, + { + "verseNum": 5, + "text": "“Do not come any closer,” God said. “Take off your sandals, for the place where you are standing is holy ground.”" + }, + { + "verseNum": 6, + "text": "Then He said, “I am the God of your father, the God of Abraham, the God of Isaac, and the God of Jacob.”\n \nAt this, Moses hid his face, for he was afraid to look at God." + }, + { + "verseNum": 7, + "text": "The LORD said, “I have indeed seen the affliction of My people in Egypt. I have heard them crying out because of their oppressors, and I am aware of their sufferings." + }, + { + "verseNum": 8, + "text": "I have come down to rescue them from the hand of the Egyptians and to bring them up out of that land to a good and spacious land, a land flowing with milk and honey—the home of the Canaanites, Hittites, Amorites, Perizzites, Hivites, and Jebusites." + }, + { + "verseNum": 9, + "text": "And now the cry of the Israelites has reached Me, and I have seen how severely the Egyptians are oppressing them." + }, + { + "verseNum": 10, + "text": "Therefore, go! I am sending you to Pharaoh to bring My people the Israelites out of Egypt.”" + }, + { + "verseNum": 11, + "text": "But Moses asked God, “Who am I, that I should go to Pharaoh and bring the Israelites out of Egypt?”" + }, + { + "verseNum": 12, + "text": "“I will surely be with you,” God said, “and this will be the sign to you that I have sent you: When you have brought the people out of Egypt, all of you will worship God on this mountain.”" + }, + { + "verseNum": 13, + "text": "Then Moses asked God, “Suppose I go to the Israelites and say to them, ‘The God of your fathers has sent me to you,’ and they ask me, ‘What is His name?’ What should I tell them?”" + }, + { + "verseNum": 14, + "text": "God said to Moses, “I AM WHO I AM. This is what you are to say to the Israelites: ‘I AM has sent me to you.’”" + }, + { + "verseNum": 15, + "text": "God also told Moses, “Say to the Israelites, ‘The LORD, the God of your fathers—the God of Abraham, the God of Isaac, and the God of Jacob—has sent me to you.’ This is My name forever, and this is how I am to be remembered in every generation." + }, + { + "verseNum": 16, + "text": "Go, assemble the elders of Israel and say to them, ‘The LORD, the God of your fathers—the God of Abraham, Isaac, and Jacob—has appeared to me and said: I have surely attended to you and have seen what has been done to you in Egypt." + }, + { + "verseNum": 17, + "text": "And I have promised to bring you up out of your affliction in Egypt, into the land of the Canaanites, Hittites, Amorites, Perizzites, Hivites, and Jebusites—a land flowing with milk and honey.’" + }, + { + "verseNum": 18, + "text": "The elders of Israel will listen to what you say, and you must go with them to the king of Egypt and tell him, ‘The LORD, the God of the Hebrews, has met with us. Now please let us take a three-day journey into the wilderness, so that we may sacrifice to the LORD our God.’" + }, + { + "verseNum": 19, + "text": "But I know that the king of Egypt will not allow you to go unless a mighty hand compels him." + }, + { + "verseNum": 20, + "text": "So I will stretch out My hand and strike the Egyptians with all the wonders I will perform among them. And after that, he will release you." + }, + { + "verseNum": 21, + "text": "And I will grant this people such favor in the sight of the Egyptians that when you leave, you will not go away empty-handed." + }, + { + "verseNum": 22, + "text": "Every woman shall ask her neighbor and any woman staying in her house for silver and gold jewelry and clothing, and you will put them on your sons and daughters. So you will plunder the Egyptians.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-30.json b/data/en_bible/BSB/EXO/chapter-30.json new file mode 100644 index 0000000..f30af00 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-30.json @@ -0,0 +1,157 @@ +{ + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "“You are also to make an altar of acacia wood for the burning of incense." + }, + { + "verseNum": 2, + "text": "It is to be square, a cubit long, a cubit wide, and two cubits high. Its horns must be of one piece." + }, + { + "verseNum": 3, + "text": "Overlay with pure gold the top and all the sides and horns, and make a molding of gold around it." + }, + { + "verseNum": 4, + "text": "And make two gold rings below the molding on opposite sides to hold the poles used to carry it." + }, + { + "verseNum": 5, + "text": "Make the poles of acacia wood and overlay them with gold." + }, + { + "verseNum": 6, + "text": "Place the altar in front of the veil that is before the ark of the Testimony —before the mercy seat that is over the Testimony—where I will meet with you." + }, + { + "verseNum": 7, + "text": "And Aaron is to burn fragrant incense on it every morning when he tends the lamps." + }, + { + "verseNum": 8, + "text": "When Aaron sets up the lamps at twilight, he must burn the incense perpetually before the LORD for the generations to come." + }, + { + "verseNum": 9, + "text": "On this altar you must not offer unauthorized incense or a burnt offering or grain offering; nor are you to pour a drink offering on it." + }, + { + "verseNum": 10, + "text": "Once a year Aaron shall make atonement on the horns of the altar. Throughout your generations he shall make atonement on it annually with the blood of the sin offering of atonement. The altar is most holy to the LORD.”" + }, + { + "verseNum": 11, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 12, + "text": "“When you take a census of the Israelites to number them, each man must pay the LORD a ransom for his life when he is counted. Then no plague will come upon them when they are numbered." + }, + { + "verseNum": 13, + "text": "Everyone who crosses over to those counted must pay a half shekel, according to the sanctuary shekel, which weighs twenty gerahs. This half shekel is an offering to the LORD." + }, + { + "verseNum": 14, + "text": "Everyone twenty years of age or older who crosses over must give this offering to the LORD." + }, + { + "verseNum": 15, + "text": "In making the offering to the LORD to atone for your lives, the rich shall not give more than a half shekel, nor shall the poor give less." + }, + { + "verseNum": 16, + "text": "Take the atonement money from the Israelites and use it for the service of the Tent of Meeting. It will serve as a memorial for the Israelites before the LORD to make atonement for your lives.”" + }, + { + "verseNum": 17, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 18, + "text": "“You are to make a bronze basin with a bronze stand for washing. Set it between the Tent of Meeting and the altar, and put water in it," + }, + { + "verseNum": 19, + "text": "with which Aaron and his sons are to wash their hands and feet." + }, + { + "verseNum": 20, + "text": "Whenever they enter the Tent of Meeting or approach the altar to minister by presenting an offering made by fire to the LORD, they must wash with water so that they will not die." + }, + { + "verseNum": 21, + "text": "Thus they are to wash their hands and feet so that they will not die; this shall be a permanent statute for Aaron and his descendants for the generations to come.”" + }, + { + "verseNum": 22, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 23, + "text": "“Take the finest spices: 500 shekels of liquid myrrh, half that amount (250 shekels) of fragrant cinnamon, 250 shekels of fragrant cane," + }, + { + "verseNum": 24, + "text": "500 shekels of cassia —all according to the sanctuary shekel—and a hin of olive oil." + }, + { + "verseNum": 25, + "text": "Prepare from these a sacred anointing oil, a fragrant blend, the work of a perfumer; it will be a sacred anointing oil." + }, + { + "verseNum": 26, + "text": "Use this oil to anoint the Tent of Meeting, the ark of the Testimony," + }, + { + "verseNum": 27, + "text": "the table and all its utensils, the lampstand and its utensils, the altar of incense," + }, + { + "verseNum": 28, + "text": "the altar of burnt offering and all its utensils, and the basin with its stand." + }, + { + "verseNum": 29, + "text": "You are to consecrate them so that they will be most holy. Whatever touches them shall be holy." + }, + { + "verseNum": 30, + "text": "Anoint Aaron and his sons and consecrate them to serve Me as priests." + }, + { + "verseNum": 31, + "text": "And you are to tell the Israelites, ‘This will be My sacred anointing oil for the generations to come." + }, + { + "verseNum": 32, + "text": "It must not be used to anoint an ordinary man, and you must not make anything like it with the same formula. It is holy, and it must be holy to you." + }, + { + "verseNum": 33, + "text": "Anyone who mixes perfume like it or puts it on an outsider shall be cut off from his people.’”" + }, + { + "verseNum": 34, + "text": "The LORD also said to Moses, “Take fragrant spices—gum resin, onycha, galbanum, and pure frankincense—in equal measures," + }, + { + "verseNum": 35, + "text": "and make a fragrant blend of incense, the work of a perfumer, seasoned with salt, pure and holy." + }, + { + "verseNum": 36, + "text": "Grind some of it into fine powder and place it in front of the Testimony in the Tent of Meeting, where I will meet with you. It shall be most holy to you." + }, + { + "verseNum": 37, + "text": "You are never to use this formula to make incense for yourselves; you shall regard it as holy to the LORD." + }, + { + "verseNum": 38, + "text": "Anyone who makes something like it to enjoy its fragrance shall be cut off from his people.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-31.json b/data/en_bible/BSB/EXO/chapter-31.json new file mode 100644 index 0000000..98605db --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-31.json @@ -0,0 +1,77 @@ +{ + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“See, I have called by name Bezalel son of Uri, the son of Hur, of the tribe of Judah." + }, + { + "verseNum": 3, + "text": "And I have filled him with the Spirit of God, with skill, ability, and knowledge in all kinds of craftsmanship," + }, + { + "verseNum": 4, + "text": "to design artistic works in gold, silver, and bronze," + }, + { + "verseNum": 5, + "text": "to cut gemstones for settings, and to carve wood, so that he may be a master of every craft." + }, + { + "verseNum": 6, + "text": "Moreover, I have selected Oholiab son of Ahisamach, of the tribe of Dan, as his assistant.\n \nI have also given skill to all the craftsmen, that they may fashion all that I have commanded you:" + }, + { + "verseNum": 7, + "text": "the Tent of Meeting, the ark of the Testimony and the mercy seat upon it, and all the other furnishings of the tent—" + }, + { + "verseNum": 8, + "text": "the table with its utensils, the pure gold lampstand with all its utensils, the altar of incense," + }, + { + "verseNum": 9, + "text": "the altar of burnt offering with all its utensils, and the basin with its stand—" + }, + { + "verseNum": 10, + "text": "as well as the woven garments, both the holy garments for Aaron the priest and the garments for his sons to serve as priests," + }, + { + "verseNum": 11, + "text": "in addition to the anointing oil and fragrant incense for the Holy Place. They are to make them according to all that I have commanded you.”" + }, + { + "verseNum": 12, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 13, + "text": "“Tell the Israelites, ‘Surely you must keep My Sabbaths, for this will be a sign between Me and you for the generations to come, so that you may know that I am the LORD who sanctifies you." + }, + { + "verseNum": 14, + "text": "Keep the Sabbath, for it is holy to you. Anyone who profanes it must surely be put to death. Whoever does any work on that day must be cut off from among his people." + }, + { + "verseNum": 15, + "text": "For six days work may be done, but the seventh day is a Sabbath of complete rest, holy to the LORD. Whoever does any work on the Sabbath day must surely be put to death." + }, + { + "verseNum": 16, + "text": "The Israelites must keep the Sabbath, celebrating it as a permanent covenant for the generations to come." + }, + { + "verseNum": 17, + "text": "It is a sign between Me and the Israelites forever; for in six days the LORD made the heavens and the earth, but on the seventh day He rested and was refreshed.’”" + }, + { + "verseNum": 18, + "text": "When the LORD had finished speaking with Moses on Mount Sinai, He gave him the two tablets of the Testimony, tablets of stone inscribed by the finger of God." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-32.json b/data/en_bible/BSB/EXO/chapter-32.json new file mode 100644 index 0000000..03fbf76 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-32.json @@ -0,0 +1,145 @@ +{ + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "Now when the people saw that Moses was delayed in coming down from the mountain, they gathered around Aaron and said, “Come, make us gods who will go before us. As for this Moses who brought us up out of the land of Egypt, we do not know what has happened to him!”" + }, + { + "verseNum": 2, + "text": "So Aaron told them, “Take off the gold earrings that are on your wives and sons and daughters, and bring them to me.”" + }, + { + "verseNum": 3, + "text": "Then all the people took off their gold earrings and brought them to Aaron." + }, + { + "verseNum": 4, + "text": "He took the gold from their hands, and with an engraving tool he fashioned it into a molten calf. And they said, “These, O Israel, are your gods, who brought you up out of the land of Egypt!”" + }, + { + "verseNum": 5, + "text": "When Aaron saw this, he built an altar before the calf and proclaimed: “Tomorrow shall be a feast to the LORD.”" + }, + { + "verseNum": 6, + "text": "So the next day they arose, offered burnt offerings, and presented peace offerings. And the people sat down to eat and drink, and got up to indulge in revelry." + }, + { + "verseNum": 7, + "text": "Then the LORD said to Moses, “Go down at once, for your people, whom you brought up out of the land of Egypt, have corrupted themselves." + }, + { + "verseNum": 8, + "text": "How quickly they have turned aside from the way that I commanded them! They have made for themselves a molten calf and have bowed down to it. They have sacrificed to it and said, ‘These, O Israel, are your gods, who brought you up out of the land of Egypt.’”" + }, + { + "verseNum": 9, + "text": "The LORD also said to Moses, “I have seen this people, and they are indeed a stiff-necked people." + }, + { + "verseNum": 10, + "text": "Now leave Me alone, so that My anger may burn against them and consume them. Then I will make you into a great nation.”" + }, + { + "verseNum": 11, + "text": "But Moses sought the favor of the LORD his God, saying, “O LORD, why does Your anger burn against Your people, whom You brought out of the land of Egypt with great power and a mighty hand?" + }, + { + "verseNum": 12, + "text": "Why should the Egyptians declare, ‘He brought them out with evil intent, to kill them in the mountains and wipe them from the face of the earth’? Turn from Your fierce anger and relent from doing harm to Your people." + }, + { + "verseNum": 13, + "text": "Remember Your servants Abraham, Isaac, and Israel, to whom You swore by Your very self when You declared, ‘I will make your descendants as numerous as the stars in the sky, and I will give your descendants all this land that I have promised, and it shall be their inheritance forever.’”" + }, + { + "verseNum": 14, + "text": "So the LORD relented from the calamity He had threatened to bring on His people." + }, + { + "verseNum": 15, + "text": "Then Moses turned and went down the mountain with the two tablets of the Testimony in his hands. They were inscribed on both sides, front and back." + }, + { + "verseNum": 16, + "text": "The tablets were the work of God, and the writing was the writing of God, engraved on the tablets." + }, + { + "verseNum": 17, + "text": "When Joshua heard the sound of the people shouting, he said to Moses, “The sound of war is in the camp.”" + }, + { + "verseNum": 18, + "text": "But Moses replied:\n \n “It is neither the cry of victory nor the cry of defeat;\n I hear the sound of singing!”" + }, + { + "verseNum": 19, + "text": "As Moses approached the camp and saw the calf and the dancing, he burned with anger and threw the tablets out of his hands, shattering them at the base of the mountain." + }, + { + "verseNum": 20, + "text": "Then he took the calf they had made, burned it in the fire, ground it to powder, and scattered the powder over the face of the water. Then he forced the Israelites to drink it." + }, + { + "verseNum": 21, + "text": "“What did this people do to you,” Moses asked Aaron, “that you have led them into so great a sin?”" + }, + { + "verseNum": 22, + "text": "“Do not be enraged, my lord,” Aaron replied. “You yourself know that the people are intent on evil." + }, + { + "verseNum": 23, + "text": "They told me, ‘Make us gods who will go before us. As for this Moses who brought us up out of the land of Egypt, we do not know what has happened to him!’" + }, + { + "verseNum": 24, + "text": "So I said to them, ‘Whoever has gold, let him take it off,’ and they gave it to me. And when I threw it into the fire, out came this calf!”" + }, + { + "verseNum": 25, + "text": "Moses saw that the people were out of control, for Aaron had let them run wild and become a laughingstock to their enemies." + }, + { + "verseNum": 26, + "text": "So Moses stood at the entrance to the camp and said, “Whoever is for the LORD, come to me.”\n \nAnd all the Levites gathered around him." + }, + { + "verseNum": 27, + "text": "He told them, “This is what the LORD, the God of Israel, says: ‘Each of you men is to fasten his sword to his side, go back and forth through the camp from gate to gate, and slay his brother, his friend, and his neighbor.’”" + }, + { + "verseNum": 28, + "text": "The Levites did as Moses commanded, and that day about three thousand of the people fell dead." + }, + { + "verseNum": 29, + "text": "Afterward, Moses said, “Today you have been ordained for service to the LORD, since each man went against his son and his brother; so the LORD has bestowed a blessing on you this day.”" + }, + { + "verseNum": 30, + "text": "The next day Moses said to the people, “You have committed a great sin. Now I will go up to the LORD; perhaps I can make atonement for your sin.”" + }, + { + "verseNum": 31, + "text": "So Moses returned to the LORD and said, “Oh, what a great sin these people have committed! They have made gods of gold for themselves." + }, + { + "verseNum": 32, + "text": "Yet now, if You would only forgive their sin.... But if not, please blot me out of the book that You have written.”" + }, + { + "verseNum": 33, + "text": "The LORD replied to Moses, “Whoever has sinned against Me, I will blot out of My book." + }, + { + "verseNum": 34, + "text": "Now go, lead the people to the place I described. Behold, My angel shall go before you. But on the day I settle accounts, I will punish them for their sin.”" + }, + { + "verseNum": 35, + "text": "And the LORD sent a plague on the people because of what they had done with the calf that Aaron had made." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-33.json b/data/en_bible/BSB/EXO/chapter-33.json new file mode 100644 index 0000000..163876b --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-33.json @@ -0,0 +1,97 @@ +{ + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Leave this place, you and the people you brought up out of the land of Egypt, and go to the land that I promised to Abraham, Isaac, and Jacob when I said, ‘I will give it to your descendants.’" + }, + { + "verseNum": 2, + "text": "And I will send an angel before you, and I will drive out the Canaanites, Amorites, Hittites, Perizzites, Hivites, and Jebusites." + }, + { + "verseNum": 3, + "text": "Go up to a land flowing with milk and honey. But I will not go with you, because you are a stiff-necked people; otherwise, I might destroy you on the way.”" + }, + { + "verseNum": 4, + "text": "When the people heard these bad tidings, they went into mourning, and no one put on any of his jewelry." + }, + { + "verseNum": 5, + "text": "For the LORD had said to Moses, “Tell the Israelites, ‘You are a stiff-necked people. If I should go with you for a single moment, I would destroy you. Now take off your jewelry, and I will decide what to do with you.’”" + }, + { + "verseNum": 6, + "text": "So the Israelites stripped themselves of their jewelry from Mount Horeb onward." + }, + { + "verseNum": 7, + "text": "Now Moses used to take the tent and pitch it at a distance outside the camp. He called it the Tent of Meeting, and anyone inquiring of the LORD would go to the Tent of Meeting outside the camp." + }, + { + "verseNum": 8, + "text": "Then, whenever Moses went out to the tent, all the people would stand at the entrances to their own tents and watch Moses until he entered the tent." + }, + { + "verseNum": 9, + "text": "As Moses entered the tent, the pillar of cloud would come down and remain at the entrance, and the LORD would speak with Moses." + }, + { + "verseNum": 10, + "text": "When all the people saw the pillar of cloud standing at the entrance to the tent, they would stand up and worship, each one at the entrance to his own tent." + }, + { + "verseNum": 11, + "text": "Thus the LORD would speak to Moses face to face, as a man speaks to his friend. Then Moses would return to the camp, but his young assistant Joshua son of Nun would not leave the tent." + }, + { + "verseNum": 12, + "text": "Then Moses said to the LORD, “Look, You have been telling me, ‘Lead this people up,’ but You have not let me know whom You will send with me. Yet You have said, ‘I know you by name, and you have found favor in My sight.’" + }, + { + "verseNum": 13, + "text": "Now if indeed I have found favor in Your sight, please let me know Your ways, that I may know You and find favor in Your sight. Remember that this nation is Your people.”" + }, + { + "verseNum": 14, + "text": "And the LORD answered, “My Presence will go with you, and I will give you rest.”" + }, + { + "verseNum": 15, + "text": "“If Your Presence does not go with us,” Moses replied, “do not lead us up from here." + }, + { + "verseNum": 16, + "text": "For how then can it be known that Your people and I have found favor in Your sight, unless You go with us? How else will we be distinguished from all the other people on the face of the earth?”" + }, + { + "verseNum": 17, + "text": "So the LORD said to Moses, “I will do this very thing you have asked, for you have found favor in My sight, and I know you by name.”" + }, + { + "verseNum": 18, + "text": "Then Moses said, “Please show me Your glory.”" + }, + { + "verseNum": 19, + "text": "“I will cause all My goodness to pass before you,” the LORD replied, “and I will proclaim My name—the LORD—in your presence. I will have mercy on whom I have mercy, and I will have compassion on whom I have compassion.”" + }, + { + "verseNum": 20, + "text": "But He added, “You cannot see My face, for no one can see Me and live.”" + }, + { + "verseNum": 21, + "text": "The LORD continued, “There is a place near Me where you are to stand upon a rock," + }, + { + "verseNum": 22, + "text": "and when My glory passes by, I will put you in a cleft of the rock and cover you with My hand until I have passed by." + }, + { + "verseNum": 23, + "text": "Then I will take My hand away, and you will see My back; but My face must not be seen.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-34.json b/data/en_bible/BSB/EXO/chapter-34.json new file mode 100644 index 0000000..c97dd14 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-34.json @@ -0,0 +1,145 @@ +{ + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Chisel out two stone tablets like the originals, and I will write on them the words that were on the first tablets, which you broke." + }, + { + "verseNum": 2, + "text": "Be ready in the morning, and come up on Mount Sinai to present yourself before Me on the mountaintop." + }, + { + "verseNum": 3, + "text": "No one may go up with you; in fact, no one may be seen anywhere on the mountain—not even the flocks or herds may graze in front of the mountain.”" + }, + { + "verseNum": 4, + "text": "So Moses chiseled out two stone tablets like the originals. He rose early in the morning, and taking the two stone tablets in his hands, he went up Mount Sinai as the LORD had commanded him." + }, + { + "verseNum": 5, + "text": "And the LORD descended in a cloud, stood with him there, and proclaimed His name, the LORD." + }, + { + "verseNum": 6, + "text": "Then the LORD passed in front of Moses and called out:\n “The LORD, the LORD God,\n is compassionate and gracious,\n slow to anger,\n abounding in loving devotion and faithfulness," + }, + { + "verseNum": 7, + "text": "maintaining loving devotion to a thousand generations,\n forgiving iniquity, transgression, and sin.\n Yet He will by no means leave the guilty unpunished;\n He will visit the iniquity of the fathers\n on their children and grandchildren\n to the third and fourth generations.”" + }, + { + "verseNum": 8, + "text": "Moses immediately bowed down to the ground and worshiped." + }, + { + "verseNum": 9, + "text": "“O Lord,” he said, “if I have indeed found favor in Your sight, my Lord, please go with us. Although this is a stiff-necked people, forgive our iniquity and sin, and take us as Your inheritance.”" + }, + { + "verseNum": 10, + "text": "And the LORD said, “Behold, I am making a covenant. Before all your people I will perform wonders that have never been done in any nation in all the world. All the people among whom you live will see the LORD’s work, for it is an awesome thing that I am doing with you." + }, + { + "verseNum": 11, + "text": "Observe what I command you this day. I will drive out before you the Amorites, Canaanites, Hittites, Perizzites, Hivites, and Jebusites." + }, + { + "verseNum": 12, + "text": "Be careful not to make a treaty with the inhabitants of the land you are entering, lest they become a snare in your midst." + }, + { + "verseNum": 13, + "text": "Rather, you must tear down their altars, smash their sacred stones, and chop down their Asherah poles." + }, + { + "verseNum": 14, + "text": "For you must not worship any other god, for the LORD, whose name is Jealous, is a jealous God." + }, + { + "verseNum": 15, + "text": "Do not make a covenant with the inhabitants of the land, for when they prostitute themselves to their gods and sacrifice to them, they will invite you, and you will eat their sacrifices." + }, + { + "verseNum": 16, + "text": "And when you take some of their daughters as brides for your sons, their daughters will prostitute themselves to their gods and cause your sons to do the same." + }, + { + "verseNum": 17, + "text": "You shall make no molten gods for yourselves." + }, + { + "verseNum": 18, + "text": "You are to keep the Feast of Unleavened Bread. For seven days at the appointed time in the month of Abib, you are to eat unleavened bread as I commanded you. For in the month of Abib you came out of Egypt." + }, + { + "verseNum": 19, + "text": "The first offspring of every womb belongs to Me, including all the firstborn males among your livestock, whether cattle or sheep." + }, + { + "verseNum": 20, + "text": "You must redeem the firstborn of a donkey with a lamb; but if you do not redeem it, you are to break its neck. You must redeem all the firstborn of your sons. No one shall appear before Me empty-handed." + }, + { + "verseNum": 21, + "text": "Six days you shall labor, but on the seventh day you shall rest; even in the seasons of plowing and harvesting, you must rest." + }, + { + "verseNum": 22, + "text": "And you are to celebrate the Feast of Weeks with the firstfruits of the wheat harvest, and the Feast of Ingathering at the turn of the year." + }, + { + "verseNum": 23, + "text": "Three times a year all your males are to appear before the Lord GOD, the God of Israel." + }, + { + "verseNum": 24, + "text": "For I will drive out the nations before you and enlarge your borders, and no one will covet your land when you go up three times a year to appear before the LORD your God." + }, + { + "verseNum": 25, + "text": "Do not offer the blood of a sacrifice to Me along with anything leavened, and do not let any of the sacrifice from the Passover Feast remain until morning." + }, + { + "verseNum": 26, + "text": "Bring the best of the firstfruits of your soil to the house of the LORD your God.\n \nYou must not cook a young goat in its mother’s milk.”" + }, + { + "verseNum": 27, + "text": "The LORD also said to Moses, “Write down these words, for in accordance with these words I have made a covenant with you and with Israel.”" + }, + { + "verseNum": 28, + "text": "So Moses was there with the LORD forty days and forty nights without eating bread or drinking water. He wrote on the tablets the words of the covenant—the Ten Commandments." + }, + { + "verseNum": 29, + "text": "And when Moses came down from Mount Sinai with the two tablets of the Testimony in his hands, he was unaware that his face had become radiant from speaking with the LORD." + }, + { + "verseNum": 30, + "text": "Aaron and all the Israelites looked at Moses, and behold, his face was radiant. And they were afraid to approach him." + }, + { + "verseNum": 31, + "text": "But Moses called out to them; so Aaron and all the leaders of the congregation returned to him, and Moses spoke to them." + }, + { + "verseNum": 32, + "text": "And after this all the Israelites came near, and Moses commanded them to do everything that the LORD had told him on Mount Sinai." + }, + { + "verseNum": 33, + "text": "When Moses had finished speaking with them, he put a veil over his face." + }, + { + "verseNum": 34, + "text": "But whenever Moses went in before the LORD to speak with Him, he would remove the veil until he came out. And when he came out, he would tell the Israelites what he had been commanded," + }, + { + "verseNum": 35, + "text": "and the Israelites would see that the face of Moses was radiant. So Moses would put the veil back over his face until he went in to speak with the LORD." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-35.json b/data/en_bible/BSB/EXO/chapter-35.json new file mode 100644 index 0000000..92158be --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-35.json @@ -0,0 +1,145 @@ +{ + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "Then Moses assembled the whole congregation of Israel and said to them, “These are the things that the LORD has commanded you to do:" + }, + { + "verseNum": 2, + "text": "For six days work may be done, but the seventh day shall be your holy day, a Sabbath of complete rest to the LORD. Whoever does any work on that day must be put to death." + }, + { + "verseNum": 3, + "text": "Do not light a fire in any of your dwellings on the Sabbath day.”" + }, + { + "verseNum": 4, + "text": "Moses also told the whole congregation of Israel, “This is what the LORD has commanded:" + }, + { + "verseNum": 5, + "text": "Take from among you an offering to the LORD. Let everyone whose heart is willing bring an offering to the LORD:\n \n gold, silver, and bronze;" + }, + { + "verseNum": 6, + "text": "blue, purple, and scarlet yarn;\n \n fine linen and goat hair;" + }, + { + "verseNum": 7, + "text": "ram skins dyed red and fine leather;\n \n acacia wood;" + }, + { + "verseNum": 8, + "text": "olive oil for the light;\n \n spices for the anointing oil and for the fragrant incense;" + }, + { + "verseNum": 9, + "text": "and onyx stones and gemstones to be mounted on the ephod and breastpiece." + }, + { + "verseNum": 10, + "text": "Let every skilled craftsman among you come and make everything that the LORD has commanded:" + }, + { + "verseNum": 11, + "text": "the tabernacle with its tent and covering, its clasps and frames, its crossbars, posts, and bases;" + }, + { + "verseNum": 12, + "text": "the ark with its poles and mercy seat, and the veil to shield it;" + }, + { + "verseNum": 13, + "text": "the table with its poles, all its utensils, and the Bread of the Presence;" + }, + { + "verseNum": 14, + "text": "the lampstand for light with its accessories and lamps and oil for the light;" + }, + { + "verseNum": 15, + "text": "the altar of incense with its poles;\n \n the anointing oil and fragrant incense;\n \n the curtain for the doorway at the entrance to the tabernacle;" + }, + { + "verseNum": 16, + "text": "the altar of burnt offering with its bronze grate, its poles, and all its utensils;\n \n the basin with its stand;" + }, + { + "verseNum": 17, + "text": "the curtains of the courtyard with its posts and bases, and the curtain for the gate of the courtyard;" + }, + { + "verseNum": 18, + "text": "the tent pegs for the tabernacle and for the courtyard, along with their ropes;" + }, + { + "verseNum": 19, + "text": "and the woven garments for ministering in the holy place—both the holy garments for Aaron the priest and the garments for his sons to serve as priests.”" + }, + { + "verseNum": 20, + "text": "Then the whole congregation of Israel withdrew from the presence of Moses." + }, + { + "verseNum": 21, + "text": "And everyone whose heart stirred him and whose spirit prompted him came and brought an offering to the LORD for the work on the Tent of Meeting, for all its services, and for the holy garments." + }, + { + "verseNum": 22, + "text": "So all who had willing hearts, both men and women, came and brought brooches and earrings, rings and necklaces, and all kinds of gold jewelry. And they all presented their gold as a wave offering to the LORD." + }, + { + "verseNum": 23, + "text": "Everyone who had blue, purple, or scarlet yarn, or fine linen, goat hair, ram skins dyed red, or articles of fine leather, brought them." + }, + { + "verseNum": 24, + "text": "And all who could present an offering of silver or bronze brought it as a contribution to the LORD. Also, everyone who had acacia wood for any part of the service brought it." + }, + { + "verseNum": 25, + "text": "Every skilled woman spun with her hands and brought what she had spun: blue, purple, or scarlet yarn, or fine linen." + }, + { + "verseNum": 26, + "text": "And all the skilled women whose hearts were stirred spun the goat hair." + }, + { + "verseNum": 27, + "text": "The leaders brought onyx stones and gemstones to mount on the ephod and breastpiece," + }, + { + "verseNum": 28, + "text": "as well as spices and olive oil for the light, for the anointing oil, and for the fragrant incense." + }, + { + "verseNum": 29, + "text": "So all the men and women of the Israelites whose hearts prompted them brought a freewill offering to the LORD for all the work that the LORD through Moses had commanded them to do." + }, + { + "verseNum": 30, + "text": "Then Moses said to the Israelites, “See, the LORD has called by name Bezalel son of Uri, the son of Hur, of the tribe of Judah." + }, + { + "verseNum": 31, + "text": "And He has filled him with the Spirit of God, with skill, ability, and knowledge in all kinds of craftsmanship," + }, + { + "verseNum": 32, + "text": "to design artistic works in gold, silver, and bronze," + }, + { + "verseNum": 33, + "text": "to cut gemstones for settings, and to carve wood, so that he may be a master of every artistic craft." + }, + { + "verseNum": 34, + "text": "And the LORD has given both him and Oholiab son of Ahisamach, of the tribe of Dan, the ability to teach others." + }, + { + "verseNum": 35, + "text": "He has filled them with skill to do all kinds of work as engravers, designers, embroiderers in blue, purple, and scarlet yarn and fine linen, and as weavers—as artistic designers of every kind of craft." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-36.json b/data/en_bible/BSB/EXO/chapter-36.json new file mode 100644 index 0000000..4c5b6a8 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-36.json @@ -0,0 +1,157 @@ +{ + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "“So Bezalel, Oholiab, and every skilled person are to carry out everything commanded by the LORD, who has given them skill and ability to know how to perform all the work of constructing the sanctuary.”" + }, + { + "verseNum": 2, + "text": "Then Moses summoned Bezalel, Oholiab, and every skilled person whom the LORD had gifted—everyone whose heart stirred him to come and do the work." + }, + { + "verseNum": 3, + "text": "They received from Moses all the contributions that the Israelites had brought to carry out the service of constructing the sanctuary.\n \nMeanwhile, the people continued to bring freewill offerings morning after morning," + }, + { + "verseNum": 4, + "text": "so that all the skilled craftsmen who were doing all the work on the sanctuary left their work" + }, + { + "verseNum": 5, + "text": "and said to Moses, “The people are bringing more than enough for doing the work the LORD has commanded us to do.”" + }, + { + "verseNum": 6, + "text": "After Moses had given an order, they sent a proclamation throughout the camp: “No man or woman should make anything else as an offering for the sanctuary.” So the people were restrained from bringing more," + }, + { + "verseNum": 7, + "text": "since what they already had was more than enough to perform all the work." + }, + { + "verseNum": 8, + "text": "All the skilled craftsmen among the workmen made the ten curtains for the tabernacle. They were made of finely spun linen, as well as blue, purple, and scarlet yarn, with cherubim skillfully worked into them." + }, + { + "verseNum": 9, + "text": "Each curtain was twenty-eight cubits long and four cubits wide; all the curtains were the same size." + }, + { + "verseNum": 10, + "text": "And he joined five of the curtains together, and the other five he joined as well." + }, + { + "verseNum": 11, + "text": "He made loops of blue material on the edge of the end curtain in the first set, and also on the end curtain in the second set." + }, + { + "verseNum": 12, + "text": "He made fifty loops on one curtain and fifty loops on the end curtain of the second set, so that the loops lined up opposite one another." + }, + { + "verseNum": 13, + "text": "He also made fifty gold clasps to join the curtains together, so that the tabernacle was a unit." + }, + { + "verseNum": 14, + "text": "He then made curtains of goat hair for the tent over the tabernacle—eleven curtains in all." + }, + { + "verseNum": 15, + "text": "Each of the eleven curtains was the same size—thirty cubits long and four cubits wide." + }, + { + "verseNum": 16, + "text": "He joined five of the curtains into one set and the other six into another." + }, + { + "verseNum": 17, + "text": "He made fifty loops along the edge of the end curtain in the first set, and fifty loops along the edge of the corresponding curtain in the second set." + }, + { + "verseNum": 18, + "text": "He also made fifty bronze clasps to join the tent together as a unit." + }, + { + "verseNum": 19, + "text": "Additionally, he made for the tent a covering of ram skins dyed red, and over that a covering of fine leather." + }, + { + "verseNum": 20, + "text": "Next, he constructed upright frames of acacia wood for the tabernacle." + }, + { + "verseNum": 21, + "text": "Each frame was ten cubits long and a cubit and a half wide." + }, + { + "verseNum": 22, + "text": "Two tenons were connected to each other for each frame. He made all the frames of the tabernacle in this way." + }, + { + "verseNum": 23, + "text": "He constructed twenty frames for the south side of the tabernacle," + }, + { + "verseNum": 24, + "text": "with forty silver bases to put under the twenty frames—two bases for each frame, one under each tenon." + }, + { + "verseNum": 25, + "text": "For the second side of the tabernacle, the north side, he made twenty frames" + }, + { + "verseNum": 26, + "text": "and forty silver bases—two bases under each frame." + }, + { + "verseNum": 27, + "text": "He made six frames for the rear of the tabernacle, the west side," + }, + { + "verseNum": 28, + "text": "and two frames for the two back corners of the tabernacle," + }, + { + "verseNum": 29, + "text": "coupled together from bottom to top and fitted into a single ring. He made both corners in this way." + }, + { + "verseNum": 30, + "text": "So there were eight frames and sixteen silver bases—two under each frame." + }, + { + "verseNum": 31, + "text": "He also made five crossbars of acacia wood for the frames on one side of the tabernacle," + }, + { + "verseNum": 32, + "text": "five for those on the other side, and five for those on the rear side of the tabernacle, to the west." + }, + { + "verseNum": 33, + "text": "He made the central crossbar to run through the center of the frames, from one end to the other." + }, + { + "verseNum": 34, + "text": "And he overlaid the frames with gold and made gold rings to hold the crossbars. He also overlaid the crossbars with gold." + }, + { + "verseNum": 35, + "text": "Next, he made the veil of blue, purple, and scarlet yarn, and finely spun linen, with cherubim skillfully worked into it." + }, + { + "verseNum": 36, + "text": "He also made four posts of acacia wood for it and overlaid them with gold, along with gold hooks; and he cast four silver bases for the posts." + }, + { + "verseNum": 37, + "text": "For the entrance to the tent, he made a curtain embroidered with blue, purple, and scarlet yarn, and finely spun linen," + }, + { + "verseNum": 38, + "text": "together with five posts and their hooks.\n \nHe overlaid the tops of the posts and their bands with gold, and their five bases were bronze." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-37.json b/data/en_bible/BSB/EXO/chapter-37.json new file mode 100644 index 0000000..3bdd5f5 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-37.json @@ -0,0 +1,121 @@ +{ + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "Bezalel went on to construct the ark of acacia wood, two and a half cubits long, a cubit and a half wide, and a cubit and a half high." + }, + { + "verseNum": 2, + "text": "He overlaid it with pure gold, both inside and out, and made a gold molding around it." + }, + { + "verseNum": 3, + "text": "And he cast four gold rings for its four feet, two rings on one side and two on the other." + }, + { + "verseNum": 4, + "text": "Then he made poles of acacia wood and overlaid them with gold." + }, + { + "verseNum": 5, + "text": "He inserted the poles into the rings on the sides of the ark in order to carry it." + }, + { + "verseNum": 6, + "text": "He constructed a mercy seat of pure gold, two and a half cubits long and a cubit and a half wide." + }, + { + "verseNum": 7, + "text": "He made two cherubim of hammered gold at the ends of the mercy seat," + }, + { + "verseNum": 8, + "text": "one cherub on one end and one on the other, all made from one piece of gold." + }, + { + "verseNum": 9, + "text": "And the cherubim had wings that spread upward, overshadowing the mercy seat. The cherubim faced each other, looking toward the mercy seat." + }, + { + "verseNum": 10, + "text": "He also made the table of acacia wood two cubits long, a cubit wide, and a cubit and a half high." + }, + { + "verseNum": 11, + "text": "He overlaid it with pure gold and made a gold molding around it." + }, + { + "verseNum": 12, + "text": "And he made a rim around it a handbreadth wide and put a gold molding on the rim." + }, + { + "verseNum": 13, + "text": "He cast four gold rings for the table and fastened them to the four corners at its four legs." + }, + { + "verseNum": 14, + "text": "The rings were placed close to the rim, to serve as holders for the poles used to carry the table." + }, + { + "verseNum": 15, + "text": "He made the poles of acacia wood for carrying the table and overlaid them with gold." + }, + { + "verseNum": 16, + "text": "He also made the utensils for the table out of pure gold: its plates and dishes, as well as its bowls and pitchers for pouring drink offerings." + }, + { + "verseNum": 17, + "text": "Then he made the lampstand out of pure hammered gold, all of one piece: its base and shaft, its cups, and its buds and petals." + }, + { + "verseNum": 18, + "text": "Six branches extended from the sides, three on one side and three on the other." + }, + { + "verseNum": 19, + "text": "There were three cups shaped like almond blossoms on the first branch, each with buds and petals, three on the next branch, and the same for all six branches that extended from the lampstand." + }, + { + "verseNum": 20, + "text": "And on the lampstand were four cups shaped like almond blossoms with buds and petals." + }, + { + "verseNum": 21, + "text": "A bud was under the first pair of branches that extended from the lampstand, a bud under the second pair, and a bud under the third pair." + }, + { + "verseNum": 22, + "text": "The buds and branches were all of one piece with the lampstand, hammered out of pure gold." + }, + { + "verseNum": 23, + "text": "He also made its seven lamps, its wick trimmers, and trays of pure gold." + }, + { + "verseNum": 24, + "text": "He made the lampstand and all its utensils from a talent of pure gold." + }, + { + "verseNum": 25, + "text": "He made the altar of incense out of acacia wood. It was square, a cubit long, a cubit wide, and two cubits high. Its horns were of one piece." + }, + { + "verseNum": 26, + "text": "And he overlaid with pure gold the top and all the sides and horns. Then he made a molding of gold around it." + }, + { + "verseNum": 27, + "text": "He made two gold rings below the molding on opposite sides to hold the poles used to carry it." + }, + { + "verseNum": 28, + "text": "And he made the poles of acacia wood and overlaid them with gold." + }, + { + "verseNum": 29, + "text": "He also made the sacred anointing oil and the pure, fragrant incense, the work of a perfumer." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-38.json b/data/en_bible/BSB/EXO/chapter-38.json new file mode 100644 index 0000000..77ac9ed --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-38.json @@ -0,0 +1,129 @@ +{ + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "Bezalel constructed the altar of burnt offering from acacia wood. It was square, five cubits long, five cubits wide, and three cubits high." + }, + { + "verseNum": 2, + "text": "He made a horn at each of its four corners, so that the horns and altar were of one piece, and he overlaid the altar with bronze." + }, + { + "verseNum": 3, + "text": "He made all the altar’s utensils of bronze—its pots, shovels, sprinkling bowls, meat forks, and firepans." + }, + { + "verseNum": 4, + "text": "He made a grate of bronze mesh for the altar under its ledge, halfway up from the bottom." + }, + { + "verseNum": 5, + "text": "At the four corners of the bronze grate he cast four rings as holders for the poles." + }, + { + "verseNum": 6, + "text": "And he made the poles of acacia wood and overlaid them with bronze." + }, + { + "verseNum": 7, + "text": "Then he inserted the poles into the rings on the sides of the altar for carrying it. He made the altar with boards so that it was hollow." + }, + { + "verseNum": 8, + "text": "Next he made the bronze basin and its stand from the mirrors of the women who served at the entrance to the Tent of Meeting." + }, + { + "verseNum": 9, + "text": "Then he constructed the courtyard. The south side of the courtyard was a hundred cubits long and had curtains of finely spun linen," + }, + { + "verseNum": 10, + "text": "with twenty posts and twenty bronze bases, and with silver hooks and bands on the posts." + }, + { + "verseNum": 11, + "text": "The north side was also a hundred cubits long, with twenty posts and twenty bronze bases. The hooks and bands of the posts were silver." + }, + { + "verseNum": 12, + "text": "The west side was fifty cubits long and had curtains, with ten posts and ten bases. The hooks and bands of the posts were silver." + }, + { + "verseNum": 13, + "text": "And the east side, toward the sunrise, was also fifty cubits long." + }, + { + "verseNum": 14, + "text": "The curtains on one side of the entrance were fifteen cubits long, with three posts and three bases." + }, + { + "verseNum": 15, + "text": "And the curtains on the other side were also fifteen cubits long, with three posts and three bases as well." + }, + { + "verseNum": 16, + "text": "All the curtains around the courtyard were made of finely spun linen." + }, + { + "verseNum": 17, + "text": "The bases for the posts were bronze, the hooks and bands were silver, and the plating for the tops of the posts was silver. So all the posts of the courtyard were banded with silver." + }, + { + "verseNum": 18, + "text": "The curtain for the entrance to the courtyard was embroidered with blue, purple, and scarlet yarn, and finely spun linen. It was twenty cubits long and, like the curtains of the courtyard, five cubits high," + }, + { + "verseNum": 19, + "text": "with four posts and four bronze bases. Their hooks were silver, as well as the bands and the plating of their tops." + }, + { + "verseNum": 20, + "text": "All the tent pegs for the tabernacle and for the surrounding courtyard were bronze." + }, + { + "verseNum": 21, + "text": "This is the inventory for the tabernacle, the tabernacle of the Testimony, as recorded at Moses’ command by the Levites under the direction of Ithamar son of Aaron the priest." + }, + { + "verseNum": 22, + "text": "Bezalel son of Uri, the son of Hur, of the tribe of Judah, made everything that the LORD had commanded Moses." + }, + { + "verseNum": 23, + "text": "With him was Oholiab son of Ahisamach, of the tribe of Dan, an engraver, designer, and embroiderer in blue, purple, and scarlet yarn and fine linen." + }, + { + "verseNum": 24, + "text": "All the gold from the wave offering used for the work on the sanctuary totaled 29 talents and 730 shekels, according to the sanctuary shekel." + }, + { + "verseNum": 25, + "text": "The silver from those numbered among the congregation totaled 100 talents and 1,775 shekels, according to the sanctuary shekel—" + }, + { + "verseNum": 26, + "text": "a beka per person, that is, half a shekel, according to the sanctuary shekel, from everyone twenty years of age or older who had crossed over to be numbered, a total of 603,550 men." + }, + { + "verseNum": 27, + "text": "The hundred talents of silver were used to cast the bases of the sanctuary and the bases of the veil—100 bases from the 100 talents, one talent per base." + }, + { + "verseNum": 28, + "text": "With the 1,775 shekels of silver he made the hooks for the posts, overlaid their tops, and supplied bands for them." + }, + { + "verseNum": 29, + "text": "The bronze from the wave offering totaled 70 talents and 2,400 shekels." + }, + { + "verseNum": 30, + "text": "He used it to make the bases for the entrance to the Tent of Meeting, the bronze altar and its bronze grating, all the utensils for the altar," + }, + { + "verseNum": 31, + "text": "the bases for the surrounding courtyard and its gate, and all the tent pegs for the tabernacle and its surrounding courtyard." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-39.json b/data/en_bible/BSB/EXO/chapter-39.json new file mode 100644 index 0000000..5d86c0a --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-39.json @@ -0,0 +1,177 @@ +{ + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "From the blue, purple, and scarlet yarn they made specially woven garments for ministry in the sanctuary, as well as the holy garments for Aaron, just as the LORD had commanded Moses." + }, + { + "verseNum": 2, + "text": "Bezalel made the ephod of finely spun linen embroidered with gold, and with blue, purple, and scarlet yarn." + }, + { + "verseNum": 3, + "text": "They hammered out thin sheets of gold and cut threads from them to interweave with the blue, purple, and scarlet yarn, and fine linen—the work of a skilled craftsman." + }, + { + "verseNum": 4, + "text": "They made shoulder pieces for the ephod, which were attached at two of its corners, so it could be fastened." + }, + { + "verseNum": 5, + "text": "And the skillfully woven waistband of the ephod was of one piece with the ephod, of the same workmanship—with gold, with blue, purple, and scarlet yarn, and with finely spun linen, just as the LORD had commanded Moses." + }, + { + "verseNum": 6, + "text": "They mounted the onyx stones in gold filigree settings, engraved like a seal with the names of the sons of Israel." + }, + { + "verseNum": 7, + "text": "Then they fastened them on the shoulder pieces of the ephod as memorial stones for the sons of Israel, as the LORD had commanded Moses." + }, + { + "verseNum": 8, + "text": "He made the breastpiece with the same workmanship as the ephod, with gold, with blue, purple, and scarlet yarn, and with finely spun linen." + }, + { + "verseNum": 9, + "text": "It was square when folded over double, a span long and a span wide." + }, + { + "verseNum": 10, + "text": "And they mounted on it four rows of gemstones:\n \n The first row had a ruby, a topaz, and an emerald;" + }, + { + "verseNum": 11, + "text": "the second row had a turquoise, a sapphire, and a diamond;" + }, + { + "verseNum": 12, + "text": "the third row had a jacinth, an agate, and an amethyst;" + }, + { + "verseNum": 13, + "text": "and the fourth row had a beryl, an onyx, and a jasper.\n \nThese stones were mounted in gold filigree settings." + }, + { + "verseNum": 14, + "text": "The twelve stones corresponded to the names of the sons of Israel. Each stone was engraved like a seal with the name of one of the twelve tribes." + }, + { + "verseNum": 15, + "text": "For the breastpiece they made braided chains like cords of pure gold." + }, + { + "verseNum": 16, + "text": "They also made two gold filigree settings and two gold rings, and fastened the two rings to the two corners of the breastpiece." + }, + { + "verseNum": 17, + "text": "Then they fastened the two gold chains to the two gold rings at the corners of the breastpiece," + }, + { + "verseNum": 18, + "text": "and they fastened the other ends of the two chains to the two filigree settings, attaching them to the shoulder pieces of the ephod at the front." + }, + { + "verseNum": 19, + "text": "They made two more gold rings and attached them to the other two corners of the breastpiece, on the inside edge next to the ephod." + }, + { + "verseNum": 20, + "text": "They made two additional gold rings and attached them to the bottom of the two shoulder pieces of the ephod, on its front, near the seam just above its woven waistband." + }, + { + "verseNum": 21, + "text": "Then they tied the rings of the breastpiece to the rings of the ephod with a cord of blue yarn, so that the breastpiece was above the waistband of the ephod and would not swing out from the ephod, just as the LORD had commanded Moses." + }, + { + "verseNum": 22, + "text": "They made the robe of the ephod entirely of blue cloth, the work of a weaver," + }, + { + "verseNum": 23, + "text": "with an opening in the center of the robe like that of a garment, with a collar around the opening so that it would not tear." + }, + { + "verseNum": 24, + "text": "They made pomegranates of blue, purple, and scarlet yarn and finely spun linen on the lower hem of the robe." + }, + { + "verseNum": 25, + "text": "They also made bells of pure gold and attached them around the hem between the pomegranates," + }, + { + "verseNum": 26, + "text": "alternating the bells and pomegranates around the lower hem of the robe to be worn for ministry, just as the LORD had commanded Moses." + }, + { + "verseNum": 27, + "text": "For Aaron and his sons they made tunics of fine linen, the work of a weaver," + }, + { + "verseNum": 28, + "text": "as well as the turban of fine linen, the ornate headbands and undergarments of finely spun linen," + }, + { + "verseNum": 29, + "text": "and the sash of finely spun linen, embroidered with blue, purple, and scarlet yarn, just as the LORD had commanded Moses." + }, + { + "verseNum": 30, + "text": "They also made the plate of the holy crown of pure gold, and they engraved on it, like an inscription on a seal:\n \n HOLY TO THE LORD." + }, + { + "verseNum": 31, + "text": "Then they fastened to it a blue cord to mount it on the turban, just as the LORD had commanded Moses." + }, + { + "verseNum": 32, + "text": "So all the work for the tabernacle, the Tent of Meeting, was completed. The Israelites did everything just as the LORD had commanded Moses." + }, + { + "verseNum": 33, + "text": "Then they brought the tabernacle to Moses:\n \n the tent with all its furnishings, its clasps, its frames, its crossbars, and its posts and bases;" + }, + { + "verseNum": 34, + "text": "the covering of ram skins dyed red, the covering of fine leather, and the veil of the covering;" + }, + { + "verseNum": 35, + "text": "the ark of the Testimony with its poles and the mercy seat;" + }, + { + "verseNum": 36, + "text": "the table with all its utensils and the Bread of the Presence;" + }, + { + "verseNum": 37, + "text": "the pure gold lampstand with its row of lamps and all its utensils, as well as the oil for the light;" + }, + { + "verseNum": 38, + "text": "the gold altar, the anointing oil, the fragrant incense, and the curtain for the entrance to the tent;" + }, + { + "verseNum": 39, + "text": "the bronze altar with its bronze grating, its poles, and all its utensils;\n \n the basin with its stand;" + }, + { + "verseNum": 40, + "text": "the curtains of the courtyard with its posts and bases;\n \n the curtain for the gate of the courtyard, its ropes and tent pegs, and all the equipment for the service of the tabernacle, the Tent of Meeting;" + }, + { + "verseNum": 41, + "text": "and the woven garments for ministering in the sanctuary, both the holy garments for Aaron the priest and the garments for his sons to serve as priests." + }, + { + "verseNum": 42, + "text": "The Israelites had done all the work just as the LORD had commanded Moses." + }, + { + "verseNum": 43, + "text": "And Moses inspected all the work and saw that they had accomplished it just as the LORD had commanded. So Moses blessed them." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-4.json b/data/en_bible/BSB/EXO/chapter-4.json new file mode 100644 index 0000000..2bab838 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-4.json @@ -0,0 +1,129 @@ +{ + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Then Moses answered, “What if they do not believe me or listen to my voice? For they may say, ‘The LORD has not appeared to you.’”" + }, + { + "verseNum": 2, + "text": "And the LORD asked him, “What is that in your hand?”\n \n“A staff,” he replied." + }, + { + "verseNum": 3, + "text": "“Throw it on the ground,” said the LORD. So Moses threw it on the ground, and it became a snake, and he ran from it." + }, + { + "verseNum": 4, + "text": "“Stretch out your hand and grab it by the tail,” the LORD said to Moses, who reached out his hand and caught the snake, and it turned back into a staff in his hand." + }, + { + "verseNum": 5, + "text": "“This is so that they may believe that the LORD, the God of their fathers—the God of Abraham, the God of Isaac, and the God of Jacob—has appeared to you.”" + }, + { + "verseNum": 6, + "text": "Furthermore, the LORD said to Moses, “Put your hand inside your cloak.” So he put his hand inside his cloak, and when he took it out, his hand was leprous, white as snow." + }, + { + "verseNum": 7, + "text": "“Put your hand back inside your cloak,” said the LORD.\n \nSo Moses put his hand back inside his cloak, and when he took it out, it was restored, like the rest of his skin." + }, + { + "verseNum": 8, + "text": "And the LORD said, “If they refuse to believe you or heed the witness of the first sign, they may believe that of the second." + }, + { + "verseNum": 9, + "text": "But if they do not believe even these two signs or listen to your voice, take some water from the Nile and pour it on the dry ground. Then the water you take from the Nile will become blood on the ground.”" + }, + { + "verseNum": 10, + "text": "“Please, Lord,” Moses replied, “I have never been eloquent, neither in the past nor since You have spoken to Your servant, for I am slow of speech and tongue.”" + }, + { + "verseNum": 11, + "text": "And the LORD said to him, “Who gave man his mouth? Or who makes the mute or the deaf, the sighted or the blind? Is it not I, the LORD?" + }, + { + "verseNum": 12, + "text": "Now go! I will help you as you speak, and I will teach you what to say.”" + }, + { + "verseNum": 13, + "text": "But Moses replied, “Please, Lord, send someone else.”" + }, + { + "verseNum": 14, + "text": "Then the anger of the LORD burned against Moses, and He said, “Is not Aaron the Levite your brother? I know that he can speak well, and he is now on his way to meet you. When he sees you, he will be glad in his heart." + }, + { + "verseNum": 15, + "text": "You are to speak to him and put the words in his mouth. I will help both of you to speak, and I will teach you what to do." + }, + { + "verseNum": 16, + "text": "He will speak to the people for you. He will be your spokesman, and it will be as if you were God to him." + }, + { + "verseNum": 17, + "text": "But take this staff in your hand so you can perform signs with it.”" + }, + { + "verseNum": 18, + "text": "Then Moses went back to his father-in-law Jethro and said to him, “Please let me return to my brothers in Egypt to see if they are still alive.”\n \n“Go in peace,” Jethro replied." + }, + { + "verseNum": 19, + "text": "Now the LORD had said to Moses in Midian, “Go back to Egypt, for all the men who sought to kill you are dead.”" + }, + { + "verseNum": 20, + "text": "So Moses took his wife and sons, put them on a donkey, and headed back to Egypt. And he took the staff of God in his hand." + }, + { + "verseNum": 21, + "text": "The LORD instructed Moses, “When you go back to Egypt, see that you perform before Pharaoh all the wonders that I have put within your power. But I will harden his heart so that he will not let the people go." + }, + { + "verseNum": 22, + "text": "Then tell Pharaoh that this is what the LORD says: ‘Israel is My firstborn son," + }, + { + "verseNum": 23, + "text": "and I told you to let My son go so that he may worship Me. But since you have refused to let him go, behold, I will kill your firstborn son!’”" + }, + { + "verseNum": 24, + "text": "Now at a lodging place along the way, the LORD met Moses and was about to kill him." + }, + { + "verseNum": 25, + "text": "But Zipporah took a flint knife, cut off her son’s foreskin, and touched it to Moses’ feet. “Surely you are a bridegroom of blood to me,” she said." + }, + { + "verseNum": 26, + "text": "So the LORD let him alone. (When she said, “bridegroom of blood,” she was referring to the circumcision.)" + }, + { + "verseNum": 27, + "text": "Meanwhile, the LORD had said to Aaron, “Go and meet Moses in the wilderness.” So he went and met Moses at the mountain of God and kissed him." + }, + { + "verseNum": 28, + "text": "And Moses told Aaron everything the LORD had sent him to say, and all the signs He had commanded him to perform." + }, + { + "verseNum": 29, + "text": "Then Moses and Aaron went and assembled all the elders of the Israelites," + }, + { + "verseNum": 30, + "text": "and Aaron relayed everything the LORD had said to Moses.\n \nAnd Moses performed the signs before the people," + }, + { + "verseNum": 31, + "text": "and they believed. And when they heard that the LORD had attended to the Israelites and had seen their affliction, they bowed down and worshiped." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-40.json b/data/en_bible/BSB/EXO/chapter-40.json new file mode 100644 index 0000000..234b49b --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-40.json @@ -0,0 +1,157 @@ +{ + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“On the first day of the first month you are to set up the tabernacle, the Tent of Meeting." + }, + { + "verseNum": 3, + "text": "Put the ark of the Testimony in it and screen off the ark with the veil." + }, + { + "verseNum": 4, + "text": "Then bring in the table and set out its arrangement; bring in the lampstand as well, and set up its lamps." + }, + { + "verseNum": 5, + "text": "Place the gold altar of incense in front of the ark of the Testimony, and hang the curtain at the entrance to the tabernacle." + }, + { + "verseNum": 6, + "text": "Place the altar of burnt offering in front of the entrance to the tabernacle, the Tent of Meeting." + }, + { + "verseNum": 7, + "text": "And place the basin between the Tent of Meeting and the altar, and put water in it." + }, + { + "verseNum": 8, + "text": "Set up the surrounding courtyard and hang the curtain for the entrance to the courtyard." + }, + { + "verseNum": 9, + "text": "Take the anointing oil and anoint the tabernacle and everything in it; consecrate it along with all its furnishings, and it shall be holy." + }, + { + "verseNum": 10, + "text": "Anoint the altar of burnt offering and all its utensils; consecrate the altar, and it shall be most holy." + }, + { + "verseNum": 11, + "text": "Anoint the basin and its stand and consecrate them." + }, + { + "verseNum": 12, + "text": "Then bring Aaron and his sons to the entrance to the Tent of Meeting and wash them with water." + }, + { + "verseNum": 13, + "text": "And you are to clothe Aaron with the holy garments, anoint him, and consecrate him, so that he may serve Me as a priest." + }, + { + "verseNum": 14, + "text": "Bring his sons forward and clothe them with tunics." + }, + { + "verseNum": 15, + "text": "Anoint them just as you anointed their father, so that they may also serve Me as priests. Their anointing will qualify them for a permanent priesthood throughout their generations.”" + }, + { + "verseNum": 16, + "text": "Moses did everything just as the LORD had commanded him." + }, + { + "verseNum": 17, + "text": "So the tabernacle was set up on the first day of the first month of the second year." + }, + { + "verseNum": 18, + "text": "When Moses set up the tabernacle, he laid its bases, positioned its frames, inserted its crossbars, and set up its posts." + }, + { + "verseNum": 19, + "text": "Then he spread the tent over the tabernacle and put the covering over the tent, just as the LORD had commanded him." + }, + { + "verseNum": 20, + "text": "Moses took the Testimony and placed it in the ark, attaching the poles to the ark; and he set the mercy seat atop the ark." + }, + { + "verseNum": 21, + "text": "Then he brought the ark into the tabernacle, put up the veil for the screen, and shielded off the ark of the Testimony, just as the LORD had commanded him." + }, + { + "verseNum": 22, + "text": "Moses placed the table in the Tent of Meeting on the north side of the tabernacle, outside the veil." + }, + { + "verseNum": 23, + "text": "He arranged the bread on it before the LORD, just as the LORD had commanded him." + }, + { + "verseNum": 24, + "text": "He also placed the lampstand in the Tent of Meeting opposite the table on the south side of the tabernacle" + }, + { + "verseNum": 25, + "text": "and set up the lamps before the LORD, just as the LORD had commanded him." + }, + { + "verseNum": 26, + "text": "Moses placed the gold altar in the Tent of Meeting, in front of the veil," + }, + { + "verseNum": 27, + "text": "and he burned fragrant incense on it, just as the LORD had commanded him." + }, + { + "verseNum": 28, + "text": "Then he put up the curtain at the entrance to the tabernacle." + }, + { + "verseNum": 29, + "text": "He placed the altar of burnt offering near the entrance to the tabernacle, the Tent of Meeting, and offered on it the burnt offering and the grain offering, just as the LORD had commanded him." + }, + { + "verseNum": 30, + "text": "He placed the basin between the Tent of Meeting and the altar and put water in it for washing;" + }, + { + "verseNum": 31, + "text": "and from it Moses, Aaron, and his sons washed their hands and feet." + }, + { + "verseNum": 32, + "text": "They washed whenever they entered the Tent of Meeting or approached the altar, just as the LORD had commanded Moses." + }, + { + "verseNum": 33, + "text": "And Moses set up the courtyard around the tabernacle and the altar, and he hung the curtain for the entrance to the courtyard. So Moses finished the work." + }, + { + "verseNum": 34, + "text": "Then the cloud covered the Tent of Meeting, and the glory of the LORD filled the tabernacle." + }, + { + "verseNum": 35, + "text": "Moses was unable to enter the Tent of Meeting because the cloud had settled on it, and the glory of the LORD filled the tabernacle." + }, + { + "verseNum": 36, + "text": "Whenever the cloud was lifted from above the tabernacle, the Israelites would set out through all the stages of their journey." + }, + { + "verseNum": 37, + "text": "If the cloud was not lifted, they would not set out until the day it was taken up." + }, + { + "verseNum": 38, + "text": "For the cloud of the LORD was over the tabernacle by day, and fire was in the cloud by night, in the sight of all the house of Israel through all their journeys." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-5.json b/data/en_bible/BSB/EXO/chapter-5.json new file mode 100644 index 0000000..491448c --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-5.json @@ -0,0 +1,97 @@ +{ + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "After that, Moses and Aaron went to Pharaoh and said, “This is what the LORD, the God of Israel, says: ‘Let My people go, so that they may hold a feast to Me in the wilderness.’”" + }, + { + "verseNum": 2, + "text": "But Pharaoh replied, “Who is the LORD that I should obey His voice and let Israel go? I do not know the LORD, and I will not let Israel go.”" + }, + { + "verseNum": 3, + "text": "“The God of the Hebrews has met with us,” they answered. “Please let us go on a three-day journey into the wilderness to sacrifice to the LORD our God, or He may strike us with plagues or with the sword.”" + }, + { + "verseNum": 4, + "text": "But the king of Egypt said to them, “Moses and Aaron, why do you draw the people away from their work? Get back to your labor!”" + }, + { + "verseNum": 5, + "text": "Pharaoh also said, “Look, the people of the land are now numerous, and you would be stopping them from their labor.”" + }, + { + "verseNum": 6, + "text": "That same day Pharaoh commanded the taskmasters of the people and their foremen:" + }, + { + "verseNum": 7, + "text": "“You shall no longer supply the people with straw for making bricks. They must go and gather their own straw." + }, + { + "verseNum": 8, + "text": "But require of them the same quota of bricks as before; do not reduce it. For they are lazy; that is why they are crying out, ‘Let us go and sacrifice to our God.’" + }, + { + "verseNum": 9, + "text": "Make the work harder on the men so they will be occupied and pay no attention to these lies.”" + }, + { + "verseNum": 10, + "text": "So the taskmasters and foremen of the people went out and said to them, “This is what Pharaoh says: ‘I am no longer giving you straw." + }, + { + "verseNum": 11, + "text": "Go and get your own straw wherever you can find it; but your workload will in no way be reduced.’”" + }, + { + "verseNum": 12, + "text": "So the people scattered all over the land of Egypt to gather stubble for straw." + }, + { + "verseNum": 13, + "text": "The taskmasters kept pressing them, saying, “Fulfill your quota each day, just as you did when straw was provided.”" + }, + { + "verseNum": 14, + "text": "Then the Israelite foremen, whom Pharaoh’s taskmasters had set over the people, were beaten and asked, “Why have you not fulfilled your quota of bricks yesterday or today, as you did before?”" + }, + { + "verseNum": 15, + "text": "So the Israelite foremen went and appealed to Pharaoh: “Why are you treating your servants this way?" + }, + { + "verseNum": 16, + "text": "No straw has been given to your servants, yet we are told, ‘Make bricks!’ Look, your servants are being beaten, but the fault is with your own people.”" + }, + { + "verseNum": 17, + "text": "“You are slackers!” Pharaoh replied. “Slackers! That is why you keep saying, ‘Let us go and sacrifice to the LORD.’" + }, + { + "verseNum": 18, + "text": "Now get to work. You will be given no straw, yet you must deliver the full quota of bricks.”" + }, + { + "verseNum": 19, + "text": "The Israelite foremen realized they were in trouble when they were told, “You must not reduce your daily quota of bricks.”" + }, + { + "verseNum": 20, + "text": "When they left Pharaoh, they confronted Moses and Aaron, who stood waiting to meet them." + }, + { + "verseNum": 21, + "text": "“May the LORD look upon you and judge you,” the foremen said, “for you have made us a stench before Pharaoh and his officials; you have placed in their hand a sword to kill us!”" + }, + { + "verseNum": 22, + "text": "So Moses returned to the LORD and asked, “Lord, why have You brought trouble upon this people? Is this why You sent me?" + }, + { + "verseNum": 23, + "text": "Ever since I went to Pharaoh to speak in Your name, he has brought trouble on this people, and You have not delivered Your people in any way.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-6.json b/data/en_bible/BSB/EXO/chapter-6.json new file mode 100644 index 0000000..3f568d6 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-6.json @@ -0,0 +1,125 @@ +{ + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "But the LORD said to Moses, “Now you will see what I will do to Pharaoh, for because of My mighty hand he will let the people go; because of My strong hand he will drive them out of his land.”" + }, + { + "verseNum": 2, + "text": "God also told Moses, “I am the LORD." + }, + { + "verseNum": 3, + "text": "I appeared to Abraham, to Isaac, and to Jacob as God Almighty, but by My name the LORD I did not make Myself known to them." + }, + { + "verseNum": 4, + "text": "I also established My covenant with them to give them the land of Canaan, the land where they lived as foreigners." + }, + { + "verseNum": 5, + "text": "Furthermore, I have heard the groaning of the Israelites, whom the Egyptians are enslaving, and I have remembered My covenant." + }, + { + "verseNum": 6, + "text": "Therefore tell the Israelites: ‘I am the LORD, and I will bring you out from under the yoke of the Egyptians and deliver you from their bondage. I will redeem you with an outstretched arm and with mighty acts of judgment." + }, + { + "verseNum": 7, + "text": "I will take you as My own people, and I will be your God. Then you will know that I am the LORD your God, who brought you out from under the yoke of the Egyptians." + }, + { + "verseNum": 8, + "text": "And I will bring you into the land that I swore to give to Abraham, Isaac, and Jacob. I will give it to you as a possession. I am the LORD!’”" + }, + { + "verseNum": 9, + "text": "Moses relayed this message to the Israelites, but on account of their broken spirit and cruel bondage, they did not listen to him." + }, + { + "verseNum": 10, + "text": "So the LORD said to Moses," + }, + { + "verseNum": 11, + "text": "“Go and tell Pharaoh king of Egypt to let the Israelites go out of his land.”" + }, + { + "verseNum": 12, + "text": "But in the LORD’s presence Moses replied, “If the Israelites will not listen to me, then why would Pharaoh listen to me, since I am unskilled in speech?”" + }, + { + "verseNum": 13, + "text": "Then the LORD spoke to Moses and Aaron and gave them a charge concerning both the Israelites and Pharaoh king of Egypt, to bring the Israelites out of the land of Egypt." + }, + { + "verseNum": 14, + "text": "These were the heads of their fathers’ houses:\n \n The sons of Reuben, the firstborn of Israel, were Hanoch and Pallu, Hezron and Carmi. These were the clans of Reuben." + }, + { + "verseNum": 15, + "text": "The sons of Simeon were Jemuel, Jamin, Ohad, Jachin, Zohar, and Shaul, the son of a Canaanite woman. These were the clans of Simeon." + }, + { + "verseNum": 16, + "text": "These were the names of the sons of Levi according to their records: Gershon, Kohath, and Merari. Levi lived 137 years." + }, + { + "verseNum": 17, + "text": "The sons of Gershon were Libni and Shimei, by their clans." + }, + { + "verseNum": 18, + "text": "The sons of Kohath were Amram, Izhar, Hebron, and Uzziel. Kohath lived 133 years." + }, + { + "verseNum": 19, + "text": "The sons of Merari were Mahli and Mushi.\n \n These were the clans of the Levites according to their records." + }, + { + "verseNum": 20, + "text": "And Amram married his father’s sister Jochebed, and she bore him Aaron and Moses. Amram lived 137 years." + }, + { + "verseNum": 21, + "text": "The sons of Izhar were Korah, Nepheg, and Zichri." + }, + { + "verseNum": 22, + "text": "The sons of Uzziel were Mishael, Elzaphan, and Sithri." + }, + { + "verseNum": 23, + "text": "And Aaron married Elisheba, the daughter of Amminadab and sister of Nahshon, and she bore him Nadab and Abihu, Eleazar and Ithamar." + }, + { + "verseNum": 24, + "text": "The sons of Korah were Assir, Elkanah, and Abiasaph. These were the clans of the Korahites." + }, + { + "verseNum": 25, + "text": "Aaron’s son Eleazar married one of the daughters of Putiel, and she bore him Phinehas.\n \n These were the heads of the Levite families by their clans." + }, + { + "verseNum": 26, + "text": "It was this Aaron and Moses to whom the LORD said, “Bring the Israelites out of the land of Egypt by their divisions.”" + }, + { + "verseNum": 27, + "text": "Moses and Aaron were the ones who spoke to Pharaoh king of Egypt in order to bring the Israelites out of Egypt." + }, + { + "verseNum": 28, + "text": "Now on the day that the LORD spoke to Moses in Egypt," + }, + { + "verseNum": 29, + "text": "He said to him, “I am the LORD; tell Pharaoh king of Egypt everything I say to you.”" + }, + { + "verseNum": 30, + "text": "But in the LORD’s presence Moses replied, “Since I am unskilled in speech, why would Pharaoh listen to me?”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-7.json b/data/en_bible/BSB/EXO/chapter-7.json new file mode 100644 index 0000000..a6723f6 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-7.json @@ -0,0 +1,105 @@ +{ + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "The LORD answered Moses, “See, I have made you like God to Pharaoh, and your brother Aaron will be your prophet." + }, + { + "verseNum": 2, + "text": "You are to speak all that I command you, and your brother Aaron is to tell Pharaoh to let the Israelites go out of his land." + }, + { + "verseNum": 3, + "text": "But I will harden Pharaoh’s heart, and though I will multiply My signs and wonders in the land of Egypt," + }, + { + "verseNum": 4, + "text": "Pharaoh will not listen to you.\n \nThen I will lay My hand on Egypt, and by mighty acts of judgment I will bring the divisions of My people the Israelites out of the land of Egypt." + }, + { + "verseNum": 5, + "text": "And the Egyptians will know that I am the LORD, when I stretch out My hand against Egypt and bring the Israelites out from among them.”" + }, + { + "verseNum": 6, + "text": "So Moses and Aaron did just as the LORD had commanded them." + }, + { + "verseNum": 7, + "text": "Moses was eighty years old and Aaron was eighty-three when they spoke to Pharaoh." + }, + { + "verseNum": 8, + "text": "The LORD said to Moses and Aaron," + }, + { + "verseNum": 9, + "text": "“When Pharaoh tells you, ‘Perform a miracle,’ you are to say to Aaron, ‘Take your staff and throw it down before Pharaoh,’ and it will become a serpent.”" + }, + { + "verseNum": 10, + "text": "So Moses and Aaron went to Pharaoh and did just as the LORD had commanded. Aaron threw his staff down before Pharaoh and his officials, and it became a serpent." + }, + { + "verseNum": 11, + "text": "But Pharaoh called the wise men and sorcerers and magicians of Egypt, and they also did the same things by their magic arts." + }, + { + "verseNum": 12, + "text": "Each one threw down his staff, and it became a serpent. But Aaron’s staff swallowed up the other staffs." + }, + { + "verseNum": 13, + "text": "Still, Pharaoh’s heart was hardened, and he would not listen to them, just as the LORD had said." + }, + { + "verseNum": 14, + "text": "Then the LORD said to Moses, “Pharaoh’s heart is unyielding; he refuses to let the people go." + }, + { + "verseNum": 15, + "text": "Go to Pharaoh in the morning as you see him walking out to the water. Wait on the bank of the Nile to meet him, and take in your hand the staff that was changed into a snake." + }, + { + "verseNum": 16, + "text": "Then say to him, ‘The LORD, the God of the Hebrews, has sent me to tell you: Let My people go, so that they may worship Me in the wilderness. But you have not listened until now." + }, + { + "verseNum": 17, + "text": "This is what the LORD says: By this you will know that I am the LORD. Behold, with the staff in my hand I will strike the water of the Nile, and it will turn to blood." + }, + { + "verseNum": 18, + "text": "The fish in the Nile will die, the river will stink, and the Egyptians will be unable to drink its water.’”" + }, + { + "verseNum": 19, + "text": "And the LORD said to Moses, “Tell Aaron, ‘Take your staff and stretch out your hand over the waters of Egypt—over their rivers and canals and ponds and reservoirs—that they may become blood.’ There will be blood throughout the land of Egypt, even in the vessels of wood and stone.”" + }, + { + "verseNum": 20, + "text": "Moses and Aaron did just as the LORD had commanded; in the presence of Pharaoh and his officials, Aaron raised the staff and struck the water of the Nile, and all the water was turned to blood." + }, + { + "verseNum": 21, + "text": "The fish in the Nile died, and the river smelled so bad that the Egyptians could not drink its water. And there was blood throughout the land of Egypt." + }, + { + "verseNum": 22, + "text": "But the magicians of Egypt did the same things by their magic arts. So Pharaoh’s heart was hardened, and he would not listen to Moses and Aaron, just as the LORD had said." + }, + { + "verseNum": 23, + "text": "Instead, Pharaoh turned around, went into his palace, and did not take any of this to heart." + }, + { + "verseNum": 24, + "text": "So all the Egyptians dug around the Nile for water to drink, because they could not drink the water from the river." + }, + { + "verseNum": 25, + "text": "And seven full days passed after the LORD had struck the Nile." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-8.json b/data/en_bible/BSB/EXO/chapter-8.json new file mode 100644 index 0000000..b83cdf0 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-8.json @@ -0,0 +1,133 @@ +{ + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Go to Pharaoh and tell him that this is what the LORD says: ‘Let My people go, so that they may worship Me." + }, + { + "verseNum": 2, + "text": "But if you refuse to let them go, I will plague your whole country with frogs." + }, + { + "verseNum": 3, + "text": "The Nile will teem with frogs, and they will come into your palace and up to your bedroom and onto your bed, into the houses of your officials and your people, and into your ovens and kneading bowls." + }, + { + "verseNum": 4, + "text": "The frogs will come up on you and your people and all your officials.’”" + }, + { + "verseNum": 5, + "text": "And the LORD said to Moses, “Tell Aaron, ‘Stretch out your hand with your staff over the rivers and canals and ponds, and cause the frogs to come up onto the land of Egypt.’”" + }, + { + "verseNum": 6, + "text": "So Aaron stretched out his hand over the waters of Egypt, and the frogs came up and covered the land of Egypt." + }, + { + "verseNum": 7, + "text": "But the magicians did the same thing by their magic arts, and they also brought frogs up onto the land of Egypt." + }, + { + "verseNum": 8, + "text": "Pharaoh summoned Moses and Aaron and said, “Pray to the LORD to take the frogs away from me and my people. Then I will let your people go, that they may sacrifice to the LORD.”" + }, + { + "verseNum": 9, + "text": "Moses said to Pharaoh, “You may have the honor over me. When shall I pray for you and your officials and your people that the frogs (except for those in the Nile) may be taken away from you and your houses?”" + }, + { + "verseNum": 10, + "text": "“Tomorrow,” Pharaoh answered.\n \n“May it be as you say,” Moses replied, “so that you may know that there is no one like the LORD our God." + }, + { + "verseNum": 11, + "text": "The frogs will depart from you and your houses and your officials and your people; they will remain only in the Nile.”" + }, + { + "verseNum": 12, + "text": "After Moses and Aaron had left Pharaoh, Moses cried out to the LORD for help with the frogs that He had brought against Pharaoh." + }, + { + "verseNum": 13, + "text": "And the LORD did as Moses requested, and the frogs in the houses, the courtyards, and the fields died." + }, + { + "verseNum": 14, + "text": "They were piled into countless heaps, and there was a terrible stench in the land." + }, + { + "verseNum": 15, + "text": "When Pharaoh saw that there was relief, however, he hardened his heart and would not listen to Moses and Aaron, just as the LORD had said." + }, + { + "verseNum": 16, + "text": "Then the LORD said to Moses, “Tell Aaron, ‘Stretch out your staff and strike the dust of the earth, that it may turn into swarms of gnats throughout the land of Egypt.’”" + }, + { + "verseNum": 17, + "text": "This they did, and when Aaron stretched out his hand with his staff and struck the dust of the earth, gnats came upon man and beast. All the dust of the earth turned into gnats throughout the land of Egypt." + }, + { + "verseNum": 18, + "text": "The magicians tried to produce gnats using their magic arts, but they could not. And the gnats remained on man and beast." + }, + { + "verseNum": 19, + "text": "“This is the finger of God,” the magicians said to Pharaoh. But Pharaoh’s heart was hardened, and he would not listen to them, just as the LORD had said." + }, + { + "verseNum": 20, + "text": "Then the LORD said to Moses, “Get up early in the morning, and when Pharaoh goes out to the water, stand before him and tell him that this is what the LORD says: ‘Let My people go, so that they may worship Me." + }, + { + "verseNum": 21, + "text": "But if you will not let My people go, I will send swarms of flies upon you and your officials and your people and your houses. The houses of the Egyptians and even the ground where they stand will be full of flies." + }, + { + "verseNum": 22, + "text": "But on that day I will give special treatment to the land of Goshen, where My people live; no swarms of flies will be found there. In this way you will know that I, the LORD, am in the land." + }, + { + "verseNum": 23, + "text": "I will make a distinction between My people and your people. This sign will take place tomorrow.’”" + }, + { + "verseNum": 24, + "text": "And the LORD did so. Thick swarms of flies poured into Pharaoh’s palace and into the houses of his officials. Throughout Egypt the land was ruined by swarms of flies." + }, + { + "verseNum": 25, + "text": "Then Pharaoh summoned Moses and Aaron and said, “Go, sacrifice to your God within this land.”" + }, + { + "verseNum": 26, + "text": "But Moses replied, “It would not be right to do that, because the sacrifices we offer to the LORD our God would be detestable to the Egyptians. If we offer sacrifices that are detestable before the Egyptians, will they not stone us?" + }, + { + "verseNum": 27, + "text": "We must make a three-day journey into the wilderness and sacrifice to the LORD our God as He commands us.”" + }, + { + "verseNum": 28, + "text": "Pharaoh answered, “I will let you go and sacrifice to the LORD your God in the wilderness, but you must not go very far. Now pray for me.”" + }, + { + "verseNum": 29, + "text": "“As soon as I leave you,” Moses said, “I will pray to the LORD, so that tomorrow the swarms of flies will depart from Pharaoh and his officials and his people. But Pharaoh must not act deceitfully again by refusing to let the people go and sacrifice to the LORD.”" + }, + { + "verseNum": 30, + "text": "Then Moses left Pharaoh and prayed to the LORD," + }, + { + "verseNum": 31, + "text": "and the LORD did as Moses requested. He removed the swarms of flies from Pharaoh and his officials and his people; not one fly remained." + }, + { + "verseNum": 32, + "text": "But Pharaoh hardened his heart this time as well, and he would not let the people go." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-9.json b/data/en_bible/BSB/EXO/chapter-9.json new file mode 100644 index 0000000..81b53d7 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-9.json @@ -0,0 +1,145 @@ +{ + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Go to Pharaoh and tell him that this is what the LORD, the God of the Hebrews, says: ‘Let My people go, so that they may worship Me." + }, + { + "verseNum": 2, + "text": "But if you continue to restrain them and refuse to let them go," + }, + { + "verseNum": 3, + "text": "then the hand of the LORD will bring a severe plague on your livestock in the field—on your horses, donkeys, camels, herds, and flocks." + }, + { + "verseNum": 4, + "text": "But the LORD will make a distinction between the livestock of Israel and the livestock of Egypt, so that no animal belonging to the Israelites will die.’”" + }, + { + "verseNum": 5, + "text": "The LORD set a time, saying, “Tomorrow the LORD will do this in the land.”" + }, + { + "verseNum": 6, + "text": "And the next day the LORD did just that. All the livestock of the Egyptians died, but not one animal belonging to the Israelites died." + }, + { + "verseNum": 7, + "text": "Pharaoh sent officials and found that none of the livestock of the Israelites had died. But Pharaoh’s heart was hardened, and he would not let the people go." + }, + { + "verseNum": 8, + "text": "Then the LORD said to Moses and Aaron, “Take handfuls of soot from the furnace; in the sight of Pharaoh, Moses is to toss it into the air." + }, + { + "verseNum": 9, + "text": "It will become fine dust over all the land of Egypt, and festering boils will break out on man and beast throughout the land.”" + }, + { + "verseNum": 10, + "text": "So they took soot from the furnace and stood before Pharaoh. Moses tossed it into the air, and festering boils broke out on man and beast." + }, + { + "verseNum": 11, + "text": "The magicians could not stand before Moses, because the boils had broken out on them and on all the Egyptians." + }, + { + "verseNum": 12, + "text": "But the LORD hardened Pharaoh’s heart, and he would not listen to them, just as the LORD had said to Moses." + }, + { + "verseNum": 13, + "text": "Then the LORD said to Moses, “Get up early in the morning, stand before Pharaoh, and tell him that this is what the LORD, the God of the Hebrews, says: ‘Let My people go, so that they may worship Me." + }, + { + "verseNum": 14, + "text": "Otherwise, I will send all My plagues against you and your officials and your people, so you may know that there is no one like Me in all the earth." + }, + { + "verseNum": 15, + "text": "For by this time I could have stretched out My hand and struck you and your people with a plague to wipe you off the earth." + }, + { + "verseNum": 16, + "text": "But I have raised you up for this very purpose, that I might display My power to you, and that My name might be proclaimed in all the earth." + }, + { + "verseNum": 17, + "text": "Still, you lord it over My people and do not allow them to go." + }, + { + "verseNum": 18, + "text": "Behold, at this time tomorrow I will rain down the worst hail that has ever fallen on Egypt, from the day it was founded until now." + }, + { + "verseNum": 19, + "text": "So give orders now to shelter your livestock and everything you have in the field. Every man or beast that remains in the field and is not brought inside will die when the hail comes down upon them.’”" + }, + { + "verseNum": 20, + "text": "Those among Pharaoh’s officials who feared the word of the LORD hurried to bring their servants and livestock to shelter," + }, + { + "verseNum": 21, + "text": "but those who disregarded the word of the LORD left their servants and livestock in the field." + }, + { + "verseNum": 22, + "text": "Then the LORD said to Moses, “Stretch out your hand toward heaven, so that hail may fall on all the land of Egypt—on man and beast and every plant of the field throughout the land of Egypt.”" + }, + { + "verseNum": 23, + "text": "So Moses stretched out his staff toward heaven, and the LORD sent thunder and hail, and lightning struck the earth. So the LORD rained down hail upon the land of Egypt." + }, + { + "verseNum": 24, + "text": "The hail fell and the lightning continued flashing through it. The hail was so severe that nothing like it had ever been seen in all the land of Egypt from the time it became a nation." + }, + { + "verseNum": 25, + "text": "Throughout the land of Egypt, the hail struck down everything in the field, both man and beast; it beat down every plant of the field and stripped every tree." + }, + { + "verseNum": 26, + "text": "The only place where it did not hail was in the land of Goshen, where the Israelites lived." + }, + { + "verseNum": 27, + "text": "Then Pharaoh summoned Moses and Aaron. “This time I have sinned,” he said. “The LORD is righteous, and I and my people are wicked." + }, + { + "verseNum": 28, + "text": "Pray to the LORD, for there has been enough of God’s thunder and hail. I will let you go; you do not need to stay any longer.”" + }, + { + "verseNum": 29, + "text": "Moses said to him, “When I have left the city, I will spread out my hands to the LORD. The thunder will cease, and there will be no more hail, so that you may know that the earth is the LORD’s." + }, + { + "verseNum": 30, + "text": "But as for you and your officials, I know that you still do not fear the LORD our God.”" + }, + { + "verseNum": 31, + "text": "(Now the flax and barley were destroyed, since the barley was ripe and the flax was in bloom;" + }, + { + "verseNum": 32, + "text": "but the wheat and spelt were not destroyed, because they are late crops.)" + }, + { + "verseNum": 33, + "text": "Then Moses departed from Pharaoh, went out of the city, and spread out his hands to the LORD. The thunder and hail ceased, and the rain no longer poured down on the land." + }, + { + "verseNum": 34, + "text": "When Pharaoh saw that the rain and hail and thunder had ceased, he sinned again and hardened his heart—he and his officials." + }, + { + "verseNum": 35, + "text": "So Pharaoh’s heart was hardened, and he would not let the Israelites go, just as the LORD had said through Moses." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-intro.json b/data/en_bible/BSB/EXO/chapter-intro.json new file mode 100644 index 0000000..6ffe584 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-intro.json @@ -0,0 +1,9 @@ +{ + "chapterNum": null, + "verses": [ + { + "verseNum": 1, + "text": "Exodus" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-1.json b/data/en_bible/BSB/GEN/chapter-1.json new file mode 100644 index 0000000..9bf2df4 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-1.json @@ -0,0 +1,129 @@ +{ + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "In the beginning God created the heavens and the earth." + }, + { + "verseNum": 2, + "text": "Now the earth was formless and void, and darkness was over the surface of the deep. And the Spirit of God was hovering over the surface of the waters." + }, + { + "verseNum": 3, + "text": "And God said, “Let there be light,” and there was light." + }, + { + "verseNum": 4, + "text": "And God saw that the light was good, and He separated the light from the darkness." + }, + { + "verseNum": 5, + "text": "God called the light “day,” and the darkness He called “night.”\n \n And there was evening, and there was morning—the first day." + }, + { + "verseNum": 6, + "text": "And God said, “Let there be an expanse between the waters, to separate the waters from the waters.”" + }, + { + "verseNum": 7, + "text": "So God made the expanse and separated the waters beneath it from the waters above. And it was so." + }, + { + "verseNum": 8, + "text": "God called the expanse “sky.”\n \n And there was evening, and there was morning—the second day." + }, + { + "verseNum": 9, + "text": "And God said, “Let the waters under the sky be gathered into one place, so that the dry land may appear.” And it was so." + }, + { + "verseNum": 10, + "text": "God called the dry land “earth,” and the gathering of waters He called “seas.” And God saw that it was good." + }, + { + "verseNum": 11, + "text": "Then God said, “Let the earth bring forth vegetation: seed-bearing plants and fruit trees, each bearing fruit with seed according to its kind.” And it was so." + }, + { + "verseNum": 12, + "text": "The earth produced vegetation: seed-bearing plants according to their kinds and trees bearing fruit with seed according to their kinds. And God saw that it was good." + }, + { + "verseNum": 13, + "text": "And there was evening, and there was morning—the third day." + }, + { + "verseNum": 14, + "text": "And God said, “Let there be lights in the expanse of the sky to distinguish between the day and the night, and let them be signs to mark the seasons and days and years." + }, + { + "verseNum": 15, + "text": "And let them serve as lights in the expanse of the sky to shine upon the earth.” And it was so." + }, + { + "verseNum": 16, + "text": "God made two great lights: the greater light to rule the day and the lesser light to rule the night. And He made the stars as well." + }, + { + "verseNum": 17, + "text": "God set these lights in the expanse of the sky to shine upon the earth," + }, + { + "verseNum": 18, + "text": "to preside over the day and the night, and to separate the light from the darkness. And God saw that it was good." + }, + { + "verseNum": 19, + "text": "And there was evening, and there was morning—the fourth day." + }, + { + "verseNum": 20, + "text": "And God said, “Let the waters teem with living creatures, and let birds fly above the earth in the open expanse of the sky.”" + }, + { + "verseNum": 21, + "text": "So God created the great sea creatures and every living thing that moves, with which the waters teemed according to their kinds, and every bird of flight after its kind. And God saw that it was good." + }, + { + "verseNum": 22, + "text": "Then God blessed them and said, “Be fruitful and multiply and fill the waters of the seas, and let birds multiply on the earth.”" + }, + { + "verseNum": 23, + "text": "And there was evening, and there was morning—the fifth day." + }, + { + "verseNum": 24, + "text": "And God said, “Let the earth bring forth living creatures according to their kinds: livestock, land crawlers, and beasts of the earth according to their kinds.” And it was so." + }, + { + "verseNum": 25, + "text": "God made the beasts of the earth according to their kinds, the livestock according to their kinds, and everything that crawls upon the earth according to its kind. And God saw that it was good." + }, + { + "verseNum": 26, + "text": "Then God said, “Let Us make man in Our image, after Our likeness, to rule over the fish of the sea and the birds of the air, over the livestock, and over all the earth itself and every creature that crawls upon it.”" + }, + { + "verseNum": 27, + "text": "So God created man in His own image;\n in the image of God He created him;\n male and female He created them." + }, + { + "verseNum": 28, + "text": "God blessed them and said to them, “Be fruitful and multiply, and fill the earth and subdue it; rule over the fish of the sea and the birds of the air and every creature that crawls upon the earth.”" + }, + { + "verseNum": 29, + "text": "Then God said, “Behold, I have given you every seed-bearing plant on the face of all the earth, and every tree whose fruit contains seed. They will be yours for food." + }, + { + "verseNum": 30, + "text": "And to every beast of the earth and every bird of the air and every creature that crawls upon the earth—everything that has the breath of life in it—I have given every green plant for food.” And it was so." + }, + { + "verseNum": 31, + "text": "And God looked upon all that He had made, and indeed, it was very good.\n \n And there was evening, and there was morning—the sixth day." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-10.json b/data/en_bible/BSB/GEN/chapter-10.json new file mode 100644 index 0000000..cb9920f --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-10.json @@ -0,0 +1,133 @@ +{ + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "This is the account of Noah’s sons Shem, Ham, and Japheth, who also had sons after the flood." + }, + { + "verseNum": 2, + "text": "The sons of Japheth:\n \n Gomer, Magog, Madai, Javan, Tubal, Meshech, and Tiras." + }, + { + "verseNum": 3, + "text": "The sons of Gomer:\n \n Ashkenaz, Riphath, and Togarmah." + }, + { + "verseNum": 4, + "text": "And the sons of Javan:\n \n Elishah, Tarshish, the Kittites, and the Rodanites." + }, + { + "verseNum": 5, + "text": "From these, the maritime peoples separated into their territories, according to their languages, by clans within their nations." + }, + { + "verseNum": 6, + "text": "The sons of Ham:\n \n Cush, Mizraim, Put, and Canaan." + }, + { + "verseNum": 7, + "text": "The sons of Cush:\n \n Seba, Havilah, Sabtah, Raamah, and Sabteca.\n \nAnd the sons of Raamah:\n \n Sheba and Dedan." + }, + { + "verseNum": 8, + "text": "Cush was the father of Nimrod, who began to be a mighty one on the earth." + }, + { + "verseNum": 9, + "text": "He was a mighty hunter before the LORD; so it is said, “Like Nimrod, a mighty hunter before the LORD.”" + }, + { + "verseNum": 10, + "text": "His kingdom began in Babylon, Erech, Accad, and Calneh, in the land of Shinar." + }, + { + "verseNum": 11, + "text": "From that land he went forth into Assyria, where he built Nineveh, Rehoboth-Ir, Calah," + }, + { + "verseNum": 12, + "text": "and Resen, which is between Nineveh and the great city of Calah." + }, + { + "verseNum": 13, + "text": "Mizraim was the father of the Ludites, the Anamites, the Lehabites, the Naphtuhites," + }, + { + "verseNum": 14, + "text": "the Pathrusites, the Casluhites (from whom the Philistines came), and the Caphtorites." + }, + { + "verseNum": 15, + "text": "And Canaan was the father of Sidon his firstborn, and of the Hittites," + }, + { + "verseNum": 16, + "text": "the Jebusites, the Amorites, the Girgashites," + }, + { + "verseNum": 17, + "text": "the Hivites, the Arkites, the Sinites," + }, + { + "verseNum": 18, + "text": "the Arvadites, the Zemarites, and the Hamathites.\n \nLater the Canaanite clans were scattered," + }, + { + "verseNum": 19, + "text": "and the borders of Canaan extended from Sidon toward Gerar as far as Gaza, and then toward Sodom, Gomorrah, Admah, and Zeboiim, as far as Lasha." + }, + { + "verseNum": 20, + "text": "These are the sons of Ham according to their clans, languages, lands, and nations." + }, + { + "verseNum": 21, + "text": "And sons were also born to Shem, the older brother of Japheth; Shem was the forefather of all the sons of Eber." + }, + { + "verseNum": 22, + "text": "The sons of Shem:\n \n Elam, Asshur, Arphaxad, Lud, and Aram." + }, + { + "verseNum": 23, + "text": "The sons of Aram:\n \n Uz, Hul, Gether, and Mash." + }, + { + "verseNum": 24, + "text": "Arphaxad was the father of Shelah, and Shelah was the father of Eber." + }, + { + "verseNum": 25, + "text": "Two sons were born to Eber: One was named Peleg, because in his days the earth was divided, and his brother was named Joktan." + }, + { + "verseNum": 26, + "text": "And Joktan was the father of Almodad, Sheleph, Hazarmaveth, Jerah," + }, + { + "verseNum": 27, + "text": "Hadoram, Uzal, Diklah," + }, + { + "verseNum": 28, + "text": "Obal, Abimael, Sheba," + }, + { + "verseNum": 29, + "text": "Ophir, Havilah, and Jobab. All these were sons of Joktan." + }, + { + "verseNum": 30, + "text": "Their territory extended from Mesha to Sephar, in the eastern hill country." + }, + { + "verseNum": 31, + "text": "These are the sons of Shem, according to their clans, languages, lands, and nations." + }, + { + "verseNum": 32, + "text": "All these are the clans of Noah’s sons, according to their generations and nations. From these the nations of the earth spread out after the flood." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-11.json b/data/en_bible/BSB/GEN/chapter-11.json new file mode 100644 index 0000000..1c85994 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-11.json @@ -0,0 +1,133 @@ +{ + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Now the whole world had one language and a common form of speech." + }, + { + "verseNum": 2, + "text": "And as people journeyed eastward, they found a plain in the land of Shinar and settled there." + }, + { + "verseNum": 3, + "text": "And they said to one another, “Come, let us make bricks and bake them thoroughly.” So they used brick instead of stone, and tar instead of mortar." + }, + { + "verseNum": 4, + "text": "“Come,” they said, “let us build for ourselves a city with a tower that reaches to the heavens, that we may make a name for ourselves and not be scattered over the face of all the earth.”" + }, + { + "verseNum": 5, + "text": "Then the LORD came down to see the city and the tower that the sons of men were building." + }, + { + "verseNum": 6, + "text": "And the LORD said, “If they have begun to do this as one people speaking the same language, then nothing they devise will be beyond them." + }, + { + "verseNum": 7, + "text": "Come, let Us go down and confuse their language, so that they will not understand one another’s speech.”" + }, + { + "verseNum": 8, + "text": "So the LORD scattered them from there over the face of all the earth, and they stopped building the city." + }, + { + "verseNum": 9, + "text": "That is why it is called Babel, for there the LORD confused the language of the whole world, and from that place the LORD scattered them over the face of all the earth." + }, + { + "verseNum": 10, + "text": "This is the account of Shem. Two years after the flood, when Shem was 100 years old, he became the father of Arphaxad." + }, + { + "verseNum": 11, + "text": "And after he had become the father of Arphaxad, Shem lived 500 years and had other sons and daughters." + }, + { + "verseNum": 12, + "text": "When Arphaxad was 35 years old, he became the father of Shelah." + }, + { + "verseNum": 13, + "text": "And after he had become the father of Shelah, Arphaxad lived 403 years and had other sons and daughters." + }, + { + "verseNum": 14, + "text": "When Shelah was 30 years old, he became the father of Eber." + }, + { + "verseNum": 15, + "text": "And after he had become the father of Eber, Shelah lived 403 years and had other sons and daughters." + }, + { + "verseNum": 16, + "text": "When Eber was 34 years old, he became the father of Peleg." + }, + { + "verseNum": 17, + "text": "And after he had become the father of Peleg, Eber lived 430 years and had other sons and daughters." + }, + { + "verseNum": 18, + "text": "When Peleg was 30 years old, he became the father of Reu." + }, + { + "verseNum": 19, + "text": "And after he had become the father of Reu, Peleg lived 209 years and had other sons and daughters." + }, + { + "verseNum": 20, + "text": "When Reu was 32 years old, he became the father of Serug." + }, + { + "verseNum": 21, + "text": "And after he had become the father of Serug, Reu lived 207 years and had other sons and daughters." + }, + { + "verseNum": 22, + "text": "When Serug was 30 years old, he became the father of Nahor." + }, + { + "verseNum": 23, + "text": "And after he had become the father of Nahor, Serug lived 200 years and had other sons and daughters." + }, + { + "verseNum": 24, + "text": "When Nahor was 29 years old, he became the father of Terah." + }, + { + "verseNum": 25, + "text": "And after he had become the father of Terah, Nahor lived 119 years and had other sons and daughters." + }, + { + "verseNum": 26, + "text": "When Terah was 70 years old, he became the father of Abram, Nahor, and Haran." + }, + { + "verseNum": 27, + "text": "This is the account of Terah. Terah became the father of Abram, Nahor, and Haran. And Haran became the father of Lot." + }, + { + "verseNum": 28, + "text": "During his father Terah’s lifetime, Haran died in his native land, in Ur of the Chaldeans." + }, + { + "verseNum": 29, + "text": "And Abram and Nahor took wives for themselves. Abram’s wife was named Sarai, and Nahor’s wife was named Milcah; she was the daughter of Haran, who was the father of both Milcah and Iscah." + }, + { + "verseNum": 30, + "text": "But Sarai was barren; she had no children." + }, + { + "verseNum": 31, + "text": "And Terah took his son Abram, his grandson Lot son of Haran, and his daughter-in-law Sarai the wife of Abram, and they set out from Ur of the Chaldeans for the land of Canaan. But when they arrived in Haran, they settled there." + }, + { + "verseNum": 32, + "text": "Terah lived 205 years, and he died in Haran." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-12.json b/data/en_bible/BSB/GEN/chapter-12.json new file mode 100644 index 0000000..9a326bb --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-12.json @@ -0,0 +1,85 @@ +{ + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Abram, “Leave your country, your kindred, and your father’s household, and go to the land I will show you." + }, + { + "verseNum": 2, + "text": "I will make you into a great nation,\n and I will bless you;\n I will make your name great,\n so that you will be a blessing." + }, + { + "verseNum": 3, + "text": "I will bless those who bless you\n and curse those who curse you;\n and all the families of the earth\n will be blessed through you.”" + }, + { + "verseNum": 4, + "text": "So Abram departed, as the LORD had directed him, and Lot went with him. Abram was seventy-five years old when he left Haran." + }, + { + "verseNum": 5, + "text": "And Abram took his wife Sarai, his nephew Lot, and all the possessions and people they had acquired in Haran, and set out for the land of Canaan.\n \nWhen they came to the land of Canaan," + }, + { + "verseNum": 6, + "text": "Abram traveled through the land as far as the site of the Oak of Moreh at Shechem. And at that time the Canaanites were in the land." + }, + { + "verseNum": 7, + "text": "Then the LORD appeared to Abram and said, “I will give this land to your offspring.” So Abram built an altar there to the LORD, who had appeared to him." + }, + { + "verseNum": 8, + "text": "From there Abram moved on to the hill country east of Bethel and pitched his tent, with Bethel to the west and Ai to the east. There he built an altar to the LORD, and he called on the name of the LORD." + }, + { + "verseNum": 9, + "text": "And Abram journeyed on toward the Negev." + }, + { + "verseNum": 10, + "text": "Now there was a famine in the land. So Abram went down to Egypt to live there for a while because the famine was severe." + }, + { + "verseNum": 11, + "text": "As he was about to enter Egypt, he said to his wife Sarai, “Look, I know that you are a beautiful woman," + }, + { + "verseNum": 12, + "text": "and when the Egyptians see you, they will say, ‘This is his wife.’ Then they will kill me but will let you live." + }, + { + "verseNum": 13, + "text": "Please say you are my sister, so that I will be treated well for your sake, and on account of you my life will be spared.”" + }, + { + "verseNum": 14, + "text": "So when Abram entered Egypt, the Egyptians saw that the woman was very beautiful." + }, + { + "verseNum": 15, + "text": "When Pharaoh’s officials saw Sarai, they commended her to him, and she was taken into the palace of Pharaoh." + }, + { + "verseNum": 16, + "text": "He treated Abram well on her account, and Abram acquired sheep and cattle, male and female donkeys, menservants and maidservants, and camels." + }, + { + "verseNum": 17, + "text": "The LORD, however, afflicted Pharaoh and his household with severe plagues because of Abram’s wife Sarai." + }, + { + "verseNum": 18, + "text": "So Pharaoh summoned Abram and asked, “What have you done to me? Why didn’t you tell me she was your wife?" + }, + { + "verseNum": 19, + "text": "Why did you say, ‘She is my sister,’ so that I took her as my wife? Now then, here is your wife. Take her and go!”" + }, + { + "verseNum": 20, + "text": "Then Pharaoh gave his men orders concerning Abram, and they sent him away with his wife and all his possessions." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-13.json b/data/en_bible/BSB/GEN/chapter-13.json new file mode 100644 index 0000000..3f950bf --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-13.json @@ -0,0 +1,77 @@ +{ + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "So Abram went up out of Egypt into the Negev—he and his wife and all his possessions—and Lot was with him." + }, + { + "verseNum": 2, + "text": "And Abram had become extremely wealthy in livestock and silver and gold." + }, + { + "verseNum": 3, + "text": "From the Negev he journeyed from place to place toward Bethel, until he came to the place between Bethel and Ai where his tent had formerly been pitched," + }, + { + "verseNum": 4, + "text": "to the site where he had built the altar. And there Abram called on the name of the LORD." + }, + { + "verseNum": 5, + "text": "Now Lot, who was traveling with Abram, also had flocks and herds and tents." + }, + { + "verseNum": 6, + "text": "But the land was unable to support both of them while they stayed together, for they had so many possessions that they were unable to coexist." + }, + { + "verseNum": 7, + "text": "And there was discord between the herdsmen of Abram and the herdsmen of Lot. At that time the Canaanites and the Perizzites were also living in the land." + }, + { + "verseNum": 8, + "text": "So Abram said to Lot, “Please let there be no contention between you and me, or between your herdsmen and my herdsmen. After all, we are brothers." + }, + { + "verseNum": 9, + "text": "Is not the whole land before you? Now separate yourself from me. If you go to the left, I will go to the right; if you go to the right, I will go to the left.”" + }, + { + "verseNum": 10, + "text": "And Lot looked out and saw that the whole plain of the Jordan, all the way to Zoar, was well watered like the garden of the LORD, like the land of Egypt. (This was before the LORD destroyed Sodom and Gomorrah.)" + }, + { + "verseNum": 11, + "text": "So Lot chose the whole plain of the Jordan for himself and set out toward the east. And Abram and Lot parted company." + }, + { + "verseNum": 12, + "text": "Abram lived in the land of Canaan, but Lot settled in the cities of the plain and pitched his tent toward Sodom." + }, + { + "verseNum": 13, + "text": "But the men of Sodom were wicked, sinning greatly against the LORD." + }, + { + "verseNum": 14, + "text": "After Lot had departed, the LORD said to Abram, “Now lift up your eyes from the place where you are, and look to the north and south and east and west," + }, + { + "verseNum": 15, + "text": "for all the land that you see, I will give to you and your offspring forever." + }, + { + "verseNum": 16, + "text": "I will make your offspring like the dust of the earth, so that if one could count the dust of the earth, then your offspring could be counted." + }, + { + "verseNum": 17, + "text": "Get up and walk around the land, through its length and breadth, for I will give it to you.”" + }, + { + "verseNum": 18, + "text": "So Abram moved his tent and went to live near the Oaks of Mamre at Hebron, where he built an altar to the LORD." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-14.json b/data/en_bible/BSB/GEN/chapter-14.json new file mode 100644 index 0000000..bee7037 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-14.json @@ -0,0 +1,101 @@ +{ + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "In those days Amraphel king of Shinar, Arioch king of Ellasar, Chedorlaomer king of Elam, and Tidal king of Goiim" + }, + { + "verseNum": 2, + "text": "went to war against Bera king of Sodom, Birsha king of Gomorrah, Shinab king of Admah, Shemeber king of Zeboiim, and the king of Bela (that is, Zoar)." + }, + { + "verseNum": 3, + "text": "The latter five came as allies to the Valley of Siddim (that is, the Salt Sea )." + }, + { + "verseNum": 4, + "text": "For twelve years they had been subject to Chedorlaomer, but in the thirteenth year they rebelled." + }, + { + "verseNum": 5, + "text": "In the fourteenth year, Chedorlaomer and the kings allied with him went out and defeated the Rephaites in Ashteroth-karnaim, the Zuzites in Ham, the Emites in Shaveh-kiriathaim," + }, + { + "verseNum": 6, + "text": "and the Horites in the area of Mount Seir, as far as El-paran, which is near the desert." + }, + { + "verseNum": 7, + "text": "Then they turned back to invade En-mishpat (that is, Kadesh), and they conquered the whole territory of the Amalekites, as well as the Amorites who lived in Hazazon-tamar." + }, + { + "verseNum": 8, + "text": "Then the king of Sodom, the king of Gomorrah, the king of Admah, the king of Zeboiim, and the king of Bela (that is, Zoar) marched out and arrayed themselves for battle in the Valley of Siddim" + }, + { + "verseNum": 9, + "text": "against Chedorlaomer king of Elam, Tidal king of Goiim, Amraphel king of Shinar, and Arioch king of Ellasar—four kings against five." + }, + { + "verseNum": 10, + "text": "Now the Valley of Siddim was full of tar pits, and as the kings of Sodom and Gomorrah fled, some men fell into the pits, but the survivors fled to the hill country." + }, + { + "verseNum": 11, + "text": "The four kings seized all the goods of Sodom and Gomorrah and all their food, and they went on their way." + }, + { + "verseNum": 12, + "text": "They also carried off Abram’s nephew Lot and his possessions, since Lot was living in Sodom." + }, + { + "verseNum": 13, + "text": "Then an escapee came and reported this to Abram the Hebrew. Now Abram was living near the Oaks of Mamre the Amorite, a brother of Eshcol and Aner, all of whom were bound by treaty to Abram." + }, + { + "verseNum": 14, + "text": "And when Abram heard that his relative had been captured, he mobilized the 318 trained men born in his household, and they set out in pursuit as far as Dan." + }, + { + "verseNum": 15, + "text": "During the night, Abram divided his forces and routed Chedorlaomer’s army, pursuing them as far as Hobah, north of Damascus." + }, + { + "verseNum": 16, + "text": "He retrieved all the goods, as well as his relative Lot and his possessions, together with the women and the rest of the people." + }, + { + "verseNum": 17, + "text": "After Abram returned from defeating Chedorlaomer and the kings allied with him, the king of Sodom went out to meet him in the Valley of Shaveh (that is, the King’s Valley)." + }, + { + "verseNum": 18, + "text": "Then Melchizedek king of Salem brought out bread and wine—since he was priest of God Most High —" + }, + { + "verseNum": 19, + "text": "and he blessed Abram and said:\n \n “Blessed be Abram by God Most High,\n Creator of heaven and earth," + }, + { + "verseNum": 20, + "text": "and blessed be God Most High,\n who has delivered your enemies into your hand.”\n \nThen Abram gave Melchizedek a tenth of everything." + }, + { + "verseNum": 21, + "text": "The king of Sodom said to Abram, “Give me the people, but take the goods for yourself.”" + }, + { + "verseNum": 22, + "text": "But Abram replied to the king of Sodom, “I have raised my hand to the LORD God Most High, Creator of heaven and earth," + }, + { + "verseNum": 23, + "text": "that I will not accept even a thread, or a strap of a sandal, or anything that belongs to you, lest you should say, ‘I have made Abram rich.’" + }, + { + "verseNum": 24, + "text": "I will accept nothing but what my men have eaten and the share for the men who went with me—Aner, Eshcol, and Mamre. They may take their portion.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-15.json b/data/en_bible/BSB/GEN/chapter-15.json new file mode 100644 index 0000000..6761d0b --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-15.json @@ -0,0 +1,89 @@ +{ + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "After these events, the word of the LORD came to Abram in a vision:\n \n “Do not be afraid, Abram.\n I am your shield,\n your very great reward.”" + }, + { + "verseNum": 2, + "text": "But Abram replied, “O Lord GOD, what can You give me, since I remain childless, and the heir of my house is Eliezer of Damascus?”" + }, + { + "verseNum": 3, + "text": "Abram continued, “Behold, You have given me no offspring, so a servant in my household will be my heir.”" + }, + { + "verseNum": 4, + "text": "Then the word of the LORD came to Abram, saying, “This one will not be your heir, but one who comes from your own body will be your heir.”" + }, + { + "verseNum": 5, + "text": "And the LORD took him outside and said, “Now look to the heavens and count the stars, if you are able.” Then He told him, “So shall your offspring be.”" + }, + { + "verseNum": 6, + "text": "Abram believed the LORD, and it was credited to him as righteousness." + }, + { + "verseNum": 7, + "text": "The LORD also told him, “I am the LORD, who brought you out of Ur of the Chaldeans to give you this land to possess.”" + }, + { + "verseNum": 8, + "text": "But Abram replied, “Lord GOD, how can I know that I will possess it?”" + }, + { + "verseNum": 9, + "text": "And the LORD said to him, “Bring Me a heifer, a goat, and a ram, each three years old, along with a turtledove and a young pigeon.”" + }, + { + "verseNum": 10, + "text": "So Abram brought all these to Him, split each of them down the middle, and laid the halves opposite each other. The birds, however, he did not cut in half." + }, + { + "verseNum": 11, + "text": "And the birds of prey descended on the carcasses, but Abram drove them away." + }, + { + "verseNum": 12, + "text": "As the sun was setting, Abram fell into a deep sleep, and suddenly great terror and darkness overwhelmed him." + }, + { + "verseNum": 13, + "text": "Then the LORD said to Abram, “Know for certain that your descendants will be strangers in a land that is not their own, and they will be enslaved and mistreated four hundred years." + }, + { + "verseNum": 14, + "text": "But I will judge the nation they serve as slaves, and afterward they will depart with many possessions." + }, + { + "verseNum": 15, + "text": "You, however, will go to your fathers in peace and be buried at a ripe old age." + }, + { + "verseNum": 16, + "text": "In the fourth generation your descendants will return here, for the iniquity of the Amorites is not yet complete.”" + }, + { + "verseNum": 17, + "text": "When the sun had set and darkness had fallen, behold, a smoking firepot and a flaming torch appeared and passed between the halves of the carcasses." + }, + { + "verseNum": 18, + "text": "On that day the LORD made a covenant with Abram, saying, “To your descendants I have given this land—from the river of Egypt to the great River Euphrates—" + }, + { + "verseNum": 19, + "text": "the land of the Kenites, Kenizzites, Kadmonites," + }, + { + "verseNum": 20, + "text": "Hittites, Perizzites, Rephaites," + }, + { + "verseNum": 21, + "text": "Amorites, Canaanites, Girgashites, and Jebusites.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-16.json b/data/en_bible/BSB/GEN/chapter-16.json new file mode 100644 index 0000000..f3125e0 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-16.json @@ -0,0 +1,69 @@ +{ + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Now Abram’s wife Sarai had borne him no children, but she had an Egyptian maidservant named Hagar." + }, + { + "verseNum": 2, + "text": "So Sarai said to Abram, “Look now, the LORD has prevented me from bearing children. Please go to my maidservant; perhaps I can build a family by her.”\n \nAnd Abram listened to the voice of Sarai." + }, + { + "verseNum": 3, + "text": "So after he had lived in Canaan for ten years, his wife Sarai took her Egyptian maidservant Hagar and gave her to Abram to be his wife." + }, + { + "verseNum": 4, + "text": "And he slept with Hagar, and she conceived. But when Hagar realized that she was pregnant, she began to despise her mistress." + }, + { + "verseNum": 5, + "text": "Then Sarai said to Abram, “May the wrong done to me be upon you! I delivered my servant into your arms, and ever since she saw that she was pregnant, she has treated me with contempt. May the LORD judge between you and me.”" + }, + { + "verseNum": 6, + "text": "“Here,” said Abram, “your servant is in your hands. Do whatever you want with her.” Then Sarai treated Hagar so harshly that she fled from her." + }, + { + "verseNum": 7, + "text": "Now the angel of the LORD found Hagar by a spring of water in the desert—the spring along the road to Shur." + }, + { + "verseNum": 8, + "text": "“Hagar, servant of Sarai,” he said, “where have you come from, and where are you going?”\n \n“I am running away from my mistress Sarai,” she replied." + }, + { + "verseNum": 9, + "text": "So the angel of the LORD told her, “Return to your mistress and submit to her authority.”" + }, + { + "verseNum": 10, + "text": "Then the angel added, “I will greatly multiply your offspring so that they will be too numerous to count.”" + }, + { + "verseNum": 11, + "text": "The angel of the LORD proceeded:\n \n “Behold, you have conceived and will bear a son.\n And you shall name him Ishmael,\n for the LORD has heard your cry of affliction." + }, + { + "verseNum": 12, + "text": "He will be a wild donkey of a man,\n and his hand will be against everyone,\n and everyone’s hand against him;\n he will live in hostility\n toward all his brothers.”" + }, + { + "verseNum": 13, + "text": "So Hagar gave this name to the LORD who had spoken to her: “You are the God who sees me,” for she said, “Here I have seen the One who sees me!”" + }, + { + "verseNum": 14, + "text": "Therefore the well was called Beer-lahai-roi. It is located between Kadesh and Bered." + }, + { + "verseNum": 15, + "text": "And Hagar bore Abram a son, and Abram gave the name Ishmael to the son she had borne." + }, + { + "verseNum": 16, + "text": "Abram was eighty-six years old when Hagar bore Ishmael to him." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-17.json b/data/en_bible/BSB/GEN/chapter-17.json new file mode 100644 index 0000000..6a8b76c --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-17.json @@ -0,0 +1,113 @@ +{ + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "When Abram was ninety-nine years old, the LORD appeared to him and said, “I am God Almighty. Walk before Me and be blameless." + }, + { + "verseNum": 2, + "text": "I will establish My covenant between Me and you, and I will multiply you exceedingly.”" + }, + { + "verseNum": 3, + "text": "Then Abram fell facedown, and God said to him," + }, + { + "verseNum": 4, + "text": "“As for Me, this is My covenant with you: You will be the father of many nations." + }, + { + "verseNum": 5, + "text": "No longer will you be called Abram, but your name will be Abraham, for I have made you a father of many nations." + }, + { + "verseNum": 6, + "text": "I will make you exceedingly fruitful; I will make nations of you, and kings will descend from you." + }, + { + "verseNum": 7, + "text": "I will establish My covenant as an everlasting covenant between Me and you and your descendants after you, to be your God and the God of your descendants after you." + }, + { + "verseNum": 8, + "text": "And to you and your descendants I will give the land where you are residing—all the land of Canaan—as an eternal possession; and I will be their God.”" + }, + { + "verseNum": 9, + "text": "God also said to Abraham, “You must keep My covenant—you and your descendants in the generations after you." + }, + { + "verseNum": 10, + "text": "This is My covenant with you and your descendants after you, which you are to keep: Every male among you must be circumcised." + }, + { + "verseNum": 11, + "text": "You are to circumcise the flesh of your foreskin, and this will be a sign of the covenant between Me and you." + }, + { + "verseNum": 12, + "text": "Generation after generation, every male must be circumcised when he is eight days old, including those born in your household and those purchased from a foreigner—even those who are not your offspring." + }, + { + "verseNum": 13, + "text": "Whether they are born in your household or purchased, they must be circumcised. My covenant in your flesh will be an everlasting covenant." + }, + { + "verseNum": 14, + "text": "But if any male is not circumcised, he will be cut off from his people; he has broken My covenant.”" + }, + { + "verseNum": 15, + "text": "Then God said to Abraham, “As for Sarai your wife, do not call her Sarai, for her name is to be Sarah." + }, + { + "verseNum": 16, + "text": "And I will bless her and will surely give you a son by her. I will bless her, and she will be the mother of nations; kings of peoples will descend from her.”" + }, + { + "verseNum": 17, + "text": "Abraham fell facedown. Then he laughed and said to himself, “Can a child be born to a man who is a hundred years old? Can Sarah give birth at the age of ninety?”" + }, + { + "verseNum": 18, + "text": "And Abraham said to God, “O that Ishmael might live under Your blessing!”" + }, + { + "verseNum": 19, + "text": "But God replied, “Your wife Sarah will indeed bear you a son, and you are to name him Isaac. I will establish My covenant with him as an everlasting covenant for his descendants after him." + }, + { + "verseNum": 20, + "text": "As for Ishmael, I have heard you, and I will surely bless him; I will make him fruitful and multiply him greatly. He will become the father of twelve rulers, and I will make him into a great nation." + }, + { + "verseNum": 21, + "text": "But I will establish My covenant with Isaac, whom Sarah will bear to you at this time next year.”" + }, + { + "verseNum": 22, + "text": "When He had finished speaking with Abraham, God went up from him." + }, + { + "verseNum": 23, + "text": "On that very day Abraham took his son Ishmael and all those born in his household or purchased with his money—every male among the members of Abraham’s household—and he circumcised them, just as God had told him." + }, + { + "verseNum": 24, + "text": "So Abraham was ninety-nine years old when he was circumcised," + }, + { + "verseNum": 25, + "text": "and his son Ishmael was thirteen;" + }, + { + "verseNum": 26, + "text": "Abraham and his son Ishmael were circumcised on the same day." + }, + { + "verseNum": 27, + "text": "And all the men of Abraham’s household—both servants born in his household and those purchased from foreigners—were circumcised with him." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-18.json b/data/en_bible/BSB/GEN/chapter-18.json new file mode 100644 index 0000000..fc87b27 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-18.json @@ -0,0 +1,137 @@ +{ + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD appeared to Abraham by the Oaks of Mamre in the heat of the day, while he was sitting at the entrance of his tent." + }, + { + "verseNum": 2, + "text": "And Abraham looked up and saw three men standing nearby. When he saw them, he ran from the entrance of his tent to meet them and bowed low to the ground." + }, + { + "verseNum": 3, + "text": "“My lord,” said Abraham, “if I have found favor in your sight, please do not pass your servant by." + }, + { + "verseNum": 4, + "text": "Let a little water be brought, that you may wash your feet and rest yourselves under the tree." + }, + { + "verseNum": 5, + "text": "And I will bring a bit of bread so that you may refresh yourselves. This is why you have passed your servant’s way. After that, you may continue on your way.”\n \n“Yes,” they replied, “you may do as you have said.”" + }, + { + "verseNum": 6, + "text": "So Abraham hurried into the tent and said to Sarah, “Quick! Prepare three seahs of fine flour, knead it, and bake some bread.”" + }, + { + "verseNum": 7, + "text": "Meanwhile, Abraham ran to the herd, selected a tender and choice calf, and gave it to a servant, who hurried to prepare it." + }, + { + "verseNum": 8, + "text": "Then Abraham brought curds and milk and the calf that had been prepared, and he set them before the men and stood by them under the tree as they ate." + }, + { + "verseNum": 9, + "text": "“Where is your wife Sarah?” they asked.\n \n“There, in the tent,” he replied." + }, + { + "verseNum": 10, + "text": "Then the LORD said, “I will surely return to you at this time next year, and your wife Sarah will have a son!”\n \nNow Sarah was behind him, listening at the entrance to the tent." + }, + { + "verseNum": 11, + "text": "And Abraham and Sarah were already old and well along in years; Sarah had passed the age of childbearing." + }, + { + "verseNum": 12, + "text": "So she laughed to herself, saying, “After I am worn out and my master is old, will I now have this pleasure?”" + }, + { + "verseNum": 13, + "text": "And the LORD asked Abraham, “Why did Sarah laugh and say, ‘Can I really bear a child when I am old?’" + }, + { + "verseNum": 14, + "text": "Is anything too difficult for the LORD? At the appointed time I will return to you—in about a year—and Sarah will have a son.”" + }, + { + "verseNum": 15, + "text": "But Sarah was afraid, so she denied it and said, “I did not laugh.”\n \n“No,” replied the LORD, “but you did laugh.”" + }, + { + "verseNum": 16, + "text": "When the men got up to leave, they looked out over Sodom, and Abraham walked along with them to see them off." + }, + { + "verseNum": 17, + "text": "And the LORD said, “Shall I hide from Abraham what I am about to do?" + }, + { + "verseNum": 18, + "text": "Abraham will surely become a great and powerful nation, and through him all the nations of the earth will be blessed." + }, + { + "verseNum": 19, + "text": "For I have chosen him, so that he will command his children and his household after him to keep the way of the LORD by doing what is right and just, in order that the LORD may bring upon Abraham what He has promised.”" + }, + { + "verseNum": 20, + "text": "Then the LORD said, “The outcry against Sodom and Gomorrah is great. Because their sin is so grievous," + }, + { + "verseNum": 21, + "text": "I will go down to see if their actions fully justify the outcry that has reached Me. If not, I will find out.”" + }, + { + "verseNum": 22, + "text": "And the two men turned away and went toward Sodom, but Abraham remained standing before the LORD." + }, + { + "verseNum": 23, + "text": "Abraham stepped forward and said, “Will You really sweep away the righteous with the wicked?" + }, + { + "verseNum": 24, + "text": "What if there are fifty righteous ones in the city? Will You really sweep it away and not spare the place for the sake of the fifty righteous ones who are there?" + }, + { + "verseNum": 25, + "text": "Far be it from You to do such a thing—to kill the righteous with the wicked, so that the righteous and the wicked are treated alike. Far be it from You! Will not the Judge of all the earth do what is right?”" + }, + { + "verseNum": 26, + "text": "So the LORD replied, “If I find fifty righteous ones within the city of Sodom, on their account I will spare the whole place.”" + }, + { + "verseNum": 27, + "text": "Then Abraham answered, “Now that I have ventured to speak to the Lord—though I am but dust and ashes—" + }, + { + "verseNum": 28, + "text": "suppose the fifty righteous ones lack five. Will You destroy the whole city for the lack of five?”\n \nHe replied, “If I find forty-five there, I will not destroy it.”" + }, + { + "verseNum": 29, + "text": "Once again Abraham spoke to the LORD, “Suppose forty are found there?”\n \nHe answered, “On account of the forty, I will not do it.”" + }, + { + "verseNum": 30, + "text": "Then Abraham said, “May the Lord not be angry, but let me speak further. Suppose thirty are found there?”\n \nHe replied, “If I find thirty there, I will not do it.”" + }, + { + "verseNum": 31, + "text": "And Abraham said, “Now that I have ventured to speak to the Lord, suppose twenty are found there?”\n \nHe answered, “On account of the twenty, I will not destroy it.”" + }, + { + "verseNum": 32, + "text": "Finally, Abraham said, “May the Lord not be angry, but let me speak once more. Suppose ten are found there?”\n \nAnd He answered, “On account of the ten, I will not destroy it.”" + }, + { + "verseNum": 33, + "text": "When the LORD had finished speaking with Abraham, He departed, and Abraham returned home." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-19.json b/data/en_bible/BSB/GEN/chapter-19.json new file mode 100644 index 0000000..2341d26 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-19.json @@ -0,0 +1,157 @@ +{ + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Now the two angels arrived at Sodom in the evening, and Lot was sitting in the gateway of the city. When Lot saw them, he got up to meet them, bowed facedown," + }, + { + "verseNum": 2, + "text": "and said, “My lords, please turn aside into the house of your servant; wash your feet and spend the night. Then you can rise early and go on your way.”\n \n“No,” they answered, “we will spend the night in the square.”" + }, + { + "verseNum": 3, + "text": "But Lot insisted so strongly that they followed him into his house. He prepared a feast for them and baked unleavened bread, and they ate." + }, + { + "verseNum": 4, + "text": "Before they had gone to bed, all the men of the city of Sodom, both young and old, surrounded the house." + }, + { + "verseNum": 5, + "text": "They called out to Lot, saying, “Where are the men who came to you tonight? Send them out to us so we can have relations with them!”" + }, + { + "verseNum": 6, + "text": "Lot went outside to meet them, shutting the door behind him." + }, + { + "verseNum": 7, + "text": "“Please, my brothers,” he pleaded, “don’t do such a wicked thing!" + }, + { + "verseNum": 8, + "text": "Look, I have two daughters who have never slept with a man. Let me bring them to you, and you can do to them as you please. But do not do anything to these men, for they have come under the protection of my roof.”" + }, + { + "verseNum": 9, + "text": "“Get out of the way!” they replied. And they declared, “This one came here as a foreigner, and he is already acting like a judge! Now we will treat you worse than them.” And they pressed in on Lot and moved in to break down the door." + }, + { + "verseNum": 10, + "text": "But the men inside reached out, pulled Lot into the house with them, and shut the door." + }, + { + "verseNum": 11, + "text": "And they struck the men at the entrance, young and old, with blindness, so that they wearied themselves trying to find the door." + }, + { + "verseNum": 12, + "text": "Then the two men said to Lot, “Do you have anyone else here—a son-in-law, your sons or daughters, or anyone else in the city who belongs to you? Get them out of here," + }, + { + "verseNum": 13, + "text": "because we are about to destroy this place. For the outcry to the LORD against its people is so great that He has sent us to destroy it.”" + }, + { + "verseNum": 14, + "text": "So Lot went out and spoke to the sons-in-law who were pledged in marriage to his daughters. “Get up,” he said. “Get out of this place, for the LORD is about to destroy the city!” But his sons-in-law thought he was joking." + }, + { + "verseNum": 15, + "text": "At daybreak the angels hurried Lot along, saying, “Get up! Take your wife and your two daughters who are here, or you will be swept away in the punishment of the city.”" + }, + { + "verseNum": 16, + "text": "But when Lot hesitated, the men grabbed his hand and the hands of his wife and his two daughters. And they led them safely out of the city, because of the LORD’s compassion for them." + }, + { + "verseNum": 17, + "text": "As soon as the men had brought them out, one of them said, “Run for your lives! Do not look back, and do not stop anywhere on the plain! Flee to the mountains, or you will be swept away!”" + }, + { + "verseNum": 18, + "text": "But Lot replied, “No, my lords, please!" + }, + { + "verseNum": 19, + "text": "Your servant has indeed found favor in your sight, and you have shown me great kindness by sparing my life. But I cannot run to the mountains; the disaster will overtake me, and I will die." + }, + { + "verseNum": 20, + "text": "Look, there is a town nearby where I can flee, and it is a small place. Please let me flee there—is it not a small place? Then my life will be saved.”" + }, + { + "verseNum": 21, + "text": "“Very well,” he answered, “I will grant this request as well, and will not demolish the town you indicate." + }, + { + "verseNum": 22, + "text": "Hurry! Run there quickly, for I cannot do anything until you reach it.” That is why the town was called Zoar." + }, + { + "verseNum": 23, + "text": "And by the time the sun had risen over the land, Lot had reached Zoar." + }, + { + "verseNum": 24, + "text": "Then the LORD rained down sulfur and fire on Sodom and Gomorrah—from the LORD out of the heavens." + }, + { + "verseNum": 25, + "text": "Thus He destroyed these cities and the entire plain, including all the inhabitants of the cities and everything that grew on the ground." + }, + { + "verseNum": 26, + "text": "But Lot’s wife looked back, and she became a pillar of salt." + }, + { + "verseNum": 27, + "text": "Early the next morning, Abraham got up and returned to the place where he had stood before the LORD." + }, + { + "verseNum": 28, + "text": "He looked down toward Sodom and Gomorrah and all the land of the plain, and he saw the smoke rising from the land like smoke from a furnace." + }, + { + "verseNum": 29, + "text": "So when God destroyed the cities of the plain, He remembered Abraham, and He brought Lot out of the catastrophe that destroyed the cities where he had lived." + }, + { + "verseNum": 30, + "text": "Lot and his two daughters left Zoar and settled in the mountains—for he was afraid to stay in Zoar—where they lived in a cave." + }, + { + "verseNum": 31, + "text": "One day the older daughter said to the younger, “Our father is old, and there is no man in the land to sleep with us, as is the custom over all the earth." + }, + { + "verseNum": 32, + "text": "Come, let us get our father drunk with wine so we can sleep with him and preserve his line.”" + }, + { + "verseNum": 33, + "text": "So that night they got their father drunk with wine, and the firstborn went in and slept with her father; he was not aware when she lay down or when she got up." + }, + { + "verseNum": 34, + "text": "The next day the older daughter said to the younger, “Look, I slept with my father last night. Let us get him drunk with wine again tonight so you can go in and sleep with him and we can preserve our father’s line.”" + }, + { + "verseNum": 35, + "text": "So again that night they got their father drunk with wine, and the younger daughter went in and slept with him; he was not aware when she lay down or when she got up." + }, + { + "verseNum": 36, + "text": "Thus both of Lot’s daughters became pregnant by their father." + }, + { + "verseNum": 37, + "text": "The older daughter gave birth to a son and named him Moab. He is the father of the Moabites of today." + }, + { + "verseNum": 38, + "text": "The younger daughter also gave birth to a son, and she named him Ben-ammi. He is the father of the Ammonites of today." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-2.json b/data/en_bible/BSB/GEN/chapter-2.json new file mode 100644 index 0000000..9bf6291 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-2.json @@ -0,0 +1,105 @@ +{ + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Thus the heavens and the earth were completed in all their vast array." + }, + { + "verseNum": 2, + "text": "And by the seventh day God had finished the work He had been doing; so on that day He rested from all His work." + }, + { + "verseNum": 3, + "text": "Then God blessed the seventh day and sanctified it, because on that day He rested from all the work of creation that He had accomplished." + }, + { + "verseNum": 4, + "text": "This is the account of the heavens and the earth when they were created, in the day that the LORD God made them." + }, + { + "verseNum": 5, + "text": "Now no shrub of the field had yet appeared on the earth, nor had any plant of the field sprouted; for the LORD God had not yet sent rain upon the earth, and there was no man to cultivate the ground." + }, + { + "verseNum": 6, + "text": "But springs welled up from the earth and watered the whole surface of the ground." + }, + { + "verseNum": 7, + "text": "Then the LORD God formed man from the dust of the ground and breathed the breath of life into his nostrils, and the man became a living being." + }, + { + "verseNum": 8, + "text": "And the LORD God planted a garden in Eden, in the east, where He placed the man He had formed." + }, + { + "verseNum": 9, + "text": "Out of the ground the LORD God gave growth to every tree that is pleasing to the eye and good for food. And in the middle of the garden were the tree of life and the tree of the knowledge of good and evil." + }, + { + "verseNum": 10, + "text": "Now a river flowed out of Eden to water the garden, and from there it branched into four headwaters:" + }, + { + "verseNum": 11, + "text": "The name of the first river is Pishon; it winds through the whole land of Havilah, where there is gold." + }, + { + "verseNum": 12, + "text": "And the gold of that land is pure, and bdellium and onyx are found there." + }, + { + "verseNum": 13, + "text": "The name of the second river is Gihon; it winds through the whole land of Cush." + }, + { + "verseNum": 14, + "text": "The name of the third river is Hiddekel; it runs along the east side of Assyria.\n \n And the fourth river is the Euphrates." + }, + { + "verseNum": 15, + "text": "Then the LORD God took the man and placed him in the Garden of Eden to cultivate and keep it." + }, + { + "verseNum": 16, + "text": "And the LORD God commanded him, “You may eat freely from every tree of the garden," + }, + { + "verseNum": 17, + "text": "but you must not eat from the tree of the knowledge of good and evil; for in the day that you eat of it, you will surely die.”" + }, + { + "verseNum": 18, + "text": "The LORD God also said, “It is not good for the man to be alone. I will make for him a suitable helper.”" + }, + { + "verseNum": 19, + "text": "And out of the ground the LORD God formed every beast of the field and every bird of the air, and He brought them to the man to see what he would name each one. And whatever the man called each living creature, that was its name." + }, + { + "verseNum": 20, + "text": "The man gave names to all the livestock, to the birds of the air, and to every beast of the field. But for Adam no suitable helper was found." + }, + { + "verseNum": 21, + "text": "So the LORD God caused the man to fall into a deep sleep, and while he slept, He took one of the man’s ribs and closed up the area with flesh." + }, + { + "verseNum": 22, + "text": "And from the rib that the LORD God had taken from the man, He made a woman and brought her to him." + }, + { + "verseNum": 23, + "text": "And the man said:\n \n “This is now bone of my bones\n and flesh of my flesh;\n she shall be called ‘woman,’\n for out of man she was taken.”" + }, + { + "verseNum": 24, + "text": "For this reason a man will leave his father and mother and be united to his wife, and they will become one flesh." + }, + { + "verseNum": 25, + "text": "And the man and his wife were both naked, and they were not ashamed." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-20.json b/data/en_bible/BSB/GEN/chapter-20.json new file mode 100644 index 0000000..4b2a45f --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-20.json @@ -0,0 +1,77 @@ +{ + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Now Abraham journeyed from there to the region of the Negev and settled between Kadesh and Shur. While he was staying in Gerar," + }, + { + "verseNum": 2, + "text": "Abraham said of his wife Sarah, “She is my sister.” So Abimelech king of Gerar had Sarah brought to him." + }, + { + "verseNum": 3, + "text": "One night, however, God came to Abimelech in a dream and told him, “You are as good as dead because of the woman you have taken, for she is a married woman.”" + }, + { + "verseNum": 4, + "text": "Now Abimelech had not gone near her, so he replied, “Lord, would You destroy a nation even though it is innocent?" + }, + { + "verseNum": 5, + "text": "Didn’t Abraham tell me, ‘She is my sister’? And she herself said, ‘He is my brother.’ I have done this in the integrity of my heart and the innocence of my hands.”" + }, + { + "verseNum": 6, + "text": "Then God said to Abimelech in the dream, “Yes, I know that you did this with a clear conscience, and so I have kept you from sinning against Me. That is why I did not let you touch her." + }, + { + "verseNum": 7, + "text": "Now return the man’s wife, for he is a prophet; he will pray for you and you will live. But if you do not restore her, be aware that you will surely die—you and all who belong to you.”" + }, + { + "verseNum": 8, + "text": "Early the next morning Abimelech got up and summoned all his servants; and when he described to them all that had happened, the men were terrified." + }, + { + "verseNum": 9, + "text": "Then Abimelech called Abraham and asked, “What have you done to us? How have I sinned against you, that you have brought such tremendous guilt upon me and my kingdom? You have done things to me that should not be done.”" + }, + { + "verseNum": 10, + "text": "Abimelech also asked Abraham, “What prompted you to do such a thing?”" + }, + { + "verseNum": 11, + "text": "Abraham replied, “I thought to myself, ‘Surely there is no fear of God in this place. They will kill me on account of my wife.’" + }, + { + "verseNum": 12, + "text": "Besides, she really is my sister, the daughter of my father—though not the daughter of my mother—and she became my wife." + }, + { + "verseNum": 13, + "text": "So when God had me journey from my father’s house, I said to Sarah, ‘This is how you can show your loyalty to me: Wherever we go, say of me, “He is my brother.”’”" + }, + { + "verseNum": 14, + "text": "So Abimelech brought sheep and cattle, menservants and maidservants, and he gave them to Abraham and restored his wife Sarah to him." + }, + { + "verseNum": 15, + "text": "And Abimelech said, “Look, my land is before you. Settle wherever you please.”" + }, + { + "verseNum": 16, + "text": "And he said to Sarah, “See, I am giving your brother a thousand pieces of silver. It is your vindication before all who are with you; you are completely cleared.”" + }, + { + "verseNum": 17, + "text": "Then Abraham prayed to God, and God healed Abimelech and his wife and his maidservants, so that they could again bear children—" + }, + { + "verseNum": 18, + "text": "for on account of Abraham’s wife Sarah, the LORD had completely closed all the wombs in Abimelech’s household." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-21.json b/data/en_bible/BSB/GEN/chapter-21.json new file mode 100644 index 0000000..baa3e08 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-21.json @@ -0,0 +1,141 @@ +{ + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Now the LORD attended to Sarah as He had said, and the LORD did for Sarah what He had promised." + }, + { + "verseNum": 2, + "text": "So Sarah conceived and bore a son to Abraham in his old age, at the very time God had promised." + }, + { + "verseNum": 3, + "text": "And Abraham gave the name Isaac to the son Sarah bore to him." + }, + { + "verseNum": 4, + "text": "When his son Isaac was eight days old, Abraham circumcised him, as God had commanded him." + }, + { + "verseNum": 5, + "text": "Abraham was a hundred years old when his son Isaac was born to him." + }, + { + "verseNum": 6, + "text": "Then Sarah said, “God has made me laugh, and everyone who hears of this will laugh with me.”" + }, + { + "verseNum": 7, + "text": "She added, “Who would have told Abraham that Sarah would nurse children? Yet I have borne him a son in his old age.”" + }, + { + "verseNum": 8, + "text": "So the child grew and was weaned, and Abraham held a great feast on the day Isaac was weaned." + }, + { + "verseNum": 9, + "text": "But Sarah saw that the son whom Hagar the Egyptian had borne to Abraham was mocking her son," + }, + { + "verseNum": 10, + "text": "and she said to Abraham, “Expel the slave woman and her son, for the slave woman’s son will never share in the inheritance with my son Isaac!”" + }, + { + "verseNum": 11, + "text": "Now this matter distressed Abraham greatly because it concerned his son Ishmael." + }, + { + "verseNum": 12, + "text": "But God said to Abraham, “Do not be distressed about the boy and your maidservant. Listen to everything that Sarah tells you, for through Isaac your offspring will be reckoned." + }, + { + "verseNum": 13, + "text": "But I will also make a nation of the slave woman’s son, because he is your offspring.”" + }, + { + "verseNum": 14, + "text": "Early in the morning, Abraham got up, took bread and a skin of water, put them on Hagar’s shoulders, and sent her away with the boy. She left and wandered in the Wilderness of Beersheba." + }, + { + "verseNum": 15, + "text": "When the water in the skin was gone, she left the boy under one of the bushes." + }, + { + "verseNum": 16, + "text": "Then she went off and sat down nearby, about a bowshot away, for she said, “I cannot bear to watch the boy die!” And as she sat nearby, she lifted up her voice and wept." + }, + { + "verseNum": 17, + "text": "Then God heard the voice of the boy, and the angel of God called to Hagar from heaven, “What is wrong, Hagar? Do not be afraid, for God has heard the voice of the boy where he lies." + }, + { + "verseNum": 18, + "text": "Get up, lift up the boy, and take him by the hand, for I will make him into a great nation.”" + }, + { + "verseNum": 19, + "text": "Then God opened her eyes, and she saw a well of water. So she went and filled the skin with water and gave the boy a drink." + }, + { + "verseNum": 20, + "text": "And God was with the boy, and he grew up and settled in the wilderness and became a great archer." + }, + { + "verseNum": 21, + "text": "And while he was dwelling in the Wilderness of Paran, his mother got a wife for him from the land of Egypt." + }, + { + "verseNum": 22, + "text": "At that time Abimelech and Phicol the commander of his army said to Abraham, “God is with you in all that you do." + }, + { + "verseNum": 23, + "text": "Now, therefore, swear to me here before God that you will not deal falsely with me or my children or descendants. Show to me and to the country in which you reside the same kindness that I have shown to you.”" + }, + { + "verseNum": 24, + "text": "And Abraham replied, “I swear it.”" + }, + { + "verseNum": 25, + "text": "But when Abraham complained to Abimelech about a well that Abimelech’s servants had seized," + }, + { + "verseNum": 26, + "text": "Abimelech replied, “I do not know who has done this. You did not tell me, so I have not heard about it until today.”" + }, + { + "verseNum": 27, + "text": "So Abraham brought sheep and cattle and gave them to Abimelech, and the two men made a covenant." + }, + { + "verseNum": 28, + "text": "Abraham separated seven ewe lambs from the flock," + }, + { + "verseNum": 29, + "text": "and Abimelech asked him, “Why have you set apart these seven ewe lambs?”" + }, + { + "verseNum": 30, + "text": "He replied, “You are to accept the seven ewe lambs from my hand as my witness that I dug this well.”" + }, + { + "verseNum": 31, + "text": "So that place was called Beersheba, because it was there that the two of them swore an oath." + }, + { + "verseNum": 32, + "text": "After they had made the covenant at Beersheba, Abimelech and Phicol the commander of his army got up and returned to the land of the Philistines." + }, + { + "verseNum": 33, + "text": "And Abraham planted a tamarisk tree in Beersheba, and there he called upon the name of the LORD, the Eternal God." + }, + { + "verseNum": 34, + "text": "And Abraham resided in the land of the Philistines for a long time." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-22.json b/data/en_bible/BSB/GEN/chapter-22.json new file mode 100644 index 0000000..5304e75 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-22.json @@ -0,0 +1,101 @@ +{ + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Some time later God tested Abraham and said to him, “Abraham!”\n \n“Here I am,” he answered." + }, + { + "verseNum": 2, + "text": "“Take your son,” God said, “your only son Isaac, whom you love, and go to the land of Moriah. Offer him there as a burnt offering on one of the mountains, which I will show you.”" + }, + { + "verseNum": 3, + "text": "So Abraham got up early the next morning, saddled his donkey, and took along two of his servants and his son Isaac. He split the wood for a burnt offering and set out for the place God had designated." + }, + { + "verseNum": 4, + "text": "On the third day Abraham looked up and saw the place in the distance." + }, + { + "verseNum": 5, + "text": "“Stay here with the donkey,” Abraham told his servants. “The boy and I will go over there to worship, and then we will return to you.”" + }, + { + "verseNum": 6, + "text": "Abraham took the wood for the burnt offering and placed it on his son Isaac. He himself carried the fire and the sacrificial knife, and the two of them walked on together." + }, + { + "verseNum": 7, + "text": "Then Isaac said to his father Abraham, “My father!”\n \n“Here I am, my son,” he replied.\n \n“The fire and the wood are here,” said Isaac, “but where is the lamb for the burnt offering?”" + }, + { + "verseNum": 8, + "text": "Abraham answered, “God Himself will provide the lamb for the burnt offering, my son.” And the two walked on together." + }, + { + "verseNum": 9, + "text": "When they arrived at the place God had designated, Abraham built the altar there and arranged the wood. He bound his son Isaac and placed him on the altar, atop the wood." + }, + { + "verseNum": 10, + "text": "Then Abraham reached out his hand and took the knife to slaughter his son." + }, + { + "verseNum": 11, + "text": "Just then the angel of the LORD called out to him from heaven, “Abraham, Abraham!”\n \n“Here I am,” he replied." + }, + { + "verseNum": 12, + "text": "“Do not lay a hand on the boy or do anything to him,” said the angel, “for now I know that you fear God, since you have not withheld your only son from me.”" + }, + { + "verseNum": 13, + "text": "Then Abraham looked up and saw behind him a ram in a thicket, caught by its horns. So he went and took the ram and offered it as a burnt offering in place of his son." + }, + { + "verseNum": 14, + "text": "And Abraham called that place The LORD Will Provide. So to this day it is said, “On the mountain of the LORD it will be provided.”" + }, + { + "verseNum": 15, + "text": "And the angel of the LORD called to Abraham from heaven a second time," + }, + { + "verseNum": 16, + "text": "saying, “By Myself I have sworn, declares the LORD, that because you have done this and have not withheld your only son," + }, + { + "verseNum": 17, + "text": "I will surely bless you, and I will multiply your descendants like the stars in the sky and the sand on the seashore. Your descendants will possess the gates of their enemies." + }, + { + "verseNum": 18, + "text": "And through your offspring all nations of the earth will be blessed, because you have obeyed My voice.”" + }, + { + "verseNum": 19, + "text": "Abraham went back to his servants, and they got up and set out together for Beersheba. And Abraham settled in Beersheba." + }, + { + "verseNum": 20, + "text": "Some time later, Abraham was told, “Milcah has also borne sons to your brother Nahor:" + }, + { + "verseNum": 21, + "text": "Uz the firstborn, his brother Buz, Kemuel (the father of Aram)," + }, + { + "verseNum": 22, + "text": "Chesed, Hazo, Pildash, Jidlaph, and Bethuel.”" + }, + { + "verseNum": 23, + "text": "And Bethuel became the father of Rebekah. Milcah bore these eight sons to Abraham’s brother Nahor." + }, + { + "verseNum": 24, + "text": "Moreover, Nahor’s concubine, whose name was Reumah, bore Tebah, Gaham, Tahash, and Maacah." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-23.json b/data/en_bible/BSB/GEN/chapter-23.json new file mode 100644 index 0000000..678b84a --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-23.json @@ -0,0 +1,85 @@ +{ + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Now Sarah lived to be 127 years old." + }, + { + "verseNum": 2, + "text": "She died in Kiriath-arba (that is, Hebron) in the land of Canaan, and Abraham went out to mourn and to weep for her." + }, + { + "verseNum": 3, + "text": "Then Abraham got up from beside his dead wife and said to the Hittites," + }, + { + "verseNum": 4, + "text": "“I am a foreigner and an outsider among you. Give me a burial site among you so that I can bury my dead.”" + }, + { + "verseNum": 5, + "text": "The Hittites replied to Abraham," + }, + { + "verseNum": 6, + "text": "“Listen to us, sir. You are God’s chosen one among us. Bury your dead in the finest of our tombs. None of us will withhold his tomb for burying your dead.”" + }, + { + "verseNum": 7, + "text": "Then Abraham rose and bowed down before the people of the land, the Hittites." + }, + { + "verseNum": 8, + "text": "“If you are willing for me to bury my dead,” he said to them, “listen to me, and approach Ephron son of Zohar on my behalf" + }, + { + "verseNum": 9, + "text": "to sell me the cave of Machpelah that belongs to him; it is at the end of his field. Let him sell it to me in your presence for full price, so that I may have a burial site.”" + }, + { + "verseNum": 10, + "text": "Now Ephron was sitting among the sons of Heth. So in the presence of all the Hittites who had come to the gate of his city, Ephron the Hittite answered Abraham," + }, + { + "verseNum": 11, + "text": "“No, my lord. Listen to me. I give you the field, and I give you the cave that is in it. I give it to you in the presence of my people. Bury your dead.”" + }, + { + "verseNum": 12, + "text": "Again Abraham bowed down before the people of the land" + }, + { + "verseNum": 13, + "text": "and said to Ephron in their presence, “If you will please listen to me, I will pay you the price of the field. Accept it from me, so that I may bury my dead there.”" + }, + { + "verseNum": 14, + "text": "Ephron answered Abraham," + }, + { + "verseNum": 15, + "text": "“Listen to me, my lord. The land is worth four hundred shekels of silver, but what is that between you and me? Bury your dead.”" + }, + { + "verseNum": 16, + "text": "Abraham agreed to Ephron’s terms and weighed out for him the price he had named in the hearing of the Hittites: four hundred shekels of silver, according to the standard of the merchants." + }, + { + "verseNum": 17, + "text": "So Ephron’s field at Machpelah near Mamre, the cave that was in it, and all the trees within the boundaries of the field were deeded over" + }, + { + "verseNum": 18, + "text": "to Abraham’s possession in the presence of all the Hittites who had come to the gate of his city." + }, + { + "verseNum": 19, + "text": "After this, Abraham buried his wife Sarah in the cave of the field at Machpelah near Mamre (that is, Hebron) in the land of Canaan." + }, + { + "verseNum": 20, + "text": "So the field and its cave were deeded by the Hittites to Abraham as a burial site." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-24.json b/data/en_bible/BSB/GEN/chapter-24.json new file mode 100644 index 0000000..a669701 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-24.json @@ -0,0 +1,273 @@ +{ + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "By now Abraham was old and well along in years, and the LORD had blessed him in every way." + }, + { + "verseNum": 2, + "text": "So Abraham instructed the chief servant of his household, who managed all he owned, “Place your hand under my thigh," + }, + { + "verseNum": 3, + "text": "and I will have you swear by the LORD, the God of heaven and the God of earth, that you will not take a wife for my son from the daughters of the Canaanites among whom I am dwelling," + }, + { + "verseNum": 4, + "text": "but will go to my country and my kindred to take a wife for my son Isaac.”" + }, + { + "verseNum": 5, + "text": "The servant asked him, “What if the woman is unwilling to follow me to this land? Shall I then take your son back to the land from which you came?”" + }, + { + "verseNum": 6, + "text": "Abraham replied, “Make sure that you do not take my son back there." + }, + { + "verseNum": 7, + "text": "The LORD, the God of heaven, who brought me from my father’s house and my native land, who spoke to me and promised me on oath, saying, ‘To your offspring I will give this land’—He will send His angel before you so that you can take a wife for my son from there." + }, + { + "verseNum": 8, + "text": "And if the woman is unwilling to follow you, then you are released from this oath of mine. Only do not take my son back there.”" + }, + { + "verseNum": 9, + "text": "So the servant placed his hand under the thigh of his master Abraham and swore an oath to him concerning this matter." + }, + { + "verseNum": 10, + "text": "Then the servant took ten of his master’s camels and departed with all manner of good things from his master in hand. And he set out for Nahor’s hometown in Aram-naharaim." + }, + { + "verseNum": 11, + "text": "As evening approached, he made the camels kneel down near the well outside the town at the time when the women went out to draw water." + }, + { + "verseNum": 12, + "text": "“O LORD, God of my master Abraham,” he prayed, “please grant me success today, and show kindness to my master Abraham." + }, + { + "verseNum": 13, + "text": "Here I am, standing beside the spring, and the daughters of the townspeople are coming out to draw water." + }, + { + "verseNum": 14, + "text": "Now may it happen that the girl to whom I say, ‘Please let down your jar that I may drink,’ and who responds, ‘Drink, and I will water your camels as well’—let her be the one You have appointed for Your servant Isaac. By this I will know that You have shown kindness to my master.”" + }, + { + "verseNum": 15, + "text": "Before the servant had finished praying, Rebekah came out with her jar on her shoulder. She was the daughter of Bethuel son of Milcah, the wife of Abraham’s brother Nahor." + }, + { + "verseNum": 16, + "text": "Now the girl was very beautiful, a virgin who had not had relations with any man. She went down to the spring, filled her jar, and came up again." + }, + { + "verseNum": 17, + "text": "So the servant ran to meet her and said, “Please let me have a little water from your jar.”" + }, + { + "verseNum": 18, + "text": "“Drink, my lord,” she replied, and she quickly lowered her jar to her hands and gave him a drink." + }, + { + "verseNum": 19, + "text": "After she had given him a drink, she said, “I will also draw water for your camels, until they have had enough to drink.”" + }, + { + "verseNum": 20, + "text": "And she quickly emptied her jar into the trough and ran back to the well to draw water, until she had drawn water for all his camels." + }, + { + "verseNum": 21, + "text": "Meanwhile, the man watched her silently to see whether or not the LORD had made his journey a success." + }, + { + "verseNum": 22, + "text": "And after the camels had finished drinking, he took out a gold ring weighing a beka, and two gold bracelets for her wrists weighing ten shekels." + }, + { + "verseNum": 23, + "text": "“Whose daughter are you?” he asked. “Please tell me, is there room in your father’s house for us to spend the night?”" + }, + { + "verseNum": 24, + "text": "She replied, “I am the daughter of Bethuel, the son that Milcah bore to Nahor.”" + }, + { + "verseNum": 25, + "text": "Then she added, “We have plenty of straw and feed, as well as a place for you to spend the night.”" + }, + { + "verseNum": 26, + "text": "Then the man bowed down and worshiped the LORD," + }, + { + "verseNum": 27, + "text": "saying, “Blessed be the LORD, the God of my master Abraham, who has not withheld His kindness and faithfulness from my master. As for me, the LORD has led me on the journey to the house of my master’s relatives.”" + }, + { + "verseNum": 28, + "text": "The girl ran and told her mother’s household about these things." + }, + { + "verseNum": 29, + "text": "Now Rebekah had a brother named Laban, and he rushed out to the man at the spring." + }, + { + "verseNum": 30, + "text": "As soon as he saw the ring, and the bracelets on his sister’s wrists, and heard Rebekah’s words, “The man said this to me,” he went and found the man standing by the camels near the spring." + }, + { + "verseNum": 31, + "text": "“Come, you who are blessed by the LORD,” said Laban. “Why are you standing out here? I have prepared the house and a place for the camels.”" + }, + { + "verseNum": 32, + "text": "So the man came to the house, and the camels were unloaded. Straw and feed were brought to the camels, and water to wash his feet and the feet of his companions." + }, + { + "verseNum": 33, + "text": "Then a meal was set before the man, but he said, “I will not eat until I have told you what I came to say.”\n \nSo Laban said, “Please speak.”" + }, + { + "verseNum": 34, + "text": "“I am Abraham’s servant,” he replied." + }, + { + "verseNum": 35, + "text": "“The LORD has greatly blessed my master, and he has become rich. He has given him sheep and cattle, silver and gold, menservants and maidservants, camels and donkeys." + }, + { + "verseNum": 36, + "text": "My master’s wife Sarah has borne him a son in her old age, and my master has given him everything he owns." + }, + { + "verseNum": 37, + "text": "My master made me swear an oath and said, ‘You shall not take a wife for my son from the daughters of the Canaanites in whose land I dwell," + }, + { + "verseNum": 38, + "text": "but you shall go to my father’s house and to my kindred to take a wife for my son.’" + }, + { + "verseNum": 39, + "text": "Then I asked my master, ‘What if the woman will not come back with me?’" + }, + { + "verseNum": 40, + "text": "And he told me, ‘The LORD, before whom I have walked, will send His angel with you and make your journey a success, so that you may take a wife for my son from my kindred and from my father’s house." + }, + { + "verseNum": 41, + "text": "And when you go to my kindred, if they refuse to give her to you, then you will be released from my oath.’" + }, + { + "verseNum": 42, + "text": "So when I came to the spring today, I prayed: O LORD, God of my master Abraham, if only You would make my journey a success!" + }, + { + "verseNum": 43, + "text": "Here I am, standing beside this spring. Now if a maiden comes out to draw water and I say to her, ‘Please let me drink a little water from your jar,’" + }, + { + "verseNum": 44, + "text": "and she replies, ‘Drink, and I will draw water for your camels as well,’ may she be the woman the LORD has appointed for my master’s son." + }, + { + "verseNum": 45, + "text": "And before I had finished praying in my heart, there was Rebekah coming out with her jar on her shoulder, and she went down to the spring and drew water. So I said to her, ‘Please give me a drink.’" + }, + { + "verseNum": 46, + "text": "She quickly lowered her jar from her shoulder and said, ‘Drink, and I will water your camels as well.’ So I drank, and she also watered the camels." + }, + { + "verseNum": 47, + "text": "Then I asked her, ‘Whose daughter are you?’\n \nShe replied, ‘The daughter of Bethuel son of Nahor, whom Milcah bore to him.’ So I put the ring on her nose and the bracelets on her wrists." + }, + { + "verseNum": 48, + "text": "Then I bowed down and worshiped the LORD; and I blessed the LORD, the God of my master Abraham, who led me on the right road to take the granddaughter of my master’s brother for his son." + }, + { + "verseNum": 49, + "text": "Now if you will show kindness and faithfulness to my master, tell me; but if not, let me know, so that I may go elsewhere.”" + }, + { + "verseNum": 50, + "text": "Laban and Bethuel answered, “This is from the LORD; we have no choice in the matter." + }, + { + "verseNum": 51, + "text": "Rebekah is here before you. Take her and go, and let her become the wife of your master’s son, just as the LORD has decreed.”" + }, + { + "verseNum": 52, + "text": "When Abraham’s servant heard their words, he bowed down to the ground before the LORD." + }, + { + "verseNum": 53, + "text": "Then he brought out jewels of silver and gold, and articles of clothing, and he gave them to Rebekah. He also gave precious gifts to her brother and her mother." + }, + { + "verseNum": 54, + "text": "Then he and the men with him ate and drank and spent the night there.\n \nWhen they got up the next morning, he said, “Send me on my way to my master.”" + }, + { + "verseNum": 55, + "text": "But her brother and mother said, “Let the girl remain with us ten days or so. After that, she may go.”" + }, + { + "verseNum": 56, + "text": "But he replied, “Do not delay me, since the LORD has made my journey a success. Send me on my way so that I may go to my master.”" + }, + { + "verseNum": 57, + "text": "So they said, “We will call the girl and ask her opinion.”" + }, + { + "verseNum": 58, + "text": "They called Rebekah and asked her, “Will you go with this man?”\n \n“I will go,” she replied." + }, + { + "verseNum": 59, + "text": "So they sent their sister Rebekah on her way, along with her nurse and Abraham’s servant and his men." + }, + { + "verseNum": 60, + "text": "And they blessed Rebekah and said to her,\n \n “Our sister, may you become the mother\n of thousands upon thousands.\n May your offspring possess\n the gates of their enemies.”" + }, + { + "verseNum": 61, + "text": "Then Rebekah and her servant girls got ready, mounted the camels, and followed the man. So the servant took Rebekah and left." + }, + { + "verseNum": 62, + "text": "Now Isaac had just returned from Beer-lahai-roi, for he was living in the Negev." + }, + { + "verseNum": 63, + "text": "Early in the evening, Isaac went out to the field to meditate, and looking up, he saw the camels approaching." + }, + { + "verseNum": 64, + "text": "And when Rebekah looked up and saw Isaac, she got down from her camel" + }, + { + "verseNum": 65, + "text": "and asked the servant, “Who is that man in the field coming to meet us?”\n \n“It is my master,” the servant answered. So she took her veil and covered herself." + }, + { + "verseNum": 66, + "text": "Then the servant told Isaac all that he had done." + }, + { + "verseNum": 67, + "text": "And Isaac brought her into the tent of his mother Sarah and took Rebekah as his wife. And Isaac loved her and was comforted after his mother’s death." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-25.json b/data/en_bible/BSB/GEN/chapter-25.json new file mode 100644 index 0000000..9b1f2d5 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-25.json @@ -0,0 +1,141 @@ +{ + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Now Abraham had taken another wife, named Keturah," + }, + { + "verseNum": 2, + "text": "and she bore him Zimran, Jokshan, Medan, Midian, Ishbak, and Shuah." + }, + { + "verseNum": 3, + "text": "Jokshan was the father of Sheba and Dedan. And the sons of Dedan were the Asshurites, the Letushites, and the Leummites." + }, + { + "verseNum": 4, + "text": "The sons of Midian were Ephah, Epher, Hanoch, Abida, and Eldaah.\n \nAll these were descendants of Keturah." + }, + { + "verseNum": 5, + "text": "Abraham left everything he owned to Isaac." + }, + { + "verseNum": 6, + "text": "But while he was still alive, Abraham gave gifts to the sons of his concubines and sent them away from his son Isaac to the land of the east." + }, + { + "verseNum": 7, + "text": "Abraham lived a total of 175 years." + }, + { + "verseNum": 8, + "text": "And at a ripe old age he breathed his last and died, old and contented, and was gathered to his people." + }, + { + "verseNum": 9, + "text": "His sons Isaac and Ishmael buried him in the cave of Machpelah near Mamre, in the field of Ephron son of Zohar the Hittite." + }, + { + "verseNum": 10, + "text": "This was the field that Abraham had bought from the Hittites. Abraham was buried there with his wife Sarah." + }, + { + "verseNum": 11, + "text": "After Abraham’s death, God blessed his son Isaac, who lived near Beer-lahai-roi." + }, + { + "verseNum": 12, + "text": "This is the account of Abraham’s son Ishmael, whom Hagar the Egyptian, Sarah’s maidservant, bore to Abraham." + }, + { + "verseNum": 13, + "text": "These are the names of the sons of Ishmael in the order of their birth: Nebaioth the firstborn of Ishmael, then Kedar, Adbeel, Mibsam," + }, + { + "verseNum": 14, + "text": "Mishma, Dumah, Massa," + }, + { + "verseNum": 15, + "text": "Hadad, Tema, Jetur, Naphish, and Kedemah." + }, + { + "verseNum": 16, + "text": "These were the sons of Ishmael, and these were their names by their villages and encampments—twelve princes of their tribes." + }, + { + "verseNum": 17, + "text": "Ishmael lived a total of 137 years. Then he breathed his last and died, and was gathered to his people." + }, + { + "verseNum": 18, + "text": "Ishmael’s descendants settled from Havilah to Shur, which is near the border of Egypt as you go toward Asshur. And they lived in hostility toward all their brothers." + }, + { + "verseNum": 19, + "text": "This is the account of Abraham’s son Isaac. Abraham became the father of Isaac," + }, + { + "verseNum": 20, + "text": "and Isaac was forty years old when he married Rebekah, the daughter of Bethuel the Aramean from Paddan-aram and the sister of Laban the Aramean." + }, + { + "verseNum": 21, + "text": "Later, Isaac prayed to the LORD on behalf of his wife, because she was barren. And the LORD heard his prayer, and his wife Rebekah conceived." + }, + { + "verseNum": 22, + "text": "But the children inside her struggled with each other, and she said, “Why is this happening to me?” So Rebekah went to inquire of the LORD," + }, + { + "verseNum": 23, + "text": "and He declared to her:\n \n “Two nations are in your womb,\n and two peoples from within you will be separated;\n one people will be stronger than the other,\n and the older will serve the younger.”" + }, + { + "verseNum": 24, + "text": "When her time came to give birth, there were indeed twins in her womb." + }, + { + "verseNum": 25, + "text": "The first one came out red, covered with hair like a fur coat; so they named him Esau." + }, + { + "verseNum": 26, + "text": "After this, his brother came out grasping Esau’s heel; so he was named Jacob. And Isaac was sixty years old when the twins were born." + }, + { + "verseNum": 27, + "text": "When the boys grew up, Esau became a skillful hunter, a man of the field, while Jacob was a quiet man who stayed at home." + }, + { + "verseNum": 28, + "text": "Because Isaac had a taste for wild game, he loved Esau; but Rebekah loved Jacob." + }, + { + "verseNum": 29, + "text": "One day, while Jacob was cooking some stew, Esau came in from the field and was famished." + }, + { + "verseNum": 30, + "text": "He said to Jacob, “Let me eat some of that red stew, for I am famished.” (That is why he was also called Edom.)" + }, + { + "verseNum": 31, + "text": "“First sell me your birthright,” Jacob replied." + }, + { + "verseNum": 32, + "text": "“Look,” said Esau, “I am about to die, so what good is a birthright to me?”" + }, + { + "verseNum": 33, + "text": "“Swear to me first,” Jacob said.\n \nSo Esau swore to Jacob and sold him the birthright." + }, + { + "verseNum": 34, + "text": "Then Jacob gave some bread and lentil stew to Esau, who ate and drank and then got up and went away. Thus Esau despised his birthright." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-26.json b/data/en_bible/BSB/GEN/chapter-26.json new file mode 100644 index 0000000..2e091db --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-26.json @@ -0,0 +1,145 @@ +{ + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "Now there was another famine in the land, subsequent to the one that had occurred in Abraham’s time. And Isaac went to Abimelech king of the Philistines at Gerar." + }, + { + "verseNum": 2, + "text": "The LORD appeared to Isaac and said, “Do not go down to Egypt. Settle in the land where I tell you." + }, + { + "verseNum": 3, + "text": "Stay in this land as a foreigner, and I will be with you and bless you. For I will give all these lands to you and your offspring, and I will confirm the oath that I swore to your father Abraham." + }, + { + "verseNum": 4, + "text": "I will make your descendants as numerous as the stars in the sky, and I will give them all these lands, and through your offspring all nations of the earth will be blessed," + }, + { + "verseNum": 5, + "text": "because Abraham listened to My voice and kept My charge, My commandments, My statutes, and My laws.”" + }, + { + "verseNum": 6, + "text": "So Isaac settled in Gerar." + }, + { + "verseNum": 7, + "text": "But when the men of that place asked about his wife, he said, “She is my sister.” For he was afraid to say, “She is my wife,” since he thought to himself, “The men of this place will kill me on account of Rebekah, because she is so beautiful.”" + }, + { + "verseNum": 8, + "text": "When Isaac had been there a long time, Abimelech king of the Philistines looked down from the window and was surprised to see Isaac caressing his wife Rebekah." + }, + { + "verseNum": 9, + "text": "Abimelech sent for Isaac and said, “So she is really your wife! How could you say, ‘She is my sister’?”\n \nIsaac replied, “Because I thought I might die on account of her.”" + }, + { + "verseNum": 10, + "text": "“What is this you have done to us?” asked Abimelech. “One of the people could easily have slept with your wife, and you would have brought guilt upon us.”" + }, + { + "verseNum": 11, + "text": "So Abimelech warned all the people, saying, “Whoever harms this man or his wife will surely be put to death.”" + }, + { + "verseNum": 12, + "text": "Now Isaac sowed seed in the land, and that very year he reaped a hundredfold. And the LORD blessed him," + }, + { + "verseNum": 13, + "text": "and he became richer and richer, until he was exceedingly wealthy." + }, + { + "verseNum": 14, + "text": "He owned so many flocks and herds and servants that the Philistines envied him." + }, + { + "verseNum": 15, + "text": "So the Philistines took dirt and stopped up all the wells that his father’s servants had dug in the days of his father Abraham." + }, + { + "verseNum": 16, + "text": "Then Abimelech said to Isaac, “Depart from us, for you are much too powerful for us.”" + }, + { + "verseNum": 17, + "text": "So Isaac left that place and encamped in the Valley of Gerar and settled there." + }, + { + "verseNum": 18, + "text": "Isaac reopened the wells that had been dug in the days of his father Abraham, which the Philistines had stopped up after Abraham died. And he gave these wells the same names his father had given them." + }, + { + "verseNum": 19, + "text": "Then Isaac’s servants dug in the valley and found a well of fresh water there." + }, + { + "verseNum": 20, + "text": "But the herdsmen of Gerar quarreled with Isaac’s herdsmen and said, “The water is ours!” So he named the well Esek, because they contended with him." + }, + { + "verseNum": 21, + "text": "Then they dug another well and quarreled over that one also; so he named it Sitnah." + }, + { + "verseNum": 22, + "text": "He moved on from there and dug another well, and they did not quarrel over it. He named it Rehoboth and said, “At last the LORD has made room for us, and we will be fruitful in the land.”" + }, + { + "verseNum": 23, + "text": "From there Isaac went up to Beersheba," + }, + { + "verseNum": 24, + "text": "and that night the LORD appeared to him and said, “I am the God of your father Abraham. Do not be afraid, for I am with you. I will bless you and multiply your descendants for the sake of My servant Abraham.”" + }, + { + "verseNum": 25, + "text": "So Isaac built an altar there and called on the name of the LORD, and he pitched his tent there. His servants also dug a well there." + }, + { + "verseNum": 26, + "text": "Later, Abimelech came to Isaac from Gerar, with Ahuzzath his adviser and Phicol the commander of his army." + }, + { + "verseNum": 27, + "text": "“Why have you come to me?” Isaac asked them. “You hated me and sent me away.”" + }, + { + "verseNum": 28, + "text": "“We can plainly see that the LORD has been with you,” they replied. “We recommend that there should now be an oath between us and you. Let us make a covenant with you" + }, + { + "verseNum": 29, + "text": "that you will not harm us, just as we have not harmed you but have done only good to you, sending you on your way in peace. And now you are blessed by the LORD.”" + }, + { + "verseNum": 30, + "text": "So Isaac prepared a feast for them, and they ate and drank." + }, + { + "verseNum": 31, + "text": "And they got up early the next morning and swore an oath to each other. Then Isaac sent them on their way, and they left him in peace." + }, + { + "verseNum": 32, + "text": "On that same day, Isaac’s servants came and told him about the well they had dug. “We have found water!” they told him." + }, + { + "verseNum": 33, + "text": "So he called it Shibah, and to this day the name of the city is Beersheba." + }, + { + "verseNum": 34, + "text": "When Esau was forty years old, he took as his wives Judith daughter of Beeri the Hittite and Basemath daughter of Elon the Hittite." + }, + { + "verseNum": 35, + "text": "And they brought grief to Isaac and Rebekah." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-27.json b/data/en_bible/BSB/GEN/chapter-27.json new file mode 100644 index 0000000..4414e27 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-27.json @@ -0,0 +1,189 @@ +{ + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "When Isaac was old and his eyes were so weak that he could no longer see, he called his older son Esau and said to him, “My son.”\n \n“Here I am,” Esau replied." + }, + { + "verseNum": 2, + "text": "“Look,” said Isaac, “I am now old, and I do not know the day of my death." + }, + { + "verseNum": 3, + "text": "Take your weapons—your quiver and bow—and go out into the field to hunt some game for me." + }, + { + "verseNum": 4, + "text": "Then prepare a tasty dish that I love and bring it to me to eat, so that I may bless you before I die.”" + }, + { + "verseNum": 5, + "text": "Now Rebekah was listening to what Isaac told his son Esau. So when Esau went into the field to hunt game and bring it back," + }, + { + "verseNum": 6, + "text": "Rebekah said to her son Jacob, “Behold, I overheard your father saying to your brother Esau," + }, + { + "verseNum": 7, + "text": "‘Bring me some game and prepare me a tasty dish to eat, so that I may bless you in the presence of the LORD before I die.’" + }, + { + "verseNum": 8, + "text": "Now, my son, listen to my voice and do exactly as I tell you." + }, + { + "verseNum": 9, + "text": "Go out to the flock and bring me two choice young goats, so that I can make them into a tasty dish for your father—the kind he loves." + }, + { + "verseNum": 10, + "text": "Then take it to your father to eat, so that he may bless you before he dies.”" + }, + { + "verseNum": 11, + "text": "Jacob answered his mother Rebekah, “Look, my brother Esau is a hairy man, but I am smooth-skinned." + }, + { + "verseNum": 12, + "text": "What if my father touches me? Then I would be revealed to him as a deceiver, and I would bring upon myself a curse rather than a blessing.”" + }, + { + "verseNum": 13, + "text": "His mother replied, “Your curse be on me, my son. Just obey my voice and go get them for me.”" + }, + { + "verseNum": 14, + "text": "So Jacob went and got two goats and brought them to his mother, who made the tasty food his father loved." + }, + { + "verseNum": 15, + "text": "And Rebekah took the finest clothes in the house that belonged to her older son Esau, and she put them on her younger son Jacob." + }, + { + "verseNum": 16, + "text": "She also put the skins of the young goats on his hands and on the smooth part of his neck." + }, + { + "verseNum": 17, + "text": "Then she handed her son Jacob the tasty food and bread she had made." + }, + { + "verseNum": 18, + "text": "So Jacob went to his father and said, “My father.”\n \n“Here I am!” he answered. “Which one are you, my son?”" + }, + { + "verseNum": 19, + "text": "Jacob said to his father, “I am Esau, your firstborn. I have done as you told me. Please sit up and eat some of my game, so that you may bless me.”" + }, + { + "verseNum": 20, + "text": "But Isaac asked his son, “How did you ever find it so quickly, my son?”\n \n“Because the LORD your God brought it to me,” he replied." + }, + { + "verseNum": 21, + "text": "Then Isaac said to Jacob, “Please come closer so I can touch you, my son. Are you really my son Esau, or not?”" + }, + { + "verseNum": 22, + "text": "So Jacob came close to his father Isaac, who touched him and said, “The voice is the voice of Jacob, but the hands are the hands of Esau.”" + }, + { + "verseNum": 23, + "text": "Isaac did not recognize him, because his hands were hairy like those of his brother Esau; so he blessed him." + }, + { + "verseNum": 24, + "text": "Again he asked, “Are you really my son Esau?”\n \nAnd he replied, “I am.”" + }, + { + "verseNum": 25, + "text": "“Serve me,” said Isaac, “and let me eat some of my son’s game, so that I may bless you.”\n \nJacob brought it to him, and he ate; then he brought him wine, and he drank." + }, + { + "verseNum": 26, + "text": "Then his father Isaac said to him, “Please come near and kiss me, my son.”" + }, + { + "verseNum": 27, + "text": "So he came near and kissed him. When Isaac smelled his clothing, he blessed him and said:\n \n “Ah, the smell of my son\n is like the smell of a field\n that the LORD has blessed." + }, + { + "verseNum": 28, + "text": "May God give to you the dew of heaven\n and the richness of the earth—\n an abundance of grain and new wine." + }, + { + "verseNum": 29, + "text": "May peoples serve you\n and nations bow down to you.\n May you be the master of your brothers,\n and may the sons of your mother bow down to you.\n May those who curse you be cursed,\n and those who bless you be blessed.”" + }, + { + "verseNum": 30, + "text": "As soon as Isaac had finished blessing him and Jacob had left his father’s presence, his brother Esau returned from the hunt." + }, + { + "verseNum": 31, + "text": "He too made some tasty food, brought it to his father, and said to him, “My father, sit up and eat of your son’s game, so that you may bless me.”" + }, + { + "verseNum": 32, + "text": "But his father Isaac replied, “Who are you?”\n \n“I am Esau, your firstborn son,” he answered." + }, + { + "verseNum": 33, + "text": "Isaac began to tremble violently and said, “Who was it, then, who hunted the game and brought it to me? Before you came in, I ate it all and blessed him—and indeed, he will be blessed!”" + }, + { + "verseNum": 34, + "text": "When Esau heard his father’s words, he let out a loud and bitter cry and said to his father, “Bless me too, O my father!”" + }, + { + "verseNum": 35, + "text": "But Isaac replied, “Your brother came deceitfully and took your blessing.”" + }, + { + "verseNum": 36, + "text": "So Esau declared, “Is he not rightly named Jacob? For he has cheated me twice. He took my birthright, and now he has taken my blessing.” Then he asked, “Haven’t you saved a blessing for me?”" + }, + { + "verseNum": 37, + "text": "But Isaac answered Esau: “Look, I have made him your master and given him all his relatives as servants; I have sustained him with grain and new wine. What is left that I can do for you, my son?”" + }, + { + "verseNum": 38, + "text": "Esau said to his father, “Do you have only one blessing, my father? Bless me too, O my father!” Then Esau wept aloud." + }, + { + "verseNum": 39, + "text": "His father Isaac answered him:\n \n “Behold, your dwelling place shall be\n away from the richness of the land,\n away from the dew of heaven above." + }, + { + "verseNum": 40, + "text": "You shall live by the sword\n and serve your brother.\n But when you rebel,\n you will tear his yoke from your neck.”" + }, + { + "verseNum": 41, + "text": "Esau held a grudge against Jacob because of the blessing his father had given him. And Esau said in his heart, “The days of mourning for my father are at hand; then I will kill my brother Jacob.”" + }, + { + "verseNum": 42, + "text": "When the words of her older son Esau were relayed to Rebekah, she sent for her younger son Jacob and told him, “Look, your brother Esau is consoling himself by plotting to kill you." + }, + { + "verseNum": 43, + "text": "So now, my son, obey my voice and flee at once to my brother Laban in Haran." + }, + { + "verseNum": 44, + "text": "Stay with him for a while, until your brother’s fury subsides—" + }, + { + "verseNum": 45, + "text": "until your brother’s rage against you wanes and he forgets what you have done to him. Then I will send for you and bring you back from there. Why should I lose both of you in one day?”" + }, + { + "verseNum": 46, + "text": "Then Rebekah said to Isaac, “I am weary of my life because of these Hittite women. If Jacob takes a Hittite wife from among them, what good is my life?”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-28.json b/data/en_bible/BSB/GEN/chapter-28.json new file mode 100644 index 0000000..186f308 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-28.json @@ -0,0 +1,93 @@ +{ + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "So Isaac called for Jacob and blessed him. “Do not take a wife from the Canaanite women,” he commanded." + }, + { + "verseNum": 2, + "text": "“Go at once to Paddan-aram, to the house of your mother’s father Bethuel, and take a wife from among the daughters of Laban, your mother’s brother." + }, + { + "verseNum": 3, + "text": "May God Almighty bless you and make you fruitful and multiply you, so that you may become a company of peoples." + }, + { + "verseNum": 4, + "text": "And may He give the blessing of Abraham to you and your descendants, so that you may possess the land where you dwell as a foreigner, the land God gave to Abraham.”" + }, + { + "verseNum": 5, + "text": "So Isaac sent Jacob to Paddan-aram, to Laban son of Bethuel the Aramean, the brother of Rebekah, who was the mother of Jacob and Esau." + }, + { + "verseNum": 6, + "text": "Now Esau learned that Isaac had blessed Jacob and sent him to Paddan-aram to take a wife there, commanding him, “Do not marry a Canaanite woman,”" + }, + { + "verseNum": 7, + "text": "and that Jacob had obeyed his father and mother and gone to Paddan-aram." + }, + { + "verseNum": 8, + "text": "And seeing that his father Isaac disapproved of the Canaanite women," + }, + { + "verseNum": 9, + "text": "Esau went to Ishmael and married Mahalath, the sister of Nebaioth and daughter of Abraham’s son Ishmael, in addition to the wives he already had." + }, + { + "verseNum": 10, + "text": "Meanwhile Jacob left Beersheba and set out for Haran." + }, + { + "verseNum": 11, + "text": "On reaching a certain place, he spent the night there because the sun had set. And taking one of the stones from that place, he put it under his head and lay down to sleep." + }, + { + "verseNum": 12, + "text": "And Jacob had a dream about a ladder that rested on the earth with its top reaching up to heaven, and God’s angels were going up and down the ladder." + }, + { + "verseNum": 13, + "text": "And there at the top the LORD was standing and saying, “I am the LORD, the God of your father Abraham and the God of Isaac. I will give you and your descendants the land on which you now lie." + }, + { + "verseNum": 14, + "text": "Your descendants will be like the dust of the earth, and you will spread out to the west and east and north and south. All the families of the earth will be blessed through you and your offspring." + }, + { + "verseNum": 15, + "text": "Look, I am with you, and I will watch over you wherever you go, and I will bring you back to this land. For I will not leave you until I have done what I have promised you.”" + }, + { + "verseNum": 16, + "text": "When Jacob woke up, he thought, “Surely the LORD is in this place, and I was unaware of it.”" + }, + { + "verseNum": 17, + "text": "And he was afraid and said, “How awesome is this place! This is none other than the house of God; this is the gate of heaven!”" + }, + { + "verseNum": 18, + "text": "Early the next morning, Jacob took the stone that he had placed under his head, and he set it up as a pillar. He poured oil on top of it," + }, + { + "verseNum": 19, + "text": "and he called that place Bethel, though previously the city had been named Luz." + }, + { + "verseNum": 20, + "text": "Then Jacob made a vow, saying, “If God will be with me and watch over me on this journey, and if He will provide me with food to eat and clothes to wear," + }, + { + "verseNum": 21, + "text": "so that I may return safely to my father’s house, then the LORD will be my God." + }, + { + "verseNum": 22, + "text": "And this stone I have set up as a pillar will be God’s house, and of all that You give me I will surely give You a tenth.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-29.json b/data/en_bible/BSB/GEN/chapter-29.json new file mode 100644 index 0000000..3b23f8d --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-29.json @@ -0,0 +1,145 @@ +{ + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "Jacob resumed his journey and came to the land of the people of the east." + }, + { + "verseNum": 2, + "text": "He looked and saw a well in the field, and near it lay three flocks of sheep, because the sheep were watered from this well. And a large stone covered the mouth of the well." + }, + { + "verseNum": 3, + "text": "When all the flocks had been gathered there, the shepherds would roll away the stone from the mouth of the well and water the sheep. Then they would return the stone to its place over the mouth of the well." + }, + { + "verseNum": 4, + "text": "“My brothers,” Jacob asked the shepherds, “where are you from?”\n \n“We are from Haran,” they answered." + }, + { + "verseNum": 5, + "text": "“Do you know Laban the grandson of Nahor?” Jacob asked.\n \n“We know him,” they replied." + }, + { + "verseNum": 6, + "text": "“Is he well?” Jacob inquired.\n \n“Yes,” they answered, “and here comes his daughter Rachel with his sheep.”" + }, + { + "verseNum": 7, + "text": "“Look,” said Jacob, “it is still broad daylight; it is not yet time to gather the livestock. Water the sheep and take them back to pasture.”" + }, + { + "verseNum": 8, + "text": "But they replied, “We cannot, until all the flocks have been gathered and the stone has been rolled away from the mouth of the well. Then we will water the sheep.”" + }, + { + "verseNum": 9, + "text": "While he was still speaking with them, Rachel arrived with her father’s sheep, for she was a shepherdess." + }, + { + "verseNum": 10, + "text": "As soon as Jacob saw Rachel, the daughter of his mother’s brother Laban, with Laban’s sheep, he went up and rolled the stone away from the mouth of the well and watered his uncle’s sheep." + }, + { + "verseNum": 11, + "text": "Then Jacob kissed Rachel and wept aloud." + }, + { + "verseNum": 12, + "text": "He told Rachel that he was Rebekah’s son, a relative of her father, and she ran and told her father." + }, + { + "verseNum": 13, + "text": "When Laban heard the news about his sister’s son Jacob, he ran out to meet him. He embraced him and kissed him and brought him to his home, where Jacob told him all that had happened." + }, + { + "verseNum": 14, + "text": "Then Laban declared, “You are indeed my own flesh and blood.”\n \nAfter Jacob had stayed with him a month," + }, + { + "verseNum": 15, + "text": "Laban said to him, “Just because you are my relative, should you work for nothing? Tell me what your wages should be.”" + }, + { + "verseNum": 16, + "text": "Now Laban had two daughters; the older was named Leah, and the younger was named Rachel." + }, + { + "verseNum": 17, + "text": "Leah had weak eyes, but Rachel was shapely and beautiful." + }, + { + "verseNum": 18, + "text": "Since Jacob loved Rachel, he answered, “I will serve you seven years for your younger daughter Rachel.”" + }, + { + "verseNum": 19, + "text": "Laban replied, “Better that I give her to you than to another. Stay here with me.”" + }, + { + "verseNum": 20, + "text": "So Jacob served seven years for Rachel, yet it seemed but a few days because of his love for her." + }, + { + "verseNum": 21, + "text": "Finally Jacob said to Laban, “Grant me my wife, for my time is complete, and I want to sleep with her.”" + }, + { + "verseNum": 22, + "text": "So Laban invited all the men of that place and prepared a feast." + }, + { + "verseNum": 23, + "text": "But when evening came, Laban took his daughter Leah and gave her to Jacob, and he slept with her." + }, + { + "verseNum": 24, + "text": "And Laban gave his servant girl Zilpah to his daughter Leah as her maidservant." + }, + { + "verseNum": 25, + "text": "When morning came, there was Leah! “What have you done to me?” Jacob said to Laban. “Wasn’t it for Rachel that I served you? Why have you deceived me?”" + }, + { + "verseNum": 26, + "text": "Laban replied, “It is not our custom here to give the younger daughter in marriage before the older." + }, + { + "verseNum": 27, + "text": "Finish this week’s celebration, and we will give you the younger one in return for another seven years of work.”" + }, + { + "verseNum": 28, + "text": "And Jacob did just that. He finished the week’s celebration, and Laban gave him his daughter Rachel as his wife." + }, + { + "verseNum": 29, + "text": "Laban also gave his servant girl Bilhah to his daughter Rachel as her maidservant." + }, + { + "verseNum": 30, + "text": "Jacob slept with Rachel as well, and indeed, he loved Rachel more than Leah. So he worked for Laban another seven years." + }, + { + "verseNum": 31, + "text": "When the LORD saw that Leah was unloved, He opened her womb; but Rachel was barren." + }, + { + "verseNum": 32, + "text": "And Leah conceived and gave birth to a son, and she named him Reuben, for she said, “The LORD has seen my affliction. Surely my husband will love me now.”" + }, + { + "verseNum": 33, + "text": "Again she conceived and gave birth to a son, and she said, “Because the LORD has heard that I am unloved, He has given me this son as well.” So she named him Simeon." + }, + { + "verseNum": 34, + "text": "Once again Leah conceived and gave birth to a son, and she said, “Now at last my husband will become attached to me, because I have borne him three sons.” So he was named Levi." + }, + { + "verseNum": 35, + "text": "And once more she conceived and gave birth to a son and said, “This time I will praise the LORD.” So she named him Judah. Then Leah stopped having children." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-3.json b/data/en_bible/BSB/GEN/chapter-3.json new file mode 100644 index 0000000..33c376c --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-3.json @@ -0,0 +1,101 @@ +{ + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now the serpent was more crafty than any beast of the field that the LORD God had made. And he said to the woman, “Did God really say, ‘You must not eat from any tree in the garden?’”" + }, + { + "verseNum": 2, + "text": "The woman answered the serpent, “We may eat the fruit of the trees of the garden," + }, + { + "verseNum": 3, + "text": "but about the fruit of the tree in the middle of the garden, God has said, ‘You must not eat of it or touch it, or you will die.’”" + }, + { + "verseNum": 4, + "text": "“You will not surely die,” the serpent told her." + }, + { + "verseNum": 5, + "text": "“For God knows that in the day you eat of it, your eyes will be opened and you will be like God, knowing good and evil.”" + }, + { + "verseNum": 6, + "text": "When the woman saw that the tree was good for food and pleasing to the eyes, and that it was desirable for obtaining wisdom, she took the fruit and ate it. She also gave some to her husband who was with her, and he ate it." + }, + { + "verseNum": 7, + "text": "And the eyes of both of them were opened, and they knew that they were naked; so they sewed together fig leaves and made coverings for themselves." + }, + { + "verseNum": 8, + "text": "Then the man and his wife heard the voice of the LORD God walking in the garden in the breeze of the day, and they hid themselves from the presence of the LORD God among the trees of the garden." + }, + { + "verseNum": 9, + "text": "But the LORD God called out to the man, “Where are you?”" + }, + { + "verseNum": 10, + "text": "“I heard Your voice in the garden,” he replied, “and I was afraid because I was naked; so I hid myself.”" + }, + { + "verseNum": 11, + "text": "“Who told you that you were naked?” asked the LORD God. “Have you eaten from the tree of which I commanded you not to eat?”" + }, + { + "verseNum": 12, + "text": "And the man answered, “The woman whom You gave me, she gave me fruit from the tree, and I ate it.”" + }, + { + "verseNum": 13, + "text": "Then the LORD God said to the woman, “What is this you have done?”\n \n“The serpent deceived me,” she replied, “and I ate.”" + }, + { + "verseNum": 14, + "text": "So the LORD God said to the serpent:\n \n “Because you have done this,\n cursed are you above all livestock\n and every beast of the field!\n On your belly will you go,\n and dust you will eat,\n all the days of your life." + }, + { + "verseNum": 15, + "text": "And I will put enmity between you and the woman,\n and between your seed and her seed.\n He will crush your head,\n and you will strike his heel.”" + }, + { + "verseNum": 16, + "text": "To the woman He said:\n \n “I will sharply increase your pain in childbirth;\n in pain you will bring forth children.\n Your desire will be for your husband,\n and he will rule over you.”" + }, + { + "verseNum": 17, + "text": "And to Adam He said:\n \n “Because you have listened to the voice of your wife\n and have eaten from the tree\n of which I commanded you not to eat,\n cursed is the ground because of you;\n through toil you will eat of it\n all the days of your life." + }, + { + "verseNum": 18, + "text": "Both thorns and thistles it will yield for you,\n and you will eat the plants of the field." + }, + { + "verseNum": 19, + "text": "By the sweat of your brow\n you will eat your bread,\n until you return to the ground—\n because out of it were you taken.\n For dust you are,\n and to dust you shall return.”" + }, + { + "verseNum": 20, + "text": "And Adam named his wife Eve, because she would be the mother of all the living." + }, + { + "verseNum": 21, + "text": "And the LORD God made garments of skin for Adam and his wife, and He clothed them." + }, + { + "verseNum": 22, + "text": "Then the LORD God said, “Behold, the man has become like one of Us, knowing good and evil. And now, lest he reach out his hand and take also from the tree of life, and eat, and live forever...”" + }, + { + "verseNum": 23, + "text": "Therefore the LORD God banished him from the Garden of Eden to work the ground from which he had been taken." + }, + { + "verseNum": 24, + "text": "So He drove out the man and stationed cherubim on the east side of the Garden of Eden, along with a whirling sword of flame to guard the way to the tree of life." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-30.json b/data/en_bible/BSB/GEN/chapter-30.json new file mode 100644 index 0000000..df4f5a1 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-30.json @@ -0,0 +1,177 @@ +{ + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "When Rachel saw that she was not bearing any children for Jacob, she envied her sister. “Give me children, or I will die!” she said to Jacob." + }, + { + "verseNum": 2, + "text": "Jacob became angry with Rachel and said, “Am I in the place of God, who has withheld children from you?”" + }, + { + "verseNum": 3, + "text": "Then she said, “Here is my maidservant Bilhah. Sleep with her, that she may bear children for me, so that through her I too can build a family.”" + }, + { + "verseNum": 4, + "text": "So Rachel gave Jacob her servant Bilhah as a wife, and he slept with her," + }, + { + "verseNum": 5, + "text": "and Bilhah conceived and bore him a son." + }, + { + "verseNum": 6, + "text": "Then Rachel said, “God has vindicated me; He has heard my plea and given me a son.” So she named him Dan." + }, + { + "verseNum": 7, + "text": "And Rachel’s servant Bilhah conceived again and bore Jacob a second son." + }, + { + "verseNum": 8, + "text": "Then Rachel said, “In my great struggles, I have wrestled with my sister and won.” So she named him Naphtali." + }, + { + "verseNum": 9, + "text": "When Leah saw that she had stopped having children, she gave her servant Zilpah to Jacob as a wife." + }, + { + "verseNum": 10, + "text": "And Leah’s servant Zilpah bore Jacob a son." + }, + { + "verseNum": 11, + "text": "Then Leah said, “How fortunate!” So she named him Gad." + }, + { + "verseNum": 12, + "text": "When Leah’s servant Zilpah bore Jacob a second son," + }, + { + "verseNum": 13, + "text": "Leah said, “How happy I am! For the women call me happy.” So she named him Asher." + }, + { + "verseNum": 14, + "text": "Now during the wheat harvest, Reuben went out and found some mandrakes in the field. When he brought them to his mother, Rachel begged Leah, “Please give me some of your son’s mandrakes.”" + }, + { + "verseNum": 15, + "text": "But Leah replied, “Is it not enough that you have taken away my husband? Now you want to take my son’s mandrakes as well?”\n \n“Very well,” said Rachel, “he may sleep with you tonight in exchange for your son’s mandrakes.”" + }, + { + "verseNum": 16, + "text": "When Jacob came in from the field that evening, Leah went out to meet him and said, “You must come with me, for I have hired you with my son’s mandrakes.” So he slept with her that night." + }, + { + "verseNum": 17, + "text": "And God listened to Leah, and she conceived and bore a fifth son to Jacob." + }, + { + "verseNum": 18, + "text": "Then Leah said, “God has rewarded me for giving my maidservant to my husband.” So she named him Issachar." + }, + { + "verseNum": 19, + "text": "Again Leah conceived and bore a sixth son to Jacob." + }, + { + "verseNum": 20, + "text": "“God has given me a good gift,” she said. “This time my husband will honor me, because I have borne him six sons.” And she named him Zebulun." + }, + { + "verseNum": 21, + "text": "After that, Leah gave birth to a daughter and named her Dinah." + }, + { + "verseNum": 22, + "text": "Then God remembered Rachel. He listened to her and opened her womb," + }, + { + "verseNum": 23, + "text": "and she conceived and gave birth to a son. “God has taken away my shame,” she said." + }, + { + "verseNum": 24, + "text": "She named him Joseph, and said, “May the LORD add to me another son.”" + }, + { + "verseNum": 25, + "text": "Now after Rachel had given birth to Joseph, Jacob said to Laban, “Send me on my way so I can return to my homeland." + }, + { + "verseNum": 26, + "text": "Give me my wives and children for whom I have served you, that I may go on my way. You know how hard I have worked for you.”" + }, + { + "verseNum": 27, + "text": "But Laban replied, “If I have found favor in your eyes, please stay. I have learned by divination that the LORD has blessed me because of you.”" + }, + { + "verseNum": 28, + "text": "And he added, “Name your wages, and I will pay them.”" + }, + { + "verseNum": 29, + "text": "Then Jacob answered, “You know how I have served you and how your livestock have thrived under my care." + }, + { + "verseNum": 30, + "text": "Indeed, you had very little before my arrival, but now your wealth has increased many times over. The LORD has blessed you wherever I set foot. But now, when may I also provide for my own household?”" + }, + { + "verseNum": 31, + "text": "“What can I give you?” Laban asked.\n \n“You do not need to give me anything,” Jacob replied. “If you do this one thing for me, I will keep on shepherding and keeping your flocks." + }, + { + "verseNum": 32, + "text": "Let me go through all your flocks today and remove from them every speckled or spotted sheep, every dark-colored lamb, and every spotted or speckled goat. These will be my wages." + }, + { + "verseNum": 33, + "text": "So my honesty will testify for me when you come to check on my wages in the future. If I have any goats that are not speckled or spotted, or any lambs that are not dark-colored, they will be considered stolen.”" + }, + { + "verseNum": 34, + "text": "“Agreed,” said Laban. “Let it be as you have said.”" + }, + { + "verseNum": 35, + "text": "That very day Laban removed all the streaked or spotted male goats and every speckled or spotted female goat—every one that had any white on it—and every dark-colored lamb, and he placed them under the care of his sons." + }, + { + "verseNum": 36, + "text": "Then he put a three-day journey between himself and Jacob, while Jacob was shepherding the rest of Laban’s flocks." + }, + { + "verseNum": 37, + "text": "Jacob, however, took fresh branches of poplar, almond, and plane trees, and peeled the bark, exposing the white inner wood of the branches." + }, + { + "verseNum": 38, + "text": "Then he set the peeled branches in the watering troughs in front of the flocks coming in to drink. So when the flocks were in heat and came to drink," + }, + { + "verseNum": 39, + "text": "they mated in front of the branches. And they bore young that were streaked or speckled or spotted." + }, + { + "verseNum": 40, + "text": "Jacob set apart the young, but made the rest face the streaked dark-colored sheep in Laban’s flocks. Then he set his own stock apart and did not put them with Laban’s animals." + }, + { + "verseNum": 41, + "text": "Whenever the stronger females of the flock were in heat, Jacob would place the branches in the troughs, in full view of the animals, so that they would breed in front of the branches." + }, + { + "verseNum": 42, + "text": "But if the animals were weak, he did not set out the branches. So the weaker animals went to Laban and the stronger ones to Jacob." + }, + { + "verseNum": 43, + "text": "Thus Jacob became exceedingly prosperous. He owned large flocks, maidservants and menservants, and camels and donkeys." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-31.json b/data/en_bible/BSB/GEN/chapter-31.json new file mode 100644 index 0000000..91ab623 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-31.json @@ -0,0 +1,225 @@ +{ + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Now Jacob heard that Laban’s sons were saying, “Jacob has taken away all that belonged to our father and built all this wealth at our father’s expense.”" + }, + { + "verseNum": 2, + "text": "And Jacob saw from the countenance of Laban that his attitude toward him had changed." + }, + { + "verseNum": 3, + "text": "Then the LORD said to Jacob, “Go back to the land of your fathers and to your kindred, and I will be with you.”" + }, + { + "verseNum": 4, + "text": "So Jacob sent word and called Rachel and Leah to the field where his flocks were," + }, + { + "verseNum": 5, + "text": "and he told them, “I can see from your father’s countenance that his attitude toward me has changed; but the God of my father has been with me." + }, + { + "verseNum": 6, + "text": "You know that I have served your father with all my strength." + }, + { + "verseNum": 7, + "text": "And although he has cheated me and changed my wages ten times, God has not allowed him to harm me." + }, + { + "verseNum": 8, + "text": "If he said, ‘The speckled will be your wages,’ then the whole flock bore speckled offspring. If he said, ‘The streaked will be your wages,’ then the whole flock bore streaked offspring." + }, + { + "verseNum": 9, + "text": "Thus God has taken away your father’s livestock and given them to me." + }, + { + "verseNum": 10, + "text": "When the flocks were breeding, I saw in a dream that the streaked, spotted, and speckled males were mating with the females." + }, + { + "verseNum": 11, + "text": "In that dream the angel of God said to me, ‘Jacob!’\n \nAnd I replied, ‘Here I am.’" + }, + { + "verseNum": 12, + "text": "‘Look up,’ he said, ‘and see that all the males that are mating with the flock are streaked, spotted, or speckled; for I have seen all that Laban has done to you." + }, + { + "verseNum": 13, + "text": "I am the God of Bethel, where you anointed the pillar and made a solemn vow to Me. Now get up and leave this land at once, and return to your native land.’”" + }, + { + "verseNum": 14, + "text": "And Rachel and Leah replied, “Do we have any portion or inheritance left in our father’s house?" + }, + { + "verseNum": 15, + "text": "Are we not regarded by him as outsiders? Not only has he sold us, but he has certainly squandered what was paid for us." + }, + { + "verseNum": 16, + "text": "Surely all the wealth that God has taken away from our father belongs to us and to our children. So do whatever God has told you.”" + }, + { + "verseNum": 17, + "text": "Then Jacob got up and put his children and his wives on camels," + }, + { + "verseNum": 18, + "text": "and he drove all his livestock before him, along with all the possessions he had acquired in Paddan-aram, to go to his father Isaac in the land in Canaan." + }, + { + "verseNum": 19, + "text": "Now while Laban was out shearing his sheep, Rachel stole her father’s household idols." + }, + { + "verseNum": 20, + "text": "Moreover, Jacob deceived Laban the Aramean by not telling him that he was running away." + }, + { + "verseNum": 21, + "text": "So he fled with all his possessions, crossed the Euphrates, and headed for the hill country of Gilead." + }, + { + "verseNum": 22, + "text": "On the third day Laban was informed that Jacob had fled." + }, + { + "verseNum": 23, + "text": "So he took his relatives with him, pursued Jacob for seven days, and overtook him in the hill country of Gilead." + }, + { + "verseNum": 24, + "text": "But that night God came to Laban the Aramean in a dream and warned him, “Be careful not to say anything to Jacob, either good or bad.”" + }, + { + "verseNum": 25, + "text": "Now Jacob had pitched his tent in the hill country of Gilead when Laban overtook him, and Laban and his relatives camped there as well." + }, + { + "verseNum": 26, + "text": "Then Laban said to Jacob, “What have you done? You have deceived me and carried off my daughters like captives of war!" + }, + { + "verseNum": 27, + "text": "Why did you run away secretly and deceive me, without even telling me? I would have sent you away with joy and singing, with tambourines and harps." + }, + { + "verseNum": 28, + "text": "But you did not even let me kiss my grandchildren and my daughters goodbye. Now you have done a foolish thing." + }, + { + "verseNum": 29, + "text": "I have power to do you great harm, but last night the God of your father said to me, ‘Be careful not to say anything to Jacob, either good or bad.’" + }, + { + "verseNum": 30, + "text": "Now you have gone off because you long for your father’s house. But why have you stolen my gods?”" + }, + { + "verseNum": 31, + "text": "“I was afraid,” Jacob answered, “for I thought you would take your daughters from me by force." + }, + { + "verseNum": 32, + "text": "If you find your gods with anyone here, he shall not live! In the presence of our relatives, see for yourself if anything is yours, and take it back.” For Jacob did not know that Rachel had stolen the idols." + }, + { + "verseNum": 33, + "text": "So Laban went into Jacob’s tent, then Leah’s tent, and then the tents of the two maidservants, but he found nothing. Then he left Leah’s tent and entered Rachel’s tent." + }, + { + "verseNum": 34, + "text": "Now Rachel had taken Laban’s household idols, put them in the saddlebag of her camel, and was sitting on them. And Laban searched everything in the tent but found nothing." + }, + { + "verseNum": 35, + "text": "Rachel said to her father, “Sir, do not be angry that I cannot stand up before you; for I am having my period.” So Laban searched, but could not find the household idols." + }, + { + "verseNum": 36, + "text": "Then Jacob became incensed and challenged Laban. “What is my crime?” he said. “For what sin of mine have you so hotly pursued me?" + }, + { + "verseNum": 37, + "text": "You have searched all my goods! Have you found anything that belongs to you? Put it here before my brothers and yours, that they may judge between the two of us." + }, + { + "verseNum": 38, + "text": "I have been with you for twenty years now. Your sheep and goats have not miscarried, nor have I eaten the rams of your flock." + }, + { + "verseNum": 39, + "text": "I did not bring you anything torn by wild beasts; I bore the loss myself. And you demanded payment from me for what was stolen by day or night." + }, + { + "verseNum": 40, + "text": "As it was, the heat consumed me by day and the frost by night, and sleep fled from my eyes." + }, + { + "verseNum": 41, + "text": "Thus for twenty years I have served in your household—fourteen years for your two daughters and six years for your flocks—and you have changed my wages ten times!" + }, + { + "verseNum": 42, + "text": "If the God of my father, the God of Abraham and the Fear of Isaac, had not been with me, surely by now you would have sent me away empty-handed. But God has seen my affliction and the toil of my hands, and last night He rendered judgment.”" + }, + { + "verseNum": 43, + "text": "But Laban answered Jacob, “These daughters are my daughters, these sons are my sons, and these flocks are my flocks! Everything you see is mine! Yet what can I do today about these daughters of mine or the children they have borne?" + }, + { + "verseNum": 44, + "text": "Come now, let us make a covenant, you and I, and let it serve as a witness between you and me.”" + }, + { + "verseNum": 45, + "text": "So Jacob picked out a stone and set it up as a pillar," + }, + { + "verseNum": 46, + "text": "and he said to his relatives, “Gather some stones.” So they took stones and made a mound, and there by the mound they ate." + }, + { + "verseNum": 47, + "text": "Laban called it Jegar-sahadutha, and Jacob called it Galeed." + }, + { + "verseNum": 48, + "text": "Then Laban declared, “This mound is a witness between you and me this day.”\n \nTherefore the place was called Galeed." + }, + { + "verseNum": 49, + "text": "It was also called Mizpah, because Laban said, “May the LORD keep watch between you and me when we are absent from each other." + }, + { + "verseNum": 50, + "text": "If you mistreat my daughters or take other wives, although no one is with us, remember that God is a witness between you and me.”" + }, + { + "verseNum": 51, + "text": "Laban also said to Jacob, “Here is the mound, and here is the pillar I have set up between you and me." + }, + { + "verseNum": 52, + "text": "This mound is a witness, and this pillar is a witness, that I will not go past this mound to harm you, and you will not go past this mound and pillar to harm me." + }, + { + "verseNum": 53, + "text": "May the God of Abraham and the God of Nahor, the God of their father, judge between us.”\n \nSo Jacob swore by the Fear of his father Isaac." + }, + { + "verseNum": 54, + "text": "Then Jacob offered a sacrifice on the mountain and invited his relatives to eat a meal. And after they had eaten, they spent the night on the mountain." + }, + { + "verseNum": 55, + "text": "Early the next morning, Laban got up and kissed his grandchildren and daughters and blessed them. Then he left to return home." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-32.json b/data/en_bible/BSB/GEN/chapter-32.json new file mode 100644 index 0000000..ac2860a --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-32.json @@ -0,0 +1,133 @@ +{ + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "Jacob also went on his way, and the angels of God met him." + }, + { + "verseNum": 2, + "text": "When Jacob saw them, he said, “This is the camp of God.” So he named that place Mahanaim." + }, + { + "verseNum": 3, + "text": "Jacob sent messengers ahead of him to his brother Esau in the land of Seir, the country of Edom." + }, + { + "verseNum": 4, + "text": "He instructed them, “You are to say to my master Esau, ‘Your servant Jacob says: I have been staying with Laban and have remained there until now." + }, + { + "verseNum": 5, + "text": "I have oxen, donkeys, flocks, menservants, and maidservants. I have sent this message to inform my master, so that I may find favor in your sight.’”" + }, + { + "verseNum": 6, + "text": "When the messengers returned to Jacob, they said, “We went to your brother Esau, and now he is coming to meet you—he and four hundred men with him.”" + }, + { + "verseNum": 7, + "text": "In great fear and distress, Jacob divided his people into two camps, as well as the flocks and herds and camels." + }, + { + "verseNum": 8, + "text": "He thought, “If Esau comes and attacks one camp, then the other camp can escape.”" + }, + { + "verseNum": 9, + "text": "Then Jacob declared, “O God of my father Abraham, God of my father Isaac, the LORD who told me, ‘Go back to your country and to your kindred, and I will make you prosper,’" + }, + { + "verseNum": 10, + "text": "I am unworthy of all the kindness and faithfulness You have shown Your servant. Indeed, with only my staff I came across the Jordan, but now I have become two camps." + }, + { + "verseNum": 11, + "text": "Please deliver me from the hand of my brother Esau, for I am afraid that he may come and attack me and the mothers and children with me." + }, + { + "verseNum": 12, + "text": "But You have said, ‘I will surely make you prosper, and I will make your offspring like the sand of the sea, too numerous to count.’”" + }, + { + "verseNum": 13, + "text": "Jacob spent the night there, and from what he had brought with him, he selected a gift for his brother Esau:" + }, + { + "verseNum": 14, + "text": "200 female goats, 20 male goats, 200 ewes, 20 rams," + }, + { + "verseNum": 15, + "text": "30 milk camels with their young, 40 cows, 10 bulls, 20 female donkeys, and 10 male donkeys." + }, + { + "verseNum": 16, + "text": "He entrusted them to his servants in separate herds and told them, “Go on ahead of me, and keep some distance between the herds.”" + }, + { + "verseNum": 17, + "text": "He instructed the one in the lead, “When my brother Esau meets you and asks, ‘To whom do you belong, where are you going, and whose animals are these before you?’" + }, + { + "verseNum": 18, + "text": "then you are to say, ‘They belong to your servant Jacob. They are a gift, sent to my lord Esau. And behold, Jacob is behind us.’”" + }, + { + "verseNum": 19, + "text": "He also instructed the second, the third, and all those following behind the herds: “When you meet Esau, you are to say the same thing to him." + }, + { + "verseNum": 20, + "text": "You are also to say, ‘Look, your servant Jacob is right behind us.’” For he thought, “I will appease Esau with the gift that is going before me. After that I can face him, and perhaps he will accept me.”" + }, + { + "verseNum": 21, + "text": "So Jacob’s gifts went on before him, while he spent the night in the camp." + }, + { + "verseNum": 22, + "text": "During the night Jacob got up and took his two wives, his two maidservants, and his eleven sons, and crossed the ford of the Jabbok." + }, + { + "verseNum": 23, + "text": "He took them and sent them across the stream, along with all his possessions." + }, + { + "verseNum": 24, + "text": "So Jacob was left all alone, and there a man wrestled with him until daybreak." + }, + { + "verseNum": 25, + "text": "When the man saw that he could not overpower Jacob, he struck the socket of Jacob’s hip and dislocated it as they wrestled." + }, + { + "verseNum": 26, + "text": "Then the man said, “Let me go, for it is daybreak.”\n \nBut Jacob replied, “I will not let you go unless you bless me.”" + }, + { + "verseNum": 27, + "text": "“What is your name?” the man asked.\n \n“Jacob,” he replied." + }, + { + "verseNum": 28, + "text": "Then the man said, “Your name will no longer be Jacob, but Israel, because you have struggled with God and with men, and you have prevailed.”" + }, + { + "verseNum": 29, + "text": "And Jacob requested, “Please tell me your name.”\n \nBut he replied, “Why do you ask my name?” Then he blessed Jacob there." + }, + { + "verseNum": 30, + "text": "So Jacob named the place Peniel, saying, “Indeed, I have seen God face to face, and yet my life was spared.”" + }, + { + "verseNum": 31, + "text": "The sun rose above him as he passed by Penuel, and he was limping because of his hip." + }, + { + "verseNum": 32, + "text": "Therefore to this day the Israelites do not eat the tendon which is at the socket of the hip, because the socket of Jacob’s hip was struck near that tendon." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-33.json b/data/en_bible/BSB/GEN/chapter-33.json new file mode 100644 index 0000000..dbd037d --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-33.json @@ -0,0 +1,85 @@ +{ + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Now Jacob looked up and saw Esau coming toward him with four hundred men. So he divided the children among Leah, Rachel, and the two maidservants." + }, + { + "verseNum": 2, + "text": "He put the maidservants and their children in front, Leah and her children next, and Rachel and Joseph at the rear." + }, + { + "verseNum": 3, + "text": "But Jacob himself went on ahead and bowed to the ground seven times as he approached his brother." + }, + { + "verseNum": 4, + "text": "Esau, however, ran to him and embraced him, threw his arms around his neck, and kissed him. And they both wept." + }, + { + "verseNum": 5, + "text": "When Esau looked up and saw the women and children, he asked, “Who are these with you?”\n \nJacob answered, “These are the children God has graciously given your servant.”" + }, + { + "verseNum": 6, + "text": "Then the maidservants and their children approached and bowed down." + }, + { + "verseNum": 7, + "text": "Leah and her children also approached and bowed down, and then Joseph and Rachel approached and bowed down." + }, + { + "verseNum": 8, + "text": "“What do you mean by sending this whole company to meet me?” asked Esau.\n \n“To find favor in your sight, my lord,” Jacob answered." + }, + { + "verseNum": 9, + "text": "“I already have plenty, my brother,” Esau replied. “Keep what belongs to you.”" + }, + { + "verseNum": 10, + "text": "But Jacob insisted, “No, please! If I have found favor in your sight, then receive this gift from my hand. For indeed, I have seen your face, and it is like seeing the face of God, since you have received me favorably." + }, + { + "verseNum": 11, + "text": "Please accept my gift that was brought to you, because God has been gracious to me and I have all I need.” So Jacob pressed him until he accepted." + }, + { + "verseNum": 12, + "text": "Then Esau said, “Let us be on our way, and I will go ahead of you.”" + }, + { + "verseNum": 13, + "text": "But Jacob replied, “My lord knows that the children are frail, and I must care for sheep and cattle that are nursing their young. If they are driven hard for even a day, all the animals will die." + }, + { + "verseNum": 14, + "text": "Please let my lord go ahead of his servant. I will continue on slowly, at a comfortable pace for the livestock and children, until I come to my lord at Seir.”" + }, + { + "verseNum": 15, + "text": "“Let me leave some of my people with you,” Esau said.\n \nBut Jacob replied, “Why do that? Let me find favor in the sight of my lord.”" + }, + { + "verseNum": 16, + "text": "So that day Esau started on his way back to Seir," + }, + { + "verseNum": 17, + "text": "but Jacob went on to Succoth, where he built a house for himself and shelters for his livestock; that is why the place was called Succoth." + }, + { + "verseNum": 18, + "text": "After Jacob had come from Paddan-aram, he arrived safely at the city of Shechem in the land of Canaan, and he camped just outside the city." + }, + { + "verseNum": 19, + "text": "And the plot of ground where he pitched his tent, he purchased from the sons of Hamor, Shechem’s father, for a hundred pieces of silver." + }, + { + "verseNum": 20, + "text": "There he set up an altar and called it El-Elohe-Israel." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-34.json b/data/en_bible/BSB/GEN/chapter-34.json new file mode 100644 index 0000000..5cc208f --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-34.json @@ -0,0 +1,129 @@ +{ + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Now Dinah, the daughter Leah had borne to Jacob, went out to visit the daughters of the land." + }, + { + "verseNum": 2, + "text": "When Shechem son of Hamor the Hivite, the prince of the region, saw her, he took her and lay with her by force." + }, + { + "verseNum": 3, + "text": "And his soul was drawn to Dinah, the daughter of Jacob. He loved the young girl and spoke to her tenderly." + }, + { + "verseNum": 4, + "text": "So Shechem told his father Hamor, “Get me this girl as a wife.”" + }, + { + "verseNum": 5, + "text": "Jacob heard that Shechem had defiled his daughter Dinah, but since his sons were with his livestock in the field, he remained silent about it until they returned." + }, + { + "verseNum": 6, + "text": "Meanwhile, Shechem’s father Hamor came to speak with Jacob." + }, + { + "verseNum": 7, + "text": "When Jacob’s sons heard what had happened, they returned from the field. They were filled with grief and fury, because Shechem had committed an outrage in Israel by lying with Jacob’s daughter—a thing that should not be done." + }, + { + "verseNum": 8, + "text": "But Hamor said to them, “My son Shechem longs for your daughter. Please give her to him as his wife." + }, + { + "verseNum": 9, + "text": "Intermarry with us; give us your daughters, and take our daughters for yourselves." + }, + { + "verseNum": 10, + "text": "You may settle among us, and the land will be open to you. Live here, move about freely, and acquire your own property.”" + }, + { + "verseNum": 11, + "text": "Then Shechem said to Dinah’s father and brothers, “Grant me this favor, and I will give you whatever you ask." + }, + { + "verseNum": 12, + "text": "Demand a high dowry and an expensive gift, and I will give you whatever you ask. Only give me the girl as my wife!”" + }, + { + "verseNum": 13, + "text": "But because Shechem had defiled their sister Dinah, Jacob’s sons answered him and his father Hamor deceitfully." + }, + { + "verseNum": 14, + "text": "“We cannot do such a thing,” they said. “To give our sister to an uncircumcised man would be a disgrace to us." + }, + { + "verseNum": 15, + "text": "We will consent to this on one condition, that you become circumcised like us—every one of your males." + }, + { + "verseNum": 16, + "text": "Then we will give you our daughters and take your daughters for ourselves. We will dwell among you and become one people." + }, + { + "verseNum": 17, + "text": "But if you will not agree to be circumcised, then we will take our sister and go.”" + }, + { + "verseNum": 18, + "text": "Their offer seemed good to Hamor and his son Shechem." + }, + { + "verseNum": 19, + "text": "The young man, who was the most respected of all his father’s household, did not hesitate to fulfill this request, because he was delighted with Jacob’s daughter." + }, + { + "verseNum": 20, + "text": "So Hamor and his son Shechem went to the gate of their city and addressed the men of their city:" + }, + { + "verseNum": 21, + "text": "“These men are at peace with us. Let them live and trade in our land; indeed, it is large enough for them. Let us take their daughters in marriage and give our daughters to them." + }, + { + "verseNum": 22, + "text": "But only on this condition will the men agree to dwell with us and be one people: if all our men are circumcised as they are." + }, + { + "verseNum": 23, + "text": "Will not their livestock, their possessions, and all their animals become ours? Only let us consent to them, and they will dwell among us.”" + }, + { + "verseNum": 24, + "text": "All the men who went out of the city gate listened to Hamor and his son Shechem, and every male of the city was circumcised." + }, + { + "verseNum": 25, + "text": "Three days later, while they were still in pain, two of Jacob’s sons (Dinah’s brothers Simeon and Levi) took their swords, went into the unsuspecting city, and slaughtered every male." + }, + { + "verseNum": 26, + "text": "They killed Hamor and his son Shechem with their swords, took Dinah out of Shechem’s house, and went away." + }, + { + "verseNum": 27, + "text": "Jacob’s other sons came upon the slaughter and looted the city, because their sister had been defiled." + }, + { + "verseNum": 28, + "text": "They took their flocks and herds and donkeys, and everything else in the city or in the field." + }, + { + "verseNum": 29, + "text": "They carried off all their possessions and women and children, and they plundered everything in their houses." + }, + { + "verseNum": 30, + "text": "Then Jacob said to Simeon and Levi, “You have brought trouble upon me by making me a stench to the Canaanites and Perizzites, the people of this land. We are few in number; if they unite against me and attack me, I and my household will be destroyed.”" + }, + { + "verseNum": 31, + "text": "But they replied, “Should he have treated our sister like a prostitute?”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-35.json b/data/en_bible/BSB/GEN/chapter-35.json new file mode 100644 index 0000000..112cb5b --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-35.json @@ -0,0 +1,121 @@ +{ + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "Then God said to Jacob, “Arise, go up to Bethel, and settle there. Build an altar there to the God who appeared to you when you fled from your brother Esau.”" + }, + { + "verseNum": 2, + "text": "So Jacob told his household and all who were with him, “Get rid of the foreign gods that are among you. Purify yourselves and change your garments." + }, + { + "verseNum": 3, + "text": "Then let us arise and go to Bethel. I will build an altar there to God, who answered me in my day of distress. He has been with me wherever I have gone.”" + }, + { + "verseNum": 4, + "text": "So they gave Jacob all their foreign gods and all their earrings, and Jacob buried them under the oak near Shechem." + }, + { + "verseNum": 5, + "text": "As they set out, a terror from God fell over the surrounding cities, so that they did not pursue Jacob’s sons." + }, + { + "verseNum": 6, + "text": "So Jacob and everyone with him arrived in Luz (that is, Bethel) in the land of Canaan." + }, + { + "verseNum": 7, + "text": "There Jacob built an altar, and he called that place El-bethel, because it was there that God had revealed Himself to Jacob as he fled from his brother." + }, + { + "verseNum": 8, + "text": "Now Deborah, Rebekah’s nurse, died and was buried under the oak below Bethel. So Jacob named it Allon-bachuth." + }, + { + "verseNum": 9, + "text": "After Jacob had returned from Paddan-aram, God appeared to him again and blessed him." + }, + { + "verseNum": 10, + "text": "And God said to him, “Though your name is Jacob, you will no longer be called Jacob. Instead, your name will be Israel.” So God named him Israel." + }, + { + "verseNum": 11, + "text": "And God told him, “I am God Almighty. Be fruitful and multiply. A nation—even a company of nations—shall come from you, and kings shall descend from you." + }, + { + "verseNum": 12, + "text": "The land that I gave to Abraham and Isaac I will give to you, and I will give this land to your descendants after you.”" + }, + { + "verseNum": 13, + "text": "Then God went up from the place where He had spoken with him." + }, + { + "verseNum": 14, + "text": "So Jacob set up a pillar in the place where God had spoken with him—a stone marker—and he poured out a drink offering on it and anointed it with oil." + }, + { + "verseNum": 15, + "text": "Jacob called the place where God had spoken with him Bethel." + }, + { + "verseNum": 16, + "text": "Later, they set out from Bethel, and while they were still some distance from Ephrath, Rachel began to give birth, and her labor was difficult." + }, + { + "verseNum": 17, + "text": "During her severe labor, the midwife said to her, “Do not be afraid, for you are having another son.”" + }, + { + "verseNum": 18, + "text": "And with her last breath—for she was dying—she named him Ben-oni. But his father called him Benjamin." + }, + { + "verseNum": 19, + "text": "So Rachel died and was buried on the way to Ephrath (that is, Bethlehem)." + }, + { + "verseNum": 20, + "text": "Jacob set up a pillar on her grave; it marks Rachel’s tomb to this day." + }, + { + "verseNum": 21, + "text": "Israel again set out and pitched his tent beyond the Tower of Eder." + }, + { + "verseNum": 22, + "text": "While Israel was living in that region, Reuben went in and slept with his father’s concubine Bilhah, and Israel heard about it.\n \nJacob had twelve sons:" + }, + { + "verseNum": 23, + "text": "The sons of Leah were Reuben the firstborn of Jacob, Simeon, Levi, Judah, Issachar, and Zebulun." + }, + { + "verseNum": 24, + "text": "The sons of Rachel were Joseph and Benjamin." + }, + { + "verseNum": 25, + "text": "The sons of Rachel’s maidservant Bilhah were Dan and Naphtali." + }, + { + "verseNum": 26, + "text": "And the sons of Leah’s maidservant Zilpah were Gad and Asher.\n \nThese are the sons of Jacob, who were born to him in Paddan-aram." + }, + { + "verseNum": 27, + "text": "Jacob returned to his father Isaac at Mamre, near Kiriath-arba (that is, Hebron), where Abraham and Isaac had stayed." + }, + { + "verseNum": 28, + "text": "And Isaac lived 180 years." + }, + { + "verseNum": 29, + "text": "Then he breathed his last and died and was gathered to his people, old and full of years. And his sons Esau and Jacob buried him." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-36.json b/data/en_bible/BSB/GEN/chapter-36.json new file mode 100644 index 0000000..07af253 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-36.json @@ -0,0 +1,177 @@ +{ + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "This is the account of Esau (that is, Edom)." + }, + { + "verseNum": 2, + "text": "Esau took his wives from the daughters of Canaan: Adah daughter of Elon the Hittite, Oholibamah daughter of Anah and granddaughter of Zibeon the Hivite," + }, + { + "verseNum": 3, + "text": "and Basemath daughter of Ishmael and sister of Nebaioth." + }, + { + "verseNum": 4, + "text": "And Adah bore Eliphaz to Esau, Basemath gave birth to Reuel," + }, + { + "verseNum": 5, + "text": "and Oholibamah gave birth to Jeush, Jalam, and Korah. These were the sons of Esau, who were born to him in the land of Canaan." + }, + { + "verseNum": 6, + "text": "Later, Esau took his wives and sons and daughters and all the people of his household, along with his livestock, all his other animals, and all the property he had acquired in Canaan, and he moved to a land far away from his brother Jacob." + }, + { + "verseNum": 7, + "text": "For their possessions were too great for them to dwell together; the land where they stayed could not support them because of their livestock." + }, + { + "verseNum": 8, + "text": "So Esau (that is, Edom) settled in the area of Mount Seir." + }, + { + "verseNum": 9, + "text": "This is the account of Esau, the father of the Edomites, in the area of Mount Seir." + }, + { + "verseNum": 10, + "text": "These are the names of Esau’s sons: Eliphaz son of Esau’s wife Adah, and Reuel son of Esau’s wife Basemath." + }, + { + "verseNum": 11, + "text": "The sons of Eliphaz were Teman, Omar, Zepho, Gatam, and Kenaz." + }, + { + "verseNum": 12, + "text": "Additionally, Timna, a concubine of Esau’s son Eliphaz, gave birth to Amalek. These are the grandsons of Esau’s wife Adah." + }, + { + "verseNum": 13, + "text": "These are the sons of Reuel: Nahath, Zerah, Shammah, and Mizzah. They are the grandsons of Esau’s wife Basemath." + }, + { + "verseNum": 14, + "text": "These are the sons of Esau’s wife Oholibamah (daughter of Anah and granddaughter of Zibeon) whom she bore to Esau: Jeush, Jalam, and Korah." + }, + { + "verseNum": 15, + "text": "These are the chiefs among the sons of Esau. The sons of Eliphaz the firstborn of Esau: Chiefs Teman, Omar, Zepho, Kenaz," + }, + { + "verseNum": 16, + "text": "Korah, Gatam, and Amalek. They are the chiefs of Eliphaz in the land of Edom, and they are the grandsons of Adah." + }, + { + "verseNum": 17, + "text": "These are the sons of Esau’s son Reuel: Chiefs Nahath, Zerah, Shammah, and Mizzah. They are the chiefs descended from Reuel in the land of Edom, and they are the grandsons of Esau’s wife Basemath." + }, + { + "verseNum": 18, + "text": "These are the sons of Esau’s wife Oholibamah: Chiefs Jeush, Jalam, and Korah. They are the chiefs descended from Esau’s wife Oholibamah, the daughter of Anah." + }, + { + "verseNum": 19, + "text": "All these are the sons of Esau (that is, Edom), and they were their chiefs." + }, + { + "verseNum": 20, + "text": "These are the sons of Seir the Horite, who were living in the land: Lotan, Shobal, Zibeon, Anah," + }, + { + "verseNum": 21, + "text": "Dishon, Ezer, and Dishan. They are the chiefs of the Horites, the descendants of Seir in the land of Edom." + }, + { + "verseNum": 22, + "text": "The sons of Lotan were Hori and Hemam. Timna was Lotan’s sister." + }, + { + "verseNum": 23, + "text": "These are the sons of Shobal: Alvan, Manahath, Ebal, Shepho, and Onam." + }, + { + "verseNum": 24, + "text": "These are the sons of Zibeon: Aiah and Anah. (This is the Anah who found the hot springs in the wilderness as he was pasturing the donkeys of his father Zibeon.)" + }, + { + "verseNum": 25, + "text": "These are the children of Anah: Dishon and Oholibamah daughter of Anah." + }, + { + "verseNum": 26, + "text": "These are the sons of Dishon: Hemdan, Eshban, Ithran, and Cheran." + }, + { + "verseNum": 27, + "text": "These are the sons of Ezer: Bilhan, Zaavan, and Akan." + }, + { + "verseNum": 28, + "text": "These are the sons of Dishan: Uz and Aran." + }, + { + "verseNum": 29, + "text": "These are the chiefs of the Horites: Chiefs Lotan, Shobal, Zibeon, Anah," + }, + { + "verseNum": 30, + "text": "Dishon, Ezer, and Dishan. They are the chiefs of the Horites, according to their divisions in the land of Seir." + }, + { + "verseNum": 31, + "text": "These are the kings who reigned in the land of Edom before any king reigned over the Israelites:" + }, + { + "verseNum": 32, + "text": "Bela son of Beor reigned in Edom; the name of his city was Dinhabah." + }, + { + "verseNum": 33, + "text": "When Bela died, Jobab son of Zerah from Bozrah reigned in his place." + }, + { + "verseNum": 34, + "text": "When Jobab died, Husham from the land of the Temanites reigned in his place." + }, + { + "verseNum": 35, + "text": "When Husham died, Hadad son of Bedad, who defeated Midian in the country of Moab, reigned in his place. And the name of his city was Avith." + }, + { + "verseNum": 36, + "text": "When Hadad died, Samlah from Masrekah reigned in his place." + }, + { + "verseNum": 37, + "text": "When Samlah died, Shaul from Rehoboth on the Euphrates reigned in his place." + }, + { + "verseNum": 38, + "text": "When Shaul died, Baal-hanan son of Achbor reigned in his place." + }, + { + "verseNum": 39, + "text": "When Baal-hanan son of Achbor died, Hadad reigned in his place. His city was named Pau, and his wife’s name was Mehetabel daughter of Matred, the daughter of Me-zahab." + }, + { + "verseNum": 40, + "text": "These are the names of Esau’s chiefs, according to their families and regions, by their names: Chiefs Timna, Alvah, Jetheth," + }, + { + "verseNum": 41, + "text": "Oholibamah, Elah, Pinon," + }, + { + "verseNum": 42, + "text": "Kenaz, Teman, Mibzar," + }, + { + "verseNum": 43, + "text": "Magdiel, and Iram. These were the chiefs of Edom, according to their settlements in the land they possessed. Esau was the father of the Edomites." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-37.json b/data/en_bible/BSB/GEN/chapter-37.json new file mode 100644 index 0000000..daf5c44 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-37.json @@ -0,0 +1,149 @@ +{ + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "Now Jacob lived in the land where his father had resided, the land of Canaan." + }, + { + "verseNum": 2, + "text": "This is the account of Jacob. When Joseph was seventeen years old, he was tending the flock with his brothers, the sons of his father’s wives Bilhah and Zilpah, and he brought their father a bad report about them." + }, + { + "verseNum": 3, + "text": "Now Israel loved Joseph more than his other sons, because Joseph had been born to him in his old age; so he made him a robe of many colors." + }, + { + "verseNum": 4, + "text": "When Joseph’s brothers saw that their father loved him more than any of them, they hated him and could not speak a kind word to him." + }, + { + "verseNum": 5, + "text": "Then Joseph had a dream, and when he told it to his brothers, they hated him even more." + }, + { + "verseNum": 6, + "text": "He said to them, “Listen to this dream I had:" + }, + { + "verseNum": 7, + "text": "We were binding sheaves of grain in the field, and suddenly my sheaf rose and stood upright, while your sheaves gathered around and bowed down to mine.”" + }, + { + "verseNum": 8, + "text": "“Do you intend to reign over us?” his brothers asked. “Will you actually rule us?” So they hated him even more because of his dream and his statements." + }, + { + "verseNum": 9, + "text": "Then Joseph had another dream and told it to his brothers. “Look,” he said, “I had another dream, and this time the sun and moon and eleven stars were bowing down to me.”" + }, + { + "verseNum": 10, + "text": "He told his father and brothers, but his father rebuked him and said, “What is this dream that you have had? Will your mother and brothers and I actually come and bow down to the ground before you?”" + }, + { + "verseNum": 11, + "text": "And his brothers were jealous of him, but his father kept in mind what he had said." + }, + { + "verseNum": 12, + "text": "Some time later, Joseph’s brothers had gone to pasture their father’s flocks near Shechem." + }, + { + "verseNum": 13, + "text": "Israel said to him, “Are not your brothers pasturing the flocks at Shechem? Get ready; I am sending you to them.”\n \n“I am ready,” Joseph replied." + }, + { + "verseNum": 14, + "text": "Then Israel told him, “Go now and see how your brothers and the flocks are faring, and bring word back to me.”\n \nSo he sent him off from the Valley of Hebron. And when Joseph arrived in Shechem," + }, + { + "verseNum": 15, + "text": "a man found him wandering in the field and asked, “What are you looking for?”" + }, + { + "verseNum": 16, + "text": "“I am looking for my brothers,” Joseph replied. “Can you please tell me where they are pasturing their flocks?”" + }, + { + "verseNum": 17, + "text": "“They have moved on from here,” the man answered. “I heard them say, ‘Let us go to Dothan.’” So Joseph set out after his brothers and found them at Dothan." + }, + { + "verseNum": 18, + "text": "Now Joseph’s brothers saw him in the distance, and before he arrived, they plotted to kill him." + }, + { + "verseNum": 19, + "text": "“Here comes that dreamer!” they said to one another." + }, + { + "verseNum": 20, + "text": "“Come now, let us kill him and throw him into one of the pits. We can say that a vicious animal has devoured him. Then we shall see what becomes of his dreams!”" + }, + { + "verseNum": 21, + "text": "When Reuben heard this, he tried to rescue Joseph from their hands. “Let us not take his life,” he said." + }, + { + "verseNum": 22, + "text": "“Do not shed his blood. Throw him into this pit in the wilderness, but do not lay a hand on him.” Reuben said this so that he could rescue Joseph from their hands and return him to his father." + }, + { + "verseNum": 23, + "text": "So when Joseph came to his brothers, they stripped him of his robe—the robe of many colors he was wearing—" + }, + { + "verseNum": 24, + "text": "and they took him and threw him into the pit. Now the pit was empty, with no water in it." + }, + { + "verseNum": 25, + "text": "And as they sat down to eat a meal, they looked up and saw a caravan of Ishmaelites coming from Gilead. Their camels were carrying spices, balm, and myrrh on their way down to Egypt." + }, + { + "verseNum": 26, + "text": "Then Judah said to his brothers, “What profit will we gain if we kill our brother and cover up his blood?" + }, + { + "verseNum": 27, + "text": "Come, let us sell him to the Ishmaelites and not lay a hand on him; for he is our brother, our own flesh.” And they agreed." + }, + { + "verseNum": 28, + "text": "So when the Midianite traders passed by, his brothers pulled Joseph out of the pit and sold him for twenty shekels of silver to the Ishmaelites, who took him to Egypt." + }, + { + "verseNum": 29, + "text": "When Reuben returned to the pit and saw that Joseph was not there, he tore his clothes," + }, + { + "verseNum": 30, + "text": "returned to his brothers, and said, “The boy is gone! What am I going to do?”" + }, + { + "verseNum": 31, + "text": "Then they took Joseph’s robe, slaughtered a young goat, and dipped the robe in its blood." + }, + { + "verseNum": 32, + "text": "They sent the robe of many colors to their father and said, “We found this. Examine it to see whether it is your son’s robe or not.”" + }, + { + "verseNum": 33, + "text": "His father recognized it and said, “It is my son’s robe! A vicious animal has devoured him. Joseph has surely been torn to pieces!”" + }, + { + "verseNum": 34, + "text": "Then Jacob tore his clothes, put sackcloth around his waist, and mourned for his son many days." + }, + { + "verseNum": 35, + "text": "All his sons and daughters tried to comfort him, but he refused to be comforted. “No,” he said. “I will go down to Sheol mourning for my son.” So his father wept for him." + }, + { + "verseNum": 36, + "text": "Meanwhile, the Midianites sold Joseph in Egypt to Potiphar, an officer of Pharaoh and captain of the guard." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-38.json b/data/en_bible/BSB/GEN/chapter-38.json new file mode 100644 index 0000000..208dae1 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-38.json @@ -0,0 +1,125 @@ +{ + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "About that time, Judah left his brothers and settled near a man named Hirah, an Adullamite." + }, + { + "verseNum": 2, + "text": "There Judah saw the daughter of a Canaanite man named Shua, and he took her as a wife and slept with her." + }, + { + "verseNum": 3, + "text": "So she conceived and gave birth to a son, and Judah named him Er." + }, + { + "verseNum": 4, + "text": "Again she conceived and gave birth to a son, and she named him Onan." + }, + { + "verseNum": 5, + "text": "Then she gave birth to another son and named him Shelah; it was at Chezib that she gave birth to him." + }, + { + "verseNum": 6, + "text": "Now Judah acquired a wife for Er, his firstborn, and her name was Tamar." + }, + { + "verseNum": 7, + "text": "But Er, Judah’s firstborn, was wicked in the sight of the LORD; so the LORD put him to death." + }, + { + "verseNum": 8, + "text": "Then Judah said to Onan, “Sleep with your brother’s wife. Perform your duty as her brother-in-law and raise up offspring for your brother.”" + }, + { + "verseNum": 9, + "text": "But Onan knew that the offspring would not belong to him; so whenever he would sleep with his brother’s wife, he would spill his seed on the ground so that he would not produce offspring for his brother." + }, + { + "verseNum": 10, + "text": "What he did was wicked in the sight of the LORD, so He put Onan to death as well." + }, + { + "verseNum": 11, + "text": "Then Judah said to his daughter-in-law Tamar, “Live as a widow in your father’s house until my son Shelah grows up.” For he thought, “He may die too, like his brothers.” So Tamar went to live in her father’s house." + }, + { + "verseNum": 12, + "text": "After a long time Judah’s wife, the daughter of Shua, died. When Judah had finished mourning, he and his friend Hirah the Adullamite went up to his sheepshearers at Timnah." + }, + { + "verseNum": 13, + "text": "When Tamar was told, “Your father-in-law is going up to Timnah to shear his sheep,”" + }, + { + "verseNum": 14, + "text": "she removed her widow’s garments, covered her face with a veil to disguise herself, and sat at the entrance to Enaim, which is on the way to Timnah. For she saw that although Shelah had grown up, she had not been given to him as a wife." + }, + { + "verseNum": 15, + "text": "When Judah saw her, he thought she was a prostitute because she had covered her face." + }, + { + "verseNum": 16, + "text": "Not realizing that she was his daughter-in-law, he went over to her and said, “Come now, let me sleep with you.”\n \n“What will you give me for sleeping with you?” she inquired." + }, + { + "verseNum": 17, + "text": "“I will send you a young goat from my flock,” Judah answered.\n \nBut she replied, “Only if you leave me something as a pledge until you send it.”" + }, + { + "verseNum": 18, + "text": "“What pledge should I give you?” he asked.\n \nShe answered, “Your seal and your cord, and the staff in your hand.” So he gave them to her and slept with her, and she became pregnant by him." + }, + { + "verseNum": 19, + "text": "Then Tamar got up and departed. And she removed her veil and put on her widow’s garments again." + }, + { + "verseNum": 20, + "text": "Now when Judah sent his friend Hirah the Adullamite with the young goat to collect the items he had left with the woman, he could not find her." + }, + { + "verseNum": 21, + "text": "He asked the men of that place, “Where is the shrine prostitute who was beside the road at Enaim?”\n \n“No shrine prostitute has been here,” they answered." + }, + { + "verseNum": 22, + "text": "So Hirah returned to Judah and said, “I could not find her, and furthermore, the men of that place said, ‘No shrine prostitute has been here.’”" + }, + { + "verseNum": 23, + "text": "“Let her keep the items,” Judah replied. “Otherwise we will become a laughingstock. After all, I did send her this young goat, but you could not find her.”" + }, + { + "verseNum": 24, + "text": "About three months later, Judah was told, “Your daughter-in-law Tamar has prostituted herself, and now she is pregnant.”\n \n“Bring her out!” Judah replied. “Let her be burned to death!”" + }, + { + "verseNum": 25, + "text": "As she was being brought out, Tamar sent a message to her father-in-law: “I am pregnant by the man to whom these items belong.” And she added, “Please examine them. Whose seal and cord and staff are these?”" + }, + { + "verseNum": 26, + "text": "Judah recognized the items and said, “She is more righteous than I, since I did not give her to my son Shelah.” And he did not have relations with her again." + }, + { + "verseNum": 27, + "text": "When the time came for Tamar to give birth, there were twins in her womb." + }, + { + "verseNum": 28, + "text": "And as she was giving birth, one of them put out his hand; so the midwife took a scarlet thread and tied it around his wrist. “This one came out first,” she announced." + }, + { + "verseNum": 29, + "text": "But when he pulled his hand back and his brother came out, she said, “You have broken out first!” So he was named Perez." + }, + { + "verseNum": 30, + "text": "Then his brother came out with the scarlet thread around his wrist, and he was named Zerah." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-39.json b/data/en_bible/BSB/GEN/chapter-39.json new file mode 100644 index 0000000..c5714c3 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-39.json @@ -0,0 +1,97 @@ +{ + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "Meanwhile, Joseph had been taken down to Egypt, where an Egyptian named Potiphar, an officer of Pharaoh and captain of the guard, bought him from the Ishmaelites who had taken him there." + }, + { + "verseNum": 2, + "text": "And the LORD was with Joseph, and he became a successful man, serving in the household of his Egyptian master." + }, + { + "verseNum": 3, + "text": "When his master saw that the LORD was with him and made him prosper in all he did," + }, + { + "verseNum": 4, + "text": "Joseph found favor in his sight and became his personal attendant.\n \nPotiphar put him in charge of his household and entrusted him with everything he owned." + }, + { + "verseNum": 5, + "text": "From the time that he put Joseph in charge of his household and all he owned, the LORD blessed the Egyptian’s household on account of him. The LORD’s blessing was on everything he owned, both in his house and in his field." + }, + { + "verseNum": 6, + "text": "So Potiphar left all that he owned in Joseph’s care; he did not concern himself with anything except the food he ate.\n \nNow Joseph was well-built and handsome," + }, + { + "verseNum": 7, + "text": "and after some time his master’s wife cast her eyes upon Joseph and said, “Sleep with me.”" + }, + { + "verseNum": 8, + "text": "But he refused. “Look,” he said to his master’s wife, “with me here, my master does not concern himself with anything in his house, and he has entrusted everything he owns to my care." + }, + { + "verseNum": 9, + "text": "No one in this house is greater than I am. He has withheld nothing from me except you, because you are his wife. So how could I do such a great evil and sin against God?”" + }, + { + "verseNum": 10, + "text": "Although Potiphar’s wife spoke to Joseph day after day, he refused to go to bed with her or even be near her." + }, + { + "verseNum": 11, + "text": "One day, however, Joseph went into the house to attend to his work, and not a single household servant was inside." + }, + { + "verseNum": 12, + "text": "She grabbed Joseph by his cloak and said, “Sleep with me!” But leaving his cloak in her hand, he escaped and ran outside." + }, + { + "verseNum": 13, + "text": "When she saw that he had left his cloak in her hand and had run out of the house," + }, + { + "verseNum": 14, + "text": "she called her household servants. “Look,” she said, “this Hebrew has been brought to us to make sport of us. He came to me so he could sleep with me, but I screamed as loud as I could." + }, + { + "verseNum": 15, + "text": "When he heard me scream for help, he left his cloak beside me and ran out of the house.”" + }, + { + "verseNum": 16, + "text": "So Potiphar’s wife kept Joseph’s cloak beside her until his master came home." + }, + { + "verseNum": 17, + "text": "Then she told him the same story: “The Hebrew slave you brought us came to me to make sport of me," + }, + { + "verseNum": 18, + "text": "but when I screamed for help, he left his cloak beside me and ran out of the house.”" + }, + { + "verseNum": 19, + "text": "When his master heard the story his wife told him, saying, “This is what your slave did to me,” he burned with anger." + }, + { + "verseNum": 20, + "text": "So Joseph’s master took him and had him thrown into the prison where the king’s prisoners were confined.\n \nWhile Joseph was there in the prison," + }, + { + "verseNum": 21, + "text": "the LORD was with him and extended kindness to him, granting him favor in the eyes of the prison warden." + }, + { + "verseNum": 22, + "text": "And the warden put all the prisoners under Joseph’s care, so that he was responsible for all that was done in the prison." + }, + { + "verseNum": 23, + "text": "The warden did not concern himself with anything under Joseph’s care, because the LORD was with Joseph and gave him success in whatever he did." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-4.json b/data/en_bible/BSB/GEN/chapter-4.json new file mode 100644 index 0000000..0eaa4a5 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-4.json @@ -0,0 +1,109 @@ +{ + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "And Adam had relations with his wife Eve, and she conceived and gave birth to Cain.\n \n“With the help of the LORD I have brought forth a man,” she said." + }, + { + "verseNum": 2, + "text": "Later she gave birth to Cain’s brother Abel.\n \nNow Abel was a keeper of sheep, while Cain was a tiller of the soil." + }, + { + "verseNum": 3, + "text": "So in the course of time, Cain brought some of the fruit of the soil as an offering to the LORD," + }, + { + "verseNum": 4, + "text": "while Abel brought the best portions of the firstborn of his flock.\n \nAnd the LORD looked with favor on Abel and his offering," + }, + { + "verseNum": 5, + "text": "but He had no regard for Cain and his offering. So Cain became very angry, and his countenance fell." + }, + { + "verseNum": 6, + "text": "“Why are you angry,” said the LORD to Cain, “and why has your countenance fallen?" + }, + { + "verseNum": 7, + "text": "If you do what is right, will you not be accepted? But if you refuse to do what is right, sin is crouching at your door; it desires you, but you must master it.”" + }, + { + "verseNum": 8, + "text": "Then Cain said to his brother Abel, “Let us go out to the field.” And while they were in the field, Cain rose up against his brother Abel and killed him." + }, + { + "verseNum": 9, + "text": "And the LORD said to Cain, “Where is your brother Abel?”\n \n“I do not know!” he answered. “Am I my brother’s keeper?”" + }, + { + "verseNum": 10, + "text": "“What have you done?” replied the LORD. “The voice of your brother’s blood cries out to Me from the ground." + }, + { + "verseNum": 11, + "text": "Now you are cursed and banished from the ground, which has opened its mouth to receive your brother’s blood from your hand." + }, + { + "verseNum": 12, + "text": "When you till the ground, it will no longer yield its produce to you. You will be a fugitive and a wanderer on the earth.”" + }, + { + "verseNum": 13, + "text": "But Cain said to the LORD, “My punishment is greater than I can bear." + }, + { + "verseNum": 14, + "text": "Behold, this day You have driven me from the face of the earth, and from Your face I will be hidden; I will be a fugitive and a wanderer on the earth, and whoever finds me will kill me.”" + }, + { + "verseNum": 15, + "text": "“Not so!” replied the LORD. “If anyone slays Cain, then Cain will be avenged sevenfold.” And the LORD placed a mark on Cain, so that no one who found him would kill him." + }, + { + "verseNum": 16, + "text": "So Cain went out from the presence of the LORD and settled in the land of Nod, east of Eden." + }, + { + "verseNum": 17, + "text": "And Cain had relations with his wife, and she conceived and gave birth to Enoch. Then Cain built a city and named it after his son Enoch." + }, + { + "verseNum": 18, + "text": "Now to Enoch was born Irad, and Irad was the father of Mehujael, and Mehujael was the father of Methusael, and Methusael was the father of Lamech." + }, + { + "verseNum": 19, + "text": "And Lamech married two women, one named Adah and the other Zillah." + }, + { + "verseNum": 20, + "text": "Adah gave birth to Jabal; he was the father of those who dwell in tents and raise livestock." + }, + { + "verseNum": 21, + "text": "And his brother’s name was Jubal; he was the father of all who play the harp and flute." + }, + { + "verseNum": 22, + "text": "And Zillah gave birth to Tubal-cain, a forger of every implement of bronze and iron. And the sister of Tubal-cain was Naamah." + }, + { + "verseNum": 23, + "text": "Then Lamech said to his wives:\n \n “Adah and Zillah, hear my voice;\n wives of Lamech, listen to my speech.\n For I have slain a man for wounding me,\n a young man for striking me." + }, + { + "verseNum": 24, + "text": "If Cain is avenged sevenfold,\n then Lamech seventy-sevenfold.”" + }, + { + "verseNum": 25, + "text": "And Adam again had relations with his wife, and she gave birth to a son and named him Seth, saying, “God has granted me another seed in place of Abel, since Cain killed him.”" + }, + { + "verseNum": 26, + "text": "And to Seth also a son was born, and he called him Enosh.\n \nAt that time men began to call upon the name of the LORD." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-40.json b/data/en_bible/BSB/GEN/chapter-40.json new file mode 100644 index 0000000..85aae88 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-40.json @@ -0,0 +1,97 @@ +{ + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "Some time later, the king’s cupbearer and baker offended their master, the king of Egypt." + }, + { + "verseNum": 2, + "text": "Pharaoh was angry with his two officers, the chief cupbearer and the chief baker," + }, + { + "verseNum": 3, + "text": "and imprisoned them in the house of the captain of the guard, the same prison where Joseph was confined." + }, + { + "verseNum": 4, + "text": "The captain of the guard assigned them to Joseph, and he became their personal attendant.\n \nAfter they had been in custody for some time," + }, + { + "verseNum": 5, + "text": "both of these men—the Egyptian king’s cupbearer and baker, who were being held in the prison—had a dream on the same night, and each dream had its own meaning." + }, + { + "verseNum": 6, + "text": "When Joseph came to them in the morning, he saw that they were distraught." + }, + { + "verseNum": 7, + "text": "So he asked the officials of Pharaoh who were in custody with him in his master’s house, “Why are your faces so downcast today?”" + }, + { + "verseNum": 8, + "text": "“We both had dreams,” they replied, “but there is no one to interpret them.”\n \nThen Joseph said to them, “Don’t interpretations belong to God? Tell me your dreams.”" + }, + { + "verseNum": 9, + "text": "So the chief cupbearer told Joseph his dream: “In my dream there was a vine before me," + }, + { + "verseNum": 10, + "text": "and on the vine were three branches. As it budded, its blossoms opened and its clusters ripened into grapes." + }, + { + "verseNum": 11, + "text": "Pharaoh’s cup was in my hand, and I took the grapes, squeezed them into his cup, and placed the cup in his hand.”" + }, + { + "verseNum": 12, + "text": "Joseph replied, “This is the interpretation: The three branches are three days." + }, + { + "verseNum": 13, + "text": "Within three days Pharaoh will lift up your head and restore your position. You will put Pharaoh’s cup in his hand, just as you did when you were his cupbearer." + }, + { + "verseNum": 14, + "text": "But when it goes well for you, please remember me and show me kindness by mentioning me to Pharaoh, that he might bring me out of this prison." + }, + { + "verseNum": 15, + "text": "For I was kidnapped from the land of the Hebrews, and even here I have done nothing for which they should have put me in this dungeon.”" + }, + { + "verseNum": 16, + "text": "When the chief baker saw that the interpretation was favorable, he said to Joseph, “I too had a dream: There were three baskets of white bread on my head." + }, + { + "verseNum": 17, + "text": "In the top basket were all sorts of baked goods for Pharaoh, but the birds were eating them out of the basket on my head.”" + }, + { + "verseNum": 18, + "text": "Joseph replied, “This is the interpretation: The three baskets are three days." + }, + { + "verseNum": 19, + "text": "Within three days Pharaoh will lift off your head and hang you on a tree. Then the birds will eat the flesh of your body.”" + }, + { + "verseNum": 20, + "text": "On the third day, which was Pharaoh’s birthday, he held a feast for all his officials, and in their presence he lifted up the heads of the chief cupbearer and the chief baker." + }, + { + "verseNum": 21, + "text": "Pharaoh restored the chief cupbearer to his position, so that he once again placed the cup in Pharaoh’s hand." + }, + { + "verseNum": 22, + "text": "But Pharaoh hanged the chief baker, just as Joseph had described to them in his interpretation." + }, + { + "verseNum": 23, + "text": "The chief cupbearer, however, did not remember Joseph; he forgot all about him." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-41.json b/data/en_bible/BSB/GEN/chapter-41.json new file mode 100644 index 0000000..19c7423 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-41.json @@ -0,0 +1,233 @@ +{ + "chapterNum": 41, + "verses": [ + { + "verseNum": 1, + "text": "After two full years had passed, Pharaoh had a dream: He was standing beside the Nile," + }, + { + "verseNum": 2, + "text": "when seven cows, sleek and well-fed, came up from the river and began to graze among the reeds." + }, + { + "verseNum": 3, + "text": "After them, seven other cows, sickly and thin, came up from the Nile and stood beside the well-fed cows on the bank of the river." + }, + { + "verseNum": 4, + "text": "And the cows that were sickly and thin devoured the seven sleek, well-fed cows.\n \nThen Pharaoh woke up," + }, + { + "verseNum": 5, + "text": "but he fell back asleep and dreamed a second time: Seven heads of grain, plump and ripe, came up on one stalk." + }, + { + "verseNum": 6, + "text": "After them, seven other heads of grain sprouted, thin and scorched by the east wind." + }, + { + "verseNum": 7, + "text": "And the thin heads of grain swallowed up the seven plump, ripe ones. Then Pharaoh awoke and realized it was a dream." + }, + { + "verseNum": 8, + "text": "In the morning his spirit was troubled, so he summoned all the magicians and wise men of Egypt. Pharaoh told them his dreams, but no one could interpret them for him." + }, + { + "verseNum": 9, + "text": "Then the chief cupbearer said to Pharaoh, “Today I recall my failures." + }, + { + "verseNum": 10, + "text": "Pharaoh was once angry with his servants, and he put me and the chief baker in the custody of the captain of the guard." + }, + { + "verseNum": 11, + "text": "One night both the chief baker and I had dreams, and each dream had its own meaning." + }, + { + "verseNum": 12, + "text": "Now a young Hebrew was there with us, a servant of the captain of the guard. We told him our dreams and he interpreted them for us individually." + }, + { + "verseNum": 13, + "text": "And it happened to us just as he had interpreted: I was restored to my position, and the other man was hanged.”" + }, + { + "verseNum": 14, + "text": "So Pharaoh sent for Joseph, who was quickly brought out of the dungeon. After he had shaved and changed his clothes, he went in before Pharaoh." + }, + { + "verseNum": 15, + "text": "Pharaoh said to Joseph, “I had a dream, and no one can interpret it. But I have heard it said of you that when you hear a dream you can interpret it.”" + }, + { + "verseNum": 16, + "text": "“I myself cannot do it,” Joseph replied, “but God will give Pharaoh a sound answer.”" + }, + { + "verseNum": 17, + "text": "Then Pharaoh said to Joseph: “In my dream I was standing on the bank of the Nile," + }, + { + "verseNum": 18, + "text": "when seven cows, well-fed and sleek, came up from the river and began to graze among the reeds." + }, + { + "verseNum": 19, + "text": "After them, seven other cows—sickly, ugly, and thin—came up. I have never seen such ugly cows in all the land of Egypt!" + }, + { + "verseNum": 20, + "text": "Then the thin, ugly cows devoured the seven well-fed cows that were there first." + }, + { + "verseNum": 21, + "text": "When they had devoured them, however, no one could tell that they had done so; their appearance was as ugly as it had been before. Then I awoke." + }, + { + "verseNum": 22, + "text": "In my dream I also saw seven heads of grain, plump and ripe, growing on a single stalk." + }, + { + "verseNum": 23, + "text": "After them, seven other heads of grain sprouted—withered, thin, and scorched by the east wind." + }, + { + "verseNum": 24, + "text": "And the thin heads of grain swallowed the seven plump ones.\n \nI told this dream to the magicians, but no one could explain it to me.”" + }, + { + "verseNum": 25, + "text": "At this, Joseph said to Pharaoh, “The dreams of Pharaoh are one and the same. God has revealed to Pharaoh what He is about to do." + }, + { + "verseNum": 26, + "text": "The seven good cows are seven years, and the seven ripe heads of grain are seven years. The dreams have the same meaning." + }, + { + "verseNum": 27, + "text": "Moreover, the seven thin, ugly cows that came up after them are seven years, and so are the seven worthless heads of grain scorched by the east wind—they are seven years of famine." + }, + { + "verseNum": 28, + "text": "It is just as I said to Pharaoh: God has shown Pharaoh what He is about to do." + }, + { + "verseNum": 29, + "text": "Behold, seven years of great abundance are coming throughout the land of Egypt," + }, + { + "verseNum": 30, + "text": "but seven years of famine will follow them. Then all the abundance in the land of Egypt will be forgotten, and the famine will devastate the land." + }, + { + "verseNum": 31, + "text": "The abundance in the land will not be remembered, since the famine that follows it will be so severe." + }, + { + "verseNum": 32, + "text": "Moreover, because the dream was given to Pharaoh in two versions, the matter has been decreed by God, and He will carry it out shortly." + }, + { + "verseNum": 33, + "text": "Now, therefore, Pharaoh should look for a discerning and wise man and set him over the land of Egypt." + }, + { + "verseNum": 34, + "text": "Let Pharaoh take action and appoint commissioners over the land to take a fifth of the harvest of Egypt during the seven years of abundance." + }, + { + "verseNum": 35, + "text": "Under the authority of Pharaoh, let them collect all the excess food from these good years, that they may come and lay up the grain to be preserved as food in the cities." + }, + { + "verseNum": 36, + "text": "This food will be a reserve for the land during the seven years of famine to come upon the land of Egypt. Then the country will not perish in the famine.”" + }, + { + "verseNum": 37, + "text": "This proposal pleased Pharaoh and all his officials." + }, + { + "verseNum": 38, + "text": "So Pharaoh asked them, “Can we find anyone like this man, in whom the Spirit of God abides?”" + }, + { + "verseNum": 39, + "text": "Then Pharaoh said to Joseph, “Since God has made all this known to you, there is no one as discerning and wise as you." + }, + { + "verseNum": 40, + "text": "You shall be in charge of my house, and all my people are to obey your commands. Only with regard to the throne will I be greater than you.”" + }, + { + "verseNum": 41, + "text": "Pharaoh also told Joseph, “I hereby place you over all the land of Egypt.”" + }, + { + "verseNum": 42, + "text": "Then Pharaoh removed the signet ring from his finger, put it on Joseph’s finger, clothed him in garments of fine linen, and placed a gold chain around his neck." + }, + { + "verseNum": 43, + "text": "He had Joseph ride in his second chariot, with men calling out before him, “Bow the knee!” So he placed him over all the land of Egypt." + }, + { + "verseNum": 44, + "text": "And Pharaoh declared to Joseph, “I am Pharaoh, but without your permission, no one in all the land of Egypt shall lift his hand or foot.”" + }, + { + "verseNum": 45, + "text": "Pharaoh gave Joseph the name Zaphenath-paneah, and he gave him Asenath daughter of Potiphera, priest of On, to be his wife. And Joseph took charge of all the land of Egypt." + }, + { + "verseNum": 46, + "text": "Now Joseph was thirty years old when he entered the service of Pharaoh king of Egypt. And Joseph left Pharaoh’s presence and traveled throughout the land of Egypt." + }, + { + "verseNum": 47, + "text": "During the seven years of abundance, the land brought forth bountifully." + }, + { + "verseNum": 48, + "text": "During those seven years, Joseph collected all the excess food in the land of Egypt and stored it in the cities. In every city he laid up the food from the fields around it." + }, + { + "verseNum": 49, + "text": "So Joseph stored up grain in such abundance, like the sand of the sea, that he stopped keeping track of it; for it was beyond measure." + }, + { + "verseNum": 50, + "text": "Before the years of famine arrived, two sons were born to Joseph by Asenath daughter of Potiphera, priest of On." + }, + { + "verseNum": 51, + "text": "Joseph named the firstborn Manasseh, saying, “God has made me forget all my hardship and all my father’s household.”" + }, + { + "verseNum": 52, + "text": "And the second son he named Ephraim, saying, “God has made me fruitful in the land of my affliction.”" + }, + { + "verseNum": 53, + "text": "When the seven years of abundance in the land of Egypt came to an end," + }, + { + "verseNum": 54, + "text": "the seven years of famine began, just as Joseph had said. And although there was famine in every country, there was food throughout the land of Egypt." + }, + { + "verseNum": 55, + "text": "When extreme hunger came to all the land of Egypt and the people cried out to Pharaoh for food, he told all the Egyptians, “Go to Joseph and do whatever he tells you.”" + }, + { + "verseNum": 56, + "text": "When the famine had spread over all the land, Joseph opened up all the storehouses and sold grain to the Egyptians; for the famine was severe in the land of Egypt." + }, + { + "verseNum": 57, + "text": "And every nation came to Joseph in Egypt to buy grain, because the famine was severe over all the earth." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-42.json b/data/en_bible/BSB/GEN/chapter-42.json new file mode 100644 index 0000000..d2e7570 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-42.json @@ -0,0 +1,157 @@ +{ + "chapterNum": 42, + "verses": [ + { + "verseNum": 1, + "text": "When Jacob learned that there was grain in Egypt, he said to his sons, “Why are you staring at one another?”" + }, + { + "verseNum": 2, + "text": "“Look,” he added, “I have heard that there is grain in Egypt. Go down there and buy some for us, so that we may live and not die.”" + }, + { + "verseNum": 3, + "text": "So ten of Joseph’s brothers went down to buy grain from Egypt." + }, + { + "verseNum": 4, + "text": "But Jacob did not send Joseph’s brother Benjamin with his brothers, for he said, “I am afraid that harm might befall him.”" + }, + { + "verseNum": 5, + "text": "So the sons of Israel were among those who came to buy grain, since the famine had also spread to the land of Canaan." + }, + { + "verseNum": 6, + "text": "Now Joseph was the ruler of the land; he was the one who sold grain to all its people. So when his brothers arrived, they bowed down before him with their faces to the ground." + }, + { + "verseNum": 7, + "text": "And when Joseph saw his brothers, he recognized them, but he treated them as strangers and spoke harshly to them. “Where have you come from?” he asked.\n \n“From the land of Canaan,” they replied. “We are here to buy food.”" + }, + { + "verseNum": 8, + "text": "Although Joseph recognized his brothers, they did not recognize him." + }, + { + "verseNum": 9, + "text": "Joseph remembered his dreams about them and said, “You are spies! You have come to see if our land is vulnerable.”" + }, + { + "verseNum": 10, + "text": "“Not so, my lord,” they replied. “Your servants have come to buy food." + }, + { + "verseNum": 11, + "text": "We are all sons of one man. Your servants are honest men, not spies.”" + }, + { + "verseNum": 12, + "text": "“No,” he told them. “You have come to see if our land is vulnerable.”" + }, + { + "verseNum": 13, + "text": "But they answered, “Your servants are twelve brothers, the sons of one man in the land of Canaan. The youngest is now with our father, and one is no more.”" + }, + { + "verseNum": 14, + "text": "Then Joseph declared, “Just as I said, you are spies!" + }, + { + "verseNum": 15, + "text": "And this is how you will be tested: As surely as Pharaoh lives, you shall not leave this place unless your youngest brother comes here." + }, + { + "verseNum": 16, + "text": "Send one of your number to get your brother; the rest of you will be confined so that the truth of your words may be tested. If they are untrue, then as surely as Pharaoh lives, you are spies!”" + }, + { + "verseNum": 17, + "text": "So Joseph imprisoned them for three days," + }, + { + "verseNum": 18, + "text": "and on the third day he said to them, “I fear God. So do this and you will live:" + }, + { + "verseNum": 19, + "text": "If you are honest, leave one of your brothers in custody while the rest of you go and take back grain to relieve the hunger of your households." + }, + { + "verseNum": 20, + "text": "Then bring your youngest brother to me so that your words can be verified, that you may not die.”\n \nAnd to this they consented." + }, + { + "verseNum": 21, + "text": "Then they said to one another, “Surely we are being punished because of our brother. We saw his anguish when he pleaded with us, but we would not listen. That is why this distress has come upon us.”" + }, + { + "verseNum": 22, + "text": "And Reuben responded, “Didn’t I tell you not to sin against the boy? But you would not listen. Now we must account for his blood!”" + }, + { + "verseNum": 23, + "text": "They did not realize that Joseph understood them, since there was an interpreter between them." + }, + { + "verseNum": 24, + "text": "And he turned away from them and wept. When he turned back and spoke to them, he took Simeon from them and had him bound before their eyes." + }, + { + "verseNum": 25, + "text": "Then Joseph gave orders to fill their bags with grain, to return each man’s silver to his sack, and to give them provisions for their journey. This order was carried out," + }, + { + "verseNum": 26, + "text": "and they loaded the grain on their donkeys and departed." + }, + { + "verseNum": 27, + "text": "At the place where they lodged for the night, one of them opened his sack to get feed for his donkey, and he saw his silver in the mouth of the sack." + }, + { + "verseNum": 28, + "text": "“My silver has been returned!” he said to his brothers. “It is here in my sack.”\n \nTheir hearts sank, and trembling, they turned to one another and said, “What is this that God has done to us?”" + }, + { + "verseNum": 29, + "text": "When they reached their father Jacob in the land of Canaan, they described to him all that had happened to them:" + }, + { + "verseNum": 30, + "text": "“The man who is lord of the land spoke harshly to us and accused us of spying on the country." + }, + { + "verseNum": 31, + "text": "But we told him, ‘We are honest men, not spies." + }, + { + "verseNum": 32, + "text": "We are twelve brothers, sons of one father. One is no more, and the youngest is now with our father in the land of Canaan.’" + }, + { + "verseNum": 33, + "text": "Then the man who is lord of the land said to us, ‘This is how I will know whether you are honest: Leave one brother with me, take food to relieve the hunger of your households, and go." + }, + { + "verseNum": 34, + "text": "But bring your youngest brother back to me so I will know that you are not spies but honest men. Then I will give your brother back to you, and you can trade in the land.’”" + }, + { + "verseNum": 35, + "text": "As they began emptying their sacks, there in each man’s sack was his bag of silver! And when they and their father saw the bags of silver, they were dismayed." + }, + { + "verseNum": 36, + "text": "Their father Jacob said to them, “You have deprived me of my sons. Joseph is gone and Simeon is no more. Now you want to take Benjamin. Everything is going against me!”" + }, + { + "verseNum": 37, + "text": "Then Reuben said to his father, “You may kill my two sons if I fail to bring him back to you. Put him in my care, and I will return him.”" + }, + { + "verseNum": 38, + "text": "But Jacob replied, “My son will not go down there with you, for his brother is dead, and he alone is left. If any harm comes to him on your journey, you will bring my gray hair down to Sheol in sorrow.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-43.json b/data/en_bible/BSB/GEN/chapter-43.json new file mode 100644 index 0000000..feb146a --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-43.json @@ -0,0 +1,141 @@ +{ + "chapterNum": 43, + "verses": [ + { + "verseNum": 1, + "text": "Now the famine was still severe in the land." + }, + { + "verseNum": 2, + "text": "So when Jacob’s sons had eaten all the grain they had brought from Egypt, their father said to them, “Go back and buy us a little more food.”" + }, + { + "verseNum": 3, + "text": "But Judah replied, “The man solemnly warned us, ‘You will not see my face again unless your brother is with you.’" + }, + { + "verseNum": 4, + "text": "If you will send our brother with us, we will go down and buy food for you." + }, + { + "verseNum": 5, + "text": "But if you will not send him, we will not go; for the man told us, ‘You will not see my face again unless your brother is with you.’”" + }, + { + "verseNum": 6, + "text": "“Why did you bring this trouble upon me?” Israel asked. “Why did you tell the man you had another brother?”" + }, + { + "verseNum": 7, + "text": "They replied, “The man questioned us in detail about ourselves and our family: ‘Is your father still alive? Do you have another brother?’ And we answered him accordingly. How could we possibly know that he would say, ‘Bring your brother here’?”" + }, + { + "verseNum": 8, + "text": "And Judah said to his father Israel, “Send the boy with me, and we will go at once, so that we may live and not die—neither we, nor you, nor our children." + }, + { + "verseNum": 9, + "text": "I will guarantee his safety. You may hold me personally responsible. If I do not bring him back and set him before you, then may I bear the guilt before you all my life." + }, + { + "verseNum": 10, + "text": "If we had not delayed, we could have come and gone twice by now.”" + }, + { + "verseNum": 11, + "text": "Then their father Israel said to them, “If it must be so, then do this: Put some of the best products of the land in your packs and carry them down as a gift for the man—a little balm and a little honey, spices and myrrh, pistachios and almonds." + }, + { + "verseNum": 12, + "text": "Take double the silver with you so that you may return the silver that was put back into the mouths of your sacks. Perhaps it was a mistake." + }, + { + "verseNum": 13, + "text": "Take your brother as well, and return to the man at once." + }, + { + "verseNum": 14, + "text": "May God Almighty grant you mercy before the man, that he may release your other brother along with Benjamin. As for me, if I am bereaved, I am bereaved.”" + }, + { + "verseNum": 15, + "text": "So the men took these gifts, along with double the amount of silver, and Benjamin as well. Then they hurried down to Egypt and stood before Joseph." + }, + { + "verseNum": 16, + "text": "When Joseph saw Benjamin with his brothers, he said to the steward of his house, “Take these men to my house. Slaughter an animal and prepare it, for they shall dine with me at noon.”" + }, + { + "verseNum": 17, + "text": "The man did as Joseph had commanded and took the brothers to Joseph’s house." + }, + { + "verseNum": 18, + "text": "But the brothers were frightened that they had been taken to Joseph’s house. “We have been brought here because of the silver that was returned in our bags the first time,” they said. “They intend to overpower us and take us as slaves, along with our donkeys.”" + }, + { + "verseNum": 19, + "text": "So they approached Joseph’s steward and spoke to him at the entrance to the house." + }, + { + "verseNum": 20, + "text": "“Please, sir,” they said, “we really did come down here the first time to buy food." + }, + { + "verseNum": 21, + "text": "But when we came to the place we lodged for the night, we opened our sacks and, behold, each of us found his silver in the mouth of his sack! It was the full amount of our silver, and we have brought it back with us." + }, + { + "verseNum": 22, + "text": "We have brought additional silver with us to buy food. We do not know who put our silver in our sacks.”" + }, + { + "verseNum": 23, + "text": "“It is fine,” said the steward. “Do not be afraid. Your God, the God of your father, gave you the treasure that was in your sacks. I received your silver.” Then he brought Simeon out to them." + }, + { + "verseNum": 24, + "text": "And the steward took the men into Joseph’s house, gave them water to wash their feet, and provided food for their donkeys." + }, + { + "verseNum": 25, + "text": "Since the brothers had been told that they were going to eat a meal there, they prepared their gift for Joseph’s arrival at noon." + }, + { + "verseNum": 26, + "text": "When Joseph came home, they presented him with the gifts they had brought, and they bowed to the ground before him." + }, + { + "verseNum": 27, + "text": "He asked if they were well, and then he asked, “How is your elderly father you told me about? Is he still alive?”" + }, + { + "verseNum": 28, + "text": "“Your servant our father is well,” they answered. “He is still alive.” And they bowed down to honor him." + }, + { + "verseNum": 29, + "text": "When Joseph looked up and saw his brother Benjamin, his own mother’s son, he asked, “Is this your youngest brother, the one you told me about?” Then he declared, “May God be gracious to you, my son.”" + }, + { + "verseNum": 30, + "text": "Joseph hurried out because he was moved to tears for his brother, and he went to a private room to weep." + }, + { + "verseNum": 31, + "text": "Then he washed his face and came back out. Regaining his composure, he said, “Serve the meal.”" + }, + { + "verseNum": 32, + "text": "They separately served Joseph, his brothers, and the Egyptians. They ate separately because the Egyptians would not eat with the Hebrews, since that was detestable to them." + }, + { + "verseNum": 33, + "text": "They were seated before Joseph in order by age, from the firstborn to the youngest, and the men looked at one another in astonishment." + }, + { + "verseNum": 34, + "text": "When the portions were served to them from Joseph’s table, Benjamin’s portion was five times larger than any of the others. So they feasted and drank freely with Joseph." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-44.json b/data/en_bible/BSB/GEN/chapter-44.json new file mode 100644 index 0000000..11ed467 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-44.json @@ -0,0 +1,141 @@ +{ + "chapterNum": 44, + "verses": [ + { + "verseNum": 1, + "text": "Then Joseph instructed his steward: “Fill the men’s sacks with as much food as they can carry, and put each one’s silver in the mouth of his sack." + }, + { + "verseNum": 2, + "text": "Put my cup, the silver one, in the mouth of the youngest one’s sack, along with the silver for his grain.”\n \nSo the steward did as Joseph had instructed." + }, + { + "verseNum": 3, + "text": "At daybreak, the men were sent on their way with their donkeys." + }, + { + "verseNum": 4, + "text": "They had not gone far from the city when Joseph told his steward, “Pursue the men at once, and when you overtake them, ask, ‘Why have you repaid good with evil?" + }, + { + "verseNum": 5, + "text": "Is this not the cup my master drinks from and uses for divination? What you have done is wicked!’”" + }, + { + "verseNum": 6, + "text": "When the steward overtook them, he relayed these words to them." + }, + { + "verseNum": 7, + "text": "“Why does my lord say these things?” they asked. “Your servants could not possibly do such a thing." + }, + { + "verseNum": 8, + "text": "We even brought back to you from the land of Canaan the silver we found in the mouths of our sacks. Why would we steal silver or gold from your master’s house?" + }, + { + "verseNum": 9, + "text": "If any of your servants is found to have it, he must die, and the rest will become slaves of my lord.”" + }, + { + "verseNum": 10, + "text": "“As you say,” replied the steward. “But only the one who is found with the cup will be my slave, and the rest of you shall be free of blame.”" + }, + { + "verseNum": 11, + "text": "So each one quickly lowered his sack to the ground and opened it." + }, + { + "verseNum": 12, + "text": "The steward searched, beginning with the oldest and ending with the youngest—and the cup was found in Benjamin’s sack." + }, + { + "verseNum": 13, + "text": "Then they all tore their clothes, loaded their donkeys, and returned to the city." + }, + { + "verseNum": 14, + "text": "When Judah and his brothers arrived at Joseph’s house, he was still there, and they fell to the ground before him." + }, + { + "verseNum": 15, + "text": "“What is this deed you have done?” Joseph declared. “Do you not know that a man like me can surely divine the truth?”" + }, + { + "verseNum": 16, + "text": "“What can we say to my lord?” Judah replied. “How can we plead? How can we justify ourselves? God has exposed the iniquity of your servants. We are now my lord’s slaves—both we and the one who was found with the cup.”" + }, + { + "verseNum": 17, + "text": "But Joseph replied, “Far be it from me to do this. The man who was found with the cup will be my slave. The rest of you may return to your father in peace.”" + }, + { + "verseNum": 18, + "text": "Then Judah approached Joseph and said, “Sir, please let your servant speak personally to my lord. Do not be angry with your servant, for you are equal to Pharaoh himself." + }, + { + "verseNum": 19, + "text": "My lord asked his servants, ‘Do you have a father or a brother?’" + }, + { + "verseNum": 20, + "text": "And we answered, ‘We have an elderly father and a younger brother, the child of his old age. The boy’s brother is dead. He is the only one of his mother’s sons left, and his father loves him.’" + }, + { + "verseNum": 21, + "text": "Then you told your servants, ‘Bring him down to me so that I can see him for myself.’" + }, + { + "verseNum": 22, + "text": "So we said to my lord, ‘The boy cannot leave his father. If he were to leave, his father would die.’" + }, + { + "verseNum": 23, + "text": "But you said to your servants, ‘Unless your younger brother comes down with you, you will not see my face again.’" + }, + { + "verseNum": 24, + "text": "Now when we returned to your servant my father, we relayed your words to him." + }, + { + "verseNum": 25, + "text": "Then our father said, ‘Go back and buy us some food.’" + }, + { + "verseNum": 26, + "text": "But we answered, ‘We cannot go down there unless our younger brother goes with us. So if our younger brother is not with us, we cannot see the man.’" + }, + { + "verseNum": 27, + "text": "And your servant my father said to us, ‘You know that my wife bore me two sons." + }, + { + "verseNum": 28, + "text": "When one of them was gone, I said: “Surely he has been torn to pieces.” And I have not seen him since." + }, + { + "verseNum": 29, + "text": "Now if you also take this one from me and harm comes to him, you will bring my gray hair down to Sheol in sorrow.’" + }, + { + "verseNum": 30, + "text": "So if the boy is not with us when I return to your servant, and if my father, whose life is wrapped up in the boy’s life," + }, + { + "verseNum": 31, + "text": "sees that the boy is not with us, he will die. Then your servants will have brought the gray hair of your servant our father down to Sheol in sorrow." + }, + { + "verseNum": 32, + "text": "Indeed, your servant guaranteed the boy’s safety to my father, saying, ‘If I do not return him to you, I will bear the guilt before you, my father, all my life.’" + }, + { + "verseNum": 33, + "text": "Now please let your servant stay here as my lord’s slave in place of the boy. Let him return with his brothers." + }, + { + "verseNum": 34, + "text": "For how can I go back to my father without the boy? I could not bear to see the misery that would overwhelm him.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-45.json b/data/en_bible/BSB/GEN/chapter-45.json new file mode 100644 index 0000000..1fab3e0 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-45.json @@ -0,0 +1,117 @@ +{ + "chapterNum": 45, + "verses": [ + { + "verseNum": 1, + "text": "Then Joseph could no longer control himself before all his attendants, and he cried out, “Send everyone away from me!”\n \nSo none of them were with Joseph when he made himself known to his brothers." + }, + { + "verseNum": 2, + "text": "But he wept so loudly that the Egyptians heard him, and Pharaoh’s household soon heard of it." + }, + { + "verseNum": 3, + "text": "Joseph said to his brothers, “I am Joseph! Is my father still alive?”\n \nBut they were unable to answer him, because they were terrified in his presence." + }, + { + "verseNum": 4, + "text": "Then Joseph said to his brothers, “Please come near me.” And they did so.\n \n“I am Joseph, your brother,” he said, “the one you sold into Egypt!" + }, + { + "verseNum": 5, + "text": "And now, do not be distressed or angry with yourselves that you sold me into this place, because it was to save lives that God sent me before you." + }, + { + "verseNum": 6, + "text": "For the famine has covered the land these two years, and there will be five more years without plowing or harvesting." + }, + { + "verseNum": 7, + "text": "God sent me before you to preserve you as a remnant on the earth and to save your lives by a great deliverance." + }, + { + "verseNum": 8, + "text": "Therefore it was not you who sent me here, but God, who has made me a father to Pharaoh—lord of all his household and ruler over all the land of Egypt." + }, + { + "verseNum": 9, + "text": "Now return quickly to my father and tell him, ‘This is what your son Joseph says: God has made me lord of all Egypt. Come down to me without delay." + }, + { + "verseNum": 10, + "text": "You shall settle in the land of Goshen and be near me—you and your children and grandchildren, your flocks and herds, and everything you own." + }, + { + "verseNum": 11, + "text": "And there I will provide for you, because there will be five more years of famine. Otherwise, you and your household and everything you own will come to destitution.’" + }, + { + "verseNum": 12, + "text": "Behold! You and my brother Benjamin can see that I, Joseph, am the one speaking with you." + }, + { + "verseNum": 13, + "text": "Tell my father about all my splendor in Egypt and everything you have seen. And bring my father down here quickly.”" + }, + { + "verseNum": 14, + "text": "Then Joseph threw his arms around his brother Benjamin and wept, and Benjamin wept as they embraced." + }, + { + "verseNum": 15, + "text": "Joseph kissed each of his brothers as he wept over them. And afterward his brothers talked with him." + }, + { + "verseNum": 16, + "text": "When the news reached Pharaoh’s house that Joseph’s brothers had come, Pharaoh and his servants were pleased." + }, + { + "verseNum": 17, + "text": "Pharaoh said to Joseph, “Tell your brothers, ‘Do as follows: Load your animals and return to the land of Canaan." + }, + { + "verseNum": 18, + "text": "Then bring your father and your families and return to me. I will give you the best of the land of Egypt, and you shall eat from the fat of the land.’" + }, + { + "verseNum": 19, + "text": "You are also directed to tell them: ‘Take wagons from the land of Egypt for your young children and your wives, and bring your father and come back." + }, + { + "verseNum": 20, + "text": "But pay no regard to your belongings, for the best of all the land of Egypt is yours.’”" + }, + { + "verseNum": 21, + "text": "So the sons of Israel did as they were told. Joseph gave them wagons as Pharaoh had instructed, and he also gave them provisions for their journey." + }, + { + "verseNum": 22, + "text": "He gave new garments to each of them, but to Benjamin he gave three hundred shekels of silver and five sets of clothes." + }, + { + "verseNum": 23, + "text": "And he sent to his father the following: ten donkeys loaded with the best of Egypt, and ten female donkeys loaded with grain and bread and provisions for his father’s journey." + }, + { + "verseNum": 24, + "text": "Then Joseph sent his brothers on their way, and as they were leaving, he said to them, “Do not quarrel on the way!”" + }, + { + "verseNum": 25, + "text": "So the brothers went up out of Egypt and came to their father Jacob in the land of Canaan." + }, + { + "verseNum": 26, + "text": "“Joseph is still alive,” they said, “and he is ruler over all the land of Egypt!”\n \nBut Jacob was stunned, for he did not believe them." + }, + { + "verseNum": 27, + "text": "However, when they relayed all that Joseph had told them, and when he saw the wagons that Joseph had sent to carry him back, the spirit of their father Jacob was revived." + }, + { + "verseNum": 28, + "text": "“Enough!” declared Israel. “My son Joseph is still alive! I will go to see him before I die.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-46.json b/data/en_bible/BSB/GEN/chapter-46.json new file mode 100644 index 0000000..915e006 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-46.json @@ -0,0 +1,141 @@ +{ + "chapterNum": 46, + "verses": [ + { + "verseNum": 1, + "text": "So Israel set out with all that he had, and when he came to Beersheba, he offered sacrifices to the God of his father Isaac." + }, + { + "verseNum": 2, + "text": "And that night God spoke to Israel in a vision: “Jacob, Jacob!” He said.\n \n“Here I am,” replied Jacob." + }, + { + "verseNum": 3, + "text": "“I am God,” He said, “the God of your father. Do not be afraid to go down to Egypt, for I will make you into a great nation there." + }, + { + "verseNum": 4, + "text": "I will go down with you to Egypt, and I will surely bring you back. And Joseph’s own hands will close your eyes.”" + }, + { + "verseNum": 5, + "text": "Then Jacob departed from Beersheba, and the sons of Israel took their father Jacob in the wagons Pharaoh had sent to carry him, along with their children and wives." + }, + { + "verseNum": 6, + "text": "They also took the livestock and possessions they had acquired in the land of Canaan, and Jacob and all his offspring went to Egypt." + }, + { + "verseNum": 7, + "text": "Jacob took with him to Egypt his sons and grandsons, and his daughters and granddaughters—all his offspring." + }, + { + "verseNum": 8, + "text": "Now these are the names of the sons of Israel (Jacob and his descendants) who went to Egypt: Reuben, Jacob’s firstborn." + }, + { + "verseNum": 9, + "text": "The sons of Reuben: Hanoch, Pallu, Hezron, and Carmi." + }, + { + "verseNum": 10, + "text": "The sons of Simeon: Jemuel, Jamin, Ohad, Jachin, Zohar, and Shaul the son of a Canaanite woman." + }, + { + "verseNum": 11, + "text": "The sons of Levi: Gershon, Kohath, and Merari." + }, + { + "verseNum": 12, + "text": "The sons of Judah: Er, Onan, Shelah, Perez, and Zerah; but Er and Onan died in the land of Canaan.\n \n The sons of Perez: Hezron and Hamul." + }, + { + "verseNum": 13, + "text": "The sons of Issachar: Tola, Puvah, Job, and Shimron." + }, + { + "verseNum": 14, + "text": "The sons of Zebulun: Sered, Elon, and Jahleel." + }, + { + "verseNum": 15, + "text": "These are the sons of Leah born to Jacob in Paddan-aram, in addition to his daughter Dinah. The total number of sons and daughters was thirty-three." + }, + { + "verseNum": 16, + "text": "The sons of Gad: Ziphion, Haggi, Shuni, Ezbon, Eri, Arodi, and Areli." + }, + { + "verseNum": 17, + "text": "The children of Asher: Imnah, Ishvah, Ishvi, Beriah, and their sister Serah.\n \n The sons of Beriah: Heber and Malchiel." + }, + { + "verseNum": 18, + "text": "These are the sons of Jacob born to Zilpah—whom Laban gave to his daughter Leah—sixteen in all." + }, + { + "verseNum": 19, + "text": "The sons of Jacob’s wife Rachel: Joseph and Benjamin." + }, + { + "verseNum": 20, + "text": "Manasseh and Ephraim were born to Joseph in the land of Egypt by Asenath daughter of Potiphera, priest of On." + }, + { + "verseNum": 21, + "text": "The sons of Benjamin: Bela, Becher, Ashbel, Gera, Naaman, Ehi, Rosh, Muppim, Huppim, and Ard." + }, + { + "verseNum": 22, + "text": "These are the sons of Rachel born to Jacob—fourteen in all." + }, + { + "verseNum": 23, + "text": "The son of Dan: Hushim." + }, + { + "verseNum": 24, + "text": "The sons of Naphtali: Jahzeel, Guni, Jezer, and Shillem." + }, + { + "verseNum": 25, + "text": "These are the sons of Jacob born to Bilhah, whom Laban gave to his daughter Rachel—seven in all." + }, + { + "verseNum": 26, + "text": "All those belonging to Jacob who came to Egypt—his direct descendants, besides the wives of Jacob’s sons—numbered sixty-six persons." + }, + { + "verseNum": 27, + "text": "And with the two sons who had been born to Joseph in Egypt, the members of Jacob’s family who went to Egypt were seventy in all." + }, + { + "verseNum": 28, + "text": "Now Jacob had sent Judah ahead of him to Joseph to get directions to Goshen. When Jacob’s family arrived in the land of Goshen," + }, + { + "verseNum": 29, + "text": "Joseph prepared his chariot and went there to meet his father Israel. Joseph presented himself to him, embraced him, and wept profusely." + }, + { + "verseNum": 30, + "text": "Then Israel said to Joseph, “Finally I can die, now that I have seen your face and know that you are still alive!”" + }, + { + "verseNum": 31, + "text": "Joseph said to his brothers and to his father’s household, “I will go up and inform Pharaoh: ‘My brothers and my father’s household from the land of Canaan have come to me." + }, + { + "verseNum": 32, + "text": "The men are shepherds; they raise livestock, and they have brought their flocks and herds and all that they own.’" + }, + { + "verseNum": 33, + "text": "When Pharaoh summons you and asks, ‘What is your occupation?’" + }, + { + "verseNum": 34, + "text": "you are to say, ‘Your servants have raised livestock ever since our youth—both we and our fathers.’ Then you will be allowed to settle in the land of Goshen, since all shepherds are detestable to the Egyptians.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-47.json b/data/en_bible/BSB/GEN/chapter-47.json new file mode 100644 index 0000000..6cc7253 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-47.json @@ -0,0 +1,129 @@ +{ + "chapterNum": 47, + "verses": [ + { + "verseNum": 1, + "text": "So Joseph went and told Pharaoh: “My father and my brothers, with their flocks and herds and all they own, have come from the land of Canaan and are now in Goshen.”" + }, + { + "verseNum": 2, + "text": "And he chose five of his brothers and presented them before Pharaoh." + }, + { + "verseNum": 3, + "text": "“What is your occupation?” Pharaoh asked Joseph’s brothers.\n \n“Your servants are shepherds,” they replied, “both we and our fathers.”" + }, + { + "verseNum": 4, + "text": "Then they said to Pharaoh, “We have come to live in the land for a time, because there is no pasture for the flocks of your servants, since the famine in the land of Canaan has been severe. So now, please allow your servants to settle in the land of Goshen.”" + }, + { + "verseNum": 5, + "text": "Pharaoh said to Joseph, “Now that your father and brothers have come to you," + }, + { + "verseNum": 6, + "text": "the land of Egypt is before you; settle your father and brothers in the best part of the land. They may dwell in the land of Goshen. And if you know of any talented men among them, put them in charge of my own livestock.”" + }, + { + "verseNum": 7, + "text": "Then Joseph brought in his father Jacob and presented him before Pharaoh, and Jacob blessed Pharaoh." + }, + { + "verseNum": 8, + "text": "“How many years have you lived?” Pharaoh asked." + }, + { + "verseNum": 9, + "text": "“My travels have lasted 130 years,” Jacob replied. “My years have been few and hard, and they have not matched the years of the travels of my fathers.”" + }, + { + "verseNum": 10, + "text": "Then Jacob blessed Pharaoh and departed from his presence." + }, + { + "verseNum": 11, + "text": "So Joseph settled his father and brothers in the land of Egypt and gave them property in the best part of the land, the district of Rameses, as Pharaoh had commanded." + }, + { + "verseNum": 12, + "text": "Joseph also provided his father and brothers and all his father’s household with food for their families." + }, + { + "verseNum": 13, + "text": "There was no food, however, in all that region, because the famine was so severe; the lands of Egypt and Canaan had been exhausted by the famine." + }, + { + "verseNum": 14, + "text": "Joseph collected all the money to be found in the land of Egypt and the land of Canaan in exchange for the grain they were buying, and he brought it into Pharaoh’s palace." + }, + { + "verseNum": 15, + "text": "When the money from the lands of Egypt and Canaan was gone, all the Egyptians came to Joseph and said, “Give us food. Why should we die before your eyes? For our funds have run out!”" + }, + { + "verseNum": 16, + "text": "“Then bring me your livestock,” said Joseph. “Since the money is gone, I will sell you food in exchange for your livestock.”" + }, + { + "verseNum": 17, + "text": "So they brought their livestock to Joseph, and he gave them food in exchange for their horses, their flocks and herds, and their donkeys. Throughout that year he provided them with food in exchange for all their livestock." + }, + { + "verseNum": 18, + "text": "When that year was over, they came to him the second year and said, “We cannot hide from our lord that our money is gone and all our livestock belongs to you. There is nothing left for our lord except our bodies and our land." + }, + { + "verseNum": 19, + "text": "Why should we perish before your eyes—we and our land as well? Purchase us and our land in exchange for food. Then we, along with our land, will be slaves to Pharaoh. Give us seed that we may live and not die, and that the land may not become desolate.”" + }, + { + "verseNum": 20, + "text": "So Joseph acquired for Pharaoh all the land in Egypt; the Egyptians, one and all, sold their fields because the famine was so severe upon them. The land became Pharaoh’s," + }, + { + "verseNum": 21, + "text": "and Joseph reduced the people to servitude from one end of Egypt to the other." + }, + { + "verseNum": 22, + "text": "However, he did not acquire the priests’ portion of the land, for it had been given to them by Pharaoh. They ate the rations that Pharaoh supplied; so they did not sell their land." + }, + { + "verseNum": 23, + "text": "Then Joseph said to the people, “Now that I have acquired you and your land for Pharaoh this day, here is seed for you to sow in the land." + }, + { + "verseNum": 24, + "text": "At harvest time, you are to give a fifth of it to Pharaoh, and four-fifths will be yours as seed for the field and food for yourselves and your households and children.”" + }, + { + "verseNum": 25, + "text": "“You have saved our lives,” they said. “We have found favor in our lord’s eyes, and we will be Pharaoh’s servants.”" + }, + { + "verseNum": 26, + "text": "So Joseph established a law that a fifth of the produce belongs to Pharaoh, and it is in effect in the land of Egypt to this day. Only the priests’ land does not belong to Pharaoh." + }, + { + "verseNum": 27, + "text": "Now the Israelites settled in the land of Egypt, in the region of Goshen. They acquired property there and became fruitful and increased greatly in number." + }, + { + "verseNum": 28, + "text": "And Jacob lived in the land of Egypt seventeen years, and the length of his life was 147 years." + }, + { + "verseNum": 29, + "text": "When the time drew near for Israel to die, he called his son Joseph and said to him, “If I have found favor in your eyes, put your hand under my thigh and promise to show me kindness and faithfulness. Do not bury me in Egypt," + }, + { + "verseNum": 30, + "text": "but when I lie down with my fathers, carry me out of Egypt and bury me with them.”\n \nJoseph answered, “I will do as you have requested.”" + }, + { + "verseNum": 31, + "text": "“Swear to me,” Jacob said.\n \nSo Joseph swore to him, and Israel bowed in worship at the head of his bed." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-48.json b/data/en_bible/BSB/GEN/chapter-48.json new file mode 100644 index 0000000..57e918e --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-48.json @@ -0,0 +1,93 @@ +{ + "chapterNum": 48, + "verses": [ + { + "verseNum": 1, + "text": "Some time later Joseph was told, “Your father is ill.” So he set out with his two sons, Manasseh and Ephraim." + }, + { + "verseNum": 2, + "text": "When Jacob was told, “Your son Joseph has come to you,” Israel rallied his strength and sat up in bed." + }, + { + "verseNum": 3, + "text": "Jacob said to Joseph, “God Almighty appeared to me at Luz in the land of Canaan, and there He blessed me" + }, + { + "verseNum": 4, + "text": "and told me, ‘Behold, I will make you fruitful and multiply you; I will make you a multitude of peoples, and will give this land to your descendants after you as an everlasting possession.’" + }, + { + "verseNum": 5, + "text": "And now your two sons born to you in Egypt before I came to you here shall be reckoned as mine; Ephraim and Manasseh shall be mine, just as Reuben and Simeon are mine." + }, + { + "verseNum": 6, + "text": "Any children born to you after them shall be yours, and they shall be called by the names of their brothers in the territory they inherit." + }, + { + "verseNum": 7, + "text": "Now as for me, when I was returning from Paddan, to my sorrow Rachel died along the way in the land of Canaan, some distance from Ephrath. So I buried her there beside the road to Ephrath” (that is, Bethlehem)." + }, + { + "verseNum": 8, + "text": "When Israel saw the sons of Joseph, he asked, “Who are these?”" + }, + { + "verseNum": 9, + "text": "Joseph said to his father, “They are the sons God has given me in this place.”\n \nSo Jacob said, “Please bring them to me, that I may bless them.”" + }, + { + "verseNum": 10, + "text": "Now Israel’s eyesight was poor because of old age; he could hardly see. Joseph brought his sons to him, and his father kissed them and embraced them." + }, + { + "verseNum": 11, + "text": "“I never expected to see your face again,” Israel said to Joseph, “but now God has let me see your children as well.”" + }, + { + "verseNum": 12, + "text": "Then Joseph removed his sons from his father’s knees and bowed facedown." + }, + { + "verseNum": 13, + "text": "And Joseph took both of them—with Ephraim in his right hand toward Israel’s left hand, and Manasseh in his left hand toward Israel’s right hand—and brought them close to him." + }, + { + "verseNum": 14, + "text": "But Israel stretched out his right hand and put it on the head of Ephraim, the younger; and crossing his hands, he put his left on Manasseh’s head, although Manasseh was the firstborn." + }, + { + "verseNum": 15, + "text": "Then he blessed Joseph and said:\n \n “May the God before whom my fathers Abraham and Isaac walked,\n the God who has been my shepherd all my life to this day," + }, + { + "verseNum": 16, + "text": "the angel who has redeemed me from all harm—\n may He bless these boys.\n And may they be called by my name\n and the names of my fathers Abraham and Isaac,\n and may they grow into a multitude upon the earth.”" + }, + { + "verseNum": 17, + "text": "When Joseph saw that his father had placed his right hand on Ephraim’s head, he was displeased and took his father’s hand to move it from Ephraim’s head to Manasseh’s." + }, + { + "verseNum": 18, + "text": "“Not so, my father!” Joseph said. “This one is the firstborn; put your right hand on his head.”" + }, + { + "verseNum": 19, + "text": "But his father refused. “I know, my son, I know!” he said. “He too shall become a people, and he too shall be great; nevertheless, his younger brother shall be greater than he, and his offspring shall become a multitude of nations.”" + }, + { + "verseNum": 20, + "text": "So that day Jacob blessed them and said:\n \n “By you shall Israel pronounce this blessing:\n ‘May God make you like Ephraim and Manasseh.’”\n \nSo he put Ephraim before Manasseh." + }, + { + "verseNum": 21, + "text": "Then Israel said to Joseph, “Look, I am about to die, but God will be with you and bring you back to the land of your fathers." + }, + { + "verseNum": 22, + "text": "And to you, as one who is above your brothers, I give the ridge of land that I took from the Amorites with my sword and bow.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-49.json b/data/en_bible/BSB/GEN/chapter-49.json new file mode 100644 index 0000000..fadb75c --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-49.json @@ -0,0 +1,137 @@ +{ + "chapterNum": 49, + "verses": [ + { + "verseNum": 1, + "text": "Then Jacob called for his sons and said, “Gather around so that I can tell you what will happen to you in the days to come:" + }, + { + "verseNum": 2, + "text": "Come together and listen, O sons of Jacob;\n listen to your father Israel." + }, + { + "verseNum": 3, + "text": "Reuben, you are my firstborn, my might,\n and the beginning of my strength,\n excelling in honor,\n excelling in power." + }, + { + "verseNum": 4, + "text": "Uncontrolled as the waters,\n you will no longer excel,\n because you went up to your father’s bed,\n onto my couch, and defiled it." + }, + { + "verseNum": 5, + "text": "Simeon and Levi are brothers;\n their swords are weapons of violence." + }, + { + "verseNum": 6, + "text": "May I never enter their council;\n may I never join their assembly.\n For they kill men in their anger,\n and hamstring oxen on a whim." + }, + { + "verseNum": 7, + "text": "Cursed be their anger, for it is strong,\n and their wrath, for it is cruel!\n I will disperse them in Jacob\n and scatter them in Israel." + }, + { + "verseNum": 8, + "text": "Judah, your brothers shall praise you.\n Your hand shall be on the necks of your enemies;\n your father’s sons shall bow down to you." + }, + { + "verseNum": 9, + "text": "Judah is a young lion—\n my son, you return from the prey.\n Like a lion he crouches and lies down;\n like a lioness, who dares to rouse him?" + }, + { + "verseNum": 10, + "text": "The scepter will not depart from Judah,\n nor the staff from between his feet,\n until Shiloh comes\n and the allegiance of the nations is his." + }, + { + "verseNum": 11, + "text": "He ties his donkey to the vine,\n his colt to the choicest branch.\n He washes his garments in wine,\n his robes in the blood of grapes." + }, + { + "verseNum": 12, + "text": "His eyes are darker than wine,\n and his teeth are whiter than milk." + }, + { + "verseNum": 13, + "text": "Zebulun shall dwell by the seashore\n and become a harbor for ships;\n his border shall extend to Sidon." + }, + { + "verseNum": 14, + "text": "Issachar is a strong donkey,\n lying down between the sheepfolds." + }, + { + "verseNum": 15, + "text": "He saw that his resting place was good\n and that his land was pleasant,\n so he bent his shoulder to the burden\n and submitted to labor as a servant." + }, + { + "verseNum": 16, + "text": "Dan shall provide justice for his people \n as one of the tribes of Israel." + }, + { + "verseNum": 17, + "text": "He will be a snake by the road,\n a viper in the path\n that bites the horse’s heels\n so that its rider tumbles backward." + }, + { + "verseNum": 18, + "text": "I await Your salvation, O LORD." + }, + { + "verseNum": 19, + "text": "Gad will be attacked by raiders,\n but he will attack their heels." + }, + { + "verseNum": 20, + "text": "Asher’s food will be rich;\n he shall provide royal delicacies." + }, + { + "verseNum": 21, + "text": "Naphtali is a doe set free\n that bears beautiful fawns." + }, + { + "verseNum": 22, + "text": "Joseph is a fruitful vine—\n a fruitful vine by a spring,\n whose branches scale the wall." + }, + { + "verseNum": 23, + "text": "The archers attacked him with bitterness;\n they aimed at him in hostility." + }, + { + "verseNum": 24, + "text": "Yet he steadied his bow,\n and his strong arms were tempered\n by the hands of the Mighty One of Jacob,\n in the name of the Shepherd, the Rock of Israel," + }, + { + "verseNum": 25, + "text": "by the God of your father who helps you,\n and by the Almighty who blesses you,\n with blessings of the heavens above,\n with blessings of the depths below,\n with blessings of the breasts and womb." + }, + { + "verseNum": 26, + "text": "The blessings of your father have surpassed\n the blessings of the ancient mountains \n and the bounty of the everlasting hills.\n May they rest on the head of Joseph,\n on the brow of the prince of his brothers." + }, + { + "verseNum": 27, + "text": "Benjamin is a ravenous wolf;\n in the morning he devours the prey,\n in the evening he divides the plunder.”" + }, + { + "verseNum": 28, + "text": "These are the tribes of Israel, twelve in all, and this was what their father said to them. He blessed them, and he blessed each one with a suitable blessing." + }, + { + "verseNum": 29, + "text": "Then Jacob instructed them, “I am about to be gathered to my people. Bury me with my fathers in the cave in the field of Ephron the Hittite." + }, + { + "verseNum": 30, + "text": "The cave is in the field of Machpelah near Mamre, in the land of Canaan. This is the field Abraham purchased from Ephron the Hittite as a burial site." + }, + { + "verseNum": 31, + "text": "There Abraham and his wife Sarah are buried, there Isaac and his wife Rebekah are buried, and there I buried Leah." + }, + { + "verseNum": 32, + "text": "The field and the cave that is in it were purchased from the Hittites.”" + }, + { + "verseNum": 33, + "text": "When Jacob had finished instructing his sons, he pulled his feet into the bed and breathed his last, and he was gathered to his people." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-5.json b/data/en_bible/BSB/GEN/chapter-5.json new file mode 100644 index 0000000..7df81fc --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-5.json @@ -0,0 +1,133 @@ +{ + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "This is the book of the generations of Adam. In the day that God created man, He made him in His own likeness." + }, + { + "verseNum": 2, + "text": "Male and female He created them, and He blessed them. And in the day they were created, He called them “man.”" + }, + { + "verseNum": 3, + "text": "When Adam was 130 years old, he had a son in his own likeness, after his own image; and he named him Seth." + }, + { + "verseNum": 4, + "text": "And after he had become the father of Seth, Adam lived 800 years and had other sons and daughters." + }, + { + "verseNum": 5, + "text": "So Adam lived a total of 930 years, and then he died." + }, + { + "verseNum": 6, + "text": "When Seth was 105 years old, he became the father of Enosh." + }, + { + "verseNum": 7, + "text": "And after he had become the father of Enosh, Seth lived 807 years and had other sons and daughters." + }, + { + "verseNum": 8, + "text": "So Seth lived a total of 912 years, and then he died." + }, + { + "verseNum": 9, + "text": "When Enosh was 90 years old, he became the father of Kenan." + }, + { + "verseNum": 10, + "text": "And after he had become the father of Kenan, Enosh lived 815 years and had other sons and daughters." + }, + { + "verseNum": 11, + "text": "So Enosh lived a total of 905 years, and then he died." + }, + { + "verseNum": 12, + "text": "When Kenan was 70 years old, he became the father of Mahalalel." + }, + { + "verseNum": 13, + "text": "And after he had become the father of Mahalalel, Kenan lived 840 years and had other sons and daughters." + }, + { + "verseNum": 14, + "text": "So Kenan lived a total of 910 years, and then he died." + }, + { + "verseNum": 15, + "text": "When Mahalalel was 65 years old, he became the father of Jared." + }, + { + "verseNum": 16, + "text": "And after he had become the father of Jared, Mahalalel lived 830 years and had other sons and daughters." + }, + { + "verseNum": 17, + "text": "So Mahalalel lived a total of 895 years, and then he died." + }, + { + "verseNum": 18, + "text": "When Jared was 162 years old, he became the father of Enoch." + }, + { + "verseNum": 19, + "text": "And after he had become the father of Enoch, Jared lived 800 years and had other sons and daughters." + }, + { + "verseNum": 20, + "text": "So Jared lived a total of 962 years, and then he died." + }, + { + "verseNum": 21, + "text": "When Enoch was 65 years old, he became the father of Methuselah." + }, + { + "verseNum": 22, + "text": "And after he had become the father of Methuselah, Enoch walked with God 300 years and had other sons and daughters." + }, + { + "verseNum": 23, + "text": "So Enoch lived a total of 365 years." + }, + { + "verseNum": 24, + "text": "Enoch walked with God, and then he was no more, because God had taken him away." + }, + { + "verseNum": 25, + "text": "When Methuselah was 187 years old, he became the father of Lamech." + }, + { + "verseNum": 26, + "text": "And after he had become the father of Lamech, Methuselah lived 782 years and had other sons and daughters." + }, + { + "verseNum": 27, + "text": "So Methuselah lived a total of 969 years, and then he died." + }, + { + "verseNum": 28, + "text": "When Lamech was 182 years old, he had a son." + }, + { + "verseNum": 29, + "text": "And he named him Noah, saying, “May this one comfort us in the labor and toil of our hands caused by the ground that the LORD has cursed.”" + }, + { + "verseNum": 30, + "text": "And after he had become the father of Noah, Lamech lived 595 years and had other sons and daughters." + }, + { + "verseNum": 31, + "text": "So Lamech lived a total of 777 years, and then he died." + }, + { + "verseNum": 32, + "text": "After Noah was 500 years old, he became the father of Shem, Ham, and Japheth." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-50.json b/data/en_bible/BSB/GEN/chapter-50.json new file mode 100644 index 0000000..40cf5d6 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-50.json @@ -0,0 +1,109 @@ +{ + "chapterNum": 50, + "verses": [ + { + "verseNum": 1, + "text": "Then Joseph fell upon his father’s face, wept over him, and kissed him." + }, + { + "verseNum": 2, + "text": "And Joseph directed the physicians in his service to embalm his father Israel. So they embalmed him," + }, + { + "verseNum": 3, + "text": "taking the forty days required to complete the embalming. And the Egyptians mourned for him seventy days." + }, + { + "verseNum": 4, + "text": "When the days of mourning had passed, Joseph said to Pharaoh’s court, “If I have found favor in your eyes, please tell Pharaoh that" + }, + { + "verseNum": 5, + "text": "my father made me swear an oath when he said, ‘I am about to die. You must bury me in the tomb that I dug for myself in the land of Canaan.’ Now let me go and bury my father, and then return.”" + }, + { + "verseNum": 6, + "text": "Pharaoh replied, “Go up and bury your father, as he made you swear to do.”" + }, + { + "verseNum": 7, + "text": "Then Joseph went to bury his father, and all the servants of Pharaoh accompanied him—the elders of Pharaoh’s household and all the elders of the land of Egypt—" + }, + { + "verseNum": 8, + "text": "along with all of Joseph’s household, and his brothers, and his father’s household. Only their children and flocks and herds were left in Goshen." + }, + { + "verseNum": 9, + "text": "Chariots and horsemen alike went up with him, and it was an exceedingly large procession." + }, + { + "verseNum": 10, + "text": "When they reached the threshing floor of Atad, which is across the Jordan, they lamented and wailed loudly, and Joseph mourned for his father seven days." + }, + { + "verseNum": 11, + "text": "When the Canaanites of the land saw the mourning at the threshing floor of Atad, they said, “This is a solemn ceremony of mourning by the Egyptians.” Thus the place across the Jordan is called Abel-mizraim." + }, + { + "verseNum": 12, + "text": "So Jacob’s sons did as he had charged them." + }, + { + "verseNum": 13, + "text": "They carried him to the land of Canaan and buried him in the cave at Machpelah in the field near Mamre, which Abraham had purchased from Ephron the Hittite as a burial site." + }, + { + "verseNum": 14, + "text": "After Joseph had buried his father, he returned to Egypt with his brothers and all who had gone with him to bury his father." + }, + { + "verseNum": 15, + "text": "When Joseph’s brothers saw that their father was dead, they said, “What if Joseph bears a grudge? Then he will surely repay us for all the evil that we did to him.”" + }, + { + "verseNum": 16, + "text": "So they sent word to Joseph, saying, “Before he died, your father commanded," + }, + { + "verseNum": 17, + "text": "‘This is what you are to say to Joseph: I beg you, please forgive the transgression and sin of your brothers, for they did you wrong.’ So now, Joseph, please forgive the transgression of the servants of the God of your father.”\n \nWhen their message came to him, Joseph wept." + }, + { + "verseNum": 18, + "text": "His brothers also came to him, bowed down before him, and said, “We are your slaves!”" + }, + { + "verseNum": 19, + "text": "But Joseph replied, “Do not be afraid. Am I in the place of God?" + }, + { + "verseNum": 20, + "text": "As for you, what you intended against me for evil, God intended for good, in order to accomplish a day like this—to preserve the lives of many people." + }, + { + "verseNum": 21, + "text": "Therefore do not be afraid. I will provide for you and your little ones.” So Joseph reassured his brothers and spoke kindly to them." + }, + { + "verseNum": 22, + "text": "Now Joseph and his father’s household remained in Egypt, and Joseph lived to the age of 110." + }, + { + "verseNum": 23, + "text": "He saw Ephraim’s sons to the third generation, and indeed the sons of Machir son of Manasseh were brought up on Joseph’s knees." + }, + { + "verseNum": 24, + "text": "Then Joseph said to his brothers, “I am about to die, but God will surely visit you and bring you up from this land to the land He promised on oath to Abraham, Isaac, and Jacob.”" + }, + { + "verseNum": 25, + "text": "And Joseph made the sons of Israel take an oath and said, “God will surely attend to you, and then you must carry my bones up from this place.”" + }, + { + "verseNum": 26, + "text": "So Joseph died at the age of 110. And they embalmed his body and placed it in a coffin in Egypt." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-6.json b/data/en_bible/BSB/GEN/chapter-6.json new file mode 100644 index 0000000..46bff66 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-6.json @@ -0,0 +1,93 @@ +{ + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Now when men began to multiply on the face of the earth and daughters were born to them," + }, + { + "verseNum": 2, + "text": "the sons of God saw that the daughters of men were beautiful, and they took as wives whomever they chose." + }, + { + "verseNum": 3, + "text": "So the LORD said, “My Spirit will not contend with man forever, for he is mortal; his days shall be 120 years.”" + }, + { + "verseNum": 4, + "text": "The Nephilim were on the earth in those days—and afterward as well—when the sons of God had relations with the daughters of men. And they bore them children who became the mighty men of old, men of renown." + }, + { + "verseNum": 5, + "text": "Then the LORD saw that the wickedness of man was great upon the earth, and that every inclination of the thoughts of his heart was altogether evil all the time." + }, + { + "verseNum": 6, + "text": "And the LORD regretted that He had made man on the earth, and He was grieved in His heart." + }, + { + "verseNum": 7, + "text": "So the LORD said, “I will blot out man, whom I have created, from the face of the earth—every man and beast and crawling creature and bird of the air—for I am grieved that I have made them.”" + }, + { + "verseNum": 8, + "text": "Noah, however, found favor in the eyes of the LORD." + }, + { + "verseNum": 9, + "text": "This is the account of Noah. Noah was a righteous man, blameless in his generation; Noah walked with God." + }, + { + "verseNum": 10, + "text": "And Noah had three sons: Shem, Ham, and Japheth." + }, + { + "verseNum": 11, + "text": "Now the earth was corrupt in the sight of God, and full of violence." + }, + { + "verseNum": 12, + "text": "And God looked upon the earth and saw that it was corrupt; for all living creatures on the earth had corrupted their ways." + }, + { + "verseNum": 13, + "text": "Then God said to Noah, “The end of all living creatures has come before Me, because through them the earth is full of violence. Now behold, I will destroy both them and the earth." + }, + { + "verseNum": 14, + "text": "Make for yourself an ark of gopher wood; make rooms in the ark and coat it with pitch inside and out." + }, + { + "verseNum": 15, + "text": "And this is how you are to build it: The ark is to be 300 cubits long, 50 cubits wide, and 30 cubits high." + }, + { + "verseNum": 16, + "text": "You are to make a roof for the ark, finish its walls a cubit from the top, place a door in the side of the ark, and build lower, middle, and upper decks." + }, + { + "verseNum": 17, + "text": "And behold, I will bring floodwaters upon the earth to destroy every creature under the heavens that has the breath of life. Everything on the earth will perish." + }, + { + "verseNum": 18, + "text": "But I will establish My covenant with you, and you will enter the ark—you and your sons and your wife and your sons’ wives with you." + }, + { + "verseNum": 19, + "text": "And you are to bring two of every living creature into the ark—male and female—to keep them alive with you." + }, + { + "verseNum": 20, + "text": "Two of every kind of bird and animal and crawling creature will come to you to be kept alive." + }, + { + "verseNum": 21, + "text": "You are also to take for yourself every kind of food that is eaten and gather it as food for yourselves and for the animals.”" + }, + { + "verseNum": 22, + "text": "So Noah did everything precisely as God had commanded him." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-7.json b/data/en_bible/BSB/GEN/chapter-7.json new file mode 100644 index 0000000..f75e9ff --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-7.json @@ -0,0 +1,101 @@ +{ + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Noah, “Go into the ark, you and all your family, because I have found you righteous in this generation." + }, + { + "verseNum": 2, + "text": "You are to take with you seven pairs of every kind of clean animal, a male and its mate; a pair of every kind of unclean animal, a male and its mate;" + }, + { + "verseNum": 3, + "text": "and seven pairs of every kind of bird of the air, male and female, to preserve their offspring on the face of all the earth." + }, + { + "verseNum": 4, + "text": "For seven days from now I will send rain on the earth for forty days and forty nights, and I will wipe from the face of the earth every living thing I have made.”" + }, + { + "verseNum": 5, + "text": "And Noah did all that the LORD had commanded him." + }, + { + "verseNum": 6, + "text": "Now Noah was 600 years old when the floodwaters came upon the earth." + }, + { + "verseNum": 7, + "text": "And Noah and his wife, with his sons and their wives, entered the ark to escape the waters of the flood." + }, + { + "verseNum": 8, + "text": "The clean and unclean animals, the birds, and everything that crawls along the ground" + }, + { + "verseNum": 9, + "text": "came to Noah to enter the ark, two by two, male and female, as God had commanded Noah." + }, + { + "verseNum": 10, + "text": "And after seven days the floodwaters came upon the earth." + }, + { + "verseNum": 11, + "text": "In the six hundredth year of Noah’s life, on the seventeenth day of the second month, all the fountains of the great deep burst forth, and the floodgates of the heavens were opened." + }, + { + "verseNum": 12, + "text": "And the rain fell upon the earth for forty days and forty nights." + }, + { + "verseNum": 13, + "text": "On that very day Noah entered the ark, along with his sons Shem, Ham, and Japheth, and his wife, and the three wives of his sons—" + }, + { + "verseNum": 14, + "text": "they and every kind of wild animal, livestock, crawling creature, bird, and winged creature." + }, + { + "verseNum": 15, + "text": "They came to Noah to enter the ark, two by two of every creature with the breath of life." + }, + { + "verseNum": 16, + "text": "And they entered, the male and female of every living thing, as God had commanded Noah. Then the LORD shut him in." + }, + { + "verseNum": 17, + "text": "For forty days the flood kept coming on the earth, and the waters rose and lifted the ark high above the earth." + }, + { + "verseNum": 18, + "text": "So the waters continued to surge and rise greatly on the earth, and the ark floated on the surface of the waters." + }, + { + "verseNum": 19, + "text": "Finally, the waters completely inundated the earth, so that all the high mountains under all the heavens were covered." + }, + { + "verseNum": 20, + "text": "The waters rose and covered the mountaintops to a depth of fifteen cubits." + }, + { + "verseNum": 21, + "text": "And every living thing that moved upon the earth perished—birds, livestock, animals, every creature that swarms upon the earth, and all mankind." + }, + { + "verseNum": 22, + "text": "Of all that was on dry land, everything that had the breath of life in its nostrils died." + }, + { + "verseNum": 23, + "text": "And every living thing on the face of the earth was destroyed—man and livestock, crawling creatures and birds of the air; they were blotted out from the earth, and only Noah and those with him in the ark remained." + }, + { + "verseNum": 24, + "text": "And the waters prevailed upon the earth for 150 days." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-8.json b/data/en_bible/BSB/GEN/chapter-8.json new file mode 100644 index 0000000..cf3d411 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-8.json @@ -0,0 +1,93 @@ +{ + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "But God remembered Noah and all the animals and livestock that were with him in the ark. And God sent a wind over the earth, and the waters began to subside." + }, + { + "verseNum": 2, + "text": "The springs of the deep and the floodgates of the heavens were closed, and the rain from the sky was restrained." + }, + { + "verseNum": 3, + "text": "The waters receded steadily from the earth, and after 150 days the waters had gone down." + }, + { + "verseNum": 4, + "text": "On the seventeenth day of the seventh month, the ark came to rest on the mountains of Ararat." + }, + { + "verseNum": 5, + "text": "And the waters continued to recede until the tenth month, and on the first day of the tenth month the tops of the mountains became visible." + }, + { + "verseNum": 6, + "text": "After forty days Noah opened the window he had made in the ark" + }, + { + "verseNum": 7, + "text": "and sent out a raven. It kept flying back and forth until the waters had dried up from the earth." + }, + { + "verseNum": 8, + "text": "Then Noah sent out a dove to see if the waters had receded from the surface of the ground." + }, + { + "verseNum": 9, + "text": "But the dove found no place to rest her foot, and she returned to him in the ark, because the waters were still covering the surface of all the earth. So he reached out his hand and brought her back inside the ark." + }, + { + "verseNum": 10, + "text": "Noah waited seven more days and again sent out the dove from the ark." + }, + { + "verseNum": 11, + "text": "And behold, the dove returned to him in the evening with a freshly plucked olive leaf in her beak. So Noah knew that the waters had receded from the earth." + }, + { + "verseNum": 12, + "text": "And Noah waited seven more days and sent out the dove again, but this time she did not return to him." + }, + { + "verseNum": 13, + "text": "In Noah’s six hundred and first year, on the first day of the first month, the waters had dried up from the earth. So Noah removed the covering from the ark and saw that the surface of the ground was dry." + }, + { + "verseNum": 14, + "text": "By the twenty-seventh day of the second month, the earth was fully dry." + }, + { + "verseNum": 15, + "text": "Then God said to Noah," + }, + { + "verseNum": 16, + "text": "“Come out of the ark, you and your wife, along with your sons and their wives." + }, + { + "verseNum": 17, + "text": "Bring out all the living creatures that are with you—birds, livestock, and everything that crawls upon the ground—so that they can spread out over the earth and be fruitful and multiply upon it.”" + }, + { + "verseNum": 18, + "text": "So Noah came out, along with his sons and his wife and his sons’ wives." + }, + { + "verseNum": 19, + "text": "Every living creature, every creeping thing, and every bird—everything that moves upon the earth—came out of the ark, kind by kind." + }, + { + "verseNum": 20, + "text": "Then Noah built an altar to the LORD. And taking from every kind of clean animal and clean bird, he offered burnt offerings on the altar." + }, + { + "verseNum": 21, + "text": "When the LORD smelled the pleasing aroma, He said in His heart, “Never again will I curse the ground because of man, even though every inclination of his heart is evil from his youth. And never again will I destroy all living creatures as I have done." + }, + { + "verseNum": 22, + "text": "As long as the earth endures,\n seedtime and harvest,\n cold and heat,\n summer and winter,\n day and night\n shall never cease.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-9.json b/data/en_bible/BSB/GEN/chapter-9.json new file mode 100644 index 0000000..ec3249d --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-9.json @@ -0,0 +1,121 @@ +{ + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "And God blessed Noah and his sons and said to them, “Be fruitful and multiply and fill the earth." + }, + { + "verseNum": 2, + "text": "The fear and dread of you will fall on every living creature on the earth, every bird of the air, every creature that crawls on the ground, and all the fish of the sea. They are delivered into your hand." + }, + { + "verseNum": 3, + "text": "Everything that lives and moves will be food for you; just as I gave you the green plants, I now give you all things." + }, + { + "verseNum": 4, + "text": "But you must not eat meat with its lifeblood still in it." + }, + { + "verseNum": 5, + "text": "And surely I will require the life of any man or beast by whose hand your lifeblood is shed. I will demand an accounting from anyone who takes the life of his fellow man:" + }, + { + "verseNum": 6, + "text": "Whoever sheds the blood of man,\n by man his blood will be shed;\n for in His own image\n God has made mankind." + }, + { + "verseNum": 7, + "text": "But as for you,\n be fruitful and multiply;\n spread out across the earth\n and multiply upon it.”" + }, + { + "verseNum": 8, + "text": "Then God said to Noah and his sons with him," + }, + { + "verseNum": 9, + "text": "“Behold, I now establish My covenant with you and your descendants after you," + }, + { + "verseNum": 10, + "text": "and with every living creature that was with you—the birds, the livestock, and every beast of the earth—every living thing that came out of the ark." + }, + { + "verseNum": 11, + "text": "And I establish My covenant with you: Never again will all life be cut off by the waters of a flood; never again will there be a flood to destroy the earth.”" + }, + { + "verseNum": 12, + "text": "And God said, “This is the sign of the covenant I am making between Me and you and every living creature with you, a covenant for all generations to come:" + }, + { + "verseNum": 13, + "text": "I have set My rainbow in the clouds, and it will be a sign of the covenant between Me and the earth." + }, + { + "verseNum": 14, + "text": "Whenever I form clouds over the earth and the rainbow appears in the clouds," + }, + { + "verseNum": 15, + "text": "I will remember My covenant between Me and you and every living creature of every kind. Never again will the waters become a flood to destroy all life." + }, + { + "verseNum": 16, + "text": "And whenever the rainbow appears in the clouds, I will see it and remember the everlasting covenant between God and every living creature of every kind that is on the earth.”" + }, + { + "verseNum": 17, + "text": "So God said to Noah, “This is the sign of the covenant that I have established between Me and every creature on the earth.”" + }, + { + "verseNum": 18, + "text": "The sons of Noah who came out of the ark were Shem, Ham, and Japheth. And Ham was the father of Canaan." + }, + { + "verseNum": 19, + "text": "These three were the sons of Noah, and from them the whole earth was populated." + }, + { + "verseNum": 20, + "text": "Now Noah, a man of the soil, proceeded to plant a vineyard." + }, + { + "verseNum": 21, + "text": "But when he drank some of its wine, he became drunk and uncovered himself inside his tent." + }, + { + "verseNum": 22, + "text": "And Ham, the father of Canaan, saw his father’s nakedness and told his two brothers outside." + }, + { + "verseNum": 23, + "text": "Then Shem and Japheth took a garment and placed it across their shoulders, and walking backward, they covered their father’s nakedness. Their faces were turned away so that they did not see their father’s nakedness." + }, + { + "verseNum": 24, + "text": "When Noah awoke from his drunkenness and learned what his youngest son had done to him," + }, + { + "verseNum": 25, + "text": "he said,\n \n “Cursed be Canaan!\n A servant of servants\n shall he be to his brothers.”" + }, + { + "verseNum": 26, + "text": "He also declared:\n \n “Blessed be the LORD, the God of Shem!\n May Canaan be the servant of Shem." + }, + { + "verseNum": 27, + "text": "May God expand the territory of Japheth;\n may he dwell in the tents of Shem,\n and may Canaan be his servant.”" + }, + { + "verseNum": 28, + "text": "After the flood, Noah lived 350 years." + }, + { + "verseNum": 29, + "text": "So Noah lived a total of 950 years, and then he died." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-intro.json b/data/en_bible/BSB/GEN/chapter-intro.json new file mode 100644 index 0000000..31472ef --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-intro.json @@ -0,0 +1,9 @@ +{ + "chapterNum": null, + "verses": [ + { + "verseNum": 1, + "text": "Genesis" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-1.json b/data/en_bible/BSB/LEV/chapter-1.json new file mode 100644 index 0000000..9dc6a22 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-1.json @@ -0,0 +1,73 @@ +{ + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD called to Moses and spoke to him from the Tent of Meeting, saying," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and tell them: When any of you brings an offering to the LORD, you may bring as your offering an animal from the herd or the flock." + }, + { + "verseNum": 3, + "text": "If one’s offering is a burnt offering from the herd, he is to present an unblemished male. He must bring it to the entrance to the Tent of Meeting for its acceptance before the LORD." + }, + { + "verseNum": 4, + "text": "He is to lay his hand on the head of the burnt offering, so it can be accepted on his behalf to make atonement for him." + }, + { + "verseNum": 5, + "text": "And he shall slaughter the young bull before the LORD, and Aaron’s sons the priests are to present the blood and sprinkle it on all sides of the altar at the entrance to the Tent of Meeting." + }, + { + "verseNum": 6, + "text": "Next, he is to skin the burnt offering and cut it into pieces." + }, + { + "verseNum": 7, + "text": "The sons of Aaron the priest shall put a fire on the altar and arrange wood on the fire." + }, + { + "verseNum": 8, + "text": "Then Aaron’s sons the priests are to arrange the pieces, including the head and the fat, atop the burning wood on the altar." + }, + { + "verseNum": 9, + "text": "The entrails and legs must be washed with water, and the priest shall burn all of it on the altar as a burnt offering, an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 10, + "text": "If, however, one’s offering is a burnt offering from the flock—from the sheep or goats—he is to present an unblemished male." + }, + { + "verseNum": 11, + "text": "He shall slaughter it on the north side of the altar before the LORD, and Aaron’s sons the priests are to sprinkle its blood against the altar on all sides." + }, + { + "verseNum": 12, + "text": "He is to cut the animal into pieces, and the priest shall arrange them, including the head and fat, atop the burning wood that is on the altar." + }, + { + "verseNum": 13, + "text": "The entrails and legs must be washed with water, and the priest shall bring all of it and burn it on the altar; it is a burnt offering, an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 14, + "text": "If, instead, one’s offering to the LORD is a burnt offering of birds, he is to present a turtledove or a young pigeon." + }, + { + "verseNum": 15, + "text": "Then the priest shall bring it to the altar, twist off its head, and burn it on the altar; its blood should be drained out on the side of the altar." + }, + { + "verseNum": 16, + "text": "And he is to remove the crop with its contents and throw it to the east side of the altar, in the place for ashes." + }, + { + "verseNum": 17, + "text": "He shall tear it open by its wings, without dividing the bird completely. And the priest is to burn it on the altar atop the burning wood. It is a burnt offering, an offering made by fire, a pleasing aroma to the LORD." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-10.json b/data/en_bible/BSB/LEV/chapter-10.json new file mode 100644 index 0000000..b4187b6 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-10.json @@ -0,0 +1,85 @@ +{ + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now Aaron’s sons Nadab and Abihu took their censers, put fire in them and added incense, and offered unauthorized fire before the LORD, contrary to His command." + }, + { + "verseNum": 2, + "text": "So fire came out from the presence of the LORD and consumed them, and they died in the presence of the LORD." + }, + { + "verseNum": 3, + "text": "Then Moses said to Aaron, “This is what the LORD meant when He said:\n \n ‘To those who come near Me\n I will show My holiness,\n and in the sight of all the people\n I will reveal My glory.’”\n \nBut Aaron remained silent." + }, + { + "verseNum": 4, + "text": "Moses summoned Mishael and Elzaphan, sons of Aaron’s uncle Uzziel, and said to them, “Come here; carry the bodies of your cousins outside the camp, away from the front of the sanctuary.”" + }, + { + "verseNum": 5, + "text": "So they came forward and carried them, still in their tunics, outside the camp, as Moses had directed." + }, + { + "verseNum": 6, + "text": "Then Moses said to Aaron and his sons Eleazar and Ithamar, “Do not let your hair become disheveled and do not tear your garments, or else you will die, and the LORD will be angry with the whole congregation. But your brothers, the whole house of Israel, may mourn on account of the fire that the LORD has ignited." + }, + { + "verseNum": 7, + "text": "You shall not go outside the entrance to the Tent of Meeting, or you will die, for the LORD’s anointing oil is on you.”\n \nSo they did as Moses instructed." + }, + { + "verseNum": 8, + "text": "Then the LORD said to Aaron," + }, + { + "verseNum": 9, + "text": "“You and your sons are not to drink wine or strong drink when you enter the Tent of Meeting, or else you will die; this is a permanent statute for the generations to come." + }, + { + "verseNum": 10, + "text": "You must distinguish between the holy and the common, between the clean and the unclean," + }, + { + "verseNum": 11, + "text": "so that you may teach the Israelites all the statutes that the LORD has given them through Moses.”" + }, + { + "verseNum": 12, + "text": "And Moses said to Aaron and his remaining sons, Eleazar and Ithamar, “Take the grain offering that remains from the offerings made by fire to the LORD and eat it without leaven beside the altar, because it is most holy." + }, + { + "verseNum": 13, + "text": "You shall eat it in a holy place, because it is your share and your sons’ share of the offerings made by fire to the LORD; for this is what I have been commanded." + }, + { + "verseNum": 14, + "text": "And you and your sons and daughters may eat the breast of the wave offering and the thigh of the contribution in a ceremonially clean place, because these portions have been assigned to you and your children from the peace offerings of the sons of Israel." + }, + { + "verseNum": 15, + "text": "They are to bring the thigh of the contribution and the breast of the wave offering, together with the fat portions of the offerings made by fire, to wave as a wave offering before the LORD. It will belong permanently to you and your children, as the LORD has commanded.”" + }, + { + "verseNum": 16, + "text": "Later, Moses searched carefully for the goat of the sin offering, and behold, it had been burned up. He was angry with Eleazar and Ithamar, Aaron’s remaining sons, and asked," + }, + { + "verseNum": 17, + "text": "“Why didn’t you eat the sin offering in the holy place? For it is most holy; it was given to you to take away the guilt of the congregation by making atonement for them before the LORD." + }, + { + "verseNum": 18, + "text": "Since its blood was not brought inside the holy place, you should have eaten it in the sanctuary area, as I commanded.”" + }, + { + "verseNum": 19, + "text": "But Aaron replied to Moses, “Behold, this very day they presented their sin offering and their burnt offering before the LORD. Since these things have happened to me, if I had eaten the sin offering today, would it have been acceptable in the sight of the LORD?”" + }, + { + "verseNum": 20, + "text": "And when Moses heard this explanation, he was satisfied." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-11.json b/data/en_bible/BSB/LEV/chapter-11.json new file mode 100644 index 0000000..74ce57b --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-11.json @@ -0,0 +1,193 @@ +{ + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "The LORD spoke again to Moses and Aaron, telling them," + }, + { + "verseNum": 2, + "text": "“Say to the Israelites, ‘Of all the beasts of the earth, these ones you may eat:" + }, + { + "verseNum": 3, + "text": "You may eat any animal that has a split hoof completely divided and that chews the cud." + }, + { + "verseNum": 4, + "text": "But of those that only chew the cud or only have a divided hoof, you are not to eat the following:\n \n The camel, though it chews the cud, does not have a divided hoof; it is unclean for you." + }, + { + "verseNum": 5, + "text": "The rock badger, though it chews the cud, does not have a divided hoof; it is unclean for you." + }, + { + "verseNum": 6, + "text": "The rabbit, though it chews the cud, does not have a divided hoof; it is unclean for you." + }, + { + "verseNum": 7, + "text": "And the pig, though it has a split hoof completely divided, does not chew the cud; it is unclean for you." + }, + { + "verseNum": 8, + "text": "You must not eat their meat or touch their carcasses; they are unclean for you." + }, + { + "verseNum": 9, + "text": "Of all the creatures that live in the water, whether in the seas or in the streams, you may eat anything with fins and scales." + }, + { + "verseNum": 10, + "text": "But the following among all the teeming life and creatures in the water are detestable to you: everything in the seas or streams that does not have fins and scales." + }, + { + "verseNum": 11, + "text": "They shall be an abomination to you; you must not eat their meat, and you must detest their carcasses." + }, + { + "verseNum": 12, + "text": "Everything in the water that does not have fins and scales shall be detestable to you." + }, + { + "verseNum": 13, + "text": "Additionally, you are to detest the following birds, and they must not be eaten because they are detestable:\n \n the eagle, the bearded vulture, the black vulture," + }, + { + "verseNum": 14, + "text": "the kite, any kind of falcon," + }, + { + "verseNum": 15, + "text": "any kind of raven," + }, + { + "verseNum": 16, + "text": "the ostrich, the screech owl, the gull, any kind of hawk," + }, + { + "verseNum": 17, + "text": "the little owl, the cormorant, the great owl," + }, + { + "verseNum": 18, + "text": "the white owl, the desert owl, the osprey," + }, + { + "verseNum": 19, + "text": "the stork, any kind of heron,\n \n the hoopoe, and the bat." + }, + { + "verseNum": 20, + "text": "All flying insects that walk on all fours are detestable to you." + }, + { + "verseNum": 21, + "text": "However, you may eat the following kinds of flying insects that walk on all fours: those having jointed legs above their feet for hopping on the ground." + }, + { + "verseNum": 22, + "text": "Of these you may eat any kind of locust, katydid, cricket, or grasshopper." + }, + { + "verseNum": 23, + "text": "All other flying insects that have four legs are detestable to you." + }, + { + "verseNum": 24, + "text": "These creatures will make you unclean. Whoever touches their carcasses will be unclean until evening," + }, + { + "verseNum": 25, + "text": "and whoever picks up one of their carcasses must wash his clothes, and he will be unclean until evening." + }, + { + "verseNum": 26, + "text": "Every animal with hooves not completely divided or that does not chew the cud is unclean for you. Whoever touches any of them will be unclean." + }, + { + "verseNum": 27, + "text": "All the four-footed animals that walk on their paws are unclean for you; whoever touches their carcasses will be unclean until evening," + }, + { + "verseNum": 28, + "text": "and anyone who picks up a carcass must wash his clothes, and he will be unclean until evening. They are unclean for you." + }, + { + "verseNum": 29, + "text": "The following creatures that move along the ground are unclean for you: the mole, the mouse, any kind of great lizard," + }, + { + "verseNum": 30, + "text": "the gecko, the monitor lizard, the common lizard, the skink, and the chameleon." + }, + { + "verseNum": 31, + "text": "These animals are unclean for you among all the crawling creatures. Whoever touches them when they are dead shall be unclean until evening." + }, + { + "verseNum": 32, + "text": "When one of them dies and falls on something, that article becomes unclean; any article of wood, clothing, leather, sackcloth, or any implement used for work must be rinsed with water and will remain unclean until evening; then it will be clean." + }, + { + "verseNum": 33, + "text": "If any of them falls into a clay pot, everything in it will be unclean; you must break the pot." + }, + { + "verseNum": 34, + "text": "Any food coming into contact with water from that pot will be unclean, and any drink in such a container will be unclean." + }, + { + "verseNum": 35, + "text": "Anything upon which one of their carcasses falls will be unclean. If it is an oven or cooking pot, it must be smashed; it is unclean and will remain unclean for you." + }, + { + "verseNum": 36, + "text": "Nevertheless, a spring or cistern containing water will remain clean, but one who touches a carcass in it will be unclean." + }, + { + "verseNum": 37, + "text": "If a carcass falls on any seed for sowing, the seed is clean;" + }, + { + "verseNum": 38, + "text": "but if water has been put on the seed and a carcass falls on it, it is unclean for you." + }, + { + "verseNum": 39, + "text": "If an animal that you may eat dies, anyone who touches the carcass will be unclean until evening." + }, + { + "verseNum": 40, + "text": "Whoever eats from the carcass must wash his clothes and will be unclean until evening, and anyone who picks up the carcass must wash his clothes and will be unclean until evening." + }, + { + "verseNum": 41, + "text": "Every creature that moves along the ground is detestable; it must not be eaten." + }, + { + "verseNum": 42, + "text": "Do not eat any creature that moves along the ground, whether it crawls on its belly or walks on four or more feet; for such creatures are detestable." + }, + { + "verseNum": 43, + "text": "Do not defile yourselves by any crawling creature; do not become unclean or defiled by them." + }, + { + "verseNum": 44, + "text": "For I am the LORD your God; consecrate yourselves, therefore, and be holy, because I am holy. You must not defile yourselves by any creature that crawls along the ground." + }, + { + "verseNum": 45, + "text": "For I am the LORD, who brought you up out of the land of Egypt so that I would be your God; therefore be holy, because I am holy." + }, + { + "verseNum": 46, + "text": "This is the law regarding animals, birds, all living creatures that move in the water, and all creatures that crawl along the ground." + }, + { + "verseNum": 47, + "text": "You must distinguish between the unclean and the clean, between animals that may be eaten and those that may not.’”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-12.json b/data/en_bible/BSB/LEV/chapter-12.json new file mode 100644 index 0000000..2fcbd88 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-12.json @@ -0,0 +1,37 @@ +{ + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Say to the Israelites, ‘A woman who becomes pregnant and gives birth to a son will be unclean for seven days, as she is during the days of her menstruation." + }, + { + "verseNum": 3, + "text": "And on the eighth day the flesh of the boy’s foreskin is to be circumcised." + }, + { + "verseNum": 4, + "text": "The woman shall continue in purification from her bleeding for thirty-three days. She must not touch anything sacred or go into the sanctuary until the days of her purification are complete." + }, + { + "verseNum": 5, + "text": "If, however, she gives birth to a daughter, the woman will be unclean for two weeks as she is during her menstruation. Then she must continue in purification from her bleeding for sixty-six days." + }, + { + "verseNum": 6, + "text": "When the days of her purification are complete, whether for a son or for a daughter, she is to bring to the priest at the entrance to the Tent of Meeting a year-old lamb for a burnt offering and a young pigeon or a turtledove for a sin offering." + }, + { + "verseNum": 7, + "text": "And the priest will present them before the LORD and make atonement for her; and she shall be ceremonially cleansed from her flow of blood. This is the law for a woman giving birth, whether to a male or to a female." + }, + { + "verseNum": 8, + "text": "But if she cannot afford a lamb, she shall bring two turtledoves or two young pigeons, one for a burnt offering and the other for a sin offering. Then the priest will make atonement for her, and she will be clean.’”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-13.json b/data/en_bible/BSB/LEV/chapter-13.json new file mode 100644 index 0000000..260add1 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-13.json @@ -0,0 +1,241 @@ +{ + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses and Aaron," + }, + { + "verseNum": 2, + "text": "“When someone has a swelling or rash or bright spot on his skin that could become an infectious skin disease, he must be brought to Aaron the priest or to one of his sons who is a priest." + }, + { + "verseNum": 3, + "text": "The priest is to examine the infection on his skin, and if the hair in the infection has turned white and the sore appears to be deeper than the skin, it is a skin disease. After the priest examines him, he must pronounce him unclean." + }, + { + "verseNum": 4, + "text": "If, however, the spot on his skin is white and does not appear to be deeper than the skin, and the hair in it has not turned white, the priest shall isolate the infected person for seven days." + }, + { + "verseNum": 5, + "text": "On the seventh day the priest is to reexamine him, and if he sees that the infection is unchanged and has not spread on the skin, the priest must isolate him for another seven days." + }, + { + "verseNum": 6, + "text": "The priest will examine him again on the seventh day, and if the sore has faded and has not spread on the skin, the priest shall pronounce him clean; it is a rash. The person must wash his clothes and be clean." + }, + { + "verseNum": 7, + "text": "But if the rash spreads further on his skin after he has shown himself to the priest for his cleansing, he must present himself again to the priest." + }, + { + "verseNum": 8, + "text": "The priest will reexamine him, and if the rash has spread on the skin, the priest must pronounce him unclean; he has a skin disease." + }, + { + "verseNum": 9, + "text": "When anyone develops a skin disease, he must be brought to the priest." + }, + { + "verseNum": 10, + "text": "The priest will examine him, and if there is a white swelling on the skin that has turned the hair white, and there is raw flesh in the swelling," + }, + { + "verseNum": 11, + "text": "it is a chronic skin disease and the priest must pronounce him unclean. He need not isolate him, for he is unclean." + }, + { + "verseNum": 12, + "text": "But if the skin disease breaks out all over his skin so that it covers all the skin of the infected person from head to foot, as far as the priest can see," + }, + { + "verseNum": 13, + "text": "the priest shall examine him, and if the disease has covered his entire body, he is to pronounce the infected person clean. Since it has all turned white, he is clean." + }, + { + "verseNum": 14, + "text": "But whenever raw flesh appears on someone, he will be unclean." + }, + { + "verseNum": 15, + "text": "When the priest sees the raw flesh, he must pronounce him unclean. The raw flesh is unclean; it is a skin disease." + }, + { + "verseNum": 16, + "text": "But if the raw flesh changes and turns white, he must go to the priest." + }, + { + "verseNum": 17, + "text": "The priest will reexamine him, and if the infection has turned white, the priest is to pronounce the infected person clean; then he is clean." + }, + { + "verseNum": 18, + "text": "When a boil appears on someone’s skin and it heals," + }, + { + "verseNum": 19, + "text": "and a white swelling or a reddish-white spot develops where the boil was, he must present himself to the priest." + }, + { + "verseNum": 20, + "text": "The priest shall examine it, and if it appears to be beneath the skin and the hair in it has turned white, the priest shall pronounce him unclean; it is a diseased infection that has broken out in the boil." + }, + { + "verseNum": 21, + "text": "But when the priest examines it, if there is no white hair in it, and it is not beneath the skin and has faded, the priest shall isolate him for seven days." + }, + { + "verseNum": 22, + "text": "If it spreads any further on the skin, the priest must pronounce him unclean; it is an infection." + }, + { + "verseNum": 23, + "text": "But if the spot remains unchanged and does not spread, it is only the scar from the boil, and the priest shall pronounce him clean." + }, + { + "verseNum": 24, + "text": "When there is a burn on someone’s skin and the raw area of the burn becomes reddish-white or white," + }, + { + "verseNum": 25, + "text": "the priest must examine it. If the hair in the spot has turned white and the spot appears to be deeper than the skin, it is a disease that has broken out in the burn. The priest must pronounce him unclean; it is a diseased infection." + }, + { + "verseNum": 26, + "text": "But if the priest examines it and there is no white hair in the spot, and it is not beneath the skin but has faded, the priest shall isolate him for seven days." + }, + { + "verseNum": 27, + "text": "On the seventh day the priest is to reexamine him, and if it has spread further on the skin, the priest must pronounce him unclean; it is a diseased infection." + }, + { + "verseNum": 28, + "text": "But if the spot is unchanged and has not spread on the skin but has faded, it is a swelling from the burn, and the priest is to pronounce him clean; for it is only the scar from the burn." + }, + { + "verseNum": 29, + "text": "If a man or woman has an infection on the head or chin," + }, + { + "verseNum": 30, + "text": "the priest shall examine the infection, and if it appears to be deeper than the skin and the hair in it is yellow and thin, the priest must pronounce him unclean; it is a scaly outbreak, an infectious disease of the head or chin." + }, + { + "verseNum": 31, + "text": "But if the priest examines the scaly infection and it does not appear to be deeper than the skin, and there is no black hair in it, the priest shall isolate the infected person for seven days." + }, + { + "verseNum": 32, + "text": "On the seventh day the priest is to reexamine the infection, and if the scaly outbreak has not spread and there is no yellow hair in it, and it does not appear to be deeper than the skin," + }, + { + "verseNum": 33, + "text": "then the person must shave himself except for the scaly area. Then the priest shall isolate him for another seven days." + }, + { + "verseNum": 34, + "text": "On the seventh day the priest shall examine the scaly outbreak, and if it has not spread on the skin and does not appear to be deeper than the skin, the priest is to pronounce him clean. He must wash his clothes, and he will be clean." + }, + { + "verseNum": 35, + "text": "If, however, the scaly outbreak spreads further on the skin after his cleansing," + }, + { + "verseNum": 36, + "text": "the priest is to examine him, and if the scaly outbreak has spread on the skin, the priest need not look for yellow hair; the person is unclean." + }, + { + "verseNum": 37, + "text": "If, however, in his sight the scaly outbreak is unchanged and black hair has grown in it, then it has healed. He is clean, and the priest is to pronounce him clean." + }, + { + "verseNum": 38, + "text": "When a man or a woman has white spots on the skin," + }, + { + "verseNum": 39, + "text": "the priest shall examine them, and if the spots are dull white, it is a harmless rash that has broken out on the skin; the person is clean." + }, + { + "verseNum": 40, + "text": "Now if a man loses his hair and is bald, he is still clean." + }, + { + "verseNum": 41, + "text": "Or if his hairline recedes and he is bald on his forehead, he is still clean." + }, + { + "verseNum": 42, + "text": "But if there is a reddish-white sore on the bald head or forehead, it is an infectious disease breaking out on it." + }, + { + "verseNum": 43, + "text": "The priest is to examine him, and if the swelling of the infection on his bald head or forehead is reddish-white like a skin disease," + }, + { + "verseNum": 44, + "text": "the man is diseased; he is unclean. The priest must pronounce him unclean because of the infection on his head." + }, + { + "verseNum": 45, + "text": "A diseased person must wear torn clothes and let his hair hang loose, and he must cover his mouth and cry out, ‘Unclean, unclean!’" + }, + { + "verseNum": 46, + "text": "As long as he has the infection, he remains unclean. He must live alone in a place outside the camp." + }, + { + "verseNum": 47, + "text": "If any fabric is contaminated with mildew —any wool or linen garment," + }, + { + "verseNum": 48, + "text": "any weave or knit of linen or wool, or any article of leather—" + }, + { + "verseNum": 49, + "text": "and if the mark in the fabric, leather, weave, knit, or leather article is green or red, then it is contaminated with mildew and must be shown to the priest." + }, + { + "verseNum": 50, + "text": "And the priest is to examine the mildew and isolate the contaminated fabric for seven days." + }, + { + "verseNum": 51, + "text": "On the seventh day the priest shall reexamine it, and if the mildew has spread in the fabric, weave, knit, or leather, then regardless of how it is used, it is a harmful mildew; the article is unclean." + }, + { + "verseNum": 52, + "text": "He is to burn the fabric, weave, or knit, whether the contaminated item is wool or linen or leather. Since the mildew is harmful, the article must be burned up." + }, + { + "verseNum": 53, + "text": "But when the priest reexamines it, if the mildew has not spread in the fabric, weave, knit, or leather article," + }, + { + "verseNum": 54, + "text": "the priest is to order the contaminated article to be washed and isolated for another seven days." + }, + { + "verseNum": 55, + "text": "After it has been washed, the priest is to reexamine it, and if the mildewed article has not changed in appearance, it is unclean. Even though the mildew has not spread, you must burn it, whether the rot is on the front or back." + }, + { + "verseNum": 56, + "text": "If the priest examines it and the mildew has faded after it has been washed, he must cut the contaminated section out of the fabric, leather, weave, or knit." + }, + { + "verseNum": 57, + "text": "But if it reappears in the fabric, weave, or knit, or on any leather article, it is spreading. You must burn the contaminated article." + }, + { + "verseNum": 58, + "text": "If the mildew disappears from the fabric, weave, or knit, or any leather article after washing, then it is to be washed again, and it will be clean." + }, + { + "verseNum": 59, + "text": "This is the law concerning a mildew contamination in wool or linen fabric, weave, or knit, or any leather article, for pronouncing it clean or unclean.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-14.json b/data/en_bible/BSB/LEV/chapter-14.json new file mode 100644 index 0000000..5e6a0fe --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-14.json @@ -0,0 +1,233 @@ +{ + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“This is the law for the one afflicted with a skin disease on the day of his cleansing, when he is brought to the priest." + }, + { + "verseNum": 3, + "text": "The priest is to go outside the camp to examine him, and if the skin disease of the afflicted person has healed," + }, + { + "verseNum": 4, + "text": "the priest shall order that two live clean birds, cedar wood, scarlet yarn, and hyssop be brought for the one to be cleansed." + }, + { + "verseNum": 5, + "text": "Then the priest shall command that one of the birds be slaughtered over fresh water in a clay pot." + }, + { + "verseNum": 6, + "text": "And he is to take the live bird together with the cedar wood, scarlet yarn, and hyssop, and dip them into the blood of the bird that was slaughtered over the fresh water." + }, + { + "verseNum": 7, + "text": "Seven times he shall sprinkle the one to be cleansed of the skin disease. Then he shall pronounce him clean and release the live bird into the open field." + }, + { + "verseNum": 8, + "text": "The one being cleansed must wash his clothes, shave off all his hair, and bathe with water; then he will be ceremonially clean. Afterward, he may enter the camp, but he must remain outside his tent for seven days." + }, + { + "verseNum": 9, + "text": "On the seventh day he must shave off all his hair—his head, his beard, his eyebrows, and the rest of his hair. He must wash his clothes and bathe himself with water, and he will be clean." + }, + { + "verseNum": 10, + "text": "On the eighth day he is to bring two unblemished male lambs, an unblemished ewe lamb a year old, a grain offering of three-tenths of an ephah of fine flour mixed with olive oil, and one log of olive oil." + }, + { + "verseNum": 11, + "text": "The priest who performs the cleansing shall present the one to be cleansed, together with these offerings, before the LORD at the entrance to the Tent of Meeting." + }, + { + "verseNum": 12, + "text": "Then the priest is to take one of the male lambs and present it as a guilt offering, along with the log of olive oil; and he must wave them as a wave offering before the LORD." + }, + { + "verseNum": 13, + "text": "Then he is to slaughter the lamb in the sanctuary area where the sin offering and burnt offering are slaughtered. Like the sin offering, the guilt offering belongs to the priest; it is most holy." + }, + { + "verseNum": 14, + "text": "The priest is to take some of the blood from the guilt offering and put it on the right earlobe of the one to be cleansed, on the thumb of his right hand, and on the big toe of his right foot." + }, + { + "verseNum": 15, + "text": "Then the priest shall take some of the log of olive oil, pour it into his left palm," + }, + { + "verseNum": 16, + "text": "dip his right forefinger into the oil in his left palm, and sprinkle some of the oil with his finger seven times before the LORD." + }, + { + "verseNum": 17, + "text": "And the priest is to put some of the oil remaining in his palm on the right earlobe of the one to be cleansed, on the thumb of his right hand, and on the big toe of his right foot, on top of the blood of the guilt offering." + }, + { + "verseNum": 18, + "text": "The rest of the oil in his palm, the priest is to put on the head of the one to be cleansed, to make atonement for him before the LORD." + }, + { + "verseNum": 19, + "text": "Then the priest is to sacrifice the sin offering and make atonement for the one to be cleansed from his uncleanness. After that, the priest shall slaughter the burnt offering" + }, + { + "verseNum": 20, + "text": "and offer it on the altar, with the grain offering, to make atonement for him, and he will be clean." + }, + { + "verseNum": 21, + "text": "If, however, the person is poor and cannot afford these offerings, he is to take one male lamb as a guilt offering to be waved to make atonement for him, along with a tenth of an ephah of fine flour mixed with olive oil for a grain offering, a log of olive oil," + }, + { + "verseNum": 22, + "text": "and two turtledoves or two young pigeons, whichever he can afford, one to be a sin offering and the other a burnt offering." + }, + { + "verseNum": 23, + "text": "On the eighth day he is to bring them for his cleansing to the priest at the entrance to the Tent of Meeting before the LORD." + }, + { + "verseNum": 24, + "text": "The priest shall take the lamb for the guilt offering, along with the log of olive oil, and wave them as a wave offering before the LORD." + }, + { + "verseNum": 25, + "text": "And after he slaughters the lamb for the guilt offering, the priest is to take some of the blood of the guilt offering and put it on the right earlobe of the one to be cleansed, on the thumb of his right hand, and on the big toe of his right foot." + }, + { + "verseNum": 26, + "text": "Then the priest is to pour some of the oil into his left palm" + }, + { + "verseNum": 27, + "text": "and sprinkle with his right forefinger some of the oil in his left palm seven times before the LORD." + }, + { + "verseNum": 28, + "text": "The priest shall also put some of the oil in his palm on the right earlobe of the one to be cleansed, on the thumb of his right hand, and on the big toe of his right foot—on the same places as the blood of the guilt offering." + }, + { + "verseNum": 29, + "text": "The rest of the oil in his palm, the priest is to put on the head of the one to be cleansed, to make atonement for him before the LORD." + }, + { + "verseNum": 30, + "text": "Then he must sacrifice the turtledoves or young pigeons, whichever he can afford," + }, + { + "verseNum": 31, + "text": "one as a sin offering and the other as a burnt offering, together with the grain offering. In this way the priest will make atonement before the LORD for the one to be cleansed." + }, + { + "verseNum": 32, + "text": "This is the law for someone who has a skin disease and cannot afford the cost of his cleansing.”" + }, + { + "verseNum": 33, + "text": "Then the LORD said to Moses and Aaron," + }, + { + "verseNum": 34, + "text": "“When you enter the land of Canaan, which I am giving you as your possession, and I put a contamination of mildew into a house in that land," + }, + { + "verseNum": 35, + "text": "the owner of the house shall come and tell the priest, ‘Something like mildew has appeared in my house.’" + }, + { + "verseNum": 36, + "text": "The priest must order that the house be cleared before he enters it to examine the mildew, so that nothing in the house will become unclean. After this, the priest shall go in to inspect the house." + }, + { + "verseNum": 37, + "text": "He is to examine the house, and if the mildew on the walls consists of green or red depressions that appear to be beneath the surface of the wall," + }, + { + "verseNum": 38, + "text": "the priest shall go outside the doorway of the house and close it up for seven days." + }, + { + "verseNum": 39, + "text": "On the seventh day the priest is to return and inspect the house. If the mildew has spread on the walls," + }, + { + "verseNum": 40, + "text": "he must order that the contaminated stones be pulled out and thrown into an unclean place outside the city." + }, + { + "verseNum": 41, + "text": "And he shall have the inside of the house scraped completely and the plaster that is scraped off dumped into an unclean place outside the city." + }, + { + "verseNum": 42, + "text": "So different stones must be obtained to replace the contaminated ones, as well as additional mortar to replaster the house." + }, + { + "verseNum": 43, + "text": "If the mildew reappears in the house after the stones have been torn out and the house has been scraped and replastered," + }, + { + "verseNum": 44, + "text": "the priest must come and inspect it.\n \nIf the mildew has spread in the house, it is a destructive mildew; the house is unclean." + }, + { + "verseNum": 45, + "text": "It must be torn down with its stones, its timbers, and all its plaster, and taken outside the city to an unclean place." + }, + { + "verseNum": 46, + "text": "Anyone who enters the house during any of the days that it is closed up will be unclean until evening." + }, + { + "verseNum": 47, + "text": "And anyone who sleeps in the house or eats in it must wash his clothes." + }, + { + "verseNum": 48, + "text": "If, however, the priest comes and inspects it, and the mildew has not spread after the house has been replastered, he shall pronounce the house clean, because the mildew is gone." + }, + { + "verseNum": 49, + "text": "He is to take two birds, cedar wood, scarlet yarn, and hyssop to purify the house;" + }, + { + "verseNum": 50, + "text": "and he shall slaughter one of the birds over fresh water in a clay pot." + }, + { + "verseNum": 51, + "text": "Then he shall take the cedar wood, the hyssop, the scarlet yarn, and the live bird, dip them in the blood of the slaughtered bird and the fresh water, and sprinkle the house seven times." + }, + { + "verseNum": 52, + "text": "And he shall cleanse the house with the bird’s blood, the fresh water, the live bird, the cedar wood, the hyssop, and the scarlet yarn." + }, + { + "verseNum": 53, + "text": "Finally, he is to release the live bird into the open fields outside the city. In this way he will make atonement for the house, and it will be clean." + }, + { + "verseNum": 54, + "text": "This is the law for any infectious skin disease, for a scaly outbreak," + }, + { + "verseNum": 55, + "text": "for mildew in clothing or in a house," + }, + { + "verseNum": 56, + "text": "and for a swelling, rash, or spot," + }, + { + "verseNum": 57, + "text": "to determine when something is clean or unclean. This is the law regarding skin diseases and mildew.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-15.json b/data/en_bible/BSB/LEV/chapter-15.json new file mode 100644 index 0000000..9cd010c --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-15.json @@ -0,0 +1,137 @@ +{ + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "And the LORD said to Moses and Aaron," + }, + { + "verseNum": 2, + "text": "“Say to the Israelites, ‘When any man has a bodily discharge, the discharge is unclean." + }, + { + "verseNum": 3, + "text": "This uncleanness is from his discharge, whether his body allows the discharge to flow or blocks it. So his discharge will bring about uncleanness." + }, + { + "verseNum": 4, + "text": "Any bed on which the man with the discharge lies will be unclean, and any furniture on which he sits will be unclean." + }, + { + "verseNum": 5, + "text": "Anyone who touches his bed must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 6, + "text": "Whoever sits on furniture on which the man with the discharge was sitting must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 7, + "text": "Whoever touches the body of the man with a discharge must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 8, + "text": "If the man with the discharge spits on one who is clean, that person must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 9, + "text": "Any saddle on which the man with the discharge rides will be unclean." + }, + { + "verseNum": 10, + "text": "Whoever touches anything that was under him will be unclean until evening, and whoever carries such things must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 11, + "text": "If the man with the discharge touches anyone without first rinsing his hands with water, the one who was touched must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 12, + "text": "Any clay pot that the man with the discharge touches must be broken, and any wooden utensil must be rinsed with water." + }, + { + "verseNum": 13, + "text": "When the man has been cleansed from his discharge, he must count off seven days for his cleansing, wash his clothes, and bathe himself in fresh water, and he shall be clean." + }, + { + "verseNum": 14, + "text": "On the eighth day he is to take two turtledoves or two young pigeons, come before the LORD at the entrance to the Tent of Meeting, and give them to the priest." + }, + { + "verseNum": 15, + "text": "The priest is to sacrifice them, one as a sin offering and the other as a burnt offering. In this way the priest will make atonement for the man before the LORD because of his discharge." + }, + { + "verseNum": 16, + "text": "When a man has an emission of semen, he must bathe his whole body with water, and he will be unclean until evening." + }, + { + "verseNum": 17, + "text": "Any clothing or leather on which there is an emission of semen must be washed with water, and it will remain unclean until evening." + }, + { + "verseNum": 18, + "text": "If a man lies with a woman and there is an emission of semen, both must bathe with water, and they will remain unclean until evening." + }, + { + "verseNum": 19, + "text": "When a woman has a discharge consisting of blood from her body, she will be unclean due to her menstruation for seven days, and anyone who touches her will be unclean until evening." + }, + { + "verseNum": 20, + "text": "Anything on which she lies or sits during her menstruation will be unclean," + }, + { + "verseNum": 21, + "text": "and anyone who touches her bed must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 22, + "text": "Whoever touches any furniture on which she was sitting must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 23, + "text": "And whether it is a bed or furniture on which she was sitting, whoever touches it will be unclean until evening." + }, + { + "verseNum": 24, + "text": "If a man lies with her and her menstrual flow touches him, he will be unclean for seven days, and any bed on which he lies will become unclean." + }, + { + "verseNum": 25, + "text": "When a woman has a discharge of her blood for many days at a time other than her menstrual period, or if it continues beyond her period, she will be unclean all the days of her unclean discharge, just as she is during the days of her menstruation." + }, + { + "verseNum": 26, + "text": "Any bed on which she lies or any furniture on which she sits during the days of her discharge will be unclean, like her bed during her menstrual period." + }, + { + "verseNum": 27, + "text": "Anyone who touches these things will be unclean; he must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 28, + "text": "When a woman is cleansed of her discharge, she must count off seven days, and after that she will be ceremonially clean." + }, + { + "verseNum": 29, + "text": "On the eighth day she is to take two turtledoves or two young pigeons and bring them to the priest at the entrance to the Tent of Meeting." + }, + { + "verseNum": 30, + "text": "The priest is to sacrifice one as a sin offering and the other as a burnt offering. In this way the priest will make atonement for her before the LORD for her unclean discharge." + }, + { + "verseNum": 31, + "text": "You must keep the children of Israel separate from their uncleanness, so that they do not die by defiling My tabernacle, which is among them." + }, + { + "verseNum": 32, + "text": "This is the law of him who has a discharge, of the man who has an emission of semen whereby he is unclean," + }, + { + "verseNum": 33, + "text": "of a woman in her menstrual period, of any male or female who has a discharge, and of a man who lies with an unclean woman.’”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-16.json b/data/en_bible/BSB/LEV/chapter-16.json new file mode 100644 index 0000000..5fa432e --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-16.json @@ -0,0 +1,141 @@ +{ + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Now the LORD spoke to Moses after the death of two of Aaron’s sons when they approached the presence of the LORD." + }, + { + "verseNum": 2, + "text": "And the LORD said to Moses: “Tell your brother Aaron not to enter freely into the Most Holy Place behind the veil in front of the mercy seat on the ark, or else he will die, because I appear in the cloud above the mercy seat." + }, + { + "verseNum": 3, + "text": "This is how Aaron is to enter the Holy Place: with a young bull for a sin offering and a ram for a burnt offering." + }, + { + "verseNum": 4, + "text": "He is to wear the sacred linen tunic, with linen undergarments. He must tie a linen sash around him and put on the linen turban. These are holy garments, and he must bathe himself with water before he wears them." + }, + { + "verseNum": 5, + "text": "And he shall take from the congregation of Israel two male goats for a sin offering and one ram for a burnt offering." + }, + { + "verseNum": 6, + "text": "Aaron is to present the bull for his sin offering and make atonement for himself and his household." + }, + { + "verseNum": 7, + "text": "Then he shall take the two goats and present them before the LORD at the entrance to the Tent of Meeting." + }, + { + "verseNum": 8, + "text": "After Aaron casts lots for the two goats, one for the LORD and the other for the scapegoat," + }, + { + "verseNum": 9, + "text": "he shall present the goat chosen by lot for the LORD and sacrifice it as a sin offering." + }, + { + "verseNum": 10, + "text": "But the goat chosen by lot as the scapegoat shall be presented alive before the LORD to make atonement by sending it into the wilderness as the scapegoat." + }, + { + "verseNum": 11, + "text": "When Aaron presents the bull for his sin offering and makes atonement for himself and his household, he is to slaughter the bull for his own sin offering." + }, + { + "verseNum": 12, + "text": "Then he must take a censer full of burning coals from the altar before the LORD, and two handfuls of finely ground fragrant incense, and take them inside the veil." + }, + { + "verseNum": 13, + "text": "He is to put the incense on the fire before the LORD, and the cloud of incense will cover the mercy seat above the Testimony, so that he will not die." + }, + { + "verseNum": 14, + "text": "And he is to take some of the bull’s blood and sprinkle it with his finger on the east side of the mercy seat; then he shall sprinkle some of it with his finger seven times before the mercy seat." + }, + { + "verseNum": 15, + "text": "Aaron shall then slaughter the goat for the sin offering for the people and bring its blood behind the veil, and with its blood he must do as he did with the bull’s blood: He is to sprinkle it against the mercy seat and in front of it." + }, + { + "verseNum": 16, + "text": "So he shall make atonement for the Most Holy Place because of the impurities and rebellious acts of the Israelites in regard to all their sins. He is to do the same for the Tent of Meeting which abides among them, because it is surrounded by their impurities." + }, + { + "verseNum": 17, + "text": "No one may be in the Tent of Meeting from the time Aaron goes in to make atonement in the Most Holy Place until he leaves, after he has made atonement for himself, his household, and the whole assembly of Israel." + }, + { + "verseNum": 18, + "text": "Then he shall go out to the altar that is before the LORD and make atonement for it. He is to take some of the bull’s blood and some of the goat’s blood and put it on all the horns of the altar." + }, + { + "verseNum": 19, + "text": "He is to sprinkle some of the blood on it with his finger seven times to cleanse it and consecrate it from the uncleanness of the Israelites." + }, + { + "verseNum": 20, + "text": "When Aaron has finished purifying the Most Holy Place, the Tent of Meeting, and the altar, he is to bring forward the live goat." + }, + { + "verseNum": 21, + "text": "Then he is to lay both hands on the head of the live goat and confess over it all the iniquities and rebellious acts of the Israelites in regard to all their sins. He is to put them on the goat’s head and send it away into the wilderness by the hand of a man appointed for the task." + }, + { + "verseNum": 22, + "text": "The goat will carry on itself all their iniquities into a solitary place, and the man will release it into the wilderness." + }, + { + "verseNum": 23, + "text": "Then Aaron is to enter the Tent of Meeting, take off the linen garments he put on before entering the Most Holy Place, and leave them there." + }, + { + "verseNum": 24, + "text": "He is to bathe himself with water in a holy place and put on his own clothes. Then he must go out and sacrifice his burnt offering and the people’s burnt offering to make atonement for himself and for the people." + }, + { + "verseNum": 25, + "text": "He is also to burn the fat of the sin offering on the altar." + }, + { + "verseNum": 26, + "text": "The man who released the goat as the scapegoat must wash his clothes and bathe himself with water; afterward he may reenter the camp." + }, + { + "verseNum": 27, + "text": "The bull for the sin offering and the goat for the sin offering, whose blood was brought into the Most Holy Place to make atonement, must be taken outside the camp; and their hides, flesh, and dung must be burned up." + }, + { + "verseNum": 28, + "text": "The one who burns them must wash his clothes and bathe himself with water, and afterward he may reenter the camp." + }, + { + "verseNum": 29, + "text": "This is to be a permanent statute for you: On the tenth day of the seventh month, you shall humble yourselves and not do any work—whether the native or the foreigner who resides among you—" + }, + { + "verseNum": 30, + "text": "because on this day atonement will be made for you to cleanse you, and you will be clean from all your sins before the LORD." + }, + { + "verseNum": 31, + "text": "It is a Sabbath of complete rest for you, that you may humble yourselves; it is a permanent statute." + }, + { + "verseNum": 32, + "text": "The priest who is anointed and ordained to succeed his father as high priest shall make atonement. He will put on the sacred linen garments" + }, + { + "verseNum": 33, + "text": "and make atonement for the Most Holy Place, the Tent of Meeting, and the altar, and for the priests and all the people of the assembly." + }, + { + "verseNum": 34, + "text": "This is to be a permanent statute for you, to make atonement once a year for the Israelites because of all their sins.”\n \nAnd all this was done as the LORD had commanded Moses." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-17.json b/data/en_bible/BSB/LEV/chapter-17.json new file mode 100644 index 0000000..f213820 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-17.json @@ -0,0 +1,69 @@ +{ + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to Aaron, his sons, and all the Israelites and tell them this is what the LORD has commanded:" + }, + { + "verseNum": 3, + "text": "‘Anyone from the house of Israel who slaughters an ox, a lamb, or a goat in the camp or outside of it" + }, + { + "verseNum": 4, + "text": "instead of bringing it to the entrance to the Tent of Meeting to present it as an offering to the LORD before His tabernacle—that man shall incur bloodguilt. He has shed blood and must be cut off from among his people." + }, + { + "verseNum": 5, + "text": "For this reason the Israelites will bring to the LORD the sacrifices they have been offering in the open fields. They are to bring them to the priest at the entrance to the Tent of Meeting and offer them as sacrifices of peace to the LORD." + }, + { + "verseNum": 6, + "text": "The priest will then sprinkle the blood on the altar of the LORD at the entrance to the Tent of Meeting and burn the fat as a pleasing aroma to the LORD." + }, + { + "verseNum": 7, + "text": "They must no longer offer their sacrifices to the goat demons to which they have prostituted themselves. This will be a permanent statute for them for the generations to come.’" + }, + { + "verseNum": 8, + "text": "Tell them that if anyone from the house of Israel or any foreigner living among them offers a burnt offering or a sacrifice" + }, + { + "verseNum": 9, + "text": "but does not bring it to the entrance to the Tent of Meeting to sacrifice it to the LORD, that man must be cut off from his people." + }, + { + "verseNum": 10, + "text": "If anyone from the house of Israel or a foreigner living among them eats any blood, I will set My face against that person and cut him off from among his people." + }, + { + "verseNum": 11, + "text": "For the life of the flesh is in the blood, and I have given it to you to make atonement for your souls upon the altar; for it is the blood that makes atonement for the soul." + }, + { + "verseNum": 12, + "text": "Therefore I say to the Israelites, ‘None of you may eat blood, nor may any foreigner living among you eat blood.’" + }, + { + "verseNum": 13, + "text": "And if any Israelite or foreigner living among them hunts down a wild animal or bird that may be eaten, he must drain its blood and cover it with dirt." + }, + { + "verseNum": 14, + "text": "For the life of all flesh is its blood. Therefore I have told the Israelites, ‘You must not eat the blood of any living thing, because the life of all flesh is its blood; whoever eats it must be cut off.’" + }, + { + "verseNum": 15, + "text": "And any person, whether native or foreigner, who eats anything found dead or mauled by wild beasts must wash his clothes and bathe with water, and he will be unclean until evening; then he will be clean." + }, + { + "verseNum": 16, + "text": "But if he does not wash his clothes and bathe himself, then he shall bear his iniquity.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-18.json b/data/en_bible/BSB/LEV/chapter-18.json new file mode 100644 index 0000000..3bd9357 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-18.json @@ -0,0 +1,125 @@ +{ + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and tell them: I am the LORD your God." + }, + { + "verseNum": 3, + "text": "You must not follow the practices of the land of Egypt, where you used to live, and you must not follow the practices of the land of Canaan, into which I am bringing you. You must not walk in their customs." + }, + { + "verseNum": 4, + "text": "You are to practice My judgments and keep My statutes by walking in them. I am the LORD your God." + }, + { + "verseNum": 5, + "text": "Keep My statutes and My judgments, for the man who does these things will live by them. I am the LORD." + }, + { + "verseNum": 6, + "text": "None of you are to approach any close relative to have sexual relations. I am the LORD." + }, + { + "verseNum": 7, + "text": "You must not expose the nakedness of your father by having sexual relations with your mother. She is your mother; you must not have sexual relations with her." + }, + { + "verseNum": 8, + "text": "You must not have sexual relations with your father’s wife; it would dishonor your father." + }, + { + "verseNum": 9, + "text": "You must not have sexual relations with your sister, either your father’s daughter or your mother’s daughter, whether she was born in the same home or elsewhere." + }, + { + "verseNum": 10, + "text": "You must not have sexual relations with your son’s daughter or your daughter’s daughter, for that would shame your family." + }, + { + "verseNum": 11, + "text": "You must not have sexual relations with the daughter of your father’s wife, born to your father; she is your sister." + }, + { + "verseNum": 12, + "text": "You must not have sexual relations with your father’s sister; she is your father’s close relative." + }, + { + "verseNum": 13, + "text": "You must not have sexual relations with your mother’s sister, for she is your mother’s close relative." + }, + { + "verseNum": 14, + "text": "You must not dishonor your father’s brother by approaching his wife to have sexual relations with her; she is your aunt." + }, + { + "verseNum": 15, + "text": "You must not have sexual relations with your daughter-in-law. She is your son’s wife; you are not to have sexual relations with her." + }, + { + "verseNum": 16, + "text": "You must not have sexual relations with your brother’s wife; that would shame your brother." + }, + { + "verseNum": 17, + "text": "You must not have sexual relations with both a woman and her daughter. You are not to marry her son’s daughter or her daughter’s daughter and have sexual relations with her. They are close relatives; it is depraved." + }, + { + "verseNum": 18, + "text": "You must not take your wife’s sister as a rival wife and have sexual relations with her while your wife is still alive." + }, + { + "verseNum": 19, + "text": "You must not approach a woman to have sexual relations with her during her menstrual period." + }, + { + "verseNum": 20, + "text": "You must not lie carnally with your neighbor’s wife and thus defile yourself with her." + }, + { + "verseNum": 21, + "text": "You must not give any of your children to be sacrificed to Molech, for you must not profane the name of your God. I am the LORD." + }, + { + "verseNum": 22, + "text": "You must not lie with a man as with a woman; that is an abomination." + }, + { + "verseNum": 23, + "text": "You must not lie carnally with any animal, thus defiling yourself with it; a woman must not stand before an animal to mate with it; that is a perversion." + }, + { + "verseNum": 24, + "text": "Do not defile yourselves by any of these practices, for by all these things the nations I am driving out before you have defiled themselves." + }, + { + "verseNum": 25, + "text": "Even the land has become defiled, so I am punishing it for its sin, and the land will vomit out its inhabitants." + }, + { + "verseNum": 26, + "text": "But you are to keep My statutes and ordinances, and you must not commit any of these abominations—neither your native-born nor the foreigner who lives among you." + }, + { + "verseNum": 27, + "text": "For the men who were in the land before you committed all these abominations, and the land has become defiled." + }, + { + "verseNum": 28, + "text": "So if you defile the land, it will vomit you out as it spewed out the nations before you." + }, + { + "verseNum": 29, + "text": "Therefore anyone who commits any of these abominations must be cut off from among his people." + }, + { + "verseNum": 30, + "text": "You must keep My charge not to practice any of the abominable customs that were practiced before you, so that you do not defile yourselves by them. I am the LORD your God.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-19.json b/data/en_bible/BSB/LEV/chapter-19.json new file mode 100644 index 0000000..7f2d4c9 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-19.json @@ -0,0 +1,153 @@ +{ + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to the whole congregation of Israel and tell them: Be holy because I, the LORD your God, am holy." + }, + { + "verseNum": 3, + "text": "Each of you must respect his mother and father, and you must keep My Sabbaths. I am the LORD your God." + }, + { + "verseNum": 4, + "text": "Do not turn to idols or make for yourselves molten gods. I am the LORD your God." + }, + { + "verseNum": 5, + "text": "When you sacrifice a peace offering to the LORD, you shall offer it for your acceptance." + }, + { + "verseNum": 6, + "text": "It shall be eaten on the day you sacrifice it, or on the next day; but what remains on the third day must be burned up." + }, + { + "verseNum": 7, + "text": "If any of it is eaten on the third day, it is tainted and will not be accepted." + }, + { + "verseNum": 8, + "text": "Whoever eats it will bear his iniquity, for he has profaned what is holy to the LORD. That person must be cut off from his people." + }, + { + "verseNum": 9, + "text": "When you reap the harvest of your land, you are not to reap to the very edges of your field or gather the gleanings of your harvest." + }, + { + "verseNum": 10, + "text": "You must not strip your vineyard bare or gather its fallen grapes. Leave them for the poor and the foreigner. I am the LORD your God." + }, + { + "verseNum": 11, + "text": "You must not steal. You must not lie or deceive one another." + }, + { + "verseNum": 12, + "text": "You must not swear falsely by My name and so profane the name of your God. I am the LORD." + }, + { + "verseNum": 13, + "text": "You must not defraud your neighbor or rob him.\n \nYou must not withhold until morning the wages due a hired hand." + }, + { + "verseNum": 14, + "text": "You must not curse the deaf or place a stumbling block before the blind, but you shall fear your God. I am the LORD." + }, + { + "verseNum": 15, + "text": "You must not pervert justice; you must not show partiality to the poor or favoritism to the rich; you are to judge your neighbor fairly." + }, + { + "verseNum": 16, + "text": "You must not go about spreading slander among your people.\n \nYou must not endanger the life of your neighbor. I am the LORD." + }, + { + "verseNum": 17, + "text": "You must not harbor hatred against your brother in your heart. Directly rebuke your neighbor, so that you will not incur guilt on account of him." + }, + { + "verseNum": 18, + "text": "Do not seek revenge or bear a grudge against any of your people, but love your neighbor as yourself. I am the LORD." + }, + { + "verseNum": 19, + "text": "You are to keep My statutes. You shall not crossbreed two different kinds of livestock; you shall not sow your fields with two kinds of seed; and you shall not wear clothing made of two kinds of material." + }, + { + "verseNum": 20, + "text": "If a man lies carnally with a slave girl promised to another man but who has not been redeemed or given her freedom, there must be due punishment. But they are not to be put to death, because she had not been freed." + }, + { + "verseNum": 21, + "text": "The man, however, must bring a ram to the entrance to the Tent of Meeting as his guilt offering to the LORD." + }, + { + "verseNum": 22, + "text": "The priest shall make atonement on his behalf before the LORD with the ram of the guilt offering for the sin he has committed, and he will be forgiven the sin he has committed." + }, + { + "verseNum": 23, + "text": "When you enter the land and plant any kind of tree for food, you shall regard the fruit as forbidden. For three years it will be forbidden to you and must not be eaten." + }, + { + "verseNum": 24, + "text": "In the fourth year all its fruit must be consecrated as a praise offering to the LORD." + }, + { + "verseNum": 25, + "text": "But in the fifth year you may eat its fruit; thus your harvest will be increased. I am the LORD your God." + }, + { + "verseNum": 26, + "text": "You must not eat anything with blood still in it.\n \nYou must not practice divination or sorcery." + }, + { + "verseNum": 27, + "text": "You must not cut off the hair at the sides of your head or clip off the edges of your beard." + }, + { + "verseNum": 28, + "text": "You must not make any cuts in your bodies for the dead or put tattoo marks on yourselves. I am the LORD." + }, + { + "verseNum": 29, + "text": "You must not defile your daughter by making her a prostitute, or the land will be prostituted and filled with depravity." + }, + { + "verseNum": 30, + "text": "You must keep My Sabbaths and have reverence for My sanctuary. I am the LORD." + }, + { + "verseNum": 31, + "text": "You must not turn to mediums or spiritists; do not seek them out, or you will be defiled by them. I am the LORD your God." + }, + { + "verseNum": 32, + "text": "You are to rise in the presence of the elderly, honor the aged, and fear your God. I am the LORD." + }, + { + "verseNum": 33, + "text": "When a foreigner resides with you in your land, you must not oppress him." + }, + { + "verseNum": 34, + "text": "You must treat the foreigner living among you as native-born and love him as yourself, for you were foreigners in the land of Egypt. I am the LORD your God." + }, + { + "verseNum": 35, + "text": "You must not use dishonest measures of length, weight, or volume." + }, + { + "verseNum": 36, + "text": "You shall maintain honest scales and weights, an honest ephah, and an honest hin. I am the LORD your God, who brought you out of the land of Egypt." + }, + { + "verseNum": 37, + "text": "You must keep all My statutes and all My ordinances and follow them. I am the LORD.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-2.json b/data/en_bible/BSB/LEV/chapter-2.json new file mode 100644 index 0000000..4159837 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-2.json @@ -0,0 +1,69 @@ +{ + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "“When anyone brings a grain offering to the LORD, his offering must consist of fine flour. He is to pour olive oil on it, put frankincense on it," + }, + { + "verseNum": 2, + "text": "and bring it to Aaron’s sons the priests. The priest shall take a handful of the flour and oil, together with all the frankincense, and burn this as a memorial portion on the altar, an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 3, + "text": "The remainder of the grain offering shall belong to Aaron and his sons; it is a most holy part of the offerings made by fire to the LORD." + }, + { + "verseNum": 4, + "text": "Now if you bring an offering of grain baked in an oven, it must consist of fine flour, either unleavened cakes mixed with oil or unleavened wafers coated with oil." + }, + { + "verseNum": 5, + "text": "If your offering is a grain offering prepared on a griddle, it must be unleavened bread made of fine flour mixed with oil." + }, + { + "verseNum": 6, + "text": "Crumble it and pour oil on it; it is a grain offering." + }, + { + "verseNum": 7, + "text": "If your offering is a grain offering cooked in a pan, it must consist of fine flour with oil." + }, + { + "verseNum": 8, + "text": "When you bring to the LORD the grain offering made in any of these ways, it is to be presented to the priest, and he shall take it to the altar." + }, + { + "verseNum": 9, + "text": "The priest is to remove the memorial portion from the grain offering and burn it on the altar as an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 10, + "text": "But the remainder of the grain offering shall belong to Aaron and his sons; it is a most holy part of the offerings made by fire to the LORD." + }, + { + "verseNum": 11, + "text": "No grain offering that you present to the LORD may be made with leaven, for you are not to burn any leaven or honey as an offering made by fire to the LORD." + }, + { + "verseNum": 12, + "text": "You may bring them to the LORD as an offering of firstfruits, but they are not to be offered on the altar as a pleasing aroma." + }, + { + "verseNum": 13, + "text": "And you shall season each of your grain offerings with salt. You must not leave the salt of the covenant of your God out of your grain offering; you are to add salt to each of your offerings." + }, + { + "verseNum": 14, + "text": "If you bring a grain offering of firstfruits to the LORD, you shall offer crushed heads of new grain roasted on the fire." + }, + { + "verseNum": 15, + "text": "And you are to put oil and frankincense on it; it is a grain offering." + }, + { + "verseNum": 16, + "text": "The priest shall then burn the memorial portion of the crushed grain and the oil, together with all its frankincense, as an offering made by fire to the LORD." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-20.json b/data/en_bible/BSB/LEV/chapter-20.json new file mode 100644 index 0000000..33019bf --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-20.json @@ -0,0 +1,113 @@ +{ + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Tell the Israelites, ‘Any Israelite or foreigner living in Israel who gives any of his children to Molech must be put to death. The people of the land are to stone him." + }, + { + "verseNum": 3, + "text": "And I will set My face against that man and cut him off from his people, because by giving his offspring to Molech, he has defiled My sanctuary and profaned My holy name." + }, + { + "verseNum": 4, + "text": "And if the people of the land ever hide their eyes and fail to put to death the man who gives one of his children to Molech," + }, + { + "verseNum": 5, + "text": "then I will set My face against that man and his family and cut off from among their people both him and all who follow him in prostituting themselves with Molech." + }, + { + "verseNum": 6, + "text": "Whoever turns to mediums or spiritists to prostitute himself with them, I will also set My face against that person and cut him off from his people." + }, + { + "verseNum": 7, + "text": "Consecrate yourselves, therefore, and be holy, because I am the LORD your God." + }, + { + "verseNum": 8, + "text": "And you shall keep My statutes and practice them. I am the LORD who sanctifies you." + }, + { + "verseNum": 9, + "text": "If anyone curses his father or mother, he must be put to death. He has cursed his father or mother; his blood shall be upon him." + }, + { + "verseNum": 10, + "text": "If a man commits adultery with another man’s wife—with the wife of his neighbor—both the adulterer and the adulteress must surely be put to death." + }, + { + "verseNum": 11, + "text": "If a man lies with his father’s wife, he has uncovered his father’s nakedness. Both must surely be put to death; their blood is upon them." + }, + { + "verseNum": 12, + "text": "If a man lies with his daughter-in-law, both must surely be put to death. They have acted perversely; their blood is upon them." + }, + { + "verseNum": 13, + "text": "If a man lies with a man as with a woman, they have both committed an abomination. They must surely be put to death; their blood is upon them." + }, + { + "verseNum": 14, + "text": "If a man marries both a woman and her mother, it is depraved. Both he and they must be burned in the fire, so that there will be no depravity among you." + }, + { + "verseNum": 15, + "text": "If a man lies carnally with an animal, he must be put to death. And you are also to kill the animal." + }, + { + "verseNum": 16, + "text": "If a woman approaches any animal to mate with it, you must kill both the woman and the animal. They must surely be put to death; their blood is upon them." + }, + { + "verseNum": 17, + "text": "If a man marries his sister, whether the daughter of his father or of his mother, and they have sexual relations, it is a disgrace. They must be cut off in the sight of their people. He has uncovered the nakedness of his sister; he shall bear his iniquity." + }, + { + "verseNum": 18, + "text": "If a man lies with a menstruating woman and has sexual relations with her, he has exposed the source of her flow, and she has uncovered the source of her blood. Both of them must be cut off from among their people." + }, + { + "verseNum": 19, + "text": "You must not have sexual relations with the sister of your mother or your father, for it is exposing one’s own kin; both shall bear their iniquity." + }, + { + "verseNum": 20, + "text": "If a man lies with his uncle’s wife, he has uncovered the nakedness of his uncle. They will bear their sin; they shall die childless." + }, + { + "verseNum": 21, + "text": "If a man marries his brother’s wife, it is an act of impurity. He has uncovered the nakedness of his brother; they shall be childless." + }, + { + "verseNum": 22, + "text": "You are therefore to keep all My statutes and ordinances, so that the land where I am bringing you to live will not vomit you out." + }, + { + "verseNum": 23, + "text": "You must not follow the statutes of the nations I am driving out before you. Because they did all these things, I abhorred them." + }, + { + "verseNum": 24, + "text": "But I have told you that you will inherit their land, since I will give it to you as an inheritance—a land flowing with milk and honey. I am the LORD your God, who has set you apart from the peoples." + }, + { + "verseNum": 25, + "text": "You are therefore to distinguish between clean and unclean animals and birds. Do not become contaminated by any animal or bird, or by anything that crawls on the ground; I have set these apart as unclean for you." + }, + { + "verseNum": 26, + "text": "You are to be holy to Me because I, the LORD, am holy, and I have set you apart from the nations to be My own." + }, + { + "verseNum": 27, + "text": "A man or a woman who is a medium or spiritist must surely be put to death. They shall be stoned; their blood is upon them.’”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-21.json b/data/en_bible/BSB/LEV/chapter-21.json new file mode 100644 index 0000000..2f67417 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-21.json @@ -0,0 +1,101 @@ +{ + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Speak to Aaron’s sons, the priests, and tell them that a priest is not to defile himself for a dead person among his people," + }, + { + "verseNum": 2, + "text": "except for his immediate family—his mother, father, son, daughter, or brother," + }, + { + "verseNum": 3, + "text": "or his unmarried sister who is near to him, since she has no husband." + }, + { + "verseNum": 4, + "text": "He is not to defile himself for those related to him by marriage, and so profane himself." + }, + { + "verseNum": 5, + "text": "Priests must not make bald spots on their heads, shave off the edges of their beards, or make cuts in their bodies." + }, + { + "verseNum": 6, + "text": "They must be holy to their God and not profane the name of their God. Because they present to the LORD the offerings made by fire, the food of their God, they must be holy." + }, + { + "verseNum": 7, + "text": "A priest must not marry a woman defiled by prostitution or divorced by her husband, for the priest is holy to his God." + }, + { + "verseNum": 8, + "text": "You are to regard him as holy, since he presents the food of your God. He shall be holy to you, because I the LORD am holy—I who set you apart." + }, + { + "verseNum": 9, + "text": "If a priest’s daughter defiles herself by prostituting herself, she profanes her father; she must be burned in the fire." + }, + { + "verseNum": 10, + "text": "The priest who is highest among his brothers, who has had the anointing oil poured on his head and has been ordained to wear the priestly garments, must not let his hair hang loose or tear his garments." + }, + { + "verseNum": 11, + "text": "He must not go near any dead body; he must not defile himself, even for his father or mother." + }, + { + "verseNum": 12, + "text": "He must not leave or desecrate the sanctuary of his God, for the consecration of the anointing oil of his God is on him. I am the LORD." + }, + { + "verseNum": 13, + "text": "The woman he marries must be a virgin." + }, + { + "verseNum": 14, + "text": "He is not to marry a widow, a divorced woman, or one defiled by prostitution. He is to marry a virgin from his own people," + }, + { + "verseNum": 15, + "text": "so that he does not defile his offspring among his people, for I am the LORD who sanctifies him.”" + }, + { + "verseNum": 16, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 17, + "text": "“Say to Aaron, ‘For the generations to come, none of your descendants who has a physical defect may approach to offer the food of his God." + }, + { + "verseNum": 18, + "text": "No man who has any defect may approach—no man who is blind, lame, disfigured, or deformed;" + }, + { + "verseNum": 19, + "text": "no man who has a broken foot or hand," + }, + { + "verseNum": 20, + "text": "or who is a hunchback or dwarf, or who has an eye defect, a festering rash, scabs, or a crushed testicle." + }, + { + "verseNum": 21, + "text": "No descendant of Aaron the priest who has a defect shall approach to present the offerings made by fire to the LORD. Since he has a defect, he is not to come near to offer the food of his God." + }, + { + "verseNum": 22, + "text": "He may eat the most holy food of his God as well as the holy food," + }, + { + "verseNum": 23, + "text": "but because he has a defect, he must not go near the veil or approach the altar, so as not to desecrate My sanctuaries. For I am the LORD who sanctifies them.’”" + }, + { + "verseNum": 24, + "text": "Moses told this to Aaron and his sons and to all the Israelites." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-22.json b/data/en_bible/BSB/LEV/chapter-22.json new file mode 100644 index 0000000..1aadabe --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-22.json @@ -0,0 +1,137 @@ +{ + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Tell Aaron and his sons to treat with respect the sacred offerings that the Israelites have consecrated to Me, so that they do not profane My holy name. I am the LORD." + }, + { + "verseNum": 3, + "text": "Tell them that for the generations to come, if any of their descendants in a state of uncleanness approaches the sacred offerings that the Israelites consecrate to the LORD, that person must be cut off from My presence. I am the LORD." + }, + { + "verseNum": 4, + "text": "If a descendant of Aaron has a skin disease or a discharge, he may not eat the sacred offerings until he is clean. Whoever touches anything defiled by a corpse or by a man who has an emission of semen," + }, + { + "verseNum": 5, + "text": "or whoever touches a crawling creature or a person that makes him unclean, whatever the uncleanness may be—" + }, + { + "verseNum": 6, + "text": "the man who touches any of these will remain unclean until evening. He must not eat from the sacred offerings unless he has bathed himself with water." + }, + { + "verseNum": 7, + "text": "When the sun has set, he will become clean, and then he may eat from the sacred offerings, for they are his food." + }, + { + "verseNum": 8, + "text": "He must not eat anything found dead or torn by wild animals, which would make him unclean. I am the LORD." + }, + { + "verseNum": 9, + "text": "The priests must keep My charge, lest they bear the guilt and die because they profane it. I am the LORD who sanctifies them." + }, + { + "verseNum": 10, + "text": "No one outside a priest’s family may eat the sacred offering, nor may the guest of a priest or his hired hand eat it." + }, + { + "verseNum": 11, + "text": "But if a priest buys a slave with his own money, or if a slave is born in his household, that slave may eat his food." + }, + { + "verseNum": 12, + "text": "If the priest’s daughter is married to a man other than a priest, she is not to eat of the sacred contributions." + }, + { + "verseNum": 13, + "text": "But if a priest’s daughter with no children becomes widowed or divorced and returns to her father’s house, she may share her father’s food as in her youth. But no outsider may share it." + }, + { + "verseNum": 14, + "text": "If anyone eats a sacred offering in error, he must add a fifth to its value and give the sacred offering to the priest." + }, + { + "verseNum": 15, + "text": "The priests must not profane the sacred offerings that the Israelites present to the LORD" + }, + { + "verseNum": 16, + "text": "by allowing the people to eat the sacred offerings and thus to bear the punishment for guilt. For I am the LORD who sanctifies them.”" + }, + { + "verseNum": 17, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 18, + "text": "“Speak to Aaron and his sons and all the Israelites and tell them, ‘Any man of the house of Israel or any foreign resident who presents a gift for a burnt offering to the LORD, whether to fulfill a vow or as a freewill offering," + }, + { + "verseNum": 19, + "text": "must offer an unblemished male from the cattle, sheep, or goats in order for it to be accepted on your behalf." + }, + { + "verseNum": 20, + "text": "You must not present anything with a defect, because it will not be accepted on your behalf." + }, + { + "verseNum": 21, + "text": "When a man presents a peace offering to the LORD from the herd or flock to fulfill a vow or as a freewill offering, it must be without blemish or defect to be acceptable." + }, + { + "verseNum": 22, + "text": "You are not to present to the LORD any animal that is blind, injured, or maimed, or anything with a running sore, a festering rash, or a scab; you must not put any of these on the altar as an offering made by fire to the LORD." + }, + { + "verseNum": 23, + "text": "You may present as a freewill offering an ox or sheep that has a deformed or stunted limb, but it is not acceptable in fulfillment of a vow." + }, + { + "verseNum": 24, + "text": "You are not to present to the LORD an animal whose testicles are bruised, crushed, torn, or cut; you are not to sacrifice them in your land." + }, + { + "verseNum": 25, + "text": "Neither you nor a foreigner shall present food to your God from any such animal. They will not be accepted on your behalf, because they are deformed and flawed.’”" + }, + { + "verseNum": 26, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 27, + "text": "“When an ox, a sheep, or a goat is born, it must remain with its mother for seven days. From the eighth day on, it will be acceptable as an offering made by fire to the LORD." + }, + { + "verseNum": 28, + "text": "But you must not slaughter an ox or a sheep on the same day as its young." + }, + { + "verseNum": 29, + "text": "When you sacrifice a thank offering to the LORD, offer it so that it may be acceptable on your behalf." + }, + { + "verseNum": 30, + "text": "It must be eaten that same day. Do not leave any of it until morning. I am the LORD." + }, + { + "verseNum": 31, + "text": "You are to keep My commandments and practice them. I am the LORD." + }, + { + "verseNum": 32, + "text": "You must not profane My holy name. I must be acknowledged as holy among the Israelites. I am the LORD who sanctifies you," + }, + { + "verseNum": 33, + "text": "who brought you out of the land of Egypt to be your God. I am the LORD.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-23.json b/data/en_bible/BSB/LEV/chapter-23.json new file mode 100644 index 0000000..581e9cc --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-23.json @@ -0,0 +1,181 @@ +{ + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and say to them, ‘These are My appointed feasts, the feasts of the LORD that you are to proclaim as sacred assemblies." + }, + { + "verseNum": 3, + "text": "For six days work may be done, but the seventh day is a Sabbath of complete rest, a day of sacred assembly. You must not do any work; wherever you live, it is a Sabbath to the LORD." + }, + { + "verseNum": 4, + "text": "These are the LORD’s appointed feasts, the sacred assemblies you are to proclaim at their appointed times." + }, + { + "verseNum": 5, + "text": "The Passover to the LORD begins at twilight on the fourteenth day of the first month." + }, + { + "verseNum": 6, + "text": "On the fifteenth day of the same month begins the Feast of Unleavened Bread to the LORD. For seven days you must eat unleavened bread." + }, + { + "verseNum": 7, + "text": "On the first day you are to hold a sacred assembly; you are not to do any regular work." + }, + { + "verseNum": 8, + "text": "For seven days you are to present an offering made by fire to the LORD. On the seventh day there shall be a sacred assembly; you must not do any regular work.’”" + }, + { + "verseNum": 9, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 10, + "text": "“Speak to the Israelites and say, ‘When you enter the land that I am giving you and you reap its harvest, you are to bring to the priest a sheaf of the firstfruits of your harvest." + }, + { + "verseNum": 11, + "text": "And he shall wave the sheaf before the LORD so that it may be accepted on your behalf; the priest is to wave it on the day after the Sabbath." + }, + { + "verseNum": 12, + "text": "On the day you wave the sheaf, you shall offer a year-old lamb without blemish as a burnt offering to the LORD," + }, + { + "verseNum": 13, + "text": "along with its grain offering of two-tenths of an ephah of fine flour mixed with oil—an offering made by fire to the LORD, a pleasing aroma—and its drink offering of a quarter hin of wine." + }, + { + "verseNum": 14, + "text": "You must not eat any bread or roasted or new grain until the very day you have brought this offering to your God. This is to be a permanent statute for the generations to come, wherever you live." + }, + { + "verseNum": 15, + "text": "From the day after the Sabbath, the day you brought the sheaf of the wave offering, you are to count off seven full weeks." + }, + { + "verseNum": 16, + "text": "You shall count off fifty days until the day after the seventh Sabbath, and then present an offering of new grain to the LORD." + }, + { + "verseNum": 17, + "text": "Bring two loaves of bread from your dwellings as a wave offering, each made from two-tenths of an ephah of fine flour, baked with leaven, as the firstfruits to the LORD." + }, + { + "verseNum": 18, + "text": "Along with the bread you are to present seven unblemished male lambs a year old, one young bull, and two rams. They will be a burnt offering to the LORD, together with their grain offerings and drink offerings—an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 19, + "text": "You shall also prepare one male goat as a sin offering and two male lambs a year old as a peace offering." + }, + { + "verseNum": 20, + "text": "The priest is to wave the lambs as a wave offering before the LORD, together with the bread of the firstfruits. The bread and the two lambs shall be holy to the LORD for the priest." + }, + { + "verseNum": 21, + "text": "On that same day you are to proclaim a sacred assembly, and you must not do any regular work. This is to be a permanent statute wherever you live for the generations to come." + }, + { + "verseNum": 22, + "text": "When you reap the harvest of your land, do not reap all the way to the edges of your field or gather the gleanings of your harvest. Leave them for the poor and the foreign resident. I am the LORD your God.’”" + }, + { + "verseNum": 23, + "text": "The LORD also said to Moses," + }, + { + "verseNum": 24, + "text": "“Speak to the Israelites and say, ‘On the first day of the seventh month you are to have a day of rest, a sacred assembly announced by trumpet blasts." + }, + { + "verseNum": 25, + "text": "You must not do any regular work, but you are to present an offering made by fire to the LORD.’”" + }, + { + "verseNum": 26, + "text": "Again the LORD said to Moses," + }, + { + "verseNum": 27, + "text": "“The tenth day of this seventh month is the Day of Atonement. You shall hold a sacred assembly and humble yourselves, and present an offering made by fire to the LORD." + }, + { + "verseNum": 28, + "text": "On this day you are not to do any work, for it is the Day of Atonement, when atonement is made for you before the LORD your God." + }, + { + "verseNum": 29, + "text": "If anyone does not humble himself on this day, he must be cut off from his people." + }, + { + "verseNum": 30, + "text": "I will destroy from among his people anyone who does any work on this day." + }, + { + "verseNum": 31, + "text": "You are not to do any work at all. This is a permanent statute for the generations to come, wherever you live." + }, + { + "verseNum": 32, + "text": "It will be a Sabbath of complete rest for you, and you shall humble yourselves. From the evening of the ninth day of the month until the following evening you are to keep your Sabbath.”" + }, + { + "verseNum": 33, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 34, + "text": "“Speak to the Israelites and say, ‘On the fifteenth day of the seventh month the Feast of Tabernacles to the LORD begins, and it continues for seven days." + }, + { + "verseNum": 35, + "text": "On the first day there shall be a sacred assembly. You must not do any regular work." + }, + { + "verseNum": 36, + "text": "For seven days you are to present an offering made by fire to the LORD. On the eighth day you are to hold a sacred assembly and present an offering made by fire to the LORD. It is a solemn assembly; you must not do any regular work." + }, + { + "verseNum": 37, + "text": "These are the LORD’s appointed feasts, which you are to proclaim as sacred assemblies for presenting offerings by fire to the LORD—burnt offerings and grain offerings, sacrifices and drink offerings, each on its designated day." + }, + { + "verseNum": 38, + "text": "These offerings are in addition to the offerings for the LORD’s Sabbaths, and in addition to your gifts, to all your vow offerings, and to all the freewill offerings you give to the LORD." + }, + { + "verseNum": 39, + "text": "On the fifteenth day of the seventh month, after you have gathered the produce of the land, you are to celebrate a feast to the LORD for seven days. There shall be complete rest on the first day and also on the eighth day." + }, + { + "verseNum": 40, + "text": "On the first day you are to gather the fruit of majestic trees, the branches of palm trees, and the boughs of leafy trees and of willows of the brook. And you are to rejoice before the LORD your God for seven days." + }, + { + "verseNum": 41, + "text": "You are to celebrate this as a feast to the LORD for seven days each year. This is a permanent statute for the generations to come; you are to celebrate it in the seventh month." + }, + { + "verseNum": 42, + "text": "You are to dwell in booths for seven days. All the native-born of Israel must dwell in booths," + }, + { + "verseNum": 43, + "text": "so that your descendants may know that I made the Israelites dwell in booths when I brought them out of the land of Egypt. I am the LORD your God.’”" + }, + { + "verseNum": 44, + "text": "So Moses announced to the Israelites the appointed feasts of the LORD." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-24.json b/data/en_bible/BSB/LEV/chapter-24.json new file mode 100644 index 0000000..a6ba79b --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-24.json @@ -0,0 +1,97 @@ +{ + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Command the Israelites to bring you pure oil of pressed olives for the light, to keep the lamps burning continually." + }, + { + "verseNum": 3, + "text": "Outside the veil of the Testimony in the Tent of Meeting, Aaron is to tend the lamps continually before the LORD from evening until morning. This is to be a permanent statute for the generations to come." + }, + { + "verseNum": 4, + "text": "He shall tend the lamps on the pure gold lampstand before the LORD continually." + }, + { + "verseNum": 5, + "text": "You are also to take fine flour and bake twelve loaves, using two-tenths of an ephah for each loaf," + }, + { + "verseNum": 6, + "text": "and set them in two rows—six per row—on the table of pure gold before the LORD." + }, + { + "verseNum": 7, + "text": "And you are to place pure frankincense near each row, so that it may serve as a memorial portion for the bread, an offering made by fire to the LORD." + }, + { + "verseNum": 8, + "text": "Every Sabbath day the bread is to be set out before the LORD on behalf of the Israelites as a permanent covenant." + }, + { + "verseNum": 9, + "text": "It belongs to Aaron and his sons, who are to eat it in a holy place; for it is to him a most holy part of the offerings made by fire to the LORD—his portion forever.”" + }, + { + "verseNum": 10, + "text": "Now the son of an Israelite mother and an Egyptian father went out among the Israelites, and a fight broke out in the camp between him and an Israelite." + }, + { + "verseNum": 11, + "text": "The son of the Israelite woman blasphemed the Name with a curse. So they brought him to Moses. (His mother’s name was Shelomith daughter of Dibri, of the tribe of Dan.)" + }, + { + "verseNum": 12, + "text": "They placed him in custody until the will of the LORD should be made clear to them." + }, + { + "verseNum": 13, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 14, + "text": "“Take the blasphemer outside the camp, and have all who heard him lay their hands on his head; then have the whole assembly stone him." + }, + { + "verseNum": 15, + "text": "And you are to tell the Israelites, ‘If anyone curses his God, he shall bear the consequences of his sin." + }, + { + "verseNum": 16, + "text": "Whoever blasphemes the name of the LORD must surely be put to death; the whole assembly must surely stone him, whether he is a foreign resident or native; if he blasphemes the Name, he must be put to death." + }, + { + "verseNum": 17, + "text": "And if a man takes the life of anyone else, he must surely be put to death." + }, + { + "verseNum": 18, + "text": "Whoever kills an animal must make restitution—life for life." + }, + { + "verseNum": 19, + "text": "If anyone injures his neighbor, whatever he has done must be done to him:" + }, + { + "verseNum": 20, + "text": "fracture for fracture, eye for eye, tooth for tooth. Just as he injured the other person, the same must be inflicted on him." + }, + { + "verseNum": 21, + "text": "Whoever kills an animal must make restitution, but whoever kills a man must be put to death." + }, + { + "verseNum": 22, + "text": "You are to have the same standard of law for the foreign resident and the native; for I am the LORD your God.’”" + }, + { + "verseNum": 23, + "text": "Then Moses spoke to the Israelites, and they took the blasphemer outside the camp and stoned him. So the Israelites did as the LORD had commanded Moses." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-25.json b/data/en_bible/BSB/LEV/chapter-25.json new file mode 100644 index 0000000..58e4717 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-25.json @@ -0,0 +1,225 @@ +{ + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses on Mount Sinai," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and say to them: When you enter the land that I am giving you, the land itself must observe a Sabbath to the LORD." + }, + { + "verseNum": 3, + "text": "For six years you may sow your field and prune your vineyard and gather its crops." + }, + { + "verseNum": 4, + "text": "But in the seventh year there shall be a Sabbath of complete rest for the land—a Sabbath to the LORD.\n \nYou are not to sow your field or prune your vineyard." + }, + { + "verseNum": 5, + "text": "You are not to reap the aftergrowth of your harvest or gather the grapes of your untended vines. The land must have a year of complete rest." + }, + { + "verseNum": 6, + "text": "Whatever the land yields during the Sabbath year shall be food for you—for yourself, your manservant and maidservant, the hired hand or foreigner who stays with you," + }, + { + "verseNum": 7, + "text": "and for your livestock and the wild animals in your land. All its growth may serve as food." + }, + { + "verseNum": 8, + "text": "And you shall count off seven Sabbaths of years—seven times seven years—so that the seven Sabbaths of years amount to forty-nine years." + }, + { + "verseNum": 9, + "text": "Then you are to sound the horn far and wide on the tenth day of the seventh month, the Day of Atonement. You shall sound it throughout your land." + }, + { + "verseNum": 10, + "text": "So you are to consecrate the fiftieth year and proclaim liberty in the land for all its inhabitants. It shall be your Jubilee, when each of you is to return to his property and to his clan." + }, + { + "verseNum": 11, + "text": "The fiftieth year will be a Jubilee for you; you are not to sow the land or reap its aftergrowth or harvest the untended vines." + }, + { + "verseNum": 12, + "text": "For it is a Jubilee; it shall be holy to you. You may eat only the crops taken directly from the field." + }, + { + "verseNum": 13, + "text": "In this Year of Jubilee, each of you shall return to his own property." + }, + { + "verseNum": 14, + "text": "If you make a sale to your neighbor or a purchase from him, you must not take advantage of each other." + }, + { + "verseNum": 15, + "text": "You are to buy from your neighbor according to the number of years since the last Jubilee; he is to sell to you according to the number of harvest years remaining." + }, + { + "verseNum": 16, + "text": "You shall increase the price in proportion to a greater number of years, or decrease it in proportion to a lesser number of years; for he is selling you a given number of harvests." + }, + { + "verseNum": 17, + "text": "Do not take advantage of each other, but fear your God; for I am the LORD your God." + }, + { + "verseNum": 18, + "text": "You are to keep My statutes and carefully observe My judgments, so that you may dwell securely in the land." + }, + { + "verseNum": 19, + "text": "Then the land will yield its fruit, so that you can eat your fill and dwell in safety in the land." + }, + { + "verseNum": 20, + "text": "Now you may wonder, ‘What will we eat in the seventh year if we do not sow or gather our produce?’" + }, + { + "verseNum": 21, + "text": "But I will send My blessing upon you in the sixth year, so that the land will yield a crop sufficient for three years." + }, + { + "verseNum": 22, + "text": "While you are sowing in the eighth year, you will be eating from the previous harvest, until the ninth year’s harvest comes in." + }, + { + "verseNum": 23, + "text": "The land must not be sold permanently, because it is Mine, and you are but foreigners and residents with Me." + }, + { + "verseNum": 24, + "text": "Thus for every piece of property you possess, you must provide for the redemption of the land." + }, + { + "verseNum": 25, + "text": "If your brother becomes impoverished and sells some of his property, his nearest of kin may come and redeem what his brother has sold." + }, + { + "verseNum": 26, + "text": "Or if a man has no one to redeem it for him, but he prospers and acquires enough to redeem his land," + }, + { + "verseNum": 27, + "text": "he shall calculate the years since its sale, repay the balance to the man to whom he sold it, and return to his property." + }, + { + "verseNum": 28, + "text": "But if he cannot obtain enough to repay him, what he sold will remain in possession of the buyer until the Year of Jubilee. In the Jubilee, however, it is to be released, so that he may return to his property." + }, + { + "verseNum": 29, + "text": "If a man sells a house in a walled city, he retains his right of redemption until a full year after its sale; during that year it may be redeemed." + }, + { + "verseNum": 30, + "text": "If it is not redeemed by the end of a full year, then the house in the walled city is permanently transferred to its buyer and his descendants. It is not to be released in the Jubilee." + }, + { + "verseNum": 31, + "text": "But houses in villages with no walls around them are to be considered as open fields. They may be redeemed, and they shall be released in the Jubilee." + }, + { + "verseNum": 32, + "text": "As for the cities of the Levites, the Levites always have the right to redeem their houses in the cities they possess." + }, + { + "verseNum": 33, + "text": "So whatever belongs to the Levites may be redeemed—a house sold in a city they possess—and must be released in the Jubilee, because the houses in the cities of the Levites are their possession among the Israelites." + }, + { + "verseNum": 34, + "text": "But the open pastureland around their cities may not be sold, for this is their permanent possession." + }, + { + "verseNum": 35, + "text": "Now if your countryman becomes destitute and cannot support himself among you, then you are to help him as you would a foreigner or stranger, so that he can continue to live among you." + }, + { + "verseNum": 36, + "text": "Do not take any interest or profit from him, but fear your God, that your countryman may live among you." + }, + { + "verseNum": 37, + "text": "You must not lend him your silver at interest or sell him your food for profit." + }, + { + "verseNum": 38, + "text": "I am the LORD your God, who brought you out of the land of Egypt to give you the land of Canaan and to be your God." + }, + { + "verseNum": 39, + "text": "If a countryman among you becomes destitute and sells himself to you, then you must not force him into slave labor." + }, + { + "verseNum": 40, + "text": "Let him stay with you as a hired worker or temporary resident; he is to work for you until the Year of Jubilee." + }, + { + "verseNum": 41, + "text": "Then he and his children are to be released, and he may return to his clan and to the property of his fathers." + }, + { + "verseNum": 42, + "text": "Because the Israelites are My servants, whom I brought out of the land of Egypt, they are not to be sold as slaves." + }, + { + "verseNum": 43, + "text": "You are not to rule over them harshly, but you shall fear your God." + }, + { + "verseNum": 44, + "text": "Your menservants and maidservants shall come from the nations around you, from whom you may purchase them." + }, + { + "verseNum": 45, + "text": "You may also purchase them from the foreigners residing among you or their clans living among you who are born in your land. These may become your property." + }, + { + "verseNum": 46, + "text": "You may leave them to your sons after you to inherit as property; you can make them slaves for life. But as for your brothers, the Israelites, no man may rule harshly over his brother." + }, + { + "verseNum": 47, + "text": "If a foreigner residing among you prospers, but your countryman dwelling near him becomes destitute and sells himself to the foreigner or to a member of his clan," + }, + { + "verseNum": 48, + "text": "he retains the right of redemption after he has sold himself. One of his brothers may redeem him:" + }, + { + "verseNum": 49, + "text": "either his uncle or cousin or any close relative from his clan may redeem him. Or if he prospers, he may redeem himself." + }, + { + "verseNum": 50, + "text": "He and his purchaser will then count the time from the year he sold himself up to the Year of Jubilee. The price of his sale will be determined by the number of years, based on the daily wages of a hired hand." + }, + { + "verseNum": 51, + "text": "If many years remain, he must pay for his redemption in proportion to his purchase price." + }, + { + "verseNum": 52, + "text": "If only a few years remain until the Year of Jubilee, he is to calculate and pay his redemption according to his remaining years." + }, + { + "verseNum": 53, + "text": "He shall be treated like a man hired from year to year, but a foreign owner must not rule over him harshly in your sight." + }, + { + "verseNum": 54, + "text": "Even if he is not redeemed in any of these ways, he and his children shall be released in the Year of Jubilee." + }, + { + "verseNum": 55, + "text": "For the Israelites are My servants. They are My servants, whom I brought out of the land of Egypt. I am the LORD your God." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-26.json b/data/en_bible/BSB/LEV/chapter-26.json new file mode 100644 index 0000000..17a24ee --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-26.json @@ -0,0 +1,189 @@ +{ + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "“You must not make idols for yourselves or set up a carved image or sacred pillar; you must not place a sculpted stone in your land to bow down to it. For I am the LORD your God." + }, + { + "verseNum": 2, + "text": "You must keep My Sabbaths and have reverence for My sanctuary. I am the LORD." + }, + { + "verseNum": 3, + "text": "If you follow My statutes and carefully keep My commandments," + }, + { + "verseNum": 4, + "text": "I will give you rains in their season, and the land will yield its produce, and the trees of the field will bear their fruit." + }, + { + "verseNum": 5, + "text": "Your threshing will continue until the grape harvest, and the grape harvest will continue until sowing time; you will have your fill of food to eat and will dwell securely in your land." + }, + { + "verseNum": 6, + "text": "And I will give peace to the land, and you will lie down with nothing to fear. I will rid the land of dangerous animals, and no sword will pass through your land." + }, + { + "verseNum": 7, + "text": "You will pursue your enemies, and they will fall by the sword before you." + }, + { + "verseNum": 8, + "text": "Five of you will pursue a hundred, and a hundred of you will pursue ten thousand, and your enemies will fall by the sword before you." + }, + { + "verseNum": 9, + "text": "I will turn toward you and make you fruitful and multiply you, and I will establish My covenant with you." + }, + { + "verseNum": 10, + "text": "You will still be eating the old supply of grain when you need to clear it out to make room for the new." + }, + { + "verseNum": 11, + "text": "And I will make My dwelling place among you, and My soul will not despise you." + }, + { + "verseNum": 12, + "text": "I will walk among you and be your God, and you will be My people." + }, + { + "verseNum": 13, + "text": "I am the LORD your God, who brought you out of the land of Egypt so that you would no longer be slaves to the Egyptians. I broke the bars of your yoke and enabled you to walk in uprightness." + }, + { + "verseNum": 14, + "text": "If, however, you fail to obey Me and to carry out all these commandments," + }, + { + "verseNum": 15, + "text": "and if you reject My statutes, despise My ordinances, and neglect to carry out all My commandments, and so break My covenant," + }, + { + "verseNum": 16, + "text": "then this is what I will do to you: I will bring upon you sudden terror, wasting disease, and fever that will destroy your sight and drain your life. You will sow your seed in vain, because your enemies will eat it." + }, + { + "verseNum": 17, + "text": "And I will set My face against you, so that you will be defeated by your enemies. Those who hate you will rule over you, and you will flee when no one pursues you." + }, + { + "verseNum": 18, + "text": "And if after all this you will not obey Me, I will proceed to punish you sevenfold for your sins." + }, + { + "verseNum": 19, + "text": "I will break down your stubborn pride and make your sky like iron and your land like bronze," + }, + { + "verseNum": 20, + "text": "and your strength will be spent in vain. For your land will not yield its produce, and the trees of the land will not bear their fruit." + }, + { + "verseNum": 21, + "text": "If you walk in hostility toward Me and refuse to obey Me, I will multiply your plagues seven times, according to your sins." + }, + { + "verseNum": 22, + "text": "I will send wild animals against you to rob you of your children, destroy your livestock, and reduce your numbers, until your roads lie desolate." + }, + { + "verseNum": 23, + "text": "And if in spite of these things you do not accept My discipline, but continue to walk in hostility toward Me," + }, + { + "verseNum": 24, + "text": "then I will act with hostility toward you, and I will strike you sevenfold for your sins." + }, + { + "verseNum": 25, + "text": "And I will bring a sword against you to execute the vengeance of the covenant. Though you withdraw into your cities, I will send a plague among you, and you will be delivered into the hand of the enemy." + }, + { + "verseNum": 26, + "text": "When I cut off your supply of bread, ten women will bake your bread in a single oven and dole out your bread by weight, so that you will eat but not be satisfied." + }, + { + "verseNum": 27, + "text": "But if in spite of all this you do not obey Me, but continue to walk in hostility toward Me," + }, + { + "verseNum": 28, + "text": "then I will walk in fury against you, and I, even I, will punish you sevenfold for your sins." + }, + { + "verseNum": 29, + "text": "You will eat the flesh of your own sons and daughters." + }, + { + "verseNum": 30, + "text": "I will destroy your high places, cut down your incense altars, and heap your lifeless bodies on the lifeless remains of your idols; and My soul will despise you." + }, + { + "verseNum": 31, + "text": "I will reduce your cities to rubble and lay waste your sanctuaries, and I will refuse to smell the pleasing aroma of your sacrifices." + }, + { + "verseNum": 32, + "text": "And I will lay waste the land, so that your enemies who dwell in it will be appalled." + }, + { + "verseNum": 33, + "text": "But I will scatter you among the nations and will draw out a sword after you as your land becomes desolate and your cities are laid waste." + }, + { + "verseNum": 34, + "text": "Then the land shall enjoy its Sabbaths all the days it lies desolate, while you are in the land of your enemies. At that time the land will rest and enjoy its Sabbaths." + }, + { + "verseNum": 35, + "text": "As long as it lies desolate, the land will have the rest it did not receive during the Sabbaths when you lived in it." + }, + { + "verseNum": 36, + "text": "As for those of you who survive, I will send a faintness into their hearts in the lands of their enemies, so that even the sound of a windblown leaf will put them to flight. And they will flee as one flees the sword, and fall when no one pursues them." + }, + { + "verseNum": 37, + "text": "They will stumble over one another as before the sword, though no one is behind them. So you will not be able to stand against your enemies." + }, + { + "verseNum": 38, + "text": "You will perish among the nations, and the land of your enemies will consume you." + }, + { + "verseNum": 39, + "text": "Those of you who survive in the lands of your enemies will waste away in their iniquity and will decay in the sins of their fathers." + }, + { + "verseNum": 40, + "text": "But if they will confess their iniquity and that of their fathers in the unfaithfulness that they practiced against Me, by which they have also walked in hostility toward Me—" + }, + { + "verseNum": 41, + "text": "and I acted with hostility toward them and brought them into the land of their enemies—and if their uncircumcised hearts will be humbled and they will make amends for their iniquity," + }, + { + "verseNum": 42, + "text": "then I will remember My covenant with Jacob and My covenant with Isaac and My covenant with Abraham, and I will remember the land." + }, + { + "verseNum": 43, + "text": "For the land will be abandoned by them, and it will enjoy its Sabbaths by lying desolate without them. And they will pay the penalty for their iniquity, because they rejected My ordinances and abhorred My statutes." + }, + { + "verseNum": 44, + "text": "Yet in spite of this, when they are in the land of their enemies, I will not reject or despise them so as to destroy them and break My covenant with them; for I am the LORD their God." + }, + { + "verseNum": 45, + "text": "But for their sake I will remember the covenant with their fathers, whom I brought out of the land of Egypt in the sight of the nations, that I might be their God. I am the LORD.”" + }, + { + "verseNum": 46, + "text": "These are the statutes, ordinances, and laws that the LORD established between Himself and the Israelites through Moses on Mount Sinai." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-27.json b/data/en_bible/BSB/LEV/chapter-27.json new file mode 100644 index 0000000..bd228a3 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-27.json @@ -0,0 +1,141 @@ +{ + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and say to them, ‘When someone makes a special vow to the LORD involving the value of persons," + }, + { + "verseNum": 3, + "text": "if the valuation concerns a male from twenty to sixty years of age, then your valuation shall be fifty shekels of silver, according to the sanctuary shekel." + }, + { + "verseNum": 4, + "text": "Or if it is a female, then your valuation shall be thirty shekels." + }, + { + "verseNum": 5, + "text": "And if the person is from five to twenty years of age, then your valuation for the male shall be twenty shekels, and for the female ten shekels." + }, + { + "verseNum": 6, + "text": "Now if the person is from one month to five years of age, then your valuation for the male shall be five shekels of silver, and for the female three shekels of silver." + }, + { + "verseNum": 7, + "text": "And if the person is sixty years of age or older, then your valuation shall be fifteen shekels for the male and ten shekels for the female." + }, + { + "verseNum": 8, + "text": "But if the one making the vow is too poor to pay the valuation, he is to present the person before the priest, who shall set the value according to what the one making the vow can afford." + }, + { + "verseNum": 9, + "text": "If he vows an animal that may be brought as an offering to the LORD, any such animal given to the LORD shall be holy." + }, + { + "verseNum": 10, + "text": "He must not replace it or exchange it, either good for bad or bad for good. But if he does substitute one animal for another, both that animal and its substitute will be holy." + }, + { + "verseNum": 11, + "text": "But if the vow involves any of the unclean animals that may not be brought as an offering to the LORD, the animal must be presented before the priest." + }, + { + "verseNum": 12, + "text": "The priest shall set its value, whether high or low; as the priest values it, the price will be set." + }, + { + "verseNum": 13, + "text": "If, however, the owner decides to redeem the animal, he must add a fifth to its value." + }, + { + "verseNum": 14, + "text": "Now if a man consecrates his house as holy to the LORD, then the priest shall value it either as good or bad. The price will stand just as the priest values it." + }, + { + "verseNum": 15, + "text": "But if he who consecrated his house redeems it, he must add a fifth to the assessed value, and it will belong to him." + }, + { + "verseNum": 16, + "text": "If a man consecrates to the LORD a parcel of his land, then your valuation shall be proportional to the seed required for it—fifty shekels of silver for every homer of barley seed." + }, + { + "verseNum": 17, + "text": "If he consecrates his field during the Year of Jubilee, the price will stand according to your valuation." + }, + { + "verseNum": 18, + "text": "But if he consecrates his field after the Jubilee, the priest is to calculate the price in proportion to the years left until the next Year of Jubilee, so that your valuation will be reduced." + }, + { + "verseNum": 19, + "text": "And if the one who consecrated the field decides to redeem it, he must add a fifth to the assessed value, and it shall belong to him." + }, + { + "verseNum": 20, + "text": "If, however, he does not redeem the field, or if he has sold it to another man, it may no longer be redeemed." + }, + { + "verseNum": 21, + "text": "When the field is released in the Jubilee, it will become holy, like a field devoted to the LORD; it becomes the property of the priests." + }, + { + "verseNum": 22, + "text": "Now if a man consecrates to the LORD a field he has purchased, which is not a part of his own property," + }, + { + "verseNum": 23, + "text": "then the priest shall calculate for him the value up to the Year of Jubilee, and the man shall pay the assessed value on that day as a sacred offering to the LORD." + }, + { + "verseNum": 24, + "text": "In the Year of Jubilee the field shall return to the one from whom it was bought—the original owner of the land." + }, + { + "verseNum": 25, + "text": "Every valuation will be according to the sanctuary shekel, twenty gerahs to the shekel." + }, + { + "verseNum": 26, + "text": "But no one may consecrate a firstborn of the livestock, because a firstborn belongs to the LORD. Whether it is an ox or a sheep, it is the LORD’s." + }, + { + "verseNum": 27, + "text": "But if it is among the unclean animals, then he may redeem it according to your valuation and add a fifth of its value. If it is not redeemed, then it shall be sold according to your valuation." + }, + { + "verseNum": 28, + "text": "Nothing that a man sets apart to the LORD from all he owns—whether a man, an animal, or his inherited land—can be sold or redeemed; everything so devoted is most holy to the LORD." + }, + { + "verseNum": 29, + "text": "No person set apart for destruction may be ransomed; he must surely be put to death." + }, + { + "verseNum": 30, + "text": "Thus any tithe from the land, whether from the seed of the land or the fruit of the trees, belongs to the LORD; it is holy to the LORD." + }, + { + "verseNum": 31, + "text": "If a man wishes to redeem part of his tithe, he must add a fifth to its value." + }, + { + "verseNum": 32, + "text": "Every tenth animal from the herd or flock that passes under the shepherd’s rod will be holy to the LORD." + }, + { + "verseNum": 33, + "text": "He must not inspect whether it is good or bad, and he shall not make any substitution. But if he does make a substitution, both the animal and its substitute shall become holy; they cannot be redeemed.’”" + }, + { + "verseNum": 34, + "text": "These are the commandments that the LORD gave to Moses for the Israelites on Mount Sinai." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-3.json b/data/en_bible/BSB/LEV/chapter-3.json new file mode 100644 index 0000000..037695a --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-3.json @@ -0,0 +1,73 @@ +{ + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "“If one’s offering is a peace offering and he offers an animal from the herd, whether male or female, he must present it without blemish before the LORD." + }, + { + "verseNum": 2, + "text": "He is to lay his hand on the head of the offering and slaughter it at the entrance to the Tent of Meeting. Then Aaron’s sons the priests shall sprinkle the blood on all sides of the altar." + }, + { + "verseNum": 3, + "text": "From the peace offering he is to bring an offering made by fire to the LORD: the fat that covers the entrails, all the fat that is on them," + }, + { + "verseNum": 4, + "text": "both kidneys with the fat on them near the loins, and the lobe of the liver, which he is to remove with the kidneys." + }, + { + "verseNum": 5, + "text": "Then Aaron’s sons are to burn it on the altar atop the burnt offering that is on the burning wood, as an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 6, + "text": "If, however, one’s peace offering to the LORD is from the flock, he must present a male or female without blemish." + }, + { + "verseNum": 7, + "text": "If he is presenting a lamb for his offering, he must present it before the LORD." + }, + { + "verseNum": 8, + "text": "He is to lay his hand on the head of his offering and slaughter it in front of the Tent of Meeting. Then Aaron’s sons shall sprinkle its blood on all sides of the altar." + }, + { + "verseNum": 9, + "text": "And from the peace offering he shall bring an offering made by fire to the LORD consisting of its fat: the entire fat tail cut off close to the backbone, the fat that covers the entrails, all the fat that is on them," + }, + { + "verseNum": 10, + "text": "both kidneys with the fat on them near the loins, and the lobe of the liver, which he is to remove with the kidneys." + }, + { + "verseNum": 11, + "text": "Then the priest is to burn them on the altar as food, an offering made by fire to the LORD." + }, + { + "verseNum": 12, + "text": "If one’s offering is a goat, he is to present it before the LORD." + }, + { + "verseNum": 13, + "text": "He must lay his hand on its head and slaughter it in front of the Tent of Meeting. Then Aaron’s sons shall sprinkle its blood on all sides of the altar." + }, + { + "verseNum": 14, + "text": "And from his offering he shall present an offering made by fire to the LORD: the fat that covers the entrails, all the fat that is on them," + }, + { + "verseNum": 15, + "text": "both kidneys with the fat on them near the loins, and the lobe of the liver, which he is to remove with the kidneys." + }, + { + "verseNum": 16, + "text": "Then the priest is to burn the food on the altar as an offering made by fire, a pleasing aroma. All the fat is the LORD’s." + }, + { + "verseNum": 17, + "text": "This is a permanent statute for the generations to come, wherever you live: You must not eat any fat or any blood.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-4.json b/data/en_bible/BSB/LEV/chapter-4.json new file mode 100644 index 0000000..17712a2 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-4.json @@ -0,0 +1,145 @@ +{ + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Tell the Israelites to do as follows with one who sins unintentionally against any of the LORD’s commandments and does what is forbidden by them:" + }, + { + "verseNum": 3, + "text": "If the anointed priest sins, bringing guilt on the people, he must bring to the LORD a young bull without blemish as a sin offering for the sin he has committed." + }, + { + "verseNum": 4, + "text": "He must bring the bull to the entrance to the Tent of Meeting before the LORD, lay his hand on the bull’s head, and slaughter it before the LORD." + }, + { + "verseNum": 5, + "text": "Then the anointed priest shall take some of the bull’s blood and bring it into the Tent of Meeting." + }, + { + "verseNum": 6, + "text": "The priest is to dip his finger in the blood and sprinkle some of it seven times before the LORD, in front of the veil of the sanctuary." + }, + { + "verseNum": 7, + "text": "The priest must then put some of the blood on the horns of the altar of fragrant incense that is before the LORD in the Tent of Meeting. And he is to pour out the rest of the bull’s blood at the base of the altar of burnt offering at the entrance to the Tent of Meeting." + }, + { + "verseNum": 8, + "text": "Then he shall remove all the fat from the bull of the sin offering—the fat that covers the entrails, all the fat that is on them," + }, + { + "verseNum": 9, + "text": "both kidneys with the fat on them near the loins, and the lobe of the liver, which he is to remove with the kidneys—" + }, + { + "verseNum": 10, + "text": "just as the fat is removed from the ox of the peace offering. Then the priest shall burn them on the altar of burnt offering." + }, + { + "verseNum": 11, + "text": "But the hide of the bull and all its flesh, with its head and legs and its entrails and dung—" + }, + { + "verseNum": 12, + "text": "all the rest of the bull—he must take outside the camp to a ceremonially clean place where the ashes are poured out, and there he must burn it on a wood fire on the ash heap." + }, + { + "verseNum": 13, + "text": "Now if the whole congregation of Israel strays unintentionally and the matter escapes the notice of the assembly so that they violate any of the LORD’s commandments and incur guilt by doing what is forbidden," + }, + { + "verseNum": 14, + "text": "when they become aware of the sin they have committed, then the assembly must bring a young bull as a sin offering and present it before the Tent of Meeting." + }, + { + "verseNum": 15, + "text": "The elders of the congregation are to lay their hands on the bull’s head before the LORD, and it shall be slaughtered before the LORD." + }, + { + "verseNum": 16, + "text": "Then the anointed priest is to bring some of the bull’s blood into the Tent of Meeting," + }, + { + "verseNum": 17, + "text": "and he is to dip his finger in the blood and sprinkle it seven times before the LORD in front of the veil." + }, + { + "verseNum": 18, + "text": "He is also to put some of the blood on the horns of the altar that is before the LORD in the Tent of Meeting, and he must pour out the rest of the blood at the base of the altar of burnt offering at the entrance to the Tent of Meeting." + }, + { + "verseNum": 19, + "text": "And he is to remove all the fat from it and burn it on the altar." + }, + { + "verseNum": 20, + "text": "He shall offer this bull just as he did the bull for the sin offering; in this way the priest will make atonement on their behalf, and they will be forgiven." + }, + { + "verseNum": 21, + "text": "Then he is to take the bull outside the camp and burn it, just as he burned the first bull. It is the sin offering for the assembly." + }, + { + "verseNum": 22, + "text": "When a leader sins unintentionally and does what is prohibited by any of the commandments of the LORD his God, he incurs guilt." + }, + { + "verseNum": 23, + "text": "When he becomes aware of the sin he has committed, he must bring an unblemished male goat as his offering." + }, + { + "verseNum": 24, + "text": "He is to lay his hand on the head of the goat and slaughter it at the place where the burnt offering is slaughtered before the LORD. It is a sin offering." + }, + { + "verseNum": 25, + "text": "Then the priest is to take some of the blood of the sin offering with his finger, put it on the horns of the altar of burnt offering, and pour out the rest of the blood at the base of the altar." + }, + { + "verseNum": 26, + "text": "He must burn all its fat on the altar, like the fat of the peace offerings; thus the priest will make atonement for that man’s sin, and he will be forgiven." + }, + { + "verseNum": 27, + "text": "And if one of the common people sins unintentionally and does what is prohibited by any of the LORD’s commandments, he incurs guilt." + }, + { + "verseNum": 28, + "text": "When he becomes aware of the sin he has committed, he must bring an unblemished female goat as his offering for that sin." + }, + { + "verseNum": 29, + "text": "He is to lay his hand on the head of the sin offering and slaughter it at the place of the burnt offering." + }, + { + "verseNum": 30, + "text": "Then the priest is to take some of its blood with his finger, put it on the horns of the altar of burnt offering, and pour out the rest of the blood at the base of the altar." + }, + { + "verseNum": 31, + "text": "Then he is to remove all the fat, just as it is removed from the peace offering, and the priest is to burn it on the altar as a pleasing aroma to the LORD. In this way the priest will make atonement for him, and he will be forgiven." + }, + { + "verseNum": 32, + "text": "If, however, he brings a lamb as a sin offering, he must bring an unblemished female." + }, + { + "verseNum": 33, + "text": "And he is to lay his hand on the head of the sin offering and slaughter it as a sin offering at the place where the burnt offering is slaughtered." + }, + { + "verseNum": 34, + "text": "Then the priest is to take some of the blood of the sin offering with his finger, put it on the horns of the altar of burnt offering, and pour out the rest of its blood at the base of the altar." + }, + { + "verseNum": 35, + "text": "And he shall remove all the fat, just as the fat of the lamb is removed from the peace offerings, and he shall burn it on the altar along with the offerings made by fire to the LORD. In this way the priest will make atonement for him for the sin he has committed, and he will be forgiven." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-5.json b/data/en_bible/BSB/LEV/chapter-5.json new file mode 100644 index 0000000..8d5fa3b --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-5.json @@ -0,0 +1,81 @@ +{ + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "“If someone sins by failing to testify when he hears a public charge about something he has witnessed, whether he has seen it or learned of it, he shall bear the iniquity." + }, + { + "verseNum": 2, + "text": "Or if a person touches anything unclean—whether the carcass of any unclean wild animal or livestock or crawling creature—even if he is unaware of it, he is unclean and guilty." + }, + { + "verseNum": 3, + "text": "Or if he touches human uncleanness—anything by which one becomes unclean—even if he is unaware of it, when he realizes it, he is guilty." + }, + { + "verseNum": 4, + "text": "Or if someone swears thoughtlessly with his lips to do anything good or evil—in whatever matter a man may rashly pronounce an oath—even if he is unaware of it, when he realizes it, he is guilty in the matter." + }, + { + "verseNum": 5, + "text": "If someone incurs guilt in one of these ways, he must confess the sin he has committed," + }, + { + "verseNum": 6, + "text": "and he must bring his guilt offering to the LORD for the sin he has committed: a female lamb or goat from the flock as a sin offering. And the priest will make atonement for him concerning his sin." + }, + { + "verseNum": 7, + "text": "If, however, he cannot afford a lamb, he may bring to the LORD as restitution for his sin two turtledoves or two young pigeons—one as a sin offering and the other as a burnt offering." + }, + { + "verseNum": 8, + "text": "He is to bring them to the priest, who shall first present the one for the sin offering. He is to twist its head at the front of its neck without severing it;" + }, + { + "verseNum": 9, + "text": "then he is to sprinkle some of the blood of the sin offering on the side of the altar, while the rest of the blood is drained out at the base of the altar. It is a sin offering." + }, + { + "verseNum": 10, + "text": "And the priest must prepare the second bird as a burnt offering according to the ordinance. In this way the priest will make atonement for him for the sin he has committed, and he will be forgiven." + }, + { + "verseNum": 11, + "text": "But if he cannot afford two turtledoves or two young pigeons, he may bring a tenth of an ephah of fine flour as a sin offering. He must not put olive oil or frankincense on it, because it is a sin offering." + }, + { + "verseNum": 12, + "text": "He is to bring it to the priest, who shall take a handful from it as a memorial portion and burn it on the altar atop the offerings made by fire to the LORD; it is a sin offering." + }, + { + "verseNum": 13, + "text": "In this way the priest will make atonement for him for any of these sins he has committed, and he will be forgiven. The remainder will belong to the priest, like the grain offering.”" + }, + { + "verseNum": 14, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 15, + "text": "“If someone acts unfaithfully and sins unintentionally against any of the LORD’s holy things, he must bring his guilt offering to the LORD: an unblemished ram from the flock, of proper value in silver shekels according to the sanctuary shekel; it is a guilt offering." + }, + { + "verseNum": 16, + "text": "Regarding any holy thing he has harmed, he must make restitution by adding a fifth of its value to it and giving it to the priest, who will make atonement on his behalf with the ram as a guilt offering, and he will be forgiven." + }, + { + "verseNum": 17, + "text": "If someone sins and violates any of the LORD’s commandments even though he was unaware, he is guilty and shall bear his punishment." + }, + { + "verseNum": 18, + "text": "He is to bring to the priest an unblemished ram of proper value from the flock as a guilt offering. Then the priest will make atonement on his behalf for the wrong he has committed in ignorance, and he will be forgiven." + }, + { + "verseNum": 19, + "text": "It is a guilt offering; he was certainly guilty before the LORD.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-6.json b/data/en_bible/BSB/LEV/chapter-6.json new file mode 100644 index 0000000..0e467d9 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-6.json @@ -0,0 +1,125 @@ +{ + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“If someone sins and acts unfaithfully against the LORD by deceiving his neighbor in regard to a deposit or security entrusted to him or stolen, or if he extorts his neighbor" + }, + { + "verseNum": 3, + "text": "or finds lost property and lies about it and swears falsely, or if he commits any such sin that a man might commit—" + }, + { + "verseNum": 4, + "text": "once he has sinned and becomes guilty, he must return what he has stolen or taken by extortion, or the deposit entrusted to him, or the lost property he found," + }, + { + "verseNum": 5, + "text": "or anything else about which he has sworn falsely.\n \nHe must make restitution in full, add a fifth of the value, and pay it to the owner on the day he acknowledges his guilt." + }, + { + "verseNum": 6, + "text": "Then he must bring to the priest his guilt offering to the LORD: an unblemished ram of proper value from the flock." + }, + { + "verseNum": 7, + "text": "In this way the priest will make atonement for him before the LORD, and he will be forgiven for anything he may have done to incur guilt.”" + }, + { + "verseNum": 8, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 9, + "text": "“Command Aaron and his sons that this is the law of the burnt offering: The burnt offering is to remain on the hearth of the altar all night, until morning, and the fire must be kept burning on the altar." + }, + { + "verseNum": 10, + "text": "And the priest shall put on his linen robe and linen undergarments, and he shall remove from the altar the ashes of the burnt offering that the fire has consumed and place them beside it." + }, + { + "verseNum": 11, + "text": "Then he must take off his garments, put on other clothes, and carry the ashes outside the camp to a ceremonially clean place." + }, + { + "verseNum": 12, + "text": "The fire on the altar shall be kept burning; it must not be extinguished. Every morning the priest is to add wood to the fire, arrange the burnt offering on it, and burn the fat portions of the peace offerings on it." + }, + { + "verseNum": 13, + "text": "The fire shall be kept burning on the altar continually; it must not be extinguished." + }, + { + "verseNum": 14, + "text": "Now this is the law of the grain offering: Aaron’s sons shall present it before the LORD in front of the altar." + }, + { + "verseNum": 15, + "text": "The priest is to remove a handful of fine flour and olive oil, together with all the frankincense from the grain offering, and burn the memorial portion on the altar as a pleasing aroma to the LORD." + }, + { + "verseNum": 16, + "text": "Aaron and his sons are to eat the remainder. It must be eaten without leaven in a holy place; they are to eat it in the courtyard of the Tent of Meeting." + }, + { + "verseNum": 17, + "text": "It must not be baked with leaven; I have assigned it as their portion of My offerings made by fire. It is most holy, like the sin offering and the guilt offering." + }, + { + "verseNum": 18, + "text": "Any male among the sons of Aaron may eat it. This is a permanent portion from the offerings made by fire to the LORD for the generations to come. Anything that touches them will become holy.”" + }, + { + "verseNum": 19, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 20, + "text": "“This is the offering that Aaron and his sons must present to the LORD on the day he is anointed: a tenth of an ephah of fine flour as a regular grain offering, half of it in the morning and half in the evening." + }, + { + "verseNum": 21, + "text": "It shall be prepared with oil on a griddle; you are to bring it well-kneaded and present it as a grain offering broken in pieces, a pleasing aroma to the LORD." + }, + { + "verseNum": 22, + "text": "The priest, who is one of Aaron’s sons and will be anointed to take his place, is to prepare it. As a permanent portion for the LORD, it must be burned completely." + }, + { + "verseNum": 23, + "text": "Every grain offering for a priest shall be burned completely; it is not to be eaten.”" + }, + { + "verseNum": 24, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 25, + "text": "“Tell Aaron and his sons that this is the law of the sin offering: In the place where the burnt offering is slaughtered, the sin offering shall be slaughtered before the LORD; it is most holy." + }, + { + "verseNum": 26, + "text": "The priest who offers it shall eat it; it must be eaten in a holy place, in the courtyard of the Tent of Meeting." + }, + { + "verseNum": 27, + "text": "Anything that touches its flesh will become holy, and if any of the blood is spattered on a garment, you must wash it in a holy place." + }, + { + "verseNum": 28, + "text": "The clay pot in which the sin offering is boiled must be broken; if it is boiled in a bronze pot, the pot must be scoured and rinsed with water." + }, + { + "verseNum": 29, + "text": "Any male among the priests may eat it; it is most holy." + }, + { + "verseNum": 30, + "text": "But no sin offering may be eaten if its blood has been brought into the Tent of Meeting to make atonement in the Holy Place; it must be burned." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-7.json b/data/en_bible/BSB/LEV/chapter-7.json new file mode 100644 index 0000000..dccabd8 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-7.json @@ -0,0 +1,157 @@ +{ + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "“Now this is the law of the guilt offering, which is most holy:" + }, + { + "verseNum": 2, + "text": "The guilt offering must be slaughtered in the place where the burnt offering is slaughtered, and the priest shall sprinkle its blood on all sides of the altar." + }, + { + "verseNum": 3, + "text": "And all the fat from it shall be offered: the fat tail, the fat that covers the entrails," + }, + { + "verseNum": 4, + "text": "both kidneys with the fat on them near the loins, and the lobe of the liver, which is to be removed with the kidneys." + }, + { + "verseNum": 5, + "text": "The priest shall burn them on the altar as an offering made by fire to the LORD; it is a guilt offering." + }, + { + "verseNum": 6, + "text": "Every male among the priests may eat of it. It must be eaten in a holy place; it is most holy." + }, + { + "verseNum": 7, + "text": "The guilt offering is like the sin offering; the same law applies to both. It belongs to the priest who makes atonement with it." + }, + { + "verseNum": 8, + "text": "As for the priest who presents a burnt offering for anyone, the hide of that offering belongs to him." + }, + { + "verseNum": 9, + "text": "Likewise, every grain offering that is baked in an oven or cooked in a pan or on a griddle belongs to the priest who presents it," + }, + { + "verseNum": 10, + "text": "and every grain offering, whether dry or mixed with oil, belongs equally to all the sons of Aaron." + }, + { + "verseNum": 11, + "text": "Now this is the law of the peace offering that one may present to the LORD:" + }, + { + "verseNum": 12, + "text": "If he offers it in thanksgiving, then along with the sacrifice of thanksgiving he shall offer unleavened cakes mixed with olive oil, unleavened wafers coated with oil, and well-kneaded cakes of fine flour mixed with oil." + }, + { + "verseNum": 13, + "text": "Along with his peace offering of thanksgiving he is to present an offering with cakes of leavened bread." + }, + { + "verseNum": 14, + "text": "From the cakes he must present one portion of each offering as a contribution to the LORD. It belongs to the priest who sprinkles the blood of the peace offering." + }, + { + "verseNum": 15, + "text": "The meat of the sacrifice of his peace offering of thanksgiving must be eaten on the day he offers it; none of it may be left until morning." + }, + { + "verseNum": 16, + "text": "If, however, the sacrifice he offers is a vow or a freewill offering, it shall be eaten on the day he presents his sacrifice, but the remainder may be eaten on the next day." + }, + { + "verseNum": 17, + "text": "But any meat of the sacrifice remaining until the third day must be burned up." + }, + { + "verseNum": 18, + "text": "If any of the meat from his peace offering is eaten on the third day, it will not be accepted. It will not be credited to the one who presented it; it shall be an abomination, and the one who eats of it shall bear his iniquity." + }, + { + "verseNum": 19, + "text": "Meat that touches anything unclean must not be eaten; it is to be burned up. As for any other meat, anyone who is ceremonially clean may eat it." + }, + { + "verseNum": 20, + "text": "But if anyone who is unclean eats meat from the peace offering that belongs to the LORD, that person must be cut off from his people." + }, + { + "verseNum": 21, + "text": "If one touches anything unclean, whether human uncleanness, an unclean animal, or any unclean, detestable thing, and then eats any of the meat of the peace offering that belongs to the LORD, that person must be cut off from his people.”" + }, + { + "verseNum": 22, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 23, + "text": "“Speak to the Israelites and say, ‘You are not to eat any of the fat of an ox, a sheep, or a goat." + }, + { + "verseNum": 24, + "text": "The fat of an animal found dead or mauled by wild beasts may be used for any other purpose, but you must not eat it." + }, + { + "verseNum": 25, + "text": "If anyone eats the fat of an animal from which an offering made by fire may be presented to the LORD, the one who eats it must be cut off from his people." + }, + { + "verseNum": 26, + "text": "You must not eat the blood of any bird or animal in any of your dwellings." + }, + { + "verseNum": 27, + "text": "If anyone eats blood, that person must be cut off from his people.’”" + }, + { + "verseNum": 28, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 29, + "text": "“Speak to the Israelites and say, ‘Anyone who presents a peace offering to the LORD must bring it as his sacrifice to the LORD." + }, + { + "verseNum": 30, + "text": "With his own hands he is to bring the offerings made by fire to the LORD; he shall bring the fat, together with the breast, and wave the breast as a wave offering before the LORD." + }, + { + "verseNum": 31, + "text": "The priest is to burn the fat on the altar, but the breast belongs to Aaron and his sons." + }, + { + "verseNum": 32, + "text": "And you are to give the right thigh to the priest as a contribution from your peace offering." + }, + { + "verseNum": 33, + "text": "The son of Aaron who presents the blood and fat of the peace offering shall have the right thigh as a portion." + }, + { + "verseNum": 34, + "text": "I have taken from the sons of Israel the breast of the wave offering and the thigh of the contribution of their peace offerings, and I have given them to Aaron the priest and his sons as a permanent portion from the sons of Israel.’”" + }, + { + "verseNum": 35, + "text": "This is the portion of the offerings made by fire to the LORD for Aaron and his sons since the day they were presented to serve the LORD as priests." + }, + { + "verseNum": 36, + "text": "On the day they were anointed, the LORD commanded that this be given them by the sons of Israel. It is a permanent portion for the generations to come." + }, + { + "verseNum": 37, + "text": "This is the law of the burnt offering, the grain offering, the sin offering, the guilt offering, the ordination offering, and the peace offering," + }, + { + "verseNum": 38, + "text": "which the LORD gave Moses on Mount Sinai on the day He commanded the Israelites to present their offerings to the LORD in the Wilderness of Sinai." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-8.json b/data/en_bible/BSB/LEV/chapter-8.json new file mode 100644 index 0000000..34ad366 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-8.json @@ -0,0 +1,149 @@ +{ + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Take Aaron and his sons, their garments, the anointing oil, the bull of the sin offering, the two rams, and the basket of unleavened bread," + }, + { + "verseNum": 3, + "text": "and assemble the whole congregation at the entrance to the Tent of Meeting.”" + }, + { + "verseNum": 4, + "text": "So Moses did as the LORD had commanded him, and the assembly gathered at the entrance to the Tent of Meeting." + }, + { + "verseNum": 5, + "text": "And Moses said to them, “This is what the LORD has commanded to be done.”" + }, + { + "verseNum": 6, + "text": "Then Moses presented Aaron and his sons and washed them with water." + }, + { + "verseNum": 7, + "text": "He put the tunic on Aaron, tied the sash around him, clothed him with the robe, and put the ephod on him. He tied the woven band of the ephod around him and fastened it to him." + }, + { + "verseNum": 8, + "text": "Then he put the breastpiece on him and placed the Urim and Thummim in the breastpiece." + }, + { + "verseNum": 9, + "text": "Moses also put the turban on Aaron’s head and set the gold plate, the holy diadem, on the front of the turban, as the LORD had commanded him." + }, + { + "verseNum": 10, + "text": "Next, Moses took the anointing oil and anointed the tabernacle and everything in it; and so he consecrated them." + }, + { + "verseNum": 11, + "text": "He sprinkled some of the oil on the altar seven times, anointing the altar and all its utensils, and the basin with its stand, to consecrate them." + }, + { + "verseNum": 12, + "text": "He also poured some of the anointing oil on Aaron’s head and anointed him to consecrate him." + }, + { + "verseNum": 13, + "text": "Then Moses presented Aaron’s sons, put tunics on them, wrapped sashes around them, and tied headbands on them, just as the LORD had commanded him." + }, + { + "verseNum": 14, + "text": "Moses then brought the bull near for the sin offering, and Aaron and his sons laid their hands on its head." + }, + { + "verseNum": 15, + "text": "Moses slaughtered the bull, took some of the blood, and applied it with his finger to all four horns of the altar, purifying the altar. He poured out the rest of the blood at the base of the altar and consecrated it so that atonement could be made on it." + }, + { + "verseNum": 16, + "text": "Moses also took all the fat that was on the entrails, the lobe of the liver, and both kidneys and their fat, and burned it all on the altar." + }, + { + "verseNum": 17, + "text": "But the bull with its hide, flesh, and dung he burned outside the camp, as the LORD had commanded him." + }, + { + "verseNum": 18, + "text": "Then Moses presented the ram for the burnt offering, and Aaron and his sons laid their hands on its head." + }, + { + "verseNum": 19, + "text": "Moses slaughtered the ram and sprinkled the blood on all sides of the altar." + }, + { + "verseNum": 20, + "text": "He cut the ram into pieces and burned the head, the pieces, and the fat." + }, + { + "verseNum": 21, + "text": "He washed the entrails and legs with water and burned the entire ram on the altar as a burnt offering, a pleasing aroma, an offering made by fire to the LORD, just as the LORD had commanded Moses." + }, + { + "verseNum": 22, + "text": "After that, Moses presented the other ram, the ram of ordination, and Aaron and his sons laid their hands on its head." + }, + { + "verseNum": 23, + "text": "Moses slaughtered the ram and took some of its blood and put it on Aaron’s right earlobe, on the thumb of his right hand, and on the big toe of his right foot." + }, + { + "verseNum": 24, + "text": "Moses also presented Aaron’s sons and put some of the blood on their right earlobes, on the thumbs of their right hands, and on the big toes of their right feet. Then he sprinkled the blood on all sides of the altar." + }, + { + "verseNum": 25, + "text": "And Moses took the fat—the fat tail, all the fat that was on the entrails, the lobe of the liver, and both kidneys with their fat—as well as the right thigh." + }, + { + "verseNum": 26, + "text": "And from the basket of unleavened bread that was before the LORD, he took one cake of unleavened bread, one cake of bread made with oil, and one wafer, and he placed them on the fat portions and on the right thigh." + }, + { + "verseNum": 27, + "text": "He put all these in the hands of Aaron and his sons and waved them before the LORD as a wave offering." + }, + { + "verseNum": 28, + "text": "Then Moses took these from their hands and burned them on the altar with the burnt offering. This was an ordination offering, a pleasing aroma, an offering made by fire to the LORD." + }, + { + "verseNum": 29, + "text": "He also took the breast—Moses’ portion of the ram of ordination—and waved it before the LORD as a wave offering, as the LORD had commanded him." + }, + { + "verseNum": 30, + "text": "Next, Moses took some of the anointing oil and some of the blood that was on the altar and sprinkled them on Aaron and his garments, and on his sons and their garments. So he consecrated Aaron and his garments, as well as Aaron’s sons and their garments." + }, + { + "verseNum": 31, + "text": "And Moses said to Aaron and his sons, “Boil the meat at the entrance to the Tent of Meeting and eat it there with the bread that is in the basket of ordination offerings, as I commanded, saying, ‘Aaron and his sons are to eat it.’" + }, + { + "verseNum": 32, + "text": "Then you must burn up the remainder of the meat and bread." + }, + { + "verseNum": 33, + "text": "You must not go outside the entrance to the Tent of Meeting for seven days, until the days of your ordination are complete; for it will take seven days to ordain you." + }, + { + "verseNum": 34, + "text": "What has been done today has been commanded by the LORD in order to make atonement on your behalf." + }, + { + "verseNum": 35, + "text": "You must remain at the entrance to the Tent of Meeting day and night for seven days and keep the LORD’s charge so that you will not die, for this is what I have been commanded.”" + }, + { + "verseNum": 36, + "text": "So Aaron and his sons did everything the LORD had commanded through Moses." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-9.json b/data/en_bible/BSB/LEV/chapter-9.json new file mode 100644 index 0000000..046decf --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-9.json @@ -0,0 +1,101 @@ +{ + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "On the eighth day Moses summoned Aaron and his sons and the elders of Israel." + }, + { + "verseNum": 2, + "text": "He said to Aaron, “Take for yourself a young bull for a sin offering and a ram for a burnt offering, both without blemish, and present them before the LORD." + }, + { + "verseNum": 3, + "text": "Then speak to the Israelites and say, ‘Take a male goat for a sin offering, a calf and a lamb—both a year old and without blemish—for a burnt offering," + }, + { + "verseNum": 4, + "text": "an ox and a ram for a peace offering to sacrifice before the LORD, and a grain offering mixed with oil. For today the LORD will appear to you.’”" + }, + { + "verseNum": 5, + "text": "So they took what Moses had commanded to the front of the Tent of Meeting, and the whole congregation drew near and stood before the LORD." + }, + { + "verseNum": 6, + "text": "And Moses said, “This is what the LORD has commanded you to do, so that the glory of the LORD may appear to you.”" + }, + { + "verseNum": 7, + "text": "Then Moses said to Aaron, “Approach the altar and sacrifice your sin offering and your burnt offering to make atonement for yourself and for the people. And sacrifice the people’s offering to make atonement for them, as the LORD has commanded.”" + }, + { + "verseNum": 8, + "text": "So Aaron approached the altar and slaughtered the calf as a sin offering for himself." + }, + { + "verseNum": 9, + "text": "The sons of Aaron brought the blood to him, and he dipped his finger in the blood and applied it to the horns of the altar. And he poured out the rest of the blood at the base of the altar." + }, + { + "verseNum": 10, + "text": "On the altar he burned the fat, the kidneys, and the lobe of the liver from the sin offering, as the LORD had commanded Moses." + }, + { + "verseNum": 11, + "text": "But he burned up the flesh and the hide outside the camp." + }, + { + "verseNum": 12, + "text": "Then Aaron slaughtered the burnt offering. His sons brought him the blood, and he sprinkled it on all sides of the altar." + }, + { + "verseNum": 13, + "text": "They brought him the burnt offering piece by piece, including the head, and he burned them on the altar." + }, + { + "verseNum": 14, + "text": "He washed the entrails and the legs and burned them atop the burnt offering on the altar." + }, + { + "verseNum": 15, + "text": "Aaron then presented the people’s offering. He took the male goat for the people’s sin offering, slaughtered it, and offered it for sin like the first one." + }, + { + "verseNum": 16, + "text": "He presented the burnt offering and offered it according to the ordinance." + }, + { + "verseNum": 17, + "text": "Next he presented the grain offering, took a handful of it, and burned it on the altar in addition to the morning’s burnt offering." + }, + { + "verseNum": 18, + "text": "Then he slaughtered the ox and the ram as the people’s peace offering. His sons brought him the blood, and he sprinkled it on all sides of the altar." + }, + { + "verseNum": 19, + "text": "They also brought the fat portions from the ox and the ram—the fat tail, the fat covering the entrails, the kidneys, and the lobe of the liver—" + }, + { + "verseNum": 20, + "text": "and placed these on the breasts. Aaron burned the fat portions on the altar," + }, + { + "verseNum": 21, + "text": "but he waved the breasts and the right thigh as a wave offering before the LORD, as Moses had commanded." + }, + { + "verseNum": 22, + "text": "Aaron lifted up his hands toward the people and blessed them. And having made the sin offering, the burnt offering, and the peace offering, he stepped down." + }, + { + "verseNum": 23, + "text": "Moses and Aaron then entered the Tent of Meeting. When they came out, they blessed the people, and the glory of the LORD appeared to all the people." + }, + { + "verseNum": 24, + "text": "Fire came out from the presence of the LORD and consumed the burnt offering and the fat portions on the altar. And when all the people saw it, they shouted for joy and fell facedown." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-intro.json b/data/en_bible/BSB/LEV/chapter-intro.json new file mode 100644 index 0000000..9501376 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-intro.json @@ -0,0 +1,9 @@ +{ + "chapterNum": null, + "verses": [ + { + "verseNum": 1, + "text": "Leviticus" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/NUM/chapter-1.json b/data/en_bible/BSB/NUM/chapter-1.json new file mode 100644 index 0000000..e2de1ab --- /dev/null +++ b/data/en_bible/BSB/NUM/chapter-1.json @@ -0,0 +1,221 @@ +{ + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "On the first day of the second month of the second year after the Israelites had come out of the land of Egypt, the LORD spoke to Moses in the Tent of Meeting in the Wilderness of Sinai. He said:" + }, + { + "verseNum": 2, + "text": "“Take a census of the whole congregation of Israel by their clans and families, listing every man by name, one by one." + }, + { + "verseNum": 3, + "text": "You and Aaron are to number those who are twenty years of age or older by their divisions—everyone who can serve in Israel’s army." + }, + { + "verseNum": 4, + "text": "And one man from each tribe, the head of each family, must be there with you." + }, + { + "verseNum": 5, + "text": "These are the names of the men who are to assist you:\n \n From the tribe of Reuben, Elizur son of Shedeur;" + }, + { + "verseNum": 6, + "text": "from Simeon, Shelumiel son of Zurishaddai;" + }, + { + "verseNum": 7, + "text": "from Judah, Nahshon son of Amminadab;" + }, + { + "verseNum": 8, + "text": "from Issachar, Nethanel son of Zuar;" + }, + { + "verseNum": 9, + "text": "from Zebulun, Eliab son of Helon;" + }, + { + "verseNum": 10, + "text": "from the sons of Joseph:\n \n from Ephraim, Elishama son of Ammihud,\n \n and from Manasseh, Gamaliel son of Pedahzur;" + }, + { + "verseNum": 11, + "text": "from Benjamin, Abidan son of Gideoni;" + }, + { + "verseNum": 12, + "text": "from Dan, Ahiezer son of Ammishaddai;" + }, + { + "verseNum": 13, + "text": "from Asher, Pagiel son of Ocran;" + }, + { + "verseNum": 14, + "text": "from Gad, Eliasaph son of Deuel;" + }, + { + "verseNum": 15, + "text": "and from Naphtali, Ahira son of Enan.”" + }, + { + "verseNum": 16, + "text": "These men were appointed from the congregation; they were the leaders of the tribes of their fathers, the heads of the clans of Israel." + }, + { + "verseNum": 17, + "text": "So Moses and Aaron took these men who had been designated by name," + }, + { + "verseNum": 18, + "text": "and on the first day of the second month they assembled the whole congregation and recorded their ancestry by clans and families, counting one by one the names of those twenty years of age or older," + }, + { + "verseNum": 19, + "text": "just as the LORD had commanded Moses.\n \nSo Moses numbered them in the Wilderness of Sinai:" + }, + { + "verseNum": 20, + "text": "From the sons of Reuben, the firstborn of Israel, according to the records of their clans and families, counting one by one the names of every male twenty years of age or older who could serve in the army," + }, + { + "verseNum": 21, + "text": "those registered to the tribe of Reuben numbered 46,500." + }, + { + "verseNum": 22, + "text": "From the sons of Simeon, according to the records of their clans and families, counting one by one the names of every male twenty years of age or older who could serve in the army," + }, + { + "verseNum": 23, + "text": "those registered to the tribe of Simeon numbered 59,300." + }, + { + "verseNum": 24, + "text": "From the sons of Gad, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 25, + "text": "those registered to the tribe of Gad numbered 45,650." + }, + { + "verseNum": 26, + "text": "From the sons of Judah, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 27, + "text": "those registered to the tribe of Judah numbered 74,600." + }, + { + "verseNum": 28, + "text": "From the sons of Issachar, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 29, + "text": "those registered to the tribe of Issachar numbered 54,400." + }, + { + "verseNum": 30, + "text": "From the sons of Zebulun, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 31, + "text": "those registered to the tribe of Zebulun numbered 57,400." + }, + { + "verseNum": 32, + "text": "From the sons of Joseph:\n \n From the sons of Ephraim, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 33, + "text": "those registered to the tribe of Ephraim numbered 40,500." + }, + { + "verseNum": 34, + "text": "And from the sons of Manasseh, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 35, + "text": "those registered to the tribe of Manasseh numbered 32,200." + }, + { + "verseNum": 36, + "text": "From the sons of Benjamin, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 37, + "text": "those registered to the tribe of Benjamin numbered 35,400." + }, + { + "verseNum": 38, + "text": "From the sons of Dan, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 39, + "text": "those registered to the tribe of Dan numbered 62,700." + }, + { + "verseNum": 40, + "text": "From the sons of Asher, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 41, + "text": "those registered to the tribe of Asher numbered 41,500." + }, + { + "verseNum": 42, + "text": "From the sons of Naphtali, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 43, + "text": "those registered to the tribe of Naphtali numbered 53,400." + }, + { + "verseNum": 44, + "text": "These were the men numbered by Moses and Aaron, with the assistance of the twelve leaders of Israel, each one representing his family." + }, + { + "verseNum": 45, + "text": "So all the Israelites twenty years of age or older who could serve in Israel’s army were counted according to their families." + }, + { + "verseNum": 46, + "text": "And all those counted totaled 603,550." + }, + { + "verseNum": 47, + "text": "The Levites, however, were not numbered along with them by the tribe of their fathers." + }, + { + "verseNum": 48, + "text": "For the LORD had said to Moses:" + }, + { + "verseNum": 49, + "text": "“Do not number the tribe of Levi in the census with the other Israelites." + }, + { + "verseNum": 50, + "text": "Instead, you are to appoint the Levites over the tabernacle of the Testimony, all its furnishings, and everything in it. They shall carry the tabernacle and all its articles, care for it, and camp around it." + }, + { + "verseNum": 51, + "text": "Whenever the tabernacle is to move, the Levites are to take it down, and whenever it is to be pitched, the Levites are to set it up. Any outsider who goes near it must be put to death." + }, + { + "verseNum": 52, + "text": "The Israelites are to camp by their divisions, each man in his own camp and under his own standard." + }, + { + "verseNum": 53, + "text": "But the Levites are to camp around the tabernacle of the Testimony and watch over it, so that no wrath will fall on the congregation of Israel. So the Levites are responsible for the tabernacle of the Testimony.”" + }, + { + "verseNum": 54, + "text": "Thus the Israelites did everything just as the LORD had commanded Moses." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/NUM/chapter-2.json b/data/en_bible/BSB/NUM/chapter-2.json new file mode 100644 index 0000000..f4d4214 --- /dev/null +++ b/data/en_bible/BSB/NUM/chapter-2.json @@ -0,0 +1,141 @@ +{ + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses and Aaron:" + }, + { + "verseNum": 2, + "text": "“The Israelites are to camp around the Tent of Meeting at a distance from it, each man under his standard, with the banners of his family." + }, + { + "verseNum": 3, + "text": "On the east side, toward the sunrise, the divisions of Judah are to camp under their standard:\n \n The leader of the descendants of Judah is Nahshon son of Amminadab," + }, + { + "verseNum": 4, + "text": "and his division numbers 74,600." + }, + { + "verseNum": 5, + "text": "The tribe of Issachar will camp next to it. The leader of the Issacharites is Nethanel son of Zuar," + }, + { + "verseNum": 6, + "text": "and his division numbers 54,400." + }, + { + "verseNum": 7, + "text": "Next will be the tribe of Zebulun. The leader of the Zebulunites is Eliab son of Helon," + }, + { + "verseNum": 8, + "text": "and his division numbers 57,400." + }, + { + "verseNum": 9, + "text": "The total number of men in the divisions of the camp of Judah is 186,400; they shall set out first." + }, + { + "verseNum": 10, + "text": "On the south side, the divisions of Reuben are to camp under their standard:\n \n The leader of the Reubenites is Elizur son of Shedeur," + }, + { + "verseNum": 11, + "text": "and his division numbers 46,500." + }, + { + "verseNum": 12, + "text": "The tribe of Simeon will camp next to it. The leader of the Simeonites is Shelumiel son of Zurishaddai," + }, + { + "verseNum": 13, + "text": "and his division numbers 59,300." + }, + { + "verseNum": 14, + "text": "Next will be the tribe of Gad. The leader of the Gadites is Eliasaph son of Deuel," + }, + { + "verseNum": 15, + "text": "and his division numbers 45,650." + }, + { + "verseNum": 16, + "text": "The total number of men in the divisions of the camp of Reuben is 151,450; they shall set out second." + }, + { + "verseNum": 17, + "text": "In the middle of the camps, the Tent of Meeting is to travel with the camp of the Levites. They are to set out in the order they encamped, each in his own place under his standard." + }, + { + "verseNum": 18, + "text": "On the west side, the divisions of Ephraim are to camp under their standard:\n \n The leader of the Ephraimites is Elishama son of Ammihud," + }, + { + "verseNum": 19, + "text": "and his division numbers 40,500." + }, + { + "verseNum": 20, + "text": "The tribe of Manasseh will be next to it. The leader of the Manassites is Gamaliel son of Pedahzur," + }, + { + "verseNum": 21, + "text": "and his division numbers 32,200." + }, + { + "verseNum": 22, + "text": "Next will be the tribe of Benjamin. The leader of the Benjamites is Abidan son of Gideoni," + }, + { + "verseNum": 23, + "text": "and his division numbers 35,400." + }, + { + "verseNum": 24, + "text": "The total number of men in the divisions of the camp of Ephraim is 108,100; they shall set out third." + }, + { + "verseNum": 25, + "text": "On the north side, the divisions of Dan are to camp under their standard:\n \n The leader of the Danites is Ahiezer son of Ammishaddai," + }, + { + "verseNum": 26, + "text": "and his division numbers 62,700." + }, + { + "verseNum": 27, + "text": "The tribe of Asher will camp next to it. The leader of the Asherites is Pagiel son of Ocran," + }, + { + "verseNum": 28, + "text": "and his division numbers 41,500." + }, + { + "verseNum": 29, + "text": "Next will be the tribe of Naphtali. The leader of the Naphtalites is Ahira son of Enan," + }, + { + "verseNum": 30, + "text": "and his division numbers 53,400." + }, + { + "verseNum": 31, + "text": "The total number of men in the camp of Dan is 157,600; they shall set out last, under their standards.”" + }, + { + "verseNum": 32, + "text": "These are the Israelites, numbered according to their families. The total of those counted in the camps, by their divisions, was 603,550." + }, + { + "verseNum": 33, + "text": "But the Levites were not counted among the other Israelites, as the LORD had commanded Moses." + }, + { + "verseNum": 34, + "text": "So the Israelites did everything the LORD commanded Moses; they camped under their standards in this way and set out in the same way, each man with his clan and his family." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/NUM/chapter-3.json b/data/en_bible/BSB/NUM/chapter-3.json new file mode 100644 index 0000000..bcb21c7 --- /dev/null +++ b/data/en_bible/BSB/NUM/chapter-3.json @@ -0,0 +1,209 @@ +{ + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "This is the account of Aaron and Moses at the time the LORD spoke with Moses on Mount Sinai." + }, + { + "verseNum": 2, + "text": "These are the names of the sons of Aaron: Nadab the firstborn, then Abihu, Eleazar, and Ithamar." + }, + { + "verseNum": 3, + "text": "These were Aaron’s sons, the anointed priests, who were ordained to serve as priests." + }, + { + "verseNum": 4, + "text": "Nadab and Abihu, however, died in the presence of the LORD when they offered unauthorized fire before the LORD in the Wilderness of Sinai. And since they had no sons, only Eleazar and Ithamar served as priests during the lifetime of their father Aaron." + }, + { + "verseNum": 5, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 6, + "text": "“Bring the tribe of Levi and present them to Aaron the priest to assist him." + }, + { + "verseNum": 7, + "text": "They are to perform duties for him and for the whole congregation before the Tent of Meeting, attending to the service of the tabernacle." + }, + { + "verseNum": 8, + "text": "They shall take care of all the furnishings of the Tent of Meeting and fulfill obligations for the Israelites by attending to the service of the tabernacle." + }, + { + "verseNum": 9, + "text": "Assign the Levites to Aaron and his sons; they have been given exclusively to him from among the Israelites." + }, + { + "verseNum": 10, + "text": "So you shall appoint Aaron and his sons to carry out the duties of the priesthood; but any outsider who approaches the tabernacle must be put to death.”" + }, + { + "verseNum": 11, + "text": "Again the LORD spoke to Moses, saying," + }, + { + "verseNum": 12, + "text": "“Behold, I have taken the Levites from among the children of Israel in place of every firstborn Israelite from the womb. The Levites belong to Me," + }, + { + "verseNum": 13, + "text": "for all the firstborn are Mine. On the day I struck down every firstborn in the land of Egypt, I consecrated to Myself all the firstborn in Israel, both man and beast. They are Mine; I am the LORD.”" + }, + { + "verseNum": 14, + "text": "Then the LORD spoke to Moses in the Wilderness of Sinai, saying," + }, + { + "verseNum": 15, + "text": "“Number the Levites by their families and clans. You are to count every male a month old or more.”" + }, + { + "verseNum": 16, + "text": "So Moses numbered them according to the word of the LORD, as he had been commanded." + }, + { + "verseNum": 17, + "text": "These were the sons of Levi by name: Gershon, Kohath, and Merari." + }, + { + "verseNum": 18, + "text": "These were the names of the sons of Gershon by their clans: Libni and Shimei." + }, + { + "verseNum": 19, + "text": "The sons of Kohath by their clans were Amram, Izhar, Hebron, and Uzziel." + }, + { + "verseNum": 20, + "text": "And the sons of Merari by their clans were Mahli and Mushi. These were the clans of the Levites, according to their families." + }, + { + "verseNum": 21, + "text": "From Gershon came the Libnite clan and the Shimeite clan; these were the Gershonite clans." + }, + { + "verseNum": 22, + "text": "The number of all the males a month old or more was 7,500." + }, + { + "verseNum": 23, + "text": "The Gershonite clans were to camp on the west, behind the tabernacle," + }, + { + "verseNum": 24, + "text": "and the leader of the families of the Gershonites was Eliasaph son of Lael." + }, + { + "verseNum": 25, + "text": "The duties of the Gershonites at the Tent of Meeting were the tabernacle and tent, its covering, the curtain for the entrance to the Tent of Meeting," + }, + { + "verseNum": 26, + "text": "the curtains of the courtyard, the curtain for the entrance to the courtyard that surrounds the tabernacle and altar, and the cords—all the service for these items." + }, + { + "verseNum": 27, + "text": "From Kohath came the clans of the Amramites, the Izharites, the Hebronites, and the Uzzielites; these were the clans of the Kohathites." + }, + { + "verseNum": 28, + "text": "The number of all the males a month old or more was 8,600. They were responsible for the duties of the sanctuary." + }, + { + "verseNum": 29, + "text": "The clans of the Kohathites were to camp on the south side of the tabernacle," + }, + { + "verseNum": 30, + "text": "and the leader of the families of the Kohathites was Elizaphan son of Uzziel." + }, + { + "verseNum": 31, + "text": "Their duties were the ark, the table, the lampstand, the altars, the articles of the sanctuary used with them, and the curtain—all the service for these items." + }, + { + "verseNum": 32, + "text": "The chief of the leaders of the Levites was Eleazar son of Aaron the priest; he oversaw those responsible for the duties of the sanctuary." + }, + { + "verseNum": 33, + "text": "From Merari came the clans of the Mahlites and Mushites; these were the Merarite clans." + }, + { + "verseNum": 34, + "text": "The number of all the males a month old or more was 6,200." + }, + { + "verseNum": 35, + "text": "The leader of the families of the Merarites was Zuriel son of Abihail; they were to camp on the north side of the tabernacle." + }, + { + "verseNum": 36, + "text": "The duties assigned to the sons of Merari were the tabernacle’s frames, crossbars, posts, bases, and all its equipment—all the service for these items," + }, + { + "verseNum": 37, + "text": "as well as the posts of the surrounding courtyard with their bases, tent pegs, and ropes." + }, + { + "verseNum": 38, + "text": "Moses, Aaron, and Aaron’s sons were to camp to the east of the tabernacle, toward the sunrise, before the Tent of Meeting. They were to perform the duties of the sanctuary as a service on behalf of the Israelites; but any outsider who approached the sanctuary was to be put to death." + }, + { + "verseNum": 39, + "text": "The total number of Levites that Moses and Aaron counted by their clans at the LORD’s command, including all the males a month old or more, was 22,000." + }, + { + "verseNum": 40, + "text": "Then the LORD said to Moses, “Number every firstborn male of the Israelites a month old or more, and list their names." + }, + { + "verseNum": 41, + "text": "You are to take the Levites for Me—I am the LORD—in place of all the firstborn of Israel, and the livestock of the Levites in place of all the firstborn of the livestock of the Israelites.”" + }, + { + "verseNum": 42, + "text": "So Moses numbered all the firstborn of the Israelites, as the LORD had commanded him." + }, + { + "verseNum": 43, + "text": "The total number of the firstborn males a month old or more, listed by name, was 22,273." + }, + { + "verseNum": 44, + "text": "Again the LORD spoke to Moses, saying," + }, + { + "verseNum": 45, + "text": "“Take the Levites in place of all the firstborn of Israel, and the livestock of the Levites in place of their livestock. The Levites belong to Me; I am the LORD." + }, + { + "verseNum": 46, + "text": "To redeem the 273 firstborn Israelites who outnumber the Levites," + }, + { + "verseNum": 47, + "text": "you are to collect five shekels for each one, according to the sanctuary shekel of twenty gerahs." + }, + { + "verseNum": 48, + "text": "Give the money to Aaron and his sons as the redemption price for the excess among the Israelites.”" + }, + { + "verseNum": 49, + "text": "So Moses collected the redemption money from those in excess of the number redeemed by the Levites." + }, + { + "verseNum": 50, + "text": "He collected the money from the firstborn of the Israelites: 1,365 shekels, according to the sanctuary shekel." + }, + { + "verseNum": 51, + "text": "And Moses gave the redemption money to Aaron and his sons in obedience to the word of the LORD, just as the LORD had commanded him." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/NUM/chapter-4.json b/data/en_bible/BSB/NUM/chapter-4.json new file mode 100644 index 0000000..e24630b --- /dev/null +++ b/data/en_bible/BSB/NUM/chapter-4.json @@ -0,0 +1,201 @@ +{ + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses and Aaron," + }, + { + "verseNum": 2, + "text": "“Take a census of the Kohathites among the Levites by their clans and families," + }, + { + "verseNum": 3, + "text": "men from thirty to fifty years old—everyone who is qualified to serve in the work at the Tent of Meeting." + }, + { + "verseNum": 4, + "text": "This service of the Kohathites at the Tent of Meeting regards the most holy things." + }, + { + "verseNum": 5, + "text": "Whenever the camp sets out, Aaron and his sons are to go in, take down the veil of the curtain, and cover the ark of the Testimony with it." + }, + { + "verseNum": 6, + "text": "They are to place over this a covering of fine leather, spread a solid blue cloth over it, and insert its poles." + }, + { + "verseNum": 7, + "text": "Over the table of the Presence they are to spread a blue cloth and place the plates and cups on it, along with the bowls and pitchers for the drink offering. The regular bread offering is to remain on it." + }, + { + "verseNum": 8, + "text": "And they shall spread a scarlet cloth over them, cover them with fine leather, and insert the poles." + }, + { + "verseNum": 9, + "text": "They are to take a blue cloth and cover the lampstand used for light, together with its lamps, wick trimmers, and trays, as well as the jars of oil with which to supply it." + }, + { + "verseNum": 10, + "text": "Then they shall wrap it and all its utensils inside a covering of fine leather and put it on the carrying frame." + }, + { + "verseNum": 11, + "text": "Over the gold altar they are to spread a blue cloth, cover it with fine leather, and insert the poles." + }, + { + "verseNum": 12, + "text": "They are to take all the utensils for serving in the sanctuary, place them in a blue cloth, cover them with fine leather, and put them on the carrying frame." + }, + { + "verseNum": 13, + "text": "Then they shall remove the ashes from the bronze altar, spread a purple cloth over it," + }, + { + "verseNum": 14, + "text": "and place on it all the vessels used to serve there: the firepans, meat forks, shovels, and sprinkling bowls—all the equipment of the altar. They are to spread over it a covering of fine leather and insert the poles." + }, + { + "verseNum": 15, + "text": "When Aaron and his sons have finished covering the holy objects and all their equipment, as soon as the camp is ready to move, the Kohathites shall come and do the carrying. But they must not touch the holy objects, or they will die. These are the transportation duties of the Kohathites regarding the Tent of Meeting." + }, + { + "verseNum": 16, + "text": "Eleazar son of Aaron the priest shall oversee the oil for the light, the fragrant incense, the daily grain offering, and the anointing oil. He has oversight of the entire tabernacle and everything in it, including the holy objects and their utensils.”" + }, + { + "verseNum": 17, + "text": "Then the LORD said to Moses and Aaron," + }, + { + "verseNum": 18, + "text": "“Do not allow the Kohathite tribal clans to be cut off from among the Levites." + }, + { + "verseNum": 19, + "text": "In order that they may live and not die when they come near the most holy things, do this for them: Aaron and his sons are to go in and assign each man his task and what he is to carry." + }, + { + "verseNum": 20, + "text": "But the Kohathites are not to go in and look at the holy objects, even for a moment, or they will die.”" + }, + { + "verseNum": 21, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 22, + "text": "“Take a census of the Gershonites as well, by their families and clans," + }, + { + "verseNum": 23, + "text": "from thirty to fifty years old, counting everyone who comes to serve in the work at the Tent of Meeting." + }, + { + "verseNum": 24, + "text": "This is the service of the Gershonite clans regarding work and transport:" + }, + { + "verseNum": 25, + "text": "They are to carry the curtains of the tabernacle, the Tent of Meeting with the covering of fine leather over it, the curtains for the entrance to the Tent of Meeting," + }, + { + "verseNum": 26, + "text": "the curtains of the courtyard, and the curtains for the entrance at the gate of the courtyard that surrounds the tabernacle and altar, along with their ropes and all the equipment for their service. The Gershonites will do all that needs to be done with these items." + }, + { + "verseNum": 27, + "text": "All the service of the Gershonites—all their transport duties and other work—is to be done at the direction of Aaron and his sons; you are to assign to them all that they are responsible to carry." + }, + { + "verseNum": 28, + "text": "This is the service of the Gershonite clans at the Tent of Meeting, and their duties shall be under the direction of Ithamar son of Aaron the priest." + }, + { + "verseNum": 29, + "text": "As for the sons of Merari, you are to number them by their clans and families," + }, + { + "verseNum": 30, + "text": "from thirty to fifty years old, counting everyone who comes to serve in the work of the Tent of Meeting." + }, + { + "verseNum": 31, + "text": "This is the duty for all their service at the Tent of Meeting: to carry the frames of the tabernacle with its crossbars, posts, and bases," + }, + { + "verseNum": 32, + "text": "and the posts of the surrounding courtyard with their bases, tent pegs, and ropes, including all their equipment and everything related to their use. You shall assign by name the items that they are responsible to carry." + }, + { + "verseNum": 33, + "text": "This is the service of the Merarite clans according to all their work at the Tent of Meeting, under the direction of Ithamar son of Aaron the priest.”" + }, + { + "verseNum": 34, + "text": "So Moses, Aaron, and the leaders of the congregation numbered the Kohathites by their clans and families," + }, + { + "verseNum": 35, + "text": "everyone from thirty to fifty years old who came to serve in the work at the Tent of Meeting." + }, + { + "verseNum": 36, + "text": "And those numbered by their clans totaled 2,750." + }, + { + "verseNum": 37, + "text": "These were counted from the Kohathite clans, everyone who could serve at the Tent of Meeting. Moses and Aaron numbered them according to the command of the LORD through Moses." + }, + { + "verseNum": 38, + "text": "Then the Gershonites were numbered by their clans and families," + }, + { + "verseNum": 39, + "text": "everyone from thirty to fifty years old who came to serve in the work at the Tent of Meeting." + }, + { + "verseNum": 40, + "text": "And those numbered by their clans and families totaled 2,630." + }, + { + "verseNum": 41, + "text": "These were counted from the Gershonite clans who served at the Tent of Meeting, whom Moses and Aaron counted at the LORD’s command." + }, + { + "verseNum": 42, + "text": "And the Merarites were numbered by their clans and families," + }, + { + "verseNum": 43, + "text": "everyone from thirty to fifty years old who came to serve in the work at the Tent of Meeting." + }, + { + "verseNum": 44, + "text": "The men registered by their clans numbered 3,200." + }, + { + "verseNum": 45, + "text": "These were counted from the Merarite clans, whom Moses and Aaron numbered at the LORD’s command through Moses." + }, + { + "verseNum": 46, + "text": "So Moses, Aaron, and the leaders of Israel numbered by their clans and families all the Levites" + }, + { + "verseNum": 47, + "text": "from thirty to fifty years old who came to do the work of serving and carrying the Tent of Meeting." + }, + { + "verseNum": 48, + "text": "And the number of men was 8,580." + }, + { + "verseNum": 49, + "text": "At the LORD’s command they were numbered through Moses and each one was assigned his work and burden, as the LORD had commanded Moses." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/NUM/chapter-5.json b/data/en_bible/BSB/NUM/chapter-5.json new file mode 100644 index 0000000..361bd02 --- /dev/null +++ b/data/en_bible/BSB/NUM/chapter-5.json @@ -0,0 +1,129 @@ +{ + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Command the Israelites to send away from the camp anyone with a skin disease, anyone who has a bodily discharge, and anyone who is defiled by a dead body." + }, + { + "verseNum": 3, + "text": "You must send away male and female alike; send them outside the camp so they will not defile their camp, where I dwell among them.”" + }, + { + "verseNum": 4, + "text": "So the Israelites did this, sending such people outside the camp. They did just as the LORD had instructed Moses." + }, + { + "verseNum": 5, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 6, + "text": "“Tell the Israelites that when a man or woman acts unfaithfully against the LORD by committing any sin against another, that person is guilty" + }, + { + "verseNum": 7, + "text": "and must confess the sin he has committed. He must make full restitution, add a fifth to its value, and give all this to the one he has wronged." + }, + { + "verseNum": 8, + "text": "But if the man has no relative to whom restitution can be made for the wrong, the restitution belongs to the LORD and must be given to the priest along with the ram of atonement, by which the atonement is made for him." + }, + { + "verseNum": 9, + "text": "Every sacred contribution the Israelites bring to the priest shall belong to him." + }, + { + "verseNum": 10, + "text": "Each man’s sacred gifts are his own, but whatever he gives to the priest will belong to the priest.”" + }, + { + "verseNum": 11, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 12, + "text": "“Speak to the Israelites and tell them that if any man’s wife goes astray and is unfaithful to him" + }, + { + "verseNum": 13, + "text": "by sleeping with another man, and it is concealed from her husband and her impurity is undetected (since there is no witness against her and she was not caught in the act)," + }, + { + "verseNum": 14, + "text": "and if a feeling of jealousy comes over her husband and he suspects his wife who has defiled herself—or if a feeling of jealousy comes over him and he suspects her even though she has not defiled herself—" + }, + { + "verseNum": 15, + "text": "then he is to bring his wife to the priest.\n \nHe must also bring for her an offering of a tenth of an ephah of barley flour. He is not to pour oil over it or put frankincense on it, because it is a grain offering for jealousy, an offering of memorial as a reminder of iniquity." + }, + { + "verseNum": 16, + "text": "The priest is to bring the wife forward and have her stand before the LORD." + }, + { + "verseNum": 17, + "text": "Then he is to take some holy water in a clay jar and put some of the dust from the tabernacle floor into the water." + }, + { + "verseNum": 18, + "text": "After the priest has the woman stand before the LORD, he is to let down her hair and place in her hands the grain offering of memorial, which is the grain offering for jealousy. The priest is to hold the bitter water that brings a curse." + }, + { + "verseNum": 19, + "text": "And he is to put the woman under oath and say to her, ‘If no other man has slept with you and you have not gone astray and become defiled while under your husband’s authority, may you be immune to this bitter water that brings a curse." + }, + { + "verseNum": 20, + "text": "But if you have gone astray while under your husband’s authority and have defiled yourself and lain carnally with a man other than your husband’—" + }, + { + "verseNum": 21, + "text": "and the priest shall have the woman swear under the oath of the curse—‘then may the LORD make you an attested curse among your people by making your thigh shrivel and your belly swell." + }, + { + "verseNum": 22, + "text": "May this water that brings a curse enter your stomach and cause your belly to swell and your thigh to shrivel.’\n \nThen the woman is to say, ‘Amen, Amen.’" + }, + { + "verseNum": 23, + "text": "And the priest shall write these curses on a scroll and wash them off into the bitter water." + }, + { + "verseNum": 24, + "text": "He is to have the woman drink the bitter water that brings a curse, and it will enter her and cause her bitter suffering." + }, + { + "verseNum": 25, + "text": "The priest shall take from her hand the grain offering for jealousy, wave it before the LORD, and bring it to the altar." + }, + { + "verseNum": 26, + "text": "Then the priest is to take a handful of the grain offering as a memorial portion and burn it on the altar; after that he is to have the woman drink the water." + }, + { + "verseNum": 27, + "text": "When he has made her drink the water, if she has defiled herself and been unfaithful to her husband, then the water that brings a curse will enter her and cause bitter suffering; her belly will swell, her thigh will shrivel, and she will become accursed among her people." + }, + { + "verseNum": 28, + "text": "But if the woman has not defiled herself and is clean, she will be unaffected and able to conceive children." + }, + { + "verseNum": 29, + "text": "This is the law of jealousy when a wife goes astray and defiles herself while under her husband’s authority," + }, + { + "verseNum": 30, + "text": "or when a feeling of jealousy comes over a husband and he suspects his wife. He is to have the woman stand before the LORD, and the priest is to apply to her this entire law." + }, + { + "verseNum": 31, + "text": "The husband will be free from guilt, but the woman shall bear her iniquity.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/NUM/chapter-6.json b/data/en_bible/BSB/NUM/chapter-6.json new file mode 100644 index 0000000..56418a4 --- /dev/null +++ b/data/en_bible/BSB/NUM/chapter-6.json @@ -0,0 +1,113 @@ +{ + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and tell them that if a man or woman makes a special vow, the vow of a Nazirite, to separate himself to the LORD," + }, + { + "verseNum": 3, + "text": "he is to abstain from wine and strong drink. He must not drink vinegar made from wine or strong drink, and he must not drink any grape juice or eat fresh grapes or raisins." + }, + { + "verseNum": 4, + "text": "All the days of his separation, he is not to eat anything that comes from the grapevine, not even the seeds or skins." + }, + { + "verseNum": 5, + "text": "For the entire period of his vow of separation, no razor shall pass over his head. He must be holy until the time of his separation to the LORD is complete; he must let the hair of his head grow long." + }, + { + "verseNum": 6, + "text": "Throughout the days of his separation to the LORD, he must not go near a dead body." + }, + { + "verseNum": 7, + "text": "Even if his father or mother or brother or sister should die, he is not to defile himself, because the crown of consecration to his God is upon his head." + }, + { + "verseNum": 8, + "text": "Throughout the time of his separation, he is holy to the LORD." + }, + { + "verseNum": 9, + "text": "If someone suddenly dies in his presence and defiles his consecrated head of hair, he must shave his head on the day of his cleansing—the seventh day." + }, + { + "verseNum": 10, + "text": "On the eighth day he must bring two turtledoves or two young pigeons to the priest at the entrance to the Tent of Meeting." + }, + { + "verseNum": 11, + "text": "And the priest is to offer one as a sin offering and the other as a burnt offering to make atonement for him, because he has sinned by being in the presence of the dead body. On that day he must consecrate his head again." + }, + { + "verseNum": 12, + "text": "He must rededicate his time of separation to the LORD and bring a year-old male lamb as a guilt offering. But the preceding days shall not be counted, because his separation was defiled." + }, + { + "verseNum": 13, + "text": "Now this is the law of the Nazirite when his time of separation is complete: He must be brought to the entrance to the Tent of Meeting," + }, + { + "verseNum": 14, + "text": "and he is to present an offering to the LORD of an unblemished year-old male lamb as a burnt offering, an unblemished year-old female lamb as a sin offering, and an unblemished ram as a peace offering—" + }, + { + "verseNum": 15, + "text": "together with their grain offerings and drink offerings—and a basket of unleavened cakes made from fine flour mixed with oil and unleavened wafers coated with oil." + }, + { + "verseNum": 16, + "text": "The priest is to present all these before the LORD and make the sin offering and the burnt offering." + }, + { + "verseNum": 17, + "text": "He shall also offer the ram as a peace offering to the LORD, along with the basket of unleavened bread. And the priest is to offer the accompanying grain offering and drink offering." + }, + { + "verseNum": 18, + "text": "Then at the entrance to the Tent of Meeting, the Nazirite is to shave his consecrated head, take the hair, and put it on the fire under the peace offering." + }, + { + "verseNum": 19, + "text": "And the priest is to take the boiled shoulder from the ram, one unleavened cake from the basket, and one unleavened wafer, and put them into the hands of the Nazirite who has just shaved the hair of his consecration." + }, + { + "verseNum": 20, + "text": "The priest shall then wave them as a wave offering before the LORD. This is a holy portion for the priest, in addition to the breast of the wave offering and the thigh that was presented. After that, the Nazirite may drink wine." + }, + { + "verseNum": 21, + "text": "This is the law of the Nazirite who vows his offering to the LORD for his separation, in addition to whatever else he can afford; he must fulfill whatever vow he makes, according to the law of his separation.”" + }, + { + "verseNum": 22, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 23, + "text": "“Tell Aaron and his sons: This is how you are to bless the Israelites. Say to them:" + }, + { + "verseNum": 24, + "text": "‘May the LORD bless you\n and keep you;" + }, + { + "verseNum": 25, + "text": "may the LORD cause His face to shine upon you\n and be gracious to you;" + }, + { + "verseNum": 26, + "text": "may the LORD lift up His countenance toward you\n and give you peace.’" + }, + { + "verseNum": 27, + "text": "So they shall put My name on the Israelites, and I will bless them.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/NUM/chapter-intro.json b/data/en_bible/BSB/NUM/chapter-intro.json new file mode 100644 index 0000000..2f053ae --- /dev/null +++ b/data/en_bible/BSB/NUM/chapter-intro.json @@ -0,0 +1,9 @@ +{ + "chapterNum": null, + "verses": [ + { + "verseNum": 1, + "text": "Numbers" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/new_testament.json b/data/en_bible/BSB/new_testament.json new file mode 100644 index 0000000..69a090a --- /dev/null +++ b/data/en_bible/BSB/new_testament.json @@ -0,0 +1,4 @@ +{ + "testament": "New Testament", + "books": [] +} \ No newline at end of file diff --git a/data/en_bible/BSB/old_testament.json b/data/en_bible/BSB/old_testament.json new file mode 100644 index 0000000..0e6d18a --- /dev/null +++ b/data/en_bible/BSB/old_testament.json @@ -0,0 +1,16044 @@ +{ + "testament": "Old Testament", + "books": [ + { + "name": "Genesis", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "In the beginning God created the heavens and the earth." + }, + { + "verseNum": 2, + "text": "Now the earth was formless and void, and darkness was over the surface of the deep. And the Spirit of God was hovering over the surface of the waters." + }, + { + "verseNum": 3, + "text": "And God said, “Let there be light,” and there was light." + }, + { + "verseNum": 4, + "text": "And God saw that the light was good, and He separated the light from the darkness." + }, + { + "verseNum": 5, + "text": "God called the light “day,” and the darkness He called “night.”\n \n And there was evening, and there was morning—the first day." + }, + { + "verseNum": 6, + "text": "And God said, “Let there be an expanse between the waters, to separate the waters from the waters.”" + }, + { + "verseNum": 7, + "text": "So God made the expanse and separated the waters beneath it from the waters above. And it was so." + }, + { + "verseNum": 8, + "text": "God called the expanse “sky.”\n \n And there was evening, and there was morning—the second day." + }, + { + "verseNum": 9, + "text": "And God said, “Let the waters under the sky be gathered into one place, so that the dry land may appear.” And it was so." + }, + { + "verseNum": 10, + "text": "God called the dry land “earth,” and the gathering of waters He called “seas.” And God saw that it was good." + }, + { + "verseNum": 11, + "text": "Then God said, “Let the earth bring forth vegetation: seed-bearing plants and fruit trees, each bearing fruit with seed according to its kind.” And it was so." + }, + { + "verseNum": 12, + "text": "The earth produced vegetation: seed-bearing plants according to their kinds and trees bearing fruit with seed according to their kinds. And God saw that it was good." + }, + { + "verseNum": 13, + "text": "And there was evening, and there was morning—the third day." + }, + { + "verseNum": 14, + "text": "And God said, “Let there be lights in the expanse of the sky to distinguish between the day and the night, and let them be signs to mark the seasons and days and years." + }, + { + "verseNum": 15, + "text": "And let them serve as lights in the expanse of the sky to shine upon the earth.” And it was so." + }, + { + "verseNum": 16, + "text": "God made two great lights: the greater light to rule the day and the lesser light to rule the night. And He made the stars as well." + }, + { + "verseNum": 17, + "text": "God set these lights in the expanse of the sky to shine upon the earth," + }, + { + "verseNum": 18, + "text": "to preside over the day and the night, and to separate the light from the darkness. And God saw that it was good." + }, + { + "verseNum": 19, + "text": "And there was evening, and there was morning—the fourth day." + }, + { + "verseNum": 20, + "text": "And God said, “Let the waters teem with living creatures, and let birds fly above the earth in the open expanse of the sky.”" + }, + { + "verseNum": 21, + "text": "So God created the great sea creatures and every living thing that moves, with which the waters teemed according to their kinds, and every bird of flight after its kind. And God saw that it was good." + }, + { + "verseNum": 22, + "text": "Then God blessed them and said, “Be fruitful and multiply and fill the waters of the seas, and let birds multiply on the earth.”" + }, + { + "verseNum": 23, + "text": "And there was evening, and there was morning—the fifth day." + }, + { + "verseNum": 24, + "text": "And God said, “Let the earth bring forth living creatures according to their kinds: livestock, land crawlers, and beasts of the earth according to their kinds.” And it was so." + }, + { + "verseNum": 25, + "text": "God made the beasts of the earth according to their kinds, the livestock according to their kinds, and everything that crawls upon the earth according to its kind. And God saw that it was good." + }, + { + "verseNum": 26, + "text": "Then God said, “Let Us make man in Our image, after Our likeness, to rule over the fish of the sea and the birds of the air, over the livestock, and over all the earth itself and every creature that crawls upon it.”" + }, + { + "verseNum": 27, + "text": "So God created man in His own image;\n in the image of God He created him;\n male and female He created them." + }, + { + "verseNum": 28, + "text": "God blessed them and said to them, “Be fruitful and multiply, and fill the earth and subdue it; rule over the fish of the sea and the birds of the air and every creature that crawls upon the earth.”" + }, + { + "verseNum": 29, + "text": "Then God said, “Behold, I have given you every seed-bearing plant on the face of all the earth, and every tree whose fruit contains seed. They will be yours for food." + }, + { + "verseNum": 30, + "text": "And to every beast of the earth and every bird of the air and every creature that crawls upon the earth—everything that has the breath of life in it—I have given every green plant for food.” And it was so." + }, + { + "verseNum": 31, + "text": "And God looked upon all that He had made, and indeed, it was very good.\n \n And there was evening, and there was morning—the sixth day." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Thus the heavens and the earth were completed in all their vast array." + }, + { + "verseNum": 2, + "text": "And by the seventh day God had finished the work He had been doing; so on that day He rested from all His work." + }, + { + "verseNum": 3, + "text": "Then God blessed the seventh day and sanctified it, because on that day He rested from all the work of creation that He had accomplished." + }, + { + "verseNum": 4, + "text": "This is the account of the heavens and the earth when they were created, in the day that the LORD God made them." + }, + { + "verseNum": 5, + "text": "Now no shrub of the field had yet appeared on the earth, nor had any plant of the field sprouted; for the LORD God had not yet sent rain upon the earth, and there was no man to cultivate the ground." + }, + { + "verseNum": 6, + "text": "But springs welled up from the earth and watered the whole surface of the ground." + }, + { + "verseNum": 7, + "text": "Then the LORD God formed man from the dust of the ground and breathed the breath of life into his nostrils, and the man became a living being." + }, + { + "verseNum": 8, + "text": "And the LORD God planted a garden in Eden, in the east, where He placed the man He had formed." + }, + { + "verseNum": 9, + "text": "Out of the ground the LORD God gave growth to every tree that is pleasing to the eye and good for food. And in the middle of the garden were the tree of life and the tree of the knowledge of good and evil." + }, + { + "verseNum": 10, + "text": "Now a river flowed out of Eden to water the garden, and from there it branched into four headwaters:" + }, + { + "verseNum": 11, + "text": "The name of the first river is Pishon; it winds through the whole land of Havilah, where there is gold." + }, + { + "verseNum": 12, + "text": "And the gold of that land is pure, and bdellium and onyx are found there." + }, + { + "verseNum": 13, + "text": "The name of the second river is Gihon; it winds through the whole land of Cush." + }, + { + "verseNum": 14, + "text": "The name of the third river is Hiddekel; it runs along the east side of Assyria.\n \n And the fourth river is the Euphrates." + }, + { + "verseNum": 15, + "text": "Then the LORD God took the man and placed him in the Garden of Eden to cultivate and keep it." + }, + { + "verseNum": 16, + "text": "And the LORD God commanded him, “You may eat freely from every tree of the garden," + }, + { + "verseNum": 17, + "text": "but you must not eat from the tree of the knowledge of good and evil; for in the day that you eat of it, you will surely die.”" + }, + { + "verseNum": 18, + "text": "The LORD God also said, “It is not good for the man to be alone. I will make for him a suitable helper.”" + }, + { + "verseNum": 19, + "text": "And out of the ground the LORD God formed every beast of the field and every bird of the air, and He brought them to the man to see what he would name each one. And whatever the man called each living creature, that was its name." + }, + { + "verseNum": 20, + "text": "The man gave names to all the livestock, to the birds of the air, and to every beast of the field. But for Adam no suitable helper was found." + }, + { + "verseNum": 21, + "text": "So the LORD God caused the man to fall into a deep sleep, and while he slept, He took one of the man’s ribs and closed up the area with flesh." + }, + { + "verseNum": 22, + "text": "And from the rib that the LORD God had taken from the man, He made a woman and brought her to him." + }, + { + "verseNum": 23, + "text": "And the man said:\n \n “This is now bone of my bones\n and flesh of my flesh;\n she shall be called ‘woman,’\n for out of man she was taken.”" + }, + { + "verseNum": 24, + "text": "For this reason a man will leave his father and mother and be united to his wife, and they will become one flesh." + }, + { + "verseNum": 25, + "text": "And the man and his wife were both naked, and they were not ashamed." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now the serpent was more crafty than any beast of the field that the LORD God had made. And he said to the woman, “Did God really say, ‘You must not eat from any tree in the garden?’”" + }, + { + "verseNum": 2, + "text": "The woman answered the serpent, “We may eat the fruit of the trees of the garden," + }, + { + "verseNum": 3, + "text": "but about the fruit of the tree in the middle of the garden, God has said, ‘You must not eat of it or touch it, or you will die.’”" + }, + { + "verseNum": 4, + "text": "“You will not surely die,” the serpent told her." + }, + { + "verseNum": 5, + "text": "“For God knows that in the day you eat of it, your eyes will be opened and you will be like God, knowing good and evil.”" + }, + { + "verseNum": 6, + "text": "When the woman saw that the tree was good for food and pleasing to the eyes, and that it was desirable for obtaining wisdom, she took the fruit and ate it. She also gave some to her husband who was with her, and he ate it." + }, + { + "verseNum": 7, + "text": "And the eyes of both of them were opened, and they knew that they were naked; so they sewed together fig leaves and made coverings for themselves." + }, + { + "verseNum": 8, + "text": "Then the man and his wife heard the voice of the LORD God walking in the garden in the breeze of the day, and they hid themselves from the presence of the LORD God among the trees of the garden." + }, + { + "verseNum": 9, + "text": "But the LORD God called out to the man, “Where are you?”" + }, + { + "verseNum": 10, + "text": "“I heard Your voice in the garden,” he replied, “and I was afraid because I was naked; so I hid myself.”" + }, + { + "verseNum": 11, + "text": "“Who told you that you were naked?” asked the LORD God. “Have you eaten from the tree of which I commanded you not to eat?”" + }, + { + "verseNum": 12, + "text": "And the man answered, “The woman whom You gave me, she gave me fruit from the tree, and I ate it.”" + }, + { + "verseNum": 13, + "text": "Then the LORD God said to the woman, “What is this you have done?”\n \n“The serpent deceived me,” she replied, “and I ate.”" + }, + { + "verseNum": 14, + "text": "So the LORD God said to the serpent:\n \n “Because you have done this,\n cursed are you above all livestock\n and every beast of the field!\n On your belly will you go,\n and dust you will eat,\n all the days of your life." + }, + { + "verseNum": 15, + "text": "And I will put enmity between you and the woman,\n and between your seed and her seed.\n He will crush your head,\n and you will strike his heel.”" + }, + { + "verseNum": 16, + "text": "To the woman He said:\n \n “I will sharply increase your pain in childbirth;\n in pain you will bring forth children.\n Your desire will be for your husband,\n and he will rule over you.”" + }, + { + "verseNum": 17, + "text": "And to Adam He said:\n \n “Because you have listened to the voice of your wife\n and have eaten from the tree\n of which I commanded you not to eat,\n cursed is the ground because of you;\n through toil you will eat of it\n all the days of your life." + }, + { + "verseNum": 18, + "text": "Both thorns and thistles it will yield for you,\n and you will eat the plants of the field." + }, + { + "verseNum": 19, + "text": "By the sweat of your brow\n you will eat your bread,\n until you return to the ground—\n because out of it were you taken.\n For dust you are,\n and to dust you shall return.”" + }, + { + "verseNum": 20, + "text": "And Adam named his wife Eve, because she would be the mother of all the living." + }, + { + "verseNum": 21, + "text": "And the LORD God made garments of skin for Adam and his wife, and He clothed them." + }, + { + "verseNum": 22, + "text": "Then the LORD God said, “Behold, the man has become like one of Us, knowing good and evil. And now, lest he reach out his hand and take also from the tree of life, and eat, and live forever...”" + }, + { + "verseNum": 23, + "text": "Therefore the LORD God banished him from the Garden of Eden to work the ground from which he had been taken." + }, + { + "verseNum": 24, + "text": "So He drove out the man and stationed cherubim on the east side of the Garden of Eden, along with a whirling sword of flame to guard the way to the tree of life." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "And Adam had relations with his wife Eve, and she conceived and gave birth to Cain.\n \n“With the help of the LORD I have brought forth a man,” she said." + }, + { + "verseNum": 2, + "text": "Later she gave birth to Cain’s brother Abel.\n \nNow Abel was a keeper of sheep, while Cain was a tiller of the soil." + }, + { + "verseNum": 3, + "text": "So in the course of time, Cain brought some of the fruit of the soil as an offering to the LORD," + }, + { + "verseNum": 4, + "text": "while Abel brought the best portions of the firstborn of his flock.\n \nAnd the LORD looked with favor on Abel and his offering," + }, + { + "verseNum": 5, + "text": "but He had no regard for Cain and his offering. So Cain became very angry, and his countenance fell." + }, + { + "verseNum": 6, + "text": "“Why are you angry,” said the LORD to Cain, “and why has your countenance fallen?" + }, + { + "verseNum": 7, + "text": "If you do what is right, will you not be accepted? But if you refuse to do what is right, sin is crouching at your door; it desires you, but you must master it.”" + }, + { + "verseNum": 8, + "text": "Then Cain said to his brother Abel, “Let us go out to the field.” And while they were in the field, Cain rose up against his brother Abel and killed him." + }, + { + "verseNum": 9, + "text": "And the LORD said to Cain, “Where is your brother Abel?”\n \n“I do not know!” he answered. “Am I my brother’s keeper?”" + }, + { + "verseNum": 10, + "text": "“What have you done?” replied the LORD. “The voice of your brother’s blood cries out to Me from the ground." + }, + { + "verseNum": 11, + "text": "Now you are cursed and banished from the ground, which has opened its mouth to receive your brother’s blood from your hand." + }, + { + "verseNum": 12, + "text": "When you till the ground, it will no longer yield its produce to you. You will be a fugitive and a wanderer on the earth.”" + }, + { + "verseNum": 13, + "text": "But Cain said to the LORD, “My punishment is greater than I can bear." + }, + { + "verseNum": 14, + "text": "Behold, this day You have driven me from the face of the earth, and from Your face I will be hidden; I will be a fugitive and a wanderer on the earth, and whoever finds me will kill me.”" + }, + { + "verseNum": 15, + "text": "“Not so!” replied the LORD. “If anyone slays Cain, then Cain will be avenged sevenfold.” And the LORD placed a mark on Cain, so that no one who found him would kill him." + }, + { + "verseNum": 16, + "text": "So Cain went out from the presence of the LORD and settled in the land of Nod, east of Eden." + }, + { + "verseNum": 17, + "text": "And Cain had relations with his wife, and she conceived and gave birth to Enoch. Then Cain built a city and named it after his son Enoch." + }, + { + "verseNum": 18, + "text": "Now to Enoch was born Irad, and Irad was the father of Mehujael, and Mehujael was the father of Methusael, and Methusael was the father of Lamech." + }, + { + "verseNum": 19, + "text": "And Lamech married two women, one named Adah and the other Zillah." + }, + { + "verseNum": 20, + "text": "Adah gave birth to Jabal; he was the father of those who dwell in tents and raise livestock." + }, + { + "verseNum": 21, + "text": "And his brother’s name was Jubal; he was the father of all who play the harp and flute." + }, + { + "verseNum": 22, + "text": "And Zillah gave birth to Tubal-cain, a forger of every implement of bronze and iron. And the sister of Tubal-cain was Naamah." + }, + { + "verseNum": 23, + "text": "Then Lamech said to his wives:\n \n “Adah and Zillah, hear my voice;\n wives of Lamech, listen to my speech.\n For I have slain a man for wounding me,\n a young man for striking me." + }, + { + "verseNum": 24, + "text": "If Cain is avenged sevenfold,\n then Lamech seventy-sevenfold.”" + }, + { + "verseNum": 25, + "text": "And Adam again had relations with his wife, and she gave birth to a son and named him Seth, saying, “God has granted me another seed in place of Abel, since Cain killed him.”" + }, + { + "verseNum": 26, + "text": "And to Seth also a son was born, and he called him Enosh.\n \nAt that time men began to call upon the name of the LORD." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "This is the book of the generations of Adam. In the day that God created man, He made him in His own likeness." + }, + { + "verseNum": 2, + "text": "Male and female He created them, and He blessed them. And in the day they were created, He called them “man.”" + }, + { + "verseNum": 3, + "text": "When Adam was 130 years old, he had a son in his own likeness, after his own image; and he named him Seth." + }, + { + "verseNum": 4, + "text": "And after he had become the father of Seth, Adam lived 800 years and had other sons and daughters." + }, + { + "verseNum": 5, + "text": "So Adam lived a total of 930 years, and then he died." + }, + { + "verseNum": 6, + "text": "When Seth was 105 years old, he became the father of Enosh." + }, + { + "verseNum": 7, + "text": "And after he had become the father of Enosh, Seth lived 807 years and had other sons and daughters." + }, + { + "verseNum": 8, + "text": "So Seth lived a total of 912 years, and then he died." + }, + { + "verseNum": 9, + "text": "When Enosh was 90 years old, he became the father of Kenan." + }, + { + "verseNum": 10, + "text": "And after he had become the father of Kenan, Enosh lived 815 years and had other sons and daughters." + }, + { + "verseNum": 11, + "text": "So Enosh lived a total of 905 years, and then he died." + }, + { + "verseNum": 12, + "text": "When Kenan was 70 years old, he became the father of Mahalalel." + }, + { + "verseNum": 13, + "text": "And after he had become the father of Mahalalel, Kenan lived 840 years and had other sons and daughters." + }, + { + "verseNum": 14, + "text": "So Kenan lived a total of 910 years, and then he died." + }, + { + "verseNum": 15, + "text": "When Mahalalel was 65 years old, he became the father of Jared." + }, + { + "verseNum": 16, + "text": "And after he had become the father of Jared, Mahalalel lived 830 years and had other sons and daughters." + }, + { + "verseNum": 17, + "text": "So Mahalalel lived a total of 895 years, and then he died." + }, + { + "verseNum": 18, + "text": "When Jared was 162 years old, he became the father of Enoch." + }, + { + "verseNum": 19, + "text": "And after he had become the father of Enoch, Jared lived 800 years and had other sons and daughters." + }, + { + "verseNum": 20, + "text": "So Jared lived a total of 962 years, and then he died." + }, + { + "verseNum": 21, + "text": "When Enoch was 65 years old, he became the father of Methuselah." + }, + { + "verseNum": 22, + "text": "And after he had become the father of Methuselah, Enoch walked with God 300 years and had other sons and daughters." + }, + { + "verseNum": 23, + "text": "So Enoch lived a total of 365 years." + }, + { + "verseNum": 24, + "text": "Enoch walked with God, and then he was no more, because God had taken him away." + }, + { + "verseNum": 25, + "text": "When Methuselah was 187 years old, he became the father of Lamech." + }, + { + "verseNum": 26, + "text": "And after he had become the father of Lamech, Methuselah lived 782 years and had other sons and daughters." + }, + { + "verseNum": 27, + "text": "So Methuselah lived a total of 969 years, and then he died." + }, + { + "verseNum": 28, + "text": "When Lamech was 182 years old, he had a son." + }, + { + "verseNum": 29, + "text": "And he named him Noah, saying, “May this one comfort us in the labor and toil of our hands caused by the ground that the LORD has cursed.”" + }, + { + "verseNum": 30, + "text": "And after he had become the father of Noah, Lamech lived 595 years and had other sons and daughters." + }, + { + "verseNum": 31, + "text": "So Lamech lived a total of 777 years, and then he died." + }, + { + "verseNum": 32, + "text": "After Noah was 500 years old, he became the father of Shem, Ham, and Japheth." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Now when men began to multiply on the face of the earth and daughters were born to them," + }, + { + "verseNum": 2, + "text": "the sons of God saw that the daughters of men were beautiful, and they took as wives whomever they chose." + }, + { + "verseNum": 3, + "text": "So the LORD said, “My Spirit will not contend with man forever, for he is mortal; his days shall be 120 years.”" + }, + { + "verseNum": 4, + "text": "The Nephilim were on the earth in those days—and afterward as well—when the sons of God had relations with the daughters of men. And they bore them children who became the mighty men of old, men of renown." + }, + { + "verseNum": 5, + "text": "Then the LORD saw that the wickedness of man was great upon the earth, and that every inclination of the thoughts of his heart was altogether evil all the time." + }, + { + "verseNum": 6, + "text": "And the LORD regretted that He had made man on the earth, and He was grieved in His heart." + }, + { + "verseNum": 7, + "text": "So the LORD said, “I will blot out man, whom I have created, from the face of the earth—every man and beast and crawling creature and bird of the air—for I am grieved that I have made them.”" + }, + { + "verseNum": 8, + "text": "Noah, however, found favor in the eyes of the LORD." + }, + { + "verseNum": 9, + "text": "This is the account of Noah. Noah was a righteous man, blameless in his generation; Noah walked with God." + }, + { + "verseNum": 10, + "text": "And Noah had three sons: Shem, Ham, and Japheth." + }, + { + "verseNum": 11, + "text": "Now the earth was corrupt in the sight of God, and full of violence." + }, + { + "verseNum": 12, + "text": "And God looked upon the earth and saw that it was corrupt; for all living creatures on the earth had corrupted their ways." + }, + { + "verseNum": 13, + "text": "Then God said to Noah, “The end of all living creatures has come before Me, because through them the earth is full of violence. Now behold, I will destroy both them and the earth." + }, + { + "verseNum": 14, + "text": "Make for yourself an ark of gopher wood; make rooms in the ark and coat it with pitch inside and out." + }, + { + "verseNum": 15, + "text": "And this is how you are to build it: The ark is to be 300 cubits long, 50 cubits wide, and 30 cubits high." + }, + { + "verseNum": 16, + "text": "You are to make a roof for the ark, finish its walls a cubit from the top, place a door in the side of the ark, and build lower, middle, and upper decks." + }, + { + "verseNum": 17, + "text": "And behold, I will bring floodwaters upon the earth to destroy every creature under the heavens that has the breath of life. Everything on the earth will perish." + }, + { + "verseNum": 18, + "text": "But I will establish My covenant with you, and you will enter the ark—you and your sons and your wife and your sons’ wives with you." + }, + { + "verseNum": 19, + "text": "And you are to bring two of every living creature into the ark—male and female—to keep them alive with you." + }, + { + "verseNum": 20, + "text": "Two of every kind of bird and animal and crawling creature will come to you to be kept alive." + }, + { + "verseNum": 21, + "text": "You are also to take for yourself every kind of food that is eaten and gather it as food for yourselves and for the animals.”" + }, + { + "verseNum": 22, + "text": "So Noah did everything precisely as God had commanded him." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Noah, “Go into the ark, you and all your family, because I have found you righteous in this generation." + }, + { + "verseNum": 2, + "text": "You are to take with you seven pairs of every kind of clean animal, a male and its mate; a pair of every kind of unclean animal, a male and its mate;" + }, + { + "verseNum": 3, + "text": "and seven pairs of every kind of bird of the air, male and female, to preserve their offspring on the face of all the earth." + }, + { + "verseNum": 4, + "text": "For seven days from now I will send rain on the earth for forty days and forty nights, and I will wipe from the face of the earth every living thing I have made.”" + }, + { + "verseNum": 5, + "text": "And Noah did all that the LORD had commanded him." + }, + { + "verseNum": 6, + "text": "Now Noah was 600 years old when the floodwaters came upon the earth." + }, + { + "verseNum": 7, + "text": "And Noah and his wife, with his sons and their wives, entered the ark to escape the waters of the flood." + }, + { + "verseNum": 8, + "text": "The clean and unclean animals, the birds, and everything that crawls along the ground" + }, + { + "verseNum": 9, + "text": "came to Noah to enter the ark, two by two, male and female, as God had commanded Noah." + }, + { + "verseNum": 10, + "text": "And after seven days the floodwaters came upon the earth." + }, + { + "verseNum": 11, + "text": "In the six hundredth year of Noah’s life, on the seventeenth day of the second month, all the fountains of the great deep burst forth, and the floodgates of the heavens were opened." + }, + { + "verseNum": 12, + "text": "And the rain fell upon the earth for forty days and forty nights." + }, + { + "verseNum": 13, + "text": "On that very day Noah entered the ark, along with his sons Shem, Ham, and Japheth, and his wife, and the three wives of his sons—" + }, + { + "verseNum": 14, + "text": "they and every kind of wild animal, livestock, crawling creature, bird, and winged creature." + }, + { + "verseNum": 15, + "text": "They came to Noah to enter the ark, two by two of every creature with the breath of life." + }, + { + "verseNum": 16, + "text": "And they entered, the male and female of every living thing, as God had commanded Noah. Then the LORD shut him in." + }, + { + "verseNum": 17, + "text": "For forty days the flood kept coming on the earth, and the waters rose and lifted the ark high above the earth." + }, + { + "verseNum": 18, + "text": "So the waters continued to surge and rise greatly on the earth, and the ark floated on the surface of the waters." + }, + { + "verseNum": 19, + "text": "Finally, the waters completely inundated the earth, so that all the high mountains under all the heavens were covered." + }, + { + "verseNum": 20, + "text": "The waters rose and covered the mountaintops to a depth of fifteen cubits." + }, + { + "verseNum": 21, + "text": "And every living thing that moved upon the earth perished—birds, livestock, animals, every creature that swarms upon the earth, and all mankind." + }, + { + "verseNum": 22, + "text": "Of all that was on dry land, everything that had the breath of life in its nostrils died." + }, + { + "verseNum": 23, + "text": "And every living thing on the face of the earth was destroyed—man and livestock, crawling creatures and birds of the air; they were blotted out from the earth, and only Noah and those with him in the ark remained." + }, + { + "verseNum": 24, + "text": "And the waters prevailed upon the earth for 150 days." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "But God remembered Noah and all the animals and livestock that were with him in the ark. And God sent a wind over the earth, and the waters began to subside." + }, + { + "verseNum": 2, + "text": "The springs of the deep and the floodgates of the heavens were closed, and the rain from the sky was restrained." + }, + { + "verseNum": 3, + "text": "The waters receded steadily from the earth, and after 150 days the waters had gone down." + }, + { + "verseNum": 4, + "text": "On the seventeenth day of the seventh month, the ark came to rest on the mountains of Ararat." + }, + { + "verseNum": 5, + "text": "And the waters continued to recede until the tenth month, and on the first day of the tenth month the tops of the mountains became visible." + }, + { + "verseNum": 6, + "text": "After forty days Noah opened the window he had made in the ark" + }, + { + "verseNum": 7, + "text": "and sent out a raven. It kept flying back and forth until the waters had dried up from the earth." + }, + { + "verseNum": 8, + "text": "Then Noah sent out a dove to see if the waters had receded from the surface of the ground." + }, + { + "verseNum": 9, + "text": "But the dove found no place to rest her foot, and she returned to him in the ark, because the waters were still covering the surface of all the earth. So he reached out his hand and brought her back inside the ark." + }, + { + "verseNum": 10, + "text": "Noah waited seven more days and again sent out the dove from the ark." + }, + { + "verseNum": 11, + "text": "And behold, the dove returned to him in the evening with a freshly plucked olive leaf in her beak. So Noah knew that the waters had receded from the earth." + }, + { + "verseNum": 12, + "text": "And Noah waited seven more days and sent out the dove again, but this time she did not return to him." + }, + { + "verseNum": 13, + "text": "In Noah’s six hundred and first year, on the first day of the first month, the waters had dried up from the earth. So Noah removed the covering from the ark and saw that the surface of the ground was dry." + }, + { + "verseNum": 14, + "text": "By the twenty-seventh day of the second month, the earth was fully dry." + }, + { + "verseNum": 15, + "text": "Then God said to Noah," + }, + { + "verseNum": 16, + "text": "“Come out of the ark, you and your wife, along with your sons and their wives." + }, + { + "verseNum": 17, + "text": "Bring out all the living creatures that are with you—birds, livestock, and everything that crawls upon the ground—so that they can spread out over the earth and be fruitful and multiply upon it.”" + }, + { + "verseNum": 18, + "text": "So Noah came out, along with his sons and his wife and his sons’ wives." + }, + { + "verseNum": 19, + "text": "Every living creature, every creeping thing, and every bird—everything that moves upon the earth—came out of the ark, kind by kind." + }, + { + "verseNum": 20, + "text": "Then Noah built an altar to the LORD. And taking from every kind of clean animal and clean bird, he offered burnt offerings on the altar." + }, + { + "verseNum": 21, + "text": "When the LORD smelled the pleasing aroma, He said in His heart, “Never again will I curse the ground because of man, even though every inclination of his heart is evil from his youth. And never again will I destroy all living creatures as I have done." + }, + { + "verseNum": 22, + "text": "As long as the earth endures,\n seedtime and harvest,\n cold and heat,\n summer and winter,\n day and night\n shall never cease.”" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "And God blessed Noah and his sons and said to them, “Be fruitful and multiply and fill the earth." + }, + { + "verseNum": 2, + "text": "The fear and dread of you will fall on every living creature on the earth, every bird of the air, every creature that crawls on the ground, and all the fish of the sea. They are delivered into your hand." + }, + { + "verseNum": 3, + "text": "Everything that lives and moves will be food for you; just as I gave you the green plants, I now give you all things." + }, + { + "verseNum": 4, + "text": "But you must not eat meat with its lifeblood still in it." + }, + { + "verseNum": 5, + "text": "And surely I will require the life of any man or beast by whose hand your lifeblood is shed. I will demand an accounting from anyone who takes the life of his fellow man:" + }, + { + "verseNum": 6, + "text": "Whoever sheds the blood of man,\n by man his blood will be shed;\n for in His own image\n God has made mankind." + }, + { + "verseNum": 7, + "text": "But as for you,\n be fruitful and multiply;\n spread out across the earth\n and multiply upon it.”" + }, + { + "verseNum": 8, + "text": "Then God said to Noah and his sons with him," + }, + { + "verseNum": 9, + "text": "“Behold, I now establish My covenant with you and your descendants after you," + }, + { + "verseNum": 10, + "text": "and with every living creature that was with you—the birds, the livestock, and every beast of the earth—every living thing that came out of the ark." + }, + { + "verseNum": 11, + "text": "And I establish My covenant with you: Never again will all life be cut off by the waters of a flood; never again will there be a flood to destroy the earth.”" + }, + { + "verseNum": 12, + "text": "And God said, “This is the sign of the covenant I am making between Me and you and every living creature with you, a covenant for all generations to come:" + }, + { + "verseNum": 13, + "text": "I have set My rainbow in the clouds, and it will be a sign of the covenant between Me and the earth." + }, + { + "verseNum": 14, + "text": "Whenever I form clouds over the earth and the rainbow appears in the clouds," + }, + { + "verseNum": 15, + "text": "I will remember My covenant between Me and you and every living creature of every kind. Never again will the waters become a flood to destroy all life." + }, + { + "verseNum": 16, + "text": "And whenever the rainbow appears in the clouds, I will see it and remember the everlasting covenant between God and every living creature of every kind that is on the earth.”" + }, + { + "verseNum": 17, + "text": "So God said to Noah, “This is the sign of the covenant that I have established between Me and every creature on the earth.”" + }, + { + "verseNum": 18, + "text": "The sons of Noah who came out of the ark were Shem, Ham, and Japheth. And Ham was the father of Canaan." + }, + { + "verseNum": 19, + "text": "These three were the sons of Noah, and from them the whole earth was populated." + }, + { + "verseNum": 20, + "text": "Now Noah, a man of the soil, proceeded to plant a vineyard." + }, + { + "verseNum": 21, + "text": "But when he drank some of its wine, he became drunk and uncovered himself inside his tent." + }, + { + "verseNum": 22, + "text": "And Ham, the father of Canaan, saw his father’s nakedness and told his two brothers outside." + }, + { + "verseNum": 23, + "text": "Then Shem and Japheth took a garment and placed it across their shoulders, and walking backward, they covered their father’s nakedness. Their faces were turned away so that they did not see their father’s nakedness." + }, + { + "verseNum": 24, + "text": "When Noah awoke from his drunkenness and learned what his youngest son had done to him," + }, + { + "verseNum": 25, + "text": "he said,\n \n “Cursed be Canaan!\n A servant of servants\n shall he be to his brothers.”" + }, + { + "verseNum": 26, + "text": "He also declared:\n \n “Blessed be the LORD, the God of Shem!\n May Canaan be the servant of Shem." + }, + { + "verseNum": 27, + "text": "May God expand the territory of Japheth;\n may he dwell in the tents of Shem,\n and may Canaan be his servant.”" + }, + { + "verseNum": 28, + "text": "After the flood, Noah lived 350 years." + }, + { + "verseNum": 29, + "text": "So Noah lived a total of 950 years, and then he died." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "This is the account of Noah’s sons Shem, Ham, and Japheth, who also had sons after the flood." + }, + { + "verseNum": 2, + "text": "The sons of Japheth:\n \n Gomer, Magog, Madai, Javan, Tubal, Meshech, and Tiras." + }, + { + "verseNum": 3, + "text": "The sons of Gomer:\n \n Ashkenaz, Riphath, and Togarmah." + }, + { + "verseNum": 4, + "text": "And the sons of Javan:\n \n Elishah, Tarshish, the Kittites, and the Rodanites." + }, + { + "verseNum": 5, + "text": "From these, the maritime peoples separated into their territories, according to their languages, by clans within their nations." + }, + { + "verseNum": 6, + "text": "The sons of Ham:\n \n Cush, Mizraim, Put, and Canaan." + }, + { + "verseNum": 7, + "text": "The sons of Cush:\n \n Seba, Havilah, Sabtah, Raamah, and Sabteca.\n \nAnd the sons of Raamah:\n \n Sheba and Dedan." + }, + { + "verseNum": 8, + "text": "Cush was the father of Nimrod, who began to be a mighty one on the earth." + }, + { + "verseNum": 9, + "text": "He was a mighty hunter before the LORD; so it is said, “Like Nimrod, a mighty hunter before the LORD.”" + }, + { + "verseNum": 10, + "text": "His kingdom began in Babylon, Erech, Accad, and Calneh, in the land of Shinar." + }, + { + "verseNum": 11, + "text": "From that land he went forth into Assyria, where he built Nineveh, Rehoboth-Ir, Calah," + }, + { + "verseNum": 12, + "text": "and Resen, which is between Nineveh and the great city of Calah." + }, + { + "verseNum": 13, + "text": "Mizraim was the father of the Ludites, the Anamites, the Lehabites, the Naphtuhites," + }, + { + "verseNum": 14, + "text": "the Pathrusites, the Casluhites (from whom the Philistines came), and the Caphtorites." + }, + { + "verseNum": 15, + "text": "And Canaan was the father of Sidon his firstborn, and of the Hittites," + }, + { + "verseNum": 16, + "text": "the Jebusites, the Amorites, the Girgashites," + }, + { + "verseNum": 17, + "text": "the Hivites, the Arkites, the Sinites," + }, + { + "verseNum": 18, + "text": "the Arvadites, the Zemarites, and the Hamathites.\n \nLater the Canaanite clans were scattered," + }, + { + "verseNum": 19, + "text": "and the borders of Canaan extended from Sidon toward Gerar as far as Gaza, and then toward Sodom, Gomorrah, Admah, and Zeboiim, as far as Lasha." + }, + { + "verseNum": 20, + "text": "These are the sons of Ham according to their clans, languages, lands, and nations." + }, + { + "verseNum": 21, + "text": "And sons were also born to Shem, the older brother of Japheth; Shem was the forefather of all the sons of Eber." + }, + { + "verseNum": 22, + "text": "The sons of Shem:\n \n Elam, Asshur, Arphaxad, Lud, and Aram." + }, + { + "verseNum": 23, + "text": "The sons of Aram:\n \n Uz, Hul, Gether, and Mash." + }, + { + "verseNum": 24, + "text": "Arphaxad was the father of Shelah, and Shelah was the father of Eber." + }, + { + "verseNum": 25, + "text": "Two sons were born to Eber: One was named Peleg, because in his days the earth was divided, and his brother was named Joktan." + }, + { + "verseNum": 26, + "text": "And Joktan was the father of Almodad, Sheleph, Hazarmaveth, Jerah," + }, + { + "verseNum": 27, + "text": "Hadoram, Uzal, Diklah," + }, + { + "verseNum": 28, + "text": "Obal, Abimael, Sheba," + }, + { + "verseNum": 29, + "text": "Ophir, Havilah, and Jobab. All these were sons of Joktan." + }, + { + "verseNum": 30, + "text": "Their territory extended from Mesha to Sephar, in the eastern hill country." + }, + { + "verseNum": 31, + "text": "These are the sons of Shem, according to their clans, languages, lands, and nations." + }, + { + "verseNum": 32, + "text": "All these are the clans of Noah’s sons, according to their generations and nations. From these the nations of the earth spread out after the flood." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Now the whole world had one language and a common form of speech." + }, + { + "verseNum": 2, + "text": "And as people journeyed eastward, they found a plain in the land of Shinar and settled there." + }, + { + "verseNum": 3, + "text": "And they said to one another, “Come, let us make bricks and bake them thoroughly.” So they used brick instead of stone, and tar instead of mortar." + }, + { + "verseNum": 4, + "text": "“Come,” they said, “let us build for ourselves a city with a tower that reaches to the heavens, that we may make a name for ourselves and not be scattered over the face of all the earth.”" + }, + { + "verseNum": 5, + "text": "Then the LORD came down to see the city and the tower that the sons of men were building." + }, + { + "verseNum": 6, + "text": "And the LORD said, “If they have begun to do this as one people speaking the same language, then nothing they devise will be beyond them." + }, + { + "verseNum": 7, + "text": "Come, let Us go down and confuse their language, so that they will not understand one another’s speech.”" + }, + { + "verseNum": 8, + "text": "So the LORD scattered them from there over the face of all the earth, and they stopped building the city." + }, + { + "verseNum": 9, + "text": "That is why it is called Babel, for there the LORD confused the language of the whole world, and from that place the LORD scattered them over the face of all the earth." + }, + { + "verseNum": 10, + "text": "This is the account of Shem. Two years after the flood, when Shem was 100 years old, he became the father of Arphaxad." + }, + { + "verseNum": 11, + "text": "And after he had become the father of Arphaxad, Shem lived 500 years and had other sons and daughters." + }, + { + "verseNum": 12, + "text": "When Arphaxad was 35 years old, he became the father of Shelah." + }, + { + "verseNum": 13, + "text": "And after he had become the father of Shelah, Arphaxad lived 403 years and had other sons and daughters." + }, + { + "verseNum": 14, + "text": "When Shelah was 30 years old, he became the father of Eber." + }, + { + "verseNum": 15, + "text": "And after he had become the father of Eber, Shelah lived 403 years and had other sons and daughters." + }, + { + "verseNum": 16, + "text": "When Eber was 34 years old, he became the father of Peleg." + }, + { + "verseNum": 17, + "text": "And after he had become the father of Peleg, Eber lived 430 years and had other sons and daughters." + }, + { + "verseNum": 18, + "text": "When Peleg was 30 years old, he became the father of Reu." + }, + { + "verseNum": 19, + "text": "And after he had become the father of Reu, Peleg lived 209 years and had other sons and daughters." + }, + { + "verseNum": 20, + "text": "When Reu was 32 years old, he became the father of Serug." + }, + { + "verseNum": 21, + "text": "And after he had become the father of Serug, Reu lived 207 years and had other sons and daughters." + }, + { + "verseNum": 22, + "text": "When Serug was 30 years old, he became the father of Nahor." + }, + { + "verseNum": 23, + "text": "And after he had become the father of Nahor, Serug lived 200 years and had other sons and daughters." + }, + { + "verseNum": 24, + "text": "When Nahor was 29 years old, he became the father of Terah." + }, + { + "verseNum": 25, + "text": "And after he had become the father of Terah, Nahor lived 119 years and had other sons and daughters." + }, + { + "verseNum": 26, + "text": "When Terah was 70 years old, he became the father of Abram, Nahor, and Haran." + }, + { + "verseNum": 27, + "text": "This is the account of Terah. Terah became the father of Abram, Nahor, and Haran. And Haran became the father of Lot." + }, + { + "verseNum": 28, + "text": "During his father Terah’s lifetime, Haran died in his native land, in Ur of the Chaldeans." + }, + { + "verseNum": 29, + "text": "And Abram and Nahor took wives for themselves. Abram’s wife was named Sarai, and Nahor’s wife was named Milcah; she was the daughter of Haran, who was the father of both Milcah and Iscah." + }, + { + "verseNum": 30, + "text": "But Sarai was barren; she had no children." + }, + { + "verseNum": 31, + "text": "And Terah took his son Abram, his grandson Lot son of Haran, and his daughter-in-law Sarai the wife of Abram, and they set out from Ur of the Chaldeans for the land of Canaan. But when they arrived in Haran, they settled there." + }, + { + "verseNum": 32, + "text": "Terah lived 205 years, and he died in Haran." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Abram, “Leave your country, your kindred, and your father’s household, and go to the land I will show you." + }, + { + "verseNum": 2, + "text": "I will make you into a great nation,\n and I will bless you;\n I will make your name great,\n so that you will be a blessing." + }, + { + "verseNum": 3, + "text": "I will bless those who bless you\n and curse those who curse you;\n and all the families of the earth\n will be blessed through you.”" + }, + { + "verseNum": 4, + "text": "So Abram departed, as the LORD had directed him, and Lot went with him. Abram was seventy-five years old when he left Haran." + }, + { + "verseNum": 5, + "text": "And Abram took his wife Sarai, his nephew Lot, and all the possessions and people they had acquired in Haran, and set out for the land of Canaan.\n \nWhen they came to the land of Canaan," + }, + { + "verseNum": 6, + "text": "Abram traveled through the land as far as the site of the Oak of Moreh at Shechem. And at that time the Canaanites were in the land." + }, + { + "verseNum": 7, + "text": "Then the LORD appeared to Abram and said, “I will give this land to your offspring.” So Abram built an altar there to the LORD, who had appeared to him." + }, + { + "verseNum": 8, + "text": "From there Abram moved on to the hill country east of Bethel and pitched his tent, with Bethel to the west and Ai to the east. There he built an altar to the LORD, and he called on the name of the LORD." + }, + { + "verseNum": 9, + "text": "And Abram journeyed on toward the Negev." + }, + { + "verseNum": 10, + "text": "Now there was a famine in the land. So Abram went down to Egypt to live there for a while because the famine was severe." + }, + { + "verseNum": 11, + "text": "As he was about to enter Egypt, he said to his wife Sarai, “Look, I know that you are a beautiful woman," + }, + { + "verseNum": 12, + "text": "and when the Egyptians see you, they will say, ‘This is his wife.’ Then they will kill me but will let you live." + }, + { + "verseNum": 13, + "text": "Please say you are my sister, so that I will be treated well for your sake, and on account of you my life will be spared.”" + }, + { + "verseNum": 14, + "text": "So when Abram entered Egypt, the Egyptians saw that the woman was very beautiful." + }, + { + "verseNum": 15, + "text": "When Pharaoh’s officials saw Sarai, they commended her to him, and she was taken into the palace of Pharaoh." + }, + { + "verseNum": 16, + "text": "He treated Abram well on her account, and Abram acquired sheep and cattle, male and female donkeys, menservants and maidservants, and camels." + }, + { + "verseNum": 17, + "text": "The LORD, however, afflicted Pharaoh and his household with severe plagues because of Abram’s wife Sarai." + }, + { + "verseNum": 18, + "text": "So Pharaoh summoned Abram and asked, “What have you done to me? Why didn’t you tell me she was your wife?" + }, + { + "verseNum": 19, + "text": "Why did you say, ‘She is my sister,’ so that I took her as my wife? Now then, here is your wife. Take her and go!”" + }, + { + "verseNum": 20, + "text": "Then Pharaoh gave his men orders concerning Abram, and they sent him away with his wife and all his possessions." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "So Abram went up out of Egypt into the Negev—he and his wife and all his possessions—and Lot was with him." + }, + { + "verseNum": 2, + "text": "And Abram had become extremely wealthy in livestock and silver and gold." + }, + { + "verseNum": 3, + "text": "From the Negev he journeyed from place to place toward Bethel, until he came to the place between Bethel and Ai where his tent had formerly been pitched," + }, + { + "verseNum": 4, + "text": "to the site where he had built the altar. And there Abram called on the name of the LORD." + }, + { + "verseNum": 5, + "text": "Now Lot, who was traveling with Abram, also had flocks and herds and tents." + }, + { + "verseNum": 6, + "text": "But the land was unable to support both of them while they stayed together, for they had so many possessions that they were unable to coexist." + }, + { + "verseNum": 7, + "text": "And there was discord between the herdsmen of Abram and the herdsmen of Lot. At that time the Canaanites and the Perizzites were also living in the land." + }, + { + "verseNum": 8, + "text": "So Abram said to Lot, “Please let there be no contention between you and me, or between your herdsmen and my herdsmen. After all, we are brothers." + }, + { + "verseNum": 9, + "text": "Is not the whole land before you? Now separate yourself from me. If you go to the left, I will go to the right; if you go to the right, I will go to the left.”" + }, + { + "verseNum": 10, + "text": "And Lot looked out and saw that the whole plain of the Jordan, all the way to Zoar, was well watered like the garden of the LORD, like the land of Egypt. (This was before the LORD destroyed Sodom and Gomorrah.)" + }, + { + "verseNum": 11, + "text": "So Lot chose the whole plain of the Jordan for himself and set out toward the east. And Abram and Lot parted company." + }, + { + "verseNum": 12, + "text": "Abram lived in the land of Canaan, but Lot settled in the cities of the plain and pitched his tent toward Sodom." + }, + { + "verseNum": 13, + "text": "But the men of Sodom were wicked, sinning greatly against the LORD." + }, + { + "verseNum": 14, + "text": "After Lot had departed, the LORD said to Abram, “Now lift up your eyes from the place where you are, and look to the north and south and east and west," + }, + { + "verseNum": 15, + "text": "for all the land that you see, I will give to you and your offspring forever." + }, + { + "verseNum": 16, + "text": "I will make your offspring like the dust of the earth, so that if one could count the dust of the earth, then your offspring could be counted." + }, + { + "verseNum": 17, + "text": "Get up and walk around the land, through its length and breadth, for I will give it to you.”" + }, + { + "verseNum": 18, + "text": "So Abram moved his tent and went to live near the Oaks of Mamre at Hebron, where he built an altar to the LORD." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "In those days Amraphel king of Shinar, Arioch king of Ellasar, Chedorlaomer king of Elam, and Tidal king of Goiim" + }, + { + "verseNum": 2, + "text": "went to war against Bera king of Sodom, Birsha king of Gomorrah, Shinab king of Admah, Shemeber king of Zeboiim, and the king of Bela (that is, Zoar)." + }, + { + "verseNum": 3, + "text": "The latter five came as allies to the Valley of Siddim (that is, the Salt Sea )." + }, + { + "verseNum": 4, + "text": "For twelve years they had been subject to Chedorlaomer, but in the thirteenth year they rebelled." + }, + { + "verseNum": 5, + "text": "In the fourteenth year, Chedorlaomer and the kings allied with him went out and defeated the Rephaites in Ashteroth-karnaim, the Zuzites in Ham, the Emites in Shaveh-kiriathaim," + }, + { + "verseNum": 6, + "text": "and the Horites in the area of Mount Seir, as far as El-paran, which is near the desert." + }, + { + "verseNum": 7, + "text": "Then they turned back to invade En-mishpat (that is, Kadesh), and they conquered the whole territory of the Amalekites, as well as the Amorites who lived in Hazazon-tamar." + }, + { + "verseNum": 8, + "text": "Then the king of Sodom, the king of Gomorrah, the king of Admah, the king of Zeboiim, and the king of Bela (that is, Zoar) marched out and arrayed themselves for battle in the Valley of Siddim" + }, + { + "verseNum": 9, + "text": "against Chedorlaomer king of Elam, Tidal king of Goiim, Amraphel king of Shinar, and Arioch king of Ellasar—four kings against five." + }, + { + "verseNum": 10, + "text": "Now the Valley of Siddim was full of tar pits, and as the kings of Sodom and Gomorrah fled, some men fell into the pits, but the survivors fled to the hill country." + }, + { + "verseNum": 11, + "text": "The four kings seized all the goods of Sodom and Gomorrah and all their food, and they went on their way." + }, + { + "verseNum": 12, + "text": "They also carried off Abram’s nephew Lot and his possessions, since Lot was living in Sodom." + }, + { + "verseNum": 13, + "text": "Then an escapee came and reported this to Abram the Hebrew. Now Abram was living near the Oaks of Mamre the Amorite, a brother of Eshcol and Aner, all of whom were bound by treaty to Abram." + }, + { + "verseNum": 14, + "text": "And when Abram heard that his relative had been captured, he mobilized the 318 trained men born in his household, and they set out in pursuit as far as Dan." + }, + { + "verseNum": 15, + "text": "During the night, Abram divided his forces and routed Chedorlaomer’s army, pursuing them as far as Hobah, north of Damascus." + }, + { + "verseNum": 16, + "text": "He retrieved all the goods, as well as his relative Lot and his possessions, together with the women and the rest of the people." + }, + { + "verseNum": 17, + "text": "After Abram returned from defeating Chedorlaomer and the kings allied with him, the king of Sodom went out to meet him in the Valley of Shaveh (that is, the King’s Valley)." + }, + { + "verseNum": 18, + "text": "Then Melchizedek king of Salem brought out bread and wine—since he was priest of God Most High —" + }, + { + "verseNum": 19, + "text": "and he blessed Abram and said:\n \n “Blessed be Abram by God Most High,\n Creator of heaven and earth," + }, + { + "verseNum": 20, + "text": "and blessed be God Most High,\n who has delivered your enemies into your hand.”\n \nThen Abram gave Melchizedek a tenth of everything." + }, + { + "verseNum": 21, + "text": "The king of Sodom said to Abram, “Give me the people, but take the goods for yourself.”" + }, + { + "verseNum": 22, + "text": "But Abram replied to the king of Sodom, “I have raised my hand to the LORD God Most High, Creator of heaven and earth," + }, + { + "verseNum": 23, + "text": "that I will not accept even a thread, or a strap of a sandal, or anything that belongs to you, lest you should say, ‘I have made Abram rich.’" + }, + { + "verseNum": 24, + "text": "I will accept nothing but what my men have eaten and the share for the men who went with me—Aner, Eshcol, and Mamre. They may take their portion.”" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "After these events, the word of the LORD came to Abram in a vision:\n \n “Do not be afraid, Abram.\n I am your shield,\n your very great reward.”" + }, + { + "verseNum": 2, + "text": "But Abram replied, “O Lord GOD, what can You give me, since I remain childless, and the heir of my house is Eliezer of Damascus?”" + }, + { + "verseNum": 3, + "text": "Abram continued, “Behold, You have given me no offspring, so a servant in my household will be my heir.”" + }, + { + "verseNum": 4, + "text": "Then the word of the LORD came to Abram, saying, “This one will not be your heir, but one who comes from your own body will be your heir.”" + }, + { + "verseNum": 5, + "text": "And the LORD took him outside and said, “Now look to the heavens and count the stars, if you are able.” Then He told him, “So shall your offspring be.”" + }, + { + "verseNum": 6, + "text": "Abram believed the LORD, and it was credited to him as righteousness." + }, + { + "verseNum": 7, + "text": "The LORD also told him, “I am the LORD, who brought you out of Ur of the Chaldeans to give you this land to possess.”" + }, + { + "verseNum": 8, + "text": "But Abram replied, “Lord GOD, how can I know that I will possess it?”" + }, + { + "verseNum": 9, + "text": "And the LORD said to him, “Bring Me a heifer, a goat, and a ram, each three years old, along with a turtledove and a young pigeon.”" + }, + { + "verseNum": 10, + "text": "So Abram brought all these to Him, split each of them down the middle, and laid the halves opposite each other. The birds, however, he did not cut in half." + }, + { + "verseNum": 11, + "text": "And the birds of prey descended on the carcasses, but Abram drove them away." + }, + { + "verseNum": 12, + "text": "As the sun was setting, Abram fell into a deep sleep, and suddenly great terror and darkness overwhelmed him." + }, + { + "verseNum": 13, + "text": "Then the LORD said to Abram, “Know for certain that your descendants will be strangers in a land that is not their own, and they will be enslaved and mistreated four hundred years." + }, + { + "verseNum": 14, + "text": "But I will judge the nation they serve as slaves, and afterward they will depart with many possessions." + }, + { + "verseNum": 15, + "text": "You, however, will go to your fathers in peace and be buried at a ripe old age." + }, + { + "verseNum": 16, + "text": "In the fourth generation your descendants will return here, for the iniquity of the Amorites is not yet complete.”" + }, + { + "verseNum": 17, + "text": "When the sun had set and darkness had fallen, behold, a smoking firepot and a flaming torch appeared and passed between the halves of the carcasses." + }, + { + "verseNum": 18, + "text": "On that day the LORD made a covenant with Abram, saying, “To your descendants I have given this land—from the river of Egypt to the great River Euphrates—" + }, + { + "verseNum": 19, + "text": "the land of the Kenites, Kenizzites, Kadmonites," + }, + { + "verseNum": 20, + "text": "Hittites, Perizzites, Rephaites," + }, + { + "verseNum": 21, + "text": "Amorites, Canaanites, Girgashites, and Jebusites.”" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Now Abram’s wife Sarai had borne him no children, but she had an Egyptian maidservant named Hagar." + }, + { + "verseNum": 2, + "text": "So Sarai said to Abram, “Look now, the LORD has prevented me from bearing children. Please go to my maidservant; perhaps I can build a family by her.”\n \nAnd Abram listened to the voice of Sarai." + }, + { + "verseNum": 3, + "text": "So after he had lived in Canaan for ten years, his wife Sarai took her Egyptian maidservant Hagar and gave her to Abram to be his wife." + }, + { + "verseNum": 4, + "text": "And he slept with Hagar, and she conceived. But when Hagar realized that she was pregnant, she began to despise her mistress." + }, + { + "verseNum": 5, + "text": "Then Sarai said to Abram, “May the wrong done to me be upon you! I delivered my servant into your arms, and ever since she saw that she was pregnant, she has treated me with contempt. May the LORD judge between you and me.”" + }, + { + "verseNum": 6, + "text": "“Here,” said Abram, “your servant is in your hands. Do whatever you want with her.” Then Sarai treated Hagar so harshly that she fled from her." + }, + { + "verseNum": 7, + "text": "Now the angel of the LORD found Hagar by a spring of water in the desert—the spring along the road to Shur." + }, + { + "verseNum": 8, + "text": "“Hagar, servant of Sarai,” he said, “where have you come from, and where are you going?”\n \n“I am running away from my mistress Sarai,” she replied." + }, + { + "verseNum": 9, + "text": "So the angel of the LORD told her, “Return to your mistress and submit to her authority.”" + }, + { + "verseNum": 10, + "text": "Then the angel added, “I will greatly multiply your offspring so that they will be too numerous to count.”" + }, + { + "verseNum": 11, + "text": "The angel of the LORD proceeded:\n \n “Behold, you have conceived and will bear a son.\n And you shall name him Ishmael,\n for the LORD has heard your cry of affliction." + }, + { + "verseNum": 12, + "text": "He will be a wild donkey of a man,\n and his hand will be against everyone,\n and everyone’s hand against him;\n he will live in hostility\n toward all his brothers.”" + }, + { + "verseNum": 13, + "text": "So Hagar gave this name to the LORD who had spoken to her: “You are the God who sees me,” for she said, “Here I have seen the One who sees me!”" + }, + { + "verseNum": 14, + "text": "Therefore the well was called Beer-lahai-roi. It is located between Kadesh and Bered." + }, + { + "verseNum": 15, + "text": "And Hagar bore Abram a son, and Abram gave the name Ishmael to the son she had borne." + }, + { + "verseNum": 16, + "text": "Abram was eighty-six years old when Hagar bore Ishmael to him." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "When Abram was ninety-nine years old, the LORD appeared to him and said, “I am God Almighty. Walk before Me and be blameless." + }, + { + "verseNum": 2, + "text": "I will establish My covenant between Me and you, and I will multiply you exceedingly.”" + }, + { + "verseNum": 3, + "text": "Then Abram fell facedown, and God said to him," + }, + { + "verseNum": 4, + "text": "“As for Me, this is My covenant with you: You will be the father of many nations." + }, + { + "verseNum": 5, + "text": "No longer will you be called Abram, but your name will be Abraham, for I have made you a father of many nations." + }, + { + "verseNum": 6, + "text": "I will make you exceedingly fruitful; I will make nations of you, and kings will descend from you." + }, + { + "verseNum": 7, + "text": "I will establish My covenant as an everlasting covenant between Me and you and your descendants after you, to be your God and the God of your descendants after you." + }, + { + "verseNum": 8, + "text": "And to you and your descendants I will give the land where you are residing—all the land of Canaan—as an eternal possession; and I will be their God.”" + }, + { + "verseNum": 9, + "text": "God also said to Abraham, “You must keep My covenant—you and your descendants in the generations after you." + }, + { + "verseNum": 10, + "text": "This is My covenant with you and your descendants after you, which you are to keep: Every male among you must be circumcised." + }, + { + "verseNum": 11, + "text": "You are to circumcise the flesh of your foreskin, and this will be a sign of the covenant between Me and you." + }, + { + "verseNum": 12, + "text": "Generation after generation, every male must be circumcised when he is eight days old, including those born in your household and those purchased from a foreigner—even those who are not your offspring." + }, + { + "verseNum": 13, + "text": "Whether they are born in your household or purchased, they must be circumcised. My covenant in your flesh will be an everlasting covenant." + }, + { + "verseNum": 14, + "text": "But if any male is not circumcised, he will be cut off from his people; he has broken My covenant.”" + }, + { + "verseNum": 15, + "text": "Then God said to Abraham, “As for Sarai your wife, do not call her Sarai, for her name is to be Sarah." + }, + { + "verseNum": 16, + "text": "And I will bless her and will surely give you a son by her. I will bless her, and she will be the mother of nations; kings of peoples will descend from her.”" + }, + { + "verseNum": 17, + "text": "Abraham fell facedown. Then he laughed and said to himself, “Can a child be born to a man who is a hundred years old? Can Sarah give birth at the age of ninety?”" + }, + { + "verseNum": 18, + "text": "And Abraham said to God, “O that Ishmael might live under Your blessing!”" + }, + { + "verseNum": 19, + "text": "But God replied, “Your wife Sarah will indeed bear you a son, and you are to name him Isaac. I will establish My covenant with him as an everlasting covenant for his descendants after him." + }, + { + "verseNum": 20, + "text": "As for Ishmael, I have heard you, and I will surely bless him; I will make him fruitful and multiply him greatly. He will become the father of twelve rulers, and I will make him into a great nation." + }, + { + "verseNum": 21, + "text": "But I will establish My covenant with Isaac, whom Sarah will bear to you at this time next year.”" + }, + { + "verseNum": 22, + "text": "When He had finished speaking with Abraham, God went up from him." + }, + { + "verseNum": 23, + "text": "On that very day Abraham took his son Ishmael and all those born in his household or purchased with his money—every male among the members of Abraham’s household—and he circumcised them, just as God had told him." + }, + { + "verseNum": 24, + "text": "So Abraham was ninety-nine years old when he was circumcised," + }, + { + "verseNum": 25, + "text": "and his son Ishmael was thirteen;" + }, + { + "verseNum": 26, + "text": "Abraham and his son Ishmael were circumcised on the same day." + }, + { + "verseNum": 27, + "text": "And all the men of Abraham’s household—both servants born in his household and those purchased from foreigners—were circumcised with him." + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD appeared to Abraham by the Oaks of Mamre in the heat of the day, while he was sitting at the entrance of his tent." + }, + { + "verseNum": 2, + "text": "And Abraham looked up and saw three men standing nearby. When he saw them, he ran from the entrance of his tent to meet them and bowed low to the ground." + }, + { + "verseNum": 3, + "text": "“My lord,” said Abraham, “if I have found favor in your sight, please do not pass your servant by." + }, + { + "verseNum": 4, + "text": "Let a little water be brought, that you may wash your feet and rest yourselves under the tree." + }, + { + "verseNum": 5, + "text": "And I will bring a bit of bread so that you may refresh yourselves. This is why you have passed your servant’s way. After that, you may continue on your way.”\n \n“Yes,” they replied, “you may do as you have said.”" + }, + { + "verseNum": 6, + "text": "So Abraham hurried into the tent and said to Sarah, “Quick! Prepare three seahs of fine flour, knead it, and bake some bread.”" + }, + { + "verseNum": 7, + "text": "Meanwhile, Abraham ran to the herd, selected a tender and choice calf, and gave it to a servant, who hurried to prepare it." + }, + { + "verseNum": 8, + "text": "Then Abraham brought curds and milk and the calf that had been prepared, and he set them before the men and stood by them under the tree as they ate." + }, + { + "verseNum": 9, + "text": "“Where is your wife Sarah?” they asked.\n \n“There, in the tent,” he replied." + }, + { + "verseNum": 10, + "text": "Then the LORD said, “I will surely return to you at this time next year, and your wife Sarah will have a son!”\n \nNow Sarah was behind him, listening at the entrance to the tent." + }, + { + "verseNum": 11, + "text": "And Abraham and Sarah were already old and well along in years; Sarah had passed the age of childbearing." + }, + { + "verseNum": 12, + "text": "So she laughed to herself, saying, “After I am worn out and my master is old, will I now have this pleasure?”" + }, + { + "verseNum": 13, + "text": "And the LORD asked Abraham, “Why did Sarah laugh and say, ‘Can I really bear a child when I am old?’" + }, + { + "verseNum": 14, + "text": "Is anything too difficult for the LORD? At the appointed time I will return to you—in about a year—and Sarah will have a son.”" + }, + { + "verseNum": 15, + "text": "But Sarah was afraid, so she denied it and said, “I did not laugh.”\n \n“No,” replied the LORD, “but you did laugh.”" + }, + { + "verseNum": 16, + "text": "When the men got up to leave, they looked out over Sodom, and Abraham walked along with them to see them off." + }, + { + "verseNum": 17, + "text": "And the LORD said, “Shall I hide from Abraham what I am about to do?" + }, + { + "verseNum": 18, + "text": "Abraham will surely become a great and powerful nation, and through him all the nations of the earth will be blessed." + }, + { + "verseNum": 19, + "text": "For I have chosen him, so that he will command his children and his household after him to keep the way of the LORD by doing what is right and just, in order that the LORD may bring upon Abraham what He has promised.”" + }, + { + "verseNum": 20, + "text": "Then the LORD said, “The outcry against Sodom and Gomorrah is great. Because their sin is so grievous," + }, + { + "verseNum": 21, + "text": "I will go down to see if their actions fully justify the outcry that has reached Me. If not, I will find out.”" + }, + { + "verseNum": 22, + "text": "And the two men turned away and went toward Sodom, but Abraham remained standing before the LORD." + }, + { + "verseNum": 23, + "text": "Abraham stepped forward and said, “Will You really sweep away the righteous with the wicked?" + }, + { + "verseNum": 24, + "text": "What if there are fifty righteous ones in the city? Will You really sweep it away and not spare the place for the sake of the fifty righteous ones who are there?" + }, + { + "verseNum": 25, + "text": "Far be it from You to do such a thing—to kill the righteous with the wicked, so that the righteous and the wicked are treated alike. Far be it from You! Will not the Judge of all the earth do what is right?”" + }, + { + "verseNum": 26, + "text": "So the LORD replied, “If I find fifty righteous ones within the city of Sodom, on their account I will spare the whole place.”" + }, + { + "verseNum": 27, + "text": "Then Abraham answered, “Now that I have ventured to speak to the Lord—though I am but dust and ashes—" + }, + { + "verseNum": 28, + "text": "suppose the fifty righteous ones lack five. Will You destroy the whole city for the lack of five?”\n \nHe replied, “If I find forty-five there, I will not destroy it.”" + }, + { + "verseNum": 29, + "text": "Once again Abraham spoke to the LORD, “Suppose forty are found there?”\n \nHe answered, “On account of the forty, I will not do it.”" + }, + { + "verseNum": 30, + "text": "Then Abraham said, “May the Lord not be angry, but let me speak further. Suppose thirty are found there?”\n \nHe replied, “If I find thirty there, I will not do it.”" + }, + { + "verseNum": 31, + "text": "And Abraham said, “Now that I have ventured to speak to the Lord, suppose twenty are found there?”\n \nHe answered, “On account of the twenty, I will not destroy it.”" + }, + { + "verseNum": 32, + "text": "Finally, Abraham said, “May the Lord not be angry, but let me speak once more. Suppose ten are found there?”\n \nAnd He answered, “On account of the ten, I will not destroy it.”" + }, + { + "verseNum": 33, + "text": "When the LORD had finished speaking with Abraham, He departed, and Abraham returned home." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Now the two angels arrived at Sodom in the evening, and Lot was sitting in the gateway of the city. When Lot saw them, he got up to meet them, bowed facedown," + }, + { + "verseNum": 2, + "text": "and said, “My lords, please turn aside into the house of your servant; wash your feet and spend the night. Then you can rise early and go on your way.”\n \n“No,” they answered, “we will spend the night in the square.”" + }, + { + "verseNum": 3, + "text": "But Lot insisted so strongly that they followed him into his house. He prepared a feast for them and baked unleavened bread, and they ate." + }, + { + "verseNum": 4, + "text": "Before they had gone to bed, all the men of the city of Sodom, both young and old, surrounded the house." + }, + { + "verseNum": 5, + "text": "They called out to Lot, saying, “Where are the men who came to you tonight? Send them out to us so we can have relations with them!”" + }, + { + "verseNum": 6, + "text": "Lot went outside to meet them, shutting the door behind him." + }, + { + "verseNum": 7, + "text": "“Please, my brothers,” he pleaded, “don’t do such a wicked thing!" + }, + { + "verseNum": 8, + "text": "Look, I have two daughters who have never slept with a man. Let me bring them to you, and you can do to them as you please. But do not do anything to these men, for they have come under the protection of my roof.”" + }, + { + "verseNum": 9, + "text": "“Get out of the way!” they replied. And they declared, “This one came here as a foreigner, and he is already acting like a judge! Now we will treat you worse than them.” And they pressed in on Lot and moved in to break down the door." + }, + { + "verseNum": 10, + "text": "But the men inside reached out, pulled Lot into the house with them, and shut the door." + }, + { + "verseNum": 11, + "text": "And they struck the men at the entrance, young and old, with blindness, so that they wearied themselves trying to find the door." + }, + { + "verseNum": 12, + "text": "Then the two men said to Lot, “Do you have anyone else here—a son-in-law, your sons or daughters, or anyone else in the city who belongs to you? Get them out of here," + }, + { + "verseNum": 13, + "text": "because we are about to destroy this place. For the outcry to the LORD against its people is so great that He has sent us to destroy it.”" + }, + { + "verseNum": 14, + "text": "So Lot went out and spoke to the sons-in-law who were pledged in marriage to his daughters. “Get up,” he said. “Get out of this place, for the LORD is about to destroy the city!” But his sons-in-law thought he was joking." + }, + { + "verseNum": 15, + "text": "At daybreak the angels hurried Lot along, saying, “Get up! Take your wife and your two daughters who are here, or you will be swept away in the punishment of the city.”" + }, + { + "verseNum": 16, + "text": "But when Lot hesitated, the men grabbed his hand and the hands of his wife and his two daughters. And they led them safely out of the city, because of the LORD’s compassion for them." + }, + { + "verseNum": 17, + "text": "As soon as the men had brought them out, one of them said, “Run for your lives! Do not look back, and do not stop anywhere on the plain! Flee to the mountains, or you will be swept away!”" + }, + { + "verseNum": 18, + "text": "But Lot replied, “No, my lords, please!" + }, + { + "verseNum": 19, + "text": "Your servant has indeed found favor in your sight, and you have shown me great kindness by sparing my life. But I cannot run to the mountains; the disaster will overtake me, and I will die." + }, + { + "verseNum": 20, + "text": "Look, there is a town nearby where I can flee, and it is a small place. Please let me flee there—is it not a small place? Then my life will be saved.”" + }, + { + "verseNum": 21, + "text": "“Very well,” he answered, “I will grant this request as well, and will not demolish the town you indicate." + }, + { + "verseNum": 22, + "text": "Hurry! Run there quickly, for I cannot do anything until you reach it.” That is why the town was called Zoar." + }, + { + "verseNum": 23, + "text": "And by the time the sun had risen over the land, Lot had reached Zoar." + }, + { + "verseNum": 24, + "text": "Then the LORD rained down sulfur and fire on Sodom and Gomorrah—from the LORD out of the heavens." + }, + { + "verseNum": 25, + "text": "Thus He destroyed these cities and the entire plain, including all the inhabitants of the cities and everything that grew on the ground." + }, + { + "verseNum": 26, + "text": "But Lot’s wife looked back, and she became a pillar of salt." + }, + { + "verseNum": 27, + "text": "Early the next morning, Abraham got up and returned to the place where he had stood before the LORD." + }, + { + "verseNum": 28, + "text": "He looked down toward Sodom and Gomorrah and all the land of the plain, and he saw the smoke rising from the land like smoke from a furnace." + }, + { + "verseNum": 29, + "text": "So when God destroyed the cities of the plain, He remembered Abraham, and He brought Lot out of the catastrophe that destroyed the cities where he had lived." + }, + { + "verseNum": 30, + "text": "Lot and his two daughters left Zoar and settled in the mountains—for he was afraid to stay in Zoar—where they lived in a cave." + }, + { + "verseNum": 31, + "text": "One day the older daughter said to the younger, “Our father is old, and there is no man in the land to sleep with us, as is the custom over all the earth." + }, + { + "verseNum": 32, + "text": "Come, let us get our father drunk with wine so we can sleep with him and preserve his line.”" + }, + { + "verseNum": 33, + "text": "So that night they got their father drunk with wine, and the firstborn went in and slept with her father; he was not aware when she lay down or when she got up." + }, + { + "verseNum": 34, + "text": "The next day the older daughter said to the younger, “Look, I slept with my father last night. Let us get him drunk with wine again tonight so you can go in and sleep with him and we can preserve our father’s line.”" + }, + { + "verseNum": 35, + "text": "So again that night they got their father drunk with wine, and the younger daughter went in and slept with him; he was not aware when she lay down or when she got up." + }, + { + "verseNum": 36, + "text": "Thus both of Lot’s daughters became pregnant by their father." + }, + { + "verseNum": 37, + "text": "The older daughter gave birth to a son and named him Moab. He is the father of the Moabites of today." + }, + { + "verseNum": 38, + "text": "The younger daughter also gave birth to a son, and she named him Ben-ammi. He is the father of the Ammonites of today." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Now Abraham journeyed from there to the region of the Negev and settled between Kadesh and Shur. While he was staying in Gerar," + }, + { + "verseNum": 2, + "text": "Abraham said of his wife Sarah, “She is my sister.” So Abimelech king of Gerar had Sarah brought to him." + }, + { + "verseNum": 3, + "text": "One night, however, God came to Abimelech in a dream and told him, “You are as good as dead because of the woman you have taken, for she is a married woman.”" + }, + { + "verseNum": 4, + "text": "Now Abimelech had not gone near her, so he replied, “Lord, would You destroy a nation even though it is innocent?" + }, + { + "verseNum": 5, + "text": "Didn’t Abraham tell me, ‘She is my sister’? And she herself said, ‘He is my brother.’ I have done this in the integrity of my heart and the innocence of my hands.”" + }, + { + "verseNum": 6, + "text": "Then God said to Abimelech in the dream, “Yes, I know that you did this with a clear conscience, and so I have kept you from sinning against Me. That is why I did not let you touch her." + }, + { + "verseNum": 7, + "text": "Now return the man’s wife, for he is a prophet; he will pray for you and you will live. But if you do not restore her, be aware that you will surely die—you and all who belong to you.”" + }, + { + "verseNum": 8, + "text": "Early the next morning Abimelech got up and summoned all his servants; and when he described to them all that had happened, the men were terrified." + }, + { + "verseNum": 9, + "text": "Then Abimelech called Abraham and asked, “What have you done to us? How have I sinned against you, that you have brought such tremendous guilt upon me and my kingdom? You have done things to me that should not be done.”" + }, + { + "verseNum": 10, + "text": "Abimelech also asked Abraham, “What prompted you to do such a thing?”" + }, + { + "verseNum": 11, + "text": "Abraham replied, “I thought to myself, ‘Surely there is no fear of God in this place. They will kill me on account of my wife.’" + }, + { + "verseNum": 12, + "text": "Besides, she really is my sister, the daughter of my father—though not the daughter of my mother—and she became my wife." + }, + { + "verseNum": 13, + "text": "So when God had me journey from my father’s house, I said to Sarah, ‘This is how you can show your loyalty to me: Wherever we go, say of me, “He is my brother.”’”" + }, + { + "verseNum": 14, + "text": "So Abimelech brought sheep and cattle, menservants and maidservants, and he gave them to Abraham and restored his wife Sarah to him." + }, + { + "verseNum": 15, + "text": "And Abimelech said, “Look, my land is before you. Settle wherever you please.”" + }, + { + "verseNum": 16, + "text": "And he said to Sarah, “See, I am giving your brother a thousand pieces of silver. It is your vindication before all who are with you; you are completely cleared.”" + }, + { + "verseNum": 17, + "text": "Then Abraham prayed to God, and God healed Abimelech and his wife and his maidservants, so that they could again bear children—" + }, + { + "verseNum": 18, + "text": "for on account of Abraham’s wife Sarah, the LORD had completely closed all the wombs in Abimelech’s household." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Now the LORD attended to Sarah as He had said, and the LORD did for Sarah what He had promised." + }, + { + "verseNum": 2, + "text": "So Sarah conceived and bore a son to Abraham in his old age, at the very time God had promised." + }, + { + "verseNum": 3, + "text": "And Abraham gave the name Isaac to the son Sarah bore to him." + }, + { + "verseNum": 4, + "text": "When his son Isaac was eight days old, Abraham circumcised him, as God had commanded him." + }, + { + "verseNum": 5, + "text": "Abraham was a hundred years old when his son Isaac was born to him." + }, + { + "verseNum": 6, + "text": "Then Sarah said, “God has made me laugh, and everyone who hears of this will laugh with me.”" + }, + { + "verseNum": 7, + "text": "She added, “Who would have told Abraham that Sarah would nurse children? Yet I have borne him a son in his old age.”" + }, + { + "verseNum": 8, + "text": "So the child grew and was weaned, and Abraham held a great feast on the day Isaac was weaned." + }, + { + "verseNum": 9, + "text": "But Sarah saw that the son whom Hagar the Egyptian had borne to Abraham was mocking her son," + }, + { + "verseNum": 10, + "text": "and she said to Abraham, “Expel the slave woman and her son, for the slave woman’s son will never share in the inheritance with my son Isaac!”" + }, + { + "verseNum": 11, + "text": "Now this matter distressed Abraham greatly because it concerned his son Ishmael." + }, + { + "verseNum": 12, + "text": "But God said to Abraham, “Do not be distressed about the boy and your maidservant. Listen to everything that Sarah tells you, for through Isaac your offspring will be reckoned." + }, + { + "verseNum": 13, + "text": "But I will also make a nation of the slave woman’s son, because he is your offspring.”" + }, + { + "verseNum": 14, + "text": "Early in the morning, Abraham got up, took bread and a skin of water, put them on Hagar’s shoulders, and sent her away with the boy. She left and wandered in the Wilderness of Beersheba." + }, + { + "verseNum": 15, + "text": "When the water in the skin was gone, she left the boy under one of the bushes." + }, + { + "verseNum": 16, + "text": "Then she went off and sat down nearby, about a bowshot away, for she said, “I cannot bear to watch the boy die!” And as she sat nearby, she lifted up her voice and wept." + }, + { + "verseNum": 17, + "text": "Then God heard the voice of the boy, and the angel of God called to Hagar from heaven, “What is wrong, Hagar? Do not be afraid, for God has heard the voice of the boy where he lies." + }, + { + "verseNum": 18, + "text": "Get up, lift up the boy, and take him by the hand, for I will make him into a great nation.”" + }, + { + "verseNum": 19, + "text": "Then God opened her eyes, and she saw a well of water. So she went and filled the skin with water and gave the boy a drink." + }, + { + "verseNum": 20, + "text": "And God was with the boy, and he grew up and settled in the wilderness and became a great archer." + }, + { + "verseNum": 21, + "text": "And while he was dwelling in the Wilderness of Paran, his mother got a wife for him from the land of Egypt." + }, + { + "verseNum": 22, + "text": "At that time Abimelech and Phicol the commander of his army said to Abraham, “God is with you in all that you do." + }, + { + "verseNum": 23, + "text": "Now, therefore, swear to me here before God that you will not deal falsely with me or my children or descendants. Show to me and to the country in which you reside the same kindness that I have shown to you.”" + }, + { + "verseNum": 24, + "text": "And Abraham replied, “I swear it.”" + }, + { + "verseNum": 25, + "text": "But when Abraham complained to Abimelech about a well that Abimelech’s servants had seized," + }, + { + "verseNum": 26, + "text": "Abimelech replied, “I do not know who has done this. You did not tell me, so I have not heard about it until today.”" + }, + { + "verseNum": 27, + "text": "So Abraham brought sheep and cattle and gave them to Abimelech, and the two men made a covenant." + }, + { + "verseNum": 28, + "text": "Abraham separated seven ewe lambs from the flock," + }, + { + "verseNum": 29, + "text": "and Abimelech asked him, “Why have you set apart these seven ewe lambs?”" + }, + { + "verseNum": 30, + "text": "He replied, “You are to accept the seven ewe lambs from my hand as my witness that I dug this well.”" + }, + { + "verseNum": 31, + "text": "So that place was called Beersheba, because it was there that the two of them swore an oath." + }, + { + "verseNum": 32, + "text": "After they had made the covenant at Beersheba, Abimelech and Phicol the commander of his army got up and returned to the land of the Philistines." + }, + { + "verseNum": 33, + "text": "And Abraham planted a tamarisk tree in Beersheba, and there he called upon the name of the LORD, the Eternal God." + }, + { + "verseNum": 34, + "text": "And Abraham resided in the land of the Philistines for a long time." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Some time later God tested Abraham and said to him, “Abraham!”\n \n“Here I am,” he answered." + }, + { + "verseNum": 2, + "text": "“Take your son,” God said, “your only son Isaac, whom you love, and go to the land of Moriah. Offer him there as a burnt offering on one of the mountains, which I will show you.”" + }, + { + "verseNum": 3, + "text": "So Abraham got up early the next morning, saddled his donkey, and took along two of his servants and his son Isaac. He split the wood for a burnt offering and set out for the place God had designated." + }, + { + "verseNum": 4, + "text": "On the third day Abraham looked up and saw the place in the distance." + }, + { + "verseNum": 5, + "text": "“Stay here with the donkey,” Abraham told his servants. “The boy and I will go over there to worship, and then we will return to you.”" + }, + { + "verseNum": 6, + "text": "Abraham took the wood for the burnt offering and placed it on his son Isaac. He himself carried the fire and the sacrificial knife, and the two of them walked on together." + }, + { + "verseNum": 7, + "text": "Then Isaac said to his father Abraham, “My father!”\n \n“Here I am, my son,” he replied.\n \n“The fire and the wood are here,” said Isaac, “but where is the lamb for the burnt offering?”" + }, + { + "verseNum": 8, + "text": "Abraham answered, “God Himself will provide the lamb for the burnt offering, my son.” And the two walked on together." + }, + { + "verseNum": 9, + "text": "When they arrived at the place God had designated, Abraham built the altar there and arranged the wood. He bound his son Isaac and placed him on the altar, atop the wood." + }, + { + "verseNum": 10, + "text": "Then Abraham reached out his hand and took the knife to slaughter his son." + }, + { + "verseNum": 11, + "text": "Just then the angel of the LORD called out to him from heaven, “Abraham, Abraham!”\n \n“Here I am,” he replied." + }, + { + "verseNum": 12, + "text": "“Do not lay a hand on the boy or do anything to him,” said the angel, “for now I know that you fear God, since you have not withheld your only son from me.”" + }, + { + "verseNum": 13, + "text": "Then Abraham looked up and saw behind him a ram in a thicket, caught by its horns. So he went and took the ram and offered it as a burnt offering in place of his son." + }, + { + "verseNum": 14, + "text": "And Abraham called that place The LORD Will Provide. So to this day it is said, “On the mountain of the LORD it will be provided.”" + }, + { + "verseNum": 15, + "text": "And the angel of the LORD called to Abraham from heaven a second time," + }, + { + "verseNum": 16, + "text": "saying, “By Myself I have sworn, declares the LORD, that because you have done this and have not withheld your only son," + }, + { + "verseNum": 17, + "text": "I will surely bless you, and I will multiply your descendants like the stars in the sky and the sand on the seashore. Your descendants will possess the gates of their enemies." + }, + { + "verseNum": 18, + "text": "And through your offspring all nations of the earth will be blessed, because you have obeyed My voice.”" + }, + { + "verseNum": 19, + "text": "Abraham went back to his servants, and they got up and set out together for Beersheba. And Abraham settled in Beersheba." + }, + { + "verseNum": 20, + "text": "Some time later, Abraham was told, “Milcah has also borne sons to your brother Nahor:" + }, + { + "verseNum": 21, + "text": "Uz the firstborn, his brother Buz, Kemuel (the father of Aram)," + }, + { + "verseNum": 22, + "text": "Chesed, Hazo, Pildash, Jidlaph, and Bethuel.”" + }, + { + "verseNum": 23, + "text": "And Bethuel became the father of Rebekah. Milcah bore these eight sons to Abraham’s brother Nahor." + }, + { + "verseNum": 24, + "text": "Moreover, Nahor’s concubine, whose name was Reumah, bore Tebah, Gaham, Tahash, and Maacah." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Now Sarah lived to be 127 years old." + }, + { + "verseNum": 2, + "text": "She died in Kiriath-arba (that is, Hebron) in the land of Canaan, and Abraham went out to mourn and to weep for her." + }, + { + "verseNum": 3, + "text": "Then Abraham got up from beside his dead wife and said to the Hittites," + }, + { + "verseNum": 4, + "text": "“I am a foreigner and an outsider among you. Give me a burial site among you so that I can bury my dead.”" + }, + { + "verseNum": 5, + "text": "The Hittites replied to Abraham," + }, + { + "verseNum": 6, + "text": "“Listen to us, sir. You are God’s chosen one among us. Bury your dead in the finest of our tombs. None of us will withhold his tomb for burying your dead.”" + }, + { + "verseNum": 7, + "text": "Then Abraham rose and bowed down before the people of the land, the Hittites." + }, + { + "verseNum": 8, + "text": "“If you are willing for me to bury my dead,” he said to them, “listen to me, and approach Ephron son of Zohar on my behalf" + }, + { + "verseNum": 9, + "text": "to sell me the cave of Machpelah that belongs to him; it is at the end of his field. Let him sell it to me in your presence for full price, so that I may have a burial site.”" + }, + { + "verseNum": 10, + "text": "Now Ephron was sitting among the sons of Heth. So in the presence of all the Hittites who had come to the gate of his city, Ephron the Hittite answered Abraham," + }, + { + "verseNum": 11, + "text": "“No, my lord. Listen to me. I give you the field, and I give you the cave that is in it. I give it to you in the presence of my people. Bury your dead.”" + }, + { + "verseNum": 12, + "text": "Again Abraham bowed down before the people of the land" + }, + { + "verseNum": 13, + "text": "and said to Ephron in their presence, “If you will please listen to me, I will pay you the price of the field. Accept it from me, so that I may bury my dead there.”" + }, + { + "verseNum": 14, + "text": "Ephron answered Abraham," + }, + { + "verseNum": 15, + "text": "“Listen to me, my lord. The land is worth four hundred shekels of silver, but what is that between you and me? Bury your dead.”" + }, + { + "verseNum": 16, + "text": "Abraham agreed to Ephron’s terms and weighed out for him the price he had named in the hearing of the Hittites: four hundred shekels of silver, according to the standard of the merchants." + }, + { + "verseNum": 17, + "text": "So Ephron’s field at Machpelah near Mamre, the cave that was in it, and all the trees within the boundaries of the field were deeded over" + }, + { + "verseNum": 18, + "text": "to Abraham’s possession in the presence of all the Hittites who had come to the gate of his city." + }, + { + "verseNum": 19, + "text": "After this, Abraham buried his wife Sarah in the cave of the field at Machpelah near Mamre (that is, Hebron) in the land of Canaan." + }, + { + "verseNum": 20, + "text": "So the field and its cave were deeded by the Hittites to Abraham as a burial site." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "By now Abraham was old and well along in years, and the LORD had blessed him in every way." + }, + { + "verseNum": 2, + "text": "So Abraham instructed the chief servant of his household, who managed all he owned, “Place your hand under my thigh," + }, + { + "verseNum": 3, + "text": "and I will have you swear by the LORD, the God of heaven and the God of earth, that you will not take a wife for my son from the daughters of the Canaanites among whom I am dwelling," + }, + { + "verseNum": 4, + "text": "but will go to my country and my kindred to take a wife for my son Isaac.”" + }, + { + "verseNum": 5, + "text": "The servant asked him, “What if the woman is unwilling to follow me to this land? Shall I then take your son back to the land from which you came?”" + }, + { + "verseNum": 6, + "text": "Abraham replied, “Make sure that you do not take my son back there." + }, + { + "verseNum": 7, + "text": "The LORD, the God of heaven, who brought me from my father’s house and my native land, who spoke to me and promised me on oath, saying, ‘To your offspring I will give this land’—He will send His angel before you so that you can take a wife for my son from there." + }, + { + "verseNum": 8, + "text": "And if the woman is unwilling to follow you, then you are released from this oath of mine. Only do not take my son back there.”" + }, + { + "verseNum": 9, + "text": "So the servant placed his hand under the thigh of his master Abraham and swore an oath to him concerning this matter." + }, + { + "verseNum": 10, + "text": "Then the servant took ten of his master’s camels and departed with all manner of good things from his master in hand. And he set out for Nahor’s hometown in Aram-naharaim." + }, + { + "verseNum": 11, + "text": "As evening approached, he made the camels kneel down near the well outside the town at the time when the women went out to draw water." + }, + { + "verseNum": 12, + "text": "“O LORD, God of my master Abraham,” he prayed, “please grant me success today, and show kindness to my master Abraham." + }, + { + "verseNum": 13, + "text": "Here I am, standing beside the spring, and the daughters of the townspeople are coming out to draw water." + }, + { + "verseNum": 14, + "text": "Now may it happen that the girl to whom I say, ‘Please let down your jar that I may drink,’ and who responds, ‘Drink, and I will water your camels as well’—let her be the one You have appointed for Your servant Isaac. By this I will know that You have shown kindness to my master.”" + }, + { + "verseNum": 15, + "text": "Before the servant had finished praying, Rebekah came out with her jar on her shoulder. She was the daughter of Bethuel son of Milcah, the wife of Abraham’s brother Nahor." + }, + { + "verseNum": 16, + "text": "Now the girl was very beautiful, a virgin who had not had relations with any man. She went down to the spring, filled her jar, and came up again." + }, + { + "verseNum": 17, + "text": "So the servant ran to meet her and said, “Please let me have a little water from your jar.”" + }, + { + "verseNum": 18, + "text": "“Drink, my lord,” she replied, and she quickly lowered her jar to her hands and gave him a drink." + }, + { + "verseNum": 19, + "text": "After she had given him a drink, she said, “I will also draw water for your camels, until they have had enough to drink.”" + }, + { + "verseNum": 20, + "text": "And she quickly emptied her jar into the trough and ran back to the well to draw water, until she had drawn water for all his camels." + }, + { + "verseNum": 21, + "text": "Meanwhile, the man watched her silently to see whether or not the LORD had made his journey a success." + }, + { + "verseNum": 22, + "text": "And after the camels had finished drinking, he took out a gold ring weighing a beka, and two gold bracelets for her wrists weighing ten shekels." + }, + { + "verseNum": 23, + "text": "“Whose daughter are you?” he asked. “Please tell me, is there room in your father’s house for us to spend the night?”" + }, + { + "verseNum": 24, + "text": "She replied, “I am the daughter of Bethuel, the son that Milcah bore to Nahor.”" + }, + { + "verseNum": 25, + "text": "Then she added, “We have plenty of straw and feed, as well as a place for you to spend the night.”" + }, + { + "verseNum": 26, + "text": "Then the man bowed down and worshiped the LORD," + }, + { + "verseNum": 27, + "text": "saying, “Blessed be the LORD, the God of my master Abraham, who has not withheld His kindness and faithfulness from my master. As for me, the LORD has led me on the journey to the house of my master’s relatives.”" + }, + { + "verseNum": 28, + "text": "The girl ran and told her mother’s household about these things." + }, + { + "verseNum": 29, + "text": "Now Rebekah had a brother named Laban, and he rushed out to the man at the spring." + }, + { + "verseNum": 30, + "text": "As soon as he saw the ring, and the bracelets on his sister’s wrists, and heard Rebekah’s words, “The man said this to me,” he went and found the man standing by the camels near the spring." + }, + { + "verseNum": 31, + "text": "“Come, you who are blessed by the LORD,” said Laban. “Why are you standing out here? I have prepared the house and a place for the camels.”" + }, + { + "verseNum": 32, + "text": "So the man came to the house, and the camels were unloaded. Straw and feed were brought to the camels, and water to wash his feet and the feet of his companions." + }, + { + "verseNum": 33, + "text": "Then a meal was set before the man, but he said, “I will not eat until I have told you what I came to say.”\n \nSo Laban said, “Please speak.”" + }, + { + "verseNum": 34, + "text": "“I am Abraham’s servant,” he replied." + }, + { + "verseNum": 35, + "text": "“The LORD has greatly blessed my master, and he has become rich. He has given him sheep and cattle, silver and gold, menservants and maidservants, camels and donkeys." + }, + { + "verseNum": 36, + "text": "My master’s wife Sarah has borne him a son in her old age, and my master has given him everything he owns." + }, + { + "verseNum": 37, + "text": "My master made me swear an oath and said, ‘You shall not take a wife for my son from the daughters of the Canaanites in whose land I dwell," + }, + { + "verseNum": 38, + "text": "but you shall go to my father’s house and to my kindred to take a wife for my son.’" + }, + { + "verseNum": 39, + "text": "Then I asked my master, ‘What if the woman will not come back with me?’" + }, + { + "verseNum": 40, + "text": "And he told me, ‘The LORD, before whom I have walked, will send His angel with you and make your journey a success, so that you may take a wife for my son from my kindred and from my father’s house." + }, + { + "verseNum": 41, + "text": "And when you go to my kindred, if they refuse to give her to you, then you will be released from my oath.’" + }, + { + "verseNum": 42, + "text": "So when I came to the spring today, I prayed: O LORD, God of my master Abraham, if only You would make my journey a success!" + }, + { + "verseNum": 43, + "text": "Here I am, standing beside this spring. Now if a maiden comes out to draw water and I say to her, ‘Please let me drink a little water from your jar,’" + }, + { + "verseNum": 44, + "text": "and she replies, ‘Drink, and I will draw water for your camels as well,’ may she be the woman the LORD has appointed for my master’s son." + }, + { + "verseNum": 45, + "text": "And before I had finished praying in my heart, there was Rebekah coming out with her jar on her shoulder, and she went down to the spring and drew water. So I said to her, ‘Please give me a drink.’" + }, + { + "verseNum": 46, + "text": "She quickly lowered her jar from her shoulder and said, ‘Drink, and I will water your camels as well.’ So I drank, and she also watered the camels." + }, + { + "verseNum": 47, + "text": "Then I asked her, ‘Whose daughter are you?’\n \nShe replied, ‘The daughter of Bethuel son of Nahor, whom Milcah bore to him.’ So I put the ring on her nose and the bracelets on her wrists." + }, + { + "verseNum": 48, + "text": "Then I bowed down and worshiped the LORD; and I blessed the LORD, the God of my master Abraham, who led me on the right road to take the granddaughter of my master’s brother for his son." + }, + { + "verseNum": 49, + "text": "Now if you will show kindness and faithfulness to my master, tell me; but if not, let me know, so that I may go elsewhere.”" + }, + { + "verseNum": 50, + "text": "Laban and Bethuel answered, “This is from the LORD; we have no choice in the matter." + }, + { + "verseNum": 51, + "text": "Rebekah is here before you. Take her and go, and let her become the wife of your master’s son, just as the LORD has decreed.”" + }, + { + "verseNum": 52, + "text": "When Abraham’s servant heard their words, he bowed down to the ground before the LORD." + }, + { + "verseNum": 53, + "text": "Then he brought out jewels of silver and gold, and articles of clothing, and he gave them to Rebekah. He also gave precious gifts to her brother and her mother." + }, + { + "verseNum": 54, + "text": "Then he and the men with him ate and drank and spent the night there.\n \nWhen they got up the next morning, he said, “Send me on my way to my master.”" + }, + { + "verseNum": 55, + "text": "But her brother and mother said, “Let the girl remain with us ten days or so. After that, she may go.”" + }, + { + "verseNum": 56, + "text": "But he replied, “Do not delay me, since the LORD has made my journey a success. Send me on my way so that I may go to my master.”" + }, + { + "verseNum": 57, + "text": "So they said, “We will call the girl and ask her opinion.”" + }, + { + "verseNum": 58, + "text": "They called Rebekah and asked her, “Will you go with this man?”\n \n“I will go,” she replied." + }, + { + "verseNum": 59, + "text": "So they sent their sister Rebekah on her way, along with her nurse and Abraham’s servant and his men." + }, + { + "verseNum": 60, + "text": "And they blessed Rebekah and said to her,\n \n “Our sister, may you become the mother\n of thousands upon thousands.\n May your offspring possess\n the gates of their enemies.”" + }, + { + "verseNum": 61, + "text": "Then Rebekah and her servant girls got ready, mounted the camels, and followed the man. So the servant took Rebekah and left." + }, + { + "verseNum": 62, + "text": "Now Isaac had just returned from Beer-lahai-roi, for he was living in the Negev." + }, + { + "verseNum": 63, + "text": "Early in the evening, Isaac went out to the field to meditate, and looking up, he saw the camels approaching." + }, + { + "verseNum": 64, + "text": "And when Rebekah looked up and saw Isaac, she got down from her camel" + }, + { + "verseNum": 65, + "text": "and asked the servant, “Who is that man in the field coming to meet us?”\n \n“It is my master,” the servant answered. So she took her veil and covered herself." + }, + { + "verseNum": 66, + "text": "Then the servant told Isaac all that he had done." + }, + { + "verseNum": 67, + "text": "And Isaac brought her into the tent of his mother Sarah and took Rebekah as his wife. And Isaac loved her and was comforted after his mother’s death." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Now Abraham had taken another wife, named Keturah," + }, + { + "verseNum": 2, + "text": "and she bore him Zimran, Jokshan, Medan, Midian, Ishbak, and Shuah." + }, + { + "verseNum": 3, + "text": "Jokshan was the father of Sheba and Dedan. And the sons of Dedan were the Asshurites, the Letushites, and the Leummites." + }, + { + "verseNum": 4, + "text": "The sons of Midian were Ephah, Epher, Hanoch, Abida, and Eldaah.\n \nAll these were descendants of Keturah." + }, + { + "verseNum": 5, + "text": "Abraham left everything he owned to Isaac." + }, + { + "verseNum": 6, + "text": "But while he was still alive, Abraham gave gifts to the sons of his concubines and sent them away from his son Isaac to the land of the east." + }, + { + "verseNum": 7, + "text": "Abraham lived a total of 175 years." + }, + { + "verseNum": 8, + "text": "And at a ripe old age he breathed his last and died, old and contented, and was gathered to his people." + }, + { + "verseNum": 9, + "text": "His sons Isaac and Ishmael buried him in the cave of Machpelah near Mamre, in the field of Ephron son of Zohar the Hittite." + }, + { + "verseNum": 10, + "text": "This was the field that Abraham had bought from the Hittites. Abraham was buried there with his wife Sarah." + }, + { + "verseNum": 11, + "text": "After Abraham’s death, God blessed his son Isaac, who lived near Beer-lahai-roi." + }, + { + "verseNum": 12, + "text": "This is the account of Abraham’s son Ishmael, whom Hagar the Egyptian, Sarah’s maidservant, bore to Abraham." + }, + { + "verseNum": 13, + "text": "These are the names of the sons of Ishmael in the order of their birth: Nebaioth the firstborn of Ishmael, then Kedar, Adbeel, Mibsam," + }, + { + "verseNum": 14, + "text": "Mishma, Dumah, Massa," + }, + { + "verseNum": 15, + "text": "Hadad, Tema, Jetur, Naphish, and Kedemah." + }, + { + "verseNum": 16, + "text": "These were the sons of Ishmael, and these were their names by their villages and encampments—twelve princes of their tribes." + }, + { + "verseNum": 17, + "text": "Ishmael lived a total of 137 years. Then he breathed his last and died, and was gathered to his people." + }, + { + "verseNum": 18, + "text": "Ishmael’s descendants settled from Havilah to Shur, which is near the border of Egypt as you go toward Asshur. And they lived in hostility toward all their brothers." + }, + { + "verseNum": 19, + "text": "This is the account of Abraham’s son Isaac. Abraham became the father of Isaac," + }, + { + "verseNum": 20, + "text": "and Isaac was forty years old when he married Rebekah, the daughter of Bethuel the Aramean from Paddan-aram and the sister of Laban the Aramean." + }, + { + "verseNum": 21, + "text": "Later, Isaac prayed to the LORD on behalf of his wife, because she was barren. And the LORD heard his prayer, and his wife Rebekah conceived." + }, + { + "verseNum": 22, + "text": "But the children inside her struggled with each other, and she said, “Why is this happening to me?” So Rebekah went to inquire of the LORD," + }, + { + "verseNum": 23, + "text": "and He declared to her:\n \n “Two nations are in your womb,\n and two peoples from within you will be separated;\n one people will be stronger than the other,\n and the older will serve the younger.”" + }, + { + "verseNum": 24, + "text": "When her time came to give birth, there were indeed twins in her womb." + }, + { + "verseNum": 25, + "text": "The first one came out red, covered with hair like a fur coat; so they named him Esau." + }, + { + "verseNum": 26, + "text": "After this, his brother came out grasping Esau’s heel; so he was named Jacob. And Isaac was sixty years old when the twins were born." + }, + { + "verseNum": 27, + "text": "When the boys grew up, Esau became a skillful hunter, a man of the field, while Jacob was a quiet man who stayed at home." + }, + { + "verseNum": 28, + "text": "Because Isaac had a taste for wild game, he loved Esau; but Rebekah loved Jacob." + }, + { + "verseNum": 29, + "text": "One day, while Jacob was cooking some stew, Esau came in from the field and was famished." + }, + { + "verseNum": 30, + "text": "He said to Jacob, “Let me eat some of that red stew, for I am famished.” (That is why he was also called Edom.)" + }, + { + "verseNum": 31, + "text": "“First sell me your birthright,” Jacob replied." + }, + { + "verseNum": 32, + "text": "“Look,” said Esau, “I am about to die, so what good is a birthright to me?”" + }, + { + "verseNum": 33, + "text": "“Swear to me first,” Jacob said.\n \nSo Esau swore to Jacob and sold him the birthright." + }, + { + "verseNum": 34, + "text": "Then Jacob gave some bread and lentil stew to Esau, who ate and drank and then got up and went away. Thus Esau despised his birthright." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "Now there was another famine in the land, subsequent to the one that had occurred in Abraham’s time. And Isaac went to Abimelech king of the Philistines at Gerar." + }, + { + "verseNum": 2, + "text": "The LORD appeared to Isaac and said, “Do not go down to Egypt. Settle in the land where I tell you." + }, + { + "verseNum": 3, + "text": "Stay in this land as a foreigner, and I will be with you and bless you. For I will give all these lands to you and your offspring, and I will confirm the oath that I swore to your father Abraham." + }, + { + "verseNum": 4, + "text": "I will make your descendants as numerous as the stars in the sky, and I will give them all these lands, and through your offspring all nations of the earth will be blessed," + }, + { + "verseNum": 5, + "text": "because Abraham listened to My voice and kept My charge, My commandments, My statutes, and My laws.”" + }, + { + "verseNum": 6, + "text": "So Isaac settled in Gerar." + }, + { + "verseNum": 7, + "text": "But when the men of that place asked about his wife, he said, “She is my sister.” For he was afraid to say, “She is my wife,” since he thought to himself, “The men of this place will kill me on account of Rebekah, because she is so beautiful.”" + }, + { + "verseNum": 8, + "text": "When Isaac had been there a long time, Abimelech king of the Philistines looked down from the window and was surprised to see Isaac caressing his wife Rebekah." + }, + { + "verseNum": 9, + "text": "Abimelech sent for Isaac and said, “So she is really your wife! How could you say, ‘She is my sister’?”\n \nIsaac replied, “Because I thought I might die on account of her.”" + }, + { + "verseNum": 10, + "text": "“What is this you have done to us?” asked Abimelech. “One of the people could easily have slept with your wife, and you would have brought guilt upon us.”" + }, + { + "verseNum": 11, + "text": "So Abimelech warned all the people, saying, “Whoever harms this man or his wife will surely be put to death.”" + }, + { + "verseNum": 12, + "text": "Now Isaac sowed seed in the land, and that very year he reaped a hundredfold. And the LORD blessed him," + }, + { + "verseNum": 13, + "text": "and he became richer and richer, until he was exceedingly wealthy." + }, + { + "verseNum": 14, + "text": "He owned so many flocks and herds and servants that the Philistines envied him." + }, + { + "verseNum": 15, + "text": "So the Philistines took dirt and stopped up all the wells that his father’s servants had dug in the days of his father Abraham." + }, + { + "verseNum": 16, + "text": "Then Abimelech said to Isaac, “Depart from us, for you are much too powerful for us.”" + }, + { + "verseNum": 17, + "text": "So Isaac left that place and encamped in the Valley of Gerar and settled there." + }, + { + "verseNum": 18, + "text": "Isaac reopened the wells that had been dug in the days of his father Abraham, which the Philistines had stopped up after Abraham died. And he gave these wells the same names his father had given them." + }, + { + "verseNum": 19, + "text": "Then Isaac’s servants dug in the valley and found a well of fresh water there." + }, + { + "verseNum": 20, + "text": "But the herdsmen of Gerar quarreled with Isaac’s herdsmen and said, “The water is ours!” So he named the well Esek, because they contended with him." + }, + { + "verseNum": 21, + "text": "Then they dug another well and quarreled over that one also; so he named it Sitnah." + }, + { + "verseNum": 22, + "text": "He moved on from there and dug another well, and they did not quarrel over it. He named it Rehoboth and said, “At last the LORD has made room for us, and we will be fruitful in the land.”" + }, + { + "verseNum": 23, + "text": "From there Isaac went up to Beersheba," + }, + { + "verseNum": 24, + "text": "and that night the LORD appeared to him and said, “I am the God of your father Abraham. Do not be afraid, for I am with you. I will bless you and multiply your descendants for the sake of My servant Abraham.”" + }, + { + "verseNum": 25, + "text": "So Isaac built an altar there and called on the name of the LORD, and he pitched his tent there. His servants also dug a well there." + }, + { + "verseNum": 26, + "text": "Later, Abimelech came to Isaac from Gerar, with Ahuzzath his adviser and Phicol the commander of his army." + }, + { + "verseNum": 27, + "text": "“Why have you come to me?” Isaac asked them. “You hated me and sent me away.”" + }, + { + "verseNum": 28, + "text": "“We can plainly see that the LORD has been with you,” they replied. “We recommend that there should now be an oath between us and you. Let us make a covenant with you" + }, + { + "verseNum": 29, + "text": "that you will not harm us, just as we have not harmed you but have done only good to you, sending you on your way in peace. And now you are blessed by the LORD.”" + }, + { + "verseNum": 30, + "text": "So Isaac prepared a feast for them, and they ate and drank." + }, + { + "verseNum": 31, + "text": "And they got up early the next morning and swore an oath to each other. Then Isaac sent them on their way, and they left him in peace." + }, + { + "verseNum": 32, + "text": "On that same day, Isaac’s servants came and told him about the well they had dug. “We have found water!” they told him." + }, + { + "verseNum": 33, + "text": "So he called it Shibah, and to this day the name of the city is Beersheba." + }, + { + "verseNum": 34, + "text": "When Esau was forty years old, he took as his wives Judith daughter of Beeri the Hittite and Basemath daughter of Elon the Hittite." + }, + { + "verseNum": 35, + "text": "And they brought grief to Isaac and Rebekah." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "When Isaac was old and his eyes were so weak that he could no longer see, he called his older son Esau and said to him, “My son.”\n \n“Here I am,” Esau replied." + }, + { + "verseNum": 2, + "text": "“Look,” said Isaac, “I am now old, and I do not know the day of my death." + }, + { + "verseNum": 3, + "text": "Take your weapons—your quiver and bow—and go out into the field to hunt some game for me." + }, + { + "verseNum": 4, + "text": "Then prepare a tasty dish that I love and bring it to me to eat, so that I may bless you before I die.”" + }, + { + "verseNum": 5, + "text": "Now Rebekah was listening to what Isaac told his son Esau. So when Esau went into the field to hunt game and bring it back," + }, + { + "verseNum": 6, + "text": "Rebekah said to her son Jacob, “Behold, I overheard your father saying to your brother Esau," + }, + { + "verseNum": 7, + "text": "‘Bring me some game and prepare me a tasty dish to eat, so that I may bless you in the presence of the LORD before I die.’" + }, + { + "verseNum": 8, + "text": "Now, my son, listen to my voice and do exactly as I tell you." + }, + { + "verseNum": 9, + "text": "Go out to the flock and bring me two choice young goats, so that I can make them into a tasty dish for your father—the kind he loves." + }, + { + "verseNum": 10, + "text": "Then take it to your father to eat, so that he may bless you before he dies.”" + }, + { + "verseNum": 11, + "text": "Jacob answered his mother Rebekah, “Look, my brother Esau is a hairy man, but I am smooth-skinned." + }, + { + "verseNum": 12, + "text": "What if my father touches me? Then I would be revealed to him as a deceiver, and I would bring upon myself a curse rather than a blessing.”" + }, + { + "verseNum": 13, + "text": "His mother replied, “Your curse be on me, my son. Just obey my voice and go get them for me.”" + }, + { + "verseNum": 14, + "text": "So Jacob went and got two goats and brought them to his mother, who made the tasty food his father loved." + }, + { + "verseNum": 15, + "text": "And Rebekah took the finest clothes in the house that belonged to her older son Esau, and she put them on her younger son Jacob." + }, + { + "verseNum": 16, + "text": "She also put the skins of the young goats on his hands and on the smooth part of his neck." + }, + { + "verseNum": 17, + "text": "Then she handed her son Jacob the tasty food and bread she had made." + }, + { + "verseNum": 18, + "text": "So Jacob went to his father and said, “My father.”\n \n“Here I am!” he answered. “Which one are you, my son?”" + }, + { + "verseNum": 19, + "text": "Jacob said to his father, “I am Esau, your firstborn. I have done as you told me. Please sit up and eat some of my game, so that you may bless me.”" + }, + { + "verseNum": 20, + "text": "But Isaac asked his son, “How did you ever find it so quickly, my son?”\n \n“Because the LORD your God brought it to me,” he replied." + }, + { + "verseNum": 21, + "text": "Then Isaac said to Jacob, “Please come closer so I can touch you, my son. Are you really my son Esau, or not?”" + }, + { + "verseNum": 22, + "text": "So Jacob came close to his father Isaac, who touched him and said, “The voice is the voice of Jacob, but the hands are the hands of Esau.”" + }, + { + "verseNum": 23, + "text": "Isaac did not recognize him, because his hands were hairy like those of his brother Esau; so he blessed him." + }, + { + "verseNum": 24, + "text": "Again he asked, “Are you really my son Esau?”\n \nAnd he replied, “I am.”" + }, + { + "verseNum": 25, + "text": "“Serve me,” said Isaac, “and let me eat some of my son’s game, so that I may bless you.”\n \nJacob brought it to him, and he ate; then he brought him wine, and he drank." + }, + { + "verseNum": 26, + "text": "Then his father Isaac said to him, “Please come near and kiss me, my son.”" + }, + { + "verseNum": 27, + "text": "So he came near and kissed him. When Isaac smelled his clothing, he blessed him and said:\n \n “Ah, the smell of my son\n is like the smell of a field\n that the LORD has blessed." + }, + { + "verseNum": 28, + "text": "May God give to you the dew of heaven\n and the richness of the earth—\n an abundance of grain and new wine." + }, + { + "verseNum": 29, + "text": "May peoples serve you\n and nations bow down to you.\n May you be the master of your brothers,\n and may the sons of your mother bow down to you.\n May those who curse you be cursed,\n and those who bless you be blessed.”" + }, + { + "verseNum": 30, + "text": "As soon as Isaac had finished blessing him and Jacob had left his father’s presence, his brother Esau returned from the hunt." + }, + { + "verseNum": 31, + "text": "He too made some tasty food, brought it to his father, and said to him, “My father, sit up and eat of your son’s game, so that you may bless me.”" + }, + { + "verseNum": 32, + "text": "But his father Isaac replied, “Who are you?”\n \n“I am Esau, your firstborn son,” he answered." + }, + { + "verseNum": 33, + "text": "Isaac began to tremble violently and said, “Who was it, then, who hunted the game and brought it to me? Before you came in, I ate it all and blessed him—and indeed, he will be blessed!”" + }, + { + "verseNum": 34, + "text": "When Esau heard his father’s words, he let out a loud and bitter cry and said to his father, “Bless me too, O my father!”" + }, + { + "verseNum": 35, + "text": "But Isaac replied, “Your brother came deceitfully and took your blessing.”" + }, + { + "verseNum": 36, + "text": "So Esau declared, “Is he not rightly named Jacob? For he has cheated me twice. He took my birthright, and now he has taken my blessing.” Then he asked, “Haven’t you saved a blessing for me?”" + }, + { + "verseNum": 37, + "text": "But Isaac answered Esau: “Look, I have made him your master and given him all his relatives as servants; I have sustained him with grain and new wine. What is left that I can do for you, my son?”" + }, + { + "verseNum": 38, + "text": "Esau said to his father, “Do you have only one blessing, my father? Bless me too, O my father!” Then Esau wept aloud." + }, + { + "verseNum": 39, + "text": "His father Isaac answered him:\n \n “Behold, your dwelling place shall be\n away from the richness of the land,\n away from the dew of heaven above." + }, + { + "verseNum": 40, + "text": "You shall live by the sword\n and serve your brother.\n But when you rebel,\n you will tear his yoke from your neck.”" + }, + { + "verseNum": 41, + "text": "Esau held a grudge against Jacob because of the blessing his father had given him. And Esau said in his heart, “The days of mourning for my father are at hand; then I will kill my brother Jacob.”" + }, + { + "verseNum": 42, + "text": "When the words of her older son Esau were relayed to Rebekah, she sent for her younger son Jacob and told him, “Look, your brother Esau is consoling himself by plotting to kill you." + }, + { + "verseNum": 43, + "text": "So now, my son, obey my voice and flee at once to my brother Laban in Haran." + }, + { + "verseNum": 44, + "text": "Stay with him for a while, until your brother’s fury subsides—" + }, + { + "verseNum": 45, + "text": "until your brother’s rage against you wanes and he forgets what you have done to him. Then I will send for you and bring you back from there. Why should I lose both of you in one day?”" + }, + { + "verseNum": 46, + "text": "Then Rebekah said to Isaac, “I am weary of my life because of these Hittite women. If Jacob takes a Hittite wife from among them, what good is my life?”" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "So Isaac called for Jacob and blessed him. “Do not take a wife from the Canaanite women,” he commanded." + }, + { + "verseNum": 2, + "text": "“Go at once to Paddan-aram, to the house of your mother’s father Bethuel, and take a wife from among the daughters of Laban, your mother’s brother." + }, + { + "verseNum": 3, + "text": "May God Almighty bless you and make you fruitful and multiply you, so that you may become a company of peoples." + }, + { + "verseNum": 4, + "text": "And may He give the blessing of Abraham to you and your descendants, so that you may possess the land where you dwell as a foreigner, the land God gave to Abraham.”" + }, + { + "verseNum": 5, + "text": "So Isaac sent Jacob to Paddan-aram, to Laban son of Bethuel the Aramean, the brother of Rebekah, who was the mother of Jacob and Esau." + }, + { + "verseNum": 6, + "text": "Now Esau learned that Isaac had blessed Jacob and sent him to Paddan-aram to take a wife there, commanding him, “Do not marry a Canaanite woman,”" + }, + { + "verseNum": 7, + "text": "and that Jacob had obeyed his father and mother and gone to Paddan-aram." + }, + { + "verseNum": 8, + "text": "And seeing that his father Isaac disapproved of the Canaanite women," + }, + { + "verseNum": 9, + "text": "Esau went to Ishmael and married Mahalath, the sister of Nebaioth and daughter of Abraham’s son Ishmael, in addition to the wives he already had." + }, + { + "verseNum": 10, + "text": "Meanwhile Jacob left Beersheba and set out for Haran." + }, + { + "verseNum": 11, + "text": "On reaching a certain place, he spent the night there because the sun had set. And taking one of the stones from that place, he put it under his head and lay down to sleep." + }, + { + "verseNum": 12, + "text": "And Jacob had a dream about a ladder that rested on the earth with its top reaching up to heaven, and God’s angels were going up and down the ladder." + }, + { + "verseNum": 13, + "text": "And there at the top the LORD was standing and saying, “I am the LORD, the God of your father Abraham and the God of Isaac. I will give you and your descendants the land on which you now lie." + }, + { + "verseNum": 14, + "text": "Your descendants will be like the dust of the earth, and you will spread out to the west and east and north and south. All the families of the earth will be blessed through you and your offspring." + }, + { + "verseNum": 15, + "text": "Look, I am with you, and I will watch over you wherever you go, and I will bring you back to this land. For I will not leave you until I have done what I have promised you.”" + }, + { + "verseNum": 16, + "text": "When Jacob woke up, he thought, “Surely the LORD is in this place, and I was unaware of it.”" + }, + { + "verseNum": 17, + "text": "And he was afraid and said, “How awesome is this place! This is none other than the house of God; this is the gate of heaven!”" + }, + { + "verseNum": 18, + "text": "Early the next morning, Jacob took the stone that he had placed under his head, and he set it up as a pillar. He poured oil on top of it," + }, + { + "verseNum": 19, + "text": "and he called that place Bethel, though previously the city had been named Luz." + }, + { + "verseNum": 20, + "text": "Then Jacob made a vow, saying, “If God will be with me and watch over me on this journey, and if He will provide me with food to eat and clothes to wear," + }, + { + "verseNum": 21, + "text": "so that I may return safely to my father’s house, then the LORD will be my God." + }, + { + "verseNum": 22, + "text": "And this stone I have set up as a pillar will be God’s house, and of all that You give me I will surely give You a tenth.”" + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "Jacob resumed his journey and came to the land of the people of the east." + }, + { + "verseNum": 2, + "text": "He looked and saw a well in the field, and near it lay three flocks of sheep, because the sheep were watered from this well. And a large stone covered the mouth of the well." + }, + { + "verseNum": 3, + "text": "When all the flocks had been gathered there, the shepherds would roll away the stone from the mouth of the well and water the sheep. Then they would return the stone to its place over the mouth of the well." + }, + { + "verseNum": 4, + "text": "“My brothers,” Jacob asked the shepherds, “where are you from?”\n \n“We are from Haran,” they answered." + }, + { + "verseNum": 5, + "text": "“Do you know Laban the grandson of Nahor?” Jacob asked.\n \n“We know him,” they replied." + }, + { + "verseNum": 6, + "text": "“Is he well?” Jacob inquired.\n \n“Yes,” they answered, “and here comes his daughter Rachel with his sheep.”" + }, + { + "verseNum": 7, + "text": "“Look,” said Jacob, “it is still broad daylight; it is not yet time to gather the livestock. Water the sheep and take them back to pasture.”" + }, + { + "verseNum": 8, + "text": "But they replied, “We cannot, until all the flocks have been gathered and the stone has been rolled away from the mouth of the well. Then we will water the sheep.”" + }, + { + "verseNum": 9, + "text": "While he was still speaking with them, Rachel arrived with her father’s sheep, for she was a shepherdess." + }, + { + "verseNum": 10, + "text": "As soon as Jacob saw Rachel, the daughter of his mother’s brother Laban, with Laban’s sheep, he went up and rolled the stone away from the mouth of the well and watered his uncle’s sheep." + }, + { + "verseNum": 11, + "text": "Then Jacob kissed Rachel and wept aloud." + }, + { + "verseNum": 12, + "text": "He told Rachel that he was Rebekah’s son, a relative of her father, and she ran and told her father." + }, + { + "verseNum": 13, + "text": "When Laban heard the news about his sister’s son Jacob, he ran out to meet him. He embraced him and kissed him and brought him to his home, where Jacob told him all that had happened." + }, + { + "verseNum": 14, + "text": "Then Laban declared, “You are indeed my own flesh and blood.”\n \nAfter Jacob had stayed with him a month," + }, + { + "verseNum": 15, + "text": "Laban said to him, “Just because you are my relative, should you work for nothing? Tell me what your wages should be.”" + }, + { + "verseNum": 16, + "text": "Now Laban had two daughters; the older was named Leah, and the younger was named Rachel." + }, + { + "verseNum": 17, + "text": "Leah had weak eyes, but Rachel was shapely and beautiful." + }, + { + "verseNum": 18, + "text": "Since Jacob loved Rachel, he answered, “I will serve you seven years for your younger daughter Rachel.”" + }, + { + "verseNum": 19, + "text": "Laban replied, “Better that I give her to you than to another. Stay here with me.”" + }, + { + "verseNum": 20, + "text": "So Jacob served seven years for Rachel, yet it seemed but a few days because of his love for her." + }, + { + "verseNum": 21, + "text": "Finally Jacob said to Laban, “Grant me my wife, for my time is complete, and I want to sleep with her.”" + }, + { + "verseNum": 22, + "text": "So Laban invited all the men of that place and prepared a feast." + }, + { + "verseNum": 23, + "text": "But when evening came, Laban took his daughter Leah and gave her to Jacob, and he slept with her." + }, + { + "verseNum": 24, + "text": "And Laban gave his servant girl Zilpah to his daughter Leah as her maidservant." + }, + { + "verseNum": 25, + "text": "When morning came, there was Leah! “What have you done to me?” Jacob said to Laban. “Wasn’t it for Rachel that I served you? Why have you deceived me?”" + }, + { + "verseNum": 26, + "text": "Laban replied, “It is not our custom here to give the younger daughter in marriage before the older." + }, + { + "verseNum": 27, + "text": "Finish this week’s celebration, and we will give you the younger one in return for another seven years of work.”" + }, + { + "verseNum": 28, + "text": "And Jacob did just that. He finished the week’s celebration, and Laban gave him his daughter Rachel as his wife." + }, + { + "verseNum": 29, + "text": "Laban also gave his servant girl Bilhah to his daughter Rachel as her maidservant." + }, + { + "verseNum": 30, + "text": "Jacob slept with Rachel as well, and indeed, he loved Rachel more than Leah. So he worked for Laban another seven years." + }, + { + "verseNum": 31, + "text": "When the LORD saw that Leah was unloved, He opened her womb; but Rachel was barren." + }, + { + "verseNum": 32, + "text": "And Leah conceived and gave birth to a son, and she named him Reuben, for she said, “The LORD has seen my affliction. Surely my husband will love me now.”" + }, + { + "verseNum": 33, + "text": "Again she conceived and gave birth to a son, and she said, “Because the LORD has heard that I am unloved, He has given me this son as well.” So she named him Simeon." + }, + { + "verseNum": 34, + "text": "Once again Leah conceived and gave birth to a son, and she said, “Now at last my husband will become attached to me, because I have borne him three sons.” So he was named Levi." + }, + { + "verseNum": 35, + "text": "And once more she conceived and gave birth to a son and said, “This time I will praise the LORD.” So she named him Judah. Then Leah stopped having children." + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "When Rachel saw that she was not bearing any children for Jacob, she envied her sister. “Give me children, or I will die!” she said to Jacob." + }, + { + "verseNum": 2, + "text": "Jacob became angry with Rachel and said, “Am I in the place of God, who has withheld children from you?”" + }, + { + "verseNum": 3, + "text": "Then she said, “Here is my maidservant Bilhah. Sleep with her, that she may bear children for me, so that through her I too can build a family.”" + }, + { + "verseNum": 4, + "text": "So Rachel gave Jacob her servant Bilhah as a wife, and he slept with her," + }, + { + "verseNum": 5, + "text": "and Bilhah conceived and bore him a son." + }, + { + "verseNum": 6, + "text": "Then Rachel said, “God has vindicated me; He has heard my plea and given me a son.” So she named him Dan." + }, + { + "verseNum": 7, + "text": "And Rachel’s servant Bilhah conceived again and bore Jacob a second son." + }, + { + "verseNum": 8, + "text": "Then Rachel said, “In my great struggles, I have wrestled with my sister and won.” So she named him Naphtali." + }, + { + "verseNum": 9, + "text": "When Leah saw that she had stopped having children, she gave her servant Zilpah to Jacob as a wife." + }, + { + "verseNum": 10, + "text": "And Leah’s servant Zilpah bore Jacob a son." + }, + { + "verseNum": 11, + "text": "Then Leah said, “How fortunate!” So she named him Gad." + }, + { + "verseNum": 12, + "text": "When Leah’s servant Zilpah bore Jacob a second son," + }, + { + "verseNum": 13, + "text": "Leah said, “How happy I am! For the women call me happy.” So she named him Asher." + }, + { + "verseNum": 14, + "text": "Now during the wheat harvest, Reuben went out and found some mandrakes in the field. When he brought them to his mother, Rachel begged Leah, “Please give me some of your son’s mandrakes.”" + }, + { + "verseNum": 15, + "text": "But Leah replied, “Is it not enough that you have taken away my husband? Now you want to take my son’s mandrakes as well?”\n \n“Very well,” said Rachel, “he may sleep with you tonight in exchange for your son’s mandrakes.”" + }, + { + "verseNum": 16, + "text": "When Jacob came in from the field that evening, Leah went out to meet him and said, “You must come with me, for I have hired you with my son’s mandrakes.” So he slept with her that night." + }, + { + "verseNum": 17, + "text": "And God listened to Leah, and she conceived and bore a fifth son to Jacob." + }, + { + "verseNum": 18, + "text": "Then Leah said, “God has rewarded me for giving my maidservant to my husband.” So she named him Issachar." + }, + { + "verseNum": 19, + "text": "Again Leah conceived and bore a sixth son to Jacob." + }, + { + "verseNum": 20, + "text": "“God has given me a good gift,” she said. “This time my husband will honor me, because I have borne him six sons.” And she named him Zebulun." + }, + { + "verseNum": 21, + "text": "After that, Leah gave birth to a daughter and named her Dinah." + }, + { + "verseNum": 22, + "text": "Then God remembered Rachel. He listened to her and opened her womb," + }, + { + "verseNum": 23, + "text": "and she conceived and gave birth to a son. “God has taken away my shame,” she said." + }, + { + "verseNum": 24, + "text": "She named him Joseph, and said, “May the LORD add to me another son.”" + }, + { + "verseNum": 25, + "text": "Now after Rachel had given birth to Joseph, Jacob said to Laban, “Send me on my way so I can return to my homeland." + }, + { + "verseNum": 26, + "text": "Give me my wives and children for whom I have served you, that I may go on my way. You know how hard I have worked for you.”" + }, + { + "verseNum": 27, + "text": "But Laban replied, “If I have found favor in your eyes, please stay. I have learned by divination that the LORD has blessed me because of you.”" + }, + { + "verseNum": 28, + "text": "And he added, “Name your wages, and I will pay them.”" + }, + { + "verseNum": 29, + "text": "Then Jacob answered, “You know how I have served you and how your livestock have thrived under my care." + }, + { + "verseNum": 30, + "text": "Indeed, you had very little before my arrival, but now your wealth has increased many times over. The LORD has blessed you wherever I set foot. But now, when may I also provide for my own household?”" + }, + { + "verseNum": 31, + "text": "“What can I give you?” Laban asked.\n \n“You do not need to give me anything,” Jacob replied. “If you do this one thing for me, I will keep on shepherding and keeping your flocks." + }, + { + "verseNum": 32, + "text": "Let me go through all your flocks today and remove from them every speckled or spotted sheep, every dark-colored lamb, and every spotted or speckled goat. These will be my wages." + }, + { + "verseNum": 33, + "text": "So my honesty will testify for me when you come to check on my wages in the future. If I have any goats that are not speckled or spotted, or any lambs that are not dark-colored, they will be considered stolen.”" + }, + { + "verseNum": 34, + "text": "“Agreed,” said Laban. “Let it be as you have said.”" + }, + { + "verseNum": 35, + "text": "That very day Laban removed all the streaked or spotted male goats and every speckled or spotted female goat—every one that had any white on it—and every dark-colored lamb, and he placed them under the care of his sons." + }, + { + "verseNum": 36, + "text": "Then he put a three-day journey between himself and Jacob, while Jacob was shepherding the rest of Laban’s flocks." + }, + { + "verseNum": 37, + "text": "Jacob, however, took fresh branches of poplar, almond, and plane trees, and peeled the bark, exposing the white inner wood of the branches." + }, + { + "verseNum": 38, + "text": "Then he set the peeled branches in the watering troughs in front of the flocks coming in to drink. So when the flocks were in heat and came to drink," + }, + { + "verseNum": 39, + "text": "they mated in front of the branches. And they bore young that were streaked or speckled or spotted." + }, + { + "verseNum": 40, + "text": "Jacob set apart the young, but made the rest face the streaked dark-colored sheep in Laban’s flocks. Then he set his own stock apart and did not put them with Laban’s animals." + }, + { + "verseNum": 41, + "text": "Whenever the stronger females of the flock were in heat, Jacob would place the branches in the troughs, in full view of the animals, so that they would breed in front of the branches." + }, + { + "verseNum": 42, + "text": "But if the animals were weak, he did not set out the branches. So the weaker animals went to Laban and the stronger ones to Jacob." + }, + { + "verseNum": 43, + "text": "Thus Jacob became exceedingly prosperous. He owned large flocks, maidservants and menservants, and camels and donkeys." + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Now Jacob heard that Laban’s sons were saying, “Jacob has taken away all that belonged to our father and built all this wealth at our father’s expense.”" + }, + { + "verseNum": 2, + "text": "And Jacob saw from the countenance of Laban that his attitude toward him had changed." + }, + { + "verseNum": 3, + "text": "Then the LORD said to Jacob, “Go back to the land of your fathers and to your kindred, and I will be with you.”" + }, + { + "verseNum": 4, + "text": "So Jacob sent word and called Rachel and Leah to the field where his flocks were," + }, + { + "verseNum": 5, + "text": "and he told them, “I can see from your father’s countenance that his attitude toward me has changed; but the God of my father has been with me." + }, + { + "verseNum": 6, + "text": "You know that I have served your father with all my strength." + }, + { + "verseNum": 7, + "text": "And although he has cheated me and changed my wages ten times, God has not allowed him to harm me." + }, + { + "verseNum": 8, + "text": "If he said, ‘The speckled will be your wages,’ then the whole flock bore speckled offspring. If he said, ‘The streaked will be your wages,’ then the whole flock bore streaked offspring." + }, + { + "verseNum": 9, + "text": "Thus God has taken away your father’s livestock and given them to me." + }, + { + "verseNum": 10, + "text": "When the flocks were breeding, I saw in a dream that the streaked, spotted, and speckled males were mating with the females." + }, + { + "verseNum": 11, + "text": "In that dream the angel of God said to me, ‘Jacob!’\n \nAnd I replied, ‘Here I am.’" + }, + { + "verseNum": 12, + "text": "‘Look up,’ he said, ‘and see that all the males that are mating with the flock are streaked, spotted, or speckled; for I have seen all that Laban has done to you." + }, + { + "verseNum": 13, + "text": "I am the God of Bethel, where you anointed the pillar and made a solemn vow to Me. Now get up and leave this land at once, and return to your native land.’”" + }, + { + "verseNum": 14, + "text": "And Rachel and Leah replied, “Do we have any portion or inheritance left in our father’s house?" + }, + { + "verseNum": 15, + "text": "Are we not regarded by him as outsiders? Not only has he sold us, but he has certainly squandered what was paid for us." + }, + { + "verseNum": 16, + "text": "Surely all the wealth that God has taken away from our father belongs to us and to our children. So do whatever God has told you.”" + }, + { + "verseNum": 17, + "text": "Then Jacob got up and put his children and his wives on camels," + }, + { + "verseNum": 18, + "text": "and he drove all his livestock before him, along with all the possessions he had acquired in Paddan-aram, to go to his father Isaac in the land in Canaan." + }, + { + "verseNum": 19, + "text": "Now while Laban was out shearing his sheep, Rachel stole her father’s household idols." + }, + { + "verseNum": 20, + "text": "Moreover, Jacob deceived Laban the Aramean by not telling him that he was running away." + }, + { + "verseNum": 21, + "text": "So he fled with all his possessions, crossed the Euphrates, and headed for the hill country of Gilead." + }, + { + "verseNum": 22, + "text": "On the third day Laban was informed that Jacob had fled." + }, + { + "verseNum": 23, + "text": "So he took his relatives with him, pursued Jacob for seven days, and overtook him in the hill country of Gilead." + }, + { + "verseNum": 24, + "text": "But that night God came to Laban the Aramean in a dream and warned him, “Be careful not to say anything to Jacob, either good or bad.”" + }, + { + "verseNum": 25, + "text": "Now Jacob had pitched his tent in the hill country of Gilead when Laban overtook him, and Laban and his relatives camped there as well." + }, + { + "verseNum": 26, + "text": "Then Laban said to Jacob, “What have you done? You have deceived me and carried off my daughters like captives of war!" + }, + { + "verseNum": 27, + "text": "Why did you run away secretly and deceive me, without even telling me? I would have sent you away with joy and singing, with tambourines and harps." + }, + { + "verseNum": 28, + "text": "But you did not even let me kiss my grandchildren and my daughters goodbye. Now you have done a foolish thing." + }, + { + "verseNum": 29, + "text": "I have power to do you great harm, but last night the God of your father said to me, ‘Be careful not to say anything to Jacob, either good or bad.’" + }, + { + "verseNum": 30, + "text": "Now you have gone off because you long for your father’s house. But why have you stolen my gods?”" + }, + { + "verseNum": 31, + "text": "“I was afraid,” Jacob answered, “for I thought you would take your daughters from me by force." + }, + { + "verseNum": 32, + "text": "If you find your gods with anyone here, he shall not live! In the presence of our relatives, see for yourself if anything is yours, and take it back.” For Jacob did not know that Rachel had stolen the idols." + }, + { + "verseNum": 33, + "text": "So Laban went into Jacob’s tent, then Leah’s tent, and then the tents of the two maidservants, but he found nothing. Then he left Leah’s tent and entered Rachel’s tent." + }, + { + "verseNum": 34, + "text": "Now Rachel had taken Laban’s household idols, put them in the saddlebag of her camel, and was sitting on them. And Laban searched everything in the tent but found nothing." + }, + { + "verseNum": 35, + "text": "Rachel said to her father, “Sir, do not be angry that I cannot stand up before you; for I am having my period.” So Laban searched, but could not find the household idols." + }, + { + "verseNum": 36, + "text": "Then Jacob became incensed and challenged Laban. “What is my crime?” he said. “For what sin of mine have you so hotly pursued me?" + }, + { + "verseNum": 37, + "text": "You have searched all my goods! Have you found anything that belongs to you? Put it here before my brothers and yours, that they may judge between the two of us." + }, + { + "verseNum": 38, + "text": "I have been with you for twenty years now. Your sheep and goats have not miscarried, nor have I eaten the rams of your flock." + }, + { + "verseNum": 39, + "text": "I did not bring you anything torn by wild beasts; I bore the loss myself. And you demanded payment from me for what was stolen by day or night." + }, + { + "verseNum": 40, + "text": "As it was, the heat consumed me by day and the frost by night, and sleep fled from my eyes." + }, + { + "verseNum": 41, + "text": "Thus for twenty years I have served in your household—fourteen years for your two daughters and six years for your flocks—and you have changed my wages ten times!" + }, + { + "verseNum": 42, + "text": "If the God of my father, the God of Abraham and the Fear of Isaac, had not been with me, surely by now you would have sent me away empty-handed. But God has seen my affliction and the toil of my hands, and last night He rendered judgment.”" + }, + { + "verseNum": 43, + "text": "But Laban answered Jacob, “These daughters are my daughters, these sons are my sons, and these flocks are my flocks! Everything you see is mine! Yet what can I do today about these daughters of mine or the children they have borne?" + }, + { + "verseNum": 44, + "text": "Come now, let us make a covenant, you and I, and let it serve as a witness between you and me.”" + }, + { + "verseNum": 45, + "text": "So Jacob picked out a stone and set it up as a pillar," + }, + { + "verseNum": 46, + "text": "and he said to his relatives, “Gather some stones.” So they took stones and made a mound, and there by the mound they ate." + }, + { + "verseNum": 47, + "text": "Laban called it Jegar-sahadutha, and Jacob called it Galeed." + }, + { + "verseNum": 48, + "text": "Then Laban declared, “This mound is a witness between you and me this day.”\n \nTherefore the place was called Galeed." + }, + { + "verseNum": 49, + "text": "It was also called Mizpah, because Laban said, “May the LORD keep watch between you and me when we are absent from each other." + }, + { + "verseNum": 50, + "text": "If you mistreat my daughters or take other wives, although no one is with us, remember that God is a witness between you and me.”" + }, + { + "verseNum": 51, + "text": "Laban also said to Jacob, “Here is the mound, and here is the pillar I have set up between you and me." + }, + { + "verseNum": 52, + "text": "This mound is a witness, and this pillar is a witness, that I will not go past this mound to harm you, and you will not go past this mound and pillar to harm me." + }, + { + "verseNum": 53, + "text": "May the God of Abraham and the God of Nahor, the God of their father, judge between us.”\n \nSo Jacob swore by the Fear of his father Isaac." + }, + { + "verseNum": 54, + "text": "Then Jacob offered a sacrifice on the mountain and invited his relatives to eat a meal. And after they had eaten, they spent the night on the mountain." + }, + { + "verseNum": 55, + "text": "Early the next morning, Laban got up and kissed his grandchildren and daughters and blessed them. Then he left to return home." + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "Jacob also went on his way, and the angels of God met him." + }, + { + "verseNum": 2, + "text": "When Jacob saw them, he said, “This is the camp of God.” So he named that place Mahanaim." + }, + { + "verseNum": 3, + "text": "Jacob sent messengers ahead of him to his brother Esau in the land of Seir, the country of Edom." + }, + { + "verseNum": 4, + "text": "He instructed them, “You are to say to my master Esau, ‘Your servant Jacob says: I have been staying with Laban and have remained there until now." + }, + { + "verseNum": 5, + "text": "I have oxen, donkeys, flocks, menservants, and maidservants. I have sent this message to inform my master, so that I may find favor in your sight.’”" + }, + { + "verseNum": 6, + "text": "When the messengers returned to Jacob, they said, “We went to your brother Esau, and now he is coming to meet you—he and four hundred men with him.”" + }, + { + "verseNum": 7, + "text": "In great fear and distress, Jacob divided his people into two camps, as well as the flocks and herds and camels." + }, + { + "verseNum": 8, + "text": "He thought, “If Esau comes and attacks one camp, then the other camp can escape.”" + }, + { + "verseNum": 9, + "text": "Then Jacob declared, “O God of my father Abraham, God of my father Isaac, the LORD who told me, ‘Go back to your country and to your kindred, and I will make you prosper,’" + }, + { + "verseNum": 10, + "text": "I am unworthy of all the kindness and faithfulness You have shown Your servant. Indeed, with only my staff I came across the Jordan, but now I have become two camps." + }, + { + "verseNum": 11, + "text": "Please deliver me from the hand of my brother Esau, for I am afraid that he may come and attack me and the mothers and children with me." + }, + { + "verseNum": 12, + "text": "But You have said, ‘I will surely make you prosper, and I will make your offspring like the sand of the sea, too numerous to count.’”" + }, + { + "verseNum": 13, + "text": "Jacob spent the night there, and from what he had brought with him, he selected a gift for his brother Esau:" + }, + { + "verseNum": 14, + "text": "200 female goats, 20 male goats, 200 ewes, 20 rams," + }, + { + "verseNum": 15, + "text": "30 milk camels with their young, 40 cows, 10 bulls, 20 female donkeys, and 10 male donkeys." + }, + { + "verseNum": 16, + "text": "He entrusted them to his servants in separate herds and told them, “Go on ahead of me, and keep some distance between the herds.”" + }, + { + "verseNum": 17, + "text": "He instructed the one in the lead, “When my brother Esau meets you and asks, ‘To whom do you belong, where are you going, and whose animals are these before you?’" + }, + { + "verseNum": 18, + "text": "then you are to say, ‘They belong to your servant Jacob. They are a gift, sent to my lord Esau. And behold, Jacob is behind us.’”" + }, + { + "verseNum": 19, + "text": "He also instructed the second, the third, and all those following behind the herds: “When you meet Esau, you are to say the same thing to him." + }, + { + "verseNum": 20, + "text": "You are also to say, ‘Look, your servant Jacob is right behind us.’” For he thought, “I will appease Esau with the gift that is going before me. After that I can face him, and perhaps he will accept me.”" + }, + { + "verseNum": 21, + "text": "So Jacob’s gifts went on before him, while he spent the night in the camp." + }, + { + "verseNum": 22, + "text": "During the night Jacob got up and took his two wives, his two maidservants, and his eleven sons, and crossed the ford of the Jabbok." + }, + { + "verseNum": 23, + "text": "He took them and sent them across the stream, along with all his possessions." + }, + { + "verseNum": 24, + "text": "So Jacob was left all alone, and there a man wrestled with him until daybreak." + }, + { + "verseNum": 25, + "text": "When the man saw that he could not overpower Jacob, he struck the socket of Jacob’s hip and dislocated it as they wrestled." + }, + { + "verseNum": 26, + "text": "Then the man said, “Let me go, for it is daybreak.”\n \nBut Jacob replied, “I will not let you go unless you bless me.”" + }, + { + "verseNum": 27, + "text": "“What is your name?” the man asked.\n \n“Jacob,” he replied." + }, + { + "verseNum": 28, + "text": "Then the man said, “Your name will no longer be Jacob, but Israel, because you have struggled with God and with men, and you have prevailed.”" + }, + { + "verseNum": 29, + "text": "And Jacob requested, “Please tell me your name.”\n \nBut he replied, “Why do you ask my name?” Then he blessed Jacob there." + }, + { + "verseNum": 30, + "text": "So Jacob named the place Peniel, saying, “Indeed, I have seen God face to face, and yet my life was spared.”" + }, + { + "verseNum": 31, + "text": "The sun rose above him as he passed by Penuel, and he was limping because of his hip." + }, + { + "verseNum": 32, + "text": "Therefore to this day the Israelites do not eat the tendon which is at the socket of the hip, because the socket of Jacob’s hip was struck near that tendon." + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Now Jacob looked up and saw Esau coming toward him with four hundred men. So he divided the children among Leah, Rachel, and the two maidservants." + }, + { + "verseNum": 2, + "text": "He put the maidservants and their children in front, Leah and her children next, and Rachel and Joseph at the rear." + }, + { + "verseNum": 3, + "text": "But Jacob himself went on ahead and bowed to the ground seven times as he approached his brother." + }, + { + "verseNum": 4, + "text": "Esau, however, ran to him and embraced him, threw his arms around his neck, and kissed him. And they both wept." + }, + { + "verseNum": 5, + "text": "When Esau looked up and saw the women and children, he asked, “Who are these with you?”\n \nJacob answered, “These are the children God has graciously given your servant.”" + }, + { + "verseNum": 6, + "text": "Then the maidservants and their children approached and bowed down." + }, + { + "verseNum": 7, + "text": "Leah and her children also approached and bowed down, and then Joseph and Rachel approached and bowed down." + }, + { + "verseNum": 8, + "text": "“What do you mean by sending this whole company to meet me?” asked Esau.\n \n“To find favor in your sight, my lord,” Jacob answered." + }, + { + "verseNum": 9, + "text": "“I already have plenty, my brother,” Esau replied. “Keep what belongs to you.”" + }, + { + "verseNum": 10, + "text": "But Jacob insisted, “No, please! If I have found favor in your sight, then receive this gift from my hand. For indeed, I have seen your face, and it is like seeing the face of God, since you have received me favorably." + }, + { + "verseNum": 11, + "text": "Please accept my gift that was brought to you, because God has been gracious to me and I have all I need.” So Jacob pressed him until he accepted." + }, + { + "verseNum": 12, + "text": "Then Esau said, “Let us be on our way, and I will go ahead of you.”" + }, + { + "verseNum": 13, + "text": "But Jacob replied, “My lord knows that the children are frail, and I must care for sheep and cattle that are nursing their young. If they are driven hard for even a day, all the animals will die." + }, + { + "verseNum": 14, + "text": "Please let my lord go ahead of his servant. I will continue on slowly, at a comfortable pace for the livestock and children, until I come to my lord at Seir.”" + }, + { + "verseNum": 15, + "text": "“Let me leave some of my people with you,” Esau said.\n \nBut Jacob replied, “Why do that? Let me find favor in the sight of my lord.”" + }, + { + "verseNum": 16, + "text": "So that day Esau started on his way back to Seir," + }, + { + "verseNum": 17, + "text": "but Jacob went on to Succoth, where he built a house for himself and shelters for his livestock; that is why the place was called Succoth." + }, + { + "verseNum": 18, + "text": "After Jacob had come from Paddan-aram, he arrived safely at the city of Shechem in the land of Canaan, and he camped just outside the city." + }, + { + "verseNum": 19, + "text": "And the plot of ground where he pitched his tent, he purchased from the sons of Hamor, Shechem’s father, for a hundred pieces of silver." + }, + { + "verseNum": 20, + "text": "There he set up an altar and called it El-Elohe-Israel." + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Now Dinah, the daughter Leah had borne to Jacob, went out to visit the daughters of the land." + }, + { + "verseNum": 2, + "text": "When Shechem son of Hamor the Hivite, the prince of the region, saw her, he took her and lay with her by force." + }, + { + "verseNum": 3, + "text": "And his soul was drawn to Dinah, the daughter of Jacob. He loved the young girl and spoke to her tenderly." + }, + { + "verseNum": 4, + "text": "So Shechem told his father Hamor, “Get me this girl as a wife.”" + }, + { + "verseNum": 5, + "text": "Jacob heard that Shechem had defiled his daughter Dinah, but since his sons were with his livestock in the field, he remained silent about it until they returned." + }, + { + "verseNum": 6, + "text": "Meanwhile, Shechem’s father Hamor came to speak with Jacob." + }, + { + "verseNum": 7, + "text": "When Jacob’s sons heard what had happened, they returned from the field. They were filled with grief and fury, because Shechem had committed an outrage in Israel by lying with Jacob’s daughter—a thing that should not be done." + }, + { + "verseNum": 8, + "text": "But Hamor said to them, “My son Shechem longs for your daughter. Please give her to him as his wife." + }, + { + "verseNum": 9, + "text": "Intermarry with us; give us your daughters, and take our daughters for yourselves." + }, + { + "verseNum": 10, + "text": "You may settle among us, and the land will be open to you. Live here, move about freely, and acquire your own property.”" + }, + { + "verseNum": 11, + "text": "Then Shechem said to Dinah’s father and brothers, “Grant me this favor, and I will give you whatever you ask." + }, + { + "verseNum": 12, + "text": "Demand a high dowry and an expensive gift, and I will give you whatever you ask. Only give me the girl as my wife!”" + }, + { + "verseNum": 13, + "text": "But because Shechem had defiled their sister Dinah, Jacob’s sons answered him and his father Hamor deceitfully." + }, + { + "verseNum": 14, + "text": "“We cannot do such a thing,” they said. “To give our sister to an uncircumcised man would be a disgrace to us." + }, + { + "verseNum": 15, + "text": "We will consent to this on one condition, that you become circumcised like us—every one of your males." + }, + { + "verseNum": 16, + "text": "Then we will give you our daughters and take your daughters for ourselves. We will dwell among you and become one people." + }, + { + "verseNum": 17, + "text": "But if you will not agree to be circumcised, then we will take our sister and go.”" + }, + { + "verseNum": 18, + "text": "Their offer seemed good to Hamor and his son Shechem." + }, + { + "verseNum": 19, + "text": "The young man, who was the most respected of all his father’s household, did not hesitate to fulfill this request, because he was delighted with Jacob’s daughter." + }, + { + "verseNum": 20, + "text": "So Hamor and his son Shechem went to the gate of their city and addressed the men of their city:" + }, + { + "verseNum": 21, + "text": "“These men are at peace with us. Let them live and trade in our land; indeed, it is large enough for them. Let us take their daughters in marriage and give our daughters to them." + }, + { + "verseNum": 22, + "text": "But only on this condition will the men agree to dwell with us and be one people: if all our men are circumcised as they are." + }, + { + "verseNum": 23, + "text": "Will not their livestock, their possessions, and all their animals become ours? Only let us consent to them, and they will dwell among us.”" + }, + { + "verseNum": 24, + "text": "All the men who went out of the city gate listened to Hamor and his son Shechem, and every male of the city was circumcised." + }, + { + "verseNum": 25, + "text": "Three days later, while they were still in pain, two of Jacob’s sons (Dinah’s brothers Simeon and Levi) took their swords, went into the unsuspecting city, and slaughtered every male." + }, + { + "verseNum": 26, + "text": "They killed Hamor and his son Shechem with their swords, took Dinah out of Shechem’s house, and went away." + }, + { + "verseNum": 27, + "text": "Jacob’s other sons came upon the slaughter and looted the city, because their sister had been defiled." + }, + { + "verseNum": 28, + "text": "They took their flocks and herds and donkeys, and everything else in the city or in the field." + }, + { + "verseNum": 29, + "text": "They carried off all their possessions and women and children, and they plundered everything in their houses." + }, + { + "verseNum": 30, + "text": "Then Jacob said to Simeon and Levi, “You have brought trouble upon me by making me a stench to the Canaanites and Perizzites, the people of this land. We are few in number; if they unite against me and attack me, I and my household will be destroyed.”" + }, + { + "verseNum": 31, + "text": "But they replied, “Should he have treated our sister like a prostitute?”" + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "Then God said to Jacob, “Arise, go up to Bethel, and settle there. Build an altar there to the God who appeared to you when you fled from your brother Esau.”" + }, + { + "verseNum": 2, + "text": "So Jacob told his household and all who were with him, “Get rid of the foreign gods that are among you. Purify yourselves and change your garments." + }, + { + "verseNum": 3, + "text": "Then let us arise and go to Bethel. I will build an altar there to God, who answered me in my day of distress. He has been with me wherever I have gone.”" + }, + { + "verseNum": 4, + "text": "So they gave Jacob all their foreign gods and all their earrings, and Jacob buried them under the oak near Shechem." + }, + { + "verseNum": 5, + "text": "As they set out, a terror from God fell over the surrounding cities, so that they did not pursue Jacob’s sons." + }, + { + "verseNum": 6, + "text": "So Jacob and everyone with him arrived in Luz (that is, Bethel) in the land of Canaan." + }, + { + "verseNum": 7, + "text": "There Jacob built an altar, and he called that place El-bethel, because it was there that God had revealed Himself to Jacob as he fled from his brother." + }, + { + "verseNum": 8, + "text": "Now Deborah, Rebekah’s nurse, died and was buried under the oak below Bethel. So Jacob named it Allon-bachuth." + }, + { + "verseNum": 9, + "text": "After Jacob had returned from Paddan-aram, God appeared to him again and blessed him." + }, + { + "verseNum": 10, + "text": "And God said to him, “Though your name is Jacob, you will no longer be called Jacob. Instead, your name will be Israel.” So God named him Israel." + }, + { + "verseNum": 11, + "text": "And God told him, “I am God Almighty. Be fruitful and multiply. A nation—even a company of nations—shall come from you, and kings shall descend from you." + }, + { + "verseNum": 12, + "text": "The land that I gave to Abraham and Isaac I will give to you, and I will give this land to your descendants after you.”" + }, + { + "verseNum": 13, + "text": "Then God went up from the place where He had spoken with him." + }, + { + "verseNum": 14, + "text": "So Jacob set up a pillar in the place where God had spoken with him—a stone marker—and he poured out a drink offering on it and anointed it with oil." + }, + { + "verseNum": 15, + "text": "Jacob called the place where God had spoken with him Bethel." + }, + { + "verseNum": 16, + "text": "Later, they set out from Bethel, and while they were still some distance from Ephrath, Rachel began to give birth, and her labor was difficult." + }, + { + "verseNum": 17, + "text": "During her severe labor, the midwife said to her, “Do not be afraid, for you are having another son.”" + }, + { + "verseNum": 18, + "text": "And with her last breath—for she was dying—she named him Ben-oni. But his father called him Benjamin." + }, + { + "verseNum": 19, + "text": "So Rachel died and was buried on the way to Ephrath (that is, Bethlehem)." + }, + { + "verseNum": 20, + "text": "Jacob set up a pillar on her grave; it marks Rachel’s tomb to this day." + }, + { + "verseNum": 21, + "text": "Israel again set out and pitched his tent beyond the Tower of Eder." + }, + { + "verseNum": 22, + "text": "While Israel was living in that region, Reuben went in and slept with his father’s concubine Bilhah, and Israel heard about it.\n \nJacob had twelve sons:" + }, + { + "verseNum": 23, + "text": "The sons of Leah were Reuben the firstborn of Jacob, Simeon, Levi, Judah, Issachar, and Zebulun." + }, + { + "verseNum": 24, + "text": "The sons of Rachel were Joseph and Benjamin." + }, + { + "verseNum": 25, + "text": "The sons of Rachel’s maidservant Bilhah were Dan and Naphtali." + }, + { + "verseNum": 26, + "text": "And the sons of Leah’s maidservant Zilpah were Gad and Asher.\n \nThese are the sons of Jacob, who were born to him in Paddan-aram." + }, + { + "verseNum": 27, + "text": "Jacob returned to his father Isaac at Mamre, near Kiriath-arba (that is, Hebron), where Abraham and Isaac had stayed." + }, + { + "verseNum": 28, + "text": "And Isaac lived 180 years." + }, + { + "verseNum": 29, + "text": "Then he breathed his last and died and was gathered to his people, old and full of years. And his sons Esau and Jacob buried him." + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "This is the account of Esau (that is, Edom)." + }, + { + "verseNum": 2, + "text": "Esau took his wives from the daughters of Canaan: Adah daughter of Elon the Hittite, Oholibamah daughter of Anah and granddaughter of Zibeon the Hivite," + }, + { + "verseNum": 3, + "text": "and Basemath daughter of Ishmael and sister of Nebaioth." + }, + { + "verseNum": 4, + "text": "And Adah bore Eliphaz to Esau, Basemath gave birth to Reuel," + }, + { + "verseNum": 5, + "text": "and Oholibamah gave birth to Jeush, Jalam, and Korah. These were the sons of Esau, who were born to him in the land of Canaan." + }, + { + "verseNum": 6, + "text": "Later, Esau took his wives and sons and daughters and all the people of his household, along with his livestock, all his other animals, and all the property he had acquired in Canaan, and he moved to a land far away from his brother Jacob." + }, + { + "verseNum": 7, + "text": "For their possessions were too great for them to dwell together; the land where they stayed could not support them because of their livestock." + }, + { + "verseNum": 8, + "text": "So Esau (that is, Edom) settled in the area of Mount Seir." + }, + { + "verseNum": 9, + "text": "This is the account of Esau, the father of the Edomites, in the area of Mount Seir." + }, + { + "verseNum": 10, + "text": "These are the names of Esau’s sons: Eliphaz son of Esau’s wife Adah, and Reuel son of Esau’s wife Basemath." + }, + { + "verseNum": 11, + "text": "The sons of Eliphaz were Teman, Omar, Zepho, Gatam, and Kenaz." + }, + { + "verseNum": 12, + "text": "Additionally, Timna, a concubine of Esau’s son Eliphaz, gave birth to Amalek. These are the grandsons of Esau’s wife Adah." + }, + { + "verseNum": 13, + "text": "These are the sons of Reuel: Nahath, Zerah, Shammah, and Mizzah. They are the grandsons of Esau’s wife Basemath." + }, + { + "verseNum": 14, + "text": "These are the sons of Esau’s wife Oholibamah (daughter of Anah and granddaughter of Zibeon) whom she bore to Esau: Jeush, Jalam, and Korah." + }, + { + "verseNum": 15, + "text": "These are the chiefs among the sons of Esau. The sons of Eliphaz the firstborn of Esau: Chiefs Teman, Omar, Zepho, Kenaz," + }, + { + "verseNum": 16, + "text": "Korah, Gatam, and Amalek. They are the chiefs of Eliphaz in the land of Edom, and they are the grandsons of Adah." + }, + { + "verseNum": 17, + "text": "These are the sons of Esau’s son Reuel: Chiefs Nahath, Zerah, Shammah, and Mizzah. They are the chiefs descended from Reuel in the land of Edom, and they are the grandsons of Esau’s wife Basemath." + }, + { + "verseNum": 18, + "text": "These are the sons of Esau’s wife Oholibamah: Chiefs Jeush, Jalam, and Korah. They are the chiefs descended from Esau’s wife Oholibamah, the daughter of Anah." + }, + { + "verseNum": 19, + "text": "All these are the sons of Esau (that is, Edom), and they were their chiefs." + }, + { + "verseNum": 20, + "text": "These are the sons of Seir the Horite, who were living in the land: Lotan, Shobal, Zibeon, Anah," + }, + { + "verseNum": 21, + "text": "Dishon, Ezer, and Dishan. They are the chiefs of the Horites, the descendants of Seir in the land of Edom." + }, + { + "verseNum": 22, + "text": "The sons of Lotan were Hori and Hemam. Timna was Lotan’s sister." + }, + { + "verseNum": 23, + "text": "These are the sons of Shobal: Alvan, Manahath, Ebal, Shepho, and Onam." + }, + { + "verseNum": 24, + "text": "These are the sons of Zibeon: Aiah and Anah. (This is the Anah who found the hot springs in the wilderness as he was pasturing the donkeys of his father Zibeon.)" + }, + { + "verseNum": 25, + "text": "These are the children of Anah: Dishon and Oholibamah daughter of Anah." + }, + { + "verseNum": 26, + "text": "These are the sons of Dishon: Hemdan, Eshban, Ithran, and Cheran." + }, + { + "verseNum": 27, + "text": "These are the sons of Ezer: Bilhan, Zaavan, and Akan." + }, + { + "verseNum": 28, + "text": "These are the sons of Dishan: Uz and Aran." + }, + { + "verseNum": 29, + "text": "These are the chiefs of the Horites: Chiefs Lotan, Shobal, Zibeon, Anah," + }, + { + "verseNum": 30, + "text": "Dishon, Ezer, and Dishan. They are the chiefs of the Horites, according to their divisions in the land of Seir." + }, + { + "verseNum": 31, + "text": "These are the kings who reigned in the land of Edom before any king reigned over the Israelites:" + }, + { + "verseNum": 32, + "text": "Bela son of Beor reigned in Edom; the name of his city was Dinhabah." + }, + { + "verseNum": 33, + "text": "When Bela died, Jobab son of Zerah from Bozrah reigned in his place." + }, + { + "verseNum": 34, + "text": "When Jobab died, Husham from the land of the Temanites reigned in his place." + }, + { + "verseNum": 35, + "text": "When Husham died, Hadad son of Bedad, who defeated Midian in the country of Moab, reigned in his place. And the name of his city was Avith." + }, + { + "verseNum": 36, + "text": "When Hadad died, Samlah from Masrekah reigned in his place." + }, + { + "verseNum": 37, + "text": "When Samlah died, Shaul from Rehoboth on the Euphrates reigned in his place." + }, + { + "verseNum": 38, + "text": "When Shaul died, Baal-hanan son of Achbor reigned in his place." + }, + { + "verseNum": 39, + "text": "When Baal-hanan son of Achbor died, Hadad reigned in his place. His city was named Pau, and his wife’s name was Mehetabel daughter of Matred, the daughter of Me-zahab." + }, + { + "verseNum": 40, + "text": "These are the names of Esau’s chiefs, according to their families and regions, by their names: Chiefs Timna, Alvah, Jetheth," + }, + { + "verseNum": 41, + "text": "Oholibamah, Elah, Pinon," + }, + { + "verseNum": 42, + "text": "Kenaz, Teman, Mibzar," + }, + { + "verseNum": 43, + "text": "Magdiel, and Iram. These were the chiefs of Edom, according to their settlements in the land they possessed. Esau was the father of the Edomites." + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "Now Jacob lived in the land where his father had resided, the land of Canaan." + }, + { + "verseNum": 2, + "text": "This is the account of Jacob. When Joseph was seventeen years old, he was tending the flock with his brothers, the sons of his father’s wives Bilhah and Zilpah, and he brought their father a bad report about them." + }, + { + "verseNum": 3, + "text": "Now Israel loved Joseph more than his other sons, because Joseph had been born to him in his old age; so he made him a robe of many colors." + }, + { + "verseNum": 4, + "text": "When Joseph’s brothers saw that their father loved him more than any of them, they hated him and could not speak a kind word to him." + }, + { + "verseNum": 5, + "text": "Then Joseph had a dream, and when he told it to his brothers, they hated him even more." + }, + { + "verseNum": 6, + "text": "He said to them, “Listen to this dream I had:" + }, + { + "verseNum": 7, + "text": "We were binding sheaves of grain in the field, and suddenly my sheaf rose and stood upright, while your sheaves gathered around and bowed down to mine.”" + }, + { + "verseNum": 8, + "text": "“Do you intend to reign over us?” his brothers asked. “Will you actually rule us?” So they hated him even more because of his dream and his statements." + }, + { + "verseNum": 9, + "text": "Then Joseph had another dream and told it to his brothers. “Look,” he said, “I had another dream, and this time the sun and moon and eleven stars were bowing down to me.”" + }, + { + "verseNum": 10, + "text": "He told his father and brothers, but his father rebuked him and said, “What is this dream that you have had? Will your mother and brothers and I actually come and bow down to the ground before you?”" + }, + { + "verseNum": 11, + "text": "And his brothers were jealous of him, but his father kept in mind what he had said." + }, + { + "verseNum": 12, + "text": "Some time later, Joseph’s brothers had gone to pasture their father’s flocks near Shechem." + }, + { + "verseNum": 13, + "text": "Israel said to him, “Are not your brothers pasturing the flocks at Shechem? Get ready; I am sending you to them.”\n \n“I am ready,” Joseph replied." + }, + { + "verseNum": 14, + "text": "Then Israel told him, “Go now and see how your brothers and the flocks are faring, and bring word back to me.”\n \nSo he sent him off from the Valley of Hebron. And when Joseph arrived in Shechem," + }, + { + "verseNum": 15, + "text": "a man found him wandering in the field and asked, “What are you looking for?”" + }, + { + "verseNum": 16, + "text": "“I am looking for my brothers,” Joseph replied. “Can you please tell me where they are pasturing their flocks?”" + }, + { + "verseNum": 17, + "text": "“They have moved on from here,” the man answered. “I heard them say, ‘Let us go to Dothan.’” So Joseph set out after his brothers and found them at Dothan." + }, + { + "verseNum": 18, + "text": "Now Joseph’s brothers saw him in the distance, and before he arrived, they plotted to kill him." + }, + { + "verseNum": 19, + "text": "“Here comes that dreamer!” they said to one another." + }, + { + "verseNum": 20, + "text": "“Come now, let us kill him and throw him into one of the pits. We can say that a vicious animal has devoured him. Then we shall see what becomes of his dreams!”" + }, + { + "verseNum": 21, + "text": "When Reuben heard this, he tried to rescue Joseph from their hands. “Let us not take his life,” he said." + }, + { + "verseNum": 22, + "text": "“Do not shed his blood. Throw him into this pit in the wilderness, but do not lay a hand on him.” Reuben said this so that he could rescue Joseph from their hands and return him to his father." + }, + { + "verseNum": 23, + "text": "So when Joseph came to his brothers, they stripped him of his robe—the robe of many colors he was wearing—" + }, + { + "verseNum": 24, + "text": "and they took him and threw him into the pit. Now the pit was empty, with no water in it." + }, + { + "verseNum": 25, + "text": "And as they sat down to eat a meal, they looked up and saw a caravan of Ishmaelites coming from Gilead. Their camels were carrying spices, balm, and myrrh on their way down to Egypt." + }, + { + "verseNum": 26, + "text": "Then Judah said to his brothers, “What profit will we gain if we kill our brother and cover up his blood?" + }, + { + "verseNum": 27, + "text": "Come, let us sell him to the Ishmaelites and not lay a hand on him; for he is our brother, our own flesh.” And they agreed." + }, + { + "verseNum": 28, + "text": "So when the Midianite traders passed by, his brothers pulled Joseph out of the pit and sold him for twenty shekels of silver to the Ishmaelites, who took him to Egypt." + }, + { + "verseNum": 29, + "text": "When Reuben returned to the pit and saw that Joseph was not there, he tore his clothes," + }, + { + "verseNum": 30, + "text": "returned to his brothers, and said, “The boy is gone! What am I going to do?”" + }, + { + "verseNum": 31, + "text": "Then they took Joseph’s robe, slaughtered a young goat, and dipped the robe in its blood." + }, + { + "verseNum": 32, + "text": "They sent the robe of many colors to their father and said, “We found this. Examine it to see whether it is your son’s robe or not.”" + }, + { + "verseNum": 33, + "text": "His father recognized it and said, “It is my son’s robe! A vicious animal has devoured him. Joseph has surely been torn to pieces!”" + }, + { + "verseNum": 34, + "text": "Then Jacob tore his clothes, put sackcloth around his waist, and mourned for his son many days." + }, + { + "verseNum": 35, + "text": "All his sons and daughters tried to comfort him, but he refused to be comforted. “No,” he said. “I will go down to Sheol mourning for my son.” So his father wept for him." + }, + { + "verseNum": 36, + "text": "Meanwhile, the Midianites sold Joseph in Egypt to Potiphar, an officer of Pharaoh and captain of the guard." + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "About that time, Judah left his brothers and settled near a man named Hirah, an Adullamite." + }, + { + "verseNum": 2, + "text": "There Judah saw the daughter of a Canaanite man named Shua, and he took her as a wife and slept with her." + }, + { + "verseNum": 3, + "text": "So she conceived and gave birth to a son, and Judah named him Er." + }, + { + "verseNum": 4, + "text": "Again she conceived and gave birth to a son, and she named him Onan." + }, + { + "verseNum": 5, + "text": "Then she gave birth to another son and named him Shelah; it was at Chezib that she gave birth to him." + }, + { + "verseNum": 6, + "text": "Now Judah acquired a wife for Er, his firstborn, and her name was Tamar." + }, + { + "verseNum": 7, + "text": "But Er, Judah’s firstborn, was wicked in the sight of the LORD; so the LORD put him to death." + }, + { + "verseNum": 8, + "text": "Then Judah said to Onan, “Sleep with your brother’s wife. Perform your duty as her brother-in-law and raise up offspring for your brother.”" + }, + { + "verseNum": 9, + "text": "But Onan knew that the offspring would not belong to him; so whenever he would sleep with his brother’s wife, he would spill his seed on the ground so that he would not produce offspring for his brother." + }, + { + "verseNum": 10, + "text": "What he did was wicked in the sight of the LORD, so He put Onan to death as well." + }, + { + "verseNum": 11, + "text": "Then Judah said to his daughter-in-law Tamar, “Live as a widow in your father’s house until my son Shelah grows up.” For he thought, “He may die too, like his brothers.” So Tamar went to live in her father’s house." + }, + { + "verseNum": 12, + "text": "After a long time Judah’s wife, the daughter of Shua, died. When Judah had finished mourning, he and his friend Hirah the Adullamite went up to his sheepshearers at Timnah." + }, + { + "verseNum": 13, + "text": "When Tamar was told, “Your father-in-law is going up to Timnah to shear his sheep,”" + }, + { + "verseNum": 14, + "text": "she removed her widow’s garments, covered her face with a veil to disguise herself, and sat at the entrance to Enaim, which is on the way to Timnah. For she saw that although Shelah had grown up, she had not been given to him as a wife." + }, + { + "verseNum": 15, + "text": "When Judah saw her, he thought she was a prostitute because she had covered her face." + }, + { + "verseNum": 16, + "text": "Not realizing that she was his daughter-in-law, he went over to her and said, “Come now, let me sleep with you.”\n \n“What will you give me for sleeping with you?” she inquired." + }, + { + "verseNum": 17, + "text": "“I will send you a young goat from my flock,” Judah answered.\n \nBut she replied, “Only if you leave me something as a pledge until you send it.”" + }, + { + "verseNum": 18, + "text": "“What pledge should I give you?” he asked.\n \nShe answered, “Your seal and your cord, and the staff in your hand.” So he gave them to her and slept with her, and she became pregnant by him." + }, + { + "verseNum": 19, + "text": "Then Tamar got up and departed. And she removed her veil and put on her widow’s garments again." + }, + { + "verseNum": 20, + "text": "Now when Judah sent his friend Hirah the Adullamite with the young goat to collect the items he had left with the woman, he could not find her." + }, + { + "verseNum": 21, + "text": "He asked the men of that place, “Where is the shrine prostitute who was beside the road at Enaim?”\n \n“No shrine prostitute has been here,” they answered." + }, + { + "verseNum": 22, + "text": "So Hirah returned to Judah and said, “I could not find her, and furthermore, the men of that place said, ‘No shrine prostitute has been here.’”" + }, + { + "verseNum": 23, + "text": "“Let her keep the items,” Judah replied. “Otherwise we will become a laughingstock. After all, I did send her this young goat, but you could not find her.”" + }, + { + "verseNum": 24, + "text": "About three months later, Judah was told, “Your daughter-in-law Tamar has prostituted herself, and now she is pregnant.”\n \n“Bring her out!” Judah replied. “Let her be burned to death!”" + }, + { + "verseNum": 25, + "text": "As she was being brought out, Tamar sent a message to her father-in-law: “I am pregnant by the man to whom these items belong.” And she added, “Please examine them. Whose seal and cord and staff are these?”" + }, + { + "verseNum": 26, + "text": "Judah recognized the items and said, “She is more righteous than I, since I did not give her to my son Shelah.” And he did not have relations with her again." + }, + { + "verseNum": 27, + "text": "When the time came for Tamar to give birth, there were twins in her womb." + }, + { + "verseNum": 28, + "text": "And as she was giving birth, one of them put out his hand; so the midwife took a scarlet thread and tied it around his wrist. “This one came out first,” she announced." + }, + { + "verseNum": 29, + "text": "But when he pulled his hand back and his brother came out, she said, “You have broken out first!” So he was named Perez." + }, + { + "verseNum": 30, + "text": "Then his brother came out with the scarlet thread around his wrist, and he was named Zerah." + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "Meanwhile, Joseph had been taken down to Egypt, where an Egyptian named Potiphar, an officer of Pharaoh and captain of the guard, bought him from the Ishmaelites who had taken him there." + }, + { + "verseNum": 2, + "text": "And the LORD was with Joseph, and he became a successful man, serving in the household of his Egyptian master." + }, + { + "verseNum": 3, + "text": "When his master saw that the LORD was with him and made him prosper in all he did," + }, + { + "verseNum": 4, + "text": "Joseph found favor in his sight and became his personal attendant.\n \nPotiphar put him in charge of his household and entrusted him with everything he owned." + }, + { + "verseNum": 5, + "text": "From the time that he put Joseph in charge of his household and all he owned, the LORD blessed the Egyptian’s household on account of him. The LORD’s blessing was on everything he owned, both in his house and in his field." + }, + { + "verseNum": 6, + "text": "So Potiphar left all that he owned in Joseph’s care; he did not concern himself with anything except the food he ate.\n \nNow Joseph was well-built and handsome," + }, + { + "verseNum": 7, + "text": "and after some time his master’s wife cast her eyes upon Joseph and said, “Sleep with me.”" + }, + { + "verseNum": 8, + "text": "But he refused. “Look,” he said to his master’s wife, “with me here, my master does not concern himself with anything in his house, and he has entrusted everything he owns to my care." + }, + { + "verseNum": 9, + "text": "No one in this house is greater than I am. He has withheld nothing from me except you, because you are his wife. So how could I do such a great evil and sin against God?”" + }, + { + "verseNum": 10, + "text": "Although Potiphar’s wife spoke to Joseph day after day, he refused to go to bed with her or even be near her." + }, + { + "verseNum": 11, + "text": "One day, however, Joseph went into the house to attend to his work, and not a single household servant was inside." + }, + { + "verseNum": 12, + "text": "She grabbed Joseph by his cloak and said, “Sleep with me!” But leaving his cloak in her hand, he escaped and ran outside." + }, + { + "verseNum": 13, + "text": "When she saw that he had left his cloak in her hand and had run out of the house," + }, + { + "verseNum": 14, + "text": "she called her household servants. “Look,” she said, “this Hebrew has been brought to us to make sport of us. He came to me so he could sleep with me, but I screamed as loud as I could." + }, + { + "verseNum": 15, + "text": "When he heard me scream for help, he left his cloak beside me and ran out of the house.”" + }, + { + "verseNum": 16, + "text": "So Potiphar’s wife kept Joseph’s cloak beside her until his master came home." + }, + { + "verseNum": 17, + "text": "Then she told him the same story: “The Hebrew slave you brought us came to me to make sport of me," + }, + { + "verseNum": 18, + "text": "but when I screamed for help, he left his cloak beside me and ran out of the house.”" + }, + { + "verseNum": 19, + "text": "When his master heard the story his wife told him, saying, “This is what your slave did to me,” he burned with anger." + }, + { + "verseNum": 20, + "text": "So Joseph’s master took him and had him thrown into the prison where the king’s prisoners were confined.\n \nWhile Joseph was there in the prison," + }, + { + "verseNum": 21, + "text": "the LORD was with him and extended kindness to him, granting him favor in the eyes of the prison warden." + }, + { + "verseNum": 22, + "text": "And the warden put all the prisoners under Joseph’s care, so that he was responsible for all that was done in the prison." + }, + { + "verseNum": 23, + "text": "The warden did not concern himself with anything under Joseph’s care, because the LORD was with Joseph and gave him success in whatever he did." + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "Some time later, the king’s cupbearer and baker offended their master, the king of Egypt." + }, + { + "verseNum": 2, + "text": "Pharaoh was angry with his two officers, the chief cupbearer and the chief baker," + }, + { + "verseNum": 3, + "text": "and imprisoned them in the house of the captain of the guard, the same prison where Joseph was confined." + }, + { + "verseNum": 4, + "text": "The captain of the guard assigned them to Joseph, and he became their personal attendant.\n \nAfter they had been in custody for some time," + }, + { + "verseNum": 5, + "text": "both of these men—the Egyptian king’s cupbearer and baker, who were being held in the prison—had a dream on the same night, and each dream had its own meaning." + }, + { + "verseNum": 6, + "text": "When Joseph came to them in the morning, he saw that they were distraught." + }, + { + "verseNum": 7, + "text": "So he asked the officials of Pharaoh who were in custody with him in his master’s house, “Why are your faces so downcast today?”" + }, + { + "verseNum": 8, + "text": "“We both had dreams,” they replied, “but there is no one to interpret them.”\n \nThen Joseph said to them, “Don’t interpretations belong to God? Tell me your dreams.”" + }, + { + "verseNum": 9, + "text": "So the chief cupbearer told Joseph his dream: “In my dream there was a vine before me," + }, + { + "verseNum": 10, + "text": "and on the vine were three branches. As it budded, its blossoms opened and its clusters ripened into grapes." + }, + { + "verseNum": 11, + "text": "Pharaoh’s cup was in my hand, and I took the grapes, squeezed them into his cup, and placed the cup in his hand.”" + }, + { + "verseNum": 12, + "text": "Joseph replied, “This is the interpretation: The three branches are three days." + }, + { + "verseNum": 13, + "text": "Within three days Pharaoh will lift up your head and restore your position. You will put Pharaoh’s cup in his hand, just as you did when you were his cupbearer." + }, + { + "verseNum": 14, + "text": "But when it goes well for you, please remember me and show me kindness by mentioning me to Pharaoh, that he might bring me out of this prison." + }, + { + "verseNum": 15, + "text": "For I was kidnapped from the land of the Hebrews, and even here I have done nothing for which they should have put me in this dungeon.”" + }, + { + "verseNum": 16, + "text": "When the chief baker saw that the interpretation was favorable, he said to Joseph, “I too had a dream: There were three baskets of white bread on my head." + }, + { + "verseNum": 17, + "text": "In the top basket were all sorts of baked goods for Pharaoh, but the birds were eating them out of the basket on my head.”" + }, + { + "verseNum": 18, + "text": "Joseph replied, “This is the interpretation: The three baskets are three days." + }, + { + "verseNum": 19, + "text": "Within three days Pharaoh will lift off your head and hang you on a tree. Then the birds will eat the flesh of your body.”" + }, + { + "verseNum": 20, + "text": "On the third day, which was Pharaoh’s birthday, he held a feast for all his officials, and in their presence he lifted up the heads of the chief cupbearer and the chief baker." + }, + { + "verseNum": 21, + "text": "Pharaoh restored the chief cupbearer to his position, so that he once again placed the cup in Pharaoh’s hand." + }, + { + "verseNum": 22, + "text": "But Pharaoh hanged the chief baker, just as Joseph had described to them in his interpretation." + }, + { + "verseNum": 23, + "text": "The chief cupbearer, however, did not remember Joseph; he forgot all about him." + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 1, + "text": "After two full years had passed, Pharaoh had a dream: He was standing beside the Nile," + }, + { + "verseNum": 2, + "text": "when seven cows, sleek and well-fed, came up from the river and began to graze among the reeds." + }, + { + "verseNum": 3, + "text": "After them, seven other cows, sickly and thin, came up from the Nile and stood beside the well-fed cows on the bank of the river." + }, + { + "verseNum": 4, + "text": "And the cows that were sickly and thin devoured the seven sleek, well-fed cows.\n \nThen Pharaoh woke up," + }, + { + "verseNum": 5, + "text": "but he fell back asleep and dreamed a second time: Seven heads of grain, plump and ripe, came up on one stalk." + }, + { + "verseNum": 6, + "text": "After them, seven other heads of grain sprouted, thin and scorched by the east wind." + }, + { + "verseNum": 7, + "text": "And the thin heads of grain swallowed up the seven plump, ripe ones. Then Pharaoh awoke and realized it was a dream." + }, + { + "verseNum": 8, + "text": "In the morning his spirit was troubled, so he summoned all the magicians and wise men of Egypt. Pharaoh told them his dreams, but no one could interpret them for him." + }, + { + "verseNum": 9, + "text": "Then the chief cupbearer said to Pharaoh, “Today I recall my failures." + }, + { + "verseNum": 10, + "text": "Pharaoh was once angry with his servants, and he put me and the chief baker in the custody of the captain of the guard." + }, + { + "verseNum": 11, + "text": "One night both the chief baker and I had dreams, and each dream had its own meaning." + }, + { + "verseNum": 12, + "text": "Now a young Hebrew was there with us, a servant of the captain of the guard. We told him our dreams and he interpreted them for us individually." + }, + { + "verseNum": 13, + "text": "And it happened to us just as he had interpreted: I was restored to my position, and the other man was hanged.”" + }, + { + "verseNum": 14, + "text": "So Pharaoh sent for Joseph, who was quickly brought out of the dungeon. After he had shaved and changed his clothes, he went in before Pharaoh." + }, + { + "verseNum": 15, + "text": "Pharaoh said to Joseph, “I had a dream, and no one can interpret it. But I have heard it said of you that when you hear a dream you can interpret it.”" + }, + { + "verseNum": 16, + "text": "“I myself cannot do it,” Joseph replied, “but God will give Pharaoh a sound answer.”" + }, + { + "verseNum": 17, + "text": "Then Pharaoh said to Joseph: “In my dream I was standing on the bank of the Nile," + }, + { + "verseNum": 18, + "text": "when seven cows, well-fed and sleek, came up from the river and began to graze among the reeds." + }, + { + "verseNum": 19, + "text": "After them, seven other cows—sickly, ugly, and thin—came up. I have never seen such ugly cows in all the land of Egypt!" + }, + { + "verseNum": 20, + "text": "Then the thin, ugly cows devoured the seven well-fed cows that were there first." + }, + { + "verseNum": 21, + "text": "When they had devoured them, however, no one could tell that they had done so; their appearance was as ugly as it had been before. Then I awoke." + }, + { + "verseNum": 22, + "text": "In my dream I also saw seven heads of grain, plump and ripe, growing on a single stalk." + }, + { + "verseNum": 23, + "text": "After them, seven other heads of grain sprouted—withered, thin, and scorched by the east wind." + }, + { + "verseNum": 24, + "text": "And the thin heads of grain swallowed the seven plump ones.\n \nI told this dream to the magicians, but no one could explain it to me.”" + }, + { + "verseNum": 25, + "text": "At this, Joseph said to Pharaoh, “The dreams of Pharaoh are one and the same. God has revealed to Pharaoh what He is about to do." + }, + { + "verseNum": 26, + "text": "The seven good cows are seven years, and the seven ripe heads of grain are seven years. The dreams have the same meaning." + }, + { + "verseNum": 27, + "text": "Moreover, the seven thin, ugly cows that came up after them are seven years, and so are the seven worthless heads of grain scorched by the east wind—they are seven years of famine." + }, + { + "verseNum": 28, + "text": "It is just as I said to Pharaoh: God has shown Pharaoh what He is about to do." + }, + { + "verseNum": 29, + "text": "Behold, seven years of great abundance are coming throughout the land of Egypt," + }, + { + "verseNum": 30, + "text": "but seven years of famine will follow them. Then all the abundance in the land of Egypt will be forgotten, and the famine will devastate the land." + }, + { + "verseNum": 31, + "text": "The abundance in the land will not be remembered, since the famine that follows it will be so severe." + }, + { + "verseNum": 32, + "text": "Moreover, because the dream was given to Pharaoh in two versions, the matter has been decreed by God, and He will carry it out shortly." + }, + { + "verseNum": 33, + "text": "Now, therefore, Pharaoh should look for a discerning and wise man and set him over the land of Egypt." + }, + { + "verseNum": 34, + "text": "Let Pharaoh take action and appoint commissioners over the land to take a fifth of the harvest of Egypt during the seven years of abundance." + }, + { + "verseNum": 35, + "text": "Under the authority of Pharaoh, let them collect all the excess food from these good years, that they may come and lay up the grain to be preserved as food in the cities." + }, + { + "verseNum": 36, + "text": "This food will be a reserve for the land during the seven years of famine to come upon the land of Egypt. Then the country will not perish in the famine.”" + }, + { + "verseNum": 37, + "text": "This proposal pleased Pharaoh and all his officials." + }, + { + "verseNum": 38, + "text": "So Pharaoh asked them, “Can we find anyone like this man, in whom the Spirit of God abides?”" + }, + { + "verseNum": 39, + "text": "Then Pharaoh said to Joseph, “Since God has made all this known to you, there is no one as discerning and wise as you." + }, + { + "verseNum": 40, + "text": "You shall be in charge of my house, and all my people are to obey your commands. Only with regard to the throne will I be greater than you.”" + }, + { + "verseNum": 41, + "text": "Pharaoh also told Joseph, “I hereby place you over all the land of Egypt.”" + }, + { + "verseNum": 42, + "text": "Then Pharaoh removed the signet ring from his finger, put it on Joseph’s finger, clothed him in garments of fine linen, and placed a gold chain around his neck." + }, + { + "verseNum": 43, + "text": "He had Joseph ride in his second chariot, with men calling out before him, “Bow the knee!” So he placed him over all the land of Egypt." + }, + { + "verseNum": 44, + "text": "And Pharaoh declared to Joseph, “I am Pharaoh, but without your permission, no one in all the land of Egypt shall lift his hand or foot.”" + }, + { + "verseNum": 45, + "text": "Pharaoh gave Joseph the name Zaphenath-paneah, and he gave him Asenath daughter of Potiphera, priest of On, to be his wife. And Joseph took charge of all the land of Egypt." + }, + { + "verseNum": 46, + "text": "Now Joseph was thirty years old when he entered the service of Pharaoh king of Egypt. And Joseph left Pharaoh’s presence and traveled throughout the land of Egypt." + }, + { + "verseNum": 47, + "text": "During the seven years of abundance, the land brought forth bountifully." + }, + { + "verseNum": 48, + "text": "During those seven years, Joseph collected all the excess food in the land of Egypt and stored it in the cities. In every city he laid up the food from the fields around it." + }, + { + "verseNum": 49, + "text": "So Joseph stored up grain in such abundance, like the sand of the sea, that he stopped keeping track of it; for it was beyond measure." + }, + { + "verseNum": 50, + "text": "Before the years of famine arrived, two sons were born to Joseph by Asenath daughter of Potiphera, priest of On." + }, + { + "verseNum": 51, + "text": "Joseph named the firstborn Manasseh, saying, “God has made me forget all my hardship and all my father’s household.”" + }, + { + "verseNum": 52, + "text": "And the second son he named Ephraim, saying, “God has made me fruitful in the land of my affliction.”" + }, + { + "verseNum": 53, + "text": "When the seven years of abundance in the land of Egypt came to an end," + }, + { + "verseNum": 54, + "text": "the seven years of famine began, just as Joseph had said. And although there was famine in every country, there was food throughout the land of Egypt." + }, + { + "verseNum": 55, + "text": "When extreme hunger came to all the land of Egypt and the people cried out to Pharaoh for food, he told all the Egyptians, “Go to Joseph and do whatever he tells you.”" + }, + { + "verseNum": 56, + "text": "When the famine had spread over all the land, Joseph opened up all the storehouses and sold grain to the Egyptians; for the famine was severe in the land of Egypt." + }, + { + "verseNum": 57, + "text": "And every nation came to Joseph in Egypt to buy grain, because the famine was severe over all the earth." + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 1, + "text": "When Jacob learned that there was grain in Egypt, he said to his sons, “Why are you staring at one another?”" + }, + { + "verseNum": 2, + "text": "“Look,” he added, “I have heard that there is grain in Egypt. Go down there and buy some for us, so that we may live and not die.”" + }, + { + "verseNum": 3, + "text": "So ten of Joseph’s brothers went down to buy grain from Egypt." + }, + { + "verseNum": 4, + "text": "But Jacob did not send Joseph’s brother Benjamin with his brothers, for he said, “I am afraid that harm might befall him.”" + }, + { + "verseNum": 5, + "text": "So the sons of Israel were among those who came to buy grain, since the famine had also spread to the land of Canaan." + }, + { + "verseNum": 6, + "text": "Now Joseph was the ruler of the land; he was the one who sold grain to all its people. So when his brothers arrived, they bowed down before him with their faces to the ground." + }, + { + "verseNum": 7, + "text": "And when Joseph saw his brothers, he recognized them, but he treated them as strangers and spoke harshly to them. “Where have you come from?” he asked.\n \n“From the land of Canaan,” they replied. “We are here to buy food.”" + }, + { + "verseNum": 8, + "text": "Although Joseph recognized his brothers, they did not recognize him." + }, + { + "verseNum": 9, + "text": "Joseph remembered his dreams about them and said, “You are spies! You have come to see if our land is vulnerable.”" + }, + { + "verseNum": 10, + "text": "“Not so, my lord,” they replied. “Your servants have come to buy food." + }, + { + "verseNum": 11, + "text": "We are all sons of one man. Your servants are honest men, not spies.”" + }, + { + "verseNum": 12, + "text": "“No,” he told them. “You have come to see if our land is vulnerable.”" + }, + { + "verseNum": 13, + "text": "But they answered, “Your servants are twelve brothers, the sons of one man in the land of Canaan. The youngest is now with our father, and one is no more.”" + }, + { + "verseNum": 14, + "text": "Then Joseph declared, “Just as I said, you are spies!" + }, + { + "verseNum": 15, + "text": "And this is how you will be tested: As surely as Pharaoh lives, you shall not leave this place unless your youngest brother comes here." + }, + { + "verseNum": 16, + "text": "Send one of your number to get your brother; the rest of you will be confined so that the truth of your words may be tested. If they are untrue, then as surely as Pharaoh lives, you are spies!”" + }, + { + "verseNum": 17, + "text": "So Joseph imprisoned them for three days," + }, + { + "verseNum": 18, + "text": "and on the third day he said to them, “I fear God. So do this and you will live:" + }, + { + "verseNum": 19, + "text": "If you are honest, leave one of your brothers in custody while the rest of you go and take back grain to relieve the hunger of your households." + }, + { + "verseNum": 20, + "text": "Then bring your youngest brother to me so that your words can be verified, that you may not die.”\n \nAnd to this they consented." + }, + { + "verseNum": 21, + "text": "Then they said to one another, “Surely we are being punished because of our brother. We saw his anguish when he pleaded with us, but we would not listen. That is why this distress has come upon us.”" + }, + { + "verseNum": 22, + "text": "And Reuben responded, “Didn’t I tell you not to sin against the boy? But you would not listen. Now we must account for his blood!”" + }, + { + "verseNum": 23, + "text": "They did not realize that Joseph understood them, since there was an interpreter between them." + }, + { + "verseNum": 24, + "text": "And he turned away from them and wept. When he turned back and spoke to them, he took Simeon from them and had him bound before their eyes." + }, + { + "verseNum": 25, + "text": "Then Joseph gave orders to fill their bags with grain, to return each man’s silver to his sack, and to give them provisions for their journey. This order was carried out," + }, + { + "verseNum": 26, + "text": "and they loaded the grain on their donkeys and departed." + }, + { + "verseNum": 27, + "text": "At the place where they lodged for the night, one of them opened his sack to get feed for his donkey, and he saw his silver in the mouth of the sack." + }, + { + "verseNum": 28, + "text": "“My silver has been returned!” he said to his brothers. “It is here in my sack.”\n \nTheir hearts sank, and trembling, they turned to one another and said, “What is this that God has done to us?”" + }, + { + "verseNum": 29, + "text": "When they reached their father Jacob in the land of Canaan, they described to him all that had happened to them:" + }, + { + "verseNum": 30, + "text": "“The man who is lord of the land spoke harshly to us and accused us of spying on the country." + }, + { + "verseNum": 31, + "text": "But we told him, ‘We are honest men, not spies." + }, + { + "verseNum": 32, + "text": "We are twelve brothers, sons of one father. One is no more, and the youngest is now with our father in the land of Canaan.’" + }, + { + "verseNum": 33, + "text": "Then the man who is lord of the land said to us, ‘This is how I will know whether you are honest: Leave one brother with me, take food to relieve the hunger of your households, and go." + }, + { + "verseNum": 34, + "text": "But bring your youngest brother back to me so I will know that you are not spies but honest men. Then I will give your brother back to you, and you can trade in the land.’”" + }, + { + "verseNum": 35, + "text": "As they began emptying their sacks, there in each man’s sack was his bag of silver! And when they and their father saw the bags of silver, they were dismayed." + }, + { + "verseNum": 36, + "text": "Their father Jacob said to them, “You have deprived me of my sons. Joseph is gone and Simeon is no more. Now you want to take Benjamin. Everything is going against me!”" + }, + { + "verseNum": 37, + "text": "Then Reuben said to his father, “You may kill my two sons if I fail to bring him back to you. Put him in my care, and I will return him.”" + }, + { + "verseNum": 38, + "text": "But Jacob replied, “My son will not go down there with you, for his brother is dead, and he alone is left. If any harm comes to him on your journey, you will bring my gray hair down to Sheol in sorrow.”" + } + ] + }, + { + "chapterNum": 43, + "verses": [ + { + "verseNum": 1, + "text": "Now the famine was still severe in the land." + }, + { + "verseNum": 2, + "text": "So when Jacob’s sons had eaten all the grain they had brought from Egypt, their father said to them, “Go back and buy us a little more food.”" + }, + { + "verseNum": 3, + "text": "But Judah replied, “The man solemnly warned us, ‘You will not see my face again unless your brother is with you.’" + }, + { + "verseNum": 4, + "text": "If you will send our brother with us, we will go down and buy food for you." + }, + { + "verseNum": 5, + "text": "But if you will not send him, we will not go; for the man told us, ‘You will not see my face again unless your brother is with you.’”" + }, + { + "verseNum": 6, + "text": "“Why did you bring this trouble upon me?” Israel asked. “Why did you tell the man you had another brother?”" + }, + { + "verseNum": 7, + "text": "They replied, “The man questioned us in detail about ourselves and our family: ‘Is your father still alive? Do you have another brother?’ And we answered him accordingly. How could we possibly know that he would say, ‘Bring your brother here’?”" + }, + { + "verseNum": 8, + "text": "And Judah said to his father Israel, “Send the boy with me, and we will go at once, so that we may live and not die—neither we, nor you, nor our children." + }, + { + "verseNum": 9, + "text": "I will guarantee his safety. You may hold me personally responsible. If I do not bring him back and set him before you, then may I bear the guilt before you all my life." + }, + { + "verseNum": 10, + "text": "If we had not delayed, we could have come and gone twice by now.”" + }, + { + "verseNum": 11, + "text": "Then their father Israel said to them, “If it must be so, then do this: Put some of the best products of the land in your packs and carry them down as a gift for the man—a little balm and a little honey, spices and myrrh, pistachios and almonds." + }, + { + "verseNum": 12, + "text": "Take double the silver with you so that you may return the silver that was put back into the mouths of your sacks. Perhaps it was a mistake." + }, + { + "verseNum": 13, + "text": "Take your brother as well, and return to the man at once." + }, + { + "verseNum": 14, + "text": "May God Almighty grant you mercy before the man, that he may release your other brother along with Benjamin. As for me, if I am bereaved, I am bereaved.”" + }, + { + "verseNum": 15, + "text": "So the men took these gifts, along with double the amount of silver, and Benjamin as well. Then they hurried down to Egypt and stood before Joseph." + }, + { + "verseNum": 16, + "text": "When Joseph saw Benjamin with his brothers, he said to the steward of his house, “Take these men to my house. Slaughter an animal and prepare it, for they shall dine with me at noon.”" + }, + { + "verseNum": 17, + "text": "The man did as Joseph had commanded and took the brothers to Joseph’s house." + }, + { + "verseNum": 18, + "text": "But the brothers were frightened that they had been taken to Joseph’s house. “We have been brought here because of the silver that was returned in our bags the first time,” they said. “They intend to overpower us and take us as slaves, along with our donkeys.”" + }, + { + "verseNum": 19, + "text": "So they approached Joseph’s steward and spoke to him at the entrance to the house." + }, + { + "verseNum": 20, + "text": "“Please, sir,” they said, “we really did come down here the first time to buy food." + }, + { + "verseNum": 21, + "text": "But when we came to the place we lodged for the night, we opened our sacks and, behold, each of us found his silver in the mouth of his sack! It was the full amount of our silver, and we have brought it back with us." + }, + { + "verseNum": 22, + "text": "We have brought additional silver with us to buy food. We do not know who put our silver in our sacks.”" + }, + { + "verseNum": 23, + "text": "“It is fine,” said the steward. “Do not be afraid. Your God, the God of your father, gave you the treasure that was in your sacks. I received your silver.” Then he brought Simeon out to them." + }, + { + "verseNum": 24, + "text": "And the steward took the men into Joseph’s house, gave them water to wash their feet, and provided food for their donkeys." + }, + { + "verseNum": 25, + "text": "Since the brothers had been told that they were going to eat a meal there, they prepared their gift for Joseph’s arrival at noon." + }, + { + "verseNum": 26, + "text": "When Joseph came home, they presented him with the gifts they had brought, and they bowed to the ground before him." + }, + { + "verseNum": 27, + "text": "He asked if they were well, and then he asked, “How is your elderly father you told me about? Is he still alive?”" + }, + { + "verseNum": 28, + "text": "“Your servant our father is well,” they answered. “He is still alive.” And they bowed down to honor him." + }, + { + "verseNum": 29, + "text": "When Joseph looked up and saw his brother Benjamin, his own mother’s son, he asked, “Is this your youngest brother, the one you told me about?” Then he declared, “May God be gracious to you, my son.”" + }, + { + "verseNum": 30, + "text": "Joseph hurried out because he was moved to tears for his brother, and he went to a private room to weep." + }, + { + "verseNum": 31, + "text": "Then he washed his face and came back out. Regaining his composure, he said, “Serve the meal.”" + }, + { + "verseNum": 32, + "text": "They separately served Joseph, his brothers, and the Egyptians. They ate separately because the Egyptians would not eat with the Hebrews, since that was detestable to them." + }, + { + "verseNum": 33, + "text": "They were seated before Joseph in order by age, from the firstborn to the youngest, and the men looked at one another in astonishment." + }, + { + "verseNum": 34, + "text": "When the portions were served to them from Joseph’s table, Benjamin’s portion was five times larger than any of the others. So they feasted and drank freely with Joseph." + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 1, + "text": "Then Joseph instructed his steward: “Fill the men’s sacks with as much food as they can carry, and put each one’s silver in the mouth of his sack." + }, + { + "verseNum": 2, + "text": "Put my cup, the silver one, in the mouth of the youngest one’s sack, along with the silver for his grain.”\n \nSo the steward did as Joseph had instructed." + }, + { + "verseNum": 3, + "text": "At daybreak, the men were sent on their way with their donkeys." + }, + { + "verseNum": 4, + "text": "They had not gone far from the city when Joseph told his steward, “Pursue the men at once, and when you overtake them, ask, ‘Why have you repaid good with evil?" + }, + { + "verseNum": 5, + "text": "Is this not the cup my master drinks from and uses for divination? What you have done is wicked!’”" + }, + { + "verseNum": 6, + "text": "When the steward overtook them, he relayed these words to them." + }, + { + "verseNum": 7, + "text": "“Why does my lord say these things?” they asked. “Your servants could not possibly do such a thing." + }, + { + "verseNum": 8, + "text": "We even brought back to you from the land of Canaan the silver we found in the mouths of our sacks. Why would we steal silver or gold from your master’s house?" + }, + { + "verseNum": 9, + "text": "If any of your servants is found to have it, he must die, and the rest will become slaves of my lord.”" + }, + { + "verseNum": 10, + "text": "“As you say,” replied the steward. “But only the one who is found with the cup will be my slave, and the rest of you shall be free of blame.”" + }, + { + "verseNum": 11, + "text": "So each one quickly lowered his sack to the ground and opened it." + }, + { + "verseNum": 12, + "text": "The steward searched, beginning with the oldest and ending with the youngest—and the cup was found in Benjamin’s sack." + }, + { + "verseNum": 13, + "text": "Then they all tore their clothes, loaded their donkeys, and returned to the city." + }, + { + "verseNum": 14, + "text": "When Judah and his brothers arrived at Joseph’s house, he was still there, and they fell to the ground before him." + }, + { + "verseNum": 15, + "text": "“What is this deed you have done?” Joseph declared. “Do you not know that a man like me can surely divine the truth?”" + }, + { + "verseNum": 16, + "text": "“What can we say to my lord?” Judah replied. “How can we plead? How can we justify ourselves? God has exposed the iniquity of your servants. We are now my lord’s slaves—both we and the one who was found with the cup.”" + }, + { + "verseNum": 17, + "text": "But Joseph replied, “Far be it from me to do this. The man who was found with the cup will be my slave. The rest of you may return to your father in peace.”" + }, + { + "verseNum": 18, + "text": "Then Judah approached Joseph and said, “Sir, please let your servant speak personally to my lord. Do not be angry with your servant, for you are equal to Pharaoh himself." + }, + { + "verseNum": 19, + "text": "My lord asked his servants, ‘Do you have a father or a brother?’" + }, + { + "verseNum": 20, + "text": "And we answered, ‘We have an elderly father and a younger brother, the child of his old age. The boy’s brother is dead. He is the only one of his mother’s sons left, and his father loves him.’" + }, + { + "verseNum": 21, + "text": "Then you told your servants, ‘Bring him down to me so that I can see him for myself.’" + }, + { + "verseNum": 22, + "text": "So we said to my lord, ‘The boy cannot leave his father. If he were to leave, his father would die.’" + }, + { + "verseNum": 23, + "text": "But you said to your servants, ‘Unless your younger brother comes down with you, you will not see my face again.’" + }, + { + "verseNum": 24, + "text": "Now when we returned to your servant my father, we relayed your words to him." + }, + { + "verseNum": 25, + "text": "Then our father said, ‘Go back and buy us some food.’" + }, + { + "verseNum": 26, + "text": "But we answered, ‘We cannot go down there unless our younger brother goes with us. So if our younger brother is not with us, we cannot see the man.’" + }, + { + "verseNum": 27, + "text": "And your servant my father said to us, ‘You know that my wife bore me two sons." + }, + { + "verseNum": 28, + "text": "When one of them was gone, I said: “Surely he has been torn to pieces.” And I have not seen him since." + }, + { + "verseNum": 29, + "text": "Now if you also take this one from me and harm comes to him, you will bring my gray hair down to Sheol in sorrow.’" + }, + { + "verseNum": 30, + "text": "So if the boy is not with us when I return to your servant, and if my father, whose life is wrapped up in the boy’s life," + }, + { + "verseNum": 31, + "text": "sees that the boy is not with us, he will die. Then your servants will have brought the gray hair of your servant our father down to Sheol in sorrow." + }, + { + "verseNum": 32, + "text": "Indeed, your servant guaranteed the boy’s safety to my father, saying, ‘If I do not return him to you, I will bear the guilt before you, my father, all my life.’" + }, + { + "verseNum": 33, + "text": "Now please let your servant stay here as my lord’s slave in place of the boy. Let him return with his brothers." + }, + { + "verseNum": 34, + "text": "For how can I go back to my father without the boy? I could not bear to see the misery that would overwhelm him.”" + } + ] + }, + { + "chapterNum": 45, + "verses": [ + { + "verseNum": 1, + "text": "Then Joseph could no longer control himself before all his attendants, and he cried out, “Send everyone away from me!”\n \nSo none of them were with Joseph when he made himself known to his brothers." + }, + { + "verseNum": 2, + "text": "But he wept so loudly that the Egyptians heard him, and Pharaoh’s household soon heard of it." + }, + { + "verseNum": 3, + "text": "Joseph said to his brothers, “I am Joseph! Is my father still alive?”\n \nBut they were unable to answer him, because they were terrified in his presence." + }, + { + "verseNum": 4, + "text": "Then Joseph said to his brothers, “Please come near me.” And they did so.\n \n“I am Joseph, your brother,” he said, “the one you sold into Egypt!" + }, + { + "verseNum": 5, + "text": "And now, do not be distressed or angry with yourselves that you sold me into this place, because it was to save lives that God sent me before you." + }, + { + "verseNum": 6, + "text": "For the famine has covered the land these two years, and there will be five more years without plowing or harvesting." + }, + { + "verseNum": 7, + "text": "God sent me before you to preserve you as a remnant on the earth and to save your lives by a great deliverance." + }, + { + "verseNum": 8, + "text": "Therefore it was not you who sent me here, but God, who has made me a father to Pharaoh—lord of all his household and ruler over all the land of Egypt." + }, + { + "verseNum": 9, + "text": "Now return quickly to my father and tell him, ‘This is what your son Joseph says: God has made me lord of all Egypt. Come down to me without delay." + }, + { + "verseNum": 10, + "text": "You shall settle in the land of Goshen and be near me—you and your children and grandchildren, your flocks and herds, and everything you own." + }, + { + "verseNum": 11, + "text": "And there I will provide for you, because there will be five more years of famine. Otherwise, you and your household and everything you own will come to destitution.’" + }, + { + "verseNum": 12, + "text": "Behold! You and my brother Benjamin can see that I, Joseph, am the one speaking with you." + }, + { + "verseNum": 13, + "text": "Tell my father about all my splendor in Egypt and everything you have seen. And bring my father down here quickly.”" + }, + { + "verseNum": 14, + "text": "Then Joseph threw his arms around his brother Benjamin and wept, and Benjamin wept as they embraced." + }, + { + "verseNum": 15, + "text": "Joseph kissed each of his brothers as he wept over them. And afterward his brothers talked with him." + }, + { + "verseNum": 16, + "text": "When the news reached Pharaoh’s house that Joseph’s brothers had come, Pharaoh and his servants were pleased." + }, + { + "verseNum": 17, + "text": "Pharaoh said to Joseph, “Tell your brothers, ‘Do as follows: Load your animals and return to the land of Canaan." + }, + { + "verseNum": 18, + "text": "Then bring your father and your families and return to me. I will give you the best of the land of Egypt, and you shall eat from the fat of the land.’" + }, + { + "verseNum": 19, + "text": "You are also directed to tell them: ‘Take wagons from the land of Egypt for your young children and your wives, and bring your father and come back." + }, + { + "verseNum": 20, + "text": "But pay no regard to your belongings, for the best of all the land of Egypt is yours.’”" + }, + { + "verseNum": 21, + "text": "So the sons of Israel did as they were told. Joseph gave them wagons as Pharaoh had instructed, and he also gave them provisions for their journey." + }, + { + "verseNum": 22, + "text": "He gave new garments to each of them, but to Benjamin he gave three hundred shekels of silver and five sets of clothes." + }, + { + "verseNum": 23, + "text": "And he sent to his father the following: ten donkeys loaded with the best of Egypt, and ten female donkeys loaded with grain and bread and provisions for his father’s journey." + }, + { + "verseNum": 24, + "text": "Then Joseph sent his brothers on their way, and as they were leaving, he said to them, “Do not quarrel on the way!”" + }, + { + "verseNum": 25, + "text": "So the brothers went up out of Egypt and came to their father Jacob in the land of Canaan." + }, + { + "verseNum": 26, + "text": "“Joseph is still alive,” they said, “and he is ruler over all the land of Egypt!”\n \nBut Jacob was stunned, for he did not believe them." + }, + { + "verseNum": 27, + "text": "However, when they relayed all that Joseph had told them, and when he saw the wagons that Joseph had sent to carry him back, the spirit of their father Jacob was revived." + }, + { + "verseNum": 28, + "text": "“Enough!” declared Israel. “My son Joseph is still alive! I will go to see him before I die.”" + } + ] + }, + { + "chapterNum": 46, + "verses": [ + { + "verseNum": 1, + "text": "So Israel set out with all that he had, and when he came to Beersheba, he offered sacrifices to the God of his father Isaac." + }, + { + "verseNum": 2, + "text": "And that night God spoke to Israel in a vision: “Jacob, Jacob!” He said.\n \n“Here I am,” replied Jacob." + }, + { + "verseNum": 3, + "text": "“I am God,” He said, “the God of your father. Do not be afraid to go down to Egypt, for I will make you into a great nation there." + }, + { + "verseNum": 4, + "text": "I will go down with you to Egypt, and I will surely bring you back. And Joseph’s own hands will close your eyes.”" + }, + { + "verseNum": 5, + "text": "Then Jacob departed from Beersheba, and the sons of Israel took their father Jacob in the wagons Pharaoh had sent to carry him, along with their children and wives." + }, + { + "verseNum": 6, + "text": "They also took the livestock and possessions they had acquired in the land of Canaan, and Jacob and all his offspring went to Egypt." + }, + { + "verseNum": 7, + "text": "Jacob took with him to Egypt his sons and grandsons, and his daughters and granddaughters—all his offspring." + }, + { + "verseNum": 8, + "text": "Now these are the names of the sons of Israel (Jacob and his descendants) who went to Egypt: Reuben, Jacob’s firstborn." + }, + { + "verseNum": 9, + "text": "The sons of Reuben: Hanoch, Pallu, Hezron, and Carmi." + }, + { + "verseNum": 10, + "text": "The sons of Simeon: Jemuel, Jamin, Ohad, Jachin, Zohar, and Shaul the son of a Canaanite woman." + }, + { + "verseNum": 11, + "text": "The sons of Levi: Gershon, Kohath, and Merari." + }, + { + "verseNum": 12, + "text": "The sons of Judah: Er, Onan, Shelah, Perez, and Zerah; but Er and Onan died in the land of Canaan.\n \n The sons of Perez: Hezron and Hamul." + }, + { + "verseNum": 13, + "text": "The sons of Issachar: Tola, Puvah, Job, and Shimron." + }, + { + "verseNum": 14, + "text": "The sons of Zebulun: Sered, Elon, and Jahleel." + }, + { + "verseNum": 15, + "text": "These are the sons of Leah born to Jacob in Paddan-aram, in addition to his daughter Dinah. The total number of sons and daughters was thirty-three." + }, + { + "verseNum": 16, + "text": "The sons of Gad: Ziphion, Haggi, Shuni, Ezbon, Eri, Arodi, and Areli." + }, + { + "verseNum": 17, + "text": "The children of Asher: Imnah, Ishvah, Ishvi, Beriah, and their sister Serah.\n \n The sons of Beriah: Heber and Malchiel." + }, + { + "verseNum": 18, + "text": "These are the sons of Jacob born to Zilpah—whom Laban gave to his daughter Leah—sixteen in all." + }, + { + "verseNum": 19, + "text": "The sons of Jacob’s wife Rachel: Joseph and Benjamin." + }, + { + "verseNum": 20, + "text": "Manasseh and Ephraim were born to Joseph in the land of Egypt by Asenath daughter of Potiphera, priest of On." + }, + { + "verseNum": 21, + "text": "The sons of Benjamin: Bela, Becher, Ashbel, Gera, Naaman, Ehi, Rosh, Muppim, Huppim, and Ard." + }, + { + "verseNum": 22, + "text": "These are the sons of Rachel born to Jacob—fourteen in all." + }, + { + "verseNum": 23, + "text": "The son of Dan: Hushim." + }, + { + "verseNum": 24, + "text": "The sons of Naphtali: Jahzeel, Guni, Jezer, and Shillem." + }, + { + "verseNum": 25, + "text": "These are the sons of Jacob born to Bilhah, whom Laban gave to his daughter Rachel—seven in all." + }, + { + "verseNum": 26, + "text": "All those belonging to Jacob who came to Egypt—his direct descendants, besides the wives of Jacob’s sons—numbered sixty-six persons." + }, + { + "verseNum": 27, + "text": "And with the two sons who had been born to Joseph in Egypt, the members of Jacob’s family who went to Egypt were seventy in all." + }, + { + "verseNum": 28, + "text": "Now Jacob had sent Judah ahead of him to Joseph to get directions to Goshen. When Jacob’s family arrived in the land of Goshen," + }, + { + "verseNum": 29, + "text": "Joseph prepared his chariot and went there to meet his father Israel. Joseph presented himself to him, embraced him, and wept profusely." + }, + { + "verseNum": 30, + "text": "Then Israel said to Joseph, “Finally I can die, now that I have seen your face and know that you are still alive!”" + }, + { + "verseNum": 31, + "text": "Joseph said to his brothers and to his father’s household, “I will go up and inform Pharaoh: ‘My brothers and my father’s household from the land of Canaan have come to me." + }, + { + "verseNum": 32, + "text": "The men are shepherds; they raise livestock, and they have brought their flocks and herds and all that they own.’" + }, + { + "verseNum": 33, + "text": "When Pharaoh summons you and asks, ‘What is your occupation?’" + }, + { + "verseNum": 34, + "text": "you are to say, ‘Your servants have raised livestock ever since our youth—both we and our fathers.’ Then you will be allowed to settle in the land of Goshen, since all shepherds are detestable to the Egyptians.”" + } + ] + }, + { + "chapterNum": 47, + "verses": [ + { + "verseNum": 1, + "text": "So Joseph went and told Pharaoh: “My father and my brothers, with their flocks and herds and all they own, have come from the land of Canaan and are now in Goshen.”" + }, + { + "verseNum": 2, + "text": "And he chose five of his brothers and presented them before Pharaoh." + }, + { + "verseNum": 3, + "text": "“What is your occupation?” Pharaoh asked Joseph’s brothers.\n \n“Your servants are shepherds,” they replied, “both we and our fathers.”" + }, + { + "verseNum": 4, + "text": "Then they said to Pharaoh, “We have come to live in the land for a time, because there is no pasture for the flocks of your servants, since the famine in the land of Canaan has been severe. So now, please allow your servants to settle in the land of Goshen.”" + }, + { + "verseNum": 5, + "text": "Pharaoh said to Joseph, “Now that your father and brothers have come to you," + }, + { + "verseNum": 6, + "text": "the land of Egypt is before you; settle your father and brothers in the best part of the land. They may dwell in the land of Goshen. And if you know of any talented men among them, put them in charge of my own livestock.”" + }, + { + "verseNum": 7, + "text": "Then Joseph brought in his father Jacob and presented him before Pharaoh, and Jacob blessed Pharaoh." + }, + { + "verseNum": 8, + "text": "“How many years have you lived?” Pharaoh asked." + }, + { + "verseNum": 9, + "text": "“My travels have lasted 130 years,” Jacob replied. “My years have been few and hard, and they have not matched the years of the travels of my fathers.”" + }, + { + "verseNum": 10, + "text": "Then Jacob blessed Pharaoh and departed from his presence." + }, + { + "verseNum": 11, + "text": "So Joseph settled his father and brothers in the land of Egypt and gave them property in the best part of the land, the district of Rameses, as Pharaoh had commanded." + }, + { + "verseNum": 12, + "text": "Joseph also provided his father and brothers and all his father’s household with food for their families." + }, + { + "verseNum": 13, + "text": "There was no food, however, in all that region, because the famine was so severe; the lands of Egypt and Canaan had been exhausted by the famine." + }, + { + "verseNum": 14, + "text": "Joseph collected all the money to be found in the land of Egypt and the land of Canaan in exchange for the grain they were buying, and he brought it into Pharaoh’s palace." + }, + { + "verseNum": 15, + "text": "When the money from the lands of Egypt and Canaan was gone, all the Egyptians came to Joseph and said, “Give us food. Why should we die before your eyes? For our funds have run out!”" + }, + { + "verseNum": 16, + "text": "“Then bring me your livestock,” said Joseph. “Since the money is gone, I will sell you food in exchange for your livestock.”" + }, + { + "verseNum": 17, + "text": "So they brought their livestock to Joseph, and he gave them food in exchange for their horses, their flocks and herds, and their donkeys. Throughout that year he provided them with food in exchange for all their livestock." + }, + { + "verseNum": 18, + "text": "When that year was over, they came to him the second year and said, “We cannot hide from our lord that our money is gone and all our livestock belongs to you. There is nothing left for our lord except our bodies and our land." + }, + { + "verseNum": 19, + "text": "Why should we perish before your eyes—we and our land as well? Purchase us and our land in exchange for food. Then we, along with our land, will be slaves to Pharaoh. Give us seed that we may live and not die, and that the land may not become desolate.”" + }, + { + "verseNum": 20, + "text": "So Joseph acquired for Pharaoh all the land in Egypt; the Egyptians, one and all, sold their fields because the famine was so severe upon them. The land became Pharaoh’s," + }, + { + "verseNum": 21, + "text": "and Joseph reduced the people to servitude from one end of Egypt to the other." + }, + { + "verseNum": 22, + "text": "However, he did not acquire the priests’ portion of the land, for it had been given to them by Pharaoh. They ate the rations that Pharaoh supplied; so they did not sell their land." + }, + { + "verseNum": 23, + "text": "Then Joseph said to the people, “Now that I have acquired you and your land for Pharaoh this day, here is seed for you to sow in the land." + }, + { + "verseNum": 24, + "text": "At harvest time, you are to give a fifth of it to Pharaoh, and four-fifths will be yours as seed for the field and food for yourselves and your households and children.”" + }, + { + "verseNum": 25, + "text": "“You have saved our lives,” they said. “We have found favor in our lord’s eyes, and we will be Pharaoh’s servants.”" + }, + { + "verseNum": 26, + "text": "So Joseph established a law that a fifth of the produce belongs to Pharaoh, and it is in effect in the land of Egypt to this day. Only the priests’ land does not belong to Pharaoh." + }, + { + "verseNum": 27, + "text": "Now the Israelites settled in the land of Egypt, in the region of Goshen. They acquired property there and became fruitful and increased greatly in number." + }, + { + "verseNum": 28, + "text": "And Jacob lived in the land of Egypt seventeen years, and the length of his life was 147 years." + }, + { + "verseNum": 29, + "text": "When the time drew near for Israel to die, he called his son Joseph and said to him, “If I have found favor in your eyes, put your hand under my thigh and promise to show me kindness and faithfulness. Do not bury me in Egypt," + }, + { + "verseNum": 30, + "text": "but when I lie down with my fathers, carry me out of Egypt and bury me with them.”\n \nJoseph answered, “I will do as you have requested.”" + }, + { + "verseNum": 31, + "text": "“Swear to me,” Jacob said.\n \nSo Joseph swore to him, and Israel bowed in worship at the head of his bed." + } + ] + }, + { + "chapterNum": 48, + "verses": [ + { + "verseNum": 1, + "text": "Some time later Joseph was told, “Your father is ill.” So he set out with his two sons, Manasseh and Ephraim." + }, + { + "verseNum": 2, + "text": "When Jacob was told, “Your son Joseph has come to you,” Israel rallied his strength and sat up in bed." + }, + { + "verseNum": 3, + "text": "Jacob said to Joseph, “God Almighty appeared to me at Luz in the land of Canaan, and there He blessed me" + }, + { + "verseNum": 4, + "text": "and told me, ‘Behold, I will make you fruitful and multiply you; I will make you a multitude of peoples, and will give this land to your descendants after you as an everlasting possession.’" + }, + { + "verseNum": 5, + "text": "And now your two sons born to you in Egypt before I came to you here shall be reckoned as mine; Ephraim and Manasseh shall be mine, just as Reuben and Simeon are mine." + }, + { + "verseNum": 6, + "text": "Any children born to you after them shall be yours, and they shall be called by the names of their brothers in the territory they inherit." + }, + { + "verseNum": 7, + "text": "Now as for me, when I was returning from Paddan, to my sorrow Rachel died along the way in the land of Canaan, some distance from Ephrath. So I buried her there beside the road to Ephrath” (that is, Bethlehem)." + }, + { + "verseNum": 8, + "text": "When Israel saw the sons of Joseph, he asked, “Who are these?”" + }, + { + "verseNum": 9, + "text": "Joseph said to his father, “They are the sons God has given me in this place.”\n \nSo Jacob said, “Please bring them to me, that I may bless them.”" + }, + { + "verseNum": 10, + "text": "Now Israel’s eyesight was poor because of old age; he could hardly see. Joseph brought his sons to him, and his father kissed them and embraced them." + }, + { + "verseNum": 11, + "text": "“I never expected to see your face again,” Israel said to Joseph, “but now God has let me see your children as well.”" + }, + { + "verseNum": 12, + "text": "Then Joseph removed his sons from his father’s knees and bowed facedown." + }, + { + "verseNum": 13, + "text": "And Joseph took both of them—with Ephraim in his right hand toward Israel’s left hand, and Manasseh in his left hand toward Israel’s right hand—and brought them close to him." + }, + { + "verseNum": 14, + "text": "But Israel stretched out his right hand and put it on the head of Ephraim, the younger; and crossing his hands, he put his left on Manasseh’s head, although Manasseh was the firstborn." + }, + { + "verseNum": 15, + "text": "Then he blessed Joseph and said:\n \n “May the God before whom my fathers Abraham and Isaac walked,\n the God who has been my shepherd all my life to this day," + }, + { + "verseNum": 16, + "text": "the angel who has redeemed me from all harm—\n may He bless these boys.\n And may they be called by my name\n and the names of my fathers Abraham and Isaac,\n and may they grow into a multitude upon the earth.”" + }, + { + "verseNum": 17, + "text": "When Joseph saw that his father had placed his right hand on Ephraim’s head, he was displeased and took his father’s hand to move it from Ephraim’s head to Manasseh’s." + }, + { + "verseNum": 18, + "text": "“Not so, my father!” Joseph said. “This one is the firstborn; put your right hand on his head.”" + }, + { + "verseNum": 19, + "text": "But his father refused. “I know, my son, I know!” he said. “He too shall become a people, and he too shall be great; nevertheless, his younger brother shall be greater than he, and his offspring shall become a multitude of nations.”" + }, + { + "verseNum": 20, + "text": "So that day Jacob blessed them and said:\n \n “By you shall Israel pronounce this blessing:\n ‘May God make you like Ephraim and Manasseh.’”\n \nSo he put Ephraim before Manasseh." + }, + { + "verseNum": 21, + "text": "Then Israel said to Joseph, “Look, I am about to die, but God will be with you and bring you back to the land of your fathers." + }, + { + "verseNum": 22, + "text": "And to you, as one who is above your brothers, I give the ridge of land that I took from the Amorites with my sword and bow.”" + } + ] + }, + { + "chapterNum": 49, + "verses": [ + { + "verseNum": 1, + "text": "Then Jacob called for his sons and said, “Gather around so that I can tell you what will happen to you in the days to come:" + }, + { + "verseNum": 2, + "text": "Come together and listen, O sons of Jacob;\n listen to your father Israel." + }, + { + "verseNum": 3, + "text": "Reuben, you are my firstborn, my might,\n and the beginning of my strength,\n excelling in honor,\n excelling in power." + }, + { + "verseNum": 4, + "text": "Uncontrolled as the waters,\n you will no longer excel,\n because you went up to your father’s bed,\n onto my couch, and defiled it." + }, + { + "verseNum": 5, + "text": "Simeon and Levi are brothers;\n their swords are weapons of violence." + }, + { + "verseNum": 6, + "text": "May I never enter their council;\n may I never join their assembly.\n For they kill men in their anger,\n and hamstring oxen on a whim." + }, + { + "verseNum": 7, + "text": "Cursed be their anger, for it is strong,\n and their wrath, for it is cruel!\n I will disperse them in Jacob\n and scatter them in Israel." + }, + { + "verseNum": 8, + "text": "Judah, your brothers shall praise you.\n Your hand shall be on the necks of your enemies;\n your father’s sons shall bow down to you." + }, + { + "verseNum": 9, + "text": "Judah is a young lion—\n my son, you return from the prey.\n Like a lion he crouches and lies down;\n like a lioness, who dares to rouse him?" + }, + { + "verseNum": 10, + "text": "The scepter will not depart from Judah,\n nor the staff from between his feet,\n until Shiloh comes\n and the allegiance of the nations is his." + }, + { + "verseNum": 11, + "text": "He ties his donkey to the vine,\n his colt to the choicest branch.\n He washes his garments in wine,\n his robes in the blood of grapes." + }, + { + "verseNum": 12, + "text": "His eyes are darker than wine,\n and his teeth are whiter than milk." + }, + { + "verseNum": 13, + "text": "Zebulun shall dwell by the seashore\n and become a harbor for ships;\n his border shall extend to Sidon." + }, + { + "verseNum": 14, + "text": "Issachar is a strong donkey,\n lying down between the sheepfolds." + }, + { + "verseNum": 15, + "text": "He saw that his resting place was good\n and that his land was pleasant,\n so he bent his shoulder to the burden\n and submitted to labor as a servant." + }, + { + "verseNum": 16, + "text": "Dan shall provide justice for his people \n as one of the tribes of Israel." + }, + { + "verseNum": 17, + "text": "He will be a snake by the road,\n a viper in the path\n that bites the horse’s heels\n so that its rider tumbles backward." + }, + { + "verseNum": 18, + "text": "I await Your salvation, O LORD." + }, + { + "verseNum": 19, + "text": "Gad will be attacked by raiders,\n but he will attack their heels." + }, + { + "verseNum": 20, + "text": "Asher’s food will be rich;\n he shall provide royal delicacies." + }, + { + "verseNum": 21, + "text": "Naphtali is a doe set free\n that bears beautiful fawns." + }, + { + "verseNum": 22, + "text": "Joseph is a fruitful vine—\n a fruitful vine by a spring,\n whose branches scale the wall." + }, + { + "verseNum": 23, + "text": "The archers attacked him with bitterness;\n they aimed at him in hostility." + }, + { + "verseNum": 24, + "text": "Yet he steadied his bow,\n and his strong arms were tempered\n by the hands of the Mighty One of Jacob,\n in the name of the Shepherd, the Rock of Israel," + }, + { + "verseNum": 25, + "text": "by the God of your father who helps you,\n and by the Almighty who blesses you,\n with blessings of the heavens above,\n with blessings of the depths below,\n with blessings of the breasts and womb." + }, + { + "verseNum": 26, + "text": "The blessings of your father have surpassed\n the blessings of the ancient mountains \n and the bounty of the everlasting hills.\n May they rest on the head of Joseph,\n on the brow of the prince of his brothers." + }, + { + "verseNum": 27, + "text": "Benjamin is a ravenous wolf;\n in the morning he devours the prey,\n in the evening he divides the plunder.”" + }, + { + "verseNum": 28, + "text": "These are the tribes of Israel, twelve in all, and this was what their father said to them. He blessed them, and he blessed each one with a suitable blessing." + }, + { + "verseNum": 29, + "text": "Then Jacob instructed them, “I am about to be gathered to my people. Bury me with my fathers in the cave in the field of Ephron the Hittite." + }, + { + "verseNum": 30, + "text": "The cave is in the field of Machpelah near Mamre, in the land of Canaan. This is the field Abraham purchased from Ephron the Hittite as a burial site." + }, + { + "verseNum": 31, + "text": "There Abraham and his wife Sarah are buried, there Isaac and his wife Rebekah are buried, and there I buried Leah." + }, + { + "verseNum": 32, + "text": "The field and the cave that is in it were purchased from the Hittites.”" + }, + { + "verseNum": 33, + "text": "When Jacob had finished instructing his sons, he pulled his feet into the bed and breathed his last, and he was gathered to his people." + } + ] + }, + { + "chapterNum": 50, + "verses": [ + { + "verseNum": 1, + "text": "Then Joseph fell upon his father’s face, wept over him, and kissed him." + }, + { + "verseNum": 2, + "text": "And Joseph directed the physicians in his service to embalm his father Israel. So they embalmed him," + }, + { + "verseNum": 3, + "text": "taking the forty days required to complete the embalming. And the Egyptians mourned for him seventy days." + }, + { + "verseNum": 4, + "text": "When the days of mourning had passed, Joseph said to Pharaoh’s court, “If I have found favor in your eyes, please tell Pharaoh that" + }, + { + "verseNum": 5, + "text": "my father made me swear an oath when he said, ‘I am about to die. You must bury me in the tomb that I dug for myself in the land of Canaan.’ Now let me go and bury my father, and then return.”" + }, + { + "verseNum": 6, + "text": "Pharaoh replied, “Go up and bury your father, as he made you swear to do.”" + }, + { + "verseNum": 7, + "text": "Then Joseph went to bury his father, and all the servants of Pharaoh accompanied him—the elders of Pharaoh’s household and all the elders of the land of Egypt—" + }, + { + "verseNum": 8, + "text": "along with all of Joseph’s household, and his brothers, and his father’s household. Only their children and flocks and herds were left in Goshen." + }, + { + "verseNum": 9, + "text": "Chariots and horsemen alike went up with him, and it was an exceedingly large procession." + }, + { + "verseNum": 10, + "text": "When they reached the threshing floor of Atad, which is across the Jordan, they lamented and wailed loudly, and Joseph mourned for his father seven days." + }, + { + "verseNum": 11, + "text": "When the Canaanites of the land saw the mourning at the threshing floor of Atad, they said, “This is a solemn ceremony of mourning by the Egyptians.” Thus the place across the Jordan is called Abel-mizraim." + }, + { + "verseNum": 12, + "text": "So Jacob’s sons did as he had charged them." + }, + { + "verseNum": 13, + "text": "They carried him to the land of Canaan and buried him in the cave at Machpelah in the field near Mamre, which Abraham had purchased from Ephron the Hittite as a burial site." + }, + { + "verseNum": 14, + "text": "After Joseph had buried his father, he returned to Egypt with his brothers and all who had gone with him to bury his father." + }, + { + "verseNum": 15, + "text": "When Joseph’s brothers saw that their father was dead, they said, “What if Joseph bears a grudge? Then he will surely repay us for all the evil that we did to him.”" + }, + { + "verseNum": 16, + "text": "So they sent word to Joseph, saying, “Before he died, your father commanded," + }, + { + "verseNum": 17, + "text": "‘This is what you are to say to Joseph: I beg you, please forgive the transgression and sin of your brothers, for they did you wrong.’ So now, Joseph, please forgive the transgression of the servants of the God of your father.”\n \nWhen their message came to him, Joseph wept." + }, + { + "verseNum": 18, + "text": "His brothers also came to him, bowed down before him, and said, “We are your slaves!”" + }, + { + "verseNum": 19, + "text": "But Joseph replied, “Do not be afraid. Am I in the place of God?" + }, + { + "verseNum": 20, + "text": "As for you, what you intended against me for evil, God intended for good, in order to accomplish a day like this—to preserve the lives of many people." + }, + { + "verseNum": 21, + "text": "Therefore do not be afraid. I will provide for you and your little ones.” So Joseph reassured his brothers and spoke kindly to them." + }, + { + "verseNum": 22, + "text": "Now Joseph and his father’s household remained in Egypt, and Joseph lived to the age of 110." + }, + { + "verseNum": 23, + "text": "He saw Ephraim’s sons to the third generation, and indeed the sons of Machir son of Manasseh were brought up on Joseph’s knees." + }, + { + "verseNum": 24, + "text": "Then Joseph said to his brothers, “I am about to die, but God will surely visit you and bring you up from this land to the land He promised on oath to Abraham, Isaac, and Jacob.”" + }, + { + "verseNum": 25, + "text": "And Joseph made the sons of Israel take an oath and said, “God will surely attend to you, and then you must carry my bones up from this place.”" + }, + { + "verseNum": 26, + "text": "So Joseph died at the age of 110. And they embalmed his body and placed it in a coffin in Egypt." + } + ] + } + ] + }, + { + "name": "Exodus", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "These are the names of the sons of Israel who went to Egypt with Jacob, each with his family:" + }, + { + "verseNum": 2, + "text": "Reuben, Simeon, Levi, and Judah;" + }, + { + "verseNum": 3, + "text": "Issachar, Zebulun, and Benjamin;" + }, + { + "verseNum": 4, + "text": "Dan and Naphtali;\n \n Gad and Asher." + }, + { + "verseNum": 5, + "text": "The descendants of Jacob numbered seventy in all, including Joseph, who was already in Egypt." + }, + { + "verseNum": 6, + "text": "Now Joseph and all his brothers and all that generation died," + }, + { + "verseNum": 7, + "text": "but the Israelites were fruitful and increased rapidly; they multiplied and became exceedingly numerous, so that the land was filled with them." + }, + { + "verseNum": 8, + "text": "Then a new king, who did not know Joseph, came to power in Egypt." + }, + { + "verseNum": 9, + "text": "“Look,” he said to his people, “the Israelites have become too numerous and too powerful for us." + }, + { + "verseNum": 10, + "text": "Come, let us deal shrewdly with them, or they will increase even more; and if a war breaks out, they may join our enemies, fight against us, and leave the country.”" + }, + { + "verseNum": 11, + "text": "So the Egyptians appointed taskmasters over the Israelites to oppress them with forced labor. As a result, they built Pithom and Rameses as store cities for Pharaoh." + }, + { + "verseNum": 12, + "text": "But the more they were oppressed, the more they multiplied and flourished; so the Egyptians came to dread the Israelites." + }, + { + "verseNum": 13, + "text": "They worked the Israelites ruthlessly" + }, + { + "verseNum": 14, + "text": "and made their lives bitter with hard labor in brick and mortar, and with all kinds of work in the fields. Every service they imposed was harsh." + }, + { + "verseNum": 15, + "text": "Then the king of Egypt said to the Hebrew midwives, whose names were Shiphrah and Puah," + }, + { + "verseNum": 16, + "text": "“When you help the Hebrew women give birth, observe them on the birthstools. If the child is a son, kill him; but if it is a daughter, let her live.”" + }, + { + "verseNum": 17, + "text": "The midwives, however, feared God and did not do as the king of Egypt had instructed; they let the boys live." + }, + { + "verseNum": 18, + "text": "So the king of Egypt summoned the midwives and asked them, “Why have you done this? Why have you let the boys live?”" + }, + { + "verseNum": 19, + "text": "The midwives answered Pharaoh, “The Hebrew women are not like the Egyptian women, for they are vigorous and give birth before a midwife arrives.”" + }, + { + "verseNum": 20, + "text": "So God was good to the midwives, and the people multiplied and became even more numerous." + }, + { + "verseNum": 21, + "text": "And because the midwives feared God, He gave them families of their own." + }, + { + "verseNum": 22, + "text": "Then Pharaoh commanded all his people: “Every son born to the Hebrews you must throw into the Nile, but every daughter you may allow to live.”" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Now a man of the house of Levi married a daughter of Levi," + }, + { + "verseNum": 2, + "text": "and she conceived and gave birth to a son. When she saw that he was a beautiful child, she hid him for three months." + }, + { + "verseNum": 3, + "text": "But when she could no longer hide him, she got him a papyrus basket and coated it with tar and pitch. Then she placed the child in the basket and set it among the reeds along the bank of the Nile." + }, + { + "verseNum": 4, + "text": "And his sister stood at a distance to see what would happen to him." + }, + { + "verseNum": 5, + "text": "Soon the daughter of Pharaoh went down to bathe in the Nile, and her attendants were walking along the riverbank. And when she saw the basket among the reeds, she sent her maidservant to retrieve it." + }, + { + "verseNum": 6, + "text": "When she opened it, she saw the child, and behold, the little boy was crying. So she had compassion on him and said, “This is one of the Hebrew children.”" + }, + { + "verseNum": 7, + "text": "Then his sister said to Pharaoh’s daughter, “Shall I go and call one of the Hebrew women to nurse the child for you?”" + }, + { + "verseNum": 8, + "text": "“Go ahead,” Pharaoh’s daughter told her. And the girl went and called the boy’s mother." + }, + { + "verseNum": 9, + "text": "Pharaoh’s daughter said to her, “Take this child and nurse him for me, and I will pay your wages.” So the woman took the boy and nursed him." + }, + { + "verseNum": 10, + "text": "When the child had grown older, she brought him to Pharaoh’s daughter, and he became her son. She named him Moses and explained, “I drew him out of the water.”" + }, + { + "verseNum": 11, + "text": "One day, after Moses had grown up, he went out to his own people and observed their hard labor. He saw an Egyptian beating a Hebrew, one of his own people." + }, + { + "verseNum": 12, + "text": "After looking this way and that and seeing no one, he struck down the Egyptian and hid his body in the sand." + }, + { + "verseNum": 13, + "text": "The next day Moses went out and saw two Hebrews fighting. He asked the one in the wrong, “Why are you attacking your companion?”" + }, + { + "verseNum": 14, + "text": "But the man replied, “Who made you ruler and judge over us? Are you planning to kill me as you killed the Egyptian?”\n \nThen Moses was afraid and thought, “This thing I have done has surely become known.”" + }, + { + "verseNum": 15, + "text": "When Pharaoh heard about this matter, he sought to kill Moses. But Moses fled from Pharaoh and settled in the land of Midian, where he sat down beside a well." + }, + { + "verseNum": 16, + "text": "Now the priest of Midian had seven daughters, and they came to draw water and fill the troughs to water their father’s flock." + }, + { + "verseNum": 17, + "text": "And when some shepherds came along and drove them away, Moses rose up to help them and watered their flock." + }, + { + "verseNum": 18, + "text": "When the daughters returned to their father Reuel, he asked them, “Why have you returned so early today?”" + }, + { + "verseNum": 19, + "text": "“An Egyptian rescued us from the shepherds,” they replied. “He even drew water for us and watered the flock.”" + }, + { + "verseNum": 20, + "text": "“So where is he?” their father asked. “Why did you leave the man behind? Invite him to have something to eat.”" + }, + { + "verseNum": 21, + "text": "Moses agreed to stay with the man, and he gave his daughter Zipporah to Moses in marriage." + }, + { + "verseNum": 22, + "text": "And she gave birth to a son, and Moses named him Gershom, saying, “I have become a foreigner in a foreign land.”" + }, + { + "verseNum": 23, + "text": "After a long time, the king of Egypt died. The Israelites groaned and cried out under their burden of slavery, and their cry for deliverance from bondage ascended to God." + }, + { + "verseNum": 24, + "text": "So God heard their groaning, and He remembered His covenant with Abraham, Isaac, and Jacob." + }, + { + "verseNum": 25, + "text": "God saw the Israelites and took notice." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Meanwhile, Moses was shepherding the flock of his father-in-law Jethro, the priest of Midian. He led the flock to the far side of the wilderness and came to Horeb, the mountain of God." + }, + { + "verseNum": 2, + "text": "There the angel of the LORD appeared to him in a blazing fire from within a bush. Moses saw the bush ablaze with fire, but it was not consumed." + }, + { + "verseNum": 3, + "text": "So Moses thought, “I must go over and see this marvelous sight. Why is the bush not burning up?”" + }, + { + "verseNum": 4, + "text": "When the LORD saw that he had gone over to look, God called out to him from within the bush, “Moses, Moses!”\n \n“Here I am,” he answered." + }, + { + "verseNum": 5, + "text": "“Do not come any closer,” God said. “Take off your sandals, for the place where you are standing is holy ground.”" + }, + { + "verseNum": 6, + "text": "Then He said, “I am the God of your father, the God of Abraham, the God of Isaac, and the God of Jacob.”\n \nAt this, Moses hid his face, for he was afraid to look at God." + }, + { + "verseNum": 7, + "text": "The LORD said, “I have indeed seen the affliction of My people in Egypt. I have heard them crying out because of their oppressors, and I am aware of their sufferings." + }, + { + "verseNum": 8, + "text": "I have come down to rescue them from the hand of the Egyptians and to bring them up out of that land to a good and spacious land, a land flowing with milk and honey—the home of the Canaanites, Hittites, Amorites, Perizzites, Hivites, and Jebusites." + }, + { + "verseNum": 9, + "text": "And now the cry of the Israelites has reached Me, and I have seen how severely the Egyptians are oppressing them." + }, + { + "verseNum": 10, + "text": "Therefore, go! I am sending you to Pharaoh to bring My people the Israelites out of Egypt.”" + }, + { + "verseNum": 11, + "text": "But Moses asked God, “Who am I, that I should go to Pharaoh and bring the Israelites out of Egypt?”" + }, + { + "verseNum": 12, + "text": "“I will surely be with you,” God said, “and this will be the sign to you that I have sent you: When you have brought the people out of Egypt, all of you will worship God on this mountain.”" + }, + { + "verseNum": 13, + "text": "Then Moses asked God, “Suppose I go to the Israelites and say to them, ‘The God of your fathers has sent me to you,’ and they ask me, ‘What is His name?’ What should I tell them?”" + }, + { + "verseNum": 14, + "text": "God said to Moses, “I AM WHO I AM. This is what you are to say to the Israelites: ‘I AM has sent me to you.’”" + }, + { + "verseNum": 15, + "text": "God also told Moses, “Say to the Israelites, ‘The LORD, the God of your fathers—the God of Abraham, the God of Isaac, and the God of Jacob—has sent me to you.’ This is My name forever, and this is how I am to be remembered in every generation." + }, + { + "verseNum": 16, + "text": "Go, assemble the elders of Israel and say to them, ‘The LORD, the God of your fathers—the God of Abraham, Isaac, and Jacob—has appeared to me and said: I have surely attended to you and have seen what has been done to you in Egypt." + }, + { + "verseNum": 17, + "text": "And I have promised to bring you up out of your affliction in Egypt, into the land of the Canaanites, Hittites, Amorites, Perizzites, Hivites, and Jebusites—a land flowing with milk and honey.’" + }, + { + "verseNum": 18, + "text": "The elders of Israel will listen to what you say, and you must go with them to the king of Egypt and tell him, ‘The LORD, the God of the Hebrews, has met with us. Now please let us take a three-day journey into the wilderness, so that we may sacrifice to the LORD our God.’" + }, + { + "verseNum": 19, + "text": "But I know that the king of Egypt will not allow you to go unless a mighty hand compels him." + }, + { + "verseNum": 20, + "text": "So I will stretch out My hand and strike the Egyptians with all the wonders I will perform among them. And after that, he will release you." + }, + { + "verseNum": 21, + "text": "And I will grant this people such favor in the sight of the Egyptians that when you leave, you will not go away empty-handed." + }, + { + "verseNum": 22, + "text": "Every woman shall ask her neighbor and any woman staying in her house for silver and gold jewelry and clothing, and you will put them on your sons and daughters. So you will plunder the Egyptians.”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Then Moses answered, “What if they do not believe me or listen to my voice? For they may say, ‘The LORD has not appeared to you.’”" + }, + { + "verseNum": 2, + "text": "And the LORD asked him, “What is that in your hand?”\n \n“A staff,” he replied." + }, + { + "verseNum": 3, + "text": "“Throw it on the ground,” said the LORD. So Moses threw it on the ground, and it became a snake, and he ran from it." + }, + { + "verseNum": 4, + "text": "“Stretch out your hand and grab it by the tail,” the LORD said to Moses, who reached out his hand and caught the snake, and it turned back into a staff in his hand." + }, + { + "verseNum": 5, + "text": "“This is so that they may believe that the LORD, the God of their fathers—the God of Abraham, the God of Isaac, and the God of Jacob—has appeared to you.”" + }, + { + "verseNum": 6, + "text": "Furthermore, the LORD said to Moses, “Put your hand inside your cloak.” So he put his hand inside his cloak, and when he took it out, his hand was leprous, white as snow." + }, + { + "verseNum": 7, + "text": "“Put your hand back inside your cloak,” said the LORD.\n \nSo Moses put his hand back inside his cloak, and when he took it out, it was restored, like the rest of his skin." + }, + { + "verseNum": 8, + "text": "And the LORD said, “If they refuse to believe you or heed the witness of the first sign, they may believe that of the second." + }, + { + "verseNum": 9, + "text": "But if they do not believe even these two signs or listen to your voice, take some water from the Nile and pour it on the dry ground. Then the water you take from the Nile will become blood on the ground.”" + }, + { + "verseNum": 10, + "text": "“Please, Lord,” Moses replied, “I have never been eloquent, neither in the past nor since You have spoken to Your servant, for I am slow of speech and tongue.”" + }, + { + "verseNum": 11, + "text": "And the LORD said to him, “Who gave man his mouth? Or who makes the mute or the deaf, the sighted or the blind? Is it not I, the LORD?" + }, + { + "verseNum": 12, + "text": "Now go! I will help you as you speak, and I will teach you what to say.”" + }, + { + "verseNum": 13, + "text": "But Moses replied, “Please, Lord, send someone else.”" + }, + { + "verseNum": 14, + "text": "Then the anger of the LORD burned against Moses, and He said, “Is not Aaron the Levite your brother? I know that he can speak well, and he is now on his way to meet you. When he sees you, he will be glad in his heart." + }, + { + "verseNum": 15, + "text": "You are to speak to him and put the words in his mouth. I will help both of you to speak, and I will teach you what to do." + }, + { + "verseNum": 16, + "text": "He will speak to the people for you. He will be your spokesman, and it will be as if you were God to him." + }, + { + "verseNum": 17, + "text": "But take this staff in your hand so you can perform signs with it.”" + }, + { + "verseNum": 18, + "text": "Then Moses went back to his father-in-law Jethro and said to him, “Please let me return to my brothers in Egypt to see if they are still alive.”\n \n“Go in peace,” Jethro replied." + }, + { + "verseNum": 19, + "text": "Now the LORD had said to Moses in Midian, “Go back to Egypt, for all the men who sought to kill you are dead.”" + }, + { + "verseNum": 20, + "text": "So Moses took his wife and sons, put them on a donkey, and headed back to Egypt. And he took the staff of God in his hand." + }, + { + "verseNum": 21, + "text": "The LORD instructed Moses, “When you go back to Egypt, see that you perform before Pharaoh all the wonders that I have put within your power. But I will harden his heart so that he will not let the people go." + }, + { + "verseNum": 22, + "text": "Then tell Pharaoh that this is what the LORD says: ‘Israel is My firstborn son," + }, + { + "verseNum": 23, + "text": "and I told you to let My son go so that he may worship Me. But since you have refused to let him go, behold, I will kill your firstborn son!’”" + }, + { + "verseNum": 24, + "text": "Now at a lodging place along the way, the LORD met Moses and was about to kill him." + }, + { + "verseNum": 25, + "text": "But Zipporah took a flint knife, cut off her son’s foreskin, and touched it to Moses’ feet. “Surely you are a bridegroom of blood to me,” she said." + }, + { + "verseNum": 26, + "text": "So the LORD let him alone. (When she said, “bridegroom of blood,” she was referring to the circumcision.)" + }, + { + "verseNum": 27, + "text": "Meanwhile, the LORD had said to Aaron, “Go and meet Moses in the wilderness.” So he went and met Moses at the mountain of God and kissed him." + }, + { + "verseNum": 28, + "text": "And Moses told Aaron everything the LORD had sent him to say, and all the signs He had commanded him to perform." + }, + { + "verseNum": 29, + "text": "Then Moses and Aaron went and assembled all the elders of the Israelites," + }, + { + "verseNum": 30, + "text": "and Aaron relayed everything the LORD had said to Moses.\n \nAnd Moses performed the signs before the people," + }, + { + "verseNum": 31, + "text": "and they believed. And when they heard that the LORD had attended to the Israelites and had seen their affliction, they bowed down and worshiped." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "After that, Moses and Aaron went to Pharaoh and said, “This is what the LORD, the God of Israel, says: ‘Let My people go, so that they may hold a feast to Me in the wilderness.’”" + }, + { + "verseNum": 2, + "text": "But Pharaoh replied, “Who is the LORD that I should obey His voice and let Israel go? I do not know the LORD, and I will not let Israel go.”" + }, + { + "verseNum": 3, + "text": "“The God of the Hebrews has met with us,” they answered. “Please let us go on a three-day journey into the wilderness to sacrifice to the LORD our God, or He may strike us with plagues or with the sword.”" + }, + { + "verseNum": 4, + "text": "But the king of Egypt said to them, “Moses and Aaron, why do you draw the people away from their work? Get back to your labor!”" + }, + { + "verseNum": 5, + "text": "Pharaoh also said, “Look, the people of the land are now numerous, and you would be stopping them from their labor.”" + }, + { + "verseNum": 6, + "text": "That same day Pharaoh commanded the taskmasters of the people and their foremen:" + }, + { + "verseNum": 7, + "text": "“You shall no longer supply the people with straw for making bricks. They must go and gather their own straw." + }, + { + "verseNum": 8, + "text": "But require of them the same quota of bricks as before; do not reduce it. For they are lazy; that is why they are crying out, ‘Let us go and sacrifice to our God.’" + }, + { + "verseNum": 9, + "text": "Make the work harder on the men so they will be occupied and pay no attention to these lies.”" + }, + { + "verseNum": 10, + "text": "So the taskmasters and foremen of the people went out and said to them, “This is what Pharaoh says: ‘I am no longer giving you straw." + }, + { + "verseNum": 11, + "text": "Go and get your own straw wherever you can find it; but your workload will in no way be reduced.’”" + }, + { + "verseNum": 12, + "text": "So the people scattered all over the land of Egypt to gather stubble for straw." + }, + { + "verseNum": 13, + "text": "The taskmasters kept pressing them, saying, “Fulfill your quota each day, just as you did when straw was provided.”" + }, + { + "verseNum": 14, + "text": "Then the Israelite foremen, whom Pharaoh’s taskmasters had set over the people, were beaten and asked, “Why have you not fulfilled your quota of bricks yesterday or today, as you did before?”" + }, + { + "verseNum": 15, + "text": "So the Israelite foremen went and appealed to Pharaoh: “Why are you treating your servants this way?" + }, + { + "verseNum": 16, + "text": "No straw has been given to your servants, yet we are told, ‘Make bricks!’ Look, your servants are being beaten, but the fault is with your own people.”" + }, + { + "verseNum": 17, + "text": "“You are slackers!” Pharaoh replied. “Slackers! That is why you keep saying, ‘Let us go and sacrifice to the LORD.’" + }, + { + "verseNum": 18, + "text": "Now get to work. You will be given no straw, yet you must deliver the full quota of bricks.”" + }, + { + "verseNum": 19, + "text": "The Israelite foremen realized they were in trouble when they were told, “You must not reduce your daily quota of bricks.”" + }, + { + "verseNum": 20, + "text": "When they left Pharaoh, they confronted Moses and Aaron, who stood waiting to meet them." + }, + { + "verseNum": 21, + "text": "“May the LORD look upon you and judge you,” the foremen said, “for you have made us a stench before Pharaoh and his officials; you have placed in their hand a sword to kill us!”" + }, + { + "verseNum": 22, + "text": "So Moses returned to the LORD and asked, “Lord, why have You brought trouble upon this people? Is this why You sent me?" + }, + { + "verseNum": 23, + "text": "Ever since I went to Pharaoh to speak in Your name, he has brought trouble on this people, and You have not delivered Your people in any way.”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "But the LORD said to Moses, “Now you will see what I will do to Pharaoh, for because of My mighty hand he will let the people go; because of My strong hand he will drive them out of his land.”" + }, + { + "verseNum": 2, + "text": "God also told Moses, “I am the LORD." + }, + { + "verseNum": 3, + "text": "I appeared to Abraham, to Isaac, and to Jacob as God Almighty, but by My name the LORD I did not make Myself known to them." + }, + { + "verseNum": 4, + "text": "I also established My covenant with them to give them the land of Canaan, the land where they lived as foreigners." + }, + { + "verseNum": 5, + "text": "Furthermore, I have heard the groaning of the Israelites, whom the Egyptians are enslaving, and I have remembered My covenant." + }, + { + "verseNum": 6, + "text": "Therefore tell the Israelites: ‘I am the LORD, and I will bring you out from under the yoke of the Egyptians and deliver you from their bondage. I will redeem you with an outstretched arm and with mighty acts of judgment." + }, + { + "verseNum": 7, + "text": "I will take you as My own people, and I will be your God. Then you will know that I am the LORD your God, who brought you out from under the yoke of the Egyptians." + }, + { + "verseNum": 8, + "text": "And I will bring you into the land that I swore to give to Abraham, Isaac, and Jacob. I will give it to you as a possession. I am the LORD!’”" + }, + { + "verseNum": 9, + "text": "Moses relayed this message to the Israelites, but on account of their broken spirit and cruel bondage, they did not listen to him." + }, + { + "verseNum": 10, + "text": "So the LORD said to Moses," + }, + { + "verseNum": 11, + "text": "“Go and tell Pharaoh king of Egypt to let the Israelites go out of his land.”" + }, + { + "verseNum": 12, + "text": "But in the LORD’s presence Moses replied, “If the Israelites will not listen to me, then why would Pharaoh listen to me, since I am unskilled in speech?”" + }, + { + "verseNum": 13, + "text": "Then the LORD spoke to Moses and Aaron and gave them a charge concerning both the Israelites and Pharaoh king of Egypt, to bring the Israelites out of the land of Egypt." + }, + { + "verseNum": 14, + "text": "These were the heads of their fathers’ houses:\n \n The sons of Reuben, the firstborn of Israel, were Hanoch and Pallu, Hezron and Carmi. These were the clans of Reuben." + }, + { + "verseNum": 15, + "text": "The sons of Simeon were Jemuel, Jamin, Ohad, Jachin, Zohar, and Shaul, the son of a Canaanite woman. These were the clans of Simeon." + }, + { + "verseNum": 16, + "text": "These were the names of the sons of Levi according to their records: Gershon, Kohath, and Merari. Levi lived 137 years." + }, + { + "verseNum": 17, + "text": "The sons of Gershon were Libni and Shimei, by their clans." + }, + { + "verseNum": 18, + "text": "The sons of Kohath were Amram, Izhar, Hebron, and Uzziel. Kohath lived 133 years." + }, + { + "verseNum": 19, + "text": "The sons of Merari were Mahli and Mushi.\n \n These were the clans of the Levites according to their records." + }, + { + "verseNum": 20, + "text": "And Amram married his father’s sister Jochebed, and she bore him Aaron and Moses. Amram lived 137 years." + }, + { + "verseNum": 21, + "text": "The sons of Izhar were Korah, Nepheg, and Zichri." + }, + { + "verseNum": 22, + "text": "The sons of Uzziel were Mishael, Elzaphan, and Sithri." + }, + { + "verseNum": 23, + "text": "And Aaron married Elisheba, the daughter of Amminadab and sister of Nahshon, and she bore him Nadab and Abihu, Eleazar and Ithamar." + }, + { + "verseNum": 24, + "text": "The sons of Korah were Assir, Elkanah, and Abiasaph. These were the clans of the Korahites." + }, + { + "verseNum": 25, + "text": "Aaron’s son Eleazar married one of the daughters of Putiel, and she bore him Phinehas.\n \n These were the heads of the Levite families by their clans." + }, + { + "verseNum": 26, + "text": "It was this Aaron and Moses to whom the LORD said, “Bring the Israelites out of the land of Egypt by their divisions.”" + }, + { + "verseNum": 27, + "text": "Moses and Aaron were the ones who spoke to Pharaoh king of Egypt in order to bring the Israelites out of Egypt." + }, + { + "verseNum": 28, + "text": "Now on the day that the LORD spoke to Moses in Egypt," + }, + { + "verseNum": 29, + "text": "He said to him, “I am the LORD; tell Pharaoh king of Egypt everything I say to you.”" + }, + { + "verseNum": 30, + "text": "But in the LORD’s presence Moses replied, “Since I am unskilled in speech, why would Pharaoh listen to me?”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "The LORD answered Moses, “See, I have made you like God to Pharaoh, and your brother Aaron will be your prophet." + }, + { + "verseNum": 2, + "text": "You are to speak all that I command you, and your brother Aaron is to tell Pharaoh to let the Israelites go out of his land." + }, + { + "verseNum": 3, + "text": "But I will harden Pharaoh’s heart, and though I will multiply My signs and wonders in the land of Egypt," + }, + { + "verseNum": 4, + "text": "Pharaoh will not listen to you.\n \nThen I will lay My hand on Egypt, and by mighty acts of judgment I will bring the divisions of My people the Israelites out of the land of Egypt." + }, + { + "verseNum": 5, + "text": "And the Egyptians will know that I am the LORD, when I stretch out My hand against Egypt and bring the Israelites out from among them.”" + }, + { + "verseNum": 6, + "text": "So Moses and Aaron did just as the LORD had commanded them." + }, + { + "verseNum": 7, + "text": "Moses was eighty years old and Aaron was eighty-three when they spoke to Pharaoh." + }, + { + "verseNum": 8, + "text": "The LORD said to Moses and Aaron," + }, + { + "verseNum": 9, + "text": "“When Pharaoh tells you, ‘Perform a miracle,’ you are to say to Aaron, ‘Take your staff and throw it down before Pharaoh,’ and it will become a serpent.”" + }, + { + "verseNum": 10, + "text": "So Moses and Aaron went to Pharaoh and did just as the LORD had commanded. Aaron threw his staff down before Pharaoh and his officials, and it became a serpent." + }, + { + "verseNum": 11, + "text": "But Pharaoh called the wise men and sorcerers and magicians of Egypt, and they also did the same things by their magic arts." + }, + { + "verseNum": 12, + "text": "Each one threw down his staff, and it became a serpent. But Aaron’s staff swallowed up the other staffs." + }, + { + "verseNum": 13, + "text": "Still, Pharaoh’s heart was hardened, and he would not listen to them, just as the LORD had said." + }, + { + "verseNum": 14, + "text": "Then the LORD said to Moses, “Pharaoh’s heart is unyielding; he refuses to let the people go." + }, + { + "verseNum": 15, + "text": "Go to Pharaoh in the morning as you see him walking out to the water. Wait on the bank of the Nile to meet him, and take in your hand the staff that was changed into a snake." + }, + { + "verseNum": 16, + "text": "Then say to him, ‘The LORD, the God of the Hebrews, has sent me to tell you: Let My people go, so that they may worship Me in the wilderness. But you have not listened until now." + }, + { + "verseNum": 17, + "text": "This is what the LORD says: By this you will know that I am the LORD. Behold, with the staff in my hand I will strike the water of the Nile, and it will turn to blood." + }, + { + "verseNum": 18, + "text": "The fish in the Nile will die, the river will stink, and the Egyptians will be unable to drink its water.’”" + }, + { + "verseNum": 19, + "text": "And the LORD said to Moses, “Tell Aaron, ‘Take your staff and stretch out your hand over the waters of Egypt—over their rivers and canals and ponds and reservoirs—that they may become blood.’ There will be blood throughout the land of Egypt, even in the vessels of wood and stone.”" + }, + { + "verseNum": 20, + "text": "Moses and Aaron did just as the LORD had commanded; in the presence of Pharaoh and his officials, Aaron raised the staff and struck the water of the Nile, and all the water was turned to blood." + }, + { + "verseNum": 21, + "text": "The fish in the Nile died, and the river smelled so bad that the Egyptians could not drink its water. And there was blood throughout the land of Egypt." + }, + { + "verseNum": 22, + "text": "But the magicians of Egypt did the same things by their magic arts. So Pharaoh’s heart was hardened, and he would not listen to Moses and Aaron, just as the LORD had said." + }, + { + "verseNum": 23, + "text": "Instead, Pharaoh turned around, went into his palace, and did not take any of this to heart." + }, + { + "verseNum": 24, + "text": "So all the Egyptians dug around the Nile for water to drink, because they could not drink the water from the river." + }, + { + "verseNum": 25, + "text": "And seven full days passed after the LORD had struck the Nile." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Go to Pharaoh and tell him that this is what the LORD says: ‘Let My people go, so that they may worship Me." + }, + { + "verseNum": 2, + "text": "But if you refuse to let them go, I will plague your whole country with frogs." + }, + { + "verseNum": 3, + "text": "The Nile will teem with frogs, and they will come into your palace and up to your bedroom and onto your bed, into the houses of your officials and your people, and into your ovens and kneading bowls." + }, + { + "verseNum": 4, + "text": "The frogs will come up on you and your people and all your officials.’”" + }, + { + "verseNum": 5, + "text": "And the LORD said to Moses, “Tell Aaron, ‘Stretch out your hand with your staff over the rivers and canals and ponds, and cause the frogs to come up onto the land of Egypt.’”" + }, + { + "verseNum": 6, + "text": "So Aaron stretched out his hand over the waters of Egypt, and the frogs came up and covered the land of Egypt." + }, + { + "verseNum": 7, + "text": "But the magicians did the same thing by their magic arts, and they also brought frogs up onto the land of Egypt." + }, + { + "verseNum": 8, + "text": "Pharaoh summoned Moses and Aaron and said, “Pray to the LORD to take the frogs away from me and my people. Then I will let your people go, that they may sacrifice to the LORD.”" + }, + { + "verseNum": 9, + "text": "Moses said to Pharaoh, “You may have the honor over me. When shall I pray for you and your officials and your people that the frogs (except for those in the Nile) may be taken away from you and your houses?”" + }, + { + "verseNum": 10, + "text": "“Tomorrow,” Pharaoh answered.\n \n“May it be as you say,” Moses replied, “so that you may know that there is no one like the LORD our God." + }, + { + "verseNum": 11, + "text": "The frogs will depart from you and your houses and your officials and your people; they will remain only in the Nile.”" + }, + { + "verseNum": 12, + "text": "After Moses and Aaron had left Pharaoh, Moses cried out to the LORD for help with the frogs that He had brought against Pharaoh." + }, + { + "verseNum": 13, + "text": "And the LORD did as Moses requested, and the frogs in the houses, the courtyards, and the fields died." + }, + { + "verseNum": 14, + "text": "They were piled into countless heaps, and there was a terrible stench in the land." + }, + { + "verseNum": 15, + "text": "When Pharaoh saw that there was relief, however, he hardened his heart and would not listen to Moses and Aaron, just as the LORD had said." + }, + { + "verseNum": 16, + "text": "Then the LORD said to Moses, “Tell Aaron, ‘Stretch out your staff and strike the dust of the earth, that it may turn into swarms of gnats throughout the land of Egypt.’”" + }, + { + "verseNum": 17, + "text": "This they did, and when Aaron stretched out his hand with his staff and struck the dust of the earth, gnats came upon man and beast. All the dust of the earth turned into gnats throughout the land of Egypt." + }, + { + "verseNum": 18, + "text": "The magicians tried to produce gnats using their magic arts, but they could not. And the gnats remained on man and beast." + }, + { + "verseNum": 19, + "text": "“This is the finger of God,” the magicians said to Pharaoh. But Pharaoh’s heart was hardened, and he would not listen to them, just as the LORD had said." + }, + { + "verseNum": 20, + "text": "Then the LORD said to Moses, “Get up early in the morning, and when Pharaoh goes out to the water, stand before him and tell him that this is what the LORD says: ‘Let My people go, so that they may worship Me." + }, + { + "verseNum": 21, + "text": "But if you will not let My people go, I will send swarms of flies upon you and your officials and your people and your houses. The houses of the Egyptians and even the ground where they stand will be full of flies." + }, + { + "verseNum": 22, + "text": "But on that day I will give special treatment to the land of Goshen, where My people live; no swarms of flies will be found there. In this way you will know that I, the LORD, am in the land." + }, + { + "verseNum": 23, + "text": "I will make a distinction between My people and your people. This sign will take place tomorrow.’”" + }, + { + "verseNum": 24, + "text": "And the LORD did so. Thick swarms of flies poured into Pharaoh’s palace and into the houses of his officials. Throughout Egypt the land was ruined by swarms of flies." + }, + { + "verseNum": 25, + "text": "Then Pharaoh summoned Moses and Aaron and said, “Go, sacrifice to your God within this land.”" + }, + { + "verseNum": 26, + "text": "But Moses replied, “It would not be right to do that, because the sacrifices we offer to the LORD our God would be detestable to the Egyptians. If we offer sacrifices that are detestable before the Egyptians, will they not stone us?" + }, + { + "verseNum": 27, + "text": "We must make a three-day journey into the wilderness and sacrifice to the LORD our God as He commands us.”" + }, + { + "verseNum": 28, + "text": "Pharaoh answered, “I will let you go and sacrifice to the LORD your God in the wilderness, but you must not go very far. Now pray for me.”" + }, + { + "verseNum": 29, + "text": "“As soon as I leave you,” Moses said, “I will pray to the LORD, so that tomorrow the swarms of flies will depart from Pharaoh and his officials and his people. But Pharaoh must not act deceitfully again by refusing to let the people go and sacrifice to the LORD.”" + }, + { + "verseNum": 30, + "text": "Then Moses left Pharaoh and prayed to the LORD," + }, + { + "verseNum": 31, + "text": "and the LORD did as Moses requested. He removed the swarms of flies from Pharaoh and his officials and his people; not one fly remained." + }, + { + "verseNum": 32, + "text": "But Pharaoh hardened his heart this time as well, and he would not let the people go." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Go to Pharaoh and tell him that this is what the LORD, the God of the Hebrews, says: ‘Let My people go, so that they may worship Me." + }, + { + "verseNum": 2, + "text": "But if you continue to restrain them and refuse to let them go," + }, + { + "verseNum": 3, + "text": "then the hand of the LORD will bring a severe plague on your livestock in the field—on your horses, donkeys, camels, herds, and flocks." + }, + { + "verseNum": 4, + "text": "But the LORD will make a distinction between the livestock of Israel and the livestock of Egypt, so that no animal belonging to the Israelites will die.’”" + }, + { + "verseNum": 5, + "text": "The LORD set a time, saying, “Tomorrow the LORD will do this in the land.”" + }, + { + "verseNum": 6, + "text": "And the next day the LORD did just that. All the livestock of the Egyptians died, but not one animal belonging to the Israelites died." + }, + { + "verseNum": 7, + "text": "Pharaoh sent officials and found that none of the livestock of the Israelites had died. But Pharaoh’s heart was hardened, and he would not let the people go." + }, + { + "verseNum": 8, + "text": "Then the LORD said to Moses and Aaron, “Take handfuls of soot from the furnace; in the sight of Pharaoh, Moses is to toss it into the air." + }, + { + "verseNum": 9, + "text": "It will become fine dust over all the land of Egypt, and festering boils will break out on man and beast throughout the land.”" + }, + { + "verseNum": 10, + "text": "So they took soot from the furnace and stood before Pharaoh. Moses tossed it into the air, and festering boils broke out on man and beast." + }, + { + "verseNum": 11, + "text": "The magicians could not stand before Moses, because the boils had broken out on them and on all the Egyptians." + }, + { + "verseNum": 12, + "text": "But the LORD hardened Pharaoh’s heart, and he would not listen to them, just as the LORD had said to Moses." + }, + { + "verseNum": 13, + "text": "Then the LORD said to Moses, “Get up early in the morning, stand before Pharaoh, and tell him that this is what the LORD, the God of the Hebrews, says: ‘Let My people go, so that they may worship Me." + }, + { + "verseNum": 14, + "text": "Otherwise, I will send all My plagues against you and your officials and your people, so you may know that there is no one like Me in all the earth." + }, + { + "verseNum": 15, + "text": "For by this time I could have stretched out My hand and struck you and your people with a plague to wipe you off the earth." + }, + { + "verseNum": 16, + "text": "But I have raised you up for this very purpose, that I might display My power to you, and that My name might be proclaimed in all the earth." + }, + { + "verseNum": 17, + "text": "Still, you lord it over My people and do not allow them to go." + }, + { + "verseNum": 18, + "text": "Behold, at this time tomorrow I will rain down the worst hail that has ever fallen on Egypt, from the day it was founded until now." + }, + { + "verseNum": 19, + "text": "So give orders now to shelter your livestock and everything you have in the field. Every man or beast that remains in the field and is not brought inside will die when the hail comes down upon them.’”" + }, + { + "verseNum": 20, + "text": "Those among Pharaoh’s officials who feared the word of the LORD hurried to bring their servants and livestock to shelter," + }, + { + "verseNum": 21, + "text": "but those who disregarded the word of the LORD left their servants and livestock in the field." + }, + { + "verseNum": 22, + "text": "Then the LORD said to Moses, “Stretch out your hand toward heaven, so that hail may fall on all the land of Egypt—on man and beast and every plant of the field throughout the land of Egypt.”" + }, + { + "verseNum": 23, + "text": "So Moses stretched out his staff toward heaven, and the LORD sent thunder and hail, and lightning struck the earth. So the LORD rained down hail upon the land of Egypt." + }, + { + "verseNum": 24, + "text": "The hail fell and the lightning continued flashing through it. The hail was so severe that nothing like it had ever been seen in all the land of Egypt from the time it became a nation." + }, + { + "verseNum": 25, + "text": "Throughout the land of Egypt, the hail struck down everything in the field, both man and beast; it beat down every plant of the field and stripped every tree." + }, + { + "verseNum": 26, + "text": "The only place where it did not hail was in the land of Goshen, where the Israelites lived." + }, + { + "verseNum": 27, + "text": "Then Pharaoh summoned Moses and Aaron. “This time I have sinned,” he said. “The LORD is righteous, and I and my people are wicked." + }, + { + "verseNum": 28, + "text": "Pray to the LORD, for there has been enough of God’s thunder and hail. I will let you go; you do not need to stay any longer.”" + }, + { + "verseNum": 29, + "text": "Moses said to him, “When I have left the city, I will spread out my hands to the LORD. The thunder will cease, and there will be no more hail, so that you may know that the earth is the LORD’s." + }, + { + "verseNum": 30, + "text": "But as for you and your officials, I know that you still do not fear the LORD our God.”" + }, + { + "verseNum": 31, + "text": "(Now the flax and barley were destroyed, since the barley was ripe and the flax was in bloom;" + }, + { + "verseNum": 32, + "text": "but the wheat and spelt were not destroyed, because they are late crops.)" + }, + { + "verseNum": 33, + "text": "Then Moses departed from Pharaoh, went out of the city, and spread out his hands to the LORD. The thunder and hail ceased, and the rain no longer poured down on the land." + }, + { + "verseNum": 34, + "text": "When Pharaoh saw that the rain and hail and thunder had ceased, he sinned again and hardened his heart—he and his officials." + }, + { + "verseNum": 35, + "text": "So Pharaoh’s heart was hardened, and he would not let the Israelites go, just as the LORD had said through Moses." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Go to Pharaoh, for I have hardened his heart and the hearts of his officials, that I may perform these miraculous signs of Mine among them," + }, + { + "verseNum": 2, + "text": "and that you may tell your children and grandchildren how severely I dealt with the Egyptians when I performed miraculous signs among them, so that all of you may know that I am the LORD.”" + }, + { + "verseNum": 3, + "text": "So Moses and Aaron went to Pharaoh and told him, “This is what the LORD, the God of the Hebrews, says: ‘How long will you refuse to humble yourself before Me? Let My people go, so that they may worship Me." + }, + { + "verseNum": 4, + "text": "But if you refuse to let My people go, I will bring locusts into your territory tomorrow." + }, + { + "verseNum": 5, + "text": "They will cover the face of the land so that no one can see it. They will devour whatever is left after the hail and eat every tree that grows in your fields." + }, + { + "verseNum": 6, + "text": "They will fill your houses and the houses of all your officials and every Egyptian—something neither your fathers nor your grandfathers have seen since the day they came into this land.’”\n \nThen Moses turned and left Pharaoh’s presence." + }, + { + "verseNum": 7, + "text": "Pharaoh’s officials asked him, “How long will this man be a snare to us? Let the people go, so that they may worship the LORD their God. Do you not yet realize that Egypt is in ruins?”" + }, + { + "verseNum": 8, + "text": "So Moses and Aaron were brought back to Pharaoh. “Go, worship the LORD your God,” he said. “But who exactly will be going?”" + }, + { + "verseNum": 9, + "text": "“We will go with our young and old,” Moses replied. “We will go with our sons and daughters, and with our flocks and herds, for we must hold a feast to the LORD.”" + }, + { + "verseNum": 10, + "text": "Then Pharaoh told them, “May the LORD be with you if I ever let you go with your little ones. Clearly you are bent on evil." + }, + { + "verseNum": 11, + "text": "No, only the men may go and worship the LORD, since that is what you have been requesting.” And Moses and Aaron were driven from Pharaoh’s presence." + }, + { + "verseNum": 12, + "text": "Then the LORD said to Moses, “Stretch out your hand over the land of Egypt, so that the locusts may swarm over it and devour every plant in the land—everything that the hail has left behind.”" + }, + { + "verseNum": 13, + "text": "So Moses stretched out his staff over the land of Egypt, and throughout that day and night the LORD sent an east wind across the land. By morning the east wind had brought the locusts." + }, + { + "verseNum": 14, + "text": "The locusts swarmed across the land and settled over the entire territory of Egypt. Never before had there been so many locusts, and never again will there be." + }, + { + "verseNum": 15, + "text": "They covered the face of all the land until it was black, and they consumed all the plants on the ground and all the fruit on the trees that the hail had left behind. Nothing green was left on any tree or plant in all the land of Egypt." + }, + { + "verseNum": 16, + "text": "Pharaoh quickly summoned Moses and Aaron and said, “I have sinned against the LORD your God and against you." + }, + { + "verseNum": 17, + "text": "Now please forgive my sin once more and appeal to the LORD your God, that He may remove this death from me.”" + }, + { + "verseNum": 18, + "text": "So Moses left Pharaoh’s presence and appealed to the LORD." + }, + { + "verseNum": 19, + "text": "And the LORD changed the wind to a very strong west wind that carried off the locusts and blew them into the Red Sea. Not a single locust remained anywhere in Egypt." + }, + { + "verseNum": 20, + "text": "But the LORD hardened Pharaoh’s heart, and he would not let the Israelites go." + }, + { + "verseNum": 21, + "text": "Then the LORD said to Moses, “Stretch out your hand toward heaven, so that darkness may spread over the land of Egypt—a palpable darkness.”" + }, + { + "verseNum": 22, + "text": "So Moses stretched out his hand toward heaven, and total darkness covered all the land of Egypt for three days." + }, + { + "verseNum": 23, + "text": "No one could see anyone else, and for three days no one left his place. Yet all the Israelites had light in their dwellings." + }, + { + "verseNum": 24, + "text": "Then Pharaoh summoned Moses and said, “Go, worship the LORD. Even your little ones may go with you; only your flocks and herds must stay behind.”" + }, + { + "verseNum": 25, + "text": "But Moses replied, “You must also provide us with sacrifices and burnt offerings to present to the LORD our God." + }, + { + "verseNum": 26, + "text": "Even our livestock must go with us; not a hoof will be left behind, for we will need some of them to worship the LORD our God, and we will not know how we are to worship the LORD until we arrive.”" + }, + { + "verseNum": 27, + "text": "But the LORD hardened Pharaoh’s heart, and he was unwilling to let them go." + }, + { + "verseNum": 28, + "text": "“Depart from me!” Pharaoh said to Moses. “Make sure you never see my face again, for on the day you see my face, you will die.”" + }, + { + "verseNum": 29, + "text": "“As you say,” Moses replied, “I will never see your face again.”" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “I will bring upon Pharaoh and Egypt one more plague. After that, he will allow you to leave this place. And when he lets you go, he will drive you out completely." + }, + { + "verseNum": 2, + "text": "Now announce to the people that men and women alike should ask their neighbors for articles of silver and gold.”" + }, + { + "verseNum": 3, + "text": "And the LORD gave the people favor in the sight of the Egyptians. Moreover, Moses himself was highly regarded in Egypt by Pharaoh’s officials and by the people." + }, + { + "verseNum": 4, + "text": "So Moses declared, “This is what the LORD says: ‘About midnight I will go throughout Egypt," + }, + { + "verseNum": 5, + "text": "and every firstborn son in the land of Egypt will die, from the firstborn of Pharaoh who sits on his throne, to the firstborn of the servant girl behind the hand mill, as well as the firstborn of all the cattle." + }, + { + "verseNum": 6, + "text": "Then a great cry will go out over all the land of Egypt. Such an outcry has never been heard before and will never be heard again." + }, + { + "verseNum": 7, + "text": "But among all the Israelites, not even a dog will snarl at man or beast.’\n \nThen you will know that the LORD makes a distinction between Egypt and Israel." + }, + { + "verseNum": 8, + "text": "And all these officials of yours will come and bow before me, saying, ‘Go, you and all the people who follow you!’ After that, I will depart.”\n \nAnd hot with anger, Moses left Pharaoh’s presence." + }, + { + "verseNum": 9, + "text": "The LORD said to Moses, “Pharaoh will not listen to you, so that My wonders may be multiplied in the land of Egypt.”" + }, + { + "verseNum": 10, + "text": "Moses and Aaron did all these wonders before Pharaoh, but the LORD hardened Pharaoh’s heart so that he would not let the Israelites go out of his land." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Now the LORD said to Moses and Aaron in the land of Egypt," + }, + { + "verseNum": 2, + "text": "“This month is the beginning of months for you; it shall be the first month of your year." + }, + { + "verseNum": 3, + "text": "Tell the whole congregation of Israel that on the tenth day of this month each man must select a lamb for his family, one per household." + }, + { + "verseNum": 4, + "text": "If the household is too small for a whole lamb, they are to share with the nearest neighbor based on the number of people, and apportion the lamb accordingly." + }, + { + "verseNum": 5, + "text": "Your lamb must be an unblemished year-old male, and you may take it from the sheep or the goats." + }, + { + "verseNum": 6, + "text": "You must keep it until the fourteenth day of the month, when the whole assembly of the congregation of Israel will slaughter the animals at twilight." + }, + { + "verseNum": 7, + "text": "They are to take some of the blood and put it on the sides and tops of the doorframes of the houses where they eat the lambs." + }, + { + "verseNum": 8, + "text": "They are to eat the meat that night, roasted over the fire, along with unleavened bread and bitter herbs." + }, + { + "verseNum": 9, + "text": "Do not eat any of the meat raw or cooked in boiling water, but only roasted over the fire—its head and legs and inner parts." + }, + { + "verseNum": 10, + "text": "Do not leave any of it until morning; before the morning you must burn up any part that is left over." + }, + { + "verseNum": 11, + "text": "This is how you are to eat it: You must be fully dressed for travel, with your sandals on your feet and your staff in your hand. You are to eat in haste; it is the LORD’s Passover." + }, + { + "verseNum": 12, + "text": "On that night I will pass through the land of Egypt and strike down every firstborn male, both man and beast, and I will execute judgment against all the gods of Egypt. I am the LORD." + }, + { + "verseNum": 13, + "text": "The blood on the houses where you are staying will distinguish them; when I see the blood, I will pass over you. No plague will fall on you to destroy you when I strike the land of Egypt." + }, + { + "verseNum": 14, + "text": "And this day will be a memorial for you, and you are to celebrate it as a feast to the LORD, as a permanent statute for the generations to come." + }, + { + "verseNum": 15, + "text": "For seven days you must eat unleavened bread. On the first day you are to remove the leaven from your houses. Whoever eats anything leavened from the first day through the seventh must be cut off from Israel." + }, + { + "verseNum": 16, + "text": "On the first day you are to hold a sacred assembly, and another on the seventh day. You must not do any work on those days, except to prepare the meals—that is all you may do." + }, + { + "verseNum": 17, + "text": "So you are to keep the Feast of Unleavened Bread, for on this very day I brought your divisions out of the land of Egypt. You must keep this day as a permanent statute for the generations to come." + }, + { + "verseNum": 18, + "text": "In the first month you are to eat unleavened bread, from the evening of the fourteenth day until the evening of the twenty-first day." + }, + { + "verseNum": 19, + "text": "For seven days there must be no leaven found in your houses. If anyone eats something leavened, that person, whether a foreigner or native of the land, must be cut off from the congregation of Israel." + }, + { + "verseNum": 20, + "text": "You are not to eat anything leavened; eat unleavened bread in all your homes.”" + }, + { + "verseNum": 21, + "text": "Then Moses summoned all the elders of Israel and told them, “Go at once and select for yourselves a lamb for each family, and slaughter the Passover lamb." + }, + { + "verseNum": 22, + "text": "Take a cluster of hyssop, dip it into the blood in the basin, and brush the blood on the top and sides of the doorframe. None of you shall go out the door of his house until morning." + }, + { + "verseNum": 23, + "text": "When the LORD passes through to strike down the Egyptians, He will see the blood on the top and sides of the doorframe and will pass over that doorway; so He will not allow the destroyer to enter your houses and strike you down." + }, + { + "verseNum": 24, + "text": "And you are to keep this command as a permanent statute for you and your descendants." + }, + { + "verseNum": 25, + "text": "When you enter the land that the LORD will give you as He promised, you are to keep this service." + }, + { + "verseNum": 26, + "text": "When your children ask you, ‘What does this service mean to you?’" + }, + { + "verseNum": 27, + "text": "you are to reply, ‘It is the Passover sacrifice to the LORD, who passed over the houses of the Israelites in Egypt when He struck down the Egyptians and spared our homes.’”\n \nThen the people bowed down and worshiped." + }, + { + "verseNum": 28, + "text": "And the Israelites went and did just what the LORD had commanded Moses and Aaron." + }, + { + "verseNum": 29, + "text": "Now at midnight the LORD struck down every firstborn male in the land of Egypt, from the firstborn of Pharaoh, who sat on his throne, to the firstborn of the prisoner in the dungeon, as well as all the firstborn among the livestock." + }, + { + "verseNum": 30, + "text": "During the night Pharaoh got up—he and all his officials and all the Egyptians—and there was loud wailing in Egypt; for there was no house without someone dead." + }, + { + "verseNum": 31, + "text": "Then Pharaoh summoned Moses and Aaron by night and said, “Get up, leave my people, both you and the Israelites! Go, worship the LORD as you have requested." + }, + { + "verseNum": 32, + "text": "Take your flocks and herds as well, just as you have said, and depart! And bless me also.”" + }, + { + "verseNum": 33, + "text": "And in order to send them out of the land quickly, the Egyptians urged the people on. “For otherwise,” they said, “we are all going to die!”" + }, + { + "verseNum": 34, + "text": "So the people took their dough before it was leavened, carrying it on their shoulders in kneading bowls wrapped in clothing." + }, + { + "verseNum": 35, + "text": "Furthermore, the Israelites acted on Moses’ word and asked the Egyptians for articles of silver and gold, and for clothing." + }, + { + "verseNum": 36, + "text": "And the LORD gave the people such favor in the sight of the Egyptians that they granted their request. In this way they plundered the Egyptians." + }, + { + "verseNum": 37, + "text": "The Israelites journeyed from Rameses to Succoth with about 600,000 men on foot, besides women and children." + }, + { + "verseNum": 38, + "text": "And a mixed multitude also went up with them, along with great droves of livestock, both flocks and herds." + }, + { + "verseNum": 39, + "text": "Since their dough had no leaven, the people baked what they had brought out of Egypt into unleavened loaves. For when they had been driven out of Egypt, they could not delay and had not prepared any provisions for themselves." + }, + { + "verseNum": 40, + "text": "Now the duration of the Israelites’ stay in Egypt was 430 years." + }, + { + "verseNum": 41, + "text": "At the end of the 430 years, to the very day, all the LORD’s divisions went out of the land of Egypt." + }, + { + "verseNum": 42, + "text": "Because the LORD kept a vigil that night to bring them out of the land of Egypt, this same night is to be a vigil to the LORD, to be observed by all the Israelites for the generations to come." + }, + { + "verseNum": 43, + "text": "And the LORD said to Moses and Aaron, “This is the statute of the Passover: No foreigner is to eat of it." + }, + { + "verseNum": 44, + "text": "But any slave who has been purchased may eat of it, after you have circumcised him." + }, + { + "verseNum": 45, + "text": "A temporary resident or hired hand shall not eat the Passover." + }, + { + "verseNum": 46, + "text": "It must be eaten inside one house. You are not to take any of the meat outside the house, and you may not break any of the bones." + }, + { + "verseNum": 47, + "text": "The whole congregation of Israel must celebrate it." + }, + { + "verseNum": 48, + "text": "If a foreigner resides with you and wants to celebrate the LORD’s Passover, all the males in the household must be circumcised; then he may come near to celebrate it, and he shall be like a native of the land. But no uncircumcised man may eat of it." + }, + { + "verseNum": 49, + "text": "The same law shall apply to both the native and the foreigner who resides among you.”" + }, + { + "verseNum": 50, + "text": "Then all the Israelites did this—they did just as the LORD had commanded Moses and Aaron." + }, + { + "verseNum": 51, + "text": "And on that very day the LORD brought the Israelites out of the land of Egypt by their divisions." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Consecrate to Me every firstborn male. The firstborn from every womb among the Israelites belongs to Me, both of man and beast.”" + }, + { + "verseNum": 3, + "text": "So Moses told the people, “Remember this day, the day you came out of Egypt, out of the house of slavery; for the LORD brought you out of it by the strength of His hand. And nothing leavened shall be eaten." + }, + { + "verseNum": 4, + "text": "Today, in the month of Abib, you are leaving." + }, + { + "verseNum": 5, + "text": "And when the LORD brings you into the land of the Canaanites, Hittites, Amorites, Hivites, and Jebusites—the land He swore to your fathers that He would give you, a land flowing with milk and honey—you shall keep this service in this month." + }, + { + "verseNum": 6, + "text": "For seven days you are to eat unleavened bread, and on the seventh day there shall be a feast to the LORD." + }, + { + "verseNum": 7, + "text": "Unleavened bread shall be eaten during those seven days. Nothing leavened may be found among you, nor shall leaven be found anywhere within your borders." + }, + { + "verseNum": 8, + "text": "And on that day you are to explain to your son, ‘This is because of what the LORD did for me when I came out of Egypt.’" + }, + { + "verseNum": 9, + "text": "It shall be a sign for you on your hand and a reminder on your forehead that the Law of the LORD is to be on your lips. For with a mighty hand the LORD brought you out of Egypt." + }, + { + "verseNum": 10, + "text": "Therefore you shall keep this statute at the appointed time year after year." + }, + { + "verseNum": 11, + "text": "And after the LORD brings you into the land of the Canaanites and gives it to you, as He swore to you and your fathers," + }, + { + "verseNum": 12, + "text": "you are to present to the LORD the firstborn male of every womb. All the firstborn males of your livestock belong to the LORD." + }, + { + "verseNum": 13, + "text": "You must redeem every firstborn donkey with a lamb, and if you do not redeem it, you are to break its neck. And every firstborn of your sons you must redeem." + }, + { + "verseNum": 14, + "text": "In the future, when your son asks you, ‘What does this mean?’ you are to tell him, ‘With a mighty hand the LORD brought us out of Egypt, out of the house of slavery." + }, + { + "verseNum": 15, + "text": "And when Pharaoh stubbornly refused to let us go, the LORD killed every firstborn in the land of Egypt, both of man and beast. This is why I sacrifice to the LORD the firstborn male of every womb, but I redeem all the firstborn of my sons.’" + }, + { + "verseNum": 16, + "text": "So it shall serve as a sign on your hand and a symbol on your forehead, for with a mighty hand the LORD brought us out of Egypt.”" + }, + { + "verseNum": 17, + "text": "When Pharaoh let the people go, God did not lead them along the road through the land of the Philistines, though it was shorter. For God said, “If the people face war, they might change their minds and return to Egypt.”" + }, + { + "verseNum": 18, + "text": "So God led the people around by the way of the wilderness toward the Red Sea. And the Israelites left the land of Egypt arrayed for battle." + }, + { + "verseNum": 19, + "text": "Moses took the bones of Joseph with him because Joseph had made the sons of Israel swear a solemn oath when he said, “God will surely attend to you, and then you must carry my bones with you from this place.”" + }, + { + "verseNum": 20, + "text": "They set out from Succoth and camped at Etham on the edge of the wilderness." + }, + { + "verseNum": 21, + "text": "And the LORD went before them in a pillar of cloud to guide their way by day, and in a pillar of fire to give them light by night, so that they could travel by day or night." + }, + { + "verseNum": 22, + "text": "Neither the pillar of cloud by day nor the pillar of fire by night left its place before the people." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Tell the Israelites to turn back and encamp before Pi-hahiroth, between Migdol and the sea. You are to encamp by the sea, directly opposite Baal-zephon." + }, + { + "verseNum": 3, + "text": "For Pharaoh will say of the Israelites, ‘They are wandering the land in confusion; the wilderness has boxed them in.’" + }, + { + "verseNum": 4, + "text": "And I will harden Pharaoh’s heart so that he will pursue them. But I will gain honor by means of Pharaoh and all his army, and the Egyptians will know that I am the LORD.”\n \nSo this is what the Israelites did." + }, + { + "verseNum": 5, + "text": "When the king of Egypt was told that the people had fled, Pharaoh and his officials changed their minds about them and said, “What have we done? We have released Israel from serving us.”" + }, + { + "verseNum": 6, + "text": "So Pharaoh prepared his chariot and took his army with him." + }, + { + "verseNum": 7, + "text": "He took 600 of the best chariots, and all the other chariots of Egypt, with officers over all of them." + }, + { + "verseNum": 8, + "text": "And the LORD hardened the heart of Pharaoh king of Egypt so that he pursued the Israelites, who were marching out defiantly." + }, + { + "verseNum": 9, + "text": "The Egyptians—all Pharaoh’s horses and chariots, horsemen and troops—pursued the Israelites and overtook them as they camped by the sea near Pi-hahiroth, opposite Baal-zephon." + }, + { + "verseNum": 10, + "text": "As Pharaoh approached, the Israelites looked up and saw the Egyptians marching after them, and they were terrified and cried out to the LORD." + }, + { + "verseNum": 11, + "text": "They said to Moses, “Was it because there were no graves in Egypt that you brought us into the wilderness to die? What have you done to us by bringing us out of Egypt?" + }, + { + "verseNum": 12, + "text": "Did we not say to you in Egypt, ‘Leave us alone so that we may serve the Egyptians’? For it would have been better for us to serve the Egyptians than to die in the wilderness.”" + }, + { + "verseNum": 13, + "text": "But Moses told the people, “Do not be afraid. Stand firm and you will see the LORD’s salvation, which He will accomplish for you today; for the Egyptians you see today, you will never see again." + }, + { + "verseNum": 14, + "text": "The LORD will fight for you; you need only to be still.”" + }, + { + "verseNum": 15, + "text": "Then the LORD said to Moses, “Why are you crying out to Me? Tell the Israelites to go forward." + }, + { + "verseNum": 16, + "text": "And as for you, lift up your staff and stretch out your hand over the sea and divide it, so that the Israelites can go through the sea on dry ground." + }, + { + "verseNum": 17, + "text": "And I will harden the hearts of the Egyptians so that they will go in after them. Then I will gain honor by means of Pharaoh and all his army and chariots and horsemen." + }, + { + "verseNum": 18, + "text": "The Egyptians will know that I am the LORD when I am honored through Pharaoh, his chariots, and his horsemen.”" + }, + { + "verseNum": 19, + "text": "And the angel of God, who had gone before the camp of Israel, withdrew and went behind them. The pillar of cloud also moved from before them and stood behind them," + }, + { + "verseNum": 20, + "text": "so that it came between the camps of Egypt and Israel. The cloud was there in the darkness, but it lit up the night. So all night long neither camp went near the other." + }, + { + "verseNum": 21, + "text": "Then Moses stretched out his hand over the sea, and all that night the LORD drove back the sea with a strong east wind that turned it into dry land. So the waters were divided," + }, + { + "verseNum": 22, + "text": "and the Israelites went through the sea on dry ground, with walls of water on their right and on their left." + }, + { + "verseNum": 23, + "text": "And the Egyptians chased after them—all Pharaoh’s horses, chariots, and horsemen—and followed them into the sea." + }, + { + "verseNum": 24, + "text": "At morning watch, however, the LORD looked down on the army of the Egyptians from the pillar of fire and cloud, and He threw their camp into confusion." + }, + { + "verseNum": 25, + "text": "He caused their chariot wheels to wobble, so that they had difficulty driving. “Let us flee from the Israelites,” said the Egyptians, “for the LORD is fighting for them against Egypt!”" + }, + { + "verseNum": 26, + "text": "Then the LORD said to Moses, “Stretch out your hand over the sea, so that the waters may flow back over the Egyptians and their chariots and horsemen.”" + }, + { + "verseNum": 27, + "text": "So Moses stretched out his hand over the sea, and at daybreak the sea returned to its normal state. As the Egyptians were retreating, the LORD swept them into the sea." + }, + { + "verseNum": 28, + "text": "The waters flowed back and covered the chariots and horsemen—the entire army of Pharaoh that had chased the Israelites into the sea. Not one of them survived." + }, + { + "verseNum": 29, + "text": "But the Israelites had walked through the sea on dry ground, with walls of water on their right and on their left." + }, + { + "verseNum": 30, + "text": "That day the LORD saved Israel from the hand of the Egyptians, and Israel saw the Egyptians dead on the shore." + }, + { + "verseNum": 31, + "text": "When Israel saw the great power that the LORD had exercised over the Egyptians, the people feared the LORD and believed in Him and in His servant Moses." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Then Moses and the Israelites sang this song to the LORD:\n \n “I will sing to the LORD,\n for He is highly exalted.\n The horse and rider\n He has thrown into the sea." + }, + { + "verseNum": 2, + "text": "The LORD is my strength and my song,\n and He has become my salvation.\n He is my God, and I will praise Him,\n my father’s God, and I will exalt Him." + }, + { + "verseNum": 3, + "text": "The LORD is a warrior,\n the LORD is His name." + }, + { + "verseNum": 4, + "text": "Pharaoh’s chariots and army\n He has cast into the sea;\n the finest of his officers\n are drowned in the Red Sea." + }, + { + "verseNum": 5, + "text": "The depths have covered them;\n they sank there like a stone." + }, + { + "verseNum": 6, + "text": "Your right hand, O LORD,\n is majestic in power;\n Your right hand, O LORD,\n has shattered the enemy." + }, + { + "verseNum": 7, + "text": "You overthrew Your adversaries\n by Your great majesty.\n You unleashed Your burning wrath;\n it consumed them like stubble." + }, + { + "verseNum": 8, + "text": "At the blast of Your nostrils\n the waters piled up;\n like a wall the currents stood firm;\n the depths congealed in the heart of the sea." + }, + { + "verseNum": 9, + "text": "The enemy declared,\n ‘I will pursue, I will overtake.\n I will divide the spoils;\n I will gorge myself on them.\n I will draw my sword;\n my hand will destroy them.’" + }, + { + "verseNum": 10, + "text": "But You blew with Your breath,\n and the sea covered them.\n They sank like lead\n in the mighty waters." + }, + { + "verseNum": 11, + "text": "Who among the gods is like You, O LORD?\n Who is like You—majestic in holiness,\n revered with praises,\n performing wonders?" + }, + { + "verseNum": 12, + "text": "You stretched out Your right hand,\n and the earth swallowed them up." + }, + { + "verseNum": 13, + "text": "With loving devotion You will lead\n the people You have redeemed;\n with Your strength You will guide them\n to Your holy dwelling." + }, + { + "verseNum": 14, + "text": "The nations will hear and tremble;\n anguish will grip the dwellers of Philistia." + }, + { + "verseNum": 15, + "text": "Then the chiefs of Edom will be dismayed;\n trembling will seize the leaders of Moab;\n those who dwell in Canaan will melt away," + }, + { + "verseNum": 16, + "text": "and terror and dread will fall on them.\n By the power of Your arm\n they will be as still as a stone\n until Your people pass by, O LORD,\n until the people You have bought pass by." + }, + { + "verseNum": 17, + "text": "You will bring them in and plant them\n on the mountain of Your inheritance—\n the place, O LORD, You have prepared for Your dwelling,\n the sanctuary, O Lord, Your hands have established." + }, + { + "verseNum": 18, + "text": "The LORD will reign forever and ever!”" + }, + { + "verseNum": 19, + "text": "For when Pharaoh’s horses, chariots, and horsemen went into the sea, the LORD brought the waters of the sea back over them. But the Israelites walked through the sea on dry ground." + }, + { + "verseNum": 20, + "text": "Then Miriam the prophetess, Aaron’s sister, took a tambourine in her hand, and all the women followed her with tambourines and dancing." + }, + { + "verseNum": 21, + "text": "And Miriam sang back to them:\n \n “Sing to the LORD,\n for He is highly exalted;\n the horse and rider\n He has thrown into the sea.”" + }, + { + "verseNum": 22, + "text": "Then Moses led Israel from the Red Sea, and they went out into the Desert of Shur. For three days they walked in the desert without finding water." + }, + { + "verseNum": 23, + "text": "And when they came to Marah, they could not drink the water there because it was bitter. (That is why it was named Marah.)" + }, + { + "verseNum": 24, + "text": "So the people grumbled against Moses, saying, “What are we to drink?”" + }, + { + "verseNum": 25, + "text": "And Moses cried out to the LORD, and the LORD showed him a log. And when he cast it into the waters, they were sweetened.\n \nThere the LORD made for them a statute and an ordinance, and there He tested them," + }, + { + "verseNum": 26, + "text": "saying, “If you will listen carefully to the voice of the LORD your God, and do what is right in His eyes, and pay attention to His commands, and keep all His statutes, then I will not bring on you any of the diseases I inflicted on the Egyptians. For I am the LORD who heals you.”" + }, + { + "verseNum": 27, + "text": "Then they came to Elim, where there were twelve springs of water and seventy palm trees, and they camped there by the waters." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "On the fifteenth day of the second month after they had left the land of Egypt, the whole congregation of Israel set out from Elim and came to the Desert of Sin, which is between Elim and Sinai." + }, + { + "verseNum": 2, + "text": "And there in the desert they all grumbled against Moses and Aaron." + }, + { + "verseNum": 3, + "text": "“If only we had died by the LORD’s hand in the land of Egypt!” they said. “There we sat by pots of meat and ate our fill of bread, but you have brought us into this desert to starve this whole assembly to death!”" + }, + { + "verseNum": 4, + "text": "Then the LORD said to Moses, “Behold, I will rain down bread from heaven for you. Each day the people are to go out and gather enough for that day. In this way I will test whether or not they will follow My instructions." + }, + { + "verseNum": 5, + "text": "Then on the sixth day, when they prepare what they bring in, it will be twice as much as they gather on the other days.”" + }, + { + "verseNum": 6, + "text": "So Moses and Aaron said to all the Israelites, “This evening you will know that it was the LORD who brought you out of the land of Egypt," + }, + { + "verseNum": 7, + "text": "and in the morning you will see the LORD’s glory, because He has heard your grumbling against Him. For who are we that you should grumble against us?”" + }, + { + "verseNum": 8, + "text": "And Moses added, “The LORD will give you meat to eat this evening and bread to fill you in the morning, for He has heard your grumbling against Him. Who are we? Your grumblings are not against us but against the LORD.”" + }, + { + "verseNum": 9, + "text": "Then Moses said to Aaron, “Tell the whole congregation of Israel, ‘Come before the LORD, for He has heard your grumbling.’”" + }, + { + "verseNum": 10, + "text": "And as Aaron was speaking to the whole congregation of Israel, they looked toward the desert, and there in a cloud the glory of the LORD appeared." + }, + { + "verseNum": 11, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 12, + "text": "“I have heard the grumbling of the Israelites. Tell them, ‘At twilight you will eat meat, and in the morning you will be filled with bread. Then you will know that I am the LORD your God.’”" + }, + { + "verseNum": 13, + "text": "That evening quail came and covered the camp, and in the morning there was a layer of dew around the camp." + }, + { + "verseNum": 14, + "text": "When the layer of dew had evaporated, there were thin flakes on the desert floor, as fine as frost on the ground." + }, + { + "verseNum": 15, + "text": "When the Israelites saw it, they asked one another, “What is it?” For they did not know what it was.\n \nSo Moses told them, “It is the bread that the LORD has given you to eat." + }, + { + "verseNum": 16, + "text": "This is what the LORD has commanded: ‘Each one is to gather as much as he needs. You may take an omer for each person in your tent.’”" + }, + { + "verseNum": 17, + "text": "So the Israelites did this. Some gathered more, and some less." + }, + { + "verseNum": 18, + "text": "When they measured it by the omer, he who gathered much had no excess, and he who gathered little had no shortfall. Each one gathered as much as he needed to eat." + }, + { + "verseNum": 19, + "text": "Then Moses said to them, “No one may keep any of it until morning.”" + }, + { + "verseNum": 20, + "text": "But they did not listen to Moses; some people left part of it until morning, and it became infested with maggots and began to smell. So Moses was angry with them." + }, + { + "verseNum": 21, + "text": "Every morning each one gathered as much as was needed, and when the sun grew hot, it melted away." + }, + { + "verseNum": 22, + "text": "On the sixth day, they gathered twice as much food—two omers per person —and all the leaders of the congregation came and reported this to Moses." + }, + { + "verseNum": 23, + "text": "He told them, “This is what the LORD has said: ‘Tomorrow is to be a day of complete rest, a holy Sabbath to the LORD. So bake what you want to bake, and boil what you want to boil. Then set aside whatever remains and keep it until morning.’”" + }, + { + "verseNum": 24, + "text": "So they set it aside until morning as Moses had commanded, and it did not smell or contain any maggots." + }, + { + "verseNum": 25, + "text": "“Eat it today,” Moses said, “because today is a Sabbath to the LORD. Today you will not find anything in the field." + }, + { + "verseNum": 26, + "text": "For six days you may gather, but on the seventh day, the Sabbath, it will not be there.”" + }, + { + "verseNum": 27, + "text": "Yet on the seventh day some of the people went out to gather, but they did not find anything." + }, + { + "verseNum": 28, + "text": "Then the LORD said to Moses, “How long will you refuse to keep My commandments and instructions?" + }, + { + "verseNum": 29, + "text": "Understand that the LORD has given you the Sabbath; that is why on the sixth day He will give you bread for two days. On the seventh day, everyone must stay where he is; no one may leave his place.”" + }, + { + "verseNum": 30, + "text": "So the people rested on the seventh day." + }, + { + "verseNum": 31, + "text": "Now the house of Israel called the bread manna. It was white like coriander seed and tasted like wafers made with honey." + }, + { + "verseNum": 32, + "text": "Moses said, “This is what the LORD has commanded: ‘Keep an omer of manna for the generations to come, so that they may see the bread I fed you in the wilderness when I brought you out of the land of Egypt.’”" + }, + { + "verseNum": 33, + "text": "So Moses told Aaron, “Take a jar and fill it with an omer of manna. Then place it before the LORD to be preserved for the generations to come.”" + }, + { + "verseNum": 34, + "text": "And Aaron placed it in front of the Testimony, to be preserved just as the LORD had commanded Moses." + }, + { + "verseNum": 35, + "text": "The Israelites ate manna forty years, until they came to a land where they could settle; they ate manna until they reached the border of Canaan." + }, + { + "verseNum": 36, + "text": "(Now an omer is a tenth of an ephah.)" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Then the whole congregation of Israel left the Desert of Sin, moving from place to place as the LORD commanded. They camped at Rephidim, but there was no water for the people to drink." + }, + { + "verseNum": 2, + "text": "So the people contended with Moses, “Give us water to drink.”\n \n“Why do you contend with me?” Moses replied. “Why do you test the LORD?”" + }, + { + "verseNum": 3, + "text": "But the people thirsted for water there, and they grumbled against Moses: “Why have you brought us out of Egypt—to make us and our children and livestock die of thirst?”" + }, + { + "verseNum": 4, + "text": "Then Moses cried out to the LORD, “What should I do with these people? A little more and they will stone me!”" + }, + { + "verseNum": 5, + "text": "And the LORD said to Moses, “Walk on ahead of the people and take some of the elders of Israel with you. Take along in your hand the staff with which you struck the Nile, and go." + }, + { + "verseNum": 6, + "text": "Behold, I will stand there before you by the rock at Horeb. And when you strike the rock, water will come out of it for the people to drink.”\n \nSo Moses did this in the sight of the elders of Israel." + }, + { + "verseNum": 7, + "text": "He named the place Massah and Meribah because the Israelites quarreled, and because they tested the LORD, saying, “Is the LORD among us or not?”" + }, + { + "verseNum": 8, + "text": "After this, the Amalekites came and attacked the Israelites at Rephidim." + }, + { + "verseNum": 9, + "text": "So Moses said to Joshua, “Choose some of our men and go out to fight the Amalekites. Tomorrow I will stand on the hilltop with the staff of God in my hand.”" + }, + { + "verseNum": 10, + "text": "Joshua did as Moses had instructed him and fought against the Amalekites, while Moses, Aaron, and Hur went up to the top of the hill." + }, + { + "verseNum": 11, + "text": "As long as Moses held up his hands, Israel prevailed; but when he lowered them, Amalek prevailed." + }, + { + "verseNum": 12, + "text": "When Moses’ hands grew heavy, they took a stone and put it under him, and he sat on it. Then Aaron and Hur held his hands up, one on each side, so that his hands remained steady until the sun went down." + }, + { + "verseNum": 13, + "text": "So Joshua overwhelmed Amalek and his army with the sword." + }, + { + "verseNum": 14, + "text": "Then the LORD said to Moses, “Write this on a scroll as a reminder and recite it to Joshua, because I will utterly blot out the memory of Amalek from under heaven.”" + }, + { + "verseNum": 15, + "text": "And Moses built an altar and named it The LORD Is My Banner." + }, + { + "verseNum": 16, + "text": "“Indeed,” he said, “a hand was lifted up toward the throne of the LORD. The LORD will war against Amalek from generation to generation.”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Now Moses’ father-in-law Jethro, the priest of Midian, heard about all that God had done for Moses and His people Israel, and how the LORD had brought Israel out of Egypt." + }, + { + "verseNum": 2, + "text": "After Moses had sent back his wife Zipporah, his father-in-law Jethro had received her," + }, + { + "verseNum": 3, + "text": "along with her two sons. One son was named Gershom, for Moses had said, “I have been a foreigner in a foreign land.”" + }, + { + "verseNum": 4, + "text": "The other son was named Eliezer, for Moses had said, “The God of my father was my helper and delivered me from the sword of Pharaoh.”" + }, + { + "verseNum": 5, + "text": "Moses’ father-in-law Jethro, along with Moses’ wife and sons, came to him in the desert, where he was encamped at the mountain of God." + }, + { + "verseNum": 6, + "text": "He sent word to Moses, “I, your father-in-law Jethro, am coming to you with your wife and her two sons.”" + }, + { + "verseNum": 7, + "text": "So Moses went out to meet his father-in-law and bowed down and kissed him. They greeted each other and went into the tent." + }, + { + "verseNum": 8, + "text": "Then Moses recounted to his father-in-law all that the LORD had done to Pharaoh and the Egyptians for Israel’s sake, all the hardships they had encountered along the way, and how the LORD had delivered them." + }, + { + "verseNum": 9, + "text": "And Jethro rejoiced over all the good things the LORD had done for Israel, whom He had rescued from the hand of the Egyptians." + }, + { + "verseNum": 10, + "text": "Jethro declared, “Blessed be the LORD, who has delivered you from the hand of the Egyptians and of Pharaoh, and who has delivered the people from the hand of the Egyptians." + }, + { + "verseNum": 11, + "text": "Now I know that the LORD is greater than all other gods, for He did this when they treated Israel with arrogance.”" + }, + { + "verseNum": 12, + "text": "Then Moses’ father-in-law Jethro brought a burnt offering and sacrifices to God, and Aaron came with all the elders of Israel to eat bread with Moses’ father-in-law in the presence of God." + }, + { + "verseNum": 13, + "text": "The next day Moses took his seat to judge the people, and they stood around him from morning until evening." + }, + { + "verseNum": 14, + "text": "When his father-in-law saw all that Moses was doing for the people, he asked, “What is this that you are doing for the people? Why do you sit alone as judge, with all the people standing around you from morning till evening?”" + }, + { + "verseNum": 15, + "text": "“Because the people come to me to inquire of God,” Moses replied." + }, + { + "verseNum": 16, + "text": "“Whenever they have a dispute, it is brought to me to judge between one man and another, and I make known to them the statutes and laws of God.”" + }, + { + "verseNum": 17, + "text": "But Moses’ father-in-law said to him, “What you are doing is not good." + }, + { + "verseNum": 18, + "text": "Surely you and these people with you will wear yourselves out, because the task is too heavy for you. You cannot handle it alone." + }, + { + "verseNum": 19, + "text": "Now listen to me; I will give you some advice, and may God be with you. You must be the people’s representative before God and bring their causes to Him." + }, + { + "verseNum": 20, + "text": "Teach them the statutes and laws, and show them the way to live and the work they must do." + }, + { + "verseNum": 21, + "text": "Furthermore, select capable men from among the people—God-fearing, trustworthy men who are averse to dishonest gain. Appoint them over the people as leaders of thousands, of hundreds, of fifties, and of tens." + }, + { + "verseNum": 22, + "text": "Have these men judge the people at all times. Then they can bring you any major issue, but all minor cases they can judge on their own, so that your load may be lightened as they share it with you." + }, + { + "verseNum": 23, + "text": "If you follow this advice and God so directs you, then you will be able to endure, and all these people can go home in peace.”" + }, + { + "verseNum": 24, + "text": "Moses listened to his father-in-law and did everything he said." + }, + { + "verseNum": 25, + "text": "So Moses chose capable men from all Israel and made them heads over the people as leaders of thousands, of hundreds, of fifties, and of tens." + }, + { + "verseNum": 26, + "text": "And they judged the people at all times; they would bring the difficult cases to Moses, but any minor issue they would judge themselves." + }, + { + "verseNum": 27, + "text": "Then Moses sent his father-in-law on his way, and Jethro returned to his own land." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "In the third month, on the same day of the month that the Israelites had left the land of Egypt, they came to the Wilderness of Sinai." + }, + { + "verseNum": 2, + "text": "After they had set out from Rephidim, they entered the Wilderness of Sinai, and Israel camped there in front of the mountain." + }, + { + "verseNum": 3, + "text": "Then Moses went up to God, and the LORD called to him from the mountain, “This is what you are to tell the house of Jacob and explain to the sons of Israel:" + }, + { + "verseNum": 4, + "text": "‘You have seen for yourselves what I did to Egypt, and how I carried you on eagles’ wings and brought you to Myself." + }, + { + "verseNum": 5, + "text": "Now if you will indeed obey My voice and keep My covenant, you will be My treasured possession out of all the nations—for the whole earth is Mine." + }, + { + "verseNum": 6, + "text": "And unto Me you shall be a kingdom of priests and a holy nation.’ These are the words that you are to speak to the Israelites.”" + }, + { + "verseNum": 7, + "text": "So Moses went back and summoned the elders of the people and set before them all these words that the LORD had commanded him." + }, + { + "verseNum": 8, + "text": "And all the people answered together, “We will do everything that the LORD has spoken.”\n \nSo Moses brought their words back to the LORD." + }, + { + "verseNum": 9, + "text": "The LORD said to Moses, “Behold, I will come to you in a dense cloud, so that the people will hear when I speak with you, and they will always put their trust in you.”\n \nAnd Moses relayed to the LORD what the people had said." + }, + { + "verseNum": 10, + "text": "Then the LORD said to Moses, “Go to the people and consecrate them today and tomorrow. They must wash their clothes" + }, + { + "verseNum": 11, + "text": "and be prepared by the third day, for on the third day the LORD will come down on Mount Sinai in the sight of all the people." + }, + { + "verseNum": 12, + "text": "And you are to set up a boundary for the people around the mountain and tell them, ‘Be careful not to go up on the mountain or touch its base. Whoever touches the mountain shall surely be put to death." + }, + { + "verseNum": 13, + "text": "No hand shall touch him, but he shall surely be stoned or shot with arrows—whether man or beast, he must not live.’\n \nOnly when the ram’s horn sounds a long blast may they approach the mountain.”" + }, + { + "verseNum": 14, + "text": "When Moses came down from the mountain to the people, he consecrated them, and they washed their clothes." + }, + { + "verseNum": 15, + "text": "“Be prepared for the third day,” he said to the people. “Do not draw near to a woman.”" + }, + { + "verseNum": 16, + "text": "On the third day, when morning came, there was thunder and lightning. A thick cloud was upon the mountain, and a very loud blast of the ram’s horn went out, so that all the people in the camp trembled." + }, + { + "verseNum": 17, + "text": "Then Moses brought the people out of the camp to meet with God, and they stood at the foot of the mountain." + }, + { + "verseNum": 18, + "text": "Mount Sinai was completely enveloped in smoke, because the LORD had descended on it in fire. And the smoke rose like the smoke of a furnace, and the whole mountain quaked violently." + }, + { + "verseNum": 19, + "text": "And as the sound of the ram’s horn grew louder and louder, Moses spoke and God answered him in the thunder." + }, + { + "verseNum": 20, + "text": "The LORD descended to the top of Mount Sinai and called Moses to the summit. So Moses went up," + }, + { + "verseNum": 21, + "text": "and the LORD said to him, “Go down and warn the people not to break through to see the LORD, lest many of them perish." + }, + { + "verseNum": 22, + "text": "Even the priests who approach the LORD must consecrate themselves, or the LORD will break out against them.”" + }, + { + "verseNum": 23, + "text": "But Moses said to the LORD, “The people cannot come up Mount Sinai, for You solemnly warned us, ‘Put a boundary around the mountain and set it apart as holy.’”" + }, + { + "verseNum": 24, + "text": "And the LORD replied, “Go down and bring Aaron with you. But the priests and the people must not break through to come up to the LORD, or He will break out against them.”" + }, + { + "verseNum": 25, + "text": "So Moses went down to the people and spoke to them." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "And God spoke all these words:" + }, + { + "verseNum": 2, + "text": "“I am the LORD your God, who brought you out of the land of Egypt, out of the house of slavery." + }, + { + "verseNum": 3, + "text": "You shall have no other gods before Me." + }, + { + "verseNum": 4, + "text": "You shall not make for yourself an idol in the form of anything in the heavens above, on the earth below, or in the waters beneath." + }, + { + "verseNum": 5, + "text": "You shall not bow down to them or worship them; for I, the LORD your God, am a jealous God, visiting the iniquity of the fathers on their children to the third and fourth generations of those who hate Me," + }, + { + "verseNum": 6, + "text": "but showing loving devotion to a thousand generations of those who love Me and keep My commandments." + }, + { + "verseNum": 7, + "text": "You shall not take the name of the LORD your God in vain, for the LORD will not leave anyone unpunished who takes His name in vain." + }, + { + "verseNum": 8, + "text": "Remember the Sabbath day by keeping it holy." + }, + { + "verseNum": 9, + "text": "Six days you shall labor and do all your work," + }, + { + "verseNum": 10, + "text": "but the seventh day is a Sabbath to the LORD your God, on which you must not do any work—neither you, nor your son or daughter, nor your manservant or maidservant or livestock, nor the foreigner within your gates." + }, + { + "verseNum": 11, + "text": "For in six days the LORD made the heavens and the earth and the sea and all that is in them, but on the seventh day He rested. Therefore the LORD blessed the Sabbath day and set it apart as holy." + }, + { + "verseNum": 12, + "text": "Honor your father and mother, so that your days may be long in the land that the LORD your God is giving you." + }, + { + "verseNum": 13, + "text": "You shall not murder." + }, + { + "verseNum": 14, + "text": "You shall not commit adultery." + }, + { + "verseNum": 15, + "text": "You shall not steal." + }, + { + "verseNum": 16, + "text": "You shall not bear false witness against your neighbor." + }, + { + "verseNum": 17, + "text": "You shall not covet your neighbor’s house. You shall not covet your neighbor’s wife, or his manservant or maidservant, or his ox or donkey, or anything that belongs to your neighbor.”" + }, + { + "verseNum": 18, + "text": "When all the people witnessed the thunder and lightning, the sounding of the ram’s horn, and the mountain enveloped in smoke, they trembled and stood at a distance." + }, + { + "verseNum": 19, + "text": "“Speak to us yourself and we will listen,” they said to Moses. “But do not let God speak to us, or we will die.”" + }, + { + "verseNum": 20, + "text": "“Do not be afraid,” Moses replied. “For God has come to test you, so that the fear of Him may be before you, to keep you from sinning.”" + }, + { + "verseNum": 21, + "text": "And the people stood at a distance as Moses approached the thick darkness where God was." + }, + { + "verseNum": 22, + "text": "Then the LORD said to Moses, “This is what you are to tell the Israelites: ‘You have seen for yourselves that I have spoken to you from heaven." + }, + { + "verseNum": 23, + "text": "You are not to make any gods alongside Me; you are not to make for yourselves gods of silver or gold." + }, + { + "verseNum": 24, + "text": "You are to make for Me an altar of earth, and sacrifice on it your burnt offerings and peace offerings, your sheep and goats and cattle. In every place where I cause My name to be remembered, I will come to you and bless you." + }, + { + "verseNum": 25, + "text": "Now if you make an altar of stones for Me, you must not build it with stones shaped by tools; for if you use a chisel on it, you will defile it." + }, + { + "verseNum": 26, + "text": "And you must not go up to My altar on steps, lest your nakedness be exposed on it.’" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "“These are the ordinances that you are to set before them:" + }, + { + "verseNum": 2, + "text": "If you buy a Hebrew servant, he is to serve you for six years. But in the seventh year, he shall go free without paying anything." + }, + { + "verseNum": 3, + "text": "If he arrived alone, he is to leave alone; if he arrived with a wife, she is to leave with him." + }, + { + "verseNum": 4, + "text": "If his master gives him a wife and she bears him sons or daughters, the woman and her children shall belong to her master, and only the man shall go free." + }, + { + "verseNum": 5, + "text": "But if the servant declares, ‘I love my master and my wife and children; I do not want to go free,’" + }, + { + "verseNum": 6, + "text": "then his master is to bring him before the judges. And he shall take him to the door or doorpost and pierce his ear with an awl. Then he shall serve his master for life." + }, + { + "verseNum": 7, + "text": "And if a man sells his daughter as a servant, she is not to go free as the menservants do." + }, + { + "verseNum": 8, + "text": "If she is displeasing in the eyes of her master who had designated her for himself, he must allow her to be redeemed. He has no right to sell her to foreigners, since he has broken faith with her." + }, + { + "verseNum": 9, + "text": "And if he chooses her for his son, he must deal with her as with a daughter." + }, + { + "verseNum": 10, + "text": "If he takes another wife, he must not reduce the food, clothing, or marital rights of his first wife." + }, + { + "verseNum": 11, + "text": "If, however, he does not provide her with these three things, she is free to go without monetary payment." + }, + { + "verseNum": 12, + "text": "Whoever strikes and kills a man must surely be put to death." + }, + { + "verseNum": 13, + "text": "If, however, he did not lie in wait, but God allowed it to happen, then I will appoint for you a place where he may flee." + }, + { + "verseNum": 14, + "text": "But if a man schemes and acts willfully against his neighbor to kill him, you must take him away from My altar to be put to death." + }, + { + "verseNum": 15, + "text": "Whoever strikes his father or mother must surely be put to death." + }, + { + "verseNum": 16, + "text": "Whoever kidnaps another man must be put to death, whether he sells him or the man is found in his possession." + }, + { + "verseNum": 17, + "text": "Anyone who curses his father or mother must surely be put to death." + }, + { + "verseNum": 18, + "text": "If men are quarreling and one strikes the other with a stone or a fist, and he does not die but is confined to bed," + }, + { + "verseNum": 19, + "text": "then the one who struck him shall go unpunished, as long as the other can get up and walk around outside with his staff. Nevertheless, he must compensate the man for his lost work and see that he is completely healed." + }, + { + "verseNum": 20, + "text": "If a man strikes his manservant or maidservant with a rod, and the servant dies by his hand, he shall surely be punished." + }, + { + "verseNum": 21, + "text": "However, if the servant gets up after a day or two, the owner shall not be punished, since the servant is his property." + }, + { + "verseNum": 22, + "text": "If men who are fighting strike a pregnant woman and her child is born prematurely, but there is no further injury, he shall surely be fined as the woman’s husband demands and as the court allows." + }, + { + "verseNum": 23, + "text": "But if a serious injury results, then you must require a life for a life—" + }, + { + "verseNum": 24, + "text": "eye for eye, tooth for tooth, hand for hand, foot for foot," + }, + { + "verseNum": 25, + "text": "burn for burn, wound for wound, and stripe for stripe." + }, + { + "verseNum": 26, + "text": "If a man strikes and blinds the eye of his manservant or maidservant, he must let the servant go free as compensation for the eye." + }, + { + "verseNum": 27, + "text": "And if he knocks out the tooth of his manservant or maidservant, he must let the servant go free as compensation for the tooth." + }, + { + "verseNum": 28, + "text": "If an ox gores a man or woman to death, the ox must surely be stoned, and its meat must not be eaten. But the owner of the ox shall not be held responsible." + }, + { + "verseNum": 29, + "text": "But if the ox has a habit of goring, and its owner has been warned yet does not restrain it, and it kills a man or woman, then the ox must be stoned and its owner must also be put to death." + }, + { + "verseNum": 30, + "text": "If payment is demanded of him instead, he may redeem his life by paying the full amount demanded of him." + }, + { + "verseNum": 31, + "text": "If the ox gores a son or a daughter, it shall be done to him according to the same rule." + }, + { + "verseNum": 32, + "text": "If the ox gores a manservant or maidservant, the owner must pay thirty shekels of silver to the master of that servant, and the ox must be stoned." + }, + { + "verseNum": 33, + "text": "If a man opens or digs a pit and fails to cover it, and an ox or a donkey falls into it," + }, + { + "verseNum": 34, + "text": "the owner of the pit shall make restitution; he must pay its owner, and the dead animal will be his." + }, + { + "verseNum": 35, + "text": "If a man’s ox injures his neighbor’s ox and it dies, they must sell the live one and divide the proceeds; they also must divide the dead animal." + }, + { + "verseNum": 36, + "text": "But if it was known that the ox had a habit of goring, yet its owner failed to restrain it, he shall pay full compensation, ox for ox, and the dead animal will be his." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "“If a man steals an ox or a sheep and slaughters or sells it, he must repay five oxen for an ox and four sheep for a sheep." + }, + { + "verseNum": 2, + "text": "If a thief is caught breaking in and is beaten to death, no one shall be guilty of bloodshed." + }, + { + "verseNum": 3, + "text": "But if it happens after sunrise, there is guilt for his bloodshed.\n \nA thief must make full restitution; if he has nothing, he himself shall be sold for his theft." + }, + { + "verseNum": 4, + "text": "If what was stolen is actually found alive in his possession—whether ox or donkey or sheep—he must pay back double." + }, + { + "verseNum": 5, + "text": "If a man grazes his livestock in a field or vineyard and allows them to stray so that they graze in someone else’s field, he must make restitution from the best of his own field or vineyard." + }, + { + "verseNum": 6, + "text": "If a fire breaks out and spreads to thornbushes so that it consumes stacked or standing grain, or the whole field, the one who started the fire must make full restitution." + }, + { + "verseNum": 7, + "text": "If a man gives his neighbor money or goods for safekeeping and they are stolen from the neighbor’s house, the thief, if caught, must pay back double." + }, + { + "verseNum": 8, + "text": "If the thief is not found, the owner of the house must appear before the judges to determine whether he has taken his neighbor’s property." + }, + { + "verseNum": 9, + "text": "In all cases of illegal possession of an ox, a donkey, a sheep, a garment, or any lost item that someone claims, ‘This is mine,’ both parties shall bring their cases before the judges. The one whom the judges find guilty must pay back double to his neighbor." + }, + { + "verseNum": 10, + "text": "If a man gives a donkey, an ox, a sheep, or any other animal to be cared for by his neighbor, but it dies or is injured or stolen while no one is watching," + }, + { + "verseNum": 11, + "text": "an oath before the LORD shall be made between the parties to determine whether or not the man has taken his neighbor’s property. The owner must accept the oath and require no restitution." + }, + { + "verseNum": 12, + "text": "But if the animal was actually stolen from the neighbor, he must make restitution to the owner." + }, + { + "verseNum": 13, + "text": "If the animal was torn to pieces, he shall bring it as evidence; he need not make restitution for the torn carcass." + }, + { + "verseNum": 14, + "text": "If a man borrows an animal from his neighbor and it is injured or dies while its owner is not present, he must make full restitution." + }, + { + "verseNum": 15, + "text": "If the owner was present, no restitution is required. If the animal was rented, the fee covers the loss." + }, + { + "verseNum": 16, + "text": "If a man seduces a virgin who is not pledged in marriage and sleeps with her, he must pay the full dowry for her to be his wife." + }, + { + "verseNum": 17, + "text": "If her father absolutely refuses to give her to him, the man still must pay an amount comparable to the bridal price of a virgin." + }, + { + "verseNum": 18, + "text": "You must not allow a sorceress to live." + }, + { + "verseNum": 19, + "text": "Whoever lies with an animal must surely be put to death." + }, + { + "verseNum": 20, + "text": "If anyone sacrifices to any god other than the LORD alone, he must be set apart for destruction." + }, + { + "verseNum": 21, + "text": "You must not exploit or oppress a foreign resident, for you yourselves were foreigners in the land of Egypt." + }, + { + "verseNum": 22, + "text": "You must not mistreat any widow or orphan." + }, + { + "verseNum": 23, + "text": "If you do mistreat them, and they cry out to Me in distress, I will surely hear their cry." + }, + { + "verseNum": 24, + "text": "My anger will be kindled, and I will kill you with the sword; then your wives will become widows and your children will be fatherless." + }, + { + "verseNum": 25, + "text": "If you lend money to one of My people among you who is poor, you must not act as a creditor to him; you are not to charge him interest." + }, + { + "verseNum": 26, + "text": "If you take your neighbor’s cloak as collateral, return it to him by sunset," + }, + { + "verseNum": 27, + "text": "because his cloak is the only covering he has for his body. What else will he sleep in? And if he cries out to Me, I will hear, for I am compassionate." + }, + { + "verseNum": 28, + "text": "You must not blaspheme God or curse the ruler of your people." + }, + { + "verseNum": 29, + "text": "You must not hold back offerings from your granaries or vats. You are to give Me the firstborn of your sons." + }, + { + "verseNum": 30, + "text": "You shall do likewise with your cattle and your sheep. Let them stay with their mothers for seven days, but on the eighth day you are to give them to Me." + }, + { + "verseNum": 31, + "text": "You are to be My holy people. You must not eat the meat of a mauled animal found in the field; you are to throw it to the dogs." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "“You shall not spread a false report. Do not join the wicked by being a malicious witness." + }, + { + "verseNum": 2, + "text": "You shall not follow the crowd in wrongdoing. When you testify in a lawsuit, do not pervert justice by siding with the crowd." + }, + { + "verseNum": 3, + "text": "And do not show favoritism to a poor man in his lawsuit." + }, + { + "verseNum": 4, + "text": "If you encounter your enemy’s stray ox or donkey, you must return it to him." + }, + { + "verseNum": 5, + "text": "If you see the donkey of one who hates you fallen under its load, do not leave it there; you must help him with it." + }, + { + "verseNum": 6, + "text": "You shall not deny justice to the poor in their lawsuits." + }, + { + "verseNum": 7, + "text": "Stay far away from a false accusation. Do not kill the innocent or the just, for I will not acquit the guilty." + }, + { + "verseNum": 8, + "text": "Do not accept a bribe, for a bribe blinds those who see and twists the words of the righteous." + }, + { + "verseNum": 9, + "text": "Do not oppress a foreign resident, since you yourselves know how it feels to be foreigners; for you were foreigners in the land of Egypt." + }, + { + "verseNum": 10, + "text": "For six years you are to sow your land and gather its produce," + }, + { + "verseNum": 11, + "text": "but in the seventh year you must let it rest and lie fallow, so that the poor among your people may eat from the field and the wild animals may consume what they leave. Do the same with your vineyard and olive grove." + }, + { + "verseNum": 12, + "text": "For six days you are to do your work, but on the seventh day you must cease, so that your ox and your donkey may rest and the son of your maidservant may be refreshed, as well as the foreign resident." + }, + { + "verseNum": 13, + "text": "Pay close attention to everything I have said to you. You must not invoke the names of other gods; they must not be heard on your lips." + }, + { + "verseNum": 14, + "text": "Three times a year you are to celebrate a feast to Me." + }, + { + "verseNum": 15, + "text": "You are to keep the Feast of Unleavened Bread as I commanded you: At the appointed time in the month of Abib you are to eat unleavened bread for seven days, because that was the month you came out of Egypt. No one may appear before Me empty-handed." + }, + { + "verseNum": 16, + "text": "You are also to keep the Feast of Harvest with the firstfruits of the produce from what you sow in the field.\n \nAnd keep the Feast of Ingathering at the end of the year, when you gather your produce from the field." + }, + { + "verseNum": 17, + "text": "Three times a year all your males are to appear before the Lord GOD." + }, + { + "verseNum": 18, + "text": "You must not offer the blood of My sacrifices with anything leavened, nor may the fat of My feast remain until morning." + }, + { + "verseNum": 19, + "text": "Bring the best of the firstfruits of your soil to the house of the LORD your God.\n \nYou must not cook a young goat in its mother’s milk." + }, + { + "verseNum": 20, + "text": "Behold, I am sending an angel before you to protect you along the way and to bring you to the place I have prepared." + }, + { + "verseNum": 21, + "text": "Pay attention to him and listen to his voice; do not defy him, for he will not forgive rebellion, since My Name is in him." + }, + { + "verseNum": 22, + "text": "But if you will listen carefully to his voice and do everything I say, I will be an enemy to your enemies and a foe to your foes." + }, + { + "verseNum": 23, + "text": "For My angel will go before you and bring you into the land of the Amorites, Hittites, Perizzites, Canaanites, Hivites, and Jebusites, and I will annihilate them." + }, + { + "verseNum": 24, + "text": "You must not bow down to their gods or serve them or follow their practices. Instead, you are to demolish them and smash their sacred stones to pieces." + }, + { + "verseNum": 25, + "text": "So you shall serve the LORD your God, and He will bless your bread and your water. And I will take away sickness from among you." + }, + { + "verseNum": 26, + "text": "No woman in your land will miscarry or be barren; I will fulfill the number of your days." + }, + { + "verseNum": 27, + "text": "I will send My terror ahead of you and throw into confusion every nation you encounter. I will make all your enemies turn and run." + }, + { + "verseNum": 28, + "text": "I will send the hornet before you to drive the Hivites and Canaanites and Hittites out of your way." + }, + { + "verseNum": 29, + "text": "I will not drive them out before you in a single year; otherwise the land would become desolate and wild animals would multiply against you." + }, + { + "verseNum": 30, + "text": "Little by little I will drive them out ahead of you, until you become fruitful and possess the land." + }, + { + "verseNum": 31, + "text": "And I will establish your borders from the Red Sea to the Sea of the Philistines, and from the desert to the Euphrates. For I will deliver the inhabitants into your hand, and you will drive them out before you." + }, + { + "verseNum": 32, + "text": "You shall make no covenant with them or with their gods." + }, + { + "verseNum": 33, + "text": "They must not remain in your land, lest they cause you to sin against Me. For if you serve their gods, it will surely be a snare to you.”" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Come up to the LORD—you and Aaron, Nadab and Abihu, and seventy of Israel’s elders—and you are to worship at a distance." + }, + { + "verseNum": 2, + "text": "Moses alone shall approach the LORD, but the others must not come near. And the people may not go up with him.”" + }, + { + "verseNum": 3, + "text": "When Moses came and told the people all the words and ordinances of the LORD, they all responded with one voice: “All the words that the LORD has spoken, we will do.”" + }, + { + "verseNum": 4, + "text": "And Moses wrote down all the words of the LORD.\n \nEarly the next morning he got up and built an altar at the base of the mountain, along with twelve pillars for the twelve tribes of Israel." + }, + { + "verseNum": 5, + "text": "Then he sent out some young men of Israel, and they offered burnt offerings and sacrificed young bulls as peace offerings to the LORD." + }, + { + "verseNum": 6, + "text": "Moses took half of the blood and put it in bowls, and the other half he sprinkled on the altar." + }, + { + "verseNum": 7, + "text": "Then he took the Book of the Covenant and read it to the people, who replied, “All that the LORD has spoken we will do, and we will be obedient.”" + }, + { + "verseNum": 8, + "text": "So Moses took the blood, sprinkled it on the people, and said, “This is the blood of the covenant that the LORD has made with you in accordance with all these words.”" + }, + { + "verseNum": 9, + "text": "Then Moses went up with Aaron, Nadab and Abihu, and seventy of the elders of Israel," + }, + { + "verseNum": 10, + "text": "and they saw the God of Israel. Under His feet was a work like a pavement made of sapphire, as clear as the sky itself." + }, + { + "verseNum": 11, + "text": "But God did not lay His hand on the nobles of Israel; they saw Him, and they ate and drank." + }, + { + "verseNum": 12, + "text": "Then the LORD said to Moses, “Come up to Me on the mountain and stay here, so that I may give you the tablets of stone, with the law and commandments I have written for their instruction.”" + }, + { + "verseNum": 13, + "text": "So Moses set out with Joshua his attendant and went up on the mountain of God." + }, + { + "verseNum": 14, + "text": "And he said to the elders, “Wait here for us until we return to you. Aaron and Hur are here with you. Whoever has a dispute can go to them.”" + }, + { + "verseNum": 15, + "text": "When Moses went up on the mountain, the cloud covered it," + }, + { + "verseNum": 16, + "text": "and the glory of the LORD settled on Mount Sinai. For six days the cloud covered it, and on the seventh day the LORD called to Moses from within the cloud." + }, + { + "verseNum": 17, + "text": "And the sight of the glory of the LORD was like a consuming fire on the mountaintop in the eyes of the Israelites." + }, + { + "verseNum": 18, + "text": "Moses entered the cloud as he went up on the mountain, and he remained on the mountain forty days and forty nights." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Tell the Israelites to bring Me an offering. You are to receive My offering from every man whose heart compels him." + }, + { + "verseNum": 3, + "text": "This is the offering you are to accept from them:\n \n gold, silver, and bronze;" + }, + { + "verseNum": 4, + "text": "blue, purple, and scarlet yarn;\n \n fine linen and goat hair;" + }, + { + "verseNum": 5, + "text": "ram skins dyed red and fine leather;\n \n acacia wood;" + }, + { + "verseNum": 6, + "text": "olive oil for the light;\n \n spices for the anointing oil and for the fragrant incense;" + }, + { + "verseNum": 7, + "text": "and onyx stones and gemstones to be mounted on the ephod and breastpiece." + }, + { + "verseNum": 8, + "text": "And they are to make a sanctuary for Me, so that I may dwell among them." + }, + { + "verseNum": 9, + "text": "You must make the tabernacle and design all its furnishings according to the pattern I show you." + }, + { + "verseNum": 10, + "text": "And they are to construct an ark of acacia wood, two and a half cubits long, a cubit and a half wide, and a cubit and a half high." + }, + { + "verseNum": 11, + "text": "Overlay it with pure gold both inside and out, and make a gold molding around it." + }, + { + "verseNum": 12, + "text": "Cast four gold rings for it and fasten them to its four feet, two rings on one side and two on the other." + }, + { + "verseNum": 13, + "text": "And make poles of acacia wood and overlay them with gold." + }, + { + "verseNum": 14, + "text": "Insert the poles into the rings on the sides of the ark, in order to carry it." + }, + { + "verseNum": 15, + "text": "The poles are to remain in the rings of the ark; they must not be removed." + }, + { + "verseNum": 16, + "text": "And place inside the ark the Testimony, which I will give you." + }, + { + "verseNum": 17, + "text": "And you are to construct a mercy seat of pure gold, two and a half cubits long and a cubit and a half wide." + }, + { + "verseNum": 18, + "text": "Make two cherubim of hammered gold at the ends of the mercy seat," + }, + { + "verseNum": 19, + "text": "one cherub on one end and one on the other, all made from one piece of gold." + }, + { + "verseNum": 20, + "text": "And the cherubim are to have wings that spread upward, overshadowing the mercy seat. The cherubim are to face each other, looking toward the mercy seat." + }, + { + "verseNum": 21, + "text": "Set the mercy seat atop the ark, and put the Testimony that I will give you into the ark." + }, + { + "verseNum": 22, + "text": "And I will meet with you there above the mercy seat, between the two cherubim that are over the ark of the Testimony; I will speak with you about all that I command you regarding the Israelites." + }, + { + "verseNum": 23, + "text": "You are also to make a table of acacia wood two cubits long, a cubit wide, and a cubit and a half high." + }, + { + "verseNum": 24, + "text": "Overlay it with pure gold and make a gold molding around it." + }, + { + "verseNum": 25, + "text": "And make a rim around it a handbreadth wide and put a gold molding on the rim." + }, + { + "verseNum": 26, + "text": "Make four gold rings for the table and fasten them to the four corners at its four legs." + }, + { + "verseNum": 27, + "text": "The rings are to be close to the rim, to serve as holders for the poles used to carry the table." + }, + { + "verseNum": 28, + "text": "Make the poles of acacia wood and overlay them with gold, so that the table may be carried with them." + }, + { + "verseNum": 29, + "text": "You are also to make the plates and dishes, as well as the pitchers and bowls for pouring drink offerings. Make them out of pure gold." + }, + { + "verseNum": 30, + "text": "And place the Bread of the Presence on the table before Me at all times." + }, + { + "verseNum": 31, + "text": "Then you are to make a lampstand of pure, hammered gold. It shall be made of one piece, including its base and shaft, its cups, and its buds and petals." + }, + { + "verseNum": 32, + "text": "Six branches are to extend from the sides of the lampstand—three on one side and three on the other." + }, + { + "verseNum": 33, + "text": "There are to be three cups shaped like almond blossoms on the first branch, each with buds and petals, three on the next branch, and the same for all six branches that extend from the lampstand." + }, + { + "verseNum": 34, + "text": "And on the lampstand there shall be four cups shaped like almond blossoms with buds and petals." + }, + { + "verseNum": 35, + "text": "For the six branches that extend from the lampstand, a bud must be under the first pair of branches, a bud under the second pair, and a bud under the third pair." + }, + { + "verseNum": 36, + "text": "The buds and branches are to be all of one piece with the lampstand, hammered out of pure gold." + }, + { + "verseNum": 37, + "text": "Make seven lamps and set them up on the lampstand so that they illuminate the area in front of it." + }, + { + "verseNum": 38, + "text": "The wick trimmers and their trays must be of pure gold." + }, + { + "verseNum": 39, + "text": "The lampstand and all these utensils shall be made from a talent of pure gold." + }, + { + "verseNum": 40, + "text": "See to it that you make everything according to the pattern shown you on the mountain." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "“You are to construct the tabernacle itself with ten curtains of finely spun linen, each with blue, purple, and scarlet yarn, and cherubim skillfully worked into them." + }, + { + "verseNum": 2, + "text": "Each curtain shall be twenty-eight cubits long and four cubits wide —all curtains the same size." + }, + { + "verseNum": 3, + "text": "Five of the curtains are to be joined together, and the other five joined as well." + }, + { + "verseNum": 4, + "text": "Make loops of blue material on the edge of the end curtain in the first set, and do the same for the end curtain in the second set." + }, + { + "verseNum": 5, + "text": "Make fifty loops on one curtain and fifty loops on the end curtain of the second set, so that the loops line up opposite one another." + }, + { + "verseNum": 6, + "text": "Make fifty gold clasps as well, and join the curtains together with the clasps, so that the tabernacle will be a unit." + }, + { + "verseNum": 7, + "text": "You are to make curtains of goat hair for the tent over the tabernacle—eleven curtains in all." + }, + { + "verseNum": 8, + "text": "Each of the eleven curtains is to be the same size—thirty cubits long and four cubits wide." + }, + { + "verseNum": 9, + "text": "Join five of the curtains into one set and the other six into another. Then fold the sixth curtain over double at the front of the tent." + }, + { + "verseNum": 10, + "text": "Make fifty loops along the edge of the end curtain in the first set, and fifty loops along the edge of the corresponding curtain in the second set." + }, + { + "verseNum": 11, + "text": "Make fifty bronze clasps and put them through the loops to join the tent together as a unit." + }, + { + "verseNum": 12, + "text": "As for the overlap that remains of the tent curtains, the half curtain that is left over shall hang down over the back of the tabernacle." + }, + { + "verseNum": 13, + "text": "And the tent curtains will be a cubit longer on either side, and the excess will hang over the sides of the tabernacle to cover it." + }, + { + "verseNum": 14, + "text": "Also make a covering for the tent out of ram skins dyed red, and over that a covering of fine leather." + }, + { + "verseNum": 15, + "text": "You are to construct upright frames of acacia wood for the tabernacle." + }, + { + "verseNum": 16, + "text": "Each frame is to be ten cubits long and a cubit and a half wide." + }, + { + "verseNum": 17, + "text": "Two tenons must be connected to each other for each frame. Make all the frames of the tabernacle in this way." + }, + { + "verseNum": 18, + "text": "Construct twenty frames for the south side of the tabernacle," + }, + { + "verseNum": 19, + "text": "with forty silver bases under the twenty frames—two bases for each frame, one under each tenon." + }, + { + "verseNum": 20, + "text": "For the second side of the tabernacle, the north side, make twenty frames" + }, + { + "verseNum": 21, + "text": "and forty silver bases—two bases under each frame." + }, + { + "verseNum": 22, + "text": "Make six frames for the rear of the tabernacle, the west side," + }, + { + "verseNum": 23, + "text": "and two frames for the two back corners of the tabernacle," + }, + { + "verseNum": 24, + "text": "coupled together from bottom to top and fitted into a single ring. These will serve as the two corners." + }, + { + "verseNum": 25, + "text": "So there are to be eight frames and sixteen silver bases—two under each frame." + }, + { + "verseNum": 26, + "text": "You are also to make five crossbars of acacia wood for the frames on one side of the tabernacle," + }, + { + "verseNum": 27, + "text": "five for those on the other side, and five for those on the rear side of the tabernacle, to the west." + }, + { + "verseNum": 28, + "text": "The central crossbar in the middle of the frames shall extend from one end to the other." + }, + { + "verseNum": 29, + "text": "Overlay the frames with gold and make gold rings to hold the crossbars. Also overlay the crossbars with gold." + }, + { + "verseNum": 30, + "text": "So you are to set up the tabernacle according to the pattern shown you on the mountain." + }, + { + "verseNum": 31, + "text": "Make a veil of blue, purple, and scarlet yarn, and finely spun linen, with cherubim skillfully worked into it." + }, + { + "verseNum": 32, + "text": "Hang it with gold hooks on four posts of acacia wood, overlaid with gold and standing on four silver bases." + }, + { + "verseNum": 33, + "text": "And hang the veil from the clasps and place the ark of the Testimony behind the veil. So the veil will separate the Holy Place from the Most Holy Place." + }, + { + "verseNum": 34, + "text": "Put the mercy seat on the ark of the Testimony in the Most Holy Place." + }, + { + "verseNum": 35, + "text": "And place the table outside the veil on the north side of the tabernacle, and put the lampstand opposite the table, on the south side." + }, + { + "verseNum": 36, + "text": "For the entrance to the tent, you are to make a curtain embroidered with blue, purple, and scarlet yarn, and finely spun linen." + }, + { + "verseNum": 37, + "text": "Make five posts of acacia wood for the curtain, overlay them with gold hooks, and cast five bronze bases for them." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "“You are to build an altar of acacia wood. The altar must be square, five cubits long, five cubits wide, and three cubits high." + }, + { + "verseNum": 2, + "text": "Make a horn on each of its four corners, so that the horns are of one piece, and overlay it with bronze." + }, + { + "verseNum": 3, + "text": "Make all its utensils of bronze—its pots for removing ashes, its shovels, its sprinkling bowls, its meat forks, and its firepans." + }, + { + "verseNum": 4, + "text": "Construct for it a grate of bronze mesh, and make a bronze ring at each of the four corners of the mesh." + }, + { + "verseNum": 5, + "text": "Set the grate beneath the ledge of the altar, so that the mesh comes halfway up the altar." + }, + { + "verseNum": 6, + "text": "Additionally, make poles of acacia wood for the altar and overlay them with bronze." + }, + { + "verseNum": 7, + "text": "The poles are to be inserted into the rings so that the poles are on two sides of the altar when it is carried." + }, + { + "verseNum": 8, + "text": "Construct the altar with boards so that it is hollow. It is to be made just as you were shown on the mountain." + }, + { + "verseNum": 9, + "text": "You are also to make a courtyard for the tabernacle. On the south side of the courtyard make curtains of finely spun linen, a hundred cubits long on one side," + }, + { + "verseNum": 10, + "text": "with twenty posts and twenty bronze bases, and silver hooks and bands on the posts." + }, + { + "verseNum": 11, + "text": "Likewise there are to be curtains on the north side, a hundred cubits long, with twenty posts and twenty bronze bases, and with silver hooks and bands on the posts." + }, + { + "verseNum": 12, + "text": "The curtains on the west side of the courtyard shall be fifty cubits wide, with ten posts and ten bases." + }, + { + "verseNum": 13, + "text": "The east side of the courtyard, toward the sunrise, is to be fifty cubits wide." + }, + { + "verseNum": 14, + "text": "Make the curtains on one side fifteen cubits long, with three posts and three bases," + }, + { + "verseNum": 15, + "text": "and the curtains on the other side fifteen cubits long, with three posts and three bases." + }, + { + "verseNum": 16, + "text": "The gate of the courtyard shall be twenty cubits long, with a curtain embroidered with blue, purple, and scarlet yarn, and finely spun linen. It shall have four posts and four bases." + }, + { + "verseNum": 17, + "text": "All the posts around the courtyard shall have silver bands, silver hooks, and bronze bases." + }, + { + "verseNum": 18, + "text": "The entire courtyard shall be a hundred cubits long and fifty cubits wide, with curtains of finely spun linen five cubits high, and with bronze bases." + }, + { + "verseNum": 19, + "text": "All the utensils of the tabernacle for every use, including all its tent pegs and the tent pegs of the courtyard, shall be made of bronze." + }, + { + "verseNum": 20, + "text": "And you are to command the Israelites to bring you pure oil of pressed olives for the light, to keep the lamps burning continually." + }, + { + "verseNum": 21, + "text": "In the Tent of Meeting, outside the veil that is in front of the Testimony, Aaron and his sons are to tend the lamps before the LORD from evening until morning. This is to be a permanent statute for the Israelites for the generations to come." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "“Next, have your brother Aaron brought to you from among the Israelites, along with his sons Nadab, Abihu, Eleazar, and Ithamar, to serve Me as priests." + }, + { + "verseNum": 2, + "text": "Make holy garments for your brother Aaron, to give him glory and splendor." + }, + { + "verseNum": 3, + "text": "You are to instruct all the skilled craftsmen, whom I have filled with a spirit of wisdom, to make garments for Aaron’s consecration, so that he may serve Me as priest." + }, + { + "verseNum": 4, + "text": "These are the garments that they shall make: a breastpiece, an ephod, a robe, a woven tunic, a turban, and a sash. They are to make these holy garments for your brother Aaron and his sons, so that they may serve Me as priests." + }, + { + "verseNum": 5, + "text": "They shall use gold, along with blue, purple, and scarlet yarn, and fine linen." + }, + { + "verseNum": 6, + "text": "They are to make the ephod of finely spun linen embroidered with gold, and with blue, purple, and scarlet yarn." + }, + { + "verseNum": 7, + "text": "It shall have two shoulder pieces attached at two of its corners, so it can be fastened." + }, + { + "verseNum": 8, + "text": "And the skillfully woven waistband of the ephod must be of one piece, of the same workmanship—with gold, with blue, purple, and scarlet yarn, and with finely spun linen." + }, + { + "verseNum": 9, + "text": "Take two onyx stones and engrave on them the names of the sons of Israel:" + }, + { + "verseNum": 10, + "text": "six of their names on one stone and the remaining six on the other, in the order of their birth." + }, + { + "verseNum": 11, + "text": "Engrave the names of the sons of Israel on the two stones the way a gem cutter engraves a seal. Then mount the stones in gold filigree settings." + }, + { + "verseNum": 12, + "text": "Fasten both stones on the shoulder pieces of the ephod as memorial stones for the sons of Israel. Aaron is to bear their names on his two shoulders as a memorial before the LORD." + }, + { + "verseNum": 13, + "text": "Fashion gold filigree settings" + }, + { + "verseNum": 14, + "text": "and two chains of pure gold, made of braided cord work; and attach these chains to the settings." + }, + { + "verseNum": 15, + "text": "You are also to make a breastpiece of judgment with the same workmanship as the ephod. Construct it with gold, with blue, purple, and scarlet yarn, and with finely spun linen." + }, + { + "verseNum": 16, + "text": "It must be square when folded over double, a span long and a span wide." + }, + { + "verseNum": 17, + "text": "And mount on it a setting of gemstones, four rows of stones:\n \n In the first row there shall be a ruby, a topaz, and an emerald;" + }, + { + "verseNum": 18, + "text": "in the second row a turquoise, a sapphire, and a diamond;" + }, + { + "verseNum": 19, + "text": "in the third row a jacinth, an agate, and an amethyst;" + }, + { + "verseNum": 20, + "text": "and in the fourth row a beryl, an onyx, and a jasper.\n \nMount these stones in gold filigree settings." + }, + { + "verseNum": 21, + "text": "The twelve stones are to correspond to the names of the sons of Israel, each engraved like a seal with the name of one of the twelve tribes." + }, + { + "verseNum": 22, + "text": "For the breastpiece, make braided chains like cords of pure gold." + }, + { + "verseNum": 23, + "text": "You are also to make two gold rings and fasten them to the two corners of the breastpiece." + }, + { + "verseNum": 24, + "text": "Then fasten the two gold chains to the two gold rings at the corners of the breastpiece," + }, + { + "verseNum": 25, + "text": "and fasten the other ends of the two chains to the two filigree settings, attaching them to the shoulder pieces of the ephod at the front." + }, + { + "verseNum": 26, + "text": "Make two more gold rings and attach them to the other two corners of the breastpiece, on the inside edge next to the ephod." + }, + { + "verseNum": 27, + "text": "Make two additional gold rings and attach them to the bottom of the two shoulder pieces of the ephod, on its front, near its seam just above its woven waistband." + }, + { + "verseNum": 28, + "text": "The rings of the breastpiece shall be tied to the rings of the ephod with a cord of blue yarn, so that the breastpiece is above the waistband of the ephod and does not swing out from the ephod." + }, + { + "verseNum": 29, + "text": "Whenever Aaron enters the Holy Place, he shall bear the names of the sons of Israel over his heart on the breastpiece of judgment, as a continual reminder before the LORD." + }, + { + "verseNum": 30, + "text": "And place the Urim and Thummim in the breastpiece of judgment, so that they will also be over Aaron’s heart whenever he comes before the LORD. Aaron will continually carry the judgment of the sons of Israel over his heart before the LORD." + }, + { + "verseNum": 31, + "text": "You are to make the robe of the ephod entirely of blue cloth," + }, + { + "verseNum": 32, + "text": "with an opening at its top in the center. Around the opening shall be a woven collar with an opening like that of a garment, so that it will not tear." + }, + { + "verseNum": 33, + "text": "Make pomegranates of blue, purple, and scarlet yarn all the way around the lower hem, with gold bells between them," + }, + { + "verseNum": 34, + "text": "alternating the gold bells and pomegranates around the lower hem of the robe." + }, + { + "verseNum": 35, + "text": "Aaron must wear the robe whenever he ministers, and its sound will be heard when he enters or exits the sanctuary before the LORD, so that he will not die." + }, + { + "verseNum": 36, + "text": "You are to make a plate of pure gold and engrave on it as on a seal:\n \n HOLY TO THE LORD." + }, + { + "verseNum": 37, + "text": "Fasten to it a blue cord to mount it on the turban; it shall be on the front of the turban." + }, + { + "verseNum": 38, + "text": "And it will be worn on Aaron’s forehead, so that he may bear the iniquity of the holy things that the sons of Israel consecrate with regard to all their holy gifts. It shall always be on his forehead, so that they may be acceptable before the LORD." + }, + { + "verseNum": 39, + "text": "You are to weave the tunic with fine linen, make the turban of fine linen, and fashion an embroidered sash." + }, + { + "verseNum": 40, + "text": "Make tunics, sashes, and headbands for Aaron’s sons, to give them glory and splendor." + }, + { + "verseNum": 41, + "text": "After you put these garments on your brother Aaron and his sons, anoint them, ordain them, and consecrate them so that they may serve Me as priests." + }, + { + "verseNum": 42, + "text": "Make linen undergarments to cover their bare flesh, extending from waist to thigh." + }, + { + "verseNum": 43, + "text": "Aaron and his sons must wear them whenever they enter the Tent of Meeting or approach the altar to minister in the Holy Place, so that they will not incur guilt and die. This is to be a permanent statute for Aaron and his descendants." + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "“Now this is what you are to do to consecrate Aaron and his sons to serve Me as priests: Take a young bull and two rams without blemish," + }, + { + "verseNum": 2, + "text": "along with unleavened bread, unleavened cakes mixed with oil, and unleavened wafers anointed with oil. Make them out of fine wheat flour," + }, + { + "verseNum": 3, + "text": "put them in a basket, and present them in the basket, along with the bull and the two rams." + }, + { + "verseNum": 4, + "text": "Then present Aaron and his sons at the entrance to the Tent of Meeting and wash them with water." + }, + { + "verseNum": 5, + "text": "Take the garments and clothe Aaron with the tunic, the robe of the ephod, the ephod itself, and the breastplate. Fasten the ephod on him with its woven waistband." + }, + { + "verseNum": 6, + "text": "Put the turban on his head and attach the holy diadem to the turban." + }, + { + "verseNum": 7, + "text": "Then take the anointing oil and anoint him by pouring it on his head." + }, + { + "verseNum": 8, + "text": "Present his sons as well and clothe them with tunics." + }, + { + "verseNum": 9, + "text": "Wrap the sashes around Aaron and his sons and tie headbands on them. The priesthood shall be theirs by a permanent statute. In this way you are to ordain Aaron and his sons." + }, + { + "verseNum": 10, + "text": "You are to present the bull at the front of the Tent of Meeting, and Aaron and his sons are to lay their hands on its head." + }, + { + "verseNum": 11, + "text": "And you shall slaughter the bull before the LORD at the entrance to the Tent of Meeting." + }, + { + "verseNum": 12, + "text": "Take some of the blood of the bull and put it on the horns of the altar with your finger; then pour out the rest of the blood at the base of the altar." + }, + { + "verseNum": 13, + "text": "Take all the fat that covers the entrails and the lobe of the liver, and both kidneys with the fat on them, and burn them on the altar." + }, + { + "verseNum": 14, + "text": "But burn the flesh of the bull and its hide and dung outside the camp; it is a sin offering." + }, + { + "verseNum": 15, + "text": "Take one of the rams, and Aaron and his sons shall lay their hands on its head." + }, + { + "verseNum": 16, + "text": "You are to slaughter the ram, take its blood, and sprinkle it on all sides of the altar." + }, + { + "verseNum": 17, + "text": "Cut the ram into pieces, wash the entrails and legs, and place them with its head and other pieces." + }, + { + "verseNum": 18, + "text": "Then burn the entire ram on the altar; it is a burnt offering to the LORD, a pleasing aroma, an offering made by fire to the LORD." + }, + { + "verseNum": 19, + "text": "Take the second ram, and Aaron and his sons are to lay their hands on its head." + }, + { + "verseNum": 20, + "text": "Slaughter the ram, take some of its blood, and put it on the right earlobes of Aaron and his sons, on the thumbs of their right hands, and on the big toes of their right feet. Sprinkle the remaining blood on all sides of the altar." + }, + { + "verseNum": 21, + "text": "And take some of the blood on the altar and some of the anointing oil and sprinkle it on Aaron and his garments, as well as on his sons and their garments. Then he and his garments will be consecrated, as well as his sons and their garments." + }, + { + "verseNum": 22, + "text": "Take the fat from the ram, the fat tail, the fat covering the entrails, the lobe of the liver, both kidneys with the fat on them, and the right thigh (since this is a ram for ordination)," + }, + { + "verseNum": 23, + "text": "along with one loaf of bread, one cake of bread made with oil, and one wafer from the basket of unleavened bread that is before the LORD." + }, + { + "verseNum": 24, + "text": "Put all these in the hands of Aaron and his sons and wave them before the LORD as a wave offering." + }, + { + "verseNum": 25, + "text": "Then take them from their hands and burn them on the altar atop the burnt offering as a pleasing aroma before the LORD; it is an offering made by fire to the LORD." + }, + { + "verseNum": 26, + "text": "Take the breast of the ram of Aaron’s ordination and wave it before the LORD as a wave offering, and it will be your portion." + }, + { + "verseNum": 27, + "text": "Consecrate for Aaron and his sons the breast of the wave offering that is waved and the thigh of the heave offering that is lifted up from the ram of ordination." + }, + { + "verseNum": 28, + "text": "This will belong to Aaron and his sons as a regular portion from the Israelites, for it is the heave offering the Israelites will make to the LORD from their peace offerings." + }, + { + "verseNum": 29, + "text": "The holy garments that belong to Aaron will belong to his sons after him, so they can be anointed and ordained in them." + }, + { + "verseNum": 30, + "text": "The son who succeeds him as priest and enters the Tent of Meeting to minister in the Holy Place must wear them for seven days." + }, + { + "verseNum": 31, + "text": "You are to take the ram of ordination and boil its flesh in a holy place." + }, + { + "verseNum": 32, + "text": "At the entrance to the Tent of Meeting, Aaron and his sons are to eat the meat of the ram and the bread that is in the basket." + }, + { + "verseNum": 33, + "text": "They must eat those things by which atonement was made for their ordination and consecration. But no outsider may eat them, because these things are sacred." + }, + { + "verseNum": 34, + "text": "And if any of the meat of ordination or any bread is left until the morning, you are to burn up the remainder. It must not be eaten, because it is sacred." + }, + { + "verseNum": 35, + "text": "This is what you are to do for Aaron and his sons based on all that I have commanded you, taking seven days to ordain them." + }, + { + "verseNum": 36, + "text": "Sacrifice a bull as a sin offering each day for atonement. Purify the altar by making atonement for it, and anoint it to consecrate it." + }, + { + "verseNum": 37, + "text": "For seven days you shall make atonement for the altar and consecrate it. Then the altar will become most holy; whatever touches the altar will be holy." + }, + { + "verseNum": 38, + "text": "This is what you are to offer regularly on the altar, each day: two lambs that are a year old." + }, + { + "verseNum": 39, + "text": "Offer one lamb in the morning and the other at twilight." + }, + { + "verseNum": 40, + "text": "With the first lamb offer a tenth of an ephah of fine flour, mixed with a quarter hin of oil from pressed olives, and a drink offering of a quarter hin of wine." + }, + { + "verseNum": 41, + "text": "And offer the second lamb at twilight with the same grain offering and drink offering as in the morning, as a pleasing aroma, an offering made by fire to the LORD." + }, + { + "verseNum": 42, + "text": "For the generations to come, this burnt offering shall be made regularly at the entrance to the Tent of Meeting before the LORD, where I will meet you to speak with you." + }, + { + "verseNum": 43, + "text": "I will also meet with the Israelites there, and that place will be consecrated by My glory." + }, + { + "verseNum": 44, + "text": "So I will consecrate the Tent of Meeting and the altar, and I will consecrate Aaron and his sons to serve Me as priests." + }, + { + "verseNum": 45, + "text": "Then I will dwell among the Israelites and be their God." + }, + { + "verseNum": 46, + "text": "And they will know that I am the LORD their God, who brought them out of the land of Egypt so that I might dwell among them.\n \nI am the LORD their God." + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "“You are also to make an altar of acacia wood for the burning of incense." + }, + { + "verseNum": 2, + "text": "It is to be square, a cubit long, a cubit wide, and two cubits high. Its horns must be of one piece." + }, + { + "verseNum": 3, + "text": "Overlay with pure gold the top and all the sides and horns, and make a molding of gold around it." + }, + { + "verseNum": 4, + "text": "And make two gold rings below the molding on opposite sides to hold the poles used to carry it." + }, + { + "verseNum": 5, + "text": "Make the poles of acacia wood and overlay them with gold." + }, + { + "verseNum": 6, + "text": "Place the altar in front of the veil that is before the ark of the Testimony —before the mercy seat that is over the Testimony—where I will meet with you." + }, + { + "verseNum": 7, + "text": "And Aaron is to burn fragrant incense on it every morning when he tends the lamps." + }, + { + "verseNum": 8, + "text": "When Aaron sets up the lamps at twilight, he must burn the incense perpetually before the LORD for the generations to come." + }, + { + "verseNum": 9, + "text": "On this altar you must not offer unauthorized incense or a burnt offering or grain offering; nor are you to pour a drink offering on it." + }, + { + "verseNum": 10, + "text": "Once a year Aaron shall make atonement on the horns of the altar. Throughout your generations he shall make atonement on it annually with the blood of the sin offering of atonement. The altar is most holy to the LORD.”" + }, + { + "verseNum": 11, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 12, + "text": "“When you take a census of the Israelites to number them, each man must pay the LORD a ransom for his life when he is counted. Then no plague will come upon them when they are numbered." + }, + { + "verseNum": 13, + "text": "Everyone who crosses over to those counted must pay a half shekel, according to the sanctuary shekel, which weighs twenty gerahs. This half shekel is an offering to the LORD." + }, + { + "verseNum": 14, + "text": "Everyone twenty years of age or older who crosses over must give this offering to the LORD." + }, + { + "verseNum": 15, + "text": "In making the offering to the LORD to atone for your lives, the rich shall not give more than a half shekel, nor shall the poor give less." + }, + { + "verseNum": 16, + "text": "Take the atonement money from the Israelites and use it for the service of the Tent of Meeting. It will serve as a memorial for the Israelites before the LORD to make atonement for your lives.”" + }, + { + "verseNum": 17, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 18, + "text": "“You are to make a bronze basin with a bronze stand for washing. Set it between the Tent of Meeting and the altar, and put water in it," + }, + { + "verseNum": 19, + "text": "with which Aaron and his sons are to wash their hands and feet." + }, + { + "verseNum": 20, + "text": "Whenever they enter the Tent of Meeting or approach the altar to minister by presenting an offering made by fire to the LORD, they must wash with water so that they will not die." + }, + { + "verseNum": 21, + "text": "Thus they are to wash their hands and feet so that they will not die; this shall be a permanent statute for Aaron and his descendants for the generations to come.”" + }, + { + "verseNum": 22, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 23, + "text": "“Take the finest spices: 500 shekels of liquid myrrh, half that amount (250 shekels) of fragrant cinnamon, 250 shekels of fragrant cane," + }, + { + "verseNum": 24, + "text": "500 shekels of cassia —all according to the sanctuary shekel—and a hin of olive oil." + }, + { + "verseNum": 25, + "text": "Prepare from these a sacred anointing oil, a fragrant blend, the work of a perfumer; it will be a sacred anointing oil." + }, + { + "verseNum": 26, + "text": "Use this oil to anoint the Tent of Meeting, the ark of the Testimony," + }, + { + "verseNum": 27, + "text": "the table and all its utensils, the lampstand and its utensils, the altar of incense," + }, + { + "verseNum": 28, + "text": "the altar of burnt offering and all its utensils, and the basin with its stand." + }, + { + "verseNum": 29, + "text": "You are to consecrate them so that they will be most holy. Whatever touches them shall be holy." + }, + { + "verseNum": 30, + "text": "Anoint Aaron and his sons and consecrate them to serve Me as priests." + }, + { + "verseNum": 31, + "text": "And you are to tell the Israelites, ‘This will be My sacred anointing oil for the generations to come." + }, + { + "verseNum": 32, + "text": "It must not be used to anoint an ordinary man, and you must not make anything like it with the same formula. It is holy, and it must be holy to you." + }, + { + "verseNum": 33, + "text": "Anyone who mixes perfume like it or puts it on an outsider shall be cut off from his people.’”" + }, + { + "verseNum": 34, + "text": "The LORD also said to Moses, “Take fragrant spices—gum resin, onycha, galbanum, and pure frankincense—in equal measures," + }, + { + "verseNum": 35, + "text": "and make a fragrant blend of incense, the work of a perfumer, seasoned with salt, pure and holy." + }, + { + "verseNum": 36, + "text": "Grind some of it into fine powder and place it in front of the Testimony in the Tent of Meeting, where I will meet with you. It shall be most holy to you." + }, + { + "verseNum": 37, + "text": "You are never to use this formula to make incense for yourselves; you shall regard it as holy to the LORD." + }, + { + "verseNum": 38, + "text": "Anyone who makes something like it to enjoy its fragrance shall be cut off from his people.”" + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“See, I have called by name Bezalel son of Uri, the son of Hur, of the tribe of Judah." + }, + { + "verseNum": 3, + "text": "And I have filled him with the Spirit of God, with skill, ability, and knowledge in all kinds of craftsmanship," + }, + { + "verseNum": 4, + "text": "to design artistic works in gold, silver, and bronze," + }, + { + "verseNum": 5, + "text": "to cut gemstones for settings, and to carve wood, so that he may be a master of every craft." + }, + { + "verseNum": 6, + "text": "Moreover, I have selected Oholiab son of Ahisamach, of the tribe of Dan, as his assistant.\n \nI have also given skill to all the craftsmen, that they may fashion all that I have commanded you:" + }, + { + "verseNum": 7, + "text": "the Tent of Meeting, the ark of the Testimony and the mercy seat upon it, and all the other furnishings of the tent—" + }, + { + "verseNum": 8, + "text": "the table with its utensils, the pure gold lampstand with all its utensils, the altar of incense," + }, + { + "verseNum": 9, + "text": "the altar of burnt offering with all its utensils, and the basin with its stand—" + }, + { + "verseNum": 10, + "text": "as well as the woven garments, both the holy garments for Aaron the priest and the garments for his sons to serve as priests," + }, + { + "verseNum": 11, + "text": "in addition to the anointing oil and fragrant incense for the Holy Place. They are to make them according to all that I have commanded you.”" + }, + { + "verseNum": 12, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 13, + "text": "“Tell the Israelites, ‘Surely you must keep My Sabbaths, for this will be a sign between Me and you for the generations to come, so that you may know that I am the LORD who sanctifies you." + }, + { + "verseNum": 14, + "text": "Keep the Sabbath, for it is holy to you. Anyone who profanes it must surely be put to death. Whoever does any work on that day must be cut off from among his people." + }, + { + "verseNum": 15, + "text": "For six days work may be done, but the seventh day is a Sabbath of complete rest, holy to the LORD. Whoever does any work on the Sabbath day must surely be put to death." + }, + { + "verseNum": 16, + "text": "The Israelites must keep the Sabbath, celebrating it as a permanent covenant for the generations to come." + }, + { + "verseNum": 17, + "text": "It is a sign between Me and the Israelites forever; for in six days the LORD made the heavens and the earth, but on the seventh day He rested and was refreshed.’”" + }, + { + "verseNum": 18, + "text": "When the LORD had finished speaking with Moses on Mount Sinai, He gave him the two tablets of the Testimony, tablets of stone inscribed by the finger of God." + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "Now when the people saw that Moses was delayed in coming down from the mountain, they gathered around Aaron and said, “Come, make us gods who will go before us. As for this Moses who brought us up out of the land of Egypt, we do not know what has happened to him!”" + }, + { + "verseNum": 2, + "text": "So Aaron told them, “Take off the gold earrings that are on your wives and sons and daughters, and bring them to me.”" + }, + { + "verseNum": 3, + "text": "Then all the people took off their gold earrings and brought them to Aaron." + }, + { + "verseNum": 4, + "text": "He took the gold from their hands, and with an engraving tool he fashioned it into a molten calf. And they said, “These, O Israel, are your gods, who brought you up out of the land of Egypt!”" + }, + { + "verseNum": 5, + "text": "When Aaron saw this, he built an altar before the calf and proclaimed: “Tomorrow shall be a feast to the LORD.”" + }, + { + "verseNum": 6, + "text": "So the next day they arose, offered burnt offerings, and presented peace offerings. And the people sat down to eat and drink, and got up to indulge in revelry." + }, + { + "verseNum": 7, + "text": "Then the LORD said to Moses, “Go down at once, for your people, whom you brought up out of the land of Egypt, have corrupted themselves." + }, + { + "verseNum": 8, + "text": "How quickly they have turned aside from the way that I commanded them! They have made for themselves a molten calf and have bowed down to it. They have sacrificed to it and said, ‘These, O Israel, are your gods, who brought you up out of the land of Egypt.’”" + }, + { + "verseNum": 9, + "text": "The LORD also said to Moses, “I have seen this people, and they are indeed a stiff-necked people." + }, + { + "verseNum": 10, + "text": "Now leave Me alone, so that My anger may burn against them and consume them. Then I will make you into a great nation.”" + }, + { + "verseNum": 11, + "text": "But Moses sought the favor of the LORD his God, saying, “O LORD, why does Your anger burn against Your people, whom You brought out of the land of Egypt with great power and a mighty hand?" + }, + { + "verseNum": 12, + "text": "Why should the Egyptians declare, ‘He brought them out with evil intent, to kill them in the mountains and wipe them from the face of the earth’? Turn from Your fierce anger and relent from doing harm to Your people." + }, + { + "verseNum": 13, + "text": "Remember Your servants Abraham, Isaac, and Israel, to whom You swore by Your very self when You declared, ‘I will make your descendants as numerous as the stars in the sky, and I will give your descendants all this land that I have promised, and it shall be their inheritance forever.’”" + }, + { + "verseNum": 14, + "text": "So the LORD relented from the calamity He had threatened to bring on His people." + }, + { + "verseNum": 15, + "text": "Then Moses turned and went down the mountain with the two tablets of the Testimony in his hands. They were inscribed on both sides, front and back." + }, + { + "verseNum": 16, + "text": "The tablets were the work of God, and the writing was the writing of God, engraved on the tablets." + }, + { + "verseNum": 17, + "text": "When Joshua heard the sound of the people shouting, he said to Moses, “The sound of war is in the camp.”" + }, + { + "verseNum": 18, + "text": "But Moses replied:\n \n “It is neither the cry of victory nor the cry of defeat;\n I hear the sound of singing!”" + }, + { + "verseNum": 19, + "text": "As Moses approached the camp and saw the calf and the dancing, he burned with anger and threw the tablets out of his hands, shattering them at the base of the mountain." + }, + { + "verseNum": 20, + "text": "Then he took the calf they had made, burned it in the fire, ground it to powder, and scattered the powder over the face of the water. Then he forced the Israelites to drink it." + }, + { + "verseNum": 21, + "text": "“What did this people do to you,” Moses asked Aaron, “that you have led them into so great a sin?”" + }, + { + "verseNum": 22, + "text": "“Do not be enraged, my lord,” Aaron replied. “You yourself know that the people are intent on evil." + }, + { + "verseNum": 23, + "text": "They told me, ‘Make us gods who will go before us. As for this Moses who brought us up out of the land of Egypt, we do not know what has happened to him!’" + }, + { + "verseNum": 24, + "text": "So I said to them, ‘Whoever has gold, let him take it off,’ and they gave it to me. And when I threw it into the fire, out came this calf!”" + }, + { + "verseNum": 25, + "text": "Moses saw that the people were out of control, for Aaron had let them run wild and become a laughingstock to their enemies." + }, + { + "verseNum": 26, + "text": "So Moses stood at the entrance to the camp and said, “Whoever is for the LORD, come to me.”\n \nAnd all the Levites gathered around him." + }, + { + "verseNum": 27, + "text": "He told them, “This is what the LORD, the God of Israel, says: ‘Each of you men is to fasten his sword to his side, go back and forth through the camp from gate to gate, and slay his brother, his friend, and his neighbor.’”" + }, + { + "verseNum": 28, + "text": "The Levites did as Moses commanded, and that day about three thousand of the people fell dead." + }, + { + "verseNum": 29, + "text": "Afterward, Moses said, “Today you have been ordained for service to the LORD, since each man went against his son and his brother; so the LORD has bestowed a blessing on you this day.”" + }, + { + "verseNum": 30, + "text": "The next day Moses said to the people, “You have committed a great sin. Now I will go up to the LORD; perhaps I can make atonement for your sin.”" + }, + { + "verseNum": 31, + "text": "So Moses returned to the LORD and said, “Oh, what a great sin these people have committed! They have made gods of gold for themselves." + }, + { + "verseNum": 32, + "text": "Yet now, if You would only forgive their sin.... But if not, please blot me out of the book that You have written.”" + }, + { + "verseNum": 33, + "text": "The LORD replied to Moses, “Whoever has sinned against Me, I will blot out of My book." + }, + { + "verseNum": 34, + "text": "Now go, lead the people to the place I described. Behold, My angel shall go before you. But on the day I settle accounts, I will punish them for their sin.”" + }, + { + "verseNum": 35, + "text": "And the LORD sent a plague on the people because of what they had done with the calf that Aaron had made." + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Leave this place, you and the people you brought up out of the land of Egypt, and go to the land that I promised to Abraham, Isaac, and Jacob when I said, ‘I will give it to your descendants.’" + }, + { + "verseNum": 2, + "text": "And I will send an angel before you, and I will drive out the Canaanites, Amorites, Hittites, Perizzites, Hivites, and Jebusites." + }, + { + "verseNum": 3, + "text": "Go up to a land flowing with milk and honey. But I will not go with you, because you are a stiff-necked people; otherwise, I might destroy you on the way.”" + }, + { + "verseNum": 4, + "text": "When the people heard these bad tidings, they went into mourning, and no one put on any of his jewelry." + }, + { + "verseNum": 5, + "text": "For the LORD had said to Moses, “Tell the Israelites, ‘You are a stiff-necked people. If I should go with you for a single moment, I would destroy you. Now take off your jewelry, and I will decide what to do with you.’”" + }, + { + "verseNum": 6, + "text": "So the Israelites stripped themselves of their jewelry from Mount Horeb onward." + }, + { + "verseNum": 7, + "text": "Now Moses used to take the tent and pitch it at a distance outside the camp. He called it the Tent of Meeting, and anyone inquiring of the LORD would go to the Tent of Meeting outside the camp." + }, + { + "verseNum": 8, + "text": "Then, whenever Moses went out to the tent, all the people would stand at the entrances to their own tents and watch Moses until he entered the tent." + }, + { + "verseNum": 9, + "text": "As Moses entered the tent, the pillar of cloud would come down and remain at the entrance, and the LORD would speak with Moses." + }, + { + "verseNum": 10, + "text": "When all the people saw the pillar of cloud standing at the entrance to the tent, they would stand up and worship, each one at the entrance to his own tent." + }, + { + "verseNum": 11, + "text": "Thus the LORD would speak to Moses face to face, as a man speaks to his friend. Then Moses would return to the camp, but his young assistant Joshua son of Nun would not leave the tent." + }, + { + "verseNum": 12, + "text": "Then Moses said to the LORD, “Look, You have been telling me, ‘Lead this people up,’ but You have not let me know whom You will send with me. Yet You have said, ‘I know you by name, and you have found favor in My sight.’" + }, + { + "verseNum": 13, + "text": "Now if indeed I have found favor in Your sight, please let me know Your ways, that I may know You and find favor in Your sight. Remember that this nation is Your people.”" + }, + { + "verseNum": 14, + "text": "And the LORD answered, “My Presence will go with you, and I will give you rest.”" + }, + { + "verseNum": 15, + "text": "“If Your Presence does not go with us,” Moses replied, “do not lead us up from here." + }, + { + "verseNum": 16, + "text": "For how then can it be known that Your people and I have found favor in Your sight, unless You go with us? How else will we be distinguished from all the other people on the face of the earth?”" + }, + { + "verseNum": 17, + "text": "So the LORD said to Moses, “I will do this very thing you have asked, for you have found favor in My sight, and I know you by name.”" + }, + { + "verseNum": 18, + "text": "Then Moses said, “Please show me Your glory.”" + }, + { + "verseNum": 19, + "text": "“I will cause all My goodness to pass before you,” the LORD replied, “and I will proclaim My name—the LORD—in your presence. I will have mercy on whom I have mercy, and I will have compassion on whom I have compassion.”" + }, + { + "verseNum": 20, + "text": "But He added, “You cannot see My face, for no one can see Me and live.”" + }, + { + "verseNum": 21, + "text": "The LORD continued, “There is a place near Me where you are to stand upon a rock," + }, + { + "verseNum": 22, + "text": "and when My glory passes by, I will put you in a cleft of the rock and cover you with My hand until I have passed by." + }, + { + "verseNum": 23, + "text": "Then I will take My hand away, and you will see My back; but My face must not be seen.”" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Chisel out two stone tablets like the originals, and I will write on them the words that were on the first tablets, which you broke." + }, + { + "verseNum": 2, + "text": "Be ready in the morning, and come up on Mount Sinai to present yourself before Me on the mountaintop." + }, + { + "verseNum": 3, + "text": "No one may go up with you; in fact, no one may be seen anywhere on the mountain—not even the flocks or herds may graze in front of the mountain.”" + }, + { + "verseNum": 4, + "text": "So Moses chiseled out two stone tablets like the originals. He rose early in the morning, and taking the two stone tablets in his hands, he went up Mount Sinai as the LORD had commanded him." + }, + { + "verseNum": 5, + "text": "And the LORD descended in a cloud, stood with him there, and proclaimed His name, the LORD." + }, + { + "verseNum": 6, + "text": "Then the LORD passed in front of Moses and called out:\n “The LORD, the LORD God,\n is compassionate and gracious,\n slow to anger,\n abounding in loving devotion and faithfulness," + }, + { + "verseNum": 7, + "text": "maintaining loving devotion to a thousand generations,\n forgiving iniquity, transgression, and sin.\n Yet He will by no means leave the guilty unpunished;\n He will visit the iniquity of the fathers\n on their children and grandchildren\n to the third and fourth generations.”" + }, + { + "verseNum": 8, + "text": "Moses immediately bowed down to the ground and worshiped." + }, + { + "verseNum": 9, + "text": "“O Lord,” he said, “if I have indeed found favor in Your sight, my Lord, please go with us. Although this is a stiff-necked people, forgive our iniquity and sin, and take us as Your inheritance.”" + }, + { + "verseNum": 10, + "text": "And the LORD said, “Behold, I am making a covenant. Before all your people I will perform wonders that have never been done in any nation in all the world. All the people among whom you live will see the LORD’s work, for it is an awesome thing that I am doing with you." + }, + { + "verseNum": 11, + "text": "Observe what I command you this day. I will drive out before you the Amorites, Canaanites, Hittites, Perizzites, Hivites, and Jebusites." + }, + { + "verseNum": 12, + "text": "Be careful not to make a treaty with the inhabitants of the land you are entering, lest they become a snare in your midst." + }, + { + "verseNum": 13, + "text": "Rather, you must tear down their altars, smash their sacred stones, and chop down their Asherah poles." + }, + { + "verseNum": 14, + "text": "For you must not worship any other god, for the LORD, whose name is Jealous, is a jealous God." + }, + { + "verseNum": 15, + "text": "Do not make a covenant with the inhabitants of the land, for when they prostitute themselves to their gods and sacrifice to them, they will invite you, and you will eat their sacrifices." + }, + { + "verseNum": 16, + "text": "And when you take some of their daughters as brides for your sons, their daughters will prostitute themselves to their gods and cause your sons to do the same." + }, + { + "verseNum": 17, + "text": "You shall make no molten gods for yourselves." + }, + { + "verseNum": 18, + "text": "You are to keep the Feast of Unleavened Bread. For seven days at the appointed time in the month of Abib, you are to eat unleavened bread as I commanded you. For in the month of Abib you came out of Egypt." + }, + { + "verseNum": 19, + "text": "The first offspring of every womb belongs to Me, including all the firstborn males among your livestock, whether cattle or sheep." + }, + { + "verseNum": 20, + "text": "You must redeem the firstborn of a donkey with a lamb; but if you do not redeem it, you are to break its neck. You must redeem all the firstborn of your sons. No one shall appear before Me empty-handed." + }, + { + "verseNum": 21, + "text": "Six days you shall labor, but on the seventh day you shall rest; even in the seasons of plowing and harvesting, you must rest." + }, + { + "verseNum": 22, + "text": "And you are to celebrate the Feast of Weeks with the firstfruits of the wheat harvest, and the Feast of Ingathering at the turn of the year." + }, + { + "verseNum": 23, + "text": "Three times a year all your males are to appear before the Lord GOD, the God of Israel." + }, + { + "verseNum": 24, + "text": "For I will drive out the nations before you and enlarge your borders, and no one will covet your land when you go up three times a year to appear before the LORD your God." + }, + { + "verseNum": 25, + "text": "Do not offer the blood of a sacrifice to Me along with anything leavened, and do not let any of the sacrifice from the Passover Feast remain until morning." + }, + { + "verseNum": 26, + "text": "Bring the best of the firstfruits of your soil to the house of the LORD your God.\n \nYou must not cook a young goat in its mother’s milk.”" + }, + { + "verseNum": 27, + "text": "The LORD also said to Moses, “Write down these words, for in accordance with these words I have made a covenant with you and with Israel.”" + }, + { + "verseNum": 28, + "text": "So Moses was there with the LORD forty days and forty nights without eating bread or drinking water. He wrote on the tablets the words of the covenant—the Ten Commandments." + }, + { + "verseNum": 29, + "text": "And when Moses came down from Mount Sinai with the two tablets of the Testimony in his hands, he was unaware that his face had become radiant from speaking with the LORD." + }, + { + "verseNum": 30, + "text": "Aaron and all the Israelites looked at Moses, and behold, his face was radiant. And they were afraid to approach him." + }, + { + "verseNum": 31, + "text": "But Moses called out to them; so Aaron and all the leaders of the congregation returned to him, and Moses spoke to them." + }, + { + "verseNum": 32, + "text": "And after this all the Israelites came near, and Moses commanded them to do everything that the LORD had told him on Mount Sinai." + }, + { + "verseNum": 33, + "text": "When Moses had finished speaking with them, he put a veil over his face." + }, + { + "verseNum": 34, + "text": "But whenever Moses went in before the LORD to speak with Him, he would remove the veil until he came out. And when he came out, he would tell the Israelites what he had been commanded," + }, + { + "verseNum": 35, + "text": "and the Israelites would see that the face of Moses was radiant. So Moses would put the veil back over his face until he went in to speak with the LORD." + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "Then Moses assembled the whole congregation of Israel and said to them, “These are the things that the LORD has commanded you to do:" + }, + { + "verseNum": 2, + "text": "For six days work may be done, but the seventh day shall be your holy day, a Sabbath of complete rest to the LORD. Whoever does any work on that day must be put to death." + }, + { + "verseNum": 3, + "text": "Do not light a fire in any of your dwellings on the Sabbath day.”" + }, + { + "verseNum": 4, + "text": "Moses also told the whole congregation of Israel, “This is what the LORD has commanded:" + }, + { + "verseNum": 5, + "text": "Take from among you an offering to the LORD. Let everyone whose heart is willing bring an offering to the LORD:\n \n gold, silver, and bronze;" + }, + { + "verseNum": 6, + "text": "blue, purple, and scarlet yarn;\n \n fine linen and goat hair;" + }, + { + "verseNum": 7, + "text": "ram skins dyed red and fine leather;\n \n acacia wood;" + }, + { + "verseNum": 8, + "text": "olive oil for the light;\n \n spices for the anointing oil and for the fragrant incense;" + }, + { + "verseNum": 9, + "text": "and onyx stones and gemstones to be mounted on the ephod and breastpiece." + }, + { + "verseNum": 10, + "text": "Let every skilled craftsman among you come and make everything that the LORD has commanded:" + }, + { + "verseNum": 11, + "text": "the tabernacle with its tent and covering, its clasps and frames, its crossbars, posts, and bases;" + }, + { + "verseNum": 12, + "text": "the ark with its poles and mercy seat, and the veil to shield it;" + }, + { + "verseNum": 13, + "text": "the table with its poles, all its utensils, and the Bread of the Presence;" + }, + { + "verseNum": 14, + "text": "the lampstand for light with its accessories and lamps and oil for the light;" + }, + { + "verseNum": 15, + "text": "the altar of incense with its poles;\n \n the anointing oil and fragrant incense;\n \n the curtain for the doorway at the entrance to the tabernacle;" + }, + { + "verseNum": 16, + "text": "the altar of burnt offering with its bronze grate, its poles, and all its utensils;\n \n the basin with its stand;" + }, + { + "verseNum": 17, + "text": "the curtains of the courtyard with its posts and bases, and the curtain for the gate of the courtyard;" + }, + { + "verseNum": 18, + "text": "the tent pegs for the tabernacle and for the courtyard, along with their ropes;" + }, + { + "verseNum": 19, + "text": "and the woven garments for ministering in the holy place—both the holy garments for Aaron the priest and the garments for his sons to serve as priests.”" + }, + { + "verseNum": 20, + "text": "Then the whole congregation of Israel withdrew from the presence of Moses." + }, + { + "verseNum": 21, + "text": "And everyone whose heart stirred him and whose spirit prompted him came and brought an offering to the LORD for the work on the Tent of Meeting, for all its services, and for the holy garments." + }, + { + "verseNum": 22, + "text": "So all who had willing hearts, both men and women, came and brought brooches and earrings, rings and necklaces, and all kinds of gold jewelry. And they all presented their gold as a wave offering to the LORD." + }, + { + "verseNum": 23, + "text": "Everyone who had blue, purple, or scarlet yarn, or fine linen, goat hair, ram skins dyed red, or articles of fine leather, brought them." + }, + { + "verseNum": 24, + "text": "And all who could present an offering of silver or bronze brought it as a contribution to the LORD. Also, everyone who had acacia wood for any part of the service brought it." + }, + { + "verseNum": 25, + "text": "Every skilled woman spun with her hands and brought what she had spun: blue, purple, or scarlet yarn, or fine linen." + }, + { + "verseNum": 26, + "text": "And all the skilled women whose hearts were stirred spun the goat hair." + }, + { + "verseNum": 27, + "text": "The leaders brought onyx stones and gemstones to mount on the ephod and breastpiece," + }, + { + "verseNum": 28, + "text": "as well as spices and olive oil for the light, for the anointing oil, and for the fragrant incense." + }, + { + "verseNum": 29, + "text": "So all the men and women of the Israelites whose hearts prompted them brought a freewill offering to the LORD for all the work that the LORD through Moses had commanded them to do." + }, + { + "verseNum": 30, + "text": "Then Moses said to the Israelites, “See, the LORD has called by name Bezalel son of Uri, the son of Hur, of the tribe of Judah." + }, + { + "verseNum": 31, + "text": "And He has filled him with the Spirit of God, with skill, ability, and knowledge in all kinds of craftsmanship," + }, + { + "verseNum": 32, + "text": "to design artistic works in gold, silver, and bronze," + }, + { + "verseNum": 33, + "text": "to cut gemstones for settings, and to carve wood, so that he may be a master of every artistic craft." + }, + { + "verseNum": 34, + "text": "And the LORD has given both him and Oholiab son of Ahisamach, of the tribe of Dan, the ability to teach others." + }, + { + "verseNum": 35, + "text": "He has filled them with skill to do all kinds of work as engravers, designers, embroiderers in blue, purple, and scarlet yarn and fine linen, and as weavers—as artistic designers of every kind of craft." + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "“So Bezalel, Oholiab, and every skilled person are to carry out everything commanded by the LORD, who has given them skill and ability to know how to perform all the work of constructing the sanctuary.”" + }, + { + "verseNum": 2, + "text": "Then Moses summoned Bezalel, Oholiab, and every skilled person whom the LORD had gifted—everyone whose heart stirred him to come and do the work." + }, + { + "verseNum": 3, + "text": "They received from Moses all the contributions that the Israelites had brought to carry out the service of constructing the sanctuary.\n \nMeanwhile, the people continued to bring freewill offerings morning after morning," + }, + { + "verseNum": 4, + "text": "so that all the skilled craftsmen who were doing all the work on the sanctuary left their work" + }, + { + "verseNum": 5, + "text": "and said to Moses, “The people are bringing more than enough for doing the work the LORD has commanded us to do.”" + }, + { + "verseNum": 6, + "text": "After Moses had given an order, they sent a proclamation throughout the camp: “No man or woman should make anything else as an offering for the sanctuary.” So the people were restrained from bringing more," + }, + { + "verseNum": 7, + "text": "since what they already had was more than enough to perform all the work." + }, + { + "verseNum": 8, + "text": "All the skilled craftsmen among the workmen made the ten curtains for the tabernacle. They were made of finely spun linen, as well as blue, purple, and scarlet yarn, with cherubim skillfully worked into them." + }, + { + "verseNum": 9, + "text": "Each curtain was twenty-eight cubits long and four cubits wide; all the curtains were the same size." + }, + { + "verseNum": 10, + "text": "And he joined five of the curtains together, and the other five he joined as well." + }, + { + "verseNum": 11, + "text": "He made loops of blue material on the edge of the end curtain in the first set, and also on the end curtain in the second set." + }, + { + "verseNum": 12, + "text": "He made fifty loops on one curtain and fifty loops on the end curtain of the second set, so that the loops lined up opposite one another." + }, + { + "verseNum": 13, + "text": "He also made fifty gold clasps to join the curtains together, so that the tabernacle was a unit." + }, + { + "verseNum": 14, + "text": "He then made curtains of goat hair for the tent over the tabernacle—eleven curtains in all." + }, + { + "verseNum": 15, + "text": "Each of the eleven curtains was the same size—thirty cubits long and four cubits wide." + }, + { + "verseNum": 16, + "text": "He joined five of the curtains into one set and the other six into another." + }, + { + "verseNum": 17, + "text": "He made fifty loops along the edge of the end curtain in the first set, and fifty loops along the edge of the corresponding curtain in the second set." + }, + { + "verseNum": 18, + "text": "He also made fifty bronze clasps to join the tent together as a unit." + }, + { + "verseNum": 19, + "text": "Additionally, he made for the tent a covering of ram skins dyed red, and over that a covering of fine leather." + }, + { + "verseNum": 20, + "text": "Next, he constructed upright frames of acacia wood for the tabernacle." + }, + { + "verseNum": 21, + "text": "Each frame was ten cubits long and a cubit and a half wide." + }, + { + "verseNum": 22, + "text": "Two tenons were connected to each other for each frame. He made all the frames of the tabernacle in this way." + }, + { + "verseNum": 23, + "text": "He constructed twenty frames for the south side of the tabernacle," + }, + { + "verseNum": 24, + "text": "with forty silver bases to put under the twenty frames—two bases for each frame, one under each tenon." + }, + { + "verseNum": 25, + "text": "For the second side of the tabernacle, the north side, he made twenty frames" + }, + { + "verseNum": 26, + "text": "and forty silver bases—two bases under each frame." + }, + { + "verseNum": 27, + "text": "He made six frames for the rear of the tabernacle, the west side," + }, + { + "verseNum": 28, + "text": "and two frames for the two back corners of the tabernacle," + }, + { + "verseNum": 29, + "text": "coupled together from bottom to top and fitted into a single ring. He made both corners in this way." + }, + { + "verseNum": 30, + "text": "So there were eight frames and sixteen silver bases—two under each frame." + }, + { + "verseNum": 31, + "text": "He also made five crossbars of acacia wood for the frames on one side of the tabernacle," + }, + { + "verseNum": 32, + "text": "five for those on the other side, and five for those on the rear side of the tabernacle, to the west." + }, + { + "verseNum": 33, + "text": "He made the central crossbar to run through the center of the frames, from one end to the other." + }, + { + "verseNum": 34, + "text": "And he overlaid the frames with gold and made gold rings to hold the crossbars. He also overlaid the crossbars with gold." + }, + { + "verseNum": 35, + "text": "Next, he made the veil of blue, purple, and scarlet yarn, and finely spun linen, with cherubim skillfully worked into it." + }, + { + "verseNum": 36, + "text": "He also made four posts of acacia wood for it and overlaid them with gold, along with gold hooks; and he cast four silver bases for the posts." + }, + { + "verseNum": 37, + "text": "For the entrance to the tent, he made a curtain embroidered with blue, purple, and scarlet yarn, and finely spun linen," + }, + { + "verseNum": 38, + "text": "together with five posts and their hooks.\n \nHe overlaid the tops of the posts and their bands with gold, and their five bases were bronze." + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "Bezalel went on to construct the ark of acacia wood, two and a half cubits long, a cubit and a half wide, and a cubit and a half high." + }, + { + "verseNum": 2, + "text": "He overlaid it with pure gold, both inside and out, and made a gold molding around it." + }, + { + "verseNum": 3, + "text": "And he cast four gold rings for its four feet, two rings on one side and two on the other." + }, + { + "verseNum": 4, + "text": "Then he made poles of acacia wood and overlaid them with gold." + }, + { + "verseNum": 5, + "text": "He inserted the poles into the rings on the sides of the ark in order to carry it." + }, + { + "verseNum": 6, + "text": "He constructed a mercy seat of pure gold, two and a half cubits long and a cubit and a half wide." + }, + { + "verseNum": 7, + "text": "He made two cherubim of hammered gold at the ends of the mercy seat," + }, + { + "verseNum": 8, + "text": "one cherub on one end and one on the other, all made from one piece of gold." + }, + { + "verseNum": 9, + "text": "And the cherubim had wings that spread upward, overshadowing the mercy seat. The cherubim faced each other, looking toward the mercy seat." + }, + { + "verseNum": 10, + "text": "He also made the table of acacia wood two cubits long, a cubit wide, and a cubit and a half high." + }, + { + "verseNum": 11, + "text": "He overlaid it with pure gold and made a gold molding around it." + }, + { + "verseNum": 12, + "text": "And he made a rim around it a handbreadth wide and put a gold molding on the rim." + }, + { + "verseNum": 13, + "text": "He cast four gold rings for the table and fastened them to the four corners at its four legs." + }, + { + "verseNum": 14, + "text": "The rings were placed close to the rim, to serve as holders for the poles used to carry the table." + }, + { + "verseNum": 15, + "text": "He made the poles of acacia wood for carrying the table and overlaid them with gold." + }, + { + "verseNum": 16, + "text": "He also made the utensils for the table out of pure gold: its plates and dishes, as well as its bowls and pitchers for pouring drink offerings." + }, + { + "verseNum": 17, + "text": "Then he made the lampstand out of pure hammered gold, all of one piece: its base and shaft, its cups, and its buds and petals." + }, + { + "verseNum": 18, + "text": "Six branches extended from the sides, three on one side and three on the other." + }, + { + "verseNum": 19, + "text": "There were three cups shaped like almond blossoms on the first branch, each with buds and petals, three on the next branch, and the same for all six branches that extended from the lampstand." + }, + { + "verseNum": 20, + "text": "And on the lampstand were four cups shaped like almond blossoms with buds and petals." + }, + { + "verseNum": 21, + "text": "A bud was under the first pair of branches that extended from the lampstand, a bud under the second pair, and a bud under the third pair." + }, + { + "verseNum": 22, + "text": "The buds and branches were all of one piece with the lampstand, hammered out of pure gold." + }, + { + "verseNum": 23, + "text": "He also made its seven lamps, its wick trimmers, and trays of pure gold." + }, + { + "verseNum": 24, + "text": "He made the lampstand and all its utensils from a talent of pure gold." + }, + { + "verseNum": 25, + "text": "He made the altar of incense out of acacia wood. It was square, a cubit long, a cubit wide, and two cubits high. Its horns were of one piece." + }, + { + "verseNum": 26, + "text": "And he overlaid with pure gold the top and all the sides and horns. Then he made a molding of gold around it." + }, + { + "verseNum": 27, + "text": "He made two gold rings below the molding on opposite sides to hold the poles used to carry it." + }, + { + "verseNum": 28, + "text": "And he made the poles of acacia wood and overlaid them with gold." + }, + { + "verseNum": 29, + "text": "He also made the sacred anointing oil and the pure, fragrant incense, the work of a perfumer." + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "Bezalel constructed the altar of burnt offering from acacia wood. It was square, five cubits long, five cubits wide, and three cubits high." + }, + { + "verseNum": 2, + "text": "He made a horn at each of its four corners, so that the horns and altar were of one piece, and he overlaid the altar with bronze." + }, + { + "verseNum": 3, + "text": "He made all the altar’s utensils of bronze—its pots, shovels, sprinkling bowls, meat forks, and firepans." + }, + { + "verseNum": 4, + "text": "He made a grate of bronze mesh for the altar under its ledge, halfway up from the bottom." + }, + { + "verseNum": 5, + "text": "At the four corners of the bronze grate he cast four rings as holders for the poles." + }, + { + "verseNum": 6, + "text": "And he made the poles of acacia wood and overlaid them with bronze." + }, + { + "verseNum": 7, + "text": "Then he inserted the poles into the rings on the sides of the altar for carrying it. He made the altar with boards so that it was hollow." + }, + { + "verseNum": 8, + "text": "Next he made the bronze basin and its stand from the mirrors of the women who served at the entrance to the Tent of Meeting." + }, + { + "verseNum": 9, + "text": "Then he constructed the courtyard. The south side of the courtyard was a hundred cubits long and had curtains of finely spun linen," + }, + { + "verseNum": 10, + "text": "with twenty posts and twenty bronze bases, and with silver hooks and bands on the posts." + }, + { + "verseNum": 11, + "text": "The north side was also a hundred cubits long, with twenty posts and twenty bronze bases. The hooks and bands of the posts were silver." + }, + { + "verseNum": 12, + "text": "The west side was fifty cubits long and had curtains, with ten posts and ten bases. The hooks and bands of the posts were silver." + }, + { + "verseNum": 13, + "text": "And the east side, toward the sunrise, was also fifty cubits long." + }, + { + "verseNum": 14, + "text": "The curtains on one side of the entrance were fifteen cubits long, with three posts and three bases." + }, + { + "verseNum": 15, + "text": "And the curtains on the other side were also fifteen cubits long, with three posts and three bases as well." + }, + { + "verseNum": 16, + "text": "All the curtains around the courtyard were made of finely spun linen." + }, + { + "verseNum": 17, + "text": "The bases for the posts were bronze, the hooks and bands were silver, and the plating for the tops of the posts was silver. So all the posts of the courtyard were banded with silver." + }, + { + "verseNum": 18, + "text": "The curtain for the entrance to the courtyard was embroidered with blue, purple, and scarlet yarn, and finely spun linen. It was twenty cubits long and, like the curtains of the courtyard, five cubits high," + }, + { + "verseNum": 19, + "text": "with four posts and four bronze bases. Their hooks were silver, as well as the bands and the plating of their tops." + }, + { + "verseNum": 20, + "text": "All the tent pegs for the tabernacle and for the surrounding courtyard were bronze." + }, + { + "verseNum": 21, + "text": "This is the inventory for the tabernacle, the tabernacle of the Testimony, as recorded at Moses’ command by the Levites under the direction of Ithamar son of Aaron the priest." + }, + { + "verseNum": 22, + "text": "Bezalel son of Uri, the son of Hur, of the tribe of Judah, made everything that the LORD had commanded Moses." + }, + { + "verseNum": 23, + "text": "With him was Oholiab son of Ahisamach, of the tribe of Dan, an engraver, designer, and embroiderer in blue, purple, and scarlet yarn and fine linen." + }, + { + "verseNum": 24, + "text": "All the gold from the wave offering used for the work on the sanctuary totaled 29 talents and 730 shekels, according to the sanctuary shekel." + }, + { + "verseNum": 25, + "text": "The silver from those numbered among the congregation totaled 100 talents and 1,775 shekels, according to the sanctuary shekel—" + }, + { + "verseNum": 26, + "text": "a beka per person, that is, half a shekel, according to the sanctuary shekel, from everyone twenty years of age or older who had crossed over to be numbered, a total of 603,550 men." + }, + { + "verseNum": 27, + "text": "The hundred talents of silver were used to cast the bases of the sanctuary and the bases of the veil—100 bases from the 100 talents, one talent per base." + }, + { + "verseNum": 28, + "text": "With the 1,775 shekels of silver he made the hooks for the posts, overlaid their tops, and supplied bands for them." + }, + { + "verseNum": 29, + "text": "The bronze from the wave offering totaled 70 talents and 2,400 shekels." + }, + { + "verseNum": 30, + "text": "He used it to make the bases for the entrance to the Tent of Meeting, the bronze altar and its bronze grating, all the utensils for the altar," + }, + { + "verseNum": 31, + "text": "the bases for the surrounding courtyard and its gate, and all the tent pegs for the tabernacle and its surrounding courtyard." + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "From the blue, purple, and scarlet yarn they made specially woven garments for ministry in the sanctuary, as well as the holy garments for Aaron, just as the LORD had commanded Moses." + }, + { + "verseNum": 2, + "text": "Bezalel made the ephod of finely spun linen embroidered with gold, and with blue, purple, and scarlet yarn." + }, + { + "verseNum": 3, + "text": "They hammered out thin sheets of gold and cut threads from them to interweave with the blue, purple, and scarlet yarn, and fine linen—the work of a skilled craftsman." + }, + { + "verseNum": 4, + "text": "They made shoulder pieces for the ephod, which were attached at two of its corners, so it could be fastened." + }, + { + "verseNum": 5, + "text": "And the skillfully woven waistband of the ephod was of one piece with the ephod, of the same workmanship—with gold, with blue, purple, and scarlet yarn, and with finely spun linen, just as the LORD had commanded Moses." + }, + { + "verseNum": 6, + "text": "They mounted the onyx stones in gold filigree settings, engraved like a seal with the names of the sons of Israel." + }, + { + "verseNum": 7, + "text": "Then they fastened them on the shoulder pieces of the ephod as memorial stones for the sons of Israel, as the LORD had commanded Moses." + }, + { + "verseNum": 8, + "text": "He made the breastpiece with the same workmanship as the ephod, with gold, with blue, purple, and scarlet yarn, and with finely spun linen." + }, + { + "verseNum": 9, + "text": "It was square when folded over double, a span long and a span wide." + }, + { + "verseNum": 10, + "text": "And they mounted on it four rows of gemstones:\n \n The first row had a ruby, a topaz, and an emerald;" + }, + { + "verseNum": 11, + "text": "the second row had a turquoise, a sapphire, and a diamond;" + }, + { + "verseNum": 12, + "text": "the third row had a jacinth, an agate, and an amethyst;" + }, + { + "verseNum": 13, + "text": "and the fourth row had a beryl, an onyx, and a jasper.\n \nThese stones were mounted in gold filigree settings." + }, + { + "verseNum": 14, + "text": "The twelve stones corresponded to the names of the sons of Israel. Each stone was engraved like a seal with the name of one of the twelve tribes." + }, + { + "verseNum": 15, + "text": "For the breastpiece they made braided chains like cords of pure gold." + }, + { + "verseNum": 16, + "text": "They also made two gold filigree settings and two gold rings, and fastened the two rings to the two corners of the breastpiece." + }, + { + "verseNum": 17, + "text": "Then they fastened the two gold chains to the two gold rings at the corners of the breastpiece," + }, + { + "verseNum": 18, + "text": "and they fastened the other ends of the two chains to the two filigree settings, attaching them to the shoulder pieces of the ephod at the front." + }, + { + "verseNum": 19, + "text": "They made two more gold rings and attached them to the other two corners of the breastpiece, on the inside edge next to the ephod." + }, + { + "verseNum": 20, + "text": "They made two additional gold rings and attached them to the bottom of the two shoulder pieces of the ephod, on its front, near the seam just above its woven waistband." + }, + { + "verseNum": 21, + "text": "Then they tied the rings of the breastpiece to the rings of the ephod with a cord of blue yarn, so that the breastpiece was above the waistband of the ephod and would not swing out from the ephod, just as the LORD had commanded Moses." + }, + { + "verseNum": 22, + "text": "They made the robe of the ephod entirely of blue cloth, the work of a weaver," + }, + { + "verseNum": 23, + "text": "with an opening in the center of the robe like that of a garment, with a collar around the opening so that it would not tear." + }, + { + "verseNum": 24, + "text": "They made pomegranates of blue, purple, and scarlet yarn and finely spun linen on the lower hem of the robe." + }, + { + "verseNum": 25, + "text": "They also made bells of pure gold and attached them around the hem between the pomegranates," + }, + { + "verseNum": 26, + "text": "alternating the bells and pomegranates around the lower hem of the robe to be worn for ministry, just as the LORD had commanded Moses." + }, + { + "verseNum": 27, + "text": "For Aaron and his sons they made tunics of fine linen, the work of a weaver," + }, + { + "verseNum": 28, + "text": "as well as the turban of fine linen, the ornate headbands and undergarments of finely spun linen," + }, + { + "verseNum": 29, + "text": "and the sash of finely spun linen, embroidered with blue, purple, and scarlet yarn, just as the LORD had commanded Moses." + }, + { + "verseNum": 30, + "text": "They also made the plate of the holy crown of pure gold, and they engraved on it, like an inscription on a seal:\n \n HOLY TO THE LORD." + }, + { + "verseNum": 31, + "text": "Then they fastened to it a blue cord to mount it on the turban, just as the LORD had commanded Moses." + }, + { + "verseNum": 32, + "text": "So all the work for the tabernacle, the Tent of Meeting, was completed. The Israelites did everything just as the LORD had commanded Moses." + }, + { + "verseNum": 33, + "text": "Then they brought the tabernacle to Moses:\n \n the tent with all its furnishings, its clasps, its frames, its crossbars, and its posts and bases;" + }, + { + "verseNum": 34, + "text": "the covering of ram skins dyed red, the covering of fine leather, and the veil of the covering;" + }, + { + "verseNum": 35, + "text": "the ark of the Testimony with its poles and the mercy seat;" + }, + { + "verseNum": 36, + "text": "the table with all its utensils and the Bread of the Presence;" + }, + { + "verseNum": 37, + "text": "the pure gold lampstand with its row of lamps and all its utensils, as well as the oil for the light;" + }, + { + "verseNum": 38, + "text": "the gold altar, the anointing oil, the fragrant incense, and the curtain for the entrance to the tent;" + }, + { + "verseNum": 39, + "text": "the bronze altar with its bronze grating, its poles, and all its utensils;\n \n the basin with its stand;" + }, + { + "verseNum": 40, + "text": "the curtains of the courtyard with its posts and bases;\n \n the curtain for the gate of the courtyard, its ropes and tent pegs, and all the equipment for the service of the tabernacle, the Tent of Meeting;" + }, + { + "verseNum": 41, + "text": "and the woven garments for ministering in the sanctuary, both the holy garments for Aaron the priest and the garments for his sons to serve as priests." + }, + { + "verseNum": 42, + "text": "The Israelites had done all the work just as the LORD had commanded Moses." + }, + { + "verseNum": 43, + "text": "And Moses inspected all the work and saw that they had accomplished it just as the LORD had commanded. So Moses blessed them." + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“On the first day of the first month you are to set up the tabernacle, the Tent of Meeting." + }, + { + "verseNum": 3, + "text": "Put the ark of the Testimony in it and screen off the ark with the veil." + }, + { + "verseNum": 4, + "text": "Then bring in the table and set out its arrangement; bring in the lampstand as well, and set up its lamps." + }, + { + "verseNum": 5, + "text": "Place the gold altar of incense in front of the ark of the Testimony, and hang the curtain at the entrance to the tabernacle." + }, + { + "verseNum": 6, + "text": "Place the altar of burnt offering in front of the entrance to the tabernacle, the Tent of Meeting." + }, + { + "verseNum": 7, + "text": "And place the basin between the Tent of Meeting and the altar, and put water in it." + }, + { + "verseNum": 8, + "text": "Set up the surrounding courtyard and hang the curtain for the entrance to the courtyard." + }, + { + "verseNum": 9, + "text": "Take the anointing oil and anoint the tabernacle and everything in it; consecrate it along with all its furnishings, and it shall be holy." + }, + { + "verseNum": 10, + "text": "Anoint the altar of burnt offering and all its utensils; consecrate the altar, and it shall be most holy." + }, + { + "verseNum": 11, + "text": "Anoint the basin and its stand and consecrate them." + }, + { + "verseNum": 12, + "text": "Then bring Aaron and his sons to the entrance to the Tent of Meeting and wash them with water." + }, + { + "verseNum": 13, + "text": "And you are to clothe Aaron with the holy garments, anoint him, and consecrate him, so that he may serve Me as a priest." + }, + { + "verseNum": 14, + "text": "Bring his sons forward and clothe them with tunics." + }, + { + "verseNum": 15, + "text": "Anoint them just as you anointed their father, so that they may also serve Me as priests. Their anointing will qualify them for a permanent priesthood throughout their generations.”" + }, + { + "verseNum": 16, + "text": "Moses did everything just as the LORD had commanded him." + }, + { + "verseNum": 17, + "text": "So the tabernacle was set up on the first day of the first month of the second year." + }, + { + "verseNum": 18, + "text": "When Moses set up the tabernacle, he laid its bases, positioned its frames, inserted its crossbars, and set up its posts." + }, + { + "verseNum": 19, + "text": "Then he spread the tent over the tabernacle and put the covering over the tent, just as the LORD had commanded him." + }, + { + "verseNum": 20, + "text": "Moses took the Testimony and placed it in the ark, attaching the poles to the ark; and he set the mercy seat atop the ark." + }, + { + "verseNum": 21, + "text": "Then he brought the ark into the tabernacle, put up the veil for the screen, and shielded off the ark of the Testimony, just as the LORD had commanded him." + }, + { + "verseNum": 22, + "text": "Moses placed the table in the Tent of Meeting on the north side of the tabernacle, outside the veil." + }, + { + "verseNum": 23, + "text": "He arranged the bread on it before the LORD, just as the LORD had commanded him." + }, + { + "verseNum": 24, + "text": "He also placed the lampstand in the Tent of Meeting opposite the table on the south side of the tabernacle" + }, + { + "verseNum": 25, + "text": "and set up the lamps before the LORD, just as the LORD had commanded him." + }, + { + "verseNum": 26, + "text": "Moses placed the gold altar in the Tent of Meeting, in front of the veil," + }, + { + "verseNum": 27, + "text": "and he burned fragrant incense on it, just as the LORD had commanded him." + }, + { + "verseNum": 28, + "text": "Then he put up the curtain at the entrance to the tabernacle." + }, + { + "verseNum": 29, + "text": "He placed the altar of burnt offering near the entrance to the tabernacle, the Tent of Meeting, and offered on it the burnt offering and the grain offering, just as the LORD had commanded him." + }, + { + "verseNum": 30, + "text": "He placed the basin between the Tent of Meeting and the altar and put water in it for washing;" + }, + { + "verseNum": 31, + "text": "and from it Moses, Aaron, and his sons washed their hands and feet." + }, + { + "verseNum": 32, + "text": "They washed whenever they entered the Tent of Meeting or approached the altar, just as the LORD had commanded Moses." + }, + { + "verseNum": 33, + "text": "And Moses set up the courtyard around the tabernacle and the altar, and he hung the curtain for the entrance to the courtyard. So Moses finished the work." + }, + { + "verseNum": 34, + "text": "Then the cloud covered the Tent of Meeting, and the glory of the LORD filled the tabernacle." + }, + { + "verseNum": 35, + "text": "Moses was unable to enter the Tent of Meeting because the cloud had settled on it, and the glory of the LORD filled the tabernacle." + }, + { + "verseNum": 36, + "text": "Whenever the cloud was lifted from above the tabernacle, the Israelites would set out through all the stages of their journey." + }, + { + "verseNum": 37, + "text": "If the cloud was not lifted, they would not set out until the day it was taken up." + }, + { + "verseNum": 38, + "text": "For the cloud of the LORD was over the tabernacle by day, and fire was in the cloud by night, in the sight of all the house of Israel through all their journeys." + } + ] + } + ] + }, + { + "name": "Leviticus", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD called to Moses and spoke to him from the Tent of Meeting, saying," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and tell them: When any of you brings an offering to the LORD, you may bring as your offering an animal from the herd or the flock." + }, + { + "verseNum": 3, + "text": "If one’s offering is a burnt offering from the herd, he is to present an unblemished male. He must bring it to the entrance to the Tent of Meeting for its acceptance before the LORD." + }, + { + "verseNum": 4, + "text": "He is to lay his hand on the head of the burnt offering, so it can be accepted on his behalf to make atonement for him." + }, + { + "verseNum": 5, + "text": "And he shall slaughter the young bull before the LORD, and Aaron’s sons the priests are to present the blood and sprinkle it on all sides of the altar at the entrance to the Tent of Meeting." + }, + { + "verseNum": 6, + "text": "Next, he is to skin the burnt offering and cut it into pieces." + }, + { + "verseNum": 7, + "text": "The sons of Aaron the priest shall put a fire on the altar and arrange wood on the fire." + }, + { + "verseNum": 8, + "text": "Then Aaron’s sons the priests are to arrange the pieces, including the head and the fat, atop the burning wood on the altar." + }, + { + "verseNum": 9, + "text": "The entrails and legs must be washed with water, and the priest shall burn all of it on the altar as a burnt offering, an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 10, + "text": "If, however, one’s offering is a burnt offering from the flock—from the sheep or goats—he is to present an unblemished male." + }, + { + "verseNum": 11, + "text": "He shall slaughter it on the north side of the altar before the LORD, and Aaron’s sons the priests are to sprinkle its blood against the altar on all sides." + }, + { + "verseNum": 12, + "text": "He is to cut the animal into pieces, and the priest shall arrange them, including the head and fat, atop the burning wood that is on the altar." + }, + { + "verseNum": 13, + "text": "The entrails and legs must be washed with water, and the priest shall bring all of it and burn it on the altar; it is a burnt offering, an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 14, + "text": "If, instead, one’s offering to the LORD is a burnt offering of birds, he is to present a turtledove or a young pigeon." + }, + { + "verseNum": 15, + "text": "Then the priest shall bring it to the altar, twist off its head, and burn it on the altar; its blood should be drained out on the side of the altar." + }, + { + "verseNum": 16, + "text": "And he is to remove the crop with its contents and throw it to the east side of the altar, in the place for ashes." + }, + { + "verseNum": 17, + "text": "He shall tear it open by its wings, without dividing the bird completely. And the priest is to burn it on the altar atop the burning wood. It is a burnt offering, an offering made by fire, a pleasing aroma to the LORD." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "“When anyone brings a grain offering to the LORD, his offering must consist of fine flour. He is to pour olive oil on it, put frankincense on it," + }, + { + "verseNum": 2, + "text": "and bring it to Aaron’s sons the priests. The priest shall take a handful of the flour and oil, together with all the frankincense, and burn this as a memorial portion on the altar, an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 3, + "text": "The remainder of the grain offering shall belong to Aaron and his sons; it is a most holy part of the offerings made by fire to the LORD." + }, + { + "verseNum": 4, + "text": "Now if you bring an offering of grain baked in an oven, it must consist of fine flour, either unleavened cakes mixed with oil or unleavened wafers coated with oil." + }, + { + "verseNum": 5, + "text": "If your offering is a grain offering prepared on a griddle, it must be unleavened bread made of fine flour mixed with oil." + }, + { + "verseNum": 6, + "text": "Crumble it and pour oil on it; it is a grain offering." + }, + { + "verseNum": 7, + "text": "If your offering is a grain offering cooked in a pan, it must consist of fine flour with oil." + }, + { + "verseNum": 8, + "text": "When you bring to the LORD the grain offering made in any of these ways, it is to be presented to the priest, and he shall take it to the altar." + }, + { + "verseNum": 9, + "text": "The priest is to remove the memorial portion from the grain offering and burn it on the altar as an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 10, + "text": "But the remainder of the grain offering shall belong to Aaron and his sons; it is a most holy part of the offerings made by fire to the LORD." + }, + { + "verseNum": 11, + "text": "No grain offering that you present to the LORD may be made with leaven, for you are not to burn any leaven or honey as an offering made by fire to the LORD." + }, + { + "verseNum": 12, + "text": "You may bring them to the LORD as an offering of firstfruits, but they are not to be offered on the altar as a pleasing aroma." + }, + { + "verseNum": 13, + "text": "And you shall season each of your grain offerings with salt. You must not leave the salt of the covenant of your God out of your grain offering; you are to add salt to each of your offerings." + }, + { + "verseNum": 14, + "text": "If you bring a grain offering of firstfruits to the LORD, you shall offer crushed heads of new grain roasted on the fire." + }, + { + "verseNum": 15, + "text": "And you are to put oil and frankincense on it; it is a grain offering." + }, + { + "verseNum": 16, + "text": "The priest shall then burn the memorial portion of the crushed grain and the oil, together with all its frankincense, as an offering made by fire to the LORD." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "“If one’s offering is a peace offering and he offers an animal from the herd, whether male or female, he must present it without blemish before the LORD." + }, + { + "verseNum": 2, + "text": "He is to lay his hand on the head of the offering and slaughter it at the entrance to the Tent of Meeting. Then Aaron’s sons the priests shall sprinkle the blood on all sides of the altar." + }, + { + "verseNum": 3, + "text": "From the peace offering he is to bring an offering made by fire to the LORD: the fat that covers the entrails, all the fat that is on them," + }, + { + "verseNum": 4, + "text": "both kidneys with the fat on them near the loins, and the lobe of the liver, which he is to remove with the kidneys." + }, + { + "verseNum": 5, + "text": "Then Aaron’s sons are to burn it on the altar atop the burnt offering that is on the burning wood, as an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 6, + "text": "If, however, one’s peace offering to the LORD is from the flock, he must present a male or female without blemish." + }, + { + "verseNum": 7, + "text": "If he is presenting a lamb for his offering, he must present it before the LORD." + }, + { + "verseNum": 8, + "text": "He is to lay his hand on the head of his offering and slaughter it in front of the Tent of Meeting. Then Aaron’s sons shall sprinkle its blood on all sides of the altar." + }, + { + "verseNum": 9, + "text": "And from the peace offering he shall bring an offering made by fire to the LORD consisting of its fat: the entire fat tail cut off close to the backbone, the fat that covers the entrails, all the fat that is on them," + }, + { + "verseNum": 10, + "text": "both kidneys with the fat on them near the loins, and the lobe of the liver, which he is to remove with the kidneys." + }, + { + "verseNum": 11, + "text": "Then the priest is to burn them on the altar as food, an offering made by fire to the LORD." + }, + { + "verseNum": 12, + "text": "If one’s offering is a goat, he is to present it before the LORD." + }, + { + "verseNum": 13, + "text": "He must lay his hand on its head and slaughter it in front of the Tent of Meeting. Then Aaron’s sons shall sprinkle its blood on all sides of the altar." + }, + { + "verseNum": 14, + "text": "And from his offering he shall present an offering made by fire to the LORD: the fat that covers the entrails, all the fat that is on them," + }, + { + "verseNum": 15, + "text": "both kidneys with the fat on them near the loins, and the lobe of the liver, which he is to remove with the kidneys." + }, + { + "verseNum": 16, + "text": "Then the priest is to burn the food on the altar as an offering made by fire, a pleasing aroma. All the fat is the LORD’s." + }, + { + "verseNum": 17, + "text": "This is a permanent statute for the generations to come, wherever you live: You must not eat any fat or any blood.”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Tell the Israelites to do as follows with one who sins unintentionally against any of the LORD’s commandments and does what is forbidden by them:" + }, + { + "verseNum": 3, + "text": "If the anointed priest sins, bringing guilt on the people, he must bring to the LORD a young bull without blemish as a sin offering for the sin he has committed." + }, + { + "verseNum": 4, + "text": "He must bring the bull to the entrance to the Tent of Meeting before the LORD, lay his hand on the bull’s head, and slaughter it before the LORD." + }, + { + "verseNum": 5, + "text": "Then the anointed priest shall take some of the bull’s blood and bring it into the Tent of Meeting." + }, + { + "verseNum": 6, + "text": "The priest is to dip his finger in the blood and sprinkle some of it seven times before the LORD, in front of the veil of the sanctuary." + }, + { + "verseNum": 7, + "text": "The priest must then put some of the blood on the horns of the altar of fragrant incense that is before the LORD in the Tent of Meeting. And he is to pour out the rest of the bull’s blood at the base of the altar of burnt offering at the entrance to the Tent of Meeting." + }, + { + "verseNum": 8, + "text": "Then he shall remove all the fat from the bull of the sin offering—the fat that covers the entrails, all the fat that is on them," + }, + { + "verseNum": 9, + "text": "both kidneys with the fat on them near the loins, and the lobe of the liver, which he is to remove with the kidneys—" + }, + { + "verseNum": 10, + "text": "just as the fat is removed from the ox of the peace offering. Then the priest shall burn them on the altar of burnt offering." + }, + { + "verseNum": 11, + "text": "But the hide of the bull and all its flesh, with its head and legs and its entrails and dung—" + }, + { + "verseNum": 12, + "text": "all the rest of the bull—he must take outside the camp to a ceremonially clean place where the ashes are poured out, and there he must burn it on a wood fire on the ash heap." + }, + { + "verseNum": 13, + "text": "Now if the whole congregation of Israel strays unintentionally and the matter escapes the notice of the assembly so that they violate any of the LORD’s commandments and incur guilt by doing what is forbidden," + }, + { + "verseNum": 14, + "text": "when they become aware of the sin they have committed, then the assembly must bring a young bull as a sin offering and present it before the Tent of Meeting." + }, + { + "verseNum": 15, + "text": "The elders of the congregation are to lay their hands on the bull’s head before the LORD, and it shall be slaughtered before the LORD." + }, + { + "verseNum": 16, + "text": "Then the anointed priest is to bring some of the bull’s blood into the Tent of Meeting," + }, + { + "verseNum": 17, + "text": "and he is to dip his finger in the blood and sprinkle it seven times before the LORD in front of the veil." + }, + { + "verseNum": 18, + "text": "He is also to put some of the blood on the horns of the altar that is before the LORD in the Tent of Meeting, and he must pour out the rest of the blood at the base of the altar of burnt offering at the entrance to the Tent of Meeting." + }, + { + "verseNum": 19, + "text": "And he is to remove all the fat from it and burn it on the altar." + }, + { + "verseNum": 20, + "text": "He shall offer this bull just as he did the bull for the sin offering; in this way the priest will make atonement on their behalf, and they will be forgiven." + }, + { + "verseNum": 21, + "text": "Then he is to take the bull outside the camp and burn it, just as he burned the first bull. It is the sin offering for the assembly." + }, + { + "verseNum": 22, + "text": "When a leader sins unintentionally and does what is prohibited by any of the commandments of the LORD his God, he incurs guilt." + }, + { + "verseNum": 23, + "text": "When he becomes aware of the sin he has committed, he must bring an unblemished male goat as his offering." + }, + { + "verseNum": 24, + "text": "He is to lay his hand on the head of the goat and slaughter it at the place where the burnt offering is slaughtered before the LORD. It is a sin offering." + }, + { + "verseNum": 25, + "text": "Then the priest is to take some of the blood of the sin offering with his finger, put it on the horns of the altar of burnt offering, and pour out the rest of the blood at the base of the altar." + }, + { + "verseNum": 26, + "text": "He must burn all its fat on the altar, like the fat of the peace offerings; thus the priest will make atonement for that man’s sin, and he will be forgiven." + }, + { + "verseNum": 27, + "text": "And if one of the common people sins unintentionally and does what is prohibited by any of the LORD’s commandments, he incurs guilt." + }, + { + "verseNum": 28, + "text": "When he becomes aware of the sin he has committed, he must bring an unblemished female goat as his offering for that sin." + }, + { + "verseNum": 29, + "text": "He is to lay his hand on the head of the sin offering and slaughter it at the place of the burnt offering." + }, + { + "verseNum": 30, + "text": "Then the priest is to take some of its blood with his finger, put it on the horns of the altar of burnt offering, and pour out the rest of the blood at the base of the altar." + }, + { + "verseNum": 31, + "text": "Then he is to remove all the fat, just as it is removed from the peace offering, and the priest is to burn it on the altar as a pleasing aroma to the LORD. In this way the priest will make atonement for him, and he will be forgiven." + }, + { + "verseNum": 32, + "text": "If, however, he brings a lamb as a sin offering, he must bring an unblemished female." + }, + { + "verseNum": 33, + "text": "And he is to lay his hand on the head of the sin offering and slaughter it as a sin offering at the place where the burnt offering is slaughtered." + }, + { + "verseNum": 34, + "text": "Then the priest is to take some of the blood of the sin offering with his finger, put it on the horns of the altar of burnt offering, and pour out the rest of its blood at the base of the altar." + }, + { + "verseNum": 35, + "text": "And he shall remove all the fat, just as the fat of the lamb is removed from the peace offerings, and he shall burn it on the altar along with the offerings made by fire to the LORD. In this way the priest will make atonement for him for the sin he has committed, and he will be forgiven." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "“If someone sins by failing to testify when he hears a public charge about something he has witnessed, whether he has seen it or learned of it, he shall bear the iniquity." + }, + { + "verseNum": 2, + "text": "Or if a person touches anything unclean—whether the carcass of any unclean wild animal or livestock or crawling creature—even if he is unaware of it, he is unclean and guilty." + }, + { + "verseNum": 3, + "text": "Or if he touches human uncleanness—anything by which one becomes unclean—even if he is unaware of it, when he realizes it, he is guilty." + }, + { + "verseNum": 4, + "text": "Or if someone swears thoughtlessly with his lips to do anything good or evil—in whatever matter a man may rashly pronounce an oath—even if he is unaware of it, when he realizes it, he is guilty in the matter." + }, + { + "verseNum": 5, + "text": "If someone incurs guilt in one of these ways, he must confess the sin he has committed," + }, + { + "verseNum": 6, + "text": "and he must bring his guilt offering to the LORD for the sin he has committed: a female lamb or goat from the flock as a sin offering. And the priest will make atonement for him concerning his sin." + }, + { + "verseNum": 7, + "text": "If, however, he cannot afford a lamb, he may bring to the LORD as restitution for his sin two turtledoves or two young pigeons—one as a sin offering and the other as a burnt offering." + }, + { + "verseNum": 8, + "text": "He is to bring them to the priest, who shall first present the one for the sin offering. He is to twist its head at the front of its neck without severing it;" + }, + { + "verseNum": 9, + "text": "then he is to sprinkle some of the blood of the sin offering on the side of the altar, while the rest of the blood is drained out at the base of the altar. It is a sin offering." + }, + { + "verseNum": 10, + "text": "And the priest must prepare the second bird as a burnt offering according to the ordinance. In this way the priest will make atonement for him for the sin he has committed, and he will be forgiven." + }, + { + "verseNum": 11, + "text": "But if he cannot afford two turtledoves or two young pigeons, he may bring a tenth of an ephah of fine flour as a sin offering. He must not put olive oil or frankincense on it, because it is a sin offering." + }, + { + "verseNum": 12, + "text": "He is to bring it to the priest, who shall take a handful from it as a memorial portion and burn it on the altar atop the offerings made by fire to the LORD; it is a sin offering." + }, + { + "verseNum": 13, + "text": "In this way the priest will make atonement for him for any of these sins he has committed, and he will be forgiven. The remainder will belong to the priest, like the grain offering.”" + }, + { + "verseNum": 14, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 15, + "text": "“If someone acts unfaithfully and sins unintentionally against any of the LORD’s holy things, he must bring his guilt offering to the LORD: an unblemished ram from the flock, of proper value in silver shekels according to the sanctuary shekel; it is a guilt offering." + }, + { + "verseNum": 16, + "text": "Regarding any holy thing he has harmed, he must make restitution by adding a fifth of its value to it and giving it to the priest, who will make atonement on his behalf with the ram as a guilt offering, and he will be forgiven." + }, + { + "verseNum": 17, + "text": "If someone sins and violates any of the LORD’s commandments even though he was unaware, he is guilty and shall bear his punishment." + }, + { + "verseNum": 18, + "text": "He is to bring to the priest an unblemished ram of proper value from the flock as a guilt offering. Then the priest will make atonement on his behalf for the wrong he has committed in ignorance, and he will be forgiven." + }, + { + "verseNum": 19, + "text": "It is a guilt offering; he was certainly guilty before the LORD.”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“If someone sins and acts unfaithfully against the LORD by deceiving his neighbor in regard to a deposit or security entrusted to him or stolen, or if he extorts his neighbor" + }, + { + "verseNum": 3, + "text": "or finds lost property and lies about it and swears falsely, or if he commits any such sin that a man might commit—" + }, + { + "verseNum": 4, + "text": "once he has sinned and becomes guilty, he must return what he has stolen or taken by extortion, or the deposit entrusted to him, or the lost property he found," + }, + { + "verseNum": 5, + "text": "or anything else about which he has sworn falsely.\n \nHe must make restitution in full, add a fifth of the value, and pay it to the owner on the day he acknowledges his guilt." + }, + { + "verseNum": 6, + "text": "Then he must bring to the priest his guilt offering to the LORD: an unblemished ram of proper value from the flock." + }, + { + "verseNum": 7, + "text": "In this way the priest will make atonement for him before the LORD, and he will be forgiven for anything he may have done to incur guilt.”" + }, + { + "verseNum": 8, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 9, + "text": "“Command Aaron and his sons that this is the law of the burnt offering: The burnt offering is to remain on the hearth of the altar all night, until morning, and the fire must be kept burning on the altar." + }, + { + "verseNum": 10, + "text": "And the priest shall put on his linen robe and linen undergarments, and he shall remove from the altar the ashes of the burnt offering that the fire has consumed and place them beside it." + }, + { + "verseNum": 11, + "text": "Then he must take off his garments, put on other clothes, and carry the ashes outside the camp to a ceremonially clean place." + }, + { + "verseNum": 12, + "text": "The fire on the altar shall be kept burning; it must not be extinguished. Every morning the priest is to add wood to the fire, arrange the burnt offering on it, and burn the fat portions of the peace offerings on it." + }, + { + "verseNum": 13, + "text": "The fire shall be kept burning on the altar continually; it must not be extinguished." + }, + { + "verseNum": 14, + "text": "Now this is the law of the grain offering: Aaron’s sons shall present it before the LORD in front of the altar." + }, + { + "verseNum": 15, + "text": "The priest is to remove a handful of fine flour and olive oil, together with all the frankincense from the grain offering, and burn the memorial portion on the altar as a pleasing aroma to the LORD." + }, + { + "verseNum": 16, + "text": "Aaron and his sons are to eat the remainder. It must be eaten without leaven in a holy place; they are to eat it in the courtyard of the Tent of Meeting." + }, + { + "verseNum": 17, + "text": "It must not be baked with leaven; I have assigned it as their portion of My offerings made by fire. It is most holy, like the sin offering and the guilt offering." + }, + { + "verseNum": 18, + "text": "Any male among the sons of Aaron may eat it. This is a permanent portion from the offerings made by fire to the LORD for the generations to come. Anything that touches them will become holy.”" + }, + { + "verseNum": 19, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 20, + "text": "“This is the offering that Aaron and his sons must present to the LORD on the day he is anointed: a tenth of an ephah of fine flour as a regular grain offering, half of it in the morning and half in the evening." + }, + { + "verseNum": 21, + "text": "It shall be prepared with oil on a griddle; you are to bring it well-kneaded and present it as a grain offering broken in pieces, a pleasing aroma to the LORD." + }, + { + "verseNum": 22, + "text": "The priest, who is one of Aaron’s sons and will be anointed to take his place, is to prepare it. As a permanent portion for the LORD, it must be burned completely." + }, + { + "verseNum": 23, + "text": "Every grain offering for a priest shall be burned completely; it is not to be eaten.”" + }, + { + "verseNum": 24, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 25, + "text": "“Tell Aaron and his sons that this is the law of the sin offering: In the place where the burnt offering is slaughtered, the sin offering shall be slaughtered before the LORD; it is most holy." + }, + { + "verseNum": 26, + "text": "The priest who offers it shall eat it; it must be eaten in a holy place, in the courtyard of the Tent of Meeting." + }, + { + "verseNum": 27, + "text": "Anything that touches its flesh will become holy, and if any of the blood is spattered on a garment, you must wash it in a holy place." + }, + { + "verseNum": 28, + "text": "The clay pot in which the sin offering is boiled must be broken; if it is boiled in a bronze pot, the pot must be scoured and rinsed with water." + }, + { + "verseNum": 29, + "text": "Any male among the priests may eat it; it is most holy." + }, + { + "verseNum": 30, + "text": "But no sin offering may be eaten if its blood has been brought into the Tent of Meeting to make atonement in the Holy Place; it must be burned." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "“Now this is the law of the guilt offering, which is most holy:" + }, + { + "verseNum": 2, + "text": "The guilt offering must be slaughtered in the place where the burnt offering is slaughtered, and the priest shall sprinkle its blood on all sides of the altar." + }, + { + "verseNum": 3, + "text": "And all the fat from it shall be offered: the fat tail, the fat that covers the entrails," + }, + { + "verseNum": 4, + "text": "both kidneys with the fat on them near the loins, and the lobe of the liver, which is to be removed with the kidneys." + }, + { + "verseNum": 5, + "text": "The priest shall burn them on the altar as an offering made by fire to the LORD; it is a guilt offering." + }, + { + "verseNum": 6, + "text": "Every male among the priests may eat of it. It must be eaten in a holy place; it is most holy." + }, + { + "verseNum": 7, + "text": "The guilt offering is like the sin offering; the same law applies to both. It belongs to the priest who makes atonement with it." + }, + { + "verseNum": 8, + "text": "As for the priest who presents a burnt offering for anyone, the hide of that offering belongs to him." + }, + { + "verseNum": 9, + "text": "Likewise, every grain offering that is baked in an oven or cooked in a pan or on a griddle belongs to the priest who presents it," + }, + { + "verseNum": 10, + "text": "and every grain offering, whether dry or mixed with oil, belongs equally to all the sons of Aaron." + }, + { + "verseNum": 11, + "text": "Now this is the law of the peace offering that one may present to the LORD:" + }, + { + "verseNum": 12, + "text": "If he offers it in thanksgiving, then along with the sacrifice of thanksgiving he shall offer unleavened cakes mixed with olive oil, unleavened wafers coated with oil, and well-kneaded cakes of fine flour mixed with oil." + }, + { + "verseNum": 13, + "text": "Along with his peace offering of thanksgiving he is to present an offering with cakes of leavened bread." + }, + { + "verseNum": 14, + "text": "From the cakes he must present one portion of each offering as a contribution to the LORD. It belongs to the priest who sprinkles the blood of the peace offering." + }, + { + "verseNum": 15, + "text": "The meat of the sacrifice of his peace offering of thanksgiving must be eaten on the day he offers it; none of it may be left until morning." + }, + { + "verseNum": 16, + "text": "If, however, the sacrifice he offers is a vow or a freewill offering, it shall be eaten on the day he presents his sacrifice, but the remainder may be eaten on the next day." + }, + { + "verseNum": 17, + "text": "But any meat of the sacrifice remaining until the third day must be burned up." + }, + { + "verseNum": 18, + "text": "If any of the meat from his peace offering is eaten on the third day, it will not be accepted. It will not be credited to the one who presented it; it shall be an abomination, and the one who eats of it shall bear his iniquity." + }, + { + "verseNum": 19, + "text": "Meat that touches anything unclean must not be eaten; it is to be burned up. As for any other meat, anyone who is ceremonially clean may eat it." + }, + { + "verseNum": 20, + "text": "But if anyone who is unclean eats meat from the peace offering that belongs to the LORD, that person must be cut off from his people." + }, + { + "verseNum": 21, + "text": "If one touches anything unclean, whether human uncleanness, an unclean animal, or any unclean, detestable thing, and then eats any of the meat of the peace offering that belongs to the LORD, that person must be cut off from his people.”" + }, + { + "verseNum": 22, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 23, + "text": "“Speak to the Israelites and say, ‘You are not to eat any of the fat of an ox, a sheep, or a goat." + }, + { + "verseNum": 24, + "text": "The fat of an animal found dead or mauled by wild beasts may be used for any other purpose, but you must not eat it." + }, + { + "verseNum": 25, + "text": "If anyone eats the fat of an animal from which an offering made by fire may be presented to the LORD, the one who eats it must be cut off from his people." + }, + { + "verseNum": 26, + "text": "You must not eat the blood of any bird or animal in any of your dwellings." + }, + { + "verseNum": 27, + "text": "If anyone eats blood, that person must be cut off from his people.’”" + }, + { + "verseNum": 28, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 29, + "text": "“Speak to the Israelites and say, ‘Anyone who presents a peace offering to the LORD must bring it as his sacrifice to the LORD." + }, + { + "verseNum": 30, + "text": "With his own hands he is to bring the offerings made by fire to the LORD; he shall bring the fat, together with the breast, and wave the breast as a wave offering before the LORD." + }, + { + "verseNum": 31, + "text": "The priest is to burn the fat on the altar, but the breast belongs to Aaron and his sons." + }, + { + "verseNum": 32, + "text": "And you are to give the right thigh to the priest as a contribution from your peace offering." + }, + { + "verseNum": 33, + "text": "The son of Aaron who presents the blood and fat of the peace offering shall have the right thigh as a portion." + }, + { + "verseNum": 34, + "text": "I have taken from the sons of Israel the breast of the wave offering and the thigh of the contribution of their peace offerings, and I have given them to Aaron the priest and his sons as a permanent portion from the sons of Israel.’”" + }, + { + "verseNum": 35, + "text": "This is the portion of the offerings made by fire to the LORD for Aaron and his sons since the day they were presented to serve the LORD as priests." + }, + { + "verseNum": 36, + "text": "On the day they were anointed, the LORD commanded that this be given them by the sons of Israel. It is a permanent portion for the generations to come." + }, + { + "verseNum": 37, + "text": "This is the law of the burnt offering, the grain offering, the sin offering, the guilt offering, the ordination offering, and the peace offering," + }, + { + "verseNum": 38, + "text": "which the LORD gave Moses on Mount Sinai on the day He commanded the Israelites to present their offerings to the LORD in the Wilderness of Sinai." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Take Aaron and his sons, their garments, the anointing oil, the bull of the sin offering, the two rams, and the basket of unleavened bread," + }, + { + "verseNum": 3, + "text": "and assemble the whole congregation at the entrance to the Tent of Meeting.”" + }, + { + "verseNum": 4, + "text": "So Moses did as the LORD had commanded him, and the assembly gathered at the entrance to the Tent of Meeting." + }, + { + "verseNum": 5, + "text": "And Moses said to them, “This is what the LORD has commanded to be done.”" + }, + { + "verseNum": 6, + "text": "Then Moses presented Aaron and his sons and washed them with water." + }, + { + "verseNum": 7, + "text": "He put the tunic on Aaron, tied the sash around him, clothed him with the robe, and put the ephod on him. He tied the woven band of the ephod around him and fastened it to him." + }, + { + "verseNum": 8, + "text": "Then he put the breastpiece on him and placed the Urim and Thummim in the breastpiece." + }, + { + "verseNum": 9, + "text": "Moses also put the turban on Aaron’s head and set the gold plate, the holy diadem, on the front of the turban, as the LORD had commanded him." + }, + { + "verseNum": 10, + "text": "Next, Moses took the anointing oil and anointed the tabernacle and everything in it; and so he consecrated them." + }, + { + "verseNum": 11, + "text": "He sprinkled some of the oil on the altar seven times, anointing the altar and all its utensils, and the basin with its stand, to consecrate them." + }, + { + "verseNum": 12, + "text": "He also poured some of the anointing oil on Aaron’s head and anointed him to consecrate him." + }, + { + "verseNum": 13, + "text": "Then Moses presented Aaron’s sons, put tunics on them, wrapped sashes around them, and tied headbands on them, just as the LORD had commanded him." + }, + { + "verseNum": 14, + "text": "Moses then brought the bull near for the sin offering, and Aaron and his sons laid their hands on its head." + }, + { + "verseNum": 15, + "text": "Moses slaughtered the bull, took some of the blood, and applied it with his finger to all four horns of the altar, purifying the altar. He poured out the rest of the blood at the base of the altar and consecrated it so that atonement could be made on it." + }, + { + "verseNum": 16, + "text": "Moses also took all the fat that was on the entrails, the lobe of the liver, and both kidneys and their fat, and burned it all on the altar." + }, + { + "verseNum": 17, + "text": "But the bull with its hide, flesh, and dung he burned outside the camp, as the LORD had commanded him." + }, + { + "verseNum": 18, + "text": "Then Moses presented the ram for the burnt offering, and Aaron and his sons laid their hands on its head." + }, + { + "verseNum": 19, + "text": "Moses slaughtered the ram and sprinkled the blood on all sides of the altar." + }, + { + "verseNum": 20, + "text": "He cut the ram into pieces and burned the head, the pieces, and the fat." + }, + { + "verseNum": 21, + "text": "He washed the entrails and legs with water and burned the entire ram on the altar as a burnt offering, a pleasing aroma, an offering made by fire to the LORD, just as the LORD had commanded Moses." + }, + { + "verseNum": 22, + "text": "After that, Moses presented the other ram, the ram of ordination, and Aaron and his sons laid their hands on its head." + }, + { + "verseNum": 23, + "text": "Moses slaughtered the ram and took some of its blood and put it on Aaron’s right earlobe, on the thumb of his right hand, and on the big toe of his right foot." + }, + { + "verseNum": 24, + "text": "Moses also presented Aaron’s sons and put some of the blood on their right earlobes, on the thumbs of their right hands, and on the big toes of their right feet. Then he sprinkled the blood on all sides of the altar." + }, + { + "verseNum": 25, + "text": "And Moses took the fat—the fat tail, all the fat that was on the entrails, the lobe of the liver, and both kidneys with their fat—as well as the right thigh." + }, + { + "verseNum": 26, + "text": "And from the basket of unleavened bread that was before the LORD, he took one cake of unleavened bread, one cake of bread made with oil, and one wafer, and he placed them on the fat portions and on the right thigh." + }, + { + "verseNum": 27, + "text": "He put all these in the hands of Aaron and his sons and waved them before the LORD as a wave offering." + }, + { + "verseNum": 28, + "text": "Then Moses took these from their hands and burned them on the altar with the burnt offering. This was an ordination offering, a pleasing aroma, an offering made by fire to the LORD." + }, + { + "verseNum": 29, + "text": "He also took the breast—Moses’ portion of the ram of ordination—and waved it before the LORD as a wave offering, as the LORD had commanded him." + }, + { + "verseNum": 30, + "text": "Next, Moses took some of the anointing oil and some of the blood that was on the altar and sprinkled them on Aaron and his garments, and on his sons and their garments. So he consecrated Aaron and his garments, as well as Aaron’s sons and their garments." + }, + { + "verseNum": 31, + "text": "And Moses said to Aaron and his sons, “Boil the meat at the entrance to the Tent of Meeting and eat it there with the bread that is in the basket of ordination offerings, as I commanded, saying, ‘Aaron and his sons are to eat it.’" + }, + { + "verseNum": 32, + "text": "Then you must burn up the remainder of the meat and bread." + }, + { + "verseNum": 33, + "text": "You must not go outside the entrance to the Tent of Meeting for seven days, until the days of your ordination are complete; for it will take seven days to ordain you." + }, + { + "verseNum": 34, + "text": "What has been done today has been commanded by the LORD in order to make atonement on your behalf." + }, + { + "verseNum": 35, + "text": "You must remain at the entrance to the Tent of Meeting day and night for seven days and keep the LORD’s charge so that you will not die, for this is what I have been commanded.”" + }, + { + "verseNum": 36, + "text": "So Aaron and his sons did everything the LORD had commanded through Moses." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "On the eighth day Moses summoned Aaron and his sons and the elders of Israel." + }, + { + "verseNum": 2, + "text": "He said to Aaron, “Take for yourself a young bull for a sin offering and a ram for a burnt offering, both without blemish, and present them before the LORD." + }, + { + "verseNum": 3, + "text": "Then speak to the Israelites and say, ‘Take a male goat for a sin offering, a calf and a lamb—both a year old and without blemish—for a burnt offering," + }, + { + "verseNum": 4, + "text": "an ox and a ram for a peace offering to sacrifice before the LORD, and a grain offering mixed with oil. For today the LORD will appear to you.’”" + }, + { + "verseNum": 5, + "text": "So they took what Moses had commanded to the front of the Tent of Meeting, and the whole congregation drew near and stood before the LORD." + }, + { + "verseNum": 6, + "text": "And Moses said, “This is what the LORD has commanded you to do, so that the glory of the LORD may appear to you.”" + }, + { + "verseNum": 7, + "text": "Then Moses said to Aaron, “Approach the altar and sacrifice your sin offering and your burnt offering to make atonement for yourself and for the people. And sacrifice the people’s offering to make atonement for them, as the LORD has commanded.”" + }, + { + "verseNum": 8, + "text": "So Aaron approached the altar and slaughtered the calf as a sin offering for himself." + }, + { + "verseNum": 9, + "text": "The sons of Aaron brought the blood to him, and he dipped his finger in the blood and applied it to the horns of the altar. And he poured out the rest of the blood at the base of the altar." + }, + { + "verseNum": 10, + "text": "On the altar he burned the fat, the kidneys, and the lobe of the liver from the sin offering, as the LORD had commanded Moses." + }, + { + "verseNum": 11, + "text": "But he burned up the flesh and the hide outside the camp." + }, + { + "verseNum": 12, + "text": "Then Aaron slaughtered the burnt offering. His sons brought him the blood, and he sprinkled it on all sides of the altar." + }, + { + "verseNum": 13, + "text": "They brought him the burnt offering piece by piece, including the head, and he burned them on the altar." + }, + { + "verseNum": 14, + "text": "He washed the entrails and the legs and burned them atop the burnt offering on the altar." + }, + { + "verseNum": 15, + "text": "Aaron then presented the people’s offering. He took the male goat for the people’s sin offering, slaughtered it, and offered it for sin like the first one." + }, + { + "verseNum": 16, + "text": "He presented the burnt offering and offered it according to the ordinance." + }, + { + "verseNum": 17, + "text": "Next he presented the grain offering, took a handful of it, and burned it on the altar in addition to the morning’s burnt offering." + }, + { + "verseNum": 18, + "text": "Then he slaughtered the ox and the ram as the people’s peace offering. His sons brought him the blood, and he sprinkled it on all sides of the altar." + }, + { + "verseNum": 19, + "text": "They also brought the fat portions from the ox and the ram—the fat tail, the fat covering the entrails, the kidneys, and the lobe of the liver—" + }, + { + "verseNum": 20, + "text": "and placed these on the breasts. Aaron burned the fat portions on the altar," + }, + { + "verseNum": 21, + "text": "but he waved the breasts and the right thigh as a wave offering before the LORD, as Moses had commanded." + }, + { + "verseNum": 22, + "text": "Aaron lifted up his hands toward the people and blessed them. And having made the sin offering, the burnt offering, and the peace offering, he stepped down." + }, + { + "verseNum": 23, + "text": "Moses and Aaron then entered the Tent of Meeting. When they came out, they blessed the people, and the glory of the LORD appeared to all the people." + }, + { + "verseNum": 24, + "text": "Fire came out from the presence of the LORD and consumed the burnt offering and the fat portions on the altar. And when all the people saw it, they shouted for joy and fell facedown." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now Aaron’s sons Nadab and Abihu took their censers, put fire in them and added incense, and offered unauthorized fire before the LORD, contrary to His command." + }, + { + "verseNum": 2, + "text": "So fire came out from the presence of the LORD and consumed them, and they died in the presence of the LORD." + }, + { + "verseNum": 3, + "text": "Then Moses said to Aaron, “This is what the LORD meant when He said:\n \n ‘To those who come near Me\n I will show My holiness,\n and in the sight of all the people\n I will reveal My glory.’”\n \nBut Aaron remained silent." + }, + { + "verseNum": 4, + "text": "Moses summoned Mishael and Elzaphan, sons of Aaron’s uncle Uzziel, and said to them, “Come here; carry the bodies of your cousins outside the camp, away from the front of the sanctuary.”" + }, + { + "verseNum": 5, + "text": "So they came forward and carried them, still in their tunics, outside the camp, as Moses had directed." + }, + { + "verseNum": 6, + "text": "Then Moses said to Aaron and his sons Eleazar and Ithamar, “Do not let your hair become disheveled and do not tear your garments, or else you will die, and the LORD will be angry with the whole congregation. But your brothers, the whole house of Israel, may mourn on account of the fire that the LORD has ignited." + }, + { + "verseNum": 7, + "text": "You shall not go outside the entrance to the Tent of Meeting, or you will die, for the LORD’s anointing oil is on you.”\n \nSo they did as Moses instructed." + }, + { + "verseNum": 8, + "text": "Then the LORD said to Aaron," + }, + { + "verseNum": 9, + "text": "“You and your sons are not to drink wine or strong drink when you enter the Tent of Meeting, or else you will die; this is a permanent statute for the generations to come." + }, + { + "verseNum": 10, + "text": "You must distinguish between the holy and the common, between the clean and the unclean," + }, + { + "verseNum": 11, + "text": "so that you may teach the Israelites all the statutes that the LORD has given them through Moses.”" + }, + { + "verseNum": 12, + "text": "And Moses said to Aaron and his remaining sons, Eleazar and Ithamar, “Take the grain offering that remains from the offerings made by fire to the LORD and eat it without leaven beside the altar, because it is most holy." + }, + { + "verseNum": 13, + "text": "You shall eat it in a holy place, because it is your share and your sons’ share of the offerings made by fire to the LORD; for this is what I have been commanded." + }, + { + "verseNum": 14, + "text": "And you and your sons and daughters may eat the breast of the wave offering and the thigh of the contribution in a ceremonially clean place, because these portions have been assigned to you and your children from the peace offerings of the sons of Israel." + }, + { + "verseNum": 15, + "text": "They are to bring the thigh of the contribution and the breast of the wave offering, together with the fat portions of the offerings made by fire, to wave as a wave offering before the LORD. It will belong permanently to you and your children, as the LORD has commanded.”" + }, + { + "verseNum": 16, + "text": "Later, Moses searched carefully for the goat of the sin offering, and behold, it had been burned up. He was angry with Eleazar and Ithamar, Aaron’s remaining sons, and asked," + }, + { + "verseNum": 17, + "text": "“Why didn’t you eat the sin offering in the holy place? For it is most holy; it was given to you to take away the guilt of the congregation by making atonement for them before the LORD." + }, + { + "verseNum": 18, + "text": "Since its blood was not brought inside the holy place, you should have eaten it in the sanctuary area, as I commanded.”" + }, + { + "verseNum": 19, + "text": "But Aaron replied to Moses, “Behold, this very day they presented their sin offering and their burnt offering before the LORD. Since these things have happened to me, if I had eaten the sin offering today, would it have been acceptable in the sight of the LORD?”" + }, + { + "verseNum": 20, + "text": "And when Moses heard this explanation, he was satisfied." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "The LORD spoke again to Moses and Aaron, telling them," + }, + { + "verseNum": 2, + "text": "“Say to the Israelites, ‘Of all the beasts of the earth, these ones you may eat:" + }, + { + "verseNum": 3, + "text": "You may eat any animal that has a split hoof completely divided and that chews the cud." + }, + { + "verseNum": 4, + "text": "But of those that only chew the cud or only have a divided hoof, you are not to eat the following:\n \n The camel, though it chews the cud, does not have a divided hoof; it is unclean for you." + }, + { + "verseNum": 5, + "text": "The rock badger, though it chews the cud, does not have a divided hoof; it is unclean for you." + }, + { + "verseNum": 6, + "text": "The rabbit, though it chews the cud, does not have a divided hoof; it is unclean for you." + }, + { + "verseNum": 7, + "text": "And the pig, though it has a split hoof completely divided, does not chew the cud; it is unclean for you." + }, + { + "verseNum": 8, + "text": "You must not eat their meat or touch their carcasses; they are unclean for you." + }, + { + "verseNum": 9, + "text": "Of all the creatures that live in the water, whether in the seas or in the streams, you may eat anything with fins and scales." + }, + { + "verseNum": 10, + "text": "But the following among all the teeming life and creatures in the water are detestable to you: everything in the seas or streams that does not have fins and scales." + }, + { + "verseNum": 11, + "text": "They shall be an abomination to you; you must not eat their meat, and you must detest their carcasses." + }, + { + "verseNum": 12, + "text": "Everything in the water that does not have fins and scales shall be detestable to you." + }, + { + "verseNum": 13, + "text": "Additionally, you are to detest the following birds, and they must not be eaten because they are detestable:\n \n the eagle, the bearded vulture, the black vulture," + }, + { + "verseNum": 14, + "text": "the kite, any kind of falcon," + }, + { + "verseNum": 15, + "text": "any kind of raven," + }, + { + "verseNum": 16, + "text": "the ostrich, the screech owl, the gull, any kind of hawk," + }, + { + "verseNum": 17, + "text": "the little owl, the cormorant, the great owl," + }, + { + "verseNum": 18, + "text": "the white owl, the desert owl, the osprey," + }, + { + "verseNum": 19, + "text": "the stork, any kind of heron,\n \n the hoopoe, and the bat." + }, + { + "verseNum": 20, + "text": "All flying insects that walk on all fours are detestable to you." + }, + { + "verseNum": 21, + "text": "However, you may eat the following kinds of flying insects that walk on all fours: those having jointed legs above their feet for hopping on the ground." + }, + { + "verseNum": 22, + "text": "Of these you may eat any kind of locust, katydid, cricket, or grasshopper." + }, + { + "verseNum": 23, + "text": "All other flying insects that have four legs are detestable to you." + }, + { + "verseNum": 24, + "text": "These creatures will make you unclean. Whoever touches their carcasses will be unclean until evening," + }, + { + "verseNum": 25, + "text": "and whoever picks up one of their carcasses must wash his clothes, and he will be unclean until evening." + }, + { + "verseNum": 26, + "text": "Every animal with hooves not completely divided or that does not chew the cud is unclean for you. Whoever touches any of them will be unclean." + }, + { + "verseNum": 27, + "text": "All the four-footed animals that walk on their paws are unclean for you; whoever touches their carcasses will be unclean until evening," + }, + { + "verseNum": 28, + "text": "and anyone who picks up a carcass must wash his clothes, and he will be unclean until evening. They are unclean for you." + }, + { + "verseNum": 29, + "text": "The following creatures that move along the ground are unclean for you: the mole, the mouse, any kind of great lizard," + }, + { + "verseNum": 30, + "text": "the gecko, the monitor lizard, the common lizard, the skink, and the chameleon." + }, + { + "verseNum": 31, + "text": "These animals are unclean for you among all the crawling creatures. Whoever touches them when they are dead shall be unclean until evening." + }, + { + "verseNum": 32, + "text": "When one of them dies and falls on something, that article becomes unclean; any article of wood, clothing, leather, sackcloth, or any implement used for work must be rinsed with water and will remain unclean until evening; then it will be clean." + }, + { + "verseNum": 33, + "text": "If any of them falls into a clay pot, everything in it will be unclean; you must break the pot." + }, + { + "verseNum": 34, + "text": "Any food coming into contact with water from that pot will be unclean, and any drink in such a container will be unclean." + }, + { + "verseNum": 35, + "text": "Anything upon which one of their carcasses falls will be unclean. If it is an oven or cooking pot, it must be smashed; it is unclean and will remain unclean for you." + }, + { + "verseNum": 36, + "text": "Nevertheless, a spring or cistern containing water will remain clean, but one who touches a carcass in it will be unclean." + }, + { + "verseNum": 37, + "text": "If a carcass falls on any seed for sowing, the seed is clean;" + }, + { + "verseNum": 38, + "text": "but if water has been put on the seed and a carcass falls on it, it is unclean for you." + }, + { + "verseNum": 39, + "text": "If an animal that you may eat dies, anyone who touches the carcass will be unclean until evening." + }, + { + "verseNum": 40, + "text": "Whoever eats from the carcass must wash his clothes and will be unclean until evening, and anyone who picks up the carcass must wash his clothes and will be unclean until evening." + }, + { + "verseNum": 41, + "text": "Every creature that moves along the ground is detestable; it must not be eaten." + }, + { + "verseNum": 42, + "text": "Do not eat any creature that moves along the ground, whether it crawls on its belly or walks on four or more feet; for such creatures are detestable." + }, + { + "verseNum": 43, + "text": "Do not defile yourselves by any crawling creature; do not become unclean or defiled by them." + }, + { + "verseNum": 44, + "text": "For I am the LORD your God; consecrate yourselves, therefore, and be holy, because I am holy. You must not defile yourselves by any creature that crawls along the ground." + }, + { + "verseNum": 45, + "text": "For I am the LORD, who brought you up out of the land of Egypt so that I would be your God; therefore be holy, because I am holy." + }, + { + "verseNum": 46, + "text": "This is the law regarding animals, birds, all living creatures that move in the water, and all creatures that crawl along the ground." + }, + { + "verseNum": 47, + "text": "You must distinguish between the unclean and the clean, between animals that may be eaten and those that may not.’”" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Say to the Israelites, ‘A woman who becomes pregnant and gives birth to a son will be unclean for seven days, as she is during the days of her menstruation." + }, + { + "verseNum": 3, + "text": "And on the eighth day the flesh of the boy’s foreskin is to be circumcised." + }, + { + "verseNum": 4, + "text": "The woman shall continue in purification from her bleeding for thirty-three days. She must not touch anything sacred or go into the sanctuary until the days of her purification are complete." + }, + { + "verseNum": 5, + "text": "If, however, she gives birth to a daughter, the woman will be unclean for two weeks as she is during her menstruation. Then she must continue in purification from her bleeding for sixty-six days." + }, + { + "verseNum": 6, + "text": "When the days of her purification are complete, whether for a son or for a daughter, she is to bring to the priest at the entrance to the Tent of Meeting a year-old lamb for a burnt offering and a young pigeon or a turtledove for a sin offering." + }, + { + "verseNum": 7, + "text": "And the priest will present them before the LORD and make atonement for her; and she shall be ceremonially cleansed from her flow of blood. This is the law for a woman giving birth, whether to a male or to a female." + }, + { + "verseNum": 8, + "text": "But if she cannot afford a lamb, she shall bring two turtledoves or two young pigeons, one for a burnt offering and the other for a sin offering. Then the priest will make atonement for her, and she will be clean.’”" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses and Aaron," + }, + { + "verseNum": 2, + "text": "“When someone has a swelling or rash or bright spot on his skin that could become an infectious skin disease, he must be brought to Aaron the priest or to one of his sons who is a priest." + }, + { + "verseNum": 3, + "text": "The priest is to examine the infection on his skin, and if the hair in the infection has turned white and the sore appears to be deeper than the skin, it is a skin disease. After the priest examines him, he must pronounce him unclean." + }, + { + "verseNum": 4, + "text": "If, however, the spot on his skin is white and does not appear to be deeper than the skin, and the hair in it has not turned white, the priest shall isolate the infected person for seven days." + }, + { + "verseNum": 5, + "text": "On the seventh day the priest is to reexamine him, and if he sees that the infection is unchanged and has not spread on the skin, the priest must isolate him for another seven days." + }, + { + "verseNum": 6, + "text": "The priest will examine him again on the seventh day, and if the sore has faded and has not spread on the skin, the priest shall pronounce him clean; it is a rash. The person must wash his clothes and be clean." + }, + { + "verseNum": 7, + "text": "But if the rash spreads further on his skin after he has shown himself to the priest for his cleansing, he must present himself again to the priest." + }, + { + "verseNum": 8, + "text": "The priest will reexamine him, and if the rash has spread on the skin, the priest must pronounce him unclean; he has a skin disease." + }, + { + "verseNum": 9, + "text": "When anyone develops a skin disease, he must be brought to the priest." + }, + { + "verseNum": 10, + "text": "The priest will examine him, and if there is a white swelling on the skin that has turned the hair white, and there is raw flesh in the swelling," + }, + { + "verseNum": 11, + "text": "it is a chronic skin disease and the priest must pronounce him unclean. He need not isolate him, for he is unclean." + }, + { + "verseNum": 12, + "text": "But if the skin disease breaks out all over his skin so that it covers all the skin of the infected person from head to foot, as far as the priest can see," + }, + { + "verseNum": 13, + "text": "the priest shall examine him, and if the disease has covered his entire body, he is to pronounce the infected person clean. Since it has all turned white, he is clean." + }, + { + "verseNum": 14, + "text": "But whenever raw flesh appears on someone, he will be unclean." + }, + { + "verseNum": 15, + "text": "When the priest sees the raw flesh, he must pronounce him unclean. The raw flesh is unclean; it is a skin disease." + }, + { + "verseNum": 16, + "text": "But if the raw flesh changes and turns white, he must go to the priest." + }, + { + "verseNum": 17, + "text": "The priest will reexamine him, and if the infection has turned white, the priest is to pronounce the infected person clean; then he is clean." + }, + { + "verseNum": 18, + "text": "When a boil appears on someone’s skin and it heals," + }, + { + "verseNum": 19, + "text": "and a white swelling or a reddish-white spot develops where the boil was, he must present himself to the priest." + }, + { + "verseNum": 20, + "text": "The priest shall examine it, and if it appears to be beneath the skin and the hair in it has turned white, the priest shall pronounce him unclean; it is a diseased infection that has broken out in the boil." + }, + { + "verseNum": 21, + "text": "But when the priest examines it, if there is no white hair in it, and it is not beneath the skin and has faded, the priest shall isolate him for seven days." + }, + { + "verseNum": 22, + "text": "If it spreads any further on the skin, the priest must pronounce him unclean; it is an infection." + }, + { + "verseNum": 23, + "text": "But if the spot remains unchanged and does not spread, it is only the scar from the boil, and the priest shall pronounce him clean." + }, + { + "verseNum": 24, + "text": "When there is a burn on someone’s skin and the raw area of the burn becomes reddish-white or white," + }, + { + "verseNum": 25, + "text": "the priest must examine it. If the hair in the spot has turned white and the spot appears to be deeper than the skin, it is a disease that has broken out in the burn. The priest must pronounce him unclean; it is a diseased infection." + }, + { + "verseNum": 26, + "text": "But if the priest examines it and there is no white hair in the spot, and it is not beneath the skin but has faded, the priest shall isolate him for seven days." + }, + { + "verseNum": 27, + "text": "On the seventh day the priest is to reexamine him, and if it has spread further on the skin, the priest must pronounce him unclean; it is a diseased infection." + }, + { + "verseNum": 28, + "text": "But if the spot is unchanged and has not spread on the skin but has faded, it is a swelling from the burn, and the priest is to pronounce him clean; for it is only the scar from the burn." + }, + { + "verseNum": 29, + "text": "If a man or woman has an infection on the head or chin," + }, + { + "verseNum": 30, + "text": "the priest shall examine the infection, and if it appears to be deeper than the skin and the hair in it is yellow and thin, the priest must pronounce him unclean; it is a scaly outbreak, an infectious disease of the head or chin." + }, + { + "verseNum": 31, + "text": "But if the priest examines the scaly infection and it does not appear to be deeper than the skin, and there is no black hair in it, the priest shall isolate the infected person for seven days." + }, + { + "verseNum": 32, + "text": "On the seventh day the priest is to reexamine the infection, and if the scaly outbreak has not spread and there is no yellow hair in it, and it does not appear to be deeper than the skin," + }, + { + "verseNum": 33, + "text": "then the person must shave himself except for the scaly area. Then the priest shall isolate him for another seven days." + }, + { + "verseNum": 34, + "text": "On the seventh day the priest shall examine the scaly outbreak, and if it has not spread on the skin and does not appear to be deeper than the skin, the priest is to pronounce him clean. He must wash his clothes, and he will be clean." + }, + { + "verseNum": 35, + "text": "If, however, the scaly outbreak spreads further on the skin after his cleansing," + }, + { + "verseNum": 36, + "text": "the priest is to examine him, and if the scaly outbreak has spread on the skin, the priest need not look for yellow hair; the person is unclean." + }, + { + "verseNum": 37, + "text": "If, however, in his sight the scaly outbreak is unchanged and black hair has grown in it, then it has healed. He is clean, and the priest is to pronounce him clean." + }, + { + "verseNum": 38, + "text": "When a man or a woman has white spots on the skin," + }, + { + "verseNum": 39, + "text": "the priest shall examine them, and if the spots are dull white, it is a harmless rash that has broken out on the skin; the person is clean." + }, + { + "verseNum": 40, + "text": "Now if a man loses his hair and is bald, he is still clean." + }, + { + "verseNum": 41, + "text": "Or if his hairline recedes and he is bald on his forehead, he is still clean." + }, + { + "verseNum": 42, + "text": "But if there is a reddish-white sore on the bald head or forehead, it is an infectious disease breaking out on it." + }, + { + "verseNum": 43, + "text": "The priest is to examine him, and if the swelling of the infection on his bald head or forehead is reddish-white like a skin disease," + }, + { + "verseNum": 44, + "text": "the man is diseased; he is unclean. The priest must pronounce him unclean because of the infection on his head." + }, + { + "verseNum": 45, + "text": "A diseased person must wear torn clothes and let his hair hang loose, and he must cover his mouth and cry out, ‘Unclean, unclean!’" + }, + { + "verseNum": 46, + "text": "As long as he has the infection, he remains unclean. He must live alone in a place outside the camp." + }, + { + "verseNum": 47, + "text": "If any fabric is contaminated with mildew —any wool or linen garment," + }, + { + "verseNum": 48, + "text": "any weave or knit of linen or wool, or any article of leather—" + }, + { + "verseNum": 49, + "text": "and if the mark in the fabric, leather, weave, knit, or leather article is green or red, then it is contaminated with mildew and must be shown to the priest." + }, + { + "verseNum": 50, + "text": "And the priest is to examine the mildew and isolate the contaminated fabric for seven days." + }, + { + "verseNum": 51, + "text": "On the seventh day the priest shall reexamine it, and if the mildew has spread in the fabric, weave, knit, or leather, then regardless of how it is used, it is a harmful mildew; the article is unclean." + }, + { + "verseNum": 52, + "text": "He is to burn the fabric, weave, or knit, whether the contaminated item is wool or linen or leather. Since the mildew is harmful, the article must be burned up." + }, + { + "verseNum": 53, + "text": "But when the priest reexamines it, if the mildew has not spread in the fabric, weave, knit, or leather article," + }, + { + "verseNum": 54, + "text": "the priest is to order the contaminated article to be washed and isolated for another seven days." + }, + { + "verseNum": 55, + "text": "After it has been washed, the priest is to reexamine it, and if the mildewed article has not changed in appearance, it is unclean. Even though the mildew has not spread, you must burn it, whether the rot is on the front or back." + }, + { + "verseNum": 56, + "text": "If the priest examines it and the mildew has faded after it has been washed, he must cut the contaminated section out of the fabric, leather, weave, or knit." + }, + { + "verseNum": 57, + "text": "But if it reappears in the fabric, weave, or knit, or on any leather article, it is spreading. You must burn the contaminated article." + }, + { + "verseNum": 58, + "text": "If the mildew disappears from the fabric, weave, or knit, or any leather article after washing, then it is to be washed again, and it will be clean." + }, + { + "verseNum": 59, + "text": "This is the law concerning a mildew contamination in wool or linen fabric, weave, or knit, or any leather article, for pronouncing it clean or unclean.”" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“This is the law for the one afflicted with a skin disease on the day of his cleansing, when he is brought to the priest." + }, + { + "verseNum": 3, + "text": "The priest is to go outside the camp to examine him, and if the skin disease of the afflicted person has healed," + }, + { + "verseNum": 4, + "text": "the priest shall order that two live clean birds, cedar wood, scarlet yarn, and hyssop be brought for the one to be cleansed." + }, + { + "verseNum": 5, + "text": "Then the priest shall command that one of the birds be slaughtered over fresh water in a clay pot." + }, + { + "verseNum": 6, + "text": "And he is to take the live bird together with the cedar wood, scarlet yarn, and hyssop, and dip them into the blood of the bird that was slaughtered over the fresh water." + }, + { + "verseNum": 7, + "text": "Seven times he shall sprinkle the one to be cleansed of the skin disease. Then he shall pronounce him clean and release the live bird into the open field." + }, + { + "verseNum": 8, + "text": "The one being cleansed must wash his clothes, shave off all his hair, and bathe with water; then he will be ceremonially clean. Afterward, he may enter the camp, but he must remain outside his tent for seven days." + }, + { + "verseNum": 9, + "text": "On the seventh day he must shave off all his hair—his head, his beard, his eyebrows, and the rest of his hair. He must wash his clothes and bathe himself with water, and he will be clean." + }, + { + "verseNum": 10, + "text": "On the eighth day he is to bring two unblemished male lambs, an unblemished ewe lamb a year old, a grain offering of three-tenths of an ephah of fine flour mixed with olive oil, and one log of olive oil." + }, + { + "verseNum": 11, + "text": "The priest who performs the cleansing shall present the one to be cleansed, together with these offerings, before the LORD at the entrance to the Tent of Meeting." + }, + { + "verseNum": 12, + "text": "Then the priest is to take one of the male lambs and present it as a guilt offering, along with the log of olive oil; and he must wave them as a wave offering before the LORD." + }, + { + "verseNum": 13, + "text": "Then he is to slaughter the lamb in the sanctuary area where the sin offering and burnt offering are slaughtered. Like the sin offering, the guilt offering belongs to the priest; it is most holy." + }, + { + "verseNum": 14, + "text": "The priest is to take some of the blood from the guilt offering and put it on the right earlobe of the one to be cleansed, on the thumb of his right hand, and on the big toe of his right foot." + }, + { + "verseNum": 15, + "text": "Then the priest shall take some of the log of olive oil, pour it into his left palm," + }, + { + "verseNum": 16, + "text": "dip his right forefinger into the oil in his left palm, and sprinkle some of the oil with his finger seven times before the LORD." + }, + { + "verseNum": 17, + "text": "And the priest is to put some of the oil remaining in his palm on the right earlobe of the one to be cleansed, on the thumb of his right hand, and on the big toe of his right foot, on top of the blood of the guilt offering." + }, + { + "verseNum": 18, + "text": "The rest of the oil in his palm, the priest is to put on the head of the one to be cleansed, to make atonement for him before the LORD." + }, + { + "verseNum": 19, + "text": "Then the priest is to sacrifice the sin offering and make atonement for the one to be cleansed from his uncleanness. After that, the priest shall slaughter the burnt offering" + }, + { + "verseNum": 20, + "text": "and offer it on the altar, with the grain offering, to make atonement for him, and he will be clean." + }, + { + "verseNum": 21, + "text": "If, however, the person is poor and cannot afford these offerings, he is to take one male lamb as a guilt offering to be waved to make atonement for him, along with a tenth of an ephah of fine flour mixed with olive oil for a grain offering, a log of olive oil," + }, + { + "verseNum": 22, + "text": "and two turtledoves or two young pigeons, whichever he can afford, one to be a sin offering and the other a burnt offering." + }, + { + "verseNum": 23, + "text": "On the eighth day he is to bring them for his cleansing to the priest at the entrance to the Tent of Meeting before the LORD." + }, + { + "verseNum": 24, + "text": "The priest shall take the lamb for the guilt offering, along with the log of olive oil, and wave them as a wave offering before the LORD." + }, + { + "verseNum": 25, + "text": "And after he slaughters the lamb for the guilt offering, the priest is to take some of the blood of the guilt offering and put it on the right earlobe of the one to be cleansed, on the thumb of his right hand, and on the big toe of his right foot." + }, + { + "verseNum": 26, + "text": "Then the priest is to pour some of the oil into his left palm" + }, + { + "verseNum": 27, + "text": "and sprinkle with his right forefinger some of the oil in his left palm seven times before the LORD." + }, + { + "verseNum": 28, + "text": "The priest shall also put some of the oil in his palm on the right earlobe of the one to be cleansed, on the thumb of his right hand, and on the big toe of his right foot—on the same places as the blood of the guilt offering." + }, + { + "verseNum": 29, + "text": "The rest of the oil in his palm, the priest is to put on the head of the one to be cleansed, to make atonement for him before the LORD." + }, + { + "verseNum": 30, + "text": "Then he must sacrifice the turtledoves or young pigeons, whichever he can afford," + }, + { + "verseNum": 31, + "text": "one as a sin offering and the other as a burnt offering, together with the grain offering. In this way the priest will make atonement before the LORD for the one to be cleansed." + }, + { + "verseNum": 32, + "text": "This is the law for someone who has a skin disease and cannot afford the cost of his cleansing.”" + }, + { + "verseNum": 33, + "text": "Then the LORD said to Moses and Aaron," + }, + { + "verseNum": 34, + "text": "“When you enter the land of Canaan, which I am giving you as your possession, and I put a contamination of mildew into a house in that land," + }, + { + "verseNum": 35, + "text": "the owner of the house shall come and tell the priest, ‘Something like mildew has appeared in my house.’" + }, + { + "verseNum": 36, + "text": "The priest must order that the house be cleared before he enters it to examine the mildew, so that nothing in the house will become unclean. After this, the priest shall go in to inspect the house." + }, + { + "verseNum": 37, + "text": "He is to examine the house, and if the mildew on the walls consists of green or red depressions that appear to be beneath the surface of the wall," + }, + { + "verseNum": 38, + "text": "the priest shall go outside the doorway of the house and close it up for seven days." + }, + { + "verseNum": 39, + "text": "On the seventh day the priest is to return and inspect the house. If the mildew has spread on the walls," + }, + { + "verseNum": 40, + "text": "he must order that the contaminated stones be pulled out and thrown into an unclean place outside the city." + }, + { + "verseNum": 41, + "text": "And he shall have the inside of the house scraped completely and the plaster that is scraped off dumped into an unclean place outside the city." + }, + { + "verseNum": 42, + "text": "So different stones must be obtained to replace the contaminated ones, as well as additional mortar to replaster the house." + }, + { + "verseNum": 43, + "text": "If the mildew reappears in the house after the stones have been torn out and the house has been scraped and replastered," + }, + { + "verseNum": 44, + "text": "the priest must come and inspect it.\n \nIf the mildew has spread in the house, it is a destructive mildew; the house is unclean." + }, + { + "verseNum": 45, + "text": "It must be torn down with its stones, its timbers, and all its plaster, and taken outside the city to an unclean place." + }, + { + "verseNum": 46, + "text": "Anyone who enters the house during any of the days that it is closed up will be unclean until evening." + }, + { + "verseNum": 47, + "text": "And anyone who sleeps in the house or eats in it must wash his clothes." + }, + { + "verseNum": 48, + "text": "If, however, the priest comes and inspects it, and the mildew has not spread after the house has been replastered, he shall pronounce the house clean, because the mildew is gone." + }, + { + "verseNum": 49, + "text": "He is to take two birds, cedar wood, scarlet yarn, and hyssop to purify the house;" + }, + { + "verseNum": 50, + "text": "and he shall slaughter one of the birds over fresh water in a clay pot." + }, + { + "verseNum": 51, + "text": "Then he shall take the cedar wood, the hyssop, the scarlet yarn, and the live bird, dip them in the blood of the slaughtered bird and the fresh water, and sprinkle the house seven times." + }, + { + "verseNum": 52, + "text": "And he shall cleanse the house with the bird’s blood, the fresh water, the live bird, the cedar wood, the hyssop, and the scarlet yarn." + }, + { + "verseNum": 53, + "text": "Finally, he is to release the live bird into the open fields outside the city. In this way he will make atonement for the house, and it will be clean." + }, + { + "verseNum": 54, + "text": "This is the law for any infectious skin disease, for a scaly outbreak," + }, + { + "verseNum": 55, + "text": "for mildew in clothing or in a house," + }, + { + "verseNum": 56, + "text": "and for a swelling, rash, or spot," + }, + { + "verseNum": 57, + "text": "to determine when something is clean or unclean. This is the law regarding skin diseases and mildew.”" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "And the LORD said to Moses and Aaron," + }, + { + "verseNum": 2, + "text": "“Say to the Israelites, ‘When any man has a bodily discharge, the discharge is unclean." + }, + { + "verseNum": 3, + "text": "This uncleanness is from his discharge, whether his body allows the discharge to flow or blocks it. So his discharge will bring about uncleanness." + }, + { + "verseNum": 4, + "text": "Any bed on which the man with the discharge lies will be unclean, and any furniture on which he sits will be unclean." + }, + { + "verseNum": 5, + "text": "Anyone who touches his bed must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 6, + "text": "Whoever sits on furniture on which the man with the discharge was sitting must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 7, + "text": "Whoever touches the body of the man with a discharge must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 8, + "text": "If the man with the discharge spits on one who is clean, that person must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 9, + "text": "Any saddle on which the man with the discharge rides will be unclean." + }, + { + "verseNum": 10, + "text": "Whoever touches anything that was under him will be unclean until evening, and whoever carries such things must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 11, + "text": "If the man with the discharge touches anyone without first rinsing his hands with water, the one who was touched must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 12, + "text": "Any clay pot that the man with the discharge touches must be broken, and any wooden utensil must be rinsed with water." + }, + { + "verseNum": 13, + "text": "When the man has been cleansed from his discharge, he must count off seven days for his cleansing, wash his clothes, and bathe himself in fresh water, and he shall be clean." + }, + { + "verseNum": 14, + "text": "On the eighth day he is to take two turtledoves or two young pigeons, come before the LORD at the entrance to the Tent of Meeting, and give them to the priest." + }, + { + "verseNum": 15, + "text": "The priest is to sacrifice them, one as a sin offering and the other as a burnt offering. In this way the priest will make atonement for the man before the LORD because of his discharge." + }, + { + "verseNum": 16, + "text": "When a man has an emission of semen, he must bathe his whole body with water, and he will be unclean until evening." + }, + { + "verseNum": 17, + "text": "Any clothing or leather on which there is an emission of semen must be washed with water, and it will remain unclean until evening." + }, + { + "verseNum": 18, + "text": "If a man lies with a woman and there is an emission of semen, both must bathe with water, and they will remain unclean until evening." + }, + { + "verseNum": 19, + "text": "When a woman has a discharge consisting of blood from her body, she will be unclean due to her menstruation for seven days, and anyone who touches her will be unclean until evening." + }, + { + "verseNum": 20, + "text": "Anything on which she lies or sits during her menstruation will be unclean," + }, + { + "verseNum": 21, + "text": "and anyone who touches her bed must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 22, + "text": "Whoever touches any furniture on which she was sitting must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 23, + "text": "And whether it is a bed or furniture on which she was sitting, whoever touches it will be unclean until evening." + }, + { + "verseNum": 24, + "text": "If a man lies with her and her menstrual flow touches him, he will be unclean for seven days, and any bed on which he lies will become unclean." + }, + { + "verseNum": 25, + "text": "When a woman has a discharge of her blood for many days at a time other than her menstrual period, or if it continues beyond her period, she will be unclean all the days of her unclean discharge, just as she is during the days of her menstruation." + }, + { + "verseNum": 26, + "text": "Any bed on which she lies or any furniture on which she sits during the days of her discharge will be unclean, like her bed during her menstrual period." + }, + { + "verseNum": 27, + "text": "Anyone who touches these things will be unclean; he must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 28, + "text": "When a woman is cleansed of her discharge, she must count off seven days, and after that she will be ceremonially clean." + }, + { + "verseNum": 29, + "text": "On the eighth day she is to take two turtledoves or two young pigeons and bring them to the priest at the entrance to the Tent of Meeting." + }, + { + "verseNum": 30, + "text": "The priest is to sacrifice one as a sin offering and the other as a burnt offering. In this way the priest will make atonement for her before the LORD for her unclean discharge." + }, + { + "verseNum": 31, + "text": "You must keep the children of Israel separate from their uncleanness, so that they do not die by defiling My tabernacle, which is among them." + }, + { + "verseNum": 32, + "text": "This is the law of him who has a discharge, of the man who has an emission of semen whereby he is unclean," + }, + { + "verseNum": 33, + "text": "of a woman in her menstrual period, of any male or female who has a discharge, and of a man who lies with an unclean woman.’”" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Now the LORD spoke to Moses after the death of two of Aaron’s sons when they approached the presence of the LORD." + }, + { + "verseNum": 2, + "text": "And the LORD said to Moses: “Tell your brother Aaron not to enter freely into the Most Holy Place behind the veil in front of the mercy seat on the ark, or else he will die, because I appear in the cloud above the mercy seat." + }, + { + "verseNum": 3, + "text": "This is how Aaron is to enter the Holy Place: with a young bull for a sin offering and a ram for a burnt offering." + }, + { + "verseNum": 4, + "text": "He is to wear the sacred linen tunic, with linen undergarments. He must tie a linen sash around him and put on the linen turban. These are holy garments, and he must bathe himself with water before he wears them." + }, + { + "verseNum": 5, + "text": "And he shall take from the congregation of Israel two male goats for a sin offering and one ram for a burnt offering." + }, + { + "verseNum": 6, + "text": "Aaron is to present the bull for his sin offering and make atonement for himself and his household." + }, + { + "verseNum": 7, + "text": "Then he shall take the two goats and present them before the LORD at the entrance to the Tent of Meeting." + }, + { + "verseNum": 8, + "text": "After Aaron casts lots for the two goats, one for the LORD and the other for the scapegoat," + }, + { + "verseNum": 9, + "text": "he shall present the goat chosen by lot for the LORD and sacrifice it as a sin offering." + }, + { + "verseNum": 10, + "text": "But the goat chosen by lot as the scapegoat shall be presented alive before the LORD to make atonement by sending it into the wilderness as the scapegoat." + }, + { + "verseNum": 11, + "text": "When Aaron presents the bull for his sin offering and makes atonement for himself and his household, he is to slaughter the bull for his own sin offering." + }, + { + "verseNum": 12, + "text": "Then he must take a censer full of burning coals from the altar before the LORD, and two handfuls of finely ground fragrant incense, and take them inside the veil." + }, + { + "verseNum": 13, + "text": "He is to put the incense on the fire before the LORD, and the cloud of incense will cover the mercy seat above the Testimony, so that he will not die." + }, + { + "verseNum": 14, + "text": "And he is to take some of the bull’s blood and sprinkle it with his finger on the east side of the mercy seat; then he shall sprinkle some of it with his finger seven times before the mercy seat." + }, + { + "verseNum": 15, + "text": "Aaron shall then slaughter the goat for the sin offering for the people and bring its blood behind the veil, and with its blood he must do as he did with the bull’s blood: He is to sprinkle it against the mercy seat and in front of it." + }, + { + "verseNum": 16, + "text": "So he shall make atonement for the Most Holy Place because of the impurities and rebellious acts of the Israelites in regard to all their sins. He is to do the same for the Tent of Meeting which abides among them, because it is surrounded by their impurities." + }, + { + "verseNum": 17, + "text": "No one may be in the Tent of Meeting from the time Aaron goes in to make atonement in the Most Holy Place until he leaves, after he has made atonement for himself, his household, and the whole assembly of Israel." + }, + { + "verseNum": 18, + "text": "Then he shall go out to the altar that is before the LORD and make atonement for it. He is to take some of the bull’s blood and some of the goat’s blood and put it on all the horns of the altar." + }, + { + "verseNum": 19, + "text": "He is to sprinkle some of the blood on it with his finger seven times to cleanse it and consecrate it from the uncleanness of the Israelites." + }, + { + "verseNum": 20, + "text": "When Aaron has finished purifying the Most Holy Place, the Tent of Meeting, and the altar, he is to bring forward the live goat." + }, + { + "verseNum": 21, + "text": "Then he is to lay both hands on the head of the live goat and confess over it all the iniquities and rebellious acts of the Israelites in regard to all their sins. He is to put them on the goat’s head and send it away into the wilderness by the hand of a man appointed for the task." + }, + { + "verseNum": 22, + "text": "The goat will carry on itself all their iniquities into a solitary place, and the man will release it into the wilderness." + }, + { + "verseNum": 23, + "text": "Then Aaron is to enter the Tent of Meeting, take off the linen garments he put on before entering the Most Holy Place, and leave them there." + }, + { + "verseNum": 24, + "text": "He is to bathe himself with water in a holy place and put on his own clothes. Then he must go out and sacrifice his burnt offering and the people’s burnt offering to make atonement for himself and for the people." + }, + { + "verseNum": 25, + "text": "He is also to burn the fat of the sin offering on the altar." + }, + { + "verseNum": 26, + "text": "The man who released the goat as the scapegoat must wash his clothes and bathe himself with water; afterward he may reenter the camp." + }, + { + "verseNum": 27, + "text": "The bull for the sin offering and the goat for the sin offering, whose blood was brought into the Most Holy Place to make atonement, must be taken outside the camp; and their hides, flesh, and dung must be burned up." + }, + { + "verseNum": 28, + "text": "The one who burns them must wash his clothes and bathe himself with water, and afterward he may reenter the camp." + }, + { + "verseNum": 29, + "text": "This is to be a permanent statute for you: On the tenth day of the seventh month, you shall humble yourselves and not do any work—whether the native or the foreigner who resides among you—" + }, + { + "verseNum": 30, + "text": "because on this day atonement will be made for you to cleanse you, and you will be clean from all your sins before the LORD." + }, + { + "verseNum": 31, + "text": "It is a Sabbath of complete rest for you, that you may humble yourselves; it is a permanent statute." + }, + { + "verseNum": 32, + "text": "The priest who is anointed and ordained to succeed his father as high priest shall make atonement. He will put on the sacred linen garments" + }, + { + "verseNum": 33, + "text": "and make atonement for the Most Holy Place, the Tent of Meeting, and the altar, and for the priests and all the people of the assembly." + }, + { + "verseNum": 34, + "text": "This is to be a permanent statute for you, to make atonement once a year for the Israelites because of all their sins.”\n \nAnd all this was done as the LORD had commanded Moses." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to Aaron, his sons, and all the Israelites and tell them this is what the LORD has commanded:" + }, + { + "verseNum": 3, + "text": "‘Anyone from the house of Israel who slaughters an ox, a lamb, or a goat in the camp or outside of it" + }, + { + "verseNum": 4, + "text": "instead of bringing it to the entrance to the Tent of Meeting to present it as an offering to the LORD before His tabernacle—that man shall incur bloodguilt. He has shed blood and must be cut off from among his people." + }, + { + "verseNum": 5, + "text": "For this reason the Israelites will bring to the LORD the sacrifices they have been offering in the open fields. They are to bring them to the priest at the entrance to the Tent of Meeting and offer them as sacrifices of peace to the LORD." + }, + { + "verseNum": 6, + "text": "The priest will then sprinkle the blood on the altar of the LORD at the entrance to the Tent of Meeting and burn the fat as a pleasing aroma to the LORD." + }, + { + "verseNum": 7, + "text": "They must no longer offer their sacrifices to the goat demons to which they have prostituted themselves. This will be a permanent statute for them for the generations to come.’" + }, + { + "verseNum": 8, + "text": "Tell them that if anyone from the house of Israel or any foreigner living among them offers a burnt offering or a sacrifice" + }, + { + "verseNum": 9, + "text": "but does not bring it to the entrance to the Tent of Meeting to sacrifice it to the LORD, that man must be cut off from his people." + }, + { + "verseNum": 10, + "text": "If anyone from the house of Israel or a foreigner living among them eats any blood, I will set My face against that person and cut him off from among his people." + }, + { + "verseNum": 11, + "text": "For the life of the flesh is in the blood, and I have given it to you to make atonement for your souls upon the altar; for it is the blood that makes atonement for the soul." + }, + { + "verseNum": 12, + "text": "Therefore I say to the Israelites, ‘None of you may eat blood, nor may any foreigner living among you eat blood.’" + }, + { + "verseNum": 13, + "text": "And if any Israelite or foreigner living among them hunts down a wild animal or bird that may be eaten, he must drain its blood and cover it with dirt." + }, + { + "verseNum": 14, + "text": "For the life of all flesh is its blood. Therefore I have told the Israelites, ‘You must not eat the blood of any living thing, because the life of all flesh is its blood; whoever eats it must be cut off.’" + }, + { + "verseNum": 15, + "text": "And any person, whether native or foreigner, who eats anything found dead or mauled by wild beasts must wash his clothes and bathe with water, and he will be unclean until evening; then he will be clean." + }, + { + "verseNum": 16, + "text": "But if he does not wash his clothes and bathe himself, then he shall bear his iniquity.”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and tell them: I am the LORD your God." + }, + { + "verseNum": 3, + "text": "You must not follow the practices of the land of Egypt, where you used to live, and you must not follow the practices of the land of Canaan, into which I am bringing you. You must not walk in their customs." + }, + { + "verseNum": 4, + "text": "You are to practice My judgments and keep My statutes by walking in them. I am the LORD your God." + }, + { + "verseNum": 5, + "text": "Keep My statutes and My judgments, for the man who does these things will live by them. I am the LORD." + }, + { + "verseNum": 6, + "text": "None of you are to approach any close relative to have sexual relations. I am the LORD." + }, + { + "verseNum": 7, + "text": "You must not expose the nakedness of your father by having sexual relations with your mother. She is your mother; you must not have sexual relations with her." + }, + { + "verseNum": 8, + "text": "You must not have sexual relations with your father’s wife; it would dishonor your father." + }, + { + "verseNum": 9, + "text": "You must not have sexual relations with your sister, either your father’s daughter or your mother’s daughter, whether she was born in the same home or elsewhere." + }, + { + "verseNum": 10, + "text": "You must not have sexual relations with your son’s daughter or your daughter’s daughter, for that would shame your family." + }, + { + "verseNum": 11, + "text": "You must not have sexual relations with the daughter of your father’s wife, born to your father; she is your sister." + }, + { + "verseNum": 12, + "text": "You must not have sexual relations with your father’s sister; she is your father’s close relative." + }, + { + "verseNum": 13, + "text": "You must not have sexual relations with your mother’s sister, for she is your mother’s close relative." + }, + { + "verseNum": 14, + "text": "You must not dishonor your father’s brother by approaching his wife to have sexual relations with her; she is your aunt." + }, + { + "verseNum": 15, + "text": "You must not have sexual relations with your daughter-in-law. She is your son’s wife; you are not to have sexual relations with her." + }, + { + "verseNum": 16, + "text": "You must not have sexual relations with your brother’s wife; that would shame your brother." + }, + { + "verseNum": 17, + "text": "You must not have sexual relations with both a woman and her daughter. You are not to marry her son’s daughter or her daughter’s daughter and have sexual relations with her. They are close relatives; it is depraved." + }, + { + "verseNum": 18, + "text": "You must not take your wife’s sister as a rival wife and have sexual relations with her while your wife is still alive." + }, + { + "verseNum": 19, + "text": "You must not approach a woman to have sexual relations with her during her menstrual period." + }, + { + "verseNum": 20, + "text": "You must not lie carnally with your neighbor’s wife and thus defile yourself with her." + }, + { + "verseNum": 21, + "text": "You must not give any of your children to be sacrificed to Molech, for you must not profane the name of your God. I am the LORD." + }, + { + "verseNum": 22, + "text": "You must not lie with a man as with a woman; that is an abomination." + }, + { + "verseNum": 23, + "text": "You must not lie carnally with any animal, thus defiling yourself with it; a woman must not stand before an animal to mate with it; that is a perversion." + }, + { + "verseNum": 24, + "text": "Do not defile yourselves by any of these practices, for by all these things the nations I am driving out before you have defiled themselves." + }, + { + "verseNum": 25, + "text": "Even the land has become defiled, so I am punishing it for its sin, and the land will vomit out its inhabitants." + }, + { + "verseNum": 26, + "text": "But you are to keep My statutes and ordinances, and you must not commit any of these abominations—neither your native-born nor the foreigner who lives among you." + }, + { + "verseNum": 27, + "text": "For the men who were in the land before you committed all these abominations, and the land has become defiled." + }, + { + "verseNum": 28, + "text": "So if you defile the land, it will vomit you out as it spewed out the nations before you." + }, + { + "verseNum": 29, + "text": "Therefore anyone who commits any of these abominations must be cut off from among his people." + }, + { + "verseNum": 30, + "text": "You must keep My charge not to practice any of the abominable customs that were practiced before you, so that you do not defile yourselves by them. I am the LORD your God.”" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to the whole congregation of Israel and tell them: Be holy because I, the LORD your God, am holy." + }, + { + "verseNum": 3, + "text": "Each of you must respect his mother and father, and you must keep My Sabbaths. I am the LORD your God." + }, + { + "verseNum": 4, + "text": "Do not turn to idols or make for yourselves molten gods. I am the LORD your God." + }, + { + "verseNum": 5, + "text": "When you sacrifice a peace offering to the LORD, you shall offer it for your acceptance." + }, + { + "verseNum": 6, + "text": "It shall be eaten on the day you sacrifice it, or on the next day; but what remains on the third day must be burned up." + }, + { + "verseNum": 7, + "text": "If any of it is eaten on the third day, it is tainted and will not be accepted." + }, + { + "verseNum": 8, + "text": "Whoever eats it will bear his iniquity, for he has profaned what is holy to the LORD. That person must be cut off from his people." + }, + { + "verseNum": 9, + "text": "When you reap the harvest of your land, you are not to reap to the very edges of your field or gather the gleanings of your harvest." + }, + { + "verseNum": 10, + "text": "You must not strip your vineyard bare or gather its fallen grapes. Leave them for the poor and the foreigner. I am the LORD your God." + }, + { + "verseNum": 11, + "text": "You must not steal. You must not lie or deceive one another." + }, + { + "verseNum": 12, + "text": "You must not swear falsely by My name and so profane the name of your God. I am the LORD." + }, + { + "verseNum": 13, + "text": "You must not defraud your neighbor or rob him.\n \nYou must not withhold until morning the wages due a hired hand." + }, + { + "verseNum": 14, + "text": "You must not curse the deaf or place a stumbling block before the blind, but you shall fear your God. I am the LORD." + }, + { + "verseNum": 15, + "text": "You must not pervert justice; you must not show partiality to the poor or favoritism to the rich; you are to judge your neighbor fairly." + }, + { + "verseNum": 16, + "text": "You must not go about spreading slander among your people.\n \nYou must not endanger the life of your neighbor. I am the LORD." + }, + { + "verseNum": 17, + "text": "You must not harbor hatred against your brother in your heart. Directly rebuke your neighbor, so that you will not incur guilt on account of him." + }, + { + "verseNum": 18, + "text": "Do not seek revenge or bear a grudge against any of your people, but love your neighbor as yourself. I am the LORD." + }, + { + "verseNum": 19, + "text": "You are to keep My statutes. You shall not crossbreed two different kinds of livestock; you shall not sow your fields with two kinds of seed; and you shall not wear clothing made of two kinds of material." + }, + { + "verseNum": 20, + "text": "If a man lies carnally with a slave girl promised to another man but who has not been redeemed or given her freedom, there must be due punishment. But they are not to be put to death, because she had not been freed." + }, + { + "verseNum": 21, + "text": "The man, however, must bring a ram to the entrance to the Tent of Meeting as his guilt offering to the LORD." + }, + { + "verseNum": 22, + "text": "The priest shall make atonement on his behalf before the LORD with the ram of the guilt offering for the sin he has committed, and he will be forgiven the sin he has committed." + }, + { + "verseNum": 23, + "text": "When you enter the land and plant any kind of tree for food, you shall regard the fruit as forbidden. For three years it will be forbidden to you and must not be eaten." + }, + { + "verseNum": 24, + "text": "In the fourth year all its fruit must be consecrated as a praise offering to the LORD." + }, + { + "verseNum": 25, + "text": "But in the fifth year you may eat its fruit; thus your harvest will be increased. I am the LORD your God." + }, + { + "verseNum": 26, + "text": "You must not eat anything with blood still in it.\n \nYou must not practice divination or sorcery." + }, + { + "verseNum": 27, + "text": "You must not cut off the hair at the sides of your head or clip off the edges of your beard." + }, + { + "verseNum": 28, + "text": "You must not make any cuts in your bodies for the dead or put tattoo marks on yourselves. I am the LORD." + }, + { + "verseNum": 29, + "text": "You must not defile your daughter by making her a prostitute, or the land will be prostituted and filled with depravity." + }, + { + "verseNum": 30, + "text": "You must keep My Sabbaths and have reverence for My sanctuary. I am the LORD." + }, + { + "verseNum": 31, + "text": "You must not turn to mediums or spiritists; do not seek them out, or you will be defiled by them. I am the LORD your God." + }, + { + "verseNum": 32, + "text": "You are to rise in the presence of the elderly, honor the aged, and fear your God. I am the LORD." + }, + { + "verseNum": 33, + "text": "When a foreigner resides with you in your land, you must not oppress him." + }, + { + "verseNum": 34, + "text": "You must treat the foreigner living among you as native-born and love him as yourself, for you were foreigners in the land of Egypt. I am the LORD your God." + }, + { + "verseNum": 35, + "text": "You must not use dishonest measures of length, weight, or volume." + }, + { + "verseNum": 36, + "text": "You shall maintain honest scales and weights, an honest ephah, and an honest hin. I am the LORD your God, who brought you out of the land of Egypt." + }, + { + "verseNum": 37, + "text": "You must keep all My statutes and all My ordinances and follow them. I am the LORD.”" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Tell the Israelites, ‘Any Israelite or foreigner living in Israel who gives any of his children to Molech must be put to death. The people of the land are to stone him." + }, + { + "verseNum": 3, + "text": "And I will set My face against that man and cut him off from his people, because by giving his offspring to Molech, he has defiled My sanctuary and profaned My holy name." + }, + { + "verseNum": 4, + "text": "And if the people of the land ever hide their eyes and fail to put to death the man who gives one of his children to Molech," + }, + { + "verseNum": 5, + "text": "then I will set My face against that man and his family and cut off from among their people both him and all who follow him in prostituting themselves with Molech." + }, + { + "verseNum": 6, + "text": "Whoever turns to mediums or spiritists to prostitute himself with them, I will also set My face against that person and cut him off from his people." + }, + { + "verseNum": 7, + "text": "Consecrate yourselves, therefore, and be holy, because I am the LORD your God." + }, + { + "verseNum": 8, + "text": "And you shall keep My statutes and practice them. I am the LORD who sanctifies you." + }, + { + "verseNum": 9, + "text": "If anyone curses his father or mother, he must be put to death. He has cursed his father or mother; his blood shall be upon him." + }, + { + "verseNum": 10, + "text": "If a man commits adultery with another man’s wife—with the wife of his neighbor—both the adulterer and the adulteress must surely be put to death." + }, + { + "verseNum": 11, + "text": "If a man lies with his father’s wife, he has uncovered his father’s nakedness. Both must surely be put to death; their blood is upon them." + }, + { + "verseNum": 12, + "text": "If a man lies with his daughter-in-law, both must surely be put to death. They have acted perversely; their blood is upon them." + }, + { + "verseNum": 13, + "text": "If a man lies with a man as with a woman, they have both committed an abomination. They must surely be put to death; their blood is upon them." + }, + { + "verseNum": 14, + "text": "If a man marries both a woman and her mother, it is depraved. Both he and they must be burned in the fire, so that there will be no depravity among you." + }, + { + "verseNum": 15, + "text": "If a man lies carnally with an animal, he must be put to death. And you are also to kill the animal." + }, + { + "verseNum": 16, + "text": "If a woman approaches any animal to mate with it, you must kill both the woman and the animal. They must surely be put to death; their blood is upon them." + }, + { + "verseNum": 17, + "text": "If a man marries his sister, whether the daughter of his father or of his mother, and they have sexual relations, it is a disgrace. They must be cut off in the sight of their people. He has uncovered the nakedness of his sister; he shall bear his iniquity." + }, + { + "verseNum": 18, + "text": "If a man lies with a menstruating woman and has sexual relations with her, he has exposed the source of her flow, and she has uncovered the source of her blood. Both of them must be cut off from among their people." + }, + { + "verseNum": 19, + "text": "You must not have sexual relations with the sister of your mother or your father, for it is exposing one’s own kin; both shall bear their iniquity." + }, + { + "verseNum": 20, + "text": "If a man lies with his uncle’s wife, he has uncovered the nakedness of his uncle. They will bear their sin; they shall die childless." + }, + { + "verseNum": 21, + "text": "If a man marries his brother’s wife, it is an act of impurity. He has uncovered the nakedness of his brother; they shall be childless." + }, + { + "verseNum": 22, + "text": "You are therefore to keep all My statutes and ordinances, so that the land where I am bringing you to live will not vomit you out." + }, + { + "verseNum": 23, + "text": "You must not follow the statutes of the nations I am driving out before you. Because they did all these things, I abhorred them." + }, + { + "verseNum": 24, + "text": "But I have told you that you will inherit their land, since I will give it to you as an inheritance—a land flowing with milk and honey. I am the LORD your God, who has set you apart from the peoples." + }, + { + "verseNum": 25, + "text": "You are therefore to distinguish between clean and unclean animals and birds. Do not become contaminated by any animal or bird, or by anything that crawls on the ground; I have set these apart as unclean for you." + }, + { + "verseNum": 26, + "text": "You are to be holy to Me because I, the LORD, am holy, and I have set you apart from the nations to be My own." + }, + { + "verseNum": 27, + "text": "A man or a woman who is a medium or spiritist must surely be put to death. They shall be stoned; their blood is upon them.’”" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Speak to Aaron’s sons, the priests, and tell them that a priest is not to defile himself for a dead person among his people," + }, + { + "verseNum": 2, + "text": "except for his immediate family—his mother, father, son, daughter, or brother," + }, + { + "verseNum": 3, + "text": "or his unmarried sister who is near to him, since she has no husband." + }, + { + "verseNum": 4, + "text": "He is not to defile himself for those related to him by marriage, and so profane himself." + }, + { + "verseNum": 5, + "text": "Priests must not make bald spots on their heads, shave off the edges of their beards, or make cuts in their bodies." + }, + { + "verseNum": 6, + "text": "They must be holy to their God and not profane the name of their God. Because they present to the LORD the offerings made by fire, the food of their God, they must be holy." + }, + { + "verseNum": 7, + "text": "A priest must not marry a woman defiled by prostitution or divorced by her husband, for the priest is holy to his God." + }, + { + "verseNum": 8, + "text": "You are to regard him as holy, since he presents the food of your God. He shall be holy to you, because I the LORD am holy—I who set you apart." + }, + { + "verseNum": 9, + "text": "If a priest’s daughter defiles herself by prostituting herself, she profanes her father; she must be burned in the fire." + }, + { + "verseNum": 10, + "text": "The priest who is highest among his brothers, who has had the anointing oil poured on his head and has been ordained to wear the priestly garments, must not let his hair hang loose or tear his garments." + }, + { + "verseNum": 11, + "text": "He must not go near any dead body; he must not defile himself, even for his father or mother." + }, + { + "verseNum": 12, + "text": "He must not leave or desecrate the sanctuary of his God, for the consecration of the anointing oil of his God is on him. I am the LORD." + }, + { + "verseNum": 13, + "text": "The woman he marries must be a virgin." + }, + { + "verseNum": 14, + "text": "He is not to marry a widow, a divorced woman, or one defiled by prostitution. He is to marry a virgin from his own people," + }, + { + "verseNum": 15, + "text": "so that he does not defile his offspring among his people, for I am the LORD who sanctifies him.”" + }, + { + "verseNum": 16, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 17, + "text": "“Say to Aaron, ‘For the generations to come, none of your descendants who has a physical defect may approach to offer the food of his God." + }, + { + "verseNum": 18, + "text": "No man who has any defect may approach—no man who is blind, lame, disfigured, or deformed;" + }, + { + "verseNum": 19, + "text": "no man who has a broken foot or hand," + }, + { + "verseNum": 20, + "text": "or who is a hunchback or dwarf, or who has an eye defect, a festering rash, scabs, or a crushed testicle." + }, + { + "verseNum": 21, + "text": "No descendant of Aaron the priest who has a defect shall approach to present the offerings made by fire to the LORD. Since he has a defect, he is not to come near to offer the food of his God." + }, + { + "verseNum": 22, + "text": "He may eat the most holy food of his God as well as the holy food," + }, + { + "verseNum": 23, + "text": "but because he has a defect, he must not go near the veil or approach the altar, so as not to desecrate My sanctuaries. For I am the LORD who sanctifies them.’”" + }, + { + "verseNum": 24, + "text": "Moses told this to Aaron and his sons and to all the Israelites." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Tell Aaron and his sons to treat with respect the sacred offerings that the Israelites have consecrated to Me, so that they do not profane My holy name. I am the LORD." + }, + { + "verseNum": 3, + "text": "Tell them that for the generations to come, if any of their descendants in a state of uncleanness approaches the sacred offerings that the Israelites consecrate to the LORD, that person must be cut off from My presence. I am the LORD." + }, + { + "verseNum": 4, + "text": "If a descendant of Aaron has a skin disease or a discharge, he may not eat the sacred offerings until he is clean. Whoever touches anything defiled by a corpse or by a man who has an emission of semen," + }, + { + "verseNum": 5, + "text": "or whoever touches a crawling creature or a person that makes him unclean, whatever the uncleanness may be—" + }, + { + "verseNum": 6, + "text": "the man who touches any of these will remain unclean until evening. He must not eat from the sacred offerings unless he has bathed himself with water." + }, + { + "verseNum": 7, + "text": "When the sun has set, he will become clean, and then he may eat from the sacred offerings, for they are his food." + }, + { + "verseNum": 8, + "text": "He must not eat anything found dead or torn by wild animals, which would make him unclean. I am the LORD." + }, + { + "verseNum": 9, + "text": "The priests must keep My charge, lest they bear the guilt and die because they profane it. I am the LORD who sanctifies them." + }, + { + "verseNum": 10, + "text": "No one outside a priest’s family may eat the sacred offering, nor may the guest of a priest or his hired hand eat it." + }, + { + "verseNum": 11, + "text": "But if a priest buys a slave with his own money, or if a slave is born in his household, that slave may eat his food." + }, + { + "verseNum": 12, + "text": "If the priest’s daughter is married to a man other than a priest, she is not to eat of the sacred contributions." + }, + { + "verseNum": 13, + "text": "But if a priest’s daughter with no children becomes widowed or divorced and returns to her father’s house, she may share her father’s food as in her youth. But no outsider may share it." + }, + { + "verseNum": 14, + "text": "If anyone eats a sacred offering in error, he must add a fifth to its value and give the sacred offering to the priest." + }, + { + "verseNum": 15, + "text": "The priests must not profane the sacred offerings that the Israelites present to the LORD" + }, + { + "verseNum": 16, + "text": "by allowing the people to eat the sacred offerings and thus to bear the punishment for guilt. For I am the LORD who sanctifies them.”" + }, + { + "verseNum": 17, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 18, + "text": "“Speak to Aaron and his sons and all the Israelites and tell them, ‘Any man of the house of Israel or any foreign resident who presents a gift for a burnt offering to the LORD, whether to fulfill a vow or as a freewill offering," + }, + { + "verseNum": 19, + "text": "must offer an unblemished male from the cattle, sheep, or goats in order for it to be accepted on your behalf." + }, + { + "verseNum": 20, + "text": "You must not present anything with a defect, because it will not be accepted on your behalf." + }, + { + "verseNum": 21, + "text": "When a man presents a peace offering to the LORD from the herd or flock to fulfill a vow or as a freewill offering, it must be without blemish or defect to be acceptable." + }, + { + "verseNum": 22, + "text": "You are not to present to the LORD any animal that is blind, injured, or maimed, or anything with a running sore, a festering rash, or a scab; you must not put any of these on the altar as an offering made by fire to the LORD." + }, + { + "verseNum": 23, + "text": "You may present as a freewill offering an ox or sheep that has a deformed or stunted limb, but it is not acceptable in fulfillment of a vow." + }, + { + "verseNum": 24, + "text": "You are not to present to the LORD an animal whose testicles are bruised, crushed, torn, or cut; you are not to sacrifice them in your land." + }, + { + "verseNum": 25, + "text": "Neither you nor a foreigner shall present food to your God from any such animal. They will not be accepted on your behalf, because they are deformed and flawed.’”" + }, + { + "verseNum": 26, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 27, + "text": "“When an ox, a sheep, or a goat is born, it must remain with its mother for seven days. From the eighth day on, it will be acceptable as an offering made by fire to the LORD." + }, + { + "verseNum": 28, + "text": "But you must not slaughter an ox or a sheep on the same day as its young." + }, + { + "verseNum": 29, + "text": "When you sacrifice a thank offering to the LORD, offer it so that it may be acceptable on your behalf." + }, + { + "verseNum": 30, + "text": "It must be eaten that same day. Do not leave any of it until morning. I am the LORD." + }, + { + "verseNum": 31, + "text": "You are to keep My commandments and practice them. I am the LORD." + }, + { + "verseNum": 32, + "text": "You must not profane My holy name. I must be acknowledged as holy among the Israelites. I am the LORD who sanctifies you," + }, + { + "verseNum": 33, + "text": "who brought you out of the land of Egypt to be your God. I am the LORD.”" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and say to them, ‘These are My appointed feasts, the feasts of the LORD that you are to proclaim as sacred assemblies." + }, + { + "verseNum": 3, + "text": "For six days work may be done, but the seventh day is a Sabbath of complete rest, a day of sacred assembly. You must not do any work; wherever you live, it is a Sabbath to the LORD." + }, + { + "verseNum": 4, + "text": "These are the LORD’s appointed feasts, the sacred assemblies you are to proclaim at their appointed times." + }, + { + "verseNum": 5, + "text": "The Passover to the LORD begins at twilight on the fourteenth day of the first month." + }, + { + "verseNum": 6, + "text": "On the fifteenth day of the same month begins the Feast of Unleavened Bread to the LORD. For seven days you must eat unleavened bread." + }, + { + "verseNum": 7, + "text": "On the first day you are to hold a sacred assembly; you are not to do any regular work." + }, + { + "verseNum": 8, + "text": "For seven days you are to present an offering made by fire to the LORD. On the seventh day there shall be a sacred assembly; you must not do any regular work.’”" + }, + { + "verseNum": 9, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 10, + "text": "“Speak to the Israelites and say, ‘When you enter the land that I am giving you and you reap its harvest, you are to bring to the priest a sheaf of the firstfruits of your harvest." + }, + { + "verseNum": 11, + "text": "And he shall wave the sheaf before the LORD so that it may be accepted on your behalf; the priest is to wave it on the day after the Sabbath." + }, + { + "verseNum": 12, + "text": "On the day you wave the sheaf, you shall offer a year-old lamb without blemish as a burnt offering to the LORD," + }, + { + "verseNum": 13, + "text": "along with its grain offering of two-tenths of an ephah of fine flour mixed with oil—an offering made by fire to the LORD, a pleasing aroma—and its drink offering of a quarter hin of wine." + }, + { + "verseNum": 14, + "text": "You must not eat any bread or roasted or new grain until the very day you have brought this offering to your God. This is to be a permanent statute for the generations to come, wherever you live." + }, + { + "verseNum": 15, + "text": "From the day after the Sabbath, the day you brought the sheaf of the wave offering, you are to count off seven full weeks." + }, + { + "verseNum": 16, + "text": "You shall count off fifty days until the day after the seventh Sabbath, and then present an offering of new grain to the LORD." + }, + { + "verseNum": 17, + "text": "Bring two loaves of bread from your dwellings as a wave offering, each made from two-tenths of an ephah of fine flour, baked with leaven, as the firstfruits to the LORD." + }, + { + "verseNum": 18, + "text": "Along with the bread you are to present seven unblemished male lambs a year old, one young bull, and two rams. They will be a burnt offering to the LORD, together with their grain offerings and drink offerings—an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 19, + "text": "You shall also prepare one male goat as a sin offering and two male lambs a year old as a peace offering." + }, + { + "verseNum": 20, + "text": "The priest is to wave the lambs as a wave offering before the LORD, together with the bread of the firstfruits. The bread and the two lambs shall be holy to the LORD for the priest." + }, + { + "verseNum": 21, + "text": "On that same day you are to proclaim a sacred assembly, and you must not do any regular work. This is to be a permanent statute wherever you live for the generations to come." + }, + { + "verseNum": 22, + "text": "When you reap the harvest of your land, do not reap all the way to the edges of your field or gather the gleanings of your harvest. Leave them for the poor and the foreign resident. I am the LORD your God.’”" + }, + { + "verseNum": 23, + "text": "The LORD also said to Moses," + }, + { + "verseNum": 24, + "text": "“Speak to the Israelites and say, ‘On the first day of the seventh month you are to have a day of rest, a sacred assembly announced by trumpet blasts." + }, + { + "verseNum": 25, + "text": "You must not do any regular work, but you are to present an offering made by fire to the LORD.’”" + }, + { + "verseNum": 26, + "text": "Again the LORD said to Moses," + }, + { + "verseNum": 27, + "text": "“The tenth day of this seventh month is the Day of Atonement. You shall hold a sacred assembly and humble yourselves, and present an offering made by fire to the LORD." + }, + { + "verseNum": 28, + "text": "On this day you are not to do any work, for it is the Day of Atonement, when atonement is made for you before the LORD your God." + }, + { + "verseNum": 29, + "text": "If anyone does not humble himself on this day, he must be cut off from his people." + }, + { + "verseNum": 30, + "text": "I will destroy from among his people anyone who does any work on this day." + }, + { + "verseNum": 31, + "text": "You are not to do any work at all. This is a permanent statute for the generations to come, wherever you live." + }, + { + "verseNum": 32, + "text": "It will be a Sabbath of complete rest for you, and you shall humble yourselves. From the evening of the ninth day of the month until the following evening you are to keep your Sabbath.”" + }, + { + "verseNum": 33, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 34, + "text": "“Speak to the Israelites and say, ‘On the fifteenth day of the seventh month the Feast of Tabernacles to the LORD begins, and it continues for seven days." + }, + { + "verseNum": 35, + "text": "On the first day there shall be a sacred assembly. You must not do any regular work." + }, + { + "verseNum": 36, + "text": "For seven days you are to present an offering made by fire to the LORD. On the eighth day you are to hold a sacred assembly and present an offering made by fire to the LORD. It is a solemn assembly; you must not do any regular work." + }, + { + "verseNum": 37, + "text": "These are the LORD’s appointed feasts, which you are to proclaim as sacred assemblies for presenting offerings by fire to the LORD—burnt offerings and grain offerings, sacrifices and drink offerings, each on its designated day." + }, + { + "verseNum": 38, + "text": "These offerings are in addition to the offerings for the LORD’s Sabbaths, and in addition to your gifts, to all your vow offerings, and to all the freewill offerings you give to the LORD." + }, + { + "verseNum": 39, + "text": "On the fifteenth day of the seventh month, after you have gathered the produce of the land, you are to celebrate a feast to the LORD for seven days. There shall be complete rest on the first day and also on the eighth day." + }, + { + "verseNum": 40, + "text": "On the first day you are to gather the fruit of majestic trees, the branches of palm trees, and the boughs of leafy trees and of willows of the brook. And you are to rejoice before the LORD your God for seven days." + }, + { + "verseNum": 41, + "text": "You are to celebrate this as a feast to the LORD for seven days each year. This is a permanent statute for the generations to come; you are to celebrate it in the seventh month." + }, + { + "verseNum": 42, + "text": "You are to dwell in booths for seven days. All the native-born of Israel must dwell in booths," + }, + { + "verseNum": 43, + "text": "so that your descendants may know that I made the Israelites dwell in booths when I brought them out of the land of Egypt. I am the LORD your God.’”" + }, + { + "verseNum": 44, + "text": "So Moses announced to the Israelites the appointed feasts of the LORD." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Command the Israelites to bring you pure oil of pressed olives for the light, to keep the lamps burning continually." + }, + { + "verseNum": 3, + "text": "Outside the veil of the Testimony in the Tent of Meeting, Aaron is to tend the lamps continually before the LORD from evening until morning. This is to be a permanent statute for the generations to come." + }, + { + "verseNum": 4, + "text": "He shall tend the lamps on the pure gold lampstand before the LORD continually." + }, + { + "verseNum": 5, + "text": "You are also to take fine flour and bake twelve loaves, using two-tenths of an ephah for each loaf," + }, + { + "verseNum": 6, + "text": "and set them in two rows—six per row—on the table of pure gold before the LORD." + }, + { + "verseNum": 7, + "text": "And you are to place pure frankincense near each row, so that it may serve as a memorial portion for the bread, an offering made by fire to the LORD." + }, + { + "verseNum": 8, + "text": "Every Sabbath day the bread is to be set out before the LORD on behalf of the Israelites as a permanent covenant." + }, + { + "verseNum": 9, + "text": "It belongs to Aaron and his sons, who are to eat it in a holy place; for it is to him a most holy part of the offerings made by fire to the LORD—his portion forever.”" + }, + { + "verseNum": 10, + "text": "Now the son of an Israelite mother and an Egyptian father went out among the Israelites, and a fight broke out in the camp between him and an Israelite." + }, + { + "verseNum": 11, + "text": "The son of the Israelite woman blasphemed the Name with a curse. So they brought him to Moses. (His mother’s name was Shelomith daughter of Dibri, of the tribe of Dan.)" + }, + { + "verseNum": 12, + "text": "They placed him in custody until the will of the LORD should be made clear to them." + }, + { + "verseNum": 13, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 14, + "text": "“Take the blasphemer outside the camp, and have all who heard him lay their hands on his head; then have the whole assembly stone him." + }, + { + "verseNum": 15, + "text": "And you are to tell the Israelites, ‘If anyone curses his God, he shall bear the consequences of his sin." + }, + { + "verseNum": 16, + "text": "Whoever blasphemes the name of the LORD must surely be put to death; the whole assembly must surely stone him, whether he is a foreign resident or native; if he blasphemes the Name, he must be put to death." + }, + { + "verseNum": 17, + "text": "And if a man takes the life of anyone else, he must surely be put to death." + }, + { + "verseNum": 18, + "text": "Whoever kills an animal must make restitution—life for life." + }, + { + "verseNum": 19, + "text": "If anyone injures his neighbor, whatever he has done must be done to him:" + }, + { + "verseNum": 20, + "text": "fracture for fracture, eye for eye, tooth for tooth. Just as he injured the other person, the same must be inflicted on him." + }, + { + "verseNum": 21, + "text": "Whoever kills an animal must make restitution, but whoever kills a man must be put to death." + }, + { + "verseNum": 22, + "text": "You are to have the same standard of law for the foreign resident and the native; for I am the LORD your God.’”" + }, + { + "verseNum": 23, + "text": "Then Moses spoke to the Israelites, and they took the blasphemer outside the camp and stoned him. So the Israelites did as the LORD had commanded Moses." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses on Mount Sinai," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and say to them: When you enter the land that I am giving you, the land itself must observe a Sabbath to the LORD." + }, + { + "verseNum": 3, + "text": "For six years you may sow your field and prune your vineyard and gather its crops." + }, + { + "verseNum": 4, + "text": "But in the seventh year there shall be a Sabbath of complete rest for the land—a Sabbath to the LORD.\n \nYou are not to sow your field or prune your vineyard." + }, + { + "verseNum": 5, + "text": "You are not to reap the aftergrowth of your harvest or gather the grapes of your untended vines. The land must have a year of complete rest." + }, + { + "verseNum": 6, + "text": "Whatever the land yields during the Sabbath year shall be food for you—for yourself, your manservant and maidservant, the hired hand or foreigner who stays with you," + }, + { + "verseNum": 7, + "text": "and for your livestock and the wild animals in your land. All its growth may serve as food." + }, + { + "verseNum": 8, + "text": "And you shall count off seven Sabbaths of years—seven times seven years—so that the seven Sabbaths of years amount to forty-nine years." + }, + { + "verseNum": 9, + "text": "Then you are to sound the horn far and wide on the tenth day of the seventh month, the Day of Atonement. You shall sound it throughout your land." + }, + { + "verseNum": 10, + "text": "So you are to consecrate the fiftieth year and proclaim liberty in the land for all its inhabitants. It shall be your Jubilee, when each of you is to return to his property and to his clan." + }, + { + "verseNum": 11, + "text": "The fiftieth year will be a Jubilee for you; you are not to sow the land or reap its aftergrowth or harvest the untended vines." + }, + { + "verseNum": 12, + "text": "For it is a Jubilee; it shall be holy to you. You may eat only the crops taken directly from the field." + }, + { + "verseNum": 13, + "text": "In this Year of Jubilee, each of you shall return to his own property." + }, + { + "verseNum": 14, + "text": "If you make a sale to your neighbor or a purchase from him, you must not take advantage of each other." + }, + { + "verseNum": 15, + "text": "You are to buy from your neighbor according to the number of years since the last Jubilee; he is to sell to you according to the number of harvest years remaining." + }, + { + "verseNum": 16, + "text": "You shall increase the price in proportion to a greater number of years, or decrease it in proportion to a lesser number of years; for he is selling you a given number of harvests." + }, + { + "verseNum": 17, + "text": "Do not take advantage of each other, but fear your God; for I am the LORD your God." + }, + { + "verseNum": 18, + "text": "You are to keep My statutes and carefully observe My judgments, so that you may dwell securely in the land." + }, + { + "verseNum": 19, + "text": "Then the land will yield its fruit, so that you can eat your fill and dwell in safety in the land." + }, + { + "verseNum": 20, + "text": "Now you may wonder, ‘What will we eat in the seventh year if we do not sow or gather our produce?’" + }, + { + "verseNum": 21, + "text": "But I will send My blessing upon you in the sixth year, so that the land will yield a crop sufficient for three years." + }, + { + "verseNum": 22, + "text": "While you are sowing in the eighth year, you will be eating from the previous harvest, until the ninth year’s harvest comes in." + }, + { + "verseNum": 23, + "text": "The land must not be sold permanently, because it is Mine, and you are but foreigners and residents with Me." + }, + { + "verseNum": 24, + "text": "Thus for every piece of property you possess, you must provide for the redemption of the land." + }, + { + "verseNum": 25, + "text": "If your brother becomes impoverished and sells some of his property, his nearest of kin may come and redeem what his brother has sold." + }, + { + "verseNum": 26, + "text": "Or if a man has no one to redeem it for him, but he prospers and acquires enough to redeem his land," + }, + { + "verseNum": 27, + "text": "he shall calculate the years since its sale, repay the balance to the man to whom he sold it, and return to his property." + }, + { + "verseNum": 28, + "text": "But if he cannot obtain enough to repay him, what he sold will remain in possession of the buyer until the Year of Jubilee. In the Jubilee, however, it is to be released, so that he may return to his property." + }, + { + "verseNum": 29, + "text": "If a man sells a house in a walled city, he retains his right of redemption until a full year after its sale; during that year it may be redeemed." + }, + { + "verseNum": 30, + "text": "If it is not redeemed by the end of a full year, then the house in the walled city is permanently transferred to its buyer and his descendants. It is not to be released in the Jubilee." + }, + { + "verseNum": 31, + "text": "But houses in villages with no walls around them are to be considered as open fields. They may be redeemed, and they shall be released in the Jubilee." + }, + { + "verseNum": 32, + "text": "As for the cities of the Levites, the Levites always have the right to redeem their houses in the cities they possess." + }, + { + "verseNum": 33, + "text": "So whatever belongs to the Levites may be redeemed—a house sold in a city they possess—and must be released in the Jubilee, because the houses in the cities of the Levites are their possession among the Israelites." + }, + { + "verseNum": 34, + "text": "But the open pastureland around their cities may not be sold, for this is their permanent possession." + }, + { + "verseNum": 35, + "text": "Now if your countryman becomes destitute and cannot support himself among you, then you are to help him as you would a foreigner or stranger, so that he can continue to live among you." + }, + { + "verseNum": 36, + "text": "Do not take any interest or profit from him, but fear your God, that your countryman may live among you." + }, + { + "verseNum": 37, + "text": "You must not lend him your silver at interest or sell him your food for profit." + }, + { + "verseNum": 38, + "text": "I am the LORD your God, who brought you out of the land of Egypt to give you the land of Canaan and to be your God." + }, + { + "verseNum": 39, + "text": "If a countryman among you becomes destitute and sells himself to you, then you must not force him into slave labor." + }, + { + "verseNum": 40, + "text": "Let him stay with you as a hired worker or temporary resident; he is to work for you until the Year of Jubilee." + }, + { + "verseNum": 41, + "text": "Then he and his children are to be released, and he may return to his clan and to the property of his fathers." + }, + { + "verseNum": 42, + "text": "Because the Israelites are My servants, whom I brought out of the land of Egypt, they are not to be sold as slaves." + }, + { + "verseNum": 43, + "text": "You are not to rule over them harshly, but you shall fear your God." + }, + { + "verseNum": 44, + "text": "Your menservants and maidservants shall come from the nations around you, from whom you may purchase them." + }, + { + "verseNum": 45, + "text": "You may also purchase them from the foreigners residing among you or their clans living among you who are born in your land. These may become your property." + }, + { + "verseNum": 46, + "text": "You may leave them to your sons after you to inherit as property; you can make them slaves for life. But as for your brothers, the Israelites, no man may rule harshly over his brother." + }, + { + "verseNum": 47, + "text": "If a foreigner residing among you prospers, but your countryman dwelling near him becomes destitute and sells himself to the foreigner or to a member of his clan," + }, + { + "verseNum": 48, + "text": "he retains the right of redemption after he has sold himself. One of his brothers may redeem him:" + }, + { + "verseNum": 49, + "text": "either his uncle or cousin or any close relative from his clan may redeem him. Or if he prospers, he may redeem himself." + }, + { + "verseNum": 50, + "text": "He and his purchaser will then count the time from the year he sold himself up to the Year of Jubilee. The price of his sale will be determined by the number of years, based on the daily wages of a hired hand." + }, + { + "verseNum": 51, + "text": "If many years remain, he must pay for his redemption in proportion to his purchase price." + }, + { + "verseNum": 52, + "text": "If only a few years remain until the Year of Jubilee, he is to calculate and pay his redemption according to his remaining years." + }, + { + "verseNum": 53, + "text": "He shall be treated like a man hired from year to year, but a foreign owner must not rule over him harshly in your sight." + }, + { + "verseNum": 54, + "text": "Even if he is not redeemed in any of these ways, he and his children shall be released in the Year of Jubilee." + }, + { + "verseNum": 55, + "text": "For the Israelites are My servants. They are My servants, whom I brought out of the land of Egypt. I am the LORD your God." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "“You must not make idols for yourselves or set up a carved image or sacred pillar; you must not place a sculpted stone in your land to bow down to it. For I am the LORD your God." + }, + { + "verseNum": 2, + "text": "You must keep My Sabbaths and have reverence for My sanctuary. I am the LORD." + }, + { + "verseNum": 3, + "text": "If you follow My statutes and carefully keep My commandments," + }, + { + "verseNum": 4, + "text": "I will give you rains in their season, and the land will yield its produce, and the trees of the field will bear their fruit." + }, + { + "verseNum": 5, + "text": "Your threshing will continue until the grape harvest, and the grape harvest will continue until sowing time; you will have your fill of food to eat and will dwell securely in your land." + }, + { + "verseNum": 6, + "text": "And I will give peace to the land, and you will lie down with nothing to fear. I will rid the land of dangerous animals, and no sword will pass through your land." + }, + { + "verseNum": 7, + "text": "You will pursue your enemies, and they will fall by the sword before you." + }, + { + "verseNum": 8, + "text": "Five of you will pursue a hundred, and a hundred of you will pursue ten thousand, and your enemies will fall by the sword before you." + }, + { + "verseNum": 9, + "text": "I will turn toward you and make you fruitful and multiply you, and I will establish My covenant with you." + }, + { + "verseNum": 10, + "text": "You will still be eating the old supply of grain when you need to clear it out to make room for the new." + }, + { + "verseNum": 11, + "text": "And I will make My dwelling place among you, and My soul will not despise you." + }, + { + "verseNum": 12, + "text": "I will walk among you and be your God, and you will be My people." + }, + { + "verseNum": 13, + "text": "I am the LORD your God, who brought you out of the land of Egypt so that you would no longer be slaves to the Egyptians. I broke the bars of your yoke and enabled you to walk in uprightness." + }, + { + "verseNum": 14, + "text": "If, however, you fail to obey Me and to carry out all these commandments," + }, + { + "verseNum": 15, + "text": "and if you reject My statutes, despise My ordinances, and neglect to carry out all My commandments, and so break My covenant," + }, + { + "verseNum": 16, + "text": "then this is what I will do to you: I will bring upon you sudden terror, wasting disease, and fever that will destroy your sight and drain your life. You will sow your seed in vain, because your enemies will eat it." + }, + { + "verseNum": 17, + "text": "And I will set My face against you, so that you will be defeated by your enemies. Those who hate you will rule over you, and you will flee when no one pursues you." + }, + { + "verseNum": 18, + "text": "And if after all this you will not obey Me, I will proceed to punish you sevenfold for your sins." + }, + { + "verseNum": 19, + "text": "I will break down your stubborn pride and make your sky like iron and your land like bronze," + }, + { + "verseNum": 20, + "text": "and your strength will be spent in vain. For your land will not yield its produce, and the trees of the land will not bear their fruit." + }, + { + "verseNum": 21, + "text": "If you walk in hostility toward Me and refuse to obey Me, I will multiply your plagues seven times, according to your sins." + }, + { + "verseNum": 22, + "text": "I will send wild animals against you to rob you of your children, destroy your livestock, and reduce your numbers, until your roads lie desolate." + }, + { + "verseNum": 23, + "text": "And if in spite of these things you do not accept My discipline, but continue to walk in hostility toward Me," + }, + { + "verseNum": 24, + "text": "then I will act with hostility toward you, and I will strike you sevenfold for your sins." + }, + { + "verseNum": 25, + "text": "And I will bring a sword against you to execute the vengeance of the covenant. Though you withdraw into your cities, I will send a plague among you, and you will be delivered into the hand of the enemy." + }, + { + "verseNum": 26, + "text": "When I cut off your supply of bread, ten women will bake your bread in a single oven and dole out your bread by weight, so that you will eat but not be satisfied." + }, + { + "verseNum": 27, + "text": "But if in spite of all this you do not obey Me, but continue to walk in hostility toward Me," + }, + { + "verseNum": 28, + "text": "then I will walk in fury against you, and I, even I, will punish you sevenfold for your sins." + }, + { + "verseNum": 29, + "text": "You will eat the flesh of your own sons and daughters." + }, + { + "verseNum": 30, + "text": "I will destroy your high places, cut down your incense altars, and heap your lifeless bodies on the lifeless remains of your idols; and My soul will despise you." + }, + { + "verseNum": 31, + "text": "I will reduce your cities to rubble and lay waste your sanctuaries, and I will refuse to smell the pleasing aroma of your sacrifices." + }, + { + "verseNum": 32, + "text": "And I will lay waste the land, so that your enemies who dwell in it will be appalled." + }, + { + "verseNum": 33, + "text": "But I will scatter you among the nations and will draw out a sword after you as your land becomes desolate and your cities are laid waste." + }, + { + "verseNum": 34, + "text": "Then the land shall enjoy its Sabbaths all the days it lies desolate, while you are in the land of your enemies. At that time the land will rest and enjoy its Sabbaths." + }, + { + "verseNum": 35, + "text": "As long as it lies desolate, the land will have the rest it did not receive during the Sabbaths when you lived in it." + }, + { + "verseNum": 36, + "text": "As for those of you who survive, I will send a faintness into their hearts in the lands of their enemies, so that even the sound of a windblown leaf will put them to flight. And they will flee as one flees the sword, and fall when no one pursues them." + }, + { + "verseNum": 37, + "text": "They will stumble over one another as before the sword, though no one is behind them. So you will not be able to stand against your enemies." + }, + { + "verseNum": 38, + "text": "You will perish among the nations, and the land of your enemies will consume you." + }, + { + "verseNum": 39, + "text": "Those of you who survive in the lands of your enemies will waste away in their iniquity and will decay in the sins of their fathers." + }, + { + "verseNum": 40, + "text": "But if they will confess their iniquity and that of their fathers in the unfaithfulness that they practiced against Me, by which they have also walked in hostility toward Me—" + }, + { + "verseNum": 41, + "text": "and I acted with hostility toward them and brought them into the land of their enemies—and if their uncircumcised hearts will be humbled and they will make amends for their iniquity," + }, + { + "verseNum": 42, + "text": "then I will remember My covenant with Jacob and My covenant with Isaac and My covenant with Abraham, and I will remember the land." + }, + { + "verseNum": 43, + "text": "For the land will be abandoned by them, and it will enjoy its Sabbaths by lying desolate without them. And they will pay the penalty for their iniquity, because they rejected My ordinances and abhorred My statutes." + }, + { + "verseNum": 44, + "text": "Yet in spite of this, when they are in the land of their enemies, I will not reject or despise them so as to destroy them and break My covenant with them; for I am the LORD their God." + }, + { + "verseNum": 45, + "text": "But for their sake I will remember the covenant with their fathers, whom I brought out of the land of Egypt in the sight of the nations, that I might be their God. I am the LORD.”" + }, + { + "verseNum": 46, + "text": "These are the statutes, ordinances, and laws that the LORD established between Himself and the Israelites through Moses on Mount Sinai." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and say to them, ‘When someone makes a special vow to the LORD involving the value of persons," + }, + { + "verseNum": 3, + "text": "if the valuation concerns a male from twenty to sixty years of age, then your valuation shall be fifty shekels of silver, according to the sanctuary shekel." + }, + { + "verseNum": 4, + "text": "Or if it is a female, then your valuation shall be thirty shekels." + }, + { + "verseNum": 5, + "text": "And if the person is from five to twenty years of age, then your valuation for the male shall be twenty shekels, and for the female ten shekels." + }, + { + "verseNum": 6, + "text": "Now if the person is from one month to five years of age, then your valuation for the male shall be five shekels of silver, and for the female three shekels of silver." + }, + { + "verseNum": 7, + "text": "And if the person is sixty years of age or older, then your valuation shall be fifteen shekels for the male and ten shekels for the female." + }, + { + "verseNum": 8, + "text": "But if the one making the vow is too poor to pay the valuation, he is to present the person before the priest, who shall set the value according to what the one making the vow can afford." + }, + { + "verseNum": 9, + "text": "If he vows an animal that may be brought as an offering to the LORD, any such animal given to the LORD shall be holy." + }, + { + "verseNum": 10, + "text": "He must not replace it or exchange it, either good for bad or bad for good. But if he does substitute one animal for another, both that animal and its substitute will be holy." + }, + { + "verseNum": 11, + "text": "But if the vow involves any of the unclean animals that may not be brought as an offering to the LORD, the animal must be presented before the priest." + }, + { + "verseNum": 12, + "text": "The priest shall set its value, whether high or low; as the priest values it, the price will be set." + }, + { + "verseNum": 13, + "text": "If, however, the owner decides to redeem the animal, he must add a fifth to its value." + }, + { + "verseNum": 14, + "text": "Now if a man consecrates his house as holy to the LORD, then the priest shall value it either as good or bad. The price will stand just as the priest values it." + }, + { + "verseNum": 15, + "text": "But if he who consecrated his house redeems it, he must add a fifth to the assessed value, and it will belong to him." + }, + { + "verseNum": 16, + "text": "If a man consecrates to the LORD a parcel of his land, then your valuation shall be proportional to the seed required for it—fifty shekels of silver for every homer of barley seed." + }, + { + "verseNum": 17, + "text": "If he consecrates his field during the Year of Jubilee, the price will stand according to your valuation." + }, + { + "verseNum": 18, + "text": "But if he consecrates his field after the Jubilee, the priest is to calculate the price in proportion to the years left until the next Year of Jubilee, so that your valuation will be reduced." + }, + { + "verseNum": 19, + "text": "And if the one who consecrated the field decides to redeem it, he must add a fifth to the assessed value, and it shall belong to him." + }, + { + "verseNum": 20, + "text": "If, however, he does not redeem the field, or if he has sold it to another man, it may no longer be redeemed." + }, + { + "verseNum": 21, + "text": "When the field is released in the Jubilee, it will become holy, like a field devoted to the LORD; it becomes the property of the priests." + }, + { + "verseNum": 22, + "text": "Now if a man consecrates to the LORD a field he has purchased, which is not a part of his own property," + }, + { + "verseNum": 23, + "text": "then the priest shall calculate for him the value up to the Year of Jubilee, and the man shall pay the assessed value on that day as a sacred offering to the LORD." + }, + { + "verseNum": 24, + "text": "In the Year of Jubilee the field shall return to the one from whom it was bought—the original owner of the land." + }, + { + "verseNum": 25, + "text": "Every valuation will be according to the sanctuary shekel, twenty gerahs to the shekel." + }, + { + "verseNum": 26, + "text": "But no one may consecrate a firstborn of the livestock, because a firstborn belongs to the LORD. Whether it is an ox or a sheep, it is the LORD’s." + }, + { + "verseNum": 27, + "text": "But if it is among the unclean animals, then he may redeem it according to your valuation and add a fifth of its value. If it is not redeemed, then it shall be sold according to your valuation." + }, + { + "verseNum": 28, + "text": "Nothing that a man sets apart to the LORD from all he owns—whether a man, an animal, or his inherited land—can be sold or redeemed; everything so devoted is most holy to the LORD." + }, + { + "verseNum": 29, + "text": "No person set apart for destruction may be ransomed; he must surely be put to death." + }, + { + "verseNum": 30, + "text": "Thus any tithe from the land, whether from the seed of the land or the fruit of the trees, belongs to the LORD; it is holy to the LORD." + }, + { + "verseNum": 31, + "text": "If a man wishes to redeem part of his tithe, he must add a fifth to its value." + }, + { + "verseNum": 32, + "text": "Every tenth animal from the herd or flock that passes under the shepherd’s rod will be holy to the LORD." + }, + { + "verseNum": 33, + "text": "He must not inspect whether it is good or bad, and he shall not make any substitution. But if he does make a substitution, both the animal and its substitute shall become holy; they cannot be redeemed.’”" + }, + { + "verseNum": 34, + "text": "These are the commandments that the LORD gave to Moses for the Israelites on Mount Sinai." + } + ] + } + ] + }, + { + "name": "Numbers", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "On the first day of the second month of the second year after the Israelites had come out of the land of Egypt, the LORD spoke to Moses in the Tent of Meeting in the Wilderness of Sinai. He said:" + }, + { + "verseNum": 2, + "text": "“Take a census of the whole congregation of Israel by their clans and families, listing every man by name, one by one." + }, + { + "verseNum": 3, + "text": "You and Aaron are to number those who are twenty years of age or older by their divisions—everyone who can serve in Israel’s army." + }, + { + "verseNum": 4, + "text": "And one man from each tribe, the head of each family, must be there with you." + }, + { + "verseNum": 5, + "text": "These are the names of the men who are to assist you:\n \n From the tribe of Reuben, Elizur son of Shedeur;" + }, + { + "verseNum": 6, + "text": "from Simeon, Shelumiel son of Zurishaddai;" + }, + { + "verseNum": 7, + "text": "from Judah, Nahshon son of Amminadab;" + }, + { + "verseNum": 8, + "text": "from Issachar, Nethanel son of Zuar;" + }, + { + "verseNum": 9, + "text": "from Zebulun, Eliab son of Helon;" + }, + { + "verseNum": 10, + "text": "from the sons of Joseph:\n \n from Ephraim, Elishama son of Ammihud,\n \n and from Manasseh, Gamaliel son of Pedahzur;" + }, + { + "verseNum": 11, + "text": "from Benjamin, Abidan son of Gideoni;" + }, + { + "verseNum": 12, + "text": "from Dan, Ahiezer son of Ammishaddai;" + }, + { + "verseNum": 13, + "text": "from Asher, Pagiel son of Ocran;" + }, + { + "verseNum": 14, + "text": "from Gad, Eliasaph son of Deuel;" + }, + { + "verseNum": 15, + "text": "and from Naphtali, Ahira son of Enan.”" + }, + { + "verseNum": 16, + "text": "These men were appointed from the congregation; they were the leaders of the tribes of their fathers, the heads of the clans of Israel." + }, + { + "verseNum": 17, + "text": "So Moses and Aaron took these men who had been designated by name," + }, + { + "verseNum": 18, + "text": "and on the first day of the second month they assembled the whole congregation and recorded their ancestry by clans and families, counting one by one the names of those twenty years of age or older," + }, + { + "verseNum": 19, + "text": "just as the LORD had commanded Moses.\n \nSo Moses numbered them in the Wilderness of Sinai:" + }, + { + "verseNum": 20, + "text": "From the sons of Reuben, the firstborn of Israel, according to the records of their clans and families, counting one by one the names of every male twenty years of age or older who could serve in the army," + }, + { + "verseNum": 21, + "text": "those registered to the tribe of Reuben numbered 46,500." + }, + { + "verseNum": 22, + "text": "From the sons of Simeon, according to the records of their clans and families, counting one by one the names of every male twenty years of age or older who could serve in the army," + }, + { + "verseNum": 23, + "text": "those registered to the tribe of Simeon numbered 59,300." + }, + { + "verseNum": 24, + "text": "From the sons of Gad, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 25, + "text": "those registered to the tribe of Gad numbered 45,650." + }, + { + "verseNum": 26, + "text": "From the sons of Judah, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 27, + "text": "those registered to the tribe of Judah numbered 74,600." + }, + { + "verseNum": 28, + "text": "From the sons of Issachar, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 29, + "text": "those registered to the tribe of Issachar numbered 54,400." + }, + { + "verseNum": 30, + "text": "From the sons of Zebulun, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 31, + "text": "those registered to the tribe of Zebulun numbered 57,400." + }, + { + "verseNum": 32, + "text": "From the sons of Joseph:\n \n From the sons of Ephraim, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 33, + "text": "those registered to the tribe of Ephraim numbered 40,500." + }, + { + "verseNum": 34, + "text": "And from the sons of Manasseh, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 35, + "text": "those registered to the tribe of Manasseh numbered 32,200." + }, + { + "verseNum": 36, + "text": "From the sons of Benjamin, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 37, + "text": "those registered to the tribe of Benjamin numbered 35,400." + }, + { + "verseNum": 38, + "text": "From the sons of Dan, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 39, + "text": "those registered to the tribe of Dan numbered 62,700." + }, + { + "verseNum": 40, + "text": "From the sons of Asher, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 41, + "text": "those registered to the tribe of Asher numbered 41,500." + }, + { + "verseNum": 42, + "text": "From the sons of Naphtali, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 43, + "text": "those registered to the tribe of Naphtali numbered 53,400." + }, + { + "verseNum": 44, + "text": "These were the men numbered by Moses and Aaron, with the assistance of the twelve leaders of Israel, each one representing his family." + }, + { + "verseNum": 45, + "text": "So all the Israelites twenty years of age or older who could serve in Israel’s army were counted according to their families." + }, + { + "verseNum": 46, + "text": "And all those counted totaled 603,550." + }, + { + "verseNum": 47, + "text": "The Levites, however, were not numbered along with them by the tribe of their fathers." + }, + { + "verseNum": 48, + "text": "For the LORD had said to Moses:" + }, + { + "verseNum": 49, + "text": "“Do not number the tribe of Levi in the census with the other Israelites." + }, + { + "verseNum": 50, + "text": "Instead, you are to appoint the Levites over the tabernacle of the Testimony, all its furnishings, and everything in it. They shall carry the tabernacle and all its articles, care for it, and camp around it." + }, + { + "verseNum": 51, + "text": "Whenever the tabernacle is to move, the Levites are to take it down, and whenever it is to be pitched, the Levites are to set it up. Any outsider who goes near it must be put to death." + }, + { + "verseNum": 52, + "text": "The Israelites are to camp by their divisions, each man in his own camp and under his own standard." + }, + { + "verseNum": 53, + "text": "But the Levites are to camp around the tabernacle of the Testimony and watch over it, so that no wrath will fall on the congregation of Israel. So the Levites are responsible for the tabernacle of the Testimony.”" + }, + { + "verseNum": 54, + "text": "Thus the Israelites did everything just as the LORD had commanded Moses." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses and Aaron:" + }, + { + "verseNum": 2, + "text": "“The Israelites are to camp around the Tent of Meeting at a distance from it, each man under his standard, with the banners of his family." + }, + { + "verseNum": 3, + "text": "On the east side, toward the sunrise, the divisions of Judah are to camp under their standard:\n \n The leader of the descendants of Judah is Nahshon son of Amminadab," + }, + { + "verseNum": 4, + "text": "and his division numbers 74,600." + }, + { + "verseNum": 5, + "text": "The tribe of Issachar will camp next to it. The leader of the Issacharites is Nethanel son of Zuar," + }, + { + "verseNum": 6, + "text": "and his division numbers 54,400." + }, + { + "verseNum": 7, + "text": "Next will be the tribe of Zebulun. The leader of the Zebulunites is Eliab son of Helon," + }, + { + "verseNum": 8, + "text": "and his division numbers 57,400." + }, + { + "verseNum": 9, + "text": "The total number of men in the divisions of the camp of Judah is 186,400; they shall set out first." + }, + { + "verseNum": 10, + "text": "On the south side, the divisions of Reuben are to camp under their standard:\n \n The leader of the Reubenites is Elizur son of Shedeur," + }, + { + "verseNum": 11, + "text": "and his division numbers 46,500." + }, + { + "verseNum": 12, + "text": "The tribe of Simeon will camp next to it. The leader of the Simeonites is Shelumiel son of Zurishaddai," + }, + { + "verseNum": 13, + "text": "and his division numbers 59,300." + }, + { + "verseNum": 14, + "text": "Next will be the tribe of Gad. The leader of the Gadites is Eliasaph son of Deuel," + }, + { + "verseNum": 15, + "text": "and his division numbers 45,650." + }, + { + "verseNum": 16, + "text": "The total number of men in the divisions of the camp of Reuben is 151,450; they shall set out second." + }, + { + "verseNum": 17, + "text": "In the middle of the camps, the Tent of Meeting is to travel with the camp of the Levites. They are to set out in the order they encamped, each in his own place under his standard." + }, + { + "verseNum": 18, + "text": "On the west side, the divisions of Ephraim are to camp under their standard:\n \n The leader of the Ephraimites is Elishama son of Ammihud," + }, + { + "verseNum": 19, + "text": "and his division numbers 40,500." + }, + { + "verseNum": 20, + "text": "The tribe of Manasseh will be next to it. The leader of the Manassites is Gamaliel son of Pedahzur," + }, + { + "verseNum": 21, + "text": "and his division numbers 32,200." + }, + { + "verseNum": 22, + "text": "Next will be the tribe of Benjamin. The leader of the Benjamites is Abidan son of Gideoni," + }, + { + "verseNum": 23, + "text": "and his division numbers 35,400." + }, + { + "verseNum": 24, + "text": "The total number of men in the divisions of the camp of Ephraim is 108,100; they shall set out third." + }, + { + "verseNum": 25, + "text": "On the north side, the divisions of Dan are to camp under their standard:\n \n The leader of the Danites is Ahiezer son of Ammishaddai," + }, + { + "verseNum": 26, + "text": "and his division numbers 62,700." + }, + { + "verseNum": 27, + "text": "The tribe of Asher will camp next to it. The leader of the Asherites is Pagiel son of Ocran," + }, + { + "verseNum": 28, + "text": "and his division numbers 41,500." + }, + { + "verseNum": 29, + "text": "Next will be the tribe of Naphtali. The leader of the Naphtalites is Ahira son of Enan," + }, + { + "verseNum": 30, + "text": "and his division numbers 53,400." + }, + { + "verseNum": 31, + "text": "The total number of men in the camp of Dan is 157,600; they shall set out last, under their standards.”" + }, + { + "verseNum": 32, + "text": "These are the Israelites, numbered according to their families. The total of those counted in the camps, by their divisions, was 603,550." + }, + { + "verseNum": 33, + "text": "But the Levites were not counted among the other Israelites, as the LORD had commanded Moses." + }, + { + "verseNum": 34, + "text": "So the Israelites did everything the LORD commanded Moses; they camped under their standards in this way and set out in the same way, each man with his clan and his family." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "This is the account of Aaron and Moses at the time the LORD spoke with Moses on Mount Sinai." + }, + { + "verseNum": 2, + "text": "These are the names of the sons of Aaron: Nadab the firstborn, then Abihu, Eleazar, and Ithamar." + }, + { + "verseNum": 3, + "text": "These were Aaron’s sons, the anointed priests, who were ordained to serve as priests." + }, + { + "verseNum": 4, + "text": "Nadab and Abihu, however, died in the presence of the LORD when they offered unauthorized fire before the LORD in the Wilderness of Sinai. And since they had no sons, only Eleazar and Ithamar served as priests during the lifetime of their father Aaron." + }, + { + "verseNum": 5, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 6, + "text": "“Bring the tribe of Levi and present them to Aaron the priest to assist him." + }, + { + "verseNum": 7, + "text": "They are to perform duties for him and for the whole congregation before the Tent of Meeting, attending to the service of the tabernacle." + }, + { + "verseNum": 8, + "text": "They shall take care of all the furnishings of the Tent of Meeting and fulfill obligations for the Israelites by attending to the service of the tabernacle." + }, + { + "verseNum": 9, + "text": "Assign the Levites to Aaron and his sons; they have been given exclusively to him from among the Israelites." + }, + { + "verseNum": 10, + "text": "So you shall appoint Aaron and his sons to carry out the duties of the priesthood; but any outsider who approaches the tabernacle must be put to death.”" + }, + { + "verseNum": 11, + "text": "Again the LORD spoke to Moses, saying," + }, + { + "verseNum": 12, + "text": "“Behold, I have taken the Levites from among the children of Israel in place of every firstborn Israelite from the womb. The Levites belong to Me," + }, + { + "verseNum": 13, + "text": "for all the firstborn are Mine. On the day I struck down every firstborn in the land of Egypt, I consecrated to Myself all the firstborn in Israel, both man and beast. They are Mine; I am the LORD.”" + }, + { + "verseNum": 14, + "text": "Then the LORD spoke to Moses in the Wilderness of Sinai, saying," + }, + { + "verseNum": 15, + "text": "“Number the Levites by their families and clans. You are to count every male a month old or more.”" + }, + { + "verseNum": 16, + "text": "So Moses numbered them according to the word of the LORD, as he had been commanded." + }, + { + "verseNum": 17, + "text": "These were the sons of Levi by name: Gershon, Kohath, and Merari." + }, + { + "verseNum": 18, + "text": "These were the names of the sons of Gershon by their clans: Libni and Shimei." + }, + { + "verseNum": 19, + "text": "The sons of Kohath by their clans were Amram, Izhar, Hebron, and Uzziel." + }, + { + "verseNum": 20, + "text": "And the sons of Merari by their clans were Mahli and Mushi. These were the clans of the Levites, according to their families." + }, + { + "verseNum": 21, + "text": "From Gershon came the Libnite clan and the Shimeite clan; these were the Gershonite clans." + }, + { + "verseNum": 22, + "text": "The number of all the males a month old or more was 7,500." + }, + { + "verseNum": 23, + "text": "The Gershonite clans were to camp on the west, behind the tabernacle," + }, + { + "verseNum": 24, + "text": "and the leader of the families of the Gershonites was Eliasaph son of Lael." + }, + { + "verseNum": 25, + "text": "The duties of the Gershonites at the Tent of Meeting were the tabernacle and tent, its covering, the curtain for the entrance to the Tent of Meeting," + }, + { + "verseNum": 26, + "text": "the curtains of the courtyard, the curtain for the entrance to the courtyard that surrounds the tabernacle and altar, and the cords—all the service for these items." + }, + { + "verseNum": 27, + "text": "From Kohath came the clans of the Amramites, the Izharites, the Hebronites, and the Uzzielites; these were the clans of the Kohathites." + }, + { + "verseNum": 28, + "text": "The number of all the males a month old or more was 8,600. They were responsible for the duties of the sanctuary." + }, + { + "verseNum": 29, + "text": "The clans of the Kohathites were to camp on the south side of the tabernacle," + }, + { + "verseNum": 30, + "text": "and the leader of the families of the Kohathites was Elizaphan son of Uzziel." + }, + { + "verseNum": 31, + "text": "Their duties were the ark, the table, the lampstand, the altars, the articles of the sanctuary used with them, and the curtain—all the service for these items." + }, + { + "verseNum": 32, + "text": "The chief of the leaders of the Levites was Eleazar son of Aaron the priest; he oversaw those responsible for the duties of the sanctuary." + }, + { + "verseNum": 33, + "text": "From Merari came the clans of the Mahlites and Mushites; these were the Merarite clans." + }, + { + "verseNum": 34, + "text": "The number of all the males a month old or more was 6,200." + }, + { + "verseNum": 35, + "text": "The leader of the families of the Merarites was Zuriel son of Abihail; they were to camp on the north side of the tabernacle." + }, + { + "verseNum": 36, + "text": "The duties assigned to the sons of Merari were the tabernacle’s frames, crossbars, posts, bases, and all its equipment—all the service for these items," + }, + { + "verseNum": 37, + "text": "as well as the posts of the surrounding courtyard with their bases, tent pegs, and ropes." + }, + { + "verseNum": 38, + "text": "Moses, Aaron, and Aaron’s sons were to camp to the east of the tabernacle, toward the sunrise, before the Tent of Meeting. They were to perform the duties of the sanctuary as a service on behalf of the Israelites; but any outsider who approached the sanctuary was to be put to death." + }, + { + "verseNum": 39, + "text": "The total number of Levites that Moses and Aaron counted by their clans at the LORD’s command, including all the males a month old or more, was 22,000." + }, + { + "verseNum": 40, + "text": "Then the LORD said to Moses, “Number every firstborn male of the Israelites a month old or more, and list their names." + }, + { + "verseNum": 41, + "text": "You are to take the Levites for Me—I am the LORD—in place of all the firstborn of Israel, and the livestock of the Levites in place of all the firstborn of the livestock of the Israelites.”" + }, + { + "verseNum": 42, + "text": "So Moses numbered all the firstborn of the Israelites, as the LORD had commanded him." + }, + { + "verseNum": 43, + "text": "The total number of the firstborn males a month old or more, listed by name, was 22,273." + }, + { + "verseNum": 44, + "text": "Again the LORD spoke to Moses, saying," + }, + { + "verseNum": 45, + "text": "“Take the Levites in place of all the firstborn of Israel, and the livestock of the Levites in place of their livestock. The Levites belong to Me; I am the LORD." + }, + { + "verseNum": 46, + "text": "To redeem the 273 firstborn Israelites who outnumber the Levites," + }, + { + "verseNum": 47, + "text": "you are to collect five shekels for each one, according to the sanctuary shekel of twenty gerahs." + }, + { + "verseNum": 48, + "text": "Give the money to Aaron and his sons as the redemption price for the excess among the Israelites.”" + }, + { + "verseNum": 49, + "text": "So Moses collected the redemption money from those in excess of the number redeemed by the Levites." + }, + { + "verseNum": 50, + "text": "He collected the money from the firstborn of the Israelites: 1,365 shekels, according to the sanctuary shekel." + }, + { + "verseNum": 51, + "text": "And Moses gave the redemption money to Aaron and his sons in obedience to the word of the LORD, just as the LORD had commanded him." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses and Aaron," + }, + { + "verseNum": 2, + "text": "“Take a census of the Kohathites among the Levites by their clans and families," + }, + { + "verseNum": 3, + "text": "men from thirty to fifty years old—everyone who is qualified to serve in the work at the Tent of Meeting." + }, + { + "verseNum": 4, + "text": "This service of the Kohathites at the Tent of Meeting regards the most holy things." + }, + { + "verseNum": 5, + "text": "Whenever the camp sets out, Aaron and his sons are to go in, take down the veil of the curtain, and cover the ark of the Testimony with it." + }, + { + "verseNum": 6, + "text": "They are to place over this a covering of fine leather, spread a solid blue cloth over it, and insert its poles." + }, + { + "verseNum": 7, + "text": "Over the table of the Presence they are to spread a blue cloth and place the plates and cups on it, along with the bowls and pitchers for the drink offering. The regular bread offering is to remain on it." + }, + { + "verseNum": 8, + "text": "And they shall spread a scarlet cloth over them, cover them with fine leather, and insert the poles." + }, + { + "verseNum": 9, + "text": "They are to take a blue cloth and cover the lampstand used for light, together with its lamps, wick trimmers, and trays, as well as the jars of oil with which to supply it." + }, + { + "verseNum": 10, + "text": "Then they shall wrap it and all its utensils inside a covering of fine leather and put it on the carrying frame." + }, + { + "verseNum": 11, + "text": "Over the gold altar they are to spread a blue cloth, cover it with fine leather, and insert the poles." + }, + { + "verseNum": 12, + "text": "They are to take all the utensils for serving in the sanctuary, place them in a blue cloth, cover them with fine leather, and put them on the carrying frame." + }, + { + "verseNum": 13, + "text": "Then they shall remove the ashes from the bronze altar, spread a purple cloth over it," + }, + { + "verseNum": 14, + "text": "and place on it all the vessels used to serve there: the firepans, meat forks, shovels, and sprinkling bowls—all the equipment of the altar. They are to spread over it a covering of fine leather and insert the poles." + }, + { + "verseNum": 15, + "text": "When Aaron and his sons have finished covering the holy objects and all their equipment, as soon as the camp is ready to move, the Kohathites shall come and do the carrying. But they must not touch the holy objects, or they will die. These are the transportation duties of the Kohathites regarding the Tent of Meeting." + }, + { + "verseNum": 16, + "text": "Eleazar son of Aaron the priest shall oversee the oil for the light, the fragrant incense, the daily grain offering, and the anointing oil. He has oversight of the entire tabernacle and everything in it, including the holy objects and their utensils.”" + }, + { + "verseNum": 17, + "text": "Then the LORD said to Moses and Aaron," + }, + { + "verseNum": 18, + "text": "“Do not allow the Kohathite tribal clans to be cut off from among the Levites." + }, + { + "verseNum": 19, + "text": "In order that they may live and not die when they come near the most holy things, do this for them: Aaron and his sons are to go in and assign each man his task and what he is to carry." + }, + { + "verseNum": 20, + "text": "But the Kohathites are not to go in and look at the holy objects, even for a moment, or they will die.”" + }, + { + "verseNum": 21, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 22, + "text": "“Take a census of the Gershonites as well, by their families and clans," + }, + { + "verseNum": 23, + "text": "from thirty to fifty years old, counting everyone who comes to serve in the work at the Tent of Meeting." + }, + { + "verseNum": 24, + "text": "This is the service of the Gershonite clans regarding work and transport:" + }, + { + "verseNum": 25, + "text": "They are to carry the curtains of the tabernacle, the Tent of Meeting with the covering of fine leather over it, the curtains for the entrance to the Tent of Meeting," + }, + { + "verseNum": 26, + "text": "the curtains of the courtyard, and the curtains for the entrance at the gate of the courtyard that surrounds the tabernacle and altar, along with their ropes and all the equipment for their service. The Gershonites will do all that needs to be done with these items." + }, + { + "verseNum": 27, + "text": "All the service of the Gershonites—all their transport duties and other work—is to be done at the direction of Aaron and his sons; you are to assign to them all that they are responsible to carry." + }, + { + "verseNum": 28, + "text": "This is the service of the Gershonite clans at the Tent of Meeting, and their duties shall be under the direction of Ithamar son of Aaron the priest." + }, + { + "verseNum": 29, + "text": "As for the sons of Merari, you are to number them by their clans and families," + }, + { + "verseNum": 30, + "text": "from thirty to fifty years old, counting everyone who comes to serve in the work of the Tent of Meeting." + }, + { + "verseNum": 31, + "text": "This is the duty for all their service at the Tent of Meeting: to carry the frames of the tabernacle with its crossbars, posts, and bases," + }, + { + "verseNum": 32, + "text": "and the posts of the surrounding courtyard with their bases, tent pegs, and ropes, including all their equipment and everything related to their use. You shall assign by name the items that they are responsible to carry." + }, + { + "verseNum": 33, + "text": "This is the service of the Merarite clans according to all their work at the Tent of Meeting, under the direction of Ithamar son of Aaron the priest.”" + }, + { + "verseNum": 34, + "text": "So Moses, Aaron, and the leaders of the congregation numbered the Kohathites by their clans and families," + }, + { + "verseNum": 35, + "text": "everyone from thirty to fifty years old who came to serve in the work at the Tent of Meeting." + }, + { + "verseNum": 36, + "text": "And those numbered by their clans totaled 2,750." + }, + { + "verseNum": 37, + "text": "These were counted from the Kohathite clans, everyone who could serve at the Tent of Meeting. Moses and Aaron numbered them according to the command of the LORD through Moses." + }, + { + "verseNum": 38, + "text": "Then the Gershonites were numbered by their clans and families," + }, + { + "verseNum": 39, + "text": "everyone from thirty to fifty years old who came to serve in the work at the Tent of Meeting." + }, + { + "verseNum": 40, + "text": "And those numbered by their clans and families totaled 2,630." + }, + { + "verseNum": 41, + "text": "These were counted from the Gershonite clans who served at the Tent of Meeting, whom Moses and Aaron counted at the LORD’s command." + }, + { + "verseNum": 42, + "text": "And the Merarites were numbered by their clans and families," + }, + { + "verseNum": 43, + "text": "everyone from thirty to fifty years old who came to serve in the work at the Tent of Meeting." + }, + { + "verseNum": 44, + "text": "The men registered by their clans numbered 3,200." + }, + { + "verseNum": 45, + "text": "These were counted from the Merarite clans, whom Moses and Aaron numbered at the LORD’s command through Moses." + }, + { + "verseNum": 46, + "text": "So Moses, Aaron, and the leaders of Israel numbered by their clans and families all the Levites" + }, + { + "verseNum": 47, + "text": "from thirty to fifty years old who came to do the work of serving and carrying the Tent of Meeting." + }, + { + "verseNum": 48, + "text": "And the number of men was 8,580." + }, + { + "verseNum": 49, + "text": "At the LORD’s command they were numbered through Moses and each one was assigned his work and burden, as the LORD had commanded Moses." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Command the Israelites to send away from the camp anyone with a skin disease, anyone who has a bodily discharge, and anyone who is defiled by a dead body." + }, + { + "verseNum": 3, + "text": "You must send away male and female alike; send them outside the camp so they will not defile their camp, where I dwell among them.”" + }, + { + "verseNum": 4, + "text": "So the Israelites did this, sending such people outside the camp. They did just as the LORD had instructed Moses." + }, + { + "verseNum": 5, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 6, + "text": "“Tell the Israelites that when a man or woman acts unfaithfully against the LORD by committing any sin against another, that person is guilty" + }, + { + "verseNum": 7, + "text": "and must confess the sin he has committed. He must make full restitution, add a fifth to its value, and give all this to the one he has wronged." + }, + { + "verseNum": 8, + "text": "But if the man has no relative to whom restitution can be made for the wrong, the restitution belongs to the LORD and must be given to the priest along with the ram of atonement, by which the atonement is made for him." + }, + { + "verseNum": 9, + "text": "Every sacred contribution the Israelites bring to the priest shall belong to him." + }, + { + "verseNum": 10, + "text": "Each man’s sacred gifts are his own, but whatever he gives to the priest will belong to the priest.”" + }, + { + "verseNum": 11, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 12, + "text": "“Speak to the Israelites and tell them that if any man’s wife goes astray and is unfaithful to him" + }, + { + "verseNum": 13, + "text": "by sleeping with another man, and it is concealed from her husband and her impurity is undetected (since there is no witness against her and she was not caught in the act)," + }, + { + "verseNum": 14, + "text": "and if a feeling of jealousy comes over her husband and he suspects his wife who has defiled herself—or if a feeling of jealousy comes over him and he suspects her even though she has not defiled herself—" + }, + { + "verseNum": 15, + "text": "then he is to bring his wife to the priest.\n \nHe must also bring for her an offering of a tenth of an ephah of barley flour. He is not to pour oil over it or put frankincense on it, because it is a grain offering for jealousy, an offering of memorial as a reminder of iniquity." + }, + { + "verseNum": 16, + "text": "The priest is to bring the wife forward and have her stand before the LORD." + }, + { + "verseNum": 17, + "text": "Then he is to take some holy water in a clay jar and put some of the dust from the tabernacle floor into the water." + }, + { + "verseNum": 18, + "text": "After the priest has the woman stand before the LORD, he is to let down her hair and place in her hands the grain offering of memorial, which is the grain offering for jealousy. The priest is to hold the bitter water that brings a curse." + }, + { + "verseNum": 19, + "text": "And he is to put the woman under oath and say to her, ‘If no other man has slept with you and you have not gone astray and become defiled while under your husband’s authority, may you be immune to this bitter water that brings a curse." + }, + { + "verseNum": 20, + "text": "But if you have gone astray while under your husband’s authority and have defiled yourself and lain carnally with a man other than your husband’—" + }, + { + "verseNum": 21, + "text": "and the priest shall have the woman swear under the oath of the curse—‘then may the LORD make you an attested curse among your people by making your thigh shrivel and your belly swell." + }, + { + "verseNum": 22, + "text": "May this water that brings a curse enter your stomach and cause your belly to swell and your thigh to shrivel.’\n \nThen the woman is to say, ‘Amen, Amen.’" + }, + { + "verseNum": 23, + "text": "And the priest shall write these curses on a scroll and wash them off into the bitter water." + }, + { + "verseNum": 24, + "text": "He is to have the woman drink the bitter water that brings a curse, and it will enter her and cause her bitter suffering." + }, + { + "verseNum": 25, + "text": "The priest shall take from her hand the grain offering for jealousy, wave it before the LORD, and bring it to the altar." + }, + { + "verseNum": 26, + "text": "Then the priest is to take a handful of the grain offering as a memorial portion and burn it on the altar; after that he is to have the woman drink the water." + }, + { + "verseNum": 27, + "text": "When he has made her drink the water, if she has defiled herself and been unfaithful to her husband, then the water that brings a curse will enter her and cause bitter suffering; her belly will swell, her thigh will shrivel, and she will become accursed among her people." + }, + { + "verseNum": 28, + "text": "But if the woman has not defiled herself and is clean, she will be unaffected and able to conceive children." + }, + { + "verseNum": 29, + "text": "This is the law of jealousy when a wife goes astray and defiles herself while under her husband’s authority," + }, + { + "verseNum": 30, + "text": "or when a feeling of jealousy comes over a husband and he suspects his wife. He is to have the woman stand before the LORD, and the priest is to apply to her this entire law." + }, + { + "verseNum": 31, + "text": "The husband will be free from guilt, but the woman shall bear her iniquity.”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and tell them that if a man or woman makes a special vow, the vow of a Nazirite, to separate himself to the LORD," + }, + { + "verseNum": 3, + "text": "he is to abstain from wine and strong drink. He must not drink vinegar made from wine or strong drink, and he must not drink any grape juice or eat fresh grapes or raisins." + }, + { + "verseNum": 4, + "text": "All the days of his separation, he is not to eat anything that comes from the grapevine, not even the seeds or skins." + }, + { + "verseNum": 5, + "text": "For the entire period of his vow of separation, no razor shall pass over his head. He must be holy until the time of his separation to the LORD is complete; he must let the hair of his head grow long." + }, + { + "verseNum": 6, + "text": "Throughout the days of his separation to the LORD, he must not go near a dead body." + }, + { + "verseNum": 7, + "text": "Even if his father or mother or brother or sister should die, he is not to defile himself, because the crown of consecration to his God is upon his head." + }, + { + "verseNum": 8, + "text": "Throughout the time of his separation, he is holy to the LORD." + }, + { + "verseNum": 9, + "text": "If someone suddenly dies in his presence and defiles his consecrated head of hair, he must shave his head on the day of his cleansing—the seventh day." + }, + { + "verseNum": 10, + "text": "On the eighth day he must bring two turtledoves or two young pigeons to the priest at the entrance to the Tent of Meeting." + }, + { + "verseNum": 11, + "text": "And the priest is to offer one as a sin offering and the other as a burnt offering to make atonement for him, because he has sinned by being in the presence of the dead body. On that day he must consecrate his head again." + }, + { + "verseNum": 12, + "text": "He must rededicate his time of separation to the LORD and bring a year-old male lamb as a guilt offering. But the preceding days shall not be counted, because his separation was defiled." + }, + { + "verseNum": 13, + "text": "Now this is the law of the Nazirite when his time of separation is complete: He must be brought to the entrance to the Tent of Meeting," + }, + { + "verseNum": 14, + "text": "and he is to present an offering to the LORD of an unblemished year-old male lamb as a burnt offering, an unblemished year-old female lamb as a sin offering, and an unblemished ram as a peace offering—" + }, + { + "verseNum": 15, + "text": "together with their grain offerings and drink offerings—and a basket of unleavened cakes made from fine flour mixed with oil and unleavened wafers coated with oil." + }, + { + "verseNum": 16, + "text": "The priest is to present all these before the LORD and make the sin offering and the burnt offering." + }, + { + "verseNum": 17, + "text": "He shall also offer the ram as a peace offering to the LORD, along with the basket of unleavened bread. And the priest is to offer the accompanying grain offering and drink offering." + }, + { + "verseNum": 18, + "text": "Then at the entrance to the Tent of Meeting, the Nazirite is to shave his consecrated head, take the hair, and put it on the fire under the peace offering." + }, + { + "verseNum": 19, + "text": "And the priest is to take the boiled shoulder from the ram, one unleavened cake from the basket, and one unleavened wafer, and put them into the hands of the Nazirite who has just shaved the hair of his consecration." + }, + { + "verseNum": 20, + "text": "The priest shall then wave them as a wave offering before the LORD. This is a holy portion for the priest, in addition to the breast of the wave offering and the thigh that was presented. After that, the Nazirite may drink wine." + }, + { + "verseNum": 21, + "text": "This is the law of the Nazirite who vows his offering to the LORD for his separation, in addition to whatever else he can afford; he must fulfill whatever vow he makes, according to the law of his separation.”" + }, + { + "verseNum": 22, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 23, + "text": "“Tell Aaron and his sons: This is how you are to bless the Israelites. Say to them:" + }, + { + "verseNum": 24, + "text": "‘May the LORD bless you\n and keep you;" + }, + { + "verseNum": 25, + "text": "may the LORD cause His face to shine upon you\n and be gracious to you;" + }, + { + "verseNum": 26, + "text": "may the LORD lift up His countenance toward you\n and give you peace.’" + }, + { + "verseNum": 27, + "text": "So they shall put My name on the Israelites, and I will bless them.”" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB_MD/new_testament.json b/data/en_bible/BSB_MD/new_testament.json new file mode 100644 index 0000000..4975072 --- /dev/null +++ b/data/en_bible/BSB_MD/new_testament.json @@ -0,0 +1,5345 @@ +{ + "testament": "New Testament", + "books": [ + { + "name": "Matthew", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–17) 23 Jesus Himself was about thirty years old when He began His ministry. He was regarded as the son of Joseph, 24 the son of Heli, the son of Matthat, the son of Levi, 25 the son of Melchi, the son of Jannai, the son of Joseph, the son of Mattathias, the son of Amos, 26 the son of Nahum, the son of Esli, the son of Naggai, the son of Maath, the son of Mattathias, 27 the son of Semein, the son of Josech, the son of Joda, the son of Joanan, the son of Rhesa, the son of Zerubbabel, 28 the son of Shealtiel, the son of Neri, the son of Melchi, the son of Addi, the son of Cosam, 29 the son of Elmadam, the son of Er, the son of Joshua, the son of Eliezer, “Do not take money by force or false accusation,” 15 he said. “Be content with your wages.” 30 the son of Jorim, the son of Matthat, the son of Levi, a 16 The people were waiting expectantly and were all wondering in their hearts if John could be the Christ. John answered all of them: “I baptize you with water, but One more powerful than I b will come, the straps of whose sandals I am not c worthy to untie. He will baptize you with the Holy Spirit and with fire. His winnowing fork is in His hand to clear His threshing floor and to gather the wheat into His barn; but He will burn 18 up the chaff with unquenchable fire.” 17 19 20 With these and many other exhortations, John proclaimed the good news to the people. But when he rebuked Herod the tetrarch regarding his brother’s wife Herodias and all the evils he had done, Herod adde" + }, + { + "verseNum": 3, + "text": "–4. ; see" + }, + { + "verseNum": 4, + "text": "–5. not include Cited in" + }, + { + "verseNum": 18, + "text": "–25) then you will not stand at all.’ ” 10 11 Again the LORD spoke to Ahaz, saying, “Ask for a sign from the LORD your God, whether from 12 the depths of Sheol or the heights of heaven.” But Ahaz replied, “I will not ask; I will not test 13 the LORD.” c b 15 14 Then Isaiah said, “Hear now, O house of David! Is it not enough to try the patience of men? Will There- you try the patience of my God as well? fore the Lord Himself will give you a sign: Behold, will be with child and give birth to a the virgin son, and will call Him Immanuel. By the time He knows enough to reject evil and choose good, For before He will be eating curds and honey. the boy knows enough to reject evil and choose good, the land of the two kings you dread will be Judgment to Come" + }, + { + "verseNum": 23, + "text": ". Swift to plunder, quick to carry away hastens pounds or 11.4 kilograms of silver Hebrew Hebrew swirling and sweeping over it, reaching up to the neck; i its spreading streams will cover your entire land, O Immanuel! ; literally a thousand of silver God with us means and and He will call His name Immanuel you will call His name and she will call His name g 1 Maher-shalal-hash-baz Hebrew h 7 the River ; LXX The spoil speeds, the prey ; that is, approximately 25.1 God with us i 8 Immanuel means or ; also in verse 3. Hebrew means . 624 |" + }, + { + "verseNum": 25, + "text": "25 14 a But he had no union with until she gave birth to a Son. And he gave Mary as his wife. her The Pilgrimage of the Magi" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–12) their wealth to the Lord of all the earth. 5 Now, O daughter of troops, mobilize your troops; for a siege is laid against us! With a rod they will strike the cheek 2 of the judge of Israel. c But you, Bethlehem Ephrathah, who are small among the clans of Judah, d devote to destruction out of you will come forth for Me — One to be ruler over Israel Cited in Matt. 2:6 thousands d 2 c 2 Or" + }, + { + "verseNum": 15, + "text": "That is, the northern kingdom of Israel; also in verses 8, 9, and 12 i 2 Or ; The more they Cited in" + }, + { + "verseNum": 16, + "text": "–18) you will understand this. 31 “At that time,” declares the LORD, “I will be the God of all the families of Israel, 2 and they will be My people.” This is what the LORD says: “The people who survived the sword found favor in the wilderness when Israel went to find rest.” 3 b The LORD appeared to us in the past, saying: “I have loved you with an everlasting love; therefore I have drawn you with loving b 3 The LORD appeared to him from afar, saying devotion. 710 |" + }, + { + "verseNum": 18, + "text": "That is, the northern kingdom of Israel; also in verse 20 Hebrew 22 How long will you wander, O faithless daughter? a For the LORD has created a new thing 23 in the land— a woman will shelter a man.” 24 b This is what the LORD of Hosts, the God of Is- rael, says: “When I restore them from captivity, they will once again speak this word in the land of Judah and in its cities: ‘May the LORD bless you, O righteous dwelling place, O holy moun- And Judah and all its cities will dwell tain.’ 25 together in the land, the farmers and those who move with the flocks, for I will refresh the The New Covenant" + }, + { + "verseNum": 19, + "text": "–23) were waiting for the redemption of Jerusalem. 39 When Jesus’ parents had done everything re- quired by the Law of the Lord, they returned to 40 Galilee, to their own town of Nazareth. b And the Child grew and became strong. He was filled with wisdom, and the grace of God was The Boy Jesus at the Temple upon Him. 41 42 Every year His parents went to Jerusalem for And when He was the Feast of the Passover. twelve years old, they went up according to the 43 custom of the Feast. Assuming He was in their company, stayed. they traveled on for a day before they began to 45 look for Him among their relatives and friends. 46 When they could not find Him, they returned Finally, after to Jerusalem to search for Him. three days they found Him in the temple courts, 47 sitting among the teachers, listening to them and And all who heard Him asking them questions. were astounded at His understanding and His 48 answers. When His parents saw Him, they were aston- ished. “Child, why have You done this to us?” His mother asked. “Your father and I have been anx- 49 iously searching for You.” c 50 “Why were you looking for Me?” He asked. “Did you not know that I had to be in My Father’s house But they did not understand the 51 statement He was making to them. ?” Then He went down to Nazareth with them and was obedient to them. But His mother treas- 52 ured up all these things in her heart. And Jesus grew in wisdom and stature, and in The Mission of John the Baptist (Isa. 40:1–5 ; favor with G" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–17 ;" + }, + { + "verseNum": 3, + "text": "," + }, + { + "verseNum": 11, + "text": "," + }, + { + "verseNum": 13, + "text": "–17 ;" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "–17 ;" + }, + { + "verseNum": 4, + "text": "and" + }, + { + "verseNum": 6, + "text": "and" + }, + { + "verseNum": 7, + "text": "and" + }, + { + "verseNum": 10, + "text": "and" + }, + { + "verseNum": 12, + "text": "–17 ;" + }, + { + "verseNum": 15, + "text": "–16 Judgment against Israel’s Pride 20" + }, + { + "verseNum": 18, + "text": "| 863 4 But Jesus answered, “It is written: ‘Man shall not live on bread alone, e but on every word that comes from the ” mouth of God.’ 6 5 Then the devil took Him to the holy city and set Him on the pinnacle of the temple. “If You are the Son of God,” he said, “throw Yourself down. For it is written: ‘He will command His angels concerning You, and they will lift You up in their hands, f so that You will not strike Your foot against a stone.’ ” g 7 Jesus replied, “It is also written: ‘Do not put the 8 Lord your God to the test.’ ” Again, the devil took Him to a very high moun- 9 tain and showed Him all the kingdoms of the “All this I will give You,” world and their glory. 10 he said, “if You will fall down and worship me.” h “Away from Me, Satan!” Jesus told him. “For it is written: ‘Worship the Lord your God and serve 11 Him only.’ ” Then the devil left Him, and angels came and Jesus Begins His Ministry ministered to Him." + }, + { + "verseNum": 19, + "text": "19 11 20 brother Andrew. They were casting a net into the sea, for they were fishermen. “Come, follow Me,” Jesus said, “and I will make you fishers of men.” And at once they left their nets and fol- 21 lowed Him. Going on from there, He saw two other broth- ers, James son of Zebedee and his brother John. They were in a boat with their father Zebedee, mending their nets. Jesus called them, and im- mediately they left the boat and their father and Jesus Heals the Multitudes followed Him." + }, + { + "verseNum": 23, + "text": "–25 ;" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 3, + "text": "–12 ;" + }, + { + "verseNum": 5, + "text": ". 23 40 The steps of a man are ordered by the LORD 24 The LORD helps and delivers them; who takes delight in his journey. a He rescues and saves them from the" + }, + { + "verseNum": 13, + "text": "–16 ;" + }, + { + "verseNum": 21, + "text": ", be upon your hearts. c 18 Cited in" + }, + { + "verseNum": 27, + "text": "–30) iniquity.” 16 2 18 3 “Speak to Then the LORD said to Moses, the Israelites and tell them: I am the You must not follow the prac- LORD your God. tices of the land of Egypt, where you used to live, and you must not follow the practices of the land of Canaan, into which I am bringing you. You 4 must not walk in their customs. 5 You are to practice My judgments and keep My statutes by walking in them. I am the LORD your e God. Keep My statutes and My judgments, for the man who does these things will live by them. 6 I am the LORD. f None of you are to approach any close relative 7 to have sexual relations. I am the LORD. You must not expose the nakedness of your fa- ther by having sexual relations with your mother. She is your mother; you must not have 8 sexual relations with her. You must not have sexual relations with your 9 father’s wife; it would dishonor your father. You must not have sexual relations with your sister, either your father’s daughter or your mother’s daughter, whether she was born in the 10 same home or elsewhere. goat idols You must not have sexual relations with your son’s daughter or your daughter’s daughter, for that would shame your family. f 6 Literally to uncover (their) nakedness ; also in verse 14 the soul d 11 Literally ; or Cited in" + }, + { + "verseNum": 31, + "text": "–32 ;" + }, + { + "verseNum": 32, + "text": ". A talent was worth about twenty years’ wages for a laborer. And he who marries a divorced g 9" + }, + { + "verseNum": 33, + "text": "–37) the LORD had commanded him. 30 2 Then Moses said to the heads of the tribes of Israel, “This is what the LORD If a man makes a vow to the has commanded: LORD or swears an oath to obligate himself by a pledge, he must not break his word; he must do 3 everything he has promised. a 4 5 And if a woman in her father’s house during her youth makes a vow to the LORD or obligates her- self by a pledge, and her father hears about her vow or pledge but says nothing to her, then all the vows or pledges by which she has bound her- self shall stand. But if her father prohibits her on the day he hears about it, then none of the vows or pledges by which she has bound herself shall stand. The LORD will absolve her because 6 her father has prohibited her. 7 If a woman marries while under a vow or rash promise by which she has bound herself, and her husband hears of it but says nothing to her on that day, then the vows or pledges by which she has bound herself shall stand. But if her hus- band prohibits her when he hears of it, he nulli- fies the vow that binds her or the rash promise 9 she has made, and the LORD will absolve her. 8 Every vow a widow or divorced woman pledges 10 to fulfill is binding on her. 11 12 If a woman in her husband’s house has made a vow or put herself under an obligation with an oath, and her husband hears of it but says nothing to her and does not prohibit her, then all the vows or pledges by which she has bound her- But if her husband nullifies self shall stand" + }, + { + "verseNum": 38, + "text": "g 28 or a bull d 17 Or Or be eaten. But the owner of the ox shall not be held 29 responsible. But if the ox has a habit of goring, and its owner has been warned yet does not restrain it, and it kills a man or woman, then the ox must be 30 stoned and its owner must also be put to death. If payment is demanded of him instead, he may redeem his life by paying the full amount de- 31 manded of him. If the ox gores a son or a daughter, it shall be 32 done to him according to the same rule. a If the ox gores a manservant or maidservant, the owner must pay thirty shekels of silver to the master of that servant, and the ox must be 33 stoned. 34 If a man opens or digs a pit and fails to cover it, the owner of and an ox or a donkey falls into it, the pit shall make restitution; he must pay its 35 owner, and the dead animal will be his. If a man’s ox injures his neighbor’s ox and it dies, they must sell the live one and divide the 36 proceeds; they also must divide the dead animal. But if it was known that the ox had a habit of goring, yet its owner failed to restrain it, he shall pay full compensation, ox for ox, and the dead an- Property Laws imal will be his. b 22 “If a man steals an ox or a sheep and slaughters or sells it, he must repay five 2 oxen for an ox and four sheep for a sheep. 3 If a thief is caught breaking in and is beaten to But if death, no one shall be guilty of bloodshed. it happens after sunrise, there is guilt for his bloodshed. 4 A thief must make full restitution;" + }, + { + "verseNum": 43, + "text": "," + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–4) 7 a If there is a poor man among your brothers within any of the gates in the land that the LORD your God is giving you, then you are not to your heart or shut your hand from your harden Instead, you are to open your poor brother. hand to him and freely loan him whatever he 9 needs. 8 Be careful not to harbor this wicked thought in your heart: “The seventh year, the year of re- lease, is near,” so that you look upon your poor brother begrudgingly and give him nothing. He will cry out to the LORD against you, and you will 10 be guilty of sin. 11 Give generously to him, and do not let your heart be grieved when you do so. And because of this the LORD your God will bless you in all your work and in everything to which you put your For there will never cease to be poor in hand. the land; that is why I am commanding you to open wide your hand to your brother and to the Hebrew Servants" + }, + { + "verseNum": 5, + "text": "–15) portion, and it will not be taken away from her.” 11 One day in a place where Jesus had just finished praying, one of His disciples re- quested, “Lord, teach us to pray, just as John 2 taught his disciples.” a So Jesus told them, “When you pray, say: b hallowed be Your name. ‘Father, 3 Your kingdom come. 4 Give us each day our daily bread. And forgive us our sins, for we also forgive everyone who sins c against us. Ask, Seek, Knock" + }, + { + "verseNum": 8, + "text": "| 865 Reconcile quickly with your adversary, while you are still on the way to court. Otherwise, he may hand you over to the judge, and the judge may hand you over to the officer, and you may be Truly I tell you, you will thrown into prison. Adultery" + }, + { + "verseNum": 9, + "text": "9 So then, this is how you should pray: 10 ‘Our Father in heaven, hallowed be Your name. Your kingdom come, Your will be done, on earth as it is in heaven. Give us this day our daily bread. And forgive us our debts, 11 12 13 as we also have forgiven our debtors. a And lead us not into temptation, but deliver us from the evil one. ’ 15 14 For if you forgive men their trespasses, your But if heavenly Father will also forgive you. you do not forgive men their trespasses, neither Proper Fasting will your Father forgive yours. 16 17 When you fast, do not be somber like the hyp- ocrites, for they disfigure their faces to show men they are fasting. Truly I tell you, they already But when you fast, have their full reward. anoint your head and wash your face, so that your fasting will not be obvious to men, but only to your Father, who is unseen. And your Father, Treasures in Heaven" + }, + { + "verseNum": 13, + "text": ". BYZ and TR ; see Matt. 7:9–10. WH ; Vulgate ; also in vv. 18 and 19 42 Woe to you Pharisees! For you pay tithes of mint, rue, and every herb, but you disregard jus- tice and the love of God. You should have prac- 43 ticed the latter without neglecting the former. 44 Woe to you Pharisees! For you love the chief seats in the synagogues and the greetings in the marketplaces. Woe to you! For you are like un- marked graves, which men walk over without 45 even noticing.” One of the experts in the law told Him, “Teacher, when You say these things, You insult 46 us as well.” “Woe to you as well, experts in the law!” He re- plied. “For you weigh men down with heavy bur- dens, but you yourselves will not lift a finger to 47 lighten their load. 48 Woe to you! For you build tombs for the prophets, but it was your fathers who killed them. So you are witnesses consenting to the 49 deeds of your fathers: They killed the prophets, and you build their tombs. Because of this, the wisdom of God said, ‘I will send them prophets and apostles; some of them they will kill and oth- 50 ers they will persecute.’ 51 As a result, this generation will be charged with the blood of all the prophets that has been shed since the foundation of the world, from c the blood of Abel to the blood of Zechariah, who was killed between the altar and the sanctuary. Yes, I tell you, all of it will be charged to this gen- 52 eration. Woe to you experts in the law! For you have taken away the key to knowledge. You your" + }, + { + "verseNum": 19, + "text": "–21) be added unto you. 32 33 Do not be afraid, little flock, for your Father is Sell your pleased to give you the kingdom. possessions and give to the poor. Provide your- selves with purses that will not wear out, an in- exhaustible treasure in heaven, where no thief For where approaches and no moth destroys. Readiness at Any Hour your treasure is, there your heart will be also." + }, + { + "verseNum": 22, + "text": "–24) nah is here. 33 No one lights a lamp and puts it in a cellar or under a basket. Instead, he sets it on a stand, so 34 those who enter can see the light. a b 36 35 Your eye is the lamp of your body. When your eyes are good, your whole body also is full of light. But when they are bad, your body is full of Be careful, then, that the light within darkness. you is not darkness. So if your whole body is full of light, with no part of it in darkness, you will be radiant, as though a lamp were shining on you.” Woes to Pharisees and Experts in the Law" + }, + { + "verseNum": 25, + "text": "–34) treasure for himself but is not rich toward God.” 22 24 Then Jesus said to His disciples, “Therefore I tell you, do not worry about your life, what you 23 will eat, or about your body, what you will wear. For life is more than food, and the body more than clothes. Consider the ravens: They do not sow or reap, they have no storehouse or barn; yet God feeds them. How much more valuable you 25 are than the birds! c 26 Who of you by worrying can add a single hour So if you cannot do such a small to his life? 27 thing, why do you worry about the rest? d 28 Consider how the lilies grow: They do not la- bor or spin. Yet I tell you, not even Solomon in all his glory was adorned like one of these. If that is how God clothes the grass of the field, which is here today and tomorrow is thrown into the furnace, how much more will He clothe you, 29 O you of little faith! 30 And do not be concerned about what you will For the eat or drink. Do not worry about it. Gentiles of the world strive after all these things, 31 and your Father knows that you need them. kingdom, and these things will But seek His e Treasures in Heaven" + }, + { + "verseNum": 33, + "text": ". 934 |" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–6 ;" + }, + { + "verseNum": 7, + "text": "–12) And lead us not into temptation. ” ’ 5 6 Then Jesus said to them, “Suppose one of you goes to his friend at midnight and says, ‘Friend, lend me three loaves of bread, because a friend of mine has come to me on a journey, and I have 7 nothing to set before him.’ And suppose the one inside answers, ‘Do not bother me. My door is already shut, and my chil- dren and I are in bed. I cannot get up to give you 8 anything.’ 10 So I tell you: Ask, and it will be given to you; seek, and you will find; knock, and the door will be opened to you. For everyone who asks re- ceives; he who seeks finds; and to him who 11 knocks, the door will be opened. d 12 13 What father among you, if his son asks for a fish, Or if he will give him a snake instead? asks for an egg, will give him a scorpion? So if you who are evil know how to give good gifts to your children, how much more will your Father in heaven give the Holy Spirit to those A House Divided who ask Him!”" + }, + { + "verseNum": 13, + "text": "–14) til all of it was leavened.” 22 23 Then Jesus traveled throughout the towns and villages, teaching as He made His way toward Je- rusalem. “Lord,” someone asked Him, “will only a few people be saved?” 24 Jesus answered, “Make every effort to enter through the narrow door. For many, I tell you, will try to enter and will not be able. After the donkey b 5 a 35 master of the house gets up and shuts the door, 25" + }, + { + "verseNum": 15, + "text": "–23 ;" + }, + { + "verseNum": 24, + "text": "–27) of the overflow of the heart the mouth speaks. 46 47 48 Why do you call Me ‘Lord, Lord,’ but do not do I will show you what he is like who what I say? comes to Me and hears My words and acts on them: He is like a man building a house, who dug down deep and laid his foundation on the rock. When the flood came, the torrent crashed against that house but could not shake it, because 49 it was well built. b But the one who hears My words and does not act on them is like a man who built his house on ground without a foundation. The torrent crashed against that house, and immediately it The Faith of the Centurion fell—and great was its destruction!”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "–4 ;" + }, + { + "verseNum": 5, + "text": "–13 ;" + }, + { + "verseNum": 13, + "text": "| 867 torrents raged, and the winds blew and beat against that house, and it fell—and great was its The Authority of Jesus collapse!” 28 When Jesus had finished saying these things, 29 the crowds were astonished at His teaching, because He taught as one who had authority, The Leper’s Prayer and not as their scribes." + }, + { + "verseNum": 14, + "text": "Jesus Heals at Peter’s House" + }, + { + "verseNum": 17, + "text": "and" + }, + { + "verseNum": 28, + "text": "–34 ;" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "–8 ;" + }, + { + "verseNum": 9, + "text": "–13 ;" + }, + { + "verseNum": 13, + "text": "and" + }, + { + "verseNum": 14, + "text": "–15 ;" + }, + { + "verseNum": 16, + "text": "–17 ;" + }, + { + "verseNum": 18, + "text": "–26 ;" + }, + { + "verseNum": 27, + "text": "–34) on the bed, and the demon was gone. 31 Then Jesus left the region of Tyre and went e 32 through Sidon to the Sea of Galilee and into the Some people brought region of the Decapolis. to Him a man who was deaf and hardly able to speak, and they begged Jesus to place His hand 33 on him. 37 Jesus ordered them not to tell anyone. But the more He ordered them, the more widely they proclaimed it. The people were utterly aston- ished and said, “He has done all things well! He The Feeding of the Four Thousand makes even the deaf hear and the mute speak!” (2 Kings 4:42–44 ;" + }, + { + "verseNum": 35, + "text": "–38) 10 c 2 After this, the Lord appointed seventy- two others and sent them two by two ahead of Him to every town and place He was about to visit. And He told them, “The harvest is plentiful, but the workers are few. Ask the Lord of the harvest, therefore, to send out workers 3 into His harvest. 4 Go! I am sending you out like lambs among Carry no purse or bag or sandals. Do not “Master,” said John, “we saw someone driving out demons in Your name, and we tried to stop from heaven, just as Elijah did a 54 him, because he does not accompany us.” know what kind of spirit you are of. 56 For the Son of Man did not come to destroy the lives of men, but to save them.” c 1 wolves. greet anyone along the road. ; see 2 Kings 1:10–12. BYZ and TR include BYZ and TR seventy b 55 and He said, “You do not NE, BYZ, and TR ; also in verse 17 930 |" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "–4 ;" + }, + { + "verseNum": 4, + "text": "| 869 Jesus Heals the Blind and Mute" + }, + { + "verseNum": 5, + "text": "The Ministry of the Twelve" + }, + { + "verseNum": 15, + "text": ". Lit. Some A denarius was customarily a day’s wage for a laborer; see Matt. 20:2. ; some manuscripts 38 “Go and see how many loaves you have,” He told them. them touch the fringe of His cloak. And all who The Tradition of the Elders" + }, + { + "verseNum": 16, + "text": "–25) 3 I thank God, whom I serve with a clear con- science as did my forefathers, as I constantly 4 remember you night and day in my prayers. Recalling your tears, I long to see you so that I 5 may be filled with joy. I am reminded of your sincere faith, which first dwelt in your grandmother Lois and your mother 6 Eunice, and I am convinced is in you as well. 7 For this reason I remind you to fan into flame the gift of God, which is in you through the laying a on of my hands. For God has not given us a spirit 8 of fear, but of power, love, and self-control. b 9 10 So do not be ashamed of the testimony of our Lord, or of me, His prisoner. Instead, join me in He suffering for the gospel by the power of God. has saved us and called us to a holy calling, not because of our works, but by His own purpose and by the grace He granted us in Christ Jesus be- And now He has revealed fore time began. this grace through the appearing of our Savior, Christ Jesus, who has abolished death and illumi- nated the way to life and immortality through the to which I was appointed as a preacher, gospel, 12 an apostle, and a teacher. 11 e Hold on to the pattern of sound teaching 14 you have heard from me, with the faith and love that Guard the treasure en- are in Christ Jesus. trusted to you, with the help of the Holy Spirit 15 who dwells in us. f You know that everyone in the Province of has deserted me, including Phygelus and Asia 16 Hermogenes. May the Lord grant mercy to the household of Onesiph" + }, + { + "verseNum": 26, + "text": "–31) rooms will be proclaimed from the housetops. 4 I tell you, My friends, do not be afraid of those 5 who kill the body and after that can do no more. But I will show you whom you should fear: Fear the One who, after you have been killed, has au- thority to throw you into hell. Yes, I tell you, fear b 6 Him! a 7 Are not five sparrows sold for two pennies? Yet not one of them is forgotten by God. And even the very hairs of your head are all num- bered. So do not be afraid; you are worth more Confessing Christ" + }, + { + "verseNum": 32, + "text": "–33) than many sparrows. 8 9 10 I tell you, everyone who confesses Me before men, the Son of Man will also confess him before the angels of God. But whoever denies Me be- fore men will be denied before the angels of And everyone who speaks a word against God. the Son of Man will be forgiven, but whoever blasphemes against the Holy Spirit will not be 11 forgiven. 12 When you are brought before synagogues, rul- ers, and authorities, do not worry about how to defend yourselves or what to say. For at that time the Holy Spirit will teach you what you The Parable of the Rich Fool should say.” 13 Someone in the crowd said to Him, “Teacher, tell my brother to divide the inheritance with 14 me.” 15 But Jesus replied, “Man, who appointed Me And He said judge or executor between you?” to them, “Watch out! Guard yourselves against every form of greed, for one’s life does not con- 16 sist in the abundance of his possessions.” 17 18 Then He told them a parable: “The ground of a So certain rich man produced an abundance. he thought to himself, ‘What shall I do, since I Then he have nowhere to store my crops?’ said, ‘This is what I will do: I will tear down my 19 barns and will build bigger ones, and there I will two assaria b 6 a 5 Then I will store up all my grain and my goods. c 25 a single cubit to his height sider the lilies: They do not spin or weave. Gehenna Greek Greek Or" + }, + { + "verseNum": 34, + "text": "–39 ;" + }, + { + "verseNum": 35, + "text": "–36; God’s Compassion on Israel 14 Shepherd with Your staff Your people, the flock of Your inheritance. a They live alone in a woodland, surrounded by pastures. Let them graze in Bashan and Gilead, as in the days of old. 15 As in the days when you came out 16 of Egypt, I will show My wonders. Nations will see and be ashamed, deprived of all their might. They will put their hands over their 17 mouths, and their ears will become deaf. They will lick the dust like a snake, like reptiles slithering on the ground." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "–6) throughout Judea and all the surrounding region. 18 19 Then John’s disciples informed him about all these things. So John called two of his disciples and sent them to ask the Lord, “Are You the One who was to come, or should we look for someone 20 else?” When the men came to Jesus, they said, “John the Baptist sent us to ask, ‘Are You the One who was to come, or should we look for someone 21 else?’ ” 22 At that very hour Jesus healed many people of their diseases, afflictions, and evil spirits, and He gave sight to many who were blind. So He re- plied, “Go back and report to John what you have seen and heard: The blind receive sight, the lame walk, the lepers are cleansed, the deaf hear, the dead are raised, and the good news is preached because its foundation was on the rock d Lit. Literally , probably a wooden plank or open coffin A ; see Matt. 7:25. was one afflicted with a skin disease. See Lev. 13. d 22 BYZ and TR leper 23 a 38" + }, + { + "verseNum": 7, + "text": "–19 ;" + }, + { + "verseNum": 10, + "text": "," + }, + { + "verseNum": 20, + "text": "–24) Sodom than for that town. 13 12 Woe to you, Chorazin! Woe to you, Bethsaida! For if the miracles that were performed in you had been performed in Tyre and Sidon, they would have repented long ago, sitting in sack- But it will be more bearable cloth and ashes. 15 for Tyre and Sidon at the judgment than for you. 14 And you, Capernaum, will you be lifted up to 16 heaven? No, you will be brought down to Hades! Whoever listens to you listens to Me; whoever rejects you rejects Me; and whoever rejects Me The Joyful Return rejects the One who sent Me.” 17 The seventy-two returned with joy and said, “Lord, even the demons submit to us in Your 18 name.” 19 So He told them, “I saw Satan fall like lightning Behold, I have given you author- from heaven. ity to tread on snakes and scorpions, and over all 20 the power of the enemy. Nothing will harm you. Nevertheless, do not rejoice that the spirits submit to you, but rejoice that your names are Jesus’ Prayer of Thanksgiving written in heaven.”" + }, + { + "verseNum": 25, + "text": "–30) 21 At that time Jesus rejoiced in the Holy Spirit and declared, “I praise You, Father, Lord of heaven and earth, because You have hidden these things from the wise and learned, and a 7 d 35 revealed them to little children. Yes, Father, for 22 this was well-pleasing in Your sight. All things have been entrusted to Me by My Fa- ther. No one knows who the Son is except the Fa- ther, and no one knows who the Father is except the Son and those to whom the Son chooses to 23 reveal Him.” 24 Then Jesus turned to the disciples and said pri- vately, “Blessed are the eyes that see what you For I tell you that many prophets and see. kings desired to see what you see but did not see The Parable of the Good Samaritan it, and to hear what you hear but did not hear it.” 25 One day an expert in the law stood up to test Him. “Teacher,” he asked, “what must I do to in- 26 herit eternal life?” “What is written in the Law?” Jesus replied. 27 “How do you read it?” He answered, “ ‘Love the Lord your God with all your heart and with all your soul and with all your strength and with all your mind’ and ‘Love 28 your neighbor as yourself.’ ” b c “You have answered correctly,” Jesus said. “Do 29 this and you will live.” But wanting to justify himself, he asked Jesus, 30 “And who is my neighbor?” Jesus took up this question and said, “A man was going down from Jerusalem to Jericho when he fell into the hands of robbers. They stripped him, beat him, and went away, leaving him half 31 dead. Now by ch" + }, + { + "verseNum": 29, + "text": "| 871 g prophesied until John. 15 accept it, he is the Elijah who was to come. 16 And if you are willing to h He who has ears, let him hear. To what can I compare this generation? They are like children sitting in the marketplaces and 17 calling out to others: ‘We played the flute for you, and you did not dance; we sang a dirge, 18 and you did not mourn.’ 19 For John came neither eating nor drinking, and The Son of Man they say, ‘He has a demon!’ came eating and drinking, and they say, ‘Look at this glutton and drunkard, a friend of tax collec- tors and sinners!’ But wisdom is vindicated by Woe to the Unrepentant" + }, + { + "verseNum": 30, + "text": "30 humble in heart, and you will find rest for your For My yoke is easy and My burden is souls. The Lord of the Sabbath light.” (1 Samuel 21:1–7 ;" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "–8 ;" + }, + { + "verseNum": 7, + "text": "Or Or Also for you, O Judah, a harvest is appointed, i when I restore My people from captivity. house of wickedness 812 |" + }, + { + "verseNum": 9, + "text": "–14 ;" + }, + { + "verseNum": 15, + "text": "–21) their images are as empty as the wind. 42 “Here is My Servant, whom I uphold, My Chosen One, in whom My soul delights. I will put My Spirit on Him, 2 and He will bring justice to the nations. He will not cry out or raise His voice, 3 nor make His voice heard in the streets. A bruised reed He will not break and a smoldering wick He will not 4 extinguish; b He will faithfully bring forth justice. He will not grow weak or discouraged before He has established justice on the earth. c In His law the islands will put their hope.” 5 This is what God the LORD says— He who created the heavens and stretched them out, who spread out the earth and its offspring, who gives breath to the people on it 6 and life to those who walk in it: “I, the LORD, have called you for a righteous purpose, and I will take hold of your hand. I will keep you and appoint you to be a covenant for the people 7 and a light to the nations, to open the eyes of the blind, to bring prisoners out of the dungeon 8 and those sitting in darkness out from the prison house." + }, + { + "verseNum": 18, + "text": "–21 Or ; also in verse 12 Or or 654 |" + }, + { + "verseNum": 22, + "text": "–30 ;" + }, + { + "verseNum": 31, + "text": "–32) can plunder his house. 28 Still other seed fell on good soil, where it sprouted, grew up, and produced a crop—one bearing thirtyfold, another sixtyfold, and another 9 a hundredfold.” Then Jesus said, “He who has ears to hear, let The Purpose of Jesus’ Parables him hear.”" + }, + { + "verseNum": 33, + "text": "–37) 43 44 45 No good tree bears bad fruit, nor does a bad For each tree is known by tree bear good fruit. its own fruit. Indeed, figs are not gathered from thornbushes, nor grapes from brambles. The good man brings good things out of the good treasure of his heart, and the evil man brings evil things out of the evil treasure of his heart. For out The House on the Rock" + }, + { + "verseNum": 38, + "text": "–42 ;" + }, + { + "verseNum": 46, + "text": "–50 ;" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–9 ;" + }, + { + "verseNum": 10, + "text": "–17 ;" + }, + { + "verseNum": 14, + "text": "," + }, + { + "verseNum": 15, + "text": "," + }, + { + "verseNum": 18, + "text": "–23 ;" + }, + { + "verseNum": 24, + "text": "–30) 17 Now the word of the LORD came to me, “Son of man, pose a riddle; saying, and tell speak a parable to the house of Israel them that this is what the Lord GOD says: 3 2 a ‘A great eagle with great wings and long pinions, full of feathers of many colors, came to Lebanon 4 and took away the top of the cedar. He plucked off its topmost shoot, 5 carried it to the land of merchants, and planted it in a city of traders. He took some of the seed of the land b and planted it in fertile soil; he placed it by abundant waters 6 and set it out like a willow. It sprouted and became a spreading vine, low in height, with branches turned toward him; yet its roots remained where it stood. So it became a vine and yielded branches 7 and sent out shoots. But there was another great eagle with great wings and many feathers. And behold, this vine bent its roots" + }, + { + "verseNum": 31, + "text": "–32 ;" + }, + { + "verseNum": 33, + "text": ") nested in its branches.” 20 21 Again He asked, “To what can I compare the kingdom of God? It is like leaven that a woman took and mixed into three measures of flour, un- The Narrow Door" + }, + { + "verseNum": 34, + "text": "–35) A Maskil d of Asaph. 1 2 Give ear, O my people, to my instruction; listen to the words of my mouth. I will open my mouth in parables; e 3 I will utter things hidden from the beginning, that we have heard and known 4 and our fathers have relayed to us. We will not hide them from their children but will declare to the next generation the praises of the LORD and His might a 10 b 10 Surely Your wrath against men brings You praise, and the survivors of Your wrath will be restrained. Has His promise failed for all time? “To this I will appeal: to the years of the right hand of the Most High.” and the wonders He has performed. were unknown c 19 Or Or times probably a musical or liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. Or Or ; see also LXX; cited in" + }, + { + "verseNum": 35, + "text": "d 1 Maskil e 2 from ancient is 538 |" + }, + { + "verseNum": 36, + "text": "–43) 1 This is the word of the LORD that came to Zephaniah son of Cushi, the son of Gedaliah, the son of Amariah, the son of Hezekiah, in the 2 days of Josiah son of Amon king of Judah: “I will completely sweep away everything from the face of the earth,” declares the LORD. 3 “I will sweep away man and beast; I will sweep away the birds of the air, and the fish of the sea, a and the idols with their wicked worshipers. I will cut off mankind from the face of the earth,” declares the LORD. 4 “I will stretch out My hand against Judah and against all who dwell in Jerusalem. I will cut off from this place every remnant of Baal, 5 the names of the idolatrous and pagan priests— those who bow on the rooftops to worship the host of heaven, those who bow down and swear by 6 the LORD b but also swear by Milcom, and those who turn back from following the LORD, neither seeking the LORD nor inquiring of Him.” The Day of the LORD" + }, + { + "verseNum": 43, + "text": ". Hosea Hosea’s Wife and Children Israel’s Adultery Rebuked 1 This is the word of the LORD that came to Hosea son of Beeri in the days of Uzziah, Jotham, Ahaz, and Hezekiah, kings of Judah, and 2 of Jeroboam son of Jehoash, king of Israel. a When the LORD first spoke through Hosea, He told him, “Go, take a prostitute as your wife and have children of adultery, because this land is flagrantly prostituting itself by departing from 3 the LORD.” So Hosea went and married Gomer daughter of Diblaim, and she conceived and bore him a 4 son. b Then the LORD said to Hosea, “Name him Jezreel, for soon I will bring the bloodshed of Jezreel upon the house of Jehu, and I will put an end to the kingdom of Israel. And on that day I will break the bow of Israel in the Valley of 6 Jezreel.” 5 c Gomer again conceived and gave birth to a daughter, and the LORD said to Hosea, “Name her Lo-ruhamah, for I will no longer have compas- 7 sion on the house of Israel, that I should ever forgive them. Yet I will have compassion on the house of Judah, and I will save them—not by bow or sword or war, not by horses and cavalry, but 8 by the LORD their God.” 9 After she had weaned Lo-ruhamah, Gomer con- And the LORD for you are not My ceived and gave birth to a son. e said, “Name him Lo-ammi, 10 people, and I am not your God. d f 11 Yet the number of the Israelites will be like the sand of the sea, which cannot be measured or counted. And it will happen that in the very place where it was said to them, ‘You" + }, + { + "verseNum": 53, + "text": "–58 ;" + }, + { + "verseNum": 55, + "text": ". 900 |" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "–12 ;" + }, + { + "verseNum": 13, + "text": "–21 ;" + }, + { + "verseNum": 17, + "text": "| 875 The Beheading of John" + }, + { + "verseNum": 18, + "text": "18 19 “Bring them here to Me,” Jesus said. And He directed the crowds to sit down on the grass. Taking the five loaves and the two fish and look- ing up to heaven, He spoke a blessing. Then He broke the loaves and gave them to the disciples, 20 and the disciples gave them to the people. 21 They all ate and were satisfied, and the disci- ples picked up twelve basketfuls of broken pieces that were left over. About five thousand Jesus Walks on Water men were fed, besides women and children." + }, + { + "verseNum": 22, + "text": "–33 ;" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "–9) touched Him were healed." + }, + { + "verseNum": 4, + "text": "and" + }, + { + "verseNum": 8, + "text": "–9 and Mark Cited in b 14 Hebrew; LXX c 16 Hebrew; LXX 7:6–7 1 Corinthians 1:19 Cited in" + }, + { + "verseNum": 10, + "text": "–20) so in many such matters.” 14 13 Once again Jesus called the crowd to Him and 15 said, “All of you, listen to Me and understand: Nothing that enters a man from the outside can defile him; but the things that come out of a man, these are what defile him.” until they have washed their hands to the fist e 8 c 4 —washings of pots and cups and NE and h 10 i cups, pitchers, and kettles. That is, between three and six in the morning Literally g 10 establish" + }, + { + "verseNum": 21, + "text": "–28) 23 24 c 25 Jesus left that place and went to the region of Tyre. Not wanting anyone to know He was there, He entered a house, but was unable to escape their notice. Instead, a woman whose little daughter had an unclean spirit soon heard 26 about Jesus, and she came and fell at His feet. Now she was a Greek woman of Syrophoeni- cian origin, and she kept asking Jesus to drive the 27 demon out of her daughter. “First let the children have their fill,” He said. “For it is not right to take the children’s bread 28 and toss it to the dogs.” d “Yes, Lord,” she replied, “even the dogs 29 the table eat the children’s crumbs.” under Then Jesus told her, “Because of this answer, 30 you may go. The demon has left your daughter.” And she went home and found her child lying The Deaf and Mute Man" + }, + { + "verseNum": 29, + "text": "–39 ;" + }, + { + "verseNum": 38, + "text": ". Or That is, the Ten Cities The Leaven of the Pharisees and of Herod" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "–4 ;" + }, + { + "verseNum": 5, + "text": "–12 ;" + }, + { + "verseNum": 12, + "text": "| 877 These are theft, false testimony, and slander. what defile a man, but eating with unwashed The Faith of the Canaanite Woman hands does not defile him.”" + }, + { + "verseNum": 13, + "text": "Peter’s Confession of Christ" + }, + { + "verseNum": 21, + "text": "–23 ;" + }, + { + "verseNum": 24, + "text": "–28 ;" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 5, + "text": ". 36 50" + }, + { + "verseNum": 14, + "text": "–18 ;" + }, + { + "verseNum": 19, + "text": "–20) 5 The apostles said to the Lord, “Increase our 6 faith!” One day the beggar died and was carried by And the rich man everyone is urged to enter into it a 7 the angels to Abraham’s side. ‘A hundred cors of wheat’ b 16 c And the Lord answered, “If you have faith the size of a mustard seed, you can say to this mul- berry tree, ‘Be uprooted and planted in the sea,’ and it will obey you. ; that is, approximately 1,000 bushels or 35,000 liters (probably about 30 tons or 27 into Abraham’s bosom c 22 Greek metric tons of wheat) Or Greek ; similarly in verse 23 7 26" + }, + { + "verseNum": 22, + "text": "–23 ;" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "–5 ;" + }, + { + "verseNum": 6, + "text": "–9 ;" + }, + { + "verseNum": 10, + "text": "–14) 15 2 Now all the tax collectors and sinners were gathering around to listen to Jesus. So the Pharisees and scribes began to grumble: “This man welcomes sinners and eats with 3 them.” 4 Then Jesus told them this parable: “What man among you, if he has a hundred sheep and loses one of them, does not leave the ninety-nine in the pasture and go after the one that is lost, until he 5 6 22" + }, + { + "verseNum": 15, + "text": "–20) 15 A lone witness is not sufficient to establish any wrongdoing or sin against a man, regardless of what offense he may have committed. A matter must be established by the testimony of two or 16 three witnesses. b 17 If a false witness testifies against someone, ac- both parties to the cusing him of a crime, dispute must stand in the presence of the LORD, 18 before the priests and judges who are in office at The judges shall investigate thor- that time. oughly, and if the witness is proven to be a liar who has falsely accused his brother, you must c do to him as he intended to do to his brother. So 20 you must purge the evil from among you. 19 21 Then the rest of the people will hear and be afraid, and they will never again do anything so d evil among you. You must show no pity: life for life, eye for eye, tooth for tooth, hand for hand, Laws of Warfare and foot for foot. 20 2 When you go out to war against your en- emies and see horses, chariots, and an army larger than yours, do not be afraid of them; for the LORD your God, who brought you out of When you are the land of Egypt, is with you. 3 about to go into battle, the priest is to come for- ward and address the army, saying to them, “Hear, O Israel, today you are going into battle with your enemies. Do not be fainthearted or afraid; do not be alarmed or terrified because of For the LORD your God goes with you to them. fight for you against your enemies, to give you 5 the victory.” 4 Furthermore, the officers are to" + }, + { + "verseNum": 16, + "text": "and 2 Corinthians 13:1 Cited in 1 Corinthians 5:13 6 Atonement for an Unsolved Murder" + }, + { + "verseNum": 17, + "text": "| 879 18 “O unbelieving and perverse generation!” Je- sus replied. “How long must I remain with you? How long must I put up with you? Bring the boy Then Jesus rebuked the demon, here to Me.” and it came out of the boy, and he was healed The Power of Faith" + }, + { + "verseNum": 18, + "text": "32 them, tell it to the church. And if he refuses to lis- church, regard him as you would ten even to the 18 a pagan or a tax collector. Truly I tell you, whatever you bind on earth will be bound in heaven, and whatever you loose Ask in My Name" + }, + { + "verseNum": 19, + "text": "–20) one will take away your joy. 23 In that day you will no longer ask Me anything. Truly, truly, I tell you, whatever you 24 ask the Father in My name, He will give you. Until now you have not asked for anything in My name. Ask and you will receive, so that your 25 joy may be complete. 26 27 I have spoken these things to you in figures of speech. An hour is coming when I will no longer speak to you this way, but will tell you plainly about the Father. In that day you will ask in My name. I am not saying that I will ask the Father on your behalf. For the Father Himself loves you, because you have loved Me and have be- lieved that I came from God. I came from the Father and entered the world. In turn, I will leave 29 the world and go to the Father.” 28 c 30 His disciples said, “See, now You are speaking plainly and without figures of speech. Now we understand that You know all things and that You have no need for anyone to question You. Be- cause of this, we believe that You came from 31 God.” 32 finally believe?” “Do you Jesus replied. “Look, an hour is coming and has already come when you will be scattered, each to his own home, and you will leave Me all alone. Yet I am not alone, because the Father is with Me. I have told you these things so that in Me you may have peace. In the world you will have tribulation. But Prayer for the Son take courage; I have overcome the world!” 33 17 When Jesus had spoken these things, He lifted up His eyes to heaven and said, “Fa- 2 ther, th" + }, + { + "verseNum": 21, + "text": "–35) hospitality. 14 15 Bless those who persecute you. Bless and do 16 Rejoice with those who rejoice; not curse. Live in harmony weep with those who weep. with one another. Do not be proud, but associate 17 with the lowly. Do not be conceited. Do not repay anyone evil for evil. Carefully 18 consider what is right in the eyes of everybody. If it is possible on your part, live at peace with 19 everyone. Do not avenge yourselves, beloved, but leave room for God’s wrath. For it is written: “Venge- 20 ance is Mine; I will repay, says the Lord.” a On the contrary, “If your enemy is hungry, feed him; if he is thirsty, give him a drink. b For in so doing, 21 you will heap burning coals on his head.” Do not be overcome by evil, but overcome evil Submission to Authorities" + }, + { + "verseNum": 22, + "text": ". Seth and Enosh 25 a And Adam again had relations with his wife, and she gave birth to a son and named him Seth, saying, “God has granted me another seed in 26 place of Abel, since Cain killed him.” And to Seth also a son was born, and he called b him Enosh. the name of At that time men began to call upon The Descendants of Adam (1 Chronicles 1:1–3) the LORD. 5 c This is the book of the generations of Adam. 2 In the day that God created man, He made Male and female He and He blessed them. And in the him in His own likeness. created them, 3 day they were created, He called them “man.” d 4 When Adam was 130 years old, he had a son in his own likeness, after his own image; and he And after he had become the named him Seth. father of Seth, Adam lived 800 years and had So Adam lived a total other sons and daughters. 6 of 930 years, and then he died. 7 5 When Seth was 105 years old, he became the fa- And after he had become the ther of Enosh. father of Enosh, Seth lived 807 years and had So Seth lived a total other sons and daughters. 9 of 912 years, and then he died. 8 10 When Enosh was 90 years old, he became the father of Kenan. And after he had become the father of Kenan, Enosh lived 815 years and had other sons and daughters. So Enosh lived a 12 total of 905 years, and then he died. 11 13 When Kenan was 70 years old, he became the And after he had become father of Mahalalel. the father of Mahalalel, Kenan lived 840 years and had other sons and daughters. So Kenan 15 lived a t" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "–12) yourselves, and be at peace with one another.” 10 Then Jesus left that place and went into the region of Judea, beyond the Jordan. Again the crowds came to Him and He taught 2 them, as was His custom. Some Pharisees came to test Him. “Is it lawful 3 for a man to divorce his wife?” they inquired. 4 “What did Moses command you?” He replied. f They answered, “Moses permitted a man to write his wife a certificate of divorce and send a 43 her away.” Gehenna b 43 g 7 6 But Jesus told them, “Moses wrote this com- mandment for you because of your hardness of heart. However, from the beginning of creation, ‘God made them male and female.’ ‘For this 8 reason a man will leave his father and mother and be united to his wife, and the two will be- come one flesh.’ So they are no longer two, but Therefore what God has joined to- one flesh. 10 gether, let man not separate.” 9 h i 11 When they were back inside the house, the dis- ciples asked Jesus about this matter. So He told them, “Whoever divorces his wife and marries 12 another woman commits adultery against her. And if a woman divorces her husband and Jesus Blesses the Children marries another man, she commits adultery.”" + }, + { + "verseNum": 4, + "text": "and" + }, + { + "verseNum": 13, + "text": "–15 ;" + }, + { + "verseNum": 16, + "text": "–30 ;" + }, + { + "verseNum": 18, + "text": "," + }, + { + "verseNum": 19, + "text": "," + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 2, + "text": "." + }, + { + "verseNum": 14, + "text": "| 881 28 c Jesus said to them, “Truly I tell you, in the re- newal of all things, when the Son of Man sits on His glorious throne, you who have followed Me 29 will also sit on twelve thrones, judging the twelve And everyone who has left tribes of Israel. d houses or brothers or sisters or father or mother or children or fields for the sake of My or wife name will receive a hundredfold and will inherit But many who are first will be last, eternal life. The Parable of the Workers and the last will be first. 30 20 “For the kingdom of heaven is like a land- owner who went out early in the morn- He agreed for the day and sent ing to hire workers for his vineyard. to pay them a denarius 3 them into his vineyard. 2 e f About the third hour he went out and saw oth- 4 ers standing in the marketplace doing nothing. ‘You also go into my vineyard,’ he said, ‘and I 5 will pay you whatever is right.’ g So they went. He went out again about the sixth hour and the 6 and did the same thing. ninth hour h About the eleventh hour he went out and found still others standing around. ‘Why have you been standing here all day long doing noth- 7 ing?’ he asked. i ‘Because no one has hired us,’ they answered. 8 So he told them, ‘You also go into my vineyard.’ When evening came, the owner of the vineyard said to his foreman, ‘Call the workers and pay them their wages, starting with the last ones 9 hired and moving on to the first.’ The workers who were hired about the elev- 10 enth hour came and each re" + }, + { + "verseNum": 15, + "text": "15 Do I give this last man the same as I gave you. not have the right to do as I please with what is 16 mine? Or are you envious because I am generous?’ a sitting beside the road. When they heard that Jesus was passing by, they cried out, “Lord, Son 31 of David, have mercy on us!” So the last will be first, and the first will be The Third Prediction of the Passion last.”" + }, + { + "verseNum": 17, + "text": "–19 ;" + }, + { + "verseNum": 20, + "text": "–28) 35 Then James and John, the sons of Zebedee, came to Jesus and declared, “Teacher, we want 36 You to do for us whatever we ask.” “What do you want Me to do for you?” He “We can,” the brothers answered. 40 “You will drink the cup that I drink,” Jesus said, “and you will be baptized with the baptism that I But to sit at My right or left is not undergo. Mine to grant. These seats belong to those for 41 whom they have been prepared.” b 42 When the ten heard about this, they became So Jesus called indignant with James and John. them together and said, “You know that those re- garded as rulers of the Gentiles lord it over them, 43 and their superiors exercise authority over them. But it shall not be this way among you. Instead, whoever wants to become great among you must and whoever wants to be first be your servant, For even the Son of must be the slave of all. Man did not come to be served, but to serve, and Jesus Heals Bartimaeus to give His life as a ransom for many.”" + }, + { + "verseNum": 29, + "text": "–34 ;" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "–11 ;" + }, + { + "verseNum": 5, + "text": "and" + }, + { + "verseNum": 9, + "text": "," + }, + { + "verseNum": 13, + "text": "," + }, + { + "verseNum": 15, + "text": "," + }, + { + "verseNum": 16, + "text": "is probably a You have is probably ; LXX 500 |" + }, + { + "verseNum": 18, + "text": "–22 ;" + }, + { + "verseNum": 23, + "text": "–27 ;" + }, + { + "verseNum": 33, + "text": "–46 ;" + }, + { + "verseNum": 37, + "text": "| 883 The crowds replied, “This is Jesus, the prophet Jesus Cleanses the Temple from Nazareth in Galilee.”" + }, + { + "verseNum": 38, + "text": "38 10 But when the tenants saw the son, they said to one another, ‘This is the heir. Come, let us kill him So they seized him and take his inheritance.’ 40 and threw him out of the vineyard and killed him. 39 Therefore, when the owner of the vineyard re- 41 turns, what will he do to those tenants?” “He will bring those wretches to a wretched end,” they replied, “and will rent out the vineyard to other tenants who will give him his share of 42 the fruit at harvest time.” Jesus said to them, “Have you never read in the Scriptures: ‘The stone the builders rejected has become the cornerstone. a So the servants went out into the streets and gathered everyone they could find, both evil and good, and the wedding hall was filled with 11 guests. 12 But when the king came in to see the guests, he spotted a man who was not dressed in wedding ‘Friend,’ he asked, ‘how did you get in clothes. here without wedding clothes?’ 13 But the man was speechless. Then the king told the servants, ‘Tie him hand and foot, and throw him into the outer darkness, where there will be weeping and gnashing of 14 teeth.’ Paying Taxes to Caesar" + }, + { + "verseNum": 42, + "text": "," + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 15, + "text": "–22 ;" + }, + { + "verseNum": 23, + "text": "–33 ;" + }, + { + "verseNum": 24, + "text": "," + }, + { + "verseNum": 32, + "text": "," + }, + { + "verseNum": 34, + "text": "–40 ;" + }, + { + "verseNum": 37, + "text": "," + }, + { + "verseNum": 39, + "text": "," + }, + { + "verseNum": 41, + "text": "–46 ;" + }, + { + "verseNum": 44, + "text": "," + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "–36) 37 38 As Jesus was speaking, a Pharisee invited Him to dine with him; so He went in and reclined at the table. But the Pharisee was surprised to 39 see that Jesus did not first wash before the meal. 40 Then the Lord said, “Now you Pharisees clean the outside of the cup and dish, but inside you are full of greed and wickedness. You fools! Did 41 not the One who made the outside make the in- side as well? But give as alms the things that are within you, and behold, everything will be a 34 clean for you. When your eye is sound c 51 the house Literally" + }, + { + "verseNum": 21, + "text": "| 885 brother. The same thing happened to the sec- 27 ond and third brothers, down to the seventh. In the resur- rection, then, whose wife will she be of the 29 seven? For all of them were married to her.” And last of all, the woman died. 28 a 30 31 Jesus answered, “You are mistaken because you do not know the Scriptures or the power of In the resurrection, people will neither God. marry nor be given in marriage. Instead, they will be like the angels in heaven. But concerning 32 the resurrection of the dead, have you not read ‘I am the God of Abra- what God said to you: ham, the God of Isaac, and the God of Jacob’ ? He 33 is not the God of the dead, but of the living.” b When the crowds heard this, they were aston- The Greatest Commandment ished at His teaching." + }, + { + "verseNum": 22, + "text": "22 38 he who swears by the temple swears by it and by the One who dwells in it. And he who swears by heaven swears by God’s throne and by the 23 One who sits on it. Woe to you, scribes and Pharisees, you hypocrites! You pay tithes of mint, dill, and cumin. But you have disregarded the weightier matters of the law: justice, mercy, and faithful- ness. You should have practiced the latter, with- You blind guides! out neglecting the former. 25 You strain out a gnat but swallow a camel. 24 a 26 Woe to you, scribes and Pharisees, you hypocrites! You clean the outside of the cup and dish, but inside they are full of greed and self-in- Blind Pharisee! First clean the inside dulgence. of the cup and dish, so that the outside may be- 27 come clean as well. b 28 Woe to you, scribes and Pharisees, you hypocrites! You are like whitewashed tombs, which look beautiful on the outside but on the in- side are full of dead men’s bones and every kind In the same way, on the outside of impurity. you appear to be righteous, but on the inside you 29 are full of hypocrisy and wickedness. 30 Woe to you, scribes and Pharisees, you hypocrites! You build tombs for the prophets and And decorate the monuments of the righteous. you say, ‘If we had lived in the days of our fathers, 31 we would not have been partners with them in So you shedding the blood of the prophets.’ testify against yourselves that you are the sons of those who murdered the prophets. Fill up, 33 then, the measure of the sin of your fat" + }, + { + "verseNum": 37, + "text": "–39) who are first will be last.” 31 30 At that very hour, some Pharisees came to Je- sus and told Him, “Leave this place and get away, 32 because Herod wants to kill You.” 33 But Jesus replied, “Go tell that fox, ‘Look, I will keep driving out demons and healing people to- day and tomorrow, and on the third day I will Nevertheless, I must keep go- reach My goal.’ ing today and tomorrow and the next day, for it is not admissible for a prophet to perish outside 34 of Jerusalem. 35 O Jerusalem, Jerusalem, who kills the prophets and stones those sent to her, how often I have longed to gather your children together as a hen gathers her chicks under her wings, but you were Look, your house is left to you des- unwilling! olate. And I tell you that you will not see Me again until you say, ‘Blessed is He who comes in the Jesus Heals a Man with Dropsy name of the Lord.’ ” a 14 One Sabbath, Jesus went to eat in the home of a leading Pharisee, and those in Right attendance were watching Him closely. So Je- there before Him was a man with dropsy. sus asked the experts in the law and the Phari- 4 sees, “Is it lawful to heal on the Sabbath or not?” 2 3 But they remained silent. 5 Then Jesus took hold of the man, healed him, and b And He asked them, sent him on his way. “Which of you whose son or ox falls into a pit on the Sabbath day will not immediately pull him out?” 936 |" + }, + { + "verseNum": 39, + "text": "," + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "–8 ;" + }, + { + "verseNum": 9, + "text": "–14 ;" + }, + { + "verseNum": 15, + "text": "–25 ;" + }, + { + "verseNum": 26, + "text": "–31 ;" + }, + { + "verseNum": 30, + "text": ", one like a son of man b 13 Perhaps , that is, the Mediterranean Sea" + }, + { + "verseNum": 32, + "text": "–35 ;" + }, + { + "verseNum": 36, + "text": "–51) father of Shem, Ham, and Japheth. 6 2 Now when men began to multiply on the face of the earth and daughters were born to them, the sons of God saw that the daughters of men were beautiful, and they took as wives 3 whomever they chose. h So the LORD said, “My Spirit will not contend for he is mortal; his days shall with man forever, 4 be 120 years.” The Nephilim were on the earth in those days— and afterward as well—when the sons of God had relations with the daughters of men. And they bore them children who became the mighty 5 men of old, men of renown. 6 Then the LORD saw that the wickedness of man was great upon the earth, and that every inclination of the thoughts of his heart was altogether evil all the time. And the LORD regretted that He had made man on the earth, and He was grieved in His heart. So the LORD said, “I will blot out man, whom I have created, from the face of the earth—every man and beast and crawling creature and bird of the air—for I to invoke am grieved that I have made them.” pleased God to call themselves by 7 20 When Jared was 162 years old, he became the father of Enoch. And after he had become the father of Enoch, Jared lived 800 years and had other sons and daughters. So Jared lived a total a 25 Seth of 962 years, and then he died. to profane f 24 probably means or and he was not found, because God had taken him away Cited in" + }, + { + "verseNum": 40, + "text": ". was one afflicted with a skin disease. See Leviticus 13. See" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 2, + "text": "| 887 33 then let those who are in Judea flee to the Let no one on the housetop come And mountains. down to retrieve anything from his house. 19 let no one in the field return for his cloak. 18 20 21 How miserable those days will be for pregnant Pray that your flight will and nursing mothers! For not occur in the winter or on the Sabbath. at that time there will be great tribulation, un- seen from the beginning of the world until now, If those days had and never to be seen again. not been cut short, nobody would be saved. But for the sake of the elect, those days will be cut 23 short. 22 At that time, if anyone says to you, ‘Look, here 24 is the Christ!’ or ‘There He is!’ do not believe it. For false Christs and false prophets will appear and perform great signs and wonders to deceive See, I have even the elect, if that were possible. The Return of the Son of Man told you in advance." + }, + { + "verseNum": 3, + "text": "3 4 The fool- them were foolish, and five were wise. ish ones took their lamps but did not take along 5 But the wise ones took oil in flasks any extra oil. When the bridegroom along with their lamps. was delayed, they all became drowsy and fell 6 asleep. things; I will put you in charge of many things. 22 Enter into the joy of your master!’ The servant who had received the two talents also came and said, ‘Master, you en- trusted me with two talents. See, I have gained 23 two more.’ 13 you.’ At midnight the cry rang out: ‘Here is the bride- 7 groom! Come out to meet him!’ 8 Then all the virgins woke up and trimmed their The foolish ones said to the wise, ‘Give lamps. 9 us some of your oil; our lamps are going out.’ ‘No,’ said the wise ones, ‘or there may not be enough for both us and you. Instead, go to those 10 who sell oil and buy some for yourselves.’ But while they were on their way to buy it, the bridegroom arrived. Those who were ready went in with him to the wedding banquet, and 11 the door was shut. Later the other virgins arrived and said, ‘Lord, 12 lord, open the door for us!’ But he replied, ‘Truly I tell you, I do not know a Therefore keep watch, because you do not The Parable of the Talents know the day or the hour." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "–5 ;" + }, + { + "verseNum": 6, + "text": "–13 ;" + }, + { + "verseNum": 14, + "text": "–16 ;" + }, + { + "verseNum": 17, + "text": "–19 ;" + }, + { + "verseNum": 20, + "text": "–30 ; scribed. And they prepared the Passover." + }, + { + "verseNum": 29, + "text": "| 889 Then the righteous will answer Him, ‘Lord, when did we see You hungry and feed You, or 38 thirsty and give You something to drink? When did we see You a stranger and take You When did we see in, or naked and clothe You? 40 You sick or in prison and visit You?’ 39 And the King will reply, ‘Truly I tell you, what- ever you did for one of the least of these brothers 41 of Mine, you did for Me.’ 42 Then He will say to those on His left, ‘Depart from Me, you who are cursed, into the eternal fire For I prepared for the devil and his angels. was hungry and you gave Me nothing to eat, I was I was thirsty and you gave Me nothing to drink, a stranger and you did not take Me in, I was naked and you did not clothe Me, I was sick and 44 in prison and you did not look after Me.’ 43 And they too will reply, ‘Lord, when did we see You hungry or thirsty or a stranger or naked or 45 sick or in prison, and did not minister to You?’ Then the King will answer, ‘Truly I tell you, whatever you did not do for one of the least of 46 these, you did not do for Me.’ And they will go away into eternal punish- The Plot to Kill Jesus ment, but the righteous into eternal life.”" + }, + { + "verseNum": 30, + "text": "on until that day when I drink it anew with you 30 in My Father’s kingdom.” And when they had sung a hymn, they went Jesus Predicts Peter’s Denial (Zech. 13:7–9 ; out to the Mount of Olives." + }, + { + "verseNum": 31, + "text": "–35 ;" + }, + { + "verseNum": 36, + "text": "–46 ;" + }, + { + "verseNum": 64, + "text": "," + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "–2) down and wept. 15 g Early in the morning, the chief priests, el- ders, scribes, and the whole Sanhedrin devised a plan. They bound Jesus, led Him away, 2 and handed Him over to Pilate. But Jesus remained silent and made no the temple b 55 the whole Council So Pilate questioned Him, “Are You the King of c 62 and the rooster crowed the right hand of the Mighty One the Jews?” f 70 d 62 and your speech is similar See" + }, + { + "verseNum": 3, + "text": "–10) vour one another’s flesh.” 10 b 11 Next I took my staff called Favor and cut it in two, revoking the covenant I had made with all the nations. It was revoked on that day, and so the afflicted of the flock who were watching me fir a 2 knew that it was the word of the LORD. broke it juniper b 10 pine Then I told them, “If it seems right to you, give me my wages; but if not, keep them.” So they 13 weighed out my wages, thirty pieces of silver. And the LORD said to me, “Throw it to the pot- ter”—this magnificent price at which they valued me. So I took the thirty pieces of silver and threw 14 them to the potter in the house of the LORD. Then I cut in two my second staff called Union, breaking the brotherhood between Judah 15 and Israel. 16 And the LORD said to me: “Take up once more For be- the equipment of a foolish shepherd. hold, I will raise up a shepherd in the land who will neither care for the lost, nor seek the young, nor heal the broken, nor sustain the healthy, but he will devour the flesh of the choice sheep and 17 tear off their hooves. Woe to the worthless shepherd, who deserts the flock! May a sword strike his arm and his right eye! May his arm be completely withered The Coming Deliverance of Jerusalem and his right eye utterly blinded!” 12 This is the burden of the word of the LORD concerning Israel. Thus declares the LORD, who stretches out the heavens and lays the foundation of the earth, 2 who forms the spirit of man within him: “Behold, I will make Jerusal" + }, + { + "verseNum": 11, + "text": "–14 ;" + }, + { + "verseNum": 15, + "text": "–23 ;" + }, + { + "verseNum": 19, + "text": "| 891 So the high priest stood up and asked Him, “Have You no answer? What are these men testi- 63 fying against You?” But Jesus remained silent. Then the high priest said to Him, “I charge You under oath by the living God: Tell us if You are 64 the Christ, the Son of God.” “You have said it yourself,” Jesus answered. a “But I say to all of you, from now on you will see the Son of Man sitting at the right hand of Power 65 and coming on the clouds of heaven.” b 66 At this, the high priest tore his clothes and de- clared, “He has blasphemed! Why do we need any more witnesses? Look, now you have heard the blasphemy. 67 “He deserves to die,” they answered. 68 What do you think?” Then they spit in His face and struck Him. Oth- and said, “Prophesy to us, ers slapped Him Peter Denies Jesus Christ! Who hit You?”" + }, + { + "verseNum": 20, + "text": "20 But the chief priests and elders persuaded the crowds to ask for Barabbas and to have Jesus put 21 to death. “Which of the two do you want me to release to you?” asked the governor. 22 “Barabbas,” they replied. offered Him wine to drink, mixed with gall; but 35 after tasting it, He refused to drink it. b 36 When they had crucified Him, they divided up And sitting His garments by casting lots. 37 down, they kept watch over Him there. Above His head they posted the written charge “What then should I do with Jesus who is called against Him: Christ?” Pilate asked. 23 They all answered, “Crucify Him!” 38 THIS IS JESUS, THE KING OF THE JEWS. c “Why?” asked Pilate. “What evil has He done?” Pilate Washes His Hands" + }, + { + "verseNum": 24, + "text": "–26) have him release Barabbas to them instead. 12 So Pilate asked them again, “What then do you want me to do with the One you call the King of 13 the Jews?” 14 And they shouted back, “Crucify Him!” “Why?” asked Pilate. “What evil has He done?” 15 But they shouted all the louder, “Crucify Him!” And wishing to satisfy the crowd, Pilate re- leased Barabbas to them. But he had Jesus The Soldiers Mock Jesus" + }, + { + "verseNum": 27, + "text": "–31 ;" + }, + { + "verseNum": 32, + "text": "–56 ;" + }, + { + "verseNum": 35, + "text": "," + }, + { + "verseNum": 43, + "text": "f 22 , a possible reading of the Cited in" + }, + { + "verseNum": 46, + "text": "and" + }, + { + "verseNum": 56, + "text": ". 9 But they quickly reported all these instructions to Peter’s companions. Afterward, Jesus Himself, through them, sent out from east to west the sacred and Mark after v. 8. Other manuscripts contain only a short ending, a version of the following: imperishable proclamation of eternal salvation. Amen. f 9 After the Lord g 17 is a variant of Some early manuscripts end the Gospel of After Jesus had risen early on the first day of the week in tongues Literally h 19 WH ECM, BYZ, and TR Or Luke Dedication to Theophilus" + }, + { + "verseNum": 57, + "text": "–61 ;" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "–10 ;" + }, + { + "verseNum": 16, + "text": "–20) but they did not believe them either. 14 Later, as they were eating, Jesus appeared to the Eleven and rebuked them for their unbelief and hardness of heart, because they did not be- 15 lieve those who had seen Him after He had risen. 16 And He said to them, “Go into all the world and Whoever preach the gospel to every creature. 17 believes and is baptized will be saved, but who- And ever does not believe will be condemned. these signs will accompany those who believe: In g My name they will drive out demons; they will they will pick up speak in new tongues; snakes with their hands, and if they drink any deadly poison, it will not harm them; they will lay their hands on the sick, and they will be made The Ascension" + }, + { + "verseNum": 20, + "text": "| 893 split. The tombs broke open, and the bodies of 53 many saints who had fallen asleep were raised. After Jesus’ resurrection, when they had come out of the tombs, they entered the holy city and 54 appeared to many people. When the centurion and those with him who were guarding Jesus saw the earthquake and all that had happened, they were terrified and said, 55 “Truly this was the Son of God.” 56 And many women were there, watching from a distance. They had followed Jesus from Galilee Among them were Mary to minister to Him. Magdalene, Mary the mother of James and Jo- The Burial of Jesus seph, and the mother of Zebedee’s sons." + } + ] + } + ] + }, + { + "name": "Mark", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–8 ;" + }, + { + "verseNum": 2, + "text": ", and" + }, + { + "verseNum": 3, + "text": "," + }, + { + "verseNum": 7, + "text": ", and" + }, + { + "verseNum": 9, + "text": "–11 ;" + }, + { + "verseNum": 12, + "text": "–13 ;" + }, + { + "verseNum": 14, + "text": "–15 ;" + }, + { + "verseNum": 16, + "text": "–20 ;" + }, + { + "verseNum": 21, + "text": "–28) The First Disciples" + }, + { + "verseNum": 29, + "text": "–34 ;" + }, + { + "verseNum": 35, + "text": "–39) 42 At daybreak, Jesus went out to a solitary place, and the crowds were looking for Him. They came But to Him and tried to keep Him from leaving. Jesus told them, “I must preach the good news of the kingdom of God to the other towns as well, 44 because that is why I was sent.” 43 a 5 b 2 On one occasion, while Jesus was standing with the crowd by the Lake of Gennesaret He pressing in on Him to hear the word of God, saw two boats at the edge of the lake. The fisher- 3 men had left them and were washing their nets. Jesus got into the boat belonging to Simon and asked him to put out a little from shore. And sit- 4 ting down, He taught the people from the boat. When Jesus had finished speaking, He said to Si- mon, “Put out into deep water and let down your 5 nets for a catch.” 6 “Master,” Simon replied, “we have worked hard all night without catching anything. But because When they You say so, I will let down the nets.” 7 had done so, they caught such a large number of fish that their nets began to tear. So they sig- naled to their partners in the other boat to come and help them, and they came and filled both 8 boats so full that they began to sink. 9 When Simon Peter saw this, he fell at Jesus’ knees. “Go away from me, Lord,” he said, “for I am For he and his companions were a sinful man.” 10 astonished at the catch of fish they had taken, and so were his partners James and John, the sons of Zebedee. 11 “Do not be afraid,” Jesus said to Simon. “From And when they now on yo" + }, + { + "verseNum": 39, + "text": ". That is, the Sea of Galilee Leprosy was a term used for various skin diseases. See Leviticus 13. See" + }, + { + "verseNum": 40, + "text": "–45 ;" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–12 ;" + }, + { + "verseNum": 13, + "text": "–17 ;" + }, + { + "verseNum": 18, + "text": "–20 ;" + }, + { + "verseNum": 19, + "text": "19 6 20 Jesus replied, “How can the guests of the bride- groom fast while He is with them? As long as He But the time will is with them, they cannot fast. come when the bridegroom will be taken from The Patches and the Wineskins them; then they will fast." + }, + { + "verseNum": 21, + "text": "–22 ;" + }, + { + "verseNum": 23, + "text": "–28 ;" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–6 ;" + }, + { + "verseNum": 7, + "text": "–12 ;" + }, + { + "verseNum": 13, + "text": "–19 ;" + }, + { + "verseNum": 20, + "text": "–27) 14 e 15 One day Jesus was driving out a demon that was mute. And when the demon was gone, the man who had been mute spoke. The crowds were but some of them said, “It is by Beel- amazed, zebul, the prince of the demons, that He drives And others tested Him by de- out demons.” 17 manding a sign from heaven. 16 18 Knowing their thoughts, Jesus said to them, “Every kingdom divided against itself will be laid waste, and a house divided against a house will If Satan is divided against himself, how can fall. 19 his kingdom stand? After all, you say that I drive out demons by Beelzebul. And if I drive out de- mons by Beelzebul, by whom do your sons drive 20 them out? So then, they will be your judges. But if I drive out demons by the finger of God, 21 then the kingdom of God has come upon you. 22 When a strong man, fully armed, guards his But when house, his possessions are secure. someone stronger attacks and overpowers him, he takes away the armor in which the man 23 trusted, and then he divides up his plunder. He who is not with Me is against Me, and he An Unclean Spirit Returns (Matt. 12:43–45) who does not gather with Me scatters. 24 25 When an unclean spirit comes out of a man, it passes through arid places seeking rest and does not find it. Then it says, ‘I will return to the house 26 On its return, it finds the house swept I left.’ clean and put in order. Then it goes and brings seven other spirits more wicked than itself, and they go in and dwell there. And the final pl" + }, + { + "verseNum": 28, + "text": "–30) who does not gather with Me scatters. 31 32 Therefore I tell you, every sin and blasphemy will be forgiven men, but the blasphemy against Whoever speaks the Spirit will not be forgiven. a word against the Son of Man will be forgiven, but whoever speaks against the Holy Spirit will not be forgiven, either in this age or in the one to come. Beezeboul d 24" + }, + { + "verseNum": 31, + "text": "–35 ;" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "–9 ;" + }, + { + "verseNum": 10, + "text": "–12 ;" + }, + { + "verseNum": 12, + "text": "," + }, + { + "verseNum": 13, + "text": "–20 ;" + }, + { + "verseNum": 21, + "text": "| 897 24 25 8 If a kingdom is divided against out Satan? 26 If a house is divided itself, it cannot stand. And if Satan is against itself, it cannot stand. 27 divided and rises against himself, he cannot stand; his end has come. Indeed, no one can en- ter a strong man’s house to steal his possessions unless he first ties up the strong man. Then he The Unpardonable Sin" + }, + { + "verseNum": 22, + "text": "22 39 For there is noth- Doesn’t he set it on a stand? ing hidden that will not be disclosed, and nothing 23 concealed that will not be brought to light. 24 If anyone has ears to hear, let him hear.” He went on to say, “Pay attention to what you hear. With the measure you use, it will be meas- 25 ured to you, and even more will be added to you. For whoever has will be given more. But whoever does not have, even what he has will be The Seed Growing Secretly taken away from him.” 26 27 Jesus also said, “The kingdom of God is like a man who scatters seed on the ground. Night and day he sleeps and wakes, and the seed 28 sprouts and grows, though he knows not how. All by itself the earth produces a crop—first the stalk, then the head, then grain that ripens And as soon as the grain is ripe, he within. a swings the sickle, because the harvest has The Parable of the Mustard Seed come." + }, + { + "verseNum": 29, + "text": ". Or Or Amos Judgment on Israel’s Neighbors (Jer. 12:14–17) 9 1 a b These are the words of Amos, who was among the sheepherders of Tekoa—what before the he saw concerning Israel two years c earthquake, in the days when Uzziah was king of was king of Judah and Jeroboam son of Jehoash Israel. He said: 2 “The LORD roars from Zion and raises His voice from Jerusalem; 3 the pastures of the shepherds mourn, and the summit of Carmel withers.” This is what the LORD says: “For three transgressions of Damascus, even d four, I will not revoke My judgment, because they threshed Gilead 4 with sledges of iron. 5 So I will send fire upon the house of Hazael to consume the citadels of Ben-hadad. I will break down the gates of Damascus; from the Valley I will cut off the ruler e f of Aven This is what the LORD says: “For three transgressions of Tyre, even four, I will not revoke My judgment, because they delivered up a whole congregation of exiles to Edom and broke a covenant of brotherhood. So I will send fire upon the walls of Tyre 10 11 to consume its citadels.” This is what the LORD says: “For three transgressions of Edom, even four, I will not revoke My judgment, because he pursued his brother with the sword and stifled all compassion; 12 his anger raged continually, and his fury flamed incessantly. So I will send fire upon Teman 13 to consume the citadels of Bozrah.” This is what the LORD says: “For three transgressions of the Ammonites, even four, and the one who wields the scepter in" + }, + { + "verseNum": 30, + "text": "–34 ;" + }, + { + "verseNum": 35, + "text": "–41 ;" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–20 ;" + }, + { + "verseNum": 21, + "text": "–43 ;" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–6 ;" + }, + { + "verseNum": 3, + "text": "." + }, + { + "verseNum": 6, + "text": "| 899 17 Those who had seen it described what had happened to the demon-possessed man and also And the people began to beg Jesus to the pigs. 18 to leave their region. 19 As He was getting into the boat, the man who had been possessed by the demons begged to go But Jesus would not allow him. “Go with Him. home to your own people,” He said, “and tell them how much the Lord has done for you, and 20 what mercy He has shown you.” a So the man went away and began to proclaim how much Jesus had throughout the Decapolis The Healing Touch of Jesus done for him. And everyone was amazed." + }, + { + "verseNum": 7, + "text": "–13 ;" + }, + { + "verseNum": 14, + "text": "–29 ;" + }, + { + "verseNum": 30, + "text": "–44 ;" + }, + { + "verseNum": 45, + "text": "–52 ;" + }, + { + "verseNum": 53, + "text": "–56) the Son of God!” 34 When they had crossed over, they landed And when the men of that at Gennesaret. a 24 place recognized Jesus, they sent word to all the c 30 e 4 when he saw the strong wind many stadia Greek Literally" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–13) were healed. 15 2 Then some Pharisees and scribes came to Jesus from Jerusalem and asked, “Why do Your disciples break the tradition of the elders? They do not wash their hands before 3 they eat.” 4 e 5 Jesus replied, “And why do you break the com- d mand of God for the sake of your tradition? For God said, ‘Honor your father and mother’ and ‘Anyone who curses his father or mother must be But you say that if anyone says to put to death.’ his father or mother, ‘Whatever you would have f received from me is a gift devoted to God,’ he need not honor his father or mother with it. Thus you nullify the word of God for the sake of You hypocrites! Isaiah prophe- your tradition. 8 sied correctly about you: 7 6 9 ‘These people honor Me with their lips, but their hearts are far from Me. They worship Me in vain; g they teach as doctrine the precepts What Defiles a Man" + }, + { + "verseNum": 10, + "text": "," + }, + { + "verseNum": 12, + "text": "); literally" + }, + { + "verseNum": 14, + "text": "–23) ” of men.’ 10 11 Jesus called the crowd to Him and said, “Listen A man is not defiled by what and understand. 12 enters his mouth, but by what comes out of it.” Then the disciples came to Him and said, “Are You aware that the Pharisees were offended 13 when they heard this?” h 14 But Jesus replied, “Every plant that My heav- enly Father has not planted will be pulled up by Disregard them! They are blind its roots. guides. If a blind man leads a blind man, both 15 will fall into a pit.” 16 17 Peter said to Him, “Explain this parable to us.” And when they had climbed back into the boat, the wind died down. Then those who were in the boat worshiped Him, saying, “Truly You are Jesus Heals at Gennesaret" + }, + { + "verseNum": 15, + "text": "| 901 And after checking, they said, “Five—and two 39 fish.” 40 Then Jesus directed them to have the people So they sat sit in groups on the green grass. 41 down in groups of hundreds and fifties. Taking the five loaves and the two fish and looking up to heaven, Jesus spoke a blessing and broke the loaves. Then He gave them to His dis- ciples to set before the people. And He divided 42 the two fish among them all. 43 44 They all ate and were satisfied, and the dis- ciples picked up twelve basketfuls of broken pieces of bread and fish. And there were five Jesus Walks on Water thousand men who had eaten the loaves." + }, + { + "verseNum": 17, + "text": "17 35 f After Jesus had left the crowd and gone into the house, His disciples inquired about the para- 18 ble. Immediately opened!”). the man’s ears were opened and his tongue was released, and he be- 36 gan to speak plainly. “Are you still so dull?” He asked. “Do you not 19 understand? Nothing that enters a man from the because it does not en- outside can defile him, ter his heart, but it goes into the stomach and 20 then is eliminated.” (Thus all foods are clean.) a 21 22 He continued: “What comes out of a man, that For from within the hearts is what defiles him. b of men come evil thoughts, sexual immorality, greed, wickedness, theft, murder, adultery, deceit, debauchery, envy, slander, arrogance, and foolishness. All these evils come from The Faith of the Gentile Woman within, and these are what defile a man.”" + }, + { + "verseNum": 24, + "text": "–30) 21 22 Leaving that place, Jesus withdrew to the dis- And a Canaanite trict of Tyre and Sidon. woman from that region came to Him, crying out, “Lord, Son of David, have mercy on me! My 23 daughter is miserably possessed by a demon.” But Jesus did not answer a word. So His disci- ples came and urged Him, “Send her away, for 24 she keeps crying out after us.” He answered, “I was sent only to the lost sheep 25 of the house of Israel.” The woman came and knelt before Him. “Lord, 26 help me!” she said. But Jesus replied, “It is not right to take the a 27 children’s bread and toss it to the dogs.” “Yes, Lord,” she said, “even the dogs 28 crumbs that fall from their master’s table.” eat the “O woman,” Jesus answered, “your faith is great! Let it be done for you as you desire.” And The Feeding of the Four Thousand her daughter was healed from that very hour. (2 Kings 4:42–44 ;" + }, + { + "verseNum": 31, + "text": "–37) 27 As Jesus went on from there, two blind men followed Him, crying out, “Have mercy on us, Son 28 of David!” After Jesus had entered the house, the blind men came to Him. “Do you believe that I am able to do this?” He asked. 29 “Yes, Lord,” they answered. 30 Then He touched their eyes and said, “Accord- ing to your faith will it be done to you.” And their eyes were opened. Jesus warned them 31 sternly, “See that no one finds out about this!” But they went out and spread the news about 32 Him throughout the land. 33 As they were leaving, a demon-possessed man And when who was mute was brought to Jesus. the demon had been driven out, the man began to speak. The crowds were amazed and said, 34 “Nothing like this has ever been seen in Israel!” But the Pharisees said, “It is by the prince of The Lord of the Harvest" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "–10) 42 Now a man from Baal-shalishah came to the man of God with a sack of twenty loaves of barley bread from the first ripe grain. 43 “Give it to the people to eat,” said Elisha. But his servant asked, “How am I to set twenty loaves before a hundred men?” “Give it to the people to eat,” said Elisha, “for this is what the LORD says: ‘They will eat and have 44 some left over.’ ” So he set it before them, and they ate and had some left over, according to the word of the Naaman Cured of Leprosy" + }, + { + "verseNum": 11, + "text": "–13 ;" + }, + { + "verseNum": 14, + "text": "–21 ;" + }, + { + "verseNum": 27, + "text": "–30 ;" + }, + { + "verseNum": 31, + "text": "–33 ;" + }, + { + "verseNum": 34, + "text": "–38 ;" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "–13 ;" + }, + { + "verseNum": 5, + "text": "| 903 29 “But what about you?” Jesus asked. “Who do you say I am?” 30 Peter answered, “You are the Christ.” And Jesus warned them not to tell anyone Christ’s Passion Foretold about Him." + }, + { + "verseNum": 6, + "text": "6 For they one for Moses, and one for Elijah.” were all so terrified that Peter did not know what 7 else to say. 8 Then a cloud appeared and enveloped them, and a voice came from the cloud: “This is My beloved Son. Listen to Him!” Suddenly, when they looked around, they saw no one with them 9 except Jesus. 10 As they were coming down the mountain, Jesus admonished them not to tell anyone what they had seen until the Son of Man had risen from the dead. So they kept this matter to themselves, 11 discussing what it meant to rise from the dead. And they asked Jesus, “Why do the scribes say 12 that Elijah must come first?” 13 He replied, “Elijah does indeed come first, and he restores all things. Why then is it written that the Son of Man must suffer many things and be rejected? But I tell you that Elijah has indeed come, and they have done to him whatever they The Boy with an Evil Spirit wished, just as it is written about him.”" + }, + { + "verseNum": 7, + "text": "and" + }, + { + "verseNum": 14, + "text": "–29 ;" + }, + { + "verseNum": 29, + "text": ". d 9 Greek Or ; Greek BYZ and TR include NE and WH do not include ." + }, + { + "verseNum": 30, + "text": "–32 ;" + }, + { + "verseNum": 33, + "text": "–41 ;" + }, + { + "verseNum": 42, + "text": "–48 ;" + }, + { + "verseNum": 48, + "text": "Jeremiah The Call of Jeremiah 12 1 These are the words of Jeremiah son of Hilkiah, one of the priests in Anathoth in the 2 territory of Benjamin. 3 The word of the LORD came to Jeremiah in the thirteenth year of the reign of Josiah son of Amon king of Judah, and through the days of Jehoia- kim son of Josiah king of Judah, until the fifth month of the eleventh year of Zedekiah son of Jo- siah king of Judah, when the people of Jerusalem 4 went into exile. 5 The word of the LORD came to me, saying: a “You have observed correctly,” said the LORD, over My word to accomplish “for I am watching 13 it.” Again the word of the LORD came to me, ask- ing, “What do you see?” “I see a boiling pot,” I replied, “and it is tilting 14 toward us from the north.” 15 Then the LORD said to me, “Disaster from the north will be poured out on all who live in the For I am about to summon all the clans land. and kingdoms of the north,” declares the LORD. “Their kings will come and set up their “Before I formed you in the womb I knew thrones you, and before you were born I set you apart and appointed you as a prophet to the nations.” 6 “Ah, Lord GOD,” I said, “I surely do not know 7 how to speak, for I am only a child!” But the LORD told me: “Do not say, ‘I am only a child.’ For to everyone I send you, you must go, and all that I command you, 8 you must speak. Do not be afraid of them, for I am with you to deliver you,” declares the LORD. 9 Then the LORD reached out His hand, touched my mouth, and said" + }, + { + "verseNum": 49, + "text": "–50 ;" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "–12) heart.” 19 When Jesus had finished saying these things, He left Galilee and went into the Large region of Judea beyond the Jordan. 3 crowds followed Him, and He healed them there. 2 Then some Pharisees came and tested Him by asking, “Is it lawful for a man to divorce his wife 4 for any reason?” d 5 Jesus answered, “Have you not read that from the beginning the Creator ‘made them male and and said, ‘For this reason a man will female,’ leave his father and mother and be united to his So wife, and the two will become one flesh’ they are no longer two, but one flesh. Therefore what God has joined together, let man not sepa- 7 rate.” ? 6 e f “Why then,” they asked, “did Moses order a man to give his wife a certificate of divorce and send 8 her away? ” Jesus replied, “Moses permitted you to divorce your wives because of your hardness of heart. Now But it was not this way from the beginning. I tell you that whoever divorces his wife, except for sexual immorality, and marries another 10 woman commits adultery. ” 9 g His disciples said to Him, “If this is the case be- tween a man and his wife, it is better not to 11 marry.” “Not everyone can accept this word,” He re- 12 plied, “but only those to whom it has been given. For there are eunuchs who were born that way; others were made that way by men; and still others live like eunuchs for the sake of the kingdom of heaven. The one who can accept this should accept it.” d 4 seventy times seven When his fellow servants saw what had ha" + }, + { + "verseNum": 4, + "text": ". 10 11 12 When you lend anything to your neighbor, do not enter his house to collect security. You are to stand outside while the man to whom you are lending brings the security out to you. If he is a poor man, you must not go to sleep with the se- curity in your possession; be sure to return it to him by sunset, so that he may sleep in his own cloak and bless you, and this will be credited to 14 you as righteousness before the LORD your God. 13 15 Do not oppress a hired hand who is poor and needy, whether he is a brother or a foreigner re- You are to pay his siding in one of your towns. wages each day before sunset, because he is poor and depends on them. Otherwise he may cry out to the LORD against you, and you will be guilty of 16 sin. d Fathers shall not be put to death for their chil- dren, nor children for their fathers; each is to die 17 for his own sin. 18 Do not deny justice to the foreigner or the fatherless, and do not take a widow’s cloak as Remember that you were slaves in security. Egypt, and the LORD your God redeemed you from that place. Therefore I am commanding you 19 to do this. If you are harvesting in your field and forget a sheaf there, do not go back to get it. It is to be left for the foreigner, the fatherless, and the widow, so that the LORD your God may bless you in all 20 the work of your hands. When you beat the olives from your trees, you must not go over the branches again. What re- mains will be for the foreigner, the fatherless, 21 and the wid" + }, + { + "verseNum": 6, + "text": "a living soul Cited in" + }, + { + "verseNum": 13, + "text": "–16 ;" + }, + { + "verseNum": 17, + "text": "–31 ;" + }, + { + "verseNum": 19, + "text": "," + }, + { + "verseNum": 21, + "text": "| 905 John said to Him, “Teacher, we saw someone else driving out demons in Your name, and we tried to stop him, because he does not accom- 39 pany us.” 40 “Do not stop him,” Jesus replied. “For no one who performs a miracle in My name can turn 41 For whoever is around and speak evil of Me. Indeed, if anyone gives not against us is for us. you even a cup of water because you bear the name of Christ, truly I tell you, he will never lose Temptations and Trespasses his reward." + }, + { + "verseNum": 22, + "text": "22 37 But the man was saddened by these words and went away in sorrow, because he had great 23 wealth. They answered, “Grant that one of us may sit at Your right hand and the other at Your left in 38 Your glory.” Then Jesus looked around and said to His dis- ciples, “How hard it is for the rich to enter the 24 kingdom of God!” “You do not know what you are asking,” Jesus replied. “Can you drink the cup I will drink, 39 or be baptized with the baptism I will undergo?” And the disciples were amazed at His words. a 25 But Jesus said to them again, “Children, how hard it is to enter It is easier the kingdom of God! for a camel to pass through the eye of a needle 26 than for a rich man to enter the kingdom of God.” They were even more astonished and said to 27 one another, “Who then can be saved?” Jesus looked at them and said, “With man this is impossible, but not with God. For all things are 28 possible with God.” Peter began to say to Him, “Look, we have left 29 everything and followed You.” 30 “Truly I tell you,” Jesus replied, “no one who has left home or brothers or sisters or mother or father or children or fields for My sake and for the gospel will fail to receive a hundredfold in the present age—houses and brothers and sis- ters and mothers and children and fields, along with persecutions—and in the age to come, eter- nal life. But many who are first will be last, and The Third Prediction of the Passion the last will be first.”" + }, + { + "verseNum": 32, + "text": "–34 ;" + }, + { + "verseNum": 35, + "text": "–45) third day He will be raised to life.” 20 Then the mother of Zebedee’s sons came to Jesus with her sons and knelt down to make a 21 request of Him. “What do you want?” He inquired. She answered, “Declare that in Your kingdom one of these two sons of mine may sit at Your 22 right hand, and the other at Your left.” b “You do not know what you are asking,” Jesus replied. “Can you drink the cup I am going to drink?” 23 “We can,” the brothers answered. c “You will indeed drink My cup,” Jesus said. “But to sit at My right or left is not Mine to grant. These seats belong to those for whom My Father 24 has prepared them.” 25 26 When the ten heard about this, they were in- dignant with the two brothers. But Jesus called them aside and said, “You know that the rulers of the Gentiles lord it over them, and their superi- ors exercise authority over them. It shall not be this way among you. Instead, whoever wants to become great among you must be your 28 servant, and whoever wants to be first among you must be your slave— just as the Son of Man did not come to be served, but to serve, and The Blind Men by the Road to give His life as a ransom for many.”" + }, + { + "verseNum": 46, + "text": "–52 ;" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "–11 ;" + }, + { + "verseNum": 9, + "text": ", and" + }, + { + "verseNum": 10, + "text": ", and" + }, + { + "verseNum": 12, + "text": "–14 , , 20–25) Bethany, where He spent the night. 18 19 In the morning, as Jesus was returning to the Seeing a fig tree by the city, He was hungry. road, He went up to it but found nothing on it ex- cept leaves. “May you never bear fruit again!” He 20 said. And immediately the tree withered. When the disciples saw this, they marveled and asked, “How did the fig tree wither so 21 quickly?” “Truly I tell you,” Jesus replied, “if you have faith and do not doubt, not only will you do what was done to the fig tree, but even if you say to this mountain, ‘Be lifted up and thrown into the sea,’ If you believe, you will receive it will happen. Jesus’ Authority Challenged whatever you ask for in prayer.”" + }, + { + "verseNum": 15, + "text": "–19 ;" + }, + { + "verseNum": 17, + "text": ", and" + }, + { + "verseNum": 20, + "text": "–25) 12 13 14 The next day, when they had left Bethany, Je- Seeing in the distance a fig sus was hungry. tree in leaf, He went to see if there was any fruit on it. But when He reached it, He found nothing on it except leaves, since it was not the season for Then He said to the tree, “May no one ever figs. eat of your fruit again.” And His disciples heard Jesus Cleanses the Temple this statement. (Matt. 21:12–17 ;" + }, + { + "verseNum": 27, + "text": "–33 ;" + }, + { + "verseNum": 32, + "text": "| 907 16 17 who were buying and selling there. He over- turned the tables of the money changers and the seats of those selling doves. And He would not allow anyone to carry merchandise through the temple courts. Then Jesus began to teach them, and He declared, “Is it not written: ‘My house will be called a house of prayer for all the nations’ ? 18 But you have made it ‘a den of robbers.’ ” e f When the chief priests and scribes heard this, they looked for a way to kill Him. For they were afraid of Him, because the whole crowd was 19 astonished at His teaching. g And when evening came, Jesus and His disci- The Withered Fig Tree ples went out of the city." + }, + { + "verseNum": 33, + "text": "we say, ‘From men’ ” they were afraid of the 33 people, for they all held that John truly was a prophet. So they answered, “We do not know.” . . . teach the way of God in accordance with the truth. Is it lawful to pay taxes to Caesar or not? 15 Should we pay them or not?” And Jesus replied, “Neither will I tell you by what The Parable of the Wicked Tenants authority I am doing these things.”" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "–12 ;" + }, + { + "verseNum": 10, + "text": "," + }, + { + "verseNum": 11, + "text": "" + }, + { + "verseNum": 13, + "text": "–17 ;" + }, + { + "verseNum": 18, + "text": "–27 ;" + }, + { + "verseNum": 19, + "text": ", and" + }, + { + "verseNum": 26, + "text": "," + }, + { + "verseNum": 28, + "text": "–34) 6 2 These are the commandments and statutes and ordinances that the LORD your God has instructed me to teach you to follow in the land so that that you are about to enter and possess, you and your children and grandchildren may fear the LORD your God all the days of your lives by keeping all His statutes and commandments that I give you, and so that your days may be pro- Hear, O Israel, and be careful to observe longed. them, so that you may prosper and multiply greatly in a land flowing with milk and honey, just as the LORD, the God of your fathers, has 4 promised you. 5 3 g Hear, O Israel: The LORD our God, the LORD is One. And you shall love the LORD your God with all your heart and with all your soul and 6 with all your strength. 7 h These words I am commanding you today are to b 17 And you shall teach them Cited in" + }, + { + "verseNum": 29, + "text": "Cited in" + }, + { + "verseNum": 30, + "text": ", and" + }, + { + "verseNum": 31, + "text": "," + }, + { + "verseNum": 35, + "text": "–37 ;" + }, + { + "verseNum": 36, + "text": "," + }, + { + "verseNum": 38, + "text": "–40) David’s son?” 45 46 In the hearing of all the people, Jesus said to “Beware of the scribes. They like His disciples, to walk around in long robes, and they love the greetings in the marketplaces, the chief seats in f the synagogues, and the places of honor at ban- They defraud widows of their houses, quets. and for a show make lengthy prayers. These men The Poor Widow’s Offering" + }, + { + "verseNum": 40, + "text": "and" + }, + { + "verseNum": 41, + "text": "–44) will receive greater condemnation.” 47 21 2 g Then Jesus looked up and saw the rich and putting their gifts into the treasury, He saw a poor widow put in two small copper 3 coins. 4 “Truly I tell you,” He said, “this poor widow has For they all con- put in more than all the others. tributed out of their surplus, but she out of her Temple Destruction and Other Signs poverty has put in all she had to live on.”" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–8 ;" + }, + { + "verseNum": 9, + "text": "–13 ;" + }, + { + "verseNum": 14, + "text": "–23 ;" + }, + { + "verseNum": 15, + "text": "15 reader understand), then let those who are in Ju- dea flee to the mountains. Let no one on the housetop go back inside to retrieve anything from his house. And let no one in the field re- 17 turn for his cloak. 16 18 How miserable those days will be for pregnant 19 and nursing mothers! Pray that this will not occur in the winter. For those will be days of tribulation unseen from the beginning of God’s 20 creation until now, and never to be seen again. If the Lord had not cut short those days, no- body would be saved. But for the sake of the elect, whom He has chosen, He has cut them 21 short. At that time if anyone says to you, ‘Look, here 22 is the Christ!’ or ‘There He is!’ do not believe it. For false Christs and false prophets will appear and perform signs and wonders to deceive even the elect, if that were possible. So be on your The Return of the Son of Man guard; I have told you everything in advance." + }, + { + "verseNum": 24, + "text": "–27 ;" + }, + { + "verseNum": 26, + "text": "," + }, + { + "verseNum": 28, + "text": "–31 ;" + }, + { + "verseNum": 32, + "text": "–37 ;" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "–2 ;" + }, + { + "verseNum": 3, + "text": "–9 ;" + }, + { + "verseNum": 10, + "text": "–11 ;" + }, + { + "verseNum": 12, + "text": "–16 ;" + }, + { + "verseNum": 17, + "text": "–26 ; had directed them and prepared the Passover." + }, + { + "verseNum": 27, + "text": "–31) ’ 7 Awake, O sword, against My Shepherd, against the man who is My Companion, declares the LORD of Hosts. Strike the Shepherd, and the sheep h will be scattered, 8 and I will turn My hand against the little ones. And in all the land, declares the LORD, two-thirds will be cut off and perish, 9 but a third will be left in it. This third I will bring through the fire; I will refine them like silver and test them like gold. They will call on My name, and I will answer them. I will say, ‘They are My people,’ The Destroyers of Jerusalem Destroyed and they will say, ‘The LORD is our God.’ ” 14 2 Behold, a day of the LORD is coming when your plunder will be divided in For I will gather all the nations your presence. for battle against Jerusalem, and the city will be captured, the houses looted, and the women rav- ished. Half of the city will go into exile, but the rest of the people will not be removed from the 3 city. 4 Then the LORD will go out to fight against those On that nations, as He fights in the day of battle. day His feet will stand on the Mount of Olives, east of Jerusalem, and the Mount of Olives will be split in two from east to west, forming a great valley, with half the mountain moving to the You will flee by My north and half to the south. mountain valley, for it will extend to Azal. You will flee as you fled from the earthquake in the days of Uzziah king of Judah. Then the LORD my 6 God will come, and all the holy ones with Him. 5 i 7 On that day there will be" + }, + { + "verseNum": 32, + "text": "–42 ;" + }, + { + "verseNum": 42, + "text": "| 911 Jesus Predicts Peter’s Denial" + }, + { + "verseNum": 43, + "text": "–52 ;" + }, + { + "verseNum": 53, + "text": "–65 ;" + }, + { + "verseNum": 62, + "text": "," + }, + { + "verseNum": 66, + "text": "–72 ;" + }, + { + "verseNum": 69, + "text": "–72 ;" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "–5) wept bitterly. 27 When morning came, all the chief priests and elders of the people conspired against Jesus to put Him to death. They bound Him, led Him away, and handed Him over to a 64 Pilate the governor. the right hand of the Mighty One b 64 2 d 16 Jesus Barabbas 3 When Judas, who had betrayed Him, saw that Jesus was condemned, he was filled with re- morse and returned the thirty pieces of silver to “I have sinned by the chief priests and elders. betraying innocent blood,” he said. 4 “What is that to us?” they replied. “You bear the 5 responsibility.” So Judas threw the silver into the temple and 6 left. Then he went away and hanged himself. 7 The chief priests picked up the pieces of silver and said, “It is unlawful to put this into the treas- ury, since it is blood money.” After conferring together, they used the money to buy the potter’s field as a burial place for foreigners. That is why 9 it has been called the Field of Blood to this day. Then what was spoken through Jeremiah the 8 prophet was fulfilled: 10 “They took the thirty pieces of silver, the price set on Him by the people c of Israel, Jesus before Pilate (Lk. 23:1–5 ;" + }, + { + "verseNum": 6, + "text": "–11 ;" + }, + { + "verseNum": 12, + "text": "–15) But they shouted all the louder, “Crucify Him!” 24 When Pilate saw that he was accomplishing nothing, but that instead a riot was breaking out, he took water and washed his hands before the crowd. “I am innocent of this man’s blood, ” he 25 said. “You bear the responsibility.” a All the people answered, “His blood be on us 26 and on our children!” So Pilate released Barabbas to them. But he had Jesus flogged, and handed Him over to be The Soldiers Mock Jesus" + }, + { + "verseNum": 16, + "text": "–20 ;" + }, + { + "verseNum": 21, + "text": "–41 ;" + }, + { + "verseNum": 24, + "text": ", and" + }, + { + "verseNum": 33, + "text": "–41 ;" + }, + { + "verseNum": 34, + "text": "d 16 let the LORD rescue him, 9 since He delights in him.” Yet You brought me forth from the womb; You made me secure at my mother’s 10 breast. From birth I was cast upon You; 11 from my mother’s womb You have been my God. Be not far from me, 12 for trouble is near and there is no one to help. 13 Many bulls surround me; strong bulls of Bashan encircle me. 14 They open their jaws against me like lions that roar and maul. I am poured out like water, and all my bones are disjointed. 15 My heart is like wax; c it melts away within me. My strength is dried up like a potsherd, and my tongue sticks to the roof of my 16 mouth. You lay me in the dust of death. For dogs surround me; d 17 a band of evil men encircles me; they have pierced my hands and feet. 18 I can count all my bones; they stare and gloat over me. e They divide my garments among them 19 and cast lots for my clothing. 20 But You, O LORD, be not far off; O my Strength, come quickly to help me. Deliver my soul from the sword, 21 my precious life from the power of wild dogs. Save me from the mouth of the lion; 22 at the horns of the wild oxen You have answered me! I will proclaim Your name to my f 23 brothers; I will praise You in the assembly. You who fear the LORD, praise Him! 24 All descendants of Jacob, honor Him! All offspring of Israel, revere Him! For He has not despised or detested original Heb. text also" + }, + { + "verseNum": 38, + "text": "| 913 The Crucifixion" + }, + { + "verseNum": 39, + "text": "39 a 7 When the centurion standing there in front of he said, Jesus saw how He had breathed His last, 40 “Truly this man was the Son of God!” b 41 And there were also women watching from a distance. Among them were Mary Magdalene, Mary the mother of James the younger and of These women had fol- Joses, lowed Jesus and ministered to Him while He was in Galilee, and there were many other women The Burial of Jesus" + }, + { + "verseNum": 42, + "text": "–47 ;" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "–8 ;" + }, + { + "verseNum": 9, + "text": "–11) 9 10 11 Then the disciples returned to their homes. But Mary stood outside the tomb weeping. And 12 as she wept, she bent down to look into the tomb, and she saw two angels in white sitting where the body of Jesus had lain, one at the head and 13 the other at the feet. “Woman, why are you weeping?” they asked. “Because they have taken my Lord away,” she said, “and I do not know where they have put 14 Him.” When she had said this, she turned around and saw Jesus standing there. But she did not recog- 15 nize that it was Jesus. “Woman, why are you weeping?” Jesus asked. “Whom are you seeking?” Thinking He was the gardener, she said, “Sir, if you have carried Him off, tell me where you have 16 put Him, and I will get Him.” Jesus said to her, “Mary.” f 20 d She turned and said to Him in Hebrew, 17 boni!” (which means “Teacher”). “Rab- 2 while Early on the first day of the week, it was still dark, Mary Magdalene went to the tomb and saw that the stone had been re- So she came running moved from the entrance. to Simon Peter and the other disciple, the one whom Jesus loved. “They have taken the Lord out of the tomb,” she said, “and we do not know where they have put Him!” a 36 “Do not cling to Me,” Jesus said, “for I have not yet ascended to the Father. But go and tell My brothers, ‘I am ascending to My Father and your 18 Father, to My God and your God.’ ” Mary Magdalene went and announced to the disciples, “I have seen the Lord!” And she told them what He had said to her. b 37" + }, + { + "verseNum": 12, + "text": "–13) 51 13 Now there was a Council member named who had not Joseph, a good and righteous man, consented to their decision or action. He was 52 from the Judean town of Arimathea and was 53 He went to Pi- waiting for the kingdom of God. Then he took late to ask for the body of Jesus. it down, wrapped it in a linen cloth, and placed it a 36 in a tomb cut into the rock, where no one had yet c 42 said to Jesus, “Remember me, Lord, to offer Him wine vinegar d 44 b 38 Or was obscured BYZ and TR became dark But on the first of the Sabbaths, f 46 j 13 BYZ and TR include i 1 or Literally 11.1 kilometers ; BYZ and TR j 14 That same day two of them were going to a vil- from Je- lage called Emmaus, about seven miles 15 rusalem. They were talking with each other And as about everything that had happened. they talked and deliberated, Jesus Himself came But their eyes up and walked along with them. were kept from recognizing Him. written in Greek, Latin, and Hebrew 16 g 47 an innocent man h 54 That is, from noon until three in the afternoon being sixty stadia in distance Or Or ; that is, approximately 6.9 miles or e 45 was about to begin ; see" + }, + { + "verseNum": 14, + "text": "–18) culated among the Jews to this very day. 16 Meanwhile, the eleven disciples went to Gali- 17 lee, to the mountain Jesus had designated. When they saw Him, they worshiped Him, but 18 some doubted. d 19 Then Jesus came to them and said, “All author- ity in heaven and on earth has been given to Me. of all Therefore go and make disciples 20 nations, baptizing them in the name of the Father and of the Son and of the Holy Spirit, and teaching them to obey all that I have commanded you. And surely I am with you always, even to the end of the age.” b 6 where the Lord lay Having gone, therefore, make disciples the other Mary went to see the tomb. a 1 c 9 They were going to tell His disciples, and suddenly d 19 Now after the Sabbaths, it being dawn toward the first of the Sabbaths, Literally BYZ and TR Literally BYZ and TR Mark The Mission of John the Baptist (Isa. 40:1–5 ;" + }, + { + "verseNum": 19, + "text": "–20 ;" + } + ] + } + ] + }, + { + "name": "Luke", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–4) 1 2 3 In my first book, O Theophilus, I wrote about all that Jesus began to do and to teach, until the day He was taken up to heaven, after giving instructions through the Holy Spirit to the apos- After His suffering, He pre- tles He had chosen. sented Himself to them with many convincing proofs that He was alive. He appeared to them over a span of forty days and spoke about the 4 kingdom of God. a And while they were gathered together, He commanded them: “Do not leave Jerusalem, but 5 wait for the gift the Father promised, which you For John baptized with have heard Me discuss. water, but in a few days you will be baptized with The Ascension" + }, + { + "verseNum": 17, + "text": "Matthew The Genealogy of Jesus" + }, + { + "verseNum": 33, + "text": "33 53 David, 34 Jacob forever. His kingdom will never end!” and He will reign over the house of 54 He has filled the hungry with good things, but has sent the rich away empty. “How can this be,” Mary asked the angel, “since 35 I am a virgin?” 36 The angel replied, “The Holy Spirit will come a upon you, and the power of the Most High will overshadow you. So the Holy One to be born will be called the Son of God. Look, even Eliza- beth your relative has conceived a son in her old age, and she who was called barren is in her sixth 38 ” month. For no word from God will ever fail. 37 b “I am the Lord’s servant,” Mary answered. “May it happen to me according to your word.” Mary Visits Elizabeth Then the angel left her. 39 40 In those days Mary got ready and hurried to a town in the hill country of Judah, where she entered the home of Zechariah and greeted Eliz- 41 abeth. 44 43 42 When Elizabeth heard Mary’s greeting, the baby leaped in her womb, and Elizabeth was filled with the Holy Spirit. In a loud voice she exclaimed, “Blessed are you among women, and And why am blessed is the fruit of your womb! I so honored, that the mother of my Lord should For as soon as the sound of your come to me? 45 greeting reached my ears, the baby in my womb Blessed is she who has believed leaped for joy. Mary’s Song (1 Samuel 2:1–11) that the Lord’s word to her will be fulfilled.” 46 Then Mary said: 47 48 “My soul magnifies the Lord, and my spirit rejoices in God my Savior! For He has looked with fav" + }, + { + "verseNum": 46, + "text": "–56) c 2 At that time Hannah prayed: d “My heart rejoices in the LORD; my horn is exalted in the LORD. My mouth speaks boldly against my enemies, 2 for I rejoice in Your salvation. There is no one holy like the LORD. 3 Indeed, there is no one besides You! And there is no Rock like our God. Do not boast so proudly, or let arrogance come from your mouth, for the LORD is a God who knows, 4 and by Him actions are weighed. The bows of the mighty are broken, 5 but the feeble are equipped with strength. The well-fed hire themselves out for food, but the starving hunger no more. The barren woman gives birth to seven, 6 but she who has many sons pines away. The LORD brings death and gives life; 7 He brings down to Sheol and raises up. The LORD sends poverty and wealth; 8 He humbles and He exalts. He raises the poor from the dust and lifts the needy from the ash heap. He seats them among princes and bestows on them a throne of honor. For the foundations of the earth are the LORD’s, a 24 and upon them He has set the world. three bulls b 24 An ephah c 28 He guards the steps of His faithful ones, but the wicked perish in darkness; for by his own strength shall no man 10 prevail. Those who oppose the LORD will be shattered. He will thunder from heaven against them. The LORD will judge the ends of the earth 11 and will give power to His king. He will exalt the horn of His anointed.” Then Elkanah went home to Ramah, but the boy began ministering to the LORD before Eli the Eli’s Wicked Sons p" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–7) to the Christ. 18 This is how the birth of Jesus Christ came about: His mother Mary was pledged in marriage to Joseph, but before they came together, she was 19 found to be with child through the Holy Spirit. Because Joseph her husband was a righteous man and was unwilling to disgrace her publicly, 20 he resolved to divorce her quietly. But after he had pondered these things, an an- gel of the Lord appeared to him in a dream and said, “Joseph, son of David, do not be afraid to embrace Mary as your wife, for the One con- ceived in her is from the Holy Spirit. She will give birth to a Son, and you are to give Him the name Jesus, because He will save His people 22 from their sins.” 21 d All this took place to fulfill what the Lord had 23 said through the prophet: “Behold, the virgin will be with child e and will give birth to a son, f and they will call Him Immanuel” (which means, “God with us” ). 24 a 3 Aram Jeconiah was the father of Shealtiel, Shealtiel the father of Zerubbabel, Greek they will call His name Immanuel Amōs , a variant of Ram c 10 e 23 3:10. ; also in verse 4; see 1 Chr. 2:9–10. b 7 When Joseph woke up, he did as the angel of the Lord had commanded him and embraced d 21 Jesus ; also in v. 8; see 1 Chr. The LORD saves , a variant of Greek Asaph Asa f 23 Greek , a variant spelling of Amon ; twice in this verse; see 1 Chr. 3:14. means . Literally ;" + }, + { + "verseNum": 23, + "text": "was the first month of the ancient Hebrew lunar calendar, usually occurring within the months of March and April. 8 9 And on that day you are to explain to your son, ‘This is because of what the LORD did for me It shall be a sign for when I came out of Egypt.’ you on your hand and a reminder on your fore- head that the Law of the LORD is to be on your lips. For with a mighty hand the LORD brought Therefore you shall keep this you out of Egypt. 11 statute at the appointed time year after year. 10 12 13 And after the LORD brings you into the land of the Canaanites and gives it to you, as He swore to you are to present to the you and your fathers, LORD the firstborn male of every womb. All the firstborn males of your livestock belong to You must redeem every firstborn the LORD. donkey with a lamb, and if you do not redeem it, you are to break its neck. And every firstborn of 14 your sons you must redeem. 15 In the future, when your son asks you, ‘What does this mean?’ you are to tell him, ‘With a mighty hand the LORD brought us out of Egypt, And when Pharaoh out of the house of slavery. stubbornly refused to let us go, the LORD killed every firstborn in the land of Egypt, both of man and beast. This is why I sacrifice to the LORD the firstborn male of every womb, but I redeem all So it shall serve as a the firstborn of my sons.’ sign on your hand and a symbol on your fore- head, for with a mighty hand the LORD brought The Pillars of Cloud and Fire us out of Egypt.” 17 16 When Ph" + }, + { + "verseNum": 24, + "text": "106 |" + }, + { + "verseNum": 27, + "text": "| 917 11 bring you good news of great joy that will be for Today in the city of David a Sav- all the people: 12 ior has been born to you. He is Christ the Lord! And this will be a sign to you: You will find a baby wrapped in swaddling cloths and lying in a 13 manger.” And suddenly there appeared with the angel a great multitude of the heavenly host, praising 14 God and saying: “Glory to God in the highest, 15 and on earth peace to men on whom His favor rests!” When the angels had left them and gone into heaven, the shepherds said to one another, “Let us go to Bethlehem and see this thing that has happened, which the Lord has made known to 16 us.” 17 So they hurried off and found Mary and Joseph and the Baby, who was lying in the manger. Af- ter they had seen the Child, they spread the mes- And all who sage they had received about Him. heard it were amazed at what the shepherds said to them. But Mary treasured up all these things 20 and pondered them in her heart. 19 18 The shepherds returned, glorifying and prais- ing God for all they had heard and seen, which Jesus Presented at the Temple was just as the angel had told them. 21 When the eight days before His circumcision had passed, He was named Jesus, the name the 22 angel had given Him before He was conceived. e 23 And when the time of purification according to the Law of Moses was complete, His parents brought Him to Jerusalem to present Him to the (as it is written in the Law of the Lord: Lord 24 “Every firstborn male sh" + }, + { + "verseNum": 28, + "text": "28 44 parents brought in the child Jesus to do for Him Simeon what was customary under the Law, 29 took Him in his arms and blessed God, saying: “Sovereign Lord, as You have promised, You now dismiss Your servant in peace. 30 31 For my eyes have seen Your salvation, 32 which You have prepared in the sight of all people, 33 a light for revelation to the Gentiles, and for glory to Your people Israel.” 34 The Child’s father and mother were amazed at Then Simeon what was spoken about Him. blessed them and said to His mother Mary: “Behold, this Child is appointed to cause the rise and fall of many in Israel, and to be a sign that will be spoken 35 against, so that the thoughts of many hearts will be revealed— and a sword will pierce your soul The Prophecy of Anna as well.” 36 There was also a prophetess named Anna, the daughter of Phanuel, of the tribe of Asher, who 37 was well along in years. She had been married for a and then was a widow to the age seven years, of eighty-four. She never left the temple, but 38 worshiped night and day, fasting and praying. Coming forward at that moment, she gave thanks to God and spoke about the Child to all who The Return to Nazareth" + }, + { + "verseNum": 39, + "text": "–40) because they are no more.” e 19 20 After Herod died, an angel of the Lord ap- “Get up!” peared in a dream to Joseph in Egypt. he said. “Take the Child and His mother and go to the land of Israel, for those seeking the Child’s life 21 are now dead.” 22 So Joseph got up, took the Child and His mother, and went to the land of Israel. But when he learned that Archelaus was reigning in Judea in place of his father Herod, he was afraid to go there. And having been warned in a dream, and he he withdrew to the district of Galilee, went and lived in a town called Nazareth. So was fulfilled what was spoken through the prophets: The Mission of John the Baptist “He will be called a Nazarene.”" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–20 ;" + }, + { + "verseNum": 4, + "text": ", and" + }, + { + "verseNum": 5, + "text": "Cited in" + }, + { + "verseNum": 6, + "text": "Cited in" + }, + { + "verseNum": 16, + "text": "; see also" + }, + { + "verseNum": 21, + "text": "–22 ;" + }, + { + "verseNum": 23, + "text": "–38) Jesse, the father of David. 18 Now these are the generations of Perez: 19 Perez was the father of Hezron, Hezron was the father of Ram, 20 Ram was the father of Amminadab, a Amminadab was the father of Nahshon, 21 Nahshon was the father of Salmon, Salmon was the father of Boaz, 22 Boaz was the father of Obed, Obed was the father of Jesse, and Jesse was the father of David. a 20 Salma A few Hebrew manuscripts, some LXX manuscripts, and Vulgate (see also verse 21 and LXX of 1 Chronicles 2:11); most Hebrew manuscripts 1 Samuel Elkanah and His Wives" + }, + { + "verseNum": 35, + "text": "–36) confused h 24 i 25 Peleg division Hebrew; LXX (see . means sounds like the He- Or brew for or . That is, Babylonia Or ; the Hebrew word for 14 |" + }, + { + "verseNum": 37, + "text": "| 919 The Genealogy of Jesus" + }, + { + "verseNum": 38, + "text": "38 a the son of Enosh, the son of Seth, the son of Adam, The Temptation of Jesus the son of God." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "–13)" + }, + { + "verseNum": 4, + "text": "into your house, or you, like it, will be set apart for destruction. You are to utterly detest and ab- Remember the LORD Your God hor it, because it is set apart for destruction. 8 2 You must carefully follow every command- ment I am giving you today, so that you may live and multiply, and enter and possess the land Re- that the LORD swore to give your fathers. member that these forty years the LORD your God led you all the way in the wilderness, so that He might humble you and test you in order to know what was in your heart, whether or not you 3 would keep His commandments. He humbled you, and in your hunger He gave you manna to eat, which neither you nor your fa- thers had known, so that you might understand that man does not live on bread alone, but on every word that comes from the mouth of the LORD. Your clothing did not wear out and your 5 feet did not swell during these forty years. 4 a 6 So know in your heart that just as a man disciplines his son, so the LORD your God disci- plines you. Therefore you shall keep the com- mandments of the LORD your God, walking in His 7 ways and fearing Him. 9 8 For the LORD your God is bringing you into a good land, a land of brooks and fountains and springs that flow through the valleys and hills; a land of wheat, barley, vines, fig trees, and pome- granates; a land of olive oil and honey; a land where you will eat food without scarcity, where you will lack nothing; a land whose rocks are iron 10 and whose hills are ready to be mine" + }, + { + "verseNum": 8, + "text": "berit see" + }, + { + "verseNum": 10, + "text": "–11 14 “Because he loves Me, I will deliver him; 15 because he knows My name, I will protect him. When he calls out to Me, I will answer him; 16 I will be with him in trouble. I will deliver him and honor him. With long life I will satisfy him and show him My salvation.” Psalm 92 How Great Are Your Works! A Psalm. A song for the Sabbath day. 1 It is good to praise the LORD, 2 and to sing praises to Your name, O Most High, to proclaim Your loving devotion in the 3 morning and Your faithfulness at night 4 with the ten-stringed harp and the melody of the lyre. For You, O LORD, have made me glad by 5 Your deeds; I sing for joy at the works of Your hands. How great are Your works, O LORD, how deep are Your thoughts! A senseless man does not know, 6 7 and a fool does not understand, that though the wicked sprout like grass, 8 and all evildoers flourish, they will be forever destroyed. 9 But You, O LORD, are exalted forever! For surely Your enemies, O LORD, 10 surely Your enemies will perish; all evildoers will be scattered. But You have exalted my horn like that of a 11 wild ox; with fine oil I have been anointed. My eyes see the downfall of my enemies; my ears hear the wailing of my wicked a 12 foes. 13 The righteous will flourish like a palm tree, and grow like a cedar in Lebanon. 14 Planted in the house of the LORD, they will flourish in the courts of our God. 15 In old age they will still bear fruit; healthy and green they will remain, to proclaim, “The LORD is upright; He is m" + }, + { + "verseNum": 12, + "text": ". or persons to the LORD, either by destroying them or by giving them as an offering; also twice in verse 26. the Hebrew are translated in most passages as Forms of the Hebrew covenant . ; refer to the giving over of things Forms of means d 2 172 |" + }, + { + "verseNum": 14, + "text": "–15) 9 Nevertheless, there will be no more gloom for those in distress. In the past He humbled the land of Zebulun and the land of Naphtali, but in the future He will honor the Way of the Sea, 2 beyond the Jordan, Galilee of the nations: The people walking in darkness have seen a great light; on those living in the land of the shadow 3 h of death, a light has dawned. You have enlarged the nation and increased its joy. The people rejoice before You 4 as they rejoice at harvest time, as men rejoice in dividing the plunder. For as in the day of Midian You have shattered the yoke of their burden, the bar across their shoulders, 5 and the rod of their oppressor. For every trampling boot of battle 6 and every garment rolled in blood will be burned as fuel for the fire. For unto us a child is born, unto us a son is given, and the government will be upon His shoulders. And He will be called 7 Wonderful Counselor, Mighty God, Everlasting Father, Prince of Peace. Of the increase of His government and peace there will be no end. He will reign on the throne of David and over his kingdom, to establish and sustain it with justice and righteousness from that time and forevermore. The zeal of the LORD of Hosts will accomplish Immanuel this. c 12 Do not fear their f 17 I will ; see" + }, + { + "verseNum": 16, + "text": "–30)" + }, + { + "verseNum": 18, + "text": "Or ; cited in" + }, + { + "verseNum": 19, + "text": "672 |" + }, + { + "verseNum": 31, + "text": "–37) the boat with the hired men and followed Him. 21 Then Jesus and His companions went to Capernaum, and right away Jesus entered the 22 synagogue on the Sabbath and began to teach. The people were astonished at His teaching, because He taught as one who had authority, and 23 not as the scribes. 24 Suddenly a man with an unclean spirit cried “What do You want with out in the synagogue: us, Jesus of Nazareth? Have You come to destroy 25 us? I know who You are—the Holy One of God!” 26 But Jesus rebuked the spirit. “Be silent!” He At this, the unclean said. “Come out of him!” spirit threw the man into convulsions and came 27 out with a loud shriek. All the people were amazed and began to ask one another, “What is this? A new teaching with 28 authority! He commands even the unclean spir- And the news about its, and they obey Him!” Jesus spread quickly through the whole region of Jesus Heals at Peter’s House Galilee." + }, + { + "verseNum": 38, + "text": "–41) 14 When Jesus arrived at Peter’s house, He saw 15 Peter’s mother-in-law sick in bed with a fever. So He touched her hand, and the fever left her, 16 and she got up and began to serve Him. When evening came, many who were demon- possessed were brought to Jesus, and He drove 17 out the spirits with a word and healed all the sick. This was to fulfill what was spoken through the prophet Isaiah: a “He took up our infirmities The Cost of Discipleship" + }, + { + "verseNum": 42, + "text": "–44) who He was. 35 36 Early in the morning, while it was still dark, Jesus got up and went out to a solitary place to 37 pray. Simon and his companions went to look for Him, and when they found Him, they said, 38 “Everyone is looking for You!” 39 But Jesus answered, “Let us go on to the neigh- boring towns so I can preach there as well, for that is why I have come.” So He went through- out Galilee, preaching in their synagogues and The Leper’s Prayer driving out demons. (Lev. 14:1–32 ;" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–11 ;" + }, + { + "verseNum": 12, + "text": "–16) 2 3 Then the LORD said to Moses, “This is c the law for the one afflicted with a skin on the day of his cleansing, when he is disease The priest is to go outside brought to the priest. the camp to examine him, and if the skin disease of the afflicted person has healed, the priest shall order that two live clean birds, cedar wood, scarlet yarn, and hyssop be brought for the one leprosy to be cleansed. 4 14 Or c 2 eases, are translated as der of this chapter. diseases; also in verses 3, 7, 32, 54, and 57. Forms of the Hebrew , traditionally translated as Forms of the Hebrew leprosy regarding blemishes on garments, utensils, or buildings; here and throughout the remain- regarding skin dis- tzaraath , traditionally translated as , were used for various skin 108 |" + }, + { + "verseNum": 15, + "text": "| 921 31 32 Then He went down to Capernaum, a town in Galilee, and on the Sabbath He began to teach the They were astonished at His teaching, people. 33 because His message had authority. 34 In the synagogue there was a man possessed by the spirit of an unclean demon. He cried out in “Ha! What do You want with us, a loud voice, Jesus of Nazareth? Have You come to destroy us? 35 I know who You are—the Holy One of God!” But Jesus rebuked the demon. “Be silent!” He said. “Come out of him!” At this, the demon threw the man down before them all and came out 36 without harming him. All the people were overcome with amaze- ment and asked one another, “What is this mes- sage? With authority and power He commands And the unclean spirits, and they come out!” the news about Jesus spread throughout the sur- Jesus Heals at Peter’s House rounding region." + }, + { + "verseNum": 16, + "text": "16 31 healed of their sicknesses. Jesus Heals a Paralytic withdrew to the wilderness to pray." + }, + { + "verseNum": 17, + "text": "–26) 9 d 2 Jesus got into a boat, crossed over, and came Just then some men to His own town. brought to Him a paralytic lying on a mat. When Jesus saw their faith, He said to the paralytic, 3 “Take courage, son; your sins are forgiven.” Another of His disciples requested, “Lord, first 22 let me go and bury my father.” On seeing this, some of the scribes said to them- e 4 selves, “This man is blaspheming!” But Jesus told him, “Follow Me, and let the Jesus Calms the Storm dead bury their own dead.”" + }, + { + "verseNum": 27, + "text": "–32) 9 As Jesus went on from there, He saw a man named Matthew sitting at the tax booth. “Follow Me,” He told him, and Matthew got up and fol- 10 lowed Him. 11 Later, as Jesus was dining at Matthew’s house, many tax collectors and sinners came and ate with Him and His disciples. When the Phari- sees saw this, they asked His disciples, “Why does your Teacher eat with tax collectors and sinners?” e 4 Gergesenes c 28 saw BYZ, TR, and GOC ; other When Jesus arrived on the other side in the region of the Gadarenes, He was met by two demon-possessed men coming from the tombs. They were so violent that no one could pass that a 17 way. b 18 Gerasenes And behold, they brought d 2" + }, + { + "verseNum": 30, + "text": ". Then a paralytic was brought to Him, carried by Since they were unable to get to Jesus four men. through the crowd, they uncovered the roof above Him, made an opening, and lowered the 5 paralytic on his mat. When Jesus saw their faith, He said to the para- 6 lytic, “Son, your sins are forgiven.” 7 But some of the scribes were sitting there and “Why does this man thinking in their hearts, speak like this? He is blaspheming! Who can for- 8 give sins but God alone?” 9 At once Jesus knew in His spirit that they were thinking this way within themselves. “Why are you thinking these things in your hearts?” He “Which is easier: to say to a paralytic, asked. ‘Your sins are forgiven,’ or to say, ‘Get up, pick up But so that you may know your mat, and walk’? that the Son of Man has authority on earth to for- give sins “I tell you, ” He said to the paralytic, 12 get up, pick up your mat, and go home.” . . . 10 11 And immediately the man got up, picked up his mat, and walked out in front of them all. As a re- sult, they were all astounded and glorified God, Jesus Calls Levi (Matt. 9:9–13 ;" + }, + { + "verseNum": 32, + "text": ". NE and WH do not include . Greek Literally the one also having betrayed Him 870 |" + }, + { + "verseNum": 33, + "text": "–35) b 14 c Then John’s disciples came to Jesus and asked, “Why is it that we and the Pharisees fast so of- 15 ten, but Your disciples do not fast?” Jesus replied, “How can the guests of the bride- groom mourn while He is with them? But the time will come when the bridegroom will be The Patches and the Wineskins taken from them; then they will fast." + }, + { + "verseNum": 36, + "text": "–39) 16 No one sews a patch of unshrunk cloth on an old garment. For the patch will pull away from 17 the garment, and a worse tear will result. Neither do men pour new wine into old wine- skins. If they do, the skins will burst, the wine will spill, and the wineskins will be ruined. Instead, they pour new wine into new wineskins, and The Healing Touch of Jesus both are preserved.”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–5) 21 Then David came to Nob, to Ahimelech the priest. And when Ahimelech met Da- vid, he trembled and asked him, “Why are you 2 alone? Why is no one with you?” 3 “The king has given me a mission,” David replied. “He told me no one is to know about the mission on which I am sending you. And I have directed my young men to meet me at a certain Now then, what do you have on hand? place. Give me five loaves of bread, or whatever can be 4 found.” “There is no common bread on hand,” the priest replied, “but there is some consecrated bread— provided that the young men have kept them- 5 selves from women.” David answered, “Women have indeed been kept from us, as is usual when I set out. And the bodies of the young men are holy even on com- 6 mon missions. How much more so today!” So the priest gave him the consecrated bread, since there was no bread there but the Bread of the Presence, which had been removed from be- fore the LORD and replaced with hot bread on 7 the day it was taken away. Now one of Saul’s servants was there that day, detained before the LORD. And his name was David Flees to Gath Doeg the Edomite, the chief shepherd for Saul." + }, + { + "verseNum": 6, + "text": "–11) 9 10 Moving on from there, Jesus entered their syn- and a man with a withered hand was agogue, there. In order to accuse Jesus, they asked Him, 11 “Is it lawful to heal on the Sabbath?” He replied, “If one of you has a sheep and it 12 falls into a pit on the Sabbath, will he not take How much more valu- hold of it and lift it out? able is a man than a sheep! Therefore it is lawful 13 to do good on the Sabbath.” 14 Then Jesus said to the man, “Stretch out your hand.” So he stretched it out, and it was restored But the Pharisees to full use, just like the other. God’s Chosen Servant" + }, + { + "verseNum": 12, + "text": "–16) 10 And calling His twelve disciples to Him, Jesus gave them authority over unclean spirits, so that they could drive them out and heal 2 every disease and sickness. These are the names of the twelve apostles: first Simon, called Peter, and his brother Andrew; 3 James son of Zebedee, and his brother John; Philip and Bartholomew; Thomas and Matthew the tax collector; James son of Alphaeus, and e and Judas Iscar- Thaddaeus; iot, who betrayed Jesus. Simon the Zealot, c 14 so often 4 d" + }, + { + "verseNum": 17, + "text": "–19) 22 23 24 Jesus went throughout Galilee, teaching in their synagogues, preaching the gospel of the kingdom, and healing every disease and sickness among the people. News about Him spread all over Syria, and people brought to Him all who were ill with various diseases, those suffering acute pain, the demon-possessed, those having 25 seizures, and the paralyzed, and He healed them. a Large crowds followed Him, having come from Jerusalem, Judea, and be- Galilee, the Decapolis, The Sermon on the Mount yond the Jordan. 5 2 When Jesus saw the crowds, He went up on the mountain and sat down. His disciples and He began to teach them, came to Him, The Beatitudes" + }, + { + "verseNum": 20, + "text": "–23) 1 Blessed is the man who does not walk in the counsel of 7 BOOK I Psalms 1–41 4 The One enthroned in heaven laughs; 5 the Lord taunts them. 6 Then He rebukes them in His anger, and terrifies them in His fury: “I have installed My King on Zion, upon My holy mountain.” the wicked, or set foot on the path of sinners, 2 or sit in the seat of mockers. But his delight is in the Law of the LORD, and on His law he meditates day and 3 night. He is like a tree planted by streams of water, yielding its fruit in season, whose leaf does not wither, 4 and who prospers in all he does. Not so the wicked! 5 For they are like chaff driven off by the wind. Therefore the wicked will not stand in the judgment, nor sinners in the assembly of the righteous. 6 For the LORD guards the path of the righteous, Psalm 2 but the way of the wicked will perish. The Triumphant Messiah" + }, + { + "verseNum": 24, + "text": "–26) Hosts. 6 Woe to those at ease in Zion and those secure on Mount Samaria, the distinguished ones of the foremost nation, 2 to whom the house of Israel comes. Cross over to Calneh and see; go from there to the great Hamath; then go down to Gath of the Philistines." + }, + { + "verseNum": 27, + "text": "–36) 37 36 g 38 h 39 You have heard that it was said, ‘Eye for eye and tooth for tooth.’ But I tell you not to resist an evil person. If someone slaps you on your right cheek, turn to him the other also; if some- 41 one wants to sue you and take your tunic, let him j and if someone forces have your cloak as well; kodrantēn a 26 you to go one mile, go with him two miles. 40 i Give to the one who asks you, and do not turn away from the one who wants to borrow from 43 you. k 44 l 45 You have heard that it was said, ‘Love your neighbor’ But I tell and ‘Hate your enemy.’ you, love your enemies and pray for those who that you may be sons of your persecute you, Father in heaven. He causes His sun to rise on the evil and the good, and sends rain on the right- If you love those eous and the unrighteous. who love you, what reward will you get? Do not And if you even tax collectors do the same? greet only your brothers, what are you doing more than others? Do not even Gentiles do the 48 same? 46 47 Be perfect, therefore, as your heavenly Father Giving to the Needy is perfect." + }, + { + "verseNum": 37, + "text": "–42 ; Rom. 14:1–12) enough trouble of its own. 2 “Do not judge, or you will be judged. For with the same judgment you pronounce, you will be judged, and with the measure you use, it 3 will be measured to you. Why do you look at the speck in your brother’s 4 eye but fail to notice the beam in your own eye? How can you say to your brother, ‘Let me take the speck out of your eye,’ while there is still a beam in your own eye? You hypocrite! First take the beam out of your own eye, and then you will see clearly to remove the speck from your 6 brother’s eye. 5 Do not give dogs what is holy; do not throw your pearls before swine. If you do, they may trample them under their feet, and then turn and Ask, Seek, Knock" + }, + { + "verseNum": 40, + "text": "| 923 But Jesus knew their thoughts and said to the man with the withered hand, “Get up and stand 9 among us.” So he got up and stood there. 10 Then Jesus said to them, “I ask you, which is lawful on the Sabbath: to do good or to do evil, to And after looking save life or to destroy it?” around at all of them, He said to the man, “Stretch 11 out your hand.” He did so, and it was restored. But the scribes and Pharisees were filled with rage and began to discuss with one another what The Twelve Apostles they might do to Jesus." + }, + { + "verseNum": 41, + "text": "41 7 a How can you say, ‘Brother, Why do you look at the speck in your brother’s 42 eye but fail to notice the beam in your own eye? let me take the speck out of your eye,’ while you yourself fail to see the beam in your own eye? You hypocrite! First take the beam out of your own eye, and then you will see clearly to remove the speck from A Tree and Its Fruit your brother’s eye." + }, + { + "verseNum": 43, + "text": "–45) and only a few find it. 15 17 16 Beware of false prophets. They come to you in sheep’s clothing, but inwardly they are ravenous wolves. By their fruit you will recognize them. Are grapes gathered from thornbushes, or figs Likewise, every good tree bears from thistles? A good fruit, but a bad tree bears bad fruit. good tree cannot bear bad fruit, and a bad tree Every tree that does cannot bear good fruit. not bear good fruit is cut down and thrown into the fire. So then, by their fruit you will recog- 21 nize them. 20 18 19" + }, + { + "verseNum": 46, + "text": "–49) depart from Me, you workers of lawlessness!’ 24 25 Therefore everyone who hears these words of Mine and acts on them is like a wise man who The rain fell, the built his house on the rock. torrents raged, and the winds blew and beat against that house; yet it did not fall, because its 26 foundation was on the rock. 9 The centurion answered, “Lord, I am not wor- thy to have You come under my roof. But just say the word, and my servant will be healed. For I myself am a man under authority, with soldiers under me. I tell one to go, and he goes, and an- other to come, and he comes. I tell my servant to 10 do something, and he does it.” When Jesus heard this, He marveled and said to those following Him, “Truly I tell you, I have 11 not found anyone in Israel with such great faith. I say to you that many will come from the east and the west to share the banquet with Abraham, Isaac, and Jacob in the kingdom of heaven. But the sons of the kingdom will be thrown into the outer darkness, where there will be weeping and 13 gnashing of teeth.” 12 But everyone who hears these words of Mine and does not act on them is like a foolish man a 2 who built his house on sand. The rain fell, the leper 27 Then Jesus said to the centurion, “Go! As you will it be done for you.” And his child have believed, so servant was healed at that very hour. b 4 c 6 A was one afflicted with a skin disease. See Leviticus 13. See" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–10 ;" + }, + { + "verseNum": 18, + "text": "–23) reward.” 42 11 After Jesus had finished instructing His twelve disciples, He went on from there a 2 to teach and preach in their cities. b 3 Meanwhile John heard in prison about the works of Christ, and he sent his disciples to ask Him, “Are You the One who was to come, or 4 should we look for someone else?” 5 c Jesus replied, “Go back and report to John what The blind receive sight, the you hear and see: lame walk, the lepers are cleansed, the deaf 6 hear, the dead are raised, and the good news is d Blessed is the one who preached to the poor. Jesus Testifies about John does not fall away on account of Me." + }, + { + "verseNum": 24, + "text": "–35) 3 b “Behold, I will send My messenger, who will Then the Lord prepare the way before Me. whom you seek will suddenly come to His tem- ple—the Messenger of the covenant, in whom you delight—see, He is coming,” says the LORD 2 of Hosts. But who can endure the day of His coming? And who can stand when He appears? For He will be 3 like a refiner’s fire, like a launderer’s soap. And He will sit as a refiner and purifier of silver; He will purify the sons of Levi and refine them like gold and silver. Then they will present offer- 4 ings to the LORD in righteousness. Then the offerings of Judah and Jerusalem will please the LORD, as in days of old and years gone 5 by. “Then I will draw near to you for judgment. And I will be a swift witness against sorcerers and adulterers and perjurers, against oppressors of the widowed and fatherless, and against those who defraud laborers of their wages and deny justice to the foreigner but do not fear Me,” says Robbing God the LORD of Hosts. 6 7 “Because I, the LORD, do not change, you de- Yet scendants of Jacob have not been destroyed. from the days of your fathers, you have turned away from My statutes and have not kept them. Return to Me, and I will return to you,” says the LORD of Hosts. 8 “But you ask, ‘How can we return?’ Will a man rob God? Yet you are robbing Me! 9 But you ask, ‘How do we rob You?’ a In tithes and offerings. You are cursed with a 10 curse, yet you—the whole nation—are still rob- bing Me. Bring the full tithe into th" + }, + { + "verseNum": 27, + "text": "860 |" + }, + { + "verseNum": 36, + "text": "–50 ;" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 3, + "text": "| 925 to the poor. Jesus Testifies about John fall away on account of Me." + }, + { + "verseNum": 4, + "text": "–8) 13 2 That same day Jesus went out of the house and sat by the sea. Such large crowds gathered around Him that He got into a boat and sat down, while all the people stood on 3 the shore. 4 And He told them many things in parables, say- ing, “A farmer went out to sow his seed. And as he was sowing, some seed fell along the path, and 5 the birds came and devoured it. 6 Some fell on rocky ground, where it did not have much soil. It sprang up quickly because the But when the sun rose, the soil was shallow. seedlings were scorched, and they withered be- 7 cause they had no root. Other seed fell among thorns, which grew up 8 and choked the seedlings. Still other seed fell on good soil and produced a b 9 crop—a hundredfold, sixtyfold, or thirtyfold. The Purpose of Jesus’ Parables let him hear.”" + }, + { + "verseNum": 9, + "text": "–10) He who has ears, 10 Then the disciples came to Jesus and asked, 11 “Why do You speak to the people in parables?” 12 He replied, “The knowledge of the mysteries of the kingdom of heaven has been given to you, Whoever has will be given but not to them. more, and he will have an abundance. Whoever does not have, even what he has will be taken This is why I speak to them in away from him. parables: 13 ‘Though seeing, they do not see; c 14 though hearing, they do not hear or understand.’ In them the prophecy of Isaiah is fulfilled: 47 While Jesus was still speaking to the crowds, His mother and brothers stood outside, wanting to speak to Him. Someone told Him, “Look, Your mother and brothers are standing outside, wanting to speak to You.” a 47 b 9 a ears to hear ‘You will be ever hearing but never understanding; you will be ever seeing but never perceiving. c 13 WH does not include verse 47. 42:20," + }, + { + "verseNum": 10, + "text": ", and" + }, + { + "verseNum": 11, + "text": "–15) 18 19 Consider, then, the parable of the sower: When anyone hears the message of the king- dom but does not understand it, the evil one comes and snatches away what was sown in his 20 heart. This is the seed sown along the path. b The seed sown on rocky ground is the one who 21 hears the word and at once receives it with joy. But since he has no root, he remains for only a season. When trouble or persecution comes be- 22 cause of the word, he quickly falls away. The seed sown among the thorns is the one who hears the word, but the worries of this life and the deceitfulness of wealth choke the word, 23 and it becomes unfruitful. But the seed sown on good soil is the one who hears the word and understands it. He indeed bears fruit and produces a crop—a hundredfold, The Parable of the Weeds sixtyfold, or thirtyfold.”" + }, + { + "verseNum": 16, + "text": "–18) a crop—thirtyfold, sixtyfold, or a hundredfold.” 21 Other seed fell among thorns, which grew up and choked the seedlings, and they yielded no a 32 crop. and Your sisters Now these are the ones Jesus also said to them, “Does anyone bring in b 12 a lamp to put it under a basket or under a bed? the word c 15 ECM, SBL, WH, and TR; NE and BYZ include ." + }, + { + "verseNum": 19, + "text": "–21) 45 46 49 But Jesus replied, “Who is My mother, and who Pointing to His disciples, He are My brothers?” 50 said, “Here are My mother and My brothers. For whoever does the will of My Father in The Parable of the Sower heaven is My brother and sister and mother.”" + }, + { + "verseNum": 22, + "text": "–25) 1 2 Give thanks to the LORD, for He is good; His loving devotion endures forever. Let the redeemed of the LORD say so, 3 whom He has redeemed from the hand of 20 the enemy and gathered from the lands, a from east and west, from north and south. 4 Some wandered in desert wastelands, 5 finding no path to a city in which to dwell. They were hungry and thirsty; 6 their soul fainted within them. 17 Fools, in their rebellious ways, 18 and through their iniquities, suffered affliction. They loathed all food 19 and drew near to the gates of death. Then they cried out to the LORD in their trouble, and He saved them from their distress. 21 He sent forth His word and healed them; He rescued them from the Pit. Let them give thanks to the LORD for His 22 loving devotion and His wonders to the sons of men. Let them offer sacrifices of thanksgiving and declare His works with rejoicing. 23 Then they cried out to the LORD in their 24 Others went out to sea in ships, 7 trouble, and He delivered them from their distress. He led them on a straight path 8 to reach a city where they could live. Let them give thanks to the LORD for His 9 loving devotion conducting trade on the mighty waters. 25 26 They saw the works of the LORD, and His wonders in the deep. For He spoke and raised a tempest that lifted the waves of the sea. They mounted up to the heavens, then sunk and His wonders to the sons of men. 27 to the depths; For He satisfies the thirsty 10 and fills the hungry with good things. Some" + }, + { + "verseNum": 26, + "text": "–39) 28 c 6 But Jesus knew what they were thinking and 5 said, “Why do you harbor evil in your hearts? Which is easier: to say, ‘Your sins are forgiven,’ But so that you may or to say, ‘Get up and walk’? know that the Son of Man has authority on earth to forgive sins ” Then He said to the paralytic, And “Get up, pick up your mat, and go home.” 8 the man got up and went home. 7 . . . When the crowds saw this, they were filled with awe and glorified God, who had given such au- Jesus Calls Matthew thority to men." + }, + { + "verseNum": 40, + "text": "–56) 18 While Jesus was saying these things, a syna- gogue leader came and knelt before Him. “My daughter has just died,” he said. “But come and 19 place Your hand on her, and she will live.” 20 So Jesus got up and went with him, along with Suddenly a woman who had suf- His disciples. fered from bleeding for twelve years came up be- 21 hind Him and touched the fringe of His cloak. She said to herself, “If only I touch His cloak, I 22 will be healed.” Jesus turned and saw her. “Take courage, daughter,” He said, “your faith has healed you.” 23 And the woman was healed from that very hour. 24 When Jesus entered the house of the syna- gogue leader, He saw the flute players and the noisy crowd. “Go away,” He told them. “The girl 25 is not dead, but asleep.” And they laughed at Him. 26 After the crowd had been put outside, Jesus went in and took the girl by the hand, and she got up. And the news about this spread through- but sinners, to repentance a 13 out that region. d 4 b 13 Simon the Cananean e 4" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "–6) 5 6 7 These twelve Jesus sent out with the following instructions: “Do not go onto the road of the Gen- Go ra- tiles or enter any town of the Samaritans. ther to the lost sheep of Israel. As you go, preach a 8 this message: ‘The kingdom of heaven is near.’ Heal the sick, raise the dead, cleanse the lepers, drive out demons. Freely you have received; 9 freely give. 10 Do not take along any gold or silver or copper Take no bag for the road, or sec- in your belts. ond tunic, or sandals, or staff; for the worker is 11 worthy of his provisions. b c 12 14 Whatever town or village you enter, find out until who is worthy there and stay at his house 13 you move on. As you enter the home, greet its occupants. If the home is worthy, let your peace rest on it, but if it is not, let your peace re- And if anyone will not welcome turn to you. you or heed your words, shake the dust off your Truly I feet when you leave that home or town. tell you, it will be more bearable for Sodom and Gomorrah on the day of judgment than for that Sheep among Wolves (2 Timothy 1:3–12) town. 16 15 17 Behold, I am sending you out like sheep among wolves; therefore be as shrewd as snakes and as But beware of men, for they innocent as doves. 18 will hand you over to their councils and flog you On My account you will be in their synagogues. brought before governors and kings as witnesses But when they to them and to the Gentiles. hand you over, do not worry about how to respond or what to say. In that hour you" + }, + { + "verseNum": 6, + "text": "| 927 b “the But they all denied it. “Master,” said Peter, 46 people are crowding and pressing against You.” But Jesus declared, “Someone touched Me, for 47 I know that power has gone out from Me.” Then the woman, seeing that she could not es- cape notice, came trembling and fell down before Him. In the presence of all the people, she ex- plained why she had touched Him and how she 48 had immediately been healed. “Daughter,” said Jesus, “your faith has healed 49 you. Go in peace.” While He was still speaking, someone arrived from the house of the synagogue leader. “Your daughter is dead,” he told Jairus. “Do not bother 50 the Teacher anymore.” But Jesus overheard them and said to Jairus, “Do not be afraid; just believe, and she will be 51 healed.” When He entered the house, He did not allow anyone to go in with Him except Peter, 52 John, James, and the child’s father and mother. Meanwhile, everyone was weeping and mourning for her. But Jesus said, “Stop weeping; she is not dead but asleep.” And they laughed 54 at Him, knowing that she was dead. 53 55 But Jesus took her by the hand and called out, Her spirit returned, and at once “Child, get up!” 56 she got up. And He directed that she be given something to eat. Her parents were astounded, but Jesus ordered them not to tell anyone what The Ministry of the Twelve had happened." + }, + { + "verseNum": 7, + "text": "–9) 14 2 At that time Herod the tetrarch heard the and said to his serv- reports about Jesus ants, “This is John the Baptist; he has risen from the dead! That is why miraculous powers are at 3 work in him.” Now Herod had arrested John and bound him 4 and put him in prison on account of Herodias, his brother Philip’s wife, because John had been 5 telling him, “It is not lawful for you to have her.” Although Herod wanted to kill John, he was afraid of the people, because they regarded John 6 as a prophet. On Herod’s birthday, however, the daughter of 7 Herodias danced before them and pleased Herod so much that he promised with an oath to give 8 to her whatever she asked. Prompted by her mother, she said, “Give me 9 here on a platter the head of John the Baptist.” 10 The king was grieved, but because of his oaths and his guests, he ordered that her wish be granted and sent to have John beheaded in the 11 prison. John’s head was brought in on a platter and presented to the girl, who carried it to her 12 mother. Then John’s disciples came and took his body The Feeding of the Five Thousand and buried it. And they went and informed Jesus." + }, + { + "verseNum": 10, + "text": "–17 ;" + }, + { + "verseNum": 18, + "text": "–20 ;" + }, + { + "verseNum": 21, + "text": "–22) 21 b From that time on Jesus began to show His disciples that He must go to Jerusalem and suffer many things at the hands of the elders, chief priests, and scribes, and that He must be killed 22 and on the third day be raised to life. Peter took Him aside and began to rebuke Him. “Far be it from You, Lord!” he said. “This shall 23 never happen to You!” But Jesus turned and said to Peter, “Get behind Me, Satan! You are a stumbling block to Me. For you do not have in mind the things of God, but the Take Up Your Cross things of men.”" + }, + { + "verseNum": 23, + "text": "–27) 24 25 26 Then Jesus told His disciples, “If anyone wants to come after Me, he must deny himself and take up his cross and follow Me. For whoever wants to save his life will lose it, but whoever loses his life for My sake will find it. What will it profit a man if he gains the whole world, yet forfeits his soul? Or what can a man give in exchange for his soul? For the Son of Man will come in His Father’s glory with His angels, and then He will Jesus Christ a 17 repay each one according to what he has done. Simon Bar-Jonah b 21 27 Truly I tell you, some who are standing here will not taste death before they see the Son of The Transfiguration Man coming in His kingdom.”" + }, + { + "verseNum": 28, + "text": "–36 ;" + }, + { + "verseNum": 35, + "text": ". ; see the First Book of Enoch (1 Enoch 13:1–11 and 1 Enoch 20:1–4). 1094 |" + }, + { + "verseNum": 37, + "text": "–42) 14 15 When they came to the crowd, a man came up “Lord, have to Jesus and knelt before Him. mercy on my son,” he said. “He has seizures and is suffering terribly. He often falls into the fire or into the water. I brought him to Your disciples, but they could not heal him.” 16 c 4 three tabernacles d 5 Greek NE and WH Or Cited in" + }, + { + "verseNum": 43, + "text": "–45) a 22 23 When they gathered together in Galilee, Jesus told them, “The Son of Man is about to be deliv- ered into the hands of men. They will kill Him, and on the third day He will be raised to life.” And The Temple Tax the disciples were deeply grieved. 24 b After they had arrived in Capernaum, the collectors of the two-drachma tax came to Peter and asked, “Does your Teacher pay the two 25 drachmas?” “Yes,” he answered. When Peter entered the house, Jesus preempted him. “What do you think, Simon?” He asked. “From whom do the kings of the earth collect customs and taxes: from their own sons, or from 26 others?” “From others,” Peter answered. 27 “Then the sons are exempt,” Jesus said to him. “But so that we may not offend them, go to the sea, cast a hook, and take the first fish you catch. When you open its mouth, you will find a four- drachma coin. Take it and give it to them for My The Greatest in the Kingdom tax and yours.”" + }, + { + "verseNum": 46, + "text": "–50) c 4 Jesus invited a little child to stand among them. “Truly I tell you,” He said, “unless you change and become like little children, you will never Therefore, who- enter the kingdom of heaven. ever humbles himself like this little child is the And who- greatest in the kingdom of heaven. ever welcomes a little child like this in My name Temptations and Trespasses welcomes Me." + }, + { + "verseNum": 57, + "text": "–62 ;" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "–12) demons that He drives out demons.” 35 36 Jesus went through all the towns and villages, teaching in their synagogues, preaching the gos- pel of the kingdom, and healing every disease When He saw the crowds, He and sickness. was moved with compassion for them, because they were harassed and helpless, like sheep 37 without a shepherd. 38 Then He said to His disciples, “The harvest is Ask the plentiful, but the workers are few. Lord of the harvest, therefore, to send out work- The Twelve Apostles ers into His harvest.”" + }, + { + "verseNum": 4, + "text": "| 929 After the voice had spoken, only Jesus was pre- sent with them. The disciples kept this to them- selves, and in those days they did not tell anyone The Boy with an Evil Spirit what they had seen." + }, + { + "verseNum": 5, + "text": "5 6 7 Whatever house you enter, begin by saying, If a man of peace is there, ‘Peace to this house.’ your peace will rest on him; if not, it will return Stay at the same house, eating and drink- to you. ing whatever you are offered. For the worker is worthy of his wages. Do not move around from 8 house to house. a 9 If you enter a town and they welcome you, eat Heal the sick who whatever is set before you. are there and tell them, ‘The kingdom of God is 10 near you.’ But if you enter a town and they do not wel- 11 come you, go into the streets and declare, ‘Even the dust of your town that clings to our feet, we wipe off as a testimony against you. Yet be sure of this: The kingdom of God is near.’ I tell you, it will be more bearable on that day for Woe to the Unrepentant" + }, + { + "verseNum": 7, + "text": "; see also" + }, + { + "verseNum": 13, + "text": "–16) her actions.” 20 21 Then Jesus began to denounce the cities in which most of His miracles had been performed, because they did not repent. “Woe to you, Cho- razin! Woe to you, Bethsaida! For if the miracles that were performed in you had been performed in Tyre and Sidon, they would have repented But I tell you, long ago in sackcloth and ashes. it will be more bearable for Tyre and Sidon on the 23 day of judgment than for you. 22 24 And you, Capernaum, will you be lifted up to heaven? No, you will be brought down to Hades! For if the miracles that were performed in you had been performed in Sodom, it would have re- But I tell you that it will be mained to this day. more bearable for Sodom on the day of judgment Rest for the Weary" + }, + { + "verseNum": 21, + "text": "–24) than for you.” 25 At that time Jesus declared, “I praise You, Fa- ther, Lord of heaven and earth, because You have hidden these things from the wise and learned, Yes, Fa- and revealed them to little children. 27 ther, for this was well-pleasing in Your sight. 26 All things have been entrusted to Me by My Fa- ther. No one knows the Son except the Father, and no one knows the Father except the Son and 28 those to whom the Son chooses to reveal Him. 29 40 He who receives you receives Me, and he who 41 receives Me receives the One who sent Me. Whoever receives a prophet because he is a prophet will receive a prophet’s reward, and whoever receives a righteous man because he is a righteous man will receive a righteous man’s And if anyone gives even a cup of cold reward. water to one of these little ones because he is My disciple, truly I tell you, he will never lose his John’s Inquiry" + }, + { + "verseNum": 27, + "text": "," + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "–4) reward you. 5 6 And when you pray, do not be like the hypo- crites. For they love to pray standing in the syna- gogues and on the street corners to be seen by men. Truly I tell you, they already have their full But when you pray, go into your inner reward. room, shut your door, and pray to your Father, who is unseen. And your Father, who sees what 7 is done in secret, will reward you. 8 And when you pray, do not babble on like pa- gans, for they think that by their many words Do not be like them, for your they will be heard. Father knows what you need before you ask Him. b 27 c 29 Greek Gehenna ; that is, a Roman copper coin worth about 1/64 of a denarius g 37 from evil f 33 5:18 ; also in verse 30 Or l 44 that is, a Roman mile, approximately 4,855 feet or 1,480 meters accuse you and persecute you j 41 Greek ; love your enemies, bless those who curse you, do good to those who hate you, and pray for those who spitefully" + }, + { + "verseNum": 5, + "text": "–13) tear you to pieces. 7 7 Therefore I tell you, do not worry about your a 13 life, what you will eat or drink; or about your from evil Or also in verse 20 f 33 and" + }, + { + "verseNum": 14, + "text": "–23) and Judas Iscariot, who betrayed Jesus. g 20 h 21 Then Jesus went home, and once again a crowd gathered, so that He and His disciples could not even eat. When His family heard about this, they went out to take custody of Him, 22 saying, “He is out of His mind.” i And the scribes who had come down from Jerusalem were saying, “He is possessed by Beelzebul, ” and, “By the prince of the demons He 23 drives out demons.” Instead, new wine is poured into new wineskins whom He designated as apostles So Jesus called them together and began to speak to them in parables: “How can Satan drive the Bread of the Presence b 26 to heal sicknesses, and These are the twelve He appointed Simon the Cananean Then He comes to a house Beelzebub d 15 . i 22 Or f 18 BYZ and TR include Beezeboul . Greek WH ; Vulgate" + }, + { + "verseNum": 24, + "text": "–26) now One greater than Solomon is here. 43 44 When an unclean spirit comes out of a man, it passes through arid places seeking rest and does Then it says, ‘I will return to the not find it. house I left.’ On its return, it finds the house va- cant, swept clean, and put in order. Then it goes and brings with it seven other spirits more wicked than itself, and they go in and dwell there. And the final plight of that man is worse than the Jesus’ Mother and Brothers first. So will it be with this wicked generation.”" + }, + { + "verseNum": 26, + "text": "| 931 Which of these three do you think was a neigh- bor to the man who fell into the hands of rob- 37 bers?” “The one who showed him mercy,” replied the expert in the law. Martha and Mary Then Jesus told him, “Go and do likewise.” 38 39 As they traveled along, Jesus entered a village where a woman named Martha welcomed Him into her home. She had a sister named Mary, 40 who sat at the Lord’s feet listening to His mes- sage. But Martha was distracted by all the preparations to be made. She came to Jesus and said, “Lord, do You not care that my sister has left 41 me to serve alone? Tell her to help me!” 42 “Martha, Martha,” the Lord replied, “you are worried and upset about many things. But only one thing is necessary. Mary has chosen the good The Lord’s Prayer" + }, + { + "verseNum": 27, + "text": "True Blessedness 27 As Jesus was saying these things, a woman in the crowd raised her voice and said, “Blessed is the womb that bore You, and blessed are the 28 breasts that nursed You!” But He replied, “Blessed rather are those who The Sign of Jonah hear the word of God and obey it.”" + }, + { + "verseNum": 29, + "text": "–32) 3 2 Then the word of the LORD came to Jonah a second time: “Get up! Go to the great city of Nineveh and proclaim to it the message that I 3 give you.” This time Jonah got up and went to Nineveh, in b accordance with the word of the LORD. c 4 Now Nineveh was an exceedingly great city, On the first day requiring a three-day journey. of his journey, Jonah set out into the city and pro- claimed, “Forty more days and Nineveh will be 5 overturned!” And the Ninevites believed God. They pro- claimed a fast and dressed in sackcloth, from the 6 greatest of them to the least. When word reached the king of Nineveh, he got up from his throne, took off his royal robe, cov- 7 ered himself with sackcloth, and sat in ashes. Then he issued a proclamation in Nineveh: “By the decree of the king and his nobles: Let no man or beast, herd or flock, taste 8 anything at all. They must not eat or drink. Furthermore, let both man and beast be chesed covered with sackcloth, and have everyone love Forms of the Hebrew b 3 range of meaning includes became angry was a great city to God e 6 a 8 ," + }, + { + "verseNum": 33, + "text": "–36) there your heart will be also. 22 21 c 23 are good, The eye is the lamp of the body. If your eyes d your whole body will be full of light. your whole body will be full of darkness. If then the light within you is 24 darkness, how great is that darkness! But if your eyes are bad, No one can serve two masters: Either he will hate the one and love the other, or he will be devoted to the one and despise the other. You Do Not Worry" + }, + { + "verseNum": 37, + "text": "–54) 23 2 Then Jesus spoke to the crowds and to 3 “The scribes and Phari- His disciples: So practice and observe sees sit in Moses’ seat. everything they tell you. But do not do what they 4 do, for they do not practice what they preach. and lay them on men’s shoulders, but they themselves 5 are not willing to lift a finger to move them. They tie up heavy, burdensome loads f 6 All their deeds are done for men to see. They broaden their phylacteries and lengthen their tassels. They love the places of honor at ban- the quets, the chief seats in the synagogues, greetings in the marketplaces, and the title of 8 ‘Rabbi’ by which they are addressed. 7 g 9 11 10 But you are not to be called ‘Rabbi,’ for you have And do one Teacher, and you are all brothers. not call anyone on earth your father, for you have one Father, who is in heaven. Nor are you to be called instructors, for you have one Instructor, 12 the Christ. The greatest among you shall be your servant. For whoever exalts himself will be humbled, and whoever humbles himself will 13 be exalted. Woe to you, scribes and Pharisees, you hypocrites! You shut the kingdom of heaven in men’s faces. You yourselves do not enter, nor will 15 you let in those who wish to enter. h Woe to you, scribes and Pharisees, you hypocrites! You traverse land and sea to win a single convert, and when he becomes one, you 16 as you are. make him twice as much a son of hell i 18 17 Woe to you, blind guides! You say, ‘If anyone swears by the temple, it" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "–3) 5 6 When they crossed to the other side, the disci- “Watch out!” Jesus ples forgot to take bread. told them. “Beware of the leaven of the Pharisees 7 and Sadducees.” They discussed this among themselves and con- cluded, “It is because we did not bring any 8 bread.” 9 Aware of their conversation, Jesus said, “You of little faith, why are you debating among your- Do you still not selves about having no bread? understand? Do you not remember the five 10 loaves for the five thousand, and how many bas- ketfuls you gathered? Or the seven loaves for 11 the four thousand, and how many basketfuls you How do you not understand that I gathered? was not telling you about bread? But beware of 12 the leaven of the Pharisees and Sadducees.” Or Several manuscripts do not include from verses 2 and 3. Then they understood that He was not telling them to beware of the leaven used in bread, but of the teaching of the Pharisees and Sadducees. When evening comes . . . of the times. 878 |" + }, + { + "verseNum": 4, + "text": "–7) household! 26 d So do not be afraid of them. For there is noth- ing concealed that will not be disclosed, and 27 nothing hidden that will not be made known. What I tell you in the dark, speak in the day- light; what is whispered in your ear, proclaim 28 from the housetops. Do not be afraid of those who kill the body but cannot kill the soul. Instead, fear the One who can 29 destroy both soul and body in hell. e f Yet Are not two sparrows sold for a penny? 30 not one of them will fall to the ground apart from And even the very hairs the will of your Father. So do not be of your head are all numbered. Confessing Christ" + }, + { + "verseNum": 8, + "text": "–12) afraid; you are worth more than many sparrows. 32 31 33 Therefore everyone who confesses Me before men, I will also confess him before My Father in But whoever denies Me before men, I heaven. Not Peace but a Sword will also deny him before My Father in heaven." + }, + { + "verseNum": 22, + "text": "–31) cannot serve both God and money. 25 26 body, what you will wear. Is not life more than Look at food, and the body more than clothes? the birds of the air: They do not sow or reap or gather into barns, and yet your heavenly Father feeds them. Are you not much more valuable Who of you by worrying can add a than they? 28 single hour to his life? 27 e 29 And why do you worry about clothes? Con- sider how the lilies of the field grow: They do not Yet I tell you that not even Solo- labor or spin. 30 mon in all his glory was adorned like one of these. If that is how God clothes the grass of the field, which is here today and tomorrow is thrown into the furnace, will He not much more 31 clothe you, O you of little faith? 32 33 Therefore do not worry, saying, ‘What shall we eat?’ or ‘What shall we drink?’ or ‘What shall we wear?’ For the Gentiles strive after all these f things, and your heavenly Father knows that you need them. and His righteousness, and all these things will 34 be added unto you. But seek first the kingdom of God Therefore do not worry about tomorrow, for tomorrow will worry about itself. Today has Judging Others" + }, + { + "verseNum": 31, + "text": ". Or ; ; see" + }, + { + "verseNum": 32, + "text": "–34) who sees what is done in secret, will reward you. 19 18 b Do not store up for yourselves treasures on 20 destroy, and where earth, where moth and rust But store up for thieves break in and steal. yourselves treasures in heaven, where moth and rust do not destroy, and where thieves do not For where your treasure is, break in and steal. The Lamp of the Body" + }, + { + "verseNum": 35, + "text": "–48) 36 f 37 39 No one knows about that day or hour, not even the angels in heaven, nor the Son, but only the 38 As it was in the days of Noah, so will it Father. be at the coming of the Son of Man. For in the days before the flood, people were eating and drinking, marrying and giving in marriage, up to the day Noah entered the ark. And they were oblivious until the flood came and swept them all away. So will it be at the coming of the Son of Man. Two men will be in the field: one will be taken and the other left. Two women will be grinding at the mill: one will be taken and the 42 other left. 40 41 Therefore keep watch, because you do not 43 know the day on which your Lord will come. But understand this: If the homeowner had known in which watch of the night the thief was coming, he would have kept watch and would not have let his house be broken into. For this rea- son, you also must be ready, because the Son of 45 Man will come at an hour you do not expect. 44 46 Who then is the faithful and wise servant, whom the master has put in charge of his house- hold, to give the others their food at the proper Blessed is that servant whose master time? Truly I finds him doing so when he returns. tell you, he will put him in charge of all his 48 possessions. 47 50 But suppose that servant is wicked and says in 49 his heart, ‘My master will be away a long time.’ And he begins to beat his fellow servants and The master of to eat and drink with drunkards. that servant will come on a da" + }, + { + "verseNum": 36, + "text": "| 933 say to myself, “You have plenty of good things laid up for many years. Take it easy. Eat, drink, 20 and be merry!” ’ But God said to him, ‘You fool! This very night your life will be required of you. Then who will 21 own what you have accumulated?’ This is how it will be for anyone who stores up Do Not Worry" + }, + { + "verseNum": 37, + "text": "37 banquet, so that when he comes and knocks, they can open the door for him at once. Blessed are those servants whom the master finds on watch when he returns. Truly I tell you, he will dress himself to serve and will have them recline at the 38 table, and he himself will come and wait on them. Even if he comes in the second or third watch and finds them alert, those servants a of the night 39 will be blessed. b But understand this: If the homeowner had known at what hour the thief was coming, he 40 would not have let his house be broken into. You also must be ready, because the Son of 41 Man will come at an hour you do not expect.” “Lord,” said Peter, “are You addressing this 42 parable to us, or to everyone else as well?” 43 And the Lord answered, “Who then is the faith- ful and wise manager, whom the master puts in charge of his servants to give them their portion Blessed is that servant at the proper time? whose master finds him doing so when he re- Truly I tell you, he will put him in charge turns. 45 of all his possessions. 44 46 But suppose that servant says in his heart, ‘My master will be a long time in coming,’ and he be- gins to beat the menservants and maidservants, The master and to eat and drink and get drunk. of that servant will come on a day he does not ex- pect and at an hour he does not anticipate. Then he will cut him to pieces and assign him a place 47 with the unbelievers. 48 That servant who knows his master’s will but does not get ready or follow his" + }, + { + "verseNum": 49, + "text": "–53) nations. 7 Woe is me! For I am like one gathering summer fruit at the gleaning of the vineyard; there is no cluster to eat, 2 no early fig that I crave. The godly man has perished from the earth; there is no one upright among men. They all lie in wait for blood; 3 they hunt one another with a net. Both hands are skilled at evil; the prince and the judge demand a bribe. a 16 When the powerful utters his evil desire, scorn of My people they all conspire together. e 12 b 4 the River your punishment 4 The best of them is like a brier; the most upright is sharper than a hedge of thorns. b The day for your watchmen has come, 5 the day of your visitation. Now is the time of their confusion. Do not rely on a friend; do not trust in a companion. c Seal the doors of your mouth 6 from her who lies in your arms. For a son dishonors his father, a daughter rises against her mother, and a daughter-in-law against her mother-in-law. d A man’s enemies are the members Israel’s Confession and Comfort of his own household. 7 But as for me, I will look to the LORD; 8 I will wait for the God of my salvation. My God will hear me. Do not gloat over me, my enemy! Though I have fallen, I will arise; though I sit in darkness, 9 the LORD will be my light. Because I have sinned against Him, I must endure the rage of the LORD, until He argues my case and executes justice for me. He will bring me into the light; I will see His righteousness. 10 Then my enemy will see and will be covered with shame— she" + }, + { + "verseNum": 53, + "text": ". Hebrew Or Hebrew Cited in" + }, + { + "verseNum": 54, + "text": "–56) 16 Then the Pharisees and Sadducees came and tested Jesus by asking Him to show 2 them a sign from heaven. 3 b 4 But He replied, “When evening comes, you say, ‘The weather will be fair, for the sky is red,’ and in the morning, ‘Today it will be stormy, for the sky is red and overcast.’ You know how to inter- pret the appearance of the sky, but not the signs A wicked and adulterous genera- of the times. tion demands a sign, but none will be given it except the sign of Jonah.” Then He left them and The Leaven of the Pharisees and Sadducees went away." + }, + { + "verseNum": 57, + "text": "–59) will never enter the kingdom of heaven. 21 d e You have heard that it was said to the ancients, 22 ‘Do not murder’ and ‘Anyone who murders will be subject to judgment.’ But I tell you that an- yone who is angry with his brother will be sub- g ject to judgment. Again, anyone who says to his brother, ‘Raca,’ But anyone who says, ‘You fool!’ will be subject 23 to the fire of hell. will be subject to the Sanhedrin. h f Blessed are those who exercise strength under control, for they will inherit the land 24 So if you are offering your gift at the altar and there remember that your brother has some- thing against you, leave your gift there before the altar. First go and be reconciled to your brother; then come and offer your gift. e 22 the hell of fire without ; see the Gehenna of fire g 22 the Council h 22" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–5) 13 Put on sackcloth and lament, O priests; wail, O ministers of the altar. Come, spend the night in sackcloth, O ministers of my God, 14 because the grain and drink offerings are withheld from the house of your God. Consecrate a fast; proclaim a solemn assembly! Gather the elders and all the residents of the land to the house of the LORD your God, and cry out to the LORD. 15 Alas for the day! For the Day of the LORD is near, b 16 and it will come as destruction from the Almighty. Has not the food been cut off before our very eyes— 17 joy and gladness from the house of our God? The seeds lie shriveled beneath the clods; the storehouses are in ruins; the granaries are broken down, 18 for the grain has withered away. How the cattle groan! The herds wander in confusion because they have no pasture. 19 Even the flocks of sheep are suffering. To You, O LORD, I call, for fire has consumed the open pastures and flames have scorched all the trees of b 15 Shaddai a 4 the new wine is dried up, and the oil fails. the field. The precise identification of the four kinds of locusts mentioned here is uncertain. Hebrew 818 |" + }, + { + "verseNum": 6, + "text": "–9) from the storm and the rain. 5 I will sing for my beloved a song of his vineyard: 2 My beloved had a vineyard on a very fertile hill. He dug it up and cleared the stones and planted the finest vines. He built a watchtower in the middle and dug out a winepress as well. He waited for the vineyard to yield good grapes, but the fruit it produced was sour! 26 Your men will fall by the sword, and your warriors in battle. And the gates of Zion will lament and mourn; A Remnant in Zion destitute, she will sit on the ground. 4 In that day seven women will take hold of one man and say, “We will eat our own bread and provide our own clothes. Just let us be called by your name. 2 Take away our disgrace!” On that day the Branch of the LORD will be beautiful and glorious, and the fruit of the land 3 will be the pride and glory of Israel’s survivors. Whoever remains in Zion and whoever is left in Jerusalem will be called holy— a 17 all in Jerusalem who are recorded among will uncover their secret parts b 24 branding the living— Or DSS; MT “And now, O dwellers of Jerusalem and men of Judah, I exhort you to judge 4 between Me and My vineyard. What more could have been done for My vineyard than I have done for it? Why, when I expected sweet grapes, 5 did it bring forth sour fruit? Now I will tell you what I am about to do to My vineyard: I will take away its hedge, and it will be consumed; I will tear down its wall, 6 and it will be trampled. I will make it a wasteland, neither pruned nor c" + }, + { + "verseNum": 18, + "text": "–19) 31 32 He put before them another parable: “The kingdom of heaven is like a mustard seed that a Although it man took and planted in his field. is the smallest of all seeds, yet it grows into the largest of garden plants and becomes a tree, so that the birds of the air come and nest in its The Parable of the Leaven" + }, + { + "verseNum": 20, + "text": "–21) branches.” 33 He told them still another parable: “The king- dom of heaven is like leaven that a woman took and mixed into three measures of flour, until all I Will Open My Mouth in Parables of it was leavened.”" + }, + { + "verseNum": 22, + "text": "–30) Law and the Prophets. 13 14 Enter through the narrow gate. For wide is the gate and broad is the way that leads to destruc- tion, and many enter through it. But small is the gate and narrow the way that leads to life, A Tree and Its Fruit" + }, + { + "verseNum": 31, + "text": "–35) come upon this generation. 37 36 O Jerusalem, Jerusalem, who kills the prophets and stones those sent to her, how often I have a 24 longed to gather your children together, as a hen d 38 Go ahead, then, and complete and dish c 32 gathers her chicks under her wings, but you were d 39 Look, your house is left to you des- unwilling! olate. For I tell you that you will not see Me again until you say, ‘Blessed is He who comes in Temple Destruction and Other Signs ” the name of the Lord.’" + }, + { + "verseNum": 35, + "text": ", Luke Join in the festal procession with boughs in hand, up to the horns of the altar. , meaning This or Or i 1 ; see" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 5, + "text": "| 935 you will stand outside knocking and saying, ‘Lord, open the door for us.’ But he will reply, ‘I do not know where you are 26 from.’ Then you will say, ‘We ate and drank with you, 27 and you taught in our streets.’ And he will answer, ‘I tell you, I do not know where you are from. Depart from me, all you evil- 28 doers.’ There will be weeping and gnashing of teeth when you see Abraham, Isaac, Jacob, and all the 29 prophets in the kingdom of God, but you your- People will come from selves are thrown out. east and west and north and south, and will re- And cline at the table in the kingdom of God. indeed, some who are last will be first, and some Lament over Jerusalem" + }, + { + "verseNum": 6, + "text": "6 22 And they were unable to answer these ques- The Parable of the Guests tions. 7 8 When Jesus noticed how the guests chose the “When places of honor, He told them a parable: you are invited to a wedding banquet, do not sit 9 in the place of honor, in case someone more dis- Then the tinguished than you has been invited. host who invited both of you will come and tell you, ‘Give this man your seat.’ And in humiliation, 10 you will have to take the last place. c 11 But when you are invited, go and sit in the last place, so that your host will come and tell you, ‘Friend, move up to a better place.’ Then you will be honored in front of everyone at the table For everyone who exalts himself will with you. be humbled, and the one who humbles himself 12 will be exalted.” 13 Then Jesus said to the man who had invited Him, “When you host a dinner or a banquet, do not invite your friends or brothers or relatives or rich neighbors. Otherwise, they may invite you in But when you return, and you will be repaid. host a banquet, invite the poor, the crippled, the and you will be blessed. lame, and the blind, Since they cannot repay you, you will be repaid The Parable of the Banquet (Matt. 22:1–14) at the resurrection of the righteous.” 15 14 When one of those reclining with Him heard this, he said to Jesus, “Blessed is everyone who 16 will eat at the feast in the kingdom of God.” d 17 But Jesus replied, “A certain man prepared a When great banquet and invited many guests. it was time for th" + }, + { + "verseNum": 15, + "text": "–24) people regarded Him as a prophet. 22 2 3 Once again, Jesus spoke to them in para- bles: “The kingdom of heaven is like a king who prepared a wedding banquet for his He sent his servants to call those he had in- son. 4 vited to the banquet, but they refused to come. Again, he sent other servants and said, ‘Tell those who have been invited that I have pre- pared my dinner. My oxen and fattened cattle have been killed, and everything is ready. Come 5 to the wedding banquet.’ 6 But they paid no attention and went away, one The rest to his field, another to his business. seized his servants, mistreated them, and killed 7 them. 9 The king was enraged, and he sent his troops to 8 destroy those murderers and burn their city. Then he said to his servants, ‘The wedding ban- quet is ready, but those I invited were not wor- Go therefore to the crossroads and invite to thy. a 42 the banquet as many as you can find.’ c 19 b 44 16 Then the Pharisees went out and conspired to They sent their disci- trap Jesus in His words. ples to Him along with the Herodians. “Teacher,” they said, “we know that You are honest and that You teach the way of God in accordance with the truth. You seek favor from no one, because You pay no attention to external appearance. So tell us what You think: Is it lawful to pay taxes to 18 Caesar or not?” 17 19 But Jesus knew their evil intent and said, “You Show Me hypocrites, why are you testing Me? the coin used for the tax.” 20 And they brought Him a denarius. c" + }, + { + "verseNum": 25, + "text": "–33 ;" + }, + { + "verseNum": 34, + "text": "–35 ; you." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "–7) thrown into the fire of hell. 10 d See that you do not look down on any of these little ones. For I tell you that their angels in heaven always see the face of My Father in 12 heaven. e 13 What do you think? If a man has a hundred sheep and one of them goes astray, will he not leave the ninety-nine on the hills and go out to And if he finds search for the one that is lost? it, truly I tell you, he rejoices more over that one sheep than over the ninety-nine that did not go In the same way, your Father in heaven astray. is not willing that any of these little ones should A Brother Who Sins" + }, + { + "verseNum": 11, + "text": "–32) firstborn belongs to him. 18 19 If a man has a stubborn and rebellious son who does not obey his father and mother and does not his father and listen to them when disciplined, mother are to lay hold of him and bring him to 20 the elders of his city, to the gate of his hometown, and say to the elders, “This son of ours is stub- born and rebellious; he does not obey us. He is a 21 glutton and a drunkard.” a Then all the men of his city will stone him to death. So you must purge the evil from among Cursed Is Anyone Hung on a Tree you, and all Israel will hear and be afraid. 22 b 23 If a man has committed a sin worthy of death, and he is executed, and you hang his body on a tree, you must not leave the body on the tree overnight, but you must be sure to bury him that day, because anyone who is hung on a tree is under God’s curse. You must not defile the land that the LORD your God is giving you as an Various Laws inheritance. c 22 d If you see your brother’s ox or sheep 2 straying, you must not ignore it; be sure If your brother does to return it to your brother. not live near you, or if you do not know who he is, you are to take the animal home to remain with you until your brother comes seeking it; And you shall do then you can return it to him. the same for his donkey, his cloak, or anything your brother has lost and you have found. You 4 must not ignore it. 3 If you see your brother’s donkey or ox fallen on the road, you must not ignore it; you must help 5 him lift it up" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 6, + "text": "| 937 And when he finds it, he joyfully puts it finds it? comes home, and calls to- on his shoulders, 7 gether his friends and neighbors to tell them, ‘Re- I joice with me, for I have found my lost sheep!’ tell you that in the same way there will be more joy in heaven over one sinner who repents than over ninety-nine righteous ones who do not need The Parable of the Lost Coin to repent. 8 a Or what woman who has ten silver coins and loses one of them does not light a lamp, sweep 9 her house, and search carefully until she finds it? And when she finds it, she calls together her friends and neighbors to say, ‘Rejoice with me, for I have found my lost coin.’ In the same way, I tell you, there is joy in the presence of God’s an- The Parable of the Prodigal Son gels over one sinner who repents.”" + }, + { + "verseNum": 7, + "text": "7 Then he asked another, ‘And how much do you a owe?’ ‘A hundred measures of wheat,’ 8 ‘Take your bill and write eighty,’ he told him. he replied. The master commended the dishonest manager because he had acted shrewdly. For the sons of this age are more shrewd in dealing with their own kind than are the sons of light. I tell you, use worldly wealth to make friends for your- selves so that when it is gone, they will welcome 10 you into eternal dwellings. 9 Whoever is faithful with very little will also be faithful with much, and whoever is dishonest 11 with very little will also be dishonest with much. So if you have not been faithful with worldly 12 wealth, who will entrust you with true riches? And if you have not been faithful with the be- longings of another, who will give you belongings 13 of your own? No servant can serve two masters. Either he will hate the one and love the other, or he will be devoted to the one and despise the other. You The Law and the Prophets cannot serve both God and money.” 14 15 The Pharisees, who were lovers of money, So heard all of this and were scoffing at Jesus. He said to them, “You are the ones who justify yourselves before men, but God knows your hearts. For what is prized among men is detesta- 16 ble before God. The Law and the Prophets were proclaimed until John. Since that time, the gospel of the king- b dom of God is being preached, and everyone is forcing his way into it. But it is easier for heaven and earth to pass away than for" + }, + { + "verseNum": 18, + "text": ") 24 If a man marries a woman, but she be- comes displeasing to him because he finds some indecency in her, he may write her a hand it to her, and send certificate of divorce, 2 her away from his house. a 3 4 If, after leaving his house, she goes and becomes another man’s wife, and the second man hates her, writes her a certificate of divorce, hands it to her, and sends her away from his house, or if he dies, then the husband who divorced her first may not remarry her after she has been defiled, for that is an abomination to the LORD. You must not bring sin upon the land that the LORD your 5 God is giving you as an inheritance. If a man is newly married, he must not be sent to war or be pressed into any duty. For one year he is free to stay at home and bring joy to the wife Additional Laws he has married. 6 Do not take a pair of millstones or even an up- per millstone as security for a debt, because that 7 would be taking one’s livelihood as security. If a man is caught kidnapping one of his Israelite brothers, whether he treats him as a slave or sells b him, the kidnapper must die. So you must purge 8 the evil from among you. c 9 In cases of infectious skin diseases, be careful to diligently follow everything the Levitical priests instruct you. Be careful to do as I have Remember what the LORD commanded them. your God did to Miriam on the journey after you a 1 came out of Egypt. b 7 leprosy Cited in" + }, + { + "verseNum": 19, + "text": "–31) He sent. 39 38 You pore over the Scriptures because you pre- sume that by them you possess eternal life. These are the very words that testify about Me, yet 42 41 you refuse to come to Me to have life. 40 43 I do not accept glory from men, but I know you, that you do not have the love of God within you. I have come in My Father’s name, and you have not received Me; but if someone else comes in his own name, you will receive him. How can you believe if you accept glory from one another, yet do not seek the glory that comes from the 45 only God? 44 46 Do not think that I will accuse you before the Father. Your accuser is Moses, in whom you have put your hope. If you had believed Moses, you 47 would believe Me, because he wrote about Me. But since you do not believe what he wrote, how will you believe what I say?” 956 |" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "–4) 5 6 But if anyone causes one of these little ones who believe in Me to stumble, it would be better for him to have a large millstone hung around his 7 neck and to be drowned in the depths of the sea. Woe to the world for the causes of sin. These stumbling blocks must come, but woe to the man 8 through whom they come! If your hand or your foot causes you to sin, cut it off and throw it away. It is better for you to en- ter life crippled or lame than to have two hands 9 and two feet and be thrown into the eternal fire. And if your eye causes you to sin, gouge it out and throw it away. It is better for you to enter life with one eye than to have two eyes and be The Parable of the Lost Sheep" + }, + { + "verseNum": 5, + "text": "–10) from that moment. 19 Afterward the disciples came to Jesus pri- 20 vately and asked, “Why couldn’t we drive it out?” “Because you have so little faith,” He an- swered. “For truly I tell you, if you have faith the size of a mustard seed, you can say to this moun- tain, ‘Move from here to there,’ and it will move. The Second Prediction of the Passion Nothing will be impossible for you.”" + }, + { + "verseNum": 11, + "text": "–19) LORD. 5 Now Naaman, the commander of the army of the king of Aram, was a great man in his mas- ter’s sight and highly regarded, for through him the LORD had given victory to Aram. And he was 2 a mighty man of valor, but he was a leper. b Elisha summoned Gehazi and said, “Call the Shunammite woman.” So he called her and she a 29 came. Gird up your loins leper b 1 leprosy Literally A , or one with At this time the Arameans had gone out in bands and had taken a young girl from the land of Israel, and she was serving Naaman’s wife. , was one afflicted with a skin disease; see Leviticus 13. 344 | 2 Kings 5:3 3 She said to her mistress, “If only my master would go to the prophet who is in Samaria, he 4 would cure him of his leprosy.” And Naaman went and told his master what the 5 girl from the land of Israel had said. “Go now,” said the king of Aram, “and I will send you with a letter to the king of Israel.” a b So Naaman departed, taking with him ten talents and ten six thousand shekels of gold, of silver, 6 sets of clothing. And the letter that he took to the king of Israel stated: “With this letter I am sending my servant Naaman, so that you may cure him of his 7 leprosy.” When the king of Israel read the letter, he tore his clothes and asked, “Am I God, killing and giv- ing life, that this man expects me to cure a leper? Surely you can see that he is seeking a quarrel 8 with me!” Now when Elisha the man of God heard that the king of Israel had torn his clothes, he sent a m" + }, + { + "verseNum": 20, + "text": "–37) 24 25 Then the LORD rained down sulfur and fire on Sodom and Gomorrah—from the LORD out of the heavens. Thus He destroyed these cities and the entire plain, including all the inhabitants of the cities and everything that grew on the 26 ground. But Lot’s wife looked back, and she became a 27 pillar of salt. 28 Early the next morning, Abraham got up and returned to the place where he had stood before the LORD. He looked down toward Sodom and Gomorrah and all the land of the plain, and he saw the smoke rising from the land like smoke 29 from a furnace. So when God destroyed the cities of the plain, He remembered Abraham, and He brought Lot out of the catastrophe that destroyed the cities Lot and His Daughters where he had lived. 30 Lot and his two daughters left Zoar and settled in the mountains—for he was afraid to stay in 31 Zoar—where they lived in a cave. 32 One day the older daughter said to the younger, “Our father is old, and there is no man in the land to sleep with us, as is the custom over Come, let us get our father drunk all the earth. with wine so we can sleep with him and preserve his line.” 33 9" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 9, + "text": "| 939 27 Just as it was in the days of Noah, so also will it be in the days of the Son of Man: People were eating and drinking, marrying and being given in marriage, up to the day Noah entered the ark. 28 Then the flood came and destroyed them all. 29 It was the same in the days of Lot: People were eating and drinking, buying and selling, planting and building. But on the day Lot left Sodom, fire and sulfur rained down from heaven and de- 30 stroyed them all. 31 It will be just like that on the day the Son of Man is revealed. On that day, let no one on the housetop come down to retrieve his possessions. 32 Likewise, let no one in the field return for any- 33 thing he has left behind. Remember Lot’s wife! Whoever tries to save his life will lose it, but whoever loses his life will preserve it. I tell you, on that night two people will be in one bed: one will be taken and the other left. Two women will be grinding grain together: one will 37 be taken and the other left.” 35 34 e “Where, Lord?” they asked. Jesus answered, “Wherever there is a carcass, The Parable of the Persistent Widow there the vultures will gather.” 18 3 2 Then Jesus told them a parable about their need to pray at all times and not lose heart: “In a certain town there was a judge who neither feared God nor respected And there was a widow in that town who men. kept appealing to him, ‘Give me justice against 4 my adversary.’ For a while he refused, but later he said to him- 5 self, ‘Though I neither fear God no" + }, + { + "verseNum": 10, + "text": "10 26 a told this parable: “Two men went up to the 11 temple to pray. One was a Pharisee and the other The Pharisee stood by himself a tax collector. and prayed, ‘God, I thank You that I am not like 12 other men—swindlers, evildoers, adulterers— I fast twice a or even like this tax collector. 13 week and pay tithes of all that I acquire.’ 14 But the tax collector stood at a distance, un- willing even to lift up his eyes to heaven. Instead, he beat his breast and said, ‘God, have mercy on I tell you, this man, rather than me, a sinner!’ the Pharisee, went home justified. For everyone who exalts himself will be humbled, but the one Jesus Blesses the Children who humbles himself will be exalted.”" + }, + { + "verseNum": 15, + "text": "–17) 13 14 Then little children were brought to Jesus for Him to place His hands on them and pray for them. And the disciples rebuked those who But Jesus said, “Let the little brought them. children come to Me, and do not hinder them! 15 For the kingdom of heaven belongs to such as And after He had placed His hands on these.” The Rich Young Man them, He went on from there." + }, + { + "verseNum": 18, + "text": "–30) 16 Just then a man came up to Jesus and inquired, “Teacher, what good thing must I do to obtain a 17 eternal life?” “Why do you ask Me about what is good?” Jesus replied. “There is only One who is good. If 18 you want to enter life, keep the commandments.” “Which ones?” the man asked. Jesus answered, “ ‘Do not murder, do not commit 19 adultery, do not steal, do not bear false witness, honor your father and mother, and love your b 20 neighbor as yourself.’ ” “All these I have kept,” said the young man. 21 “What do I still lack?” Jesus told him, “If you want to be perfect, go, sell your possessions and give to the poor, and you will have treasure in heaven. Then come, 22 follow Me.” When the young man heard this, he went away 23 in sorrow, because he had great wealth. 24 Then Jesus said to His disciples, “Truly I tell you, it is hard for a rich man to enter the kingdom Again I tell you, it is easier for a of heaven. camel to pass through the eye of a needle than for 25 a rich man to enter the kingdom of God.” When the disciples heard this, they were greatly astonished and asked, “Who then can be 26 saved?” Jesus looked at them and said, “With man this is impossible, but with God all things are possi- 27 ble.” “Look,” Peter replied, “we have left everything a 17 to follow You. What then will there be for us?” b 19 BYZ and TR eration" + }, + { + "verseNum": 20, + "text": ", and" + }, + { + "verseNum": 31, + "text": "–34) 17 18 As Jesus was going up to Jerusalem, He took “Look, we the twelve disciples aside and said, are going up to Jerusalem, and the Son of Man 19 will be delivered over to the chief priests and and scribes. They will condemn Him to death will deliver Him over to the Gentiles to be mocked and flogged and crucified. And on the A Mother’s Request" + }, + { + "verseNum": 35, + "text": "–43) 27 29 30 The crowd admonished them to be silent, but they cried out all the louder, “Lord, Son of David, 32 have mercy on us!” Jesus stopped and called them. “What do you 33 want Me to do for you?” He asked. “Lord,” they answered, “let our eyes be 34 opened.” Moved with compassion, Jesus touched their eyes, and at once they received their sight and The Triumphal Entry" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "–10) 34 5 6" + }, + { + "verseNum": 10, + "text": ". 880 |" + }, + { + "verseNum": 11, + "text": "–27) 14 15 For it is just like a man going on a journey, who called his servants and entrusted them with his to possessions. another two talents, and to another one talent— each according to his own ability. And he went on 16 his journey. To one he gave five talents, b c 17 The servant who had received the five talents went at once and put them to work and gained 18 Likewise, the one with the two tal- five more. ents gained two more. But the servant who had received the one talent went off, dug a hole 19 in the ground, and hid his master’s money. 20 After a long time the master of those servants returned and settled accounts with them. The servant who had received the five talents came and presented five more. ‘Master,’ he said, ‘you entrusted me with five talents. See, I have gained 21 five more.’ His master replied, ‘Well done, good and faith- ful servant! You have been faithful with a few things; I will put you in charge of many things. 24 Enter into the joy of your master!’ 25 Finally, the servant who had received the one talent came and said, ‘Master, I knew that you are a hard man, reaping where you have not sown and gathering where you have not scattered seed. So I was afraid and went out and hid your talent in the ground. See, you have what belongs 26 to you.’ ‘You wicked, lazy servant!’ replied his master. ‘You knew that I reap where I have not sown and gather where I have not scattered seed. Then you should have deposited my money with the bankers, and on my return" + }, + { + "verseNum": 28, + "text": "–40 ;" + }, + { + "verseNum": 37, + "text": "| 941 19 2 3 Then Jesus entered Jericho and was And there was a man passing through. named Zacchaeus, a chief tax collector, who was He was trying to see who Jesus very wealthy. was, but could not see over the crowd because he was small in stature. So he ran on ahead and climbed a sycamore tree to see Him, since Jesus 5 was about to pass that way. 4 When Jesus came to that place, He looked up and said, “Zacchaeus, hurry down, for I must stay 6 at your house today.” 7 So Zacchaeus hurried down and welcomed Him And all who saw this began to grumble, joyfully. saying, “He has gone to be the guest of a sinful 8 man!” But Zacchaeus stood up and said to the Lord, “Look, Lord, half of my possessions I give to the poor, and if I have cheated anyone, I will repay it 9 fourfold.” 10 Jesus said to him, “Today salvation has come to this house, because this man too is a son of Abra- For the Son of Man came to seek and to ham. The Parable of the Ten Minas (Matt. 25:14–30) save the lost.” 11 12 While the people were listening to this, Jesus proceeded to tell them a parable, because He was near Jerusalem and they thought the kingdom of So He said, “A God would appear imminently. man of noble birth went to a distant country to Be- lay claim to his kingship and then return. forehand, he called ten of his servants and gave ‘Conduct business with this un- them ten minas. 14 til I return,’ he said. 13 a But his subjects hated him and sent a delega- tion after him to say, ‘We do not want this man" + }, + { + "verseNum": 38, + "text": ". He spreads the snow like wool; b He scatters the frost like ashes; He casts forth His hail like pebbles. 17 18 Who can withstand His icy blast? He sends forth His word and melts them; 19 He unleashes His winds, and the waters flow. He declares His word to Jacob, 20 His statutes and judgments to Israel. c He has done this for no other nation; they do not know His judgments. Hallelujah! Psalm 148 Praise the LORD from the Heavens" + }, + { + "verseNum": 41, + "text": "–44) and excellent in wisdom. a 29 Woe to you, O Ariel, the city of Ariel where David camped! Year upon year 2 let your festivals recur. And I will constrain Ariel, and there will be mourning and b 3 lamentation; she will be like an altar hearth I will camp in a circle around you; I will besiege you with towers and set up siege works against you. 4 before Me. You will be brought low, you will speak from the ground, and out of the dust your words will be muffled. Your voice will be like a spirit from the 5 ground; your speech will whisper out of the dust. But your many foes will be like fine dust, the multitude of the ruthless like blowing 6 chaff. Then suddenly, in an instant, you will be visited by the LORD of Hosts with thunder and earthquake and loud noise, 7 with windstorm and tempest and consuming flame of fire. All the many nations going out to battle against Ariel— even all who war against her, laying siege and attacking her— When he has leveled its surface, does he not sow caraway and scatter will be like a dream, 8 like a vision in the night, cumin? He plants wheat in rows and barley in plots, 26 and rye within its border. 27 For his God instructs and teaches him properly. Surely caraway is not threshed with a sledge, and the wheel of a cart is not rolled over the cumin. But caraway is beaten out with a stick, Lion of God a 1 Altar Hearth and cumin with a rod. like Ariel b 2 or Or verse 7 Or ; see the footnote for verse 1. as when a hungry man dreams he is eating, th" + }, + { + "verseNum": 45, + "text": "–48 ;" + }, + { + "verseNum": 46, + "text": "668 |" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "–8) 22 23 When Jesus returned to the temple courts and began to teach, the chief priests and elders of the people came up to Him. “By what authority are You doing these things?” they asked. “And who a 12 gave You this authority?” d 16 the temple But he went. e 29 “I will also ask you one question,” Jesus re- plied, “and if you answer Me, I will tell you by What what authority I am doing these things. was the source of John’s baptism? Was it from heaven or from men?” 25 They deliberated among themselves and said, “If 26 we say, ‘From heaven,’ He will ask, ‘Why then did But if we say, ‘From you not believe him?’ 27 men,’ we are afraid of the people, for they all re- So they answered, gard John as a prophet.” “We do not know.” And Jesus replied, “Neither will I tell you by what The Parable of the Two Sons authority I am doing these things. 28 But what do you think? There was a man who had two sons. He went to the first one and said, 29 ‘Son, go and work today in the vineyard.’ e ‘I will not,’ he replied. But later he changed his 30 mind and went. Then the man went to the second son and told him the same thing. 31 ‘I will, sir,’ he said. But he did not go. f Which of the two did the will of his father?” “The first, ” they answered. Jesus said to them, “Truly I tell you, the tax 32 collectors and prostitutes are entering the king- For John came to you dom of God before you. in the way of righteousness, and you did not be- lieve him, but the tax collectors and prostitutes did. And" + }, + { + "verseNum": 9, + "text": "–18) 33 Listen to another parable: There was a land- owner who planted a vineyard. He put a wall around it, dug a winepress in it, and built a tower. Then he rented it out to some tenants and went 34 away on a journey. 35 When the harvest time drew near, he sent his servants to the tenants to collect his share of the fruit. But the tenants seized his servants. They 36 beat one, killed another, and stoned a third. Again, he sent other servants, more than the 37 first group. But the tenants did the same to them. Finally, he sent his son to them. ‘They will re- the temple of God spect my son,’ he said. f 31 b 13 The latter c 13 Literally" + }, + { + "verseNum": 17, + "text": "," + }, + { + "verseNum": 18, + "text": "." + }, + { + "verseNum": 19, + "text": "–26) For many are called, but few are chosen.” This is from the Lord, 43 and it is marvelous in our eyes’ ? 15 44 Therefore I tell you that the kingdom of God will be taken away from you and given to a peo- ple who will produce its fruit. He who falls on b this stone will be broken to pieces, but he on 45 whom it falls will be crushed. ” 46 When the chief priests and Pharisees heard His parables, they knew that Jesus was speaking Although they wanted to arrest about them. Him, they were afraid of the crowds, because the The Parable of the Banquet" + }, + { + "verseNum": 27, + "text": "–40) 23 24 That same day the Sadducees, who say there is no resurrection, came to Jesus and questioned Him. “Teacher,” they said, “Moses declared that if a man dies without having children, his brother is to marry the widow and raise up off- Now there were seven broth- spring for him. ers among us. The first one married and died without having children. So he left his wife to his 25 d d 24" + }, + { + "verseNum": 28, + "text": "188 |" + }, + { + "verseNum": 37, + "text": ", and" + }, + { + "verseNum": 41, + "text": "–44) 40 41 42 While the Pharisees were assembled, Jesus “What do you think about questioned them: the Christ? Whose son is He?” 43 “David’s,” they answered. Jesus said to them, “How then does David in 44 the Spirit call Him ‘Lord’? For he says: ‘The Lord said to my Lord, “Sit at My right hand until I put Your enemies under Your feet.” e ’ 45 No one was able to answer a word, and from that day on no one dared to question Him any Woes to Scribes and Pharisees further." + }, + { + "verseNum": 42, + "text": "–43," + }, + { + "verseNum": 45, + "text": "–47) delight. 38 In His teaching Jesus also said, “Watch out for the scribes. They like to walk around in long 39 robes, to receive greetings in the marketplaces, and to have the chief seats in the synagogues and the places of honor at banquets. They de- fraud widows of their houses, and for a show make lengthy prayers. These men will receive The Widow’s Offering" + }, + { + "verseNum": 47, + "text": ". Greek ; also in verse 33 886 |" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "–4) greater condemnation.” 41 40 e 42 As Jesus was sitting opposite the treasury, He watched the crowd putting money into it. And many rich people put in large amounts. Then one poor widow came and put in two small cop- per coins, which amounted to a small fraction of b 31 a 30 a denarius. devour widows’ houses f 42 f" + }, + { + "verseNum": 5, + "text": "–9) e 24 As Jesus left the temple and was walking away, His disciples came up to Him to 2 point out its buildings. “Do you see all these things?” He replied. “Truly I tell you, not one stone here will be left on an- 3 other; every one will be thrown down.” While Jesus was sitting on the Mount of Olives, the disciples came to Him privately. “Tell us,” they said, “when will these things happen, and what will be the sign of Your coming and of the 4 end of the age?” 5 6 Jesus answered, “See to it that no one deceives you. For many will come in My name, claiming, ‘I am the Christ,’ and will deceive many. You will hear of wars and rumors of wars, but see to it that you are not alarmed. These things must hap- pen, but the end is still to come. Nation will rise against nation, and kingdom against kingdom. There will be famines and earthquakes in vari- ous places. All these are the beginning of birth Witnessing to All Nations pains." + }, + { + "verseNum": 6, + "text": "| 943 Even Moses demonstrates that the dead are raised, in the passage about the burning bush. For he calls the Lord ‘the God of Abraham, the He is not God of Isaac, and the God of Jacob.’ the God of the dead, but of the living, for to Him 39 all are alive.” 38 d 40 Some of the scribes answered, “Teacher, You And they did not dare to have spoken well!” Whose Son Is the Christ? question Him any further." + }, + { + "verseNum": 7, + "text": "7 “Teacher,” they asked, “when will these things happen? And what will be the sign that they are 8 about to take place?” 9 Jesus answered, “See to it that you are not de- ceived. For many will come in My name, claiming, ‘I am He,’ and, ‘The time is near.’ Do not follow When you hear of wars and rebellions, do them. not be alarmed. These things must happen first, Witnessing to All Nations but the end is not imminent.”" + }, + { + "verseNum": 10, + "text": "–19) 8 7 9 10 Then they will deliver you over to be perse- cuted and killed, and you will be hated by all At that time many nations because of My name. will fall away and will betray and hate one and many false prophets will arise another, 12 and deceive many. 11 13 Because of the multiplication of wickedness, But the one the love of most will grow cold. 14 who perseveres to the end will be saved. And this gospel of the kingdom will be preached in all the world as a testimony to all na- The Abomination of Desolation tions, and then the end will come." + }, + { + "verseNum": 20, + "text": "–24) 15 f So when you see standing in the holy place ‘the abomination of desolation,’ spoken of by the b 26 prophet Daniel (let the reader understand), e 39 desolate f 15 include See" + }, + { + "verseNum": 25, + "text": "–28) 25 26 27 So if they tell you, ‘There He is, in the wilder- ness,’ do not go out, or, ‘Here He is, in the inner For just as the light- rooms,’ do not believe it. ning comes from the east and flashes as far as the 28 west, so will be the coming of the Son of Man. Wherever there is a carcass, there the vultures 29 will gather. Immediately after the tribulation of those days: ‘The sun will be darkened, and the moon will not give its light; the stars will fall from the sky, a 30 and the powers of the heavens will be shaken. b ’ c At that time the sign of the Son of Man will ap- and all the tribes of the earth pear in heaven, will mourn. They will see the Son of Man coming 31 on the clouds of heaven with power and great And He will send out His angels with a glory. loud trumpet call, and they will gather His elect from the four winds, from one end of the heavens The Lesson of the Fig Tree to the other." + }, + { + "verseNum": 27, + "text": "," + }, + { + "verseNum": 29, + "text": "–33) 32 d Now learn this lesson from the fig tree: As a 29 soon as its branches become tender and sprout and the celestial bodies will be shaken c 30 this parable d 32 e 33 e 34 right at the door. So also, leaves, you know that summer is near. when you see all these things, you will know that He is near, Truly I tell you, 35 this generation will not pass away until all these Heaven and earth will things have happened. Readiness at Any Hour pass away, but My words will never pass away." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "–2 ;" + }, + { + "verseNum": 3, + "text": "–6) 13 14 15 Then one of the Twelve, the one called Judas Iscariot, went to the chief priests and asked, “What are you willing to give me if I hand Him 16 over to you?” And they set out for him thirty pieces of silver. So from then on Judas looked Preparing the Passover for an opportunity to betray Jesus." + }, + { + "verseNum": 7, + "text": "–13) 17 c On the first day of the Feast of Unleavened the disciples came to Jesus and asked, Bread, “Where do You want us to prepare for You to eat 18 the Passover?” 19 He answered, “Go into the city to a certain man and tell him that the Teacher says, ‘My time is near. I will keep the Passover with My disciples at your house.’ So the disciples did as Jesus The Last Supper" + }, + { + "verseNum": 14, + "text": "–23 ; 1 Corinthians 11:17–34) 20 ” When evening came, Jesus was reclining with the twelve disciples. And while they were eat- ing, He said to them, “Truly I tell you, one of you 22 will betray Me.” They were deeply grieved and began to ask 23 Him one after another, “Surely not I, Lord?” 24 Jesus answered, “The one who has dipped his hand into the bowl with Me will betray Me. The Son of Man will go just as it is written about Him, but woe to that man by whom He is betrayed. It 25 would be better for him if he had not been born.” Then Judas, who would betray Him, said, “Surely not I, Rabbi?” 26 Jesus answered, “You have said it yourself.” While they were eating, Jesus took bread, spoke a blessing and broke it, and gave it to the 27 disciples, saying, “Take and eat; this is My body.” 28 e Then He took the cup, gave thanks, and gave it to them, saying, “Drink from it, all of you. This 29 which is poured out is My blood of the covenant, for many for the forgiveness of sins. I tell you, I will not drink of this fruit of the vine from now the new covenant Literally On the first of the e 28 c 17 See" + }, + { + "verseNum": 31, + "text": "–38 ;" + }, + { + "verseNum": 37, + "text": ". insurrectionists e 27 i 36 Or See" + }, + { + "verseNum": 38, + "text": "| 945 has been determined, but woe to that man who 23 betrays Him.” Then they began to question among them- Who Is the Greatest? selves which of them was going to do this. 24 26 A dispute also arose among the disciples as to 25 which of them should be considered the greatest. So Jesus declared, “The kings of the Gentiles lord it over them, and those in authority over But you them call themselves benefactors. shall not be like them. Instead, the greatest 27 among you should be like the youngest, and the For one who leads like the one who serves. who is greater, the one who reclines at the table or the one who serves? Is it not the one who re- 28 clines? But I am among you as one who serves. 29 30 You are the ones who have stood by Me in My And I bestow on you a kingdom, just as trials. My Father has bestowed one on Me, so that you may eat and drink at My table in My kingdom and sit on thrones, judging the twelve tribes of Jesus Predicts Peter’s Denial Israel. (Matt. 26:31–35 ;" + }, + { + "verseNum": 39, + "text": "–46) 36 Then Jesus went with His disciples to a place called Gethsemane, and He told them, “Sit here 37 while I go over there and pray.” 38 He took with Him Peter and the two sons of Zebedee and began to be sorrowful and deeply distressed. Then He said to them, “My soul is consumed with sorrow to the point of death. Stay 39 here and keep watch with Me.” Going a little farther, He fell facedown and prayed, “My Father, if it is possible, let this cup 40 pass from Me. Yet not as I will, but as You will.” 41 Then Jesus returned to the disciples and found them sleeping. “Were you not able to keep watch with Me for one hour?” He asked Peter. “Watch and pray so that you will not enter into tempta- tion. For the spirit is willing, but the body is 42 weak.” 43 A second time He went away and prayed, “My Father, if this cup cannot pass unless I drink it, may Your will be done.” And again Jesus re- turned and found them sleeping, for their eyes 44 were heavy. 45 46 Then He returned to the disciples and said, “Are you still sleeping and resting? Look, the hour is near, and the Son of Man is betrayed into Rise, let us go! See, My be- the hands of sinners. The Betrayal of Jesus trayer is approaching!”" + }, + { + "verseNum": 47, + "text": "–53 ;" + }, + { + "verseNum": 54, + "text": "–62 ;" + }, + { + "verseNum": 58, + "text": "–62) 25 Simon Peter was still standing and warming himself. So they asked him, “Aren’t you also one of His disciples?” 26 He denied it and said, “I am not.” One of the high priest’s servants, a relative of the man whose ear Peter had cut off, asked, “Didn’t I see you with Him in the garden?” a 32 See" + }, + { + "verseNum": 63, + "text": "–65 ;" + }, + { + "verseNum": 66, + "text": "–71 ;" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "–5) 15 28 16 Now Simon Peter and another disciple were following Jesus. Since that disciple was known to the high priest, he also went with Jesus into the But Peter stood courtyard of the high priest. outside at the door. Then the disciple who was known to the high priest went out and spoke to 17 the doorkeeper, and brought Peter in. At this, the servant girl watching the door said to Peter, “Aren’t you also one of this man’s disci- ples?” 18 “I am not,” he answered. Because it was cold, the servants and officers were standing around a charcoal fire they had made to keep warm. And Peter was also standing Jesus before the High Priest with them, warming himself. (Matt. 26:57–68 ;" + }, + { + "verseNum": 13, + "text": "–25) 15 16 Now it was the governor’s custom at the feast to release to the crowd a prisoner of their choos- d 17 At that time they were holding a notorious ing. prisoner named Barabbas. So when the crowd had assembled, Pilate asked them, “Which one do 18 you want me to release to you: Barabbas, or Jesus For he knew it was out who is called Christ?” 19 of envy that they had handed Jesus over to him. While Pilate was sitting on the judgment seat, his wife sent him this message: “Have nothing to do with that innocent man, for I have suffered terribly in a dream today because of Him.” Barabbas c 10 Or 11:12–13. SBL and NA ; also in verse 17, but universally called in verses 20, 21, and 26 See Ps. 110:1 and Dan. 7:13. See Jer. 19:1–15, Jer. 32:6–9, and Zech. 892 |" + }, + { + "verseNum": 26, + "text": "–43 ;" + }, + { + "verseNum": 30, + "text": "; see also Rev. 6:16. LXX; Hebrew Or 4 4 d I led them with cords of kindness, Yes, he struggled with the angel and" + }, + { + "verseNum": 34, + "text": "DSS, LXX, Vulgate, and Syriac; most MT LXX the torment of the afflicted. c 15 like a lion at my hands and feet e 18 I will sing Your praises in the assembly My mouth MT; or Cited in" + }, + { + "verseNum": 35, + "text": "| 947 20 21 Caesar, and proclaiming Himself to be Christ, a 3 King.” So Pilate asked Him, “Are You the King of the Wanting to release Jesus, Pilate addressed but they kept shouting, “Crucify them again, 22 Him! Crucify Him!” Jews?” 4 “You have said so,” Jesus replied. Then Pilate said to the chief priests and the crowds, “I find no basis for a charge against this 5 man.” But they kept insisting, “He stirs up the people all over Judea with His teaching. He began in Gal- Jesus before Herod ilee and has come all the way here.” 6 7 When Pilate heard this, he asked if the man was And learning that Jesus was under a Galilean. Herod’s jurisdiction, he sent Him to Herod, who 8 himself was in Jerusalem at that time. When Herod saw Jesus, he was greatly pleased. He had wanted to see Him for a long time, be- cause he had heard about Him and was hoping to Herod questioned see Him perform a miracle. 10 Jesus at great length, but He gave no answer. 9 11 Meanwhile, the chief priests and scribes stood And even there, vehemently accusing Him. Herod and his soldiers ridiculed and mocked Him. Dressing Him in a fine robe, they sent Him 12 back to Pilate. A third time he said to them, “What evil has this man done? I have found in Him no offense worthy of death. So after I punish Him, I will re- 23 lease Him.” b But they were insistent, demanding with loud 24 25 voices for Jesus to be crucified. And their clamor So Pilate sentenced that their de- prevailed. As they had requested, he re- mand be me" + }, + { + "verseNum": 36, + "text": "36 a 37 The soldiers also mocked Him and came up to “If You are the King of offer Him sour wine. 38 the Jews,” they said, “save Yourself!” b Above Him was posted an inscription: 39 THIS IS THE KING OF THE JEWS. One of the criminals who hung there heaped abuse on Him. “Are You not the Christ?” he said. 40 “Save Yourself and us!” 41 But the other one rebuked him, saying, “Do you not even fear God, since you are under the same We are punished justly, for we are judgment? receiving what our actions deserve. But this man c Then he said, “Jesus, has done nothing wrong.” remember me when You come into Your king- 43 dom!” 42 And Jesus said to him, “Truly I tell you, today The Death of Jesus" + }, + { + "verseNum": 44, + "text": "–49) For the choirmaster. A Psalm of David. 1 2 Incline Your ear to me; come quickly to my rescue. Be my rock of refuge, 3 the stronghold of my deliverance. For You are my rock and my fortress; 4 lead me and guide me for the sake of Your name. You free me from the net laid out for me, d 5 for You are my refuge. Into Your hands I commit my spirit; You have redeemed me, O LORD, God e of truth. I hate 7 those who cling to worthless idols, but in the LORD I trust. I will be glad and rejoice in Your loving devotion, 8 for You have seen my affliction; You have known the anguish of my soul. You have not delivered me to the enemy; You have set my feet in the open. 9 Be merciful to me, O LORD, for I am in distress; my eyes fail from sorrow, 10 my soul and body as well. For my life is consumed with grief and my years with groaning; my iniquity has drained my strength, and my bones are wasting away. Among all my enemies I am a disgrace, 11 and among my neighbors even more. 12 I am dreaded by my friends— they flee when they see me on the street. I am forgotten like a dead man, out of mind. 13 I am like a broken vessel. For I hear the slander of many; there is terror on every side. 14 They conspire against me and plot to take my life. 15 But I trust in You, O LORD; I say, “You are my God.” My times are in Your hands; 16 17 deliver me from my enemies and from those who pursue me. Make Your face shine on Your servant; save me by Your loving devotion. In You, O LORD, I have taken refuge; let" + }, + { + "verseNum": 46, + "text": "; see Ex. 3:15. Or Or MT; one Hebrew manuscript, LXX, and Syriac 18 May lying lips be silenced— I said, “I will confess my transgressions to the" + }, + { + "verseNum": 50, + "text": "–56 ;" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "–12 ;" + }, + { + "verseNum": 13, + "text": "–35) 11 12 After this, Jesus appeared in a different form to 13 two of them as they walked along in the country. And they went back and reported it to the rest, The Great Commission" + }, + { + "verseNum": 36, + "text": "–49 ; 1" + }, + { + "verseNum": 50, + "text": "–53 ;" + }, + { + "verseNum": 53, + "text": "| 949 34 There they found the Eleven and those with and saying, “The Lord them, gathered together 35 has indeed risen and has appeared to Simon!” Then the two told what had happened on the road, and how they had recognized Jesus in the Jesus Appears to the Disciples breaking of the bread." + } + ] + } + ] + }, + { + "name": "John", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–5 ;" + }, + { + "verseNum": 4, + "text": "–6) pleases Him.” 30 29 31 32 As Jesus spoke these things, many believed in Him. So He said to the Jews who had believed Him, “If you continue in My word, you are truly My disciples. Then you will know the truth, 33 and the truth will set you free.” “We are Abraham’s descendants,” they an- swered. “We have never been slaves to anyone. 34 How can You say we will be set free?” 35 36 Jesus replied, “Truly, truly, I tell you, everyone who sins is a slave to sin. A slave does not remain in the house forever, but a son remains forever. So if the Son sets you free, you will be 37 free indeed. 38 I know you are Abraham’s descendants, but you are trying to kill Me because My word has no place within you. I speak of what I have seen in the presence of the Father, and you do what you 39 have heard from your father.” “Abraham is our father,” they replied. 40 “If you were children of Abraham,” said Jesus, “you would do the works of Abraham. But now you are trying to kill Me, a man who has told you 41 the truth that I heard from God. Abraham never did such a thing. You are doing the works of your father.” “We are not illegitimate children,” they declared. 42 “Our only Father is God Himself.” Jesus said to them, “If God were your Father, you would love Me, for I have come here from 43 God. I have not come on My own, but He sent Me. Why do you not understand what I am saying? a 54 It is because you are unable to accept My and so He passed by WH and TR before Abraham was, I am! Literally Your" + }, + { + "verseNum": 5, + "text": "–10) “Now go and sin no more.” 12 Once again, Jesus spoke to the people and said, “I am the light of the world. Whoever follows Me will never walk in the darkness, but will have the 13 light of life.” So the Pharisees said to Him, “You are testify- 14 ing about Yourself; Your testimony is not valid.” Jesus replied, “Even if I testify about Myself, My testimony is valid, because I know where I came from and where I am going. But you do not know You where I came from or where I am going. But judge according to the flesh; I judge no one. g even if I do judge, My judgment is true, because I 17 am not alone; I am with the Father who sent Me. 15 16 h 18 Even in your own Law it is written that the testimony of two men is valid. I am One who testifies about Myself, and the Father, who sent 19 Me, also testifies about Me.” “Where is Your Father?” they asked Him. “You do not know Me or My Father,” Jesus answered. “If you knew Me, you would know My 20 Father as well.” He spoke these words while teaching in the temple courts, near the treasury. Yet no one 21 seized Him, because His hour had not yet come. Again He said to them, “I am going away, and you will look for Me, but you will die in your sin. 22 Where I am going, you cannot come.” They said this to test Him, in order to have a basis for accusing Him. But Jesus bent down and 7 began to write on the ground with His finger. So the Jews began to ask, “Will He kill Himself, since He says, ‘Where I am going, you cannot 23 come’?” When t" + }, + { + "verseNum": 12, + "text": "–13) 13 14 b I have many things to write to you, but I would Instead, I prefer not to do so with pen and ink. hope to see you soon and speak with you face to face. Peace to you. The friends here send you greetings. I have written to the church about this, but Greet each of our friends there by name. a 9 I have written something to the church b 14 and we will speak mouth to mouth Literally begin a new verse (15) after face to face. Literally ; some translators Jude A Greeting from Jude" + }, + { + "verseNum": 13, + "text": "–14) shares in his evil deeds. 12 I have many things to write to you, but I would prefer not to do so with paper and ink. Instead, I so hope to come and speak with you face to face, 13 that our joy may be complete. b c The children of your elect sister send you greetings. a 8 what you have worked for b 12 mouth to mouth c 13 Amen. NE and WH Literally BYZ and TR include 3 John A Greeting from the Elder (2" + }, + { + "verseNum": 14, + "text": "–18) For the choirmaster. According to Gittith.a A Psalm of the sons of Korah. 1 How lovely is Your dwelling place, 2 O LORD of Hosts! My soul longs, even faints, for the courts of the LORD; my heart and my flesh cry out 3 for the living God. Even the sparrow has found a home, and the swallow a nest for herself, where she places her young near Your altars, 4 O LORD of Hosts, my King and my God. How blessed are those who dwell in Your house! 5 They are ever praising You. Selah Blessed are those whose strength is 8 in You, b whose hearts are set on pilgrimage. As they pass through the Valley of Baca, they make it a place of springs; even the autumn rain covers it with c pools. 6 7 8 They go from strength to strength, until each appears before God in Zion. 10 O LORD God of Hosts, hear my prayer; Selah 9 give ear, O God of Jacob. He withholds no good thing 12 from those who walk with integrity. O LORD of Hosts, how blessed is the man who trusts in You! Psalm 85 You Showed Favor to Your Land For the choirmaster. A Psalm of the sons of Korah. 1 d 2 You showed favor to Your land, O LORD; You restored Jacob from captivity. You forgave the iniquity of Your people; You covered all their sin. 3 Selah You withheld all Your fury; You turned from Your burning anger. 4 Restore us, O God of our salvation, and put away Your displeasure 5 toward us. Will You be angry with us forever? 6 Will You draw out Your anger to all generations? Will You not revive us again, 7 that Your people may rejoice" + }, + { + "verseNum": 19, + "text": "–28) 23 3 2 In those days John the Baptist came, preach- and saying, ing in the wilderness of Judea 3 “Repent, for the kingdom of heaven is near.” This is he who was spoken of through the prophet Isaiah: “A voice of one calling in the wilderness, f ‘Prepare the way for the Lord, ” make straight paths for Him.’ 4 John wore a garment of camel’s hair, with a 5 leather belt around his waist. His food was lo- d 15 custs and wild honey. People went out to him Jeremiah" + }, + { + "verseNum": 23, + "text": "and all flesh together will see it. on a high mountain. O herald of good news to Jerusalem, lift it up, Say to the cities of Judah, “Here is your God!” LXX f 9 LXX b 3 e 8 Or make straight the paths of our God Every valley shall be filled in, and every mountain and hill ; d 5 O herald of good news to Zion, go up Literally Cited in" + }, + { + "verseNum": 27, + "text": ". Literally e 35" + }, + { + "verseNum": 29, + "text": "–34) 13 14 At that time Jesus came from Galilee to the Jor- But John tried to dan to be baptized by John. prevent Him, saying, “I need to be baptized by 15 You, and do You come to me?” “Let it be so now,” Jesus replied. “It is fitting for us to fulfill all righteousness in this way.” Then 16 John permitted Him. c d and He saw As soon as Jesus was baptized, He went up out of the water. Suddenly the heavens were 17 the Spirit of God descend- opened, And a voice ing like a dove and resting on Him. from heaven said, “This is My beloved Son, in The Temptation of Jesus whom I am well pleased!”" + }, + { + "verseNum": 32, + "text": "–33." + }, + { + "verseNum": 35, + "text": "–42) 18 The tempter came to Him and said, “If You are the Son of God, tell these stones to become c 16 a 11 bread.” he saw Or i 16 in the Holy Spirit and in fire in water b 11 e 4 Or f 6 As Jesus was walking beside the Sea of Galilee, and the heavens were opened to Him He saw two brothers, Simon called Peter and his d 16 g 7 NA, BYZ, and TR h 10 Or ; see" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 6, + "text": "2 Kings 6:25" + }, + { + "verseNum": 12, + "text": "–25) 12 a Then Jesus entered the temple courts and drove out all who were buying and selling there. He overturned the tables of the money changers and the seats of those selling doves. And He b declared to them, “It is written: ‘My house will be c But you are making it called a house of prayer.’ 14 ‘a den of robbers.’ 13 ” 15 The blind and the lame came to Him at the But the chief temple, and He healed them. priests and scribes were indignant when they saw the wonders He performed and the children shouting in the temple courts, “Hosanna to the 16 Son of David!” “Do You hear what these children are saying?” they asked. “Yes,” Jesus answered. “Have you never read: d 17 ‘From the mouths of children and infants You have ordained praise’ ?” Then He left them and went out of the city to The Barren Fig Tree" + }, + { + "verseNum": 13, + "text": "13 14 a 6 7 15 In the temple courts When the Jewish Passover was near, Jesus went up to Jerusalem. He found men selling cattle, sheep, and doves, and So He money changers seated at their tables. made a whip out of cords and drove all from the temple courts, both sheep and cattle. He poured out the coins of the money changers and over- To those selling doves He turned their tables. said, “Get these out of here! How dare you turn 17 My Father’s house into a marketplace!” b 16 His disciples remembered that it is written: 18 “Zeal for Your house will consume Me.” On account of this, the Jews demanded, “What sign can You show us to prove Your authority to 19 do these things?” Jesus answered, “Destroy this temple, and in 20 three days I will raise it up again.” “This temple took forty-six years to build,” the Jews replied, “and You are going to raise it up in 21 three days?” 22 But Jesus was speaking about the temple of His body. After He was raised from the dead, His disciples remembered that He had said this. Then they believed the Scripture and the word 23 that Jesus had spoken. 24 While He was in Jerusalem at the Passover Feast, many people saw the signs He was doing But Jesus did not en- and believed in His name. He trust Himself to them, for He knew them all. did not need any testimony about man, for He Jesus and Nicodemus knew what was in a man." + }, + { + "verseNum": 17, + "text": "tremble continually and Vulgate); literally may their prosperity be a trap e 25 Cited in" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–21) in the land of the Philistines for a long time. 22 Some time later God tested Abraham and said to him, “Abraham!” 2 “Here I am,” he answered. “Take your son,” God said, “your only son Isaac, whom you love, and go to the land of Moriah. Of- fer him there as a burnt offering on one of the 3 mountains, which I will show you.” So Abraham got up early the next morning, sad- dled his donkey, and took along two of his serv- ants and his son Isaac. He split the wood for a burnt offering and set out for the place God had 4 designated. 5 On the third day Abraham looked up and saw “Stay here with the the place in the distance. donkey,” Abraham told his servants. “The boy and I will go over there to worship, and then we 6 will return to you.” Abraham took the wood for the burnt offering and placed it on his son Isaac. He himself carried the fire and the sacrificial knife, and the two of them walked on together. c 12 well of seven Cited in" + }, + { + "verseNum": 11, + "text": "–24) know My Father as well. From now on you do 8 know Him and have seen Him.” Philip said to Him, “Lord, show us the Father, 9 and that will be enough for us.” 31 32 When Judas had gone out, Jesus said, “Now the Son of Man is glorified, and God is glorified in Him. God will also glorify the Son in Himself—and will glorify Him 33 at once. If God is glorified in Him, a Little children, I am with you only a little while longer. You will look for Me, and as I said to the Jews, so now I say to you: ‘Where I am going, you 34 cannot come.’ 35 A new commandment I give you: Love one an- other. As I have loved you, so you also must love one another. By this everyone will know that Jesus Predicts Peter’s Denial you are My disciples, if you love one another.” (Matt. 26:31–35 ;" + }, + { + "verseNum": 22, + "text": "| 1097 18 Children, it is the last hour; and just as you have heard that the antichrist is coming, so now 19 many antichrists have appeared. This is how we know it is the last hour. They went out from us, but they did not belong to us. For if they had be- longed to us, they would have remained with us. But their departure made it clear that none of 20 them belonged to us. a 21 22 You, however, have an anointing from the Holy One, and all of you know the truth. I have not written to you because you lack knowledge of the truth, but because you have it, and because no lie Who is the liar, if it is not comes from the truth. the one who denies that Jesus is the Christ? This is the antichrist, who denies the Father and the Son. Whoever denies the Son does not have the Father, but whoever confesses the Son has Remain in Christ the Father as well. 24 23 As for you, let what you have heard from the beginning remain in you. If it does, you will also remain in the Son and in the Father. And this is the promise that He Himself made to us: eternal 26 life. 25 27 I have written these things to you about those who are trying to deceive you. And as for you, the anointing you received from Him remains in you, and you do not need anyone to teach you. But just as His true and genuine anointing teaches you about all things, so remain in Him as 28 you have been taught. b And now, little children, remain in Christ, so that when He appears, we may be confident and 29 unashamed before Him at His com" + }, + { + "verseNum": 23, + "text": "15 23 16 24 keep His commandments and do what is pleasing And this is His commandment: in His sight. that we should believe in the name of His Son, Je- sus Christ, and we should love one another just Whoever keeps His com- as He commanded us. mandments remains in God, and God in him. And by this we know that He remains in us: by the Testing the Spirits Spirit He has given us. If anyone confesses that Jesus is the Son of God, God abides in him, and he in God. And we have come to know and believe the love that God has for us. God is love; whoever abides in love In this way, love abides in God, and God in him. has been perfected among us, so that we may have confidence on the day of judgment; for in 18 this world we are just like Him. 17 4 2 Beloved, do not believe every spirit, but test the spirits to see whether they are from God. For many false prophets have gone out into the By this you will know the Spirit of God: world. Every spirit that confesses that Jesus Christ has and every spirit come in the flesh is from God, is not from God. This that does not confess Jesus is the spirit of the antichrist, which you have heard is coming and which is already in the 4 world at this time. 3 a 5 You, little children, are from God and have over- come them, because greater is He who is in you They are of the than he who is in the world. world. That is why they speak from the world’s We perspective, and the world listens to them. are from God. Whoever knows God listens to us; whoever is n" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 26, + "text": "| 953 26 Then a dispute arose between John’s disciples and a certain Jew over the issue of ceremonial So John’s disciples came to him and washing. said, “Look, Rabbi, the One who was with you be- yond the Jordan, the One you testified about—He 27 is baptizing, and everyone is going to Him.” 28 29 John replied, “A man can receive only what is You yourselves can given him from heaven. testify that I said, ‘I am not the Christ, but am sent ahead of Him.’ The bride belongs to the bride- groom. The friend of the bridegroom stands and listens for him, and is overjoyed to hear the bridegroom’s voice. That joy is mine, and it is He must increase; I must de- now complete. 31 crease. 30 b 32 The One who comes from above is above all. The one who is from the earth belongs to the earth and speaks as one from the earth. The One He testi- who comes from heaven is above all. 33 fies to what He has seen and heard, yet no one 34 accepts His testimony. Whoever accepts His For testimony has certified that God is truthful. the One whom God has sent speaks the words of 35 God, for God gives the Spirit without limit. 36 The Father loves the Son and has placed all Whoever believes in the things in His hands. Son has eternal life. Whoever rejects the Son will not see life. Instead, the wrath of God remains on Jesus and the Samaritan Woman him.” c 4 d 2 When Jesus realized that the Pharisees were aware He was gaining and baptizing more 3 (although it was not Jesus disciples than John He left Judea wh" + }, + { + "verseNum": 27, + "text": "The Disciples Return and Marvel 46 27 Just then His disciples returned and were sur- prised that He was speaking with a woman. But no one asked Him, “What do You want from her?” 28 or “Why are You talking with her?” 29 Then the woman left her water jar, went back into the town, and said to the people, “Come, 30 see a man who told me everything I ever did. Could this be the Christ?” So they left the town 31 and made their way toward Jesus. Meanwhile the disciples urged Him, “Rabbi, 32 eat something.” But He told them, “I have food to eat that you 33 know nothing about.” So the disciples asked one another, “Could 34 someone have brought Him food?” 35 Jesus explained, “My food is to do the will of Do Him who sent Me and to finish His work. you not say, ‘There are still four months until the harvest’? I tell you, lift up your eyes and look at 36 the fields, for they are ripe for harvest. a 37 38 Already the reaper draws his wages and gath- ers a crop for eternal life, so that the sower and the reaper may rejoice together. For in this case the saying ‘One sows and another reaps’ is I sent you to reap what you have not true. worked for; others have done the hard work, and Many Samaritans Believe now you have taken up their labor.” 39 Many of the Samaritans from that town believed in Jesus because of the woman’s testi- mony, “He told me everything I ever did.” So when the Samaritans came to Him, they asked 41 Him to stay with them, and He stayed two days. 40 42 And many more believe" + }, + { + "verseNum": 43, + "text": "–54) b 5 6 c When Jesus had entered Capernaum, a centu- “Lord, my lies at home, paralyzed and in terrible rion came and pleaded with Him, servant 7 agony.” 8 “I will go and heal him,” Jesus replied. 22 Not everyone who says to Me, ‘Lord, Lord,’ will enter the kingdom of heaven, but only he who Many will does the will of My Father in heaven. say to Me on that day, ‘Lord, Lord, did we not prophesy in Your name, and in Your name drive 23 out demons and perform many miracles?’ Then I will tell them plainly, ‘I never knew you; The House on the Rock" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 21, + "text": "| 1099 a 14 I have written these things to you who believe in the name of the Son of God, so that you may And this is the know that you have eternal life. confidence that we have before Him: If we ask 15 anything according to His will, He hears us. And if we know that He hears us in whatever we ask, we know that we already possess what 16 we have asked of Him. If anyone sees his brother committing a sin not leading to death, he should ask God, who will give life to those who commit this kind of sin. There is c b We know that anyone born of God does not keep on sinning; the One who was born of God 19 protects him, cannot touch and the evil one We know that we are of God, and that the him. 20 whole world is under the power of the evil one. And we know that the Son of God has come and has given us understanding, so that we may know Him who is true; and we are in Him who is true—in His Son Jesus Christ. He is the true God 21 and eternal life. d Little children, keep yourselves from idols. a 13 tects himself BYZ and TR include or and that you may believe in the name of the Son of God b 18 the one who was born of God pro- God protects the one born of Him c 18 evil . d 21 Or Amen. Or ; similarly in verse 19 BYZ and TR include 2 John A Greeting from the Elder (3" + }, + { + "verseNum": 29, + "text": "and" + }, + { + "verseNum": 39, + "text": "–47) marries a divorced woman commits adultery. 19 20 Now there was a rich man dressed in purple and fine linen, who lived each day in joyous 21 splendor. And a beggar named Lazarus lay at his gate, covered with sores and longing to be fed with the crumbs that fell from the rich man’s 22 table. Even the dogs came and licked his sores. 23 also died and was buried. In Hades, where he was in torment, he looked up and saw Abraham 24 from afar, with Lazarus by his side. So he cried out, ‘Father Abraham, have mercy on me and send Lazarus to dip the tip of his fin- ger in water and cool my tongue. For I am in 25 agony in this fire.’ But Abraham answered, ‘Child, remember that during your lifetime you received your good things, while Lazarus received bad things. But 26 now he is comforted here, while you are in agony. And besides all this, a great chasm has been fixed between us and you, so that even those who wish cannot cross from here to you, nor can any- 27 one cross from there to us.’ 28 ‘Then I beg you, father,’ he said, ‘send Lazarus to my father’s house, for I have five brothers. Let him warn them, so that they will not also end 29 up in this place of torment.’ But Abraham replied, ‘They have Moses and 30 the Prophets; let your brothers listen to them.’ ‘No, father Abraham,’ he said, ‘but if someone 31 is sent to them from the dead, they will repent.’ Then Abraham said to him, ‘If they do not lis- ten to Moses and the Prophets, they will not be Temptations and Trespasses pers" + }, + { + "verseNum": 47, + "text": "| 955 But he answered, “The man who made me well 12 told me, ‘Pick up your mat and walk.’” “Who is this man who told you to pick it up and 13 walk?” they asked. But the man who was healed did not know who it was, for Jesus had slipped away while the 14 crowd was there. Afterward, Jesus found the man at the temple and said to him, “See, you have been made well. Stop sinning, or something worse may happen to 15 you.” And the man went away and told the Jews that The Father and the Son it was Jesus who had made him well. 16 Now because Jesus was doing these things on 17 the Sabbath, the Jews began to persecute Him. But Jesus answered them, “To this very day My 18 Father is at His work, and I too am working.” Because of this, the Jews tried all the harder to kill Him. Not only was He breaking the Sabbath, but He was even calling God His own Father, 19 making Himself equal with God. 20 So Jesus replied, “Truly, truly, I tell you, the Son can do nothing by Himself, unless He sees the Fa- ther doing it. For whatever the Father does, the The Father loves the Son and Son also does. shows Him all He does. And to your amazement, 21 He will show Him even greater works than these. For just as the Father raises the dead and gives them life, so also the Son gives life to whom He 22 wishes. 23 Furthermore, the Father judges no one, but has assigned all judgment to the Son, so that all may honor the Son just as they honor the Father. Whoever does not honor the Son does not honor 24 the Father" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–15) 13 14 When Jesus heard about John, He withdrew by boat privately to a solitary place. But the crowds found out about it and followed Him on foot from When He stepped ashore and saw a the towns. large crowd, He had compassion on them and 15 healed their sick. When evening came, the disciples came to Him and said, “This is a desolate place, and the hour is already late. Dismiss the crowds so they can go 16 to the villages and buy themselves some food.” “They do not need to go away,” Jesus replied. 17 “You give them something to eat.” “We have here only five loaves of bread and two fish,” they answered. 876 |" + }, + { + "verseNum": 16, + "text": "–21) 22 23 Immediately Jesus made the disciples get into the boat and go on ahead of Him to the other side, while He dismissed the crowds. After He had dismissed them, He went up on the mountain by a Himself to pray. When evening came, He was from there alone, land, buffeted by the waves because the wind 25 was against it. but the boat was already far 24 b 26 During the fourth watch of the night, Jesus When went out to them, walking on the sea. the disciples saw Him walking on the sea, they were terrified. “It’s a ghost!” they said, and cried 27 out in fear. But Jesus spoke up at once: “Take courage! It is 28 I. Do not be afraid.” “Lord, if it is You,” Peter replied, “command me 29 to come to You on the water.” “Come,” said Jesus. 30 Then Peter got down out of the boat, walked on the water, and came toward Jesus. But when he was afraid he saw the strength of the wind, 31 and, beginning to sink, cried out, “Lord, save me!” c Immediately Jesus reached out His hand and took hold of Peter. “You of little faith,” He said, 32 “why did you doubt?” 33 36 surrounding region. People brought all the sick and begged Him just to let them touch to Him the fringe of His cloak. And all who touched Him The Tradition of the Elders" + }, + { + "verseNum": 31, + "text": "Or Hebrew Or 44 63 He turned their rivers to blood, Fire consumed His young men, 45 and from their streams they could not 64 and their maidens were left without" + }, + { + "verseNum": 39, + "text": "and" + }, + { + "verseNum": 45, + "text": "Cited in" + }, + { + "verseNum": 59, + "text": "–66) and carried our diseases.” 18 b When Jesus saw a large crowd around Him, He 19 gave orders to cross to the other side of the sea. And one of the scribes came to Him and said, 20 “Teacher, I will follow You wherever You go.” Jesus replied, “Foxes have dens and birds of the air have nests, but the Son of Man has no 21 place to lay His head.” 29 “What do You want with us, Son of God?” they shouted. “Have You come here to torture us be- 30 fore the appointed time?” 31 In the distance a large herd of pigs was feeding. So the demons begged Jesus, “If You drive us 32 out, send us into the herd of pigs.” “Go!” He told them. So they came out and went into the pigs, and the whole herd rushed down the steep bank into the sea and died in the 33 waters. Those tending the pigs ran off into the town 34 and reported all this, including the account of the Then the whole town demon-possessed men. went out to meet Jesus. And when they saw Him, Jesus Heals a Paralytic they begged Him to leave their region." + }, + { + "verseNum": 67, + "text": "–71) 28 13 When Jesus came to the region of Caesarea Philippi, He questioned His disciples: “Who do 14 people say the Son of Man is?” They replied, “Some say John the Baptist; oth- ers say Elijah; and still others, Jeremiah or one of 15 the prophets.” “But what about you?” Jesus asked. “Who do 16 you say I am?” Simon Peter answered, “You are the Christ, the 17 Son of the living God.” a 18 Jesus replied, “Blessed are you, Simon son of Jonah! For this was not revealed to you by flesh And I and blood, but by My Father in heaven. tell you that you are Peter, and on this rock I will build My church, and the gates of Hades will not prevail against it. I will give you the keys of the kingdom of heaven. Whatever you bind on earth will be bound in heaven, and whatever you loose 20 on earth will be loosed in heaven.” 19 Then He admonished the disciples not to tell Christ’s Passion Foretold anyone that He was the Christ." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 3, + "text": "| 957 58 so also the one who feeds on Me will live because This is the bread that came down from of Me. heaven. Unlike your fathers, who ate the manna and died, the one who eats this bread will live Many Disciples Turn Back forever.” (Matt. 8:18–22 ;" + }, + { + "verseNum": 4, + "text": "4 For no one who wants to works You are doing. be known publicly acts in secret. Since You are 5 doing these things, show Yourself to the world.” For even His own brothers did not believe in 6 Him. Therefore Jesus told them, “Although your time 7 is always at hand, My time has not yet come. The world cannot hate you, but it hates Me, be- Go up to going up to this cause I testify that its works are evil. the feast on your own. I am not 9 feast, because My time has not yet come.” 10 8 a Having said this, Jesus remained in Galilee. But after His brothers had gone up to the feast, 11 He also went—not publicly, but in secret. So the Jews were looking for Him at the feast 12 and asking, “Where is He?” Many in the crowds were whispering about Him. Some said, “He is a good man.” 13 But others replied, “No, He deceives the people.” Yet no one would speak publicly about Him for 14 fear of the Jews. 15 up to the temple courts b About halfway through the feast, Jesus went and began to teach. The Jews were amazed and asked, “How did this man attain such learning without having 16 studied?” 17 18 “My teaching is not My own,” Jesus replied. “It comes from Him who sent Me. If anyone de- sires to do His will, he will know whether My teaching is from God or whether I speak on My own. He who speaks on his own authority seeks his own glory, but He who seeks the glory of the One who sent Him is a man of truth; in Him there is no falsehood. Has not Moses given you the law? Yet not one of you keeps" + }, + { + "verseNum": 53, + "text": "through" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 11, + "text": ". and were convicted by their conscience, g 16 where are they e 10 and ; d 9 See" + }, + { + "verseNum": 12, + "text": "–29) things so that our 5 joy may be complete. 4 a 6 And this is the message we have heard from Him and announce to you: God is light, and in Him there is no darkness at all. If we say we b 7 have fellowship with Him yet walk in the dark- ness, we lie and do not practice the truth. But if we walk in the light as He is in the light, we have fellowship with one another, and the blood 8 of Jesus His Son cleanses us from all sin. 9 If we say we have no sin, we deceive ourselves, and the truth is not in us. If we confess our sins, He is faithful and just to forgive us our sins and If we to cleanse us from all unrighteousness. say we have not sinned, we make Him out to be a Jesus Our Advocate liar, and His word is not in us. 10 2 My little children, I am writing these things to you so that you will not sin. But if anyone does sin, we have an advocate before the Fa- c He Him- ther—Jesus Christ, the Righteous One. self is the atoning sacrifice for our sins, and not only for ours but also for the sins of the whole 3 world. 2 4 By this we can be sure that we have come to If know Him: if we keep His commandments. anyone says, “I know Him,” but does not keep His a 4 commandments, he is a liar, and the truth is not your But b 7 c 2 But if anyone keeps His word, the love of in him. 6 God has been truly perfected in him. By this we Whoever claims to know that we are in Him: A New Commandment abide in Him must walk as Jesus walked. 7 8 Beloved, I am not writing to you a new com- mandment, bu" + }, + { + "verseNum": 24, + "text": "| 959 But still others asked, “How can the Christ come Doesn’t the Scripture say that the from Galilee? Christ will come from the line of David and from 43 Bethlehem, the village where David lived? ” a 44 So there was division in the crowd because of Some of them wanted to seize Him, but Jesus. The Unbelief of the Jewish Leaders no one laid a hand on Him. 45 Then the officers returned to the chief priests and Pharisees, who asked them, “Why didn’t you 46 bring Him in?” “Never has anyone spoken like this man!” the 47 officers answered. 48 49 “Have you also been deceived?” replied the “Have any of the rulers or Pharisees But this crowd that does not Pharisees. believed in Him? 50 know the law—they are under a curse.” 51 Nicodemus, who had gone to Jesus earlier and who himself was one of them, asked, “Does our law convict a man without first hearing from him 52 to determine what he has done?” b “Aren’t you also from Galilee?” they replied. “Look into it, and you will see that no prophet 53 comes out of Galilee.” The Woman Caught in Adultery Then each went to his own home. 8 2 But Jesus went to the Mount of Olives. c 4 Early in the morning He went back into the 3 temple courts. All the people came to Him, and He sat down to teach them. The scribes and Pharisees, however, brought to Him a woman caught in adultery. They made her stand before and said, “Teacher, this woman was them In the Law Moses caught in the act of adultery. commanded us to stone such a woman. So what 6 do You s" + }, + { + "verseNum": 25, + "text": "25 “Who are You?” they asked. 26 “Just what I have been telling you from the begin- ning,” Jesus replied. “I have much to say about you and much to judge. But the One who sent Me is truthful, and what I have heard from Him, I tell 27 the world.” 28 They did not understand that He was telling them about the Father. So Jesus said, “When you have lifted up the Son of Man, then you will know that I am He, and that I do nothing on My own, but speak exactly what the Father has taught Me. He who sent Me is with Me. He has not left Me alone, because I always do what The Truth Will Set You Free (2" + }, + { + "verseNum": 30, + "text": "–47) 4 5 6 I was overjoyed to find some of your children walking in the truth, just as the Father has com- And now I urge you, dear lady—not manded us. as a new commandment to you, but one we have had from the beginning—that we love one an- And this is love, that we walk according other. to His commandments. This is the very com- mandment you have heard from the beginning, that you must walk in love. 8 For many deceivers have gone out into the world, refusing to confess the coming of Jesus Christ in the flesh. Any such person is the de- a Watch yourselves, so ceiver and the antichrist. that you do not lose what we have worked for, Anyone but that you may be fully rewarded. who runs ahead without remaining in the teach- ing of Christ does not have God. Whoever re- mains in His teaching has both the Father and the 10 Son. 9 11 If anyone comes to you but does not bring this teaching, do not receive him into your home or even greet him. Whoever greets such a person Conclusion (3" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 38, + "text": "| 961 son, the one you say was born blind? So how is it 20 that he can now see?” 21 His parents answered, “We know he is our son, But how he and we know he was born blind. can now see or who opened his eyes, we do not know. Ask him. He is old enough to speak for 22 himself.” His parents said this because they were afraid of the Jews. For the Jews had already determined that anyone who confessed Jesus as the Christ That was would be put out of the synagogue. 24 why his parents said, “He is old enough. Ask him.” 23 So a second time they called for the man who had been blind and said, “Give glory to God! We 25 know that this man is a sinner.” He answered, “Whether He is a sinner I do not know. There is one thing I do know: I was blind, 26 but now I see!” “What did He do to you?” they asked. “How did 27 He open your eyes?” He replied, “I already told you, and you did not listen. Why do you want to hear it again? Do you 28 also want to become His disciples?” Then they heaped insults on him and said, 29 “You are His disciple; we are disciples of Moses. We know that God spoke to Moses, but we do 30 not know where this man is from.” 31 “That is remarkable indeed!” the man said. “You do not know where He is from, and yet He opened my eyes. We know that God does not listen to sinners, but He does listen to the one who worships Him and does His will. Never before has anyone heard of opening the eyes of a man born blind. If this man were not from God, 34 He could do no such thing.” 33 32" + }, + { + "verseNum": 39, + "text": "39 Then Jesus declared, “For judgment I have come into this world, so that the blind may see 40 and those who see may become blind.” a Some of the Pharisees who were with Him heard this, and they asked Him, “Are we blind 41 too?” “If you were blind,” Jesus replied, “you would not be guilty of sin. But since you claim you can Jesus the Good Shepherd see, your guilt remains.”" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "–21) 1 A Psalm of David. a The LORD is my shepherd; 2 I shall not want. 3 He makes me lie down in green pastures; He leads me beside quiet waters. He restores my soul; He guides me in the paths of 4 righteousness for the sake of His name. b Even though I walk through the valley of the shadow of death, I will fear no evil, for You are with me; 5 Your rod and Your staff, they comfort me. You prepare a table before me in the presence of my enemies. You anoint my head with oil; 3 4 5 d The earth is the LORD’s, and the fullness 2 thereof, the world and all who dwell therein. For He has founded it upon the seas and established it upon the waters. Who may ascend the hill of the LORD? Who may stand in His holy place? e He who has clean hands and a pure heart, who does not lift up his soul to an idol or swear deceitfully. He will receive blessing from the LORD and vindication from the God of his f salvation. 6 Such is the generation of those who seek Him, Selah who seek Your face, O God of Jacob. 7 Lift up your heads, O gates! 8 Be lifted up, O ancient doors, that the King of Glory may enter! Who is this King of Glory? 9 The LORD strong and mighty, the LORD mighty in battle. Lift up your heads, O gates! 10 Be lifted up, O ancient doors, that the King of Glory may enter! Who is He, this King of Glory? The LORD of Hosts— He is the King of Glory. Psalm 25 To You I Lift Up My Soul Selah Of David. g 1 2 To You, O LORD, I lift up my soul; in You, my God, I trust. Do not let me be put to sha" + }, + { + "verseNum": 34, + "text": "save them from the hand of the wicked. in Joseph quarreling ; see" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 34, + "text": "| 963 16 b Then Thomas called Didymus said to his fel- low disciples, “Let us also go, so that we may die Jesus Comforts Martha and Mary with Him.” 17 18 c 19 away, When Jesus arrived, He found that Lazarus had Now Beth- already spent four days in the tomb. any was near Jerusalem, a little less than two and many of the Jews had come miles 20 to Martha and Mary to console them in the loss So when Martha heard that Je- of their brother. sus was coming, she went out to meet Him, but 21 Mary stayed at home. 22 Martha said to Jesus, “Lord, if You had been But here, my brother would not have died. even now I know that God will give You whatever 23 You ask of Him.” 24 “Your brother will rise again,” Jesus told her. Martha replied, “I know that he will rise again 25 in the resurrection at the last day.” 26 Jesus said to her, “I am the resurrection and the life. Whoever believes in Me will live, even And everyone who lives and though he dies. believes in Me will never die. Do you believe 27 this?” “Yes, Lord,” she answered, “I believe that You are the Christ, the Son of God, who was to come 28 into the world.” After Martha had said this, she went back and called her sister Mary aside to tell her, “The Teacher is here and is asking for you.” And when Mary heard this, she got up quickly and 30 went to Him. 29 Now Jesus had not yet entered the village, but 31 was still at the place where Martha had met Him. When the Jews who were in the house consol- ing Mary saw how quickly she got up a" + }, + { + "verseNum": 35, + "text": "35 36 Jesus wept. 37 Then the Jews said, “See how He loved him!” But some of them asked, “Could not this man who opened the eyes of the blind also have kept Jesus Raises Lazarus Lazarus from dying?”" + }, + { + "verseNum": 38, + "text": "–44) 36 c In Joppa there was a disciple named Tabitha (which is translated as Dorcas), who was always 37 occupied with works of kindness and charity. At that time, however, she became sick and died, and her body was washed and placed in an Since Lydda was near Joppa, the upper room. disciples, hearing that Peter was there, sent two 39 men to urge him, “Come to us without delay.” 38 So Peter got up and went with them. On his ar- rival, they took him to the upper room. All the widows stood around him, weeping and showing him the tunics and other clothing that Dorcas had 40 made while she was still with them. Then Peter sent them all out of the room. He knelt down and prayed, and turning toward her body, he said, “Tabitha, get up!” She opened her eyes, and seeing Peter, she sat up. Peter took her by the hand and helped her up. Then he called the saints and widows and presented her 42 to them alive. 41 43 This became known all over Joppa, and many And Peter stayed people believed in the Lord. for several days in Joppa with a tanner named Cornelius Sends for Peter Simon. 10 2 At Caesarea there was a man named Cor- nelius, a centurion in what was called the He and all his household were Italian Regiment. devout and God-fearing. He gave generously to d One day the people and prayed to God regularly. he had a clear vision of at about the ninth hour, an angel of God who came to him and said, “Cor- 4 nelius!” 3 Cornelius stared at him in fear and asked, “What is it, Lord?” 5 The angel" + }, + { + "verseNum": 45, + "text": "–57) 26 When Jesus had finished saying all these “You know things, He told His disciples, that the Passover is two days away, and the Son 3 of Man will be handed over to be crucified.” 4 At that time the chief priests and elders of the people assembled in the courtyard of the high and they con- priest, whose name was Caiaphas, spired to arrest Jesus covertly and kill Him. “But not during the feast,” they said, “or there may be Jesus Anointed at Bethany a riot among the people.”" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "–8) 6 5 a 7 While Jesus was in Bethany in the home of Simon the Leper, a woman came to Him with an alabaster jar of expensive perfume, which she 8 poured on His head as He reclined at the table. 9 When the disciples saw this, they were indig- This perfume nant and asked, “Why this waste? could have been sold at a high price, and the 10 money given to the poor.” 12 b to Me. The poor you will always have with By but you will not always have Me. you, pouring this perfume on Me, she has prepared My body for burial. Truly I tell you, wherever this gospel is preached in all the world, what she Judas Agrees to Betray Jesus has done will also be told in memory of her.”" + }, + { + "verseNum": 3, + "text": ". b 16 Didymus He was was the one having anointed the Lord with fragrant oil and having wiped His feet ; that is, approximately 1.72 miles or 2.78 kilometers Or 964 |" + }, + { + "verseNum": 12, + "text": "–19) for now I keep watch with My own eyes. 9 Rejoice greatly, O Daughter of Zion! Shout in triumph, O Daughter of This is what the LORD of Hosts says: “In those days ten men from the nations of every tongue will tightly grasp the robe of a Jew, saying, ‘Let us go with you, for we have heard that God is with a 1 you.’ leader Or for the eye of the LORD is on all men and all the tribes of Israel ” righteous and endowed with salvation d 9 e 9 Jerusalem! d See, your King comes to you, righteous and victorious, humble and riding on a donkey, b 4 on a colt, the foal of a donkey. strike down her power on the sea e Or Or Cited in" + }, + { + "verseNum": 13, + "text": ". 19:38, and" + }, + { + "verseNum": 15, + "text": "c 7 like a Or 854 |" + }, + { + "verseNum": 32, + "text": "–33. Then they led Jesus away from Caiaphas into the Praetorium. By now it was early morning, and the Jews did not enter the Praetorium, to avoid being defiled and unable to eat the 29 Passover. So Pilate went out to them and asked, “What 30 accusation are you bringing against this man?” “If He were not a criminal,” they replied, “we 31 would not have handed Him over to you.” “You take Him and judge Him by your own law,” Pilate told them. 32 “We are not permitted to execute anyone,” the This was to fulfill the word that Jews replied. a Jesus had spoken to indicate the kind of death He 33 was going to die. Pilate went back into the Praetorium, sum- moned Jesus, and asked Him, “Are You the King 34 of the Jews?” “Are you saying this on your own,” Jesus asked, 35 “or did others tell you about Me?” “Am I a Jew?” Pilate replied. “Your own people and chief priests handed You over to me. What 36 have You done?” Jesus answered, “My kingdom is not of this world; if it were, My servants would fight to pre- vent My arrest by the Jews. But now My kingdom 37 is not of this realm.” “Then You are a king!” Pilate said. “You say that I am a king,” Jesus answered. “For this reason I was born and have come into the world, to testify to the truth. Everyone who be- 38 longs to the truth listens to My voice.” “What is truth?” Pilate asked. 39 And having said this, he went out again to the Jews and told them, “I find no basis for a charge against Him. But it is your custom that I release to you one" + }, + { + "verseNum": 38, + "text": "and" + }, + { + "verseNum": 40, + "text": ", and" + }, + { + "verseNum": 41, + "text": "41 42 9 Isaiah said these things because he saw Jesus’ glory and spoke about Him. Nevertheless, many of the leaders believed in Him. But because of the Pharisees they did not confess Him, for 43 fear that they would be put out of the synagogue. For they loved praise from men more than 44 praise from God. “Then, Lord,” Simon Peter replied, “not only my 10 feet, but my hands and my head as well!” 11 Jesus told him, “Whoever has already bathed needs only to wash his feet, and he will be com- pletely clean. And you are clean, though not all of For He knew who would betray Him. you.” 12 That is why He said, “Not all of you are clean.” 46 45 Then Jesus cried out, “Whoever believes in Me does not believe in Me alone, but in the One who sent Me. And whoever sees Me sees the One who sent Me. I have come into the world as a light, so that no one who believes in Me should 47 remain in darkness. As for anyone who hears My words and does not keep them, I do not judge him. For I have not 48 come to judge the world, but to save the world. There is a judge for the one who rejects Me and does not receive My words: The word that I have 49 spoken will judge him on the last day. 50 I have not spoken on My own, but the Father who sent Me has commanded Me what to say and And I know that His command how to say it. leads to eternal life. So I speak exactly what the Jesus Washes His Disciples’ Feet Father has told Me to say.” 13 It was now just before the Passover Feast, and Jesus knew that His hour" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 16, + "text": "See Ps. 35:19, Ps. 38:19, and Ps. 69:4. Or or or ; Greek 4 because they have not known the Father or Me. But I have told you these things so that when their hour comes, you will remember that I told you about them. I did not tell you these things The Promise of the Holy Spirit from the beginning, because I was with you." + }, + { + "verseNum": 18, + "text": "–30) For the choirmaster. A Psalm of David. 1 Blessed is the one who cares for the poor; the LORD will deliver him in the day 2 of trouble. The LORD will protect and preserve him; He will bless him in the land 3 and refuse to give him over to the will of his foes. O LORD, do not withhold Your mercy The LORD will sustain him on his bed of 4 illness and restore him from his bed of sickness. I said, “O LORD, be gracious to me; 5 heal me, for I have sinned against You.” My enemies say with malice: 6 “When will he die and be forgotten?” My visitor speaks falsehood; 7 8 he gathers slander in his heart; he goes out and spreads it abroad. All who hate me whisper against me; they imagine the worst for me: “A vile disease has been poured into him; 9 he will never get up from where he lies!” Even my close friend whom I trusted, the one who shared my bread, has lifted up his heel against me. a 10 But You, O LORD, be gracious to me and raise 11 me up, that I may repay them. 12 By this I know that You delight in me, for my enemy does not triumph over me. In my integrity You uphold me 13 and set me in Your presence forever. Blessed be the LORD, the God of Israel, from everlasting to everlasting. Amen and Amen. from me; 12 Your loving devotion and faithfulness will always guard me. For evils without number surround me; my sins have overtaken me, so that I cannot see. They are more than the hairs of my 13 head, and my heart has failed within me. Be pleased, O LORD, to deliver me; hurry, O LOR" + }, + { + "verseNum": 31, + "text": "–35 ; 1" + }, + { + "verseNum": 36, + "text": "–38) 31 Then Jesus said to them, “This very night you will all fall away on account of Me. For it is written: ‘I will strike the Shepherd, a 32 and the sheep of the flock will be scattered.’ But after I have risen, I will go ahead of you 33 into Galilee.” Peter said to Him, “Even if all fall away on 34 account of You, I never will.” “Truly I tell you,” Jesus declared, “this very night, before the rooster crows, you will deny Me 35 three times.” Peter replied, “Even if I have to die with You, I will never deny You.” And all the other disciples Jesus Prays at Gethsemane said the same thing." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 15, + "text": "–26) 5 Now, however, I am going to Him who sent Me; 6 yet none of you asks Me, ‘Where are You going?’ Instead, your hearts are filled with sorrow be- But I tell you cause I have told you these things. the truth, it is for your benefit that I am going will not away. Unless I go away, the Advocate 8 come to you; but if I go, I will send Him to you. 7 a 10 And when He comes, He will convict the world 9 in regard to sin and righteousness and judgment: in regard to sin, because they do not believe in Me; in regard to righteousness, because I am going to the Father and you will no longer see and in regard to judgment, because the Me; 12 prince of this world has been condemned. 11 13 14 I still have much to tell you, but you cannot yet bear to hear it. However, when the Spirit of truth comes, He will guide you into all truth. For He will not speak on His own, but He will speak what He hears, and He will declare to you what is He will glorify Me by taking from to come. Every- what is Mine and disclosing it to you. thing that belongs to the Father is Mine. That is why I said that the Spirit will take from what is 16 Mine and disclose it to you. 15 b In a little while you will see Me no more, and Grief Will Turn to Joy then after a little while you will see Me. 17 ” Then some of His disciples asked one another, “Why is He telling us, ‘In a little while you will not see Me, and then after a little while you will see 18 Me’ and ‘Because I am going to the Father’?” They kept asking, “Why" + }, + { + "verseNum": 24, + "text": "| 967 30 telling him to buy what was needed for the feast, As soon as he or to give something to the poor. had received the morsel, Judas went out into the Love One Another night." + }, + { + "verseNum": 25, + "text": "25 26 All this I have spoken to you while I am still But the Advocate, the Holy Spirit, with you. whom the Father will send in My name, will teach you all things and will remind you of everything Peace I Leave with You I have told you. 27 28 Peace I leave with you; My peace I give to you. I do not give to you as the world gives. Do not let You your hearts be troubled; do not be afraid. heard Me say, ‘I am going away, and I am coming back to you.’ If you loved Me, you would rejoice that I am going to the Father, because the Father And now I have told you be- is greater than I. fore it happens, so that when it does happen, you 30 will believe. 29 31 I will not speak with you much longer, for the prince of this world is coming, and he has no claim on Me. But I do exactly what the Father has commanded Me, so that the world may know that I love the Father. Jesus the True Vine" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "–8) and will no longer conceal her slain. 11 In the land of righteousness he acts unjustly and fails to see the majesty of the LORD. O LORD, Your hand is upraised, but they do not see it. They will see Your zeal for Your people and be put to shame. The fire set for Your enemies 12 will consume them! 13 O LORD, You will establish peace for us. For all that we have accomplished, You have done for us. O LORD our God, other lords besides You 14 have ruled over us, but Your name alone do we confess. The dead will not live; the departed spirits will not rise. Therefore You have punished and destroyed 15 them; You have wiped out all memory of them. You have enlarged the nation, O LORD; You have enlarged the nation. You have gained glory for Yourself; 16 You have extended all the borders of the land. O LORD, they sought You in their distress; when You disciplined them, they poured 17 out a quiet prayer. As a woman with child about to give birth 18 writhes and cries out in pain, so were we in Your presence, O LORD. We were with child; we writhed in pain; but we gave birth to wind. 19 We have given no salvation to the earth, nor brought any life into the world. Your dead will live; their bodies will rise. Awake and sing, you who dwell in the dust! 20 For your dew is like the dew of the morning, and the earth will bring forth her dead. 27 In that day the LORD will take His sharp, great, and mighty sword, and bring judg- —Levia- ment on Leviathan the fleeing serpent 2 than the coiling se" + }, + { + "verseNum": 20, + "text": "" + }, + { + "verseNum": 25, + "text": "Or Cited in Hebrews 9 I proclaim righteousness in the great assembly; 10 behold, I do not seal my lips, as You, O LORD, do know. I have not covered up Your righteousness in my heart; I have declared Your faithfulness and salvation; I have not concealed Your loving devotion 11 and faithfulness from the great assembly." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "–4) Rome.” 12 13 When daylight came, the Jews formed a con- spiracy and bound themselves with an oath not to eat or drink until they had killed Paul. More 14 than forty of them were involved in this plot. They went to the chief priests and elders and said, “We have bound ourselves with a solemn 15 oath not to eat anything until we have killed Paul. Now then, you and the Sanhedrin petition the commander to bring him down to you on the pre- text of examining his case more carefully. We are 16 ready to kill him on the way.” b 17 the plot, But when the son of Paul’s sister heard about he went into the barracks and told Paul. Then Paul called one of the centurions and said, “Take this young man to the commander; he a 5 has something to tell him.” the ambush b 16 c 23 The commander took the young man by the hand, drew him aside, and asked, “What do you 20 need to tell me?” 21 He answered, “The Jews have agreed to ask you to bring Paul to the Sanhedrin tomorrow on the pretext of acquiring more information about Do not let them persuade you, because him. more than forty men are waiting to ambush him. They have bound themselves with an oath not to eat or drink until they have killed him; they are 22 ready now, awaiting your consent.” So the commander dismissed the young man and instructed him, “Do not tell anyone that you Paul Sent to Felix have reported this to me.” 23 Then he called two of his centurions and said, “Prepare two hundred soldiers, seventy horse- men, and two hundred sp" + }, + { + "verseNum": 5, + "text": "–16) My name, I will do it. 15 e f 16 If you love Me, you will keep My command- g And I will ask the Father, and He will ments. 17 to be with you give you another Advocate the Spirit of truth. The world cannot forever— receive Him, because it neither sees Him nor knows Him. But you do know Him, for He abides 18 with you and will be in you. h 19 20 I will not leave you as orphans; I will come to In a little while the world will see Me no you. more, but you will see Me. Because I live, you also will live. On that day you will know that I am in 21 My Father, and you are in Me, and I am in you. Whoever has My commandments and keeps them is the one who loves Me. The one who loves Me will be loved by My Father, and I will love him 22 and reveal Myself to him.” Judas (not Iscariot) asked Him, “Lord, why are You going to reveal Yourself to us and not to the 23 world?” “Lord,” said Thomas, “we do not know where 6 You are going, so how can we know the way?” 7 Jesus answered, “I am the way and the truth and the life. No one comes to the Father except If God is glorified in Him a 32 through Me. If you had known Me, you would going there to prepare a place for you. d 4 Me g 16 WH does not include f 15 If you love Me, keep Or Helper b 1 Comforter BYZ, TR Jesus replied, “If anyone loves Me, he will keep My word. My Father will love him, and We will 24 come to him and make Our home with him. Whoever does not love Me does not keep My words. The word that you hear is not My own, If it were not" + }, + { + "verseNum": 23, + "text": "–33) on earth will be loosed in heaven. 19 Again, I tell you truly that if two of you on the earth agree about anything you ask for, it will be For done for you by My Father in heaven. where two or three gather together in My name, The Unforgiving Servant" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 5, + "text": "| 969 22 forth her child, she forgets her anguish because of her joy that a child has been born into the So also you have sorrow now, but I will world. see you again and your hearts will rejoice, and no Ask in My Name" + }, + { + "verseNum": 6, + "text": "Prayer for the Disciples 24 6 8 I have revealed Your name to those You have given Me out of the world. They were Yours; You 7 gave them to Me, and they have kept Your word. Now they know that everything You have given Me comes from You. For I have given them the words You gave Me, and they have received them. They knew with certainty that I came from 9 You, and they believed that You sent Me. 11 10 I ask on their behalf. I do not ask on behalf of the world, but on behalf of those You have given Me; for they are Yours. All I have is Yours, and all You have is Mine; and in them I have been glori- fied. I will no longer be in the world, but they are in the world, and I am coming to You. a 12 Holy Father, protect them by Your name, the name You gave Me, so that they may be one as While I was with them, I protected We are one. and preserved them by Your name, the name You gave Me. Not one of them has been lost, except the son of destruction, so that the Scripture 13 would be fulfilled. 14 But now I am coming to You; and I am saying these things while I am in the world, so that they may have My joy fulfilled within them. I have given them Your word and the world has hated them. For they are not of the world, just as I am 15 not of the world. b I am not asking that You take them out of the 16 world, but that You keep them from the evil one. 17 They are not of the world, just as I am not of 18 Sanctify them by the truth; Your the world. As You sent Me into the world, I word is truth." + }, + { + "verseNum": 12, + "text": ". ; TR Father, I want those You have given Me to be with Me where I am, that they may see the glory You gave Me because You loved Me before the 25 foundation of the world. 26 Righteous Father, although the world has not known You, I know You, and they know that You sent Me. And I have made Your name known to them and will continue to make it known, so that the love You have for Me may be in them, and I in The Betrayal of Jesus them.” (Matt. 26:47–56 ;" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "–14) 47 While Jesus was still speaking, Judas, one of the Twelve, arrived, accompanied by a large crowd armed with swords and clubs, sent from 48 the chief priests and elders of the people. Now the betrayer had arranged a signal with 49 them: “The One I kiss is the man; arrest Him.” Going directly to Jesus, he said, “Greetings, b 50 Rabbi!” and kissed Him. 51 “Friend,” Jesus replied, “do what you came for.” Then the men stepped forward, seized Jesus, and At this, one of Jesus’ companions arrested Him. drew his sword and struck the servant of the 52 high priest, cutting off his ear. 53 “Put your sword back in its place,” Jesus said to him. “For all who draw the sword will die by the sword. Are you not aware that I can call on My Father, and He will at once put at My disposal more than twelve legions of angels? But how then would the Scriptures be fulfilled that say it 55 must happen this way?” 54 At that time Jesus said to the crowd, “Have you come out with swords and clubs to arrest Me as you would an outlaw? Every day I sat teaching in 56 the temple courts, and you did not arrest Me. But this has all happened so that the writings c of the prophets would be fulfilled.” Jesus before the Sanhedrin Then all the disciples deserted Him and fled." + }, + { + "verseNum": 15, + "text": "–18) 69 Meanwhile, Peter was sitting out in the court- yard, and a servant girl came up to him. “You also 70 were with Jesus the Galilean,” she said. But he denied it before them all: “I do not know 71 what you are talking about.” When Peter had gone out to the gateway, an- other servant girl saw him and said to the people 72 there, “This man was with Jesus of Nazareth.” And again he denied it with an oath: “I do not 73 know the man!” After a little while, those standing nearby came up to Peter. “Surely you are one of them,” they 74 said, “for your accent gives you away.” At that he began to curse and swear to them, “I do not know the man!” 75 And immediately a rooster crowed. Then Peter remembered the word that Jesus had spoken: “Before the rooster crows, you will deny Me three times.” And he went outside and Jesus Delivered to Pilate" + }, + { + "verseNum": 19, + "text": "–24) 57 58 Those who had arrested Jesus led Him away to the house of Caiaphas the high priest, where the But Peter scribes and elders had gathered. followed Him at a distance, right up to the court- yard of the high priest. And he went in and sat 59 down with the guards to see the outcome. d Now the chief priests and the whole Sanhed- were seeking false testimony against Jesus rin But they did not in order to put Him to death. find any, though many false witnesses came forward. 61 60 Finally two came forward and declared, “This man said, ‘I am able to destroy the temple of God the whole Council and rebuild it in three days.’ the temple d 59 ” c 55 So He left them and went away once more and a 31 prayed a third time, saying the same thing. “Friend,” Jesus replied, “for what have you come?” b 50 Zech. 13:7 Or Lit. Or 62 Judas Hangs Himself" + }, + { + "verseNum": 28, + "text": "–40) and they gave them for the potter’s field, as the Lord had commanded me.” 11 Meanwhile Jesus stood before the governor, who questioned Him: “Are You the King of the Jews?” 12 “You have said so,” Jesus replied. And when He was accused by the chief priests 13 and elders, He gave no answer. Then Pilate asked Him, “Do You not hear how 14 many charges they are bringing against You?” But Jesus gave no answer, not even to a single The Crowd Chooses Barabbas charge, much to the governor’s amazement." + }, + { + "verseNum": 40, + "text": "| 971 advised the Jews that it would be better if one Peter’s First Denial man died for the people. (Matt. 26:69–70 ;" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "–15) 4 The Lord GOD has given Me the tongue of discipleship, to sustain the weary with a word. He awakens Me morning by morning; 5 He awakens My ear to listen as a disciple. The Lord GOD has opened My ears, and I have not been rebellious, nor have I turned back. 6 I offered My back to those who struck Me, and My cheeks to those who tore out My 5 beard. 7 I did not hide My face from scorn and spittle. Because the Lord GOD helps Me, I have not been disgraced; let him lean on his God. Behold, all you who kindle a fire, who array yourselves with firebrands, walk in the light of your fire and of the firebrands you have lit! Salvation for Zion This is what you will receive from My hand: You will lie down in a place of torment. 51 “Listen to Me, you who pursue righteousness, you who seek the LORD: Look to the rock from which you were cut, and to the quarry from which you were 2 hewn. Look to Abraham your father, and to Sarah who gave you birth. When I called him, he was but one; 3 then I blessed him and multiplied him. For the LORD will comfort Zion and will look with compassion on all her ruins; He will make her wilderness like Eden and her desert like the garden of the LORD. 4 Joy and gladness will be found in her, thanksgiving and melodious song. Pay attention to Me, My people, and listen to Me, My nation; for a law will go out from Me, and My justice will become a light to the nations; I will bring it about quickly. My righteousness draws near, My salvation is on the way, and My" + }, + { + "verseNum": 16, + "text": "–30) For the choirmaster. To the tune of “The Doe of the Dawn.” A Psalm of David. 1 a My God, my God, why have You forsaken me? Why are You so far from saving me, 2 so far from my words of groaning? I cry out by day, O my God, but You do not answer, and by night, 3 but I have no rest. Yet You are holy, 4 enthroned on the praises of Israel. In You our fathers trusted; 5 they trusted and You delivered them. They cried out to You and were set free; they trusted in You and were not disappointed. 6 But I am a worm and not a man, 7 scorned by men and despised by the people. All who see me mock me; a 1 they sneer and shake their heads: b 8 Cited in" + }, + { + "verseNum": 20, + "text": ". Or failed" + }, + { + "verseNum": 24, + "text": "; see ; cited in" + }, + { + "verseNum": 28, + "text": "–30) 45 e 46 From the sixth hour until the ninth hour ness came over all the land. hour Jesus cried out in a loud voice, “Eli, Eli, lema sabachthani?” which means, “My God, My 47 God, why have You forsaken Me?” g dark- f About the ninth 48 When some of those standing there heard this, One of them they said, “He is calling Elijah.” h quickly ran and brought a sponge. He filled it i put it on a reed, and held it up with sour wine, 49 for Jesus to drink. j But the others said, “Leave Him alone. Let us 50 see if Elijah comes to save Him.” 51 When Jesus had cried out again in a loud voice, At that moment the He yielded up His spirit. veil of the temple was torn in two from top to bottom. The earth quaked, and the rocks were And when they came to a place called Golgo- they this righteous blood a 24 tha, which means The Place of the Skull, through the prophet: “They divided My garments among them, and cast lots for My clothing.” f 46 ; BYZ and TR e 45 this blood Literally d 43 b 35 See" + }, + { + "verseNum": 31, + "text": "–37) 10 b d Then I will pour out on the house of David and c on the people of Jerusalem a spirit of grace and prayer, and they will look on Me, the One they They will mourn for Him as one have pierced. mourns for an only child, and grieve bitterly for 11 Him as one grieves for a firstborn son. On that day the wailing in Jerusalem will be as 12 in great as the wailing of Hadad-rimmon the plain of Megiddo. The land will mourn, each clan on its own: the clan of the house of Da- 13 vid and their wives, the clan of the house of Na- than and their wives, the clan of the house of Levi and their wives, the clan of Shimei and their wives, and all the remaining clans and their An End to Idolatry wives. 14 13 “On that day a fountain will be opened to the house of David and the people of Je- 2 rusalem, to cleanse them from sin and impurity. And on that day, declares the LORD of Hosts, I will erase the names of the idols from the land, and they will no longer be remembered. I will also remove the prophets and the spirit of impu- 3 rity from the land. e And if anyone still prophesies, his father and mother who bore him will say to him, ‘You shall not remain alive, because you have spoken falsely in the name of the LORD.’ When he prophesies, his father and mother who bore him will pierce 4 him through. And on that day every prophet who prophesies will be ashamed of his vision, and he will not put d 10 a 8 on a hairy cloak in order to deceive. He will say, farmer, for the land has been my li" + }, + { + "verseNum": 34, + "text": ". to fulfill what was said insurrectionists c 38 Eloi, Eloi And another took a spear Or ; also 52 2" + }, + { + "verseNum": 36, + "text": "LXX Cited in Psalm 35 Contend with My Opponents, O LORD Of David. 1 Contend with my opponents, O LORD; 2 fight against those who fight against me. 3 Take up Your shield and buckler; arise and come to my aid. a Draw the spear and javelin pursuers; against my 4 say to my soul: “I am your salvation.” May those who seek my life be disgraced and put to shame; may those who plan to harm me 5 be driven back and confounded. May they be like chaff in the wind, 6 as the angel of the LORD drives them away. May their path be dark and slick, 7 as the angel of the LORD pursues. 8 For without cause they laid their net for me; without reason they dug a pit for my soul. May ruin befall them by surprise; 9 may the net they hid ensnare them; may they fall into the hazard they created. Then my soul will rejoice in the LORD 10 and exult in His salvation. All my bones will exclaim, “Who is like You, O LORD, who delivers the afflicted from the aggressor, the poor and needy from the robber?” 11 Hostile witnesses come forward; 12 they make charges I know nothing about. They repay me evil for good, 13 to the bereavement of my soul. Yet when they were ill, I put on sackcloth; b I humbled myself with fasting, 14 but my prayers returned unanswered. I paced about as for my friend or brother; I was bowed down with grief, 15" + }, + { + "verseNum": 37, + "text": "between your hands Or h 7 Or 8 a b And on that day living water will flow out from and Jerusalem, half of it toward the Eastern Sea 9 the other half toward the Western Sea, in sum- On that day the LORD will mer and winter alike. become King over all the earth—the LORD alone, 10 and His name alone. All the land from Geba to Rimmon south of Je- rusalem will be turned into a plain, but Jerusalem will be raised up and will remain in her place, from the Benjamin Gate to the site of the First Gate to the Corner Gate, and from the Tower of People will Hananel to the royal winepresses. live there, and never again will there be an utter 12 destruction. So Jerusalem will dwell securely. 11 And this will be the plague with which the LORD strikes all the peoples who have warred against Jerusalem: Their flesh will rot while they stand on their feet, their eyes will rot in their sockets, and their tongues will rot in their 13 mouths. 14 On that day a great panic from the LORD will come upon them, so that each will seize the hand of another, and the hand of one will rise against Judah will also fight at Jerusalem, the other. and the wealth of all the surrounding nations will be collected—gold, silver, and apparel in great And a similar plague will strike the abundance. 15" + }, + { + "verseNum": 38, + "text": "–42) 9 He was assigned a grave with the wicked, and with a rich man in His death, b although He had done no violence, nor was any deceit in His mouth. 10 Yet it was the LORD’s will to crush Him c and to cause Him to suffer; and when His soul is made a guilt offering, He will see His offspring, He will prolong His days, 11 and the good pleasure of the LORD will prosper in His hand. d After the anguish of His soul, He will see the light of life and be satisfied. 54 “Shout for joy, O barren woman, who bears no children; break forth in song and cry aloud, you who have never travailed; because more are the children of the desolate h woman than of her who has a husband,” 2 says the LORD. “Enlarge the site of your tent, stretch out the curtains of your dwellings, do not hold back. Lengthen your ropes i 3 and drive your stakes in deep. For you will spread out to the right and left; your descendants will dispossess the 4 nations and inhabit the desolate cities. Do not be afraid, for you will not be put to shame; do not be intimidated, for you will not be humiliated. For you will forget the shame of your youth and will remember no more the reproach 5 of your widowhood. For your husband is your Maker— the LORD of Hosts is His name— the Holy One of Israel is your Redeemer; He is called the God of all the earth. 6 For the LORD has called you back, like a wife deserted and wounded in spirit, like the rejected wife of one’s youth,” 7 says your God. By His knowledge My righteous Servant will" + }, + { + "verseNum": 39, + "text": "" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "–9) 28 a After the Sabbath, at dawn on the first Mary Magdalene and day of the week, 3 Suddenly there was a great earthquake, for an angel of the Lord descended from heaven, rolled His appearance away the stone, and sat on it. was like lightning, and his clothes were white as snow. The guards trembled in fear of him and 5 became like dead men. 4 b 7 6 But the angel said to the women, “Do not be afraid, for I know that you are looking for Jesus, who was crucified. He is not here; He has risen, just as He said! Come, see the place where He Then go quickly and tell His disciples, ‘He lay. has risen from the dead and is going ahead of you into Galilee. There you will see Him.’ See, I have 8 told you.” c So they hurried away from the tomb in fear and 9 Suddenly great joy, and ran to tell His disciples. Jesus met them and said, “Greetings!” They came 10 to Him, grasped His feet, and worshiped Him. “Do not be afraid,” said Jesus. “Go and tell My The Report of the Guards brothers to go to Galilee. There they will see Me.” 11 12 13 While the women were on their way, some of the guards went into the city and reported to the chief priests all that had happened. And after the chief priests had met with the elders and formed a plan, they gave the soldiers a large sum and instructed them: “You are to say, of money 14 ‘His disciples came by night and stole Him away If this report reaches while we were asleep.’ the governor, we will satisfy him and keep you 15 out of trouble.” So the guards" + }, + { + "verseNum": 10, + "text": "–18) e 9 f Early on the first day of the week, after Jesus had risen, He appeared first to Mary Magdalene, 10 from whom He had driven out seven demons. She went and told those who had been with And Him, who were mourning and weeping. when they heard that Jesus was alive and she had Jesus Appears to Two Disciples seen Him, they did not believe it." + }, + { + "verseNum": 18, + "text": "| 973 31 It was the day of Preparation, and the next day was a High Sabbath. In order that the bodies would not remain on the cross during the Sab- bath, the Jews asked Pilate to have the legs bro- So the soldiers ken and the bodies removed. came and broke the legs of the first man who had 33 been crucified with Jesus, and those of the other. 32 35 But when they came to Jesus and saw that He 34 was already dead, they did not break His legs. Instead, one of the soldiers pierced His side with a spear, and immediately blood and water The one who saw it has testified to flowed out. this, and his testimony is true. He knows that he 36 is telling the truth, so that you also may believe. a 37 Now these things happened so that the Scrip- ture would be fulfilled: “Not one of His bones will be broken.” And, as another Scripture says: The Burial of Jesus" + }, + { + "verseNum": 19, + "text": "–23 ; 1" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 25, + "text": "| 975 “Yes, Lord,” he answered, “You know I love You.” 16 Jesus replied, “Feed My lambs.” And after He had said this, He told him, “Follow Jesus and the Beloved Disciple Me.” 20 Jesus asked a second time, “Simon son of John, do you love Me?” “Yes, Lord,” he answered, “You know I love You.” 17 Jesus told him, “Shepherd My sheep.” Jesus asked a third time, “Simon son of John, do you love Me?” Peter was deeply hurt that Jesus had asked him a third time, “Do you love Me?” “Lord, You know all things,” he replied. “You know I love You.” 18 Jesus said to him, “Feed My sheep. Truly, truly, I tell you, when you were young, you dressed yourself and walked where you wanted; but when you are old, you will stretch will dress out your hands, and someone else 19 you and lead you where you do not want to go.” Jesus said this to indicate the kind of death by a which Peter would glorify God. Peter turned and saw the disciple whom Jesus b loved following them. He was the one who had 21 leaned back against Jesus at the supper to ask, “Lord, who is going to betray You?” When Pe- 22 ter saw him, he asked, “Lord, what about him?” Jesus answered, “If I want him to remain until 23 I return, what is that to you? You follow Me!” Because of this, the rumor spread among the brothers that this disciple would not die. How- ever, Jesus did not say that he would not die, but only, “If I want him to remain until I return, what 24 is that to you?” This is the disciple who testifies to these things and who has" + } + ] + } + ] + }, + { + "name": "Acts", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–3) 1 3 2 Many have undertaken to compose an ac- count of the things that have been fulfilled among us, just as they were handed down to us by the initial eyewitnesses and servants of the Therefore, having carefully investigated word. everything from the beginning, it seemed good also to me to write an orderly account for you, so that you may most excellent Theophilus, know the certainty of the things you have been Gabriel Foretells John’s Birth taught. 5 4 6 In the time of Herod king of Judea there was a priest named Zechariah, who belonged to the priestly division of Abijah, and whose wife Eliza- Both of them beth was a descendant of Aaron. were righteous in the sight of God, walking blamelessly in all the commandments and de- But they had no children, crees of the Lord. because Elizabeth was barren, and they were 8 both well along in years. 7 9 10 One day while Zechariah’s division was on duty and he was serving as priest before God, he was chosen by lot, according to the custom of the priesthood, to enter the temple of the Lord and And at the hour of the incense burn incense. offering, the whole congregation was praying 11 outside. 12 Just then an angel of the Lord appeared to Zechariah, standing at the right side of the altar When Zechariah saw him, he was of incense. 13 startled and gripped with fear. 15 14 But the angel said to him, “Do not be afraid, Zechariah, because your prayer has been heard. Your wife Elizabeth will bear you a son, and you He will be a joy are to" + }, + { + "verseNum": 5, + "text": "Or James Killed, Peter Imprisoned 15" + }, + { + "verseNum": 6, + "text": "–11) well.” h 19 18 After the Lord Jesus had spoken to them, He was taken up into heaven and sat down at the 20 right hand of God. And they went out and preached everywhere, and the Lord worked through them, confirming Joseph His word by the signs that accompanied it. b 40 Joses e 8 6 When they entered the tomb, they saw a young man dressed in a white robe sitting on the right side, and they were alarmed. But he said to them, “Do not be alarmed. You are looking for Je- a 39 sus the Nazarene, who was crucified. He has c 47 saw how, having cried out, He had breathed His last d 2 And very early on the first of the Sabbaths, Joses BYZ, TR Or ; see" + }, + { + "verseNum": 20, + "text": "4 15" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–13) d 15 Mizraim was the father of the Ludites, the the Anamites, the Lehabites, the Naphtuhites, Pathrusites, the Casluhites (from whom the Phil- e And Ca- istines came), and the Caphtorites. 16 naan was the father of Sidon his firstborn, and 17 of the Hittites, the Jebusites, the Amorites, 18 the Hivites, the Arkites, the the Girgashites, the Arvadites, the Zemarites, and the Sinites, Hamathites. 19 and Later the Canaanite clans were scattered, the borders of Canaan extended from Sidon toward Gerar as far as Gaza, and then toward Sodom, Gomorrah, Admah, and Zeboiim, as far as 20 Lasha. These are the sons of Ham according to their The Semites clans, languages, lands, and nations. 21 f And sons were also born to Shem, the older Shem was the forefather of brother of Japheth; 22 all the sons of Eber. The sons of Shem: 23 Elam, Asshur, Arphaxad, Lud, and Aram. The sons of Aram: 24 Uz, Hul, Gether, and Mash. g Arphaxad was the father of Shelah, 25 Shelah was the father of Eber. i h and Two sons were born to Eber: One was named because in his days the earth was divided, Peleg, 26 and his brother was named Joktan. 11 2 Now the whole world had one language j And as and a common form of speech. they found a plain k people journeyed eastward, 3 in the land of Shinar and settled there. And they said to one another, “Come, let us make bricks and bake them thoroughly.” So they used brick instead of stone, and tar instead of 4 mortar. “Come,” they said, “let us build for ourselves a city" + }, + { + "verseNum": 14, + "text": "–36) A Miktam d of David. 1 Preserve me, O God, 2 for in You I take refuge. I said to the LORD, “You are my Lord; 3 apart from You I have no good thing.” As for the saints in the land, they are the excellence in whom all my delight resides. 4 they have together become corrupt; c Sorrows will multiply there is no one who does good, 4 not even one. Will the workers of iniquity never learn? They devour my people like bread; 5 they refuse to call upon the LORD. There they are, overwhelmed with dread, 6 for God is in the company of the righteous. You sinners frustrate the plans of the 7 oppressed, yet the LORD is their shelter. 8 Oh, that the salvation of Israel would come from Zion! When the LORD restores His captive people, Psalm 15 Who May Dwell on Your Holy Mountain? let Jacob rejoice, let Israel be glad! A Psalm of David. 1 O LORD, who may abide in Your tent? Who may dwell on Your holy mountain? fool d 1 Miktam a 1 c 3 e 7 h 10 to those who chase other gods. 5 I will not pour out their libations of blood, or speak their names with my lips. The LORD is my chosen portion and my cup; 6 You have made my lot secure. The lines of my boundary have fallen in 7 pleasant places; surely my inheritance is delightful. I will bless the LORD who counsels me; e even at night my conscience instructs me. f I have set the LORD always before me. 9 Because He is at my right hand, I will not be shaken. Therefore my heart is glad and my tongue g 10 rejoices; my body also will dwell securely. h 11 F" + }, + { + "verseNum": 17, + "text": "–21 and" + }, + { + "verseNum": 25, + "text": "–28 Psalm 17 Hear My Righteous Plea A prayer of David. 1 Hear, O LORD, my righteous plea; listen to my cry. Give ear to my prayer— 2 it comes from lips free of deceit. May my vindication come from Your 3 presence; may Your eyes see what is right. You have tried my heart; You have visited me in the night. You have tested me and found no evil; 4 I have resolved not to sin with my mouth. As for the deeds of men— 5 by the word of Your lips I have avoided the ways of the violent. 6 My steps have held to Your paths; my feet have not slipped. I call on You, O God, for You will answer me. 7 Incline Your ear to me; hear my words. Show the wonders of Your loving devotion, 8 You who save by Your right hand those who seek refuge from their foes. a Keep me as the apple of 9 Your eye; hide me in the shadow of Your wings from the wicked who assail me, 10 from my mortal enemies who surround me. 11 They have closed their callous hearts; their mouths speak with arrogance. They have tracked us down, and now 12 surround us; their eyes are set to cast us to the ground, like a lion greedy for prey, 13 like a young lion lurking in ambush. Arise, O LORD, confront them! Bring them to their knees; 14 deliver me from the wicked by Your sword, from such men, O LORD, by Your hand— from men of the world b whose portion is in this life. May You fill the bellies of Your treasured" + }, + { + "verseNum": 30, + "text": "; see also LXX; cited in" + }, + { + "verseNum": 31, + "text": "| 977 18 Even on My menservants and maidservants I will pour out My Spirit in those days, and they will prophesy. 19 I will show wonders in the heavens above 20 and signs on the earth below, blood and fire and billows of smoke. The sun will be turned to darkness, and the moon to blood, before the coming of the great and glorious Day of the Lord. And everyone who calls on the name e of the Lord will be saved.’ 21 22 23 Men of Israel, listen to this message: Jesus of Nazareth was a man certified by God to you by miracles, wonders, and signs, which God did among you through Him, as you yourselves He was delivered up by God’s set plan know. and foreknowledge, and you, by the hands of the lawless, put Him to death by nailing Him But God raised Him from the dead, to the cross. releasing Him from the agony of death, because it was impossible for death to keep Him in its 25 grip. 24 f David says about Him: ‘I saw the Lord always before me; 26 because He is at my right hand, I will not be shaken. Therefore my heart is glad and my tongue 27 rejoices; my body also will dwell in hope, because You will not abandon my soul 28 to Hades, nor will You let Your Holy One see decay. You have made known to me the paths of life; g You will fill me with joy in Your presence.’ 29 30 Brothers, I can tell you with confidence that the patriarch David died and was buried, and his tomb is with us to this day. But he was a prophet and knew that God had promised him on h oath that He would place one of his" + }, + { + "verseNum": 32, + "text": "32 A Lame Man Walks decay. 33 which we are all witnesses. God has raised this Jesus to life, to 34 Exalted, then, to the right hand of God, He has received from the Father the promised Holy Spirit and has poured out what you now see and For David did not ascend into heaven, but hear. he himself says: 35 36 ‘The Lord said to my Lord, “Sit at My right hand until I make Your enemies a footstool for Your feet.” a ’ Therefore let all Israel know with certainty that God has made this Jesus, whom you cruci- Three Thousand Believe fied, both Lord and Christ!” 37 When the people heard this, they were cut to the heart and asked Peter and the other apostles, 38 “Brothers, what shall we do?” 39 Peter replied, “Repent and be baptized, every one of you, in the name of Jesus Christ for the for- giveness of your sins, and you will receive the gift This promise belongs to you of the Holy Spirit. and your children and to all who are far off—to 40 all whom the Lord our God will call to Himself.” 41 With many other words he testified, and he urged them, “Be saved from this corrupt genera- Those who embraced his message were tion.” b baptized, and about three thousand were added The Fellowship of Believers to the believers that day." + }, + { + "verseNum": 34, + "text": "–35, and" + }, + { + "verseNum": 42, + "text": "–47) Spirit and spoke the word of God boldly. 32 33 The multitude of believers was one in heart and soul. No one claimed that any of his posses- sions was his own, but they shared everything With great power the apostles they owned. continued to give their testimony about the res- urrection of the Lord Jesus. And abundant grace 34 was upon them all. 35 There were no needy ones among them, because those who owned lands or houses would sell their property, bring the proceeds from the and lay them at the apostles’ feet for dis- sales, 36 tribution to anyone as he had need. 37 Joseph, a Levite from Cyprus, whom the apos- tles called Barnabas (meaning Son of Encourage- sold a field he owned, brought the ment), Ananias and Sapphira money, and laid it at the apostles’ feet. 5 2 Now a man named Ananias, together with his wife Sapphira, also sold a piece of prop- erty. With his wife’s full knowledge, he kept back some of the proceeds for himself, but 3 brought a portion and laid it at the apostles’ feet. Then Peter said, “Ananias, how is it that Satan has filled your heart to lie to the Holy Spirit and 4 withhold some of the proceeds from the land? Did it not belong to you before it was sold? And a 26 after it was sold, was it not at your disposal? How His Messiah His Christ b 20 could you conceive such a deed in your heart? 5 You have not lied to men, but to God!” On hearing these words, Ananias fell down and 6 died. And great fear came over all who heard Then the young men what had" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 11, + "text": "–26) LORD your God has not permitted you to do so. 15 c b 16 The LORD your God will raise up for you a prophet like me from among your brothers. You This is what you asked of must listen to him. on the day of the the LORD your God at Horeb assembly, when you said, “Let us not hear the voice of the LORD our God or see this great fire 17 anymore, so that we will not die!” 18 19 Then the LORD said to me, “They have spoken well. I will raise up for them a prophet like you from among their brothers. I will put My words in his mouth, and he will tell them everything I command him. And I will hold accountable an- d yone who does not listen to My words that the prophet speaks in My name. But if any prophet dares to speak a message in My name that I have not commanded him to speak, or to speak in the name of other gods, that prophet c 16 must be put to death.” b 15 20 This shall be the priests’ share from the people who offer a sacrifice, whether a bull or a sheep: a 10 the priests are to be given the shoulder, the makes his son or his daughter pass through the fire d 19 Literally Cited in" + }, + { + "verseNum": 22, + "text": "That is, Mount Sinai, or possibly a mountain in the range containing Mount Sinai See" + }, + { + "verseNum": 23, + "text": ". 182 |" + }, + { + "verseNum": 25, + "text": "Or Or Heth and Syriac 24 |" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 11, + "text": ", and" + }, + { + "verseNum": 23, + "text": "–31) 1 a Why do the nations rage 2 and the peoples plot in vain? The kings of the earth take their stand and the rulers gather together, b against the LORD 3 and against His Anointed One: “Let us break Their chains I will proclaim the decree spoken to Me by the LORD: c “You are My Son; 8 today I have become Your Father. Ask Me, and I will make the nations Your d inheritance, 9 the ends of the earth Your possession. e You will break them with an iron scepter; You will shatter them like pottery. ” 10 11 Therefore be wise, O kings; be admonished, O judges of the earth. 12 Serve the LORD with fear, and rejoice with trembling. Kiss the Son, lest He be angry and you perish in your rebellion, when His wrath ignites in an instant. Psalm 3 Deliver Me, O LORD! (2 Samuel 15:13–29) Blessed are all who take refuge in Him. A Psalm of David, when he fled from his son Absalom. 1 2 O LORD, how my foes have increased! How many rise up against me! Many say of me, “God will not deliver him.” 3 Selah f But You, O LORD, are a shield around me, my glory, and the One who lifts my head. today I have begotten You c 7 a 1 and cast away Their cords.” noisily assemble b 2 Or d 9 ; see" + }, + { + "verseNum": 25, + "text": "–26 f 2 Selah or Literally Interlude ; cited in Cited in or is probably a musical or literary 498 |" + }, + { + "verseNum": 26, + "text": "26 ‘Why do the nations rage and the peoples plot in vain? The kings of the earth take their stand and the rulers gather together a against the Lord 27 and against His Anointed One.’ 28 29 In fact, this is the very city where Herod and Pontius Pilate conspired with the Gentiles and the people of Israel against Your holy servant Je- They carried out sus, whom You anointed. what Your hand and will had decided beforehand And now, Lord, consider their would happen. 30 threats, and enable Your servants to speak Your as You stretch word with complete boldness, out Your hand to heal and perform signs and wonders through the name of Your holy servant 31 Jesus.” After they had prayed, their meeting place was shaken, and they were all filled with the Holy Sharing among Believers" + }, + { + "verseNum": 32, + "text": "–37) 42 They devoted themselves to the apostles’ 43 teaching and to the fellowship, to the breaking of came bread and to prayer. over everyone, and the apostles performed many 44 wonders and signs. 45 A sense of awe c All the believers were together and had every- Selling their possessions and thing in common. 46 goods, they shared with anyone who was in need. d 47 With one accord they continued to meet daily in the temple courts and to break bread from house to house, sharing their meals with glad- praising God and ness and sincerity of heart, enjoying the favor of all the people. And the Lord added to their number daily those who were be- a 35 ing saved. e 1 of Nazareth, walk!" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–7) 8 9 Deacons likewise must be dignified, not double- tongued or given to much wine or greedy for They must hold to the mystery of the money. Additionally, faith with a clear conscience. they must first be tested. Then, if they are above 11 reproach, let them serve as deacons. 10 e In the same way, the women must be digni- fied, not slanderers, but temperate and faithful in 12 all things. 13 A deacon must be the husband of but one wife, a good manager of his children and of his own For those who have served well as household. deacons acquire for themselves a high standing and great confidence in the faith that is in Christ a 11 Jesus. wife ; also in verse 12 Or in spirit h 10 Or ; also in verse 12 over her husband f 16 b 12 their wives Or and suffer reproach Literally e 11 wife SBL, BYZ, and TR The Mystery of Godliness 14 15 Although I hope to come to you soon, I am writing you these things in case I am delayed, so that you will know how each one must conduct himself in God’s household, which is the church of the living God, the pillar and 16 foundation of the truth. By common confession, the mystery of godli- ness is great: f g He appeared in the flesh, was vindicated by the Spirit, was seen by angels, was proclaimed among the nations, was believed in throughout the world, A Warning against Apostasy was taken up in glory. 4 Now the Spirit expressly states that in later times some will abandon the faith to follow 2 deceitful spirits and the teachings of demons, influenced b" + }, + { + "verseNum": 5, + "text": ". Tischendorf our Lord Jesus with the blood of His own Son. e 8 1000 |" + }, + { + "verseNum": 7, + "text": "| 981 37 somebody, and about four hundred men joined him. He was killed, all his followers were dis- After him, persed, and it all came to nothing. Judas the Galilean appeared in the days of the census and drew away people after him. He too 38 perished, and all his followers were scattered. So in the present case I advise you: Leave these men alone. Let them go! For if their purpose or But if endeavor is of human origin, it will fail. it is from God, you will not be able to stop them. You may even find yourselves fighting against 40 God.” 39 At this, they yielded to Gamaliel. They called the apostles in and had them flogged. Then they ordered them not to speak in the name of Jesus, 41 and released them. 42 The apostles left the Sanhedrin, rejoicing that they had been counted worthy of suffering dis- grace for the Name. Every day, in the temple courts and from house to house, they did not stop teaching and proclaiming the good news that Je- The Choosing of the Seven (1 Timothy 3:8–13) sus is the Christ. 6 In those days when the disciples were in- creasing in number, the Grecian Jews among d them began to grumble against the Hebraic because their widows were being over- Jews 2 looked in the daily distribution of food. 3 So the Twelve summoned all the disciples and said, “It is unacceptable for us to neglect the word of God in order to wait on tables. There- fore, brothers, select from among you seven men 4 confirmed to be full of the Spirit and wisdom. We and will will assign t" + }, + { + "verseNum": 8, + "text": "The Arrest of Stephen 8 9 Now Stephen, who was full of grace and power, was performing great wonders and signs among But resistance arose from what was the people. called the Synagogue of the Freedmen, including Cyrenians, Alexandrians, and men from the prov- inces of They disputed with but they could not stand up to his Stephen, 11 wisdom or the Spirit by whom he spoke. 10 Cilicia and Asia. a Then they prompted some men to say, “We heard Stephen speak words of blasphemy against 12 Moses and against God.” b 13 So they stirred up the people, elders, and scribes and confronted Stephen. They seized him and brought him before the Sanhedrin, where they presented false witnesses who said, “This man never stops speaking against this holy place and against the law. For we have heard him say that Jesus of Nazareth will destroy this place and change the customs that Moses handed down to 15 us.” 14 All who were sitting in the Sanhedrin looked intently at Stephen, and they saw that his face Stephen’s Address: The Call of Abraham was like the face of an angel." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–8) lived 205 years, and he died in Haran. 12 b Then the LORD said to Abram, “Leave your country, your kindred, and your fa- ther’s household, and go to the land I will show 2 you. I will make you into a great nation, and I will bless you; I will make your name great, 3 so that you will be a blessing. I will bless those who bless you c and all the families of the earth will be blessed through you. and curse those who curse you; ” 4 5 So Abram departed, as the LORD had directed him, and Lot went with him. Abram was seventy- five years old when he left Haran. And Abram took his wife Sarai, his nephew Lot, and all the possessions and people they had acquired in 6 Haran, and set out for the land of Canaan. d Abram When they came to the land of Canaan, traveled through the land as far as the site of the Oak of Moreh at Shechem. And at that time the 7 Canaanites were in the land. e Then the LORD appeared to Abram and said, “I ” So Abram will give this land to your offspring. built an altar there to the LORD, who had ap- 8 peared to him. From there Abram moved on to the hill country east of Bethel and pitched his tent, with Bethel to the west and Ai to the east. There he built an altar to the LORD, and he called on the name of the 9 LORD. Abram and Sarai in Egypt And Abram journeyed on toward the Negev. 10 30 11 And Abram and Nahor took wives for them- selves. Abram’s wife was named Sarai, and Nahor’s wife was named Milcah; she was the daughter of Haran, who was the father of both B" + }, + { + "verseNum": 3, + "text": "See" + }, + { + "verseNum": 6, + "text": "–7 well of the Living One who sees me responding pronouns may also be capitalized. father of many means Or g 1 j 5 . Cited in" + }, + { + "verseNum": 7, + "text": "nachash c 14 e 3 Or Hebrew g 6 , in contrast to Aaron’s staff, which became a ; twice in this verse and twice in verse 7 various skin diseases; see Leviticus 13. 58 |" + }, + { + "verseNum": 9, + "text": "–14) said. 12 13 Some time later, Joseph’s brothers had gone to Is- pasture their father’s flocks near Shechem. rael said to him, “Are not your brothers pasturing the flocks at Shechem? Get ready; I am sending you to them.” 42 41 These are the names of Esau’s chiefs, accord- ing to their families and regions, by their names: Oholibamah, Chiefs Timna, Alvah, Jetheth, Magdiel, Kenaz, Teman, Mibzar, Elah, Pinon, before an Israelite king reigned over them: b 31 Dishon a 26 d 39 Hebrew Or with long sleeves Some MT manuscripts, SP, and Syriac (see also 1 Chronicles 1:50); other MT manuscripts “I am ready,” Joseph replied. c 37 Hadar , a variant of Dishan 43 ; also in verses 23 and 32 the River e 3 a robe Hebrew Possibly 40 |" + }, + { + "verseNum": 14, + "text": ") Hebrew ; twice in this verse food. Then we, along with our land, will be slaves to Pharaoh. Give us seed that we may live and not 20 die, and that the land may not become desolate.” 22 21 a So Joseph acquired for Pharaoh all the land in Egypt; the Egyptians, one and all, sold their fields because the famine was so severe upon them. and Joseph re- The land became Pharaoh’s, from one end of duced the people to servitude However, he did not ac- Egypt to the other. quire the priests’ portion of the land, for it had been given to them by Pharaoh. They ate the rations that Pharaoh supplied; so they did not 23 sell their land. 24 Then Joseph said to the people, “Now that I have acquired you and your land for Pharaoh this At day, here is seed for you to sow in the land. harvest time, you are to give a fifth of it to Phar- aoh, and four-fifths will be yours as seed for the field and food for yourselves and your house- 25 holds and children.” 26 “You have saved our lives,” they said. “We have found favor in our lord’s eyes, and we will be So Joseph established a Pharaoh’s servants.” law that a fifth of the produce belongs to Phar- aoh, and it is in effect in the land of Egypt to this day. Only the priests’ land does not belong to The Israelites Prosper in Goshen Pharaoh. 27 28 Now the Israelites settled in the land of Egypt, in the region of Goshen. They acquired property there and became fruitful and increased greatly And Jacob lived in the land of Egypt in number. seventeen years," + }, + { + "verseNum": 15, + "text": "–19) filled with them. 8 10 9 Then a new king, who did not know Joseph, came to power in Egypt. “Look,” he said to his people, “the Israelites have become too numer- Come, let us deal ous and too powerful for us. shrewdly with them, or they will increase even more; and if a war breaks out, they may join our enemies, fight against us, and leave the 11 country. ” b 12 So the Egyptians appointed taskmasters over the Israelites to oppress them with forced labor. As a result, they built Pithom and Rameses as But the more they store cities for Pharaoh. were oppressed, the more they multiplied and flourished; so the Egyptians came to dread the Is- 13 raelites. 14 They worked the Israelites ruthlessly and made their lives bitter with hard labor in brick and mortar, and with all kinds of work in the 15 fields. Every service they imposed was harsh. Then the king of Egypt said to the Hebrew mid- wives, whose names were Shiphrah and Puah, a 5 d 3 to the Hebrews MT (see also Gen. 46:27); DSS and LXX (see also" + }, + { + "verseNum": 20, + "text": "–22 ;" + }, + { + "verseNum": 23, + "text": "–29) 11 b One day, after Moses had grown up, he went and observed their hard out to his own people 12 labor. He saw an Egyptian beating a Hebrew, one After looking this way and of his own people. that and seeing no one, he struck down the Egyp- 13 tian and hid his body in the sand. The next day Moses went out and saw two He- brews fighting. He asked the one in the wrong, 14 “Why are you attacking your companion?” c But the man replied, “Who made you ruler and d Are you planning to kill me as judge over us? you killed the Egyptian? ” Then Moses was afraid and thought, “This thing I 15 have done has surely become known.” When Pharaoh heard about this matter, he sought to kill Moses. But Moses fled from Phar- aoh and settled in the land of Midian, where he 16 sat down beside a well. 17 Now the priest of Midian had seven daughters, and they came to draw water and fill the troughs And when some to water their father’s flock. shepherds came along and drove them away, Moses rose up to help them and watered their 18 flock. e When the daughters returned to their father he asked them, “Why have you returned Reuel, 19 so early today?” f 22 Moses agreed to stay with the man, and he gave his daughter Zipporah to Moses in mar- And she gave birth to a son, and Moses riage. named him Gershom, saying, “I have become a God Hears the Cry of the Israelites foreigner in a foreign land.” 23 After a long time, the king of Egypt died. The Israelites groaned and cried out under their bur- den of slav" + }, + { + "verseNum": 27, + "text": "and" + }, + { + "verseNum": 28, + "text": "Or foreigner g 1 Cited in" + }, + { + "verseNum": 30, + "text": "–38) cob. God saw the Israelites and took notice. 3 g i h There the angel Meanwhile, Moses was shepherding the flock of his father-in-law Jethro, the priest of Midian. He led the flock to the far side of the 2 wilderness and came to Horeb, the mountain of God. of the LORD appeared to him in a blazing fire from within a bush. Moses saw the bush ablaze with fire, but it was not con- So Moses thought, “I must go over and sumed. see this marvelous sight. Why is the bush not 4 burning up?” 3 When the LORD saw that he had gone over to look, God called out to him from within the bush, “Moses, Moses!” 5 “Here I am,” he answered. j 6 “Do not come any closer,” God said. “Take off your sandals, for the place where you are stand- Then He said, “I am the God ing is holy ground.” of your father, the God of Abraham, the God of Isaac, and the God of Jacob.” k At this, Moses hid his face, for he was afraid to 7 look at God. The LORD said, “I have indeed seen the afflic- tion of My people in Egypt. I have heard them crying out because of their oppressors, and I am aware of their sufferings. I have come down to rescue them from the hand of the Egyptians and b 11 to bring them up out of that land to a good and his brothers c 14 8 e 18 Reuel “An Egyptian rescued us from the shepherds,” they replied. “He even drew water for us and wa- to lift out a 10 Moses tered the flock.” d 14 Jethro sounds like a Hebrew term that means f 22 Gershom Are you planning to kill me as you killed the Egyptian yesterd" + }, + { + "verseNum": 32, + "text": "i 2 called Or d 20" + }, + { + "verseNum": 33, + "text": "Cited in" + }, + { + "verseNum": 34, + "text": "Cited in" + }, + { + "verseNum": 35, + "text": "Jethro was also called was also . That is, Mount Sinai, or possibly a mountain in the range containing Mount Sinai sounds like the Hebrew for k 6 Moses’ father-in-law Cited in" + }, + { + "verseNum": 39, + "text": "–43) by the finger of God. 32 Now when the people saw that Moses was delayed in coming down from the mountain, they gathered around Aaron and said, “Come, make us gods who will go before us. As for this Moses who brought us up out of the land of Egypt, we do not know what has happened to 2 him!” b So Aaron told them, “Take off the gold earrings that are on your wives and sons and daughters, a 7 and bring them to me.” the ark of the covenant b 1 That is, Cited in" + }, + { + "verseNum": 40, + "text": "" + }, + { + "verseNum": 42, + "text": "–43 means . d 12 You have taken along the tabernacle of Molech and the star of your god Rephan means , a symbol of strength. LXX Literally 826 |" + }, + { + "verseNum": 44, + "text": "–47 ;" + }, + { + "verseNum": 46, + "text": ". Literally 8 9 Arise, O LORD, to Your resting place, You and the ark of Your strength. May Your priests be clothed with 10 righteousness, and Your saints shout for joy. For the sake of Your servant David, do not reject Your anointed one. 11 The LORD swore an oath to David, a promise He will not revoke: a 12 “One of your descendants I will place on your throne. If your sons keep My covenant and the testimony I will teach them, then their sons will also sit on your throne 13 forever and ever.” 14 For the LORD has chosen Zion; He has desired it for His home: “This is My resting place forever and ever; here I will dwell, for I have desired this 15 home. 16 17 I will bless her with abundant provisions; I will satisfy her poor with bread. I will clothe her priests with salvation, and her saints will sing out in joy. There I will make a horn grow for David; 18 I have prepared a lamp for My anointed one. I will clothe his enemies with shame, Psalm 133 but the crown upon him will gleam.” How Pleasant to Live in Harmony! (1 Corinthians 1:10–17 ;" + }, + { + "verseNum": 49, + "text": "–50 676 |" + }, + { + "verseNum": 50, + "text": "| 983 The Rebellion of Israel" + }, + { + "verseNum": 51, + "text": "51 52 You stiff-necked people with uncircumcised hearts and ears! You always resist the Holy Which of the Spirit, just as your fathers did. prophets did your fathers fail to persecute? They even killed those who foretold the coming of the Righteous One. And now you are His betrayers you who received the law or- and murderers— The Stoning of Stephen dained by angels, yet have not kept it.” 54 53 a 55 On hearing this, the members of the Sanhedrin were enraged, and they gnashed their teeth at him. But Stephen, full of the Holy Spirit, looked intently into heaven and saw the glory of God and “Look,” Jesus standing at the right hand of God. he said, “I see heaven open and the Son of Man 57 standing at the right hand of God.” 56 58 At this they covered their ears, cried out in a loud voice, and rushed together at him. They dragged him out of the city and began to stone him. Meanwhile the witnesses laid their gar- 59 ments at the feet of a young man named Saul. 60 While they were stoning him, Stephen ap- Falling pealed, “Lord Jesus, receive my spirit.” on his knees, he cried out in a loud voice, “Lord, do not hold this sin against them.” And when he Saul Persecutes the Church had said this, he fell asleep. 8 And Saul was there, giving approval to Ste- phen’s death. 3 2 On that day a great persecution broke out against the church in Jerusalem, and all except the apostles were scattered throughout Judea and God-fearing men buried Stephen and Samaria. But Saul began to de- mourned deep" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 9, + "text": "–25) his father’s estate. 9 a 10 When you enter the land that the LORD your God is giving you, do not imitate the detestable ways of the nations there. Let no one be found among you who sacrifices his son or daughter in the fire, practices divination or conjury, inter- casts spells, prets omens, practices sorcery, 12 consults a medium or spiritist, or inquires of the dead. For whoever does these things is detestable to the LORD. And because of these de- testable things, the LORD your God is driving out 13 the nations before you. 11 14 You must be blameless before the LORD your Though these nations, which you will dis- God. possess, listen to conjurers and diviners, the A Prophet Like Moses" + }, + { + "verseNum": 26, + "text": "–40 ;" + }, + { + "verseNum": 32, + "text": "–33. h 1 waters of Noah 22:37 DSS (see also LXX); MT does not include Cited in" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "–19 ;" + }, + { + "verseNum": 19, + "text": "| 985 so that if he found any men or women belonging to the Way, he could bring them as prisoners to 3 Jerusalem. 4 As Saul drew near to Damascus on his journey, suddenly a light from heaven flashed around him. He fell to the ground and heard a voice say 5 to him, “Saul, Saul, why do you persecute Me?” “Who are You, Lord?” Saul asked. d 6 “I am Jesus, whom you are persecuting,” He replied. “Now get up and go into the city, and 7 you will be told what you must do.” 8 The men traveling with Saul stood there speechless. They heard the voice but did not see anyone. Saul got up from the ground, but when 9 he opened his eyes he could not see a thing. So For they led him by the hand into Damascus. three days he was without sight, and he did not Ananias Baptizes Saul eat or drink anything. 10 e In Damascus there was a disciple named Ananias. The Lord spoke to him in a vision, “Ananias!” 11 “Here I am, Lord,” he answered. “Get up!” the Lord told him. “Go to the house of Judas on Straight Street and ask for a man from Tarsus named Saul, for he is praying. In a vi- sion he has seen a man named Ananias come and 13 place his hands on him to restore his sight.” 12 But Ananias answered, “Lord, many people have told me about this man and all the harm he has done to Your saints in Jerusalem. And now he is here with authority from the chief priests to 15 arrest all who call on Your name.” 14 “Go!” said the Lord. “This man is My chosen in- strument to carry My name before the Gentiles 16 and th" + }, + { + "verseNum": 20, + "text": "he regained his strength. And he spent several Saul Preaches at Damascus days with the disciples in Damascus. 20 Saul promptly began to proclaim Jesus in the 21 synagogues, declaring, “He is the Son of God.” All who heard him were astounded and asked, “Isn’t this the man who wreaked havoc in Jerusa- lem on those who call on this name? And hasn’t he come here to take them as prisoners to the 22 chief priests?” But Saul was empowered all the more, and he confounded the Jews living in Damascus by prov- The Escape from Damascus ing that Jesus is the Christ. 23 24 25 After many days had passed, the Jews con- spired to kill him, but Saul learned of their plot. Day and night they watched the city gates in order to kill him. One night, however, his disci- ples took him and lowered him in a basket Saul in Jerusalem through a window in the wall. 26 a 27 When Saul arrived in Jerusalem, he tried to join the disciples, but they were all afraid of him, not believing that he was a disciple. Then Bar- nabas brought him to the apostles and described how Saul had seen the Lord, who had spoken to him on the road to Damascus, and how Saul had 28 spoken boldly in that city in the name of Jesus. 29 b So Saul stayed with them, moving about freely in Jerusalem and speaking boldly in the name of the Lord. He talked and debated with the Gre- cian Jews, When the but they tried to kill him. brothers learned of this, they took him down to The Healing of Aeneas Caesarea and sent him off to Tarsus. 31 30 T" + }, + { + "verseNum": 36, + "text": "–43) 38 the nation, but also for the scattered children of 53 God, to gather them together into one. 54 So from that day on they plotted to kill Him. As a result, Jesus no longer went about publicly among the Jews, but He withdrew to a town called Ephraim in an area near the wilderness. 55 And He stayed there with the disciples. 39 Jesus, once again deeply moved, came to the tomb. It was a cave with a stone laid across the entrance. “Take away the stone,” Jesus said. “Lord, by now he stinks,” said Martha, the sister 40 of the dead man. “It has already been four days.” Jesus replied, “Did I not tell you that if you be- 41 lieved, you would see the glory of God?” 42 So they took away the stone. Then Jesus lifted His eyes upward and said, “Father, I thank You that You have heard Me. I knew that You al- ways hear Me, but I say this for the benefit of the people standing here, so they may believe that 43 You sent Me.” After Jesus had said this, He called out in a loud 44 voice, “Lazarus, come out!” The man who had been dead came out with his a hands and feet bound in strips of linen, and his face wrapped in a cloth. The Plot to Kill Jesus “Unwrap him and let him go,” Jesus told them." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 9, + "text": "–16) 11 2 3 The LORD spoke again to Moses and Aa- “Say to the Israelites, ron, telling them, ‘Of all the beasts of the earth, these ones you may eat: You may eat any animal that has a split hoof 4 completely divided and that chews the cud. a But of those that only chew the cud or only have a divided hoof, you are not to eat the following: 5 b The rock badger, though it chews the cud, does not have a divided hoof; it is 6 unclean for you. The rabbit, though it chews the cud, does not have a divided hoof; it is unclean for 7 you. And the pig, though it has a split hoof 8 completely divided, does not chew the cud; it is unclean for you. You must not eat their meat or touch their car- 9 casses; they are unclean for you. Of all the creatures that live in the water, whether in the seas or in the streams, you may 10 eat anything with fins and scales. 11 But the following among all the teeming life and creatures in the water are detestable to you: everything in the seas or streams that does not They shall be an abomina- have fins and scales. tion to you; you must not eat their meat, and you Everything in the must detest their carcasses. water that does not have fins and scales shall be 13 detestable to you. 12 Additionally, you are to detest the following birds, and they must not be eaten because they are detestable: the eagle, the bearded vulture, the black 14 vulture, 15 the kite, any kind of falcon, 16 any kind of raven, c the ostrich, 17 kind of hawk, the screech owl, the gull, a" + }, + { + "verseNum": 42, + "text": "| 987 25 called together his relatives and close friends. As Peter was about to enter, Cornelius met him But Peter and fell at his feet to worship him. helped him up. “Stand up,” he said, “I am only a 27 man myself.” 26 28 As Peter talked with him, he went inside and found many people gathered together. He said to them, “You know how unlawful it is for a Jew to associate with a foreigner or visit him. But God has shown me that I should not call any man im- pure or unclean. So when I was invited, I came without objection. I ask, then, why have you sent 30 for me?” 29 e Cornelius answered: “Four days ago I was in my house praying at this, the ninth hour. Sud- 31 denly a man in radiant clothing stood before me and said, ‘Cornelius, your prayer has been heard, and your gifts to the poor have been remembered before God. Therefore send to Joppa for Simon, who is called Peter. He is a guest 33 in the home of Simon the tanner, by the sea.’ 32 So I sent for you immediately, and you were kind enough to come. Now then, we are all here in the presence of God to listen to everything the Good News for the Gentiles Lord has instructed you to tell us.” 34 35 Then Peter began to speak: “I now truly under- but stand that God does not show favoritism, 36 welcomes those from every nation who fear Him and do what is right. He has sent this message to the people of Israel, proclaiming the gospel of 37 peace through Jesus Christ, who is Lord of all. 38 You yourselves know what has happened througho" + }, + { + "verseNum": 43, + "text": "43 appointed by God to judge the living and the All the prophets testify about Him that dead. everyone who believes in Him receives for- The Gentiles Receive the Holy Spirit giveness of sins through His name.”" + }, + { + "verseNum": 44, + "text": "–48) 19 a While Apollos was at Corinth, Paul 2 and came passed through the interior and to Ephesus. There he found some disciples asked them, “Did you receive the Holy Spirit when you became believers?” “No,” they answered, “we have not even heard 3 that there is a Holy Spirit.” “Into what, then, were you baptized?” Paul asked. 4 “The baptism of John,” they replied. Paul explained: “John’s baptism was a baptism of repentance. He told the people to believe in the 5 One coming after him, that is, in Jesus.” 6 On hearing this, they were baptized into the name of the Lord Jesus. And when Paul laid his hands on them, the Holy Spirit came upon them, 7 and they spoke in tongues and prophesied. Paul Ministers in Ephesus" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 16, + "text": "69:25" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–3 ;" + }, + { + "verseNum": 3, + "text": "| 989 12 b a About that time, King Herod 2 out to harm reached some who belonged to the He had James, the brother of John, put church. 3 to death with the sword. c 4 And seeing that this pleased the Jews, Herod proceeded to seize Peter during the Feast of Un- leavened Bread. He arrested him and put him in prison, handing him over to be guarded by four squads of four soldiers each. Herod in- tended to bring him out to the people after the The Rescue of Peter Passover. 5 So Peter was kept in prison, but the church was 6 fervently praying to God for him. 7 On the night before Herod was to bring him to trial, Peter was sleeping between two soldiers, bound with two chains, with sentries standing guard at the entrance to the prison. Suddenly an angel of the Lord appeared and a light shone in the cell. He tapped Peter on the side and woke him up, saying, “Get up quickly.” And the chains fell off his wrists. “Get dressed and put on your sandals,” said the angel. Peter did so, and the an- gel told him, “Wrap your cloak around you and 9 follow me.” 8 10 So Peter followed him out, but he was unaware that what the angel was doing was real. He thought he was only seeing a vision. They passed the first and second guards and came to the iron gate leading to the city, which opened for them by itself. When they had gone outside and walked the length of one block, the angel sud- 11 denly left him. “You are out of your mind,” they told her. But when she kept insisting it was so, they said, “It" + }, + { + "verseNum": 4, + "text": "On Cyprus 4 So Barnabas and Saul, sent forth by the Holy 5 Spirit, went down to Seleucia and sailed When they arrived at from there to Cyprus. Salamis, they proclaimed the word of God in the Jewish synagogues. And John was with them as 6 their helper. 7 They traveled through the whole island as far as Paphos, where they found a Jewish sorcerer and false prophet named Bar-Jesus, an at- tendant of the proconsul, Sergius Paulus. The proconsul, a man of intelligence, summoned Bar- nabas and Saul because he wanted to hear the But Elymas the sorcerer (for that word of God. is what his name means) opposed them and tried 9 to turn the proconsul from the faith. 8 10 11 Then Saul, who was also called Paul, filled with the Holy Spirit, looked directly at Elymas and said, “O child of the devil and enemy of all right- eousness, you are full of all kinds of deceit and trickery! Will you never stop perverting the Now look, the hand straight ways of the Lord? of the Lord is against you, and for a time you will be blind and unable to see the light of the sun.” Immediately mist and darkness came over him, and he groped about, seeking someone to lead 12 him by the hand. When the proconsul saw what had happened, he believed, for he was astonished at the teach- In Pisidian Antioch ing about the Lord. 13 14 After setting sail from Paphos, Paul and his companions came to Perga in Pamphylia, where And John left them to return to Jerusalem. from Perga, they traveled inland to Pisidian An- 15 tioch, w" + }, + { + "verseNum": 21, + "text": "); MT A few late LXX manuscripts; MT Or 260 | 1 Samuel 13:3 3 Then Jonathan attacked the Philistine outpost at Geba, and the Philistines heard about it. So Saul blew the ram’s horn throughout the land, 4 saying, “Let the Hebrews hear!” And all Israel heard the news: “Saul has at- tacked an outpost of the Philistines, and now Is- rael has become a stench to the Philistines!” Then the people were summoned to join Saul at 5 Gilgal. a Now the Philistines assembled to fight against Israel with three thousand chariots, six thou- sand horsemen, and troops as numerous as the sand on the seashore. They went up and camped 6 at Michmash, east of Beth-aven. Seeing that they were in danger because their troops were hard-pressed, the men of Israel hid 7 in caves and thickets, among the rocks, and in cellars and cisterns. Some Hebrews even crossed the Jordan into the land of Gad and Gil- ead. Saul, however, remained at Gilgal, and all his Saul’s Unlawful Sacrifice troops were quaking in fear. 8 And Saul waited seven days for the time appointed by Samuel, but Samuel did not come to Gilgal, and the troops began to desert Saul. So he said, “Bring me the burnt offering and the peace offerings.” And he offered up the burnt 10 offering. 9 Just as he finished offering the burnt offering, 11 Samuel arrived, and Saul went out to greet him. “What have you done?” Samuel asked. 12 And Saul replied, “When I saw that the troops were deserting me, and that you did not come at the appointed time and the Ph" + }, + { + "verseNum": 25, + "text": "BYZ and TR . Or ; others BYZ and TR ; see" + }, + { + "verseNum": 33, + "text": "," + }, + { + "verseNum": 34, + "text": "Or or or Salvation for Foreigners 10" + }, + { + "verseNum": 35, + "text": "Cited in" + }, + { + "verseNum": 41, + "text": "c 6 and clearly inscribe it on tablets, so that a herald may run with it. That is, the Babylonians d 15 Literally He 842 |" + }, + { + "verseNum": 42, + "text": "–52) “for the wicked.” c 49 Listen to Me, O islands; pay attention, O distant peoples: The LORD called Me from the womb; 2 from the body of My mother He named Me. He made My mouth like a sharp sword; He hid Me in the shadow of His hand. He made Me like a polished arrow; 3 He hid Me in His quiver. He said to Me, “You are My Servant, Israel, in whom I will display My glory.” 4 But I said, “I have labored in vain, I have spent My strength in futility and vanity; yet My vindication is with the LORD, 5 and My reward is with My God.” And now says the LORD, who formed Me from the womb to be His Servant, to bring Jacob back to Him, 18 who teaches you for your benefit, who directs you in the way you should go. that Israel might be gathered to Him— for I am honored in the sight of the LORD, 6 If only you had paid attention to My commandments, and My God is My strength— He says: “It is not enough for You to be My your peace would have been like a river, and your righteousness like waves of b 19 the sea. coastlands a 14 c 1 Servant, to raise up the tribes of Jacob, like the sand, and your offspring like its grains and to restore the protected ones of Israel. That is, the Babylonians; also in verse 20 Literally Or I will also make You a light for the nations, to bring My salvation to the ends of the a 7 earth.” Thus says the LORD, the Redeemer and Holy One of Israel, to Him who was despised and abhorred by the nation, to the Servant of rulers: “Kings will see You and rise, and princes wil" + }, + { + "verseNum": 47, + "text": "g 22 Your sons Cited in" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 17, + "text": "| 991 For when David had served God’s purpose in his own generation, he fell asleep. His body was buried with his fathers and saw decay. But the from the dead did not see One whom God raised 38 decay. 37 39 Therefore let it be known to you, brothers, that through Jesus the forgiveness of sins is pro- claimed to you. Through Him everyone who believes is justified from everything from which 40 you could not be justified by the law of Moses. Watch out, then, that what was spoken by the 41 prophets does not happen to you: ‘Look, you scoffers, wonder and perish! For I am doing a work in your days that you would never believe, A Light for the Gentiles" + }, + { + "verseNum": 18, + "text": "not left Himself without testimony to His good- ness: He gives you rain from heaven and fruitful seasons, filling your hearts with food and glad- 18 ness.” Even with these words, Paul and Barnabas could hardly stop the crowds from sacrificing to 19 them. 20 Then some Jews arrived from Antioch and Ico- nium and won over the crowds. They stoned Paul and dragged him outside the city, presuming he was dead. But after the disciples had gathered around him, he got up and went back into the city. And the next day he left with Barnabas for Strengthening the Disciples Derbe. 21 22 They preached the gospel to that city and made many disciples. Then they returned to Lys- tra, Iconium, and Antioch, strengthening the souls of the disciples and encouraging them to continue in the faith. “We must endure many hardships to enter the kingdom of God,” they 23 said. Paul and Barnabas appointed elders for them in each church, praying and fasting as they en- trusted them to the Lord, in whom they had be- 24 lieved. 25 After passing through Pisidia, they came to And when they had spoken the Pamphylia. 26 word in Perga, they went down to Attalia. 27 From Attalia they sailed to Antioch, where they had been commended to the grace of God for the work they had just completed. When they arrived, they gathered the church together and reported all that God had done through them, and how He had opened the door of faith to the Gentiles. And they spent a long time The Dispute over Circumcision there with the" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 5, + "text": "–21) us.’ ” 11 “In that day I will restore the fallen tent of David. 12 I will repair its gaps, restore its ruins, and rebuild it as in the days of old, a that they may possess the remnant of Edom declares the LORD, who will do this. and all the nations that bear My name,” 13 “Behold, the days are coming,” declares the LORD, “when the plowman will overtake the reaper and the treader of grapes, the sower of seed. 14 The mountains will drip with sweet wine, with which all the hills will flow. b I will restore My people Israel from captivity; they will rebuild and inhabit the ruined cities. They will plant vineyards and drink their 15 wine; they will make gardens and eat their fruit. I will firmly plant them in their own land, never again to be uprooted from the land that I have given them,” says the LORD your God. snake c 7 Or That is, Crete Hebrew ; translated in most cases as That is, people from the upper Nile region Obadiah The Destruction of Edom" + }, + { + "verseNum": 36, + "text": "–41 ;" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 11, + "text": "–15) 18 To the angel of the church in Thyatira write: These are the words of the Son of God, whose eyes are like a blazing fire and whose feet are 19 like polished bronze. I know your deeds—your love, your faith, your service, your perseverance—and your 20 latest deeds are greater than your first. But I have this against you: You tolerate that woman Jezebel, who calls herself a prophetess. By her teaching she misleads My servants to be sexually immoral and to eat Even though I have food sacrificed to idols. given her time to repent of her immorality, 22 she is unwilling. 21 Behold, I will cast her onto a bed of sick- ness, and those who commit adultery with 23 her will suffer great tribulation unless they Then I will strike her repent of her deeds. children dead, and all the churches will know that I am the One who searches minds and hearts, and I will repay each of you according 24 to your deeds. 26 But I say to the rest of you in Thyatira, who do not hold to her teaching and have not learned the so-called deep things of Satan: I 25 will place no further burden upon you than to hold fast to what you have until I And to the one who overcomes and come. continues in My work until the end, I will He will give authority over the nations. rule them with an iron scepter and shatter —just as I have received them like pottery And I will give authority from My Father. 29 him the morning star. 28 27 a He who has an ear, let him hear what the Spirit says to the churches. To the Church i" + }, + { + "verseNum": 12, + "text": "| 993 Paul’s Second Missionary Journey Begins" + }, + { + "verseNum": 13, + "text": "a there we went to the Roman colony of Philippi, the leading city of that district of Macedonia. 13 And we stayed there several days. On the Sabbath we went outside the city gate along the river, where it was customary to find a place of prayer. After sitting down, we spoke to 14 the women who had gathered there. Among those listening was a woman named Lydia, a dealer in purple cloth from the city of Thyatira, who was a worshiper of God. The Lord 15 opened her heart to respond to Paul’s message. And when she and her household had been baptized, she urged us, “If you consider me a be- liever in the Lord, come and stay at my house.” Paul and Silas Imprisoned And she persuaded us. 16 b 17 One day as we were going to the place of prayer, we were met by a slave girl with a spirit of divination, who earned a large income for her This girl followed masters by fortune-telling. Paul and the rest of us, shouting, “These men are servants of the Most High God, who are proclaim- 18 ing to you the way of salvation!” She continued this for many days. Eventually Paul grew so aggravated that he turned and said to the spirit, “In the name of Jesus Christ I com- mand you to come out of her!” And the spirit left 19 her at that very moment. 20 When the girl’s owners saw that their hope of making money was gone, they seized Paul and Silas and dragged them before the authorities in They brought them to the the marketplace. 21 magistrates and said, “These men are Jews and by promot- are throwing our" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 11, + "text": "The Berean Standard Bible (BSB) is a modern English translation of the Holy Bible, effective for public reading, study, memorization, and evangelism. Based on the best available manuscripts and sources, each word is connected back to the Greek or Hebrew text to produce a transparent text that can be studied for its root meanings. The BSB represents a single tier of the Berean Bible. This printing contains the full BSB text, footnotes, section headings, and cross references. Additional components, including translation tables, lexicons, outlines, and summaries, are free online and in a variety of apps. The Berean Bible Translation Committee has employed an open process where translation tables are freely available and all comments are welcomed and considered. These sources may also be downloaded and shared freely. Please see the Berean Bible website for a full description of the translation committee and process. We pray that this text will enable readers to connect with God’s Word to study it, memorize it, After this letter has been read among you, share it, and proclaim it. We are inspired by the model of the early Christian church: make sure that it is also read in the church of the Laodiceans, and that you in turn read the letter from Laodicea. –" + }, + { + "verseNum": 29, + "text": "| 995 synagogue with the Jews and God-fearing Gen- tiles, and in the marketplace with those he met 18 each day. Some Epicurean and Stoic philosophers also began to debate with him. Some of them asked, “What is this babbler trying to say?” Others said, “He seems to be advocating foreign gods.” They said this because Paul was proclaiming the good 19 news of Jesus and the resurrection. b So they took Paul and brought him to the Areopagus, where they asked him, “May we 20 know what this new teaching is that you are pre- senting? For you are bringing some strange notions to our ears, and we want to know what 21 they mean.” Now all the Athenians and foreigners who lived there spent their time doing nothing more Paul’s Address in the Areopagus than hearing and articulating new ideas. 22 c Then Paul stood up in the meeting of the Are- 23 opagus and said, “Men of Athens, I see that in every way you are very religious. For as I walked around and examined your objects of worship, I even found an altar with this inscrip- tion: TO AN UNKNOWN GOD. Therefore what you worship as something un- 24 known, I now proclaim to you. 25 The God who made the world and everything in it is the Lord of heaven and earth and does not live in temples made by human hands. Nor is He served by human hands, as if He needed any- d thing, because He Himself gives everyone life and breath and everything else. He made every nation of men, that they should in- habit the whole earth; and He determined their appointed" + }, + { + "verseNum": 30, + "text": "30 31 Although God overlooked the ignorance of ear- lier times, He now commands all people every- For He has set a day when where to repent. He will judge the world with justice by the Man He has appointed. He has given proof of this to 32 everyone by raising Him from the dead.” 34 33 When they heard about the resurrection of the dead, some began to mock him, but others said, “We want to hear you again on this topic.” At that, Paul left the Areopagus. joined him and believed, including Dionysius the Areop- agite, a woman named Damaris, and others who Paul Ministers in Corinth were with them. (1 Corinthians 1:1–3 ; 2 Corinthians 1:1–2) But some a 18 2 After this, Paul left Athens and went to There he found a Jew named Corinth. Aquila, a native of Pontus, who had recently come from Italy with his wife Priscilla because Claudius had ordered all the Jews to leave Rome. and he stayed and Paul went to visit them, worked with them because they were tentmak- 4 ers by trade, just as he was. 3 5 Every Sabbath he reasoned in the synagogue, And trying to persuade Jews and Greeks alike. when Silas and Timothy came down from Mace- 6 donia, Paul devoted himself fully to the word, But testifying to the Jews that Jesus is the Christ. when they opposed and insulted him, he shook out his garments and told them, “Your blood be on your own heads! I am innocent of it. From now 7 on I will go to the Gentiles.” b 8 to the house of Titus Justus, So Paul left the synagogue and went next door a worship" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "–11 ; 2 Corinthians 1:1–2) 1 2 nes, Paul, called to be an apostle of Christ Jesus by the will of God, and our brother Sosthe- To the church of God in Corinth, to those sancti- fied in Christ Jesus and called to be holy, together with all those everywhere who call on the name 3 of our Lord Jesus Christ, their Lord and ours: Grace and peace to you from God our Father Thanksgiving" + }, + { + "verseNum": 2, + "text": ". Priscilla" + }, + { + "verseNum": 23, + "text": "–28) Then Peter came to himself and said, “Now I know for sure that the Lord has sent His angel and rescued me from Herod’s grasp and from everything the Jewish people were antici- 12 pating.” 13 13 And when he had realized this, he went to the house of Mary the mother of John, also called Mark, where many people had gathered together and were praying. He knocked at the outer 14 gate, and a servant girl named Rhoda came to an- swer it. When she recognized Peter’s voice, she was so overjoyed that she forgot to open the gate, but ran inside and announced, “Peter is standing a 1 at the gate!” the days of the Unleavened returned to Jerusalem That is, King Herod Agrippa Literally d 20 b 1 2 Now in the church at Antioch there were prophets and teachers: Barnabas, Sim- eon called Niger, Lucius of Cyrene, Manaen (who had been brought up with Herod the tetrarch), While they were worshiping the Lord and Saul. and fasting, the Holy Spirit said, “Set apart for Me Barnabas and Saul for the work to which I have And after they had fasted and called them.” prayed, they laid their hands on them and sent them off. put forth the hands to mistreat c 3 3 seize Peter—now these were had fulfilled their mission, they ; see" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "–7) 44 While Peter was still speaking these words, the 45 Holy Spirit fell upon all who heard his message. All the circumcised believers who had accom- panied Peter were astounded that the gift of the Holy Spirit had been poured out even on the Gen- tiles. For they heard them speaking in tongues 47 and exalting God. 46 Then Peter said, “Can anyone withhold the wa- 48 ter to baptize these people? They have received the Holy Spirit just as we have!” So he ordered that they be baptized in the name of Jesus Christ. Peter’s Report at Jerusalem Then they asked him to stay for a few days. 11 2 The apostles and brothers throughout Judea soon heard that the Gentiles also a So when Peter had received the word of God. went up to Jerusalem, the circumcised believers took issue with him 4 circumcised men and ate with them.” and said, “You visited un- 3 5 6 But Peter began and explained to them the whole sequence of events: “I was in the city of Joppa praying, and in a trance I saw a vision of something like a large sheet being let down from heaven by its four corners, and it came right down to me. I looked at it closely and saw four- footed animals of the earth, wild beasts, reptiles, and birds of the air. Then I heard a voice saying 8 to me, ‘Get up, Peter, kill and eat.’ 7 b ‘No, Lord,’ I said, ‘for nothing impure 9 clean has ever entered my mouth.’ or un- But the voice spoke from heaven a second time, ‘Do not call anything impure that God has made 10 clean.’ This happened three times," + }, + { + "verseNum": 8, + "text": "–12 ;" + }, + { + "verseNum": 27, + "text": "| 997 14 Jesus over those with evil spirits. They would say, “I command you by Jesus, whom Paul pro- Seven sons of Sceva, a Jewish chief claims.” 15 priest, were doing this. But one day the evil spirit responded, “Jesus I 16 know, and I know about Paul, but who are you?” Then the man with the evil spirit jumped on them and overpowered them all. The attack was so violent that they ran out of the house naked 17 and wounded. 18 This became known to all the Jews and Greeks living in Ephesus, and fear came over all of them. So the name of the Lord Jesus was held in high Many who had believed now came for- honor. 19 ward, confessing and disclosing their deeds. And a number of those who had practiced magic arts brought their books and burned them in front of everyone. When the value of the books was calculated, the total came to fifty thousand So the word of the Lord powerfully drachmas. The Riot in Ephesus continued to spread and prevail. 21 20 d e After these things had happened, Paul resolved in the Spirit to go to Jerusalem, passing through Macedonia and Achaia. “After I have 22 been there,” he said, “I must see Rome as well.” He sent two of his helpers, Timothy and Erastus, to Macedonia, while he stayed for a time 23 in the province of Asia. f 24 about the Way. About that time there arose a great disturb- ance It began with a silver- smith named Demetrius who made silver shrines of Artemis, bringing much business to the 25 craftsmen. g 26 Demetrius assembled the craftsmen, alon" + }, + { + "verseNum": 28, + "text": "28 29 When the men heard this, they were enraged and began shouting, “Great is Artemis of the Ephesians!” Soon the whole city was in disar- ray. They rushed together into the theatre, drag- ging with them Gaius and Aristarchus, Paul’s 30 traveling companions from Macedonia. 31 a Paul wanted to go before the assembly, but the Even some of disciples would not allow him. Paul’s friends who were officials of the province sent word to him, begging him not to of Asia 32 venture into the theatre. 33 Meanwhile the assembly was in turmoil. Some were shouting one thing and some another, and most of them did not even know why they were The Jews in the crowd pushed Alexan- there. der forward to explain himself, and he motioned 34 for silence so he could make his defense to the But when they realized that he was a people. Jew, they all shouted in unison for about two 35 hours: “Great is Artemis of the Ephesians!” 36 Finally the city clerk quieted the crowd and de- clared, “Men of Ephesus, doesn’t everyone know that the city of Ephesus is guardian of the temple of the great Artemis and of her image, which fell Since these things are undenia- from heaven? 37 ble, you ought to be calm and not do anything For you have brought these men here, rash. though they have neither robbed our temple nor 38 blasphemed our goddess. 39 So if Demetrius and his fellow craftsmen have a complaint against anyone, the courts are open and proconsuls are available. Let them bring But if you charges against one an" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 7, + "text": "–12) 18 And the child grew, and one day he went out to 19 his father, who was with the harvesters. “My head! My head!” he complained to his father. So his father told a servant, “Carry him to his 20 mother.” 21 After the servant had picked him up and car- ried him to his mother, the boy sat on her lap un- til noon, and then he died. And she went up and laid him on the bed of the man of God. Then she 22 shut the door and went out. And the woman called her husband and said, “Please send me one of the servants and one of the donkeys, that I may go quickly to the man of God and return.” 23 “Why would you go to him today?” he replied. 37 Then Elisha said, “Pick up your son.” 2 Kings 5:2 | 343 “It is not a New Moon or a Sabbath.” 24 “Everything is all right,” she said. 25 Then she saddled the donkey and told her servant, “Drive onward; do not slow the pace for me unless I tell you.” So she set out and went to the man of God at Mount Carmel. When the man of God saw her at a distance, he 26 said to his servant Gehazi, “Look, there is the Shunammite woman. Please run out now to meet her and ask, ‘Are you all right? Is your hus- band all right? Is your child all right?’ 27 And she answered, “Everything is all right.” ” When she reached the man of God at the mountain, she clung to his feet. Gehazi came over to push her away, but the man of God said, “Leave her alone, for her soul is in deep distress, and the LORD has hidden it from me and has not told 28 me.” Then she said, “Did I ask y" + }, + { + "verseNum": 25, + "text": "–26 c 9 Likely reading of the original Heb.; MT 776 |" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 14, + "text": "| 999 19 20 When they came to him, he said, “You know how I lived the whole time I was with you, from I the first day I arrived in the province of Asia. served the Lord with great humility and with tears, especially in the trials that came upon me I did not shrink through the plots of the Jews. back from declaring anything that was helpful to you as I taught you publicly and from house to testifying to Jews and Greeks alike house, a about repentance to God and faith in our Lord Je- 22 sus Christ. 21 24 23 And now, compelled by the Spirit, I am going to Jerusalem, not knowing what will hap- I only know that in town after pen to me there. town the Holy Spirit warns me that chains and But I consider my life of afflictions await me. no value to me, if only I may finish my course and complete the ministry I have received from the Lord Jesus—the ministry of testifying to the good 25 news of God’s grace. 26 Now I know that none of you among whom I have preached the kingdom will see my face Therefore I testify to you this day that I again. am innocent of the blood of all men. For I did not shrink back from declaring to you the whole 28 will of God. 27 b c d Keep watch over yourselves and the entire flock of which the Holy Spirit has made you over- 29 which seers. Be shepherds of the church of God, I know He purchased with His own blood. 30 that after my departure, savage wolves will come Even in among you and will not spare the flock. from your own number, men will rise up and dis- 3" + }, + { + "verseNum": 15, + "text": "15 16 After these days, we packed up and went on to Some of the disciples from Caesa- Jerusalem. rea accompanied us, and they took us to stay at the home of Mnason the Cypriot, an early disci- ple. Paul’s Arrival at Jerusalem 17 18 19 When we arrived in Jerusalem, the brothers welcomed us joyfully. The next day Paul went in with us to see James, and all the elders were Paul greeted them and recounted one present. by one the things that God had done among the 20 Gentiles through his ministry. When they heard this, they glorified God. Then they said to Paul, “You see, brother, how many 21 thousands of Jews have believed, and all of them But they are under the are zealous for the law. impression that you teach all the Jews who live among the Gentiles to forsake Moses, telling them not to circumcise their children or observe What then should we do? They our customs. 23 will certainly hear that you have come. 22 24 Therefore do what we advise you. There are four men with us who have taken a vow. Take these men, purify yourself along with them, and pay their expenses so they can have their heads shaved. Then everyone will know that there is no truth to these rumors about you, but that you 25 also live in obedience to the law. As for the Gentile believers, we have written to them our decision that they must abstain from food sacrificed to idols, from blood, from the meat of strangled animals, and from sexual im- 26 morality.” So the next day Paul took the men and purified himself al" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "–21 , 26:1–23) the towns until he came to Caesarea. 9" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 2, + "text": "| 1001 there giving my approval and watching over the 21 garments of those who killed him.’ Then He said to me, ‘Go! I will send you far Paul the Roman Citizen away to the Gentiles.’” 22 The crowd listened to Paul until he made this statement. Then they lifted up their voices and shouted, “Rid the earth of him! He is not fit to 23 live!” 24 As they were shouting and throwing off their the com- cloaks and tossing dust into the air, mander ordered that Paul be brought into the barracks. He directed that Paul be flogged and interrogated to determine the reason for this 25 outcry against him. But as they stretched him out to strap him down, Paul said to the centurion standing there, “Is it lawful for you to flog a Roman citizen with- 26 out a trial?” On hearing this, the centurion went and re- ported it to the commander. “What are you going 27 to do?” he said. “This man is a Roman citizen.” The commander went to Paul and asked, “Tell me, are you a Roman citizen?” 28 “Yes,” he answered. “I paid a high price for my citizenship,” said the commander. 29 “But I was born a citizen,” Paul replied. At once those who were about to interrogate Paul stepped back, and the commander himself was alarmed when he realized that he had put a 30 Roman citizen in chains. The next day the commander, wanting to learn the real reason Paul was accused by the Jews, re- leased him and ordered the chief priests and the to assemble. Then he brought whole Sanhedrin Paul before the Sanhedrin Paul down and had" + }, + { + "verseNum": 3, + "text": "3 18 Then Paul said to him, “God will strike you, you whitewashed wall! You sit here to judge me ac- cording to the law, yet you yourself violate the 4 law by commanding that I be struck.” So the centurion took him to the commander and said, “Paul the prisoner sent and asked me to bring this young man to you. He has something 19 to tell you.” But those standing nearby said, “How dare you 5 insult the high priest of God!” “Brothers,” Paul replied, “I was not aware that he was the high priest, for it is written: ‘Do not 6 speak evil about the ruler of your people.’ ” a Then Paul, knowing that some of them were Sadducees and the others Pharisees, called out in the Sanhedrin, “Brothers, I am a Pharisee, the son of a Pharisee. It is because of my hope in the res- 7 urrection of the dead that I am on trial.” As soon as he had said this, a dispute broke out 8 between the Pharisees and Sadducees, and the assembly was divided. For the Sadducees say that there is neither a resurrection nor angels nor spirits, but the Pharisees acknowledge them 9 all. A great clamor arose, and some scribes from the party of the Pharisees got up and contended sharply, “We find nothing wrong with this man. 10 What if a spirit or an angel has spoken to him?” The dispute grew so violent that the com- mander was afraid they would tear Paul to pieces. He ordered the soldiers to go down and remove 11 him by force and bring him into the barracks. The following night the Lord stood near Paul and said, “Take cour" + }, + { + "verseNum": 5, + "text": "That is, the seven-day period after the Passover b 15 d 16 LXX during which no leaven may be eaten; see" + }, + { + "verseNum": 12, + "text": "–22) have been with Me from the beginning. 16 2 “I have told you these things so that you will not fall away. They will put you out of the synagogues. In fact, a time is coming when anyone who kills you will think he is offering Comforter c 26 They will do these things a service to God. Counselor Paraclete Helper 3" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 6, + "text": "| 1003 he said, “I will hear your case from Cilicia, when your accusers arrive.” Then he ordered that Paul be kept under guard in Herod’s Praeto- Tertullus Prosecutes Paul rium. 24 Five days later the high priest Ananias a came down with some elders and a named Tertullus, who presented to the lawyer 2 governor their case against Paul. 3 When Paul had been called in, Tertullus opened the prosecution: “Because of you, we have en- joyed a lasting peace, and your foresight has brought improvements to this nation. In every 4 way and everywhere, most excellent Felix, we acknowledge this with all gratitude. But in order not to delay you any further, I beg your 5 indulgence to hear us briefly. 6 We have found this man to be a pestilence, stir- ring up dissension among the Jews all over the world. He is a ringleader of the sect of the Naza- 8 renes, and he even tried to desecrate the temple; so we seized him. By examining him yourself, you will be able to learn the truth about 9 all our charges against him.” b The Jews concurred, asserting that these Paul’s Defense to Felix charges were true. 10 11 When the governor motioned for Paul to speak, he began his response: “Knowing that you have been a judge over this nation for many years, I gladly make my defense. You can verify 12 for yourself that no more than twelve days ago I went up to Jerusalem to worship. Yet my ac- cusers did not find me debating with anyone in the temple or riling up a crowd in the synagogues or in the city. Nor c" + }, + { + "verseNum": 7, + "text": "7 22 When Paul arrived, the that Paul be brought in. Jews who had come down from Jerusalem stood around him, bringing many serious charges that 8 they could not prove. Then Agrippa said to Festus, “I would like to hear this man myself.” Paul before Agrippa and Bernice “Tomorrow you will hear him,” Festus declared. 23 Then Paul made his defense: “I have committed no offense against the law of the Jews or against 9 the temple or against Caesar.” But Festus, wishing to do the Jews a favor, said to Paul, “Are you willing to go up to Jerusalem to Paul Appeals to Caesar stand trial before me on these charges?” 10 11 Paul replied, “I am standing before the judg- ment seat of Caesar, where I ought to be tried. I have done nothing wrong to the Jews, as you yourself know very well. If, however, I am guilty of anything worthy of death, I do not refuse to die. But if there is no truth to their ac- cusations against me, no one has the right to 12 hand me over to them. I appeal to Caesar!” Then Festus conferred with his council and re- plied, “You have appealed to Caesar. To Caesar Festus Consults Agrippa you will go!” 13 The next day Agrippa and Bernice came with great pomp and entered the auditorium, along with the commanders and leading men of the 24 city. And Festus ordered that Paul be brought in. Then Festus said, “King Agrippa and all who are present with us, you see this man. The whole Jewish community has petitioned me about him, both here and in Jerusalem, crying out that he But" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "–23) 22 2 d “Brothers and fathers, listen now to my When they heard defense before you.” him speak to them in Hebrew, they became even more silent. the commander of the in Aramaic d 2 in the Hebrew language b 31 ; Asia was a Roman province in what is now western Turkey. Literally Or ; literally Or ; literally 3 “I am a Jew, born in Tarsus Then Paul declared, of Cilicia, but raised in this city. I was educated at the feet of Gamaliel in strict conformity to the law of our fathers. I was just as zealous for God as any 4 of you are today. 5 I persecuted this Way even to the death, detain- ing both men and women and throwing them into prison, as the high priest and the whole Council can testify about me. I even obtained let- ters from them to their brothers in Damascus, and I was on my way to apprehend these people 6 and bring them to Jerusalem to be punished. 7 About noon as I was approaching Damascus, suddenly a bright light from heaven flashed around me. I fell to the ground and heard a voice 8 say to me, ‘Saul, Saul, why do you persecute Me?’ ‘Who are You, Lord?’ I asked. 9 ‘I am Jesus of Nazareth, whom you are persecut- My companions saw the light, ing,’ He replied. but they could not understand the voice of the 10 One speaking to me. Then I asked, ‘What should I do, Lord?’ ‘Get up and go into Damascus,’ He told me. ‘There you will be told all that you have been appointed 11 to do.’ 12 Because the brilliance of the light had blinded me, my companions led me by the hand into" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 10, + "text": "| 1005 matters, and I can speak freely to him. I am con- fident that none of this has escaped his notice, because it was not done in a corner. King Agrippa, do you believe the prophets? I know you 28 do.” 27 Then Agrippa said to Paul, “Can you persuade 29 me in such a short time to become a Christian?” “Short time or long,” Paul replied, “I wish to God that not only you but all who hear me this day may become what I am, except for these 30 chains.” 31 Then the king and the governor rose, along with Bernice and those seated with them. On their way out, they said to one another, “This man has done nothing worthy of death or impris- 32 onment.” And Agrippa said to Festus, “This man could have been released if he had not appealed to Cae- Paul Sails for Rome sar.” 27 c When it was decided that we would sail for Italy, Paul and some other prisoners were handed over to a centurion named Julius, who belonged to the Imperial We d boarded an Adramyttian ship about to sail for and we put out to ports along the coast of Asia, sea. Aristarchus, a Macedonian from Thessalo- 3 nica, was with us. Regiment. 2 4 The next day we landed at Sidon, and Julius treated Paul with consideration, allowing him to visit his friends and receive their care. After 5 putting out from there, we sailed to the lee of Cy- prus because the winds were against us. And when we had sailed across the open sea off the coast of Cilicia and Pamphylia, we came to Myra in Lycia. There the centurion found an Alexan- 7 drian" + }, + { + "verseNum": 11, + "text": "11 28 12 But contrary to Paul’s advice, the centurion was persuaded by the pilot and by the owner of the ship. Since the harbor was unsuitable to winter in, the majority decided to sail on, hoping that somehow they could reach Phoenix to win- ter there. Phoenix was a harbor in Crete facing The Storm at Sea" + }, + { + "verseNum": 13, + "text": "–26) 4 5 Then the LORD hurled a great wind upon the sea, and such a violent storm arose that the The sail- ship was in danger of breaking apart. ors were afraid, and each cried out to his own god. And they threw the ship’s cargo into the sea to lighten the load. But Jonah had gone down to the lowest part of the vessel, where he lay down 6 and fell into a deep sleep. The captain approached him and said, “How can you sleep? Get up and call upon your God. Per- haps this God will consider us, so that we may not 7 perish.” “Come!” said the sailors to one another. “Let us cast lots to find out who is responsible for this calamity that is upon us.” 8 So they cast lots, and the lot fell on Jonah. “Tell us now,” they demanded, “who is to blame for this calamity that is upon us? What is your oc- cupation, and where have you come from? What 9 is your country, and who are your people?” “I am a Hebrew,” replied Jonah. “I worship the LORD, the God of the heavens, who made the sea 10 and the dry land.” Then the men were even more afraid and said to him, “What have you done?” The men knew that he was fleeing from the presence of the LORD, because he had told them. the men dug in a 13 Hebrew Now the sea was growing worse and worse, so they said to Jonah, “What must we do to you to 12 calm this sea for us?” “Pick me up,” he answered, “and cast me into the sea, so it may quiet down for you. For I know that I am to blame for this violent storm that has 13 come upon you.” a Nevertheless, the men" + }, + { + "verseNum": 28, + "text": "" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 16, + "text": "–31) 6 a 2 and the train of His robe In the year that King Uzziah died, I saw the Lord seated on a throne, high and exalted; filled the temple. Above Him stood seraphim, each having six wings: With two wings they covered their faces, with two they covered their feet, and with two And they were calling out to they were flying. one another: 3 4 “Holy, holy, holy is the LORD of Hosts; all the earth is full of His glory.” At the sound of their voices the doorposts and thresholds shook, and the temple was filled with 5 smoke. Then I said: “Woe is me, for I am ruined, because I am a man of unclean lips dwelling among a people of unclean lips; 6 for my eyes have seen the King, the LORD of Hosts.” 7 Then one of the seraphim flew to me, and in his hand was a glowing coal that he had taken with tongs from the altar. And with it he touched my mouth and said: “Now that this has touched your lips, 8 your iniquity is removed and your sin is atoned for.” Then I heard the voice of the Lord saying: And He replied: “Go and tell this people, ‘Be ever hearing, but never b 10 understanding; be ever seeing, but never perceiving.’ Make the hearts of this people calloused; deafen their ears and close their eyes. Otherwise they might see with their eyes, hear with their ears, c understand with their hearts, 11 and turn and be healed. ” Then I asked: “How long, O Lord?” And He replied: “Until the cities lie ruined and without inhabitant, 12 until the houses are left unoccupied 13 and the land is desol" + }, + { + "verseNum": 26, + "text": "eyes, hear with their ears, understand with their hearts, and turn, and I would heal them. the hem of His robe b 9 “Here am I. Send me!” Or Hebrew; LXX Hebrew; LXX d 1 e 2 had set up camp in Ephraim f 3 Shear-jashub" + }, + { + "verseNum": 27, + "text": "a remnant shall return That is, Syria Or means . Cited in" + }, + { + "verseNum": 31, + "text": "| 1007 18 against our people or the customs of our fathers, I was taken prisoner in Jerusalem and handed over to the Romans. They examined me and 19 wanted to release me, because there was no ba- sis for a death sentence against me. But when the Jews objected, I was compelled to appeal to Caesar, even though I have no charge to bring So for this reason I have against my nation. called to see you and speak with you. It is be- cause of the hope of Israel that I am bound with 21 this chain.” 20 The leaders replied, “We have not received any letters about you from Judea, nor have any of the 22 brothers from there reported or even mentioned But we consider your anything bad about you. views worth hearing, because we know that peo- 23 ple everywhere are speaking against this sect.” So they set a day to meet with Paul, and many people came to the place he was staying. He ex- pounded to them from morning to evening, testi- fying about the kingdom of God and persuading them about Jesus from the Law of Moses and the 24 Prophets. 25 Some of them were convinced by what he said, They disagreed but others refused to believe. among themselves and began to leave after Paul had made this final statement: “The Holy Spirit was right when He spoke to your fathers through 26 Isaiah the prophet: ‘Go to this people and say, “You will be ever hearing but never understanding; 27 you will be ever seeing but never perceiving.” For this people’s heart has grown callous; they hardly hear with their ears," + } + ] + } + ] + }, + { + "name": "Romans", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 17, + "text": "," + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–16) For the choirmaster: To the tune of “Do Not Destroy.” A Psalm of Asaph. A song. 1 We give thanks to You, O God; 2 we give thanks, for Your Name is near. The people declare Your wondrous works. There is no longer any prophet. And none of us knows how long this will 10 3 “When I choose a time, I will judge fairly. last. 11 How long, O God, will the enemy taunt You? Will the foe revile Your name forever? Why do You withdraw Your strong right a 12 hand? Stretch it out to destroy them! 13 Yet God is my King from ancient times, working salvation on the earth. You divided the sea by Your strength; When the earth and all its dwellers quake, Selah 4 it is I who bear up its pillars. I say to the proud, ‘Do not boast,’ 5 and to the wicked, ‘Do not lift up your horn. 6 Do not lift up your horn against heaven or speak with an outstretched neck.’ ” For exaltation comes neither from east nor 14 You smashed the heads of the dragons of 7 west, the sea; 15 You crushed the heads of Leviathan; You fed him to the creatures of the desert. 16 You broke open the fountain and the flood; You dried up the ever-flowing rivers. b 17 The day is Yours, and also the night; You established the moon and the sun. 18 You set all the boundaries of the earth; You made the summer and winter. Remember how the enemy has mocked You, O LORD, 19 how a foolish people has spurned Your name. Do not deliver the soul of Your dove to beasts; 20 do not forget the lives of Your afflicted forever. Consider Your covenant, 2" + }, + { + "verseNum": 6, + "text": "They hold fast to their evil purpose; they speak of hiding their snares. “Who will see them?” they say. 6 They devise injustice and say, “We have perfected a secret plan.” For the inner man and the heart are 7 mysterious. 8 But God will shoot them with arrows; suddenly they will be wounded. They will be made to stumble, their own tongues turned against 9 them. All who see will shake their heads. Then all mankind will fear 10 and proclaim the work of God; so they will ponder what He has done. Let the righteous rejoice in the LORD and take refuge in Him; let all the upright in heart exult. Psalm 65 Praise Awaits God in Zion For the choirmaster. A Psalm of David. A song." + }, + { + "verseNum": 24, + "text": "Or DSS and Vulgate; MT h 15 g 15 b 5 in" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 4, + "text": "13 7" + }, + { + "verseNum": 5, + "text": "“So that You may be proved right when You speak a and victorious when You judge.” 5 6 But if our unrighteousness highlights the right- eousness of God, what shall we say? That God is unjust to inflict His wrath on us? I am speaking in 7 human terms. Certainly not! In that case, how could God judge the world? However, if my falsehood accentuates God’s truthfulness, to the increase of His glory, why am I still condemned as a sinner? Why not say, as some slanderously claim that we say, “Let us do evil that good may There Is No One Righteous result”? Their condemnation is deserved!" + }, + { + "verseNum": 9, + "text": "–20) For the choirmaster. According to Mahalath.b A Maskil c of David. 1 The fool says in his heart, “There is no God.” They are corrupt; their ways are vile. There is no one who does good. 2 God looks down from heaven upon the sons of men to see if any understand, 3 if any seek God. All have turned away, d they have together become corrupt; e there is no one who does good, 4 not even one. Will the workers of iniquity never learn? They devour my people like bread; 5 they refuse to call upon God. There they are, overwhelmed with dread, where there was nothing to fear. For God has scattered the bones of those who besieged you. You put them to shame, 6 for God has despised them. Oh, that the salvation of Israel would come f from Zion! The righteous will see and fear; they will mock the evildoer, saying, a 1 Maskil b 1 Mahalath When God restores His captive people, let Jacob rejoice, let Israel be glad! c 1 Maskil is probably a musical or liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. worthless e 3 d 3 f 6 term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. is probably a musical or liturgical term; see also" + }, + { + "verseNum": 10, + "text": "–12 i 11 ; Hebrew Or throughout the Psalms denote one who is morally deficient. my kidneys instruct me LXX will dwell in hope I foresaw g 9 f 8 is probably a musical or liturgical term; used for Psalm 16 and Psalms 56–60. LXX LXX Cited in" + }, + { + "verseNum": 13, + "text": ", Psalm 6 Do Not Rebuke Me in Your Anger" + }, + { + "verseNum": 14, + "text": "Probable reading; MT d 6 Or Will You forget me forever? How long will You hide Your face from me? like silver refined in a furnace of clay, purified is probably a musical term; b 10 He crouches and lies low c 1 Sheminith 502 |" + }, + { + "verseNum": 15, + "text": "–17 your lips have spoken lies, 4 and your tongue mutters injustice. No one calls for justice; no one pleads his case honestly. They rely on empty pleas; they tell lies; 5 they conceive mischief and give birth to iniquity. They hatch the eggs of vipers and weave a spider’s web. Whoever eats their eggs will die; 6 crack one open, and a viper is hatched. Their cobwebs cannot be made into clothing, and they cannot cover themselves with their works. Their deeds are sinful deeds, 7 and acts of violence are in their hands. Their feet run to evil; they are swift to shed innocent blood. a Their thoughts are sinful thoughts; 8 b ruin and destruction lie in their wake. The way of peace they have not known, and there is no justice in their tracks. They have turned them into crooked paths; no one who treads on them will know 9 peace. Therefore justice is far from us, and righteousness does not reach us. We hope for light, but there is darkness; for brightness, but we walk in gloom. 10 Like the blind, we feel our way along the wall, groping like those without eyes. We stumble at midday as in the twilight; 11 among the vigorous we are like the dead. We all growl like bears and moan like doves. 12 We hope for justice, but find none, for salvation, but it is far from us. For our transgressions are multiplied before You, and our sins testify against us. Our transgressions are indeed with us, 13 and we know our iniquities: rebelling and denying the LORD, turning away from our God, 670 |" + }, + { + "verseNum": 18, + "text": "Literally man: e There is no fear of God 2 before his eyes. For his eyes are too full of conceit to detect or hate his own sin. Like a godless circle of mockers, c 16 d 19 Or See John 514 |" + }, + { + "verseNum": 21, + "text": "–31) 3 Finally, my brothers, rejoice in the Lord. It is no trouble for me to write the same things to 2 you again, and it is a safeguard for you. 3 Watch out for those dogs, those workers of evil, For it is we who those mutilators of the flesh! are the circumcision, we who worship by the 4 Spirit of God, who glory in Christ Jesus, and who though I myself put no confidence in the flesh— could have such confidence. 5 If anyone else thinks he has grounds for confi- dence in the flesh, I have more: circumcised on the eighth day, of the people of Israel, of the tribe of Benjamin; a Hebrew of Hebrews; as to the law, as to zeal, persecuting the church; as a Pharisee; to righteousness in the law, faultless. 6 7 8 2 3" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "–12 ;" + }, + { + "verseNum": 3, + "text": "," + }, + { + "verseNum": 7, + "text": "LXX 7 and all the stars by the breath of His mouth. He piles up the waters of the sea; He puts the depths into storehouses. ; cited in" + }, + { + "verseNum": 8, + "text": "Or 512 |" + }, + { + "verseNum": 13, + "text": "–25) d 19 Then Melchizedek king of Salem brought out bread and wine—since he was priest of God Most High and he blessed Abram and said: — 20 “Blessed be Abram by God Most High, Creator of heaven and earth, and blessed be God Most High, who has delivered your enemies into your hand.” Then Abram gave Melchizedek a tenth of 21 everything. The king of Sodom said to Abram, “Give me the a 8 people, but take the goods for yourself.” b 13 Terebinths 8 But Abram replied, “Lord GOD, how can I know 9 that I will possess it?” And the LORD said to him, “Bring Me a heifer, a goat, and a ram, each three years old, along with 10 a turtledove and a young pigeon.” 11 So Abram brought all these to Him, split each of them down the middle, and laid the halves op- posite each other. The birds, however, he did not And the birds of prey descended on cut in half. the carcasses, but Abram drove them away. As Great Trees the sun was setting, Abram fell into a deep sleep, c 13 berit 12 That is, the Valley of the Dead Sea e 5 f 6 translated in most passages as Cited in" + }, + { + "verseNum": 17, + "text": ". Hebrew d 11 Ishmael El-Shaddai means 18 |" + }, + { + "verseNum": 18, + "text": "covenant. d 18 Or El-Elyon or Hebrew Forms of the Hebrew ; also in verses 19, 20, and 22; cited in" + }, + { + "verseNum": 22, + "text": "," + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 6, + "text": "–11) 25 3 2 Now there was a man of the Pharisees named Nicodemus, a leader of the Jews. He came to Jesus at night and said, “Rabbi, we know that You are a teacher who has come from God. For no one could perform the signs You are doing 3 if God were not with him.” c Jesus replied, “Truly, truly, I tell you, no one can ” 4 see the kingdom of God unless he is born again. “How can a man be born when he is old?” Nico- demus asked. “Can he enter his mother’s womb a 5 second time to be born?” Jesus answered, “Truly, truly, I tell you, no one a 14 can enter the kingdom of God unless he is born of the temple b 17 you Literally nal life in Him. for is plural; also in verse 12. g 16 ; also in verse 15 only begotten" + }, + { + "verseNum": 12, + "text": "–21) and they were not ashamed. c 3 was more crafty than any Now the serpent beast of the field that the LORD God had made. And he said to the woman, “Did God really say, ‘You must not eat from any tree in the 2 garden?’ ” 3 The woman answered the serpent, “We may eat the fruit of the trees of the garden, but about the fruit of the tree in the middle of the garden, God has said, ‘You must not eat of it or touch it, or you 4 will die.’ ” 5 “You will not surely die,” the serpent told the woman. “For God knows that in the day you eat of it, your eyes will be opened and you will be like 6 God, knowing good and evil.” When the woman saw that the tree was good for food and pleasing to the eyes, and that it was desirable for obtaining wisdom, she took the fruit and ate it. She also gave some to her hus- 7 band who was with her, and he ate it. And the eyes of both of them were opened, and they knew that they were naked; so they sewed together fig leaves and made coverings for God Arraigns Adam and Eve themselves. 8 d Then the man and his wife heard the voice of the LORD God walking in the garden in the breeze of the day, and they hid themselves from the presence of the LORD God among the trees of 9 the garden. But the LORD God called out to the man, “Where b 24 a 21 are you?” Or took part of the man’s side nachash unto the Ruach snake at the breezy (time) 10:7–8, 1 Cor. 6:16, and Eph. 5:31 crush bruise d 8 c 1 ; similarly in v. 22 Hebrew strike ; Hebrew , or . Or The same Heb. root f" + }, + { + "verseNum": 14, + "text": "| 1011 10 25 Abraham’s faith was credited to him as right- In what context was it credited? Was eousness. it after his circumcision, or before? It was not 11 after, but before. a who believe in Him who raised Jesus our Lord He was delivered over to death from the dead. for our trespasses and was raised to life for our The Triumph of Faith justification. 12 And he received the sign of circumcision as a seal of the righteousness that he had by faith while he was still uncircumcised. So then, he is the father of all who believe but are not circum- cised, in order that righteousness might be cred- And he is also the father of the ited to them. circumcised who not only are circumcised, but who also walk in the footsteps of the faith that our father Abraham had before he was Abraham Receives the Promise circumcised." + }, + { + "verseNum": 15, + "text": "15 16 But the gift is not like the trespass. For if the many died by the trespass of the one man, how much more did God’s grace and the gift that came by the grace of the one man, Jesus Christ, abound Again, the gift is not like the result to the many! of the one man’s sin: The judgment that followed one sin brought condemnation, but the gift that 17 followed many trespasses brought justification. For if, by the trespass of the one man, death reigned through that one man, how much more will those who receive the abundance of grace and of the gift of righteousness reign in life 18 through the one man, Jesus Christ! So then, just as one trespass brought condem- nation for all men, so also one act of righteous- 19 ness brought justification and life for all men. For just as through the disobedience of the one man the many were made sinners, so also through the obedience of the one man the many 20 will be made righteous. 21 The law came in so that the trespass would in- crease; but where sin increased, grace increased all the more, so that, just as sin reigned in death, so also grace might reign through right- eousness to bring eternal life through Jesus Dead to Sin, Alive to God (2 Cor. 4:7–18) Christ our Lord. 6 2 4 3 What then shall we say? Shall we continue in Certainly sin so that grace may increase? not! How can we who died to sin live in it any longer? Or aren’t you aware that all of us who were baptized into Christ Jesus were baptized We were therefore buried with into Hi" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–14) b 7 8 Now we have this treasure in jars of clay to show that this surpassingly great power is from We are hard pressed on all God and not from us. sides, but not crushed; perplexed, but not in des- persecuted, but not forsaken; struck pair; 10 down, but not destroyed. 9 11 We always carry around in our body the death of Jesus, so that the life of Jesus may also be re- For we who are alive are vealed in our body. always consigned to death for Jesus’ sake, so that the life of Jesus may also be revealed in our mor- tal body. So then, death is at work in us, but life 13 is at work in you. 12 c 14 And in keeping with what is written, “I be- lieved, therefore I have spoken,” we who have the same spirit of faith also believe and therefore d knowing that the One who raised the speak, will also raise us with Jesus and pre- Lord Jesus sent us with you in His presence. All this is for your benefit, so that the grace that is extending to more and more people may cause thanksgiv- 16 ing to overflow, to the glory of God. 15 18 17 Therefore we do not lose heart. Though our outer self is wasting away, yet our inner self is For our light and being renewed day by day. momentary affliction is producing for us an eter- nal weight of glory that is far beyond compari- son. So we fix our eyes not on what is seen, but on what is unseen. For what is seen is temporary, Our Eternal Dwelling" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–6) ceive the promise of the Spirit. 15 Brothers, let me put this in human terms. Even 16 a human covenant, once it is ratified, cannot be The promises were spo- canceled or amended. ken to Abraham and to his seed. The Scripture does not say, “and to seeds,” meaning many, but 17 “and to your seed,” meaning One, who is Christ. j 18 What I mean is this: The law that came 430 years later does not revoke the covenant previ- ously established by God, so as to nullify the For if the inheritance depends on the promise. law, then it no longer depends on a promise; but God freely granted it to Abraham through a promise. 2 O foolish Galatians! Who has bewitched you? Before your very eyes Jesus Christ was I would like to clearly portrayed as crucified. a 9 learn just one thing from you: Did you receive the c 6 f 11 i 14 That is, Peter; also in verses 11 and 14 g 12" + }, + { + "verseNum": 7, + "text": "and" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 9, + "text": "–11 ;" + }, + { + "verseNum": 11, + "text": "| 1013 20 And if I do what I do evil I do not want to do. not want, it is no longer I who do it, but it is sin 21 living in me that does it. 22 23 So this is the principle I have discovered: When I want to do good, evil is right there with me. For in my inner being I delight in God’s law. But I see another law at work in my body, warring against the law of my mind and holding b me captive to the law of sin that dwells within 24 me. 25 What a wretched man I am! Who will rescue Thanks be to God, me from this body of death? through Jesus Christ our Lord! So then, with my mind I serve the law of God, but Walking by the Spirit with my flesh I serve the law of sin." + }, + { + "verseNum": 12, + "text": "Heirs with Christ 12 Therefore, brothers, we have an obligation, 13 but it is not to the flesh, to live according to it. For if you live according to the flesh, you will 14 die; but if by the Spirit you put to death the deeds For all who are led by of the body, you will live. 15 the Spirit of God are sons of God. 16 For you did not receive a spirit of slavery that returns you to fear, but you received the Spirit of adoption to sonship, by whom we cry, “Abba! The Spirit Himself testifies with our Father!” And if we are spirit that we are God’s children. children, then we are heirs: heirs of God and co- heirs with Christ—if indeed we suffer with Him, Future Glory (2 Corinthians 5:1–10) so that we may also be glorified with Him. 18 17 20 I consider that our present sufferings are not 19 comparable to the glory that will be revealed in us. The creation waits in eager expectation for For the crea- the revelation of the sons of God. tion was subjected to futility, not by its own will, 21 but because of the One who subjected it, in hope that the creation itself will be set free from its bondage to decay and brought into the glorious 22 freedom of the children of God. 23 We know that the whole creation has been groaning together in the pains of childbirth until the present time. Not only that, but we our- selves, who have the firstfruits of the Spirit, groan inwardly as we wait eagerly for our adop- For tion as sons, the redemption of our bodies. in this hope we were saved; but hope" + }, + { + "verseNum": 18, + "text": "–27) but what is unseen is eternal. 5 2 For we know that if the earthly tent we live in is dismantled, we have a building from God, an eternal house in heaven, not built by hu- For in this tent we groan, longing to man hands. because be clothed with our heavenly dwelling, 4 when we are clothed, we will not be found naked. For while we are in this tent, we groan under our burdens, because we do not wish to be un- a 6 clothed but clothed, so that our mortality may be e 17 b 6 a new creature in the face of Christ a sin offering f 21 3 2 Corinthians 5:21 | 1037 5 And it is God who has pre- swallowed up by life. pared us for this very purpose and has given us 6 the Spirit as a pledge of what is to come. 8 7 Therefore we are always confident, although we know that while we are at home in the body, For we walk by we are away from the Lord. faith, not by sight. We are confident, then, and 9 would prefer to be away from the body and at So we aspire to please Him, home with the Lord. whether we are at home in this body or away For we must all appear before the judg- from it. ment seat of Christ, that each one may receive his due for the things done in the body, whether Ambassadors for Christ good or bad. 11 10 12 Therefore, since we know what it means to fear the Lord, we try to persuade men. What we are is clear to God, and I hope it is clear to your We are not commending conscience as well. ourselves to you again. Instead, we are giving you an occasion to be proud of us, so that you" + }, + { + "verseNum": 28, + "text": "–34) 3 4 5 Blessed be the God and Father of our Lord Jesus Christ, who has blessed us in Christ with every For He spiritual blessing in the heavenly realms. chose us in Him before the foundation of the world to be holy and blameless in His presence. He predestined us for adoption as His In love sons through Jesus Christ, according to the good to the praise of His glorious pleasure of His will, grace, which He has freely given us in the Be- 7 loved One. 6 In Him we have redemption through His blood, 8 the forgiveness of our trespasses, according to 9 that He lavished on us the riches of His grace with all wisdom and understanding. And He has made known to us the mystery of His will accord- ing to His good pleasure, which He purposed in as a plan for the fullness of time, to bring Christ all things in heaven and on earth together in 11 Christ. 10 12 In Him we were also chosen as God’s own, hav- ing been predestined according to the plan of Him who works out everything by the counsel of in order that we, who were the first to His will, hope in Christ, would be for the praise of His 13 glory. And in Him, having heard and believed the word of truth—the gospel of your salvation— 14 you were sealed with the promised Holy Spirit, who is the pledge of our inheritance until the redemption of those who are God’s possession, a 1 to the praise of His glory. in Ephesus b 18 Some manuscripts do not include . TR 16 For this reason, ever since I heard about your faith in the Lord Jesus and yo" + }, + { + "verseNum": 35, + "text": "–39) For the choirmaster. A Maskil c of the sons of Korah. I say to God my Rock, “Why have You forgotten me? 10 Why must I walk in sorrow because of the enemy’s oppression?” Like the crushing of my bones, my enemies taunt me, while they say to me all day long, a 1 “Where is your God?” We have heard with our ears, O God; our fathers have told us the work You did in their days, 2 in the days of old. With Your hand You drove out the nations and planted our fathers there; You crushed the peoples and cast them out. and see the face of God? Maskil b 2 c 1 Maskil In many Hebrew manuscripts Psalms 42 and 43 constitute one psalm. used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. musical or liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. Or is probably a musical or liturgical term; is probably a 3 20 For it was not by their sword that they took 21 If we had forgotten the name of our God the land; or spread out our hands to a foreign god, their arm did not bring them victory. 22 would not God have discovered," + }, + { + "verseNum": 36, + "text": "and 142. Or ; similarly in verse 7 Cited is probably a musical or liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, Literally g 7 or Or ; here and throughout Psalm 45 Cited in" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 6, + "text": "–29) 1 2 a This is the burden of the word of the LORD to Israel through Malachi: “I have loved you,” says the LORD. But you ask, “How have You loved us?” 3 b “Was not Esau Jacob’s brother?” declares the but Esau I have LORD. “Yet Jacob I have loved, and I have made his mountains a waste- hated, c land and left his inheritance to the desert jack- 4 als. ” 5 Though Edom may say, “We have been devas- tated, but we will rebuild the ruins,” this is what the LORD of Hosts says: “They may build, but I will demolish. They will be called the Land of Wickedness, and a people with whom the LORD You will see this with your is indignant forever. own eyes, and you yourselves will say, ‘The LORD is great—even beyond the borders of The Polluted Offerings Israel.’ 6 ” “A son honors his father, and a servant his mas- ter. But if I am a father, where is My honor? And if I am a master, where is your fear of Me?” says the LORD of Hosts to you priests who despise My name. 7 “But you ask, ‘How have we despised Your name?’ By presenting defiled food on My altar. d But you ask, ‘How have we defiled You ?’ By saying that the table of the LORD is contempt- 8 ible. When you offer blind animals for sacrifice, is it not wrong? And when you present the lame and sick ones, is it not wrong? Try offering them to your governor! Would he be pleased with you or 9 show you favor?” asks the LORD of Hosts. “But ask now for God’s favor. Will He be gra- cious? Since this has come from your hands, will My messenger a" + }, + { + "verseNum": 7, + "text": "and" + }, + { + "verseNum": 9, + "text": "Far be it from You to do ones who are there? such a thing—to kill the righteous with the wicked, so that the righteous and the wicked are treated alike. Far be it from You! Will not the 26 Judge of all the earth do what is right?” So the LORD replied, “If I find fifty righteous ones within the city of Sodom, on their account I 27 will spare the whole place.” 28 Then Abraham answered, “Now that I have ventured to speak to the Lord—though I am but suppose the fifty righteous dust and ashes— ones lack five. Will You destroy the whole city for the lack of five?” He replied, “If I find forty-five there, I will not de- 29 stroy it.” Once again Abraham spoke to the LORD, “Sup- pose forty are found there?” He answered, “On account of the forty, I will not 30 do it.” Then Abraham said, “May the Lord not be an- gry, but let me speak further. Suppose thirty are found there?” 31 He replied, “If I find thirty there, I will not do it.” And Abraham said, “Now that I have ventured to speak to the Lord, suppose twenty are found there?” He answered, “On account of the twenty, I will 32 not destroy it.” Finally, Abraham said, “May the Lord not be angry, but let me speak once more. Suppose ten are found there?” And He answered, “On account of the ten, I will 33 not destroy it.” When the LORD had finished speaking with Abraham, He departed, and Abraham returned Lot Welcomes the Angels" + }, + { + "verseNum": 12, + "text": "sounds like a Hebrew term a out grasping Esau’s heel; so he was named Ja- cob. And Isaac was sixty years old when the 27 twins were born. 28 When the boys grew up, Esau became a skillful hunter, a man of the field, while Jacob was a quiet Because Isaac had a man who stayed at home. taste for wild game, he loved Esau; but Rebekah Esau Sells His Birthright loved Jacob. 29 One day, while Jacob was cooking some stew, 30 Esau came in from the field and was famished. He said to Jacob, “Let me eat some of that red stew, for I am famished.” (That is why he was also 31 called Edom. 32 “First sell me your birthright,” Jacob replied. ) b “Look,” said Esau, “I am about to die, so what 33 good is a birthright to me?” “Swear to me first,” Jacob said. 34 So Esau swore to Jacob and sold him the birth- Then Jacob gave some bread and lentil right. stew to Esau, who ate and drank and then got up and went away. Thus Esau despised his birth- God’s Promise to Isaac" + }, + { + "verseNum": 13, + "text": "Or 10 “Oh, that one of you would shut the temple doors, so that you would no longer kindle useless fires on My altar! I take no pleasure in you,” says the LORD of Hosts, “and I will accept no offering 11 from your hands. For My name will be great among the nations, from where the sun rises to where it sets. In every place, incense and pure offerings will be presented in My name, because My name will be great among the nations,” says the LORD of “But you profane it when you say, ‘The Hosts. table of the Lord is defiled, and as for its fruit, its 13 food is contemptible.’ 12 You also say: ‘Oh, what a nuisance!’ And you turn up your nose at it,” says the LORD of Hosts. “You bring offerings that are stolen, lame, or sick! Should I accept these from your hands?” asks the 14 LORD. “But cursed is the deceiver who has an ac- ceptable male in his flock and vows to give it, but sacrifices a defective animal to the Lord. For I am a great King,” says the LORD of Hosts, “and My A Warning to the Priests name is to be feared among the nations. 2 2 “And now this decree is for you, O priests: If you do not listen, and if you do not take it to heart to honor My name,” says the LORD of Hosts, “I will send a curse among you, and I will curse your blessings. Yes, I have already begun to curse them, because you are not taking it to 3 heart. e Behold, I will rebuke your descendants, and I will spread dung on your faces, the waste from 4 your feasts, and you will be carried off with it. Then you wil" + }, + { + "verseNum": 15, + "text": "Hebrew Forms of the Hebrew are translated in most passages as . 88 |" + }, + { + "verseNum": 17, + "text": "18 19 Behold, at this time tomorrow I will rain down the worst hail that has ever fallen on Egypt, from So give the day it was founded until now. orders now to shelter your livestock and every- thing you have in the field. Every man or beast that remains in the field and is not brought inside 20 ” will die when the hail comes down upon them.’ Those among Pharaoh’s officials who feared the word of the LORD hurried to bring their servants and livestock to shelter, but those who disregarded the word of the LORD left their 22 servants and livestock in the field. 21 Then the LORD said to Moses, “Stretch out your hand toward heaven, so that hail may fall on all the land of Egypt—on man and beast and every plant of the field throughout the land of 23 Egypt.” 24 So Moses stretched out his staff toward heaven, and the LORD sent thunder and hail, and lightning struck the earth. So the LORD rained The hail fell down hail upon the land of Egypt. and the lightning continued flashing through it. The hail was so severe that nothing like it had ever been seen in all the land of Egypt from the 25 time it became a nation. 26 Throughout the land of Egypt, the hail struck down everything in the field, both man and beast; it beat down every plant of the field and The only place where it stripped every tree. did not hail was in the land of Goshen, where the 27 Israelites lived. Then Pharaoh summoned Moses and Aaron. “This time I have sinned,” he said. “The LORD is 28 righteous, and I and my people" + }, + { + "verseNum": 20, + "text": "642 |" + }, + { + "verseNum": 25, + "text": "and" + }, + { + "verseNum": 26, + "text": "Hebrew your path 10 19 And then I will expose her lewdness So I will betroth you to Me forever;" + }, + { + "verseNum": 29, + "text": "Or 618 |" + }, + { + "verseNum": 33, + "text": "and" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "–21) and afflict us beyond measure? 65 “I revealed Myself to those who did not ask for Me; b This is what the LORD says: “As the new wine is found in a cluster of grapes, and men say, ‘Do not destroy it, for it contains a blessing,’ so I will act on behalf of My servants; 9 I will not destroy them all. And I will bring forth descendants from Jacob, and heirs from Judah; d 10 My elect will possess My mountains, and My servants will dwell there. Sharon will become a pasture for flocks, and the Valley of Achor a resting place for 11 herds, for My people who seek Me. I was found by those who did not seek But you who forsake the LORD, e Me. To a nation that did not call My name, 2 I said, ‘Here I am! Here I am!’ All day long I have held out My hands c to an obstinate people who walk in the wrong path, 3 who follow their own imaginations, to a people who continually provoke Me to My face, 4 sacrificing in the gardens and burning incense on altars of brick, sitting among the graves, spending nights in secret places, eating the meat of pigs 5 and polluted broth from their bowls. They say, ‘Keep to yourself; do not come near me, for I am holier than you!’ Such people are smoke in My nostrils, 6 a fire that burns all day long. Behold, it is written before Me: who forget My holy mountain, f 12 who set a table for Fortune and fill bowls of mixed wine for Destiny, I will destine you for the sword, and you will all kneel down to be slaughtered, because I called and you did not answer, I sp" + }, + { + "verseNum": 5, + "text": "and" + }, + { + "verseNum": 6, + "text": "f 12 Or g 13 restore your fortunes d 4 to the extremity of the heavens h 14 Or See" + }, + { + "verseNum": 7, + "text": ". Cited in" + }, + { + "verseNum": 8, + "text": "31 God may bless you in the land that you are enter- 17 ing to possess. But if your heart turns away and you do not lis- 18 ten, but are drawn away to bow down to other gods and worship them, I declare to you today that you will surely perish; you shall not prolong your days in the land that you are crossing the 19 Jordan to possess. I call heaven and earth as witnesses against you today that I have set before you life and death, blessing and cursing. Therefore choose 20 life, so that you and your descendants may live, and that you may love the LORD your God, obey Him, and hold fast to Him. For He is your life, and He will prolong your life in the land that the LORD swore to give to your fathers, to Abra- Joshua to Succeed Moses" + }, + { + "verseNum": 11, + "text": ", and" + }, + { + "verseNum": 13, + "text": "their strength billows the LORD judges c 22 e 30 glorious ; LXX or Or j 5 means ; also in verse 12. Or Or 820 |" + }, + { + "verseNum": 15, + "text": "i 1 LXX at You" + }, + { + "verseNum": 16, + "text": "LXX k 5 j 4 Cited in" + }, + { + "verseNum": 18, + "text": "Or their measuring b 4 You cheer him with joy in Your presence. LXX, Syriac, and Vulgate; Hebrew 506 |" + }, + { + "verseNum": 19, + "text": "Hebrew; LXX LXX; Hebrew ; cited in" + }, + { + "verseNum": 20, + "text": "LXX Meni f 11 have made us melt in the hand Hebrew ; cited in" + }, + { + "verseNum": 21, + "text": ", the Babylonian god of fortune Or Hebrew , the Babylonian god of fate and the Lord GOD will slay you; but the food of the serpent will be dust." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 3, + "text": "; here and in verse 14 Or ; see 2 Kings 9:14. Cited in" + }, + { + "verseNum": 4, + "text": "Some texts break verse 2 and begin verse 3 at this point. 334 | 1 Kings 20:11 severely, if enough dust remains of Samaria for 11 each of my men to have a handful.” And the king of Israel replied, “Tell him: ‘The one putting on his armor should not boast like 12 one taking it off.’ ” a Ben-hadad received this message while he and the kings were drinking in their tents, and he said to his servants, “Take your positions.” So Ahab Defeats Ben-hadad they stationed themselves against the city. 13 Meanwhile a prophet approached Ahab king of Israel and declared, “This is what the LORD says: ‘Do you see this entire great army? Behold, I will deliver it into your hand this very day, and you 14 will know that I am the LORD.’ ” “By whom?” Ahab asked. And the prophet replied, “This is what the LORD says: ‘By the young officers of the district gover- nors.’ ” “Who will start the battle?” asked Ahab. 15 “You will,” answered the prophet. So Ahab assembled the young officers of the district governors, and there were 232 men. And after them, he assembled the rest of the Israelite 16 troops, 7,000 in all. 17 They marched out at noon while Ben-hadad and the 32 kings allied with him were in their tents getting drunk. And the young officers of the district governors marched out first. Now Ben-hadad had sent out scouts, who reported to him, “Men are marching out of 18 Samaria.” “If they have marched out in peace,” he said, “take them alive. Even if they have marched out 19 for war, take them alive." + }, + { + "verseNum": 9, + "text": "Cited in" + }, + { + "verseNum": 10, + "text": "; cited in" + }, + { + "verseNum": 26, + "text": "Cited in Rom. 11:27 Literally Or Or Or or or to adorn the place of My sanctuary, 14 The and I will glorify the place of My feet. sons of your oppressors will come and bow down to you; all who reviled you will fall facedown at your feet and call you the City of the LORD, Zion of the Holy One of Israel. 15 Whereas you have been forsaken and despised, with no one passing through, I will make you an everlasting pride, 16 a joy from age to age. You will drink the milk of nations and nurse at the breasts of royalty; you will know that I, the LORD, am your Savior 17 and your Redeemer, the Mighty One of Jacob. Instead of bronze I will bring you gold; I will bring silver in place of iron, bronze instead of wood, and iron instead of stones. 18 I will appoint peace as your governor and righteousness as your ruler. No longer will violence be heard in your land, nor ruin or destruction within your borders. But you will name your walls Salvation 19 and your gates Praise. No longer will the sun be your light by day, nor the brightness of the moon shine on a your night; b 20 for the LORD will be your everlasting light, and your God will be your splendor. Your sun will no longer set, and your moon will not wane; 21 for the LORD will be your everlasting light, and the days of your sorrow will cease. Then all your people will be righteous; they will possess the land forever; they are the branch of My planting, 22 the work of My hands, so that I may be glorified. The least of you will become a t" + }, + { + "verseNum": 27, + "text": "11 8" + }, + { + "verseNum": 33, + "text": "–36) but the word of our God stands forever.” 9 Go up on a high mountain, O Zion, herald of good news. Raise your voice loudly, f O Jerusalem, herald of good news. Lift it up, do not be afraid! A voice of one calling in the wilderness: “Prepare the way for the LORD But Hezekiah said to Isaiah, “The word of a 3 the LORD that you have spoken is good.” For he c 4 shall be brought low. All the crooked ways shall become straight, and the rough places plains. cited in" + }, + { + "verseNum": 34, + "text": "and 1 Corinthians 2:16 from the east, whom victory meets at every step righteousness Or f 2 652 |" + }, + { + "verseNum": 35, + "text": "Hebrew Or His chest is as hard as a rock, as hard as a lower millstone! 25 When Leviathan rises up, the mighty are 26 terrified; they withdraw before his thrashing. The sword that reaches him has no effect, nor does the spear or dart or arrow. poplars d 22 c 21 ways bramble bushes Who can come within his double mail? Or ; also in verse 22 Or 496 |" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "–8 ; 1 Corinthians 6:18–20) 15 16 f 17 Do you not know that you yourselves are God’s temple, and that God’s Spirit dwells in If anyone destroys God’s temple, God will destroy him; for God’s temple is holy, and you are that 18 temple. you? Let no one deceive himself. If any of you thinks he is wise in this age, he should become a fool, so d 16 c 13 For the wisdom of that he may become wise." + }, + { + "verseNum": 8, + "text": "| 1017 30 c Just as you who formerly disobeyed God have 31 now received mercy through their disobedience, so they too have now disobeyed, in order that 32 they too may now receive mercy through the For God has consigned mercy shown to you. everyone to disobedience so that He may have A Hymn of Praise mercy on everyone." + }, + { + "verseNum": 9, + "text": "–13 ; 1" + }, + { + "verseNum": 14, + "text": "–21) there am I with them.” 21 20 Then Peter came to Jesus and asked, “Lord, how many times shall I forgive my brother who 22 sins against me? Up to seven times?” a Jesus answered, “I tell you, not just seven 23 times, but seventy-seven times! b 24 25 As he began Because of this, the kingdom of heaven is like a king who wanted to settle accounts with his the settlements, servants. a debtor owing ten thousand talents was brought Since the man was unable to pay, the to him. master ordered that he be sold to pay his debt, along with his wife and children and everything 26 he owned. Then the servant fell on his knees before him. ‘Have patience with me,’ he begged, ‘and I will 27 pay back everything.’ His master had compassion on him, forgave his 28 debt, and released him. c But when that servant went out, he found one of his fellow servants who owed him a hundred denarii. He grabbed him and began to choke 29 him, saying, ‘Pay back what you owe me!’ So his fellow servant fell down and begged him, ‘Have patience with me, and I will pay you 30 back.’ But he refused. Instead, he went and had the man thrown into prison until he could pay his 31 debt. 33 Then the master summoned him and said, ‘You wicked servant! I forgave all your debt because Shouldn’t you have had mercy you begged me. In on your fellow servant, just as I had on you?’ anger his master turned him over to the jailers to be tortured, until he should repay all that he 35 owed. 34 That is how My heavenly Father will treat" + }, + { + "verseNum": 19, + "text": "and" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–7) deeds and glorify God on the day He visits us. 13 14 Submit yourselves for the Lord’s sake to every human institution, whether to the king as the su- preme authority, or to governors as those sent by him to punish those who do wrong and to praise those who do right. For it is God’s will that by doing good you should silence the igno- a 6 rance of foolish men. f 18 in all fear h 24 g 22 b 7 c 8 15 16 Live in freedom, but do not use your freedom 17 as a cover-up for evil; live as servants of God. e Treat everyone with high regard: Love the fear God, honor the brotherhood of believers, 18 king. f 19 20 Servants, submit yourselves to your masters with all respect, not only to those who are good and gentle, but even to those who are unreason- able. For if anyone endures the pain of unjust suffering because he is conscious of God, this is How is it to your credit if to be commended. you are beaten for doing wrong and you endure it? But if you suffer for doing good and you en- Christ’s Example of Suffering" + }, + { + "verseNum": 8, + "text": "–10) must be cut off from his people. 9 10 When you reap the harvest of your land, you are not to reap to the very edges of your field or gather the gleanings of your harvest. You must not strip your vineyard bare or gather its fallen grapes. Leave them for the poor and the for- 11 eigner. I am the LORD your God. You must not steal. You must not lie or deceive 12 one another. You must not swear falsely by My name and so 13 profane the name of your God. I am the LORD. You must not defraud your neighbor or rob him. You must not withhold until morning the wages 14 due a hired hand. But you are to keep My statutes and ordi- nances, and you must not commit any of these to make them pass through (the fire) a 21 abominations—neither your native-born nor the b 2 You must not curse the deaf or place a stum- bling block before the blind, but you shall fear your God. I am the LORD. Hebrew Cited in" + }, + { + "verseNum": 9, + "text": ", and" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "–12) 36 Looking up at His disciples, Jesus said: 37 21 “Blessed are you who are poor, for yours is the kingdom of God. Blessed are you who hunger now, for you will be filled. Blessed are you who weep now, 22 for you will laugh. Blessed are you when people hate you, and when they exclude you and insult you and reject 23 your name as evil because of the Son of Man. Rejoice in that day and leap for joy, because great is your reward in heaven. For their fathers treated the prophets in the same way. 38 Do not judge, and you will not be judged. Do not condemn, and you will not be condemned. Give, and it Forgive, and you will be forgiven. will be given to you. A good measure, pressed down, shaken together, and running over will be poured into your lap. For with the measure you 39 use, it will be measured back to you.” 40 Jesus also told them a parable: “Can a blind man lead a blind man? Will they not both fall into a pit? A disciple is not above his teacher, but everyone who is fully trained will be like his teacher. 924 |" + }, + { + "verseNum": 11, + "text": "That is, the 3 Your nakedness will be uncovered and your shame will be exposed. 14 your astrologers who observe the stars, who monthly predict your fate." + }, + { + "verseNum": 13, + "text": "–23 ; 1 Corinthians 8:1–13) 14 2 Then some of the elders of Israel came 3 And the word and sat down before me. “Son of man, of the LORD came to me, saying, these men have set up idols in their hearts and put wicked stumbling blocks before their faces. 4 Should I consult with them in any way? Therefore speak to them and tell them that this is what the Lord GOD says: ‘When any Israelite sets up idols in his heart and puts a wicked stum- bling block before his face, and then comes to the prophet, I the LORD will answer him according so that I may take hold of to his great idolatry, the hearts of the people of Israel. For because of 6 their idols, they are all estranged from Me.’ 5 7 Therefore tell the house of Israel that this is what the Lord GOD says: ‘Repent and turn away from your idols; turn your faces away from all For when any Israelite or your abominations. any foreigner dwelling in Israel separates him- self from Me, sets up idols in his heart, and puts a wicked stumbling block before his face, and then comes to the prophet to inquire of Me, I the I will set My face LORD will answer him Myself. against that man and make him a sign and a prov- erb; I will cut him off from among My people. 9 Then you will know that I am the LORD. 8 10 But if the prophet is enticed to speak a message, then it was I the LORD who enticed him, and I will stretch out My hand against him and destroy him from among My people Israel. They will bear their punishment—the punishment of the in- 11 qu" + }, + { + "verseNum": 23, + "text": "or 1 Corinthians Greetings from Paul and Sosthenes" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 3, + "text": "retreat because of their shame. d 23 and may their loins A slight revocalization of the Hebrew (see also LXX, Syriac, LXX; Hebrew ; cited in" + }, + { + "verseNum": 9, + "text": "is probably a variant of a 46 c 1 Hachmonite the one anointed by the God of Jacob, and the sweet psalmist of Israel: the hero of the songs of Israel Some LXX manuscripts and Vulgate (see also" + }, + { + "verseNum": 11, + "text": "Praise the LORD Psalm 118 The LORD Is on My Side 1 2 Give thanks to the LORD, for He is good; His loving devotion endures forever. a Let Israel 3 say, “His loving devotion endures forever.” Let the house of Aaron say, 4 “His loving devotion endures forever.” Let those who fear the LORD say, “His loving devotion endures forever.” 5 In my distress I called to the LORD, b 6 and He answered and set me free. c The LORD is on my side; 7 I will not be afraid. What can man do to me? The LORD is on my side; He is my helper. 8 Therefore I will look in triumph on those 26 who hate me. It is better to take refuge in the LORD 9 than to trust in man. It is better to take refuge in the LORD 10 than to trust in princes. 11 All the nations surrounded me," + }, + { + "verseNum": 12, + "text": ". the River LXX j 15 That is, the That is, the northern kingdom of Israel The infant will play by the cobra’s den, and the toddler will reach into the a 6 who will arise to rule over the Gentiles; in Him the Gentiles will put their hope the young calf and bull and lion will feed together viper’s nest. d 11 Hebrew; LXX e 11 coastlands hostility g 13 upper Nile region h 15 will completely dry up That is, Babylonia i 15 Or Or Or Hebrew Hebrew 628 |" + }, + { + "verseNum": 13, + "text": "13 Now may the God of hope fill you with all joy and peace as you believe in Him, so that you may overflow with hope by the power of the Holy Paul the Minister to the Gentiles Spirit. 14 16 I myself am convinced, my brothers, that you yourselves are full of goodness, brimming with 15 knowledge, and able to instruct one another. However, I have written you a bold reminder on some points, because of the grace God has to be a minister of Christ Jesus to the given me Gentiles in the priestly service of the gospel of God, so that the Gentiles might become an offer- ing acceptable to God, sanctified by the Holy 17 Spirit. 18 Therefore I exult in Christ Jesus in my service I will not presume to speak of anything to God. except what Christ has accomplished through me 19 in leading the Gentiles to obedience by word and by the power of signs and wonders, and deed, by the power of the Spirit of God. So from Jeru- salem all the way around to Illyricum, I have fully 20 proclaimed the gospel of Christ. a In this way I have aspired to preach the gospel where Christ was not known, so that I would not Ra- be building on someone else’s foundation. ther, as it is written: 21 “Those who were not told about Him will see, b and those who have not heard will 22 understand.” That is why I have often been hindered from Paul’s Travel Plans coming to you. (1 Corinthians 16:5–9) 23 24 But now that there are no further opportuni- ties for me in these regions, and since I have longed for many years to vis" + }, + { + "verseNum": 21, + "text": "" + }, + { + "verseNum": 23, + "text": "–33) go also, they can travel with me. 5 6 After I go through Macedonia, however, I will come to you; for I will be going through Macedo- Perhaps I will stay with you awhile, or even nia. 7 spend the winter, so that you can help me on my For I do not want to see journey, wherever I go. you now only in passing; I hope to spend some But I will stay time with you, if the Lord permits. because a great in Ephesus until Pentecost, door for effective work has opened to me, even Timothy and Apollos" + }, + { + "verseNum": 33, + "text": ". SBL, BYZ, and TR include Some manuscripts place the text of verses 25–27 after" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 17, + "text": "–20) 9 But avoid foolish controversies, genealogies, ar- guments, and quarrels about the law, because 10 these things are pointless and worthless. 11 Reject a divisive man after a first and second knowing that such a man is cor- admonition, Final Remarks and Greetings rupt and sinful; he is self-condemned. 12 13 As soon as I send Artemas or Tychicus to you, make every effort to come to me at Nicopolis, Do because I have decided to winter there. your best to equip Zenas the lawyer and Apollos, 14 so that they will have everything they need. And our people must also learn to devote themselves to good works in order to meet the pressing needs of others, so that they will not be 15 unfruitful. All who are with me send you greetings. b Greet those who love us in the faith. Grace be with all of you. God’s Grace Brings Salvation 11 12 For the grace of God has appeared, bringing salvation to everyone. It instructs us to re- nounce ungodliness and worldly passions, and to 13 live sensible, upright, and godly lives in the pre- as we await the blessed hope and sent age, 14 glorious appearance of our great God and Savior He gave Himself for us to redeem Jesus Christ. us from all lawlessness and to purify for Himself a people for His own possession, zealous for 15 good deeds. Speak these things as you encourage and Heirs of Grace rebuke with all authority. Let no one despise you. 3 2 Remind the believers to submit to rulers and authorities, to be obedient and ready for to malign no one, a" + }, + { + "verseNum": 21, + "text": "–23) 7 Tychicus will tell you all the news about me. He 8 is a beloved brother, a faithful minister, and a fel- I have sent him to you low servant in the Lord. for this very purpose, that you may know about 9 us, and that he may encourage your hearts. With him I am sending Onesimus, our faithful and beloved brother, who is one of you. They will 10 tell you about everything here. 11 My fellow prisoner Aristarchus sends you greetings, as does Mark the cousin of Barnabas. You have already received instructions about Jesus, him: If he comes to you, welcome him. who is called Justus, also sends greetings. These are the only Jews among my fellow workers for the kingdom of God, and they have been a com- 12 fort to me. 13 Epaphras, who is one of you and a servant of Christ Jesus, sends you greetings. He is always wrestling in prayer for you, so that you may stand mature and fully assured in the full will of For I testify about him that he goes to God. great pains for you and for those at Laodicea and 14 Hierapolis. Luke, the beloved physician, and Demas send Signature and Final Instructions you greetings. (1 Cor. 16:19–24 ; 2 Thess. 3:16–18) 15 Greet the brothers in Laodicea, as well as Nym- 16 pha and the church that meets at her house. After this letter has been read among you, make sure that it is also read in the church of the Laodiceans, and that you in turn read the letter 17 from Laodicea. Tell Archippus: “See to it that you complete the 18 ministry you have received in the Lo" + }, + { + "verseNum": 25, + "text": "–27 here." + }, + { + "verseNum": 27, + "text": "| 1021 Greet Tryphena and Tryphosa, women who have worked hard in the Lord. Greet my beloved Persis, who has worked very 13 hard in the Lord. Greet Rufus, chosen in the Lord, and his 14 mother, who has been a mother to me as well. Greet Asyncritus, Phlegon, Hermes, Patrobas, 15 Hermas, and the brothers with them. Greet Philologus and Julia, Nereus and his sis- 16 ter, and Olympas and all the saints with them. Greet one another with a holy kiss. Avoid Divisions All the churches of Christ send you greetings." + } + ] + } + ] + }, + { + "name": "Galatians", + "chapters": [ + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–10) 5 6 But some believers from the party of the Phari- sees stood up and declared, “The Gentiles must be circumcised and required to obey the law of Moses.” So the apostles and elders met to look 7 into this matter. 8 After much discussion, Peter got up and said to them, “Brothers, you know that in the early days God made a choice among you that the Gentiles would hear from my lips the message of the gos- And God, who knows the heart, pel and believe. showed His approval by giving the Holy Spirit to He made no distinc- them, just as He did to us. tion between us and them, for He cleansed their 10 hearts by faith. 9 Now then, why do you test God by placing on the necks of the disciples a yoke that neither we nor our fathers have been able to bear? On the contrary, we believe it is through the grace of the Lord Jesus that we are saved, just as they 12 are.” 11 a 14 13 The whole assembly fell silent as they listened to Barnabas and Paul describing the signs and wonders God had done among the Gen- When they had finished tiles through them. speaking, James declared, “Brothers, listen to has told us how God first visited me! the Gentiles to take from them a people to be His The words of the prophets agree with own. 16 this, as it is written: Simon 15 ‘After this I will return and rebuild the fallen tent of David. 17 Its ruins I will rebuild, and I will restore it, so that the remnant of men may seek the Lord, and all the Gentiles who are called 18 by My name, b 19 says the Lord w" + }, + { + "verseNum": 9, + "text": "9 a And recognizing the grace that I had been given, James, Cephas, and John—those reputed to be pillars—gave me and Barnabas the right hand of fellowship, so that we should go to the Gentiles, They only asked and they to the circumcised. us to remember the poor, the very thing I was ea- Paul Confronts Cephas ger to do. 11 10 12 When Cephas came to Antioch, however, I op- posed him to his face, because he stood con- demned. For before certain men came from James, he used to eat with the Gentiles. But when they arrived, he began to draw back and separate himself, for fear of those in the circumcision group. The other Jews joined him in his hypoc- risy, so that by their hypocrisy even Barnabas 14 was led astray. 13 When I saw that they were not walking in line with the truth of the gospel, I said to Cephas in front of them all, “If you, who are a Jew, live like a Gentile and not like a Jew, how can you 15 compel the Gentiles to live like Jews?” b 16 We who are Jews by birth and not Gentile “sin- know that a man is not justified by works ners” of the law, but by faith in Jesus Christ. So we, too, have believed in Christ Jesus, that we may be jus- tified by faith in Christ and not by works of the law, because by works of the law no one will be 17 justified. But if, while we seek to be justified in Christ, we ourselves are found to be sinners, does that make Christ a minister of sin? Certainly not! If I rebuild what I have already torn down, I prove 19 myself to be a lawbreaker. 1" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–9) judgment. 14 15 What good is it, my brothers, if someone claims to have faith, but has no deeds? Can such 16 Suppose a brother or sister is faith save him? If one of you without clothes and daily food. tells him, “Go in peace; stay warm and well fed,” but does not provide for his physical needs, what e So too, faith by itself, if it does not good is that? 18 result in action, is dead. 17 But someone will say, “You have faith and I have deeds.” Show me your faith without deeds, f You and I will show you my faith by my deeds. Good for you! Even the believe that God is one. 20 demons believe that—and shudder. 19 g 21 22 O foolish man, do you want evidence that faith without deeds is worthless? Was not our fa- ther Abraham justified by what he did when he You see that offered his son Isaac on the altar? his faith was working with his actions, and his And the faith was perfected by what he did. the noble name invoked upon you a 7 Scripture was fulfilled that says, “Abraham d 11 23 Or there is one God 20:14;" + }, + { + "verseNum": 6, + "text": ", and" + }, + { + "verseNum": 8, + "text": "Or or Cited in" + }, + { + "verseNum": 11, + "text": ", and h 3 Selah and stagger Interlude DSS, LXX, and Syriac is probably a musical term indicating the setting for the prayer. or is probably a musical or literary term; also in verses 9 and 13. His glory covered the heavens, 4 and His praise filled the earth. His radiance was like the sunlight; rays flashed from His hand, where His power is hidden. 5 Plague went before Him, 6 and fever followed in His steps. He stood and measured the earth; He looked and startled the nations; the ancient mountains crumbled; the perpetual hills collapsed. His ways are everlasting. 7 I saw the tents of Cushan in distress; 8 the curtains of Midian were trembling. Were You angry at the rivers, O LORD? Was Your wrath against the streams? Selah Did You rage against the sea 9 when You rode on Your horses, on Your chariots of salvation? You brandished Your bow; You called for many arrows. 10 You split the earth with rivers. The mountains saw You and quaked; 11 torrents of water swept by. The deep roared with its voice and lifted its hands on high. Sun and moon stood still in their places 12 at the flash of Your flying arrows, at the brightness of Your shining spear. 13 You marched across the earth with fury; You threshed the nations in wrath. You went forth for the salvation of Your people, to save Your anointed." + }, + { + "verseNum": 12, + "text": "; see also" + }, + { + "verseNum": 15, + "text": "–25) Lord. 7 3 Do you not know, brothers (for I am speak- ing to those who know the law), that the law 2 has authority over a man only as long as he lives? For instance, a married woman is bound by law to her husband as long as he lives. But if her husband dies, she is released from the law of So then, if she is joined to another marriage. man while her husband is still alive, she is called an adulteress; but if her husband dies, she is free from that law and is not an adulteress if she mar- ries another man. 4 5 Therefore, my brothers, you also died to the law through the body of Christ, that you might belong to another, to Him who was raised from the dead, For in order that we might bear fruit to God. when we lived according to the flesh, the sinful passions aroused by the law were at work in our But now, having bodies, bearing fruit for death. died to what bound us, we have been released from the law, so that we serve in the new way of the Spirit, and not in the old way of the written God’s Law Is Holy code. 7 6 a 8 What then shall we say? Is the law sin? Certainly not! Indeed, I would not have been mindful of sin if not for the law. For I would not have been aware of coveting if the law had not said, “Do not covet.” But sin, seizing its opportunity through the commandment, produced in me every kind of covetous desire. For apart from the law, sin is 9 dead. 10 Once I was alive apart from the law; but when the commandment came, sin sprang to life and I So I discovered that" + }, + { + "verseNum": 16, + "text": "14 15 16 So when Abram entered Egypt, the Egyptians When saw that the woman was very beautiful. Pharaoh’s officials saw Sarai, they commended her to him, and she was taken into the palace of He treated Abram well on her ac- Pharaoh. count, and Abram acquired sheep and cattle, male and female donkeys, menservants and 17 maidservants, and camels. 18 The LORD, however, afflicted Pharaoh and his household with severe plagues because of So Pharaoh summoned Abram’s wife Sarai. Abram and asked, “What have you done to me? Why didn’t you tell me she was your wife? Why did you say, ‘She is my sister,’ so that I took her as my wife? Now then, here is your wife. Take her 20 and go!” 19 Then Pharaoh gave his men orders concerning Abram, and they sent him away with his wife and Abram and Lot Part Ways all his possessions. 13 So Abram went up out of Egypt into the Negev—he and his wife and all his pos- And Abram sessions—and Lot was with him. had become extremely wealthy in livestock and 3 silver and gold. 2 4 From the Negev he journeyed from place to place toward Bethel, until he came to the place between Bethel and Ai where his tent had for- to the site where he had merly been pitched, built the altar. And there Abram called on the 5 name of the LORD. 6 Now Lot, who was traveling with Abram, also But the land was had flocks and herds and tents. unable to support both of them while they stayed together, for they had so many possessions that And there was dis- they were unable to coexist. c" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 27, + "text": "Or the light of life Cited in" + }, + { + "verseNum": 28, + "text": "28 a 29 Now you, brothers, like Isaac, are children of promise. At that time, however, the son born by the flesh persecuted the son born by the 30 Spirit. It is the same now. b 31 But what does the Scripture say? “Expel the slave woman and her son, for the slave woman’s son will never share in the inheritance with the free woman’s son.” Therefore, brothers, we are not children of the slave woman, but of the Freedom in Christ free woman. 5 It is for freedom that Christ has set us free. Stand firm, then, and do not be encumbered 2 once more by a yoke of slavery. 3 Take notice: I, Paul, tell you that if you let your- selves be circumcised, Christ will be of no value to you at all. Again I testify to every man who gets himself circumcised that he is obligated to obey the whole law. You who are trying to be justified by the law have been severed from 5 Christ; you have fallen away from grace. 4 6 But by faith we eagerly await through the Spirit the hope of righteousness. For in Christ Jesus neither circumcision nor uncircumcision has any value. What matters is faith expressing itself 7 through love. 8 9 10 You were running so well. Who has obstructed Such persuasion you from obeying the truth? A lit- does not come from the One who calls you. tle leaven works through the whole batch of I am confident in the Lord that you will dough. take no other view. The one who is troubling you 11 will bear the judgment, whoever he may be. Now, brothers, if I am still preaching circumci- sion, w" + }, + { + "verseNum": 30, + "text": "Hebrew; LXX Hebrew means or . 7 Then Isaac said to his father Abraham, “My father!” “Here I am, my son,” he replied. “The fire and the wood are here,” said Isaac, “but 8 where is the lamb for the burnt offering?” Abraham answered, “God Himself will provide the lamb for the burnt offering, my son.” And the 9 two walked on together. When they arrived at the place God had desig- nated, Abraham built the altar there and arranged the wood. He bound his son Isaac and Then placed him on the altar, atop the wood. Abraham reached out his hand and took the knife The LORD Provides the Sacrifice to slaughter his son. 11 10 a Just then the angel of the LORD called out to him from heaven, “Abraham, Abraham!” 12 “Here I am,” he replied. “Do not lay a hand on the boy or do anything to him,” said the angel, “for now I know that you fear God, since you have not withheld your only 13 son from me. c ” b 14 Then Abraham looked up and saw behind him a ram in a thicket, caught by its horns. So he went and took the ram and offered it as a burnt d And Abraham offering in place of his son. called that place The LORD Will Provide. So to this day it is said, “On the mountain of the LORD 15 it will be provided.” 16 17 And the angel of the LORD called to Abraham from heaven a second time, saying, “By Myself I have sworn, declares the LORD, that because you have done this and have not withheld your e I will surely bless you, and I will mul- only son, tiply your descendants like the stars in the sky and the" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 14, + "text": ", and" + }, + { + "verseNum": 16, + "text": "–26) 16 17 Again the word of the LORD came to me, say- ing, “Son of man, when the people of Israel lived in their land, they defiled it by their own ways and deeds. Their behavior before Me was 18 33" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 18, + "text": "| 1047 15 the world has been crucified to me, and I to the For neither circumcision nor uncircum- world. cision means anything. What counts is a new 16 creation. Peace and mercy to all who walk by this rule, 17 even to the Israel of God. From now on let no one cause me trouble, for 18 I bear on my body the marks of Jesus. The grace of our Lord Jesus Christ be with your spirit, brothers. cross of our Lord Jesus Christ, through which Amen. a 14 through whom Or Ephesians Paul’s Greeting to the Ephesians" + } + ] + } + ] + }, + { + "name": "Ephesians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–2 ;" + }, + { + "verseNum": 3, + "text": "–14) according to the will of God. 28 those He predestined, He also called; those He called, He also justified; those He justified, He 31 also glorified. 33 34 What then shall we say in response to these 32 things? If God is for us, who can be against us? He who did not spare His own Son but gave Him up for us all, how will He not also, along with Who will bring Him, freely give us all things? any charge against God’s elect? It is God who jus- tifies. Who is there to condemn us? For Christ Jesus, who died, and more than that was raised to life, is at the right hand of God—and He is More than Conquerors" + }, + { + "verseNum": 15, + "text": "–23) power. 6 5 7 Among the mature, however, we speak a mes- sage of wisdom—but not the wisdom of this age or of the rulers of this age, who are coming to a No, we speak of the mysterious and nothing. 8 which He destined for hidden wisdom of God, None of the rulers our glory before time began. of this age understood it. For if they had, they Ra- would not have crucified the Lord of glory. ther, as it is written: 9 “No eye has seen, no ear has heard, no heart has imagined, b what God has prepared for those who 10 love Him.” But God has revealed it to us by the Spirit. 11 12 The Spirit searches all things, even the deep For who among men knows the things of God. thoughts of man except his own spirit within him? So too, no one knows the thoughts of God We have not received except the Spirit of God. the spirit of the world, but the Spirit who is from God, that we may understand what God has And this is what we speak, not freely given us. in words taught us by human wisdom, but in c words taught by the Spirit, expressing spiritual 14 truths in spiritual words. 13 The natural man does not accept the things that come from the Spirit of God. For they are foolishness to him, and he cannot understand 15 them, because they are spiritually discerned. The spiritual man judges all things, but he 16 himself is not subject to anyone’s judgment. “For who has known the mind of the Lord, so But we have the mind of d we speak God’s wisdom in a mystery f 16 among b 9 as to instruct Him?” a 7 Chri" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–10) faith in Christ. 6 7 Therefore, just as you have received Christ Je- rooted and sus as Lord, continue to walk in Him, built up in Him, established in the faith as you 8 were taught, and overflowing with thankfulness. See to it that no one takes you captive through philosophy and empty deception, which are based on human tradition and the spiritual For forces of the world rather than on Christ. in Christ all the fullness of the Deity dwells in And you have been made com- bodily form. plete in Christ, who is the head over every ruler 11 and authority. 10 9 b 12 In Him you were also circumcised, in the put- ting off of your sinful nature, with the circumci- sion performed by Christ and not by human And having been buried with Him in hands. baptism, you were raised with Him through your faith in the power of God, who raised Him from 13 the dead. 14 When you were dead in your trespasses and in the uncircumcision of your sinful nature, God made you alive with Christ. He forgave us all our having canceled the debt ascribed trespasses, 15 to us in the decrees that stood against us. He took it away, nailing it to the cross! And having dis- armed the powers and authorities, He made a public spectacle of them, triumphing over them a 2 by the cross. Christ but the body is of the Christ the mystery of God: Christ b 11 d 4 c 17 Literally on the sons of disobedience Literally include . Do not lie to one another, since you have taken and have put off the old self with its practices, 11" + }, + { + "verseNum": 11, + "text": "–18) 17 2 2 Therefore if you have any encouragement in Christ, if any comfort from His love, if any fellowship with the Spirit, if any affection and then make my joy complete by be- compassion, ing like-minded, having the same love, being 3 united in spirit and purpose. 4 Do nothing out of selfish ambition or empty pride, but in humility consider others more im- portant than yourselves. Each of you should look not only to your own interests, but also to The Mind of Christ" + }, + { + "verseNum": 19, + "text": "–22 ;" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "–16) A song of ascents. Of David. 1" + }, + { + "verseNum": 2, + "text": "2 have received: with all humility and gentleness, 3 with patience, bearing with one another in love, and with diligence to preserve the unity of the 4 Spirit through the bond of peace. There is one body and one Spirit, just as you 5 were called to one hope when you were called; one God and Father of all, who is over all and through all and 7 in all. one Lord, one faith, one baptism; 6 8 a Now to each one of us grace has been given ac- This cording to the measure of the gift of Christ. is why it says: “When He ascended on high, He led captives away, and gave gifts to men.” c b 9 10 also descended What does “He ascended” mean, except that He to the lower parts of the earth? He who descended is the very One who as- cended above all the heavens, in order to fill all 11 things. 13 12 And it was He who gave some to be apostles, some to be prophets, some to be evangelists, and to equip the some to be pastors and teachers, saints for works of ministry and to build up until we all reach unity in the body of Christ, the faith and in the knowledge of the Son of God, as we mature to the full measure of the stature of 14 Christ. 15 Then we will no longer be infants, tossed about by the waves and carried around by every wind of teaching and by the clever cunning of men in Instead, speaking the their deceitful scheming. truth in love, we will in all things grow up into From Him the Christ Himself, who is the head. whole body, fitted and held together by every supporting ligament, grows and" + }, + { + "verseNum": 8, + "text": "That is, the upper Nile region See" + }, + { + "verseNum": 17, + "text": "–32) against the indulgence of the flesh. 3 3 2 Therefore, since you have been raised with Christ, strive for the things above, where Christ is seated at the right hand of God. Set your minds on things above, not on earthly d For you died, and your life is now hidden things. with Christ in God. life, appears, then you also will appear with Him 5 in glory. When Christ, who is your 4 6 Put to death, therefore, the components of your earthly nature: sexual immorality, impurity, lust, evil desires, and greed, which is idolatry. Be- e 7 cause of these, the wrath of God is coming on the sons of disobedience. When you lived among But them, you also used to walk in these ways. now you must put aside all such things as these: anger, rage, malice, slander, and filthy language 9 from your lips. 8 10 1058 | Colossians 2: 1 16 also labor, striving with all His energy working Absent in Body, Present in Spirit powerfully within me." + }, + { + "verseNum": 26, + "text": "d 9 a 2 false gods chesed love Or Hebrew includes" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 22, + "text": "–33 ;" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–4) to God the Father through Him. 18 Wives, submit to your husbands, as is fitting in 19 the Lord. Husbands, love your wives and do not be harsh 20 with them. Children, obey your parents in everything, for 21 this is pleasing to the Lord. Fathers, do not provoke your children, so they Serving with Honor will not become discouraged." + }, + { + "verseNum": 2, + "text": "–3 f 15 Cited in Matt. 5:21, Matt. 19:18," + }, + { + "verseNum": 5, + "text": "–9 ; 1 Timothy 6:1–2) 22 Slaves, obey your earthly masters in every- thing, not only to please them while they are watching, but with sincerity of heart and fear of 23 the Lord. 24 Whatever you do, work at it with your whole because being, as for the Lord and not for men, you know that you will receive an inheritance 25 from the Lord as your reward. It is the Lord Whoever does wrong Christ you are serving. will be repaid for his wrong, and there is no Prayerful Speech and Actions favoritism. 4 Masters, supply your slaves with what is right and fair, since you know that you also 2 have a Master in heaven. 3 Devote yourselves to prayer, being watchful as you pray also for us, that God and thankful, may open to us a door for the word, so that we may proclaim the mystery of Christ, for which I a 18 Amen. BYZ and TR include am in chains. 5 as I should. 6 Pray that I may declare it clearly, Act wisely toward outsiders, redeeming the time. Let your speech always be gracious, sea- soned with salt, so that you may know how to Greetings from Paul’s Fellow Workers answer everyone." + }, + { + "verseNum": 15, + "text": "| 1051 31 d 32 “For this reason a man will leave his father and mother and be united to his wife, and the two will This mystery is profound, become one flesh.” 33 but I am speaking about Christ and the church. Nevertheless, each one of you also must love his wife as he loves himself, and the wife must re- Children and Parents" + }, + { + "verseNum": 16, + "text": "16 17 In addition to all this, take up the shield of faith, with which you can extinguish all the flam- And take the helmet ing arrows of the evil one. of salvation and the sword of the Spirit, which is 18 the word of God. Pray in the Spirit at all times, with every kind of prayer and petition. To this end, stay alert with 19 all perseverance in your prayers for all the saints. Pray also for me, that whenever I open my mouth, words may be given me so that I will 20 boldly make known the mystery of the gospel, for which I am an ambassador in chains. Pray Final Greetings" + }, + { + "verseNum": 21, + "text": "–24 ; 2 Timothy 4:19–22) 20 21 The brothers who are with me send you greet- 22 ings. All the saints send you greetings, especially 23 those from the household of Caesar. a Greet all the saints in Christ Jesus. spirit. The grace of the Lord Jesus Christ be with your a 23 Amen. BYZ and TR include Colossians Greetings from Paul and Timothy" + } + ] + } + ] + }, + { + "name": "Philippians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–2 ;" + }, + { + "verseNum": 3, + "text": "–11 ; Col. 1:3–14) and the Lord Jesus Christ. 4 5 I always thank my God for you because of the grace He has given you in Christ Jesus. For in Him you have been enriched in every way, in all because our testi- speech and all knowledge, 7 mony about Christ was confirmed in you. 6 8 Therefore you do not lack any spiritual gift as you eagerly await the revelation of our Lord He will sustain you to the end, so Jesus Christ. 9 that you will be blameless on the day of our Lord God, who has called you into fel- Jesus Christ. lowship with His Son Jesus Christ our Lord, is Unity in the Church (Ps. 133:1–3 ; Eph. 4:1–16) faithful. 10 I appeal to you, brothers, in the name of our Lord Jesus Christ, that all of you agree together, so that there may be no divisions among you and 11 that you may be united in mind and conviction. My brothers, some from Chloe’s household have informed me that there are quarrels among What I mean is this: Individuals among you. you are saying, “I follow Paul,” “I follow Apollos,” 13 “I follow Cephas,” or “I follow Christ.” 12 a 14 15 Is Christ divided? Was Paul crucified for you? Were you baptized into the name of Paul? I thank God that I did not baptize any of you except Crispus and Gaius, so no one can say that you Yes, I also bap- were baptized into my name. tized the household of Stephanas; beyond that I c 23 a 12 do not remember if I baptized anyone else. For b 19 16 17 e 31 Christ did not send me to baptize, but to preach the gospel, not with words of wi" + }, + { + "verseNum": 12, + "text": "–20) Greetings. 2 3 4 Consider it pure joy, my brothers, when you en- counter trials of many kinds, because you know that the testing of your faith develops persever- ance. Allow perseverance to finish its work, so that you may be mature and complete, not lack- 5 ing anything. 6 Now if any of you lacks wisdom, he should ask God, who gives generously to all without finding fault, and it will be given to him. But he must ask in faith, without doubting, because he who 7 doubts is like a wave of the sea, blown and tossed 8 by the wind. That man should not expect to receive anything from the Lord. He is a double- 9 minded man, unstable in all his ways. 10 The brother in humble circumstances should exult in his high position. But the one who is 11 rich should exult in his low position, because he will pass away like a flower of the field. For the sun rises with scorching heat and withers the plant; its flower falls and its beauty is lost. So too, the rich man will fade away in the midst of his 12 pursuits. Blessed is the man who perseveres under trial, because when he has stood the test, he will re- ceive the crown of life that God has promised to Good and Perfect Gifts those who love Him. 13 15 14 When tempted, no one should say, “God is tempting me.” For God cannot be tempted by evil, But each one is nor does He tempt anyone. tempted when by his own evil desires he is lured away and enticed. Then after desire has con- ceived, it gives birth to sin; and sin, when it is full- To th" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–4) pared in advance as our way of life. 11 a 12 Therefore remember that formerly you who are Gentiles in the flesh and called uncircum- cised by the so-called circumcision (that done in remember that the body by human hands)— at that time you were separate from Christ, alien- ated from the commonwealth of Israel, and strangers to the covenants of the promise, with- But out hope and without God in the world. now in Christ Jesus you who once were far away have been brought near through the blood of 14 Christ. 13 15 For He Himself is our peace, who has made the two one and has torn down the dividing wall of by abolishing in His flesh the law of hostility commandments and decrees. He did this to cre- ate in Himself one new man out of the two, thus and reconciling both of them to making peace God in one body through the cross, by which He 17 put to death their hostility. 16 He came and preached peace to you who were 18 far away and peace to those who were near. For through Him we both have access to the Christ Our Cornerstone" + }, + { + "verseNum": 5, + "text": "–11) and the God of Israel is your rear guard. 13 e Behold, My Servant will prosper; 14 He will be raised and lifted up and highly f exalted. Just as many were appalled at Him — His appearance was disfigured beyond that of any man, 15 and His form was marred beyond human g likeness— so He will sprinkle many nations. Kings will shut their mouths because of Him. For they will see what they have not been told, h and they will understand what they have The Suffering Servant" + }, + { + "verseNum": 12, + "text": "–18) 13 You are the salt of the earth. But if the salt loses its savor, how can it be made salty again? It is no longer good for anything, except to be thrown c 14 out and trampled by men. 15 You are the light of the world. A city on a hill 16 cannot be hidden. Neither do people light a lamp and put it under a basket. Instead, they set it on a stand, and it gives light to everyone in the house. In the same way, let your light shine be- fore men, that they may see your good deeds and The Fulfillment of the Law glorify your Father in heaven. 17 18 Do not think that I have come to abolish the Law or the Prophets. I have not come to abol- ish them, but to fulfill them. For I tell you truly, until heaven and earth pass away, not a single jot, not a stroke of a pen, will disappear from the Law 19 until everything is accomplished. So then, whoever breaks one of the least of these commandments and teaches others to do likewise will be called least in the kingdom of heaven; but whoever practices and teaches them 20 will be called great in the kingdom of heaven. For I tell you that unless your righteousness exceeds that of the scribes and Pharisees, you Anger and Reconciliation" + }, + { + "verseNum": 15, + "text": "b 8 the pupil DSS; LXX the upright one Literally d 11 Pinions 5 His people have acted corruptly toward Him; the blemish on them is not that of His children, a but of a perverse and crooked 6 generation. Is this how you repay the LORD, O foolish and senseless people? Is He not your Father and Creator? 7 Has He not made you and established you? Remember the days of old; consider the years long past. Ask your father, and he will tell you, 8 your elders, and they will inform you. When the Most High gave the nations their inheritance, when He divided the sons of man, He set the boundaries of the peoples 9 according to the number of the sons of b God. 10 But the LORD’s portion is His people, Jacob His allotted inheritance. He found him in a desert land, in a barren, howling wilderness; He surrounded him, He instructed him, c 11 He guarded him as the apple of His eye. As an eagle stirs up its nest 12 and hovers over its young, He spread His wings to catch them and carried them on His pinions. d 13 The LORD alone led him, and no foreign god was with him. He made him ride on the heights of the land and fed him the produce of the field. He nourished him with honey from the rock 14 and oil from the flinty crag, with curds from the herd and milk from the flock, with the fat of lambs, with rams from Bashan, and goats, with the choicest grains of wheat. From the juice of the finest grapes 15 e you drank the wine. But Jeshurun grew fat and kicked— becoming fat, bloated, and gorged. He aband" + }, + { + "verseNum": 19, + "text": "–30) though many oppose me. 10 8 9 f 11 If Timothy comes, see to it that he has nothing to fear while he is with you, for he is doing the No one, then, work of the Lord, just as I am. should treat him with contempt. Send him on his way in peace so that he can return to me, for I am 12 expecting him along with the brothers. Now about our brother Apollos: I strongly urged him to go to you with the brothers. He was" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–11) 21 22 But now, apart from the law, the righteousness of God has been revealed, as attested by the Law a 4 And this righteousness from and the Prophets. c 13 d 13 h 25 when You are judged ;" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 10, + "text": "–20) 16 15 8 3 2 Now, brothers, we want you to know about the grace that God has given the churches of In the terrible ordeal they suffered, Macedonia. their abundant joy and deep poverty overflowed For I testify that they gave into rich generosity. 4 according to their ability and even beyond it. Of they earnestly pleaded with their own accord, us for the privilege of sharing in this service to the saints. And not only did they do as we ex- pected, but they gave themselves first to the Lord 6 and then to us, through the will of God. 5 7 So we urged Titus to help complete your act of But just as you grace, just as he had started it. excel in everything—in faith, in speech, in a knowledge, in complete earnestness, and in the 8 —see that you also excel love we inspired in you I am not giving a com- in this grace of giving. mand, but I am testing the sincerity of your love 9 through the earnestness of others. 10 For you know the grace of our Lord Jesus Christ, that though He was rich, yet for your sake He be- came poor, so that you through His poverty And this is my opinion might become rich. about what is helpful for you in this matter: Last 11 year you were the first not only to give, but even Now finish the work, so to have such a desire. that you may complete it with the same eager de- For if the eager- sire, according to your means. ness is there, the gift is acceptable according to what one has, not according to what he does not 13 have. 12 14 It is not our intention that" + }, + { + "verseNum": 18, + "text": "| 1055 But whatever was gain to me I count as loss for More than that, I count all the sake of Christ. things as loss compared to the surpassing excel- lence of knowing Christ Jesus my Lord, for whom I have lost all things. I consider them rubbish, and be found in Him, not that I may gain Christ having my own righteousness from the law, but that which is through faith in Christ, the right- 10 eousness from God on the basis of faith. 9 a 11 I want to know Christ and the power of His res- urrection and the fellowship of His sufferings, and so, being conformed to Him in His death, somehow, to attain to the resurrection from the Pressing on toward the Goal dead. 12 13 Not that I have already obtained all this, or have already been made perfect, but I press on to take hold of that for which Christ Jesus took hold Brothers, I do not consider myself yet to of me. have taken hold of it. But one thing I do: Forget- ting what is behind and straining toward what is I press on toward the goal to win the ahead, 15 prize of God’s heavenly calling in Christ Jesus. 14 All of us who are mature should embrace this point of view. And if you think differently about 16 some issue, God will reveal this to you as well. Nevertheless, we must live up to what we have Citizenship in Heaven already attained. 17 18 Join one another in following my example, brothers, and carefully observe those who walk according to the pattern we set for you. For as I have often told you before, and now say again even wi" + }, + { + "verseNum": 19, + "text": "19 And my God will supply all your needs accord- To our ing to His glorious riches in Christ Jesus. Final Greetings God and Father be glory forever and ever. Amen." + }, + { + "verseNum": 21, + "text": "–23 ; 2 Timothy 4:19–22) 21 22 Tychicus, the beloved brother and faithful servant in the Lord, will tell you everything, so that you also may know about me and what I am I have sent him to you for this very pur- doing. pose, that you may know about us, and that he 23 may encourage your hearts. Peace to the brothers and love with faith from 24 God the Father and the Lord Jesus Christ. Grace to all who love our Lord Jesus Christ that I may proclaim it fearlessly, as I should. with an undying love. Philippians Greetings from Paul and Timothy" + } + ] + } + ] + }, + { + "name": "Colossians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–2 ;" + }, + { + "verseNum": 3, + "text": "–14) 3 4 I thank my God every time I remember you. In 5 every prayer for all of you, I always pray with joy, 6 because of your partnership in the gospel from the first day until now, being confident of this, that He who began a good work in you will carry 7 it on to completion until the day of Christ Jesus. It is right for me to feel this way about all of you, since I have you in my heart. For in my chains and in my defense and confirmation of the gospel, God is my you are all partners in grace with me. witness how I long for all of you with the affec- 9 tion of Christ Jesus. 8 10 And this is my prayer: that your love may abound more and more in knowledge and depth so that you may be able to test and of insight, prove what is best and may be pure and blame- filled with the fruit of less for the day of Christ, righteousness that comes through Jesus Christ, Paul’s Trials Advance the Gospel to the glory and praise of God." + }, + { + "verseNum": 15, + "text": "–23) 1 2 On many past occasions and in many differ- ent ways, God spoke to our fathers through a But in these last days He has the prophets. spoken to us by His Son, whom He appointed heir of all things, and through whom He made the 3 universe. b The Son is the radiance of God’s glory and the exact representation of His nature, upholding all things by His powerful word. After He had pro- vided purification for sins, He sat down at the So He became right hand of the Majesty on high. 5 as far superior to the angels as the name He has For to inherited is excellent beyond theirs. which of the angels did God ever say: 4 c “You are My Son; today I have become Your Father” ? Or again: d “I will be His Father, and He will be My Son” ? 6 And again, when God brings His firstborn into e the world, He says: 7 “Let all God’s angels worship Him.” Now about the angels He says: f “He makes His angels winds, His servants flames of fire.” 8 But about the Son He says: “Your throne, O God, endures forever and ever, 9 and justice is the scepter of Your kingdom. You have loved righteousness and hated wickedness; g therefore God, Your God, has anointed You above Your companions with the oil the ages the world in His Son b 2 c 5 a 2 of joy.” e 6 10 And: “In the beginning, O Lord, You laid the foundations of the earth, and the heavens are the work of 11 Your hands. 12 They will perish, but You remain; h You will roll them up like a robe; they will all wear out like a garment. like a garment they will" + }, + { + "verseNum": 24, + "text": "–29) 15 16 19 17 I repeat: Let no one take me for a fool. But if you do, then receive me as a fool, so that I too In this confident boasting of may boast a little. 18 mine, I am not speaking as the Lord would, but as Since many are boasting according to a fool. the flesh, I too will boast. For you gladly put up In fact, you with fools, since you are so wise. even put up with anyone who enslaves you or ex- ploits you or takes advantage of you or exalts To my shame himself or strikes you in the face. I concede that we were too weak for that! 20 21 22 In my frequent journeys, I have been in danger from rivers and from bandits, in danger from my countrymen and from the Gentiles, in danger in the city and in the country, in danger on the sea in labor and toil and and among false brothers, often without sleep, in hunger and thirst and of- 28 ten without food, in cold and exposure. 27 Apart from these external trials, I face daily the 29 pressure of my concern for all the churches. Who is weak, and I am not weak? Who is led 30 into sin, and I do not burn with grief? 31 32 If I must boast, I will boast of the things that a The God and Father of the show my weakness. Lord Jesus, who is forever worthy of praise, In Damascus, the knows that I am not lying. governor under King Aretas secured the city of But I the Damascenes in order to arrest me. was lowered in a basket through a window in the Paul’s Revelation wall and escaped his grasp. 33 12 I must go on boasting. Although there is 2" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–5) Spirit says to the churches. 14 To the angel of the church in Laodicea write: e These are the words of the Amen, the faithful and true Witness, the Originator of God’s 15 creation. 16 I know your deeds; you are neither cold nor hot. How I wish you were one or the other! So because you are lukewarm— neither hot nor cold—I am about to vomit 17 you out of My mouth! 18 You say, ‘I am rich; I have grown wealthy and need nothing.’ But you do not realize that you are wretched, pitiful, poor, blind, and naked. I counsel you to buy from Me gold refined by fire so that you may become rich, white garments so that you may be clothed and your shameful nakedness not exposed, and salve to anoint your eyes so that you may see. Those I love I rebuke and 20 discipline. Therefore be earnest and repent. 19 21 Behold, I stand at the door and knock. If anyone hears My voice and opens the door, I will come in and dine with him, and he with Me. To the one who overcomes, I will grant the right to sit with Me on My throne, just as I overcame and sat down with My Father on 22 His throne. He who has an ear, let him hear what the The Throne in Heaven Spirit says to the churches.” 4 After this I looked and saw a door standing open in heaven. And the voice I had previ- ously heard speak to me like a trumpet was say- ing, “Come up here, and I will show you what 2 must happen after these things.” At once I was in the Spirit, and I saw a throne 3 standing in heaven, with someone seated on it. The One seat" + }, + { + "verseNum": 6, + "text": "–23) all in all. 2 2 And you were dead in your trespasses and sins, in which you used to walk when you conformed to the ways of this world and of the ruler of the power of the air, the spirit who is now All of us at work in the sons of disobedience. also lived among them at one time, fulfilling the cravings of our flesh and indulging its desires and thoughts. Like the rest, we were by nature 4 children of wrath. 3 5 6 But because of His great love for us, God, who is made us alive with Christ even rich in mercy, when we were dead in our trespasses. It is by grace you have been saved! And God raised us up with Christ and seated us with Him in the heavenly realms in Christ Jesus, in order that in the coming ages He might display the surpassing riches of His grace, demonstrated by His kind- ness to us in Christ Jesus. 7 the eyes of your understanding 8" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–17) in love through the work of each individual part. 17 16 18 So I tell you this, and insist on it in the Lord, that you must no longer walk as the Gentiles do, They are dark- in the futility of their thinking. ened in their understanding and alienated from the life of God because of the ignorance that is in Hav- them due to the hardness of their hearts. ing lost all sense of shame, they have given them- selves over to sensuality for the practice of every kind of impurity, with a craving for more. a 8 d 26 “In your anger do not sin.” He says b 8 e 2 c 9 19 Or Or" + }, + { + "verseNum": 18, + "text": "–21) spect her husband. 6 2 Children, obey your parents in the Lord, for this is right. “Honor your father and 3 mother” (which is the first commandment with a “that it may go well with you and that promise), 4 you may have a long life on the earth.” e Fathers, do not provoke your children to wrath; instead, bring them up in the discipline and in- Serving with Honor struction of the Lord." + }, + { + "verseNum": 22, + "text": "–25 ; 1 Timothy 6:1–2) 5 6 Slaves, obey your earthly masters with respect and fear and sincerity of heart, just as you would And do this not only to please them obey Christ. while they are watching, but as servants of 7 Christ, doing the will of God from your heart. Serve with good will, as to the Lord and not to because you know that the Lord will men, reward each one for whatever good he does, 9 whether he is slave or free. 8 And masters, do the same for your slaves. Give up your use of threats, because you know that He who is both their Master and yours is in heaven, The Full Armor of God and there is no favoritism with Him. 10 11 Finally, be strong in the Lord and in His mighty power. Put on the full armor of God, so that you 12 can make your stand against the devil’s schemes. For our struggle is not against flesh and blood, but against the rulers, against the authorities, against the powers of this world’s darkness, and against the spiritual forces of evil in the heavenly 13 realms. 14 Therefore take up the full armor of God, so that when the day of evil comes, you will be able to stand your ground, and having done everything, Stand firm then, with the belt of truth to stand. buckled around your waist, with the breastplate and with your feet of righteousness arrayed, fitted with the readiness of the gospel of peace. —of His flesh and of His c 30 15 29 In the same way, husbands ought to love their wives as their own bodies. He who loves his wife loves himself. Indeed, no" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 7, + "text": "–14) a 21 Timothy, my fellow worker, sends you greet- ings, as do Lucius, Jason, and Sosipater, my fellow 22 countrymen. I, Tertius, who wrote down this letter, greet 23 you in the Lord. Gaius, who has hosted me and all the church, sends you greetings. b Erastus, the city treasurer, sends you greetings, Doxology as does our brother Quartus." + }, + { + "verseNum": 15, + "text": "–18 ; 2 Thessalonians 3:16–18) 19 a The churches in the province of Asia send you b greetings. greet you warmly in the Lord, Aquila and Prisca 20 and so does the church that meets at their house. All the brothers here send you greetings. Greet 21 one another with a holy kiss. 22 This greeting is in my own hand—Paul. c If anyone does not love the Lord, let him be un- 23 der a curse. Come, O Lord! 24 The grace of the Lord Jesus be with you. d My love be with all of you in Christ Jesus. Amen. a 19 in Asia c 22 Marana Tha! b 19 Prisca Priscilla Literally d 24" + }, + { + "verseNum": 16, + "text": "The Scriptures belonged to the churches and were meant to be examined, copied, and distrib- uted. The committee hopes to follow this example by sharing all the resources with which we have been entrusted. Just as Paul encouraged the churches to pass on his letters, the Berean Bible is intended to be offered freely in websites, apps, software, and various text and audio formats. Greek, Hebrew, and Aramaic Sources and Abbreviations NA SBL ECM NE WH BYZ GOC TR DSS MT LXX SP Aland, Novum Testamentum Graece Nestle Society of Biblical Literature, Greek New Testament Editio Critica Maior, Novum Testamentum Graecum Eberhard Nestle Novum Testamentum Graece Westcott and Hort, New Testament in the Original Greek The New Testament in the Original Greek: Byzantine Textform Greek Orthodox Church, New Testament Scrivener’s Textus Receptus Stephanus Textus Receptus Dead Sea Scrolls Hebrew Masoretic Text: Westminster Leningrad Codex Hebrew Masoretic Text: Biblia Hebraica Stuttgartensia Greek OT Septuagint: Rahlfs-Hanhart Septuaginta Greek OT Septuagint: Swete's Septuagint Samaritan Pentateuch Genesis The Creation" + }, + { + "verseNum": 18, + "text": "| 1059 13 Therefore, as the elect of God, holy and beloved, clothe yourselves with hearts of com- passion, kindness, humility, gentleness, and pa- Bear with one another and forgive any tience. complaint you may have against someone else. Forgive as the Lord forgave you. And over all 15 these virtues put on love, which is the bond of Let the peace of Christ rule in perfect unity. your hearts, for to this you were called as mem- 16 bers of one body. And be thankful. 14 17 Let the word of Christ richly dwell within you as you teach and admonish one another with all wisdom, and as you sing psalms, hymns, and spiritual songs with gratitude in your hearts to And whatever you do, in word or deed, do God. it all in the name of the Lord Jesus, giving thanks Christian Households" + } + ] + } + ] + }, + { + "name": "Titus", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–4) shortfall.” 16 17 But thanks be to God, who put into the heart of Titus the same devotion I have for you. For not only did he welcome our appeal, but he is eagerly 18 coming to you of his own volition. 19 Along with Titus we are sending the brother who is praised by all the churches for his work in More than that, this brother was the gospel. chosen by the churches to accompany us with the gracious offering we administer to honor the 20 Lord Himself and to show our eagerness to help. c 21 We want to avoid any criticism of the way we For we are tak- administer this generous gift. ing great care to do what is right, not only in the 22 eyes of the Lord, but also in the eyes of men. 23 And we are sending along with them our brother who has proven his earnestness to us many times and in many ways, and now even more so by his great confidence in you. As for d Titus, he is my partner and fellow worker among you. As for our brothers, they are messengers of the churches, the glory of Christ. In full view of the churches, then, show these men the proof of your love and the reason for our boasting God Loves a Cheerful Giver (1 Cor. 16:1–4) about you. 24 9 2 Now about the service to the saints, there is For I know no need for me to write to you. your eagerness to help, and I have been boasting to the Macedonians that since last year you in Achaia were prepared to give. And your zeal has 3 stirred most of them to do likewise. 4 But I am sending the brothers in order that our boasting" + }, + { + "verseNum": 5, + "text": "–9 ;" + }, + { + "verseNum": 10, + "text": "–16) Christ Jesus our Lord. 3 4 As I urged you on my departure to Macedonia, you should stay on at Ephesus to instruct certain or devote men not to teach false doctrines themselves to myths and endless genealogies, which promote speculation rather than the stew- 5 ardship of God’s work, which is by faith. a 6 The goal of our instruction is the love that comes from a pure heart, a clear conscience, and a sincere faith. Some have strayed from these They want ways and turned aside to empty talk. to be teachers of the law, but they do not under- stand what they are saying or that which they so 8 confidently assert. 7 9 10 Now we know that the law is good, if one uses it We realize that law is not enacted legitimately. for the righteous, but for the lawless and rebel- lious, for the ungodly and sinful, for the unholy and profane, for killers of father or mother, for b for the sexually immoral, for murderers, homosexuals, for slave traders and liars and 11 perjurers, and for anyone else who is averse to that agrees with the glorious sound teaching gospel of the blessed God, with which I have been God’s Grace to Paul entrusted. 12 13 I thank Christ Jesus our Lord, who has strengthened me, that He considered me faithful I was formerly a and appointed me to service. blasphemer, a persecutor, and a violent man; yet because I had acted in ignorance and unbelief, I And the grace of our Lord was shown mercy. overflowed to me, along with the faith and love a 4 that are in Christ Jesus. rat" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 9, + "text": "–11) 17 18 Now I urge you, brothers, to watch out for those who create divisions and obstacles that are contrary to the teaching you have learned. Turn For such people are not serv- away from them. ing our Lord Christ, but their own appetites. By smooth talk and flattery they deceive the hearts 19 of the naive. Everyone has heard about your obedience, so I rejoice over you. But I want you to be wise about what is good and innocent about what is evil. The God of peace will soon crush Satan under be your feet. The grace of our Lord Jesus Christ Greetings from Paul’s Fellow Workers with you." + }, + { + "verseNum": 15, + "text": "| 1073 7 through Jesus Christ our Savior, so that, having 8 been justified by His grace, we would become This saying is heirs with the hope of eternal life. trustworthy. And I want you to emphasize these things, so that those who have believed God will take care to devote themselves to good deeds. These things are excellent and profitable for the Avoid Divisions people." + } + ] + } + ] + }, + { + "name": "Philemon", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–3) 1 Paul and Timothy, servants of Christ Jesus, To all the saints in Christ Jesus at Philippi, 2 together with the overseers and deacons: Grace and peace to you from God our Father Thanksgiving and Prayer and the Lord Jesus Christ. (1 Corinthians 1:4–9 ;" + } + ] + } + ] + }, + { + "name": "Hebrews", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–14) 15 16 The Son is the image of the invisible God, the firstborn over all creation. For in Him all things were created, things in heaven and on earth, visible and invisible, whether thrones or dominions or rulers or authorities. All things 17 were created through Him and for Him. 18 19 He is before all things, and in Him all things And He is the head of the body, hold together. the church; He is the beginning and firstborn from among the dead, so that in all things He may 20 For God was pleased to have preeminence. and through have all His fullness dwell in Him, Him to reconcile to Himself all things, whether things on earth or things in heaven, by making 21 peace through the blood of His cross. Once you were alienated from God and were 22 hostile in your minds, engaging in evil deeds. But now He has reconciled you by Christ’s physical body through death to present you holy, 23 unblemished, and blameless in His presence— if indeed you continue in your faith, estab- lished and firm, not moved from the hope of the gospel you heard, which has been proclaimed to under heaven, and of which I, every creature Paul’s Suffering for the Church Paul, have become a servant. (2 Corinthians 11:16–33) e 24 26 25 Now I rejoice in my sufferings for you, and I fill up in my flesh what is lacking in regard to Christ’s afflictions for the sake of His body, which I became its servant by the com- is the church. mission God gave me to fully proclaim to you the word of God, the mystery that was h" + }, + { + "verseNum": 5, + "text": "b 14 c 16 Or Or 26 9 e 2 Samuel 9:3 | 287 10 When King Toi of Hamath heard that David f he had defeated the entire army of Hadadezer, sent his son Joram to greet King David and bless him for fighting and defeating Hadadezer, who had been at war with Toi. Joram brought with and him articles of silver and gold and bronze, King David dedicated these to the LORD, along g with the silver and gold he had dedicated from all the nations he had subdued— and Moab, from the Ammonites and Philistines and Amalekites, and from the spoil of Hadadezer 13 son of Rehob, king of Zobah. from Edom 11 12 h 14 in the Valley of Salt. And David made a name for himself when he returned from striking down eighteen thousand He placed gar- Edomites risons throughout Edom, and all the Edomites were subject to David. So the LORD made David David’s Officers (1 Chronicles 18:14–17) victorious wherever he went. 15 Thus David reigned over all Israel and admin- istered justice and righteousness for all his 16 people: Joab son of Zeruiah was over the army; 17 Jehoshaphat son of Ahilud was the recorder; Zadok son of Ahitub and Ahimelech son of i Abiathar were priests; 18 Seraiah was the scribe; Benaiah son of Jehoiada was over the j Cherethites and Pelethites; David and Mephibosheth and David’s sons were priestly leaders. 9 Then David asked, “Is there anyone left from the house of Saul to whom I can show kind- 2 ness for the sake of Jonathan?” And there was a servant of the house of Saul named Ziba. They summoned" + }, + { + "verseNum": 7, + "text": "Praise the LORD Or or or or Or Or , meaning LXX Or Psalm 105 Tell of His Wonders (1 Chronicles 16:7–22) 1" + }, + { + "verseNum": 8, + "text": "–9 520 |" + }, + { + "verseNum": 10, + "text": "–12 who fear Him. As far as the east is from the west, 13 so far has He removed our transgressions from us. As a father has compassion on his children, so the LORD has compassion on those 14 who fear Him. For He knows our frame; 15 He is mindful that we are dust. 16 As for man, his days are like grass— he blooms like a flower of the field; when the wind passes over, it vanishes, and its place remembers it no more. 17 But from everlasting to everlasting the loving devotion of the LORD extends to those who fear Him, 18 and His righteousness to their children’s children— 19 to those who keep His covenant and remember to obey His precepts. The LORD has established His throne in 20 heaven, and His kingdom rules over all. Bless the LORD, all His angels mighty in strength 21 who carry out His word, who hearken to the voice of His command. 22 Bless the LORD, all His hosts, you servants who do His will. Bless the LORD, all His works in all places of His dominion. Bless the LORD, O my soul! 552 |" + }, + { + "verseNum": 13, + "text": "Praise the LORD c 1 Cited in" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 6, + "text": "–8 d 16 Higgaion Selah ; see also LXX. quiet interlude or alphabet. In the LXX they form one psalm. or is probably a musical or liturgical term. 6 3" + }, + { + "verseNum": 9, + "text": "9 When God subjected all things to him, He left nothing outside of his control. Yet at present we But we see do not see everything subject to him. Jesus, who was made a little lower than the an- gels, now crowned with glory and honor because He suffered death, so that by the grace of God He 10 might taste death for everyone. In bringing many sons to glory, it was fitting a for God, for whom and through whom all things 11 exist, to make the author of their salvation per- fect through suffering. For both the One who sanctifies and those who are sanctified are of the same family. So Jesus is not ashamed to call them brothers. He says: 12 “I will proclaim Your name to My brothers; b I will sing Your praises in the 13 assembly.” And again: c “I will put My trust in Him.” And once again: d “Here am I, and the children God has 14 given Me.” Now since the children have flesh and blood, He too shared in their humanity, so that by His death He might destroy him who holds the and free those power of death, that is, the devil, who all their lives were held in slavery by their 16 fear of death. 15 17 For surely it is not the angels He helps, but the For this reason He descendants of Abraham. had to be made like His brothers in every way, so that He might become a merciful and faithful high priest in service to God, in order to make Because for the sins of the people. atonement He Himself suffered when He was tempted, He is Jesus Our Apostle and High Priest able to help those who are being" + }, + { + "verseNum": 12, + "text": ". He has not hidden His face from him, 25 but has attended to his cry for help. all the days of my life, c" + }, + { + "verseNum": 13, + "text": "Cited in" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 5, + "text": "was used for various skin diseases; see Leviticus 13. Literally is approximately 62.4 bush- according to the mouth The Hebrew word 138 |" + }, + { + "verseNum": 7, + "text": "–11) 1 Come, let us sing for joy to the LORD; 2 let us shout to the Rock of our salvation! Let us enter His presence with thanksgiving; let us make a joyful noise to Him in song. 3 For the LORD is a great God, 4 a great King above all gods. In His hand are the depths of the earth, 5 and the mountain peaks belong to Him. 6 The sea is His, for He made it, and His hands formed the dry land. O come, let us worship and bow down; 7 let us kneel before the LORD our Maker. For He is our God, and we are the people of His pasture, the sheep under His care. 8 Today, if you hear His voice, b do not harden your hearts as you did at Meribah, 9 and they have not known My ways.” e So I swore on oath in My anger, “They shall never enter My rest.” Psalm 96 Sing to the LORD, All the Earth (1 Chronicles 16:23–36) 1 Sing to the LORD a new song; 2 sing to the LORD, all the earth. Sing to the LORD, bless His name; 3 proclaim His salvation day after day. Declare His glory among the nations, His wonders among all peoples. 4 For great is the LORD, and greatly to be 5 praised; He is to be feared above all gods. For all the gods of the nations are idols, 6 but it is the LORD who made the heavens. 7 Splendor and majesty are before Him; strength and beauty fill His sanctuary. Ascribe to the LORD, O families of the 8 nations, ascribe to the LORD glory and strength. Ascribe to the LORD the glory due His name; bring an offering and enter His courts. 9 Worship the LORD in the splendor of His 10 holiness; trem" + }, + { + "verseNum": 15, + "text": "and" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 3, + "text": ", and" + }, + { + "verseNum": 4, + "text": "mist Or Or f 7 , as in verses 19 and 21 a 10" + }, + { + "verseNum": 5, + "text": "means ; see" + }, + { + "verseNum": 7, + "text": ". LXX They always go astray in the heart LXX LXX ; Cited in" + }, + { + "verseNum": 12, + "text": "–16) 10 You, however, have observed my teaching, my 11 conduct, my purpose, my faith, my patience, my my persecutions, and love, my perseverance, the sufferings that came upon me in Antioch, Ico- nium, and Lystra. What persecutions I endured! In- Yet the Lord rescued me from all of them. deed, all who desire to live godly lives in Christ while evil men and Jesus will be persecuted, imposters go from bad to worse, deceiving and 14 being deceived. 12 13 15 But as for you, continue in the things you have learned and firmly believed, since you know From from whom you have learned them. infancy you have known the Holy Scriptures, which are able to make you wise for salvation All Scripture is through faith in Christ Jesus. God-breathed and is useful for instruction, for 17 conviction, for correction, and for training in so that the man of God may be righteousness, complete, fully equipped for every good work. cleanses himself of these c 21 16 SBL, BYZ, and TR See Jasher 79:27. the Book of the Upright One" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–10) A Psalm of David. 1 The LORD said to my Lord: “Sit at My right hand until I make Your enemies a 2 a footstool for Your feet.” The LORD extends Your mighty scepter 3 from Zion: “Rule in the midst of Your enemies.” Your people shall be willing on Your day of battle. Arrayed in holy splendor, from the womb of 4 the dawn, to You belongs the dew of Your youth. The LORD has sworn and will not change His mind: b “You are a priest forever 5 in the order of Melchizedek.” The Lord is at Your right hand; 6 He will crush kings in the day of His wrath. He will judge the nations, heaping up the 7 dead; He will crush the leaders far and wide. He will drink from the brook by the road; therefore He will lift up His head. Psalm 111 Majestic Is His Work 1 c Hallelujah! I will give thanks to the LORD with all my heart When they rise up, they will be put to 2 in the council of the upright and in the 29 shame, but Your servant will rejoice. 30 May my accusers be clothed with disgrace; may they wear their shame like a robe. With my mouth I will thank the LORD 31 profusely; assembly. Great are the works of the LORD; 3 they are pondered by all who delight in them. Splendid and majestic is His work; 4 His righteousness endures forever. I will praise Him in the presence of many. He has caused His wonders to be For He stands at the right hand of the 5 remembered; needy one, to save him from the condemners of his a 1 soul. the LORD is gracious and compassionate. He provides food for those who fear H" + }, + { + "verseNum": 5, + "text": "" + }, + { + "verseNum": 6, + "text": "," + }, + { + "verseNum": 11, + "text": "–14) 1 Corinthians 3:19 | 1023 2 2 When I came to you, brothers, I did not come with eloquence or wisdom as I proclaimed For I resolved to you the testimony about God. 3 to know nothing while I was with you except Jesus Christ and Him crucified. I came to you in 4 weakness and fear, and with much trembling. My message and my preaching were not with persuasive words of wisdom, but with a demon- so that your faith stration of the Spirit’s power, would not rest on men’s wisdom, but on God’s Spiritual Wisdom" + }, + { + "verseNum": 14, + "text": "| 1077 16 to sympathize with our weaknesses, but we have one who was tempted in every way that we are, Let us then approach the yet was without sin. throne of grace with confidence, so that we may receive mercy and find grace to help us in our The Perfect High Priest time of need." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "A Call to Maturity 6 b a Therefore let us leave the elementary teach- ings about Christ and go on to maturity, not laying again the foundation of repentance from dead works, instruction and of faith in God, about baptisms, the laying on of hands, the res- 3 urrection of the dead, and eternal judgment. 4 And this we will do, if God permits. 2 5 6 It is impossible for those who have once been enlightened, who have tasted the heavenly gift, who have who have shared in the Holy Spirit, tasted the goodness of the word of God and the and then have powers of the coming age— fallen away—to be restored to repentance, be- cause they themselves are crucifying the Son of God all over again and subjecting Him to open 7 shame. For land that drinks in the rain often falling on it and that produces a crop useful to those for 8 whom it is tended receives the blessing of God. But land that produces thorns and thistles is worthless, and its curse is imminent. In the end it 9 will be burned. 10 Even though we speak like this, beloved, we are convinced of better things in your case—things For God is not un- that accompany salvation. just. He will not forget your work and the love you have shown for His name as you have minis- 11 tered to the saints and continue to do so. 12 We want each of you to show this same dili- gence to the very end, in order to make your Then you will not be sluggish, but hope sure. will imitate those who through faith and patience God’s Unchangeable Promise inherit what h" + }, + { + "verseNum": 14, + "text": "is approximately 10.1 pounds or 4.6 kg of silver; also in v. 16. Cited in" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–10) 17 23 But Abram replied to the king of Sodom, “I have raised my hand to the LORD God Most High, Creator of heaven and earth, that I will not accept even a thread, or a strap of a sandal, or anything that belongs to you, lest you should say, I will accept nothing ‘I have made Abram rich.’ but what my men have eaten and the share for the men who went with me—Aner, Eshcol, and God’s Covenant with Abram Mamre. They may take their portion.”" + }, + { + "verseNum": 17, + "text": ", and" + }, + { + "verseNum": 21, + "text": "beginning with the successive letters of the Hebrew alphabet. , meaning Or . This psalm is an acrostic poem, each line 6 He has shown His people the power of His works 7 by giving them the inheritance of the nations. The works of His hands are truth and justice; 8 all His precepts are trustworthy. They are upheld forever and ever, 9 enacted in truth and uprightness. He has sent redemption to His people; 10 He has ordained His covenant forever; holy and awesome is His name." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 5, + "text": "curtains was approximately 42 feet long and 6 feet wide (12.8 meters long and 1.8 meters wide). f 14 curtains was approximately 45 feet long and 6 feet wide (13.7 meters long and 1.8 meters wide). h 17 approximately 18 inches or 45.7 centimeters. Possibly the hides of large aquatic mammals approximately 15 feet long and 2.25 feet wide (4.6 meters long and 68.6 centimeters wide). pieces of wood made for insertion into another piece; similarly in verse 19. c 2 d 8 e 13 A cubit g 16 Each of the ten Each of the eleven is Each frame was That is, projecting 80 |" + }, + { + "verseNum": 6, + "text": "–13) weary soul and replenish all who are weak.” 26 At this I awoke and looked around. My sleep 27 had been most pleasant to me. “The days are coming,” declares the LORD, “when I will sow the house of Israel and the 28 house of Judah with the seed of man and of beast. Just as I watched over them to uproot and tear down, to demolish, destroy, and bring disaster, so I will watch over them to build and to plant,” 29 declares the LORD. “In those days, it will no longer be said:" + }, + { + "verseNum": 8, + "text": "–12 and" + }, + { + "verseNum": 13, + "text": "| 1079 And this point is even more clear if another one who has priest like Melchizedek appears, become a priest not by a law of succession, but For it is by the power of an indestructible life. testified: 17 a “You are a priest forever 18 in the order of Melchizedek.” 19 So the former commandment is set aside be- (for the law cause it was weak and useless made nothing perfect), and a better hope is intro- 20 duced, by which we draw near to God. 21 And none of this happened without an oath. but For others became priests without an oath, Jesus became a priest with an oath by the One who said to Him: “The Lord has sworn and will not change b 22 His mind: ‘You are a priest forever.’ ” Because of this oath, Jesus has become the 23 guarantee of a better covenant. 25 Now there have been many other priests, since 24 death prevented them from continuing in office. But because Jesus lives forever, He has a per- manent priesthood. Therefore He is able to those who draw near to God save completely through Him, since He always lives to intercede 26 for them. c 27 Such a high priest truly befits us—One who is holy, innocent, undefiled, set apart from sinners, Unlike the and exalted above the heavens. other high priests, He does not need to offer daily sacrifices, first for His own sins and then for the sins of the people; He sacrificed for sin once for For the law ap- all when He offered up Himself. points as high priests men who are weak; but the oath, which came after the law, appointed" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "–10) 2 d 4 “On the Then the LORD said to Moses, 3 first day of the first month you are to set Put the up the tabernacle, the Tent of Meeting. ark of the Testimony in it and screen off the ark Then bring in the table and set out with the veil. its arrangement; bring in the lampstand as well, 5 and set up its lamps. Place the gold altar of incense in front of the ark 6 of the Testimony, and hang the curtain at the en- Place the altar of burnt trance to the tabernacle. 7 offering in front of the entrance to the tabernacle, And place the basin be- the Tent of Meeting. tween the Tent of Meeting and the altar, and put 8 water in it. Set up the surrounding courtyard and hang the 9 curtain for the entrance to the courtyard. 10 Take the anointing oil and anoint the tabernacle and everything in it; consecrate it along with all Anoint the its furnishings, and it shall be holy. altar of burnt offering and all its utensils; conse- Anoint crate the altar, and it shall be most holy. 12 the basin and its stand and consecrate them. 11 13 14 Then bring Aaron and his sons to the entrance to the Tent of Meeting and wash them with wa- And you are to clothe Aaron with the holy ter. garments, anoint him, and consecrate him, so Bring his sons that he may serve Me as a priest. Anoint forward and clothe them with tunics. them just as you anointed their father, so that they may also serve Me as priests. Their anoint- ing will qualify them for a permanent priesthood 16 throughout their generations.” 15" + }, + { + "verseNum": 20, + "text": "the River d 8 78 |" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "–18) For the choirmaster. A Psalm of David. 1 I waited patiently for the LORD; 2 He inclined to me and heard my cry. He lifted me up from the pit of despair, out of the miry clay; He set my feet upon a rock, 3 and made my footsteps firm. He put a new song in my mouth, a hymn of praise to our God. Many will see and fear 4 and put their trust in the LORD. Blessed is the man who has made the LORD his trust, c who has not turned to the proud, 5 nor to those who lapse into falsehood. Many, O LORD my God, are the wonders You have done, and the plans You have for us— none can compare to You— if I proclaim and declare them, 6 they are more than I can count. d Sacrifice and offering You did not desire, but my ears You have opened. Burnt offerings and sin offerings 7 You did not require. 8 Then I said, “Here I am, I have come— it is written about me in the scroll: e I delight to do Your will, O my God; Your law is within my heart.” b 19 c 4 but a body You prepared for me who turn aside to false e 8 See" + }, + { + "verseNum": 16, + "text": "–17 712 |" + }, + { + "verseNum": 30, + "text": "Or ; see also LXX; cited in" + }, + { + "verseNum": 37, + "text": ". f 16 ; cited in" + }, + { + "verseNum": 38, + "text": "d 5 wine e 10 sinning against your soul Or DSS; MT Literally ; see also LXX; cited in" + }, + { + "verseNum": 39, + "text": "| 1081 us draw near with a sincere heart in full assur- ance of faith, having our hearts sprinkled to cleanse us from a guilty conscience and our bod- 23 ies washed with pure water. 24 Let us hold resolutely to the hope we profess, for He who promised is faithful. And let us con- 25 sider how to spur one another on to love and good deeds. Let us not neglect meeting to- gether, as some have made a habit, but let us encourage one another, and all the more as you 26 see the Day approaching. 27 28 If we deliberately go on sinning after we have received the knowledge of the truth, no further sacrifice for sins remains, but only a fearful ex- pectation of judgment and of raging fire that will consume all adversaries. Anyone who rejected the law of Moses died without mercy on the tes- timony of two or three witnesses. How much more severely do you think one deserves to be punished who has trampled on the Son of God, profaned the blood of the covenant that sancti- 30 fied him, and insulted the Spirit of grace? f 29 For we know Him who said, “Vengeance is 31 and again, “The Lord will It is a fearful thing to fall g Mine; I will repay,” judge His people.” 32 into the hands of the living God. h Remember the early days that you were in the 33 light. In those days, you endured a great conflict Sometimes you were in the face of suffering. publicly exposed to ridicule and persecution; at other times you were partners with those who You sympathized with those were so treated. in prison and j" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "–3) The Fourth Day 1 2 In the beginning God created the heavens and the earth. Now the earth was formless and void, and dark- ness was over the surface of the deep. And the Spirit of God was hovering over the surface of the The First Day waters. 3 4 a And God said, “Let there be light,” and And God saw that the light there was light. 5 was good, and He separated the light from the darkness. God called the light “day,” and the darkness He called “night.” b The Second Day And there was evening, and there was morn- ing—the first day. 6 c 7 And God said, “Let there be an expanse be- tween the waters, to separate the waters So God made the expanse from the waters.” and separated the waters beneath it from the God called the waters above. And it was so. expanse “sky.” 8 The Third Day And there was evening, and there was morn- ing—the second day. 9 10 And God said, “Let the waters under the sky be gathered into one place, so that the dry God land may appear.” And it was so. called the dry land “earth,” and the gathering of waters He called “seas.” And God saw that 11 it was good. 12 Then God said, “Let the earth bring forth vegetation: seed-bearing plants and fruit trees, each bearing fruit with seed according The earth to its kind.” And it was so. produced vegetation: seed-bearing plants according to their kinds and trees bearing fruit with seed according to their kinds. And 13 God saw that it was good. And there was evening, and there was b 5 day one c 6 a canopy a 3 morning—the t" + }, + { + "verseNum": 4, + "text": ") of flame to guard the way to the tree of life. 4 And Adam had relations with his wife Eve, and she conceived and gave birth to Cain. b “With the help of the LORD I have brought forth 2 a man,” she said. Later she gave birth to Cain’s brother Abel. 3 4 Now Abel was a keeper of sheep, while Cain was a tiller of the soil. So in the course of time, Cain brought some of the fruit of the soil as an offering while Abel brought the best por- to the LORD, tions of the firstborn of his flock. 5 And the LORD looked with favor on Abel and but He had no regard for Cain and his offering, his offering. So Cain became very angry, and his 6 countenance fell. 7 “Why are you angry,” said the LORD to Cain, If you “and why has your countenance fallen? do what is right, will you not be accepted? But if you refuse to do what is right, sin is crouching at your door; it desires you, but you must master 8 it.” c d 11 “What have you done?” replied the LORD. “The voice of your brother’s blood cries out to Me from the ground. Now you are cursed and ban- ished from the ground, which has opened its 12 mouth to receive your brother’s blood from your hand. When you till the ground, it will no longer yield its produce to you. You will be a 13 fugitive and a wanderer on the earth.” e 14 But Cain said to the LORD, “My punishment is Behold, this day You greater than I can bear. have driven me from the face of the earth, and from Your face I will be hidden; I will be a fugitive and a wanderer on the earth, and" + }, + { + "verseNum": 5, + "text": ") lived a total of 895 years, and then he died. 18 17 19" + }, + { + "verseNum": 7, + "text": ") ways. 13 Then God said to Noah, “The end of all living creatures has come before Me, because through them the earth is full of violence. Now behold, I b 14 will destroy both them and the earth. d 15 Make for yourself an ark of gopher wood; make rooms in the ark and coat it with pitch inside and out. And this is how you are to build it: The ark is to be 300 cubits long, 50 cubits wide, and 30 cubits high. You are to make a e for the ark, finish its walls a cubit from the roof top, place a door in the side of the ark, and build 17 lower, middle, and upper decks. 16 c 18 And behold, I will bring floodwaters upon the earth to destroy every creature under the heav- ens that has the breath of life. Everything on the earth will perish. But I will establish My cove- nant with you, and you will enter the ark—you and your sons and your wife and your sons’ 19 wives with you. And you are to bring two of every living crea- 20 ture into the ark—male and female—to keep them alive with you. Two of every kind of 21 bird and animal and crawling creature will come to you to be kept alive. You are also to take for yourself every kind of food that is eaten and gather it as food for yourselves and for the 22 animals.” So Noah did everything precisely as God had The Great Flood" + }, + { + "verseNum": 8, + "text": "–19) 24 15 After these events, the word of the LORD came to Abram in a vision: “Do not be afraid, Abram. I am your shield, your very great reward.” 2 But Abram replied, “O Lord GOD, what can You give me, since I remain childless, and the heir of Abram con- my house is Eliezer of Damascus?” tinued, “Behold, You have given me no offspring, 4 so a servant in my household will be my heir.” 3 Then the word of the LORD came to Abram, say- ing, “This one will not be your heir, but one who 5 comes from your own body will be your heir.” And the LORD took him outside and said, “Now look to the heavens and count the stars, if you are able.” Then He told him, “So shall your offspring 6 be.” f Abram believed the LORD, and it was credited e 7 to him as righteousness. After Abram returned from defeating Chedor- laomer and the kings allied with him, the king of Sodom went out to meet him in the Valley of 18 Shaveh (that is, the King’s Valley). The LORD also told him, “I am the LORD, who brought you out of Ur of the Chaldeans to give God Confirms His Promise you this land to possess.”" + }, + { + "verseNum": 18, + "text": "well of the oath e 31 Beersheba Cited in" + }, + { + "verseNum": 20, + "text": ") they brought grief to Isaac and Rebekah. 35 27 When Isaac was old and his eyes were so weak that he could no longer see, he called his older son Esau and said to him, “My son.” 2 “Here I am,” Esau replied. 3 “Look,” said Isaac, “I am now old, and I do Take your weap- not know the day of my death. 4 ons—your quiver and bow—and go out into the Then prepare a field to hunt some game for me. tasty dish that I love and bring it to me to eat, so a 33 Shibah that I may bless you before I die.” b 33 Beersheba seven oath can mean or . means 6 Now Rebekah was listening to what Isaac told his son Esau. So when Esau went into the field to Rebekah said to hunt game and bring it back, 7 her son Jacob, “Behold, I overheard your father saying to your brother Esau, ‘Bring me some game and prepare me a tasty dish to eat, so that I may bless you in the presence of the LORD be- 8 fore I die.’ 9 Now, my son, listen to my voice and do exactly Go out to the flock and bring me as I tell you. two choice young goats, so that I can make them 10 into a tasty dish for your father—the kind he Then take it to your father to eat, so that loves. 11 he may bless you before he dies.” 12 Jacob answered his mother Rebekah, “Look, my brother Esau is a hairy man, but I am smooth- What if my father touches me? Then skinned. I would be revealed to him as a deceiver, and I would bring upon myself a curse rather than a 13 blessing.” His mother replied, “Your curse be on me, my 14 son. Just obey my voice and go get t" + }, + { + "verseNum": 21, + "text": ". Hebrew That is, northwest Mesopotamia 52 |" + }, + { + "verseNum": 23, + "text": ") 2 2 Now a man of the house of Levi married a Le- vite woman, and she conceived and gave birth to a son. When she saw that he was a beau- 3 tiful child, she hid him for three months. d But when she could no longer hide him, she got him a papyrus basket and coated it with tar and pitch. Then she placed the child in the basket and 4 set it among the reeds along the bank of the Nile. And his sister stood at a distance to see what 5 would happen to him. 6 Soon the daughter of Pharaoh went down to bathe in the Nile, and her attendants were walk- ing along the riverbank. And when she saw the basket among the reeds, she sent her maidser- When she opened it, she saw vant to retrieve it. the child, and behold, the little boy was crying. So she had compassion on him and said, “This is one of the Hebrew children.” and take the country b 10 seventy-five c 22 ark Or SP, LXX, and ; also in verse 5; see Gen. 6:14. Targum Yonaton; Heb. does not include . The Hebrew can also mean 56 |" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "–3) istered to me in Ephesus. 2 2 You therefore, my child, be strong in the And the things grace that is in Christ Jesus. that you have heard me say among many wit- nesses, entrust these to faithful men who will be 3 qualified to teach others as well. 4 A soldier refrains Join me in suffering, like a good soldier of Christ from entangling Jesus. 5 himself in civilian affairs, in order to please the Likewise, a competitor one who enlisted him. 6 does not receive the crown unless he competes according to the rules. The hardworking farmer Con- should be the first to partake of the crops. sider what I am saying, for the Lord will give you 8 insight into all things. 7 9 10 Remember Jesus Christ, raised from the dead, descended from David, as proclaimed by my gos- for which I suffer to the extent of being pel, chained like a criminal. But the word of God can- For this reason I endure all not be chained! things for the sake of the elect, so that they too may obtain the salvation that is in Christ Jesus, with eternal glory. f 15 what He has entrusted to me in Asia c 12 For this reason, even though I suffer as I do, I am not ashamed; for I know whom I have be- lieved, and I am convinced that He is able to for that day. guard what I have entrusted to Him b 9 before times eternal cowardice a 7 the good deposit entrusted to you e 14 d 13 timidity c sound words or Or Literally province in what is now western Turkey. Literally Or Or Literally ; Asia was a Roman 1070 | 2 Timothy 2:11 11 26" + }, + { + "verseNum": 5, + "text": "LXX ; cited in" + }, + { + "verseNum": 6, + "text": "19 5 The LORD founded the earth by wisdom Get wisdom, get understanding; 20 and established the heavens by 6 do not forget my words or turn from understanding. them. By His knowledge the watery depths were Do not forsake wisdom, and she will preserve" + }, + { + "verseNum": 12, + "text": "I speak military officer; here and throughout chapters 36 and 37, as well as 2 Kings 18 and 19 and 2 Kings 18:20; MT . Literally ; see DSS Or or Hebrew is the title of a high-ranking Assyrian 8 22" + }, + { + "verseNum": 13, + "text": "a foreign woman of the hunter Or b 3 the adulteress another and may you rejoice in the wife of your Ponder the path for your feet d 5 youth: her palate e 19 lay hold of Sheol ; LXX makes level Make straight paths for your feet be led astray a 26 c 3 Or man’s wife Or g 21 ponders Or Or or h 3 hasten Or Or i 5 ; also in verse 20 Or Hebrew does not include or . 14 31 15 With deceit in his heart he devises evil; he continually sows discord. Yet if caught, he must pay sevenfold; 32 he must give up all the wealth of his Therefore calamity will come upon him house." + }, + { + "verseNum": 14, + "text": "–17) these things. 13 c Therefore prepare your minds for action. Be sober-minded. Set your hope fully on the grace to 14 be given you at the revelation of Jesus Christ. As obedient children, do not conform to the But just as passions of your former ignorance. d 16 He who called you is holy, so be holy in all you do, 17 for it is written: “Be holy, because I am holy.” 15 Since you call on a Father who judges each one’s work impartially, conduct yourselves in 18 reverent fear during your stay as foreigners. For you know that it was not with perishable things such as silver or gold that you were redeemed from the empty way of life you but with the inherited from your forefathers, precious blood of Christ, a lamb without blemish He was known before the foundation or spot. of the world, but was revealed in the last times 21 for your sake. 19 20 Through Him you believe in God, who raised Him from the dead and glorified Him; and so The Enduring Word" + }, + { + "verseNum": 15, + "text": "Cited in" + }, + { + "verseNum": 18, + "text": "–29) 18 When all the people witnessed the thunder and lightning, the sounding of the ram’s horn, and the mountain enveloped in smoke, they “Speak to us trembled and stood at a distance. yourself and we will listen,” they said to Moses. “But do not let God speak to us, or we will die.” 19 e 14 Or Or Cited in Matt. 15:4, Matt. 19:19," + }, + { + "verseNum": 20, + "text": "Or 15 5" + }, + { + "verseNum": 21, + "text": "174 |" + }, + { + "verseNum": 22, + "text": "22 9 23 Instead, you have come to Mount Zion, to the city of the living God, the heavenly Jerusalem. You have come to myriads of angels in joyful assembly, to the congregation of the firstborn, enrolled in heaven. You have come to God the Judge of all, to the spirits of the righteous made to Jesus the mediator of a new cove- perfect, nant, and to the sprinkled blood that speaks a 25 better word than the blood of Abel. 24 26 See to it that you do not refuse Him who speaks. For if the people did not escape when they refused Him who warned them on earth, how much less will we escape if we reject Him At that time His who warns us from heaven? voice shook the earth, but now He has promised, “Once more I will shake not only the earth, but The words “Once more” heaven as well.” signify the removal of what can be shaken—that is, created things—so that the unshakable may 28 remain. 27 a 29 Therefore, since we are receiving an unshaka- ble kingdom, let us be filled with gratitude, and so worship God acceptably with reverence and Brotherly Love awe. “For our God is a consuming fire.” b 2 Continue in brotherly love. Do not ne- glect to show hospitality to strangers, for 3 by so doing some people have entertained angels Remember those in prison without knowing it. as if you were bound with them, and those who 4 are mistreated as if you were suffering with them. Marriage should be honored by all and the mar- riage bed kept undefiled, for God will judge the Christ’s Unchanging Nature sexual" + }, + { + "verseNum": 26, + "text": "Or ; also in verse 18 Literally Literally Zechariah A Call to Repentance" + }, + { + "verseNum": 29, + "text": "Or his own a nation out of another nation—by trials, signs, wonders, and war, by a strong hand and an outstretched arm, and by great terrors—as the LORD your God did for you in Egypt, before your 35 eyes? You were shown these things so that you would know that the LORD is God; there is no 36 other besides Him. He let you hear His voice from heaven to disci- pline you, and on earth He showed you His great 37 fire, and you heard His words out of the fire. Because He loved your fathers, He chose their descendants after them and brought you out of Egypt by His presence and great power, to drive out before you nations greater and might- ier than you, and to bring you into their land and 39 give it to you for your inheritance, as it is this day. 38 40 Know therefore this day and take to heart that the LORD is God in heaven above and on the Keep His stat- earth below; there is no other. utes and commandments, which I am giving you today, so that you and your children after you may prosper, and that you may live long in the land that the LORD your God is giving you for all Cities of Refuge time. (Num. 35:9–34 ; De. 19:1–14 ; Josh. 20:1–9) 41 42 Then Moses set aside three cities across the Jordan to the east to which a manslayer could flee after killing his neighbor unintentionally without prior malice. 43 To save one’s own life, he could flee to one of Bezer in the wilderness on the these cities: plateau belonging to the Reubenites, Ramoth in Gilead belonging to the Gadites, or Golan" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 5, + "text": "; here and in verse 8 c 10 21 the autumn feast of pilgrimage to Jerusalem; also translated as called (see" + } + ] + } + ] + }, + { + "name": "James", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": ") 1 Jude, a servant of Jesus Christ and a brother of James, To those who are called, loved by God the Father, 2 and kept in Jesus Christ: God’s Judgment on the Ungodly (2 Pet. 3:1–7) Mercy, peace, and love be multiplied to you. 3 4 Beloved, although I made every effort to write to you about the salvation we share, I felt it nec- essary to write and urge you to contend ear- nestly for the faith entrusted once for all to the For certain men have crept in among you saints. unnoticed—ungodly ones who were designated long ago for condemnation. They turn the grace of our God into a license for immorality, and they 5 deny our only Master and Lord, Jesus Christ. a Although you are fully aware of this, I want to remind you that after Jesus had delivered His 6 people out of the land of Egypt, He destroyed And the angels who those who did not believe. did not stay within their own domain but aban- doned their proper dwelling—these He has kept 7 in eternal chains under darkness, bound for judg- In like manner, Sodom ment on that great day. and Gomorrah and the cities around them, who indulged in sexual immorality and pursued strange flesh, are on display as an example of 8 those who sustain the punishment of eternal fire. 9 Yet in the same way these dreamers defile their bodies, reject authority, and slander glorious be- But even the archangel Michael, when he ings. disputed with the devil over the body of Moses, b did not presume to bring a slanderous charge 10 against him, but said, “T" + }, + { + "verseNum": 2, + "text": "–12) 11 12 a 13 Now I want you to know, brothers, that my cir- cumstances have actually served to advance the As a result, it has become clear through- gospel. out the whole palace guard and to everyone else that I am in chains for Christ. And most of the brothers, confident in the Lord by my chains, now dare more greatly to speak the word with- 15 out fear. 14 b 16 c 17 latter do so in love, knowing that I am appointed for the defense of the gospel. The former, however, preach Christ out of selfish ambition, not sincerely, supposing that they can add to the 18 distress of my chains. d 19 20 What then is the issue? Just this: that in every way, whether by false motives or true, Christ is preached. And in this I rejoice. Yes, and I will con- because I know that through tinue to rejoice, your prayers and the provision of the Spirit of Jesus Christ, my distress will turn out for my de- I eagerly expect and hope that I will liverance. in no way be ashamed, but will have complete boldness so that now as always Christ will be ex- To Live Is Christ alted in my body, whether by life or by death. 21 22 23 For to me, to live is Christ, and to die is gain. But if I go on living in the body, this will mean fruitful labor for me. So what shall I choose? I do I am torn between the two. I desire not know. 24 to depart and be with Christ, which is far better But it is more necessary for you that I indeed. 25 remain in the body. 26 Convinced of this, I know that I will remain and will continu" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 4, + "text": "4 have you not must stand” or “Sit at my feet,” discriminated among yourselves and become 5 judges with evil thoughts? 6 Listen, my beloved brothers: Has not God cho- sen the poor of this world to be rich in faith and to inherit the kingdom He promised those who But you have dishonored the poor. Is love Him? it not the rich who oppress you and drag you into a court? Are they not the ones who blaspheme 8 the noble name by which you have been called? 7 b 9 If you really fulfill the royal law stated in Scrip- you are But if you show favoritism, you sin ture, “Love your neighbor as yourself,” doing well. 10 and are convicted by the law as transgressors. 11 Whoever keeps the whole law but stumbles at c For just one point is guilty of breaking all of it. He who said, “Do not commit adultery,” also If you do not commit said, “Do not murder.” adultery, but do commit murder, you have be- 12 come a lawbreaker. d 13 Speak and act as those who are going to be For judg- judged by the law that gives freedom. ment without mercy will be shown to anyone who has not been merciful. Mercy triumphs over Faith and Works" + }, + { + "verseNum": 8, + "text": "approximately 20 dry quarts or 22 liters. Cited in" + }, + { + "verseNum": 11, + "text": "Cited in Matt. 5:27, h 17 g 16 Matt. 19:18," + }, + { + "verseNum": 14, + "text": "–26) Christ died for nothing. 3 Spirit by works of the law, or by hearing with 3 faith? 4 5 Are you so foolish? After starting in the Spirit, Have you suf- are you now finishing in the flesh? fered so much for nothing, if it really was for nothing? Does God lavish His Spirit on you and work miracles among you because you practice 6 the law, or because you hear and believe? c 7 8 So also, “Abraham believed God, and it was Understand, credited to him as righteousness.” then, that those who have faith are sons of Abra- The Scripture foresaw that God would jus- ham. tify the Gentiles by faith, and foretold the gospel d 9 to Abraham: “All nations will be blessed through you.” So those who have faith are blessed Christ Has Redeemed Us along with Abraham, the man of faith. 10 e 11 All who rely on works of the law are under a curse. For it is written: “Cursed is everyone who does not continue to do everything written in the Book of the Law.” Now it is clear that no one is justified before God by the law, because, “The righteous will live by faith.” The law, however, is not based on faith; on the contrary, “The man 13 who does these things will live by them.” 12 g f Christ redeemed us from the curse of the law h by becoming a curse for us. For it is written: 14 “Cursed is everyone who is hung on a tree.” i He redeemed us in order that the blessing promised to Abraham would come to the Gen- tiles in Christ Jesus, so that by faith we might re- The Purpose of the Law" + }, + { + "verseNum": 23, + "text": "and suddenly great terror and darkness over- 13 whelmed him. a 14 15 Then the LORD said to Abram, “Know for cer- tain that your descendants will be strangers in a land that is not their own, and they will be en- slaved and mistreated four hundred years. But I will judge the nation they serve as slaves, and afterward they will depart with many posses- You, however, will go to your fathers in sions. peace and be buried at a ripe old age. In the fourth generation your descendants will return here, for the iniquity of the Amorites is not yet 17 complete.” 16 18 When the sun had set and darkness had fallen, behold, a smoking firepot and a flaming torch appeared and passed between the halves of the On that day the LORD made a cove- carcasses. nant with Abram, saying, “To your descendants I 19 have given this land—from the river of Egypt to the land of the the great River Euphrates— 21 Kenites, Kenizzites, Kadmonites, Hittites, Amorites, Canaanites, Perizzites, Rephaites, Hagar and Ishmael Girgashites, and Jebusites.” 20 16 2 Now Abram’s wife Sarai had borne him no children, but she had an Egyptian So Sarai said to maidservant named Hagar. Abram, “Look now, the LORD has prevented me from bearing children. Please go to my maidser- 3 vant; perhaps I can build a family by her.” So af- And Abram listened to the voice of Sarai. ter he had lived in Canaan for ten years, his wife Sarai took her Egyptian maidservant Hagar and And he slept gave her to Abram to be his wife. with Hagar, and sh" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–12) For the choirmaster. A Psalm of David. 1 Hear, O God, my voice of complaint; 2 preserve my life from dread of the enemy. Hide me from the scheming of the 3 wicked, from the mob of workers of iniquity, who sharpen their tongues like swords and aim their bitter words like 4 arrows, A Psalm of David, when he was in the Wilderness of Judah. ambushing the innocent in seclusion, shooting suddenly, without fear. 5 1 O God, You are my God. Earnestly I seek You; my soul thirsts for You. My body yearns for You 2 in a dry and weary land without water. So I have seen You in the sanctuary 3 and beheld Your power and glory. Because Your loving devotion is better than 4 life, my lips will glorify You. 5 So I will bless You as long as I live; in Your name I will lift my hands. My soul is satisfied as with the richest of 6 foods; with joyful lips my mouth will praise You. When I remember You on my bed, I think of You through the watches of a 12 the night. Cited in" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 6, + "text": "and The Lord opposes the proud, but gives grace to the humble 580 |" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–6) he will not stand before obscure men. Saying 7 23 When you sit down to dine with a d 2 ruler, Oppressing the poor to enrich oneself or consider carefully what is set before you, giving gifts to the rich will surely lead to poverty. a 8 He whose eye is good LXX includes God blesses a cheerful and generous man, but foolish works will come to an end c 20 written for you excellent sayings and put a knife to your throat if you possess a great appetite. written for you three times d 1 b 9 who is before you Or or ; see also 2 Cor. 9:7. Lit. Or a 22 3 Saying 8 Do not crave his delicacies, for that food is deceptive. 4 Do not wear yourself out to get rich; 5 be wise enough to restrain yourself. When you glance at wealth, it disappears, Saying 9 for it makes wings for itself and flies like an eagle to the sky. 6 7 Do not eat the bread of a stingy man, and do not crave his delicacies; b for he is keeping track, inwardly counting the cost. “Eat and drink,” he says to you, 8 but his heart is not with you. You will vomit up what little you have eaten Saying 10 and waste your pleasant words. 9 Do not speak to a fool, for he will despise the wisdom of your Saying 11 words. 10 11 Do not move an ancient boundary stone or encroach on the fields of the fatherless, for their Redeemer is strong; Saying 12 He will take up their case against you. 12 Apply your heart to instruction Saying 13 and your ears to words of knowledge. 13 Do not withhold discipline from a child; 14 although you strike hi" + }, + { + "verseNum": 7, + "text": "–12) 1 3 2 There was a man in the land of Uz whose name was Job. And this man was blameless and upright, fearing God and shunning evil. He and he had seven sons and three daughters, owned 7,000 sheep, 3,000 camels, 500 yoke of oxen, 500 female donkeys, and a very large num- ber of servants. Job was the greatest man of all 4 the people of the East. Job’s sons would take turns holding feasts in their homes, and they would invite their three 5 sisters to eat and drink with them. And when the days of feasting were over, Job would send for his children to purify them, rising early in the morning to offer burnt offerings for all of them. For Job thought, “Perhaps my chil- dren have sinned and cursed God in their hearts.” Satan’s First Attack This was Job’s regular practice. 6 a One day the sons of God came to present them- also came selves before the LORD, and Satan 7 with them. “Where have you come from?” said the LORD to Satan. “From roaming through the earth,” he replied, 8 “and walking back and forth in it.” Then the LORD said to Satan, “Have you consid- ered My servant Job? For there is no one on earth like him, a man who is blameless and upright, 9 who fears God and shuns evil.” 10 11 Satan answered the LORD, “Does Job fear God Have You not placed a hedge on for nothing? every side around him and his household and all that he owns? You have blessed the work of his hands, and his possessions have increased in the But stretch out Your hand and strike all land. that he has, and" + }, + { + "verseNum": 11, + "text": "| 1087 Do Not Boast about Tomorrow" + }, + { + "verseNum": 12, + "text": "12 16 Above all, my brothers, do not swear, not by heaven or earth or by any other oath. Simply let your “Yes” be yes, and your “No,” no, so that you The Prayer of Faith will not fall under judgment. 13 14 Is any one of you suffering? He should pray. Is Is any anyone cheerful? He should sing praises. one of you sick? He should call the elders of the 15 church to pray over him and anoint him with oil in the name of the Lord. And the prayer offered in faith will restore the one who is sick. The Lord will raise him up. If he has sinned, he will be forgiven. 17 Therefore confess your sins to each other and pray for each other so that you may be healed. The prayer of a righteous man has great power Elijah was a man just like us. He to prevail. prayed earnestly that it would not rain, and it did 18 not rain on the land for three and a half years. Again he prayed, and the heavens gave rain, Restoring a Sinner and the earth yielded its crops. 19 My brothers, if one of you should wander from 20 the truth and someone should bring him back, consider this: Whoever turns a sinner from the error of his way will save his soul from death and cover over a multitude of sins. 1 Peter A Greeting from Peter" + } + ] + } + ] + }, + { + "name": "1 Peter", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–2) 1 Simon Peter, a servant and apostle of Jesus Christ, To those who through the righteousness of our God and Savior Jesus Christ have received a faith 2 as precious as ours: Grace and peace be multiplied to you through Partakers of the Divine Nature the knowledge of God and of Jesus our Lord. 3 a 4 His divine power has given us everything we need for life and godliness through the knowl- edge of Him who called us by His own glory and Through these He has given us His excellence. precious and magnificent promises, so that through them you may become partakers of the divine nature, now that you have escaped the 5 corruption in the world caused by evil desires. 8 7 For this very reason, make every effort to add 6 to your faith virtue; and to virtue, knowledge; and to knowledge, self-control; and to self- control, perseverance; and to perseverance, god- and to godliness, brotherly kindness; liness; and to brotherly kindness, love. For if you possess these qualities and continue to grow in them, they will keep you from being ineffective and unproductive in your knowledge of our Lord But whoever lacks these traits is Jesus Christ. nearsighted to the point of blindness, having for- gotten that he has been cleansed from his past 10 sins. 9 11 Therefore, brothers, strive to make your call- ing and election sure. For if you practice these and you will re- things you will never stumble, ceive a lavish reception into the eternal kingdom 12 of our Lord and Savior Jesus Christ. 13 There" + }, + { + "verseNum": 13, + "text": "–21) rather healed. 14 g Pursue peace with everyone, as well as holi- 15 ness, without which no one will see the Lord. See to it that no one falls short of the grace of 16 God, and that no root of bitterness springs up to cause trouble and defile many. See to it that no one is sexually immoral, or is godless like Esau, who for a single meal sold his birthright. For you know that afterward, when he wanted to in- herit the blessing, he was rejected. He could find no ground for repentance, though he sought the An Unshakable Kingdom blessing with tears." + }, + { + "verseNum": 16, + "text": "Cited in" + }, + { + "verseNum": 22, + "text": "–25) 6 A voice says, “Cry out!” And I asked, “What should I cry out?” “All flesh is like grass, 7 and all its glory like the flowers of the field. The grass withers and the flowers fall when the breath of the LORD blows 8 on them; indeed, the people are grass. e The grass withers and the flowers fall, Here Is Your God!" + }, + { + "verseNum": 24, + "text": "–25 Or 10 Behold, the Lord GOD comes with might, and His arm establishes His rule. 11 His reward is with Him, 23 He stretches out the heavens like a curtain, and spreads them out like a tent to dwell d in. and His recompense accompanies Him. He brings the princes to nothing" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–8) captured. 14 Therefore hear the word of the LORD, 15 O scoffers who rule this people in Jerusalem. For you said, “We have made a covenant with death; we have fashioned an agreement with Sheol. When the overwhelming scourge passes through it will not touch us, f because we have made lies our refuge and falsehood our hiding place.” So this is what the Lord GOD says: “See, I lay a stone in Zion, a tested stone, a precious cornerstone, a sure foundation; the one who believes will never be g 17 shaken. I will make justice the measuring line c 10 and righteousness the level. sav lasav sav lasav kav lakav kav lakav Or or e 11 For He says For it is ; literally d 10 Hebrew Or false gods That is, the northern kingdom of Israel; also in verse 3 will never be put to shame f 15 meaningless sounds to demonstrate an inability to understand); also in verse 13 g 16 ; Hebrew Cited in 1 Corinthians 14:21 (possibly Or LXX ; cited in" + }, + { + "verseNum": 6, + "text": "640 |" + }, + { + "verseNum": 7, + "text": "; also in verse 7; LXX save, we pray save now hosia-na f 25 g 26 h 27 Cited in" + }, + { + "verseNum": 8, + "text": "h 2 Or Or ; cited in" + }, + { + "verseNum": 10, + "text": ", Hebrew k 2 15 shekels are translated goodness Lo- , a homer of barley and a wineskin full of wine ; that is, a total of approximately 9.36 bushels or 330 is approximately 6 ounces or 171 grams of silver. liters (probably about 436 pounds or 198 kilograms of barley); LXX Or 810 |" + }, + { + "verseNum": 13, + "text": "–20) with good. 13 does not carry the sword in vain. He is God’s servant, an agent of retribution to the wrong- 5 doer. 6 Therefore it is necessary to submit to authority, not only to avoid punishment, but also as a mat- This is also why you pay taxes. ter of conscience. 7 For the authorities are God’s servants, who de- vote themselves to their work. Pay everyone what you owe him: taxes to whom taxes are due, revenue to whom revenue is due, respect to whom respect is due, honor to whom honor is Love Fulfills the Law" + }, + { + "verseNum": 21, + "text": "–25) not heard. 53 2 Who has believed our message? And to whom has the arm of the i LORD been revealed? He grew up before Him like a tender shoot, and like a root out of dry ground. He had no stately form or majesty to attract 3 us, no beauty that we should desire Him. He was despised and rejected by men, a man of sorrows, acquainted with grief. Like one from whom men hide their faces, He was despised, and we esteemed Him 4 not. j Surely He took up our infirmities and carried our sorrows; yet we considered Him stricken, 5 struck down by God, and afflicted. But He was pierced for our transgressions, He was crushed for our iniquities; the punishment that brought us peace was k 6 l and by His stripes we are healed. upon Him, 12 come out from it, purify yourselves, you who carry the vessels of the LORD. We all like sheep have gone astray, each one has turned to his own way; a 5 For you will not leave in a hurry wail nor flee in haste, c 7 startle Cited in" + }, + { + "verseNum": 22, + "text": "i 2 and strengthen your stakes Or . e 12 Or many j 9 f 12 numerous g 12 For this is like the Or Some manuscripts Cited in Luke 666 |" + }, + { + "verseNum": 24, + "text": "Cited in 2 Corinthians 6:17 l 6 Cited in" + }, + { + "verseNum": 25, + "text": "and the LORD has laid upon Him —on account of you My name is blasphemed continually among the Gentiles the iniquity of us all. e 13 will act wisely f 14 d 11 LXX For those who were not told will see, and those who have not heard will understand. This One bears our sins and is pained for us Or ; cited in Syriac; Hebrew Cited ; cited in 7 Future Blessings for Zion" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–7) 10 a The Friends 1 The Bride This is Solomon’s Song of Songs. 2 3 Let him kiss me with the kisses of his mouth! For your love is more delightful than wine. The fragrance of your perfume is pleasing; your name is like perfume poured out. No wonder the maidens adore you. 4 Take me away with you—let us hurry! The Friends May the king bring me to his chambers. We will rejoice and delight in you; The Bride we will praise your love more than wine. 5 It is only right that they adore you. I am dark, yet lovely, O daughters of Jerusalem, 6 like the tents of Kedar, like the curtains of Solomon. Do not stare because I am dark, for the sun has gazed upon me. My mother’s sons were angry with me; 7 they made me a keeper of the vineyards, but my own vineyard I have neglected. Tell me, O one I love, where do you pasture your sheep? Where do you rest them at midday? Why should I be like a veiled woman The Friends beside the flocks of your companions? 8 Your cheeks are beautiful with ornaments, your neck with strings of jewels. 11 The Bride We will make you ornaments of gold, studded with beads of silver. 12 13 While the king was at his table, my perfume spread its fragrance. My beloved is to me a sachet of myrrh 14 resting between my breasts. My beloved is to me a cluster of henna blos- soms The Bridegroom in the vineyards of En-gedi. 15 How beautiful you are, my darling! The Bride Oh, how very beautiful! Your eyes are like doves. 16 How handsome you are, my beloved! The Bridegroom Oh, ho" + }, + { + "verseNum": 10, + "text": "–12 Cited in" + }, + { + "verseNum": 14, + "text": "do not be shaken or Raise the war cry Be broken d 12 b 10 or e 14 Hebrew 22 They will roam the land, dejected and hungry. When they are famished, they will become en- raged; and looking upward, they will curse their king and their God. Then they will look to the earth and see only distress and darkness and the gloom of anguish. And they will be driven into ut- Unto Us a Child Is Born ter darkness. (Matt. 4:12–17 ;" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "–11) 23 d “Everything is permissible,” but not every- 24 thing is beneficial. “Everything is permissible,” No one should but not everything is edifying. 25 seek his own good, but the good of others. 26 Eat anything sold in the meat market without for, “The earth raising questions of conscience, 27 is the Lord’s, and the fullness thereof.” e 28 If an unbeliever invites you to a meal and you want to go, eat anything set before you without But if some- raising questions of conscience. one tells you, “This food was offered to idols,” f then do not eat it, for the sake of the one who told you and for the sake of conscience— the other one’s conscience, I mean, not your own. For why should my freedom be determined by someone If I partake in the meal with else’s conscience? thankfulness, why am I denounced because of 31 that for which I give thanks? 30 29 32 test the Lord So whether you eat or drink or whatever you d 23 the destroyer Do not become do, do it all to the glory of God. and for the sake of conscience—for the earth is the “All things c 10 Literally Or BYZ and TR 33 a stumbling block, whether to Jews or Greeks or as I also try to please eve- the church of God— ryone in all I do. For I am not seeking my own good, but the good of many, that they may be Roles in Worship saved. 11 2 You are to imitate me, just as I imitate Christ. 3 Now I commend you for remembering me in everything and for maintaining the traditions, But I want you just as I passed them on to you. to understan" + }, + { + "verseNum": 8, + "text": "down. 12 28" + }, + { + "verseNum": 13, + "text": "| 1091 f 21 In the ark a few people, only eight souls, were And this water symbol- saved through water. izes the baptism that now saves you also—not the removal of dirt from the body, but the pledge a clear conscience toward God—through the of who has gone into resurrection of Jesus Christ, heaven and is at the right hand of God, with an- Living for God’s Glory gels, authorities, and powers subject to Him. (1 Corinthians 10:23–33) 22 g 2 in His Therefore, since Christ suffered body, arm yourselves with the same resolve, because anyone who has suffered in his body is Consequently, he does not live done with sin. out his remaining time on earth for human pas- For you have spent sions, but for the will of God. enough time in the past carrying out the same de- sires as the Gentiles: living in debauchery, lust, drunkenness, orgies, carousing, and detestable 4 idolatry. 3 5 Because of this, they consider it strange of you not to plunge with them into the same flood of reckless indiscretion, and they heap abuse on But they will have to give an account to you. 6 Him who is ready to judge the living and the h That is why the gospel was preached even dead. to those who are now dead, so that they might be judged as men in the flesh, but live according 7 to God in the spirit. 8 The end of all things is near. Therefore be clear- minded and sober, so that you can pray. Above i all, love one another deeply, because love covers over a multitude of sins. Show hospitality to 10 one another wit" + }, + { + "verseNum": 14, + "text": "that you share in the sufferings of Christ, so that you may be overjoyed at the revelation of His 14 glory. a 15 16 If you are insulted for the name of Christ, you Spirit of glory and of are blessed, because the God rests on you. Indeed, none of you should suffer as a murderer or thief or wrongdoer, or But if you suffer as a Chris- even as a meddler. 17 tian, do not be ashamed, but glorify God that you bear that name. For it is time for judgment to begin with the family of God; and if it begins with 18 us, what will the outcome be for those who diso- bey the gospel of God? And, b “If it is hard for the righteous to be saved, c 19 what will become of the ungodly and the sinner?” So then, those who suffer according to God’s will should entrust their souls to their faithful Instructions to Elders Creator and continue to do good. (1 Timothy 3:1–7 ;" + }, + { + "verseNum": 18, + "text": "586 |" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–4) c 3 2 This is a trustworthy saying: If anyone as- pires to be an overseer, he desires a noble task. An overseer, then, must be above re- proach, the husband of but one wife, temperate, 3 self-controlled, respectable, hospitable, able to not dependent on wine, not violent but teach, 4 gentle, peaceable, and free of the love of money. d 6 5 An overseer must manage his own household well and keep his children under control, with For if someone does not know complete dignity. how to manage his own household, how can he He must not be a re- care for the church of God? cent convert, or he may become conceited and 7 fall under the same condemnation as the devil. Furthermore, he must have a good reputation with outsiders, so that he will not fall into dis- Qualifications for Deacons grace and into the snare of the devil." + }, + { + "verseNum": 5, + "text": "Or LXX 7 you; love her, and she will guard you. c Wisdom is supreme; so acquire wisdom. gain And whatever you may acquire, 8 understanding. Prize her, and she will exalt you; 9 if you embrace her, she will honor you. She will set a garland of grace on your head; she will present you with a crown of 10 beauty.” 11 Listen, my son, and receive my words, and the years of your life will be many. 12 I will guide you in the way of wisdom; I will lead you on straight paths. When you walk, your steps will not be 13 impeded; when you run, you will not stumble. 14 Hold on to instruction; do not let go. Guard it, for it is your life. 15 Do not set foot on the path of the wicked or walk in the way of evildoers. 16 Avoid it; do not travel on it. Turn from it and pass on by. For they cannot sleep unless they do evil; 17 they are deprived of slumber 18 until they make someone fall. For they eat the bread of wickedness and drink the wine of violence. The path of the righteous is like the first gleam of dawn, 19 shining brighter and brighter until midday. But the way of the wicked is like the darkest gloom; 20 they do not know what makes them stumble. 21 My son, pay attention to my words; incline your ear to my sayings. 22 Do not lose sight of them; keep them within your heart. 23 For they are life to those who find them, 24 and health to the whole body. Guard your heart with all diligence, for from it flow springs of life. Put away deception from your mouth; keep your lips from perverse speec" + } + ] + } + ] + }, + { + "name": "2 Peter", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–2) 1 Peter, an apostle of Jesus Christ, a To the elect who are exiles of the Dispersion 2 throughout Pontus, Galatia, Cappadocia, Asia, according to the fore- and Bithynia, chosen knowledge of God the Father and sanctified by the Spirit for obedience to Jesus Christ and sprin- kling by His blood: A Living Hope Grace and peace be yours in abundance. 3 b 4 Blessed be the God and Father of our Lord Jesus Christ! By His great mercy He has given us into a living hope through the resur- new birth and into rection of Jesus Christ from the dead, 5 an inheritance that is imperishable, undefiled, who and unfading, reserved in heaven for you, through faith are shielded by God’s power for the salvation that is ready to be revealed in the last 6 time. 7 In this you greatly rejoice, though now for a lit- tle while you may have had to suffer grief in var- so that the proven character of your ious trials faith—more precious than gold, which perishes even though refined by fire—may result in praise, glory, and honor at the revelation of Jesus 8 Christ. 9 Though you have not seen Him, you love Him; and though you do not see Him now, you believe in Him and rejoice with an inexpressible and glo- now that you are receiving the goal of rious joy, 10 your faith, the salvation of your souls. Concerning this salvation, the prophets who 11 foretold the grace to come to you searched and trying to determine the investigated carefully, time and setting to which the Spirit of Christ in them was pointing" + }, + { + "verseNum": 16, + "text": "–21) 17 After six days Jesus took with Him Peter, James, and John the brother of James, 2 and led them up a high mountain by themselves. There He was transfigured before them. His face shone like the sun, and His clothes became 3 as white as the light. 4 Suddenly Moses and Elijah appeared before them, talking with Jesus. Peter said to Jesus, c “Lord, it is good for us to be here. If You wish, I —one for You, one for will put up three shelters 5 Moses, and one for Elijah.” d While Peter was still speaking, a bright cloud enveloped them, and a voice from the cloud said, “This is My beloved Son, in whom I am well When the disciples pleased. 7 heard this, they fell facedown in terror. Listen to Him!” 6 8 Then Jesus came over and touched them. “Get And when they up,” He said. “Do not be afraid.” 9 looked up, they saw no one except Jesus. As they were coming down the mountain, Jesus commanded them, “Do not tell anyone about this vision until the Son of Man has been raised from 10 the dead.” The disciples asked Him, “Why then do the 11 scribes say that Elijah must come first?” 12 Jesus replied, “Elijah does indeed come, and he But I tell you that Elijah will restore all things. has already come, and they did not recognize him, but have done to him whatever they wished. In the same way, the Son of Man will suffer at 13 their hands.” Then the disciples understood that He was The Boy with a Demon speaking to them about John the Baptist." + }, + { + "verseNum": 17, + "text": "17 2 3" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 5, + "text": "5 a 6 if He did not spare the ancient world judgment; when He brought the flood on its ungodly people, but preserved Noah, a preacher of righteousness, if He condemned the cities of among the eight; Sodom and Gomorrah to destruction, reducing b 7 them to ashes as an example of what is coming and if He rescued Lot, a right- on the ungodly; 8 eous man distressed by the depraved conduct of the lawless (for that righteous man, living among them day after day, was tormented in his righteous soul by the lawless deeds he saw and if all this is so, then the Lord knows heard)— how to rescue the godly from trials and to hold the unrighteous for punishment on the day of 10 judgment. 9 Such punishment is specially reserved for those who indulge the corrupt desires of the c flesh and despise authority. Bold and self-willed, 11 they are unafraid to slander glorious beings. Yet not even angels, though greater in strength and power, dare to bring such slanderous 12 charges against them before the Lord. These men are like irrational animals, crea- tures of instinct, born to be captured and de- stroyed. They blaspheme in matters they do not understand, and like such creatures, they too will The harm they will suffer is the be destroyed. wages of their wickedness. 13 14 They consider it a pleasure to carouse in broad daylight. They are blots and blemishes, reveling Their in their deception as they feast with you. eyes are full of adultery; their desire for sin is never satisfied; they seduce th" + }, + { + "verseNum": 22, + "text": "b 23 smooth and do not go to your brother’s house in the day of your calamity; 11 better a neighbor nearby than a brother far away. 12 Be wise, my son, and bring joy to my heart, so that I can answer him who taunts me. The prudent see danger and take cover, but the simple keep going and pay the 13 penalty. Take the garment of him who posts security a 14 for a stranger; get collateral if it is for a foreigner." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–7) commanded him. 7 Then the LORD said to Noah, “Go into the ark, you and all your family, because I have You are found you righteous in this generation. a 12 c 15 all flesh 2 f 3 to take with you seven pairs of every kind of clean animal, a male and its mate; a pair of every kind of unclean animal, a male and its mate; and seven pairs of every kind of bird of the air, male 4 and female, to preserve their offspring on the For seven days from now I face of all the earth. will send rain on the earth for forty days and forty nights, and I will wipe from the face of the 5 earth every living thing I have made.” And Noah did all that the LORD had com- 6 manded him. 7 Now Noah was 600 years old when the flood- And Noah and his waters came upon the earth. wife, with his sons and their wives, entered 8 the ark to escape the waters of the flood. The clean and unclean animals, the birds, and came everything that crawls along the ground to Noah to enter the ark, two by two, male and 10 female, as God had commanded Noah. 9 11 And after seven days the floodwaters came In the six hundredth year of upon the earth. Noah’s life, on the seventeenth day of the second month, all the fountains of the great deep burst forth, and the floodgates of the heavens were And the rain fell upon the earth for opened. 13 forty days and forty nights. 12 14 On that very day Noah entered the ark, along with his sons Shem, Ham, and Japheth, and his wife, and the three wives of his sons— they and every kind of wi" + }, + { + "verseNum": 3, + "text": ". Revelation Prologue" + }, + { + "verseNum": 8, + "text": ". Or Hebrew Cited in" + }, + { + "verseNum": 18, + "text": "| 1095 16 b He wrote you with the wisdom God gave him. writes this way in all his letters, speaking in them about such matters. Some parts of his let- c ters are hard to understand, which ignorant and as they do the rest of unstable people distort, 17 the Scriptures, to their own destruction. Therefore, beloved, since you already know these things, be on your guard so that you will not be carried away by the error of the lawless and fall from your secure standing. But grow in the grace and knowledge of our Lord and Sav- ior Jesus Christ. To Him be the glory both now and to the day of eternity. 18 d Consider also that our Lord’s patience brings salvation, just as our beloved brother Paul also Amen. a 14 d 18 to be found by Him in peace, without spot and without blemish. Amen. b 16 in all the letters c 16 will distort Or NE, WH, and NA do not include Or NA 1 John 5 The Word of Life" + } + ] + } + ] + }, + { + "name": "Jude", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–2) 1 James, a servant of God and of the Lord Jesus Christ, a To the twelve tribes of the Dispersion: Rejoicing in Trials" + }, + { + "verseNum": 3, + "text": "–16) 21 2 2 Now there were also false prophets among the people, just as there will be false teach- ers among you. They will secretly introduce destructive heresies, even denying the Master who bought them—bringing swift destruction Many will follow in their de- on themselves. pravity, and because of them the way of truth will be defamed. In their greed, these false teachers will exploit you with deceptive words. The longstanding verdict against them remains in 4 force, and their destruction does not sleep. 3 d For if God did not spare the angels when they sinned, but cast them deep into hell, placing c 17 them in chains of darkness to be held for" + }, + { + "verseNum": 17, + "text": "–23) ing for sin is no longer needed. 19 d 20 Therefore, brothers, since we have confidence by the blood of Je- by the new and living way opened for us and since we c 17 let to enter the Most Holy Place sus, through the curtain of His body, b 16 a 7 have a great priest over the house of God, f 30 the veil that is His flesh" + }, + { + "verseNum": 18, + "text": ". NA Bosor . i 8 Or SBL and WH See" + }, + { + "verseNum": 24, + "text": "–25) 25 Now to Him who is able to strengthen you by my gospel and by the proclamation of Jesus 26 Christ, according to the revelation of the mystery but now revealed and concealed for ages past made known through the writings of the proph- ets by the command of the eternal God, in order to lead all nations to the obedience that comes d to the only wise God be glory for- from faith ever through Jesus Christ! Amen. — 27 c a 20 Amen. c 26 Lord Jesus the obedience of faith b 23 d 27 24 May the grace of our Lord Jesus Christ be with you all. NA, NE, and WH Literally after" + } + ] + } + ] + }, + { + "name": "Revelation", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–3) his end with no one to help him. 12 “At that time Michael, the great prince who stands watch over your people, will rise up. There will be a time of distress, the likes of which will not have occurred from the begin- ning of nations until that time. But at that time your people—everyone whose name is found for a reward written in the book—will be delivered. Hebrew refer to the giving over of things or will thrust at him c 40 cherem Or or That is, people from the upper Nile region Or Forms of the Hebrew persons, either by destroying them or by giving them as an offering. 2 b a 3 And many who sleep in the dust of the earth will awake, some to everlasting life, but others to shame and everlasting contempt. Then the wise will shine like the brightness of the heav- and those who lead many to righteousness ens, 4 will shine like the stars forever and ever. c But you, Daniel, shut up these words and seal the book until the time of the end. Many will 5 roam to and fro, and knowledge will increase.” 6 Then I, Daniel, looked and saw two others standing there, one on this bank of the river and one on the opposite bank. One of them said to the man dressed in linen, who was above the wa- ters of the river, “How long until the fulfillment 7 of these wonders?” And the man dressed in linen, who was above the waters of the river, raised his right hand and his left hand toward heaven, and I heard him swear by Him who lives forever, saying, “It will" + }, + { + "verseNum": 13, + "text": ", and" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–7) There were about twelve men in all. 8 9 Then Paul went into the synagogue and spoke boldly there for three months, arguing persua- sively about the kingdom of God. But when some of them stubbornly refused to believe and publicly maligned the Way, Paul took his disci- ples and left the synagogue to conduct daily dis- cussions in the lecture hall of Tyrannus. This continued for two years, so that everyone who lived in the province of Asia, Jews and Greeks 11 alike, heard the word of the Lord. 10 b c 12 God did extraordinary miracles through the hands of Paul, and aprons that had touched him were taken to the Seven Sons of Sceva sick, and the diseases and evil spirits left them. 13 so that even handkerchiefs" + }, + { + "verseNum": 4, + "text": "4 16 5 But I have this against you: You have aban- Therefore, keep in doned your first love. mind how far you have fallen. Repent and perform the deeds you did at first. But if you do not repent, I will come to you and remove 6 your lampstand from its place. But you have this to your credit: You hate the works of the Nicolaitans, which I also 7 hate. He who has an ear, let him hear what the Spirit says to the churches. To the one who overcomes, I will grant the right to eat from the tree of life in the Paradise of God. To the Church in Smyrna 8 To the angel of the church in Smyrna write: These are the words of the First and the Last, 9 who died and returned to life. I know your affliction and your poverty— though you are rich! And I am aware of the slander of those who falsely claim to be Jews, 10 but are in fact a synagogue of Satan. Do not fear what you are about to suffer. Behold, the devil is about to throw some of you into prison to test you, and you will suf- fer tribulation for ten days. Be faithful even unto death, and I will give you the crown of 11 life. He who has an ear, let him hear what the Spirit says to the churches. The one who overcomes will not be harmed by the second death. To the Church in Pergamum 12 To the angel of the church in Pergamum write: These are the words of the One who holds 13 the sharp, double-edged sword. I know where you live, where the throne of Satan sits, yet you hold fast to My name. You did not deny your faith in Me, even in the days" + }, + { + "verseNum": 18, + "text": "–29) 11 12 We sailed from Troas straight to Samothrace, From and the following day on to Neapolis. 34 Silas, however, decided to b 33 33 Judas and Silas, who themselves were proph- ets, said much to encourage and strengthen the After spending some time there, they brothers. 35 were sent off by the brothers in peace to return But Paul and Bar- to those who had sent them. nabas remained at Antioch, along with many oth- ers, teaching and preaching the word of the Lord. a 24 in Asia remain there. b by saying that you must be circumcised and keep the law. c 6 BYZ and TR TR includes Literally ; Asia was a Roman province in what is now western Turkey. 994 |" + }, + { + "verseNum": 27, + "text": "; see also" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 7, + "text": ". DSS and LXX; MT Or that the strongholds of Canaan be Wail, O fleet of trading ships c 1 whom the seafarers have enriched destroyed. f 10 ; also in verse 14 DSS and some LXX 636 |" + }, + { + "verseNum": 14, + "text": "–22) 2 For I want you to know how much I am struggling for you and for those at Laodicea, 2 and for all who have not met me face to face, that they may be encouraged in heart, knit to- gether in love, and filled with the full riches of complete understanding, so that they may know the mystery of God, namely Christ, in whom are hidden all the treasures of wisdom and 4 knowledge. 3 a 5 I say this so that no one will deceive you by smooth rhetoric. For although I am absent from you in body, I am present with you in spirit, and I delight to see your orderly condition and firm Alive with Christ" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 4, + "text": "| 1105 the city of My God (the new Jerusalem that comes down out of heaven from My God), 13 and My new name. He who has an ear, let him hear what the To the Church in Laodicea" + }, + { + "verseNum": 5, + "text": "Worship of the Creator 5 a 6 of God. From the throne came flashes of lightning, rum- blings, and peals of thunder. Before the throne burned seven torches of fire. These are the seven spirits And before the throne was something like a sea of glass, as clear as crystal. In the center, around the throne, were four living 7 creatures, covered with eyes in front and back. The first living creature was like a lion, the sec- ond like a calf, the third had a face like a man, and And each the fourth was like an eagle in flight. of the four living creatures had six wings and was covered with eyes all around and within. Day and night they never stop saying: 8 “Holy, Holy, Holy, 9 is the Lord God Almighty, who was and is and is to come!” 10 And whenever the living creatures give glory, honor, and thanks to the One seated on the throne, who lives forever and ever, the twenty- four elders fall down before the One seated on the throne, and they worship Him who lives for- ever and ever. They cast their crowns before the 11 throne, saying: “Worthy are You, our Lord and God, to receive glory and honor and power, for You created all things; by Your will they exist and were The Lamb Takes the Scroll created.” 5 Then I saw a scroll in the right hand of the One seated on the throne. It had writing on And both sides and was sealed with seven seals. I saw a mighty angel proclaiming in a loud voice, “Who is worthy to break the seals and open the 3 scroll?” 2 4 But no one in heaven or on earth or unde" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 11, + "text": "| 1107 3 And when the Lamb opened the second seal, I 4 heard the second living creature say, “Come!” Then another horse went forth. It was bright red, and its rider was granted permission to take away peace from the earth and to make men slay The Third Seal: Famine one another. And he was given a great sword. 5 And when the Lamb opened the third seal, I heard the third living creature say, “Come!” 6 a Then I looked and saw a black horse, and its rider held in his hand a pair of scales. And I heard what sounded like a voice from among the four living creatures, saying, “A quart of wheat for a and three quarts of barley for a denar- denarius, The Fourth Seal: Death ius, and do not harm the oil and wine.” 7 And when the Lamb opened the fourth seal, I heard the voice of the fourth living creature say, 8 “Come!” Then I looked and saw a pale green horse. Its rider’s name was Death, and Hades followed close behind. And they were given authority over a fourth of the earth, to kill by sword, by famine, The Fifth Seal: The Martyrs by plague, and by the beasts of the earth. 9 10 And when the Lamb opened the fifth seal, I saw under the altar the souls of those who had been slain for the word of God and for the testimony And they cried out in a loud they had upheld. voice, “How long, O Lord, holy and true, until You judge those who dwell upon the earth and 11 avenge our blood?” Then each of them was given a white robe and told to rest a little while longer until the full num- ber of their" + }, + { + "verseNum": 12, + "text": "12 7 And they fell facedown before the throne and saying, “Amen! Blessing worshiped God, and glory and wisdom and thanks and honor and power and strength be to our God forever 13 and ever! Amen.” Then the first angel sounded his trumpet, and hail and fire mixed with blood were hurled down upon the earth. A third of the earth was burned up, along with a third of the trees and all the 8 green grass. Then one of the elders addressed me: “These in white robes,” he asked, “who are they, and 14 where have they come from?” “Sir,” I answered, “you know.” So he replied, “These are the ones who have come out of the great tribulation; they have washed their robes and made them white in the blood of the Lamb. For this reason, 15 they are before the throne of God and serve Him day and night in His temple; 16 and the One seated on the throne will spread His tabernacle over them. ‘Never again will they hunger, and never will they thirst; a 17 nor will the sun beat down upon them, nor any scorching heat.’ b For the Lamb in the center of the throne will be their shepherd. c ‘He will lead them to springs of living water,’ d and ‘God will wipe away every tear The Seventh Seal from their eyes.’ ” 8 2 When the Lamb opened the seventh seal, there was silence in heaven for about half an And I saw the seven angels who stand be- hour. 3 fore God, and they were given seven trumpets. Then another angel, who had a golden censer, came and stood at the altar. He was given much incense to offer, along with" + }, + { + "verseNum": 16, + "text": "DSS; MT Or Hebrew In the time of favor I heard You, and in the day of salvation I helped You; and the plunder of the tyrant will be retrieved; from the sea in their bosom e 12 h 24 the land of Sinim cited in 2 Cor. 6:2 of the righteous That is, a region in southern Egypt (from DSS); MT DSS, Syriac, and Vulgate (see also verse 25); MT 662 |" + }, + { + "verseNum": 17, + "text": ". Or This psalm is an acrostic poem, each verse beginning with the successive letters of the Hebrew alphabet. LXX, Syriac, and two Hebrew manuscripts; MT Literally or Or Cited in 1 Cor. 10:26 508 |" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "–11) woe. 3" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 4, + "text": ". their eye appearance 4.6 meters wide). Or them Or g 6 h 6 their The flying scroll was approximately 30 feet long and 15 feet wide (9.1 meters long and the one with the white horses after k 6 One Hebrew manuscript, LXX, and Syriac; most Hebrew manuscripts winds i 11 j 5 Hebrew Hebrew or (literally) That is, Babylonia Or Or 852 |" + }, + { + "verseNum": 5, + "text": "| 1109 3 Then he cried out in a loud voice on the land. like the roar of a lion. And when he cried out, the 4 seven thunders sounded their voices. When the seven thunders had spoken, I was about to put it in writing. But I heard a voice from heaven saying, “Seal up what the seven thunders 5 have said, and do not write it down.” Then the angel I had seen standing on the sea 6 and on the land lifted up his right hand to heaven. And he swore by Him who lives forever and ever, who created heaven and everything in it, the earth and everything in it, and the sea and 7 everything in it: “There will be no more delay! But in the days of the voice of the seventh angel, when he begins to sound his trumpet, the mys- tery of God will be fulfilled, just as He proclaimed 8 to His servants the prophets.” Then the voice that I had heard from heaven spoke to me again, saying, “Go, take the small scroll that lies open in the hand of the angel 9 standing on the sea and on the land.” And I went to the angel and said, “Give me the small scroll.” “Take it and eat it,” he said. “It will make your stomach bitter, but in your mouth it will be as 10 sweet as honey.” c So I took the small scroll from the angel’s hand and ate it, and it was as sweet as honey in my mouth. But when I had eaten it, my stomach 11 turned bitter. And they told me, “You must prophesy again about many peoples and nations and tongues The Two Witnesses and kings.” 11 2 Then I was given a measuring rod like a staff and was told, “G" + }, + { + "verseNum": 6, + "text": "6 enemies. In this way, anyone who wants to harm These witnesses have them must be killed. power to shut the sky so that no rain will fall dur- ing the days of their prophecy, and power to turn the waters into blood and to strike the earth with The Witnesses Killed and Raised every kind of plague as often as they wish. 7 8 When the two witnesses have finished their tes- timony, the beast that comes up from the Abyss will wage war with them, and will overpower Their bodies will lie in the street and kill them. of the great city—figuratively called Sodom and 9 Egypt—where their Lord was also crucified. For three and a half days all peoples and tribes and tongues and nations will view their bodies 10 and will not permit them to be laid in a tomb. And those who dwell on the earth will gloat over them and celebrate and send one another gifts, because these two prophets had tormented 11 them. 12 But after the three and a half days, the breath of life from God entered the two witnesses, and they stood on their feet, and great fear fell upon And the witnesses heard those who saw them. a loud voice from heaven saying, “Come up here.” And they went up to heaven in a cloud as their 13 enemies watched them. And in that hour there was a great earthquake, and a tenth of the city collapsed. Seven thousand were killed in the quake, and the rest were terri- 14 fied and gave glory to the God of heaven. The second woe has passed. Behold, the third The Seventh Trumpet woe is coming shortly. 15 T" + }, + { + "verseNum": 18, + "text": "." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 5, + "text": "and" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–10) 7 In the first year of the reign of Belshazzar over Babylon, Daniel had a dream, and vi- sions passed through his mind as he lay on his bed. He wrote down the dream, and this is the 2 summary of his account. Daniel declared: “In my vision in the night I looked, and suddenly the four winds of heaven were churning up the great sea. Then four great beasts came up out of the sea, each one dif- ferent from the others: 4 3 a The first beast was like a lion, and it had the wings of an eagle. I watched until its wings were torn off and it was lifted up from the ground and made to stand on two feet like a 5 man and given the mind of a man. Suddenly another beast appeared, which looked like a bear. It was raised up on one of its sides, and it had three ribs in its mouth between its teeth. So it was told, ‘Get up and 6 gorge yourself on flesh!’ Next, as I watched, suddenly another beast appeared. It was like a leopard, and on its back it had four wings like those of a bird. The beast also had four heads, and it was 7 given authority to rule. After this, as I watched in my vision in the night, suddenly a fourth beast appeared, and it was terrifying—dreadful and extremely strong—with large iron teeth. It devoured and crushed; then it trampled underfoot whatever was left. It was different from all 8 the beasts before it, and it had ten horns. While I was contemplating the horns, sud- denly another horn, a little one, came up among them, and three of the first horns were uprooted befor" + }, + { + "verseNum": 10, + "text": ". Some Hebrew manuscripts, LXX, and Syriac (see also" + }, + { + "verseNum": 17, + "text": "| 1111 5 6 The beast was given a mouth to speak arrogant and blasphemous words, and authority to act for 42 months. And the beast opened its mouth to speak blasphemies against God and to slander His name and His tabernacle—those who dwell 7 in heaven. Then the beast was permitted to wage war against the saints and to conquer them, and it 8 was given authority over every tribe and people And all who dwell on the and tongue and nation. earth will worship the beast—all whose names have not been written from the foundation of the world in the Book of Life belonging to the Lamb 9 who was slain. 10 b He who has an ear, let him hear: “If anyone is destined for captivity, c d into captivity he will go; if anyone is to die by the sword, by the sword he must be killed.” Here is a call for the perseverance and faith of the The Beast from the Earth saints. 11 12 Then I saw another beast rising out of the earth. This beast had two horns like a lamb, but And this beast exercised spoke like a dragon. all the authority of the first beast and caused the earth and those who dwell in it to worship the first beast, whose mortal wound had been 13 healed. 14 And the second beast performed great signs, even causing fire from heaven to come down to earth in the presence of the people. Because of the signs it was given to perform on behalf of the first beast, it deceived those who dwell on the earth, telling them to make an image to the beast that had been wounded by the sword and yet had The second" + }, + { + "verseNum": 18, + "text": "18 13 Here is a call for wisdom: Let the one who has insight calculate the number of the beast, for it is The Lamb and the 144,000 the number of a man, and that number is 666. a And I heard a voice from heaven telling me to write, “Blessed are the dead—those who die in the Lord from this moment on.” 14 Then I looked and saw the Lamb stand- ing on Mount Zion, and with Him 144,000 who had His name and His Father’s And I heard a name written on their foreheads. sound from heaven like the roar of many waters and the loud rumbling of thunder. And the sound 3 I heard was like harpists strumming their harps. 2 And they sang a new song before the throne and before the four living creatures and the elders. And no one could learn the song except the 4 144,000 who had been redeemed from the earth. These are the ones who have not been defiled with women, for they are virgins. They follow the Lamb wherever He goes. They have been re- deemed from among men as firstfruits to God and to the Lamb. And no lie was found in their The Three Angels and Babylon’s Fall mouths; they are blameless. 6 5 b 7 Then I saw another angel flying overhead, with the eternal gospel to proclaim to those who dwell on the earth—to every nation and tribe and tongue and people. And he said in a loud voice, “Fear God and give Him glory, because the hour of His judgment has come. Worship the One who made the heavens and the earth and the sea and 8 the springs of waters.” c Then a second angel followed, saying, “Fallen," + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 8, + "text": "and" + }, + { + "verseNum": 14, + "text": ". 802 |" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "–4) ning to end: 32 2 Give ear, O heavens, and I will speak; hear, O earth, the words of my mouth. Let my teaching fall like rain and my speech settle like dew, like gentle rain on new grass, 3 like showers on tender plants. For I will proclaim the name of the LORD. 4 Ascribe greatness to our God! He is the Rock, His work is perfect; all His ways are just. A God of faithfulness without injustice, a 5 sons of Israel e 15 Jeshurun righteous and upright is He. c 10 Cited in" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 2, + "text": "| 1113 by intense heat, and they cursed the name of God, who had authority over these plagues. Yet they 10 did not repent and give Him glory. 11 And the fifth angel poured out his bowl on the throne of the beast, and its kingdom was plunged into darkness, and men began to gnaw their and curse the God of heaven tongues in anguish for their pains and sores. Yet they did not repent 12 of their deeds. And the sixth angel poured out his bowl on the great river Euphrates, and its water was dried up 13 to prepare the way for the kings of the East. 14 And I saw three unclean spirits that looked like frogs coming out of the mouths of the dragon, the These are de- beast, and the false prophet. monic spirits that perform signs and go out to all the kings of the earth, to assemble them for battle 15 on the great day of God the Almighty. “Behold, I am coming like a thief. Blessed is the one who remains awake and clothed, so that he 16 will not go naked and let his shame be exposed.” And they assembled the kings in the place that The Seventh Bowl of Wrath in Hebrew is called Armageddon. 17 Then the seventh angel poured out his bowl into the air, and a loud voice came from the 18 throne in the temple, saying, “It is done!” And there were flashes of lightning, rumblings, peals of thunder, and a great earthquake the likes of which had not occurred since men were upon The the earth—so mighty was the great quake. great city was split into three parts, and the cities of the nations collapsed. An" + }, + { + "verseNum": 3, + "text": "3 15 4 And the angel carried me away in the Spirit into a wilderness, where I saw a woman sitting on a scarlet beast that was covered with blasphemous The names and had seven heads and ten horns. woman was dressed in purple and scarlet, and adorned with gold and precious stones and pearls. She held in her hand a golden cup full of abominations and the impurities of her sexual And on her forehead a mysterious immorality. name was written: 5 BABYLON THE GREAT, THE MOTHER OF PROSTITUTES The Mystery Explained AND OF THE ABOMINATIONS OF THE EARTH. 6 I could see that the woman was drunk with the blood of the saints and witnesses for Jesus. And I 7 was utterly amazed at the sight of her. “Why are you so amazed?” said the angel. “I will tell you the mystery of the woman and of the beast that carries her, which has the seven heads 8 and ten horns. The beast that you saw—it was, and now is no more, but is about to come up out of the Abyss and go to its destruction. And those who dwell on the earth whose names were not written in the Book of Life from the foundation of the world will marvel when they see the beast that was, and is 9 not, and yet will be. 10 This calls for a mind with wisdom. The seven heads are seven mountains on which the woman sits. There are also seven kings. Five have fallen, one is, and the other has not yet come. But when he does come, he must remain for only a 11 little while. 12 The beast that was, and now is not, is an eighth king, who belongs to the other seve" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "–8) escape?’ ” 21 This is the burden against the Desert by the Sea: Like whirlwinds sweeping through the Negev, 2 an invader comes from the desert, from a land of terror. A dire vision is declared to me: “The traitor still betrays, and the destroyer still destroys. Go up, O Elam! Lay siege, O Media! 3 I will put an end to all her groaning.” Therefore my body is filled with anguish. Pain grips me, like the pains of a woman in City of labor. That is, the upper Nile region; similarly in verses 4 and 5 Some MT manuscripts, DSS, and Vulgate; most MT manuscripts 634 |" + }, + { + "verseNum": 2, + "text": ". is a wordplay on , meaning . is another name for Edom. 12 The Burden against Tyre" + }, + { + "verseNum": 4, + "text": ". 736 |" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 3, + "text": "| 1115 9 Then the kings of the earth who committed sex- ual immorality and lived in luxury with her will weep and wail at the sight of the smoke rising In fear of her from the fire that consumes her. torment, they will stand at a distance and cry out: 10 a “Woe, woe to the great city, the mighty city of Babylon! For in a single hour 11 your judgment has come.” 12 13 And the merchants of the earth will weep and mourn over her, because there is no one left to cargo of gold, silver, pre- buy their cargo— cious stones, and pearls; of fine linen, purple, silk, and scarlet; of all kinds of citron wood and every article of ivory, precious wood, bronze, iron, and of cinnamon, spice, incense, myrrh, marble; and frankincense; of wine, olive oil, fine flour, and wheat; of cattle, sheep, horses, and carriages; And they will of bodies and souls of slaves. say: 14 b “The fruit of your soul’s desire has departed from you; all your luxury and splendor have vanished, 15 never to be seen again.” The merchants who sold these things and gained their wealth from her will stand at a dis- tance, in fear of her torment. They will weep and mourn, saying: 16 “Woe, woe to the great city, clothed in fine linen and purple and scarlet, 17 adorned with gold and precious stones and pearls! For in a single hour such fabulous wealth has been destroyed!” Rejoice over her, O heaven, and you saints and apostles and prophets, because God has pronounced for you The Doom of Babylon His judgment against her. 21 Then" + }, + { + "verseNum": 4, + "text": "4 c And the twenty-four elders and the four living creatures fell down and worshiped God who sits on the throne, saying: 5 “Amen, Hallelujah!” Then a voice came from the throne, saying: 16 will rule them with an iron scepter. He treads the winepress of the fury of the wrath of God the And He has a name written on His Almighty. robe and on His thigh: Defeat of the Beast and False Prophet KING OF KINGS AND LORD OF LORDS. “Praise our God, all you who serve Him, and those who fear Him, The Marriage of the Lamb small and great alike!” 6 And I heard a sound like the roar of a great mul- titude, like the rushing of many waters, and like a mighty rumbling of thunder, crying out: “Hallelujah! 7 For the Lord our God a the Almighty reigns. Let us rejoice and be glad and give Him the glory. For the marriage of the Lamb has come, 8 and His bride has made herself ready. She was given clothing of fine linen, bright and pure.” For the fine linen she wears is the righteous acts 9 of the saints. Then the angel told me to write, “Blessed are those who are invited to the marriage supper of the Lamb.” And he said to me, “These are the true 10 words of God.” So I fell at his feet to worship him. But he told me, “Do not do that! I am a fellow servant with you and your brothers who rely on the testimony of Jesus. Worship God! For the testimony of Jesus The Rider on the White Horse is the spirit of prophecy.” 11 Then I saw heaven standing open, and there before me was a white horse. And its rider is" + }, + { + "verseNum": 15, + "text": ". term; here and throughout the Psalms. LXX You will rule them You will shepherd them e 9 Cited in" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "–8) and hidden from My sight. 17 For behold, I will create new heavens and a new earth. a 18 The former things will not be remembered, nor will they come to mind. But be glad and rejoice forever in what I create; 19 for I will create Jerusalem to be a joy and its people to be a delight. I will rejoice in Jerusalem and take delight in My people. The sounds of weeping and crying will no longer be heard in her. 20 No longer will a nursing infant live but a few days, or an old man fail to live out his years. For the youth will die at a hundred years, and he who fails to reach a hundred will be considered accursed. 21 They will build houses and dwell in them; they will plant vineyards and eat their 22 fruit. No longer will they build houses for others to inhabit, nor plant for others to eat. For as is the lifetime of a tree, so will be the days of My people, and My chosen ones will fully enjoy 23 the work of their hands. They will not labor in vain or bear children doomed to disaster; for they will be a people blessed by the 24 LORD— they and their descendants with them. Even before they call, I will answer, 25 and while they are still speaking, I will hear. a 17 The wolf and the lamb will feed together, and the lion will eat straw like the ox, a new heaven and a new earth c 2 snake They will neither harm nor destroy on all My holy mountain,” says the LORD. Heaven Is My Throne 66 This is what the LORD says: “Heaven is My throne, and earth is My footstool. What kind of house will y" + }, + { + "verseNum": 4, + "text": "638 |" + }, + { + "verseNum": 16, + "text": "| 1117 Blessed and holy are the first resurrection. those who share in the first resurrection! The second death has no power over them, but they will be priests of God and of Christ and will reign Satan Cast into the Lake of Fire with Him for a thousand years. 7 8 When the thousand years are complete, Satan and will go out will be released from his prison, to deceive the nations in the four corners of the earth—Gog and Magog—to assemble them for battle. Their number is like the sand of the sea- 9 shore. a 10 and consumed them. And they marched across the broad expanse of the earth and surrounded the camp of the saints and the beloved city. But fire came down from And the devil heaven who had deceived them was thrown into the lake of fire and sulfur, into which the beast and the false prophet had already been thrown. There they will be tormented day and night forever and Judgment before the Great White Throne ever. 11 Then I saw a great white throne and the One seated on it. Earth and heaven fled from His pres- And I ence, and no place was found for them. saw the dead, great and small, standing before the throne. 12 And books were opened, and one of them was the Book of Life. And the dead were judged according The to their deeds, as recorded in the books. sea gave up its dead, and Death and Hades gave up their dead, and each one was judged accord- 14 ing to his deeds. 13 15 Then Death and Hades were thrown into the lake of fire. This is the second death—the lake of And if anyo" + }, + { + "verseNum": 17, + "text": "a 17 width the same as its length. And he measured the city with the rod, and all its dimensions were equal—12,000 stadia in length and width and b height. And he measured its wall to be 144 cu- 18 by the human measure the angel was using. bits, 19 The wall was made of jasper, and the city The foun- itself of pure gold, as pure as glass. dations of the city walls were adorned with every kind of precious stone: The first foundation was jasper, the second sapphire, the third chalcedony, 20 the fourth emerald, the fifth sardonyx, the sixth carnelian, the seventh chrysolite, the eighth beryl, the ninth topaz, the tenth chrysoprase, the eleventh jacinth, 21 and the twelfth amethyst. And the twelve gates were twelve pearls, with each gate consisting of a single pearl. The main 22 street of the city was pure gold, as clear as glass. 24 But I saw no temple in the city, because the 23 Lord God Almighty and the Lamb are its temple. And the city has no need of sun or moon to shine on it, because the glory of God illuminates By its light the city, and the Lamb is its lamp. 25 the nations will walk, and into it the kings of the Its gates will earth will bring their glory. never be shut at the end of the day, because there 26 will be no night there. 27 c And into the city will be brought the glory and But nothing unclean will honor of the nations. ever enter it, nor anyone who practices an abom- ination or a lie, but only those whose names are The River of Life written in the Lamb’s Book o" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 21, + "text": "| 1119 the words of this book of prophecy, God will take away his share in the tree of life and the holy city, 20 which are described in this book. He who testifies to these things says, “Yes, I am 21 coming soon.” Amen. Come, Lord Jesus! a b The grace of the Lord Jesus c saints. be with all the Amen. a 21 c 21 the Lord Jesus Christ our Lord Jesus Christ b 21 the saints Amen. WH and BYZ SBL, WH, NE, and NA do not include ; TR SBL, WH, NE, and TR do not include . Lengths Table of Weights and Measures Finger Handbreadth (4 fingers) Span Cubit Long Cubit Rod (6 long cubits) Fathom Weights Stadion 0.73 inches 2.92 inches 9 inches 18 inches 21 inches 10.5 feet 6 feet 607 feet 1.85 centimeters 7.42 centimeters 22.86 centimeters 45.72 centimeters 53.34 centimeters 3.20 meters 1.83 meters 185 meters Gerah (1/20 shekel) Beka (1/2 shekel) Pim (2/3 shekel) Shekel (20 gerahs) Mina (50 shekels) Talent (60 minas) Liquid Measures Litra (Roman Pound) 0.0201 ounces 0.201 ounces 0.268 ounces 0.402 ounces 1.256 pounds 75.4 pounds 12 ounces 0.57 grams 5.70 grams 7.60 grams 11.4 grams 0.57 kilograms 34.2 kilograms 340 grams Log Hin (12 logs) Bath (6 hins) Homer (10 baths) Cor (10 baths) Bath (NT) Dry Measures Metretes (NT) Cab (1/18 ephah) Omer (1/10 ephah) Seah (1/3 ephah) Ephah (10 omers) Lethech (5 ephahs) Homer (10 ephahs) Cor (10 ephahs) Cor (NT) 0.33 quarts 0.98 gallons 5.8 gallons 58 gallons 58 gallons 8.7 gallons 10.4 gallons 1.1 dry quarts 2.0 dry quarts 6.7 dry quarts 0.624 bushels 3.12" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB_MD/old_testament.json b/data/en_bible/BSB_MD/old_testament.json new file mode 100644 index 0000000..54fbf58 --- /dev/null +++ b/data/en_bible/BSB_MD/old_testament.json @@ -0,0 +1,8615 @@ +{ + "testament": "Old Testament", + "books": [ + { + "name": "Genesis", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–2 ;" + }, + { + "verseNum": 3, + "text": "Or SBL, NE, and WH Or" + }, + { + "verseNum": 6, + "text": "–8. Proverbs The Beginning of Knowledge (Prov. 9:1–12) 18 1 These are the proverbs of Solomon son of 2 David, king of Israel, for gaining wisdom and discipline, 3 for comprehending words of insight, and for receiving instruction in wise living a 4 and in righteousness, justice, and equity. To impart prudence to the simple 5 and knowledge and discretion to the young, let the wise listen and gain instruction, 6 and the discerning acquire wise counsel by understanding the proverbs and parables, the sayings and riddles of the wise. 7 The fear of the LORD is the beginning of b knowledge, The Enticement of Sin but fools despise wisdom and discipline. 8 Listen, my son, to your father’s instruction, and do not forsake the teaching of your 9 mother. For they are a garland of grace on your head 10 and a pendant around your neck. 11 My son, if sinners entice you, do not yield to them. If they say, “Come along, let us lie in wait for 12 blood, let us ambush the innocent without cause, let us swallow them alive like Sheol, 13 and whole like those descending into the Pit. 14 We will find all manner of precious goods; we will fill our houses with plunder. Throw in your lot with us; 15 let us all share one purse”— my son, do not walk the road with them 16 or set foot upon their path. 17 For their feet run to evil, and they are swift to shed blood. How futile it is to spread the net simple where any bird can see it! fool a 4 b 7 19 But they lie in wait for their own blood; they ambush their o" + }, + { + "verseNum": 26, + "text": "26 7 Then God said, “Let Us make man in Our image, after Our likeness, to rule over the fish of the sea and the birds of the air, over the and livestock, and over all the earth itself every creature that crawls upon it.” a 27 So God created man in His own image; in the image of God He created him; male and female He created them. b 28 God blessed them and said to them, “Be fruitful and multiply, and fill the earth and subdue it; rule over the fish of the sea and the birds of the air and every creature that 29 crawls upon the earth.” 30 Then God said, “Behold, I have given you every seed-bearing plant on the face of all the earth, and every tree whose fruit contains And to seed. They will be yours for food. every beast of the earth and every bird of the air and every creature that crawls upon the earth—everything that has the breath of life in it—I have given every green plant for 31 food.” And it was so. And God looked upon all that He had made, and indeed, it was very good. And there was evening, and there was morn- The Seventh Day (Ex. 16:22–30 ; Heb. 4:1–11) ing—the sixth day. 2 2 Thus the heavens and the earth were com- And by the pleted in all their vast array. seventh day God had finished the work He had c been doing; so on that day He rested from all His 3 work. Then God blessed the seventh day and sancti- fied it, because on that day He rested from all the Man and Woman in the Garden work of creation that He had accomplished. 4 d This is the account of the heavens and" + }, + { + "verseNum": 27, + "text": ";" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–3 ;" + }, + { + "verseNum": 2, + "text": "" + }, + { + "verseNum": 7, + "text": "Or" + }, + { + "verseNum": 24, + "text": "(see also LXX) ; see" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–7) 12 13 Therefore, just as sin entered the world through one man, and death through sin, so also death was passed on to all men, because all For sin was in the world before the law sinned. was given; but sin is not taken into account when there is no law. Nevertheless, death reigned from Adam until Moses, even over those who did not sin in the way that Adam transgressed. He is a pattern of the One to come. 14 e 1 let us have f 2 exult How then was it reckoned—being in circumcision, or in uncircumcision? Not in circumcision, but in uncircumci-" + }, + { + "verseNum": 19, + "text": "| 7 22 man’s ribs and closed up the area with flesh. And from the rib that the LORD God had taken 23 from the man, He made a woman and brought her to him. And the man said: “This is now bone of my bones and flesh of my flesh; she shall be called ‘woman,’ 24 for out of man she was taken.” For this reason a man will leave his father and mother and be united to his wife, and they will 25 become one flesh. b And the man and his wife were both naked, The Serpent’s Deception" + }, + { + "verseNum": 20, + "text": "until you return to the ground— because out of it were you taken. “I do not know!” he answered. “Am I my brother’s 10 keeper?” 20 For dust you are, a and to dust you shall return.” And Adam named his wife Eve, The Expulsion from Paradise would be the mother of all the living. 21 because she And the LORD God made garments of skin for 22 Adam and his wife, and He clothed them. Then the LORD God said, “Behold, the man has become like one of Us, knowing good and evil. And now, lest he reach out his hand and take also 23 from the tree of life, and eat, and live forever. . .” 24 Therefore the LORD God banished him from the Garden of Eden to work the ground from So He drove out the which he had been taken. man and stationed cherubim on the east side of the Garden of Eden, along with a whirling sword Cain and Abel" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 24, + "text": "LXX See" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–32 ; 10:1–32 ; 11:10–26) 1 2 Adam, Seth, Enosh, 3 4 Kenan, Mahalalel, Jared, a Enoch, Methuselah, Lamech, Noah. The sons of Noah: 5 Shem, Ham, and Japheth. The sons of Japheth: Gomer, Magog, Madai, Javan, Tubal, 6 Meshech, and Tiras. b The sons of Gomer: Ashkenaz, Riphath, 7 and Togarmah. 8 And the sons of Javan: Elishah, Tarshish, the Kittites, and the Rodanites. h i The sons of Aram: 18 Meshech. Uz, Hul, Gether, and Arphaxad was the father of Shelah, and 19 Shelah was the father of Eber. j Two sons were born to Eber: One was because in his days the named Peleg, earth was divided, and his brother was 20 named Joktan. 21 And Joktan was the father of Almodad, k 22 Sheleph, Hazarmaveth, Jerah, 23 Uzal, Diklah, Abimael, Sheba, Ophir, Havilah, and Jobab. All these Obal, Hadoram, 24 were sons of Joktan. 25 26 So from Shem came Arphaxad, Shelah, 27 Eber, Peleg, Reu, and Abram (that is, Abraham). Serug, Nahor, Terah, The Descendants of Abraham (Gen. 25:12–18) l The sons of Ham: 9 Cush, Mizraim, Put, and Canaan. 28 29 c The sons of Cush: Seba, Havilah, Sabta, Raamah, and Sabteca. 10 The sons of Raamah: Sheba and Dedan. d Cush was the father of Nimrod, who 11 began to be a mighty one on the earth. Mizraim was the father of the Ludites, 12 the Anamites, the Lehabites, the Naph- tuhites, (from whom the Philistines came), and 13 the Caphtorites. the Pathrusites, the Casluhites e f g 14 And Canaan was the father of Sidon and of the Hittites, his firstborn, the 15 Jebusites, the Amorites," + }, + { + "verseNum": 2, + "text": "Jesus Blesses the Children" + }, + { + "verseNum": 6, + "text": ". Greek Enōs f 12 h 19" + }, + { + "verseNum": 32, + "text": ". e 12 Many Hebrew manuscripts and Vulgate (see is a variant of of the Sidonians, the Some translators adjust the Hebrew word order to ; see" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–7 ;" + }, + { + "verseNum": 7, + "text": "| 9 21 22 e When Enoch was 65 years old, he became the father of Methuselah. And after he had become the father of Methuselah, Enoch walked with 23 God 300 years and had other sons and daugh- 24 ters. So Enoch lived a total of 365 years. f Enoch walked with God, and then he was no From Methuselah to Noah more, because God had taken him away. 25 26 When Methuselah was 187 years old, he be- came the father of Lamech. And after he had become the father of Lamech, Methuselah lived 27 782 years and had other sons and daughters. So Methuselah lived a total of 969 years, and 28 then he died. 29 g When Lamech was 182 years old, he had a son. saying, “May this And he named him Noah, one comfort us in the labor and toil of our hands 30 caused by the ground that the LORD has cursed.” And after he had become the father of Noah, Lamech lived 595 years and had other sons and daughters. So Lamech lived a total of 777 32 years, and then he died. 31 After Noah was 500 years old, he became the Corruption on the Earth" + }, + { + "verseNum": 8, + "text": "Noah’s Favor with God 8 Noah, however, found favor in the eyes of the 9 LORD. This is the account of Noah. Noah was a 10 righteous man, blameless in his generation; Noah walked with God. And Noah had three 11 sons: Shem, Ham, and Japheth. 12 Now the earth was corrupt in the sight of God, And God looked upon the and full of violence. a earth and saw that it was corrupt; for all living on the earth had corrupted their creatures Preparing the Ark" + }, + { + "verseNum": 15, + "text": "" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–24 ;" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 5, + "text": "| 11 Exiting the Ark 13 In Noah’s six hundred and first year, on the first day of the first month, the waters had dried up from the earth. So Noah removed the covering from the ark and saw that the surface of the By the twenty-seventh day of ground was dry. 15 the second month, the earth was fully dry. 14 16 17 Then God said to Noah, “Come out of the ark, you and your wife, along with your sons and their Bring out all the living creatures that wives. are with you—birds, livestock, and everything that crawls upon the ground—so that they can spread out over the earth and be fruitful and 18 multiply upon it.” 19 So Noah came out, along with his sons Every living and his wife and his sons’ wives. creature, every creeping thing, and every bird— everything that moves upon the earth—came out Noah Builds an Altar of the ark, kind by kind. 20 Then Noah built an altar to the LORD. And tak- ing from every kind of clean animal and clean 21 bird, he offered burnt offerings on the altar. When the LORD smelled the pleasing aroma, He said in His heart, “Never again will I curse the ground because of man, even though every incli- nation of his heart is evil from his youth. And never again will I destroy all living creatures as I 22 have done. As long as the earth endures, seedtime and harvest, cold and heat, summer and winter, day and night The Covenant of the Rainbow shall never cease.” 9 2 3 And God blessed Noah and his sons and said to them, “Be fruitful and multiply and fill the The fear" + }, + { + "verseNum": 6, + "text": "demand an accounting from anyone who takes 6 the life of his fellow man: Whoever sheds the blood of man, by man his blood will be shed; for in His own image 7 God has made mankind. But as for you, be fruitful and multiply; spread out across the earth and multiply upon it.” 8 9 11 10 Then God said to Noah and his sons with him, “Behold, I now establish My covenant with you and with and your descendants after you, every living creature that was with you— the birds, the livestock, and every beast of the earth—every living thing that came out of the And I establish My covenant with you: ark. Never again will all life be cut off by the waters of a flood; never again will there be a flood to 12 destroy the earth.” 13 And God said, “This is the sign of the covenant I am making between Me and you and every living creature with you, a covenant for all gen- I have set My rainbow in the erations to come: clouds, and it will be a sign of the covenant be- 14 tween Me and the earth. 15 Whenever I form clouds over the earth and the I will remem- rainbow appears in the clouds, ber My covenant between Me and you and every living creature of every kind. Never again will the And waters become a flood to destroy all life. whenever the rainbow appears in the clouds, I will see it and remember the everlasting cove- nant between God and every living creature of 17 every kind that is on the earth.” 16 So God said to Noah, “This is the sign of the covenant that I have established between Me and Noah’" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 3, + "text": "); most Hebrew manuscripts and the Caphtorites (from whom the Philistines came) Or foremost and of Heth h 17 g 13 ; see" + }, + { + "verseNum": 7, + "text": ". the Casluhites, f 13 Hebrew division j 19 Peleg most Hebrew manuscripts do not include Shelah k 22 means . . Shem, Arphaxad, Cainan, Shelah LXX and Syriac (see also" + }, + { + "verseNum": 23, + "text": "); Ebal is a variant of Shem, Arphaxad, Or ; see" + }, + { + "verseNum": 24, + "text": "LXX and" + }, + { + "verseNum": 28, + "text": "); Hebrew The sons of Aram ; see also" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "–9 ;" + }, + { + "verseNum": 11, + "text": "| 13 territory extended from Mesha to Sephar, in the 31 eastern hill country. These are the sons of Shem, according to their 32 clans, languages, lands, and nations. All these are the clans of Noah’s sons, accord- ing to their generations and nations. From these the nations of the earth spread out after the The Tower of Babel flood." + }, + { + "verseNum": 12, + "text": "12 13 When Arphaxad was 35 years old, he became And after he had become the father of Shelah. a the father of Shelah, Arphaxad lived 403 years 14 and had other sons and daughters. 15 When Shelah was 30 years old, he became And after he had become the the father of Eber. father of Eber, Shelah lived 403 years and had 16 other sons and daughters. 17 When Eber was 34 years old, he became the fa- And after he had become ther of Peleg. the father of Peleg, Eber lived 430 years and had 18 other sons and daughters. 19 When Peleg was 30 years old, he became the And after he had become the fa- father of Reu. ther of Reu, Peleg lived 209 years and had other 20 sons and daughters. 21 When Reu was 32 years old, he became the fa- And after he had become ther of Serug. the father of Serug, Reu lived 207 years and had 22 other sons and daughters. 23 When Serug was 30 years old, he became the And after he had become the father of Nahor. father of Nahor, Serug lived 200 years and had 24 other sons and daughters. 25 When Nahor was 29 years old, he became the And after he had become the father of Terah. father of Terah, Nahor lived 119 years and had 26 other sons and daughters. When Terah was 70 years old, he became the Terah’s Descendants father of Abram, Nahor, and Haran. 27 28 This is the account of Terah. Terah became the father of Abram, Nahor, and Haran. And Haran During his father became the father of Lot. Terah’s lifetime, Haran died in his native land, in 29 Ur of the Chaldeans. 32 Ter" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "–9) right. 26 Now there was another famine in the land, subsequent to the one that had oc- curred in Abraham’s time. And Isaac went to 2 Abimelech king of the Philistines at Gerar. 3 4 The LORD appeared to Isaac and said, “Do not go down to Egypt. Settle in the land where I tell you. Stay in this land as a foreigner, and I will be with you and bless you. For I will give all these lands to you and your offspring, and I will con- firm the oath that I swore to your father Abra- ham. I will make your descendants as numerous as the stars in the sky, and I will give them all these lands, and through your offspring all na- tions of the earth will be blessed, because Abra- ham listened to My voice and kept My charge, My Isaac Deceives Abimelech commandments, My statutes, and My laws.” 6 7 5 So Isaac settled in Gerar. But when the men of that place asked about his wife, he said, “She is my sister.” For he was afraid to say, “She is my wife,” since he thought to himself, “The men of this place will kill me on account of Rebekah, be- a 26 Jacob cause she is so beautiful.” d 20 Esek he grasps the heel contention he deceives b 30 Edom means means e 21 Sitnah or enmity . hostility . means or" + }, + { + "verseNum": 3, + "text": "," + }, + { + "verseNum": 6, + "text": "); Hebrew or or 28 burnt offerings on the altar of the LORD your God. The blood of your other sacrifices must be poured out beside the altar of the LORD your Be careful to God, but you may eat the meat. obey all these things I command you, so that it may always go well with you and your children after you, because you will be doing what is good A Warning against Idolatry and right in the eyes of the LORD your God." + }, + { + "verseNum": 7, + "text": ";" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 15, + "text": "b 14 d 8 e 10 Some translators close this quotation after verse 16 or 21. h 13" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 8, + "text": "| 15 11 well watered like the garden of the LORD, like the land of Egypt. (This was before the LORD de- stroyed Sodom and Gomorrah.) So Lot chose the whole plain of the Jordan for himself and set out toward the east. And Abram and Lot parted 12 company. 13 Abram lived in the land of Canaan, but Lot set- tled in the cities of the plain and pitched his tent But the men of Sodom were toward Sodom. God Renews the Promise to Abram wicked, sinning greatly against the LORD. 14 After Lot had departed, the LORD said to Abram, “Now lift up your eyes from the place where you are, and look to the north and south for all the land that you see, and east and west, 16 I will give to you and your offspring forever. 15 a I will make your offspring like the dust of the earth, so that if one could count the dust of the 17 earth, then your offspring could be counted. Get up and walk around the land, through its 18 length and breadth, for I will give it to you.” b So Abram moved his tent and went to live near of Mamre at Hebron, where he built an the Oaks The War of the Kings altar to the LORD. c 14 2 In those days Amraphel king of Shinar, Arioch king of Ellasar, Chedorlaomer king of Elam, and Tidal king of Goiim went to war against Bera king of Sodom, Birsha king of Gomorrah, Shinab king of Admah, Shemeber king 3 of Zeboiim, and the king of Bela (that is, Zoar). d 4 The latter five came as allies to the Valley of Sid- For twelve years dim (that is, the Salt Sea they had been subject to Chedorlaom" + }, + { + "verseNum": 9, + "text": "22 a 9 arrayed themselves for battle in the Valley of Sid- dim against Chedorlaomer king of Elam, Tidal king of Goiim, Amraphel king of Shinar, and Ari- Abram Rescues Lot och king of Ellasar—four kings against five. 10 Now the Valley of Siddim was full of tar pits, and as the kings of Sodom and Gomorrah fled, some men fell into the pits, but the survivors fled 11 to the hill country. 12 The four kings seized all the goods of Sodom and Gomorrah and all their food, and they went They also carried off Abram’s on their way. nephew Lot and his possessions, since Lot was 13 living in Sodom. c b 14 Then an escapee came and reported this to Abram the Hebrew. Now Abram was living near of Mamre the Amorite, a brother of the Oaks Eshcol and Aner, all of whom were bound by And when Abram heard that treaty his relative had been captured, he mobilized the 318 trained men born in his household, and they 15 set out in pursuit as far as Dan. to Abram. 16 During the night, Abram divided his forces and routed Chedorlaomer’s army, pursuing them as He retrieved far as Hobah, north of Damascus. all the goods, as well as his relative Lot and his possessions, together with the women and the Melchizedek Blesses Abram rest of the people." + }, + { + "verseNum": 17, + "text": "–24 ;" + }, + { + "verseNum": 18, + "text": "15 16 4" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "–7 ;" + }, + { + "verseNum": 5, + "text": "" + }, + { + "verseNum": 6, + "text": "" + }, + { + "verseNum": 8, + "text": "–21) planned to do to them.” 56 2 Then the LORD said to Moses, “Com- mand the Israelites and say to them: When you enter the land of Canaan, it will be al- lotted to you as an inheritance with these bound- 3 aries: 34 d 4 Your southern border will extend from the Wilderness of Zin along the border of Edom. On the east, your southern border will run e from the end of the Salt Sea, cross south of the Ascent of Akrabbim, continue to Zin, and go south of Kadesh-barnea. Then it will 5 go on to Hazar-addar and proceed to Azmon, where it will turn from Azmon, join the f 6 Brook of Egypt, and end at the Sea. Your western border will be the coastline of the Great Sea; this will be your boundary on 7 the west. 8 9 Your northern border will run from the and from Great Sea directly to Mount Hor, Mount Hor to Lebo-hamath, then extend to continue to Ziphron, and end at Zedad, Hazar-enan. This will be your boundary on 10 the north. 11 And your eastern border will run straight then go from Hazar-enan to Shepham, down from Shepham to Riblah on the east side of Ain and continue along the slopes east of the Sea of Chinnereth. Then the border will go down along the Jordan and end at the the mountains beyond the river Salt Sea. 12 g d 3 On the plains of Moab by the Jordan across from Jericho, the LORD said to Moses, “Speak 52 to the Israelites and tell them: When you cross the Jordan into the land of Canaan, you must a 45 Iyim drive out before you all the inhabitants of the c 49 the Ascent of Sco" + }, + { + "verseNum": 13, + "text": "–14;" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 15, + "text": "and" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 5, + "text": "| 17 8 Now the angel of the LORD found Hagar by a spring of water in the desert—the spring along “Hagar, servant of Sarai,” he the road to Shur. said, “where have you come from, and where are you going?” “I am running away from my mistress Sarai,” she 9 replied. So the angel of the LORD told her, “Return to 10 your mistress and submit to her authority.” Then the angel added, “I will greatly multiply your offspring so that they will be too numerous 11 to count.” The angel of the LORD proceeded: “Behold, you have conceived and will bear a d son. And you shall name him Ishmael, for the LORD has heard your cry of 12 affliction. He will be a wild donkey of a man, and his hand will be against everyone, and everyone’s hand against him; 13 he will live in hostility toward all his brothers.” e 14 So Hagar gave this name to the LORD who had spoken to her: “You are the God who sees me, ” for she said, “Here I have seen the One f Therefore the well was called who sees me!” It is located between Kadesh and Beer-lahai-roi. 15 Bered. And Hagar bore Abram a son, and Abram gave 16 the name Ishmael to the son she had borne. Abram was eighty-six years old when Hagar Abraham to Father Many Nations bore Ishmael to him. 17 g 2 When Abram was ninety-nine years old, the LORD appeared to him and said, “I Walk before Me and be am God Almighty. I will establish My covenant between blameless. 3 Me and you, and I will multiply you exceedingly.” 4 i 5 Then Abram fell facedown, and God said to him, “As for" + }, + { + "verseNum": 6, + "text": "6 I will make you exceedingly fruitful; I will make 7 nations of you, and kings will descend from you. I will establish My covenant as an everlasting covenant between Me and you and your de- scendants after you, to be your God and the God 8 of your descendants after you. And to you and your descendants I will give the land where you are residing—all the land of Canaan—as an eternal possession; and I will be The Covenant of Circumcision their God.” 9 10 God also said to Abraham, “You must keep My covenant—you and your descendants in the gen- erations after you. This is My covenant with you and your descendants after you, which you are to keep: Every male among you must be You are to circumcise the flesh of circumcised. your foreskin, and this will be a sign of the cove- 12 nant between Me and you. 11 13 Generation after generation, every male must be circumcised when he is eight days old, includ- ing those born in your household and those purchased from a foreigner—even those who are Whether they are born in not your offspring. your household or purchased, they must be cir- cumcised. My covenant in your flesh will be an 14 everlasting covenant. But if any male is not circumcised, he will be cut off from his people; he has broken My 15 covenant.” a 16 Then God said to Abraham, “As for Sarai your wife, do not call her Sarai, for her name is to be And I will bless her and will surely give Sarah. you a son by her. I will bless her, and she will be the mother of nations; kings of p" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 6, + "text": "" + }, + { + "verseNum": 14, + "text": "" + }, + { + "verseNum": 18, + "text": ", and" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "–11) 19 Now in those days, when there was no king in Israel, a Levite who lived in the remote hill country of Ephraim took for himself But she a concubine from Bethlehem in Judah. was unfaithful to him and left him to return to her father’s house in Bethlehem in Judah. 2 3 b her hus- After she had been there four months, band got up and went after her to speak kindly to her and bring her back, taking his servant and a pair of donkeys. So the girl brought him into her 4 father’s house, and when her father saw him, he His father-in-law, the gladly welcomed him. girl’s father, persuaded him to stay, so he re- mained with him three days, eating, drinking, 5 and lodging there. 6 On the fourth day, they got up early in the morn- ing and prepared to depart, but the girl’s father said to his son-in-law, “Refresh your heart with a So they morsel of bread, and then you can go.” sat down and the two of them ate and drank to- gether. Then the girl’s father said to the man, “Please agree to stay overnight and let your heart The man got up to depart, but his be merry.” father-in-law persuaded him, so he stayed there that night. the son of Manasseh 7 Some Hebrew and LXX manuscripts and Vulgate; other Hebrew and LXX manuscripts LXX 8 9 On the fifth day, he got up early in the morning to depart, but the girl’s father said, “Please re- fresh your heart.” So they waited until late after- When the man noon and the two of them ate. got up to depart with his concubine and his serv- ant, his father" + }, + { + "verseNum": 2, + "text": "| 19 9 “Where is your wife Sarah?” they asked. 10 “There, in the tent,” he replied. Then the LORD said, “I will surely return to you at this time next year, and your wife Sarah will have a son!” 11 Now Sarah was behind him, listening at the en- And Abraham and Sarah trance to the tent. were already old and well along in years; Sarah had passed the age of childbearing. So she laughed to herself, saying, “After I am worn out and my master is old, will I now have this pleas- 13 ure?” 12 14 And the LORD asked Abraham, “Why did Sarah laugh and say, ‘Can I really bear a child when I am Is anything too difficult for the LORD? At old?’ the appointed time I will return to you—in about 15 a year—and Sarah will have a son.” a But Sarah was afraid, so she denied it and said, “I did not laugh.” Abraham Intercedes for Sodom “No,” replied the LORD, “but you did laugh.” 16 When the men got up to leave, they looked out over Sodom, and Abraham walked along with 17 them to see them off. 18 And the LORD said, “Shall I hide from Abraham Abraham will surely what I am about to do? become a great and powerful nation, and through him all the nations of the earth will be For I have chosen him, so that he will blessed. command his children and his household after him to keep the way of the LORD by doing what is right and just, in order that the LORD may 20 bring upon Abraham what He has promised.” 19 21 Then the LORD said, “The outcry against Sodom and Gomorrah is great. Because their sin I will go dow" + }, + { + "verseNum": 3, + "text": "3 17 But Lot insisted so strongly that they followed him into his house. He prepared a feast for them 4 and baked unleavened bread, and they ate. 5 Before they had gone to bed, all the men of the city of Sodom, both young and old, surrounded They called out to Lot, saying, the house. “Where are the men who came to you tonight? Send them out to us so we can have relations 6 with them!” 7 8 Lot went outside to meet them, shutting the “Please, my brothers,” he door behind him. pleaded, “don’t do such a wicked thing! Look, I have two daughters who have never slept with a man. Let me bring them to you, and you can do to them as you please. But do not do anything to these men, for they have come under the protec- 9 tion of my roof.” “Get out of the way!” they replied. And they de- clared, “This one came here as a foreigner, and he is already acting like a judge! Now we will treat you worse than them.” And they pressed in on 10 Lot and moved in to break down the door. 11 But the men inside reached out, pulled Lot into And the house with them, and shut the door. they struck the men at the entrance, young and old, with blindness, so that they wearied them- Lot Flees to Zoar selves trying to find the door. 12 13 Then the two men said to Lot, “Do you have anyone else here—a son-in-law, your sons or daughters, or anyone else in the city who belongs because we are to you? Get them out of here, about to destroy this place. For the outcry to the LORD against its people is so great that He h" + }, + { + "verseNum": 24, + "text": "–29) ” 20 When asked by the Pharisees when the king- dom of God would come, Jesus replied, “The king- 21 dom of God will not come with observable signs. Nor will people say, ‘Look, here it is,’ or ‘There it is.’ For you see, the kingdom of God is in your 22 midst. ” d 24 23 Then He said to the disciples, “The time is com- ing when you will long to see one of the days of People the Son of Man, but you will not see it. will tell you, ‘Look, there He is!’ or ‘Look, here He For just is!’ Do not go out or chase after them. as the lightning flashes and lights up the sky from one end to the other, so will be the Son of Man in But first He must suffer many things His day. leper a 12 and be rejected by this generation. d 21 within you left within your grasp e 35 25 or TR includes A Or ; see" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 2, + "text": "–3. 1046 |" + }, + { + "verseNum": 8, + "text": "| 21 So that night they got their father drunk with wine, and the firstborn went in and slept with her father; he was not aware when she lay down 34 or when she got up. The next day the older daughter said to the younger, “Look, I slept with my father last night. Let us get him drunk with wine again tonight so you can go in and sleep with him and we can pre- 35 serve our father’s line.” So again that night they got their father drunk with wine, and the younger daughter went in and slept with him; he was not aware when she lay 36 down or when she got up. 37 a 38 Thus both of Lot’s daughters became pregnant by their father. The older daughter gave birth to a son and named him Moab. He is the father of the Moabites of today. The younger daugh- ter also gave birth to a son, and she named him Ben-ammi. He is the father of the Ammonites of Abraham, Sarah, and Abimelech today. b 20 Now Abraham journeyed from there to the region of the Negev and settled be- 2 tween Kadesh and Shur. While he was staying in Abraham said of his wife Sarah, “She is Gerar, my sister.” So Abimelech king of Gerar had Sarah 3 brought to him. One night, however, God came to Abimelech in a dream and told him, “You are as good as dead because of the woman you have taken, for she is 4 a married woman.” Now Abimelech had not gone near her, so he re- 5 plied, “Lord, would You destroy a nation even though it is innocent? Didn’t Abraham tell me, ‘She is my sister’? And she herself said, ‘He is my brother.’ I have do" + }, + { + "verseNum": 9, + "text": "Sarah Turns against Hagar (Gal. 4:21–30) 24 9 a 10 But Sarah saw that the son whom Hagar the Egyptian had borne to Abraham was mocking her son, and she said to Abraham, “Expel the slave woman and her son, for the slave woman’s son will never share in the inheritance with my 11 son Isaac!” b 12 Now this matter distressed Abraham greatly But God because it concerned his son Ishmael. said to Abraham, “Do not be distressed about the boy and your maidservant. Listen to everything c that Sarah tells you, for through Isaac your off- But I will also make a spring will be reckoned. nation of the slave woman’s son, because he is 14 your offspring.” 13 15 Early in the morning, Abraham got up, took bread and a skin of water, put them on Hagar’s shoulders, and sent her away with the boy. She left and wandered in the Wilderness of Beer- When the water in the skin was gone, sheba. Then she left the boy under one of the bushes. she went off and sat down nearby, about a bow- shot away, for she said, “I cannot bear to watch the boy die!” And as she sat nearby, she lifted up 17 her voice and wept. 16 d 18 Then God heard the voice of the boy, and the angel of God called to Hagar from heaven, “What is wrong, Hagar? Do not be afraid, for God has Get heard the voice of the boy where he lies. up, lift up the boy, and take him by the hand, for Then God I will make him into a great nation.” opened her eyes, and she saw a well of water. So she went and filled the skin with water and gave 20 the boy a d" + }, + { + "verseNum": 10, + "text": "" + }, + { + "verseNum": 12, + "text": "k 29 also LXX)" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "–10 ;" + }, + { + "verseNum": 17, + "text": "" + }, + { + "verseNum": 18, + "text": "" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 15, + "text": "" + }, + { + "verseNum": 16, + "text": "| 23 22 the firstborn, his brother Buz, Kemuel (the father Chesed, Hazo, Pildash, Jidlaph, and of Aram), 23 Bethuel.” 24 And Bethuel became the father of Rebekah. Milcah bore these eight sons to Abraham’s Moreover, Nahor’s concubine, brother Nahor. whose name was Reumah, bore Tebah, Gaham, The Death and Burial of Sarah Tahash, and Maacah. 23 2 Now Sarah lived to be 127 years old. She died in Kiriath-arba (that is, Heb- ron) in the land of Canaan, and Abraham went 3 out to mourn and to weep for her. g 4 Then Abraham got up from beside his dead wife and said to the Hittites, “I am a foreigner and an outsider among you. Give me a burial site 5 among you so that I can bury my dead.” 6 The Hittites replied to Abraham, “Listen to us, sir. You are God’s chosen one among us. Bury your dead in the finest of our tombs. None of us 7 will withhold his tomb for burying your dead.” 8 9 Then Abraham rose and bowed down before “If you are the people of the land, the Hittites. willing for me to bury my dead,” he said to them, “listen to me, and approach Ephron son of Zohar to sell me the cave of Machpelah on my behalf that belongs to him; it is at the end of his field. Let him sell it to me in your presence for full price, so 10 that I may have a burial site.” Now Ephron was sitting among the sons of Heth. So in the presence of all the Hittites who 11 had come to the gate of his city, Ephron the Hit- “No, my lord. Listen to tite answered Abraham, me. I give you the field, and I give you the c" + }, + { + "verseNum": 17, + "text": "12 the hearing of the Hittites: four hundred shekels of silver, according to the standard of the mer- 17 chants. 18 So Ephron’s field at Machpelah near Mamre, cave that was in it, and all the trees within the the to boundaries of the field were deeded over Abraham’s possession in the presence of all the 19 Hittites who had come to the gate of his city. After this, Abraham buried his wife Sarah in the cave of the field at Machpelah near Mamre So the (that is, Hebron) in the land of Canaan. field and its cave were deeded by the Hittites to A Wife for Isaac Abraham as a burial site. 20 24 3 2 By now Abraham was old and well along in years, and the LORD had blessed him So Abraham instructed the chief in every way. servant of his household, who managed all he owned, “Place your hand under my thigh, and I will have you swear by the LORD, the God of heaven and the God of earth, that you will not take a wife for my son from the daughters of the but will Canaanites among whom I am dwelling, go to my country and my kindred to take a wife 5 for my son Isaac.” 4 The servant asked him, “What if the woman is unwilling to follow me to this land? Shall I then take your son back to the land from which you 6 came?” 7 Abraham replied, “Make sure that you do not take my son back there. The LORD, the God of heaven, who brought me from my father’s house and my native land, who spoke to me and prom- ised me on oath, saying, ‘To your offspring I will give this land’—He will send His angel before you" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 22, + "text": "1 Samuel 13:21" + }, + { + "verseNum": 58, + "text": "| 25 camels as well,’ may she be the woman the LORD 45 has appointed for my master’s son. And before I had finished praying in my heart, there was Rebekah coming out with her jar on her shoulder, and she went down to the spring and drew water. So I said to her, ‘Please give me 46 a drink.’ She quickly lowered her jar from her shoulder and said, ‘Drink, and I will water your camels as well.’ So I drank, and she also watered the cam- 47 els. Then I asked her, ‘Whose daughter are you?’ She replied, ‘The daughter of Bethuel son of Na- hor, whom Milcah bore to him.’ So I put the ring 48 on her nose and the bracelets on her wrists. Then I bowed down and worshiped the LORD; and I blessed the LORD, the God of my master Abraham, who led me on the right road to take the granddaughter of my master’s brother for his 49 son. Now if you will show kindness and faithfulness to my master, tell me; but if not, let me know, so 50 that I may go elsewhere.” 51 Laban and Bethuel answered, “This is from the LORD; we have no choice in the matter. Re- bekah is here before you. Take her and go, and let her become the wife of your master’s son, just as 52 the LORD has decreed.” When Abraham’s servant heard their words, 53 he bowed down to the ground before the LORD. Then he brought out jewels of silver and gold, and articles of clothing, and he gave them to Re- bekah. He also gave precious gifts to her brother Then he and the men with him and her mother. ate and drank and spent the night there. 54 When" + }, + { + "verseNum": 59, + "text": "59 9 60 So they sent their sister Rebekah on her way, along with her nurse and Abraham’s servant and And they blessed Rebekah and said to his men. her, “Our sister, may you become the mother of thousands upon thousands. 61 May your offspring possess the gates of their enemies.” Then Rebekah and her servant girls got ready, mounted the camels, and followed the man. So Isaac Marries Rebekah the servant took Rebekah and left. 62 63 Now Isaac had just returned from Beer-lahai- Early in the roi, for he was living in the Negev. evening, Isaac went out to the field to meditate, 64 and looking up, he saw the camels approaching. 65 And when Rebekah looked up and saw Isaac, and asked the she got down from her camel servant, “Who is that man in the field coming to meet us?” 66 “It is my master,” the servant answered. So she Then the took her veil and covered herself. 67 servant told Isaac all that he had done. And Isaac brought her into the tent of his mother Sarah and took Rebekah as his wife. And Isaac loved her and was comforted after his Abraham and Keturah (1 Chronicles 1:32–33) mother’s death. 25 2 Now Abraham had taken another wife, and she bore him Zim- named Keturah, 3 ran, Jokshan, Medan, Midian, Ishbak, and Shuah. Jokshan was the father of Sheba and Dedan. And the sons of Dedan were the Asshurites, the Le- 4 tushites, and the Leummites. The sons of Midian were Ephah, Epher, Hanoch, Abida, and Eldaah. 5 All these were descendants of Keturah. 6 Abraham left everything he owned" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 19, + "text": "–28 ;" + }, + { + "verseNum": 23, + "text": "m 33" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "–5 ;" + }, + { + "verseNum": 24, + "text": "| 27 8 When Isaac had been there a long time, Abimelech king of the Philistines looked down from the window and was surprised to see Isaac Abimelech sent for caressing his wife Rebekah. Isaac and said, “So she is really your wife! How could you say, ‘She is my sister’?” 9 Isaac replied, “Because I thought I might die on 10 account of her.” “What is this you have done to us?” asked Abimelech. “One of the people could easily have 11 slept with your wife, and you would have So Abimelech warned brought guilt upon us.” all the people, saying, “Whoever harms this man Isaac’s Prosperity or his wife will surely be put to death.” 12 14 13 Now Isaac sowed seed in the land, and that very year he reaped a hundredfold. And the and he became richer and LORD blessed him, He richer, until he was exceedingly wealthy. owned so many flocks and herds and servants So the Philis- that the Philistines envied him. tines took dirt and stopped up all the wells that his father’s servants had dug in the days of his fa- 16 ther Abraham. 15 Then Abimelech said to Isaac, “Depart from us, 17 for you are much too powerful for us.” 18 So Isaac left that place and encamped in Isaac re- the Valley of Gerar and settled there. opened the wells that had been dug in the days of his father Abraham, which the Philistines had stopped up after Abraham died. And he gave these wells the same names his father had given 19 them. c 20 Then Isaac’s servants dug in the valley and found a well of fresh water But the herdsmen o" + }, + { + "verseNum": 25, + "text": "5 afraid, for I am with you. I will bless you and mul- tiply your descendants for the sake of My servant 25 Abraham.” So Isaac built an altar there and called on the name of the LORD, and he pitched his tent there. Isaac’s Covenant with Abimelech His servants also dug a well there. 26 Later, Abimelech came to Isaac from Gerar, with Ahuzzath his adviser and Phicol the com- 27 mander of his army. “Why have you come to me?” Isaac asked them. 28 “You hated me and sent me away.” 29 “We can plainly see that the LORD has been with you,” they replied. “We recommend that there should now be an oath between us and you. that you will Let us make a covenant with you not harm us, just as we have not harmed you but have done only good to you, sending you on your way in peace. And now you are blessed by the 30 LORD.” 31 So Isaac prepared a feast for them, and they ate And they got up early the next and drank. morning and swore an oath to each other. Then Isaac sent them on their way, and they left him in 32 peace. a 33 On that same day, Isaac’s servants came and told him about the well they had dug. “We have So he called it found water!” they told him. Shibah, and to this day the name of the city is Esau’s Wives Beersheba. 34 b When Esau was forty years old, he took as his wives Judith daughter of Beeri the Hittite and Basemath daughter of Elon the Hittite. And Isaac Blesses Jacob" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 3, + "text": "| 29 36 a So Esau declared, “Is he not rightly named Ja- cob? For he has cheated me twice. He took my birthright, and now he has taken my blessing.” Then he asked, “Haven’t you saved a blessing for 37 me?” But Isaac answered Esau: “Look, I have made him your master and given him all his relatives as servants; I have sustained him with grain and new wine. What is left that I can do for you, my 38 son?” Esau said to his father, “Do you have only one blessing, my father? Bless me too, O my father!” 39 Then Esau wept aloud. His father Isaac answered him: “Behold, your dwelling place shall be 40 away from the richness of the land, away from the dew of heaven above. You shall live by the sword and serve your brother. But when you rebel, 41 you will tear his yoke from your neck.” Esau held a grudge against Jacob because of the blessing his father had given him. And Esau said in his heart, “The days of mourning for my father are at hand; then I will kill my brother 42 Jacob.” 44 43 When the words of her older son Esau were re- layed to Rebekah, she sent for her younger son Jacob and told him, “Look, your brother Esau is consoling himself by plotting to kill you. So now, my son, obey my voice and flee at once to my brother Laban in Haran. Stay with him for 45 a while, until your brother’s fury subsides— until your brother’s rage against you wanes and he forgets what you have done to him. Then I will send for you and bring you back from there. 46 Why should I lose both of you in one da" + }, + { + "verseNum": 4, + "text": "a 4 bless you and make you fruitful God Almighty and multiply you, so that you may become a com- And may He give the blessing pany of peoples. of Abraham to you and your descendants, so that you may possess the land where you dwell as a 5 foreigner, the land God gave to Abraham.” So Isaac sent Jacob to Paddan-aram, to Laban son of Bethuel the Aramean, the brother of Re- Esau Marries Mahalath bekah, who was the mother of Jacob and Esau. 6 7 Now Esau learned that Isaac had blessed Jacob and sent him to Paddan-aram to take a wife there, commanding him, “Do not marry a Ca- and that Jacob had obeyed his naanite woman,” 8 father and mother and gone to Paddan-aram. 9 And seeing that his father Isaac disapproved of Esau went to Ishmael the Canaanite women, and married Mahalath, the sister of Nebaioth and daughter of Abraham’s son Ishmael, in addition Jacob’s Ladder to the wives he already had. 10 11 Meanwhile Jacob left Beersheba and set out for On reaching a certain place, he spent Haran. the night there because the sun had set. And tak- ing one of the stones from that place, he put it un- 12 der his head and lay down to sleep. b 14 13 And there at the top And Jacob had a dream about a ladder that rested on the earth with its top reaching up to heaven, and God’s angels were going up and down the ladder. the LORD was standing and saying, “I am the LORD, the God of your father Abraham and the God of Isaac. I will give you and your descendants the Your descendants land on which you now" + }, + { + "verseNum": 12, + "text": ". Greek 952 |" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 8, + "text": "| 31 12 Then Jacob kissed Rachel and uncle’s sheep. He told Rachel that he was Re- wept aloud. bekah’s son, a relative of her father, and she ran 13 and told her father. When Laban heard the news about his sister’s son Jacob, he ran out to meet him. He em- braced him and kissed him and brought him to his home, where Jacob told him all that had hap- Jacob Marries Leah and Rachel pened. 14 Then Laban declared, “You are indeed my own 15 flesh and blood.” After Jacob had stayed with him a month, La- ban said to him, “Just because you are my rela- tive, should you work for nothing? Tell me what 16 your wages should be.” 18 Leah had weak eyes, Now Laban had two daughters; the older was a 17 named Leah, and the younger was named Rachel. but Rachel was shapely Since Jacob loved Rachel, he an- and beautiful. swered, “I will serve you seven years for your 19 younger daughter Rachel.” 20 Laban replied, “Better that I give her to you So Jacob than to another. Stay here with me.” served seven years for Rachel, yet it seemed but 21 a few days because of his love for her. Finally Jacob said to Laban, “Grant me my wife, for my time is complete, and I want to sleep with 22 her.” 23 So Laban invited all the men of that place and But when evening came, prepared a feast. Laban took his daughter Leah and gave her to Ja- cob, and he slept with her. And Laban gave his servant girl Zilpah to his daughter Leah as her 25 maidservant. 24 When morning came, there was Leah! “What have you done to me?” Ja" + }, + { + "verseNum": 9, + "text": "Gad and Asher 9 10 When Leah saw that she had stopped having children, she gave her servant Zilpah to Jacob as 11 a wife. And Leah’s servant Zilpah bore Jacob a son. So she 12 named him Gad. Then Leah said, “How fortunate!” a b 13 c When Leah’s servant Zilpah bore Jacob a sec- Leah said, “How happy I am! For the ond son, women call me happy.” So she named him 14 Asher. Now during the wheat harvest, Reuben went out and found some mandrakes in the field. When he brought them to his mother, Rachel begged Leah, “Please give me some of your son’s 15 mandrakes.” But Leah replied, “Is it not enough that you have taken away my husband? Now you want to take my son’s mandrakes as well?” “Very well,” said Rachel, “he may sleep with you 16 tonight in exchange for your son’s mandrakes.” When Jacob came in from the field that even- ing, Leah went out to meet him and said, “You must come with me, for I have hired you with my Issachar, Zebulun, and Dinah son’s mandrakes.” So he slept with her that night. 17 18 And God listened to Leah, and she conceived Then Leah said, and bore a fifth son to Jacob. “God has rewarded me for giving my maidservant 19 to my husband.” So she named him Issachar. d 20 Again Leah conceived and bore a sixth son to “God has given me a good gift,” she said. Jacob. “This time my husband will honor me, because I e have borne him six sons.” And she named him 21 Zebulun. After that, Leah gave birth to a daughter and Joseph named her Dinah. 22 23 24 Then God remembered Rac" + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 32, + "text": "| 33 14 And Rachel and Leah replied, “Do we have any 15 portion or inheritance left in our father’s house? Are we not regarded by him as outsiders? Not only has he sold us, but he has certainly squan- Surely all the dered what was paid for us. wealth that God has taken away from our father belongs to us and to our children. So do whatever 17 God has told you.” 18 16 Then Jacob got up and put his children and his wives on camels, and he drove all his livestock before him, along with all the possessions he had acquired in Paddan-aram, to go to his father 19 Isaac in the land in Canaan. b c father’s household Moreover, Jacob deceived Now while Laban was out shearing his sheep, 20 idols. Rachel stole her Laban the Aramean 21 by not telling him that he was running away. So he fled with all his possessions, crossed the and headed for the hill country of d Euphrates, Laban Pursues Jacob Gilead. 22 23 24 On the third day Laban was informed that Ja- So he took his relatives with him, cob had fled. pursued Jacob for seven days, and overtook him in the hill country of Gilead. But that night God came to Laban the Aramean in a dream and warned him, “Be careful not to say anything to Ja- 25 cob, either good or bad.” 27 Now Jacob had pitched his tent in the hill coun- try of Gilead when Laban overtook him, and La- 26 ban and his relatives camped there as well. Then Laban said to Jacob, “What have you done? You have deceived me and carried off my daughters like captives of war! Why did you r" + }, + { + "verseNum": 33, + "text": "for yourself if anything is yours, and take it back.” For Jacob did not know that Rachel had stolen 33 the idols. 34 So Laban went into Jacob’s tent, then Leah’s tent, and then the tents of the two maidservants, but he found nothing. Then he left Leah’s tent Now Rachel had and entered Rachel’s tent. taken Laban’s household idols, put them in the saddlebag of her camel, and was sitting on them. And Laban searched everything in the tent but 35 found nothing. Rachel said to her father, “Sir, do not be angry that I cannot stand up before you; for I am having my period.” So Laban searched but could not find 36 the household idols. 37 Then Jacob became incensed and challenged Laban. “What is my crime?” he said. “For what sin You of mine have you so hotly pursued me? have searched all my goods! Have you found an- ything that belongs to you? Put it here before my brothers and yours, that they may judge between 38 the two of us. 39 I have been with you for twenty years now. Your sheep and goats have not miscarried, nor have I eaten the rams of your flock. I did not bring you anything torn by wild beasts; I bore the loss myself. And you demanded payment from As it me for what was stolen by day or night. was, the heat consumed me by day and the frost 41 by night, and sleep fled from my eyes. 40 42 Thus for twenty years I have served in your household—fourteen years for your two daugh- ters and six years for your flocks—and you have If the God of my changed my wages ten times! father, th" + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 30, + "text": ". 230 |" + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 5, + "text": "| 35 23 He took and crossed the ford of the Jabbok. them and sent them across the stream, along c 24 with all his possessions. 25 So Jacob was left all alone, and there a man When the wrestled with him until daybreak. man saw that he could not overpower Jacob, he struck the socket of Jacob’s hip and dislocated it Then the man said, “Let me as they wrestled. go, for it is daybreak.” 26 But Jacob replied, “I will not let you go unless you 27 bless me.” “What is your name?” the man asked. 28 “Jacob,” he replied. d e Then the man said, “Your name will no longer be Jacob, because you have strug- gled with God and with men, and you have 29 prevailed.” but Israel, And Jacob requested, “Please tell me your name.” But he replied, “Why do you ask my name?” Then 30 he blessed Jacob there. f So Jacob named the place Peniel, saying, “In- deed, I have seen God face to face, and yet my life 31 was spared.” g 32 Penuel, The sun rose above him as he passed by and he was limping because of his hip. Therefore to this day the Israelites do not eat the tendon attached to the socket of the hip, be- cause the socket of Jacob’s hip was struck near Jacob Meets Esau that tendon. 33 Now Jacob looked up and saw Esau com- ing toward him with four hundred men. 2 So he divided the children among Leah, Rachel, He put the maidser- and the two maidservants. vants and their children in front, Leah and her 3 children next, and Rachel and Joseph at the rear. But Jacob himself went on ahead and bowed to the groun" + }, + { + "verseNum": 6, + "text": "6 7 Jacob answered, “These are the children God Then the has graciously given your servant.” maidservants and their children approached and Leah and her children also ap- bowed down. proached and bowed down, and then Joseph and 8 Rachel approached and bowed down. “What do you mean by sending this whole com- pany to meet me?” asked Esau. “To find favor in your sight, my lord,” Jacob 9 answered. “I already have plenty, my brother,” Esau re- 10 plied. “Keep what belongs to you.” But Jacob insisted, “No, please! If I have found favor in your sight, then receive this gift from my hand. For indeed, I have seen your face, and it is a 11 like seeing the face of God, since you have re- Please accept my gift ceived me favorably. that was brought to you, because God has been gracious to me and I have all I need.” So Jacob 12 pressed him until he accepted. Then Esau said, “Let us be on our way, and I 13 will go ahead of you.” But Jacob replied, “My lord knows that the chil- dren are frail, and I must care for sheep and cat- tle that are nursing their young. If they are driven 14 hard for even a day, all the animals will die. Please let my lord go ahead of his servant. I will continue on slowly, at a comfortable pace for the livestock and children, until I come to my lord at 15 Seir.” “Let me leave some of my people with you,” Esau said. But Jacob replied, “Why do that? Let me find fa- 16 vor in the sight of my lord.” b 17 but Jacob went on to Succoth, So that day Esau started on his way" + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 18, + "text": "| 37 3 Then let us arise and go to Bethel. I garments. will build an altar there to God, who answered me in my day of distress. He has been with me 4 wherever I have gone.” a So they gave Jacob all their foreign gods and all their earrings, and Jacob buried them under the 5 oak near Shechem. 6 As they set out, a terror from God fell over the surrounding cities, so that they did not pursue Jacob’s sons. So Jacob and everyone with him 7 arrived in Luz (that is, Bethel) in the land of Ca- naan. There Jacob built an altar, and he called that place El-bethel, because it was there that God had revealed Himself to Jacob as he fled from 8 his brother. b c Now Deborah, Rebekah’s nurse, died and was d below Bethel. So Jacob e buried under the oak 9 named it Allon-bacuth. f After Jacob had returned from Paddan-aram, 10 God appeared to him again and blessed him. And God said to him, “Though your name is Ja- g you will no longer be called Jacob. Instead, ” So God named him cob, your name will be Israel. 11 Israel. h And God told him, “I am God Almighty. 12 Be fruitful and multiply. A nation—even a company of nations—shall come from you, and kings shall descend from you. The land that I gave to Abraham and Isaac I will give to you, and I will 13 give this land to your descendants after you.” Then God went up from the place where He 14 had spoken with him. 15 So Jacob set up a pillar in the place where God had spoken with him—a stone marker—and he poured out a drink offering on it and anoin" + }, + { + "verseNum": 19, + "text": "19 20 7 So Rachel died and was buried on the way to Jacob set up a pil- Ephrath (that is, Bethlehem). lar on her grave; it marks Rachel’s tomb to this The Sons of Jacob (1 Chronicles 2:1–2) day. 21 22 Israel again set out and pitched his tent be- yond the Tower of Eder. While Israel was liv- ing in that region, Reuben went in and slept with his father’s concubine Bilhah, and Israel heard about it. 23 Jacob had twelve sons: The sons of Leah were Reuben the firstborn of Jacob, Simeon, Levi, Judah, 24 Issachar, and Zebulun. The sons of Rachel were Joseph and 25 Benjamin. The sons of Rachel’s maidservant Bilhah 26 were Dan and Naphtali. And the sons of Leah’s maidservant Zilpah were Gad and Asher. These are the sons of Jacob, who were born to The Death of Isaac him in Paddan-aram. 27 Jacob returned to his father Isaac at Mamre, near Kiriath-arba (that is, Hebron), where Abra- 28 ham and Isaac had stayed. 29 And Isaac lived 180 years. Then he breathed his last and died and was gathered to his people, old and full of years. And his sons Esau and Jacob The Descendants of Esau (1 Chron. 1:35–37) buried him. 36 2 This is the account of Esau (that is, Esau took his wives from the Edom). daughters of Canaan: Adah daughter of Elon the 3 Hittite, Oholibamah daughter of Anah and grand- and Basemath daughter of Zibeon the Hivite, And daughter of Ishmael and sister of Nebaioth. Adah bore Eliphaz to Esau, Basemath gave birth and Oholibamah gave birth to Jeush, to Reuel, Jalam, and Korah. Thes" + }, + { + "verseNum": 21, + "text": "–26 ; 38:1–30) chiefs of Edom. 2 These were the sons of Israel: 2 The sons of Shobal: Alvan, Manahath, Reuben, Simeon, Levi, Judah, Issachar, Ebal, Shepho, 41 The sons of Zibeon: Aiah and Anah. and Onam. e The son f of Anah: Dishon. The sons of Dishon: Hemdan, 42 Ithran, and Cheran. g Eshban, The sons of Ezer: Bilhan, Zaavan, and Akan. The Kings of Edom" + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "–19) 48 35 The sons of Esau: 36 Eliphaz, Reuel, Jeush, Jalam, and Korah. a The sons of Eliphaz: Teman, Omar, Gatam, and Kenaz; and by Timna, Zepho, 37 Amalek. The sons of Reuel: Nahath, Zerah, The Descendants of Seir" + }, + { + "verseNum": 11, + "text": "); most Hebrew manuscripts g 42 is a variant of h 43 LXX (see also" + }, + { + "verseNum": 20, + "text": "–30) Shammah, and Mizzah. 38 The sons of Seir: Lotan, Shobal, Zibeon, Anah, Dishon, Ezer, 39 and Dishan. b The sons of Lotan: Hori and Homam. 40 Timna was Lotan’s sister. d c 1 Chronicles 2:9 | 371 i When Samlah died, Shaul from Rehoboth 49 on the Euphrates reigned in his place. When Shaul died, Baal-hanan son of 50 Achbor reigned in his place. j When Baal-hanan died, Hadad reigned in and his his place. His city was named Pau, wife’s name was Mehetabel daughter of 51 Matred, the daughter of Me-zahab. Then Hadad died. 52 53 54 Oholibamah, Elah, Pinon, Now the chiefs of Edom were Timna, Alvah, Jeth- eth, Kenaz, Teman, Mibzar, Magdiel, and Iram. These were the The Sons of Israel" + }, + { + "verseNum": 22, + "text": ". Hebrew Jaakan ; also called in Joshua 7 and Joshua 22. Hebrew , a variant of ; see verse 18. 372 | 1 Chronicles 2:10 10 Ram was the father of Amminadab, and Amminadab was the father of Nahshon, a 11 leader of the descendants of Judah. a Nahshon was the father of Salmon, 12 Salmon was the father of Boaz. and Boaz was the father of Obed, and Obed 13 was the father of Jesse. b 16 15 14 Abinadab was born second, Shimea Nethanel fourth, Raddai fifth, Jesse was the father of Eliab his firstborn; third, Ozem Their sisters sixth, and David seventh. were Zeruiah and Abigail. And the three sons 17 of Zeruiah were Abishai, Joab, and Asahel. Abigail was the mother of Amasa, whose c 18 father was Jether the Ishmaelite. d Caleb son of Hezron had children by his wife Azubah and by Jerioth. These were the 19 sons of Azubah: Jesher, Shobab, and Ardon. When Azubah died, Caleb married Ephrath, Hur was who bore to him Hur. the father of Uri, and Uri was the father of 21 Bezalel. 20 23 22 Later, Hezron slept with the daughter of Machir the father of Gilead. He had married her when he was sixty years old, and she Segub was the father of bore to him Segub. Jair, who had twenty-three cities in the land e But Geshur and Aram captured of Gilead. Havvoth-jair, along with Kenath and its sixty surrounding villages. All these were de- 24 scendants of Machir the father of Gilead. g After Hezron died in Caleb-ephrathah, his f wife Abijah bore 25 of Tekoa. to him Ashhur the father The sons of Jerahmeel the" + }, + { + "verseNum": 23, + "text": "); Hebrew before an Israelite king ruled over them LXX (see also" + }, + { + "verseNum": 26, + "text": "); Hebrew l 6 most MT manuscripts troubler manuscripts, some LXX manuscripts, and Syriac (see also 1 Kings 4:31) is a variant of Achan Hebrew means Hebrew e 41 Shephi ; see" + }, + { + "verseNum": 27, + "text": "); Hebrew the River j 50 k 6 Zimri Many MT manuscripts, some LXX manuscripts, Vulgate, and Syriac (see also" + }, + { + "verseNum": 31, + "text": "–43) The sons of Dishan: Uz and Aran. 43 h These are the kings who reigned in the land of the Edom before any king reigned over Israelites: Bela son of Beor. His city was named 44 Dinhabah. When Bela died, Jobab son of Zerah from 45 Bozrah reigned in his place. When Jobab died, Husham from the land 46 of the Temanites reigned in his place. When Husham died, Hadad son of Bedad, who defeated Midian in the country of Moab, reigned in his place. And the name of 47 his city was Avith. When Hadad died, Samlah from Masrekah Zebulun, 3 Gad, and Asher. Dan, Joseph, Benjamin, Naphtali, The sons of Judah: Er, Onan, and Shelah. These three were born to him by Bath-shua the Canaanite. Er, Judah’s firstborn, was wicked in the sight of the LORD. So the LORD put him 4 to death. Tamar, Judah’s daughter-in-law, bore to him Perez and Zerah. Judah had five sons in all. 5 The sons of Perez: 6 Hezron and Hamul. k The sons of Zerah: l 7 Zimri, five in all. Ethan, Heman, Calcol, and Dara m — n The son of Carmi: 8 who brought trouble upon Israel Achar, by violating the ban on devoted things. The son of Ethan: 9 Azariah. The sons who were born to Hezron: o a 36 Zephi d 40 Hamran i 48 reigned in his place. b 39 Homam Hemam Jerahmeel, Ram, and Caleb. c 40 sons f 41 Alian Many Hebrew manuscripts, some LXX manuscripts, and Syriac (see also" + }, + { + "verseNum": 39, + "text": "); Darda ; see" + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 3, + "text": ". c 27 Or When the woman from Tekoa went to the king, she fell facedown in homage and said, “Help me, O king!” But he would not punish his son Amnon, And Absalom prepared a feast fit for a king. And the spirit of the DSS and LXX include And the watchman . . . . f 39 LXX and Vulgate include Or Or LXX; Hebrew does not include MT; DSS and LXX 5 17 2 Samuel 14:29 | 293 “What troubles you?” the king asked her. 6 “Indeed,” she said, “I am a widow, for my hus- band is dead. And your maidservant had two sons who were fighting in the field with no one 7 to separate them, and one struck the other and Now the whole clan has risen up killed him. against your maidservant and said, ‘Hand over the one who struck down his brother, that we may put him to death for the life of the brother whom he killed. Then we will cut off the heir as well!’ So they would extinguish my one remain- ing ember by not preserving my husband’s name 8 or posterity on the earth.” “Go home,” the king said to the woman, “and I 9 will give orders on your behalf.” But the woman of Tekoa said to the king, “My lord the king, may any blame be on me and on my father’s house, and may the king and his throne 10 be guiltless.” “If anyone speaks to you,” said the king, “bring 11 him to me, and he will not trouble you again!” “Please,” she replied, “may the king invoke the LORD your God to prevent the avenger of blood from increasing the devastation, so that my son may not be destroyed!” “As surely as the LORD lives,” he vowed," + }, + { + "verseNum": 12, + "text": "–30) twelve patriarchs. 9 10 Because the patriarchs were jealous of Joseph, they sold him as a slave into Egypt. But God was and rescued him from all his trou- with him bles. He granted Joseph favor and wisdom in the sight of Pharaoh king of Egypt, who appointed 11 him ruler over Egypt and all his household. 12 Then famine and great suffering swept across Egypt and Canaan, and our fathers could not find food. When Jacob heard that there was grain in 13 Egypt, he sent our fathers on their first visit. e On their second visit, Joseph revealed his iden- tity to his brothers, and his family became Then Joseph sent for his fa- known to Pharaoh. Israel Oppressed in Egypt" + }, + { + "verseNum": 13, + "text": "| 39 and Iram. These were the chiefs of Edom, accord- ing to their settlements in the land they pos- Joseph’s Dreams sessed. Esau was the father of the Edomites. 37 2 Now Jacob lived in the land where his fa- ther had resided, the land of Canaan. This is the account of Jacob. When Joseph was seventeen years old, he was tending the flock with his brothers, the sons of his father’s wives Bilhah and Zilpah, and he brought their father a 3 bad report about them. Now Israel loved Joseph more than his other e sons, because Joseph had been born to him in his 4 old age; so he made him a robe of many colors. When Joseph’s brothers saw that their father loved him more than any of them, they hated him 5 and could not speak a kind word to him. 6 Then Joseph had a dream, and when he told it 7 He to his brothers, they hated him even more. said to them, “Listen to this dream I had: We were binding sheaves of grain in the field, and suddenly my sheaf rose and stood upright, while your sheaves gathered around and bowed down 8 to mine.” “Do you intend to reign over us?” his brothers asked. “Will you actually rule us?” So they hated him even more because of his dream and his 9 statements. Then Joseph had another dream and told it to his brothers. “Look,” he said, “I had another dream, and this time the sun and moon and 10 eleven stars were bowing down to me.” 11 He told his father and brothers, but his father rebuked him and said, “What is this dream that you have had? Will your mother and brot" + }, + { + "verseNum": 14, + "text": "14 Then Israel told him, “Go now and see how your brothers and the flocks are faring, and bring word back to me.” 15 So he sent him off from the Valley of Hebron. And when Joseph arrived in Shechem, a man found him wandering in the field and asked, “What are 16 you looking for?” “I am looking for my brothers,” Joseph replied. “Can you please tell me where they are pasturing 17 their flocks?” “They have moved on from here,” the man an- swered. “I heard them say, ‘Let us go to Dothan.’ ” So Joseph set out after his brothers and found 18 them at Dothan. 20 19 Now Joseph’s brothers saw him in the dis- tance, and before he arrived, they plotted to kill him. “Here comes that dreamer!” they said to one another. “Come now, let us kill him and throw him into one of the pits. We can say that a vicious animal has devoured him. Then we shall 21 see what becomes of his dreams!” 22 When Reuben heard this, he tried to rescue Jo- seph from their hands. “Let us not take his life,” “Do not shed his blood. Throw him into he said. this pit in the wilderness, but do not lay a hand on him.” Reuben said this so that he could rescue Joseph from their hands and return him to his 23 father. So when Joseph came to his brothers, they 24 stripped him of his robe—the robe of many col- ors he was wearing— and they took him and threw him into the pit. Now the pit was empty, 25 with no water in it. And as they sat down to eat a meal, they looked up and saw a caravan of Ishmaelites coming from Gilead. Their c" + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 7, + "text": "| 41 “Bring her out!” Judah replied. “Let her be burned 25 to death!” As she was being brought out, Tamar sent a message to her father-in-law: “I am pregnant by the man to whom these items belong.” And she added, “Please examine them. Whose seal and 26 cord and staff are these?” Judah recognized the items and said, “She is more righteous than I, since I did not give her to my son Shelah.” And he did not have relations The Birth of Perez and Zerah with her again. 27 28 When the time came for Tamar to give birth, And as she was there were twins in her womb. giving birth, one of them put out his hand; so the midwife took a scarlet thread and tied it around his wrist. “This one came out first,” she an- But when he pulled his hand back nounced. b and his brother came out, she said, “You have 30 broken out first!” So he was named Perez. 29 c Then his brother came out with the scarlet thread around his wrist, and he was named Joseph and Potiphar’s Wife Zerah. 39 Meanwhile, Joseph had been taken down to Egypt, where an Egyptian named Pot- iphar, an officer of Pharaoh and captain of the guard, bought him from the Ishmaelites who had And the LORD was with Jo- taken him there. seph, and he became a successful man, serving in 3 the household of his Egyptian master. 2 4 When his master saw that the LORD was with Joseph him and made him prosper in all he did, found favor in his sight and became his personal attendant. 5 Potiphar put him in charge of his household and From entrusted him wit" + }, + { + "verseNum": 8, + "text": "8 3 But he refused. “Look,” he said to his master’s wife, “with me here, my master does not concern himself with anything in his house, and he has entrusted everything he owns to my care. No one in this house is greater than I am. He has withheld nothing from me except you, because you are his wife. So how could I do such a great 10 evil and sin against God?” 9 11 Although Potiphar’s wife spoke to Joseph day after day, he refused to go to bed with her or even be near her. One day, however, Joseph went into the house to attend to his work, and not a single household servant was inside. She grabbed Joseph by his cloak and said, “Sleep with me!” But leaving his cloak in her hand, he es- Joseph Falsely Imprisoned caped and ran outside. 13 12 14 When she saw that he had left his cloak in her hand and had run out of the house, she called her household servants. “Look,” she said, “this Hebrew has been brought to us to make sport of us. He came to me so he could sleep with me, but I screamed as loud as I could. When he heard me scream for help, he left his cloak beside me 16 and ran out of the house.” 15 17 So Potiphar’s wife kept Joseph’s cloak beside her until his master came home. Then she told him the same story: “The Hebrew slave you 18 brought us came to me to make sport of me, but when I screamed for help, he left his cloak 19 beside me and ran out of the house.” When his master heard the story his wife told 20 him, saying, “This is what your slave did to me,” he burned with a" + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 32, + "text": "| 43 21 On the third day, which was Pharaoh’s birth- day, he held a feast for all his officials, and in their presence he lifted up the heads of the chief cupbearer and the chief baker. Pharaoh re- stored the chief cupbearer to his position, so that he once again placed the cup in Pharaoh’s hand. But Pharaoh hanged the chief baker, just as Joseph had described to them in his 23 interpretation. 22 a The chief cupbearer, however, did not remem- The Dreams of Pharaoh ber Joseph; he forgot all about him. 41 3 2 After two full years had passed, Pharaoh had a dream: He was standing beside when seven cows, sleek and well-fed, the Nile, came up from the river and began to graze After them, seven other cows, among the reeds. sickly and thin, came up from the Nile and stood 4 beside the well-fed cows on the bank of the river. And the cows that were sickly and thin de- 5 voured the seven sleek, well-fed cows. 6 Then Pharaoh woke up, but he fell back asleep and dreamed a second time: Seven heads of Af- grain, plump and ripe, came up on one stalk. ter them, seven other heads of grain sprouted, And the thin thin and scorched by the east wind. heads of grain swallowed up the seven plump, ripe ones. Then Pharaoh awoke and realized it 8 was a dream. 7 In the morning his spirit was troubled, so he summoned all the magicians and wise men of Egypt. Pharaoh told them his dreams, but no one 9 could interpret them for him. 10 Then the chief cupbearer said to Pharaoh, “To- Pharaoh was once an- day I" + }, + { + "verseNum": 33, + "text": "33 34 Now, therefore, Pharaoh should look for a dis- cerning and wise man and set him over the land Let Pharaoh take action and appoint of Egypt. a commissioners over the land to take a fifth of the 35 of Egypt during the seven years of harvest Under the authority of Pharaoh, let abundance. them collect all the excess food from these good years, that they may come and lay up the grain to This food be preserved as food in the cities. will be a reserve for the land during the seven years of famine to come upon the land of Egypt. Joseph Given Charge of Egypt Then the country will not perish in the famine.” 37 36 38 This proposal pleased Pharaoh and all his offi- b cials. So Pharaoh asked them, “Can we find an- yone like this man, in whom the Spirit of God 39 abides?” Then Pharaoh said to Joseph, “Since God has 40 made all this known to you, there is no one as dis- You shall be in charge cerning and wise as you. of my house, and all my people are to obey your commands. Only with regard to the throne will I 41 be greater than you.” 42 Pharaoh also told Joseph, “I hereby place you Then Pharaoh re- over all the land of Egypt.” moved the signet ring from his finger, put it on Joseph’s finger, clothed him in garments of fine 43 linen, and placed a gold chain around his neck. He had Joseph ride in his second chariot, with So men calling out before him, “Bow the knee!” 44 he placed him over all the land of Egypt. c And Pharaoh declared to Joseph, “I am Phar- aoh, but without your permis" + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 38, + "text": "| 45 he took Simeon from them and had him bound Joseph’s Brothers Return to Canaan before their eyes. 25 a Then Joseph gave orders to fill their bags with grain, to return each man’s silver to his sack, and to give them provisions for their journey. and they loaded This order was carried out, 27 the grain on their donkeys and departed. 26 28 At the place where they lodged for the night, one of them opened his sack to get feed for his donkey, and he saw his silver in the mouth of the sack. “My silver has been returned!” he said to his brothers. “It is here in my sack.” Their hearts sank, and trembling, they turned to one another and said, “What is this that God has 29 done to us?” 30 When they reached their father Jacob in the land of Canaan, they described to him all that had happened to them: “The man who is lord of the land spoke harshly to us and accused us of spying 31 on the country. 32 But we told him, ‘We are honest men, not spies. We are twelve brothers, sons of one father. One is no more, and the youngest is now with our 33 father in the land of Canaan.’ Then the man who is lord of the land said to us, ‘This is how I will know whether you are honest: Leave one brother with me, take food to relieve the hunger of your households, and go. But bring your youngest brother back to me so I will know that you are not spies but honest men. Then I will give your brother back to you, and 35 you can trade in the land.’ 34 ” As they began emptying their sacks, there in each man’s" + } + ] + }, + { + "chapterNum": 43, + "verses": [ + { + "verseNum": 1, + "text": "The Return to Egypt with Benjamin Joseph’s Hospitality to His Brothers 43 2 16 Now the famine was still severe in the land. So when Jacob’s sons had eaten all the grain they had brought from Egypt, their fa- ther said to them, “Go back and buy us a little 3 more food.” 4 But Judah replied, “The man solemnly warned us, ‘You will not see my face again unless your If you will send our brother brother is with you.’ 5 with us, we will go down and buy food for you. But if you will not send him, we will not go; for the man told us, ‘You will not see my face again 6 unless your brother is with you.’ ” “Why did you bring this trouble upon me?” Is- rael asked. “Why did you tell the man you had 7 another brother?” They replied, “The man questioned us in detail about ourselves and our family: ‘Is your father still alive? Do you have another brother?’ And we answered him accordingly. How could we possi- bly know that he would say, ‘Bring your brother 8 here’?” 9 And Judah said to his father Israel, “Send the boy with me, and we will go at once, so that we may live and not die—neither we, nor you, nor our children. I will guarantee his safety. You may hold me personally responsible. If I do not bring him back and set him before you, then may If we had I bear the guilt before you all my life. not delayed, we could have come and gone twice 11 by now.” 10 Then their father Israel said to them, “If it must be so, then do this: Put some of the best products of the land in your packs and carry t" + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 28, + "text": "| 47 31 Joseph hurried out because he was moved to tears for his brother, and he went to a private Then he washed his face and room to weep. came back out. Regaining his composure, he said, 32 “Serve the meal.” 33 They separately served Joseph, his brothers, and the Egyptians. They ate separately because the Egyptians would not eat with the Hebrews, They were since that was detestable to them. seated before Joseph in order by age, from the firstborn to the youngest, and the men looked at When the por- one another in astonishment. tions were served to them from Joseph’s table, Benjamin’s portion was five times larger than any of the others. So they feasted and drank Benjamin and the Silver Cup freely with Joseph. 34 44 2 Then Joseph instructed his steward: “Fill the men’s sacks with as much food as they can carry, and put each one’s silver in the Put my cup, the silver one, in mouth of his sack. the mouth of the youngest one’s sack, along with the silver for his grain.” 3 So the steward did as Joseph had instructed. 4 At daybreak, the men were sent on their way They had not gone far from with their donkeys. the city when Joseph told his steward, “Pursue the men at once, and when you overtake them, Is ask, ‘Why have you repaid good with evil? this not the cup my master drinks from and uses 6 for divination? What you have done is wicked!’ ” 5 a b When the steward overtook them, he relayed 7 these words to them. 8 “Why does my lord say these things?” they asked. “Your servants co" + }, + { + "verseNum": 29, + "text": "one of them was gone, I said: “Surely he has been 29 torn to pieces.” And I have not seen him since. Now if you also take this one from me and harm comes to him, you will bring my gray hair 30 down to Sheol in sorrow.’ 31 So if the boy is not with us when I return to your servant, and if my father, whose life is sees that the boy wrapped up in the boy’s life, is not with us, he will die. Then your servants will have brought the gray hair of your servant Indeed, our father down to Sheol in sorrow. your servant guaranteed the boy’s safety to my father, saying, ‘If I do not return him to you, I will bear the guilt before you, my father, all my 33 life.’ 32 34 Now please let your servant stay here as my lord’s slave in place of the boy. Let him return For how can I go back to my with his brothers. father without the boy? I could not bear to see Joseph Reveals His Identity the misery that would overwhelm him.” 45 Then Joseph could no longer control himself before all his attendants, and he cried out, “Send everyone away from me!” 2 So none of them were with Joseph when he made But he wept so himself known to his brothers. loudly that the Egyptians heard him, and Phar- 3 aoh’s household soon heard of it. Joseph said to his brothers, “I am Joseph! Is my father still alive?” But they were unable to answer him, because 4 they were terrified in his presence. Then Joseph said to his brothers, “Please come near me.” And they did so. 5 6 “I am Joseph, your brother,” he said, “the one you" + } + ] + }, + { + "chapterNum": 46, + "verses": [ + { + "verseNum": 7, + "text": "–27) 1 2 family: These are the names of the sons of Israel who went to Egypt with Jacob, each with his 3 Reuben, Simeon, Levi, and Judah; 4 Issachar, Zebulun, and Benjamin; Dan and Naphtali; 5 Gad and Asher. a The descendants of Jacob numbered seventy in all, including Joseph, who was already in 6 Egypt. 7 Now Joseph and all his brothers and all that but the Israelites were fruitful generation died, and increased rapidly; they multiplied and be- came exceedingly numerous, so that the land was Oppression by a New King" + }, + { + "verseNum": 10, + "text": ". Job ; see" + }, + { + "verseNum": 13, + "text": ". is a variant of Abiezer ; see" + }, + { + "verseNum": 16, + "text": ". is a variant of f 30 Iezer SP, LXX, Vulgate, and Syriac is a variant of ; see" + }, + { + "verseNum": 24, + "text": "and" + }, + { + "verseNum": 26, + "text": "| 49 11 The sons of Levi: Gershon, Kohath, and 12 Merari. The sons of Judah: Er, Onan, Shelah, Perez, and Zerah; but Er and Onan died in the land of Canaan. 13 The sons of Perez: Hezron and Hamul. c d The sons of Issachar: Tola, Puvah, 14 and Shimron. Job, The sons of Zebulun: Sered, Elon, and 15 Jahleel. e These are the sons of Leah born to Jacob in addition to his in Paddan-aram, daughter Dinah. The total number of sons and daughters was thirty-three. 16 The Children of Zilpah f g The sons of Gad: Ziphion, Haggi, Shuni, 17 Ezbon, Eri, Arodi, and Areli. The children of Asher: Imnah, Ishvah, Ishvi, Beriah, and their sister Serah. 18 The sons of Beriah: Heber and Malchiel. These are the sons of Jacob born to Zilpah—whom Laban gave to his daughter The Children of Rachel Leah—sixteen in all. 19 The sons of Jacob’s wife Rachel: Joseph 20 and Benjamin. Manasseh and Ephraim were born to h Joseph in the land of Egypt by Asenath 21 daughter of Potiphera, priest of On. The sons of Benjamin: Bela, Becher, Ashbel, Gera, Naaman, Ehi, Rosh, Muppim, 22 Huppim, and Ard. These are the sons of Rachel born to The Children of Bilhah Jacob—fourteen in all. 23 24 The son of Dan: Hushim. The sons of Naphtali: Jahzeel, Guni, Jezer, 25 and Shillem. These are the sons of Jacob born to Bilhah, whom Laban gave to his daughter Rachel—seven in all. 26 a 10 Jemuel Ohad, Jachin, Zohar, Canaanite woman. c 13 and Shaul the son of a Nemuel Jashub 1 Chronicles 4:24. is another name for g 16 Arodi ; see" + }, + { + "verseNum": 27, + "text": "27 a And with the two sons who had been born to Joseph in Egypt, the members of Jacob’s family Jacob Arrives in Egypt who went to Egypt were seventy 28 in all. b 29 Now Jacob had sent Judah ahead of him to Jo- seph to get directions to Goshen. When Jacob’s family arrived in the land of Goshen, Joseph prepared his chariot and went there to meet his father Israel. Joseph presented himself to him, 30 embraced him, and wept profusely. Then Israel said to Joseph, “Finally I can die, now that I have seen your face and know that you 31 are still alive!” Joseph said to his brothers and to his father’s household, “I will go up and inform Pharaoh: ‘My brothers and my father’s household from the The men are land of Canaan have come to me. shepherds; they raise livestock, and they have brought their flocks and herds and all that they 33 own.’ 32 34 When Pharaoh summons you and asks, ‘What you are to say, ‘Your serv- is your occupation?’ ants have raised livestock ever since our youth— both we and our fathers.’ Then you will be al- lowed to settle in the land of Goshen, since all Jacob Settles in Goshen shepherds are detestable to the Egyptians.” 47 So Joseph went and told Pharaoh: “My fa- ther and my brothers, with their flocks and herds and all they own, have come from the 2 land of Canaan and are now in Goshen.” And he chose five of his brothers and presented 3 them before Pharaoh. “What is your occupation?” Pharaoh asked Jo- seph’s brothers. “Your servants are shepherds,” they replied" + } + ] + }, + { + "chapterNum": 48, + "verses": [ + { + "verseNum": 14, + "text": "| 51 Jacob Blesses Ephraim and Manasseh 48 2 Some time later Joseph was told, “Your father is ill.” So he set out with his two When Jacob was sons, Manasseh and Ephraim. told, “Your son Joseph has come to you,” Israel c 3 rallied his strength and sat up in bed. 4 Jacob said to Joseph, “God Almighty appeared to me at Luz in the land of Canaan, and there He blessed me and told me, ‘Behold, I will make you fruitful and multiply you; I will make you a multitude of peoples, and will give this land to your descendants after you as an everlasting 5 possession.’ And now your two sons born to you in Egypt be- fore I came to you here shall be reckoned as mine; Ephraim and Manasseh shall be mine, just as Reuben and Simeon are mine. Any children born to you after them shall be yours, and they shall be called by the names of their brothers in 7 the territory they inherit. 6 d Now as for me, when I was returning from Pad- dan, to my sorrow Rachel died along the way in the land of Canaan, some distance from Ephrath. So I buried her there beside the road to Ephrath” 8 (that is, Bethlehem). When Israel saw the sons of Joseph, he asked, 9 “Who are these?” Joseph said to his father, “They are the sons God has given me in this place.” So Jacob said, “Please bring them to me, that I 10 may bless them.” Now Israel’s eyesight was poor because of old age; he could hardly see. Joseph brought his sons to him, and his father kissed them and embraced 11 them. “I never expected to see your face again,” I" + }, + { + "verseNum": 15, + "text": "15 4 although Manasseh was the firstborn. blessed Joseph and said: Then he Uncontrolled as the waters, you will no longer excel, “May the God before whom my fathers because you went up to your father’s bed, 5 Abraham and Isaac walked, 16 the God who has been my shepherd all my a 6 life to this day, onto my couch, and defiled it. c Simeon and Levi are brothers; their swords are weapons of violence. the angel who has redeemed me from all May I never enter their council; harm— may He bless these boys. And may they be called by my name and the names of my fathers Abraham and Isaac, 17 and may they grow into a multitude upon the earth.” When Joseph saw that his father had placed his right hand on Ephraim’s head, he was displeased and took his father’s hand to move it from “Not so, my fa- Ephraim’s head to Manasseh’s. ther!” Joseph said. “This one is the firstborn; put 19 your right hand on his head.” 18 But his father refused. “I know, my son, I know!” he said. “He too shall become a people, and he too shall be great; nevertheless, his younger brother shall be greater than he, and his 20 offspring shall become a multitude of nations.” may I never join their assembly. For they kill men in their anger, 7 and hamstring oxen on a whim. Cursed be their anger, for it is strong, and their wrath, for it is cruel! I will disperse them in Jacob 8 and scatter them in Israel. d Judah, your brothers shall praise you. Your hand shall be on the necks of your 9 enemies; your father’s sons shall b" + } + ] + }, + { + "chapterNum": 50, + "verses": [ + { + "verseNum": 14, + "text": "| 53 19 a I await Your salvation, O LORD. 20 Gad will be attacked by raiders, but he will attack their heels. 21 22 Asher’s food will be rich; he shall provide royal delicacies. b Naphtali is a doe set free that bears beautiful fawns. Joseph is a fruitful vine— c 23 a fruitful vine by a spring, whose branches scale the wall. The archers attacked him with bitterness; 24 they aimed at him in hostility. Yet he steadied his bow, and his strong arms were tempered by the hands of the Mighty One of Jacob, 25 in the name of the Shepherd, the Rock of d Israel, by the God of your father who helps you, and by the Almighty who blesses you, with blessings of the heavens above, 26 with blessings of the depths below, with blessings of the breasts and womb. The blessings of your father have surpassed the blessings of the ancient mountains and the bounty of the everlasting hills. e May they rest on the head of Joseph, on the brow of the prince of his brothers. 27 Benjamin is a ravenous wolf; 28 in the morning he devours the prey, in the evening he divides the plunder.” These are the tribes of Israel, twelve in all, and this was what their father said to them. He blessed them, and he blessed each one with a The Death of Jacob suitable blessing. 29 31 Then Jacob instructed them, “I am about to be gathered to my people. Bury me with my fathers 30 in the cave in the field of Ephron the Hittite. The cave is in the field of Machpelah near Mamre, in the land of Canaan. This is the field Abraham purc" + }, + { + "verseNum": 15, + "text": "Joseph Comforts His Brothers 15 When Joseph’s brothers saw that their father was dead, they said, “What if Joseph bears a grudge? Then he will surely repay us for all the 16 evil that we did to him.” 17 So they sent word to Joseph, saying, “Before he died, your father commanded, ‘This is what you are to say to Joseph: I beg you, please forgive the transgression and sin of your brothers, for they did you wrong.’ So now, Joseph, please for- give the transgression of the servants of the God of your father.” 18 When their message came to him, Joseph wept. His brothers also came to him, bowed down 19 before him, and said, “We are your slaves!” 20 But Joseph replied, “Do not be afraid. Am I in As for you, what you in- the place of God? tended against me for evil, God intended for good, in order to accomplish a day like this—to a 23 born placed at birth Or or Exodus The Israelites Multiply in Egypt" + }, + { + "verseNum": 25, + "text": "Or or left the land of Egypt in the fifth generation marching out boldly ; similarly in verses 8 and 17 Or ; literally 68 |" + } + ] + } + ] + }, + { + "name": "Exodus", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–7) went to Egypt. 7 Jacob took with him to Egypt his sons and grandsons, and his daughters and granddaugh- The Children of Leah ters—all his offspring. 8 Now these are the names of the sons of Israel (Jacob and his descendants) who 9 went to Egypt: Reuben, Jacob’s firstborn. The sons of Reuben: Hanoch, Pallu, 10 Hezron, and Carmi. b a The sons of Simeon: Jemuel, Jamin," + }, + { + "verseNum": 5, + "text": "); LXX (see also" + }, + { + "verseNum": 8, + "text": "–22) ther Jacob and all his relatives, seventy-five in all. 15 14 16 f So Jacob went down to Egypt, where he and our fathers died. Their bones were carried back to Shechem and placed in the tomb that Abraham had bought from the sons of Hamor at 17 Shechem for a price he paid in silver. 18 As the time drew near for God to fulfill His promise to Abraham, our people in Egypt in- Then another king, creased greatly in number. 19 who knew nothing of Joseph, arose over Egypt. He exploited our people and oppressed our fa- thers, forcing them to abandon their infants so The Birth and Adoption of Moses they would die." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–10 ;" + }, + { + "verseNum": 7, + "text": "7 20 Then his sister said to Pharaoh’s daughter, “Shall I go and call one of the Hebrew women to 8 nurse the child for you?” “So where is he?” their father asked. “Why did you leave the man behind? Invite him to have 21 something to eat.” “Go ahead,” Pharaoh’s daughter told her. And 9 the girl went and called the boy’s mother. Pharaoh’s daughter said to her, “Take this child and nurse him for me, and I will pay your wages.” 10 So the woman took the boy and nursed him. a When the child had grown older, she brought him to Pharaoh’s daughter, and he became her and explained, “I son. She named him Moses The Rejection and Flight of Moses drew him out of the water.”" + }, + { + "verseNum": 11, + "text": "–22) 22 23 24 When Moses was forty years old, he decided to And visit his brothers, the children of Israel. Joseph was he was of great sta- e 13 ; the Roman Province of Asia was located in what is now western Turkey. And they were carried back g 20 f 16" + }, + { + "verseNum": 13, + "text": "–14 (see also LXX)" + }, + { + "verseNum": 14, + "text": "j 46 verse 38 k 50" + }, + { + "verseNum": 18, + "text": ". h 1 . Cited in" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": ". j 5 Angel ; see" + }, + { + "verseNum": 5, + "text": "–10 ; also in Or a dwelling place for the house of Jacob." + }, + { + "verseNum": 6, + "text": "Psalm i 15 See" + }, + { + "verseNum": 12, + "text": "Or or or Literally Or when he saw one of them being mistreated, Mo- ses went to his defense and avenged him by strik- 25 ing down the Egyptian who was oppressing him. He assumed his brothers would understand that God was using him to deliver them, but they 26 did not. The next day he came upon two Israelites who were fighting, and he tried to reconcile them, saying, ‘Men, you are brothers. Why are you mis- 27 treating each other?’ But the man who was abusing his neighbor 28 pushed Moses aside and said, ‘Who made you a Do you want to kill me ruler and judge over us? At this as you killed the Egyptian yesterday?’ remark, Moses fled to the land of Midian, where The Call of Moses he lived as a foreigner and had two sons." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 3, + "text": "19 8" + }, + { + "verseNum": 9, + "text": "| 57 spacious land, a land flowing with milk and honey—the home of the Canaanites, Hittites, 9 Amorites, Perizzites, Hivites, and Jebusites. So I will stretch out My hand and strike him. the Egyptians with all the wonders I will perform 21 among them. And after that, he will release you. 10 And now the cry of the Israelites has reached Me, and I have seen how severely the Egyptians are oppressing them. Therefore, go! I am send- ing you to Pharaoh to bring My people the Israel- 11 ites out of Egypt.” a But Moses asked God, “Who am I, that I should go to Pharaoh and bring the Israelites out of 12 Egypt?” “I will surely be with you,” God said, “and this will be the sign to you that I have sent you: When you have brought the people out of Egypt, all of 13 you will worship God on this mountain.” b Then Moses asked God, “Suppose I go to the Is- raelites and say to them, ‘The God of your fathers has sent me to you,’ and they ask me, ‘What is His 14 name?’ What should I tell them?” c God said to Moses, “I AM WHO I AM. This is what you are to say to the Israelites: ‘I AM has 15 sent me to you.’ ” God also told Moses, “Say to the Israelites, ‘The LORD, the God of your fathers—the God of Abra- ham, the God of Isaac, and the God of Jacob—has sent me to you.’ This is My name forever, and this is how I am to be remembered in every genera- 16 tion. Go, assemble the elders of Israel and say to them, ‘The LORD, the God of your fathers—the God of Abraham, Isaac, and Jacob—has appeared to me an" + }, + { + "verseNum": 10, + "text": "The Appointment of Aaron 26 10 “Please, Lord,” Moses replied, “I have never been eloquent, neither in the past nor since You have spoken to Your servant, for I am slow of 11 speech and tongue.” And the LORD said to him, “Who gave man his mouth? Or who makes the mute or the deaf, the sighted or the blind? Is it not I, the LORD? Now go! I will help you as you speak, and I will teach 13 you what to say.” 12 But Moses replied, “Please, Lord, send some- 14 one else.” 16 15 Then the anger of the LORD burned against Moses, and He said, “Is not Aaron the Levite your brother? I know that he can speak well, and he is now on his way to meet you. When he sees you, he will be glad in his heart. You are to speak to him and put the words in his mouth. I will help both of you to speak, and I will teach you what to do. He will speak to the people for you. He will be your spokesman, and it will be as if you were God to him. But take this staff in your hand so Moses Leaves for Egypt you can perform signs with it.” 18 17 So the LORD let him alone. (When she said, “bridegroom of blood,” she was referring to the The People Believe Moses and Aaron circumcision.) 27 28 Meanwhile, the LORD had said to Aaron, “Go and meet Moses in the wilderness.” So he went and met Moses at the mountain of God and kissed And Moses told Aaron everything the him. LORD had sent him to say, and all the signs He 29 had commanded him to perform. 30 Then Moses and Aaron went and assembled all and Aaron relayed the elders of" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 15, + "text": ". Tilgath-pilneser Heb.; some LXX manuscripts (see also Josh. 19:8) Tiglath-pileser 376 | 1 Chronicles 5:11 The Descendants of Gad 11 The descendants of Gad lived next to the Reubenites in the land of Bashan, as far as 12 Salecah: Joel was the chief, Shapham the second, then 13 Jaanai and Shaphat, who lived in Bashan. 14 Their kinsmen by families were Michael, Meshullam, Sheba, Jorai, Jacan, Zia, and Eber— seven in all. These were the sons of Abihail son of Huri, the son of Jaroah, the son of Gilead, the son of Michael, the son of Jeshishai, the son of Jahdo, the son of Buz. Ahi son of Abdiel, the 16 son of Guni, was head of their family. 15 They lived in Gilead, in Bashan and its towns, 17 and throughout the pasturelands of Sharon. All of them were recorded in the genealogies during the reigns of Jotham king of Judah and 18 Jeroboam king of Israel. The Reubenites, the Gadites, and the half- tribe of Manasseh had 44,760 warriors— valiant men who carried the shield and sword, 19 drew the bow, and were trained for battle. They waged war against the Hagrites, as well 20 as Jetur, Naphish, and Nodab. 21 And because they cried out to God in battle, they were helped against their enemies, and the Hagrites and all their allies were delivered into their hands. Because they put their trust in God, He answered their prayers. They seized the livestock of the Hagrites—50,000 camels, 22 250,000 sheep, and 2,000 donkeys. They also took 100,000 captives, and many others fell slain, because" + }, + { + "verseNum": 16, + "text": "| 59 So the taskmasters and foremen of the people went out and said to them, “This is what Pharaoh Go and says: ‘I am no longer giving you straw. get your own straw wherever you can find it; but 12 your workload will in no way be reduced.’ 11 ” 13 So the people scattered all over the land of The task- Egypt to gather stubble for straw. masters kept pressing them, saying, “Fulfill your quota each day, just as you did when straw was 14 provided.” Then the Israelite foremen, whom Pharaoh’s taskmasters had set over the people, were beaten and asked, “Why have you not fulfilled your quota of bricks yesterday or today, as you The Cry of the Israelites did before?” 15 16 So the Israelite foremen went and appealed to Pharaoh: “Why are you treating your servants this way? No straw has been given to your servants, yet we are told, ‘Make bricks!’ Look, your servants are being beaten, but the fault is 17 with your own people.” 18 “You are slackers!” Pharaoh replied. “Slackers! That is why you keep saying, ‘Let us go and sac- Now get to work. You will rifice to the LORD.’ be given no straw, yet you must deliver the full 19 quota of bricks.” The Israelite foremen realized they were in trouble when they were told, “You must not re- When they duce your daily quota of bricks.” left Pharaoh, they confronted Moses and Aaron, 21 who stood waiting to meet them. 20 “May the LORD look upon you and judge you,” the foremen said, “for you have made us a stench before Pharaoh and his officials; you hav" + }, + { + "verseNum": 17, + "text": "17 3 The sons of Gershon were Libni and 18 Shimei, by their clans. The sons of Kohath were Amram, Izhar, 19 Hebron, and Uzziel. Kohath lived 133 years. The sons of Merari were Mahli and Mushi. These were the clans of the Levites accord- 20 ing to their records. And Amram married his father’s sister Jochebed, and she bore him Aaron and 21 Moses. Amram lived 137 years. The sons of Izhar were Korah, Nepheg, 22 and Zichri. a The sons of Uzziel were Mishael, 23 Elzaphan, and Sithri. And Aaron married Elisheba, the daugh- ter of Amminadab and sister of Nahshon, and she bore him Nadab and Abihu, Eleazar 24 and Ithamar. b The sons of Korah were Assir, Elkanah, and Abiasaph. 25 Korahites. These were the clans of the Aaron’s son Eleazar married one of the daughters of Putiel, and she bore him Phinehas. 26 These were the heads of the Levite families by their clans. 27 It was this Aaron and Moses to whom the LORD said, “Bring the Israelites out of the land of Egypt by their divisions.” Moses and Aaron were the ones who spoke to Pharaoh king of 28 Egypt in order to bring the Israelites out of Egypt. 29 Now on the day that the LORD spoke to Moses He said to him, “I am the LORD; tell in Egypt, 30 Pharaoh king of Egypt everything I say to you.” But in the LORD’s presence Moses replied, “Since I am unskilled in speech, why would God Commands Moses and Aaron Pharaoh listen to me?” 7 2 The LORD answered Moses, “See, I have made you like God to Pharaoh, and your You are to brother Aaron will be" + }, + { + "verseNum": 24, + "text": ". is a variant of d 27 Eliab Gershon c 26 33 1 Chronicles 6:53 | 377 From the Kohathites: 34 g 36 35 Heman the singer, the son of Joel, the son of Samuel, son of Elkanah, the the son of Jeroham, the son of Eliel, the the son of Zuph, the son son of Toah, of Elkanah, the son of Mahath, the son of Amasai, the son of Elkanah, the son of Joel, the son of Azariah, the son of Zeph- aniah, the son of Tahath, the son of Assir, the son of Ebiasaph, the son of Korah, the son of Izhar, the son of Ko- hath, the son of Levi, the son of Israel. 37 38 39 Heman’s kinsman was Asaph, who served at his right hand: 40 41 the son of Malchijah, Asaph the son of Berechiah, the son of h Shimea, the son of Michael, the son of Baaseiah, the 42 son of Ethni, the son of Zerah, the son of Adaiah, the son of Ethan, the son of Zimmah, the son of Shimei, the son of Jahath, the son of Gershom, the son of Levi. 43 44 On the left were their kinsmen, the sons of Merari: 45 46 Ethan the son of Kishi, the son of Abdi, the son of Malluch, the son of Hashabiah, the son of Amaziah, the son of Hilkiah, the son of Amzi, the son of Bani, the son of Shemer, the son of Mahli, the son of Mu- shi, the son of Merari, the son of Levi. 47 The Descendants of Aaron i 49 Their fellow Levites were assigned to every kind of service of the tabernacle, the house of God. But Aaron and his sons did all the work of the Most Holy Place. They presented the offer- ings on the altar of burnt offering and on the altar of incense to make ato" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 10, + "text": "The Hebrew word traditionally translated as Hebrew was used for But I know that the king of Egypt will not b 12 a 10 allow you to go unless a mighty hand compels hand bosom Cited in" + }, + { + "verseNum": 15, + "text": "; here and in verse 10, in contrast to Moses’ staff, which became a Or ; also in verse 22 or Or or ; see" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 20, + "text": "| 61 And the LORD said to Moses, “Tell Aaron, ‘Take your staff and stretch out your hand over the wa- ters of Egypt—over their rivers and canals and ponds and all the reservoirs—that they may be- come blood.’ There will be blood throughout the land of Egypt, even in the vessels of wood and 20 stone.” a 21 Moses and Aaron did just as the LORD had commanded; in the presence of Pharaoh and his officials, Aaron raised the staff and struck the water of the Nile, and all the water was turned to The fish in the Nile died, and the river blood. smelled so bad that the Egyptians could not drink its water. And there was blood throughout the 22 land of Egypt. 23 But the magicians of Egypt did the same things by their magic arts. So Pharaoh’s heart was hard- ened, and he would not listen to Moses and Instead, Aaron, just as the LORD had said. 24 Pharaoh turned around, went into his palace, and So all the did not take any of this to heart. Egyptians dug around the Nile for water to drink, because they could not drink the water from the 25 river. And seven full days passed after the LORD had The Second Plague: Frogs struck the Nile. 8 3 2 Then the LORD said to Moses, “Go to Pharaoh and tell him that this is what the LORD says: ‘Let My people go, so that they may But if you refuse to let them go, I worship Me. The will plague your whole country with frogs. Nile will teem with frogs, and they will come into your palace and up to your bedroom and onto your bed, into the houses of your official" + }, + { + "verseNum": 21, + "text": "21 what the LORD says: ‘Let My people go, so that a But if you will not let My they may worship Me. people go, I will send swarms of flies upon you and your officials and your people and your houses. The houses of the Egyptians and even the 22 ground where they stand will be full of flies. But on that day I will give special treatment to the land of Goshen, where My people live; no swarms of flies will be found there. In this way 23 you will know that I, the LORD, am in the land. between My people and your people. This sign will take place tomor- 24 row.’ I will make a distinction ” b And the LORD did so. Thick swarms of flies poured into Pharaoh’s palace and into the houses of his officials. Throughout Egypt the land was 25 ruined by swarms of flies. Then Pharaoh summoned Moses and Aaron and said, “Go, sacrifice to your God within this 26 land.” But Moses replied, “It would not be right to do that, because the sacrifices we offer to the LORD our God would be detestable to the Egyptians. If we offer sacrifices that are detestable before the Egyptians, will they not stone us? We must make a three-day journey into the wilderness and sacrifice to the LORD our God as He com- 28 mands us.” 27 Pharaoh answered, “I will let you go and sacri- fice to the LORD your God in the wilderness, but 29 you must not go very far. Now pray for me.” “As soon as I leave you,” Moses said, “I will pray to the LORD, so that tomorrow the swarms of flies will depart from Pharaoh and his officials and h" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 16, + "text": "(see" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 11, + "text": "| 63 The thunder and hail ceased, and the rain no 34 longer poured down on the land. When Pharaoh saw that the rain and hail and thunder had ceased, he sinned again and hardened his heart—he and his officials. So Pharaoh’s heart was hardened, and he would not let the Israelites go, just as the LORD had said The Eighth Plague: Locusts through Moses. 35 10 a Then the LORD said to Moses, “Go to Pharaoh, for I have hardened his heart and the hearts of his officials, that I may perform 2 these miraculous signs of Mine among them, and that you may tell your children and grand- children how severely I dealt with the Egyptians when I performed miraculous signs among them, 3 so that all of you may know that I am the LORD.” 4 So Moses and Aaron went to Pharaoh and told him, “This is what the LORD, the God of the He- brews, says: ‘How long will you refuse to humble yourself before Me? Let My people go, so that they may worship Me. But if you refuse to let My 5 people go, I will bring locusts into your territory tomorrow. They will cover the face of the land so that no one can see it. They will devour what- ever is left after the hail and eat every tree that grows in your fields. They will fill your houses and the houses of all your officials and every Egyptian—something neither your fathers nor your grandfathers have seen since the day they came into this land.’ 7 Then Moses turned and left Pharaoh’s presence. ” 6 Pharaoh’s officials asked him, “How long will this man be a snare to us?" + }, + { + "verseNum": 12, + "text": "12 Then the LORD said to Moses, “Stretch out your hand over the land of Egypt, so that the locusts may swarm over it and devour every plant in the land—everything that the hail has 13 left behind.” So Moses stretched out his staff over the land of Egypt, and throughout that day and night the LORD sent an east wind across the land. By 14 morning the east wind had brought the locusts. 15 The locusts swarmed across the land and set- tled over the entire territory of Egypt. Never be- fore had there been so many locusts, and never again will there be. They covered the face of all the land until it was black, and they consumed all the plants on the ground and all the fruit on the trees that the hail had left behind. Nothing green was left on any tree or plant in all the land of 16 Egypt. Pharaoh quickly summoned Moses and Aaron 17 and said, “I have sinned against the LORD your God and against you. Now please forgive my sin once more and appeal to the LORD your God, 18 that He may remove this death from me.” 19 So Moses left Pharaoh’s presence and ap- pealed to the LORD. And the LORD changed the wind to a very strong west wind that carried off the locusts and blew them into the Red Sea. Not 20 a single locust remained anywhere in Egypt. b a But the LORD hardened The Ninth Plague: Darkness he would not let the Israelites go. 21 Pharaoh’s heart, and Then the LORD said to Moses, “Stretch out your hand toward heaven, so that darkness may spread over the land of Egypt—a palpable 22 darkn" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "–13) vites.” 9 3 In the first month of the second year after Is- rael had come out of the land of Egypt, the 2 LORD spoke to Moses in the Wilderness of Sinai: “The Israelites are to observe the Passover at its appointed time. You are to observe it at the ap- pointed time, at twilight on the fourteenth day of this month, in accordance with its statutes and 4 ordinances.” 5 a So Moses told the Israelites to observe the Pass- and they did so in the Wilderness of Sinai, over, at twilight on the fourteenth day of the first month. The Israelites did everything just as the 6 LORD had commanded Moses. But there were some men who were unclean a 3 due to a dead body, so they could not observe the between the two evenings of the fourteenth by day 7 Passover on that day. And they came before Mo- and said to Moses, ses and Aaron that same day “We are unclean because of a dead body, but why should we be excluded from presenting the LORD’s offering with the other Israelites at the 8 appointed time?” “Wait here until I find out what the LORD com- 10 9 mands concerning you,” Moses replied. 11 Then the LORD said to Moses, “Tell the Israelites: ‘When any one of you or your descend- ants is unclean because of a dead body, or is away on a journey, he may still observe the Passover to Such people are to observe it at twi- the LORD. light on the fourteenth day of the second month. They are to eat the lamb, together with unleav- they may not ened bread and bitter herbs; leave any of it until morning" + }, + { + "verseNum": 14, + "text": "–20. calendar, usually occurring within the months of March and April. to Jerusalem; it is also known as Sukkot, the autumn feast of pilgrimage to Jerusalem; it is later called the Feast of Weeks (see" + }, + { + "verseNum": 28, + "text": "| 65 leaven from your houses. Whoever eats anything leavened from the first day through the seventh 16 must be cut off from Israel. On the first day you are to hold a sacred assem- bly, and another on the seventh day. You must not do any work on those days, except to prepare 17 the meals—that is all you may do. e So you are to keep the Feast of Unleavened Bread, for on this very day I brought your divi- sions out of the land of Egypt. You must keep this 18 day as a permanent statute for the generations to In the first month you are to eat unleav- come. ened bread, from the evening of the fourteenth 19 day until the evening of the twenty-first day. For seven days there must be no leaven found in your houses. If anyone eats something leav- ened, that person, whether a foreigner or native of the land, must be cut off from the congregation You are not to eat anything leavened; of Israel. 21 eat unleavened bread in all your homes.” 20 Then Moses summoned all the elders of Israel and told them, “Go at once and select 22 for yourselves a lamb for each family, and slaugh- ter the Passover lamb. Take a cluster of hys- sop, dip it into the blood in the basin, and brush the blood on the top and sides of the doorframe. None of you shall go out the door of his house un- 23 til morning. When the LORD passes through to strike down the Egyptians, He will see the blood on the top and sides of the doorframe and will pass over that doorway; so He will not allow the destroyer 24 to enter your ho" + }, + { + "verseNum": 29, + "text": "The Tenth Plague: Death of the Firstborn Instructions for the Passover 29 43 Now at midnight the LORD struck down every firstborn male in the land of Egypt, from the firstborn of Pharaoh, who sat on his throne, to the firstborn of the prisoner in the dungeon, as 30 well as all the firstborn among the livestock. During the night Pharaoh got up—he and all his officials and all the Egyptians—and there was loud wailing in Egypt; for there was no house The Exodus Begins without someone dead. 31 32 Then Pharaoh summoned Moses and Aaron by night and said, “Get up, leave my people, both you and the Israelites! Go, worship the LORD as you Take your flocks and herds as have requested. well, just as you have said, and depart! And bless 33 me also.” And in order to send them out of the land quickly, the Egyptians urged the people on. “For 34 otherwise,” they said, “we are all going to die!” So the people took their dough before it was leavened, carrying it on their shoulders in knead- 35 ing bowls wrapped in clothing. 36 Furthermore, the Israelites acted on Moses’ word and asked the Egyptians for articles of sil- ver and gold, and for clothing. And the LORD gave the people such favor in the sight of the Egyptians that they granted their request. In this 37 way they plundered the Egyptians. a 38 The Israelites journeyed from Rameses to Suc- coth with about 600,000 men on foot, besides And a mixed multitude women and children. also went up with them, along with great droves 39 of livestock" + }, + { + "verseNum": 46, + "text": "and" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–16) LORD your God will bless you in all you do. 19 20 You must set apart to the LORD your God every firstborn male produced by your herds and flocks. You are not to put the firstborn of your oxen to work, nor are you to shear the firstborn Each year you and your house- of your flock. hold are to eat it before the LORD your God in the 21 place the LORD will choose. But if an animal has a defect, is lame or blind, 22 or has any serious flaw, you must not sacrifice it to the LORD your God. Eat it within your gates; both the ceremonially unclean and clean may eat But you it as they would a gazelle or a deer. must not eat the blood; pour it on the ground like Passover and the Feast of Unleavened Bread water. (Ex. 12:14–28 ; Lev. 23:4–8 ; Num. 28:16–25) 23 c Observe the month of Abib and cele- brate the Passover to the LORD your God, because in the month of Abib the LORD your 2 God brought you out of Egypt by night. You are to offer to the LORD your God the Pass- over sacrifice from the herd or flock in the place 3 the LORD will choose as a dwelling for His Name. You must not eat leavened bread with it; for seven days you are to eat with it unleavened bread, the bread of affliction, because you left the land of Egypt in haste—so that you may remem- ber for the rest of your life the day you left the 4 land of Egypt. No leaven is to be found in all your land for seven days, and none of the meat you sacrifice in the evening of the first day shall remain until 5 morning. 6 You are not" + }, + { + "verseNum": 2, + "text": "Or" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 14, + "text": "| 67 day nor the pillar of fire by night left its place be- Pharaoh Pursues the Israelites fore the people. 2 14 Then the LORD said to Moses, “Tell the Israelites to turn back and encamp be- fore Pi-hahiroth, between Migdol and the sea. You are to encamp by the sea, directly opposite 3 Baal-zephon. d 4 For Pharaoh will say of the Israelites, ‘They are wandering the land in confusion; the wilderness has boxed them in.’ Phar- aoh’s heart so that he will pursue them. But I will gain honor by means of Pharaoh and all his army, and the Egyptians will know that I am the LORD.” 5 So this is what the Israelites did. And I will harden When the king of Egypt was told that the people had fled, Pharaoh and his officials changed their minds about them and said, “What have we 6 done? We have released Israel from serving us.” 7 So Pharaoh prepared his chariot and took his He took 600 of the best army with him. chariots, and all the other chariots of Egypt, with 8 officers over all of them. e 9 And the LORD hardened the heart of Pharaoh king of Egypt so that he pursued the Israelites, The Egyp- who were marching out defiantly. tians—all Pharaoh’s horses and chariots, horse- men and troops—pursued the Israelites and overtook them as they camped by the sea near 10 Pi-hahiroth, opposite Baal-zephon. 11 As Pharaoh approached, the Israelites looked up and saw the Egyptians marching after them, and they were terrified and cried out to the They said to Moses, “Was it because LORD. there were no gra" + }, + { + "verseNum": 15, + "text": "Parting the Red Sea 15 17 16 Then the LORD said to Moses, “Why are you crying out to Me? Tell the Israelites to go for- And as for you, lift up your staff and ward. stretch out your hand over the sea and divide it, so that the Israelites can go through the sea on dry ground. And I will harden the hearts of the Egyptians so that they will go in after them. Then I will gain honor by means of Pharaoh and all his The Egyp- army and chariots and horsemen. tians will know that I am the LORD when I am honored through Pharaoh, his chariots, and his 19 horsemen.” 18 a 20 And the angel of God, who had gone before the camp of Israel, withdrew and went behind them. The pillar of cloud also moved from before so that it came them and stood behind them, b between the camps of Egypt and Israel. The cloud was there in the darkness, but it lit up the night. So all night long neither camp went near the 21 other. Then Moses stretched out his hand over the sea, and all that night the LORD drove back the sea with a strong east wind that turned it into dry and the Isra- land. So the waters were divided, elites went through the sea on dry ground, with 23 walls of water on their right and on their left. 22 24 And the Egyptians chased after them—all Pharaoh’s horses, chariots, and horsemen—and At morning watch, followed them into the sea. however, the LORD looked down on the army of the Egyptians from the pillar of fire and cloud, He and He threw their camp into confusion. caused their chariot wheels" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 4, + "text": ". ; that is, approximately 2.87 to 3.45 miles (4.62 to 5.55 kilometers) SBL, NA, NE, and WH 37 38 Everyone the Father gives Me will come to Me, and the one who comes to Me I will never drive For I have come down from heaven, not away. to do My own will, but to do the will of Him who 39 sent Me. 40 And this is the will of Him who sent Me, that I shall lose none of those He has given Me, but raise them up at the last day. For it is My Fa- ther’s will that everyone who looks to the Son and believes in Him shall have eternal life, and I 41 will raise him up at the last day.” 42 At this, the Jews began to grumble about Jesus because He had said, “I am the bread that came down from heaven.” They were asking, “Is this not Jesus, the son of Joseph, whose father and mother we know? How then can He say, ‘I 43 have come down from heaven?’” 44 45 “Stop grumbling among yourselves,” Jesus re- plied. “No one can come to Me unless the Fa- ther who sent Me draws him, and I will raise him up at the last day. It is written in the Prophets: ‘And they will all be taught by God.’ Everyone 46 who has heard the Father and learned from Him comes to Me— not that anyone has seen the Father except the One who is from God; only He 47 has seen the Father. a 48 49 Truly, truly, I tell you, he who believes has Your fa- I am the bread of life. eternal life. 50 thers ate the manna in the wilderness, yet they This is the bread that comes down from died. 51 heaven, so that anyone may eat of it and not die. I am" + }, + { + "verseNum": 8, + "text": "| 69 could not drink the water there because it was 24 bitter. (That is why it was named Marah.) 25 So the people grumbled against Moses, saying, “What are we to drink?” And Moses cried out to the LORD, and the LORD showed him a log. And when he cast it into the waters, they were sweetened. 26 There the LORD made for them a statute and an saying, ordinance, and there He tested them, “If you will listen carefully to the voice of the LORD your God, and do what is right in His eyes, and pay attention to His commands, and keep all His statutes, then I will not bring on you any of the diseases I inflicted on the Egyptians. For I am 27 the LORD who heals you.” Then they came to Elim, where there were twelve springs of water and seventy palm trees, Manna and Quail from Heaven and they camped there by the waters. 16 c 2 On the fifteenth day of the second month after they had left the land of Egypt, the whole congregation of Israel set out from Elim which is between and came to the Desert of Sin, And there in the desert the Elim and Sinai. 3 whole congregation of Israel grumbled against Moses and Aaron. “If only we had died by the LORD’s hand in the land of Egypt!” they said. “There we sat by pots of meat and ate our fill of bread, but you have brought us into this desert to 4 starve this whole assembly to death!” Then the LORD said to Moses, “Behold, I will rain down bread from heaven for you. Each day the people are to go out and gather enough for that day. In this way I will test w" + }, + { + "verseNum": 9, + "text": "the morning, for He has heard your grumbling against Him. Who are we? Your grumblings are 9 not against us but against the LORD.” Then Moses said to Aaron, “Tell the whole con- gregation of Israel, ‘Come before the LORD, for 10 He has heard your grumbling.’ ” And as Aaron was speaking to the whole congregation of Israel, they looked toward the desert, and there in a cloud the glory of the LORD 11 appeared. 12 a Then the LORD said to Moses, “I have heard the grumbling of the Israelites. Tell them, ‘At twi- light you will eat meat, and in the morning you will be filled with bread. Then you will know that 13 I am the LORD your God.’ ” That evening quail came and covered the 14 camp, and in the morning there was a layer of When the layer of dew dew around the camp. had evaporated, there were thin flakes on the de- When sert floor, as fine as frost on the ground. the Israelites saw it, they asked one another, “What is it?” For they did not know what it was. 15 16 So Moses told them, “It is the bread that the This is what the LORD has given you to eat. LORD has commanded: ‘Each one is to gather as for much as he needs. You may take an omer 17 each person in your tent.’ ” b 18 c So the Israelites did this. Some gathered more, When they measured it by the and some less. omer, he who gathered much had no excess, and Each one he who gathered little had no shortfall. 19 gathered as much as he needed to eat. 20 Then Moses said to them, “No one may keep But they did not listen any of it u" + }, + { + "verseNum": 16, + "text": "" + }, + { + "verseNum": 18, + "text": "See 1 Corinthians 16:3–4. Or 1040 | 2 Corinthians 9:8 a should give what he has decided in his heart to 8 give, not out of regret or compulsion. For God And God is able to make loves a cheerful giver. all grace abound to you, so that in all things, at all times, having all that you need, you will abound in every good work. As it is written: 9 “He has scattered abroad His gifts to b 10 the poor; His righteousness endures forever.” 11 righteousness. Now He who supplies seed to the sower and bread for food will supply and multiply your store of seed and will increase the harvest of your You will be enriched in every way to be generous on every occasion, and through us your generosity will produce thanks- For this ministry of service is not giving to God. only supplying the needs of the saints but is also overflowing in many expressions of thanksgiving 13 to God. 12 14 Because of the proof this ministry provides, the saints will glorify God for your obedient con- fession of the gospel of Christ, and for the gener- osity of your contribution to them and to all the And their prayers for you will express others. their affection for you, because of the surpassing grace God has given you. Thanks be to God for Paul’s Apostolic Authority His indescribable gift! 15 10 2 Now by the mildness and gentleness of Christ, I appeal to you—I, Paul, who am humble when face to face with you, but bold I beg you that when I come I may when away. not need to be as bold as I expect toward those 3 who p" + }, + { + "verseNum": 22, + "text": "–30) 4 2 Therefore, while the promise of entering His rest still stands, let us be careful that none of For we you be deemed to have fallen short of it. also received the good news just as they did; but the message they heard was of no value to them, since they did not share the faith of those who 3 comprehended it. a Now we who have believed enter that rest. As for the others, it is just as God has said: b “So I swore on oath in My anger, ‘They shall never enter My rest.’ ” 4 And yet His works have been finished since the foundation of the world. For somewhere He has spoken about the seventh day in this manner: “And on the seventh day God rested from all His works.” And again, as He says in the passage 6 above: “They shall never enter My rest.” 5 c 7 Since, then, it remains for some to enter His rest, and since those who formerly heard the good news did not enter because of their disobe- God again designated a certain day as dience, “Today,” when a long time later He spoke through David as was just stated: “Today, if you 8 hear His voice, do not harden your hearts.” 9 d 10 For if Joshua had given them rest, God would not have spoken later about another day. There remains, then, a Sabbath rest for the people of For whoever enters God’s rest also rests God. 11 from his own work, just as God did from His. Let us, therefore, make every effort to enter that rest, so that no one will fall by following the The Living Word (2 Timothy 3:10–17) same pattern of disobedience. 12 13 For" + }, + { + "verseNum": 36, + "text": "" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "–7) unclean until evening.” 20 In the first month, the whole congrega- tion of Israel entered the Wilderness of Zin and stayed in Kadesh. There Miriam died and 2 was buried. 3 4 Now there was no water for the congregation, so they gathered against Moses and Aaron. The people quarreled with Moses and said, “If only we had perished with our brothers before the LORD! Why have you brought the LORD’s assembly into this wilderness for us and our livestock to die here? Why have you led us up out of Egypt to bring us to this wretched place? It is not a place of grain, figs, vines, or pomegran- 6 ates—and there is no water to drink!” 5 8 Then Moses and Aaron went from the presence of the assembly to the entrance to the Tent of 7 Meeting. They fell facedown, and the glory of the LORD appeared to them. And the LORD said to Moses, “Take the staff and assemble the congre- gation. You and your brother Aaron are to speak to the rock while they watch, and it will pour out its water. You will bring out water from the rock and provide drink for the congregation and their 9 livestock.” 10 11 So Moses took the staff from the LORD’s pres- Then ence, just as he had been commanded. Moses and Aaron gathered the assembly in front of the rock, and Moses said to them, “Listen now, you rebels, must we bring you water out of this rock?” Then Moses raised his hand and struck the rock twice with his staff, so that a great amount of water gushed out, and the congrega- 12 tion and their livestock were able t" + }, + { + "verseNum": 7, + "text": ". the Sea of Reeds destruction quarreling means d 4 b 2 means . Or moved on and camped on the other side of the Arnon, in the wilderness that extends into the Amorite territory. 14 Now the Arnon is the border between the Moab- Therefore it is stated in ites and the Amorites. the Book of the Wars of the LORD: “Waheb in Suphah 15 and the wadis of the Arnon, even the slopes of the wadis 16 that extend to the site of Ar a and lie along the border of Moab.” From there they went on to Beer, 17 the well where the LORD said to Moses, “Gather the peo- ple so that I may give them water.” Then Israel sang this song: “Spring up, O well, 18 all of you sing to it! The princes dug the well; the nobles of the people hollowed it out with their scepters and with their staffs.” 19 20 From the wilderness the Israelites went on to Mattanah, and from Mattanah to Nahaliel, and and from Bamoth to from Nahaliel to Bamoth, the valley in Moab where the top of Pisgah over- The Defeat of Sihon" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 12, + "text": "| 71 15 d 16 And Moses built an altar and named it The LORD Is My Banner. “Indeed,” he said, “a hand was lifted up toward the throne of the LORD. The LORD will war against Amalek from generation The Visit of Jethro to generation.” 18 e 3 Now Moses’ father-in-law Jethro, the priest of Midian, heard about all that God had done for Moses and His people Israel, and 2 how the LORD had brought Israel out of Egypt. f After Moses had sent back his wife Zipporah, his father-in-law Jethro had received her, along with her two sons. One son was named Ger- 4 shom, for Moses had said, “I have been a for- eigner in a foreign land.” The other son was named Eliezer, for Moses had said, “The God of my father was my helper and delivered me from 5 the sword of Pharaoh.” g Moses’ father-in-law Jethro, along with Moses’ wife and sons, came to him in the desert, where He he was encamped at the mountain of God. sent word to Moses, “I, your father-in-law Jethro, am coming to you with your wife and her two 7 sons.” 6 8 So Moses went out to meet his father-in-law and bowed down and kissed him. They greeted each other and went into the tent. Then Moses recounted to his father-in-law all that the LORD had done to Pharaoh and the Egyptians for Israel’s sake, all the hardships they had encoun- tered along the way, and how the LORD had 9 delivered them. 10 And Jethro rejoiced over all the good things the LORD had done for Israel, whom He had rescued Jethro de- from the hand of the Egyptians. clared, “Blesse" + }, + { + "verseNum": 13, + "text": "Jethro Advises Moses" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 12, + "text": "–13 ;" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "–17) on the mountain. 5 At that time I was standing between the LORD and you to declare to you the word of the LORD, because you were afraid of the fire and would not “I am the go up the mountain. And He said: LORD your God, who brought you out of the land of Egypt, out of the house of slavery. 7 6 e 8 You shall have no other gods before Me. You shall not make for yourself an idol in the form of anything in the heavens above, 9 on the earth below, or in the waters beneath. You shall not bow down to them or worship them; for I, the LORD your God, am a jealous God, visiting the iniquity of the fathers on their children to the third and fourth but generations of those who hate Me, showing loving devotion to a thousand gen- erations of those who love Me and keep My 11 commandments. 10 f You shall not take the name of the LORD your God in vain, for the LORD will not leave anyone unpunished who takes His name in 12 vain. Observe the Sabbath day by keeping it holy, as the LORD your God has commanded Or e 7 ; Syriac besides Me That is, the Dead Sea Note that" + }, + { + "verseNum": 4, + "text": "–6; Deuteron- Osorkon made their sons and their daughters pass through the fire ; see also LXX. is likely an abbreviation for 21 34 2 Kings 18:8 | 359 22 23 When the LORD had torn Israel away from the house of David, they made Jeroboam son of Ne- bat king, and Jeroboam led Israel away from fol- lowing the LORD and caused them to commit a great sin. The Israelites persisted in all the sins that Jeroboam had committed and did not turn away from them. Finally, the LORD removed Israel from His presence, as He had declared through all His servants the prophets. So Israel was exiled from their homeland into Assyria, Samaria Resettled where they are to this day. 24 Then the king of Assyria brought people from Babylon, Cuthah, Avva, Hamath, and Sepharvaim and settled them in the towns of Samaria to re- place the Israelites. They took possession of Sa- 25 maria and lived in its towns. 26 Now when the settlers first lived there, they did not worship the LORD, so He sent lions among them, which killed some of them. So they spoke to the king of Assyria, saying, “The peoples that you have removed and placed in the cities of Samaria do not know the requirements of the God of the land. Because of this, He has sent lions among them, which are indeed killing them 27 off.” Then the king of Assyria commanded: “Send back one of the priests you carried off from Sa- maria, and have him go back to live there and 28 teach the requirements of the God of the land.” Thus one of the priests they had car" + }, + { + "verseNum": 12, + "text": ";" + }, + { + "verseNum": 13, + "text": ";" + }, + { + "verseNum": 14, + "text": "; Deuteronomy causes her to commit adultery Greek alms h 38 d 31 e 32 m 1 BYZ and TR ; see" + }, + { + "verseNum": 17, + "text": ";" + }, + { + "verseNum": 18, + "text": "–21 ;" + }, + { + "verseNum": 19, + "text": "| 73 “Be prepared for the washed their clothes. third day,” he said to the people. “Do not draw The LORD Visits Sinai near to a woman.” 16 On the third day, when morning came, there was thunder and lightning. A thick cloud was upon the mountain, and a very loud blast of the ram’s horn went out, so that all the people in the Then Moses brought the peo- camp trembled. ple out of the camp to meet with God, and they 18 stood at the foot of the mountain. 17 Mount Sinai was completely enveloped in smoke, because the LORD had descended on it in fire. And the smoke rose like the smoke of a fur- 19 nace, and the whole mountain quaked violently. And as the sound of the ram’s horn grew louder and louder, Moses spoke and God an- 20 swered him in the thunder. 21 The LORD descended to the top of Mount Sinai and called Moses to the summit. So Moses and the LORD said to him, “Go down went up, and warn the people not to break through to see Even the the LORD, lest many of them perish. priests who approach the LORD must consecrate themselves, or the LORD will break out against 23 them.” 22 But Moses said to the LORD, “The people can- not come up Mount Sinai, for You solemnly warned us, ‘Put a boundary around the mountain 24 ” and set it apart as holy.’ And the LORD replied, “Go down and bring Aaron with you. But the priests and the people must not break through to come up to the LORD, 25 or He will break out against them.” So Moses went down to the people and spoke The Ten Commandments (De. 5:" + }, + { + "verseNum": 20, + "text": "20 21 “Do not be afraid,” Moses replied. “For God has come to test you, so that the fear of Him may be before you, to keep you from sinning.” And the people stood at a distance as Moses approached Idolatry Forbidden (1 Corinthians 10:14–22) the thick darkness where God was. 22 23 Then the LORD said to Moses, “This is what you are to tell the Israelites: ‘You have seen for yourselves that I have spoken to you from You are not to make any gods along- heaven. side Me; you are not to make for yourselves gods 24 of silver or gold. You are to make for Me an altar of earth, and sacrifice on it your burnt offerings and peace of- ferings, your sheep and goats and cattle. In every place where I cause My name to be remembered, 25 I will come to you and bless you. Now if you make an altar of stones for Me, you must not build it with stones shaped by tools; for if you use a chisel on it, you will defile it. And you must not go up to My altar on steps, lest your Hebrew Servants" + }, + { + "verseNum": 22, + "text": "–26) you can stand up under it. 14 15 I do all this for the sake of the gospel, so that I Run Your Race to Win may share in its blessings. 24 25 Do you not know that in a race all the runners run, but only one receives the prize? Run in such a way as to take the prize. Everyone who com- petes in the games trains with strict discipline. They do it for a crown that is perishable, but we There- do it for a crown that is imperishable. fore I do not run aimlessly; I do not fight like I am No, I discipline my body and beating the air. make it my slave, so that after I have preached to Warnings from Israel’s Past others, I myself will not be disqualified." + }, + { + "verseNum": 25, + "text": ";" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "–11) poor and needy in your land. 12 b If a fellow Hebrew, a man or a woman, is sold to you and serves you six years, then in the sev- 13 enth year you must set him free. 14 And when you release him, do not send him You are to furnish him away empty-handed. liberally from your flock, your threshing floor, 15 and your winepress. You shall give to him as the Remember LORD your God has blessed you. that you were slaves in the land of Egypt, and the LORD your God redeemed you; that is why I am 16 giving you this command today. 17 But if your servant says to you, ‘I do not want to leave you,’ because he loves you and your then take household and is well off with you, an awl and pierce it through his ear into the door, and he will become your servant for life. And 18 treat your maidservant the same way. Do not regard it as a hardship to set your serv- make courageous a 7 ant free, because his six years of service were make strong sells himself b 12 16" + }, + { + "verseNum": 17, + "text": ";" + }, + { + "verseNum": 24, + "text": ";" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 21, + "text": "| 75 8 If a man gives his neighbor money or goods for safekeeping and they are stolen from the neighbor’s house, the thief, if caught, must pay back double. If the thief is not found, the owner of the house must appear before the judges to determine whether he has taken his neighbor’s 9 property. c In all cases of illegal possession of an ox, a don- key, a sheep, a garment, or any lost item that someone claims, ‘This is mine,’ both parties shall bring their cases before the judges. The one whom the judges find guilty must pay back dou- 10 ble to his neighbor. d 11 If a man gives a donkey, an ox, a sheep, or any other animal to be cared for by his neighbor, but it dies or is injured or stolen while no one is watching, an oath before the LORD shall be made between the parties to determine whether or not the man has taken his neighbor’s property. The owner must accept the oath and require no 12 restitution. But if the animal was actually stolen from the 13 neighbor, he must make restitution to the owner. If the animal was torn to pieces, he shall bring it as evidence; he need not make restitution for 14 the torn carcass. If a man borrows an animal from his neighbor and it is injured or dies while its owner is not present, he must make full restitution. If the owner was present, no restitution is required. If Laws of Social Responsibility the animal was rented, the fee covers the loss. 16 15 17 If a man seduces a virgin who is not pledged in marriage and sleeps with her, he must" + }, + { + "verseNum": 22, + "text": "22 23 24 You must not mistreat any widow or orphan. If you do mistreat them, and they cry out to Me My an- in distress, I will surely hear their cry. ger will be kindled, and I will kill you with the sword; then your wives will become widows and 25 your children will be fatherless. If you lend money to one of My people among you who is poor, you must not act as a creditor to 26 him; you are not to charge him interest. 27 If you take your neighbor’s cloak as collateral, because his cloak is return it to him by sunset, the only covering he has for his body. What else will he sleep in? And if he cries out to Me, I will 28 hear, for I am compassionate. a You must not blaspheme God or curse the 29 ruler of your people. 30 You must not hold back offerings from your granaries or vats. You are to give Me the firstborn You shall do likewise with your of your sons. cattle and your sheep. Let them stay with their mothers for seven days, but on the eighth day 31 you are to give them to Me. You are to be My holy people. You must not eat the meat of a mauled animal found in the field; Justice and Mercy you are to throw it to the dogs. 23 2 witness. “You shall not spread a false report. Do not join the wicked by being a malicious You shall not follow the crowd in wrongdoing. When you testify in a lawsuit, do not pervert jus- And do not show tice by siding with the crowd. 4 favoritism to a poor man in his lawsuit. 3 If you encounter your enemy’s stray ox or don- 5 key, you must return it to" + }, + { + "verseNum": 28, + "text": "(see also LXX) Or That is, at nine tonight 35 18" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 14, + "text": "–19)" + }, + { + "verseNum": 16, + "text": ") or Jerusalem; it is later called (see" + }, + { + "verseNum": 20, + "text": "–33) 12 If you listen to these ordinances and keep them carefully, then the LORD your God will keep 13 His covenant and the loving devotion that He He will love you and swore to your fathers. bless you and multiply you. He will bless the fruit of your womb and the produce of your land— your grain, new wine, and oil, the young of your herds and the lambs of your flocks—in the land You that He swore to your fathers to give you. will be blessed above all peoples; among you there will be no barren man or woman or live- 15 stock. 14 16 And the LORD will remove from you all sick- ness. He will not lay upon you any of the terrible diseases you knew in Egypt, but He will You must de- inflict them on all who hate you. stroy all the peoples the LORD your God will deliver to you. Do not look on them with pity. Do not worship their gods, for that will be a snare to 17 you. 18 19 You may say in your heart, “These nations are greater than we are; how can we drive But do not be afraid of them. Be them out?” sure to remember what the LORD your God did to Pharaoh and all Egypt: the great trials that you saw, the signs and wonders, and the mighty hand and outstretched arm by which the LORD your God brought you out. The LORD your God 20 will do the same to all the peoples you now fear. 21 Moreover, the LORD your God will send the hornet against them until even the survivors hid- Do not be terrified ing from you have perished. by them, for the LORD your God, who is among 22 you, is a great and a" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 8, + "text": "SBL does not include Or i 19 BYZ, TR the Holy of Holies h 16 d 5 Or" + }, + { + "verseNum": 18, + "text": "| 77 20 21 Behold, I am sending an angel before you to protect you along the way and to bring you to the place I have prepared. Pay attention to him and listen to his voice; do not defy him, for he will not forgive rebellion, since My Name is in 22 him. 23 But if you will listen carefully to his voice and do everything I say, I will be an enemy to your enemies and a foe to your foes. For My angel will go before you and bring you into the land of the Amorites, Hittites, Perizzites, Canaanites, 24 Hivites, and Jebusites, and I will annihilate them. You must not bow down to their gods or serve them or follow their practices. Instead, you are to demolish them and smash their sacred stones to 25 pieces. a So you shall serve the LORD your God, and He will bless your bread and your water. And I will No take away sickness from among you. woman in your land will miscarry or be barren; I 27 will fulfill the number of your days. 26 I will send My terror ahead of you and throw into confusion every nation you encounter. I will make all your enemies turn and run. I will send the hornet before you to drive the Hivites and 29 Canaanites and Hittites out of your way. 28 I will not drive them out before you in a single year; otherwise the land would become desolate 30 and wild animals would multiply against you. Little by little I will drive them out ahead of you, until you become fruitful and possess the 31 land. b And I will establish your borders from the Red to the Sea of the Philistines," + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Offerings for the Tabernacle" + }, + { + "verseNum": 5, + "text": ". 20 holy things, do this for them: Aaron and his sons are to go in and assign each man his task and But the Kohathites are not what he is to carry. to go in and look at the holy objects, even for a The Duties of the Gershonites moment, or they will die.”" + }, + { + "verseNum": 10, + "text": "–16) with gold, and their five bases were bronze. 37 Bezalel went on to construct the ark of a acacia wood, two and a half cubits long, a 2 cubit and a half wide, and a cubit and a half high. 3 4 He overlaid it with pure gold, both inside and And he out, and made a gold molding around it. cast four gold rings for its four feet, two rings on Then he made one side and two on the other. poles of acacia wood and overlaid them with gold. He inserted the poles into the rings on the The Mercy Seat" + }, + { + "verseNum": 17, + "text": "–22) sides of the ark in order to carry it. 6 5 b 8 7 He constructed a mercy seat of pure gold, two and a half cubits long and a cubit and a half wide. He made two cherubim of hammered one cherub gold at the ends of the mercy seat, 9 on one end and one on the other, all made from one piece of gold. And the cherubim had wings that spread upward, overshadowing the mercy seat. The cherubim faced each other, looking to- The Table of Showbread ward the mercy seat." + }, + { + "verseNum": 23, + "text": "–30 ;" + }, + { + "verseNum": 25, + "text": "" + }, + { + "verseNum": 31, + "text": "–40 ; 37:17–24) 2 Then the LORD said to Moses, “Speak to Aaron and tell him: ‘When you set up the seven lamps, they are to light the area in front of 3 the lampstand.’ ” And Aaron did so; he set up the lamps facing to- ward the front of the lampstand, just as the LORD 4 had commanded Moses. This is how the lampstand was constructed: it was made of hammered gold from its base to its blossoms, fashioned according to the pattern the Cleansing the Levites LORD had shown Moses. 5 6 7 Again the LORD spoke to Moses, saying, “Take the Levites from among the Israelites and make them ceremonially clean. This is what you must do to cleanse them: Sprinkle them with the water of purification. Have them shave their whole bodies and wash their clothes, and so purify 8 themselves. 11 Then have them take a young bull with its grain offering of fine flour mixed with oil, and you are 9 to take a second young bull for a sin offering. Bring the Levites before the Tent of Meeting 10 and assemble the whole congregation of Israel. You are to present the Levites before the LORD and have the Israelites lay their hands upon Aaron is to present the Levites before them. the LORD as a wave offering from the sons of Is- rael, so that they may perform the service of the And the Levites are to lay their hands on LORD. the heads of the bulls, and offer to the LORD one as a sin offering and the other as a burnt offering, 13 to make atonement for the Levites. 12 14 You are to have the Levites stand before Aaron" + }, + { + "verseNum": 39, + "text": "" + }, + { + "verseNum": 40, + "text": "; see also" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "–6) 7 8 9 All the skilled craftsmen among the workmen made the ten curtains for the tabernacle. They were made of finely spun linen, as well as blue, purple, and scarlet yarn, with cherubim skillfully Each curtain was twenty- worked into them. eight cubits long and four cubits wide; all the And he joined five curtains were the same size. of the curtains together, and the other five he 11 joined as well. 10 a 12 He made loops of blue material on the edge of the end curtain in the first set, and also on the He made fifty end curtain in the second set. loops on one curtain and fifty loops on the end curtain of the second set, so that the loops lined He also made fifty up opposite one another. gold clasps to join the curtains together, so that the tabernacle was a unit. a 9 b 15 c 19 d 21 13 The Eleven Curtains of Goat Hair" + }, + { + "verseNum": 7, + "text": "–14) 14 He then made curtains of goat hair for the tent 15 over the tabernacle—eleven curtains in all. b Each of the eleven curtains was the same 16 size—thirty cubits long and four cubits wide. 17 He joined five of the curtains into one set and He made fifty loops the other six into another. along the edge of the end curtain in the first set, 18 and fifty loops along the edge of the correspond- He also made fifty ing curtain in the second set. 19 bronze clasps to join the tent together as a unit. c Additionally, he made for the tent a covering of ram skins dyed red, and over that a covering of The Frames and Bases" + }, + { + "verseNum": 15, + "text": "–30) fine leather. 20 21 d e Next, he constructed upright frames of acacia Each frame was ten wood for the tabernacle. Two cubits long and a cubit and a half wide. tenons were connected to each other for each frame. He made all the frames of the tabernacle 23 in this way. 22 24 He constructed twenty frames for the south side of the tabernacle, with forty silver bases to put under the twenty frames—two ba- 25 ses for each frame, one under each tenon. 26 For the second side of the tabernacle, the north and forty silver side, he made twenty frames 27 bases—two bases under each frame. 28 29 He made six frames for the rear of the taber- and two frames for the nacle, the west side, coupled two back corners of the tabernacle, together from bottom to top and fitted into a 30 single ring. He made both corners in this way. So there were eight frames and sixteen silver 31 bases—two under each frame. 32 He also made five crossbars of acacia wood for five the frames on one side of the tabernacle, for those on the other side, and five for those on 33 the rear side of the tabernacle, to the west. 34 He made the central crossbar to run through the center of the frames, from one end to the And he overlaid the frames with gold other. and made gold rings to hold the crossbars. He also overlaid the crossbars with gold. Each of the ten curtains was approximately 42 feet long and 6 feet wide (12.8 meters long and 1.8 meters wide). Each of the eleven curtains was approximately 45 feet long and 6 fe" + }, + { + "verseNum": 29, + "text": "| 79 35 And on the lampstand there shall be four cups shaped like almond blossoms with buds and pet- For the six branches that extend from the als. lampstand, a bud must be under the first pair of branches, a bud under the second pair, and a bud The buds and branches under the third pair. are to be all of one piece with the lampstand, 37 hammered out of pure gold. 36 38 Make seven lamps and set them up on the lampstand so that they illuminate the area in 39 The wick trimmers and their trays front of it. The lampstand and all must be of pure gold. a these utensils shall be made from a talent of pure 40 gold. b See to it that you make everything according to The Ten Curtains for the Tabernacle the pattern shown you on the mountain." + }, + { + "verseNum": 30, + "text": "30 So you are to set up the tabernacle according The Veil" + }, + { + "verseNum": 31, + "text": "–35) 13" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "–8) a 38 b 2 Bezalel constructed the altar of burnt offering from acacia wood. It was square, five cubits long, five cubits wide, and three cubits He made a horn at each of its four cor- high. ners, so that the horns and altar were of one 3 piece, and he overlaid the altar with bronze. 4 He made all the altar’s utensils of bronze—its pots, shovels, sprinkling bowls, meat forks, and He made a grate of bronze mesh for firepans. the altar under its ledge, halfway up from the 5 bottom. 6 7 At the four corners of the bronze grate he cast And he made four rings as holders for the poles. the poles of acacia wood and overlaid them with bronze. Then he inserted the poles into the rings on the sides of the altar for carrying it. He The Bronze Basin" + }, + { + "verseNum": 9, + "text": "–19) entrance to the Tent of Meeting. 9 c Then he constructed the courtyard. The south 10 11 side of the courtyard was a hundred cubits long and had curtains of finely spun linen, with twenty posts and twenty bronze bases, and with The north silver hooks and bands on the posts. side was also a hundred cubits long, with twenty posts and twenty bronze bases. The hooks and The west side bands of the posts were silver. and had curtains, with ten was fifty cubits long 13 posts and ten bases. The hooks and bands of the And the east side, toward the posts were silver. 14 sunrise, was also fifty cubits long. 12 d e 15 The curtains on one side of the entrance were fifteen cubits long, with three posts and three And the curtains on the other side were bases. 16 also fifteen cubits long, with three posts and All the curtains around the three bases as well. The courtyard were made of finely spun linen. bases for the posts were bronze, the hooks and bands were silver, and the plating for the tops of a 1 He constructed b 1 17 the posts was silver. So all the posts of the court- 18 yard were banded with silver. f g 19 The curtain for the entrance to the courtyard was embroidered with blue, purple, and scarlet yarn, and finely spun linen. It was twenty cubits and, like the curtains of the courtyard, five long with four posts and four bronze cubits high, bases. Their hooks were silver, as well as the All the tent bands and the plating of their tops. pegs for the tabernacle and for the surroun" + }, + { + "verseNum": 20, + "text": "–21) pointed feasts of the LORD. 2 24 “Com- Then the LORD said to Moses, mand the Israelites to bring you pure oil of pressed olives for the light, to keep the lamps 3 burning continually. b 4 Outside the veil of the Testimony in the Tent of Meeting, Aaron is to tend the lamps continu- ally before the LORD from evening until morning. This is to be a permanent statute for the genera- tions to come. He shall tend the lamps on the pure gold lampstand before the LORD The Showbread" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 6, + "text": "–14) courtyard. 39 From the blue, purple, and scarlet yarn they made specially woven garments for ministry in the sanctuary, as well as the holy gar- ments for Aaron, just as the LORD had com- a 2 manded Moses. 3 4 Bezalel made the ephod of finely spun linen embroidered with gold, and with blue, purple, They hammered out thin and scarlet yarn. sheets of gold and cut threads from them to interweave with the blue, purple, and scarlet yarn, and fine linen—the work of a skilled crafts- man. They made shoulder pieces for the ephod, which were attached at two of its corners, so it could be fastened. And the skillfully woven waistband of the ephod was of one piece with the ephod, of the same workmanship—with gold, with blue, purple, and scarlet yarn, and with finely spun linen, just as the LORD had com- 6 manded Moses. 5 7 They mounted the onyx stones in gold filigree settings, engraved like a seal with the names of Then they fastened them on the sons of Israel. the shoulder pieces of the ephod as memorial stones for the sons of Israel, as the LORD had The Breastpiece" + }, + { + "verseNum": 15, + "text": "–30) commanded Moses. 8 He made the breastpiece with the same work- manship as the ephod, with gold, with blue, pur- 9 ple, and scarlet yarn, and with finely spun linen. It was square when folded over double, a span b 10 long and a span wide. c And they mounted on it four rows of gem- stones: The first row had a ruby, a topaz, and an 11 emerald; the second row had a turquoise, a 12 sapphire, and a diamond; the third row had a jacinth, an agate, and 13 an amethyst; and the fourth row had a beryl, an onyx, a 2 He made b 9 and a jasper. Literally c 10 length and width. Hebrew word is uncertain; possibly ." + }, + { + "verseNum": 16, + "text": "" + }, + { + "verseNum": 31, + "text": "–43) 22 23 d They made the robe of the ephod entirely with an of blue cloth, the work of a weaver, opening in the center of the robe like that of a garment, with a collar around the opening so 24 that it would not tear. 25 They made pomegranates of blue, purple, and scarlet yarn and finely spun linen on the lower They also made bells of pure hem of the robe. 26 gold and attached them around the hem between alternating the bells and the pomegranates, pomegranates around the lower hem of the robe to be worn for ministry, just as the LORD had 27 commanded Moses. 28 For Aaron and his sons they made tunics of as well as the fine linen, the work of a weaver, turban of fine linen, the ornate headbands and and the undergarments of finely spun linen, 29 d 23 The breastpiece, when folded over, was approximately 9 inches or 22.9 centimeters in both The meaning of the The precise identification of some of these gemstones is uncertain. a coat of mail 94 |" + }, + { + "verseNum": 32, + "text": "| 81 28 “Next, have your brother Aaron brought to you from among the Israelites, along 2 with his sons Nadab, Abihu, Eleazar, and Itha- Make holy garments mar, to serve Me as priests. for your brother Aaron, to give him glory and 3 splendor. 4 You are to instruct all the skilled craftsmen, whom I have filled with a spirit of wisdom, to make garments for Aaron’s consecration, so that These are the gar- he may serve Me as priest. ments that they shall make: a breastpiece, an ephod, a robe, a woven tunic, a turban, and a sash. They are to make these holy garments for your brother Aaron and his sons, so that they They shall use gold, may serve Me as priests. along with blue, purple, and scarlet yarn, and fine The Ephod" + }, + { + "verseNum": 33, + "text": "4 a center. Around the opening shall be a woven col- lar with an opening like that of a garment, so 33 that it will not tear. 34 Make pomegranates of blue, purple, and scar- let yarn all the way around the lower hem, with alternating the gold gold bells between them, bells and pomegranates around the lower hem of 35 the robe. Aaron must wear the robe whenever he minis- ters, and its sound will be heard when he enters or exits the sanctuary before the LORD, so that he 36 will not die. You are to make a plate of pure gold and b engrave on it as on a seal: 37 HOLY TO THE LORD. 38 Fasten to it a blue cord to mount it on the tur- And ban; it shall be on the front of the turban. it will be worn on Aaron’s forehead, so that he may bear the iniquity of the holy things that the sons of Israel consecrate with regard to all their holy gifts. It shall always be on his forehead, so 39 that they may be acceptable before the LORD. 40 You are to weave the tunic with fine linen, make the turban of fine linen, and fashion an em- Make tunics, sashes, and head- broidered sash. bands for Aaron’s sons, to give them glory and 41 splendor. After you put these garments on your brother Aaron and his sons, anoint them, ordain them, and consecrate them so that they may serve Me 42 as priests. 43 Make linen undergarments to cover their bare Aaron and flesh, extending from waist to thigh. his sons must wear them whenever they enter the Tent of Meeting or approach the altar to min- ister in the Holy Place," + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "–9) 2 “Take Aaron Then the LORD said to Moses, and his sons, their garments, the anointing 3 oil, the bull of the sin offering, the two rams, and and assemble the basket of unleavened bread, the whole congregation at the entrance to the 4 Tent of Meeting.” 5 So Moses did as the LORD had commanded him, and the assembly gathered at the entrance to the And Moses said to them, “This Tent of Meeting. 6 is what the LORD has commanded to be done.” 7 8 Then Moses presented Aaron and his sons and He put the tunic on washed them with water. Aaron, tied the sash around him, clothed him with the robe, and put the ephod on him. He tied the woven band of the ephod around him and Then he put the breastpiece fastened it to him. 9 on him and placed the Urim and Thummim in the breastpiece. Moses also put the turban on Aaron’s head and set the gold plate, the holy dia- dem, on the front of the turban, as the LORD had 10 commanded him. a The priest is to burn the fat on the altar, but the And you breast belongs to Aaron and his sons. 33 are to give the right thigh to the priest as a con- The son of tribution from your peace offering. Aaron who presents the blood and fat of the peace offering shall have the right thigh as a por- 34 tion. I have taken from the sons of Israel the breast of the wave offering and the thigh of the contri- bution of their peace offerings, and I have given them to Aaron the priest and his sons as a per- manent portion from the sons of Israel.’ Lights and Perfections a 8" + }, + { + "verseNum": 10, + "text": "–30) manded Moses. 22 After that, Moses presented the other ram, the 23 ram of ordination, and Aaron and his sons laid their hands on its head. Moses slaughtered the ram and took some of its blood and put it on Aa- ron’s right earlobe, on the thumb of his right hand, and on the big toe of his right foot. Moses also presented Aaron’s sons and put some of the blood on their right earlobes, on the thumbs of their right hands, and on the big toes of their right feet. Then he splattered the blood on all 25 sides of the altar. 24 26 And Moses took the fat—the fat tail, all the fat that was on the entrails, the lobe of the liver, and both kidneys with their fat—as well as the right thigh. And from the basket of unleavened bread that was before the LORD, he took one cake of unleavened bread, one cake of bread made with oil, and one wafer, and he placed them on the fat portions and on the right thigh. He put all these in the hands of Aaron and his sons and waved them before the LORD as a wave of- 28 fering. 27 Then Moses took these from their hands and a 4 burned them on the altar with the burnt offering. a cow a bull Or or ; also in verses 18 and 19 29 This was an ordination offering, a pleasing aroma, a food offering to the LORD. He also took the breast—Moses’ portion of the ram of or- dination—and waved it before the LORD as a 30 wave offering, as the LORD had commanded him. Next, Moses took some of the anointing oil and some of the blood that was on the altar and sprin- kled them" + }, + { + "verseNum": 38, + "text": "–44) LORD had instructed through Moses. 23 2 28 “Com- Then the LORD said to Moses, mand the Israelites and say to them: See that you present to Me at its appointed time the food for My food offerings, as a pleasing aroma to 3 Me. 4 And tell them that this is the food offering you are to present to the LORD as a regular burnt of- fering each day: two unblemished year-old male Offer one lamb in the morning and the lambs. other at twilight, along with a tenth of an ephah of fine flour as a grain offering, mixed 6 with a quarter hin of oil from pressed olives. 5 e d f 7 This is a regular burnt offering established at Mount Sinai as a pleasing aroma, a food offering c 21 quarreling The drink offering accompanying to the LORD. e 5 A tenth of an ephah ; see" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "–10) pure gold. 25 f He made the altar of incense out of acacia wood. It was square, a cubit long, a cubit wide, 26 and two cubits high. Its horns were of one piece. And he overlaid with pure gold the top and all the sides and horns. Then he made a molding of 27 gold around it. He made two gold rings below the molding on 28 opposite sides to hold the poles used to carry it. And he made the poles of acacia wood and 29 overlaid them with gold. He also made the sacred anointing oil and the pure, fragrant incense, the work of a perfumer. c 10 The ark was approximately 3.75 feet long, 2.25 feet wide, and 2.25 feet high (114.3 centimeters long, 68.6 centimeters The mercy seat was approximately 3.75 feet long and 2.25 feet wide (114.3 centi- The table was approximately 3 feet long, 1.5 feet wide, and 2.25 feet high wide, and 68.6 centimeters high). meters long and 68.6 centimeters wide). (91.4 centimeters long, 45.7 centimeters wide, and 68.6 centimeters high). inches or 7.4 centimeters. proximately 1.5 feet in length and width, and 3 feet high (45.7 centimeters in length and width, and 91.4 centimeters high). is approximately 75.4 pounds or 34.2 kilograms of gold. is approximately 2.9 d 12 A handbreadth The altar was ap- e 24 A talent f 25 92 |" + }, + { + "verseNum": 9, + "text": "| 83 23 Take the fat from the ram, the fat tail, the fat covering the entrails, the lobe of the liver, both kidneys with the fat on them, and the right thigh along with (since this is a ram for ordination), one loaf of bread, one cake of bread made with oil, and one wafer from the basket of unleavened Put all these in bread that is before the LORD. the hands of Aaron and his sons and wave them Then take before the LORD as a wave offering. them from their hands and burn them on the al- tar atop the burnt offering as a pleasing aroma 26 before the LORD; it is a food offering to the LORD. 25 24 27 28 Take the breast of the ram of Aaron’s ordina- tion and wave it before the LORD as a wave offer- Consecrate for ing, and it will be your portion. Aaron and his sons the breast of the wave offer- ing that is waved and the thigh of the heave offering that is lifted up from the ram of ordina- This will belong to Aaron and his sons as tion. a regular portion from the Israelites, for it is the heave offering the Israelites will make to the 29 LORD from their peace offerings. 30 The holy garments that belong to Aaron will belong to his sons after him, so they can be anointed and ordained in them. The son who succeeds him as priest and enters the Tent of Meeting to minister in the Holy Place must wear Food for the Priests them for seven days. 31 33 32 You are to take the ram of ordination and boil At the entrance to the its flesh in a holy place. Tent of Meeting, Aaron and his sons are to e" + }, + { + "verseNum": 10, + "text": "10 Once a year Aaron shall make atonement on the horns of the altar. Throughout your genera- tions he shall make atonement on it annually of atonement. with the blood of the sin offering The Census Offering The altar is most holy to the LORD.” (2 Samuel 24:1–9 ; 1 Chronicles 21:1–6) a 11 12 Then the LORD said to Moses, “When you take a census of the Israelites to number them, each man must pay the LORD a ransom for his life when he is counted. Then no plague will come Every- upon them when they are numbered. one who crosses over to those counted must pay a half shekel, according to the sanctuary shekel, which weighs twenty gerahs. This half shekel is 14 an offering to the LORD. 13 b c 16 Everyone twenty years of age or older who 15 crosses over must give this offering to the LORD. In making the offering to the LORD to atone for your lives, the rich shall not give more than a half Take the shekel, nor shall the poor give less. atonement money from the Israelites and use it for the service of the Tent of Meeting. It will serve as a memorial for the Israelites before the LORD The Bronze Basin" + }, + { + "verseNum": 11, + "text": "–16 ; 1 Chronicles 21:1–6) 24 Again the anger of the LORD burned against Israel, and He stirred up David against them, saying, “Go and take a census of 2 Israel and Judah.” n So the king said to Joab the commander of his army, who was with him, “Go now throughout the tribes of Israel from Dan to Beersheba and register the troops, so that I may know their number.” d 20 two sons of Ariel b 19 In the Thirty Heb.; Syr- Shammah the Harodite, a 18 26 Elika the Harodite, Helez the Paltite, Most Heb. manuscripts (see also 1 Chronicles 11:20); two Hebrew manuscripts and Syriac Benaiah son of Jehoiada was the son of Ishhai Sibbecai the Thirty f 27 c 20 the Thirty e 24 g 29 (were): iac Or Heb.; some LXX manuscripts i 30 Hiddai Hurai scripts and Vulgate (see also 1 Chronicles 11:30); most MT manuscripts Hashem l 33 cles 11:31. is a variant of m 33 ; see 1 Chronicles 11:32. Sachar Some LXX manuscripts (see also 1 Chronicles 11:34); Hebrew n 2 Or ; see 1 Chronicles 11:34. Hebrew; some LXX manuscripts ; see 1 Chronicles 11:35. LXX ; see 2 Samuel 21:18 and 1 Chronicles 11:29. j 30 from the ravines Or Heleb h 29 Ittai Literally Ithai Some Hebrew manu- ; see 1 Chroni- Jonathan, 33 Shammah is a variant of to Joab and the army commanders with him is a variant of k 32 Jashen 306 | 2 Samuel 24:3 3 But Joab replied to the king, “May the LORD your God multiply the troops a hundred times over, and may the eyes of my lord the king see it. But why does my lord the king want to do such a 4 thing?” Never" + }, + { + "verseNum": 13, + "text": "" + }, + { + "verseNum": 17, + "text": "–21) made the altar with boards so that it was hollow. 8 Next he made the bronze basin and its stand from the mirrors of the women who served at the The Courtyard" + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "–11) the altar of burnt offering with its bronze 30 grate, its poles, and all its utensils; 17 the basin with its stand; the curtains of the courtyard with its posts and bases, and the curtain for the gate 18 of the courtyard; the tent pegs for the tabernacle and for 19 the courtyard, along with their ropes; and the woven garments for ministering in the holy place—both the holy garments for Aaron the priest and the garments for his sons to serve as priests.” The People Offer Gifts 20 Then the whole congregation of Israel with- And every- drew from the presence of Moses. a 7 one whose heart stirred him and whose spirit 21 31 Then Moses said to the Israelites, “See, the LORD has called by name Bezalel son of Uri, the And He has son of Hur, of the tribe of Judah. filled him with the Spirit of God, with skill, ability, 32 and knowledge in all kinds of craftsmanship, to design artistic works in gold, silver, and to cut gemstones for settings, and to bronze, carve wood, so that he may be a master of every 34 artistic craft. 33 35 And the LORD has given both him and Oholiab son of Ahisamach, of the tribe of Dan, the ability to teach others. He has filled them with skill to do all kinds of work as engravers, designers, em- broiderers in blue, purple, and scarlet yarn and fine linen, and as weavers—as artistic designers of every kind of craft. Possibly the hides of large aquatic mammals; also in verse 23 90 |" + }, + { + "verseNum": 12, + "text": "–17) commandment; his guilt remains on him.” 32 34 33 While the Israelites were in the wilderness, a man was found gathering wood on the Sabbath Those who found the man gathering wood day. brought him to Moses, Aaron, and the whole con- and because it had not been de- gregation, clared what should be done to him, they placed 35 him in custody. And the LORD said to Moses, “The man must surely be put to death. The whole congregation is 36 to stone him outside the camp.” So the whole congregation took the man out- side the camp and stoned him to death, as the LORD had commanded Moses. You have gone too far a 3 b 5 God has visited and knows those who are His" + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "–35 ;" + }, + { + "verseNum": 6, + "text": "Or Lord’s, and the fullness thereof— twice in this verse e 26 WH, NE, and Tischendorf" + }, + { + "verseNum": 16, + "text": "| 85 3 4 Then all the people took off their gold earrings and brought them to Aaron. He took the gold from their hands, and with an engraving tool he fashioned it into a molten calf. And they said, “These, O Israel, are your gods, who brought you 5 up out of the land of Egypt!” When Aaron saw this, he built an altar before the calf and proclaimed: “Tomorrow shall be a 6 feast to the LORD.” So the next day they arose, offered burnt offerings, and presented peace offerings. And the people sat down to eat and drink and got up to 7 indulge in revelry. c 8 Then the LORD said to Moses, “Go down at once, for your people, whom you brought up out of the land of Egypt, have corrupted themselves. How quickly they have turned aside from the way that I commanded them! They have made for them- selves a molten calf and have bowed down to it. They have sacrificed to it and said, ‘These, O Israel, are your gods, who brought you up out of 9 the land of Egypt.’ ” 10 The LORD also said to Moses, “I have seen this people, and they are indeed a stiff-necked peo- ple. Now leave Me alone, so that My anger may burn against them and consume them. Then I will 11 make you into a great nation.” 12 But Moses sought the favor of the LORD his God, saying, “O LORD, why does Your anger burn against Your people, whom You brought out of the land of Egypt with great power and a mighty hand? Why should the Egyptians declare, ‘He brought them out with evil intent, to kill them in the mountains and wipe them from t" + }, + { + "verseNum": 17, + "text": "17 31 When Joshua heard the sound of the people shouting, he said to Moses, “The sound of war is 18 in the camp.” But Moses replied: “It is neither the cry of victory nor the cry of 19 defeat; I hear the sound of singing!” 20 As Moses approached the camp and saw the calf and the dancing, he burned with anger and threw the tablets out of his hands, shattering Then he took them at the base of the mountain. the calf they had made, burned it in the fire, ground it to powder, and scattered the powder over the face of the water. Then he forced the 21 Israelites to drink it. “What did this people do to you,” Moses asked Aaron, “that you have led them into so great a 22 sin?” 23 “Do not be enraged, my lord,” Aaron replied. “You yourself know that the people are intent on They told me, ‘Make us gods who will go evil. before us. As for this Moses who brought us up out of the land of Egypt, we do not know what has 24 happened to him!’ So I said to them, ‘Whoever has gold, let him take it off,’ and they gave it to me. And when I 25 threw it into the fire, out came this calf!” a 26 Moses saw that the people were out of control, for Aaron had let them run wild and become a laughingstock So Moses to their enemies. stood at the entrance to the camp and said, “Whoever is for the LORD, come to me.” 27 And all the Levites gathered around him. He told them, “This is what the LORD, the God of Israel, says: ‘Each of you men is to fasten his sword to his side, go back and forth through the camp fro" + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 19, + "text": "" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "–9) outstretched arm.” 10 2 At that time the LORD said to me, “Chisel out two stone tablets like the originals, come up to Me on the mountain, and make an ark And I will write on the tablets the of wood. words that were on the first tablets, which you 3 broke; and you are to place them in the ark.” d So I made an ark of acacia wood, chiseled out two stone tablets like the originals, and went up 4 the mountain with the two tablets in my hands. And the LORD wrote on the tablets what had been written previously, the Ten Command- that He had spoken to you on the moun- ments tain out of the fire on the day of the assembly. and I went back The LORD gave them to me, down the mountain and placed the tablets in the ark I had made, as the LORD had commanded me; a 22 Taberah and there they have remained. burning 5 b 22 Massah 6 e The Israelites traveled from Beeroth Bene- jaakan to Moserah, where Aaron died and was 7 buried, and Eleazar his son succeeded him as priest. From there they traveled to Gudgodah, and from Gudgodah to Jotbathah, a land with 8 streams of water. 9 At that time the LORD set apart the tribe of Levi to carry the ark of the covenant of the LORD, to stand before the LORD to serve Him, and to pro- nounce blessings in His name, as they do to this That is why Levi has no portion or inher- day. itance among his brothers; the LORD is his inher- 10 itance, as the LORD your God promised him. I stayed on the mountain forty days and forty nights, like the first time, and that" + }, + { + "verseNum": 10, + "text": "–35) 7 8 Now if the ministry of death, which was engraved in letters on stone, came with such glory that the Israelites could not gaze at the face will not of Moses because of its fleeting glory, 9 the ministry of the Spirit be even more glorious? For if the ministry of condemnation was glori- ous, how much more glorious is the ministry of righteousness! Indeed, what was once glorious 11 has no glory now in comparison to the glory that For if what was fading away came surpasses it. with glory, how much greater is the glory of that 12 which endures! 10 13 Therefore, since we have such a hope, we are We are not like Moses, who would very bold. put a veil over his face to keep the Israelites from 14 gazing at the end of what was fading away. But their minds were closed. For to this day the same veil remains at the reading of the old 15 covenant. It has not been lifted, because only in And even to this day Christ can it be removed. 16 when Moses is read, a veil covers their hearts. But whenever anyone turns to the Lord, the 17 veil is taken away. 18 Now the Lord is the Spirit, and where the Spirit And we, who of the Lord is, there is freedom. with unveiled faces all reflect the glory of the Lord, are being transformed into His image with intensifying glory, which comes from the Lord, The Light of the Gospel who is the Spirit. 4 b 2 we do not lose heart. Therefore, since God in His mercy has given In- us this ministry, stead, we have renounced secret and shameful ways. We do not p" + }, + { + "verseNum": 14, + "text": "| 87 2 Be ready in the first tablets, which you broke. 3 morning, and come up on Mount Sinai to present yourself before Me on the mountaintop. No one may go up with you; in fact, no one may be seen anywhere on the mountain—not even the flocks 4 or herds may graze in front of the mountain.” So Moses chiseled out two stone tablets like the originals. He rose early in the morning, and tak- ing the two stone tablets in his hands, he went up 5 Mount Sinai as the LORD had commanded him. And the LORD descended in a cloud, stood with 6 him there, and proclaimed His name, the LORD. Then the LORD passed in front of Moses and called out: “The LORD, the LORD God, is compassionate and gracious, slow to anger, 7 abounding in loving devotion and faithfulness, b maintaining loving devotion to a thousand generations, forgiving iniquity, transgression, and sin. Yet He will by no means leave the guilty unpunished; He will visit the iniquity of the fathers on their children and grandchildren to the third and fourth generations.” 9 8 Moses immediately bowed down to the ground “O Lord,” he said, “if I have in- and worshiped. deed found favor in Your sight, my Lord, please go with us. Although this is a stiff-necked people, forgive our iniquity and sin, and take us as Your The LORD Renews the Covenant inheritance.” (2 Corinthians 3:7–18) 10 And the LORD said, “Behold, I am making a covenant. Before all your people I will perform wonders that have never been done in any nation in all the world. All" + }, + { + "verseNum": 15, + "text": "not worship any other god, for the LORD, whose 15 name is Jealous, is a jealous God. 16 Do not make a covenant with the inhabitants of the land, for when they prostitute themselves to their gods and sacrifice to them, they will in- And vite you, and you will eat their sacrifices. when you take some of their daughters as brides for your sons, their daughters will prostitute themselves to their gods and cause your sons to 17 do the same. 18 You shall make no molten gods for yourselves. a b You are to keep the Feast of Unleavened For seven days at the appointed time in Bread. you are to eat unleavened the month of Abib, bread as I commanded you. For in the month of 19 Abib you came out of Egypt. 20 The first offspring of every womb belongs to Me, including all the firstborn males among your You must livestock, whether cattle or sheep. redeem the firstborn of a donkey with a lamb; but if you do not redeem it, you are to break its neck. You must redeem all the firstborn of your sons. No one shall appear before Me empty- 21 handed. Six days you shall labor, but on the seventh day you shall rest; even in the seasons of plowing and c 22 harvesting, you must rest. d And you are to celebrate the Feast of Weeks with the firstfruits of the wheat harvest, and the 23 at the turn of the year. Feast of Ingathering Three times a year all your males are to appear For I before the Lord GOD, the God of Israel. will drive out the nations before you and enlarge your borders, and no one will covet" + }, + { + "verseNum": 22, + "text": ") or the Feast of Tabernacles was the first month of the ancient Hebrew lunar the Feast of Pentecost That is, Shavuot, the late spring feast of pilgrimage That is, (see" + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 4, + "text": "–9) 2 25 “Tell the Then the LORD said to Moses, Israelites to bring Me an offering. You are to receive My offering from every man whose This is the offering you are heart compels him. to accept from them: 3 4 gold, silver, and bronze; blue, purple, and scarlet yarn; 5 fine linen and goat hair; a ram skins dyed red and fine leather; 6 acacia wood; olive oil for the light; spices for the anointing oil and for the 7 fragrant incense; 8 and onyx stones and gemstones to be mounted on the ephod and breastpiece. 9 And they are to make a sanctuary for Me, so that You must make the I may dwell among them. tabernacle and design all its furnishings accord- The Ark of the Covenant" + }, + { + "verseNum": 30, + "text": "–35) from his people.” 37 38 2 3 “See, I Then the LORD said to Moses, have called by name Bezalel son of Uri, the son of Hur, of the tribe of Judah. And I have filled him with the Spirit of God, with skill, ability, to and knowledge in all kinds of craftsmanship, 5 design artistic works in gold, silver, and bronze, to cut gemstones for settings, and to carve 6 wood, so that he may be a master of every craft. 4 Moreover, I have selected Oholiab son of Ahisamach, of the tribe of Dan, as his assistant. c 13 20 gerahs 31 Or e 23 250 shekels d 23 500 shekels is approximately 0.2 ounces or 5.7 grams; also in verse 15. is is approximately 12.6 pounds or 5.7 f 23 250 shekels equivalent to one shekel (approximately 0.4 ounces or 11.4 grams). kilograms of myrrh. h 24 A hin proximately 6.3 pounds or 2.9 kilograms of cane. g 24 500 shekels is approximately 6.3 pounds or 2.9 kilograms of cinnamon. i 36 The Testimony is approximately 12.6 pounds or 5.7 kilograms of cassia. is ap- is approximately 0.97 gallons or 3.67 liters of olive oil. refers to the stone tablets in the ark of the covenant inscribed with the Ten Commandments. 9 8 I have also given skill to all the craftsmen, that a 7 they may fashion all that I have commanded you: the Tent of Meeting, the ark of the Testimony and the mercy seat upon it, and all the other fur- the table with its utensils, nishings of the tent— the pure gold lampstand with all its utensils, the altar of incense, the altar of burnt offering with 10 all its" + }, + { + "verseNum": 35, + "text": "| 89 6 gold, silver, and bronze; blue, purple, and scarlet yarn; 7 fine linen and goat hair; a ram skins dyed red and fine leather; 8 acacia wood; olive oil for the light; spices for the anointing oil and for the 9 fragrant incense; The Skilled Craftsmen and onyx stones and gemstones to be mounted on the ephod and breastpiece. 10 Let every skilled craftsman among you come and make everything that the LORD has com- manded: 11 the tabernacle with its tent and covering, its clasps and frames, its crossbars, posts, 12 and bases; the ark with its poles and mercy seat, and 13 the veil to shield it; the table with its poles, all its utensils, 14 and the Bread of the Presence; the lampstand for light with its 15 accessories and lamps and oil for the light; the altar of incense with its poles; the anointing oil and fragrant incense; the curtain for the doorway at the entrance 16 to the tabernacle; prompted him came and brought an offering to the LORD for the work on the Tent of Meeting, for 22 all its services, and for the holy garments. So all who had willing hearts, both men and women, came and brought brooches and ear- rings, rings and necklaces, and all kinds of gold jewelry. And they all presented their gold as a 23 wave offering to the LORD. 24 Everyone who had blue, purple, or scarlet yarn, or fine linen, goat hair, ram skins dyed red, or articles of fine leather, brought them. And all who could present an offering of silver or bronze brought it as a contribution to the LORD. A" + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "The People Bring More than Enough 36 “So Bezalel, Oholiab, and every skilled person are to carry out everything com- manded by the LORD, who has given them skill and ability to know how to perform all the work 2 of constructing the sanctuary.” Then Moses summoned Bezalel, Oholiab, and every skilled person whom the LORD had 3 gifted—everyone whose heart stirred him to They received from Mo- come and do the work. ses all the contributions that the Israelites had brought to carry out the service of constructing the sanctuary. 4 Meanwhile, the people continued to bring so freewill offerings morning after morning, 5 that all the skilled craftsmen who were doing all and the work on the sanctuary left their work said to Moses, “The people are bringing more than enough for doing the work the LORD has 6 commanded us to do.” After Moses had given an order, they sent a proclamation throughout the camp: “No man or woman should make anything else as an offering for the sanctuary.” So the people were since what they restrained from bringing more, already had was more than enough to perform all The Ten Curtains for the Tabernacle the work." + }, + { + "verseNum": 8, + "text": "–13) 26 “You are to construct the tabernacle it- self with ten curtains of finely spun linen, each with blue, purple, and scarlet yarn, and Each cur- cherubim skillfully worked into them. tain shall be twenty-eight cubits long and four 3 cubits wide —all curtains the same size. 2 c 4 Five of the curtains are to be joined together, and the other five joined as well. Make loops of blue material on the edge of the end curtain in the first set, and do the same for the end curtain 5 in the second set. 6 Make fifty loops on one curtain and fifty loops on the end curtain of the second set, so that the Make fifty loops line up opposite one another. gold clasps as well, and join the curtains together with the clasps, so that the tabernacle will be a The Eleven Curtains of Goat Hair unit." + }, + { + "verseNum": 14, + "text": "–19) 7 You are to make curtains of goat hair for the 8 tent over the tabernacle—eleven curtains in all. Each of the eleven curtains is to be the same 9 size—thirty cubits long and four cubits wide. d Join five of the curtains into one set and the other six into another. Then fold the sixth curtain over double at the front of the tent. a 39 A talent Make fifty loops along the edge of the end cur- tain in the first set, and fifty loops along the edge 11 of the corresponding curtain in the second set. Make fifty bronze clasps and put them through 12 the loops to join the tent together as a unit. 13 As for the overlap that remains of the tent cur- tains, the half curtain that is left over shall hang down over the back of the tabernacle. And the tent curtains will be a cubit longer on either side, and the excess will hang over the sides of 14 the tabernacle to cover it. e f Also make a covering for the tent out of ram skins dyed red, and over that a covering of fine The Frames and Bases" + }, + { + "verseNum": 20, + "text": "–34) leather. 15 16 You are to construct upright frames of acacia g Each frame is to be wood for the tabernacle. 17 ten cubits long and a cubit and a half wide. h Two tenons must be connected to each other for each frame. Make all the frames of the taber- 18 nacle in this way. 19 Construct twenty frames for the south side of with forty silver bases under the tabernacle, the twenty frames—two bases for each frame, 20 one under each tenon. 21 For the second side of the tabernacle, the north and forty silver ba- side, make twenty frames 22 ses—two bases under each frame. 23 24 Make six frames for the rear of the tabernacle, and two frames for the two back the west side, coupled together corners of the tabernacle, 25 from bottom to top and fitted into a single ring. These will serve as the two corners. So there are to be eight frames and sixteen silver bases— 26 two under each frame. 27 You are also to make five crossbars of acacia wood for the frames on one side of the taber- five for those on the other side, and five nacle, for those on the rear side of the tabernacle, to the 28 west. The central crossbar in the middle of the 29 frames shall extend from one end to the other. Overlay the frames with gold and make gold rings to hold the crossbars. Also overlay the crossbars with gold. b 40 is approximately 75.4 pounds or 34.2 kilograms of gold. Cited in" + }, + { + "verseNum": 35, + "text": "–36) to the pattern shown you on the mountain. 31 32 Make a veil of blue, purple, and scarlet yarn, and finely spun linen, with cherubim skillfully worked into it. Hang it with gold hooks on four posts of acacia wood, overlaid with gold and And hang the veil standing on four silver bases. from the clasps and place the ark of the Testi- b behind the veil. So the veil will separate mony 34 the Holy Place from the Most Holy Place. 33 a 35 Put the mercy seat on the ark of the Testimony And place the table out- in the Most Holy Place. side the veil on the north side of the tabernacle, and put the lampstand opposite the table, on the The Curtain for the Entrance (Ex. 36:37–38) south side. 36 37 For the entrance to the tent, you are to make a curtain embroidered with blue, purple, and scar- let yarn, and finely spun linen. Make five posts of acacia wood for the curtain, overlay them with The Bronze Altar" + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "–5) ing to the pattern I show you. 10 And they are to construct an ark of acacia wood, two and a half cubits long, a cubit and a Overlay half wide, and a cubit and a half high. it with pure gold both inside and out, and make a 12 gold molding around it. 11 b 13 Cast four gold rings for it and fasten them to its four feet, two rings on one side and two on the 14 And make poles of acacia wood and other. Insert the poles into overlay them with gold. 15 the rings on the sides of the ark, in order to carry it. The poles are to remain in the rings of the c And place in- ark; they must not be removed. The Mercy Seat" + }, + { + "verseNum": 6, + "text": "–9) which I will give you. side the ark the Testimony, 17 16 d e 18 And you are to construct a mercy seat of pure gold, two and a half cubits long and a cubit and a half wide. Make two cherubim of hammered gold at the ends of the mercy seat, one cherub on one end and one on the other, all made from And the cherubim are to one piece of gold. a 5 b 10 19 20 have wings that spread upward, overshadowing the mercy seat. The cherubim are to face each 21 other, looking toward the mercy seat. Set the mercy seat atop the ark and put the 22 Testimony that I will give you into the ark. f And I will meet with you there above the mercy seat, between the two cherubim that are over the ark of the Testimony; I will speak with you about all that I command you regarding the The Table of Showbread Israelites." + }, + { + "verseNum": 10, + "text": "–16 ;" + }, + { + "verseNum": 17, + "text": "–24 ;" + }, + { + "verseNum": 25, + "text": "–29) I am the LORD their God. 30 2 d Its horns must be of one piece. “You are also to make an altar of acacia It is to wood for the burning of incense. 3 be square, a cubit long, a cubit wide, and two cu- Over- bits high. lay with pure gold the top and all the sides and 4 horns, and make a molding of gold around it. And make two gold rings below the molding on 5 opposite sides to hold the poles used to carry it. Make the poles of acacia wood and overlay 6 them with gold. e f 7 Place the altar in front of the veil that is before the ark of the Testimony —before the mercy seat that is over the Testimony—where I will meet with you. And Aaron is to burn fragrant 8 incense on it every morning when he tends the When Aaron sets up the lamps at twi- lamps. light, he must burn the incense perpetually g 9 before the LORD for the generations to come. On this altar you must not offer unauthorized incense or a burnt offering or grain offering; nor are you to pour a drink offering on it. c 40 b 40 A tenth of an ephah a quarter hin of pressed oil Heb. e 6 d 2 about 2.6 pounds or 1.2 kg of flour). is approx. 2 dry quarts or 2.2 liters (probably ; that is, approx. 0.97 quarts or 0.92 liters g 9 f 8 The altar was approximately 1.5 feet in length and width, and 3 feet high (45.7 cm in length and width, and 91.4 cm between the two evenings the ark of the covenant ; also in verse 41 Hebrew strange high). That is, ; also in verse 26 Hebrew Or 84 |" + }, + { + "verseNum": 29, + "text": "| 91 35 Next, he made the veil of blue, purple, and scar- let yarn, and finely spun linen, with cherubim 36 skillfully worked into it. He also made four posts of acacia wood for it and overlaid them with gold, along with gold The Curtain for the Entrance (Ex. 26:36–37) hooks; and he cast four silver bases for the posts. 37 For the entrance to the tent, he made a curtain 38 embroidered with blue, purple, and scarlet yarn, together with five posts and finely spun linen, and their hooks. He overlaid the tops of the posts and their bands Constructing the Ark" + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "–7) gold hooks, and cast five bronze bases for them. 27 “You are to build an altar of acacia wood. c The altar must be square, five cubits 2 long, five cubits wide, and three cubits high. Make a horn on each of its four corners, so that the horns are of one piece, and overlay it with 3 bronze. 4 Make all its utensils of bronze—its pots for re- moving ashes, its shovels, its sprinkling bowls, its Construct for it a meat forks, and its firepans. 5 grate of bronze mesh, and make a bronze ring at each of the four corners of the mesh. Set the grate beneath the ledge of the altar, so that the 6 mesh comes halfway up the altar. 7 Additionally, make poles of acacia wood for the The poles altar and overlay them with bronze. are to be inserted into the rings so that the poles 8 are on two sides of the altar when it is carried. Construct the altar with boards so that it is hol- low. It is to be made just as you were shown on the mountain. a 33 the ark of the covenant b 33 The Courtyard" + }, + { + "verseNum": 8, + "text": ") to make atonement for your lives.” 18 17 19 And the LORD said to Moses, “You are to make a bronze basin with a bronze stand for washing. Set it between the Tent of Meeting and with which Aaron the altar, and put water in it, 20 and his sons are to wash their hands and feet. Whenever they enter the Tent of Meeting or approach the altar to minister by presenting a food offering to the LORD, they must wash with Thus they are water so that they will not die. to wash their hands and feet so that they will not die; this shall be a permanent statute for Aaron and his descendants for the generations to The Anointing Oil come.” 22 23 21 d Then the LORD said to Moses, 24 est spices: 500 shekels of liquid myrrh, amount (250 shekels) of fragrant cinnamon, 250 shekels of fragrant cane, 500 shekels of cassia —all according to the sanctuary shekel— purification offering a 10 “Take the fin- e half that b 13 A half shekel g f h 25 Prepare from these a sa- and a hin of olive oil. cred anointing oil, a fragrant blend, the work of a 26 perfumer; it will be a sacred anointing oil. 27 Use this oil to anoint the Tent of Meeting, the the table and all its uten- ark of the Testimony, 28 sils, the lampstand and its utensils, the altar of the altar of burnt offering and all its incense, You are utensils, and the basin with its stand. to consecrate them so that they will be most holy. Whatever touches them shall be holy. Anoint Aaron and his sons and consecrate them to serve 31 Me as priests. 30 29 33" + }, + { + "verseNum": 9, + "text": "–20) 9 d 10 You are also to make a courtyard for the taber- nacle. On the south side of the courtyard make curtains of finely spun linen, a hundred cubits long with twenty posts and twenty bronze bases, and silver hooks and bands 11 on the posts. on one side, Likewise there are to be curtains on the north side, a hundred cubits long, with twenty posts and twenty bronze bases, and with silver hooks The curtains on the and bands on the posts. west side of the courtyard shall be fifty cubits 13 wide, with ten posts and ten bases. 12 e 14 f 15 The east side of the courtyard, toward the sun- rise, is to be fifty cubits wide. Make the cur- tains on one side fifteen cubits long, with three and the curtains on the posts and three bases, other side fifteen cubits long, with three posts 16 and three bases. g The gate of the courtyard shall be twenty cu- bits long, with a curtain embroidered with blue, purple, and scarlet yarn, and finely spun linen. It 17 shall have four posts and four bases. 19 All the posts around the courtyard shall have 18 silver bands, silver hooks, and bronze bases. h The entire courtyard shall be a hundred cubits i long and fifty cubits wide, with curtains of finely spun linen five cubits high, and with bronze ba- ses. All the utensils of the tabernacle for every use, including all its tent pegs and the tent pegs The Oil for the Lamps" + }, + { + "verseNum": 21, + "text": "–31 ;" + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "–7) linen. 6 5 8 7 They are to make the ephod of finely spun linen embroidered with gold, and with blue, purple, It shall have two shoulder and scarlet yarn. pieces attached at two of its corners, so it can be fastened. And the skillfully woven waistband of the ephod must be of one piece, of the same workmanship—with gold, with blue, purple, and 9 scarlet yarn, and with finely spun linen. 10 Take two onyx stones and engrave on them the six of their names names of the sons of Israel: 11 on one stone and the remaining six on the other, Engrave the names in the order of their birth. of the sons of Israel on the two stones the way a gem cutter engraves a seal. Then mount the Fasten both stones in gold filigree settings. stones on the shoulder pieces of the ephod as memorial stones for the sons of Israel. Aaron is to bear their names on his two shoulders as a me- 13 morial before the LORD. 14 12 Fashion gold filigree settings and two chains of pure gold, made of braided cord work; and at- The Breastpiece" + }, + { + "verseNum": 8, + "text": "–21) tach these chains to the settings. 15 You are also to make a breastpiece of judgment with the same workmanship as the ephod. Con- struct it with gold, with blue, purple, and scarlet It must be yarn, and with finely spun linen. square when folded over double, a span long and a span wide. a 16 b 17 16 a b And mount on it a setting of gemstones, four rows of stones: In the first row there shall be a ruby, a 18 topaz, and an emerald; in the second row a turquoise, a 19 sapphire, and a diamond; in the third row a jacinth, an agate, and 20 an amethyst; and in the fourth row a beryl, an onyx, and a jasper. 21 Mount these stones in gold filigree settings. The twelve stones are to correspond to the names of the sons of Israel, each engraved like a 22 seal with the name of one of the twelve tribes. 23 25 For the breastpiece, make braided chains like cords of pure gold. You are also to make two 24 gold rings and fasten them to the two corners of the breastpiece. Then fasten the two gold chains to the two gold rings at the corners of the and fasten the other ends of the breastpiece, two chains to the two filigree settings, attaching them to the shoulder pieces of the ephod at the 26 front. Make two more gold rings and attach them to the other two corners of the breastpiece, on the 27 inside edge next to the ephod. 28 Make two additional gold rings and attach them to the bottom of the two shoulder pieces of the ephod, on its front, near its seam just above its woven waistband. The ri" + }, + { + "verseNum": 29, + "text": "| 93 These stones were mounted in gold filigree set- 14 tings. The twelve stones corresponded to the names of the sons of Israel. Each stone was engraved like a seal with the name of one of the twelve 15 tribes. 16 For the breastpiece they made braided chains They also made two like cords of pure gold. gold filigree settings and two gold rings, and fas- tened the two rings to the two corners of the Then they fastened the two gold breastpiece. chains to the two gold rings at the corners of the and they fastened the other ends breastpiece, of the two chains to the two filigree settings, at- taching them to the shoulder pieces of the ephod 19 at the front. 17 18 They made two more gold rings and attached them to the other two corners of the breastpiece, 20 on the inside edge next to the ephod. 21 They made two additional gold rings and attached them to the bottom of the two shoulder pieces of the ephod, on its front, near the seam Then they tied just above its woven waistband. the rings of the breastpiece to the rings of the ephod with a cord of blue yarn, so that the breastpiece was above the waistband of the ephod and would not swing out from the ephod, Additional Priestly Garments just as the LORD had commanded Moses." + }, + { + "verseNum": 30, + "text": "sash of finely spun linen, embroidered with blue, purple, and scarlet yarn, just as the LORD had 30 commanded Moses. They also made the plate of the holy crown of pure gold, and they engraved on it, like an in- scription on a seal: 31 a HOLY TO THE LORD. Then they fastened to it a blue cord to mount it on the turban, just as the LORD had com- Moses Approves the Work manded Moses. 32 So all the work for the tabernacle, the Tent of Meeting, was completed. The Israelites did eve- 33 rything just as the LORD had commanded Moses. Then they brought the tabernacle to Moses: the tent with all its furnishings, its clasps, its frames, its crossbars, and its posts and 34 bases; b the covering of ram skins dyed red, the covering of fine leather, 35 covering; and the veil of the c the ark of the Testimony 36 and the mercy seat; with its poles the table with all its utensils and the 37 Bread of the Presence; the pure gold lampstand with its row of lamps and all its utensils, as well as the oil 38 for the light; the gold altar, the anointing oil, the fragrant incense, and the curtain for the 39 entrance to the tent; the bronze altar with its bronze grating, its poles, and all its utensils; 40 the basin with its stand; the curtains of the courtyard with its posts and bases; the curtain for the gate of the courtyard, its ropes and tent pegs, and all the equipment for the service of the tabernacle, the Tent of 41 Meeting; and the woven garments for ministering in the sanctuary, both the holy g" + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "–33 ;" + }, + { + "verseNum": 34, + "text": "–38) ” 15 b On the day that the tabernacle, the Tent of the Testimony, was set up, the cloud covered it and 16 appeared like fire above the tabernacle from It remained that way evening until morning. continually; the cloud would cover the taber- 17 nacle by day, and at night it would appear like Whenever the cloud was lifted from above fire. the Tent, the Israelites would set out, and wher- 18 ever the cloud settled, there the Israelites would At the LORD’s command the Israelites camp. set out, and at the LORD’s command they camped. As long as the cloud remained over the 19 tabernacle, they remained encamped. Even when the cloud lingered over the taber- nacle for many days, the Israelites kept the b 16 Sometimes LORD’s charge and did not set out. 20 Hebrew does not include ; also in verses 5 and 11 LXX, Syriac, and Vulgate; Hebrew the cloud remained over the tabernacle for only a few days, and they would camp at the LORD’s 21 command and set out at the LORD’s command. Sometimes the cloud remained only from evening until morning, and when it lifted in the morning, they would set out. Whether it was by day or by night, when the cloud was taken up, 22 they would set out. 23 Whether the cloud lingered for two days, a month, or longer, the Israelites camped and did not set out as long as the cloud remained over the tabernacle; but when it was lifted, they would set They camped at the LORD’s command, out. and they set out at the LORD’s command; they carried out the LORD’s charge ac" + }, + { + "verseNum": 38, + "text": "| 95 32 21 Moses took the Testimony and placed it in the ark, attaching the poles to the ark; and he set Then he brought the mercy seat atop the ark. the ark into the tabernacle, put up the veil for the screen, and shielded off the ark of the Testimony, 22 just as the LORD had commanded him. 23 Moses placed the table in the Tent of Meeting on the north side of the tabernacle, outside the veil. He arranged the bread on it before the 24 LORD, just as the LORD had commanded him. and from it Moses, Aaron, and his sons washed their hands and feet. They washed whenever they entered the Tent of Meeting or approached the altar, just as the LORD had commanded 33 Moses. And Moses set up the courtyard around the tabernacle and the altar, and he hung the curtain for the entrance to the courtyard. So Moses fin- The Cloud and the Glory ished the work." + } + ] + } + ] + }, + { + "name": "Leviticus", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–17) anything he may have done to incur guilt.” 8 9 Then the LORD said to Moses, “Command Aa- ron and his sons that this is the law of the burnt offering: The burnt offering is to remain on the hearth of the altar all night, until morning, and 10 the fire must be kept burning on the altar. And the priest shall put on his linen robe and linen undergarments, and he shall remove from the altar the ashes of the burnt offering that the 11 fire has consumed and place them beside it. Then he must take off his garments, put on other clothes, and carry the ashes outside the 12 camp to a ceremonially clean place. The fire on the altar shall be kept burning; it must not be extinguished. Every morning the priest is to add wood to the fire, arrange the burnt offering on it, and burn the fat portions of The fire shall be kept the peace offerings on it. burning on the altar continually; it must not be The Grain Offering" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–16) extinguished. 14 13 15 Now this is the law of the grain offering: Aaron’s sons shall present it before the LORD in The priest is to remove a front of the altar. handful of fine flour and olive oil, together with is approximately 2 dry quarts or 2.2 liters (probably about 2.6 pounds or 1.2 kilograms of flour). is approximately 0.4 ounces or 11.4 grams of silver. 100 |" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–17) equally to all the sons of Aaron. 11 d e 12 Now this is the law of the peace offering that If he offers it in one may present to the LORD: thanksgiving, then along with the sacrifice of thanksgiving he shall offer unleavened cakes mixed with olive oil, unleavened wafers coated with oil, and well-kneaded cakes of fine flour 13 mixed with oil. 14 Along with his peace offering of thanksgiving he is to present an offering with cakes of leav- From the cakes he must present ened bread. one portion of each offering as a contribution to 15 the LORD. It belongs to the priest who sprinkles The meat of the the blood of the peace offering. sacrifice of his peace offering of thanksgiving must be eaten on the day he offers it; none of it 16 may be left until morning. 17 If, however, the sacrifice he offers is a vow or a freewill offering, it shall be eaten on the day he presents his sacrifice, but the remainder may But any meat of the be eaten on the next day. 18 sacrifice remaining until the third day must be burned up. If any of the meat from his peace offering is eaten on the third day, it will not be d 9 e 9 That is, a shallow pan for baking or frying Or That is, a deep pan or stew pan That is, a shal- is approximately 2 dry quarts or 2.2 liters (probably about 2.6 pounds or 1.2 kilograms of flour). low pan for baking or frying accepted. It will not be credited to the one who presented it; it shall be an abomination, and the 19 one who eats of it shall bear his iniquity. Meat that" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "–35 ;" + }, + { + "verseNum": 12, + "text": "| 97 12 13 If one’s offering is a goat, he is to present it be- He must lay his hand on its fore the LORD. head and slaughter it in front of the Tent of Meet- ing. Then Aaron’s sons shall splatter its blood on 14 all sides of the altar. 16 15 And from his offering he shall present a food offering to the LORD: the fat that covers the en- both kidneys trails, all the fat that is on them, with the fat on them near the loins, and the lobe of the liver, which he is to remove with the kid- Then the priest is to burn the food on the neys. altar as a food offering, a pleasing aroma. All the 17 fat is the LORD’s. This is a permanent statute for the generations to come, wherever you live: You must not eat any Laws for Sin Offerings (Lev. 5:1–13 ; 6:24–30) fat or any blood.” 2 Then the LORD said to Moses, “Tell the Is- raelites to do as follows with one who sins unintentionally against any of the LORD’s com- 3 mandments and does what is forbidden by them: a 7 If the anointed priest sins, bringing guilt on the people, he must bring to the LORD a young bull 4 without blemish as a sin offering for the sin he has committed. He must bring the bull to the en- trance to the Tent of Meeting before the LORD, 5 lay his hand on the bull’s head, and slaughter it before the LORD. Then the anointed priest shall 6 take some of the bull’s blood and bring it into the Tent of Meeting. The priest is to dip his finger in the blood and sprinkle some of it seven times be- fore the LORD, in front of the veil" + }, + { + "verseNum": 13, + "text": "13 16 14 15 Now if the whole congregation of Israel strays unintentionally and the matter escapes the no- tice of the assembly so that they violate any of the LORD’s commandments and incur guilt by doing when they become aware of what is forbidden, the sin they have committed, then the assembly must bring a young bull as a sin offering and pre- The elders sent it before the Tent of Meeting. of the congregation are to lay their hands on the bull’s head before the LORD, and it shall be Then the slaughtered before the LORD. 17 anointed priest is to bring some of the bull’s and he is to dip blood into the Tent of Meeting, his finger in the blood and sprinkle it seven times He is also before the LORD in front of the veil. to put some of the blood on the horns of the altar that is before the LORD in the Tent of Meeting, and he must pour out the rest of the blood at the 19 base of the altar of burnt offering at the entrance And he is to remove all to the Tent of Meeting. He shall the fat from it and burn it on the altar. offer this bull just as he did the bull for the sin offering; in this way the priest will make atone- 21 ment on their behalf, and they will be forgiven. Then he is to take the bull outside the camp and burn it, just as he burned the first bull. It is 22 the sin offering for the assembly. 18 20 23 24 When a leader sins unintentionally and does what is prohibited by any of the commandments When he of the LORD his God, he incurs guilt. becomes aware of the sin he has" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–13) 23 24 25 And the LORD said to Moses, “Tell Aaron and his sons that this is the law of the sin offering: In the place where the burnt offering is slaughtered, 26 the sin offering shall be slaughtered before the The priest who offers it LORD; it is most holy. shall eat it; it must be eaten in a holy place, in the Anything courtyard of the Tent of Meeting. that touches its flesh will become holy, and if any of the blood is spattered on a garment, you must 28 wash it in a holy place. 27 30 The clay pot in which the sin offering is boiled must be broken; if it is boiled in a bronze pot, the 29 pot must be scoured and rinsed with water. Any male among the priests may eat it; it is But no sin offering may be eaten if most holy. its blood has been brought into the Tent of Meet- ing to make atonement in the Holy Place; it must a 20 A tenth of an ephah be burned. b 21 c 21 baked The Guilt Offering (Lev. 5:14–19 ; Lev. 6:1–7) 7 2 4 3 “Now this is the law of the guilt offering, The guilt offering must which is most holy: be slaughtered in the place where the burnt of- fering is slaughtered, and the priest shall splatter And all the fat its blood on all sides of the altar. from it shall be offered: the fat tail, the fat that both kidneys with the fat on covers the entrails, them near the loins, and the lobe of the liver, The which is to be removed with the kidneys. 6 priest shall burn them on the altar as a food of- fering to the LORD; it is a guilt offering. Every male among the pri" + }, + { + "verseNum": 14, + "text": "–19 ;" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–7 ;" + }, + { + "verseNum": 8, + "text": "–13) 15 1 2 Then the LORD called to Moses and spoke to him from the Tent of Meeting, saying, “Speak to the Israelites and tell them: When any of you brings an offering to the LORD, you may bring as your offering an animal from the herd or 3 the flock. If his offering is a burnt offering from the herd, he is to present an unblemished male. He must bring it to the entrance to the Tent of Meeting for its acceptance before the LORD. He is to lay his hand on the head of the burnt offering, so it can be accepted on his behalf to make atonement for 5 him. 4 And he shall slaughter the young bull before the LORD, and Aaron’s sons the priests are to pre- sent the blood and splatter it on all sides of the 6 altar at the entrance to the Tent of Meeting. Next, he is to skin the burnt offering and cut it 7 into pieces. 8 The sons of Aaron the priest shall put a fire on the altar and arrange wood on the fire. Then Aa- ron’s sons the priests are to arrange the pieces, 9 including the head and the fat, atop the burning wood on the altar. The entrails and legs must be washed with water, and the priest shall burn all of it on the altar as a burnt offering, a food offer- 10 ing, a pleasing aroma to the LORD. 11 If, however, one’s offering is a burnt offering from the flock—from the sheep or goats—he is to present an unblemished male. He shall slaughter it on the north side of the altar before the LORD, and Aaron’s sons the priests are to 12 splatter its blood against the altar on all sides. He i" + }, + { + "verseNum": 14, + "text": "–23) food offering, a pleasing aroma to the LORD. 2 2 “When anyone brings a grain offering to the LORD, his offering must consist of fine flour. He is to pour olive oil on it, put frankincense on it, and bring it to Aaron’s sons the priests. The priest shall take a handful of the flour and oil, to- gether with all the frankincense, and burn this as a memorial portion on the altar, a food offering, The remainder of a pleasing aroma to the LORD. the grain offering shall belong to Aaron and his sons; it is a most holy part of the food offerings 4 to the LORD. 3 Now if you bring an offering of grain baked in an oven, it must consist of fine flour, either un- leavened cakes mixed with oil or unleavened 5 wafers coated with oil. b If your offering is a grain offering prepared on a 6 it must be unleavened bread made of Crumble it and pour oil griddle, fine flour mixed with oil. 7 on it; it is a grain offering. c If your offering is a grain offering cooked in a 8 pan, it must consist of fine flour with oil. 9 When you bring to the LORD the grain offering made in any of these ways, it is to be presented The to the priest, and he shall take it to the altar. priest is to remove the memorial portion from the grain offering and burn it on the altar as a 10 food offering, a pleasing aroma to the LORD. But the remainder of the grain offering shall belong to Aaron and his sons; it is a most holy 11 part of the food offerings to the LORD. If, instead, one’s offering to the LORD is a burnt b 5" + }, + { + "verseNum": 15, + "text": "| 99 Sins Requiring a Guilt Offering" + }, + { + "verseNum": 16, + "text": "all the frankincense from the grain offering, and burn the memorial portion on the altar as a 16 pleasing aroma to the LORD. 18 17 Aaron and his sons are to eat the remainder. It must be eaten without leaven in a holy place; they are to eat it in the courtyard of the Tent of It must not be baked with leaven; I Meeting. have assigned it as their portion of My food offer- ings. It is most holy, like the sin offering and the Any male among the sons of Aa- guilt offering. ron may eat it. This is a permanent portion from the food offerings to the LORD for the genera- tions to come. Anything that touches them will 19 become holy.” 20 b a Then the LORD said to Moses, “This is the of- fering that Aaron and his sons must present to the LORD on the day he is anointed: a tenth of an ephah of fine flour as a regular grain offering, 21 half of it in the morning and half in the evening. you It shall be prepared with oil on a griddle; c are to bring it well-kneaded and present it as a 22 grain offering broken in pieces, a pleasing The priest, who is one of aroma to the LORD. Aaron’s sons and will be anointed to take his place, is to prepare it. As a permanent portion for Every the LORD, it must be burned completely. grain offering for a priest shall be burned com- The Sin Offering pletely; it is not to be eaten.”" + }, + { + "verseNum": 24, + "text": "–30) 35 5 “If someone sins by failing to testify when he hears a public charge about something he has witnessed, whether he has seen it or learned 2 of it, he shall bear the iniquity. Or if a person touches anything unclean— whether the carcass of any unclean wild animal or livestock or crawling creature—even if he is 3 unaware of it, he is unclean and guilty. Or if he touches human uncleanness—anything by which one becomes unclean—even if he is un- 4 aware of it, when he realizes it, he is guilty. Or if someone swears thoughtlessly with his lips to do anything good or evil—in whatever matter a man may rashly pronounce an oath— even if he is unaware of it, when he realizes it, he 5 is guilty in the matter. 6 If someone incurs guilt in one of these ways, he and he must confess the sin he has committed, must bring his guilt offering to the LORD for the sin he has committed: a female lamb or goat from the flock as a sin offering. And the priest will 7 make atonement for him concerning his sin. If, however, he cannot afford a lamb, he may bring to the LORD as restitution for his sin two turtledoves or two young pigeons—one as a sin 8 He is offering and the other as a burnt offering. to bring them to the priest, who shall first pre- sent the one for the sin offering. He is to twist its 9 head at the front of its neck without severing it; then he is to sprinkle some of the blood of the sin offering on the side of the altar, while the rest of the blood is drained out at the base of" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–10) 13 14 15 b 16 Then the LORD said to Moses, “If someone acts unfaithfully and sins unintentionally against any of the LORD’s holy things, he must bring his guilt offering to the LORD: an unblemished ram from the flock, of proper value in silver shekels according to the sanctuary shekel; it is a guilt offering. Regarding any holy thing he has harmed, he must make restitution by adding a fifth of its value to it and giving it to the priest, who will make atonement on his behalf with the 17 ram as a guilt offering, and he will be forgiven. c 18 If someone sins and violates any of the LORD’s commandments even though he was unaware, He he is guilty and shall bear his punishment. is to bring to the priest an unblemished ram of proper value from the flock as a guilt offering. Then the priest will make atonement on his be- half for the wrong he has committed in igno- It is a guilt rance, and he will be forgiven. offering; he was certainly guilty before the LORD.” a 11 A tenth of an ephah b 15 d 19 flock or its equivalence he has paid full compensation c 15 A shekel 19 d Or Or 6" + }, + { + "verseNum": 11, + "text": "–21) frankincense, as a food offering to the LORD. 16 3 2 “If one’s offering is a peace offering and he offers an animal from the herd, whether male or female, he must present it without blem- He is to lay his hand on the ish before the LORD. head of the offering and slaughter it at the en- trance to the Tent of Meeting. Then Aaron’s sons the priests shall splatter the blood on all sides of 3 the altar. 4 5 From the peace offering he is to bring a food offering to the LORD: the fat that covers the en- trails, all the fat that is on them, both kidneys with the fat on them near the loins, and the lobe of the liver, which he is to remove with the kid- neys. Then Aaron’s sons are to burn it on the altar atop the burnt offering that is on the burn- ing wood, as a food offering, a pleasing aroma to 6 the LORD. If, however, one’s peace offering to the LORD is from the flock, he must present a male or female 7 without blemish. 8 If he is presenting a lamb for his offering, he must present it before the LORD. He is to lay his hand on the head of his offering and slaughter it in front of the Tent of Meeting. Then Aaron’s sons 9 shall splatter its blood on all sides of the altar. And from the peace offering he shall bring a food offering to the LORD consisting of its fat: the entire fat tail cut off close to the backbone, the fat 10 that covers the entrails, all the fat that is on them, both kidneys with the fat on them near the 11 loins, and the lobe of the liver, which he is to re- mo" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "–13) Aaron and his descendants. 29 “Now this is what you are to do to conse- crate Aaron and his sons to serve Me as 2 priests: Take a young bull and two rams without along with unleavened bread, unleav- blemish, ened cakes mixed with oil, and unleavened wa- fers anointed with oil. Make them out of fine put them in a basket, and present wheat flour, them in the basket, along with the bull and the a 32 two rams. offering 3 5 Then present Aaron and his sons at the en- trance to the Tent of Meeting and wash them Take the garments and clothe Aa- with water. ron with the tunic, the robe of the ephod, the ephod itself, and the breastplate. Fasten the Put the ephod on him with its woven waistband. turban on his head and attach the holy diadem to Then take the anointing oil and the turban. 8 anoint him by pouring it on his head. 7 6 9 Present his sons as well and clothe them with Wrap the sashes around Aaron and his tunics. sons and tie headbands on them. The priesthood shall be theirs by a permanent statute. In this The Order of the Sacrifices" + }, + { + "verseNum": 13, + "text": "| 101 35 36 This is the portion of the food offerings to the LORD for Aaron and his sons since the day they were presented to serve the LORD as On the day they were anointed, the priests. LORD commanded that this be given them by the sons of Israel. It is a permanent portion for 37 the generations to come. This is the law of the burnt offering, the grain offering, the sin offering, the guilt offering, the 38 ordination offering, and the peace offering, which the LORD gave Moses on Mount Sinai on the day He commanded the Israelites to present their offerings to the LORD in the Wilderness of Sinai. Moses Consecrates Aaron and His Sons" + }, + { + "verseNum": 14, + "text": "The Priests’ Sin Offering 14 15 Moses then brought the bull near for the sin of- fering, and Aaron and his sons laid their hands on its head. Moses slaughtered the bull, took some of the blood, and applied it with his finger to all four horns of the altar, purifying the altar. He poured out the rest of the blood at the base of the altar and consecrated it so that atonement 16 could be made on it. Moses also took all the fat that was on the en- trails, the lobe of the liver, and both kidneys and their fat, and burned it all on the altar. But the bull with its hide, flesh, and dung he burned out- The Priests’ Burnt Offering side the camp, as the LORD had commanded him. 18 17 20 21 19 Then Moses presented the ram for the burnt offering, and Aaron and his sons laid their hands on its head. Moses slaughtered the ram and splattered the blood on all sides of the altar. He cut the ram into pieces and burned the head, the pieces, and the fat. He washed the entrails and legs with water and burned the entire ram on the altar as a burnt offering, a pleasing aroma, a food offering to the LORD, just as the LORD had com- The Ram of Ordination" + }, + { + "verseNum": 22, + "text": "-36) way you are to ordain Aaron and his sons. 10 12 11 You are to present the bull at the front of the Tent of Meeting, and Aaron and his sons are to And you shall lay their hands on its head. slaughter the bull before the LORD at the en- trance to the Tent of Meeting. Take some of the blood of the bull and put it on the horns of the 13 altar with your finger; then pour out the rest of the blood at the base of the altar. Take all the fat that covers the entrails and the lobe of the liver, and both kidneys with the fat on them, and burn them on the altar. But burn the flesh of the bull and its hide and dung outside the camp; 15 it is a sin offering. 14 c 16 Take one of the rams, and Aaron and his sons You are to shall lay their hands on its head. 17 slaughter the ram, take its blood, and splatter it Cut the ram into pieces, on all sides of the altar. wash the entrails and legs, and place them with its head and other pieces. Then burn the entire ram on the altar; it is a burnt offering to the LORD, a pleasing aroma, a food offering to the 19 LORD. 18 20 21 Take the second ram, and Aaron and his sons Slaughter the are to lay their hands on its head. ram, take some of its blood, and put it on the right earlobes of Aaron and his sons, on the thumbs of their right hands, and on the big toes of their right feet. Splatter the remaining blood on all And take some of the blood sides of the altar. on the altar and some of the anointing oil and sprinkle it on Aaron and his garments, as" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "–7) man with his clan and his family. 3 This is the account of Aaron and Moses at the time the LORD spoke with Moses on Mount a 4 Sinai. strange b 9 3 These are the names of the sons of Aaron: Nadab the firstborn, then Abihu, Eleazar, and Ith- amar. These were Aaron’s sons, the anointed 4 priests, who were ordained to serve as priests. a Nadab and Abihu, however, died in the pres- ence of the LORD when they offered unauthor- ized fire before the LORD in the Wilderness of Sinai. And since they had no sons, only Eleazar and Ithamar served as priests during the lifetime The Duties of the Levites of their father Aaron. 5 6 7 8 Then the LORD said to Moses, “Bring the tribe of Levi and present them to Aaron the priest to They are to perform duties for him assist him. and for the whole congregation before the Tent of Meeting, attending to the service of the taber- They shall take care of all the furnishings nacle. of the Tent of Meeting and fulfill obligations for the Israelites by attending to the service of the 9 tabernacle. b 10 Assign the Levites to Aaron and his sons; they have been given exclusively to him from among So you shall appoint Aaron and the Israelites. his sons to carry out the duties of the priesthood; but any outsider who approaches the tabernacle 11 must be put to death.” 12 Again the LORD spoke to Moses, saying, “Be- hold, I have taken the Levites from among the children of Israel in place of every firstborn Isra- 13 elite from the womb. The Levites belong to Me" + }, + { + "verseNum": 4, + "text": ". shekel (approximately 0.4 ounces or 11.4 grams). Moses, Aaron, and Aaron’s sons were to camp to the east of the tabernacle, toward the sunrise, before the Tent of Meeting. They were to per- form the duties of the sanctuary as a service on behalf of the Israelites; but any outsider who ap- 39 proached the sanctuary was to be put to death. The total number of Levites that Moses and Aaron counted by their clans at the LORD’s com- mand, including all the males a month old or The Redemption of the Firstborn more, was 22,000. 40 41 Then the LORD said to Moses, “Number every firstborn male of the Israelites a month old or more, and list their names. You are to take the Levites for Me—I am the LORD—in place of all the firstborn of Israel, and the livestock of the Le- vites in place of all the firstborn of the livestock 42 of the Israelites.” So Moses numbered all the firstborn of the 43 Israelites, as the LORD had commanded him. The total number of the firstborn males a 44 month old or more, listed by name, was 22,273. 45 46 Again the LORD spoke to Moses, saying, “Take the Levites in place of all the firstborn of Israel, and the livestock of the Levites in place of their livestock. The Levites belong to Me; I am the 47 LORD. To redeem the 273 firstborn Israelites who outnumber the Levites, you are to collect five shekels for each one, according to the sanc- Give the tuary shekel of twenty gerahs. money to Aaron and his sons as the redemption 49 price for the excess among the Israel" + }, + { + "verseNum": 11, + "text": "| 103 24 people, and the glory of the LORD appeared to all Fire came out from the presence of the people. the LORD and consumed the burnt offering and the fat portions on the altar. And when all the people saw it, they shouted for joy and fell The Sin of Nadab and Abihu" + }, + { + "verseNum": 12, + "text": "12 And Moses said to Aaron and his remaining sons, Eleazar and Ithamar, “Take the grain offer- ing that remains from the food offerings to the 13 LORD and eat it without leaven beside the altar, You shall eat it in a holy because it is most holy. place, because it is your share and your sons’ share of the food offerings to the LORD; for this 14 is what I have been commanded. 15 And you and your sons and daughters may eat the breast of the wave offering and the thigh of the contribution in a ceremonially clean place, because these portions have been assigned to you and your children from the peace offerings They are to bring the thigh of the sons of Israel. of the contribution and the breast of the wave of- fering, together with the fat portions of the food offerings, to wave as a wave offering before the LORD. It will belong permanently to you and 16 your children, as the LORD has commanded.” 17 Later, Moses searched carefully for the goat of the sin offering, and behold, it had been burned up. He was angry with Eleazar and Itha- “Why mar, Aaron’s remaining sons, and asked, didn’t you eat the sin offering in the holy place? For it is most holy; it was given to you to take away the guilt of the congregation by making Since its atonement for them before the LORD. blood was not brought inside the holy place, you should have eaten it in the sanctuary area, as I 19 commanded.” 18 But Aaron replied to Moses, “Behold, this very day they presented their sin offering and their burnt o" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "–47 ;" + }, + { + "verseNum": 4, + "text": "and" + }, + { + "verseNum": 23, + "text": ", where camels and gnats are both forbidden as food. . Or NE and WH do not include . NA does not" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 8, + "text": "| 105 creature that moves along the ground, whether it crawls on its belly or walks on four or more feet; 43 for such creatures are detestable. Do not defile yourselves by any crawling crea- 44 ture; do not become unclean or defiled by them. b For I am the LORD your God; consecrate your- selves, therefore, and be holy, because I am holy. You must not defile yourselves by any creature that crawls along the ground. For I am the LORD, who brought you up out of the land of Egypt so that I would be your God; therefore be 46 holy, because I am holy. 45 This is the law regarding animals, birds, all liv- ing creatures that move in the water, and all You creatures that crawl along the ground. must distinguish between the unclean and the clean, between animals that may be eaten and Purification after Childbirth those that may not.’ 47 ” 2 “Say to Then the LORD said to Moses, the Israelites, ‘A woman who becomes pregnant and gives birth to a son will be unclean for seven days, as she is during the days of her And on the eighth day the flesh of menstruation. 4 the boy’s foreskin is to be circumcised. 3 The woman shall continue in purification from her bleeding for thirty-three days. She must not touch anything sacred or go into the sanctuary 5 until the days of her purification are complete. If, however, she gives birth to a daughter, the woman will be unclean for two weeks as she is during her menstruation. Then she must con- tinue in purification from her bleeding for sixty- 6 six days" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Laws about Skin Diseases" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "–32 ;" + }, + { + "verseNum": 4, + "text": "| 107 and isolate the contaminated fabric for seven 51 days. 52 On the seventh day the priest shall reexamine it, and if the mildew has spread in the fabric, weave, knit, or leather, then regardless of how it is used, it is a harmful mildew; the article is un- He is to burn the fabric, weave, or knit, clean. whether the contaminated item is wool or linen or leather. Since the mildew is harmful, the arti- 53 cle must be burned up. 54 55 But when the priest reexamines it, if the mil- dew has not spread in the fabric, weave, knit, or the priest is to order the con- leather article, taminated article to be washed and isolated for After it has been washed, another seven days. the priest is to reexamine it, and if the mildewed article has not changed in appearance, it is un- clean. Even though the mildew has not spread, you must burn it, whether the rot is on the front 56 or back. 57 If the priest examines it and the mildew has faded after it has been washed, he must cut the contaminated section out of the fabric, leather, But if it reappears in the weave, or knit. fabric, weave, or knit, or on any leather article, it is spreading. You must burn the contaminated 58 article. If the mildew disappears from the fabric, weave, or knit, or any leather article after wash- ing, then it is to be washed again, and it will be 59 clean. This is the law concerning a mildew contami- nation in wool or linen fabric, weave, or knit, or any leather article, for pronouncing it clean or Cleansing from" + }, + { + "verseNum": 5, + "text": "5 18 a 6 Then the priest shall command that one of the birds be slaughtered over fresh water in a clay pot. And he is to take the live bird together with the cedar wood, scarlet yarn, and hyssop, and dip 7 them into the blood of the bird that was slaugh- Seven times he shall tered over the fresh water. sprinkle the one to be cleansed of the skin dis- ease. Then he shall pronounce him clean and 8 release the live bird into the open field. 9 The one being cleansed must wash his clothes, shave off all his hair, and bathe with water; then he will be ceremonially clean. Afterward, he may enter the camp, but he must remain outside his On the seventh day he must tent for seven days. shave off all his hair—his head, his beard, his eyebrows, and the rest of his hair. He must wash his clothes and bathe himself with water, and he 10 will be clean. c b 11 On the eighth day he is to bring two unblem- ished male lambs, an unblemished ewe lamb a year old, a grain offering of three-tenths of an ephah of fine flour mixed with olive oil, and one log of olive oil. The priest who performs the cleansing shall present the one to be cleansed, together with these offerings, before the LORD at 12 the entrance to the Tent of Meeting. 13 Then the priest is to take one of the male lambs and present it as a guilt offering, along with the log of olive oil; and he must wave them as a wave Then he is to slaugh- offering before the LORD. ter the lamb in the sanctuary area where the sin offering and burnt off" + }, + { + "verseNum": 10, + "text": "" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "–12) sembly of the LORD. 9 10 When you are encamped against your enemies, then you shall keep yourself from every wicked If any man among you becomes unclean thing. 11 because of a nocturnal emission, he must leave the camp and stay outside. When evening ap- proaches, he must wash with water, and when 12 the sun sets he may return to the camp. 13 You must have a place outside the camp to go And you must have a dig- and relieve yourself. ging tool in your equipment so that when you re- lieve yourself you can dig a hole and cover up 14 your excrement. For the LORD your God walks throughout your camp to protect you and deliver your enemies to you. Your camp must be holy, lest He see any- thing unclean among you and turn away from you. Miscellaneous Laws 15 16 Do not return a slave to his master if he has Let him live among you taken refuge with you. wherever he chooses, in the town of his pleasing. 17 Do not oppress him. 18 e No daughter or son of Israel is to be a shrine You must not bring the wages of a prostitute. into the prostitute, whether female or male, house of the LORD your God to fulfill any vow, because both are detestable to the LORD your 19 God. 20 Do not charge your brother interest on money, You may charge food, or any other type of loan. a foreigner interest, but not your brother, so that the LORD your God may bless you in everything to which you put your hand in the land that you 21 are entering to possess. silver. the region between the Euphrates and Balih Riv" + }, + { + "verseNum": 8, + "text": "| 109 33 34 35 Then the LORD said to Moses and Aaron, “When you enter the land of Canaan, which I a am giving you as your possession, and I put a into a house in that contamination of mildew the owner of the house shall come and land, tell the priest, ‘Something like mildew has ap- 36 peared in my house.’ The priest must order that the house be cleared before he enters it to examine the mil- dew, so that nothing in the house will become un- clean. After this, the priest shall go in to inspect 37 the house. He is to examine the house, and if the mildew on the walls consists of green or red depressions 38 that appear to be beneath the surface of the wall, the priest shall go outside the doorway of the 39 house and close it up for seven days. 41 40 On the seventh day the priest is to return and inspect the house. If the mildew has spread on he must order that the contaminated the walls, stones be pulled out and thrown into an unclean place outside the city. And he shall have the in- side of the house scraped completely and the plaster that is scraped off dumped into an un- 42 clean place outside the city. So different stones must be obtained to re- place the contaminated ones, as well as addi- 43 tional mortar to replaster the house. If the mildew reappears in the house after the stones have been torn out and the house has been scraped and replastered, the priest must come and inspect it. 44 45 46 If the mildew has spread in the house, it is a de- It must structive mildew; the h" + }, + { + "verseNum": 9, + "text": "9 10 24 Any saddle on which the man with the dis- charge rides will be unclean. Whoever touches anything that was under him will be unclean until evening, and whoever carries such things must wash his clothes and bathe with water, and 11 he will be unclean until evening. 12 If the man with the discharge touches anyone without first rinsing his hands with water, the one who was touched must wash his clothes and bathe with water, and he will be unclean until evening. Any clay pot that the man with the discharge touches must be broken, and any The Cleansing of Men wooden utensil must be rinsed with water. 13 a 14 and he shall be clean. When the man has been cleansed from his dis- charge, he must count off seven days for his cleansing, wash his clothes, and bathe himself in On the fresh water, eighth day he is to take two turtledoves or two young pigeons, come before the LORD at the en- trance to the Tent of Meeting, and give them to The priest is to sacrifice them, one the priest. as a sin offering and the other as a burnt offering. In this way the priest will make atonement for the man before the LORD because of his dis- 16 charge. 15 17 When a man has an emission of semen, he must bathe his whole body with water, and he will be unclean until evening. Any clothing or leather on which there is an emission of semen 18 must be washed with water, and it will remain unclean until evening. If a man lies with a woman and there is an emission of semen, both must bathe with water, and t" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "–34 ;" + }, + { + "verseNum": 31, + "text": "| 111 18 tunic, with linen undergarments. He must tie a linen sash around him and put on the linen tur- ban. These are holy garments, and he must bathe And himself with water before he wears them. he shall take from the congregation of Israel two male goats for a sin offering and one ram for a 6 burnt offering. 5 19 Then he shall go out to the altar that is before the LORD and make atonement for it. He is to take some of the bull’s blood and some of the goat’s blood and put it on all the horns of the al- He is to sprinkle some of the blood on it tar. with his finger seven times to cleanse it and con- 20 secrate it from the uncleanness of the Israelites. 7 Aaron is to present the bull for his sin offering and make atonement for himself and his house- hold. Then he shall take the two goats and pre- sent them before the LORD at the entrance to the 8 Tent of Meeting. a 9 After Aaron casts lots for the two goats, one for the LORD and the other for the scapegoat, he shall present the goat chosen by lot for the LORD But the goat and sacrifice it as a sin offering. chosen by lot as the scapegoat shall be presented alive before the LORD to make atonement by 11 sending it into the wilderness as the scapegoat. 10 13 12 When Aaron presents the bull for his sin offer- ing and makes atonement for himself and his household, he is to slaughter the bull for his own Then he must take a censer full of sin offering. burning coals from the altar before the LORD, and two handfuls of finely ground" + }, + { + "verseNum": 32, + "text": "32 33 The priest who is anointed and ordained to succeed his father as high priest shall make atonement. He will put on the sacred linen gar- a and make atonement for the Most Holy ments Place, the Tent of Meeting, and the altar, and for 34 the priests and all the people of the assembly. This is to be a permanent statute for you, to make atonement once a year for the Israelites because of all their sins.” And all this was done as the LORD had com- The Place of Sacrifice manded Moses. 2 17 b “Speak to Then the LORD said to Moses, Aaron, his sons, and all the Israelites and 3 tell them this is what the LORD has commanded: ‘Anyone from the house of Israel who slaugh- 4 ters an ox, a lamb, or a goat in the camp or out- instead of bringing it to the entrance to side of it the Tent of Meeting to present it as an offering to the LORD before His tabernacle—that man shall incur bloodguilt. He has shed blood and must be 5 cut off from among his people. 6 For this reason the Israelites will bring to the LORD the sacrifices they have been offering in the open fields. They are to bring them to the priest at the entrance to the Tent of Meeting and offer them as sacrifices of peace offerings to the LORD. The priest will then splatter the blood on the altar of the LORD at the entrance to the Tent of Meeting and burn the fat as a pleasing aroma 7 to the LORD. c They must no longer offer their sacrifices to the goat demons to which they have prostituted themselves. This will be a permanent sta" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "–30) not get out until you have paid the last penny. 27 26 a b 28 29 You have heard that it was said, ‘Do not com- mit adultery.’ But I tell you that anyone who looks at a woman to lust after her has already If committed adultery with her in his heart. your right eye causes you to sin, gouge it out and throw it away. It is better for you to lose one part of your body than for your whole body to be And if your right hand thrown into hell. causes you to sin, cut it off and throw it away. It is better for you to lose one part of your body Divorce" + }, + { + "verseNum": 5, + "text": "; also in" + }, + { + "verseNum": 21, + "text": "and 1 Kings 11:7. g 31 . Milcom, also called Molech, was god of the h 3 Shimeah is approximately 75.4 pounds or 34.2 kilograms of gold. is a variant Literally , and ; see 1 Samuel 16:9, 2 Samuel 21:21, and 1 Chronicles 2:13. Shammah Literally , of 292 | 2 Samuel 13:18 18 31 a So Amnon’s attendant threw her out and bolted the door behind her. Now Tamar was because this is wearing a robe of many colors, And king’s virgin daughters wore. what the Tamar put ashes on her head and tore her robe. And putting her hand on her head, she went 20 away crying aloud. 19 Her brother Absalom said to her, “Has your brother Amnon been with you? Be quiet for now, my sister. He is your brother. Do not take this thing to heart.” So Tamar lived as a desolate woman in the house 21 of her brother Absalom. b 22 When King David heard all this, he was furi- ous. And Absalom never said a word to Am- non, either good or bad, because he hated Amnon Absalom’s Revenge on Amnon for violating his sister Tamar. 23 Two years later, when Absalom’s sheepshear- 24 ers were at Baal-hazor near Ephraim, he invited And he went to the king all the sons of the king. and said, “Your servant has just hired shearers. Will the king and his servants please come with 25 me?” “No, my son,” the king replied, “we should not all go, or we would be a burden to you.” Although Absalom urged him, he was not willing to go, but 26 gave him his blessing. “If not,” said Absalom, “please let my brother Amnon go with us.” 27 “Why should he" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 9, + "text": "–18) due. 8 9 Be indebted to no one, except to one another in love. For he who loves his neighbor has fulfilled The commandments “Do not commit the law. c adultery,” “Do not murder,” “Do not steal,” “Do and any other commandments, are not covet,” summed up in this one decree: “Love your neigh- bor as yourself.” Love does no wrong to its neighbor. Therefore love is the fulfillment of the The Day Is Near law. 11 10 d 13 12 And do this, understanding the occasion. The hour has come for you to wake up from your slumber, for our salvation is nearer now than The night is nearly when we first believed. over; the day has drawn near. So let us lay aside the deeds of darkness and put on the armor of Let us behave decently, as in the daytime, light. not in carousing and drunkenness, not in sexual e immorality and debauchery, not in dissension and jealousy. the Lord Jesus Christ, and make no provision for The Law of Liberty the desires of the flesh." + }, + { + "verseNum": 13, + "text": "and" + }, + { + "verseNum": 14, + "text": "| 113 27 28 For the men foreigner who lives among you. who were in the land before you committed all these abominations, and the land has become de- filed. So if you defile the land, it will vomit you 29 out as it spewed out the nations before you. 30 Therefore anyone who commits any of these abominations must be cut off from among his people. You must keep My charge not to prac- tice any of the abominable customs that were practiced before you, so that you do not defile Commandments for Holiness yourselves by them. I am the LORD your God.” 2 b “Speak to Then the LORD said to Moses, the whole congregation of Israel and tell them: Be holy because I, the LORD your God, am 3 holy. Each of you must respect his mother and father, and you must keep My Sabbaths. I am the LORD 4 your God. Do not turn to idols or make for yourselves mol- 5 ten gods. I am the LORD your God. 6 7 When you sacrifice a peace offering to the LORD, you shall offer it for your acceptance. It shall be eaten on the day you sacrifice it, or on the next day; but what remains on the third day must be burned up. If any of it is eaten on the 8 third day, it is tainted and will not be accepted. Whoever eats it will bear his iniquity, for he has profaned what is holy to the LORD. That person Love Your Neighbor" + }, + { + "verseNum": 15, + "text": "15 29 You must not pervert justice; you must not show partiality to the poor or favoritism to the 16 rich; you are to judge your neighbor fairly. You must not defile your daughter by making her a prostitute, or the land will be prostituted 30 and filled with depravity. You must not go about spreading slander a among your people. You must not endanger the life 17 bor. I am the LORD. of your neigh- 18 You must not harbor hatred against your brother in your heart. Directly rebuke your neighbor, so that you will not incur guilt on account of him. Do not seek revenge or bear a grudge against any of your people, but love your Keep My Statutes neighbor as yourself. 19 I am the LORD. b You are to keep My statutes. You shall not crossbreed two different kinds of livestock; you shall not sow your fields with two kinds of seed; and you shall not wear clothing made of two 20 kinds of material. 21 If a man lies carnally with a slave girl promised to another man but who has not been redeemed or given her freedom, there must be due punish- ment. But they are not to be put to death, because The man, however, she had not been freed. must bring a ram to the entrance to the Tent of The Meeting as his guilt offering to the LORD. priest shall make atonement on his behalf before the LORD with the ram of the guilt offering for the sin he has committed, and he will be forgiven 23 the sin he has committed. 22 c When you enter the land and plant any kind of tree for food, you shall regard the fruit as" + }, + { + "verseNum": 18, + "text": "" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "–9 ;" + }, + { + "verseNum": 9, + "text": "; a stadion was about 607 feet or 185 meters ; NE and WH do not include g 9 f 6 or mother 18 “Do you still not understand?” Jesus asked. “Do you not yet realize that whatever enters the mouth goes into the stomach and then is eliminated? But the things that come out of the mouth come from the heart, and these things de- For out of the heart come evil file a man. thoughts, murder, adultery, sexual immorality, d 4 That is, between three and six in the morning he need not honor his father or mother . blind guides of the blind h 14 NE and TR (see also" + }, + { + "verseNum": 10, + "text": "–21 ; 1 Corinthians 5:1–8) 5 My son, pay attention to my wisdom; incline your ear to my insight, that you may maintain discretion b 2 3 and your lips may preserve knowledge. Though the lips of the forbidden woman c drip honey and her speech is smoother than oil, 4 5 in the end she is bitter as wormwood, sharp as a double-edged sword. d Her feet go down to death; 6 her steps lead straight to Sheol. She does not consider the path of life; 7 she does not know that her ways are unstable. So now, my sons, listen to me, 8 and do not turn aside from the words of my mouth. 9 Keep your path far from her; do not go near the door of her house, 10 lest you concede your vigor to others, and your years to one who is cruel; lest strangers feast on your wealth, 11 and your labors enrich the house of a foreigner. 12 At the end of your life you will groan when your flesh and your body are spent, 13 and you will say, “How I hated discipline, and my heart despised reproof! 14 I did not listen to the voice of my teachers or incline my ear to my mentors. I am on the brink of utter ruin 15 in the midst of the whole assembly.” 16 Drink water from your own cistern, and running water from your own well. Why should your springs flow in the streets, 17 your streams of water in the public squares? Let them be yours alone, 18 never to be shared with strangers. May your fountain be blessed, A loving doe, a graceful fawn— e may her breasts satisfy you always; may you be captivated by her love 20 forever. f" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 6, + "text": "| 115 exposing one’s own kin; both shall bear their 20 iniquity. If a man lies with his uncle’s wife, he has un- covered the nakedness of his uncle. They will 21 bear their sin; they shall die childless. If a man marries his brother’s wife, it is an act of impurity. He has uncovered the nakedness of Distinguish between Clean and Unclean his brother; they shall be childless. 22 23 You are therefore to keep all My statutes and ordinances, so that the land where I am bringing You must not you to live will not vomit you out. follow the statutes of the nations I am driving out before you. Because they did all these things, I 24 abhorred them. But I have told you that you will inherit their land, since I will give it to you as an inheritance— a land flowing with milk and honey. I am the LORD your God, who has set you apart from the 25 peoples. You are therefore to distinguish between clean and unclean animals and birds. Do not become contaminated by any animal or bird, or by any- thing that crawls on the ground; I have set these You are to be holy to apart as unclean for you. Me because I, the LORD, am holy, and I have set 27 you apart from the nations to be My own. 26 A man or a woman who is a medium or spiritist must surely be put to death. They shall be stoned; Holiness Required of Priests their blood is upon them.’ ” 21 2 Then the LORD said to Moses, “Speak to Aaron’s sons, the priests, and tell them that a priest is not to defile himself for a dead except for his imme- person" + }, + { + "verseNum": 7, + "text": "7 A priest must not marry a woman defiled by 8 prostitution or divorced by her husband, for the You are to regard him priest is holy to his God. as holy, since he presents the food of your God. He shall be holy to you, because I the LORD If a priest’s am holy—I who set you apart. daughter defiles herself by prostituting herself, she profanes her father; she must be burned in 10 the fire. 9 a 11 The priest who is highest among his brothers, who has had the anointing oil poured on his head and has been ordained to wear the priestly gar- or tear ments, must not let his hair hang loose He must not go near any dead his garments. body; he must not defile himself, even for his fa- He must not leave or desecrate ther or mother. the sanctuary of his God, for the consecration of the anointing oil of his God is on him. I am the 13 LORD. 14 12 15 The woman he marries must be a virgin. He is not to marry a widow, a divorced woman, or one defiled by prostitution. He is to marry a vir- so that he does not gin from his own people, defile his offspring among his people, for I am the Restrictions against Those with Blemishes LORD who sanctifies him.” 16 17 Then the LORD said to Moses, “Say to Aaron, ‘For the generations to come, none of your de- scendants who has a physical defect may ap- 18 proach to offer the food of his God. 19 No man who has any defect may approach— no man who is blind, lame, disfigured, or de- 20 no man who has a broken foot or formed; hand, or who is a hunchback or dwarf" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 14, + "text": "| 117 17 18 Then the LORD said to Moses, “Speak to Aaron and his sons and all the Israelites and tell them, ‘Any man of the house of Israel or any foreign resident who presents a gift for a burnt 19 offering to the LORD, whether to fulfill a vow or must offer an unblem- as a freewill offering, ished male from the cattle, sheep, or goats in You order for it to be accepted on your behalf. must not present anything with a defect, because 21 it will not be accepted on your behalf. 20 When a man presents a peace offering to the LORD from the herd or flock to fulfill a vow or as 22 a freewill offering, it must be without blemish or You are not to present defect to be acceptable. to the LORD any animal that is blind, injured, or maimed, or anything with a running sore, a fes- tering rash, or a scab; you must not put any of a 23 these on the altar as a food offering to the LORD. 24 You may present as a freewill offering an ox or sheep that has a deformed or stunted limb, but You it is not acceptable in fulfillment of a vow. are not to present to the LORD an animal whose testicles are bruised, crushed, torn, or cut; you are not to sacrifice them in your land. Neither you nor a foreigner shall present food to your God from any such animal. They will not be accepted on your behalf, because they are de- b 26 formed and flawed.’ ” 25 27 Then the LORD said to Moses, “When an ox, 28 a sheep, or a goat is born, it must remain with its mother for seven days. From the eighth day on, it c will" + }, + { + "verseNum": 15, + "text": "The Feast of Weeks" + }, + { + "verseNum": 23, + "text": "–25) ished. 29 “On the first day of the seventh month, you are to hold a sacred assembly, and you must not do any regular work. This will be a 2 day for you to sound the trumpets. 8 each lamb shall be a quarter hin. Pour out the of- fering of fermented drink to the LORD in the And offer the second lamb at sanctuary area. twilight, with the same grain offering and drink offering as in the morning. It is a food offering, a The Sabbath Offerings pleasing aroma to the LORD. 9 On the Sabbath day, present two unblemished a year-old male lambs, accompanied by a grain of- fering of two-tenths of an ephah of fine flour 10 mixed with oil, as well as a drink offering. This is the burnt offering for every Sabbath, in addition to the regular burnt offering and its The Monthly Offerings drink offering. 11 12 At the beginning of every month, you are to present to the LORD a burnt offering of two young bulls, one ram, and seven male lambs a b along with three- year old, all unblemished, mixed with oil as tenths of an ephah of fine flour a grain offering with each bull, two-tenths of an ephah of fine flour mixed with oil as a grain offer- and a tenth of an ephah of ing with the ram, fine flour mixed with oil as a grain offering with each lamb. This is a burnt offering, a pleasing 14 aroma, a food offering to the LORD. 13 d c with each bull, a third of a hin Their drink offerings shall be half a hin of with the wine ram, and a quarter hin with each lamb. This is the monthly burnt offering to b" + }, + { + "verseNum": 26, + "text": "–32 ;" + }, + { + "verseNum": 33, + "text": "–36. f 9 ; see 1 Kings 7:46. Or is a variant of not from outside The That is, the Feast of Tabernacles Some Hebrew manuscripts and LXX g 10 e 9 Or Literally That is, Mount Sinai, or possibly a mountain in the range containing Mount Sinai ; see 1 Kings 8:8. 406 | 2 Chronicles 6:1 Solomon Blesses the LORD (1 Kings 8:12–21) 6 Then Solomon declared: 2 “The LORD has said that He would dwell in the thick cloud. 3 But I have built You an exalted house, a place for You to dwell forever.” And as the whole assembly of Israel stood there, 4 the king turned around and blessed them all and said: 5 “Blessed be the LORD, the God of Israel, who has fulfilled with His own hand what He spoke with His mouth to my father David, ‘Since the day I brought My people saying, out of the land of Egypt, I have not chosen a city from any tribe of Israel in which to build a house so that My Name would be there, nor have I chosen anyone to be ruler over My But now I have chosen Jeru- people Israel. salem for My Name to be there, and I have 7 chosen David to be over My people Israel.’ 6 8 Now it was in the heart of my father David to build a house for the Name of the LORD, But the LORD said to my the God of Israel. father David, ‘Since it was in your heart to build a house for My Name, you have done Neverthe- well to have this in your heart. less, you are not the one to build it; but your son, your own offspring, will build the house 10 for My Name.’ 9 Now the LORD has fulfilled the word that He spoke. I ha" + }, + { + "verseNum": 34, + "text": ". See 2 Kings 23:16. 3 15 1 Kings 13:28 | 325 That day the man of God gave a sign, saying, “The LORD has spoken this sign: ‘Surely the altar will be split apart, and the ashes upon it will 4 be poured out.’ ” 5 Now when King Jeroboam, who was at the altar in Bethel, heard the word that the man of God had cried out against it, he stretched out his hand and said, “Seize him!” But the hand he stretched out toward him withered, so that he could not And the altar was split apart, and pull it back. the ashes poured out, according to the sign that the man of God had given by the word of the 6 LORD. So the prophet said to the man of God, “Come 16 home with me and eat some bread.” 17 But the man replied, “I cannot go home with you, and I will not eat bread or drink water with For I have been told by the you in this place. word of the LORD: ‘You must not eat bread or drink water there or return by the way you 18 came.’ ” Then the prophet replied, “I too am a prophet like you, and an angel spoke to me by the word of the LORD, saying, ‘Bring him back with you to your house, so that he may eat bread and drink water.’ ” 19 Then the king responded to the man of God, “In- tercede with the LORD your God and pray for me that my hand may be restored.” The old prophet was lying to him, but the man of God went back with him, ate bread in his 20 house, and drank water. So the man of God interceded with the LORD, and the king’s hand was restored to him as it was 7 before. Then the king said to the" + }, + { + "verseNum": 37, + "text": "–40. Or Jeshua or Or ; literally 1,000 gold drachmas Or shelters 2,200 silver minas translating it , a variant of Hebrew oil tree ; that h 15 d 72 b 71 g 15 i 17 or Or Or 17 i 18 10" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "–4) of the courtyard, shall be made of bronze. 20 And you are to command the Israelites to bring you pure oil of pressed olives for the light, to 21 keep the lamps burning continually. j In the Tent of Meeting, outside the veil that is in front of the Testimony, Aaron and his sons are to tend the lamps before the LORD from evening until morning. This is to be a permanent statute for the Israelites for the generations to come. the Holy of Holies c 1 That is, ; also in verse 34 Or e 12 50 cubits f 14 15 cubits h 18 i 18 5 cubits mately 7.5 feet in length and width, and 4.5 feet high (2.3 meters in length and width, and 1.4 meters high). is approximately 150 feet or 45.7 meters; also in verse 11. verse 13. or 9.1 meters. wide). the covenant inscribed with the Ten Commandments. j 21 The Testimony The courtyard was approximately 150 feet long and 75 feet wide (45.7 meters long and 22.9 meters refers to the stone tablets in the ark of is approximately 7.5 feet or 2.3 meters. is approximately 75 feet or 22.9 meters; also in is approximately 30 feet is approximately 22.5 feet or 6.9 meters; also in verse 15. ; also in verse 34 g 16 20 cubits d 9 100 cubits The altar was approxi- Garments for the Priests 17" + }, + { + "verseNum": 5, + "text": "–9) 23 g 24 You are also to make a table of acacia wood two cubits long, a cubit wide, and a cubit and a Overlay it with pure gold and make half high. h a gold molding around it. And make a rim and put a gold around it a handbreadth wide 26 molding on the rim. 25 27 Make four gold rings for the table and fasten them to the four corners at its four legs. The 28 rings are to be close to the rim, to serve as hold- Make ers for the poles used to carry the table. the poles of acacia wood and overlay them with 29 gold, so that the table may be carried with them. You are also to make the plates and dishes, as well as the pitchers and bowls for pouring drink 30 offerings. Make them out of pure gold. And place the Bread of the Presence on the ta- The Lampstand ble before Me at all times." + }, + { + "verseNum": 17, + "text": "–23 ;" + }, + { + "verseNum": 20, + "text": ";" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "–7 ;" + }, + { + "verseNum": 7, + "text": "| 119 heard him lay their hands on his head; then have 15 the whole assembly stone him. 16 And you are to tell the Israelites, ‘If anyone curses his God, he shall bear the consequences of his sin. Whoever blasphemes the name of the LORD must surely be put to death; the whole as- sembly must surely stone him, whether he is a foreign resident or native; if he blasphemes the An Eye for an Eye" + }, + { + "verseNum": 8, + "text": "The Year of Jubilee 8 9 And you shall count off seven Sabbaths of years—seven times seven years—so that the seven Sabbaths of years amount to forty-nine years. Then you are to sound the horn far and wide on the tenth day of the seventh month, the Day of Atonement. You shall sound it throughout 10 your land. So you are to consecrate the fiftieth year and proclaim liberty in the land for all its inhabitants. It shall be your Jubilee, when each of you is to re- 11 turn to his property and to his clan. 12 The fiftieth year will be a Jubilee for you; you are not to sow the land or reap its aftergrowth or For it is a Jubilee; harvest the untended vines. it shall be holy to you. You may eat only the crops Return of Property taken directly from the field. 13 In this Year of Jubilee, each of you shall return 14 to his own property. 15 If you make a sale to your neighbor or a pur- chase from him, you must not take advantage of each other. You are to buy from your neighbor according to the number of years since the last Jubilee; he is to sell to you according to the num- ber of harvest years remaining. You shall increase the price in proportion to a greater number of years, or decrease it in proportion to a lesser number of years; for he is selling you a 17 given number of harvests. 16 Do not take advantage of each other, but fear The Blessing of Obedience (De. 28:1–14) your God; for I am the LORD your God. 18 19 You are to keep My statutes and carefully ob- serve My judgments, so that" + }, + { + "verseNum": 25, + "text": "–55. Ruth’s Redemption Assured 14" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 14, + "text": "–39 ;" + }, + { + "verseNum": 19, + "text": "| 121 Then he work for you until the Year of Jubilee. and his children are to be released, and he may return to his clan and to the property of his 42 fathers. 43 Because the Israelites are My servants, whom I brought out of the land of Egypt, they are not to be sold as slaves. You are not to rule over them 44 harshly, but you shall fear your God. 45 Your menservants and maidservants shall come from the nations around you, from whom you may purchase them. You may also pur- chase them from the foreigners residing among you or their clans living among you who are born 46 in your land. These may become your property. You may leave them to your sons after you to inherit as property; you can make them slaves for life. But as for your brothers, the Israelites, no Redemption of Servants man may rule harshly over his brother. 47 You must keep My Sabbaths and have rever- 3 ence for My sanctuary. I am the LORD. 4 If you follow My statutes and carefully keep My I will give you rains in their commandments, season, and the land will yield its produce, and Your the trees of the field will bear their fruit. threshing will continue until the grape harvest, and the grape harvest will continue until sowing time; you will have your fill of food to eat and will 6 dwell securely in your land. 5 7 And I will give peace to the land, and you will lie down with nothing to fear. I will rid the land of dangerous animals, and no sword will pass You will pursue your ene- through your land. 8 mies, and th" + }, + { + "verseNum": 20, + "text": "20 and your strength will be spent in vain. bronze, For your land will not yield its produce, and the 21 trees of the land will not bear their fruit. 22 If you walk in hostility toward Me and refuse to obey Me, I will multiply your plagues seven times, according to your sins. I will send wild animals against you to rob you of your children, destroy your livestock, and reduce your num- 23 bers, until your roads lie desolate. 24 25 And if in spite of these things you do not accept My discipline, but continue to walk in hos- tility toward Me, then I will act with hostility toward you, and I will strike you sevenfold for your sins. And I will bring a sword against you to execute the vengeance of the covenant. Though you withdraw into your cities, I will send a plague among you, and you will be delivered into the hand of the enemy. When I cut off your supply of bread, ten women will bake your bread in a single oven and dole out your bread by 27 weight, so that you will eat but not be satisfied. 26 a 28 But if in spite of all this you do not obey Me, but continue to walk in hostility toward Me, then I 29 will walk in fury against you, and I, even I, will 30 punish you sevenfold for your sins. You will eat the flesh of your own sons and daughters. I will destroy your high places, cut down your in- cense altars, and heap your lifeless bodies on the lifeless remains of your idols; and My soul will 31 despise you. 32 I will reduce your cities to rubble and lay waste your sanctuaries, a" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 16, + "text": "1 Kings 4:22" + }, + { + "verseNum": 34, + "text": "| 123 b male shall be twenty shekels, 6 ten shekels. and for the female c 7 Now if the person is from one month to five years of age, then your valuation for the male d and for the female shall be five shekels of silver, three shekels of silver. And if the person is e sixty years of age or older, then your valuation 8 shall be fifteen shekels for the male and ten But if the one making the shekels for the female. vow is too poor to pay the valuation, he is to pre- sent the person before the priest, who shall set the value according to what the one making the 9 vow can afford. f If he vows an animal that may be brought as an 10 offering to the LORD, any such animal given to He must not replace it the LORD shall be holy. or exchange it, either good for bad or bad for good. But if he does substitute one animal for an- other, both that animal and its substitute will be 11 holy. 12 But if the vow involves any of the unclean animals that may not be brought as an offering to the LORD, the animal must be presented before the priest. The priest shall set its value, whether high or low; as the priest values it, the price will be set. If, however, the owner de- cides to redeem the animal, he must add a fifth to 14 its value. 13 15 Now if a man consecrates his house as holy to the LORD, then the priest shall value it either as good or bad. The price will stand just as the priest values it. But if he who consecrated his house redeems it, he must add a fifth to the as- 16 sessed value, and" + } + ] + } + ] + }, + { + "name": "Numbers", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–4) Peor.” 26 2 After the plague had ended, the LORD said to Moses and Eleazar son of Aaron “Take a census of the whole congre- the priest, gation of Israel by the houses of their fathers— all those twenty years of age or older who can 3 serve in the army of Israel.” 4 So on the plains of Moab by the Jordan, across from Jericho, Moses and Eleazar the priest issued “Take a census of the men the instruction, twenty years of age or older, as the LORD has commanded Moses.” d And these were the Israelites who came out of The Tribe of Reuben the land of Egypt: 5 Reuben was the firstborn of Israel. These were the descendants of Reuben: The Hanochite clan from Hanoch, 6 the Palluite clan from Pallu, the Hezronite clan from Hezron, Or ; also v. 24 Hebrew Or is implied; see verse 2. Acacia Grove d 4 Take a census of the men and the Carmite clan from Carmi. 152 |" + }, + { + "verseNum": 14, + "text": "); most MT manuscripts 126 |" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 15, + "text": "| 125 Levites over the tabernacle of the Testimony, all its furnishings, and everything in it. They shall carry the tabernacle and all its articles, care for 51 it, and camp around it. Whenever the tabernacle is to move, the Le- vites are to take it down, and whenever it is to be pitched, the Levites are to set it up. Any outsider 52 who goes near it must be put to death. 53 The Israelites are to camp by their divisions, each man in his own camp and under his own But the Levites are to camp around standard. the tabernacle of the Testimony and watch over it, so that no wrath will fall on the congregation of Israel. So the Levites are responsible for the 54 tabernacle of the Testimony.” Thus the Israelites did everything just as the The Order of the Camps LORD had commanded Moses. 2 2 Then the LORD said to Moses and Aaron: “The Israelites are to camp around the Tent of Meeting at a distance from it, each man under 3 his standard, with the banners of his family. On the east side, toward the sunrise, the divi- sions of Judah are to camp under their standard: 4 The leader of the Judahites is Nahshon son of Amminadab, and his division numbers 5 74,600. 6 The tribe of Issachar will camp next to it. The leader of the Issacharites is Nethanel son of Zuar, and his division numbers 7 54,400. 8 Next will be the tribe of Zebulun. The leader and of the Zebulunites is Eliab son of Helon, 9 his division numbers 57,400. The total number of men in the divisions of the camp of Judah is 186,400;" + }, + { + "verseNum": 16, + "text": "16 2 The total number of men in the divisions of the camp of Reuben is 151,450; they shall set out second. 17 In the middle of the camps, the Tent of Meeting is to travel with the camp of the Levites. They are to set out in the order they encamped, each in his 18 own place under his standard. On the west side, the divisions of Ephraim are to camp under their standard: 19 The leader of the Ephraimites is Elishama and his division numbers son of Ammihud, 20 40,500. 21 The tribe of Manasseh will be next to it. The leader of the Manassites is Gamaliel son and his division numbers of Pedahzur, 22 32,200. 23 Next will be the tribe of Benjamin. The leader of the Benjamites is Abidan son of 24 and his division numbers 35,400. Gideoni, The total number of men in the divisions of the camp of Ephraim is 108,100; they shall set out third. On the north side, the divisions of Dan are to 25 camp under their standard: 26 The leader of the Danites is Ahiezer son of and his division numbers Ammishaddai, 27 62,700. The tribe of Asher will camp next to it. The 28 leader of the Asherites is Pagiel son of Ocran, 29 and his division numbers 41,500. Next will be the tribe of Naphtali. The leader of the Naphtalites is Ahira son of 31 Enan, and his division numbers 53,400. 30 32 The total number of men in the camp of Dan is 157,600; they shall set out last, under their standards.” These are the Israelites, numbered according to their families. The total of those counted in the camps, by their division" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–4) facedown. 10 a Now Aaron’s sons Nadab and Abihu took their censers, put fire in them and added fire before incense, and offered unauthorized So fire the LORD, contrary to His command. came out from the presence of the LORD and con- sumed them, and they died in the presence of the 3 LORD. 2 Then Moses said to Aaron, “This is what the LORD meant when He said: ‘To those who come near Me I will show My holiness, and in the sight of all the people I will reveal My glory.’ ” 4 But Aaron remained silent. b Moses summoned Mishael and Elzaphan, sons of Aaron’s uncle Uzziel, and said to them, “Come 5 here; carry the bodies of your cousins outside the So camp, away from the front of the sanctuary.” they came forward and carried them, still in their 6 tunics, outside the camp, as Moses had directed. c Then Moses said to Aaron and his sons Eleazar and Ithamar, “Do not let your hair become di- and do not tear your garments, or else sheveled you will die, and the LORD will be angry with the whole congregation. But your brothers, the whole house of Israel, may mourn on account You shall of the fire that the LORD has ignited. not go outside the entrance to the Tent of Meet- ing, or you will die, for the LORD’s anointing oil is on you.” Restrictions for Priests So they did as Moses instructed. 9 8 7 10 Then the LORD said to Aaron, “You and your sons are not to drink wine or strong drink when you enter the Tent of Meeting, or else you will die; this is a permanent statute for the genera- Yo" + }, + { + "verseNum": 21, + "text": "–26 ; 1 Chronicles 23:7–11) 21 22 23 And the LORD said to Moses, “Take a census of the Gershonites as well, by their families and from thirty to fifty years old, counting clans, everyone who comes to serve in the work at the 24 Tent of Meeting. 25 This is the service of the Gershonite clans re- They are to carry garding work and transport: the curtains of the tabernacle, the Tent of Meet- ing with the covering of fine leather over it, the 26 curtains for the entrance to the Tent of Meeting, the curtains of the courtyard, and the curtains for the entrance at the gate of the courtyard that surrounds the tabernacle and altar, along with their ropes and all the equipment for their ser- vice. The Gershonites will do all that needs to be 27 done with these items. 28 All the service of the Gershonites—all their transport duties and other work—is to be done at the direction of Aaron and his sons; you are to assign to them all that they are responsible to This is the service of the Gershonite carry. clans at the Tent of Meeting, and their duties shall be under the direction of Ithamar son of Aa- The Duties of the Merarites ron the priest." + }, + { + "verseNum": 27, + "text": "–32 ; 1 Chronicles 23:12–20) 51 4 2 Then the LORD said to Moses and Aaron, “Take a census of the Kohathites among the men from Levites by their clans and families, thirty to fifty years old—everyone who is quali- fied to serve in the work at the Tent of Meeting. b 30 Elizaphan Elzaphan 3 d 47 20 gerahs ; see the total in verse 39. e 50 1,365 shekels is approximately 2 ounces or 57 grams. is a variant of ; see Exodus is equivalent to one is approximately 34.3 pounds or 15.6 kilograms. 128 |" + }, + { + "verseNum": 30, + "text": ". stiffened d 13 strengthened is a variant of e 14 nachash ; see 1 Chr. 6:23 and heavy stubborn in" + }, + { + "verseNum": 33, + "text": "–37 ; 1 Chronicles 23:21–23) 29 30 As for the sons of Merari, you are to number from thirty to them by their clans and families, fifty years old, counting everyone who comes to 31 serve in the work of the Tent of Meeting. 32 This is the duty for all their service at the Tent of Meeting: to carry the frames of the tabernacle with its crossbars, posts, and bases, and the posts of the surrounding courtyard with their ba- ses, tent pegs, and ropes, including all their equipment and everything related to their use. You shall assign by name the items that they are 33 responsible to carry. This is the service of the Merarite clans accord- ing to all their work at the Tent of Meeting, under the direction of Ithamar son of Aaron the priest.” Possibly the hides of large aquatic mammals; also in verses 8, 10, 11, 12, 14, and 25; The Numbering of the Levite Clans Confession and Restitution" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "–20) 12 The sons of Kohath: Amram, Izhar, Heb- 13 ron, and Uzziel—four in all. 14 The sons of Amram: Aaron and Moses. Aaron and his descendants were set apart forever to consecrate the most holy things, to burn incense before the LORD, to minister before Him, and to pronounce blessings in As for Moses the man of His name forever. God, his sons were named among the tribe of 15 Levi. 16 The sons of Moses: Gershom and Eliezer. The descendants of Gershom: Shebuel was 17 the first. The descendants of Eliezer: Rehabiah was the first. Eliezer did not have any other sons, but the sons of Rehabiah were very 18 numerous. 19 The sons of Izhar: Shelomith was the first. The sons of Hebron: Jeriah was the first, Amariah the second, Jahaziel the third, and 20 Jekameam the fourth. The sons of Uzziel: Micah was the first and Isshiah the second. b 14 1,000,000 talents said David, d 7 Ladan Libni is approximately 3,770 tons or 3,420 metric tons of gold. Jehieli c 4 e 8 Jehiel Hebrew does not include g 10 is a variant of ; see 1 Chronicles 26:21. is approximately f 10 Shimei is a variant of ; also was possibly Most Hebrew manuscripts; one Hebrew manuscript, LXX, and Vul- 37,700 tons or 34,200 metric tons of silver. in verses 8 and 9; see 1 Chronicles 6:17. a son or grandson of the gate (see also verse 11) Shimei Zizah listed in verse 9. The Merarites" + }, + { + "verseNum": 3, + "text": "| 127 From Gershon came the Libnite clan and the 22 Shimeite clan; these were the Gershonite clans. The number of all the males a month old or 23 more was 7,500. 24 The Gershonite clans were to camp on the west, behind the tabernacle, and the leader of the families of the Gershonites was Eliasaph son 25 of Lael. 26 The duties of the Gershonites at the Tent of Meeting were the tabernacle and tent, its cover- ing, the curtain for the entrance to the Tent of Meeting, the curtains of the courtyard, the cur- tain for the entrance to the courtyard that sur- rounds the tabernacle and altar, and the cords— The Kohathites (Num. 4:1–20 ; 1 Chr. 23:12–20) all the service for these items. 27 a From Kohath came the clans of the Amramites, the Izharites, the Hebronites, and the Uzzielites; The these were the clans of the Kohathites. number of all the males a month old or more was They were responsible for the duties of 8,600. 29 the sanctuary. 28 30 The clans of the Kohathites were to camp on b and the leader the south side of the tabernacle, of the families of the Kohathites was Elizaphan 31 son of Uzziel. Their duties were the ark, the table, the lampstand, the altars, the articles of the sanctu- ary used with them, and the curtain—all the ser- 32 vice for these items. The chief of the leaders of the Levites was Eleazar son of Aaron the priest; he oversaw those The Merarites (Num. 4:29–33 ; 1 Chr. 23:21–23) responsible for the duties of the sanctuary. 33 From Merari came the clans of the" + }, + { + "verseNum": 4, + "text": "4 5 This service of the Kohathites at the Tent of When- Meeting regards the most holy things. ever the camp sets out, Aaron and his sons are to go in, take down the veil of the curtain, and cover They are to the ark of the Testimony place over this a covering of fine leather, spread 7 a solid blue cloth over it, and insert its poles. with it. 6 a b 8 Over the table of the Presence they are to spread a blue cloth and place the plates and cups on it, along with the bowls and pitchers for the drink offering. The regular bread offering is to And they shall spread a scarlet remain on it. cloth over them, cover them with fine leather, 9 and insert the poles. They are to take a blue cloth and cover the lampstand used for light, together with its lamps, 10 wick trimmers, and trays, as well as the jars of oil Then they shall wrap with which to supply it. it and all its utensils inside a covering of fine 11 leather and put it on the carrying frame. 12 Over the gold altar they are to spread a blue cloth, cover it with fine leather, and insert They are to take all the utensils for the poles. serving in the sanctuary, place them in a blue cloth, cover them with fine leather, and put them 13 on the carrying frame. 14 Then they shall remove the ashes from the bronze altar, spread a purple cloth over it, and place on it all the vessels used to serve there: the firepans, meat forks, shovels, and sprinkling bowls—all the equipment of the altar. They are to spread over it a covering of fine lea" + }, + { + "verseNum": 21, + "text": "–28) Gershon, Kohath, and Merari. 7 d 8 The Gershonites: Ladan e and Shimei. The sons of Ladan: Jehiel 9 and Joel—three in all. the first, Zetham, The sons of Shimei: Shelomoth, Haziel, and Haran—three in all. These were the heads of g 10 the families of Ladan. f Jahath, Zina, And the sons of Shimei: 11 Jeush, and Beriah. These were the sons of Jahath was the first Shimei—four in all. and Zizah was the second; but Jeush and Be- riah did not have many sons, so they were counted as one family and received a single The Kohathites assignment." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–4) 13 2 Then the LORD said to Moses and Aaron, “When someone has a swelling or rash or bright spot on his skin that may be an infec- tious skin disease, he must be brought to Aaron 3 the priest or to one of his sons who is a priest. a The priest is to examine the infection on his skin, and if the hair in the infection has turned white and the sore appears to be deeper than the skin, it is a skin disease. After the priest examines 4 him, he must pronounce him unclean. 5 If, however, the spot on his skin is white and does not appear to be deeper than the skin, and the hair in it has not turned white, the priest shall isolate the infected person for seven days. On the seventh day the priest is to reexamine him, and if he sees that the infection is unchanged and has not spread on the skin, the priest must isolate him for another seven days. The priest will ex- amine him again on the seventh day, and if the sore has faded and has not spread on the skin, the priest shall pronounce him clean; it is a rash. 7 The person must wash his clothes and be clean. 6 But if the rash spreads further on his skin after he has shown himself to the priest for his cleans- 8 ing, he must present himself again to the priest. The priest will reexamine him, and if the rash has spread on the skin, the priest must pro- 9 nounce him unclean; it is a skin disease. 10 When anyone develops a skin disease, he must The priest will exam- be brought to the priest. ine him, and if there is a white swelling on the" + }, + { + "verseNum": 5, + "text": "–10) 18" + }, + { + "verseNum": 19, + "text": "| 129 35 So Moses, Aaron, and the leaders of the congre- gation numbered the Kohathites by their clans everyone from thirty to fifty and families, 36 years old who came to serve in the work at the 37 And those numbered by their Tent of Meeting. These were counted from clans totaled 2,750. the Kohathite clans, everyone who could serve at the Tent of Meeting. Moses and Aaron numbered them according to the command of the LORD 38 through Moses. 39 Then the Gershonites were numbered by their clans and families, everyone from thirty to fifty 40 years old who came to serve in the work at the 41 And those numbered by their Tent of Meeting. These were clans and families totaled 2,630. counted from the Gershonite clans who served at the Tent of Meeting, whom Moses and Aaron 42 counted at the LORD’s command. 43 And the Merarites were numbered by their everyone from thirty to fifty clans and families, 44 years old who came to serve in the work at the The men registered by their Tent of Meeting. clans numbered 3,200. These were counted from the Merarite clans, whom Moses and Aaron numbered at the LORD’s command through 46 Moses. 45 48 47 So Moses, Aaron, and the leaders of Israel numbered by their clans and families all the Le- from thirty to fifty years old who came to vites do the work of serving and carrying the Tent of 49 And the number of men was 8,580. Meeting. At the LORD’s command through Moses they were numbered, and each one was assigned his work and burden, as the LORD had comm" + }, + { + "verseNum": 20, + "text": "20 not gone astray and become defiled while under your husband’s authority, may you be immune to But if you this bitter water that brings a curse. have gone astray while under your husband’s authority and have defiled yourself and lain 21 carnally with a man other than your husband’— and the priest shall have the woman swear un- der the oath of the curse—‘then may the LORD make you an attested curse among your people by making your thigh shrivel and your belly May this water that brings a curse enter swell. your stomach and cause your belly to swell and your thigh to shrivel.’ 23 Then the woman is to say, ‘Amen, Amen.’ 22 25 And the priest shall write these curses on a 24 scroll and wash them off into the bitter water. He is to have the woman drink the bitter water that brings a curse, and it will enter her and may The priest shall take cause her bitter suffering. from her hand the grain offering for jealousy, 26 wave it before the LORD, and bring it to the altar. Then the priest is to take a handful of the grain offering as a memorial portion and burn it on the altar; after that he is to have the woman drink the 27 water. When he has made her drink the water, if she has defiled herself and been unfaithful to her husband, then the water that brings a curse will enter her and cause bitter suffering; her belly will swell, her thigh will shrivel, and she will be- But if the come accursed among her people. woman has not defiled herself and is clean, she 29 will be unaffected and" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–21) Amalekites. 13 Again the Israelites did evil in the sight of the LORD, so He delivered them into the 2 hand of the Philistines for forty years. Now there was a man from Zorah named Manoah, from the clan of the Danites, whose wife of was barren and had no children. the LORD appeared to the woman and said to The angel 3 b LXX Or ; here and throughout chapter 13; corresponding pronouns may also be capitalized. 4 her, “It is true that you are barren and have no children; but you will conceive and give birth to Now please be careful not to drink wine a son. 5 or strong drink, and not to eat anything unclean. For behold, you will conceive and give birth to a a son. And no razor shall touch his head, because to God from the womb, the boy will be a Nazirite and he will begin the deliverance of Israel from 6 the hand of the Philistines.” 7 So the woman went and told her husband, “A man of God came to me. His appearance was like the angel of God, exceedingly awesome. I did not ask him where he came from, and he did not tell me his name. But he said to me, ‘Behold, you will conceive and give birth to a son. Now, therefore, do not drink wine or strong drink, and do not eat anything unclean, because the boy will be a Nazirite to God from the womb until the day of 8 his death.’ ” Then Manoah prayed to the LORD, “Please, O Lord, let the man of God You sent us come to us again to teach us how to raise the boy who is to 9 be born.” 10 And God listened to the voice of Manoah, and the ange" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 28, + "text": "| 131 8 and he gave the Merarites four carts and eight oxen, as their service required, all under the di- But rection of Ithamar son of Aaron the priest. he did not give any to the Kohathites, since they were to carry on their shoulders the holy objects 10 for which they were responsible. 9 11 When the altar was anointed, the leaders ap- proached with their offerings for its dedication and presented them before the altar. And the LORD said to Moses, “Each day one leader is to present his offering for the dedication of the 12 altar.” a 14 13 On the first day Nahshon son of Amminadab from the tribe of Judah drew near with his offer- ing. His offering was one silver platter weigh- b ing a hundred and thirty shekels, and one silver bowl weighing seventy shekels, both according to the sanctuary shekel and filled with fine flour mixed with oil for a grain offering; one gold 15 dish weighing ten shekels, filled with incense; 16 one young bull, one ram, and one male lamb a 17 one male goat for year old for a burnt offering; and a peace offering of two oxen, a sin offering; five rams, five male goats, and five male lambs a year old. This was the offering of Nahshon son of 18 Amminadab. c 19 20 On the second day Nethanel son of Zuar, the The offering he leader of Issachar, drew near. presented was one silver platter weighing a hun- dred and thirty shekels, and one silver bowl weighing seventy shekels, both according to the sanctuary shekel and filled with fine flour mixed one gold dish" + }, + { + "verseNum": 29, + "text": "29 and a peace offering of two oxen, five rams, five male goats, and five male lambs a year old. 30 This was the offering of Eliab son of Helon. 31 32 On the fourth day Elizur son of Shedeur, the His offer- leader of the Reubenites, drew near. ing was one silver platter weighing a hundred and thirty shekels, and one silver bowl weighing seventy shekels, both according to the sanctuary shekel and filled with fine flour mixed with oil for one gold dish weighing ten a grain offering; one young bull, shekels, filled with incense; one ram, and one male lamb a year old for a burnt 35 one male goat for a sin offering; offering; and a peace offering of two oxen, five rams, five male goats, and five male lambs a year old. 36 This was the offering of Elizur son of Shedeur. 33 34 37 38 On the fifth day Shelumiel son of Zurishaddai, the leader of the Simeonites, drew near. His of- fering was one silver platter weighing a hundred and thirty shekels, and one silver bowl weighing seventy shekels, both according to the sanctuary shekel and filled with fine flour mixed with oil for a grain offering; one gold dish weighing ten shekels, filled with incense; one young bull, one ram, and one male lamb a year old for a burnt 41 offering; one male goat for a sin offering; and a peace offering of two oxen, five rams, five male goats, and five male lambs a year old. This was the offering of Shelumiel son of Zur- 42 ishaddai. 39 40 43 44 On the sixth day Eliasaph son of Deuel, the leader of the Gadite" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "–4) 31 Then you are to make a lampstand of pure, hammered gold. It shall be made of one piece, in- cluding its base and shaft, its cups, and its buds 32 and petals. 33 Six branches are to extend from the sides of the lampstand—three on one side and three on There are to be three cups shaped the other. like almond blossoms on the first branch, each with buds and petals, three on the next branch, and the same for all six branches that extend from the lampstand. c 16 The Testimony Possibly the hides of large aquatic mammals The ark was approximately 3.75 feet long, 2.25 feet wide, and 2.25 feet high (114.3 centimeters long, 68.6 centimeters wide, and 68.6 centimeters high). atonement cover stone tablets in the ark of the covenant inscribed with the Ten Commandments; also in verses 21 and 22. e 17 the ark of the covenant g 23 f 22 ; here and throughout Exodus The mercy seat was approximately 3.75 feet long and 2.25 feet wide h 25 A handbreadth (114.3 centimeters long and 68.6 centimeters wide). The table was approxi- mately 3 feet long, 1.5 feet wide, and 2.25 feet high (91.4 centimeters long, 45.7 centimeters wide, and 68.6 centimeters high). is approximately 2.9 inches or 7.4 centimeters. That is, an d 17 refers to the Or 34 10" + }, + { + "verseNum": 16, + "text": ") The Gershonites (Num. 4:21-28 ; 1 Chr. 23:7-11) Moses and Aaron 21 38" + }, + { + "verseNum": 17, + "text": "| 133 The Lampstand" + }, + { + "verseNum": 18, + "text": "18 19 day I struck down all the firstborn in the land of But I have taken the Levites in place of Egypt. And all the firstborn among the sons of Israel. I have given the Levites as a gift to Aaron and his sons from among the Israelites, to perform the service for the Israelites at the Tent of Meeting and to make atonement on their behalf, so that no plague will come against the Israelites when 20 they approach the sanctuary.” So Moses, Aaron, and the whole congregation of Israel did with the Levites everything that the 21 LORD had commanded Moses they should do. The Levites purified themselves and washed their clothes, and Aaron presented them as a wave offering before the LORD. Aaron also made After atonement for them to cleanse them. that, the Levites came to perform their service at the Tent of Meeting in the presence of Aaron and his sons. Thus they did with the Levites just as Retirement for Levites the LORD had commanded Moses. 23 24 22 25 And the LORD said to Moses, “This applies to the Levites: Men twenty-five years of age or older shall enter to perform the service in the work at But at the age of fifty, they the Tent of Meeting. must retire from performing the work and no 26 longer serve. After that, they may assist their brothers in ful- filling their duties at the Tent of Meeting, but they themselves are not to do the work. This is how you are to assign responsibilities to the Le- The Second Passover" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "–14) 12 2 Now the LORD said to Moses and Aaron in the land of Egypt, “This month is the beginning of months for you; it shall be the first 3 month of your year. a 4 Tell the whole congregation of Israel that on the tenth day of this month each man must select a lamb If the for his family, one per household. household is too small for a whole lamb, they are to share with the nearest neighbor based on the number of people, and apportion the lamb 5 accordingly. 6 Your lamb must be an unblemished year-old male, and you may take it from the sheep or the You must keep it until the fourteenth day goats. of the month, when the whole assembly of the congregation of Israel will slaughter the animals They are to take some of the blood at twilight. and put it on the sides and tops of the door- 8 of the houses where they eat the lambs. frames 7 b c They are to eat the meat that night, roasted over the fire, along with unleavened bread and bitter 9 herbs. 10 Do not eat any of the meat raw or cooked in boiling water, but only roasted over the fire—its head and legs and inner parts. Do not leave any of it until morning; before the morning you must 11 burn up any part that is left over. d This is how you are to eat it: You must be fully dressed for travel, with your sandals on your feet and your staff in your hand. You are to eat in 12 haste; it is the LORD’s Passover. On that night I will pass through the land of Egypt and strike down every firstborn male, both man and beast, and I will exec" + }, + { + "verseNum": 9, + "text": "–12. 428 | 2 Chronicles 30:7 7 Do not be like your fathers and Assyria. brothers who were unfaithful to the LORD, the God of their fathers, so that He made 8 them an object of horror, as you can see. 9 Now do not stiffen your necks as your fa- thers did. Submit to the LORD and come to His sanctuary, which He has consecrated for- ever. Serve the LORD your God, so that His fierce anger will turn away from you. For if you return to the LORD, your brothers and sons will receive mercy in the presence of their captors and will return to this land. For the LORD your God is gracious and merciful; He will not turn His face away from you if you return to Him.” 10 12 11 And the couriers traveled from city to city through the land of Ephraim and Manasseh as far as Zebulun, but the people scorned and mocked them. Nevertheless, some from Asher, Manas- seh, and Zebulun humbled themselves and came to Jerusalem. Moreover, the power of God was on the people in Judah to give them one heart to obey the command of the king and his officials Hezekiah Celebrates the Passover according to the word of the LORD. 13 a 15 14 In the second month, a very great assembly gathered in Jerusalem to celebrate the Feast of Unleavened Bread. They proceeded to re- move the altars in Jerusalem and to take away the incense altars and throw them into the Ki- dron Valley. And on the fourteenth day of the second month they slaughtered the Passover lamb. The priests and Levites were ashamed, and they consecrated themsel" + }, + { + "verseNum": 12, + "text": ". f 16 that is, approximately 34 kilograms in Aramaic Literally d 1 Now on the first of the Sabbaths, early," + }, + { + "verseNum": 15, + "text": "–23) 25 He also placed the lampstand in the Tent of Meeting opposite the table on the south side of the tabernacle and set up the lamps before the 26 LORD, just as the LORD had commanded him. 27 29 Moses placed the gold altar in the Tent of Meeting, in front of the veil, and he burned fra- 28 grant incense on it, just as the LORD had com- manded him. Then he put up the curtain at the entrance to the tabernacle. He placed the altar of burnt offering near the entrance to the taber- nacle, the Tent of Meeting, and offered on it the burnt offering and the grain offering, just as the 30 LORD had commanded him. He placed the basin between the Tent of Meet- ing and the altar and put water in it for washing; 34 Then the cloud covered the Tent of Meeting, 35 and the glory of the LORD filled the tabernacle. Moses was unable to enter the Tent of Meeting because the cloud had settled on it, and the glory 36 of the LORD filled the tabernacle. 37 Whenever the cloud was lifted from above the tabernacle, the Israelites would set out through If the cloud was all the stages of their journey. 38 not lifted, they would not set out until the day it For the cloud of the LORD was was taken up. over the tabernacle by day, and fire was in the cloud by night, in the sight of all the house of Is- rael through all their journeys. Leviticus Laws for Burnt Offerings" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 33, + "text": "| 135 13 They set out this first the Wilderness of Paran. time according to the LORD’s command through 14 Moses. 15 16 First, the divisions of the camp of Judah set out their standard, with Nahshon son under Nethanel son of of Amminadab in command. Zuar was over the division of the tribe of Issa- 17 and Eliab son of Helon was over the char, division of the tribe of Zebulun. Then the tab- ernacle was taken down, and the Gershonites 18 and the Merarites set out, transporting it. 20 Then the divisions of the camp of Reuben 19 set out under their standard, with Elizur son of Shedeur in command. Shelumiel son of Zur- ishaddai was over the division of the tribe of Simeon, and Eliasaph son of Deuel was over the division of the tribe of Gad. Then the Koha- thites set out, transporting the holy objects; the 22 tabernacle was to be set up before their arrival. 21 24 Next, the divisions of the camp of Ephraim set 23 out under their standard, with Elishama son of Gamaliel son of Pedah- Ammihud in command. zur was over the division of the tribe of Manas- seh, and Abidan son of Gideoni was over the 25 division of the tribe of Benjamin. 26 Finally, the divisions of the camp of Dan set out under their standard, serving as the rear guard for all units, with Ahiezer son of Ammishaddai in 27 Pagiel son of Ocran was over the command. and Ahira son division of the tribe of Asher, of Enan was over the division of the tribe of 28 Naphtali. This was the order of march for the Israelite 29 divisions" + }, + { + "verseNum": 34, + "text": "covenant of the LORD traveling ahead of them for 34 those three days to seek a resting place for them. And the cloud of the LORD was over them by 35 day when they set out from the camp. Whenever the ark set out, Moses would say, “Rise up, O LORD! May Your enemies be scattered; may those who hate You flee before You.” 36 And when it came to rest, he would say: “Return, O LORD, The Complaints of the People to the countless thousands of Israel.” 11 Soon the people began to complain about their hardship in the hearing of the LORD, and when He heard them, His anger was kindled, and fire from the LORD blazed among 2 them and consumed the outskirts of the camp. And the people cried out to Moses, and he So because the fire prayed to the LORD, and the fire died down. that place was called Taberah, 4 of the LORD had burned among them. 3 a Meanwhile, the rabble among them had a strong craving for other food, and again the Isra- 5 elites wept and said, “Who will feed us meat? We remember the fish we ate freely in Egypt, along with the cucumbers, melons, leeks, onions, and garlic. But now our appetite is gone; there 7 is nothing to see but this manna!” 6 8 Now the manna resembled coriander seed, and its appearance was like that of gum resin. The people walked around and gathered it, ground it on a handmill or crushed it in a mortar, then boiled it in a cooking pot or shaped it into cakes. It tasted like pastry baked with fine oil. When the dew fell on the camp at night, the manna The Comp" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 3, + "text": ". the Ten Words means from the wells of the Bene-jaakan e 6 ; see" + }, + { + "verseNum": 34, + "text": ". Hebrew Or 22 14 b" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 7, + "text": "NE, WH, BYZ, h 6 Or For Jesus has been counted worthy of greater glory than Moses, just as the builder of a house And has greater honor than the house itself. a 10 pitiation Or just as Moses in all His house pioneer f 2 founder b 12" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–33) things you were to do. 19 20 And just as the LORD our God had commanded us, we set out from Horeb and went toward the hill country of the Amorites, through all the vast and terrifying wilderness you have seen. When we reached Kadesh-barnea, I said: “You have 21 reached the hill country of the Amorites, which the LORD our God is giving us. See, the LORD your God has placed the land before you. Go up and take possession of it as the LORD, the God of your fathers, has told you. Do not be afraid or 22 discouraged.” Then all of you approached me and said, “Let us send men ahead of us to search out the land and bring us word of what route to follow and 23 which cities to enter.” 25 24 The plan seemed good to me, so I selected twelve men from among you, one from each tribe. They left and went up into the hill coun- try, and came to the Valley of Eshcol and spied out the land. They took some of the fruit of the land in their hands, carried it down to us, and brought us word: “It is a good land that the LORD our God is giving us.” b 5 That is, Mount Sinai, or possibly a mountain in the range containing Mount Sinai; also in verses 6 and 19 c 7 Shephelah Note that" + }, + { + "verseNum": 4, + "text": "| 137 26 Two men, however, had remained in the camp—one named Eldad and the other Medad— and the Spirit rested on them. They were among those listed, but they had not gone out to the tent, A young man and they prophesied in the camp. ran and reported to Moses, “Eldad and Medad 28 are prophesying in the camp.” 27 6 came down in a pillar of cloud, stood at the en- trance to the Tent, and summoned Aaron and Miriam. When both of them had stepped for- ward, He said, “Hear now My words: If there is a prophet among you, I, the LORD, will reveal Myself to him 7 in a vision; Joshua son of Nun, the attendant to Moses since youth, spoke up and said, “Moses, my lord, 29 stop them!” I will speak to him in a dream. d But this is not so with My servant Moses; 8 he is faithful in all My house. But Moses replied, “Are you jealous on my account? I wish that all the LORD’s people were prophets and that the LORD would place His 30 Spirit on them!” Then Moses returned to the camp, along with The Quail and the Plague the elders of Israel. 31 a 32 Now a wind sent by the LORD came up, drove in quail from the sea, and brought them near the camp, about two cubits above the surface of the for a day’s journey in every direction ground, around the camp. All that day and night, and all b the next day, the people stayed up gathering the quail. No one gathered less than ten homers, 33 and they spread them out all around the camp. But while the meat was still between their teeth, before it was chewed, the an" + }, + { + "verseNum": 5, + "text": "From the tribe of Reuben, Shammua son of 5 Zaccur; from the tribe of Simeon, Shaphat son of 6 Hori; from the tribe of Judah, Caleb son of 7 Jephunneh; from the tribe of Issachar, Igal son of 8 Joseph; from the tribe of Ephraim, Hoshea son of 9 Nun; from the tribe of Benjamin, Palti son of 10 Raphu; from the tribe of Zebulun, Gaddiel son of 11 Sodi; from the tribe of Manasseh (a tribe of 12 Joseph), Gaddi son of Susi; from the tribe of Dan, Ammiel son of 13 Gemalli; from the tribe of Asher, Sethur son of 14 Michael; from the tribe of Naphtali, Nahbi son of 15 Vophsi; and from the tribe of Gad, Geuel son of 16 Machi. These were the names of the men Moses sent to spy out the land; and Moses gave to Hoshea 17 son of Nun the name Joshua. 19 18 When Moses sent them to spy out the land of Canaan, he told them, “Go up through the Negev See what the land is and into the hill country. like and whether its people are strong or weak, Is the land where they live good few or many. or bad? Are the cities where they dwell open Is the soil fertile or camps or fortifications? unproductive? Are there trees in it or not? Be courageous and bring back some of the fruit of the land.” (It was the season for the first ripe 21 grapes.) 20 22 So they went up and spied out the land from the Wilderness of Zin as far as Rehob, toward Lebo-hamath. They went up through the Negev and came to Hebron, where Ahiman, Sheshai, and Talmai, the descendants of Anak, dwelled. It had been built seven years before 23 Z" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "–12) 42" + }, + { + "verseNum": 20, + "text": "–35) show you the road to travel. 34 35 36 When the LORD heard your words, He grew “Not one of angry and swore an oath, saying, the men of this evil generation shall see the good except Caleb land I swore to give your fathers, son of Jephunneh. He will see it, and I will give him and his descendants the land on which he has set foot, because he followed the LORD 37 wholeheartedly.” 38 The LORD was also angry with me on your ac- count, and He said, “Not even you shall enter the Joshua son of Nun, who stands before land. 39 you, will enter it. Encourage him, for he will ena- And the little ones ble Israel to inherit the land. you said would become captives—your children who on that day did not know good from evil— will enter the land that I will give them, and they But you are to turn back and will possess it. a head for the wilderness along the route to the The Defeat at Hormah" + }, + { + "verseNum": 35, + "text": "| 139 8 Joshua son of Nun and Caleb son of Jephunneh, 7 who were among those who had spied out the land, tore their clothes and said to the whole congregation of Israel, “The land we passed through and explored is an exceedingly good land. If the LORD delights in us, He will bring us into this land, a land flowing with milk and honey, and He will give it to us. Only do not re- bel against the LORD, and do not be afraid of the people of the land, for they will be like bread for us. Their protection has been removed, and the 10 LORD is with us. Do not be afraid of them!” 9 But the whole congregation threatened to stone Joshua and Caleb. 11 Then the glory of the LORD appeared to all the And the LORD Israelites at the Tent of Meeting. said to Moses, “How long will this people treat Me with contempt? How long will they refuse to 12 believe in Me, despite all the signs I have per- formed among them? I will strike them with a plague and destroy them—and I will make you Moses Intercedes for Israel into a nation greater and mightier than they are.” 13 14 But Moses said to the LORD, “The Egyptians will hear of it, for by Your strength You brought this people from among them. And they will tell it to the inhabitants of this land. They have already heard that You, O LORD, are in the midst of this people, that You, O LORD, have been seen face to face, that Your cloud stands over them, and that You go before them in a pillar of cloud 15 by day and a pillar of fire by night. 16 If You kill" + }, + { + "verseNum": 36, + "text": "which has conspired against Me. They will meet their end in the wilderness, and there they will The Plague on the Ten Spies die.” 36 tenth of an ephah of fine flour mixed with a quarter hin of olive oil. With the burnt offering or sacrifice of each lamb, you are to prepare a 6 quarter hin of wine as a drink offering. c a b 5 So the men Moses had sent to spy out the land, who had returned and made the whole congre- 37 gation grumble against him by bringing out a bad report about the land— those men who had brought out the bad report about the land—were struck down by a plague before the LORD. Of those men who had gone to spy out the land, only Joshua son of Nun and Caleb son of Jephunneh 39 remained alive. 38 And when Moses relayed these words to all the The Defeat at Hormah" + }, + { + "verseNum": 40, + "text": "–45) Red Sea. 41 40 ” But the LORD said to me, “Tell them not to go up and fight, for I am not with you to keep you 43 from defeat by your enemies.” So I spoke to you, but you would not listen. You rebelled against the command of the LORD and 44 presumptuously went up into the hill country. 45 Then the Amorites who lived in the hills came out against you and chased you like a swarm of bees. They routed you from Seir all the way to And you returned and wept before Hormah. the LORD, but He would not listen to your voice 46 or give ear to you. For this reason you stayed in Kadesh for a long Wanderings in the Wilderness time—a very long time. 2 b Then we turned back and headed for the wil- as the LORD derness by way of the Red Sea, had instructed me, and for many days we wan- 2 dered around Mount Seir. 3 4 5 At this time the LORD said to me, “You have been wandering around this hill country long enough; turn to the north and command the people: ‘You will pass through the territory of your brothers, the descendants of Esau, who live in Seir. They will be afraid of you, so you must be very careful. Do not provoke them, for I will not give you any of their land, not even a footprint, 6 because I have given Mount Seir to Esau as his possession. You are to pay them in silver for the 7 food you eat and the water you drink.’ ” Indeed, the LORD your God has blessed you in all the work of your hands. He has watched over your journey through this vast wilderness. The LORD your God has been" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 4, + "text": "1 Kings 5:11" + }, + { + "verseNum": 32, + "text": "–36) all that I have commanded you.” 12 11 13 14 And the LORD said to Moses, “Tell the Isra- elites, ‘Surely you must keep My Sabbaths, for this will be a sign between Me and you for the generations to come, so that you may know that I am the LORD who sanctifies you. Keep the Sabbath, for it is holy to you. Anyone who pro- fanes it must surely be put to death. Whoever does any work on that day must be cut off from among his people. For six days work may be done, but the seventh day is a Sabbath of com- plete rest, holy to the LORD. Whoever does any work on the Sabbath day must surely be put to 16 death. 15 17 The Israelites must keep the Sabbath, celebrat- ing it as a permanent covenant for the genera- tions to come. It is a sign between Me and the Israelites forever; for in six days the LORD made the heavens and the earth, but on the seventh Moses Receives the Tablets day He rested and was refreshed.’ 18 ” When the LORD had finished speaking with Moses on Mount Sinai, He gave him the two tab- lets of the Testimony, tablets of stone inscribed The Golden Calf (De. 9:7–29 ;" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 5, + "text": "(see also LXX) or Jasher Literally is often cited as . Preach the Word 4 2 I charge you in the presence of God and of Christ Jesus, who will judge the living and the dead, and in view of His appearing and His Preach the word; be prepared in sea- kingdom: son and out of season; reprove, rebuke, and en- 3 courage with every form of patient instruction. For the time will come when men will not toler- ate sound doctrine, but with itching ears they will gather around themselves teachers to suit So they will turn their ears their own desires. 5 away from the truth and turn aside to myths. 4 8 But you, be sober in all things, endure hardship, 6 do the work of an evangelist, fulfill your ministry. For I am already being poured out like a drink 7 offering, and the time of my departure is at hand. I have fought the good fight, I have finished the race, I have kept the faith. From now on there is laid up for me the crown of righteousness, which the Lord, the righteous Judge, will award to me on that day—and not only to me, but to all who Personal Concerns crave His appearing. 9 10 2 Timothy 4:22 | 1071 Carpus at Troas, and my scrolls, especially the 14 parchments. 15 Alexander the coppersmith did great harm to me. The Lord will repay him according to his You too should beware of him, for he deeds. The Lord Remains Faithful has vigorously opposed our message. 16 17 At my first defense, no one stood with me, but everyone deserted me. May it not be charged But the Lord stood by me and agai" + }, + { + "verseNum": 11, + "text": "| 141 The Law of Tassels 37 38 39 And the LORD said to Moses, “Speak to the Israelites and tell them that throughout the gen- erations to come they are to make for themselves tassels for the corners of their garments, with a blue cord on each tassel. These will serve as tassels for you to look at, so that you may remem- ber all the commandments of the LORD, that you may obey them and not prostitute yourselves by 40 following your own heart and your own eyes. 41 Then you will remember and obey all My com- mandments, and you will be holy to your God. I am the LORD your God who brought you out of the land of Egypt to be your God. I am the LORD Korah’s Rebellion your God.” 16 2 Now Korah son of Izhar, the son of Ko- hath son of Levi, along with some Reu- benites—Dathan and Abiram, sons of Eliab, and a rebellion On son of Peleth—conducted against Moses, along with 250 men of Israel 3 renowned as leaders of the congregation and They came to- representatives in the assembly. gether against Moses and Aaron and told them, For “You have taken too much upon yourselves! everyone in the entire congregation is holy, and the LORD is in their midst. Why then do you exalt 4 yourselves above the assembly of the LORD?” 5 a b When Moses heard this, he fell facedown. Then he said to Korah and all his followers, “Tomor- row morning the LORD will reveal who belongs and who is holy, and He will bring that to Him 6 person near to Himself. The one He chooses He You, Korah, and all will bring near to H" + }, + { + "verseNum": 12, + "text": "your followers who have conspired against the LORD! As for Aaron, who is he that you should 12 grumble against him?” 13 Then Moses summoned Dathan and Abiram, the sons of Eliab, but they said, “We will not Is it not enough that you have brought come! us up out of a land flowing with milk and honey to kill us in the wilderness? Must you also ap- Moreover, you point yourself as ruler over us? have not brought us into a land flowing with milk and honey or given us an inheritance of fields and vineyards. Will you gouge out the eyes of 15 these men? No, we will not come!” 14 Then Moses became very angry and said to the LORD, “Do not regard their offering. I have not taken one donkey from them or mistreated a sin- 16 gle one of them.” And Moses said to Korah, “You and all your followers are to appear before the LORD Each tomorrow—you and they and Aaron. man is to take his censer, place incense in it, and present it before the LORD—250 censers. You 18 and Aaron are to present your censers as well.” 17 19 So each man took his censer, put fire and incense in it, and stood with Moses and Aaron When at the entrance to the Tent of Meeting. Korah had gathered his whole assembly against them at the entrance to the Tent of Meeting, the glory of the LORD appeared to the whole 20 congregation. 21 And the LORD said to Moses and Aaron, “Separate yourselves from this congregation 22 so that I may consume them in an instant.” But Moses and Aaron fell facedown and said, “O God, the God of the spir" + }, + { + "verseNum": 41, + "text": "–50 ;" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 9, + "text": "| 143 10 The LORD said to Moses, “Put Aaron’s staff back in front of the Testimony, to be kept as a sign for the rebellious, so that you may put an 11 end to their grumbling against Me, lest they die.” So Moses did as the LORD had commanded 12 him. Then the Israelites declared to Moses, “Look, 13 we are perishing! We are lost; we are all lost! Anyone who comes near the tabernacle of the Duties of Priests and Levites LORD will die. Are we all going to perish?” 18 3 So the LORD said to Aaron, “You and your sons and your father’s house must bear the iniquity involving the sanctuary. And 2 you and your sons alone must bear the iniquity But bring with you involving your priesthood. also your brothers from the tribe of Levi, the tribe of your father, that they may join you and assist you and your sons before the Tent of the And they shall attend to your duties Testimony. and to all the duties of the Tent; but they must not come near to the furnishings of the sanctuary They or the altar, or both they and you will die. are to join you and attend to the duties of the Tent of Meeting, doing all the work at the Tent; 5 but no outsider may come near you. 4 7 6 And you shall attend to the duties of the sanctu- ary and of the altar, so that wrath may not fall on Behold, I Myself have se- the Israelites again. lected your fellow Levites from the Israelites as a gift to you, dedicated to the LORD to perform the But only you service for the Tent of Meeting. and your sons shall attend to your" + }, + { + "verseNum": 10, + "text": "10 a your sons. offering, 11 regard it as holy. You are to eat it as a most holy and every male may eat it. You shall 12 And this is yours as well: the offering of their gifts, along with all the wave offerings of the Is- raelites. I have given this to you and your sons and daughters as a permanent statute. Every cer- emonially clean person in your household may eat it. I give you all the freshest olive oil and all the finest new wine and grain that the Israelites give to the LORD as their firstfruits. The firstfruits of everything in their land that they bring to the LORD will belong to you. Every cere- monially clean person in your household may eat 14 them. 15 13 Every devoted thing in Israel belongs to you. The firstborn of every womb, whether man or beast, that is offered to the LORD belongs to you. But you must surely redeem every firstborn son 16 and every firstborn male of unclean animals. You are to pay the redemption price for a month-old male according to your valuation: five shekels of silver, according to the sanctuary 17 shekel, which is twenty gerahs. b c 18 But you must not redeem the firstborn of an ox, a sheep, or a goat; they are holy. You are to splatter their blood on the altar and burn their fat as a food offering, a pleasing aroma to the LORD. And their meat belongs to you, just as the breast and right thigh of the wave offering 19 belong to you. All the holy offerings that the Israelites pre- sent to the LORD I give to you and to your sons d and daught" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "–13) (Now an omer is a tenth of an ephah.) g d 23 On the sixth day, they gathered twice as much food—two omers per person —and all the lead- ers of the congregation came and reported this to a 12 He told them, “This is what the LORD Moses. c 18 Between the two evenings b 16 An omer d 22 2 omers 17 h Then the whole congregation of Israel left the Desert of Sin, moving from place to place as the LORD commanded. They camped e 31 Manna Heb. Cited in 2 Corinthians 8:15 What is it? like the Hebrew for h 1 scribed with the Ten Commandments. liters. The geographical name Sin is approximately 2 dry quarts or 2.2 liters; also in vv. 18, 32, 33, and 36. g 36 An (see verse 15). is approximately 4 dry quarts or 4.4 liters per person. sounds refers to the stone tablets in the ark of the covenant in- was a dry measure having the capacity of about 20 dry quarts or 22 Sinai sin is related to and should not be mistaken for the English word . f 34 The Testimony ephah 2 at Rephidim, but there was no water for the So the people contended with people to drink. Moses, “Give us water to drink.” “Why do you contend with me?” Moses replied. 3 “Why do you test the LORD?” But the people thirsted for water there, and they grumbled against Moses: “Why have you brought us out of Egypt—to make us and our 4 children and livestock die of thirst?” Then Moses cried out to the LORD, “What should I do with these people? A little more and 5 they will stone me!” 6 And the LORD said to Moses, “Walk on ahead of the p" + }, + { + "verseNum": 12, + "text": "| 145 person who is unclean does not purify himself, he will be cut off from the assembly, because he has defiled the sanctuary of the LORD. The water of purification has not been sprinkled on him; he 21 is unclean. This is a permanent statute for the people: The one who sprinkles the water of purification must wash his clothes, and whoever touches the water 22 of purification will be unclean until evening. Anything the unclean person touches will be- come unclean, and anyone who touches it will be Water from the Rock" + }, + { + "verseNum": 13, + "text": "13 a 28 These were the waters of Meribah, where the Israelites quarreled with the LORD, and He Edom Refuses Passage showed His holiness among them. 14 15 From Kadesh, Moses sent messengers to tell the king of Edom, “This is what your brother Israel says: You know all the hardship that has how our fathers went down to befallen us, Egypt, where we lived many years. The Egyp- tians mistreated us and our fathers, and when we cried out to the LORD, He heard our voice, sent an angel, and brought us out of Egypt. 16 17 Now look, we are in Kadesh, a city on the edge of Please let us pass through your your territory. land. We will not go through any field or vine- yard, or drink water from any well. We will stay on the King’s Highway; we will not turn to the right or to the left until we have passed through 18 your territory.” But Edom answered, “You may not travel through our land, or we will come out and con- 19 front you with the sword.” “We will stay on the main road,” the Israelites replied, “and if we or our herds drink your water, we will pay for it. There will be no problem; only 20 let us pass through on foot.” But Edom insisted, “You may not pass through.” And they came out to confront the Is- 21 raelites with a large army and a strong hand. So Edom refused to allow Israel to pass through their territory, and Israel turned away The Death of Aaron from them. 22 23 24 After they had set out from Kadesh, the whole congregation of Israel came to Mount Hor. And at Mount Hor, near" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 21, + "text": "–30) their place.) 24 23 a “Arise, set out, and cross the Arnon Valley. See, I have delivered into your hand Sihon the Amo- rite, king of Heshbon, and his land. Begin to take This possession of it and engage him in battle. very day I will begin to put the dread and fear of you upon all the nations under heaven. They will hear the reports of you and tremble in anguish 26 because of you.” 25 27 So from the Wilderness of Kedemoth I sent messengers with an offer of peace to Sihon king of Heshbon, saying, “Let us pass through your a 23 land; we will stay on the main road. We will not cherem b 34 But Sihon king of Heshbon would not let us pass through, for the LORD your God had made his spirit stubborn and his heart obstinate, that He might deliver him into your hand, as is the 31 case this day. Then the LORD said to me, “See, I have begun to deliver Sihon and his land over to you. Now 32 begin to conquer and possess his land.” 33 So Sihon and his whole army came out for bat- And the LORD our God tle against us at Jahaz. delivered him over to us, and we defeated him 34 and his sons and his whole army. b 35 At that time we captured all his cities and devoted to destruction the people of every city, including women and children. We left no survi- We carried off for ourselves only the vors. livestock and the plunder from the cities we 36 captured. 37 From Aroer on the rim of the Arnon Valley, along with the city in the valley, even as far as Gil- ead, not one city had walls too high f" + }, + { + "verseNum": 23, + "text": ". is a 57 Hilez The Gershomites received the following: As in the parallel text at" + }, + { + "verseNum": 31, + "text": "–35) LORD our God had forbidden. 3 2 Then we turned and went up the road to Ba- shan, and Og king of Bashan and his whole But army came out to meet us in battle at Edrei. the LORD said to me, “Do not fear him, for I have delivered him into your hand, along with all his people and his land. Do to him as you did to Sihon 3 king of the Amorites, who lived in Heshbon.” So the LORD our God also delivered Og king of Bashan and his whole army into our hands. We 4 struck them down until no survivor was left. At that time we captured all sixty of his cities. There was not a single city we failed to take—the entire region of Argob, the kingdom of Og in All these cities were fortified with high Bashan. 5 That is, Crete Forms of the Hebrew refer to the giving over of things or persons to the LORD, either by destroying them or by giving them as an offering." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 5, + "text": "| 147 28 “Come to Heshbon, let it be rebuilt; let the city of Sihon be restored. For a fire went out from Heshbon, a blaze from the city of Sihon. It consumed Ar of Moab, 29 the rulers of Arnon’s heights. Woe to you, O Moab! You are destroyed, O people of Chemosh! He gave up his sons as refugees, 30 and his daughters into captivity to Sihon king of the Amorites. But we have overthrown them; Heshbon is destroyed as far as Dibon. e We demolished them as far as Nophah, The Defeat of Og" + }, + { + "verseNum": 6, + "text": "6 “Behold, a people has come out of Egypt,” said Balak. “They cover the face of the land and have settled next to me. So please come now and put a curse on this people, because they are too mighty for me. Perhaps I may be able to defeat them and drive them out of the land; for I know that those you bless are blessed, and those you 7 curse are cursed.” The elders of Moab and Midian departed with the fees for divination in hand. They came to Ba- 8 laam and relayed to him the words of Balak. “Spend the night here,” Balaam replied, “and I will give you the answer that the LORD speaks to 9 me.” So the princes of Moab stayed with Balaam. Then God came to Balaam and asked, “Who are 10 these men with you?” 11 And Balaam said to God, “Balak son of Zippor, ‘Behold, a king of Moab, sent me this message: people has come out of Egypt, and they cover the face of the land. Now come and put a curse on them for me. Perhaps I may be able to fight 12 against them and drive them away.’ ” But God said to Balaam, “Do not go with them. You are not to curse this people, for they are 13 blessed.” So Balaam got up the next morning and said to Balak’s princes, “Go back to your homeland, be- cause the LORD has refused to let me go with 14 you.” And the princes of Moab arose, returned to Ba- 15 lak, and said, “Balaam refused to come with us.” 16 Then Balak sent other princes, more numer- ous and more distinguished than the first messengers. They came to Balaam and said, “This is what Balak son of Zippor" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 21, + "text": "| 149 ‘Come,’ he said, ‘put a curse on Jacob for me; 8 come and denounce Israel!’ How can I curse those whom God has not cursed? 9 How can I denounce those whom the LORD has not denounced? For I see them from atop the rocky cliffs, and I watch them from the hills. Behold, a people dwelling apart, 10 not reckoning themselves among the nations. Who can count the dust of Jacob or number even a fourth of Israel? Let me die the death of the righteous; let my end be like theirs!” 11 Then Balak said to Balaam, “What have you done to me? I brought you here to curse my ene- 12 mies, and behold, you have only blessed them!” But Balaam replied, “Should I not speak ex- Balaam’s Second Oracle actly what the LORD puts in my mouth?” 13 Then Balak said to him, “Please come with me to another place where you can see them. You will only see the outskirts of their camp—not all 14 of them. And from there, curse them for me.” So Balak took him to the field of Zophim, to the top of Pisgah, where he built seven altars and of- 15 fered a bull and a ram on each altar. Balaam said to Balak, “Stay here beside your 16 burnt offering while I meet the LORD over there.” And the LORD met with Balaam and put a mes- sage in his mouth, saying, “Return to Balak and 17 speak what I tell you.” So he returned to Balak, who was standing there by his burnt offering with the princes of Moab. 18 “What did the LORD say?” Balak asked. Then Balaam lifted up an oracle, saying: Then the LORD put a message in Balaam’s mouth" + }, + { + "verseNum": 22, + "text": "7 The LORD their God is with them, 22 Water will flow from his buckets, and the shout of the King is among them. and his seed will have abundant 23 God brought them out of Egypt with strength like a wild ox. For there is no spell against Jacob and no divination against Israel. It will now be said of Jacob and Israel, ‘What great things God has done!’ Behold, the people rise like a lioness; they rouse themselves like a lion, not resting until they devour their prey and drink the blood of the slain.” 24 25 Now Balak said to Balaam, “Then neither curse 26 them at all nor bless them at all!” But Balaam replied, “Did I not tell you that 27 whatever the LORD says, I must do?” “Please come,” said Balak, “I will take you to another place. Perhaps it will please God that you 28 curse them for me from there.” a And Balak took Balaam to the top of Peor, 29 which overlooks the wasteland. Then Balaam said, “Build for me seven altars here, and prepare for me seven bulls and seven 30 rams.” So Balak did as Balaam had instructed, and he Balaam’s Third Oracle offered a bull and a ram on each altar. 24 And when Balaam saw that it pleased the LORD to bless Israel, he did not seek omens as on previous occasions, but he turned When Balaam his face toward the wilderness. 3 looked up and saw Israel encamped tribe by and he tribe, the Spirit of God came upon him, lifted up an oracle, saying: 2 water. His king will be greater than Agag, 8 and his kingdom will be exalted. God brought him out of Egypt" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "–5) 26 27 10 2 4 I do not want you to be unaware, broth- ers, that our forefathers were all under the cloud, and that they all passed through the 3 They were all baptized into Moses in the sea. They all ate the same cloud and in the sea. spiritual food and drank the same spiritual drink; for they drank from the spiritual rock that 5 accompanied them, and that rock was Christ. Nevertheless, God was not pleased with most of them, for they were struck down in the 6 wilderness. 7 a These things took place as examples to keep us from craving evil things as they did. Do not be idolaters, as some of them were. As it is written: 8 “The people sat down to eat and drink and got up to indulge in revelry.” We should not commit sexual immorality, as some of them did, and in 9 one day twenty-three thousand of them died. 10 as some of them did, We should not test Christ, And do not com- and were killed by snakes. plain, as some of them did, and were killed by the 11 destroying angel. b c Now these things happened to them as exam- ples and were written down as warnings for us, 12 on whom the fulfillment of the ages has come. So the one who thinks he is standing firm b 9 a 7 No temptation has should be careful not to fall. are lawful,” ;" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "–4) 1 On the first day of the second month of the second year after the Israelites had come out of the land of Egypt, the LORD spoke to Moses in 2 the Tent of Meeting in the Wilderness of Sinai. He “Take a census of the whole congregation said: of Israel by their clans and families, listing every 3 man by name, one by one. You and Aaron are to number those who are twenty years of age or older by their divisions— And everyone who can serve in Israel’s army. one man from each tribe, the head of each family, The Leaders of the Tribes must be there with you. 5 4 These are the names of the men who are to as- sist you: From the tribe of Reuben, Elizur son of 6 Shedeur; from Simeon, Shelumiel son of 7 Zurishaddai; 8 from Judah, Nahshon son of Amminadab; from Issachar, Nethanel son of Zuar; from Zebulun, Eliab son of Helon; from the sons of Joseph: from Ephraim, Elishama son of Ammihud, and from Manasseh, Gamaliel son of Pedahzur; from Benjamin, Abidan son of Gideoni; from Dan, Ahiezer son of Ammishaddai; 9 10 11 12 13 14 15 from Asher, Pagiel son of Ocran; from Gad, Eliasaph son of Deuel; 16 and from Naphtali, Ahira son of Enan.” These men were appointed from the congrega- tion; they were the leaders of the tribes of their The Number of Every Tribe fathers, the heads of the clans of Israel. 17 18 So Moses and Aaron took these men who had and on the first day been designated by name, of the second month they assembled the whole congregation and recorded their ancestry by clans and fa" + }, + { + "verseNum": 6, + "text": "| 151 them—through the Israelite and on through the belly of the woman. 9 So the plague against the Israelites was halted, but those who died in the plague numbered 11 10 24,000. 12 Then the LORD said to Moses, “Phinehas son of Eleazar, the son of Aaron the priest, has turned My wrath away from the Israelites; for he was zealous for My sake among them, so that I did not Declare, consume the Israelites in My zeal. therefore, that I am granting him My covenant of It will be a covenant of permanent peace. priesthood for him and his descendants, because he was zealous for his God and made atonement 14 for the Israelites.” 13 15 The name of the Israelite who was slain with the Midianite woman was Zimri son of Salu, the And the name of leader of a Simeonite family. the slain Midianite woman was Cozbi, the daugh- 16 ter of Zur, a tribal chief of a Midianite family. 17 18 “Attack the And the LORD said to Moses, For they as- Midianites and strike them dead. sailed you deceitfully when they seduced you in the matter of Peor and their sister Cozbi, the daughter of the Midianite leader, the woman who was killed on the day the plague came because of The Second Census of Israel" + }, + { + "verseNum": 7, + "text": "7 22 These were the clans of Reuben, and their reg- 8 istration numbered 43,730. 9 Now the son of Pallu was Eliab, and the sons of 10 Eliab were Nemuel, Dathan, and Abiram. It was Dathan and Abiram, chosen by the congre- gation, who rebelled against Moses and Aaron with the followers of Korah who rebelled against the LORD. And the earth opened its mouth and swallowed them along with Korah, whose fol- lowers died when the fire consumed 250 men. They serve as a warning sign. However, the The Tribe of Simeon line of Korah did not die out. 12 11 These were the descendants of Simeon by a their clans: The Nemuelite clan from Nemuel, the Jaminite clan from Jamin, 13 the Jachinite clan from Jachin, the Zerahite clan from Zerah, and the Shaulite clan from Shaul. These were the clans of Simeon, and there b 14 The Tribe of Gad were 22,200 men. 15 These were the descendants of Gad by their clans: The Zephonite clan from Zephon, the Haggite clan from Haggi, 16 the Shunite clan from Shuni, the Oznite clan from Ozni, 17 the Erite clan from Eri, c These were the clans of Judah, and their regis- The Tribe of Issachar tration numbered 76,500. 23 These were the descendants of Issachar by their clans: d The Tolaite clan from Tola, 24 the Punite clan from Puvah, e the Jashubite clan from Jashub, 25 and the Shimronite clan from Shimron. These were the clans of Issachar, and their reg- The Tribe of Zebulun istration numbered 64,300. 26 These were the descendants of Zebulun by their clans: 27 The Se" + }, + { + "verseNum": 12, + "text": ". Arod e 15 All those belonging to Jacob who came to Egypt—his direct descendants, besides the wives b 10 Zohar of Jacob’s sons—numbered sixty-six persons. Zerah d 13 is a variant of f 16 ; see" + }, + { + "verseNum": 13, + "text": "and Zephon ; see 1 Chronicles 7:1. h 20 Hebrew; SP and some LXX manuscripts That is, northwest Mesopotamia SP and LXX ; see also" + }, + { + "verseNum": 15, + "text": ". is a variant of ; see" + }, + { + "verseNum": 17, + "text": ". That is, Heliopolis, as in LXX 50 |" + }, + { + "verseNum": 23, + "text": ". Hebrew ; also in verses 10 and 17 5 Their kinsmen belonging to all the families of Issachar who were mighty men of valor totaled 87,000, as listed in their genealogies. The Descendants of Benjamin 6 The three sons of Benjamin: 7 Bela, Becher, and Jediael. The sons of Bela: Ezbon, Uzzi, Uzziel, Jerimoth, and Iri, heads of their families—five in all. There were 22,034 mighty men of valor listed in their genealogies. 8 The sons of Becher: 9 Zemirah, Joash, Eliezer, Elioenai, Omri, Jer- emoth, Abijah, Anathoth, and Alemeth; all these were Becher’s sons. Their genealo- gies were recorded according to the heads of their families—20,200 mighty men of valor. 10 The son of Jediael: Bilhan. The sons of Bilhan: 11 Jeush, Benjamin, Ehud, Chenaanah, Zethan, Tarshish, and Ahishahar. All these sons of Jediael were heads of their families, 12 mighty men of valor; there were 17,200 fit for battle. The Shuppites and Huppites were descendants of Ir, and the Hushites The Descendants of Naphtali were descendants of Aher. 13 a The sons of Naphtali: b The Descendants of Manasseh Jahziel, scendants of Bilhah. Guni, Jezer, and Shallum 14 —the de- The descendants of Manasseh: Asriel through his Aramean concubine. She 15 also gave birth to Machir the father of Gilead. Machir took a wife from among the Hup- pites and Shuppites. The name of his sister was Maacah. Another descendant was named Zelophehad, 16 who had only daughters. Machir’s wife Maacah gave birth to a son, and she named him Peresh. His b" + }, + { + "verseNum": 24, + "text": "and 1 Chronicles 7:1. Hebrew; SP and Syriac Puah ; see" + }, + { + "verseNum": 49, + "text": ". g 29 Beth-shean scripts; Hebrew does not include is a variant of c 23 Beriah ; see Gen. 46:24. his son Beth-shan e 27 Non 1 Chronicles 7:31 | 379 17 Rekem. The son of Ulam: Bedan. 18 These were the sons of Gilead son of Machir, the son of Manasseh. His sister Hammo- lecheth gave birth to Ishhod, Abiezer, and 19 Mahlah. And these were the sons of Shemida: The Descendants of Ephraim Ahian, Shechem, Likhi, and Aniam. 20 The descendants of Ephraim: 21 Shuthelah, Bered his son, Tahath his son, Eleadah his son, Tahath his son, Zabad his son, and Shuthelah his son. Ezer and Elead were killed by the natives of Gath, because they went down to steal their 22 livestock. c Their father Ephraim mourned for many 23 days, and his relatives came to comfort him. And again he slept with his wife, and she conceived and gave birth to a son. So he named him Beriah, because tragedy had His daughter was come upon his house. Sheerah, who built Lower and Upper Beth- 25 horon, as well as Uzzen-sheerah. 24 d 26 his son, Additionally, Rephah was his son, Resheph Telah his son, Tahan his son, Ladan his son, Ammihud his son, Elishama his son, and Joshua his son. 28 his son, Nun 27 e f 29 Their holdings and settlements included Bethel and its villages, Naaran to the east, Gezer and its villages to the west, and She- chem and its villages as far as Ayyah and its g And along the borders of Manas- villages. seh were Beth-shean, Taanach, Megiddo, and Dor, together with their villages. The de- scendants of Jo" + }, + { + "verseNum": 62, + "text": "| 153 The Jahzeelite clan from Jahzeel, 49 the Gunite clan from Guni, the Jezerite clan from Jezer, 50 and the Shillemite clan from Shillem. These were the clans of Naphtali, and their 51 registration numbered 45,400. Inheritance by Lot These men of Israel numbered 601,730 in all. 52 53 54 Then the LORD said to Moses, “The land is to be divided among the tribes as an inheritance, according to the number of names. Increase the inheritance for a large tribe and decrease it for a small one; each tribe is to receive its inheritance according to the number of those 55 registered. Indeed, the land must be divided by lot; they shall receive their inheritance according to the Each names of the tribes of their fathers. inheritance is to be divided by lot among the The Levites Numbered larger and smaller tribes.” 57 56 Now these were the Levites numbered by their clans: The Gershonite clan from Gershon, the Kohathite clan from Kohath, 58 and the Merarite clan from Merari. These were the families of the Levites: The Libnite clan, the Hebronite clan, the Mahlite clan, the Mushite clan, and the Korahite clan. 59 60 and Now Kohath was the father of Amram, Amram’s wife was named Jochebed. She was also a daughter of Levi, born to Levi in Egypt. To Am- ram she bore Aaron, Moses, and their sister Mir- Nadab, Abihu, Eleazar, and Ithamar were iam. but Nadab and Abihu died when born to Aaron, 62 fire before the LORD. they offered unauthorized 61 c The registration of the Levites totaled 23,000, e" + }, + { + "verseNum": 63, + "text": "Only Caleb and Joshua Remain 63 These were the ones numbered by Moses and Eleazar the priest when they counted the Israel- ites on the plains of Moab by the Jordan, across 64 from Jericho. 65 Among all these, however, there was not one who had been numbered by Moses and Aaron the priest when they counted the Israelites in the For the LORD had told Wilderness of Sinai. them that they would surely die in the wilder- ness. Not one was left except Caleb son of The Daughters of Zelophehad (Num. 36:1–13) Jephunneh and Joshua son of Nun. 27 2 Now the daughters of Zelophehad son of Hepher, the son of Gilead, the son of Machir, the son of Manasseh, belonged to the clans of Manasseh son of Joseph. These were the names of his daughters: Mahlah, Noah, Hoglah, the Milcah, and Tirzah. They approached entrance to the Tent of Meeting, stood before Moses, Eleazar the priest, the leaders, and the “Our father died whole congregation, and said, in the wilderness, but he was not among the fol- lowers of Korah who gathered together against 4 the LORD. Instead, he died because of his own Why should the name sin, and he had no sons. of our father disappear from his clan because he had no sons? Give us property among our 5 father’s brothers.” 6 3 7 So Moses brought their case before the LORD, “The daughters and the LORD answered him, of Zelophehad speak correctly. You certainly must give them property as an inheritance among their father’s brothers and transfer their 8 father’s inheritance to them. 9" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "–11) 36 3 2 Now the family heads of the clan of Gil- ead son of Machir son of Manasseh, one of the clans of Joseph, approached Moses and the leaders who were the heads of the Israelite families and addressed them, saying, “When the LORD commanded my lord to give the land as an inheritance to the Israelites by lot, He also commanded him to give the inheritance of our But if they brother Zelophehad to his daughters. marry any of the men from the other tribes of Israel, their inheritance will be withdrawn from the portion of our fathers and added to the tribe into which they marry. So our allotted And when inheritance would be taken away. the Jubilee for the Israelites comes, their inher- itance will be added to the tribe into which they marry and taken away from the tribe of our 5 fathers.” 4 7 6 So at the word of the LORD, Moses commanded the Israelites: “The tribe of the sons of Joseph This is what the LORD has speaks correctly. commanded concerning the daughters of Zelo- phehad: They may marry anyone they please, provided they marry within a clan of the tribe of No inheritance in Israel may be their father. transferred from tribe to tribe, because each of the Israelites is to retain the inheritance of the Every daughter who pos- tribe of his fathers. sesses an inheritance from any Israelite tribe must marry within a clan of the tribe of her fa- 9 ther, so that every Israelite will possess the in- No inheritance may be heritance of his fathers. transferred from one tribe to a" + }, + { + "verseNum": 12, + "text": "–17) 23 24 At that time I also pleaded with the LORD: “O Lord GOD, You have begun to show Your great- ness and power to Your servant. For what god in 25 heaven or on earth can perform such works and mighty acts as Yours? Please let me cross over and see the good land beyond the Jordan—that 26 pleasant hill country as well as Lebanon!” 27 But the LORD was angry with me on account of you, and He would not listen to me. “That is enough,” the LORD said to me. “Do not speak to Me again about this matter. Go to the top of Pisgah and look to the west and north and south and east. See the land with your own eyes, for you will not cross this Jordan. But commission Joshua, encourage him, and strengthen him, for he will cross over ahead of the people and enable 29 them to inherit the land that you will see.” An Exhortation to Obedience (De. 11:1–7) So we stayed in the valley opposite Beth-peor. 28 4 2 Hear now, O Israel, the statutes and ordi- nances I am teaching you to follow, so that you may live and may enter and take possession of the land that the LORD, the God of your fathers, You must not add to or subtract is giving you. from what I command you, so that you may keep the commandments of the LORD your God that I 3 am giving you. Your eyes have seen what the LORD did at Baal- peor, for the LORD your God destroyed from among you all who followed Baal of Peor. But you who held fast to the LORD your God are alive 5 to this day, every one of you. 4 See, I have taught you statutes and" + }, + { + "verseNum": 18, + "text": "–23) ham, Isaac, and Jacob.” a 2 When Moses had finished speaking these words to all Israel, he said to them, “I am now a hundred and twenty years old; I am no longer able to come and go, and the LORD 3 has said to me, ‘You shall not cross the Jordan.’ The LORD your God Himself will cross over ahead of you. He will destroy these nations be- fore you, and you will dispossess them. Joshua 4 will cross ahead of you, as the LORD has said. And the LORD will do to them as He did to Sihon and Og, the kings of the Amorites, when He de- 5 stroyed them along with their land. 6 The LORD will deliver them over to you, and you must do to them exactly as I have com- manded you. Be strong and courageous; do not be afraid or terrified of them, for it is the LORD your God who goes with you; He will never leave 7 you nor forsake you.” b 8 Then Moses called for Joshua and said to him in the presence of all Israel, “Be strong and coura- geous, for you will go with this people into the land that the LORD swore to their fathers to give them, and you shall give it to them as an inher- itance. The LORD Himself goes before you; He will be with you. He will never leave you nor for- The Reading of the Law" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "–8)" + }, + { + "verseNum": 26, + "text": "–31) 20 9 a You are to count off seven weeks from the time 10 you first put the sickle to the standing grain. And you shall celebrate the Feast of Weeks to the LORD your God with a freewill offering that 11 you give in proportion to how the LORD your and you shall rejoice be- God has blessed you, fore the LORD your God in the place He will choose as a dwelling for His Name—you, your sons and daughters, your menservants and maidservants, and the Levite within your gates, as well as the foreigner, the fatherless, and the 12 widows among you. Remember that you were slaves in Egypt, and The Feast of Tabernacles" + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "–6) 23 24 The LORD also said to Moses, “Speak to the Israelites and say, ‘On the first day of the seventh month you are to have a day of rest, a sacred as- sembly announced by trumpet blasts. You must not do any regular work, but you are to pre- The Day of Atonement sent a food offering to the LORD.’" + }, + { + "verseNum": 3, + "text": "| 155 20 two young bulls, one ram, and seven male lambs The grain offering a year old, all unblemished. shall consist of fine flour mixed with oil; offer three-tenths of an ephah with each bull, two- and a tenth of tenths of an ephah with the ram, Include an ephah with each of the seven lambs. one male goat as a sin offering to make atone- 23 ment for you. 21 22 24 You are to present these in addition to the reg- ular morning burnt offering. Offer the same food each day for seven days as a food offering, a pleasing aroma to the LORD. It is to be offered with its drink offering and the regular burnt of- 25 fering. On the seventh day you shall hold a sacred as- The Feast of Weeks" + }, + { + "verseNum": 4, + "text": "4 a 20 and a tenth of an ephah ram, 5 seven male lambs. 6 with each of the Include one male goat as a sin offering to make These are in addition to the atonement for you. monthly and daily burnt offerings with their pre- scribed grain offerings and drink offerings. They The Day of Atonement (Lev. 16:1-34 ; 23:26-32) are a pleasing aroma, a food offering to the LORD. 7 b On the tenth day of this seventh month, you are to hold a sacred assembly, and you shall humble 8 yourselves; you must not do any work. 9 Present as a pleasing aroma to the LORD a burnt offering of one young bull, one ram, and seven male lambs a year old, all unblemished, to- gether with their grain offerings of fine flour mixed with oil—three-tenths of an ephah with 10 the bull, two-tenths of an ephah with the ram, and a tenth of an ephah with each of the seven 11 lambs. Include one male goat for a sin offering, in ad- dition to the sin offering of atonement and the regular burnt offering with its grain offering and The Feast of Tabernacles (De. 16:13–17) drink offerings. 12 On the fifteenth day of the seventh month, you are to hold a sacred assembly; you must not do any regular work, and you shall observe a feast 13 to the LORD for seven days. 14 As a pleasing aroma to the LORD, you are to present a food offering, a burnt offering of thir- teen young bulls, two rams, and fourteen male along with lambs a year old, all unblemished, the grain offering of three-tenths of an ephah of fine flour mixed with oil wit" + }, + { + "verseNum": 7, + "text": "–11) 16 2 Now the LORD spoke to Moses after the death of two of Aaron’s sons when they approached the presence of the LORD. And the b LORD said to Moses: “Tell your brother Aaron c not to enter freely into the Most Holy Place behind the veil in front of the mercy seat on the ark, or else he will die, because I appear in the 3 cloud above the mercy seat. This is how Aaron is to enter the Holy Place: with a young bull for a sin offering and a ram for He is to wear the sacred linen a burnt offering. atonement c 2 4 ; also in verses 16, 17, 20, 23, and 27 Or" + }, + { + "verseNum": 12, + "text": "–40) carefully follow these statutes. 13 b You are to celebrate the Feast of Tabernacles for seven days after you have gathered the pro- 14 duce of your threshing floor and your winepress. And you shall rejoice in your feast—you, your sons and daughters, your menservants and maidservants, and the Levite, as well as the for- eigner, the fatherless, and the widows among 15 you. For seven days you shall celebrate a feast to the LORD your God in the place He will choose, because the LORD your God will bless you in all your produce and in all the work of your hands, 16 so that your joy will be complete. c d 17 Three times a year all your men are to appear before the LORD your God in the place He will e the choose: at the Feast of Unleavened Bread, Feast of Weeks, and the Feast of Tabernacles. No one should appear before the LORD empty- Everyone must appear with a gift as handed. he is able, according to the blessing the LORD Judges and Justice your God has given you. 18 You are to appoint judges and officials for your tribes in every town that the LORD your God is giving you. They are to judge the people with 19 righteous judgment. Do not deny justice or show partiality. Do not accept a bribe, for a bribe blinds the eyes of the a 10 wise and twists the words of the righteous. b 13 Booths Pursue justice, and justice alone, so that you may live, and you may possess the land that the Forbidden Forms of Worship LORD your God is giving you. 21 Do not set up any wooden Asherah pole next" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "–16) woman commits adultery. 33 f 34 Again, you have heard that it was said to the ancients, ‘Do not break your oath, but fulfill your But I tell you not to swear vows to the Lord.’ 35 at all: either by heaven, for it is God’s throne; or by the earth, for it is His footstool; or by Je- Nor rusalem, for it is the city of the great King. should you swear by your head, for you cannot Simply let make a single hair white or black. your ‘Yes’ be ‘Yes,’ and your ‘No,’ ‘No.’ Anything Love Your Enemies more comes from the evil one." + }, + { + "verseNum": 2, + "text": "i 41 k 43 one milion" + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 16, + "text": "| 157 then he confirms all the vows and pledges that bind her. He has confirmed them, because he said 15 nothing to her on the day he heard about them. But if he nullifies them after he hears of them, 16 then he will bear her iniquity.” These are the statutes that the LORD com- manded Moses concerning the relationship be- tween a man and his wife, and between a father Vengeance on Midian and a young daughter still in his home. 2 “Take And the LORD said to Moses, vengeance on the Midianites for the Isra- elites. After that, you will be gathered to your 3 people.” 4 So Moses told the people, “Arm some of your men for war, that they may go against the Midi- anites and execute the LORD’s vengeance on Send into battle a thousand men from them. 5 each tribe of Israel.” So a thousand men were recruited from each 6 tribe of Israel—twelve thousand armed for war. And Moses sent the thousand from each tribe into battle, along with Phinehas son of Eleazar the priest, who took with him the vessels of the 7 sanctuary and the trumpets for signaling. 8 Then they waged war against Midian, as the LORD had commanded Moses, and they killed every male. Among the slain were Evi, Rekem, Zur, Hur, and Reba—the five kings of Midian. They also killed Balaam son of Beor with the 9 sword. The Israelites captured the Midianite women 10 and their children, and they plundered all their herds, flocks, and goods. Then they burned all the cities where the Midianites had lived, as well as all their encampments" + }, + { + "verseNum": 17, + "text": "17 Balaam, to turn unfaithfully against the LORD at Peor, so that the plague struck the congregation So now, kill all the boys, as well as of the LORD. 18 every woman who has had relations with a man, but spare for yourselves every girl who has 19 never had relations with a man. 20 All of you who have killed a person or touched the dead are to remain outside the camp for seven days. On the third day and the seventh day you are to purify both yourselves and your cap- And purify every garment and leather tives. good, everything made of goat’s hair, and every 21 article of wood.” 23 Then Eleazar the priest said to the soldiers who had gone into battle, “This is the statute of 22 the law which the LORD has commanded Moses: Only the gold, silver, bronze, iron, tin, and lead— everything that can withstand the fire—must be put through the fire, and it will be clean. But it must still be purified with the water of purification. And everything that cannot with- On stand the fire must pass through the water. the seventh day you are to wash your clothes, and you will be clean. After that you may enter Division of the Spoils the camp.” 25 24 26 The LORD said to Moses, “You and Eleazar the priest and the family heads of the congrega- tion are to take a count of what was captured, Then divide the cap- both of man and beast. tives between the troops who went out to battle 28 and the rest of the congregation. 27 Set aside a tribute for the LORD from what be- longs to the soldiers who went in" + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "–42 ;" + }, + { + "verseNum": 33, + "text": "| 159 18 brought them into their place. Meanwhile, our little ones will remain in the fortified cities for We protection from the inhabitants of the land. will not return to our homes until every Israelite has taken possession of his inheritance. Yet we will not have an inheritance with them across the Jordan and beyond, because our inheritance has 20 come to us on the east side of the Jordan.” 19 21 Moses replied, “If you will do this—if you will arm yourselves before the LORD for battle, and if every one of your armed men crosses the Jor- 22 dan before the LORD, until He has driven His en- then when the land is emies out before Him, subdued before the LORD, you may return and be free of obligation to the LORD and to Israel. And this land will belong to you as a possession be- But if you do not do this, you fore the LORD. will certainly sin against the LORD—and be as- Build cit- sured that your sin will find you out. ies for your little ones and folds for your flocks, 25 but do what you have promised.” 24 23 26 The Gadites and Reubenites said to Moses, “Your servants will do just as our lord com- Our children, our wives, our livestock, mands. 27 and all our animals will remain here in the cities of Gilead. But your servants are equipped for war, and every man will cross over to the battle 28 before the LORD, just as our lord says.” 29 So Moses gave orders about them to Eleazar the priest, to Joshua son of Nun, and to the family And Moses said leaders of the tribes of Israel." + }, + { + "verseNum": 34, + "text": "34 35 36 e 11 And the Gadites built up Dibon, Ataroth, Aroer, Beth-nim- Atroth-shophan, Jazer, Jogbehah, rah, and Beth-haran as fortified cities, and they 37 built folds for their flocks. 38 The Reubenites built up Heshbon, Elealeh, Kir- as well as Nebo and Baal-meon iathaim, (whose names were changed), and Sibmah. And 39 they renamed the cities they rebuilt. 40 41 The descendants of Machir son of Manasseh went to Gilead, captured it, and drove out the So Moses gave Gil- Amorites who were there. ead to the clan of Machir son of Manasseh, and they settled there. Jair, a descendant of Manas- 42 seh, went and captured their villages and called And Nobah went and cap- them Havvoth-jair. tured Kenath and its villages and called it Nobah, Forty-Two Journeys of the Israelites after his own name. a 33 2 These are the journeys of the Israelites when they came out of the land of Egypt by their divisions under the leadership of Moses At the LORD’s command, Moses rec- and Aaron. orded the stages of their journey. These are the stages listed by their starting points: 3 b 4 On the fifteenth day of the first month, on the day after the Passover, the Israelites set out from Rameses. They marched out defi- antly who in full view of all the Egyptians, were burying all their firstborn, whom the LORD had struck down among them; for the LORD had executed judgment against their The Israelites set out from Rameses gods. 6 and camped at Succoth. 5 They set out from Succoth and camped at 7 Etham, on" + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 3, + "text": ". Cited in" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "–15 ;" + }, + { + "verseNum": 12, + "text": "| 161 They set out from Jotbathah and camped 35 at Abronah. They set out from Abronah and camped at 36 Ezion-geber. They set out from Ezion-geber and camped 37 at Kadesh in the Wilderness of Zin. 38 They set out from Kadesh and camped at Mount Hor, on the outskirts of the land of At the LORD’s command, Aaron the Edom. priest climbed Mount Hor and died there on the first day of the fifth month, in the fortieth year after the Israelites had come out of the Aaron was 123 years old land of Egypt. 40 when he died on Mount Hor. 39 41 Now the Canaanite king of Arad, who lived in the Negev in the land of Canaan, heard that And the Israel- the Israelites were coming. ites set out from Mount Hor and camped at 42 Zalmonah. They set out from Zalmonah and camped 43 at Punon. They set out from Punon and camped at 44 Oboth. They set out from Oboth and camped at 45 Iye-abarim on the border of Moab. a They set out from Iyim 46 Dibon-gad. and camped at They set out from Dibon-gad and camped 47 at Almon-diblathaim. b They set out from Almon-diblathaim and facing camped in the mountains of Abarim 48 Nebo. They set out from the mountains of Aba- rim and camped on the plains of Moab by the 49 Jordan across from Jericho. And there on the plains of Moab they camped by the Jordan, from Beth-jeshimoth to Abel-shittim. Instructions for Occupying Canaan c 50 51 You are to take possession of the land and set- 54 tle in it, for I have given you the land to possess. And you are to divide the land by lot ac" + }, + { + "verseNum": 13, + "text": "This will be your land, defined by its borders on 13 all sides.” 14 So Moses commanded the Israelites, “Appor- tion this land by lot as an inheritance. The LORD has commanded that it be given to the nine and a For the tribes of the Reubenites and half tribes. Gadites, along with the half-tribe of Manasseh, These have already received their inheritance. two and a half tribes have received their inher- itance across the Jordan from Jericho, toward the Leaders to Divide the Land sunrise.” 16 17 15 18 Then the LORD said to Moses, “These are the names of the men who are to assign the land as an inheritance for you: Eleazar the priest and 19 Appoint one leader from Joshua son of Nun. These are each tribe to distribute the land. their names: Caleb son of Jephunneh from the tribe of Ju- 20 dah; Shemuel son of Ammihud from the tribe 21 of Simeon; Elidad son of Chislon from the tribe of 22 Benjamin; Bukki son of Jogli, a leader from the tribe 23 of Dan; Hanniel son of Ephod, a leader from the 24 tribe of Manasseh son of Joseph; Kemuel son of Shiphtan, a leader from the 25 tribe of Ephraim; Eli-zaphan son of Parnach, a leader from 26 the tribe of Zebulun; Paltiel son of Azzan, a leader from the 27 tribe of Issachar; Ahihud son of Shelomi, a leader from the 28 tribe of Asher; and Pedahel son of Ammihud, a leader 29 from the tribe of Naphtali.” These are the ones whom the LORD com- manded to apportion the inheritance to the Isra- Forty-Eight Cities for the Levites elites in the land of Ca" + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "–8 ; 1 Chronicles 6:54–81) 21 Now the family heads of the Levites ap- proached Eleazar the priest, Joshua son 2 of Nun, and the heads of the other tribes of Israel at Shiloh in the land of Canaan and said to them, “The LORD commanded through Moses that we be given cities in which to live, together with pas- 3 turelands for our livestock.” So by the command of the LORD, the Israelites gave the Levites these cities and their pas- turelands out of their own inheritance: 4 The first lot came out for the Kohathite clans. The Levites who were descendants of Aaron the priest received thirteen cities by The remaining descendants of Kohath received ten cities by lot from the tribes of Ephraim, Dan, and the half-tribe of 6 Manasseh. The descendants of Gershon received thir- teen cities by lot from the tribes of Issachar, Asher, Naphtali, and the half-tribe of Manas- 7 seh in Bashan. And the descendants of Merari received twelve cities from the tribes of Reuben, Gad, and Zebulun. 8 So the Israelites allotted to the Levites these cities, together with their pasturelands, as the 9 LORD had commanded through Moses. 10 From the tribes of Judah and Simeon, they des- to the descend- ignated these cities by name ants of Aaron from the Kohathite clans of the Levites, because the first lot fell to them: 11 12 They gave them Kiriath-arba (that is, Heb- ron), with its surrounding pasturelands, in the hill country of Judah. (Arba was the fa- But they had given the fields ther of Anak.) and villages" + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 13, + "text": "| 163 Zelophehad’s Daughters Marry" + } + ] + } + ] + }, + { + "name": "Deuteronomy", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 6, + "text": "through" + }, + { + "verseNum": 9, + "text": "–18) 13 14 The next day Moses took his seat to judge the people, and they stood around him from morning until evening. When his father-in-law saw all that Moses was doing for the people, he asked, “What is this that you are doing for the people? Why do you sit alone as judge, with all the people 15 standing around you from morning till evening?” 16 “Because the people come to me to inquire of “Whenever they have a God,” Moses replied. dispute, it is brought to me to judge between one man and another, and I make known to them the 17 statutes and laws of God.” 18 But Moses’ father-in-law said to him, “What Surely you and these you are doing is not good. people with you will wear yourselves out, be- cause the task is too heavy for you. You cannot 19 handle it alone. 20 Now listen to me; I will give you some advice, and may God be with you. You must be the peo- ple’s representative before God and bring their Teach them the statutes and causes to Him. laws, and show them the way to live and the 21 work they must do. Furthermore, select capable men from among the people—God-fearing, trustworthy men who are averse to dishonest gain. Appoint them over the people as leaders of thousands, of hundreds, 22 of fifties, and of tens. Have these men judge the people at all times. Then they can bring you any major issue, but all minor cases they can judge on their own, so that your load may be lightened as they share it with 23 you. If you follow this advice and God so directs you, then you w" + }, + { + "verseNum": 26, + "text": "–33) have seemed the same to them!” 14 2 Then the whole congregation lifted up their voices and cried out, and that night All the Israelites grumbled the people wept. against Moses and Aaron, and the whole congre- gation said to them, “If only we had died in the land of Egypt, or if only we had died in this wil- Why is the LORD bringing us into this derness! land to fall by the sword? Our wives and children will become plunder. Would it not be better for 4 us to go back to Egypt?” 3 So they said to one another, “Let us appoint a leader and return to Egypt.” 5 Then Moses and Aaron fell facedown before the 6 whole assembly of the congregation of Israel. devotion, just as You have forgiven them ever God’s Forgiveness and Judgment since they left Egypt.”" + }, + { + "verseNum": 34, + "text": "–40)" + }, + { + "verseNum": 41, + "text": "–46) Israelites, the people mourned bitterly. 40 Early the next morning they got up and went up toward the ridge of the hill country. “We have indeed sinned,” they said, “but we will go to the 41 place the LORD has promised.” 43 42 But Moses said, “Why are you transgressing the commandment of the LORD? This will not succeed! Do not go up, lest you be struck down by your enemies, because the LORD is not among you. For there the Amalekites and Canaanites will face you, and you will fall by the sword. Be- cause you have turned away from the LORD, He 44 will not be with you.” But they dared to go up to the ridge of the hill country, though neither Moses nor the ark of the 45 covenant of the LORD moved from the camp. Then the Amalekites and Canaanites who lived in that part of the hill country came down, attacked them, and routed them all the way to Laws about Offerings Hormah. 2 “Speak to Then the LORD said to Moses, 3 the Israelites and tell them: After you en- ter the land that I am giving you as a home and you present a food offering to the LORD from the herd or flock to produce a pleasing aroma to the LORD—either a burnt offering or a sacrifice, for a special vow or freewill offering or appointed then the one presenting his offering to feast— a 4 A tenth of an ephah the LORD shall also present a grain offering of a b 4 a quarter hin of oil 4 15 d With a ram you are to prepare a grain offering of two-tenths of an ephah of fine flour mixed with a third of a hin of olive oil, an" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 12, + "text": "| 165 26 But you were unwilling to go up; you rebelled 27 against the command of the LORD your God. You grumbled in your tents and said, “Because the LORD hates us, He has brought us out of the land of Egypt to deliver us into the hand of the Where can we go? Amorites to be annihilated. Our brothers have made our hearts melt, saying: ‘The people are larger and taller than we are; the cities are large, with walls up to the heavens. We 29 ” even saw the descendants of the Anakim there.’ 28 30 31 So I said to you: “Do not be terrified or afraid The LORD your God, who goes before of them! you, will fight for you, just as you saw Him do for and in the wilderness, where the you in Egypt LORD your God carried you, as a man carries his son, all the way by which you traveled until you 32 reached this place.” 33 But in spite of all this, you did not trust the LORD your God, who went before you on the journey, in the fire by night and in the cloud by day, to seek out a place for you to camp and to Israel’s Penalty" + }, + { + "verseNum": 13, + "text": "28 of Esau drove them out. They destroyed the Ho- rites from before them and settled in their place, just as Israel did in the land that the LORD gave 13 them as their possession.) “Now arise and cross over the Brook of Zered.” 14 So we crossed over the Brook of Zered. 29 You can sell us turn to the right or to the left. food to eat and water to drink in exchange for sil- ver. Only let us pass through on foot, just as the descendants of Esau who live in Seir and the Mo- abites who live in Ar did for us, until we cross the Jordan into the land that the LORD our God is 30 giving us.” The time we spent traveling from Kadesh-bar- nea until we crossed over the Brook of Zered was thirty-eight years, until that entire generation of fighting men had perished from the camp, as the Indeed, the LORD’s LORD had sworn to them. hand was against them, to eliminate them from 16 the camp, until they had all perished. 15 17 18 the LORD said to me, Now when all the fighting men among the peo- “Today ple had died, 19 you are going to cross the border of Moab at Ar. But when you get close to the Ammonites, do not harass them or provoke them, for I will not give you any of the land of the Ammonites. I have given it to the descendants of Lot as their posses- 20 sion.” 22 21 (That too was regarded as the land of the Rephaim, who used to live there, though the They Ammonites called them Zamzummites. were a people great and many, as tall as the Ana- kites. But the LORD destroyed them from before the A" + }, + { + "verseNum": 24, + "text": "–37) looks the wasteland. 21 b 22 Then Israel sent messengers to Sihon king of “Let us pass through the Amorites, saying, your land. We will not turn aside into any field or vineyard, or drink water from any well. We will stay on the King’s Highway until we have passed 23 through your territory.” But Sihon would not let Israel pass through his territory. Instead, he gathered his whole army c and went out to confront Israel in the wilderness. 24 he fought against Israel. When he came to Jahaz, And Israel put him to the sword and took possession of his land, from the Arnon to the Jabbok—but only up to the border of the Ammo- 25 nites, because it was fortified. d 26 Israel captured all the cities of the Amorites and occupied them, including Heshbon and all its villages. Heshbon was the city of Sihon king of the Amorites, who had fought against the former 27 king of Moab and taken all his land as far as the Arnon. a 16 Beer was rugged That is why the poets say: c 23 Jahaz Jeshimon because it was strong . Or means b 20 e 30 well" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–11) which reaches to Medeba. ” 31 32 So Israel lived in the land of the Amorites. After Moses had sent spies to Jazer, Israel cap- tured its villages and drove out the Amorites who 33 were there. Then they turned and went up the road to Ba- shan, and Og king of Bashan and his whole army 34 came out to meet them in battle at Edrei. But the LORD said to Moses, “Do not fear him, for I have delivered him into your hand, along with all his people and his land. Do to him as you did to Sihon king of the Amorites, who lived in 35 Heshbon.” So they struck down Og, along with his sons and his whole army, until no remnant was left. Balak Summons Balaam And they took possession of his land. 22 Then the Israelites traveled on and camped in the plains of Moab near the 2 Jordan, across from Jericho. 3 4 Now Balak son of Zippor saw all that Israel had and Moab was terrified of done to the Amorites, the people because they were numerous. Indeed, Moab dreaded the Israelites. So the Moabites said to the elders of Midian, “This horde will de- vour everything around us, as an ox licks up the grass of the field.” 5 Since Balak son of Zippor was king of Moab at he sent messengers to summon that time, Balaam son of Beor at Pethor, which is by the Eu- phrates in the land of his people. f ; literally Or Hebrew d 24 We demolished them until fire spread to Medeba is a variant of ; see 1 Chr. 6:78. Jahzah Or because the territory the River f 5 148 |" + }, + { + "verseNum": 12, + "text": "–22 ;" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 5, + "text": "| 167 6 walls and gates and bars, and there were many a We devoted them to more unwalled villages. destruction, as we had done to Sihon king of Heshbon, utterly destroying the men, women, 7 and children of every city. the LORD gives rest to your brothers as He has to you, and they too have taken possession of the land that the LORD your God is giving them across the Jordan. Then each of you may return 21 to the possession I have given you.” But all the livestock and plunder of the cities we 8 carried off for ourselves. 9 10 At that time we took from the two kings of the Amorites the land across the Jordan, from the Arnon Valley as far as Mount Hermon— which the Sidonians call Sirion but the Amorites call Senir— all the cities of the plateau, all of Gil- ead, and all of Bashan as far as the cities of 11 Salecah and Edrei in the kingdom of Og. (For only Og king of Bashan had remained of the remnant of the Rephaim. His bed of iron, nine cubits long and four cubits wide, is still in Rab- Land Division East of the Jordan bah of the Ammonites.)" + }, + { + "verseNum": 6, + "text": "6 20 Observe them care- about to enter and possess. fully, for this will show your wisdom and under- standing in the sight of the peoples, who will hear of all these statutes and say, “Surely this great na- 7 tion is a wise and understanding people.” 8 For what nation is great enough to have a god as near to them as the LORD our God is to us whenever we call on Him? And what nation is great enough to have righteous statutes and ordinances like this entire law I set before you 9 today? Yet the LORD has taken nations under heaven. you and brought you out of the iron furnace, out of Egypt, to be the people of His inheritance, as 21 you are today. The LORD, however, was angry with me on ac- count of you, and He swore that I would not cross the Jordan to enter the good land that the LORD For I your God is giving you as an inheritance. will not be crossing the Jordan, because I must die in this land. But you shall cross over and take 23 possession of that good land. 22 10 Only be on your guard and diligently watch yourselves, so that you do not forget the things your eyes have seen, and so that they do not slip from your heart as long as you live. Teach them a The day to your children and grandchildren. you stood before the LORD your God at Horeb, the LORD said to me, “Gather the people before Me to hear My words, so that they may learn to fear Me all the days they live on the earth, and 11 that they may teach them to their children.” You came near and stood at the base of the moun" + }, + { + "verseNum": 15, + "text": "–31 ;" + }, + { + "verseNum": 24, + "text": "BYZ and TR" + }, + { + "verseNum": 40, + "text": "may be presented as a continuous section of unbroken speech by Moses. In lowlands place of multiple levels of nested quotes, this section has been set apart with a double space. Hebrew or ; that is, the western foothills of Judea Israel’s Rebellion" + }, + { + "verseNum": 41, + "text": "–43 ; 19:1–14 ;" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "through" + }, + { + "verseNum": 12, + "text": "| 169 47 48 They took possession of the land belonging to Sihon and to Og king of Bashan—the two Amo- ex- rite kings across the Jordan to the east— tending from Aroer on the rim of the Arnon Val- 49 (that is, Hermon), ley as far as Mount Siyon including all the Arabah on the east side of the below Jordan and as far as the Sea of the Arabah, The Covenant at Horeb the slopes of Pisgah. a b 5 c Then Moses summoned all Israel and said to them: Hear, O Israel, the statutes and ordinances that I declare in your hearing this day. Learn them and The LORD our God observe them carefully. 3 made a covenant with us at Horeb. 2 d 4 He did not make this covenant with our fathers, The but with all of us who are alive here today. LORD spoke with you face to face out of the fire The Ten Commandments" + }, + { + "verseNum": 13, + "text": "13 14 Six days you shall labor and do all you. but the seventh day is a Sab- your work, bath to the LORD your God, on which you must not do any work—neither you, nor your son or daughter, nor your manservant or maidservant, nor your ox or donkey or any of your livestock, nor the foreigner within your gates, so that your manservant Re- and maidservant may rest as you do. member that you were a slave in the land of Egypt, and that the LORD your God brought you out of there with a mighty hand and an outstretched arm. That is why the LORD your God has commanded you to keep the Sab- 16 bath day. 15 Honor your father and your mother, as the LORD your God has commanded you, so that your days may be long and that it may go well with you in the land that the LORD your 17 God is giving you. 18 a b c You shall not murder. You shall not commit adultery. 19 20 You shall not steal. e 21 your neighbor. d f You shall not bear false witness against You shall not covet your neighbor’s wife. You shall not covet your neighbor’s house or field, or his manservant or maidservant, or his ox or donkey, or anything that belongs to your neighbor.” Moses Intercedes for the People" + }, + { + "verseNum": 16, + "text": "b 25 strong ; SBL, . Or 19 NA, WH, and BYZ do not include 35 20 35" + }, + { + "verseNum": 17, + "text": "BYZ and TR include is an Aramaic expression of contempt. Or Or ; Greek 25 42" + }, + { + "verseNum": 18, + "text": "Gehenna l 11 g 20 or dead h 23 Can both fresh and bitter BYZ and TR h i believed God, and it was credited to him as right- 24 eousness,” and he was called a friend of God. As you can see, a man is justified by his deeds 25 and not by faith alone. j In the same way, was not even Rahab the pros- titute justified by her actions when she wel- 26 and sent them off on another comed the spies route? As the body without the spirit is dead, Taming the Tongue" + }, + { + "verseNum": 21, + "text": "raised Christ from the dead Those being in the flesh Literally b 23 f 8 h captive to the law of sin being in my members. me d 2 c 1 e 3 in in the like- g 10 BYZ and TR yet the Spirit is life BYZ and TR Literally NA, BYZ, and TR Literally ; similarly in verse 9 Or 1014 |" + }, + { + "verseNum": 22, + "text": "–33 ;" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–19 ;" + }, + { + "verseNum": 4, + "text": "–5" + }, + { + "verseNum": 5, + "text": "SBL, NE, and WH" + }, + { + "verseNum": 13, + "text": "" + }, + { + "verseNum": 16, + "text": "" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 11, + "text": "| 171 25 we may always be prosperous and preserved, as we are to this day. And if we are careful to ob- serve every one of these commandments before the LORD our God, as He has commanded us, Drive Out the Nations then that will be our righteousness.” 7 When the LORD your God brings you into the land that you are entering to possess, and He drives out before you many nations—the Hittites, Girgashites, Amorites, Canaanites, Per- izzites, Hivites, and Jebusites, seven nations and when the larger and stronger than you— LORD your God has delivered them over to you d to defeat them, then you must devote them to with complete destruction. 3 them and show them no mercy. Make no treaty 2 c 4 Do not intermarry with them. Do not give your daughters to their sons or take their daughters for your sons, because they will turn your sons away from following Me to serve other gods. Then the anger of the LORD will burn against 5 you, and He will swiftly destroy you. 6 Instead, this is what you are to do to them: tear down their altars, smash their sacred pillars, cut down their Asherah poles, and burn their idols in For you are a people holy to the LORD the fire. your God. The LORD your God has chosen you to be a people for His prized possession out of all 7 peoples on the face of the earth. 8 The LORD did not set His affection on you and choose you because you were more numerous than the other peoples, for you were the fewest But because the LORD loved you of all peoples. and kept the oath He" + }, + { + "verseNum": 12, + "text": "–26) 3" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 3, + "text": "" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 7, + "text": "–29 ;" + }, + { + "verseNum": 21, + "text": "| 173 a At Horeb From the day you left the land of Egypt until you reached this place, you have been rebelling 8 against the LORD. 9 you provoked the LORD, and He was angry enough to destroy you. When I went up on the mountain to receive the tablets of stone, the tablets of the covenant that the LORD made with you, I stayed on the mountain forty days and 10 forty nights. I ate no bread and drank no water. 12 Then the LORD gave me the two stone tablets, inscribed by the finger of God with the exact words that the LORD spoke to you out of the fire 11 on the mountain on the day of the assembly. And at the end of forty days and forty nights, the LORD gave me the two stone tablets, the tab- lets of the covenant. And the LORD said to me, “Get up and go down from here at once, for your people, whom you brought out of Egypt, have corrupted themselves. How quickly they have turned aside from the way that I commanded them! They have made for themselves a molten 13 image.” 14 The LORD also said to me, “I have seen this people, and they are indeed a stiff-necked peo- Leave Me alone, so that I may destroy them ple. and blot out their name from under heaven. Then I will make you into a nation mightier and 15 greater than they are.” 16 So I went back down the mountain while it was blazing with fire, with the two tablets of the cov- enant in my hands. And I saw how you had sinned against the LORD your God; you had made for yourselves a molten calf. You had turned aside quickly from the way t" + }, + { + "verseNum": 22, + "text": "a had made, and burned it in the fire. Then I crushed it and ground it to powder as fine as dust, and I cast it into the stream that came down 22 from the mountain. c You continued to provoke the LORD at Tabe- and at Kibroth-hattaavah. And when the LORD sent you out from Kadesh- barnea, He said, “Go up and possess the land that I have given you.” at Massah, 23 rah, b 24 But you rebelled against the command of the LORD your God. You neither believed Him nor You have been rebelling against obeyed Him. So the LORD since the day I came to know you. I fell down before the LORD for forty days and forty nights, because the LORD had said He 26 would destroy you. 25 27 And I prayed to the LORD and said, “O Lord GOD, do not destroy Your people, Your inher- itance, whom You redeemed through Your great- ness and brought out of Egypt with a mighty Remember Your servants Abraham, hand. Isaac, and Jacob. Overlook the stubbornness of 28 this people and the wickedness of their sin. Otherwise, those in the land from which You brought us out will say, ‘Because the LORD was not able to bring them into the land He had prom- ised them, and because He hated them, He has 29 brought them out to kill them in the wilderness.’ But they are Your people, Your inheritance, whom You brought out by Your great power and New Stone Tablets" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "–11) seen.” 34 Then the LORD said to Moses, “Chisel out two stone tablets like the originals, and I c 12 b 7 a 19 will write on them the words that were on the covenant to thousands" + }, + { + "verseNum": 12, + "text": "–22) 13 14 15 Now, therefore, fear the LORD and serve Him in sincerity and truth; cast aside the gods your fa- thers served beyond the Euphrates and in Egypt, But if it is unpleasing in and serve the LORD. your sight to serve the LORD, then choose for yourselves this day whom you will serve, whether the gods your fathers served beyond the Euphrates, or the gods of the Amorites in whose land you are living. As for me and my house, we 16 will serve the LORD!” 17 The people replied, “Far be it from us to for- For the sake the LORD to serve other gods! LORD our God brought us and our fathers out of the land of Egypt, out of the house of slavery, and performed these great signs before our eyes. He also protected us throughout our journey and among all the nations through which we trav- And the LORD drove out before us all the eled. nations, including the Amorites who lived in the land. We too will serve the LORD, because He is 19 our God!” 18 20 But Joshua said to the people, “You are not able to serve the LORD, for He is a holy God; He is a jealous God; He will not forgive your rebellion or If you forsake the LORD and serve your sins. foreign gods, He will turn and bring disaster on you and consume you, even after He has been 21 good to you.” “No!” replied the people. “We will serve the LORD!” Then Joshua told them, “You are witnesses against yourselves that you have chosen to serve the LORD.” 23 “We are witnesses!” they said. “Now, therefore,” he said, “get rid of the for- eign" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 8, + "text": "–17) 1 2 Now after the death of His servant Moses, the LORD spoke to Joshua son of Nun, Moses’ “Moses My servant is dead. assistant, saying, Now therefore arise, you and all these people, and cross over the Jordan into the land that I am 3 giving to the children of Israel. I have given you every place where the sole of 4 your foot will tread, just as I promised to Moses. Your territory shall extend from the wilderness and Lebanon to the great River Euphrates—all the land of the Hittites—and west as far as the 5 Great Sea. a No one shall stand against you all the days of your life. As I was with Moses, so will I be with 6 you; I will never leave you nor forsake you. b Be strong and courageous, for you shall give these people the inheritance of the land that I 7 swore to their fathers I would give them. 8 Above all, be strong and very courageous. Be careful to observe all the law that My servant Moses commanded you. Do not turn from it to the right or to the left, so that you may prosper wherever you go. This Book of the Law must not depart from your mouth; meditate on it day and night, so that you may be careful to do everything written in it. For then you will prosper and suc- 9 ceed in all you do. Have I not commanded you to be strong and courageous? Do not be afraid; do not be discour- aged, for the LORD your God is with you wher- Joshua Takes Charge ever you go.” 10 11 Then Joshua commanded the officers of the people: “Go through the camp and tell the peo- ple, ‘Prepare yo" + }, + { + "verseNum": 29, + "text": "| 175 Your fa- wonders that your eyes have seen. thers went down to Egypt, seventy in all, and now the LORD your God has made you as numer- Obedience and Discipline (De. 4:1–14) ous as the stars in the sky. 11 You shall therefore love the LORD your God and always keep His charge, His statutes, His ordinances, and His command- 2 ments. a 4 Know this day that it is not your children who have known and seen the discipline of the LORD 3 your God: His greatness, His mighty hand, and the signs and works He His outstretched arm; did in Egypt to Pharaoh king of Egypt and all his land; what He did to the Egyptian army and horses and chariots when He made the waters of engulf them as they pursued you, the Red Sea and how He destroyed them completely, even to 6 what He did for you in the wilderness this day; until you reached this place; and what He did in the midst of all the Israelites to Dathan and Abi- ram, the sons of Eliab the Reubenite, when the earth opened its mouth and swallowed them, their households, their tents, and every living 7 thing that belonged to them. 5 For it is your own eyes that have seen every God’s Great Blessings" + }, + { + "verseNum": 30, + "text": "30 Are not these mountains curse on Mount Ebal. across the Jordan, west of the road toward the sunset, in the land of the Canaanites who live in the Arabah opposite Gilgal near the Oak of 31 Moreh? a 32 For you are about to cross the Jordan to enter and possess the land that the LORD your God is giving you. When you take possession of it and be careful to follow all the statutes settle in it, and ordinances that I am setting before you to- day. One Place for Worship 12 These are the statutes and ordinances you must be careful to follow all the days you live in the land that the LORD, the God of 2 your fathers, has given you to possess. Destroy completely all the places where the na- tions you are dispossessing have served their 3 gods—atop the high mountains, on the hills, and Tear down their altars, under every green tree. smash their sacred pillars, burn up their Asherah poles, cut down the idols of their gods, and wipe You shall not out their names from every place. 5 worship the LORD your God in this way. 4 6 Instead, you must seek the place the LORD your God will choose from among all your tribes to es- tablish as a dwelling for His Name, and there you To that place you are to bring your must go. burnt offerings and sacrifices, your tithes and heave offerings, your vow offerings and freewill offerings, as well as the firstborn of your herds There, in the presence of the LORD and flocks. your God, you and your households shall eat and rejoice in all you do, because the LO" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 29, + "text": "–32 ;" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 5, + "text": ", 17:7, 19:19, 21:21, 22:21, 22:24, 24:7 Literally . Literally" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "–21 ;" + }, + { + "verseNum": 2, + "text": "| 177 7 worship other gods” (which neither you nor your the gods of the peoples fathers have known, around you, whether near or far, whether from you must not one end of the earth or the other), yield to him or listen to him. Show him no pity, 9 and do not spare him or shield him. 8 10 Instead, you must surely kill him. Your hand must be the first against him to put him to death, Stone him and then the hands of all the people. to death for trying to turn you away from the 11 LORD your God, who brought you out of the land Then all of Egypt, out of the house of slavery. Israel will hear and be afraid, and will never again Idolatrous Cities to Be Destroyed do such a wicked thing among you. 12 14 If, regarding one of the cities the LORD your 13 God is giving you to inhabit, you hear it said that wicked men have arisen from among you and have led the people of their city astray, say- ing, “Let us go and serve other gods” (which you then you must inquire, in- have not known), vestigate, and interrogate thoroughly. And if it is established with certainty that this abomination you must has been committed among you, surely put the inhabitants of that city to the all its people and sword. Devote to destruction 16 livestock. 15 c And you are to gather all its plunder in the middle of the public square, and completely burn the city and all its plunder as a whole burnt offer- ing to the LORD your God. The city must remain 17 a mound of ruins forever, never to be rebuilt. 18 Nothing devote" + }, + { + "verseNum": 3, + "text": "3 4 a You must not eat any detestable thing. These are the animals that you may eat: 5 The ox, the sheep, the goat, the deer, the gazelle, the roe deer, the wild goat, the ibex, the antelope, and the mountain sheep. 6 You may eat any animal that has a split hoof di- 7 vided in two and that chews the cud. But of those that chew the cud or have a com- pletely divided hoof, you are not to eat the following: the camel, the rabbit, b or the rock badger. 8 Although they chew the cud, they do not have a divided hoof. They are unclean for as well as the pig; though it has a you, divided hoof, it does not chew the cud. It is unclean for you. You must not eat its meat or touch its carcass. 10 9 Of all the creatures that live in the water, you but you may eat anything with fins and scales, may not eat anything that does not have fins and 11 scales; it is unclean for you. 12 You may eat any clean bird, but these you may not eat: the eagle, the bearded vulture, the black 13 vulture, 14 the red kite, the falcon, any kind of kite, 15 c any kind of raven, the ostrich, 16 kind of hawk, the screech owl, the gull, any the little owl, the great owl, the white 17 owl, 18 the desert owl, the osprey, the cormorant, the stork, any kind of heron, 19 the hoopoe, or the bat. 20 All flying insects are unclean for you; they may But you may eat any clean bird. 21 not be eaten. You must not cook a young goat in its mother’s Giving Tithes milk. (Lev. 27:30–34 ; De. 26:1–15 ; Neh. 13:10–14) 22 23 You must be" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "–6) 10 11 For six years you are to sow your land and but in the seventh year you gather its produce, must let it rest and lie fallow, so that the poor among your people may eat from the field and the wild animals may consume what they leave. 12 Do the same with your vineyard and olive grove. For six days you are to do your work, but on the seventh day you must cease, so that your ox and your donkey may rest and the son of your maidservant may be refreshed, as well as the for- 13 eign resident. Pay close attention to everything I have said to you. You must not invoke the names of other The Three Feasts of Pilgrimage (Lev. 23:1–3) gods; they must not be heard on your lips. 14 Three times a year you are to celebrate a feast 15 to Me. b You are to keep the Feast of Unleavened c Bread as I commanded you: At the appointed time in the month of Abib you are to eat unleav- ened bread for seven days, because that was the month you came out of Egypt. No one may ap- 16 pear before Me empty-handed. d You are also to keep the Feast of Harvest with the firstfruits of the produce from what you sow in the field. e at the end of And keep the Feast of Ingathering the year, when you gather your produce from the 17 field. Three times a year all your males are to appear 18 before the Lord GOD. You must not offer the blood of My sacrifices with anything leavened, nor may the fat of My 19 feast remain until morning. Bring the best of the firstfruits of your soil to the house of the LORD your God. Do" + }, + { + "verseNum": 7, + "text": "–11) 6 m “Be careful not to perform your righteous before men to be seen by them. If you acts do, you will have no reward from your Father in 2 heaven. 3 So when you give to the needy, do not sound a trumpet before you, as the hypocrites do in the synagogues and on the streets, to be honored by men. Truly I tell you, they already have their full But when you give to the needy, do not reward. 4 let your left hand know what your right hand is so that your giving may be in secret. And doing, your Father, who sees what is done in secret, will The Lord’s Prayer" + }, + { + "verseNum": 11, + "text": ". Aware of this, Jesus asked, “Why are you both- b 11 a 6 ering this woman? She has done a beautiful deed the Twelve Unleavened or Aramaic Simon the Jar Maker Simon the Potter d 20 ; see" + }, + { + "verseNum": 12, + "text": "–18) nakedness be exposed on it.’ 26 21 2 “These are the ordinances that you are to set before them: 3 If you buy a Hebrew servant, he is to serve you for six years. But in the seventh year, he shall go free without paying anything. If he arrived alone, he is to leave alone; if he arrived with a wife, she is to leave with him. If his master gives him a wife and she bears him sons or daughters, the woman and her children shall belong to her 5 master, and only the man shall go free. 4 6 But if the servant declares, ‘I love my master and my wife and children; I do not want to go a free,’ then his master is to bring him before the judges. And he shall take him to the door or doorpost and pierce his ear with an awl. Then he 7 shall serve his master for life. 8 11 marital rights of his first wife. If, however, he does not provide her with these three things, she Personal Injury Laws is free to go without monetary payment. 12 13 Whoever strikes and kills a man must surely be put to death. If, however, he did not lie in wait, but God allowed it to happen, then I will ap- 14 point for you a place where he may flee. But if a man schemes and acts willfully against his neighbor to kill him, you must take him away 15 from My altar to be put to death. Whoever strikes his father or mother must 16 surely be put to death. Whoever kidnaps another man must be put to death, whether he sells him or the man is found 17 in his possession. c d his father or mother must Anyone who curses 18 surely be" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 8, + "text": "| 179 worth twice the wages of a hired hand. And the Firstborn Animals" + }, + { + "verseNum": 9, + "text": "–12) sembly; you must not do any regular work. 26 e On the day of firstfruits, when you present an offering of new grain to the LORD during the Feast of Weeks, you are to hold a sacred assem- 27 bly; you must not do any regular work. 28 Present a burnt offering of two young bulls, one ram, and seven male lambs a year old as a pleasing aroma to the LORD, together with their grain offerings of fine flour mixed with oil— three-tenths of an ephah with each bull, two- tenths of an ephah with the ram, and a tenth of 30 an ephah with each of the seven lambs. 29 31 Include one male goat to make atonement for you. Offer them with their drink offerings in addition to the regular burnt offering and its grain offering. The animals must be unblem- The Feast of Trumpets" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 9, + "text": "–14) 9 10 Prior to that time, a man named Simon had practiced sorcery in the city and astounded the people of Samaria. He claimed to be someone and all the people, from the least to the great, greatest, heeded his words and said, “This man is 11 the divine power called the Great Power.” They paid close attention to him because he had astounded them for a long time with his sor- 12 cery. 13 But when they believed Philip as he preached the gospel of the kingdom of God and the name of Jesus Christ, they were baptized, both men and women. Even Simon himself believed and was baptized. He followed Philip closely and was astounded by the great signs and miracles he ob- 14 served. 16 When the apostles in Jerusalem heard that Sa- 15 maria had received the word of God, they sent On their arrival, they Peter and John to them. prayed for them to receive the Holy Spirit. For the Holy Spirit had not yet fallen upon any of them; they had simply been baptized into the Then Peter and John name of the Lord Jesus. laid their hands on them, and they received the 18 Holy Spirit. 17 When Simon saw that the Spirit was given 19 through the laying on of the apostles’ hands, he “Give me this power as offered them money. well,” he said, “so that everyone on whom I lay 20 my hands may receive the Holy Spirit.” 22 21 But Peter replied, “May your silver perish with you, because you thought you could buy the gift You have no part or share of God with money! in our ministry, because your heart is not right" + }, + { + "verseNum": 15, + "text": "–22) 11 h 12 While the man clung to Peter and John, all the people were astonished and ran to them in the walkway called Solomon’s Colonnade. And when Peter saw this, he addressed the people: “Men of Israel, why are you surprised by this? Why do you stare at us as if by our own power or 13 godliness we had made this man walk? i 14 The God of Abraham, Isaac, and Jacob, the God of our fathers, has glorified His servant Jesus. You handed Him over and rejected Him before Pilate, even though he had decided to release You rejected the Holy and Righteous One Him. 15 and asked that a murderer be released to you. You killed the Author of life, but God raised Him from the dead, and we are witnesses of this 16 fact. By faith in the name of Jesus, this man whom you see and know has been made strong. It is Jesus’ name and the faith that comes through Him that has given him this complete healing in fear your presence. the temple In the name of Jesus Christ d 46 c 43 i 13 His child Or Literally about three thousand souls were added that day g 6 f 2 in the colonnade called Solomon’s the temple That is, three in the afternoon Literally Literally ; also in verse 8 SBL, NE, and WH Or ; also in verse 26 17 10" + }, + { + "verseNum": 19, + "text": ". ; also in verses 27 and 30" + }, + { + "verseNum": 20, + "text": "| 181 4 5 jowls, and the stomach. You are to give them the firstfruits of your grain, new wine, and oil, and the first wool sheared from your flock. For the LORD your God has chosen Levi and his sons out of all your tribes to stand and minister in His 6 name for all time. 8 7 Now if a Levite moves from any town of resi- dence throughout Israel and comes in all ear- nestness to the place the LORD will choose, then he shall serve in the name of the LORD his God like all his fellow Levites who stand there before the LORD. They shall eat equal portions, even though he has received money from the sale of Sorcery Forbidden" + }, + { + "verseNum": 21, + "text": "21 You may ask in your heart, “How can we rec- 22 ognize a message that the LORD has not spoken?” When a prophet speaks in the name of the LORD and the message does not come to pass or come true, that is a message the LORD has not spoken. The prophet has spoken presumptu- Cities of Refuge ously. Do not be afraid of him. (Num. 35:9–34 ; De. 4:41–43 ; Josh. 20:1–9) 19 When the LORD your God has cut off the nations whose land He is giving you, and 2 when you have driven them out and settled in their cities and houses, then you are to set apart for yourselves three cities within the land that a You the LORD your God is giving you to possess. are to build roads for yourselves and divide into three regions the land that the LORD your God is giving you as an inheritance, so that any 4 manslayer can flee to these cities. 3 5 Now this is the situation regarding the manslayer who flees to one of these cities to save his life, having killed his neighbor accidentally, If he goes into without intending to harm him: the forest with his neighbor to cut timber and swings his axe to chop down a tree, but the blade flies off the handle and strikes and kills his neigh- bor, he may flee to one of these cities to save his 6 life. 7 Otherwise, the avenger of blood might pursue the manslayer in a rage, overtake him if the dis- tance is great, and strike him dead though he did not deserve to die, since he did not intend any This is why I am commanding you to set harm. 8 apart for yourselves three ci" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 15, + "text": "–21) perish. 15 14 f 18 At that time the disciples came to Jesus and asked, “Who then is the greatest in a 20 the kingdom of heaven?” didrachma BYZ and TR include of fire f 15 ; twice in this verse the Gehenna of fire c 27 a stater e 10 against you Greek g 16 21 But this kind does not come out except by prayer and fasting If your brother sins against you, go and con- 16 front him privately. If he listens to you, you have But if he will not listen, won your brother over. take one or two others along, so that ‘every mat- 17 ter may be established by the testimony of two the If he refuses to listen to or three witnesses.’ the hell b 24 g 11 For the Son of Man came to save the lost ; that is, a silver coin worth approximately one shekel ; see" + }, + { + "verseNum": 21, + "text": "Literally charitable acts" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 15, + "text": "| 183 Has any man planted a vineyard and not begun to enjoy its fruit? Let him return home, or he may die in battle and another man enjoy its fruit. Has any man become pledged to a woman and not married her? Let him return home, or he may die 8 in battle and another man marry her.” 7 Then the officers shall speak further to the army, saying, “Is any man afraid or fainthearted? Let him return home, so that the hearts of his 9 brothers will not melt like his own.” When the officers have finished addressing the 10 army, they are to appoint commanders to lead it. 11 When you approach a city to fight against it, If they ac- you are to make an offer of peace. cept your offer of peace and open their gates, all the people there will become forced laborers to 12 serve you. 14 But if they refuse to make peace with you and 13 wage war against you, lay siege to that city. When the LORD your God has delivered it into your hand, you must put every male to the sword. But the women, children, livestock, and whatever else is in the city—all its spoil—you may take as plunder, and you shall use the spoil of your enemies that the LORD your God gives This is how you are to treat all the cities you. that are far away from you and do not belong to 16 the nations nearby. 15 a However, in the cities of the nations that the LORD your God is giving you as an inheritance, 17 you must not leave alive anything that breathes. For you must devote them to complete de- struction —the Hittites, Amorites, Canaa" + }, + { + "verseNum": 16, + "text": "16 6 when that unloved wife has the firstborn son, man assigns his inheritance to his sons he must not appoint the son of the beloved wife as the 17 firstborn over the son of the unloved wife. Instead, he must acknowledge the firstborn, the son of his unloved wife, by giving him a dou- ble portion of all that he has. For that son is the firstfruits of his father’s strength; the right of the A Rebellious Son" + }, + { + "verseNum": 18, + "text": "–21) 10 11 12 Then Jesus said, “There was a man who had two sons. The younger son said to him, ‘Father, give me my share of the estate.’ So he divided his 13 property between them. After a few days, the younger son got every- thing together and journeyed to a distant coun- try, where he squandered his wealth in wild 14 living. 15 After he had spent all he had, a severe famine swept through that country, and he began to be in need. So he went and hired himself out to a citizen of that country, who sent him into his fields to feed the pigs. He longed to fill his belly with the pods the pigs were eating, but no one 17 would give him a thing. 16 18 Finally he came to his senses and said, ‘How many of my father’s hired servants have plenty of food, but here I am, starving to death! I will get up and go back to my father and say to him, “Father, I have sinned against heaven and against you. I am no longer worthy to be called your 20 son. Make me like one of your hired servants.” ’ 19 So he got up and went to his father. But while he was still in the distance, his father saw him and was filled with compassion. He ran to his 21 son, embraced him, and kissed him. The son declared, ‘Father, I have sinned against heaven and against you. I am no longer ten drachmas a 8 worthy to be called your son. ’ b c 6 ‘A hundred baths of oil’ 23 But the father said to his servants, ‘Quick! Bring the best robe and put it on him. Put a ring Bring the on his finger and sandals on his feet. 24 fattened" + }, + { + "verseNum": 23, + "text": "(see also LXX) 19 Why then was the law given? It was added be- cause of transgressions, until the arrival of the seed to whom the promise referred. It was ad- ministered through angels by a mediator. A mediator is unnecessary, however, for only one 21 party; but God is one. 20 Is the law, then, opposed to the promises of God? Certainly not! For if a law had been given that could impart life, then righteousness would certainly have come from the law. But the Scripture pronounces all things confined by sin, so that by faith in Jesus Christ the promise might 23 be given to those who believe. 22 24 Before this faith came, we were held in custody under the law, locked up until faith should be re- vealed. So the law became our guardian to lead 25 us to Christ, that we might be justified by faith. Now that faith has come, we are no longer un- Sons through Faith in Christ der a guardian. 26 27 29 You are all sons of God through faith in Christ For all of you who were baptized into Jesus. 28 Christ have clothed yourselves with Christ. There is neither Jew nor Greek, slave nor free, male nor female, for you are all one in Christ Jesus. And if you belong to Christ, then you are Abraham’s seed and heirs according to the Sons and Heirs promise. 4 What I am saying is that as long as the heir is a child, he is no different from a slave, alt- hough he is the owner of everything. He is sub- ject to guardians and trustees until the date set 3 by his father. 2 a 5 6 4 slaved under the basic pri" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 3, + "text": "–6. 6 19" + }, + { + "verseNum": 9, + "text": "–14) ” b 15 2 3 And the LORD said to Moses and “Say to the Israelites, ‘When any Aaron, man has a bodily discharge, the discharge is un- This uncleanness is from his discharge, clean. whether his body allows the discharge to flow or blocks it. So his discharge will bring about un- 4 cleanness. Any bed on which the man with the discharge 5 lies will be unclean, and any furniture on which he sits will be unclean. Anyone who touches his bed must wash his clothes and bathe with water, Whoever and he will be unclean until evening. sits on furniture on which the man with the dis- charge was sitting must wash his clothes and bathe with water, and he will be unclean until 7 evening. 6 8 Whoever touches the body of the man with a discharge must wash his clothes and bathe with If water, and he will be unclean until evening. the man with the discharge spits on one who is clean, that person must wash his clothes and bathe with water, and he will be unclean until leprosy evening. mil- Forms of the Hebrew regarding blemishes on garments, utensils, or buildings; here and throughout the remainder of this chapter. The Hebrew translated here as is one singular term; see the footnotes for verses regarding skin diseases, are translated as , traditionally translated as skin diseases and mildew 2 and 34. 110 |" + }, + { + "verseNum": 21, + "text": "| 185 stone her to death. For she has committed an out- rage in Israel by being promiscuous in her fa- ther’s house. So you must purge the evil from 22 among you. a 6 the LORD your God turned the curse into a bless- ing for you, because the LORD your God loves You are not to seek peace or prosperity you. 7 from them as long as you live. If a man is found lying with another man’s wife, both the man who slept with her and the woman must die. You must purge the evil from 23 Israel. If there is a virgin pledged in marriage to a 24 man, and another man encounters her in the city you must take both of and sleeps with her, them out to the gate of that city and stone them to death—the young woman because she did not cry out in the city, and the man because he has violated his neighbor’s wife. So you must purge 25 the evil from among you. 26 But if the man encounters a betrothed woman in the open country, and he overpowers her and lies with her, only the man who has done this Do nothing to the young woman, be- must die. cause she has committed no sin worthy of death. This case is just like one in which a man attacks When he found his neighbor and murders him. her in the field, the betrothed woman cried out, 28 but there was no one to save her. 27 29 If a man encounters a virgin who is not pledged in marriage, and he seizes her and lies with her, and they are discovered, then the man who lay with her must pay the young woman’s father fifty shekels of silver, and she must be- come his w" + }, + { + "verseNum": 22, + "text": "22 require it of you, and you will be guilty of sin. 23 But if you refrain from making a vow, you will Be careful to follow not be guilty of sin. through on what comes from your lips, because you have freely vowed to the LORD your God 24 with your own mouth. When you enter your neighbor’s vineyard, you may eat your fill of grapes, but you must not put 25 any in your basket. When you enter your neighbor’s grainfield, you may pluck the heads of grain with your hand, but you must not put a sickle to your neighbor’s Marriage and Divorce Laws grain." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "–5 ;" + }, + { + "verseNum": 14, + "text": "–15; cited in 1 Timothy 5:18." + }, + { + "verseNum": 16, + "text": "see 2 Chronicles 26:1. some LXX manuscripts include d 22 Elath Eloth e 25 and he was buried in Samaria with is approximately 600 feet or 182.9 meters. ; see 1 Kings 9:26. is a variant of f 29 is also called ; That is, the Dead Sea Hebrew; 356 | 2 Kings 15:1 Azariah Reigns in Judah (2 Chron. 26:3–23) 15 15 a 2 In the twenty-seventh year of Jero- boam’s reign over Israel, Azariah son of Amaziah became king of Judah. He was sixteen years old when he became king, and he reigned 3 in Jerusalem fifty-two years. His mother’s name And he was Jecoliah; she was from Jerusalem. did what was right in the eyes of the LORD, just 4 as his father Amaziah had done. Nevertheless, the high places were not taken away; the people continued sacrificing and burn- b 5 ing incense there. And the LORD afflicted the king with leprosy until the day he died, so that he lived in a sepa- rate house while his son Jotham had charge of 6 the palace and governed the people of the land. As for the rest of the acts of Azariah, along with all his accomplishments, are they not written in 7 the Book of the Chronicles of the Kings of Judah? c And Azariah rested with his fathers and was in the City of David. And his buried near them Zechariah Reigns in Israel son Jotham reigned in his place. 8 In the thirty-eighth year of Azariah’s reign over Judah, Zechariah son of Jeroboam became king of 9 Israel, and he reigned in Samaria six months. And he did evil in the sight of the LORD, as his fathers had done. He did not tur" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 4, + "text": "1028 | 1 Corinthians 9:22 22 the law (though I am not outside the law of God but am under the law of Christ), to win those To the weak I became weak, without the law. to win the weak. I have become all things to all people so that by all possible means I might save 23 some. seized you except what is common to man. And God is faithful; He will not let you be tempted be- yond what you can bear. But when you are tempted, He will also provide an escape, so that Flee from Idolatry" + }, + { + "verseNum": 5, + "text": "26 46" + }, + { + "verseNum": 13, + "text": "–16 ;" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 12, + "text": "| 187 on your journey when you were tired and weary, and they attacked all your stragglers; they had no 19 fear of God. When the LORD your God gives you rest from the enemies around you in the land that He is giv- ing you to possess as an inheritance, you are to blot out the memory of Amalek from under Offering Firstfruits and Tithes heaven. Do not forget! (Lev. 27:30–34 ; De. 14:22–29 ; Neh. 13:10–14) 26 2 When you enter the land that the LORD your God is giving you as an inheritance, you and you take possession of it and settle in it, are to take some of the firstfruits of all your pro- duce from the soil of the land that the LORD your God is giving you and put them in a basket. Then go to the place the LORD your God will choose as to the priest who is a dwelling for His Name, serving at that time, and say to him, “I declare to- day to the LORD your God that I have entered the land that the LORD swore to our fathers to give 4 us.” 3 7 5 6 Then the priest shall take the basket from your hands and place it before the altar of the LORD and you are to declare before the your God, LORD your God, “My father was a wandering Aramean, and he went down to Egypt few in number and lived there and became a great na- But the Egyptians tion, mighty and numerous. mistreated us and afflicted us, putting us to hard So we called out to the LORD, the God of labor. our fathers; and the LORD heard our voice and Then the saw our affliction, toil, and oppression. LORD brought us out of Egypt with" + }, + { + "verseNum": 13, + "text": "13 14 Then you shall declare in the presence of the LORD your God, “I have removed from my house the sacred portion and have given it to the Levite, the foreigner, the fatherless, and the widow, ac- cording to all the commandments You have given me. I have not transgressed or forgotten Your I have not eaten any of the sa- commandments. cred portion while in mourning, or removed any of it while unclean, or offered any of it for the dead. I have obeyed the LORD my God; I have Look done everything You commanded me. down from Your holy habitation, from heaven, and bless Your people Israel and the land You have given us as You swore to our fathers—a Obey the LORD’s Commands land flowing with milk and honey.” 16 15 The LORD your God commands you this day to follow these statutes and ordinances. You must be careful to follow them with all your heart and 17 with all your soul. Today you have proclaimed that the LORD is your God and that you will walk in His ways, keep His statutes and commandments and ordi- 18 nances, and listen to His voice. 19 And today the LORD has proclaimed that you are His people and treasured possession as He promised, that you are to keep all His command- that He will set you high in praise and ments, name and honor above all the nations He has made, and that you will be a holy people to the The Altar on Mount Ebal" + }, + { + "verseNum": 19, + "text": "may be presented as a continuous section of unbroken speech by Moses. In place of multiple levels of nested quotes, this section has been set apart with a double space. faithful- kindness Sinai Hebrew are translated here and ness loyalty to a covenant in most cases throughout the Scriptures as , as well as That is, Mount Sinai, or possibly a mountain in the range containing Mount d 2 loving devotion to thousands ; the range of meaning includes ; forms of the Hebrew loving devotion goodness Or mercy chesed , and f 10 love . , , , 170 |" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 5, + "text": "" + }, + { + "verseNum": 26, + "text": "(see also LXX)" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 15, + "text": "–68) 2 20 Then the LORD said to Moses, Israelites, “Tell the ‘Any Israelite or foreigner living in Israel who gives any of his children to 3 Molech must be put to death. The people of the And I will set My face land are to stone him. against that man and cut him off from his people, because by giving his offspring to Molech, he has defiled My sanctuary and profaned My holy 4 name. And if the people of the land ever hide their eyes 5 and fail to put to death the man who gives one of then I will set My face his children to Molech, against that man and his family and cut off from among their people both him and all who follow 6 him in prostituting themselves with Molech. Whoever turns to mediums or spiritists to prostitute himself with them, I will also set My face against that person and cut him off from his people. d 36 An ephah Literally" + }, + { + "verseNum": 23, + "text": "| 189 the earth will see that you are called by the name 11 of the LORD, and they will stand in awe of you. The LORD will make you prosper abundantly— in the fruit of your womb, the offspring of your livestock, and the produce of your land—in the land that the LORD swore to your fathers to give 12 you. The LORD will open the heavens, His abundant storehouse, to send rain on your land in season and to bless all the work of your hands. You will 13 lend to many nations, but borrow from none. 14 The LORD will make you the head and not the tail; you will only move upward and never down- ward, if you hear and carefully follow the com- mandments of the LORD your God, which I am Do not turn aside to the right giving you today. or to the left from any of the words I command you today, and do not go after other gods to serve The Curses of Disobedience them." + }, + { + "verseNum": 24, + "text": "24 The LORD will turn the rain of your land into dust and powder; it will descend on you from the 25 sky until you are destroyed. 26 The LORD will cause you to be defeated before your enemies. You will march out against them in one direction but flee from them in seven. You will be an object of horror to all the kingdoms of the earth. Your corpses will be food for all the birds of the air and beasts of the earth, with no 27 one to scare them away. The LORD will afflict you with the boils of Egypt, with tumors and scabs and itch from 28 which you cannot be cured. 29 The LORD will afflict you with madness, blind- ness, and confusion of mind, and at noon you will grope about like a blind man in the darkness. You will not prosper in your ways. Day after day you will be oppressed and plundered, with no 30 one to save you. 31 You will be pledged in marriage to a woman, but another man will violate her. You will build a house but will not live in it. You will plant a vine- yard but will not enjoy its fruit. Your ox will be slaughtered before your eyes, but you will not eat any of it. Your donkey will be taken away and not returned to you. Your flock will be given to your 32 enemies, and no one will save you. 33 Your sons and daughters will be given to an- other nation, while your eyes grow weary look- ing for them day after day, with no power in your hand. A people you do not know will eat the produce of your land and of all your toil. All your days you will be oppressed and crushed" + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 4, + "text": ", Isaiah 874 |" + }, + { + "verseNum": 17, + "text": "| 191 a 57 The most gentle and refined woman among you, so gentle and refined she would not venture to set the sole of her foot on the ground, will be- grudge the husband she embraces and her son the afterbirth that comes from and daughter between her legs and the children she bears, because she will secretly eat them for lack of anything else in the siege and distress that your 58 enemy will inflict on you within your gates. If you are not careful to observe all the words of this law which are written in this book, that 59 you may fear this glorious and awesome name— He will bring upon you the LORD your God— and your descendants extraordinary disasters, severe and lasting plagues, and terrible and He will afflict you again chronic sicknesses. with all the diseases you dreaded in Egypt, and 61 they will cling to you. 60 62 The LORD will also bring upon you every sick- ness and plague not recorded in this Book of the You who were as Law, until you are destroyed. numerous as the stars in the sky will be left few in number, because you would not obey the voice 63 of the LORD your God. Just as it pleased the LORD to make you pros- per and multiply, so also it will please Him to annihilate you and destroy you. And you will be uprooted from the land you are entering to 64 possess. 65 Then the LORD will scatter you among all the nations, from one end of the earth to the other, and there you will worship other gods, gods of wood and stone, which neither you nor your fa- Among those n" + }, + { + "verseNum": 18, + "text": "18 a 19 Make sure there is no man or woman, clan or tribe among you today whose heart turns away from the LORD our God to go and worship the gods of those nations. Make sure there is no root among you that bears such poisonous and bitter fruit, because when such a person hears the words of this oath, he invokes a blessing on him- self, saying, ‘I will have peace, even though I walk in the stubbornness of my own heart.’ 20 b This will bring disaster on the watered land as well as the dry. The LORD will never be will- ing to forgive him. Instead, His anger and jeal- ousy will burn against that man, and every curse written in this book will fall upon him. The LORD will blot out his name from under heaven and single him out from all the tribes of Israel for dis- aster, according to all the curses of the covenant 22 written in this Book of the Law. 21 23 Then the generation to come—your sons who follow you and the foreigner who comes from a distant land—will see the plagues of the land and All the sicknesses the LORD has inflicted on it. its soil will be a burning waste of sulfur and salt, unsown and unproductive, with no plant grow- ing on it, just like the destruction of Sodom and Gomorrah, Admah and Zeboiim, which the LORD 24 overthrew in His fierce anger. So all the nations will ask, ‘Why has the LORD done such a thing to this land? Why this great 25 outburst of anger?’ 26 And the people will answer, ‘It is because they abandoned the covenant of the LORD, the God of their fath" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "–10) 10 1 These are the words of Nehemiah son of Hacaliah: a 2 in the twentieth year, In the month of Chislev, Hanani, one while I was in the citadel of Susa, of my brothers, arrived with men from Judah. So I questioned them about the remnant of the Jews who had survived the exile, and also about 3 Jerusalem. And they told me, “The remnant who survived the exile are there in the province, in great trou- ble and disgrace. The wall of Jerusalem is broken 4 down, and its gates have been burned with fire.” When I heard these words, I sat down and wept. I mourned for days, fasting and praying before 5 the God of heaven. Then I said: b “O LORD, God of heaven, the great and awe- some God who keeps His covenant of loving 6 with those who love Him and keep devotion His commandments, let Your eyes be open and Your ears attentive to hear the prayer that I, Your servant, now pray before You day and night for Your servants, the Israelites. 7 I confess the sins that we Israelites have committed against You. Both I and my fa- ther’s house have sinned. We have behaved corruptly against You and have not kept the commandments, statutes, and ordinances 8 that You gave Your servant Moses. e 11 They are Your servants and Your people. You redeemed them by Your great power O Lord, may Your ear be and mighty hand. attentive to my prayer and to the prayers of who delight to revere Your Your servants name. Give Your servant success this day, I pray, and grant him mercy in the sight of this man.” Nehem" + }, + { + "verseNum": 12, + "text": "" + }, + { + "verseNum": 13, + "text": ". j 20 Literally k 21 b 7 see, The Ingrafting of the Gentiles and their backs be bent forever.” 11 q I ask then, did they stumble so as to fall Certainly not! However, be- beyond recovery? cause of their trespass, salvation has come to the But if their Gentiles to make Israel jealous. trespass means riches for the world, and their How beautiful are the feet of those who bring good news d 11 12 c 8 n 6 onomy 32:21 (see also LXX)" + }, + { + "verseNum": 14, + "text": "g 16 ; BYZ and TR h 18 l 3 failure means riches for the Gentiles, how much 13 greater riches will their fullness bring! 15 14 I am speaking to you Gentiles. Inasmuch as I am the apostle to the Gentiles, I magnify my min- in the hope that I may provoke my own istry people to jealousy and save some of them. For if their rejection is the reconciliation of the world, what will their acceptance be but life from If the first part of the dough is holy, the dead? so is the whole batch; if the root is holy, so are 17 the branches. 16 18 Now if some branches have been broken off, and you, a wild olive shoot, have been grafted in among the others to share in the nourishment do not boast over those of the olive root, branches. If you do, remember this: You do not 19 support the root, but the root supports you. 20 You will say then, “Branches were broken off so that I could be grafted in.” That is correct: They were broken off because of unbelief, but you stand by faith. Do not be arrogant, but be For if God did not spare the natural afraid. 22 branches, He will certainly not spare you either. 21 a 23 Take notice, therefore, of the kindness and severity of God: severity to those who fell, but kindness to you, if you continue in His kindness. And if they Otherwise you also will be cut off. 24 do not persist in unbelief, they will be grafted in, For if you for God is able to graft them in again. were cut from a wild olive tree, and contrary to nature were grafted into one that is cultivated" + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 6, + "text": ", 8;" + }, + { + "verseNum": 9, + "text": "–13) elites had settled in their towns. 8 At that time all the people gathered together in the square before the Water Gate, and they asked Ezra the scribe to bring out the Book of the Law of Moses, which the LORD had com- 2 manded for Israel. 3 On the first day of the seventh month, Ezra the priest brought the Law before the assembly of men and women and all who could listen and un- So Ezra read it aloud from daybreak derstand. until noon as he faced the square before the Water Gate, in front of the men and women and those who could understand. And all the people listened attentively to the 4 Book of the Law. Ezra the scribe stood on a high wooden platform built for this occasion. At his right side stood Mattithiah, Shema, Anaiah, Uriah, Hilkiah, and Maaseiah, and at his left were Pedaiah, Mis- hael, Malchijah, Hashum, Hash-baddanah, Zecha- 5 riah, and Meshullam. 8 Jozabad, Hanan, and Pelaiah— Azariah, instructed the people in the Law as they stood in So they read from the Book of the their places. Law of God, explaining it and giving insight, so that the people could understand what was being 9 read. e Nehemiah the governor, Ezra the priest and scribe, and the Levites who were instructing the people said to all of them, “This day is holy to the LORD your God. Do not mourn or weep.” For all the people were weeping as they heard 10 the words of the Law. Then Nehemiah told them, “Go and eat what is rich, drink what is sweet, and send out portions to those who have nothing prep" + }, + { + "verseNum": 21, + "text": "| 193 10 c 11 Then Moses commanded them, “At the end of every seven years, at the appointed time in the year of remission of debt, during the Feast of when all Israel comes before the Tabernacles, LORD your God at the place He will choose, you 12 are to read this law in the hearing of all Israel. 13 Assemble the people—men, women, children, and the foreigners within your gates—so that they may listen and learn to fear the LORD your God and to follow carefully all the words of this Then their children who do not know the law. law will listen and learn to fear the LORD your God, as long as you live in the land that you are God Commissions Joshua crossing the Jordan to possess.” 14 Then the LORD said to Moses, “Behold, the time of your death is near. Call Joshua and pre- sent yourselves at the Tent of Meeting, so that I may commission him.” 15 So Moses and Joshua went and presented them- Then the LORD selves at the Tent of Meeting. appeared at the tent in a pillar of cloud, and the 16 cloud stood over the entrance to the tent. And the LORD said to Moses, “You will soon rest with your fathers, and these people will rise up and prostitute themselves with the foreign gods of the land they are entering. They will for- sake Me and break the covenant I have made 17 with them. On that day My anger will burn against them, and I will abandon them and hide My face from them, so that they will be consumed, and many troubles and afflictions will befall them. On that day they will say, ‘Have" + }, + { + "verseNum": 22, + "text": "testify against them, because it will not be forgot- ten from the lips of their descendants. For I know their inclination, even before I bring them into 22 the land that I swore to give them.” So that very day Moses wrote down this song 23 and taught it to the Israelites. Then the LORD commissioned Joshua son of Nun and said, “Be strong and courageous, for you will bring the Israelites into the land that I swore The Law Placed in the Ark to give them, and I will be with you.” 24 25 26 When Moses had finished writing in a book the he words of this law from beginning to end, gave this command to the Levites who carried “Take this the ark of the covenant of the LORD: Book of the Law and place it beside the ark of the covenant of the LORD your God, so that it may re- For I main there as a witness against you. know how rebellious and stiff-necked you are. If you are already rebelling against the LORD while I am still alive, how much more will you rebel 28 after my death! 27 29 Assemble before me all the elders of your tribes and all your officers so that I may speak these words in their hearing and call heaven and earth to witness against them. For I know that after my death you will become utterly corrupt and turn from the path I have commanded you. And in the days to come, disaster will befall you because you will do evil in the sight of the LORD to provoke Him to anger by the work of your Moses Begins His Song hands.” 30 Then Moses recited aloud to the whole assem- bly of Israe" + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "–47) e 15 Then I saw another great and marvelous sign in heaven: seven angels with the seven final plagues, with which the wrath of God 2 is completed. And I saw something like a sea of glass mixed with fire, beside which stood those who had con- quered the beast and its image and the number 3 of its name. They were holding harps from God, and they sang the song of God’s servant Moses and of the Lamb: “Great and wonderful are Your works, Here is a call for the perseverance of the saints, who keep the commandments of God and the a 18 faith of Jesus. d 14 f 3 616 one like a son of man King of the saints King of the ages TR includes b 5 before the throne of God e 20 1,600 stadia O Lord God Almighty! f Just and true are Your ways, O King of the nations! . c 8 Some manuscripts Or ; see" + }, + { + "verseNum": 5, + "text": "But even if I am being poured out like a drink offering on the sacrifice and service of your faith, So you too I am glad and rejoice with all of you. Timothy and Epaphroditus (1 Cor. 16:10–12) should be glad and rejoice with me. 19 18 22 20 Now I hope in the Lord Jesus to send Timothy to you soon, that I also may be cheered when I learn how you are doing. I have nobody else 21 like him who will genuinely care for your needs. For all the others look after their own inter- But you know ests, not those of Jesus Christ. Timothy’s proven worth, that as a child with his father he has served with me to advance the gos- So I hope to send him as soon as I see what pel. And I trust in the Lord that I happens with me. 25 myself will come soon. 24 23 27 But I thought it necessary to send back to you Epaphroditus, my brother, fellow worker, and 26 fellow soldier, who is also your messenger and For he has been longing minister to my needs. for all of you and is distressed because you heard He was sick indeed, nearly unto he was ill. death. But God had mercy on him, and not only on him but also on me, to spare me sorrow upon 28 sorrow. 29 Therefore I am all the more eager to send him, so that when you see him again you may rejoice, Welcome him in the and I may be less anxious. 30 Lord with great joy, and honor men like him, because he nearly died for the work of Christ, risking his life to make up for your deficit of ser- Righteousness through Faith in Christ vice to me." + }, + { + "verseNum": 8, + "text": ";" + }, + { + "verseNum": 35, + "text": "(see also LXX)" + }, + { + "verseNum": 36, + "text": ";" + }, + { + "verseNum": 42, + "text": "| 195 to newly arrived gods, 18 which your fathers did not fear. 19 You ignored the Rock who brought you forth; you forgot the God who gave you birth. When the LORD saw this, He rejected them, 20 provoked to anger by His sons and daughters. He said: “I will hide My face from them; I will see what will be their end. For they are a perverse generation— 21 children of unfaithfulness. They have provoked My jealousy by that which is not God; they have enraged Me with their a worthless idols. So I will make them jealous by those who are not a people; b 22 I will make them angry by a nation without understanding. For a fire has been kindled by My anger, and it burns to the depths of Sheol; it consumes the earth and its produce, and scorches the foundations of the 23 mountains. I will heap disasters upon them; 24 I will spend My arrows against them. They will be wasted from hunger and ravaged by pestilence and bitter plague; I will send the fangs of wild beasts against them, 25 with the venom of vipers that slither in the dust. Outside, the sword will take their children, and inside, terror will strike 26 the young man and the young woman, the infant and the gray-haired man. I would have said that I would cut them to 27 pieces and blot out their memory from mankind, if I had not dreaded the taunt of the enemy, lest their adversaries misunderstand and say: ‘Our own hand has prevailed; 28 it was not the LORD who did all this.’ ” Israel is a nation devoid of counsel, they would comprehe" + }, + { + "verseNum": 43, + "text": "43 a Rejoice, O heavens, with Him, b and let all God’s angels worship Him. Rejoice, O nations, with His people; c for He will avenge the blood of His children. d h 4 and they sit down at Your feet; each receives Your words— 5 the law that Moses gave us, i the possession of the assembly of Jacob. So the LORD became King in Jeshurun He will take vengeance on His adversaries 6 and repay those who hate Him; 44 He will cleanse His land and His people. e 45 47 son of Nun and Then Moses came with Joshua recited all the words of this song in the hearing 46 of the people. When Moses had finished recit- ing all these words to all Israel, he said to them, “Take to heart all the words I have solemnly de- clared to you this day, so that you may command your children to carefully follow all the words of this law. For they are not idle words to you, be- cause they are your life, and by them you will live long in the land that you are crossing the Jordan Moses’ Death Foretold to possess.” 48 49 On that same day the LORD said to Moses, “Go up into the Abarim Range to Mount Nebo, in the land of Moab across from Jericho, and view the land of Canaan, which I am giving to the Isra- 50 elites as their own possession. And there on the mountain that you climb, you will die and be gathered to your people, just as your brother Aaron died on Mount Hor and was 51 gathered to his people. For at the waters of Meribah-kadesh in the Wilderness of Zin, both of you broke faith with 52 Me among the Israelites" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 12, + "text": "| 197 16 with the choice gifts of the land and and underneath are the everlasting arms. everything in it, 28 He drives out the enemy before you, and with the favor of Him who dwelt in giving the command, ‘Destroy him!’ the burning bush. So Israel dwells securely; May these rest on the head of Joseph the fountain of Jacob lives untroubled 17 and crown the brow of the prince of his 29 in a land of grain and new wine, brothers. where even the heavens drip with dew. His majesty is like a firstborn bull, Blessed are you, O Israel! and his horns are like those of a wild ox. Who is like you, a people saved by the With them he will gore the nations, even to the ends of the earth. Such are the myriads of Ephraim, 18 and such are the thousands of Manasseh.” Concerning Zebulun he said: “Rejoice, Zebulun, in your journeys, 19 and Issachar, in your tents. They will call the peoples to a mountain; there they will offer sacrifices of righteousness. For they will feast on the abundance of 20 the seas and the hidden treasures of the sand.” Concerning Gad he said: “Blessed is he who enlarges the domain of Gad! He lies down like a lion 21 and tears off an arm or a head. He chose the best land for himself, because a ruler’s portion was reserved for him there. He came with the leaders of the people; he administered the LORD’s justice and His ordinances for Israel.” 22 Concerning Dan he said: “Dan is a lion’s cub, 23 leaping out of Bashan.” Concerning Naphtali he said: “Naphtali is abounding with" + } + ] + } + ] + }, + { + "name": "Joshua", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–9) great work that the LORD has done. 8 You shall therefore keep every commandment I am giving you today, so that you may have the strength to go in and possess the land that you and so that are crossing the Jordan to possess, you may live long in the land that the LORD swore to your fathers to give them and their de- 10 scendants, a land flowing with milk and honey. 9 11 For the land that you are entering to possess is not like the land of Egypt, from which you have come, where you sowed your seed and irrigated But the land on foot, like a vegetable garden. that you are crossing the Jordan to possess is a land of mountains and valleys that drinks in the It is a land for which the rain from heaven. LORD your God cares; the eyes of the LORD your God are always on it, from the beginning to the 13 end of the year. 12 then I will provide rain for your your soul, land in season, the autumn and spring rains, that 15 you may gather your grain, new wine, and oil. And I will provide grass in the fields for your 16 livestock, and you will eat and be satisfied. But be careful that you are not enticed to turn 17 aside to worship and bow down to other gods, or the anger of the LORD will be kindled against you. He will shut the heavens so that there will be no rain, nor will the land yield its produce, and you will soon perish from the good Remember God’s Words land that the LORD is giving you. 18 19 Fix these words of mine in your hearts and minds; tie them as reminders on your hands and" + }, + { + "verseNum": 5, + "text": "BYZ and TR include" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 10, + "text": "| 199 So the king’s men set out in pursuit of the spies along the road to the fords of the Jordan, and as The Promise to Rahab soon as they had gone out, the gate was shut. 8 9 a 10 Before the spies lay down for the night, Rahab and said to them, “I know went up on the roof that the LORD has given you this land and that the fear of you has fallen on us, so that all who For dwell in the land are melting in fear of you. we have heard how the LORD dried up the wa- ters of the Red Sea before you when you came out of Egypt, and what you did to Sihon and Og, b the two kings of the Amorites across the Jordan, When we whom you devoted to destruction. heard this, our hearts melted and everyone’s courage failed because of you, for the LORD your God is God in the heavens above and on the earth 12 below. 11 13 Now therefore, please swear to me by the LORD that you will indeed show kindness to my family, because I showed kindness to you. Give that you will spare the lives of me a sure sign my father and mother, my brothers and sisters, and all who belong to them, and that you will de- 14 liver us from death.” “Our lives for your lives!” the men agreed. “If you do not report our mission, we will show you kindness and faithfulness when the LORD gives 15 us the land.” 16 Then Rahab let them down by a rope through the window, since the house where she lived was “Go to the hill built into the wall of the city. country,” she said, “so that your pursuers will not find you. Hide yourselves there" + }, + { + "verseNum": 11, + "text": "11 8 Behold, the ark of the covenant of Jebusites. the Lord of all the earth will go ahead of you into 12 the Jordan. 13 Now choose twelve men from the tribes of Is- rael, one from each tribe. When the feet of the priests who carry the ark of the LORD—the Lord of all the earth—touch down in the waters of the Jordan, its flowing waters will be cut off and will 14 stand up in a heap.” So when the people broke camp to cross the Jordan, the priests carried the ark of the cove- 15 nant ahead of them. a 16 Now the Jordan overflows its banks through- out the harvest season. But as soon as the priests carrying the ark reached the Jordan and their the flowing wa- feet touched the water’s edge, ter stood still. It backed up as far upstream as Adam, a city in the area of Zarethan, while the water flowing toward the Sea of the Arabah (the ) was completely cut off. So the people Salt Sea The priests car- crossed over opposite Jericho. rying the ark of the covenant of the LORD stood firm on dry ground in the middle of the Jordan, while all Israel crossed over the dry ground, until Twelve Stones from the Jordan the entire nation had crossed the Jordan. 17 4 2 3 When the whole nation had finished cross- ing the Jordan, the LORD said to Joshua, “Choose twelve men from among the people, and command them: ‘Take one from each tribe, up for yourselves twelve stones from the middle of the Jordan where the priests were standing, carry them with you, and set them down in the 4 place where you spend" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 8, + "text": "| 201 24 which He dried up just as He did to the Red Sea, He did before us until we had crossed over. this so that all the peoples of the earth may know that the hand of the LORD is mighty, and so that The Circumcision and Passover at Gilgal you may always fear the LORD your God.” 5 Now when all the Amorite kings west of the b Jordan and all the Canaanite kings along the heard how the LORD had dried up the wa- coast ters of the Jordan before the Israelites until they their hearts melted and their had crossed over, 2 spirits failed for fear of the Israelites. c d 3 At that time the LORD said to Joshua, “Make flint knives and circumcise the sons of Israel once again. So Joshua made flint knives and circum- 4 cised the sons of Israel at Gibeath-haaraloth. ” e 5 Now this is why Joshua circumcised them: All those who came out of Egypt—all the men of war—had died on the journey in the wilderness Though all who had after they had left Egypt. come out were circumcised, none of those born in the wilderness on the journey from Egypt had 6 been circumcised. 7 For the Israelites had wandered in the wilder- ness forty years, until all the nation’s men of war who had come out of Egypt had died, since they did not obey the LORD. So the LORD vowed never to let them see the land He had sworn to their fathers to give us, a land flowing with milk and And He raised up their sons in their honey. place, and these were the ones Joshua circum- cised. Until this time they were still uncircum- cised," + }, + { + "verseNum": 9, + "text": "9 of the covenant of the LORD followed them. While the horns continued to sound, the armed troops marched ahead of the priests who blew 10 the horns, and the rear guard followed the ark. But Joshua had commanded the people: “Do not give a battle cry or let your voice be heard; do not let one word come out of your mouth until 11 the day I tell you to shout. Then you are to shout!” So he had the ark of the LORD carried around the city, circling it once. And the people returned 12 to the camp and spent the night there. 13 Joshua got up early the next morning, and the priests took the ark of the LORD. And the seven priests carrying seven rams’ horns kept march- ing ahead of the ark of the LORD and blowing the horns. The armed troops went in front of them and the rear guard followed the ark of the LORD, while the horns kept sounding. So on the sec- ond day they marched around the city once and 15 returned to the camp. They did this for six days. 14 a Then on the seventh day, they got up at dawn and marched around the city seven times in the 16 same manner. That was the only day they circled the city seven times. After the seventh time around, the priests blew the horns, and Joshua 17 commanded the people, “Shout! For the LORD has given you the city! Now the city and every- thing in it must be devoted to the LORD for destruction. Only Rahab the prostitute and all those with her in her house will live, because she hid the spies we sent. But keep away from the things devoted to destr" + }, + { + "verseNum": 26, + "text": ". b 1 Literally 14 out to me. Afterward, make some for yourself for this is what the LORD, the and your son, God of Israel, says: ‘The jar of flour will not be ex- hausted and the jug of oil will not run dry until the day the LORD sends rain upon the face of the 15 earth.’ ” 16 So she went and did according to the word of Elijah, and there was food every day for Elijah The jar of and the woman and her household. flour was not exhausted and the jug of oil did not run dry, according to the word that the LORD had Elijah Raises the Widow’s Son spoken through Elijah. 17 18 Later, the son of the woman who owned the house became ill, and his sickness grew worse “O and worse, until no breath remained in him. man of God,” said the woman to Elijah, “what have you done to me? Have you come to remind me of my iniquity and cause the death of my 19 son?” But Elijah said to her, “Give me your son.” 20 So he took him from her arms, carried him to the upper room where he was staying, and laid him Then he cried out to the LORD, on his own bed. “O LORD my God, have You also brought tragedy on this widow who has opened her home to me, Then he stretched by causing her son to die?” himself out over the child three times and cried out to the LORD, “O LORD my God, please let this 22 boy’s life return to him!” 21 And the LORD listened to the voice of Elijah, 23 and the child’s life returned to him, and he lived. Then Elijah took the child, brought him down from the upper room into the house, and gave" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": ". Most Hebrew manuscripts; many Hebrew Chelubai n 7 Achar Zabdi Caleb sons m 7 o 9 Or LXX (see also" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 2, + "text": "| 203 18 of Judah come forward, and the clan of the Zerahites was selected. He had the clan of the Zerahites come forward, and the family of Zabdi was selected. And he had the family of Zabdi come forward man by man, and Achan son of Carmi, the son of Zabdi, the son of Zerah, of the 19 tribe of Judah, was selected. So Joshua said to Achan, “My son, give glory to the LORD, the God of Israel, and make a confes- sion to Him. I urge you to tell me what you have 20 done; do not hide it from me.” a 21 “It is true,” Achan replied, “I have sinned against the LORD, the God of Israel. This is what I did: When I saw among the spoils a beautiful b cloak from Shinar, two hundred shekels of sil- I and a bar of gold weighing fifty shekels, ver, coveted them and took them. They are hidden in the ground inside my tent, with the silver under- 22 neath.” c 23 So Joshua sent messengers who ran to the tent, and there it all was, hidden in his tent, with the silver underneath. They took the things from inside the tent, brought them to Joshua and all the Israelites, and spread them out before the 24 LORD. Then Joshua, together with all Israel, took Achan son of Zerah, the silver, the cloak, the bar of gold, his sons and daughters, his oxen and don- keys and sheep, his tent, and everything else he 25 owned, and brought them to the Valley of Achor. 26 “Why have you brought this trouble upon us?” said Joshua. “Today the LORD will bring trouble upon you!” And all Israel stoned him to death. Then they s" + }, + { + "verseNum": 3, + "text": "3 6 4 5 So Joshua and the whole army set out to attack Ai. Joshua chose 30,000 mighty men of with these or- valor and sent them out at night ders: “Pay attention. You are to lie in ambush be- hind the city, not too far from it. All of you must be ready. Then I and all the troops with me will advance on the city. When they come out against us as they did the first time, we will flee from They will pursue us until we have drawn them. them away from the city, for they will say, ‘The Israelites are running away from us as they did before.’ So as we flee from them, you are to rise from the ambush and seize the city, for the LORD And your God will deliver it into your hand. when you have taken the city, set it on fire. Do as the LORD has commanded! See, I have given you 9 orders.” 8 7 So Joshua sent them out, and they went to the place of ambush and lay in wait between Bethel and Ai, to the west of Ai. But Joshua spent that 10 night among the people. 11 Joshua got up early the next morning and mo- bilized his men, and he and the elders of Israel Then all the marched before them up to Ai. troops who were with him marched up and approached the city. They arrived in front of Ai and camped to the north of it, with the valley 12 between them and the city. 13 Now Joshua had taken about five thousand men and set up an ambush between Bethel and Ai, to the west of the city. So the forces were stationed with the main camp to the north of the city and the rear guard to the west of the city. 1" + }, + { + "verseNum": 30, + "text": "–35) LORD your God, as He has promised. 27 Then Moses and the elders of Israel com- manded the people: “Keep all the com- 2 mandments I am giving you today. 3 And on the day you cross the Jordan into the land that the LORD your God is giving you, set up large stones and coat them with plaster. Write on them all the words of this law when you have crossed over to enter the land that the LORD your God is giving you, a land flowing with milk and honey, just as the LORD, the God of your fa- And when you have thers, has promised you. crossed the Jordan, you are to set up these stones on Mount Ebal, as I am commanding you today, 5 and you are to coat them with plaster. 4 Moreover, you are to build there an altar to the LORD your God, an altar of stones. You must not uncovered his father’s skirt a 20 You shall build the use any iron tool on them. 6 Or 7 altar of the LORD your God with uncut stones and offer upon it burnt offerings to the LORD your There you are to sacrifice your peace offer- God. ings, eating them and rejoicing in the presence of the LORD your God. And you shall write dis- tinctly upon these stones all the words of this 9 law.” 8 10 Then Moses and the Levitical priests spoke to all Israel: “Be silent, O Israel, and listen! This day you have become the people of the You shall therefore obey the LORD your God. voice of the LORD your God and follow His com- Curses Pronounced from Ebal mandments and statutes I am giving you today.” 11 12 On that day Moses commanded the" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 24, + "text": "| 205 32 33 And there in the presence of the Israelites, Joshua inscribed on the stones a copy of the law All Israel, for- of Moses, which he had written. eigners and citizens alike, with their elders, officers, and judges, stood on both sides of the ark of the covenant of the LORD facing the Levit- ical priests who carried it. Half of the people stood in front of Mount Gerizim and half of them in front of Mount Ebal, as Moses the servant of the LORD had commanded earlier, to bless the 34 people of Israel. 35 Afterward, Joshua read aloud all the words of the law—the blessings and the curses— according to all that is written in the Book of the There was not a word of all that Moses Law. had commanded that Joshua failed to read before the whole assembly of Israel, including the women, the little ones, and the foreigners who The Deceit of the Gibeonites lived among them. 11 He did to the two kings of the Amorites beyond the Jordan—Sihon king of Heshbon and Og king So the el- of Bashan, who reigned in Ashtaroth. ders and inhabitants of our land told us, ‘Take provisions for your journey; go to meet them and say to them: We are your servants. Please make 12 a treaty with us.’ 13 This bread of ours was warm when we packed it at home on the day we left to come to you. But These wineskins look, it is now dry and moldy. were new when we filled them, but look, they are cracked. And these clothes and sandals are worn 14 out from our very long journey.” Then the men of Israel sampled the" + }, + { + "verseNum": 25, + "text": "25 Now we are and that is why we have done this. in your hands. Do to us whatever seems good and 26 right to you.” 27 So Joshua did this and delivered them from the hands of the Israelites, and they did not kill the On that day he made them wood- Gibeonites. cutters and water carriers, as they are to this day for the congregation of the LORD and for the al- The Day the Sun Stood Still tar at the place He would choose. 10 a Now Adoni-zedek king of Jerusalem heard that Joshua had captured Ai and —doing to Ai and its devoted it to destruction king as he had done to Jericho and its king—and 2 that the people of Gibeon had made peace with So Adoni- Israel and were living near them. zedek and his people were greatly alarmed, be- cause Gibeon was a great city, like one of the royal cities; it was larger than Ai, and all its men 3 were mighty. 4 Therefore Adoni-zedek king of Jerusalem sent word to Hoham king of Hebron, Piram king of Jarmuth, Japhia king of Lachish, and Debir king of “Come up and help me. We will Eglon, saying, attack Gibeon, because they have made peace 5 with Joshua and the Israelites.” So the five kings of the Amorites—the kings of Jerusalem, Hebron, Jarmuth, Lachish, and Eglon—joined forces and advanced with all their armies. They camped before Gibeon and made 6 war against it. Then the men of Gibeon sent word to Joshua in the camp at Gilgal: “Do not abandon your serv- ants. Come quickly and save us! Help us, because all the kings of the Amorites from the hill cou" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 2, + "text": ". Hebrew; LXX 210 |" + }, + { + "verseNum": 6, + "text": "| 207 When they had brought the kings to Joshua, he summoned all the men of Israel and said to the army commanders who had accompanied him, “Come here and put your feet on the necks of these kings.” So the commanders came forward and put their 25 feet on their necks. “Do not be afraid or discouraged,” Joshua said. “Be strong and courageous, for the LORD will do 26 this to all the enemies you fight.” a 27 After this, Joshua struck down and killed the and kings, and he hung their bodies on five trees At sunset Joshua left them there until evening. ordered that they be taken down from the trees and thrown into the cave in which they had hid- den. Then large stones were placed against the mouth of the cave, and the stones are there to 28 this day. On that day Joshua captured Makkedah and put it to the sword, along with its king. He de- voted to destruction everyone in the city, leaving no survivors. So he did to the king of Makkedah Conquest of the Southern Cities as he had done to the king of Jericho. 29 30 Then Joshua and all Israel with him moved on from Makkedah to Libnah and fought against And the LORD also delivered that city Libnah. and its king into the hand of Israel, and Joshua put all the people to the sword, leaving no survi- vors. And he did to the king of Libnah as he had 31 done to the king of Jericho. 32 And Joshua and all Israel with him moved on from Libnah to Lachish. They laid siege to it and And the LORD delivered fought against it. Lachish into the hand of I" + }, + { + "verseNum": 7, + "text": "7 21 8 So by the waters of Merom, Joshua and his whole army came upon them suddenly and at- tacked them, and the LORD delivered them into the hand of Israel, who struck them down and pursued them all the way to Greater Sidon and Misrephoth-maim, and eastward as far as the Valley of Mizpeh. They struck them down, leav- ing no survivors. Joshua treated them as the LORD had told him; he hamstrung their horses 10 and burned up their chariots. 9 11 At that time Joshua turned back and captured Hazor and put its king to the sword, because Hazor was formerly the head of all these king- doms. The Israelites put everyone in Hazor to the sword, devoting them to destruction. Noth- ing that breathed remained, and Joshua burned 12 down Hazor itself. a 13 Joshua captured all these kings and their cities and put them to the sword. He devoted them to destruction, as Moses the LORD’s servant had commanded. Yet Israel did not burn any of the cities built on their mounds, except Hazor, which 14 Joshua burned. 15 The Israelites took for themselves all the plun- der and livestock of these cities, but they put all the people to the sword until they had com- pletely destroyed them, not sparing anyone who breathed. As the LORD had commanded His servant Moses, so Moses commanded Joshua. That is what Joshua did, leaving nothing undone Joshua Takes the Whole Land of all that the LORD had commanded Moses. 16 17 So Joshua took this entire region: the hill coun- try, all the Negev, all the land of Goshen," + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 23, + "text": ". 208 |" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–7) 1 After the death of Joshua, the Israelites in- quired of the LORD, “Who will be the first to 2 go up and fight for us against the Canaanites?” “Judah shall go up,” answered the LORD. “In- 3 deed, I have delivered the land into their hands.” Then the men of Judah said to their brothers the Simeonites, “Come up with us to our allotted territory, and let us fight against the Canaanites. And we likewise will go with you to your terri- 4 tory.” So the Simeonites went with them. When Judah attacked, the LORD delivered the Canaanites and Perizzites into their hands, and 5 they struck down ten thousand men at Bezek. And there they found Adoni-bezek and fought against him, striking down the Canaanites and 6 Perizzites. 7 As Adoni-bezek fled, they pursued him, seized him, and cut off his thumbs and big toes. Then Adoni-bezek said, “Seventy kings with their thumbs and big toes cut off have gathered the scraps under my table. As I have done to them, so God has repaid me.” And they brought him to Je- The Capture of Jerusalem and Hebron rusalem, where he died." + }, + { + "verseNum": 8, + "text": "–14) 32 3 2 Now the Reubenites and Gadites, who had very large herds and flocks, sur- veyed the lands of Jazer and Gilead, and they saw So the that the region was suitable for livestock. Gadites and Reubenites came to Moses, Eleazar the priest, and the leaders of the congregation, “Ataroth, Dibon, Jazer, Nimrah, Hesh- and said, bon, Elealeh, Sebam, which the LORD conquered before the congregation of Israel, are suitable for livestock—and your serv- 5 ants have livestock.” Nebo, and Beon, 4 a “If we have found favor in your sight,” they said, “let this land be given to your servants as a pos- 6 session. Do not make us cross the Jordan.” But Moses asked the Gadites and Reubenites, 7 “Shall your brothers go to war while you sit here? Why are you discouraging the Israelites from crossing into the land that the LORD has given This is what your fathers did when I sent them? 9 them from Kadesh-barnea to inspect the land. 8 10 For when your fathers went up to the Valley of Eshcol and saw the land, they discouraged the Is- raelites from entering the land that the LORD had So the anger of the LORD was kin- given them. 11 dled that day, and He swore an oath, saying, ‘Because they did not follow Me wholeheart- edly, not one of the men twenty years of age or older who came out of Egypt will see the land 12 that I swore to give Abraham, Isaac, and Jacob— not one except Caleb son of Jephunneh the Kenizzite and Joshua son of Nun—because they The an- did follow the LORD wholeheartedly.’ ger o" + }, + { + "verseNum": 14, + "text": "| 209 the territory of Ekron on the north (consid- ered to be Canaanite territory)—that of the five Philistine rulers of Gaza, Ashdod, Ashkelon, Gath, and Ekron, as well as that of 4 the Avvites; c to the south, all the land of the Canaanites, of the Sidonians to Aphek, as from Mearah 5 far as the border of the Amorites; d the land of the Gebalites; and all Lebanon to the east, from Baal-gad below Mount Hermon to Lebo-hamath. 6 All the inhabitants of the hill country from Leb- anon to Misrephoth-maim—all the Sidonians—I Myself will drive out before the Israelites. Be sure to divide it by lot as an inheritance to Israel, Now therefore di- as I have commanded you. vide this land as an inheritance to the nine tribes The Inheritance East of the Jordan and the half-tribe of Manasseh.”" + }, + { + "verseNum": 15, + "text": "Reuben’s Inheritance 15 This is what Moses had given to the clans of the 16 tribe of Reuben: 17 19 20 18 The territory from Aroer on the rim of the Arnon Valley, along with the city in the middle of the valley, to the whole plateau to Heshbon and all its cit- beyond Medeba, ies on the plateau, including Dibon, Bamoth- Jahaz, Kedemoth, baal, Beth-baal-meon, Mephaath, Kiriathaim, Sibmah, Zereth- Beth-peor, shahar on the hill in the valley, 21 the slopes of Pisgah, and Beth-jeshimoth— all the cities of the plateau and all the king- dom of Sihon king of the Amorites, who reigned in Heshbon until Moses killed him and the chiefs of Midian (Evi, Rekem, Zur, Hur, and Reba), the princes of Sihon who 22 lived in the land. 23 The Israelites also killed the diviner Ba- laam son of Beor along with the others they And the border of the put to the sword. Reubenites was the bank of the Jordan. This was the inheritance of the clans of the Reu- Gad’s Inheritance benites, including the cities and villages. 24 This is what Moses had given to the clans of the 25 tribe of Gad: The territory of Jazer, all the cities of Gil- ead, and half the land of the Ammonites as 26 far as Aroer, near Rabbah; the territory from Heshbon to Ramath- mizpeh and Betonim, and from Mahanaim to 27 the border of Debir; a and in the valley, Beth-haram, Beth-nim- rah, Succoth, and Zaphon, with the rest of the kingdom of Sihon king of Heshbon (the terri- tory on the east side of the Jordan up to the edge of the Sea of Chinn" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 13, + "text": "–19) 8 9 Then the men of Judah fought against Jerusalem and captured it. They put the city to the sword Afterward, the men of Judah and set it on fire. marched down to fight against the Canaanites a living in the hill country, in the Negev, and in the 10 foothills. Judah also marched against the Canaanites who were living in Hebron (formerly known as Kiriath-arba), and they struck down Sheshai, 11 Ahiman, and Talmai. 12 From there they marched against the inhabitants of Debir (formerly known as lowlands a 9 And Caleb said, “To the man Kiriath-sepher). d 17 c 16 Shephelah cherem ; the western foothills of Judea e 17 Hormah Heb. or That is, Jericho Forms of the Heb. destroying or by giving as an offering. 13 who strikes down Kiriath-sepher and captures it, So I will give my daughter Acsah in marriage.” Othniel son of Caleb’s younger brother Kenaz captured the city, and Caleb gave his daughter b 14 Acsah to him in marriage. One day Acsah came to Othniel and urged him to ask her father for a field. When she got off her 15 donkey, Caleb asked her, “What do you desire?” “Give me a blessing,” she answered. “Since you have given me land in the Negev, give me springs of water as well.” So Caleb gave her both the upper and lower 16 springs. c Now the descendants of Moses’ father-in-law, the Kenite, went up with the men of Judah from to the Wilderness of Judah in the City of Palms the Negev near Arad. They went to live among 17 the people. f e d 19 18 So it was called Hormah. Then the m" + }, + { + "verseNum": 21, + "text": "| 211 9 10 slope of the Jebusites (that is, Jerusalem) and ascended to the top of the hill that faces the Valley of Hinnom on the west, at the north- ern end of the Valley of Rephaim. From the hilltop the border curved to the spring of the Waters of Nephtoah, proceeded to the cities of Mount Ephron, and then bent around to- ward Baalah (that is, Kiriath-jearim). The border curled westward from Baalah to Mount Seir, ran along the northern slope of Mount Jearim (that is, Chesalon), went down 11 to Beth-shemesh, and crossed to Timnah. Then it went out to the northern slope of Ekron, curved toward Shikkeron, proceeded to Mount Baalah, went on to Jabneel, and 12 ended at the Sea. And the western border was the coastline of the Great Sea. These are the boundaries around the clans of the Caleb’s Portion and Conquest" + }, + { + "verseNum": 22, + "text": "60 22 24 27 25 Kedesh, Hazor, Ithnan, of the tribe of Judah in the Negev toward the bor- der of Edom: 23 Kabzeel, Eder, Jagur, Adadah, Telem, Bealoth, hezron (that is, Hazor), 28 Moladah, 29 pelet, Baalah, 32 Hormah, Kinah, Dimonah, Ziph, 26 Hazor-hadattah, Kerioth- Amam, Shema, Hazar-gaddah, Heshmon, Beth- 30 Hazar-shual, Beersheba, Biziothiah, 31 Iim, Ezem, Eltolad, Chesil, Ziklag, Madmannah, Sansannah, Lebaoth, Shilhim, Ain, and Rimmon— twenty-nine cities in all, along with their villages. 33 a These were in the foothills: 34 35 36 Eshtaol, Zorah, Ashnah, Zanoah, Jarmuth, En-gannim, Tappuah, Enam, Shaaraim, Adullam, Socoh, Azekah, Adithaim, and Gederah (or Gederothaim)— 37 fourteen cities, along with their villages. 40 Mizpeh, Joktheel, 39 Zenan, Hadashah, Migdal-gad, Dilan, 41 Lachish, Bozkath, Eglon, Gederoth, Beth-dagon, Naamah, and Makkedah— 42 sixteen cities, along with their villages. Cabbon, Lahmas, Chitlish, 38 43 44 Libnah, Ether, Ashan, Iphtah, Ashnah, Keilah, Achzib, and Mareshah— Nezib, 45 nine cities, along with their villages. 46 47 Ekron, with its towns and villages; from Ekron to the sea, all the cities near Ashdod, Ashdod, with its along with their villages; towns and villages; Gaza, with its towns and villages, as far as the Brook of Egypt and the coastline of the Great Sea. 48 49 51 These were in the hill country: 50 Dannah, Kiriath-san- Anab, Eshtemoh, Goshen, Holon, and Giloh—eleven Shamir, Jattir, Socoh, nah (that is, Debir), Anim, 52 cities, along wi" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 2, + "text": ". 36 and the Tahanite clan from Tahan. And the descendants of Shuthelah were 37 the Eranite clan from Eran. These were the clans of Ephraim, and their registration numbered 32,500. The Tribe of Benjamin These clans were the descendants of Joseph. 38 These were the descendants of Benjamin by their clans: The Belaite clan from Bela, the Ashbelite clan from Ashbel, 39 the Ahiramite clan from Ahiram, a the Shuphamite clan from Shupham, 40 and the Huphamite clan from Hupham. b And the descendants of Bela from Ard and Naaman were the Ardite clan from Ard and the Naamite clan from Naaman. 41 These were the clans of Benjamin, and their The Tribe of Dan registration numbered 45,600. 42 These were the descendants of Dan by their clans: The Shuhamite clan from Shuham. 43 All of them were These were the clans of Dan. Shuhamite clans, and their registration num- The Tribe of Asher bered 64,400. 44 These were the descendants of Asher by their clans: The Imnite clan from Imnah, the Ishvite clan from Ishvi, 45 and the Beriite clan from Beriah. And these were the descendants of Beriah: the Heberite clan from Heber 46 and the Malchielite clan from Malchiel. And the name of Asher’s daughter was 47 Serah. These were the clans of Asher, and their regis- The Tribe of Naphtali tration numbered 53,400. 48 These were the descendants of Naphtali by their clans: a 39" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 8, + "text": "| 213 15 Joshua answered them, “If you have so many people that the hill country of Ephraim is too small for you, go to the forest and clear for your- self an area in the land of the Perizzites and the 16 Rephaim.” “The hill country is not enough for us,” they replied, “and all the Canaanites who live in the valley have iron chariots, both in Beth-shean 17 with its towns and in the Valley of Jezreel.” 18 So Joshua said to the house of Joseph—to Ephraim and Manasseh—“You have many peo- ple and great strength. You shall not have just because the hill country will be one allotment, yours as well. It is a forest; clear it, and its far- thest limits will be yours. Although the Canaan- ites have iron chariots and although they are The Remainder Divided strong, you can drive them out.” 18 Then the whole congregation of Israel assembled at Shiloh and set up the Tent 2 of Meeting there. And though the land was there were still seven subdued before them, tribes of Israel who had not yet received their 3 inheritance. 5 So Joshua said to the Israelites, “How long will you put off entering and possessing the land that 4 the LORD, the God of your fathers, has given you? Appoint three men from each tribe, and I will send them out to survey the land and map it out, according to the inheritance of each. Then they and divide the land into seven will return to me portions. Judah shall remain in their territory in the south, and the house of Joseph shall remain When you have in their territory i" + }, + { + "verseNum": 9, + "text": "9 So the men departed and went throughout the land, mapping it city by city into seven portions. Then they returned with the document to Joshua 10 at the camp in Shiloh. And Joshua cast lots for them in the presence of the LORD at Shiloh, where he distributed the Benjamin’s Inheritance land to the Israelites according to their divisions. 11 The first lot came up for the clans of the tribe of Benjamin. Their allotted territory lay between the tribes of Judah and Joseph: 12 13 On the north side their border began at the Jordan, went up past the northern slope of Jericho, headed west through the hill coun- try, and came out at the wilderness of Beth- From there the border crossed over aven. to the southern slope of Luz (that is, Bethel) and went down to Ataroth-addar on the hill 14 south of Lower Beth-horon. On the west side the border curved south- ward from the hill facing Beth-horon on the south and came out at Kiriath-baal (that is, Kiriath-jearim), a city of the sons of Judah. 15 This was the western side. 17 16 On the south side the border began at the outskirts of Kiriath-jearim and extended westward to the spring at the Waters of Then it went down to the foot Nephtoah. of the hill that faces the Valley of Ben- hinnom at the northern end of the Valley of Rephaim and ran down the Valley of Hinnom toward the southern slope of the Jebusites From there it and downward to En-rogel. curved northward and proceeded to En- shemesh and on to Geliloth facing the Ascent of Adummim, a" + }, + { + "verseNum": 13, + "text": "); Hebrew That is, the Mediterranean Sea, also called the Great Sea; also in verses 6 and 8 2 and Bashan because Machir was a man of war. a So this allotment was for the rest of the de- scendants of Manasseh—the clans of Abiezer, Helek, Asriel, Shechem, Hepher, and Shemida. These are the other male descendants of the 3 clans of Manasseh son of Joseph. 4 But Zelophehad son of Hepher (the son of Gil- ead, the son of Machir, the son of Manasseh) had no sons but only daughters. These are the names of his daughters: Mahlah, Noah, Hoglah, Milcah, and Tirzah. They approached Eleazar the priest, Joshua son of Nun, and the leaders, and said, “The LORD commanded Moses to give us an inher- itance among our brothers.” 5 6 So Joshua gave them an inheritance among their father’s brothers, in keeping with the command of the LORD. Thus ten shares fell to Manasseh, in addition to the land of Gilead and Bashan beyond the Jordan, because the daughters of Manasseh received an inheritance among his sons. And the land of Gilead belonged to the rest of the sons of Manasseh. 7 8 Now the border of Manasseh went from Asher to Michmethath near Shechem, then southward to include the inhabitants of En- The region of Tappuah belonged tappuah. to Manasseh, but Tappuah itself, on the bor- 9 der of Manasseh, belonged to Ephraim. From there the border continued south- ward to the Brook of Kanah. There were cities belonging to Ephraim among the cities of Manasseh, but the border of Manasseh was on the north si" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 50, + "text": "and" + }, + { + "verseNum": 51, + "text": "| 215 34 c 35 nekeb and Jabneel as far as Lakkum and end- Then the border turned ing at the Jordan. westward to Aznoth-tabor and ran from there to Hukkok, touching Zebulun on the south side, Asher on the west, and Judah at the Jordan The fortified cit- ies were Ziddim, Zer, Hammath, Rakkath, 37 Adamah, Ramah, Hazor, Chinnereth, Iron, Migdal-el, Horem, Beth-anath, and Beth-shemesh. There were nineteen cities, along with their villages. Kedesh, Edrei, En-hazor, on the east. 36 38 39 This was the inheritance of the clans of the tribe of Naphtali, including these cities and their Dan’s Inheritance villages. 40 The seventh lot came out for the clans of the 41 tribe of Dan: 42 43 Zorah, Eshtaol, Ir-shemesh, 44 Aijalon, Ithlah, The territory of their inheritance included Shaalabbin, Elon, Timnah, Ekron, Jehud, Me-jarkon, and Bene-berak, Gath-rimmon, Rakkon, including the territory across from Joppa. Eltekeh, Gibbethon, Baalath, 45 46 47 (Later, when the territory of the Danites was lost to them, they went up and fought against Leshem, captured it, and put it to the sword. So they took possession of Leshem, settled there, 48 and renamed it after their father Dan.) This was the inheritance of the clans of the tribe of Dan, including these cities and their vil- Joshua’s Inheritance lages. 49 50 When they had finished distributing the land into its territories, the Israelites gave Joshua son as the of Nun an inheritance among them, LORD had commanded. They gave him the city of in the hi" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "–9) 9 10 11 Then the LORD said to Moses, “Speak to the Israelites and tell them: When you cross the Jor- designate cities to dan into the land of Canaan, serve as your cities of refuge, so that a person who kills someone unintentionally may flee You are to have these cities as a refuge there. from the avenger, so that the manslayer will not 13 die until he stands trial before the assembly. 12 14 The cities you select will be your six cities of Select three cities across the Jordan refuge. 15 and three in the land of Canaan as cities of refuge. These six cities will serve as a refuge for the Is- raelites and for the foreigner or stranger among them, so that anyone who kills a person uninten- 16 tionally may flee there. 17 If, however, anyone strikes a person with an iron object and kills him, he is a murderer; the Or if an- murderer must surely be put to death. yone has in his hand a stone of deadly size, and he strikes and kills another, he is a murderer; the If any- murderer must surely be put to death. one has in his hand a deadly object of wood, and he strikes and kills another, he is a murderer; the b 5 2,000 cubits murderer must surely be put to death. 18 is approximately 1,500 feet or 457.2 meters. is approximately 3,000 feet or 914.4 meters. 19 The avenger of blood is to put the murderer to 20 death; when he finds him, he is to kill him. 21 Likewise, if anyone maliciously pushes an- other or intentionally throws an object at him and kills him, or if in hostility he str" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "–45 ; 1 Chronicles 6:54–81) 35 Again the LORD spoke to Moses on the 2 plains of Moab by the Jordan across from “Command the Israelites to give, from a 4 1,000 cubits Jericho: 3 the inheritance they will possess, cities for the Levites to live in and pasturelands around the The cities will be for them to live in, and cities. the pasturelands will be for their herds, their 4 flocks, and all their other livestock. a The pasturelands around the cities you are to 5 give the Levites will extend a thousand cubits b You are also to from the wall on every side. measure two thousand cubits outside the city on the east, two thousand on the south, two thou- sand on the west, and two thousand on the north, with the city in the center. These areas will serve 6 as larger pasturelands for the cities. 7 Six of the cities you give the Levites are to be appointed as cities of refuge, to which a manslayer may flee. In addition to these, give the The total number Levites forty-two other cities. 8 of cities you give the Levites will be forty-eight, with their corresponding pasturelands. The cit- ies that you apportion from the territory of the Israelites should be given to the Levites in pro- portion to the inheritance of each tribe: more Six Cities of Refuge from a larger tribe and less from a smaller one.”" + }, + { + "verseNum": 13, + "text": "; Hebrew ; parallel text at" + }, + { + "verseNum": 15, + "text": "manuscripts; MT and the parallel text at" + }, + { + "verseNum": 16, + "text": ". Jahaz g 67 sons is a variant of LXX ; see" + }, + { + "verseNum": 17, + "text": "; MT (they were given) Jok- As in j 1 Puah ; also in verse 71; see 1 Chronicles 23:7. ; see" + }, + { + "verseNum": 21, + "text": "; Hebrew Puvah f 62 Gershomites Gibeon, c 59 Ashan e 60 Juttah, Gershonites i 78 Jahzah k 3 ; see" + }, + { + "verseNum": 30, + "text": ". Timnath-heres That is, the Mediterranean Sea, also called the Great Sea is also known as ; see" + }, + { + "verseNum": 34, + "text": ". were given the cities of refuge: Hebron, Libnah Holon Ain They were given the cities of refuge: Shechem h 77 a variant of ; see" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 10, + "text": "| 217 42 Each within the territory of the Israelites. of these cities had its own surrounding pas- 43 turelands; this was true for all the cities. Thus the LORD gave Israel all the land He had sworn to give their fathers, and they took posses- 44 sion of it and settled in it. And the LORD gave them rest on every side, just as He had sworn to their fathers. None of their enemies could stand against them, for the 45 LORD delivered all their enemies into their hand. Not one of all the LORD’s good promises to the house of Israel had failed; everything was The Eastern Tribes Return Home fulfilled. 22 2 Then Joshua summoned the Reubenites, the Gadites, and the half-tribe of Manas- and told them, “You have done all that Mo- seh ses the servant of the LORD commanded you, and you have obeyed my voice in all that I com- All this time you have not deserted manded you. your brothers, up to this very day, but have kept 4 the charge given you by the LORD your God. 3 5 And now that the LORD your God has given your brothers rest as He promised them, you may return to your homes in the land that Moses the servant of the LORD gave you across the But be very careful to observe the com- Jordan. mandment and the law that Moses the servant of the LORD gave you: to love the LORD your God, to walk in all His ways, to keep His command- ments, to hold fast to Him, and to serve Him with 6 all your heart and with all your soul.” 7 8 So Joshua blessed them and sent them on their (To the half- way, and th" + }, + { + "verseNum": 11, + "text": "a near the Jordan in when they came to Geliloth the land of Canaan, the Reubenites, the Gadites, and the half-tribe of Manasseh built an imposing 11 altar there by the Jordan. Then the Israelites received the report: “Behold, the Reubenites, the Gadites, and the half-tribe of Manasseh have built an altar on the border of the land of Canaan, at Geliloth near the Jordan on the Israelite side.” And when they heard this, the whole congregation of Israel 13 assembled at Shiloh to go to war against them. 12 The Israelites sent Phinehas son of Eleazar the priest to the land of Gilead, to the Reubenites, the Gadites, and the half-tribe of Manasseh. With him they sent ten chiefs—one family leader from each tribe of Israel, each the head of a family 15 among the clans of Israel. 14 16 They went to the Reubenites, the Gadites, and the half-tribe of Manasseh in the land of Gilead and said to them, “This is what the whole con- gregation of the LORD says: ‘What is this breach of faith you have committed today against the God of Israel by turning away from the LORD and building for yourselves an altar, that you might 17 rebel against the LORD this day? 18 Was not the sin of Peor enough for us, from which we have not cleansed ourselves to this day? It even brought a plague upon the congre- gation of the LORD. And now, would you turn away from the LORD? If you rebel today against the LORD, tomorrow He will be angry with the 19 whole congregation of Israel. If indeed the land of your inheritan" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 10, + "text": "| 219 15 that not one of the good promises the LORD your God made to you has failed. Everything was ful- filled for you; not one promise has failed. But just as every good thing the LORD your God promised you has come to pass, likewise the LORD will bring upon you the calamity He has threatened, until He has destroyed you from this If you transgress good land He has given you. the covenant of the LORD your God, which He commanded you, and go and serve other gods and bow down to them, then the anger of the LORD will burn against you, and you will quickly Joshua Reviews Israel’s History perish from this good land He has given you.” 16 24 Then Joshua assembled all the tribes of Israel at Shechem. He summoned the el- ders, leaders, judges, and officers of Israel, and 2 they presented themselves before God. c And Joshua said to all the people, “This is what the LORD, the God of Israel, says: ‘Long ago your fathers, including Terah the father of Abraham 3 and and Nahor, lived beyond the Euphrates But I took your father worshiped other gods. Abraham from beyond the Euphrates and led him through all the land of Canaan, and I multi- and to plied his descendants. I gave him Isaac, Isaac I gave Jacob and Esau. I gave Esau Mount Seir to possess, but Jacob and his sons went 5 down to Egypt. 4 d 6 Then I sent Moses and Aaron, and I afflicted the Egyptians by what I did there, and afterward I When I brought your fathers brought you out. out of Egypt and you reached the Red Sea, the Egyptian" + }, + { + "verseNum": 11, + "text": "11 22 12 After this, you crossed the Jordan and came to Jericho. The people of Jericho fought against you, as did the Amorites, Perizzites, Canaanites, Hit- tites, Girgashites, Hivites, and Jebusites, and I de- I sent the hornet livered them into your hand. ahead of you, and it drove out the two Amorite kings before you, but not by your own sword or So I gave you a land on which you did not bow. toil and cities that you did not build, and now you live in them and eat from vineyards and olive Choose Whom You Will Serve groves that you did not plant.’" + }, + { + "verseNum": 14, + "text": "–28) fathers to give them.” 12 13 And now, O Israel, what does the LORD your God ask of you but to fear the LORD your God by walking in all His ways, to love Him, to serve the LORD your God with all your heart and with all and to keep the commandments and your soul, statutes of the LORD that I am giving you this day 14 for your own good? 15 Behold, to the LORD your God belong the heav- ens, even the highest heavens, and the earth and everything in it. Yet the LORD has set His affec- tion on your fathers and loved them. And He has chosen you, their descendants after them, above 16 all the peoples, even to this day. 17 18 Circumcise your hearts, therefore, and stiffen your necks no more. For the LORD your God is God of gods and Lord of lords, the great, mighty, and awesome God, showing no partiality and ac- He executes justice for the fa- cepting no bribe. therless and widow, and He loves the foreigner, So you also must giving him food and clothing. love the foreigner, since you yourselves were for- 20 eigners in the land of Egypt. 19 21 You are to fear the LORD your God and serve Him. Hold fast to Him and take your oaths in His He is your praise and He is your God, name. who has done for you these great and awesome c 22 Kibroth-hattaavah testing graves of craving means d 4 ; see" + }, + { + "verseNum": 29, + "text": "–33) LORD. 6 7 After Joshua had dismissed the people, the Isra- elites went out to take possession of the land, each to his own inheritance. And the people served the LORD throughout the days of Joshua and of the elders who outlived him, who had seen all the great works that the LORD had done for 8 Israel. 9 And Joshua son of Nun, the servant of the LORD, They buried him in the in the died at the age of 110. land of his inheritance, at Timnath-heres Israel’s Unfaithfulness hill country of Ephraim, north of Mount Gaash." + }, + { + "verseNum": 30, + "text": ". ; here and throughout the book of Judges Literally 17 Israel, however, did not listen to their judges. Instead, they prostituted themselves with other gods and bowed down to them. They quickly turned from the way of their fathers, who had walked in obedience to the LORD’s command- 18 ments; they did not do as their fathers had done. 19 Whenever the LORD raised up a judge for the Israelites, He was with that judge and saved them from the hands of their enemies while the judge was still alive; for the LORD was moved to pity by their groaning under those who oppressed them and afflicted them. But when the judge died, the Israelites became even more corrupt than their fathers, going after other gods to serve them and bow down to them. They would not 20 give up their evil practices and stubborn ways. 21 So the anger of the LORD burned against Israel, and He said, “Because this nation has transgressed the covenant I laid down for their I will no fathers and has not heeded My voice, longer drive out before them any of the nations In this way I will test Joshua left when he died. whether Israel will keep the way of the LORD by 23 walking in it as their fathers did.” 22 That is why the LORD had left those nations in place and had not driven them out immediately Nations Left to Test Israel by delivering them into the hand of Joshua. 3 3 2 These are the nations that the LORD left to test all the Israelites who had not known any of the wars in Canaan, if only to teach warfare to the su" + } + ] + } + ] + }, + { + "name": "Judges", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–7) So there were thirty-one kings in all. 13 Now Joshua was old and well along in years, and the LORD said to him, “You are old and well along in years, but very much of the This is the land land remains to be possessed. that remains: 2 3" + }, + { + "verseNum": 8, + "text": "–26) descendants of Judah. 13 According to the LORD’s command to him, Joshua gave Caleb son of Jephunneh a portion among the sons of Judah—Kiriath-arba, that is, 14 Hebron. (Arba was the forefather of Anak.) And Caleb drove out from there the three sons of Anak—the descendants of Sheshai, Ahiman, 15 and Talmai, the children of Anak. 16 From there he marched against the inhabit- ants of Debir (formerly known as Kiriath- And Caleb said, “To the man who sepher). strikes down Kiriath-sepher and captures it, I So will give my daughter Acsah in marriage.” Othniel son of Caleb’s brother Kenaz captured the city, and Caleb gave his daughter Acsah to e 18 him in marriage. 17 One day Acsah came to Othniel and urged him to ask her father for a field. When she got off her 19 donkey, Caleb asked her, “What do you desire?” “Give me a blessing,” she answered. “Since you have given me land in the Negev, give me springs of water as well.” So Caleb gave her both the upper and lower The Cities of Judah springs. 20 21 Sea, also called the Great Sea; also in verses 11, 12, and 47 scripts; other LXX manuscripts ; see" + }, + { + "verseNum": 14, + "text": ". LXX; Hebrew Hebrew and some LXX manu- the Ascent of Scorpions This is the inheritance of the clans of the tribe c 4 These were the southernmost cities your That is, the Mediterranean of Judah. d 4 or Scorpion Pass e 18 212 |" + }, + { + "verseNum": 25, + "text": "25 26 So the man showed them the entrance to the city, and they put the city to the sword but re- leased that man and all his family. And the man went to the land of the Hittites, built a city, and The Failure to Complete the Conquest called it Luz, which is its name to this day. 27 At that time Manasseh failed to drive out the inhabitants of Beth-shean, Taanach, Dor, Ibleam, Megiddo, and their villages; for the Canaanites When were determined to dwell in that land. Israel became stronger, they pressed the Ca- naanites into forced labor, but they never drove 29 them out completely. 28 Ephraim also failed to drive out the Canaanites living in Gezer; so the Canaanites continued to 30 dwell among them in Gezer. Zebulun failed to drive out the inhabitants of Kitron and Nahalol; so the Canaanites lived 31 among them and served as forced laborers. 32 Asher failed to drive out the inhabitants of Acco, Sidon, Ahlab, Achzib, Helbah, Aphik, and Rehob. So the Asherites lived among the Ca- naanite inhabitants of the land, because they did 33 not drive them out. Naphtali failed to drive out the inhabitants of Beth-shemesh and Beth-anath. So the Naphta- lites also lived among the Canaanite inhabitants of the land, but the inhabitants of Beth-shemesh 34 and Beth-anath served them as forced laborers. 35 The Amorites forced the Danites into the hill country and did not allow them to come down And the Amorites were deter- into the plain. mined to dwell in Mount Heres, Aijalon, and Shaalbim. Bu" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 6, + "text": "–9) own inheritance. 29 30 b Some time later, Joshua son of Nun, the servant And they of the LORD, died at the age of 110. buried him in the land of his inheritance, at 31 in the hill country of Ephraim, Timnath-serah Israel had served the north of Mount Gaash. LORD throughout the days of Joshua and of the elders who outlived him and who had experi- enced all the works that the LORD had done for 32 Israel. And the bones of Joseph, which the Israelites had brought up out of Egypt, were buried at She- chem in the plot of land that Jacob had purchased c from the sons of Hamor, Shechem’s father, for a hundred pieces of silver. So it became an inher- 33 itance for Joseph’s descendants. Eleazar son of Aaron also died, and they buried him at Gibeah, which had been given to his son Phinehas in the hill country of Ephraim. a 26 terebinth b 30 Timnath-serah Timnath-heres c 32 a hundred kesitahs Or is also known as ; see" + }, + { + "verseNum": 9, + "text": ". 2 lot from the tribes of Judah, Simeon, and Ben- 5 jamin. 216 |" + }, + { + "verseNum": 10, + "text": "–15 ;" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 21, + "text": "| 223 8 Then the served the Baals and the Asherahs. anger of the LORD burned against Israel, and He sold them into the hand of Cushan-rishathaim king of Aram-naharaim, and the Israelites 9 served him eight years. a 10 But when the Israelites cried out to the LORD, He raised up Othniel son of Caleb’s younger The brother Kenaz as a deliverer to save them. Spirit of the LORD came upon him, and he became Israel’s judge and went out to war. And the LORD delivered Cushan-rishathaim king of Aram into the hand of Othniel, who prevailed 11 against him. So the land had rest for forty years, until Oth- Ehud niel son of Kenaz died. 12 13 Once again the Israelites did evil in the sight of the LORD. So He gave Eglon king of Moab power over Israel, because they had done evil in the After enlisting the Ammo- sight of the LORD. nites and Amalekites to join forces with him, Eglon attacked and defeated Israel, taking pos- 14 session of the City of Palms. 15 b The Israelites served Eglon king of Moab eight- And again they cried out to the een years. LORD, and He raised up Ehud son of Gera, a left- handed Benjamite, as their deliverer. So they 16 sent him with tribute to Eglon king of Moab. c Now Ehud had made for himself a double- He strapped it to his edged sword a cubit long. and brought the right thigh under his cloak tribute to Eglon king of Moab, who was an obese 18 man. 17 19 After Ehud had finished presenting the tribute, But he ushered out those who had carried it. upon reaching the idol" + }, + { + "verseNum": 22, + "text": "22 Even the handle sank in into Eglon’s belly. after the blade, and Eglon’s fat closed in over it, so that Ehud did not withdraw the sword from Then his belly. And Eglon’s bowels emptied. Ehud went out through the porch, closing and 24 locking the doors of the upper room behind him. 23 25 After Ehud was gone, Eglon’s servants came in and found the doors of the upper room locked. “He must be relieving himself in the cool room,” So they waited until they became they said. worried and saw that he had still not opened the doors of the upper room. Then they took the key and opened the doors—and there was their lord 26 lying dead on the floor. Ehud, however, had escaped while the serv- ants waited. He passed by the idols and escaped 27 to Seirah. On arriving in Seirah, he blew the ram’s horn throughout the hill country of Ephraim. The Isra- 28 elites came down with him from the hills, and he “Follow me,” he told became their leader. them, “for the LORD has delivered your enemies the Moabites into your hand.” 29 So they followed him down and seized the fords of the Jordan leading to Moab, and they did not At that time they allow anyone to cross over. struck down about ten thousand Moabites, all ro- 30 bust and valiant men. Not one of them escaped. So Moab was subdued under the hand of Israel that day, and the land had rest for eighty Shamgar years. 31 After Ehud came Shamgar son of Anath. And he too saved Israel, striking down six hundred Phil- Deborah and Barak istines with an oxgo" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–31) Moses. 31 15 Then Moses and the Israelites sang this song to the LORD: “I will sing to the LORD, for He is highly exalted. The horse and rider 2 He has thrown into the sea. The LORD is my strength and my song, and He has become my salvation. He is my God, and I will praise Him, 3 my father’s God, and I will exalt Him. The LORD is a warrior, 4 the LORD is His name. Pharaoh’s chariots and army He has cast into the sea; d the finest of his officers 5 are drowned in the Red Sea. The depths have covered them; they sank there like a stone. 6 Your right hand, O LORD, is majestic in power; Your right hand, O LORD, 7 has shattered the enemy. You overthrew Your adversaries by Your great majesty. 8 You unleashed Your burning wrath; it consumed them like stubble. At the blast of Your nostrils the waters piled up; like a wall the currents stood firm; 9 the depths congealed in the heart of the sea. The enemy declared, ‘I will pursue, I will overtake. I will divide the spoils; I will gorge myself on them. 10 I will draw my sword; my hand will destroy them.’ But You blew with Your breath, to bind to come off and the sea covered them. to swerve Or Or LXX ; also in verse 22 Or or or ; see also SP, LXX, and Syriac. They sank like lead 11 in the mighty waters. Who among the gods is like You, O LORD? Who is like You—majestic in holiness, 12 revered with praises, performing wonders? 13 You stretched out Your right hand, a and the earth swallowed them up. With loving devotion You will lead the" + }, + { + "verseNum": 18, + "text": "| 225 Sisera said to her, “Please give me a little water to drink, for I am thirsty.” So she opened a con- tainer of milk, gave him a drink, and covered him 20 again. “Stand at the entrance to the tent,” he said, “and if anyone comes and asks you, ‘Is there a 21 man here?’ say, ‘No.’ ” But as he lay sleeping from exhaustion, Heber’s wife Jael took a tent peg, grabbed a ham- mer, and went silently to Sisera. She drove the peg through his temple and into the ground, and 22 he died. When Barak arrived in pursuit of Sisera, Jael went out to greet him and said to him, “Come, and I will show you the man you are seeking.” So he went in with her, and there lay Sisera dead, 23 with a tent peg through his temple. 24 On that day God subdued Jabin king of Canaan And the hand of the Isra- before the Israelites. elites grew stronger and stronger against Jabin The Song of Deborah and Barak (Ex. 15:1–21) king of Canaan until they destroyed him. 5 2 On that day Deborah and Barak son of Abi- noam sang this song: “When the princes take the lead in Israel, 3 when the people volunteer, bless the LORD. Listen, O kings! Give ear, O princes! I will sing to the LORD; I will sing praise to the LORD, 4 the God of Israel. O LORD, when You went out from Seir, when You marched from the land of Edom, When they chose new gods, then war came to their gates. Not a shield or spear was found 9 among forty thousand in Israel. My heart is with the princes of Israel, 10 with the volunteers among the people. Bless" + }, + { + "verseNum": 19, + "text": "19 Kings came and fought; then the kings of Canaan fought at Taanach by the waters of Megiddo, 20 but they took no plunder of silver. From the heavens the stars fought; 21 from their courses they fought against Sisera. The River Kishon swept them away, the ancient river, the River Kishon. 22 March on, O my soul, in strength! 23 Then the hooves of horses thundered— the mad galloping of his stallions. ‘Curse Meroz,’ says the angel of the LORD. ‘Bitterly curse her inhabitants; 24 for they did not come to help the LORD, to help the LORD against the mighty.’ Most blessed among women is Jael, the wife of Heber the Kenite, most blessed of tent-dwelling women. He asked for water, and she gave him milk. In a magnificent bowl she brought him 25 26 curds. She reached for the tent peg, her right hand for the workman’s hammer. 27 She struck Sisera and crushed his skull; she shattered and pierced his temple. At her feet he collapsed, he fell, there he lay still; at her feet he collapsed, he fell; 28 where he collapsed, there he fell dead. Sisera’s mother looked through the window; she peered through the lattice and lamented: ‘Why is his chariot so long in coming? What has delayed the clatter of his 29 chariots?’ Her wisest ladies answer; 30 indeed she keeps telling herself, ‘Are they not finding and dividing the spoil— a girl or two for each warrior, a plunder of dyed garments for Sisera, the spoil of embroidered garments for the neck of the looter?’ 31 So may all Your enemies perish, O LO" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 32, + "text": ". Literally Some Hebrew manuscripts 24 25 Gideon sent messengers throughout the hill country of Ephraim to say, “Come down against the Midianites and seize the waters of the Jordan ahead of them as far as Beth-barah.” So all the men of Ephraim were called out, and they cap- tured the waters of the Jordan as far as Beth- They also captured Oreb and Zeeb, the barah. two princes of Midian; and they killed Oreb at the rock of Oreb and Zeeb at the winepress of Zeeb. So they pursued the Midianites and brought the heads of Oreb and Zeeb to Gideon on the other Gideon Defeats Zebah and Zalmunna side of the Jordan. 8 Then the men of Ephraim said to Gideon, “Why have you done this to us? Why did you fail to call us when you went to fight against Mid- 2 ian?” And they contended with him violently. 3 But Gideon answered them, “Now what have I accomplished compared to you? Are not the gleanings of Ephraim better than the grape har- God has delivered Oreb and vest of Abiezer? Zeeb, the two princes of Midian, into your hand. What was I able to do compared to you?” When against him sub- he had said this, their anger 4 sided. a 5 Then Gideon and his three hundred men came to the Jordan and crossed it, exhausted yet still in So Gideon said to the men of Succoth, pursuit. “Please give my troops some bread, for they are exhausted, and I am still pursuing Zebah and Zal- 6 munna, the kings of Midian.” But the leaders of Succoth asked, “Are the hands of Zebah and Zalmunna already in your posses- 7 s" + }, + { + "verseNum": 39, + "text": "| 227 15 “Please, my Lord,” Gideon replied, “how can I save Israel? Indeed, my clan is the weakest in Ma- nasseh, and I am the youngest in my father’s 16 house.” “Surely I will be with you,” the LORD replied, “and you will strike down all the Midianites as 17 one man.” of the city, he did it by night rather than in the 28 daytime. When the men of the city got up in the morn- ing, there was Baal’s altar torn down, with the Asherah pole cut down beside it and the second “Who bull offered up on the newly built altar. did this?” they said to one another. 29 18 Gideon answered, “If I have found favor in Your sight, give me a sign that it is You speaking with me. Please do not depart from this place until I return to You. Let me bring my offering and set it before You.” 19 And the LORD said, “I will stay until you return.” a So Gideon went in and prepared a young goat and unleavened bread and an ephah of flour. He placed the meat in a basket and the broth in a pot and brought them out to present to Him under 20 the oak. And the angel of God said to him, “Take the meat and the unleavened bread, lay them on this 21 rock, and pour out the broth.” And Gideon did so. Then the angel of the LORD extended the tip of the staff that was in his hand and touched the meat and the unleavened bread. And fire flared from the rock and consumed the meat and the unleavened bread. Then the angel of the LORD 22 vanished from his sight. When Gideon realized that it was the angel of the LORD, he said, “O" + }, + { + "verseNum": 40, + "text": "40 12 7 And that night God did so. Only the fleece was Gideon’s Army of Three Hundred dry, and dew covered the ground. a (that is, Gid- Early in the morning Jerubbaal eon) and all the men with him camped be- side the spring of Harod. And the camp of Midian was north of them in the valley near the hill of 2 Moreh. Then the LORD said to Gideon, “You have too many men for Me to deliver Midian into their hands, lest Israel glorify themselves over Me, saying, ‘My own hand has saved me.’ Now, therefore, proclaim in the hearing of the men: ‘Whoever is fearful and trembling may turn back and leave Mount Gilead.’ ” 3 So twenty-two thousand of them turned back, 4 but ten thousand remained. Then the LORD said to Gideon, “There are still too many men. Take them down to the water, and I will sift them for you there. If I say to you, ‘This one shall go with you,’ he shall go. But if I say, 5 ‘This one shall not go with you,’ he shall not go.” 6 So Gideon brought the men down to the water, and the LORD said to him, “Separate those who lap the water with their tongues like a dog from those who kneel to drink.” And the number of those who lapped the water with their hands to their mouths was three hundred men; all the oth- 7 ers knelt to drink. Then the LORD said to Gideon, “With the three hundred men who lapped the water I will save you and deliver the Midianites into your hand. 8 But all the others are to go home.” So Gideon sent the rest of the Israelites to their tents but kept the three" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 25, + "text": "| 229 12 Jogbehah, and he attacked their army, taking When Zebah and Zalmunna them by surprise. fled, Gideon pursued and captured these two 13 kings of Midian, routing their entire army. 14 After this, Gideon son of Joash returned from There he the battle along the Ascent of Heres. captured a young man of Succoth and interro- gated him. The young man wrote down for him the names of the seventy-seven leaders and el- 15 ders of Succoth. And Gideon went to the men of Succoth and said, “Here are Zebah and Zalmunna, about whom you taunted me, saying, ‘Are the hands of Zebah and Zalmunna already in your possession, 16 ” that we should give bread to your weary men?’ Then he took the elders of the city, and using the thorns and briers of the wilderness, he disci- He also pulled plined the men of Succoth. down the tower of Penuel and killed the men of 18 the city. 17 Next, Gideon asked Zebah and Zalmunna, “What kind of men did you kill at Tabor?” “Men like you,” they answered, “each one resem- 19 bling the son of a king.” “They were my brothers,” Gideon replied, “the sons of my mother! As surely as the LORD lives, 20 if you had let them live, I would not kill you.” So he said to Jether, his firstborn, “Get up and kill them.” But the young man did not draw his sword; he was fearful because he was still a 21 youth. Then Zebah and Zalmunna said, “Get up and kill us yourself, for as the man is, so is his strength.” So Gideon got up and killed Zebah and Zalmunna, and he took the crescent o" + }, + { + "verseNum": 26, + "text": "26 4 a So they spread out a garment, and each man threw an earring from his plunder onto it. The weight of the gold earrings he had requested was 1,700 shekels, in addition to the crescent orna- ments, the pendants, the purple garments of the kings of Midian, and the chains from the necks of 27 their camels. From all this Gideon made an ephod, which he placed in Ophrah, his hometown. But soon all Is- rael prostituted themselves by worshiping it there, and it became a snare to Gideon and his Forty Years of Peace household. 28 e 5 follow Abimelech, for they said, “He is our So they gave him seventy shekels of brother.” silver from the temple of Baal-berith, with which Abimelech hired some worthless and reckless men to follow him. He went to his father’s house in Ophrah, and on one stone mur- dered his seventy brothers, the sons of Jerubbaal. But Jotham, the youngest son of Jerubbaal, sur- 6 vived, because he hid himself. f Then all the leaders of Shechem and Beth-millo at the pillar in Shechem gathered beside the oak Jotham’s Parable and proceeded to make Abimelech their king. 7 29 In this way Midian was subdued before the Israelites and did not raise its head again. So the land had rest for forty years in the days of Gideon, son of Joash— c 30 returned home and settled down. and he—Jerubbaal b 31 Gideon had seventy sons of his own, since he had many wives. His concubine, who dwelt in Shechem, also bore him a son, and he named him Gideon’s Death Abimelech. 32 Later, Gideon son" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 44, + "text": "| 231 The Fall of Shechem 30 d 32 When Zebul the governor of the city heard the c 31 words of Gaal son of Ebed, he burned with anger. So he covertly sent messengers to Abimelech to say, “Look, Gaal son of Ebed and his brothers have come to Shechem and are stirring up the city against you. Now then, tonight you and the people with you are to come and lie in wait in the fields. And in the morning at sunrise, get up and advance against the city. When Gaal and his men come out against you, do to them whatever 34 you are able.” 33 So Abimelech and all his troops set out by night and lay in wait against Shechem in four 35 companies. Now Gaal son of Ebed went out and stood at the entrance of the city gate just as Abimelech 36 and his men came out from their hiding places. When Gaal saw the people, he said to Zebul, “Look, people are coming down from the moun- tains!” But Zebul replied, “The shadows of the moun- 37 tains look like men to you.” e f Then Gaal spoke up again, “Look, people are coming down from the center of the land, and one company is coming by way of the Diviners’ 38 Oak. ” “Where is your gloating now?” Zebul replied. “You said, ‘Who is Abimelech that we should serve him?’ Are these not the people you ridi- 39 culed? Go out now and fight them!” 40 So Gaal went out before the leaders of but Shechem and fought against Abimelech, Abimelech pursued him, and Gaal fled before him. And many Shechemites fell wounded all the way to the entrance of the gate. Abimelech stayed in" + }, + { + "verseNum": 45, + "text": "45 rushed against all who were in the fields and struck them down. And all that day Abimelech fought against the city until he had captured it and killed its people. Then he demolished the city 46 and sowed it with salt. a 47 On hearing of this, all the leaders in the tower of Shechem entered the inner chamber of the And when Abimelech was temple of El-berith. 48 told that all the leaders in the tower of Shechem were gathered there, he and all his men went up to Mount Zalmon. Abimelech took his axe in his hand and cut a branch from the trees, which he lifted to his shoulder, saying to his men, 49 “Hurry and do what you have seen me do.” So each man also cut his own branch and fol- lowed Abimelech. Then they piled the branches against the inner chamber and set it on fire above them, killing everyone in the tower of Shechem, Abimelech’s Punishment about a thousand men and women. 50 51 Then Abimelech went to Thebez, encamped against it, and captured it. But there was a strong tower inside the city, and all the men, women, and leaders of the city fled there. They locked themselves in and went up to the roof of 52 the tower. 53 When Abimelech came to attack the tower, he approached its entrance to set it on fire. But a woman dropped an upper millstone on He Abimelech’s head, crushing his skull. quickly called his armor-bearer, saying, “Draw your sword and kill me, lest they say of me, ‘A woman killed him.’ 54 ” 55 So Abimelech’s armor-bearer ran his sword through him, and he died." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 29, + "text": "| 233 11 2 Now Jephthah the Gileadite was a mighty man of valor; he was the son of a prosti- tute, and Gilead was his father. And Gilead’s wife bore him sons who grew up, drove Jephthah out, and said to him, “You shall have no inher- itance in our father’s house, because you are the 3 son of another woman.” So Jephthah fled from his brothers and settled in the land of Tob, where worthless men gath- 4 ered around him and traveled with him. 5 6 Some time later, when the Ammonites fought against Israel and made war with them, the el- ders of Gilead went to get Jephthah from the land of Tob. “Come,” they said, “be our commander, 7 so that we can fight against the Ammonites.” Jephthah replied to the elders of Gilead, “Did you not hate me and expel me from my father’s house? Why then have you come to me now, 8 when you are in distress?” They answered Jephthah, “This is why we now turn to you, that you may go with us, fight the Ammonites, and become leader over all of us 9 who live in Gilead.” But Jephthah asked them, “If you take me back to fight the Ammonites and the LORD gives them 10 to me, will I really be your leader?” And the elders of Gilead said to Jephthah, “The 11 LORD is our witness if we do not do as you say.” So Jephthah went with the elders of Gilead, and the people made him their leader and com- mander. And Jephthah repeated all his terms in 12 the presence of the LORD at Mizpah. Then Jephthah sent messengers to the king of the Ammonites, saying, “What do you have ag" + }, + { + "verseNum": 30, + "text": "30 31 Jephthah made this vow to the LORD: “If in- deed You will deliver the Ammonites into my hand, then whatever comes out the door of my house to greet me on my triumphant return from the Ammonites will belong to the LORD, and I 32 will offer it up as a burnt offering.” 33 So Jephthah crossed over to the Ammonites to fight against them, and the LORD delivered them into his hand. With a great blow he devastated twenty cities from Aroer to the vicinity of Min- nith, as far as Abel-keramim. So the Ammonites 34 were subdued before the Israelites. And when Jephthah returned home to Mizpah, there was his daughter coming out to meet him with tambourines and dancing! She was his only 35 child; he had no son or daughter besides her. As soon as Jephthah saw her, he tore his clothes and said, “No! Not my daughter! You have brought me to my knees! You have brought great misery upon me, for I have given my word to the 36 LORD and cannot take it back.” 37 “My father,” she replied, “you have given your word to the LORD. Do to me as you have said, for the LORD has avenged you of your enemies, the Ammonites.” She also said to her father, “Let me do this one thing: Let me wander for two months through the mountains with my friends 38 and mourn my virginity.” “Go,” he said. And he sent her away for two months. 39 So she left with her friends and mourned her vir- ginity upon the mountains. After two months, she returned to her father, and he did to her as he had vowed. And she had never had re" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–25) woman shall bear her iniquity.” 2 3 to separate himself to the LORD, “Speak to the And the LORD said to Moses, Israelites and tell them that if a man or a woman makes a special vow, the vow of a Nazi- rite, he is to abstain from wine and strong drink. He must not drink vinegar made from wine or strong drink, and he must not drink any grape juice or eat b 11 one separated a 2 Nazirite All the days of his fresh grapes or raisins. or means one consecrated . 4 6 separation, he is not to eat anything that comes 5 from the grapevine, not even the seeds or skins. For the entire period of his vow of separation, no razor shall touch his head. He must be holy until the time of his separation to the LORD is complete; he must let the hair of his head grow 6 long. 7 Throughout the days of his separation to the LORD, he must not go near a dead body. Even if his father or mother or brother or sister should die, he is not to defile himself, because the sym- 8 bol of consecration to his God is upon his head. Throughout the time of his separation, he is 9 holy to the LORD. 10 If someone suddenly dies in his presence and defiles his consecrated head of hair, he must shave his head on the day of his cleansing—the On the eighth day he must bring seventh day. two turtledoves or two young pigeons to the b 11 priest at the entrance to the Tent of Meeting. And the priest is to offer one as a sin offering and the other as a burnt offering to make atone- ment for him, because he has sinned by bein" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 5, + "text": "| 235 17 Then Manoah said to the angel of the LORD, “What is your name, so that we may honor you 18 when your word comes to pass?” “Why do you ask my name,” said the angel of 19 the LORD, “since it is beyond comprehension?” Then Manoah took a young goat and a grain of- fering and offered them on a rock to the LORD. 20 And as Manoah and his wife looked on, the LORD When the flame went did a marvelous thing. up from the altar to the sky, the angel of the LORD ascended in the flame. 21 When Manoah and his wife saw this, they fell And when the angel facedown to the ground. of the LORD did not appear again to Manoah and his wife, Manoah realized that it had been the an- 22 gel of the LORD. “We are going to die,” he said to his wife, “for 23 we have seen God!” But his wife replied, “If the LORD had intended to kill us, He would not have accepted the burnt offering and the grain offering from our hands, nor would He have shown us all these things or 24 spoken to us this way.” 25 So the woman gave birth to a son and named him Samson. The boy grew, and the LORD And the Spirit of the LORD began blessed him. to stir him at Mahaneh-dan, between Zorah and Samson’s Marriage Eshtaol. b 14 2 One day Samson went down to Timnah, where he saw a young Philistine woman. So he returned and told his father and mother, “I have seen a daughter of the Philistines in Tim- 3 nah. Now get her for me as a wife.” But his father and mother replied, “Can’t you find a young woman among your relatives or among" + }, + { + "verseNum": 6, + "text": "6 7 and the Spirit of the LORD came power- him, fully upon him, and he tore the lion apart with his bare hands as one would tear a young goat. But he did not tell his father or mother what he had Then Samson continued on his way down done. and spoke to the woman, because she was pleas- Samson’s Riddle ing to his eyes. 8 9 When Samson returned later to take her, he left the road to see the lion’s carcass, and in it was a So he swarm of bees, along with their honey. scooped some honey into his hands and ate it as he went along. And when he returned to his fa- ther and mother, he gave some to them and they ate it. But he did not tell them that he had taken 10 the honey from the lion’s carcass. 11 Then his father went to visit the woman, and Samson prepared a feast there, as was customary a And when the Philistines for the bridegroom. saw him, they selected thirty men to accompany 12 him. 13 “Let me tell you a riddle,” Samson said to them. “If you can solve it for me within the seven days of the feast, I will give you thirty linen garments But if you cannot and thirty sets of clothes. solve it, you must give me thirty linen garments and thirty sets of clothes.” 14 “Tell us your riddle,” they replied. “Let us hear it.” So he said to them: “Out of the eater came something to eat, and out of the strong came something sweet.” 15 b So on the fourth For three days they were unable to explain the riddle. day they said to Sam- son’s wife, “Entice your husband to explain the riddle to us," + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 11, + "text": "| 237 d why he named it En-hakkore, 20 Lehi to this day. and it remains in And Samson judged Israel for twenty years in Samson Escapes Gaza the days of the Philistines. 16 2 night with her. One day Samson went to Gaza, where he saw a prostitute and went in to spend the When the Gazites heard that Samson was there, they surrounded that place and lay in wait for him all night at the city gate. They were quiet throughout the night, saying, “Let us wait until 3 dawn; then we will kill him.” But Samson lay there only until midnight, when he got up, took hold of the doors of the city gate and both gateposts, and pulled them out, bar and all. Then he put them on his shoulders and took them to the top of the mountain overlooking Samson and Delilah Hebron. 4 5 Some time later, Samson fell in love with a woman in the Valley of Sorek, whose name was Delilah. The lords of the Philistines went to her and said, “Entice him and find out the source of his great strength and how we can overpower him to tie him up and subdue him. Then each one of us will give you eleven hundred shekels of 6 silver. ” e So Delilah said to Samson, “Please tell me the source of your great strength and how you can be 7 tied up and subdued.” Samson told her, “If they tie me up with seven fresh bowstrings that have not been dried, I will 8 become as weak as any other man.” 9 So the lords of the Philistines brought her seven fresh bowstrings that had not been dried, and While the men were she tied him up with them. h" + }, + { + "verseNum": 12, + "text": "that have never been used, I will become as weak 12 as any other man.” free.” But he did not know that the LORD had de- 21 parted from him. So Delilah took new ropes, tied him up with them, and called out, “Samson, the Philistines are here!” But while the men were hidden in her room, he snapped the ropes off his arms like they were 13 threads. Then Delilah said to Samson, “You have mocked me and lied to me all along! Tell me how you can be tied up.” He told her, “If you weave the seven braids of my head into the web of a loom and tighten it with a 14 pin, I will become as weak as any other man. ” a b So while he slept, Delilah took the seven braids Then of his hair and wove them into the web. she tightened it with a pin and called to him, “Samson, the Philistines are here!” But he awoke from his sleep and pulled out the Delilah Learns the Secret pin with the loom and the web. 15 “How can you say, ‘I love you,’ ” she asked, “when your heart is not with me? This is the third time you have mocked me and failed to reveal to 16 me the source of your great strength!” Finally, after she had pressed him daily with 17 her words and pleaded until he was sick to death, Samson told her all that was in his heart: “My hair has never been cut, because I have been a Nazirite to God from my mother’s womb. If I am shaved, my strength will leave me, and I will be- 18 come as weak as any other man.” When Delilah realized that he had revealed to her all that was in his heart, she sent this mes- s" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 13, + "text": "| 239 17 2 Now a man named Micah from the hill said to his mother, country of Ephraim that were “The eleven hundred shekels of silver taken from you and about which I heard you ut- ter a curse—I have the silver here with me; I took it.” a Then his mother said, “Blessed be my son by the 3 LORD!” And when he had returned the eleven hundred shekels of silver to his mother, she said, “I wholly dedicate the silver to the LORD for my son’s ben- efit, to make a graven image and a molten idol. 4 Therefore I will now return it to you.” b So he returned the silver to his mother, and she took two hundred shekels of silver and gave them to a silversmith, who made them into a graven image and a molten idol. And they were 5 placed in the house of Micah. c Now this man Micah had a shrine, and he made an ephod and some household idols, and or- dained In those one of his sons as his priest. days there was no king in Israel; everyone did 7 what was right in his own eyes. 6 8 And there was a young Levite from Bethlehem in Judah who had been residing within the clan This man left the city of Bethlehem in of Judah. Judah to settle where he could find a place. And as he traveled, he came to Micah’s house in the 9 hill country of Ephraim. “Where are you from?” Micah asked him. “I am a Levite from Bethlehem in Judah,” he re- plied, “and I am on my way to settle wherever I 10 can find a place.” d “Stay with me,” Micah said to him, “and be my father and priest, and I will give you ten shekels per year" + }, + { + "verseNum": 14, + "text": "26 there they traveled to the hill country of Ephraim The Danites Take Micah’s Idols and came to Micah’s house. 14 So the Danites went on their way, and Micah turned to go back home, because he saw that 27 they were too strong for him. Then the five men who had gone to spy out the land of Laish said to their brothers, “Did you know that one of these houses has an ephod, household gods, a graven image, and a molten 15 idol? Now think about what you should do.” So they turned aside there and went to the home of the young Levite, the house of Micah, 16 and greeted him. The six hundred Danites stood at the entrance 17 of the gate, armed with their weapons of war. And the five men who had gone to spy out the land went inside and took the graven image, the ephod, the household idols, and the molten idol, while the priest stood at the entrance of the gate 18 with the six hundred armed men. When they entered Micah’s house and took the graven image, the ephod, the household idols, and the molten idol, the priest said to them, 19 “What are you doing?” “Be quiet,” they told him. “Put your hand over your mouth and come with us and be a father and a priest to us. Is it better for you to be a priest for the house of one person or a priest for a tribe and 20 family in Israel?” 21 So the priest was glad and took the ephod, the household idols, and the graven image, and went Putting their small children, with the people. their livestock, and their possessions in front of 22 them, they turned" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "–30) home. 19 2 Now the two angels arrived at Sodom in the evening, and Lot was sitting in the gateway of the city. When Lot saw them, he got and said, up to meet them, bowed facedown, “My lords, please turn aside into the house of your servant; wash your feet and spend the night. Then you can rise early and go on your way.” “No,” they answered, “we will spend the night in the square.” 20 |" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 3, + "text": "| 241 house and fed his donkeys. And they washed 22 their feet and ate and drank. While they were enjoying themselves, sud- denly the wicked men of the city surrounded the house. Pounding on the door, they said to the old man who owned the house, “Bring out the man who came to your house, so we can have rela- 23 tions with him!” 24 The owner of the house went out and said to them, “No, my brothers, do not do this wicked thing! After all, this man is a guest in my house. Look, let me bring Do not commit this outrage. out my virgin daughter and the man’s concubine, and you can use them and do with them as you 25 wish. But do not do such a vile thing to this man.” But the men would not listen to him. So the Le- vite took his concubine and sent her outside to them, and they raped her and abused her 26 throughout the night, and at dawn they let her go. Early that morning, the woman went back to the house where her master was staying, col- lapsed at the doorway, and lay there until it was 27 light. 28 In the morning, when her master got up and opened the doors of the house to go out on his journey, there was his concubine, collapsed in the doorway of the house, with her hands on the “Get up,” he told her. “Let us go.” But threshold. there was no response. So the man put her on his 29 donkey and set out for home. When he reached his house, he picked up a knife, took hold of his concubine, cut her limb by 30 limb into twelve pieces, and sent her throughout And everyone who saw the te" + }, + { + "verseNum": 4, + "text": "4 6 5 So the Levite, the husband of the murdered woman, answered: “I and my concubine came to Gibeah in Benjamin to spend the night. And dur- ing the night, the men of Gibeah rose up against me and surrounded the house. They intended to kill me, but they abused my concubine, and she Then I took my concubine, cut her into died. pieces, and sent her throughout the land of Is- rael’s inheritance, because they had committed a Behold, all lewd and disgraceful act in Israel. you Israelites, give your advice and verdict here 8 and now.” 7 9 10 Then all the people stood as one man and said, “Not one of us will return to his tent or to his Now this is what we will do to Gibeah: house. We will We will go against it as the lot dictates. take ten men out of every hundred from all the tribes of Israel, and a hundred out of every thou- sand, and a thousand out of every ten thousand, to supply provisions for the army when they go to Gibeah in Benjamin to punish them for the 11 atrocity they have committed in Israel.” a 12 13 So all the men of Israel gathered as one man, And the tribes of Israel united against the city. sent men throughout the tribe of Benjamin, say- ing, “What is this wickedness that has occurred Hand over the wicked men of among you? Gibeah so we can put them to death and purge Israel of this evil.” 14 But the Benjamites refused to heed the voice of their fellow Israelites. And from their cities 15 they came together at Gibeah to go out and fight On that day the Benja- aga" + }, + { + "verseNum": 45, + "text": ", 20:47, and 21:13. in the pomegranate cave LXX; Heb. e 21 or Or f 2 4 5 Now there were cliffs on both sides of the pass that Jonathan intended to cross to reach the Phil- istine outpost. One was named Bozez and the One cliff stood to the north toward other Seneh. Michmash, and the other to the south toward 6 Geba. Jonathan said to the young man bearing his ar- mor, “Come, let us cross over to the outpost of these uncircumcised men. Perhaps the LORD will work on our behalf. Nothing can hinder the LORD 7 from saving, whether by many or by few.” His armor-bearer replied, “Do all that is in your 8 heart. Go ahead; I am with you heart and soul.” “Very well,” said Jonathan, “we will cross over 9 toward these men and show ourselves to them. If they say, ‘Wait until we come to you,’ then we 10 will stay where we are and will not go up to them. But if they say, ‘Come on up,’ then we will go up, because this will be our sign that the LORD 11 has delivered them into our hands.” So the two of them showed themselves to the outpost of the Philistines, who exclaimed, “Look, the Hebrews are coming out of the holes in which 12 they were hiding!” So the men of the outpost called out to Jona- than and his armor-bearer, “Come on up, and we will teach you a lesson!” “Follow me,” Jonathan told his armor-bearer, “for the LORD has delivered them into the hand 13 of Israel.” So Jonathan climbed up on his hands and feet, with his armor-bearer behind him. And the Phil- istines fell before Jonathan, an" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 15, + "text": "| 243 Wives for the Benjamites 21 Now the men of Israel had sworn an oath at Mizpah, saying, “Not one of us will give 2 his daughter in marriage to a Benjamite.” 3 So the people came to Bethel and sat there be- fore God until evening, lifting up their voices and weeping bitterly. “Why, O LORD God of Israel,” they cried out, “has this happened in Israel? To- 4 day in Israel one tribe is missing!” 5 The next day the people got up early, built an altar there, and presented burnt offerings and The Israelites asked, “Who peace offerings. among all the tribes of Israel did not come to the assembly before the LORD?” For they had taken a solemn oath that anyone who failed to come up before the LORD at Mizpah would surely be put 6 to death. 7 And the Israelites grieved for their brothers, the Benjamites, and said, “Today a tribe is cut off What should we do about wives for from Israel. the survivors, since we have sworn by the LORD 8 not to give them our daughters in marriage?” So they asked, “Which one of the tribes of Israel failed to come up before the LORD at Mizpah?” And, in fact, no one from Jabesh-gilead had come For when the to the camp for the assembly. people were counted, none of the residents of 10 Jabesh-gilead were there. 9 So the congregation sent 12,000 of their most valiant men and commanded them: “Go and put 11 to the sword those living in Jabesh-gilead, includ- a This is what you are ing women and children. to do: Devote to destruction every male, as well as every f" + }, + { + "verseNum": 16, + "text": "16 17 Then the elders of the congregation said, “What should we do about wives for those who remain, since the women of Benjamin have been They added, “There must be heirs destroyed?” 18 for the survivors of Benjamin, so that a tribe of But we cannot Israel will not be wiped out. give them our daughters as wives.” For the Israelites had sworn, “Cursed is he who 19 gives a wife to a Benjamite.” “But look,” they said, “there is a yearly feast to the LORD in Shiloh, which is north of Bethel east of the road that goes up from Bethel to Shechem, 20 and south of Lebonah.” 21 So they commanded the Benjamites: “Go, hide and watch. When you see the in the vineyards daughters of Shiloh come out to perform their dances, each of you is to come out of the vine- yards, catch for himself a wife from the daugh- 22 ters of Shiloh, and go to the land of Benjamin. When their fathers or brothers come to us to complain, we will tell them, ‘Do us a favor by helping them, since we did not get wives for each of them in the war. Since you did not actually give 23 them your daughters, you have no guilt.’ ” 24 The Benjamites did as instructed and carried away the number of women they needed from the dancers they caught. They went back to their own inheritance, rebuilt their cities, and settled in them. And at that time, each of the Israelites returned from there to his own tribe and clan, 25 each to his own inheritance. In those days there was no king in Israel; everyone did what was right in his own e" + } + ] + } + ] + }, + { + "name": "Ruth", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–5) solute purity. 3 4 Honor the widows who are truly widows. But if a widow has children or grandchildren, they must first learn to show godliness to their own family and repay their parents, for this is pleas- 5 ing in the sight of God. The widow who is truly in need and left all alone puts her hope in God and continues night But she and day in her petitions and prayers. who lives for pleasure is dead even while she is 7 still alive. 6 8 Give these instructions to the believers, so that If anyone does not they will be above reproach. provide for his own, and especially his own household, he has denied the faith and is worse 9 than an unbeliever. 10 A widow should be enrolled if she is at least sixty years old, faithful to her husband, and well known for good deeds such as bringing up children, entertaining strangers, washing the feet of the saints, imparting relief to the afflicted, 11 and devoting herself to every good work. 13 12 But refuse to enroll younger widows. For when their passions draw them away from and thus will Christ, they will want to marry, incur judgment because they are setting aside At the same time they will their first faith. also learn to be idle, going from house to house and being not only idle, but also gossips and busybodies, discussing things they should not mention. b 18 a 18 1 Timothy 6:2 | 1067 14 So I advise the younger widows to marry, have children, and manage their households, denying For some the adversary occasion for slander. 16 have al" + }, + { + "verseNum": 22, + "text": "22 12 So Naomi returned from the land of Moab with her daughter-in-law Ruth the Moabitess. And they arrived in Bethlehem at the beginning of the Boaz Meets Ruth barley harvest. May the LORD repay your work, and before. may you receive a rich reward from the LORD, the God of Israel, under whose wings you have 13 taken refuge.” 2 Now Naomi had a relative on her husband’s side, a prominent man of noble character from the clan of Elimelech, whose name was 2 Boaz. And Ruth the Moabitess said to Naomi, “Please let me go into the fields and glean heads of grain after someone in whose sight I may find favor.” 3 “Go ahead, my daughter,” Naomi replied. So Ruth departed and went out into the field and gleaned after the harvesters. And she hap- pened to come to the part of the field belonging 4 to Boaz, who was from the clan of Elimelech. Just then Boaz arrived from Bethlehem and said to the harvesters, “The LORD be with you.” 5 “The LORD bless you,” they replied. And Boaz asked the foreman of his harvesters, 6 “Whose young woman is this?” The foreman answered, “She is the Moabitess 7 who returned with Naomi from the land of Moab. She has said, ‘Please let me glean and gather among the sheaves after the harvesters.’ So she came out and has continued from morning until now, except that she rested a short time in the 8 shelter.” 9 Then Boaz said to Ruth, “Listen, my daughter. Do not go and glean in another field, and do not go away from this place, but stay here close to my Let your eyes b" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 12, + "text": ". kinsman-redeemer d 15 e 15 f 1 verses 12 and 13; see" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 5, + "text": "| 247 3 3 One day Ruth’s mother-in-law Naomi said to her, “My daughter, should I not seek a rest- 2 ing place for you, that it may be well with you? Now is not Boaz, with whose servant girls you have been working, a relative of ours? In fact, to- night he is winnowing barley on the threshing Therefore wash yourself, put on perfume, floor. and wear your best clothes. Go down to the threshing floor, but do not let the man know you are there until he has finished eating and drink- When he lies down, note the place where he ing. lies. Then go in and uncover his feet, and lie down, and he will explain to you what you should 5 do.” 6 4 “I will do everything you say,” Ruth answered. So she went down to the threshing floor and did everything her mother-in-law had instructed her 7 to do. After Boaz had finished eating and drinking and was in good spirits, he went to lie down at the end of the heap of grain. Then Ruth went in se- 8 cretly, uncovered his feet, and lay down. At midnight, Boaz was startled, turned over, 9 and there lying at his feet was a woman! So she lay down at his feet until morning, but she got up before anyone else could recognize her. 15 Then Boaz said, “Do not let it be known that a And he woman came to the threshing floor.” told her, “Bring the shawl you are wearing and d hold it out.” When she did so, he poured in six and placed it on her. Then measures of barley 16 he went into the city. e When Ruth returned to her mother-in-law, Na- omi asked her, “How did it" + }, + { + "verseNum": 6, + "text": "6 The kinsman-redeemer replied, “I cannot re- deem it myself, or I would jeopardize my own in- heritance. Take my right of redemption, because 7 I cannot redeem it.” Now in former times in Israel, concerning the redemption or exchange of property, to make any matter legally binding a man would remove his sandal and give it to the other party, and this So the kinsman-re- was a confirmation in Israel. deemer removed his sandal and said to Boaz, 9 “Buy it for yourself.” 8 10 At this, Boaz said to the elders and all the peo- ple, “You are witnesses today that I am buying from Naomi all that belonged to Elimelech, Chil- ion, and Mahlon. Moreover, I have acquired Ruth the Moabitess, Mahlon’s widow, as my wife, to raise up the name of the deceased through his inheritance, so that his name will not disappear from among his brothers or from the gate of his 11 home. You are witnesses today.” “We are witnesses,” said the elders and all the people at the gate. “May the LORD make the woman entering your home like Rachel and Leah, who together built up the house of Israel. May you be prosperous in Ephrathah and famous And may your house become in Bethlehem. like the house of Perez, whom Tamar bore to Ju- dah, because of the offspring the LORD will give you by this young woman.” 12 Boaz Marries Ruth 13 So Boaz took Ruth, and she became his wife. And when he had relations with her, the LORD enabled her to conceive, and she gave birth to a 14 son. 15 Then the women said to Naomi, “Blessed be" + }, + { + "verseNum": 18, + "text": "–22 ;" + }, + { + "verseNum": 19, + "text": "and" + }, + { + "verseNum": 20, + "text": "–21); Hebrew Salma Ephrathah d 19 Ephrath and relations with Ephrathah, the wife of Hezron his father, and she bore ; see 1 Samuel 16:9, 2 Samuel 13:3, and 2 Samuel 21:21. ; see verse 50. sons h 31 is a variant of e 23 Or ; twice in this verse 42, 45, 49, and possibly elsewhere Hebrew ; see also LXX. ; three times in this verse Shema was the father of Raham the Shimeah b 13 Shimea father of Jorkeam, and Rekem was the c 17 Jether the villages of Jair Shammah Ithra , After Hezron died, Caleb had the founder ; see 2 Samuel 17:25. , is a variant of f 24 is a variant of g 24 i 42 Or Or Hebrew; LXX Mareshah ; also in verses 45 father of Shammai. was Maon, and Maon was the father of Beth-zur. The son of Shammai 46 Caleb’s concubine Ephah was the mother of Haran, Moza, and Gazez. Haran was the 47 father of Gazez. The sons of Jahdai: 48 Regem, Jotham, Geshan, Pelet, Ephah, and Shaaph. 49 Caleb’s concubine Maacah was the mother of Sheber and Tirhanah. She was also the mother of Shaaph father of Madmannah, and of Sheva father of Machbenah and Gibea. Caleb’s daughter was Acsah. These were the descendants of Caleb. 50 a b of Hur the firstborn of The sons Ephrathah: 51 Shobal the father of Kiriath-jearim, 52 Salma the father of Bethlehem, and Hareph the father of Beth-gader. These were the descendants of Shobal the 53 father of Kiriath-jearim: and the Haroeh, half the Manahathites, clans of Kiriath-jearim—the Ithrites, Puthites, Shumathites, and Mishraites. From these descended the Zorathi" + } + ] + } + ] + }, + { + "name": "Ezra", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–4 ;" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–67) their posts and some at their own homes.” 4 5 Now the city was large and spacious, but there were few people in it, and the houses had not yet Then my God put it into my heart been rebuilt. to assemble the nobles, the officials, and the peo- ple to be enrolled by genealogy. I found the gene- alogical register of those who had first returned, 6 and I found the following written in it: 7 These are the people of the province who came up from the captivity of the exiles carried away to Babylon by Nebuchadnezzar its king. They re- turned to Jerusalem and Judah, each to his own accompanied by Zerubbabel, Jeshua, Ne- town, a hemiah, Azariah, Raamiah, Nahamani, Mordecai, Bilshan, Mispereth, Bigvai, Nehum, and Baanah. 8 9 10 11 This is the count of the men of Israel: the descendants of Parosh, 2,172; the descendants of Shephatiah, 372; the descendants of Arah, 652; the descendants of Pahath-moab 12 (through the line of Jeshua and Joab), 2,818; 14 15 16 17 18 19 20 21 24 25 26 the descendants of Zattu, 845; b the descendants of Zaccai, 760; the descendants of Binnui, 648; the descendants of Bebai, 628; the descendants of Azgad, 2,322; the descendants of Adonikam, 667; the descendants of Bigvai, 2,067; the descendants of Adin, 655; the descendants of Ater (through 22 Hezekiah), 98; 23 the descendants of Hashum, 328; the descendants of Bezai, 324; the descendants of Hariph, the descendants of Gibeon, 95; c d 112; the men of Bethlehem and Netophah, 27 188; 28 29 e the men of Anathoth" + }, + { + "verseNum": 2, + "text": "d 25 Gibeon Nebo of West Elam g 34 is a variant of Or b 15 Binnui Gibbar Bani e 28 Beth-azmaveth c 24 Hariph Azmaveth Jorah h 36 is a variant of the sons ; see" + }, + { + "verseNum": 10, + "text": ". i 43 Hodevah ; see" + }, + { + "verseNum": 18, + "text": ". Literally ; here and in v. 37 is a variant of ; see" + }, + { + "verseNum": 20, + "text": ". is a variant of is a variant of Hodaviah ; see" + }, + { + "verseNum": 24, + "text": ". Or of West f 33 ; see" + }, + { + "verseNum": 39, + "text": ". is a variant of i 5 Bilgah k 14 Malluchi Malluch is a variant of ; see verse 11. Or or Or 460 |" + }, + { + "verseNum": 40, + "text": "and Neh. Ahasuerus ; Ashurbanipal Heb. . c 6 440 |" + }, + { + "verseNum": 44, + "text": ". Addan Peruda is a h 65 ; see" + }, + { + "verseNum": 50, + "text": ". i 68 b 47 Sia ; also in verses 60 and 73 d 54 Bazlith Ami is a variant of ; see" + }, + { + "verseNum": 52, + "text": ". is a variant of is a variant of ; ; see" + }, + { + "verseNum": 55, + "text": ". ally clude this verse. Some Hebrew manuscripts (see also" + }, + { + "verseNum": 56, + "text": "| 437 44 the descendants of Tabbaoth, the descendants of Keros, h the descendants of Siaha, 45 the descendants of Padon, the descendants of Lebanah, the descendants of Hagabah, 46 the descendants of Akkub, i the descendants of Hagab, the descendants of Shalmai, 47 the descendants of Hanan, the descendants of Giddel, the descendants of Gahar, 48 the descendants of Reaiah, the descendants of Rezin, the descendants of Nekoda, 49 the descendants of Gazzam, the descendants of Uzza, the descendants of Paseah, 50 the descendants of Besai, the descendants of Asnah, the descendants of Meunim, 51 the descendants of Nephusim, j the descendants of Bakbuk, the descendants of Hakupha, k 52 the descendants of Harhur, the descendants of Bazluth, the descendants of Mehida, 53 the descendants of Harsha, the descendants of Barkos, the descendants of Sisera, 54 the descendants of Temah, 55 the descendants of Neziah, and the descendants of Hatipha. The descendants of the servants of Solomon: the descendants of Sotai, l the descendants of Hassophereth, 56 the descendants of Peruda, the descendants of Jaala, The temple servants: the descendants of Ziha, Gibeon the descendants of Hasupha, a 20 Gibbar c 24 Azmaveth arim e 31 is a variant of of West Elam is a variant of h 44 Siaha Or also in verses 58 and 70 k 52 Bazluth miah 7:48); the other alternate reads is a variant of Bazlith b 21 the sons the descendants of Darkon, Beth-azmaveth ; see" + }, + { + "verseNum": 57, + "text": "57 the descendants of Giddel, the descendants of Shephatiah, the descendants of Hattil, a the descendants of Pochereth-hazzebaim, 58 and the descendants of Ami. The temple servants and descendants of the servants of Solomon numbered 392 in all. 59 b 70 So the priests, the Levites, the singers, the gatekeepers, and the temple servants, along with some of the people, settled in their own towns; settled in their and the rest of the Israelites Sacrifices Restored towns. f 3 By the seventh month, the Israelites had set- tled in their towns, and the people assem- 2 bled as one man in Jerusalem. g The following came up from Tel-melah, Tel-harsha, Cherub, Addan, and Immer, but they could not prove that their families were de- scended from Israel: 60 the descendants of Delaiah, the descendants of Tobiah, and the descendants of Nekoda, 61 652 in all. And from among the priests: the descend- ants of Hobaiah, the descendants of Hakkoz, and the descendants of Barzillai (who had married a daughter of Barzillai the Gileadite 62 and was called by their name). 63 These men searched for their family rec- ords, but they could not find them and so were excluded from the priesthood as un- The governor ordered them not to clean. eat the most holy things until there was a 65 priest to consult the Urim and Thummim. c 64 66 The whole assembly numbered 42,360, in addition to their 7,337 menservants and maid- servants, as well as their 200 male and female 67 They had 736 horses, 245 mules, singers. Off" + }, + { + "verseNum": 59, + "text": ". Liter- the descendants of Sisera, The Nethinim the descendants of Temah, a 46 Nephusim Hebrew f 59 Amon Lights and Perfections ; see" + }, + { + "verseNum": 66, + "text": "); most Hebrew manuscripts do not in- 454 |" + }, + { + "verseNum": 68, + "text": "–70 ;" + }, + { + "verseNum": 69, + "text": "" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 2, + "text": ". 26 So the God of Israel stirred up the spirit of Pul king of Assyria (that is, Tiglath-pileser king of Assyria) to take the Reubenites, the Gadites, and the half-tribe of Manasseh into exile. And he brought them to Halah, Habor, Hara, and the The Descendants of Levi river of Gozan, where they remain to this day. 6 The sons of Levi: 2 Gershon, Kohath, and Merari. The sons of Kohath: 3 Amram, Izhar, Hebron, and Uzziel. The children of Amram: Aaron, Moses, and Miriam. The sons of Aaron: 4 Nadab, Abihu, Eleazar, and Ithamar. Eleazar was the father of Phinehas, 5 Phinehas was the father of Abishua, Abishua was the father of Bukki, 6 Bukki was the father of Uzzi, Uzzi was the father of Zerahiah, 7 Zerahiah was the father of Meraioth, Meraioth was the father of Amariah, 8 Amariah was the father of Ahitub, Ahitub was the father of Zadok, 9 Zadok was the father of Ahimaaz, Ahimaaz was the father of Azariah, 10 Azariah was the father of Johanan, Johanan was the father of Azariah, who served as priest in the temple that Solo- 11 mon built in Jerusalem, Azariah was the father of Amariah, 12 Amariah was the father of Ahitub, Ahitub was the father of Zadok, 13 Zadok was the father of Shallum, Shallum was the father of Hilkiah, 14 Hilkiah was the father of Azariah, Azariah was the father of Seraiah, b 15 and Seraiah was the father of Jehozadak. Jehozadak went into captivity when the LORD sent Judah and Jerusalem into exile by the hand of Nebuchadnezzar. is a variant of b 14 Jehozadak ; al" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 8, + "text": "through" + }, + { + "verseNum": 16, + "text": "| 439 Opposition under Xerxes and Artaxerxes 6 c At the beginning of the reign of Xerxes, an ac- cusation was lodged against the people of Judah 7 and Jerusalem. And in the days of Artaxerxes king of Persia, Bishlam, Mithredath, Tabeel, and the rest of his associates wrote a letter to Artaxerxes. It was 8 written in Aramaic and then translated. d Rehum the commander and Shimshai the scribe wrote the letter against Jerusalem to King Arta- xerxes as follows: 9 From Rehum the commander, Shimshai the scribe, and the rest of their associates—the judges and officials over Tripolis, Persia, 10 Erech and Babylon, the Elamites of Susa, and the rest of the peoples whom the great deported and and honorable Ashurbanipal f settled in the cities of Samaria and elsewhere 11 west of the Euphrates. e (This is the text of the letter they sent to him.) To King Artaxerxes, From your servants, the men west of the Eu- 12 phrates: Let it be known to the king that the Jews who came from you to us have returned to Jerusalem and are rebuilding that rebellious and wicked city. They are restoring its walls 13 and repairing its foundations. Let it now be known to the king that if that city is rebuilt and its walls are re- stored, they will not pay tribute, duty, or toll, 14 and the royal treasury will suffer. g 15 Now because we are in the service of the palace and it is not fitting for us to allow the king to be dishonored, we have sent to in- that a search should be form the king made of the record boo" + }, + { + "verseNum": 17, + "text": "The Decree of Artaxerxes 5 17 Then the king sent this reply: To Rehum the commander, Shimshai the scribe, and the rest of your associates living in Samaria and elsewhere in the region west of the Euphrates: 18 Greetings. 19 20 The letter you sent us has been translated and read in my presence. I issued a decree, and a search was conducted. It was discov- ered that this city has revolted against kings from ancient times, engaging in rebellion And mighty kings have ruled and sedition. over Jerusalem and exercised authority over the whole region west of the Euphrates; and 21 tribute, duty, and toll were paid to them. Now, therefore, issue an order for these 22 men to stop, so that this city will not be re- See that you do not built until I so order. neglect this matter. Why allow this threat to increase and the royal interests to suffer? 23 When the text of the letter from King Arta- xerxes was read to Rehum, Shimshai the scribe, and their associates, they went immediately to 24 the Jews in Jerusalem and forcibly stopped them. Thus the construction of the house of God in Jerusalem ceased, and it remained at a standstill until the second year of the reign of Darius king of Persia. Temple Rebuilding Resumes" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–5) 10 1 In the second year of the reign of Darius, on the first day of the sixth month, the word of the LORD came through Haggai the prophet to Zerubbabel son of Shealtiel, governor of Judah, and to Joshua son of Jehozadak, the high priest, that this is what the LORD of Hosts says: stating 2 a “These people say, ‘The time has not yet come to rebuild the house of the LORD.’ ” 3 Then the word of the LORD came through Hag- 4 gai the prophet, saying: “Is it a time for you yourselves 5 to live in your paneled houses, while this house lies in ruins?” Now this is what the LORD of Hosts says: 6 “Consider carefully your ways. You have planted much but harvested little. You eat but never have enough. You drink but never have your fill. You put on clothes but never get warm. 7 You earn wages to put into a bag pierced through.” This is what the LORD of Hosts says: 8 “Consider carefully your ways. Go up into the hills, bring down lumber, and build the house, so that I may take pleasure in it and 9 be glorified, says the LORD. You expected much, but behold, it amounted to little. And what you brought home, I blew away. Why? declares the LORD of Hosts. Because My house still lies in ruins, a 1 Jehozadak while each of you is busy with his own house. Jozadak Therefore, on account of you the heavens have withheld their dew 11 and the earth has withheld its crops. I have summoned a drought on the fields and on the mountains, on the grain, new wine, and oil, and on whatever the ground yields, o" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 18, + "text": "is in Aramaic. ; also in verses 11, 16, 17, and 20 Aramaic , , , and Aramaic Literally goodness kindness faithfulness , another name for mercy are translated here and in most cases throughout the Scriptures as e 10 , g 14 or loyalty to a covenant Osnappar because the salt of the palace is our salt , another name for ; see" + }, + { + "verseNum": 19, + "text": "The Returned Exiles Keep the Passover Artaxerxes’ Letter for Ezra 19 11 20 On the fourteenth day of the first month, the exiles kept the Passover. All the priests and Levites had purified themselves and were cere- monially clean. This is the text of the letter King Artaxerxes had given to Ezra the priest and scribe, an expert in the commandments and statutes of the LORD to Israel: 12 e 21 And the Levites slaughtered the Passover lamb for all the exiles, for their priestly brothers, and for themselves. The Israelites who had re- turned from exile ate it, together with all who had separated themselves from the uncleanness of the peoples of the land to seek the LORD, the 22 God of Israel. b a For seven days they kept the Feast of Unleav- with joy, because the LORD had ened Bread made them joyful and turned the heart of the king of Assyria toward them to strengthen their hands in the work on the house of the God of Is- Ezra Arrives in Jerusalem rael. 7 c 4 2 5 3 during the reign of Arta- Many years later, xerxes king of Persia, Ezra son of Seraiah, the the son of son of Azariah, the son of Hilkiah, the Shallum, the son of Zadok, the son of Ahitub, son of Amariah, the son of Azariah, the son of Me- raioth, the son of Zerahiah, the son of Uzzi, the the son of Abishua, the son of son of Bukki, 6 Phinehas, the son of Eleazar, the son of Aaron the this Ezra came up from Babylon. chief priest— He was a scribe skilled in the Law of Moses, which the LORD, the God of Israel, had given. 7" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 12, + "text": "–26 is in Aramaic. verse 25 bushels or 22,000 liters (probably about 19.2 tons or 17.4 metric tons of wheat). gallons or 2,200 liters of wine. is approximately 3.77 tons or 3.42 metric tons of silver. (probably a greeting) 100 baths of oil Aramaic Hebrew k 22 Or ; also in verse 24 i 22 100 cors Aramaic j 22 100 baths The original text of ; also in is approximately 624 is approximately 580 ; that is, approximately 580 gallons or 2,200 liters 23 6" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 20, + "text": "| 443 24 Whatever is com- and salt without limit. manded by the God of heaven must be done diligently for His house. For why should wrath fall on the realm of the king and his And be advised that you have no sons? authority to impose tribute, duty, or toll on any of the priests, Levites, singers, door- keepers, temple servants, or other servants 25 of this house of God. And you, Ezra, according to the wisdom of your God, which you possess, are to appoint magistrates and judges to judge all the peo- ple west of the Euphrates—all who know the laws of your God. And you are to teach these 26 laws to anyone who does not know them. If anyone does not keep the law of your God and the law of the king, let a strict judg- ment be executed against him, whether death, banishment, confiscation of property, or imprisonment. Ezra Blesses God 27 Blessed be the LORD, the God of our fathers, who has put into the heart of the king to so honor the house of the LORD in Jerusalem, and who has shown me favor before the king, his counse- lors, and all his powerful officials. 28 And because the hand of the LORD my God was upon me, I took courage and gathered the leaders The Exiles Who Returned with Ezra of Israel to return with me. 8 2 These are the family heads and genealogical records of those who returned with me from Babylon during the reign of King Artaxerxes: from the descendants of Phinehas, Gershom; 3 from the descendants of Ithamar, Daniel; from the descendants of David, Hattush the descenda" + }, + { + "verseNum": 21, + "text": "Fasting for Protection 21 22 And there by the Ahava Canal I proclaimed a fast, so that we might humble ourselves before our God and ask Him for a safe journey for us and For I our children, with all our possessions. was ashamed to ask the king for an escort of sol- diers and horsemen to protect us from our ene- mies on the road, since we had told him, “The hand of our God is gracious to all who seek Him, but His great anger is against all who forsake 23 Him.” So we fasted and petitioned our God about Priests to Guard the Offerings this, and He granted our request. 24 25 Then I set apart twelve of the leading priests, together with Sherebiah, Hashabiah, and ten of and I weighed out to them the their brothers, contribution of silver and gold and the articles that the king, his counselors, his leaders, and all the Israelites there had offered for the house of 26 our God. b I weighed out into their hands 650 talents of a c 27 articles of silver weighing 100 talents, d silver, 100 talents of gold, 1,000 darics, 28 bronze, as precious as gold. 20 gold bowls valued at and two articles of fine polished 29 Then I told them, “You are holy to the LORD, and these articles are holy. The silver and gold are a freewill offering to the LORD, the God of Guard them carefully until you your fathers. weigh them out in the chambers of the house of the LORD in Jerusalem before the leading priests, 30 Levites, and heads of the Israelite families.” So the priests and Levites took charge of the silve" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "–4) ing devotion. 23 24 In those days I also saw Jews who had married women from Ashdod, Ammon, and Moab. Half of their children spoke the language of Ashdod or of the other peoples, but could not speak the lan- guage of Judah. I rebuked them and called down curses on them. I beat some of these men and pulled out their hair. 25 26 Then I made them take an oath before God and said, “You must not give your daughters in mar- riage to their sons or take their daughters as wives for your sons or for yourselves! Did not King Solomon of Israel sin in matters like this? There was not a king like him among many na- tions, and he was loved by his God, who made him king over all Israel—yet foreign women drew him into sin. Must we now hear that you too are doing all this terrible evil and acting un- faithfully against our God by marrying foreign 28 women?” 27 Even one of the sons of Jehoiada son of Eliashib the high priest had become a son-in-law to San- ballat the Horonite. Therefore I drove him away 29 from me. Remember them, O my God, because they have defiled the priesthood and the covenant of the 30 priesthood and of the Levites. Thus I purified the priests and Levites from everything foreign, and I assigned specific duties to each of the priests and Levites. I also arranged for contributions of wood at the ap- pointed times, and for the firstfruits. 31 Remember me, O my God, with favor. Artaxerxes king of Persia is identified here as the king of Babylon because Persia had conquered" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 11, + "text": "| 445 Shecaniah’s Encouragement 10 While Ezra prayed and made this confes- sion, weeping and falling facedown be- fore the house of God, a very large assembly of Israelites—men, women, and children—gath- ered around him, and the people wept bitterly as 2 well. Then Shecaniah son of Jehiel, an Elamite, said to Ezra: “We have been unfaithful to our God by marrying foreign women from the people of the 3 land, yet in spite of this, there is hope for Israel. So now let us make a covenant before our God to send away all the foreign wives and their chil- dren, according to the counsel of my lord and of those who tremble at the command of our God. Get up, for Let it be done according to the Law. this matter is your responsibility, and we will 5 support you. Be strong and take action!” 4 So Ezra got up and made the leading priests, Le- vites, and all Israel take an oath to do what had The People’s Confession of Sin been said. And they took the oath. 6 b Then Ezra withdrew from before the house of God and walked to the chamber of Jehohanan son there, he ate no of Eliashib. And while he stayed food and drank no water, because he was mourn- 7 ing over the unfaithfulness of the exiles. 8 And a proclamation was issued throughout Ju- dah and Jerusalem that all the exiles should Whoever failed to appear gather at Jerusalem. within three days would forfeit all his property, according to the counsel of the leaders and el- ders, and would himself be expelled from the 9 assembly of the exiles. S" + }, + { + "verseNum": 12, + "text": "12 13 14 And the whole assembly responded in a loud But there voice: “Truly we must do as you say! are many people here, and it is the rainy season. We are not able to stay out in the open. Nor is this the work of one or two days, for we have trans- Let our leaders gressed greatly in this matter. represent the whole assembly. Then let everyone in our towns who has married a foreign woman come at an appointed time, together with the el- ders and judges of each town, until the fierce anger of our God in this matter is turned away 15 from us.” (Only Jonathan son of Asahel and Jahzeiah son of Tikvah, supported by Meshullam and Shab- 16 bethai the Levite, opposed this plan.) So the exiles did as proposed. Ezra the priest selected men who were family heads, each of them identified by name, to represent their fam- ilies. On the first day of the tenth month they and by the first day launched the investigation, of the first month they had dealt with all the men Those Guilty of Intermarriage who had married foreign women. 18 17 Among the descendants of the priests who had married foreign women were found these de- and his scendants of Jeshua son of Jozadak brothers: a 19 Maaseiah, Eliezer, Jarib, and Gedaliah. They pledged to send their wives away, 20 and for their guilt they presented a ram from the flock as a guilt offering. From the descendants of Immer: 21 Hanani and Zebadiah. From the descendants of Harim: 22 Maaseiah, Elijah, Shemaiah, Jehiel, and Uzziah. From the descendants of" + } + ] + } + ] + }, + { + "name": "Nehemiah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 8, + "text": "–9 Or Cited in" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 9, + "text": "of the citadel to the temple, for the city wall, and for the house I will occupy.” And because the gracious hand of my God was 9 upon me, the king granted my requests. Then I went to the governors west of the Euphrates and gave them the king’s letters. The king had also sent army officers and cavalry with 10 me. But when Sanballat the Horonite and Tobiah the Ammonite official heard about this, they were deeply disturbed that someone had come Nehemiah Inspects the Walls to seek the well-being of the Israelites. 11 12 After I had arrived in Jerusalem and had been I set out at night with a few there three days, men. I did not tell anyone what my God had laid on my heart to do for Jerusalem. The only animal 13 with me was the one on which I was riding. a So I went out at night through the Valley Gate and the Dung toward the Well of the Serpent Gate, and I inspected the walls of Jerusalem that had been broken down and the gates that had 14 been destroyed by fire. 15 Then I went on to the Fountain Gate and the King’s Pool, but there was no room for the animal so I went up the val- under me to get through; ley by night and inspected the wall. Then I headed back and reentered through the Valley 16 Gate. 17 The officials did not know where I had gone or what I was doing, for I had not yet told the Jews or priests or nobles or officials or any other Then I said to them, “You see the workers. trouble we are in. Jerusalem lies in ruins, and its gates have been burned down. Come, let us r" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 24, + "text": "); most Hebrew manuscripts also in verse 31 Or Or Hebrew ; 450 |" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 9, + "text": "| 449 Zadok son of Immer made repairs opposite his house, and next to him, Shemaiah son of She- 30 caniah, the guard of the East Gate, made repairs. 31 Next to him, Hananiah son of Shelemiah, as well as Hanun the sixth son of Zalaph, repaired another section. Next to them, Meshullam son of Berechiah made repairs opposite his own quar- Next to him, Malchijah, one of the gold- ters. smiths, made repairs as far as the house of the temple servants and the merchants, opposite the Inspection Gate, and as far as the upper room And between the upper above the corner. room above the corner and the Sheep Gate, the The Work Ridiculed goldsmiths and merchants made repairs. 32 c 18 Next to him, the Levites made repairs under Rehum son of Bani, and next to him, Hashabiah, ruler of a half-district of Keilah, made repairs for his district. Next to him, their countrymen made repairs under Binnui son of Henadad, ruler of the other half-district of Keilah. And next to him, Ezer son of Jeshua, ruler of Mizpah, repaired another section opposite the ascent to 20 the armory, near the angle in the wall. 19 Next to him, Baruch son of Zabbai diligently re- paired another section, from the angle to the 21 doorway of the house of Eliashib the high priest. Next to him, Meremoth son of Uriah, the son of Hakkoz, repaired another section, from the door- way of the house of Eliashib to the end of the house. And next to him, the priests from the 23 surrounding area made repairs. 22 25 24 Beyond them, Benjamin" + }, + { + "verseNum": 10, + "text": "10 a Meanwhile, the people of Judah said: “The strength of the laborer fails, and there is so much rubble 11 that we will never be able to rebuild the wall.” And our enemies said, “Before they know or see a thing, we will come into their midst, kill 12 them, and put an end to the work.” At that time the Jews who lived nearby came and told us ten times over, “Wherever you turn, 13 they will attack us.” So I stationed men behind the lowest sections of the wall, at the vulnerable areas. I stationed them by families with their swords, spears, and 14 bows. After I had made an inspection, I stood up and said to the nobles, the officials, and the rest of the people, “Do not be afraid of them. Remember the Lord, who is great and awesome, and fight for your brothers, your sons and your daughters, 15 your wives and your homes.” When our enemies heard that we were aware of their scheme and that God had frustrated it, 16 each of us returned to his own work on the wall. And from that day on, half of my servants did the work while the other half held spears, shields, bows, and armor. 17 The officers stationed themselves behind all the who were rebuilding the wall. people of Judah The laborers who carried materials worked with 18 one hand and held a weapon with the other. And each of the builders worked with his sword strapped at his side. But the trumpeter 19 stayed beside me. 20 Then I said to the nobles, the officials, and the rest of the people: “The work is great and exten- sive, and w" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 16, + "text": "| 451 5 The fifth time, Sanballat sent me this same mes- sage by his young servant, who had in his hand that read: an unsealed letter 6 d 7 “It is reported among the nations—and Ge- agrees—that you and the Jews are shem plotting to revolt, and this is why you are building the wall. According to these reports, and you have you are to become their king, even appointed prophets in Jerusalem to proclaim on your behalf: ‘There is a king in Judah.’ Soon these rumors will reach the ears of the king. So come, let us confer together.” 8 Then I sent him this reply: “There is nothing to these rumors you are spreading; you are invent- 9 ing them in your own mind.” For they were all trying to frighten us, saying, “Their hands will be weakened in the work, and it will never be finished.” 10 But now, my God, strengthen my hands. e Later, I went to the house of Shemaiah son of Delaiah, the son of Mehetabel, who was confined to his house. He said: “Let us meet at the house of God inside the temple. Let us shut the temple doors 11 because they are coming to kill you— by night they are coming to kill you!” But I replied, “Should a man like me run away? Should one like me go into the temple to save his 12 own life? I will not go!” 13 I realized that God had not sent him, but that he had uttered this prophecy against me because He had Tobiah and Sanballat had hired him. been hired to intimidate me so that I would sin by doing as he suggested, so they could give me a 14 bad name in order to discre" + }, + { + "verseNum": 17, + "text": "17 13 18 Also in those days, the nobles of Judah sent many letters to Tobiah, and Tobiah’s letters kept For many in Judah were coming to them. bound by oath to him, since he was a son-in-law of Shecaniah son of Arah, and his son Jehohanan had married the daughter of Meshullam son of 19 Berechiah. Moreover, these nobles kept reporting to me Tobiah’s good deeds, and they relayed my words Securing the City to him. And Tobiah sent letters to intimidate me. 7 When the wall had been rebuilt and I had set the doors in place, the gatekeepers, singers, 2 and Levites were appointed. 3 Then I put my brother Hanani in charge of Jeru- salem, along with Hananiah the commander of the fortress, because he was a faithful man who And I told them, feared God more than most. “Do not open the gates of Jerusalem until the sun is hot. While the guards are on duty, keep the doors shut and securely fastened. And appoint the residents of Jerusalem as guards, some at The List of Returning Exiles" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 15, + "text": ". is a variant of ; see Nehe- 20 21 22 23 24 25 a 95; b the descendants of Gibbar, of Bethlehem, 123; the men the men of Netophah, 56; the men of Anathoth, 128; d the descendants of Azmaveth, c 42; the men of Kiriath-jearim, Chephirah, 26 and Beeroth, 743; 27 28 29 30 31 the men of Ramah and Geba, 621; the men of Michmash, 122; the men of Bethel and Ai, 223; the descendants of Nebo, 52; the descendants of Magbish, 156; e the descendants of the other Elam, 32 1,254; 33 34 35 the descendants of Harim, 320; the men of Lod, Hadid, and Ono, 725; the men of Jericho, 345; and the descendants of Senaah, 3,630. 36 The priests: The descendants of Jedaiah (through the 37 house of Jeshua), 973; 38 the descendants of Immer, 1,052; the descendants of Pashhur, 1,247; and the descendants of Harim, 1,017. 39 40 41 42 f ), 74. The Levites: the descendants of Jeshua and Kadmiel (through the line of Hodaviah The singers: the descendants of Asaph, 128. The gatekeepers: the descendants of Shallum, the descendants of Ater, the descendants of Talmon, the descendants of Akkub, the descendants of Hatita, and the descendants of Shobai, 43 139 in all. g" + }, + { + "verseNum": 25, + "text": ". f 40 Hodaviah Literally Hodevah ; see" + }, + { + "verseNum": 28, + "text": ". j 50 Nephusim Sia is a variant of Shamlai is a variant of d 25 g 43 Kiriath- ; here and in verses 25, 26, 33, and 34 The Nethinim i 46 ; see" + }, + { + "verseNum": 29, + "text": "); Hebrew ; Hebrew Nephushesim Alternate MT reading (see also Nehe- Perida ; see" + }, + { + "verseNum": 42, + "text": ", and" + }, + { + "verseNum": 43, + "text": ". LXX (see also" + }, + { + "verseNum": 47, + "text": ". l 55 Peruda is a variant of ; see" + }, + { + "verseNum": 52, + "text": ". ; see" + }, + { + "verseNum": 54, + "text": ". 438 |" + }, + { + "verseNum": 57, + "text": ". is a variant of ; see" + }, + { + "verseNum": 59, + "text": ". Or Literally ; that is, approximately 1,129.7 pounds or 512.4 kilograms of gold ; see" + }, + { + "verseNum": 61, + "text": ". is a variant of g 2 Jozadak all Israel f 70 h 4 the Feast of Booths is approximately 3.14 tons or 2.85 metric tons of silver. the Feast of Shelters is a vari- That is, Sukkot, the autumn feast of pilgrimage to Jerusalem; the Feast of Ingathering Or ; also in verse 8; see 1 Chronicles 6:14. or and originally called (see" + }, + { + "verseNum": 69, + "text": "| 453 The gatekeepers: the descendants of Shallum, the descendants of Ater, the descendants of Talmon, the descendants of Akkub, the descendants of Hatita, and the descendants of Shobai, a 46 138 in all. The temple servants: the descendants of Ziha, the descendants of Hasupha, 47 the descendants of Tabbaoth, b the descendants of Keros, the descendants of Sia, 48 the descendants of Padon, the descendants of Lebanah, the descendants of Hagabah, 49 the descendants of Shalmai, the descendants of Hanan, the descendants of Giddel, 50 the descendants of Gahar, the descendants of Reaiah, the descendants of Rezin, 51 the descendants of Nekoda, the descendants of Gazzam, the descendants of Uzza, 52 the descendants of Paseah, the descendants of Besai, the descendants of Meunim, 53 the descendants of Nephushesim, c the descendants of Bakbuk, the descendants of Hakupha, d 54 the descendants of Harhur, the descendants of Bazlith, the descendants of Mehida, 55 the descendants of Harsha, the descendants of Barkos, 57 the descendants of Neziah, and the descendants of Hatipha. The descendants of the servants of Solomon: the descendants of Sotai, e the descendants of Sophereth, 58 the descendants of Perida, the descendants of Jaala, the descendants of Darkon, 59 the descendants of Giddel, the descendants of Shephatiah, the descendants of Hattil, f the descendants of Pochereth-hazzebaim, 60 and the descendants of Amon. The temple servants and descendants of the servants of Solomon numbered 392 i" + }, + { + "verseNum": 70, + "text": "–73) 20 21 22 23 This is the inventory for the tabernacle, the tabernacle of the Testimony, as recorded at Mo- ses’ command by the Levites under the direction Bezalel son of Ithamar son of Aaron the priest. of Uri, the son of Hur, of the tribe of Judah, made everything that the LORD had commanded Mo- With him was Oholiab son of Ahisamach, ses. of the tribe of Dan, an engraver, designer, and embroiderer in blue, purple, and scarlet yarn and 24 fine linen. h All the gold from the wave offering used for the work on the sanctuary totaled 29 talents and 730 25 shekels, according to the sanctuary shekel. The silver from those numbered among the i 26 congregation totaled 100 talents and 1,775 shek- a according to the sanctuary shekel— els, according beka per person, that is, half a shekel, to the sanctuary shekel, from everyone twenty years of age or older who had crossed over to be 27 numbered, a total of 603,550 men. k j The hundred talents of silver were used to cast the bases of the sanctuary and the bases of the veil—100 bases from the 100 talents, one tal- 28 ent per base. l With the 1,775 shekels of silver he made the hooks for the posts, overlaid their tops, and sup- 29 plied bands for them. m The bronze from the wave offering totaled 70 He used it to make talents and 2,400 shekels. the bases for the entrance to the Tent of Meeting, 30 Literally g 18 5 cubits length and width, and 1.4 meters high). proximately 75 feet or 22.9 meters. mately 30 feet or 9.1 meters. j 26 A beka" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "–8) sake you. Do not be afraid or discouraged.” 9 So Moses wrote down this law and gave it to the priests, the sons of Levi, who carried the ark of the covenant of the LORD, and to all the elders of a 1 Israel. When Moses went out and spoke b 6 DSS and LXX; MT the Feast of Ingathering" + }, + { + "verseNum": 13, + "text": "–18 ;" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 18, + "text": "| 455 Day after day, from the first day to the last, Ezra read from the Book of the Law of God. The Israelites kept the feast for seven days, and on the eighth day they held an assembly, according The People Confess Their Sins to the ordinance. 9 2 On the twenty-fourth day of the same month, the Israelites gathered together, fast- ing and wearing sackcloth, with dust on their Those of Israelite descent separated heads. themselves from all the foreigners, and they stood and confessed their sins and the iniquities 3 of their fathers. While they stood in their places, they read from the Book of the Law of the LORD their God for a quarter of the day, and they spent another quar- ter of the day in confession and worship of the 4 LORD their God. 5 And the Levites—Jeshua, Bani, Kadmiel, She- baniah, Bunni, Sherebiah, Bani, and Chenani— stood on the raised platform and cried out in a loud voice to the LORD their God. Then the Levites—Jeshua, Kadmiel, Bani, Hashabneiah, Sherebiah, Hodiah, Shebaniah, and Pethahiah— said, “Stand up and bless the LORD your God from everlasting to everlasting: Blessed be Your glorious name, 6 and may it be exalted above all blessing and praise. You alone are the LORD. You created the heavens, You performed signs and wonders against Pharaoh, all his officials, and all the people of his land, for You knew they had acted with arrogance against our fathers. 11 You made a name for Yourself that endures to this day. You divided the sea before them, and they cro" + }, + { + "verseNum": 19, + "text": "19 You in Your great compassion From heaven You heard them, did not forsake them in the wilderness. By day the pillar of cloud never turned away and in Your great compassion You gave them deliverers from guiding them on their path; 28 who saved them from the hands of their 20 and by the night the pillar of fire illuminated the way they should go. You gave Your good Spirit to instruct them. You did not withhold Your manna from 21 their mouths, and You gave them water for their thirst. For forty years You sustained them in the wilderness, so that they lacked nothing. Their clothes did not wear out and their feet did not swell. 22 You gave them kingdoms and peoples and allotted to them every corner of the a land. So they took the land of Sihon king of 23 Heshbon and of Og king of Bashan. You multiplied their descendants like the stars of heaven and brought them to the land 24 You had told their fathers to enter and possess. So their descendants went in and possessed the land; enemies. But as soon as they had rest, they again did evil in Your sight. So You abandoned them to the hands of their enemies, who had dominion over them. When they cried out to You again, You heard from heaven, and You delivered them many times 29 in Your compassion. You admonished them to turn back to Your law, but they were arrogant and disobeyed Your commandments. They sinned against Your ordinances, by which a man will live if he practices them. They turned a stubborn shoulder; 30 they stiffened their" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 8, + "text": ". oth ; see verse 17. ; see verse 17. is a variant of j 11 Jonathan Shecaniah ; see" + }, + { + "verseNum": 35, + "text": "| 457 For even while they were in their kingdom, with the abundant goodness that You had given them, and in the spacious and fertile land that You had set before them, they would not serve You 36 or turn from their wicked ways. So here we are today as slaves in the land You gave our fathers to enjoy 37 its fruit and goodness— here we are as slaves! Its abundant harvest goes to the kings You have set over us because of our sins. And they rule over our bodies and our livestock as they please. 38 We are in great distress. a In view of all this, we make a binding agree- ment, putting it in writing and sealing it with the Signers of the Covenant names of our leaders, Levites, and priests.” 10 Now these were the ones who sealed the document: Nehemiah the governor, son of Hacaliah, 2 and also Zedekiah, 3 4 5 6 7 8 Seraiah, Azariah, Jeremiah, Pashhur, Amariah, Malchijah, Hattush, Shebaniah, Malluch, Harim, Meremoth, Obadiah, Daniel, Ginnethon, Baruch, Meshullam, Abijah, Mijamin, Maaziah, Bilgai, These were the priests. b and Shemaiah. 9 The Levites: Jeshua son of Azaniah, 10 Binnui of the sons of Henadad, Kadmiel, and their associates: Shebaniah, Hodiah, 11 Kelita, Pelaiah, Hanan, 12 14 13 Mica, Rehob, Hashabiah, Zaccur, Sherebiah, Shebaniah, Hodiah, Bani, and Beninu. And the leaders of the people: 15 Parosh, Pahath-moab, Elam, Zattu, Bani, 16 17 Bunni, Azgad, Bebai, Adonijah, Bigvai, Adin, Ater, Hezekiah, Azzur, Hebrew does not include a 38 d 32 A third of a shekel 19 20 23 22 21 Ho" + }, + { + "verseNum": 36, + "text": "36 7 And we will bring the firstborn of year by year. our sons and our livestock, as it is written in the Law, and will bring the firstborn of our herds and flocks to the house of our God, to the priests who 37 minister in the house of our God. 38 Moreover, we will bring to the priests at the storerooms of the house of our God the firstfruits of our dough, of our grain offerings, of the fruit of all our trees, and of our new wine and oil. A tenth of our produce belongs to the Levites, so that they shall receive tithes in all the towns where A priest of Aaron’s line is to accom- we labor. pany the Levites when they collect the tenth, and the Levites are to bring a tenth of these tithes to the storerooms of the treasury in the house of our God. For the Israelites and the Levites are to bring the contributions of grain, new wine, and oil to the storerooms where the articles of the sanctuary are kept and where the minister- ing priests, the gatekeepers, and the singers stay. Jerusalem’s New Settlers Thus we will not neglect the house of our God.” 39 11 Now the leaders of the people settled in Jerusalem, and the rest of the people cast lots to bring one out of ten to live in the holy city of Jerusalem, while the remaining nine were to dwell in their own towns. And the people blessed all the men who volunteered to live in 3 Jerusalem. 2 a b These are the heads of the provinces who set- tled in Jerusalem. (In the villages of Judah, how- ever, each lived on his own property in their" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 13, + "text": ". 382 | 1 Chronicles 9:22 22 The number of those chosen to be gate- keepers at the thresholds was 212. They were registered by genealogy in their villages. David and Samuel the seer had appointed them to their positions of trust. 23 25 So they and their descendants were assigned 24 to guard the gates of the house of the LORD—the The gatekeepers were house called the Tent. stationed on the four sides: east, west, north, and Their relatives came from their villages south. 26 at fixed times to serve with them for seven-day But the four chief gatekeepers, who periods. were Levites, were entrusted with the rooms and the treasuries of the house of God. They would spend the night stationed around the house of God, because they were responsible for guarding 28 it and opening it every morning. 27 29 Some of them were in charge of the articles used in worship, to count them whenever they Others were put were brought in or taken out. in charge of the furnishings and other articles of the sanctuary, as well as the fine flour, wine, oil, And some of the sons frankincense, and spices. 31 of the priests mixed the spices. 30 32 A Levite named Mattithiah, the firstborn son of Shallum the Korahite, was entrusted with baking Some of their Kohathite relatives the bread. were responsible for preparing the rows of the 33 showbread every Sabbath. Those who were musicians, the heads of Levite families, stayed in the temple chambers and were exempt from other duties because they All these were were o" + }, + { + "verseNum": 22, + "text": ". Or See" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 5, + "text": ". Hebrew is approximately 0.13 ounces or 3.8 grams, probably of silver. 458 |" + }, + { + "verseNum": 24, + "text": "| 459 a Now the overseer of the Levites in Jerusalem was Uzzi son of Bani, the son of Hashabiah, the son of Mattaniah, the son of Mica. He was one of Asaph’s descendants, who were the singers in charge of the service of the house of God. For there was a command from the king concerning the singers, an ordinance regulating their daily activities. Pethahiah son of Meshezabel, a de- b scendant of Zerah son of Judah, was the king’s 25 agent in every matter concerning the people. 24 23 29 26 27 28 As for the villages with their fields, some of the people of Judah lived in Kiriath-arba, Dibon, Jek- abzeel, and their villages; in Jeshua, Moladah, and Beth-pelet; in Hazar-shual; in Beersheba and its villages; in Ziklag; in Meconah and its villages; Za- noah, Adullam, and their villages; in Lachish and its fields; and in Azekah and its villages. So they settled from Beersheba all the way to the Valley 31 of Hinnom. in En-rimmon, Zorah, Jarmuth, 30 33 34 The descendants of Benjamin from Geba lived 32 in Michmash, Aija, and Bethel with its villages; 35 Hazor, Ramah, c Lod, and in Anathoth, Nob, Ananiah, Gittaim, 36 Ono; and in the Valley of the Craftsmen. Hadid, Zeboim, Neballat, And some divisions of the Levites of Judah set- The Priests and Levites Who Returned tled in Benjamin. 12 Now these are the priests and Levites who went up with Zerubbabel son of Shealtiel and with Jeshua: 2 Seraiah, Jeremiah, Ezra, 3 d 4 5 6 7 e Hattush, Meremoth, h Amariah, Malluch, f Shecaniah, Rehum, g Iddo" + }, + { + "verseNum": 25, + "text": "25 42 26 Mattaniah, Bakbukiah, Obadiah, Meshullam, Talmon, and Akkub were gatekeepers who They guarded the storerooms at the gates. served in the days of Joiakim son of Jeshua, the son of Jozadak, and in the days of Nehemiah the The Dedication of the Wall governor and Ezra the priest and scribe. 27 a 28 At the dedication of the wall of Jerusalem, the Levites were sought out from all their homes and brought to Jerusalem to celebrate the joyous dedication with thanksgiving and singing, ac- The companied by cymbals, harps, and lyres. singers were also assembled from the region around Jerusalem, from the villages of the from Beth-gilgal, and from the Netophathites, fields of Geba and Azmaveth, for they had built Af- villages for themselves around Jerusalem. ter the priests and Levites had purified them- selves, they purified the people, the gates, and 31 the wall. 30 29 c b 35 33 36 Judah, Benjamin, Shemaiah, Jeremiah, Then I brought the leaders of Judah up on the wall, and I appointed two great thanksgiving choirs. One was to proceed along the top of the 32 wall to the right, toward the Dung Gate. Hoshaiah and half the leaders of Judah fol- 34 lowed, along with Azariah, Ezra, Meshullam, and some of the priests with trumpets, and also Zech- ariah son of Jonathan, the son of Shemaiah, the son of Mattaniah, the son of Micaiah, the son of and his associates— Zaccur, the son of Asaph, Shemaiah, Azarel, Milalai, Gilalai, Maai, Nethanel, Judah, and Hanani—with the musical instru- ments" + }, + { + "verseNum": 35, + "text": ". is a variant of Moadiah Johanan Meremoth is a variant of o 20 Sallai is a variant of Book of the Annals verse 5. Sallu the Book of the Historical Events ; see verse 7. is a variant of ; see verse 22. p 22 Johanan ; see verse 3; see also Syriac and some Hebrew and LXX manuscripts. ; see verse 3 and also some LXX manuscripts. Sherebiah, Jeshua, Binnui, and Kadmiel is a variant of r 24 is a variant of is a variant of n 17 Moadiah Jonathan ; also in verse 18; see m 15 Merai- ; see verse 2. Maadiah q 23 the ; see Ginnethoi Hebrew g 5 Mijamin Bilgai ; see verse 15," + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 10, + "text": "–14) 30 Thus any tithe from the land, whether from the seed of the land or the fruit of the trees, belongs to the LORD; it is holy to the LORD. If a man wishes to redeem part of his tithe, he must add a 32 fifth to its value. 31 33 Every tenth animal from the herd or flock that passes under the shepherd’s rod will be holy to the LORD. He must not inspect whether it is good or bad, and he shall not make any substitu- tion. But if he does make a substitution, both the animal and its substitute shall become holy; they 34 cannot be redeemed.’ ” These are the commandments that the LORD gave to Moses for the Israelites on Mount Sinai. b 5 10 shekels d 6 3 shekels is approximately 8 ounces or 228 grams of silver. e 7 15 shekels is approximately 2 ounces or 57 grams of silver. is approximately 4 ounces or 114 grams of f 8 is approximately 1.2 present himself cherem barley seed). Hebrew is a dry measure of approximately 6.24 bushels or 220 liters (probably about 291 pounds or 132 kilograms of is equivalent to one shekel (approximately 0.4 ounces or 11.4 grams). Forms of the refer to the giving over of things or persons to the LORD; similarly in verse 29. is approximately 6 ounces or 171 grams of silver. Or i 28 silver; also in verse 7. g 16 A homer ounces or 34.2 grams of silver. h 25 20 gerahs Numbers The First Census of Israel" + }, + { + "verseNum": 15, + "text": "–22) whose confidence is in Him. He is like a tree planted by the waters 19 that sends out its roots toward the stream. It does not fear when the heat comes, and its leaves are always green. It does not worry in a year of drought, nor does it cease to produce fruit. 9 The heart is deceitful above all things 10 and beyond cure. Who can understand it? I, the LORD, search the heart; b I examine the mind 11 to reward a man according to his way, by what his deeds deserve. Like a partridge hatching eggs it did not lay is the man who makes a fortune unjustly. In the middle of his days his riches will desert him, Jeremiah’s Prayer for Deliverance and in the end he will be the fool.” 12 A glorious throne, exalted from the 13 beginning, is the place of our sanctuary. O LORD, the hope of Israel, all who abandon You will be put to shame. All who turn away will be written in the dust, 14 for they have abandoned the LORD, the fountain of living water. Heal me, O LORD, and I will be healed; 15 save me, and I will be saved, for You are my praise. Behold, they keep saying to me, 16 “Where is the word of the LORD? Let it come now!” But I have not run away from being Your This is what the LORD said to me: “Go and stand at the gate of the people, through which the kings of Judah go in and out; and stand at all the 20 other gates of Jerusalem. 22 21 Say to them, ‘Hear the word of the LORD, O kings of Judah, all people of Judah and Jerusa- This is lem who enter through these gates. what the LORD s" + }, + { + "verseNum": 23, + "text": "–31) 9 After these things had been accomplished, the leaders approached me and said, “The people of Israel, including the priests and Le- vites, have not kept themselves separate from the surrounding peoples whose abominations like those of the Canaanites, Hittites, are 2 Jebusites, Ammonites, Moabites, Perizzites, Indeed, the Israelites Egyptians, and Amorites. have taken some of their daughters as wives for themselves and their sons, so that the holy seed has been mixed with the people of the land. And the leaders and officials have taken the lead in 3 this unfaithfulness!” When I heard this report, I tore my tunic and cloak, pulled out some hair from my head and 4 beard, and sat down in horror. Then everyone who trembled at the words of the God of Israel gathered around me because of the unfaithfulness of the exiles, while I sat there Ezra’s Prayer of Confession in horror until the evening offering. 5 6 At the evening offering, I got up from my humil- iation with my tunic and cloak torn, and I fell on my knees, spread out my hands to the LORD my God, and said: “O my God, I am ashamed and embarrassed to lift up my face to You, my God, because our worth b 26 100 talents d 27 1,000 drachmas 3.42 metric tons of silver articles. f 36 governors beyond the River is approximately 24.5 tons or 22.2 metric tons of silver. e 36 is approximately 3.77 tons or 3.42 metric tons of gold. satrap is approximately 3.77 tons or Or was a Persian official. ; that is, approximately 18.5 pounds o" + }, + { + "verseNum": 31, + "text": "| 461 a While all this was happening, I was not in Jeru- salem, because I had returned to Artaxerxes king of Babylon in the thirty-second year of his reign. 7 Some time later I obtained leave from the king to return to Jerusalem. Then I discovered the evil that Eliashib had done on behalf of Tobiah by providing him a room in the courts of the house 8 of God. 9 And I was greatly displeased and threw all of Then Tobiah’s household goods out of the room. I ordered that the rooms be purified, and I had the articles of the house of God restored to them, Tithes Restored along with the grain offerings and frankincense. (Lev. 27:30–34 ; De. 14:22–29 ; 26:1–15) 10 12 11 I also learned that because the portions for the Levites had not been given to them, all the Le- vites and singers responsible for performing the service had gone back to their own fields. So I rebuked the officials and asked, “Why has the house of God been neglected?” Then I gathered the Levites and singers together and stationed them at their posts, and all Judah brought a tenth of the grain, new wine, and oil into the storerooms. I appointed as treasurers over the storerooms Shelemiah the priest, Zadok the scribe, and Pedaiah of the Levites, with Hanan son of Zaccur, the son of Mattaniah, to as- sist them, because they were considered trust- worthy. They were responsible for distributing 14 the supplies to their fellow Levites. 13 Remember me for this, O my God, and do not blot out my deeds of loving devotion for th" + } + ] + } + ] + }, + { + "name": "Esther", + "chapters": [ + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 22, + "text": "| 463 2 Some time later, when the anger of King Xerxes had subsided, he remembered Vashti and what she had done, and what had been de- 2 creed against her. , 3 Then the king’s attendants proposed, “Let a search be made for beautiful young virgins for and let the king appoint commission- the king ers in each province of his kingdom to assemble all the beautiful young women into the harem at the citadel of Susa. Let them be placed under the care of Hegai, the king’s eunuch in charge of the women, and let them be given beauty treat- Then let the young woman who pleases ments. the king become queen in place of Vashti.” 4 This suggestion pleased the king, and he acted Esther Finds Favor accordingly. 5 Now there was at the citadel of Susa a Jewish man from the tribe of Benjamin named Mordecai He son of Jair, the son of Shimei, the son of Kish. had been carried into exile from Jerusalem by Nebuchadnezzar king of Babylon among those 7 taken captive with Jeconiah king of Judah. 6 a And Mordecai had brought up Hadassah (that is, Esther), the daughter of his uncle, because she did not have a father or mother. The young woman was lovely in form and appearance, and when her father and mother had died, Mordecai 8 had taken her as his own daughter. 9 When the king’s command and edict had been proclaimed, many young women gathered at the citadel of Susa under the care of Hegai. Esther was also taken to the palace and placed under the And care of Hegai, the custodian of the women. the young w" + }, + { + "verseNum": 23, + "text": "23 After the report had been investigated and verified, both officials were hanged on the gal- lows. And all this was recorded in the Book of the Haman’s Plot against the Jews Chronicles in the presence of the king. a 3 2 After these events, King Xerxes honored Haman son of Hammedatha, the Agagite, el- evating him to a position above all the princes All the royal servants at the who were with him. king’s gate bowed down and paid homage to Haman, because the king had commanded that this be done for him. But Mordecai would not 3 bow down or pay homage. Then the royal servants at the king’s gate asked Mordecai, “Why do you disobey the command of 4 the king?” Day after day they warned him, but he would not comply. So they reported it to Haman to see whether Mordecai’s behavior would be toler- 5 ated, since he had told them he was a Jew. When Haman saw that Mordecai would not bow 6 down or pay him homage, he was filled with rage. And when he learned the identity of Mordecai’s people, he scorned the notion of laying hands on Mordecai alone. Instead, he sought to destroy all of Mordecai’s people, the Jews, throughout the 7 kingdom of Xerxes. b c In the twelfth year of King Xerxes, in the first month, the month of Nisan, the Pur (that is, the lot) was cast before Haman to determine a day and month. And the lot fell on the twelfth month, 8 the month of Adar. d Then Haman informed King Xerxes, “There is a certain people scattered and dispersed among the peoples of every province of you" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 2, + "text": ". e 21 Bigthan ; see 2 Kings 24:12. Or Bigthana 464 |" + }, + { + "verseNum": 3, + "text": "14 a was found recorded that Mordecai had exposed Bigthana and Teresh, two of the eunuchs who guarded the king’s entrance, when they had con- 3 spired to assassinate King Xerxes. The king inquired, “What honor or dignity has been bestowed on Mordecai for this act?” “Nothing has been done for him,” replied the 4 king’s attendants. “Who is in the court?” the king asked. 5 Now Haman had just entered the outer court of the palace to ask the king to hang Mordecai on the So the king’s gallows he had prepared for him. attendants answered him, “Haman is there, standing in the court.” 6 “Bring him in,” ordered the king. Haman entered, and the king asked him, “What should be done for the man whom the king is de- lighted to honor?” Now Haman thought to himself, “Whom would 7 the king be delighted to honor more than me?” 8 9 And Haman told the king, “For the man whom have them bring the king is delighted to honor, a royal robe that the king himself has worn and a horse on which the king himself has ridden— Let one with a royal crest placed on its head. the robe and the horse be entrusted to one of the king’s most noble princes. Let them array the man the king wants to honor and parade him on the horse through the city square, proclaiming before him, ‘This is what is done for the man 10 whom the king is delighted to honor!’ ” “Hurry,” said the king to Haman, “and do just as you proposed. Take the robe and the horse to Mordecai the Jew, who is sitting at the king’s gate. Do not neglect any" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 6, + "text": "| 467 12 defend themselves, to destroy, kill, and annihi- late all the forces of any people or province hos- tile to them, including women and children, and to plunder their possessions. The single day appointed throughout all the provinces of King Xerxes was the thirteenth day of the twelfth 13 month, the month of Adar. c A copy of the text of the edict was to be issued in every province and published to all the people, so that the Jews would be ready on that day to avenge themselves on their enemies. The cou- riers rode out in haste on their royal horses, pressed on by the command of the king. And the 15 edict was also issued in the citadel of Susa. 14 Mordecai went out from the presence of the king in royal garments of blue and white, with a large gold crown and a purple robe of fine linen. 16 And the city of Susa shouted and rejoiced. 17 For the Jews it was a time of light and gladness, In every province and every of joy and honor. city, wherever the king’s edict and decree reached, there was joy and gladness among the Jews, with feasting and celebrating. And many of the people of the land themselves became Jews, because the fear of the Jews had fallen upon The Jews Destroy Their Enemies them. 9 d On the thirteenth day of the twelfth month, the month of Adar, the king’s command and edict were to be executed. On this day the ene- mies of the Jews had hoped to overpower them, but their plan was overturned and the Jews over- In each of the powered those who hated them. provi" + }, + { + "verseNum": 7, + "text": "7 8 9 including Parshandatha, Dal- hundred men, 10 Par- Poratha, Adalia, Aridatha, phon, Aspatha, mashta, Arisai, Aridai, and Vaizatha. They killed these ten sons of Haman son of Hammeda- tha, the enemy of the Jews, but they did not lay a Haman’s Sons Hanged hand on the plunder. 11 12 On that day the number of those killed in the who citadel of Susa was reported to the king, said to Queen Esther, “In the citadel of Susa the Jews have killed and destroyed five hundred men, including Haman’s ten sons. What have they done in the rest of the royal provinces? Now what is your petition? It will be given to you. And 13 what further do you request? It will be fulfilled.” Esther replied, “If it pleases the king, may the Jews in Susa also have tomorrow to carry out to- day’s edict, and may the bodies of Haman’s ten 14 sons be hanged on the gallows.” 15 So the king commanded that this be done. An edict was issued in Susa, and they hanged the ten On the fourteenth day of the sons of Haman. month of Adar, the Jews in Susa came together again and put to death three hundred men there, 16 but they did not lay a hand on the plunder. 17 The rest of the Jews in the royal provinces also assembled to defend themselves and rid them- selves of their enemies. They killed 75,000 who hated them, but they did not lay a hand on the This was done on the thirteenth day plunder. of the month of Adar, and on the fourteenth day The Feast of Purim Instituted they rested, making it a day of feasting and joy. 1" + } + ] + } + ] + }, + { + "name": "Job", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–5) murdered the righteous, who did not resist you. 7 g 8 Be patient, then, brothers, until the Lord’s com- ing. See how the farmer awaits the precious fruit of the soil—how patient he is for the fall and too, be patient and spring rains. strengthen your hearts, because the Lord’s com- Do not complain about one another, ing is near. brothers, so that you will not be judged. Look, the 10 Judge is standing at the door! You, 9 11 Brothers, as an example of patience in afflic- tion, take the prophets who spoke in the name of See how blessed we consider those the Lord. who have persevered. You have heard of Job’s perseverance and have seen the outcome from the Lord. The Lord is full of compassion and mercy. passions warring among b 1 But the fruit of righteousness is sown in peace by those making peace. e 5 the spirit f 6 Literally Literally See" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Job Loses His Health Job Laments His Birth 2 On another day the sons of God came to a present themselves before the LORD, and also came with them to present himself Satan 2 before Him. “Where have you come from?” said the LORD to Satan. “From roaming through the earth,” he replied, 3 “and walking back and forth in it.” Then the LORD said to Satan, “Have you consid- ered My servant Job? For there is no one on earth like him, a man who is blameless and upright, who fears God and shuns evil. He still retains his integrity, even though you incited Me against 4 him to ruin him without cause.” 5 “Skin for skin!” Satan replied. “A man will give up all he owns in exchange for his life. But stretch out Your hand and strike his flesh and 6 bones, and he will surely curse You to Your face.” “Very well,” said the LORD to Satan. “He is in 7 your hands, but you must spare his life.” So Satan went out from the presence of the LORD and infected Job with terrible boils from 8 the soles of his feet to the crown of his head. And Job took a piece of broken pottery to scrape 9 himself as he sat among the ashes. b Then Job’s wife said to him, “Do you still retain 10 your integrity? Curse God and die!” “You speak as a foolish woman speaks,” he told her. “Should we accept from God only good and not adversity?” Job’s Three Friends In all this, Job did not sin in what he said. 11 Now when Job’s three friends—Eliphaz the Te- manite, Bildad the Shuhite, and Zophar the Naamathite—heard about all this adv" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 12, + "text": "| 471 21 Why is light given to the miserable, and life to the bitter of soul, 15 fear and trembling came over me a and made all my bones shudder. 22 who long for death that does not come, 16 Then a spirit glided past my face, and search for it like hidden treasure, and the hair on my body bristled. 23 who rejoice and greatly exult when they reach the grave? Why is life given to a man whose way is 24 hidden, whom God has hedged in? I sigh when food is put before me, 25 26 and my groans pour out like water. For the thing I feared has overtaken me, and what I dreaded has befallen me. I am not at ease or quiet; Eliphaz: The Innocent Prosper I have no rest, for trouble has come.” 4 2 Then Eliphaz the Temanite replied: “If one ventures a word with you, will you 3 be wearied? Yet who can keep from speaking? Surely you have instructed many, 4 and have strengthened their feeble hands. Your words have steadied those who stumbled; 5 you have braced the knees that were buckling. But now trouble has come upon you, and you 6 are weary. It strikes you, and you are dismayed. Is your reverence not your confidence, 7 and the uprightness of your ways your hope? Consider now, I plead: Who, being innocent, has ever perished? Or where have the upright been 8 destroyed? 7 As I have observed, those who plow iniquity 9 and those who sow trouble reap the same. By the breath of God they perish, 10 and by the blast of His anger they are consumed. The lion may roar, and the fierce lion may 11 growl, yet" + }, + { + "verseNum": 13, + "text": "13 a 5 14 He catches the wise in their craftiness, Does a wild donkey bray over fresh grass, 6 and sweeps away the plans of the cunning. 15 They encounter darkness by day and grope at noon as in the night. He saves the needy from the sword in their 16 mouth and from the clutches of the powerful. So the poor have hope, 17 and injustice shuts its mouth. Blessed indeed is the man whom God corrects; b or an ox low over its fodder? Is tasteless food eaten without salt, or is there flavor in the white of c 7 an egg ? My soul refuses to touch them; they are loathsome food to me. 8 If only my request were granted 9 10 and God would fulfill my hope: that God would be willing to crush me, to unleash His hand and cut me off! 18 so do not despise the discipline of the It still brings me comfort, Almighty. and joy through unrelenting pain, 19 For He wounds, but He also binds; 20 He strikes, but His hands also heal. He will rescue you from six calamities; no harm will touch you in seven. 21 In famine He will redeem you from death, and in battle from the stroke of the sword. You will be hidden from the scourge of the 22 tongue, and will not fear havoc when it comes. You will laugh at destruction and famine, 23 and need not fear the beasts of the earth. For you will have a covenant with the stones of the field, 24 and the wild animals will be at peace with 15 you. You will know that your tent is secure, 25 and find nothing amiss when inspecting your home. You will know that your offspring wi" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 13, + "text": "| 473 27 Do you intend to correct my words, and treat as wind my cry of despair? You would even cast lots for an orphan 28 and barter away your friend. 29 But now, please look at me. Would I lie to your face? Reconsider; do not be unjust. 30 Reconsider, for my righteousness is at stake. Is there iniquity on my tongue? Job Continues: Life Seems Futile Can my mouth not discern malice? 7 2 “Is not man consigned to labor on earth? Are not his days like those of a hired hand? Like a slave he longs for shade; 3 like a hireling he waits for his wages. So I am allotted months of futility, 4 and nights of misery are appointed to me. When I lie down I think: ‘When will I get up?’ But the night drags on, 5 and I toss and turn until dawn. My flesh is clothed with worms and encrusted with dirt; my skin is cracked and festering. 6 7 My days are swifter than a weaver’s shuttle; they come to an end without hope. Remember that my life is but a breath. 8 My eyes will never again see happiness. The eye that beholds me will no longer 9 see me. You will look for me, but I will be no more. As a cloud vanishes and is gone, I loathe my life! I would not live forever. Leave me alone, for my days are but a 17 breath. 18 What is man that You should exalt him, that You should set Your heart upon him, 19 that You attend to him every morning, and test him every moment? Will You never look away from me, 20 or leave me alone to swallow my spittle? If I have sinned, what have I done to You, O watcher of mank" + }, + { + "verseNum": 14, + "text": "14 13 15 His confidence is fragile; his security is in a spider’s web. He leans on his web, but it gives way; 16 he holds fast, but it does not endure. He is a well-watered plant in the sunshine, 17 spreading its shoots over the garden. 18 His roots wrap around the rock heap; he looks for a home among the stones. If he is uprooted from his place, 19 it will disown him, saying, ‘I never saw you.’ 20 Surely this is the joy of his way; yet others will spring from the dust. Behold, God does not reject the blameless, nor will He strengthen the hand of 21 evildoers. 22 He will yet fill your mouth with laughter, and your lips with a shout of joy. Your enemies will be clothed in shame, and the tent of the wicked will be no Job: How Can I Contend with God? more.” 9 2 Then Job answered: “Yes, I know that it is so, but how can a mortal be righteous before a 3 God? If one wished to contend with God, 4 he could not answer Him one time out of a thousand. God is wise in heart and mighty in strength. Who has resisted Him and prospered? He moves mountains without their knowledge 5 6 and overturns them in His anger. He shakes the earth from its place, b so that its foundations tremble. He commands the sun not to shine; 7 8 He seals off the stars. He alone stretches out the heavens 9 and treads on the waves of the sea. He is the Maker of the Bear and Orion, 10 of the Pleiades and the constellations of the south. 11 He does great things beyond searching out, and wonders without number. Were He t" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 11, + "text": "| 475 Then I would speak without fear of Him. Job’s Plea to God But as it is, I am on my own. 10 2 “I loathe my own life; I will express my complaint and speak in the bitterness of my soul. I will say to God: 3 Do not condemn me! Let me know why You prosecute me. Does it please You to oppress me, 4 to reject the work of Your hands and favor the schemes of the wicked? Do You have eyes of flesh? 5 Do You see as man sees? 6 Are Your days like those of a mortal, or Your years like those of a man, 7 that You should seek my iniquity and search out my sin— though You know that I am not guilty, 8 and there is no deliverance from Your hand? Your hands shaped me and altogether formed 9 me. Would You now turn and destroy me? Please remember that You molded me like 10 clay. Would You now return me to dust? 11 Did You not pour me out like milk, and curdle me like cheese? You clothed me with skin and flesh, 12 and knit me together with bones and sinews. a You have granted me life and loving 13 devotion, and Your care has preserved my spirit. 14 Yet You concealed these things in Your heart, and I know that this was in Your mind: If I sinned, You would take note, 15 and would not acquit me of my iniquity. If I am guilty, woe to me! 18 Hardships assault me in wave after wave. Why then did You bring me from the womb? Oh, that I had died, and no eye had seen 19 me! If only I had never come to be, 20 but had been carried from the womb to the grave. Are my days not few? 21 Withdraw from me, that" + }, + { + "verseNum": 12, + "text": "12 But a witless man can no more become wise than the colt of a wild donkey can be born a 13 a man! 14 As for you, if you direct your heart and lift up your hands to Him, if you put away the iniquity in your hand, and allow no injustice to dwell in your 15 tents, then indeed you will lift up your face without 16 blemish; you will stand firm and unafraid. 17 For you will forget your misery, 18 recalling it only as waters gone by. Your life will be brighter than noonday; its darkness will be like the morning. You will be secure, because there is hope, 19 and you will look around and lie down in safety. 20 You will lie down without fear, and many will court your favor. But the eyes of the wicked will fail, and escape will elude them; they will hope for their last breath.” Job Presents His Case 12 2 Then Job answered: 3 “Truly then you are the people with whom wisdom itself will die! But I also have a mind; 4 I am not inferior to you. Who does not know such things as these? I am a laughingstock to my friends, though I called on God, and He answered. The righteous and upright man is a 5 laughingstock. The one at ease scorns misfortune 6 as the fate of those whose feet are slipping. The tents of robbers are safe, b and those who provoke God are secure— those who carry their god in their hands. 7 But ask the animals, and they will instruct you; 8 ask the birds of the air, and they will tell you. Or speak to the earth, and it will teach you; 9 let the fish of the sea inform you. 10 W" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 20, + "text": "| 477 your defenses are defenses of clay. and the number of his months is with You, Surely He would rebuke you 11 if you secretly showed partiality. Would His majesty not terrify you? Would the dread of Him not fall 12 upon you? Your maxims are proverbs of ashes; 13 Be silent, and I will speak. a 14 Then let come to me what may. Why do I put myself at risk b and take my life in my own hands? Though He slay me, I will hope in Him. 15 16 Moreover, this will be my salvation, 17 for no godless man can appear before Him. Listen carefully to my words; 18 let my declaration ring in your ears. 19 See now, I have prepared my case; I know that I will be vindicated. Can anyone indict me? 20 If so, I will be silent and die. Only grant these two things to me, 21 so that I need not hide from You: Withdraw Your hand from me, 22 I will still defend my ways to His face. 8 and do not let Your terror frighten me. 13 Then call me, and I will answer, 23 or let me speak, and You can reply. How many are my iniquities and sins? 24 Reveal to me my transgression and sin. Why do You hide Your face 25 and consider me as Your enemy? Would You frighten a windblown leaf? Would You chase after dry chaff? 26 For You record bitter accusations against me 27 and bequeath to me the iniquities of my youth. You put my feet in the stocks and stand watch over all my paths; You set a limit 28 for the soles of my feet. So man wastes away like something rotten, Job Laments the Finality of Death like a moth-eaten garmen" + }, + { + "verseNum": 21, + "text": "21 20 22 If his sons receive honor, he does not know it; if they are brought low, he is unaware. A wicked man writhes in pain all his days; only a few years are reserved for the 21 He feels only the pain of his own body and mourns only for himself.” Eliphaz: Job Does Not Fear God 15 2 Then Eliphaz the Temanite replied: 3 “Does a wise man answer with empty counsel or fill his belly with the hot east wind? Should he argue with useless words 4 or speeches that serve no purpose? But you even undermine the fear of God and hinder meditation before Him. For your iniquity instructs your mouth, 5 6 and you choose the language of the crafty. Your own mouth, not mine, condemns you; 7 your own lips testify against you. ruthless. Sounds of terror fill his ears; 22 in his prosperity the destroyer attacks him. He despairs of his return from darkness; 23 he is marked for the sword. He wanders about as food for vultures; 24 he knows the day of darkness is at hand. Distress and anguish terrify him, 25 overwhelming him like a king poised to attack. For he has stretched out his hand against God 26 and has vaunted himself against the Almighty, rushing headlong at Him 27 with a thick, studded shield. Were you the first man ever born? 8 Were you brought forth before the hills? Do you listen in on the council of God 9 or limit wisdom to yourself? What do you know that we do not? 10 What do you understand that is not clear to us? Both the gray-haired and the aged are on our 11 side— men much older th" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 4, + "text": "| 479 Is there no end to your long-winded 4 speeches? What provokes you to continue testifying? I could also speak like you if you were in my place; 5 I could heap up words against you and shake my head at you. But I would encourage you with my mouth, and the consolation of my lips would 6 bring relief. Even if I speak, my pain is not relieved, 7 and if I hold back, how will it go away? Surely He has now exhausted me; 8 You have devastated all my family. You have bound me, and it has become a witness; 9 my frailty rises up and testifies against me. His anger has torn me and opposed me; 10 He gnashes His teeth at me. My adversary pierces me with His eyes. They open their mouths against me 11 and strike my cheeks with contempt; they join together against me. God has delivered me to unjust men; 12 He has thrown me to the clutches of the wicked. I was at ease, but He shattered me; 13 He seized me by the neck and crushed me. He has set me up as His target; His archers surround me. 14 15 He pierces my kidneys without mercy and spills my gall on the ground. He breaks me with wound upon wound; He rushes me like a mighty warrior. 16 I have sewn sackcloth over my skin; I have buried my horn in the dust. 17 My face is red with weeping, and deep shadows ring my eyes; 18 yet my hands are free of violence and my prayer is pure. O earth, do not cover my blood; 19 may my cry for help never be laid to rest. 20 Even now my witness is in heaven, and my advocate is on high. 21 My friends are my" + }, + { + "verseNum": 5, + "text": "5 7 Indeed, the lamp of the wicked is Though I cry out, ‘Violence!’ I get no 6 extinguished; the flame of his fire does not glow. The light in his tent grows dark, 7 and the lamp beside him goes out. His vigorous stride is shortened, 8 and his own schemes trip him up. For his own feet lead him into a net, and he wanders into its mesh. 9 10 A trap seizes his heel; a snare grips him. 11 A noose is hidden in the ground, and a trap lies in his path. 12 Terrors frighten him on every side and harass his every step. 13 His strength is depleted, and calamity is ready at his side. It devours patches of his skin; 14 the firstborn of death devours his limbs. 15 He is torn from the shelter of his tent and is marched off to the king of terrors. 16 Fire resides in his tent; burning sulfur rains down on his dwelling. 17 The roots beneath him dry up, and the branches above him wither away. The memory of him perishes from the earth, 18 and he has no name in the land. He is driven from light into darkness 19 and is chased from the inhabited world. He has no offspring or posterity among his 20 people, no survivor where he once lived. 21 Those in the west are appalled at his fate, while those in the east tremble in horror. Surely such is the dwelling of the wicked and the place of one who does not know Job: My Redeemer Lives God.” 19 2 Then Job answered: 3 “How long will you torment me and crush me with your words? Ten times now you have reproached me; 4 you shamelessly mistreat me. 5 Even if I" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 10, + "text": "| 481 If you say, ‘Let us persecute him, a 29 since the root of the matter lies ’ with him, then you should fear the sword yourselves, because wrath brings punishment by the sword, so that you may know there is a Zophar: Destruction Awaits the Wicked judgment.” 20 2 Then Zophar the Naamathite replied: “So my anxious thoughts compel me to answer, 3 because of the turmoil within me. I have heard a rebuke that insults me, and my understanding prompts a reply. 4 Do you not know that from antiquity, since man was placed on the earth, the triumph of the wicked has been brief 5 6 and the joy of the godless momentary? Though his arrogance reaches the heavens, 7 and his head touches the clouds, he will perish forever, like his own dung; 8 those who had seen him will ask, ‘Where is he?’ He will fly away like a dream, never to be found; 9 he will be chased away like a vision in the night. 10 The eye that saw him will see him no more, and his place will no longer behold him. 11 His sons will seek the favor of the poor, for his own hands must return his wealth. 12 The youthful vigor that fills his bones will lie down with him in the dust. 13 Though evil is sweet in his mouth and he conceals it under his tongue, 14 15 though he cannot bear to let it go and keeps it in his mouth, yet in his stomach his food sours into the venom of cobras within him. 16 He swallows wealth but vomits it out; God will force it from his stomach. 17 He will suck the poison of cobras; the fangs of a viper will ki" + }, + { + "verseNum": 11, + "text": "11 29 12 They send forth their little ones like a flock; Have you never asked those who travel their children skip about, singing to the tambourine and lyre 30 the roads? Do you not accept their reports? 13 and making merry at the sound of the Indeed, the evil man is spared from the day of flute. a 14 15 They spend their days in prosperity and go down to Sheol in peace. Yet they say to God: ‘Leave us alone! For we have no desire to know Your ways. Who is the Almighty, that we should serve Him, 16 and what would we gain if we pray to Him?’ Still, their prosperity is not in their own hands, 31 calamity, delivered from the day of wrath. Who denounces his behavior to his face? 32 Who repays him for what he has done? He is carried to the grave, 33 and watch is kept over his tomb. The clods of the valley are sweet to him; 34 everyone follows behind him, and those before him are without number. So how can you comfort me with empty so I stay far from the counsel of the words? 17 wicked. How often is the lamp of the wicked put out? Does disaster come upon them? Does God, in His anger, apportion 18 destruction? For your answers remain full of Eliphaz: Can a Man Be of Use to God? falsehood.” 22 2 Then Eliphaz the Temanite replied: 19 Are they like straw before the wind, like chaff swept away by a storm? It is said that God lays up one’s punishment 3 “Can a man be of use to God? Can even a wise man benefit Him? Does it delight the Almighty that you are for his children. 20 Let God repay" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 8, + "text": "| 483 16 Will you stay on the ancient path that wicked men have trod? They were snatched away before their time, and their foundations were swept away 17 by a flood. 18 They said to God, ‘Depart from us. What can the Almighty do to us?’ But it was He who filled their houses with good things; 19 so I stay far from the counsel of the wicked. The righteous see it and are glad; the innocent mock them: ‘Surely our foes are destroyed, 20 21 and fire has consumed their excess.’ 22 Reconcile now and be at peace with Him; thereby good will come to you. Receive instruction from His mouth, 23 and lay up His words in your heart. If you return to the Almighty, you will be 24 restored. If you remove injustice from your tents and consign your gold to the dust 25 and the gold of Ophir to the stones of the ravines, 26 then the Almighty will be your gold and the finest silver for you. 27 Surely then you will delight in the Almighty and lift up your face to God. 28 You will pray to Him, and He will hear you, and you will fulfill your vows. Your decisions will be carried out, 29 and light will shine on your ways. When men are brought low and you say, ‘Lift 30 them up!’ then He will save the lowly. He will deliver even one who is not innocent, rescuing him through the cleanness of Job Longs for God your hands.” 23 2 Then Job answered: 3 “Even today my complaint is bitter. His hand is heavy despite my groaning. If only I knew where to find Him, so that I could go to His seat. I would plead my case" + }, + { + "verseNum": 9, + "text": "9 The fatherless infant is snatched from the they are brought low and gathered up like all breast; 25 others; 10 the nursing child of the poor is seized for a debt. Without clothing, they wander about naked. 11 They carry the sheaves, but still go hungry. They crush olives within their walls; 12 they tread the winepresses, but go thirsty. From the city, men groan, 13 and the souls of the wounded cry out, yet God charges no one with wrongdoing. 3 they are cut off like heads of grain. If this is not so, then who can prove me a liar Bildad: Man Cannot Be Righteous and reduce my words to nothing?” 25 2 Then Bildad the Shuhite replied: “Dominion and awe belong to God; He establishes harmony in the heights of heaven. Then there are those who rebel against the light, 14 not knowing its ways or staying on its paths. When daylight is gone, the murderer rises 15 to kill the poor and needy; in the night he is like a thief. The eye of the adulterer watches for twilight. Thinking, ‘No eye will see me,’ he covers 16 his face. In the dark they dig through houses; by day they shut themselves in, never to experience the light. 17 For to them, deep darkness is their morning; surely they are friends with the terrors of 18 darkness! They are but foam on the surface of the water; their portion of the land is cursed, so that no one turns toward their 19 vineyards. As drought and heat consume the melting 20 snow, so Sheol steals those who have sinned. The womb forgets them; the worm feeds on them;" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 17, + "text": "| 485 For what is the hope of the godless when he 6 Who then can understand Job Affirms His Integrity the thunder of His power?” 27 2 Job continued his discourse: “As surely as God lives, who has deprived me of justice— 3 the Almighty, who has embittered my soul— as long as my breath is still within me 4 and the breath of God remains in my nostrils, my lips will not speak wickedness, 5 and my tongue will not utter deceit. I will never say that you are right; 6 I will maintain my integrity until I die. I will cling to my righteousness and never let go. As long as I live, my conscience will not The Wicked Man’s Portion accuse me. 7 May my enemy be like the wicked 8 and my opponent like the unjust. 9 is cut off, when God takes away his life? Will God hear his cry 10 when distress comes upon him? 11 Will he delight in the Almighty? Will he call upon God at all times? I will instruct you in the power of God. I will not conceal the ways of the 12 Almighty. 13 Surely all of you have seen it for yourselves. Why then do you keep up this empty talk? This is the wicked man’s portion from God— the heritage the ruthless receive from the 14 Almighty. Though his sons are many, they are destined for the sword; 15 and his offspring will never have enough food. 16 His survivors will be buried by the plague, and their widows will not weep for them. 17 Though he heaps up silver like dust and piles up a wardrobe like clay, what he lays up, the righteous will wear, and his silver will be divided b" + }, + { + "verseNum": 18, + "text": "18 11 19 20 Coral and quartz are unworthy of mention; the price of wisdom is beyond rubies. cannot compare to it, Topaz from Cush a nor can it be valued in pure gold. 21 From where, then, does wisdom come, and where does understanding dwell? It is hidden from the eyes of every living 22 thing b and concealed from the birds of the air. 23 Abaddon and Death say, ‘We have heard a rumor about it.’ 24 But God understands its way, and He knows its place. 25 For He looks to the ends of the earth and sees everything under the heavens. 26 When God fixed the weight of the wind and measured out the waters, 27 when He set a limit for the rain and a path for the thunderbolt, 28 then He looked at wisdom and appraised it; He established it and searched it out. And He said to man, ‘Behold, the fear of the Lord, that is wisdom, and to turn away from evil is Job’s Former Blessings understanding.’ ” 29 2 And Job continued his discourse: 3 “How I long for the months gone by, for the days when God watched over me, when His lamp shone above my head, 4 and by His light I walked through the c darkness, when I was in my prime, 5 when the friendship of God rested on my tent, 6 when the Almighty was still with me and my children were around me, when my steps were bathed in cream 7 and the rock poured out for me streams of oil! When I went out to the city gate 8 and took my seat in the public square, 9 the young men saw me and withdrew, and the old men rose to their feet. The princes refrained from spea" + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 12, + "text": "| 487 ground. They cried out among the shrubs 8 and huddled beneath the nettles. 9 A senseless and nameless brood, they were driven off the land. And now they mock me in song; 10 I have become a byword among them. They abhor me and keep far from me; 11 they do not hesitate to spit in my face. Because God has unstrung my bow and a afflicted me, 12 they have cast off restraint in my presence. The rabble arises at my right; they lay snares for my feet and build siege ramps against me. 13 They tear up my path; b 14 they profit from my destruction, with no one to restrain them. Job’s Prosperity Becomes Calamity They advance as through a wide breach; through the ruins they keep rolling in. 15 Terrors are turned loose against me; they drive away my dignity as by the wind, when he cries for help in his distress. Have I not wept for those in trouble? 26 Has my soul not grieved for the needy? But when I hoped for good, evil came; 27 when I looked for light, darkness fell. 28 I am churning within and cannot rest; days of affliction confront me. I go about blackened, but not by the sun. I stand up in the assembly and cry for e 29 help. f I have become a brother of jackals, 30 a companion of ostriches. My skin grows black and peels, 31 and my bones burn with fever. My harp is tuned to mourning Job’s Final Appeal and my flute to the sound of weeping. 31 2 “I have made a covenant with my eyes. How then could I gaze with desire at a virgin? For what is the allotment of God from above, or the" + }, + { + "verseNum": 13, + "text": "13 33 c If I have rejected the cause of my manservant if I have covered my transgressions like 14 or maidservant 34 Adam when they made a complaint against me, what will I do when God rises to judge? 15 by hiding my guilt in my heart, because I greatly feared the crowds How will I answer when called to account? and the contempt of the clans terrified me, Did not He who made me in the womb also make them? Did not the same One form us in the womb? 16 17 If I have denied the desires of the poor or allowed the widow’s eyes to fail, if I have eaten my morsel alone, 18 not sharing it with the fatherless— though from my youth I reared him as would a father, 19 and from my mother’s womb I guided the widow— if I have seen one perish for lack of clothing, a 20 or a needy man without a cloak, if his heart has not blessed me 21 for warming him with the fleece of my sheep, if I have lifted up my hand against the fatherless 22 because I saw that I had support in the gate, then may my arm fall from my shoulder 23 and be torn from its socket. For calamity from God terrifies me, 24 and His splendor I cannot overpower. If I have put my trust in gold 25 or called pure gold my security, if I have rejoiced in my great wealth b because my hand had gained so much, 26 if I have beheld the sun 27 in its radiance or the moon moving in splendor, so that my heart was secretly enticed 28 and my hand threw a kiss from my mouth, 29 this would also be an iniquity to be judged, for I would have denied God on" + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 27, + "text": "| 489 10 It is not only the old who are wise, or the elderly who understand justice. 11 Therefore I say, ‘Listen to me; I too will declare what I know.’ Indeed, I waited while you spoke; I listened to your reasoning; 12 as you searched for words, I paid you full attention. But no one proved Job wrong; 13 not one of you rebutted his arguments. So do not claim, ‘We have found wisdom; 14 9 Surely you have spoken in my hearing, and I have heard these very words: ‘I am pure, without transgression; 10 I am clean, with no iniquity in me. 11 Yet God finds occasions against me; He counts me as His enemy. 12 He puts my feet in the stocks; He watches over all my paths.’ Behold, you are not right in this matter. 13 I will answer you, for God is greater than man. b let God, not man, refute him.’ 14 Why do you complain to Him But Job has not directed his words against me, that He answers nothing a man asks? For God speaks in one way and in another, 15 15 and I will not answer him with your yet no one notices. arguments. In a dream, Job’s friends are dismayed, with no more to 16 say; words have escaped them. 17 Must I wait, now that they are silent, now that they stand and no longer reply? 18 I too will answer; yes, I will declare what I know. 19 For I am full of words, and my spirit within me compels me. Behold, my belly is like unvented wine; 20 in a vision in the night, when deep sleep falls upon men 16 as they slumber on their beds, 17 He opens their ears and terrifies them with warning" + }, + { + "verseNum": 28, + "text": "28 16 He redeemed my soul from going down to the 17 If you have understanding, hear this; 29 Pit, and I will live to see the light.’ 30 Behold, all these things God does to a man, two or even three times, to bring back his soul from the Pit, 31 that he may be enlightened with the light of life. 32 Pay attention, Job, and listen to me; be silent, and I will speak. 33 But if you have something to say, answer me; speak up, for I would like to vindicate you. But if not, then listen to me; Elihu Confirms God’s Justice be quiet, and I will teach you wisdom.” 34 2 Then Elihu continued: 3 “Hear my words, O wise men; give ear to me, O men of learning. For the ear tests words 4 as the mouth tastes food. 5 6 Let us choose for ourselves what is right; let us learn together what is good. For Job has declared, ‘I am righteous, yet God has deprived me of justice. Would I lie about my case? My wound is incurable, though I am without transgression.’ 7 What man is like Job, 8 who drinks up derision like water? 9 He keeps company with evildoers and walks with wicked men. For he has said, ‘It profits a man nothing 10 that he should delight in God.’ Therefore listen to me, O men of understanding. Far be it from God to do wrong, 11 and from the Almighty to act unjustly. For according to a man’s deeds He repays him; 12 according to a man’s ways He brings consequences. Indeed, it is true that God does not act 13 wickedly, and the Almighty does not pervert justice. Who gave Him charge over the earth?" + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 18, + "text": "| 491 Elihu Describes God’s Power 36 2 And Elihu continued: “Bear with me a little longer, and I will show you 3 that there is more to be said on God’s behalf. a I get my knowledge from afar, 4 and I will ascribe justice to my Maker. For truly my words are free of falsehood; one perfect in knowledge is with you. 5 Indeed, God is mighty, but He despises no 6 one; He is mighty in strength of understanding. He does not keep the wicked alive, 7 but He grants justice to the afflicted. He does not take His eyes off the righteous, but He enthrones them with kings and exalts them forever. 8 9 And if men are bound with chains, caught in cords of affliction, then He tells them their deeds 10 and how arrogantly they have transgressed. He opens their ears to correction 11 and commands that they turn from iniquity. If they obey and serve Him, 12 then they end their days in prosperity and their years in happiness. b But if they do not obey, then they perish by the sword and die without knowledge. The godless in heart harbor resentment; 14 even when He binds them, they do not cry for help. They die in their youth, 15 c among the male shrine prostitutes. God rescues the afflicted by their affliction and opens their ears in oppression. 16 Indeed, He drew you from the jaws of distress to a spacious and broad place, to a table full of richness. 18 the wicked; judgment and justice have seized you. Be careful that no one lures you with riches; do not let a large bribe lead you astray. in their af" + }, + { + "verseNum": 19, + "text": "19 a 6 Can your wealth 20 or all your mighty effort keep you from distress? Do not long for the night, 21 For He says to the snow, ‘Fall on the earth,’ and to the gentle rain, ‘Pour out a mighty 7 downpour.’ when people vanish from their homes. He seals up the hand of every man, 8 Be careful not to turn to iniquity, 22 for this you have preferred to affliction. Behold, God is exalted in His power. 23 Who is a teacher like Him? Who has appointed His way for Him, 24 or told Him, ‘You have done wrong’? Remember to magnify His work, 25 which men have praised in song. All mankind has seen it; 26 men behold it from afar. Indeed, God is great—beyond our 27 knowledge; the number of His years is unsearchable. For He draws up drops of water 28 which distill the rain from the mist, which the clouds pour out 29 and shower abundantly on mankind. Furthermore, who can understand how the 30 clouds spread out, how the thunder roars from His pavilion? See how He scatters His lightning around 31 Him b For by these He judges and covers the depths of the sea. the nations and provides food in abundance. 32 He fills His hands with lightning 33 and commands it to strike its mark. The thunder declares His presence; Elihu Proclaims God’s Majesty even the cattle regard the rising storm. 37 2 “At this my heart also pounds and leaps from its place. Listen closely to the thunder of His voice and the rumbling that comes from His 3 mouth. He unleashes His lightning beneath the whole 4 sky so that all men ma" + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 2, + "text": "" + }, + { + "verseNum": 3, + "text": "and" + }, + { + "verseNum": 41, + "text": "| 493 38 2 Then the LORD answered Job out of the whirlwind and said: a “Who is this who obscures My counsel b 3 by words without knowledge? like a man; Now brace yourself c 4 I will question you, and you shall inform Me. Where were you when I laid the foundations 5 of the earth? Tell Me, if you have understanding. Who fixed its measurements? Surely you know! 21 so you can lead it back to its border? Do you know the paths to its home? 22 Surely you know, for you were already born! And the number of your days is great! 23 24 Have you entered the storehouses of snow or observed the storehouses of hail, which I hold in reserve for times of trouble, for the day of war and battle? 25 In which direction is the lightning dispersed, or the east wind scattered over the earth? 26 Who cuts a channel for the flood or clears a path for the thunderbolt, 27 to bring rain on a barren land, 6 Or who stretched a measuring line across on a desert where no man lives, it? d 28 to satisfy the parched wasteland 7 On what were its foundations set, or who laid its cornerstone, and make it sprout with tender grass? 29 Does the rain have a father? while the morning stars sang together and all the sons of God shouted for joy? 8 Who has begotten the drops of dew? From whose womb does the ice emerge? 30 Who enclosed the sea behind doors 9 when it burst forth from the womb, 10 when I made the clouds its garment and thick darkness its blanket, 11 when I fixed its boundaries and set in place its bars and door" + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "The LORD Speaks of His Creation 20 39 “Do you know when mountain goats 2 give birth? Have you watched the doe bear her fawn? Can you count the months they are pregnant? Do you know the time they give birth? 3 They crouch down and bring forth their 4 young; they deliver their newborn. Their young ones thrive and grow up in the 5 open field; they leave and do not return. 21 Do you make him leap like a locust, striking terror with his proud snorting? He paws in the valley and rejoices in his 22 strength; he charges into battle. 23 He laughs at fear, frightened of nothing; he does not turn back from the sword. b 24 A quiver rattles at his side, along with a flashing spear and lance. Trembling with excitement, he devours the distance; 25 he cannot stand still when the ram’s horn sounds. c Who set the wild donkey free? At the blast of the horn, he snorts with 6 Who released the swift donkey from the fervor. harness? 7 I made the wilderness his home and the salt flats his dwelling. He scorns the tumult of the city 8 and never hears the shouts of a driver. 9 He roams the mountains for pasture, searching for any green thing. Will the wild ox consent to serve you? 10 Will he stay by your manger at night? Can you hold him to the furrow with a 11 harness? Will he plow the valleys behind you? Can you rely on his great strength? 12 Will you leave your hard work to him? Can you trust him to bring in your grain and gather it to your threshing floor? 13 a The wings of the ostrich flap joyfull" + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 7, + "text": "Hebrew ; the value or weight of the kesitah is no longer known. Psalms Psalm 1 The Two Paths" + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 11, + "text": "Or ; BYZ and TR your reasonable service" + }, + { + "verseNum": 26, + "text": "| 495 8 4 Would you really annul My justice? 9 Would you condemn Me to justify yourself? Do you have an arm like God’s? 10 5 Will he make a covenant with you to take him as a slave for life? Can you pet him like a bird 6 or put him on a leash for your maidens? Can you thunder with a voice like His? Will traders barter for him 7 Then adorn yourself with majesty and or divide him among the merchants? 11 splendor, and clothe yourself with honor and glory. Unleash the fury of your wrath; 12 look on every proud man and bring him low. 8 Can you fill his hide with harpoons or his head with fishing spears? If you lay a hand on him, 9 you will remember the battle and never repeat it! 13 14 Look on every proud man and humble him; trample the wicked where they stand. a Bury them together in the dust; imprison them in the grave. Then I will confess to you 15 that your own right hand can save you. Look at Behemoth, which I made along with 12 10 Surely hope of overcoming him is false. 11 Is not the sight of him overwhelming? No one is so fierce as to rouse Leviathan. Then who is able to stand against Me? e Who has given to Me that I should repay him? Everything under heaven is Mine. 16 you. He feeds on grass like an ox. See the strength of his loins 17 and the power in the muscles of his belly. His tail sways like a cedar; 18 the sinews of his thighs are tightly knit. 19 His bones are tubes of bronze; his limbs are rods of iron. He is the foremost of God’s works; b 20 only his Maker can dr" + }, + { + "verseNum": 27, + "text": "27 28 He regards iron as straw and bronze as rotten wood. 29 No arrow can make him flee; slingstones become like chaff to him. a 30 A club is regarded as straw, and he laughs at the sound of the lance. His undersides are jagged potsherds, 31 spreading out the mud like a threshing sledge. 32 He makes the depths seethe like a cauldron; he makes the sea like a jar of ointment. 33 He leaves a glistening wake behind him; one would think the deep had white hair! 34 Nothing on earth is his equal— a creature devoid of fear! He looks down on all the haughty; Job Submits Himself to the LORD he is king over all the proud.” 42 2 Then Job replied to the LORD: 3 “I know that You can do all things and that no plan of Yours can be thwarted. You asked, ‘Who is this b who conceals My counsel without knowledge?’ Surely I spoke of things I did not understand, 4 things too wonderful for me to know. You said, ‘Listen now, and I will speak. c 5 I will question you, and you shall inform Me.’ My ears had heard of You, 6 but now my eyes have seen You. Therefore I despise myself, The LORD Rebukes Job’s Friends and I repent in dust and ashes.” 7 8 kindled against you and your two friends. For you have not spoken about Me accurately, as My So now, take seven bulls and servant Job has. seven rams, go to My servant Job, and sacrifice a burnt offering for yourselves. Then My servant Job will pray for you, for I will accept his prayer and not deal with you according to your folly. For you have not spoken acc" + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 3, + "text": "f 32 Leo b 3 c 3 Arcturus about the flooding of the Nile Or or or lead out the Bear and her cubs? Do you know the laws of the heavens? Can you set their dominion over the 34 earth? 35 Can you command the clouds so that a flood of water covers you? Can you send the lightning bolts on their 36 way? g Do they report to you, ‘Here we are’? 37 Who has put wisdom in the heart or given understanding to the mind? Who has the wisdom to count the clouds? Or who can tilt the water jars of the 38 heavens when the dust hardens into a mass and the clods of earth stick together? 39 41 40 Can you hunt the prey for a lioness or satisfy the hunger of young lions when they crouch in their dens and lie in wait in the thicket? Who provides food for the raven when its young cry out to God who set its core in place as they wander about for lack of food? Who has given the ibis wisdom Or , that is, wisdom e 32 d 6 Or Or g 36 Cited in" + }, + { + "verseNum": 4, + "text": "494 |" + } + ] + } + ] + }, + { + "name": "Psalms", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–6 ;" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–12) healed was over forty years old. 23 On their release, Peter and John returned to their own people and reported everything that 24 the chief priests and elders had said to them. When the believers heard this, they lifted up their voices to God with one accord. “Sovereign Lord,” they said, “You made the heaven and the You earth and the sea and everything in them. spoke by the Holy Spirit through the mouth of c 25 our father David: Your servant, d 11 25 f" + }, + { + "verseNum": 7, + "text": "; literally ;" + }, + { + "verseNum": 9, + "text": "(see also LXX) Therefore repent! Otherwise I will come to you shortly and wage war against them with 17 the sword of My mouth. He who has an ear, let him hear what the Spirit says to the churches. To the one who overcomes, I will give the hidden manna. I will also give him a white stone inscribed with a new name, known only to the one who To the Church in Thyatira receives it." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–8) 13 Then a messenger came to David and reported, “The hearts of the men of Israel are with Absa- 14 lom.” And David said to all the servants with him in Jerusalem, “Arise and let us flee, or we will not escape from Absalom! We must leave quickly, or he will soon overtake us, heap disaster on us, and 15 put the city to the sword.” The king’s servants replied, “Whatever our 16 lord the king decides, we are your servants.” Then the king set out, and his entire household followed him. But he left behind ten concubines 17 to take care of the palace. 18 So the king set out with all the people follow- and all ing him. He stopped at the last house, his servants marched past him—all the Chere- thites and Pelethites, and six hundred Gittites 19 who had followed him from Gath. 20 Then the king said to Ittai the Gittite, “Why should you also go with us? Go back and stay with the new king, since you are both a foreigner In fact, you and an exile from your homeland. arrived only yesterday; should I make you wan- der around with us today while I do not know where I am going? Go back and take your broth- ers with you. May the LORD show you loving 21 devotion and faithfulness. ” d But Ittai answered the king, “As surely as the LORD lives, and as my lord the king lives, wher- ever my lord the king may be, whether it means life or death, there will your servant be!” “Go in peace,” said the king. So Absalom got up and went to Hebron. a 30 b 7 set your field on fire.” LXX includes in Hebron d" + }, + { + "verseNum": 4, + "text": "4 To the LORD I cry aloud, and He answers me from His holy mountain. 5 Psalm 5 Give Ear to My Words Selah For the choirmaster, to be accompanied by flutes. A Psalm of David. I lie down and sleep; 6 I wake again, for the LORD sustains me. I will not fear the myriads 7 set against me on every side. Arise, O LORD! Save me, O my God! Strike all my enemies on the jaw; 8 break the teeth of the wicked. Salvation belongs to the LORD; may Your blessing be on Your people. Selah Psalm 4 Answer Me When I Call! For the choirmaster. With stringed instruments. A Psalm of David. 1 Answer me when I call, O God of my righteousness! You have relieved my distress; 2 show me grace and hear my prayer. How long, O men, will my honor be maligned? How long will you love vanity and seek a Selah after lies ? 3 Know that the LORD has set apart the godly 4 for Himself; b the LORD hears when I call to Him. Be angry, yet do not sin; on your bed, search your heart and be Selah 5 still. Offer the sacrifices of the righteous and trust in the LORD. 6 1 2 Give ear to my words, O LORD; consider my groaning. Attend to the sound of my cry, 3 my King and my God, for to You I pray. In the morning, O LORD, You hear my voice; at daybreak I lay my plea before You and wait in expectation. 4 For You are not a God who delights in 5 wickedness; no evil can dwell with You. The boastful cannot stand in Your presence; 6 You hate all workers of iniquity. You destroy those who tell lies; 7 the LORD abhors the man of bloodshed a" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 4, + "text": "NE and WH 20 21 But this is not the way you came to know Christ. Surely you heard of Him and were 22 taught in Him—in keeping with the truth that is to put off your former way of life, in Jesus— your old self, which is being corrupted by its de- 24 ceitful desires; to be renewed in the spirit of and to put on the new self, created your minds; 25 to be like God in true righteousness and holiness. 23 d 26 Therefore each of you must put off falsehood and speak truthfully to his neighbor, for we are all members of one another. “Be angry, yet do 27 not sin.” Do not let the sun set upon your anger, 28 and do not give the devil a foothold. He who has been stealing must steal no longer, but must work, doing good with his own hands, that he may have something to share with the 29 one in need. Let no unwholesome talk come out of your mouths, but only what is helpful for building up the one in need and bringing grace to those who 30 listen. And do not grieve the Holy Spirit of God, in whom you were sealed for the day of redemp- 31 tion. Get rid of all bitterness, rage and anger, outcry 32 and slander, along with every form of malice. Be kind and tenderhearted to one another, for- giving each other just as in Christ God forgave Imitators of God you. 5 2 Be imitators of God, therefore, as beloved e and walk in love, just as Christ children, and gave Himself up for us as a fragrant loved us 3 sacrificial offering to God. 5 4 But among you, as is proper among the saints, there must not be e" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 9, + "text": "Or 23 God comes through faith in Jesus Christ to all for all who believe. There is no distinction, 24 have sinned and fall short of the glory of God, and are justified freely by His grace through 25 the redemption that is in Christ Jesus. h God presented Him as an atoning sacrifice in His blood through faith, in order to demonstrate His righteousness, because in His forbearance He 26 had passed over the sins committed beforehand. He did this to demonstrate His righteousness at the present time, so as to be just and to justify 27 the one who has faith in Jesus. 28 Where, then, is boasting? It is excluded. On what principle? On that of works? No, but on that For we maintain that a man is justified of faith. 29 by faith apart from works of the law. 30 Is God the God of Jews only? Is He not the God of Gentiles too? Yes, of Gentiles too, since there is only one God, who will justify the circumcised by faith and the uncircumcised through that 31 same faith. Do we, then, nullify the law by this faith? Cer- Abraham Justified by Faith tainly not! Instead, we uphold the law." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "and" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 2, + "text": "| 499 may he trample me to the ground and leave my honor in the dust. Selah 6 Arise, O LORD, in Your anger; rise up against the fury of my enemies. Awake, my God, and ordain judgment. Let the assembled peoples gather around You; 7 8 take Your seat over them on high. The LORD judges the peoples; vindicate me, O LORD, according to my righteousness and 9 integrity. Put an end to the evil of the wicked, but establish the righteous, O righteous God who searches hearts and d 10 minds. My shield is with God, 11 who saves the upright in heart. 12 God is a righteous judge and a God who feels indignation each day. If one does not repent, 13 14 God will sharpen His sword; He has bent and strung His bow. He has prepared His deadly weapons; He ordains His arrows with fire. 15 Behold, the wicked man travails with evil; he conceives trouble and births falsehood. 16 He has dug a hole and hollowed it out; he has fallen into a pit of his own making. His trouble recoils on himself, 17 and his violence falls on his own head. I will thank the LORD for His righteousness and sing praise to the name of the LORD Most High. Psalm 8 How Majestic Is Your Name! For the choirmaster. According to Gittith.e A Psalm of David. O LORD my God, I take refuge in You; save me and deliver me from all my 2 1 pursuers, or they will shred my soul like a lion O LORD, our Lord, and tear me to pieces with no one to how majestic is Your name in all 3 rescue me. 4 O LORD my God, if I have done this, if injustice is on my h" + }, + { + "verseNum": 3, + "text": "3 When I behold Your heavens, the work of Your fingers, the moon and the stars, 4 which You have set in place— 5 6 what is man that You are mindful of him, a or the son of man that You care for him? You made him a little lower than the angels; You crowned him with glory and honor. You made him ruler of the works of Your hands; b 7 You have placed everything under his feet: all sheep and oxen, 8 and even the beasts of the field, the birds of the air and the fish of the sea, all that swim the paths of the seas. 9 O LORD, our Lord, how majestic is Your name in all the earth! Psalm 9 I Will Give Thanks to the LORD 10 Those who know Your name trust in You, 11 for You, O LORD, have not forsaken those who seek You. 12 13 Sing praises to the LORD, who dwells in Zion; proclaim His deeds among the nations. For the Avenger of bloodshed remembers; He does not ignore the cry of the afflicted. Be merciful to me, O LORD; 14 see how my enemies afflict me! Lift me up from the gates of death, that I may declare all Your praises— that within the gates of Daughter Zion I may rejoice in Your salvation. 15 The nations have fallen into a pit of their making; 16 their feet are caught in the net they have hidden. The LORD is known by the justice He brings; the wicked are ensnared by the work of Higgaion Selah d their hands. For the choirmaster. To the tune of “The Death of the Son.” A Psalm of David.c 17 1 I will give thanks to the LORD with all my 2 heart; I will recount all Your wonders. I will be" + }, + { + "verseNum": 4, + "text": "–6 (see also LXX) 1076 |" + }, + { + "verseNum": 6, + "text": "" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 7, + "text": "(see also LXX)" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "–7) their own strength is their god.” 12 Are You not from everlasting, O LORD, my God, my Holy One? We will not die. O LORD, You have appointed them to execute judgment; 13 O Rock, You have established them for correction. Your eyes are too pure to look upon evil, and You cannot tolerate wrongdoing. So why do You tolerate the faithless? Why are You silent 14 while the wicked swallow up 15 those more righteous than themselves? You have made men like the fish of the sea, like creeping things that have no ruler. with a hook; The foe pulls all of them up d he catches them in his dragnet, and gathers them in his fishing net; 16 so he rejoices gladly. Therefore he sacrifices to his dragnet and burns incense to his fishing net, for by these things his portion is sumptuous 17 and his food is rich. Will he, therefore, empty his net and continue to slay nations without The LORD Answers Again mercy? 2 2 I will stand at my guard post and station myself on the ramparts. I will watch to see what He will say to me, and how I should answer when corrected. Then the LORD answered me: they gather prisoners like sand. “Write down this vision They scoff at kings a 5 pulls all of them up Look, you scoffers, wonder and perish! b 5 and make rulers an object of scorn. LXX Cited in" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": ". Literally ; also in verse 24 388 | 1 Chronicles 15:25 Moving the Ark to Jerusalem 8 25 26 So David, the elders of Israel, and the com- manders of thousands went with rejoicing to bring the ark of the covenant of the LORD from And because God the house of Obed-edom. helped the Levites who were carrying the ark of the covenant of the LORD, they sacrificed seven 27 bulls and seven rams. 28 Now David was dressed in a robe of fine linen, as were all the Levites who were carrying the ark, as well as the singers and Chenaniah, the di- rector of music for the singers. David also wore a So all Israel brought up the ark of linen ephod. the covenant of the LORD with shouting, with the sounding of rams’ horns and trumpets, and with Michal’s Contempt for David (2 Samuel 6:16) cymbals and the music of harps and lyres. 29 As the ark of the covenant of the LORD was en- tering the City of David, Saul’s daughter Michal looked down from a window and saw King David dancing and celebrating, and she despised him in A Tent for the Ark (2 Samuel 6:17–19) her heart. 16 2 So they brought the ark of God and placed it inside the tent that David had pitched for it. And they presented burnt offerings When David and peace offerings before God. had finished sacrificing the burnt offerings and peace offerings, he blessed the people in the Then he distributed to every name of the LORD. man and woman of Israel a loaf of bread, a date 4 cake, and a raisin cake. 3 a David appointed some of the Levites to minis" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "| 501 7 He says to himself, “I will not be moved; from age to age I am free of distress.” a 4 If the foundations are destroyed, what can the righteous do?” His mouth is full of cursing, deceit, and The LORD is in His holy temple; 8 violence; the LORD is on His heavenly throne. trouble and malice are under his tongue. His eyes are watching closely; 5 He lies in wait near the villages; they examine the sons of men. 9 in ambush he slays the innocent; his eyes watch in stealth for the helpless. He lies in wait like a lion in a thicket; he lurks to seize the oppressed; b he catches the lowly in his net. They are crushed and beaten down; 10 11 the helpless fall prey to his strength. He says to himself, “God has forgotten; He hides His face and never sees.” 12 13 Arise, O LORD! Lift up Your hand, O God! Do not forget the helpless. Why has the wicked man renounced God? 14 He says to himself, “You will never call me to account.” But You have regarded trouble and grief; You see to repay it by Your hand. The victim entrusts himself to You; 15 You are the helper of the fatherless. Break the arm of the wicked and evildoer; call him to account for his wickedness until none is left to be found. 16 17 The LORD is King forever and ever; the nations perish from His land. You have heard, O LORD, the desire of the humble; 18 You will strengthen their hearts. You will incline Your ear, to vindicate the fatherless and oppressed, that the men of the earth may strike terror no more. Psalm 11 In the" + }, + { + "verseNum": 2, + "text": "2 2 How long must I wrestle in my soul, He who walks with integrity 3 with sorrow in my heart each day? How long will my enemy dominate me? 3 and practices righteousness, who speaks the truth from his heart, Consider me and respond, O LORD my God. 4 Give light to my eyes, lest I sleep in death, lest my enemy say, “I have overcome him,” 5 and my foes rejoice when I fall. 6 But I have trusted in Your loving devotion; my heart will rejoice in Your salvation. I will sing to the LORD, for He has been good to me. Psalm 14 The Fool Says There Is No God (Ps. 53:1–6 ; Isa. 59:1–17 ; Rom. 3:9–20) For the choirmaster. Of David. 1 a The fool says in his heart, “There is no God.” 2 They are corrupt; their acts are vile. There is no one who does good. The LORD looks down from heaven upon the sons of men to see if any understand, 3 if any seek God. All have turned away, b who has no slander on his tongue, 4 who does no harm to his neighbor, who casts no scorn on his friend, who despises the vile 5 but honors those who fear the LORD, who does not revise a costly oath, who lends his money without interest and refuses a bribe against the innocent. He who does these things will never be shaken. Psalm 16 The Presence of the LORD" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "–7 ;" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "–11 ;" + }, + { + "verseNum": 8, + "text": "–11 (see also LXX) h 30 g 28 e 21 ; similarly in verse 14 staying b 5 d 15 ; BYZ and TR ;" + }, + { + "verseNum": 10, + "text": "‘You will not let Your Holy One see decay.’ c 33 to- 36 51" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "–50) 22 2 And David sang this song to the LORD on the day the LORD had delivered him from the hand of all his enemies and from the hand of Saul. Michal e 18 Saph Two Hebrew manuscripts, some LXX manuscripts, and Syriac He said: Sippai ; also in verses 18, 20, and 22 ; see 1 Chronicles 20:4. . is a variant of the brother of the giant c 16 Or See 1 Chronicles 20:5; Hebrew does not include ; see 1 Samuel 16:9, 2 Samuel 13:3, and 1 Chronicles 2:13. 2 Samuel 22:37 | 303 20 “The LORD is my rock, 3 my fortress, and my deliverer. My God is my rock, in whom I take refuge, my shield, and the horn of my salvation. My stronghold, my refuge, and my Savior, 4 You save me from violence. I will call upon the LORD, who is worthy to be 5 praised; so shall I be saved from my enemies. He brought me out into the open; 21 He rescued me because He delighted in me. The LORD has rewarded me according to my righteousness; 22 He has repaid me according to the cleanness of my hands. For I have kept the ways of the LORD 23 and have not wickedly departed from For the waves of death engulfed me; 6 the torrents of chaos overwhelmed me. The cords of Sheol entangled me; 7 the snares of death confronted me. In my distress I called upon the LORD; my God. 24 For all His ordinances are before me; 25 I have not disregarded His statutes. And I have been blameless before Him and kept myself from iniquity. I cried out to my God. So the LORD has repaid me according to my And from His temple He heard my voice, 8 and my" + }, + { + "verseNum": 7, + "text": ") according to the cleanness of my hands e 36 brew manuscripts (see also" + }, + { + "verseNum": 10, + "text": "); most Hebrew manuscripts stoop down to make me great LXX and Vulgate (see also" + }, + { + "verseNum": 13, + "text": "| 503 15 As for me, I will behold Your face in righteousness; when I awake, I will be satisfied in Your presence. Psalm 18 The LORD Is My Rock (2 Samuel 22:1–51) For the choirmaster. Of David the servant of the LORD, who sang this song to the LORD on the day the LORD had delivered him from the hand of all his enemies and from the hand of Saul. He said: 1 2 I love You, O LORD, my strength. The LORD is my rock, my fortress, and my deliverer. My God is my rock, in whom I take refuge, my shield, and the horn of my salvation, 3 my stronghold. I will call upon the LORD, who is worthy to be 4 praised; so shall I be saved from my enemies. The cords of death encompassed me; 5 the torrents of chaos overwhelmed me. The cords of Sheol entangled me; 6 the snares of death confronted me. In my distress I called upon the LORD; I cried to my God for help. From His temple He heard my voice, 7 and my cry for His help reached His ears. Then the earth shook and quaked, and the foundations of the mountains trembled; 8 they were shaken because He burned with anger. Smoke rose from His nostrils, 9 and consuming fire came from His mouth; glowing coals blazed forth. 10 He parted the heavens and came down with dark clouds beneath His feet. 11 He mounted a cherub and flew; He soared on the wings of the wind. 12 He made darkness His hiding place, and storm clouds a canopy around Him. From the brightness of His presence c 13 His clouds advanced— hailstones and coals of fire. ones and satisfy their sons, T" + }, + { + "verseNum": 14, + "text": "14 32 15 He shot His arrows and scattered the foes; He hurled lightning and routed them. The channels of the sea appeared, and the foundations of the world were 33 It is God who arms me with strength and makes my way clear. 34 He makes my feet like those of a deer and stations me upon the heights. exposed, at Your rebuke, O LORD, 16 35 He trains my hands for battle; my arms can bend a bow of bronze. at the blast of the breath of Your nostrils. You have given me Your shield of salvation; a He reached down from on high and took hold 17 of me; He drew me out of deep waters. 18 He rescued me from my powerful enemy, from foes too mighty for me. 19 They confronted me in my day of calamity, but the LORD was my support. He brought me out into the open; 20 He rescued me because He delighted in me. The LORD has rewarded me according to my righteousness; 21 He has repaid me according to the cleanness of my hands. For I have kept the ways of the LORD 22 and have not wickedly departed from my God. 23 For all His ordinances are before me; 24 I have not disregarded His statutes. And I have been blameless before Him and kept myself from iniquity. So the LORD has repaid me according to my righteousness, according to the cleanness of my hands in His sight. 25 To the faithful You show Yourself faithful, to the blameless You show Yourself 26 blameless; to the pure You show Yourself pure, 27 but to the crooked You show Yourself shrewd. 28 For You save an afflicted people, but You humble those wit" + }, + { + "verseNum": 24, + "text": ") and Your gentleness exalts me. You broaden the path beneath me so that my ankles do not give way. d 25 He was seen c 13 b 11 mountains bolts of lightning and Your help exalts me Or Or or Many He- and You Hebrew; 304 | 2 Samuel 22:38 38 2 I pursued my enemies and destroyed them; The Spirit of the LORD spoke through me; 3 39 I did not turn back until they were consumed. I devoured and crushed them so they could 40 not rise; they have fallen under my feet. 41 You have armed me with strength for battle; You have subdued my foes beneath me. You have made my enemies retreat before 42 me; I destroyed those who hated me. They looked, but there was no one to save 43 them— to the LORD, but He did not answer. I ground them as the dust of the earth; 44 I crushed and trampled them like mud in the streets. You have delivered me from the strife of my people; You have preserved me as the head of nations; 45 a people I had not known shall serve me. 46 Foreigners cower before me; when they hear me, they obey me. a Foreigners lose heart and come trembling strongholds. 47 from their The LORD lives, and blessed be my Rock! 48 And may God, the Rock of my salvation, be exalted— the God who avenges me 49 and brings down nations beneath me, who frees me from my enemies. 50 You exalt me above my foes; You rescue me from violent men. b Therefore I will praise You, O LORD, among 51 the nations; I will sing praises to Your name. Great salvation He brings to His king. David’s Last Song He shows loving d" + }, + { + "verseNum": 45, + "text": "); MT chief among the captains or He was called Adino the Eznite because of g 9 Dodo Or the favorite of the Strong One of Israel f 8 e 8 ; see 1 Chronicles 11:11. Or 11:11); Hebrew Some LXX manuscripts (see also 1 Chronicles is a variant of ; see 1 Chronicles 27:4. 13 2 Samuel 24:2 | 305 14 At harvest time, three of the thirty chief men went down to David at the cave of Adullam, while a company of Philistines was encamped in the Valley of Rephaim. At that time David was in the stronghold, and the garrison of the Philis- tines was at Bethlehem. David longed for wa- ter and said, “Oh, that someone would get me a drink of water from the well near the gate of 16 Bethlehem!” 15 17 So the three mighty men broke through the Philistine camp, drew water from the well near the gate of Bethlehem, and brought it back to Da- vid. But he refused to drink it; instead, he poured it out to the LORD, saying, “Far be it from me, O LORD, to do this! Is this not the blood of the men who risked their lives?” So he refused to drink it. 18 Such were the exploits of the three mighty men. a Now Abishai, the brother of Joab and son of Ze- ruiah, was chief of the Three, and he wielded his 19 spear against three hundred men, killed them, Was he and won a name along with the Three. not more honored than the Three? And he be- came their commander, even though he was not 20 included among the Three. b c d 21 And Benaiah son of Jehoiada was a man of valor from Kabzeel, a man of many exploits. He of Moab, and" + }, + { + "verseNum": 49, + "text": "De. 32:43" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 4, + "text": "(see also LXX) But if it is by works, then it is no longer grace; otherwise work is no longer work. 1 Kings 19:10, 14 did they stumble so as to lose their share?" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "–13) and beatings cleanse the inmost parts. 21 The king’s heart is a waterway in the 2 hand of the LORD; He directs it where He pleases. 3 All a man’s ways seem right to him, but the LORD weighs the heart. To do righteousness and justice 4 is more desirable to the LORD than sacrifice. Haughty eyes and a proud heart— the guides of the wicked—are sin. 6 The plans of the diligent bring plenty, as surely as haste leads to poverty. Making a fortune by a lying tongue is a vanishing mist, a deadly pursuit. The violence of the wicked will sweep them 8 away because they refuse to do what is just. The way of a guilty man is crooked, but the conduct of the innocent is upright. Better to live on a corner of the roof He who loves pleasure will become poor; 18 the one who loves wine and oil will never be rich. The wicked become a ransom for the 19 righteous, and the faithless for the upright. Better to live in the desert 20 than with a contentious and ill-tempered wife. Precious treasures and oil are in the dwelling 21 of the wise, but a foolish man consumes them. He who pursues righteousness and loving 22 devotion finds life, righteousness, and honor. A wise man scales the city of the mighty 23 and pulls down the stronghold in which they trust. 24 He who guards his mouth and tongue keeps his soul from distress. Mocker is the name of the proud and 25 arrogant man— of him who acts with excessive pride. 26 The craving of the slacker kills him because his hands refuse to work. All day long he" + }, + { + "verseNum": 6, + "text": "| 505 Psalm 19 The Heavens Declare the Glory of God Psalm 20 The Day of Trouble For the choirmaster. A Psalm of David. For the choirmaster. A Psalm of David. 1 1 The heavens declare the glory of God; 2 May the LORD answer you in the day of the skies proclaim the work of His hands. trouble; Day after day they pour forth speech; 3 night after night they reveal knowledge. a Without speech or language, b 4 without a sound to be heard, c their voice has gone out into all the earth, their words to the ends of the world. In the heavens He has pitched 5 a tent for the sun. Like a bridegroom emerging from his chamber, 6 like a champion rejoicing to run his course, it rises at one end of the heavens 7 and runs its circuit to the other; nothing is deprived of its warmth. The Law of the LORD is perfect, reviving the soul; the testimony of the LORD is trustworthy, 8 making wise the simple. The precepts of the LORD are right, bringing joy to the heart; the commandments of the LORD are radiant, 9 giving light to the eyes. The fear of the LORD is pure, enduring forever; 10 the judgments of the LORD are true, being altogether righteous. They are more precious than gold, than much pure gold; they are sweeter than honey, than honey from the comb. 11 By them indeed Your servant is warned; in keeping them is great reward. 12 Who can discern his own errors? 13 Cleanse me from my hidden faults. Keep Your servant also from willful sins; may they not rule over me. Then I will be blameless 14 and clea" + }, + { + "verseNum": 7, + "text": "7 8 For the king trusts in the LORD; “He trusts in the LORD, through the loving devotion of the Most let the LORD deliver him; b 8 High, he will not be shaken. Your hand will apprehend all Your enemies; Your right hand will seize those who hate 9 You. You will place them in a fiery furnace at the time of Your appearing. 10 In His wrath the LORD will engulf them, and the fire will consume them. You will wipe their descendants from the 11 earth, and their offspring from the sons of men. 12 Though they intend You harm, the schemes they devise will not prevail. For You will put them to flight 13 when Your bow is trained upon them. Be exalted, O LORD, in Your strength; we will sing and praise Your power. Psalm 22 The Psalm of the Cross" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "–31 ; they led Him away to crucify Him." + }, + { + "verseNum": 7, + "text": ". 948 |" + }, + { + "verseNum": 8, + "text": "and pierced His side, and water and blood flowed out i 48 That is, from noon until three in the afternoon NE and WH" + }, + { + "verseNum": 15, + "text": ". Jesus’ Side Is Pierced" + }, + { + "verseNum": 18, + "text": "; TR includes j 49 filled it with wine vinegar h 48 g 46 in verse 44" + }, + { + "verseNum": 22, + "text": "(see also LXX) 4 i 11 or to the end Literally and TR include ." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "–6 ;" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "to play f 28 13 16 Therefore, my beloved, flee from idolatry. I speak to reasonable people; judge for yourselves Is not the cup of blessing that we what I say. bless a participation in the blood of Christ? And is not the bread that we break a participation in Because there is one loaf, the body of Christ? we who are many are one body; for we all par- 18 take of the one loaf. 17 19 21 Consider the people of Israel: Are not those who eat the sacrifices fellow partakers in the al- tar? Am I suggesting, then, that food sacrificed 20 to an idol is anything, or that an idol is anything? No, but the sacrifices of pagans are offered to demons, not to God. And I do not want you to be You cannot drink participants with demons. the cup of the Lord and the cup of demons too; 22 you cannot partake in the table of the Lord and Are we trying to pro- the table of demons too. voke the Lord to jealousy? Are we stronger than He? All to God’s Glory" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 3, + "text": "| 507 6 Surely goodness and mercy will follow me My praise for You resounds in the great assembly; 26 I will fulfill my vows before those who fear You. and I will dwell in the house of the LORD forever. Psalm 24 The Earth Is the LORD’s A Psalm of David. The poor will eat and be satisfied; 1 27 those who seek the LORD will praise Him. May your hearts live forever! All the ends of the earth will remember and turn to the LORD. 28 29 All the families of the nations will bow down before Him. For dominion belongs to the LORD and He rules over the nations. All the rich of the earth will feast and worship; all who go down to the dust will kneel 30 before Him— even those unable to preserve their lives. Posterity will serve Him; 31 they will declare the Lord to a new generation. They will come and proclaim His righteousness to a people yet unborn— Psalm 23 all that He has done. The LORD Is My Shepherd" + }, + { + "verseNum": 4, + "text": "4 5 Show me Your ways, O LORD; teach me Your paths. Guide me in Your truth and teach me, 1 Psalm 26 Vindicate Me, O LORD Of David. 6 for You are the God of my salvation; all day long I wait for You. Remember, O LORD, Your compassion and 7 loving devotion, for they are from age to age. Remember not the sins of my youth, nor my rebellious acts; remember me according to Your loving devotion, 8 because of Your goodness, O LORD. Good and upright is the LORD; 9 therefore He shows sinners the way. He guides the humble in what is right 10 and teaches them His way. All the LORD’s ways are loving and faithful 11 to those who keep His covenant and His decrees. For the sake of Your name, O LORD, forgive my iniquity, for it is great. 12 Who is the man who fears the LORD? 13 He will instruct him in the path chosen for him. His soul will dwell in prosperity, 14 and his descendants will inherit the land. 15 The LORD confides in those who fear Him, and reveals His covenant to them. My eyes are always on the LORD, 16 for He will free my feet from the mesh. Turn to me and be gracious, 17 for I am lonely and afflicted. The troubles of my heart increase; 18 free me from my distress. Consider my affliction and trouble, 19 and take away all my sins. Consider my enemies, for they are many, and they hate me with vicious hatred. 20 Guard my soul and deliver me; let me not be put to shame, for I take refuge in You. a 21 May integrity and uprightness preserve me, 22 because I wait for You. Vindicate me," + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 10, + "text": "| 509 who speak peace to their neighbors 4 while malice is in their hearts. Repay them according to their deeds and for their works of evil. Repay them for what their hands have done; 5 bring back on them what they deserve. Since they show no regard for the works of the LORD or what His hands have done, He will tear them down 6 and never rebuild them. Blessed be the LORD, 7 for He has heard my cry for mercy. The LORD is my strength and my shield; my heart trusts in Him, and I am helped. Therefore my heart rejoices, 8 and I give thanks to Him with my song. The LORD is the strength of His people, 9 a stronghold of salvation for His anointed. Save Your people and bless Your inheritance; Psalm 29 shepherd them and carry them forever. Ascribe Glory to the LORD A Psalm of David. 1 b Ascribe to the LORD, O heavenly beings, 2 ascribe to the LORD glory and strength. Ascribe to the LORD the glory due His name; worship the LORD in the splendor of His c 3 holiness. The voice of the LORD is over the waters; 4 the God of glory thunders; the LORD is heard over many waters. The voice of the LORD is powerful; 5 the voice of the LORD is majestic. The voice of the LORD breaks the cedars; 6 the LORD shatters the cedars of Lebanon. d 7 He makes Lebanon skip like a calf, and Sirion like a young wild ox. To You, O LORD, I call; be not deaf to me, O my Rock. For if You remain silent, 2 The voice of the LORD 8 strikes with flames of fire. The voice of the LORD shakes the wilderness; I will be like th" + }, + { + "verseNum": 11, + "text": "11 The LORD gives His people strength; the LORD blesses His people with peace. Psalm 30 You Turned My Mourning into Dancing A Psalm. A song for the dedication of the temple. Of David. 1 I will exalt You, O LORD, for You have lifted me up and have not allowed my foes 2 to rejoice over me. and You healed me. O LORD, You pulled me up from Sheol; 4 You spared me from descending into the Pit. a Sing to the LORD, O you His saints, 5 and praise His holy name. For His anger is fleeting, but His favor lasts a lifetime. 6 Weeping may stay the night, but joy comes in the morning. In prosperity I said, 7 “I will never be shaken.” O LORD, You favored me; You made my mountain stand strong. When You hid Your face, 8 I was dismayed. To You, O LORD, I called, 9 b and I begged my Lord for mercy: “What gain is there in my bloodshed, c in my descent to the Pit? 10 Will the dust praise You? Will it proclaim Your faithfulness? Hear me, O LORD, and have mercy; 11 O LORD, be my helper.” You turned my mourning into dancing; 12 You peeled off my sackcloth and clothed me with joy, that my heart may sing Your praises and not be silent. Psalm 31 O LORD my God, I will give thanks forever. Into Your Hands I Commit My Spirit" + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "–24 ; you will be with Me in Paradise.” Matt. 27:45–56 ;" + }, + { + "verseNum": 5, + "text": "Greek 17 He asked them, “What are you discussing so in- tently as you walk along?” 18 They stood still, with sadness on their faces. One of them, named Cleopas, asked Him, “Are You the only visitor to Jerusalem who does not know the things that have happened there in 19 recent days?” “What things?” He asked. “The events involving Jesus of Nazareth,” they answered. “This man was a prophet, powerful in 20 speech and action before God and all the people. Our chief priests and rulers delivered Him up 21 to the sentence of death, and they crucified Him. But we were hoping He was the One who would redeem Israel. And besides all this, it is the 22 third day since these things took place. Furthermore, some of our women astounded 23 us. They were at the tomb early this morning, but they did not find His body. They came and told us they had seen a vision of angels, who said Then some of our com- that Jesus was alive. panions went to the tomb and found it just as the 25 women had described. But Him they did not see.” 24 26 27 Then Jesus said to them, “O foolish ones, and slow of heart to believe all that the prophets Was it not necessary for the have spoken! Christ to suffer these things and then to enter His And beginning with Moses and all the glory?” Prophets, He explained to them what was writ- 28 ten in all the Scriptures about Himself. As they approached the village where they 29 were headed, He seemed to be going farther. But they pleaded with Him, “Stay with us, for it is nearly" + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "–11 ; Heb. 11:8–19) 4 2 3 What then shall we say that Abraham, our forefather according to the flesh, has dis- If Abraham was indeed justified by covered? works, he had something to boast about, but not For what does the Scripture say? before God. “Abraham believed God, and it was credited to 4 him as righteousness.” i 5 6 Now the wages of the worker are not credited However, to the as a gift, but as an obligation. one who does not work, but believes in Him who justifies the ungodly, his faith is credited as right- And David speaks likewise of the eousness. blessedness of the man to whom God credits 7 righteousness apart from works: “Blessed are they whose lawless acts are 8 forgiven, whose sins are covered. Blessed is the man j whose sin the Lord will never count against him.” 9 Is this blessing only on the circumcised, or also on the uncircumcised? We have been saying that g 18" + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "–22) 1 d Hallelujah! e Praise the LORD from the heavens; 2 praise Him in the highest places. Praise Him, all His angels; 3 praise Him, all His heavenly hosts. Praise Him, O sun and moon; 4 praise Him, all you shining stars. Praise Him, O highest heavens, 5 and you waters above the skies. Let them praise the name of the LORD, for He gave the command and they 6 were created. He established them forever and ever; He issued a decree that will never like morsels like crumbs c 20 pass away. b 17 d 1 Hallelu YAH ; also in verse 20 Or Or , meaning Praise the LORD or MT; DSS and LXX ; also in verse 14 576 |" + }, + { + "verseNum": 7, + "text": "| 511 lips that speak with arrogance against the LORD,” and You forgave the guilt of my sin. 6 Selah 19 righteous, full of pride and contempt. How great is Your goodness which You have laid up for those who fear You, which You have bestowed before the sons of 20 men on those who take refuge in You! You hide them in the secret place of Your presence from the schemes of men. You conceal them in Your shelter from accusing tongues. 21 Blessed be the LORD, 22 for He has shown me His loving devotion in a city under siege. In my alarm I said, “I am cut off from Your sight!” But You heard my plea for mercy when I called to You for help. 23 Love the LORD, all His saints. 24 The LORD preserves the faithful, but fully repays the arrogant. Be strong and courageous, Psalm 32 all you who hope in the LORD. The Joy of Forgiveness" + }, + { + "verseNum": 8, + "text": "8 3 Let all the earth fear the LORD; 9 let all the people of the world revere Him. 4 Magnify the LORD with me; let us exalt His name together. 10 For He spoke, and it came to be; He commanded, and it stood firm. 11 The LORD frustrates the plans of the nations; He thwarts the devices of the peoples. The counsel of the LORD stands forever, 12 the purposes of His heart to all generations. 5 I sought the LORD, and He answered me; He delivered me from all my fears. Those who look to Him are radiant with joy; 6 their faces shall never be ashamed. This poor man called out, and the LORD 7 heard him; He saved him from all his troubles. Blessed is the nation whose God is the LORD, The angel of the LORD encamps around those 13 the people He has chosen as His inheritance! 8 who fear Him, and he delivers them. 14 The LORD looks down from heaven; He sees all the sons of men. 15 From His dwelling place He gazes on all who inhabit the earth. He shapes the hearts of each; 16 He considers all their works. No king is saved by his vast army; 17 no warrior is delivered by his great strength. A horse is a vain hope for salvation; even its great strength cannot save. 18 20 Surely the eyes of the LORD are on those who fear Him, 19 on those whose hope is in His loving devotion to deliver them from death and keep them alive in famine. Our soul waits for the LORD; 21 He is our help and our shield. For our hearts rejoice in Him, 22 since we trust in His holy name. May Your loving devotion rest on us, O" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "–22 ;" + }, + { + "verseNum": 12, + "text": "–16 (see also LXX) died d 18 i 8 to those who are dead NE and WH us see" + }, + { + "verseNum": 20, + "text": "; see also" + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "" + }, + { + "verseNum": 2, + "text": "| 513 17 How long, O Lord, will You look on? 18 Rescue my soul from their ravages, my precious life from these lions. Then I will give You thanks in the great 19 assembly; I will praise You among many people. Let not my enemies gloat over me without d nor those who hate me without reason cause, 20 wink in malice. For they do not speak peace, 21 but they devise deceitful schemes against those who live quietly in the land. 22 They gape at me and say, “Aha, aha! Our eyes have seen!” O LORD, You have seen it; be not silent. 23 O Lord, be not far from me. Awake and rise to my defense, 24 to my cause, my God and my Lord! Vindicate me by Your righteousness, 25 O LORD my God, and do not let them gloat over me. Let them not say in their hearts, “Aha, just what we wanted!” Let them not say, 26 “We have swallowed him up!” May those who gloat in my distress be ashamed and confounded; 27 may those who exalt themselves over me be clothed in shame and reproach. May those who favor my vindication shout for joy and gladness; may they always say, “Exalted be the LORD 28 who delights in His servant’s well-being.” Then my tongue will proclaim Your righteousness and Your praises all day long. Psalm 36 The Transgression of the Wicked For the choirmaster. A Psalm of David, the servant of the LORD. 1 like one mourning for his mother. An oracle is in my heart But when I stumbled, they assembled in glee; regarding the transgression of the wicked they gathered together against me. Assailants I did not" + }, + { + "verseNum": 3, + "text": "3 6 The words of his mouth are wicked and He will bring forth your righteousness like deceitful; 4 he has ceased to be wise and well-doing. Even on his bed he plots wickedness; 5 he sets himself on a path that is not good; he fails to reject evil. Your loving devotion, O LORD, reaches to the 6 heavens, Your faithfulness to the clouds. Your righteousness is like the highest mountains; 7 Your judgments are like the deepest sea. O LORD, You preserve man and beast. How precious is Your loving devotion, O God, 8 that the children of men take refuge in the shadow of Your wings! They feast on the abundance of Your house, and You give them drink from Your river 9 of delights. For with You is the fountain of life; 10 in Your light we see light. Extend Your loving devotion to those who know You, 11 and Your righteousness to the upright in heart. Let not the foot of the proud come against 12 me, nor the hand of the wicked drive me away. There the evildoers lie fallen, Psalm 37 thrown down and unable to rise. Delight Yourself in the LORD (1 Kings 2:1–9) Of David.a 1 Do not fret over those who do evil; 2 do not envy those who do wrong. For they wither quickly like grass and wilt like tender plants. 3 Trust in the LORD and do good; 4 dwell in the land and cultivate faithfulness. Delight yourself in the LORD, 7 the dawn, your justice like the noonday sun. Be still before the LORD and wait patiently for Him; do not fret when men prosper in their ways, 8 when they carry out wicked schemes. 9" + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "–40) home.” 2 2 As the time drew near for David to die, he “I am about to go charged his son Solomon, 3 the way of all the earth. So be strong and prove And keep the charge of the yourself a man. LORD your God to walk in His ways and to keep His statutes, commandments, ordinances, and decrees, as written in the Law of Moses, so that 4 you may prosper in all you do and wherever you and so that the LORD may fulfill His prom- turn, ise to me: ‘If your descendants take heed to walk faithfully before Me with all their heart and soul, you will never fail to have a man on the throne of 5 Israel.’ a Moreover, you know what Joab son of Zeruiah did to me—what he did to Abner son of Ner and Amasa son of Jether, the two commanders of the armies of Israel. He killed them in peacetime to avenge the blood of war. He stained with the blood of war the belt around his waist and the sandals on his feet. So act according to your wisdom, and do not let his gray head go down to 7 Sheol in peace. 6 b c But show loving devotion to the sons of Barzil- lai the Gileadite, and let them be among those who eat at your table, because they stood by me 8 when I fled from your brother Absalom. Keep an eye on Shimei the son of Gera, the Ben- jamite from Bahurim who is with you. He called down bitter curses against me on the day I went to Mahanaim, but when he came down to meet me at the Jordan, I swore to him by the LORD: ‘I will never put you to the sword.’ Now therefore, do not hold him guiltless, for you ar" + }, + { + "verseNum": 11, + "text": ". . 12 Blessed are you when people insult you, per- secute you, and falsely say all kinds of evil against you because of Me. Rejoice and be glad, be- cause great is your reward in heaven, for in the same way they persecuted the prophets before Salt and Light" + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "–22) For the choirmaster. With stringed instruments, according to Sheminith.a A Psalm of David. 1 O LORD, do not rebuke me in Your anger 2 or discipline me in Your wrath. Be merciful to me, O LORD, for I am frail; heal me, O LORD, for my bones are in 3 agony. 4 My soul is deeply distressed. How long, O LORD, how long? Turn, O LORD, and deliver my soul; 5 save me because of Your loving devotion. 6 For there is no mention of You in death; who can praise You from Sheol? I am weary from groaning; 7 all night I flood my bed with weeping and drench my couch with tears. My eyes fail from grief; they grow dim because of all my foes. Depart from me, all you workers of iniquity, for the LORD has heard my weeping. The LORD has heard my cry for mercy; the LORD accepts my prayer. All my enemies will be ashamed and dismayed; Psalm 7 they will turn back in sudden disgrace. I Take Refuge in You A Shiggaion b of David, which he sang to the LORD concerning the words of Cush, a Benjamite. 1 8 9 10" + }, + { + "verseNum": 17, + "text": "| 515 Though he falls, he will not be overwhelmed, 25 for the LORD is holding his hand. I once was young and now am old, yet never have I seen the righteous 26 abandoned or their children begging for bread. They are ever generous and quick to lend, 27 and their children are a blessing. 28 Turn away from evil and do good, so that you will abide forever. For the LORD loves justice and will not forsake His saints. They are preserved forever, 29 but the offspring of the wicked will be cut off. The righteous will inherit the land 30 and dwell in it forever. The mouth of the righteous man utters 31 wisdom, and his tongue speaks justice. The law of his God is in his heart; 32 his steps do not falter. Though the wicked lie in wait for the 33 righteous, and seek to slay them, the LORD will not leave them in their power 34 or let them be condemned under judgment. Wait for the LORD and keep His way, and He will raise you up to inherit the land. When the wicked are cut off, 35 you will see it. I have seen a wicked, ruthless man 36 flourishing like a well-rooted native tree, 37 yet he passed away and was no more; though I searched, he could not be found. Consider the blameless and observe the b 38 upright, for posterity awaits the man of peace. But the transgressors will all be destroyed; the future of the wicked will be cut off. 39 The salvation of the righteous is from the wicked, because they take refuge in Him. Psalm 38 Do Not Rebuke Me in Your Anger" + }, + { + "verseNum": 18, + "text": "18 11 19 Yes, I confess my iniquity; I am troubled by my sin. a b 20 21 Many are my enemies without cause, and many hate me without reason. Those who repay my good with evil attack me for pursuing the good. 22 Do not forsake me, O LORD; be not far from me, O my God. Come quickly to help me, O Lord my Savior. Psalm 39 I Will Watch My Ways For the choirmaster. For Jeduthun. A Psalm of David. 1 I said, “I will watch my ways so that I will not sin with my tongue; I will guard my mouth with a muzzle 2 as long as the wicked are present.” I was speechless and still; I remained silent, even from speaking 3 good, and my sorrow was stirred. My heart grew hot within me; as I mused, the fire burned. 4 Then I spoke with my tongue: “Show me, O LORD, my end 5 and the measure of my days. Let me know how fleeting my life is. You, indeed, have made my days as handbreadths, and my lifetime as nothing before You. Truly each man at his best exists as but a breath. 6 Selah Surely every man goes about like a phantom; surely he bustles in vain; he heaps up riches 7 not knowing who will haul them away. And now, O Lord, for what do I wait? 8 My hope is in You. Deliver me from all my transgressions; 9 do not make me the reproach of fools. I have become mute; 10 I do not open my mouth because of what You have done. Remove Your scourge from me; My enemies are vigorous and strong a 19 gods I am perishing by the force of Your hand. d 6 who run after lies One DSS manuscript; MT or 10:5–7 Hebrew; some LXX ma" + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "–17 ;" + }, + { + "verseNum": 6, + "text": "–8 (see also LXX) ber when you were first enlightened. 21 22 e But we are not of those who shrink back and are destroyed, but of those who have faith and through the Holy Place preserve their souls. Remem- d 19 e 20 g 30 Or" + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 1, + "text": "–13) things, you will be blessed if you do them. 18 17 b c 19 I am not speaking about all of you; I know whom I have chosen. But this is to fulfill the Scripture: ‘The one who shares My bread has I am telling you lifted up his heel against Me.’ now before it happens, so that when it comes to Truly, truly, pass, you will believe that I am He. I tell you, whoever receives the one I send re- ceives Me, and whoever receives Me receives the 21 One who sent Me.” 20 After Jesus had said this, He became troubled in spirit and testified, “Truly, truly, I tell you, one 22 of you will betray Me.” 23 d 24 The disciples looked at one another, perplexed as to which of them He meant. One of His dis- ciples, the one whom Jesus loved, was reclining at His side. So Simon Peter motioned to him 25 to ask Jesus which one He was talking about. Leaning back against Jesus, he asked, “Lord, 26 who is it?” 27 Jesus answered, “It is the one to whom I give this morsel after I have dipped it.” Then He dipped the morsel and gave it to Judas son of Si- And when Judas had taken the mon Iscariot. morsel, Satan entered into him. 28 Then Jesus said to Judas, “What you are about to do, do quickly.” But no one at the table knew Since Judas why Jesus had said this to him. kept the money bag, some thought that Jesus was was reclining d 23 c 18 29 Or Cited in" + }, + { + "verseNum": 9, + "text": "Greek" + }, + { + "verseNum": 13, + "text": "| 517 Psalm 41 Victory over Betrayal" + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 1, + "text": "–26) interceding for us. 35 Who shall separate us from the love of Christ? Shall trouble or distress or persecution or famine As it is or nakedness or danger or sword? written: 36 “For Your sake we face death all day long; a we are considered as sheep to be 37 slaughtered.” 38 No, in all these things we are more than con- For I am querors through Him who loved us. convinced that neither death nor life, neither an- gels nor principalities, neither the present nor neither height nor the future, nor any powers, depth, nor anything else in all creation, will be able to separate us from the love of God that is in Paul’s Concern for the Jews Christ Jesus our Lord. 39 9 3 4 2 I speak the truth in Christ; I am not lying, as confirmed by my conscience in the Holy I have deep sorrow and unceasing an- Spirit. guish in my heart. For I could wish that I myself were cursed and cut off from Christ for the sake the of my brothers, my own flesh and blood, people of Israel. Theirs is the adoption as sons; theirs the divine glory and the covenants; theirs the giving of the law, the temple worship, and the Theirs are the patriarchs, and from promises. them proceeds the human descent of Christ, who God’s Sovereign Choice is God over all, forever worthy of praise! Amen." + }, + { + "verseNum": 22, + "text": "Or a 8 “Through Isaac your offspring will be reck- oned.” So it is not the children of the flesh who are God’s children, but it is the children of the promise who are regarded as offspring. For this b is what the promise stated: “At the appointed 10 time I will return, and Sarah will have a son.” 9 11 12 Not only that, but Rebecca’s children were conceived by one man, our father Isaac. Yet be- fore the twins were born or had done anything good or bad, in order that God’s plan of election not by works but by Him who might stand, 13 calls, she was told, “The older will serve the d So it is written: “Jacob I loved, but younger.” 14 Esau I hated.” 15 c What then shall we say? Is God unjust? Cer- For He says to Moses: tainly not! “I will have mercy on whom I have mercy, and I will have compassion on whom e 16 I have compassion.” 17 f So then, it does not depend on man’s desire or effort, but on God’s mercy. For the Scripture says to Pharaoh: “I raised you up for this very purpose, that I might display My power in you, and that My name might be proclaimed in all the earth.” Therefore God has mercy on whom He wants to have mercy, and He hardens whom He 19 wants to harden. 18 20 One of you will say to me, “Then why does God But still find fault? For who can resist His will?” who are you, O man, to talk back to God? Shall what is formed say to Him who formed it, “Why did You make me like this?” Does not the pot- ter have the right to make from the same lump of clay one vessel for spec" + } + ] + }, + { + "chapterNum": 45, + "verses": [ + { + "verseNum": 1, + "text": "–17 ;" + }, + { + "verseNum": 6, + "text": "–7 Or" + }, + { + "verseNum": 7, + "text": "| 519 It was by Your right hand, 4 Your arm, and the light of Your face, because You favored them. You are my King, O God, 5 who ordains victories for Jacob. Through You we repel our foes; since He knows the secrets of the heart? Yet for Your sake we face death all day long; d we are considered as sheep to be 23 slaughtered. 24 Wake up, O Lord! Why are You sleeping? Arise! Do not reject us forever. 6 through Your name we trample our 25 Why do You hide Your face enemies. a For I do not trust in my bow, 7 nor does my sword save me. For You save us from our enemies; 8 and forget our affliction and oppression? 26 For our soul has sunk to the dust; our bodies cling to the earth. Rise up; be our help! You put those who hate us to shame. In God we have boasted all day long, and Your name we will praise forever. Selah 9 Redeem us on account of Your loving devotion. Psalm 45 My Heart Is Stirred by a Noble Theme (1 Kings 3:1–15 ; 2 Chr. 1:1–13 ; Ps. 72:1–20) 10 But You have rejected and humbled us; You no longer go forth with our armies. 11 You have made us retreat from the foe, For the choirmaster. To the tune of “The Lilies.” A Maskil e of the sons of Korah. A love song. and those who hate us have plundered us. 1 You have given us up as sheep to be 12 devoured; You have scattered us among the nations. 13 You sell Your people for nothing; no profit do You gain from their sale. You have made us a reproach to our neighbors, 14 a mockery and derision to those around us. You have made us" + }, + { + "verseNum": 8, + "text": "8 5 All your garments are fragrant with myrrh and aloes and cassia; from palaces of ivory the harps make you 9 glad. God is within her; she will not be moved. God will help her when morning 6 dawns. Nations rage, kingdoms crumble; 7 The daughters of kings are among your the earth melts when He lifts His voice. honored women; 10 the queen stands at your right hand, adorned with the gold of Ophir. Listen, O daughter! Consider and incline your ear: 11 Forget your people and your father’s house, 12 and the king will desire your beauty; bow to him, for he is your lord. 13 The Daughter of Tyre will come with a gift; men of wealth will seek your favor. 14 All glorious is the princess in her chamber; her gown is embroidered with gold. In colorful garments she is led to the king; 15 her virgin companions are brought before you. 16 They are led in with joy and gladness; they enter the palace of the king. The LORD of Hosts is with us; 8 the God of Jacob is our fortress. Selah Come, see the works of the LORD, 9 who brings devastation upon the earth. He makes wars to cease throughout the earth; b He breaks the bow and shatters the spear; He burns the shields in the fire. 10 “Be still and know that I am God; 11 I will be exalted among the nations, I will be exalted over the earth.” The LORD of Hosts is with us; Selah the God of Jacob is our fortress. Psalm 47 Clap Your Hands, All You Peoples For the choirmaster. A Psalm of the sons of Korah. Your sons will succeed your fathers; 17 you will" + } + ] + }, + { + "chapterNum": 46, + "verses": [ + { + "verseNum": 1, + "text": "–11) 13 14 In the fourteenth year of Hezekiah’s reign, Sen- nacherib king of Assyria attacked and captured So Hezekiah all the fortified cities of Judah. king of Judah sent word to the king of Assyria at Lachish, saying, “I have done wrong; withdraw from me, and I will pay whatever you demand from me.” a And the king of Assyria exacted from Hezekiah king of Judah three hundred talents of silver Hezekiah gave him and thirty talents of gold. all the silver that was found in the house of the 16 LORD and in the treasuries of the royal palace. 15 b At that time Hezekiah stripped the gold with which he had plated the doors and doorposts of the temple of the LORD, and he gave it to the king Sennacherib Threatens Jerusalem of Assyria. (2 Chronicles 32:9–19 ;" + } + ] + }, + { + "chapterNum": 49, + "verses": [ + { + "verseNum": 1, + "text": "–20) words. Therefore, fear God. 8 If you see the oppression of the poor and the de- nial of justice and righteousness in the province, do not be astonished at the matter; for one offi- cial is watched by a superior, and others higher still are over them. The produce of the earth is taken by all; the king himself profits from the fields. 9 606 |" + }, + { + "verseNum": 20, + "text": "| 521 2 both low and high, 3 rich and poor alike. My mouth will impart wisdom, 4 and the meditation of my heart will bring understanding. I will incline my ear to a proverb; 5 I will express my riddle with the harp: Why should I fear in times of trouble, 6 when wicked usurpers surround me? e They trust in their wealth 7 and boast in their great riches. No man can possibly redeem his brother 8 or pay his ransom to God. 9 For the redemption of his soul is costly, and never can payment suffice, that he should live on forever 10 and not see decay. For it is clear that wise men die, and the foolish and the senseless both 11 perish f and leave their wealth to others. Their graves are their eternal homes— their dwellings for endless generations— even though their lands were their 12 Selah namesakes. 13 But a man, despite his wealth, cannot endure; he is like the beasts that perish. g 10 Within Your temple, O God, we contemplate Your loving devotion. 11 Your name, O God, like Your praise, reaches to the ends of the earth; Your right hand is full of righteousness. c Mount Zion is glad, the daughters of Judah rejoice, on account of Your judgments. 12 13 March around Zion, encircle her, count her towers, 14 consider her ramparts, tour her citadels, that you may tell the next generation. For this God is our God forever and ever; He will be our guide even till death. Psalm 49 The Evanescence of Wealth" + } + ] + }, + { + "chapterNum": 50, + "verses": [ + { + "verseNum": 1, + "text": "Psalm 50 The Mighty One Calls A Psalm of Asaph. 1 The Mighty One, God the LORD, 2 speaks and summons the earth from where the sun rises to where it sets. From Zion, perfect in beauty, 3 God shines forth. Our God approaches and will not be silent! 4 Consuming fire precedes Him, and a tempest rages around Him. He summons the heavens above, 5 and the earth, that He may judge His people: “Gather to Me My saints, 6 who made a covenant with Me by sacrifice.” a And the heavens proclaim His righteousness, Selah 7 for God Himself is Judge. “Hear, O My people, and I will speak, 8 O Israel, and I will testify against you: I am God, your God. I do not rebuke you for your sacrifices, 9 and your burnt offerings are ever before Me. 10 I have no need for a bull from your stall or goats from your pens, 11 12 for every beast of the forest is Mine— the cattle on a thousand hills. I know every bird in the mountains, and the creatures of the field are Mine. If I were hungry, I would not tell you, 13 for the world is Mine, and the fullness thereof. 14 Do I eat the flesh of bulls, or drink the blood of goats? Sacrifice a thank offering to God, 15 and fulfill your vows to the Most High. Call upon Me in the day of trouble; 16 I will deliver you, and you will honor Me.” To the wicked, however, God says, 17 “What right have you to recite My statutes and to bear My covenant on your lips? 18 For you hate My instruction and cast My words behind you. When you see a thief, you befriend him, 19 and throw in" + } + ] + }, + { + "chapterNum": 51, + "verses": [ + { + "verseNum": 1, + "text": "–19) sight of the LORD. 12 3 2 Then the LORD sent Nathan to David, and when he arrived, he said, “There were two men in a certain city, one rich and the The rich man had a great number of other poor. but the poor man had nothing sheep and cattle, except one small ewe lamb that he had bought. He raised it, and it grew up with him and his chil- dren. It shared his food and drank from his cup; and was like a daughter to it slept in his arms 4 him. a Now a traveler came to the rich man, who refrained from taking one of his own sheep or cattle to prepare for the traveler who had come to him. Instead, he took the poor man’s lamb and 5 prepared it for his guest.” David burned with anger against the man and said to Nathan: “As surely as the LORD lives, the Because he man who did this deserves to die! has done this thing and has shown no pity, he 7 must pay for the lamb four times over.” 6 8 Then Nathan said to David, “You are that man! This is what the LORD, the God of Israel, says: ‘I anointed you king over Israel, and I delivered I gave your master’s you from the hand of Saul. house to you and your master’s wives into your arms. I gave you the house of Israel and Judah, and if that was not enough, I would have given 9 you even more. Why then have you despised the command of the LORD by doing evil in His sight? You put Uriah the Hittite to the sword and took his wife as your own. You have slain him with the sword Now, therefore, the sword of the Ammonites. in his bosom a 3 will neve" + }, + { + "verseNum": 4, + "text": "(see also LXX) i 3" + } + ] + }, + { + "chapterNum": 52, + "verses": [ + { + "verseNum": 1, + "text": "–9) est of Hereth. 6 Soon Saul learned that David and his men had been discovered. At that time Saul was sitting un- der the tamarisk tree on the hill at Gibeah, with his spear in hand and all his servants standing 7 around him. Then Saul said to his servants, “Listen, men of Benjamin! Is the son of Jesse giving all of you fields and vineyards and making you command- Is that why all of ers of thousands or hundreds? a 3 you have conspired against me? Not one of you go forth 8 Syriac and Vulgate; Hebrew 10 But Doeg the Edomite, who had stationed him- self with Saul’s servants, answered: “I saw the son of Jesse come to Ahimelech son of Ahitub at Nob. Ahimelech inquired of the LORD for him and gave him provisions. He also gave him the 11 sword of Goliath the Philistine.” Then the king sent messengers to summon Ahimelech the priest, the son of Ahitub, and his father’s whole family, who were priests at Nob. And all of them came to the king. “Listen now, son of Ahitub,” said Saul. 13 “Here I am, my lord,” he replied. 12 And Saul asked him, “Why have you and the son of Jesse conspired against me? You gave him bread and a sword and inquired of God for him so that he could rise up against me to lie in wait, 14 as he is doing today.” Ahimelech answered the king, “Who among all your servants is as faithful as David, the king’s 15 son-in-law, the captain of your bodyguard and honored in your house? Was that day the first time I inquired of God for him? Far be it from me! Let not the king" + } + ] + }, + { + "chapterNum": 53, + "verses": [ + { + "verseNum": 1, + "text": ". is probably a musical or liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. 544 |" + }, + { + "verseNum": 6, + "text": "| 523 Then I will teach transgressors Your ways, “Look at the man 14 and sinners will return to You. Deliver me from bloodguilt, O God, the God of my salvation, and my tongue will sing of Your 15 righteousness. O Lord, open my lips, 16 who did not make God his refuge, but trusted in the abundance of his wealth 8 and strengthened himself by destruction.” But I am like an olive tree flourishing in the house of God; I trust in the loving devotion of God 9 and my mouth will declare Your praise. For You do not delight in sacrifice, or I would forever and ever. I will praise You forever, 17 bring it; because You have done it. You take no pleasure in burnt offerings. I will wait on Your name— The sacrifices of God are a broken spirit; 18 a broken and a contrite heart, O God, You will not despise. 19 In Your good pleasure, cause Zion to prosper; build up the walls of Jerusalem. Then You will delight in righteous sacrifices, in whole burnt offerings; Psalm 52 then bulls will be offered on Your altar. Why Do You Boast of Evil? (1 Samuel 22:6–23) For the choirmaster. A Maskil a of David. After Doeg the Edomite went to Saul and told him, “David has gone to the house of Ahimelech.” 1 Why do you boast of evil, O mighty man? The loving devotion of God endures all 2 day long. Your tongue devises destruction 3 like a sharpened razor, O worker of deceit. You love evil more than good, falsehood more than speaking truth. Selah 4 You love every word that devours, 5 O deceitful tongue. Surely God" + } + ] + }, + { + "chapterNum": 54, + "verses": [ + { + "verseNum": 1, + "text": "–7) Keilah.) 7 When Saul was told that David had gone to Kei- lah, he said, “God has delivered him into my hand, for he has trapped himself by entering a 8 town with gates and bars.” Then Saul summoned all his troops to go to war 9 at Keilah and besiege David and his men. When David learned that Saul was plotting evil against him, he said to Abiathar the priest, “Bring 10 the ephod.” a 11 And David said, “O LORD, God of Israel, Your servant has heard that Saul intends to come to Keilah and destroy the city on my account. Will the citizens of Keilah surrender me into his hand? Will Saul come down, as Your servant has heard? O LORD, God of Israel, please tell Your a 11 servant.” Some manuscripts omit this question. 12 “He will,” said the LORD. So David asked, “Will the citizens of Keilah sur- render me and my men into the hand of Saul?” 13 “They will,” said the LORD. Then David and his men, about six hundred strong, set out and departed from Keilah, moving from place to place. When Saul was told that Da- vid had escaped from Keilah, he declined to go 14 forth. And David stayed in the wilderness strong- holds and in the hill country of the Wilderness of Ziph. Day after day Saul searched for him, but 15 God would not deliver David into his hand. 16 While David was in Horesh in the Wilderness of Ziph, he saw that Saul had come out to take his And Saul’s son Jonathan came to David in life. Horesh and strengthened his hand in God, say- ing, “Do not be afraid, for my father Saul will" + } + ] + }, + { + "chapterNum": 56, + "verses": [ + { + "verseNum": 1, + "text": "–13) 8 But the boy did not know anything; only Jona- Then than and David knew the arrangement. Jonathan gave his equipment to the boy and said, 41 “Go, take it back to the city.” a Then David asked Ahimelech, “Is there not a spear or sword on hand here? For I have brought neither my sword nor my weapons with me, be- 9 cause the king’s mission was urgent.” When the young man had gone, David got up fell facedown, from the south side of the stone, and bowed three times. Then he and Jonathan kissed each other and wept together—though 42 David wept more. The priest replied, “The sword of Goliath the Philistine, whom you killed in the Valley of Elah, is here; it is wrapped in a cloth behind the ephod. If you want, you may take it. For there is no other but this one here.” And Jonathan said to David, “Go in peace, for a 41 the two of us have sworn in the name of the from beside the stone from the south side And David said, “There is none like it; give it to me.” Hebrew ; LXX 1 Samuel 22:20 | 271 10 11 That day David fled from Saul and went to But the servants of Achish Achish king of Gath. said to him, “Is this not David, the king of the land? Did they not sing about him in their dances, saying: told me that my own son had made a covenant with the son of Jesse. Not one of you has shown concern for me or revealed to me that my son has stirred up my own servant to lie in wait against 9 me, as is the case today.” ‘Saul has slain his thousands, 12 and David his tens of thousands’?” 13 N" + } + ] + }, + { + "chapterNum": 57, + "verses": [ + { + "verseNum": 1, + "text": "–11 ;" + }, + { + "verseNum": 11, + "text": "| 525 Psalm 57 In You My Soul Takes Refuge (1 Samuel 22:1–5 ;" + } + ] + }, + { + "chapterNum": 58, + "verses": [ + { + "verseNum": 1, + "text": "Psalm 58 God Judges the Earth For the choirmaster. To the tune of “Do Not Destroy.” A Miktam a of David. 1 Do you indeed speak justly, O rulers? 2 Do you judge uprightly, O sons of men? No, in your hearts you devise injustice; 3 with your hands you mete out violence on the earth. The wicked are estranged from the womb; 4 the liars go astray from birth. Their venom is like the venom of a snake, 5 like a cobra that shuts its ears, refusing to hear the tune of the charmer 6 who skillfully weaves his spell. 7 O God, shatter their teeth in their mouths; O LORD, tear out the fangs of the lions. May they vanish like water that runs off; b when they draw the bow, 8 may their arrows be blunted. Like a slug that dissolves in its slime, like a woman’s stillborn child, may they never see the sun. Before your pots can feel the burning 9 thorns— 10 whether green or dry— He will sweep them away. The righteous will rejoice when they see they are avenged; 11 they will wash their feet in the blood of the wicked. Then men will say, “There is surely a reward for the righteous! There is surely a God who judges the Psalm 59 earth!” Deliver Me from My Enemies (1 Samuel 19:1–24) For the choirmaster. To the tune of “Do Not Destroy.” A Miktam c of David, when Saul sent men to watch David’s house in order to kill him. 1 Deliver me from my enemies, O my God; 2 protect me from those who rise against me. Deliver me from workers of iniquity, and save me from men of bloodshed. a 1 Miktam may they wither lik" + } + ] + }, + { + "chapterNum": 59, + "verses": [ + { + "verseNum": 1, + "text": "–17) esteemed. 19 Then Saul ordered his son Jonathan and all his servants to kill David. 2 3 so he But Jonathan delighted greatly in David, warned David, saying, “My father Saul intends to kill you. Be on your guard in the morning; find a secret place and hide there. I will go out and stand beside my father in the field where you are, so I can ask about you. And if I find out anything, 4 I will tell you.” 5 Then Jonathan spoke well of David to his father Saul and said to him, “The king should not sin against his servant David; he has not sinned against you. In fact, his actions have been highly beneficial to you. He took his life in his hands when he struck down the Philistine, and the LORD worked a great salvation for all Israel. You saw it and rejoiced, so why would you sin against 6 innocent blood by killing David for no reason?” Saul listened to the voice of Jonathan and swore an oath: “As surely as the LORD lives, David will 7 not be put to death.” So Jonathan summoned David and told him all these things. Then Jonathan brought David to 8 Saul, and David was with Saul as before. 9 a 10 But as Saul was sitting in his house with his spear in his hand, a spirit of distress from the LORD came upon him. While David was play- Saul tried to pin him to the wall ing the harp, with his spear. But David eluded him and the spear struck the wall. And David fled and es- 11 caped that night. Then Saul sent messengers to David’s house to watch him and kill him in the morning. But Da- vid" + } + ] + }, + { + "chapterNum": 60, + "verses": [ + { + "verseNum": 1, + "text": "–12) 18 Some time later, David defeated the Phil- istines, subdued them, and took Gath and 2 its villages from the hand of the Philistines. David also defeated the Moabites, and they be- 3 came subject to David and brought him tribute. c As far as Hamath, David also defeated King Hadadezer of Zobah, who had marched out to es- 4 along the Euphrates River. tablish his dominion David captured from him a thousand chariots, seven thousand charioteers, and twenty thou- sand foot soldiers, and he hamstrung all the 5 horses except a hundred he kept for the chariots. d 6 When the Arameans of Damascus came to help King Hadadezer of Zobah, David struck down Then he twenty-two thousand of their men. in Aram of Damascus, and the placed garrisons e Arameans became subject to David and brought him tribute. So the LORD made David victorious 7 wherever he went. f 8 And David took the gold shields that belonged to the officers of Hadadezer and brought them to and Cun, cities of Jerusalem. Hadadezer, David took a large amount of bronze, with which Solomon made the bronze Sea, the g 9 pillars, and various bronze articles. And from Tibhath h 10 When King Tou of Hamath heard that David had defeated the entire army of Hadadezer king to greet he sent his son Hadoram of Zobah, King David and bless him for fighting and defeat- ing Hadadezer, who had been at war with Tou. Hadoram brought all kinds of articles of gold and and King David dedicated silver and bronze, these to the LORD, along with the silv" + } + ] + }, + { + "chapterNum": 62, + "verses": [ + { + "verseNum": 4, + "text": "| 527 Psalm 61 You Have Heard My Vows For the choirmaster. With stringed instruments. Of David. 1 Hear my cry, O God; 2 attend to my prayer. From the ends of the earth I call out to You whenever my heart is faint. Lead me to the rock 3 that is higher than I. For You have been my refuge, 4 a tower of strength against the enemy. Let me dwell in Your tent forever and take refuge in the shelter of Your Selah 5 wings. For You have heard my vows, O God; You have given me the inheritance reserved for those who fear Your name. 6 Increase the days of the king’s life; 7 may his years span many generations. May he sit enthroned in God’s presence forever; 8 appoint Your loving devotion and Your faithfulness to guard him. Then I will ever sing praise to Your name and fulfill my vows day by day. Psalm 62 Waiting on God God has spoken from His sanctuary: “I will triumph! I will parcel out Shechem 7 and apportion the Valley of Succoth. Gilead is Mine, and Manasseh is Mine; Ephraim is My helmet, Judah is My 8 scepter. Moab is My washbasin; upon Edom I toss My sandal; over Philistia I shout in triumph.” 9 Who will bring me to the fortified city? 10 Who will lead me to Edom? Have You not rejected us, O God? For the choirmaster. According to Jeduthun. A Psalm of David. 1 In God alone my soul finds rest; 2 my salvation comes from Him. He alone is my rock and my salvation. 3 He is my fortress; I will never be shaken. How long will you threaten a man? Will all of you throw him down like a leaning w" + }, + { + "verseNum": 5, + "text": "5 7 Rest in God alone, O my soul, 6 for my hope comes from Him. He alone is my rock and my salvation; 7 For You are my help; 8 I will sing for joy in the shadow of Your wings. He is my fortress; I will not be shaken. My salvation and my honor rest on God, my My soul clings to You; 9 Your right hand upholds me. 8 strong rock; my refuge is in God. Trust in Him at all times, O people; pour out your hearts before Him. God is our refuge. Selah 9 Lowborn men are but a vapor; the exalted are but a lie. 10 Weighed on the scale, they go up; together they are but a vapor. Place no trust in extortion or false hope in stolen goods. If your riches increase, 11 do not set your heart upon them. God has spoken once; 12 I have heard this twice: that power belongs to God, a and loving devotion to You, O Lord. For You will repay each man according to his deeds. Psalm 63 Thirsting for God (2 Samuel 15:30–37) 10 11 But those who seek my life to destroy it will go into the depths of the earth. They will fall to the power of the sword; they will become a portion for foxes. But the king will rejoice in God; all who swear by Him will exult, for the mouths of liars will be shut. Psalm 64 The Hurtful Tongue" + }, + { + "verseNum": 12, + "text": "BYZ and TR" + } + ] + }, + { + "chapterNum": 64, + "verses": [ + { + "verseNum": 1, + "text": "–10) so faith without deeds is dead. 3 2 Not many of you should become teachers, my brothers, because you know that we who We all stum- teach will be judged more strictly. ble in many ways. If anyone is never at fault in what he says, he is a perfect man, able to control 3 his whole body. 4 When we put bits into the mouths of horses to make them obey us, we can guide the whole ani- Consider ships as well. Although they are mal. so large and are driven by strong winds, they are steered by a very small rudder wherever the 5 pilot is inclined. 6 In the same way, the tongue is a small part of the body, but it boasts of great things. Consider The how small a spark sets a great forest ablaze. tongue also is a fire, a world of wickedness among the parts of the body. It pollutes the whole person, sets the course of his life on fire, 7 and is itself set on fire by hell. k 8 All kinds of animals, birds, reptiles, and crea- tures of the sea are being tamed and have been tamed by man, but no man can tame the tongue. 9 It is a restless evil, full of deadly poison. 10 With the tongue we bless our Lord and Father, and with it we curse men, who have been made in God’s likeness. Out of the same mouth come l 11 blessing and cursing. My brothers, this should not be! My brothers, can a flow from the same spring? fig tree grow olives, or a grapevine bear figs? Nei- The Wisdom from Above ther can a salt spring 13 12 Can both fresh water and salt water produce fresh water. m Who is wise and underst" + } + ] + }, + { + "chapterNum": 66, + "verses": [ + { + "verseNum": 1, + "text": "–20) 8 Every morning I will remove all the wicked of the land, A Psalm of thanksgiving. that I may cut off every evildoer from the 1 2 Make a joyful noise to the LORD, all the earth. Serve the LORD with gladness; 3 come into His presence with joyful songs. a Know that the LORD is God. It is He who made us, and we are His; we are His people, and the sheep of His 4 pasture. Enter His gates with thanksgiving and His courts with praise; give thanks to Him and bless His name. 5 For the LORD is good, and His loving devotion endures forever; His faithfulness continues to all generations. Psalm 101 I Will Set No Worthless Thing before My Eyes A Psalm of David. 1 I will sing of Your loving devotion and justice; 2 to You, O LORD, I will sing praises. I will ponder the way that is blameless— when will You come to me? I will walk in my house 3 with integrity of heart. I will set no worthless thing before my eyes. I hate the work of those who fall away; 4 it shall not cling to me. A perverse heart shall depart from me; 5 I will know nothing of evil. city of the LORD. Psalm 102 The Prayer of the Afflicted A prayer of one who is afflicted, when he grows faint and pours out his lament before the LORD. 1 Hear my prayer, O LORD; 2 let my cry for help come before You. Do not hide Your face from me in my day of distress. Incline Your ear to me; 3 answer me quickly when I call. For my days vanish like smoke, 4 and my bones burn like glowing embers. My heart is afflicted, and withered like grass;" + }, + { + "verseNum": 15, + "text": "| 529 Psalm 66 Make a Joyful Noise" + }, + { + "verseNum": 16, + "text": "16 3 Come and listen, all you who fear God, and I will declare what He has done 17 for me. a 18 I cried out to Him with my mouth 19 and praised Him with my tongue. If I had cherished iniquity in my heart, the Lord would not have listened. But God has surely heard; 20 He has attended to the sound of my prayer. Blessed be God, who has not rejected my prayer or withheld from me His loving devotion! Psalm 67 May God Cause His Face to Shine upon Us For the choirmaster. With stringed instruments. A Psalm. A song. 1 May God be gracious to us and bless us, and cause His face to shine upon us, Selah 2 3 that Your ways may be known on earth, Your salvation among all nations. 4 Let the peoples praise You, O God; let all the peoples praise You. Let the nations be glad and sing for joy, for You judge the peoples justly and lead the nations of the earth. 5 Selah Let the peoples praise You, O God; let all the peoples praise You. 6 7 The earth has yielded its harvest; God, our God, blesses us. God blesses us, that all the ends of the earth shall fear Psalm 68 Him. God’s Enemies Are Scattered For the choirmaster. A Psalm of David. A song. 1 God arises. His enemies are 2 scattered, and those who hate Him flee His presence. As smoke is blown away, You will drive them out; as wax melts before the fire, the wicked will perish in the presence and His praise was on my tongue of God. b 4 a 17 But the righteous will be glad and rejoice before God; they will celebrate with joy. 4 Sing to God! b Sing p" + } + ] + }, + { + "chapterNum": 68, + "verses": [ + { + "verseNum": 18, + "text": "BYZ and TR" + } + ] + }, + { + "chapterNum": 69, + "verses": [ + { + "verseNum": 7, + "text": "| 531 This is the mountain God chose for 31 until it submits, bringing bars of silver. His dwelling, Scatter the nations who delight in war. d where the LORD will surely dwell forever. Envoys will arrive from Egypt; 17 The chariots of God are tens of thousands— a thousands of thousands are they; 32 Cush will stretch out her hands to God. the Lord is in His sanctuary 18 as He was at Sinai. You have ascended on high; b You have led captives away. You have received gifts from men, even from the rebellious, that the LORD God may dwell there. 19 Blessed be the Lord, who daily bears our burden, the God of our salvation. Selah 20 Our God is a God of deliverance; 21 the Lord GOD is our rescuer from death. Surely God will crush the heads of His enemies, 22 the hairy crowns of those who persist in guilty ways. The Lord said, “I will retrieve them from 1 Sing to God, O kingdoms of the earth; sing praises to the Lord— 33 Selah to Him who rides upon the highest heavens 34 of old; behold, His mighty voice resounds. Ascribe the power to God, 35 whose majesty is over Israel, whose strength is in the skies. O God, You are awesome in Your sanctuary; the God of Israel Himself gives strength and power to His people. Blessed be God! Psalm 69 The Waters Are up to My Neck For the choirmaster. To the tune of “Lilies.” Of David. Bashan, 23 I will bring them up from the depths of the sea, that your foot may be dipped in the blood of your foes— the tongues of your dogs in the 24 same.” They have seen Y" + }, + { + "verseNum": 8, + "text": "8 9 I have become a stranger to my brothers and a foreigner to my mother’s sons, because zeal for Your house has consumed a me, b 25 May their place be deserted; 26 let there be no one to dwell in their tents. For they persecute the one You struck and recount the pain of those You 27 e 10 and the insults of those who insult You wounded. have fallen on me. I wept and fasted, 11 but it brought me reproach. I made sackcloth my clothing, and I was sport to them. 12 Those who sit at the gate mock me, and I am the song of drunkards. 13 But my prayer to You, O LORD, is for a time of favor. 14 In Your abundant loving devotion, O God, answer me with Your sure salvation. Rescue me from the mire and do not let me sink; deliver me from my foes 15 and out of the deep waters. Do not let the floods engulf me 16 or the depths swallow me up; let not the Pit close its mouth over me. Answer me, O LORD, for Your loving devotion is good; turn to me in keeping with Your great 17 compassion. Hide not Your face from Your servant, 36 18 for I am in distress. Answer me quickly! Draw near to my soul and redeem me; ransom me because of my foes. 19 You know my reproach, my shame and 20 disgrace. All my adversaries are before You. Insults have broken my heart, and I am in despair. 21 I looked for sympathy, but there was none, for comforters, but I found no one. 1 They poisoned my food with gall Add iniquity to their iniquity; 28 let them not share in Your righteousness. May they be blotted out of the Book" + }, + { + "verseNum": 9, + "text": "unique BYZ and TR include e 13 d must be born again.’ Flesh is born of flesh, but water and the Spirit. 8 spirit is born of the Spirit. Do not be amazed that I said, ‘You The wind blows where it wishes. You hear its sound, but you do not know where it comes from or where it is going. So it is with everyone born of the 9 Spirit.” 10 “How can this be?” Nicodemus asked. 11 “You are Israel’s teacher,” said Jesus, “and you Truly, truly, I do not understand these things? tell you, we speak of what we know, and we tes- tify to what we have seen, and yet you people do 12 not accept our testimony. e If I have told you about earthly things and you 13 do not believe, how will you believe if I tell you No one has ascended about heavenly things? 14 into heaven except the One who descended from Just as Moses lifted heaven—the Son of Man. up the snake in the wilderness, so the Son of Man f must be lifted up, that everyone who believes 16 in Him may have eternal life. g 15 17 18 For God so loved the world that He gave His one and only Son, that everyone who believes in For Him shall not perish but have eternal life. God did not send His Son into the world to con- demn the world, but to save the world through Whoever believes in Him is not con- Him. demned, but whoever does not believe has already been condemned, because he has not 19 believed in the name of God’s one and only Son. And this is the verdict: The Light has come into the world, but men loved the darkness rather 20 than the Light" + }, + { + "verseNum": 21, + "text": ". WH includes ; see" + }, + { + "verseNum": 22, + "text": "–23 (see also LXX) Or" + } + ] + }, + { + "chapterNum": 70, + "verses": [ + { + "verseNum": 1, + "text": "–5 ;" + } + ] + }, + { + "chapterNum": 72, + "verses": [ + { + "verseNum": 1, + "text": "–20) 1 Now Solomon son of David established him- self securely over his kingdom, and the LORD his God was with him and highly exalted 2 him. Then Solomon spoke to all Israel, to the com- manders of thousands and of hundreds, to the 3 judges, and to every leader in all Israel—the And Solomon and the heads of the families. whole assembly went to the high place at Gibeon because it was the location of God’s Tent of Meet- ing, which Moses the servant of the LORD had 4 made in the wilderness. Now David had brought the ark of God from Kir- iath-jearim to the place he had prepared for it, 5 because he had pitched a tent for it in Jerusalem. But the bronze altar made by Bezalel son of Uri, the taber- the son of Hur, was in Gibeon before nacle of the LORD. So Solomon and the assembly 6 inquired of Him there. a Solomon offered sacrifices there before the LORD on the bronze altar at the Tent of Meeting, 7 where he offered a thousand burnt offerings. That night God appeared to Solomon and said, 8 “Ask, and I will give it to you!” b Solomon replied to God: “You have shown much 9 loving devotion to my father David, and You Now, O LORD have made me king in his place. God, let Your promise to my father David be ful- 10 filled. For You have made me king over a people Now as numerous as the dust of the earth. grant me wisdom and knowledge, so that I may For who is able to govern this lead this people. 11 great people of Yours?” c 12 honor for yourself or death for your enemies— and since you h" + }, + { + "verseNum": 2, + "text": "| 533 May all who seek You rejoice and be glad in You; may those who love Your salvation 5 always say, “Let God be magnified!” But I am poor and needy; hurry to me, O God. You are my help and my deliverer; O LORD, do not delay. Psalm 71 Be My Rock of Refuge 1 In You, O LORD, I have taken refuge; let me never be put to shame. In Your justice, rescue and deliver me; 2 3 incline Your ear and save me. Be my rock of refuge, where I can always go. Give the command to save me, 4 for You are my rock and my fortress. Deliver me, O my God, from the hand of the 5 wicked, from the grasp of the unjust and ruthless. 6 For You are my hope, O Lord GOD, my confidence from my youth. I have leaned on You since birth; You pulled me from my mother’s womb. My praise is always for You. I have become a portent to many, but You are my strong refuge. My mouth is filled with Your praise 7 8 9 My mouth will declare Your righteousness 16 and Your salvation all day long, though I cannot know their full measure. I will come in the strength of the Lord GOD; 17 I will proclaim Your righteousness—Yours alone. O God, You have taught me from my youth, 18 and to this day I proclaim Your marvelous deeds. Even when I am old and gray, do not forsake me, O God, until I proclaim Your power to the next 19 generation, Your might to all who are to come. Your righteousness reaches to the heavens, O God, 20 You who have done great things. Who, O God, is like You? Though You have shown me many troubles and misfortunes, 21" + }, + { + "verseNum": 3, + "text": "3 13 May the mountains bring peace to the people, 4 and the hills bring righteousness. May he vindicate the afflicted among the 14 He will take pity on the poor and needy and save the lives of the oppressed. He will redeem them from oppression people; may he save the children of the a needy 5 and crush the oppressor. May they fear him as long as the sun shines, 6 as long as the moon remains, through all generations. May he be like rain that falls on freshly 7 cut grass, like spring showers that water the earth. righteous flourish in his days May the and prosperity abound until the moon is no more. 8 b May he rule from sea to sea, and from the Euphrates 9 to the ends of the earth. 10 May the nomads bow before him, and his enemies lick the dust. May the kings of Tarshish and distant shores bring tribute; 11 may the kings of Sheba and Seba offer gifts. May all kings bow down to him and all nations serve him. 12 15 and violence, for their blood is precious in his sight. Long may he live! May gold from Sheba be given him. May people ever pray for him; 16 may they bless him all day long. May there be an abundance of grain in the land; may it sway atop the hills. May its fruit trees flourish like the forests of Lebanon, 17 the people of its cities like the grass of the field. c May his name endure forever; may his name continue as long as the sun shines. In him may all nations be blessed; may they call him blessed. 18 19 Blessed be the LORD God, the God of Israel, who alone does mar" + } + ] + }, + { + "chapterNum": 74, + "verses": [ + { + "verseNum": 1, + "text": "–23 ;" + }, + { + "verseNum": 7, + "text": "7 They have burned Your sanctuary to the ground; 8 they have defiled the dwelling place of Your Name. They said in their hearts, “We will crush them completely.” They burned down every place 9 where God met us in the land. There are no signs for us to see. Psalm 75 God’s Righteous Judgment" + } + ] + }, + { + "chapterNum": 75, + "verses": [ + { + "verseNum": 1, + "text": "–10) but also approve of those who practice them. 2 3 2 You, therefore, have no excuse, you who pass judgment on another. For on whatever grounds you judge the other, you are condemn- ing yourself, because you who pass judgment do And we know that God’s judg- the same things. ment against those who do such things is based So when you, O man, pass judgment on on truth. 4 others, yet do the same things, do you think you Or do you disre- will escape God’s judgment? gard the riches of His kindness, tolerance, and patience, not realizing that God’s kindness leads 5 you to repentance? 7 But because of your hard and unrepentant heart, you are storing up wrath against yourself 6 for the day of wrath, when God’s righteous judg- a God “will repay each one ment will be revealed. To those who by per- according to his deeds.” severance in doing good seek glory, honor, and But for immortality, He will give eternal life. those who are self-seeking and who reject the truth and follow wickedness, there will be wrath 9 and anger. 8 10 There will be trouble and distress for every hu- man being who does evil, first for the Jew, then but glory, honor, and peace for for the Greek; everyone who does good, first for the Jew, then For God does not show favorit- for the Greek. 12 ism. 11 All who sin apart from the law will also perish 13 apart from the law, and all who sin under the law For it is not the hear- will be judged by the law. ers of the law who are righteous before God, but it is the doers" + } + ] + }, + { + "chapterNum": 78, + "verses": [ + { + "verseNum": 1, + "text": "–72) 34 35 Jesus spoke all these things to the crowds in parables. He did not tell them anything without using a parable. So was fulfilled what was spo- ken through the prophet: “I will open My mouth in parables; c I will utter things hidden since the The Parable of the Weeds Explained" + }, + { + "verseNum": 2, + "text": "(see also . 43 throw them into the fiery furnace, where there Then will be weeping and gnashing of teeth. a the righteous will shine like the sun in the king- dom of their Father. The Parables of the Treasure and the Pearl He who has ears, let him hear. 44 The kingdom of heaven is like treasure hidden in a field. When a man found it, he hid it again, and in his joy he went and sold all he had and 45 bought that field. 46 Again, the kingdom of heaven is like a mer- chant in search of fine pearls. When he found one very precious pearl, he went away and sold The Parable of the Net all he had and bought it. 47 48 Once again, the kingdom of heaven is like a net that was cast into the sea and caught all kinds of fish. When it was full, the men pulled it ashore. Then they sat down and sorted the good fish into 49 containers, but threw the bad away. 50 So will it be at the end of the age: The angels will come and separate the wicked from the righteous and throw them into the fiery fur- nace, where there will be weeping and gnashing 51 of teeth. Have you understood all these things?” 52 “Yes,” they answered. Then He told them, “For this reason, every scribe who has been discipled in the kingdom of heaven is like a homeowner who brings out of his The Rejection at Nazareth storeroom new treasures as well as old.”" + }, + { + "verseNum": 4, + "text": "| 537 The valiant lie plundered; they sleep their 6 last sleep. No men of might could lift a hand. At Your rebuke, O God of Jacob, both horse and rider lie stunned. 7 You alone are to be feared. 8 When You are angry, who can stand before You? 9 From heaven You pronounced judgment, and the earth feared and was still when God rose up to judge, 10 to save all the lowly of the earth. Selah Even the wrath of man shall praise You; with the survivors of wrath You will a 11 clothe Yourself. Make and fulfill your vows to the LORD your God; 12 let all the neighboring lands bring tribute to Him who is to be feared. He breaks the spirits of princes; Psalm 77 He is feared by the kings of the earth. In the Day of Trouble I Sought the Lord For the choirmaster. According to Jeduthun. A Psalm of Asaph. 1 I cried out to God; 2 I cried aloud to God to hear me. In the day of trouble I sought the Lord; through the night my outstretched hands 3 did not grow weary; my soul refused to be comforted. I remembered You, O God, and I groaned; I mused and my spirit grew faint. Selah 4 You have kept my eyes from closing; 5 I am too troubled to speak. 6 I considered the days of old, the years long in the past. At night I remembered my song; 7 in my heart I mused, and my spirit pondered: “Will the Lord spurn us forever 8 and never show His favor again? Is His loving devotion gone forever? Has God forgotten to be gracious? Selah Has His anger shut off His compassion?” 10 So I said, “I am grieved b 11 that the" + }, + { + "verseNum": 5, + "text": "5 23 For He established a testimony in Jacob 24 and appointed a law in Israel, which He commanded our fathers to teach to their children, 6 Yet He commanded the clouds above a and opened the doors of the heavens. He rained down manna for them to eat; He gave them grain from heaven. 25 that the coming generation would know 26 Man ate the bread of angels; them— 7 even children yet to be born— to arise and tell their own children He sent them food in abundance. 27 He stirred the east wind from the heavens and drove the south wind by His might. that they should put their confidence in God, 28 He rained meat on them like dust, 8 not forgetting His works, but keeping His commandments. Then they will not be like their fathers, a stubborn and rebellious generation, whose heart was not loyal, 9 whose spirit was not faithful to God. The archers of Ephraim 10 11 turned back on the day of battle. They failed to keep God’s covenant and refused to live by His law. 12 They forgot what He had done, the wonders He had shown them. He worked wonders before their fathers 13 in the land of Egypt, in the region of Zoan. 14 He split the sea and brought them through; He set the waters upright like a wall. 15 He led them with a cloud by day and with a light of fire all night. He split the rocks in the wilderness 16 and gave them drink as abundant as the seas. He brought streams from the stone 17 and made water flow down like rivers. But they continued to sin against Him, 18 rebelling in the desert ag" + }, + { + "verseNum": 24, + "text": "; see also" + } + ] + }, + { + "chapterNum": 79, + "verses": [ + { + "verseNum": 1, + "text": "–13 ;" + }, + { + "verseNum": 6, + "text": "| 539 drink. 46 He sent swarms of flies that devoured them, 47 and frogs that devastated them. He gave their crops to the grasshopper, the fruit of their labor to the locust. a 48 49 He killed their vines with hailstones and their sycamore-figs with sleet. He abandoned their cattle to the hail and their livestock to bolts of lightning. He unleashed His fury against them, 50 wrath, indignation, and calamity— a band of destroying angels. He cleared a path for His anger; 51 He did not spare them from death but delivered their lives to the plague. He struck all the firstborn of Egypt, the virility in the tents of Ham. 52 He led out His people like sheep 53 and guided them like a flock in the wilderness. 54 He led them safely, so they did not fear, but the sea engulfed their enemies. He brought them to His holy land, to the mountain His right hand had acquired. 1 55 wedding songs. His priests fell by the sword, 65 but their widows could not lament. 66 Then the Lord awoke as from sleep, like a mighty warrior overcome by wine. 67 He beat back His foes; He put them to everlasting shame. 68 He rejected the tent of Joseph and refused the tribe of Ephraim. 69 But He chose the tribe of Judah, Mount Zion, which He loved. 70 He built His sanctuary like the heights, like the earth He has established forever. 71 He chose David His servant and took him from the sheepfolds; from tending the ewes He brought him to be shepherd of His people Jacob, of Israel His inheritance. 72 So David shepherde" + }, + { + "verseNum": 7, + "text": "7 6 for they have devoured Jacob 8 and devastated his homeland. Do not hold past sins against us; 9 let Your compassion come quickly, for we are brought low. Help us, O God of our salvation, for the glory of Your name; deliver us and atone for our sins, for the sake of Your name. Why should the nations ask, “Where is their God?” 10 Before our eyes, make known among the nations 11 Your vengeance for the bloodshed of Your servants. 12 May the groans of the captives reach You; by the strength of Your arm preserve those condemned to death. Pay back into the laps of our neighbors 13 sevenfold the reproach they hurled at You, O Lord. Then we Your people, the sheep of Your pasture, will thank You forever; from generation to generation we will declare Your praise. Psalm 80 Hear Us, O Shepherd of Israel For the choirmaster. To the tune of “The Lilies of the Covenant.” A Psalm of Asaph. 1 Hear us, O Shepherd of Israel, who leads Joseph like a flock; You who sit enthroned between the 2 cherubim, shine forth before Ephraim, Benjamin, and Manasseh. Rally Your mighty power and come to save us. 3 Restore us, O God, 4 and cause Your face to shine upon us, that we may be saved. O LORD God of Hosts, 5 how long will Your anger smolder against the prayers of Your people? You fed them with the bread of tears and made them drink the full measure of a 11 their tears. You make us contend with our neighbors; 7 our enemies mock us. Restore us, O God of Hosts, 8 and cause Your face to shine upon us, th" + } + ] + }, + { + "chapterNum": 82, + "verses": [ + { + "verseNum": 6, + "text": "the temple e 34 Some manuscripts do not include 37 38 If I am not doing the works of My Father, then do not believe Me. But if I am doing them, even though you do not believe Me, believe the works themselves, so that you may know and under- stand that the Father is in Me, and I am in the 39 Father.” At this, they tried again to seize Him, but He es- John’s Testimony Confirmed caped their grasp. 40 41 Then Jesus went back across the Jordan to the place where John had first been baptizing, and He stayed there. Many came to Him and said, “Although John never performed a sign, every- thing he said about this man was true.” And The Death of Lazarus many in that place believed in Jesus. 42 11 2 At this time a man named Lazarus was sick. He lived in Bethany, the village of Mary and her sister Martha. (Mary, whose brother Lazarus was sick, was to anoint the Lord 3 with perfume and wipe His feet with her hair.) So the sisters sent word to Jesus, “Lord, the one a 4 You love is sick.” When Jesus heard this, He said, “This sickness will not end in death. No, it is for the glory of God, so that the Son of God may be glorified through 5 it.” 6 Now Jesus loved Martha and her sister and Laz- So on hearing that Lazarus was sick, He and then He arus. stayed where He was for two days, 8 said to the disciples, “Let us go back to Judea.” 7 “Rabbi,” they replied, “the Jews just tried to 9 stone You, and You are going back there?” 10 Jesus answered, “Are there not twelve hours of daylight? If anyon" + } + ] + }, + { + "chapterNum": 83, + "verses": [ + { + "verseNum": 15, + "text": "| 541 For this is a statute for Israel, 5 a an ordinance of the God of Jacob. He ordained it as a testimony for Joseph 6 when he went out over the land of Egypt, where I heard an unfamiliar language: They do not know or understand; they wander in the darkness; all the foundations of the earth are d shaken. 6 I have said, ‘You are gods; 7 “I relieved his shoulder of the burden; 7 his hands were freed from the basket. You called out in distress, and I rescued you; b 8 you are all sons of the Most High.’ But like mortals you will die, and like rulers you will fall.” I answered you from the cloud of thunder; Selah I tested you at the waters of Meribah. 8 Hear, O My people, and I will warn you: 9 10 O Israel, if only you would listen to Me! There must be no strange god among you, nor shall you bow to a foreign god. I am the LORD your God, who brought you up out of Egypt. 11 Open wide your mouth, and I will fill it. 12 But My people would not listen to Me, and Israel would not obey Me. 13 So I gave them up to their stubborn hearts to follow their own devices. 14 If only My people would listen to Me, if Israel would follow My ways, 15 how soon I would subdue their enemies and turn My hand against their foes! Those who hate the LORD would feign 16 obedience, and their doom would last forever. But I would feed you the finest wheat; with honey from the rock I would satisfy you.” Psalm 82 God Presides in the Divine Assembly Arise, O God, judge the earth, for all the nations are Your inh" + }, + { + "verseNum": 16, + "text": "16 11 Cover their faces with shame, 17 that they may seek Your name, O LORD. For the LORD God is a sun and a shield; the LORD gives grace and glory; May they be ever ashamed and terrified; 18 may they perish in disgrace. May they know that You alone, whose name is the LORD, are Most High over all the earth. Psalm 84 Better Is One Day in Your Courts" + } + ] + }, + { + "chapterNum": 84, + "verses": [ + { + "verseNum": 1, + "text": "–12) of the desire or will of man, but born of God. 14 11 13 b c The Word became flesh and made His dwelling We have seen His glory, the glory of from the Father, full of among us. the one and only Son 15 grace and truth. John testified concerning Him. He cried out, saying, “This is He of whom I said, ‘He who comes after me has surpassed me because He was be- 16 fore me.’ ” 17 From His fullness we have all received grace For the law was given through Mo- upon grace. 18 ses; grace and truth came through Jesus Christ. No one has ever seen God, but the one and only is at the Father’s d e Son, who is Himself God and comprehended a 5 side, has made Him known. only begotten God, who g 26 b 14 Or in Or ; BYZ and TR Or 19 20 And this was John’s testimony when the Jews of Jerusalem sent priests and Levites to ask him, “Who are you?” He did not refuse to confess, 21 but openly declared, “I am not the Christ.” “Then who are you?” they inquired. “Are you Elijah?” He said, “I am not.” “Are you the Prophet?” 22 He answered, “No.” So they said to him, “Who are you? We need an answer for those who sent us. What do you say 23 about yourself?” John replied in the words of Isaiah the prophet: “I am a voice of one calling in the wilderness, f ‘Make straight the way for the Lord.’ ” 24 25 Then the Pharisees who had been sent asked him, “Why then do you baptize, if you are not the g 26 Christ, nor Elijah, nor the Prophet?” 27 “I baptize with water,” John replied, “but He is among you stands One yo" + } + ] + }, + { + "chapterNum": 88, + "verses": [ + { + "verseNum": 1, + "text": ". the fortunes of His people is probably a musical or liturgical LXX Cited in" + }, + { + "verseNum": 5, + "text": "| 543 Show me a sign of Your goodness, that my enemies may see and be ashamed; for You, O LORD, have helped me and Psalm 87 The LORD Loves the Gates of Zion comforted me. A Psalm of the sons of Korah. A song. 1 He has founded His city 2 on the holy mountains. a The LORD loves the gates of Zion 3 more than all the dwellings of Jacob. Glorious things are ascribed to you, 4 O city of God. b Selah “I will mention Rahab and Babylon c among those who know Me— along with Philistia, Tyre, and Cush 5 — when I say, ‘This one was born in Zion.’ ” And it will be said of Zion: “This one and that one were born in her, and the Most High Himself will establish her.” 6 The LORD will record in the register of the peoples: 7 “This one was born in Zion.” Selah Singers and pipers will proclaim, “All my springs of joy are in You.” Psalm 88 I Cry Out before You A song. A Psalm of the sons of Korah. For the choirmaster. According to Mahalath Leannoth.d A Maskil e of Heman the Ezrahite. 1 O LORD, the God of my salvation, 2 day and night I cry out before You. May my prayer come before You; incline Your ear to my cry. For my soul is full of troubles, 3 4 and my life draws near to Sheol. But You, O Lord, are a compassionate and I am counted among those descending to the gracious God, 16 slow to anger, abounding in loving devotion and faithfulness. Turn to me and have mercy; grant Your strength to Your servant; His foundation is on the holy mountains save the son of Your maidservant. b 4 Rahab a 1 d 1 Ma" + }, + { + "verseNum": 6, + "text": "6 3 8 10 11 7 You have laid me in the lowest Pit, in the darkest of the depths. Your wrath weighs heavily upon me; all Your waves have submerged me. Selah You said, “I have made a covenant with 4 My chosen one, I have sworn to David My servant: ‘I will establish your offspring forever and build up your throne for all Selah You have removed my friends from me; 5 generations.’ ” You have made me repulsive 9 to them; I am confined and cannot escape. The heavens praise Your wonders, O LORD— My eyes grow dim with grief. I call to You daily, O LORD; I spread out my hands to You. Do You work wonders for the dead? Selah Do departed spirits rise up to praise You? 6 Your faithfulness as well— in the assembly of the holy ones. c For who in the skies can compare with the LORD? 7 Who among the heavenly beings is like the LORD? Can Your loving devotion be proclaimed a 12 in the grave, Your faithfulness in Abaddon ? Will Your wonders be known in the darkness, 8 In the council of the holy ones, God is greatly feared, and awesome above all who surround Him. 13 or Your righteousness in the land of oblivion? But to You, O LORD, I cry for help; 14 in the morning my prayer comes before You. Why, O LORD, do You reject me? Why do You hide Your face 15 from me? From my youth I was afflicted and near 16 death. I have borne Your terrors; I am in despair. 17 Your wrath has swept over me; 18 Your terrors have destroyed me. All day long they engulf me like water; they enclose me on every side. You have r" + } + ] + }, + { + "chapterNum": 89, + "verses": [ + { + "verseNum": 52, + "text": "| 545 20 “I have bestowed help on a warrior; Now, however, You have spurned and I have exalted one chosen from the people. 39 rejected him; 21 I have found My servant David; You are enraged by Your anointed one. with My sacred oil I have anointed him. You have renounced the covenant with My hand will sustain him; 22 surely My arm will strengthen him. 23 No enemy will exact tribute; no wicked man will oppress him. 24 I will crush his foes before him and strike down those who hate him. My faithfulness and loving devotion will be with him, 40 Your servant and sullied his crown in the dust. You have broken down all his walls; 41 You have reduced his strongholds to rubble. All who pass by plunder him; 42 he has become a reproach to his neighbors. 25 and through My name his horn will be You have exalted the right hand of his exalted. 43 foes; 26 I will set his hand over the sea, and his right hand upon the rivers. He will call to Me, ‘You are my Father, my God, the Rock of my salvation.’ 27 28 I will indeed appoint him as My firstborn, the highest of the kings of the earth. I will forever preserve My loving devotion for 29 him, and My covenant with him will stand fast. I will establish his line forever, 30 his throne as long as the heavens endure. 31 If his sons forsake My law and do not walk in My judgments, 32 if they violate My statutes and fail to keep My commandments, I will attend to their transgression with the 33 rod, and to their iniquity with stripes. But I will not withd" + } + ] + }, + { + "chapterNum": 90, + "verses": [ + { + "verseNum": 4, + "text": ". the Lord and Savior Jesus Christ j 10 will be found Or dissolved will be unable to hide f 22 Or . BYZ and TR ; SBL, NE, and WH , i.e., . ; also in verses 11 and 12. Or k 10" + } + ] + }, + { + "chapterNum": 91, + "verses": [ + { + "verseNum": 11, + "text": "–12" + } + ] + }, + { + "chapterNum": 93, + "verses": [ + { + "verseNum": 1, + "text": "–5) 1 The LORD reigns; let the nations tremble! He is enthroned above the cherubim; 2 let the earth quake! Great is the LORD in Zion; 3 He is exalted above all the peoples. Let them praise Your great and awesome b name— 4 He is holy! c The mighty King loves justice. You have established equity; You have exercised justice 5 and righteousness in Jacob. Exalt the LORD our God, 6 and worship at His footstool; He is holy! A Psalm. 1 Sing to the LORD a new song, for He has done wonders; His right hand and holy arm 2 have gained Him the victory. The LORD has proclaimed His salvation and revealed His righteousness to the 3 nations. He has remembered His love and faithfulness Moses and Aaron were among His priests; Samuel was among those who called on His name. 7 They called to the LORD and He answered. He spoke to them from the pillar of cloud; 8 they kept His decrees and the statutes He gave them. O LORD our God, You answered them. You were a forgiving God to them, yet an avenger of their misdeeds. 9 to the house of Israel; Exalt the LORD our God all the ends of the earth a 11 c 4 have seen the salvation of our God. The might of the King loves justice. and worship at His holy mountain, it is holy! Light is sown for the LORD our God is holy. b 3 One Hebrew manuscript, LXX, Syriac, and Vulgate; most Hebrew manuscripts Or Or 550 |" + } + ] + }, + { + "chapterNum": 94, + "verses": [ + { + "verseNum": 11, + "text": "That is, Peter BYZ and TR BYZ and TR Or Expel the Immoral Brother 12 1 Corinthians 7:7 | 1025 9 10 11 I wrote you in my letter not to associate with sexually immoral people. I was not including the sexually immoral of this world, or the greedy and swindlers, or idolaters. In that case you would have to leave this But now I am writing you not to associate with anyone who claims to be a brother but is sexually immoral or greedy, an idolater or a verbal abuser, a drunk- ard or a swindler. With such a man do not even 12 eat. world. 13 What business of mine is it to judge those out- side the church? Are you not to judge those in- side? God will judge those outside. “Expel the Lawsuits among Believers wicked man from among you.” a 6 2 If any of you has a grievance against another, how dare he go to law before the unright- eous instead of before the saints! Do you not know that the saints will judge the world? And if you are to judge the world, are you not compe- Do you not know that tent to judge trivial cases? we will judge angels? How much more the things 4 of this life! 3 5 So if you need to settle everyday matters, do you appoint as judges those of no standing in I say this to your shame. Is there re- the church? 6 ally no one among you wise enough to arbitrate between his brothers? Instead, one brother goes to law against another, and this in front of 7 unbelievers! 8 The very fact that you have lawsuits among you means that you are thoroughly defeated already. Why not rather" + }, + { + "verseNum": 13, + "text": "| 547 Psalm 93 The LORD Reigns!" + }, + { + "verseNum": 14, + "text": "14 10 For the LORD will not forsake His people; He will never abandon His heritage. Surely judgment will again be righteous, 15 16 For forty years I was angry with that generation, d and I said, “They are a people whose and all the upright in heart will follow it. 11 hearts go astray, 20 21 22 23 Who will rise up for me against the wicked? 17 Who will stand for me against the workers of iniquity? Unless the LORD had been my helper, 18 I would soon have dwelt in the abode of silence. If I say, “My foot is slipping,” 19 Your loving devotion, O LORD, supports me. When anxiety overwhelms me, Your consolation delights my soul. Can a corrupt throne be Your ally— one devising mischief by decree? They band together against the righteous and condemn the innocent to death. But the LORD has been my stronghold, and my God is my rock of refuge. a He will bring upon them their own iniquity and destroy them for their wickedness. Psalm 95 The LORD our God will destroy them. Do Not Harden Your Hearts" + } + ] + }, + { + "chapterNum": 95, + "verses": [ + { + "verseNum": 1, + "text": "–11) 7 Therefore, as the Holy Spirit says: 8 “Today, if you hear His voice, do not harden your hearts, as you did in the rebellion, 9 in the day of testing in the wilderness, 10 where your fathers tested and tried Me, and for forty years saw My works. Therefore I was angry with that generation, and I said, ‘Their hearts are always going astray, 11 and they have not known My ways.’ i So I swore on oath in My anger, The Peril of Unbelief ‘They shall never enter My rest.’ ” 12 13 See to it, brothers, that none of you has a wicked heart of unbelief that turns away from But exhort one another daily, as the living God. long as it is called today, so that none of you may 14 be hardened by sin’s deceitfulness. We have come to share in Christ if we hold 15 firmly to the end the assurance we had at first. As it has been said: “Today, if you hear His voice, do not harden your hearts, j as you did in the rebellion.” 16 17 For who were the ones who heard and re- belled? Were they not all those Moses led out of And with whom was God angry for Egypt? forty years? Was it not with those who sinned, whose bodies fell in the wilderness? And to whom did He swear that they would never enter His rest? Was it not to those who diso- So we see that it was because of their beyed? unbelief that they were unable to enter. c 13 to make pro- e 17 18 19 just as Moses in His house d 13 g 5 ; SBL j 15" + }, + { + "verseNum": 7, + "text": "–11 (see also LXX)" + }, + { + "verseNum": 11, + "text": "; also in verse 5 g 12 of the oracles of God" + } + ] + }, + { + "chapterNum": 96, + "verses": [ + { + "verseNum": 1, + "text": "–13) 23 Sing to the LORD, all the earth. 24 Proclaim His salvation day after day. 25 Declare His glory among the nations, His wonders among all peoples. For great is the LORD, and greatly to be 26 praised; He is to be feared above all gods. For all the gods of the nations are idols, 27 but it is the LORD who made the heavens. Splendor and majesty are before Him; strength and joy fill His dwelling. He remembers Or Hebrew; some LXX manuscripts ; see" + } + ] + }, + { + "chapterNum": 98, + "verses": [ + { + "verseNum": 1, + "text": "–9 ;" + } + ] + }, + { + "chapterNum": 99, + "verses": [ + { + "verseNum": 1, + "text": "–9) 1 The LORD reigns! He is robed in majesty; the LORD has clothed and armed Himself with strength. The world indeed is firmly established; 2 it cannot be moved. 3 Your throne was established long ago; You are from all eternity. The floodwaters have risen, O LORD; the rivers have raised their voice; the seas lift up their pounding waves. 4 Above the roar of many waters— 5 the mighty breakers of the sea— the LORD on high is majestic. Your testimonies are fully confirmed; holiness adorns Your house, O LORD, Psalm 94 for all the days to come. The LORD Will Not Forget His People 1 O LORD, God of vengeance, 2 O God of vengeance, shine forth. Rise up, O Judge of the earth; 3 render a reward to the proud. How long will the wicked, O LORD, how long will the wicked exult? 4 5 6 They pour out arrogant words; all workers of iniquity boast. They crush Your people, O LORD; they oppress Your heritage. They kill the widow and the foreigner; 7 they murder the fatherless. They say, “The LORD does not see; the God of Jacob pays no heed.” 8 Take notice, O senseless among the people! 9 O fools, when will you be wise? 10 He who affixed the ear, can He not hear? He who formed the eye, can He not see? He who admonishes the nations, does He not discipline? 11 He who teaches man, does He lack knowledge? b The LORD knows the thoughts of man, 12 that they are futile. 13 Blessed is the man You discipline, O LORD, and teach from Your law, a 11 Rock, my ears hear evildoers when they rise against me and i" + }, + { + "verseNum": 9, + "text": "| 549 4 Make a joyful noise to the LORD, all the earth; break forth—let your cry ring out, and 5 sing praises! 6 Sing praises to the LORD with the lyre, in melodious song with the harp. Clouds and darkness surround Him; 3 righteousness and justice are His throne’s With trumpets and the blast of the ram’s horn shout for joy before the LORD, the King. 7 foundation. Fire goes before Him 4 and consumes His foes on every side. 5 His lightning illuminates the world; the earth sees and trembles. The mountains melt like wax 6 at the presence of the LORD, before the Lord of all the earth. The heavens proclaim His righteousness; 7 all the peoples see His glory. All worshipers of images are put to shame— 8 those who boast in idols. Worship Him, all you gods! Zion hears and rejoices, 9 and the towns of Judah exult because of Your judgments, O LORD. For You, O LORD, are Most High over all 10 the earth; You are exalted far above all gods. Hate evil, O you who love the LORD! He preserves the souls of His saints; He delivers them from the hand of the a 11 wicked. 12 Light shines on the righteous, gladness on the upright in heart. Rejoice in the LORD, you righteous ones, and praise His holy name. Psalm 98 Sing to the LORD a New Song" + } + ] + }, + { + "chapterNum": 100, + "verses": [ + { + "verseNum": 1, + "text": "–5) For the choirmaster. A song. A Psalm. 1 1 Praise awaits You, O God, in Zion; 2 to You our vows will be fulfilled. O You who listen to prayer, 3 all people will come to You. When iniquities prevail against me, 4 You atone for our transgressions. Blessed is the one You choose and bring near to dwell in Your courts! We are filled with the goodness of Your house, Make a joyful noise to God, 2 all the earth! Sing the glory of His name; 3 make His praise glorious. Say to God, “How awesome are Your deeds! 4 So great is Your power that Your enemies cower before You. All the earth bows down to You; they sing praise to You; they sing praise to Your name.” Selah 5 the holiness of Your temple. 5 With awesome deeds of righteousness You answer us, O God of our salvation, the hope of all the ends of the earth 6 and of the farthest seas. 7 You formed the mountains by Your power, having girded Yourself with might. 8 You stilled the roaring of the seas, the pounding of their waves, and the tumult of the nations. Those who live far away fear Your wonders; a Come and see the works of God; 6 how awesome are His deeds toward mankind. He turned the sea into dry land; 7 they passed through the waters on foot; there we rejoiced in Him. He rules forever by His power; His eyes watch the nations. Do not let the rebellious exalt Selah themselves. 8 You make the dawn and sunset shout 9 for joy. b Bless our God, O peoples; 9 let the sound of His praise be heard. You attend to the earth and water it; wi" + } + ] + }, + { + "chapterNum": 102, + "verses": [ + { + "verseNum": 25, + "text": "–27 f 7" + } + ] + }, + { + "chapterNum": 103, + "verses": [ + { + "verseNum": 22, + "text": "| 551 Let this be written for the generation to come, 19 so that a people not yet created may praise the LORD. For He looked down from the heights of His 20 sanctuary; the LORD gazed out from heaven to earth to hear a prisoner’s groaning, 21 to release those condemned to death, that they may proclaim the name of the LORD 22 in Zion and praise Him in Jerusalem, when peoples and kingdoms assemble 23 The LORD executes righteousness 7 and justice for all the oppressed. He made known His ways to Moses, His deeds to the people of Israel. 8 The LORD is compassionate and gracious, slow to anger, abounding in loving 9 devotion. 10 He will not always accuse us, nor harbor His anger forever. 11 He has not dealt with us according to our sins or repaid us according to our iniquities. For as high as the heavens are above the earth, to serve the LORD. 12 so great is His loving devotion for those He has broken my strength on the way; 24 He has cut short my days. I say: “O my God, do not take me in the midst 25 of my days! Your years go on through all generations. In the beginning You laid the foundations of the earth, 26 and the heavens are the work of Your hands. They will perish, but You remain; they will all wear out like a garment. 27 Like clothing You will change them, and they will be passed on. a But You remain the same, 28 and Your years will never end. The children of Your servants will dwell securely, and their descendants will be established before You.” Psalm 103 Bless the LORD," + } + ] + }, + { + "chapterNum": 104, + "verses": [ + { + "verseNum": 1, + "text": "Psalm 104 How Many Are Your Works, O LORD! 1 Bless the LORD, O my soul! O LORD my God, You are very great; 2 You are clothed with splendor and majesty. 3 He wraps Himself in light as with a garment; He stretches out the heavens like a tent, laying the beams of His chambers in the waters above, making the clouds His chariot, 4 a walking on the wings of the wind. He makes the winds His messengers, 5 flames of fire His servants. He set the earth on its foundations, 6 never to be moved. 7 You covered it with the deep like a garment; the waters stood above the mountains. At Your rebuke the waters fled; 8 at the sound of Your thunder they hurried away— 9 the mountains rose and the valleys sank to the place You assigned for them— You set a boundary they cannot cross, 10 that they may never again cover the earth. He sends forth springs in the valleys; they flow between the mountains. They give drink to every beast of the field; the wild donkeys quench their thirst. The birds of the air nest beside the springs; 11 12 13 they sing among the branches. He waters the mountains from His chambers; the earth is satisfied by the fruit of His 14 works. He makes the grass grow for the livestock and provides crops for man to cultivate, bringing forth food from the earth: 15 wine that gladdens the heart of man, oil that makes his face to shine, and bread that sustains his heart. The trees of the LORD have their fill, 16 17 19 20 He made the moon to mark the seasons; the sun knows when to set. 21" + }, + { + "verseNum": 4, + "text": "(see also LXX)" + } + ] + }, + { + "chapterNum": 105, + "verses": [ + { + "verseNum": 1, + "text": "–15) 6 7 On that day David first committed to Asaph and his associates this song of thanksgiving to the LORD: a 3 a portion of meat b 15 “Give thanks to the LORD; call upon His name; 9 make known His deeds among the nations. Sing to Him, sing praises to Him; 10 tell of all His wonders. Glory in His holy name; 11 let the hearts of those who seek the LORD rejoice. Seek out the LORD and His strength; 12 seek His face always. Remember the wonders He has done, His marvels, and the judgments He 13 has pronounced, O offspring of His servant Israel, 14 O sons of Jacob, His chosen ones. He is the LORD our God; b 15 His judgments carry throughout the earth. His covenant forever, Remember 16 the word He ordained for a thousand generations— the covenant He made with Abraham, and the oath He swore to Isaac. He confirmed it to Jacob as a decree, 17 18 to Israel as an everlasting covenant: ‘I will give you the land of Canaan 19 as the portion of your inheritance.’ When they were few in number, 20 few indeed, and strangers in the land, 21 they wandered from nation to nation, from one kingdom to another. He let no man oppress them; 22 He rebuked kings on their behalf: ‘Do not touch My anointed ones! Do no harm to My prophets!’ Sing to the LORD, All the Earth" + }, + { + "verseNum": 8, + "text": ". 28 42 1 Chronicles 17:13 | 389 Ascribe to the LORD, O families of the 29 nations, ascribe to the LORD glory and strength. Ascribe to the LORD the glory due His name; bring an offering and come before Him. 30 Worship the LORD in the splendor of His holiness; tremble before Him, all the earth. The world is firmly established; 31 it cannot be moved. Let the heavens be glad, and the earth rejoice. 32 Let them say among the nations, ‘The LORD reigns!’ Let the sea resound, and all that fills it; 33 let the fields exult, and all that is in them. Then the trees of the forest will sing for joy 34 before the LORD, 35 for He is coming to judge the earth. Give thanks to the LORD, for He is good; endures forever. His loving devotion a Then cry out: ‘Save us, O God of our salvation; gather and deliver us from the nations, that we may give thanks to Your holy name, that we may glory in Your praise.’ 36 Blessed be the LORD, the God of Israel, from everlasting to everlasting.” Then all the people said, “Amen!” and “Praise the Worship before the Ark LORD!” 37 38 So David left Asaph and his associates there before the ark of the covenant of the LORD, to minister there regularly according to the daily along with Obed-edom and his requirements, sixty-eight relatives. Obed-edom son of Jedu- 39 thun, and also Hosah, were to be gatekeepers. b Heman and Jeduthun had with them trumpets and cymbals for the music and instruments for And the sons of Jeduthun were the songs of God. 43 stationed at the g" + }, + { + "verseNum": 44, + "text": "| 553 22 b to instruct his princes as he pleased 23 and teach his elders wisdom. Then Israel entered Egypt; 24 Give thanks to the LORD, call upon His name; Jacob dwelt in the land of Ham. 2 make known His deeds among the And the LORD made His people very fruitful, 25 nations. Sing to Him, sing praises to Him; 3 tell of all His wonders. Glory in His holy name; more numerous than their foes, whose hearts He turned to hate His people, 26 to conspire against His servants. He sent Moses His servant, 27 4 let the hearts of those who seek the LORD and Aaron, whom He had chosen. rejoice. Seek out the LORD and His strength; 5 seek His face always. Remember the wonders He has done, They performed His miraculous signs among 28 them, and wonders in the land of Ham. He sent darkness, and it became dark— c 6 His marvels, and the judgments He has 29 yet they defied His words. pronounced, 7 O offspring of His servant Abraham, O sons of Jacob, His chosen ones. He is the LORD our God; 8 His judgments carry throughout the earth. He remembers His covenant forever, 9 the word He ordained for a thousand generations— 10 11 the covenant He made with Abraham, and the oath He swore to Isaac. He confirmed it to Jacob as a decree, to Israel as an everlasting covenant: 12 “I will give you the land of Canaan as the portion of your inheritance.” 13 When they were few in number, few indeed, and strangers in the land, 14 they wandered from nation to nation, from one kingdom to another. 15 He let no man oppre" + }, + { + "verseNum": 45, + "text": "45 16 that they might keep His statutes a and obey His laws. Hallelujah! Psalm 106 Give Thanks to the LORD, for He Is Good 1 b Hallelujah! Give thanks to the LORD, for He is good; 2 His loving devotion endures forever. Who can describe the mighty acts of the 3 LORD or fully proclaim His praise? Blessed are those who uphold justice, who practice righteousness at all times. 4 Remember me, O LORD, in Your favor to Your 5 people; In the camp they envied Moses, 17 as well as Aaron, the holy one of the LORD. 18 The earth opened up and swallowed Dathan; it covered the assembly of Abiram. Then fire blazed through their company; 19 d flames consumed the wicked. 20 At Horeb they made a calf e and worshiped a molten image. 21 They exchanged their Glory for the image of a grass-eating ox. 22 They forgot God their Savior, who did great things in Egypt, wondrous works in the land of Ham, 23 and awesome deeds by the Red Sea. So He said He would destroy them— had not Moses His chosen one visit me with Your salvation, 24 stood before Him in the breach that I may see the prosperity of Your chosen to divert His wrath from destroying them. ones, 6 and rejoice in the gladness of Your nation, and give glory with Your inheritance. We have sinned like our fathers; 7 we have done wrong and acted wickedly. Our fathers in Egypt did not grasp Your wonders or remember Your abundant kindness; c but they rebelled by the sea, 8 there at the Red Sea. 25 They despised the pleasant land; they did not believe H" + } + ] + }, + { + "chapterNum": 106, + "verses": [ + { + "verseNum": 48, + "text": "| 555 37 They worshiped their idols, which became a snare to them. 38 They sacrificed their sons and their daughters to demons. They shed innocent blood— the blood of their sons and daughters, whom they sacrificed to the idols of Canaan, and the land was polluted with blood. They defiled themselves by their actions and prostituted themselves by their 39 40 deeds. So the anger of the LORD burned against His 41 people, and He abhorred His own inheritance. He delivered them into the hand of the nations, 42 and those who hated them ruled over them. Their enemies oppressed them Many times He rescued them, 44 but they were bent on rebellion and sank down in their iniquity. 45 Nevertheless He heard their cry; He took note of their distress. And He remembered His covenant with them, 46 and relented by the abundance of His loving devotion. 47 He made them objects of compassion to all who held them captive. Save us, O LORD our God, and gather us from the nations, that we may give thanks to Your holy name, 48 that we may glory in Your praise. Blessed be the LORD, the God of Israel, from everlasting to everlasting. Let all the people say, “Amen!” and subdued them under their hand. Hallelujah! BOOK V Psalms 107–150 Psalm 107 Thanksgiving for Deliverance (Matt. 8:23–27 ;" + } + ] + }, + { + "chapterNum": 107, + "verses": [ + { + "verseNum": 1, + "text": "–43 ;" + } + ] + }, + { + "chapterNum": 108, + "verses": [ + { + "verseNum": 1, + "text": "–13 ;" + } + ] + }, + { + "chapterNum": 109, + "verses": [ + { + "verseNum": 8, + "text": "Or ; cited in is 2,000 cubits (approximately 3,000 feet or 914.4 meters) Psalm The Holy Spirit at Pentecost" + }, + { + "verseNum": 15, + "text": "| 557 35 10 36 He turns a desert into pools of water 11 Who will bring me to the fortified city? and a dry land into flowing springs. He causes the hungry to settle there, Who will lead me to Edom? Have You not rejected us, O God? 37 that they may establish a city in which to 12 Will You no longer march out, O God, with dwell. our armies? 38 They sow fields and plant vineyards 13 Give us aid against the enemy, that yield a fruitful harvest. 39 40 He blesses them, and they multiply greatly; He does not let their herds diminish. When they are decreased and humbled by oppression, evil, and sorrow, He pours out contempt on the nobles 41 and makes them wander in a trackless wasteland. 42 But He lifts the needy from affliction and increases their families like flocks. The upright see and rejoice, 43 and all iniquity shuts its mouth. Let him who is wise pay heed to these things and consider the loving devotion of the LORD. Psalm 108 Israel’s Kingdom Blessing" + }, + { + "verseNum": 16, + "text": "16 For he never thought to show kindness, but pursued the poor and needy and 17 brokenhearted, even to their death. The cursing that he loved, may it fall on him; the blessing in which he refused to delight, 18 may it be far from him. The cursing that he wore like a coat, 19 may it soak into his body like water, and into his bones like oil. 20 May it be like a robe wrapped about him, like a belt tied forever around him. May this be the LORD’s reward to my accusers, 21 to those who speak evil against me. But You, O GOD, the Lord, deal kindly with me for the sake of Your name; 22 deliver me by the goodness of Your loving devotion. For I am poor and needy; 23 my heart is wounded within me. I am fading away like a lengthening shadow; 24 I am shaken off like a locust. My knees are weak from fasting, 25 and my body grows lean and gaunt. I am an object of scorn to my accusers; when they see me, they shake their 26 heads. Help me, O LORD my God; 27 save me according to Your loving devotion. 28 Let them know that this is Your hand, that You, O LORD, have done it. Though they curse, You will bless. Psalm 110 God’s Faithful Messiah" + } + ] + }, + { + "chapterNum": 110, + "verses": [ + { + "verseNum": 1, + "text": "–7 ;" + }, + { + "verseNum": 4, + "text": "Or 1078 |" + } + ] + }, + { + "chapterNum": 112, + "verses": [ + { + "verseNum": 1, + "text": "–10) 2 A song of ascents. 3 O Lord, hear my voice; let Your ears be attentive to my plea for mercy. 1 2 Blessed are all who fear the LORD, who walk in His ways! 3 For when you eat the fruit of your labor, blessings and prosperity will be yours. Your wife will be like a fruitful vine flourishing within your house, your sons like olive shoots 4 sitting around your table. 5 In this way indeed shall blessing come to the man who fears the LORD. May the LORD bless you from Zion, that you may see the prosperity of 6 Jerusalem all the days of your life, that you may see your children’s children. Psalm 129 The Cords of the Wicked Peace be upon Israel! A song of ascents. 1 Many a time they have persecuted me from 2 my youth— let Israel now declare— many a time they have persecuted me from 3 my youth, but they have not prevailed against me. 4 The plowmen plowed over my back; they made their furrows long. The LORD is righteous; 5 He has cut me from the cords of the wicked. 6 May all who hate Zion be turned back in shame. 7 8 May they be like grass on the rooftops, which withers before it can grow, unable to fill the hands of the reaper, or the arms of the binder of sheaves. May none who pass by say to them, “The blessing of the LORD be on you; Psalm 130 we bless you in the name of the LORD.” Out of the Depths A song of ascents. 4 5 If You, O LORD, kept track of iniquities, then who, O Lord, could stand? But with You there is forgiveness, so that You may be feared. 6 I wait for the LORD;" + }, + { + "verseNum": 9, + "text": "" + } + ] + }, + { + "chapterNum": 113, + "verses": [ + { + "verseNum": 1, + "text": "–9) 12 1 a b Now there was a man named Elkanah who in the hill was from Ramathaim-zophim country of Ephraim. He was the son of Jeroham, 2 the son of Tohu, the son of the son of Elihu, He had two wives, one Zuph, an Ephraimite. named Hannah and the other Peninnah. And 3 Peninnah had children, but Hannah had none. 4 Year after year Elkanah would go up from his city to worship and sacrifice to the LORD of Hosts at Shiloh, where Eli’s two sons, Hophni and And when- Phinehas, were priests to the LORD. ever the day came for Elkanah to present his sacrifice, he would give portions to his wife But Peninnah and to all her sons and daughters. to Hannah he would give a double portion, for he loved her even though the LORD had closed 6 her womb. 5 c 7 Because the LORD had closed Hannah’s womb, her rival would provoke her viciously to taunt her. And this went on year after year. Whenever Hannah went up to the house of the LORD, her rival taunted her until she wept and would not 8 eat. “Hannah, why are you crying?” her husband Elkanah asked. “Why won’t you eat? Why is your heart so grieved? Am I not better to you than ten Hannah Prays for a Son sons?” 9 So after they had finished eating and drinking in Shiloh, Hannah stood up. Now Eli the priest was sitting on a chair by the doorpost of the temple of 10 the LORD. 11 In her bitter distress, Hannah prayed to the LORD and wept with many tears. And she made a vow, saying, “O LORD of Hosts, if only You will look upon the affliction of Your maid" + } + ] + }, + { + "chapterNum": 115, + "verses": [ + { + "verseNum": 1, + "text": "| 559 Psalm 113 The LORD Exalts the Humble (1 Samuel 1:1–8) 1 c Hallelujah! 2 3 Give praise, O servants of the LORD; praise the name of the LORD. Blessed be the name of the LORD both now and forevermore. From where the sun rises to where it sets, 4 the name of the LORD is praised. The fear of the LORD is the beginning of The LORD is exalted over all the nations, 5 wisdom; all who follow His precepts gain rich understanding. Psalm 112 His praise endures forever! The Blessed Fear of the LORD" + }, + { + "verseNum": 2, + "text": "2 because of Your loving devotion, because of Your faithfulness. 3 Why should the nations say, “Where is their God?” Our God is in heaven; He does as He pleases. 4 8 9 14 15 16 5 Their idols are silver and gold, made by the hands of men. 6 They have mouths, but cannot speak; they have eyes, but cannot see; they have ears, but cannot hear; 7 they have noses, but cannot smell; they have hands, but cannot feel; a they have feet, but cannot walk; they cannot even clear their throats. Those who make them become like them, b as do all who trust in them. O Israel, 10 trust in the LORD! He is their help and shield. O house of Aaron, trust in the LORD! 11 He is their help and shield. You who fear the LORD, trust in the LORD! 12 He is their help and shield. The LORD is mindful of us; He will bless us. He will bless the house of Israel; 13 He will bless the house of Aaron; He will bless those who fear the LORD— small and great alike. May the LORD give you increase, both you and your children. May you be blessed by the LORD, the Maker of heaven and earth. 17 The highest heavens belong to the LORD, but the earth He has given to mankind. 18 It is not the dead who praise the LORD, nor any who descend into silence. But it is we who will bless the LORD, c both now and forevermore. 3 The ropes of death entangled me; 4 the anguish of Sheol overcame me; I was confronted by trouble and sorrow. 5 Then I called on the name of the LORD: “O LORD, deliver my soul!” 6 The LORD is gracious and righteous" + } + ] + }, + { + "chapterNum": 116, + "verses": [ + { + "verseNum": 10, + "text": "(see also LXX) SBL 1038 | 2 Corinthians 6:1 Paul’s Hardships and God’s Grace 18 6 a 2 And: As God’s fellow workers, not to receive God’s grace in vain. then, we urge you For He says: b “In the time of favor I heard you, and in the day of salvation I helped you.” Behold, now is the time of favor; now is the day 3 of salvation! We put no obstacle in anyone’s way, so that no 4 one can discredit our ministry. 7 5 Rather, as servants of God we commend our- selves in every way: in great endurance; in trou- bles, hardships, and calamities; in beatings, 6 imprisonments, and riots; in labor, sleepless nights, and hunger; in purity, knowledge, patience, and kindness; in the Holy Spirit and in sincere love; in truthful speech and in the power of God; with the weapons of righteous- ness in the right hand and in the left; through glory and dishonor, slander and praise; viewed as imposters, yet genuine; unknown, yet well- 10 known; dying, and yet we live on; punished, yet not killed; sorrowful, yet always rejoicing; poor, yet making many rich; having nothing, and 11 yet possessing everything. 8 9 12 We have spoken freely to you, Corinthians. 13 Our hearts are open wide. It is not our affec- tion, but yours, that is restrained. As a fair exchange—I speak as to my children—open Do Not Be Unequally Yoked wide your hearts also. 14 c 15 Do not be unequally yoked with unbelievers. For what partnership can righteousness have with wickedness? Or what fellowship does light What harmony is there hav" + } + ] + }, + { + "chapterNum": 117, + "verses": [ + { + "verseNum": 1, + "text": "" + } + ] + }, + { + "chapterNum": 118, + "verses": [ + { + "verseNum": 6, + "text": "(see also LXX) Grace be with all of you. d 6 Amen. g 25 James 16 17 A Greeting from James" + }, + { + "verseNum": 22, + "text": "–23 A denarius was customarily a day’s wage for a laborer; see" + }, + { + "verseNum": 25, + "text": "; also in verse 15. BYZ and TR include f 9 is a transliteration of the Hebrew e 9 Hosanna TR is similar. When Jesus had entered Jerusalem, the whole b 22 or be baptized with the baptism with city was stirred and asked, “Who is this?” and be baptized with the baptism with which I am baptized Hosia-na BYZ includes Save, we pray Save now g 9 “Hosanna in the highest . , meaning or , which" + }, + { + "verseNum": 26, + "text": "Or See" + } + ] + }, + { + "chapterNum": 119, + "verses": [ + { + "verseNum": 6, + "text": "| 561 19 Open to me the gates of righteousness, that I may enter and give thanks to 20 the LORD. 21 This is the gate of the LORD; the righteous shall enter through it. I will give You thanks, for You have answered 22 me, 23 and You have become my salvation. d The stone the builders rejected has become the cornerstone. e 24 This is from the LORD, and it is marvelous in our eyes. 25 This is the day that the LORD has made; we will rejoice and be glad in it. f O LORD, save us, we pray. We beseech You, O LORD, cause us to prosper! g Blessed is he who comes in the name of the 27 LORD. From the house of the LORD we bless you. The LORD is God; He has made His light to shine upon us. h but in the name of the LORD I cut them off. 28 Bind the festal sacrifice with cords They surrounded me on every side, but in the name of the LORD I cut 12 them off. They swarmed around me like bees, but they were extinguished like burning 13 thorns; in the name of the LORD I cut them off. 14 I was pushed so hard I was falling, but the LORD helped me. 15 The LORD is my strength and my song, and He has become my salvation. to the horns of the altar. 29 You are my God, and I will give You thanks. You are my God, and I will exalt You. Give thanks to the LORD, for He is good; His loving devotion endures forever. Psalm 119 Your Word Is a Lamp to My Feet א ALEPH 1 i Blessed 2 are those whose way is blameless, Shouts of joy and salvation resound in the who walk in the Law of the LORD. tents of the righteous: Bl" + }, + { + "verseNum": 7, + "text": "7 27 I will praise You with an upright heart 8 when I learn Your righteous judgments. 28 Make clear to me the way of Your precepts; then I will meditate on Your wonders. I will keep Your statutes; do not utterly forsake me. ב BETH 9 10 How can a young man keep his way pure? By guarding it according to Your word. With all my heart I have sought You; do not let me stray from Your 11 commandments. 12 I have hidden Your word in my heart that I might not sin against You. 13 Blessed are You, O LORD; teach me Your statutes. 14 With my lips I proclaim all the judgments of Your mouth. I rejoice in the way of Your testimonies 15 as much as in all riches. 16 I will meditate on Your precepts and regard Your ways. I will delight in Your statutes; I will not forget Your word. ג GIMEL 17 18 Deal bountifully with Your servant, that I may live and keep Your word. 19 Open my eyes that I may see wondrous things from Your law. I am a stranger on the earth; 20 do not hide Your commandments from me. 21 My soul is consumed with longing for Your judgments at all times. You rebuke the arrogant— 22 the cursed who stray from Your commandments. Remove my scorn and contempt, 23 for I have kept Your testimonies. 24 Though rulers sit and slander me, 29 My soul melts with sorrow; strengthen me according to Your word. 30 Remove me from the path of deceit and graciously grant me Your law. 31 I have chosen the way of truth; I have set Your ordinances before me. 32 I cling to Your testimonies, O LORD; let me no" + }, + { + "verseNum": 84, + "text": "| 563 which I love, and I meditate on Your statutes. ז ZAYIN 49 50 Remember Your word to Your servant, upon which You have given me hope. 51 This is my comfort in affliction, that Your promise has given me life. 52 The arrogant utterly deride me, but I do not turn from Your law. I remember Your judgments of old, 53 O LORD, and in them I find comfort. Rage has taken hold of me 54 because of the wicked who reject Your law. 55 Your statutes are songs to me in the house of my pilgrimage. 56 In the night, O LORD, I remember Your name, that I may keep Your law. This is my practice, for I obey Your precepts. ח HETH 57 58 The LORD is my portion; I have promised to keep Your words. I have sought Your face with all my heart; be gracious to me according to Your 59 promise. I considered my ways 60 and turned my steps to Your testimonies. 61 I hurried without hesitating to keep Your commandments. 62 Though the ropes of the wicked bind me, I do not forget Your law. 63 64 At midnight I rise to give You thanks for Your righteous judgments. I am a friend to all who fear You, and to those who keep Your precepts. The earth is filled with Your loving devotion, O LORD; ט teach me Your statutes. TETH 65 but now I keep Your word. 69 You are good, and You do what is good; teach me Your statutes. Though the arrogant have smeared me with 70 lies, a I keep Your precepts with all my heart. 71 Their hearts are callous and insensitive, but I delight in Your law. 72 It was good for me to be afflicted, that" + }, + { + "verseNum": 85, + "text": "85 The arrogant have dug pits for me 86 in violation of Your law. All Your commandments are faithful; 87 I am persecuted without cause—help me! They almost wiped me from the earth, 88 but I have not forsaken Your precepts. Revive me according to Your loving devotion, that I may obey the testimony of Your ל LAMEDH mouth. 89 90 Your word, O LORD, is everlasting; it is firmly fixed in the heavens. Your faithfulness continues through all 91 generations; a You established the earth, and it endures. Your ordinances stand to this day, 92 for all things are servants to You. If Your law had not been my delight, then I would have perished in my 93 affliction. I will never forget Your precepts, 94 for by them You have revived me. I am Yours; save me, 95 for I have sought Your precepts. The wicked wait to destroy me, 96 but I will ponder Your testimonies. I have seen a limit to all perfection, but Your commandment is without מ MEM limit. 97 Oh, how I love Your law! 98 All day long it is my meditation. Your commandments make me wiser than 99 my enemies, for they are always with me. I have more insight than all my teachers, 100 for Your testimonies are my meditation. 101 I discern more than the elders, for I obey Your precepts. נ NUN 105 106 Your word is a lamp to my feet and a light to my path. I have sworn and confirmed 107 that I will keep Your righteous judgments. 108 I am severely afflicted, O LORD; revive me through Your word. Accept the freewill offerings of my mouth, O 109 LORD, an" + }, + { + "verseNum": 163, + "text": "| 565 ק KOPH 145 I call with all my heart; answer me, 146 O LORD! I will obey Your statutes. 147 I call to You; save me, 148 that I may keep Your testimonies. I rise before dawn and cry for help; in Your word I have put my hope. 149 My eyes anticipate the watches of night, that I may meditate on Your word. Hear my voice, O LORD, according to Your 150 loving devotion; give me life according to Your justice. Those who follow after wickedness draw 151 near; they are far from Your law. 152 You are near, O LORD, and all Your commandments are true. Long ago I learned from Your testimonies ר that You have established them forever. RESH 153 154 Look upon my affliction and rescue me, for I have not forgotten Your law. 155 Defend my cause and redeem me; revive me according to Your word. 156 Salvation is far from the wicked because they do not seek Your statutes. 157 Great are Your mercies, O LORD; 158 revive me according to Your ordinances. Though my persecutors and foes are many, I have not turned from Your testimonies. 159 I look on the faithless with loathing because they do not keep Your word. Consider how I love Your precepts, O LORD; 160 give me life according to Your loving devotion. The entirety of Your word is truth, and all Your righteous judgments endure ש SIN and SHIN forever. 161 162 Rulers persecute me without cause, but my heart fears only Your word. 144 Trouble and distress have found me, 163 I rejoice in Your promise but Your commandments are my delight. like one who f" + }, + { + "verseNum": 164, + "text": "164 165 Seven times a day I praise You for Your righteous judgments. Abundant peace belongs to those who love 166 Your law; nothing can make them stumble. I wait for Your salvation, O LORD, 167 and I carry out Your commandments. 168 I obey Your testimonies and love them greatly. I obey Your precepts and Your testimonies, ת TAW for all my ways are before You. 169 May my cry come before You, O LORD; 170 give me understanding according to Your word. 171 May my plea come before You; rescue me according to Your promise. 172 My lips pour forth praise, for You teach me Your statutes. 173 My tongue sings of Your word, for all Your commandments are righteous. 174 175 May Your hand be ready to help me, for I have chosen Your precepts. I long for Your salvation, O LORD, and Your law is my delight. 176 Let me live to praise You; may Your judgments sustain me. I have strayed like a lost sheep; seek Your servant, for I have not forgotten Your commandments. Psalm 120 In My Distress I Cried to the LORD A song of ascents. 1 In my distress I cried to the LORD, 2 and He answered me. Deliver my soul, O LORD, from lying lips and a deceitful tongue. 3 What will He do to you, 4 and what will be added to you, O deceitful tongue? 5 Sharp arrows will come from the warrior, with burning coals of the broom tree! Woe to me that I dwell in Meshech, 6 that I live among the tents of Kedar! Too long have I dwelt 7 among those who hate peace. I am in favor of peace; a 6 be secure but when I speak, they want w" + } + ] + }, + { + "chapterNum": 127, + "verses": [ + { + "verseNum": 5, + "text": "| 567 As the eyes of servants look to the hand of their master, as the eyes of a maidservant look to the hand of her mistress, so our eyes are on the LORD our God 3 until He shows us mercy. 4 Have mercy on us, O LORD, have mercy, for we have endured much contempt. We have endured much scorn from the arrogant, Psalm 124 much contempt from the proud. Our Help Is in the Name of the LORD A song of ascents. Of David. 1 If the LORD had not been on our side— 2 let Israel now declare— if the LORD had not been on our side 3 when men attacked us, when their anger flared against us, 4 then they would have swallowed us alive, then the floods would have engulfed us, 5 then the torrent would have overwhelmed us, then the raging waters 6 would have swept us away. Blessed be the LORD, 7 who has not given us as prey to their teeth. Do good, O LORD, to those who are good, 5 and to the upright in heart. But those who turn to crooked ways the LORD will banish with the evildoers. Peace be upon Israel. Psalm 126 Zion’s Captives Restored A song of ascents. 1 a When the LORD restored the captives of b 2 Zion, we were like dreamers. Then our mouths were filled with laughter, our tongues with shouts of joy. Then it was said among the nations, 3 “The LORD has done great things for them.” 4 The LORD has done great things for us; we are filled with joy. c Restore our captives, 5 O LORD, like streams in the Negev. Those who sow in tears 6 will reap with shouts of joy. He who goes out weeping, bearing a tr" + } + ] + }, + { + "chapterNum": 128, + "verses": [ + { + "verseNum": 1, + "text": "–6) 1 a Hallelujah! Blessed is the man who fears the LORD, 2 who greatly delights in His commandments. His glory above the heavens. 6 7 Who is like the LORD our God, the One enthroned on high? He humbles Himself to behold the heavens and the earth. He raises the poor from the dust 8 and lifts the needy from the dump to seat them with nobles, 9 with the princes of His people. He settles the barren woman in her home as a joyful mother to her children. Hallelujah! Psalm 114 A Psalm of Exodus His descendants will be mighty in the land; the generation of the upright will be 3 1 blessed. Wealth and riches are in his house, 4 and his righteousness endures forever. Light dawns in the darkness for the upright— for the gracious, compassionate, and righteous. 5 It is well with the man who is generous and 6 lends freely, whose affairs are guided by justice. Surely he will never be shaken; 7 the righteous man will be remembered forever. He does not fear bad news; 8 his heart is steadfast, trusting in the LORD. 9 His heart is assured; he does not fear, b until he looks in triumph on his foes. He has scattered abroad his gifts to the poor; 10 his righteousness endures forever; his horn will be lifted high in honor. When Israel departed from Egypt, 2 the house of Jacob from a people of foreign tongue, Judah became God’s sanctuary, Israel His dominion. 4 The sea observed and fled; the Jordan turned back; the mountains skipped like rams, 5 the hills like lambs. Why was it, O sea, that you fled" + } + ] + }, + { + "chapterNum": 132, + "verses": [ + { + "verseNum": 5, + "text": "; ECM and NE" + }, + { + "verseNum": 11, + "text": "978 |" + } + ] + }, + { + "chapterNum": 135, + "verses": [ + { + "verseNum": 1, + "text": "–21) The wicked man will see and be grieved; he will gnash his teeth and waste 1 a 1 away; Hallelu YAH the desires of the wicked will perish. b 9 Praise the LORD c 1 Not to us, O LORD, not to us, but to Your name be the glory, Praise the LORD Hallelu YAH Or , meaning . This psalm is an acrostic poem, each line beginning with the successive letters of the Hebrew alphabet. Cited in 2 Corinthians 9:9 Or , meaning ; also in verse 9 560 |" + }, + { + "verseNum": 14, + "text": "h 32 Literally Or" + }, + { + "verseNum": 15, + "text": "| 569 who serve by night 2 in the house of the LORD! Lift up your hands to the sanctuary 3 and bless the LORD! May the LORD, the Maker of heaven and earth, Psalm 135 bless you from Zion. Give Praise, O Servants of the LORD" + }, + { + "verseNum": 16, + "text": "16 14 17 They have mouths, but cannot speak; they have eyes, but cannot see; they have ears, but cannot hear; 18 nor is there breath in their mouths. Those who make them become like them, 19 as do all who trust in them. O house of Israel, bless the LORD; 20 O house of Aaron, bless the LORD; O house of Levi, bless the LORD; 21 you who fear the LORD, bless the LORD! Blessed be the LORD from Zion— He who dwells in Jerusalem. Hallelujah! Psalm 136 His Loving Devotion Endures Forever (2 Chronicles 7:1–3) 1 Give thanks to the LORD, for He is good. His loving devotion endures forever. 2 Give thanks to the God of gods. His loving devotion endures forever. 3 Give thanks to the Lord of lords. His loving devotion endures forever. 4 He alone does great wonders. His loving devotion endures forever. 5 By His insight He made the heavens. His loving devotion endures forever. 6 He spread out the earth upon the waters. His loving devotion endures forever. 7 He made the great lights— His loving devotion endures forever. 8 the sun to rule the day, His loving devotion endures forever. 9 and led Israel through the midst, His loving devotion endures forever. 15 b but swept Pharaoh and his army into the His loving devotion endures forever. Red Sea. 16 He led His people through the wilderness. His loving devotion endures forever. 17 He struck down great kings His loving devotion endures forever. 18 and slaughtered mighty kings— His loving devotion endures forever. 19 Sihon king of the Amorites His lo" + } + ] + }, + { + "chapterNum": 136, + "verses": [ + { + "verseNum": 1, + "text": "–26) servant David.” And as for the foreigner who is not of Your people Israel but has come from a distant land because of Your great name and Your mighty hand and outstretched arm—when 33 he comes and prays toward this temple, then may You hear from heaven, Your dwelling place, and do according to all for which the foreigner calls to You. Then all the peoples of the earth will know Your name and fear You, as do Your people Israel, and they will know that this house I have built is 34 called by Your Name. When Your people go to war against their enemies, wherever You send them, and when they pray to You in the direction of this 35 city You have chosen and the house I have then may You hear built for Your Name, from heaven their prayer and their plea, and 36 may You uphold their cause. 37 When they sin against You—for there is no one who does not sin—and You become an- gry with them and deliver them to an enemy who takes them as captives to a land far or and when they come to their senses near, in the land to which they were taken, and 7 When Solomon had finished praying, fire came down from heaven and consumed the 2 burnt offering and the sacrifices, and the glory of the LORD filled the temple. The priests were un- able to enter the house of the LORD, because the 3 glory of the LORD had filled it. When all the Israelites saw the fire coming down and the glory of the LORD above the tem- ple, they bowed down on the pavement with their faces to the ground, and they worshiped and" + } + ] + }, + { + "chapterNum": 137, + "verses": [ + { + "verseNum": 1, + "text": "–9) 1 In the thirtieth year, on the fifth day of the fourth month, while I was among the exiles by the River Kebar, the heavens opened and I 2 saw visions of God. a 3 On the fifth day of the month—it was the fifth the word year of the exile of King Jehoiachin— b of the LORD came directly to Ezekiel the priest, the son of Buzi, in the land of the Chaldeans by the River Kebar. And there the LORD’s hand was The Four Living Creatures upon him. 4 I looked and saw a whirlwind coming from the north, a great cloud with fire flashing back and forth and brilliant light all around it. In the center and within of the fire was a gleam like amber, it was the form of four living creatures. 5 c 6 7 And this was their appearance: They had a hu- but each had four faces and four man form, wings. Their legs were straight, and the soles of their feet were like the hooves of a calf, gleaming 8 like polished bronze. 9 Under their wings on their four sides they had human hands. All four living creatures had faces and wings, and their wings were touching one another. They did not turn as they moved; each 10 one went straight ahead. The form of their faces was that of a man, and each of the four had the face of a lion on the right side, the face of an ox on the left side, and also the face of an eagle. Such were their faces. 11 Their wings were spread upward; each had two wings touching the wings of the creature on 12 either side, and two wings covering its body. Each creature went straight ahead. Whe" + } + ] + }, + { + "chapterNum": 139, + "verses": [ + { + "verseNum": 18, + "text": "| 571 Psalm 139 You Have Searched Me and Known Me For the choirmaster. A Psalm of David. 1 O LORD, You have searched me 2 and known me. You know when I sit and when I rise; 3 You understand my thoughts from afar. You search out my path and my lying down; 4 You are aware of all my ways. Even before a word is on my tongue, You know all about it, O LORD. You hem me in behind and before; 5 6 You have laid Your hand upon me. Such knowledge is too wonderful for me, too lofty for me to attain. 7 Where can I go to escape Your Spirit? 8 Where can I flee from Your presence? If I ascend to the heavens, You are there; 9 if I make my bed in Sheol, You are there. 10 11 12 If I rise on the wings of the dawn, if I settle by the farthest sea, even there Your hand will guide me; Your right hand will hold me fast. If I say, “Surely the darkness will hide me, and the light become night around me”— even the darkness is not dark to You, but the night shines like the day, b for darkness is as light to You. 13 For You formed my inmost being; 14 You knit me together in my mother’s womb. I praise You, for I am fearfully and wonderfully made. 15 Marvelous are Your works, and I know this very well. My frame was not hidden from You when I was made in secret, 16 when I was woven together in the depths of the earth. Your eyes saw my unformed body; all my days were written in Your book and ordained for me 17 before one of them came to be. c How precious to me are Your thoughts, 18 O God, how vast is their s" + }, + { + "verseNum": 19, + "text": "19 11 20 O God, that You would slay the wicked— a away from me, you bloodthirsty men— who speak of You deceitfully; 21 Your enemies take Your name in vain. Do I not hate those who hate You, O LORD, and detest those who rise against You? 22 23 I hate them with perfect hatred; I count them as my enemies. 24 Search me, O God, and know my heart; test me and know my concerns. See if there is any offensive way in me; lead me in the way everlasting. Psalm 140 Rescue Me from Evil Men For the choirmaster. A Psalm of David. 1 Rescue me, O LORD, from evil men. 2 Protect me from men of violence, 3 who devise evil in their hearts and stir up war all day long. b They sharpen their tongues like snakes; the venom of vipers is on their lips. Selah 4 Guard me, O LORD, from the hands of the wicked. Keep me safe from men of violence 5 who scheme to make me stumble. The proud hide a snare for me; the cords of their net are spread along the path, and lures are set out for me. Selah 6 7 I say to the LORD, “You are my God.” Hear, O LORD, my cry for help. May no slanderer be established in the land; 12 may calamity hunt down the man of violence. I know that the LORD upholds justice for the 13 poor and defends the cause of the needy. Surely the righteous will praise Your name; Psalm 141 the upright will dwell in Your presence. Come Quickly to Me" + } + ] + }, + { + "chapterNum": 140, + "verses": [ + { + "verseNum": 3, + "text": "as a propitiation e 14 j 8 b 12 Or" + } + ] + }, + { + "chapterNum": 141, + "verses": [ + { + "verseNum": 1, + "text": "–10) For the choirmaster. Of David. To bring remembrance. 22 and gave me vinegar to quench my thirst. c May their table become a snare; 23 may it be a retribution and a trap. d May their eyes be darkened so they cannot 24 see, and their backs be bent forever. Pour out Your wrath upon them, Make haste, O God, to deliver me! Hurry, O LORD, to help me! 2 May those who seek my life be ashamed and confounded; may those who wish me harm 3 be repelled and humiliated. May those who say, “Aha, aha!” a 9 and let Your burning anger overtake them. c 22 b 9 Cited in" + } + ] + }, + { + "chapterNum": 142, + "verses": [ + { + "verseNum": 1, + "text": "–7) 22 2 So David left Gath and took refuge in the cave of Adullam. When his brothers and the rest of his father’s household heard about it, And all who were they went down to him there. distressed or indebted or discontented rallied around him, and he became their leader. About 3 four hundred men were with him. From there David went to Mizpeh of Moab, a where he said to the king of Moab, “Please let my 4 with you until I learn father and mother stay what God will do for me.” So he left them in the care of the king of Moab, and they stayed with 5 him the whole time David was in the stronghold. Then the prophet Gad said to David, “Do not stay in the stronghold. Depart and go into the land of Judah.” So David left and went to the for- Saul Slays the Priests of Nob" + } + ] + }, + { + "chapterNum": 144, + "verses": [ + { + "verseNum": 7, + "text": "| 573 7 Answer me quickly, O LORD; my spirit fails. Do not hide Your face from me, 8 or I will be like those who descend to the Pit. Let me hear Your loving devotion in the morning, for I have put my trust in You. Teach me the way I should walk, 9 for to You I lift up my soul. b Although my spirit grows faint within me, Deliver me from my enemies, O LORD; 10 You know my way. Along the path I travel 4 they have hidden a snare for me. Look to my right and see; no one attends to me. There is no refuge for me; 5 no one cares for my soul. 6 I cry to You, O LORD: “You are my refuge, my portion in the land of the living.” Listen to my cry, for I am brought quite low. Rescue me from my pursuers, 7 for they are too strong for me. Free my soul from prison, that I may praise Your name. The righteous will gather around me because of Your goodness to me. Psalm 143 I Stretch Out My Hands to You A Psalm of David. 1 O LORD, hear my prayer. In Your faithfulness, give ear to my plea; in Your righteousness, answer me. Do not bring Your servant into judgment, for no one alive is righteous before You. For the enemy has pursued my soul, crushing my life to the ground, making me dwell in darkness 4 like those long since dead. My spirit grows faint within me; my heart is dismayed inside me. 2 3 5 I remember the days of old; 6 I meditate on all Your works; I consider the work of Your hands. I stretch out my hands to You; my soul thirsts for You like a parched Selah land. a 1 Maskil b 9 I flee to You" + }, + { + "verseNum": 8, + "text": "8 8 9 whose mouths speak falsehood, whose right hands are deceitful. The LORD is gracious and compassionate, slow to anger and abounding in loving 9 I will sing to You a new song, O God; 10 on a harp of ten strings I will make music to You— to Him who gives victory to kings, 11 who frees His servant David from the deadly sword. Set me free and rescue me from the grasp of foreigners, whose mouths speak falsehood, 12 whose right hands are deceitful. Then our sons will be like plants 13 nurtured in their youth, our daughters like corner pillars carved to adorn a palace. Our storehouses will be full, 14 supplying all manner of produce; our flocks will bring forth thousands, tens of thousands in our fields. a Our oxen will bear great loads. There will be no breach in the walls, no going into captivity, 15 and no cry of lament in our streets. Blessed are the people of whom this is so; blessed are the people whose God is the LORD. Psalm 145 I Will Exalt You, My God and King A Psalm of praise. Of David.b 1 I will exalt You, my God and King; 2 I will bless Your name forever and ever. Every day I will bless You, 3 and I will praise Your name forever and ever. Great is the LORD and greatly to be praised; 4 His greatness is unsearchable. One generation will commend Your works to 5 the next, and will proclaim Your mighty acts— the glorious splendor of Your majesty. 6 And I will meditate on Your wondrous works. 3 They will proclaim the power of Your 7 awesome deeds, and I will declare Your" + } + ] + }, + { + "chapterNum": 148, + "verses": [ + { + "verseNum": 1, + "text": "–14) Rejoice in the LORD, O righteous ones; 2 it is fitting for the upright to praise Him. Praise the LORD with the harp; 3 make music to Him with ten strings. 4 Sing to Him a new song; play skillfully with a shout of joy. 5 For the word of the LORD is upright, and all His work is trustworthy. 6 The LORD loves righteousness and justice; the earth is full of His loving devotion. By the word of the LORD the heavens were Selah made, Then I acknowledged my sin to You and did not hide my iniquity. a 1 Maskil b 1 man whose sin the LORD does not count against him LXX Blessed is he whose lawless acts are forgiven, whose sins are covered c 2 Blessed is the is probably a musical or liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. my vitality was turned d 4 ; cited in" + }, + { + "verseNum": 6, + "text": "| 575 6 Blessed is he whose help is the God of Jacob, whose hope is in the LORD his God, the Maker of heaven and earth, 7 the sea, and everything in them. He remains faithful forever. 8 He executes justice for the oppressed and gives food to the hungry. The LORD sets the prisoners free, the LORD opens the eyes of the blind, the LORD lifts those who are weighed down, 9 the LORD loves the righteous. The LORD protects foreigners; The LORD is pleased with those who 12 fear Him, who hope in His loving devotion. 13 Exalt the LORD, O Jerusalem; praise your God, O Zion! For He strengthens the bars of your gates 14 and blesses the children within you. He makes peace at your borders; He fills you with the finest wheat. 15 He sends forth His command to the 10 He sustains the fatherless and the widow, but the ways of the wicked He frustrates. 16 earth; His word runs swiftly. The LORD reigns forever, your God, O Zion, for all generations. Hallelujah! Psalm 147 It Is Good to Sing Praises 1 a Hallelujah! 2 How good it is to sing praises to our God, how pleasant and lovely to praise Him! The LORD builds up Jerusalem; 3 He gathers the exiles of Israel. He heals the brokenhearted 4 and binds up their wounds. He determines the number of the stars; 5 He calls them each by name. 6 Great is our Lord, and mighty in power; His understanding has no limit. The LORD sustains the humble, but casts the wicked to the ground. 7 Sing to the LORD with thanksgiving; 8 make music on the harp to our God, who co" + }, + { + "verseNum": 7, + "text": "7 4 Praise the LORD from the earth, 8 all great sea creatures and ocean depths, lightning and hail, snow and clouds, 9 powerful wind fulfilling His word, 10 mountains and all hills, fruit trees and all cedars, wild animals and all cattle, 11 crawling creatures and flying birds, 12 kings of the earth and all peoples, princes and all rulers of the earth, 13 young men and maidens, old and young together. Let them praise the name of the LORD, for His name alone is exalted; His splendor is above the earth and 14 the heavens. He has raised up a horn for His people, the praise of all His saints, of Israel, a people near to Him. Hallelujah! Psalm 149 Sing to the LORD a New Song" + } + ] + }, + { + "chapterNum": 149, + "verses": [ + { + "verseNum": 1, + "text": "–9 ;" + } + ] + } + ] + }, + { + "name": "Proverbs", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–7) all who hate me love death.” 9 2 a Wisdom has built her house; she has carved out her seven pillars. She has prepared her meat and mixed her 3 wine; she has also set her table. She has sent out her maidservants; 4 she calls out from the heights of the city. 5 “Whoever is simple, let him turn in here!” she says to him who lacks judgment. “Come, eat my bread 6 and drink the wine I have mixed. Leave your folly behind, and you will live; walk in the way of understanding.” 7 He who corrects a mocker brings shame on himself; 8 he who rebukes a wicked man taints himself. 9 Do not rebuke a mocker, or he will hate you; rebuke a wise man, and he will love you. Instruct a wise man, and he will be wiser still; 10 teach a righteous man, and he will increase his learning. The fear of the LORD is the beginning of wisdom, 11 and knowledge of the Holy One is b understanding. For through wisdom your days will be 12 multiplied, and years will be added to your life. If you are wise, you are wise to your own advantage; on a seat in the heights of the city, 16 calling out to those who pass by, who make their paths straight. 17 “Whoever is simple, let him turn in here!” she says to him who lacks judgment. 18 “Stolen water is sweet, c and bread eaten in secret is tasty!” But they do not know that the dead are there, Solomon’s Proverbs: The Wise Son that her guests are in the depths of Sheol. 10 The proverbs of Solomon: 2 A wise son brings joy to his father, but a foolish son grief to his mother." + }, + { + "verseNum": 33, + "text": "33 21 But whoever listens to me will dwell in 22 For the upright will inhabit the land, safety, The Benefits of Wisdom secure from the fear of evil.” 2 2 My son, if you accept my words and hide my commandments within you, 3 if you incline your ear to wisdom 3 2 and direct your heart to understanding, and the blameless will remain in it; but the wicked will be cut off from the land, Trust in the LORD with All Your Heart and the unfaithful will be uprooted. My son, do not forget my teaching, but let your heart keep my commandments; if you truly call out to insight 4 and lift your voice to understanding, if you seek it like silver 5 and search it out like hidden treasure, then you will discern the fear of the LORD and discover the knowledge of God. 6 For the LORD gives wisdom; 7 from His mouth come knowledge and understanding. He stores up sound wisdom for the upright; He is a shield to those who walk with 8 integrity, to guard the paths of justice 9 and protect the way of His saints. Then you will discern righteousness 10 and justice and equity—every good path. 11 For wisdom will enter your heart, and knowledge will delight your soul. 12 Discretion will watch over you, and understanding will guard you, 13 to deliver you from the way of evil, 14 from the man who speaks perversity, from those who leave the straight paths to walk in the ways of darkness, 15 from those who enjoy doing evil and rejoice in the twistedness of evil, whose paths are crooked 16 and whose ways are devious" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 34, + "text": "(see also LXX) 1088 |" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 24, + "text": "| 579 21 broken open, and the clouds dripped with dew. My son, do not lose sight of this: Preserve sound judgment and 22 discernment. They will be life to your soul 23 and adornment to your neck. 24 Then you will go on your way in safety, and your foot will not stumble. 25 When you lie down, you will not be afraid; when you rest, your sleep will be sweet. 26 Do not fear sudden danger or the ruin that overtakes the wicked, 27 for the LORD will be your confidence a and will keep your foot from the snare. 28 Do not withhold good from the deserving when it is within your power to act. Do not tell your neighbor, “Come back tomorrow and I will 29 provide”— 30 when you already have the means. Do not devise evil against your neighbor, for he trustfully dwells beside you. 31 Do not accuse a man without cause, when he has done you no harm. 32 Do not envy a violent man 33 or choose any of his ways; for the LORD detests the perverse, but He is a friend to the upright. The curse of the LORD is on the house of the 34 wicked, but He blesses the home of the righteous. b 35 He mocks the mockers, but gives grace to the humble. The wise will inherit honor, A Father’s Instruction but fools are held up to shame. 4 2 Listen, my sons, to a father’s instruction; pay attention and gain understanding. For I give you sound teaching; 3 do not abandon my directive. When I was a son to my father, 4 tender and the only child of my mother, he taught me and said, a 27 “Let your heart lay hold of my words; b" + }, + { + "verseNum": 25, + "text": "25 19 26 Let your eyes look forward; a fix your gaze straight ahead. 27 Make a level path for your feet, and all your ways will be sure. Do not swerve to the right or to the left; Avoiding Immorality turn your feet away from evil." + }, + { + "verseNum": 26, + "text": "(see De. 9:19 In your struggle against sin, you have not yet 5 resisted to the point of shedding your blood. And you have forgotten the exhortation that ad- b 2 a 37 dresses you as sons: they were put to the test, NE, WH, BYZ, TR include g 15 h 18 Prov. 3:11–12 (see also LXX) also LXX) See De. 29:18 Or Literally d 11 founder it yields the peaceful fruit of righteousness or Or i 20 to what can be touched and c 6 e 12 1084 |" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–23 ; 1 Corinthians 5:1–8) his father or mother, he must He has cursed his father or 10 If a man commits adultery with another man’s wife—with the wife of his neighbor—both the adulterer and the adulteress must surely be put 11 to death. If a man lies with his father’s wife, he has un- covered his father’s nakedness. Both must surely 12 be put to death; their blood is upon them. If a man lies with his daughter-in-law, both must surely be put to death. They have acted per- 13 versely; their blood is upon them. If a man lies with a man as with a woman, they have both committed an abomination. They must 14 surely be put to death; their blood is upon them. If a man marries both a woman and her mother, it is depraved. Both he and they must be burned in the fire, so that there will be no de- 15 pravity among you. If a man lies carnally with an animal, he must be put to death. And you are also to kill the ani- 16 mal. If a woman approaches any animal to mate with it, you must kill both the woman and the animal. They must surely be put to death; their 17 blood is upon them. c If a man marries his sister, whether the daugh- ter of his father or of his mother, and they have sexual relations, it is a disgrace. They must be cut off in the sight of their people. He has uncov- ered the nakedness of his sister; he shall bear his 18 iniquity. d If a man lies with a menstruating woman and has sexual relations with her, he has exposed the source of her flow, and she has uncovered the source of" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 16, + "text": "| 581 suddenly; in an instant he will be shattered beyond recovery. 16 There are six things that the LORD hates, 17 seven that are detestable to Him: haughty eyes, a lying tongue, 18 hands that shed innocent blood, a heart that devises wicked schemes, 19 feet that run swiftly to evil, a false witness who gives false testimony, Warnings against Adultery and one who stirs up discord among brothers. 20 My son, keep your father’s commandment, 21 and do not forsake your mother’s teaching. 22 Bind them always upon your heart; tie them around your neck. When you walk, they will guide you; when you lie down, they will watch over 23 you; when you awake, they will speak to you. For this commandment is a lamp, this teaching is a light, 24 and the reproofs of discipline are the way to life, to keep you from the evil woman, a from the smooth tongue of the 25 33 He who commits adultery lacks judgment; whoever does so destroys himself. Wounds and dishonor will befall him, 34 and his reproach will never be wiped away. For jealousy enrages a husband, 35 and he will show no mercy in the day of vengeance. He will not be appeased by any ransom, Warnings about the Adulteress or persuaded by lavish gifts. 7 2 My son, keep my words and treasure my commandments within you. d Keep my commandments and live; guard my teachings as the apple 3 of your eye. Tie them to your fingers; 4 write them on the tablet of your heart. Say to wisdom, “You are my sister,” 5 and call understanding your kinsman, that th" + }, + { + "verseNum": 17, + "text": "17 12 18 I have perfumed my bed with myrrh, with aloes, and with cinnamon. 13 I, wisdom, dwell together with prudence, and I find knowledge and discretion. 19 Come, let us take our fill of love till morning. To fear the LORD is to hate evil; Let us delight in loving caresses! 20 For my husband is not at home; he has gone on a long journey. He took with him a bag of money 21 14 I hate arrogant pride, evil conduct, and perverse speech. Counsel and sound judgment are mine; 15 I have insight and strength. and will not return till the moon is full.” By me kings reign, 16 22 With her great persuasion she entices him; with her flattering lips she lures him. 23 He follows her on impulse, a like an ox going to the slaughter, like a deer bounding into a trap, until an arrow pierces his liver, 24 like a bird darting into a snare— not knowing it will cost him his life. 25 Now, my sons, listen to me, and attend to the words of my mouth. Do not let your heart turn aside to her ways; 26 do not stray into her paths. and rulers enact just laws; c By me princes rule, 17 and all nobles who govern justly. I love those who love me, 18 and those who seek me early shall find me. With me are riches and honor, 19 enduring wealth and righteousness. My fruit is better than gold, pure gold, 20 and my harvest surpasses choice silver. I walk in the way of righteousness, 21 along the paths of justice, 27 For she has brought many down to death; her slain are many in number. bestowing wealth on those who lov" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 11, + "text": "| 583 The Way of Folly 13 14 The woman named Folly is loud; she is naive and knows nothing. for blessed are those who keep my ways. 15 She sits at the door of her house, 34 Listen to instruction and be wise; do not ignore it. Blessed is the man who listens to me, 35 watching daily at my doors, waiting at the posts of my doorway. 36 For whoever finds me finds life and obtains the favor of the LORD. But he who fails to find me harms himself; The Way of Wisdom" + }, + { + "verseNum": 12, + "text": "12 Hatred stirs up dissension, 13 but love covers all transgressions. 30 29 a The way of the LORD is a refuge to the Wisdom is found on the lips of the discerning, but a rod is for the back of him who lacks judgment. 14 The wise store up knowledge, 15 but the mouth of the fool invites destruction. The wealth of the rich man is his fortified 16 city, but poverty is the ruin of the poor. The labor of the righteous leads to life, but the gain of the wicked brings 17 punishment. Whoever heeds instruction is on the path to 18 life, but he who ignores reproof goes astray. 19 The one who conceals hatred has lying lips, and whoever spreads slander is a fool. 20 When words are many, sin is unavoidable, but he who restrains his lips is wise. The tongue of the righteous is choice silver, but the heart of the wicked has little 21 worth. 22 The lips of the righteous feed many, but fools die for lack of judgment. 23 The blessing of the LORD enriches, and He adds no sorrow to it. upright, but destruction awaits those who do evil. 31 The righteous will never be shaken, but the wicked will not inhabit the land. The mouth of the righteous brings forth 32 wisdom, but a perverse tongue will be cut out. The lips of the righteous know what is fitting, but the mouth of the wicked is perverse. Dishonest Scales" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "–3 ;" + }, + { + "verseNum": 31, + "text": "(see also LXX) . That is, Silas WH, BYZ, and TR Literally I appeal therefore to the el- Literally g 5" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 11, + "text": "| 585 17 18 19 20 Whoever shows contempt for his neighbor lacks judgment, but a man of understanding remains silent. 13 A gossip reveals a secret, 14 but a trustworthy person keeps a 30 confidence. For lack of guidance, a nation falls, but with many counselors comes deliverance. 15 He who puts up security for a stranger will surely suffer, but the one who hates indebtedness is secure. 16 A gracious woman attains honor, but ruthless men gain only wealth. A kind man benefits himself, but a cruel man brings trouble on himself. The wicked man earns an empty wage, 29 31 He who trusts in his riches will fall, but the righteous will thrive like foliage. He who brings trouble on his house will inherit the wind, and the fool will be servant to the wise of heart. The fruit of the righteous is a tree of life, and he who wins souls is wise. If the righteous receive their due on earth, how much more the ungodly and the a Loving Discipline and Knowledge sinner! 12 Whoever loves discipline loves 2 knowledge, but he who hates correction is stupid. The good man obtains favor from the LORD, but the LORD condemns a man who devises evil. 3 but he who sows righteousness reaps a A man cannot be established through true reward. Genuine righteousness leads to life, 4 wickedness, but the righteous cannot be uprooted. but the pursuit of evil brings death. A wife of noble character is her husband’s The perverse in heart are an abomination to crown, the LORD, 5 but she who causes shame is like decay in" + }, + { + "verseNum": 12, + "text": "12 13 The wicked desire the plunder of evil men, but the root of the righteous flourishes. 3 things, but the desire of the faithless is violence. An evil man is trapped by his rebellious He who guards his mouth protects his life, 14 speech, but a righteous man escapes from trouble. 4 but the one who opens his lips invites his own ruin. By fruitful speech a man is filled with good The slacker craves yet has nothing, 15 things, and the work of his hands returns to him. 5 but the soul of the diligent is fully satisfied. The way of a fool is right in his own eyes, The righteous hate falsehood, but a wise man listens to counsel. but the wicked bring shame and disgrace. 6 16 18 19 20 22 25 26 27 28 17 A fool’s anger is known at once, but a prudent man overlooks an insult. He who speaks the truth declares what is right, but a false witness speaks deceit. 8 Speaking rashly is like a piercing sword, but the tongue of the wise brings healing. 9 Truthful lips endure forever, but a lying tongue lasts only a moment. Deceit is in the hearts of those who devise 21 evil, but the counselors of peace have joy. No harm befalls the righteous, but the wicked are filled with trouble. Lying lips are detestable to the LORD, 12 23 but those who deal faithfully are His delight. A shrewd man keeps his knowledge to 24 himself, but a foolish heart proclaims its folly. The hand of the diligent will rule, but laziness ends in forced labor. Anxiety weighs down the heart of a man, but a good word cheers it u" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 28, + "text": "| 587 He who walks with the wise will become wise, 21 but the companion of fools will be destroyed. Disaster pursues sinners, 22 but prosperity is the reward of the righteous. A good man leaves an inheritance to his children’s children, but the sinner’s wealth is passed to the righteous. 15 23 Abundant food is in the fallow ground of the 24 poor, but without justice it is swept away. He who spares the rod hates his son, 25 but he who loves him disciplines him diligently. The Wise Woman A righteous man eats to his heart’s content, but the stomach of the wicked is empty. 14 Every wise woman builds her house, but a foolish one tears it down with her own hands. He who walks in uprightness fears the LORD, but the one who is devious in his ways despises Him. The proud speech of a fool brings a rod to his 4 back, but the lips of the wise protect them. Where there are no oxen, the manger is empty, 5 but an abundant harvest comes through the strength of the ox. An honest witness does not deceive, but a dishonest witness pours forth lies. A mocker seeks wisdom and finds none, but knowledge comes easily to the discerning. 2 3 6 7 8 14 16 17 18 11 The heart knows its own bitterness, and no stranger shares in its joy. 12 The house of the wicked will be destroyed, but the tent of the upright will flourish. 13 There is a way that seems right to a man, but its end is the way of death. Even in laughter the heart may ache, and joy may end in sorrow. The backslider in heart receives the fill of" + }, + { + "verseNum": 29, + "text": "29 11 b A patient man has great understanding, but a quick-tempered man promotes folly. 30 Sheol and Abaddon lie open before the 12 LORD— how much more the hearts of men! 31 A tranquil heart is life to the body, but envy rots the bones. A mocker does not love to be reproved, nor will he consult the wise. Whoever oppresses the poor taunts their Maker, but whoever is kind to the needy honors Him. 32 The wicked man is thrown down by his own sin, 33 but the righteous man has a refuge even in death. a Wisdom rests in the heart of the discerning; even among fools she is known. Righteousness exalts a nation, but sin is a disgrace to any people. A king delights in a wise servant, A Gentle Answer Turns Away Wrath but his anger falls on the shameful. 15 2 A gentle answer turns away wrath, but a harsh word stirs up anger. The tongue of the wise commends 3 knowledge, but the mouth of the fool spouts folly. 4 The eyes of the LORD are in every place, observing the evil and the good. A soothing tongue is a tree of life, but a perverse tongue crushes the spirit. A fool rejects his father’s discipline, but whoever heeds correction is prudent. The house of the righteous has great treasure, 7 but the income of the wicked is trouble. The lips of the wise spread knowledge, but not so the hearts of fools. The sacrifice of the wicked is detestable to 9 the LORD, but the prayer of the upright is His delight. The LORD detests the way of the wicked, 10 but He loves those who pursue righteousness. 34 3" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 31, + "text": "| 589 30 32 33 2 3 4 5 6 The LORD is far from the wicked, Righteous lips are a king’s delight, but He hears the prayer of the righteous. and he who speaks honestly is beloved. 31 The light of the eyes cheers the heart, and good news nourishes the bones. The wrath of a king is a messenger of death, but a wise man will pacify it. 14 15 He who listens to life-giving reproof will dwell among the wise. He who ignores discipline despises himself, but whoever heeds correction gains understanding. The fear of the LORD is the instruction of wisdom, The Reply of the Tongue Is from the LORD and humility comes before honor. 16 The plans of the heart belong to man, but the reply of the tongue is from the 19 All a man’s ways are pure in his own eyes, but his motives are weighed out by the LORD. LORD. Commit your works to the LORD and your plans will be achieved. The LORD has made everything for His purpose— 16 When a king’s face brightens, there is life; his favor is like a rain cloud in spring. How much better to acquire wisdom than gold! 17 To gain understanding is more desirable than silver. The highway of the upright leads away from 18 evil; he who guards his way protects his life. Pride goes before destruction, and a haughty spirit before a fall. It is better to be lowly in spirit among the 20 humble than to divide the spoil with the proud. a 21 Whoever heeds instruction will find success, and blessed is he who trusts in the LORD. 22 The wise in heart are called discerning, and pleasa" + }, + { + "verseNum": 32, + "text": "32 16 He who is slow to anger is better than a warrior, 17 Why should the fool have money in his hand with no intention of buying wisdom? 33 and he who controls his temper is greater than one who captures a city. The lot is cast into the lap, Better a Dry Morsel in Quietness but its every decision is from the LORD. 17 a 19 A friend loves at all times, 18 and a brother is born for adversity. A man lacking judgment strikes hands in pledge and puts up security for his neighbor. Better a dry morsel in quietness than a house full of feasting with He who loves transgression loves strife; he who builds his gate high invites strife. destruction. 2 5 6 8 9 14 15 A wise servant will rule over a disgraceful son 3 and share his inheritance as one of the brothers. 4 A crucible for silver and a furnace for gold, but the LORD is the tester of hearts. A wicked man listens to evil lips; a liar gives ear to a destructive tongue. He who mocks the poor insults their Maker; whoever gloats over calamity will not go unpunished. 7 Grandchildren are the crown of the aged, and the glory of a son is his father. Eloquent words are unfit for a fool; how much worse are lying lips to a ruler! A bribe is a charm to its giver; wherever he turns, he succeeds. 10 Whoever conceals an offense promotes love, but he who brings it up separates friends. A rebuke cuts into a man of discernment 11 deeper than a hundred lashes cut into a fool. An evil man seeks only rebellion; 12 a cruel messenger will be sent against" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 18, + "text": "| 591 7 A fool’s lips bring him strife, and his mouth invites a beating. A fool’s mouth is his ruin, and his lips are a snare to his soul. 19 Better a poor man who walks with 2 integrity than a fool whose lips are perverse. The words of a gossip are like choice morsels that go down into the inmost being. 3 Even zeal is no good without knowledge, and he who hurries his footsteps misses the mark. the righteous run to it and are safe. Wealth attracts many friends, Whoever is slothful in his work is brother to him who destroys. a The name of the LORD is a strong tower; 12 A rich man’s wealth is his fortified city; it is like a high wall in his imagination. Before his downfall a man’s heart is proud, but humility comes before honor. 13 He who answers a matter before he 14 hears it— this is folly and disgrace to him. 15 The spirit of a man can endure his sickness, but who can survive a broken spirit? A man’s own folly subverts his way, yet his heart rages against the LORD. but a poor man is deserted by his friend. A false witness will not go unpunished, and one who utters lies will not escape. Many seek the favor of the prince, and everyone is a friend of the gift giver. All the brothers of a poor man hate him— how much more do his friends avoid him! He may pursue them with pleading, but they are nowhere to be found. The heart of the discerning acquires He who acquires wisdom loves himself; 16 knowledge, and the ear of the wise seeks it out. 9 one who safeguards understanding will" + }, + { + "verseNum": 19, + "text": "19 6 20 21 22 23 25 26 28 29 3 4 5 A man of great anger must pay the penalty; if you rescue him, you will have to do so 7 Many a man proclaims his loving devotion, but who can find a trustworthy man? again. Listen to counsel and accept discipline, that you may be wise the rest of your days. Many plans are in a man’s heart, but the purpose of the LORD will prevail. The desire of a man is loving devotion; better to be poor than a liar. The fear of the LORD leads to life, 24 that one may rest content, without visitation from harm. The slacker buries his hand in the dish; 8 The righteous man walks with integrity; blessed are his children after him. 9 A king who sits on a throne to judge sifts out all evil with his eyes. 10 Who can say, “I have kept my heart pure; b I am cleansed from my sin”? 11 Differing weights and unequal measures both are detestable to the LORD. — 12 Even a young man is known by his actions— whether his conduct is pure and upright. 13 Ears that hear and eyes that see— the LORD has made them both. he will not even bring it back to his mouth. Do not love sleep, or you will grow poor; Strike a mocker, and the simple will beware; rebuke the discerning man, and he will 14 open your eyes, and you will have plenty of food. gain knowledge. He who assaults his father or evicts his 27 mother is a son who brings shame and disgrace. If you cease to hear instruction, my son, you will stray from the words of knowledge. A corrupt witness mocks justice, and a wicked mouth sw" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "–31) For the choirmaster. A Psalm of David. 1 2 O LORD, the king rejoices in Your strength. How greatly he exults in Your salvation! You have granted his heart’s desire and have not withheld the request of Selah 3 his lips. For You welcomed him with rich blessings; You placed on his head a crown of pure 4 gold. He asked You for life, and You granted it— 5 length of days, forever and ever. Great is his glory in Your salvation; 6 You bestow on him splendor and majesty. For You grant him blessings forever; a 3 line There is no speech or language where their voice is not heard O LORD, my Rock and my Redeemer. c 4 give victory to d 9 Or Cited in" + }, + { + "verseNum": 31, + "text": "| 593 27 28 A wise king separates out the wicked a and drives the threshing wheel over them. The spirit of a man is the lamp of the LORD, searching out his inmost being. c 15 A gift in secret soothes anger, and a covert bribe pacifies great wrath. 16 Justice executed is a joy to the righteous, but a terror to the workers of iniquity. Loving devotion and faithfulness preserve a The man who strays from the path of 29 king; by these he maintains his throne. 17 understanding will rest in the assembly of the dead. 30 The glory of young men is their strength, and gray hair is the splendor of the old. Lashes and wounds scour evil, The King’s Heart" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "A Good Name 22 A good name is more desirable than 2 great riches; favor is better than silver and gold. 3 The rich and the poor have this in common: LORD is Maker of them all. The The prudent see danger and take cover, 4 but the simple keep going and suffer the consequences. The rewards of humility and the fear of the 5 LORD are wealth and honor and life. Thorns and snares lie on the path of the Thirty Sayings of the Wise Saying 1 17 Incline your ear and hear the words of the 18 wise— apply your mind to my knowledge— for it is pleasing when you keep them within 19 you 20 and they are constantly on your lips. So that your trust may be in the LORD, c I instruct you today—yes, you. 21 Have I not written for you thirty sayings about counsel and knowledge, to show you true and reliable words, that you may soundly answer those who Saying 2 sent you? perverse; he who guards his soul stays far from 22 them. 6 8 9 10 Train up a child in the way he should go, and when he is old he will not depart from it. 7 The rich rule over the poor, and the borrower is slave to the lender. He who sows injustice will reap disaster, and the rod of his fury will be destroyed. b A generous man will be blessed, for he shares his bread with the poor. 26 23 Do not rob a poor man because he is poor, and do not crush the afflicted at the gate, Saying 3 for the LORD will take up their case and will plunder those who rob them. 24 a Do not make friends with an angry man, 25 and do not associate with a hot-tempe" + }, + { + "verseNum": 8, + "text": ", LXX addition." + }, + { + "verseNum": 9, + "text": "Literally ; a cubit was approximately 18 inches or 45 centimeters. ; see also" + }, + { + "verseNum": 28, + "text": "and" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "–5 ;" + }, + { + "verseNum": 6, + "text": "10 11 seeks finds; and to him who knocks, the door will 9 be opened. Which of you, if his son asks for bread, will give Or if he asks for a fish, will give him a stone? him a snake So if you who are evil know how ? to give good gifts to your children, how much more will your Father in heaven give good things 12 to those who ask Him! In everything, then, do to others as you would have them do to you. For this is the essence of the The Narrow Gate" + }, + { + "verseNum": 10, + "text": ". . This is a derogatory term i 11 restore the fortunes of Or That is, the northern kingdom of Israel; also in verse 10 Cited in" + }, + { + "verseNum": 35, + "text": "| 595 Saying 16 19 20 Listen, my son, and be wise, and guide your heart on the right course. Do not join those who drink too much wine 21 or gorge themselves on meat. For the drunkard and the glutton will come Saying 17 to poverty, and drowsiness will clothe them in rags. Listen to your father who gave you life, 23 and do not despise your mother when she is old. Invest in truth and never sell it— in wisdom and instruction and 24 understanding. The father of a righteous man will greatly rejoice, 25 and he who fathers a wise son will delight in him. May your father and mother be glad, Saying 18 and may she who gave you birth rejoice! 26 27 My son, give me your heart, and let your eyes delight in my ways. d For a prostitute is a deep pit, 28 and an adulteress is a narrow well. Like a robber she lies in wait Saying 19 and multiplies the faithless among men. 29 Who has woe? Who has sorrow? Who has contentions? Who has complaints? 30 Who has needless wounds? Who has bloodshot eyes? Those who linger over wine, 31 who go to taste mixed drinks. Do not gaze at wine while it is red, when it sparkles in the cup and goes down smoothly. In the end it bites like a snake and stings like a viper. 32 33 34 Your eyes will see strange things, and your mind will utter perversities. You will be like one sleeping on the high seas 35 or lying on the top of a mast: “They struck me, but I feel no pain! They beat me, but I did not know it! For surely there is a future, a 6 d 27 of him whose eye is evil" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Do Not Envy Saying 20 24 2 Do not envy wicked men or desire their company; for their hearts devise violence, Saying 21 and their lips declare trouble. 3 By wisdom a house is built 4 and by understanding it is established; through knowledge its rooms are filled with every precious and beautiful Saying 22 treasure. 5 a A wise man is strong, 6 and a man of knowledge enhances his strength. Only with sound guidance should you wage war, and victory lies in a multitude of Saying 23 counselors. 7 Wisdom is too high for a fool; he does not open his mouth in the meeting Saying 24 place. 8 He who plots evil 9 will be called a schemer. A foolish scheme is sin, Saying 25 and a mocker is detestable to men. 10 11 If you faint in the day of distress, how small is your strength! Rescue those being led away to death, 12 and restrain those stumbling toward the slaughter. If you say, “Behold, we did not know about this,” does not He who weighs hearts consider it? Does not the One who guards your life know? Will He not repay a man according to his Saying 26 deeds? 13 Eat honey, my son, for it is good, and the honeycomb is sweet to your a 5 taste. The wise are mightier than the strong LXX 14 Know therefore that wisdom is sweet to your soul. If you find it, there is a future for you, Saying 27 and your hope will never be cut off. 15 Do not lie in wait, O wicked man, near the dwelling of the righteous; do not destroy his resting place. 16 For though a righteous man may fall seven times, he still get" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 21, + "text": "–22 (see also LXX) ; see verse 12. without quarreling over disputable matters" + }, + { + "verseNum": 28, + "text": "| 597 28 11 Do not testify against your neighbor without 12 A word fitly spoken 29 cause, and do not deceive with your lips. Do not say, “I will do to him as he has done to me; 30 I will repay the man according to his work.” is like apples of gold in settings of silver. Like an earring of gold or an ornament of fine 13 gold is a wise man’s rebuke to a listening ear. Like the cold of snow in the time of harvest is a trustworthy messenger to those who I went past the field of a slacker 31 and by the vineyard of a man lacking 14 send him; he refreshes the soul of his masters. judgment. 32 Thorns had grown up everywhere, thistles had covered the ground, and the stone wall was broken down. 33 I observed and took it to heart; I looked and received instruction: 34 A little sleep, a little slumber, a little folding of the hands to rest, and poverty will come upon you like a robber, More Proverbs of Solomon and need like a bandit. 25 These are additional proverbs of Sol- omon, which were copied by the men of 2 Hezekiah king of Judah: 3 It is the glory of God to conceal a matter and the glory of kings to search it out. As the heavens are high and the earth is 4 deep, so the hearts of kings cannot be searched. Remove the dross from the silver, 5 and a vessel for a silversmith will come forth. Remove the wicked from the king’s presence, 6 and his throne will be established in 23 righteousness. Do not exalt yourself in the presence of the 7 king, and do not stand in the place of great men" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "Similitudes and Instructions 21 26 Like snow in summer and rain at 2 harvest, honor does not befit a fool. Like a fluttering sparrow or darting swallow, an undeserved curse does not come to 3 rest. A whip for the horse, a bridle for the donkey, 4 and a rod for the backs of fools! Do not answer a fool according to his folly, 5 or you yourself will be like him. Answer a fool according to his folly, 6 lest he become wise in his own eyes. Like cutting off one’s own feet or drinking violence 7 is the sending of a message by the hand of a fool. Like lame legs hanging limp 8 is a proverb in the mouth of a fool. Like binding a stone into a sling 9 is the giving of honor to a fool. Like a thorn that goes into the hand of a 10 drunkard 11 is a proverb in the mouth of a fool. Like an archer who wounds at random is he who hires a fool or passerby. a 12 As a dog returns to its vomit, so a fool repeats his folly. Do you see a man who is wise in his own eyes? There is more hope for a fool than for him. 4 13 15 17 The slacker says, “A lion is in the road! 14 A fierce lion roams the public square!” As a door turns on its hinges, so the slacker turns on his bed. The slacker buries his hand in the dish; it wearies him to bring it back to his 16 mouth. The slacker is wiser in his own eyes than seven men who answer discreetly. Like one who grabs a dog by the ears 18 is a passerby who meddles in a quarrel not his own. 19 Like a madman shooting firebrands 10 and deadly arrows, Like charcoal for emb" + }, + { + "verseNum": 11, + "text": "g 3 will not be See 11 Since everything will be destroyed in this way, what kind of people ought you to be? You ought 12 to conduct yourselves in holiness and godliness as you anticipate and hasten the coming of the day of God, when the heavens will be destroyed 13 by fire and the elements will melt in the heat. But in keeping with God’s promise, we are looking forward to a new heaven and a new Final Exhortations earth, where righteousness dwells. 14 Therefore, beloved, as you anticipate these things, make every effort to be found at peace— 15 spotless and blameless in His sight. a" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": ") 13 14 Come now, you who say, “Today or tomorrow we will go to this or that city, spend a year there, You do carry on business, and make a profit.” not even know what will happen tomorrow! What is your life? You are a mist that appears for 15 a little while and then vanishes. 16 17 Instead, you ought to say, “If the Lord is will- As it is, you ing, we will live and do this or that.” boast in your proud intentions. All such boasting Anyone, then, who knows the right is evil. A Warning to the Rich thing to do, yet fails to do it, is guilty of sin." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 16, + "text": "| 599 The Boldness of the Righteous 28 2 The wicked flee when no one pursues, but the righteous are as bold as a lion. A land in rebellion has many rulers, but a man of understanding and knowledge maintains order. 3 4 A destitute leader who oppresses the poor is like a driving rain that leaves no food. 5 Those who forsake the law praise the wicked, but those who keep the law resist them. If one blesses his neighbor with a loud voice Evil men do not understand justice, 15 early in the morning, it will be counted to him as a curse. 6 but those who seek the LORD comprehend fully. so one man sharpens another. He who increases his wealth by interest and A constant dripping on a rainy day 16 and a contentious woman are alike— restraining her is like holding back the wind or grasping oil with one’s right hand. b As iron sharpens iron, 17 18 Whoever tends a fig tree will eat its fruit, 19 and he who looks after his master will be honored. 20 As water reflects the face, c so the heart reflects the true man. 21 Sheol and Abaddon are never satisfied; so the eyes of man are never satisfied. A crucible for silver and a furnace for gold, 22 but a man is tested by the praise accorded him. Though you grind a fool like grain with 23 mortar and a pestle, yet his folly will not depart from him. 24 Be sure to know the state of your flocks, and pay close attention to your herds; for riches are not forever, 25 nor does a crown endure to every generation. When hay is removed and new growth 26 appea" + }, + { + "verseNum": 17, + "text": "17 a 3 A man burdened by bloodguilt will flee into A man who loves wisdom brings joy to his 18 the Pit; let no one support him. He who walks with integrity will be kept safe, but whoever is perverse in his ways will suddenly fall. The one who works his land will have plenty of food, 20 but whoever chases fantasies will have his fill of poverty. A faithful man will abound with blessings, but one eager to be rich will not go unpunished. To show partiality is not good, 22 yet a man will do wrong for a piece of b bread. A stingy man hastens after wealth 23 and does not know that poverty awaits him. He who rebukes a man will later find more 24 favor than one who flatters with his tongue. He who robs his father or mother, saying, “It 25 is not wrong,” is a companion to the man who destroys. A greedy man stirs up strife, father, 4 but a companion of prostitutes squanders his wealth. c By justice a king brings stability to the land, 5 but a man who exacts tribute demolishes it. 6 A man who flatters his neighbor spreads a net for his feet. An evil man is caught by his own sin, but a righteous one sings and rejoices. The righteous consider the cause of the poor, but the wicked have no regard for such concerns. Mockers inflame a city, but the wise turn away anger. If a wise man goes to court with a fool, 10 there will be raving and laughing with no resolution. d Men of bloodshed hate a blameless man, but the upright care for his life. A fool vents all his anger, but a wise man holds it" + }, + { + "verseNum": 22, + "text": "SBL, WH, and NE c 22 If your eye is sound a single cubit to his height ; BYZ and TR include e 27 Literally Or seek first His kingdom For Yours is the kingdom and the power and the glory, forever. Amen. 8 Ask, and it will be given to you; seek, and you will find; knock, and the door will be opened to you. For everyone who asks receives; he who worm b 19 d 23 if your eye is evil ; see" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 24, + "text": "| 601 A servant pampered from his youth will bring grief in the end. 11 An angry man stirs up dissension, Do not slander a servant to his master, or he will curse you, and you will bear the guilt. and a hot-tempered man abounds in There is a generation of those who curse transgression. A man’s pride will bring him low, but a humble spirit will obtain honor. A partner to a thief hates his own soul; he receives the oath but does not testify. The fear of man is a snare, 26 but whoever trusts in the LORD is set securely on high. Many seek the ruler’s favor, but a man receives justice from the LORD. An unjust man is detestable to the righteous, The Words of Agur and one whose way is upright is detestable to the wicked. 30 These are the words of Agur son of Jakeh—the burden that this man de- clared to Ithiel: a “I am weary, O God, 2 and worn out. Surely I am the most ignorant of men, 3 and I lack the understanding of a man. I have not learned wisdom, 4 and I have no knowledge of the Holy One. Who has ascended to heaven and come down? Who has gathered the wind in His hands? Who has bound up the waters in His cloak? Who has established all the ends of the earth? What is His name, and what is the name of 5 His Son— surely you know! Every word of God is flawless; 6 He is a shield to those who take refuge in Him. Do not add to His words, 7 lest He rebuke you and prove you a liar. Two things I ask of You— 8 do not refuse me before I die: Keep falsehood and deceitful words far from me. 9" + }, + { + "verseNum": 25, + "text": "25 The ants are creatures of little strength, 26 yet they store up their food in the summer; a the rock badgers are creatures of little power, yet they make their homes in the 27 rocks; the locusts have no king, yet they all 28 advance in formation; 29 and the lizard can be caught in one’s hands, yet it is found in the palaces of kings. There are three things that are stately in their stride, and four that are impressive in their 30 walk: a lion, mighty among beasts, refusing to 31 retreat before anything; a strutting rooster; a he-goat; 32 and a king with his army around him. If you have foolishly exalted yourself 33 or if you have plotted evil, put your hand over your mouth. For as the churning of milk yields butter, The Sayings for King Lemuel and the twisting of the nose draws blood, so the stirring of anger brings forth strife.” 31 2 These are the words of King Lemuel— the burden that his mother taught him: c What shall I say, O my son? 3 What, O son of my womb? What, O son of my vows? Do not spend your strength on women 4 or your vigor on those who ruin kings. It is not for kings, O Lemuel, 5 6 it is not for kings to drink wine, or for rulers to crave strong drink, lest they drink and forget what is decreed, depriving all the oppressed of justice. Give strong drink to one who is perishing, 7 and wine to the bitter in soul. Let him drink and forget his poverty, and remember his misery no more. 8 9 Open your mouth for those with no voice, for the cause of all the disposse" + } + ] + } + ] + }, + { + "name": "Ecclesiastes", + "chapters": [ + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 9, + "text": "and gold and the treasure of kings and provinces. I gathered to myself male and female singers, and the delights of the sons of men—many concu- 9 bines. 10 So I became great and surpassed all in Jerusa- lem who had preceded me; and my wisdom re- mained with me. Anything my eyes desired, I did not deny myself. I refused my heart no pleas- ure. For my heart took delight in all my work, and 11 this was the reward for all my labor. Yet when I considered all the works that my hands had accomplished and what I had toiled to achieve, I found everything to be futile, a pursuit of the wind; there was nothing to be gained un- The Wise and the Foolish der the sun. 12 13 Then I turned to consider wisdom and madness and folly; for what more can the king’s successor do than what has already been accom- plished? And I saw that wisdom exceeds folly, 14 just as light exceeds darkness: The wise man has eyes in his head, but the fool walks in darkness. 15 Yet I also came to realize that one fate overcomes So I said to myself, “The fate of the them both. fool will also befall me. What then have I gained by being wise?” 16 And I said to myself that this too is futile. 17 For there is no lasting remembrance of the wise, just as with the fool, seeing that both will be forgotten in the days to come. Alas, the wise man will die just like the fool! So I hated life, because the work that is done under the sun was grievous to me. For everything is futile and a pur- The Futility of Work suit of the wind." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 8, + "text": "–20) d For the choirmaster. A Psalm of the sons of Korah. 1 This is the fate of the foolish and their followers who endorse their Selah 14 sayings. Like sheep they are destined for Sheol. Death will be their shepherd. 15 The upright will rule them in the morning, and their form will decay in Sheol, far from their lofty abode. But God will redeem my life from Sheol, for He will surely take me to Himself. Selah 16 17 Do not be afraid when a man grows rich, when the splendor of his house increases. For when he dies, he will carry nothing away; his abundance will not follow him down. Though in his lifetime he blesses his soul— 18 19 and men praise you when you prosper— 20 he will join the generation of his fathers, who will never see the light of day. Hear this, all you peoples; a 2 c 11 in the far north listen, all inhabitants of the world, the villages Or Or He will guide us beyond death d 14 ; the most sacred mountain of the Canaanites was the way of the foolish g 13 e 7 Their inward thoughts Or Targum; Hebrew Or A man who has riches without understanding Zaphon b 7 a fleet of trading ships is like the beasts that perish. redeem another Or f 11 Or LXX, Syriac, and Aramaic 522 |" + }, + { + "verseNum": 9, + "text": "| 605 down, his companion can lift him up; but pity the 11 one who falls without another to help him up! Again, if two lie down together, they will keep warm; but how can one keep warm alone? And though one may be overpowered, two can resist. Moreover, a cord of three strands is not quickly The Futility of Power broken. 13 12 14 Better is a poor but wise youth than an old but foolish king who no longer knows how to take a warning. For the youth has come from the prison to the kingship, though he was born poor 15 in his own kingdom. 16 I saw that all who lived and walked under the sun followed this second one, the youth who suc- ceeded the king. There is no limit to all the peo- ple who were before them. Yet the successor will not be celebrated by those who come even later. Approaching God with Awe This too is futile and a pursuit of the wind. 5 2 Guard your steps when you go to the house of God. Draw near to listen rather than to of- fer the sacrifice of fools, who do not know that Do not be quick to speak, and do they do wrong. not be hasty in your heart to utter a word before God. For God is in heaven and you are on earth. 3 So let your words be few. As a dream comes through many cares, so the speech of a fool comes with many words. 4 5 When you make a vow to God, do not delay in fulfilling it, because He takes no pleasure in fools. It is better not to vow than to Fulfill your vow. 6 make a vow and not fulfill it. b Do not let your mouth cause your flesh to sin, and do not" + }, + { + "verseNum": 10, + "text": "10 11 He who loves money is never satisfied by money, and he who loves wealth is never satis- When good fied by income. This too is futile. things increase, so do those who consume them; what then is the profit to the owner, except to be- 12 hold them with his eyes? The sleep of the worker is sweet, whether he eats little or much, but the abundance of the rich 13 man permits him no sleep. There is a grievous evil I have seen under the 14 sun: wealth hoarded to the harm of its owner, or wealth lost in a failed venture, so when that 15 man has a son there is nothing to pass on. 16 As a man came from his mother’s womb, so he will depart again, naked as he arrived. He takes nothing for his labor to carry in his hands. This too is a grievous affliction: Exactly as a man is 17 born, so he will depart. What does he gain as he toils for the wind? Moreover, all his days he eats in darkness, with much sorrow, sickness, 18 and anger. Here is what I have seen to be good and fitting: to eat and drink, and to find satisfaction in all the labor one does under the sun during the few days 19 of life that God has given him—for this is his lot. Furthermore, God has given riches and wealth to every man, and He has enabled him to enjoy 20 them, to accept his lot, and to rejoice in his labor. This is a gift from God. For a man seldom con- siders the days of his life, because God keeps him The Futility of Life occupied with the joy of his heart. 6 2 There is another evil I have seen under the sun," + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 10, + "text": "–13) 11 For this is what the LORD has spoken to me with a strong hand, instructing me not to walk in 12 the way of this people: “Do not call conspiracy everything these people regard as c conspiracy. Do not fear what they fear; do not live in dread. d 13 The LORD of Hosts is the One you shall regard as holy. Only He should be feared; 14 only He should be dreaded. And He will be a sanctuary— e but to both houses of Israel a stone of stumbling and a rock of offense, to the dwellers of Jerusalem 15 a trap and a snare. Many will stumble over these; they will fall and be broken; they will be ensnared and captured.” 16 Bind up the testimony 17 and seal the law among my disciples. I will wait for the LORD, who is hiding His face from the house f of Jacob. I will put my trust in Him. 18 g Here am I, and the children the LORD has given as signs and symbols in Israel from the me Darkness and Light LORD of Hosts, who dwells on Mount Zion. 19 20 When men tell you to consult mediums and spiritists who whisper and mutter, shouldn’t a people consult their God instead? Why consult To the law and the dead on behalf of the living? to the testimony! If they do not speak according to this word, they have no light of dawn. Be evil a 9 threats Or eagerly look for Him LXX g 18 ; cited in" + }, + { + "verseNum": 13, + "text": "| 607 Wisdom, like an inheritance, is good, 12 and it benefits those who see the sun. For wisdom, like money, is a shelter, and the advantage of knowledge is that wisdom preserves the life of its 13 owner. Consider the work of God: 14 Who can straighten what He has bent? In the day of prosperity, be joyful, but in the day of adversity, consider this: God has made one of these along with the other, The Limits of Human Wisdom so that a man cannot discover anything that will come after him. 15 In my futile life I have seen both of these: A righteous man perishing in his righteousness, 16 and a wicked man living long in his wickedness. 17 Do not be overly righteous, and do not make yourself too wise. Why should you destroy your- self? Do not be excessively wicked, and do not 18 be a fool. Why should you die before your time? It is good to grasp the one and not let the other slip from your hand. For he who fears God will 19 follow both warnings. a Wisdom makes the wise man 20 stronger than ten rulers in a city. Surely there is no righteous man on earth 21 who does good and never sins. Do not pay attention to every word that is spo- 22 ken, or you may hear your servant cursing you. For you know in your heart that many times 23 you yourself have cursed others. 24 All this I tested by wisdom, saying, “I resolve to What exists is be wise.” But it was beyond me. 25 out of reach and very deep. Who can fathom it? 26 I directed my mind to understand, to explore, to search out wisdom and e" + }, + { + "verseNum": 14, + "text": "God’s Ways Are Mysterious Enjoy Your Portion in This Life 14 7 There is a futility that is done on the earth: There are righteous men who get what the ac- tions of the wicked deserve, and there are wicked men who get what the actions of the righteous 15 deserve. I say that this too is futile. So I commended the enjoyment of life, because there is nothing better for a man under the sun than to eat and drink and be merry. For this joy will accompany him in his labor during the days of his life that God gives him under the 16 sun. 17 When I applied my mind to know wisdom and to observe the task that one performs on the earth—though his eyes do not see sleep in the I saw every work of day or even in the night— God, and that a man is unable to comprehend the work that is done under the sun. Despite his ef- forts to search it out, he cannot find its meaning; even if the wise man claims to know, he is unable Death Comes to Good and Bad to comprehend. 9 So I took all this to heart and concluded that the righteous and the wise, as well as their deeds, are in God’s hands. Man does not know 2 what lies ahead, whether love or hate. a It is the same for all: There is a common fate for the righteous and the wicked, for the good and the bad, for the clean and the unclean, for the one who sacrifices and the one who does not. As it is for the good, so it is for the sinner; as it is for the one who makes a vow, so it is for the one who 3 refuses to take a vow. This is an evil in everything tha" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 10, + "text": "| 609 for a bird of the air may carry your words, and a winged creature may report your Cast Your Bread upon the Waters speech. 11 2 Cast your bread upon the waters, for after many days you will find it again. Divide your portion among seven, or even eight, 3 for you do not know what disaster may befall the land. If the clouds are full, they will pour out rain upon the earth; whether a tree falls to the south or to the 4 north, in the place where it falls, there it will lie. He who watches the wind will fail to sow, 5 and he who observes the clouds will fail to reap. b As you do not know the path of the wind, or how the bones are formed in a mother’s womb, so you cannot understand the work of God, 6 the Maker of all things. Sow your seed in the morning, and do not rest your hands in the evening, for you do not know which will succeed, whether this or that, or if both will Enjoy Your Years equally prosper. 7 Light is sweet, 8 17 Woe to you, O land whose king is a youth, and whose princes feast in the morning. Blessed are you, O land whose king is a son of nobles, and whose princes feast at the proper 18 time— for strength and not for drunkenness. Through laziness the roof caves in, 19 and in the hands of the idle, the house leaks. A feast is prepared for laughter, and wine 20 makes life merry, but money is the answer for everything. and it pleases the eyes to see the sun. So if a man lives many years, let him rejoice in them all. But let him remember the days of darkness, 9 fo" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Remember Your Creator 12 Remember your Creator in the days of your youth, before the days of adversity come and the years approach of which you will say, 2 “I find no pleasure in them,” 8 before the light of the sun, moon, and stars is before the pitcher is shattered at the 7 spring and the wheel is broken at the well, before the dust returns to the ground from which it came and the spirit returns to God who gave it. 3 darkened, and the clouds return after the rain, on the day the keepers of the house tremble and the strong men stoop, when those grinding cease because they are few 4 and those watching through windows see dimly, when the doors to the street are shut and the sound of the mill fades away, when one rises at the sound of a bird 5 and all the daughters of song grow faint, when men fear the heights and dangers of the road, when the almond tree blossoms, the grasshopper loses its spring, and the caper berry shrivels— for then man goes to his eternal home and mourners walk the streets. 6 Remember Him before the silver cord is snapped and the golden bowl is crushed, “Futility of futilities,” says the Teacher. The Whole Duty of Man “Everything is futile!” 9 Not only was the Teacher wise, but he also taught the people knowledge; he pondered, 10 searched out, and arranged many proverbs. The Teacher searched to find delightful say- a 11 ings and to record accurate words of truth. b 12 The words of the wise are like goads, and the anthologies of the masters are like firmly" + } + ] + } + ] + }, + { + "name": "Isaiah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–9) tree. 5 So the LORD his God delivered Ahaz into the hand of the king of Aram, who attacked him and took many captives to Damascus. 6 Ahaz was also delivered into the hand of the king of Israel, who struck him with great force. For in one day Pekah son of Remaliah killed 120,000 valiant men in Judah. This happened because they had forsaken the LORD, the God of their fa- thers. Zichri, a mighty man of Ephraim, killed a 5 100 talents Maaseiah the son of the king, Azrikam the 7 But a prophet of the LORD named Oded was there, and he went out to meet the army that returned to Samaria. “Look,” he said to them, “because of His wrath against Judah, the LORD, the God of your fathers, has delivered them into your hand. But you have slaughtered them in a rage that reaches up to heaven. And now you intend to reduce to slavery the men and women 11 of Judah and Jerusalem. But are you not also guilty before the LORD your God? Now there- fore, listen to me and return the captives you took from your kinsmen, for the fierce anger of 12 the LORD is upon you.” 10 e f Then some of the leaders of the Ephraim- —Azariah son of Jehohanan, Berechiah son ites Jehizkiah son of Shallum, and of Meshillemoth, 13 Amasa son of Hadlai—stood in opposition to those arriving from the war. “You must not bring the captives here,” they said, “for you are proposing to bring guilt upon us from the LORD and to add to our sins and our guilt. For our guilt 14 is great, and fierce anger is upon Israel.” So the armed m" + }, + { + "verseNum": 9, + "text": "(see also LXX)" + }, + { + "verseNum": 19, + "text": "19 If you are willing and obedient, 20 you will eat the best of the land. But if you resist and rebel, For the mouth of the LORD has spoken. you will be devoured by the sword.” The Corruption of Zion 21 See how the faithful city has become a harlot! She once was full of justice; righteousness resided within her, but now only murderers! Your silver has become dross; 22 23 your fine wine is diluted with water. Your rulers are rebels, friends of thieves. They all love bribes and chasing after rewards. They do not defend the fatherless, 24 and the plea of the widow never comes before them. Therefore the Lord GOD of Hosts, the Mighty One of Israel, declares: “Ah, I will be relieved of My foes 25 and avenge Myself on My enemies. I will turn My hand against you; 26 I will thoroughly purge your dross; I will remove all your impurities. I will restore your judges as at first, The Mountain of the House of the LORD" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–4) and the temple mount a wooded ridge. 4 In the last days the mountain of the house I will assemble the outcast, 7 even those whom I have afflicted. And I will make the lame into a remnant, the outcast into a strong nation. Then the LORD will rule over them in Mount 8 Zion from that day and forever. a And you, O watchtower of the flock, O stronghold of the Daughter of Zion— the former dominion will be restored to you; sovereignty will come to the Daughter of 9 Jerusalem.” Why do you now cry aloud? Is there no king among you? Has your counselor perished 10 so that anguish grips you like a woman in of the LORD labor? will be established as the chief of the Writhe in agony, O Daughter of Zion, mountains; 2 it will be raised above the hills, and the peoples will stream to it. And many nations will come and say: “Come, let us go up to the mountain of the LORD, to the house of the God of Jacob. He will teach us His ways, so that we may walk in His paths.” For the law will go forth from Zion 3 and the word of the LORD from Jerusalem. Then He will judge between many peoples and arbitrate for strong nations far and wide. Then they will beat their swords into plowshares and their spears into pruning hooks. Nation will no longer take up the sword 4 against nation, nor will they train anymore for war. And each man will sit under his own vine and under his own fig tree, with no one to frighten him. 5 For the mouth of the LORD of Hosts has spoken. Though all the nations may walk in the n" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 15, + "text": "| 619 The proud look of man will be humbled, and the loftiness of men brought low; the LORD alone will be exalted in that day. 12 For the Day of the LORD of Hosts will come against all the proud and lofty, 13 against all that is exalted— it will be humbled— against all the cedars of Lebanon, lofty and 14 lifted up, against all the oaks of Bashan, 15 against all the tall mountains, against all the high hills, against every high tower, a against every fortified wall, against every ship of Tarshish, 16 17 and against every stately vessel. “I will make mere lads their leaders, and children will rule over them.” 5 The people will oppress one another, man against man, neighbor against neighbor; the young will rise up against the old, and the base against the honorable. A man will seize his brother within his father’s house: “You have a cloak—you be our leader! 7 Take charge of this heap of rubble.” c On that day he will cry aloud: “I am not a healer. I have no food or clothing in my house. 6 8 Do not make me leader of the people!” So the pride of man will be brought low, 18 and the loftiness of men will be humbled; 19 the LORD alone will be exalted in that day, and the idols will vanish completely. Men will flee to caves in the rocks and holes in the ground, away from the terror of the LORD 20 and from the splendor of His majesty, when He rises to shake the earth. In that day men will cast away to the moles and bats their idols of silver and gold— 21 the idols they made to worship." + }, + { + "verseNum": 16, + "text": "A Warning to the Daughters of Zion 4 16 The LORD also says: “Because the daughters of Zion are haughty— walking with heads held high and wanton eyes, 17 prancing and skipping as they go, when the Lord has washed away the filth of the daughters of Zion and cleansed the bloodstains from the heart of Jerusalem 5 by a spirit of judgment and a spirit of fire. Then the LORD will create over all of Mount Zion jingling the bracelets on their ankles— and over her assemblies the Lord will bring sores a on the heads of the daughters of Zion, and the LORD will make their foreheads 18 bare. ” In that day the Lord will take away their finery: 19 20 their anklets and headbands and crescents; their pendants, bracelets, and veils; their headdresses, ankle chains, and sashes; their perfume bottles and charms; their signet rings and nose rings; their festive robes, capes, cloaks, and purses; and their mirrors, linen garments, tiaras, 21 22 23 24 and shawls. Instead of fragrance there will be a stench; instead of a belt, a rope; instead of styled hair, baldness; instead of fine clothing, sackcloth; b 25 instead of beauty, shame. 3 a cloud of smoke by day and a glowing flame of fire by night. For over all the glory 6 there will be a canopy, a shelter to give shade from the heat by day, and a refuge and hiding place The Song of the Vineyard" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–7) 4 5 49 50 6 I have come to ignite a fire on the earth, and But I have how I wish it were already kindled! a baptism to undergo, and how distressed I am 51 until it is accomplished! 52 Do you think that I have come to bring peace to the earth? No, I tell you, but division. From b 39 a 38 now on, five in one household will be divided, That is, between 9 at night and 3 in the morning lepton d 59 7 Then Jesus told this parable: “A man had a fig tree that was planted in his vineyard. He went to So he look for fruit on it but did not find any. said to the keeper of the vineyard, ‘Look, for the past three years I have come to search for fruit on this fig tree and haven’t found any. Therefore cut it down! BYZ and TR include he would have stayed awake, and c 53 Why should it use up the soil?’ Cut it down! e 7 See e Mic. 7:6. Greek ; that is, a bronze or copper coin worth about 1/128 of a denarius SBL, NE, WH 8 9 ‘Sir,’ the man replied, ‘leave it alone again this year, until I dig around it and fertilize it. If it bears fruit next year, fine. But if not, you can cut Jesus Heals a Disabled Woman it down.’ 10 ” 11 One Sabbath Jesus was teaching in one of the synagogues, and a woman there had been dis- abled by a spirit for eighteen years. She was 12 hunched over and could not stand up straight. When Jesus saw her, He called her over and said, “Woman, you are set free from your disabil- ity.” Then He placed His hands on her, and immediately she straightened up and began to 14 glorify" + }, + { + "verseNum": 28, + "text": "| 621 I heard the LORD of Hosts declare: Woe to those who are heroes in drinking is the house of Israel, and the men of Judah are the plant of His delight. He looked for justice, but saw bloodshed; for righteousness, Woes to the Wicked but heard a cry of distress. 8 Woe to you who add house to house and join field to field until no place is left 9 and you live alone in the land. 10 “Surely many houses will become desolate, great mansions left unoccupied. a For ten acres of vineyard b will yield but a bath of wine, and a homer of seed 11 only an ephah of grain. ” Woe to those who rise early in the morning 12 in pursuit of strong drink, who linger into the evening, to be inflamed by wine. At their feasts are the lyre and harp, tambourines and flutes and wine. They disregard the actions of the LORD and fail to see the work of His hands. 13 Therefore My people will go into exile for their lack of understanding; 14 their dignitaries are starving 22 24 His work so that we may see it! Let the plan of the Holy One of Israel come 20 so that we may know it!” Woe to those who call evil good and good evil, who turn darkness to light and light to darkness, who replace bitter with sweet and sweet with bitter. 21 Woe to those who are wise in their own eyes and clever in their own sight. 23 wine and champions in mixing strong drink, who acquit the guilty for a bribe and deprive the innocent of justice. Therefore, as a tongue of fire consumes the straw, and as dry grass shrivels in the flame," + }, + { + "verseNum": 29, + "text": "29 9 Their roaring is like that of a lion; they roar like young lions. They growl and seize their prey; 30 they carry it away, and no one can rescue it. In that day they will roar over it, like the roaring of the sea. If one looks over the land, he will see darkness and distress; Isaiah’s Commission even the light will be obscured by clouds. (Matt. 13:10–17 ;" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–13 ;" + }, + { + "verseNum": 9, + "text": "–10 (see also LXX) LXX); SBL, NE, and WH do not include ; also in verses 20, 22, and 23" + }, + { + "verseNum": 10, + "text": ", meaning or , which became a shout of 966 |" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 10, + "text": "–16 ;" + }, + { + "verseNum": 14, + "text": "(see also DSS) See" + }, + { + "verseNum": 17, + "text": "–25) 9 1 This is the word of the LORD that came to Micah the Moreshite in the days of Jotham, Ahaz, and Hezekiah, kings of Judah—what he 2 saw regarding Samaria and Jerusalem: Hear, O peoples, all of you; listen, O earth, and everyone in it! May the Lord GOD bear witness against you, 3 the Lord from His holy temple. For behold, the LORD comes forth from His dwelling place; He will come down and tread 4 on the high places of the earth. The mountains will melt beneath Him, and the valleys will split apart, like wax before the fire, 5 like water rushing down a slope. All this is for the transgression of Jacob and the sins of the house of Israel. What is the transgression of Jacob? Is it not Samaria? And what is the high place of Judah? 6 Is it not Jerusalem? Therefore I will make Samaria a heap of rubble in the open field, a planting area for a vineyard. I will pour her stones into the valley 7 and expose her foundations. All her carved images will be smashed to pieces; all her wages will be burned in the fire, and I will destroy all her idols. Weeping and Mourning Since she collected the wages of a prostitute, they will be used again on a prostitute. 8 Because of this I will lament and wail; I will walk barefoot and naked. a b For her wound is incurable; it has reached even Judah; it has approached the gate of my people, c 10 as far as Jerusalem itself. d 11 Do not tell it in Gath; do not weep at all. Roll in the dust in Beth-leaphrah. e Depart in shameful nakedness, f O dwelle" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 8, + "text": "| 623 d On that day the Lord will use a razor hired from beyond the Euphrates —the king of 21 Assyria—to shave your head and the hair of your legs, and to remove your beard as well. On that 22 day a man will raise a young cow and two sheep, and from the abundance of milk they give, he will eat curds; for all who remain in the land will 23 eat curds and honey. e And on that day, in every place that had a thou- sand vines worth a thousand shekels of silver, Men will only briers and thorns will be found. go there with bow and arrow, for the land will be For fear of the covered with briers and thorns. briers and thorns, you will no longer traverse the hills once tilled by the hoe; they will become Assyrian Invasion Prophesied places for oxen to graze and sheep to trample. 24 25 8 f g 2 Then the LORD said to me, “Take a large sty- scroll and write on it with an ordinary lus: Maher-shalal-hash-baz. And I will appoint for Myself trustworthy witnesses—Uriah the 3 priest and Zechariah son of Jeberekiah.” And I had relations with the prophetess, and she conceived and gave birth to a son. The LORD 4 said to me, “Name him Maher-shalal-hash-baz. For before the boy knows how to cry ‘Father’ or ‘Mother,’ the wealth of Damascus and the plun- der of Samaria will be carried off by the king of 5 Assyria.” 6 And the LORD spoke to me further: “Because this people has rejected the gently flowing waters of Shiloah and rejoiced in Rezin 7 and the son of Remaliah, the Lord will surely bring against t" + }, + { + "verseNum": 9, + "text": "9 a 21 Huddle together, O peoples, and be shattered; pay attention, all you distant lands; prepare for battle, and be shattered; 10 Devise a plan, but it will be thwarted; prepare for battle, and be shattered! b it will not happen. state a proposal, but ” For God is with us. A Call to Fear God" + }, + { + "verseNum": 10, + "text": ". 862 |" + }, + { + "verseNum": 11, + "text": "–15) detriment. 10 b 11 Then too, I saw the burial of the wicked who used to go in and out of the holy place, and they were praised in the city where they had done so. This too is futile. When the sentence for a crime is not speedily executed, the hearts of men 12 become fully set on doing evil. 13 Although a sinner does evil a hundred times and still lives long, yet I also know that it will go well with those who fear God, who are reverent Yet because the wicked do not in His presence. fear God, it will not go well with them, and their days will not lengthen like a shadow. were soon Or Some Hebrew manuscripts, LXX, and Vulgate; most Hebrew manuscripts 608 |" + }, + { + "verseNum": 12, + "text": "g 1 BYZ and TR for This sentence may also be included with the quotation from the previous verse; BYZ and TR include Or Or 1092 |" + }, + { + "verseNum": 13, + "text": ". Or e 19 b 14 h 6 . Or See" + }, + { + "verseNum": 14, + "text": "" + }, + { + "verseNum": 17, + "text": "" + }, + { + "verseNum": 18, + "text": "" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "–7 ;" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 9, + "text": "| 625 8 The Lord has sent a message against Jacob, 9 and it has fallen upon Israel. a All the people will know it— Ephraim and the dwellers of Samaria. 21 They carve out what is on the right, but they are still hungry; they eat what is on the left, but they are still not satisfied. Each one devours the flesh of his own c offspring. With pride and arrogance of heart 10 they will say: “The bricks have fallen, but we will rebuild with finished stone; the sycamores have been felled, 11 but we will replace them with cedars.” The LORD has raised up the foes of Rezin 12 b against him and joined his enemies together. Aram from the east and Philistia from the west have devoured Israel with open mouths. Despite all this, His anger is not turned away; Judgment against Israel’s Hypocrisy His hand is still upraised. 13 But the people did not return to Him who 14 struck them; they did not seek the LORD of Hosts. 15 So the LORD will cut off Israel’s head and tail, both palm branch and reed in a single day. The head is the elder and honorable man, and the tail is the prophet who teaches 16 lies. For those who guide this people mislead Manasseh devours Ephraim, and Ephraim Manasseh; together they turn against Judah. Despite all this, His anger is not turned away; Woe to Tyrants His hand is still upraised. 10 Woe to those who enact unjust 2 statutes and issue oppressive decrees, to deprive the poor of fair treatment and withhold justice from the oppressed of My people, to make widows their pre" + }, + { + "verseNum": 10, + "text": "10 As my hand seized the idolatrous kingdoms 11 whose images surpassed those of Jerusalem and Samaria, and as I have done to Samaria and its idols, will I not also do to Jerusalem and her 12 idols?” So when the Lord has completed all His work against Mount Zion and Jerusalem, He will say, “I will punish the king of Assyria for the fruit of his 13 arrogant heart and the proud look in his eyes. For he says: ‘By the strength of my hand I have done this, and by my wisdom, for I am clever. I have removed the boundaries of nations 14 and plundered their treasures; like a mighty one I subdued their rulers. My hand reached as into a nest to seize the wealth of the nations. Like one gathering abandoned eggs, I gathered all the earth. No wing fluttered, 15 no beak opened or chirped.’ ” Does an axe raise itself above the one who swings it? Does a saw boast over him who saws with it? It would be like a rod waving the one who 16 lifts it, or a staff lifting him who is not wood! Therefore the Lord GOD of Hosts will send a wasting disease among Assyria’s stout warriors, and under his pomp will be kindled 17 a fire like a burning flame. And the Light of Israel will become a fire, and its Holy One a flame. 18 In a single day it will burn and devour Assyria’s thorns and thistles. The splendor of its forests and orchards, both soul and body, it will completely destroy, 19 as a sickness consumes a man. The remaining trees of its forests will be so few A Remnant Shall Return that a child could co" + }, + { + "verseNum": 22, + "text": "–23 (see also LXX) e 15 f 17 j 28 n 5 d 13" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 10, + "text": "(see also LXX) 1020 |" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "| 627 33 Zion, at the hill of Jerusalem. Behold, the Lord GOD of Hosts will lop off the branches with terrifying power. 34 The tall trees will be cut down, the lofty ones will be felled. He will clear the forest thickets with an axe, and Lebanon will fall before the Mighty The Root of Jesse One. 11 2 Then a shoot will spring up from the stump of Jesse, and a Branch from his roots will bear fruit. The Spirit of the LORD will rest on Him— the Spirit of wisdom and understanding, the Spirit of counsel and strength, the Spirit of knowledge and fear of 3 the LORD. And He will delight in the fear of the LORD. He will not judge by what His eyes see, 4 and He will not decide by what His ears hear, but with righteousness He will judge the poor, and with equity He will decide for the lowly of the earth. He will strike the earth with the rod of His mouth 5 and slay the wicked with the breath of His lips. Righteousness will be the belt around His 6 hips, and faithfulness the sash around His waist. The wolf will live with the lamb, and the leopard will lie down with the goat; a the calf and young lion and fatling will be 7 together, and a little child will lead them. The cow will graze with the bear, 8 their young will lie down together, and the lion will eat straw like the ox. for the earth will be full of the knowledge of 10 the LORD as the sea is full of water. b 11 On that day the Root of Jesse will stand as a banner for the peoples. The nations will seek Him, On and His place of rest" + }, + { + "verseNum": 2, + "text": "2 Surely God is my salvation; I will trust and not be afraid. 10 to make the earth a desolation and to destroy the sinners within it. For the LORD GOD is my strength and my For the stars of heaven and their 3 song, and He also has become my salvation.” 4 With joy you will draw water from the springs of salvation, and on that day you will say: “Give praise to the LORD; proclaim His name! Make His works known among the peoples; 5 declare that His name is exalted. Sing to the LORD, for He has done glorious 6 things. Let this be known in all the earth. Cry out and sing, O citizen of Zion, for great among you is the Holy One of The Burden against Babylon Israel.” 13 2 This is the burden against Babylon that Isaiah son of Amoz received: Raise a banner on a barren hilltop; call aloud to them. Wave your hand, 3 that they may enter the gates of the nobles. I have commanded My sanctified ones; I have even summoned My warriors to execute My wrath 4 and exult in My triumph. Listen, a tumult on the mountains, like that of a great multitude! Listen, an uproar among the kingdoms, like nations gathered together! The LORD of Hosts is mobilizing 5 an army for war. They are coming from faraway lands, from the ends of the heavens— the LORD and the weapons of His wrath— 6 to destroy the whole country. Wail, for the Day of the LORD is near; a 7 it will come as destruction from the Almighty. Therefore all hands will fall limp, 8 and every man’s heart will melt. Terror, pain, and anguish will seize" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 10, + "text": "," + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 24, + "text": "| 629 14 For the LORD will have compassion on Jacob; once again He will choose Israel and settle them in their own land. The foreigner 2 will join them and unite with the house of Jacob. The nations will escort Israel and bring it to its homeland. Then the house of Israel will possess the nations as menservants and maidservants in the LORD’s land. They will make captives of their captors The Fall of the King of Babylon and rule over their oppressors. 3 On the day that the LORD gives you rest from your pain and torment, and from the hard labor into which you were forced, you will sing this song of contempt against the king of Babylon: 4 a How the oppressor has ceased, 5 and how his fury has ended! The LORD has broken the staff of the wicked, 6 the scepter of the rulers. It struck the peoples in anger with unceasing blows; it subdued the nations in rage 7 with relentless persecution. All the earth is at peace and at rest; b 8 they break out in song. Even the cypresses and cedars of Lebanon exult over you: “Since you have been laid low, 9 no woodcutter comes against us.” Sheol beneath is eager to meet you upon your arrival. It stirs the spirits of the dead to greet you— all the rulers of the earth. 10 It makes all the kings of the nations rise from their thrones. They will all respond to you, saying, 11 “You too have become weak, as we are; you have become like us!” You said in your heart: “I will ascend to the heavens; I will raise my throne above the stars of God. d 14 I will" + }, + { + "verseNum": 25, + "text": "25 3 I will break Assyria in My land; I will trample him on My mountain. His yoke will be taken off My people, In its streets they wear sackcloth; 4 on the rooftops and in the public squares they all wail, falling down weeping. 26 and his burden removed from their shoul- Heshbon and Elealeh cry out; ders.” This is the plan devised for the whole earth, and this is the hand stretched out over all 27 the nations. The LORD of Hosts has purposed, and who can thwart Him? His hand is outstretched, Philistia Will Be Destroyed can turn it back? so who 28 In the year that King Ahaz died, this burden 29 was received: Do not rejoice, all you Philistines, that the rod that struck you is broken. For a viper will spring from the root of the 30 snake, and a flying serpent from its egg. Then the firstborn of the poor will find pas- ture, and the needy will lie down in safety, but I will kill your root by famine, and your remnant will be slain. 31 Wail, O gate! Cry out, O city! Melt away, all you Philistines! 32 For a cloud of smoke comes from the north, and there are no stragglers in its ranks. What answer will be given to the envoys of that nation? “The LORD has founded Zion, where His afflicted people will find The Burden against Moab" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "–9) 48 Concerning Moab, this is what the LORD of Hosts, the God of Israel, says: “Woe to Nebo, for it will be devastated. Kiriathaim will be captured and disgraced; 2 the fortress will be shattered and dismantled. c There is no longer praise for Moab; in Heshbon they devise evil against her: d ‘Come, let us cut her off from nationhood.’ You too, O people of Madmen, 3 silenced; will be the sword will pursue you. A voice cries out from Horonaim: 4 ‘Devastation and great destruction!’ e Moab will be shattered; her little ones will cry out. For on the ascent to Luhith they weep bitterly as they go, and on the descent to Horonaim cries of distress resound over the destruction: ‘Flee! Run for your lives! 5 6 7 f Become like a juniper in the desert. ’ Because you trust in your works and treasures, you too will be captured, and Chemosh will go into exile 8 with his priests and officials. The destroyer will move against every city, and not one town will escape. The valley will also be ruined, 9 and the high plain will be destroyed, as the LORD has said. g Put salt on Moab, for she will be laid waste; her cities will become desolate, 10 with no one to dwell in them. Cursed is the one who is remiss in doing the work of the LORD, 11 and cursed is he who withholds his sword from bloodshed. Moab has been at ease from youth, settled like wine on its dregs; he has not been poured from vessel to vessel when the LORD has commanded it? or gone into exile. He has appointed it against Ashkelon an" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "–14 ;" + }, + { + "verseNum": 7, + "text": ". Probably the Dead Sea Two Hebrew manuscripts and LXX; most Hebrew manuscripts 728 |" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "–14) in labor. 23 Concerning Damascus: “Hamath and Arpad are put to shame, for they have heard a bad report; d 24 they are agitated like the sea; their anxiety cannot be calmed. Damascus has become feeble; she has turned to flee. Panic has gripped her; 25 anguish and pain have seized her like a woman in labor. 26 How is the city of praise not forsaken, the town that brings Me joy? For her young men will fall in the streets, and all her warriors will be silenced in declares the LORD of Hosts. that day,” 27 18 “Edom will become an object of horror. All who pass by will be appalled and will scoff at all her wounds. of Sela b 20 a 16 As Sodom and Gomorrah were overthrown their pasture will be appalled at their fate “I will set fire to the walls of Damascus; it will consume the fortresses of Ben-hadad.” d 23 Sea of Reeds c 21 on the sea by the sea Or Or Or Hebrew or 730 |" + }, + { + "verseNum": 11, + "text": "| 631 in loving devotion a throne will be established in the tent of David. A judge seeking justice and hastening 6 righteousness will sit on it in faithfulness. We have heard of Moab’s pomposity, his exceeding pride and conceit, his overflowing arrogance. 7 But his boasting is empty. Therefore let Moab wail; let them wail together for Moab. Moan for the raisin cakes of Kir-hareseth, 8 you who are utterly stricken. For the fields of Heshbon have withered, along with the grapevines of Sibmah. The rulers of the nations have trampled its choicest vines, which had reached as far as Jazer and spread toward the desert. b Their shoots had spread out and passed over the sea. 9 So I weep with Jazer for the vines of Sibmah; I drench Heshbon and Elealeh with my tears. Triumphant shouts have fallen silent 10 over your summer fruit and your harvest. Joy and gladness are removed from the orchard; no one sings or shouts in the vineyards. No one tramples the grapes in the 11 winepresses; I have put an end to the cheering. Therefore my heart laments for Moab like a c 12 harp, my inmost being for Kir-heres. When Moab appears on the high place, when he wearies himself and enters his sanctuary to pray, 13 it will do him no good. 14 This is the message that the LORD spoke And now the LORD earlier concerning Moab. says, “In three years, as a hired worker counts the years, Moab’s splendor will become an object of contempt, with all her many people. And those who are left will be few and feeble.” a" + }, + { + "verseNum": 12, + "text": "yet the harvest will vanish 12 from a people tall and smooth-skinned, on the day of disease and incurable pain. from a people widely feared, Alas, the tumult of many peoples; they rage like the roaring seas and clamoring nations; 13 they rumble like the crashing of mighty waters. The nations rage like the rush of many waters. He rebukes them, and they flee far away, driven before the wind like chaff on the hills, 14 like tumbleweeds before a gale. In the evening, there is sudden terror! Before morning, they are no more! This is the portion of those who loot us and the lot of those who plunder us. A Message to Cush from a powerful nation of strange speech, whose land is divided by rivers— to Mount Zion, the place of the Name of the LORD The Burden against Egypt of Hosts. 19 This is the burden against Egypt: Behold, the LORD rides on a swift cloud; He is coming to Egypt. The idols of Egypt will tremble before Him, and the hearts of the Egyptians will melt 2 within them. a “So I will incite Egyptian against Egyptian; 18 b 2 Woe to the land of whirring wings, along the rivers of Cush, which sends couriers by sea, in papyrus vessels on the waters. Go, swift messengers, to a people tall and smooth-skinned, to a people widely feared, to a powerful nation of strange speech, 3 whose land is divided by rivers. All you people of the world and dwellers of the earth, when a banner is raised on the mountains, you will see it; 4 when a ram’s horn sounds, you will hear it. For this is what t" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "–10) earth.” 18 18 After this I saw another angel descend- ing from heaven with great authority, And and the earth was illuminated by his glory. he cried out in a mighty voice: 2 a “Fallen, fallen is Babylon the great! She has become a lair for demons and a haunt for every unclean spirit, 3 every unclean bird, and every detestable beast. b c All the nations have drunk the wine of the passion of her immorality. The kings of the earth were immoral with her, and the merchants of the earth have grown wealthy from the extravagance of her luxury.” 4 Then I heard another voice from heaven say: d “Come out of her, My people, 5 so that you will not share in her sins or contract any of her plagues. For her sins are piled up to heaven, 6 and God has remembered her iniquities. Give back to her as she has done to others; pay her back double for what she has 7 done; mix her a double portion in her own cup. As much as she has glorified herself and lived in luxury, give her the same measure of torment and grief. In her heart she says, ‘I sit as queen; 8 I am not a widow and will never see grief.’ Therefore her plagues will come in one day— death and grief and famine— and she will be consumed by fire, for mighty is the Lord God who a haunt for every unclean spirit and every unclean and judges her.” See" + }, + { + "verseNum": 3, + "text": "| 633 heart. The princes of Zoan are mere fools; Pharaoh’s wise counselors give senseless advice. How can you say to Pharaoh, “I am one of the wise, a son of eastern kings”? Where are your wise men now? Let them tell you and reveal what the LORD of Hosts has planned 12 13 against Egypt. b The princes of Zoan have become fools; 14 the princes of Memphis The cornerstones of her tribes have led Egypt astray. The LORD has poured into her are deceived. a spirit of confusion. Egypt has been led astray in all she does, 15 as a drunkard staggers through his own vomit. A Blessing upon the Earth There is nothing Egypt can do— head or tail, palm or reed. 16 17 In that day the Egyptians will be like women. They will tremble with fear beneath the uplifted hand of the LORD of Hosts, when He brandishes The land of Judah will bring it against them. terror to Egypt; whenever Judah is mentioned, Egypt will tremble over what the LORD of Hosts 18 has planned against it. In that day five cities in the land of Egypt will speak the language of Canaan and swear alle- c giance to the LORD of Hosts. One of them will be 19 called the City of the Sun. 20 In that day there will be an altar to the LORD in the center of the land of Egypt, and a pillar to the LORD near her border. It will be a sign and a witness to the LORD of Hosts in the land of Egypt. When they cry out to the LORD because of their oppressors, He will send them a savior and The LORD will make defender to rescue them. Himself known to Egyp" + }, + { + "verseNum": 4, + "text": "I am bewildered to hear, 4 I am dismayed to see. My heart falters; fear makes me tremble. The twilight I desired 5 has turned to horror. They prepare a table, they lay out a carpet, they eat, they drink! 6 Rise up, O princes, oil the shields! For this is what the Lord says to me: “Go, post a lookout 7 and have him report what he sees. When he sees chariots with teams of horse- men, 8 riders on donkeys, riders on camels, a he must be alert, fully alert.” Then the lookout shouted: “Day after day, my lord, I stand on the watchtower; night after night 9 I stay at my post. Look, here come the riders, horsemen in pairs.” And one answered, saying: b “Fallen, fallen is Babylon! 10 All the images of her gods lie shattered on the ground!” O my people, crushed on the threshing floor, I tell you what I have heard The Burden against Edom" + }, + { + "verseNum": 9, + "text": "and" + }, + { + "verseNum": 11, + "text": "–12) like foliage from the fig tree. 5 When My sword has drunk its fill in the heavens, then it will come down upon Edom, upon the people I have devoted to 6 destruction. The sword of the LORD is bathed in blood. It drips with fat— with the blood of lambs and goats, with the fat of the kidneys of rams. For the LORD has a sacrifice in Bozrah, 7 a great slaughter in the land of Edom. And the wild oxen will fall with them, the young bulls with the strong ones. Their land will be drenched with blood, 8 and their soil will be soaked with fat. For the LORD has a day of vengeance, b 9 a year of recompense for the cause of Zion. Edom’s streams will be turned to tar, 10 and her soil to sulfur; her land will become a blazing pitch. It will not be quenched—day or night. Its smoke will ascend forever. they cannot secure the mast or spread the From generation to generation it will lie sail. 11 desolate; 24 Then an abundance of spoils will be divided, and even the lame will carry off plunder. And no resident of Zion will say, “I am sick.” Judgment on the Nations The people who dwell there will be forgiven of iniquity. no one will ever again pass through it. The desert owl and screech owl will possess it, c and the great owl and raven will dwell in it. 34 Come near, O nations, to listen; pay attention, O peoples. Let the earth hear, and all that fills it, a 2 cherem the world and all that springs from it. Forms of the Hebrew The LORD will stretch out over Edom 12 a measuring line of chaos a" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 13, + "text": "“Let us eat and drink, 33 for tomorrow we die.” f 34 Do not be deceived: “Bad company corrupts good character.” Sober up as you ought, and stop sinning; for some of you are ignorant of God. The Resurrection Body I say this to your shame. 35 But someone will ask, “How are the dead raised? With what kind of body will they come?” b 38 let him be ignorant Thais c 5 BYZ and TR That is, Peter Probably a quote from the Greek comedy by Menander 36 37 You fool! What you sow does not come to life And what you sow is not the unless it dies. body that will be, but just a seed, perhaps of But God gives it a wheat or something else. body as He has designed, and to each kind of seed 39 He gives its own body. 38 40 Not all flesh is the same: Men have one kind of flesh, animals have another, birds another, and There are also heavenly bodies fish another. and earthly bodies. But the splendor of the heav- enly bodies is of one degree, and the splendor of the earthly bodies is of another. The sun has one degree of splendor, the moon another, and the stars another; and star differs from star in 42 splendor. 41 44 43 So will it be with the resurrection of the dead: What is sown is perishable; it is raised imperish- It is sown in dishonor; it is raised in glory. able. It is sown in weakness; it is raised in power. It is sown a natural body; it is raised a spiritual body. If there is a natural body, there is also a So it is written: “The first man spiritual body. Adam became a living being”; the las" + }, + { + "verseNum": 22, + "text": ". Or or Or or 1106 |" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "–18) LORD, when I lay My vengeance upon them.’ 17 ” 26 c 2 3 4 In the eleventh month of the twelfth year, on the first day of the month, the “Son of word of the LORD came to me, saying, man, because Tyre has said of Jerusalem, ‘Aha! The gate to the nations is broken; it has swung open to me; now that she lies in ruins I will be therefore this is what the Lord GOD says: filled,’ ‘Behold, O Tyre, I am against you, and I will raise up many nations against you, as the sea brings up They will destroy the walls of Tyre its waves. and demolish her towers. I will scrape the soil She will be- from her and make her a bare rock. come a place to spread nets in the sea, for I have 6 spoken, declares the Lord GOD. She will become and the villages on her plunder for the nations, mainland will be slain by the sword. Then they 7 will know that I am the LORD.’ 5 d 8 For this is what the Lord GOD says: ‘Behold, I will bring against Tyre from the north Nebuchad- nezzar king of Babylon, king of kings, with horses and chariots, with cavalry and a great company of troops. He will slaughter the vil- lages of your mainland with the sword; he will set up siege works against you, build a ramp to your walls, and raise his shields against you. He will direct the blows of his battering rams against your walls and tear down your towers with his axes. His multitude of horses will cover you in c 1 their dust. Nebuchadnezzar . Likely reading of the original Hebrew text; MT 10 In 9 and Seir throughout Ezekiel" + }, + { + "verseNum": 11, + "text": "| 635 On that day the Lord GOD of Hosts called for weeping and wailing, 13 for shaven heads and the wearing of sackcloth. But look, there is joy and gladness, butchering of cattle and slaughtering of sheep, a eating of meat and drinking of wine: 14 “Let us eat and drink, for tomorrow we die!” The LORD of Hosts has revealed in my hearing: “Until your dying day, says the Lord GOD of Hosts. this sin of yours will never be atoned for,” A Message for Shebna 15 16 This is what the Lord GOD of Hosts says: “Go, say to Shebna, the steward in charge of the pal- What are you doing here, and who author- ace: ized you to carve out a tomb for yourself here— to chisel your tomb in the height and cut your 17 resting place in the rock? Look, O mighty man! The LORD is about to 18 shake you violently. He will take hold of you, roll you into a ball, and sling you into a wide land. There you will die, and there your glorious chariots will remain—a disgrace to the house of I will remove you from office, and your master. 20 you will be ousted from your position. 19 21 On that day I will summon My servant, Eliakim I will clothe him with your robe son of Hilkiah. and tie your sash around him. I will put your au- thority in his hand, and he will be a father to the 22 dwellers of Jerusalem and to the house of Judah. I will place on his shoulder the key to the house of David. What he opens no one can shut, and I will drive what he shuts no one can open. him like a peg into a firm place, and he will be a" + }, + { + "verseNum": 12, + "text": "12 6 He said, “You shall rejoice no more, O oppressed Virgin Daughter of Sidon. Therefore a curse has consumed the earth, and its inhabitants must bear the guilt; 13 Get up and cross over to Cyprus— a even there you will find no rest.” Look at the land of the Chaldeans a people now of no account. — The Assyrians destined it for the desert creatures; they set up their siege towers and 14 stripped its palaces. They brought it to ruin. Wail, O ships of Tarshish, 15 for your harbor has been destroyed! At that time Tyre will be forgotten for seventy years—the span of a king’s life. But at the end of seventy years, it will happen to Tyre as in the 16 song of the harlot: “Take up your harp, stroll through the city, O forgotten harlot. Make sweet melody, sing many a song, so you will be remembered.” 17 18 And at the end of seventy years, the LORD will restore Tyre. Then she will return to hire as a prostitute and sell herself to all the kingdoms on Yet her profits and wages the face of the earth. will be set apart to the LORD; they will not be stored or saved, for her profit will go to those who live before the LORD, for abundant food and God’s Judgment on the Earth fine clothing. 24 Behold, the LORD lays waste the earth and leaves it in ruins. the earth’s dwellers have been burned, and only a few survive. The new wine dries up, the vine withers. All the merrymakers now groan. The joyful tambourines have ceased; the noise of revelers has stopped; the joyful harp is silent. They no lo" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "–12) and they will shout in triumph over you.” 15 The LORD made the earth by His power; He established the world by His wisdom and stretched out the heavens by His 16 understanding. When He thunders, the waters in the heavens roar; He causes the clouds to rise from the ends of the earth. He generates the lightning with the rain and brings forth the wind from His b 3 storehouses. cherem c 4 is a code name for Chaldea, that is, Babylonia. d 11 Forms of the Hebrew Fill the hand with the shields! things or persons to the LORD, either by destroying them or by giving them as an offering. also in v. 54 LXX and some translations of the Hebrew; literally or refer to the giving over of Take up the shields! That is, the Babylonians; 734 |" + }, + { + "verseNum": 8, + "text": "the That is, (see" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 8, + "text": "| 637 and remove the disgrace of His people For the LORD has spoken. from the whole earth. 9 And in that day it will be said, “Surely this is our God; we have waited for Him, and He has saved us. This is the LORD for whom we have waited. 10 Let us rejoice and be glad in His salvation.” For the hand of the LORD will rest on this mountain. 11 But Moab will be trampled in his place as straw is trodden into the dung pile. He will spread out his hands within it, as a swimmer spreads his arms to swim. c 12 His pride will be brought low, despite the skill of his hands. The high-walled fortress will be brought down, A Song of Salvation cast to the ground, into the dust. 26 In that day this song will be sung in the land of Judah: We have a strong city; 2 salvation is established as its walls and ramparts. Open the gates so a righteous nation may 3 enter— one that remains faithful. You will keep in perfect peace the steadfast of 4 mind, because he trusts in You. Trust in the LORD forever, 5 because GOD the LORD is the Rock eternal. You subdue the uproar of foreigners. For He has humbled those who dwell As the shade of a cloud cools the heat, 6 so the song of the ruthless is silenced. On this mountain the LORD of Hosts will prepare a lavish banquet for all the peoples, a feast of aged wine, of choice meat, 7 of finely aged wine. On this mountain He will swallow up 8 the shroud that enfolds all peoples, the sheet that covers all nations; a He will swallow up death forever. b The Lord GOD" + }, + { + "verseNum": 9, + "text": "9 a My soul longs for You in the night; indeed, my spirit seeks You at dawn. For when Your judgments come upon the 21 Hide yourselves a little while until the wrath has passed. For behold, the LORD is coming out of His earth, 10 the people of the world learn righteousness. dwelling to punish the inhabitants of the earth for their iniquity. Though grace is shown to the wicked man, he does not learn righteousness. The earth will reveal her bloodshed The LORD’s Vineyard" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "–13) Get up! Let us go on from here. 15 2 “I am the true vine, and My Father is the He cuts off keeper of the vineyard. every branch in Me that bears no fruit, and every 3 branch that does bear fruit, He prunes to make it You are already clean be- even more fruitful. cause of the word I have spoken to you. Remain in Me, and I will remain in you. Just as no branch can bear fruit by itself unless it remains in the vine, neither can you bear fruit unless you re- 5 main in Me. 4 6 7 I am the vine and you are the branches. The one who remains in Me, and I in him, will bear much fruit. For apart from Me you can do nothing. If anyone does not remain in Me, he is like a branch that is thrown away and withers. Such branches are gathered up, thrown into the fire, and If you remain in Me and My words re- burned. main in you, ask whatever you wish, and it will be done for you. This is to My Father’s glory, that you bear much fruit, proving yourselves to No Greater Love be My disciples. 9 8 10 As the Father has loved Me, so have I loved you. If you keep My command- Remain in My love. ments, you will remain in My love, just as I have a 20 kept My Father’s commandments and remain in b 25 11 His love. I have told you these things so that My 12 joy may be in you and your joy may be complete. 13 This is My commandment, that you love one another as I have loved you. Greater love has no one than this, that he lay down his life for his 14 friends. 15 16 You are My friends if you do what I command" + }, + { + "verseNum": 9, + "text": "and" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 11, + "text": "–12 Or 1032 | 1 Corinthians 14:36 husbands at home; for it is dishonorable for a 36 woman to speak in the church. 37 a Did the word of God originate with you? Or are If anyone you the only ones it has reached? considers himself a prophet or spiritual person, 38 let him acknowledge that what I am writing you But if anyone ignores is the Lord’s command. 39 this, he himself will be ignored. b 40 So, my brothers, be eager to prophesy, and do But everything not forbid speaking in tongues. The Resurrection of Christ must be done in a proper and orderly manner. 15 2 Now, brothers, I want to remind you of the gospel I preached to you, which you By this received, and in which you stand firm. gospel you are saved, if you hold firmly to the word I preached to you. Otherwise, you have be- 3 lieved in vain. 5 4 and that He appeared to Cephas For what I received I passed on to you as of first importance: that Christ died for our sins accord- ing to the Scriptures, that He was buried, that c He was raised on the third day according to the 6 Scriptures, and then to the Twelve. After that, He appeared to more than five hundred brothers at once, most of whom are still living, though some have fallen asleep. Then He appeared to James, then to all the apostles. And last of all He appeared to me 9 also, as to one of untimely birth. 8 7 10 For I am the least of the apostles and am unwor- thy to be called an apostle, because I persecuted the church of God. But by the grace of God I am what I am, an" + }, + { + "verseNum": 14, + "text": "–22 ; workers; you are God’s field, God’s building." + }, + { + "verseNum": 16, + "text": "(see also LXX) Lev. 18:5; see also Ezek. 20:11, 13, 21. 1016 |" + }, + { + "verseNum": 17, + "text": "| 639 When its limbs are dry, they are broken off. Women come and use them for kindling; for this is a people without understanding. Therefore their Maker has no compassion 12 on them, and their Creator shows them no favor. a 13 In that day the LORD will thresh from the flow- to the Wadi of Egypt, and you, O ing Euphrates Israelites, will be gathered one by one. And in that day a great ram’s horn will sound, and those who were perishing in Assyria will come forth with those who were exiles in Egypt. And they will worship the LORD on the holy mountain in The Captivity of Ephraim Jerusalem. 28 b Woe to the majestic crown of Ephraim’s drunkards, to the fading flower of his glorious splendor, 2 set on the summit above the fertile valley, the pride of those overcome by wine. Behold, the Lord has one who is strong and mighty. Like a hailstorm or destructive tempest, like a driving rain or flooding downpour, he will smash that crown to the ground. The majestic crown of Ephraim’s drunkards 3 4 will be trampled underfoot. The fading flower of his beautiful splendor, set on the summit above the fertile valley, will be like a ripe fig before the summer harvest: 5 Whoever sees it will take it in his hand and swallow it. On that day the LORD of Hosts will be a crown of glory, 6 a diadem of splendor to the remnant of His people, a spirit of justice to him who sits in judgment, and a strength to those who repel the 16 7 onslaught at the gate. These also stagger from wine and stumble from st" + }, + { + "verseNum": 18, + "text": "28 18 Hail will sweep away your refuge of lies, Grain for bread must be ground, and water will flood your hiding place. Your covenant with death will be dissolved, and your agreement with Sheol will not stand. When the overwhelming scourge passes 19 through, you will be trampled by it. As often as it passes through, it will carry you away; it will sweep through morning after morning, by day and by night.” 20 The understanding of this message will bring sheer terror. Indeed, the bed is too short to stretch out on, 21 and the blanket too small to wrap around you. For the LORD will rise up as at Mount Perazim. He will rouse Himself as in the Valley of Gibeon, to do His work, His strange work, 22 and to perform His task, His disturbing task. So now, do not mock, or your shackles will become heavier. Indeed, I have heard from the Lord GOD of Hosts a decree of destruction against the whole Listen and Hear land. 23 24 Listen and hear my voice. Pay attention and hear what I say. Does the plowman plow for planting every day? 25 Does he continuously loosen and harrow the soil? but it is not endlessly threshed. 29 Though the wheels of the cart roll over it, the horses do not crush it. This also comes from the LORD of Hosts, who is wonderful in counsel Woe to David’s City" + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "–16) the very stones will cry out.” 41 42 44 43 As Jesus approached Jerusalem and saw the city, He wept over it and said, “If only you had known on this day what would bring you peace! For the But now it is hidden from your eyes. days will come upon you when your enemies will barricade you and surround you and hem you in They will level you to the on every side. ground—you and the children within your walls. They will not leave one stone on another, because you did not recognize the time of your Jesus Cleanses the Temple visitation from God. (Matt. 21:12–17 ;" + }, + { + "verseNum": 10, + "text": ". ally" + }, + { + "verseNum": 13, + "text": "(see also LXX)" + }, + { + "verseNum": 14, + "text": "(see also LXX) BYZ and TR Literally ; twice in this verse" + }, + { + "verseNum": 16, + "text": ";" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 6, + "text": "| 641 11 He has shut your eyes, O prophets; He has covered your heads, O seers. and who with false charges 22 deprive the innocent of justice. And the entire vision will be to you like the words sealed in a scroll. If it is handed to someone 12 to read, he will say, “I cannot, because it is sealed.” Or if the scroll is handed to one unable to read, 13 he will say, “I cannot read.” Therefore the LORD who redeemed Abraham says of the house of Jacob: 23 “No longer will Jacob be ashamed and no more will his face grow pale. For when he sees his children around him, Therefore the Lord said: “These people draw near to Me with their mouths and honor Me with their lips, but their hearts are far from Me. a 14 Their worship of Me is but rules taught by men. Therefore I will again confound these people with wonder upon wonder. The wisdom of the wise will vanish, b 15 and the intelligence of the intelligent will be hidden. ” Woe to those who dig deep 16 to hide their plans from the LORD. In darkness they do their works and say, “Who sees us, and who will know?” You have turned things upside down, as if the potter were regarded as clay. Shall what is formed say to him who formed c it, “He did not make me”? Can the pottery say of the potter, “He has no understanding”? Sanctification for the Godly 17 In a very short time, 18 will not Lebanon become an orchard, and the orchard seem like a forest? On that day the deaf will hear the words of the scroll, 19 and out of the deep darkness the eyes" + }, + { + "verseNum": 7, + "text": "7 Egypt’s help is futile and empty; therefore I have called her Rahab Who Sits Still. a 8 God Will Be Gracious 18 Therefore the LORD longs to be gracious to you; Go now, write it on a tablet in their presence therefore He rises to show you compassion, and inscribe it on a scroll; it will be for the days to come, 9 a witness forever and ever. These are rebellious people, deceitful children, 10 children unwilling to obey the LORD’s instruction. They say to the seers, “Stop seeing visions!” and to the prophets, “Do not prophesy to us the truth! 11 Speak to us pleasant words; prophesy illusions. 12 Get out of the way; turn off the road. Rid us of the Holy One of Israel!” Therefore this is what the Holy One of Israel says: “Because you have rejected this message, trusting in oppression and relying on 13 deceit, this iniquity of yours is like a breach about to fail, a bulge in a high wall, 14 whose collapse will come suddenly— in an instant! It will break in pieces like a potter’s jar, shattered so that no fragment can be found. Not a shard will be found in the dust large enough to scoop the coals from a 15 hearth for the LORD is a just God. 19 Blessed are all who wait for Him. 20 O people in Zion who dwell in Jerusalem, you will weep no more. He will surely be gracious when you cry for help; when He hears, He will The Lord will give you the bread answer you. of adversity and the water of affliction, but your Teacher will no longer hide Himself—with your 21 own eyes you will see Hi" + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 7, + "text": "| 643 be heard and His mighty arm to be revealed, striking in angry wrath with a flame of consuming fire, and with cloudburst, storm, and hailstones. 31 For Assyria will be shattered at the voice of 32 the LORD; He will strike them with His scepter. a And with every stroke of the rod of punishment that the LORD brings down on them, 33 the tambourines and lyres will sound as He battles with weapons brandished. For Topheth has long been prepared; it has been made ready for the king. Its funeral pyre is deep and wide, with plenty of fire and wood. The breath of the LORD, like a torrent of burning sulfur, Woe to Those Who Rely on Egypt sets it ablaze. 31 Woe to those who go down to Egypt for help, who rely on horses, who trust in their abundance of chariots and in their multitude of horsemen. They do not look to the Holy One of Israel; 2 they do not seek the LORD. Yet He too is wise and brings disaster; He does not call back His words. He will rise up against the house of the 3 wicked and against the allies of evildoers. But the Egyptians are men, not God; their horses are flesh, not spirit. When the LORD stretches out His hand, the helper will stumble, and the one he helps will fall; both will perish together. 4 For this is what the LORD has said to me: “Like a lion roaring or a young lion over its prey— and though a band of shepherds is called out against it, it is not terrified by their shouting or subdued by their clamor— so the LORD of Hosts will protect Jerusalem. 6 He will" + }, + { + "verseNum": 8, + "text": "8 But a noble man makes honorable plans; The Women of Jerusalem he stands up for worthy causes. 9 Stand up, you complacent women; listen to me. Give ear to my word, 10 you overconfident daughters. In a little more than a year you will tremble, O secure ones. For the grape harvest will fail 11 and the fruit harvest will not arrive. Shudder, you ladies of leisure; tremble, you daughters of complacency. 12 Strip yourselves bare and put sackcloth around your waists. Beat your breasts for the pleasant fields, 13 for the fruitful vines, and for the land of my people, overgrown with thorns and briers— even for every house of merriment 14 in this city of revelry. 7 a For the palace will be forsaken, the busy city abandoned. The hill and the watchtower will become caves forever— 15 the delight of wild donkeys and a pasture for flocks— until the Spirit is poured out upon us from on high. 16 Then the desert will be an orchard, and the orchard will seem like a forest. Then justice will inhabit the wilderness, 17 and righteousness will dwell in the fertile field. The work of righteousness will be peace; the service of righteousness will be quiet 11 confidence forever. 18 20 Then my people will dwell in a peaceful 19 place, in safe and secure places of rest. But hail will level the forest, and the city will sink to the depths. Blessed are those who sow beside abundant waters, The LORD Is Exalted who let the ox and donkey range freely. 33 Woe to you, O destroyer never destroyed, The Ophel a" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 4, + "text": ", and" + }, + { + "verseNum": 5, + "text": "–17) from the LORD of Hosts, the God of Israel. 11 c This is the burden against Dumah: d One calls to me from Seir, 12 “Watchman, what is left of the night? Watchman, what is left of the night?” The watchman replies, “Morning has come, but also the night. If you would inquire, then inquire. The Burden against Arabia Come back yet again.” 13 This is the burden against Arabia: 14 In the thickets of Arabia you must lodge, O caravans of Dedanites. Bring water for the thirsty, O dwellers of Tema; b 9 lion meet the refugees with food. d 11 Seir a 8 silence 15 For they flee from the sword— the sword that is drawn— from the bow that is bent, 16 and from the stress of battle. 17 For this is what the Lord says to me: “Within one year, as a hired worker would count it, all the glory of Kedar will be gone. The remaining archers, the warriors of Kedar, will be few.” The Valley of Vision For the LORD, the God of Israel, has spoken. 22 This is the burden against the Valley of Vision: What ails you now, 2 that you have all gone up to the rooftops, O city of commotion, O town of revelry? Your slain did not die by the sword, 3 nor were they killed in battle. All your rulers have fled together, captured without a bow. All your fugitives were captured together, 4 having fled to a distant place. Therefore I said, “Turn away from me, let me weep bitterly! Do not try to console me 5 over the destruction of the daughter of my people.” For the Lord GOD of Hosts has set a day of tumult and trampling a" + }, + { + "verseNum": 12, + "text": "| 645 He who walks righteously and speaks with sincerity, who refuses gain from extortion, whose hand never takes a bribe, 16 who stops his ears against murderous plots and shuts his eyes tightly against evil— he will dwell on the heights; the mountain fortress will be his refuge; 17 his food will be provided and his water assured. 18 Your eyes will see the King in His beauty and behold a land that stretches afar. Your mind will ponder the former terror: “Where is he who tallies? Where is he who 19 weighs? Where is he who counts the towers?” You will no longer see the insolent, a people whose speech is unintelligible, who stammer in a language you cannot understand. 20 Look upon Zion, the city of our appointed feasts. Your eyes will see Jerusalem, a peaceful pasture, a tent that does not wander; 21 its tent pegs will not be pulled up, nor will any of its cords be broken. But there the Majestic One, our LORD, will be for us a place of rivers and wide canals, 22 where no galley with oars will row, and no majestic vessel will pass. For the LORD is our Judge, the LORD is our lawgiver, the LORD is our King. 23 It is He who will save us. Your ropes are slack; The LORD is angry with all the nations a and furious with all their armies. He will devote them to destruction; 3 He will give them over to slaughter. Their slain will be left unburied, 4 and the stench of their corpses will rise; the mountains will flow with their blood. All the stars of heaven will be dissolved. The skies wi" + }, + { + "verseNum": 13, + "text": "13 7 Her towers will be overgrown with thorns, her fortresses with thistles and briers. a b She will become a haunt for jackals, 14 an abode for ostriches. c The desert creatures will meet with hyenas, and one wild goat will call to another. There the night creature 15 will settle and find her place of repose. There the owl will make her nest; she will lay and hatch her eggs and gather her brood under her shadow. Even there the birds of prey will gather, 16 each with its mate. Search and read the scroll of the LORD: Not one of these will go missing, not one will lack her mate, 17 because He has ordered it by His mouth, and He will gather them by His Spirit. He has allotted their portion; His hand has distributed it by measure. They will possess it forever; they will dwell in it from generation The Glory of Zion to generation. 35 The wilderness and the dry land will be glad; 2 the desert will rejoice and blossom like a rose. It will bloom profusely and rejoice with joy and singing. The glory of Lebanon will be given to it, the splendor of Carmel and Sharon. They will see the glory of the LORD, 3 5 the splendor of our God. d Strengthen the limp hands 4 and steady the feeble knees! Say to those with anxious hearts: “Be strong, do not fear! Behold, your God will come with vengeance. With divine retribution He will come to save you.” 6 Then the eyes of the blind will be opened and the ears of the deaf unstopped. Then the lame will leap like a deer The parched ground will become a" + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 3, + "text": "" + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "–22) 17 c d e the Rabsaris, and the Rabshakeh, Nevertheless, the king of Assyria sent the Tar- tan, along with a great army, from Lachish to King Hezekiah at Jerusalem. They advanced up to Jerusalem and stationed themselves by the aqueduct of the up- 18 per pool, on the road to the Launderer’s Field. Then they called for the king. And Eliakim son of Hilkiah the palace administrator, Shebnah the scribe, and Joah son of Asaph the recorder, went a 14 300 talents out to them. c 17 Tartan 20 The Rabshakeh said to them, “Tell Hezekiah that this is what the great king, the king of As- syria, says: What is the basis of this confidence of You claim to have a strategy and yours? strength for war, but these are empty words. In whom are you now trusting, that you have re- 21 belled against me? 22 Look now, you are trusting in Egypt, that splin- tered reed of a staff that will pierce the hand of anyone who leans on it. Such is Pharaoh king of But if you say to Egypt to all who trust in him. me, ‘We trust in the LORD our God,’ is He not the One whose high places and altars Hezekiah has removed, saying to Judah and Jerusalem: ‘You 23 must worship before this altar in Jerusalem’? Now, therefore, make a bargain with my mas- ter, the king of Assyria. I will give you two thou- 24 sand horses—if you can put riders on them! For how can you repel a single officer among the least of my master’s servants when you de- pend on Egypt for chariots and horsemen? So now, was it apart from the LORD that I" + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 8, + "text": "–13) 8 When the Rabshakeh heard that the king of Assyria had left Lachish, he withdrew and found 9 the king fighting against Libnah. a Now Sennacherib had been warned about “Look, he has set out to Tirhakah king of Cush: fight against you.” 10 So Sennacherib again sent messengers to Heze- “Give this message to Hezekiah kiah, saying, king of Judah: 11 ‘Do not let your God, in whom you trust, deceive you by saying that Jerusalem will not be delivered into the hand of the king Surely you have heard what the of Assyria. b kings of Assyria have done to all the other 12 countries, devoting them to destruction. Did the gods Will you then be spared? of the nations destroyed by my fathers rescue those nations—the gods of Gozan, Haran, and Rezeph, and of the people of Eden Where are the kings of in Telassar? Hamath, Arpad, Sepharvaim, Hena, and Ivvah?’ 13 Hezekiah’s Prayer ”" + }, + { + "verseNum": 11, + "text": "| 647 Then Hilkiah’s son Eliakim the palace adminis- trator, Shebna the scribe, and Asaph’s son Joah the recorder came to Hezekiah with their clothes torn, and they relayed to him the words of the Isaiah’s Message of Deliverance Rabshakeh. (2 Kings 19:1–7) 37 2 3 On hearing this report, King Hezekiah tore his clothes, put on sackcloth, and en- tered the house of the LORD. And he sent Eli- akim the palace administrator, Shebna the scribe, and the leading priests, all wearing sack- to tell cloth, to the prophet Isaiah son of Amoz him, “This is what Hezekiah says: Today is a day of distress, rebuke, and disgrace; for children have come to the point of birth, but there is no Perhaps the LORD strength to deliver them. your God will hear the words of the Rabshakeh, whom his master the king of Assyria has sent to defy the living God, and He will rebuke him for the words that the LORD your God has heard. Therefore lift up a prayer for the remnant that 5 still survives.” 6 4 So the servants of King Hezekiah went to Isaiah, who replied, “Tell your master that this is what the LORD says: ‘Do not be afraid of the words you have heard, with which the servants of the king of Assyria have blasphemed Me. Behold, I will put a spirit in him so that he will hear a rumor and return to his own land, where I will cause Sennacherib’s Blasphemous Letter him to fall by the sword.’ (2 Kings 19:8–13) ” 7 8 When the Rabshakeh heard that the king of As- syria had left Lachish, he withdrew and found the 9" + }, + { + "verseNum": 12, + "text": "12 Did the gods of Will you then be spared? the nations destroyed by my fathers rescue those nations—the gods of Gozan, Haran, and Rezeph, and of the people of Eden in Telassar? Where are the kings of Hamath, Hezekiah’s Prayer (2 Kings 19:14–19) Arpad, Sepharvaim, Hena, and Ivvah?’ 13 ” 14 So Hezekiah received the letter from the mes- sengers, read it, and went up to the house of the And LORD and spread it out before the LORD. Hezekiah prayed to the LORD: 15 16 “O LORD of Hosts, God of Israel, enthroned above the cherubim, You alone are God over 17 all the kingdoms of the earth. You made the Incline Your ear, O heavens and the earth. LORD, and hear; open Your eyes, O LORD, and see. Listen to all the words that Sennach- 18 erib has sent to defy the living God. Truly, O LORD, the kings of Assyria have 19 laid waste all these countries and their lands. They have cast their gods into the fire and destroyed them, for they were not gods, but only wood and stone—the work of human 20 hands. And now, O LORD our God, save us from his hand, so that all the kingdoms of the earth ” may know that You alone, O LORD, are God. Sennacherib’s Fall Prophesied (2 Kings 19:20–34) a 21 Then Isaiah son of Amoz sent a message to Hezekiah: “This is what the LORD, the God of Is- rael, says: Because you have prayed to Me con- this is the cerning Sennacherib king of Assyria, word that the LORD has spoken against him: 22 ‘The Virgin Daughter of Zion despises you and mocks you; the Daughter of Jerusalem 23" + }, + { + "verseNum": 14, + "text": "–20) 14 So Hezekiah received the letter from the mes- sengers, read it, and went up to the house of the And LORD and spread it out before the LORD. Hezekiah prayed before the LORD: 15 “O LORD, God of Israel, enthroned between the cherubim, You alone are God over all the 16 kingdoms of the earth. You made the heav- ens and the earth. Incline Your ear, O LORD, and hear; open Your eyes, O LORD, and see. Listen to the words that Sennach- 17 erib has sent to defy the living God. Truly, O LORD, the kings of Assyria have 18 laid waste these nations and their lands. They have cast their gods into the fire and destroyed them, for they were not gods, but only wood and stone—the work of human 19 hands. And now, O LORD our God, please save us from his hand, so that all the kingdoms of the earth may know that You alone, O LORD, are God.” cherem That is, the upper Nile region Forms of the Hebrew refer to the giving over of things or persons to the LORD, either by destroying them or by giving them as an offering. 362 | 2 Kings 19:20 Sennacherib’s Fall Prophesied" + }, + { + "verseNum": 21, + "text": "–35) 20 Then Isaiah son of Amoz sent a message to Hezekiah: “This is what the LORD, the God of Is- rael, says: I have heard your prayer concerning This is the word Sennacherib king of Assyria. that the LORD has spoken against him: 21 ‘The Virgin Daughter of Zion despises you and mocks you; 22 the Daughter of Jerusalem shakes her head behind you. Whom have you taunted and blasphemed? Against whom have you raised your voice 23 and lifted your eyes in pride? Against the Holy One of Israel! Through your servants you have taunted the Lord, and you have said: “With my many chariots I have ascended to the heights of the mountains, to the remote peaks of Lebanon. a I have cut down its tallest cedars, the finest of its cypresses. 24 I have reached its farthest outposts, the densest of its forests. I have dug wells and drunk foreign waters. Have you not heard? Long ago I ordained it; in days of old I planned it. Now I have brought it to pass, that you should crush fortified cities 26 into piles of rubble. Therefore their inhabitants, devoid of power, are dismayed and ashamed. They are like plants in the field, tender green shoots, 27 grass on the rooftops, scorched before it is grown. But I know your sitting down, 28 your going out and coming in, and your raging against Me. Because your rage and arrogance against Me have reached My ears, a 23 pines I will put My hook in your nose b 31 and My bit in your mouth; The zeal of the LORD or junipers c 37 or firs Or With the soles of my feet 2" + }, + { + "verseNum": 36, + "text": "–38) ” 35 And that very night the angel of the LORD went out and struck down 185,000 men in the camp of the Assyrians. When the people got up the next So morning, there were all the dead bodies! Sennacherib king of Assyria broke camp and withdrew. He returned to Nineveh and stayed 37 there. 36 c One day, while he was worshiping in the tem- ple of his god Nisroch, his sons Adrammelech and Sharezer put him to the sword and escaped to the land of Ararat. And his son Esar-haddon reigned in his place. his sons reads . LXX and an alternate MT reading (see also" + }, + { + "verseNum": 38, + "text": "); MT lacks . LXX, many Hebrew manuscripts, and an alternate MT reading; the other alternate Hezekiah’s Illness and Recovery (2 Chronicles 32:24–31 ;" + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "–8) 20 In those days Hezekiah became mortally ill. The prophet Isaiah son of Amoz came to him and said, “This is what the LORD says: ‘Put your house in order, for you are about to die; you 2 will not recover.’ ” 3 Then Hezekiah turned his face to the wall and prayed to the LORD, saying, “Please, O LORD, re- member how I have walked before You faithfully and with wholehearted devotion; I have done what is good in Your sight.” And Hezekiah wept a 4 bitterly. 5 Before Isaiah had left the middle courtyard, “Go the word of the LORD came to him, saying, back and tell Hezekiah the leader of My people that this is what the LORD, the God of your father David, says: ‘I have heard your prayer; I have seen your tears. I will surely heal you. On the third day from now you will go up to the house of the LORD. I will add fifteen years to your life. And I will deliver you and this city from the hand of the king of Assyria. I will defend this city for 7 My sake and for the sake of My servant David.’ ” 6 Then Isaiah said, “Prepare a poultice of figs.” So they brought it and applied it to the boil, and Hez- 8 ekiah recovered. Now Hezekiah had asked Isaiah, “What will be the sign that the LORD will heal me and that I will 9 go up to the house of the LORD on the third day?” And Isaiah had replied, “This will be a sign to you from the LORD that He will do what He has promised: Would you like the shadow to go for- 10 ward ten steps, or back ten steps?” “It is easy for the shadow to lengthen ten ste" + }, + { + "verseNum": 18, + "text": "| 649 33 So this is what the LORD says about the king of Assyria: ‘He will not enter this city or shoot an arrow into it. 34 He will not come before it with a shield or build up a siege ramp against it. shadow that falls on the stairway of Ahaz go back ten steps.’ ” So the sunlight went back the ten steps it had de- Hezekiah’s Song of Thanksgiving scended. 9 He will go back the way he came, and he will not enter this city,’ declares the LORD. 35 ‘I will defend this city and save it for My own sake Jerusalem Delivered from the Assyrians and for the sake of My servant David.’ (2 Kings 19:35–37 ; 2 Chronicles 32:20–23) ” 36 Then the angel of the LORD went out and struck down 185,000 men in the camp of the As- syrians. When the people got up the next morn- 37 ing, there were all the dead bodies! a 38 So Sennacherib king of Assyria broke camp and withdrew. He returned to Nineveh and One day, while he was worship- stayed there. ing in the temple of his god Nisroch, his sons Adrammelech and Sharezer put him to the sword and escaped to the land of Ararat. And his son Hezekiah’s Illness and Recovery Esar-haddon reigned in his place. (2 Kings 20:1–11 ; 2 Chronicles 32:24–31) 38 In those days Hezekiah became mortally ill. The prophet Isaiah son of Amoz came to him and said, “This is what the LORD says: ‘Put your house in order, for you are about to die; you 2 will not recover.’ ” 3 Then Hezekiah turned his face to the wall and saying, “Please, O LORD, re- prayed to the LORD, member how" + }, + { + "verseNum": 19, + "text": "19 The living, only the living, can thank You, as I do today; 20 fathers will tell their children about Your faithfulness. The LORD will save me; we will play songs on stringed instruments all the days of our lives 21 in the house of the LORD. Now Isaiah had said, “Prepare a lump of pressed figs and apply it to the boil, and he will 22 recover.” And Hezekiah had asked, “What will be the Hezekiah Shows His Treasures sign that I will go up to the house of the LORD?” (2 Kings 20:12–19) 39 At that time Merodach-baladan son of Baladan king of Babylon sent letters and 2 a gift to Hezekiah, for he had heard about Heze- And Hezekiah wel- kiah’s illness and recovery. comed the envoys gladly and showed them what was in his treasure house—the silver, the gold, the spices, and the precious oil, as well as his entire armory—all that was found in his store- houses. There was nothing in his palace or in all 3 his dominion that Hezekiah did not show them. Then the prophet Isaiah went to King Hezekiah and asked, “Where did those men come from, and what did they say to you?” “They came to me from a distant land,” Hezekiah 4 replied, “from Babylon.” “What have they seen in your palace?” Isaiah asked. “They have seen everything in my palace,” an- swered Hezekiah. “There is nothing among my 5 treasures that I did not show them.” 6 7 Then Isaiah said to Hezekiah, “Hear the word of The time will surely come the LORD of Hosts: when everything in your palace and all that your fathers have stored up u" + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "); MT Or or 364 | 2 Kings 21:5 5 18 In both courtyards of the I will put My Name.” a 6 house of the LORD, he built altars to all the host of heaven. practiced sorcery and divination, and consulted mediums and spiritists. He did great evil in the 7 sight of the LORD He sacrificed his own son in the fire, , provoking Him to anger. 8 Manasseh even took the carved Asherah pole he had made and set it up in the temple, of which the LORD had said to David and his son Solomon, “In this temple and in Jerusalem, which I have cho- sen out of all the tribes of Israel, I will establish My Name forever. I will never again cause the feet of the Israelites to wander from the land that I gave to their fathers, if only they are careful to do all I have commanded them—the whole Law 9 that My servant Moses commanded them.” But the people did not listen and Manasseh led them astray, so that they did greater evil than the nations that the LORD had destroyed before the Manasseh’s Idolatries Rebuked Israelites. (2 Chronicles 33:10–20) 10 11 12 And the LORD spoke through His servants the prophets, saying, “Since Manasseh king of Judah has committed all these abominations, act- ing more wickedly than the Amorites who pre- ceded him, and with his idols has caused Judah to sin, this is what the LORD, the God of Israel, says: ‘Behold, I am bringing such calamity upon Jerusalem and Judah that the news will reverber- 13 ate in the ears of all who hear it. 14 I will stretch out over Jerusalem the measuring" + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "–5 ;" + }, + { + "verseNum": 3, + "text": "(see also LXX) Or 15 So he got up, took the Child and His mother by where he stayed night, and withdrew to Egypt, until the death of Herod. This fulfilled what the Lord had spoken through the prophet: “Out of Weeping and Great Mourning (Jer. 31:1–25) Egypt I called My Son.” 16 d When Herod saw that he had been outwitted by the Magi, he was filled with rage. Sending or- ders, he put to death all the boys in Bethlehem and its vicinity who were two years old and un- der, according to the time he had learned from Then what was spoken through the the Magi. 18 prophet Jeremiah was fulfilled: 17 “A voice is heard in Ramah, weeping and great mourning, Rachel weeping for her children and refusing to be comforted, The Return to Nazareth" + }, + { + "verseNum": 6, + "text": "–8) your faith and hope are in God. 22 e 23 Since you have purified your souls by obedi- ence to the truth so that you have a genuine love for your brothers, love one another deeply, from For you have been born again, a pure heart. not of perishable seed, but of imperishable, 24 through the living and enduring word of God. For, “All flesh is like grass, and all its glory like the flowers of the 25 field; f the grass withers and the flowers fall, but the word of the Lord stands forever.” It was revealed to them that they were not a 1 serving themselves, but you, when they foretold To the elect sojourners of the Diaspora of Pontus, Galatia, Cappadocia, Asia, and Bithynia has caused us to be born again has begotten us again And this is the word that was proclaimed to you. Literally gird up the loins of your mind located in what is now Turkey. b 3 d 16 Or Lev. 11:44–45; Lev. 19:2 e 22 or from the heart Wherefore c 13 . These provinces were f 25 Literally SBL, NE, and WH" + }, + { + "verseNum": 9, + "text": "–31) 33 O, the depth of the riches of the wisdom and knowledge of God! How unsearchable are His judgments, 34 and untraceable His ways! d 35 “Who has known the mind of the Lord? Or who has been His counselor?” e “Who has first given to God, 36 that God should repay him?” For from Him and through Him and to Him are all things. Living Sacrifices To Him be the glory forever! Amen. (1 Corinthians 3:16–23 ; 1 Corinthians 6:18–20) 12 Therefore I urge you, brothers, on account of God’s mercy, to offer your f bodies as living sacrifices, holy and pleasing to 2 God, which is your spiritual service of worship. Do not be conformed to this world, but be trans- formed by the renewing of your mind. Then you will be able to test and approve what is the good, 3 pleasing, and perfect will of God. 4 For by the grace given me I say to every one of you: Do not think of yourself more highly than you ought, but think of yourself with sober judg- ment, according to the measure of faith God has Just as each of us has one body with given you. many members, and not all members have the so in Christ we who are many same function, are one body, and each member belongs to one 6 another. 5 We have different gifts according to the grace 7 given us. If one’s gift is prophecy, let him use it in 8 if it is serving, let him proportion to his faith; serve; if it is teaching, let him teach; if it is en- couraging, let him encourage; if it is giving, let him give generously; if it is leading, let him lead with di" + }, + { + "verseNum": 13, + "text": "(see also LXX)" + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 2, + "text": "| 651 He tends His flock like a shepherd; He gathers the lambs in His arms and carries them close to His heart. He gently leads the nursing ewes. 12 Who has measured the waters in the hollow of his hand, or marked off the heavens with the span of his hand? 25 Who has held the dust of the earth in a basket, 13 or weighed the mountains on a scale a and the hills with a balance? b 14 Who has directed the Spirit of the LORD, or informed Him as His counselor? Whom did He consult to enlighten Him, and who taught Him the paths of justice? Who imparted knowledge to Him and showed Him the way of 15 understanding? Surely the nations are like a drop in a bucket; they are considered a speck of dust on the c 16 scales; He lifts up the islands like fine dust. Lebanon is not sufficient for fuel, 17 nor its animals enough for a burnt offering. All the nations are as nothing before Him; He regards them as nothingness and 18 emptiness. 19 To whom will you liken God? To what image will you compare Him? To an idol that a craftsman casts 20 and a metalworker overlays with gold and fits with silver chains? One lacking such an offering chooses wood that will not rot. He seeks a skilled craftsman to set up an idol 21 that will not topple. Do you not know? Have you not heard? Has it not been declared to you from the beginning? 22 Have you not understood since the foundation of the earth? He sits enthroned above the circle of the earth; mind of the LORD its dwellers are like grasshoppers. coastlands j" + }, + { + "verseNum": 3, + "text": "He hands nations over to him and subdues kings before him. He turns them to dust with his sword, to windblown chaff with his bow. 3 He pursues them, going on safely, 4 hardly touching the path with his feet. Who has performed this and carried it out, calling forth the generations from the beginning? You will thresh the mountains and crush 16 them, and reduce the hills to chaff. You will winnow them, and a wind will carry them away; a gale will scatter them. But you will rejoice in the LORD; 17 you will glory in the Holy One of Israel. The poor and needy seek water, but there is I, the LORD—the first and the last— 5 none; I am He.” The islands see and fear; 6 the ends of the earth tremble. They approach and come forward. Each one helps the other 7 and says to his brother, “Be strong!” The craftsman encourages the goldsmith, and he who wields the hammer cheers him who strikes the anvil, saying of the welding, “It is good.” 8 He nails it down so it will not be toppled. 9 “But you, O Israel, My servant, Jacob, whom I have chosen, descendant of Abraham My friend— I brought you from the ends of the earth their tongues are parched with thirst. 18 I, the LORD, will answer them; I, the God of Israel, will not forsake them. I will open rivers on the barren heights, and fountains in the middle of the valleys. 19 I will turn the desert into a pool of water, and the dry land into flowing springs. I will plant cedars in the wilderness, a acacias, myrtles, and olive trees. 20 I will set cyp" + }, + { + "verseNum": 8, + "text": ". Literally Greek Literally Literally 15 ambition in your hearts, do not boast in it or deny Such wisdom does not come from the truth. For above, but is earthly, unspiritual, demonic. where jealousy and selfish ambition exist, there 17 will be disorder and every evil practice. 16 But the wisdom from above is first of all pure, then peace-loving, gentle, accommodating, full of 18 mercy and good fruit, impartial, and sincere. Peacemakers who sow in peace reap the fruit a A Warning against Pride of righteousness. 4 b 2 What causes conflicts and quarrels among you? Don’t they come from the passions at You crave what you do not war within you? have; you kill and covet, but are unable to obtain 3 it. You quarrel and fight. You do not have, be- And when you do ask, cause you do not ask. you do not receive, because you ask with wrong motives, that you may squander it on your 4 pleasures. c d You adulteresses! Do you not know that friendship with the world is hostility toward God? Therefore, whoever chooses to be a friend 5 an enemy of God. of the world renders himself Or do you think the Scripture says without rea- He caused to dwell in us But He gives us more grace. 6 son that the Spirit yearns with envy? This is why it says: e f “God opposes the proud, Drawing Near to God but gives grace to the humble.” 7 8 9 Submit yourselves, then, to God. Resist the Draw near to devil, and he will flee from you. God, and He will draw near to you. Cleanse your hands, you sinners, and purify your" + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 1, + "text": "–9) went out and plotted how they might kill Jesus. 15 16 Aware of this, Jesus withdrew from that place. Large crowds followed Him, and He healed them 17 warning them not to make Him known. all, This was to fulfill what was spoken through b 7 c 21 the Bread of the Presence a 4 the prophet Isaiah: Beelzebub Or ; also in verse 27 18 “Here is My Servant, whom I have chosen, My beloved, in whom My soul delights. I will put My Spirit on Him, 19 and He will proclaim justice to the nations. 20 He will not quarrel or cry out; no one will hear His voice in the streets. A bruised reed He will not break, and a smoldering wick He will not 21 till He leads justice to victory. extinguish, c In His name the nations will put A House Divided (Mk. 3:20–27 ; Lk. 11:14–23) their hope.” 22 Then a demon-possessed man who was blind and mute was brought to Jesus, and He healed The the man so that he could speak and see. crowds were astounded and asked, “Could this 24 be the Son of David?” 23 d But when the Pharisees heard this, they said, the prince of demons, does “Only by Beelzebul, 25 this man drive out demons.” 26 Knowing their thoughts, Jesus said to them, “Every kingdom divided against itself will be laid waste, and every city or household divided If Satan drives out against itself will not stand. 27 Satan, he is divided against himself. How then And if I drive out de- can his kingdom stand? mons by Beelzebul, by whom do your sons drive 28 them out? So then, they will be your judges. But if I" + }, + { + "verseNum": 10, + "text": "–17) 8 Let the sea resound, and all that fills it, the world, and all who dwell in it. Let the rivers clap their hands, 9 let the mountains sing together for joy before the LORD, for He comes to judge the earth. He will judge the world with righteousness Psalm 99 and the peoples with equity. The LORD Reigns!" + }, + { + "verseNum": 19, + "text": "| 653 I will not yield My glory to another 9 or My praise to idols. Behold, the former things have happened, and now I declare new things. Before they spring forth A New Song of Praise (Ps. 98:1–9 ; Ps. 149:1–9) I proclaim them to you.” 10 Sing to the LORD a new song— His praise from the ends of the earth— you who go down to the sea, and all that is d 11 in it, you islands, and all who dwell in them. Let the desert and its cities raise their voices; let the villages of Kedar cry aloud. Let the people of Sela sing for joy; 12 let them cry out from the mountaintops. Let them give glory to the LORD 13 and declare His praise in the islands. The LORD goes forth like a mighty one; He stirs up His zeal like a warrior. He shouts; yes, He roars 14 in triumph over His enemies: “I have kept silent from ages past; I have remained quiet and restrained. But now I will groan like a woman in labor; 15 I will at once gasp and pant. I will lay waste the mountains and hills e and dry up all their vegetation. I will turn the rivers into dry land 16 and drain the marshes. I will lead the blind by a way they did not know; I will guide them on unfamiliar paths. I will turn darkness into light before them and rough places into level ground. 17 These things I will do for them, and I will not forsake them. But those who trust in idols and say to molten images, ‘You are our gods!’ Israel Is Deaf and Blind will be turned back in utter shame. 18 Listen, you deaf ones; 19 look, you blind ones, that you ma" + }, + { + "verseNum": 20, + "text": "20 5 Though seeing many things, you do not keep Do not be afraid, for I am with you; watch. Though your ears are open, you do not hear.” 21 The LORD was pleased, for the sake of His 22 righteousness, to magnify His law and make it glorious. But this is a people plundered and looted, all trapped in caves or imprisoned in dungeons. They have become plunder with no one to rescue them, 23 and loot with no one to say, “Send them back!” 24 Who among you will pay attention to this? Who will listen and obey hereafter? Who gave Jacob up for spoil, and Israel to the plunderers? Was it not the LORD, against whom we have sinned? 25 They were unwilling to walk in His ways, and they would not obey His law. So He poured out on them His furious anger and the fierceness of battle. It enveloped them in flames, but they did not understand; it consumed them, Israel’s Only Savior but they did not take it to heart. 43 But now, this is what the LORD says— He who created you, O Jacob, and He who formed you, O Israel: “Do not fear, for I have redeemed you; 2 I have called you by your name; you are Mine! When you pass through the waters, I will be with you; and when you go through the rivers, they will not overwhelm you. When you walk through the fire, you will not be scorched; the flames will not set you ablaze. 3 For I am the LORD your God, the Holy One of Israel, your Savior; a I give Egypt for your ransom, 4 Cush and Seba in your place. Because you are precious and honored in My sight, and because" + } + ] + }, + { + "chapterNum": 43, + "verses": [ + { + "verseNum": 22, + "text": "–28 ;" + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 11, + "text": "| 655 who brings out the chariots and horses, the armies and warriors together, to lie down, never to rise again; 18 to be extinguished, snuffed out like a wick: 19 “Do not call to mind the former things; pay no attention to the things of old. Behold, I am about to do something new; even now it is coming. Do you not see it? Indeed, I will make a way in the wilderness 20 and streams in the desert. a b The beasts of the field will honor Me, the jackals and the ostriches, because I provide water in the wilderness 21 and rivers in the desert, to give drink to My chosen people. The people I formed for Myself Israel’s Unfaithfulness will declare My praise." + }, + { + "verseNum": 12, + "text": "Let them all assemble and take their stand; they will all be brought to terror and 12 shame. The blacksmith takes a tool and labors over the coals; he fashions an idol with hammers and forges it with his strong arms. 13 Yet he grows hungry and loses his strength; he fails to drink water and grows faint. The woodworker extends a measuring line; he marks it out with a stylus; he shapes it with chisels and outlines it with a compass. He fashions it in the likeness of man, 14 like man in all his glory, that it may dwell in a shrine. a He cuts down cedars or retrieves a cypress or oak. Shall I make something detestable with the 20 rest of it? Shall I bow down to a block of wood?” He feeds on ashes. His deluded heart has led him astray, and he cannot deliver himself or say, “Is not this thing in my right hand Jerusalem to Be Restored a lie?” 21 Remember these things, O Jacob, for you are My servant, O Israel. I have made you, and you are My servant; 22 O Israel, I will never forget you. I have blotted out your transgressions like a cloud, 23 and your sins like a mist. Return to Me, for I have redeemed you. Sing for joy, O heavens, for the LORD has He lets it grow strong among the trees of the done this; forest. 15 He plants a laurel, and the rain makes it grow. It serves as fuel for man. He takes some of it to warm himself, shout aloud, O depths of the earth. Break forth in song, O mountains, you forests and all your trees. For the LORD has redeemed Jacob, and revealed His glory in" + } + ] + }, + { + "chapterNum": 45, + "verses": [ + { + "verseNum": 1, + "text": "–25) 22 In the first year of Cyrus king of Persia, to fulfill the word of the LORD spoken through Jeremiah, the LORD stirred the spirit of Cyrus king of Persia to send a proclamation throughout his kingdom and to put it in writing as follows: 23 “This is what Cyrus king of Persia says: ‘The LORD, the God of heaven, who has given me all the kingdoms of the earth, has ap- pointed me to build a house for Him at Jeru- salem in Judah. Whoever among you belongs to His people, may the LORD his God be with him, and may he go up.’ ” eight a 9 b 10 e 15 g 21 uncle One Hebrew manuscript, some LXX manuscripts, and Syriac (see also 2 Kings 24:8); most Hebrew manuscripts At the turn of the year Rising up early and sending (it), made courageous brother f 17 made strong d 13 c 10 Literally Literally See" + }, + { + "verseNum": 9, + "text": "l 33 h 25" + }, + { + "verseNum": 19, + "text": "| 657 Thus says the LORD, the Holy One of Israel, and its Maker: “Concerning things to come, do you question His anointed, 12 Me about My sons, whose right hand I have grasped to subdue nations before him, to disarm kings, to open the doors before him, so that the gates will not be shut: a 2 “I will go before you and level the mountains; I will break down the gates of bronze 3 and cut through the bars of iron. I will give you the treasures of darkness and the riches hidden in secret places, so that you may know that I am the LORD, 4 the God of Israel, who calls you by name. For the sake of Jacob My servant and Israel My chosen one, I call you by name; 5 I have given you a title of honor, though you have not known Me. I am the LORD, and there is no other; there is no God but Me. I will equip you for battle, 6 though you have not known Me, so that all may know, from where the sun rises to where it sets, that there is none but Me; 7 I am the LORD, and there is no other. I form the light and create the darkness; 8 I bring prosperity and create calamity. I, the LORD, do all these things. Drip down, O heavens, from above, and let the skies pour down righteousness. Let the earth open up that salvation may sprout 9 and righteousness spring up with it; I, the LORD, have created it. Woe to him who quarrels with his Maker— one clay pot among many. b Does the clay ask the potter, ‘What are you making?’ Does your work say, 10 ‘He has no hands’? Woe to him who says to his father, ‘What hav" + }, + { + "verseNum": 20, + "text": "I, the LORD, speak the truth; 20 I say what is right. Come, gather together, and draw near, you fugitives from the nations. 21 Ignorant are those who carry idols of wood and pray to a god that cannot save. Speak up and present your case— yes, let them take counsel together. Who foretold this long ago? Who announced it from ancient times? Was it not I, the LORD? There is no other God but Me, 22 a righteous God and Savior; there is none but Me. Turn to Me and be saved, all the ends of the earth; for I am God, 23 and there is no other. By Myself I have sworn; truth has gone out from My mouth, a word that will not be revoked: a Every knee will bow before Me, 24 every tongue will swear allegiance. Surely they will say of Me, ‘In the LORD alone are righteousness ” and strength.’ All who rage against Him 25 will come to Him and be put to shame. In the LORD all descendants of Israel will be justified and will exult. Babylon’s Idols 46 Bel crouches; Nebo cowers. Their idols weigh down beasts and cattle. The images you carry are burdensome, 2 a load to the weary animal. The gods cower; they crouch together, 3 unable to relieve the burden; but they themselves go into captivity. “Listen to Me, O house of Jacob, all the remnant of the house of Israel, who have been sustained from the womb, 4 carried along since birth. Even to your old age, I will be the same, and I will bear you up when you turn gray. 5 To whom will you liken Me or count Me equal? 6 To whom will you compare Me, that we sh" + }, + { + "verseNum": 23, + "text": "(see also LXX) g 9 will acknowledge God BYZ and TR include Lit. Gentiles; he who does not regard the day, to the Lord he does not regard it; will give praise to God in Him the Gentiles will put their hope.” b 11 or to be hindered or weakened e 23 SBL, BYZ, and TR include i 11 Or j 12 . Some manuscripts place the text of" + } + ] + }, + { + "chapterNum": 48, + "verses": [ + { + "verseNum": 8, + "text": "| 659 I will take vengeance; 4 I will spare no one. ” Our Redeemer—the LORD of Hosts is His 5 name— is the Holy One of Israel. 6 “Sit in silence and go into darkness, O Daughter of the Chaldeans. For you will no longer be called the queen of kingdoms. I was angry with My people; I profaned My heritage, and I placed them under your control. You showed them no mercy; 7 even on the elderly you laid a most heavy yoke. You said, ‘I will be queen forever.’ 8 You did not take these things to heart or consider their outcome. So now hear this, O lover of luxury who sits securely, who says to herself, ‘I am, and there is none besides me. I will never be a widow 9 or know the loss of children.’ These two things will overtake you in a moment, in a single day: loss of children, and widowhood. They will come upon you in full measure, 10 in spite of your many sorceries and the potency of your spells. You were secure in your wickedness; you said, ‘No one sees me.’ Your wisdom and knowledge led you astray; you told yourself, ‘I am, and there is none 11 besides me.’ But disaster will come upon you; you will not know how to charm it away. A calamity will befall you that you will be unable to ward off. 12 Devastation will happen to you suddenly and unexpectedly. So take your stand with your spells and with your many sorceries, with which you have wearied yourself from your youth. 13 Perhaps you will succeed; perhaps you will inspire terror! You are wearied by your many counselors; let them come" + }, + { + "verseNum": 9, + "text": "9 19 For the sake of My name I will delay My wrath; 10 for the sake of My praise I will restrain it, so that you will not be cut off. See, I have refined you, but not as silver; I have tested you in the furnace of 11 affliction. For My own sake, My very own sake, I will act; Deliverance Promised to Israel for how can I let Myself be defamed? I will not yield My glory to another. 12 Listen to Me, O Jacob, and Israel, whom I have called: 13 I am He; I am the first, and I am the last. Surely My own hand founded the earth, and My right hand spread out the heavens; when I summon them, 14 they stand up together. Come together, all of you, and listen: Which of the idols has foretold these things? The LORD’s chosen ally will carry out His desire against Babylon, a and His arm will be against the 15 Chaldeans. I, even I, have spoken; yes, I have called him. I have brought him, 16 and he will succeed in his mission. Come near to Me and listen to this: From the beginning I have not spoken in secret; from the time it happened, I was there.” And now the Lord GOD has sent me, 17 accompanied by His Spirit. Thus says the LORD your Redeemer, the Holy One of Israel: “I am the LORD your God, Your descendants would have been as countless as the sand, b and your offspring as numerous as its grains; 20 their name would never be cut off or eliminated from My presence.” Leave Babylon! Flee from the Chaldeans! Declare it with a shout of joy, proclaim it, let it go out to the ends of the earth, saying" + } + ] + }, + { + "chapterNum": 49, + "verses": [ + { + "verseNum": 1, + "text": "–6) even if someone told you.’ ” a 42 43 As Paul and Barnabas were leaving the syna- gogue, the people urged them to continue this After the syna- message on the next Sabbath. gogue was dismissed, many of the Jews and devout converts to Judaism followed Paul and Barnabas, who spoke to them and urged them to 44 continue in the grace of God. 45 On the following Sabbath, nearly the whole city gathered to hear the word of the Lord. But when the Jews saw the crowds, they were filled with jealousy, and they blasphemously contra- 46 dicted what Paul was saying. Then Paul and Barnabas answered them boldly: “It was necessary to speak the word of God to you first. But since you reject it and do not consider yourselves worthy of eternal life, we now turn to the Gentiles. For this is what the Lord has commanded us: 47 ‘I have made you a light for the Gentiles, to bring salvation to the ends of the b 48 earth.’ ” district. So they shook the dust off their feet in And protest against them and went to Iconium. the disciples were filled with joy and with the Paul and Barnabas at Iconium Holy Spirit. 52 14 2 At Iconium, Paul and Barnabas went as usual into the Jewish synagogue, where they spoke so well that a great number of Jews But the unbelieving Jews and Greeks believed. 3 stirred up the Gentiles and poisoned their minds against the brothers. So Paul and Barnabas spent considerable time there, speaking boldly for the Lord, who affirmed the message of His grace by enabling them to perform" + }, + { + "verseNum": 6, + "text": "15 But when the apostles Barnabas and Paul found out about this, they tore their clothes and “Men, why rushed into the crowd, shouting, are you doing this? We too are only men, human like you. We are bringing you good news that you should turn from these worthless things to the living God, who made heaven and earth and sea In past generations, and everything in them. Yet He has He let all nations go their own way. 16 17 992 |" + }, + { + "verseNum": 8, + "text": "(see also LXX) Scrivener’s TR and GOC; many Greek sources Lev. 26:12; Jer. 32:38; Ezek. 37:27" + }, + { + "verseNum": 10, + "text": "See" + }, + { + "verseNum": 12, + "text": "15 and 16 Hebrew Hebrew ; also in verse 16 the day of Egypt f 13 By the hands of foreigners I will bring desolation upon the land and everything in it. I, the LORD, have spoken. 13 This is what the Lord GOD says: f I will destroy the idols and put an end to the images in Memphis. There will no longer be a prince in Egypt, 14 and I will instill fear in that land. 15 I will lay waste Pathros, set fire to Zoan, and execute judgment on Thebes. I will pour out My wrath on Pelusium, g h 16 the stronghold of Egypt, and cut off the crowds of Thebes. I will set fire to Egypt, Pelusium will writhe in anguish, Thebes will be split open, 17 and Memphis will face daily distress. i The young men of On and Pi-beseth 18 will fall by the sword, and those cities will go into captivity. The day will be darkened in Tahpanhes when I break the yoke of Egypt and her proud strength comes to an end. A cloud will cover her, 19 and her daughters will go into captivity. So I will execute judgment on Egypt, Pharaoh’s Power Broken and they will know that I am the LORD.” 20 21 In the eleventh year, on the seventh day of the first month, the word of the LORD came to me, “Son of man, I have broken the arm of saying, Pharaoh king of Egypt. See, it has not been bound up for healing, or splinted for strength to hold the 22 sword. Therefore this is what the Lord GOD says: Be- hold, I am against Pharaoh king of Egypt. I will break his arms, both the strong one and the one already broken, and will make the sword f" + }, + { + "verseNum": 25, + "text": "| 661 16 Behold, I have inscribed you on the palms of 17 My hands; f your walls are ever before Me. Your builders hasten back; your destroyers and wreckers depart 18 from you. Lift up your eyes and look around. They all gather together; they come to you. 19 As surely as I live,” declares the LORD, “you will wear them all as jewelry and put them on like a bride. For your ruined and desolate places and your ravaged land will now indeed be too small for your people, and those who devoured you will be far 20 away. Yet the children of your bereavement will say in your hearing, ‘This place is too small for us; make room for us to live here.’ 21 Then you will say in your heart, ‘Who has begotten these for me? I was bereaved and barren; I was exiled and rejected. So who has reared them? Look, I was left all alone, 22 so where did they come from?’ ” nor will scorching heat or sun beat down This is what the Lord GOD says: on them. For He who has compassion on them will 11 guide them and lead them beside springs of water. 12 13 I will turn all My mountains into roads, and My highways will be raised up. d Behold, they will come from far away, from the north and from the west, and from the land of Aswan. ” e Shout for joy, O heavens; rejoice, O earth; break forth in song, O mountains! For the LORD has comforted His people, and He will have compassion on His afflicted ones. But Zion said, “The LORD has forsaken me; the Lord has forgotten me!” 14 15 “Can a woman forget her nursing child, or" + }, + { + "verseNum": 26, + "text": "8 I will contend with those who contend with The One who vindicates Me is near. 26 you, and I will save your children. I will make your oppressors eat their own flesh; they will be drunk on their own blood, as with wine. Then all mankind will know that I, the LORD, Israel’s Sin am your Savior and your Redeemer, the Mighty One of Jacob.” 50 This is what the LORD says: Who will dare to contend with Me? Let us confront each other! 9 Who has a case against Me? Let him approach Me! Surely the Lord GOD helps Me. Who is there to condemn Me? 10 See, they will all wear out like a garment; the moths will devour them. Who among you fears the LORD and obeys the voice of His Servant? Who among you walks in darkness and has no light? “Where is your mother’s certificate 11 Let him trust in the name of the LORD; of divorce with which I sent her away? Or to which of My creditors did I sell you? Look, you were sold for your iniquities, 2 and for your transgressions your mother was sent away. Why was no one there when I arrived? Why did no one answer when I called? Is My hand too short to redeem you? Or do I lack the strength to deliver you? Behold, My rebuke dries up the sea; I turn the rivers into a desert; the fish rot for lack of water 3 and die of thirst. I clothe the heavens in black and make sackcloth their covering.” The Servant’s Obedience" + } + ] + }, + { + "chapterNum": 50, + "verses": [ + { + "verseNum": 4, + "text": "–11 ; crucified." + } + ] + }, + { + "chapterNum": 52, + "verses": [ + { + "verseNum": 2, + "text": "| 663 Lift up your eyes to the heavens, and look at the earth below; to establish the heavens, to found the earth, God’s Fury Removed and to say to Zion, ‘You are My people.’ ” for the heavens will vanish like smoke, 17 the earth will wear out like a garment, and its people will die like gnats. But My salvation will last forever, and My righteousness will never fail. Listen to Me, you who know what is right, you people with My law in your hearts: Do not fear the scorn of men; 8 do not be broken by their insults. For the moth will devour them like a garment, and the worm will eat them like wool. But My righteousness will last forever, My salvation through all generations.” 7 9 Awake, awake, put on strength, O arm of the LORD. Wake up as in days past, as in generations of old. 10 Was it not You who cut Rahab to pieces, who pierced through the dragon? Was it not You who dried up the sea, the waters of the great deep, 11 who made a road in the depths of the sea for the redeemed to cross over? So the redeemed of the LORD will return 12 and enter Zion with singing, crowned with everlasting joy. Gladness and joy will overtake them, and sorrow and sighing will flee. “I, even I, am He who comforts you. Awake, awake! Rise up, O Jerusalem, you who have drunk from the hand of the LORD the cup of His fury; you who have drained the goblet to the 18 dregs— the cup that makes men stagger. Among all the sons she bore, 19 there is no one to guide her; among all the sons she brought up, there i" + }, + { + "verseNum": 3, + "text": "3 Remove the chains from your neck, O captive Daughter of Zion. For this is what the LORD says: “You were sold for nothing, and without money you will be redeemed.” 4 For this is what the Lord GOD says: “At first My people went down to Egypt to live, 5 then Assyria oppressed them without cause. And now what have I here? declares the LORD. For My people have been taken without a cause; those who rule them taunt, declares the LORD, b and My name is blasphemed continually 6 all day long. Therefore My people will know My name; therefore they will know on that day that I am He who speaks. 7 Here I am!” How beautiful on the mountains c are the feet of those who bring good news, who proclaim peace, who bring good tidings, 8 who proclaim salvation, who say to Zion, “Your God reigns!” Listen! Your watchmen lift up their voices, together they shout for joy. For every eye will see 9 when the LORD returns to Zion. Break forth in joy, sing together, O ruins of Jerusalem, 10 for the LORD has comforted His people; He has redeemed Jerusalem. The LORD has bared His holy arm in the sight of all the nations; all the ends of the earth will see the salvation of our God. d 11 Depart, depart, go out from there! Touch no unclean thing; for the LORD goes before you, The Servant Exalted" + }, + { + "verseNum": 5, + "text": "(see also LXX) Or 1010 |" + }, + { + "verseNum": 7, + "text": "" + }, + { + "verseNum": 11, + "text": "; see also" + }, + { + "verseNum": 13, + "text": "–15) the interests of others. 5 Let this mind be in you which was also in Christ 6 Jesus: Who, existing in the form of God, a 7 did not consider equality with God something to be grasped, but emptied Himself, 8 taking the form of a servant, being made in human likeness. And being found in appearance as a man, He humbled Himself 9 and became obedient to death— even death on a cross. Therefore God exalted Him to the highest 10 place and gave Him the name above all names, that at the name of Jesus every knee should bow, 11 in heaven and on earth and under the earth, and every tongue confess that Jesus Christ is Lord, Lights in the World" + }, + { + "verseNum": 15, + "text": "(see also LXX) in Asia g 5 TR and Some translators 12 20" + } + ] + }, + { + "chapterNum": 53, + "verses": [ + { + "verseNum": 1, + "text": "" + }, + { + "verseNum": 4, + "text": "That is, the Sea of Galilee; Greek to the other side manuscripts Literally NA, BYZ, and TR 12 13 a On hearing this, Jesus said, “It is not the healthy But go and who need a doctor, but the sick. learn what this means: ‘I desire mercy, not sacri- For I have not come to call the righteous, fice.’ Questions about Fasting ” but sinners." + }, + { + "verseNum": 5, + "text": "" + }, + { + "verseNum": 6, + "text": "4" + }, + { + "verseNum": 7, + "text": "–8 (see also LXX) Kandakē Greek c 36 d 5 e 8 “It 19 2 Literally or TR includes 986 |" + }, + { + "verseNum": 9, + "text": "–12 ;" + }, + { + "verseNum": 12, + "text": "and" + } + ] + }, + { + "chapterNum": 54, + "verses": [ + { + "verseNum": 1, + "text": "c 27 c Or ; similarly in verse 9 See" + }, + { + "verseNum": 9, + "text": "| 665 He was oppressed and afflicted, yet He did not open His mouth. He was led like a lamb to the slaughter, and as a sheep before her shearers is 8 silent, so He did not open His mouth. By oppression and judgment He was taken away, and who can recount His descendants? a For He was cut off from the land of the living; He was stricken for the transgression of My people. A Grave Assigned" + }, + { + "verseNum": 10, + "text": "10 Though the mountains may be removed I will make with you an everlasting c and the hills may be shaken, 4 covenant— My loving devotion will not depart from you, and My covenant of peace will not be My loving devotion promised to David. Behold, I have made him a witness to the broken,” says the LORD, who has compassion on you. 11 5 nations, a leader and commander of the peoples. Surely you will summon a nation you do not “O afflicted city, lashed by storms, without solace, a 12 surely I will set your stones in antimony and lay your foundations with sapphires. 13 I will make your pinnacles of rubies, your gates of sparkling jewels, and all your walls of precious stones. Then all your sons will be taught by the b 14 LORD, and great will be their prosperity. In righteousness you will be established, far from oppression, for you will have no fear. Terror will be far removed, 15 for it will not come near you. 16 If anyone attacks you, it is not from Me; whoever assails you will fall before you. Behold, I have created the craftsman who fans the coals into flame and forges a weapon fit for its task; 17 and I have created the destroyer to wreak havoc. No weapon formed against you shall prosper, and you will refute every tongue that accuses you. This is the heritage of the servants of the LORD, and their vindication is from Me,” Invitation to the Needy declares the LORD. 55 “Come, all you who are thirsty, come to the waters; and you without money, come, buy, and eat! Come, buy wine a" + }, + { + "verseNum": 13, + "text": "b 69 gathering pilgrimage to Jerusalem; also translated as (see" + } + ] + }, + { + "chapterNum": 55, + "verses": [ + { + "verseNum": 3, + "text": "" + } + ] + }, + { + "chapterNum": 56, + "verses": [ + { + "verseNum": 7, + "text": "" + } + ] + }, + { + "chapterNum": 57, + "verses": [ + { + "verseNum": 8, + "text": "| 667 56 This is what the LORD says: “Maintain justice and do what is right, 2 for My salvation is coming soon, and My righteousness will be revealed. Blessed is the man who does this, and the son of man who holds it fast, who keeps the Sabbath without profaning it and keeps his hand from doing any evil.” 3 Let no foreigner who has joined himself to the LORD say, “The LORD will utterly exclude me from His people.” 4 And let the eunuch not say, “I am but a dry tree.” For this is what the LORD says: “To the eunuchs who keep My Sabbaths, 5 who choose what pleases Me and hold fast to My covenant— I will give them, in My house and within My walls, a memorial and a name better than that of sons and daughters. I will give them an everlasting name 6 that will not be cut off. And the foreigners who join themselves to the LORD to minister to Him, to love the name of the LORD, and to be His servants— all who keep the Sabbath without profaning it 7 and who hold fast to My covenant— I will bring them to My holy mountain and make them joyful in My house of prayer. Their burnt offerings and sacrifices will be accepted on My altar, a for My house will be called a house of prayer 8 for all the nations.” Thus declares the Lord GOD, who gathers the dispersed of Israel: “I will gather to them still others Israel’s Sinful Leaders besides those already gathered.” 9 Israel’s watchmen are blind, they are all oblivious; they are all mute dogs, they cannot bark; they are dreamers lying around, 11 lovi" + }, + { + "verseNum": 9, + "text": "Forsaking Me, you uncovered your bed; you climbed up and opened it wide. And you have made a pact with those whose 9 bed you have loved; a 18 yet he kept turning back to the desires of his heart. I have seen his ways, but I will heal him; you have gazed upon their nakedness. 19 I will guide him and restore comfort You went to Molech with oil b and multiplied your perfumes. You have sent your envoys 10 a great distance; you have descended even to Sheol itself. You are wearied by your many journeys, but you did not say, “There is no hope!” 11 You found renewal of your strength; therefore you did not grow weak. to him and his mourners, bringing praise to their lips. Peace, peace to those far and near,” says the 20 LORD, “and I will heal them.” But the wicked are like the storm-tossed sea, 21 for it cannot be still, and its waves churn up mire and muck. Whom have you dreaded and feared, so that you lied and failed to remember Me or take this to heart? Is it not because I have long been silent 12 that you do not fear Me? I will expose your righteousness and your 13 works, and they will not profit you. When you cry out, let your companies of idols deliver you! Yet the wind will carry off all of them, a breath will take them away. But he who seeks refuge in Me will inherit the land Healing for the Repentant and possess My holy mountain.” 14 And it will be said, “Build it up, build it up, prepare the way, 15 take every obstacle out of the way of My people.” “There is no peace,” says" + } + ] + }, + { + "chapterNum": 59, + "verses": [ + { + "verseNum": 1, + "text": "–17 ;" + }, + { + "verseNum": 7, + "text": "–8 (see also LXX)" + }, + { + "verseNum": 13, + "text": "| 669 and not to turn away 8 from your own flesh and blood? For your hands are stained with blood, and your fingers with iniquity; Then your light will break forth like the dawn, and your healing will come quickly. Your righteousness will go before you, 9 and the glory of the LORD will be your rear guard. Then you will call, and the LORD will answer; you will cry out, and He will say, ‘Here I am.’ If you remove the yoke from your midst, 10 the pointing of the finger and malicious talk, and if you give yourself to the hungry and satisfy the afflicted soul, 11 then your light will go forth in the darkness, and your night will be like noonday. The LORD will always guide you; He will satisfy you in a sun-scorched land and strengthen your frame. 12 You will be like a well-watered garden, like a spring whose waters never fail. Your people will rebuild the ancient ruins; you will restore the age-old foundations; 13 you will be called Repairer of the Breach, Restorer of the Streets of Dwelling. If you turn your foot from breaking the Sabbath, from doing as you please on My holy day, if you call the Sabbath a delight, and the LORD’s holy day honorable, if you honor it by not going your own way 14 or seeking your own pleasure or speaking idle words, then you will delight yourself in the LORD, and I will make you ride on the heights of the land and feed you with the heritage of your For the mouth of the LORD has spoken. father Jacob.” Sin Separates Us from God" + }, + { + "verseNum": 14, + "text": "speaking oppression and revolt, 14 conceiving and uttering lies from the but the LORD will rise upon you, 3 and His glory will appear over you. heart. So justice is turned away, and righteousness stands at a distance. For truth has stumbled in the public square, 15 and honesty cannot enter. Truth is missing, and whoever turns from evil becomes a prey. 16 The LORD looked and was displeased that there was no justice. He saw that there was no man; Nations will come to your light, 4 and kings to the brightness of your dawn. Lift up your eyes and look around: They all gather and come to you; your sons will come from afar, 5 and your daughters will be carried on the arm. Then you will look and be radiant, and your heart will tremble and swell with joy, because the riches of the sea will be brought He was amazed that there was no one to to you, intercede. 6 and the wealth of the nations will come to 17 So His own arm brought salvation, you. and His own righteousness sustained Him. He put on righteousness like a breastplate, and the helmet of salvation on His head; Caravans of camels will cover your land, young camels of Midian and Ephah, and all from Sheba will come, He put on garments of vengeance The Covenant of the Redeemer and wrapped Himself in a cloak of zeal. 18 So He will repay according to their deeds: 19 fury to His enemies, retribution to His foes, and recompense to the islands. b So shall they fear the name of the LORD where the sun sets, and His glory where it rises. c" + }, + { + "verseNum": 20, + "text": "–21; see also LXX 1018 |" + } + ] + }, + { + "chapterNum": 61, + "verses": [ + { + "verseNum": 1, + "text": "–11 ;" + }, + { + "verseNum": 9, + "text": "| 671 61 The Spirit of the Lord GOD is on Me, because the LORD has anointed Me to preach good news to the poor. He has sent Me to bind up the brokenhearted, 2 to proclaim liberty to the captives and freedom to the prisoners, d c 3 to proclaim the year of the LORD’s favor and the day of our God’s vengeance, to comfort all who mourn, to console the mourners in Zion— to give them a crown of beauty for ashes, the oil of joy for mourning, and a garment of praise for a spirit of despair. So they will be called oaks of righteousness, the planting of the LORD, that He may be 4 glorified. They will rebuild the ancient ruins; they will restore the places long devastated; they will renew the ruined cities, 5 the desolations of many generations. Strangers will stand and feed your flocks, 6 and foreigners will be your plowmen and vinedressers. But you will be called the priests of the LORD; they will speak of you as ministers of our God; you will feed on the wealth of nations, 7 and you will boast in their riches. Instead of shame, My people will have a double portion, and instead of humiliation, they will rejoice in their share; and so they will inherit a double portion 8 in their land, and everlasting joy will be theirs. For I, the LORD, love justice; I hate robbery and iniquity; in My faithfulness I will give them their recompense 9 and make an everlasting covenant with them. Their descendants will be known among the nations, and their offspring among the peoples. All who see them will" + }, + { + "verseNum": 10, + "text": "10 I will rejoice greatly in the LORD, my soul will exult in my God; for He has clothed me with garments of salvation and wrapped me in a robe of righteousness, 11 as a bridegroom wears a priestly headdress, as a bride adorns herself with her jewels. For as the earth brings forth its growth, and as a garden enables seed to spring up, so the Lord GOD will cause righteousness and praise Zion’s Salvation and New Name to spring up before all the nations. 62 For Zion’s sake I will not keep silent, and for Jerusalem’s sake I will not keep still, until her righteousness shines like a bright 2 light, her salvation like a blazing torch. Nations will see your righteousness, and all kings your glory. You will be called by a new name 3 that the mouth of the LORD will bestow. You will be a crown of glory in the hand 4 of the LORD, a a royal diadem in the palm of your God. b No longer will you be called Forsaken, c nor your land named Desolate; but you will be called Hephzibah, d and your land Beulah; 5 for the LORD will take delight in you, and your land will be His bride. For as a young man marries a young woman, so your sons will marry you; and as a bridegroom rejoices over his bride, 6 so your God will rejoice over you. On your walls, O Jerusalem, I have posted watchmen; they will never be silent day or night. You who call on the LORD 7 shall take no rest for yourselves, nor give Him any rest 8 until He establishes Jerusalem and makes her the praise of the earth. The LORD has sworn by" + } + ] + }, + { + "chapterNum": 63, + "verses": [ + { + "verseNum": 15, + "text": "–19) travel to a land they do not know.’ ” 19 Have You rejected Judah completely? Do You despise Zion? Why have You stricken us so that we are beyond healing? We hoped for peace, but no good has come, and for the time of healing, 20 but there was only terror. We acknowledge our wickedness, O LORD, 21 the guilt of our fathers; indeed, we have sinned against You. For the sake of Your name do not despise us; do not disgrace Your glorious throne. Remember Your covenant with us; 22 do not break it. Can the worthless idols of the nations bring rain? Do the skies alone send showers? Is this not by You, O LORD our God? Judgment to Continue So we put our hope in You, for You have done all these things. 15 Then the LORD said to me: “Even if Mo- ses and Samuel should stand before Me, My heart would not go out to this people. Send If they them from My presence, and let them go! ask you, ‘Where shall we go?’ you are to tell them that this is what the LORD says: 2 694 |" + } + ] + }, + { + "chapterNum": 64, + "verses": [ + { + "verseNum": 4, + "text": "3 3 2 Brothers, I could not address you as spir- itual, but as worldly—as infants in Christ. I gave you milk, not solid food, for you were not yet ready for solid food. In fact, you are still not for you are still worldly. For since there ready, is jealousy and dissension among you, are you 4 not worldly? Are you not walking in the way of For when one of you says, “I follow Paul,” man? and another, “I follow Apollos,” are you not mere 5 men? 6 7 What then is Apollos? And what is Paul? They are servants through whom you believed, as the Lord has assigned to each his role. I planted the seed and Apollos watered it, but God made it So neither he who plants nor he who wa- grow. 8 ters is anything, but only God, who makes things He who plants and he who waters are one grow. in purpose, and each will be rewarded accord- ing to his own labor. For we are God’s fellow Christ Our Foundation" + }, + { + "verseNum": 7, + "text": "| 673 7 I will make known the LORD’s loving devotion and His praiseworthy acts, because of all that the LORD has done for 17 us— Yet You are our Father, though Abraham does not know us and Israel does not acknowledge us. You, O LORD, are our Father; our Redeemer from Everlasting is Your name. the many good things for the house of Why, O LORD, do You make us stray from Israel Your ways according to His great compassion and and harden our hearts from fearing You? 8 loving devotion. For He said, “They are surely My people, 9 sons who will not be disloyal.” So He became their Savior. a In all their distress, He too was afflicted, saved and the Angel of His Presence them. In His love and compassion He redeemed them; 10 He lifted them up and carried them all the days of old. But they rebelled and grieved His Holy Spirit. 11 So He turned and became their enemy, and He Himself fought against them. Then His people remembered the days of old, the days of Moses. Where is He who brought them through the sea with the shepherds of His flock? Where is the One who set 12 His Holy Spirit among them, who sent His glorious arm to lead them by the right hand of Moses, who divided the waters before them 13 14 who led them through the depths like a horse in the wilderness, so that they did not stumble? Like cattle going down to the valley, the Spirit of the LORD gave them rest. You led Your people this way A Prayer for Mercy" + }, + { + "verseNum": 8, + "text": "For You have hidden Your face from us both for your iniquities a 7 8 and delivered us into the hand of our iniquity. and for those of your fathers,” says the LORD. But now, O LORD, You are our Father; 9 we are the clay, and You are the potter; we are all the work of Your hand. Do not be angry, O LORD, beyond measure; do not remember our iniquity forever. 8 “Because they burned incense on the mountains and scorned Me on the hills, I will measure into their laps full payment for their former deeds.” Oh, look upon us, we pray; we are all Your people! 10 Your holy cities have become a wilderness. 11 Zion has become a wasteland and Jerusalem a desolation. Our holy and beautiful temple, where our fathers praised You, 12 has been burned with fire, and all that was dear to us lies in ruins. After all this, O LORD, will You restrain Yourself? Will You keep silent Judgments and Promises" + } + ] + }, + { + "chapterNum": 65, + "verses": [ + { + "verseNum": 1, + "text": "–16) 10 2 Brothers, my heart’s desire and prayer to God for the Israelites is for their salva- For I testify about them that they are zeal- tion. 3 ous for God, but not on the basis of knowledge. Because they were ignorant of God’s righteous- ness and sought to establish their own, they did not submit to God’s righteousness. For Christ is the end of the law, to bring righteousness to eve- 5 ryone who believes. 4 n 6 For concerning the righteousness that is by the law, Moses writes: “The man who does these things will live by them.” But the righteous- ness that is by faith says: “Do not say in your i 26" + }, + { + "verseNum": 2, + "text": "(see also LXX) ;" + }, + { + "verseNum": 17, + "text": "and" + } + ] + }, + { + "chapterNum": 66, + "verses": [ + { + "verseNum": 1, + "text": "–2 984 |" + }, + { + "verseNum": 7, + "text": "| 675 b 16 but to His servants He will give another name. Whoever invokes a blessing in the land will do so by the God of truth, and whoever takes an oath in the land will swear by the God of truth. For the former troubles will be forgotten A New Heaven and a New Earth" + }, + { + "verseNum": 8, + "text": "8 17 Who has heard of such as this? Who has seen such things? Can a country be born in a day or a nation be delivered in an instant? Yet as soon as Zion was in labor, 9 she gave birth to her children. Shall I bring a baby to the point of birth and not deliver it?” says the LORD. “Or will I who deliver close the womb?” 10 says your God. Be glad for Jerusalem and rejoice over her, all who love her. Rejoice greatly with her, 11 all who mourn over her, so that you may nurse and be satisfied at her comforting breasts; you may drink deeply and delight yourselves 12 in her glorious abundance. For this is what the LORD says: “I will extend peace to her like a river, and the wealth of nations like a flowing stream; 13 you will nurse and be carried on her arm, and bounced upon her knees. As a mother comforts her son, 14 so will I comfort you, and you will be consoled over Jerusalem.” When you see, you will rejoice, and you will flourish like grass; then the hand of the LORD will be revealed to His servants, but His wrath will be shown to His Final Judgments against the Wicked 15 enemies. For behold, the LORD will come with fire— His chariots are like a whirlwind— 16 to execute His anger with fury and His rebuke with flames of fire. For by fire and by His sword, the LORD will execute judgment on all flesh, “Those who consecrate and purify themselves to enter the groves—to follow one in the center of those who eat the flesh of swine and vermin and rats—will perish together,” declares the" + }, + { + "verseNum": 22, + "text": "and" + }, + { + "verseNum": 24, + "text": ". g 6 verse 48 and" + } + ] + } + ] + }, + { + "name": "Jeremiah", + "chapters": [ + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 3, + "text": "3 Israel was holy to the LORD, the firstfruits of His harvest. All who devoured her were found guilty; disaster came upon them,’ declares the LORD. ” 4 13 “For My people have committed two evils: They have forsaken Me, the fountain of living water, and they have dug their own cisterns— The Consequence of Israel’s Sin broken cisterns that cannot hold water. 5 14 Hear the word of the LORD, O house of Jacob, This and all you families of the house of Israel. is what the LORD says: “What fault did your fathers find in Me that they strayed so far from Me? They followed worthless idols, 6 and became worthless themselves. They did not ask, ‘Where is the LORD who brought us up from the land of Egypt, who led us through the wilderness, through a land of deserts and pits, a land of drought and darkness, 7 a land where no one travels and no one lives?’ I brought you into a fertile land to eat its fruit and bounty, but you came and defiled My land 8 and made My inheritance detestable. The priests did not ask, ‘Where is the LORD?’ The experts in the law no longer knew Me, and the leaders rebelled against Me. The prophets prophesied by Baal and followed useless idols. 9 Therefore, I will contend with you again, declares the LORD, and I will bring a case 10 a against your children’s children. Cross over to the coasts of Cyprus and take a look; send to Kedar and consider carefully; see if there has ever been anything 11 like this: Has a nation ever changed its gods? (Yet they are not gods at" + }, + { + "verseNum": 23, + "text": "–37) d 10 After that whole generation had also been gathered to their fathers, another generation rose up who did not know the LORD or the works And the Israelites that He had done for Israel. did evil in the sight of the LORD and served the 12 Baals. 11 Thus they forsook the LORD, the God of their fathers, who had brought them out of the land of Egypt, and they followed after various gods of the peoples around them. They bowed 13 down to them and provoked the LORD to anger, for they forsook Him and served Baal and the 14 Ashtoreths. e Then the anger of the LORD burned against Is- rael, and He delivered them into the hands of those who plundered them. He sold them into the hands of their enemies all around, whom they were no longer able to resist. Wherever Israel marched out, the hand of the LORD was against them to bring calamity, just as He had Judges Raised Up sworn to them. So they were greatly distressed. 16 15 f Then the LORD raised up judges, who saved them from the hands of those who plundered them. ; also in verse 4 of plunderers . c 5 Bochim weepers means e 14 Or or ; see" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 5, + "text": "| 679 32 Does a maiden forget her jewelry or a bride her wedding sash? Yet My people have forgotten Me for days without number. 33 How skillfully you pursue love! 34 Even the most immoral of women could learn from your ways. Moreover, your skirts are stained with the blood of the innocent poor, though you did not find them breaking in. 35 But in spite of all these things you say, ‘I am innocent. Surely His anger will turn from me.’ Behold, I will judge you, 36 because you say, ‘I have not sinned.’ How impulsive you are, 37 constantly changing your ways! You will be disappointed by Egypt just as you were by Assyria. Moreover, you will leave that place with your hands on your head, The Wages of the Harlot for the LORD has rejected those you trust; you will not prosper by their help.” 3 “If a man divorces his wife and she leaves him to marry another, can he ever return to her? Would not such a land be completely defiled? But you have played the harlot with many lovers— and you would return to Me?” declares the LORD. 2 “Lift up your eyes to the barren heights and see. Is there any place where you have not been violated? You sat beside the highways waiting for your lovers, like a nomad in the desert. You have defiled the land 3 with your prostitution and wickedness. Therefore the showers have been withheld, You people of this generation, consider the and no spring rains have fallen. word of the LORD: “Have I been a wilderness to Israel or a land of dense darkness? Why do My people" + }, + { + "verseNum": 6, + "text": "This you have spoken, Judah Follows Israel’s Example but you keep doing all the evil you can.” 6 Now in the days of King Josiah, the LORD said to me, “Have you seen what faithless Israel has done? She has gone up on every high hill and un- 7 der every green tree to prostitute herself there. I thought that after she had done all these things, she would return to Me. But she did not 8 return, and her unfaithful sister Judah saw it. a She saw that because faithless Israel had com- mitted adultery, I gave her a certificate of divorce and sent her away. Yet that unfaithful sister Ju- 9 dah had no fear and prostituted herself as well. Indifferent to her own infidelity, Israel had de- filed the land and committed adultery with Yet in spite of all this, her un- stones and trees. faithful sister Judah did not return to Me with all her heart, but only in pretense,” declares the A Call to Repentance (Hos. 14:1–3 ; Zech. 1:1–6) LORD. 11 10 12 And the LORD said to me, “Faithless Israel has shown herself more righteous than unfaithful Go, proclaim this message toward the Judah. north: ‘Return, O faithless Israel,’ declares the LORD. ‘I will no longer look on you with anger, 13 for I am merciful,’ declares the LORD. ‘I will not be angry forever. Only acknowledge your guilt, that you have rebelled against the LORD your God. You have scattered your favors to foreign gods under every green tree and have not obeyed My voice,’ declares the LORD. ” 14 “Return, O faithless children,” declares the" + }, + { + "verseNum": 11, + "text": "–25 ;" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 24, + "text": "| 681 2 12 and if you can swear, ‘As surely as the LORD lives,’ a wind too strong for that comes from Me. sift; 13 Now I also pronounce judgments against them.” in truth, in justice, and in righteousness, then the nations will be blessed by Him, and in Him they will glory.” 3 For this is what the LORD says to the men of Judah and Jerusalem: “Break up your unplowed ground, 4 and do not sow among the thorns. Circumcise yourselves to the LORD, and remove the foreskins of your hearts, O men of Judah and people of Jerusalem. Otherwise, My wrath will break out like fire Disaster from the North and burn with no one to extinguish it, because of your evil deeds.” 5 Announce in Judah, proclaim in Jerusalem, and say: Behold, he advances like the clouds, his chariots like the whirlwind. His horses are swifter than eagles. Woe to us, for we are ruined! 14 Wash the evil from your heart, O Jerusalem, so that you may be saved. 15 How long will you harbor wicked thoughts within you? For a voice resounds from Dan, 16 proclaiming disaster from the hills of Ephraim. Warn the nations now! Proclaim to Jerusalem: “A besieging army comes from a distant land; they raise their voices against the cities of 17 Judah. They surround her like men guarding a field, “Blow the ram’s horn throughout the land. 18 because she has rebelled against Me,” Cry aloud and say, ‘Assemble yourselves 6 and let us flee to the fortified cities.’ Raise a signal flag toward Zion. Seek refuge! Do not delay! For I am bringing d" + }, + { + "verseNum": 25, + "text": "25 26 I looked, and no man was left; all the birds of the air had fled. I looked, and the fruitful land was a desert. All its cities were torn down before the LORD, 27 before His fierce anger. For this is what the LORD says: 28 “The whole land will be desolate, but I will not finish its destruction. Therefore the earth will mourn They have made their faces harder than stone 4 and refused to repent. Then I said, “They are only the poor; they have played the fool, for they do not know the way of the LORD, 5 the justice of their God. I will go to the powerful and speak to them. Surely they know the way of the LORD, the justice of their God.” and the heavens above will grow dark. But they too, with one accord, had broken the I have spoken, I have planned, 29 and I will not relent or turn back.” Every city flees at the sound of the horseman and archer. They enter the thickets and climb among the rocks. 30 Every city is abandoned; no inhabitant is left. And you, O devastated one, what will you do, though you dress yourself in scarlet, though you adorn yourself with gold jewelry, though you enlarge your eyes with paint? You adorn yourself in vain; your lovers 31 despise you; they want to take your life. For I hear a cry like a woman in labor, a cry of anguish like one bearing her first child— the cry of the Daughter of Zion gasping for breath, stretching out her hands to say, “Woe is me, No One Is Just for my soul faints before the murderers!” 5 “Go up and down the streets of Jerusa" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 21, + "text": ", and" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 5, + "text": "| 683 25 who keeps for us the appointed weeks of harvest.’ 26 Your iniquities have diverted these from you; your sins have deprived you of My bounty. For among My people are wicked men; they watch like fowlers lying in wait; they set a trap to catch men. 27 Like cages full of birds, so their houses are full of deceit. Therefore they have become powerful and rich. 28 They have grown fat and sleek, and have excelled in the deeds of the wicked. They have not taken up the cause of the fatherless, that they might prosper; nor have they defended 29 the rights of the needy. Should I not punish them for these things?” declares the LORD. “Should I not avenge Myself on such a nation as this? 30 31 A horrible and shocking thing has happened in the land. The prophets prophesy falsely, and the priests rule by their own authority. My people love it so, Jerusalem’s Final Warning but what will you do in the end? 6 “Run for cover, O sons of Benjamin; flee from Jerusalem! Sound the ram’s horn in Tekoa; send up a signal over Beth-haccherem, for disaster looms from the north, 2 even great destruction. a 3 Though she is beautiful and delicate, I will destroy the Daughter of Zion. Shepherds and their flocks will come against her; they will pitch their tents all around her, 4 each tending his own portion: ‘Prepare for battle against her; rise up, let us attack at noon. Woe to us, for the daylight is fading; the evening shadows grow long. 5 who gives the rains, both autumn and spring, a 2 To a lovel" + }, + { + "verseNum": 6, + "text": "6 For this is what the LORD of Hosts says: “Cut down the trees and raise a siege ramp against Jerusalem. This city must be punished; 7 there is nothing but oppression in her midst. As a well gushes its water, so she pours out her evil. Violence and destruction resound in her; 8 sickness and wounds are ever before Me. Be forewarned, O Jerusalem, or I will turn away from you; 9 I will make you a desolation, a land without inhabitant.” This is what the LORD of Hosts says: “Glean the remnant of Israel as thoroughly as a vine. Pass your hand once more like a grape 10 gatherer over the branches.” To whom can I give this warning? a Who will listen to me? Look, their ears are closed, so they cannot hear. See, the word of the LORD has become 11 offensive to them; they find no pleasure in it. But I am full of the LORD’s wrath; I am tired of holding it back. “Pour it out on the children in the street, and on the young men gathered together. For both husband and wife will be captured, 12 the old and the very old alike. No, they have no shame at all; they do not even know how to blush. So they will fall among the fallen; when I punish them, they will collapse,” says the LORD. 16 This is what the LORD says: “Stand at the crossroads and look. Ask for the ancient paths: ‘Where is the good way?’ Then walk in it, and you will find rest for 17 your souls. But they said, ‘We will not walk in it!’ I appointed watchmen over you and said, ‘Listen for the sound of the ram’s horn.’ But they answered," + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 11, + "text": "884 |" + }, + { + "verseNum": 24, + "text": "| 685 26 Do not go out to the fields; do not walk the road. For the enemy has a sword; terror is on every side. O daughter of my people, dress yourselves in sackcloth and roll in ashes. Mourn with bitter wailing, as you would for an only son, 27 for suddenly the destroyer will come upon us. a “I have appointed you to examine My people 28 like ore, so you may know and try their ways. All are hardened rebels, walking around as slanderers. 29 They are bronze and iron; all of them are corrupt. The bellows blow fiercely, blasting away the lead with fire. 30 The refining proceeds in vain, for the wicked are not purged. They are called rejected silver, Jeremiah’s Message at the Temple Gate because the LORD has rejected them.” 7 2 3 This is the word that came to Jeremiah from “Stand in the gate of the the LORD, saying, house of the LORD and proclaim this message: Hear the word of the LORD, all you people of Ju- dah who enter through these gates to worship Thus says the LORD of Hosts, the God the LORD. of Israel: Correct your ways and deeds, and I will Do not trust in decep- let you live in this place. tive words, saying: 4 ‘This is the temple of the LORD, the temple of the LORD, the temple of the LORD.’ 5 6 For if you really correct your ways and deeds, if if you no you act justly toward one another, longer oppress the foreigner and the fatherless and the widow, and if you no longer shed inno- cent blood in this place or follow other gods to then I will let you live in this your own" + }, + { + "verseNum": 25, + "text": "25 From the day your fathers came out forward. a of the land of Egypt until this day, I have sent you 26 all My servants the prophets again and again. Yet they would not listen to Me or incline their ear, but they stiffened their necks and did more 27 evil than their fathers. 28 When you tell them all these things, they will not listen to you. When you call to them, they will not answer. Therefore you must say to them, ‘This is the nation that would not listen to the voice of the LORD their God and would not receive correction. Truth has perished; it has dis- appeared from their lips. Cut off your hair and throw it away. Raise up a lamentation on the barren heights, for the LORD has rejected and The Valley of Slaughter forsaken the generation of His wrath.’ 30 29 31 For the people of Judah have done evil in My sight, declares the LORD. They have set up their abominations in the house that bears My Name, They have built the high and so have defiled it. places of Topheth in the Valley of Ben-hinnom so they could burn their sons and daughters in the fire—something I never commanded, nor did it 32 even enter My mind. So behold, the days are coming, declares the LORD, when this place will no longer be called Topheth and the Valley of Ben-hinnom, but the Valley of Slaughter. For they will bury the 33 dead in Topheth until there is no more room. The corpses of this people will become food for the birds of the air and the beasts of the earth, 34 and there will be no one to scare them" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 10, + "text": "| 687 Whatever I have given them will be lost The People Respond to them.” 14 9 Oh, that my head were a spring of water, and my eyes a fountain of tears! Why are we just sitting here? Gather together, I would weep day and night 2 over the slain daughter of my people. let us flee to the fortified cities and perish If only I had a traveler’s lodge in the there, for the LORD our God has doomed us. He has given us poisoned water to drink, 15 because we have sinned against the LORD. We hoped for peace, but no good has come, for a time of healing, 16 but there was only terror. The snorting of enemy horses is heard from Dan. At the sound of the neighing of mighty steeds, the whole land quakes. They come to devour the land and everything 17 in it, the city and all who dwell in it. “For behold, I will send snakes among you, wilderness, I would abandon my people and depart from them, for they are all adulterers, 3 a crowd of faithless people. “They bend their tongues like bows; lies prevail over truth in the land. For they proceed from evil to evil, and they do not take Me into account,” declares the LORD. 4 “Let everyone guard against his neighbor; do not trust any brother, for every brother deals craftily, 5 and every friend spreads slander. Each one betrays his friend; no one tells the truth. They have taught their tongues to lie; 6 they wear themselves out committing b vipers that cannot be charmed, and they will bite you,” Jeremiah Weeps for His People declares the LORD. 18 a 7 in" + }, + { + "verseNum": 11, + "text": "21 for they have been scorched so no one passes For death has climbed in through our through, and the lowing of cattle is not heard. Both the birds of the air and the beasts have 11 fled; they have gone away. a “And I will make Jerusalem a heap of rubble, a haunt for jackals; and I will make the cities of Judah a 12 desolation, without inhabitant.” Who is the man wise enough to understand this? To whom has the mouth of the LORD spoken, that he may explain it? Why is the land destroyed and scorched like a desert, so no one 13 can pass through it? And the LORD answered, “It is because they have forsaken My law, which I set before them; 14 they have not walked in it or obeyed My voice. Instead, they have followed the stubbornness of their hearts and gone after the Baals, as their 15 fathers taught them.” 16 Therefore this is what the LORD of Hosts, the God of Israel, says: “Behold, I will feed this people wormwood and give them poisoned water to I will scatter them among the nations drink. that neither they nor their fathers have known, and I will send a sword after them until I have 17 finished them off.” This is what the LORD of Hosts says: 18 “Take note, and summon the wailing women; send for the most skillful among them. Let them come quickly and take up a lament over us, that our eyes may overflow with tears, 19 and our eyelids may gush with water. For the sound of wailing is heard from Zion: ‘How devastated we are! How great is our shame! For we have abandoned the land 20" + }, + { + "verseNum": 24, + "text": "Paul’s Message by the Spirit’s Power God’s Fellow Workers" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 25, + "text": "| 689 16 Do not fear them, for they can do no harm, 6 and neither can they do any good.” The Portion of Jacob is not like these, for He is the Maker of all things, There is none like You, O LORD. 7 You are great, and Your name is mighty in power. Who would not fear You, O King of nations? This is Your due. For among all the wise men of the nations, 8 and in all their kingdoms, there is none like You. But they are altogether senseless and foolish, instructed by worthless idols made of 9 wood! Hammered silver is brought from Tarshish, and gold from Uphaz— the work of a craftsman from the hands of a goldsmith. Their clothes are blue and purple, 10 all fashioned by skilled workers. But the LORD is the true God; He is the living God and eternal King. The earth quakes at His wrath, 11 and the nations cannot endure His indignation. Thus you are to tell them: “These gods, who have made neither the heavens nor the earth, will perish from this earth and from under these 12 heavens.” a The LORD made the earth by His power; He established the world by His wisdom 13 and stretched out the heavens by His understanding. When He thunders, the waters in the heavens roar; He causes the clouds to rise from the ends of the earth. He generates the lightning with the rain and brings forth the wind from His 14 storehouses. Every man is senseless and devoid of knowledge; every goldsmith is put to shame by his idols. 15 For his molten images are a fraud, and there is no breath in them. and Israel is t" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "The Broken Covenant 11 2 3 4 This is the word that came to Jeremiah from the LORD: “Listen to the words of this covenant and tell them to the men of Judah You must tell and the residents of Jerusalem. them that this is what the LORD, the God of Israel, says: Cursed is the man who does not obey the which I commanded words of this covenant, your forefathers when I brought them out of the land of Egypt, out of the iron furnace, saying, ‘Obey Me, and do everything I command you, and 5 you will be My people, and I will be your God.’ This was in order to establish the oath I swore to your forefathers, to give them a land flowing with milk and honey, as it is to this day.” 6 “Amen, LORD,” I answered. a 7 Then the LORD said to me, “Proclaim all these words in the cities of Judah and in the streets of Jerusalem, saying: Hear the words of this cove- For from the time I nant and carry them out. brought your fathers out of the land of Egypt un- til today, I strongly warned them again and Yet they would again, not obey or incline their ears, but each one fol- lowed the stubbornness of his evil heart. So I brought on them all the curses of this covenant I had commanded them to follow but they did not 9 keep.” saying, ‘Obey My voice.’ 8 10 And the LORD told me, “There is a conspiracy among the men of Judah and the residents of Je- They have returned to the sins of rusalem. their forefathers who refused to obey My words. They have followed other gods to serve them. The house of the house of" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 7, + "text": "| 691 You are ever on their lips, 3 but far from their hearts. But You know me, O LORD; You see me and test my heart toward You. Drag away the wicked like sheep to the 4 slaughter and set them apart for the day of carnage. How long will the land mourn and the grass of every field be withered? Because of the evil of its residents, the animals and birds have been swept away, for the people have said, God’s Answer to Jeremiah “He cannot see what our end will be.” 5 “If you have raced with men on foot and they have worn you out, how can you compete with horses? If you stumble in a peaceful land, 6 how will you do in the thickets of the Jordan? Even your brothers— your own father’s household— even they have betrayed you; even they have cried aloud against you. Do not trust them, 7 though they speak well of you. I have forsaken My house; I have abandoned My inheritance. I have given the beloved of My soul 8 into the hands of her enemies. My inheritance has become to Me like a lion in the forest. She has roared against Me; 9 therefore I hate her. Is not My inheritance to Me b like a speckled bird of prey with other birds of prey circling against her? 10 Go, gather all the beasts of the field; bring them to devour her. Many shepherds have destroyed My vineyard; they have trampled My plot of ground. 11 They have turned My pleasant field into a desolate wasteland. They have made it a desolation; their kidneys b 9 desolate before Me, it mourns. a 2 Over all the barren heights in the wil" + }, + { + "verseNum": 8, + "text": "8 9 19 10 Then the word of the LORD came to me: “This is what the LORD says: In the same way I will ruin the pride of Judah and the great pride of Jerusa- These evil people, who refuse to listen to lem. My words, who follow the stubbornness of their own hearts, and who go after other gods to serve and worship them, they will be like this loin- 11 cloth—of no use at all. For just as a loincloth clings to a man’s waist, so I have made the whole house of Israel and the whole house of Judah cling to Me, declares the LORD, so that they might be My people for My renown and praise and glory. But they did not The Wineskins listen. 12 Therefore you are to tell them that this is what the LORD, the God of Israel, says: ‘Every wineskin shall be filled with wine.’ And when they reply, ‘Don’t we surely know that 13 every wineskin should be filled with wine?’ then you are to tell them that this is what the LORD says: ‘I am going to fill with drunkenness all who live in this land—the kings who sit on Da- vid’s throne, the priests, the prophets, and all the I will smash them against people of Jerusalem. one another, fathers and sons alike, declares the LORD. I will allow no mercy or pity or compas- Captivity Threatened sion to keep Me from destroying them.’ 15 14 ” 16 Listen and give heed. Do not be arrogant, for the LORD has spoken. Give glory to the LORD your God before He brings darkness, before your feet stumble on the dusky mountains. You wait for light, 17 but He turns it into deep gloo" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 19, + "text": "–22) to make for Yourself a glorious name. 15 to gain for Himself everlasting renown, 5 18 Return, for the sake of Your servants, the tribes of Your heritage. For a short while Your people possessed Your holy place, 19 but our enemies have trampled Your sanctuary. We have become like those You never ruled, A Prayer for God’s Power like those not called by Your name. 64 If only You would rend the heavens and come down, 2 so that mountains would quake at Your presence, as fire kindles the brushwood and causes the water to boil, to make Your name known to Your enemies, so that the nations will tremble at Your 3 presence! When You did awesome works that we did not expect, 4 You came down, and the mountains trembled at Your presence. From ancient times no one has heard, no ear has perceived, no eye has seen any God besides You, b who acts on behalf of those who wait for Him. You welcome those who gladly do right, who remember Your ways. Surely You were angry, for we sinned. 6 How can we be saved if we remain in our sins? Each of us has become like something unclean, c and all our righteous acts are like filthy rags; Look down from heaven and see, we all wither like a leaf, from Your holy and glorious habitation. 7 and our iniquities carry us away like the Where are Your zeal and might? wind. Your yearning and compassion for me are restrained. b 4 angel of His presence No one calls on Your name like a stained menstrual garment or strives to take hold of You. c 6 a 9 Or Cited in 1 C" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 2, + "text": "| 693 16 By sword and famine these very prophets will And the people to whom they meet their end! prophesy will be thrown into the streets of Jeru- salem because of famine and sword. There will be no one to bury them or their wives, their sons or their daughters. I will pour out their own evil 17 upon them. You are to speak this word to them: ‘My eyes overflow with tears; day and night they do not cease, for the virgin daughter of my people 18 has been shattered by a crushing blow, a severely grievous wound. If I go out to the country, I see those slain by the sword; if I enter the city, I see those ravaged by famine! For both prophet and priest A Prayer for Mercy" + }, + { + "verseNum": 3, + "text": "‘Those destined for death, to death; a those destined for the sword, to the sword; those destined for famine, to famine; and those destined for captivity, to captivity.’ 3 I will appoint over them four kinds of destroy- ers, declares the LORD: the sword to kill, the dogs to drag away, and the birds of the air and beasts I will make of the earth to devour and destroy. them a horror to all the kingdoms of the earth because of what Manasseh son of Hezekiah king 5 of Judah did in Jerusalem. 4 Who will have pity on you, O Jerusalem? Who will mourn for you? Who will turn aside 6 to ask about your welfare? You have forsaken Me, declares the LORD. You have turned your back. So I will stretch out My hand against you 7 and I will destroy you; I am weary of showing compassion. I will scatter them with a winnowing fork at the gates of the land. I will bereave and destroy My people 8 who have not turned from their ways. I will make their widows more numerous than the sand of the sea. I will bring a destroyer at noon 12 in your time of trouble, in your time of distress. 13 Can anyone smash iron— iron from the north—or bronze? Your wealth and your treasures I will give up as plunder, without charge for all your sins within all your borders. b 14 Then I will enslave you to your enemies in a land you do not know, for My anger will kindle a fire that will burn against you.” 15 You understand, O LORD; remember me and attend to me. Avenge me against my persecutors. In Your patience, do not take" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 4, + "text": "); most Hebrew manuscripts Disaster Predicted 16 2 Then the word of the LORD came to me, saying, “You must not marry or have 3 sons or daughters in this place.” 4 For this is what the LORD says concerning the sons and daughters born in this place, and the mothers who bore them, and the fathers who fa- “They will die from thered them in this land: deadly diseases. They will not be mourned or buried, but will lie like dung on the ground. They will be finished off by sword and famine, and their corpses will become food for the birds of 5 the air and beasts of the earth.” Indeed, this is what the LORD says: “Do not en- ter a house where there is a funeral meal. Do not go to mourn or show sympathy, for I have re- moved from this people My peace, My loving de- 6 votion, and My compassion,” declares the LORD. 7 “Both great and small will die in this land. They will not be buried or mourned, nor will anyone No food cut himself or shave his head for them. will be offered to comfort those who mourn the dead; not even a cup of consolation will be given 8 for the loss of a father or mother. You must not enter a house where there is 9 feasting and sit down with them to eat and drink. For this is what the LORD of Hosts, the God of Israel, says: I am going to remove from this place, before your very eyes and in your days, the sounds of joy and gladness, the voices of the 10 bride and bridegroom. When you tell these people all these things, they will ask you, ‘Why has the LORD pro- nounced a" + }, + { + "verseNum": 5, + "text": "5 This is what the LORD says: a “Cursed is the man who trusts in mankind, who makes mere flesh his strength 6 and turns his heart from the LORD. He will be like a shrub in the desert; he will not see when prosperity comes. He will dwell in the parched places of the 7 desert, in a salt land where no one lives. But blessed is the man who trusts in the 8 LORD, You know that the utterance of my lips 17 was spoken in Your presence. 18 Do not become a terror to me; You are my refuge in the day of disaster. Let my persecutors be put to shame, but do not let me be put to shame. Let them be terrified, but do not let me be terrified. Bring upon them the day of disaster and shatter them with double destruction. Restoring the Sabbath" + }, + { + "verseNum": 19, + "text": "–27) house of my God and for its services. 15 In those days I saw people in Judah treading winepresses on the Sabbath and bringing in grain and loading it on donkeys, along with wine, grapes, and figs. All kinds of goods were being brought into Jerusalem on the Sabbath day. So I 16 warned them against selling food on that day. Additionally, men of Tyre who lived there were importing fish and all kinds of merchandise and selling them on the Sabbath to the people of 17 Judah in Jerusalem. 18 Then I rebuked the nobles of Judah and asked, “What is this evil you are doing—profaning the Sabbath day? Did not your forefathers do the same things, so that our God brought all this dis- aster on us and on this city? And now you are re- kindling His wrath against Israel by profaning a 6 the Sabbath!” When the evening shadows began to fall on the gates of Jerusalem, just before the Sabbath, I or- dered that the gates be shut and not opened until after the Sabbath. I posted some of my servants at the gates so that no load could enter on the 20 Sabbath day. Once or twice, the merchants and those who 21 sell all kinds of goods camped outside Jerusalem, but I warned them, “Why are you camping in front of the wall? If you do it again, I will lay 22 hands on you.” From that time on, they did not return on the Sabbath. Then I instructed the Levites to purify themselves and guard the gates in order to keep the Sabbath day holy. Remember me for this as well, O my God, and show me mercy according to" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 18, + "text": "–23) anger by burning incense to Baal.” 18 19 And the LORD informed me, so I knew. Then You showed me their deeds. For I was like a gentle lamb led to slaughter; I did not know that they had plotted against me: “Let us destroy the tree with its fruit; let us cut him off from the land of the living, 20 that his name may be remembered no more.” b O LORD of Hosts, who judges righteously, who examines the heart and mind, let me see Your vengeance upon them, for to You I have committed my cause. 21 22 Therefore this is what the LORD says concerning the people of Anathoth who are seek- ing your life and saying, “You must not prophesy in the name of the LORD, or you will die by our hand.” So this is what the LORD of Hosts says: “I will punish them. Their young men will die by 23 the sword, their sons and daughters by famine. There will be no remnant, for I will bring dis- aster on the people of Anathoth in the year of The Prosperity of the Wicked their punishment.” 12 Righteous are You, O LORD, when I plead before You. Yet about Your judgments I wish to contend with You: As for you, do not pray for these people. Do not a 7 raise up a cry or a prayer on their behalf, for I will I earnestly warned them, rising up early and warning (them), Why does the way of the wicked prosper? the kidneys Why do all the faithless live at ease? b 20 Literally Hebrew 2 You planted them, and they have taken root. They have grown and produced fruit. a 12 All the land is laid waste, but no man takes it to" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 3, + "text": "| 697 18 2 4 This is the word that came to Jeremiah from the LORD: “Go down at once to the potter’s house, and there I will give you My mes- 3 sage.” So I went down to the potter’s house and saw But the vessel that he him working at the wheel. was shaping from the clay became flawed in his hand; so he formed it into another vessel, as it 5 seemed best for him to do. 6 Then the word of the LORD came to me, saying, “O house of Israel, declares the LORD, can I not treat you as this potter treats his clay? Just like clay in the potter’s hand, so are you in My hand, 7 O house of Israel. 8 At any time I might announce that a nation or kingdom will be uprooted, torn down, and de- But if that nation I warned turns from stroyed. its evil, then I will relent of the disaster I had 9 planned to bring. And if at another time I announce that I will 10 build up and establish a nation or kingdom, and if it does evil in My sight and does not lis- ten to My voice, then I will relent of the good I 11 had intended for it. Now therefore, tell the men of Judah and the residents of Jerusalem that this is what the LORD says: ‘Behold, I am planning a disaster for you and devising a plan against you. Turn now, each of you, from your evil ways, and correct your 12 ways and deeds.’ But they will reply, ‘It is hopeless. We will fol- low our own plans, and each of us will act accord- 13 ing to the stubbornness of his evil heart.’ ” Therefore this is what the LORD says: “Inquire among the nations: Who has" + }, + { + "verseNum": 4, + "text": "4 Hosts, the God of Israel, says: I am going to bring such disaster on this place that the ears of all who because they have aban- hear of it will ring, doned Me and made this a foreign place. They have burned incense in this place to other gods that neither they nor their fathers nor the kings of Judah have ever known. They have filled this They have place with the blood of the innocent. built high places to Baal on which to burn their children in the fire as offerings to Baal—some- thing I never commanded or mentioned, nor did 6 it even enter My mind. 5 7 So behold, the days are coming, declares the LORD, when this place will no longer be called a Topheth or the Valley of Ben-hinnom, but the Valley of Slaughter. the plans of Judah and Jerusalem. I will make them fall by the sword before their enemies, by the hands of those who seek their lives, and I will give their carcasses as food to the birds of the air 8 and the beasts of the earth. And in this place I will ruin b 9 I will make this city a desolation and an object of scorn. All who pass by will be appalled and will scoff at all her wounds. I will make them eat the flesh of their sons and daughters, and they will eat one another’s flesh in the siege and dis- tress inflicted on them by their enemies who 10 seek their lives.’ 11 Then you are to shatter the jar in the presence and you are to of the men who accompany you, proclaim to them that this is what the LORD of Hosts says: I will shatter this nation and this city, li" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 13, + "text": "| 699 something like all His past wonders, so that Neb- 3 uchadnezzar will withdraw from us.” 4 But Jeremiah answered, “You are to tell Zedekiah that this is what the LORD, the God of Israel, says: ‘I will turn against you the weap- c ons of war in your hands, with which you are fighting the king of Babylon and the Chaldeans who besiege you outside the wall, and I will 5 assemble their forces in the center of this city. And I Myself will fight against you with an out- stretched hand and a mighty arm, with anger, fury, and great wrath. I will strike down the res- idents of this city, both man and beast. They will 7 die in a terrible plague.’ 6 ‘After that,’ declares the LORD, ‘I will hand over Zedekiah king of Judah, his officers, and the peo- ple in this city who survive the plague and sword and famine, to Nebuchadnezzar king of Babylon and to their enemies who seek their lives. He will put them to the sword; he will not spare them or 8 show pity or compassion.’ 9 Furthermore, you are to tell this people that this is what the LORD says: ‘Behold, I set before you the way of life and the way of death. Whoever stays in this city will die by sword and famine and plague, but whoever goes out and surren- ders to the Chaldeans who besiege you will live; For I he will retain his life like a spoil of war. have set My face against this city to bring disaster and not good, declares the LORD. It will be deliv- ered into the hand of the king of Babylon, who A Message to the House of David" + }, + { + "verseNum": 14, + "text": "14 I will punish you as your deeds deserve, declares the LORD. I will kindle a fire in your forest that will consume everything around A Warning to Judah’s Kings ” you.’ 22 3 2 This is what the LORD says: “Go down to the palace of the king of Judah and pro- saying, ‘Hear the word claim this message there, of the LORD, O king of Judah, who sits on the throne of David—you and your officials and your This is what the people who enter these gates. LORD says: Administer justice and righteous- ness. Rescue the victim of robbery from the hand of his oppressor. Do no wrong or violence to the foreigner, the fatherless, or the widow. Do not 4 shed innocent blood in this place. 5 For if you will indeed carry out these com- mands, then kings who sit on David’s throne will enter through the gates of this palace riding on chariots and horses—they and their officials and But if you do not obey these words, their people. then I swear by Myself, declares the LORD, that A Warning about the Palace this house will become a pile of rubble.’ 6 ” 11 a For this is what the LORD says concerning Shallum son of Josiah, king of Judah, who suc- ceeded his father Josiah but has gone forth from this place: “He will never return, but he will die in the place to which he was exiled; he will never A Warning about Jehoiakim see this land again.” 13 12 “Woe to him who builds his palace by unrighteousness, and his upper rooms without justice, who makes his countrymen serve without 14 pay, and fails to pay their" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 12, + "text": "| 701 dismayed, nor will any go missing, declares the 5 LORD. Behold, the days are coming, d declares the LORD, when I will raise up for David a righteous Branch, and He will reign wisely as King 6 and will administer justice and righteousness in the land. In His days Judah will be saved, and Israel will dwell securely. And this is His name by which He will e 7 be called: The LORD Our Righteousness. 8 So behold, the days are coming, declares the LORD, when they will no longer say, ‘As surely as the LORD lives, who brought the Israelites up out Instead they will say, ‘As of the land of Egypt.’ surely as the LORD lives, who brought and led the descendants of the house of Israel up out of the land of the north and all the other lands to which He had banished them.’ Then they will Lying Prophets dwell once more in their own land.” 9 As for the prophets: My heart is broken within me, and all my bones tremble. I have become like a drunkard, like a man overcome by wine, because of the LORD, 10 because of His holy words. For the land is full of adulterers— because of the curse, the land mourns and the pastures of the wilderness have dried up— their course is evil 11 and their power is misused. “For both prophet and priest are ungodly; even in My house I have found their declares the LORD. wickedness,” 12 “Therefore their path will become slick; they will be driven away into the darkness and fall into it. For I will bring disaster upon them in the year of their punishment,” declares t" + }, + { + "verseNum": 13, + "text": "13 22 “Among the prophets of Samaria I saw an offensive thing: They prophesied by Baal 14 And and led My people Israel astray. among the prophets of Jerusalem I have seen a horrible thing: They commit adultery and walk in lies. They strengthen the hands of evildoers, so that no one turns his back on wickedness. They are all like Sodom to Me; 15 the people of Jerusalem are like Gomorrah.” Therefore this is what the LORD of Hosts says concerning the prophets: “I will feed them wormwood and give them poisoned water to drink, for from the prophets of Jerusalem 16 ungodliness has spread throughout the land.” This is what the LORD of Hosts says: “Do not listen to the words of the prophets who prophesy to you. They are filling you with false hopes. They speak visions from their own minds, 17 not from the mouth of the LORD. They keep saying to those who despise Me, ‘The LORD says that you will have peace,’ and to everyone who walks in the 18 stubbornness of his own heart, ‘No harm will come to you.’ But which of them has stood in the council of the LORD to see and hear His word? Who has given heed to His word 19 and obeyed it? Behold, the storm of the LORD has gone out with fury, a whirlwind swirling down 20 upon the heads of the wicked. The anger of the LORD will not turn back until He has fully accomplished the purposes of His heart. In the days to come 21 you will understand this clearly. I did not send these prophets, yet they have run with their message; I did not speak to them," + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 10, + "text": "| 703 9 10 of Jerusalem—those remaining in this land and those living in the land of Egypt. I will make them a horror and an offense to all the kingdoms of the earth, a disgrace and an object of scorn, ridicule, and cursing wherever I have banished And I will send against them sword and them. famine and plague, until they have perished from Seventy Years of Captivity the land that I gave to them and their fathers.’ ” 25 This is the word that came to Jeremiah concerning all the people of Judah in the fourth year of Jehoiakim son of Josiah king of Ju- dah, which was the first year of Nebuchadnezzar So the prophet Jeremiah spoke king of Babylon. to all the people of Judah and all the residents of 3 Jerusalem as follows: 2 24 a After Nebuchadnezzar king of Babylon had carried away Jeconiah son of Jehoi- akim king of Judah, as well as the officials of Ju- dah and the craftsmen and metalsmiths from Je- the rusalem, and had brought them to Babylon, LORD showed me two baskets of figs placed in One basket had front of the temple of the LORD. very good figs, like those that ripen early, but the other basket contained very poor figs, so bad 3 they could not be eaten. 2 b “Jeremiah,” the LORD asked, “what do you see?” “Figs!” I replied. “The good figs are very good, but the bad figs are very bad, so bad they cannot be 4 eaten.” 5 c 6 Then the word of the LORD came to me, saying, “This is what the LORD, the God of Israel, says: ‘Like these good figs, so I regard as good the ex- iles from" + }, + { + "verseNum": 11, + "text": "11 28 And this whole land will be- light of the lamp. come a desolate wasteland, and these nations 12 will serve the king of Babylon for seventy years. But when seventy years are complete, I will a punish the king of Babylon and that nation, the for their guilt, declares land of the Chaldeans, the LORD, and I will make it an everlasting deso- 13 lation. 14 I will bring upon that land all the words I have pronounced against it, all that is written in this book, which Jeremiah has prophesied against all For many nations and great kings the nations. will enslave them, and I will repay them accord- ing to their deeds and according to the work of The Cup of God’s Wrath ” their hands.’ 15 This is what the LORD, the God of Israel, said to me: “Take from My hand this cup of the wine 16 of wrath, and make all the nations to whom I And they will drink and send you drink from it. stagger and go out of their minds, because of the 17 sword that I will send among them.” 21 19 18 20 So I took the cup from the LORD’s hand and made all the nations drink from it, each one to to make them a whom the LORD had sent me, ruin, an object of horror and contempt and curs- ing, as they are to this day—Jerusalem and the Pharaoh cities of Judah, its kings and officials; king of Egypt, his officials, his leaders, and all his all the mixed tribes; all the kings of Uz; people; all the kings of the Philistines: Ashkelon, Gaza, Edom, Ekron, and the remnant of Ashdod; Moab, and the Ammonites; all the kings of" + }, + { + "verseNum": 12, + "text": "and" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 23, + "text": "| 705 He has left His den like a lion, for their land has been made a a desolation by the sword of the oppressor, and because of the fierce anger of A Warning to the Cities of Judah the LORD. 26 2 At the beginning of the reign of Jehoia- kim son of Josiah king of Judah, this word “This is what the LORD came from the LORD: says: Stand in the courtyard of the house of the LORD and speak all the words I have commanded you to speak to all the cities of Judah who come Perhaps to worship there. Do not omit a word. they will listen and turn—each from his evil way of life—so that I may relent of the disaster I am planning to bring upon them because of the evil 4 of their deeds. 3 5 And you are to tell them that this is what the LORD says: ‘If you do not listen to Me and walk in and if you My law, which I have set before you, b do not listen to the words of My servants the prophets, whom I have sent you again and again then I will make even though you did not listen, this house like Shiloh, and I will make this city an object of cursing among all the nations of the Jeremiah Threatened with Death earth.’ 7 ” 6 8 Now the priests and prophets and all the people heard Jeremiah speaking these words in the house of the LORD, and as soon as he had fin- ished telling all the people everything the LORD had commanded him to say, the priests and prophets and all the people seized him, shouting, How dare you prophesy “You must surely die! in the name of the LORD that this house will be- come like" + }, + { + "verseNum": 24, + "text": "and his body thrown into the burial place of the 24 common people. Nevertheless, Ahikam son of Shaphan sup- ported Jeremiah, so he was not handed over to The Yoke of Nebuchadnezzar the people to be put to death. 27 a At the beginning of the reign of Zede- kiah son of Josiah king of Judah, this This is 2 b word came to Jeremiah from the LORD. what the LORD said to me: 3 “Make for yourself a yoke out of leather straps Send word to the kings and put it on your neck. of Edom, Moab, Ammon, Tyre, and Sidon through the envoys who have come to Jerusalem to Zede- Give them a message from kiah king of Judah. the LORD of Hosts, the God of Israel, to relay to 5 their masters: 4 6 7 By My great power and outstretched arm, I made the earth and the men and beasts on the So now face of it, and I give it to whom I please. I have placed all these lands under the authority of My servant Nebuchadnezzar king of Babylon. I have even made the beasts of the field subject to All nations will serve him and his son and him. grandson, until the time of his own land comes; then many nations and great kings will enslave 8 him. As for the nation or kingdom that does not serve Nebuchadnezzar king of Babylon and does not place its neck under his yoke, I will punish that nation by sword and famine and plague, declares 9 the LORD, until I have destroyed it by his hand. 10 But as for you, do not listen to your prophets, your diviners, your interpreters of dreams, your mediums, or your sorcerers who declare, ‘Yo" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "); most Hebrew manuscripts Jehoiachin 24:12. is a variant of ; see 2 Kings 24:12. Most LXX manuscripts do not include this verse. is a variant of ; see 2 Kings declares the LORD, ‘for I will break the yoke of 5 the king of Babylon.’ ” Then the prophet Jeremiah replied to the prophet Hananiah in the presence of the priests 6 and all the people who were standing in the “Amen!” Jeremiah said. house of the LORD. “May the LORD do so! May the LORD fulfill the words you have prophesied, and may He restore the articles of His house and all the exiles back to 7 this place from Babylon. 8 Nevertheless, listen now to this message I am speaking in your hearing and in the hearing of all The prophets of old who preceded the people. you and me prophesied war, disaster, and plague As for against many lands and great kingdoms. the prophet who prophesies peace, only if the word of the prophet comes true will the prophet 10 be recognized as one the LORD has truly sent.” 9 Then the prophet Hananiah took the yoke off 11 the neck of Jeremiah the prophet and broke it. And in the presence of all the people Hananiah proclaimed, “This is what the LORD says: ‘In this way, within two years I will break the yoke of Nebuchadnezzar king of Babylon off the neck of all the nations.’ 12 At this, Jeremiah the prophet went on his way. But shortly after Hananiah the prophet had 13 broken the yoke off his neck, the word of the “Go and tell Hananiah LORD came to Jeremiah: that this is what the LORD says: ‘You have" + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 10, + "text": ". Or or Or or That is, the Babylonians; also clarified in verse 19 Ezra The Proclamation of Cyrus (2 Chronicles 36:22–23 ;" + }, + { + "verseNum": 14, + "text": "| 707 Jeremiah’s Letter to the Exiles 29 a 2 This is the text of the letter that Jeremiah the prophet sent from Jerusalem to the surviving elders among the exiles and to the priests, the prophets, and all the others Nebu- chadnezzar had carried into exile from Jerusalem the to Babylon. queen mother, the court officials, the officials of Judah and Jerusalem, the craftsmen, and the met- The alsmiths had been exiled from Jerusalem.) letter was entrusted to Elasah son of Shaphan and Gemariah son of Hilkiah, whom Zedekiah king of Judah sent to King Nebuchadnezzar in Babylon. It stated: (This was after King Jeconiah, 3 4 6 5 This is what the LORD of Hosts, the God of Israel, says to all the exiles who were carried away from Jerusalem to Babylon: “Build houses and settle down. Plant gardens and eat their produce. Take wives and have sons and daughters. Take wives for your sons and give your daughters in marriage, so that they too may have sons and daughters. Seek the Multiply there; do not decrease. prosperity of the city to which I have sent you as exiles. Pray to the LORD on its behalf, 8 for if it prospers, you too will prosper.” 7 For this is what the LORD of Hosts, the God of Israel, says: “Do not be deceived by the prophets and diviners among you, and do 9 not listen to the dreams you elicit from them. For they are falsely prophesying to you in My name; I have not sent them, declares the LORD.” b 10 13 11 For this is what the LORD says: “When Baby- lon’s seventy years are comp" + }, + { + "verseNum": 15, + "text": "15 16 Because you may say, “The LORD has raised up this is what the for us prophets in Babylon,” LORD says about the king who sits on David’s throne and all the people who remain in this city, your brothers who did not go with you into ex- ile— this is what the LORD of Hosts says: 17 18 “I will send against them sword and famine and plague, and I will make them like rotten figs, so I will pursue them bad they cannot be eaten. with sword and famine and plague. I will make them a horror to all the kingdoms of the earth— a curse, a desolation, and an object of scorn and reproach among all the nations to which I banish I will do this because they have not lis- them. tened to My words, declares the LORD, which I sent to them again and again through My serv- ants the prophets. And neither have you exiles 20 listened, declares the LORD.” 19 a 22 So hear the word of the LORD, all you exiles I 21 have sent away from Jerusalem to Babylon. This is what the LORD of Hosts, the God of Is- rael, says about Ahab son of Kolaiah and Zede- kiah son of Maaseiah, who are prophesying to you lies in My name: “I will deliver them to Neb- uchadnezzar king of Babylon, and he will kill Because of them, them before your very eyes. all the exiles of Judah who are in Babylon will use this curse: ‘May the LORD make you like Zede- kiah and Ahab, whom the king of Babylon For they have committed roasted in the fire!’ an outrage in Israel by committing adultery with the wives of their neighbors and speaking li" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "–17) will know that I am the Lord GOD.’ 25 This is what the Lord GOD says: ‘When I gather the house of Israel from the peoples among lapis lazuli b 13 The precise identification of some of these gemstones is uncertain. Or whom they have been scattered, I will show My- self holy among them in the sight of the nations. 26 Then they will dwell in their own land, which I have given to My servant Jacob. And there they will dwell securely, build houses, and plant vine- yards. They will dwell securely when I execute judgments against all those around them who treat them with contempt. Then they will know A Prophecy against Pharaoh ” that I am the LORD their God.’ 29 2 In the tenth year, on the twelfth day of the tenth month, the word of the LORD “Son of man, set your face came to me, saying, 3 against Pharaoh king of Egypt and prophesy Speak to him against him and against all Egypt. and tell him that this is what the Lord GOD says: Behold, I am against you, O Pharaoh king of Egypt, O great monster who lies among his rivers, who says, ‘The Nile is mine; 4 I made it myself.’ But I will put hooks in your jaws and cause the fish of your streams to cling to your scales. 5 I will haul you up out of your rivers, and all the fish of your streams will cling to your scales. I will leave you in the desert, you and all the fish of your streams. You will fall on the open field and will not be taken away or gathered for burial. I have given you as food 6 to the beasts of the earth and the birds o" + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 3, + "text": "| 709 18 because they call you an outcast, Zion, for whom no one cares.” a This is what the LORD says: “I will restore the fortunes of Jacob’s tents and have compassion on his dwellings. And the city will be rebuilt on her own ruins, and the palace will stand in its rightful 19 place. Thanksgiving will proceed from them, a sound of celebration. I will multiply them, and they will not be decreased; 20 I will honor them, and they will not be belittled. Their children will be as in days of old, and their congregation will be established 21 before Me; and I will punish all their oppressors. Their leader will be one of their own, and their ruler will arise from their midst. And I will bring him near, and he will approach Me, for who would dare on his own to declares the LORD. 22 approach Me?” 23 “And you will be My people, and I will be your God.” Behold, the storm of the LORD has gone out with fury, a whirlwind swirling down 24 upon the heads of the wicked. The fierce anger of the LORD will not turn back until He has fully accomplished the purposes of His heart. In the days to come Mourning Turned to Joy" + }, + { + "verseNum": 4, + "text": "4 13 Again I will build you, and you will be rebuilt, Then the maidens will rejoice with dancing, O Virgin Israel. Again you will take up your tambourines 5 young men and old as well. I will turn their mourning into joy, and go out in joyful dancing. 14 and give them comfort and joy for their Again you will plant vineyards on the hills of sorrow. 6 Samaria; the farmers will plant and enjoy the fruit. For there will be a day when watchmen will I will fill the souls of the priests abundantly, declares the LORD. and will fill My people with My goodness,” 15 call out on the hills of Ephraim, ‘Arise, let us go up to Zion, ” to the LORD our God!’ 7 For this is what the LORD says: “Sing with joy for Jacob; shout for the foremost of the nations! Make your praises heard, and say, ‘O LORD, save Your people, the remnant of Israel!’ 8 Behold, I will bring them from the land of the north and gather them from the farthest parts of the earth, including the blind and the lame, 9 expectant mothers and women in labor. They will return as a great assembly! They will come with weeping, and by their supplication I will lead them; I will make them walk beside streams of waters, on a level path where they will not stumble. For I am Israel’s Father, 10 Hear, O nations, the word of the LORD, and proclaim it in distant coastlands: “The One who scattered Israel will gather 11 them and keep them as a shepherd keeps his flock. For the LORD has ransomed Jacob 12 and redeemed him from the hand that had ove" + }, + { + "verseNum": 26, + "text": "–40) d 6 Now, however, Jesus has received a much more excellent ministry, just as the covenant He medi- 7 ates is better and is founded on better promises. For if that first covenant had been without fault, 8 no place would have been sought for a second. But God found fault with the people and said: “Behold, the days are coming, declares the Lord, when I will make a new covenant with the house of Israel 9 and with the house of Judah. It will not be like the covenant I made with their fathers when I took them by the hand to lead them out of the land of Egypt, because they did not abide by My covenant, and I disregarded them, declares the Lord. 10 For this is the covenant I will make with the house of Israel after those days, declares the Lord. I will put My laws in their minds and inscribe them on their hearts. And I will be their God, 11 and they will be My people. No longer will each one teach his neighbor or his brother, saying, ‘Know the Lord,’ because they will all know Me, 12 from the least of them to the greatest. e For I will forgive their iniquities f and will remember their sins no more.” 13 By speaking of a new covenant, He has made the first one obsolete; and what is obsolete and aging will soon disappear. e 12" + }, + { + "verseNum": 31, + "text": "– is included for clarity but is not . covenant tabernacle 1080 |" + }, + { + "verseNum": 33, + "text": "" + }, + { + "verseNum": 34, + "text": "But the righteous will live by faith j 38" + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 2, + "text": "| 711 I will put My law in their minds and inscribe it on their hearts. 34 And I will be their God, and they will be My people. No longer will each man teach his neighbor or his brother, saying, ‘Know the LORD,’ because they will all know Me, from the least of them to the greatest, declares the LORD. For I will forgive their iniquities 35 and will remember their sins no more.” d Thus says the LORD, who gives the sun for light by day, who sets in order the moon and stars for light by night, who stirs up the sea so that its waves roar—the LORD of Hosts is His 36 name: “Only if this fixed order departed from My presence, declares the LORD, would Israel’s descendants ever cease 37 to be a nation before Me.” This is what the LORD says: “Only if the heavens above could be measured and the foundations of the earth below ‘The fathers have eaten sour grapes, searched out 30 and the teeth of the children are set on edge.’ Instead, each will die for his own iniquity. If anyone eats the sour grapes, his own teeth will 31 be set on edge. Behold, the days are coming, declares the LORD, when I will make a new covenant with the house of Israel 32 and with the house of Judah. It will not be like the covenant I made with their fathers when I took them by the hand to lead them out of the land of Egypt— c a covenant they broke, though I was a husband to them, ” declares the LORD. 33 “But this is the covenant I will make with the house of Israel would I reject all of Israel’s descendants declares" + }, + { + "verseNum": 3, + "text": "courtyard of the guard, which was in the palace 3 of the king of Judah. a 4 For Zedekiah king of Judah had imprisoned him, saying: “Why are you prophesying like this? You claim that the LORD says, ‘Behold, I am about to deliver this city into the hand of the king of Bab- Zedekiah king of ylon, and he will capture it. Judah will not escape from the hands of the Chal- deans, but he will surely be delivered into the hand of the king of Babylon, and will speak with him face to face and see him eye to eye. He will take Zedekiah to Babylon, where he will stay un- til I attend to him, declares the LORD. If you fight 6 against the Chaldeans, you will not succeed.’ ” 5 7 8 Jeremiah replied, “The word of the LORD came to me, saying: Behold! Hanamel, the son of your uncle Shallum, is coming to you to say, ‘Buy for yourself my field in Anathoth, for you have the Then, as the right of redemption to buy it.’ LORD had said, my cousin Hanamel came to me in the courtyard of the guard and urged me, ‘Please buy my field in Anathoth in the land of Benjamin, for you own the right of inheritance and redemption. Buy it for yourself.’ 9 Then I knew that this was the word of the LORD. ” b 11 10 So I bought the field in Anathoth from my cousin Hanamel, and I weighed out seventeen shekels of silver. I signed and sealed the deed, called in witnesses, and weighed out the silver on Then I took the deed of purchase— the scales. 12 the sealed copy with its terms and conditions, as and I gave this deed to we" + }, + { + "verseNum": 36, + "text": "–44) around you.” 13 Now as I was prophesying, Pelatiah son of Benaiah died. Then I fell facedown and cried out in a loud voice, “Oh, Lord GOD, will You bring the 14 remnant of Israel to a complete end?” 15 Then the word of the LORD came to me, say- “Son of man, your brothers—your rela- ing, tives, your fellow exiles, and the whole house of Israel—are those of whom the people of Jerusa- lem have said, ‘They are far away from the LORD; 16 this land has been given to us as a possession.’ Therefore declare that this is what the Lord GOD says: ‘Although I sent them far away among the nations and scattered them among the 752 |" + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 11, + "text": "| 713 44 about which you are saying, ‘It is a desolation, without man or beast; it has been delivered into Fields will be pur- the hands of the Chaldeans.’ chased with silver, and deeds will be signed, sealed, and witnessed in the land of Benjamin, in the areas surrounding Jerusalem, and in the cit- ies of Judah—the cities of the hill country, the and the Negev—because I will restore foothills, The Excellence of the Restored Nation them from captivity, declares the LORD.” d c 33 e 2 While Jeremiah was still confined in the courtyard of the guard, the word of the “Thus says LORD came to him a second time: the LORD who made the earth, the LORD who formed it and established it, the LORD is His Call to Me, and I will answer and show name: you great and unsearchable things you do not 4 know. 3 For this is what the LORD, the God of Israel, says about the houses of this city and the palaces of the kings of Judah that have been torn down for 5 defense against the siege ramps and the sword: and to fill those places with the corpses of the men I will strike down in My anger and in My wrath. I have hidden My face from this city because of all its 6 wickedness. The Chaldeans are coming to fight f g 7 Nevertheless, I will bring to it health and heal- ing, and I will heal its people and reveal to them the abundance of peace and truth. I will restore 8 Judah and Israel from captivity and will rebuild And I will cleanse them them as in former times. from all the iniquity they have committed" + }, + { + "verseNum": 12, + "text": "‘Give thanks to the LORD of Hosts, for the LORD is good; a His loving devotion endures forever.’ For I will restore the land from captivity 12 former times, says the LORD. as in 13 This is what the LORD of Hosts says: In this desolate place, without man or beast, and in all its cities, there will once more be pastures for b In the cities of shepherds to rest their flocks. the hill country, the foothills, and the Negev, in the land of Benjamin and the cities surrounding Jerusalem, and in the cities of Judah, the flocks will again pass under the hands of the one who The Covenant with David counts them, says the LORD. 14 Behold, the days are coming, declares the LORD, when I will fulfill the gracious promise that I have spoken to the house of Israel 15 and the house of Judah. In those days and at that time I will cause to sprout for David a righteous Branch, and He will administer justice 16 and righteousness in the land. In those days Judah will be saved, and Jerusalem will dwell securely, and this is the name by which it will c 17 be called: The LORD Our Righteousness. 18 For this is what the LORD says: David will never lack a man to sit on the throne of the house nor will the priests who are Levites of Israel, ever fail to have a man before Me to offer burnt offerings, to burn grain offerings, and to present 19 sacrifices.” 20 And the word of the LORD came to Jeremiah: “This is what the LORD says: If you can break My covenant with the day and My covenant with 21 the night, so" + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 13, + "text": "| 715 22 Behold, I am going to give the command, de- clares the LORD, and I will bring them back to this city. They will fight against it, capture it, and burn it down. And I will make the cities of Judah The Obedience of the Rechabites a desolation, without inhabitant.” 35 This is the word that came to Jeremiah 2 from the LORD in the days of Jehoiakim son of Josiah king of Judah: “Go to the house of the Rechabites, speak to them, and bring them to one of the chambers of the house of the LORD to 3 offer them a drink of wine.” 4 So I took Jaazaniah son of Jeremiah, the son of Habazziniah, and his brothers and all his sons— the entire house of the Rechabites— and I brought them into the house of the LORD, to a chamber occupied by the sons of Hanan son of Igdaliah, a man of God. This room was near the chamber of the officials, which was above the chamber of Maaseiah son of Shallum the door- 5 keeper. Then I set pitchers full of wine and some cups before the men of the house of the Rechabites, 6 and I said to them, “Drink some wine.” a 7 “We do not drink wine,” they replied, “for our forefather Jonadab son of Rechab commanded us, ‘Neither you nor your descendants are ever to Nor are you ever to build a house or drink wine. sow seed or plant a vineyard. Those things are not for you. Instead, you must live in tents all your lives, so that you may live a long time in the 8 land where you wander.’ And we have obeyed the voice of our forefather Jonadab son of Rechab in all he commande" + }, + { + "verseNum": 14, + "text": "Israel, says: Go and tell the men of Judah and the residents of Jerusalem: ‘Will you not accept dis- 14 cipline and obey My words?’ declares the LORD. The words of Jonadab son of Rechab have been carried out. He commanded his sons not to drink wine, and they have not drunk it to this very day because they have obeyed the command of their forefather. But I have spoken to you again and 15 again, and you have not obeyed Me! b a Again and again I have sent you all My serv- ants the prophets, proclaiming: ‘Turn now, each of you, from your wicked ways, and correct your actions. Do not go after other gods to serve them. Live in the land that I have given to you and your fathers.’ But you have not inclined your ear or lis- tened to Me. Yes, the sons of Jonadab son of Rechab carried out the command their forefather gave them, but these people have not listened to 17 Me. 16 Therefore this is what the LORD God of Hosts, the God of Israel, says: ‘Behold, I will bring to Judah and to all the residents of Jerusalem all the disaster I have pronounced against them, be- cause I have spoken to them but they have not obeyed, and I have called to them but they have 18 not answered.’ ” Then Jeremiah said to the house of the Recha- bites: “This is what the LORD of Hosts, the God of Israel, says: ‘Because you have obeyed the com- mand of your forefather Jonadab and have kept 19 all his commandments and have done all that he charged you to do, this is what the LORD of Hosts, the God of Israel, says:" + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 3, + "text": ". That is, the Babylonians; also in e 7 c 2 Jehucal Literally is a variant of verses 18, 19, and 23 Probably from the upper Nile region Or" + }, + { + "verseNum": 10, + "text": "| 717 written on it that the king of Babylon would surely come and destroy this land and deprive it 30 of man and beast?’ Therefore this is what the LORD says about Je- hoiakim king of Judah: He will have no one to sit on David’s throne, and his body will be thrown 31 out and exposed to heat by day and frost by night. I will punish him and his descendants and servants for their iniquity. I will bring on them, on the residents of Jerusalem, and on the men of Judah, all the calamity about which I warned 32 them but they did not listen.” Then Jeremiah took another scroll and gave it to the scribe Baruch son of Neriah, and at Jere- miah’s dictation he wrote on it all the words of the scroll that Jehoiakim king of Judah had burned in the fire. And many similar words were Jeremiah Warns Zedekiah added to them. 37 a 2 Nebuchadnezzar king of Babylon made Zedekiah son of Josiah the king of Judah, and he reigned in place of Coniah son of Jehoia- kim. But he and his officers and the people of the land refused to obey the words that the LORD 3 had spoken through Jeremiah the prophet. b Yet King Zedekiah sent Jehucal son of Shele- miah and Zephaniah the priest, the son of Maaseiah, to Jeremiah the prophet with the mes- 4 sage, “Please pray to the LORD our God for us!” c Now Jeremiah was free to come and go among 5 the people, for they had not yet put him in prison. Pharaoh’s army had left Egypt, and when the who were besieging Jerusalem heard Chaldeans 6 the report, they withdrew from Jer" + }, + { + "verseNum": 11, + "text": "Jeremiah Imprisoned 11 12 13 When the Chaldean army withdrew from Jeru- salem for fear of Pharaoh’s army, Jeremiah a started to leave Jerusalem to go to the land of Benjamin to claim his portion there among the people. But when he reached the Gate of Ben- jamin, the captain of the guard, whose name was Irijah son of Shelemiah, the son of Hananiah, seized him and said, “You are deserting to the 14 Chaldeans!” “That is a lie,” Jeremiah replied. “I am not deserting to the Chaldeans!” But Irijah would not listen to him; instead, he 15 arrested Jeremiah and took him to the officials. The officials were angry with Jeremiah, and they beat him and placed him in jail in the house of Jonathan the scribe, for it had been made into 16 a prison. So Jeremiah went into a cell in the dungeon 17 and remained there a long time. Later, King Zedekiah sent for Jeremiah and received him in his palace, where he asked him privately, “Is there a word from the LORD?” “There is,” Jeremiah replied. “You will be deliv- 18 ered into the hand of the king of Babylon.” Then Jeremiah asked King Zedekiah, “How have I sinned against you or your servants or 19 these people, that you have put me in prison? Where are your prophets who prophesied to you, claiming, ‘The king of Babylon will not come against you or this land’? But now please lis- ten, O my lord the king. May my petition come before you. Do not send me back to the house of 21 Jonathan the scribe, or I will die there.” 20 So King Zedekiah gave orders f" + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": ". That is, the Babylonians; also in verses 8, 9, 13, and 14 718 |" + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "–10) 25 So in the ninth year of Zedekiah’s reign, on the tenth day of the tenth month, Neb- uchadnezzar king of Babylon marched against Je- a rusalem with his entire army. They encamped a siege wall all around outside the city and built And the city was kept under siege until King it. 3 Zedekiah’s eleventh year. 2 b c By the ninth day of the fourth month, 4 the fam- ine in the city was so severe that the people of the Then the city was breached; land had no food. had surrounded the and though the Chaldeans city, all the men of war fled by night by way of the gate between the two walls near the king’s garden. 5 d And they slaughtered the sons of Zedekiah be- fore his eyes. Then they put out his eyes, bound him with bronze shackles, and took him to Baby- lon. The Temple Destroyed" + }, + { + "verseNum": 10, + "text": "| 719 15 27 “If I tell you,” Jeremiah replied, “you will surely put me to death. And even if I give you advice, 16 you will not listen to me.” But King Zedekiah swore secretly to Jeremiah, “As surely as the LORD lives, who has given us this life, I will not kill you, nor will I deliver you into the hands of these men who are seeking 17 your life.” When all the officials came to Jeremiah and questioned him, he relayed to them the exact words the king had commanded him to say. So they said no more to him, for no one had over- And Jeremiah re- heard the conversation. mained in the courtyard of the guard until the day Jerusalem was captured. The Fall of Jerusalem (2 Kings 25:1–12 ; 2 Chronicles 36:15–21) 28 18 Then Jeremiah said to Zedekiah, “This is what the LORD God of Hosts, the God of Israel, says: ‘If you indeed surrender to the officers of the king of Babylon, then you will live, this city will not be burned down, and you and your household will But if you do not surrender to the of- survive. ficers of the king of Babylon, then this city will be delivered into the hands of the Chaldeans. They will burn it down, and you yourself will not es- 19 cape their grasp.’ ” But King Zedekiah said to Jeremiah, “I am afraid of the Jews who have deserted to the Chal- deans, for the Chaldeans may deliver me into 20 their hands to abuse me.” 21 “They will not hand you over,” Jeremiah re- plied. “Obey the voice of the LORD in what I am telling you, that it may go well with you and you But" + }, + { + "verseNum": 11, + "text": "Jeremiah Delivered 11 Now Nebuchadnezzar king of Babylon had given orders about Jeremiah through Nebuzara- “Take him, dan captain of the guard, saying, look after him, and do not let any harm come to 13 him; do for him whatever he says.” 12 a shazban 14 mag So Nebuzaradan captain of the guard, Nebu- the Rabsaris, Nergal-sharezer the Rab- , and all the captains of the king of Babylon had Jeremiah brought from the courtyard of the guard, and they turned him over to Gedaliah son of Ahikam, the son of Shaphan, to take him home. So Jeremiah remained among his own 15 people. 16 And while Jeremiah had been confined in the courtyard of the guard, the word of the LORD had come to him: “Go and tell Ebed-melech the Cushite that this is what the LORD of Hosts, the God of Israel, says: ‘I am about to fulfill My words against this city for harm and not for good, and 17 on that day they will be fulfilled before your eyes. But I will deliver you on that day, declares the LORD, and you will not be delivered into the For I will hands of the men whom you fear. surely rescue you so that you do not fall by the sword. Because you have trusted in Me, you will escape with your life like a spoil of war, declares Jeremiah Remains in Judah the LORD.’ ” 18 40 This is the word that came to Jeremiah from the LORD after Nebuzaradan cap- tain of the guard had released him at Ramah, having found him bound in chains among all the captives of Jerusalem and Judah who were being 2 exiled to Babylon. 4 The captai" + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "–16) 22 Nebuchadnezzar king of Babylon appointed Gedaliah son of Ahikam, the son of Shaphan, over 23 the people he had left behind in the land of Judah. When all the commanders of the armies and their men heard that the king of Babylon had appointed Gedaliah as governor, they came to Gedaliah at Mizpah—Ishmael son of Nethaniah, Johanan son of Kareah, Seraiah son of Tanhumeth 24 son of the the Netophathite, and Jaazaniah And Gedaliah Maacathite, as well as their men. took an oath before them and their men, assuring them, “Do not be afraid of the servants of the Chaldeans. Live in the land and serve the king of Babylon, and it will be well with you.” a 2 Kings 25:30 | 369 The Murder of Gedaliah" + }, + { + "verseNum": 8, + "text": ". Literally 1 Chronicles From Adam to Abraham" + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 1, + "text": "–10) 25 26 In the seventh month, however, Ishmael son of Nethaniah, the son of Elishama, who was a member of the royal family, came with ten men and struck down and killed Gedaliah, along with the Judeans and Chaldeans who were with Then all the people small him at Mizpah. and great, together with the commanders of the army, arose and fled to Egypt for fear of the Jehoiachin Released from Prison Chaldeans." + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 4, + "text": "| 721 along with all the others who remained in Mizpah—over whom Nebuzaradan captain of the guard had appointed Gedaliah son of Ahikam. Ishmael son of Nethaniah took them captive and Johanan Rescues the Captives set off to cross over to the Ammonites. 11 12 When Johanan son of Kareah and all the com- manders of the armies with him heard of all the crimes that Ishmael son of Nethaniah had com- they took all their men and went to mitted, fight Ishmael son of Nethaniah. And they found 13 him near the great pool in Gibeon. 14 When all the people with Ishmael saw Johanan son of Kareah and all the commanders of the army with him, they rejoiced, and all the peo- ple whom Ishmael had taken captive at Mizpah 15 turned and went over to Johanan son of Kareah. But Ishmael son of Nethaniah and eight of his men escaped from Johanan and went to the 16 Ammonites. b Then Johanan son of Kareah and all the com- manders of the armies with him took the whole remnant of the people from Mizpah whom he had recovered from Ishmael son of Nethaniah after Ishmael had killed Gedaliah son of Ahikam: the soldiers, women, children, and court offi- And he had brought back from Gibeon. cials 18 they went and stayed in Geruth Chimham, near c to Bethlehem, in order to proceed into Egypt escape the Chaldeans. For they were afraid of the Chaldeans because Ishmael son of Nethaniah had struck down Gedaliah son of Ahikam, whom A Warning against Going to Egypt the king of Babylon had appointed over the land. 17 42 d" + }, + { + "verseNum": 5, + "text": "5 19 6 Then they said to Jeremiah, “May the LORD be a true and faithful witness against us if we do not act upon every word that the LORD your God Whether it is pleasant or sends you to tell us. unpleasant, we will obey the voice of the LORD our God to whom we are sending you, so that it may go well with us when we obey the voice of 7 the LORD our God!” 8 After ten days the word of the LORD came to Jeremiah, and he summoned Johanan son of Ka- reah, all the commanders of the forces who were with him, and all the people from the least to the 9 greatest. 10 Jeremiah told them, “Thus says the LORD, the God of Israel, to whom you sent me to present ‘If you will indeed stay in this your petition: land, then I will build you up and not tear you down; I will plant you and not uproot you, for I will relent of the disaster I have brought upon 11 you. Do not be afraid of the king of Babylon, whom you now fear; do not be afraid of him, declares 12 the LORD, for I am with you to save you and deliver you from him. And I will show you compassion, and he will have compassion on you 13 and restore you to your own land.’ 15 14 But if you say, ‘We will not stay in this land,’ and you thus disobey the voice of the LORD your and if you say, ‘No, but we will go to the God, land of Egypt and live there, where we will not see war or hear the sound of the ram’s horn or then hear the word of the hunger for bread,’ LORD, O remnant of Judah! This is what the LORD of Hosts, the God of Israel, says: ‘If y" + } + ] + }, + { + "chapterNum": 43, + "verses": [ + { + "verseNum": 2, + "text": ". Hebrew; LXX Azariah d 1 722 |" + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 18, + "text": "| 723 9 As a result, you will be cut off and will become an object of cursing and reproach among all the Have you forgotten the nations of the earth. wickedness of your fathers and of the kings of Ju- dah and their wives, as well as the wickedness that you and your wives committed in the land of To this Judah and in the streets of Jerusalem? day they have not humbled themselves or shown reverence, nor have they followed My instruc- tion or the statutes that I set before you and your 11 fathers. 10 12 Therefore this is what the LORD of Hosts, the God of Israel, says: I will set My face to bring dis- And I will take aster and to cut off all Judah. away the remnant of Judah who have resolved to go to the land of Egypt to reside there; they will meet their end. They will all fall by the sword or be consumed by famine. From the least to the greatest, they will die by sword or famine; and they will become an object of cursing and horror, 13 of vilification and reproach. 14 I will punish those who live in the land of Egypt, just as I punished Jerusalem, by sword and famine and plague, so that none of the remnant of Judah who have gone to reside in Egypt will escape or survive to return to the land of Judah, where they long to return and live; for none will The Stubbornness of the People return except a few fugitives.” 15 g 16 said to Jeremiah, 17 Then all the men who knew that their wives were burning incense to other gods, and all the women standing by—a great assembly—along with a" + }, + { + "verseNum": 19, + "text": "19 30 “Moreover,” said the women, “when we burned incense to the Queen of Heaven and poured out drink offerings to her, was it without our husbands’ knowledge that we made sacrifi- cial cakes in her image and poured out drink of- Calamity for the Jews ferings to her?” 20 know that My threats of harm against you will This is what the LORD says: Be- surely stand. hold, I will deliver Pharaoh Hophra king of Egypt into the hands of his enemies who seek his life, just as I delivered Zedekiah king of Judah into the hand of Nebuchadnezzar king of Babylon, the en- Jeremiah’s Message to Baruch emy who was seeking his life.” 21 22 Then Jeremiah said to all the people, both men and women, who were answering him, “As for the incense you burned in the cities of Judah and in the streets of Jerusalem—you, your fathers, your kings, your officials, and the people of the land—did the LORD not remember and bring this to mind? So the LORD could no longer endure the evil deeds and detestable acts you committed, and your land became a desolation, a horror, and an object of cursing, without inhab- itant, as it is this day. Because you burned incense and sinned against the LORD and did not obey the voice of the LORD or walk in His in- struction, His statutes, and His testimonies, this 24 disaster has befallen you, as you see today.” 23 Then Jeremiah said to all the people, including all the women, “Hear the word of the LORD, all 25 those of Judah who are in the land of Egypt. This is what the LORD o" + } + ] + }, + { + "chapterNum": 46, + "verses": [ + { + "verseNum": 27, + "text": "| 725 and the warrior cannot escape! In the north by the River Euphrates they stumble and fall. Who is this, rising like the Nile, 8 like rivers whose waters churn? Egypt rises like the Nile, and its waters churn like rivers, boasting, ‘I will rise and cover the earth; 7 9 18 ‘Pharaoh king of Egypt was all noise; he has let the appointed time pass him by.’ As surely as I live, declares the King, whose name is the LORD of Hosts, there will come one who is like Tabor among 19 the mountains and like Carmel by the sea. Pack your bags for exile, I will destroy the cities and their people.’ O daughter dwelling in Egypt! Advance, O horses! Race furiously, a O chariots! 20 For Memphis will be laid waste, destroyed and uninhabited. Let the warriors come forth— Egypt is a beautiful heifer, Cush 10 and Put carrying their shields, 21 but a gadfly from the north is coming men of Lydia drawing the bow. For that day belongs to the Lord GOD of Hosts, a day of vengeance against His foes. The sword will devour until it is satisfied, until it is quenched with their blood. For the Lord GOD of Hosts will hold a sacrifice 11 in the land of the north by the River Euphrates. Go up to Gilead for balm, O Virgin Daughter of Egypt! In vain you try many remedies, 12 but for you there is no healing. The nations have heard of your shame, and your outcry fills the earth, because warrior stumbles over warrior 13 against her. Even the mercenaries among her are like fattened calves. They too will turn back; to" + }, + { + "verseNum": 28, + "text": "28 Jacob will return to quiet and ease, with no one to make him afraid. And you, My servant Jacob, do not be afraid, declares the LORD, for I am with you. Though I will completely destroy all the nations to which I have banished you, I will not completely destroy you. Yet I will discipline you justly, and will by no means leave you Judgment on the Philistines (Zeph. 2:4–7) unpunished.” 47 This is the word of the LORD that came to Jeremiah the prophet about the 2 Philistines before Pharaoh struck down Gaza. This is what the LORD says: “See how the waters are rising from the north and becoming an overflowing torrent. They will overflow the land and its fullness, the cities and their inhabitants. The people will cry out, 3 and all who dwell in the land will wail at the sound of the galloping hooves of stallions, the rumbling of chariots, and the clatter of their wheels. The fathers will not turn back for their sons; 4 their hands will hang limp. For the day has come to destroy all the Philistines, to cut off from Tyre and Sidon every remaining ally. Indeed, the LORD is about to destroy the 5 Philistines, a the remnant from the coasts of Caphtor. The people of Gaza will shave their heads in mourning; b Ashkelon will be silenced. O remnant of their valley, 6 how long will you gash yourself? ‘Alas, O sword of the LORD, how long until you rest? Return to your sheath; cease and be still!’ 7 How can it rest Judgment on Moab" + } + ] + }, + { + "chapterNum": 47, + "verses": [ + { + "verseNum": 4, + "text": "and" + } + ] + }, + { + "chapterNum": 48, + "verses": [ + { + "verseNum": 1, + "text": "–47) refuge.” 15 This is the burden against Moab: Ar in Moab is ruined, 2 destroyed in a night! Kir in Moab is devastated, destroyed in a night! Dibon goes up to its temple to weep at its high places. Moab wails over Nebo, as well as over Medeba. Every head is shaved, a 5 every beard is cut off. Zoar, like a heifer three years of age. b 7 Poplars Dibon Or Or wordplay on (see verse 2), sounds like the Hebrew for their voices are heard as far as Jahaz. Therefore the soldiers of Moab cry out; 5 their souls tremble within. My heart cries out over Moab; a her fugitives flee as far as Zoar, as far as Eglath-shelishiyah. With weeping they ascend the slope of Luhith; 6 they lament their destruction on the road to Horonaim. The waters of Nimrim are dried up, and the grass is withered; the vegetation is gone, 7 and the greenery is no more. b So they carry their wealth and belongings 8 over the Brook of the Willows. For their outcry echoes to the border of Moab. 9 Their wailing reaches Eglaim; it is heard in Beer-elim. c The waters of Dimon are full of blood, but I will bring more upon Dimon— a lion upon the fugitives of Moab Moab’s Destruction" + }, + { + "verseNum": 35, + "text": "| 727 13 who will pour him out. They will empty his vessels and shatter his jars. Then Moab will be ashamed of Chemosh, 14 just as the house of Israel was ashamed when they trusted in Bethel. 27 so Moab will wallow in his own vomit, and he will also become a laughingstock. Was not Israel your object of ridicule? Was he ever found among thieves? 28 For whenever you speak of him you shake your head. 15 How can you say, ‘We are warriors, mighty men ready for battle’? Moab has been destroyed Abandon the towns and settle among the rocks, O dwellers of Moab! and its towns have been invaded; 29 Be like a dove the best of its young men have gone down in the slaughter, 16 declares the King, whose name is the LORD of Hosts. 17 Moab’s calamity is at hand, and his affliction is rushing swiftly. Mourn for him, all you who surround him, everyone who knows his name; tell how the mighty scepter is shattered— 18 the glorious staff! Come down from your glory; sit on parched ground, O daughter dwelling in Dibon, for the destroyer of Moab has come against 19 you; he has destroyed your fortresses. Stand by the road and watch, O dweller of Aroer! 20 Ask the man fleeing or the woman escaping, ‘What has happened?’ Moab is put to shame, for it has been shattered. Wail and cry out! Declare by the Arnon that Moab is destroyed. a 21 22 23 Judgment has come upon the high plain— upon Holon, Jahzah, and Mephaath, upon Dibon, Nebo, and Beth-diblathaim, 24 upon Kiriathaim, Beth-gamul, and Beth- meon, upon Ke" + }, + { + "verseNum": 36, + "text": "36 Therefore My heart laments like a flute The people of Chemosh have perished; for Moab; it laments like a flute for the men of Kir-heres, because the wealth they acquired has perished. 37 For every head is shaved and every beard is clipped; 38 on every hand is a gash, and around every waist is sackcloth. On all the rooftops of Moab and in the public squares, everyone is mourning; for I have shattered Moab like an unwanted jar,” 39 declares the LORD. “How shattered it is! How they wail! How Moab has turned his back in shame! Moab has become an object of ridicule 40 and horror to all those around him.” For this is what the LORD says: 41 “Behold, an eagle swoops down and spreads his wings against Moab. Kirioth has been taken, and the strongholds seized. 42 In that day the heart of Moab’s warriors will be like the heart of a woman in labor. Moab will be destroyed as a nation 43 because he vaunted himself against the LORD. Terror and pit and snare await you, O dweller of Moab,” declares the LORD. 44 “Whoever flees the panic will fall into the pit, and whoever climbs from the pit will be caught in the snare. For I will bring upon Moab the year of their punishment,” declares the LORD. 45 “Those who flee will stand helpless in Heshbon’s shadow, because fire has gone forth from Heshbon and a flame from within Sihon. It devours the foreheads of Moab 46 a 47 and the skulls of the sons of tumult. restore the fortunes of Moab c 4 Woe to you, O Moab! b 1 their king d 6 your valleys flowi" + } + ] + }, + { + "chapterNum": 49, + "verses": [ + { + "verseNum": 7, + "text": "–22) 9 1 This is the vision of Obadiah: This is what the Lord GOD says about Edom— We have heard a message from the LORD; an envoy has been sent among the nations to say, “Rise up, 2 and let us go to battle against her!”— “Behold, I will make you small among the 3 nations; you will be deeply despised. a The pride of your heart has deceived you, O dwellers in the clefts of the rocks whose habitation is the heights, who say in your heart, 4 ‘Who can bring me down to the ground?’ Though you soar like the eagle and make your nest among the stars, even from there I will bring you declares the LORD. 5 down,” “If thieves came to you, if robbers by night— oh, how you will be ruined— would they not steal only what they wanted? If grape gatherers came to you, 6 would they not leave some gleanings? But how Esau will be pillaged, 7 his hidden treasures sought out! All the men allied with you will drive you to the border; the men at peace with you b will deceive and overpower you. Those who eat your bread will set a trap for you without your awareness of it. 8 In that day, declares the LORD, will I not destroy the wise men of Edom and the men of understanding in the retreats of Sela in the mountains of Esau? b 7 a 3 Then your mighty men, O Teman, will be terrified, 10 so that everyone in the mountains of Esau will be cut down in the slaughter. Because of the violence against your brother Jacob, 11 you will be covered with shame and cut off forever. On the day you stood aloof while strange" + }, + { + "verseNum": 27, + "text": "| 729 7 Concerning Edom, this is what the LORD of Hosts says: “Is there no longer wisdom in Teman? 8 Has counsel perished from the prudent? Has their wisdom decayed? Turn and run! Lie low, O dwellers of Dedan, for I will bring disaster on Esau at the time I punish him. 9 If grape gatherers came to you, along with their neighbors,” says the LORD, 19 “no one will dwell there; no man will abide there. Behold, one will come up like a lion from the thickets of the Jordan to the watered pasture. For in an instant I will chase Edom from her land. Who is the chosen one I will appoint for this? would they not leave some gleanings? For who is like Me, and who can challenge Were thieves to come in the night, 10 would they not steal only what they 20 Me? What shepherd can stand against Me?” wanted? But I will strip Esau bare; I will uncover his hiding places, and he will be unable to conceal himself. His descendants will be destroyed 11 along with his relatives and neighbors, and he will be no more. Abandon your orphans; I will preserve their 12 lives. Let your widows trust in Me.” 13 For this is what the LORD says: “If those who do not deserve to drink the cup must drink it, can you possibly remain unpunished? You will not go For by unpunished, for you must drink it too. Myself I have sworn, declares the LORD, that Bozrah will become a desolation, a disgrace, a ruin, and a curse, and all her cities will be in ruins 14 forever.” I have heard a message from the LORD; an envoy has been sen" + }, + { + "verseNum": 28, + "text": "Judgment on Kedar and Hazor 28 Concerning Kedar and the kingdoms of Hazor, which Nebuchadnezzar king of Babylon de- feated, this is what the LORD says: 29 “Rise up, advance against Kedar, and destroy the people of the east! They will take their tents and flocks, their tent curtains and all their goods. They will take their camels for themselves. They will shout to them: ‘Terror is on 30 every side!’ Run! Escape quickly! Lie low, O residents of Hazor,” declares the LORD, “for Nebuchadnezzar king of Babylon has drawn up a plan against you; he has devised a strategy against you. 31 Rise up, advance against a nation at ease, declares the LORD. one that dwells securely,” “They have no gates or bars; 32 they live alone. Their camels will become plunder, and their large herds will be spoil. I will scatter to the wind in every direction those who shave their temples; I will bring calamity on them declares the LORD. 33 from all sides,” I will bring disaster upon them, even My fierce anger,” declares the LORD. “I will send out the sword after them 38 until I finish them off. I will set My throne in Elam, and destroy its king and officials,” declares the LORD. 39 “Yet in the last days, b I will restore Elam from captivity, ” declares the LORD. A Prophecy against Babylon 50 This is the word that the LORD spoke through Jeremiah the prophet concern- c 2 ing Babylon and the land of the Chaldeans: “Announce and declare to the nations; lift up a banner and proclaim it; hold nothing back when" + } + ] + }, + { + "chapterNum": 50, + "verses": [ + { + "verseNum": 24, + "text": "| 731 and their enemies said, ‘We are not guilty, for they have sinned against the LORD, 8 their true pasture, the LORD, the hope of their fathers.’ Flee from the midst of Babylon; 9 depart from the land of the Chaldeans; be like the he-goats that lead the flock. For behold, I stir up and bring against Babylon an assembly of great nations from the land of the north. They will line up against her; from the north she will be captured. Their arrows will be like skilled warriors who do not return empty-handed. a 10 Chaldea will be plundered; all who plunder her will have their fill,” declares the LORD. Babylon’s Fall Is Certain 11 “Because you rejoice, because you sing in triumph— you who plunder My inheritance— and the one who wields the sickle at harvest time. In the face of the oppressor’s sword, each will turn to his own people, each will flee to his own land. Redemption for God’s People 17 Israel is a scattered flock, chased away by lions. The first to devour him was the king of Assyria; the last to crush his bones 18 was Nebuchadnezzar king of Babylon.” Therefore this is what the LORD of Hosts, the God of Israel, says: “I will punish the king of Babylon and 19 his land as I punished the king of Assyria. I will return Israel to his pasture, and he will graze on Carmel and Bashan; his soul will be satisfied 20 on the hills of Ephraim and Gilead. In those days and at that time, 12 because you frolic like a heifer treading grain declares the LORD, and neigh like stallions, your" + }, + { + "verseNum": 25, + "text": "25 35 The LORD has opened His armory A sword is against the Chaldeans, and brought out His weapons of wrath, declares the LORD, for this is the work of the Lord GOD 36 against those who live in Babylon, 26 of Hosts in the land of the Chaldeans. Come against her from the farthest border. Break open her granaries; pile her up like mounds of grain. 27 Devote her to destruction; leave her no survivors. Kill all her young bulls; let them go down to the slaughter. Woe to them, for their day has come— the time of their punishment. 28 Listen to the fugitives and refugees from the land of Babylon, declaring in Zion the vengeance of the LORD 29 our God, the vengeance for His temple. Summon the archers against Babylon, all who string the bow. Encamp all around her; let no one escape. Repay her according to her deeds; do to her as she has done. For she has defied the LORD, the Holy One of Israel. 30 Therefore, her young men will fall in the streets, and all her warriors will be silenced in declares the LORD. 31 that day,” “Behold, I am against you, O arrogant one,” declares the Lord GOD of Hosts, 32 “for your day has come, the time when I will punish you. The arrogant one will stumble and fall with no one to pick him up. And I will kindle a fire in his cities to consume all those around him.” 33 and against her officials and wise men. A sword is against her false prophets, and they will become fools. A sword is against her warriors, 37 and they will be filled with terror. A sword is agai" + } + ] + }, + { + "chapterNum": 51, + "verses": [ + { + "verseNum": 16, + "text": "| 733 45 9 Therefore hear the plans “We tried to heal Babylon, that the LORD has drawn up against but she could not be healed. Babylon Abandon her! and the strategies He has devised against the land of the Chaldeans: Surely the little ones of the flock will be Let each of us go to his own land, for her judgment extends to the sky and reaches to the clouds.” 10 dragged away; 46 certainly their pasture will be made desolate because of them. At the sound of Babylon’s capture the earth 11 “The LORD has brought forth our vindication; come, let us tell in Zion what the LORD our God has accomplished.” d will quake; Judgment on Babylon a cry will be heard among the nations. 51 This is what the LORD says: a “Behold, I will stir up against Babylon 2 and against the people of Leb-kamai the spirit of a destroyer. I will send strangers to Babylon to winnow her and empty her land; for they will come against her from every side 3 in her day of disaster. Do not let the archer bend his bow or put on his armor. Do not spare her young men; 4 b devote all her army to destruction! And they will fall slain in the land of the c 5 Chaldeans, and pierced through in her streets. For Israel and Judah have not been abandoned by their God, the LORD of Hosts, though their land is full of guilt 6 before the Holy One of Israel.” Flee from Babylon! Escape with your lives! Do not be destroyed in her punishment. For this is the time of the LORD’s vengeance; 7 He will pay her what she deserves. Babylon was a go" + }, + { + "verseNum": 17, + "text": "17 Every man is senseless and devoid of 28 Appoint a captain against her; knowledge; every goldsmith is put to shame by his bring up horses like swarming locusts. Prepare the nations for battle against her— idols. 18 For his molten images are a fraud, and there is no breath in them. They are worthless, a work to be mocked. 19 In the time of their punishment they will perish. The Portion of Jacob is not like these, for He is the Maker of all things, and of the tribe of His inheritance— the LORD of Hosts is His name. Babylon’s Punishment 20 “You are My war club, My weapon for battle. With you I shatter nations; 21 with you I bring kingdoms to ruin. With you I shatter the horse and rider; 22 with you I shatter the chariot and driver. With you I shatter man and woman; with you I shatter the old man and the youth; 23 with you I shatter the young man and the maiden. With you I shatter the shepherd and his flock; with you I shatter the farmer and his the kings of the Medes, 29 their governors and all their officials, and all the lands they rule. The earth quakes and writhes because the LORD’s intentions against Babylon stand: 30 to make the land of Babylon a desolation, without inhabitant. The warriors of Babylon have stopped fighting; they sit in their strongholds. Their strength is exhausted; 31 they have become like women. Babylon’s homes have been set ablaze, the bars of her gates are broken. One courier races to meet another, and messenger follows messenger, to announce to the" + }, + { + "verseNum": 45, + "text": ". Lament over Babylon 20" + }, + { + "verseNum": 58, + "text": "| 735 37 I will dry up her sea and make her springs run dry. Babylon will become a heap of rubble, a 49 because the destroyers from the north declares the LORD. will come against her,” a haunt for jackals, 38 an object of horror and scorn, without inhabitant. 39 They will roar together like young lions; they will growl like lion cubs. While they are flushed with heat, I will serve them a feast, and I will make them drunk so that they may revel; then they will fall asleep forever and never 40 wake up, declares the LORD. I will bring them down like lambs to the 41 slaughter, b like rams with male goats. “Babylon must fall on account of the slain of Israel, 50 just as the slain of all the earth have fallen because of Babylon. You who have escaped the sword, depart and do not linger! 51 Remember the LORD from far away, and let Jerusalem come to mind.” “We are ashamed because we have heard reproach; disgrace has covered our faces, 52 because foreigners have entered the holy places of the LORD’s house.” “Therefore, behold, the days are coming,” How Sheshach has been captured! The praise of all the earth has been seized. declares the LORD, “when I will punish her idols, 42 What a horror Babylon has become among the nations! 43 The sea has come up over Babylon; she is covered in turbulent waves. Her cities have become a desolation, a dry and arid land, a land where no one lives, 44 where no son of man passes through. I will punish Bel in Babylon. I will make him spew out what he swal" + }, + { + "verseNum": 59, + "text": "6 So the labor of the people will be for nothing; the nations will exhaust themselves to fuel Jeremiah’s Message to Seraiah the flames.” 59 60 This is the message that Jeremiah the prophet gave to the quartermaster Seraiah son of Neriah, the son of Mahseiah, when he went to Babylon with King Zedekiah of Judah in the fourth year of Jeremiah had written on a Zedekiah’s reign. single scroll about all the disaster that would come upon Babylon—all these words that had 61 been written concerning Babylon. And Jeremiah said to Seraiah, “When you get to 62 Babylon, see that you read all these words aloud, and say, ‘O LORD, You have promised to cut off this place so that no one will remain—neither man nor beast. Indeed, it will be desolate 63 forever.’ 64 When you finish reading this scroll, tie a stone Then you to it and cast it into the Euphrates. are to say, ‘In the same way Babylon will sink and never rise again, because of the disaster I will bring upon her. And her people will grow weary.’ The Fall of Jerusalem Recounted Here end the words of Jeremiah." + } + ] + }, + { + "chapterNum": 52, + "verses": [ + { + "verseNum": 1, + "text": "–3) 18 Zedekiah was twenty-one years old when he became king, and he reigned in Jerusalem eleven years. His mother’s name was Hamutal daughter 19 of Jeremiah; she was from Libnah. 20 And Zedekiah did evil in the sight of the LORD, For because of the just as Jehoiakim had done. anger of the LORD, all this happened in Jerusalem and Judah, until He finally banished them from His presence. And Zedekiah also rebelled against the king of Nebuchadnezzar Besieges Jerusalem Babylon. (2 Chronicles 36:15–21 ;" + }, + { + "verseNum": 6, + "text": "); MT does not include e 17 18 cubits d 4 . Or is approxi- mately 27 feet or 8.2 meters. is approximately 4.5 feet or 1.4 meters. the captain of the army, who had enlisted the people of the land, and sixty men who were 20 found in the city. 21 Nebuzaradan captain of the guard took them and brought them to the king of Babylon at Rib- lah. There at Riblah in the land of Hamath, the king of Babylon struck them down and put them to death. So Judah was taken into exile, away Gedaliah Governs in Judah from its own land." + }, + { + "verseNum": 12, + "text": "–23) 8 9 On the seventh day of the fifth month, in the nineteenth year of Nebuchadnezzar’s reign over Babylon, Nebuzaradan captain of the guard, a servant of the king of Babylon, entered Jerusa- He burned down the house of the LORD, lem. the royal palace, and all the houses of Jerusa- And the whole lem—every significant building. army of the Chaldeans under the captain of the 11 guard broke down the walls around Jerusalem. 10 12 Then Nebuzaradan captain of the guard carried into exile the people who remained in the city, along with the deserters who had defected to the king of Babylon and the rest of the popula- But the captain of the guard left behind tion. some of the poorest of the land to tend the vine- 13 yards and fields. 14 Moreover, the Chaldeans broke up the bronze pillars and stands and the bronze Sea in the house of the LORD, and they carried the bronze They also took away the pots, to Babylon. shovels, wick trimmers, dishes, and all the arti- The cles of bronze used in the temple service. captain of the guard also took away the censers and sprinkling bowls—anything made of pure 16 gold or fine silver. 15 e 17 As for the two pillars, the Sea, and the movable stands that Solomon had made for the house of the LORD, the weight of the bronze from all these Each pillar was articles was beyond measure. eighteen cubits tall. The bronze capital atop one with a network of pillar was three cubits high, bronze pomegranates all around. The second pil- Captives Carried to Babyl" + }, + { + "verseNum": 21, + "text": "" + }, + { + "verseNum": 24, + "text": "–30) f 18 but the army They headed toward the Arabah, of the Chaldeans pursued the king and overtook 6 him in the plains of Jericho, and his whole army deserted him. The Chaldeans seized the king and brought him up to the king of Babylon at Rib- He encamped outside it and they built a 1 lah, where they pronounced judgment on him. c 4 b 3 The captain of the guard also took away Seraiah the chief priest, Zephaniah the priest of second rank, and the three doorkeepers. Of those still in the city, he took a court official who had been appointed over the men of war, as well as five royal advisors. He also took the scribe of fourth 19 Literally f 17 3 cubits That is, the Babylonians; also in verses 5, 6, 10, 13, 24, 25, and 26 the Jordan Valley Probable reading (see" + }, + { + "verseNum": 31, + "text": "–34) 27 On the twenty-seventh day of the twelfth month of the thirty-seventh year of the exile of Judah’s King Jehoiachin, in the year Evil-mer- King odach became king of Babylon, he released And he spoke Jehoiachin of Judah from prison. kindly to Jehoiachin and set his throne above the thrones of the other kings who were with him in 29 Babylon. 28 b So Jehoiachin changed out of his prison 30 clothes, and he dined regularly at the king’s table And the king provided for the rest of his life. Jehoiachin a daily portion for the rest of his life. a 23 Jaazaniah Jezaniah b 27 lifted up the head of is a variant of ; see" + }, + { + "verseNum": 34, + "text": "| 737 27 There at Riblah in the land of Hamath, Riblah. the king of Babylon struck them down and put them to death. So Judah was taken into exile, 28 away from its own land. These are the people Nebuchadnezzar carried away: 29 in the seventh year, 3,023 Jews; in Nebuchadnezzar’s eighteenth year, 832 30 people from Jerusalem; in Nebuchadnezzar’s twenty-third year, Nebuzaradan captain of the guard carried away 745 Jews. Jehoiachin Released from Prison So in all, 4,600 people were taken away. (2 Kings 25:27–30) 31 a On the twenty-fifth day of the twelfth month of the thirty-seventh year of the exile of Jehoiachin king of Judah, in the first year of the reign of Evil- Jehoi- merodach king of Babylon, he pardoned achin king of Judah and released him from prison. And he spoke kindly to Jehoiachin and set his throne above the thrones of the other 33 kings who were with him in Babylon. 32 34 So Jehoiachin changed out of his prison clothes, and he dined regularly at the king’s table for the rest of his life. And the king of Babylon provided Jehoiachin a daily portion for the rest of his life, until the day of his death. a 21 b 21 4 fingers c 22 5 cubits Each pillar was approximately 27 feet high and 18 feet in circumference (8.2 meters high and 5.5 meters in circumference). or 2.3 meters. is approximately 2.9 inches or 7.4 centimeters. is approximately 7.5 feet Lamentations How Lonely Lies the City! (2 Kings 24:10–17) a 1 lonely lies the city, How once so full of people! 8 Her enemies" + } + ] + } + ] + }, + { + "name": "Lamentations", + "chapters": [ + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 8, + "text": "| 739 The Lord has rejected a all the mighty men in my midst; He has summoned an army against me to crush my young warriors. Like grapes in a winepress, 16 the Lord has trampled the Virgin Daughter of Judah. For these things I weep; my eyes flow with tears. For there is no one nearby to comfort me, no one to revive my soul. My children are destitute 17 because the enemy has prevailed. Zion stretches out her hands, but there is no one to comfort her. The LORD has decreed against Jacob that his neighbors become his foes. Jerusalem has become 18 an unclean thing among them. The LORD is righteous, yet I rebelled against His command. Listen, all you people; look upon my suffering. My young men and maidens have gone into captivity. 19 I called out to my lovers, but they have betrayed me. My priests and elders perished in the city 20 while they searched for food to keep themselves alive. See, O LORD, how distressed I am! I am churning within; my heart is pounding within me, for I have been most rebellious. 21 Outside, the sword bereaves; inside, there is death. People have heard my groaning, but there is no one to comfort me. All my enemies have heard of my trouble; they are glad that You have caused it. May You bring the day You have announced, so that they may become like me. 22 Let all their wickedness come before You, and deal with them as You have dealt with me because of all my transgressions. For my groans are many, b 1 has set a time for me and my heart is faint. a 15 b 2 Ho" + }, + { + "verseNum": 9, + "text": "He stretched out a measuring line and did not withdraw His hand from destroying. He made the ramparts and walls lament; 9 together they waste away. Her gates have sunk into the ground; He has destroyed and shattered their bars. Her king and her princes are exiled among the nations, the law is no more, and even her prophets 10 11 find no vision from the LORD. The elders of the Daughter of Zion sit on the ground in silence. They have thrown dust on their heads and put on sackcloth. The young women of Jerusalem have bowed their heads to the ground. My eyes fail from weeping; I am churning within. My heart is poured out in grief over the destruction of the daughter of my people, 12 because children and infants faint in the streets of the city. They cry out to their mothers: “Where is the grain and wine?” as they faint like the wounded in the streets of the city, as their lives fade away 13 in the arms of their mothers. What can I say for you? To what can I compare you, O Daughter of Jerusalem? To what can I liken you, that I may console you, O Virgin Daughter of Zion? For your wound is as deep as the sea. 14 Who can ever heal you? The visions of your prophets were empty and deceptive; they did not expose your guilt to ward off your captivity. 15 The burdens they envisioned for you were empty and misleading. All who pass by clap their hands at you in scorn. “Is this the city that was called the perfection of beauty, the joy of all the earth?” 16 All your enemies open their mouths" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 44, + "text": "| 741 a 3 2 am the man who has seen affliction I under the rod of God’s wrath. He has driven me away and made me walk 3 in darkness instead of light. Indeed, He keeps turning His hand against me all day long. He has worn away my flesh and skin; 5 He has shattered my bones. He has besieged me and surrounded me 6 with bitterness and hardship. He has made me dwell in darkness like those dead for ages. 4 7 He has walled me in so I cannot escape; 8 He has weighed me down with chains. Even when I cry out and plead for help, 9 He shuts out my prayer. 10 He has barred my ways with cut stones; He has made my paths crooked. 11 He is a bear lying in wait, a lion hiding in ambush. He forced me off my path and tore me 12 to pieces; He left me without help. He bent His bow 13 and set me as the target for His arrow. 14 He pierced my kidneys with His arrows. 15 I am a laughingstock to all my people; they mock me in song all day long. He has filled me with bitterness; 16 He has intoxicated me with wormwood. 17 18 He has ground my teeth with gravel and trampled me in the dust. My soul has been deprived of peace; I have forgotten what prosperity is. So I say, “My strength has perished, The Prophet’s Hope along with my hope from the LORD.” 19 20 Remember my affliction and wandering, the wormwood and the gall. 21 Surely my soul remembers and is humbled within me. 25 28 24 They are new every morning; great is Your faithfulness! “The LORD is my portion,” says my soul, “therefore I will hope in Him." + }, + { + "verseNum": 45, + "text": "45 The Distress of Zion You have made us scum and refuse 46 among the nations. 47 All our enemies open their mouths against us. Panic and pitfall have come upon us— 48 devastation and destruction. Streams of tears flow from my eyes 49 over the destruction of the daughter of my people. 50 My eyes overflow unceasingly, without relief, 51 until the LORD looks down from heaven and sees. My eyes bring grief to my soul because of all the daughters of my city. 52 54 55 58 53 Without cause my enemies hunted me like a bird. They dropped me alive into a pit and cast stones upon me. The waters flowed over my head, and I thought I was going to die. 56 I called on Your name, O LORD, out of the depths of the Pit. 57 You heard my plea: “Do not ignore my cry for relief.” You drew near when I called on You; You said, “Do not be afraid.” 59 You defend my cause, O Lord; You redeem my life. You have seen, O LORD, the wrong done 60 to me; vindicate my cause! 61 You have seen all their malice, all their plots against me. 62 O LORD, You have heard their insults, all their plots against me— the slander and murmuring of my 63 assailants against me all day long. 64 When they sit and when they rise, see how they mock me in song. You will pay them back what they deserve, O 65 LORD, a 4 2 the gold has become tarnished, How the pure gold has become dull! The gems of the temple lie scattered on every street corner. How the precious sons of Zion, once worth their weight in pure gold, are now esteemed as jar" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 22, + "text": "| 743 The presence of the LORD has scattered 9 there is no one to deliver us from their 13 14 16 17 18 19 20 The kings of the earth did not believe, nor any people of the world, that an enemy or a foe could enter the gates of Jerusalem. But this was for the sins of her prophets and the guilt of her priests, who shed the blood of the righteous in her midst. They wandered blind in the streets, defiled by this blood, so that no one dared 15 to touch their garments. “Go away! Unclean!” men shouted at them. “Away, away! Do not touch us!” So they fled and wandered. Among the nations it was said, “They can stay here no longer.” them; He regards them no more. The priests are shown no honor; the elders find no favor. All the while our eyes were failing as we looked in vain for help. We watched from our towers They stalked our every step, so that we could not walk in our streets. Our end drew near, our time ran out, for our end had come! Those who chased us were swifter than the eagles in the sky; they pursued us over the mountains and ambushed us in the wilderness. The LORD’s anointed, the breath of our life, was captured in their pits. We had said of him, 21 “Under his shadow we will live among the nations.” So rejoice and be glad, O Daughter of Edom, you who dwell in the land of Uz. Yet the cup will pass to you as well; 22 you will get drunk and expose yourself. O Daughter of Zion, your punishment is a complete; He will not prolong your exile. But He will punish your iniquity, a 22" + } + ] + } + ] + }, + { + "name": "Ezekiel", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–3) the moon and stars to govern the night. His loving devotion endures forever. 1 10 He struck down the firstborn of Egypt His loving devotion endures forever. 11 and brought Israel out from among them His loving devotion endures forever. 12 His loving devotion endures forever. with a mighty hand and an outstretched arm. a 13 His loving devotion endures forever. in two He divided the Red Sea the Sea of Reeds a 13 By the rivers of Babylon we sat and wept c 2 when we remembered Zion. There on the willows 3 we hung our harps, for there our captors requested a song; our tormentors demanded songs of joy: 4 “Sing us a song of Zion.” How can we sing a song of the LORD 5 in a foreign land? If I forget you, O Jerusalem, b 15 shook off c 2 poplars may my right hand cease to function. Or ; also in verse 15 Hebrew Or 6 May my tongue cling to the roof of my mouth if I do not remember you, 7 if I do not exalt Jerusalem as my greatest joy! Remember, O LORD, the sons of Edom on the day Jerusalem fell: “Destroy it,” they said, 8 “tear it down to its foundations!” O Daughter of Babylon, doomed to destruction, blessed is he who repays you 9 as you have done to us. Blessed is he who seizes your infants and dashes them against the rocks. Psalm 138 A Thankful Heart Of David. 1 I give You thanks with all my heart; 2 before the gods I sing Your praises. I bow down toward Your holy temple and give thanks to Your name for Your loving devotion and Your faithfulness; You have exalted Your name 3 and Yo" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 17, + "text": "| 745 2 3 So I opened my mouth, and He fed me the scroll. “Son of man,” He said to me, “eat and fill your stomach with this scroll I am giving you.” So I ate, and it was as sweet as honey in my 4 mouth. 6 Then He said to me, “Son of man, go now to the 5 house of Israel and speak My words to them. For you are not being sent to a people of unfa- miliar speech or difficult language, but to the house of Israel— not to the many peoples of unfamiliar speech and difficult language whose words you cannot understand. Surely if I had sent you to them, they would have listened to 7 you. But the house of Israel will be unwilling to listen to you, since they are unwilling to listen to Me. For the whole house of Israel is hard-headed and 8 hard-hearted. 9 Behold, I will make your face as hard as their faces, and your forehead as hard as their fore- heads. I will make your forehead like a dia- mond, harder than flint. Do not be afraid of them or dismayed at their presence, even though they 10 are a rebellious house.” “Son of man,” He added, “listen carefully to all 11 the words I speak to you, and take them to heart. Go to your people, the exiles; speak to them and tell them, ‘This is what the Lord GOD says,’ 12 whether they listen or refuse to listen.” b Then the Spirit lifted me up, and I heard a great rumbling sound behind me: “Blessed be the glory of the LORD in His dwelling place! It was the sound of the wings of the living creatures brushing against one another and the sound of 14 the" + }, + { + "verseNum": 18, + "text": "18 4 a If I say to the wicked man, ‘You will surely die,’ but you do not warn him or speak out to warn him from his wicked way to save his life, that wicked man will die in his iniquity, and I will But if you hold you responsible for his blood. warn a wicked man and he does not turn from his wickedness and his wicked way, he will die in his 20 iniquity, but you will have saved yourself. 19 b Now if a righteous man turns from his right- eousness and commits iniquity, and I put a stumbling block before him, he will die. If you did and the not warn him, he will die in his sin, righteous acts he did will not be remembered. 21 And I will hold you responsible for his blood. But if you warn the righteous man not to sin, and he does not sin, he will indeed live because he heeded your warning, and you will have saved 22 yourself.” And there the hand of the LORD was upon me, and He said to me, “Get up, go out to the plain, 23 and there I will speak with you.” So I got up and went out to the plain, and be- hold, the glory of the LORD was present there, like the glory I had seen by the River Kebar, and 24 I fell facedown. Then the Spirit entered me and set me on my 25 feet. He spoke with me and said, “Go, shut your- self inside your house. And you, son of man, they will tie with ropes, and you will be bound so that you cannot go out among the people. I will make your tongue stick to the roof of your mouth, and you will be silent and unable to re- 27 buke them, though they are a rebelliou" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–7) 15 16 So since you saw no form of any kind on the day the LORD spoke to you out of the fire at Ho- reb, be careful that you do not act corruptly and make an idol for yourselves of any form or 17 shape, whether in the likeness of a male or fe- male, of any beast that is on the earth or bird that flies in the air, or of any creature that crawls on the ground or fish that is in the waters 19 below. 18 When you look to the heavens and see the sun and moon and stars—all the host of heaven—do not be enticed to bow down and worship what a 10 the LORD your God has apportioned to all the b 13 the Ten Words c 24 Be careful that you do not forget the covenant of the LORD your God that He made with you; do not make an idol for yourselves in the form of an- For the LORD ything He has forbidden you. 25 your God is a consuming fire, a jealous God. 24 c 26 After you have children and grandchildren and you have been in the land a long time, if you then act corruptly and make an idol of any form—do- ing evil in the sight of the LORD your God and provoking Him to anger— I call heaven and earth as witnesses against you this day that you will quickly perish from the land that you are crossing the Jordan to possess. You will not live 27 long upon it, but will be utterly destroyed. Then the LORD will scatter you among the peoples, and only a few of you will survive among 28 the nations to which the LORD will drive you. And there you will serve man-made gods of wood and stone, which cannot see o" + }, + { + "verseNum": 9, + "text": "| 747 5 2 “As for you, son of man, take a sharp sword, use it as a barber’s razor, and shave your head and beard. Then take a set of scales and di- When the days of the siege have vide the hair. ended, you are to burn up a third of the hair in- side the city; you are also to take a third and slash it with the sword all around the city; and you are to scatter a third to the wind. For I will unleash a 3 sword behind them. 4 But you are to take a few strands of hair and se- cure them in the folds of your garment. Again, take a few of these, throw them into the fire, and burn them. From there a fire will spread to the 5 whole house of Israel. 6 This is what the Lord GOD says: ‘This is Jerusa- lem, which I have set in the center of the nations, with countries all around her. But she has rebelled against My ordinances more wick- edly than the nations, and against My statutes worse than the countries around her. For her people have rejected My ordinances and have 7 not walked in My statutes.’ a Therefore this is what the Lord GOD says: ‘You have been more insubordinate than the nations around you; you have not walked in My statutes or kept My ordinances, nor have you even con- formed to the ordinances of the nations around 8 you.’ 9 10 Therefore this is what the Lord GOD says: ‘Be- hold, I Myself am against you, Jerusalem, and I will execute judgments among you in the sight of the nations. Because of all your abominations, I will do to you what I have never done before and will neve" + }, + { + "verseNum": 10, + "text": "Me—how I have been grieved by their adulter- ous hearts that turned away from Me, and by their eyes that lusted after idols. So they will loathe themselves for the evil they have done and for all their abominations. And they will know that I am the LORD; I did not declare in vain that 11 I would bring this calamity upon them. 10 12 This is what the Lord GOD says: Clap your hands, stomp your feet, and cry out “Alas!” be- cause of all the wicked abominations of the house of Israel, who will fall by sword and famine and plague. He who is far off will die by the plague, he who is near will fall by the sword, and he who remains will die by famine. So I will vent 13 My fury upon them. 14 Then you will know that I am the LORD, when their slain lie among their idols around their al- tars, on every high hill, on all the mountaintops, and under every green tree and leafy oak—the places where they offered fragrant incense to all their idols. I will stretch out My hand against a them, and wherever they live I will make the land a desolate waste, from the wilderness to Diblah. The Hour of Doom Then they will know that I am the LORD.’ ” 7 2 And the word of the LORD came to me, say- “O son of man, this is what the Lord ing, GOD says to the land of Israel: ‘The end! The end has come 3 upon the four corners of the land. The end is now upon you, The time has come; the day is near; there is panic on the mountains 8 instead of shouts of joy. Very soon I will pour out My wrath upon you and vent M" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 11, + "text": "| 749 I will deal with them according to their conduct, and I will judge them by their own standards. The Vision of Idolatry in the Temple Then they will know that I am the LORD.’ ” 8 In the sixth year, on the fifth day of the sixth month, I was sitting in my house, and the el- ders of Judah were sitting before me; and there 2 the hand of the Lord GOD fell upon me. Then I looked and saw a figure like that of a man. From His waist down His appearance was a 3 like fire, and from His waist up He was as bright He stretched out what as the gleam of amber. looked like a hand and took me by the hair of my head. Then the Spirit lifted me up between earth and heaven and carried me in visions of God to Jerusalem, to the entrance of the north gate of the inner court, where the idol that provokes jeal- 4 ousy was seated. 5 And there I saw the glory of the God of Israel, like the vision I had seen in the plain. “Son of man,” He said to me, “now lift up your eyes to the north.” b So I lifted up my eyes to the north, and in the entrance north of the Altar Gate I saw this idol 6 of jealousy. “Son of man,” He said to me, “do you see what they are doing—the great abominations that the house of Israel is committing—to drive Me far from My sanctuary? Yet you will see even greater 7 abominations.” Then He brought me to the entrance to the 8 court, and I looked and saw a hole in the wall. “Son of man,” He told me, “dig through the wall.” So I dug through the wall and discovered a 9 doorway. Then H" + }, + { + "verseNum": 12, + "text": "12 5 “Son of man,” He said to me, “do you see what the elders of the house of Israel are doing in the darkness , each at the shrine of his own idol? For they are saying, ‘The LORD does not see us; the 13 LORD has forsaken the land.’ ” Again, He told me, “You will see them commit- 14 ting even greater abominations.” Then He brought me to the entrance of the north gate of the house of the LORD, and I saw 15 women sitting there, weeping for Tammuz. a “Son of man,” He said to me, “do you see this? Yet you will see even greater abominations than 16 these.” So He brought me to the inner court of the house of the LORD, and there at the entrance to the temple of the LORD, between the portico and the altar, were about twenty-five men with their backs to the temple of the LORD and their faces toward the east; and they were bowing to the 17 east in worship of the sun. “Son of man,” He said to me, “do you see this? Is it not enough for the house of Judah to commit the abominations they are practicing here, that they must also fill the land with violence and con- tinually provoke Me to anger? Look, they are There- even putting the branch to their nose! fore I will respond with wrath. I will not look on them with pity, nor will I spare them. Although they shout loudly in My ears, I will not listen to Execution of the Idolaters them.” 18 9 Then I heard Him call out in a loud voice, saying, “Draw near, O executioners of the 2 city, each with a weapon of destruction in hand.” And I saw six me" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 13, + "text": "–21) such an abomination and cause Judah to sin. 36 37 Now therefore, about this city of which you say, ‘It will be delivered into the hand of the king of Babylon by sword and famine and plague,’ this I will is what the LORD, the God of Israel, says: surely gather My people from all the lands to which I have banished them in My furious anger 38 and great wrath, and I will return them to this b They will place and make them dwell in safety. be My people, and I will be their God. I will give them one heart and one way, so that they will always fear Me for their own good and for 40 the good of their children after them. 39 I will make an everlasting covenant with them: I will never turn away from doing good to them, and I will put My fear in their hearts, so that they Yes, I will re- will never turn away from Me. joice in doing them good, and I will faithfully plant them in this land with all My heart and with 42 all My soul. 41" + }, + { + "verseNum": 16, + "text": "| 751 Evil in High Places 11 Then the Spirit lifted me up and brought me to the gate of the house of the LORD that faces east. And there at the entrance of the gate were twenty-five men. Among them I saw Jaazaniah son of Azzur and Pelatiah son of And Benaiah, who were leaders of the people. the LORD said to me, “Son of man, these are the men who plot evil and give wicked counsel in this They are saying, ‘Is not the time near to city. build houses? The city is the cooking pot, and we are the meat.’ Therefore prophesy against 5 them; prophesy, O son of man!” 4 2 3 a And the Spirit of the LORD fell upon me and told me to declare that this is what the LORD says: “That is what you are thinking, O house of Israel; 6 and I know the thoughts that arise in your minds. You have multiplied those you killed in this city 7 and filled its streets with the dead. 8 9 Therefore this is what the Lord GOD says: The slain you have laid within this city are the meat, and the city is the pot; but I will remove you from it. You fear the sword, so I will bring the sword against you, declares the Lord GOD. I will bring you out of the city and deliver you into the hands of foreigners, and I will execute judgments against you. You will fall by the sword, and I will judge you even to the borders of Israel. Then 11 you will know that I am the LORD. 10 12 The city will not be a pot for you, nor will you be the meat within it. I will judge you even to the borders of Israel. Then you will know that I am the" + }, + { + "verseNum": 17, + "text": "countries, yet for a little while I have been a sanc- tuary for them in the countries to which they 17 have gone.’ Therefore declare that this is what the Lord GOD says: ‘I will gather you from the peoples and assemble you from the countries to which you have been scattered, and I will give back to you 18 the land of Israel.’ 19 When they return to it, they will remove all its detestable things and all its abominations. And I will give them singleness of heart and put a 20 new spirit within them; I will remove their heart of stone and give them a heart of flesh, so that they may follow My statutes, keep My ordi- nances, and practice them. Then they will be My 21 people, and I will be their God. But as for those whose hearts pursue detesta- ble things and abominations, I will bring their conduct down upon their own heads, declares God’s Glory Leaves Jerusalem the Lord GOD.” 22 23 Then the cherubim, with the wheels beside them, spread their wings, and the glory of the God of Israel was above them. And the glory of the LORD rose up from within the city and stood 24 over the mountain east of the city. a And the Spirit lifted me up and carried me back to the exiles in the vision given by to Chaldea, 25 the Spirit of God. After the vision had gone up from me, I told the exiles everything the LORD Signs of the Coming Captivity had shown me. 12 2 Then the word of the LORD came to me, saying, “Son of man, you are living in a rebellious house. They have eyes to see but do not see, and" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 2, + "text": ". BYZ and TR ; also in verse 43 See" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–16) to divide the land by lot. 6 “Do not preach,” they preach. 7 “Do not preach these things; disgrace will not overtake us.” Should it be said, O house of Jacob, “Is the Spirit of the LORD impatient? Are these the things He does?” Do not My words bring good 8 to him who walks uprightly? But of late My people have risen up like an enemy: You strip off the splendid robe 9 from unsuspecting passersby like men returning from battle. You drive the women of My people from their pleasant homes. 10 You take away My blessing from their children forever. Arise and depart, for this is not your place of rest, 11 because its defilement brings destruction— a grievous destruction! If a man of wind were to come and say falsely, a “I will preach to you of wine and strong drink,” he would be just the preacher for this The Remnant of Israel" + }, + { + "verseNum": 23, + "text": "| 753 Therefore tell them that this is what the Lord GOD says: ‘I will put an end to this proverb, and in Israel they will no longer recite it.’ 24 But say to them: ‘The days are at hand when For there will be every vision will be fulfilled. 25 no more false visions or flattering divinations because I, the LORD, within the house of Israel, will speak whatever word I speak, and it will be fulfilled without delay. For in your days, O rebel- lious house, I will speak a message and bring it to 26 pass, declares the Lord GOD.’ 27 ” Furthermore, the word of the LORD came to “Son of man, take note that the me, saying, house of Israel is saying, ‘The vision that he sees is for many years from now; he prophesies about 28 the distant future.’ Therefore tell them that this is what the Lord GOD says: ‘None of My words will be delayed any longer. The message I speak will be fulfilled, de- Reproof of False Prophets" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "false visions or practice divination. I will deliver My people from your hands. Then you will know Idolatrous Elders Condemned that I am the LORD.”" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 29, + "text": "| 755 7 Therefore this is what the Lord GOD says: ‘Like the wood of the vine among the trees of the for- est, which I have given to the fire for fuel, so I will And I will set give up the people of Jerusalem. My face against them. Though they may have es- caped the fire, yet another fire will consume them. And when I set My face against them, you 8 will know that I am the LORD. Thus I will make the land desolate, because they Jerusalem’s Unfaithfulness have acted unfaithfully,’ declares the Lord GOD.” 16 2 4 3 Again the word of the LORD came to me, saying, “Son of man, confront Jerusalem and tell her that this is with her abominations what the Lord GOD says to Jerusalem: Your origin and your birth were in the land of the Canaanites. Your father was an Amorite and your On the day of your birth your mother a Hittite. cord was not cut, nor were you washed with wa- ter for cleansing. You were not rubbed with salt No one cared enough for or wrapped in cloths. you to do even one of these things out of compas- sion for you. Instead, you were thrown out into the open field, because you were despised on the 6 day of your birth. 5 7 Then I passed by and saw you wallowing in your blood, and as you lay there in your blood I said to you, ‘Live!’ There I said to you, ‘Live!’ I made you thrive like a plant of the field. You grew up and matured and became very beautiful. Your breasts were formed and your hair grew, but you 8 were naked and bare. 10 Then I passed by and saw you, and you were" + }, + { + "verseNum": 30, + "text": "30 a your heart, 31 How weak-willed is declares the Lord GOD, while you do all these things, the acts But when you built of a shameless prostitute! your mounds at the head of every street and made your lofty shrines in every public square, you were not even like a prostitute, because you 32 scorned payment. 33 34 You adulterous wife! You receive strangers instead of your own husband! Men give gifts to all their prostitutes, but you gave gifts to all your lovers. You bribed them to come to you So your from everywhere for your illicit favors. prostitution is the opposite of that of other women: No one solicited your favors, and you paid a fee instead of receiving one; so you are the Judgment on Jerusalem very opposite! 35 36 own head, declares the Lord GOD. Have you not committed this lewdness on top of all your other 44 abominations? Behold, all who speak in proverbs will quote this proverb about you: 45 ‘Like mother, like daughter.’ 46 You are the daughter of your mother, who despised her husband and children. You are the sister of your sisters, who despised their hus- bands and children. Your mother was a Hittite and your father an Amorite. Your older sister was Samaria, who lived with her daughters to your north; and your younger sister was Sodom, 47 who lived with her daughters to your south. And you not only walked in their ways and practiced their abominations, but soon you were 48 more depraved than they were. 37 Therefore, O prostitute, hear the word of the LORD! This" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "–10) 24 25 Jesus put before them another parable: “The kingdom of heaven is like a man who sowed good seed in his field. But while everyone was asleep, his enemy came and sowed weeds among When the wheat the wheat, and slipped away. sprouted and bore grain, then the weeds also 27 appeared. 26 The owner’s servants came to him and said, ‘Sir, didn’t you sow good seed in your field? 28 Where then did the weeds come from?’ ‘An enemy did this,’ he replied. 30 ‘No,’ he said, ‘if you pull the weeds now, you Let both might uproot the wheat with them. grow together until the harvest. At that time I will tell the harvesters: First collect the weeds and tie them in bundles to be burned; then gather The Parable of the Mustard Seed ” the wheat into my barn.’" + }, + { + "verseNum": 18, + "text": "| 757 It stretched out its branches to him from 8 its planting bed, so that he might water it. It had been planted in good soil by abundant waters 9 in order to yield branches and bear fruit and become a splendid vine.’ So you are to tell them that this is what the Lord GOD says: ‘Will it flourish? Will it not be uprooted and stripped of its fruit so that it shrivels? All its foliage will wither! It will not take a strong arm or many people 10 to pull it up by its roots. Even if it is transplanted, will it flourish? Will it not completely wither when the east wind strikes? It will wither on the bed where it The Parable Explained sprouted.’ ” 11 12 Then the word of the LORD came to me, saying, “Now say to this rebellious house: ‘Do you not know what these things mean?’ c 13 Tell them, ‘Behold, the king of Babylon came to Jerusalem, carried off its king and officials, and He brought them back with him to Babylon. took a member of the royal family and made a covenant with him, putting him under oath. Then he carried away the leading men of the land, so that the kingdom would be brought low, unable to lift itself up, surviving only by keeping his cov- 15 enant. 14 But this king rebelled against Babylon by send- ing his envoys to Egypt to ask for horses and a large army. Will he flourish? Will the one who does such things escape? Can he break a cove- 16 nant and yet escape?’ 17 ‘As surely as I live,’ declares the Lord GOD, ‘he will die in Babylon, in the land of the king who enthr" + }, + { + "verseNum": 19, + "text": "5 gave his hand in pledge yet did all these things, 19 he will not escape!’ Now suppose a man is righteous and does what 6 is just and right: 20 Therefore this is what the Lord GOD says: ‘As surely as I live, I will bring down upon his head My oath that he despised and My covenant I will spread My net over him that he broke. and catch him in My snare. I will bring him to Babylon and execute judgment upon him there All for the treason he committed against Me. will fall by the sword, and his choice troops those who survive will be scattered to every wind. Then you will know that I, the LORD, have 22 spoken.’ 21 a This is what the Lord GOD says: ‘I will take a shoot from the lofty top of the cedar, and I will set it out. I will pluck a tender sprig from its topmost shoots, 23 and I will plant it on a high and lofty mountain. I will plant it on the mountain heights of Israel so that it will bear branches; it will yield fruit and become a majestic cedar. Birds of every kind will nest under it, 24 Then all the trees of the field will know that I am the LORD. I bring the tall tree down and make the low tree tall. I dry up the green tree and make the withered tree flourish. I, the LORD, have spoken, The Soul Who Sins Will Die and I have done it.’ ” 18 2 Then the word of the LORD came to me, “What do you people mean by saying, quoting this proverb about the land of Israel: ‘The fathers have eaten sour grapes, and the teeth of the children are set on edge’? 4 3 As surely as I live, dec" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 10, + "text": "| 759 31 Therefore, O house of Israel, I will judge you, each according to his ways, declares the Lord GOD. Repent and turn from all your transgres- sions, so that your iniquity will not become your Cast away from yourselves all the downfall. transgressions you have committed, and fashion for yourselves a new heart and a new spirit. Why 32 should you die, O house of Israel? For I take no pleasure in anyone’s death, de- A Lament for the Princes of Israel clares the Lord GOD. So repent and live! 19 2 “As for you, take up a lament for the princes of Israel and say: ‘What was your mother? A lioness among the lions! She lay down among the young lions; 3 she reared her cubs. She brought up one of her cubs, and he became a young lion. After learning to tear his prey, 4 he devoured men. When the nations heard of him, he was trapped in their pit. With hooks they led him away 5 to the land of Egypt. When she saw that she had waited in vain, that her hope was lost, she took another of her cubs 6 and made him a young lion. He prowled among the lions, and became a young lion. After learning to tear his prey, 7 a he devoured men. He broke down their strongholds and devastated their cities. The land and everything in it 8 shuddered at the sound of his roaring. Then the nations set out against him from the provinces on every side. 9 They spread their net over him; he was trapped in their pit. With hooks they caged him and brought him to the king of Babylon. They brought him into captivity 10" + }, + { + "verseNum": 11, + "text": "11 it was fruitful and full of branches because of the abundant waters. It had strong branches, fit for a ruler’s scepter. It towered high above the thick branches, conspicuous for its height and for its dense foliage. 12 But it was uprooted in fury, cast down to the ground, and the east wind dried up its fruit. Its strong branches were stripped off 13 and they withered; the fire consumed them. 14 Now it is planted in the wilderness, in a dry and thirsty land. Fire has gone out from its main branch and devoured its fruit; on it no strong branch remains fit for a ruler’s scepter.’ Israel’s Rebellion in Egypt This is a lament and shall be used as a lament.” 20 In the seventh year, on the tenth day of the fifth month, some of the elders of Is- rael came to inquire of the LORD, and they sat 2 down before me. 3 Then the word of the LORD came to me, saying, “Son of man, speak to the elders of Israel and tell them that this is what the Lord GOD says: Have you come to inquire of Me? As surely as I live, I will not be consulted by you, declares the 4 Lord GOD. 5 Will you judge them, will you judge them, son of man? Confront them with the abominations of their fathers and tell them that this is what the Lord GOD says: On the day I chose Israel, I swore an oath to the descendants of the house of Jacob and made Myself known to them in the land of Egypt. With an uplifted hand I said to them, ‘I am 6 the LORD your God.’ 7 On that day I swore to bring them out of the land of Egypt into a la" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 11, + "text": ", 13, and 21. Or here and throughout this chapter 11 You must not have sexual relations with the daughter of your father’s wife, born to your 12 father; she is your sister. You must not have sexual relations with your 13 father’s sister; she is your father’s close relative. You must not have sexual relations with your mother’s sister, for she is your mother’s close 14 relative. You must not dishonor your father’s brother by approaching his wife to have sexual relations 15 with her; she is your aunt. You must not have sexual relations with your daughter-in-law. She is your son’s wife; you are 16 not to have sexual relations with her. You must not have sexual relations with your 17 brother’s wife; that would shame your brother. You must not have sexual relations with both a woman and her daughter. You are not to marry her son’s daughter or her daughter’s daughter and have sexual relations with her. They are 18 close relatives; it is depraved. You must not take your wife’s sister as a rival wife and have sexual relations with her while 19 your wife is still alive. You must not approach a woman to have sex- ual relations with her during her menstrual pe- 20 riod. You must not lie carnally with your neighbor’s 21 wife and thus defile yourself with her. a You must not give any of your children to be to Molech, for you must not profane sacrificed 22 the name of your God. I am the LORD. You must not lie with a man as with a woman; 23 that is an abomination. You must not lie carnally" + }, + { + "verseNum": 13, + "text": "and 21. 9 before their eyes, and they did not forsake the idols of Egypt. So I resolved to pour out My wrath upon them and vent My anger against them in the land of Egypt. But I acted for the sake of My name, that it should not be profaned in the eyes of the nations among whom they were living, in whose sight I had revealed Myself to Israel by Israel’s Rebellion in the Wilderness bringing them out of the land of Egypt. 10 11 a So I brought them out of the land of Egypt and And I gave them led them into the wilderness. My statutes and made known to them My ordi- 12 nances—for the man who does these things will live by them. I also gave them My Sabbaths as a sign between us, so that they would know that 13 I am the LORD who sanctifies them. Yet the house of Israel rebelled against Me in follow My the wilderness. They did not statutes and they rejected My ordinances— though the man who does these things will live by them—and they utterly profaned My Sab- baths. Then I resolved to pour out My wrath upon them and put an end to them in the wilder- But I acted for the sake of My name, so ness. that it would not be profaned in the eyes of the 15 nations in whose sight I had brought them out. 14 16 Moreover, with an uplifted hand I swore to them in the wilderness that I would not bring them into the land that I had given them—a land flowing with milk and honey, the glory of all because they kept rejecting My ordi- lands— nances, refusing to walk in My statutes, and pro- 17 faning My S" + }, + { + "verseNum": 34, + "text": ", including LXX. See 2 Samuel 7:14. 14 In addition to our own encouragement, we were even more delighted by the joy of Titus. For his Indeed, spirit has been refreshed by all of you. I was not embarrassed by anything I had boasted to him about you. But just as everything we said to you was true, so our boasting to Titus has And his affection for proved to be true as well. you is even greater when he remembers that you were all obedient as you welcomed him with fear I rejoice that I can have com- and trembling. Generosity Commended plete confidence in you." + }, + { + "verseNum": 47, + "text": "| 761 c outpoured wrath I will bring you out from the from the lands to which peoples and gather you And I will bring you you have been scattered. into the wilderness of the nations, where I will 36 enter into judgment with you face to face. 35 d 37 Just as I entered into judgment with your fa- thers in the wilderness of the land of Egypt, so I will enter into judgment with you, declares the I will make you pass under the rod Lord GOD. 38 and will bring you into the bond of the covenant. And I will purge you of those who rebel and transgress against Me. I will bring them out of the land in which they dwell, but they will not enter the land of Israel. Then you will know that I am 39 the LORD. And as for you, O house of Israel, this is what the Lord GOD says: Go and serve your idols, every one of you. But afterward, you will surely listen to Me, and you will no longer defile My holy 40 name with your gifts and idols. For on My holy mountain, the high mountain of Israel, declares the Lord GOD, there the whole house of Israel, all of them, will serve Me in the land. There I will accept them and will require your offerings and choice gifts, along with all 41 your holy sacrifices. When I bring you from the peoples and gather you from the lands to which you have been scat- tered, I will accept you as a pleasing aroma. And I will show My holiness through you in the sight of the nations. Then you will know that I am the LORD, when I bring you into the land of Is- 43 rael, the land tha" + }, + { + "verseNum": 48, + "text": "48 every face from south to north will be scorched. Then all people will see that I, the LORD, have 49 kindled it; it will not be quenched.” Then I said, “Ah, Lord GOD, they are saying of God’s Sword of Judgment me, ‘Is he not just telling parables?’ ” 21 2 3 And the word of the LORD came to me, “Son of man, set your face saying, against Jerusalem and preach against the sanctu- and aries. Prophesy against the land of Israel tell her that this is what the LORD says: ‘I am against you, and I will draw My sword from its sheath and cut off from you both the righteous Because I will cut off both the and the wicked. righteous and the wicked, My sword will be un- 5 sheathed against everyone from south to north. Then all flesh will know that I, the LORD, have taken My sword from its sheath, not to return it 6 again.’ 4 7 But you, son of man, groan! Groan before their And eyes with a broken heart and bitter grief. when they ask, ‘Why are you groaning?’ you are to say, ‘Because of the news that is coming. Every heart will melt, and every hand will go limp. Every spirit will faint, and every knee will turn to water.’ Yes, it is coming and it will surely happen, 8 declares the Lord GOD.” 9 Again the word of the LORD came to me, saying, “Son of man, prophesy and tell them that this is what the Lord says: ‘A sword, a sword, 10 sharpened and polished— it is sharpened for the slaughter, polished to flash like lightning! 11 Should we rejoice in the scepter of My son? The sword despises every" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 20, + "text": "| 763 you have made. You have brought your days to a close and have come to the end of your years. Therefore I have made you a reproach to the Those nations and a mockery to all the lands. near and far will mock you, O infamous city, full 6 of turmoil. 5 7 See how every prince of Israel within you has used his power to shed blood. Father and mother are treated with contempt. Within your walls the foreign resident is exploited, the father- 8 less and the widow are oppressed. 9 You have despised My holy things and profaned My Sabbaths. Among you are slanderous men bent on bloodshed; within you are those who eat on the mountain shrines and commit acts of in- 10 decency. 11 In you they have uncovered the nakedness of their fathers; in you they violate women during their menstrual impurity. One man commits an abomination with his neighbor’s wife; an- other wickedly defiles his daughter-in-law; and yet another violates his sister, his own father’s 12 daughter. In you they take bribes to shed blood. You en- gage in usury, take excess interest, and extort your neighbors. But Me you have forgotten, de- 13 clares the Lord GOD. 15 14 Now look, I strike My hands together against your unjust gain and against the blood you have shed in your midst. Will your courage endure or your hands be strong in the day I deal with you? I, the LORD, have spoken, and I will act. I will disperse you among the nations and scatter you throughout the lands; I will purge your un- cleanness. And when you have" + }, + { + "verseNum": 21, + "text": "21 22 Yes, I will gather you together and blow on you with the fire of My wrath, and you will be melted within the city. As silver is melted in a furnace, so you will be melted within the city. Then you will know that I, the LORD, have poured out My Israel’s Wicked Leaders wrath upon you.’ 23 ” 24 And the word of the LORD came to me, saying, “Son of man, say to her, ‘In the day of indignation, you are a land that has not been 25 cleansed, upon which no rain has fallen.’ a The conspiracy of the princes in her midst is lion tearing its prey. They like a roaring devour the people, seize the treasures and pre- 26 cious things, and multiply the widows within her. Her priests do violence to My law and profane My holy things. They make no distinction be- tween the holy and the common, and they fail to distinguish between the clean and the unclean. They disregard My Sabbaths, so that I am pro- 27 faned among them. Her officials within her are like wolves tearing their prey, shedding blood, and destroying lives 28 for dishonest gain. Her prophets whitewash these deeds by false visions and lying divinations, saying, ‘This is what the Lord GOD says,’ when the LORD has not 29 spoken. The people of the land have practiced extor- tion and committed robbery. They have op- pressed the poor and needy and have exploited 30 the foreign resident without justice. 31 I searched for a man among them to repair the wall and stand in the gap before Me on behalf of the land, so that I should not destro" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 47, + "text": "| 765 34 You will drink it and drain it; you will dash it to pieces, and tear your breasts. For I have spoken,’ declares the Lord GOD. 35 Therefore this is what the Lord GOD says: ‘Be- cause you have forgotten Me and have cast Me behind your back, you must bear the conse- Judgment on Both Sisters quences of your indecency and prostitution.’ 36 ” 37 Then the LORD said to me: “Son of man, will you pass judgment against Oholah and Oholibah? Then declare to them their abomina- For they have committed adultery, and tions. blood is on their hands. They have committed adultery with their idols. They have even sacri- ficed their children, whom they bore to Me, in the 38 fire as food for their idols. b They have also done this to Me: On that very 39 same day, they defiled My sanctuary and pro- faned My Sabbaths. On the very day they slaughtered their children for their idols, they entered My sanctuary to profane it. Yes, they did 40 this inside My house. c 41 Furthermore, you sisters sent messengers for men who came from afar; and behold, when they arrived, you bathed for them, painted your eyes, You sat on and adorned yourself with jewelry. 42 a couch of luxury with a table spread before it, on ac- which you had set My incense and My oil, companied by the sound of a carefree crowd. Drunkards were brought in from the desert along with men from the rabble, who put brace- lets on your wrists and beautiful crowns on your 43 head. d Then I said of her who had grown old in adul- teries: ‘N" + }, + { + "verseNum": 48, + "text": "49 48 sons and daughters and burn down their houses. So I will put an end to indecency in the land, and all the women will be admonished not to im- They will repay you for itate your behavior. your indecency, and you will bear the conse- quences of your sins of idolatry. Then you will The Parable of the Cooking Pot ” know that I am the Lord GOD.’ 24 2 In the ninth year, on the tenth day of the tenth month, the word of the LORD came “Son of man, write down today’s to me, saying, 3 date, for on this very day the king of Babylon has Now speak a parable to laid siege to Jerusalem. this rebellious house and tell them that this is what the Lord GOD says: ‘Put the pot on the fire; 4 put it on and pour in the water. Put in the pieces of meat, every good piece— thigh and shoulder— 5 fill it with choice bones. Take the choicest of the flock and pile the fuel beneath it. Bring it to a boil and cook the bones in it.’ 6 Therefore this is what the Lord GOD says: ‘Woe to the city of bloodshed, to the pot now rusted, whose rust will not come off! a Empty it piece by piece; 7 cast no lots for its contents. For the blood she shed is still within her; she poured it out on the bare rock; she did not pour it on the ground 8 to cover it with dust. In order to stir up wrath and take vengeance, 9 I have placed her blood on the bare rock, so that it would not be covered.’ Yes, this is what the Lord GOD says: ‘Woe to the city of bloodshed! 10 I, too, will pile the kindling high. Pile on the logs and k" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "–21)" + }, + { + "verseNum": 10, + "text": "| 767 14 stretch out My hand against Edom and cut off from it both man and beast. I will make it a wasteland, and from Teman to Dedan they will fall by the sword. I will take My vengeance on Edom by the hand of My people Israel, and they will deal with Edom according to My anger and wrath. Then they will know My vengeance, de- A Prophecy against the Philistines clares the Lord GOD.’ 15 16 This is what the Lord GOD says: ‘Because the Philistines acted in vengeance, taking vengeance with malice of soul to destroy Judah with ancient therefore this is what the Lord GOD hostility, says: Behold, I will stretch out My hand against the Philistines, and I will cut off the Cherethites I will and destroy the remnant along the coast. execute great vengeance against them with furi- ous reproof. Then they will know that I am the A Prophecy against Tyre" + }, + { + "verseNum": 11, + "text": "A Lament for Tyre 11 When he enters your gates as an army entering a breached city, your walls will shake from the The noise of cavalry, wagons, and chariots. hooves of his horses will trample all your streets. He will slaughter your people with the sword, 12 and your mighty pillars will fall to the ground. They will plunder your wealth and pillage your merchandise. They will demolish your walls, tear down your beautiful homes, and throw your 13 stones and timber and soil into the water. So I will silence the sound of your songs, and 14 the music of your lyres will no longer be heard. I will make you a bare rock, and you will be- come a place to spread the fishing nets. You will never be rebuilt, for I, the LORD, have spoken, 15 declares the Lord GOD.’ This is what the Lord GOD says to Tyre: ‘Will not the coastlands quake at the sound of your downfall, when the wounded groan at the 16 slaughter in your midst? All the princes of the sea will descend from their thrones, remove their robes, and strip off their embroidered garments. Clothed with ter- ror, they will sit on the ground, trembling every Then they will moment, appalled over you. lament for you, saying, 17 “How you have perished, O city of renown inhabited by seafaring men— she who was powerful on the sea, a 18 along with her people, who imposed terror on all peoples! Now the coastlands tremble on the day of your downfall; the islands in the sea 19 are dismayed by your demise.” ’ 20 For this is what the Lord GOD says:" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 2, + "text": "| 769 28 will sink into the heart of the sea on the day of your downfall. 29 The countryside will shake when your sailors cry out. All who handle the oars will abandon their ships. 30 The sailors and all the captains of the sea will stand on the shore. They will raise their voices for you and cry out bitterly. 31 They will throw dust on their heads and roll in ashes. They will shave their heads for you and wrap themselves in sackcloth. They will weep over you 32 with anguish of soul and bitter mourning. As they wail and mourn over you, they will take up a lament for you: 33 ‘Who was ever like Tyre, silenced in the middle of the sea? When your wares went out to sea, you satisfied many nations. You enriched the kings of the earth with your abundant wealth and 34 merchandise. Now you are shattered by the seas in the depths of the waters; 35 your merchandise and the people among you have gone down with you. All the people of the coastlands 36 are appalled over you. Their kings shudder with fear; their faces are contorted. Those who trade among the nations hiss at you; you have come to a horrible end A Prophecy against the Ruler of Tyre and will be no more.’ ” 28 2 And the word of the LORD came to me, “Son of man, tell the ruler of saying, Tyre that this is what the Lord GOD says: Your heart is proud, and you have said, ‘I am a god; I sit in the seat of gods in the heart of the sea.’ Yet you are a man and not a god, a 15 Rhodes b 16 you, with all the other people on board, —and Da" + }, + { + "verseNum": 3, + "text": "3 15 4 Behold, you are wiser than Daniel; no secret is hidden from you! By your wisdom and understanding you have gained your wealth 5 and amassed gold and silver for your treasuries. By your great skill in trading you have increased your wealth, but your heart has grown proud 6 because of it. Therefore this is what the Lord GOD says: Because you regard your heart 7 as the heart of a god, behold, I will bring foreigners against you, the most ruthless of nations. They will draw their swords 8 9 against the beauty of your wisdom and will defile your splendor. They will bring you down to the Pit, and you will die a violent death in the heart of the seas. Will you still say, ‘I am a god,’ in the presence of those who slay you? You will be only a man, not a god, 10 in the hands of those who wound you. You will die the death of the uncircumcised at the hands of foreigners. declares the Lord GOD.” For I have spoken, A Lament for the King of Tyre 11 12 Again the word of the LORD came to me, say- ing, “Son of man, take up a lament for the king of Tyre and tell him that this is what the Lord GOD says: From the day you were created 16 you were blameless in your ways— until wickedness was found in you. By the vastness of your trade, you were filled with violence, and you sinned. So I drove you in disgrace from the mountain of God, 17 and I banished you, O guardian cherub, from among the fiery stones. Your heart grew proud of your beauty; you corrupted your wisdom because of your splendor" + }, + { + "verseNum": 25, + "text": "–26) ” 30 2 3 This is the word that came to Jeremiah “This is what the LORD, from the LORD: the God of Israel, says: ‘Write in a book all the words that I have spoken to you. For behold, the c days are coming, declares the LORD, when I will My people Israel and restore from captivity Judah, declares the LORD. I will restore them to the land that I gave to their fathers, and they will 4 possess it.’ ” 5 These are the words that the LORD spoke con- Yes, this is what the cerning Israel and Judah. LORD says: “A cry of panic is heard— 6 a cry of terror, not of peace. Ask now, and see: Can a male give birth? Why then do I see every man with his hands on his stomach like 7 a woman in labor and every face turned pale? How awful that day will be! None will be like it! It is the time of Jacob’s distress, 8 but he will be saved out of it. On that day, declares the LORD of Hosts, I will break the yoke off their necks and tear off their bonds, You said and no longer will strangers enslave them. Zephaniah b 25 Literally added for clarity. Or Hebrew ; the addressee is 9 Instead, they will serve the LORD their God 10 and David their king, whom I will raise up for them. As for you, O Jacob My servant, do not be afraid, declares the LORD, and do not be dismayed, O Israel. For I will surely save you out of a distant place, your descendants from the land of their captivity! 11 Jacob will return to quiet and ease, with no one to make him afraid. For I am with you to save you, declares the LORD. T" + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 21, + "text": "| 771 9 The land of Egypt will become a man and beast. desolate wasteland. Then they will know that I am the LORD. 10 Because you said, ‘The Nile is mine; I made it,’ therefore I am against you and against your rivers. I will turn the land of Egypt into a ruin, a b desolate wasteland from Migdol to Syene, and as No foot of man or far as the border of Cush. beast will pass through, and it will be uninhab- 12 ited for forty years. 11 I will make the land of Egypt a desolation among desolate lands, and her cities will lie des- olate for forty years among the ruined cities. And I will disperse the Egyptians among the nations 13 and scatter them throughout the countries. 14 For this is what the Lord GOD says: At the end of forty years I will gather the Egyptians from the c I will re- nations to which they were scattered. store Egypt from captivity and bring them back to the land of Pathros, the land of their origin. 15 There they will be a lowly kingdom. 16 Egypt will be the lowliest of kingdoms and will never again exalt itself above the nations. For I will diminish Egypt so that it will never again Egypt will never again be rule over the nations. an object of trust for the house of Israel, but will remind them of their iniquity in turning to the Egyptians. Then they will know that I am the Egypt the Reward of Nebuchadnezzar Lord GOD.” 17 18 In the twenty-seventh year, on the first day of the first month, the word of the LORD came to “Son of man, Nebuchadnezzar king me, saying, o" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "A Lament for Egypt 30 2 Again the word of the LORD came to me, “Son of man, prophesy and de- saying, clare that this is what the Lord GOD says: Wail, ‘Alas 3 for that day!’ For the day is near, the Day of the LORD is near. a It will be a day of clouds, 4 a time of doom for the nations. b A sword will come against Egypt, and there will be anguish in Cush when the slain fall in Egypt, its wealth is taken away, 5 and its foundations are torn down. c Cush, Put, and Lud, and all the various peoples, as well as Libya and the men of the 6 covenant land, will fall with Egypt by the sword. For this is what the LORD says: The allies of Egypt will fall, d and her proud strength will collapse. From Migdol to Syene they will fall by the sword within her, declares the Lord GOD. 7 8 They will be desolate among desolate lands, and their cities will lie among ruined cities. Then they will know that I am the LORD 9 when I set fire to Egypt and all her helpers are shattered. On that day messengers will go out from Me in ships to frighten Cush out of complacency. Anguish will come upon them on the day of Egypt’s doom. For it is indeed coming. e 10 This is what the Lord GOD says: I will put an end to the hordes of Egypt 11 by the hand of Nebuchadnezzar king of Babylon. He and his people with him, the most ruthless of the nations, will be brought in to destroy the land. They will draw their swords against Egypt 12 and fill the land with the slain. a 3 I will make the streams dry up and sell the la" + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 2, + "text": "| 773 10 c d 11 Therefore this is what the Lord GOD says: ‘Since it became great in height and set its top among the clouds, and it grew proud on account I delivered it into the hand of the of its height, ruler of the nations, for him to deal with it ac- 12 cording to its wickedness. I have banished it. Foreigners, the most ruthless of the nations, cut it down and left it. Its branches have fallen on the mountains and in every valley; its boughs lay broken in all the earth’s ravines. And all the peo- 13 ples of the earth left its shade and abandoned it. 14 All the birds of the air nested on its fallen trunk, and all the beasts of the field lived among This happened so that no other its boughs. trees by the waters would become great in height and set their tops among the clouds, and no other well-watered trees would reach them in height. For they have all been consigned to death, to the depths of the earth, among the mortals who de- 15 scend to the Pit.’ This is what the Lord GOD says: ‘On the day it was brought down to Sheol, I caused mourning. I covered the deep because of it; I held back its riv- ers; its abundant waters were restrained. I made Lebanon mourn for it, and all the trees of the field fainted because of it. I made the nations quake at the sound of its downfall, when I cast it down to Sheol with those who descend to the Pit. 16 17 Then all the trees of Eden, the choicest and best of Lebanon, all the well-watered trees, were con- soled in the earth below. They too" + }, + { + "verseNum": 3, + "text": "3 14 This is what the Lord GOD says: ‘I will spread My net over you 4 with a company of many peoples, and they will draw you up in My net. I will abandon you on the land and hurl you into the open field. I will cause all the birds of the air to settle upon you, and all the beasts of the earth 5 to eat their fill of you. a I will put your flesh on the mountains 6 and fill the valleys with your remains. I will drench the land with the flow of your blood, all the way to the mountains— 7 the ravines will be filled. When I extinguish you, I will cover the heavens and darken their stars. Then I will let her waters settle and will make her rivers flow like oil,’ declares the Lord GOD. 15 ‘When I make the land of Egypt a desolation and empty it of all that filled it, when I strike down all who live there, 16 then they will know that I am the LORD.’ This is the lament they will chant for her; the daughters of the nations will chant it. Over Egypt and all her multitudes they will chant it, declares Egypt Cast into the Pit the Lord GOD.” 17 c In the twelfth year, on the fifteenth day of the 18 month, the word of the LORD came to me, say- “Son of man, wail for the multitudes of ing, Egypt, and consign her and the daughters of the mighty nations to the depths of the earth with 19 those who descend to the Pit: I will cover the sun with a cloud, 8 and the moon will not give its light. All the shining lights in the heavens Whom do you surpass in beauty? 20 Go down and be placed with the unci" + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 8, + "text": "–9. See" + }, + { + "verseNum": 11, + "text": "| 775 25 They bear their disgrace with those who descend to the Pit. For I will spread My terror in the land of the living, Among the slain they prepare a resting place for Elam with all her hordes, with her graves all around her. All of them are uncircumcised, slain by the sword, although their terror was once spread in the land of the living. They bear their disgrace 26 with those who descend to the Pit. They are placed among the slain. Meshech and Tubal are there with all their multitudes, with their graves all around them. All of them are uncircumcised, slain by the sword, 27 because they spread their terror in the land of the living. a They do not lie down with the fallen warriors of old, who went down to Sheol with their weapons of war, b whose swords were placed under their heads, whose shields rested on their bones, 28 although the terror of the mighty was once in the land of the living. But you too will be shattered 29 and lie down among the uncircumcised, with those slain by the sword. Edom is there, and all her kings and princes, who despite their might are laid among those slain by the sword. 30 They lie down with the uncircumcised, with those who descend to the Pit. All the leaders of the north and all the Sidonians are there; they went down in disgrace with the slain, despite the terror of their might. They lie uncircumcised with those slain by the sword and bear their shame 31 with those who descend to the Pit. Pharaoh will see them and be comforted over all hi" + }, + { + "verseNum": 12, + "text": "turn from their ways and live. Turn! Turn from your evil ways! For why should you die, O house 12 of Israel?’ Therefore, son of man, say to your people: ‘The righteousness of the righteous man will not de- liver him in the day of his transgression; neither will the wickedness of the wicked man cause him to stumble on the day he turns from his wicked- ness. Nor will the righteous man be able to sur- 13 vive by his righteousness on the day he sins.’ If I tell the righteous man that he will surely live, but he then trusts in his righteousness and commits iniquity, then none of his righteous works will be remembered; he will die because 14 of the iniquity he has committed. 15 But if I tell the wicked man, ‘You will surely die,’ and he turns from his sin and does what is just and right— if he restores a pledge, makes restitution for what he has stolen, and walks in the statutes of life without practicing iniquity— None of then he will surely live; he will not die. the sins he has committed will be held against him. He has done what is just and right; he will 17 surely live. 16 18 Yet your people say, ‘The way of the Lord is not If a just.’ But it is their way that is not just. righteous man turns from his righteousness and commits iniquity, he will die for it. But if a wicked man turns from his wickedness and does 20 what is just and right, he will live because of this. 19 Yet you say, ‘The way of the Lord is not just.’ But I will judge each of you according to his ways, Word of J" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 11, + "text": "–24 ;" + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 4, + "text": "| 777 My flock went astray on all the wild beasts. mountains and every high hill. They were scat- tered over the face of all the earth, with no one to 7 search for them or seek them out.’ 8 Therefore, you shepherds, hear the word of the ‘As surely as I live, declares the Lord LORD: GOD, because My flock lacks a shepherd and has become prey and food for every wild beast, and because My shepherds did not search for My flock but fed themselves instead, therefore, you 10 shepherds, hear the word of the LORD!’ 9 This is what the Lord GOD says: ‘Behold, I am against the shepherds, and I will demand from them My flock and remove them from tending the flock, so that they can no longer feed them- selves. For I will deliver My flock from their The Good Shepherd mouths, and it will no longer be food for them.’" + }, + { + "verseNum": 5, + "text": "5 6 Because you harbored an ancient hatred and delivered the Israelites over to the sword in the time of their disaster at the final stage of their therefore as surely as I live, de- punishment, clares the Lord GOD, I will give you over to blood- shed and it will pursue you. Since you did not 7 hate bloodshed, it will pursue you. 8 I will make Mount Seir a desolate waste and will I will fill cut off from it those who come and go. its mountains with the slain; those killed by the 9 sword will fall on your hills, in your valleys, and I will make you a perpetual in all your ravines. desolation, and your cities will not be inhabited. 10 Then you will know that I am the LORD. 11 Because you have said, ‘These two nations and countries will be ours, and we will possess them,’ even though the LORD was there, therefore as surely as I live, declares the Lord GOD, I will treat you according to the anger and jealousy you showed in your hatred against them, and I will make Myself known among them when I judge 12 you. 13 Then you will know that I, the LORD, have heard every contemptuous word you uttered against the mountains of Israel when you said, ‘They are desolate; they are given to us to de- You boasted against Me with your vour!’ mouth and multiplied your words against Me. I 14 heard it Myself! This is what the Lord GOD says: While the 15 whole earth rejoices, I will make you desolate. As you rejoiced when the inheritance of the house of Israel became desolate, so will I do to you. Y" + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 16, + "text": "–38 ;" + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 9, + "text": "| 779 So like the uncleanness of a woman’s impurity. I poured out My wrath upon them because of the blood they had shed on the land, and because 19 they had defiled it with their idols. 20 I dispersed them among the nations, and they were scattered throughout the lands. I judged them according to their ways and deeds. And wherever they went among the nations, they profaned My holy name, because it was said of them, ‘These are the people of the LORD, yet they But I had concern for My had to leave His land.’ holy name, which the house of Israel had pro- 22 faned among the nations to which they had gone. 21 23 Therefore tell the house of Israel that this is what the Lord GOD says: It is not for your sake that I will act, O house of Israel, but for My holy name, which you profaned among the nations to I will show the holiness of My which you went. great name, which has been profaned among the nations—the name you have profaned among them. Then the nations will know that I am the LORD, declares the Lord GOD, when I show My 24 holiness in you before their eyes. 26 25 For I will take you from among the nations and gather you out of all the countries, and I will I will also bring you back into your own land. sprinkle clean water on you, and you will be clean. I will cleanse you from all your impurities I will give you a new heart and all your idols. and put a new spirit within you; I will remove 27 your heart of stone and give you a heart of flesh. And I will put My Spirit within you" + }, + { + "verseNum": 10, + "text": "four winds, O breath, and breathe into these 10 slain, so that they may live!” So I prophesied as He had commanded me, and the breath entered them, and they came to life 11 and stood on their feet—a vast army. Then He said to me, “Son of man, these bones are the whole house of Israel. Look, they are say- ing, ‘Our bones are dried up, and our hope has 12 perished; we are cut off.’ 13 14 Therefore prophesy and tell them that this is what the Lord GOD says: ‘O My people, I will open your graves and bring you up from them, and I Then will bring you back to the land of Israel. you, My people, will know that I am the LORD, when I open your graves and bring you up from I will put My Spirit in you and you will them. live, and I will settle you in your own land. Then you will know that I, the LORD, have spoken, and One Nation with One King I will do it, declares the LORD.’ 15 ” 16 a Again the word of the LORD came to me, say- ing, “And you, son of man, take a single stick and write on it: ‘Belonging to Judah and to the Is- raelites associated with him.’ Then take another stick and write on it: ‘Belonging to Joseph—the stick of Ephraim—and to all the house of Israel Then join them together associated with him.’ into one stick, so that they become one in your 18 hand. 17 19 When your people ask you, ‘Won’t you explain you are to tell to us what you mean by these?’ them that this is what the Lord GOD says: ‘I will take the stick of Joseph, which is in the hand of Ephraim, and the tribes" + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 14, + "text": "| 781 23 and on the many nations with him. I will mag- nify and sanctify Myself, and I will reveal Myself in the sight of many nations. Then they will know The Slaughter of Gog’s Armies that I am the LORD. 39 c 2 “As for you, O son of man, prophesy against Gog and declare that this is what the Lord GOD says: Behold, I am against you, O I will Gog, chief prince of Meshech and Tubal. turn you around, drive you along, bring you up from the far north, and send you against the Then I will strike the bow mountains of Israel. from your left hand and dash down the arrows 4 from your right hand. 3 On the mountains of Israel you will fall—you and all your troops and the nations with you. I will give you as food to every kind of ravenous bird and wild beast. You will fall in the open 6 field, for I have spoken, declares the Lord GOD. 5 I will send fire on Magog and on those who 7 dwell securely in the coastlands, and they will know that I am the LORD. So I will make My holy name known among My people Israel and will no longer allow it to be profaned. Then the nations will know that I am the LORD, the Holy One in Is- rael. Yes, it is coming, and it will surely happen, declares the Lord GOD. This is the day of which I 9 have spoken. 8 10 Then those who dwell in the cities of Israel will go out, kindle fires, and burn up the weapons— the bucklers and shields, the bows and arrows, the clubs and spears. For seven years they will use them for fuel. They will not gather wood from the countrysi" + }, + { + "verseNum": 15, + "text": "29 invaders who remain on the ground. At the end 15 of the seven months they will begin their search. As they pass through the land, anyone who sees a human bone will set up a pillar next to it, until the gravediggers have buried it in the Valley (Even the city will be named of Hamon-gog. 17 Hamonah. ) And so they will cleanse the land. 16 a 18 And as for you, son of man, this is what the Lord GOD says: Call out to every kind of bird and to every beast of the field: ‘Assemble and come together from all around to the sacrificial feast that I am preparing for you, a great feast on the mountains of Israel. There you will eat flesh and You will eat the flesh of the mighty drink blood. and drink the blood of the princes of the earth as though they were rams, lambs, goats, and bulls— At the sac- all the fattened animals of Bashan. rifice I am preparing, you will eat fat until you are 20 gorged and drink blood until you are drunk. And at My table you will eat your fill of horses and riders, of mighty men and warriors of every Israel to Be Restored kind,’ declares the Lord GOD. 21 19 22 23 I will display My glory among the nations, and all the nations will see the judgment that I exe- From cute and the hand that I lay upon them. that day forward the house of Israel will know And the nations that I am the LORD their God. will know that the house of Israel went into exile for their iniquity, because they were unfaithful to Me. So I hid My face from them and delivered them into the hand" + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "–4) 2 2 Then I lifted up my eyes and saw a man with a measuring line in his hand. “Where are you going?” I asked. “To measure Jerusalem,” he replied, “and to de- 3 termine its width and length.” 4 5 Then the angel who was speaking with me went forth, and another angel came forward to meet him and said to him, “Run and tell that young man: ‘Jerusalem will be a city without walls be- cause of the multitude of men and livestock For I will be a wall of fire around it, within it. declares the LORD, and I will be the glory within ” The Redemption of Zion" + }, + { + "verseNum": 5, + "text": "" + }, + { + "verseNum": 39, + "text": "| 783 25 measurements as the others. Both the gateway and its portico had windows all around, like the other windows. It was fifty cubits long and Seven steps led up to twenty-five cubits wide. it, and its portico was opposite them; it had palm 27 trees on its side pillars, one on each side. 26 The inner court also had a gate facing south, and he measured the distance from gateway to The Gates of the Inner Court gateway toward the south to be a hundred cubits. 28 29 Next he brought me into the inner court through the south gate, and he measured the south gate; it had the same measurements as the Its gate chambers, side pillars, and por- others. tico had the same measurements as the others. Both the gateway and its portico had windows all around; it was fifty cubits long and twenty-five (The porticoes around the inner cubits wide. court were twenty-five cubits long and five cu- bits deep. Its portico faced the outer court, and its side pillars were decorated with palm 32 trees. Eight steps led up to it. 31 30 ) f 33 And he brought me to the inner court on the east side, and he measured the gateway; it had Its gate the same measurements as the others. chambers, side pillars, and portico had the same measurements as the others. Both the gateway and its portico had windows all around. It was 34 fifty cubits long and twenty-five cubits wide. Its portico faced the outer court, and its side pillars were decorated with palm trees on each 35 side. Eight steps led up to it. 36 Then he" + }, + { + "verseNum": 40, + "text": "40 Inside the Temple 41 Outside, as one goes up to the entrance of the north gateway, there were two tables on one side and two more tables on the other side of the So there were four tables inside gate’s portico. the gateway and four outside—eight tables in all—on which the sacrifices were to be slaugh- 42 tered. There were also four tables of dressed stone for the burnt offering, each a cubit and a half long, a cubit and a half wide, and a cubit high. On these were placed the utensils used to slaughter 43 the burnt offerings and the other sacrifices. a b c The double-pronged hooks, each a hand- were fastened all around the breadth long, inside of the room, and the flesh of the offering Chambers for Ministry was to be placed on the tables. 44 d e Outside the inner gate, within the inner court, were two chambers, one beside the north gate and facing south, and another beside the south 45 gate and facing north. 46 Then the man said to me: “The chamber that faces south is for the priests who keep charge of the temple, and the chamber that faces north is for the priests who keep charge of the altar. These are the sons of Zadok, the only Levites who The Inner Court may approach the LORD to minister before Him.” 47 Next he measured the court. It was square, a hundred cubits long and a hundred cubits wide. 48 And the altar was in front of the temple. f h 49 Then he brought me to the portico of the tem- ple and measured the side pillars of the portico to be five cubits on each side." + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 12, + "text": "| 785 25 26 swinging panels. There were two panels for one door and two for the other. Cherubim and palm trees like those on the walls were carved on the doors of the outer sanctuary, and there was a wooden canopy outside, on the front of the por- There were beveled windows and palm tico. trees on the sidewalls of the portico. The side Chambers for the Priests rooms of the temple also had canopies. 42 2 Then the man led me out northward into the outer court, and he brought me to the group of chambers opposite the temple court- The yard and the outer wall on the north side. building with the door facing north was a hun- dred cubits long and fifty cubits wide. Gallery faced gallery in three levels opposite the twenty that belonged to the inner court and op- cubits posite the pavement that belonged to the outer 4 court. 3 e f g In front of the chambers was an inner walkway Their ten cubits wide and a hundred cubits long. 5 doors were on the north. 7 Now the upper chambers were smaller because the galleries took more space from the chambers 6 on the lower and middle floors of the building. For they were arranged in three stories, and un- like the courts, they had no pillars. So the upper chambers were set back further than the lower An outer wall in front of the and middle floors. chambers was fifty cubits long and ran parallel to For the the chambers and the outer court. chambers on the outer court were fifty cubits 9 long, while those facing the temple were a hun- And below the" + }, + { + "verseNum": 13, + "text": "13 6 14 Then the man said to me, “The north and south chambers facing the temple courtyard are the holy chambers where the priests who approach the LORD will eat the most holy offerings. There they will place the most holy offerings—the grain offerings, the sin offerings, and the guilt of- ferings—for the place is holy. Once the priests have entered the holy area, they must not go out into the outer court until they have left behind the garments in which they minister, for these are holy. They are to put on other clothes before The Outer Measurements they approach the places that are for the people.” 15 Now when the man had finished measuring the interior of the temple area, he led me out by the gate that faced east, and he measured the area all around: 16 a With a measuring rod he measured the 17 east side to be five hundred cubits long. He measured the north side to be five 18 hundred cubits long. He measured the south side to be five 19 hundred cubits long. 20 And he came around and measured the west side to be five hundred cubits long. So he measured the area on all four sides. It had a wall all around, five hundred cubits long and five hundred cubits wide, to separate the The Glory of the LORD Returns to the Temple holy from the common. 43 2 Then the man brought me back to the and I saw the glory gate that faces east, of the God of Israel coming from the east. His voice was like the roar of many waters, and the 3 earth shone with His glory. b 4 The vision I saw was like" + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 14, + "text": "| 787 eat in the presence of the LORD. He must enter by way of the portico of the gateway and go out 4 the same way.” 5 Then the man brought me to the front of the temple by way of the north gate. I looked and saw the glory of the LORD filling His temple, and I fell The LORD said to me: “Son of man, facedown. pay attention; look carefully with your eyes and listen closely with your ears to everything I tell you concerning all the statutes and laws of the house of the LORD. Take careful note of the en- trance to the temple, along with all the exits of Reproof of the Levites the sanctuary. 6 7 Tell the rebellious house of Israel that this is what the Lord GOD says: ‘I have had enough of all In addi- your abominations, O house of Israel. tion to all your other abominations, you brought in foreigners uncircumcised in both heart and flesh to occupy My sanctuary; you defiled My temple when you offered My food—the fat and And you the blood; you broke My covenant. have not kept charge of My holy things, but have appointed others to keep charge of My sanctuary 9 for you.’ 8 This is what the Lord GOD says: No foreigner uncircumcised in heart and flesh may enter My sanctuary—not even a foreigner who lives 10 among the Israelites. 11 Surely the Levites who wandered away from Me when Israel went astray, and who wandered away from Me after their idols, will bear the con- Yet they shall be sequences of their iniquity. ministers in My sanctuary, having charge of the gates of the temple and m" + }, + { + "verseNum": 15, + "text": "The Duties of the Priests 28 15 But the Levitical priests, who are descended from Zadok and who kept charge of My sanctu- ary when the Israelites went astray from Me, are to approach Me to minister before Me. They will stand before Me to offer Me fat and blood, de- They alone shall enter My clares the Lord GOD. sanctuary and draw near to My table to minister 17 before Me. They will keep My charge. 16 18 When they enter the gates of the inner court, they are to wear linen garments; they must not wear anything made of wool when they minister at the gates of the inner court or inside the tem- They are to wear linen turbans on their ple. heads and linen undergarments around their waists. They must not wear anything that makes 19 them perspire. When they go out to the outer court, to the people, they are to take off the garments in which they have ministered, leave them in the holy chambers, and dress in other clothes so that they do not transmit holiness to the people with their 20 garments. 22 They must not shave their heads or let their 21 hair grow long, but must carefully trim their hair. No priest may drink wine before he enters the And they shall not marry a widow inner court. or a divorced woman, but must marry a virgin of the descendants of the house of Israel, or a They are to teach My people widow of a priest. the difference between the holy and the common and show them how to discern between the clean 24 and the unclean. 23 In any dispute, they shall officiate as judge" + } + ] + }, + { + "chapterNum": 45, + "verses": [ + { + "verseNum": 10, + "text": "–12) 13 14 You shall not have two differing weights in your bag, one heavy and one light. You shall not have two differing measures in your house, 15 one large and one small. You must maintain accurate and honest weights and measures, so that you may live long 16 in the land that the LORD your God is giving you. For everyone who behaves dishonestly in re- gard to these things is detestable to the LORD Revenge on the Amalekites your God. 17 18 Remember what the Amalekites did to you how they met you a 4 along your way from Egypt, b 5" + }, + { + "verseNum": 11, + "text": "" + }, + { + "verseNum": 14, + "text": "" + } + ] + }, + { + "chapterNum": 46, + "verses": [ + { + "verseNum": 5, + "text": "| 789 sin offering and put it on the doorposts of the temple, on the four corners of the ledge of the al- 20 tar, and on the gateposts of the inner court. You must do the same thing on the seventh day of the month for anyone who strays unintention- ally or in ignorance. In this way you will make 21 atonement for the temple. 23 On the fourteenth day of the first month you are to observe the Passover, a feast of seven days, 22 during which unleavened bread shall be eaten. On that day the prince shall provide a bull as a sin offering for himself and for all the people of Each day during the seven days of the the land. feast, he shall provide seven bulls and seven rams without blemish as a burnt offering to the LORD, He along with a male goat for a sin offering. shall also provide as a grain offering an ephah for 25 each bull and an ephah for each ram, along with Dur- a hin of olive oil for each ephah of grain. ing the seven days of the feast that begins on the fifteenth day of the seventh month, he is to make the same provision for sin offerings, burnt offer- The Prince’s Offerings ings, grain offerings, and oil.’ 24 i j 46 2 “This is what the Lord GOD says: ‘The gate of the inner court that faces east must be kept shut during the six days of work, but on the Sabbath day and on the day of the New The prince is to enter Moon it shall be opened. from the outside through the portico of the gate- way and stand by the gatepost, while the priests sacrifice his burnt offerings and peac" + }, + { + "verseNum": 6, + "text": "6 7 On the day of the New hin of oil per ephah. Moon he shall offer a young, unblemished bull, He is to six lambs, and a ram without blemish. provide a grain offering of an ephah with the bull, an ephah with the ram, and as much as he is able 8 with the lambs, along with a hin of oil per ephah. When the prince enters, he shall go in through the portico of the gateway, and he shall go out the 9 same way. When the people of the land come before the LORD at the appointed feasts, whoever enters by the north gate to worship must go out by the south gate, and whoever enters by the south gate must go out by the north gate. No one is to return through the gate by which he entered, but each 10 must go out by the opposite gate. When the people enter, the prince shall go in 11 with them, and when they leave, he shall leave. At the festivals and appointed feasts, the grain offering shall be an ephah with a bull, an ephah with a ram, and as much as one is able to give 12 with the lambs, along with a hin of oil per ephah. When the prince makes a freewill offering to the LORD, whether a burnt offering or a peace offering, the gate facing east must be opened for him. He is to offer his burnt offering or peace of- fering just as he does on the Sabbath day. Then he shall go out, and the gate must be closed after 13 he goes out. a 14 And you shall provide an unblemished year- old lamb as a daily burnt offering to the LORD; You are also you are to offer it every morning. b to provide with it eve" + } + ] + }, + { + "chapterNum": 48, + "verses": [ + { + "verseNum": 9, + "text": ". g 6 their possession, twenty chambers is approximately 87.5 feet or 26.7 meters. The portion was to be approximately 8.3 miles long and 3.3 miles wide (13.3 kilometers long and 5.3 kilometers wide); similarly in verse 5. LXX; Hebrew the city was to be approximately 1.7 miles wide and 8.3 miles long (2.7 kilometers wide and 13.3 kilometers long). The property of Or 9 And My princes will no longer oppress My peo- ple, but will give the rest of the land to the house For this is of Israel according to their tribes. what the Lord GOD says: ‘Enough, O princes of Israel! Cease your violence and oppression, and do what is just and right. Stop dispossessing My Honest Scales (De. 25:13–16 ; Prov. 11:1–3) people, declares the Lord GOD.’ a 10 b You must use honest scales, a just ephah, 11 a just bath. and The ephah and the bath shall be the same quantity so that the bath will contain a tenth of a homer, and the ephah a tenth of a homer; the d 12 homer will be the standard measure for both. c The shekel will consist of twenty gerahs. Twenty shekels plus twenty-five shekels plus fif- Offerings and Feasts teen shekels will equal one mina. 13 e g This is the contribution you are to offer: a sixth f of an ephah from each homer of wheat, and a 14 sixth of an ephah from each homer of barley. The prescribed portion of oil, measured by the bath, is a tenth of a bath from each cor (a cor 15 consists of ten baths or one homer, since ten baths are equivalent to a homer). And one sheep shall be giv" + }, + { + "verseNum": 10, + "text": "10 This will be the holy portion for the priests. It will be 25,000 cubits long on the north side, 10,000 cubits wide on the west side, 10,000 cubits wide on the east side , and 25,000 cubits 11 long on the south side. In the center will be the sanctuary of the LORD. It will be for the conse- crated priests, the descendants of Zadok, who kept My charge and did not go astray as the Levites did when the Israelites went astray. It will be a special portion for them set apart from the land, a most holy portion adjacent to the ter- 13 ritory of the Levites. 12 a Bordering the territory of the priests, the Le- vites shall have an area 25,000 cubits long and 10,000 cubits wide. The whole length will be 14 25,000 cubits, and the width 10,000 cubits. They must not sell or exchange any of it, and they must not transfer this best part of the land, The Common Portion for it is holy to the LORD. 15 b 16 The remaining area, 5,000 cubits wide and 25,000 cubits long, will be for common use by the city, for houses, and for pastureland. The city will c be in the center of it and will have these meas- on the north side, 4,500 urements: 4,500 cubits cubits on the south side, 4,500 cubits on the east 17 side, and 4,500 cubits on the west side. d The pastureland of the city will extend 250 cu- to the north, 250 cubits to the south, 250 bits 18 cubits to the east, and 250 cubits to the west. The remainder of the length bordering the holy portion and running adjacent to it will be 10,000 cubits on t" + } + ] + } + ] + }, + { + "name": "Daniel", + "chapters": [ + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 4, + "text": "through" + }, + { + "verseNum": 5, + "text": "5 The king replied to the astrologers, “My word is final: If you do not tell me the dream and its in- terpretation, you will be cut into pieces and your houses will be reduced to rubble. But if you tell me the dream and its interpretation, you will re- ceive from me gifts and rewards and great honor. 7 So tell me the dream and its interpretation.” 6 “Blessed be the name of God forever and ever, 21 for wisdom and power belong to Him. He changes the times and seasons; He removes kings and establishes them. They answered a second time, “Let the king tell the dream to his servants, and we will give the 8 interpretation.” 22 He gives wisdom to the wise and knowledge to the discerning. He reveals the deep and hidden 9 The king replied, “I know for sure that you are stalling for time because you see that my word is final. If you do not tell me the dream, there is only one decree for you. You have conspired to speak before me false and fraudulent words, hoping the situation will change. Therefore tell me the dream, and I will know that you can give 10 me its interpretation.” 11 The astrologers answered the king, “No one on earth can do what the king requests! No king, however great and powerful, has ever asked an- ything like this of any magician, enchanter, or as- trologer. What the king requests is so difficult that no one can tell it to him except the gods, 12 whose dwelling is not with mortals.” 13 This response made the king so angry and fu- rious that he gave orders to destroy" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 7, + "text": "| 795 without human hands, and it shattered the iron, bronze, clay, silver, and gold, so the great God has told the king what will happen in the future. The dream is true, and its interpretation is trust- Nebuchadnezzar Promotes Daniel worthy.” 46 47 At this, King Nebuchadnezzar fell on his face, paid homage to Daniel, and ordered that an offer- The king ing and incense be presented to him. said to Daniel, “Your God is truly the God of gods and Lord of kings, the Revealer of Mysteries, 48 since you were able to reveal this mystery.” 49 Then the king promoted Daniel and gave him many generous gifts. He made him ruler over the entire province of Babylon and chief administra- And at tor over all the wise men of Babylon. Daniel’s request, the king appointed Shadrach, Meshach, and Abednego to manage the province of Babylon, while Daniel remained in the king’s Nebuchadnezzar’s Golden Statue court. 3 d 2 King Nebuchadnezzar made a golden e statue sixty cubits high and six cubits wide, and he set it up on the plain of Dura in the Then King Nebuchadnez- province of Babylon. zar sent word to assemble the satraps, prefects, governors, advisers, treasurers, judges, magis- trates, and all the other officials of the provinces to attend the dedication of the statue he had 3 set up. So the satraps, prefects, governors, advisers, treasurers, judges, magistrates, and all the rulers of the provinces assembled for the dedication of the statue that King Nebuchadnezzar had set up, 4 and they stood" + }, + { + "verseNum": 8, + "text": "language would fall down and worship the golden statue that King Nebuchadnezzar had Shadrach, Meshach, and Abednego Accused set up. 8 a 9 10 At this time some astrologers came forward saying to and maliciously accused the Jews, King Nebuchadnezzar, “O king, may you live for- You, O king, have issued a decree that ever! everyone who hears the sound of the horn, flute, zither, lyre, harp, pipes, and all kinds of music 11 must fall down and worship the golden statue, and that whoever does not fall down and wor- 12 ship will be thrown into the blazing fiery furnace. But there are some Jews you have appointed to manage the province of Babylon—Shadrach, Meshach, and Abednego—who have ignored you, O king, and have refused to serve your gods 13 or worship the golden statue you have set up.” 15 14 Then Nebuchadnezzar, furious with rage, sum- moned Shadrach, Meshach, and Abednego. So and these men were brought before the king, Nebuchadnezzar said to them, “Shadrach, Me- shach, and Abednego, is it true that you do not serve my gods or worship the golden statue I Now when you hear the sound of have set up? the horn, flute, zither, lyre, harp, pipes, and all kinds of music, if you are ready to fall down and worship the statue I have made, very good. But if you refuse to worship, you will be thrown at once into the blazing fiery furnace. Then what god will 16 be able to deliver you from my hands?” 18 Shadrach, Meshach, and Abednego replied to 17 the king, “O Nebuchadnezzar, we have no need" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 24, + "text": "| 797 His dominion endures from generation to Nebuchadnezzar’s Dream of a Great Tree generation. 4 5 I, Nebuchadnezzar, was at ease in my house and I had a dream, and it flourishing in my palace. 6 frightened me; while I was in my bed, the images So I issued and visions in my mind alarmed me. a decree that all the wise men of Babylon be a 7 brought before me to interpret the dream for me. When the magicians, enchanters, astrologers, and diviners came in, I told them the dream, but 8 they could not interpret it for me. 9 But at last, into my presence came Daniel (whose name is Belteshazzar after the name of my god, and in whom is the spirit of the holy “O Belteshaz- gods). And I told him the dream: zar, chief of the magicians, I know that the spirit of the holy gods is in you and that no mystery baf- fles you. So explain to me the visions I saw in my In these vi- dream, and their interpretation. sions of my mind as I was lying in bed, I saw this come to pass: 10 There was a tree in the midst of the land, 11 and its height was great. The tree grew large and strong; its top reached the sky, and it was visible 12 to the ends of the earth. Its leaves were beautiful, its fruit was abundant, and upon it was food for all. Under it the beasts of the field found shelter, in its branches the birds of the air nested, and from it every creature was fed. 13 b As I lay on my bed, I also saw in the visions of a holy one, coming down 14 my mind a watcher, from heaven. He called out in a loud" + }, + { + "verseNum": 25, + "text": "25 You will be driven away from mankind, and your dwelling will be with the beasts of the field. You will feed on grass like an ox and be drenched with the dew of heaven, and seven times shall pass you by, until you acknowledge that the Most High rules over the kingdom of mankind and 26 gives it to whom He wishes. 27 As for the command to leave the stump of the tree with its roots, your kingdom will be restored to you as soon as you acknowledge that Heaven Therefore, may my advice be pleasing to rules. you, O king. Break away from your sins by doing what is right, and from your iniquities by show- ing mercy to the oppressed. Perhaps there will be The Second Dream Fulfilled an extension of your prosperity.” 28 29 30 All this happened to King Nebuchadnezzar. Twelve months later, as he was walking on the roof of the royal palace of Babylon, the king ex- claimed, “Is this not Babylon the Great, which I myself have built as a royal residence by the might of my power and for the glory of my maj- 31 esty?” 32 While the words were still in the king’s mouth, a voice came from heaven: “It is decreed to you, King Nebuchadnezzar, that the kingdom has de- You will be driven away from parted from you. mankind to live with the beasts of the field, and you will feed on grass like an ox. And seven times will pass you by, until you acknowledge that the Most High rules over the kingdom of mankind 33 and gives it to whom He wishes.” At that moment the sentence against Nebu- chadnezzar was fulfil" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 3, + "text": "| 799 10 a 21 Hearing the outcry of the king and his nobles, the queen entered the banquet hall. “O king, may you live forever!” she said. “Do not let 11 your thoughts terrify you, or your face grow pale. There is a man in your kingdom who has the spirit of the holy gods in him. In the days of your father he was found to have insight, intelligence, and wisdom like that of the gods. from his royal throne, and his glory was taken He was driven away from mankind, from him. and his mind was like that of a beast. He lived with the wild donkeys and ate grass like an ox, and his body was drenched with the dew of heaven until he acknowledged that the Most High God rules over the kingdom of mankind, 22 setting over it whom He wishes. b Your father, King Nebuchadnezzar, appointed him chief of the magicians, enchanters, astrolo- 12 gers, and diviners. Your own father, the king, did this because Daniel, the one he named Belteshazzar, was found to have an extraordi- nary spirit, as well as knowledge, understanding, and the ability to interpret dreams, explain riddles, and solve difficult problems. Summon Daniel, therefore, and he will give you the inter- Daniel Interprets the Handwriting pretation.” 13 14 So Daniel was brought before the king, who asked him, “Are you Daniel, one of the exiles my father the king brought from Judah? I have heard that the spirit of the gods is in you, and that you have insight, intelligence, and extraordinary 15 wisdom. 16 Now the wise men and enchanters wer" + }, + { + "verseNum": 4, + "text": "4 16 Thus the administrators and satraps sought a charge against Daniel concerning the kingdom, but they could find no charge or corruption, be- cause he was trustworthy, and no negligence or Finally these men corruption was found in him. said, “We will never find any charge against this Daniel unless we find something against him 6 concerning the law of his God.” 5 7 So the administrators and satraps went to- gether to the king and said, “O King Darius, may All the royal administrators, you live forever! prefects, satraps, advisers, and governors have agreed that the king should establish an ordi- nance and enforce a decree that for thirty days anyone who petitions any god or man except 8 you, O king, will be thrown into the den of lions. Therefore, O king, establish the decree and sign the document so that it cannot be changed—in accordance with the law of the Medes and Per- 9 sians, which cannot be repealed.” Therefore King Darius signed the written Daniel in the Lions’ Den decree. 10 11 Now when Daniel learned that the document had been signed, he went into his house, where the windows of his upper room opened toward Jerusalem, and three times a day he got down on his knees, prayed, and gave thanks to his God, Then these men just as he had done before. went as a group and found Daniel petitioning and imploring his God. So they approached the king and asked about his royal decree: “Did you not sign a decree that for thirty days any man who petitions any god or man except y" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–8) And the dragon stood on the shore of the sea. a 13 Then I saw a beast with ten horns and seven heads rising out of the sea. There 2 were ten royal crowns on its horns and blasphe- The beast I saw was mous names on its heads. like a leopard, with the feet of a bear and the mouth of a lion. And the dragon gave the beast 3 his power and his throne and great authority. 4 One of the heads of the beast appeared to have been mortally wounded. But the mortal wound was healed, and the whole world marveled and They worshiped the dragon followed the beast. who had given authority to the beast, and they worshiped the beast, saying, “Who is like the And he stood on the sand of the sea. a 17 beast, and who can wage war against it?”" + }, + { + "verseNum": 13, + "text": "–14. Or Or BYZ and TR do not include ; see" + }, + { + "verseNum": 20, + "text": "| 801 A river of fire was flowing, coming out from His presence. Thousands upon thousands attended Him, and myriads upon myriads stood before Him. The court was convened, 11 and the books were opened. Then I kept watching because of the arrogant words the horn was speaking. As I continued to watch, the beast was slain, and its body was As destroyed and thrown into the blazing fire. for the rest of the beasts, their dominion was removed, but they were granted an extension of Daniel’s Vision of the Son of Man life for a season and a time. 13 12 In my vision in the night I continued to watch, b c and I saw One like the Son of Man 14 coming with the clouds of heaven. He approached the Ancient of Days and was led into His presence. And He was given dominion, glory, and kingship, that the people of every nation and language should serve Him. His dominion is an everlasting dominion that will not pass away, and His kingdom is one Daniel’s Visions Interpreted that will never be destroyed. 15 16 I, Daniel, was grieved in my spirit, and the vi- sions in my mind alarmed me. I approached one of those who were standing there, and I asked him the true meaning of all this. 17 So he told me the interpretation of these things: ‘These four great beasts are four kings who will arise from the earth. But the saints of the Most High will receive the kingdom and possess 19 it forever—yes, forever and ever.’ 18 20 Then I wanted to know the true meaning of the fourth beast, which was different from al" + }, + { + "verseNum": 21, + "text": "21 As I watched, this horn was waging war 22 against the saints and prevailing against them, until the Ancient of Days arrived and pro- nounced judgment in favor of the saints of the Most High, and the time came for them to possess 23 the kingdom. 24 This is what he said: ‘The fourth beast is a fourth kingdom that will appear on the earth, dif- ferent from all the other kingdoms, and it will devour the whole earth, trample it down, and crush it. And the ten horns are ten kings who will rise from this kingdom. After them another king, different from the earlier ones, will rise and subdue three kings. He will speak out against the Most High and oppress the saints of the Most High, intending to change the appointed times and laws; and the saints will be given into his 26 hand for a time, and times, and half a time. 25 27 But the court will convene, and his dominion will be taken away and completely destroyed forever. Then the sovereignty, dominion, and greatness of the kingdoms under all of heaven will be given to the people, the saints of the Most High. His kingdom will be an everlasting king- 28 dom, and all rulers will serve and obey Him.’ Thus ends the matter. As for me, Daniel, my thoughts troubled me greatly, and my face Daniel’s Vision of the Ram and the Goat turned pale. But I kept the matter to myself.” 8 2 In the third year of the reign of King Belshazzar, a vision appeared to me, Daniel, subsequent to the one that had appeared to me And in the vision I saw myself in t" + }, + { + "verseNum": 28, + "text": "is in Aramaic. Hebrew That is, the Babylonians Or ; also in 794 |" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 18, + "text": "| 803 Judah, the people of Jerusalem, and all Israel near and far, in all the countries to which You have 8 driven us because of our unfaithfulness to You. O LORD, we are covered with shame—our kings, our leaders, and our fathers—because we 9 have sinned against You. 10 To the Lord our God belong compassion and forgiveness, even though we have rebelled and have not obeyed the voice of against Him the LORD our God to walk in His laws, which He 11 set before us through His servants the prophets. 12 All Israel has transgressed Your law and turned away, refusing to obey Your voice; so the oath and the curse written in the Law of Moses the servant of God has been poured out on us, You have because we have sinned against You. carried out the words spoken against us and against our rulers by bringing upon us a great disaster. For under all of heaven, nothing has ever been done like what has been done to 13 Jerusalem. 14 Just as it is written in the Law of Moses, all this disaster has come upon us, yet we have not sought the favor of the LORD our God by turning from our iniquities and giving attention to Your Therefore the LORD has kept the calam- truth. ity in store and brought it upon us. For the LORD our God is righteous in all He does; yet we have 15 not obeyed His voice. 16 Now, O Lord our God, who brought Your peo- ple out of the land of Egypt with a mighty hand, and who made for Yourself a name renowned to this day, we have sinned; we have acted wick- O Lord, in keeping with a" + }, + { + "verseNum": 19, + "text": "19 O Lord, listen! O Lord, forgive! O Lord, hear and act! For Your sake, O my God, do not delay, because Your city and Your people bear Your Gabriel’s Prophecy of the Seventy Weeks name.” 20 22 21 While I was speaking, praying, confessing my sin and that of my people Israel, and presenting my petition before the LORD my God concerning while I was still praying, His holy mountain— Gabriel, the man I had seen in the earlier vision, came to me in swift flight about the time of the He instructed me and spoke evening sacrifice. with me, saying: “O Daniel, I have come now to At the be- give you insight and understanding. ginning of your petitions, an answer went out, and I have come to tell you, for you are highly precious. So consider the message and under- a 24 stand the vision: 23 Seventy weeks are decreed for your people and your holy city to stop their transgression, to put an end to sin, to make atonement for iniquity, to bring in everlasting righteousness, to seal up vision and prophecy, and to anoint the 25 Most Holy Place. b c Know and understand this: From the issuance of the decree to restore and rebuild Jerusalem until the Messiah, the Prince, there will be seven weeks and sixty-two weeks. It will be rebuilt 26 with streets and a trench, but in times of distress. d Then after the sixty-two weeks will be cut off and will have nothing. the Messiah e 27 Then the people of the prince who is to come will destroy the city and the sanctuary. The end will come like a flood, and" + }, + { + "verseNum": 27, + "text": "," + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 19, + "text": "| 805 e she will be given up, along with her royal escort 7 and the one who supported her. and her father f 8 But one from her family line will rise up in his place, come against the army of the king of the North, and enter his fortress, fighting and pre- He will take even their gods captive to vailing. Egypt, with their metal images and their precious vessels of silver and gold. For some years he will stay away from the king of the North, who will invade the realm of the king of the South and 10 then return to his own land. 9 But his sons will stir up strife and assemble a great army, which will advance forcefully, sweeping through like a flood, and will again carry the battle as far as his fortress. In a rage, the king of the South will march out to fight the king of the North, who will raise a large army, but 12 it will be delivered into the hand of his enemy. 11 13 When the army is carried off, the king of the South will be proud in heart and will cast down tens of thousands, but he will not triumph. For g the king of the North will raise another army, larger than the first, and after some years he will advance with a great army and many sup- 14 plies. In those times many will rise up against the king of the South. Violent ones among your own people will exalt themselves in fulfillment of the 15 vision, but they will fail. 16 Then the king of the North will come, build up a siege ramp, and capture a fortified city. The forces of the South will not stand; even their best t" + }, + { + "verseNum": 20, + "text": "20 35 In his place one will arise who will send out a tax collector for the glory of the kingdom; but within a few days he will be destroyed, though 21 not in anger or in battle. 22 In his place a despicable person will arise; royal honors will not be given to him, but he will come in a time of peace and seize the kingdom by Then a flood of forces will be swept intrigue. away before him and destroyed, along with a 23 prince of the covenant. 24 After an alliance is made with him, he will act deceitfully; for he will rise to power with only a In a time of peace, he will invade few people. the richest provinces and do what his fathers and forefathers never did. He will lavish plunder, loot, and wealth on his followers, and he will plot 25 against the strongholds—but only for a time. 26 And with a large army he will stir up his power and his courage against the king of the South, who will mobilize a very large and powerful army but will not withstand the plots devised Those who eat from his provi- against him. sions will seek to destroy him; his army will be 27 swept away, and many will fall slain. 28 And the two kings, with their hearts bent on evil, will speak lies at the same table, but to no avail, for still the end will come at the appointed The king of the North will return to his time. land with great wealth, but his heart will be set against the holy covenant; so he will do damage 29 and return to his own land. a Ships of Kittim At the appointed time he will invade the So" + }, + { + "verseNum": 31, + "text": ", and" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "–13) 1 a This is the revelation of Jesus Christ, which God gave Him to show His servants what must soon come to pass. He made it known by who tes- sending His angel to His servant John, tifies to everything he saw. This is the word of 3 God and the testimony of Jesus Christ. 2 Blessed is the one who reads aloud the words of this prophecy, and blessed are those who hear and obey what is written in it, because the time John Greets the Seven Churches is near. 4 John, b To the seven churches in the province of Asia: c 5 Grace and peace to you from Him who is and was before and is to come, and from the seven spirits and from Jesus Christ, the faithful His throne, witness, the firstborn from the dead, and the ruler of the kings of the earth. 6 To Him who loves us and has released us from who has made us to be a our sins by His blood, kingdom, priests to His God and Father—to Him 7 be the glory and power forever and ever! Amen. Behold, He is coming with the clouds, and every eye will see Him—even those who pierced Him. And all the tribes of the earth will mourn because 8 of Him. So shall it be! Amen. d “I am the Alpha and the Omega, ” says the Lord God, who is and was and is to come—the John’s Vision on Patmos Almighty. 9 seven churches: to Ephesus, Smyrna, Pergamum, 12 Thyatira, Sardis, Philadelphia, and Laodicea.” f 13 14 Then I turned to see the voice that was speak- ing with me. And having turned, I saw seven golden lampstands, and among the lampstands was One like the Son of Ma" + }, + { + "verseNum": 2, + "text": ". 29 Do not be amazed at this, for the hour is com- ing when all who are in their graves will hear His voice and come out—those who have done a good to the resurrection of life, and those who 30 have done evil to the resurrection of judgment. I can do nothing by Myself; I judge only as I hear. And My judgment is just, because I do not seek My own will, but the will of Him who sent Testimonies about Jesus Me. 31 32 If I testify about Myself, My testimony is not There is another who testifies about Me, valid. 33 and I know that His testimony about Me is valid. 34 You have sent to John, and he has testified to Even though I do not accept human the truth. testimony, I say these things so that you may be 35 saved. 37 36 John was a lamp that burned and gave light, and you were willing for a season to bask in his light. But I have testimony more substantial than that of John. For the works that the Father has given Me to accomplish—the very works I am doing—testify about Me that the Father has And the Father who sent Me has Him- sent Me. self testified about Me. You have never heard His nor does His word voice nor seen His form, abide in you, because you do not believe the One The Witness of Scripture" + }, + { + "verseNum": 3, + "text": ". BYZ and TR ; see" + }, + { + "verseNum": 11, + "text": ". 16 17" + }, + { + "verseNum": 13, + "text": "| 807 be for a time, and times, and half a time. When the power of the holy people has finally been 8 shattered, all these things will be completed.” I heard, but I did not understand. So I asked, “My lord, what will be the outcome of these 9 things?” 10 “Go on your way, Daniel,” he replied, “for the words are closed up and sealed until the time of the end. Many will be purified, made spotless, and refined, but the wicked will continue to act wickedly. None of the wicked will understand, 11 but the wise will understand. And from the time the daily sacrifice is abol- ished and the abomination of desolation set up, there will be 1,290 days. Blessed is he who 13 waits and reaches the end of the 1,335 days. 12 But as for you, go on your way until the end. You will rest, and then you will arise to your inheritance at the end of the days.” a 2 b 3 expanse firmament c 3 See" + } + ] + } + ] + }, + { + "name": "Hosea", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 10, + "text": "" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 23, + "text": "" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–5) it.’ 6 “Get up! Get up! Flee from the land of the north,” declares the LORD, “for I have scattered you like 7 the four winds of heaven,” declares the LORD. “Get up, O Zion! Escape, you who dwell with the 8 Daughter of Babylon!” a b For this is what the LORD of Hosts says: “After against the nations that His Glory has sent Me 9 have plundered you—for whoever touches you I will surely touches the apple wave My hand over them, so that they will be- come plunder for their own servants. Then you 10 will know that the LORD of Hosts has sent Me.” of His eye— 11 “Shout for joy and be glad, O Daughter of Zion, for I am coming to dwell among you,” declares “On that day many nations will join the LORD. themselves to the LORD, and they will become My people. I will dwell among you, and you will 12 know that the LORD of Hosts has sent Me to you. And the LORD will take possession of Judah as 13 His portion in the Holy Land, and He will once Be silent before the again choose Jerusalem. LORD, all people, for He has roused Himself from The Vision of Joshua the High Priest His holy dwelling.” 3 c d Then the angel showed me Joshua the high of the priest standing before the angel standing at his right hand to LORD, with Satan 2 accuse him. And the LORD said to Satan: “The LORD rebukes a 8 you, Satan! Indeed, the LORD, who has chosen After the Glorious One has sent Me e Jerusalem, rebukes you! Is not this man a fire- 3 brand snatched from the fire?” 4 Now Joshua was dressed in filthy garments" + }, + { + "verseNum": 2, + "text": "" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "| 809 in the sight of her lovers, and no one will deliver her 11 out of My hands. I will put an end to all her exultation: 12 her feasts, New Moons, and Sabbaths— all her appointed feasts. I will destroy her vines and fig trees, which she thinks are the wages paid by her lovers. So I will make them into a thicket, 13 and the beasts of the field will devour them. I will punish her for the days of the Baals when she burned incense to them, when she adorned herself with rings and jewelry, and went after her lovers. declares the LORD. But Me she forgot,” God’s Mercy to Israel 14 “Therefore, behold, I will allure her and lead her to the wilderness, and speak to her tenderly. a 15 There I will give back her vineyards and make the Valley of Achor into a gateway of hope. There she will respond as she did 16 in the days of her youth, as in the day she came up out of Egypt. In that day,” declares the LORD, b c “you will call Me ‘my Husband,’ 17 and no longer call Me ‘my Master.’ For I will remove from her lips the names of 18 the Baals; no longer will their names be invoked. On that day I will make a covenant for them with the beasts of the field and the birds of the air and the creatures that crawl on the ground. And I will abolish bow and sword I will betroth you in righteousness and d 20 justice, in loving devotion and compassion. 21 And I will betroth you in faithfulness, and you will know the LORD.” “On that day I will respond—” declares the LORD— 22 “I will respond to the heavens" + }, + { + "verseNum": 2, + "text": "2 Cursing and lying, murder and stealing, and adultery are rampant; 3 one act of bloodshed follows another. Therefore the land mourns, and all who dwell in it will waste away with the beasts of the field and the birds 4 of the air; even the fish of the sea disappear. But let no man contend; let no man offer reproof; a for your people are like those who contend with a priest. 5 You will stumble by day, and the prophet will stumble with you by 6 night; so I will destroy your mother— My people are destroyed for lack of knowledge. Because you have rejected knowledge, I will also reject you as My priests. Since you have forgotten the law of your God, 7 I will also forget your children. The more they multiplied, b the more they sinned against Me; they exchanged their Glory 8 for a thing of disgrace. c 9 They feed on the sins of My people and set their hearts on iniquity. And it shall be like people, like priest. 10 I will punish both of them for their ways and repay them for their deeds. They will eat but not be satisfied; they will be promiscuous but not multiply. 11 For they have abandoned the LORD to give themselves to promiscuity, wine, and new wine, which take away understanding. 12 My people consult their wooden idols, and their divining rods inform them. For a spirit of prostitution leads them astray and they have played the harlot against 13 their God. They sacrifice on the mountaintops and burn offerings on the hills, under oak, poplar, and terebinth, b 7 for My case is ag" + }, + { + "verseNum": 15, + "text": ". 21 “I hate, I despise your feasts! 22 I cannot stand the stench of your solemn assemblies. Even though you offer Me burnt offerings and grain offerings, I will not accept them; 23 for your peace offerings of fattened cattle I will have no regard. 24 Take away from Me the noise of your songs! I will not listen to the music of your harps. But let justice roll on like a river, 25 and righteousness like an ever-flowing stream. Did you bring Me sacrifices and offerings 26 forty years in the wilderness, O house of Israel? a You have taken along Sakkuth your king 27 and Kaiwan your star god, the idols you made for yourselves. Therefore I will send you into exile beyond b Damascus,” says the LORD, whose name is the God of Woe to Those at Ease in Zion" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 6, + "text": "BYZ and TR ; see" + }, + { + "verseNum": 11, + "text": "| 811 Israel’s arrogance testifies against them; Israel and Ephraim stumble in their 6 iniquity; even Judah stumbles with them. They go with their flocks and herds to seek the LORD, but they do not find Him; 7 He has withdrawn Himself from them. They have been unfaithful to the LORD; a for they have borne illegitimate children. Now the New Moon 8 along with their land. will devour them Blow the ram’s horn in Gibeah, the trumpet in Ramah; raise the battle cry in Beth-aven: b 9 Lead on, O Benjamin! Ephraim will be laid waste on the day of rebuke. Among the tribes of Israel 10 I proclaim what is certain. The princes of Judah c are like those who move boundary stones; I will pour out My fury 11 upon them like water. Ephraim is oppressed, crushed in judgment, for he is determined to follow worthless d 12 idols. So I am like a moth to Ephraim, 13 and like decay to the house of Judah. When Ephraim saw his sickness and Judah his wound, e then Ephraim turned to Assyria and sent to the great king. 14 But he cannot cure you or heal your wound. For I am like a lion to Ephraim and like a young lion to the house of Judah. I, even I, will tear them to pieces and then go away. 15 I will carry them off where no one can rescue them. Then I will return to My place until they admit their guilt and seek My face; 6 Come, let us return to the LORD. For He has torn us to pieces, but He will heal us; He has wounded us, 2 but He will bind up our wounds. After two days He will revive us; on the third d" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Ephraim’s Iniquity 13 7 a When I heal Israel, the iniquity of Ephraim as well as the crimes of Samaria. will be exposed, For they practice deceit and thieves break in; 2 bandits raid in the streets. But they fail to consider in their hearts that I remember all their evil. Now their deeds are all around them; 3 they are before My face. 4 They delight the king with their evil, and the princes with their lies. They are all adulterers, like an oven heated by a baker who needs not stoke the fire 5 from the kneading to the rising of the dough. The princes are inflamed with wine on the day of our king; so he joins hands 6 with those who mock him. b For they prepare their heart like an oven while they lie in wait; all night their anger smolders; 7 Woe to them, for they have strayed from Me! Destruction to them, for they have rebelled against Me! 14 Though I would redeem them, they speak lies against Me. They do not cry out to Me from their hearts d when they wail upon their beds. They slash themselves for grain and 15 new wine, but turn away from Me. Although I trained and strengthened 16 their arms, they plot evil against Me. They turn, but not to the Most High; they are like a faulty bow. Their leaders will fall by the sword for the cursing of their tongue; for this they will be ridiculed Israel Will Reap the Whirlwind in the land of Egypt. 8 Put the ram’s horn to your lips! An eagle looms over the house of the LORD, because the people have transgressed 2 My covenant in the morning" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 15, + "text": "| 813 Israel is swallowed up! 9 Now they are among the nations like a worthless vessel. 10 a For they have gone up to Assyria like a wild donkey on its own. Ephraim has hired lovers. Though they hire allies among the nations, I will now round them up, and they will begin to diminish under the oppression of the king of princes. 11 For even if they flee destruction, Egypt will gather them and Memphis will bury them. Their precious silver will be taken over 7 by thistles, and thorns will overrun their tents. The days of punishment have come; the days of retribution have arrived— let Israel know it. The prophet is called a fool, and the inspired man insane, 12 Though Ephraim multiplied the altars for sin, because of the greatness 8 they became his altars for sinning. Though I wrote for them the great things of of your iniquity and hostility. The prophet is Ephraim’s watchman, c 13 My law, they regarded them as something strange. Though they offer sacrifices as gifts to Me, and though they eat the meat, the LORD does not accept them. Now He will remember their iniquity and 14 punish their sins: They will return to Egypt. Israel has forgotten his Maker and built palaces; Judah has multiplied its fortified cities. But I will send fire upon their cities, and it will consume their citadels. Israel’s Punishment 9 Do not rejoice, O Israel, with exultation like the nations, for you have played the harlot against your God; 2 you have made love for hire on every threshing floor. The thresh" + }, + { + "verseNum": 16, + "text": "16 Ephraim is struck down; their root is withered; they cannot bear fruit. Even if they bear children, 17 I will slay the darlings of their wombs. My God will reject them 9 Since the days of Gibeah you have sinned, O Israel, and there you have remained. g 10 Did not the battle in Gibeah overtake the sons of iniquity? I will chasten them when I please; because they have not obeyed Him; nations will be gathered against them and they shall be wanderers Retribution for Israel’s Sin among the nations. 11 to put them in bondage for their double transgression. 10 Israel was a luxuriant vine, yielding fruit for himself. The more his fruit increased, the more he increased the altars. The better his land produced, 2 the better he made the sacred pillars. Their hearts are devious; now they must bear their guilt. The LORD will break down their altars 3 and demolish their sacred pillars. Surely now they will say, “We have no king, 4 for we do not revere the LORD. What can a king do for us?” They speak mere words; Ephraim is a well-trained heifer that loves to thresh; but I will place a yoke on her fair neck. 12 I will harness Ephraim, Judah will plow, and Jacob will break the hard ground. Sow for yourselves righteousness and reap the fruit of loving devotion; break up your unplowed ground. For it is time to seek the LORD 13 until He comes and sends righteousness upon you like rain. You have plowed wickedness and reaped injustice; you have eaten the fruit of lies. 14 Because you have trust" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 8, + "text": "17 Now Pilate was obligated to release to the people one prisoner at the feast , rendered in some translations as See" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "–7) another route. 13 When the Magi had gone, an angel of the Lord appeared to Joseph in a dream. “Get up!” he said. “Take the Child and His mother and flee to Egypt. Stay there until I tell you, for Herod is going to a 25 search for the Child to kill Him.” he did not know her as it rose b 2 c 6 f 3 Literally 31:15" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 2, + "text": "| 815 with ropes of love; I lifted the yoke from their necks 5 and bent down to feed them. Will they not return to the land of Egypt 6 and be ruled by Assyria because they refused to repent? A sword will flash through their cities; 7 it will destroy the bars of their gates and consume them in their own plans. My people are bent on turning from Me. Though they call to the Most High, He will by no means exalt them. God’s Love for Israel 8 How could I give you up, O Ephraim? How could I surrender you, O Israel? How could I make you like Admah? How could I treat you like Zeboiim? My heart is turned within Me; 9 My compassion is stirred! prevailed; he wept and sought His favor; e he found Him at Bethel 5 and spoke with Him there — the LORD God of Hosts, 6 the LORD is His name of renown. But you must return to your God; maintain love and justice, and always wait on your God. 7 A merchant loves to defraud 8 with dishonest scales in his hands. And Ephraim boasts: “How rich I have become! I have found wealth for myself. In all my labors, they can find in me 9 no iniquity that is sinful.” But I am the LORD your God ever since the land of Egypt. I will again make you dwell in tents, 10 as in the days of the appointed feast. I will not execute the full fury of My anger; I spoke through the prophets I will not destroy Ephraim again. For I am God and not man— 10 the Holy One among you— and I will not come in wrath. They will walk after the LORD; He will roar like a lion. When He roars, 11" + }, + { + "verseNum": 3, + "text": "3 Therefore they will be like the morning mist, His fountain will fail, like the early dew that vanishes, like chaff blown from a threshing floor, like smoke through an open window. 4 Yet I am the LORD your God ever since the land of Egypt; 5 you know no God but Me, for there is no Savior besides Me. 6 I knew you in the wilderness, in the land of drought. When they had pasture, they became satisfied; when they were satisfied, 7 8 their hearts became proud, and as a result they forgot Me. So like a lion I will pounce on them; like a leopard I will lurk by the path. Like a bear robbed of her cubs I will attack them, and I will tear open their chests. There I will devour them like a lion, Death and Resurrection (1 Cor. 15:50–58) 9 like a wild beast tearing them apart. You are destroyed, O Israel, 10 because you are against Me— a against your helper. Where is your king now to save you in all your cities, and the rulers to whom you said, “Give me a king and princes”? So in My anger I gave you a king, 11 12 14 13 The iniquity of Ephraim is bound up; his sin is stored up. Labor pains come upon him, but he is an unwise son. When the time arrives, he fails to present himself at the opening 8 of the womb. b I will ransom them from the power of Sheol; I will redeem them from Death. c Where, O Death, are your plagues? Where, O Sheol, is your sting? Judgment on Samaria Compassion is hidden from My eyes. 15 Although he flourishes among his brothers, an east wind will come— and his spring w" + }, + { + "verseNum": 9, + "text": "–14) 49 50 Now I declare to you, brothers, that flesh and blood cannot inherit the kingdom of God, nor 51 does the perishable inherit the imperishable. 52 Listen, I tell you a mystery: We will not all in an in- sleep, but we will all be changed— stant, in the twinkling of an eye, at the last trum- pet. For the trumpet will sound, the dead will be 53 raised imperishable, and we will be changed. with the imperishable, and the mortal with immortality. a 45 e 55 For the perishable must be clothed clothe itself b 53 c 54 b 1 Corinthians 16:12 | 1033 54 c When the perishable has been clothed with the imperishable and the mortal with immortality, then the saying that is written will come to pass: 55 “Death has been swallowed up in victory.” d e “Where, O Death, is your victory? Where, O Death, is your sting?” 56 57 The sting of death is sin, and the power of sin But thanks be to God, who gives us is the law. 58 the victory through our Lord Jesus Christ! Therefore, my beloved brothers, be steadfast and immovable. Always excel in the work of the Lord, because you know that your labor in the The Collection for the Saints Lord is not in vain. (2 Corinthians 9:1–15) 16 3 2 Now about the collection for the saints, you are to do as I directed the churches On the first day of every week, each of Galatia: of you should set aside a portion of his income, saving it up, so that when I come no collections Then, on my arrival, I will send will be needed. 4 letters with those you recommend to carr" + }, + { + "verseNum": 14, + "text": "(see also LXX); BYZ and TR Feast of Weeks Shavuot, the late spring feast of pilgrimage to Jerusalem; it is also known as (see" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "–3) 1 In the eighth month of the second year of Da- rius, the word of the LORD came to the prophet Zechariah son of Berechiah, the son of 2 Iddo, saying: 3 “The LORD was very angry with your fathers. So tell the people that this is what the LORD of Hosts says: ‘Return to Me, declares the LORD of Hosts, and I will return to you, says the LORD 4 of Hosts.’ Do not be like your fathers, to whom the former prophets proclaimed that this is what the LORD of Hosts says: ‘Turn now from your evil ways and deeds.’ But they did not listen or pay attention to Me, de- 5 clares the LORD. 6 Where are your fathers now? And the prophets, But did not My words and do they live forever? My statutes, which I commanded My servants the prophets, overtake your fathers? They repented and said, ‘Just as the LORD of Hosts purposed to do to us according to our ways and deeds, so He The Vision of the Horses has done to us.’ 7 ” a On the twenty-fourth day of the eleventh month, the month of Shebat, in the second year of Darius, the word of the LORD came to the prophet Zechariah son of Berechiah, the son of 8 Iddo. I looked out into the night and saw a man riding on a red horse. He was standing among the myr- tle trees in the hollow, and behind him were red, 9 sorrel, and white horses. “What are these, my lord?” I asked. And the angel who was speaking with me replied, 10 “I will show you what they are.” Then the man standing among the myrtle trees explained, “They are the ones the LORD has sent a 7 Shebat t" + } + ] + } + ] + }, + { + "name": "Joel", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 13, + "text": "–20 ;" + }, + { + "verseNum": 20, + "text": "20 Even the beasts of the field pant for You, Indeed, His camp is very large, The Army of Locusts" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 10, + "text": ". Or 888 |" + }, + { + "verseNum": 28, + "text": "–32) 14 Then Peter stood up with the Eleven, lifted up his voice, and addressed the crowd: “Men of Ju- dea and all who dwell in Jerusalem, let this be 15 known to you, and listen carefully to my words. These men are not drunk, as you suppose. It is No, this is what only the third hour of the day! 17 was spoken by the prophet Joel: 16 d ‘In the last days, God says, I will pour out My Spirit on all people. Your sons and daughters will prophesy, your young men will see visions, your old men will dream dreams. a 1 the Feast of Weeks" + }, + { + "verseNum": 32, + "text": "good news of good things See" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 8, + "text": "| 819 The northern army I will drive away from you, a banishing it to a barren and desolate land, b its front ranks into the Eastern Sea, and its rear guard into the Western Sea. And its stench will rise; its foul odor will ascend. 21 For He has done great things. 22 Do not be afraid, O land; rejoice and be glad, for the LORD has done great things. Do not be afraid, O beasts of the field, for the open pastures have turned green, c 23 the trees bear their fruit, and the fig tree and vine yield their best. Be glad, O children of Zion, and rejoice in the LORD your God, for He has given you the autumn rains for your vindication. He sends you showers, 24 both autumn and spring rains, as before. The threshing floors will be full of grain, 25 and the vats will overflow with new wine and oil. I will repay you for the years eaten by locusts— the swarming locust, the young locust, d the destroying locust, and the devouring 26 locust — My great army that I sent against you. You will have plenty to eat, until you are satisfied. You will praise the name of the LORD your God, who has worked wonders for you. 27 My people will never again be put to shame. Then you will know that I am present in Israel and that I am the LORD your God, and there is no other. My people will never again I Will Pour Out My Spirit" + }, + { + "verseNum": 9, + "text": "9 Proclaim this among the nations: But the LORD will be a refuge for His “Prepare for war; rouse the mighty men; let all the men of war 10 advance and attack! Beat your plowshares into swords 11 and your pruning hooks into spears. Let the weak say, ‘I am strong!’ Come quickly, all you surrounding nations, and gather yourselves. Bring down Your mighty ones, O LORD. 12 Let the nations be roused and advance to the Valley of Jehoshaphat, 13 for there I will sit down to judge all the nations on every side. a Swing the sickle, for the harvest is ripe. Come, trample the grapes, for the winepress is full; the wine vats overflow because their wickedness is great. 14 Multitudes, multitudes 15 in the valley of decision! For the Day of the LORD is near in the valley of decision. 16 The sun and moon will grow dark, and the stars will no longer shine. The LORD will roar from Zion and raise His voice from Jerusalem; heaven and earth will tremble. people, a stronghold for the people Blessings for God’s People of Israel. 17 Then you will know that I am the LORD your God, who dwells in Zion, My holy mountain. Jerusalem will be holy, 18 never again to be overrun by foreigners. And in that day the mountains will drip with sweet wine, and the hills will flow with milk. All the streams of Judah will run with water, and a spring will flow from the house b 19 of the LORD to water the Valley of Acacias. Egypt will become desolate, and Edom a desert wasteland, because of the violence done to the peopl" + }, + { + "verseNum": 13, + "text": ", including LXX. BYZ and TR ; GOC Literally 16 34" + } + ] + } + ] + }, + { + "name": "Amos", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–15) the LORD.” 14 This is what the LORD says: “As for all My evil neighbors who attack the inheritance that I be- queathed to My people Israel, I am about to uproot them from their land, and I will uproot the house of Judah from among them. But after I have uprooted them, I will once again have com- passion on them and return each one to his 16 inheritance and to his land. 15 And if they will diligently learn the ways of My people and swear by My name, saying, ‘As surely as the LORD lives’—just as they once taught My people to swear by Baal—then they will be es- tablished among My people. But if they will not obey, then I will uproot that nation; I will uproot The Linen Loincloth it and destroy it, declares the LORD.” 17 13 This is what the LORD said to me: “Go and buy yourself a linen loincloth and put it around your waist, but do not let it touch 2 water.” So I bought a loincloth in accordance with the 3 word of the LORD, and I put it around my waist. 4 Then the word of the LORD came to me a second “Take the loincloth that you bought and and hide time: are wearing, and go at once to Perath 5 it there in a crevice of the rocks.” c So I went and hid it at Perath, as the LORD had 6 commanded me. 7 Many days later the LORD said to me, “Arise, go to Perath, and get the loincloth that I commanded you to hide there.” So I went to Perath and dug up the loincloth, and I took it from the place where I had hidden it. But now it was ruined—of no use at all. to the Euphrates c 4 like a" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 2, + "text": "2 12 So I will send fire against Moab to consume the citadels of Kerioth. Moab will die in tumult, 3 amid war cries and the sound of the ram’s horn. I will cut off the ruler of Moab and kill all the officials with him,” says the LORD. 4 This is what the LORD says: “For three transgressions of Judah, even four, I will not revoke My judgment, because they reject the Law of the LORD and fail to keep His statutes; they are led astray by the lies 5 in which their fathers walked. 6 So I will send fire upon Judah to consume the citadels of Jerusalem.” This is what the LORD says: “For three transgressions of Israel, even four, I will not revoke My judgment, because they sell the righteous for silver 7 and the needy for a pair of sandals. They trample on the heads of the poor as on the dust of the earth; they push the needy out of their way. A man and his father 8 have relations with the same girl and so profane My holy name. They lie down beside every altar on garments taken in pledge. a b And in the house of their God, 9 they drink wine obtained through fines. Yet it was I who destroyed the Amorite before them, though his height was like that of the cedars, and he was as strong as the oaks. 10 Yet I destroyed his fruit above and his roots below. And I brought you up from the land of Egypt and led you forty years in the wilderness, 11 that you might take possession of the land of the Amorite. I raised up prophets from your sons and Nazirites from your young men. Is this not true, dec" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 12, + "text": "| 823 d Bring your sacrifices every morning, 5 your tithes every three days. Offer leavened bread as a thank offering, and loudly proclaim your freewill offerings. For that is what you children of Israel love declares the Lord GOD. to do,” 6 e “I afflicted all your cities with cleanness of This is what the LORD says: teeth “As the shepherd snatches from the mouth of the lion two legs or a piece of an ear, so the Israelites dwelling in Samaria will be rescued b 13 having just the corner of a bed or the cushion of a couch. 14 Hear and testify against the house of Jacob, declares the Lord GOD, the God of Hosts. On the day I punish Israel for their transgressions, I will visit destruction on the altars of Bethel; 15 the horns of the altar will be cut off, and they will fall to the ground. I will tear down the winter house along with the summer house; the houses of ivory will also perish, declares the LORD. and the great houses will come to an end,” Punishment Brings No Repentance 4 Hear this word, you cows of Bashan on Mount Samaria, you women who oppress the poor and crush the needy, who say to your husbands, “Bring us more to drink.” 2 The Lord GOD has sworn by His holiness: “Behold, the days are coming 3 when you will be taken away with hooks, and your posterity with fishhooks. You will go out through broken walls, each one straight ahead of her, and you will be cast out toward Harmon, declares the LORD. c ” 4 and all your towns with lack of bread, yet you did not return to Me" + }, + { + "verseNum": 13, + "text": "13 10 For behold, He who forms the mountains, There are those who hate the one who who creates the wind and reveals His thoughts to man, who turns the dawn to darkness reproves in the gate 11 and despise him who speaks with integrity. A Lamentation against Israel and strides on the heights of the earth— the LORD, the God of Hosts, is His name.” Therefore, because you trample on the poor and exact from him a tax of grain, 5 2 Hear this word, O house of Israel, this lamentation I take up against you: “Fallen is Virgin Israel, never to rise again. 3 She lies abandoned on her land, with no one to raise her up.” This is what the Lord GOD says: “The city that marches out a thousand strong will have but a hundred left, and the one that marches out a hundred strong will have but ten left in the house of A Call to Repentance" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 4, + "text": "–15 ;" + }, + { + "verseNum": 16, + "text": "–27) 39 40 But our fathers refused to obey him. Instead, they rejected him and in their hearts turned back They said to Aaron, ‘Make us gods to Egypt. who will go before us! As for this Moses who led us out of the land of Egypt, we do not know what 41 has happened to him.’ h 42 At that time they made a calf and offered a sacrifice to the idol, rejoicing in the works of But God turned away from them their hands. and gave them over to the worship of the host of heaven, as it is written in the book of the prophets: ‘Did you bring Me sacrifices and offerings 43 forty years in the wilderness, O house of Israel? You have taken along the tabernacle of Molech and the star of your god Rephan, the idols you made to worship. i Therefore I will send you into exile The Tabernacle of the Testimony" + }, + { + "verseNum": 25, + "text": "–27 (see also LXX) SBL, WH, BYZ, and TR; see also LXX for" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–7)" + }, + { + "verseNum": 13, + "text": ". 10 11 Now behold, as the LORD promised, He has kept me alive these forty-five years since He spoke this word to Moses, while Israel wandered in the wilderness. So here I am today, eighty-five years old, still as strong today as I was the day Moses sent me out. As my strength was then, so 12 it is now for war, for going out, and for coming in. Now therefore give me this hill country that the LORD promised me on that day, for you your- self heard then that the Anakim were there, with great and fortified cities. Perhaps with the LORD’s help I will drive them out, as the LORD 13 has spoken.” 15 14 and gave him Hebron as his Then Joshua blessed Caleb son of Jephunneh inheritance. Therefore Hebron belongs to Caleb son of Jephunneh the Kenizzite as an inheritance to this day, because he wholly followed the LORD, the God of Israel. (Hebron used to be called Kir- iath-arba, after Arba, the greatest man among the Anakim.) Judah’s Inheritance Then the land had rest from war. 15 Now the allotment for the clans of the tribe of Judah extended to the border of Edom, to the Wilderness of Zin at the extreme southern boundary: 2 a 3 b Their southern border started at the bay on the southern tip of the Salt Sea, proceeded continued south of the Ascent of Akrabbim, on to Zin, went over to the south of Kadesh- barnea, ran past Hezron up to Addar, and curved toward Karka. It proceeded to d Azmon, joined the Brook of Egypt, and ended 5 at the Sea. southern border. This was their 4 c The eastern b" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–9) for the streams of water have dried up, and fire has consumed the open pastures. for mighty are those who obey His command. 2 Blow the ram’s horn in Zion; sound the alarm on My holy mountain! Let all who dwell in the land tremble, for the Day of the LORD is coming; indeed, it is near— 2 a day of darkness and gloom, a day of clouds and blackness. Like the dawn overspreading the mountains a great and strong army appears, such as never was of old, 3 nor will ever be in ages to come. Before them a fire devours, and behind them a flame scorches. The land before them is like the Garden of Eden, but behind them, it is like a desert 4 wasteland— surely nothing will escape them. a Their appearance is like that of horses, and they gallop like swift steeds. 5 With a sound like that of chariots they bound over the mountaintops, like the crackling of fire consuming stubble, like a mighty army deployed for battle. 6 Nations writhe in horror before them; 7 every face turns pale. They charge like mighty men; they scale the walls like men of war. Each one marches in formation, 8 not swerving from the course. They do not jostle one another; each proceeds in his path. They burst through the defenses, 9 never breaking ranks. They storm the city; they run along the wall; they climb into houses, 10 entering through windows like thieves. Before them the earth quakes; the heavens tremble. The sun and moon grow dark, 11 and the stars lose their brightness. a 4 The LORD raises His voice like caval" + }, + { + "verseNum": 4, + "text": "| 825 The Pride of Israel 8 The Lord GOD has sworn by Himself—the LORD, the God of Hosts, has declared: “I abhor Jacob’s pride and detest his citadels, so I will deliver up the city and everything in it.” 10 9 And if there are ten men left in one house, they c too will die. And when the relative who is to burn the bodies picks them up to remove them from the house, he will call to one inside, “Is any- one else with you?” “None,” that person will answer. “Silence,” the relative will retort, “for the name of 11 the LORD must not be invoked.” For the LORD gives a command: “The great house will be smashed to pieces, 12 and the small house to rubble.” d “Do horses gallop on the cliffs? Does one plow the sea with oxen? But you have turned justice into poison and the fruit of righteousness into e 13 wormwood— you who rejoice in Lo-debar ‘Did we not take Karnaim 14 f and say, by our own strength?’ For behold, I will raise up a nation against you, O house of Israel,” declares the LORD, the God of Hosts, Are you better than these kingdoms? 3 Is their territory larger than yours? “and they will oppress you You dismiss the day of calamity 4 and bring near a reign of violence. You lie on beds inlaid with ivory, and lounge upon your couches. You dine on lambs from the flock 5 and calves from the stall. You improvise songs on the harp like David 6 and invent your own musical instruments. You drink wine by the bowlful and anoint yourselves with the finest oils, but you fail to grieve 7 over" + }, + { + "verseNum": 5, + "text": "5 Then I said, “Lord GOD, please stop! How will 6 Jacob survive, since he is so small?” Your land will be divided by a measuring line, and you yourself will die on pagan soil. c So the LORD relented from this plan. “It will not 7 happen either,” said the Lord GOD. This is what He showed me: Behold, the Lord was standing by a wall true to plumb, with a plumb line in His hand. “Amos, what do you see?” asked the LORD. 8 “A plumb line,” I replied. “Behold,” said the Lord, “I am setting a plumb line among My people Israel; I will no longer spare 9 them: The high places of Isaac will be deserted, and the sanctuaries of Israel will be laid waste; and I will rise up against the house of Amaziah Accuses Amos Jeroboam with My sword.” 10 Then Amaziah the priest of Bethel sent word to Jeroboam king of Israel, saying, “Amos has conspired against you in the midst of the house 11 of Israel. The land cannot bear all his words, for this is what Amos has said: ‘Jeroboam will die by the sword, 12 and Israel will surely go into exile, away from their homeland.’ ” And Amaziah said to Amos, “Go away, you seer! Flee to the land of Judah; earn your bread there and do your prophesying there. But never prophesy at Bethel again, because it is the sanctuary of the king and the temple of the 14 kingdom.” 13 a b “I was not a prophet,” Amos replied, “nor was I the son of a prophet; rather, I was a herdsman But the and a tender of sycamore-fig trees. LORD took me from following the flock and said 16 to me," + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 7, + "text": ". k 2 Hebrew; LXX and 1 Chronicles 1:17 in the east Babylon Or Babel Or from the east j 2 also" + }, + { + "verseNum": 11, + "text": "–15 ;" + }, + { + "verseNum": 15, + "text": "| 827 “Are you not like the Cushites O children of Israel?” declares the LORD. to Me, “Did I not bring Israel d up from the land of Egypt, the Philistines from Caphtor, 8 and the Arameans from Kir? Surely the eyes of the Lord GOD are on the sinful kingdom, and I will destroy it from the face of the earth. Yet I will not utterly destroy the house of declares the LORD. Jacob,” 9 “For surely I will give the command, and I will shake the house of Israel among all the nations 10 as grain is sifted in a sieve; but not a pebble will reach the ground. All the sinners among My people will die by the sword— all those who say, ‘Disaster will never draw near or confront A Promise of Restoration" + } + ] + } + ] + }, + { + "name": "Obadiah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–14) declares the LORD. Milcom restore the fortunes of the Ammonites Molech ; Or is a variant of ; also in verse 3; see" + }, + { + "verseNum": 21, + "text": "| 829 They will occupy the fields of Ephraim and 20 Samaria, and Benjamin will possess Gilead. And the exiles of this host of the Israelites will possess the land of the Canaanites as far as Zarephath; and the exiles from Jerusalem who are in 21 Sepharad b will possess the cities of the Negev. The deliverers will ascend Mount Zion to rule over the mountains of Esau. land of the Philistines. And the kingdom will belong to the LORD. a 19 Those being delivered will go up Shephelah lowlands b 21 The deliverers will go up from Hebrew or ; that is, the western foothills of Judea Or ; LXX Jonah Jonah Flees from the LORD" + } + ] + } + ] + }, + { + "name": "Jonah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–3) 12 1 This is what the LORD says: 2 This is the burden against Nineveh, the book of the vision of Nahum the Elkoshite: “Though they are allied and numerous, yet they will be cut down and pass away. The LORD is a jealous and avenging God; the LORD is avenging and full of wrath. The LORD takes vengeance on His foes 3 and reserves wrath for His enemies. The LORD is slow to anger and great in power; the LORD will by no means leave the guilty unpunished. His path is in the whirlwind and storm, 4 and clouds are the dust beneath His feet. He rebukes the sea and dries it up; He makes all the rivers run dry. Bashan and Carmel wither, 5 and the flower of Lebanon wilts. The mountains quake before Him, and the hills melt away; the earth trembles at His presence— 6 the world and all its dwellers. Who can withstand His indignation? Who can endure His burning anger? His wrath is poured out like fire; 7 even rocks are shattered before Him. The LORD is good, 8 a stronghold in the day of distress; He cares for those who trust in Him. a But with an overwhelming flood 9 He will make an end of Nineveh and pursue His enemies into darkness. Whatever you plot against the LORD, He will bring to an end. Affliction will not rise up 10 a second time. For they will be entangled as with thorns and consumed like the drink of a 11 drunkard— like stubble that is fully dry. From you, O Nineveh, comes forth 13 Though I have afflicted you, O Judah, I will afflict you no longer. For I will now break their yok" + }, + { + "verseNum": 4, + "text": "–10) both southwest and northwest. 13 14 When a gentle south wind began to blow, they thought they had their opportunity. So they weighed anchor and sailed along, hugging the But it was not long before a cy- coast of Crete. 15 clone called the Northeaster swept down across Unable to head into the wind, the the island. ship was caught up. So we gave way and let our- 16 selves be driven along. a Passing to the lee of a small island called 17 Cauda, we barely managed to secure the life- After hoisting it up, the crew used ropes boat. to undergird the ship. And fearing that they would run aground on the sandbars of Syrtis, they lowered the sea anchor and were driven 18 along. b 19 We were tossed so violently that the next day On the the men began to jettison the cargo. 20 third day, they threw the ship’s tackle overboard When neither sun nor with their own hands. stars appeared for many days and the great storm continued to batter us, we abandoned all 21 hope of being saved. 22 After the men had gone a long time without food, Paul stood up among them and said, “Men, you should have followed my advice not to sail from Crete. Then you would have averted this But now I urge you to keep disaster and loss. 23 up your courage, because you will not experience any loss of life, but only of the ship. For just last 24 night an angel of the God to whom I belong and and said, ‘Do whom I serve stood beside me not be afraid, Paul; you must stand before Caesar. And look, God has granted you the" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–10 ; Lk. 11:29–32) ted, and by your words you will be condemned.” 38 36 37 Then some of the scribes and Pharisees said to 39 Him, “Teacher, we want to see a sign from You.” 40 Jesus replied, “A wicked and adulterous gener- ation demands a sign, but none will be given it For as Jo- except the sign of the prophet Jonah. nah was three days and three nights in the belly of the great fish, so the Son of Man will be three 41 days and three nights in the heart of the earth. 42 The men of Nineveh will stand at the judgment with this generation and condemn it; for they re- pented at the preaching of Jonah, and now One The Queen of the greater than Jonah is here. South will rise at the judgment with this genera- tion and condemn it; for she came from the ends of the earth to hear the wisdom of Solomon, and An Unclean Spirit Returns" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 11, + "text": "| 831 9 call out earnestly to God. Let each one turn from his evil ways and from the violence in his hands. Who knows? God may turn and relent; He may turn from His fierce anger, so that we will not perish.” 10 When God saw their actions—that they had turned from their evil ways—He relented from the disaster He had threatened to bring upon Jonah’s Anger at the LORD’s Compassion them. 4 d 2 Jonah, however, was greatly displeased, and he became angry. So he prayed to the LORD, saying, “O LORD, is this not what I said while I was still in my own country? This is why I was so quick to flee toward Tarshish. I knew that You are a gracious and compassionate God, slow to anger, abounding in loving devotion— And One who relents from sending disaster. now, O LORD, please take my life from me, for it 4 is better for me to die than to live.” 3 But the LORD replied, “Have you any right to be 5 angry?” e 6 Then Jonah left the city and sat down east of it, where he made himself a shelter and sat in its shade to see what would happen to the city. So the LORD God appointed a vine, and it grew up to provide shade over Jonah’s head to ease his discomfort, and Jonah was greatly pleased with 7 the plant. When dawn came the next day, God appointed a worm that attacked the plant so that it 8 withered. As the sun was rising, God appointed a scorch- ing east wind, and the sun beat down on Jonah’s head so that he grew faint and wished to die, say- 9 ing, “It is better for me to die than to live.” Then" + } + ] + } + ] + }, + { + "name": "Micah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–7) laid waste. 17 16 The LORD will bring on you and on your people and on the house of your father a time un- like any since the day Ephraim separated from 18 Judah—He will bring the king of Assyria.” On that day the LORD will whistle to the flies at the farthest streams of the Nile and to the bees 19 in the land of Assyria. And they will all come and settle in the steep ravines and clefts of the 20" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 6, + "text": "–11) ” clares the Lord GOD.’ 13 2 4 3 Then the word of the LORD came to me, “Son of man, prophesy against saying, the prophets of Israel who are now prophesying. Tell those who prophesy out of their own imagi- This is what nation: Hear the word of the LORD! the Lord GOD says: Woe to the foolish prophets who follow their own spirit yet have seen noth- Your prophets, O Israel, are like foxes ing. You did not go up to the gaps among the ruins. or restore the wall around the house of Israel so that it would stand in the battle on the Day of the 6 LORD. 5 They see false visions and speak lying divina- tions. They claim, ‘Thus declares the LORD,’ when the LORD did not send them; yet they wait 7 for the fulfillment of their message. Haven’t you seen a false vision and spoken a lying divination when you proclaim, ‘Thus declares the LORD,’ even though I have not spo- 8 ken? 9 Therefore this is what the Lord GOD says: Because you have uttered vain words and seen false visions, I am against you, declares the Lord My hand will be against the prophets who GOD. see false visions and speak lying divinations. They will not belong to the council of My people or be recorded in the register of the house of Is- rael, nor will they enter the land of Israel. Then you will know that I am the Lord GOD. 11 Because they have led My people astray, say- ing, ‘Peace,’ when there is no peace, and white- tell those washing any flimsy wall that is built, whitewashing the wall that it will fall. Rain will 12" + }, + { + "verseNum": 12, + "text": "–13) and marches into our borders. 7 Then the remnant of Jacob will be in the midst of many peoples like dew from the LORD, like showers on the grass, which do not wait for man 8 or linger for mankind. Then the remnant of Jacob will be among the nations, in the midst of many peoples, like a lion among the beasts of the forest, like a young lion among flocks of sheep, which tramples and tears as it passes 9 through, with no one to rescue them. 10 Your hand will be lifted over your foes, and all your enemies will be cut off. “In that day,” declares the LORD, 11 “I will remove your horses from among you and wreck your chariots. 12 I will remove the cities of your land 13 and tear down all your strongholds. I will cut the sorceries from your hand, and you will have no fortune-tellers. I will also cut off the carved images a 5 their peace and sacred pillars from among you, Acacia Grove b 5 Or Or you! For I brought you up from the land of Egypt and redeemed you from the house of slavery. I sent Moses before you, 5 as well as Aaron and Miriam. My people, remember what Balak king of Moab counseled b and what Balaam son of Beor answered. Remember your journey from Shittim to Gilgal, 6 so that you may acknowledge the ” righteousness of the LORD.’ With what shall I come before the LORD when I bow before the God on high? Should I come to Him with burnt offerings, 7 with year-old calves? Would the LORD be pleased with thousands of rams, with ten thousand rivers of oil? Shall I present my" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 9, + "text": "| 833 Therefore this is what the LORD says: “I am planning against this nation a disaster from which you cannot free your necks. Then you will not walk so proudly, 4 for it will be a time of calamity. In that day they will take up a proverb against you and taunt you with this bitter lamentation: ‘We are utterly ruined! He has changed the portion of my people. How He has removed it from me! 5 He has allotted our fields to traitors.’ ” Therefore, you will have no one in the assembly of the LORD Reproof of False Prophets" + }, + { + "verseNum": 10, + "text": "10 11 who build Zion with bloodshed and Jerusalem with iniquity. Her leaders judge for a bribe, her priests teach for a price, and her prophets practice divination for money. Yet they lean upon the LORD, saying, 12 “Is not the LORD among us? No disaster can come upon us.” Therefore, because of you, Zion will be plowed like a field, Jerusalem will become a heap of rubble, The Mountain of the House of the LORD" + }, + { + "verseNum": 12, + "text": "Literally 706 |" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "–5) 2 2 Jerusalem: This is the message that was revealed to Isaiah son of Amoz concerning Judah and In the last days the mountain of the house of the LORD will be established as the chief of the mountains; it will be raised above the hills, 3 and all nations will stream to it. And many peoples will come and say: “Come, let us go up to the mountain of the LORD, to the house of the God of Jacob. He will teach us His ways so that we may walk in His paths.” For the law will go forth from Zion, 4 and the word of the LORD from Jerusalem. Then He will judge between the nations and arbitrate for many peoples. They will beat their swords into plowshares and their spears into pruning hooks. Nation will no longer take up the sword against nation, The Day of Reckoning nor train anymore for war. 5 and your counselors as at the beginning. Come, O house of Jacob, 6 After that you will be called the City of 27 Righteousness, the Faithful City.” Zion will be redeemed with justice, 28 her repentant ones with righteousness. But rebels and sinners will together be shattered, 29 and those who forsake the LORD will perish. Surely you will be ashamed of the sacred oaks in which you have delighted; you will be embarrassed by the gardens 30 that you have chosen. let us walk in the light of the LORD. For You have abandoned Your people, the house of Jacob, because they are filled with influences from the east; they are soothsayers like the Philistines; they strike hands with the children of 7 foreigner" + }, + { + "verseNum": 6, + "text": "–13) turned the pleasant land into a desolation.” 8 2 Again the word of the LORD of Hosts came to me, saying: This is what the LORD of Hosts says: “I am jealous for Zion with great zeal; I am 3 jealous for her with great fervor.” This is what the LORD says: “I will return to Zion and dwell in Jerusalem. Then Jerusalem will be called the City of Truth, and the mountain of the LORD of Hosts will be called the Holy Moun- 4 tain.” 5 This is what the LORD of Hosts says: “Old men and old women will again sit along the streets of Jerusalem, each with a staff in hand because of great age. And the streets of the city will be 6 filled with boys and girls playing there.” j This is what the LORD of Hosts says: “If this is in the eyes of the remnant of this impossible people in these days, should it also be impossible 7 in My eyes?” declares the LORD of Hosts. 8 This is what the LORD of Hosts says: “I will save My people from the land of the east and from the land of the west. I will bring them back to dwell in Jerusalem, where they will be My people, and I will be their faithful and righteous God.” And there will be a priest on His throne c 14 e 1 Chislev f 2 Hebrew; Syriac Bethel-sharezer had sent Regem-melech, is the ninth month of the Hebrew lunar h 9 ; see verse 10. g 7 along with his men, Shephelah calendar, usually occurring within the months of November and December. chesed love goodness heavy to hear are translated here and in most cases throughout the Scriptures as kindness j 6" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–6) Him the name Jesus. 2 After Jesus was born in Bethlehem in Judea, 2 during the time of King Herod, Magi from the east arrived in Jerusalem, asking, “Where is the One who has been born King of the Jews? We saw His star in the east and have come to worship 3 Him.” b 4 When King Herod heard this, he was disturbed, and all Jerusalem with him. And when he had assembled all the chief priests and scribes of the people, he asked them where the Christ was to be 5 born. “In Bethlehem in Judea,” they replied, “for this 6 is what the prophet has written: ‘But you, Bethlehem, in the land of Judah, are by no means least among the rulers of Judah, c for out of you will come a ruler who will be the shepherd of My people Israel.’ ” 7 Then Herod called the Magi secretly and learned 8 from them the exact time the star had appeared. And sending them to Bethlehem, he said: “Go and search carefully for the Child, and when you find Him, report to me, so that I too may go and 9 worship Him.” 10 11 After they had heard the king, they went on their way, and the star they had seen in the east went ahead of them until it stood over the place where the Child was. When they saw the star, they rejoiced with great delight. On coming to the house, they saw the Child with His mother Mary, and they fell down and worshiped Him. Then they opened their treasures and presented Him with gifts of gold and frankincense and 12 myrrh. And having been warned in a dream not to re- turn to Herod, they withdrew to thei" + }, + { + "verseNum": 2, + "text": "; see also 2 Samuel 5:2." + }, + { + "verseNum": 7, + "text": "–15) people! 12 I will surely gather all of you, O Jacob; I will collect the remnant of Israel. One who breaks open the way will go up before them; they will break through the gate, and go out by it. Their King will pass through before them, Rulers and Prophets Condemned the LORD as their leader. 3 Then I said: 2 “Hear now, O leaders of Jacob, you rulers of the house of Israel. Should you not know justice? You hate good and love evil. 3 You tear the skin from my people and strip the flesh from their bones. You eat the flesh of my people after stripping off their skin and breaking their bones. You chop them up like flesh for the 4 cooking pot, like meat in a cauldron.” Then they will cry out to the LORD, but He will not answer them. 5 At that time He will hide His face from them because of the evil they have done. This is what the LORD says: “As for the prophets who lead My people astray, who proclaim peace while they chew with their teeth, but declare war against one 6 who puts nothing in their mouths: Therefore night will come over you without visions, and darkness without divination. The sun will set on these prophets, 7 and the daylight will turn black over them. Then the seers will be ashamed and the diviners will be disgraced. They will all cover their mouths 8 because there is no answer from God.” As for me, however, I am filled with power by the Spirit of the LORD, with justice and courage, 9 to declare to Jacob his transgression and to Israel his sin. Now hear this, O" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 9, + "text": "| 835 One whose origins are of old, 3 from the days of eternity. 14 so that you will no longer bow down to the work of your own hands. Therefore Israel will be abandoned I will root out the Asherah poles from your until she who is in labor has given birth; 15 midst then the rest of His brothers will return 4 to the children of Israel. He will stand and shepherd His flock in the strength of the LORD, in the majestic name of the LORD His God. And they will dwell securely, 5 for then His greatness will extend to the ends of the earth. a And He will be our peace when Assyria invades our land and tramples our citadels. We will raise against it seven shepherds, 6 even eight leaders of men. And they will rule the land of Assyria with the sword, and demolish your cities. I will take vengeance in anger and wrath upon the nations that have not obeyed The Case against Israel Me.” 6 Hear now what the LORD says: “Arise, plead your case before the 2 mountains, and let the hills hear your voice. Hear, O mountains, the LORD’s indictment, you enduring foundations of the earth. For the LORD has a case against His people, 3 and He will argue it against Israel: ‘My people, what have I done to you? and the land of Nimrod with the blade 4 Testify against Me how I have wearied drawn. So He will deliver us when Assyria invades our land The Remnant of Jacob" + }, + { + "verseNum": 10, + "text": "“Heed the rod 10 and the One who ordained it. Can I forget any longer, O house of the wicked, the treasures of wickedness 11 and the short ephah, which is accursed? 12 Can I excuse dishonest scales or bags of false weights? For the wealthy of the city are full of violence, and its residents speak lies; 13 their tongues are deceitful in their mouths. 14 Therefore I am striking you severely, to ruin you because of your sins. You will eat but not be satisfied, and your hunger will remain with you. What you acquire, you will not preserve; and what you save, I will give to the 15 sword. You will sow but not reap; you will press olives but not anoint yourselves with oil; 16 you will tread grapes but not drink the wine. You have kept the statutes of Omri and all the practices of Ahab’s house; you have followed their counsel. Therefore I will make you a desolation, and your inhabitants an object of contempt; a you will bear the scorn of the Israel’s Great Misery ”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–6 ;" + }, + { + "verseNum": 6, + "text": "Greek Greek The Reward of Service (2 Kings 4:8–17) 14" + }, + { + "verseNum": 20, + "text": "| 837 They will come trembling from their strongholds 18 in the presence of the LORD our God; they will tremble in fear of You. Who is a God like You, who pardons iniquity and passes over the transgression of the remnant of His inheritance— who does not retain His anger forever, 19 b because He delights in loving devotion? He will again have compassion on us; He will vanquish our iniquities. 20 You will cast out all our sins into the depths of the sea. You will show faithfulness to Jacob and loving devotion to Abraham, as You swore to our fathers from the days of old. a 14 in a woodland, in the midst of Carmel loving devotion b 18 chesed love goodness kindness faithfulness Or mercy throughout the Scriptures as loyalty to a covenant Forms of the Hebrew ; the range of meaning includes , as well as . are translated here and in most cases , and , , , Nahum The Burden against Nineveh" + } + ] + } + ] + }, + { + "name": "Nahum", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–15) Jonah Cast into the Sea 11 1 2 Now the word of the LORD came to Jonah “Get up! Go to the son of Amittai, saying, great city of Nineveh and preach against it, be- 3 cause its wickedness has come up before Me.” Jonah, however, got up to flee to Tarshish, away from the presence of the LORD. He went down to Joppa and found a ship bound for Tarshish. So he paid the fare and went aboard to sail for Tar- The Great Storm shish, away from the presence of the LORD." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 12, + "text": "| 839 they rush around the plazas, appearing like torches, 5 darting about like lightning. He summons his nobles; they stumble as they advance. They race to its wall; 6 the protective shield is set in place. 7 The river gates are thrown open and the palace collapses. It is decreed that the city be exiled and carried away; her maidservants moan like doves, 8 and beat upon their breasts. Nineveh has been like a pool of water throughout her days, but now it is draining away. “Stop! Stop!” they cry, 9 but no one turns back. “Plunder the silver! Plunder the gold!” There is no end to the treasure, 10 an abundance of every precious thing. She is emptied! Yes, she is desolate and laid waste! Hearts melt, knees knock, bodies tremble, and every face grows pale! 11 Where is the lions’ lair or the feeding ground of the young lions, where the lion and lioness prowled with 12 their cubs, with nothing to frighten them away? The lion mauled enough for its cubs and strangled prey for the lioness. 13 It filled its dens with the kill, and its lairs with mauled prey. “Behold, I am against you,” declares the LORD of Hosts. “I will reduce your chariots to cinders, and the sword will devour your young lions. I will cut off your prey from the earth, and the voices of your messengers will no longer be heard.” Judgment on Nineveh 3 Woe to the city of blood, full of lies, full of plunder, No-amon never without prey. b 9 a 8 Hebrew That is, the upper Nile region the rumble of the wheel, galloping horse" + }, + { + "verseNum": 13, + "text": "13 Look at your troops— they are like your women! The gates of your land 14 are wide open to your enemies; fire consumes their bars. Draw your water for the siege; strengthen your fortresses. 17 The young locust strips the land a and flies away. b Your guards are like the swarming locust, like clouds of locusts and your scribes that settle on the walls on a cold day. 18 When the sun rises, they fly away, and no one knows where. 15 Work the clay and tread the mortar; O king of Assyria, your shepherds repair the brick kiln! There the fire will devour you; the sword will cut you down and consume you like a young locust. Make yourself many like the young locust; 16 make yourself many like the swarming locust! You have multiplied your merchants more than the stars of the sky. slumber; your officers sleep. 19 Your people are scattered on the mountains with no one to gather them. There is no healing for your injury; your wound is severe. All who hear the news of you applaud your downfall, for who has not experienced your constant cruelty? a 17 princes b 17 marshals Or Or Habakkuk Habakkuk’s First Complaint 1 2 This is the burden that Habakkuk the prophet received in a vision: How long, O LORD, must I call for help but You do not hear, or cry out to You, “Violence!” 3 but You do not save? Why do You make me see iniquity? Why do You tolerate wrongdoing? Destruction and violence are before me. 4 Strife is ongoing, and conflict abounds. Therefore the law is paralyzed, and justice never" + } + ] + } + ] + }, + { + "name": "Habakkuk", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 5, + "text": "(see also LXX)" + }, + { + "verseNum": 12, + "text": "–17) For the choirmaster. Of David. 1 In the LORD I take refuge. How then can you say to me: 2 “Flee like a bird to your mountain! The LORD tests the righteous and the wicked; 6 His soul hates the lover of violence. On the wicked He will rain down fiery coals 7 and sulfur; a scorching wind will be their portion. For the LORD is righteous; He loves justice. Psalm 12 The Godly Are No More The upright will see His face. For the choirmaster. According to Sheminith.c A Psalm of David. 1 Help, O LORD, for the godly are no more; the faithful have vanished from among 2 men. They lie to one another; 3 they speak with flattering lips and a double heart. May the LORD cut off all flattering lips 4 and every boastful tongue. They say, “With our tongues we will prevail. We own our lips—who can be our master?” 5 “For the cause of the oppressed and for the groaning of the needy, I will now arise,” says the LORD. 6 “I will bring safety to him who yearns.” The words of the LORD are flawless, like silver refined in a furnace, like gold purified sevenfold. d 7 You, O LORD, will keep us; 8 You will forever guard us from this generation. The wicked wander freely, Psalm 13 and vileness is exalted among men. How Long, O LORD? For the choirmaster. A Psalm of David. 1 For behold, the wicked bend their bows. How long, O LORD? They set their arrow on the string to shoot from the shadows at the upright a 7 bitterness in heart. LXX sevenfold here and in 1 Chronicles 15:21 and" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 3, + "text": "3 14 For the vision awaits an appointed time; it testifies of the end and does not lie. Though it lingers, wait for it, a 4 since it will surely come and will not For the earth will be filled with the knowledge of the glory of the 15 LORD as the waters cover the sea. delay. b Look at the proud one; his soul is not c 5 upright d — but the righteous will live by faith — and wealth indeed betrays him. He is an arrogant man never at rest. He enlarges his appetite like Sheol, and like Death, he is never satisfied. He gathers all the nations to himself Woe to the Chaldeans and collects all the peoples as his own. 6 Will not all of these take up a taunt against him, speaking with mockery and derision: ‘Woe to him who amasses what is not his 7 and makes himself rich with many loans! How long will this go on?’ 18 Will not your creditors suddenly arise 8 and those who disturb you awaken? Then you will become their prey. Because you have plundered many nations, the remnant of the people will plunder you— because of your bloodshed against man and your violence against the land, the 9 city, and all their dwellers. Woe to him who builds his house by unjust gain, to place his nest on high 10 and escape the hand of disaster! You have plotted shame for your house e 11 by cutting off many peoples and forfeiting your life. For the stones will cry out from the wall, and the rafters will echo it from the 12 woodwork. 13 Woe to him who builds a city with bloodshed and establishes a town by iniquit" + }, + { + "verseNum": 4, + "text": "Or 29" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 19, + "text": "| 843 You crushed the head of the house of the Selah wicked and stripped him from head to toe. 14 With his own spear You pierced his head, when his warriors stormed out to scatter us, gloating as though ready 15 to secretly devour the weak. You trampled the sea with Your horses, 16 churning the great waters. I heard and trembled within; my lips quivered at the sound. Decay entered my bones; I trembled where I stood. Yet I must wait patiently for the day of distress to come upon the people who Habakkuk Rejoices invade us. 17 Though the fig tree does not bud and no fruit is on the vines, though the olive crop fails and the fields produce no food, 18 though the sheep are cut off from the fold and no cattle are in the stalls, yet I will exult in the LORD; 19 I will rejoice in the God of my salvation! GOD the Lord is my strength; He makes my feet like those of a deer; For the choirmaster. He makes me walk upon the heights! With stringed instruments. Zephaniah Zephaniah Prophesies Judgment on Judah" + } + ] + } + ] + }, + { + "name": "Zephaniah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–6) foundation of the world.” 36 Then Jesus dismissed the crowds and went into the house. His disciples came to Him and said, “Explain to us the parable of the weeds in 37 the field.” 38 He replied, “The One who sows the good seed The field is the world, and is the Son of Man. the good seed represents the sons of the king- 39 dom. The weeds are the sons of the evil one, and the enemy who sows them is the devil. The harvest is the end of the age, and the harvesters 40 are angels. 41 As the weeds are collected and burned in the The Son fire, so will it be at the end of the age. of Man will send out His angels, and they will weed out of His kingdom every cause of sin And they will and all who practice lawlessness. c 35 42 So the servants asked him, ‘Do you want us to go a 15 and pull them up?’ the one sown b 19 of the world Literally" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–3 ;" + }, + { + "verseNum": 8, + "text": "–11) and upon the remnant of the land. 16 Send the tribute lambs to the ruler of the land, from Sela in the desert 2 to the mount of Daughter Zion. Like fluttering birds pushed out of the nest, so are the daughters of Moab at the fords of the Arnon: 3 “Give us counsel; render a decision. Shelter us at noonday with shade as dark as night. Hide the refugees; 4 do not betray the one who flees. Let my fugitives stay with you; be a refuge for Moab from the destroyer.” When the oppressor has gone, destruction has ceased, and the oppressors have vanished from Dimon the land, Dibon c 9 blood MT, twice in this verse; DSS and Vulgate . ; , a 5 a The Burden against Damascus (Jer. 49:23–27)" + }, + { + "verseNum": 15, + "text": "| 845 Judgment on Moab and Ammon" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Judgment on Jerusalem 11 3 2 Woe to the city of oppressors, rebellious and defiled! She heeded no voice; she accepted no correction. She does not trust in the LORD; 3 she has not drawn near to her God. Her princes are roaring lions; 4 her judges are evening wolves, leaving nothing for the morning. Her prophets are reckless, faithless men. Her priests profane the sanctuary; 5 they do violence to the law. The LORD within her is righteous; He does no wrong. He applies His justice morning by morning; Purification of the Nations He does not fail at dawn, yet the unjust know no shame. 6 “I have cut off the nations; their corner towers are destroyed. I have made their streets deserted with no one to pass through. Their cities are laid waste, 7 with no man, no inhabitant. I said, ‘Surely you will fear Me and accept correction.’ Then her dwelling place would not be cut off despite all for which I punished her. But they rose early 8 to corrupt all their deeds. Therefore wait for Me,” declares the LORD, a “until the day I rise to testify. For My decision is to gather nations, to assemble kingdoms, to pour out upon them My indignation— all My burning anger. A Faithful Remnant For all the earth will be consumed by the fire of My jealousy. 9 For then I will restore pure lips to the peoples, 10 that all may call upon the name of the LORD and serve Him shoulder to shoulder. b From beyond the rivers of Cush a 8 My worshipers, My scattered people, b 10 will bring Me an offering. rise up to plu" + } + ] + } + ] + }, + { + "name": "Haggai", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–11) 5 2 Later, the prophets Haggai and Zechariah son of Iddo prophesied to the Jews in Judah and Jerusalem in the name of the God of Israel, a Then Zerubbabel son of who was over them. Shealtiel and Jeshua son of Jozadak rose up and began to rebuild the house of God in Jerusalem. And the prophets of God were with them, helping 3 them. b At that time Tattenai the governor of the region west of the Euphrates, Shethar-bozenai, and their associates went to the Jews and asked, “Who authorized you to rebuild this temple and 4 restore this structure?” c They also asked, “What are the names of the men who are constructing this building?” a 2 Jozadak c 4 Then we told them, Jehozadak d 10 But the eye of their God was on the elders of the Jews, so that they were not stopped until a report was sent to Darius and written instructions Tattenai’s Letter to Darius about this matter were returned. 6 This is the text of the letter that Tattenai the governor of the region west of the Euphrates, Shethar-bozenai, and their associates, the offi- The re- cials in the region, sent to King Darius. port they sent him read as follows: 7 To King Darius: 8 All peace. Let it be known to the king that we went into the province of Judah, to the house of the great God. The people are rebuilding it with large stones and placing timbers in the walls. This work is being carried out diligently and 9 is prospering in their hands. So we questioned the elders and asked, “Who authorized you to rebuild this temple 1" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 4, + "text": "4 But now be strong, O Zerubbabel, declares the LORD. Be strong, O Joshua son of Jehozadak, the high priest. And be strong, all you people of the land, declares the LORD. Work! For I am with you, 5 declares the LORD of Hosts. This is the promise I made to you when you came out of Egypt. And My Spirit remains among you; do not be afraid.” 6 For this is what the LORD of Hosts says: “Once more, in a little while, a I will shake the heavens and the 7 earth, the sea and the dry land. I will shake all the nations, and they will come with all their treasures, and I will fill this house with glory, 8 says the LORD of Hosts. The silver is Mine, and the gold is Mine, 9 declares the LORD of Hosts. The latter glory of this house will be greater than the former, says the LORD of Hosts. Blessings for a Defiled People And in this place I will provide peace, declares the LORD of Hosts.” 10 12 On the twenty-fourth day of the ninth month, in the second year of Darius, the word of the 11 LORD came to Haggai the prophet, saying, “This is what the LORD of Hosts says: ‘Ask the If a man carries conse- priests for a ruling. crated meat in the fold of his garment, and it touches bread, stew, wine, oil, or any other food, does that item become holy?’ 13 “No,” replied the priests. ” 14 “Yes, it becomes defiled,” the priests answered. Then Haggai replied, “So it is with this people and this nation before Me, declares the LORD, and so it is with every work of their hands; what- 15 ever they offer there i" + }, + { + "verseNum": 6, + "text": "BYZ and TR" + } + ] + } + ] + }, + { + "name": "Zechariah", + "chapters": [ + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "The Vision of the Measuring Line" + }, + { + "verseNum": 6, + "text": "–13) ” ‘You are my God.’ 3 Then the LORD said to me, “Go show love to i your wife again, though she is loved by an- other and is an adulteress. Love her as the LORD loves the Israelites, though they turn to other 2 gods and love to offer raisin cakes to idols. k ” j l 3 So I bought her for fifteen shekels of silver and a homer and a lethech of barley. Then I said to her, “You must live with me for many days; you must not be promiscuous or belong to another, 4 and I will do the same for you.” 5 For the Israelites must live many days without king or prince, without sacrifice or sacred pillar, Afterward, the peo- and without ephod or idol. ple of Israel will return and seek the LORD their God and David their king. They will come trem- bling to the LORD and to His goodness in the last God’s Case against His People days. 4 Hear the word of the LORD, O children of Israel, for the LORD has a case against the people of the land: a 15 Achor and battle in the land, c 16 b 16 trouble and will make them lie down in safety. loving devotion Hebrew loyalty to a covenant means faithfulness my Ishi . kindness mercy here and in most cases throughout the Scriptures as ruhamah , i 1 ; LXX g 23 I will love her who was not loved Go show love to a woman who is loved by another , as well as Hebrew , and l 2 Lo-ammi . a homer and a half of barley Literally j 1 Hebrew Or “There is no truth, no loving devotion, my Baal and no knowledge of God in the land! chesed d 19 love Forms of the Hebrew f 23 God s" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 8, + "text": "| 851 7 So he said to me, “This is the word of the LORD to Zerubbabel: Not by might nor by power, but What are by My Spirit, says the LORD of Hosts. you, O great mountain? Before Zerubbabel you will become a plain. Then he will bring forth the capstone accompanied by shouts of ‘Grace, grace 8 to it!’ 9 ” 10 Then the word of the LORD came to me, saying, “The hands of Zerubbabel have laid the founda- tion of this house, and his hands will complete it. Then you will know that the LORD of Hosts has For who has despised the day sent me to you. of the of small things? But these seven eyes LORD, which scan the whole earth, will rejoice in the hand of when they see the plumb line 11 Zerubbabel.” a b Then I asked the angel, “What are the two olive 12 trees on the right and left of the lampstand?” And I questioned him further, “What are the c two olive branches beside the two gold pipes 13 from which the golden oil pours?” “Do you not know what these are?” he inquired. 14 “No, my lord,” I replied. d e So he said, “These are the two anointed ones who are standing beside the Lord of all the The Vision of the Flying Scroll earth.” 5 2 Again I lifted up my eyes and saw before me a flying scroll. “What do you see?” asked the angel. f “I see a flying scroll,” I replied, “twenty cubits 3 long and ten cubits wide. ” 4 Then he told me, “This is the curse that is going out over the face of all the land, for according to one side of the scroll, every thief will be re- moved; and according to the" + }, + { + "verseNum": 9, + "text": "The Crown and the Temple 9 10 The word of the LORD also came to me, saying, “Take an offering from the exiles—from Heldai, Tobijah, and Jedaiah, who have arrived from Babylon—and go that same day to the Take silver house of Josiah son of Zephaniah. a and gold, make an ornate crown, and set it on the 12 head of the high priest, Joshua son of Jehozadak. 11 13 And you are to tell him that this is what the LORD of Hosts says: ‘Here is a man whose name is the Branch, and He will branch out from His Yes, He place and build the temple of the LORD. the LORD; He will be will build the temple of clothed in splendor and will sit on His throne and and rule. And He will be a priest on His throne, 14 there will be peaceful counsel between the two.’ b c d 15 The crown will reside in the temple of the LORD as a memorial to Helem, Tobijah, Jedaiah, and the gracious Even those far away will come and build the temple of the LORD, and you will know that the LORD of Hosts has sent Me to you. This will happen if you A Call to Justice and Mercy diligently obey the voice of the LORD your God.” son of Zephaniah. 7 In the fourth year of King Darius, the word of e the LORD came to Zechariah on the fourth 2 day of the ninth month, the month of Chislev. f Now the people of Bethel had sent Sharezer and 3 Regem-melech, along with their men, to plead before the LORD by asking the priests of the house of the LORD of Hosts, as well as the proph- ets, “Should I weep and fast in the fifth month, as 4 I have don" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "–23) forever and ever. 6 a 8 “On that day,” declares the LORD, hill “I will gather the lame; And you, Migdal-eder, the Ophel b 13 Or ; Hebrew Or like a woman in labor. For now you will leave the city and camp in the open fields. You will go to Babylon; there you will be rescued; there the LORD will redeem you 11 from the hand of your enemies! But now many nations have assembled against you, 12 saying, “Let her be defiled, and let us feast our eyes on Zion.” But they do not know the thoughts of the LORD or understand His plan, 13 for He has gathered them like sheaves to the threshing floor. Rise and thresh, O Daughter of Zion, for I will give you horns of iron and hooves of bronze b to break to pieces many peoples. Then you will devote their gain to the LORD, A Ruler from Bethlehem" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 9, + "text": "| 853 10 This is what the LORD of Hosts says: “Let your hands be strong, you who now hear these words spoken by the prophets who were present when the foundations were laid to rebuild the temple, the house of the LORD of Hosts. For before those days neither man nor beast received wages, nor was there safety from the enemy for anyone who came or went, for I had turned every man against his neighbor. But now I will not treat the remnant of this people as I did in the 12 past,” declares the LORD of Hosts. 11 9 This is the burden of the word of the LORD against the land of Hadrach and Damascus its resting place— for the eyes of men a and of all the tribes of Israel — are upon the LORD and also against Hamath, which borders it, as well as Tyre and Sidon, 2 3 though they are very shrewd. 13 “For the seed will be prosperous, the vine will yield its fruit, the ground will yield its produce, and the skies will give their dew. To the remnant of this people I will give all these things as an in- heritance. As you have been a curse among the nations, O house of Judah and house of Israel, so I will save you, and you will be a blessing. Do not 14 be afraid; let your hands be strong.” 15 16 For this is what the LORD of Hosts says: “Just as I resolved to bring disaster upon you when your fathers provoked Me to anger, and I did not relent,” says the LORD of Hosts, “so now I have resolved to do good again to Jerusalem and Ju- dah. Do not be afraid. These are the things you 17 must do: Speak tr" + }, + { + "verseNum": 10, + "text": "10 a 2 And I will cut off the chariot from Ephraim the horse from Jerusalem, and and the bow of war will be broken. Then He will proclaim peace to the nations. b His dominion will extend from sea to sea, and from the Euphrates 11 to the ends of the earth. As for you, because of the blood of My covenant, 12 I will release your prisoners from the waterless pit. Return to your stronghold, O prisoners of hope; even today I declare 13 that I will restore to you double. For I will bend Judah as My bow and fit it with Ephraim. c I will rouse your sons, O Zion, against the sons of Greece. I will make you like the sword The LORD Will Save His People of a mighty man. 14 Then the LORD will appear over them, and His arrow will go forth like lightning. The Lord GOD will sound the ram’s horn and advance in the whirlwinds of the 15 south. The LORD of Hosts will shield them. They will destroy and conquer with slingstones; 16 they will drink and roar as with wine. And they will be filled like sprinkling bowls, drenched like the corners of the altar. On that day the LORD their God will save them as the flock of His people; for like jewels in a crown 17 they will sparkle over His land. How lovely they will be, and how beautiful! Judah and Israel Will Be Restored Grain will make the young men flourish, and new wine, the young women. 10 Ask the LORD for rain in springtime; the LORD makes the storm clouds, and He will give everyone showers of rain For idols speak deceit and diviners see illusions;" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 10, + "text": "–17)" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 6, + "text": "| 855 They will pass through the sea of distress and strike the waves of the sea; all the depths of the Nile will dry up. The pride of Assyria will be brought 12 down, and the scepter of Egypt will depart. I will strengthen them in the LORD, and in His name they will walk,” declares the LORD. The Doomed Flock 11 2 Open your doors, O Lebanon, that the fire may consume your cedars! a Wail, O cypress, for the cedar has fallen; the majestic trees are ruined! Wail, O oaks of Bashan, 3 for the dense forest has been cut down! Listen to the wailing of the shepherds, for their glory is in ruins. Listen to the roaring of the young lions, for the thickets of the Jordan are destroyed. 5 4 This is what the LORD my God says: “Pasture whose buyers the flock marked for slaughter, slaughter them without remorse. Those who sell them say, ‘Blessed be the LORD, for I am rich!’ Even their own shepherds have no compassion 6 on them. For I will no longer have compassion on the people of the land, declares the LORD, but behold, I will cause each man to fall into the hands of his neighbor and his king, who will dev- astate the land, and I will not deliver it from their 7 hands.” 8 So I pastured the flock marked for slaughter, es- pecially the afflicted of the flock. Then I took for myself two staffs, calling one Favor and the other And in one Union, and I pastured the flock. month I dismissed three shepherds. 9 My soul grew impatient with the flock, and their Then I said, “I will no souls also detest" + }, + { + "verseNum": 7, + "text": "around them on the right and on the left, while 7 the people of Jerusalem remain secure there. 8 The LORD will save the tents of Judah first, so that the glory of the house of David and of the people of Jerusalem may not be greater than that On that day the LORD will defend the of Judah. people of Jerusalem, so that the weakest among a them will be like David, and the house of David will be like God, like the angel of the LORD going 9 before them. So on that day I will set out to destroy all the Mourning the One They Pierced nations that come against Jerusalem." + }, + { + "verseNum": 10, + "text": "–14) 3" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 7, + "text": "–9 ;" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 16, + "text": "–21) 33 34 c And the LORD said to Moses, “Speak to the Israelites and say, ‘On the fifteenth day of the sev- enth month the Feast of Tabernacles to the 35 LORD begins, and it continues for seven days. 36 On the first day there shall be a sacred assem- bly. You must not do any regular work. For seven days you are to present a food offering to the LORD. On the eighth day you are to hold a sa- cred assembly and present a food offering to the LORD. It is a solemn assembly; you must not do 37 any regular work. These are the LORD’s appointed feasts, which you are to proclaim as sacred assemblies for presenting food offerings to the LORD—burnt of- ferings and grain offerings, sacrifices and drink offerings, each on its designated day. These offerings are in addition to the offerings for the LORD’s Sabbaths, and in addition to your gifts, to all your vow offerings, and to all the freewill 39 offerings you give to the LORD. 38 On the fifteenth day of the seventh month, af- ter you have gathered the produce of the land, you are to celebrate a feast to the LORD for seven days. There shall be complete rest on the first 40 day and also on the eighth day. d 41 On the first day you are to gather the fruit of majestic trees, the branches of palm trees, and the boughs of leafy trees and of willows of the brook. And you are to rejoice before the LORD your God for seven days. You are to cel- ebrate this as a feast to the LORD for seven days each year. This is a permanent statute for the generat" + }, + { + "verseNum": 21, + "text": "| 857 horses and mules, camels and donkeys, and all All Nations Will Worship the King the animals in those camps." + } + ] + } + ] + }, + { + "name": "Malachi", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–5) 5 b 29 And we know that God works all things to- gether for the good of those who love Him, who For those are called according to His purpose. God foreknew, He also predestined to be con- 30 formed to the image of His Son, so that He would a 36 And be the firstborn among many brothers. forever blessed b 5 6 It is not as though God’s word has failed. For not 7 all who are descended from Israel are Israel. Nor because they are Abraham’s descendants are they all his children. On the contrary," + }, + { + "verseNum": 2, + "text": "–3" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–5 ;" + }, + { + "verseNum": 10, + "text": "| 859 7 True instruction was in his mouth, and nothing false was found on his lips. He walked with Me in peace and uprightness, and he turned many from For the lips of a priest should preserve iniquity. knowledge, and people should seek instruction from his mouth, because he is the messenger of 8 the LORD of Hosts. 9 But you have departed from the way, and your instruction has caused many to stumble. You have violated the covenant of Levi,” says the “So I in turn have made you des- LORD of Hosts. pised and humiliated before all the people, be- cause you have not kept My ways, but have Judah’s Unfaithfulness shown partiality in matters of the law.” 10 Do we not all have one Father? Did not one God create us? Why then do we break faith with one another so as to profane the covenant of our 11 fathers? Judah has broken faith; an abomination has been committed in Israel and in Jerusalem. For Judah has profaned the LORD’s beloved sanctu- 12 ary by marrying the daughter of a foreign god. As for the man who does this, may the LORD cut off from the tents of Jacob everyone who is awake and aware—even if he brings an offering 13 to the LORD of Hosts. And this is another thing you do: You cover the altar of the LORD with tears, with weeping and groaning, because He no longer regards your of- 14 ferings or receives them gladly from your hands. Yet you ask, “Why?” It is because the LORD has been a witness be- tween you and the wife of your youth, against whom you have broken faith, though" + }, + { + "verseNum": 11, + "text": "a 11 18 b I will out for you blessing without measure. rebuke the devourer for you, so that it will not destroy the fruits of your land, and the vine in your field will not fail to produce fruit,” says the 12 LORD of Hosts. “Then all the nations will call you blessed, for you will be a land of delight,” says the LORD of The Book of Remembrance Hosts. 13 “Your words against Me have been harsh,” says the LORD. “Yet you ask, ‘What have we spo- 14 ken against You?’ You have said, ‘It is futile to serve God. What have we gained by keeping His requirements and 15 walking mournfully before the LORD of Hosts? So now we call the arrogant blessed. Not only do evildoers prosper, they even test God and es- 16 cape.’ ” At that time those who feared the LORD spoke with one another, and the LORD listened and heard them. So a scroll of remembrance was written before Him regarding those who feared 17 the LORD and honored His name. “They will be Mine,” says the LORD of Hosts, “on the day when I prepare My treasured posses- sion. And I will spare them as a man spares his So you will again dis- own son who serves him. tinguish between the righteous and the wicked, between those who serve God and those who do The Day of the LORD not.” (Zeph. 1:7–18 ; 1 Thess. 5:1–11 ;" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "–6 ; 1 Thess. 5:1–11 ;" + }, + { + "verseNum": 5, + "text": ". Or BYZ and TR Come to Me, all you who are weary and bur- dened, and I will give you rest. Take My yoke c 5 he sent two of his disciples upon you and learn from Me, for I am gentle and f 12 e 10 has been forcefully advancing leper" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB_SAMPLES/new_testament.json b/data/en_bible/BSB_SAMPLES/new_testament.json new file mode 100644 index 0000000..69a090a --- /dev/null +++ b/data/en_bible/BSB_SAMPLES/new_testament.json @@ -0,0 +1,4 @@ +{ + "testament": "New Testament", + "books": [] +} \ No newline at end of file diff --git a/data/en_bible/BSB_SAMPLES/old_testament.json b/data/en_bible/BSB_SAMPLES/old_testament.json new file mode 100644 index 0000000..c1111da --- /dev/null +++ b/data/en_bible/BSB_SAMPLES/old_testament.json @@ -0,0 +1,19 @@ +{ + "testament": "Old Testament", + "books": [ + { + "name": "Genesis", + "chapters": [ + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 20, + "text": "until you return to the ground— because out of it were you taken. “I do not know!” he answered. “Am I my brother’s" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB_VALIDATION/report.json b/data/en_bible/BSB_VALIDATION/report.json new file mode 100644 index 0000000..33cdaf3 --- /dev/null +++ b/data/en_bible/BSB_VALIDATION/report.json @@ -0,0 +1,1517 @@ +{ + "file": "bibles/bible-bsb.md", + "totals": { + "versesTagged": 2030 + }, + "books": [ + { + "name": "Genesis", + "testament": "OT", + "expectedChapters": 50, + "detectedChapters": [ + 1, + 2, + 3, + 5, + 6, + 7, + 9, + 11, + 12, + 14, + 15, + 17, + 18, + 19, + 21, + 22, + 23, + 24, + 25, + 26, + 28, + 30, + 31, + 33, + 35, + 36, + 37, + 39, + 41, + 42, + 44, + 46, + 48, + 50 + ], + "detectedCount": 34, + "coverage": 68, + "verseMarkers": 81 + }, + { + "name": "Exodus", + "testament": "OT", + "expectedChapters": 40, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 6, + 8, + 9, + 10, + 12, + 13, + 14, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40 + ], + "detectedCount": 36, + "coverage": 90, + "verseMarkers": 123 + }, + { + "name": "Leviticus", + "testament": "OT", + "expectedChapters": 27, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 18, + 19, + 20, + 21, + 23, + 24, + 25, + 26, + 27 + ], + "detectedCount": 24, + "coverage": 88.89, + "verseMarkers": 58 + }, + { + "name": "Numbers", + "testament": "OT", + "expectedChapters": 36, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13, + 14, + 15, + 16, + 18, + 20, + 21, + 22, + 23, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 34, + 35, + 36 + ], + "detectedCount": 30, + "coverage": 83.33, + "verseMarkers": 61 + }, + { + "name": "Deuteronomy", + "testament": "OT", + "expectedChapters": 34, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 14, + 15, + 16, + 18, + 19, + 21, + 23, + 24, + 25, + 27, + 30, + 31, + 32 + ], + "detectedCount": 25, + "coverage": 73.53, + "verseMarkers": 68 + }, + { + "name": "Joshua", + "testament": "OT", + "expectedChapters": 24, + "detectedChapters": [ + 1, + 3, + 6, + 8, + 9, + 11, + 13, + 15, + 18, + 19, + 21, + 22, + 24 + ], + "detectedCount": 13, + "coverage": 54.17, + "verseMarkers": 18 + }, + { + "name": "Judges", + "testament": "OT", + "expectedChapters": 21, + "detectedChapters": [ + 1, + 2, + 3, + 5, + 6, + 8, + 9, + 11, + 13, + 14, + 16, + 18, + 19, + 20, + 21 + ], + "detectedCount": 15, + "coverage": 71.43, + "verseMarkers": 19 + }, + { + "name": "Ruth", + "testament": "OT", + "expectedChapters": 4, + "detectedChapters": [ + 1, + 4 + ], + "detectedCount": 2, + "coverage": 50, + "verseMarkers": 4 + }, + { + "name": "1 Samuel", + "testament": "OT", + "expectedChapters": 31, + "detectedChapters": [ + 1, + 2, + 3, + 6, + 8, + 10, + 13, + 14, + 15, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 25, + 26, + 28, + 31 + ], + "detectedCount": 20, + "coverage": 64.52, + "verseMarkers": 32 + }, + { + "name": "2 Samuel", + "testament": "OT", + "expectedChapters": 24, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 21, + 22, + 23, + 24 + ], + "detectedCount": 23, + "coverage": 95.83, + "verseMarkers": 42 + }, + { + "name": "1 Kings", + "testament": "OT", + "expectedChapters": 22, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 18, + 19, + 20, + 21, + 22 + ], + "detectedCount": 21, + "coverage": 95.45, + "verseMarkers": 65 + }, + { + "name": "2 Kings", + "testament": "OT", + "expectedChapters": 25, + "detectedChapters": [ + 1, + 3, + 4, + 5, + 6, + 8, + 9, + 11, + 12, + 13, + 14, + 15, + 16, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25 + ], + "detectedCount": 21, + "coverage": 84, + "verseMarkers": 77 + }, + { + "name": "1 Chronicles", + "testament": "OT", + "expectedChapters": 29, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 24, + 26, + 28, + 29 + ], + "detectedCount": 25, + "coverage": 86.21, + "verseMarkers": 48 + }, + { + "name": "2 Chronicles", + "testament": "OT", + "expectedChapters": 36, + "detectedChapters": [ + 1, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 14, + 16, + 17, + 18, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 32, + 33, + 34, + 35, + 36 + ], + "detectedCount": 30, + "coverage": 83.33, + "verseMarkers": 66 + }, + { + "name": "Ezra", + "testament": "OT", + "expectedChapters": 10, + "detectedChapters": [ + 1, + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "detectedCount": 9, + "coverage": 90, + "verseMarkers": 12 + }, + { + "name": "Nehemiah", + "testament": "OT", + "expectedChapters": 13, + "detectedChapters": [ + 4, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "detectedCount": 8, + "coverage": 61.54, + "verseMarkers": 12 + }, + { + "name": "Esther", + "testament": "OT", + "expectedChapters": 10, + "detectedChapters": [ + 2, + 6, + 9 + ], + "detectedCount": 3, + "coverage": 30, + "verseMarkers": 3 + }, + { + "name": "Job", + "testament": "OT", + "expectedChapters": 42, + "detectedChapters": [ + 1, + 5, + 8, + 11, + 14, + 18, + 21, + 24, + 28, + 31, + 33, + 36, + 38, + 41 + ], + "detectedCount": 14, + "coverage": 33.33, + "verseMarkers": 18 + }, + { + "name": "Psalms", + "testament": "OT", + "expectedChapters": 150, + "detectedChapters": [ + 1, + 2, + 3, + 5, + 6, + 8, + 10, + 11, + 13, + 14, + 16, + 18, + 19, + 21, + 22, + 23, + 24, + 25, + 29, + 31, + 32, + 33, + 34, + 36, + 37, + 38, + 40, + 41, + 44, + 45, + 49, + 51, + 52, + 53, + 54, + 57, + 59, + 62, + 64, + 66, + 68, + 69, + 70, + 72, + 74, + 75, + 78, + 79, + 82, + 83, + 84, + 88, + 89, + 91, + 93, + 94, + 95, + 96, + 98, + 99, + 100, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 112, + 113, + 115, + 116, + 117, + 118, + 119, + 127, + 128, + 135, + 136, + 137, + 139, + 140, + 142, + 144, + 148, + 149 + ], + "detectedCount": 88, + "coverage": 58.67, + "verseMarkers": 178 + }, + { + "name": "Proverbs", + "testament": "OT", + "expectedChapters": 31, + "detectedChapters": [ + 1, + 3, + 4, + 5, + 7, + 10, + 11, + 12, + 14, + 16, + 19, + 21, + 23, + 25, + 26, + 27, + 28, + 30 + ], + "detectedCount": 18, + "coverage": 58.06, + "verseMarkers": 26 + }, + { + "name": "Ecclesiastes", + "testament": "OT", + "expectedChapters": 12, + "detectedChapters": [ + 5, + 8, + 11 + ], + "detectedCount": 3, + "coverage": 25, + "verseMarkers": 5 + }, + { + "name": "Song of Songs", + "testament": "OT", + "expectedChapters": 8, + "detectedChapters": [ + 1, + 5, + 8 + ], + "detectedCount": 3, + "coverage": 37.5, + "verseMarkers": 4 + }, + { + "name": "Isaiah", + "testament": "OT", + "expectedChapters": 66, + "detectedChapters": [ + 1, + 2, + 3, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 14, + 15, + 16, + 17, + 21, + 22, + 23, + 25, + 26, + 27, + 28, + 29, + 30, + 32, + 34, + 35, + 37, + 38, + 40, + 41, + 42, + 43, + 44, + 45, + 48, + 49, + 50, + 52, + 53, + 54, + 56, + 57, + 59, + 61, + 63, + 64, + 65, + 66 + ], + "detectedCount": 49, + "coverage": 74.24, + "verseMarkers": 137 + }, + { + "name": "Jeremiah", + "testament": "OT", + "expectedChapters": 52, + "detectedChapters": [ + 3, + 4, + 6, + 7, + 9, + 10, + 13, + 14, + 15, + 17, + 18, + 19, + 21, + 23, + 25, + 26, + 29, + 30, + 31, + 32, + 33, + 35, + 37, + 39, + 40, + 41, + 42, + 44, + 46, + 48, + 49, + 50, + 51, + 52 + ], + "detectedCount": 34, + "coverage": 65.38, + "verseMarkers": 53 + }, + { + "name": "Lamentations", + "testament": "OT", + "expectedChapters": 5, + "detectedChapters": [ + 2, + 3, + 5 + ], + "detectedCount": 3, + "coverage": 60, + "verseMarkers": 3 + }, + { + "name": "Ezekiel", + "testament": "OT", + "expectedChapters": 48, + "detectedChapters": [ + 1, + 3, + 6, + 8, + 11, + 13, + 14, + 16, + 17, + 19, + 20, + 22, + 23, + 26, + 28, + 29, + 32, + 33, + 34, + 35, + 36, + 37, + 39, + 40, + 42, + 44, + 45, + 46, + 48 + ], + "detectedCount": 29, + "coverage": 60.42, + "verseMarkers": 40 + }, + { + "name": "Daniel", + "testament": "OT", + "expectedChapters": 12, + "detectedChapters": [ + 3, + 4, + 6, + 7, + 9, + 11, + 12 + ], + "detectedCount": 7, + "coverage": 58.33, + "verseMarkers": 10 + }, + { + "name": "Hosea", + "testament": "OT", + "expectedChapters": 14, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 6, + 9, + 10, + 11, + 13 + ], + "detectedCount": 9, + "coverage": 64.29, + "verseMarkers": 16 + }, + { + "name": "Joel", + "testament": "OT", + "expectedChapters": 3, + "detectedChapters": [ + 1, + 2, + 3 + ], + "detectedCount": 3, + "coverage": 100, + "verseMarkers": 6 + }, + { + "name": "Amos", + "testament": "OT", + "expectedChapters": 9, + "detectedChapters": [ + 1, + 4, + 5, + 6, + 7, + 9 + ], + "detectedCount": 6, + "coverage": 66.67, + "verseMarkers": 10 + }, + { + "name": "Obadiah", + "testament": "OT", + "expectedChapters": 1, + "detectedChapters": [ + 1 + ], + "detectedCount": 1, + "coverage": 100, + "verseMarkers": 2 + }, + { + "name": "Jonah", + "testament": "OT", + "expectedChapters": 4, + "detectedChapters": [ + 1, + 3, + 4 + ], + "detectedCount": 3, + "coverage": 75, + "verseMarkers": 5 + }, + { + "name": "Micah", + "testament": "OT", + "expectedChapters": 7, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "detectedCount": 7, + "coverage": 100, + "verseMarkers": 15 + }, + { + "name": "Nahum", + "testament": "OT", + "expectedChapters": 3, + "detectedChapters": [ + 1, + 3 + ], + "detectedCount": 2, + "coverage": 66.67, + "verseMarkers": 2 + }, + { + "name": "Habakkuk", + "testament": "OT", + "expectedChapters": 3, + "detectedChapters": [ + 1, + 2, + 3 + ], + "detectedCount": 3, + "coverage": 100, + "verseMarkers": 6 + }, + { + "name": "Zephaniah", + "testament": "OT", + "expectedChapters": 3, + "detectedChapters": [ + 1, + 2 + ], + "detectedCount": 2, + "coverage": 66.67, + "verseMarkers": 3 + }, + { + "name": "Haggai", + "testament": "OT", + "expectedChapters": 2, + "detectedChapters": [ + 1, + 2 + ], + "detectedCount": 2, + "coverage": 100, + "verseMarkers": 2 + }, + { + "name": "Zechariah", + "testament": "OT", + "expectedChapters": 14, + "detectedChapters": [ + 2, + 6, + 8, + 9, + 11, + 12, + 13, + 14 + ], + "detectedCount": 8, + "coverage": 57.14, + "verseMarkers": 17 + }, + { + "name": "Malachi", + "testament": "OT", + "expectedChapters": 4, + "detectedChapters": [ + 1, + 3, + 4 + ], + "detectedCount": 3, + "coverage": 75, + "verseMarkers": 9 + }, + { + "name": "Matthew", + "testament": "NT", + "expectedChapters": 28, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28 + ], + "detectedCount": 28, + "coverage": 100, + "verseMarkers": 207 + }, + { + "name": "Mark", + "testament": "NT", + "expectedChapters": 16, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16 + ], + "detectedCount": 16, + "coverage": 100, + "verseMarkers": 99 + }, + { + "name": "Luke", + "testament": "NT", + "expectedChapters": 24, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24 + ], + "detectedCount": 24, + "coverage": 100, + "verseMarkers": 78 + }, + { + "name": "John", + "testament": "NT", + "expectedChapters": 21, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 7, + 8, + 9, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21 + ], + "detectedCount": 19, + "coverage": 90.48, + "verseMarkers": 37 + }, + { + "name": "Acts", + "testament": "NT", + "expectedChapters": 28, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 6, + 7, + 8, + 9, + 10, + 11, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 25, + 27, + 28 + ], + "detectedCount": 24, + "coverage": 85.71, + "verseMarkers": 58 + }, + { + "name": "Romans", + "testament": "NT", + "expectedChapters": 16, + "detectedChapters": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 10, + 11, + 12, + 13, + 14, + 15, + 16 + ], + "detectedCount": 14, + "coverage": 87.5, + "verseMarkers": 35 + }, + { + "name": "1 Corinthians", + "testament": "NT", + "expectedChapters": 16, + "detectedChapters": [ + 1, + 2, + 3, + 7, + 9, + 10, + 12, + 14, + 16 + ], + "detectedCount": 9, + "coverage": 56.25, + "verseMarkers": 20 + }, + { + "name": "2 Corinthians", + "testament": "NT", + "expectedChapters": 13, + "detectedChapters": [ + 3, + 5, + 8, + 9, + 11, + 12 + ], + "detectedCount": 6, + "coverage": 46.15, + "verseMarkers": 9 + }, + { + "name": "Galatians", + "testament": "NT", + "expectedChapters": 6, + "detectedChapters": [ + 3, + 4, + 5, + 6 + ], + "detectedCount": 4, + "coverage": 66.67, + "verseMarkers": 5 + }, + { + "name": "Ephesians", + "testament": "NT", + "expectedChapters": 6, + "detectedChapters": [ + 1, + 2, + 4, + 5, + 6 + ], + "detectedCount": 5, + "coverage": 83.33, + "verseMarkers": 15 + }, + { + "name": "Philippians", + "testament": "NT", + "expectedChapters": 4, + "detectedChapters": [ + 1, + 2, + 3, + 4 + ], + "detectedCount": 4, + "coverage": 100, + "verseMarkers": 12 + }, + { + "name": "Colossians", + "testament": "NT", + "expectedChapters": 4, + "detectedChapters": [ + 1, + 2, + 3, + 4 + ], + "detectedCount": 4, + "coverage": 100, + "verseMarkers": 11 + }, + { + "name": "1 Thessalonians", + "testament": "NT", + "expectedChapters": 5, + "detectedChapters": [ + 1, + 4 + ], + "detectedCount": 2, + "coverage": 40, + "verseMarkers": 2 + }, + { + "name": "2 Thessalonians", + "testament": "NT", + "expectedChapters": 3, + "detectedChapters": [ + 1 + ], + "detectedCount": 1, + "coverage": 33.33, + "verseMarkers": 1 + }, + { + "name": "1 Timothy", + "testament": "NT", + "expectedChapters": 6, + "detectedChapters": [ + 1, + 3, + 5, + 6 + ], + "detectedCount": 4, + "coverage": 66.67, + "verseMarkers": 8 + }, + { + "name": "2 Timothy", + "testament": "NT", + "expectedChapters": 4, + "detectedChapters": [ + 1, + 2, + 3, + 4 + ], + "detectedCount": 4, + "coverage": 100, + "verseMarkers": 5 + }, + { + "name": "Titus", + "testament": "NT", + "expectedChapters": 3, + "detectedChapters": [ + 1, + 3 + ], + "detectedCount": 2, + "coverage": 66.67, + "verseMarkers": 5 + }, + { + "name": "Philemon", + "testament": "NT", + "expectedChapters": 1, + "detectedChapters": [ + 1 + ], + "detectedCount": 1, + "coverage": 100, + "verseMarkers": 0 + }, + { + "name": "Hebrews", + "testament": "NT", + "expectedChapters": 13, + "detectedChapters": [ + 1, + 3, + 4, + 5, + 7, + 8, + 10, + 11, + 12 + ], + "detectedCount": 9, + "coverage": 69.23, + "verseMarkers": 18 + }, + { + "name": "James", + "testament": "NT", + "expectedChapters": 5, + "detectedChapters": [ + 1, + 2, + 3, + 5 + ], + "detectedCount": 4, + "coverage": 80, + "verseMarkers": 6 + }, + { + "name": "1 Peter", + "testament": "NT", + "expectedChapters": 5, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5 + ], + "detectedCount": 5, + "coverage": 100, + "verseMarkers": 8 + }, + { + "name": "2 Peter", + "testament": "NT", + "expectedChapters": 3, + "detectedChapters": [ + 1, + 3 + ], + "detectedCount": 2, + "coverage": 66.67, + "verseMarkers": 3 + }, + { + "name": "1 John", + "testament": "NT", + "expectedChapters": 5, + "detectedChapters": [ + 1, + 3, + 5 + ], + "detectedCount": 3, + "coverage": 60, + "verseMarkers": 3 + }, + { + "name": "2 John", + "testament": "NT", + "expectedChapters": 1, + "detectedChapters": [ + 1 + ], + "detectedCount": 1, + "coverage": 100, + "verseMarkers": 3 + }, + { + "name": "3 John", + "testament": "NT", + "expectedChapters": 1, + "detectedChapters": [ + 1, + 13, + 20 + ], + "detectedCount": 3, + "coverage": 300, + "verseMarkers": 4 + }, + { + "name": "Jude", + "testament": "NT", + "expectedChapters": 1, + "detectedChapters": [ + 1 + ], + "detectedCount": 1, + "coverage": 100, + "verseMarkers": 5 + }, + { + "name": "Revelation", + "testament": "NT", + "expectedChapters": 22, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 7, + 10, + 11, + 13, + 15, + 17, + 18, + 19, + 21, + 22 + ], + "detectedCount": 14, + "coverage": 63.64, + "verseMarkers": 17 + } + ] +} \ No newline at end of file diff --git a/data/en_bible/WEB/new_testament.json b/data/en_bible/WEB/new_testament.json new file mode 100644 index 0000000..93227f1 --- /dev/null +++ b/data/en_bible/WEB/new_testament.json @@ -0,0 +1,33272 @@ +{ + "testament": "New Testament", + "books": [ + { + "name": "Matthew", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"G2424\"* book of|strong=\"G5207\"* the|strong=\"G2424\"* genealogy|strong=\"G1078\"* of|strong=\"G5207\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:1 Messiah (Hebrew) and Christ (Greek) both mean “Anointed One”* the|strong=\"G2424\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*, the|strong=\"G2424\"* son|strong=\"G5207\"* of|strong=\"G5207\"* Abraham." + }, + { + "verseNum": 2, + "text": "Abraham became|strong=\"G1080\"* the|strong=\"G2532\"* father|strong=\"G1080\"* of|strong=\"G2532\"* Isaac|strong=\"G2464\"*. Isaac|strong=\"G2464\"* became|strong=\"G1080\"* the|strong=\"G2532\"* father|strong=\"G1080\"* of|strong=\"G2532\"* Jacob|strong=\"G2384\"*. Jacob|strong=\"G2384\"* became|strong=\"G1080\"* the|strong=\"G2532\"* father|strong=\"G1080\"* of|strong=\"G2532\"* Judah|strong=\"G2455\"* and|strong=\"G2532\"* his|strong=\"G2532\"* brothers." + }, + { + "verseNum": 3, + "text": "Judah|strong=\"G2455\"* became|strong=\"G1080\"* the|strong=\"G2532\"* father|strong=\"G1080\"* of|strong=\"G1537\"* Perez|strong=\"G5329\"* and|strong=\"G2532\"* Zerah|strong=\"G2196\"* by|strong=\"G1537\"* Tamar|strong=\"G2283\"*. Perez|strong=\"G5329\"* became|strong=\"G1080\"* the|strong=\"G2532\"* father|strong=\"G1080\"* of|strong=\"G1537\"* Hezron|strong=\"G2074\"*. Hezron|strong=\"G2074\"* became|strong=\"G1080\"* the|strong=\"G2532\"* father|strong=\"G1080\"* of|strong=\"G1537\"* Ram." + }, + { + "verseNum": 4, + "text": "Ram became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Amminadab. Amminadab became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Nahshon|strong=\"G3476\"*. Nahshon|strong=\"G3476\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Salmon|strong=\"G4533\"*." + }, + { + "verseNum": 5, + "text": "Salmon|strong=\"G4533\"* became|strong=\"G1080\"* the|strong=\"G1537\"* father|strong=\"G1080\"* of|strong=\"G1537\"* Boaz|strong=\"G1003\"* by|strong=\"G1537\"* Rahab|strong=\"G4477\"*. Boaz|strong=\"G1003\"* became|strong=\"G1080\"* the|strong=\"G1537\"* father|strong=\"G1080\"* of|strong=\"G1537\"* Obed|strong=\"G5601\"* by|strong=\"G1537\"* Ruth|strong=\"G4503\"*. Obed|strong=\"G5601\"* became|strong=\"G1080\"* the|strong=\"G1537\"* father|strong=\"G1080\"* of|strong=\"G1537\"* Jesse|strong=\"G2421\"*." + }, + { + "verseNum": 6, + "text": "Jesse|strong=\"G2421\"* became|strong=\"G1080\"* the|strong=\"G1537\"* father|strong=\"G1080\"* of|strong=\"G1537\"* King|strong=\"G3588\"* David|strong=\"G1138\"*. David|strong=\"G1138\"* the|strong=\"G1537\"* king|strong=\"G3588\"*+ 1:6 NU omits “the king”.* became|strong=\"G1080\"* the|strong=\"G1537\"* father|strong=\"G1080\"* of|strong=\"G1537\"* Solomon|strong=\"G4672\"* by|strong=\"G1537\"* her|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G3588\"* been Uriah|strong=\"G3774\"*’s wife." + }, + { + "verseNum": 7, + "text": "Solomon|strong=\"G4672\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Rehoboam|strong=\"G4497\"*. Rehoboam|strong=\"G4497\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Abijah. Abijah became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Asa." + }, + { + "verseNum": 8, + "text": "Asa became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Jehoshaphat|strong=\"G2498\"*. Jehoshaphat|strong=\"G2498\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Joram|strong=\"G2496\"*. Joram|strong=\"G2496\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Uzziah|strong=\"G3604\"*." + }, + { + "verseNum": 9, + "text": "Uzziah|strong=\"G3604\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Jotham|strong=\"G2488\"*. Jotham|strong=\"G2488\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Ahaz. Ahaz became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Hezekiah|strong=\"G1478\"*." + }, + { + "verseNum": 10, + "text": "Hezekiah|strong=\"G1478\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Manasseh|strong=\"G3128\"*. Manasseh|strong=\"G3128\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Amon. Amon became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Josiah|strong=\"G2502\"*." + }, + { + "verseNum": 11, + "text": "Josiah|strong=\"G2502\"* became|strong=\"G1080\"* the|strong=\"G2532\"* father|strong=\"G1080\"* of|strong=\"G2532\"* Jechoniah and|strong=\"G2532\"* his|strong=\"G1909\"* brothers at|strong=\"G1909\"* the|strong=\"G2532\"* time|strong=\"G1909\"* of|strong=\"G2532\"* the|strong=\"G2532\"* exile to|strong=\"G2532\"* Babylon." + }, + { + "verseNum": 12, + "text": "After|strong=\"G3326\"* the|strong=\"G1161\"* exile to|strong=\"G1161\"* Babylon, Jechoniah became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Shealtiel|strong=\"G4528\"*. Shealtiel|strong=\"G4528\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Zerubbabel|strong=\"G2216\"*." + }, + { + "verseNum": 13, + "text": "Zerubbabel|strong=\"G2216\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Abiud. Abiud became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Eliakim|strong=\"G1662\"*. Eliakim|strong=\"G1662\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Azor." + }, + { + "verseNum": 14, + "text": "Azor became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Zadok|strong=\"G4524\"*. Zadok|strong=\"G4524\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Achim. Achim became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Eliud|strong=\"G1664\"*." + }, + { + "verseNum": 15, + "text": "Eliud|strong=\"G1664\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Eleazar|strong=\"G1648\"*. Eleazar|strong=\"G1648\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Matthan|strong=\"G3157\"*. Matthan|strong=\"G3157\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Jacob|strong=\"G2384\"*." + }, + { + "verseNum": 16, + "text": "Jacob|strong=\"G2384\"* became|strong=\"G1080\"* the|strong=\"G1537\"* father|strong=\"G1080\"* of|strong=\"G1537\"* Joseph|strong=\"G2501\"*, the|strong=\"G1537\"* husband of|strong=\"G1537\"* Mary|strong=\"G3137\"*, from|strong=\"G1537\"* whom|strong=\"G3739\"* was|strong=\"G3588\"* born|strong=\"G1080\"* Jesus|strong=\"G2424\"*,+ 1:16 “Jesus” means “Salvation”.* who|strong=\"G3739\"* is|strong=\"G3588\"* called|strong=\"G3004\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 17, + "text": "So|strong=\"G3767\"* all|strong=\"G3956\"* the|strong=\"G2532\"* generations|strong=\"G1074\"* from|strong=\"G2532\"* Abraham to|strong=\"G2532\"* David|strong=\"G1138\"* are|strong=\"G3588\"* fourteen|strong=\"G1180\"* generations|strong=\"G1074\"*; from|strong=\"G2532\"* David|strong=\"G1138\"* to|strong=\"G2532\"* the|strong=\"G2532\"* exile to|strong=\"G2532\"* Babylon fourteen|strong=\"G1180\"* generations|strong=\"G1074\"*; and|strong=\"G2532\"* from|strong=\"G2532\"* the|strong=\"G2532\"* carrying away to|strong=\"G2532\"* Babylon to|strong=\"G2532\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*, fourteen|strong=\"G1180\"* generations|strong=\"G1074\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"G1161\"* the|strong=\"G1722\"* birth|strong=\"G1078\"* of|strong=\"G1537\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* was|strong=\"G1510\"* like|strong=\"G3779\"* this|strong=\"G3588\"*: After|strong=\"G1161\"* his|strong=\"G1438\"* mother|strong=\"G3384\"*, Mary|strong=\"G3137\"*, was|strong=\"G1510\"* engaged|strong=\"G3423\"* to|strong=\"G1722\"* Joseph|strong=\"G2501\"*, before|strong=\"G4250\"* they|strong=\"G1161\"* came|strong=\"G4905\"* together|strong=\"G4905\"*, she|strong=\"G1161\"* was|strong=\"G1510\"* found|strong=\"G2147\"* pregnant|strong=\"G1064\"* by|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 19, + "text": "Joseph|strong=\"G2501\"*, her|strong=\"G1438\"* husband, being|strong=\"G1510\"* a|strong=\"G2532\"* righteous|strong=\"G1342\"* man|strong=\"G1342\"*, and|strong=\"G2532\"* not|strong=\"G3361\"* willing|strong=\"G2309\"* to|strong=\"G2532\"* make|strong=\"G2532\"* her|strong=\"G1438\"* a|strong=\"G2532\"* public example, intended|strong=\"G1014\"* to|strong=\"G2532\"* put|strong=\"G2532\"* her|strong=\"G1438\"* away secretly|strong=\"G2977\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* he|strong=\"G1161\"* thought|strong=\"G1760\"* about|strong=\"G2596\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, behold|strong=\"G2400\"*,+ 1:20 “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* an|strong=\"G1722\"* angel of|strong=\"G1537\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* appeared|strong=\"G3708\"* to|strong=\"G2596\"* him|strong=\"G3588\"* in|strong=\"G1722\"* a|strong=\"G1722\"* dream|strong=\"G3677\"*, saying|strong=\"G3004\"*, “Joseph|strong=\"G2501\"*, son|strong=\"G5207\"* of|strong=\"G1537\"* David|strong=\"G1138\"*, don’t|strong=\"G3588\"* be|strong=\"G1510\"* afraid|strong=\"G5399\"* to|strong=\"G2596\"* take|strong=\"G3880\"* to|strong=\"G2596\"* yourself|strong=\"G4771\"* Mary|strong=\"G3137\"* as|strong=\"G1722\"* your|strong=\"G2962\"* wife|strong=\"G1135\"*, for|strong=\"G1063\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G1510\"* conceived|strong=\"G1080\"* in|strong=\"G1722\"* her|strong=\"G3708\"* is|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 21, + "text": "She|strong=\"G2532\"* shall|strong=\"G2532\"* give|strong=\"G5088\"* birth|strong=\"G5088\"* to|strong=\"G2532\"* a|strong=\"G2532\"* son|strong=\"G5207\"*. You|strong=\"G2564\"* shall|strong=\"G2532\"* name|strong=\"G3686\"* him|strong=\"G3588\"* Jesus|strong=\"G2424\"*,+ 1:21 “Jesus” means “Salvation”.* for|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G3588\"* he|strong=\"G2532\"* who|strong=\"G3588\"* shall|strong=\"G2532\"* save|strong=\"G4982\"* his|strong=\"G2532\"* people|strong=\"G2992\"* from|strong=\"G2532\"* their|strong=\"G2532\"* sins.”" + }, + { + "verseNum": 22, + "text": "Now|strong=\"G1161\"* all|strong=\"G3650\"* this|strong=\"G3778\"* has|strong=\"G2962\"* happened|strong=\"G1096\"* that|strong=\"G2443\"* it|strong=\"G1161\"* might|strong=\"G3778\"* be|strong=\"G1096\"* fulfilled|strong=\"G4137\"* which|strong=\"G3588\"* was|strong=\"G1096\"* spoken|strong=\"G3004\"* by|strong=\"G1223\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"* through|strong=\"G1223\"* the|strong=\"G1161\"* prophet|strong=\"G4396\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 23, + "text": "“Behold|strong=\"G2400\"*, the|strong=\"G1722\"* virgin|strong=\"G3933\"* shall|strong=\"G2532\"* be|strong=\"G1510\"* with|strong=\"G3326\"* child|strong=\"G1064\"*," + }, + { + "verseNum": 24, + "text": "Joseph|strong=\"G2501\"* arose|strong=\"G1453\"* from|strong=\"G2532\"* his|strong=\"G4160\"* sleep|strong=\"G5258\"*, and|strong=\"G2532\"* did|strong=\"G4160\"* as|strong=\"G5613\"* the|strong=\"G2532\"* angel of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* commanded|strong=\"G4367\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* took|strong=\"G3880\"* his|strong=\"G4160\"* wife|strong=\"G1135\"* to|strong=\"G2532\"* himself;" + }, + { + "verseNum": 25, + "text": "and|strong=\"G2532\"* didn’t|strong=\"G3588\"* know|strong=\"G1097\"* her|strong=\"G1438\"* sexually until|strong=\"G2193\"* she|strong=\"G2532\"* had|strong=\"G2424\"* given|strong=\"G2564\"* birth|strong=\"G5088\"* to|strong=\"G2532\"* her|strong=\"G1438\"* firstborn son|strong=\"G5207\"*. He|strong=\"G2532\"* named|strong=\"G3686\"* him|strong=\"G3588\"* Jesus|strong=\"G2424\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* Jesus|strong=\"G2424\"* was|strong=\"G3588\"* born|strong=\"G1080\"* in|strong=\"G1722\"* Bethlehem of|strong=\"G2250\"* Judea|strong=\"G2449\"* in|strong=\"G1722\"* the|strong=\"G1722\"* days|strong=\"G2250\"* of|strong=\"G2250\"* King|strong=\"G3588\"* Herod|strong=\"G2264\"*, behold|strong=\"G2400\"*, wise|strong=\"G3854\"* men|strong=\"G3097\"*+ 2:1 The word for “wise men” (magoi) can also mean teachers, scientists, physicians, astrologers, seers, interpreters of dreams, or sorcerers.* from|strong=\"G3588\"* the|strong=\"G1722\"* east came|strong=\"G3854\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*, saying," + }, + { + "verseNum": 2, + "text": "“Where|strong=\"G4226\"* is|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G1510\"* born|strong=\"G5088\"* King|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"*? For|strong=\"G1063\"* we|strong=\"G1063\"* saw|strong=\"G3708\"* his|strong=\"G1722\"* star in|strong=\"G1722\"* the|strong=\"G1722\"* east, and|strong=\"G2532\"* have|strong=\"G2532\"* come|strong=\"G2064\"* to|strong=\"G2532\"* worship|strong=\"G4352\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 3, + "text": "When|strong=\"G1161\"* King|strong=\"G3588\"* Herod|strong=\"G2264\"* heard it|strong=\"G2532\"*, he|strong=\"G2532\"* was|strong=\"G3588\"* troubled|strong=\"G5015\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* Jerusalem|strong=\"G2414\"* with|strong=\"G3326\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "Gathering|strong=\"G4863\"* together|strong=\"G4863\"* all|strong=\"G3956\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* scribes|strong=\"G1122\"* of|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, he|strong=\"G2532\"* asked|strong=\"G4441\"* them|strong=\"G3588\"* where|strong=\"G4226\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"* would|strong=\"G2532\"* be|strong=\"G2532\"* born|strong=\"G1080\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “In|strong=\"G1722\"* Bethlehem of|strong=\"G1223\"* Judea|strong=\"G2449\"*, for|strong=\"G1063\"* this|strong=\"G3588\"* is|strong=\"G3588\"* written|strong=\"G1125\"* through|strong=\"G1223\"* the|strong=\"G1722\"* prophet|strong=\"G4396\"*," + }, + { + "verseNum": 6, + "text": "‘You|strong=\"G4771\"* Bethlehem, land|strong=\"G1093\"* of|strong=\"G1537\"* Judah|strong=\"G2455\"*," + }, + { + "verseNum": 7, + "text": "Then|strong=\"G5119\"* Herod|strong=\"G2264\"* secretly|strong=\"G2977\"* called|strong=\"G2564\"* the|strong=\"G3588\"* wise men|strong=\"G3097\"*, and|strong=\"G3588\"* learned from|strong=\"G3844\"* them|strong=\"G3588\"* exactly what|strong=\"G3588\"* time|strong=\"G5550\"* the|strong=\"G3588\"* star appeared|strong=\"G5316\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"G2532\"* sent|strong=\"G3992\"* them|strong=\"G3588\"* to|strong=\"G1519\"* Bethlehem, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Go|strong=\"G4198\"* and|strong=\"G2532\"* search|strong=\"G1833\"* diligently for|strong=\"G1519\"* the|strong=\"G2532\"* young child|strong=\"G3813\"*. When|strong=\"G1161\"* you|strong=\"G3004\"* have|strong=\"G2532\"* found|strong=\"G2147\"* him|strong=\"G3588\"*, bring|strong=\"G2532\"* me|strong=\"G1473\"* word|strong=\"G3588\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* I|strong=\"G1473\"* also|strong=\"G2532\"* may|strong=\"G2532\"* come|strong=\"G2064\"* and|strong=\"G2532\"* worship|strong=\"G4352\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 9, + "text": "They|strong=\"G2532\"*, having|strong=\"G2532\"* heard the|strong=\"G1722\"* king|strong=\"G3588\"*, went|strong=\"G4198\"* their|strong=\"G1438\"* way|strong=\"G4198\"*; and|strong=\"G2532\"* behold|strong=\"G2400\"*, the|strong=\"G1722\"* star, which|strong=\"G3739\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* in|strong=\"G1722\"* the|strong=\"G1722\"* east, went|strong=\"G4198\"* before|strong=\"G4254\"* them|strong=\"G3588\"* until|strong=\"G2193\"* it|strong=\"G2532\"* came|strong=\"G2064\"* and|strong=\"G2532\"* stood|strong=\"G2476\"* over|strong=\"G1883\"* where|strong=\"G3757\"* the|strong=\"G1722\"* young|strong=\"G3739\"* child|strong=\"G3813\"* was|strong=\"G1510\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* saw|strong=\"G3708\"* the|strong=\"G1161\"* star, they|strong=\"G1161\"* rejoiced|strong=\"G5463\"* with|strong=\"G3588\"* exceedingly|strong=\"G4970\"* great|strong=\"G3173\"* joy|strong=\"G5479\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* house|strong=\"G3614\"* and|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* young|strong=\"G4374\"* child|strong=\"G3813\"* with|strong=\"G3326\"* Mary|strong=\"G3137\"*, his|strong=\"G1519\"* mother|strong=\"G3384\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* and|strong=\"G2532\"* worshiped|strong=\"G4352\"* him|strong=\"G3588\"*. Opening their|strong=\"G2532\"* treasures|strong=\"G2344\"*, they|strong=\"G2532\"* offered|strong=\"G4374\"* to|strong=\"G1519\"* him|strong=\"G3588\"* gifts|strong=\"G1435\"*: gold|strong=\"G5557\"*, frankincense|strong=\"G3030\"*, and|strong=\"G2532\"* myrrh|strong=\"G4666\"*." + }, + { + "verseNum": 12, + "text": "Being|strong=\"G2532\"* warned|strong=\"G5537\"* in|strong=\"G1519\"* a|strong=\"G2532\"* dream|strong=\"G3677\"* not|strong=\"G3361\"* to|strong=\"G1519\"* return to|strong=\"G1519\"* Herod|strong=\"G2264\"*, they|strong=\"G2532\"* went|strong=\"G2532\"* back|strong=\"G1519\"* to|strong=\"G1519\"* their|strong=\"G2532\"* own country|strong=\"G5561\"* another|strong=\"G2596\"* way|strong=\"G3598\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* departed, behold|strong=\"G2400\"*, an|strong=\"G2532\"* angel of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* appeared|strong=\"G3708\"* to|strong=\"G1519\"* Joseph|strong=\"G2501\"* in|strong=\"G1519\"* a|strong=\"G2532\"* dream|strong=\"G3677\"*, saying|strong=\"G3004\"*, “Arise|strong=\"G1453\"* and|strong=\"G2532\"* take|strong=\"G3880\"* the|strong=\"G2532\"* young child|strong=\"G3813\"* and|strong=\"G2532\"* his|strong=\"G1519\"* mother|strong=\"G3384\"*, and|strong=\"G2532\"* flee|strong=\"G5343\"* into|strong=\"G1519\"* Egypt, and|strong=\"G2532\"* stay there|strong=\"G1563\"* until|strong=\"G2193\"* I|strong=\"G2532\"* tell|strong=\"G3004\"* you|strong=\"G4771\"*, for|strong=\"G1063\"* Herod|strong=\"G2264\"* will|strong=\"G3195\"* seek|strong=\"G2212\"* the|strong=\"G2532\"* young child|strong=\"G3813\"* to|strong=\"G1519\"* destroy him|strong=\"G3588\"*.”" + }, + { + "verseNum": 14, + "text": "He|strong=\"G2532\"* arose|strong=\"G1453\"* and|strong=\"G2532\"* took|strong=\"G3880\"* the|strong=\"G2532\"* young child|strong=\"G3813\"* and|strong=\"G2532\"* his|strong=\"G1519\"* mother|strong=\"G3384\"* by|strong=\"G2532\"* night|strong=\"G3571\"* and|strong=\"G2532\"* departed into|strong=\"G1519\"* Egypt," + }, + { + "verseNum": 15, + "text": "and|strong=\"G2532\"* was|strong=\"G1510\"* there|strong=\"G1563\"* until|strong=\"G2193\"* the|strong=\"G2532\"* death|strong=\"G5054\"* of|strong=\"G1537\"* Herod|strong=\"G2264\"*, that|strong=\"G2443\"* it|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G1510\"* fulfilled|strong=\"G4137\"* which|strong=\"G3588\"* was|strong=\"G1510\"* spoken|strong=\"G3004\"* by|strong=\"G1223\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* through|strong=\"G1223\"* the|strong=\"G2532\"* prophet|strong=\"G4396\"*, saying|strong=\"G3004\"*, “Out|strong=\"G1537\"* of|strong=\"G1537\"* Egypt I|strong=\"G1473\"* called|strong=\"G2564\"* my|strong=\"G1473\"* son|strong=\"G5207\"*.”+ 2:15 Hosea 11:1*" + }, + { + "verseNum": 16, + "text": "Then|strong=\"G2532\"* Herod|strong=\"G2264\"*, when|strong=\"G2532\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G3588\"* mocked|strong=\"G1702\"* by|strong=\"G1722\"* the|strong=\"G1722\"* wise men|strong=\"G3956\"*, was|strong=\"G3588\"* exceedingly|strong=\"G3029\"* angry, and|strong=\"G2532\"* sent|strong=\"G2532\"* out|strong=\"G2532\"* and|strong=\"G2532\"* killed all|strong=\"G3956\"* the|strong=\"G1722\"* male|strong=\"G3816\"* children|strong=\"G3816\"* who|strong=\"G3739\"* were|strong=\"G3588\"* in|strong=\"G1722\"* Bethlehem and|strong=\"G2532\"* in|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* surrounding countryside, from|strong=\"G3844\"* two|strong=\"G1332\"* years|strong=\"G1332\"* old|strong=\"G1332\"* and|strong=\"G2532\"* under|strong=\"G5259\"*, according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* exact|strong=\"G5550\"* time|strong=\"G5550\"* which|strong=\"G3739\"* he|strong=\"G2532\"* had|strong=\"G2532\"* learned from|strong=\"G3844\"* the|strong=\"G1722\"* wise men|strong=\"G3956\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"G5119\"* that|strong=\"G3588\"* which|strong=\"G3588\"* was|strong=\"G3588\"* spoken|strong=\"G3004\"* by|strong=\"G1223\"* Jeremiah|strong=\"G2408\"* the|strong=\"G1223\"* prophet|strong=\"G4396\"* was|strong=\"G3588\"* fulfilled|strong=\"G4137\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 18, + "text": "“A|strong=\"G2532\"* voice|strong=\"G5456\"* was|strong=\"G1510\"* heard in|strong=\"G1722\"* Ramah|strong=\"G4471\"*," + }, + { + "verseNum": 19, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Herod|strong=\"G2264\"* was|strong=\"G3588\"* dead|strong=\"G5053\"*, behold|strong=\"G2400\"*, an|strong=\"G1722\"* angel of|strong=\"G2962\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* appeared|strong=\"G3708\"* in|strong=\"G1722\"* a|strong=\"G1722\"* dream|strong=\"G3677\"* to|strong=\"G2596\"* Joseph|strong=\"G2501\"* in|strong=\"G1722\"* Egypt, saying," + }, + { + "verseNum": 20, + "text": "“Arise|strong=\"G1453\"* and|strong=\"G2532\"* take|strong=\"G3880\"* the|strong=\"G2532\"* young child|strong=\"G3813\"* and|strong=\"G2532\"* his|strong=\"G1519\"* mother|strong=\"G3384\"*, and|strong=\"G2532\"* go|strong=\"G4198\"* into|strong=\"G1519\"* the|strong=\"G2532\"* land|strong=\"G1093\"* of|strong=\"G2532\"* Israel|strong=\"G2474\"*, for|strong=\"G1063\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sought|strong=\"G2212\"* the|strong=\"G2532\"* young child|strong=\"G3813\"*’s life|strong=\"G5590\"* are|strong=\"G3588\"* dead|strong=\"G2348\"*.”" + }, + { + "verseNum": 21, + "text": "He|strong=\"G2532\"* arose|strong=\"G1453\"* and|strong=\"G2532\"* took|strong=\"G3880\"* the|strong=\"G2532\"* young child|strong=\"G3813\"* and|strong=\"G2532\"* his|strong=\"G1519\"* mother|strong=\"G3384\"*, and|strong=\"G2532\"* came|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* land|strong=\"G1093\"* of|strong=\"G2532\"* Israel|strong=\"G2474\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* he|strong=\"G1161\"* heard that|strong=\"G3754\"* Archelaus was|strong=\"G3588\"* reigning over|strong=\"G2596\"* Judea|strong=\"G2449\"* in|strong=\"G1519\"* the|strong=\"G1519\"* place|strong=\"G1563\"* of|strong=\"G3962\"* his|strong=\"G1519\"* father|strong=\"G3962\"*, Herod|strong=\"G2264\"*, he|strong=\"G1161\"* was|strong=\"G3588\"* afraid|strong=\"G5399\"* to|strong=\"G1519\"* go|strong=\"G1519\"* there|strong=\"G1563\"*. Being|strong=\"G1161\"* warned|strong=\"G5537\"* in|strong=\"G1519\"* a|strong=\"G1519\"* dream|strong=\"G3677\"*, he|strong=\"G1161\"* withdrew into|strong=\"G1519\"* the|strong=\"G1519\"* region of|strong=\"G3962\"* Galilee|strong=\"G1056\"*," + }, + { + "verseNum": 23, + "text": "and|strong=\"G2532\"* came|strong=\"G2064\"* and|strong=\"G2532\"* lived|strong=\"G2730\"* in|strong=\"G1519\"* a|strong=\"G2532\"* city|strong=\"G4172\"* called|strong=\"G2564\"* Nazareth|strong=\"G3478\"*; that|strong=\"G3754\"* it|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G2532\"* fulfilled|strong=\"G4137\"* which|strong=\"G3588\"* was|strong=\"G3588\"* spoken|strong=\"G3004\"* through|strong=\"G1223\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"* that|strong=\"G3754\"* he|strong=\"G2532\"* will|strong=\"G2532\"* be|strong=\"G2532\"* called|strong=\"G2564\"* a|strong=\"G2532\"* Nazarene|strong=\"G3480\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"*, John|strong=\"G2491\"* the|strong=\"G1722\"* Baptizer came|strong=\"G3854\"*, preaching|strong=\"G2784\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"* of|strong=\"G2250\"* Judea|strong=\"G2449\"*, saying," + }, + { + "verseNum": 2, + "text": "“Repent|strong=\"G3340\"*, for|strong=\"G1063\"* the|strong=\"G2532\"* Kingdom of|strong=\"G2532\"* Heaven|strong=\"G3772\"* is|strong=\"G3588\"* at|strong=\"G3588\"* hand|strong=\"G1448\"*!”" + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* is|strong=\"G1510\"* he|strong=\"G3778\"* who|strong=\"G3588\"* was|strong=\"G1510\"* spoken|strong=\"G3004\"* of|strong=\"G1223\"* by|strong=\"G1223\"* Isaiah|strong=\"G2268\"* the|strong=\"G1722\"* prophet|strong=\"G4396\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 4, + "text": "Now|strong=\"G1161\"* John|strong=\"G2491\"* himself wore|strong=\"G2192\"* clothing|strong=\"G1742\"* made|strong=\"G1161\"* of|strong=\"G4012\"* camel|strong=\"G2574\"*’s|strong=\"G2192\"* hair|strong=\"G2359\"* with|strong=\"G2532\"* a|strong=\"G2192\"* leather|strong=\"G1193\"* belt|strong=\"G2223\"* around|strong=\"G4012\"* his|strong=\"G4012\"* waist|strong=\"G3751\"*. His|strong=\"G4012\"* food|strong=\"G5160\"* was|strong=\"G1510\"* locusts and|strong=\"G2532\"* wild|strong=\"G2532\"* honey|strong=\"G3192\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"G2532\"* people|strong=\"G3956\"* from|strong=\"G2532\"* Jerusalem|strong=\"G2414\"*, all|strong=\"G3956\"* of|strong=\"G2532\"* Judea|strong=\"G2449\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* region|strong=\"G4066\"* around|strong=\"G4314\"* the|strong=\"G2532\"* Jordan|strong=\"G2446\"* went|strong=\"G2532\"* out|strong=\"G1607\"* to|strong=\"G4314\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* baptized by|strong=\"G1722\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Jordan|strong=\"G2446\"*, confessing|strong=\"G1843\"* their|strong=\"G2532\"* sins." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* many|strong=\"G4183\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* Sadducees|strong=\"G4523\"* coming|strong=\"G2064\"* for|strong=\"G1909\"* his|strong=\"G1909\"* baptism, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “You|strong=\"G5210\"* offspring|strong=\"G1081\"* of|strong=\"G2532\"* vipers|strong=\"G2191\"*, who|strong=\"G5101\"* warned|strong=\"G5263\"* you|strong=\"G5210\"* to|strong=\"G2532\"* flee|strong=\"G5343\"* from|strong=\"G2064\"* the|strong=\"G2532\"* wrath|strong=\"G3709\"* to|strong=\"G2532\"* come|strong=\"G2064\"*?" + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G3767\"* produce|strong=\"G4160\"* fruit|strong=\"G2590\"* worthy of|strong=\"G3588\"* repentance|strong=\"G3341\"*!" + }, + { + "verseNum": 9, + "text": "Don’t|strong=\"G3588\"* think|strong=\"G1380\"* to|strong=\"G2532\"* yourselves|strong=\"G1438\"*, ‘We|strong=\"G3754\"* have|strong=\"G2192\"* Abraham for|strong=\"G1063\"* our|strong=\"G2316\"* father|strong=\"G3962\"*,’ for|strong=\"G1063\"* I|strong=\"G2532\"* tell|strong=\"G3004\"* you|strong=\"G5210\"* that|strong=\"G3754\"* God|strong=\"G2316\"* is|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2532\"* raise|strong=\"G1453\"* up|strong=\"G1453\"* children|strong=\"G5043\"* to|strong=\"G2532\"* Abraham from|strong=\"G1537\"* these|strong=\"G3778\"* stones|strong=\"G3037\"*." + }, + { + "verseNum": 10, + "text": "Even|strong=\"G2532\"* now|strong=\"G1161\"* the|strong=\"G2532\"* ax lies|strong=\"G2749\"* at|strong=\"G1519\"* the|strong=\"G2532\"* root|strong=\"G4491\"* of|strong=\"G2532\"* the|strong=\"G2532\"* trees|strong=\"G1186\"*. Therefore|strong=\"G3767\"* every|strong=\"G3956\"* tree|strong=\"G1186\"* that|strong=\"G3588\"* doesn’t|strong=\"G3588\"* produce|strong=\"G4160\"* good|strong=\"G2570\"* fruit|strong=\"G2590\"* is|strong=\"G3588\"* cut|strong=\"G1581\"* down|strong=\"G1581\"*, and|strong=\"G2532\"* cast|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G2532\"* fire|strong=\"G4442\"*." + }, + { + "verseNum": 11, + "text": "“I|strong=\"G1473\"* indeed|strong=\"G2532\"* baptize you|strong=\"G5210\"* in|strong=\"G1722\"* water|strong=\"G5204\"* for|strong=\"G1519\"* repentance|strong=\"G3341\"*, but|strong=\"G1161\"* he|strong=\"G2532\"* who|strong=\"G3739\"* comes|strong=\"G2064\"* after|strong=\"G3694\"* me|strong=\"G1473\"* is|strong=\"G1510\"* mightier|strong=\"G2478\"* than|strong=\"G2478\"* I|strong=\"G1473\"*, whose|strong=\"G3739\"* sandals|strong=\"G5266\"* I|strong=\"G1473\"* am|strong=\"G1510\"* not|strong=\"G3756\"* worthy|strong=\"G2425\"* to|strong=\"G1519\"* carry. He|strong=\"G2532\"* will|strong=\"G1510\"* baptize you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*.+ 3:11 TR and NU add “and with fire” *" + }, + { + "verseNum": 12, + "text": "His|strong=\"G1519\"* winnowing|strong=\"G4425\"* fork|strong=\"G4425\"* is|strong=\"G3588\"* in|strong=\"G1722\"* his|strong=\"G1519\"* hand|strong=\"G5495\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G2532\"* thoroughly|strong=\"G1245\"* cleanse his|strong=\"G1519\"* threshing floor. He|strong=\"G2532\"* will|strong=\"G2532\"* gather|strong=\"G4863\"* his|strong=\"G1519\"* wheat|strong=\"G4621\"* into|strong=\"G1519\"* the|strong=\"G1722\"* barn, but|strong=\"G1161\"* the|strong=\"G1722\"* chaff he|strong=\"G2532\"* will|strong=\"G2532\"* burn|strong=\"G2618\"* up|strong=\"G1519\"* with|strong=\"G1722\"* unquenchable fire|strong=\"G4442\"*.”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"G5119\"* Jesus|strong=\"G2424\"* came|strong=\"G3854\"* from|strong=\"G5259\"* Galilee|strong=\"G1056\"* to|strong=\"G4314\"* the|strong=\"G1909\"* Jordan|strong=\"G2446\"*+ 3:13 i.e., the Jordan River* to|strong=\"G4314\"* John|strong=\"G2491\"*, to|strong=\"G4314\"* be|strong=\"G3588\"* baptized by|strong=\"G5259\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* John|strong=\"G2491\"* would|strong=\"G2532\"* have|strong=\"G2192\"* hindered him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “I|strong=\"G1473\"* need|strong=\"G5532\"* to|strong=\"G4314\"* be|strong=\"G2532\"* baptized by|strong=\"G5259\"* you|strong=\"G4771\"*, and|strong=\"G2532\"* you|strong=\"G4771\"* come|strong=\"G2064\"* to|strong=\"G4314\"* me|strong=\"G1473\"*?”" + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"*, answering, said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Allow \\+w it|strong=\"G1161\"\\+w* \\+w now|strong=\"G1161\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w fitting|strong=\"G4241\"\\+w* \\+w way|strong=\"G3779\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w us|strong=\"G3004\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w fulfill|strong=\"G4137\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w righteousness|strong=\"G1343\"\\+w*.”* Then|strong=\"G5119\"* he|strong=\"G1161\"* allowed him|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "Jesus|strong=\"G2424\"*, when|strong=\"G1161\"* he|strong=\"G2532\"* was|strong=\"G3588\"* baptized, went|strong=\"G2064\"* up|strong=\"G2532\"* directly from|strong=\"G2064\"* the|strong=\"G2532\"* water|strong=\"G5204\"*: and|strong=\"G2532\"* behold|strong=\"G2400\"*, the|strong=\"G2532\"* heavens|strong=\"G3772\"* were|strong=\"G3588\"* opened to|strong=\"G2532\"* him|strong=\"G3588\"*. He|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* God|strong=\"G2316\"* descending|strong=\"G2597\"* as|strong=\"G1161\"* a|strong=\"G2532\"* dove|strong=\"G4058\"*, and|strong=\"G2532\"* coming|strong=\"G2064\"* on|strong=\"G1909\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G2532\"* voice|strong=\"G5456\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* heavens|strong=\"G3772\"* said|strong=\"G3004\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* my|strong=\"G3708\"* beloved Son|strong=\"G5207\"*, with|strong=\"G1722\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* am|strong=\"G1510\"* well|strong=\"G2532\"* pleased|strong=\"G2106\"*.”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"G5119\"* Jesus|strong=\"G2424\"* was|strong=\"G3588\"* led|strong=\"G2424\"* up|strong=\"G1519\"* by|strong=\"G5259\"* the|strong=\"G1519\"* Spirit|strong=\"G4151\"* into|strong=\"G1519\"* the|strong=\"G1519\"* wilderness|strong=\"G2048\"* to|strong=\"G1519\"* be|strong=\"G1519\"* tempted|strong=\"G3985\"* by|strong=\"G5259\"* the|strong=\"G1519\"* devil|strong=\"G1228\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* fasted|strong=\"G3522\"* forty|strong=\"G5062\"* days|strong=\"G2250\"* and|strong=\"G2532\"* forty|strong=\"G5062\"* nights|strong=\"G3571\"*, he|strong=\"G2532\"* was|strong=\"G2532\"* hungry|strong=\"G3983\"* afterward|strong=\"G5305\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"G2532\"* tempter|strong=\"G3985\"* came|strong=\"G4334\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, “If|strong=\"G1487\"* you|strong=\"G1487\"* are|strong=\"G1510\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, command|strong=\"G3004\"* that|strong=\"G2443\"* these|strong=\"G3778\"* stones|strong=\"G3037\"* become|strong=\"G1096\"* bread.”" + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* answered|strong=\"G3004\"*, “\\+w It|strong=\"G1161\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w Man|strong=\"G3956\"\\+w* \\+w shall|strong=\"G2316\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w live|strong=\"G2198\"\\+w* \\+w by|strong=\"G1223\"\\+w* bread \\+w alone|strong=\"G3441\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w every|strong=\"G3956\"\\+w* \\+w word|strong=\"G4487\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w proceeds|strong=\"G1607\"\\+w* \\+w out|strong=\"G1607\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s \\+w mouth|strong=\"G4750\"\\+w*.’”*+ 4:4 Deuteronomy 8:3*" + }, + { + "verseNum": 5, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* devil|strong=\"G1228\"* took|strong=\"G3880\"* him|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G2532\"* holy|strong=\"G2413\"* city|strong=\"G4172\"*. He|strong=\"G2532\"* set|strong=\"G2476\"* him|strong=\"G3588\"* on|strong=\"G1909\"* the|strong=\"G2532\"* pinnacle|strong=\"G4419\"* of|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G2413\"*," + }, + { + "verseNum": 6, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “If|strong=\"G1487\"* you|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, throw yourself|strong=\"G4572\"* down|strong=\"G2736\"*, for|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G1510\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 7, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G5346\"* to|strong=\"G3756\"* him|strong=\"G3588\"*, “\\+w Again|strong=\"G3825\"\\+w*, \\+w it|strong=\"G3825\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2316\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w test|strong=\"G1598\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Lord|strong=\"G2962\"\\+w*, \\+w your|strong=\"G2962\"\\+w* \\+w God|strong=\"G2316\"\\+w*.’”*+ 4:7 Deuteronomy 6:16*" + }, + { + "verseNum": 8, + "text": "Again|strong=\"G3825\"*, the|strong=\"G2532\"* devil|strong=\"G1228\"* took|strong=\"G3880\"* him|strong=\"G3588\"* to|strong=\"G1519\"* an|strong=\"G2532\"* exceedingly|strong=\"G3029\"* high|strong=\"G5308\"* mountain|strong=\"G3735\"*, and|strong=\"G2532\"* showed|strong=\"G1166\"* him|strong=\"G3588\"* all|strong=\"G3956\"* the|strong=\"G2532\"* kingdoms of|strong=\"G2532\"* the|strong=\"G2532\"* world|strong=\"G2889\"* and|strong=\"G2532\"* their|strong=\"G2532\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G1325\"*, “I|strong=\"G1473\"* will|strong=\"G2532\"* give|strong=\"G1325\"* you|strong=\"G4771\"* all|strong=\"G3956\"* of|strong=\"G2532\"* these|strong=\"G3778\"* things|strong=\"G3956\"*, if|strong=\"G1437\"* you|strong=\"G4771\"* will|strong=\"G2532\"* fall|strong=\"G4098\"* down|strong=\"G4098\"* and|strong=\"G2532\"* worship|strong=\"G4352\"* me|strong=\"G1325\"*.”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"G2532\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Get|strong=\"G5217\"\\+w* behind \\+w me|strong=\"G3004\"\\+w*,*+ 4:10 TR and NU read “Go away” instead of “Get behind me”* \\+w Satan|strong=\"G4567\"\\+w*! \\+w For|strong=\"G1063\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w worship|strong=\"G4352\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w your|strong=\"G2962\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w serve|strong=\"G3000\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w only|strong=\"G3441\"\\+w*.’”* + 4:10 Deuteronomy 6:13*" + }, + { + "verseNum": 11, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* devil|strong=\"G1228\"* left him|strong=\"G3588\"*, and|strong=\"G2532\"* behold|strong=\"G2400\"*, angels came|strong=\"G4334\"* and|strong=\"G2532\"* served|strong=\"G1247\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* Jesus heard that|strong=\"G3754\"* John|strong=\"G2491\"* was|strong=\"G3588\"* delivered|strong=\"G3860\"* up|strong=\"G3860\"*, he|strong=\"G1161\"* withdrew into|strong=\"G1519\"* Galilee|strong=\"G1056\"*." + }, + { + "verseNum": 13, + "text": "Leaving|strong=\"G2641\"* Nazareth|strong=\"G3478\"*, he|strong=\"G2532\"* came|strong=\"G2064\"* and|strong=\"G2532\"* lived|strong=\"G2730\"* in|strong=\"G1722\"* Capernaum|strong=\"G2584\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* by|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G3864\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* region|strong=\"G3725\"* of|strong=\"G2532\"* Zebulun|strong=\"G2194\"* and|strong=\"G2532\"* Naphtali|strong=\"G3508\"*," + }, + { + "verseNum": 14, + "text": "that|strong=\"G2443\"* it|strong=\"G1223\"* might be|strong=\"G2443\"* fulfilled|strong=\"G4137\"* which|strong=\"G3588\"* was|strong=\"G3588\"* spoken|strong=\"G3004\"* through|strong=\"G1223\"* Isaiah|strong=\"G2268\"* the|strong=\"G1223\"* prophet|strong=\"G4396\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 15, + "text": "“The|strong=\"G2532\"* land|strong=\"G1093\"* of|strong=\"G2532\"* Zebulun|strong=\"G2194\"* and|strong=\"G2532\"* the|strong=\"G2532\"* land|strong=\"G1093\"* of|strong=\"G2532\"* Naphtali|strong=\"G3508\"*," + }, + { + "verseNum": 16, + "text": "the|strong=\"G1722\"* people|strong=\"G2992\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* in|strong=\"G1722\"* darkness|strong=\"G4655\"* saw|strong=\"G3708\"* a|strong=\"G2532\"* great|strong=\"G3173\"* light|strong=\"G5457\"*;" + }, + { + "verseNum": 17, + "text": "From|strong=\"G2532\"* that|strong=\"G3588\"* time|strong=\"G5119\"*, Jesus|strong=\"G2424\"* began|strong=\"G5119\"* to|strong=\"G2532\"* preach|strong=\"G2784\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* say|strong=\"G3004\"*, “\\+w Repent|strong=\"G3340\"\\+w*! \\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* Kingdom \\+w of|strong=\"G2532\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w at|strong=\"G3588\"\\+w* \\+w hand|strong=\"G1448\"\\+w*.”*" + }, + { + "verseNum": 18, + "text": "Walking|strong=\"G4043\"* by|strong=\"G3844\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* of|strong=\"G2532\"* Galilee|strong=\"G1056\"*, he|strong=\"G2532\"*+ 4:18 TR reads “Jesus” instead of “he” * saw|strong=\"G3708\"* two|strong=\"G1417\"* brothers: Simon|strong=\"G4613\"*, who|strong=\"G3588\"* is|strong=\"G1510\"* called|strong=\"G3004\"* Peter|strong=\"G4074\"*, and|strong=\"G2532\"* Andrew, his|strong=\"G1519\"* brother, casting a|strong=\"G2532\"* net into|strong=\"G1519\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*; for|strong=\"G1063\"* they|strong=\"G2532\"* were|strong=\"G1510\"* fishermen." + }, + { + "verseNum": 19, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G4160\"*, “\\+w Come|strong=\"G1205\"\\+w* \\+w after|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w you|strong=\"G5210\"\\+w* fishers \\+w for|strong=\"G2532\"\\+w* men.”*" + }, + { + "verseNum": 20, + "text": "They|strong=\"G1161\"* immediately|strong=\"G2112\"* left their|strong=\"G3588\"* nets|strong=\"G1350\"* and|strong=\"G1161\"* followed him|strong=\"G3588\"*." + }, + { + "verseNum": 21, + "text": "Going|strong=\"G2532\"* on|strong=\"G1722\"* from|strong=\"G2532\"* there|strong=\"G2532\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* two|strong=\"G1417\"* other|strong=\"G1438\"* brothers, James|strong=\"G2385\"* the|strong=\"G1722\"* son of|strong=\"G2532\"* Zebedee|strong=\"G2199\"*, and|strong=\"G2532\"* John|strong=\"G2491\"* his|strong=\"G1438\"* brother, in|strong=\"G1722\"* the|strong=\"G1722\"* boat|strong=\"G4143\"* with|strong=\"G3326\"* Zebedee|strong=\"G2199\"* their|strong=\"G1438\"* father|strong=\"G3962\"*, mending|strong=\"G2675\"* their|strong=\"G1438\"* nets|strong=\"G1350\"*. He|strong=\"G2532\"* called|strong=\"G2564\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 22, + "text": "They|strong=\"G2532\"* immediately|strong=\"G2112\"* left the|strong=\"G2532\"* boat|strong=\"G4143\"* and|strong=\"G2532\"* their|strong=\"G2532\"* father|strong=\"G3962\"*, and|strong=\"G2532\"* followed him|strong=\"G3588\"*." + }, + { + "verseNum": 23, + "text": "Jesus|strong=\"G2532\"* went|strong=\"G2532\"* about|strong=\"G1722\"* in|strong=\"G1722\"* all|strong=\"G3956\"* Galilee|strong=\"G1056\"*, teaching|strong=\"G1321\"* in|strong=\"G1722\"* their|strong=\"G2532\"* synagogues|strong=\"G4864\"*, preaching|strong=\"G2784\"* the|strong=\"G1722\"* Good|strong=\"G3956\"* News|strong=\"G2098\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Kingdom, and|strong=\"G2532\"* healing|strong=\"G2323\"* every|strong=\"G3956\"* disease|strong=\"G3119\"* and|strong=\"G2532\"* every|strong=\"G3956\"* sickness|strong=\"G3119\"* among|strong=\"G1722\"* the|strong=\"G1722\"* people|strong=\"G2992\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"G2532\"* report about|strong=\"G1519\"* him|strong=\"G3588\"* went|strong=\"G2532\"* out|strong=\"G2532\"* into|strong=\"G1519\"* all|strong=\"G3956\"* Syria|strong=\"G4947\"*. They|strong=\"G2532\"* brought|strong=\"G4374\"* to|strong=\"G1519\"* him|strong=\"G3588\"* all|strong=\"G3956\"* who|strong=\"G3588\"* were|strong=\"G3588\"* sick|strong=\"G2560\"*, afflicted|strong=\"G4912\"* with|strong=\"G2532\"* various|strong=\"G4164\"* diseases|strong=\"G3554\"* and|strong=\"G2532\"* torments, possessed|strong=\"G2192\"* with|strong=\"G2532\"* demons, epileptics|strong=\"G4583\"*, and|strong=\"G2532\"* paralytics|strong=\"G3885\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* healed|strong=\"G2323\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 25, + "text": "Great|strong=\"G4183\"* multitudes|strong=\"G3793\"* from|strong=\"G2532\"* Galilee|strong=\"G1056\"*, Decapolis|strong=\"G1179\"*, Jerusalem|strong=\"G2414\"*, Judea|strong=\"G2449\"*, and|strong=\"G2532\"* from|strong=\"G2532\"* beyond|strong=\"G4008\"* the|strong=\"G2532\"* Jordan|strong=\"G2446\"* followed him|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Seeing|strong=\"G3708\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"*, he|strong=\"G2532\"* went|strong=\"G4334\"* up|strong=\"G1519\"* onto|strong=\"G1519\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"*. When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* sat|strong=\"G2523\"* down|strong=\"G2523\"*, his|strong=\"G1519\"* disciples|strong=\"G3101\"* came|strong=\"G4334\"* to|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* opened his|strong=\"G1438\"* mouth|strong=\"G4750\"* and|strong=\"G2532\"* taught|strong=\"G1321\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 3, + "text": "“\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w poor|strong=\"G4434\"\\+w* \\+w in|strong=\"G3588\"\\+w* \\+w spirit|strong=\"G4151\"\\+w*,*" + }, + { + "verseNum": 4, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w mourn|strong=\"G3996\"\\+w*,*" + }, + { + "verseNum": 5, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w gentle|strong=\"G4239\"\\+w*,*" + }, + { + "verseNum": 6, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w hunger|strong=\"G3983\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w thirst|strong=\"G1372\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w righteousness|strong=\"G1343\"\\+w*, *" + }, + { + "verseNum": 7, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w merciful|strong=\"G1655\"\\+w*,*" + }, + { + "verseNum": 8, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w pure|strong=\"G2513\"\\+w* \\+w in|strong=\"G2316\"\\+w* \\+w heart|strong=\"G2588\"\\+w*,*" + }, + { + "verseNum": 9, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w peacemakers|strong=\"G1518\"\\+w*,*" + }, + { + "verseNum": 10, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G3748\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w persecuted|strong=\"G1377\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w righteousness|strong=\"G1343\"\\+w*’ \\+w sake|strong=\"G1752\"\\+w*, *" + }, + { + "verseNum": 11, + "text": "“\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w people|strong=\"G3956\"\\+w* \\+w reproach|strong=\"G3679\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w persecute|strong=\"G1377\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w kinds|strong=\"G3956\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w falsely|strong=\"G5574\"\\+w*, \\+w for|strong=\"G1752\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w sake|strong=\"G1752\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w Rejoice|strong=\"G5463\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* exceedingly \\+w glad|strong=\"G5463\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w great|strong=\"G4183\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w reward|strong=\"G3408\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w how|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w persecuted|strong=\"G1377\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "“\\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* salt \\+w of|strong=\"G5259\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w the|strong=\"G1722\"\\+w* salt \\+w has|strong=\"G5101\"\\+w* lost \\+w its|strong=\"G5259\"\\+w* flavor, \\+w with|strong=\"G1722\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w be|strong=\"G1510\"\\+w* salted? \\+w It|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w then|strong=\"G1161\"\\+w* \\+w good|strong=\"G2480\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w nothing|strong=\"G3762\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G1510\"\\+w* cast \\+w out|strong=\"G1854\"\\+w* \\+w and|strong=\"G1161\"\\+w* trodden \\+w under|strong=\"G5259\"\\+w* \\+w the|strong=\"G1722\"\\+w* feet \\+w of|strong=\"G5259\"\\+w* \\+w men|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "“\\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w of|strong=\"G4172\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w world|strong=\"G2889\"\\+w*. \\+w A|strong=\"G1510\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w located|strong=\"G2928\"\\+w* \\+w on|strong=\"G1883\"\\+w* \\+w a|strong=\"G1510\"\\+w* \\+w hill|strong=\"G3735\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w hidden|strong=\"G2928\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w Neither|strong=\"G3761\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w light|strong=\"G3088\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w lamp|strong=\"G3088\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w put|strong=\"G5087\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w under|strong=\"G5259\"\\+w* \\+w a|strong=\"G2532\"\\+w* measuring \\+w basket|strong=\"G3426\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w a|strong=\"G2532\"\\+w* stand; \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w shines|strong=\"G2989\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w house|strong=\"G3614\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w Even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w*, \\+w let|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w shine|strong=\"G2989\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w men|strong=\"G3588\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w glorify|strong=\"G1392\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*.*" + }, + { + "verseNum": 17, + "text": "“Don’\\+w t|strong=\"G3588\"\\+w* \\+w think|strong=\"G3543\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G2064\"\\+w* \\+w destroy|strong=\"G2647\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w law|strong=\"G3551\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*. \\+w I|strong=\"G3754\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G2064\"\\+w* \\+w destroy|strong=\"G2647\"\\+w*, \\+w but|strong=\"G3361\"\\+w* \\+w to|strong=\"G2064\"\\+w* \\+w fulfill|strong=\"G4137\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w For|strong=\"G1063\"\\+w* most \\+w certainly|strong=\"G1063\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w until|strong=\"G2193\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w pass|strong=\"G1096\"\\+w* \\+w away|strong=\"G3928\"\\+w*, \\+w not|strong=\"G3756\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w smallest|strong=\"G1520\"\\+w* \\+w letter|strong=\"G2762\"\\+w**+ 5:18 literally, iota* \\+w or|strong=\"G2228\"\\+w* \\+w one|strong=\"G1520\"\\+w* tiny pen \\+w stroke|strong=\"G2762\"\\+w**+ 5:18 or, serif* \\+w shall|strong=\"G2532\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w any|strong=\"G3956\"\\+w* \\+w way|strong=\"G3956\"\\+w* \\+w pass|strong=\"G1096\"\\+w* \\+w away|strong=\"G3928\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w law|strong=\"G3551\"\\+w*, \\+w until|strong=\"G2193\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w accomplished|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w Therefore|strong=\"G3767\"\\+w*, \\+w whoever|strong=\"G3739\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w break|strong=\"G3089\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w least|strong=\"G1646\"\\+w* \\+w commandments|strong=\"G1785\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w teach|strong=\"G1321\"\\+w* \\+w others|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w so|strong=\"G3779\"\\+w*, \\+w shall|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w least|strong=\"G1646\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G2532\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w teach|strong=\"G1321\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G2532\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w unless|strong=\"G1437\"\\+w* \\+w your|strong=\"G1437\"\\+w* \\+w righteousness|strong=\"G1343\"\\+w* exceeds \\+w that|strong=\"G3754\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w scribes|strong=\"G1122\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w*, \\+w there|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w no|strong=\"G3756\"\\+w* way \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* Kingdom \\+w of|strong=\"G2532\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w*.*" + }, + { + "verseNum": 21, + "text": "“\\+w You|strong=\"G3739\"\\+w* \\+w have|strong=\"G3748\"\\+w* heard \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w said|strong=\"G2046\"\\+w* \\+w to|strong=\"G3756\"\\+w* \\+w the|strong=\"G1161\"\\+w* ancient \\+w ones|strong=\"G3748\"\\+w*, ‘\\+w You|strong=\"G3739\"\\+w* \\+w shall|strong=\"G3739\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w murder|strong=\"G5407\"\\+w*;’*+ 5:21 Exodus 20:13* \\+w and|strong=\"G1161\"\\+w* ‘\\+w Whoever|strong=\"G3739\"\\+w* \\+w murders|strong=\"G5407\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G3756\"\\+w* danger \\+w of|strong=\"G3588\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*.’ *" + }, + { + "verseNum": 22, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w angry|strong=\"G3710\"\\+w* \\+w with|strong=\"G1519\"\\+w* \\+w his|strong=\"G3956\"\\+w* brother \\+w without|strong=\"G2920\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w cause|strong=\"G3739\"\\+w* *+ 5:22 NU omits “without a cause”.* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G1519\"\\+w* danger \\+w of|strong=\"G3956\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*. \\+w Whoever|strong=\"G3739\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w his|strong=\"G3956\"\\+w* brother, ‘\\+w Raca|strong=\"G4469\"\\+w*!’ *+ 5:22 “Raca” is an Aramaic insult, related to the word for “empty” and conveying the idea of empty-headedness.* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G1519\"\\+w* danger \\+w of|strong=\"G3956\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w council|strong=\"G4892\"\\+w*. \\+w Whoever|strong=\"G3739\"\\+w* \\+w says|strong=\"G3004\"\\+w*, ‘\\+w You|strong=\"G5210\"\\+w* \\+w fool|strong=\"G3474\"\\+w*!’ \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G1519\"\\+w* danger \\+w of|strong=\"G3956\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w fire|strong=\"G4442\"\\+w* \\+w of|strong=\"G3956\"\\+w* Gehenna.*+ 5:22 or, Hell*" + }, + { + "verseNum": 23, + "text": "“\\+w If|strong=\"G1437\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w offering|strong=\"G1435\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w gift|strong=\"G1435\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w the|strong=\"G1909\"\\+w* \\+w altar|strong=\"G2379\"\\+w*, \\+w and|strong=\"G3767\"\\+w* \\+w there|strong=\"G2546\"\\+w* \\+w remember|strong=\"G3403\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w your|strong=\"G2192\"\\+w* brother \\+w has|strong=\"G2192\"\\+w* \\+w anything|strong=\"G5100\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w you|strong=\"G4771\"\\+w*, *" + }, + { + "verseNum": 24, + "text": "leave \\+w your|strong=\"G2532\"\\+w* \\+w gift|strong=\"G1435\"\\+w* \\+w there|strong=\"G1563\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w altar|strong=\"G2379\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w way|strong=\"G5217\"\\+w*. \\+w First|strong=\"G4413\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w reconciled|strong=\"G1259\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* brother, \\+w and|strong=\"G2532\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w offer|strong=\"G4374\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w gift|strong=\"G1435\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w Agree|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w your|strong=\"G2532\"\\+w* adversary \\+w quickly|strong=\"G5035\"\\+w* \\+w while|strong=\"G1722\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w way|strong=\"G3598\"\\+w*; \\+w lest|strong=\"G3379\"\\+w* \\+w perhaps|strong=\"G3379\"\\+w* \\+w the|strong=\"G1722\"\\+w* prosecutor \\+w deliver|strong=\"G3860\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w judge|strong=\"G2923\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w judge|strong=\"G2923\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w officer|strong=\"G5257\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w prison|strong=\"G5438\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "Most \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G2193\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w shall|strong=\"G3361\"\\+w* \\+w by|strong=\"G3004\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w means|strong=\"G3004\"\\+w* \\+w get|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w there|strong=\"G1564\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G3588\"\\+w* paid \\+w the|strong=\"G3588\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w penny|strong=\"G2835\"\\+w*.*+ 5:26 literally, kodrantes. A kodrantes was a small copper coin worth about 2 lepta (widow’s mites)—not enough to buy very much of anything.*" + }, + { + "verseNum": 27, + "text": "“\\+w You|strong=\"G3754\"\\+w* \\+w have|strong=\"G3748\"\\+w* heard \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w was|strong=\"G3748\"\\+w* \\+w said|strong=\"G2046\"\\+w*, *+ 5:27 TR adds “to the ancients”.* ‘\\+w You|strong=\"G3754\"\\+w* \\+w shall|strong=\"G3748\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w commit|strong=\"G3431\"\\+w* \\+w adultery|strong=\"G3431\"\\+w*;’*+ 5:27 Exodus 20:14*" + }, + { + "verseNum": 28, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* gazes \\+w at|strong=\"G1722\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w woman|strong=\"G1135\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w lust|strong=\"G1937\"\\+w* \\+w after|strong=\"G1161\"\\+w* \\+w her|strong=\"G1438\"\\+w* \\+w has|strong=\"G3748\"\\+w* \\+w committed|strong=\"G3431\"\\+w* \\+w adultery|strong=\"G3431\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w her|strong=\"G1438\"\\+w* \\+w already|strong=\"G2235\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w heart|strong=\"G2588\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w eye|strong=\"G3788\"\\+w* \\+w causes|strong=\"G4624\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w pluck|strong=\"G1807\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* throw \\+w it|strong=\"G2532\"\\+w* \\+w away|strong=\"G4624\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w more|strong=\"G2532\"\\+w* \\+w profitable|strong=\"G4851\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w members|strong=\"G3196\"\\+w* \\+w should|strong=\"G3588\"\\+w* perish \\+w than|strong=\"G2532\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* Gehenna.*+ 5:29 or, Hell*" + }, + { + "verseNum": 30, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w hand|strong=\"G5495\"\\+w* \\+w causes|strong=\"G4624\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w cut|strong=\"G1581\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w off|strong=\"G1581\"\\+w*, \\+w and|strong=\"G2532\"\\+w* throw \\+w it|strong=\"G2532\"\\+w* \\+w away|strong=\"G4624\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w more|strong=\"G2532\"\\+w* \\+w profitable|strong=\"G4851\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w members|strong=\"G3196\"\\+w* \\+w should|strong=\"G3588\"\\+w* perish, \\+w than|strong=\"G2532\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* Gehenna.*+ 5:30 or, Hell*" + }, + { + "verseNum": 31, + "text": "“\\+w It|strong=\"G1161\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w also|strong=\"G1161\"\\+w* \\+w said|strong=\"G2046\"\\+w*, ‘\\+w Whoever|strong=\"G3739\"\\+w* \\+w shall|strong=\"G3739\"\\+w* \\+w put|strong=\"G1325\"\\+w* away \\+w his|strong=\"G1325\"\\+w* \\+w wife|strong=\"G1135\"\\+w*, \\+w let|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w her|strong=\"G1325\"\\+w* \\+w a|strong=\"G1325\"\\+w* writing \\+w of|strong=\"G3588\"\\+w* divorce,’*+ 5:31 Deuteronomy 24:1*" + }, + { + "verseNum": 32, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w puts|strong=\"G4160\"\\+w* away \\+w his|strong=\"G1438\"\\+w* \\+w wife|strong=\"G1135\"\\+w*, \\+w except|strong=\"G1437\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w cause|strong=\"G4160\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w sexual|strong=\"G4202\"\\+w* \\+w immorality|strong=\"G4202\"\\+w*, \\+w makes|strong=\"G4160\"\\+w* \\+w her|strong=\"G1437\"\\+w* \\+w an|strong=\"G2532\"\\+w* adulteress; \\+w and|strong=\"G2532\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w marries|strong=\"G1060\"\\+w* \\+w her|strong=\"G1437\"\\+w* \\+w when|strong=\"G1161\"\\+w* \\+w she|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w put|strong=\"G4160\"\\+w* away \\+w commits|strong=\"G4160\"\\+w* \\+w adultery|strong=\"G3431\"\\+w*.*" + }, + { + "verseNum": 33, + "text": "“\\+w Again|strong=\"G3825\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G3748\"\\+w* heard \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w said|strong=\"G2046\"\\+w* \\+w to|strong=\"G3756\"\\+w* \\+w the|strong=\"G1161\"\\+w* ancient \\+w ones|strong=\"G3748\"\\+w*, ‘\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2962\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w make|strong=\"G3756\"\\+w* \\+w false|strong=\"G1964\"\\+w* \\+w vows|strong=\"G1964\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w shall|strong=\"G2962\"\\+w* perform \\+w to|strong=\"G3756\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w your|strong=\"G2962\"\\+w* \\+w vows|strong=\"G1964\"\\+w*,’*+ 5:33 Numbers 30:2; Deuteronomy 23:21; Ecclesiastes 5:4*" + }, + { + "verseNum": 34, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w swear|strong=\"G3660\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w all|strong=\"G1722\"\\+w*: \\+w neither|strong=\"G3383\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w throne|strong=\"G2362\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*; *" + }, + { + "verseNum": 35, + "text": "\\+w nor|strong=\"G3383\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w footstool|strong=\"G5286\"\\+w* \\+w of|strong=\"G1093\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w feet|strong=\"G4228\"\\+w*; \\+w nor|strong=\"G3383\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w Jerusalem|strong=\"G2414\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w of|strong=\"G1093\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w King|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w Neither|strong=\"G3756\"\\+w* \\+w shall|strong=\"G3748\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w swear|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w your|strong=\"G4160\"\\+w* \\+w head|strong=\"G2776\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w hair|strong=\"G2359\"\\+w* \\+w white|strong=\"G3022\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w black|strong=\"G3189\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w let|strong=\"G1161\"\\+w* \\+w your|strong=\"G3588\"\\+w* ‘\\+w Yes|strong=\"G3483\"\\+w*’ \\+w be|strong=\"G1510\"\\+w* ‘\\+w Yes|strong=\"G3483\"\\+w*’ \\+w and|strong=\"G1161\"\\+w* \\+w your|strong=\"G3588\"\\+w* ‘\\+w No|strong=\"G3756\"\\+w*’ \\+w be|strong=\"G1510\"\\+w* ‘\\+w No|strong=\"G3756\"\\+w*.’ Whatever \\+w is|strong=\"G1510\"\\+w* \\+w more|strong=\"G4053\"\\+w* \\+w than|strong=\"G4053\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w one|strong=\"G3588\"\\+w*.*" + }, + { + "verseNum": 38, + "text": "“\\+w You|strong=\"G3754\"\\+w* \\+w have|strong=\"G2532\"\\+w* heard \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G2532\"\\+w* \\+w said|strong=\"G2046\"\\+w*, ‘\\+w An|strong=\"G2532\"\\+w* \\+w eye|strong=\"G3788\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w eye|strong=\"G3788\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w tooth|strong=\"G3599\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w tooth|strong=\"G3599\"\\+w*.’*+ 5:38 Exodus 21:24; Leviticus 24:20; Deuteronomy 19:21*" + }, + { + "verseNum": 39, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* resist \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w evil|strong=\"G4190\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3748\"\\+w* \\+w strikes|strong=\"G4474\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w on|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w cheek|strong=\"G4600\"\\+w*, \\+w turn|strong=\"G4762\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G1161\"\\+w* \\+w also|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 40, + "text": "\\+w If|strong=\"G2532\"\\+w* anyone sues \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w take|strong=\"G2983\"\\+w* away \\+w your|strong=\"G2532\"\\+w* \\+w coat|strong=\"G2440\"\\+w*, \\+w let|strong=\"G2919\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w have|strong=\"G2309\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w cloak|strong=\"G2440\"\\+w* \\+w also|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 41, + "text": "\\+w Whoever|strong=\"G3748\"\\+w* compels \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w mile|strong=\"G3400\"\\+w*, \\+w go|strong=\"G5217\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w him|strong=\"G2532\"\\+w* \\+w two|strong=\"G1417\"\\+w*. *" + }, + { + "verseNum": 42, + "text": "\\+w Give|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* asks \\+w you|strong=\"G4771\"\\+w*, \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* turn away \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w desires|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w borrow|strong=\"G1155\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*.*" + }, + { + "verseNum": 43, + "text": "“\\+w You|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* heard \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w said|strong=\"G2046\"\\+w*, ‘\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* love \\+w your|strong=\"G2532\"\\+w* \\+w neighbor|strong=\"G4139\"\\+w* *+ 5:43 Leviticus 19:18* \\+w and|strong=\"G2532\"\\+w* \\+w hate|strong=\"G3404\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w enemy|strong=\"G2190\"\\+w*.’*+ 5:43 not in the Bible, but see Qumran Manual of Discipline Ix, 21-26*" + }, + { + "verseNum": 44, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, love \\+w your|strong=\"G2532\"\\+w* \\+w enemies|strong=\"G2190\"\\+w*, bless \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* curse \\+w you|strong=\"G5210\"\\+w*, \\+w do|strong=\"G2532\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* hate \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w pray|strong=\"G4336\"\\+w* \\+w for|strong=\"G5228\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* mistreat \\+w you|strong=\"G5210\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w persecute|strong=\"G1377\"\\+w* \\+w you|strong=\"G5210\"\\+w*, *" + }, + { + "verseNum": 45, + "text": "\\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. \\+w For|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* makes \\+w his|strong=\"G1909\"\\+w* \\+w sun|strong=\"G2246\"\\+w* \\+w to|strong=\"G2532\"\\+w* rise \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w good|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w sends|strong=\"G1026\"\\+w* \\+w rain|strong=\"G1026\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w just|strong=\"G1342\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* unjust. *" + }, + { + "verseNum": 46, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* love \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* love \\+w you|strong=\"G5210\"\\+w*, \\+w what|strong=\"G5101\"\\+w* \\+w reward|strong=\"G3408\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2192\"\\+w*? Don’\\+w t|strong=\"G3588\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w tax|strong=\"G5057\"\\+w* \\+w collectors|strong=\"G5057\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w same|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 47, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w only|strong=\"G3440\"\\+w* greet \\+w your|strong=\"G1437\"\\+w* friends, \\+w what|strong=\"G5101\"\\+w* \\+w more|strong=\"G4053\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w than|strong=\"G4053\"\\+w* \\+w others|strong=\"G3588\"\\+w*? Don’\\+w t|strong=\"G3588\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* tax collectors*+ 5:47 NU reads “Gentiles” instead of “tax collectors”.* \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w same|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 48, + "text": "\\+w Therefore|strong=\"G3767\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w shall|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w perfect|strong=\"G5046\"\\+w*, \\+w just|strong=\"G5613\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w in|strong=\"G3588\"\\+w* \\+w heaven|strong=\"G3770\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w perfect|strong=\"G5046\"\\+w*.*" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "“\\+w Be|strong=\"G3756\"\\+w* \\+w careful|strong=\"G4337\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w your|strong=\"G2192\"\\+w* charitable \\+w giving|strong=\"G4337\"\\+w**+ 6:1 NU reads “acts of righteousness” instead of “charitable giving”* \\+w before|strong=\"G1715\"\\+w* \\+w men|strong=\"G3588\"\\+w*, \\+w to|strong=\"G4314\"\\+w* \\+w be|strong=\"G3756\"\\+w* \\+w seen|strong=\"G2300\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w or|strong=\"G1161\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w reward|strong=\"G3408\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 2, + "text": "\\+w Therefore|strong=\"G3767\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w do|strong=\"G4160\"\\+w* merciful \\+w deeds|strong=\"G4160\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w sound|strong=\"G4537\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w trumpet|strong=\"G4537\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w yourself|strong=\"G4771\"\\+w*, \\+w as|strong=\"G5618\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w hypocrites|strong=\"G5273\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w streets|strong=\"G4505\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w get|strong=\"G2532\"\\+w* \\+w glory|strong=\"G1392\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w men|strong=\"G3588\"\\+w*. Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* received \\+w their|strong=\"G2532\"\\+w* \\+w reward|strong=\"G3408\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w do|strong=\"G4160\"\\+w* merciful \\+w deeds|strong=\"G4160\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w let|strong=\"G1161\"\\+w* \\+w your|strong=\"G4160\"\\+w* left \\+w hand|strong=\"G1188\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w your|strong=\"G4160\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w hand|strong=\"G1188\"\\+w* \\+w does|strong=\"G4160\"\\+w*, *" + }, + { + "verseNum": 4, + "text": "\\+w so|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w your|strong=\"G2532\"\\+w* merciful deeds \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w secret|strong=\"G2927\"\\+w*, \\+w then|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* sees \\+w in|strong=\"G1722\"\\+w* \\+w secret|strong=\"G2927\"\\+w* \\+w will|strong=\"G1510\"\\+w* reward \\+w you|strong=\"G4771\"\\+w* openly.*" + }, + { + "verseNum": 5, + "text": "“\\+w When|strong=\"G3752\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w pray|strong=\"G4336\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w hypocrites|strong=\"G5273\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w love|strong=\"G5368\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w stand|strong=\"G2476\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w pray|strong=\"G4336\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w corners|strong=\"G1137\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w streets|strong=\"G4116\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w seen|strong=\"G5316\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w men|strong=\"G3588\"\\+w*. Most \\+w certainly|strong=\"G2532\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* received \\+w their|strong=\"G2532\"\\+w* \\+w reward|strong=\"G3408\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w pray|strong=\"G4336\"\\+w*, \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w inner|strong=\"G5009\"\\+w* \\+w room|strong=\"G5009\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w having|strong=\"G2532\"\\+w* \\+w shut|strong=\"G2808\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w door|strong=\"G2374\"\\+w*, \\+w pray|strong=\"G4336\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w secret|strong=\"G2927\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* sees \\+w in|strong=\"G1722\"\\+w* \\+w secret|strong=\"G2927\"\\+w* \\+w will|strong=\"G2532\"\\+w* reward \\+w you|strong=\"G4771\"\\+w* openly. *" + }, + { + "verseNum": 7, + "text": "\\+w In|strong=\"G1722\"\\+w* \\+w praying|strong=\"G4336\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w use|strong=\"G3588\"\\+w* vain repetitions \\+w as|strong=\"G5618\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Gentiles|strong=\"G1482\"\\+w* \\+w do|strong=\"G1380\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w think|strong=\"G1380\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w will|strong=\"G3748\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w heard|strong=\"G1522\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w their|strong=\"G1722\"\\+w* much speaking. *" + }, + { + "verseNum": 8, + "text": "\\+w Therefore|strong=\"G3767\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w like|strong=\"G3666\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w knows|strong=\"G1492\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w need|strong=\"G5532\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w you|strong=\"G5210\"\\+w* ask \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w Pray|strong=\"G4336\"\\+w* \\+w like|strong=\"G3779\"\\+w* \\+w this|strong=\"G3588\"\\+w*: *" + }, + { + "verseNum": 10, + "text": "\\+w Let|strong=\"G1096\"\\+w* \\+w your|strong=\"G2532\"\\+w* Kingdom \\+w come|strong=\"G2064\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w Give|strong=\"G1325\"\\+w* \\+w us|strong=\"G1325\"\\+w* \\+w today|strong=\"G4594\"\\+w* our \\+w daily|strong=\"G1967\"\\+w* bread. *" + }, + { + "verseNum": 12, + "text": "Forgive \\+w us|strong=\"G2249\"\\+w* \\+w our|strong=\"G2532\"\\+w* \\+w debts|strong=\"G3783\"\\+w*,*" + }, + { + "verseNum": 13, + "text": "\\+w Bring|strong=\"G1533\"\\+w* \\+w us|strong=\"G1519\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w temptation|strong=\"G3986\"\\+w*,*" + }, + { + "verseNum": 14, + "text": "“\\+w For|strong=\"G1063\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* forgive \\+w men|strong=\"G3588\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w trespasses|strong=\"G3900\"\\+w*, \\+w your|strong=\"G1437\"\\+w* \\+w heavenly|strong=\"G3770\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* forgive \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* forgive \\+w men|strong=\"G3588\"\\+w* \\+w their|strong=\"G3588\"\\+w* \\+w trespasses|strong=\"G3900\"\\+w*, \\+w neither|strong=\"G3761\"\\+w* \\+w will|strong=\"G3962\"\\+w* \\+w your|strong=\"G1437\"\\+w* \\+w Father|strong=\"G3962\"\\+w* forgive \\+w your|strong=\"G1437\"\\+w* \\+w trespasses|strong=\"G3900\"\\+w*.*" + }, + { + "verseNum": 16, + "text": "“\\+w Moreover|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w fast|strong=\"G3522\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w hypocrites|strong=\"G5273\"\\+w*, \\+w with|strong=\"G3588\"\\+w* \\+w sad|strong=\"G4659\"\\+w* \\+w faces|strong=\"G4383\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w they|strong=\"G1161\"\\+w* disfigure \\+w their|strong=\"G3588\"\\+w* \\+w faces|strong=\"G4383\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w may|strong=\"G3004\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w seen|strong=\"G5316\"\\+w* \\+w by|strong=\"G3004\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w fasting|strong=\"G3522\"\\+w*. Most \\+w certainly|strong=\"G1063\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w they|strong=\"G1161\"\\+w* \\+w have|strong=\"G5210\"\\+w* received \\+w their|strong=\"G3588\"\\+w* \\+w reward|strong=\"G3408\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w when|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w fast|strong=\"G3522\"\\+w*, anoint \\+w your|strong=\"G2532\"\\+w* \\+w head|strong=\"G2776\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w wash|strong=\"G3538\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w face|strong=\"G4383\"\\+w*, *" + }, + { + "verseNum": 18, + "text": "\\+w so|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w seen|strong=\"G5316\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w fasting|strong=\"G3522\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w secret|strong=\"G2927\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w who|strong=\"G3588\"\\+w* sees \\+w in|strong=\"G1722\"\\+w* \\+w secret|strong=\"G2927\"\\+w*, \\+w will|strong=\"G2532\"\\+w* reward \\+w you|strong=\"G4771\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "“Don’\\+w t|strong=\"G3588\"\\+w* \\+w lay|strong=\"G2343\"\\+w* \\+w up|strong=\"G2343\"\\+w* \\+w treasures|strong=\"G2344\"\\+w* \\+w for|strong=\"G1909\"\\+w* \\+w yourselves|strong=\"G4771\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w*, \\+w where|strong=\"G3699\"\\+w* \\+w moth|strong=\"G4597\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w rust|strong=\"G1035\"\\+w* consume, \\+w and|strong=\"G2532\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w thieves|strong=\"G2812\"\\+w* \\+w break|strong=\"G1358\"\\+w* \\+w through|strong=\"G1909\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w steal|strong=\"G2813\"\\+w*; *" + }, + { + "verseNum": 20, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w lay|strong=\"G2343\"\\+w* \\+w up|strong=\"G2343\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w yourselves|strong=\"G4771\"\\+w* \\+w treasures|strong=\"G2344\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w where|strong=\"G3699\"\\+w* \\+w neither|strong=\"G3777\"\\+w* \\+w moth|strong=\"G4597\"\\+w* \\+w nor|strong=\"G3761\"\\+w* \\+w rust|strong=\"G1035\"\\+w* consume, \\+w and|strong=\"G2532\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w thieves|strong=\"G2812\"\\+w* don’t \\+w break|strong=\"G1358\"\\+w* \\+w through|strong=\"G1722\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w steal|strong=\"G2813\"\\+w*; *" + }, + { + "verseNum": 21, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w is|strong=\"G1510\"\\+w*, \\+w there|strong=\"G1563\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w also|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "“\\+w The|strong=\"G3588\"\\+w* \\+w lamp|strong=\"G3088\"\\+w* \\+w of|strong=\"G4983\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w eye|strong=\"G3788\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w eye|strong=\"G3788\"\\+w* \\+w is|strong=\"G1510\"\\+w* sound, \\+w your|strong=\"G3650\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w full|strong=\"G5460\"\\+w* \\+w of|strong=\"G4983\"\\+w* \\+w light|strong=\"G3088\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w eye|strong=\"G3788\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w evil|strong=\"G4190\"\\+w*, \\+w your|strong=\"G3650\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w full|strong=\"G4652\"\\+w* \\+w of|strong=\"G4983\"\\+w* \\+w darkness|strong=\"G4655\"\\+w*. \\+w If|strong=\"G1487\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w darkness|strong=\"G4655\"\\+w*, \\+w how|strong=\"G4214\"\\+w* \\+w great|strong=\"G4214\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w darkness|strong=\"G4655\"\\+w*! *" + }, + { + "verseNum": 24, + "text": "“\\+w No|strong=\"G3756\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w serve|strong=\"G1398\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w masters|strong=\"G2962\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w either|strong=\"G2228\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w hate|strong=\"G3404\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w and|strong=\"G2532\"\\+w* love \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G2087\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w else|strong=\"G2228\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w be|strong=\"G2532\"\\+w* devoted \\+w to|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w despise|strong=\"G2706\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G2087\"\\+w*. \\+w You|strong=\"G2532\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w serve|strong=\"G1398\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Mammon|strong=\"G3126\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w Therefore|strong=\"G1223\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w anxious|strong=\"G3309\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w life|strong=\"G5590\"\\+w*: \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w eat|strong=\"G2068\"\\+w*, \\+w or|strong=\"G2532\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w drink|strong=\"G2532\"\\+w*; \\+w nor|strong=\"G3366\"\\+w* \\+w yet|strong=\"G2532\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w body|strong=\"G4983\"\\+w*, \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* wear. Isn’\\+w t|strong=\"G3588\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w food|strong=\"G5160\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w clothing|strong=\"G1742\"\\+w*? *" + }, + { + "verseNum": 26, + "text": "\\+w See|strong=\"G1689\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w birds|strong=\"G4071\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w sow|strong=\"G4687\"\\+w*, \\+w neither|strong=\"G3761\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w reap|strong=\"G2325\"\\+w*, \\+w nor|strong=\"G3761\"\\+w* \\+w gather|strong=\"G4863\"\\+w* \\+w into|strong=\"G1519\"\\+w* barns. \\+w Your|strong=\"G2532\"\\+w* \\+w heavenly|strong=\"G3770\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w feeds|strong=\"G5142\"\\+w* \\+w them|strong=\"G3588\"\\+w*. Aren’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w much|strong=\"G3123\"\\+w* \\+w more|strong=\"G3123\"\\+w* value \\+w than|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w*?*" + }, + { + "verseNum": 27, + "text": "“\\+w Which|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w by|strong=\"G1537\"\\+w* \\+w being|strong=\"G1161\"\\+w* \\+w anxious|strong=\"G3309\"\\+w*, \\+w can|strong=\"G1410\"\\+w* \\+w add|strong=\"G4369\"\\+w* \\+w one|strong=\"G1520\"\\+w* moment*+ 6:27 literally, cubit* \\+w to|strong=\"G1909\"\\+w* \\+w his|strong=\"G1909\"\\+w* lifespan? *" + }, + { + "verseNum": 28, + "text": "\\+w Why|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G4459\"\\+w* \\+w anxious|strong=\"G3309\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w clothing|strong=\"G1742\"\\+w*? \\+w Consider|strong=\"G2648\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w lilies|strong=\"G2918\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w the|strong=\"G2532\"\\+w* field, \\+w how|strong=\"G4459\"\\+w* \\+w they|strong=\"G2532\"\\+w* grow. \\+w They|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w toil|strong=\"G2872\"\\+w*, \\+w neither|strong=\"G3761\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w spin|strong=\"G3514\"\\+w*, *" + }, + { + "verseNum": 29, + "text": "\\+w yet|strong=\"G1161\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w even|strong=\"G3761\"\\+w* \\+w Solomon|strong=\"G4672\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w not|strong=\"G3761\"\\+w* \\+w dressed|strong=\"G4016\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1391\"\\+w* \\+w these|strong=\"G3778\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w so|strong=\"G3779\"\\+w* clothes \\+w the|strong=\"G2532\"\\+w* \\+w grass|strong=\"G5528\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G2532\"\\+w* field, \\+w which|strong=\"G3588\"\\+w* \\+w today|strong=\"G4594\"\\+w* exists \\+w and|strong=\"G2532\"\\+w* tomorrow \\+w is|strong=\"G1510\"\\+w* thrown \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* oven, won’\\+w t|strong=\"G3588\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w much|strong=\"G4183\"\\+w* \\+w more|strong=\"G3123\"\\+w* clothe \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w little|strong=\"G3640\"\\+w* \\+w faith|strong=\"G3640\"\\+w*?*" + }, + { + "verseNum": 31, + "text": "“\\+w Therefore|strong=\"G3767\"\\+w* don’t \\+w be|strong=\"G3361\"\\+w* \\+w anxious|strong=\"G3309\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w What|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w we|strong=\"G3767\"\\+w* \\+w eat|strong=\"G2068\"\\+w*?’, ‘\\+w What|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w we|strong=\"G3767\"\\+w* \\+w drink|strong=\"G4095\"\\+w*?’ \\+w or|strong=\"G2228\"\\+w*, ‘\\+w With|strong=\"G4016\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w we|strong=\"G3767\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w clothed|strong=\"G4016\"\\+w*?’ *" + }, + { + "verseNum": 32, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w Gentiles|strong=\"G1484\"\\+w* \\+w seek|strong=\"G1934\"\\+w* \\+w after|strong=\"G1063\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w your|strong=\"G3956\"\\+w* \\+w heavenly|strong=\"G3770\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w knows|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w need|strong=\"G5535\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w God|strong=\"G2532\"\\+w*’s Kingdom \\+w and|strong=\"G2532\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w righteousness|strong=\"G1343\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G4369\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w as|strong=\"G1161\"\\+w* \\+w well|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "\\+w Therefore|strong=\"G3767\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w anxious|strong=\"G3309\"\\+w* \\+w for|strong=\"G1063\"\\+w* tomorrow, \\+w for|strong=\"G1063\"\\+w* tomorrow \\+w will|strong=\"G2250\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w anxious|strong=\"G3309\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w itself|strong=\"G1438\"\\+w*. \\+w Each|strong=\"G1438\"\\+w* \\+w day|strong=\"G2250\"\\+w*’s \\+w own|strong=\"G1438\"\\+w* \\+w evil|strong=\"G2549\"\\+w* \\+w is|strong=\"G3588\"\\+w* sufficient.*" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "“Don’t \\+w judge|strong=\"G2919\"\\+w*, \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G3361\"\\+w* won’t \\+w be|strong=\"G3361\"\\+w* \\+w judged|strong=\"G2919\"\\+w*. *" + }, + { + "verseNum": 2, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w judgment|strong=\"G2917\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w judge|strong=\"G2919\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w judged|strong=\"G2919\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w measure|strong=\"G3358\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w measure|strong=\"G3358\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w measured|strong=\"G3354\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G4771\"\\+w* see \\+w the|strong=\"G1722\"\\+w* \\+w speck|strong=\"G2595\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G4674\"\\+w* brother’s \\+w eye|strong=\"G3788\"\\+w*, \\+w but|strong=\"G1161\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w consider|strong=\"G2657\"\\+w* \\+w the|strong=\"G1722\"\\+w* beam \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G4674\"\\+w* \\+w own|strong=\"G4674\"\\+w* \\+w eye|strong=\"G3788\"\\+w*? *" + }, + { + "verseNum": 4, + "text": "\\+w Or|strong=\"G2228\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w your|strong=\"G2532\"\\+w* brother, ‘\\+w Let|strong=\"G2532\"\\+w* \\+w me|strong=\"G3004\"\\+w* \\+w remove|strong=\"G1544\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w speck|strong=\"G2595\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w eye|strong=\"G3788\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, \\+w the|strong=\"G1722\"\\+w* beam \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w own|strong=\"G3788\"\\+w* \\+w eye|strong=\"G3788\"\\+w*? *" + }, + { + "verseNum": 5, + "text": "\\+w You|strong=\"G4771\"\\+w* \\+w hypocrite|strong=\"G5273\"\\+w*! \\+w First|strong=\"G4413\"\\+w* \\+w remove|strong=\"G1544\"\\+w* \\+w the|strong=\"G2532\"\\+w* beam \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w own|strong=\"G3788\"\\+w* \\+w eye|strong=\"G3788\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* can \\+w see|strong=\"G1227\"\\+w* \\+w clearly|strong=\"G1227\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w remove|strong=\"G1544\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w speck|strong=\"G2595\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* brother’s \\+w eye|strong=\"G3788\"\\+w*.*" + }, + { + "verseNum": 6, + "text": "“Don’\\+w t|strong=\"G3588\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* holy \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w dogs|strong=\"G2965\"\\+w*, \\+w neither|strong=\"G3366\"\\+w* throw \\+w your|strong=\"G2532\"\\+w* \\+w pearls|strong=\"G3135\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w pigs|strong=\"G5519\"\\+w*, \\+w lest|strong=\"G3361\"\\+w* \\+w perhaps|strong=\"G3379\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w trample|strong=\"G2662\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w under|strong=\"G1722\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w feet|strong=\"G4228\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w turn|strong=\"G4762\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w tear|strong=\"G4486\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w pieces|strong=\"G4486\"\\+w*.*" + }, + { + "verseNum": 7, + "text": "“Ask, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w Seek|strong=\"G2212\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w find|strong=\"G2147\"\\+w*. \\+w Knock|strong=\"G2925\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* opened \\+w for|strong=\"G2212\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* asks \\+w receives|strong=\"G2983\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w seeks|strong=\"G2212\"\\+w* \\+w finds|strong=\"G2147\"\\+w*. \\+w To|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w knocks|strong=\"G2925\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* opened. *" + }, + { + "verseNum": 9, + "text": "\\+w Or|strong=\"G2228\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w there|strong=\"G1510\"\\+w* \\+w among|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3739\"\\+w*, if \\+w his|strong=\"G3739\"\\+w* \\+w son|strong=\"G5207\"\\+w* asks \\+w him|strong=\"G3588\"\\+w* \\+w for|strong=\"G1537\"\\+w* bread, \\+w will|strong=\"G5101\"\\+w* \\+w give|strong=\"G1929\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w a|strong=\"G1510\"\\+w* \\+w stone|strong=\"G3037\"\\+w*? *" + }, + { + "verseNum": 10, + "text": "\\+w Or|strong=\"G2228\"\\+w* \\+w if|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* asks \\+w for|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w fish|strong=\"G2486\"\\+w*, \\+w who|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w give|strong=\"G1929\"\\+w* \\+w him|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w serpent|strong=\"G3789\"\\+w*? *" + }, + { + "verseNum": 11, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w then|strong=\"G3767\"\\+w*, \\+w being|strong=\"G1510\"\\+w* \\+w evil|strong=\"G4190\"\\+w*, \\+w know|strong=\"G1492\"\\+w* \\+w how|strong=\"G4214\"\\+w* \\+w to|strong=\"G1722\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w gifts|strong=\"G1390\"\\+w* \\+w to|strong=\"G1722\"\\+w* \\+w your|strong=\"G1487\"\\+w* \\+w children|strong=\"G5043\"\\+w*, \\+w how|strong=\"G4214\"\\+w* \\+w much|strong=\"G4214\"\\+w* \\+w more|strong=\"G3123\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w your|strong=\"G1487\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w to|strong=\"G1722\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* ask \\+w him|strong=\"G3588\"\\+w*! *" + }, + { + "verseNum": 12, + "text": "\\+w Therefore|strong=\"G3767\"\\+w*, \\+w whatever|strong=\"G3745\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w desire|strong=\"G2309\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w men|strong=\"G3956\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w them|strong=\"G3588\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w law|strong=\"G3551\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*.*" + }, + { + "verseNum": 13, + "text": "“\\+w Enter|strong=\"G1525\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w narrow|strong=\"G4728\"\\+w* \\+w gate|strong=\"G4439\"\\+w*; \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w gate|strong=\"G4439\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w wide|strong=\"G4116\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w way|strong=\"G3598\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w broad|strong=\"G2149\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w leads|strong=\"G1519\"\\+w* \\+w to|strong=\"G1519\"\\+w* destruction, \\+w and|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w How|strong=\"G3754\"\\+w**+ 7:14 TR reads “Because” instead of “How”* \\+w narrow|strong=\"G4728\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w gate|strong=\"G4439\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w way|strong=\"G3598\"\\+w* \\+w is|strong=\"G1510\"\\+w* restricted \\+w that|strong=\"G3754\"\\+w* \\+w leads|strong=\"G1519\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w life|strong=\"G2222\"\\+w*! \\+w There|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w few|strong=\"G3641\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w it|strong=\"G2532\"\\+w*.*" + }, + { + "verseNum": 15, + "text": "“\\+w Beware|strong=\"G4337\"\\+w* \\+w of|strong=\"G1722\"\\+w* \\+w false|strong=\"G5578\"\\+w* \\+w prophets|strong=\"G5578\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*’s \\+w clothing|strong=\"G1742\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w inwardly|strong=\"G2081\"\\+w* \\+w are|strong=\"G1510\"\\+w* ravening \\+w wolves|strong=\"G3074\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w By|strong=\"G2228\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w fruits|strong=\"G2590\"\\+w* \\+w you|strong=\"G1438\"\\+w* \\+w will|strong=\"G3385\"\\+w* \\+w know|strong=\"G1921\"\\+w* \\+w them|strong=\"G3588\"\\+w*. \\+w Do|strong=\"G2228\"\\+w* \\+w you|strong=\"G1438\"\\+w* \\+w gather|strong=\"G4816\"\\+w* \\+w grapes|strong=\"G4718\"\\+w* \\+w from|strong=\"G3588\"\\+w* thorns \\+w or|strong=\"G2228\"\\+w* \\+w figs|strong=\"G4810\"\\+w* \\+w from|strong=\"G3588\"\\+w* \\+w thistles|strong=\"G5146\"\\+w*? *" + }, + { + "verseNum": 17, + "text": "\\+w Even|strong=\"G1161\"\\+w* \\+w so|strong=\"G3779\"\\+w*, \\+w every|strong=\"G3956\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w produces|strong=\"G4160\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w corrupt|strong=\"G4550\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w produces|strong=\"G4160\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w A|strong=\"G4160\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w can|strong=\"G1410\"\\+w*’t \\+w produce|strong=\"G4160\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*, \\+w neither|strong=\"G3761\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w a|strong=\"G4160\"\\+w* \\+w corrupt|strong=\"G4550\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w produce|strong=\"G4160\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w Every|strong=\"G3956\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w that|strong=\"G3956\"\\+w* doesn’t grow \\+w good|strong=\"G2570\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w is|strong=\"G3956\"\\+w* \\+w cut|strong=\"G1581\"\\+w* \\+w down|strong=\"G1581\"\\+w* \\+w and|strong=\"G2532\"\\+w* thrown \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fire|strong=\"G4442\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "Therefore \\+w by|strong=\"G1438\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w fruits|strong=\"G2590\"\\+w* \\+w you|strong=\"G1438\"\\+w* will \\+w know|strong=\"G1921\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "“\\+w Not|strong=\"G3756\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w Lord|strong=\"G2962\"\\+w*,’ \\+w will|strong=\"G2307\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G3962\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w*, \\+w but|strong=\"G3588\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w does|strong=\"G4160\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w of|strong=\"G3962\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w Many|strong=\"G4183\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w day|strong=\"G2250\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w Lord|strong=\"G2962\"\\+w*, didn’\\+w t|strong=\"G3588\"\\+w* \\+w we|strong=\"G2532\"\\+w* \\+w prophesy|strong=\"G4395\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G4674\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G4674\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w demons|strong=\"G1140\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G4674\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w mighty|strong=\"G1411\"\\+w* \\+w works|strong=\"G1411\"\\+w*?’ *" + }, + { + "verseNum": 23, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* tell \\+w them|strong=\"G3588\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w never|strong=\"G3763\"\\+w* \\+w knew|strong=\"G1097\"\\+w* \\+w you|strong=\"G5210\"\\+w*. Depart \\+w from|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w work|strong=\"G2038\"\\+w* iniquity.’*" + }, + { + "verseNum": 24, + "text": "“\\+w Everyone|strong=\"G3956\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w who|strong=\"G3588\"\\+w* hears \\+w these|strong=\"G3778\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w mine|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w does|strong=\"G4160\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* liken \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w wise|strong=\"G5429\"\\+w* \\+w man|strong=\"G3778\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w built|strong=\"G3618\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rock|strong=\"G4073\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w rain|strong=\"G1028\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w down|strong=\"G2597\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w floods|strong=\"G4215\"\\+w* \\+w came|strong=\"G2064\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* winds \\+w blew|strong=\"G4154\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w beat|strong=\"G4154\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w house|strong=\"G3614\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w fall|strong=\"G4098\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w founded|strong=\"G2311\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rock|strong=\"G4073\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w Everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* hears \\+w these|strong=\"G3778\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w mine|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w like|strong=\"G3666\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w foolish|strong=\"G3474\"\\+w* \\+w man|strong=\"G3778\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w built|strong=\"G3618\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* sand. *" + }, + { + "verseNum": 27, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w rain|strong=\"G1028\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w down|strong=\"G2597\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w floods|strong=\"G4215\"\\+w* \\+w came|strong=\"G2064\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* winds \\+w blew|strong=\"G4154\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w beat|strong=\"G4154\"\\+w* \\+w on|strong=\"G2597\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w house|strong=\"G3614\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w fell|strong=\"G4098\"\\+w*—\\+w and|strong=\"G2532\"\\+w* its \\+w fall|strong=\"G4098\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w great|strong=\"G3173\"\\+w*.”*" + }, + { + "verseNum": 28, + "text": "When|strong=\"G3753\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* finished|strong=\"G5055\"* saying|strong=\"G3056\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, the|strong=\"G2532\"* multitudes|strong=\"G3793\"* were|strong=\"G3588\"* astonished|strong=\"G1605\"* at|strong=\"G1909\"* his|strong=\"G1909\"* teaching|strong=\"G1322\"*," + }, + { + "verseNum": 29, + "text": "for|strong=\"G1063\"* he|strong=\"G2532\"* taught|strong=\"G1321\"* them|strong=\"G3588\"* with|strong=\"G2532\"* authority|strong=\"G1849\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* like|strong=\"G5613\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* came|strong=\"G2597\"* down|strong=\"G2597\"* from|strong=\"G2597\"* the|strong=\"G1161\"* mountain|strong=\"G3735\"*, great|strong=\"G4183\"* multitudes|strong=\"G3793\"* followed him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G2532\"* leper|strong=\"G3015\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3708\"* and|strong=\"G2532\"* worshiped|strong=\"G4352\"* him|strong=\"G3708\"*, saying|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, if|strong=\"G1437\"* you|strong=\"G1437\"* want|strong=\"G2309\"* to|strong=\"G2532\"*, you|strong=\"G1437\"* can|strong=\"G1410\"* make|strong=\"G2511\"* me|strong=\"G1473\"* clean|strong=\"G2511\"*.”" + }, + { + "verseNum": 3, + "text": "Jesus|strong=\"G3004\"* stretched|strong=\"G1614\"* out|strong=\"G2532\"* his|strong=\"G2532\"* hand|strong=\"G5495\"* and|strong=\"G2532\"* touched him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w I|strong=\"G2532\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w*. \\+w Be|strong=\"G2532\"\\+w* \\+w made|strong=\"G3004\"\\+w* \\+w clean|strong=\"G2511\"\\+w*.”* Immediately|strong=\"G2112\"* his|strong=\"G2532\"* leprosy|strong=\"G3014\"* was|strong=\"G3588\"* cleansed|strong=\"G2511\"*." + }, + { + "verseNum": 4, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “\\+w See|strong=\"G3708\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w nobody|strong=\"G3367\"\\+w*; \\+w but|strong=\"G2532\"\\+w* \\+w go|strong=\"G5217\"\\+w*, \\+w show|strong=\"G1166\"\\+w* \\+w yourself|strong=\"G4572\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w priest|strong=\"G2409\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w offer|strong=\"G4374\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w gift|strong=\"G1435\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w commanded|strong=\"G4367\"\\+w*, \\+w as|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w testimony|strong=\"G3142\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 5, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* came|strong=\"G4334\"* into|strong=\"G1519\"* Capernaum|strong=\"G2584\"*, a|strong=\"G1519\"* centurion|strong=\"G1543\"* came|strong=\"G4334\"* to|strong=\"G1519\"* him|strong=\"G3870\"*, asking him|strong=\"G3870\"* for|strong=\"G1519\"* help," + }, + { + "verseNum": 6, + "text": "saying|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, my|strong=\"G1722\"* servant|strong=\"G3816\"* lies in|strong=\"G1722\"* the|strong=\"G1722\"* house|strong=\"G3614\"* paralyzed|strong=\"G3885\"*, grievously|strong=\"G1171\"* tormented.”" + }, + { + "verseNum": 7, + "text": "Jesus|strong=\"G3004\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G2532\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w heal|strong=\"G2323\"\\+w* \\+w him|strong=\"G2532\"\\+w*.”*" + }, + { + "verseNum": 8, + "text": "The|strong=\"G2532\"* centurion|strong=\"G1543\"* answered|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, I|strong=\"G1473\"*’m not|strong=\"G3756\"* worthy|strong=\"G2425\"* for|strong=\"G1161\"* you|strong=\"G3004\"* to|strong=\"G2443\"* come|strong=\"G1525\"* under|strong=\"G5259\"* my|strong=\"G1525\"* roof|strong=\"G4721\"*. Just|strong=\"G2532\"* say|strong=\"G3004\"* the|strong=\"G2532\"* word|strong=\"G3056\"*, and|strong=\"G2532\"* my|strong=\"G1525\"* servant|strong=\"G3816\"* will|strong=\"G1510\"* be|strong=\"G1510\"* healed|strong=\"G2390\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* am|strong=\"G1510\"* also|strong=\"G2532\"* a|strong=\"G2192\"* man|strong=\"G3778\"* under|strong=\"G5259\"* authority|strong=\"G1849\"*, having|strong=\"G2192\"* under|strong=\"G5259\"* myself|strong=\"G1683\"* soldiers|strong=\"G4757\"*. I|strong=\"G1473\"* tell|strong=\"G3004\"* this|strong=\"G3778\"* one|strong=\"G3588\"*, ‘Go|strong=\"G4198\"*,’ and|strong=\"G2532\"* he|strong=\"G2532\"* goes|strong=\"G4198\"*; and|strong=\"G2532\"* tell|strong=\"G3004\"* another|strong=\"G3588\"*, ‘Come|strong=\"G2064\"*,’ and|strong=\"G2532\"* he|strong=\"G2532\"* comes|strong=\"G2064\"*; and|strong=\"G2532\"* tell|strong=\"G3004\"* my|strong=\"G1473\"* servant|strong=\"G1401\"*, ‘Do|strong=\"G4160\"* this|strong=\"G3778\"*,’ and|strong=\"G2532\"* he|strong=\"G2532\"* does|strong=\"G4160\"* it|strong=\"G2532\"*.”" + }, + { + "verseNum": 10, + "text": "When|strong=\"G1161\"* Jesus|strong=\"G2424\"* heard it|strong=\"G2532\"*, he|strong=\"G2532\"* marveled|strong=\"G2296\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* followed, “Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G2532\"\\+w* haven’\\+w t|strong=\"G3588\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w so|strong=\"G2532\"\\+w* \\+w great|strong=\"G5118\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w faith|strong=\"G4102\"\\+w*, \\+w not|strong=\"G3761\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Israel|strong=\"G2474\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2240\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* east \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w west|strong=\"G1424\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* sit down \\+w with|strong=\"G3326\"\\+w* Abraham, \\+w Isaac|strong=\"G2464\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w Jacob|strong=\"G2384\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G2532\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w*, *" + }, + { + "verseNum": 12, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* Kingdom \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w thrown|strong=\"G1544\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w outer|strong=\"G1857\"\\+w* \\+w darkness|strong=\"G4655\"\\+w*. \\+w There|strong=\"G1563\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w weeping|strong=\"G2805\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gnashing|strong=\"G1030\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w teeth|strong=\"G3599\"\\+w*.”*" + }, + { + "verseNum": 13, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G1722\"* centurion|strong=\"G1543\"*, “\\+w Go|strong=\"G5217\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w way|strong=\"G1722\"\\+w*. \\+w Let|strong=\"G1096\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w for|strong=\"G1722\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w believed|strong=\"G4100\"\\+w*.”* His|strong=\"G1722\"* servant|strong=\"G3816\"* was|strong=\"G1096\"* healed|strong=\"G2390\"* in|strong=\"G1722\"* that|strong=\"G3588\"* hour|strong=\"G5610\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"G2532\"* Jesus|strong=\"G2424\"* came|strong=\"G2064\"* into|strong=\"G1519\"* Peter|strong=\"G4074\"*’s house|strong=\"G3614\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* his|strong=\"G1519\"* wife’s mother lying sick with|strong=\"G2532\"* a|strong=\"G2532\"* fever|strong=\"G4445\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* touched her|strong=\"G1438\"* hand|strong=\"G5495\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* fever|strong=\"G4446\"* left her|strong=\"G1438\"*. So|strong=\"G2532\"* she|strong=\"G2532\"* got|strong=\"G1453\"* up|strong=\"G1453\"* and|strong=\"G2532\"* served|strong=\"G1247\"* him|strong=\"G3588\"*.+ 8:15 TR reads “them” instead of “him”*" + }, + { + "verseNum": 16, + "text": "When|strong=\"G1161\"* evening|strong=\"G3798\"* came|strong=\"G1096\"*, they|strong=\"G2532\"* brought|strong=\"G4374\"* to|strong=\"G2532\"* him|strong=\"G3588\"* many|strong=\"G4183\"* possessed|strong=\"G2192\"* with|strong=\"G2532\"* demons. He|strong=\"G2532\"* cast|strong=\"G1544\"* out|strong=\"G1544\"* the|strong=\"G2532\"* spirits|strong=\"G4151\"* with|strong=\"G2532\"* a|strong=\"G2192\"* word|strong=\"G3056\"*, and|strong=\"G2532\"* healed|strong=\"G2323\"* all|strong=\"G3956\"* who|strong=\"G3588\"* were|strong=\"G3588\"* sick|strong=\"G2560\"*," + }, + { + "verseNum": 17, + "text": "that|strong=\"G3588\"* it|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G2532\"* fulfilled|strong=\"G4137\"* which|strong=\"G3588\"* was|strong=\"G3588\"* spoken|strong=\"G3004\"* through|strong=\"G1223\"* Isaiah|strong=\"G2268\"* the|strong=\"G2532\"* prophet|strong=\"G4396\"*, saying|strong=\"G3004\"*, “He|strong=\"G2532\"* took|strong=\"G2983\"* our|strong=\"G2532\"* infirmities|strong=\"G3554\"* and|strong=\"G2532\"* bore our|strong=\"G2532\"* diseases|strong=\"G3554\"*.”+ 8:17 Isaiah 53:4 *" + }, + { + "verseNum": 18, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* Jesus|strong=\"G2424\"* saw|strong=\"G3708\"* great|strong=\"G4183\"* multitudes|strong=\"G3793\"* around|strong=\"G4012\"* him|strong=\"G3588\"*, he|strong=\"G1161\"* gave|strong=\"G2753\"* the|strong=\"G1519\"* order|strong=\"G2753\"* to|strong=\"G1519\"* depart to|strong=\"G1519\"* the|strong=\"G1519\"* other|strong=\"G4008\"* side|strong=\"G4008\"*." + }, + { + "verseNum": 19, + "text": "A|strong=\"G2532\"* scribe|strong=\"G1122\"* came|strong=\"G4334\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G2532\"*, “Teacher|strong=\"G1320\"*, I|strong=\"G2532\"* will|strong=\"G2532\"* follow you|strong=\"G4771\"* wherever|strong=\"G3699\"* you|strong=\"G4771\"* go|strong=\"G2532\"*.”" + }, + { + "verseNum": 20, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w The|strong=\"G2532\"\\+w* foxes \\+w have|strong=\"G2192\"\\+w* \\+w holes|strong=\"G5454\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w birds|strong=\"G4071\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w nests|strong=\"G2682\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3756\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w nowhere|strong=\"G3756\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w lay|strong=\"G2827\"\\+w* \\+w his|strong=\"G2192\"\\+w* \\+w head|strong=\"G2776\"\\+w*.”*" + }, + { + "verseNum": 21, + "text": "Another|strong=\"G2087\"* of|strong=\"G2532\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, allow|strong=\"G2010\"* me|strong=\"G1473\"* first|strong=\"G4413\"* to|strong=\"G2532\"* go|strong=\"G2010\"* and|strong=\"G2532\"* bury|strong=\"G2290\"* my|strong=\"G1473\"* father|strong=\"G3962\"*.”" + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Follow|strong=\"G1161\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* leave \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w bury|strong=\"G2290\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w dead|strong=\"G3498\"\\+w*.”*" + }, + { + "verseNum": 23, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* got|strong=\"G1684\"* into|strong=\"G1519\"* a|strong=\"G2532\"* boat|strong=\"G4143\"*, his|strong=\"G1519\"* disciples|strong=\"G3101\"* followed him|strong=\"G3588\"*." + }, + { + "verseNum": 24, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G1096\"* violent storm|strong=\"G4578\"* came|strong=\"G1096\"* up|strong=\"G2532\"* on|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*, so|strong=\"G2532\"* much|strong=\"G3173\"* that|strong=\"G3588\"* the|strong=\"G1722\"* boat|strong=\"G4143\"* was|strong=\"G1096\"* covered|strong=\"G2572\"* with|strong=\"G1722\"* the|strong=\"G1722\"* waves|strong=\"G2949\"*; but|strong=\"G1161\"* he|strong=\"G2532\"* was|strong=\"G1096\"* asleep|strong=\"G2518\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"G2532\"* disciples came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G2532\"* and|strong=\"G2532\"* woke|strong=\"G1453\"* him|strong=\"G2532\"* up|strong=\"G1453\"*, saying|strong=\"G3004\"*, “Save|strong=\"G4982\"* us|strong=\"G3004\"*, Lord|strong=\"G2962\"*! We|strong=\"G2532\"* are|strong=\"G2532\"* dying!”" + }, + { + "verseNum": 26, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w fearful|strong=\"G1169\"\\+w*, O \\+w you|strong=\"G3004\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w little|strong=\"G3640\"\\+w* \\+w faith|strong=\"G3640\"\\+w*?” * Then|strong=\"G2532\"* he|strong=\"G2532\"* got|strong=\"G1453\"* up|strong=\"G1453\"*, rebuked|strong=\"G2008\"* the|strong=\"G2532\"* wind and|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, and|strong=\"G2532\"* there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G1096\"* great|strong=\"G3173\"* calm|strong=\"G1055\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"G2532\"* men|strong=\"G3778\"* marveled|strong=\"G2296\"*, saying|strong=\"G3004\"*, “What|strong=\"G3588\"* kind|strong=\"G4217\"* of|strong=\"G2532\"* man|strong=\"G3778\"* is|strong=\"G1510\"* this|strong=\"G3778\"*, that|strong=\"G3754\"* even|strong=\"G2532\"* the|strong=\"G2532\"* wind and|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* obey|strong=\"G5219\"* him|strong=\"G3588\"*?”" + }, + { + "verseNum": 28, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* other|strong=\"G4008\"* side|strong=\"G4008\"*, into|strong=\"G1519\"* the|strong=\"G2532\"* country|strong=\"G5561\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Gergesenes,+ 8:28 NU reads “Gadarenes”* two|strong=\"G1417\"* people|strong=\"G3361\"* possessed by|strong=\"G1223\"* demons met|strong=\"G5221\"* him|strong=\"G3588\"* there|strong=\"G2532\"*, coming|strong=\"G2064\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* tombs|strong=\"G3419\"*, exceedingly|strong=\"G3029\"* fierce|strong=\"G5467\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* nobody could|strong=\"G2480\"* pass|strong=\"G3928\"* that|strong=\"G3588\"* way|strong=\"G3598\"*." + }, + { + "verseNum": 29, + "text": "Behold|strong=\"G2400\"*, they|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"*, saying|strong=\"G3004\"*, “What|strong=\"G5101\"* do|strong=\"G5101\"* we|strong=\"G2249\"* have|strong=\"G2532\"* to|strong=\"G2532\"* do|strong=\"G5101\"* with|strong=\"G2532\"* you|strong=\"G4771\"*, Jesus|strong=\"G3004\"*, Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*? Have|strong=\"G2532\"* you|strong=\"G4771\"* come|strong=\"G2064\"* here|strong=\"G5602\"* to|strong=\"G2532\"* torment us|strong=\"G3004\"* before|strong=\"G4253\"* the|strong=\"G2532\"* time|strong=\"G2540\"*?”" + }, + { + "verseNum": 30, + "text": "Now|strong=\"G1161\"* there|strong=\"G1161\"* was|strong=\"G1510\"* a|strong=\"G1510\"* herd of|strong=\"G4183\"* many|strong=\"G4183\"* pigs|strong=\"G5519\"* feeding|strong=\"G1006\"* far|strong=\"G3112\"* away|strong=\"G3112\"* from|strong=\"G1510\"* them|strong=\"G4183\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"G1519\"* demons|strong=\"G1142\"* begged|strong=\"G3870\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “If|strong=\"G1487\"* you|strong=\"G1487\"* cast|strong=\"G1544\"* us|strong=\"G3004\"* out|strong=\"G1544\"*, permit us|strong=\"G3004\"* to|strong=\"G1519\"* go|strong=\"G1519\"* away|strong=\"G1544\"* into|strong=\"G1519\"* the|strong=\"G1519\"* herd of|strong=\"G3588\"* pigs|strong=\"G5519\"*.”" + }, + { + "verseNum": 32, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Go|strong=\"G5217\"\\+w*!”*" + }, + { + "verseNum": 33, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* fed|strong=\"G1006\"* them|strong=\"G3588\"* fled|strong=\"G5343\"* and|strong=\"G2532\"* went|strong=\"G2532\"* away|strong=\"G5343\"* into|strong=\"G1519\"* the|strong=\"G2532\"* city|strong=\"G4172\"* and|strong=\"G2532\"* told everything|strong=\"G3956\"*, including|strong=\"G2532\"* what|strong=\"G3588\"* happened|strong=\"G3588\"* to|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* possessed with|strong=\"G2532\"* demons." + }, + { + "verseNum": 34, + "text": "Behold|strong=\"G2400\"*, all|strong=\"G3956\"* the|strong=\"G2532\"* city|strong=\"G4172\"* came|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G1519\"* meet|strong=\"G5222\"* Jesus|strong=\"G2424\"*. When|strong=\"G2532\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* begged|strong=\"G3870\"* that|strong=\"G3588\"* he|strong=\"G2532\"* would|strong=\"G2532\"* depart|strong=\"G1831\"* from|strong=\"G2532\"* their|strong=\"G2532\"* borders|strong=\"G3725\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* entered|strong=\"G2064\"* into|strong=\"G1519\"* a|strong=\"G2532\"* boat|strong=\"G4143\"* and|strong=\"G2532\"* crossed|strong=\"G1276\"* over|strong=\"G1276\"*, and|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* his|strong=\"G1519\"* own|strong=\"G2398\"* city|strong=\"G4172\"*." + }, + { + "verseNum": 2, + "text": "Behold|strong=\"G2400\"*, they|strong=\"G2532\"* brought|strong=\"G4374\"* to|strong=\"G2532\"* him|strong=\"G3588\"* a|strong=\"G2532\"* man who|strong=\"G3588\"* was|strong=\"G3588\"* paralyzed|strong=\"G3885\"*, lying on|strong=\"G1909\"* a|strong=\"G2532\"* bed|strong=\"G2825\"*. Jesus|strong=\"G2424\"*, seeing|strong=\"G3708\"* their|strong=\"G2532\"* faith|strong=\"G4102\"*, said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* paralytic|strong=\"G3885\"*, “\\+w Son|strong=\"G5043\"\\+w*, cheer \\+w up|strong=\"G4374\"\\+w*! \\+w Your|strong=\"G2532\"\\+w* sins \\+w are|strong=\"G3588\"\\+w* forgiven \\+w you|strong=\"G4771\"\\+w*.”*" + }, + { + "verseNum": 3, + "text": "Behold|strong=\"G2400\"*, some|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G1722\"* scribes|strong=\"G1122\"* said|strong=\"G3004\"* to|strong=\"G2532\"* themselves|strong=\"G1438\"*, “This|strong=\"G3778\"* man|strong=\"G5100\"* blasphemes.”" + }, + { + "verseNum": 4, + "text": "Jesus|strong=\"G2424\"*, knowing their|strong=\"G2532\"* thoughts|strong=\"G1761\"*, said|strong=\"G3004\"*, “\\+w Why|strong=\"G2444\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w think|strong=\"G1760\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hearts|strong=\"G2588\"\\+w*? *" + }, + { + "verseNum": 5, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w easier|strong=\"G2123\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Your|strong=\"G2532\"\\+w* sins \\+w are|strong=\"G1510\"\\+w* forgiven;’ \\+w or|strong=\"G2228\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Get|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w walk|strong=\"G4043\"\\+w*’? *" + }, + { + "verseNum": 6, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1519\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w to|strong=\"G1519\"\\+w* forgive sins—”* (then|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G2532\"* paralytic|strong=\"G3885\"*), “\\+w Get|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w take|strong=\"G1161\"\\+w* \\+w up|strong=\"G1453\"\\+w* \\+w your|strong=\"G2192\"\\+w* mat, \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w house|strong=\"G3624\"\\+w*.”*" + }, + { + "verseNum": 7, + "text": "He|strong=\"G2532\"* arose|strong=\"G1453\"* and|strong=\"G2532\"* departed to|strong=\"G1519\"* his|strong=\"G1519\"* house|strong=\"G3624\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* saw|strong=\"G3708\"* it|strong=\"G2532\"*, they|strong=\"G2532\"* marveled and|strong=\"G2532\"* glorified|strong=\"G1392\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* had|strong=\"G2532\"* given|strong=\"G1325\"* such|strong=\"G5108\"* authority|strong=\"G1849\"* to|strong=\"G2532\"* men|strong=\"G5108\"*." + }, + { + "verseNum": 9, + "text": "As|strong=\"G2532\"* Jesus|strong=\"G2424\"* passed|strong=\"G2424\"* by|strong=\"G1909\"* from|strong=\"G2532\"* there|strong=\"G2532\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G2532\"* man called|strong=\"G3004\"* Matthew|strong=\"G3156\"* sitting|strong=\"G2521\"* at|strong=\"G1909\"* the|strong=\"G2532\"* tax|strong=\"G5058\"* collection office. He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Follow \\+w me|strong=\"G1473\"\\+w*.”* He|strong=\"G2532\"* got up|strong=\"G2532\"* and|strong=\"G2532\"* followed him|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "As|strong=\"G1722\"* he|strong=\"G2532\"* sat|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* house|strong=\"G3614\"*, behold|strong=\"G2400\"*, many|strong=\"G4183\"* tax|strong=\"G5057\"* collectors|strong=\"G5057\"* and|strong=\"G2532\"* sinners came|strong=\"G2064\"* and|strong=\"G2532\"* sat|strong=\"G2532\"* down with|strong=\"G1722\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* his|strong=\"G1722\"* disciples|strong=\"G3101\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* saw|strong=\"G3708\"* it|strong=\"G2532\"*, they|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* his|strong=\"G1223\"* disciples|strong=\"G3101\"*, “Why|strong=\"G5101\"* does|strong=\"G2068\"* your|strong=\"G1223\"* teacher|strong=\"G1320\"* eat|strong=\"G2068\"* with|strong=\"G3326\"* tax|strong=\"G5057\"* collectors|strong=\"G5057\"* and|strong=\"G2532\"* sinners?”" + }, + { + "verseNum": 12, + "text": "When|strong=\"G1161\"* Jesus|strong=\"G3004\"* heard it|strong=\"G1161\"*, he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w healthy|strong=\"G2480\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w need|strong=\"G5532\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w physician|strong=\"G2395\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w sick|strong=\"G2560\"\\+w* \\+w do|strong=\"G3004\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w you|strong=\"G1510\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w learn|strong=\"G3129\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w this|strong=\"G2532\"\\+w* \\+w means|strong=\"G1510\"\\+w*: ‘\\+w I|strong=\"G2532\"\\+w* \\+w desire|strong=\"G2309\"\\+w* \\+w mercy|strong=\"G1656\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w sacrifice|strong=\"G2378\"\\+w*,’*+ 9:13 Hosea 6:6* \\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w call|strong=\"G2564\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w righteous|strong=\"G1342\"\\+w*, \\+w but|strong=\"G1161\"\\+w* sinners \\+w to|strong=\"G2532\"\\+w* repentance.”*+ 9:13 NU omits “to repentance”.*" + }, + { + "verseNum": 14, + "text": "Then|strong=\"G2532\"* John|strong=\"G2491\"*’s disciples|strong=\"G3101\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Why|strong=\"G5101\"* do|strong=\"G5101\"* we|strong=\"G2249\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* fast|strong=\"G3522\"* often|strong=\"G4183\"*, but|strong=\"G1161\"* your|strong=\"G1223\"* disciples|strong=\"G3101\"* don’t|strong=\"G3588\"* fast|strong=\"G3522\"*?”" + }, + { + "verseNum": 15, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Can|strong=\"G1410\"\\+w* \\+w the|strong=\"G2532\"\\+w* friends \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w mourn|strong=\"G3996\"\\+w* \\+w as|strong=\"G3745\"\\+w* \\+w long|strong=\"G2250\"\\+w* \\+w as|strong=\"G3745\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w them|strong=\"G3588\"\\+w*? \\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* taken \\+w away|strong=\"G3326\"\\+w* \\+w from|strong=\"G2064\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w fast|strong=\"G3522\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w puts|strong=\"G1911\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w piece|strong=\"G1915\"\\+w* \\+w of|strong=\"G2532\"\\+w* unshrunk \\+w cloth|strong=\"G4470\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w old|strong=\"G3820\"\\+w* \\+w garment|strong=\"G2440\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w patch|strong=\"G1915\"\\+w* \\+w would|strong=\"G1096\"\\+w* \\+w tear|strong=\"G4978\"\\+w* away \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w garment|strong=\"G2440\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w worse|strong=\"G5501\"\\+w* hole \\+w is|strong=\"G3588\"\\+w* \\+w made|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w Neither|strong=\"G3761\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w people|strong=\"G3761\"\\+w* \\+w put|strong=\"G2532\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w wine|strong=\"G3631\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w old|strong=\"G3820\"\\+w* wineskins, \\+w or|strong=\"G2532\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w the|strong=\"G2532\"\\+w* skins \\+w would|strong=\"G2532\"\\+w* \\+w burst|strong=\"G4486\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wine|strong=\"G3631\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w spilled|strong=\"G1632\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* skins ruined. \\+w No|strong=\"G3361\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w put|strong=\"G2532\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w wine|strong=\"G3631\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w fresh|strong=\"G2537\"\\+w* wineskins, \\+w and|strong=\"G2532\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w preserved|strong=\"G4933\"\\+w*.”*" + }, + { + "verseNum": 18, + "text": "While|strong=\"G2980\"* he|strong=\"G2532\"* told|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, behold|strong=\"G2400\"*, a|strong=\"G2532\"* ruler came|strong=\"G2064\"* and|strong=\"G2532\"* worshiped|strong=\"G4352\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “My|strong=\"G3708\"* daughter|strong=\"G2364\"* has|strong=\"G3778\"* just|strong=\"G2532\"* died|strong=\"G5053\"*, but|strong=\"G2532\"* come|strong=\"G2064\"* and|strong=\"G2532\"* lay|strong=\"G2007\"* your|strong=\"G2532\"* hand|strong=\"G5495\"* on|strong=\"G1909\"* her|strong=\"G1438\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* will|strong=\"G2532\"* live|strong=\"G2198\"*.”" + }, + { + "verseNum": 19, + "text": "Jesus|strong=\"G2424\"* got|strong=\"G1453\"* up|strong=\"G1453\"* and|strong=\"G2532\"* followed him|strong=\"G3588\"*, as|strong=\"G2532\"* did|strong=\"G2532\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"*." + }, + { + "verseNum": 20, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G2532\"* woman|strong=\"G1135\"* who|strong=\"G3588\"* had|strong=\"G2532\"* a|strong=\"G2532\"* discharge of|strong=\"G2532\"* blood for|strong=\"G2532\"* twelve|strong=\"G1427\"* years|strong=\"G2094\"* came|strong=\"G4334\"* behind|strong=\"G3693\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* touched the|strong=\"G2532\"* fringe|strong=\"G2899\"*+ 9:20 or, tassel* of|strong=\"G2532\"* his|strong=\"G3708\"* garment|strong=\"G2440\"*;" + }, + { + "verseNum": 21, + "text": "for|strong=\"G1063\"* she|strong=\"G1437\"* said|strong=\"G3004\"* within|strong=\"G1722\"* herself|strong=\"G1438\"*, “If|strong=\"G1437\"* I|strong=\"G1063\"* just|strong=\"G3440\"* touch his|strong=\"G1438\"* garment|strong=\"G2440\"*, I|strong=\"G1063\"* will|strong=\"G3004\"* be|strong=\"G3588\"* made|strong=\"G4982\"* well|strong=\"G4982\"*.”" + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"*, turning|strong=\"G4762\"* around and|strong=\"G2532\"* seeing|strong=\"G3708\"* her|strong=\"G1438\"*, said|strong=\"G3004\"*, “\\+w Daughter|strong=\"G2364\"\\+w*, cheer \\+w up|strong=\"G2532\"\\+w*! \\+w Your|strong=\"G2532\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w has|strong=\"G4102\"\\+w* \\+w made|strong=\"G4982\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w well|strong=\"G4982\"\\+w*.”* And|strong=\"G2532\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* was|strong=\"G3588\"* made|strong=\"G4982\"* well|strong=\"G4982\"* from|strong=\"G2532\"* that|strong=\"G3588\"* hour|strong=\"G5610\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"G2532\"* Jesus|strong=\"G2424\"* came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* ruler’s house|strong=\"G3614\"* and|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* flute players and|strong=\"G2532\"* the|strong=\"G2532\"* crowd|strong=\"G3793\"* in|strong=\"G1519\"* noisy|strong=\"G2350\"* disorder|strong=\"G2350\"*," + }, + { + "verseNum": 24, + "text": "he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Make|strong=\"G2532\"\\+w* room, \\+w because|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w girl|strong=\"G2877\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* dead, \\+w but|strong=\"G2532\"\\+w* \\+w sleeping|strong=\"G2518\"\\+w*.”*" + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* when|strong=\"G3753\"* the|strong=\"G2532\"* crowd|strong=\"G3793\"* was|strong=\"G3588\"* sent|strong=\"G1544\"* out|strong=\"G1544\"*, he|strong=\"G2532\"* entered|strong=\"G1525\"* in|strong=\"G1525\"*, took|strong=\"G2902\"* her|strong=\"G3588\"* by|strong=\"G2532\"* the|strong=\"G2532\"* hand|strong=\"G5495\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* girl|strong=\"G2877\"* arose|strong=\"G1453\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"G2532\"* report of|strong=\"G2532\"* this|strong=\"G3778\"* went|strong=\"G1831\"* out|strong=\"G1831\"* into|strong=\"G1519\"* all|strong=\"G3650\"* that|strong=\"G3588\"* land|strong=\"G1093\"*." + }, + { + "verseNum": 27, + "text": "As|strong=\"G2532\"* Jesus|strong=\"G2424\"* passed|strong=\"G2424\"* by|strong=\"G2532\"* from|strong=\"G2532\"* there|strong=\"G2532\"*, two|strong=\"G1417\"* blind|strong=\"G5185\"* men|strong=\"G5185\"* followed him|strong=\"G3588\"*, calling|strong=\"G3004\"* out|strong=\"G2896\"* and|strong=\"G2532\"* saying|strong=\"G3004\"*, “Have|strong=\"G2532\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* us|strong=\"G3004\"*, son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*!”" + }, + { + "verseNum": 28, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2424\"* come|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* house|strong=\"G3614\"*, the|strong=\"G2532\"* blind|strong=\"G5185\"* men|strong=\"G3778\"* came|strong=\"G2064\"* to|strong=\"G1519\"* him|strong=\"G3588\"*. Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Do|strong=\"G4160\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G2532\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w this|strong=\"G3778\"\\+w*?”*" + }, + { + "verseNum": 29, + "text": "Then|strong=\"G5119\"* he|strong=\"G3588\"* touched|strong=\"G5119\"* their|strong=\"G2596\"* eyes|strong=\"G3788\"*, saying|strong=\"G3004\"*, “\\+w According|strong=\"G2596\"\\+w* \\+w to|strong=\"G2596\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w it|strong=\"G5119\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w to|strong=\"G2596\"\\+w* \\+w you|strong=\"G5210\"\\+w*.”*" + }, + { + "verseNum": 30, + "text": "Then|strong=\"G2532\"* their|strong=\"G2532\"* eyes|strong=\"G3788\"* were|strong=\"G3588\"* opened. Jesus|strong=\"G2424\"* strictly commanded them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w See|strong=\"G3708\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w no|strong=\"G3367\"\\+w* \\+w one|strong=\"G3367\"\\+w* \\+w knows|strong=\"G1097\"\\+w* \\+w about|strong=\"G2424\"\\+w* \\+w this|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 31, + "text": "But|strong=\"G1161\"* they|strong=\"G1161\"* went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G1161\"* spread|strong=\"G1831\"* abroad|strong=\"G1831\"* his|strong=\"G1722\"* fame|strong=\"G1310\"* in|strong=\"G1722\"* all|strong=\"G3650\"* that|strong=\"G3588\"* land|strong=\"G1093\"*." + }, + { + "verseNum": 32, + "text": "As|strong=\"G1161\"* they|strong=\"G1161\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, behold|strong=\"G2400\"*, a|strong=\"G3708\"* mute|strong=\"G2974\"* man|strong=\"G2974\"* who|strong=\"G2974\"* was|strong=\"G1161\"* demon possessed was|strong=\"G1161\"* brought|strong=\"G4374\"* to|strong=\"G1161\"* him|strong=\"G3708\"*." + }, + { + "verseNum": 33, + "text": "When|strong=\"G2532\"* the|strong=\"G1722\"* demon|strong=\"G1140\"* was|strong=\"G3588\"* cast|strong=\"G1544\"* out|strong=\"G1544\"*, the|strong=\"G1722\"* mute|strong=\"G2974\"* man|strong=\"G2974\"* spoke|strong=\"G2980\"*. The|strong=\"G1722\"* multitudes|strong=\"G3793\"* marveled|strong=\"G2296\"*, saying|strong=\"G3004\"*, “Nothing|strong=\"G3763\"* like|strong=\"G3779\"* this|strong=\"G3588\"* has|strong=\"G2532\"* ever|strong=\"G3763\"* been|strong=\"G2532\"* seen|strong=\"G5316\"* in|strong=\"G1722\"* Israel|strong=\"G2474\"*!”" + }, + { + "verseNum": 34, + "text": "But|strong=\"G1161\"* the|strong=\"G1722\"* Pharisees|strong=\"G5330\"* said|strong=\"G3004\"*, “By|strong=\"G1722\"* the|strong=\"G1722\"* prince of|strong=\"G1722\"* the|strong=\"G1722\"* demons|strong=\"G1140\"*, he|strong=\"G1161\"* casts|strong=\"G1544\"* out|strong=\"G1544\"* demons|strong=\"G1140\"*.”" + }, + { + "verseNum": 35, + "text": "Jesus|strong=\"G2424\"* went|strong=\"G2424\"* about|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* cities|strong=\"G4172\"* and|strong=\"G2532\"* the|strong=\"G1722\"* villages|strong=\"G2968\"*, teaching|strong=\"G1321\"* in|strong=\"G1722\"* their|strong=\"G2532\"* synagogues|strong=\"G4864\"* and|strong=\"G2532\"* preaching|strong=\"G2784\"* the|strong=\"G1722\"* Good|strong=\"G3956\"* News|strong=\"G2098\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Kingdom, and|strong=\"G2532\"* healing|strong=\"G2323\"* every|strong=\"G3956\"* disease|strong=\"G3119\"* and|strong=\"G2532\"* every|strong=\"G3956\"* sickness|strong=\"G3119\"* among|strong=\"G1722\"* the|strong=\"G1722\"* people|strong=\"G3956\"*." + }, + { + "verseNum": 36, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"*, he|strong=\"G2532\"* was|strong=\"G1510\"* moved|strong=\"G4697\"* with|strong=\"G2532\"* compassion|strong=\"G4697\"* for|strong=\"G3754\"* them|strong=\"G3588\"* because|strong=\"G3754\"* they|strong=\"G2532\"* were|strong=\"G1510\"* harassed+ 9:36 TR reads “weary” instead of “harassed” * and|strong=\"G2532\"* scattered|strong=\"G3588\"*, like|strong=\"G5616\"* sheep|strong=\"G4263\"* without|strong=\"G3361\"* a|strong=\"G2192\"* shepherd|strong=\"G4166\"*." + }, + { + "verseNum": 37, + "text": "Then|strong=\"G5119\"* he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* his|strong=\"G3588\"* disciples|strong=\"G3101\"*, “\\+w The|strong=\"G1161\"\\+w* \\+w harvest|strong=\"G2326\"\\+w* \\+w indeed|strong=\"G3303\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w plentiful|strong=\"G4183\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w laborers|strong=\"G2040\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w few|strong=\"G3641\"\\+w*. *" + }, + { + "verseNum": 38, + "text": "\\+w Pray|strong=\"G1189\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2962\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w harvest|strong=\"G2326\"\\+w* \\+w will|strong=\"G2962\"\\+w* \\+w send|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w laborers|strong=\"G2040\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w harvest|strong=\"G2326\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* called|strong=\"G4341\"* to|strong=\"G2532\"* himself his|strong=\"G3956\"* twelve|strong=\"G1427\"* disciples|strong=\"G3101\"*, and|strong=\"G2532\"* gave|strong=\"G1325\"* them|strong=\"G3588\"* authority|strong=\"G1849\"* over|strong=\"G1849\"* unclean spirits|strong=\"G4151\"*, to|strong=\"G2532\"* cast|strong=\"G1544\"* them|strong=\"G3588\"* out|strong=\"G1544\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* heal|strong=\"G2323\"* every|strong=\"G3956\"* disease|strong=\"G3119\"* and|strong=\"G2532\"* every|strong=\"G3956\"* sickness|strong=\"G3119\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* names|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"* apostles are|strong=\"G1510\"* these|strong=\"G3778\"*. The|strong=\"G2532\"* first|strong=\"G4413\"*, Simon|strong=\"G4613\"*, who|strong=\"G3588\"* is|strong=\"G1510\"* called|strong=\"G3004\"* Peter|strong=\"G4074\"*; Andrew, his|strong=\"G2532\"* brother; James|strong=\"G2385\"* the|strong=\"G2532\"* son of|strong=\"G2532\"* Zebedee|strong=\"G2199\"*; John|strong=\"G2491\"*, his|strong=\"G2532\"* brother;" + }, + { + "verseNum": 3, + "text": "Philip|strong=\"G5376\"*; Bartholomew; Thomas|strong=\"G2381\"*; Matthew|strong=\"G3156\"* the|strong=\"G2532\"* tax|strong=\"G5057\"* collector|strong=\"G5057\"*; James|strong=\"G2385\"* the|strong=\"G2532\"* son of|strong=\"G2532\"* Alphaeus; Lebbaeus|strong=\"G3002\"*, who|strong=\"G3588\"* was|strong=\"G3588\"* also|strong=\"G2532\"* called|strong=\"G3588\"*+ 10:3 NU omits “Lebbaeus, who was also called”* Thaddaeus|strong=\"G2280\"*;" + }, + { + "verseNum": 4, + "text": "Simon|strong=\"G4613\"* the|strong=\"G2532\"* Zealot|strong=\"G2581\"*; and|strong=\"G2532\"* Judas|strong=\"G2455\"* Iscariot|strong=\"G2469\"*, who|strong=\"G3588\"* also|strong=\"G2532\"* betrayed|strong=\"G3860\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "Jesus|strong=\"G2424\"* sent|strong=\"G2532\"* these|strong=\"G3778\"* twelve|strong=\"G1427\"* out|strong=\"G2532\"* and|strong=\"G2532\"* commanded|strong=\"G3853\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w go|strong=\"G1525\"\\+w* \\+w among|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Gentiles|strong=\"G1484\"\\+w*, \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w any|strong=\"G3361\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Samaritans|strong=\"G4541\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w Rather|strong=\"G3123\"\\+w*, \\+w go|strong=\"G4198\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G1161\"\\+w* lost \\+w sheep|strong=\"G4263\"\\+w* \\+w of|strong=\"G3624\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w of|strong=\"G3624\"\\+w* \\+w Israel|strong=\"G2474\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w As|strong=\"G1161\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w go|strong=\"G4198\"\\+w*, \\+w preach|strong=\"G2784\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w The|strong=\"G1161\"\\+w* Kingdom \\+w of|strong=\"G3588\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w at|strong=\"G1161\"\\+w* \\+w hand|strong=\"G1448\"\\+w*!’ *" + }, + { + "verseNum": 8, + "text": "\\+w Heal|strong=\"G2323\"\\+w* \\+w the|strong=\"G2983\"\\+w* sick, \\+w cleanse|strong=\"G2511\"\\+w* \\+w the|strong=\"G2983\"\\+w* \\+w lepers|strong=\"G3015\"\\+w*,*+ 10:8 TR adds “raise the dead,”* \\+w and|strong=\"G2983\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w demons|strong=\"G1140\"\\+w*. \\+w Freely|strong=\"G1432\"\\+w* \\+w you|strong=\"G1325\"\\+w* \\+w received|strong=\"G2983\"\\+w*, so \\+w freely|strong=\"G1432\"\\+w* \\+w give|strong=\"G1325\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "Don’\\+w t|strong=\"G3588\"\\+w* \\+w take|strong=\"G2932\"\\+w* \\+w any|strong=\"G3361\"\\+w* \\+w gold|strong=\"G5557\"\\+w*, silver, \\+w or|strong=\"G3366\"\\+w* \\+w brass|strong=\"G5475\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w your|strong=\"G3366\"\\+w* \\+w money|strong=\"G5475\"\\+w* \\+w belts|strong=\"G2223\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "Take \\+w no|strong=\"G3361\"\\+w* \\+w bag|strong=\"G4082\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w your|strong=\"G3366\"\\+w* \\+w journey|strong=\"G3598\"\\+w*, \\+w neither|strong=\"G3366\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w coats|strong=\"G5509\"\\+w*, \\+w nor|strong=\"G3366\"\\+w* \\+w sandals|strong=\"G5266\"\\+w*, \\+w nor|strong=\"G3366\"\\+w* \\+w staff|strong=\"G4464\"\\+w*: \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w laborer|strong=\"G2040\"\\+w* \\+w is|strong=\"G3588\"\\+w* worthy \\+w of|strong=\"G3598\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w food|strong=\"G5160\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w Into|strong=\"G1519\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w village|strong=\"G2968\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w enter|strong=\"G1525\"\\+w*, find \\+w out|strong=\"G1831\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* worthy, \\+w and|strong=\"G1161\"\\+w* \\+w stay|strong=\"G3306\"\\+w* \\+w there|strong=\"G1161\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w on|strong=\"G1722\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w As|strong=\"G1519\"\\+w* \\+w you|strong=\"G1438\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w household|strong=\"G3614\"\\+w*, greet \\+w it|strong=\"G1161\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w household|strong=\"G3614\"\\+w* \\+w is|strong=\"G1510\"\\+w* worthy, \\+w let|strong=\"G1161\"\\+w* \\+w your|strong=\"G1437\"\\+w* \\+w peace|strong=\"G1515\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w it|strong=\"G2532\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* worthy, \\+w let|strong=\"G1161\"\\+w* \\+w your|strong=\"G1437\"\\+w* \\+w peace|strong=\"G1515\"\\+w* \\+w return|strong=\"G1994\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w Whoever|strong=\"G3739\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w or|strong=\"G2228\"\\+w* hear \\+w your|strong=\"G2532\"\\+w* \\+w words|strong=\"G3056\"\\+w*, \\+w as|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w city|strong=\"G4172\"\\+w*, \\+w shake|strong=\"G1621\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dust|strong=\"G2868\"\\+w* \\+w off|strong=\"G1621\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w feet|strong=\"G4228\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w more|strong=\"G2532\"\\+w* tolerable \\+w for|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w land|strong=\"G1093\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w Sodom|strong=\"G4670\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Gomorrah|strong=\"G1116\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w for|strong=\"G1722\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w city|strong=\"G4172\"\\+w*.*" + }, + { + "verseNum": 16, + "text": "“\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* send \\+w you|strong=\"G5210\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w wolves|strong=\"G3074\"\\+w*. \\+w Therefore|strong=\"G3767\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w wise|strong=\"G5429\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w serpents|strong=\"G3789\"\\+w* \\+w and|strong=\"G2532\"\\+w* harmless \\+w as|strong=\"G5613\"\\+w* \\+w doves|strong=\"G4058\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w beware|strong=\"G4337\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w men|strong=\"G3588\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w councils|strong=\"G4892\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w scourge|strong=\"G3146\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w Yes|strong=\"G1161\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w brought|strong=\"G1161\"\\+w* \\+w before|strong=\"G1909\"\\+w* \\+w governors|strong=\"G2232\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w kings|strong=\"G3588\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w sake|strong=\"G1752\"\\+w*, \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w testimony|strong=\"G3142\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w up|strong=\"G3860\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w anxious|strong=\"G3309\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w say|strong=\"G2980\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w say|strong=\"G2980\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w it|strong=\"G1063\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w speak|strong=\"G2980\"\\+w*, \\+w but|strong=\"G1063\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w of|strong=\"G4151\"\\+w* \\+w your|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w speaks|strong=\"G2980\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*.*" + }, + { + "verseNum": 21, + "text": "“Brother \\+w will|strong=\"G2532\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w up|strong=\"G3860\"\\+w* brother \\+w to|strong=\"G1519\"\\+w* \\+w death|strong=\"G2288\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w child|strong=\"G5043\"\\+w*. \\+w Children|strong=\"G5043\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rise|strong=\"G1881\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w parents|strong=\"G1118\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w cause|strong=\"G2289\"\\+w* \\+w them|strong=\"G1438\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w put|strong=\"G2289\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w death|strong=\"G2288\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w You|strong=\"G1510\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w hated|strong=\"G3404\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w men|strong=\"G3956\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w name|strong=\"G3686\"\\+w*’s \\+w sake|strong=\"G1223\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w endures|strong=\"G5278\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w end|strong=\"G5056\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w saved|strong=\"G4982\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w persecute|strong=\"G1377\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w city|strong=\"G4172\"\\+w*, \\+w flee|strong=\"G5343\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w next|strong=\"G2087\"\\+w*, \\+w for|strong=\"G1063\"\\+w* most \\+w certainly|strong=\"G1063\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G3778\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w have|strong=\"G5210\"\\+w* gone \\+w through|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w cities|strong=\"G4172\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Israel|strong=\"G2474\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w come|strong=\"G2064\"\\+w*.*" + }, + { + "verseNum": 24, + "text": "“\\+w A|strong=\"G1510\"\\+w* \\+w disciple|strong=\"G3101\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w above|strong=\"G5228\"\\+w* \\+w his|strong=\"G5228\"\\+w* \\+w teacher|strong=\"G1320\"\\+w*, \\+w nor|strong=\"G3761\"\\+w* \\+w a|strong=\"G1510\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w above|strong=\"G5228\"\\+w* \\+w his|strong=\"G5228\"\\+w* \\+w lord|strong=\"G2962\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* enough \\+w for|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w disciple|strong=\"G3101\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w teacher|strong=\"G1320\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w lord|strong=\"G2962\"\\+w*. \\+w If|strong=\"G1487\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w called|strong=\"G1941\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w master|strong=\"G2962\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w house|strong=\"G3617\"\\+w* Beelzebul,*+ 10:25 Literally, Lord of the Flies, or the devil* \\+w how|strong=\"G5613\"\\+w* \\+w much|strong=\"G4214\"\\+w* \\+w more|strong=\"G3123\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w household|strong=\"G3615\"\\+w*! *" + }, + { + "verseNum": 26, + "text": "\\+w Therefore|strong=\"G3767\"\\+w* don’t \\+w be|strong=\"G1510\"\\+w* \\+w afraid|strong=\"G5399\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w them|strong=\"G1438\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w nothing|strong=\"G3762\"\\+w* \\+w covered|strong=\"G2572\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1510\"\\+w* revealed, \\+w or|strong=\"G2532\"\\+w* \\+w hidden|strong=\"G2927\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w known|strong=\"G1097\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w What|strong=\"G3739\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w darkness|strong=\"G4653\"\\+w*, \\+w speak|strong=\"G3004\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* hear whispered \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w ear|strong=\"G3775\"\\+w*, \\+w proclaim|strong=\"G2784\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w housetops|strong=\"G1430\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "Don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w afraid|strong=\"G5399\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* kill \\+w the|strong=\"G1722\"\\+w* \\+w body|strong=\"G4983\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w to|strong=\"G2532\"\\+w* kill \\+w the|strong=\"G1722\"\\+w* \\+w soul|strong=\"G5590\"\\+w*. \\+w Rather|strong=\"G3123\"\\+w*, \\+w fear|strong=\"G5399\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w to|strong=\"G2532\"\\+w* destroy \\+w both|strong=\"G2532\"\\+w* \\+w soul|strong=\"G5590\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w in|strong=\"G1722\"\\+w* Gehenna.*+ 10:28 or, Hell.*" + }, + { + "verseNum": 29, + "text": "“Aren’\\+w t|strong=\"G3588\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w sparrows|strong=\"G4765\"\\+w* \\+w sold|strong=\"G4453\"\\+w* \\+w for|strong=\"G1909\"\\+w* \\+w an|strong=\"G2532\"\\+w* assarion coin?*+ 10:29 An assarion is a small coin worth one tenth of a drachma or a sixteenth of a denarius. An assarion is approximately the wages of one half hour of agricultural labor.* \\+w Not|strong=\"G3756\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w falls|strong=\"G4098\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w ground|strong=\"G1093\"\\+w* apart \\+w from|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s \\+w will|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w very|strong=\"G2532\"\\+w* \\+w hairs|strong=\"G2359\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w head|strong=\"G2776\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w all|strong=\"G3956\"\\+w* numbered. *" + }, + { + "verseNum": 31, + "text": "\\+w Therefore|strong=\"G3767\"\\+w* don’t \\+w be|strong=\"G3361\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G4183\"\\+w* \\+w of|strong=\"G5399\"\\+w* \\+w more|strong=\"G4183\"\\+w* value \\+w than|strong=\"G4183\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w sparrows|strong=\"G4765\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w Everyone|strong=\"G3956\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w confesses|strong=\"G3670\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w men|strong=\"G3956\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w also|strong=\"G2504\"\\+w* \\+w confess|strong=\"G3670\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3748\"\\+w* denies \\+w me|strong=\"G1473\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w men|strong=\"G3588\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w also|strong=\"G2504\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*.*" + }, + { + "verseNum": 34, + "text": "“Don’\\+w t|strong=\"G3588\"\\+w* \\+w think|strong=\"G3543\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G1909\"\\+w* send \\+w peace|strong=\"G1515\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w*. \\+w I|strong=\"G3754\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G1909\"\\+w* send \\+w peace|strong=\"G1515\"\\+w*, \\+w but|strong=\"G3361\"\\+w* \\+w a|strong=\"G1909\"\\+w* \\+w sword|strong=\"G3162\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w set|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* man \\+w at|strong=\"G2596\"\\+w* odds \\+w against|strong=\"G2596\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w daughter|strong=\"G2364\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w her|strong=\"G2596\"\\+w* \\+w mother|strong=\"G3384\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w daughter-in-law|strong=\"G3565\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w her|strong=\"G2596\"\\+w* \\+w mother-in-law|strong=\"G3994\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w A|strong=\"G2532\"\\+w* man’s \\+w foes|strong=\"G2190\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w his|strong=\"G2532\"\\+w* own \\+w household|strong=\"G3615\"\\+w*.*+ 10:36 Micah 7:6*" + }, + { + "verseNum": 37, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w loves|strong=\"G5368\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w mother|strong=\"G3384\"\\+w* \\+w more|strong=\"G5228\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* worthy \\+w of|strong=\"G5207\"\\+w* \\+w me|strong=\"G1473\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w loves|strong=\"G5368\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w daughter|strong=\"G2364\"\\+w* \\+w more|strong=\"G5228\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w me|strong=\"G1473\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* worthy \\+w of|strong=\"G5207\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 38, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w take|strong=\"G2983\"\\+w* \\+w his|strong=\"G2983\"\\+w* \\+w cross|strong=\"G4716\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w follow|strong=\"G3694\"\\+w* \\+w after|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* worthy \\+w of|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 39, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* seeks \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w will|strong=\"G2532\"\\+w* lose \\+w it|strong=\"G2532\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* loses \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w for|strong=\"G1752\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w sake|strong=\"G1752\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 40, + "text": "“\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 41, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w receives|strong=\"G2983\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w prophet|strong=\"G4396\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w prophet|strong=\"G4396\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w prophet|strong=\"G4396\"\\+w*’s \\+w reward|strong=\"G3408\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w receives|strong=\"G2983\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* \\+w man|strong=\"G1342\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* \\+w man|strong=\"G1342\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* \\+w man|strong=\"G1342\"\\+w*’s \\+w reward|strong=\"G3408\"\\+w*. *" + }, + { + "verseNum": 42, + "text": "\\+w Whoever|strong=\"G3739\"\\+w* \\+w gives|strong=\"G4222\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w ones|strong=\"G3398\"\\+w* \\+w just|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w cold|strong=\"G5593\"\\+w* \\+w water|strong=\"G4222\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w drink|strong=\"G4222\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w disciple|strong=\"G3101\"\\+w*, most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G3739\"\\+w* lose \\+w his|strong=\"G1519\"\\+w* \\+w reward|strong=\"G3408\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G3753\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* finished|strong=\"G5055\"* directing his|strong=\"G1722\"* twelve|strong=\"G1427\"* disciples|strong=\"G3101\"*, he|strong=\"G2532\"* departed|strong=\"G3327\"* from|strong=\"G2532\"* there|strong=\"G2532\"* to|strong=\"G2532\"* teach|strong=\"G1321\"* and|strong=\"G2532\"* preach|strong=\"G2784\"* in|strong=\"G1722\"* their|strong=\"G2532\"* cities|strong=\"G4172\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* John|strong=\"G2491\"* heard in|strong=\"G1722\"* the|strong=\"G1722\"* prison|strong=\"G1201\"* the|strong=\"G1722\"* works|strong=\"G2041\"* of|strong=\"G1223\"* Christ|strong=\"G5547\"*, he|strong=\"G1161\"* sent|strong=\"G3992\"* two of|strong=\"G1223\"* his|strong=\"G1223\"* disciples|strong=\"G3101\"*" + }, + { + "verseNum": 3, + "text": "and|strong=\"G2064\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Are|strong=\"G1510\"* you|strong=\"G4771\"* he|strong=\"G3588\"* who|strong=\"G3588\"* comes|strong=\"G2064\"*, or|strong=\"G2228\"* should|strong=\"G3588\"* we|strong=\"G1510\"* look|strong=\"G4328\"* for|strong=\"G4328\"* another|strong=\"G2087\"*?”" + }, + { + "verseNum": 4, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Go|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w John|strong=\"G2491\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* hear \\+w and|strong=\"G2532\"\\+w* see: *" + }, + { + "verseNum": 5, + "text": "\\+w the|strong=\"G2532\"\\+w* \\+w blind|strong=\"G5185\"\\+w* receive \\+w their|strong=\"G2532\"\\+w* sight, \\+w the|strong=\"G2532\"\\+w* \\+w lame|strong=\"G5560\"\\+w* \\+w walk|strong=\"G4043\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w lepers|strong=\"G3015\"\\+w* \\+w are|strong=\"G2532\"\\+w* \\+w cleansed|strong=\"G2511\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w deaf|strong=\"G2974\"\\+w* hear,*+ 11:5 Isaiah 35:5* \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w are|strong=\"G2532\"\\+w* \\+w raised|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w poor|strong=\"G4434\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w good|strong=\"G2097\"\\+w* \\+w news|strong=\"G2097\"\\+w* \\+w preached|strong=\"G2097\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G2532\"\\+w*.*+ 11:5 Isaiah 61:1-4*" + }, + { + "verseNum": 6, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* finds \\+w no|strong=\"G3361\"\\+w* occasion \\+w for|strong=\"G1722\"\\+w* \\+w stumbling|strong=\"G4624\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 7, + "text": "As|strong=\"G1519\"* these|strong=\"G3778\"* went|strong=\"G1831\"* their|strong=\"G4012\"* way|strong=\"G4198\"*, Jesus|strong=\"G2424\"* began|strong=\"G1161\"* to|strong=\"G1519\"* say|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G1519\"* multitudes|strong=\"G3793\"* concerning|strong=\"G4012\"* John|strong=\"G2491\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w did|strong=\"G5101\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w wilderness|strong=\"G2048\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w see|strong=\"G2300\"\\+w*? \\+w A|strong=\"G1519\"\\+w* \\+w reed|strong=\"G2563\"\\+w* \\+w shaken|strong=\"G4531\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w the|strong=\"G1519\"\\+w* wind? *" + }, + { + "verseNum": 8, + "text": "\\+w But|strong=\"G3588\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w did|strong=\"G5101\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w to|strong=\"G1722\"\\+w* \\+w see|strong=\"G3708\"\\+w*? \\+w A|strong=\"G1722\"\\+w* \\+w man|strong=\"G5101\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w soft|strong=\"G3120\"\\+w* clothing? \\+w Behold|strong=\"G2400\"\\+w*, \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w wear|strong=\"G5409\"\\+w* \\+w soft|strong=\"G3120\"\\+w* clothing \\+w are|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w kings|strong=\"G3588\"\\+w*’ \\+w houses|strong=\"G3624\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w why|strong=\"G5101\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w*? \\+w To|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w prophet|strong=\"G4396\"\\+w*? \\+w Yes|strong=\"G3483\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* much \\+w more|strong=\"G2532\"\\+w* \\+w than|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w prophet|strong=\"G4396\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w For|strong=\"G4012\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G3739\"\\+w*, \\+w of|strong=\"G4012\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w it|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* send \\+w my|strong=\"G3708\"\\+w* messenger \\+w before|strong=\"G4253\"\\+w* \\+w your|strong=\"G3708\"\\+w* \\+w face|strong=\"G4383\"\\+w*, \\+w who|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w prepare|strong=\"G2680\"\\+w* \\+w your|strong=\"G3708\"\\+w* \\+w way|strong=\"G3598\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w you|strong=\"G4771\"\\+w*.’*+ 11:10 Malachi 3:1 *" + }, + { + "verseNum": 11, + "text": "Most \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w among|strong=\"G1722\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w born|strong=\"G1084\"\\+w* \\+w of|strong=\"G1722\"\\+w* \\+w women|strong=\"G1135\"\\+w* \\+w there|strong=\"G1161\"\\+w* \\+w has|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w arisen|strong=\"G1453\"\\+w* anyone \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w John|strong=\"G2491\"\\+w* \\+w the|strong=\"G1722\"\\+w* Baptizer; \\+w yet|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w least|strong=\"G3398\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G1722\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w he|strong=\"G1161\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w From|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w John|strong=\"G2491\"\\+w* \\+w the|strong=\"G2532\"\\+w* Baptizer \\+w until|strong=\"G2193\"\\+w* \\+w now|strong=\"G1161\"\\+w*, \\+w the|strong=\"G2532\"\\+w* Kingdom \\+w of|strong=\"G2250\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* suffers violence, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* violent \\+w take|strong=\"G1161\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w by|strong=\"G2532\"\\+w* force.*+ 11:12 or, plunder it. *" + }, + { + "verseNum": 13, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w law|strong=\"G3551\"\\+w* \\+w prophesied|strong=\"G4395\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w John|strong=\"G2491\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w willing|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w this|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w Elijah|strong=\"G2243\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w ears|strong=\"G3775\"\\+w* \\+w to|strong=\"G2192\"\\+w* hear, \\+w let|strong=\"G2192\"\\+w* \\+w him|strong=\"G3588\"\\+w* hear.*" + }, + { + "verseNum": 16, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w to|strong=\"G1722\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w shall|strong=\"G3739\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w compare|strong=\"G3666\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w*? \\+w It|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w children|strong=\"G3813\"\\+w* \\+w sitting|strong=\"G2521\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* marketplaces, \\+w who|strong=\"G3739\"\\+w* \\+w call|strong=\"G4377\"\\+w* \\+w to|strong=\"G1722\"\\+w* \\+w their|strong=\"G1722\"\\+w* \\+w companions|strong=\"G3588\"\\+w* *" + }, + { + "verseNum": 17, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w We|strong=\"G2532\"\\+w* played \\+w the|strong=\"G2532\"\\+w* flute \\+w for|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* didn’t \\+w dance|strong=\"G3738\"\\+w*. \\+w We|strong=\"G2532\"\\+w* mourned \\+w for|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* didn’t \\+w lament|strong=\"G2875\"\\+w*.’ *" + }, + { + "verseNum": 18, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w John|strong=\"G2491\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w neither|strong=\"G3383\"\\+w* \\+w eating|strong=\"G2068\"\\+w* \\+w nor|strong=\"G3383\"\\+w* \\+w drinking|strong=\"G4095\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w He|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w demon|strong=\"G1140\"\\+w*.’ *" + }, + { + "verseNum": 19, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w eating|strong=\"G2068\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drinking|strong=\"G4095\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Behold|strong=\"G2400\"\\+w*, \\+w a|strong=\"G2532\"\\+w* \\+w gluttonous|strong=\"G5314\"\\+w* \\+w man|strong=\"G5207\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w drunkard|strong=\"G3630\"\\+w*, \\+w a|strong=\"G2532\"\\+w* \\+w friend|strong=\"G5384\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w tax|strong=\"G5057\"\\+w* \\+w collectors|strong=\"G5057\"\\+w* \\+w and|strong=\"G2532\"\\+w* sinners!’ \\+w But|strong=\"G2532\"\\+w* \\+w wisdom|strong=\"G4678\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w justified|strong=\"G1344\"\\+w* \\+w by|strong=\"G1344\"\\+w* \\+w her|strong=\"G3708\"\\+w* \\+w children|strong=\"G5207\"\\+w*.”*+ 11:19 NU reads “actions” instead of “children”*" + }, + { + "verseNum": 20, + "text": "Then|strong=\"G5119\"* he|strong=\"G3739\"* began|strong=\"G1096\"* to|strong=\"G1722\"* denounce|strong=\"G3679\"* the|strong=\"G1722\"* cities|strong=\"G4172\"* in|strong=\"G1722\"* which|strong=\"G3739\"* most|strong=\"G4183\"* of|strong=\"G1411\"* his|strong=\"G1722\"* mighty|strong=\"G1411\"* works|strong=\"G1411\"* had|strong=\"G3739\"* been|strong=\"G1096\"* done|strong=\"G1096\"*, because|strong=\"G3754\"* they|strong=\"G3588\"* didn’t|strong=\"G3588\"* repent|strong=\"G3340\"*." + }, + { + "verseNum": 21, + "text": "“\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w Chorazin|strong=\"G5523\"\\+w*! \\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, Bethsaida! \\+w For|strong=\"G3754\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w mighty|strong=\"G1411\"\\+w* \\+w works|strong=\"G1411\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w been|strong=\"G1096\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Tyre|strong=\"G5184\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Sidon|strong=\"G4605\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w would|strong=\"G1096\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w repented|strong=\"G3340\"\\+w* \\+w long|strong=\"G3819\"\\+w* \\+w ago|strong=\"G3819\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w sackcloth|strong=\"G4526\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w ashes|strong=\"G4700\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w more|strong=\"G2532\"\\+w* tolerable \\+w for|strong=\"G1722\"\\+w* \\+w Tyre|strong=\"G5184\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Sidon|strong=\"G4605\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w for|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w You|strong=\"G4771\"\\+w*, \\+w Capernaum|strong=\"G2584\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w exalted|strong=\"G5312\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w go|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w to|strong=\"G2532\"\\+w* Hades. *+ 11:23 or, Hell* \\+w For|strong=\"G3754\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w mighty|strong=\"G1411\"\\+w* \\+w works|strong=\"G1411\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w been|strong=\"G1096\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Sodom|strong=\"G4670\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w would|strong=\"G1096\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w remained|strong=\"G3306\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w today|strong=\"G4594\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w But|strong=\"G4133\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* more tolerable \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w land|strong=\"G1093\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w Sodom|strong=\"G4670\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*, \\+w than|strong=\"G2228\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w*.”*" + }, + { + "verseNum": 25, + "text": "At|strong=\"G1722\"* that|strong=\"G3754\"* time|strong=\"G2540\"*, Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “\\+w I|strong=\"G2532\"\\+w* \\+w thank|strong=\"G1843\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w Father|strong=\"G3962\"\\+w*, \\+w Lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w hid|strong=\"G2928\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w wise|strong=\"G4680\"\\+w* \\+w and|strong=\"G2532\"\\+w* understanding, \\+w and|strong=\"G2532\"\\+w* revealed \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w infants|strong=\"G3516\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w Yes|strong=\"G3483\"\\+w*, \\+w Father|strong=\"G3962\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w was|strong=\"G1096\"\\+w* \\+w well-pleasing|strong=\"G2107\"\\+w* \\+w in|strong=\"G1096\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w sight|strong=\"G1715\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w All|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. \\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G5100\"\\+w* \\+w knows|strong=\"G1921\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*; \\+w neither|strong=\"G3761\"\\+w* \\+w does|strong=\"G3761\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w know|strong=\"G1921\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w desires|strong=\"G1014\"\\+w* \\+w to|strong=\"G2532\"\\+w* reveal \\+w him|strong=\"G3588\"\\+w*.*" + }, + { + "verseNum": 28, + "text": "“\\+w Come|strong=\"G1205\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w all|strong=\"G3956\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w labor|strong=\"G2872\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w are|strong=\"G3588\"\\+w* heavily \\+w burdened|strong=\"G5412\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w give|strong=\"G1473\"\\+w* \\+w you|strong=\"G5210\"\\+w* rest. *" + }, + { + "verseNum": 29, + "text": "\\+w Take|strong=\"G2532\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w yoke|strong=\"G2218\"\\+w* \\+w upon|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w learn|strong=\"G3129\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w gentle|strong=\"G4239\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w humble|strong=\"G5011\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w heart|strong=\"G2588\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w rest|strong=\"G1510\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w souls|strong=\"G5590\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w yoke|strong=\"G2218\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w easy|strong=\"G5543\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w burden|strong=\"G5413\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w light|strong=\"G1645\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"G1722\"* that|strong=\"G3588\"* time|strong=\"G2540\"*, Jesus|strong=\"G2424\"* went|strong=\"G4198\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"* through|strong=\"G1223\"* the|strong=\"G1722\"* grain|strong=\"G4719\"* fields|strong=\"G4702\"*. His|strong=\"G1223\"* disciples|strong=\"G3101\"* were|strong=\"G3588\"* hungry|strong=\"G3983\"* and|strong=\"G2532\"* began|strong=\"G1161\"* to|strong=\"G2532\"* pluck|strong=\"G5089\"* heads|strong=\"G4719\"* of|strong=\"G1223\"* grain|strong=\"G4719\"* and|strong=\"G2532\"* to|strong=\"G2532\"* eat|strong=\"G2068\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"G1161\"* the|strong=\"G1722\"* Pharisees|strong=\"G5330\"*, when|strong=\"G1161\"* they|strong=\"G1161\"* saw|strong=\"G3708\"* it|strong=\"G1161\"*, said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Behold|strong=\"G2400\"*, your|strong=\"G3708\"* disciples|strong=\"G3101\"* do|strong=\"G4160\"* what|strong=\"G3739\"* is|strong=\"G3588\"* not|strong=\"G3756\"* lawful|strong=\"G1832\"* to|strong=\"G3004\"* do|strong=\"G4160\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"*.”" + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Haven’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* read \\+w what|strong=\"G5101\"\\+w* \\+w David|strong=\"G1138\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w when|strong=\"G3753\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w hungry|strong=\"G3983\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w him|strong=\"G3588\"\\+w*: *" + }, + { + "verseNum": 4, + "text": "\\+w how|strong=\"G4459\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w entered|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s \\+w house|strong=\"G3624\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w ate|strong=\"G2068\"\\+w* \\+w the|strong=\"G2532\"\\+w* show bread, \\+w which|strong=\"G3739\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w lawful|strong=\"G1832\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w eat|strong=\"G2068\"\\+w*, \\+w nor|strong=\"G3761\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w only|strong=\"G3441\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w priests|strong=\"G2409\"\\+w*?*+ 12:4 1 Samuel 21:3-6*" + }, + { + "verseNum": 5, + "text": "\\+w Or|strong=\"G2228\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w not|strong=\"G3756\"\\+w* read \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w law|strong=\"G3551\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w day|strong=\"G4521\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w priests|strong=\"G2409\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w temple|strong=\"G2413\"\\+w* \\+w profane|strong=\"G2228\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* guiltless? *" + }, + { + "verseNum": 6, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w temple|strong=\"G2413\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w here|strong=\"G5602\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w means|strong=\"G1510\"\\+w*, ‘\\+w I|strong=\"G2532\"\\+w* \\+w desire|strong=\"G2309\"\\+w* \\+w mercy|strong=\"G1656\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w sacrifice|strong=\"G2378\"\\+w*,’*+ 12:7 Hosea 6:6* \\+w you|strong=\"G1487\"\\+w* wouldn’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2309\"\\+w* \\+w condemned|strong=\"G2613\"\\+w* \\+w the|strong=\"G2532\"\\+w* guiltless. *" + }, + { + "verseNum": 8, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* departed|strong=\"G3327\"* from|strong=\"G2064\"* there|strong=\"G2532\"* and|strong=\"G2532\"* went|strong=\"G2064\"* into|strong=\"G1519\"* their|strong=\"G2532\"* synagogue|strong=\"G4864\"*." + }, + { + "verseNum": 10, + "text": "And|strong=\"G2532\"* behold|strong=\"G2400\"*, there|strong=\"G2532\"* was|strong=\"G3588\"* a|strong=\"G2192\"* man with|strong=\"G2532\"* a|strong=\"G2192\"* withered|strong=\"G3584\"* hand|strong=\"G5495\"*. They|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “Is|strong=\"G3588\"* it|strong=\"G2532\"* lawful|strong=\"G1832\"* to|strong=\"G2443\"* heal|strong=\"G2323\"* on|strong=\"G5495\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"*?” so|strong=\"G2443\"* that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* accuse|strong=\"G2723\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w man|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w among|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w falls|strong=\"G1510\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w pit|strong=\"G2532\"\\+w* \\+w on|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w day|strong=\"G4521\"\\+w*, won’\\+w t|strong=\"G3588\"\\+w* \\+w he|strong=\"G2532\"\\+w* grab \\+w on|strong=\"G1519\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w lift|strong=\"G1453\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w out|strong=\"G1537\"\\+w*? *" + }, + { + "verseNum": 12, + "text": "\\+w Of|strong=\"G3588\"\\+w* \\+w how|strong=\"G4214\"\\+w* \\+w much|strong=\"G4214\"\\+w* \\+w more|strong=\"G1308\"\\+w* value \\+w then|strong=\"G3767\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w a|strong=\"G4160\"\\+w* \\+w man|strong=\"G4160\"\\+w* \\+w than|strong=\"G1308\"\\+w* \\+w a|strong=\"G4160\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*! \\+w Therefore|strong=\"G3767\"\\+w* \\+w it|strong=\"G4160\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w lawful|strong=\"G1832\"\\+w* \\+w to|strong=\"G1832\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w good|strong=\"G2573\"\\+w* \\+w on|strong=\"G4160\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w day|strong=\"G4521\"\\+w*.”*" + }, + { + "verseNum": 13, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* told|strong=\"G3004\"* the|strong=\"G2532\"* man, “\\+w Stretch|strong=\"G1614\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hand|strong=\"G5495\"\\+w*.”* He|strong=\"G2532\"* stretched|strong=\"G1614\"* it|strong=\"G2532\"* out|strong=\"G2532\"*; and|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G3588\"* restored|strong=\"G5199\"* whole|strong=\"G5199\"*, just|strong=\"G5613\"* like|strong=\"G5613\"* the|strong=\"G2532\"* other|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* Pharisees|strong=\"G5330\"* went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G1161\"* conspired|strong=\"G4824\"* against|strong=\"G2596\"* him|strong=\"G3588\"*, how|strong=\"G3704\"* they|strong=\"G1161\"* might destroy him|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "Jesus|strong=\"G2424\"*, perceiving|strong=\"G1097\"* that|strong=\"G3588\"*, withdrew|strong=\"G2424\"* from|strong=\"G2532\"* there|strong=\"G2532\"*. Great|strong=\"G4183\"* multitudes|strong=\"G4183\"* followed him|strong=\"G3588\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* healed|strong=\"G2323\"* them|strong=\"G3588\"* all|strong=\"G3956\"*," + }, + { + "verseNum": 16, + "text": "and|strong=\"G2532\"* commanded|strong=\"G2008\"* them|strong=\"G4160\"* that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G2532\"* not|strong=\"G3361\"* make|strong=\"G4160\"* him|strong=\"G4160\"* known|strong=\"G5318\"*," + }, + { + "verseNum": 17, + "text": "that|strong=\"G2443\"* it|strong=\"G1223\"* might be|strong=\"G2443\"* fulfilled|strong=\"G4137\"* which|strong=\"G3588\"* was|strong=\"G3588\"* spoken|strong=\"G3004\"* through|strong=\"G1223\"* Isaiah|strong=\"G2268\"* the|strong=\"G1223\"* prophet|strong=\"G4396\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 18, + "text": "“Behold|strong=\"G2400\"*, my|strong=\"G3708\"* servant|strong=\"G3816\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* have|strong=\"G2532\"* chosen|strong=\"G2106\"*," + }, + { + "verseNum": 19, + "text": "He|strong=\"G3588\"* will|strong=\"G5100\"* not|strong=\"G3756\"* strive|strong=\"G2051\"*, nor|strong=\"G3761\"* shout|strong=\"G2905\"*," + }, + { + "verseNum": 20, + "text": "He|strong=\"G2532\"* won’t|strong=\"G3588\"* break|strong=\"G2608\"* a|strong=\"G2532\"* bruised|strong=\"G4937\"* reed|strong=\"G2563\"*." + }, + { + "verseNum": 21, + "text": "In|strong=\"G2532\"* his|strong=\"G2532\"* name|strong=\"G3686\"*, the|strong=\"G2532\"* nations|strong=\"G1484\"* will|strong=\"G2532\"* hope|strong=\"G1679\"*.”+ 12:21 Isaiah 42:1-4*" + }, + { + "verseNum": 22, + "text": "Then|strong=\"G2532\"* one|strong=\"G3588\"* possessed by|strong=\"G2532\"* a|strong=\"G2532\"* demon, blind|strong=\"G5185\"* and|strong=\"G2532\"* mute|strong=\"G2974\"*, was|strong=\"G3588\"* brought|strong=\"G4374\"* to|strong=\"G2532\"* him|strong=\"G3588\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* healed|strong=\"G2323\"* him|strong=\"G3588\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* the|strong=\"G2532\"* blind|strong=\"G5185\"* and|strong=\"G2532\"* mute|strong=\"G2974\"* man|strong=\"G5185\"* both|strong=\"G2532\"* spoke|strong=\"G2980\"* and|strong=\"G2532\"* saw." + }, + { + "verseNum": 23, + "text": "All|strong=\"G3956\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* were|strong=\"G1510\"* amazed|strong=\"G1839\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Can|strong=\"G3004\"* this|strong=\"G3778\"* be|strong=\"G1510\"* the|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*?”" + }, + { + "verseNum": 24, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G1722\"* Pharisees|strong=\"G5330\"* heard it|strong=\"G1161\"*, they|strong=\"G1161\"* said|strong=\"G3004\"*, “This|strong=\"G3778\"* man|strong=\"G3778\"* does|strong=\"G3004\"* not|strong=\"G3756\"* cast|strong=\"G1544\"* out|strong=\"G1544\"* demons|strong=\"G1140\"* except|strong=\"G1487\"* by|strong=\"G1722\"* Beelzebul, the|strong=\"G1722\"* prince of|strong=\"G1722\"* the|strong=\"G1722\"* demons|strong=\"G1140\"*.”" + }, + { + "verseNum": 25, + "text": "Knowing|strong=\"G1492\"* their|strong=\"G1438\"* thoughts|strong=\"G1761\"*, Jesus|strong=\"G3004\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Every|strong=\"G3956\"\\+w* kingdom \\+w divided|strong=\"G3307\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w itself|strong=\"G1438\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w brought|strong=\"G1161\"\\+w* \\+w to|strong=\"G2532\"\\+w* desolation, \\+w and|strong=\"G2532\"\\+w* \\+w every|strong=\"G3956\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w divided|strong=\"G3307\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w itself|strong=\"G1438\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w stand|strong=\"G2476\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w Satan|strong=\"G4567\"\\+w* \\+w casts|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w Satan|strong=\"G4567\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w divided|strong=\"G3307\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w himself|strong=\"G1438\"\\+w*. \\+w How|strong=\"G4459\"\\+w* \\+w then|strong=\"G3767\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w his|strong=\"G1438\"\\+w* kingdom \\+w stand|strong=\"G2476\"\\+w*? *" + }, + { + "verseNum": 27, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w by|strong=\"G1223\"\\+w* Beelzebul \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w demons|strong=\"G1140\"\\+w*, \\+w by|strong=\"G1223\"\\+w* \\+w whom|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w out|strong=\"G1544\"\\+w*? \\+w Therefore|strong=\"G1223\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w judges|strong=\"G2923\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w of|strong=\"G4151\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w demons|strong=\"G1140\"\\+w*, \\+w then|strong=\"G1161\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w has|strong=\"G2316\"\\+w* \\+w come|strong=\"G5348\"\\+w* \\+w upon|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w Or|strong=\"G2228\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w one|strong=\"G5100\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w strong|strong=\"G2478\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w plunder|strong=\"G1283\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w goods|strong=\"G4632\"\\+w*, \\+w unless|strong=\"G1437\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w bind|strong=\"G1210\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w strong|strong=\"G2478\"\\+w* \\+w man|strong=\"G5100\"\\+w*? \\+w Then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w plunder|strong=\"G1283\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w house|strong=\"G3614\"\\+w*.*" + }, + { + "verseNum": 30, + "text": "“\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w gather|strong=\"G4863\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w scatters|strong=\"G4650\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w Therefore|strong=\"G1223\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w every|strong=\"G3956\"\\+w* sin \\+w and|strong=\"G2532\"\\+w* blasphemy \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* forgiven \\+w men|strong=\"G3956\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* blasphemy \\+w against|strong=\"G3756\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G2532\"\\+w* forgiven \\+w men|strong=\"G3956\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w Whoever|strong=\"G3739\"\\+w* \\+w speaks|strong=\"G3004\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w be|strong=\"G2532\"\\+w* forgiven \\+w him|strong=\"G3588\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w speaks|strong=\"G3004\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G2532\"\\+w* forgiven \\+w him|strong=\"G3588\"\\+w*, \\+w either|strong=\"G3777\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* age, \\+w or|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w come|strong=\"G3195\"\\+w*.*" + }, + { + "verseNum": 33, + "text": "“\\+w Either|strong=\"G2228\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w its|strong=\"G1537\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w good|strong=\"G2570\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w corrupt|strong=\"G4550\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w its|strong=\"G1537\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w corrupt|strong=\"G4550\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w by|strong=\"G1537\"\\+w* \\+w its|strong=\"G1537\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "\\+w You|strong=\"G1510\"\\+w* \\+w offspring|strong=\"G1081\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w vipers|strong=\"G2191\"\\+w*, \\+w how|strong=\"G4459\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w you|strong=\"G1510\"\\+w*, \\+w being|strong=\"G1510\"\\+w* \\+w evil|strong=\"G4190\"\\+w*, \\+w speak|strong=\"G2980\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w things|strong=\"G3588\"\\+w*? \\+w For|strong=\"G1063\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w abundance|strong=\"G4051\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, \\+w the|strong=\"G1537\"\\+w* \\+w mouth|strong=\"G4750\"\\+w* \\+w speaks|strong=\"G2980\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w man|strong=\"G4190\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w treasure|strong=\"G2344\"\\+w**+ 12:35 TR adds “of the heart”* \\+w brings|strong=\"G1544\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w things|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w man|strong=\"G4190\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w brings|strong=\"G1544\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w things|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w every|strong=\"G3956\"\\+w* idle \\+w word|strong=\"G3056\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w men|strong=\"G3956\"\\+w* \\+w speak|strong=\"G2980\"\\+w*, \\+w they|strong=\"G1161\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w give|strong=\"G3004\"\\+w* \\+w account|strong=\"G3056\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w by|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w justified|strong=\"G1344\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w by|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w condemned|strong=\"G2613\"\\+w*.”*" + }, + { + "verseNum": 38, + "text": "Then|strong=\"G2532\"* certain|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* and|strong=\"G2532\"* Pharisees|strong=\"G5330\"* answered|strong=\"G3004\"*, “Teacher|strong=\"G1320\"*, we|strong=\"G2532\"* want|strong=\"G2309\"* to|strong=\"G2532\"* see|strong=\"G3708\"* a|strong=\"G2532\"* sign|strong=\"G4592\"* from|strong=\"G2532\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 39, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w An|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w adulterous|strong=\"G3428\"\\+w* \\+w generation|strong=\"G1074\"\\+w* \\+w seeks|strong=\"G1934\"\\+w* \\+w after|strong=\"G1161\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w sign|strong=\"G4592\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w sign|strong=\"G4592\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sign|strong=\"G4592\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Jonah|strong=\"G2495\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophet|strong=\"G4396\"\\+w*. *" + }, + { + "verseNum": 40, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w as|strong=\"G5618\"\\+w* \\+w Jonah|strong=\"G2495\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w nights|strong=\"G3571\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w belly|strong=\"G2836\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* huge fish, \\+w so|strong=\"G3779\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G2588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w nights|strong=\"G3571\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w*. *" + }, + { + "verseNum": 41, + "text": "\\+w The|strong=\"G1722\"\\+w* \\+w men|strong=\"G3778\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Nineveh|strong=\"G3536\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w stand|strong=\"G3778\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w condemn|strong=\"G2632\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w repented|strong=\"G3340\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w preaching|strong=\"G2782\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Jonah|strong=\"G2495\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, someone \\+w greater|strong=\"G4183\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w Jonah|strong=\"G2495\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w here|strong=\"G5602\"\\+w*. *" + }, + { + "verseNum": 42, + "text": "\\+w The|strong=\"G1722\"\\+w* Queen \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w South|strong=\"G3558\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rise|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w condemn|strong=\"G2632\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w she|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w ends|strong=\"G4009\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w to|strong=\"G2532\"\\+w* hear \\+w the|strong=\"G1722\"\\+w* \\+w wisdom|strong=\"G4678\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Solomon|strong=\"G4672\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, someone \\+w greater|strong=\"G4183\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w Solomon|strong=\"G4672\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w here|strong=\"G5602\"\\+w*. *" + }, + { + "verseNum": 43, + "text": "“\\+w When|strong=\"G3752\"\\+w* \\+w an|strong=\"G2532\"\\+w* unclean \\+w spirit|strong=\"G4151\"\\+w* \\+w has|strong=\"G4151\"\\+w* \\+w gone|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G4151\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w man|strong=\"G3756\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w passes|strong=\"G1330\"\\+w* \\+w through|strong=\"G1223\"\\+w* waterless \\+w places|strong=\"G5117\"\\+w* \\+w seeking|strong=\"G2212\"\\+w* rest, \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 44, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w says|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w return|strong=\"G1994\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w from|strong=\"G2064\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G2064\"\\+w*;’ \\+w and|strong=\"G2532\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2064\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w back|strong=\"G1994\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w finds|strong=\"G2147\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w empty|strong=\"G4980\"\\+w*, \\+w swept|strong=\"G4563\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w put|strong=\"G2532\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w order|strong=\"G2885\"\\+w*. *" + }, + { + "verseNum": 45, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w goes|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w takes|strong=\"G3880\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w seven|strong=\"G2033\"\\+w* \\+w other|strong=\"G2087\"\\+w* \\+w spirits|strong=\"G4151\"\\+w* \\+w more|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w than|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w dwell|strong=\"G2730\"\\+w* \\+w there|strong=\"G1563\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w last|strong=\"G2078\"\\+w* state \\+w of|strong=\"G4151\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w man|strong=\"G3778\"\\+w* \\+w becomes|strong=\"G1096\"\\+w* \\+w worse|strong=\"G5501\"\\+w* \\+w than|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w*. \\+w Even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w generation|strong=\"G1074\"\\+w*.”*" + }, + { + "verseNum": 46, + "text": "While|strong=\"G2980\"* he|strong=\"G2532\"* was|strong=\"G3588\"* yet|strong=\"G2089\"* speaking|strong=\"G2980\"* to|strong=\"G2532\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"*, behold|strong=\"G2400\"*, his|strong=\"G3708\"* mother|strong=\"G3384\"* and|strong=\"G2532\"* his|strong=\"G3708\"* brothers stood|strong=\"G2476\"* outside|strong=\"G1854\"*, seeking|strong=\"G2212\"* to|strong=\"G2532\"* speak|strong=\"G2980\"* to|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 47, + "text": "One|strong=\"G5100\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Behold|strong=\"G2400\"*, your|strong=\"G2532\"* mother|strong=\"G3384\"* and|strong=\"G2532\"* your|strong=\"G2532\"* brothers stand|strong=\"G2476\"* outside|strong=\"G1854\"*, seeking|strong=\"G2212\"* to|strong=\"G2532\"* speak|strong=\"G2980\"* to|strong=\"G2532\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 48, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* answered|strong=\"G3004\"* him|strong=\"G3588\"* who|strong=\"G5101\"* spoke|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Who|strong=\"G5101\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w mother|strong=\"G3384\"\\+w*? \\+w Who|strong=\"G5101\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* brothers?”*" + }, + { + "verseNum": 49, + "text": "He|strong=\"G2532\"* stretched|strong=\"G1614\"* out|strong=\"G2532\"* his|strong=\"G1909\"* hand|strong=\"G5495\"* toward|strong=\"G1909\"* his|strong=\"G1909\"* disciples|strong=\"G3101\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Behold|strong=\"G2400\"\\+w*, \\+w my|strong=\"G3708\"\\+w* \\+w mother|strong=\"G3384\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G3708\"\\+w* brothers! *" + }, + { + "verseNum": 50, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3748\"\\+w* \\+w does|strong=\"G4160\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1722\"\\+w* brother, \\+w and|strong=\"G2532\"\\+w* sister, \\+w and|strong=\"G2532\"\\+w* \\+w mother|strong=\"G3384\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "On|strong=\"G1722\"* that|strong=\"G3588\"* day|strong=\"G2250\"* Jesus|strong=\"G2424\"* went|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G1722\"* house|strong=\"G3614\"* and|strong=\"G2250\"* sat|strong=\"G2521\"* by|strong=\"G1722\"* the|strong=\"G1722\"* seaside." + }, + { + "verseNum": 2, + "text": "Great|strong=\"G4183\"* multitudes|strong=\"G3793\"* gathered|strong=\"G4863\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* he|strong=\"G2532\"* entered|strong=\"G1684\"* into|strong=\"G1519\"* a|strong=\"G2532\"* boat|strong=\"G4143\"* and|strong=\"G2532\"* sat|strong=\"G2521\"*; and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* stood|strong=\"G2476\"* on|strong=\"G1909\"* the|strong=\"G2532\"* beach." + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* spoke|strong=\"G2980\"* to|strong=\"G2532\"* them|strong=\"G3588\"* many|strong=\"G4183\"* things|strong=\"G3588\"* in|strong=\"G1722\"* parables|strong=\"G3850\"*, saying|strong=\"G3004\"*, “\\+w Behold|strong=\"G2400\"\\+w*, \\+w a|strong=\"G2532\"\\+w* farmer \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w sow|strong=\"G4687\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w As|strong=\"G1722\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w sowed|strong=\"G4687\"\\+w*, \\+w some|strong=\"G3739\"\\+w* seeds \\+w fell|strong=\"G4098\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* roadside, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w birds|strong=\"G4071\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w devoured|strong=\"G2719\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w Others|strong=\"G3588\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w rocky|strong=\"G4075\"\\+w* \\+w ground|strong=\"G1093\"\\+w*, \\+w where|strong=\"G3699\"\\+w* \\+w they|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w much|strong=\"G4183\"\\+w* \\+w soil|strong=\"G1093\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w sprang|strong=\"G1816\"\\+w* \\+w up|strong=\"G3361\"\\+w*, \\+w because|strong=\"G1223\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* depth \\+w of|strong=\"G1223\"\\+w* \\+w earth|strong=\"G1093\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w When|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sun|strong=\"G2246\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w risen|strong=\"G2532\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w scorched|strong=\"G2739\"\\+w*. \\+w Because|strong=\"G1223\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w root|strong=\"G4491\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w withered|strong=\"G3583\"\\+w* \\+w away|strong=\"G3583\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w Others|strong=\"G3588\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w among|strong=\"G1909\"\\+w* thorns. \\+w The|strong=\"G2532\"\\+w* thorns grew \\+w up|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w choked|strong=\"G4155\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w Others|strong=\"G3588\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w soil|strong=\"G1093\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w yielded|strong=\"G1325\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*: \\+w some|strong=\"G3739\"\\+w* \\+w one|strong=\"G3739\"\\+w* \\+w hundred|strong=\"G1540\"\\+w* times \\+w as|strong=\"G1161\"\\+w* much, \\+w some|strong=\"G3739\"\\+w* \\+w sixty|strong=\"G1835\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w some|strong=\"G3739\"\\+w* \\+w thirty|strong=\"G5144\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w ears|strong=\"G3775\"\\+w* \\+w to|strong=\"G2192\"\\+w* hear, \\+w let|strong=\"G2192\"\\+w* \\+w him|strong=\"G3588\"\\+w* hear.”*" + }, + { + "verseNum": 10, + "text": "The|strong=\"G1722\"* disciples|strong=\"G3101\"* came|strong=\"G4334\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G1722\"* speak|strong=\"G2980\"* to|strong=\"G2532\"* them|strong=\"G3588\"* in|strong=\"G1722\"* parables|strong=\"G3850\"*?”" + }, + { + "verseNum": 11, + "text": "He|strong=\"G1161\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w To|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w mysteries|strong=\"G3466\"\\+w* \\+w of|strong=\"G3466\"\\+w* \\+w the|strong=\"G1161\"\\+w* Kingdom \\+w of|strong=\"G3466\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G1325\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w abundance|strong=\"G4052\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* doesn’t \\+w have|strong=\"G2192\"\\+w*, \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G1325\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* taken away \\+w even|strong=\"G2532\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w Therefore|strong=\"G1223\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w speak|strong=\"G2980\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G1722\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w parables|strong=\"G3850\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w seeing|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* don’t see, \\+w and|strong=\"G2532\"\\+w* hearing, \\+w they|strong=\"G2532\"\\+w* don’t hear, \\+w neither|strong=\"G3761\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w understand|strong=\"G4920\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w In|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophecy|strong=\"G4394\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Isaiah|strong=\"G2268\"\\+w* \\+w is|strong=\"G3588\"\\+w* fulfilled, \\+w which|strong=\"G3588\"\\+w* \\+w says|strong=\"G3004\"\\+w*, *" + }, + { + "verseNum": 15, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w people|strong=\"G2992\"\\+w*’s \\+w heart|strong=\"G2588\"\\+w* \\+w has|strong=\"G3778\"\\+w* grown callous,*" + }, + { + "verseNum": 16, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w eyes|strong=\"G3788\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* see; \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w ears|strong=\"G3775\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* hear. *" + }, + { + "verseNum": 17, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w most|strong=\"G4183\"\\+w* \\+w certainly|strong=\"G1063\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* \\+w men|strong=\"G1342\"\\+w* \\+w desired|strong=\"G1937\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G4183\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w see|strong=\"G3708\"\\+w*, \\+w and|strong=\"G2532\"\\+w* didn’t \\+w see|strong=\"G3708\"\\+w* \\+w them|strong=\"G3739\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* hear \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G4183\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* hear, \\+w and|strong=\"G2532\"\\+w* didn’t hear \\+w them|strong=\"G3739\"\\+w*.*" + }, + { + "verseNum": 18, + "text": "“Hear, \\+w then|strong=\"G3767\"\\+w*, \\+w the|strong=\"G3588\"\\+w* \\+w parable|strong=\"G3850\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w the|strong=\"G3588\"\\+w* farmer. *" + }, + { + "verseNum": 19, + "text": "\\+w When|strong=\"G2532\"\\+w* \\+w anyone|strong=\"G3956\"\\+w* hears \\+w the|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w understand|strong=\"G4920\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w one|strong=\"G3956\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* snatches away \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w heart|strong=\"G2588\"\\+w*. \\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* roadside. *" + }, + { + "verseNum": 20, + "text": "\\+w What|strong=\"G3588\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rocky|strong=\"G4075\"\\+w* places, \\+w this|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* hears \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w joy|strong=\"G5479\"\\+w* \\+w receives|strong=\"G2983\"\\+w* \\+w it|strong=\"G2532\"\\+w*; *" + }, + { + "verseNum": 21, + "text": "\\+w yet|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w root|strong=\"G4491\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w but|strong=\"G1161\"\\+w* endures \\+w for|strong=\"G1223\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w while|strong=\"G1722\"\\+w*. \\+w When|strong=\"G1161\"\\+w* oppression \\+w or|strong=\"G2228\"\\+w* \\+w persecution|strong=\"G1375\"\\+w* \\+w arises|strong=\"G1096\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w immediately|strong=\"G2112\"\\+w* \\+w he|strong=\"G1161\"\\+w* stumbles. *" + }, + { + "verseNum": 22, + "text": "\\+w What|strong=\"G3588\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w* \\+w among|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* thorns, \\+w this|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* hears \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w cares|strong=\"G3308\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w this|strong=\"G3778\"\\+w* age \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* deceitfulness \\+w of|strong=\"G3056\"\\+w* \\+w riches|strong=\"G4149\"\\+w* \\+w choke|strong=\"G4846\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w becomes|strong=\"G1096\"\\+w* unfruitful. *" + }, + { + "verseNum": 23, + "text": "\\+w What|strong=\"G3739\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w ground|strong=\"G1093\"\\+w*, \\+w this|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* hears \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w understands|strong=\"G4920\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w who|strong=\"G3739\"\\+w* most \\+w certainly|strong=\"G1909\"\\+w* \\+w bears|strong=\"G4160\"\\+w* \\+w fruit|strong=\"G2592\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w produces|strong=\"G4160\"\\+w*, \\+w some|strong=\"G3739\"\\+w* \\+w one|strong=\"G3739\"\\+w* \\+w hundred|strong=\"G1540\"\\+w* times \\+w as|strong=\"G1161\"\\+w* much, \\+w some|strong=\"G3739\"\\+w* \\+w sixty|strong=\"G1835\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w some|strong=\"G3739\"\\+w* \\+w thirty|strong=\"G5144\"\\+w*.”*" + }, + { + "verseNum": 24, + "text": "He|strong=\"G3588\"* set|strong=\"G3908\"* another|strong=\"G3588\"* parable|strong=\"G3850\"* before|strong=\"G3908\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w The|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G1722\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w like|strong=\"G3666\"\\+w* \\+w a|strong=\"G1722\"\\+w* man \\+w who|strong=\"G3588\"\\+w* \\+w sowed|strong=\"G4687\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w seed|strong=\"G4690\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* field, *" + }, + { + "verseNum": 25, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w while|strong=\"G1722\"\\+w* \\+w people|strong=\"G3588\"\\+w* \\+w slept|strong=\"G2518\"\\+w*, \\+w his|strong=\"G1722\"\\+w* \\+w enemy|strong=\"G2190\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w sowed|strong=\"G4687\"\\+w* darnel \\+w weeds|strong=\"G2215\"\\+w**+ 13:25 darnel is a weed grass (probably bearded darnel or lolium temulentum) that looks very much like wheat until it is mature, when the difference becomes very apparent.* \\+w also|strong=\"G2532\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w wheat|strong=\"G4621\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w went|strong=\"G2064\"\\+w* away. *" + }, + { + "verseNum": 26, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3753\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w blade|strong=\"G5528\"\\+w* sprang \\+w up|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w produced|strong=\"G4160\"\\+w* \\+w grain|strong=\"G2590\"\\+w*, \\+w then|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* darnel \\+w weeds|strong=\"G2215\"\\+w* \\+w appeared|strong=\"G5316\"\\+w* \\+w also|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w The|strong=\"G1722\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w of|strong=\"G2962\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w householder|strong=\"G3617\"\\+w* \\+w came|strong=\"G4334\"\\+w* \\+w and|strong=\"G1161\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Sir|strong=\"G2962\"\\+w*, didn’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w sow|strong=\"G4687\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w seed|strong=\"G4690\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G4674\"\\+w* field? \\+w Where|strong=\"G4159\"\\+w* \\+w did|strong=\"G3767\"\\+w* \\+w these|strong=\"G3588\"\\+w* darnel \\+w weeds|strong=\"G2215\"\\+w* \\+w come|strong=\"G4334\"\\+w* \\+w from|strong=\"G3588\"\\+w*?’*" + }, + { + "verseNum": 28, + "text": "“\\+w He|strong=\"G1161\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w them|strong=\"G3588\"\\+w*, ‘\\+w An|strong=\"G4160\"\\+w* \\+w enemy|strong=\"G2190\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w this|strong=\"G3778\"\\+w*.’*" + }, + { + "verseNum": 29, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w said|strong=\"G5346\"\\+w*, ‘\\+w No|strong=\"G3756\"\\+w*, \\+w lest|strong=\"G3379\"\\+w* \\+w perhaps|strong=\"G3379\"\\+w* \\+w while|strong=\"G1161\"\\+w* you \\+w gather|strong=\"G4816\"\\+w* \\+w up|strong=\"G4816\"\\+w* \\+w the|strong=\"G1161\"\\+w* darnel \\+w weeds|strong=\"G2215\"\\+w*, you root \\+w up|strong=\"G4816\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w wheat|strong=\"G4621\"\\+w* \\+w with|strong=\"G3756\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w Let|strong=\"G1161\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w grow|strong=\"G4885\"\\+w* \\+w together|strong=\"G4863\"\\+w* \\+w until|strong=\"G3360\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w harvest|strong=\"G2326\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w harvest|strong=\"G2326\"\\+w* \\+w time|strong=\"G2540\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w reapers|strong=\"G2327\"\\+w*, “\\+w First|strong=\"G4413\"\\+w*, \\+w gather|strong=\"G4863\"\\+w* \\+w up|strong=\"G1210\"\\+w* \\+w the|strong=\"G1722\"\\+w* darnel \\+w weeds|strong=\"G2215\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w bind|strong=\"G1210\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w bundles|strong=\"G1197\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w burn|strong=\"G2618\"\\+w* \\+w them|strong=\"G3588\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w gather|strong=\"G4863\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w wheat|strong=\"G4621\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w my|strong=\"G1722\"\\+w* barn.”’”*" + }, + { + "verseNum": 31, + "text": "He|strong=\"G3739\"* set|strong=\"G3908\"* another|strong=\"G3739\"* parable|strong=\"G3850\"* before|strong=\"G3908\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w The|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G1722\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w grain|strong=\"G2848\"\\+w* \\+w of|strong=\"G1722\"\\+w* \\+w mustard|strong=\"G4615\"\\+w* \\+w seed|strong=\"G2848\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w man|strong=\"G3739\"\\+w* \\+w took|strong=\"G2983\"\\+w*, \\+w and|strong=\"G3772\"\\+w* \\+w sowed|strong=\"G4687\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* field, *" + }, + { + "verseNum": 32, + "text": "\\+w which|strong=\"G3739\"\\+w* \\+w indeed|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w smaller|strong=\"G3398\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w seeds|strong=\"G4690\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w grown|strong=\"G3173\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w herbs|strong=\"G3001\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w becomes|strong=\"G1096\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w tree|strong=\"G1186\"\\+w*, \\+w so|strong=\"G2532\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w birds|strong=\"G4071\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w air|strong=\"G3772\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w lodge|strong=\"G2681\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w its|strong=\"G3956\"\\+w* \\+w branches|strong=\"G2798\"\\+w*.”*" + }, + { + "verseNum": 33, + "text": "He|strong=\"G3739\"* spoke|strong=\"G2980\"* another|strong=\"G3739\"* parable|strong=\"G3850\"* to|strong=\"G1519\"* them|strong=\"G3588\"*. “\\+w The|strong=\"G1519\"\\+w* Kingdom \\+w of|strong=\"G3588\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w yeast|strong=\"G2219\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w woman|strong=\"G1135\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w and|strong=\"G3772\"\\+w* \\+w hid|strong=\"G1470\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w measures|strong=\"G4568\"\\+w**+ 13:33 literally, three sata. Three sata is about 39 liters or a bit more than a bushel* \\+w of|strong=\"G3588\"\\+w* meal, \\+w until|strong=\"G2193\"\\+w* \\+w it|strong=\"G3739\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w all|strong=\"G3650\"\\+w* \\+w leavened|strong=\"G2220\"\\+w*.”*" + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G2424\"* spoke|strong=\"G2980\"* all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"* in|strong=\"G1722\"* parables|strong=\"G3850\"* to|strong=\"G2532\"* the|strong=\"G1722\"* multitudes|strong=\"G3793\"*; and|strong=\"G2532\"* without|strong=\"G5565\"* a|strong=\"G2532\"* parable|strong=\"G3850\"*, he|strong=\"G2532\"* didn’t|strong=\"G3588\"* speak|strong=\"G2980\"* to|strong=\"G2532\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 35, + "text": "that|strong=\"G3588\"* it|strong=\"G1223\"* might|strong=\"G1473\"* be|strong=\"G3588\"* fulfilled|strong=\"G4137\"* which|strong=\"G3588\"* was|strong=\"G3588\"* spoken|strong=\"G3004\"* through|strong=\"G1223\"* the|strong=\"G1722\"* prophet|strong=\"G4396\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 36, + "text": "Then|strong=\"G2532\"* Jesus|strong=\"G3004\"* sent|strong=\"G2532\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* away, and|strong=\"G2532\"* went|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* house|strong=\"G3614\"*. His|strong=\"G1519\"* disciples|strong=\"G3101\"* came|strong=\"G2064\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Explain|strong=\"G1285\"* to|strong=\"G1519\"* us|strong=\"G3004\"* the|strong=\"G2532\"* parable|strong=\"G3850\"* of|strong=\"G2532\"* the|strong=\"G2532\"* darnel weeds|strong=\"G2215\"* of|strong=\"G2532\"* the|strong=\"G2532\"* field.”" + }, + { + "verseNum": 37, + "text": "He|strong=\"G1161\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w He|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sows|strong=\"G4687\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w seed|strong=\"G4690\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w*, *" + }, + { + "verseNum": 38, + "text": "\\+w the|strong=\"G1161\"\\+w* field \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w the|strong=\"G1161\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w seeds|strong=\"G4690\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1161\"\\+w* Kingdom, \\+w and|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* darnel \\+w weeds|strong=\"G2215\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w one|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 39, + "text": "\\+w The|strong=\"G1161\"\\+w* \\+w enemy|strong=\"G2190\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sowed|strong=\"G4687\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w devil|strong=\"G1228\"\\+w*. \\+w The|strong=\"G1161\"\\+w* \\+w harvest|strong=\"G2326\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w end|strong=\"G4930\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w the|strong=\"G1161\"\\+w* age, \\+w and|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w reapers|strong=\"G2327\"\\+w* \\+w are|strong=\"G1510\"\\+w* angels. *" + }, + { + "verseNum": 40, + "text": "\\+w As|strong=\"G5618\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w the|strong=\"G1722\"\\+w* darnel \\+w weeds|strong=\"G2215\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w gathered|strong=\"G4816\"\\+w* \\+w up|strong=\"G2618\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w burned|strong=\"G2618\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w fire|strong=\"G4442\"\\+w*; \\+w so|strong=\"G3779\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w end|strong=\"G4930\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w this|strong=\"G3588\"\\+w* age. *" + }, + { + "verseNum": 41, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Man|strong=\"G3956\"\\+w* \\+w will|strong=\"G2532\"\\+w* send \\+w out|strong=\"G1537\"\\+w* \\+w his|strong=\"G3956\"\\+w* angels, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w gather|strong=\"G4816\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w his|strong=\"G3956\"\\+w* Kingdom \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w cause|strong=\"G4160\"\\+w* \\+w stumbling|strong=\"G4625\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* iniquity, *" + }, + { + "verseNum": 42, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w furnace|strong=\"G2575\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w fire|strong=\"G4442\"\\+w*. \\+w There|strong=\"G1563\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w weeping|strong=\"G2805\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gnashing|strong=\"G1030\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w teeth|strong=\"G3599\"\\+w*. *" + }, + { + "verseNum": 43, + "text": "\\+w Then|strong=\"G5119\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* \\+w will|strong=\"G3962\"\\+w* \\+w shine|strong=\"G1584\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sun|strong=\"G2246\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G3962\"\\+w* \\+w their|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. \\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w ears|strong=\"G3775\"\\+w* \\+w to|strong=\"G1722\"\\+w* hear, \\+w let|strong=\"G2192\"\\+w* \\+w him|strong=\"G3588\"\\+w* hear.*" + }, + { + "verseNum": 44, + "text": "“\\+w Again|strong=\"G2532\"\\+w*, \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G2532\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w hidden|strong=\"G2928\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* field, \\+w which|strong=\"G3739\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w man|strong=\"G3956\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w hid|strong=\"G2928\"\\+w*. \\+w In|strong=\"G1722\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w joy|strong=\"G5479\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w goes|strong=\"G5217\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w sells|strong=\"G4453\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w and|strong=\"G2532\"\\+w* buys \\+w that|strong=\"G3739\"\\+w* field.*" + }, + { + "verseNum": 45, + "text": "“\\+w Again|strong=\"G3825\"\\+w*, \\+w the|strong=\"G3588\"\\+w* Kingdom \\+w of|strong=\"G3588\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w a|strong=\"G1510\"\\+w* man \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w a|strong=\"G1510\"\\+w* \\+w merchant|strong=\"G1713\"\\+w* \\+w seeking|strong=\"G2212\"\\+w* \\+w fine|strong=\"G2570\"\\+w* \\+w pearls|strong=\"G3135\"\\+w*, *" + }, + { + "verseNum": 46, + "text": "\\+w who|strong=\"G3956\"\\+w* \\+w having|strong=\"G2192\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w pearl|strong=\"G3135\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w great|strong=\"G3956\"\\+w* price, \\+w he|strong=\"G2532\"\\+w* \\+w went|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w sold|strong=\"G4097\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3956\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w and|strong=\"G2532\"\\+w* bought \\+w it|strong=\"G2532\"\\+w*.*" + }, + { + "verseNum": 47, + "text": "“\\+w Again|strong=\"G3825\"\\+w*, \\+w the|strong=\"G2532\"\\+w* Kingdom \\+w of|strong=\"G1537\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w dragnet|strong=\"G4522\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sea|strong=\"G2281\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gathered|strong=\"G4863\"\\+w* \\+w some|strong=\"G3588\"\\+w* fish \\+w of|strong=\"G1537\"\\+w* \\+w every|strong=\"G3956\"\\+w* \\+w kind|strong=\"G3956\"\\+w*, *" + }, + { + "verseNum": 48, + "text": "\\+w which|strong=\"G3739\"\\+w*, \\+w when|strong=\"G3753\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w filled|strong=\"G4137\"\\+w*, fishermen \\+w drew|strong=\"G2532\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* beach. \\+w They|strong=\"G2532\"\\+w* \\+w sat|strong=\"G2523\"\\+w* \\+w down|strong=\"G2523\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gathered|strong=\"G4816\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w into|strong=\"G1519\"\\+w* containers, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w bad|strong=\"G4550\"\\+w* \\+w they|strong=\"G2532\"\\+w* threw \\+w away|strong=\"G1854\"\\+w*. *" + }, + { + "verseNum": 49, + "text": "\\+w So|strong=\"G3779\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w end|strong=\"G4930\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* world.*+ 13:49 or, end of the age.* \\+w The|strong=\"G1722\"\\+w* angels \\+w will|strong=\"G1510\"\\+w* \\+w come|strong=\"G1831\"\\+w* \\+w and|strong=\"G2532\"\\+w* separate \\+w the|strong=\"G1722\"\\+w* \\+w wicked|strong=\"G4190\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w righteous|strong=\"G1342\"\\+w*, *" + }, + { + "verseNum": 50, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w furnace|strong=\"G2575\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w fire|strong=\"G4442\"\\+w*. \\+w There|strong=\"G1563\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w weeping|strong=\"G2805\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gnashing|strong=\"G1030\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w teeth|strong=\"G3599\"\\+w*.”*" + }, + { + "verseNum": 51, + "text": "Jesus|strong=\"G3004\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3004\"*, “\\+w Have|strong=\"G3956\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w understood|strong=\"G4920\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w*?” *" + }, + { + "verseNum": 52, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Therefore|strong=\"G1223\"\\+w* \\+w every|strong=\"G3956\"\\+w* \\+w scribe|strong=\"G1122\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w made|strong=\"G1161\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w disciple|strong=\"G3100\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* Kingdom \\+w of|strong=\"G1537\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w man|strong=\"G3778\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w householder|strong=\"G3617\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w brings|strong=\"G1544\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w old|strong=\"G3820\"\\+w* \\+w things|strong=\"G3956\"\\+w*.”*" + }, + { + "verseNum": 53, + "text": "When|strong=\"G3753\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* finished|strong=\"G5055\"* these|strong=\"G3778\"* parables|strong=\"G3850\"*, he|strong=\"G2532\"* departed|strong=\"G3332\"* from|strong=\"G2532\"* there|strong=\"G2532\"*." + }, + { + "verseNum": 54, + "text": "Coming|strong=\"G2064\"* into|strong=\"G1519\"* his|strong=\"G1438\"* own|strong=\"G1438\"* country|strong=\"G3968\"*, he|strong=\"G2532\"* taught|strong=\"G1321\"* them|strong=\"G3588\"* in|strong=\"G1722\"* their|strong=\"G1438\"* synagogue|strong=\"G4864\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* they|strong=\"G2532\"* were|strong=\"G3588\"* astonished|strong=\"G1605\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “Where|strong=\"G4159\"* did|strong=\"G2532\"* this|strong=\"G3778\"* man|strong=\"G3778\"* get|strong=\"G2532\"* this|strong=\"G3778\"* wisdom|strong=\"G4678\"* and|strong=\"G2532\"* these|strong=\"G3778\"* mighty|strong=\"G1411\"* works|strong=\"G1411\"*?" + }, + { + "verseNum": 55, + "text": "Isn’t|strong=\"G3588\"* this|strong=\"G3778\"* the|strong=\"G2532\"* carpenter|strong=\"G5045\"*’s son|strong=\"G5207\"*? Isn’t|strong=\"G3588\"* his|strong=\"G2532\"* mother|strong=\"G3384\"* called|strong=\"G3004\"* Mary|strong=\"G3137\"*, and|strong=\"G2532\"* his|strong=\"G2532\"* brothers James|strong=\"G2385\"*, Joses, Simon|strong=\"G4613\"*, and|strong=\"G2532\"* Judas|strong=\"G2455\"*?+ 13:55 or, Judah*" + }, + { + "verseNum": 56, + "text": "Aren’t|strong=\"G3588\"* all|strong=\"G3956\"* of|strong=\"G2532\"* his|strong=\"G3956\"* sisters with|strong=\"G4314\"* us|strong=\"G2249\"*? Where|strong=\"G4159\"* then|strong=\"G3767\"* did|strong=\"G2532\"* this|strong=\"G3778\"* man|strong=\"G3778\"* get|strong=\"G2532\"* all|strong=\"G3956\"* of|strong=\"G2532\"* these|strong=\"G3778\"* things|strong=\"G3956\"*?”" + }, + { + "verseNum": 57, + "text": "They|strong=\"G2532\"* were|strong=\"G1510\"* offended|strong=\"G4624\"* by|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 58, + "text": "He|strong=\"G2532\"* didn’t|strong=\"G3588\"* do|strong=\"G4160\"* many|strong=\"G4183\"* mighty|strong=\"G1411\"* works|strong=\"G1411\"* there|strong=\"G1563\"* because|strong=\"G1223\"* of|strong=\"G1223\"* their|strong=\"G2532\"* unbelief." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"G1722\"* that|strong=\"G3588\"* time|strong=\"G2540\"*, Herod|strong=\"G2264\"* the|strong=\"G1722\"* tetrarch|strong=\"G5076\"* heard the|strong=\"G1722\"* report concerning|strong=\"G1722\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* his|strong=\"G1223\"* servants|strong=\"G3816\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* John|strong=\"G2491\"* the|strong=\"G1722\"* Baptizer. He|strong=\"G2532\"* is|strong=\"G1510\"* risen|strong=\"G1453\"* from|strong=\"G2532\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*. That|strong=\"G3588\"* is|strong=\"G1510\"* why|strong=\"G1223\"* these|strong=\"G3778\"* powers|strong=\"G1411\"* work|strong=\"G1754\"* in|strong=\"G1722\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* Herod|strong=\"G2264\"* had|strong=\"G2532\"* arrested|strong=\"G2902\"* John|strong=\"G2491\"*, bound|strong=\"G1210\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* put|strong=\"G2532\"* him|strong=\"G3588\"* in|strong=\"G1722\"* prison|strong=\"G5438\"* for|strong=\"G1063\"* the|strong=\"G1722\"* sake|strong=\"G1223\"* of|strong=\"G1223\"* Herodias|strong=\"G2266\"*, his|strong=\"G1223\"* brother Philip|strong=\"G5376\"*’s wife|strong=\"G1135\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* John|strong=\"G2491\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “It|strong=\"G1063\"* is|strong=\"G3588\"* not|strong=\"G3756\"* lawful|strong=\"G1832\"* for|strong=\"G1063\"* you|strong=\"G4771\"* to|strong=\"G3004\"* have|strong=\"G2192\"* her|strong=\"G1438\"*.”" + }, + { + "verseNum": 5, + "text": "When|strong=\"G5613\"* he|strong=\"G2532\"* would|strong=\"G2309\"* have|strong=\"G2192\"* put|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G2532\"* death, he|strong=\"G2532\"* feared|strong=\"G5399\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*, because|strong=\"G3754\"* they|strong=\"G2532\"* counted|strong=\"G2192\"* him|strong=\"G3588\"* as|strong=\"G5613\"* a|strong=\"G2192\"* prophet|strong=\"G4396\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Herod|strong=\"G2264\"*’s birthday|strong=\"G1077\"* came|strong=\"G1096\"*, the|strong=\"G1722\"* daughter|strong=\"G2364\"* of|strong=\"G2532\"* Herodias|strong=\"G2266\"* danced|strong=\"G3738\"* among|strong=\"G1722\"* them|strong=\"G3588\"* and|strong=\"G2532\"* pleased Herod|strong=\"G2264\"*." + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"G3606\"* he|strong=\"G3739\"* promised|strong=\"G3670\"* with|strong=\"G3326\"* an|strong=\"G1325\"* oath|strong=\"G3727\"* to|strong=\"G1325\"* give|strong=\"G1325\"* her|strong=\"G1437\"* whatever|strong=\"G3739\"* she|strong=\"G1437\"* should|strong=\"G1325\"* ask." + }, + { + "verseNum": 8, + "text": "She|strong=\"G1161\"*, being|strong=\"G1161\"* prompted|strong=\"G4264\"* by|strong=\"G5259\"* her|strong=\"G1325\"* mother|strong=\"G3384\"*, said|strong=\"G5346\"*, “Give|strong=\"G1325\"* me|strong=\"G1325\"* here|strong=\"G5602\"* on|strong=\"G1909\"* a|strong=\"G1909\"* platter|strong=\"G4094\"* the|strong=\"G1161\"* head|strong=\"G2776\"* of|strong=\"G5259\"* John|strong=\"G2491\"* the|strong=\"G1161\"* Baptizer.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"G2532\"* king|strong=\"G3588\"* was|strong=\"G3588\"* grieved|strong=\"G3076\"*, but|strong=\"G2532\"* for|strong=\"G1223\"* the|strong=\"G2532\"* sake|strong=\"G1223\"* of|strong=\"G1223\"* his|strong=\"G1223\"* oaths|strong=\"G3727\"* and|strong=\"G2532\"* of|strong=\"G1223\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G2532\"* at|strong=\"G1223\"* the|strong=\"G2532\"* table|strong=\"G4873\"* with|strong=\"G1223\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* commanded|strong=\"G2753\"* it|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* given|strong=\"G1325\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* he|strong=\"G2532\"* sent|strong=\"G3992\"* and|strong=\"G2532\"* beheaded John|strong=\"G2491\"* in|strong=\"G1722\"* the|strong=\"G1722\"* prison|strong=\"G5438\"*." + }, + { + "verseNum": 11, + "text": "His|strong=\"G1909\"* head|strong=\"G2776\"* was|strong=\"G3588\"* brought|strong=\"G5342\"* on|strong=\"G1909\"* a|strong=\"G2532\"* platter|strong=\"G4094\"* and|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2532\"* the|strong=\"G2532\"* young lady; and|strong=\"G2532\"* she|strong=\"G2532\"* brought|strong=\"G5342\"* it|strong=\"G2532\"* to|strong=\"G2532\"* her|strong=\"G1325\"* mother|strong=\"G3384\"*." + }, + { + "verseNum": 12, + "text": "His|strong=\"G2532\"* disciples|strong=\"G3101\"* came|strong=\"G2064\"*, took|strong=\"G2532\"* the|strong=\"G2532\"* body|strong=\"G4430\"*, and|strong=\"G2532\"* buried|strong=\"G2290\"* it|strong=\"G2532\"*. Then|strong=\"G2532\"* they|strong=\"G2532\"* went|strong=\"G2064\"* and|strong=\"G2532\"* told Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* Jesus|strong=\"G2424\"* heard this|strong=\"G3588\"*, he|strong=\"G2532\"* withdrew|strong=\"G2424\"* from|strong=\"G2532\"* there|strong=\"G2532\"* in|strong=\"G1722\"* a|strong=\"G2532\"* boat|strong=\"G4143\"* to|strong=\"G1519\"* a|strong=\"G2532\"* deserted|strong=\"G2048\"* place|strong=\"G5117\"* apart|strong=\"G2398\"*. When|strong=\"G1161\"* the|strong=\"G1722\"* multitudes|strong=\"G3793\"* heard it|strong=\"G2532\"*, they|strong=\"G2532\"* followed him|strong=\"G3588\"* on|strong=\"G1722\"* foot|strong=\"G3979\"* from|strong=\"G2532\"* the|strong=\"G1722\"* cities|strong=\"G4172\"*." + }, + { + "verseNum": 14, + "text": "Jesus|strong=\"G1831\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"*. He|strong=\"G2532\"* had|strong=\"G2532\"* compassion|strong=\"G4697\"* on|strong=\"G1909\"* them|strong=\"G3588\"* and|strong=\"G2532\"* healed|strong=\"G2323\"* their|strong=\"G2532\"* sick." + }, + { + "verseNum": 15, + "text": "When|strong=\"G1161\"* evening|strong=\"G3798\"* had|strong=\"G2532\"* come|strong=\"G1096\"*, his|strong=\"G1438\"* disciples|strong=\"G3101\"* came|strong=\"G4334\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “This|strong=\"G3588\"* place|strong=\"G5117\"* is|strong=\"G1510\"* deserted|strong=\"G2048\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* hour|strong=\"G5610\"* is|strong=\"G1510\"* already|strong=\"G2235\"* late|strong=\"G3928\"*. Send the|strong=\"G2532\"* multitudes|strong=\"G3793\"* away|strong=\"G3928\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* may|strong=\"G2532\"* go|strong=\"G3928\"* into|strong=\"G1519\"* the|strong=\"G2532\"* villages|strong=\"G2968\"*, and|strong=\"G2532\"* buy themselves|strong=\"G1438\"* food|strong=\"G1033\"*.”" + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w They|strong=\"G1161\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w need|strong=\"G5532\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w go|strong=\"G2192\"\\+w* away. \\+w You|strong=\"G5210\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w them|strong=\"G3588\"\\+w* something \\+w to|strong=\"G3004\"\\+w* \\+w eat|strong=\"G2068\"\\+w*.”*" + }, + { + "verseNum": 17, + "text": "They|strong=\"G2532\"* told|strong=\"G3004\"* him|strong=\"G3588\"*, “We|strong=\"G2532\"* only|strong=\"G1487\"* have|strong=\"G2192\"* here|strong=\"G5602\"* five|strong=\"G4002\"* loaves and|strong=\"G2532\"* two|strong=\"G1417\"* fish|strong=\"G2486\"*.”" + }, + { + "verseNum": 18, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"*, “\\+w Bring|strong=\"G5342\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 19, + "text": "He|strong=\"G2532\"* commanded|strong=\"G2753\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* to|strong=\"G1519\"* sit down on|strong=\"G1909\"* the|strong=\"G2532\"* grass|strong=\"G5528\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* five|strong=\"G4002\"* loaves and|strong=\"G2532\"* the|strong=\"G2532\"* two|strong=\"G1417\"* fish|strong=\"G2486\"*, and|strong=\"G2532\"* looking|strong=\"G2532\"* up|strong=\"G1519\"* to|strong=\"G1519\"* heaven|strong=\"G3772\"*, he|strong=\"G2532\"* blessed|strong=\"G2127\"*, broke|strong=\"G2806\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* the|strong=\"G2532\"* loaves to|strong=\"G1519\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*; and|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* gave|strong=\"G1325\"* to|strong=\"G1519\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"G2532\"* all|strong=\"G3956\"* ate|strong=\"G2068\"* and|strong=\"G2532\"* were|strong=\"G3588\"* filled|strong=\"G5526\"*. They|strong=\"G2532\"* took|strong=\"G2532\"* up|strong=\"G2532\"* twelve|strong=\"G1427\"* baskets|strong=\"G2894\"* full|strong=\"G4134\"* of|strong=\"G2532\"* that|strong=\"G3588\"* which|strong=\"G3588\"* remained|strong=\"G4052\"* left|strong=\"G4052\"* over|strong=\"G4052\"* from|strong=\"G2532\"* the|strong=\"G2532\"* broken|strong=\"G2801\"* pieces|strong=\"G2801\"*." + }, + { + "verseNum": 21, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* ate|strong=\"G2068\"* were|strong=\"G1510\"* about|strong=\"G5616\"* five|strong=\"G4000\"* thousand|strong=\"G4000\"* men|strong=\"G3588\"*, in|strong=\"G2532\"* addition to|strong=\"G2532\"* women|strong=\"G1135\"* and|strong=\"G2532\"* children|strong=\"G3813\"*." + }, + { + "verseNum": 22, + "text": "Immediately|strong=\"G2112\"* Jesus|strong=\"G2532\"* made|strong=\"G1519\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* get|strong=\"G1684\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"* and|strong=\"G2532\"* go|strong=\"G4254\"* ahead|strong=\"G4254\"* of|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G1519\"* the|strong=\"G2532\"* other|strong=\"G4008\"* side|strong=\"G4008\"*, while|strong=\"G2193\"* he|strong=\"G2532\"* sent|strong=\"G2532\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* away." + }, + { + "verseNum": 23, + "text": "After|strong=\"G2596\"* he|strong=\"G2532\"* had|strong=\"G2532\"* sent|strong=\"G2532\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* away, he|strong=\"G2532\"* went|strong=\"G2532\"* up|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"* by|strong=\"G2596\"* himself|strong=\"G2398\"* to|strong=\"G1519\"* pray|strong=\"G4336\"*. When|strong=\"G1161\"* evening|strong=\"G3798\"* had|strong=\"G2532\"* come|strong=\"G1096\"*, he|strong=\"G2532\"* was|strong=\"G1510\"* there|strong=\"G1563\"* alone|strong=\"G3441\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* boat|strong=\"G4143\"* was|strong=\"G1510\"* now|strong=\"G1161\"* in|strong=\"G1161\"* the|strong=\"G1161\"* middle|strong=\"G3319\"* of|strong=\"G5259\"* the|strong=\"G1161\"* sea|strong=\"G2281\"*, distressed by|strong=\"G5259\"* the|strong=\"G1161\"* waves|strong=\"G2949\"*, for|strong=\"G1063\"* the|strong=\"G1161\"* wind was|strong=\"G1510\"* contrary|strong=\"G1727\"*." + }, + { + "verseNum": 25, + "text": "In|strong=\"G1909\"* the|strong=\"G1161\"* fourth|strong=\"G5067\"* watch|strong=\"G5438\"* of|strong=\"G1909\"* the|strong=\"G1161\"* night|strong=\"G3571\"*,+ 14:25 The night was equally divided into four watches, so the fourth watch is approximately 3:00 a.m. to sunrise. * Jesus|strong=\"G2064\"* came|strong=\"G2064\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, walking|strong=\"G4043\"* on|strong=\"G1909\"* the|strong=\"G1161\"* sea|strong=\"G2281\"*.+ 14:25 See Job 9:8*" + }, + { + "verseNum": 26, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* saw|strong=\"G3708\"* him|strong=\"G3588\"* walking|strong=\"G4043\"* on|strong=\"G1909\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, they|strong=\"G2532\"* were|strong=\"G1510\"* troubled|strong=\"G5015\"*, saying|strong=\"G3004\"*, “It|strong=\"G2532\"*’s a|strong=\"G2532\"* ghost|strong=\"G5326\"*!” and|strong=\"G2532\"* they|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* for|strong=\"G3754\"* fear|strong=\"G5401\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"G1161\"* immediately|strong=\"G2112\"* Jesus|strong=\"G2424\"* spoke|strong=\"G2980\"* to|strong=\"G3004\"* them|strong=\"G3004\"*, saying|strong=\"G3004\"*, “Cheer \\+w up|strong=\"G3361\"\\+w*! \\+w It|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w I|strong=\"G1473\"\\+w*! *+ 14:27 or, I AM!* Don’t \\+w be|strong=\"G1510\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*.”*" + }, + { + "verseNum": 28, + "text": "Peter|strong=\"G4074\"* answered|strong=\"G3004\"* him|strong=\"G3588\"* and|strong=\"G1161\"* said|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, if|strong=\"G1487\"* it|strong=\"G1161\"* is|strong=\"G1510\"* you|strong=\"G4771\"*, command|strong=\"G3004\"* me|strong=\"G1473\"* to|strong=\"G4314\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G4771\"* on|strong=\"G1909\"* the|strong=\"G1161\"* waters|strong=\"G5204\"*.”" + }, + { + "verseNum": 29, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Come|strong=\"G2064\"\\+w*!”*" + }, + { + "verseNum": 30, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* he|strong=\"G2532\"* saw that|strong=\"G3588\"* the|strong=\"G2532\"* wind was|strong=\"G3588\"* strong|strong=\"G2478\"*, he|strong=\"G2532\"* was|strong=\"G3588\"* afraid|strong=\"G5399\"*, and|strong=\"G2532\"* beginning to|strong=\"G2532\"* sink|strong=\"G2670\"*, he|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"*, saying|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, save|strong=\"G4982\"* me|strong=\"G1473\"*!”" + }, + { + "verseNum": 31, + "text": "Immediately|strong=\"G2112\"* Jesus|strong=\"G2424\"* stretched|strong=\"G1614\"* out|strong=\"G2532\"* his|strong=\"G1519\"* hand|strong=\"G5495\"*, took|strong=\"G1949\"* hold|strong=\"G1949\"* of|strong=\"G2532\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “\\+w You|strong=\"G3004\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w little|strong=\"G3640\"\\+w* \\+w faith|strong=\"G3640\"\\+w*, \\+w why|strong=\"G5101\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w doubt|strong=\"G1365\"\\+w*?”*" + }, + { + "verseNum": 32, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* got up|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"*, the|strong=\"G2532\"* wind ceased|strong=\"G2869\"*." + }, + { + "verseNum": 33, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* boat|strong=\"G4143\"* came|strong=\"G3588\"* and|strong=\"G1161\"* worshiped|strong=\"G4352\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “You|strong=\"G1722\"* are|strong=\"G1510\"* truly|strong=\"G1722\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 34, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* crossed|strong=\"G1276\"* over|strong=\"G1909\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* land|strong=\"G1093\"* of|strong=\"G2532\"* Gennesaret|strong=\"G1082\"*." + }, + { + "verseNum": 35, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G3956\"* of|strong=\"G2532\"* that|strong=\"G3588\"* place|strong=\"G5117\"* recognized|strong=\"G1921\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* sent|strong=\"G2532\"* into|strong=\"G1519\"* all|strong=\"G3956\"* that|strong=\"G3588\"* surrounding|strong=\"G4066\"* region|strong=\"G4066\"* and|strong=\"G2532\"* brought|strong=\"G4374\"* to|strong=\"G1519\"* him|strong=\"G3588\"* all|strong=\"G3956\"* who|strong=\"G3588\"* were|strong=\"G3588\"* sick|strong=\"G2560\"*;" + }, + { + "verseNum": 36, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* just|strong=\"G2532\"* touch the|strong=\"G2532\"* fringe|strong=\"G2899\"*+ 14:36 or, tassel* of|strong=\"G2532\"* his|strong=\"G2532\"* garment|strong=\"G2440\"*. As|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* touched it|strong=\"G2532\"* were|strong=\"G3588\"* made whole|strong=\"G1295\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* scribes|strong=\"G1122\"* came|strong=\"G4334\"* to|strong=\"G2532\"* Jesus|strong=\"G2424\"* from|strong=\"G2532\"* Jerusalem|strong=\"G2414\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 2, + "text": "“Why|strong=\"G5101\"* do|strong=\"G5101\"* your|strong=\"G1223\"* disciples|strong=\"G3101\"* disobey|strong=\"G3845\"* the|strong=\"G1223\"* tradition|strong=\"G3862\"* of|strong=\"G1223\"* the|strong=\"G1223\"* elders|strong=\"G4245\"*? For|strong=\"G1063\"* they|strong=\"G3588\"* don’t|strong=\"G3588\"* wash|strong=\"G3538\"* their|strong=\"G2068\"* hands|strong=\"G5495\"* when|strong=\"G3752\"* they|strong=\"G3588\"* eat|strong=\"G2068\"* bread.”" + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w disobey|strong=\"G3845\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w commandment|strong=\"G1785\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w tradition|strong=\"G3862\"\\+w*? *" + }, + { + "verseNum": 4, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w commanded|strong=\"G1781\"\\+w*, ‘\\+w Honor|strong=\"G5091\"\\+w* \\+w your|strong=\"G5091\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G5091\"\\+w* \\+w mother|strong=\"G3384\"\\+w*,’*+ 15:4 Exodus 20:12; Deuteronomy 5:16* \\+w and|strong=\"G2532\"\\+w*, ‘\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w speaks|strong=\"G3004\"\\+w* \\+w evil|strong=\"G2551\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w mother|strong=\"G3384\"\\+w*, \\+w let|strong=\"G1063\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w put|strong=\"G5053\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w death|strong=\"G2288\"\\+w*.’*+ 15:4 Exodus 21:17; Leviticus 20:9*" + }, + { + "verseNum": 5, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Whoever|strong=\"G3739\"\\+w* \\+w may|strong=\"G3004\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w his|strong=\"G3739\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w his|strong=\"G3739\"\\+w* \\+w mother|strong=\"G3384\"\\+w*, “\\+w Whatever|strong=\"G3739\"\\+w* \\+w help|strong=\"G5623\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w might|strong=\"G5210\"\\+w* \\+w otherwise|strong=\"G1161\"\\+w* \\+w have|strong=\"G1473\"\\+w* gotten \\+w from|strong=\"G1537\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w a|strong=\"G1437\"\\+w* \\+w gift|strong=\"G1435\"\\+w* devoted \\+w to|strong=\"G3004\"\\+w* \\+w God|strong=\"G3004\"\\+w*,” *" + }, + { + "verseNum": 6, + "text": "\\+w he|strong=\"G2532\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w honor|strong=\"G5091\"\\+w* \\+w his|strong=\"G1223\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w or|strong=\"G2532\"\\+w* mother.’ \\+w You|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w made|strong=\"G2316\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w commandment|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w God|strong=\"G2316\"\\+w* void \\+w because|strong=\"G1223\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w tradition|strong=\"G3862\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w hypocrites|strong=\"G5273\"\\+w*! \\+w Well|strong=\"G2573\"\\+w* \\+w did|strong=\"G2573\"\\+w* \\+w Isaiah|strong=\"G2268\"\\+w* \\+w prophesy|strong=\"G4395\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*,*" + }, + { + "verseNum": 8, + "text": "‘\\+w These|strong=\"G3778\"\\+w* \\+w people|strong=\"G2992\"\\+w* draw near \\+w to|strong=\"G1161\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w with|strong=\"G2588\"\\+w* \\+w their|strong=\"G3588\"\\+w* mouth,*" + }, + { + "verseNum": 9, + "text": "\\+w And|strong=\"G1161\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w worship|strong=\"G4576\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G1161\"\\+w* \\+w vain|strong=\"G3155\"\\+w*,*" + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* summoned|strong=\"G4341\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Hear, \\+w and|strong=\"G2532\"\\+w* \\+w understand|strong=\"G4920\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w That|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w enters|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w mouth|strong=\"G4750\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w defile|strong=\"G2840\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w man|strong=\"G3778\"\\+w*; \\+w but|strong=\"G3588\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w proceeds|strong=\"G1607\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w mouth|strong=\"G4750\"\\+w*, \\+w this|strong=\"G3778\"\\+w* \\+w defiles|strong=\"G2840\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w man|strong=\"G3778\"\\+w*.”*" + }, + { + "verseNum": 12, + "text": "Then|strong=\"G5119\"* the|strong=\"G3588\"* disciples|strong=\"G3101\"* came|strong=\"G4334\"* and|strong=\"G4334\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Do|strong=\"G1492\"* you|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G3588\"* Pharisees|strong=\"G5330\"* were|strong=\"G3588\"* offended|strong=\"G4624\"* when|strong=\"G1492\"* they|strong=\"G3588\"* heard this|strong=\"G3588\"* saying|strong=\"G3004\"*?”" + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* answered|strong=\"G3004\"*, “\\+w Every|strong=\"G3956\"\\+w* \\+w plant|strong=\"G5451\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w heavenly|strong=\"G3770\"\\+w* \\+w Father|strong=\"G3962\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w plant|strong=\"G5451\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w be|strong=\"G3756\"\\+w* \\+w uprooted|strong=\"G1610\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "Leave \\+w them|strong=\"G1438\"\\+w* \\+w alone|strong=\"G1438\"\\+w*. \\+w They|strong=\"G1161\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w blind|strong=\"G5185\"\\+w* \\+w guides|strong=\"G3595\"\\+w* \\+w of|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w blind|strong=\"G5185\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w blind|strong=\"G5185\"\\+w* \\+w guide|strong=\"G3595\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w blind|strong=\"G5185\"\\+w*, \\+w both|strong=\"G1161\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w fall|strong=\"G4098\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w a|strong=\"G1519\"\\+w* pit.”*" + }, + { + "verseNum": 15, + "text": "Peter|strong=\"G4074\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Explain|strong=\"G5419\"* the|strong=\"G1161\"* parable|strong=\"G3850\"* to|strong=\"G3004\"* us|strong=\"G3004\"*.”" + }, + { + "verseNum": 16, + "text": "So|strong=\"G2532\"* Jesus|strong=\"G3004\"* said|strong=\"G3004\"*, “\\+w Do|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w* still \\+w not|strong=\"G1510\"\\+w* understand? *" + }, + { + "verseNum": 17, + "text": "Don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w understand|strong=\"G3539\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w whatever|strong=\"G3956\"\\+w* \\+w goes|strong=\"G1531\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w mouth|strong=\"G4750\"\\+w* \\+w passes|strong=\"G5562\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w belly|strong=\"G2836\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w body|strong=\"G1519\"\\+w*? *" + }, + { + "verseNum": 18, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w proceed|strong=\"G1607\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w mouth|strong=\"G4750\"\\+w* \\+w come|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w defile|strong=\"G2840\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w man|strong=\"G2588\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w come|strong=\"G1831\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w thoughts|strong=\"G1261\"\\+w*, \\+w murders|strong=\"G5408\"\\+w*, \\+w adulteries|strong=\"G3430\"\\+w*, \\+w sexual|strong=\"G4202\"\\+w* sins, \\+w thefts|strong=\"G2829\"\\+w*, \\+w false|strong=\"G5577\"\\+w* \\+w testimony|strong=\"G5577\"\\+w*, \\+w and|strong=\"G1831\"\\+w* blasphemies. *" + }, + { + "verseNum": 20, + "text": "\\+w These|strong=\"G3778\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w defile|strong=\"G2840\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w man|strong=\"G3778\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w to|strong=\"G3756\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w with|strong=\"G5495\"\\+w* unwashed \\+w hands|strong=\"G5495\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w defile|strong=\"G2840\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w man|strong=\"G3778\"\\+w*.”*" + }, + { + "verseNum": 21, + "text": "Jesus|strong=\"G2424\"* went|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G2532\"* there|strong=\"G2532\"* and|strong=\"G2532\"* withdrew|strong=\"G2424\"* into|strong=\"G1519\"* the|strong=\"G2532\"* region of|strong=\"G2532\"* Tyre|strong=\"G5184\"* and|strong=\"G2532\"* Sidon|strong=\"G4605\"*." + }, + { + "verseNum": 22, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G2532\"* Canaanite|strong=\"G5478\"* woman|strong=\"G1135\"* came|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G2532\"* those|strong=\"G3588\"* borders|strong=\"G3725\"* and|strong=\"G2532\"* cried|strong=\"G2896\"*, saying|strong=\"G3004\"*, “Have|strong=\"G2532\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* me|strong=\"G1473\"*, Lord|strong=\"G2962\"*, you|strong=\"G3004\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*! My|strong=\"G3708\"* daughter|strong=\"G2364\"* is|strong=\"G3588\"* severely possessed by|strong=\"G2532\"* a|strong=\"G2532\"* demon!”" + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* answered|strong=\"G3004\"* her|strong=\"G1438\"* not|strong=\"G3756\"* a|strong=\"G2532\"* word|strong=\"G3056\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* answered|strong=\"G3004\"*, “\\+w I|strong=\"G1161\"\\+w* wasn’\\+w t|strong=\"G3588\"\\+w* sent \\+w to|strong=\"G1519\"\\+w* anyone \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G1519\"\\+w* lost \\+w sheep|strong=\"G4263\"\\+w* \\+w of|strong=\"G3624\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w of|strong=\"G3624\"\\+w* \\+w Israel|strong=\"G2474\"\\+w*.”*" + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* she|strong=\"G1161\"* came|strong=\"G2064\"* and|strong=\"G1161\"* worshiped|strong=\"G4352\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, help me|strong=\"G1473\"*.”" + }, + { + "verseNum": 26, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* answered|strong=\"G3004\"*, “\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* appropriate \\+w to|strong=\"G2532\"\\+w* \\+w take|strong=\"G2983\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w children|strong=\"G5043\"\\+w*’s bread \\+w and|strong=\"G2532\"\\+w* throw \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dogs|strong=\"G2952\"\\+w*.”*" + }, + { + "verseNum": 27, + "text": "But|strong=\"G1161\"* she|strong=\"G2532\"* said|strong=\"G3004\"*, “Yes|strong=\"G3483\"*, Lord|strong=\"G2962\"*, but|strong=\"G1161\"* even|strong=\"G2532\"* the|strong=\"G2532\"* dogs|strong=\"G2952\"* eat|strong=\"G2068\"* the|strong=\"G2532\"* crumbs|strong=\"G5589\"* which|strong=\"G3588\"* fall|strong=\"G4098\"* from|strong=\"G2532\"* their|strong=\"G2532\"* masters|strong=\"G2962\"*’ table|strong=\"G5132\"*.”" + }, + { + "verseNum": 28, + "text": "Then|strong=\"G2532\"* Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* her|strong=\"G3588\"*, “\\+w Woman|strong=\"G1135\"\\+w*, \\+w great|strong=\"G3173\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w faith|strong=\"G4102\"\\+w*! \\+w Be|strong=\"G1096\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w desire|strong=\"G2309\"\\+w*.”* And|strong=\"G2532\"* her|strong=\"G3588\"* daughter|strong=\"G2364\"* was|strong=\"G1096\"* healed|strong=\"G2390\"* from|strong=\"G2532\"* that|strong=\"G3588\"* hour|strong=\"G5610\"*." + }, + { + "verseNum": 29, + "text": "Jesus|strong=\"G2424\"* departed|strong=\"G3327\"* from|strong=\"G3844\"* there|strong=\"G1563\"* and|strong=\"G2532\"* came|strong=\"G2064\"* near|strong=\"G1519\"* to|strong=\"G1519\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* of|strong=\"G2532\"* Galilee|strong=\"G1056\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* went|strong=\"G2064\"* up|strong=\"G1519\"* on|strong=\"G1519\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"* and|strong=\"G2532\"* sat|strong=\"G2521\"* there|strong=\"G1563\"*." + }, + { + "verseNum": 30, + "text": "Great|strong=\"G4183\"* multitudes|strong=\"G3793\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, having|strong=\"G2192\"* with|strong=\"G3326\"* them|strong=\"G3588\"* the|strong=\"G2532\"* lame|strong=\"G5560\"*, blind|strong=\"G5185\"*, mute|strong=\"G2974\"*, maimed|strong=\"G2948\"*, and|strong=\"G2532\"* many|strong=\"G4183\"* others|strong=\"G2087\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* put|strong=\"G2532\"* them|strong=\"G3588\"* down|strong=\"G4496\"* at|strong=\"G3844\"* his|strong=\"G1438\"* feet|strong=\"G4228\"*. He|strong=\"G2532\"* healed|strong=\"G2323\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 31, + "text": "so|strong=\"G2532\"* that|strong=\"G3588\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* wondered|strong=\"G2296\"* when|strong=\"G2532\"* they|strong=\"G2532\"* saw the|strong=\"G2532\"* mute|strong=\"G2974\"* speaking|strong=\"G2980\"*, the|strong=\"G2532\"* injured healed|strong=\"G5199\"*, the|strong=\"G2532\"* lame|strong=\"G5560\"* walking|strong=\"G4043\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* blind|strong=\"G5185\"* seeing—and|strong=\"G2532\"* they|strong=\"G2532\"* glorified|strong=\"G1392\"* the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* Israel|strong=\"G2474\"*." + }, + { + "verseNum": 32, + "text": "Jesus|strong=\"G2424\"* summoned|strong=\"G4341\"* his|strong=\"G1438\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w compassion|strong=\"G4697\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w multitude|strong=\"G3793\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* continued \\+w with|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w nothing|strong=\"G3756\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w*. \\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* send \\+w them|strong=\"G3588\"\\+w* away \\+w fasting|strong=\"G3523\"\\+w*, \\+w or|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w might|strong=\"G2532\"\\+w* \\+w faint|strong=\"G1590\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w way|strong=\"G3598\"\\+w*.” *" + }, + { + "verseNum": 33, + "text": "The|strong=\"G1722\"* disciples|strong=\"G3101\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Where|strong=\"G4159\"* could|strong=\"G3588\"* we|strong=\"G2249\"* get|strong=\"G2532\"* so|strong=\"G2532\"* many|strong=\"G5118\"* loaves in|strong=\"G1722\"* a|strong=\"G2532\"* deserted place|strong=\"G2047\"* as|strong=\"G1722\"* to|strong=\"G2532\"* satisfy|strong=\"G5526\"* so|strong=\"G2532\"* great|strong=\"G5118\"* a|strong=\"G2532\"* multitude|strong=\"G3793\"*?”" + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w How|strong=\"G4214\"\\+w* \\+w many|strong=\"G4214\"\\+w* loaves \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w have|strong=\"G2192\"\\+w*?”*" + }, + { + "verseNum": 35, + "text": "He|strong=\"G2532\"* commanded|strong=\"G3853\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* to|strong=\"G2532\"* sit down on|strong=\"G1909\"* the|strong=\"G2532\"* ground|strong=\"G1093\"*;" + }, + { + "verseNum": 36, + "text": "and|strong=\"G2532\"* he|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* loaves and|strong=\"G2532\"* the|strong=\"G2532\"* fish|strong=\"G2486\"*. He|strong=\"G2532\"* gave|strong=\"G1325\"* thanks|strong=\"G2168\"* and|strong=\"G2532\"* broke|strong=\"G2806\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* gave|strong=\"G1325\"* to|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* to|strong=\"G2532\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"*." + }, + { + "verseNum": 37, + "text": "They|strong=\"G2532\"* all|strong=\"G3956\"* ate|strong=\"G2068\"* and|strong=\"G2532\"* were|strong=\"G3588\"* filled|strong=\"G5526\"*. They|strong=\"G2532\"* took|strong=\"G2532\"* up|strong=\"G2532\"* seven|strong=\"G2033\"* baskets|strong=\"G4711\"* full|strong=\"G4134\"* of|strong=\"G2532\"* the|strong=\"G2532\"* broken|strong=\"G2801\"* pieces|strong=\"G2801\"* that|strong=\"G3588\"* were|strong=\"G3588\"* left|strong=\"G4052\"* over|strong=\"G4052\"*." + }, + { + "verseNum": 38, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* ate|strong=\"G2068\"* were|strong=\"G1510\"* four|strong=\"G5070\"* thousand|strong=\"G5070\"* men|strong=\"G3588\"*, in|strong=\"G2532\"* addition to|strong=\"G2532\"* women|strong=\"G1135\"* and|strong=\"G2532\"* children|strong=\"G3813\"*." + }, + { + "verseNum": 39, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* sent|strong=\"G2532\"* away the|strong=\"G2532\"* multitudes|strong=\"G3793\"*, got|strong=\"G1684\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"*, and|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* borders|strong=\"G3725\"* of|strong=\"G2532\"* Magdala|strong=\"G3093\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* Sadducees|strong=\"G4523\"* came|strong=\"G4334\"*, and|strong=\"G2532\"* testing|strong=\"G3985\"* him|strong=\"G3588\"*, asked|strong=\"G1905\"* him|strong=\"G3588\"* to|strong=\"G2532\"* show|strong=\"G1925\"* them|strong=\"G3588\"* a|strong=\"G2532\"* sign|strong=\"G4592\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w When|strong=\"G1161\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w evening|strong=\"G3798\"\\+w*, \\+w you|strong=\"G3004\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w It|strong=\"G1161\"\\+w* \\+w will|strong=\"G1096\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w fair|strong=\"G2105\"\\+w* \\+w weather|strong=\"G2105\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w red|strong=\"G4449\"\\+w*.’ *" + }, + { + "verseNum": 3, + "text": "\\+w In|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w morning|strong=\"G4404\"\\+w*, ‘\\+w It|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* foul weather \\+w today|strong=\"G4594\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w red|strong=\"G4449\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w threatening|strong=\"G4768\"\\+w*.’ Hypocrites! \\+w You|strong=\"G2532\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w how|strong=\"G1161\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w discern|strong=\"G1252\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w appearance|strong=\"G4383\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w discern|strong=\"G1252\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w signs|strong=\"G4592\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w times|strong=\"G2540\"\\+w*! *" + }, + { + "verseNum": 4, + "text": "\\+w An|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w adulterous|strong=\"G3428\"\\+w* \\+w generation|strong=\"G1074\"\\+w* \\+w seeks|strong=\"G1934\"\\+w* \\+w after|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w sign|strong=\"G4592\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w sign|strong=\"G4592\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sign|strong=\"G4592\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* prophet \\+w Jonah|strong=\"G2495\"\\+w*.”*" + }, + { + "verseNum": 5, + "text": "The|strong=\"G2532\"* disciples|strong=\"G3101\"* came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* other|strong=\"G4008\"* side|strong=\"G4008\"* and|strong=\"G2532\"* had|strong=\"G2532\"* forgotten|strong=\"G1950\"* to|strong=\"G1519\"* take|strong=\"G2983\"* bread." + }, + { + "verseNum": 6, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Take|strong=\"G1161\"\\+w* \\+w heed|strong=\"G4337\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w beware|strong=\"G4337\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w yeast|strong=\"G2219\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Sadducees|strong=\"G4523\"\\+w*.”*" + }, + { + "verseNum": 7, + "text": "They|strong=\"G1161\"* reasoned|strong=\"G1260\"* among|strong=\"G1722\"* themselves|strong=\"G1438\"*, saying|strong=\"G3004\"*, “We|strong=\"G3754\"* brought|strong=\"G1161\"* no|strong=\"G3756\"* bread.”" + }, + { + "verseNum": 8, + "text": "Jesus|strong=\"G2424\"*, perceiving|strong=\"G1097\"* it|strong=\"G3754\"*, said|strong=\"G3004\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w reason|strong=\"G1260\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w*, \\+w you|strong=\"G3754\"\\+w* \\+w of|strong=\"G1722\"\\+w* \\+w little|strong=\"G3640\"\\+w* \\+w faith|strong=\"G3640\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w have|strong=\"G3748\"\\+w* \\+w brought|strong=\"G1161\"\\+w* \\+w no|strong=\"G3756\"\\+w* bread? *" + }, + { + "verseNum": 9, + "text": "Don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w yet|strong=\"G2532\"\\+w* \\+w perceive|strong=\"G3539\"\\+w* \\+w or|strong=\"G2532\"\\+w* \\+w remember|strong=\"G3421\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w five|strong=\"G4002\"\\+w* loaves \\+w for|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w thousand|strong=\"G4000\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w how|strong=\"G4214\"\\+w* \\+w many|strong=\"G4214\"\\+w* \\+w baskets|strong=\"G2894\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w up|strong=\"G2532\"\\+w*, *" + }, + { + "verseNum": 10, + "text": "\\+w or|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w seven|strong=\"G2033\"\\+w* loaves \\+w for|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w four|strong=\"G5070\"\\+w* \\+w thousand|strong=\"G5070\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w how|strong=\"G4214\"\\+w* \\+w many|strong=\"G4214\"\\+w* \\+w baskets|strong=\"G4711\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w up|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 11, + "text": "\\+w How|strong=\"G4459\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w perceive|strong=\"G3539\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w speak|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w concerning|strong=\"G4012\"\\+w* bread? \\+w But|strong=\"G1161\"\\+w* \\+w beware|strong=\"G4337\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w yeast|strong=\"G2219\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Sadducees|strong=\"G4523\"\\+w*.” *" + }, + { + "verseNum": 12, + "text": "Then|strong=\"G2532\"* they|strong=\"G2532\"* understood|strong=\"G4920\"* that|strong=\"G3754\"* he|strong=\"G2532\"* didn’t|strong=\"G3588\"* tell|strong=\"G3004\"* them|strong=\"G3588\"* to|strong=\"G2532\"* beware|strong=\"G4337\"* of|strong=\"G2532\"* the|strong=\"G2532\"* yeast|strong=\"G2219\"* of|strong=\"G2532\"* bread, but|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* teaching|strong=\"G1322\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* Sadducees|strong=\"G4523\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* Jesus|strong=\"G2424\"* came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G1519\"* parts|strong=\"G3313\"* of|strong=\"G5207\"* Caesarea|strong=\"G2542\"* Philippi|strong=\"G5376\"*, he|strong=\"G1161\"* asked|strong=\"G2065\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, saying|strong=\"G3004\"*, “\\+w Who|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w I|strong=\"G1161\"\\+w*, \\+w the|strong=\"G1519\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5101\"\\+w*, \\+w am|strong=\"G1510\"\\+w*?”*" + }, + { + "verseNum": 14, + "text": "They|strong=\"G1161\"* said|strong=\"G3004\"*, “Some|strong=\"G3588\"* say|strong=\"G3004\"* John|strong=\"G2491\"* the|strong=\"G1161\"* Baptizer, some|strong=\"G3588\"*, Elijah|strong=\"G2243\"*, and|strong=\"G1161\"* others|strong=\"G2087\"*, Jeremiah|strong=\"G2408\"* or|strong=\"G2228\"* one|strong=\"G1520\"* of|strong=\"G1520\"* the|strong=\"G1161\"* prophets|strong=\"G4396\"*.”" + }, + { + "verseNum": 15, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3004\"*, “\\+w But|strong=\"G1161\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w that|strong=\"G3004\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*?”*" + }, + { + "verseNum": 16, + "text": "Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* answered|strong=\"G3004\"*, “You|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G1161\"* Christ|strong=\"G5547\"*, the|strong=\"G1161\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G1161\"* living|strong=\"G2198\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 17, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w Simon|strong=\"G4613\"\\+w* Bar Jonah, \\+w for|strong=\"G3754\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w and|strong=\"G2532\"\\+w* blood \\+w has|strong=\"G3962\"\\+w* \\+w not|strong=\"G3756\"\\+w* revealed \\+w this|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w Peter|strong=\"G4074\"\\+w*,*+ 16:18 Peter’s name, Petros in Greek, is the word for a specific rock or stone.* \\+w and|strong=\"G2532\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w rock|strong=\"G4073\"\\+w* *+ 16:18 Greek, petra, a rock mass or bedrock.* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w build|strong=\"G3618\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w assembly|strong=\"G1577\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w gates|strong=\"G4439\"\\+w* \\+w of|strong=\"G2532\"\\+w* Hades*+ 16:18 or, Hell* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w prevail|strong=\"G2729\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w I|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w keys|strong=\"G2807\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G2532\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w bind|strong=\"G1210\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w bound|strong=\"G1210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w release|strong=\"G3089\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w released|strong=\"G3089\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "Then|strong=\"G5119\"* he|strong=\"G3754\"* commanded|strong=\"G1291\"* the|strong=\"G3588\"* disciples|strong=\"G3101\"* that|strong=\"G3754\"* they|strong=\"G3588\"* should|strong=\"G3588\"* tell|strong=\"G3004\"* no|strong=\"G3367\"* one|strong=\"G3367\"* that|strong=\"G3754\"* he|strong=\"G3754\"* was|strong=\"G1510\"* Jesus|strong=\"G3004\"* the|strong=\"G3588\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 21, + "text": "From|strong=\"G2532\"* that|strong=\"G3754\"* time|strong=\"G2250\"*, Jesus|strong=\"G2424\"* began|strong=\"G5119\"* to|strong=\"G1519\"* show|strong=\"G1166\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* that|strong=\"G3754\"* he|strong=\"G2532\"* must|strong=\"G1163\"* go|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"* and|strong=\"G2532\"* suffer|strong=\"G3958\"* many|strong=\"G4183\"* things|strong=\"G3588\"* from|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*, chief|strong=\"G2532\"* priests, and|strong=\"G2532\"* scribes|strong=\"G1122\"*, and|strong=\"G2532\"* be|strong=\"G2532\"* killed, and|strong=\"G2532\"* the|strong=\"G2532\"* third|strong=\"G5154\"* day|strong=\"G2250\"* be|strong=\"G2532\"* raised|strong=\"G1453\"* up|strong=\"G1453\"*." + }, + { + "verseNum": 22, + "text": "Peter|strong=\"G4074\"* took|strong=\"G4355\"* him|strong=\"G3588\"* aside|strong=\"G4355\"* and|strong=\"G2532\"* began to|strong=\"G2532\"* rebuke|strong=\"G2008\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Far|strong=\"G2436\"* be|strong=\"G1510\"* it|strong=\"G2532\"* from|strong=\"G2532\"* you|strong=\"G4771\"*, Lord|strong=\"G2962\"*! This|strong=\"G3778\"* will|strong=\"G1510\"* never|strong=\"G3756\"* be|strong=\"G1510\"* done|strong=\"G3361\"* to|strong=\"G2532\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* turned|strong=\"G4762\"* and|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* Peter|strong=\"G4074\"*, “\\+w Get|strong=\"G5217\"\\+w* \\+w behind|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w Satan|strong=\"G4567\"\\+w*! \\+w You|strong=\"G3754\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w a|strong=\"G1510\"\\+w* \\+w stumbling|strong=\"G4625\"\\+w* \\+w block|strong=\"G4625\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w setting|strong=\"G5426\"\\+w* \\+w your|strong=\"G5426\"\\+w* \\+w mind|strong=\"G5426\"\\+w* \\+w on|strong=\"G5426\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w on|strong=\"G5426\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w men|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 24, + "text": "Then|strong=\"G2532\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* his|strong=\"G1438\"* disciples|strong=\"G3101\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w desires|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w after|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w let|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w take|strong=\"G2532\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w cross|strong=\"G4716\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w follow|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w desires|strong=\"G2309\"\\+w* \\+w to|strong=\"G2309\"\\+w* \\+w save|strong=\"G4982\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w will|strong=\"G2309\"\\+w* lose \\+w it|strong=\"G1161\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w will|strong=\"G2309\"\\+w* lose \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w sake|strong=\"G1752\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w it|strong=\"G1161\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w profit|strong=\"G5623\"\\+w* \\+w a|strong=\"G1437\"\\+w* \\+w man|strong=\"G5101\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w gains|strong=\"G2770\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w and|strong=\"G1161\"\\+w* \\+w forfeits|strong=\"G2210\"\\+w* \\+w his|strong=\"G1325\"\\+w* \\+w life|strong=\"G5590\"\\+w*? \\+w Or|strong=\"G2228\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w a|strong=\"G1437\"\\+w* \\+w man|strong=\"G5101\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w in|strong=\"G1161\"\\+w* exchange \\+w for|strong=\"G1063\"\\+w* \\+w his|strong=\"G1325\"\\+w* \\+w life|strong=\"G5590\"\\+w*? *" + }, + { + "verseNum": 27, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1538\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w his|strong=\"G1722\"\\+w* angels, \\+w and|strong=\"G2532\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w give|strong=\"G2064\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w everyone|strong=\"G1538\"\\+w* \\+w according|strong=\"G2596\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w deeds|strong=\"G4234\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "Most \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w there|strong=\"G3754\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w some|strong=\"G5100\"\\+w* \\+w standing|strong=\"G2476\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G1722\"\\+w* \\+w taste|strong=\"G1089\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w death|strong=\"G2288\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5100\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* Kingdom.” *" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* six|strong=\"G1803\"* days|strong=\"G2250\"*, Jesus|strong=\"G2424\"* took|strong=\"G3880\"* with|strong=\"G3326\"* him|strong=\"G3588\"* Peter|strong=\"G4074\"*, James|strong=\"G2385\"*, and|strong=\"G2532\"* John|strong=\"G2491\"* his|strong=\"G1438\"* brother, and|strong=\"G2532\"* brought|strong=\"G2532\"* them|strong=\"G3588\"* up|strong=\"G1519\"* into|strong=\"G1519\"* a|strong=\"G2532\"* high|strong=\"G5308\"* mountain|strong=\"G3735\"* by|strong=\"G2596\"* themselves|strong=\"G1438\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* was|strong=\"G1096\"* changed|strong=\"G3339\"*+ 17:2 or, transfigured* before|strong=\"G1715\"* them|strong=\"G3588\"*. His|strong=\"G2532\"* face|strong=\"G4383\"* shone|strong=\"G2989\"* like|strong=\"G5613\"* the|strong=\"G2532\"* sun|strong=\"G2246\"*, and|strong=\"G2532\"* his|strong=\"G2532\"* garments|strong=\"G2440\"* became|strong=\"G1096\"* as|strong=\"G5613\"* white|strong=\"G3022\"* as|strong=\"G5613\"* the|strong=\"G2532\"* light|strong=\"G5457\"*." + }, + { + "verseNum": 3, + "text": "Behold|strong=\"G2400\"*, Moses|strong=\"G3475\"* and|strong=\"G2532\"* Elijah|strong=\"G2243\"* appeared|strong=\"G3708\"* to|strong=\"G2532\"* them|strong=\"G3708\"* talking|strong=\"G4814\"* with|strong=\"G3326\"* him|strong=\"G3708\"*." + }, + { + "verseNum": 4, + "text": "Peter|strong=\"G4074\"* answered|strong=\"G3004\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* Jesus|strong=\"G2424\"*, “Lord|strong=\"G2962\"*, it|strong=\"G2532\"* is|strong=\"G1510\"* good|strong=\"G2570\"* for|strong=\"G1161\"* us|strong=\"G3004\"* to|strong=\"G2532\"* be|strong=\"G1510\"* here|strong=\"G5602\"*. If|strong=\"G1487\"* you|strong=\"G4771\"* want|strong=\"G2309\"*, let|strong=\"G1161\"*’s|strong=\"G2962\"* make|strong=\"G4160\"* three|strong=\"G5140\"* tents|strong=\"G4633\"* here|strong=\"G5602\"*: one|strong=\"G1520\"* for|strong=\"G1161\"* you|strong=\"G4771\"*, one|strong=\"G1520\"* for|strong=\"G1161\"* Moses|strong=\"G3475\"*, and|strong=\"G2532\"* one|strong=\"G1520\"* for|strong=\"G1161\"* Elijah|strong=\"G2243\"*.”" + }, + { + "verseNum": 5, + "text": "While|strong=\"G1722\"* he|strong=\"G2532\"* was|strong=\"G1510\"* still|strong=\"G2089\"* speaking|strong=\"G2980\"*, behold|strong=\"G2400\"*, a|strong=\"G2532\"* bright|strong=\"G5460\"* cloud|strong=\"G3507\"* overshadowed|strong=\"G1982\"* them|strong=\"G3588\"*. Behold|strong=\"G2400\"*, a|strong=\"G2532\"* voice|strong=\"G5456\"* came|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* cloud|strong=\"G3507\"*, saying|strong=\"G3004\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* my|strong=\"G3708\"* beloved Son|strong=\"G5207\"*, in|strong=\"G1722\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* am|strong=\"G1510\"* well|strong=\"G2532\"* pleased|strong=\"G2106\"*. Listen|strong=\"G2400\"* to|strong=\"G2532\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 6, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* heard it|strong=\"G2532\"*, they|strong=\"G2532\"* fell|strong=\"G4098\"* on|strong=\"G1909\"* their|strong=\"G2532\"* faces|strong=\"G4383\"*, and|strong=\"G2532\"* were|strong=\"G3588\"* very|strong=\"G2532\"* afraid|strong=\"G5399\"*." + }, + { + "verseNum": 7, + "text": "Jesus|strong=\"G2424\"* came|strong=\"G4334\"* and|strong=\"G2532\"* touched them|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Get|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*.” *" + }, + { + "verseNum": 8, + "text": "Lifting|strong=\"G1869\"* up|strong=\"G1869\"* their|strong=\"G3588\"* eyes|strong=\"G3788\"*, they|strong=\"G1161\"* saw|strong=\"G3708\"* no|strong=\"G3762\"* one|strong=\"G3762\"*, except|strong=\"G1487\"* Jesus|strong=\"G2424\"* alone|strong=\"G3441\"*." + }, + { + "verseNum": 9, + "text": "As|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* coming|strong=\"G2597\"* down|strong=\"G2597\"* from|strong=\"G1537\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"*, Jesus|strong=\"G2424\"* commanded|strong=\"G1781\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w anyone|strong=\"G3367\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w saw|strong=\"G2424\"\\+w*, \\+w until|strong=\"G2193\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Man|strong=\"G3367\"\\+w* \\+w has|strong=\"G3739\"\\+w* \\+w risen|strong=\"G1453\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w*.”*" + }, + { + "verseNum": 10, + "text": "His|strong=\"G2532\"* disciples|strong=\"G3101\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Then|strong=\"G3767\"* why|strong=\"G5101\"* do|strong=\"G5101\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* say|strong=\"G3004\"* that|strong=\"G3754\"* Elijah|strong=\"G2243\"* must|strong=\"G1163\"* come|strong=\"G2064\"* first|strong=\"G4413\"*?”" + }, + { + "verseNum": 11, + "text": "Jesus|strong=\"G3004\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Elijah|strong=\"G2243\"\\+w* \\+w indeed|strong=\"G2532\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w first|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* restore \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w*; *" + }, + { + "verseNum": 12, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w Elijah|strong=\"G2243\"\\+w* \\+w has|strong=\"G3748\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w already|strong=\"G2235\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w recognize|strong=\"G1921\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w whatever|strong=\"G3745\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w wanted|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w*. \\+w Even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3756\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w suffer|strong=\"G3958\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 13, + "text": "Then|strong=\"G5119\"* the|strong=\"G3588\"* disciples|strong=\"G3101\"* understood|strong=\"G4920\"* that|strong=\"G3754\"* he|strong=\"G3754\"* spoke|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"* of|strong=\"G4012\"* John|strong=\"G2491\"* the|strong=\"G3588\"* Baptizer." + }, + { + "verseNum": 14, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*, a|strong=\"G2532\"* man came|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, kneeling|strong=\"G2532\"* down|strong=\"G1120\"* to|strong=\"G4314\"* him|strong=\"G3588\"* and|strong=\"G2532\"* saying," + }, + { + "verseNum": 15, + "text": "“Lord|strong=\"G2962\"*, have|strong=\"G2532\"* mercy|strong=\"G1653\"* on|strong=\"G1519\"* my|strong=\"G1473\"* son|strong=\"G5207\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* is|strong=\"G3588\"* epileptic and|strong=\"G2532\"* suffers|strong=\"G3958\"* grievously|strong=\"G2560\"*; for|strong=\"G1063\"* he|strong=\"G2532\"* often|strong=\"G4178\"* falls|strong=\"G4098\"* into|strong=\"G1519\"* the|strong=\"G2532\"* fire|strong=\"G4442\"*, and|strong=\"G2532\"* often|strong=\"G4178\"* into|strong=\"G1519\"* the|strong=\"G2532\"* water|strong=\"G5204\"*." + }, + { + "verseNum": 16, + "text": "So|strong=\"G2532\"* I|strong=\"G2532\"* brought|strong=\"G4374\"* him|strong=\"G3588\"* to|strong=\"G2532\"* your|strong=\"G2532\"* disciples|strong=\"G3101\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* could|strong=\"G1410\"* not|strong=\"G3756\"* cure|strong=\"G2323\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 17, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “Faithless \\+w and|strong=\"G2532\"\\+w* \\+w perverse|strong=\"G1294\"\\+w* \\+w generation|strong=\"G1074\"\\+w*! \\+w How|strong=\"G2193\"\\+w* \\+w long|strong=\"G2193\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w*? \\+w How|strong=\"G2193\"\\+w* \\+w long|strong=\"G2193\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w bear|strong=\"G5342\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w*? \\+w Bring|strong=\"G5342\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 18, + "text": "Jesus|strong=\"G2424\"* rebuked|strong=\"G2008\"* the|strong=\"G2532\"* demon|strong=\"G1140\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G2532\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* boy|strong=\"G3816\"* was|strong=\"G3588\"* cured|strong=\"G2323\"* from|strong=\"G2532\"* that|strong=\"G3588\"* hour|strong=\"G5610\"*." + }, + { + "verseNum": 19, + "text": "Then|strong=\"G5119\"* the|strong=\"G1223\"* disciples|strong=\"G3101\"* came|strong=\"G4334\"* to|strong=\"G2596\"* Jesus|strong=\"G2424\"* privately|strong=\"G2398\"*, and|strong=\"G4334\"* said|strong=\"G3004\"*, “Why|strong=\"G5101\"* weren’t|strong=\"G3588\"* we|strong=\"G2249\"* able|strong=\"G1410\"* to|strong=\"G2596\"* cast|strong=\"G1544\"* it|strong=\"G5101\"* out|strong=\"G1544\"*?”" + }, + { + "verseNum": 20, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Because|strong=\"G1223\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w your|strong=\"G1223\"\\+w* unbelief. \\+w For|strong=\"G1063\"\\+w* most \\+w certainly|strong=\"G2192\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w grain|strong=\"G2848\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w mustard|strong=\"G4615\"\\+w* \\+w seed|strong=\"G2848\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w mountain|strong=\"G3735\"\\+w*, ‘\\+w Move|strong=\"G3327\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w here|strong=\"G1759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w there|strong=\"G1563\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w move|strong=\"G3327\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w nothing|strong=\"G3762\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* impossible \\+w for|strong=\"G1063\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "But this kind doesn’t go out except by prayer and fasting.” *+ 17:21 NU omits verse 21.*" + }, + { + "verseNum": 22, + "text": "While|strong=\"G1722\"* they|strong=\"G1161\"* were|strong=\"G3588\"* staying in|strong=\"G1722\"* Galilee|strong=\"G1056\"*, Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w The|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1519\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w about|strong=\"G3195\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G3195\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w men|strong=\"G3588\"\\+w*, *" + }, + { + "verseNum": 23, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* kill \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w third|strong=\"G5154\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w raised|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*.” *" + }, + { + "verseNum": 24, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G2064\"* to|strong=\"G1519\"* Capernaum|strong=\"G2584\"*, those|strong=\"G3588\"* who|strong=\"G3588\"* collected|strong=\"G2983\"* the|strong=\"G2532\"* didrachma coins+ 17:24 A didrachma is a Greek silver coin worth 2 drachmas, about as much as 2 Roman denarii, or about 2 days’ wages. It was commonly used to pay the half-shekel temple tax, because 2 drachmas were worth one half shekel of silver. A shekel is about 10 grams or about 0.35 ounces.* came|strong=\"G2064\"* to|strong=\"G1519\"* Peter|strong=\"G4074\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Doesn’t|strong=\"G3588\"* your|strong=\"G2532\"* teacher|strong=\"G1320\"* pay|strong=\"G5055\"* the|strong=\"G2532\"* didrachma?”" + }, + { + "verseNum": 25, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “Yes|strong=\"G3483\"*.”" + }, + { + "verseNum": 26, + "text": "Peter said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “From|strong=\"G3588\"* strangers.”" + }, + { + "verseNum": 27, + "text": "\\+w But|strong=\"G1161\"\\+w*, \\+w lest|strong=\"G3361\"\\+w* \\+w we|strong=\"G2532\"\\+w* \\+w cause|strong=\"G4624\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w go|strong=\"G4198\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sea|strong=\"G2281\"\\+w*, \\+w cast|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* hook, \\+w and|strong=\"G2532\"\\+w* \\+w take|strong=\"G2983\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w fish|strong=\"G2486\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w comes|strong=\"G2532\"\\+w* \\+w up|strong=\"G1519\"\\+w*. \\+w When|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* opened \\+w its|strong=\"G1325\"\\+w* \\+w mouth|strong=\"G4750\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w a|strong=\"G2532\"\\+w* stater coin.*+ 17:27 A stater is a silver coin equivalent to four Attic or two Alexandrian drachmas, or a Jewish shekel: just exactly enough to cover the half-shekel temple tax for two people. A shekel is about 10 grams or about 0.35 ounces, usually in the form of a silver coin.* \\+w Take|strong=\"G2983\"\\+w* \\+w that|strong=\"G2443\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"G1722\"* that|strong=\"G3588\"* hour|strong=\"G5610\"* the|strong=\"G1722\"* disciples|strong=\"G3101\"* came|strong=\"G4334\"* to|strong=\"G3004\"* Jesus|strong=\"G2424\"*, saying|strong=\"G3004\"*, “Who|strong=\"G5101\"* then|strong=\"G2424\"* is|strong=\"G1510\"* greatest|strong=\"G3173\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Kingdom of|strong=\"G1722\"* Heaven|strong=\"G3772\"*?”" + }, + { + "verseNum": 2, + "text": "Jesus|strong=\"G2532\"* called|strong=\"G4341\"* a|strong=\"G2532\"* little child|strong=\"G3813\"* to|strong=\"G2532\"* himself, and|strong=\"G2532\"* set|strong=\"G2476\"* him|strong=\"G2476\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2532\"* them|strong=\"G1722\"*" + }, + { + "verseNum": 3, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"*, “Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w unless|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w turn|strong=\"G4762\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w become|strong=\"G1096\"\\+w* \\+w as|strong=\"G5613\"\\+w* little \\+w children|strong=\"G3813\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G5613\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* Kingdom \\+w of|strong=\"G2532\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w Whoever|strong=\"G3748\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w humbles|strong=\"G5013\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w this|strong=\"G3778\"\\+w* little \\+w child|strong=\"G3813\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w greatest|strong=\"G3173\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G1722\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w Whoever|strong=\"G3739\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w such|strong=\"G5108\"\\+w* little \\+w child|strong=\"G3813\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w me|strong=\"G1473\"\\+w*, *" + }, + { + "verseNum": 6, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w causes|strong=\"G4624\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w ones|strong=\"G3398\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w better|strong=\"G4851\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w if|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* huge \\+w millstone|strong=\"G3458\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w hung|strong=\"G2910\"\\+w* \\+w around|strong=\"G4012\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w neck|strong=\"G5137\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w were|strong=\"G3588\"\\+w* sunk \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* depths \\+w of|strong=\"G4012\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sea|strong=\"G2281\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "“\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2064\"\\+w* \\+w the|strong=\"G1223\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w of|strong=\"G1223\"\\+w* occasions \\+w of|strong=\"G1223\"\\+w* \\+w stumbling|strong=\"G4625\"\\+w*! \\+w For|strong=\"G1063\"\\+w* \\+w it|strong=\"G1063\"\\+w* \\+w must|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w the|strong=\"G1223\"\\+w* occasions \\+w come|strong=\"G2064\"\\+w*, \\+w but|strong=\"G4133\"\\+w* \\+w woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2064\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w person|strong=\"G3739\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G1223\"\\+w* \\+w occasion|strong=\"G1223\"\\+w* \\+w comes|strong=\"G2064\"\\+w*! *" + }, + { + "verseNum": 8, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w hand|strong=\"G5495\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w foot|strong=\"G4228\"\\+w* \\+w causes|strong=\"G4624\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w cut|strong=\"G1581\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w off|strong=\"G1581\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*. \\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w better|strong=\"G2570\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w maimed|strong=\"G2948\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w crippled|strong=\"G2948\"\\+w*, \\+w rather|strong=\"G2228\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w having|strong=\"G2192\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w feet|strong=\"G4228\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* eternal \\+w fire|strong=\"G4442\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w eye|strong=\"G3788\"\\+w* \\+w causes|strong=\"G4624\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w pluck|strong=\"G1807\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*. \\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w better|strong=\"G2570\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w eye|strong=\"G3788\"\\+w*, \\+w rather|strong=\"G2228\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w having|strong=\"G2192\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w eyes|strong=\"G3788\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* Gehenna*+ 18:9 or, Hell* \\+w of|strong=\"G2532\"\\+w* \\+w fire|strong=\"G4442\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w See|strong=\"G3708\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w despise|strong=\"G2706\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w ones|strong=\"G3398\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w their|strong=\"G1722\"\\+w* angels \\+w always|strong=\"G3956\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w face|strong=\"G4383\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "For the Son of Man came to save that which was lost.*+ 18:11 NU omits verse 11.*" + }, + { + "verseNum": 12, + "text": "“\\+w What|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w think|strong=\"G1380\"\\+w*? \\+w If|strong=\"G1437\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w has|strong=\"G5101\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w hundred|strong=\"G1540\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w goes|strong=\"G4198\"\\+w* \\+w astray|strong=\"G4105\"\\+w*, doesn’\\+w t|strong=\"G3588\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w leave|strong=\"G4198\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w ninety-nine|strong=\"G1768\"\\+w*, \\+w go|strong=\"G4198\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w mountains|strong=\"G3735\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w has|strong=\"G5101\"\\+w* \\+w gone|strong=\"G4198\"\\+w* \\+w astray|strong=\"G4105\"\\+w*? *" + }, + { + "verseNum": 13, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w finds|strong=\"G2147\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w most|strong=\"G3123\"\\+w* \\+w certainly|strong=\"G1909\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w rejoices|strong=\"G5463\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w more|strong=\"G3123\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w ninety-nine|strong=\"G1768\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w gone|strong=\"G4105\"\\+w* \\+w astray|strong=\"G4105\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w Even|strong=\"G3779\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w it|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w of|strong=\"G3962\"\\+w* \\+w your|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G3962\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w ones|strong=\"G3398\"\\+w* \\+w should|strong=\"G3588\"\\+w* perish.*" + }, + { + "verseNum": 15, + "text": "“\\+w If|strong=\"G1437\"\\+w* \\+w your|strong=\"G1437\"\\+w* brother sins \\+w against|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w go|strong=\"G5217\"\\+w*, \\+w show|strong=\"G1651\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w fault|strong=\"G1651\"\\+w* \\+w between|strong=\"G3342\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w alone|strong=\"G3441\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w he|strong=\"G2532\"\\+w* listens \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w gained|strong=\"G2770\"\\+w* \\+w back|strong=\"G1519\"\\+w* \\+w your|strong=\"G1437\"\\+w* brother. *" + }, + { + "verseNum": 16, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w he|strong=\"G1161\"\\+w* doesn’t listen, \\+w take|strong=\"G3880\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w more|strong=\"G2089\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w mouth|strong=\"G4750\"\\+w* \\+w of|strong=\"G1909\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w witnesses|strong=\"G3144\"\\+w* \\+w every|strong=\"G3956\"\\+w* \\+w word|strong=\"G4487\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w established|strong=\"G2476\"\\+w*.*+ 18:16 Deuteronomy 19:15*" + }, + { + "verseNum": 17, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w refuses|strong=\"G3878\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w listen|strong=\"G3878\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w tell|strong=\"G3004\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w assembly|strong=\"G1577\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w refuses|strong=\"G3878\"\\+w* \\+w to|strong=\"G2532\"\\+w* hear \\+w the|strong=\"G2532\"\\+w* \\+w assembly|strong=\"G1577\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w let|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w as|strong=\"G5618\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w Gentile|strong=\"G1482\"\\+w* \\+w or|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w tax|strong=\"G5057\"\\+w* \\+w collector|strong=\"G5057\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "Most \\+w certainly|strong=\"G1909\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w whatever|strong=\"G3745\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w bind|strong=\"G1210\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w bound|strong=\"G1210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w whatever|strong=\"G3745\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w release|strong=\"G3089\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w released|strong=\"G3089\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w Again|strong=\"G3825\"\\+w*, assuredly \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w agree|strong=\"G4856\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w concerning|strong=\"G4012\"\\+w* \\+w anything|strong=\"G3956\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w ask|strong=\"G3004\"\\+w*, \\+w it|strong=\"G3754\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w where|strong=\"G3757\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w gathered|strong=\"G4863\"\\+w* \\+w together|strong=\"G4863\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w there|strong=\"G1563\"\\+w* \\+w I|strong=\"G1063\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w middle|strong=\"G3319\"\\+w* \\+w of|strong=\"G3686\"\\+w* \\+w them|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 21, + "text": "Then|strong=\"G2532\"* Peter|strong=\"G4074\"* came|strong=\"G4334\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, how|strong=\"G2193\"* often|strong=\"G4212\"* shall|strong=\"G2532\"* my|strong=\"G1473\"* brother sin against|strong=\"G1519\"* me|strong=\"G1473\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* forgive him|strong=\"G3588\"*? Until|strong=\"G2193\"* seven|strong=\"G2034\"* times|strong=\"G2034\"*?”" + }, + { + "verseNum": 22, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w I|strong=\"G2193\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w seven|strong=\"G2033\"\\+w* \\+w times|strong=\"G2034\"\\+w*, \\+w but|strong=\"G3588\"\\+w*, \\+w until|strong=\"G2193\"\\+w* \\+w seventy|strong=\"G1441\"\\+w* \\+w times|strong=\"G2034\"\\+w* \\+w seven|strong=\"G2033\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w Therefore|strong=\"G1223\"\\+w* \\+w the|strong=\"G1223\"\\+w* Kingdom \\+w of|strong=\"G3056\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w like|strong=\"G3666\"\\+w* \\+w a|strong=\"G3739\"\\+w* certain \\+w king|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w wanted|strong=\"G2309\"\\+w* \\+w to|strong=\"G2309\"\\+w* \\+w settle|strong=\"G4868\"\\+w* \\+w accounts|strong=\"G3056\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w his|strong=\"G1223\"\\+w* \\+w servants|strong=\"G1401\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w When|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* had begun \\+w to|strong=\"G1161\"\\+w* \\+w settle|strong=\"G4868\"\\+w*, \\+w one|strong=\"G1520\"\\+w* \\+w was|strong=\"G1161\"\\+w* \\+w brought|strong=\"G4374\"\\+w* \\+w to|strong=\"G1161\"\\+w* \\+w him|strong=\"G4374\"\\+w* \\+w who|strong=\"G1520\"\\+w* \\+w owed|strong=\"G3781\"\\+w* \\+w him|strong=\"G4374\"\\+w* \\+w ten|strong=\"G3463\"\\+w* \\+w thousand|strong=\"G3463\"\\+w* \\+w talents|strong=\"G5007\"\\+w*.*+ 18:24 Ten thousand talents (about 300 metric tons of silver) represents an extremely large sum of money, equivalent to about 60,000,000 denarii, where one denarius was typical of one day’s wages for agricultural labor.*" + }, + { + "verseNum": 25, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w because|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* couldn’\\+w t|strong=\"G3588\"\\+w* pay, \\+w his|strong=\"G3956\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w commanded|strong=\"G2753\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w sold|strong=\"G4097\"\\+w*, \\+w with|strong=\"G2532\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w wife|strong=\"G1135\"\\+w*, \\+w his|strong=\"G3956\"\\+w* \\+w children|strong=\"G5043\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w*, \\+w and|strong=\"G2532\"\\+w* payment \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w made|strong=\"G1161\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w down|strong=\"G4098\"\\+w* \\+w and|strong=\"G2532\"\\+w* knelt \\+w before|strong=\"G1909\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G3588\"\\+w*, \\+w have|strong=\"G2532\"\\+w* \\+w patience|strong=\"G3114\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* repay \\+w you|strong=\"G4771\"\\+w* \\+w all|strong=\"G3956\"\\+w*!’ *" + }, + { + "verseNum": 27, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w servant|strong=\"G1401\"\\+w*, \\+w being|strong=\"G2532\"\\+w* \\+w moved|strong=\"G4697\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w compassion|strong=\"G4697\"\\+w*, released \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* forgave \\+w him|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w debt|strong=\"G1156\"\\+w*.*" + }, + { + "verseNum": 28, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w fellow|strong=\"G4889\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w owed|strong=\"G3784\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w hundred|strong=\"G1540\"\\+w* \\+w denarii|strong=\"G1220\"\\+w*,*+ 18:28 100 denarii was about one sixtieth of a talent, or about 500 grams (1.1 pounds) of silver.* \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* grabbed \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w took|strong=\"G2902\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w by|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* throat, \\+w saying|strong=\"G3004\"\\+w*, ‘Pay \\+w me|strong=\"G3004\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w owe|strong=\"G3784\"\\+w*!’*" + }, + { + "verseNum": 29, + "text": "“\\+w So|strong=\"G3767\"\\+w* \\+w his|strong=\"G1909\"\\+w* \\+w fellow|strong=\"G4889\"\\+w* \\+w servant|strong=\"G4889\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w down|strong=\"G4098\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w his|strong=\"G1909\"\\+w* feet \\+w and|strong=\"G2532\"\\+w* \\+w begged|strong=\"G3870\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Have|strong=\"G2532\"\\+w* \\+w patience|strong=\"G3114\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* repay \\+w you|strong=\"G4771\"\\+w*!’ *" + }, + { + "verseNum": 30, + "text": "\\+w He|strong=\"G1161\"\\+w* \\+w would|strong=\"G2309\"\\+w* \\+w not|strong=\"G3756\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w went|strong=\"G3588\"\\+w* \\+w and|strong=\"G1161\"\\+w* \\+w cast|strong=\"G3756\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w prison|strong=\"G5438\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w should|strong=\"G3784\"\\+w* pay \\+w back|strong=\"G1519\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w due|strong=\"G3784\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w So|strong=\"G3767\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w fellow|strong=\"G4889\"\\+w* \\+w servants|strong=\"G4889\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w was|strong=\"G1096\"\\+w* \\+w done|strong=\"G1096\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w exceedingly|strong=\"G4970\"\\+w* \\+w sorry|strong=\"G3076\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* told \\+w their|strong=\"G1438\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w was|strong=\"G1096\"\\+w* \\+w done|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w Then|strong=\"G5119\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w called|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w in|strong=\"G3956\"\\+w* \\+w and|strong=\"G2962\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w You|strong=\"G4771\"\\+w* \\+w wicked|strong=\"G4190\"\\+w* \\+w servant|strong=\"G1401\"\\+w*! \\+w I|strong=\"G1473\"\\+w* forgave \\+w you|strong=\"G4771\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w debt|strong=\"G3782\"\\+w* \\+w because|strong=\"G1893\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w begged|strong=\"G3870\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "Shouldn’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w mercy|strong=\"G1653\"\\+w* \\+w on|strong=\"G1653\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w fellow|strong=\"G4889\"\\+w* \\+w servant|strong=\"G4889\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w mercy|strong=\"G1653\"\\+w* \\+w on|strong=\"G1653\"\\+w* \\+w you|strong=\"G4771\"\\+w*?’ *" + }, + { + "verseNum": 34, + "text": "\\+w His|strong=\"G3956\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w angry|strong=\"G3710\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* tormentors \\+w until|strong=\"G2193\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w should|strong=\"G3784\"\\+w* pay \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w due|strong=\"G3784\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w So|strong=\"G3779\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w heavenly|strong=\"G3770\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w each|strong=\"G1538\"\\+w* forgive \\+w your|strong=\"G1437\"\\+w* brother \\+w from|strong=\"G2532\"\\+w* \\+w your|strong=\"G1437\"\\+w* \\+w hearts|strong=\"G2588\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w his|strong=\"G4160\"\\+w* misdeeds.”*" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G3753\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* finished|strong=\"G5055\"* these|strong=\"G3778\"* words|strong=\"G3056\"*, he|strong=\"G2532\"* departed|strong=\"G3332\"* from|strong=\"G2064\"* Galilee|strong=\"G1056\"* and|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* borders|strong=\"G3725\"* of|strong=\"G3056\"* Judea|strong=\"G2449\"* beyond|strong=\"G4008\"* the|strong=\"G2532\"* Jordan|strong=\"G2446\"*." + }, + { + "verseNum": 2, + "text": "Great|strong=\"G4183\"* multitudes|strong=\"G3793\"* followed him|strong=\"G2532\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* healed|strong=\"G2323\"* them|strong=\"G1438\"* there|strong=\"G1563\"*." + }, + { + "verseNum": 3, + "text": "Pharisees|strong=\"G5330\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, testing|strong=\"G3985\"* him|strong=\"G3588\"* and|strong=\"G2532\"* saying|strong=\"G3004\"*, “Is|strong=\"G3588\"* it|strong=\"G2532\"* lawful|strong=\"G1832\"* for|strong=\"G2532\"* a|strong=\"G2532\"* man|strong=\"G3956\"* to|strong=\"G2532\"* divorce his|strong=\"G3956\"* wife|strong=\"G1135\"* for|strong=\"G2532\"* any|strong=\"G3956\"* reason?”" + }, + { + "verseNum": 4, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"*, “Haven’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3754\"\\+w* read \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* beginning \\+w made|strong=\"G4160\"\\+w* \\+w them|strong=\"G3588\"\\+w* male \\+w and|strong=\"G2532\"\\+w* \\+w female|strong=\"G2338\"\\+w*,*+ 19:4 Genesis 1:27*" + }, + { + "verseNum": 5, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w For|strong=\"G1519\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w cause|strong=\"G1752\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w man|strong=\"G3778\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w leave|strong=\"G2641\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w mother|strong=\"G3384\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w joined|strong=\"G2853\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w wife|strong=\"G1135\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w become|strong=\"G1510\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w flesh|strong=\"G4561\"\\+w*’?*+ 19:5 Genesis 2:24*" + }, + { + "verseNum": 6, + "text": "\\+w So|strong=\"G3767\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w more|strong=\"G3765\"\\+w* \\+w two|strong=\"G1417\"\\+w*, \\+w but|strong=\"G3361\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w flesh|strong=\"G4561\"\\+w*. \\+w What|strong=\"G3739\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w joined|strong=\"G4801\"\\+w* \\+w together|strong=\"G4801\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w let|strong=\"G5563\"\\+w* \\+w man|strong=\"G1520\"\\+w* tear apart.”*" + }, + { + "verseNum": 7, + "text": "They|strong=\"G2532\"* asked|strong=\"G3004\"* him|strong=\"G1325\"*, “Why|strong=\"G5101\"* then|strong=\"G3767\"* did|strong=\"G2532\"* Moses|strong=\"G3475\"* command|strong=\"G1781\"* us|strong=\"G1325\"* to|strong=\"G2532\"* give|strong=\"G1325\"* her|strong=\"G1325\"* a|strong=\"G2532\"* certificate of|strong=\"G2532\"* divorce and|strong=\"G2532\"* divorce her|strong=\"G1325\"*?”" + }, + { + "verseNum": 8, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w Moses|strong=\"G3475\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w hardness|strong=\"G4641\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w hearts|strong=\"G4641\"\\+w*, \\+w allowed|strong=\"G2010\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w to|strong=\"G4314\"\\+w* divorce \\+w your|strong=\"G3588\"\\+w* \\+w wives|strong=\"G1135\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w from|strong=\"G3756\"\\+w* \\+w the|strong=\"G1161\"\\+w* beginning \\+w it|strong=\"G3754\"\\+w* \\+w has|strong=\"G1096\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w been|strong=\"G1096\"\\+w* \\+w so|strong=\"G3779\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* divorces \\+w his|strong=\"G1909\"\\+w* \\+w wife|strong=\"G1135\"\\+w*, \\+w except|strong=\"G3361\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w sexual|strong=\"G4202\"\\+w* \\+w immorality|strong=\"G4202\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w marries|strong=\"G1060\"\\+w* \\+w another|strong=\"G3739\"\\+w*, \\+w commits|strong=\"G3429\"\\+w* \\+w adultery|strong=\"G3429\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w marries|strong=\"G1060\"\\+w* \\+w her|strong=\"G3754\"\\+w* \\+w when|strong=\"G1161\"\\+w* \\+w she|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* divorced \\+w commits|strong=\"G3429\"\\+w* \\+w adultery|strong=\"G3429\"\\+w*.”*" + }, + { + "verseNum": 10, + "text": "His|strong=\"G3326\"* disciples|strong=\"G3101\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “If|strong=\"G1487\"* this|strong=\"G3588\"* is|strong=\"G1510\"* the|strong=\"G3588\"* case|strong=\"G3588\"* of|strong=\"G3101\"* the|strong=\"G3588\"* man|strong=\"G3756\"* with|strong=\"G3326\"* his|strong=\"G3326\"* wife|strong=\"G1135\"*, it|strong=\"G1487\"* is|strong=\"G1510\"* not|strong=\"G3756\"* expedient|strong=\"G4851\"* to|strong=\"G3004\"* marry|strong=\"G1060\"*.”" + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Not|strong=\"G3756\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w men|strong=\"G3956\"\\+w* \\+w can|strong=\"G3004\"\\+w* \\+w receive|strong=\"G5562\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w saying|strong=\"G3004\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w given|strong=\"G1325\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w eunuchs|strong=\"G2135\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w born|strong=\"G1080\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w way|strong=\"G3779\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w mother|strong=\"G3384\"\\+w*’s \\+w womb|strong=\"G2836\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w eunuchs|strong=\"G2135\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w made|strong=\"G2134\"\\+w* \\+w eunuchs|strong=\"G2135\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w men|strong=\"G3588\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w eunuchs|strong=\"G2135\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w made|strong=\"G2134\"\\+w* \\+w themselves|strong=\"G1438\"\\+w* \\+w eunuchs|strong=\"G2135\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* Kingdom \\+w of|strong=\"G1537\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w*’s \\+w sake|strong=\"G1223\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w receive|strong=\"G5562\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w let|strong=\"G1510\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w receive|strong=\"G5562\"\\+w* \\+w it|strong=\"G2532\"\\+w*.”*" + }, + { + "verseNum": 13, + "text": "Then|strong=\"G2532\"* little children|strong=\"G3813\"* were|strong=\"G3588\"* brought|strong=\"G4374\"* to|strong=\"G2443\"* him|strong=\"G3588\"* that|strong=\"G2443\"* he|strong=\"G2532\"* should|strong=\"G3588\"* lay|strong=\"G2007\"* his|strong=\"G2007\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* them|strong=\"G3588\"* and|strong=\"G2532\"* pray|strong=\"G4336\"*; and|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* rebuked|strong=\"G2008\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “Allow \\+w the|strong=\"G2532\"\\+w* little \\+w children|strong=\"G3813\"\\+w*, \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w forbid|strong=\"G2967\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* Kingdom \\+w of|strong=\"G2532\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w belongs|strong=\"G1510\"\\+w* \\+w to|strong=\"G4314\"\\+w* ones \\+w like|strong=\"G5108\"\\+w* \\+w these|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* laid|strong=\"G2007\"* his|strong=\"G2007\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* departed|strong=\"G4198\"* from|strong=\"G2532\"* there|strong=\"G2532\"*." + }, + { + "verseNum": 16, + "text": "Behold|strong=\"G2400\"*, one|strong=\"G1520\"* came|strong=\"G4334\"* to|strong=\"G2443\"* him|strong=\"G3708\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “Good|strong=\"G5101\"* teacher|strong=\"G1320\"*, what|strong=\"G5101\"* good|strong=\"G5101\"* thing|strong=\"G1520\"* shall|strong=\"G2532\"* I|strong=\"G2532\"* do|strong=\"G4160\"*, that|strong=\"G2443\"* I|strong=\"G2532\"* may|strong=\"G2532\"* have|strong=\"G2192\"* eternal life|strong=\"G2222\"*?”" + }, + { + "verseNum": 17, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w call|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w good|strong=\"G5101\"\\+w*?*+ 19:17 So MT and TR. NU reads “Why do you ask me about what is good?”* \\+w No|strong=\"G1487\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w good|strong=\"G5101\"\\+w* \\+w but|strong=\"G1161\"\\+w* \\+w one|strong=\"G1520\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w*, \\+w God|strong=\"G3004\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w life|strong=\"G2222\"\\+w*, \\+w keep|strong=\"G5083\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w commandments|strong=\"G1785\"\\+w*.” *" + }, + { + "verseNum": 18, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Which|strong=\"G3588\"* ones|strong=\"G4169\"*?”" + }, + { + "verseNum": 19, + "text": "‘\\+w Honor|strong=\"G5091\"\\+w* \\+w your|strong=\"G5091\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G5091\"\\+w* \\+w mother|strong=\"G3384\"\\+w*.’*+ 19:19 Exodus 20:12-16; Deuteronomy 5:16-20* \\+w And|strong=\"G2532\"\\+w*, ‘\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* love \\+w your|strong=\"G5091\"\\+w* \\+w neighbor|strong=\"G4139\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w yourself|strong=\"G4572\"\\+w*.’”*+ 19:19 Leviticus 19:18*" + }, + { + "verseNum": 20, + "text": "The|strong=\"G3956\"* young|strong=\"G3495\"* man|strong=\"G3778\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “All|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"* I|strong=\"G3778\"* have|strong=\"G3956\"* observed|strong=\"G5442\"* from|strong=\"G3588\"* my|strong=\"G3956\"* youth. What|strong=\"G5101\"* do|strong=\"G5101\"* I|strong=\"G3778\"* still|strong=\"G2089\"* lack|strong=\"G5302\"*?”" + }, + { + "verseNum": 21, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G5346\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w perfect|strong=\"G5046\"\\+w*, \\+w go|strong=\"G5217\"\\+w*, \\+w sell|strong=\"G4453\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2192\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w poor|strong=\"G4434\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w come|strong=\"G1204\"\\+w*, follow \\+w me|strong=\"G1325\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G1161\"* young|strong=\"G3495\"* man|strong=\"G3495\"* heard this|strong=\"G3588\"*, he|strong=\"G1161\"* went|strong=\"G3588\"* away sad|strong=\"G3076\"*, for|strong=\"G1063\"* he|strong=\"G1161\"* was|strong=\"G1510\"* one|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2192\"* great|strong=\"G4183\"* possessions|strong=\"G2933\"*." + }, + { + "verseNum": 23, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, “Most certainly \\+w I|strong=\"G1161\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w a|strong=\"G1519\"\\+w* \\+w rich|strong=\"G4145\"\\+w* \\+w man|strong=\"G4145\"\\+w* \\+w will|strong=\"G3748\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* Kingdom \\+w of|strong=\"G2424\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w with|strong=\"G1519\"\\+w* difficulty. *" + }, + { + "verseNum": 24, + "text": "\\+w Again|strong=\"G3825\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w it|strong=\"G3754\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w easier|strong=\"G2123\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w camel|strong=\"G2574\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w go|strong=\"G1525\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w needle|strong=\"G4476\"\\+w*’s eye \\+w than|strong=\"G2228\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w rich|strong=\"G4145\"\\+w* \\+w man|strong=\"G4145\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom.”*" + }, + { + "verseNum": 25, + "text": "When|strong=\"G1161\"* the|strong=\"G1161\"* disciples|strong=\"G3101\"* heard it|strong=\"G1161\"*, they|strong=\"G1161\"* were|strong=\"G3588\"* exceedingly|strong=\"G4970\"* astonished|strong=\"G1605\"*, saying|strong=\"G3004\"*, “Who|strong=\"G5101\"* then|strong=\"G1161\"* can|strong=\"G1410\"* be|strong=\"G1410\"* saved|strong=\"G4982\"*?”" + }, + { + "verseNum": 26, + "text": "Looking|strong=\"G1689\"* at|strong=\"G3844\"* them|strong=\"G3588\"*, Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “\\+w With|strong=\"G3844\"\\+w* \\+w men|strong=\"G3956\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* impossible, \\+w but|strong=\"G1161\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w possible|strong=\"G1415\"\\+w*.”*" + }, + { + "verseNum": 27, + "text": "Then|strong=\"G2532\"* Peter|strong=\"G4074\"* answered|strong=\"G3004\"*, “Behold|strong=\"G2400\"*, we|strong=\"G2249\"* have|strong=\"G2532\"* left everything|strong=\"G3956\"* and|strong=\"G2532\"* followed you|strong=\"G4771\"*. What|strong=\"G5101\"* then|strong=\"G2532\"* will|strong=\"G5101\"* we|strong=\"G2249\"* have|strong=\"G2532\"*?”" + }, + { + "verseNum": 28, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Most \\+w certainly|strong=\"G1909\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* followed \\+w me|strong=\"G1473\"\\+w*, \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w regeneration|strong=\"G3824\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w sit|strong=\"G2521\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w throne|strong=\"G2362\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w his|strong=\"G1909\"\\+w* \\+w glory|strong=\"G1391\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w sit|strong=\"G2521\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w twelve|strong=\"G1427\"\\+w* \\+w thrones|strong=\"G2362\"\\+w*, \\+w judging|strong=\"G2919\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w twelve|strong=\"G1427\"\\+w* \\+w tribes|strong=\"G5443\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Israel|strong=\"G2474\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w Everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G3962\"\\+w* left \\+w houses|strong=\"G3614\"\\+w*, \\+w or|strong=\"G2228\"\\+w* brothers, \\+w or|strong=\"G2228\"\\+w* sisters, \\+w or|strong=\"G2228\"\\+w* \\+w father|strong=\"G3962\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w mother|strong=\"G3384\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w wife|strong=\"G1135\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w children|strong=\"G5043\"\\+w*, \\+w or|strong=\"G2228\"\\+w* lands, \\+w for|strong=\"G1752\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w name|strong=\"G3686\"\\+w*’s \\+w sake|strong=\"G1752\"\\+w*, \\+w will|strong=\"G2532\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w one|strong=\"G3956\"\\+w* \\+w hundred|strong=\"G1542\"\\+w* \\+w times|strong=\"G4179\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w inherit|strong=\"G2816\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w who|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w first|strong=\"G4413\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w who|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w last|strong=\"G2078\"\\+w*. *" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "“\\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G1519\"\\+w* Kingdom \\+w of|strong=\"G3588\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w man|strong=\"G1519\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w the|strong=\"G1519\"\\+w* master \\+w of|strong=\"G3588\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w household|strong=\"G3617\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w early|strong=\"G4404\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w morning|strong=\"G4404\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w hire|strong=\"G3409\"\\+w* \\+w laborers|strong=\"G2040\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w his|strong=\"G1519\"\\+w* vineyard. *" + }, + { + "verseNum": 2, + "text": "\\+w When|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w had|strong=\"G3588\"\\+w* \\+w agreed|strong=\"G4856\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w laborers|strong=\"G2040\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w denarius|strong=\"G1220\"\\+w**+ 20:2 A denarius is a silver Roman coin worth 1/25th of a Roman aureus. This was a common wage for a day of farm labor.* \\+w a|strong=\"G1519\"\\+w* \\+w day|strong=\"G2250\"\\+w*, \\+w he|strong=\"G1161\"\\+w* sent \\+w them|strong=\"G3588\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w his|strong=\"G1438\"\\+w* vineyard. *" + }, + { + "verseNum": 3, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w third|strong=\"G5154\"\\+w* \\+w hour|strong=\"G5610\"\\+w*,*+ 20:3 Time was measured from sunrise to sunset, so the third hour would be about 9:00 a.m.* \\+w and|strong=\"G2532\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w others|strong=\"G3588\"\\+w* \\+w standing|strong=\"G2476\"\\+w* idle \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* marketplace. *" + }, + { + "verseNum": 4, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w*, ‘\\+w You|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard, \\+w and|strong=\"G2532\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w right|strong=\"G1342\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w*.’ \\+w So|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w went|strong=\"G2532\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w way|strong=\"G5217\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w Again|strong=\"G3825\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sixth|strong=\"G1623\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w ninth|strong=\"G1766\"\\+w* \\+w hour|strong=\"G5610\"\\+w*,*+ 20:5 noon and 3:00 p.m.* \\+w and|strong=\"G2532\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w likewise|strong=\"G5615\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w About|strong=\"G4012\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w eleventh|strong=\"G1734\"\\+w* hour*+ 20:6 5:00 p.m.* \\+w he|strong=\"G2532\"\\+w* \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w others|strong=\"G3588\"\\+w* \\+w standing|strong=\"G2476\"\\+w* idle. \\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*, ‘\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w stand|strong=\"G2476\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w all|strong=\"G3650\"\\+w* \\+w day|strong=\"G2250\"\\+w* idle?’ *" + }, + { + "verseNum": 7, + "text": "“\\+w They|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Because|strong=\"G3754\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w has|strong=\"G3762\"\\+w* \\+w hired|strong=\"G3409\"\\+w* \\+w us|strong=\"G3004\"\\+w*.’*" + }, + { + "verseNum": 8, + "text": "“\\+w When|strong=\"G1161\"\\+w* \\+w evening|strong=\"G3798\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w come|strong=\"G1096\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w manager|strong=\"G2012\"\\+w*, ‘\\+w Call|strong=\"G2564\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w laborers|strong=\"G2040\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w pay|strong=\"G3408\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w wages|strong=\"G3408\"\\+w*, \\+w beginning|strong=\"G4413\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w*.’*" + }, + { + "verseNum": 9, + "text": "“\\+w When|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G3588\"\\+w* hired \\+w at|strong=\"G4012\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w eleventh|strong=\"G1734\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w came|strong=\"G2064\"\\+w*, \\+w they|strong=\"G2532\"\\+w* each \\+w received|strong=\"G2983\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w denarius|strong=\"G1220\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w When|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w came|strong=\"G2064\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w supposed|strong=\"G3543\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w more|strong=\"G4119\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w likewise|strong=\"G2532\"\\+w* each \\+w received|strong=\"G2983\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w denarius|strong=\"G1220\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w When|strong=\"G1161\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w it|strong=\"G1161\"\\+w*, \\+w they|strong=\"G1161\"\\+w* \\+w murmured|strong=\"G1111\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w the|strong=\"G1161\"\\+w* master \\+w of|strong=\"G2596\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w household|strong=\"G3617\"\\+w*, *" + }, + { + "verseNum": 12, + "text": "\\+w saying|strong=\"G3004\"\\+w*, ‘\\+w These|strong=\"G3778\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w spent|strong=\"G4160\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w hour|strong=\"G5610\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w equal|strong=\"G2470\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w us|strong=\"G3004\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* borne \\+w the|strong=\"G2532\"\\+w* burden \\+w of|strong=\"G2250\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w scorching|strong=\"G2742\"\\+w* \\+w heat|strong=\"G2742\"\\+w*!’ *" + }, + { + "verseNum": 13, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w answered|strong=\"G3004\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1520\"\\+w* \\+w them|strong=\"G3588\"\\+w*, ‘\\+w Friend|strong=\"G2083\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* doing \\+w you|strong=\"G4771\"\\+w* \\+w no|strong=\"G3756\"\\+w* wrong. Didn’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w agree|strong=\"G4856\"\\+w* \\+w with|strong=\"G3756\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w a|strong=\"G1161\"\\+w* \\+w denarius|strong=\"G1220\"\\+w*? *" + }, + { + "verseNum": 14, + "text": "\\+w Take|strong=\"G1161\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w yours|strong=\"G4771\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w your|strong=\"G4674\"\\+w* \\+w way|strong=\"G5217\"\\+w*. \\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w my|strong=\"G1325\"\\+w* \\+w desire|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w just|strong=\"G5613\"\\+w* \\+w as|strong=\"G5613\"\\+w* much \\+w as|strong=\"G5613\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "Isn’\\+w t|strong=\"G3588\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w lawful|strong=\"G1832\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w to|strong=\"G2309\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2309\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w own|strong=\"G1699\"\\+w*? \\+w Or|strong=\"G2228\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w your|strong=\"G4160\"\\+w* \\+w eye|strong=\"G3788\"\\+w* \\+w evil|strong=\"G4190\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w good|strong=\"G3756\"\\+w*?’ *" + }, + { + "verseNum": 16, + "text": "\\+w So|strong=\"G3779\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w first|strong=\"G4413\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w last|strong=\"G2078\"\\+w*. \\+w For|strong=\"G2532\"\\+w* many \\+w are|strong=\"G1510\"\\+w* \\+w called|strong=\"G3588\"\\+w*, \\+w but|strong=\"G2532\"\\+w* few \\+w are|strong=\"G1510\"\\+w* chosen.”*" + }, + { + "verseNum": 17, + "text": "As|strong=\"G1519\"* Jesus|strong=\"G2424\"* was|strong=\"G3588\"* going|strong=\"G2532\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*, he|strong=\"G2532\"* took|strong=\"G3880\"* the|strong=\"G1722\"* twelve|strong=\"G1427\"* disciples|strong=\"G3101\"* aside|strong=\"G3880\"*, and|strong=\"G2532\"* on|strong=\"G1722\"* the|strong=\"G1722\"* way|strong=\"G3598\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 18, + "text": "“\\+w Behold|strong=\"G2400\"\\+w*, \\+w we|strong=\"G2532\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w going|strong=\"G2532\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w Jerusalem|strong=\"G2414\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1519\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w chief|strong=\"G2532\"\\+w* priests \\+w and|strong=\"G2532\"\\+w* \\+w scribes|strong=\"G1122\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w condemn|strong=\"G2632\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w death|strong=\"G2288\"\\+w*, *" + }, + { + "verseNum": 19, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w hand|strong=\"G3860\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w over|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Gentiles|strong=\"G1484\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w mock|strong=\"G1702\"\\+w*, \\+w to|strong=\"G1519\"\\+w* \\+w scourge|strong=\"G3146\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w crucify|strong=\"G4717\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w third|strong=\"G5154\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w raised|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* mother|strong=\"G3384\"* of|strong=\"G5207\"* the|strong=\"G2532\"* sons|strong=\"G5207\"* of|strong=\"G5207\"* Zebedee|strong=\"G2199\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"* with|strong=\"G3326\"* her|strong=\"G3588\"* sons|strong=\"G5207\"*, kneeling|strong=\"G2532\"* and|strong=\"G2532\"* asking a|strong=\"G2532\"* certain|strong=\"G5100\"* thing|strong=\"G5100\"* of|strong=\"G5207\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2443\"* her|strong=\"G3588\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w want|strong=\"G2309\"\\+w*?”*" + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “\\+w You|strong=\"G3739\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w asking|strong=\"G3004\"\\+w*. \\+w Are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w about|strong=\"G3195\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w drink|strong=\"G4095\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w be|strong=\"G3756\"\\+w* baptized \\+w with|strong=\"G3756\"\\+w* \\+w the|strong=\"G1161\"\\+w* baptism \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* baptized \\+w with|strong=\"G3756\"\\+w*?”*" + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w You|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w indeed|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w cup|strong=\"G4221\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* baptized \\+w with|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* baptism \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* baptized \\+w with|strong=\"G1537\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w sit|strong=\"G2523\"\\+w* \\+w on|strong=\"G1537\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w hand|strong=\"G1188\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w on|strong=\"G1537\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w left|strong=\"G2176\"\\+w* \\+w hand|strong=\"G1188\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w mine|strong=\"G1699\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w prepared|strong=\"G2090\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w Father|strong=\"G3962\"\\+w*.”*" + }, + { + "verseNum": 24, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* ten|strong=\"G1176\"* heard it|strong=\"G2532\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* indignant with|strong=\"G2532\"* the|strong=\"G2532\"* two|strong=\"G1417\"* brothers." + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* summoned|strong=\"G4341\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w You|strong=\"G3754\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* rulers \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w* \\+w lord|strong=\"G3588\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w over|strong=\"G2634\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w ones|strong=\"G3748\"\\+w* \\+w exercise|strong=\"G2715\"\\+w* \\+w authority|strong=\"G2715\"\\+w* \\+w over|strong=\"G2634\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w It|strong=\"G1437\"\\+w* \\+w shall|strong=\"G3739\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*; \\+w but|strong=\"G1437\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w desires|strong=\"G2309\"\\+w* \\+w to|strong=\"G2309\"\\+w* \\+w become|strong=\"G1096\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w shall|strong=\"G3739\"\\+w* \\+w be|strong=\"G1096\"\\+w**+ 20:26 TR reads “let him be” instead of “shall be” * \\+w your|strong=\"G1437\"\\+w* \\+w servant|strong=\"G1249\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w Whoever|strong=\"G3739\"\\+w* \\+w desires|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w your|strong=\"G2532\"\\+w* bondservant, *" + }, + { + "verseNum": 28, + "text": "\\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G5618\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3756\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w served|strong=\"G1247\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w serve|strong=\"G1247\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w as|strong=\"G5618\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w ransom|strong=\"G3083\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w many|strong=\"G4183\"\\+w*.”*" + }, + { + "verseNum": 29, + "text": "As|strong=\"G2532\"* they|strong=\"G2532\"* went|strong=\"G2532\"* out|strong=\"G1607\"* from|strong=\"G2532\"* Jericho|strong=\"G2410\"*, a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* followed him|strong=\"G2532\"*." + }, + { + "verseNum": 30, + "text": "Behold|strong=\"G2400\"*, two|strong=\"G1417\"* blind|strong=\"G5185\"* men|strong=\"G5185\"* sitting|strong=\"G2521\"* by|strong=\"G3844\"* the|strong=\"G2532\"* road|strong=\"G3598\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* heard that|strong=\"G3754\"* Jesus|strong=\"G2424\"* was|strong=\"G3588\"* passing|strong=\"G3855\"* by|strong=\"G3844\"*, cried|strong=\"G2896\"* out|strong=\"G2896\"*, “Lord|strong=\"G2962\"*, have|strong=\"G2532\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* us|strong=\"G3004\"*, you|strong=\"G3754\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*!”" + }, + { + "verseNum": 31, + "text": "The|strong=\"G1161\"* multitude|strong=\"G3793\"* rebuked|strong=\"G2008\"* them|strong=\"G3588\"*, telling|strong=\"G3004\"* them|strong=\"G3588\"* that|strong=\"G2443\"* they|strong=\"G1161\"* should|strong=\"G3588\"* be|strong=\"G2443\"* quiet|strong=\"G4623\"*, but|strong=\"G1161\"* they|strong=\"G1161\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* even|strong=\"G1161\"* more|strong=\"G3173\"*, “Lord|strong=\"G2962\"*, have|strong=\"G1653\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* us|strong=\"G3004\"*, you|strong=\"G3004\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*!”" + }, + { + "verseNum": 32, + "text": "Jesus|strong=\"G2424\"* stood|strong=\"G2476\"* still|strong=\"G2476\"* and|strong=\"G2532\"* called|strong=\"G3004\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* asked|strong=\"G3004\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w me|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*?”*" + }, + { + "verseNum": 33, + "text": "They|strong=\"G3588\"* told|strong=\"G3004\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, that|strong=\"G2443\"* our|strong=\"G2962\"* eyes|strong=\"G3788\"* may|strong=\"G2443\"* be|strong=\"G2443\"* opened.”" + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G2424\"*, being|strong=\"G2532\"* moved|strong=\"G4697\"* with|strong=\"G2532\"* compassion|strong=\"G4697\"*, touched their|strong=\"G2532\"* eyes|strong=\"G3659\"*; and|strong=\"G2532\"* immediately|strong=\"G2112\"* their|strong=\"G2532\"* eyes|strong=\"G3659\"* received their|strong=\"G2532\"* sight|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* followed him|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G3753\"* they|strong=\"G2532\"* came|strong=\"G2064\"* near|strong=\"G1448\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"* and|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Bethsphage,+ 21:1 TR & NU read “Bethphage” instead of “Bethsphage”* to|strong=\"G1519\"* the|strong=\"G2532\"* Mount|strong=\"G3735\"* of|strong=\"G2532\"* Olives|strong=\"G1636\"*, then|strong=\"G2532\"* Jesus|strong=\"G2424\"* sent|strong=\"G2532\"* two|strong=\"G1417\"* disciples|strong=\"G3101\"*," + }, + { + "verseNum": 2, + "text": "saying|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Go|strong=\"G4198\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w village|strong=\"G2968\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w opposite|strong=\"G2713\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w donkey|strong=\"G3688\"\\+w* \\+w tied|strong=\"G1210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w colt|strong=\"G4454\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w her|strong=\"G1519\"\\+w*. \\+w Untie|strong=\"G3089\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w bring|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w anything|strong=\"G5100\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w The|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w needs|strong=\"G5532\"\\+w* \\+w them|strong=\"G3588\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* send \\+w them|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 4, + "text": "All|strong=\"G1161\"* this|strong=\"G3778\"* was|strong=\"G1096\"* done|strong=\"G1096\"* that|strong=\"G2443\"* it|strong=\"G1161\"* might|strong=\"G3778\"* be|strong=\"G1096\"* fulfilled|strong=\"G4137\"* which|strong=\"G3588\"* was|strong=\"G1096\"* spoken|strong=\"G3004\"* through|strong=\"G1223\"* the|strong=\"G1161\"* prophet|strong=\"G4396\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 5, + "text": "“Tell|strong=\"G3004\"* the|strong=\"G2532\"* daughter|strong=\"G2364\"* of|strong=\"G5207\"* Zion|strong=\"G4622\"*," + }, + { + "verseNum": 6, + "text": "The|strong=\"G2532\"* disciples|strong=\"G3101\"* went|strong=\"G4198\"* and|strong=\"G2532\"* did|strong=\"G4160\"* just|strong=\"G2531\"* as|strong=\"G2531\"* Jesus|strong=\"G2424\"* commanded|strong=\"G4367\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"G2532\"* brought|strong=\"G2532\"* the|strong=\"G2532\"* donkey|strong=\"G3688\"* and|strong=\"G2532\"* the|strong=\"G2532\"* colt|strong=\"G4454\"* and|strong=\"G2532\"* laid|strong=\"G2007\"* their|strong=\"G2532\"* clothes|strong=\"G2440\"* on|strong=\"G1909\"* them|strong=\"G3588\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* sat|strong=\"G2532\"* on|strong=\"G1909\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 8, + "text": "A|strong=\"G2532\"* very|strong=\"G4183\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* spread|strong=\"G4766\"* their|strong=\"G1438\"* clothes|strong=\"G2440\"* on|strong=\"G1722\"* the|strong=\"G1722\"* road|strong=\"G3598\"*. Others|strong=\"G3588\"* cut|strong=\"G2532\"* branches|strong=\"G2798\"* from|strong=\"G2532\"* the|strong=\"G1722\"* trees|strong=\"G1186\"* and|strong=\"G2532\"* spread|strong=\"G4766\"* them|strong=\"G3588\"* on|strong=\"G1722\"* the|strong=\"G1722\"* road|strong=\"G3598\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"G1722\"* multitudes|strong=\"G3793\"* who|strong=\"G3588\"* went|strong=\"G2064\"* in|strong=\"G1722\"* front|strong=\"G4254\"* of|strong=\"G5207\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* followed, kept|strong=\"G2532\"* shouting|strong=\"G2896\"*, “Hosanna|strong=\"G5614\"*+ 21:9 “Hosanna” means “save us” or “help us, we pray”.* to|strong=\"G2532\"* the|strong=\"G1722\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*! Blessed|strong=\"G2127\"* is|strong=\"G3588\"* he|strong=\"G2532\"* who|strong=\"G3588\"* comes|strong=\"G2064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G5207\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*! Hosanna|strong=\"G5614\"* in|strong=\"G1722\"* the|strong=\"G1722\"* highest|strong=\"G5310\"*!” + 21:9 Psalms 118:26*" + }, + { + "verseNum": 10, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G1525\"* into|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*, all|strong=\"G3956\"* the|strong=\"G2532\"* city|strong=\"G4172\"* was|strong=\"G1510\"* stirred|strong=\"G2532\"* up|strong=\"G1519\"*, saying|strong=\"G3004\"*, “Who|strong=\"G5101\"* is|strong=\"G1510\"* this|strong=\"G3778\"*?”" + }, + { + "verseNum": 11, + "text": "The|strong=\"G1161\"* multitudes|strong=\"G3793\"* said|strong=\"G3004\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G1161\"* prophet|strong=\"G4396\"*, Jesus|strong=\"G2424\"*, from|strong=\"G3588\"* Nazareth|strong=\"G3478\"* of|strong=\"G2424\"* Galilee|strong=\"G1056\"*.”" + }, + { + "verseNum": 12, + "text": "Jesus|strong=\"G2424\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* drove|strong=\"G1544\"* out|strong=\"G1544\"* all|strong=\"G3956\"* of|strong=\"G2316\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sold|strong=\"G4453\"* and|strong=\"G2532\"* bought in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, and|strong=\"G2532\"* overthrew|strong=\"G2690\"* the|strong=\"G1722\"* money|strong=\"G2855\"* changers|strong=\"G2855\"*’ tables|strong=\"G5132\"* and|strong=\"G2532\"* the|strong=\"G1722\"* seats|strong=\"G2515\"* of|strong=\"G2316\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sold|strong=\"G4453\"* the|strong=\"G1722\"* doves|strong=\"G4058\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w My|strong=\"G1473\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w prayer|strong=\"G4335\"\\+w*,’*+ 21:13 Isaiah 56:7* \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w den|strong=\"G4693\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w robbers|strong=\"G3027\"\\+w*!”*+ 21:13 Jeremiah 7:11*" + }, + { + "verseNum": 14, + "text": "The|strong=\"G1722\"* lame|strong=\"G5560\"* and|strong=\"G2532\"* the|strong=\"G1722\"* blind|strong=\"G5185\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* healed|strong=\"G2323\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G1722\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G1722\"* scribes|strong=\"G1122\"* saw|strong=\"G3708\"* the|strong=\"G1722\"* wonderful|strong=\"G2297\"* things|strong=\"G3588\"* that|strong=\"G3739\"* he|strong=\"G2532\"* did|strong=\"G4160\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* children|strong=\"G5207\"* who|strong=\"G3739\"* were|strong=\"G3588\"* crying|strong=\"G2896\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* and|strong=\"G2532\"* saying|strong=\"G3004\"*, “Hosanna|strong=\"G5614\"* to|strong=\"G2532\"* the|strong=\"G1722\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*!” they|strong=\"G2532\"* were|strong=\"G3588\"* indignant," + }, + { + "verseNum": 16, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Do|strong=\"G5101\"* you|strong=\"G3754\"* hear|strong=\"G5101\"* what|strong=\"G5101\"* these|strong=\"G3778\"* are|strong=\"G3588\"* saying|strong=\"G3004\"*?”" + }, + { + "verseNum": 17, + "text": "He|strong=\"G2532\"* left|strong=\"G2641\"* them|strong=\"G3588\"* and|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"* to|strong=\"G1519\"* Bethany, and|strong=\"G2532\"* camped there|strong=\"G1563\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"G1161\"* in|strong=\"G1519\"* the|strong=\"G1519\"* morning|strong=\"G4404\"*, as|strong=\"G1519\"* he|strong=\"G1161\"* returned|strong=\"G1877\"* to|strong=\"G1519\"* the|strong=\"G1519\"* city|strong=\"G4172\"*, he|strong=\"G1161\"* was|strong=\"G3588\"* hungry|strong=\"G3983\"*." + }, + { + "verseNum": 19, + "text": "Seeing|strong=\"G3708\"* a|strong=\"G1096\"* fig|strong=\"G4808\"* tree|strong=\"G4808\"* by|strong=\"G1722\"* the|strong=\"G1722\"* road|strong=\"G3598\"*, he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* it|strong=\"G2532\"* and|strong=\"G2532\"* found|strong=\"G2147\"* nothing|strong=\"G3762\"* on|strong=\"G1909\"* it|strong=\"G2532\"* but|strong=\"G2532\"* leaves|strong=\"G5444\"*. He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* it|strong=\"G2532\"*, “\\+w Let|strong=\"G1096\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w forever|strong=\"G1519\"\\+w*!” *" + }, + { + "verseNum": 20, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* saw|strong=\"G3708\"* it|strong=\"G2532\"*, they|strong=\"G2532\"* marveled|strong=\"G2296\"*, saying|strong=\"G3004\"*, “How|strong=\"G4459\"* did|strong=\"G2532\"* the|strong=\"G2532\"* fig|strong=\"G4808\"* tree|strong=\"G4808\"* immediately|strong=\"G3916\"* wither|strong=\"G3583\"* away|strong=\"G3583\"*?”" + }, + { + "verseNum": 21, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “Most \\+w certainly|strong=\"G2192\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w doubt|strong=\"G1252\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w only|strong=\"G3440\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w was|strong=\"G1096\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fig|strong=\"G4808\"\\+w* \\+w tree|strong=\"G4808\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w mountain|strong=\"G3735\"\\+w*, ‘\\+w Be|strong=\"G1096\"\\+w* \\+w taken|strong=\"G1096\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sea|strong=\"G2281\"\\+w*,’ \\+w it|strong=\"G2532\"\\+w* \\+w would|strong=\"G1096\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w done|strong=\"G4160\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w All|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w*, \\+w whatever|strong=\"G3745\"\\+w* \\+w you|strong=\"G1722\"\\+w* ask \\+w in|strong=\"G1722\"\\+w* \\+w prayer|strong=\"G4335\"\\+w*, \\+w believing|strong=\"G4100\"\\+w*, \\+w you|strong=\"G1722\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w receive|strong=\"G2983\"\\+w*.”*" + }, + { + "verseNum": 23, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G1722\"* temple|strong=\"G2411\"*, the|strong=\"G1722\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G1722\"* elders|strong=\"G4245\"* of|strong=\"G2532\"* the|strong=\"G1722\"* people|strong=\"G2992\"* came|strong=\"G2064\"* to|strong=\"G1519\"* him|strong=\"G3588\"* as|strong=\"G1519\"* he|strong=\"G2532\"* was|strong=\"G3588\"* teaching|strong=\"G1321\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “By|strong=\"G1722\"* what|strong=\"G5101\"* authority|strong=\"G1849\"* do|strong=\"G4160\"* you|strong=\"G4771\"* do|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3778\"*? Who|strong=\"G5101\"* gave|strong=\"G1325\"* you|strong=\"G4771\"* this|strong=\"G3778\"* authority|strong=\"G1849\"*?”" + }, + { + "verseNum": 24, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w also|strong=\"G2504\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w ask|strong=\"G2065\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w question|strong=\"G2065\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w likewise|strong=\"G1161\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w The|strong=\"G1722\"\\+w* baptism \\+w of|strong=\"G1537\"\\+w* \\+w John|strong=\"G2491\"\\+w*, \\+w where|strong=\"G4159\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w from|strong=\"G1537\"\\+w*? \\+w From|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w men|strong=\"G3588\"\\+w*?” *" + }, + { + "verseNum": 26, + "text": "But|strong=\"G1161\"* if|strong=\"G1437\"* we|strong=\"G2249\"* say|strong=\"G3004\"*, ‘From|strong=\"G1537\"* men|strong=\"G3956\"*,’ we|strong=\"G2249\"* fear|strong=\"G5399\"* the|strong=\"G3956\"* multitude|strong=\"G3793\"*, for|strong=\"G1063\"* all|strong=\"G3956\"* hold|strong=\"G2192\"* John|strong=\"G2491\"* as|strong=\"G5613\"* a|strong=\"G2192\"* prophet|strong=\"G4396\"*.”" + }, + { + "verseNum": 27, + "text": "They|strong=\"G2532\"* answered|strong=\"G3004\"* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “We|strong=\"G2532\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"*.”" + }, + { + "verseNum": 28, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w think|strong=\"G1380\"\\+w*? \\+w A|strong=\"G2192\"\\+w* \\+w man|strong=\"G4413\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w sons|strong=\"G5043\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w came|strong=\"G4334\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w first|strong=\"G4413\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w Son|strong=\"G5043\"\\+w*, \\+w go|strong=\"G5217\"\\+w* \\+w work|strong=\"G2038\"\\+w* \\+w today|strong=\"G4594\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* vineyard.’ *" + }, + { + "verseNum": 29, + "text": "\\+w He|strong=\"G1161\"\\+w* \\+w answered|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1161\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w not|strong=\"G3756\"\\+w*,’ \\+w but|strong=\"G1161\"\\+w* \\+w afterward|strong=\"G5305\"\\+w* \\+w he|strong=\"G1161\"\\+w* changed \\+w his|strong=\"G3588\"\\+w* \\+w mind|strong=\"G3338\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w went|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w came|strong=\"G4334\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w second|strong=\"G1208\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w same|strong=\"G5615\"\\+w* \\+w thing|strong=\"G5615\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w answered|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w*’m \\+w going|strong=\"G2532\"\\+w*, \\+w sir|strong=\"G2962\"\\+w*,’ \\+w but|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w go|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w Which|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w father|strong=\"G3962\"\\+w*?”*" + }, + { + "verseNum": 32, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w John|strong=\"G2491\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w way|strong=\"G3598\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w righteousness|strong=\"G1343\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w him|strong=\"G3588\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w tax|strong=\"G5057\"\\+w* \\+w collectors|strong=\"G5057\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w prostitutes|strong=\"G4204\"\\+w* \\+w believed|strong=\"G4100\"\\+w* \\+w him|strong=\"G3588\"\\+w*. \\+w When|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w you|strong=\"G5210\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w repent|strong=\"G3338\"\\+w* \\+w afterward|strong=\"G5305\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w might|strong=\"G2532\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "“Hear \\+w another|strong=\"G1722\"\\+w* \\+w parable|strong=\"G3850\"\\+w*. \\+w There|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* man \\+w who|strong=\"G3748\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* master \\+w of|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w household|strong=\"G3617\"\\+w* \\+w who|strong=\"G3748\"\\+w* \\+w planted|strong=\"G5452\"\\+w* \\+w a|strong=\"G2532\"\\+w* vineyard, \\+w set|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* hedge \\+w about|strong=\"G1722\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w dug|strong=\"G3736\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w wine|strong=\"G3025\"\\+w* \\+w press|strong=\"G3025\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w built|strong=\"G3618\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w tower|strong=\"G4444\"\\+w*, \\+w leased|strong=\"G1554\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* farmers, \\+w and|strong=\"G2532\"\\+w* \\+w went|strong=\"G2532\"\\+w* \\+w into|strong=\"G1722\"\\+w* \\+w another|strong=\"G1722\"\\+w* country. *" + }, + { + "verseNum": 34, + "text": "\\+w When|strong=\"G3753\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w season|strong=\"G2540\"\\+w* \\+w for|strong=\"G4314\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w came|strong=\"G3588\"\\+w* \\+w near|strong=\"G1448\"\\+w*, \\+w he|strong=\"G1161\"\\+w* sent \\+w his|strong=\"G2983\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G1161\"\\+w* farmers \\+w to|strong=\"G4314\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w his|strong=\"G2983\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w The|strong=\"G2532\"\\+w* farmers \\+w took|strong=\"G2983\"\\+w* \\+w his|strong=\"G2983\"\\+w* \\+w servants|strong=\"G1401\"\\+w*, \\+w beat|strong=\"G1194\"\\+w* \\+w one|strong=\"G3739\"\\+w*, killed \\+w another|strong=\"G3739\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w stoned|strong=\"G3036\"\\+w* \\+w another|strong=\"G3739\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w Again|strong=\"G3825\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w other|strong=\"G4183\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w treated|strong=\"G4160\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w same|strong=\"G5615\"\\+w* \\+w way|strong=\"G5615\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w afterward|strong=\"G5305\"\\+w* \\+w he|strong=\"G1161\"\\+w* sent \\+w to|strong=\"G4314\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w son|strong=\"G5207\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w They|strong=\"G1161\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w respect|strong=\"G1788\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w son|strong=\"G5207\"\\+w*.’ *" + }, + { + "verseNum": 38, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G1722\"\\+w* farmers, \\+w when|strong=\"G1161\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w son|strong=\"G5207\"\\+w*, \\+w said|strong=\"G3004\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w themselves|strong=\"G1438\"\\+w*, ‘\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w heir|strong=\"G2818\"\\+w*. \\+w Come|strong=\"G1205\"\\+w*, \\+w let|strong=\"G1161\"\\+w*’\\+w s|strong=\"G2192\"\\+w* kill \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w seize|strong=\"G2192\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w inheritance|strong=\"G2817\"\\+w*.’ *" + }, + { + "verseNum": 39, + "text": "\\+w So|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w threw|strong=\"G1544\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard, \\+w then|strong=\"G2532\"\\+w* killed \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 40, + "text": "\\+w When|strong=\"G3752\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2962\"\\+w* \\+w the|strong=\"G3588\"\\+w* vineyard \\+w comes|strong=\"G2064\"\\+w*, \\+w what|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w to|strong=\"G2064\"\\+w* \\+w those|strong=\"G3588\"\\+w* farmers?”*" + }, + { + "verseNum": 41, + "text": "They|strong=\"G2532\"* told|strong=\"G3004\"* him|strong=\"G3588\"*, “He|strong=\"G2532\"* will|strong=\"G2532\"* miserably|strong=\"G2560\"* destroy those|strong=\"G3588\"* miserable men|strong=\"G3588\"*, and|strong=\"G2532\"* will|strong=\"G2532\"* lease out|strong=\"G2532\"* the|strong=\"G1722\"* vineyard to|strong=\"G2532\"* other|strong=\"G1438\"* farmers who|strong=\"G3588\"* will|strong=\"G2532\"* give|strong=\"G3004\"* him|strong=\"G3588\"* the|strong=\"G1722\"* fruit|strong=\"G2590\"* in|strong=\"G1722\"* its season|strong=\"G2540\"*.”" + }, + { + "verseNum": 42, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Did|strong=\"G2532\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w never|strong=\"G3763\"\\+w* read \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Scriptures|strong=\"G1124\"\\+w*, *" + }, + { + "verseNum": 43, + "text": "“\\+w Therefore|strong=\"G1223\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w will|strong=\"G2316\"\\+w* \\+w be|strong=\"G2532\"\\+w* taken away \\+w from|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w nation|strong=\"G1484\"\\+w* \\+w producing|strong=\"G4160\"\\+w* \\+w its|strong=\"G1325\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*. *" + }, + { + "verseNum": 44, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G2532\"\\+w* falls \\+w on|strong=\"G1909\"\\+w* \\+w this|strong=\"G2532\"\\+w* \\+w stone|strong=\"G3037\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* broken \\+w to|strong=\"G2532\"\\+w* pieces, \\+w but|strong=\"G1161\"\\+w* \\+w on|strong=\"G1909\"\\+w* whomever \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* fall, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w scatter|strong=\"G3039\"\\+w* \\+w him|strong=\"G2532\"\\+w* \\+w as|strong=\"G1161\"\\+w* \\+w dust|strong=\"G3039\"\\+w*.”*" + }, + { + "verseNum": 45, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* heard|strong=\"G1097\"* his|strong=\"G4012\"* parables|strong=\"G3850\"*, they|strong=\"G2532\"* perceived|strong=\"G1097\"* that|strong=\"G3754\"* he|strong=\"G2532\"* spoke|strong=\"G3004\"* about|strong=\"G4012\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 46, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* sought|strong=\"G2212\"* to|strong=\"G1519\"* seize|strong=\"G2902\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* feared|strong=\"G5399\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"*, because|strong=\"G1893\"* they|strong=\"G2532\"* considered|strong=\"G2192\"* him|strong=\"G3588\"* to|strong=\"G1519\"* be|strong=\"G2532\"* a|strong=\"G2192\"* prophet|strong=\"G4396\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* and|strong=\"G2532\"* spoke|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"* again|strong=\"G3825\"* in|strong=\"G1722\"* parables|strong=\"G3850\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 2, + "text": "“\\+w The|strong=\"G3588\"\\+w* Kingdom \\+w of|strong=\"G5207\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w like|strong=\"G3666\"\\+w* \\+w a|strong=\"G4160\"\\+w* certain \\+w king|strong=\"G3588\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w a|strong=\"G4160\"\\+w* \\+w wedding|strong=\"G1062\"\\+w* \\+w feast|strong=\"G1062\"\\+w* \\+w for|strong=\"G4160\"\\+w* \\+w his|strong=\"G4160\"\\+w* \\+w son|strong=\"G5207\"\\+w*, *" + }, + { + "verseNum": 3, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w call|strong=\"G2564\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w invited|strong=\"G2564\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wedding|strong=\"G1062\"\\+w* \\+w feast|strong=\"G1062\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w would|strong=\"G2309\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w come|strong=\"G2064\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w Again|strong=\"G3825\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w other|strong=\"G3825\"\\+w* \\+w servants|strong=\"G1401\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Tell|strong=\"G3004\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w invited|strong=\"G2564\"\\+w*, “\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w prepared|strong=\"G2090\"\\+w* \\+w my|strong=\"G3708\"\\+w* dinner. \\+w My|strong=\"G3708\"\\+w* cattle \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w fatlings|strong=\"G4619\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w killed|strong=\"G2380\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w ready|strong=\"G2092\"\\+w*. \\+w Come|strong=\"G1205\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wedding|strong=\"G1062\"\\+w* \\+w feast|strong=\"G1062\"\\+w*!”’ *" + }, + { + "verseNum": 5, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w made|strong=\"G1161\"\\+w* light \\+w of|strong=\"G1909\"\\+w* \\+w it|strong=\"G1161\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w went|strong=\"G3588\"\\+w* \\+w their|strong=\"G1519\"\\+w* ways, \\+w one|strong=\"G3739\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w own|strong=\"G2398\"\\+w* farm, \\+w another|strong=\"G3739\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w merchandise|strong=\"G1711\"\\+w*; *" + }, + { + "verseNum": 6, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rest|strong=\"G3062\"\\+w* grabbed \\+w his|strong=\"G2532\"\\+w* \\+w servants|strong=\"G1401\"\\+w*, treated \\+w them|strong=\"G3588\"\\+w* shamefully, \\+w and|strong=\"G2532\"\\+w* killed \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w When|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w king|strong=\"G3588\"\\+w* heard \\+w that|strong=\"G3588\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w angry|strong=\"G3710\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w armies|strong=\"G4753\"\\+w*, destroyed \\+w those|strong=\"G3588\"\\+w* \\+w murderers|strong=\"G5406\"\\+w*, \\+w and|strong=\"G2532\"\\+w* burned \\+w their|strong=\"G2532\"\\+w* \\+w city|strong=\"G4172\"\\+w*.*" + }, + { + "verseNum": 8, + "text": "“\\+w Then|strong=\"G5119\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w his|strong=\"G2564\"\\+w* \\+w servants|strong=\"G1401\"\\+w*, ‘\\+w The|strong=\"G1161\"\\+w* \\+w wedding|strong=\"G1062\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w ready|strong=\"G2092\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w invited|strong=\"G2564\"\\+w* weren’\\+w t|strong=\"G3588\"\\+w* worthy. *" + }, + { + "verseNum": 9, + "text": "\\+w Go|strong=\"G4198\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* intersections \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w highways|strong=\"G3598\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w as|strong=\"G3745\"\\+w* \\+w many|strong=\"G3745\"\\+w* \\+w as|strong=\"G3745\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w find|strong=\"G2147\"\\+w*, \\+w invite|strong=\"G2564\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wedding|strong=\"G1062\"\\+w* \\+w feast|strong=\"G1062\"\\+w*.’ *" + }, + { + "verseNum": 10, + "text": "\\+w Those|strong=\"G3588\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w highways|strong=\"G3598\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gathered|strong=\"G4863\"\\+w* \\+w together|strong=\"G4863\"\\+w* \\+w as|strong=\"G3745\"\\+w* \\+w many|strong=\"G3745\"\\+w* \\+w as|strong=\"G3745\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w*, \\+w both|strong=\"G2532\"\\+w* \\+w bad|strong=\"G4190\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w good|strong=\"G3956\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w wedding|strong=\"G1062\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w filled|strong=\"G4130\"\\+w* \\+w with|strong=\"G2532\"\\+w* guests. *" + }, + { + "verseNum": 11, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w king|strong=\"G3588\"\\+w* \\+w came|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w to|strong=\"G3756\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G1161\"\\+w* guests, \\+w he|strong=\"G1161\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w there|strong=\"G1563\"\\+w* \\+w a|strong=\"G3708\"\\+w* \\+w man|strong=\"G3756\"\\+w* \\+w who|strong=\"G3588\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G3588\"\\+w* \\+w on|strong=\"G1746\"\\+w* \\+w wedding|strong=\"G1062\"\\+w* \\+w clothing|strong=\"G1742\"\\+w*, *" + }, + { + "verseNum": 12, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Friend|strong=\"G2083\"\\+w*, \\+w how|strong=\"G4459\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w come|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w not|strong=\"G3361\"\\+w* wearing \\+w wedding|strong=\"G1062\"\\+w* \\+w clothing|strong=\"G1742\"\\+w*?’ \\+w He|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w speechless|strong=\"G5392\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w king|strong=\"G3588\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w servants|strong=\"G1249\"\\+w*, ‘\\+w Bind|strong=\"G1210\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w hand|strong=\"G5495\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w foot|strong=\"G4228\"\\+w*, \\+w take|strong=\"G1544\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w away|strong=\"G1544\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w throw|strong=\"G1544\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w outer|strong=\"G1857\"\\+w* \\+w darkness|strong=\"G4655\"\\+w*. \\+w That|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w where|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w weeping|strong=\"G2805\"\\+w* \\+w and|strong=\"G2532\"\\+w* grinding \\+w of|strong=\"G2532\"\\+w* \\+w teeth|strong=\"G3599\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w*.’ *" + }, + { + "verseNum": 14, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w called|strong=\"G2822\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w few|strong=\"G3641\"\\+w* \\+w chosen|strong=\"G1588\"\\+w*.”*" + }, + { + "verseNum": 15, + "text": "Then|strong=\"G5119\"* the|strong=\"G1722\"* Pharisees|strong=\"G5330\"* went|strong=\"G4198\"* and|strong=\"G4198\"* took|strong=\"G2983\"* counsel|strong=\"G4824\"* how|strong=\"G3704\"* they|strong=\"G3588\"* might entrap him|strong=\"G3588\"* in|strong=\"G1722\"* his|strong=\"G1722\"* talk|strong=\"G3056\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"G2532\"* sent|strong=\"G2316\"* their|strong=\"G2532\"* disciples|strong=\"G3101\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, along|strong=\"G2532\"* with|strong=\"G3326\"* the|strong=\"G1722\"* Herodians|strong=\"G2265\"*, saying|strong=\"G3004\"*, “Teacher|strong=\"G1320\"*, we|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G4771\"* are|strong=\"G1510\"* honest, and|strong=\"G2532\"* teach|strong=\"G1321\"* the|strong=\"G1722\"* way|strong=\"G3598\"* of|strong=\"G4012\"* God|strong=\"G2316\"* in|strong=\"G1722\"* truth, no|strong=\"G3756\"* matter whom|strong=\"G3588\"* you|strong=\"G4771\"* teach|strong=\"G1321\"*; for|strong=\"G1063\"* you|strong=\"G4771\"* aren’t|strong=\"G3588\"* partial to|strong=\"G1519\"* anyone|strong=\"G3762\"*." + }, + { + "verseNum": 17, + "text": "Tell|strong=\"G3004\"* us|strong=\"G1325\"* therefore|strong=\"G3767\"*, what|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G4771\"* think|strong=\"G1380\"*? Is|strong=\"G5101\"* it|strong=\"G5101\"* lawful|strong=\"G1832\"* to|strong=\"G3004\"* pay|strong=\"G1325\"* taxes|strong=\"G2778\"* to|strong=\"G3004\"* Caesar|strong=\"G2541\"*, or|strong=\"G2228\"* not|strong=\"G3756\"*?”" + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* perceived|strong=\"G1097\"* their|strong=\"G3588\"* wickedness|strong=\"G4189\"*, and|strong=\"G1161\"* said|strong=\"G3004\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w test|strong=\"G3985\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w you|strong=\"G3004\"\\+w* \\+w hypocrites|strong=\"G5273\"\\+w*? *" + }, + { + "verseNum": 19, + "text": "\\+w Show|strong=\"G1925\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w the|strong=\"G1161\"\\+w* tax \\+w money|strong=\"G3546\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "He|strong=\"G2532\"* asked|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Whose|strong=\"G5101\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w image|strong=\"G1504\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w inscription|strong=\"G1923\"\\+w*?”*" + }, + { + "verseNum": 21, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Caesar|strong=\"G2541\"*’s.”" + }, + { + "verseNum": 22, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* heard it|strong=\"G2532\"*, they|strong=\"G2532\"* marveled|strong=\"G2296\"*, and|strong=\"G2532\"* left him|strong=\"G2532\"* and|strong=\"G2532\"* went|strong=\"G2532\"* away." + }, + { + "verseNum": 23, + "text": "On|strong=\"G1722\"* that|strong=\"G3588\"* day|strong=\"G2250\"* Sadducees|strong=\"G4523\"* (those|strong=\"G3588\"* who|strong=\"G3588\"* say|strong=\"G3004\"* that|strong=\"G3588\"* there|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3361\"* resurrection) came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"*. They|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 24, + "text": "saying|strong=\"G3004\"*, “Teacher|strong=\"G1320\"*, Moses|strong=\"G3475\"* said|strong=\"G3004\"*, ‘If|strong=\"G1437\"* a|strong=\"G2192\"* man|strong=\"G5100\"* dies, having|strong=\"G2192\"* no|strong=\"G3361\"* children|strong=\"G5043\"*, his|strong=\"G2192\"* brother shall|strong=\"G2532\"* marry|strong=\"G1918\"* his|strong=\"G2192\"* wife|strong=\"G1135\"* and|strong=\"G2532\"* raise|strong=\"G2532\"* up|strong=\"G3361\"* offspring+ 22:24 or, seed* for|strong=\"G2532\"* his|strong=\"G2192\"* brother.’" + }, + { + "verseNum": 25, + "text": "Now|strong=\"G1161\"* there|strong=\"G2532\"* were|strong=\"G1510\"* with|strong=\"G3844\"* us|strong=\"G2249\"* seven|strong=\"G2033\"* brothers. The|strong=\"G2532\"* first|strong=\"G4413\"* married|strong=\"G1060\"* and|strong=\"G2532\"* died|strong=\"G5053\"*, and|strong=\"G2532\"* having|strong=\"G2192\"* no|strong=\"G3361\"* offspring left his|strong=\"G2192\"* wife|strong=\"G1135\"* to|strong=\"G2532\"* his|strong=\"G2192\"* brother." + }, + { + "verseNum": 26, + "text": "In|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G3668\"* way|strong=\"G3668\"*, the|strong=\"G2532\"* second|strong=\"G1208\"* also|strong=\"G2532\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* third|strong=\"G5154\"*, to|strong=\"G2532\"* the|strong=\"G2532\"* seventh|strong=\"G2033\"*." + }, + { + "verseNum": 27, + "text": "After|strong=\"G1161\"* them|strong=\"G3588\"* all|strong=\"G3956\"*, the|strong=\"G3956\"* woman|strong=\"G1135\"* died|strong=\"G3588\"*." + }, + { + "verseNum": 28, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* resurrection therefore|strong=\"G3767\"*, whose|strong=\"G5101\"* wife|strong=\"G1135\"* will|strong=\"G5101\"* she|strong=\"G1063\"* be|strong=\"G1510\"* of|strong=\"G1722\"* the|strong=\"G1722\"* seven|strong=\"G2033\"*? For|strong=\"G1063\"* they|strong=\"G3588\"* all|strong=\"G3956\"* had|strong=\"G2192\"* her|strong=\"G1438\"*.”" + }, + { + "verseNum": 29, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w You|strong=\"G3004\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w mistaken|strong=\"G4105\"\\+w*, \\+w not|strong=\"G3361\"\\+w* \\+w knowing|strong=\"G1492\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Scriptures|strong=\"G1124\"\\+w*, \\+w nor|strong=\"G3366\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* resurrection \\+w they|strong=\"G3588\"\\+w* \\+w neither|strong=\"G3777\"\\+w* \\+w marry|strong=\"G1060\"\\+w* \\+w nor|strong=\"G3777\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w given|strong=\"G1061\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w marriage|strong=\"G1061\"\\+w*, \\+w but|strong=\"G1063\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s angels \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w concerning|strong=\"G4012\"\\+w* \\+w the|strong=\"G1161\"\\+w* resurrection \\+w of|strong=\"G4012\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w dead|strong=\"G3498\"\\+w*, haven’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* read \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w spoken|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, *" + }, + { + "verseNum": 32, + "text": "‘\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G2316\"\\+w* Abraham, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w Isaac|strong=\"G2464\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w Jacob|strong=\"G2384\"\\+w*’?*+ 22:32 Exodus 3:6* \\+w God|strong=\"G2316\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w living|strong=\"G2198\"\\+w*.”*" + }, + { + "verseNum": 33, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* heard it|strong=\"G2532\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* astonished|strong=\"G1605\"* at|strong=\"G1909\"* his|strong=\"G1909\"* teaching|strong=\"G1322\"*." + }, + { + "verseNum": 34, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* Pharisees|strong=\"G5330\"*, when|strong=\"G1161\"* they|strong=\"G1161\"* heard that|strong=\"G3754\"* he|strong=\"G1161\"* had|strong=\"G3588\"* silenced|strong=\"G5392\"* the|strong=\"G1161\"* Sadducees|strong=\"G4523\"*, gathered|strong=\"G4863\"* themselves|strong=\"G4863\"* together|strong=\"G4863\"*." + }, + { + "verseNum": 35, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* them|strong=\"G1905\"*, a|strong=\"G2532\"* lawyer|strong=\"G3544\"*, asked|strong=\"G1905\"* him|strong=\"G1905\"* a|strong=\"G2532\"* question|strong=\"G1905\"*, testing|strong=\"G3985\"* him|strong=\"G1905\"*." + }, + { + "verseNum": 36, + "text": "“Teacher|strong=\"G1320\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* the|strong=\"G1722\"* greatest|strong=\"G3173\"* commandment|strong=\"G1785\"* in|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"*?”" + }, + { + "verseNum": 37, + "text": "Jesus|strong=\"G2532\"* said|strong=\"G5346\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “‘\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* love \\+w the|strong=\"G1722\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w all|strong=\"G3650\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, \\+w with|strong=\"G1722\"\\+w* \\+w all|strong=\"G3650\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w soul|strong=\"G5590\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w all|strong=\"G3650\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w mind|strong=\"G1271\"\\+w*.’*+ 22:37 Deuteronomy 6:5 *" + }, + { + "verseNum": 38, + "text": "\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w commandment|strong=\"G1785\"\\+w*. *" + }, + { + "verseNum": 39, + "text": "\\+w A|strong=\"G5613\"\\+w* \\+w second|strong=\"G1208\"\\+w* \\+w likewise|strong=\"G1161\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w this|strong=\"G3588\"\\+w*, ‘\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G3588\"\\+w* love \\+w your|strong=\"G3588\"\\+w* \\+w neighbor|strong=\"G4139\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w yourself|strong=\"G4572\"\\+w*.’*+ 22:39 Leviticus 19:18*" + }, + { + "verseNum": 40, + "text": "\\+w The|strong=\"G1722\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w law|strong=\"G3551\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w depend|strong=\"G2910\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w commandments|strong=\"G1785\"\\+w*.” *" + }, + { + "verseNum": 41, + "text": "Now|strong=\"G1161\"* while|strong=\"G1161\"* the|strong=\"G1161\"* Pharisees|strong=\"G5330\"* were|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"*, Jesus|strong=\"G2424\"* asked|strong=\"G1905\"* them|strong=\"G3588\"* a|strong=\"G1161\"* question|strong=\"G1905\"*," + }, + { + "verseNum": 42, + "text": "saying|strong=\"G3004\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w think|strong=\"G1380\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Christ|strong=\"G5547\"\\+w*? \\+w Whose|strong=\"G5101\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G3588\"\\+w*?” *" + }, + { + "verseNum": 43, + "text": "He|strong=\"G3004\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G1722\"*, “\\+w How|strong=\"G4459\"\\+w* \\+w then|strong=\"G3767\"\\+w* \\+w does|strong=\"G3004\"\\+w* \\+w David|strong=\"G1138\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w call|strong=\"G2564\"\\+w* \\+w him|strong=\"G2564\"\\+w* \\+w Lord|strong=\"G2962\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*,*" + }, + { + "verseNum": 44, + "text": "‘\\+w The|strong=\"G1537\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w my|strong=\"G5087\"\\+w* \\+w Lord|strong=\"G2962\"\\+w*,*" + }, + { + "verseNum": 45, + "text": "“\\+w If|strong=\"G1487\"\\+w* \\+w then|strong=\"G3767\"\\+w* \\+w David|strong=\"G1138\"\\+w* \\+w calls|strong=\"G2564\"\\+w* \\+w him|strong=\"G2564\"\\+w* \\+w Lord|strong=\"G2962\"\\+w*, \\+w how|strong=\"G4459\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G1487\"\\+w* \\+w his|strong=\"G2564\"\\+w* \\+w son|strong=\"G5207\"\\+w*?”*" + }, + { + "verseNum": 46, + "text": "No|strong=\"G3762\"* one|strong=\"G5100\"* was|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2532\"* answer|strong=\"G3056\"* him|strong=\"G3588\"* a|strong=\"G2532\"* word|strong=\"G3056\"*, neither|strong=\"G3761\"* did|strong=\"G2532\"* any|strong=\"G5100\"* man|strong=\"G5100\"* dare|strong=\"G5111\"* ask|strong=\"G1905\"* him|strong=\"G3588\"* any|strong=\"G5100\"* more|strong=\"G3765\"* questions|strong=\"G1905\"* from|strong=\"G2532\"* that|strong=\"G3588\"* day|strong=\"G2250\"* forward." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"G2532\"* Jesus|strong=\"G2424\"* spoke|strong=\"G2980\"* to|strong=\"G2532\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* and|strong=\"G2532\"* to|strong=\"G2532\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"*," + }, + { + "verseNum": 2, + "text": "saying|strong=\"G3004\"*, “\\+w The|strong=\"G2532\"\\+w* \\+w scribes|strong=\"G1122\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w* \\+w sit|strong=\"G2523\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w Moses|strong=\"G3475\"\\+w*’ \\+w seat|strong=\"G2523\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w All|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w whatever|strong=\"G3745\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w observe|strong=\"G5083\"\\+w*, \\+w observe|strong=\"G5083\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w*, \\+w but|strong=\"G1161\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w works|strong=\"G2041\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w For|strong=\"G1909\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w bind|strong=\"G2532\"\\+w* heavy \\+w burdens|strong=\"G5413\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* grievous \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* borne, \\+w and|strong=\"G2532\"\\+w* \\+w lay|strong=\"G2007\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w men|strong=\"G3588\"\\+w*’s \\+w shoulders|strong=\"G5606\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w they|strong=\"G2532\"\\+w* themselves \\+w will|strong=\"G2309\"\\+w* \\+w not|strong=\"G3756\"\\+w* lift \\+w a|strong=\"G2532\"\\+w* \\+w finger|strong=\"G1147\"\\+w* \\+w to|strong=\"G2532\"\\+w* help \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w seen|strong=\"G2300\"\\+w* \\+w by|strong=\"G4314\"\\+w* \\+w men|strong=\"G3956\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w phylacteries|strong=\"G5440\"\\+w**+ 23:5 phylacteries (tefillin in Hebrew) are small leather pouches that some Jewish men wear on their forehead and arm in prayer. They are used to carry a small scroll with some Scripture in it. See Deuteronomy 6:8.* broad \\+w and|strong=\"G2532\"\\+w* \\+w enlarge|strong=\"G3170\"\\+w* \\+w the|strong=\"G2532\"\\+w* fringes*+ 23:5 or, tassels* \\+w of|strong=\"G2532\"\\+w* \\+w their|strong=\"G2532\"\\+w* garments, *" + }, + { + "verseNum": 6, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w love|strong=\"G5368\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w place|strong=\"G4411\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w honor|strong=\"G4411\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w feasts|strong=\"G1173\"\\+w*, \\+w the|strong=\"G1722\"\\+w* best \\+w seats|strong=\"G4410\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w*, *" + }, + { + "verseNum": 7, + "text": "\\+w the|strong=\"G1722\"\\+w* salutations \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* marketplaces, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w called|strong=\"G2564\"\\+w* ‘\\+w Rabbi|strong=\"G4461\"\\+w*, \\+w Rabbi|strong=\"G4461\"\\+w*’*+ 23:7 NU omits the second “Rabbi”. * \\+w by|strong=\"G1722\"\\+w* \\+w men|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w to|strong=\"G1161\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w called|strong=\"G2564\"\\+w* ‘\\+w Rabbi|strong=\"G4461\"\\+w*’, \\+w for|strong=\"G1063\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w your|strong=\"G3956\"\\+w* \\+w teacher|strong=\"G1320\"\\+w*, \\+w the|strong=\"G3956\"\\+w* \\+w Christ|strong=\"G1520\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G1520\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* brothers. *" + }, + { + "verseNum": 9, + "text": "\\+w Call|strong=\"G2564\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w man|strong=\"G1520\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w heaven|strong=\"G3770\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w Neither|strong=\"G3366\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w masters|strong=\"G2519\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w your|strong=\"G3366\"\\+w* \\+w master|strong=\"G2519\"\\+w*, \\+w the|strong=\"G3588\"\\+w* \\+w Christ|strong=\"G5547\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w greatest|strong=\"G3173\"\\+w* \\+w among|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w servant|strong=\"G1249\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w Whoever|strong=\"G3748\"\\+w* \\+w exalts|strong=\"G5312\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w humbled|strong=\"G5013\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w whoever|strong=\"G3748\"\\+w* \\+w humbles|strong=\"G5013\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w exalted|strong=\"G5312\"\\+w*.*" + }, + { + "verseNum": 13, + "text": "“\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w scribes|strong=\"G1122\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w*, \\+w hypocrites|strong=\"G5273\"\\+w*! \\+w For|strong=\"G1063\"\\+w* \\+w you|strong=\"G5210\"\\+w* devour widows’ houses, \\+w and|strong=\"G2532\"\\+w* \\+w as|strong=\"G1161\"\\+w* \\+w a|strong=\"G2532\"\\+w* pretense \\+w you|strong=\"G5210\"\\+w* \\+w make|strong=\"G2532\"\\+w* \\+w long|strong=\"G3756\"\\+w* prayers. \\+w Therefore|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* receive \\+w greater|strong=\"G4771\"\\+w* condemnation.*" + }, + { + "verseNum": 14, + "text": "“But woe to you, scribes and Pharisees, hypocrites! Because you shut up the Kingdom of Heaven against men; for you don’t enter in yourselves, neither do you allow those who are entering in to enter.*+ 23:14 Some Greek texts reverse the order of verses 13 and 14, and some omit verse 13, numbering verse 14 as 13. NU omits verse 14.*" + }, + { + "verseNum": 15, + "text": "\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w scribes|strong=\"G1122\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w*, \\+w hypocrites|strong=\"G5273\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w travel|strong=\"G4013\"\\+w* \\+w around|strong=\"G4013\"\\+w* \\+w by|strong=\"G2532\"\\+w* \\+w sea|strong=\"G2281\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w land|strong=\"G3584\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w proselyte|strong=\"G4339\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w becomes|strong=\"G1096\"\\+w* \\+w one|strong=\"G1520\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w twice|strong=\"G1362\"\\+w* \\+w as|strong=\"G2532\"\\+w* \\+w much|strong=\"G1362\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* Gehenna*+ 23:15 or, Hell* \\+w as|strong=\"G2532\"\\+w* \\+w yourselves|strong=\"G4771\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "“\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w blind|strong=\"G5185\"\\+w* \\+w guides|strong=\"G3595\"\\+w*, \\+w who|strong=\"G3739\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Whoever|strong=\"G3739\"\\+w* \\+w swears|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w temple|strong=\"G3485\"\\+w*, \\+w it|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w nothing|strong=\"G3762\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w swears|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w gold|strong=\"G5557\"\\+w* \\+w of|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w temple|strong=\"G3485\"\\+w*, \\+w he|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w obligated|strong=\"G3784\"\\+w*.’ *" + }, + { + "verseNum": 17, + "text": "\\+w You|strong=\"G1510\"\\+w* \\+w blind|strong=\"G5185\"\\+w* \\+w fools|strong=\"G3474\"\\+w*! \\+w For|strong=\"G1063\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w greater|strong=\"G3173\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w gold|strong=\"G5557\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w temple|strong=\"G3485\"\\+w* \\+w that|strong=\"G3588\"\\+w* sanctifies \\+w the|strong=\"G2532\"\\+w* \\+w gold|strong=\"G5557\"\\+w*? *" + }, + { + "verseNum": 18, + "text": "\\+w And|strong=\"G2532\"\\+w*, ‘\\+w Whoever|strong=\"G3739\"\\+w* \\+w swears|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w altar|strong=\"G2379\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w nothing|strong=\"G3762\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w swears|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w gift|strong=\"G1435\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w obligated|strong=\"G3784\"\\+w*.’ *" + }, + { + "verseNum": 19, + "text": "\\+w You|strong=\"G5101\"\\+w* \\+w blind|strong=\"G5185\"\\+w* fools! \\+w For|strong=\"G1063\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w greater|strong=\"G3173\"\\+w*, \\+w the|strong=\"G3588\"\\+w* \\+w gift|strong=\"G1435\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w altar|strong=\"G2379\"\\+w* \\+w that|strong=\"G3588\"\\+w* sanctifies \\+w the|strong=\"G3588\"\\+w* \\+w gift|strong=\"G1435\"\\+w*? *" + }, + { + "verseNum": 20, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w swears|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w altar|strong=\"G2379\"\\+w*, \\+w swears|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w everything|strong=\"G3956\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w swears|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w temple|strong=\"G3485\"\\+w*, \\+w swears|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G2532\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w living|strong=\"G2730\"\\+w**+ 23:21 NU reads “lives”* \\+w in|strong=\"G1722\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w swears|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w swears|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w throne|strong=\"G2362\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sits|strong=\"G2521\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w it|strong=\"G2532\"\\+w*.*" + }, + { + "verseNum": 23, + "text": "“\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w scribes|strong=\"G1122\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w*, \\+w hypocrites|strong=\"G5273\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* tithe \\+w mint|strong=\"G2238\"\\+w*, dill, \\+w and|strong=\"G2532\"\\+w* cumin,*+ 23:23 cumin is an aromatic seed from Cuminum cyminum, resembling caraway in flavor and appearance. It is used as a spice.* \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w left|strong=\"G2548\"\\+w* undone \\+w the|strong=\"G2532\"\\+w* weightier matters \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w law|strong=\"G3551\"\\+w*: \\+w justice|strong=\"G2920\"\\+w*, \\+w mercy|strong=\"G1656\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w faith|strong=\"G4102\"\\+w*. \\+w But|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w ought|strong=\"G1163\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w these|strong=\"G3778\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w left|strong=\"G2548\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G3361\"\\+w* undone. *" + }, + { + "verseNum": 24, + "text": "\\+w You|strong=\"G5185\"\\+w* \\+w blind|strong=\"G5185\"\\+w* \\+w guides|strong=\"G3595\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w strain|strong=\"G1368\"\\+w* out \\+w a|strong=\"G1161\"\\+w* \\+w gnat|strong=\"G2971\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w swallow|strong=\"G2666\"\\+w* \\+w a|strong=\"G1161\"\\+w* \\+w camel|strong=\"G2574\"\\+w*! *" + }, + { + "verseNum": 25, + "text": "“\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w scribes|strong=\"G1122\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w*, \\+w hypocrites|strong=\"G5273\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w clean|strong=\"G2511\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w outside|strong=\"G1855\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w platter|strong=\"G3953\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w within|strong=\"G2081\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w full|strong=\"G1073\"\\+w* \\+w of|strong=\"G1537\"\\+w* extortion \\+w and|strong=\"G2532\"\\+w* unrighteousness.*+ 23:25 TR reads “self-indulgence” instead of “unrighteousness”*" + }, + { + "verseNum": 26, + "text": "\\+w You|strong=\"G2532\"\\+w* \\+w blind|strong=\"G5185\"\\+w* \\+w Pharisee|strong=\"G5330\"\\+w*, \\+w first|strong=\"G4413\"\\+w* \\+w clean|strong=\"G2513\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w inside|strong=\"G1787\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w platter|strong=\"G3953\"\\+w*, \\+w that|strong=\"G2443\"\\+w* its \\+w outside|strong=\"G1622\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w become|strong=\"G1096\"\\+w* \\+w clean|strong=\"G2513\"\\+w* \\+w also|strong=\"G2532\"\\+w*.*" + }, + { + "verseNum": 27, + "text": "“\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w scribes|strong=\"G1122\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w*, \\+w hypocrites|strong=\"G5273\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G3956\"\\+w* \\+w like|strong=\"G3945\"\\+w* whitened \\+w tombs|strong=\"G5028\"\\+w*, \\+w which|strong=\"G3748\"\\+w* \\+w outwardly|strong=\"G1855\"\\+w* \\+w appear|strong=\"G5316\"\\+w* \\+w beautiful|strong=\"G5611\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w inwardly|strong=\"G2081\"\\+w* \\+w are|strong=\"G3956\"\\+w* \\+w full|strong=\"G1073\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w men|strong=\"G3956\"\\+w*’s \\+w bones|strong=\"G3747\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* uncleanness. *" + }, + { + "verseNum": 28, + "text": "\\+w Even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w outwardly|strong=\"G1855\"\\+w* \\+w appear|strong=\"G5316\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w men|strong=\"G1342\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w inwardly|strong=\"G2081\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w full|strong=\"G3324\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w hypocrisy|strong=\"G5272\"\\+w* \\+w and|strong=\"G2532\"\\+w* iniquity.*" + }, + { + "verseNum": 29, + "text": "“\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w scribes|strong=\"G1122\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w*, \\+w hypocrites|strong=\"G5273\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w build|strong=\"G3618\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w tombs|strong=\"G3419\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w decorate|strong=\"G2885\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w tombs|strong=\"G3419\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w righteous|strong=\"G1342\"\\+w*, *" + }, + { + "verseNum": 30, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w If|strong=\"G1487\"\\+w* \\+w we|strong=\"G2249\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w lived|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w our|strong=\"G2532\"\\+w* \\+w fathers|strong=\"G3962\"\\+w*, \\+w we|strong=\"G2249\"\\+w* wouldn’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w partakers|strong=\"G2844\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* blood \\+w of|strong=\"G2250\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*.’ *" + }, + { + "verseNum": 31, + "text": "\\+w Therefore|strong=\"G5620\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w testify|strong=\"G3140\"\\+w* \\+w to|strong=\"G1438\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w killed|strong=\"G5407\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w Fill|strong=\"G4137\"\\+w* \\+w up|strong=\"G2532\"\\+w*, \\+w then|strong=\"G2532\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w measure|strong=\"G3358\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w fathers|strong=\"G3962\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w You|strong=\"G4459\"\\+w* \\+w serpents|strong=\"G3789\"\\+w*, \\+w you|strong=\"G4459\"\\+w* \\+w offspring|strong=\"G1081\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w vipers|strong=\"G2191\"\\+w*, \\+w how|strong=\"G4459\"\\+w* \\+w will|strong=\"G4459\"\\+w* \\+w you|strong=\"G4459\"\\+w* \\+w escape|strong=\"G5343\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w of|strong=\"G3588\"\\+w* Gehenna?*+ 23:33 or, Hell*" + }, + { + "verseNum": 34, + "text": "\\+w Therefore|strong=\"G1223\"\\+w*, \\+w behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* send \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*, \\+w wise|strong=\"G4680\"\\+w* \\+w men|strong=\"G3778\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w scribes|strong=\"G1122\"\\+w*. \\+w Some|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* kill \\+w and|strong=\"G2532\"\\+w* \\+w crucify|strong=\"G4717\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w some|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w scourge|strong=\"G3146\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w persecute|strong=\"G1377\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w city|strong=\"G4172\"\\+w*, *" + }, + { + "verseNum": 35, + "text": "\\+w that|strong=\"G3739\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* blood \\+w shed|strong=\"G1632\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w*, \\+w from|strong=\"G2064\"\\+w* \\+w the|strong=\"G2532\"\\+w* blood \\+w of|strong=\"G5207\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* Abel \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* blood \\+w of|strong=\"G5207\"\\+w* Zachariah \\+w son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* Barachiah, \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w killed|strong=\"G5407\"\\+w* \\+w between|strong=\"G3342\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sanctuary|strong=\"G3485\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w altar|strong=\"G2379\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "Most \\+w certainly|strong=\"G1909\"\\+w* \\+w I|strong=\"G3778\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w will|strong=\"G3956\"\\+w* \\+w come|strong=\"G2240\"\\+w* \\+w upon|strong=\"G1909\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w*.*" + }, + { + "verseNum": 37, + "text": "“\\+w Jerusalem|strong=\"G2419\"\\+w*, \\+w Jerusalem|strong=\"G2419\"\\+w*, \\+w who|strong=\"G3739\"\\+w* kills \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w stones|strong=\"G3036\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w her|strong=\"G1438\"\\+w*! \\+w How|strong=\"G4212\"\\+w* \\+w often|strong=\"G4212\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w would|strong=\"G2309\"\\+w* \\+w have|strong=\"G2309\"\\+w* \\+w gathered|strong=\"G1996\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w children|strong=\"G5043\"\\+w* \\+w together|strong=\"G1996\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w hen|strong=\"G3733\"\\+w* \\+w gathers|strong=\"G1996\"\\+w* \\+w her|strong=\"G1438\"\\+w* \\+w chicks|strong=\"G3556\"\\+w* \\+w under|strong=\"G5259\"\\+w* \\+w her|strong=\"G1438\"\\+w* \\+w wings|strong=\"G4420\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w would|strong=\"G2309\"\\+w* \\+w not|strong=\"G3756\"\\+w*! *" + }, + { + "verseNum": 38, + "text": "\\+w Behold|strong=\"G2400\"\\+w*, \\+w your|strong=\"G3708\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w is|strong=\"G3588\"\\+w* left \\+w to|strong=\"G3708\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w desolate|strong=\"G2048\"\\+w*. *" + }, + { + "verseNum": 39, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2962\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w from|strong=\"G2064\"\\+w* \\+w now|strong=\"G3756\"\\+w* \\+w on|strong=\"G1722\"\\+w*, \\+w until|strong=\"G2193\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Blessed|strong=\"G2127\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w of|strong=\"G3686\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Lord|strong=\"G2962\"\\+w*!’”*+ 23:39 Psalms 118:26 *" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Jesus|strong=\"G2424\"* went|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G2413\"*, and|strong=\"G2532\"* was|strong=\"G3588\"* going|strong=\"G4198\"* on|strong=\"G4198\"* his|strong=\"G2532\"* way|strong=\"G4198\"*. His|strong=\"G2532\"* disciples|strong=\"G3101\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G2532\"* show|strong=\"G1925\"* him|strong=\"G3588\"* the|strong=\"G2532\"* buildings|strong=\"G3619\"* of|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G2413\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w You|strong=\"G5210\"\\+w* see \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G1909\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w*? \\+w Most|strong=\"G3037\"\\+w* \\+w certainly|strong=\"G1909\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w there|strong=\"G1161\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G3756\"\\+w* left \\+w here|strong=\"G5602\"\\+w* \\+w one|strong=\"G3739\"\\+w* \\+w stone|strong=\"G3037\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w another|strong=\"G3037\"\\+w*, \\+w that|strong=\"G3739\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G3756\"\\+w* thrown \\+w down|strong=\"G2647\"\\+w*.”*" + }, + { + "verseNum": 3, + "text": "As|strong=\"G1161\"* he|strong=\"G2532\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* Mount|strong=\"G3735\"* of|strong=\"G2532\"* Olives|strong=\"G1636\"*, the|strong=\"G2532\"* disciples|strong=\"G3101\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"* privately|strong=\"G2398\"*, saying|strong=\"G3004\"*, “Tell|strong=\"G3004\"* us|strong=\"G3004\"*, when|strong=\"G1161\"* will|strong=\"G5101\"* these|strong=\"G3778\"* things|strong=\"G3778\"* be|strong=\"G1510\"*? What|strong=\"G5101\"* is|strong=\"G1510\"* the|strong=\"G2532\"* sign|strong=\"G4592\"* of|strong=\"G2532\"* your|strong=\"G4674\"* coming|strong=\"G3952\"*, and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* end|strong=\"G4930\"* of|strong=\"G2532\"* the|strong=\"G2532\"* age?”" + }, + { + "verseNum": 4, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Be|strong=\"G2532\"\\+w* careful \\+w that|strong=\"G3588\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w one|strong=\"G5100\"\\+w* \\+w leads|strong=\"G4105\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w astray|strong=\"G4105\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Christ|strong=\"G5547\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w lead|strong=\"G1510\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w astray|strong=\"G4105\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w You|strong=\"G3708\"\\+w* \\+w will|strong=\"G3195\"\\+w* hear \\+w of|strong=\"G2532\"\\+w* \\+w wars|strong=\"G4171\"\\+w* \\+w and|strong=\"G2532\"\\+w* rumors \\+w of|strong=\"G2532\"\\+w* \\+w wars|strong=\"G4171\"\\+w*. \\+w See|strong=\"G3708\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w you|strong=\"G3708\"\\+w* aren’\\+w t|strong=\"G3588\"\\+w* \\+w troubled|strong=\"G2360\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w all|strong=\"G2532\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w happen|strong=\"G1096\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w end|strong=\"G5056\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w yet|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w nation|strong=\"G1484\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w rise|strong=\"G1453\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w nation|strong=\"G1484\"\\+w*, \\+w and|strong=\"G2532\"\\+w* kingdom \\+w against|strong=\"G2596\"\\+w* kingdom; \\+w and|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w famines|strong=\"G3042\"\\+w*, plagues, \\+w and|strong=\"G2532\"\\+w* \\+w earthquakes|strong=\"G4578\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w various|strong=\"G2596\"\\+w* \\+w places|strong=\"G5117\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w are|strong=\"G3956\"\\+w* \\+w the|strong=\"G3956\"\\+w* beginning \\+w of|strong=\"G3956\"\\+w* \\+w birth|strong=\"G5604\"\\+w* \\+w pains|strong=\"G5604\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "“\\+w Then|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* oppression \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* kill \\+w you|strong=\"G5210\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w hated|strong=\"G3404\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G5259\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w name|strong=\"G3686\"\\+w*’s \\+w sake|strong=\"G1223\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w one|strong=\"G3404\"\\+w* another, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w hate|strong=\"G3404\"\\+w* \\+w one|strong=\"G3404\"\\+w* another. *" + }, + { + "verseNum": 11, + "text": "\\+w Many|strong=\"G4183\"\\+w* \\+w false|strong=\"G5578\"\\+w* \\+w prophets|strong=\"G5578\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w arise|strong=\"G1453\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w lead|strong=\"G2532\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w astray|strong=\"G4105\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w Because|strong=\"G1223\"\\+w* iniquity \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w multiplied|strong=\"G4129\"\\+w*, \\+w the|strong=\"G2532\"\\+w* love \\+w of|strong=\"G1223\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w grow|strong=\"G5594\"\\+w* \\+w cold|strong=\"G5594\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w endures|strong=\"G5278\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w end|strong=\"G5056\"\\+w* \\+w will|strong=\"G3778\"\\+w* \\+w be|strong=\"G1519\"\\+w* \\+w saved|strong=\"G4982\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w This|strong=\"G3778\"\\+w* \\+w Good|strong=\"G3956\"\\+w* \\+w News|strong=\"G2098\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w preached|strong=\"G2784\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w world|strong=\"G3625\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w testimony|strong=\"G3142\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w nations|strong=\"G1484\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w end|strong=\"G5056\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2240\"\\+w*.*" + }, + { + "verseNum": 15, + "text": "“\\+w When|strong=\"G3752\"\\+w*, \\+w therefore|strong=\"G3767\"\\+w*, \\+w you|strong=\"G3752\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G1722\"\\+w* abomination \\+w of|strong=\"G1223\"\\+w* \\+w desolation|strong=\"G2050\"\\+w*,*+ 24:15 Daniel 9:27; 11:31; 12:11* \\+w which|strong=\"G3588\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w spoken|strong=\"G3004\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w Daniel|strong=\"G1158\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w prophet|strong=\"G4396\"\\+w*, \\+w standing|strong=\"G2476\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* holy \\+w place|strong=\"G5117\"\\+w* (\\+w let|strong=\"G3767\"\\+w* \\+w the|strong=\"G1722\"\\+w* reader \\+w understand|strong=\"G3539\"\\+w*), *" + }, + { + "verseNum": 16, + "text": "\\+w then|strong=\"G5119\"\\+w* let \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Judea|strong=\"G2449\"\\+w* \\+w flee|strong=\"G5343\"\\+w* \\+w to|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w mountains|strong=\"G3735\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "Let \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w housetop|strong=\"G1430\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w go|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w to|strong=\"G1909\"\\+w* take \\+w out|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w his|strong=\"G1909\"\\+w* \\+w house|strong=\"G3614\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w Let|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* field \\+w not|strong=\"G3361\"\\+w* \\+w return|strong=\"G1994\"\\+w* \\+w back|strong=\"G3694\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w get|strong=\"G2532\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w clothes|strong=\"G2440\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w child|strong=\"G1064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w nursing|strong=\"G2337\"\\+w* mothers \\+w in|strong=\"G1722\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w days|strong=\"G2250\"\\+w*! *" + }, + { + "verseNum": 20, + "text": "\\+w Pray|strong=\"G4336\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w your|strong=\"G3366\"\\+w* \\+w flight|strong=\"G5437\"\\+w* \\+w will|strong=\"G1096\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w in|strong=\"G1096\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w winter|strong=\"G5494\"\\+w* \\+w nor|strong=\"G3366\"\\+w* \\+w on|strong=\"G1161\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w*, *" + }, + { + "verseNum": 21, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w then|strong=\"G5119\"\\+w* \\+w there|strong=\"G1063\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w suffering|strong=\"G2347\"\\+w*,*+ 24:21 or, oppression* \\+w such|strong=\"G3634\"\\+w* \\+w as|strong=\"G3634\"\\+w* \\+w has|strong=\"G1096\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w from|strong=\"G3756\"\\+w* \\+w the|strong=\"G3588\"\\+w* beginning \\+w of|strong=\"G3588\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w now|strong=\"G3568\"\\+w*, \\+w no|strong=\"G3756\"\\+w*, \\+w nor|strong=\"G3761\"\\+w* \\+w ever|strong=\"G3756\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w Unless|strong=\"G1487\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w shortened|strong=\"G2856\"\\+w*, \\+w no|strong=\"G3756\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w saved|strong=\"G4982\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sake|strong=\"G1223\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w chosen|strong=\"G1588\"\\+w* ones, \\+w those|strong=\"G3588\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w shortened|strong=\"G2856\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "“\\+w Then|strong=\"G5119\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w any|strong=\"G5100\"\\+w* \\+w man|strong=\"G5100\"\\+w* tells \\+w you|strong=\"G5210\"\\+w*, ‘\\+w Behold|strong=\"G2400\"\\+w*, \\+w here|strong=\"G5602\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Christ|strong=\"G5547\"\\+w*!’ \\+w or|strong=\"G2228\"\\+w*, ‘\\+w There|strong=\"G3004\"\\+w*!’ don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w it|strong=\"G1437\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w false|strong=\"G5578\"\\+w* \\+w christs|strong=\"G5580\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w false|strong=\"G5578\"\\+w* \\+w prophets|strong=\"G5578\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w arise|strong=\"G1453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w show|strong=\"G1325\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w signs|strong=\"G4592\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w wonders|strong=\"G5059\"\\+w*, \\+w so|strong=\"G2532\"\\+w* \\+w as|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w lead|strong=\"G2532\"\\+w* \\+w astray|strong=\"G4105\"\\+w*, \\+w if|strong=\"G1487\"\\+w* \\+w possible|strong=\"G1415\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w chosen|strong=\"G1588\"\\+w* \\+w ones|strong=\"G3173\"\\+w*.*" + }, + { + "verseNum": 25, + "text": "“\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G3708\"\\+w* \\+w have|strong=\"G5210\"\\+w* \\+w told|strong=\"G4302\"\\+w* \\+w you|strong=\"G5210\"\\+w* beforehand. *" + }, + { + "verseNum": 26, + "text": "“\\+w If|strong=\"G1437\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, ‘\\+w Behold|strong=\"G2400\"\\+w*, \\+w he|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w wilderness|strong=\"G2048\"\\+w*,’ don’\\+w t|strong=\"G3588\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w*; \\+w or|strong=\"G3361\"\\+w* ‘\\+w Behold|strong=\"G2400\"\\+w*, \\+w he|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w inner|strong=\"G5009\"\\+w* \\+w rooms|strong=\"G5009\"\\+w*,’ don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w it|strong=\"G1437\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w as|strong=\"G5618\"\\+w* \\+w the|strong=\"G2532\"\\+w* lightning \\+w flashes|strong=\"G5316\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* east, \\+w and|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w seen|strong=\"G5316\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w west|strong=\"G1424\"\\+w*, \\+w so|strong=\"G3779\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w coming|strong=\"G3952\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w be|strong=\"G1510\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w For|strong=\"G4430\"\\+w* \\+w wherever|strong=\"G3699\"\\+w* \\+w the|strong=\"G3588\"\\+w* carcass \\+w is|strong=\"G1510\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w the|strong=\"G3588\"\\+w* vultures*+ 24:28 or, eagles* \\+w gather|strong=\"G4863\"\\+w* \\+w together|strong=\"G4863\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* \\+w after|strong=\"G3326\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w suffering|strong=\"G2347\"\\+w**+ 24:29 or, oppression* \\+w of|strong=\"G1537\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w days|strong=\"G2250\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w sun|strong=\"G2246\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w darkened|strong=\"G4654\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w moon|strong=\"G4582\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w its|strong=\"G1325\"\\+w* \\+w light|strong=\"G5338\"\\+w*, \\+w the|strong=\"G2532\"\\+w* stars \\+w will|strong=\"G2532\"\\+w* \\+w fall|strong=\"G4098\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w powers|strong=\"G1411\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w heavens|strong=\"G3772\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w shaken|strong=\"G4531\"\\+w*;*+ 24:29 Isaiah 13:10; 34:4 *" + }, + { + "verseNum": 30, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sign|strong=\"G4592\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3956\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w appear|strong=\"G5316\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sky|strong=\"G3772\"\\+w*. \\+w Then|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w tribes|strong=\"G5443\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w mourn|strong=\"G2875\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3956\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w clouds|strong=\"G3507\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w great|strong=\"G4183\"\\+w* \\+w glory|strong=\"G1391\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* send \\+w out|strong=\"G1537\"\\+w* \\+w his|strong=\"G2532\"\\+w* angels \\+w with|strong=\"G3326\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w great|strong=\"G3173\"\\+w* sound \\+w of|strong=\"G1537\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w trumpet|strong=\"G4536\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w gather|strong=\"G1996\"\\+w* \\+w together|strong=\"G1996\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w chosen|strong=\"G1588\"\\+w* \\+w ones|strong=\"G3173\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w four|strong=\"G5064\"\\+w* winds, \\+w from|strong=\"G1537\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w end|strong=\"G3326\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G3588\"\\+w*.*" + }, + { + "verseNum": 32, + "text": "“\\+w Now|strong=\"G1161\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fig|strong=\"G4808\"\\+w* \\+w tree|strong=\"G4808\"\\+w* \\+w learn|strong=\"G3129\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w parable|strong=\"G3850\"\\+w*: \\+w When|strong=\"G3752\"\\+w* \\+w its|strong=\"G1631\"\\+w* \\+w branch|strong=\"G2798\"\\+w* \\+w has|strong=\"G1096\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w become|strong=\"G1096\"\\+w* tender \\+w and|strong=\"G2532\"\\+w* produces \\+w its|strong=\"G1631\"\\+w* \\+w leaves|strong=\"G5444\"\\+w*, \\+w you|strong=\"G3752\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w summer|strong=\"G2330\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w near|strong=\"G1451\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w Even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w*, \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w near|strong=\"G1451\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w doors|strong=\"G2374\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "Most \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G3778\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w**+ 24:34 The word for “generation” (genea) can also be translated as “race.”* \\+w will|strong=\"G3956\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w pass|strong=\"G1096\"\\+w* \\+w away|strong=\"G3928\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w accomplished|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w Heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w pass|strong=\"G3928\"\\+w* \\+w away|strong=\"G3928\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w pass|strong=\"G3928\"\\+w* \\+w away|strong=\"G3928\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w knows|strong=\"G1492\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w hour|strong=\"G5610\"\\+w*, \\+w not|strong=\"G3361\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* angels \\+w of|strong=\"G5207\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*,*+ 24:36 NU adds “nor the son”* \\+w but|strong=\"G1161\"\\+w* \\+w my|strong=\"G3588\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w only|strong=\"G3441\"\\+w*.*" + }, + { + "verseNum": 37, + "text": "\\+w As|strong=\"G5618\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Noah|strong=\"G3575\"\\+w* \\+w were|strong=\"G1510\"\\+w*, \\+w so|strong=\"G3779\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w coming|strong=\"G3952\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w be|strong=\"G1510\"\\+w*. *" + }, + { + "verseNum": 38, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w flood|strong=\"G2627\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w eating|strong=\"G5176\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drinking|strong=\"G4095\"\\+w*, \\+w marrying|strong=\"G1060\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w giving|strong=\"G1061\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w marriage|strong=\"G1061\"\\+w*, \\+w until|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w Noah|strong=\"G3575\"\\+w* \\+w entered|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* ship, *" + }, + { + "verseNum": 39, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w flood|strong=\"G2627\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w took|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w all|strong=\"G2532\"\\+w* away, \\+w so|strong=\"G3779\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3756\"\\+w* \\+w be|strong=\"G1510\"\\+w*. *" + }, + { + "verseNum": 40, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w men|strong=\"G1417\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* field: \\+w one|strong=\"G1520\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w taken|strong=\"G3880\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* left. *" + }, + { + "verseNum": 41, + "text": "\\+w Two|strong=\"G1417\"\\+w* \\+w women|strong=\"G1417\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* grinding \\+w at|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w mill|strong=\"G3458\"\\+w*: \\+w one|strong=\"G1520\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w taken|strong=\"G3880\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* left. *" + }, + { + "verseNum": 42, + "text": "\\+w Watch|strong=\"G1127\"\\+w* \\+w therefore|strong=\"G3767\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w in|strong=\"G3756\"\\+w* \\+w what|strong=\"G4169\"\\+w* hour \\+w your|strong=\"G2962\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w comes|strong=\"G2064\"\\+w*. *" + }, + { + "verseNum": 43, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w this|strong=\"G3588\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w the|strong=\"G2532\"\\+w* master \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w what|strong=\"G4169\"\\+w* \\+w watch|strong=\"G1127\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w night|strong=\"G5438\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w thief|strong=\"G2812\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w would|strong=\"G1439\"\\+w* \\+w have|strong=\"G2532\"\\+w* watched, \\+w and|strong=\"G2532\"\\+w* \\+w would|strong=\"G1439\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w allowed|strong=\"G1439\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w broken|strong=\"G1358\"\\+w* \\+w into|strong=\"G2064\"\\+w*. *" + }, + { + "verseNum": 44, + "text": "\\+w Therefore|strong=\"G1223\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w ready|strong=\"G2092\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w expect|strong=\"G1380\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w*.*" + }, + { + "verseNum": 45, + "text": "“\\+w Who|strong=\"G3739\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w wise|strong=\"G5429\"\\+w* \\+w servant|strong=\"G1401\"\\+w*, \\+w whom|strong=\"G3739\"\\+w* \\+w his|strong=\"G1909\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w has|strong=\"G2962\"\\+w* \\+w set|strong=\"G2525\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w his|strong=\"G1909\"\\+w* \\+w household|strong=\"G3610\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w food|strong=\"G5160\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w due|strong=\"G1722\"\\+w* \\+w season|strong=\"G2540\"\\+w*? *" + }, + { + "verseNum": 46, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w his|strong=\"G4160\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w finds|strong=\"G2147\"\\+w* \\+w doing|strong=\"G4160\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w when|strong=\"G2064\"\\+w* \\+w he|strong=\"G3739\"\\+w* \\+w comes|strong=\"G2064\"\\+w*. *" + }, + { + "verseNum": 47, + "text": "Most \\+w certainly|strong=\"G1909\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G3754\"\\+w* \\+w will|strong=\"G3956\"\\+w* \\+w set|strong=\"G2525\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G3754\"\\+w* \\+w has|strong=\"G3748\"\\+w*. *" + }, + { + "verseNum": 48, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w evil|strong=\"G2556\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, ‘\\+w My|strong=\"G1722\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w delaying|strong=\"G5549\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w coming|strong=\"G5549\"\\+w*,’ *" + }, + { + "verseNum": 49, + "text": "\\+w and|strong=\"G2532\"\\+w* begins \\+w to|strong=\"G2532\"\\+w* \\+w beat|strong=\"G5180\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w fellow|strong=\"G4889\"\\+w* \\+w servants|strong=\"G4889\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w drunkards|strong=\"G3184\"\\+w*, *" + }, + { + "verseNum": 50, + "text": "\\+w the|strong=\"G1722\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2240\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w expect|strong=\"G4328\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w it|strong=\"G2532\"\\+w*, *" + }, + { + "verseNum": 51, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w cut|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w pieces|strong=\"G1371\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w appoint|strong=\"G5087\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w portion|strong=\"G3313\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w hypocrites|strong=\"G5273\"\\+w*. \\+w That|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w where|strong=\"G5087\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w weeping|strong=\"G2805\"\\+w* \\+w and|strong=\"G2532\"\\+w* grinding \\+w of|strong=\"G2532\"\\+w* \\+w teeth|strong=\"G3599\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w*. *" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "“\\+w Then|strong=\"G5119\"\\+w* \\+w the|strong=\"G1519\"\\+w* Kingdom \\+w of|strong=\"G3588\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w will|strong=\"G3748\"\\+w* \\+w be|strong=\"G1519\"\\+w* \\+w like|strong=\"G3666\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w virgins|strong=\"G3933\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w lamps|strong=\"G2985\"\\+w* \\+w and|strong=\"G3772\"\\+w* \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w meet|strong=\"G5222\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w*. *" + }, + { + "verseNum": 2, + "text": "\\+w Five|strong=\"G4002\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w them|strong=\"G2532\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w foolish|strong=\"G3474\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w wise|strong=\"G5429\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w Those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w foolish|strong=\"G3474\"\\+w*, \\+w when|strong=\"G3326\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w lamps|strong=\"G2985\"\\+w*, \\+w took|strong=\"G2983\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w oil|strong=\"G1637\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w them|strong=\"G3588\"\\+w*, *" + }, + { + "verseNum": 4, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w wise|strong=\"G5429\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w oil|strong=\"G1637\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w their|strong=\"G1438\"\\+w* vessels \\+w with|strong=\"G3326\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w lamps|strong=\"G2985\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w Now|strong=\"G1161\"\\+w* \\+w while|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* delayed, \\+w they|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w slumbered|strong=\"G3573\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w slept|strong=\"G2518\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w at|strong=\"G1519\"\\+w* \\+w midnight|strong=\"G3319\"\\+w* \\+w there|strong=\"G1161\"\\+w* \\+w was|strong=\"G1096\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w cry|strong=\"G2906\"\\+w*, ‘\\+w Behold|strong=\"G2400\"\\+w*! \\+w The|strong=\"G1519\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w coming|strong=\"G1831\"\\+w*! \\+w Come|strong=\"G1096\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w meet|strong=\"G3588\"\\+w* \\+w him|strong=\"G3588\"\\+w*!’ *" + }, + { + "verseNum": 7, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w virgins|strong=\"G3933\"\\+w* \\+w arose|strong=\"G1453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w trimmed|strong=\"G2885\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w lamps|strong=\"G2985\"\\+w*.*+ 25:7 The end of the wick of an oil lamp needs to be cut off periodically to avoid having it become clogged with carbon deposits. The wick height is also adjusted so that the flame burns evenly and gives good light without producing a lot of smoke.*" + }, + { + "verseNum": 8, + "text": "\\+w The|strong=\"G1537\"\\+w* \\+w foolish|strong=\"G3474\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w wise|strong=\"G5429\"\\+w*, ‘\\+w Give|strong=\"G1325\"\\+w* \\+w us|strong=\"G1325\"\\+w* \\+w some|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w your|strong=\"G1325\"\\+w* \\+w oil|strong=\"G1637\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w our|strong=\"G1537\"\\+w* \\+w lamps|strong=\"G2985\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w going|strong=\"G4570\"\\+w* \\+w out|strong=\"G1537\"\\+w*.’ *" + }, + { + "verseNum": 9, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wise|strong=\"G5429\"\\+w* \\+w answered|strong=\"G3004\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w What|strong=\"G3588\"\\+w* \\+w if|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* enough \\+w for|strong=\"G4314\"\\+w* \\+w us|strong=\"G3004\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*? \\+w You|strong=\"G5210\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w rather|strong=\"G3123\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sell|strong=\"G4453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* buy \\+w for|strong=\"G4314\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w*.’ *" + }, + { + "verseNum": 10, + "text": "\\+w While|strong=\"G1161\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w went|strong=\"G2064\"\\+w* \\+w away|strong=\"G3326\"\\+w* \\+w to|strong=\"G1519\"\\+w* buy, \\+w the|strong=\"G2532\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w came|strong=\"G2064\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w ready|strong=\"G2092\"\\+w* \\+w went|strong=\"G2064\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wedding|strong=\"G1062\"\\+w* \\+w feast|strong=\"G1062\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w door|strong=\"G2374\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w shut|strong=\"G2808\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w Afterward|strong=\"G5305\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G3062\"\\+w* \\+w virgins|strong=\"G3933\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w Lord|strong=\"G2962\"\\+w*, open \\+w to|strong=\"G2532\"\\+w* \\+w us|strong=\"G3004\"\\+w*.’ *" + }, + { + "verseNum": 12, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w answered|strong=\"G3004\"\\+w*, ‘Most \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G1161\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w you|strong=\"G5210\"\\+w*.’ *" + }, + { + "verseNum": 13, + "text": "\\+w Watch|strong=\"G1127\"\\+w* \\+w therefore|strong=\"G3767\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w you|strong=\"G3754\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w nor|strong=\"G3761\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w in|strong=\"G3756\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w the|strong=\"G3588\"\\+w* Son \\+w of|strong=\"G2250\"\\+w* \\+w Man|strong=\"G3756\"\\+w* \\+w is|strong=\"G3588\"\\+w* coming.*" + }, + { + "verseNum": 14, + "text": "“\\+w For|strong=\"G1063\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w like|strong=\"G5618\"\\+w* \\+w a|strong=\"G2532\"\\+w* man \\+w going|strong=\"G2532\"\\+w* \\+w into|strong=\"G3860\"\\+w* \\+w another|strong=\"G3588\"\\+w* country, \\+w who|strong=\"G3588\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w his|strong=\"G2398\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w entrusted|strong=\"G3860\"\\+w* \\+w his|strong=\"G2398\"\\+w* goods \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w To|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w talents|strong=\"G5007\"\\+w*,*+ 25:15 A talent is about 30 kilograms or 66 pounds (usually used to weigh silver unless otherwise specified)* \\+w to|strong=\"G2532\"\\+w* \\+w another|strong=\"G3739\"\\+w* \\+w two|strong=\"G1417\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w another|strong=\"G3739\"\\+w* \\+w one|strong=\"G1520\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w each|strong=\"G1538\"\\+w* \\+w according|strong=\"G2596\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w his|strong=\"G2398\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w ability|strong=\"G1411\"\\+w*. \\+w Then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w went|strong=\"G2532\"\\+w* \\+w on|strong=\"G2596\"\\+w* \\+w his|strong=\"G2398\"\\+w* journey. *" + }, + { + "verseNum": 16, + "text": "Immediately \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w talents|strong=\"G5007\"\\+w* \\+w went|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w traded|strong=\"G2038\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w another|strong=\"G3588\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w talents|strong=\"G5007\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w In|strong=\"G3588\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w same|strong=\"G5615\"\\+w* \\+w way|strong=\"G5615\"\\+w*, \\+w he|strong=\"G3588\"\\+w* also \\+w who|strong=\"G3588\"\\+w* got \\+w the|strong=\"G3588\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w gained|strong=\"G2770\"\\+w* \\+w another|strong=\"G3588\"\\+w* \\+w two|strong=\"G1417\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* talent \\+w went|strong=\"G2532\"\\+w* away \\+w and|strong=\"G2532\"\\+w* \\+w dug|strong=\"G3736\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w hid|strong=\"G2928\"\\+w* \\+w his|strong=\"G2983\"\\+w* \\+w lord|strong=\"G2962\"\\+w*’\\+w s|strong=\"G2962\"\\+w* money.*" + }, + { + "verseNum": 19, + "text": "“\\+w Now|strong=\"G1161\"\\+w* \\+w after|strong=\"G3326\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w long|strong=\"G4183\"\\+w* \\+w time|strong=\"G5550\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w came|strong=\"G2064\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w settled|strong=\"G4868\"\\+w* \\+w accounts|strong=\"G3056\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w talents|strong=\"G5007\"\\+w* \\+w came|strong=\"G4334\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w brought|strong=\"G4374\"\\+w* \\+w another|strong=\"G3588\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w talents|strong=\"G5007\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w you|strong=\"G3004\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w talents|strong=\"G5007\"\\+w*. \\+w Behold|strong=\"G2396\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w gained|strong=\"G2770\"\\+w* \\+w another|strong=\"G3588\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w talents|strong=\"G5007\"\\+w* \\+w in|strong=\"G2532\"\\+w* addition \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*.’*" + }, + { + "verseNum": 21, + "text": "“\\+w His|strong=\"G1519\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w said|strong=\"G5346\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Well|strong=\"G2532\"\\+w* \\+w done|strong=\"G2095\"\\+w*, \\+w good|strong=\"G2095\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w servant|strong=\"G1401\"\\+w*. \\+w You|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w few|strong=\"G3641\"\\+w* \\+w things|strong=\"G3588\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w set|strong=\"G2525\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w things|strong=\"G3588\"\\+w*. \\+w Enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w joy|strong=\"G5479\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G2962\"\\+w* \\+w lord|strong=\"G2962\"\\+w*.’*" + }, + { + "verseNum": 22, + "text": "“\\+w He|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* got \\+w the|strong=\"G2532\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w talents|strong=\"G5007\"\\+w* \\+w came|strong=\"G4334\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w you|strong=\"G3004\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w talents|strong=\"G5007\"\\+w*. \\+w Behold|strong=\"G2396\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w gained|strong=\"G2770\"\\+w* \\+w another|strong=\"G3588\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w talents|strong=\"G5007\"\\+w* \\+w in|strong=\"G2532\"\\+w* addition \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*.’ *" + }, + { + "verseNum": 23, + "text": "“\\+w His|strong=\"G1519\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w said|strong=\"G5346\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Well|strong=\"G2532\"\\+w* \\+w done|strong=\"G2095\"\\+w*, \\+w good|strong=\"G2095\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w servant|strong=\"G1401\"\\+w*. \\+w You|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w few|strong=\"G3641\"\\+w* \\+w things|strong=\"G3588\"\\+w*. \\+w I|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w set|strong=\"G2525\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w things|strong=\"G3588\"\\+w*. \\+w Enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w joy|strong=\"G5479\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G2962\"\\+w* \\+w lord|strong=\"G2962\"\\+w*.’*" + }, + { + "verseNum": 24, + "text": "“\\+w He|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w talent|strong=\"G5007\"\\+w* \\+w came|strong=\"G4334\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w knew|strong=\"G1097\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w hard|strong=\"G4642\"\\+w* \\+w man|strong=\"G1520\"\\+w*, \\+w reaping|strong=\"G2325\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w you|strong=\"G4771\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w sow|strong=\"G4687\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w gathering|strong=\"G4863\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w you|strong=\"G4771\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w scatter|strong=\"G1287\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w I|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w went|strong=\"G2532\"\\+w* away \\+w and|strong=\"G2532\"\\+w* \\+w hid|strong=\"G2928\"\\+w* \\+w your|strong=\"G4674\"\\+w* \\+w talent|strong=\"G5007\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w*. \\+w Behold|strong=\"G2396\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w yours|strong=\"G4771\"\\+w*.’*" + }, + { + "verseNum": 26, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w answered|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w You|strong=\"G3754\"\\+w* \\+w wicked|strong=\"G4190\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w slothful|strong=\"G3636\"\\+w* \\+w servant|strong=\"G1401\"\\+w*. \\+w You|strong=\"G3754\"\\+w* \\+w knew|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w reap|strong=\"G2325\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w I|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w sow|strong=\"G4687\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w gather|strong=\"G4863\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w I|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w scatter|strong=\"G1287\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w You|strong=\"G4771\"\\+w* \\+w ought|strong=\"G1163\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* deposited \\+w my|strong=\"G1699\"\\+w* money \\+w with|strong=\"G4862\"\\+w* \\+w the|strong=\"G2532\"\\+w* bankers, \\+w and|strong=\"G2532\"\\+w* \\+w at|strong=\"G3588\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w should|strong=\"G1163\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w received|strong=\"G2865\"\\+w* \\+w back|strong=\"G2865\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w own|strong=\"G1699\"\\+w* \\+w with|strong=\"G4862\"\\+w* \\+w interest|strong=\"G5110\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w Take|strong=\"G2532\"\\+w* away \\+w therefore|strong=\"G3767\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w talent|strong=\"G5007\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w talents|strong=\"G5007\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w abundance|strong=\"G4052\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* taken away. *" + }, + { + "verseNum": 30, + "text": "\\+w Throw|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w the|strong=\"G2532\"\\+w* unprofitable \\+w servant|strong=\"G1401\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w outer|strong=\"G1857\"\\+w* \\+w darkness|strong=\"G4655\"\\+w*, \\+w where|strong=\"G1519\"\\+w* \\+w there|strong=\"G1563\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w weeping|strong=\"G2805\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gnashing|strong=\"G1030\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w teeth|strong=\"G3599\"\\+w*.’*" + }, + { + "verseNum": 31, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3956\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w glory|strong=\"G1391\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G1722\"\\+w* holy angels \\+w with|strong=\"G3326\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w sit|strong=\"G2523\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w throne|strong=\"G2362\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w glory|strong=\"G1391\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w Before|strong=\"G1715\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w gathered|strong=\"G4863\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* separate \\+w them|strong=\"G3588\"\\+w* \\+w one|strong=\"G3956\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w another|strong=\"G1438\"\\+w*, \\+w as|strong=\"G5618\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w shepherd|strong=\"G4166\"\\+w* separates \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w goats|strong=\"G2056\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w set|strong=\"G2476\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w on|strong=\"G1537\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w hand|strong=\"G1188\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w goats|strong=\"G2055\"\\+w* \\+w on|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w left|strong=\"G2176\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "\\+w Then|strong=\"G5119\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w King|strong=\"G3588\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w on|strong=\"G1537\"\\+w* \\+w his|strong=\"G3588\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w hand|strong=\"G1188\"\\+w*, ‘\\+w Come|strong=\"G1205\"\\+w*, \\+w blessed|strong=\"G2127\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w inherit|strong=\"G2816\"\\+w* \\+w the|strong=\"G1537\"\\+w* Kingdom \\+w prepared|strong=\"G2090\"\\+w* \\+w for|strong=\"G2090\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w foundation|strong=\"G2602\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w world|strong=\"G2889\"\\+w*; *" + }, + { + "verseNum": 35, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w hungry|strong=\"G3983\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1325\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w food|strong=\"G5315\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w thirsty|strong=\"G1372\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1325\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w drink|strong=\"G4222\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w stranger|strong=\"G3581\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1325\"\\+w* \\+w took|strong=\"G2532\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w in|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w naked|strong=\"G1131\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w clothed|strong=\"G4016\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* sick \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w visited|strong=\"G1980\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w prison|strong=\"G5438\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w*.’*" + }, + { + "verseNum": 37, + "text": "“\\+w Then|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* \\+w will|strong=\"G2532\"\\+w* answer \\+w him|strong=\"G3588\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w when|strong=\"G2532\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w we|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w hungry|strong=\"G3983\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w feed|strong=\"G5142\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w thirsty|strong=\"G1372\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w give|strong=\"G4222\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4222\"\\+w*? *" + }, + { + "verseNum": 38, + "text": "\\+w When|strong=\"G1161\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w we|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w as|strong=\"G1161\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w stranger|strong=\"G3581\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w take|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w in|strong=\"G2532\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w naked|strong=\"G1131\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w clothe|strong=\"G4016\"\\+w* \\+w you|strong=\"G4771\"\\+w*? *" + }, + { + "verseNum": 39, + "text": "\\+w When|strong=\"G1161\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w we|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w you|strong=\"G4771\"\\+w* sick \\+w or|strong=\"G2228\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w prison|strong=\"G5438\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G4771\"\\+w*?’*" + }, + { + "verseNum": 40, + "text": "“\\+w The|strong=\"G2532\"\\+w* \\+w King|strong=\"G3588\"\\+w* \\+w will|strong=\"G2532\"\\+w* answer \\+w them|strong=\"G3588\"\\+w*, ‘Most \\+w certainly|strong=\"G1909\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w because|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w least|strong=\"G1646\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w my|strong=\"G1473\"\\+w* brothers,*+ 25:40 The word for “brothers” here may be also correctly translated “brothers and sisters” or “siblings.”* \\+w you|strong=\"G5210\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*.’ *" + }, + { + "verseNum": 41, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w on|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w left|strong=\"G2176\"\\+w* \\+w hand|strong=\"G2176\"\\+w*, ‘\\+w Depart|strong=\"G4198\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w you|strong=\"G3004\"\\+w* \\+w cursed|strong=\"G2672\"\\+w*, \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* eternal \\+w fire|strong=\"G4442\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w prepared|strong=\"G2090\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w devil|strong=\"G1228\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w his|strong=\"G1519\"\\+w* angels; *" + }, + { + "verseNum": 42, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G2532\"\\+w* \\+w hungry|strong=\"G3983\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1325\"\\+w* didn’t \\+w give|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w food|strong=\"G5315\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w*; \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G2532\"\\+w* \\+w thirsty|strong=\"G1372\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1325\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w drink|strong=\"G4222\"\\+w*; *" + }, + { + "verseNum": 43, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w stranger|strong=\"G3581\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1722\"\\+w* didn’t \\+w take|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w*; \\+w naked|strong=\"G1131\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1722\"\\+w* didn’t \\+w clothe|strong=\"G4016\"\\+w* \\+w me|strong=\"G1473\"\\+w*; sick, \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w prison|strong=\"G5438\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1722\"\\+w* didn’t \\+w visit|strong=\"G1980\"\\+w* \\+w me|strong=\"G1473\"\\+w*.’*" + }, + { + "verseNum": 44, + "text": "“\\+w Then|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* answer, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w when|strong=\"G2532\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w we|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w hungry|strong=\"G3983\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w thirsty|strong=\"G1372\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w stranger|strong=\"G3581\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w naked|strong=\"G1131\"\\+w*, \\+w or|strong=\"G2228\"\\+w* sick, \\+w or|strong=\"G2228\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w prison|strong=\"G5438\"\\+w*, \\+w and|strong=\"G2532\"\\+w* didn’t help \\+w you|strong=\"G4771\"\\+w*?’*" + }, + { + "verseNum": 45, + "text": "“\\+w Then|strong=\"G5119\"\\+w* \\+w he|strong=\"G3778\"\\+w* \\+w will|strong=\"G1473\"\\+w* answer \\+w them|strong=\"G3588\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘Most \\+w certainly|strong=\"G1909\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w because|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w it|strong=\"G3778\"\\+w* \\+w to|strong=\"G1909\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1909\"\\+w* \\+w the|strong=\"G1909\"\\+w* \\+w least|strong=\"G1646\"\\+w* \\+w of|strong=\"G1909\"\\+w* \\+w these|strong=\"G3778\"\\+w*, \\+w you|strong=\"G5210\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w it|strong=\"G3778\"\\+w* \\+w to|strong=\"G1909\"\\+w* \\+w me|strong=\"G1473\"\\+w*.’ *" + }, + { + "verseNum": 46, + "text": "\\+w These|strong=\"G3778\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w go|strong=\"G1519\"\\+w* away \\+w into|strong=\"G1519\"\\+w* eternal \\+w punishment|strong=\"G2851\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* \\+w into|strong=\"G1519\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G3753\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* finished|strong=\"G5055\"* all|strong=\"G3956\"* these|strong=\"G3778\"* words|strong=\"G3056\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* his|strong=\"G3956\"* disciples|strong=\"G3101\"*," + }, + { + "verseNum": 2, + "text": "“\\+w You|strong=\"G3754\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w after|strong=\"G3326\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Passover|strong=\"G3957\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w coming|strong=\"G1096\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1519\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w crucified|strong=\"G4717\"\\+w*.”*" + }, + { + "verseNum": 3, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests, the|strong=\"G2532\"* scribes, and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* of|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"* were|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* in|strong=\"G1519\"* the|strong=\"G2532\"* court of|strong=\"G2532\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest, who|strong=\"G3588\"* was|strong=\"G3588\"* called|strong=\"G3004\"* Caiaphas|strong=\"G2533\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"G2532\"* took|strong=\"G2902\"* counsel|strong=\"G4823\"* together|strong=\"G4823\"* that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* take|strong=\"G2902\"* Jesus|strong=\"G2424\"* by|strong=\"G2532\"* deceit|strong=\"G1388\"* and|strong=\"G2532\"* kill him|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* they|strong=\"G1161\"* said|strong=\"G3004\"*, “Not|strong=\"G3361\"* during|strong=\"G1722\"* the|strong=\"G1722\"* feast|strong=\"G1859\"*, lest|strong=\"G3361\"* a|strong=\"G1096\"* riot|strong=\"G2351\"* occur|strong=\"G1096\"* among|strong=\"G1722\"* the|strong=\"G1722\"* people|strong=\"G2992\"*.”" + }, + { + "verseNum": 6, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* Jesus|strong=\"G2424\"* was|strong=\"G1096\"* in|strong=\"G1722\"* Bethany, in|strong=\"G1722\"* the|strong=\"G1722\"* house|strong=\"G3614\"* of|strong=\"G1722\"* Simon|strong=\"G4613\"* the|strong=\"G1722\"* leper|strong=\"G3015\"*," + }, + { + "verseNum": 7, + "text": "a|strong=\"G2192\"* woman|strong=\"G1135\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"* having|strong=\"G2192\"* an|strong=\"G2192\"* alabaster jar of|strong=\"G2532\"* very|strong=\"G2532\"* expensive|strong=\"G3464\"* ointment|strong=\"G3464\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* poured|strong=\"G2532\"* it|strong=\"G2532\"* on|strong=\"G1909\"* his|strong=\"G1909\"* head|strong=\"G2776\"* as|strong=\"G2532\"* he|strong=\"G2532\"* sat|strong=\"G2532\"* at|strong=\"G1909\"* the|strong=\"G2532\"* table." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* saw|strong=\"G3708\"* this|strong=\"G3778\"*, they|strong=\"G1161\"* were|strong=\"G3588\"* indignant, saying|strong=\"G3004\"*, “Why|strong=\"G5101\"* this|strong=\"G3778\"* waste?" + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* ointment might|strong=\"G1410\"* have|strong=\"G2532\"* been|strong=\"G2532\"* sold|strong=\"G4097\"* for|strong=\"G1063\"* much|strong=\"G4183\"* and|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2532\"* the|strong=\"G2532\"* poor|strong=\"G4434\"*.”" + }, + { + "verseNum": 10, + "text": "However|strong=\"G1161\"*, knowing|strong=\"G1097\"* this|strong=\"G3588\"*, Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w trouble|strong=\"G2873\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w woman|strong=\"G1135\"\\+w*? \\+w She|strong=\"G1161\"\\+w* \\+w has|strong=\"G5101\"\\+w* \\+w done|strong=\"G2038\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w work|strong=\"G2041\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w you|strong=\"G1438\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w poor|strong=\"G4434\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G1438\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G1438\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w in|strong=\"G1909\"\\+w* pouring \\+w this|strong=\"G3778\"\\+w* \\+w ointment|strong=\"G3464\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w body|strong=\"G4983\"\\+w*, \\+w she|strong=\"G1063\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w it|strong=\"G1063\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w prepare|strong=\"G1779\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w burial|strong=\"G1779\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w wherever|strong=\"G3699\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w Good|strong=\"G3588\"\\+w* \\+w News|strong=\"G2098\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w preached|strong=\"G2784\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w what|strong=\"G3739\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w woman|strong=\"G3778\"\\+w* \\+w has|strong=\"G3739\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w spoken|strong=\"G2980\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w as|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w memorial|strong=\"G3422\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w her|strong=\"G1437\"\\+w*.”*" + }, + { + "verseNum": 14, + "text": "Then|strong=\"G5119\"* one|strong=\"G1520\"* of|strong=\"G1520\"* the|strong=\"G4314\"* twelve|strong=\"G1427\"*, who|strong=\"G3588\"* was|strong=\"G3588\"* called|strong=\"G3004\"* Judas|strong=\"G2455\"* Iscariot|strong=\"G2469\"*, went|strong=\"G4198\"* to|strong=\"G4314\"* the|strong=\"G4314\"* chief priests" + }, + { + "verseNum": 15, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"*, “What|strong=\"G5101\"* are|strong=\"G3588\"* you|strong=\"G4771\"* willing|strong=\"G2309\"* to|strong=\"G2532\"* give|strong=\"G1325\"* me|strong=\"G1325\"* if|strong=\"G2532\"* I|strong=\"G1473\"* deliver|strong=\"G3860\"* him|strong=\"G3588\"* to|strong=\"G2532\"* you|strong=\"G4771\"*?” So|strong=\"G2532\"* they|strong=\"G2532\"* weighed|strong=\"G2476\"* out|strong=\"G2532\"* for|strong=\"G1161\"* him|strong=\"G3588\"* thirty|strong=\"G5144\"* pieces of|strong=\"G2532\"* silver." + }, + { + "verseNum": 16, + "text": "From|strong=\"G2532\"* that|strong=\"G2443\"* time|strong=\"G5119\"* he|strong=\"G2532\"* sought|strong=\"G2212\"* opportunity|strong=\"G2120\"* to|strong=\"G2443\"* betray|strong=\"G3860\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"G1161\"* on|strong=\"G1161\"* the|strong=\"G1161\"* first|strong=\"G4413\"* day|strong=\"G3588\"* of|strong=\"G2424\"* unleavened bread, the|strong=\"G1161\"* disciples|strong=\"G3101\"* came|strong=\"G4334\"* to|strong=\"G3004\"* Jesus|strong=\"G2424\"*, saying|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Where|strong=\"G4226\"* do|strong=\"G3004\"* you|strong=\"G4771\"* want|strong=\"G2309\"* us|strong=\"G3004\"* to|strong=\"G3004\"* prepare|strong=\"G2090\"* for|strong=\"G1161\"* you|strong=\"G4771\"* to|strong=\"G3004\"* eat|strong=\"G2068\"* the|strong=\"G1161\"* Passover|strong=\"G3957\"*?”" + }, + { + "verseNum": 18, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Go|strong=\"G5217\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w certain|strong=\"G2532\"\\+w* person, \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w The|strong=\"G2532\"\\+w* \\+w Teacher|strong=\"G1320\"\\+w* \\+w says|strong=\"G3004\"\\+w*, “\\+w My|strong=\"G1473\"\\+w* \\+w time|strong=\"G2540\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w at|strong=\"G1519\"\\+w* \\+w hand|strong=\"G1451\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w keep|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Passover|strong=\"G3957\"\\+w* \\+w at|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* house \\+w with|strong=\"G3326\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w disciples|strong=\"G3101\"\\+w*.”’”*" + }, + { + "verseNum": 19, + "text": "The|strong=\"G2532\"* disciples|strong=\"G3101\"* did|strong=\"G4160\"* as|strong=\"G5613\"* Jesus|strong=\"G2424\"* commanded|strong=\"G4929\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* prepared|strong=\"G2090\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"*." + }, + { + "verseNum": 20, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* evening|strong=\"G3798\"* had|strong=\"G3588\"* come|strong=\"G1096\"*, he|strong=\"G1161\"* was|strong=\"G1096\"* reclining at|strong=\"G1161\"* the|strong=\"G1161\"* table with|strong=\"G3326\"* the|strong=\"G1161\"* twelve|strong=\"G1427\"* disciples|strong=\"G3101\"*." + }, + { + "verseNum": 21, + "text": "As|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G2532\"* eating|strong=\"G2068\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Most|strong=\"G1537\"\\+w* \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w betray|strong=\"G3860\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "They|strong=\"G2532\"* were|strong=\"G1510\"* exceedingly|strong=\"G4970\"* sorrowful|strong=\"G3076\"*, and|strong=\"G2532\"* each|strong=\"G1538\"* began to|strong=\"G2532\"* ask|strong=\"G3004\"* him|strong=\"G2532\"*, “It|strong=\"G2532\"* isn’t me|strong=\"G1473\"*, is|strong=\"G1510\"* it|strong=\"G2532\"*, Lord|strong=\"G2962\"*?”" + }, + { + "verseNum": 23, + "text": "He|strong=\"G1161\"* answered|strong=\"G3004\"*, “\\+w He|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w dipped|strong=\"G1686\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w hand|strong=\"G5495\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* dish \\+w will|strong=\"G1473\"\\+w* \\+w betray|strong=\"G3860\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w The|strong=\"G1161\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3739\"\\+w* \\+w goes|strong=\"G5217\"\\+w* \\+w even|strong=\"G2531\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G3756\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w man|strong=\"G3739\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w betrayed|strong=\"G3860\"\\+w*! \\+w It|strong=\"G1161\"\\+w* \\+w would|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w better|strong=\"G2570\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w man|strong=\"G3739\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w had|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w born|strong=\"G1080\"\\+w*.”*" + }, + { + "verseNum": 25, + "text": "Judas|strong=\"G2455\"*, who|strong=\"G3588\"* betrayed|strong=\"G3860\"* him|strong=\"G3588\"*, answered|strong=\"G3004\"*, “It|strong=\"G1161\"* isn’t|strong=\"G3588\"* me|strong=\"G1473\"*, is|strong=\"G1510\"* it|strong=\"G1161\"*, Rabbi|strong=\"G4461\"*?”" + }, + { + "verseNum": 26, + "text": "As|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G1510\"* eating|strong=\"G2068\"*, Jesus|strong=\"G2424\"* took|strong=\"G2983\"* bread, gave|strong=\"G1325\"* thanks for|strong=\"G1161\"*+ 26:26 TR reads “blessed” instead of “gave thanks for”* it|strong=\"G2532\"*, and|strong=\"G2532\"* broke|strong=\"G2806\"* it|strong=\"G2532\"*. He|strong=\"G2532\"* gave|strong=\"G1325\"* to|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Take|strong=\"G2983\"\\+w*, \\+w eat|strong=\"G2068\"\\+w*; \\+w this|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1325\"\\+w* \\+w body|strong=\"G4983\"\\+w*.”*" + }, + { + "verseNum": 27, + "text": "He|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* cup|strong=\"G4221\"*, gave|strong=\"G1325\"* thanks|strong=\"G2168\"*, and|strong=\"G2532\"* gave|strong=\"G1325\"* to|strong=\"G2532\"* them|strong=\"G1325\"*, saying|strong=\"G3004\"*, “\\+w All|strong=\"G3956\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G1325\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w it|strong=\"G2532\"\\+w*, *" + }, + { + "verseNum": 28, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* blood \\+w of|strong=\"G4012\"\\+w* \\+w the|strong=\"G1519\"\\+w* new \\+w covenant|strong=\"G1242\"\\+w*, \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w poured|strong=\"G1632\"\\+w* \\+w out|strong=\"G1632\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1519\"\\+w* remission \\+w of|strong=\"G4012\"\\+w* sins. *" + }, + { + "verseNum": 29, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w fruit|strong=\"G1081\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* vine \\+w from|strong=\"G1537\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w on|strong=\"G1722\"\\+w*, \\+w until|strong=\"G2193\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w it|strong=\"G1161\"\\+w* anew \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s Kingdom.” *" + }, + { + "verseNum": 30, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* sung a|strong=\"G2532\"* hymn|strong=\"G5214\"*, they|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Mount|strong=\"G3735\"* of|strong=\"G2532\"* Olives|strong=\"G1636\"*." + }, + { + "verseNum": 31, + "text": "Then|strong=\"G2532\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w All|strong=\"G3956\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w made|strong=\"G3956\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w stumble|strong=\"G4624\"\\+w* \\+w because|strong=\"G1063\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w tonight|strong=\"G3571\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w strike|strong=\"G3960\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w shepherd|strong=\"G4166\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w flock|strong=\"G4167\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w scattered|strong=\"G1287\"\\+w*.’*+ 26:31 Zechariah 13:7*" + }, + { + "verseNum": 32, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w after|strong=\"G3326\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w raised|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w go|strong=\"G4254\"\\+w* \\+w before|strong=\"G4254\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w Galilee|strong=\"G1056\"\\+w*.” *" + }, + { + "verseNum": 33, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Even|strong=\"G1161\"* if|strong=\"G1487\"* all|strong=\"G3956\"* will|strong=\"G1473\"* be|strong=\"G3956\"* made|strong=\"G1161\"* to|strong=\"G3004\"* stumble|strong=\"G4624\"* because|strong=\"G1722\"* of|strong=\"G1722\"* you|strong=\"G4771\"*, I|strong=\"G1473\"* will|strong=\"G1473\"* never|strong=\"G3763\"* be|strong=\"G3956\"* made|strong=\"G1161\"* to|strong=\"G3004\"* stumble|strong=\"G4624\"*.”" + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Most certainly \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w tonight|strong=\"G3571\"\\+w*, \\+w before|strong=\"G4250\"\\+w* \\+w the|strong=\"G1722\"\\+w* rooster \\+w crows|strong=\"G5455\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w three|strong=\"G5151\"\\+w* \\+w times|strong=\"G5151\"\\+w*.”*" + }, + { + "verseNum": 35, + "text": "Peter|strong=\"G4074\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Even|strong=\"G2532\"* if|strong=\"G2579\"* I|strong=\"G1473\"* must|strong=\"G1163\"* die with|strong=\"G4862\"* you|strong=\"G4771\"*, I|strong=\"G1473\"* will|strong=\"G2532\"* not|strong=\"G3756\"* deny|strong=\"G3588\"* you|strong=\"G4771\"*.” All|strong=\"G3956\"* of|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* also|strong=\"G2532\"* said|strong=\"G3004\"* likewise|strong=\"G3668\"*." + }, + { + "verseNum": 36, + "text": "Then|strong=\"G2532\"* Jesus|strong=\"G2424\"* came|strong=\"G2064\"* with|strong=\"G3326\"* them|strong=\"G3588\"* to|strong=\"G1519\"* a|strong=\"G2532\"* place|strong=\"G1563\"* called|strong=\"G3004\"* Gethsemane|strong=\"G1068\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, “\\+w Sit|strong=\"G2523\"\\+w* \\+w here|strong=\"G1519\"\\+w*, \\+w while|strong=\"G2193\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w go|strong=\"G2064\"\\+w* \\+w there|strong=\"G1563\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w pray|strong=\"G4336\"\\+w*.”*" + }, + { + "verseNum": 37, + "text": "He|strong=\"G2532\"* took|strong=\"G3880\"* with|strong=\"G2532\"* him|strong=\"G3588\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* the|strong=\"G2532\"* two|strong=\"G1417\"* sons|strong=\"G5207\"* of|strong=\"G5207\"* Zebedee|strong=\"G2199\"*, and|strong=\"G2532\"* began to|strong=\"G2532\"* be|strong=\"G2532\"* sorrowful|strong=\"G3076\"* and|strong=\"G2532\"* severely troubled." + }, + { + "verseNum": 38, + "text": "Then|strong=\"G2532\"* Jesus|strong=\"G3004\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w My|strong=\"G1473\"\\+w* \\+w soul|strong=\"G5590\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w exceedingly|strong=\"G1510\"\\+w* \\+w sorrowful|strong=\"G4036\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w death|strong=\"G2288\"\\+w*. \\+w Stay|strong=\"G3306\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w watch|strong=\"G1127\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 39, + "text": "He|strong=\"G2532\"* went|strong=\"G4334\"* forward|strong=\"G4334\"* a|strong=\"G5613\"* little|strong=\"G3398\"*, fell|strong=\"G4098\"* on|strong=\"G1909\"* his|strong=\"G1909\"* face|strong=\"G4383\"*, and|strong=\"G2532\"* prayed|strong=\"G4336\"*, saying|strong=\"G3004\"*, “\\+w My|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w if|strong=\"G1487\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w possible|strong=\"G1415\"\\+w*, \\+w let|strong=\"G1510\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w pass|strong=\"G3928\"\\+w* \\+w away|strong=\"G3928\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*; \\+w nevertheless|strong=\"G4133\"\\+w*, \\+w not|strong=\"G3756\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w desire|strong=\"G2309\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w desire|strong=\"G2309\"\\+w*.”*" + }, + { + "verseNum": 40, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* found|strong=\"G2147\"* them|strong=\"G3588\"* sleeping|strong=\"G2518\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* Peter|strong=\"G4074\"*, “\\+w What|strong=\"G3588\"\\+w*, couldn’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w watch|strong=\"G1127\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w for|strong=\"G4314\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w hour|strong=\"G5610\"\\+w*? *" + }, + { + "verseNum": 41, + "text": "\\+w Watch|strong=\"G1127\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w pray|strong=\"G4336\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w temptation|strong=\"G3986\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w spirit|strong=\"G4151\"\\+w* \\+w indeed|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w willing|strong=\"G4289\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w is|strong=\"G3588\"\\+w* weak.”*" + }, + { + "verseNum": 42, + "text": "Again|strong=\"G3825\"*, a|strong=\"G1096\"* second|strong=\"G1208\"* time|strong=\"G1208\"* he|strong=\"G3778\"* went|strong=\"G3588\"* away|strong=\"G3928\"* and|strong=\"G3962\"* prayed|strong=\"G4336\"*, saying|strong=\"G3004\"*, “\\+w My|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w if|strong=\"G1487\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w cup|strong=\"G1410\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w pass|strong=\"G1096\"\\+w* \\+w away|strong=\"G3928\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w unless|strong=\"G1437\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w it|strong=\"G1487\"\\+w*, \\+w your|strong=\"G1437\"\\+w* \\+w desire|strong=\"G2307\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w done|strong=\"G1096\"\\+w*.” *" + }, + { + "verseNum": 43, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* again|strong=\"G3825\"* and|strong=\"G2532\"* found|strong=\"G2147\"* them|strong=\"G3588\"* sleeping|strong=\"G2518\"*, for|strong=\"G1063\"* their|strong=\"G1438\"* eyes|strong=\"G3788\"* were|strong=\"G1510\"* heavy." + }, + { + "verseNum": 44, + "text": "He|strong=\"G2532\"* left them|strong=\"G3588\"* again|strong=\"G3825\"*, went|strong=\"G2532\"* away, and|strong=\"G2532\"* prayed|strong=\"G4336\"* a|strong=\"G2532\"* third|strong=\"G5154\"* time|strong=\"G5154\"*, saying|strong=\"G3004\"* the|strong=\"G2532\"* same|strong=\"G2532\"* words|strong=\"G3056\"*." + }, + { + "verseNum": 45, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w still|strong=\"G2064\"\\+w* \\+w sleeping|strong=\"G2518\"\\+w* \\+w and|strong=\"G2532\"\\+w* resting? \\+w Behold|strong=\"G2400\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w at|strong=\"G1519\"\\+w* \\+w hand|strong=\"G5495\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1519\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w betrayed|strong=\"G3860\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w of|strong=\"G5207\"\\+w* sinners. *" + }, + { + "verseNum": 46, + "text": "\\+w Arise|strong=\"G1453\"\\+w*, let’s \\+w be|strong=\"G3588\"\\+w* going. \\+w Behold|strong=\"G2400\"\\+w*, \\+w he|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w betrays|strong=\"G3860\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w at|strong=\"G3588\"\\+w* \\+w hand|strong=\"G1448\"\\+w*.” *" + }, + { + "verseNum": 47, + "text": "While|strong=\"G2980\"* he|strong=\"G2532\"* was|strong=\"G3588\"* still|strong=\"G2089\"* speaking|strong=\"G2980\"*, behold|strong=\"G2400\"*, Judas|strong=\"G2455\"*, one|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*, came|strong=\"G2064\"*, and|strong=\"G2532\"* with|strong=\"G3326\"* him|strong=\"G3588\"* a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* with|strong=\"G3326\"* swords|strong=\"G3162\"* and|strong=\"G2532\"* clubs|strong=\"G3586\"*, from|strong=\"G2064\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* elders|strong=\"G4245\"* of|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"*." + }, + { + "verseNum": 48, + "text": "Now|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3739\"* betrayed|strong=\"G3860\"* him|strong=\"G3588\"* had|strong=\"G1510\"* given|strong=\"G1325\"* them|strong=\"G3588\"* a|strong=\"G1510\"* sign|strong=\"G4592\"*, saying|strong=\"G3004\"*, “Whoever|strong=\"G3739\"* I|strong=\"G3739\"* kiss|strong=\"G5368\"*, he|strong=\"G1161\"* is|strong=\"G1510\"* the|strong=\"G1161\"* one|strong=\"G3739\"*. Seize|strong=\"G2902\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 49, + "text": "Immediately|strong=\"G2112\"* he|strong=\"G2532\"* came|strong=\"G4334\"* to|strong=\"G2532\"* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Greetings|strong=\"G5463\"*, Rabbi|strong=\"G4461\"*!” and|strong=\"G2532\"* kissed|strong=\"G2705\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 50, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Friend|strong=\"G2083\"\\+w*, \\+w why|strong=\"G3739\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w here|strong=\"G3918\"\\+w*?”*" + }, + { + "verseNum": 51, + "text": "Behold|strong=\"G2400\"*, one|strong=\"G1520\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* with|strong=\"G3326\"* Jesus|strong=\"G2424\"* stretched|strong=\"G1614\"* out|strong=\"G2532\"* his|strong=\"G3708\"* hand|strong=\"G5495\"* and|strong=\"G2532\"* drew|strong=\"G2532\"* his|strong=\"G3708\"* sword|strong=\"G3162\"*, and|strong=\"G2532\"* struck|strong=\"G3960\"* the|strong=\"G2532\"* servant|strong=\"G1401\"* of|strong=\"G2532\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest, and|strong=\"G2532\"* cut|strong=\"G2532\"* off his|strong=\"G3708\"* ear|strong=\"G5621\"*." + }, + { + "verseNum": 52, + "text": "Then|strong=\"G5119\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “\\+w Put|strong=\"G3956\"\\+w* \\+w your|strong=\"G3956\"\\+w* \\+w sword|strong=\"G3162\"\\+w* \\+w back|strong=\"G1519\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w its|strong=\"G3956\"\\+w* \\+w place|strong=\"G5117\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w take|strong=\"G2983\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sword|strong=\"G3162\"\\+w* \\+w will|strong=\"G3956\"\\+w* die \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sword|strong=\"G3162\"\\+w*. *" + }, + { + "verseNum": 53, + "text": "\\+w Or|strong=\"G2228\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w think|strong=\"G1380\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* couldn’\\+w t|strong=\"G3588\"\\+w* \\+w ask|strong=\"G3870\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w now|strong=\"G2532\"\\+w* send \\+w me|strong=\"G1473\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w twelve|strong=\"G1427\"\\+w* \\+w legions|strong=\"G3003\"\\+w* \\+w of|strong=\"G2532\"\\+w* angels? *" + }, + { + "verseNum": 54, + "text": "\\+w How|strong=\"G4459\"\\+w* \\+w then|strong=\"G3767\"\\+w* \\+w would|strong=\"G1096\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Scriptures|strong=\"G1124\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w so|strong=\"G3779\"\\+w*?” *" + }, + { + "verseNum": 55, + "text": "In|strong=\"G1722\"* that|strong=\"G3588\"* hour|strong=\"G5610\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G1722\"* multitudes|strong=\"G3793\"*, “\\+w Have|strong=\"G2532\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w come|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w robber|strong=\"G3027\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w swords|strong=\"G3162\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w clubs|strong=\"G3586\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w seize|strong=\"G2902\"\\+w* \\+w me|strong=\"G1473\"\\+w*? \\+w I|strong=\"G1473\"\\+w* \\+w sat|strong=\"G2516\"\\+w* \\+w daily|strong=\"G2250\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w temple|strong=\"G2413\"\\+w* \\+w teaching|strong=\"G1321\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1722\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w arrest|strong=\"G2902\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 56, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w has|strong=\"G1096\"\\+w* \\+w happened|strong=\"G1096\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w Scriptures|strong=\"G1124\"\\+w* \\+w of|strong=\"G3956\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w might|strong=\"G3778\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w*.”*" + }, + { + "verseNum": 57, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2424\"* taken Jesus|strong=\"G2424\"* led|strong=\"G2424\"* him|strong=\"G3588\"* away to|strong=\"G4314\"* Caiaphas|strong=\"G2533\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest, where|strong=\"G3699\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* were|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"*." + }, + { + "verseNum": 58, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* followed him|strong=\"G3588\"* from|strong=\"G2532\"* a|strong=\"G2532\"* distance|strong=\"G3113\"* to|strong=\"G2532\"* the|strong=\"G2532\"* court of|strong=\"G2532\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest, and|strong=\"G2532\"* entered|strong=\"G1525\"* in|strong=\"G1525\"* and|strong=\"G2532\"* sat|strong=\"G2521\"* with|strong=\"G3326\"* the|strong=\"G2532\"* officers|strong=\"G5257\"*, to|strong=\"G2532\"* see|strong=\"G3708\"* the|strong=\"G2532\"* end|strong=\"G5056\"*." + }, + { + "verseNum": 59, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests, the|strong=\"G2532\"* elders, and|strong=\"G2532\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* council|strong=\"G4892\"* sought|strong=\"G2212\"* false|strong=\"G5577\"* testimony|strong=\"G5577\"* against|strong=\"G2596\"* Jesus|strong=\"G2424\"*, that|strong=\"G3588\"* they|strong=\"G2532\"* might|strong=\"G2532\"* put|strong=\"G2289\"* him|strong=\"G3588\"* to|strong=\"G2532\"* death|strong=\"G2289\"*," + }, + { + "verseNum": 60, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* found|strong=\"G2147\"* none|strong=\"G3756\"*. Even|strong=\"G2532\"* though|strong=\"G2532\"* many|strong=\"G4183\"* false|strong=\"G4183\"* witnesses|strong=\"G5575\"* came|strong=\"G4334\"* forward|strong=\"G4334\"*, they|strong=\"G2532\"* found|strong=\"G2147\"* none|strong=\"G3756\"*. But|strong=\"G1161\"* at|strong=\"G1161\"* last|strong=\"G5305\"* two|strong=\"G1417\"* false|strong=\"G4183\"* witnesses|strong=\"G5575\"* came|strong=\"G4334\"* forward|strong=\"G4334\"*" + }, + { + "verseNum": 61, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"*, “This|strong=\"G3778\"* man|strong=\"G3778\"* said|strong=\"G3004\"*, ‘I|strong=\"G2532\"* am|strong=\"G2532\"* able|strong=\"G1410\"* to|strong=\"G2532\"* destroy|strong=\"G2647\"* the|strong=\"G2532\"* temple|strong=\"G3485\"* of|strong=\"G2250\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* build|strong=\"G3618\"* it|strong=\"G2532\"* in|strong=\"G2532\"* three|strong=\"G5140\"* days|strong=\"G2250\"*.’”" + }, + { + "verseNum": 62, + "text": "The|strong=\"G2532\"* high|strong=\"G2532\"* priest stood|strong=\"G3588\"* up|strong=\"G2532\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Have|strong=\"G2532\"* you|strong=\"G4771\"* no|strong=\"G3762\"* answer? What|strong=\"G5101\"* is|strong=\"G3588\"* this|strong=\"G3778\"* that|strong=\"G3588\"* these|strong=\"G3778\"* testify|strong=\"G2649\"* against|strong=\"G2649\"* you|strong=\"G4771\"*?”" + }, + { + "verseNum": 63, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* stayed|strong=\"G1510\"* silent|strong=\"G4623\"*. The|strong=\"G2532\"* high|strong=\"G2532\"* priest answered|strong=\"G3004\"* him|strong=\"G3588\"*, “I|strong=\"G1473\"* adjure|strong=\"G1844\"* you|strong=\"G4771\"* by|strong=\"G2596\"* the|strong=\"G2532\"* living|strong=\"G2198\"* God|strong=\"G2316\"* that|strong=\"G2443\"* you|strong=\"G4771\"* tell|strong=\"G3004\"* us|strong=\"G3004\"* whether|strong=\"G1487\"* you|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*, the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 64, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w You|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w so|strong=\"G2532\"\\+w*. \\+w Nevertheless|strong=\"G4133\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w after|strong=\"G1909\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w sitting|strong=\"G2521\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w hand|strong=\"G1188\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Power|strong=\"G1411\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w clouds|strong=\"G3507\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w*.”*" + }, + { + "verseNum": 65, + "text": "Then|strong=\"G5119\"* the|strong=\"G3588\"* high priest tore|strong=\"G1284\"* his|strong=\"G3708\"* clothing|strong=\"G2440\"*, saying|strong=\"G3004\"*, “He|strong=\"G3588\"* has|strong=\"G2192\"* spoken|strong=\"G3004\"* blasphemy! Why|strong=\"G5101\"* do|strong=\"G5101\"* we|strong=\"G2192\"* need|strong=\"G5532\"* any|strong=\"G2089\"* more|strong=\"G2089\"* witnesses|strong=\"G3144\"*? Behold|strong=\"G2396\"*, now|strong=\"G3568\"* you|strong=\"G3004\"* have|strong=\"G2192\"* heard his|strong=\"G3708\"* blasphemy." + }, + { + "verseNum": 66, + "text": "What|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G5210\"* think|strong=\"G1380\"*?”" + }, + { + "verseNum": 67, + "text": "Then|strong=\"G2532\"* they|strong=\"G2532\"* spat|strong=\"G1716\"* in|strong=\"G1519\"* his|strong=\"G1519\"* face|strong=\"G4383\"* and|strong=\"G2532\"* beat|strong=\"G2852\"* him|strong=\"G3588\"* with|strong=\"G2532\"* their|strong=\"G2532\"* fists|strong=\"G2852\"*, and|strong=\"G2532\"* some|strong=\"G3588\"* slapped|strong=\"G4474\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 68, + "text": "saying|strong=\"G3004\"*, “Prophesy|strong=\"G4395\"* to|strong=\"G3004\"* us|strong=\"G3004\"*, you|strong=\"G4771\"* Christ|strong=\"G5547\"*! Who|strong=\"G5101\"* hit|strong=\"G3817\"* you|strong=\"G4771\"*?”" + }, + { + "verseNum": 69, + "text": "Now|strong=\"G1161\"* Peter|strong=\"G4074\"* was|strong=\"G1510\"* sitting|strong=\"G2521\"* outside|strong=\"G1854\"* in|strong=\"G1722\"* the|strong=\"G1722\"* court, and|strong=\"G2532\"* a|strong=\"G2532\"* maid|strong=\"G3814\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “You|strong=\"G4771\"* were|strong=\"G1510\"* also|strong=\"G2532\"* with|strong=\"G3326\"* Jesus|strong=\"G2424\"*, the|strong=\"G1722\"* Galilean|strong=\"G1057\"*!”" + }, + { + "verseNum": 70, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* denied it|strong=\"G1161\"* before|strong=\"G1715\"* them|strong=\"G3588\"* all|strong=\"G3956\"*, saying|strong=\"G3004\"*, “I|strong=\"G1161\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* what|strong=\"G5101\"* you|strong=\"G3004\"* are|strong=\"G3588\"* talking|strong=\"G3004\"* about|strong=\"G3588\"*.”" + }, + { + "verseNum": 71, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2424\"* gone|strong=\"G1831\"* out|strong=\"G1831\"* onto|strong=\"G1519\"* the|strong=\"G2532\"* porch|strong=\"G4440\"*, someone else|strong=\"G2532\"* saw|strong=\"G3708\"* him|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* there|strong=\"G1563\"*, “This|strong=\"G3778\"* man|strong=\"G3778\"* also|strong=\"G2532\"* was|strong=\"G1510\"* with|strong=\"G3326\"* Jesus|strong=\"G2424\"* of|strong=\"G2532\"* Nazareth|strong=\"G3480\"*.”" + }, + { + "verseNum": 72, + "text": "Again|strong=\"G3825\"* he|strong=\"G2532\"* denied it|strong=\"G2532\"* with|strong=\"G3326\"* an|strong=\"G2532\"* oath|strong=\"G3727\"*, “I|strong=\"G2532\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* the|strong=\"G2532\"* man|strong=\"G3756\"*.”" + }, + { + "verseNum": 73, + "text": "After|strong=\"G3326\"* a|strong=\"G2532\"* little|strong=\"G3398\"* while|strong=\"G3398\"* those|strong=\"G3588\"* who|strong=\"G3588\"* stood|strong=\"G2476\"* by|strong=\"G1537\"* came|strong=\"G4334\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* Peter|strong=\"G4074\"*, “Surely you|strong=\"G4771\"* are|strong=\"G1510\"* also|strong=\"G2532\"* one|strong=\"G3588\"* of|strong=\"G1537\"* them|strong=\"G3588\"*, for|strong=\"G1063\"* your|strong=\"G2532\"* speech|strong=\"G2981\"* makes|strong=\"G4160\"* you|strong=\"G4771\"* known.”" + }, + { + "verseNum": 74, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* began|strong=\"G5119\"* to|strong=\"G2532\"* curse|strong=\"G2653\"* and|strong=\"G2532\"* to|strong=\"G2532\"* swear|strong=\"G3660\"*, “I|strong=\"G2532\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* the|strong=\"G2532\"* man|strong=\"G3756\"*!”" + }, + { + "verseNum": 75, + "text": "Peter|strong=\"G4074\"* remembered|strong=\"G3403\"* the|strong=\"G2532\"* word|strong=\"G4487\"* which|strong=\"G3588\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Before|strong=\"G4250\"\\+w* \\+w the|strong=\"G2532\"\\+w* rooster \\+w crows|strong=\"G5455\"\\+w*, \\+w you|strong=\"G3754\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w three|strong=\"G5151\"\\+w* \\+w times|strong=\"G5151\"\\+w*.”* Then|strong=\"G2532\"* he|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* wept|strong=\"G2799\"* bitterly|strong=\"G4090\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* morning|strong=\"G4405\"* had|strong=\"G2424\"* come|strong=\"G1096\"*, all|strong=\"G3956\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* of|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"* took|strong=\"G2983\"* counsel|strong=\"G4824\"* against|strong=\"G2596\"* Jesus|strong=\"G2424\"* to|strong=\"G2532\"* put|strong=\"G2289\"* him|strong=\"G3588\"* to|strong=\"G2532\"* death|strong=\"G2289\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"G2532\"* bound|strong=\"G1210\"* him|strong=\"G3588\"*, led him|strong=\"G3588\"* away, and|strong=\"G2532\"* delivered|strong=\"G3860\"* him|strong=\"G3588\"* up|strong=\"G3860\"* to|strong=\"G2532\"* Pontius Pilate|strong=\"G4091\"*, the|strong=\"G2532\"* governor|strong=\"G2232\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"G2532\"* Judas|strong=\"G2455\"*, who|strong=\"G3588\"* betrayed|strong=\"G3860\"* him|strong=\"G3588\"*, when|strong=\"G2532\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* Jesus|strong=\"G2532\"* was|strong=\"G3588\"* condemned|strong=\"G2632\"*, felt|strong=\"G3338\"* remorse|strong=\"G3338\"*, and|strong=\"G2532\"* brought|strong=\"G3748\"* back|strong=\"G4762\"* the|strong=\"G2532\"* thirty|strong=\"G5144\"* pieces of|strong=\"G2532\"* silver to|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* elders|strong=\"G4245\"*," + }, + { + "verseNum": 4, + "text": "saying|strong=\"G3004\"*, “I|strong=\"G1473\"* have|strong=\"G1473\"* sinned in|strong=\"G4314\"* that|strong=\"G3588\"* I|strong=\"G1473\"* betrayed|strong=\"G3860\"* innocent blood.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"G2532\"* threw|strong=\"G4496\"* down|strong=\"G4496\"* the|strong=\"G2532\"* pieces of|strong=\"G2532\"* silver in|strong=\"G1519\"* the|strong=\"G2532\"* sanctuary|strong=\"G3485\"* and|strong=\"G2532\"* departed. Then|strong=\"G2532\"* he|strong=\"G2532\"* went|strong=\"G2532\"* away and|strong=\"G2532\"* hanged himself|strong=\"G1519\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"G1519\"* chief priests took|strong=\"G2983\"* the|strong=\"G1519\"* pieces of|strong=\"G3588\"* silver and|strong=\"G1161\"* said|strong=\"G3004\"*, “It|strong=\"G1161\"*’s not|strong=\"G3756\"* lawful|strong=\"G1832\"* to|strong=\"G1519\"* put|strong=\"G1519\"* them|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G1519\"* treasury|strong=\"G2878\"*, since|strong=\"G1893\"* it|strong=\"G1161\"* is|strong=\"G1510\"* the|strong=\"G1519\"* price|strong=\"G5092\"* of|strong=\"G3588\"* blood.”" + }, + { + "verseNum": 7, + "text": "They|strong=\"G1161\"* took|strong=\"G2983\"* counsel|strong=\"G4824\"*, and|strong=\"G1161\"* bought the|strong=\"G1519\"* potter|strong=\"G2763\"*’s field with|strong=\"G1537\"* them|strong=\"G3588\"* to|strong=\"G1519\"* bury|strong=\"G5027\"* strangers|strong=\"G3581\"* in|strong=\"G1519\"*." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G1352\"* that|strong=\"G3588\"* field has been called|strong=\"G2564\"* “The|strong=\"G3588\"* Field of|strong=\"G3588\"* Blood” to|strong=\"G2193\"* this|strong=\"G3588\"* day|strong=\"G4594\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"G2532\"* that|strong=\"G3739\"* which|strong=\"G3739\"* was|strong=\"G3588\"* spoken|strong=\"G3004\"* through|strong=\"G1223\"* Jeremiah|strong=\"G2408\"*+ 27:9 some manuscripts omit “Jeremiah”* the|strong=\"G2532\"* prophet|strong=\"G4396\"* was|strong=\"G3588\"* fulfilled|strong=\"G4137\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* gave|strong=\"G1325\"* them|strong=\"G3588\"* for|strong=\"G1519\"* the|strong=\"G2532\"* potter|strong=\"G2763\"*’s|strong=\"G2962\"* field," + }, + { + "verseNum": 11, + "text": "Now|strong=\"G1161\"* Jesus|strong=\"G2424\"* stood|strong=\"G2476\"* before|strong=\"G1715\"* the|strong=\"G2532\"* governor|strong=\"G2232\"*; and|strong=\"G2532\"* the|strong=\"G2532\"* governor|strong=\"G2232\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Are|strong=\"G1510\"* you|strong=\"G4771\"* the|strong=\"G2532\"* King|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*?”" + }, + { + "verseNum": 12, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3588\"* accused|strong=\"G2723\"* by|strong=\"G1722\"* the|strong=\"G1722\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* elders|strong=\"G4245\"*, he|strong=\"G2532\"* answered nothing|strong=\"G3762\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"G5119\"* Pilate|strong=\"G4091\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Don’t|strong=\"G3588\"* you|strong=\"G4771\"* hear how|strong=\"G4214\"* many|strong=\"G4214\"* things|strong=\"G3588\"* they|strong=\"G3588\"* testify|strong=\"G2649\"* against|strong=\"G2649\"* you|strong=\"G4771\"*?”" + }, + { + "verseNum": 14, + "text": "He|strong=\"G2532\"* gave|strong=\"G2532\"* him|strong=\"G3588\"* no|strong=\"G3756\"* answer, not|strong=\"G3756\"* even|strong=\"G2532\"* one|strong=\"G1520\"* word|strong=\"G4487\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* the|strong=\"G2532\"* governor|strong=\"G2232\"* marveled|strong=\"G2296\"* greatly|strong=\"G3029\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"G1161\"* at|strong=\"G2596\"* the|strong=\"G1161\"* feast|strong=\"G1859\"* the|strong=\"G1161\"* governor|strong=\"G2232\"* was|strong=\"G3588\"* accustomed|strong=\"G1486\"* to|strong=\"G2596\"* release to|strong=\"G2596\"* the|strong=\"G1161\"* multitude|strong=\"G3793\"* one|strong=\"G1520\"* prisoner|strong=\"G1198\"* whom|strong=\"G3739\"* they|strong=\"G1161\"* desired|strong=\"G2309\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"G1161\"* had|strong=\"G2192\"* then|strong=\"G5119\"* a|strong=\"G2192\"* notable|strong=\"G1978\"* prisoner|strong=\"G1198\"* called|strong=\"G3004\"* Barabbas." + }, + { + "verseNum": 17, + "text": "When|strong=\"G3767\"* therefore|strong=\"G3767\"* they|strong=\"G3588\"* were|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"*, Pilate|strong=\"G4091\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “Whom|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G5210\"* want|strong=\"G2309\"* me|strong=\"G3004\"* to|strong=\"G3004\"* release to|strong=\"G3004\"* you|strong=\"G5210\"*? Barabbas, or|strong=\"G2228\"* Jesus|strong=\"G2424\"* who|strong=\"G5101\"* is|strong=\"G3588\"* called|strong=\"G3004\"* Christ|strong=\"G5547\"*?”" + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* he|strong=\"G3754\"* knew|strong=\"G1492\"* that|strong=\"G3754\"* because|strong=\"G3754\"* of|strong=\"G1223\"* envy|strong=\"G5355\"* they|strong=\"G3754\"* had|strong=\"G3748\"* delivered|strong=\"G3860\"* him|strong=\"G3860\"* up|strong=\"G3860\"*." + }, + { + "verseNum": 19, + "text": "While|strong=\"G1161\"* he|strong=\"G2532\"* was|strong=\"G3588\"* sitting|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* judgment seat, his|strong=\"G1223\"* wife|strong=\"G1135\"* sent|strong=\"G2532\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Have|strong=\"G2532\"* nothing|strong=\"G3367\"* to|strong=\"G4314\"* do|strong=\"G2532\"* with|strong=\"G4314\"* that|strong=\"G3588\"* righteous|strong=\"G1342\"* man|strong=\"G3367\"*, for|strong=\"G1063\"* I|strong=\"G2532\"* have|strong=\"G2532\"* suffered|strong=\"G3958\"* many|strong=\"G4183\"* things|strong=\"G3588\"* today|strong=\"G4594\"* in|strong=\"G1909\"* a|strong=\"G2532\"* dream|strong=\"G3677\"* because|strong=\"G1223\"* of|strong=\"G1223\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 20, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* persuaded|strong=\"G3982\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* to|strong=\"G2443\"* ask for|strong=\"G1161\"* Barabbas and|strong=\"G2532\"* destroy Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* governor|strong=\"G2232\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “Which|strong=\"G3588\"* of|strong=\"G3588\"* the|strong=\"G1161\"* two|strong=\"G1417\"* do|strong=\"G5101\"* you|strong=\"G5210\"* want|strong=\"G2309\"* me|strong=\"G3004\"* to|strong=\"G3004\"* release to|strong=\"G3004\"* you|strong=\"G5210\"*?”" + }, + { + "verseNum": 22, + "text": "Pilate|strong=\"G4091\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “What|strong=\"G5101\"* then|strong=\"G3767\"* shall|strong=\"G5101\"* I|strong=\"G3767\"* do|strong=\"G4160\"* to|strong=\"G3004\"* Jesus|strong=\"G2424\"* who|strong=\"G5101\"* is|strong=\"G3588\"* called|strong=\"G3004\"* Christ|strong=\"G5547\"*?”" + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* governor said|strong=\"G3004\"*, “Why|strong=\"G5101\"*? What|strong=\"G5101\"* evil|strong=\"G2556\"* has|strong=\"G5101\"* he|strong=\"G1161\"* done|strong=\"G4160\"*?”" + }, + { + "verseNum": 24, + "text": "So|strong=\"G1161\"* when|strong=\"G1161\"* Pilate|strong=\"G4091\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* nothing|strong=\"G3762\"* was|strong=\"G1510\"* being|strong=\"G1510\"* gained, but|strong=\"G1161\"* rather|strong=\"G3123\"* that|strong=\"G3754\"* a|strong=\"G1096\"* disturbance was|strong=\"G1510\"* starting|strong=\"G1096\"*, he|strong=\"G1161\"* took|strong=\"G2983\"* water|strong=\"G5204\"* and|strong=\"G1161\"* washed his|strong=\"G2983\"* hands|strong=\"G5495\"* before|strong=\"G3588\"* the|strong=\"G1161\"* multitude|strong=\"G3793\"*, saying|strong=\"G3004\"*, “I|strong=\"G1161\"* am|strong=\"G1510\"* innocent of|strong=\"G5495\"* the|strong=\"G1161\"* blood of|strong=\"G5495\"* this|strong=\"G3778\"* righteous person|strong=\"G3778\"*. You|strong=\"G5210\"* see|strong=\"G3708\"* to|strong=\"G3004\"* it|strong=\"G3754\"*.”" + }, + { + "verseNum": 25, + "text": "All|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"* answered|strong=\"G3004\"*, “May|strong=\"G2532\"* his|strong=\"G3956\"* blood be|strong=\"G2532\"* on|strong=\"G1909\"* us|strong=\"G3004\"* and|strong=\"G2532\"* on|strong=\"G1909\"* our|strong=\"G2532\"* children|strong=\"G5043\"*!”" + }, + { + "verseNum": 26, + "text": "Then|strong=\"G5119\"* he|strong=\"G1161\"* released|strong=\"G5119\"* Barabbas to|strong=\"G2443\"* them|strong=\"G3588\"*, but|strong=\"G1161\"* Jesus|strong=\"G2424\"* he|strong=\"G1161\"* flogged|strong=\"G5417\"* and|strong=\"G1161\"* delivered|strong=\"G3860\"* to|strong=\"G2443\"* be|strong=\"G2443\"* crucified|strong=\"G4717\"*." + }, + { + "verseNum": 27, + "text": "Then|strong=\"G5119\"* the|strong=\"G1519\"* governor|strong=\"G2232\"*’s soldiers|strong=\"G4757\"* took|strong=\"G3880\"* Jesus|strong=\"G2424\"* into|strong=\"G1519\"* the|strong=\"G1519\"* Praetorium|strong=\"G4232\"*, and|strong=\"G2424\"* gathered|strong=\"G4863\"* the|strong=\"G1519\"* whole|strong=\"G3650\"* garrison together|strong=\"G4863\"* against|strong=\"G1909\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"G2532\"* stripped|strong=\"G1562\"* him|strong=\"G2532\"* and|strong=\"G2532\"* put|strong=\"G4060\"* a|strong=\"G2532\"* scarlet|strong=\"G2847\"* robe|strong=\"G5511\"* on|strong=\"G2532\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 29, + "text": "They|strong=\"G2532\"* braided|strong=\"G4120\"* a|strong=\"G2532\"* crown|strong=\"G4735\"* of|strong=\"G1537\"* thorns and|strong=\"G2532\"* put|strong=\"G2007\"* it|strong=\"G2532\"* on|strong=\"G1909\"* his|strong=\"G2007\"* head|strong=\"G2776\"*, and|strong=\"G2532\"* a|strong=\"G2532\"* reed|strong=\"G2563\"* in|strong=\"G1722\"* his|strong=\"G2007\"* right|strong=\"G1188\"* hand|strong=\"G1188\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* kneeled|strong=\"G1120\"* down|strong=\"G1120\"* before|strong=\"G1715\"* him|strong=\"G3588\"* and|strong=\"G2532\"* mocked|strong=\"G1702\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Hail|strong=\"G5463\"*, King|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"*!”" + }, + { + "verseNum": 30, + "text": "They|strong=\"G2532\"* spat|strong=\"G1716\"* on|strong=\"G1519\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* reed|strong=\"G2563\"* and|strong=\"G2532\"* struck|strong=\"G5180\"* him|strong=\"G3588\"* on|strong=\"G1519\"* the|strong=\"G2532\"* head|strong=\"G2776\"*." + }, + { + "verseNum": 31, + "text": "When|strong=\"G3753\"* they|strong=\"G2532\"* had|strong=\"G2532\"* mocked|strong=\"G1702\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* took|strong=\"G2532\"* the|strong=\"G2532\"* robe|strong=\"G2440\"* off|strong=\"G1562\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* put|strong=\"G1746\"* his|strong=\"G1519\"* clothes|strong=\"G2440\"* on|strong=\"G1519\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* led him|strong=\"G3588\"* away to|strong=\"G1519\"* crucify|strong=\"G4717\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 32, + "text": "As|strong=\"G1161\"* they|strong=\"G1161\"* came|strong=\"G1831\"* out|strong=\"G1831\"*, they|strong=\"G1161\"* found|strong=\"G2147\"* a|strong=\"G2147\"* man|strong=\"G3778\"* of|strong=\"G3686\"* Cyrene|strong=\"G2956\"*, Simon|strong=\"G4613\"* by|strong=\"G3686\"* name|strong=\"G3686\"*, and|strong=\"G1161\"* they|strong=\"G1161\"* compelled him|strong=\"G3588\"* to|strong=\"G2443\"* go|strong=\"G1831\"* with|strong=\"G3588\"* them|strong=\"G3588\"*, that|strong=\"G2443\"* he|strong=\"G1161\"* might|strong=\"G3778\"* carry his|strong=\"G3588\"* cross|strong=\"G4716\"*." + }, + { + "verseNum": 33, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* a|strong=\"G2532\"* place|strong=\"G5117\"* called|strong=\"G3004\"* “Golgotha|strong=\"G1115\"*”, that|strong=\"G3739\"* is|strong=\"G1510\"* to|strong=\"G1519\"* say|strong=\"G3004\"*, “The|strong=\"G2532\"* place|strong=\"G5117\"* of|strong=\"G2532\"* a|strong=\"G2532\"* skull|strong=\"G2898\"*,”" + }, + { + "verseNum": 34, + "text": "they|strong=\"G2532\"* gave|strong=\"G1325\"* him|strong=\"G1325\"* sour wine|strong=\"G3631\"*+ 27:34 or, vinegar* to|strong=\"G2532\"* drink|strong=\"G4095\"* mixed|strong=\"G3396\"* with|strong=\"G3326\"* gall|strong=\"G5521\"*.+ 27:34 Gall is a bitter-tasting, dark green oil from a wormwood plant that is alcoholic in its effect.* When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* tasted|strong=\"G1089\"* it|strong=\"G2532\"*, he|strong=\"G2532\"* would|strong=\"G2309\"* not|strong=\"G3756\"* drink|strong=\"G4095\"*." + }, + { + "verseNum": 35, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G3588\"* crucified|strong=\"G4717\"* him|strong=\"G3588\"*, they|strong=\"G1161\"* divided|strong=\"G1266\"* his|strong=\"G3588\"* clothing|strong=\"G2440\"* among|strong=\"G1266\"* them|strong=\"G3588\"*, casting lots|strong=\"G2819\"*,+ 27:35 TR adds “that it might be fulfilled which was spoken by the prophet: ‘They divided my garments among them, and for my clothing they cast lots;’” [see Psalms 22:18 and John 19:24]*" + }, + { + "verseNum": 36, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* sat|strong=\"G2521\"* and|strong=\"G2532\"* watched|strong=\"G5083\"* him|strong=\"G2532\"* there|strong=\"G1563\"*." + }, + { + "verseNum": 37, + "text": "They|strong=\"G2532\"* set|strong=\"G2532\"* up|strong=\"G2532\"* over|strong=\"G1883\"* his|strong=\"G2007\"* head|strong=\"G2776\"* the|strong=\"G2532\"* accusation against him|strong=\"G3588\"* written|strong=\"G1125\"*, “THIS|strong=\"G3778\"* IS|strong=\"G1510\"* JESUS|strong=\"G2424\"*, THE|strong=\"G2532\"* KING|strong=\"G3588\"* OF|strong=\"G2532\"* THE|strong=\"G2532\"* JEWS|strong=\"G2453\"*.”" + }, + { + "verseNum": 38, + "text": "Then|strong=\"G2532\"* there|strong=\"G2532\"* were|strong=\"G2532\"* two|strong=\"G1417\"* robbers|strong=\"G3027\"* crucified|strong=\"G4717\"* with|strong=\"G4862\"* him|strong=\"G2532\"*, one|strong=\"G1520\"* on|strong=\"G1537\"* his|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* and|strong=\"G2532\"* one|strong=\"G1520\"* on|strong=\"G1537\"* the|strong=\"G2532\"* left|strong=\"G2176\"*." + }, + { + "verseNum": 39, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* passed|strong=\"G3588\"* by|strong=\"G3899\"* blasphemed him|strong=\"G3588\"*, wagging|strong=\"G2795\"* their|strong=\"G3588\"* heads|strong=\"G2776\"*" + }, + { + "verseNum": 40, + "text": "and|strong=\"G2532\"* saying|strong=\"G3004\"*, “You|strong=\"G1487\"* who|strong=\"G3588\"* destroy|strong=\"G2647\"* the|strong=\"G1722\"* temple|strong=\"G3485\"* and|strong=\"G2532\"* build|strong=\"G3618\"* it|strong=\"G2532\"* in|strong=\"G1722\"* three|strong=\"G5140\"* days|strong=\"G2250\"*, save|strong=\"G4982\"* yourself|strong=\"G4572\"*! If|strong=\"G1487\"* you|strong=\"G1487\"* are|strong=\"G1510\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, come|strong=\"G2597\"* down|strong=\"G2597\"* from|strong=\"G2597\"* the|strong=\"G1722\"* cross|strong=\"G4716\"*!”" + }, + { + "verseNum": 41, + "text": "Likewise|strong=\"G3668\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests also|strong=\"G2532\"* mocking|strong=\"G1702\"* with|strong=\"G3326\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"*, the|strong=\"G2532\"* Pharisees,+ 27:41 TR omits “the Pharisees”* and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*, said|strong=\"G3004\"*," + }, + { + "verseNum": 42, + "text": "“He|strong=\"G2532\"* saved|strong=\"G4982\"* others|strong=\"G3588\"*, but|strong=\"G2532\"* he|strong=\"G2532\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* save|strong=\"G4982\"* himself|strong=\"G1438\"*. If|strong=\"G2532\"* he|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* King|strong=\"G3588\"* of|strong=\"G2532\"* Israel|strong=\"G2474\"*, let|strong=\"G1510\"* him|strong=\"G3588\"* come|strong=\"G2597\"* down|strong=\"G2597\"* from|strong=\"G2597\"* the|strong=\"G2532\"* cross|strong=\"G4716\"* now|strong=\"G3568\"*, and|strong=\"G2532\"* we|strong=\"G2532\"* will|strong=\"G1510\"* believe|strong=\"G4100\"* in|strong=\"G1909\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 43, + "text": "He|strong=\"G3754\"* trusts|strong=\"G3982\"* in|strong=\"G1909\"* God|strong=\"G2316\"*. Let|strong=\"G1510\"* God|strong=\"G2316\"* deliver|strong=\"G4506\"* him|strong=\"G3588\"* now|strong=\"G3568\"*, if|strong=\"G1487\"* he|strong=\"G3754\"* wants|strong=\"G2309\"* him|strong=\"G3588\"*; for|strong=\"G1063\"* he|strong=\"G3754\"* said|strong=\"G3004\"*, ‘I|strong=\"G1063\"* am|strong=\"G1510\"* the|strong=\"G1909\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*.’”" + }, + { + "verseNum": 44, + "text": "The|strong=\"G2532\"* robbers|strong=\"G3027\"* also|strong=\"G2532\"* who|strong=\"G3588\"* were|strong=\"G3588\"* crucified|strong=\"G4957\"* with|strong=\"G4862\"* him|strong=\"G3588\"* cast|strong=\"G2532\"* on|strong=\"G1161\"* him|strong=\"G3588\"* the|strong=\"G2532\"* same|strong=\"G2532\"* reproach|strong=\"G3679\"*." + }, + { + "verseNum": 45, + "text": "Now|strong=\"G1161\"* from|strong=\"G3588\"* the|strong=\"G3956\"* sixth|strong=\"G1623\"* hour|strong=\"G5610\"*+ 27:45 noon* there|strong=\"G1161\"* was|strong=\"G1096\"* darkness|strong=\"G4655\"* over|strong=\"G1909\"* all|strong=\"G3956\"* the|strong=\"G3956\"* land|strong=\"G1093\"* until|strong=\"G2193\"* the|strong=\"G3956\"* ninth|strong=\"G1766\"* hour|strong=\"G5610\"*.+ 27:45 3:00 p.m.*" + }, + { + "verseNum": 46, + "text": "About|strong=\"G4012\"* the|strong=\"G1161\"* ninth|strong=\"G1766\"* hour|strong=\"G5610\"* Jesus|strong=\"G2424\"* cried|strong=\"G5610\"* with|strong=\"G2316\"* a|strong=\"G1510\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, saying|strong=\"G3004\"*, “\\+w Eli|strong=\"G2241\"\\+w*, \\+w Eli|strong=\"G2241\"\\+w*, lima*+ 27:46 TR reads “lama” instead of “lima”* \\+w sabachthani|strong=\"G4518\"\\+w*?” * That|strong=\"G3588\"* is|strong=\"G1510\"*, “\\+w My|strong=\"G1473\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w my|strong=\"G1473\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w why|strong=\"G2444\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w forsaken|strong=\"G1459\"\\+w* \\+w me|strong=\"G1473\"\\+w*?”*+ 27:46 Psalms 22:1*" + }, + { + "verseNum": 47, + "text": "Some|strong=\"G5100\"* of|strong=\"G5100\"* them|strong=\"G3588\"* who|strong=\"G3588\"* stood|strong=\"G2476\"* there|strong=\"G1563\"*, when|strong=\"G1161\"* they|strong=\"G1161\"* heard it|strong=\"G3754\"*, said|strong=\"G3004\"*, “This|strong=\"G3778\"* man|strong=\"G5100\"* is|strong=\"G3588\"* calling|strong=\"G5455\"* Elijah|strong=\"G2243\"*.”" + }, + { + "verseNum": 48, + "text": "Immediately|strong=\"G2112\"* one|strong=\"G1520\"* of|strong=\"G1537\"* them|strong=\"G2532\"* ran|strong=\"G5143\"* and|strong=\"G2532\"* took|strong=\"G2983\"* a|strong=\"G2532\"* sponge|strong=\"G4699\"*, filled|strong=\"G4130\"* it|strong=\"G2532\"* with|strong=\"G1537\"* vinegar|strong=\"G3690\"*, put|strong=\"G4060\"* it|strong=\"G2532\"* on|strong=\"G1537\"* a|strong=\"G2532\"* reed|strong=\"G2563\"*, and|strong=\"G2532\"* gave|strong=\"G4222\"* him|strong=\"G2532\"* a|strong=\"G2532\"* drink|strong=\"G4222\"*." + }, + { + "verseNum": 49, + "text": "The|strong=\"G1161\"* rest|strong=\"G3062\"* said|strong=\"G3004\"*, “Let|strong=\"G1161\"* him|strong=\"G3588\"* be|strong=\"G3588\"*. Let|strong=\"G1161\"*’s see|strong=\"G3708\"* whether|strong=\"G1487\"* Elijah|strong=\"G2243\"* comes|strong=\"G2064\"* to|strong=\"G3004\"* save|strong=\"G4982\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 50, + "text": "Jesus|strong=\"G2424\"* cried|strong=\"G2896\"* again|strong=\"G3825\"* with|strong=\"G4151\"* a|strong=\"G1161\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, and|strong=\"G1161\"* yielded up his|strong=\"G3588\"* spirit|strong=\"G4151\"*." + }, + { + "verseNum": 51, + "text": "Behold|strong=\"G2400\"*, the|strong=\"G2532\"* veil|strong=\"G2665\"* of|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G3485\"* was|strong=\"G3588\"* torn|strong=\"G4977\"* in|strong=\"G1519\"* two|strong=\"G1417\"* from|strong=\"G2532\"* the|strong=\"G2532\"* top to|strong=\"G1519\"* the|strong=\"G2532\"* bottom|strong=\"G2736\"*. The|strong=\"G2532\"* earth|strong=\"G1093\"* quaked and|strong=\"G2532\"* the|strong=\"G2532\"* rocks|strong=\"G4073\"* were|strong=\"G3588\"* split|strong=\"G4977\"*." + }, + { + "verseNum": 52, + "text": "The|strong=\"G2532\"* tombs|strong=\"G3419\"* were|strong=\"G3588\"* opened, and|strong=\"G2532\"* many|strong=\"G4183\"* bodies|strong=\"G4983\"* of|strong=\"G2532\"* the|strong=\"G2532\"* saints who|strong=\"G3588\"* had|strong=\"G2532\"* fallen|strong=\"G2837\"* asleep|strong=\"G2837\"* were|strong=\"G3588\"* raised|strong=\"G1453\"*;" + }, + { + "verseNum": 53, + "text": "and|strong=\"G2532\"* coming|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* tombs|strong=\"G3419\"* after|strong=\"G3326\"* his|strong=\"G1519\"* resurrection|strong=\"G1454\"*, they|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* holy city|strong=\"G4172\"* and|strong=\"G2532\"* appeared|strong=\"G1718\"* to|strong=\"G1519\"* many|strong=\"G4183\"*." + }, + { + "verseNum": 54, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* centurion|strong=\"G1543\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G3588\"* watching|strong=\"G5083\"* Jesus|strong=\"G2424\"*, when|strong=\"G1161\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* earthquake|strong=\"G4578\"* and|strong=\"G2532\"* the|strong=\"G2532\"* things|strong=\"G3778\"* that|strong=\"G3588\"* were|strong=\"G1510\"* done|strong=\"G1096\"*, were|strong=\"G1510\"* terrified|strong=\"G5399\"*, saying|strong=\"G3004\"*, “Truly|strong=\"G1161\"* this|strong=\"G3778\"* was|strong=\"G1510\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 55, + "text": "Many|strong=\"G4183\"* women|strong=\"G1135\"* were|strong=\"G1510\"* there|strong=\"G1563\"* watching|strong=\"G2334\"* from|strong=\"G3588\"* afar|strong=\"G3113\"*, who|strong=\"G3588\"* had|strong=\"G2424\"* followed Jesus|strong=\"G2424\"* from|strong=\"G3588\"* Galilee|strong=\"G1056\"*, serving|strong=\"G1247\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 56, + "text": "Among|strong=\"G1722\"* them|strong=\"G3588\"* were|strong=\"G1510\"* Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"*, Mary|strong=\"G3137\"* the|strong=\"G1722\"* mother|strong=\"G3384\"* of|strong=\"G5207\"* James|strong=\"G2385\"* and|strong=\"G2532\"* Joses, and|strong=\"G2532\"* the|strong=\"G1722\"* mother|strong=\"G3384\"* of|strong=\"G5207\"* the|strong=\"G1722\"* sons|strong=\"G5207\"* of|strong=\"G5207\"* Zebedee|strong=\"G2199\"*." + }, + { + "verseNum": 57, + "text": "When|strong=\"G1161\"* evening|strong=\"G3798\"* had|strong=\"G2424\"* come|strong=\"G2064\"*, a|strong=\"G1096\"* rich|strong=\"G4145\"* man|strong=\"G4145\"* from|strong=\"G2064\"* Arimathaea named|strong=\"G5122\"* Joseph|strong=\"G2501\"*, who|strong=\"G3739\"* himself was|strong=\"G1096\"* also|strong=\"G2532\"* Jesus|strong=\"G2424\"*’ disciple|strong=\"G3100\"*, came|strong=\"G2064\"*." + }, + { + "verseNum": 58, + "text": "This|strong=\"G3778\"* man|strong=\"G3778\"* went|strong=\"G4334\"* to|strong=\"G4334\"* Pilate|strong=\"G4091\"* and|strong=\"G4334\"* asked for|strong=\"G3778\"* Jesus|strong=\"G2424\"*’ body|strong=\"G4983\"*. Then|strong=\"G5119\"* Pilate|strong=\"G4091\"* commanded|strong=\"G2753\"* the|strong=\"G3588\"* body|strong=\"G4983\"* to|strong=\"G4334\"* be|strong=\"G3588\"* given up|strong=\"G4334\"*." + }, + { + "verseNum": 59, + "text": "Joseph|strong=\"G2501\"* took|strong=\"G2983\"* the|strong=\"G2532\"* body|strong=\"G4983\"* and|strong=\"G2532\"* wrapped|strong=\"G1794\"* it|strong=\"G2532\"* in|strong=\"G2532\"* a|strong=\"G2532\"* clean|strong=\"G2513\"* linen|strong=\"G4616\"* cloth|strong=\"G4616\"*" + }, + { + "verseNum": 60, + "text": "and|strong=\"G2532\"* laid|strong=\"G5087\"* it|strong=\"G2532\"* in|strong=\"G1722\"* his|strong=\"G1722\"* own new|strong=\"G2537\"* tomb|strong=\"G3419\"*, which|strong=\"G3739\"* he|strong=\"G2532\"* had|strong=\"G2532\"* cut|strong=\"G2532\"* out|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* rock|strong=\"G4073\"*. Then|strong=\"G2532\"* he|strong=\"G2532\"* rolled|strong=\"G4351\"* a|strong=\"G2532\"* large|strong=\"G3173\"* stone|strong=\"G3037\"* against|strong=\"G1722\"* the|strong=\"G1722\"* door|strong=\"G2374\"* of|strong=\"G2532\"* the|strong=\"G1722\"* tomb|strong=\"G3419\"*, and|strong=\"G2532\"* departed." + }, + { + "verseNum": 61, + "text": "Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"* was|strong=\"G1510\"* there|strong=\"G1563\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* other|strong=\"G1161\"* Mary|strong=\"G3137\"*, sitting|strong=\"G2521\"* opposite the|strong=\"G2532\"* tomb." + }, + { + "verseNum": 62, + "text": "Now|strong=\"G1161\"* on|strong=\"G1161\"* the|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"*, which|strong=\"G3588\"* was|strong=\"G1510\"* the|strong=\"G2532\"* day|strong=\"G1887\"* after|strong=\"G3326\"* the|strong=\"G2532\"* Preparation|strong=\"G3904\"* Day|strong=\"G1887\"*, the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* were|strong=\"G1510\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* to|strong=\"G4314\"* Pilate|strong=\"G4091\"*," + }, + { + "verseNum": 63, + "text": "saying|strong=\"G3004\"*, “Sir|strong=\"G2962\"*, we|strong=\"G3754\"* remember|strong=\"G3403\"* what|strong=\"G3588\"* that|strong=\"G3754\"* deceiver|strong=\"G4108\"* said|strong=\"G3004\"* while|strong=\"G2250\"* he|strong=\"G3754\"* was|strong=\"G3588\"* still|strong=\"G2089\"* alive|strong=\"G2198\"*: ‘After|strong=\"G3326\"* three|strong=\"G5140\"* days|strong=\"G2250\"* I|strong=\"G3754\"* will|strong=\"G2962\"* rise|strong=\"G1453\"* again|strong=\"G1453\"*.’" + }, + { + "verseNum": 64, + "text": "Command|strong=\"G3004\"* therefore|strong=\"G3767\"* that|strong=\"G3588\"* the|strong=\"G2532\"* tomb be|strong=\"G1510\"* made|strong=\"G4413\"* secure until|strong=\"G2193\"* the|strong=\"G2532\"* third|strong=\"G5154\"* day|strong=\"G2250\"*, lest|strong=\"G3379\"* perhaps|strong=\"G3379\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"* come|strong=\"G2064\"* at|strong=\"G2250\"* night and|strong=\"G2532\"* steal|strong=\"G2813\"* him|strong=\"G3588\"* away|strong=\"G2813\"*, and|strong=\"G2532\"* tell|strong=\"G3004\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, ‘He|strong=\"G2532\"* is|strong=\"G1510\"* risen|strong=\"G1453\"* from|strong=\"G2064\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*;’ and|strong=\"G2532\"* the|strong=\"G2532\"* last|strong=\"G2078\"* deception|strong=\"G4106\"* will|strong=\"G1510\"* be|strong=\"G1510\"* worse|strong=\"G5501\"* than|strong=\"G2532\"* the|strong=\"G2532\"* first|strong=\"G4413\"*.”" + }, + { + "verseNum": 65, + "text": "Pilate|strong=\"G4091\"* said|strong=\"G5346\"* to|strong=\"G2192\"* them|strong=\"G3588\"*, “You|strong=\"G5613\"* have|strong=\"G2192\"* a|strong=\"G2192\"* guard|strong=\"G2892\"*. Go|strong=\"G5217\"*, make it|strong=\"G5613\"* as|strong=\"G5613\"* secure as|strong=\"G5613\"* you|strong=\"G5613\"* can|strong=\"G1492\"*.”" + }, + { + "verseNum": 66, + "text": "So|strong=\"G1161\"* they|strong=\"G1161\"* went|strong=\"G4198\"* with|strong=\"G3326\"* the|strong=\"G1161\"* guard|strong=\"G2892\"* and|strong=\"G1161\"* made|strong=\"G1161\"* the|strong=\"G1161\"* tomb secure, sealing|strong=\"G4972\"* the|strong=\"G1161\"* stone|strong=\"G3037\"*." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* after|strong=\"G1161\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"*, as|strong=\"G1519\"* it|strong=\"G2532\"* began|strong=\"G1161\"* to|strong=\"G1519\"* dawn|strong=\"G2020\"* on|strong=\"G1519\"* the|strong=\"G2532\"* first|strong=\"G1520\"* day|strong=\"G4521\"* of|strong=\"G2532\"* the|strong=\"G2532\"* week|strong=\"G4521\"*, Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"* and|strong=\"G2532\"* the|strong=\"G2532\"* other|strong=\"G1161\"* Mary|strong=\"G3137\"* came|strong=\"G2064\"* to|strong=\"G1519\"* see|strong=\"G2334\"* the|strong=\"G2532\"* tomb." + }, + { + "verseNum": 2, + "text": "Behold|strong=\"G2400\"*, there|strong=\"G2532\"* was|strong=\"G1096\"* a|strong=\"G1096\"* great|strong=\"G3173\"* earthquake|strong=\"G4578\"*, for|strong=\"G1063\"* an|strong=\"G2532\"* angel|strong=\"G2597\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* descended|strong=\"G2597\"* from|strong=\"G1537\"* the|strong=\"G2532\"* sky|strong=\"G3772\"* and|strong=\"G2532\"* came|strong=\"G4334\"* and|strong=\"G2532\"* rolled|strong=\"G3037\"* away the|strong=\"G2532\"* stone|strong=\"G3037\"* from|strong=\"G1537\"* the|strong=\"G2532\"* door and|strong=\"G2532\"* sat|strong=\"G2521\"* on|strong=\"G1537\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 3, + "text": "His|strong=\"G2532\"* appearance|strong=\"G2397\"* was|strong=\"G1510\"* like|strong=\"G5613\"* lightning, and|strong=\"G2532\"* his|strong=\"G2532\"* clothing|strong=\"G1742\"* white|strong=\"G3022\"* as|strong=\"G5613\"* snow|strong=\"G5510\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1161\"* fear|strong=\"G5401\"* of|strong=\"G2532\"* him|strong=\"G3588\"*, the|strong=\"G2532\"* guards|strong=\"G5083\"* shook|strong=\"G4579\"*, and|strong=\"G2532\"* became|strong=\"G1096\"* like|strong=\"G5613\"* dead|strong=\"G3498\"* men|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"G1161\"* angel answered|strong=\"G3004\"* the|strong=\"G1161\"* women|strong=\"G1135\"*, “Don’t|strong=\"G3588\"* be|strong=\"G3361\"* afraid|strong=\"G5399\"*, for|strong=\"G1063\"* I|strong=\"G1161\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G5210\"* seek|strong=\"G2212\"* Jesus|strong=\"G2424\"*, who|strong=\"G3588\"* has|strong=\"G3748\"* been|strong=\"G3361\"* crucified|strong=\"G4717\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"G3588\"* is|strong=\"G1510\"* not|strong=\"G3756\"* here|strong=\"G5602\"*, for|strong=\"G1063\"* he|strong=\"G3588\"* has|strong=\"G3708\"* risen|strong=\"G1453\"*, just|strong=\"G2531\"* like|strong=\"G2531\"* he|strong=\"G3588\"* said|strong=\"G3004\"*. Come|strong=\"G1205\"*, see|strong=\"G3708\"* the|strong=\"G3588\"* place|strong=\"G5117\"* where|strong=\"G3699\"* the|strong=\"G3588\"* Lord|strong=\"G3588\"* was|strong=\"G1510\"* lying|strong=\"G2749\"*." + }, + { + "verseNum": 7, + "text": "Go|strong=\"G4198\"* quickly|strong=\"G5035\"* and|strong=\"G2532\"* tell|strong=\"G3004\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, ‘He|strong=\"G2532\"* has|strong=\"G3708\"* risen|strong=\"G1453\"* from|strong=\"G2532\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, and|strong=\"G2532\"* behold|strong=\"G2400\"*, he|strong=\"G2532\"* goes|strong=\"G4198\"* before|strong=\"G4254\"* you|strong=\"G5210\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*; there|strong=\"G1563\"* you|strong=\"G5210\"* will|strong=\"G2532\"* see|strong=\"G3708\"* him|strong=\"G3588\"*.’ Behold|strong=\"G2400\"*, I|strong=\"G2532\"* have|strong=\"G2532\"* told|strong=\"G3004\"* you|strong=\"G5210\"*.”" + }, + { + "verseNum": 8, + "text": "They|strong=\"G2532\"* departed quickly|strong=\"G5035\"* from|strong=\"G2532\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"* with|strong=\"G3326\"* fear|strong=\"G5401\"* and|strong=\"G2532\"* great|strong=\"G3173\"* joy|strong=\"G5479\"*, and|strong=\"G2532\"* ran|strong=\"G5143\"* to|strong=\"G2532\"* bring|strong=\"G2532\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"* word|strong=\"G3588\"*." + }, + { + "verseNum": 9, + "text": "As|strong=\"G1161\"* they|strong=\"G2532\"* went|strong=\"G4334\"* to|strong=\"G2532\"* tell|strong=\"G3004\"* his|strong=\"G3708\"* disciples|strong=\"G3588\"*, behold|strong=\"G2400\"*, Jesus|strong=\"G2424\"* met|strong=\"G5221\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w Rejoice|strong=\"G5463\"\\+w*!”*" + }, + { + "verseNum": 10, + "text": "Then|strong=\"G2532\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*. \\+w Go|strong=\"G5217\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w my|strong=\"G3708\"\\+w* brothers *+ 28:10 The word for “brothers” here may be also correctly translated “brothers and sisters” or “siblings.”* \\+w that|strong=\"G2443\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w Galilee|strong=\"G1056\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w there|strong=\"G1563\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 11, + "text": "Now|strong=\"G1161\"* while|strong=\"G1161\"* they|strong=\"G1161\"* were|strong=\"G3588\"* going|strong=\"G4198\"*, behold|strong=\"G2400\"*, some|strong=\"G5100\"* of|strong=\"G5100\"* the|strong=\"G1519\"* guards came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G1519\"* city|strong=\"G4172\"* and|strong=\"G1161\"* told the|strong=\"G1519\"* chief priests all|strong=\"G1161\"* the|strong=\"G1519\"* things|strong=\"G3588\"* that|strong=\"G3588\"* had|strong=\"G3588\"* happened|strong=\"G1096\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* assembled|strong=\"G4863\"* with|strong=\"G3326\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* and|strong=\"G2532\"* had|strong=\"G2532\"* taken|strong=\"G2983\"* counsel|strong=\"G4824\"*, they|strong=\"G2532\"* gave|strong=\"G1325\"* a|strong=\"G2532\"* large|strong=\"G2425\"* amount of|strong=\"G2532\"* silver to|strong=\"G2532\"* the|strong=\"G2532\"* soldiers|strong=\"G4757\"*," + }, + { + "verseNum": 13, + "text": "saying|strong=\"G3004\"*, “Say|strong=\"G3004\"* that|strong=\"G3754\"* his|strong=\"G3754\"* disciples|strong=\"G3101\"* came|strong=\"G2064\"* by|strong=\"G3004\"* night|strong=\"G3571\"* and|strong=\"G2064\"* stole|strong=\"G2813\"* him|strong=\"G3588\"* away|strong=\"G2813\"* while|strong=\"G2837\"* we|strong=\"G2249\"* slept|strong=\"G2837\"*." + }, + { + "verseNum": 14, + "text": "If|strong=\"G1437\"* this|strong=\"G3778\"* comes|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* governor|strong=\"G2232\"*’s ears, we|strong=\"G2249\"* will|strong=\"G2532\"* persuade|strong=\"G3982\"* him|strong=\"G3588\"* and|strong=\"G2532\"* make|strong=\"G4160\"* you|strong=\"G5210\"* free of|strong=\"G2532\"* worry.”" + }, + { + "verseNum": 15, + "text": "So|strong=\"G2532\"* they|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* money and|strong=\"G2532\"* did|strong=\"G4160\"* as|strong=\"G5613\"* they|strong=\"G2532\"* were|strong=\"G3588\"* told. This|strong=\"G3778\"* saying|strong=\"G3056\"* was|strong=\"G3588\"* spread|strong=\"G1310\"* abroad|strong=\"G1310\"* among|strong=\"G3844\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, and|strong=\"G2532\"* continues until|strong=\"G3360\"* today|strong=\"G4594\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* the|strong=\"G1519\"* eleven|strong=\"G1733\"* disciples|strong=\"G3101\"* went|strong=\"G4198\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*, to|strong=\"G1519\"* the|strong=\"G1519\"* mountain|strong=\"G3735\"* where|strong=\"G3757\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* sent|strong=\"G2424\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* bowed|strong=\"G4352\"* down|strong=\"G4352\"* to|strong=\"G2532\"* him|strong=\"G3588\"*; but|strong=\"G1161\"* some|strong=\"G3588\"* doubted|strong=\"G1365\"*." + }, + { + "verseNum": 18, + "text": "Jesus|strong=\"G2424\"* came|strong=\"G4334\"* to|strong=\"G2532\"* them|strong=\"G3588\"* and|strong=\"G2532\"* spoke|strong=\"G2980\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w All|strong=\"G3956\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w has|strong=\"G2532\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w Go|strong=\"G4198\"\\+w**+ 28:19 TR and NU add “therefore”* \\+w and|strong=\"G2532\"\\+w* \\+w make|strong=\"G1519\"\\+w* \\+w disciples|strong=\"G3100\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w nations|strong=\"G1484\"\\+w*, baptizing \\+w them|strong=\"G3588\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w*, *" + }, + { + "verseNum": 20, + "text": "\\+w teaching|strong=\"G1321\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w observe|strong=\"G5083\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w commanded|strong=\"G1781\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w always|strong=\"G3956\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w end|strong=\"G4930\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w the|strong=\"G2532\"\\+w* age.”* Amen." + } + ] + } + ] + }, + { + "name": "Mark", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"G3588\"* beginning of|strong=\"G2098\"* the|strong=\"G3588\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G2098\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, the|strong=\"G3588\"* Son of|strong=\"G2098\"* God|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "As|strong=\"G2531\"* it|strong=\"G2531\"* is|strong=\"G3588\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"*," + }, + { + "verseNum": 3, + "text": "the|strong=\"G1722\"* voice|strong=\"G5456\"* of|strong=\"G2962\"* one|strong=\"G3588\"* crying in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"*," + }, + { + "verseNum": 4, + "text": "John|strong=\"G2491\"* came|strong=\"G1096\"* baptizing+ 1:4 or, immersing* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"* and|strong=\"G2532\"* preaching|strong=\"G2784\"* the|strong=\"G1722\"* baptism of|strong=\"G2532\"* repentance|strong=\"G3341\"* for|strong=\"G1519\"* forgiveness of|strong=\"G2532\"* sins." + }, + { + "verseNum": 5, + "text": "All|strong=\"G3956\"* the|strong=\"G1722\"* country|strong=\"G5561\"* of|strong=\"G5259\"* Judea|strong=\"G2449\"* and|strong=\"G2532\"* all|strong=\"G3956\"* those|strong=\"G3588\"* of|strong=\"G5259\"* Jerusalem|strong=\"G2415\"* went|strong=\"G2532\"* out|strong=\"G1607\"* to|strong=\"G4314\"* him|strong=\"G3588\"*. They|strong=\"G2532\"* were|strong=\"G3588\"* baptized by|strong=\"G1722\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Jordan|strong=\"G2446\"* river|strong=\"G4215\"*, confessing|strong=\"G1843\"* their|strong=\"G2532\"* sins." + }, + { + "verseNum": 6, + "text": "John|strong=\"G2491\"* was|strong=\"G1510\"* clothed|strong=\"G1746\"* with|strong=\"G2532\"* camel|strong=\"G2574\"*’s hair|strong=\"G2359\"* and|strong=\"G2532\"* a|strong=\"G2532\"* leather|strong=\"G1193\"* belt|strong=\"G2223\"* around|strong=\"G4012\"* his|strong=\"G4012\"* waist|strong=\"G3751\"*. He|strong=\"G2532\"* ate|strong=\"G2068\"* locusts and|strong=\"G2532\"* wild|strong=\"G2532\"* honey|strong=\"G3192\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"G2532\"* preached|strong=\"G2784\"*, saying|strong=\"G3004\"*, “After|strong=\"G3694\"* me|strong=\"G1473\"* comes|strong=\"G2064\"* he|strong=\"G2532\"* who|strong=\"G3739\"* is|strong=\"G1510\"* mightier|strong=\"G2478\"* than|strong=\"G2478\"* I|strong=\"G1473\"*, the|strong=\"G2532\"* strap of|strong=\"G2532\"* whose|strong=\"G3739\"* sandals|strong=\"G5266\"* I|strong=\"G1473\"* am|strong=\"G1510\"* not|strong=\"G3756\"* worthy|strong=\"G2425\"* to|strong=\"G2532\"* stoop|strong=\"G2955\"* down|strong=\"G3089\"* and|strong=\"G2532\"* loosen." + }, + { + "verseNum": 8, + "text": "I|strong=\"G1473\"* baptized you|strong=\"G5210\"* in|strong=\"G1722\"*+ 1:8 The Greek word (en) translated here as “in” could also be translated as “with” in some contexts.* water|strong=\"G5204\"*, but|strong=\"G1161\"* he|strong=\"G1161\"* will|strong=\"G1473\"* baptize you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*.”" + }, + { + "verseNum": 9, + "text": "In|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"*, Jesus|strong=\"G2424\"* came|strong=\"G2064\"* from|strong=\"G2064\"* Nazareth|strong=\"G3478\"* of|strong=\"G5259\"* Galilee|strong=\"G1056\"*, and|strong=\"G2532\"* was|strong=\"G1096\"* baptized by|strong=\"G1722\"* John|strong=\"G2491\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Jordan|strong=\"G2446\"*." + }, + { + "verseNum": 10, + "text": "Immediately|strong=\"G2112\"* coming|strong=\"G2597\"* up|strong=\"G1519\"* from|strong=\"G1537\"* the|strong=\"G2532\"* water|strong=\"G5204\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* heavens|strong=\"G3772\"* parting and|strong=\"G2532\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* descending|strong=\"G2597\"* on|strong=\"G1519\"* him|strong=\"G3588\"* like|strong=\"G5613\"* a|strong=\"G5613\"* dove|strong=\"G4058\"*." + }, + { + "verseNum": 11, + "text": "A|strong=\"G1096\"* voice|strong=\"G5456\"* came|strong=\"G1096\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* sky|strong=\"G3772\"*, “You|strong=\"G4771\"* are|strong=\"G1510\"* my|strong=\"G1722\"* beloved Son|strong=\"G5207\"*, in|strong=\"G1722\"* whom|strong=\"G3588\"* I|strong=\"G1473\"* am|strong=\"G1510\"* well|strong=\"G2532\"* pleased|strong=\"G2106\"*.”" + }, + { + "verseNum": 12, + "text": "Immediately|strong=\"G2112\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* drove|strong=\"G1544\"* him|strong=\"G3588\"* out|strong=\"G1544\"* into|strong=\"G1519\"* the|strong=\"G2532\"* wilderness|strong=\"G2048\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* was|strong=\"G1510\"* there|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"* forty|strong=\"G5062\"* days|strong=\"G2250\"*, tempted|strong=\"G3985\"* by|strong=\"G1722\"* Satan|strong=\"G4567\"*. He|strong=\"G2532\"* was|strong=\"G1510\"* with|strong=\"G3326\"* the|strong=\"G1722\"* wild|strong=\"G2342\"* animals; and|strong=\"G2532\"* the|strong=\"G1722\"* angels were|strong=\"G1510\"* serving|strong=\"G1247\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"G1161\"* after|strong=\"G3326\"* John|strong=\"G2491\"* was|strong=\"G3588\"* taken|strong=\"G3860\"* into|strong=\"G1519\"* custody|strong=\"G3860\"*, Jesus|strong=\"G2424\"* came|strong=\"G2064\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*, preaching|strong=\"G2784\"* the|strong=\"G2532\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G2316\"* God|strong=\"G2316\"*’s Kingdom," + }, + { + "verseNum": 15, + "text": "and|strong=\"G2532\"* saying|strong=\"G3004\"*, “\\+w The|strong=\"G1722\"\\+w* \\+w time|strong=\"G2540\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w is|strong=\"G3588\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w hand|strong=\"G1448\"\\+w*! \\+w Repent|strong=\"G3340\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Good|strong=\"G3588\"\\+w* \\+w News|strong=\"G2098\"\\+w*.”*" + }, + { + "verseNum": 16, + "text": "Passing|strong=\"G3855\"* along|strong=\"G2532\"* by|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"* of|strong=\"G2532\"* Galilee|strong=\"G1056\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* Simon|strong=\"G4613\"* and|strong=\"G2532\"* Andrew, the|strong=\"G1722\"* brother of|strong=\"G2532\"* Simon|strong=\"G4613\"*, casting a|strong=\"G2532\"* net into|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*, for|strong=\"G1063\"* they|strong=\"G2532\"* were|strong=\"G1510\"* fishermen." + }, + { + "verseNum": 17, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Come|strong=\"G1096\"\\+w* \\+w after|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w into|strong=\"G1096\"\\+w* fishers \\+w for|strong=\"G2532\"\\+w* \\+w men|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 18, + "text": "Immediately|strong=\"G2112\"* they|strong=\"G2532\"* left their|strong=\"G2532\"* nets|strong=\"G1350\"*, and|strong=\"G2532\"* followed him|strong=\"G3588\"*." + }, + { + "verseNum": 19, + "text": "Going|strong=\"G2532\"* on|strong=\"G1722\"* a|strong=\"G2532\"* little|strong=\"G3641\"* further|strong=\"G3641\"* from|strong=\"G2532\"* there|strong=\"G2532\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* James|strong=\"G2385\"* the|strong=\"G1722\"* son of|strong=\"G2532\"* Zebedee|strong=\"G2199\"*, and|strong=\"G2532\"* John|strong=\"G2491\"* his|strong=\"G1438\"* brother, who|strong=\"G3588\"* were|strong=\"G3588\"* also|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* boat|strong=\"G4143\"* mending|strong=\"G2675\"* the|strong=\"G1722\"* nets|strong=\"G1350\"*." + }, + { + "verseNum": 20, + "text": "Immediately|strong=\"G2112\"* he|strong=\"G2532\"* called|strong=\"G2564\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* left their|strong=\"G1438\"* father|strong=\"G3962\"*, Zebedee|strong=\"G2199\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* boat|strong=\"G4143\"* with|strong=\"G3326\"* the|strong=\"G1722\"* hired|strong=\"G3411\"* servants|strong=\"G3411\"*, and|strong=\"G2532\"* went|strong=\"G2532\"* after|strong=\"G3326\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"G2532\"* went|strong=\"G2532\"* into|strong=\"G1519\"* Capernaum|strong=\"G2584\"*, and|strong=\"G2532\"* immediately|strong=\"G2112\"* on|strong=\"G1519\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"* he|strong=\"G2532\"* entered|strong=\"G1531\"* into|strong=\"G1519\"* the|strong=\"G2532\"* synagogue|strong=\"G4864\"* and|strong=\"G2532\"* taught|strong=\"G1321\"*." + }, + { + "verseNum": 22, + "text": "They|strong=\"G2532\"* were|strong=\"G1510\"* astonished|strong=\"G1605\"* at|strong=\"G1909\"* his|strong=\"G1438\"* teaching|strong=\"G1321\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* taught|strong=\"G1321\"* them|strong=\"G3588\"* as|strong=\"G5613\"* having|strong=\"G2192\"* authority|strong=\"G1849\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* as|strong=\"G5613\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"*." + }, + { + "verseNum": 23, + "text": "Immediately|strong=\"G2112\"* there|strong=\"G2532\"* was|strong=\"G1510\"* in|strong=\"G1722\"* their|strong=\"G2532\"* synagogue|strong=\"G4864\"* a|strong=\"G2532\"* man with|strong=\"G1722\"* an|strong=\"G2532\"* unclean spirit|strong=\"G4151\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* cried|strong=\"G2532\"* out|strong=\"G2532\"*," + }, + { + "verseNum": 24, + "text": "saying|strong=\"G3004\"*, “Ha! What|strong=\"G5101\"* do|strong=\"G5101\"* we|strong=\"G2249\"* have|strong=\"G2532\"* to|strong=\"G2532\"* do|strong=\"G5101\"* with|strong=\"G2532\"* you|strong=\"G4771\"*, Jesus|strong=\"G2424\"*, you|strong=\"G4771\"* Nazarene|strong=\"G3479\"*? Have|strong=\"G2532\"* you|strong=\"G4771\"* come|strong=\"G2064\"* to|strong=\"G2532\"* destroy us|strong=\"G3004\"*? I|strong=\"G1473\"* know|strong=\"G1492\"* who|strong=\"G5101\"* you|strong=\"G4771\"* are|strong=\"G1510\"*: the|strong=\"G2532\"* Holy One|strong=\"G3588\"* of|strong=\"G2316\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 25, + "text": "Jesus|strong=\"G2424\"* rebuked|strong=\"G2008\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w Be|strong=\"G2532\"\\+w* \\+w quiet|strong=\"G5392\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w come|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w him|strong=\"G3588\"\\+w*!” *" + }, + { + "verseNum": 26, + "text": "The|strong=\"G2532\"* unclean spirit|strong=\"G4151\"*, convulsing him|strong=\"G3588\"* and|strong=\"G2532\"* crying|strong=\"G5455\"* with|strong=\"G1537\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"G2532\"* were|strong=\"G1510\"* all|strong=\"G2532\"* amazed|strong=\"G2284\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* they|strong=\"G2532\"* questioned|strong=\"G4802\"* among|strong=\"G4314\"* themselves|strong=\"G1438\"*, saying|strong=\"G3004\"*, “What|strong=\"G5101\"* is|strong=\"G1510\"* this|strong=\"G3778\"*? A|strong=\"G2532\"* new|strong=\"G2537\"* teaching|strong=\"G1322\"*? For|strong=\"G4314\"* with|strong=\"G4314\"* authority|strong=\"G1849\"* he|strong=\"G2532\"* commands|strong=\"G2004\"* even|strong=\"G2532\"* the|strong=\"G2532\"* unclean spirits|strong=\"G4151\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* obey|strong=\"G5219\"* him|strong=\"G3588\"*!”" + }, + { + "verseNum": 28, + "text": "The|strong=\"G2532\"* report of|strong=\"G2532\"* him|strong=\"G3588\"* went|strong=\"G1831\"* out|strong=\"G1831\"* immediately|strong=\"G2112\"* everywhere|strong=\"G3837\"* into|strong=\"G1519\"* all|strong=\"G3650\"* the|strong=\"G2532\"* region|strong=\"G4066\"* of|strong=\"G2532\"* Galilee|strong=\"G1056\"* and|strong=\"G2532\"* its surrounding|strong=\"G4066\"* area." + }, + { + "verseNum": 29, + "text": "Immediately|strong=\"G2112\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G2064\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* synagogue|strong=\"G4864\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* house|strong=\"G3614\"* of|strong=\"G1537\"* Simon|strong=\"G4613\"* and|strong=\"G2532\"* Andrew, with|strong=\"G3326\"* James|strong=\"G2385\"* and|strong=\"G2532\"* John|strong=\"G2491\"*." + }, + { + "verseNum": 30, + "text": "Now|strong=\"G1161\"* Simon|strong=\"G4613\"*’s wife’s mother lay|strong=\"G2621\"* sick|strong=\"G2621\"* with|strong=\"G2532\"* a|strong=\"G2532\"* fever|strong=\"G4445\"*, and|strong=\"G2532\"* immediately|strong=\"G2112\"* they|strong=\"G2532\"* told|strong=\"G3004\"* him|strong=\"G3588\"* about|strong=\"G4012\"* her|strong=\"G3588\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"G2532\"* came|strong=\"G4334\"* and|strong=\"G2532\"* took|strong=\"G2902\"* her|strong=\"G1438\"* by|strong=\"G2532\"* the|strong=\"G2532\"* hand|strong=\"G5495\"* and|strong=\"G2532\"* raised|strong=\"G1453\"* her|strong=\"G1438\"* up|strong=\"G1453\"*. The|strong=\"G2532\"* fever|strong=\"G4446\"* left her|strong=\"G1438\"* immediately,+ 1:31 NU omits “immediately”.* and|strong=\"G2532\"* she|strong=\"G2532\"* served|strong=\"G1247\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 32, + "text": "At|strong=\"G4314\"* evening|strong=\"G3798\"*, when|strong=\"G3753\"* the|strong=\"G2532\"* sun|strong=\"G2246\"* had|strong=\"G2192\"* set|strong=\"G2532\"*, they|strong=\"G2532\"* brought|strong=\"G5342\"* to|strong=\"G4314\"* him|strong=\"G3588\"* all|strong=\"G3956\"* who|strong=\"G3588\"* were|strong=\"G3588\"* sick|strong=\"G2560\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* possessed|strong=\"G2192\"* by|strong=\"G4314\"* demons." + }, + { + "verseNum": 33, + "text": "All|strong=\"G3650\"* the|strong=\"G2532\"* city|strong=\"G4172\"* was|strong=\"G1510\"* gathered|strong=\"G1996\"* together|strong=\"G1996\"* at|strong=\"G4314\"* the|strong=\"G2532\"* door|strong=\"G2374\"*." + }, + { + "verseNum": 34, + "text": "He|strong=\"G2532\"* healed|strong=\"G2323\"* many|strong=\"G4183\"* who|strong=\"G3588\"* were|strong=\"G3588\"* sick|strong=\"G2560\"* with|strong=\"G2532\"* various|strong=\"G4164\"* diseases|strong=\"G3554\"* and|strong=\"G2532\"* cast|strong=\"G1544\"* out|strong=\"G1544\"* many|strong=\"G4183\"* demons|strong=\"G1140\"*. He|strong=\"G2532\"* didn’t|strong=\"G3588\"* allow the|strong=\"G2532\"* demons|strong=\"G1140\"* to|strong=\"G2532\"* speak|strong=\"G2980\"*, because|strong=\"G3754\"* they|strong=\"G2532\"* knew|strong=\"G1492\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 35, + "text": "Early|strong=\"G4404\"* in|strong=\"G1519\"* the|strong=\"G2532\"* morning|strong=\"G4404\"*, while|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G2532\"* still|strong=\"G3029\"* dark|strong=\"G1773\"*, he|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G1519\"* and|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, and|strong=\"G2532\"* departed|strong=\"G1831\"* into|strong=\"G1519\"* a|strong=\"G2532\"* deserted|strong=\"G2048\"* place|strong=\"G5117\"*, and|strong=\"G2532\"* prayed|strong=\"G4336\"* there|strong=\"G2532\"*." + }, + { + "verseNum": 36, + "text": "Simon|strong=\"G4613\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* with|strong=\"G3326\"* him|strong=\"G3588\"* searched|strong=\"G2614\"* for|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 37, + "text": "They|strong=\"G2532\"* found|strong=\"G2147\"* him|strong=\"G2532\"* and|strong=\"G2532\"* told|strong=\"G3004\"* him|strong=\"G2532\"*, “Everyone|strong=\"G3956\"* is|strong=\"G3956\"* looking|strong=\"G2212\"* for|strong=\"G3754\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 38, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Let|strong=\"G2443\"\\+w*’\\+w s|strong=\"G2192\"\\+w* \\+w go|strong=\"G1831\"\\+w* elsewhere \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w next|strong=\"G2192\"\\+w* \\+w towns|strong=\"G2969\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w preach|strong=\"G2784\"\\+w* \\+w there|strong=\"G1563\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w because|strong=\"G1063\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w came|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w this|strong=\"G3778\"\\+w* reason.”*" + }, + { + "verseNum": 39, + "text": "He|strong=\"G2532\"* went|strong=\"G2064\"* into|strong=\"G1519\"* their|strong=\"G2532\"* synagogues|strong=\"G4864\"* throughout|strong=\"G1519\"* all|strong=\"G3650\"* Galilee|strong=\"G1056\"*, preaching|strong=\"G2784\"* and|strong=\"G2532\"* casting|strong=\"G1544\"* out|strong=\"G1544\"* demons|strong=\"G1140\"*." + }, + { + "verseNum": 40, + "text": "A|strong=\"G2532\"* leper|strong=\"G3015\"* came|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G2532\"*, begging|strong=\"G3870\"* him|strong=\"G2532\"*, kneeling|strong=\"G2532\"* down|strong=\"G1120\"* to|strong=\"G4314\"* him|strong=\"G2532\"*, and|strong=\"G2532\"* saying|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G2532\"*, “If|strong=\"G1437\"* you|strong=\"G1437\"* want|strong=\"G2309\"* to|strong=\"G4314\"*, you|strong=\"G1437\"* can|strong=\"G1410\"* make|strong=\"G2511\"* me|strong=\"G1473\"* clean|strong=\"G2511\"*.”" + }, + { + "verseNum": 41, + "text": "Being|strong=\"G2532\"* moved|strong=\"G4697\"* with|strong=\"G2532\"* compassion|strong=\"G4697\"*, he|strong=\"G2532\"* stretched|strong=\"G1614\"* out|strong=\"G2532\"* his|strong=\"G2532\"* hand|strong=\"G5495\"*, and|strong=\"G2532\"* touched him|strong=\"G3588\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w I|strong=\"G2532\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w*. \\+w Be|strong=\"G2532\"\\+w* \\+w made|strong=\"G3004\"\\+w* \\+w clean|strong=\"G2511\"\\+w*.”*" + }, + { + "verseNum": 42, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G2532\"* this|strong=\"G3588\"*, immediately|strong=\"G2112\"* the|strong=\"G2532\"* leprosy|strong=\"G3014\"* departed from|strong=\"G2532\"* him|strong=\"G3588\"* and|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3588\"* made clean|strong=\"G2511\"*." + }, + { + "verseNum": 43, + "text": "He|strong=\"G2532\"* strictly warned|strong=\"G1690\"* him|strong=\"G2532\"* and|strong=\"G2532\"* immediately|strong=\"G2112\"* sent|strong=\"G1544\"* him|strong=\"G2532\"* out|strong=\"G1544\"*," + }, + { + "verseNum": 44, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “\\+w See|strong=\"G3708\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w nothing|strong=\"G3367\"\\+w* \\+w to|strong=\"G1519\"\\+w* anybody, \\+w but|strong=\"G2532\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w show|strong=\"G1166\"\\+w* \\+w yourself|strong=\"G4572\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w priest|strong=\"G2409\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w offer|strong=\"G4374\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w cleansing|strong=\"G2512\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w commanded|strong=\"G4367\"\\+w*, \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w testimony|strong=\"G3142\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 45, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, and|strong=\"G2532\"* began|strong=\"G1909\"* to|strong=\"G1519\"* proclaim|strong=\"G2784\"* it|strong=\"G2532\"* much|strong=\"G4183\"*, and|strong=\"G2532\"* to|strong=\"G1519\"* spread|strong=\"G1831\"* about|strong=\"G1909\"* the|strong=\"G2532\"* matter|strong=\"G3056\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* Jesus|strong=\"G1525\"* could|strong=\"G1410\"* no|strong=\"G3371\"* more|strong=\"G4183\"* openly|strong=\"G5320\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* a|strong=\"G2532\"* city|strong=\"G4172\"*, but|strong=\"G1161\"* was|strong=\"G1510\"* outside|strong=\"G1854\"* in|strong=\"G1519\"* desert|strong=\"G2048\"* places|strong=\"G5117\"*. People|strong=\"G1510\"* came|strong=\"G2064\"* to|strong=\"G1519\"* him|strong=\"G3588\"* from|strong=\"G2064\"* everywhere|strong=\"G3840\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* entered|strong=\"G1525\"* again|strong=\"G3825\"* into|strong=\"G1519\"* Capernaum|strong=\"G2584\"* after|strong=\"G1223\"* some|strong=\"G1722\"* days|strong=\"G2250\"*, it|strong=\"G2532\"* was|strong=\"G1510\"* heard that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* at|strong=\"G1722\"* home|strong=\"G3624\"*." + }, + { + "verseNum": 2, + "text": "Immediately many|strong=\"G4183\"* were|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* there|strong=\"G2532\"* was|strong=\"G3588\"* no|strong=\"G3371\"* more|strong=\"G4183\"* room|strong=\"G5562\"*, not|strong=\"G3366\"* even|strong=\"G2532\"* around|strong=\"G4314\"* the|strong=\"G2532\"* door|strong=\"G2374\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* spoke|strong=\"G2980\"* the|strong=\"G2532\"* word|strong=\"G3056\"* to|strong=\"G4314\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 3, + "text": "Four|strong=\"G5064\"* people came|strong=\"G2064\"*, carrying|strong=\"G5342\"* a|strong=\"G2532\"* paralytic|strong=\"G3885\"* to|strong=\"G4314\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* could|strong=\"G1410\"* not|strong=\"G3361\"* come|strong=\"G1510\"* near to|strong=\"G2532\"* him|strong=\"G3588\"* for|strong=\"G1223\"* the|strong=\"G2532\"* crowd|strong=\"G3793\"*, they|strong=\"G2532\"* removed the|strong=\"G2532\"* roof|strong=\"G4721\"* where|strong=\"G3699\"* he|strong=\"G2532\"* was|strong=\"G1510\"*. When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* broken|strong=\"G1846\"* it|strong=\"G2532\"* up|strong=\"G4374\"*, they|strong=\"G2532\"* let|strong=\"G5465\"* down|strong=\"G5465\"* the|strong=\"G2532\"* mat|strong=\"G2895\"* that|strong=\"G3588\"* the|strong=\"G2532\"* paralytic|strong=\"G3885\"* was|strong=\"G1510\"* lying|strong=\"G2621\"* on|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "Jesus|strong=\"G2424\"*, seeing|strong=\"G3708\"* their|strong=\"G2532\"* faith|strong=\"G4102\"*, said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* paralytic|strong=\"G3885\"*, “\\+w Son|strong=\"G5043\"\\+w*, \\+w your|strong=\"G2532\"\\+w* sins \\+w are|strong=\"G3588\"\\+w* forgiven \\+w you|strong=\"G4771\"\\+w*.”*" + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* there|strong=\"G1563\"* were|strong=\"G1510\"* some|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G1722\"* scribes|strong=\"G1122\"* sitting|strong=\"G2521\"* there|strong=\"G1563\"* and|strong=\"G2532\"* reasoning|strong=\"G1260\"* in|strong=\"G1722\"* their|strong=\"G2532\"* hearts|strong=\"G2588\"*," + }, + { + "verseNum": 7, + "text": "“Why|strong=\"G5101\"* does|strong=\"G5101\"* this|strong=\"G3778\"* man|strong=\"G3778\"* speak|strong=\"G2980\"* blasphemies like|strong=\"G3779\"* that|strong=\"G3588\"*? Who|strong=\"G5101\"* can|strong=\"G1410\"* forgive sins but|strong=\"G1487\"* God|strong=\"G2316\"* alone|strong=\"G1520\"*?”" + }, + { + "verseNum": 8, + "text": "Immediately|strong=\"G2112\"* Jesus|strong=\"G2424\"*, perceiving|strong=\"G1921\"* in|strong=\"G1722\"* his|strong=\"G1438\"* spirit|strong=\"G4151\"* that|strong=\"G3754\"* they|strong=\"G2532\"* so|strong=\"G3779\"* reasoned|strong=\"G1260\"* within|strong=\"G1722\"* themselves|strong=\"G1438\"*, said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w reason|strong=\"G1260\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hearts|strong=\"G2588\"\\+w*? *" + }, + { + "verseNum": 9, + "text": "\\+w Which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w easier|strong=\"G2123\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w paralytic|strong=\"G3885\"\\+w*, ‘\\+w Your|strong=\"G2532\"\\+w* sins \\+w are|strong=\"G1510\"\\+w* forgiven;’ \\+w or|strong=\"G2228\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Arise|strong=\"G1453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w take|strong=\"G2532\"\\+w* \\+w up|strong=\"G1453\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w bed|strong=\"G2895\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w walk|strong=\"G4043\"\\+w*’? *" + }, + { + "verseNum": 10, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w to|strong=\"G2443\"\\+w* forgive sins”*—he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G2443\"* the|strong=\"G1161\"* paralytic|strong=\"G3885\"*—" + }, + { + "verseNum": 11, + "text": "“\\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w arise|strong=\"G1453\"\\+w*, \\+w take|strong=\"G2532\"\\+w* \\+w up|strong=\"G1453\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w mat|strong=\"G2895\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w house|strong=\"G3624\"\\+w*.” *" + }, + { + "verseNum": 12, + "text": "He|strong=\"G2532\"* arose|strong=\"G1453\"*, and|strong=\"G2532\"* immediately|strong=\"G2112\"* took|strong=\"G2532\"* up|strong=\"G1453\"* the|strong=\"G2532\"* mat|strong=\"G2895\"* and|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* in|strong=\"G2532\"* front|strong=\"G1715\"* of|strong=\"G2316\"* them|strong=\"G3588\"* all|strong=\"G3956\"*, so|strong=\"G3779\"* that|strong=\"G3754\"* they|strong=\"G2532\"* were|strong=\"G3588\"* all|strong=\"G3956\"* amazed|strong=\"G1839\"* and|strong=\"G2532\"* glorified|strong=\"G1392\"* God|strong=\"G2316\"*, saying|strong=\"G3004\"*, “We|strong=\"G3754\"* never|strong=\"G3763\"* saw|strong=\"G3708\"* anything|strong=\"G3956\"* like|strong=\"G3779\"* this|strong=\"G3588\"*!”" + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* again|strong=\"G3825\"* by|strong=\"G3844\"* the|strong=\"G2532\"* seaside. All|strong=\"G3956\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* came|strong=\"G2064\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* taught|strong=\"G1321\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "As|strong=\"G2532\"* he|strong=\"G2532\"* passed|strong=\"G3855\"* by|strong=\"G1909\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* Levi|strong=\"G3018\"* the|strong=\"G2532\"* son of|strong=\"G2532\"* Alphaeus sitting|strong=\"G2521\"* at|strong=\"G1909\"* the|strong=\"G2532\"* tax|strong=\"G5058\"* office. He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Follow \\+w me|strong=\"G1473\"\\+w*.”* And|strong=\"G2532\"* he|strong=\"G2532\"* arose and|strong=\"G2532\"* followed him|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* was|strong=\"G1510\"* reclining|strong=\"G2621\"* at|strong=\"G1722\"* the|strong=\"G1722\"* table|strong=\"G4873\"* in|strong=\"G1722\"* his|strong=\"G1722\"* house|strong=\"G3614\"*, and|strong=\"G2532\"* many|strong=\"G4183\"* tax|strong=\"G5057\"* collectors|strong=\"G5057\"* and|strong=\"G2532\"* sinners sat|strong=\"G2532\"* down|strong=\"G2621\"* with|strong=\"G1722\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* his|strong=\"G1722\"* disciples|strong=\"G3101\"*, for|strong=\"G1063\"* there|strong=\"G2532\"* were|strong=\"G1510\"* many|strong=\"G4183\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* followed|strong=\"G1096\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"G2532\"* scribes|strong=\"G1122\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G3588\"* eating|strong=\"G2068\"* with|strong=\"G3326\"* the|strong=\"G2532\"* sinners and|strong=\"G2532\"* tax|strong=\"G5057\"* collectors|strong=\"G5057\"*, said|strong=\"G3004\"* to|strong=\"G2532\"* his|strong=\"G3708\"* disciples|strong=\"G3101\"*, “Why|strong=\"G3754\"* is|strong=\"G3588\"* it|strong=\"G2532\"* that|strong=\"G3754\"* he|strong=\"G2532\"* eats|strong=\"G2068\"* and|strong=\"G2532\"* drinks|strong=\"G4095\"* with|strong=\"G3326\"* tax|strong=\"G5057\"* collectors|strong=\"G5057\"* and|strong=\"G2532\"* sinners?”" + }, + { + "verseNum": 17, + "text": "When|strong=\"G2532\"* Jesus|strong=\"G2424\"* heard it|strong=\"G2532\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w healthy|strong=\"G2480\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w need|strong=\"G5532\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w physician|strong=\"G2395\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w sick|strong=\"G2560\"\\+w*. \\+w I|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w call|strong=\"G2564\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w righteous|strong=\"G1342\"\\+w*, \\+w but|strong=\"G2532\"\\+w* sinners \\+w to|strong=\"G2532\"\\+w* repentance.”*" + }, + { + "verseNum": 18, + "text": "John|strong=\"G2491\"*’s disciples|strong=\"G3101\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* were|strong=\"G1510\"* fasting|strong=\"G3522\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* came|strong=\"G2064\"* and|strong=\"G2532\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Why|strong=\"G5101\"* do|strong=\"G5101\"* John|strong=\"G2491\"*’s disciples|strong=\"G3101\"* and|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* of|strong=\"G1223\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* fast|strong=\"G3522\"*, but|strong=\"G1161\"* your|strong=\"G4674\"* disciples|strong=\"G3101\"* don’t|strong=\"G3588\"* fast|strong=\"G3522\"*?”" + }, + { + "verseNum": 19, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Can|strong=\"G1410\"\\+w* \\+w the|strong=\"G1722\"\\+w* groomsmen \\+w fast|strong=\"G3522\"\\+w* \\+w while|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w them|strong=\"G3588\"\\+w*? \\+w As|strong=\"G3745\"\\+w* \\+w long|strong=\"G5550\"\\+w* \\+w as|strong=\"G3745\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w fast|strong=\"G3522\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* taken away \\+w from|strong=\"G2064\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w fast|strong=\"G3522\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w day|strong=\"G2250\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w sews|strong=\"G1976\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w piece|strong=\"G1915\"\\+w* \\+w of|strong=\"G2532\"\\+w* unshrunk \\+w cloth|strong=\"G4470\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w old|strong=\"G3820\"\\+w* \\+w garment|strong=\"G2440\"\\+w*, \\+w or|strong=\"G2532\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w patch|strong=\"G1915\"\\+w* shrinks \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w new|strong=\"G2537\"\\+w* tears away \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w old|strong=\"G3820\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w worse|strong=\"G5501\"\\+w* hole \\+w is|strong=\"G3588\"\\+w* \\+w made|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* puts \\+w new|strong=\"G2537\"\\+w* \\+w wine|strong=\"G3631\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w old|strong=\"G3820\"\\+w* wineskins; \\+w or|strong=\"G2532\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w wine|strong=\"G3631\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w burst|strong=\"G4486\"\\+w* \\+w the|strong=\"G2532\"\\+w* skins, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wine|strong=\"G3631\"\\+w* pours \\+w out|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* skins \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* destroyed; \\+w but|strong=\"G1161\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w put|strong=\"G2532\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w wine|strong=\"G3631\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w fresh|strong=\"G2537\"\\+w* wineskins.”*" + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* was|strong=\"G1096\"* going|strong=\"G2532\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"* through|strong=\"G1223\"* the|strong=\"G1722\"* grain|strong=\"G4719\"* fields|strong=\"G4702\"*; and|strong=\"G2532\"* his|strong=\"G1223\"* disciples|strong=\"G3101\"* began|strong=\"G1096\"*, as|strong=\"G1722\"* they|strong=\"G2532\"* went|strong=\"G2532\"*, to|strong=\"G2532\"* pluck|strong=\"G5089\"* the|strong=\"G1722\"* ears of|strong=\"G1223\"* grain|strong=\"G4719\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"G2532\"* Pharisees|strong=\"G5330\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Behold|strong=\"G2396\"*, why|strong=\"G5101\"* do|strong=\"G4160\"* they|strong=\"G2532\"* do|strong=\"G4160\"* that|strong=\"G3739\"* which|strong=\"G3739\"* is|strong=\"G3588\"* not|strong=\"G3756\"* lawful|strong=\"G1832\"* on|strong=\"G4160\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"*?”" + }, + { + "verseNum": 25, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Did|strong=\"G4160\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w never|strong=\"G3763\"\\+w* read \\+w what|strong=\"G5101\"\\+w* \\+w David|strong=\"G1138\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w when|strong=\"G3753\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w need|strong=\"G5532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w hungry|strong=\"G3983\"\\+w*—\\+w he|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w him|strong=\"G3588\"\\+w*? *" + }, + { + "verseNum": 26, + "text": "\\+w How|strong=\"G4459\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w entered|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s \\+w house|strong=\"G3624\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w time|strong=\"G1909\"\\+w* \\+w of|strong=\"G2316\"\\+w* Abiathar \\+w the|strong=\"G2532\"\\+w* \\+w high|strong=\"G2532\"\\+w* \\+w priest|strong=\"G2409\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w ate|strong=\"G2068\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w show|strong=\"G1325\"\\+w* bread, \\+w which|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w lawful|strong=\"G1832\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w except|strong=\"G1487\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w priests|strong=\"G2409\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w with|strong=\"G4862\"\\+w* \\+w him|strong=\"G3588\"\\+w*?”*" + }, + { + "verseNum": 27, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w The|strong=\"G2532\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w was|strong=\"G1096\"\\+w* \\+w made|strong=\"G1096\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w man|strong=\"G3756\"\\+w*, \\+w not|strong=\"G3756\"\\+w* \\+w man|strong=\"G3756\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w Therefore|strong=\"G5620\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* entered|strong=\"G1525\"* again|strong=\"G3825\"* into|strong=\"G1519\"* the|strong=\"G2532\"* synagogue|strong=\"G4864\"*, and|strong=\"G2532\"* there|strong=\"G1563\"* was|strong=\"G1510\"* a|strong=\"G2192\"* man|strong=\"G1519\"* there|strong=\"G1563\"* whose|strong=\"G3588\"* hand|strong=\"G5495\"* was|strong=\"G1510\"* withered|strong=\"G3583\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"G2532\"* watched|strong=\"G3906\"* him|strong=\"G3588\"*, whether|strong=\"G1487\"* he|strong=\"G2532\"* would|strong=\"G2532\"* heal|strong=\"G2323\"* him|strong=\"G3588\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* accuse|strong=\"G2723\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G2532\"* man|strong=\"G1519\"* whose|strong=\"G3588\"* hand|strong=\"G5495\"* was|strong=\"G3588\"* withered|strong=\"G3584\"*, “\\+w Stand|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*.”*" + }, + { + "verseNum": 4, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Is|strong=\"G3588\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w lawful|strong=\"G1832\"\\+w* \\+w on|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w day|strong=\"G4521\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w harm|strong=\"G2554\"\\+w*? \\+w To|strong=\"G2532\"\\+w* \\+w save|strong=\"G4982\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w to|strong=\"G2532\"\\+w* kill?”* But|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G3588\"* silent|strong=\"G4623\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* looked|strong=\"G4017\"* around|strong=\"G4017\"* at|strong=\"G1909\"* them|strong=\"G3588\"* with|strong=\"G3326\"* anger|strong=\"G3709\"*, being|strong=\"G2532\"* grieved|strong=\"G4818\"* at|strong=\"G1909\"* the|strong=\"G2532\"* hardening|strong=\"G4457\"* of|strong=\"G2532\"* their|strong=\"G1438\"* hearts|strong=\"G2588\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* man|strong=\"G2588\"*, “\\+w Stretch|strong=\"G1614\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hand|strong=\"G5495\"\\+w*.” * He|strong=\"G2532\"* stretched|strong=\"G1614\"* it|strong=\"G2532\"* out|strong=\"G2532\"*, and|strong=\"G2532\"* his|strong=\"G1438\"* hand|strong=\"G5495\"* was|strong=\"G3588\"* restored as|strong=\"G2532\"* healthy as|strong=\"G2532\"* the|strong=\"G2532\"* other|strong=\"G1438\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"G2532\"* Pharisees|strong=\"G5330\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, and|strong=\"G2532\"* immediately|strong=\"G2112\"* conspired|strong=\"G4824\"* with|strong=\"G3326\"* the|strong=\"G2532\"* Herodians|strong=\"G2265\"* against|strong=\"G2596\"* him|strong=\"G3588\"*, how|strong=\"G3704\"* they|strong=\"G2532\"* might|strong=\"G2532\"* destroy him|strong=\"G3588\"*." + }, + { + "verseNum": 7, + "text": "Jesus|strong=\"G2424\"* withdrew|strong=\"G2424\"* to|strong=\"G1519\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* with|strong=\"G3326\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*; and|strong=\"G2532\"* a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G4128\"* followed him|strong=\"G3588\"* from|strong=\"G2532\"* Galilee|strong=\"G1056\"*, from|strong=\"G2532\"* Judea|strong=\"G2449\"*," + }, + { + "verseNum": 8, + "text": "from|strong=\"G2064\"* Jerusalem|strong=\"G2414\"*, from|strong=\"G2064\"* Idumaea|strong=\"G2401\"*, beyond|strong=\"G4008\"* the|strong=\"G2532\"* Jordan|strong=\"G2446\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* from|strong=\"G2064\"* around|strong=\"G4012\"* Tyre|strong=\"G5184\"* and|strong=\"G2532\"* Sidon|strong=\"G4605\"*. A|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G4128\"*, hearing what|strong=\"G3588\"* great|strong=\"G4183\"* things|strong=\"G3588\"* he|strong=\"G2532\"* did|strong=\"G4160\"*, came|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* spoke|strong=\"G3004\"* to|strong=\"G2443\"* his|strong=\"G1223\"* disciples|strong=\"G3101\"* that|strong=\"G2443\"* a|strong=\"G2532\"* little|strong=\"G4142\"* boat|strong=\"G4142\"* should|strong=\"G3588\"* stay near him|strong=\"G3588\"* because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* crowd|strong=\"G3793\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* they|strong=\"G2532\"* wouldn’t|strong=\"G3588\"* press|strong=\"G3793\"* on|strong=\"G4342\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* he|strong=\"G1063\"* had|strong=\"G2192\"* healed|strong=\"G2323\"* many|strong=\"G4183\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* as|strong=\"G3745\"* many|strong=\"G4183\"* as|strong=\"G3745\"* had|strong=\"G2192\"* diseases pressed|strong=\"G1968\"* on|strong=\"G1968\"* him|strong=\"G2443\"* that|strong=\"G2443\"* they|strong=\"G1063\"* might|strong=\"G2192\"* touch him|strong=\"G2443\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"G2532\"* unclean spirits|strong=\"G4151\"*, whenever|strong=\"G3752\"* they|strong=\"G2532\"* saw|strong=\"G2334\"* him|strong=\"G3588\"*, fell|strong=\"G4363\"* down|strong=\"G4363\"* before|strong=\"G4363\"* him|strong=\"G3588\"* and|strong=\"G2532\"* cried|strong=\"G2896\"*, “You|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 12, + "text": "He|strong=\"G2532\"* sternly|strong=\"G2008\"* warned|strong=\"G2008\"* them|strong=\"G4160\"* that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G2532\"* not|strong=\"G3361\"* make|strong=\"G4160\"* him|strong=\"G4160\"* known|strong=\"G5318\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* went|strong=\"G2532\"* up|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"* and|strong=\"G2532\"* called|strong=\"G4341\"* to|strong=\"G1519\"* himself|strong=\"G1519\"* those|strong=\"G3588\"* whom|strong=\"G3739\"* he|strong=\"G2532\"* wanted|strong=\"G2309\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* went|strong=\"G2532\"* to|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"G2532\"* appointed|strong=\"G4160\"* twelve|strong=\"G1427\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G4160\"*, and|strong=\"G2532\"* that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* send them|strong=\"G1438\"* out|strong=\"G2532\"* to|strong=\"G2443\"* preach|strong=\"G2784\"*" + }, + { + "verseNum": 15, + "text": "and|strong=\"G2532\"* to|strong=\"G2532\"* have|strong=\"G2192\"* authority|strong=\"G1849\"* to|strong=\"G2532\"* heal sicknesses and|strong=\"G2532\"* to|strong=\"G2532\"* cast|strong=\"G1544\"* out|strong=\"G1544\"* demons|strong=\"G1140\"*:" + }, + { + "verseNum": 16, + "text": "Simon|strong=\"G4613\"* (to|strong=\"G2532\"* whom|strong=\"G3588\"* he|strong=\"G2532\"* gave|strong=\"G4160\"* the|strong=\"G2532\"* name|strong=\"G3686\"* Peter|strong=\"G4074\"*);" + }, + { + "verseNum": 17, + "text": "James|strong=\"G2385\"* the|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* Zebedee|strong=\"G2199\"*; and|strong=\"G2532\"* John|strong=\"G2491\"*, the|strong=\"G2532\"* brother of|strong=\"G5207\"* James|strong=\"G2385\"*, (whom|strong=\"G3739\"* he|strong=\"G2532\"* called|strong=\"G3686\"* Boanerges, which|strong=\"G3739\"* means|strong=\"G1510\"*, Sons|strong=\"G5207\"* of|strong=\"G5207\"* Thunder|strong=\"G1027\"*);" + }, + { + "verseNum": 18, + "text": "Andrew; Philip|strong=\"G5376\"*; Bartholomew; Matthew|strong=\"G3156\"*; Thomas|strong=\"G2381\"*; James|strong=\"G2385\"*, the|strong=\"G2532\"* son of|strong=\"G2532\"* Alphaeus; Thaddaeus|strong=\"G2280\"*; Simon|strong=\"G4613\"* the|strong=\"G2532\"* Zealot|strong=\"G2581\"*;" + }, + { + "verseNum": 19, + "text": "and|strong=\"G2532\"* Judas|strong=\"G2455\"* Iscariot|strong=\"G2469\"*, who|strong=\"G3739\"* also|strong=\"G2532\"* betrayed|strong=\"G3860\"* him|strong=\"G3739\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"G2532\"* multitude|strong=\"G3793\"* came|strong=\"G2064\"* together|strong=\"G4905\"* again|strong=\"G3825\"*, so|strong=\"G2532\"* that|strong=\"G5620\"* they|strong=\"G2532\"* could|strong=\"G1410\"* not|strong=\"G3361\"* so|strong=\"G2532\"* much as|strong=\"G1519\"* eat|strong=\"G2068\"* bread." + }, + { + "verseNum": 21, + "text": "When|strong=\"G2532\"* his|strong=\"G2532\"* friends|strong=\"G3844\"* heard it|strong=\"G2532\"*, they|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G2532\"* seize|strong=\"G2902\"* him|strong=\"G3588\"*; for|strong=\"G1063\"* they|strong=\"G2532\"* said|strong=\"G3004\"*, “He|strong=\"G2532\"* is|strong=\"G3588\"* insane.”" + }, + { + "verseNum": 22, + "text": "The|strong=\"G1722\"* scribes|strong=\"G1122\"* who|strong=\"G3588\"* came|strong=\"G2597\"* down|strong=\"G2597\"* from|strong=\"G2597\"* Jerusalem|strong=\"G2414\"* said|strong=\"G3004\"*, “He|strong=\"G2532\"* has|strong=\"G2192\"* Beelzebul,” and|strong=\"G2532\"*, “By|strong=\"G1722\"* the|strong=\"G1722\"* prince of|strong=\"G2532\"* the|strong=\"G1722\"* demons|strong=\"G1140\"* he|strong=\"G2532\"* casts|strong=\"G1544\"* out|strong=\"G1544\"* the|strong=\"G1722\"* demons|strong=\"G1140\"*.”" + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* summoned|strong=\"G4341\"* them|strong=\"G1438\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G1438\"* in|strong=\"G1722\"* parables|strong=\"G3850\"*, “\\+w How|strong=\"G4459\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w Satan|strong=\"G4567\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w Satan|strong=\"G4567\"\\+w*? *" + }, + { + "verseNum": 24, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w a|strong=\"G2532\"\\+w* kingdom \\+w is|strong=\"G3588\"\\+w* \\+w divided|strong=\"G3307\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w itself|strong=\"G1438\"\\+w*, \\+w that|strong=\"G3588\"\\+w* kingdom \\+w cannot|strong=\"G1410\"\\+w* \\+w stand|strong=\"G2476\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w divided|strong=\"G3307\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w itself|strong=\"G1438\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w cannot|strong=\"G1410\"\\+w* \\+w stand|strong=\"G2476\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w Satan|strong=\"G4567\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w risen|strong=\"G2532\"\\+w* \\+w up|strong=\"G2476\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w divided|strong=\"G3307\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w stand|strong=\"G2476\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w an|strong=\"G2192\"\\+w* \\+w end|strong=\"G5056\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w strong|strong=\"G2478\"\\+w* \\+w man|strong=\"G3762\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w plunder|strong=\"G1283\"\\+w* \\+w unless|strong=\"G1437\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w binds|strong=\"G1210\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w strong|strong=\"G2478\"\\+w* \\+w man|strong=\"G3762\"\\+w*; \\+w then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w plunder|strong=\"G1283\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w house|strong=\"G3614\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "“Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w all|strong=\"G3956\"\\+w* sins \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w descendants|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w man|strong=\"G3956\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* forgiven, \\+w including|strong=\"G2532\"\\+w* \\+w their|strong=\"G2532\"\\+w* blasphemies \\+w with|strong=\"G2532\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* blaspheme; *" + }, + { + "verseNum": 29, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w may|strong=\"G2192\"\\+w* blaspheme \\+w against|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w never|strong=\"G3756\"\\+w* \\+w has|strong=\"G2192\"\\+w* forgiveness, \\+w but|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w subject|strong=\"G1777\"\\+w* \\+w to|strong=\"G1519\"\\+w* eternal condemnation.”*+ 3:29 NU reads, guilty of an eternal sin.*" + }, + { + "verseNum": 30, + "text": "—because|strong=\"G3754\"* they|strong=\"G3754\"* said|strong=\"G3004\"*, “He|strong=\"G3754\"* has|strong=\"G2192\"* an|strong=\"G2192\"* unclean spirit|strong=\"G4151\"*.”" + }, + { + "verseNum": 31, + "text": "His|strong=\"G2532\"* mother|strong=\"G3384\"* and|strong=\"G2532\"* his|strong=\"G2532\"* brothers came|strong=\"G2064\"*, and|strong=\"G2532\"* standing|strong=\"G4739\"* outside|strong=\"G1854\"*, they|strong=\"G2532\"* sent|strong=\"G2532\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, calling|strong=\"G2564\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 32, + "text": "A|strong=\"G2532\"* multitude|strong=\"G3793\"* was|strong=\"G3588\"* sitting|strong=\"G2521\"* around|strong=\"G4012\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* told|strong=\"G3004\"* him|strong=\"G3588\"*, “Behold|strong=\"G2400\"*, your|strong=\"G2532\"* mother|strong=\"G3384\"*, your|strong=\"G2532\"* brothers, and|strong=\"G2532\"* your|strong=\"G2532\"* sisters+ 3:32 TR omits “your sisters”* are|strong=\"G3588\"* outside|strong=\"G1854\"* looking|strong=\"G2212\"* for|strong=\"G4012\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 33, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Who|strong=\"G5101\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w mother|strong=\"G3384\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G1473\"\\+w* brothers?”*" + }, + { + "verseNum": 34, + "text": "Looking|strong=\"G4017\"* around|strong=\"G4012\"* at|strong=\"G4012\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* around|strong=\"G4012\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Behold|strong=\"G2396\"\\+w*, \\+w my|strong=\"G3708\"\\+w* \\+w mother|strong=\"G3384\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G3708\"\\+w* brothers! *" + }, + { + "verseNum": 35, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w does|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* brother, \\+w my|strong=\"G1473\"\\+w* sister, \\+w and|strong=\"G2532\"\\+w* \\+w mother|strong=\"G3384\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Again|strong=\"G3825\"* he|strong=\"G2532\"* began|strong=\"G1909\"* to|strong=\"G1519\"* teach|strong=\"G1321\"* by|strong=\"G1722\"* the|strong=\"G1722\"* seaside. A|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* was|strong=\"G1510\"* gathered|strong=\"G4863\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* he|strong=\"G2532\"* entered|strong=\"G1684\"* into|strong=\"G1519\"* a|strong=\"G2532\"* boat|strong=\"G4143\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"* and|strong=\"G2532\"* sat|strong=\"G2521\"* down|strong=\"G2521\"*. All|strong=\"G3956\"* the|strong=\"G1722\"* multitude|strong=\"G3793\"* were|strong=\"G1510\"* on|strong=\"G1909\"* the|strong=\"G1722\"* land|strong=\"G1093\"* by|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* taught|strong=\"G1321\"* them|strong=\"G3588\"* many|strong=\"G4183\"* things|strong=\"G3588\"* in|strong=\"G1722\"* parables|strong=\"G3850\"*, and|strong=\"G2532\"* told|strong=\"G3004\"* them|strong=\"G3588\"* in|strong=\"G1722\"* his|strong=\"G1438\"* teaching|strong=\"G1321\"*," + }, + { + "verseNum": 3, + "text": "“\\+w Listen|strong=\"G2400\"\\+w*! \\+w Behold|strong=\"G2400\"\\+w*, \\+w the|strong=\"G3588\"\\+w* farmer \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w to|strong=\"G3708\"\\+w* \\+w sow|strong=\"G4687\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w As|strong=\"G1722\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w sowed|strong=\"G4687\"\\+w*, \\+w some|strong=\"G3739\"\\+w* \\+w seed|strong=\"G4098\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w road|strong=\"G3598\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w birds|strong=\"G4071\"\\+w**+ 4:4 TR adds “of the air”* \\+w came|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w devoured|strong=\"G2719\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w Others|strong=\"G3588\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rocky|strong=\"G4075\"\\+w* \\+w ground|strong=\"G1093\"\\+w*, \\+w where|strong=\"G3699\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w* little \\+w soil|strong=\"G1093\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w sprang|strong=\"G1816\"\\+w* \\+w up|strong=\"G3361\"\\+w*, \\+w because|strong=\"G1223\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* depth \\+w of|strong=\"G1223\"\\+w* \\+w soil|strong=\"G1093\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w When|strong=\"G3753\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sun|strong=\"G2246\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w risen|strong=\"G2532\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w scorched|strong=\"G2739\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w root|strong=\"G4491\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w withered|strong=\"G3583\"\\+w* \\+w away|strong=\"G3583\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w Others|strong=\"G3588\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w among|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* thorns, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* thorns grew \\+w up|strong=\"G1519\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w choked|strong=\"G4846\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w yielded|strong=\"G1325\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w Others|strong=\"G3588\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w ground|strong=\"G1093\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w yielded|strong=\"G1325\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*, growing \\+w up|strong=\"G1519\"\\+w* \\+w and|strong=\"G2532\"\\+w* increasing. \\+w Some|strong=\"G3588\"\\+w* \\+w produced|strong=\"G1325\"\\+w* \\+w thirty|strong=\"G5144\"\\+w* times, \\+w some|strong=\"G3588\"\\+w* \\+w sixty|strong=\"G1835\"\\+w* times, \\+w and|strong=\"G2532\"\\+w* \\+w some|strong=\"G3588\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w hundred|strong=\"G1540\"\\+w* times \\+w as|strong=\"G1519\"\\+w* much.”*" + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Whoever|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w ears|strong=\"G3775\"\\+w* \\+w to|strong=\"G2532\"\\+w* hear, \\+w let|strong=\"G2192\"\\+w* \\+w him|strong=\"G3739\"\\+w* hear.”*" + }, + { + "verseNum": 10, + "text": "When|strong=\"G3753\"* he|strong=\"G2532\"* was|strong=\"G1096\"* alone|strong=\"G3441\"*, those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* around|strong=\"G4012\"* him|strong=\"G3588\"* with|strong=\"G4862\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"* asked|strong=\"G2065\"* him|strong=\"G3588\"* about|strong=\"G4012\"* the|strong=\"G2532\"* parables|strong=\"G3850\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w To|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w mystery|strong=\"G3466\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom, \\+w but|strong=\"G1161\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w outside|strong=\"G1854\"\\+w*, \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w parables|strong=\"G3850\"\\+w*, *" + }, + { + "verseNum": 12, + "text": "\\+w that|strong=\"G2443\"\\+w* ‘\\+w seeing|strong=\"G3708\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w perceive|strong=\"G3708\"\\+w*, \\+w and|strong=\"G2532\"\\+w* hearing \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* hear \\+w and|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w understand|strong=\"G4920\"\\+w*, \\+w lest|strong=\"G3361\"\\+w* \\+w perhaps|strong=\"G3379\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w should|strong=\"G2532\"\\+w* \\+w turn|strong=\"G1994\"\\+w* \\+w again|strong=\"G1994\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w their|strong=\"G2532\"\\+w* sins \\+w should|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* forgiven \\+w them|strong=\"G3708\"\\+w*.’”*+ 4:12 Isaiah 6:9-10*" + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w understand|strong=\"G1097\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w parable|strong=\"G3850\"\\+w*? \\+w How|strong=\"G4459\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w understand|strong=\"G1097\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w parables|strong=\"G3850\"\\+w*? *" + }, + { + "verseNum": 14, + "text": "\\+w The|strong=\"G3588\"\\+w* farmer \\+w sows|strong=\"G4687\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w word|strong=\"G3056\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w The|strong=\"G1722\"\\+w* ones \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w road|strong=\"G3598\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* ones \\+w where|strong=\"G3699\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* heard, \\+w immediately|strong=\"G2112\"\\+w* \\+w Satan|strong=\"G4567\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* takes away \\+w the|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w These|strong=\"G3778\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w same|strong=\"G3778\"\\+w* \\+w way|strong=\"G3668\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rocky|strong=\"G4075\"\\+w* places, \\+w who|strong=\"G3739\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* heard \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w immediately|strong=\"G2112\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w joy|strong=\"G5479\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w root|strong=\"G4491\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w themselves|strong=\"G1438\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* short-lived. \\+w When|strong=\"G2532\"\\+w* oppression \\+w or|strong=\"G2228\"\\+w* \\+w persecution|strong=\"G1375\"\\+w* \\+w arises|strong=\"G1096\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w immediately|strong=\"G2112\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w Others|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w* \\+w among|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* thorns. \\+w These|strong=\"G3778\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* heard \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w*, *" + }, + { + "verseNum": 19, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w cares|strong=\"G3308\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w this|strong=\"G3588\"\\+w* age, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* deceitfulness \\+w of|strong=\"G4012\"\\+w* \\+w riches|strong=\"G4149\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w lusts|strong=\"G1939\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w other|strong=\"G3062\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w entering|strong=\"G1531\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w choke|strong=\"G4846\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w becomes|strong=\"G1096\"\\+w* unfruitful. *" + }, + { + "verseNum": 20, + "text": "\\+w Those|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w ground|strong=\"G1093\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* hear \\+w the|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w accept|strong=\"G3858\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w bear|strong=\"G2592\"\\+w* \\+w fruit|strong=\"G2592\"\\+w*, \\+w some|strong=\"G3588\"\\+w* \\+w thirty|strong=\"G5144\"\\+w* times, \\+w some|strong=\"G3588\"\\+w* \\+w sixty|strong=\"G1835\"\\+w* times, \\+w and|strong=\"G2532\"\\+w* \\+w some|strong=\"G3588\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w hundred|strong=\"G1540\"\\+w* times.”*" + }, + { + "verseNum": 21, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2443\"* them|strong=\"G3588\"*, “\\+w Is|strong=\"G3588\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w lamp|strong=\"G3088\"\\+w* \\+w brought|strong=\"G2064\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w put|strong=\"G5087\"\\+w* \\+w under|strong=\"G5259\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w basket|strong=\"G3426\"\\+w* *+ 4:21 literally, a modion, a dry measuring basket containing about a peck (about 9 liters)* \\+w or|strong=\"G2228\"\\+w* \\+w under|strong=\"G5259\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w bed|strong=\"G2825\"\\+w*? Isn’\\+w t|strong=\"G3588\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w put|strong=\"G5087\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w a|strong=\"G2532\"\\+w* stand? *" + }, + { + "verseNum": 22, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w there|strong=\"G1063\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w nothing|strong=\"G3756\"\\+w* \\+w hidden|strong=\"G2927\"\\+w* \\+w except|strong=\"G1437\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w it|strong=\"G1063\"\\+w* \\+w should|strong=\"G5100\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w made|strong=\"G1096\"\\+w* \\+w known|strong=\"G5318\"\\+w*, \\+w neither|strong=\"G3761\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w anything|strong=\"G5100\"\\+w* \\+w made|strong=\"G1096\"\\+w* \\+w secret|strong=\"G2927\"\\+w* \\+w but|strong=\"G3361\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w it|strong=\"G1063\"\\+w* \\+w should|strong=\"G5100\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w light|strong=\"G5318\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w any|strong=\"G5100\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w ears|strong=\"G3775\"\\+w* \\+w to|strong=\"G5100\"\\+w* hear, \\+w let|strong=\"G2192\"\\+w* him hear.”*" + }, + { + "verseNum": 24, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G1722\"*, “\\+w Take|strong=\"G2532\"\\+w* heed \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w hear|strong=\"G5101\"\\+w*. \\+w With|strong=\"G1722\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w measure|strong=\"G3358\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w measure|strong=\"G3358\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w measured|strong=\"G3354\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w more|strong=\"G2532\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G4369\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w hear|strong=\"G5101\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G1325\"\\+w* \\+w more|strong=\"G2192\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* doesn’t \\+w have|strong=\"G2192\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* taken away \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G1325\"\\+w*.”*" + }, + { + "verseNum": 26, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w is|strong=\"G1510\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w if|strong=\"G5613\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w man|strong=\"G2316\"\\+w* \\+w should|strong=\"G2316\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w seed|strong=\"G4703\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w*, *" + }, + { + "verseNum": 27, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w should|strong=\"G1492\"\\+w* \\+w sleep|strong=\"G2518\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w rise|strong=\"G1453\"\\+w* \\+w night|strong=\"G3571\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w day|strong=\"G2250\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w seed|strong=\"G4703\"\\+w* \\+w should|strong=\"G1492\"\\+w* spring \\+w up|strong=\"G1453\"\\+w* \\+w and|strong=\"G2532\"\\+w* grow, \\+w though|strong=\"G5613\"\\+w* \\+w he|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w how|strong=\"G5613\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w For|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w bears|strong=\"G2592\"\\+w* \\+w fruit|strong=\"G2592\"\\+w* \\+w by|strong=\"G1722\"\\+w* itself: \\+w first|strong=\"G4413\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w blade|strong=\"G5528\"\\+w*, \\+w then|strong=\"G1534\"\\+w* \\+w the|strong=\"G1722\"\\+w* ear, \\+w then|strong=\"G1534\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w full|strong=\"G4134\"\\+w* \\+w grain|strong=\"G4621\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* ear. *" + }, + { + "verseNum": 29, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w is|strong=\"G3588\"\\+w* ripe, \\+w immediately|strong=\"G2112\"\\+w* \\+w he|strong=\"G1161\"\\+w* puts \\+w in|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w sickle|strong=\"G1407\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w harvest|strong=\"G2326\"\\+w* \\+w has|strong=\"G3748\"\\+w* \\+w come|strong=\"G3936\"\\+w*.”*" + }, + { + "verseNum": 30, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w How|strong=\"G4459\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w we|strong=\"G2532\"\\+w* liken \\+w God|strong=\"G2316\"\\+w*’s Kingdom? \\+w Or|strong=\"G2228\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w parable|strong=\"G3850\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w we|strong=\"G2532\"\\+w* illustrate \\+w it|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 31, + "text": "\\+w It|strong=\"G3739\"\\+w*’s \\+w like|strong=\"G5613\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w grain|strong=\"G2848\"\\+w* \\+w of|strong=\"G1909\"\\+w* \\+w mustard|strong=\"G4615\"\\+w* \\+w seed|strong=\"G4690\"\\+w*, \\+w which|strong=\"G3739\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w it|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w earth|strong=\"G1093\"\\+w*, \\+w though|strong=\"G5613\"\\+w* \\+w it|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w less|strong=\"G3398\"\\+w* \\+w than|strong=\"G3398\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w seeds|strong=\"G4690\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w earth|strong=\"G1093\"\\+w*, *" + }, + { + "verseNum": 32, + "text": "\\+w yet|strong=\"G2532\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w sown|strong=\"G4687\"\\+w*, \\+w grows|strong=\"G4160\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w becomes|strong=\"G1096\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w herbs|strong=\"G3001\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w puts|strong=\"G4160\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w branches|strong=\"G2798\"\\+w*, \\+w so|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w birds|strong=\"G4071\"\\+w* \\+w of|strong=\"G5259\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w lodge|strong=\"G2681\"\\+w* \\+w under|strong=\"G5259\"\\+w* \\+w its|strong=\"G3956\"\\+w* \\+w shadow|strong=\"G4639\"\\+w*.”*" + }, + { + "verseNum": 33, + "text": "With|strong=\"G2532\"* many|strong=\"G4183\"* such|strong=\"G5108\"* parables|strong=\"G3850\"* he|strong=\"G2532\"* spoke|strong=\"G2980\"* the|strong=\"G2532\"* word|strong=\"G3056\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, as|strong=\"G2531\"* they|strong=\"G2532\"* were|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2532\"* hear it|strong=\"G2532\"*." + }, + { + "verseNum": 34, + "text": "Without|strong=\"G5565\"* a|strong=\"G1161\"* parable|strong=\"G3850\"* he|strong=\"G1161\"* didn’t|strong=\"G3588\"* speak|strong=\"G2980\"* to|strong=\"G2596\"* them|strong=\"G3588\"*; but|strong=\"G1161\"* privately|strong=\"G2398\"* to|strong=\"G2596\"* his|strong=\"G3956\"* own|strong=\"G2398\"* disciples|strong=\"G3101\"* he|strong=\"G1161\"* explained everything|strong=\"G3956\"*." + }, + { + "verseNum": 35, + "text": "On|strong=\"G1722\"* that|strong=\"G3588\"* day|strong=\"G2250\"*, when|strong=\"G2532\"* evening|strong=\"G3798\"* had|strong=\"G2532\"* come|strong=\"G1096\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Let|strong=\"G1096\"\\+w*’s \\+w go|strong=\"G1330\"\\+w* \\+w over|strong=\"G4008\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w other|strong=\"G4008\"\\+w* \\+w side|strong=\"G4008\"\\+w*.”*" + }, + { + "verseNum": 36, + "text": "Leaving|strong=\"G3588\"* the|strong=\"G1722\"* multitude|strong=\"G3793\"*, they|strong=\"G2532\"* took|strong=\"G3880\"* him|strong=\"G3588\"* with|strong=\"G3326\"* them|strong=\"G3588\"*, even|strong=\"G2532\"* as|strong=\"G5613\"* he|strong=\"G2532\"* was|strong=\"G1510\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* boat|strong=\"G4143\"*. Other|strong=\"G3588\"* small boats|strong=\"G4143\"* were|strong=\"G1510\"* also|strong=\"G2532\"* with|strong=\"G3326\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 37, + "text": "A|strong=\"G1096\"* big|strong=\"G3173\"* wind storm|strong=\"G2978\"* arose|strong=\"G1096\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* waves|strong=\"G2949\"* beat|strong=\"G1911\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"*, so|strong=\"G2532\"* much|strong=\"G3173\"* that|strong=\"G3588\"* the|strong=\"G2532\"* boat|strong=\"G4143\"* was|strong=\"G1096\"* already|strong=\"G2235\"* filled|strong=\"G1072\"*." + }, + { + "verseNum": 38, + "text": "He|strong=\"G2532\"* himself was|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* stern|strong=\"G4403\"*, asleep|strong=\"G2518\"* on|strong=\"G1909\"* the|strong=\"G1722\"* cushion|strong=\"G4344\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* woke|strong=\"G1453\"* him|strong=\"G3588\"* up|strong=\"G1453\"* and|strong=\"G2532\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, don’t|strong=\"G3588\"* you|strong=\"G4771\"* care|strong=\"G3199\"* that|strong=\"G3754\"* we|strong=\"G3754\"* are|strong=\"G1510\"* dying?”" + }, + { + "verseNum": 39, + "text": "He|strong=\"G2532\"* awoke|strong=\"G1326\"* and|strong=\"G2532\"* rebuked|strong=\"G2008\"* the|strong=\"G2532\"* wind, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, “\\+w Peace|strong=\"G4623\"\\+w*! \\+w Be|strong=\"G1096\"\\+w* \\+w still|strong=\"G5392\"\\+w*!”* The|strong=\"G2532\"* wind ceased|strong=\"G2869\"* and|strong=\"G2532\"* there|strong=\"G2532\"* was|strong=\"G1096\"* a|strong=\"G1096\"* great|strong=\"G3173\"* calm|strong=\"G1055\"*." + }, + { + "verseNum": 40, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3004\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w afraid|strong=\"G1169\"\\+w*? \\+w How|strong=\"G4459\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w that|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w faith|strong=\"G4102\"\\+w*?”*" + }, + { + "verseNum": 41, + "text": "They|strong=\"G2532\"* were|strong=\"G1510\"* greatly|strong=\"G3173\"* afraid|strong=\"G5399\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* one|strong=\"G3588\"* another|strong=\"G3588\"*, “Who|strong=\"G5101\"* then|strong=\"G2532\"* is|strong=\"G1510\"* this|strong=\"G3778\"*, that|strong=\"G3754\"* even|strong=\"G2532\"* the|strong=\"G2532\"* wind and|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* obey|strong=\"G5219\"* him|strong=\"G3588\"*?”" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "They|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* other|strong=\"G4008\"* side|strong=\"G4008\"* of|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, into|strong=\"G1519\"* the|strong=\"G2532\"* country|strong=\"G5561\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Gadarenes." + }, + { + "verseNum": 2, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G1722\"* boat|strong=\"G4143\"*, immediately|strong=\"G2112\"* a|strong=\"G2532\"* man with|strong=\"G1722\"* an|strong=\"G2532\"* unclean spirit|strong=\"G4151\"* met|strong=\"G5221\"* him|strong=\"G3588\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G1722\"* tombs|strong=\"G3419\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* lived|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* tombs|strong=\"G3418\"*. Nobody|strong=\"G3762\"* could|strong=\"G1410\"* bind|strong=\"G1210\"* him|strong=\"G3588\"* any|strong=\"G3762\"* more|strong=\"G3765\"*, not|strong=\"G3761\"* even|strong=\"G2532\"* with|strong=\"G1722\"* chains|strong=\"G1210\"*," + }, + { + "verseNum": 4, + "text": "because|strong=\"G1223\"* he|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G2532\"* often|strong=\"G4178\"* bound|strong=\"G1210\"* with|strong=\"G1223\"* fetters|strong=\"G3976\"* and|strong=\"G2532\"* chains|strong=\"G1210\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* chains|strong=\"G1210\"* had|strong=\"G2532\"* been|strong=\"G2532\"* torn|strong=\"G1288\"* apart|strong=\"G1288\"* by|strong=\"G1223\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* fetters|strong=\"G3976\"* broken|strong=\"G4937\"* in|strong=\"G2532\"* pieces|strong=\"G4937\"*. Nobody|strong=\"G3762\"* had|strong=\"G2532\"* the|strong=\"G2532\"* strength|strong=\"G2480\"* to|strong=\"G2532\"* tame|strong=\"G1150\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "Always|strong=\"G3956\"*, night|strong=\"G3571\"* and|strong=\"G2532\"* day|strong=\"G2250\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* tombs|strong=\"G3418\"* and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* mountains|strong=\"G3735\"*, he|strong=\"G2532\"* was|strong=\"G1510\"* crying|strong=\"G2896\"* out|strong=\"G2896\"*, and|strong=\"G2532\"* cutting|strong=\"G2629\"* himself|strong=\"G1438\"* with|strong=\"G1722\"* stones|strong=\"G3037\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* Jesus|strong=\"G2424\"* from|strong=\"G2532\"* afar|strong=\"G3113\"*, he|strong=\"G2532\"* ran|strong=\"G5143\"* and|strong=\"G2532\"* bowed|strong=\"G4352\"* down|strong=\"G4352\"* to|strong=\"G2532\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"G2532\"* crying|strong=\"G2896\"* out|strong=\"G2896\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “What|strong=\"G5101\"* have|strong=\"G2532\"* I|strong=\"G1473\"* to|strong=\"G2532\"* do|strong=\"G5101\"* with|strong=\"G2532\"* you|strong=\"G4771\"*, Jesus|strong=\"G2424\"*, you|strong=\"G4771\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G2532\"* Most|strong=\"G5310\"* High|strong=\"G5310\"* God|strong=\"G2316\"*? I|strong=\"G1473\"* adjure|strong=\"G3726\"* you|strong=\"G4771\"* by|strong=\"G2532\"* God|strong=\"G2316\"*, don’t|strong=\"G3588\"* torment me|strong=\"G1473\"*.”" + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* he|strong=\"G3588\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Come|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* man, \\+w you|strong=\"G3004\"\\+w* unclean \\+w spirit|strong=\"G4151\"\\+w*!” *" + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G1905\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w name|strong=\"G3686\"\\+w*?”*" + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* much|strong=\"G4183\"* that|strong=\"G2443\"* he|strong=\"G2532\"* would|strong=\"G2532\"* not|strong=\"G3361\"* send them|strong=\"G3588\"* away|strong=\"G1854\"* out|strong=\"G1854\"* of|strong=\"G2532\"* the|strong=\"G2532\"* country|strong=\"G5561\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"G1161\"* on|strong=\"G1161\"* the|strong=\"G1161\"* mountainside there|strong=\"G1563\"* was|strong=\"G1510\"* a|strong=\"G1510\"* great|strong=\"G3173\"* herd of|strong=\"G3735\"* pigs|strong=\"G5519\"* feeding|strong=\"G1006\"*." + }, + { + "verseNum": 12, + "text": "All|strong=\"G2532\"* the|strong=\"G2532\"* demons begged|strong=\"G3870\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Send|strong=\"G3992\"* us|strong=\"G3004\"* into|strong=\"G1519\"* the|strong=\"G2532\"* pigs|strong=\"G5519\"*, that|strong=\"G2443\"* we|strong=\"G2249\"* may|strong=\"G2532\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* them|strong=\"G3588\"*.”" + }, + { + "verseNum": 13, + "text": "At|strong=\"G1722\"* once Jesus|strong=\"G1525\"* gave|strong=\"G2010\"* them|strong=\"G3588\"* permission|strong=\"G2010\"*. The|strong=\"G1722\"* unclean spirits|strong=\"G4151\"* came|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G1722\"* pigs|strong=\"G5519\"*. The|strong=\"G1722\"* herd of|strong=\"G4151\"* about|strong=\"G5613\"* two|strong=\"G5613\"* thousand|strong=\"G1367\"* rushed|strong=\"G3729\"* down|strong=\"G2596\"* the|strong=\"G1722\"* steep|strong=\"G2911\"* bank|strong=\"G2911\"* into|strong=\"G1519\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* drowned|strong=\"G4155\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*." + }, + { + "verseNum": 14, + "text": "Those|strong=\"G3588\"* who|strong=\"G5101\"* fed|strong=\"G1006\"* the|strong=\"G2532\"* pigs fled|strong=\"G5343\"*, and|strong=\"G2532\"* told it|strong=\"G2532\"* in|strong=\"G1519\"* the|strong=\"G2532\"* city|strong=\"G4172\"* and|strong=\"G2532\"* in|strong=\"G1519\"* the|strong=\"G2532\"* country." + }, + { + "verseNum": 15, + "text": "They|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* saw|strong=\"G2334\"* him|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2192\"* been|strong=\"G2192\"* possessed|strong=\"G2192\"* by|strong=\"G4314\"* demons sitting|strong=\"G2521\"*, clothed|strong=\"G2439\"*, and|strong=\"G2532\"* in|strong=\"G2532\"* his|strong=\"G2192\"* right|strong=\"G4993\"* mind|strong=\"G4993\"*, even|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2192\"* the|strong=\"G2532\"* legion|strong=\"G3003\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* afraid|strong=\"G5399\"*." + }, + { + "verseNum": 16, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* saw|strong=\"G3708\"* it|strong=\"G2532\"* declared|strong=\"G1334\"* to|strong=\"G2532\"* them|strong=\"G3588\"* what|strong=\"G3588\"* happened|strong=\"G1096\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G1096\"* possessed by|strong=\"G2532\"* demons, and|strong=\"G2532\"* about|strong=\"G4012\"* the|strong=\"G2532\"* pigs|strong=\"G5519\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"G2532\"* began to|strong=\"G2532\"* beg|strong=\"G3870\"* him|strong=\"G3588\"* to|strong=\"G2532\"* depart from|strong=\"G2532\"* their|strong=\"G2532\"* region|strong=\"G3725\"*." + }, + { + "verseNum": 18, + "text": "As|strong=\"G1519\"* he|strong=\"G2532\"* was|strong=\"G1510\"* entering|strong=\"G1684\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"*, he|strong=\"G2532\"* who|strong=\"G3588\"* had|strong=\"G2532\"* been|strong=\"G1510\"* possessed by|strong=\"G2532\"* demons begged|strong=\"G3870\"* him|strong=\"G3588\"* that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"G2532\"* didn’t|strong=\"G3588\"* allow him|strong=\"G3588\"*, but|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “\\+w Go|strong=\"G5217\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w your|strong=\"G4674\"\\+w* \\+w house|strong=\"G3624\"\\+w*, \\+w to|strong=\"G1519\"\\+w* \\+w your|strong=\"G4674\"\\+w* friends, \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w great|strong=\"G3745\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w has|strong=\"G2962\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w how|strong=\"G3745\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w mercy|strong=\"G1653\"\\+w* \\+w on|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "He|strong=\"G2532\"* went|strong=\"G2424\"* his|strong=\"G3956\"* way|strong=\"G1722\"*, and|strong=\"G2532\"* began to|strong=\"G2532\"* proclaim|strong=\"G2784\"* in|strong=\"G1722\"* Decapolis|strong=\"G1179\"* how|strong=\"G3745\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* done|strong=\"G4160\"* great|strong=\"G3956\"* things|strong=\"G3956\"* for|strong=\"G1722\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* everyone|strong=\"G3956\"* marveled|strong=\"G2296\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"G2532\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* crossed|strong=\"G1276\"* back|strong=\"G3825\"* over|strong=\"G1909\"* in|strong=\"G1722\"* the|strong=\"G1722\"* boat|strong=\"G4143\"* to|strong=\"G1519\"* the|strong=\"G1722\"* other|strong=\"G4008\"* side|strong=\"G4008\"*, a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* was|strong=\"G1510\"* gathered|strong=\"G4863\"* to|strong=\"G1519\"* him|strong=\"G3588\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G1510\"* by|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*." + }, + { + "verseNum": 22, + "text": "Behold|strong=\"G3708\"*, one|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G2532\"* rulers of|strong=\"G2532\"* the|strong=\"G2532\"* synagogue, Jairus|strong=\"G2383\"* by|strong=\"G4314\"* name|strong=\"G3686\"*, came|strong=\"G2064\"*; and|strong=\"G2532\"* seeing|strong=\"G3708\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* fell|strong=\"G4098\"* at|strong=\"G4314\"* his|strong=\"G3708\"* feet|strong=\"G4228\"*" + }, + { + "verseNum": 23, + "text": "and|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* much|strong=\"G4183\"*, saying|strong=\"G3004\"*, “My|strong=\"G1473\"* little|strong=\"G2365\"* daughter|strong=\"G2365\"* is|strong=\"G3588\"* at|strong=\"G3588\"* the|strong=\"G2532\"* point|strong=\"G2079\"* of|strong=\"G2532\"* death|strong=\"G2079\"*. Please come|strong=\"G2064\"* and|strong=\"G2532\"* lay|strong=\"G2007\"* your|strong=\"G2192\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* her|strong=\"G3754\"*, that|strong=\"G3754\"* she|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G2532\"* made|strong=\"G4982\"* healthy, and|strong=\"G2532\"* live|strong=\"G2198\"*.”" + }, + { + "verseNum": 24, + "text": "He|strong=\"G2532\"* went|strong=\"G2532\"* with|strong=\"G3326\"* him|strong=\"G2532\"*, and|strong=\"G2532\"* a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* followed him|strong=\"G2532\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* pressed|strong=\"G3793\"* upon|strong=\"G3326\"* him|strong=\"G2532\"* on|strong=\"G3326\"* all|strong=\"G2532\"* sides." + }, + { + "verseNum": 25, + "text": "A|strong=\"G2532\"* certain|strong=\"G2532\"* woman|strong=\"G1135\"* who|strong=\"G2532\"* had|strong=\"G2532\"* a|strong=\"G2532\"* discharge of|strong=\"G2532\"* blood for|strong=\"G1722\"* twelve|strong=\"G1427\"* years|strong=\"G2094\"*," + }, + { + "verseNum": 26, + "text": "and|strong=\"G2532\"* had|strong=\"G2532\"* suffered|strong=\"G3958\"* many|strong=\"G4183\"* things|strong=\"G3956\"* by|strong=\"G5259\"* many|strong=\"G4183\"* physicians|strong=\"G2395\"*, and|strong=\"G2532\"* had|strong=\"G2532\"* spent|strong=\"G1159\"* all|strong=\"G3956\"* that|strong=\"G3588\"* she|strong=\"G2532\"* had|strong=\"G2532\"*, and|strong=\"G2532\"* was|strong=\"G3588\"* no|strong=\"G3367\"* better|strong=\"G3123\"*, but|strong=\"G2532\"* rather|strong=\"G3123\"* grew|strong=\"G2064\"* worse|strong=\"G5501\"*," + }, + { + "verseNum": 27, + "text": "having heard the|strong=\"G1722\"* things|strong=\"G3588\"* concerning|strong=\"G4012\"* Jesus|strong=\"G2424\"*, came|strong=\"G2064\"* up|strong=\"G1722\"* behind|strong=\"G3693\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* crowd|strong=\"G3793\"* and|strong=\"G2064\"* touched his|strong=\"G4012\"* clothes|strong=\"G2440\"*." + }, + { + "verseNum": 28, + "text": "For|strong=\"G1063\"* she|strong=\"G3754\"* said|strong=\"G3004\"*, “If|strong=\"G1437\"* I|strong=\"G1063\"* just|strong=\"G2579\"* touch his|strong=\"G4982\"* clothes|strong=\"G2440\"*, I|strong=\"G1063\"* will|strong=\"G3748\"* be|strong=\"G3588\"* made|strong=\"G4982\"* well|strong=\"G4982\"*.”" + }, + { + "verseNum": 29, + "text": "Immediately|strong=\"G2112\"* the|strong=\"G2532\"* flow|strong=\"G4077\"* of|strong=\"G2532\"* her|strong=\"G3754\"* blood was|strong=\"G3588\"* dried|strong=\"G3583\"* up|strong=\"G3583\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* felt|strong=\"G1097\"* in|strong=\"G2532\"* her|strong=\"G3754\"* body|strong=\"G4983\"* that|strong=\"G3754\"* she|strong=\"G2532\"* was|strong=\"G3588\"* healed|strong=\"G2390\"* of|strong=\"G2532\"* her|strong=\"G3754\"* affliction|strong=\"G3148\"*." + }, + { + "verseNum": 30, + "text": "Immediately|strong=\"G2112\"* Jesus|strong=\"G2424\"*, perceiving|strong=\"G1921\"* in|strong=\"G1722\"* himself|strong=\"G1438\"* that|strong=\"G3588\"* the|strong=\"G1722\"* power|strong=\"G1411\"* had|strong=\"G2424\"* gone|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G1537\"* him|strong=\"G3588\"*, turned|strong=\"G1994\"* around|strong=\"G1994\"* in|strong=\"G1722\"* the|strong=\"G1722\"* crowd|strong=\"G3793\"* and|strong=\"G2532\"* asked|strong=\"G3004\"*, “\\+w Who|strong=\"G5101\"\\+w* touched \\+w my|strong=\"G1722\"\\+w* \\+w clothes|strong=\"G2440\"\\+w*?”*" + }, + { + "verseNum": 31, + "text": "His|strong=\"G2532\"* disciples|strong=\"G3101\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “You|strong=\"G4771\"* see the|strong=\"G2532\"* multitude|strong=\"G3793\"* pressing|strong=\"G4918\"* against you|strong=\"G4771\"*, and|strong=\"G2532\"* you|strong=\"G4771\"* say|strong=\"G3004\"*, ‘Who|strong=\"G5101\"* touched me|strong=\"G1473\"*?’”" + }, + { + "verseNum": 32, + "text": "He|strong=\"G2532\"* looked|strong=\"G3708\"* around|strong=\"G4017\"* to|strong=\"G2532\"* see|strong=\"G3708\"* her|strong=\"G3708\"* who|strong=\"G3588\"* had|strong=\"G2532\"* done|strong=\"G4160\"* this|strong=\"G3778\"* thing|strong=\"G3778\"*." + }, + { + "verseNum": 33, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* woman|strong=\"G1135\"*, fearing|strong=\"G5399\"* and|strong=\"G2532\"* trembling|strong=\"G5141\"*, knowing|strong=\"G1492\"* what|strong=\"G3739\"* had|strong=\"G2532\"* been|strong=\"G1096\"* done|strong=\"G1096\"* to|strong=\"G2532\"* her|strong=\"G3956\"*, came|strong=\"G2064\"* and|strong=\"G2532\"* fell|strong=\"G4363\"* down|strong=\"G4363\"* before|strong=\"G4363\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* told|strong=\"G3004\"* him|strong=\"G3588\"* all|strong=\"G3956\"* the|strong=\"G2532\"* truth." + }, + { + "verseNum": 34, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* her|strong=\"G1519\"*, “\\+w Daughter|strong=\"G2364\"\\+w*, \\+w your|strong=\"G2532\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w has|strong=\"G4102\"\\+w* \\+w made|strong=\"G4982\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w well|strong=\"G4982\"\\+w*. \\+w Go|strong=\"G5217\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w peace|strong=\"G1515\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w cured|strong=\"G4982\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w disease|strong=\"G3148\"\\+w*.”*" + }, + { + "verseNum": 35, + "text": "While|strong=\"G2980\"* he|strong=\"G3754\"* was|strong=\"G3588\"* still|strong=\"G2089\"* speaking|strong=\"G2980\"*, people|strong=\"G3004\"* came|strong=\"G2064\"* from|strong=\"G2064\"* the|strong=\"G3588\"* synagogue ruler’s house, saying|strong=\"G3004\"*, “Your|strong=\"G3588\"* daughter|strong=\"G2364\"* is|strong=\"G3588\"* dead. Why|strong=\"G5101\"* bother the|strong=\"G3588\"* Teacher|strong=\"G1320\"* any|strong=\"G2089\"* more|strong=\"G2089\"*?”" + }, + { + "verseNum": 36, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"*, when|strong=\"G1161\"* he|strong=\"G1161\"* heard the|strong=\"G1161\"* message|strong=\"G3056\"* spoken|strong=\"G2980\"*, immediately said|strong=\"G3004\"* to|strong=\"G3004\"* the|strong=\"G1161\"* ruler of|strong=\"G3056\"* the|strong=\"G1161\"* synagogue, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*, \\+w only|strong=\"G3440\"\\+w* \\+w believe|strong=\"G4100\"\\+w*.”*" + }, + { + "verseNum": 37, + "text": "He|strong=\"G2532\"* allowed no|strong=\"G3756\"* one|strong=\"G3762\"* to|strong=\"G2532\"* follow|strong=\"G4870\"* him|strong=\"G3588\"* except|strong=\"G1487\"* Peter|strong=\"G4074\"*, James|strong=\"G2385\"*, and|strong=\"G2532\"* John|strong=\"G2491\"* the|strong=\"G2532\"* brother of|strong=\"G2532\"* James|strong=\"G2385\"*." + }, + { + "verseNum": 38, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* synagogue ruler’s house|strong=\"G3624\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* saw|strong=\"G2334\"* an|strong=\"G2532\"* uproar|strong=\"G2351\"*, weeping|strong=\"G2799\"*, and|strong=\"G2532\"* great|strong=\"G4183\"* wailing|strong=\"G2799\"*." + }, + { + "verseNum": 39, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* entered|strong=\"G1525\"* in|strong=\"G1525\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w make|strong=\"G2532\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w uproar|strong=\"G2350\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w weep|strong=\"G2799\"\\+w*? \\+w The|strong=\"G2532\"\\+w* \\+w child|strong=\"G3813\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w not|strong=\"G3756\"\\+w* dead, \\+w but|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w asleep|strong=\"G2518\"\\+w*.”*" + }, + { + "verseNum": 40, + "text": "They|strong=\"G2532\"* ridiculed him|strong=\"G3588\"*. But|strong=\"G1161\"* he|strong=\"G2532\"*, having|strong=\"G2532\"* put|strong=\"G1544\"* them|strong=\"G3588\"* all|strong=\"G3956\"* out|strong=\"G1544\"*, took|strong=\"G3880\"* the|strong=\"G2532\"* father|strong=\"G3962\"* of|strong=\"G2532\"* the|strong=\"G2532\"* child|strong=\"G3813\"*, her|strong=\"G3956\"* mother|strong=\"G3384\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* went|strong=\"G2532\"* in|strong=\"G2532\"* where|strong=\"G3699\"* the|strong=\"G2532\"* child|strong=\"G3813\"* was|strong=\"G1510\"* lying." + }, + { + "verseNum": 41, + "text": "Taking|strong=\"G2902\"* the|strong=\"G2532\"* child|strong=\"G3813\"* by|strong=\"G2532\"* the|strong=\"G2532\"* hand|strong=\"G5495\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* her|strong=\"G3588\"*, “\\+w Talitha|strong=\"G5008\"\\+w* \\+w cumi|strong=\"G2891\"\\+w*!” * which|strong=\"G3739\"* means|strong=\"G1510\"*, being|strong=\"G1510\"* interpreted|strong=\"G3177\"*, “\\+w Girl|strong=\"G2877\"\\+w*, \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w get|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*!” *" + }, + { + "verseNum": 42, + "text": "Immediately|strong=\"G2112\"* the|strong=\"G2532\"* girl|strong=\"G2877\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* and|strong=\"G2532\"* walked|strong=\"G4043\"*, for|strong=\"G1063\"* she|strong=\"G2532\"* was|strong=\"G1510\"* twelve|strong=\"G1427\"* years|strong=\"G2094\"* old|strong=\"G2094\"*. They|strong=\"G2532\"* were|strong=\"G1510\"* amazed|strong=\"G1839\"* with|strong=\"G2532\"* great|strong=\"G3173\"* amazement|strong=\"G1611\"*." + }, + { + "verseNum": 43, + "text": "He|strong=\"G2532\"* strictly|strong=\"G4183\"* ordered|strong=\"G1291\"* them|strong=\"G1325\"* that|strong=\"G2443\"* no|strong=\"G3367\"* one|strong=\"G3367\"* should|strong=\"G2532\"* know|strong=\"G1097\"* this|strong=\"G3778\"*, and|strong=\"G2532\"* commanded|strong=\"G1291\"* that|strong=\"G2443\"* something|strong=\"G4183\"* should|strong=\"G2532\"* be|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2443\"* her|strong=\"G1325\"* to|strong=\"G2443\"* eat|strong=\"G2068\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G2064\"* there|strong=\"G2532\"*. He|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* his|strong=\"G1519\"* own|strong=\"G3968\"* country|strong=\"G3968\"*, and|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* followed him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"G2532\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"* had|strong=\"G2532\"* come|strong=\"G1096\"*, he|strong=\"G2532\"* began|strong=\"G1096\"* to|strong=\"G2532\"* teach|strong=\"G1321\"* in|strong=\"G1722\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"*, and|strong=\"G2532\"* many|strong=\"G4183\"* hearing him|strong=\"G3588\"* were|strong=\"G3588\"* astonished|strong=\"G1605\"*, saying|strong=\"G3004\"*, “Where|strong=\"G4159\"* did|strong=\"G2532\"* this|strong=\"G3778\"* man|strong=\"G3778\"* get|strong=\"G1096\"* these|strong=\"G3778\"* things|strong=\"G3778\"*?” and|strong=\"G2532\"*, “What|strong=\"G5101\"* is|strong=\"G3588\"* the|strong=\"G1722\"* wisdom|strong=\"G4678\"* that|strong=\"G3588\"* is|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2532\"* this|strong=\"G3778\"* man|strong=\"G3778\"*, that|strong=\"G3588\"* such|strong=\"G5108\"* mighty|strong=\"G1411\"* works|strong=\"G1411\"* come|strong=\"G1096\"* about|strong=\"G1722\"* by|strong=\"G1223\"* his|strong=\"G1223\"* hands|strong=\"G5495\"*?" + }, + { + "verseNum": 3, + "text": "Isn’t|strong=\"G3588\"* this|strong=\"G3778\"* the|strong=\"G1722\"* carpenter|strong=\"G5045\"*, the|strong=\"G1722\"* son|strong=\"G5207\"* of|strong=\"G5207\"* Mary|strong=\"G3137\"* and|strong=\"G2532\"* brother of|strong=\"G5207\"* James|strong=\"G2385\"*, Joses|strong=\"G2500\"*, Judah|strong=\"G2455\"*, and|strong=\"G2532\"* Simon|strong=\"G4613\"*? Aren’t|strong=\"G3588\"* his|strong=\"G1722\"* sisters here|strong=\"G5602\"* with|strong=\"G1722\"* us|strong=\"G2249\"*?” So|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G1510\"* offended|strong=\"G4624\"* at|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w A|strong=\"G2532\"\\+w* \\+w prophet|strong=\"G4396\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w without|strong=\"G3361\"\\+w* honor, \\+w except|strong=\"G1487\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w country|strong=\"G3968\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w relatives|strong=\"G4773\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w house|strong=\"G3614\"\\+w*.”*" + }, + { + "verseNum": 5, + "text": "He|strong=\"G2532\"* could|strong=\"G1410\"* do|strong=\"G4160\"* no|strong=\"G3756\"* mighty|strong=\"G1411\"* work|strong=\"G1411\"* there|strong=\"G1563\"*, except|strong=\"G1487\"* that|strong=\"G3588\"* he|strong=\"G2532\"* laid|strong=\"G2007\"* his|strong=\"G2007\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* a|strong=\"G2532\"* few|strong=\"G3641\"* sick|strong=\"G3641\"* people|strong=\"G4160\"* and|strong=\"G2532\"* healed|strong=\"G2323\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* marveled|strong=\"G2296\"* because|strong=\"G1223\"* of|strong=\"G1223\"* their|strong=\"G2532\"* unbelief." + }, + { + "verseNum": 7, + "text": "He|strong=\"G2532\"* called|strong=\"G4341\"* to|strong=\"G2532\"* himself|strong=\"G1438\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*, and|strong=\"G2532\"* began to|strong=\"G2532\"* send them|strong=\"G3588\"* out|strong=\"G2532\"* two|strong=\"G1417\"* by|strong=\"G2532\"* two|strong=\"G1417\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* gave|strong=\"G1325\"* them|strong=\"G3588\"* authority|strong=\"G1849\"* over|strong=\"G1849\"* the|strong=\"G2532\"* unclean spirits|strong=\"G4151\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"G2532\"* commanded|strong=\"G3853\"* them|strong=\"G3588\"* that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G3588\"* take|strong=\"G2532\"* nothing|strong=\"G3367\"* for|strong=\"G1519\"* their|strong=\"G2532\"* journey|strong=\"G3598\"*, except|strong=\"G1487\"* a|strong=\"G2532\"* staff|strong=\"G4464\"* only|strong=\"G3440\"*: no|strong=\"G3361\"* bread, no|strong=\"G3361\"* wallet, no|strong=\"G3361\"* money|strong=\"G5475\"* in|strong=\"G1519\"* their|strong=\"G2532\"* purse|strong=\"G2223\"*," + }, + { + "verseNum": 9, + "text": "but|strong=\"G2532\"* to|strong=\"G2532\"* wear|strong=\"G5265\"* sandals|strong=\"G4547\"*, and|strong=\"G2532\"* not|strong=\"G3361\"* put|strong=\"G1746\"* on|strong=\"G1746\"* two|strong=\"G1417\"* tunics|strong=\"G5509\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3004\"*, “\\+w Wherever|strong=\"G3699\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w*, \\+w stay|strong=\"G3306\"\\+w* \\+w there|strong=\"G1563\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w depart|strong=\"G1831\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w there|strong=\"G1563\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w Whoever|strong=\"G3739\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w nor|strong=\"G3366\"\\+w* hear \\+w you|strong=\"G5210\"\\+w*, \\+w as|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w depart|strong=\"G1607\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w*, \\+w shake|strong=\"G1621\"\\+w* \\+w off|strong=\"G1621\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dust|strong=\"G5522\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w under|strong=\"G5270\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w feet|strong=\"G4228\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w testimony|strong=\"G3142\"\\+w* \\+w against|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w*. Assuredly, \\+w I|strong=\"G3739\"\\+w* tell \\+w you|strong=\"G5210\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w more|strong=\"G2532\"\\+w* tolerable \\+w for|strong=\"G1519\"\\+w* Sodom \\+w and|strong=\"G2532\"\\+w* Gomorrah \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w day|strong=\"G3588\"\\+w* \\+w of|strong=\"G2532\"\\+w* judgment \\+w than|strong=\"G2532\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w that|strong=\"G3739\"\\+w* city!”*" + }, + { + "verseNum": 12, + "text": "They|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* preached|strong=\"G2784\"* that|strong=\"G2443\"* people should|strong=\"G2532\"* repent|strong=\"G3340\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"G2532\"* cast|strong=\"G1544\"* out|strong=\"G1544\"* many|strong=\"G4183\"* demons|strong=\"G1140\"*, and|strong=\"G2532\"* anointed many|strong=\"G4183\"* with|strong=\"G2532\"* oil|strong=\"G1637\"* who|strong=\"G2532\"* were|strong=\"G2532\"* sick and|strong=\"G2532\"* healed|strong=\"G2323\"* them|strong=\"G1544\"*." + }, + { + "verseNum": 14, + "text": "King|strong=\"G3588\"* Herod|strong=\"G2264\"* heard this|strong=\"G3778\"*, for|strong=\"G1063\"* his|strong=\"G1223\"* name|strong=\"G3686\"* had|strong=\"G2532\"* become|strong=\"G1096\"* known|strong=\"G5318\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"*, “John|strong=\"G2491\"* the|strong=\"G1722\"* Baptizer has|strong=\"G1096\"* risen|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*, and|strong=\"G2532\"* therefore|strong=\"G1223\"* these|strong=\"G3778\"* powers|strong=\"G1411\"* are|strong=\"G3588\"* at|strong=\"G1722\"* work|strong=\"G1754\"* in|strong=\"G1722\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* others|strong=\"G3588\"* said|strong=\"G3004\"*, “He|strong=\"G1161\"* is|strong=\"G1510\"* Elijah|strong=\"G2243\"*.” Others|strong=\"G3588\"* said|strong=\"G3004\"*, “He|strong=\"G1161\"* is|strong=\"G1510\"* a|strong=\"G5613\"* prophet|strong=\"G4396\"*, or|strong=\"G1161\"* like|strong=\"G5613\"* one|strong=\"G1520\"* of|strong=\"G1520\"* the|strong=\"G1161\"* prophets|strong=\"G4396\"*.”" + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* Herod|strong=\"G2264\"*, when|strong=\"G1161\"* he|strong=\"G1161\"* heard this|strong=\"G3778\"*, said|strong=\"G3004\"*, “This|strong=\"G3778\"* is|strong=\"G3588\"* John|strong=\"G2491\"*, whom|strong=\"G3739\"* I|strong=\"G1473\"* beheaded. He|strong=\"G1161\"* has|strong=\"G3739\"* risen|strong=\"G1453\"* from|strong=\"G3588\"* the|strong=\"G1161\"* dead.”" + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* Herod|strong=\"G2264\"* himself|strong=\"G1438\"* had|strong=\"G2532\"* sent|strong=\"G2532\"* out|strong=\"G2532\"* and|strong=\"G2532\"* arrested|strong=\"G2902\"* John|strong=\"G2491\"* and|strong=\"G2532\"* bound|strong=\"G1210\"* him|strong=\"G3588\"* in|strong=\"G1722\"* prison|strong=\"G5438\"* for|strong=\"G1063\"* the|strong=\"G1722\"* sake|strong=\"G1223\"* of|strong=\"G1223\"* Herodias|strong=\"G2266\"*, his|strong=\"G1438\"* brother Philip|strong=\"G5376\"*’s wife|strong=\"G1135\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* had|strong=\"G2532\"* married|strong=\"G1060\"* her|strong=\"G1438\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* John|strong=\"G2491\"* had|strong=\"G2192\"* said|strong=\"G3004\"* to|strong=\"G3004\"* Herod|strong=\"G2264\"*, “It|strong=\"G3754\"* is|strong=\"G3588\"* not|strong=\"G3756\"* lawful|strong=\"G1832\"* for|strong=\"G1063\"* you|strong=\"G4771\"* to|strong=\"G3004\"* have|strong=\"G2192\"* your|strong=\"G2192\"* brother’s|strong=\"G2192\"* wife|strong=\"G1135\"*.”" + }, + { + "verseNum": 19, + "text": "Herodias|strong=\"G2266\"* set|strong=\"G2532\"* herself against|strong=\"G1758\"* him|strong=\"G3588\"* and|strong=\"G2532\"* desired|strong=\"G2309\"* to|strong=\"G2532\"* kill him|strong=\"G3588\"*, but|strong=\"G1161\"* she|strong=\"G2532\"* couldn’t|strong=\"G3588\"*," + }, + { + "verseNum": 20, + "text": "for|strong=\"G1063\"* Herod|strong=\"G2264\"* feared|strong=\"G5399\"* John|strong=\"G2491\"*, knowing|strong=\"G1492\"* that|strong=\"G3588\"* he|strong=\"G2532\"* was|strong=\"G3588\"* a|strong=\"G2532\"* righteous|strong=\"G1342\"* and|strong=\"G2532\"* holy man|strong=\"G1342\"*, and|strong=\"G2532\"* kept|strong=\"G4933\"* him|strong=\"G3588\"* safe|strong=\"G4933\"*. When|strong=\"G2532\"* he|strong=\"G2532\"* heard him|strong=\"G3588\"*, he|strong=\"G2532\"* did|strong=\"G2532\"* many|strong=\"G4183\"* things|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* heard him|strong=\"G3588\"* gladly|strong=\"G2234\"*." + }, + { + "verseNum": 21, + "text": "Then|strong=\"G2532\"* a|strong=\"G1096\"* convenient|strong=\"G2121\"* day|strong=\"G2250\"* came|strong=\"G1096\"* when|strong=\"G3753\"* Herod|strong=\"G2264\"* on|strong=\"G4160\"* his|strong=\"G4160\"* birthday|strong=\"G1077\"* made|strong=\"G4160\"* a|strong=\"G1096\"* supper|strong=\"G1173\"* for|strong=\"G2532\"* his|strong=\"G4160\"* nobles, the|strong=\"G2532\"* high|strong=\"G2532\"* officers, and|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G4413\"* men|strong=\"G4413\"* of|strong=\"G2250\"* Galilee|strong=\"G1056\"*." + }, + { + "verseNum": 22, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* daughter|strong=\"G2364\"* of|strong=\"G2532\"* Herodias|strong=\"G2266\"* herself came|strong=\"G1525\"* in|strong=\"G1525\"* and|strong=\"G2532\"* danced|strong=\"G3738\"*, she|strong=\"G2532\"* pleased Herod|strong=\"G2264\"* and|strong=\"G2532\"* those|strong=\"G3588\"* sitting|strong=\"G2532\"* with|strong=\"G2532\"* him|strong=\"G3588\"*. The|strong=\"G2532\"* king|strong=\"G3588\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* young|strong=\"G3739\"* lady, “Ask|strong=\"G3004\"* me|strong=\"G1325\"* whatever|strong=\"G3739\"* you|strong=\"G4771\"* want|strong=\"G2309\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* will|strong=\"G2309\"* give|strong=\"G1325\"* it|strong=\"G2532\"* to|strong=\"G2532\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* swore|strong=\"G3660\"* to|strong=\"G2532\"* her|strong=\"G1437\"*, “Whatever|strong=\"G3739\"* you|strong=\"G4771\"* ask of|strong=\"G2532\"* me|strong=\"G1325\"*, I|strong=\"G1473\"* will|strong=\"G2532\"* give|strong=\"G1325\"* you|strong=\"G4771\"*, up|strong=\"G1325\"* to|strong=\"G2532\"* half|strong=\"G2255\"* of|strong=\"G2532\"* my|strong=\"G1325\"* kingdom.”" + }, + { + "verseNum": 24, + "text": "She|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* her|strong=\"G3588\"* mother|strong=\"G3384\"*, “What|strong=\"G5101\"* shall|strong=\"G2532\"* I|strong=\"G2532\"* ask|strong=\"G3004\"*?”" + }, + { + "verseNum": 25, + "text": "She|strong=\"G2532\"* came|strong=\"G1525\"* in|strong=\"G1909\"* immediately|strong=\"G2112\"* with|strong=\"G3326\"* haste|strong=\"G4710\"* to|strong=\"G4314\"* the|strong=\"G2532\"* king|strong=\"G3588\"* and|strong=\"G2532\"* requested, “I|strong=\"G1473\"* want|strong=\"G2309\"* you|strong=\"G1325\"* to|strong=\"G4314\"* give|strong=\"G1325\"* me|strong=\"G1325\"* right|strong=\"G2117\"* now|strong=\"G2532\"* the|strong=\"G2532\"* head|strong=\"G2776\"* of|strong=\"G2532\"* John|strong=\"G2491\"* the|strong=\"G2532\"* Baptizer on|strong=\"G1909\"* a|strong=\"G2532\"* platter|strong=\"G4094\"*.”" + }, + { + "verseNum": 26, + "text": "The|strong=\"G2532\"* king|strong=\"G3588\"* was|strong=\"G1096\"* exceedingly sorry|strong=\"G4036\"*, but|strong=\"G2532\"* for|strong=\"G1223\"* the|strong=\"G2532\"* sake|strong=\"G1223\"* of|strong=\"G1223\"* his|strong=\"G1438\"* oaths|strong=\"G3727\"* and|strong=\"G2532\"* of|strong=\"G1223\"* his|strong=\"G1438\"* dinner guests, he|strong=\"G2532\"* didn’t|strong=\"G3588\"* wish|strong=\"G2309\"* to|strong=\"G2532\"* refuse|strong=\"G3756\"* her|strong=\"G1438\"*." + }, + { + "verseNum": 27, + "text": "Immediately|strong=\"G2112\"* the|strong=\"G1722\"* king|strong=\"G3588\"* sent|strong=\"G2532\"* out|strong=\"G2532\"* a|strong=\"G2532\"* soldier of|strong=\"G2532\"* his|strong=\"G1722\"* guard|strong=\"G2532\"* and|strong=\"G2532\"* commanded|strong=\"G2004\"* to|strong=\"G2532\"* bring|strong=\"G5342\"* John|strong=\"G2532\"*’s head|strong=\"G2776\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* went|strong=\"G2532\"* and|strong=\"G2532\"* beheaded him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* prison|strong=\"G5438\"*," + }, + { + "verseNum": 28, + "text": "and|strong=\"G2532\"* brought|strong=\"G5342\"* his|strong=\"G1438\"* head|strong=\"G2776\"* on|strong=\"G1909\"* a|strong=\"G2532\"* platter|strong=\"G4094\"*, and|strong=\"G2532\"* gave|strong=\"G1325\"* it|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G1722\"* young lady; and|strong=\"G2532\"* the|strong=\"G1722\"* young lady gave|strong=\"G1325\"* it|strong=\"G2532\"* to|strong=\"G2532\"* her|strong=\"G1325\"* mother|strong=\"G3384\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"G2532\"* his|strong=\"G1722\"* disciples|strong=\"G3101\"* heard this|strong=\"G3588\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* and|strong=\"G2532\"* took|strong=\"G2532\"* up|strong=\"G2532\"* his|strong=\"G1722\"* corpse|strong=\"G4430\"* and|strong=\"G2532\"* laid|strong=\"G5087\"* it|strong=\"G2532\"* in|strong=\"G1722\"* a|strong=\"G2532\"* tomb|strong=\"G3419\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"G2532\"* apostles gathered|strong=\"G4863\"* themselves|strong=\"G4863\"* together|strong=\"G4863\"* to|strong=\"G4314\"* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* told|strong=\"G4314\"* him|strong=\"G3588\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, whatever|strong=\"G3745\"* they|strong=\"G2532\"* had|strong=\"G2424\"* done|strong=\"G4160\"*, and|strong=\"G2532\"* whatever|strong=\"G3745\"* they|strong=\"G2532\"* had|strong=\"G2424\"* taught|strong=\"G1321\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Come|strong=\"G2064\"\\+w* \\+w away|strong=\"G5217\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w deserted|strong=\"G2048\"\\+w* \\+w place|strong=\"G5117\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w rest|strong=\"G1510\"\\+w* awhile.”* For|strong=\"G1063\"* there|strong=\"G2532\"* were|strong=\"G1510\"* many|strong=\"G4183\"* coming|strong=\"G2064\"* and|strong=\"G2532\"* going|strong=\"G5217\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* no|strong=\"G3761\"* leisure|strong=\"G2119\"* so|strong=\"G2532\"* much|strong=\"G4183\"* as|strong=\"G1519\"* to|strong=\"G1519\"* eat|strong=\"G2068\"*." + }, + { + "verseNum": 32, + "text": "They|strong=\"G2532\"* went|strong=\"G2532\"* away in|strong=\"G1722\"* the|strong=\"G1722\"* boat|strong=\"G4143\"* to|strong=\"G1519\"* a|strong=\"G2532\"* deserted|strong=\"G2048\"* place|strong=\"G5117\"* by|strong=\"G1722\"* themselves|strong=\"G2398\"*." + }, + { + "verseNum": 33, + "text": "They|strong=\"G2532\"*+ 6:33 TR reads “The multitudes” instead of “They”* saw|strong=\"G3708\"* them|strong=\"G3588\"* going|strong=\"G5217\"*, and|strong=\"G2532\"* many|strong=\"G4183\"* recognized|strong=\"G1921\"* him|strong=\"G3588\"* and|strong=\"G2532\"* ran|strong=\"G4936\"* there|strong=\"G1563\"* on|strong=\"G4281\"* foot|strong=\"G3979\"* from|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* cities|strong=\"G4172\"*. They|strong=\"G2532\"* arrived before|strong=\"G4281\"* them|strong=\"G3588\"* and|strong=\"G2532\"* came|strong=\"G2532\"* together|strong=\"G4936\"* to|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G1510\"* came|strong=\"G1831\"* out|strong=\"G1831\"*, saw|strong=\"G3708\"* a|strong=\"G2192\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2192\"* compassion|strong=\"G4697\"* on|strong=\"G1909\"* them|strong=\"G1438\"* because|strong=\"G3754\"* they|strong=\"G2532\"* were|strong=\"G1510\"* like|strong=\"G5613\"* sheep|strong=\"G4263\"* without|strong=\"G3361\"* a|strong=\"G2192\"* shepherd|strong=\"G4166\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* began|strong=\"G1909\"* to|strong=\"G2532\"* teach|strong=\"G1321\"* them|strong=\"G1438\"* many|strong=\"G4183\"* things|strong=\"G4183\"*." + }, + { + "verseNum": 35, + "text": "When|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G1510\"* late|strong=\"G5610\"* in|strong=\"G2532\"* the|strong=\"G2532\"* day|strong=\"G5610\"*, his|strong=\"G2532\"* disciples|strong=\"G3101\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “This|strong=\"G3588\"* place|strong=\"G5117\"* is|strong=\"G1510\"* deserted|strong=\"G2048\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* is|strong=\"G1510\"* late|strong=\"G5610\"* in|strong=\"G2532\"* the|strong=\"G2532\"* day|strong=\"G5610\"*." + }, + { + "verseNum": 36, + "text": "Send them|strong=\"G3588\"* away, that|strong=\"G2443\"* they|strong=\"G2532\"* may|strong=\"G2532\"* go|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* surrounding|strong=\"G2945\"* country and|strong=\"G2532\"* villages|strong=\"G2968\"* and|strong=\"G2532\"* buy themselves|strong=\"G1438\"* bread, for|strong=\"G1519\"* they|strong=\"G2532\"* have|strong=\"G2532\"* nothing|strong=\"G5101\"* to|strong=\"G1519\"* eat|strong=\"G2068\"*.”" + }, + { + "verseNum": 37, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w You|strong=\"G5210\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w them|strong=\"G3588\"\\+w* something \\+w to|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w*.”*" + }, + { + "verseNum": 38, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w How|strong=\"G4214\"\\+w* \\+w many|strong=\"G4214\"\\+w* loaves \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w have|strong=\"G2192\"\\+w*? \\+w Go|strong=\"G5217\"\\+w* \\+w see|strong=\"G3708\"\\+w*.”*" + }, + { + "verseNum": 39, + "text": "He|strong=\"G2532\"* commanded|strong=\"G2004\"* them|strong=\"G3588\"* that|strong=\"G3588\"* everyone|strong=\"G3956\"* should|strong=\"G3588\"* sit|strong=\"G3956\"* down in|strong=\"G1909\"* groups|strong=\"G4849\"* on|strong=\"G1909\"* the|strong=\"G2532\"* green|strong=\"G5515\"* grass|strong=\"G5528\"*." + }, + { + "verseNum": 40, + "text": "They|strong=\"G2532\"* sat|strong=\"G2532\"* down|strong=\"G2596\"* in|strong=\"G2596\"* ranks|strong=\"G4237\"*, by|strong=\"G2596\"* hundreds|strong=\"G1540\"* and|strong=\"G2532\"* by|strong=\"G2596\"* fifties|strong=\"G4004\"*." + }, + { + "verseNum": 41, + "text": "He|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* five|strong=\"G4002\"* loaves and|strong=\"G2532\"* the|strong=\"G2532\"* two|strong=\"G1417\"* fish|strong=\"G2486\"*; and|strong=\"G2532\"* looking|strong=\"G2532\"* up|strong=\"G1519\"* to|strong=\"G1519\"* heaven|strong=\"G3772\"*, he|strong=\"G2532\"* blessed|strong=\"G2127\"* and|strong=\"G2532\"* broke|strong=\"G2622\"* the|strong=\"G2532\"* loaves, and|strong=\"G2532\"* he|strong=\"G2532\"* gave|strong=\"G1325\"* to|strong=\"G1519\"* his|strong=\"G3956\"* disciples|strong=\"G3101\"* to|strong=\"G1519\"* set|strong=\"G3908\"* before|strong=\"G3908\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* divided|strong=\"G3307\"* the|strong=\"G2532\"* two|strong=\"G1417\"* fish|strong=\"G2486\"* among|strong=\"G1519\"* them|strong=\"G3588\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 42, + "text": "They|strong=\"G2532\"* all|strong=\"G3956\"* ate|strong=\"G2068\"* and|strong=\"G2532\"* were|strong=\"G2532\"* filled|strong=\"G5526\"*." + }, + { + "verseNum": 43, + "text": "They|strong=\"G2532\"* took|strong=\"G2532\"* up|strong=\"G4138\"* twelve|strong=\"G1427\"* baskets|strong=\"G2894\"* full|strong=\"G4138\"* of|strong=\"G2532\"* broken|strong=\"G2801\"* pieces|strong=\"G2801\"* and|strong=\"G2532\"* also|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* fish|strong=\"G2486\"*." + }, + { + "verseNum": 44, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* ate|strong=\"G2068\"* the|strong=\"G2532\"* loaves were|strong=\"G1510\"*+ 6:44 TR adds “about”* five|strong=\"G4000\"* thousand|strong=\"G4000\"* men|strong=\"G3588\"*." + }, + { + "verseNum": 45, + "text": "Immediately|strong=\"G2112\"* he|strong=\"G2532\"* made|strong=\"G1519\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* get|strong=\"G1684\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"* and|strong=\"G2532\"* go|strong=\"G4254\"* ahead|strong=\"G4254\"* to|strong=\"G1519\"* the|strong=\"G2532\"* other|strong=\"G4008\"* side|strong=\"G4008\"*, to|strong=\"G1519\"* Bethsaida, while|strong=\"G2193\"* he|strong=\"G2532\"* himself|strong=\"G1519\"* sent|strong=\"G2532\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* away." + }, + { + "verseNum": 46, + "text": "After|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* taken leave of|strong=\"G2532\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* went|strong=\"G2532\"* up|strong=\"G1519\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"* to|strong=\"G1519\"* pray|strong=\"G4336\"*." + }, + { + "verseNum": 47, + "text": "When|strong=\"G2532\"* evening|strong=\"G3798\"* had|strong=\"G2532\"* come|strong=\"G1096\"*, the|strong=\"G1722\"* boat|strong=\"G4143\"* was|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2532\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G1510\"* alone|strong=\"G3441\"* on|strong=\"G1909\"* the|strong=\"G1722\"* land|strong=\"G1093\"*." + }, + { + "verseNum": 48, + "text": "Seeing|strong=\"G3708\"* them|strong=\"G3588\"* distressed in|strong=\"G1722\"* rowing|strong=\"G1643\"*, for|strong=\"G1063\"* the|strong=\"G1722\"* wind was|strong=\"G1510\"* contrary|strong=\"G1727\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, about|strong=\"G4012\"* the|strong=\"G1722\"* fourth|strong=\"G5067\"* watch|strong=\"G5438\"* of|strong=\"G4012\"* the|strong=\"G1722\"* night|strong=\"G3571\"* he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, walking|strong=\"G4043\"* on|strong=\"G1909\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*;+ 6:48 See Job 9:8* and|strong=\"G2532\"* he|strong=\"G2532\"* would|strong=\"G2309\"* have|strong=\"G2309\"* passed|strong=\"G3588\"* by|strong=\"G1722\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 49, + "text": "but|strong=\"G1161\"* they|strong=\"G2532\"*, when|strong=\"G1161\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* him|strong=\"G3588\"* walking|strong=\"G4043\"* on|strong=\"G1909\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, supposed|strong=\"G1380\"* that|strong=\"G3754\"* it|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* ghost|strong=\"G5326\"*, and|strong=\"G2532\"* cried|strong=\"G2532\"* out|strong=\"G2532\"*;" + }, + { + "verseNum": 50, + "text": "for|strong=\"G1063\"* they|strong=\"G2532\"* all|strong=\"G3956\"* saw|strong=\"G3708\"* him|strong=\"G3588\"* and|strong=\"G2532\"* were|strong=\"G1510\"* troubled|strong=\"G5015\"*. But|strong=\"G1161\"* he|strong=\"G2532\"* immediately|strong=\"G2112\"* spoke|strong=\"G2980\"* with|strong=\"G3326\"* them|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Cheer \\+w up|strong=\"G3361\"\\+w*! \\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w I|strong=\"G1473\"\\+w*!*+ 6:50 or, “I AM!”* Don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*.”*" + }, + { + "verseNum": 51, + "text": "He|strong=\"G2532\"* got into|strong=\"G1519\"* the|strong=\"G1722\"* boat|strong=\"G4143\"* with|strong=\"G1722\"* them|strong=\"G3588\"*; and|strong=\"G2532\"* the|strong=\"G1722\"* wind ceased|strong=\"G2869\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* very|strong=\"G3029\"* amazed|strong=\"G1839\"* among|strong=\"G1722\"* themselves|strong=\"G1438\"*, and|strong=\"G2532\"* marveled;" + }, + { + "verseNum": 52, + "text": "for|strong=\"G1063\"* they|strong=\"G3588\"* hadn’t|strong=\"G3588\"* understood|strong=\"G4920\"* about|strong=\"G1909\"* the|strong=\"G1909\"* loaves, but|strong=\"G1063\"* their|strong=\"G3588\"* hearts|strong=\"G2588\"* were|strong=\"G1510\"* hardened|strong=\"G4456\"*." + }, + { + "verseNum": 53, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* crossed|strong=\"G1276\"* over|strong=\"G1909\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* land|strong=\"G1093\"* at|strong=\"G1909\"* Gennesaret|strong=\"G1082\"* and|strong=\"G2532\"* moored|strong=\"G4358\"* to|strong=\"G1519\"* the|strong=\"G2532\"* shore|strong=\"G1093\"*." + }, + { + "verseNum": 54, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* boat|strong=\"G4143\"*, immediately|strong=\"G2112\"* the|strong=\"G2532\"* people|strong=\"G3588\"* recognized|strong=\"G1921\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 55, + "text": "and|strong=\"G2532\"* ran|strong=\"G4063\"* around|strong=\"G1909\"* that|strong=\"G3754\"* whole|strong=\"G3650\"* region|strong=\"G5561\"*, and|strong=\"G2532\"* began|strong=\"G1909\"* to|strong=\"G2532\"* bring|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* sick|strong=\"G2560\"* on|strong=\"G1909\"* their|strong=\"G2532\"* mats|strong=\"G2895\"* to|strong=\"G2532\"* where|strong=\"G3699\"* they|strong=\"G2532\"* heard he|strong=\"G2532\"* was|strong=\"G1510\"*." + }, + { + "verseNum": 56, + "text": "Wherever|strong=\"G3699\"* he|strong=\"G2532\"* entered|strong=\"G1531\"*—into|strong=\"G1519\"* villages|strong=\"G2968\"*, or|strong=\"G2228\"* into|strong=\"G1519\"* cities|strong=\"G4172\"*, or|strong=\"G2228\"* into|strong=\"G1519\"* the|strong=\"G1722\"* country—they|strong=\"G2532\"* laid|strong=\"G5087\"* the|strong=\"G1722\"* sick in|strong=\"G1722\"* the|strong=\"G1722\"* marketplaces and|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* just|strong=\"G2532\"* touch the|strong=\"G1722\"* fringe|strong=\"G2899\"*+ 6:56 or, tassel* of|strong=\"G2532\"* his|strong=\"G1519\"* garment|strong=\"G2440\"*; and|strong=\"G2532\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* touched him|strong=\"G3588\"* were|strong=\"G3588\"* made|strong=\"G4982\"* well|strong=\"G4982\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* some|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, having|strong=\"G2532\"* come|strong=\"G2064\"* from|strong=\"G2064\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"G2532\"* when|strong=\"G2532\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* some|strong=\"G5100\"* of|strong=\"G2532\"* his|strong=\"G3708\"* disciples|strong=\"G3101\"* eating|strong=\"G2068\"* bread with|strong=\"G2532\"* defiled|strong=\"G2839\"*, that|strong=\"G3754\"* is|strong=\"G1510\"* unwashed, hands|strong=\"G5495\"*, they|strong=\"G2532\"* found|strong=\"G1510\"* fault." + }, + { + "verseNum": 3, + "text": "(For|strong=\"G1063\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* don’t|strong=\"G3588\"* eat|strong=\"G2068\"* unless|strong=\"G1437\"* they|strong=\"G2532\"* wash|strong=\"G3538\"* their|strong=\"G2532\"* hands|strong=\"G5495\"* and|strong=\"G2532\"* forearms, holding|strong=\"G2902\"* to|strong=\"G2532\"* the|strong=\"G2532\"* tradition|strong=\"G3862\"* of|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"G2532\"* don’t eat|strong=\"G2068\"* when|strong=\"G2532\"* they|strong=\"G2532\"* come|strong=\"G1510\"* from|strong=\"G2532\"* the|strong=\"G2532\"* marketplace unless|strong=\"G1437\"* they|strong=\"G2532\"* bathe themselves|strong=\"G1510\"*, and|strong=\"G2532\"* there|strong=\"G2532\"* are|strong=\"G1510\"* many|strong=\"G4183\"* other|strong=\"G4183\"* things|strong=\"G4183\"* which|strong=\"G3739\"* they|strong=\"G2532\"* have|strong=\"G2532\"* received|strong=\"G3880\"* to|strong=\"G2532\"* hold|strong=\"G2902\"* to|strong=\"G2532\"*: washings of|strong=\"G2532\"* cups|strong=\"G4221\"*, pitchers|strong=\"G3582\"*, bronze vessels|strong=\"G5473\"*, and|strong=\"G2532\"* couches.)" + }, + { + "verseNum": 5, + "text": "The|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “Why|strong=\"G5101\"* don’t|strong=\"G3588\"* your|strong=\"G1223\"* disciples|strong=\"G3101\"* walk|strong=\"G4043\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* tradition|strong=\"G3862\"* of|strong=\"G1223\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*, but|strong=\"G2532\"* eat|strong=\"G2068\"* their|strong=\"G2532\"* bread with|strong=\"G1223\"* unwashed hands|strong=\"G5495\"*?”" + }, + { + "verseNum": 6, + "text": "He|strong=\"G1161\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Well|strong=\"G2573\"\\+w* \\+w did|strong=\"G2573\"\\+w* \\+w Isaiah|strong=\"G2268\"\\+w* \\+w prophesy|strong=\"G4395\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w hypocrites|strong=\"G5273\"\\+w*, \\+w as|strong=\"G5613\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w*,*" + }, + { + "verseNum": 7, + "text": "\\+w They|strong=\"G1161\"\\+w* \\+w worship|strong=\"G4576\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G1161\"\\+w* \\+w vain|strong=\"G3155\"\\+w*,*" + }, + { + "verseNum": 8, + "text": "“\\+w For|strong=\"G2316\"\\+w* you set aside \\+w the|strong=\"G3588\"\\+w* \\+w commandment|strong=\"G1785\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w and|strong=\"G2316\"\\+w* \\+w hold|strong=\"G2902\"\\+w* tightly \\+w to|strong=\"G2316\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w tradition|strong=\"G3862\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w men|strong=\"G3588\"\\+w*—\\+w the|strong=\"G3588\"\\+w* washing \\+w of|strong=\"G2316\"\\+w* pitchers \\+w and|strong=\"G2316\"\\+w* cups, \\+w and|strong=\"G2316\"\\+w* you \\+w do|strong=\"G3588\"\\+w* many \\+w other|strong=\"G3588\"\\+w* \\+w such|strong=\"G3588\"\\+w* \\+w things|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2443\"* them|strong=\"G3588\"*, “Full \\+w well|strong=\"G2573\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* reject \\+w the|strong=\"G2532\"\\+w* \\+w commandment|strong=\"G1785\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w keep|strong=\"G5083\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w tradition|strong=\"G3862\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w Honor|strong=\"G5091\"\\+w* \\+w your|strong=\"G5091\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G5091\"\\+w* \\+w mother|strong=\"G3384\"\\+w*;’*+ 7:10 Exodus 20:12; Deuteronomy 5:16* \\+w and|strong=\"G2532\"\\+w*, ‘\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w speaks|strong=\"G3004\"\\+w* \\+w evil|strong=\"G2551\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w mother|strong=\"G3384\"\\+w*, \\+w let|strong=\"G1063\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w put|strong=\"G5053\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w death|strong=\"G2288\"\\+w*.’*+ 7:10 Exodus 21:17; Leviticus 20:9*" + }, + { + "verseNum": 11, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w If|strong=\"G1437\"\\+w* \\+w a|strong=\"G1510\"\\+w* \\+w man|strong=\"G3739\"\\+w* tells \\+w his|strong=\"G3739\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w his|strong=\"G3739\"\\+w* \\+w mother|strong=\"G3384\"\\+w*, “\\+w Whatever|strong=\"G3739\"\\+w* \\+w profit|strong=\"G5623\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w might|strong=\"G5210\"\\+w* \\+w have|strong=\"G1473\"\\+w* received \\+w from|strong=\"G1537\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w Corban|strong=\"G2878\"\\+w*,”’”*+ 7:11 Corban is a Hebrew word for an offering devoted to God.* that|strong=\"G3739\"* is|strong=\"G1510\"* to|strong=\"G3004\"* say|strong=\"G3004\"*, given|strong=\"G1435\"* to|strong=\"G3004\"* God|strong=\"G3004\"*," + }, + { + "verseNum": 12, + "text": "“\\+w then|strong=\"G3765\"\\+w* \\+w you|strong=\"G4160\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w longer|strong=\"G3765\"\\+w* allow \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G2228\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w anything|strong=\"G3762\"\\+w* \\+w for|strong=\"G2228\"\\+w* \\+w his|strong=\"G4160\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w his|strong=\"G4160\"\\+w* \\+w mother|strong=\"G3384\"\\+w*, *" + }, + { + "verseNum": 13, + "text": "\\+w making|strong=\"G4160\"\\+w* void \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w by|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w tradition|strong=\"G3862\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w handed|strong=\"G3860\"\\+w* \\+w down|strong=\"G3860\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w like|strong=\"G5108\"\\+w* \\+w this|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 14, + "text": "He|strong=\"G2532\"* called|strong=\"G3004\"* all|strong=\"G3956\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* to|strong=\"G2532\"* himself and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Hear \\+w me|strong=\"G1473\"\\+w*, \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w understand|strong=\"G4920\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w There|strong=\"G1510\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w nothing|strong=\"G3762\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w outside|strong=\"G1855\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w man|strong=\"G3762\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w going|strong=\"G1607\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w defile|strong=\"G2840\"\\+w* \\+w him|strong=\"G3588\"\\+w*; \\+w but|strong=\"G3762\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w proceed|strong=\"G1607\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w man|strong=\"G3762\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w defile|strong=\"G2840\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w man|strong=\"G3762\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "If anyone has ears to hear, let him hear!”*+ 7:16 NU omits verse 16.*" + }, + { + "verseNum": 17, + "text": "When|strong=\"G3753\"* he|strong=\"G2532\"* had|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* a|strong=\"G2532\"* house|strong=\"G3624\"* away from|strong=\"G2532\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*, his|strong=\"G1519\"* disciples|strong=\"G3101\"* asked|strong=\"G1905\"* him|strong=\"G3588\"* about|strong=\"G1519\"* the|strong=\"G2532\"* parable|strong=\"G3850\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Are|strong=\"G1510\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w without|strong=\"G2532\"\\+w* \\+w understanding|strong=\"G3539\"\\+w*? Don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w perceive|strong=\"G3539\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w whatever|strong=\"G3956\"\\+w* \\+w goes|strong=\"G1531\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w man|strong=\"G3956\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w outside|strong=\"G1855\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w defile|strong=\"G2840\"\\+w* \\+w him|strong=\"G3588\"\\+w*, *" + }, + { + "verseNum": 19, + "text": "\\+w because|strong=\"G3754\"\\+w* \\+w it|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w go|strong=\"G1607\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w stomach|strong=\"G2836\"\\+w*, \\+w then|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* latrine, \\+w making|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w foods|strong=\"G1033\"\\+w* \\+w clean|strong=\"G2511\"\\+w*?”*+ 7:19 NU ends Jesus’ direct quote and question after “latrine”, ending the verse with “Thus he declared all foods clean. *" + }, + { + "verseNum": 20, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"*, “\\+w That|strong=\"G3754\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w proceeds|strong=\"G1607\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w man|strong=\"G1565\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w defiles|strong=\"G2840\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w man|strong=\"G1565\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w within|strong=\"G2081\"\\+w*, \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w hearts|strong=\"G2588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w men|strong=\"G3588\"\\+w*, \\+w proceed|strong=\"G1607\"\\+w* \\+w evil|strong=\"G2556\"\\+w* \\+w thoughts|strong=\"G1261\"\\+w*, adulteries, \\+w sexual|strong=\"G4202\"\\+w* sins, \\+w murders|strong=\"G5408\"\\+w*, \\+w thefts|strong=\"G2829\"\\+w*, *" + }, + { + "verseNum": 22, + "text": "covetings, \\+w wickedness|strong=\"G4189\"\\+w*, \\+w deceit|strong=\"G1388\"\\+w*, lustful desires, \\+w an|strong=\"G3788\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w eye|strong=\"G3788\"\\+w*, blasphemy, \\+w pride|strong=\"G5243\"\\+w*, \\+w and|strong=\"G3788\"\\+w* foolishness. *" + }, + { + "verseNum": 23, + "text": "\\+w All|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w come|strong=\"G1607\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w within|strong=\"G2081\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w defile|strong=\"G2840\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w man|strong=\"G3778\"\\+w*.” *" + }, + { + "verseNum": 24, + "text": "From|strong=\"G2532\"* there|strong=\"G2532\"* he|strong=\"G2532\"* arose|strong=\"G1525\"* and|strong=\"G2532\"* went|strong=\"G1525\"* away into|strong=\"G1519\"* the|strong=\"G2532\"* borders|strong=\"G3725\"* of|strong=\"G2532\"* Tyre|strong=\"G5184\"* and|strong=\"G2532\"* Sidon. He|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* a|strong=\"G2532\"* house|strong=\"G3614\"* and|strong=\"G2532\"* didn’t|strong=\"G3588\"* want|strong=\"G2309\"* anyone|strong=\"G3762\"* to|strong=\"G1519\"* know|strong=\"G1097\"* it|strong=\"G2532\"*, but|strong=\"G1161\"* he|strong=\"G2532\"* couldn’t|strong=\"G3588\"* escape|strong=\"G2990\"* notice|strong=\"G2990\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"G4012\"* a|strong=\"G2192\"* woman|strong=\"G1135\"* whose|strong=\"G3739\"* little|strong=\"G2365\"* daughter|strong=\"G2365\"* had|strong=\"G2192\"* an|strong=\"G2192\"* unclean spirit|strong=\"G4151\"*, having|strong=\"G2192\"* heard of|strong=\"G4012\"* him|strong=\"G3588\"*, came|strong=\"G2064\"* and|strong=\"G2064\"* fell|strong=\"G4363\"* down|strong=\"G4363\"* at|strong=\"G4314\"* his|strong=\"G4012\"* feet|strong=\"G4228\"*." + }, + { + "verseNum": 26, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* was|strong=\"G1510\"* a|strong=\"G2532\"* Greek|strong=\"G1674\"*, a|strong=\"G2532\"* Syrophoenician|strong=\"G4949\"* by|strong=\"G1537\"* race|strong=\"G1085\"*. She|strong=\"G2532\"* begged|strong=\"G2065\"* him|strong=\"G3588\"* that|strong=\"G2443\"* he|strong=\"G2532\"* would|strong=\"G2532\"* cast|strong=\"G1544\"* the|strong=\"G2532\"* demon|strong=\"G1140\"* out|strong=\"G1537\"* of|strong=\"G1537\"* her|strong=\"G3588\"* daughter|strong=\"G2364\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"G2532\"* Jesus|strong=\"G3004\"* said|strong=\"G3004\"* to|strong=\"G2532\"* her|strong=\"G3588\"*, “\\+w Let|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w children|strong=\"G5043\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w filled|strong=\"G5526\"\\+w* \\+w first|strong=\"G4413\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* appropriate \\+w to|strong=\"G2532\"\\+w* \\+w take|strong=\"G2983\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w children|strong=\"G5043\"\\+w*’s bread \\+w and|strong=\"G2532\"\\+w* throw \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dogs|strong=\"G2952\"\\+w*.” *" + }, + { + "verseNum": 28, + "text": "But|strong=\"G1161\"* she|strong=\"G2532\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Yes|strong=\"G3483\"*, Lord|strong=\"G2962\"*. Yet|strong=\"G2532\"* even|strong=\"G2532\"* the|strong=\"G2532\"* dogs|strong=\"G2952\"* under|strong=\"G5270\"* the|strong=\"G2532\"* table|strong=\"G5132\"* eat|strong=\"G2068\"* the|strong=\"G2532\"* children|strong=\"G3813\"*’s|strong=\"G2962\"* crumbs|strong=\"G5589\"*.”" + }, + { + "verseNum": 29, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* her|strong=\"G3588\"*, “\\+w For|strong=\"G1223\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w saying|strong=\"G3004\"\\+w*, \\+w go|strong=\"G5217\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w way|strong=\"G5217\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w demon|strong=\"G1140\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w gone|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w daughter|strong=\"G2364\"\\+w*.”*" + }, + { + "verseNum": 30, + "text": "She|strong=\"G2532\"* went|strong=\"G1831\"* away|strong=\"G1831\"* to|strong=\"G1519\"* her|strong=\"G1519\"* house|strong=\"G3624\"*, and|strong=\"G2532\"* found|strong=\"G2147\"* the|strong=\"G2532\"* child|strong=\"G3813\"* having|strong=\"G2532\"* been|strong=\"G2532\"* laid|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G2532\"* bed|strong=\"G2825\"*, with|strong=\"G2532\"* the|strong=\"G2532\"* demon|strong=\"G1140\"* gone|strong=\"G1831\"* out|strong=\"G1831\"*." + }, + { + "verseNum": 31, + "text": "Again|strong=\"G3825\"* he|strong=\"G2532\"* departed|strong=\"G1831\"* from|strong=\"G1537\"* the|strong=\"G2532\"* borders|strong=\"G3725\"* of|strong=\"G1537\"* Tyre|strong=\"G5184\"* and|strong=\"G2532\"* Sidon|strong=\"G4605\"*, and|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* of|strong=\"G1537\"* Galilee|strong=\"G1056\"* through|strong=\"G1223\"* the|strong=\"G2532\"* middle|strong=\"G3319\"* of|strong=\"G1537\"* the|strong=\"G2532\"* region|strong=\"G3725\"* of|strong=\"G1537\"* Decapolis|strong=\"G1179\"*." + }, + { + "verseNum": 32, + "text": "They|strong=\"G2532\"* brought|strong=\"G5342\"* to|strong=\"G2443\"* him|strong=\"G3588\"* one|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G3588\"* deaf|strong=\"G2974\"* and|strong=\"G2532\"* had|strong=\"G2532\"* an|strong=\"G2532\"* impediment in|strong=\"G2532\"* his|strong=\"G2007\"* speech|strong=\"G3424\"*. They|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* to|strong=\"G2443\"* lay|strong=\"G2007\"* his|strong=\"G2007\"* hand|strong=\"G5495\"* on|strong=\"G5495\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"G2532\"* took|strong=\"G2532\"* him|strong=\"G3588\"* aside|strong=\"G2596\"* from|strong=\"G2532\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* privately|strong=\"G2398\"* and|strong=\"G2532\"* put|strong=\"G2532\"* his|strong=\"G1519\"* fingers|strong=\"G1147\"* into|strong=\"G1519\"* his|strong=\"G1519\"* ears|strong=\"G3775\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* spat|strong=\"G4429\"* and|strong=\"G2532\"* touched his|strong=\"G1519\"* tongue|strong=\"G1100\"*." + }, + { + "verseNum": 34, + "text": "Looking|strong=\"G2532\"* up|strong=\"G1519\"* to|strong=\"G1519\"* heaven|strong=\"G3772\"*, he|strong=\"G2532\"* sighed|strong=\"G4727\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “\\+w Ephphatha|strong=\"G2188\"\\+w*!” * that|strong=\"G3739\"* is|strong=\"G1510\"*, “\\+w Be|strong=\"G1510\"\\+w* \\+w opened|strong=\"G1272\"\\+w*!”*" + }, + { + "verseNum": 35, + "text": "Immediately|strong=\"G2112\"* his|strong=\"G2532\"* ears were|strong=\"G3588\"* opened, and|strong=\"G2532\"* the|strong=\"G2532\"* impediment|strong=\"G1199\"* of|strong=\"G2532\"* his|strong=\"G2532\"* tongue|strong=\"G1100\"* was|strong=\"G3588\"* released|strong=\"G3089\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* spoke|strong=\"G2980\"* clearly." + }, + { + "verseNum": 36, + "text": "He|strong=\"G2532\"* commanded|strong=\"G1291\"* them|strong=\"G3004\"* that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G2532\"* tell|strong=\"G3004\"* no|strong=\"G3367\"* one|strong=\"G3367\"*, but|strong=\"G1161\"* the|strong=\"G2532\"* more|strong=\"G3123\"* he|strong=\"G2532\"* commanded|strong=\"G1291\"* them|strong=\"G3004\"*, so|strong=\"G2443\"* much|strong=\"G3745\"* the|strong=\"G2532\"* more|strong=\"G3123\"* widely they|strong=\"G2532\"* proclaimed|strong=\"G2784\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 37, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* astonished|strong=\"G1605\"* beyond|strong=\"G1605\"* measure|strong=\"G5249\"*, saying|strong=\"G3004\"*, “He|strong=\"G2532\"* has|strong=\"G2532\"* done|strong=\"G4160\"* all|strong=\"G3956\"* things|strong=\"G3956\"* well|strong=\"G2573\"*. He|strong=\"G2532\"* makes|strong=\"G4160\"* even|strong=\"G2532\"* the|strong=\"G2532\"* deaf|strong=\"G2974\"* hear and|strong=\"G2532\"* the|strong=\"G2532\"* mute|strong=\"G2974\"* speak|strong=\"G2980\"*!”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"*, when|strong=\"G2532\"* there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2192\"* very|strong=\"G4183\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2192\"* nothing|strong=\"G3361\"* to|strong=\"G2532\"* eat|strong=\"G2068\"*, Jesus|strong=\"G3004\"* called|strong=\"G3004\"* his|strong=\"G1722\"* disciples|strong=\"G3101\"* to|strong=\"G2532\"* himself|strong=\"G1565\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 2, + "text": "“\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w compassion|strong=\"G4697\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w multitude|strong=\"G3793\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* stayed \\+w with|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w now|strong=\"G2532\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w nothing|strong=\"G3756\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w I|strong=\"G2532\"\\+w* send \\+w them|strong=\"G3588\"\\+w* \\+w away|strong=\"G3113\"\\+w* \\+w fasting|strong=\"G3523\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w home|strong=\"G3624\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w faint|strong=\"G1590\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w way|strong=\"G3598\"\\+w*, \\+w for|strong=\"G1519\"\\+w* \\+w some|strong=\"G5100\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w come|strong=\"G2240\"\\+w* \\+w a|strong=\"G2532\"\\+w* long \\+w way|strong=\"G3598\"\\+w*.”*" + }, + { + "verseNum": 4, + "text": "His|strong=\"G1909\"* disciples|strong=\"G3101\"* answered him|strong=\"G3588\"*, “From|strong=\"G2532\"* where|strong=\"G4159\"* could|strong=\"G1410\"* one|strong=\"G5100\"* satisfy|strong=\"G5526\"* these|strong=\"G3778\"* people|strong=\"G3588\"* with|strong=\"G2532\"* bread here|strong=\"G5602\"* in|strong=\"G1909\"* a|strong=\"G2532\"* deserted place|strong=\"G2047\"*?”" + }, + { + "verseNum": 5, + "text": "He|strong=\"G2532\"* asked|strong=\"G2065\"* them|strong=\"G3588\"*, “\\+w How|strong=\"G4214\"\\+w* \\+w many|strong=\"G4214\"\\+w* loaves \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w have|strong=\"G2192\"\\+w*?”*" + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* commanded|strong=\"G3853\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* to|strong=\"G2443\"* sit down on|strong=\"G1909\"* the|strong=\"G2532\"* ground|strong=\"G1093\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* loaves. Having|strong=\"G2532\"* given|strong=\"G1325\"* thanks|strong=\"G2168\"*, he|strong=\"G2532\"* broke|strong=\"G2806\"* them|strong=\"G3588\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* them|strong=\"G3588\"* to|strong=\"G2443\"* his|strong=\"G1909\"* disciples|strong=\"G3101\"* to|strong=\"G2443\"* serve|strong=\"G3908\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* served|strong=\"G3908\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"G2532\"* also|strong=\"G2532\"* had|strong=\"G2192\"* a|strong=\"G2192\"* few|strong=\"G3641\"* small|strong=\"G3641\"* fish|strong=\"G2485\"*. Having|strong=\"G2192\"* blessed|strong=\"G2127\"* them|strong=\"G3004\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* serve|strong=\"G3908\"* these|strong=\"G3004\"* also|strong=\"G2532\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"G2532\"* ate|strong=\"G2068\"* and|strong=\"G2532\"* were|strong=\"G2532\"* filled|strong=\"G5526\"*. They|strong=\"G2532\"* took|strong=\"G2532\"* up|strong=\"G2532\"* seven|strong=\"G2033\"* baskets|strong=\"G4711\"* of|strong=\"G2532\"* broken|strong=\"G2801\"* pieces|strong=\"G2801\"* that|strong=\"G2532\"* were|strong=\"G2532\"* left|strong=\"G4051\"* over|strong=\"G4051\"*." + }, + { + "verseNum": 9, + "text": "Those|strong=\"G1161\"* who|strong=\"G2532\"* had|strong=\"G2532\"* eaten were|strong=\"G1510\"* about|strong=\"G5613\"* four|strong=\"G5070\"* thousand|strong=\"G5070\"*. Then|strong=\"G2532\"* he|strong=\"G2532\"* sent|strong=\"G2532\"* them|strong=\"G1438\"* away." + }, + { + "verseNum": 10, + "text": "Immediately|strong=\"G2112\"* he|strong=\"G2532\"* entered|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"* with|strong=\"G3326\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* region of|strong=\"G2532\"* Dalmanutha|strong=\"G1148\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"G2532\"* Pharisees|strong=\"G5330\"* came|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* began to|strong=\"G2532\"* question|strong=\"G4802\"* him|strong=\"G3588\"*, seeking|strong=\"G2212\"* from|strong=\"G3844\"* him|strong=\"G3588\"* a|strong=\"G2532\"* sign|strong=\"G4592\"* from|strong=\"G3844\"* heaven|strong=\"G3772\"* and|strong=\"G2532\"* testing|strong=\"G3985\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"G2532\"* sighed deeply in|strong=\"G2532\"* his|strong=\"G2532\"* spirit|strong=\"G4151\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w does|strong=\"G5101\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w**+ 8:12 The word translated “generation” here (genea) could also be translated “people”, “race”, or “family”.* \\+w seek|strong=\"G2212\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w sign|strong=\"G4592\"\\+w*? Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w no|strong=\"G2532\"\\+w* \\+w sign|strong=\"G4592\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w*.”*" + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* left them|strong=\"G3588\"*, and|strong=\"G2532\"* again|strong=\"G3825\"* entering|strong=\"G1684\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat, departed to|strong=\"G1519\"* the|strong=\"G2532\"* other|strong=\"G4008\"* side|strong=\"G4008\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"G2532\"* forgot to|strong=\"G2532\"* take|strong=\"G2983\"* bread; and|strong=\"G2532\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* have|strong=\"G2192\"* more|strong=\"G2192\"* than|strong=\"G2532\"* one|strong=\"G1520\"* loaf in|strong=\"G1722\"* the|strong=\"G1722\"* boat|strong=\"G4143\"* with|strong=\"G3326\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* warned them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w Take|strong=\"G2532\"\\+w* \\+w heed|strong=\"G3708\"\\+w*: \\+w beware|strong=\"G3708\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w yeast|strong=\"G2219\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w yeast|strong=\"G2219\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Herod|strong=\"G2264\"\\+w*.”*" + }, + { + "verseNum": 16, + "text": "They|strong=\"G2532\"* reasoned|strong=\"G1260\"* with|strong=\"G4314\"* one|strong=\"G2532\"* another, saying|strong=\"G3754\"*, “It|strong=\"G2532\"*’s|strong=\"G2192\"* because|strong=\"G3754\"* we|strong=\"G3754\"* have|strong=\"G2192\"* no|strong=\"G3756\"* bread.”" + }, + { + "verseNum": 17, + "text": "Jesus|strong=\"G3004\"*, perceiving|strong=\"G1097\"* it|strong=\"G2532\"*, said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w reason|strong=\"G1260\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G2532\"\\+w*’\\+w s|strong=\"G2192\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* bread? Don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w perceive|strong=\"G3539\"\\+w* \\+w yet|strong=\"G2089\"\\+w* \\+w or|strong=\"G2532\"\\+w* \\+w understand|strong=\"G4920\"\\+w*? \\+w Is|strong=\"G3588\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w still|strong=\"G2089\"\\+w* \\+w hardened|strong=\"G4456\"\\+w*? *" + }, + { + "verseNum": 18, + "text": "\\+w Having|strong=\"G2192\"\\+w* \\+w eyes|strong=\"G3788\"\\+w*, don’t \\+w you|strong=\"G2532\"\\+w* see? \\+w Having|strong=\"G2192\"\\+w* \\+w ears|strong=\"G3775\"\\+w*, don’t \\+w you|strong=\"G2532\"\\+w* hear? Don’t \\+w you|strong=\"G2532\"\\+w* \\+w remember|strong=\"G3421\"\\+w*? *" + }, + { + "verseNum": 19, + "text": "\\+w When|strong=\"G3753\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w broke|strong=\"G2806\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w five|strong=\"G4002\"\\+w* loaves \\+w among|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w thousand|strong=\"G4000\"\\+w*, \\+w how|strong=\"G4214\"\\+w* \\+w many|strong=\"G4214\"\\+w* \\+w baskets|strong=\"G2894\"\\+w* \\+w full|strong=\"G4134\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w broken|strong=\"G2801\"\\+w* \\+w pieces|strong=\"G2801\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w take|strong=\"G2532\"\\+w* \\+w up|strong=\"G1519\"\\+w*?”*" + }, + { + "verseNum": 20, + "text": "“\\+w When|strong=\"G3753\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w seven|strong=\"G2033\"\\+w* loaves fed \\+w the|strong=\"G2532\"\\+w* \\+w four|strong=\"G5070\"\\+w* \\+w thousand|strong=\"G5070\"\\+w*, \\+w how|strong=\"G4214\"\\+w* \\+w many|strong=\"G4214\"\\+w* \\+w baskets|strong=\"G4711\"\\+w* \\+w full|strong=\"G4138\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w broken|strong=\"G2801\"\\+w* \\+w pieces|strong=\"G2801\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w take|strong=\"G2532\"\\+w* \\+w up|strong=\"G1519\"\\+w*?”*" + }, + { + "verseNum": 21, + "text": "He|strong=\"G2532\"* asked|strong=\"G3004\"* them|strong=\"G3004\"*, “Don’t \\+w you|strong=\"G3004\"\\+w* \\+w understand|strong=\"G4920\"\\+w* \\+w yet|strong=\"G2532\"\\+w*?”*" + }, + { + "verseNum": 22, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Bethsaida. They|strong=\"G2532\"* brought|strong=\"G5342\"* a|strong=\"G2532\"* blind|strong=\"G5185\"* man|strong=\"G5185\"* to|strong=\"G1519\"* him|strong=\"G2532\"* and|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G2532\"* to|strong=\"G1519\"* touch him|strong=\"G2532\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* took|strong=\"G1949\"* hold|strong=\"G1949\"* of|strong=\"G2532\"* the|strong=\"G2532\"* blind|strong=\"G5185\"* man|strong=\"G5100\"* by|strong=\"G2532\"* the|strong=\"G2532\"* hand|strong=\"G5495\"*, and|strong=\"G2532\"* brought|strong=\"G2532\"* him|strong=\"G3588\"* out|strong=\"G1854\"* of|strong=\"G2532\"* the|strong=\"G2532\"* village|strong=\"G2968\"*. When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* spat|strong=\"G4429\"* on|strong=\"G1519\"* his|strong=\"G2007\"* eyes|strong=\"G3659\"*, and|strong=\"G2532\"* laid|strong=\"G2007\"* his|strong=\"G2007\"* hands|strong=\"G5495\"* on|strong=\"G1519\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G3588\"* if|strong=\"G1487\"* he|strong=\"G2532\"* saw anything|strong=\"G5100\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"G2532\"* looked|strong=\"G3708\"* up|strong=\"G2532\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “I|strong=\"G2532\"* see|strong=\"G3708\"* men|strong=\"G3588\"*, but|strong=\"G2532\"* I|strong=\"G2532\"* see|strong=\"G3708\"* them|strong=\"G3588\"* like|strong=\"G5613\"* walking|strong=\"G4043\"* trees|strong=\"G1186\"*.”" + }, + { + "verseNum": 25, + "text": "Then|strong=\"G2532\"* again|strong=\"G3825\"* he|strong=\"G2532\"* laid|strong=\"G2007\"* his|strong=\"G2007\"* hands|strong=\"G5495\"* on|strong=\"G1909\"* his|strong=\"G2007\"* eyes|strong=\"G3788\"*. He|strong=\"G2532\"* looked|strong=\"G1689\"* intently|strong=\"G1227\"*, and|strong=\"G2532\"* was|strong=\"G3588\"* restored, and|strong=\"G2532\"* saw|strong=\"G1689\"* everyone clearly|strong=\"G5081\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"G2532\"* sent|strong=\"G2532\"* him|strong=\"G3588\"* away to|strong=\"G1519\"* his|strong=\"G1519\"* house|strong=\"G3624\"*, saying|strong=\"G3004\"*, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w village|strong=\"G2968\"\\+w*, \\+w nor|strong=\"G3366\"\\+w* \\+w tell|strong=\"G3004\"\\+w* anyone \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w village|strong=\"G2968\"\\+w*.”*" + }, + { + "verseNum": 27, + "text": "Jesus|strong=\"G2424\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, with|strong=\"G1722\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, into|strong=\"G1519\"* the|strong=\"G1722\"* villages|strong=\"G2968\"* of|strong=\"G2532\"* Caesarea|strong=\"G2542\"* Philippi|strong=\"G5376\"*. On|strong=\"G1722\"* the|strong=\"G1722\"* way|strong=\"G3598\"* he|strong=\"G2532\"* asked|strong=\"G1905\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, “\\+w Who|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*?” *" + }, + { + "verseNum": 28, + "text": "They|strong=\"G2532\"* told|strong=\"G3004\"* him|strong=\"G3588\"*, “John|strong=\"G2491\"* the|strong=\"G2532\"* Baptizer, and|strong=\"G2532\"* others|strong=\"G3588\"* say|strong=\"G3004\"* Elijah|strong=\"G2243\"*, but|strong=\"G1161\"* others|strong=\"G3588\"*, one|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"*.”" + }, + { + "verseNum": 29, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w But|strong=\"G1161\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*?”*" + }, + { + "verseNum": 30, + "text": "He|strong=\"G2532\"* commanded|strong=\"G2008\"* them|strong=\"G3004\"* that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G2532\"* tell|strong=\"G3004\"* no|strong=\"G3367\"* one|strong=\"G3367\"* about|strong=\"G4012\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"G2532\"* began to|strong=\"G2532\"* teach|strong=\"G1321\"* them|strong=\"G3588\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* Man|strong=\"G5207\"* must|strong=\"G1163\"* suffer|strong=\"G3958\"* many|strong=\"G4183\"* things|strong=\"G3588\"*, and|strong=\"G2532\"* be|strong=\"G2532\"* rejected by|strong=\"G5259\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*, the|strong=\"G2532\"* chief|strong=\"G2532\"* priests, and|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"*, and|strong=\"G2532\"* be|strong=\"G2532\"* killed, and|strong=\"G2532\"* after|strong=\"G3326\"* three|strong=\"G5140\"* days|strong=\"G2250\"* rise|strong=\"G2250\"* again|strong=\"G2532\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"G2532\"* spoke|strong=\"G2980\"* to|strong=\"G2532\"* them|strong=\"G3588\"* openly|strong=\"G3954\"*. Peter|strong=\"G4074\"* took|strong=\"G4355\"* him|strong=\"G3588\"* and|strong=\"G2532\"* began to|strong=\"G2532\"* rebuke|strong=\"G2008\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"*, turning|strong=\"G1994\"* around|strong=\"G1994\"* and|strong=\"G2532\"* seeing|strong=\"G3708\"* his|strong=\"G3708\"* disciples|strong=\"G3101\"*, rebuked|strong=\"G2008\"* Peter|strong=\"G4074\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Get|strong=\"G5217\"\\+w* \\+w behind|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w Satan|strong=\"G4567\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w mind|strong=\"G5426\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w men|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 34, + "text": "He|strong=\"G2532\"* called|strong=\"G3004\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* to|strong=\"G2532\"* himself|strong=\"G1438\"* with|strong=\"G4862\"* his|strong=\"G1438\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Whoever|strong=\"G3748\"\\+w* \\+w wants|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w after|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w let|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w take|strong=\"G2532\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w cross|strong=\"G4716\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w follow|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w wants|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w save|strong=\"G4982\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w will|strong=\"G2309\"\\+w* lose \\+w it|strong=\"G2532\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w will|strong=\"G2309\"\\+w* lose \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w sake|strong=\"G1752\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sake|strong=\"G1752\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Good|strong=\"G3588\"\\+w* \\+w News|strong=\"G2098\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w save|strong=\"G4982\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w does|strong=\"G5101\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w profit|strong=\"G5623\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w man|strong=\"G5101\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w gain|strong=\"G2770\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w forfeit|strong=\"G2210\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w life|strong=\"G5590\"\\+w*? *" + }, + { + "verseNum": 37, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w a|strong=\"G1325\"\\+w* \\+w man|strong=\"G5101\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w in|strong=\"G1063\"\\+w* exchange \\+w for|strong=\"G1063\"\\+w* \\+w his|strong=\"G1325\"\\+w* \\+w life|strong=\"G5590\"\\+w*? *" + }, + { + "verseNum": 38, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w ashamed|strong=\"G1870\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w adulterous|strong=\"G3428\"\\+w* \\+w and|strong=\"G2532\"\\+w* sinful \\+w generation|strong=\"G1074\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w ashamed|strong=\"G1870\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s \\+w glory|strong=\"G1391\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w the|strong=\"G1722\"\\+w* holy angels.”*" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Most|strong=\"G2316\"\\+w* \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w there|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w some|strong=\"G5100\"\\+w* \\+w standing|strong=\"G2476\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G1722\"\\+w* \\+w taste|strong=\"G1089\"\\+w* \\+w death|strong=\"G2288\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w come|strong=\"G2064\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w power|strong=\"G1411\"\\+w*.”*" + }, + { + "verseNum": 2, + "text": "After|strong=\"G3326\"* six|strong=\"G1803\"* days|strong=\"G2250\"* Jesus|strong=\"G2424\"* took|strong=\"G3880\"* with|strong=\"G3326\"* him|strong=\"G3588\"* Peter|strong=\"G4074\"*, James|strong=\"G2385\"*, and|strong=\"G2532\"* John|strong=\"G2491\"*, and|strong=\"G2532\"* brought|strong=\"G2532\"* them|strong=\"G3588\"* up|strong=\"G1519\"* onto|strong=\"G1519\"* a|strong=\"G2532\"* high|strong=\"G5308\"* mountain|strong=\"G3735\"* privately|strong=\"G2398\"* by|strong=\"G2596\"* themselves|strong=\"G1438\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3588\"* changed|strong=\"G3339\"* into|strong=\"G1519\"* another|strong=\"G1438\"* form in|strong=\"G1519\"* front|strong=\"G1715\"* of|strong=\"G2250\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 3, + "text": "His|strong=\"G1909\"* clothing|strong=\"G2440\"* became|strong=\"G1096\"* glistening, exceedingly|strong=\"G3029\"* white|strong=\"G3022\"*, like|strong=\"G3779\"* snow, such|strong=\"G3779\"* as|strong=\"G2532\"* no|strong=\"G3756\"* launderer|strong=\"G1102\"* on|strong=\"G1909\"* earth|strong=\"G1093\"* can|strong=\"G1410\"* whiten|strong=\"G3021\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "Elijah|strong=\"G2243\"* and|strong=\"G2532\"* Moses|strong=\"G3475\"* appeared|strong=\"G3708\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G1510\"* talking|strong=\"G4814\"* with|strong=\"G4862\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 5, + "text": "Peter|strong=\"G4074\"* answered|strong=\"G3004\"* Jesus|strong=\"G2424\"*, “Rabbi|strong=\"G4461\"*, it|strong=\"G2532\"* is|strong=\"G1510\"* good|strong=\"G2570\"* for|strong=\"G1520\"* us|strong=\"G3004\"* to|strong=\"G2532\"* be|strong=\"G1510\"* here|strong=\"G5602\"*. Let|strong=\"G1510\"*’s make|strong=\"G4160\"* three|strong=\"G5140\"* tents|strong=\"G4633\"*: one|strong=\"G1520\"* for|strong=\"G1520\"* you|strong=\"G4771\"*, one|strong=\"G1520\"* for|strong=\"G1520\"* Moses|strong=\"G3475\"*, and|strong=\"G2532\"* one|strong=\"G1520\"* for|strong=\"G1520\"* Elijah|strong=\"G2243\"*.”" + }, + { + "verseNum": 6, + "text": "For|strong=\"G1063\"* he|strong=\"G1063\"* didn’t know|strong=\"G1492\"* what|strong=\"G5101\"* to|strong=\"G3756\"* say|strong=\"G5101\"*, for|strong=\"G1063\"* they|strong=\"G1063\"* were|strong=\"G1096\"* very|strong=\"G1096\"* afraid|strong=\"G1630\"*." + }, + { + "verseNum": 7, + "text": "A|strong=\"G1096\"* cloud|strong=\"G3507\"* came|strong=\"G1096\"*, overshadowing|strong=\"G1982\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* a|strong=\"G1096\"* voice|strong=\"G5456\"* came|strong=\"G1096\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* cloud|strong=\"G3507\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* my|strong=\"G1473\"* beloved Son|strong=\"G5207\"*. Listen to|strong=\"G2532\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 8, + "text": "Suddenly|strong=\"G1819\"* looking|strong=\"G4017\"* around|strong=\"G4017\"*, they|strong=\"G2532\"* saw|strong=\"G3708\"* no|strong=\"G3762\"* one|strong=\"G3762\"* with|strong=\"G3326\"* them|strong=\"G3588\"* any|strong=\"G3762\"* more|strong=\"G3765\"*, except Jesus|strong=\"G2424\"* only|strong=\"G3441\"*." + }, + { + "verseNum": 9, + "text": "As|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* coming|strong=\"G2597\"* down|strong=\"G2597\"* from|strong=\"G1537\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"*, he|strong=\"G2532\"* commanded|strong=\"G1291\"* them|strong=\"G3588\"* that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G3588\"* tell|strong=\"G1334\"* no|strong=\"G3361\"* one|strong=\"G3367\"* what|strong=\"G3739\"* things|strong=\"G3588\"* they|strong=\"G2532\"* had|strong=\"G2532\"* seen|strong=\"G3708\"*, until|strong=\"G2532\"* after|strong=\"G2532\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G1537\"* Man|strong=\"G3367\"* had|strong=\"G2532\"* risen|strong=\"G2532\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"G2532\"* kept|strong=\"G2532\"* this|strong=\"G3588\"* saying|strong=\"G3056\"* to|strong=\"G4314\"* themselves|strong=\"G1438\"*, questioning|strong=\"G4802\"* what|strong=\"G5101\"* the|strong=\"G2532\"* “rising|strong=\"G2532\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*” meant|strong=\"G1510\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Why|strong=\"G3754\"* do|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* say|strong=\"G3004\"* that|strong=\"G3754\"* Elijah|strong=\"G2243\"* must|strong=\"G1163\"* come|strong=\"G2064\"* first|strong=\"G4413\"*?”" + }, + { + "verseNum": 12, + "text": "He|strong=\"G2532\"* said|strong=\"G5346\"* to|strong=\"G2443\"* them|strong=\"G3588\"*, “\\+w Elijah|strong=\"G2243\"\\+w* \\+w indeed|strong=\"G2532\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w first|strong=\"G4413\"\\+w*, \\+w and|strong=\"G2532\"\\+w* restores \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w*. \\+w How|strong=\"G4459\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w about|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3956\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w suffer|strong=\"G3958\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w despised|strong=\"G1848\"\\+w*? *" + }, + { + "verseNum": 13, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w Elijah|strong=\"G2243\"\\+w* \\+w has|strong=\"G3748\"\\+w* \\+w come|strong=\"G2064\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2309\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G4160\"\\+w* \\+w whatever|strong=\"G3745\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w wanted|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3748\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w about|strong=\"G1909\"\\+w* \\+w him|strong=\"G4160\"\\+w*.”*" + }, + { + "verseNum": 14, + "text": "Coming|strong=\"G2064\"* to|strong=\"G4314\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* around|strong=\"G4012\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* scribes|strong=\"G1122\"* questioning|strong=\"G4802\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "Immediately|strong=\"G2112\"* all|strong=\"G3956\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* him|strong=\"G3588\"*, were|strong=\"G3588\"* greatly amazed|strong=\"G1568\"*, and|strong=\"G2532\"* running|strong=\"G4370\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, greeted him|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* asked|strong=\"G1905\"* the|strong=\"G2532\"* scribes, “\\+w What|strong=\"G5101\"\\+w* \\+w are|strong=\"G2532\"\\+w* \\+w you|strong=\"G1438\"\\+w* \\+w asking|strong=\"G1905\"\\+w* \\+w them|strong=\"G1438\"\\+w*?”*" + }, + { + "verseNum": 17, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* answered, “Teacher|strong=\"G1320\"*, I|strong=\"G1473\"* brought|strong=\"G5342\"* to|strong=\"G4314\"* you|strong=\"G4771\"* my|strong=\"G1473\"* son|strong=\"G5207\"*, who|strong=\"G3588\"* has|strong=\"G2192\"* a|strong=\"G2192\"* mute spirit|strong=\"G4151\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"G2532\"* wherever|strong=\"G3699\"* it|strong=\"G2532\"* seizes|strong=\"G2638\"* him|strong=\"G3588\"*, it|strong=\"G2532\"* throws|strong=\"G1544\"* him|strong=\"G3588\"* down|strong=\"G4486\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* foams at|strong=\"G3756\"* the|strong=\"G2532\"* mouth, grinds|strong=\"G5149\"* his|strong=\"G2532\"* teeth|strong=\"G3599\"*, and|strong=\"G2532\"* becomes rigid. I|strong=\"G2532\"* asked|strong=\"G3004\"* your|strong=\"G1437\"* disciples|strong=\"G3101\"* to|strong=\"G2443\"* cast|strong=\"G1544\"* it|strong=\"G2532\"* out|strong=\"G1544\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* weren’t|strong=\"G3588\"* able|strong=\"G2480\"*.”" + }, + { + "verseNum": 19, + "text": "He|strong=\"G1161\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Unbelieving \\+w generation|strong=\"G1074\"\\+w*, \\+w how|strong=\"G2193\"\\+w* \\+w long|strong=\"G2193\"\\+w* \\+w shall|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w with|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w*? \\+w How|strong=\"G2193\"\\+w* \\+w long|strong=\"G2193\"\\+w* \\+w shall|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w bear|strong=\"G5342\"\\+w* \\+w with|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w*? \\+w Bring|strong=\"G5342\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "They|strong=\"G2532\"* brought|strong=\"G5342\"* him|strong=\"G3588\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* when|strong=\"G2532\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* him|strong=\"G3588\"*, immediately|strong=\"G2112\"* the|strong=\"G2532\"* spirit|strong=\"G4151\"* convulsed him|strong=\"G3588\"* and|strong=\"G2532\"* he|strong=\"G2532\"* fell|strong=\"G4098\"* on|strong=\"G1909\"* the|strong=\"G2532\"* ground|strong=\"G1093\"*, wallowing and|strong=\"G2532\"* foaming at|strong=\"G1909\"* the|strong=\"G2532\"* mouth." + }, + { + "verseNum": 21, + "text": "He|strong=\"G2532\"* asked|strong=\"G1905\"* his|strong=\"G2532\"* father|strong=\"G3962\"*, “\\+w How|strong=\"G5613\"\\+w* \\+w long|strong=\"G5550\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w since|strong=\"G1537\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w happening|strong=\"G1096\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*?”*" + }, + { + "verseNum": 22, + "text": "Often|strong=\"G4178\"* it|strong=\"G2532\"* has|strong=\"G5100\"* cast|strong=\"G2532\"* him|strong=\"G2532\"* both|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G2532\"* fire|strong=\"G4442\"* and|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G2532\"* water|strong=\"G5204\"* to|strong=\"G1519\"* destroy him|strong=\"G2532\"*. But|strong=\"G2532\"* if|strong=\"G1487\"* you|strong=\"G1487\"* can|strong=\"G1410\"* do|strong=\"G2532\"* anything|strong=\"G5100\"*, have|strong=\"G2532\"* compassion|strong=\"G4697\"* on|strong=\"G1909\"* us|strong=\"G1519\"* and|strong=\"G2532\"* help us|strong=\"G1519\"*.”" + }, + { + "verseNum": 23, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w believe|strong=\"G4100\"\\+w*, \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w possible|strong=\"G1415\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w believes|strong=\"G4100\"\\+w*.”*" + }, + { + "verseNum": 24, + "text": "Immediately|strong=\"G2112\"* the|strong=\"G3588\"* father|strong=\"G3962\"* of|strong=\"G3962\"* the|strong=\"G3588\"* child|strong=\"G3813\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* with|strong=\"G2896\"* tears, “I|strong=\"G1473\"* believe|strong=\"G4100\"*. Help my|strong=\"G1473\"* unbelief!”" + }, + { + "verseNum": 25, + "text": "When|strong=\"G1161\"* Jesus|strong=\"G2424\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* a|strong=\"G2532\"* multitude|strong=\"G3793\"* came|strong=\"G1831\"* running|strong=\"G2532\"* together|strong=\"G1998\"*, he|strong=\"G2532\"* rebuked|strong=\"G2008\"* the|strong=\"G2532\"* unclean spirit|strong=\"G4151\"*, saying|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “\\+w You|strong=\"G4771\"\\+w* \\+w mute|strong=\"G2974\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w deaf|strong=\"G2974\"\\+w* \\+w spirit|strong=\"G4151\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w command|strong=\"G2004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w come|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w never|strong=\"G3371\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w again|strong=\"G3371\"\\+w*!”*" + }, + { + "verseNum": 26, + "text": "After|strong=\"G2532\"* crying|strong=\"G2896\"* out|strong=\"G1831\"* and|strong=\"G2532\"* convulsing him|strong=\"G3588\"* greatly|strong=\"G4183\"*, it|strong=\"G2532\"* came|strong=\"G1096\"* out|strong=\"G1831\"* of|strong=\"G2532\"* him|strong=\"G3588\"*. The|strong=\"G2532\"* boy became|strong=\"G1096\"* like|strong=\"G5616\"* one|strong=\"G3588\"* dead|strong=\"G3498\"*, so|strong=\"G2532\"* much|strong=\"G4183\"* that|strong=\"G3754\"* most|strong=\"G4183\"* of|strong=\"G2532\"* them|strong=\"G3588\"* said|strong=\"G3004\"*, “He|strong=\"G2532\"* is|strong=\"G3588\"* dead|strong=\"G3498\"*.”" + }, + { + "verseNum": 27, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* took|strong=\"G2902\"* him|strong=\"G3588\"* by|strong=\"G2532\"* the|strong=\"G2532\"* hand|strong=\"G5495\"* and|strong=\"G2532\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* up|strong=\"G1453\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* arose|strong=\"G1453\"*." + }, + { + "verseNum": 28, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* house|strong=\"G3624\"*, his|strong=\"G1519\"* disciples|strong=\"G3101\"* asked|strong=\"G1905\"* him|strong=\"G3588\"* privately|strong=\"G2398\"*, “Why|strong=\"G1519\"* couldn’t|strong=\"G3588\"* we|strong=\"G2249\"* cast|strong=\"G1544\"* it|strong=\"G2532\"* out|strong=\"G1544\"*?”" + }, + { + "verseNum": 29, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w This|strong=\"G3778\"\\+w* \\+w kind|strong=\"G1085\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w come|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w nothing|strong=\"G3762\"\\+w* \\+w but|strong=\"G2532\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w prayer|strong=\"G4335\"\\+w* \\+w and|strong=\"G2532\"\\+w* fasting.”*" + }, + { + "verseNum": 30, + "text": "They|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G2532\"* there|strong=\"G2532\"* and|strong=\"G2532\"* passed|strong=\"G3588\"* through|strong=\"G1223\"* Galilee|strong=\"G1056\"*. He|strong=\"G2532\"* didn’t|strong=\"G3588\"* want|strong=\"G2309\"* anyone|strong=\"G5100\"* to|strong=\"G2443\"* know|strong=\"G1097\"* it|strong=\"G2532\"*," + }, + { + "verseNum": 31, + "text": "for|strong=\"G1063\"* he|strong=\"G2532\"* was|strong=\"G3588\"* teaching|strong=\"G1321\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w The|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1519\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w being|strong=\"G2532\"\\+w* \\+w handed|strong=\"G3860\"\\+w* \\+w over|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w men|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* kill \\+w him|strong=\"G3588\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* killed, \\+w on|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* third \\+w day|strong=\"G2250\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rise|strong=\"G2250\"\\+w* \\+w again|strong=\"G1519\"\\+w*.”*" + }, + { + "verseNum": 32, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* understand the|strong=\"G2532\"* saying|strong=\"G4487\"*, and|strong=\"G2532\"* were|strong=\"G3588\"* afraid|strong=\"G5399\"* to|strong=\"G2532\"* ask|strong=\"G1905\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Capernaum|strong=\"G2584\"*, and|strong=\"G2532\"* when|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G1096\"* in|strong=\"G1722\"* the|strong=\"G1722\"* house|strong=\"G3614\"* he|strong=\"G2532\"* asked|strong=\"G1905\"* them|strong=\"G3588\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w you|strong=\"G1722\"\\+w* arguing \\+w among|strong=\"G1722\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w way|strong=\"G3598\"\\+w*?”*" + }, + { + "verseNum": 34, + "text": "But|strong=\"G1161\"* they|strong=\"G1161\"* were|strong=\"G3588\"* silent|strong=\"G4623\"*, for|strong=\"G1063\"* they|strong=\"G1161\"* had|strong=\"G3588\"* disputed|strong=\"G1256\"* with|strong=\"G1722\"* one|strong=\"G3588\"* another|strong=\"G3588\"* on|strong=\"G1722\"* the|strong=\"G1722\"* way|strong=\"G3598\"* about|strong=\"G1722\"* who|strong=\"G5101\"* was|strong=\"G3588\"* the|strong=\"G1722\"* greatest|strong=\"G3173\"*." + }, + { + "verseNum": 35, + "text": "He|strong=\"G2532\"* sat|strong=\"G2523\"* down|strong=\"G2523\"* and|strong=\"G2532\"* called|strong=\"G3004\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w any|strong=\"G5100\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w wants|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w first|strong=\"G4413\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w servant|strong=\"G1249\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w*.”*" + }, + { + "verseNum": 36, + "text": "He|strong=\"G2532\"* took|strong=\"G2983\"* a|strong=\"G2532\"* little child|strong=\"G3813\"* and|strong=\"G2532\"* set|strong=\"G2476\"* him|strong=\"G2476\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2532\"* them|strong=\"G1722\"*. Taking|strong=\"G2983\"* him|strong=\"G2476\"* in|strong=\"G1722\"* his|strong=\"G1722\"* arms|strong=\"G1723\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G1722\"*," + }, + { + "verseNum": 37, + "text": "“\\+w Whoever|strong=\"G3739\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w such|strong=\"G5108\"\\+w* little \\+w child|strong=\"G3813\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w me|strong=\"G1473\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w me|strong=\"G1473\"\\+w*, doesn’\\+w t|strong=\"G3588\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 38, + "text": "John|strong=\"G2491\"* said|strong=\"G5346\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, we|strong=\"G2249\"* saw|strong=\"G3708\"* someone|strong=\"G5100\"* who|strong=\"G3739\"* doesn’t|strong=\"G3588\"* follow us|strong=\"G2249\"* casting|strong=\"G1544\"* out|strong=\"G1544\"* demons|strong=\"G1140\"* in|strong=\"G1722\"* your|strong=\"G2532\"* name|strong=\"G3686\"*; and|strong=\"G2532\"* we|strong=\"G2249\"* forbade him|strong=\"G3588\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* doesn’t|strong=\"G3588\"* follow us|strong=\"G2249\"*.”" + }, + { + "verseNum": 39, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w forbid|strong=\"G2967\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w mighty|strong=\"G1411\"\\+w* \\+w work|strong=\"G1411\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w quickly|strong=\"G5035\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w speak|strong=\"G3004\"\\+w* \\+w evil|strong=\"G2551\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 40, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w us|strong=\"G2249\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w on|strong=\"G5228\"\\+w* \\+w our|strong=\"G2596\"\\+w* side. *" + }, + { + "verseNum": 41, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w give|strong=\"G4222\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w of|strong=\"G3686\"\\+w* \\+w water|strong=\"G5204\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w drink|strong=\"G4222\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w Christ|strong=\"G5547\"\\+w*’s, most \\+w certainly|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w he|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G1722\"\\+w* lose \\+w his|strong=\"G1722\"\\+w* \\+w reward|strong=\"G3408\"\\+w*. *" + }, + { + "verseNum": 42, + "text": "“\\+w Whoever|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w cause|strong=\"G4624\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w ones|strong=\"G3398\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w better|strong=\"G2570\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w were|strong=\"G1510\"\\+w* thrown \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sea|strong=\"G2281\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w millstone|strong=\"G3458\"\\+w* \\+w hung|strong=\"G4029\"\\+w* \\+w around|strong=\"G4012\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w neck|strong=\"G5137\"\\+w*. *" + }, + { + "verseNum": 43, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w hand|strong=\"G5495\"\\+w* \\+w causes|strong=\"G4624\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w cut|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* off. \\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w better|strong=\"G2570\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w maimed|strong=\"G2948\"\\+w*, \\+w rather|strong=\"G2228\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w having|strong=\"G2192\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w go|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* Gehenna, *+ 9:43 or, Hell* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* unquenchable \\+w fire|strong=\"G4442\"\\+w*, *" + }, + { + "verseNum": 44, + "text": "‘where their worm doesn’t die, and the fire is not quenched.’ *+ 9:44 Isaiah 66:24*+ 9:44 NU omits verse 44.*" + }, + { + "verseNum": 45, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w foot|strong=\"G4228\"\\+w* \\+w causes|strong=\"G4624\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w cut|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* off. \\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w better|strong=\"G2570\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w lame|strong=\"G5560\"\\+w*, \\+w rather|strong=\"G2228\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w having|strong=\"G2192\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w feet|strong=\"G4228\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* Gehenna, *+ 9:45 or, Hell* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* fire \\+w that|strong=\"G3588\"\\+w* \\+w will|strong=\"G1510\"\\+w* never \\+w be|strong=\"G1510\"\\+w* quenched—*" + }, + { + "verseNum": 46, + "text": "‘where their worm doesn’t die, and the fire is not quenched.’ *+ 9:46 NU omits verse 46.*" + }, + { + "verseNum": 47, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w eye|strong=\"G3788\"\\+w* \\+w causes|strong=\"G4624\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w throw|strong=\"G1544\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w out|strong=\"G1544\"\\+w*. \\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w better|strong=\"G2570\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’\\+w s|strong=\"G2192\"\\+w* Kingdom \\+w with|strong=\"G2532\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w eye|strong=\"G3788\"\\+w*, \\+w rather|strong=\"G2228\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w having|strong=\"G2192\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w eyes|strong=\"G3788\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* Gehenna*+ 9:47 or, Hell* \\+w of|strong=\"G2316\"\\+w* fire, *" + }, + { + "verseNum": 48, + "text": "‘\\+w where|strong=\"G3699\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w worm|strong=\"G4663\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w die|strong=\"G5053\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fire|strong=\"G4442\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w quenched|strong=\"G4570\"\\+w*.’ *+ 9:48 Isaiah 66:24*" + }, + { + "verseNum": 49, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w will|strong=\"G3956\"\\+w* \\+w be|strong=\"G3956\"\\+w* salted \\+w with|strong=\"G3956\"\\+w* \\+w fire|strong=\"G4442\"\\+w*, \\+w and|strong=\"G3956\"\\+w* \\+w every|strong=\"G3956\"\\+w* sacrifice \\+w will|strong=\"G3956\"\\+w* \\+w be|strong=\"G3956\"\\+w* seasoned \\+w with|strong=\"G3956\"\\+w* salt. *" + }, + { + "verseNum": 50, + "text": "Salt \\+w is|strong=\"G3588\"\\+w* \\+w good|strong=\"G2570\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w the|strong=\"G1722\"\\+w* salt \\+w has|strong=\"G2192\"\\+w* lost its saltiness, \\+w with|strong=\"G1722\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w you|strong=\"G1437\"\\+w* season \\+w it|strong=\"G2532\"\\+w*? \\+w Have|strong=\"G2192\"\\+w* salt \\+w in|strong=\"G1722\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w peace|strong=\"G1514\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w one|strong=\"G1438\"\\+w* \\+w another|strong=\"G1438\"\\+w*.” *" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* arose from|strong=\"G2064\"* there|strong=\"G2532\"* and|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* borders|strong=\"G3725\"* of|strong=\"G2532\"* Judea|strong=\"G2449\"* and|strong=\"G2532\"* beyond|strong=\"G4008\"* the|strong=\"G2532\"* Jordan|strong=\"G2446\"*. Multitudes|strong=\"G3793\"* came|strong=\"G2064\"* together|strong=\"G4314\"* to|strong=\"G1519\"* him|strong=\"G3588\"* again|strong=\"G3825\"*. As|strong=\"G5613\"* he|strong=\"G2532\"* usually did|strong=\"G2532\"*, he|strong=\"G2532\"* was|strong=\"G3588\"* again|strong=\"G3825\"* teaching|strong=\"G1321\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "Pharisees|strong=\"G5330\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"* testing|strong=\"G3985\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “Is|strong=\"G3588\"* it|strong=\"G2532\"* lawful|strong=\"G1832\"* for|strong=\"G2532\"* a|strong=\"G2532\"* man to|strong=\"G2532\"* divorce his|strong=\"G2532\"* wife|strong=\"G1135\"*?”" + }, + { + "verseNum": 3, + "text": "He|strong=\"G1161\"* answered|strong=\"G3004\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w did|strong=\"G5101\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w command|strong=\"G1781\"\\+w* \\+w you|strong=\"G5210\"\\+w*?”*" + }, + { + "verseNum": 4, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"*, “Moses|strong=\"G3475\"* allowed|strong=\"G2010\"* a|strong=\"G2532\"* certificate of|strong=\"G2532\"* divorce to|strong=\"G2532\"* be|strong=\"G2532\"* written|strong=\"G1125\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* divorce her|strong=\"G3588\"*.”" + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w For|strong=\"G4314\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w hardness|strong=\"G4641\"\\+w* \\+w of|strong=\"G2424\"\\+w* \\+w heart|strong=\"G4641\"\\+w*, \\+w he|strong=\"G1161\"\\+w* \\+w wrote|strong=\"G1125\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w commandment|strong=\"G1785\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* beginning \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w creation|strong=\"G2937\"\\+w*, \\+w God|strong=\"G2532\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w them|strong=\"G1438\"\\+w* male \\+w and|strong=\"G2532\"\\+w* \\+w female|strong=\"G2338\"\\+w*.*+ 10:6 Genesis 1:27*" + }, + { + "verseNum": 7, + "text": "\\+w For|strong=\"G4314\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w cause|strong=\"G1752\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w man|strong=\"G3778\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w leave|strong=\"G2641\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w mother|strong=\"G3384\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w join|strong=\"G2532\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w wife|strong=\"G1135\"\\+w*, *" + }, + { + "verseNum": 8, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w become|strong=\"G1510\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w flesh|strong=\"G4561\"\\+w*,*+ 10:8 Genesis 2:24* \\+w so|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w no|strong=\"G3765\"\\+w* \\+w longer|strong=\"G3765\"\\+w* \\+w two|strong=\"G1417\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w flesh|strong=\"G4561\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w What|strong=\"G3739\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w joined|strong=\"G4801\"\\+w* \\+w together|strong=\"G4801\"\\+w*, \\+w let|strong=\"G5563\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w man|strong=\"G3361\"\\+w* \\+w separate|strong=\"G5563\"\\+w*.” *" + }, + { + "verseNum": 10, + "text": "In|strong=\"G1519\"* the|strong=\"G2532\"* house|strong=\"G3614\"*, his|strong=\"G1519\"* disciples|strong=\"G3101\"* asked|strong=\"G1905\"* him|strong=\"G3588\"* again|strong=\"G3825\"* about|strong=\"G4012\"* the|strong=\"G2532\"* same|strong=\"G3778\"* matter." + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Whoever|strong=\"G3739\"\\+w* divorces \\+w his|strong=\"G1438\"\\+w* \\+w wife|strong=\"G1135\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w marries|strong=\"G1060\"\\+w* \\+w another|strong=\"G1438\"\\+w* \\+w commits|strong=\"G3429\"\\+w* \\+w adultery|strong=\"G3429\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w her|strong=\"G1438\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w a|strong=\"G2532\"\\+w* woman herself divorces \\+w her|strong=\"G1437\"\\+w* husband \\+w and|strong=\"G2532\"\\+w* \\+w marries|strong=\"G1060\"\\+w* \\+w another|strong=\"G3588\"\\+w*, \\+w she|strong=\"G2532\"\\+w* \\+w commits|strong=\"G3429\"\\+w* \\+w adultery|strong=\"G3429\"\\+w*.”*" + }, + { + "verseNum": 13, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* bringing|strong=\"G4374\"* to|strong=\"G2443\"* him|strong=\"G3588\"* little children|strong=\"G3813\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* should|strong=\"G3588\"* touch them|strong=\"G3588\"*, but|strong=\"G1161\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* rebuked|strong=\"G2008\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* bringing|strong=\"G4374\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Jesus|strong=\"G2424\"* saw|strong=\"G3708\"* it|strong=\"G2532\"*, he|strong=\"G2532\"* was|strong=\"G1510\"* moved|strong=\"G3361\"* with|strong=\"G4314\"* indignation and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “Allow \\+w the|strong=\"G2532\"\\+w* little \\+w children|strong=\"G3813\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w*! Don’\\+w t|strong=\"G3588\"\\+w* \\+w forbid|strong=\"G2967\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w belongs|strong=\"G1510\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w such|strong=\"G5108\"\\+w* \\+w as|strong=\"G1161\"\\+w* \\+w these|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w Most|strong=\"G2316\"\\+w* \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w whoever|strong=\"G3739\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w like|strong=\"G5613\"\\+w* \\+w a|strong=\"G5613\"\\+w* little \\+w child|strong=\"G3813\"\\+w*, \\+w he|strong=\"G3739\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G5613\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w it|strong=\"G3739\"\\+w*.”*" + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* took|strong=\"G2532\"* them|strong=\"G3588\"* in|strong=\"G1909\"* his|strong=\"G1909\"* arms|strong=\"G1723\"* and|strong=\"G2532\"* blessed|strong=\"G2127\"* them|strong=\"G3588\"*, laying|strong=\"G5087\"* his|strong=\"G1909\"* hands|strong=\"G5495\"* on|strong=\"G1909\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "As|strong=\"G1519\"* he|strong=\"G2532\"* was|strong=\"G2532\"* going|strong=\"G1607\"* out|strong=\"G1607\"* into|strong=\"G1519\"* the|strong=\"G2532\"* way|strong=\"G3598\"*, one|strong=\"G1520\"* ran|strong=\"G4370\"* to|strong=\"G1519\"* him|strong=\"G1905\"*, knelt|strong=\"G1120\"* before|strong=\"G1519\"* him|strong=\"G1905\"*, and|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G1905\"*, “Good|strong=\"G5101\"* Teacher|strong=\"G1320\"*, what|strong=\"G5101\"* shall|strong=\"G2532\"* I|strong=\"G2532\"* do|strong=\"G4160\"* that|strong=\"G2443\"* I|strong=\"G2532\"* may|strong=\"G2532\"* inherit|strong=\"G2816\"* eternal life|strong=\"G2222\"*?”" + }, + { + "verseNum": 18, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w call|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w good|strong=\"G5101\"\\+w*? \\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w good|strong=\"G5101\"\\+w* \\+w except|strong=\"G1487\"\\+w* \\+w one|strong=\"G1520\"\\+w*—\\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w You|strong=\"G4771\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w commandments|strong=\"G1785\"\\+w*: ‘\\+w Do|strong=\"G1492\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w murder|strong=\"G5407\"\\+w*,’ ‘\\+w Do|strong=\"G1492\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w commit|strong=\"G3431\"\\+w* \\+w adultery|strong=\"G3431\"\\+w*,’ ‘\\+w Do|strong=\"G1492\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w steal|strong=\"G2813\"\\+w*,’ ‘\\+w Do|strong=\"G1492\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w give|strong=\"G5576\"\\+w* \\+w false|strong=\"G5576\"\\+w* \\+w testimony|strong=\"G5576\"\\+w*,’ ‘\\+w Do|strong=\"G1492\"\\+w* \\+w not|strong=\"G3361\"\\+w* defraud,’ ‘\\+w Honor|strong=\"G5091\"\\+w* \\+w your|strong=\"G5091\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w mother|strong=\"G3384\"\\+w*.’”*+ 10:19 Exodus 20:12-16; Deuteronomy 5:16-20 *" + }, + { + "verseNum": 20, + "text": "He|strong=\"G1161\"* said|strong=\"G5346\"* to|strong=\"G1161\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, I|strong=\"G1473\"* have|strong=\"G1473\"* observed|strong=\"G5442\"* all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"* from|strong=\"G1537\"* my|strong=\"G3956\"* youth|strong=\"G3503\"*.”" + }, + { + "verseNum": 21, + "text": "Jesus|strong=\"G2424\"* looking|strong=\"G1689\"* at|strong=\"G1722\"* him|strong=\"G3588\"* loved him|strong=\"G3588\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w One|strong=\"G1520\"\\+w* \\+w thing|strong=\"G1520\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w lack|strong=\"G5302\"\\+w*. \\+w Go|strong=\"G5217\"\\+w*, \\+w sell|strong=\"G4453\"\\+w* \\+w whatever|strong=\"G3745\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w poor|strong=\"G4434\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w come|strong=\"G1204\"\\+w*, \\+w follow|strong=\"G1161\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w taking|strong=\"G1325\"\\+w* \\+w up|strong=\"G1325\"\\+w* \\+w the|strong=\"G1722\"\\+w* cross.”*" + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* his|strong=\"G1909\"* face fell|strong=\"G3056\"* at|strong=\"G1909\"* that|strong=\"G3588\"* saying|strong=\"G3056\"*, and|strong=\"G1161\"* he|strong=\"G1161\"* went|strong=\"G3588\"* away sorrowful|strong=\"G3076\"*, for|strong=\"G1063\"* he|strong=\"G1161\"* was|strong=\"G1510\"* one|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2192\"* great|strong=\"G4183\"* possessions|strong=\"G2933\"*." + }, + { + "verseNum": 23, + "text": "Jesus|strong=\"G2424\"* looked|strong=\"G4017\"* around|strong=\"G4017\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, “\\+w How|strong=\"G4459\"\\+w* difficult \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w riches|strong=\"G5536\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’\\+w s|strong=\"G2192\"\\+w* Kingdom!”*" + }, + { + "verseNum": 24, + "text": "The|strong=\"G1519\"* disciples|strong=\"G3101\"* were|strong=\"G1510\"* amazed|strong=\"G2284\"* at|strong=\"G1909\"* his|strong=\"G1519\"* words|strong=\"G3056\"*. But|strong=\"G1161\"* Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* again|strong=\"G3825\"*, “\\+w Children|strong=\"G5043\"\\+w*, \\+w how|strong=\"G4459\"\\+w* \\+w hard|strong=\"G1422\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* trust \\+w in|strong=\"G1519\"\\+w* riches \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom! *" + }, + { + "verseNum": 25, + "text": "\\+w It|strong=\"G1510\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w easier|strong=\"G2123\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w camel|strong=\"G2574\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w go|strong=\"G1525\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w needle|strong=\"G4476\"\\+w*’s \\+w eye|strong=\"G5168\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w rich|strong=\"G4145\"\\+w* \\+w man|strong=\"G4145\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom.”*" + }, + { + "verseNum": 26, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* exceedingly|strong=\"G4057\"* astonished|strong=\"G1605\"*, saying|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Then|strong=\"G2532\"* who|strong=\"G5101\"* can|strong=\"G1410\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*?”" + }, + { + "verseNum": 27, + "text": "Jesus|strong=\"G2424\"*, looking|strong=\"G1689\"* at|strong=\"G3844\"* them|strong=\"G3588\"*, said|strong=\"G3004\"*, “\\+w With|strong=\"G3844\"\\+w* \\+w men|strong=\"G3956\"\\+w* \\+w it|strong=\"G1063\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w impossible|strong=\"G3756\"\\+w*, \\+w but|strong=\"G1063\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w possible|strong=\"G1415\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w God|strong=\"G2316\"\\+w*.”*" + }, + { + "verseNum": 28, + "text": "Peter|strong=\"G4074\"* began to|strong=\"G2532\"* tell|strong=\"G3004\"* him|strong=\"G3588\"*, “Behold|strong=\"G2400\"*, we|strong=\"G2249\"* have|strong=\"G2532\"* left all|strong=\"G3956\"* and|strong=\"G2532\"* have|strong=\"G2532\"* followed you|strong=\"G4771\"*.”" + }, + { + "verseNum": 29, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w there|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w has|strong=\"G3962\"\\+w* left \\+w house|strong=\"G3614\"\\+w*, \\+w or|strong=\"G2228\"\\+w* brothers, \\+w or|strong=\"G2228\"\\+w* sisters, \\+w or|strong=\"G2228\"\\+w* \\+w father|strong=\"G3962\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w mother|strong=\"G3384\"\\+w*, \\+w or|strong=\"G2228\"\\+w* wife, \\+w or|strong=\"G2228\"\\+w* \\+w children|strong=\"G5043\"\\+w*, \\+w or|strong=\"G2228\"\\+w* land, \\+w for|strong=\"G1752\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w sake|strong=\"G1752\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w for|strong=\"G1752\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sake|strong=\"G1752\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Good|strong=\"G3588\"\\+w* \\+w News|strong=\"G2098\"\\+w*, *" + }, + { + "verseNum": 30, + "text": "\\+w but|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w hundred|strong=\"G1542\"\\+w* \\+w times|strong=\"G2540\"\\+w* \\+w more|strong=\"G2532\"\\+w* \\+w now|strong=\"G3568\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w time|strong=\"G2540\"\\+w*: \\+w houses|strong=\"G3614\"\\+w*, brothers, sisters, \\+w mothers|strong=\"G3384\"\\+w*, \\+w children|strong=\"G5043\"\\+w*, \\+w and|strong=\"G2532\"\\+w* land, \\+w with|strong=\"G3326\"\\+w* \\+w persecutions|strong=\"G1375\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w age|strong=\"G2540\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w last|strong=\"G2078\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w first|strong=\"G4413\"\\+w*.”*" + }, + { + "verseNum": 32, + "text": "They|strong=\"G2532\"* were|strong=\"G1510\"* on|strong=\"G1722\"* the|strong=\"G1722\"* way|strong=\"G3598\"*, going|strong=\"G3195\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*; and|strong=\"G2532\"* Jesus|strong=\"G2424\"* was|strong=\"G1510\"* going|strong=\"G3195\"* in|strong=\"G1722\"* front|strong=\"G4254\"* of|strong=\"G2532\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G1510\"* amazed|strong=\"G2284\"*; and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* followed were|strong=\"G1510\"* afraid|strong=\"G5399\"*. He|strong=\"G2532\"* again|strong=\"G3825\"* took|strong=\"G3880\"* the|strong=\"G1722\"* twelve|strong=\"G1427\"*, and|strong=\"G2532\"* began|strong=\"G1161\"* to|strong=\"G1519\"* tell|strong=\"G3004\"* them|strong=\"G3588\"* the|strong=\"G1722\"* things|strong=\"G3588\"* that|strong=\"G3588\"* were|strong=\"G1510\"* going|strong=\"G3195\"* to|strong=\"G1519\"* happen|strong=\"G1510\"* to|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "“\\+w Behold|strong=\"G2400\"\\+w*, \\+w we|strong=\"G3754\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w going|strong=\"G2532\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w Jerusalem|strong=\"G2414\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1519\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w chief|strong=\"G2532\"\\+w* priests \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w scribes|strong=\"G1122\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w condemn|strong=\"G2632\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w death|strong=\"G2288\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Gentiles|strong=\"G1484\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w mock|strong=\"G1702\"\\+w* \\+w him|strong=\"G2532\"\\+w*, \\+w spit|strong=\"G1716\"\\+w* \\+w on|strong=\"G3326\"\\+w* \\+w him|strong=\"G2532\"\\+w*, \\+w scourge|strong=\"G3146\"\\+w* \\+w him|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* kill \\+w him|strong=\"G2532\"\\+w*. \\+w On|strong=\"G3326\"\\+w* \\+w the|strong=\"G2532\"\\+w* third \\+w day|strong=\"G2250\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rise|strong=\"G2250\"\\+w* \\+w again|strong=\"G2532\"\\+w*.”*" + }, + { + "verseNum": 35, + "text": "James|strong=\"G2385\"* and|strong=\"G2532\"* John|strong=\"G2491\"*, the|strong=\"G2532\"* sons|strong=\"G5207\"* of|strong=\"G5207\"* Zebedee|strong=\"G2199\"*, came|strong=\"G2532\"* near to|strong=\"G2443\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Teacher|strong=\"G1320\"*, we|strong=\"G2249\"* want|strong=\"G2309\"* you|strong=\"G4771\"* to|strong=\"G2443\"* do|strong=\"G4160\"* for|strong=\"G2532\"* us|strong=\"G3004\"* whatever|strong=\"G3739\"* we|strong=\"G2249\"* will|strong=\"G2309\"* ask|strong=\"G3004\"*.”" + }, + { + "verseNum": 36, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w*?”*" + }, + { + "verseNum": 37, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, “Grant|strong=\"G1325\"* to|strong=\"G2443\"* us|strong=\"G1325\"* that|strong=\"G2443\"* we|strong=\"G2249\"* may|strong=\"G2532\"* sit|strong=\"G2523\"*, one|strong=\"G1520\"* at|strong=\"G1722\"* your|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* and|strong=\"G2532\"* one|strong=\"G1520\"* at|strong=\"G1722\"* your|strong=\"G2532\"* left hand|strong=\"G1188\"*, in|strong=\"G1722\"* your|strong=\"G2532\"* glory|strong=\"G1391\"*.”" + }, + { + "verseNum": 38, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w You|strong=\"G3739\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w asking|strong=\"G3004\"\\+w*. \\+w Are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w drink|strong=\"G4095\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w be|strong=\"G3756\"\\+w* baptized \\+w with|strong=\"G3756\"\\+w* \\+w the|strong=\"G1161\"\\+w* baptism \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* baptized \\+w with|strong=\"G3756\"\\+w*?”*" + }, + { + "verseNum": 39, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “We|strong=\"G3739\"* are|strong=\"G3588\"* able|strong=\"G1410\"*.”" + }, + { + "verseNum": 40, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w sit|strong=\"G2523\"\\+w* \\+w at|strong=\"G1537\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w hand|strong=\"G1188\"\\+w* \\+w and|strong=\"G1161\"\\+w* \\+w at|strong=\"G1537\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w left|strong=\"G2176\"\\+w* \\+w hand|strong=\"G1188\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w mine|strong=\"G1699\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w give|strong=\"G1325\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w has|strong=\"G3739\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w prepared|strong=\"G2090\"\\+w*.”*" + }, + { + "verseNum": 41, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* ten|strong=\"G1176\"* heard it|strong=\"G2532\"*, they|strong=\"G2532\"* began to|strong=\"G2532\"* be|strong=\"G2532\"* indignant toward James|strong=\"G2385\"* and|strong=\"G2532\"* John|strong=\"G2491\"*." + }, + { + "verseNum": 42, + "text": "Jesus|strong=\"G2424\"* summoned|strong=\"G4341\"* them|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w You|strong=\"G3754\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w recognized|strong=\"G1380\"\\+w* \\+w as|strong=\"G2532\"\\+w* rulers \\+w over|strong=\"G2634\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w* \\+w lord|strong=\"G3588\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w over|strong=\"G2634\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w ones|strong=\"G3748\"\\+w* \\+w exercise|strong=\"G2715\"\\+w* \\+w authority|strong=\"G2715\"\\+w* \\+w over|strong=\"G2634\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 43, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w shall|strong=\"G3739\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w wants|strong=\"G2309\"\\+w* \\+w to|strong=\"G2309\"\\+w* \\+w become|strong=\"G1096\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w shall|strong=\"G3739\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w your|strong=\"G1722\"\\+w* \\+w servant|strong=\"G1249\"\\+w*. *" + }, + { + "verseNum": 44, + "text": "\\+w Whoever|strong=\"G3739\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w wants|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w become|strong=\"G1096\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* bondservant \\+w of|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w*. *" + }, + { + "verseNum": 45, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3756\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w served|strong=\"G1247\"\\+w* \\+w but|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w serve|strong=\"G1247\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w as|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w ransom|strong=\"G3083\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w many|strong=\"G4183\"\\+w*.”*" + }, + { + "verseNum": 46, + "text": "They|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Jericho|strong=\"G2410\"*. As|strong=\"G1519\"* he|strong=\"G2532\"* went|strong=\"G2064\"* out|strong=\"G1607\"* from|strong=\"G3844\"* Jericho|strong=\"G2410\"* with|strong=\"G3844\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* a|strong=\"G2532\"* great|strong=\"G2532\"* multitude|strong=\"G3793\"*, the|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* Timaeus|strong=\"G5090\"*, Bartimaeus, a|strong=\"G2532\"* blind|strong=\"G5185\"* beggar|strong=\"G4319\"*, was|strong=\"G3588\"* sitting|strong=\"G2521\"* by|strong=\"G3844\"* the|strong=\"G2532\"* road|strong=\"G3598\"*." + }, + { + "verseNum": 47, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* heard that|strong=\"G3754\"* it|strong=\"G2532\"* was|strong=\"G1510\"* Jesus|strong=\"G2424\"* the|strong=\"G2532\"* Nazarene|strong=\"G3479\"*, he|strong=\"G2532\"* began to|strong=\"G2532\"* cry|strong=\"G2896\"* out|strong=\"G2896\"* and|strong=\"G2532\"* say|strong=\"G3004\"*, “Jesus|strong=\"G2424\"*, you|strong=\"G3754\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*, have|strong=\"G2532\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* me|strong=\"G1473\"*!”" + }, + { + "verseNum": 48, + "text": "Many|strong=\"G4183\"* rebuked|strong=\"G2008\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* should|strong=\"G3588\"* be|strong=\"G2532\"* quiet|strong=\"G4623\"*, but|strong=\"G1161\"* he|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* much|strong=\"G4183\"* more|strong=\"G3123\"*, “You|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*, have|strong=\"G2532\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* me|strong=\"G1473\"*!”" + }, + { + "verseNum": 49, + "text": "Jesus|strong=\"G2424\"* stood|strong=\"G2476\"* still|strong=\"G2476\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Call|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 50, + "text": "He|strong=\"G1161\"*, casting away his|strong=\"G4314\"* cloak|strong=\"G2440\"*, sprang up|strong=\"G2064\"*, and|strong=\"G1161\"* came|strong=\"G2064\"* to|strong=\"G4314\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 51, + "text": "Jesus|strong=\"G2424\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w me|strong=\"G3004\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w*?”*" + }, + { + "verseNum": 52, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Go|strong=\"G5217\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w way|strong=\"G3598\"\\+w*. \\+w Your|strong=\"G2532\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w has|strong=\"G4102\"\\+w* \\+w made|strong=\"G4982\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w well|strong=\"G4982\"\\+w*.” * Immediately|strong=\"G2112\"* he|strong=\"G2532\"* received his|strong=\"G1722\"* sight|strong=\"G3588\"* and|strong=\"G2532\"* followed Jesus|strong=\"G2424\"* on|strong=\"G1722\"* the|strong=\"G1722\"* way|strong=\"G3598\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G3753\"* they|strong=\"G2532\"* came|strong=\"G2532\"* near|strong=\"G1448\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*, to|strong=\"G1519\"* Bethsphage+ 11:1 TR & NU read “Bethphage” instead of “Bethsphage”* and|strong=\"G2532\"* Bethany, at|strong=\"G1519\"* the|strong=\"G2532\"* Mount|strong=\"G3735\"* of|strong=\"G2532\"* Olives|strong=\"G1636\"*, he|strong=\"G2532\"* sent|strong=\"G2532\"* two|strong=\"G1417\"* of|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*" + }, + { + "verseNum": 2, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Go|strong=\"G5217\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w way|strong=\"G5217\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w village|strong=\"G2968\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w opposite|strong=\"G2713\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w Immediately|strong=\"G2112\"\\+w* \\+w as|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w enter|strong=\"G1531\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w young|strong=\"G3739\"\\+w* donkey \\+w tied|strong=\"G1210\"\\+w*, \\+w on|strong=\"G1909\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w has|strong=\"G3739\"\\+w* \\+w sat|strong=\"G2523\"\\+w*. \\+w Untie|strong=\"G3089\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w bring|strong=\"G5342\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* asks \\+w you|strong=\"G5210\"\\+w*, ‘\\+w Why|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w doing|strong=\"G4160\"\\+w* \\+w this|strong=\"G3778\"\\+w*?’ \\+w say|strong=\"G3004\"\\+w*, ‘\\+w The|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w needs|strong=\"G5532\"\\+w* \\+w him|strong=\"G3588\"\\+w*;’ \\+w and|strong=\"G2532\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G5101\"\\+w* send \\+w him|strong=\"G3588\"\\+w* \\+w back|strong=\"G3825\"\\+w* \\+w here|strong=\"G5602\"\\+w*.”*" + }, + { + "verseNum": 4, + "text": "They|strong=\"G2532\"* went|strong=\"G2532\"* away|strong=\"G1854\"*, and|strong=\"G2532\"* found|strong=\"G2147\"* a|strong=\"G2532\"* young donkey tied|strong=\"G1210\"* at|strong=\"G1909\"* the|strong=\"G2532\"* door|strong=\"G2374\"* outside|strong=\"G1854\"* in|strong=\"G1909\"* the|strong=\"G2532\"* open street, and|strong=\"G2532\"* they|strong=\"G2532\"* untied|strong=\"G3089\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "Some|strong=\"G5100\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G5101\"* stood|strong=\"G2476\"* there|strong=\"G1563\"* asked|strong=\"G3004\"* them|strong=\"G3588\"*, “What|strong=\"G5101\"* are|strong=\"G3588\"* you|strong=\"G3004\"* doing|strong=\"G4160\"*, untying|strong=\"G3089\"* the|strong=\"G2532\"* young|strong=\"G5100\"* donkey?”" + }, + { + "verseNum": 6, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"* just|strong=\"G2531\"* as|strong=\"G2531\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* said|strong=\"G3004\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* let|strong=\"G1161\"* them|strong=\"G3588\"* go|strong=\"G2532\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"G2532\"* brought|strong=\"G5342\"* the|strong=\"G2532\"* young donkey to|strong=\"G4314\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* threw|strong=\"G1911\"* their|strong=\"G2532\"* garments|strong=\"G2440\"* on|strong=\"G1909\"* it|strong=\"G2532\"*, and|strong=\"G2532\"* Jesus|strong=\"G2424\"* sat|strong=\"G2523\"* on|strong=\"G1909\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 8, + "text": "Many|strong=\"G4183\"* spread|strong=\"G4766\"* their|strong=\"G2532\"* garments|strong=\"G2440\"* on|strong=\"G1519\"* the|strong=\"G2532\"* way|strong=\"G3598\"*, and|strong=\"G2532\"* others|strong=\"G3588\"* were|strong=\"G3588\"* cutting|strong=\"G2875\"* down|strong=\"G2875\"* branches|strong=\"G4746\"* from|strong=\"G1537\"* the|strong=\"G2532\"* trees and|strong=\"G2532\"* spreading|strong=\"G4766\"* them|strong=\"G3588\"* on|strong=\"G1519\"* the|strong=\"G2532\"* road|strong=\"G3598\"*." + }, + { + "verseNum": 9, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* went|strong=\"G2064\"* in|strong=\"G1722\"* front|strong=\"G4254\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* followed cried|strong=\"G2896\"* out|strong=\"G2896\"*, “Hosanna|strong=\"G5614\"*!+ 11:9 “Hosanna” means “save us” or “help us, we pray”.* Blessed|strong=\"G2127\"* is|strong=\"G3588\"* he|strong=\"G2532\"* who|strong=\"G3588\"* comes|strong=\"G2064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*!+ 11:9 Psalms 118:25-26*" + }, + { + "verseNum": 10, + "text": "Blessed|strong=\"G2127\"* is|strong=\"G3588\"* the|strong=\"G1722\"* kingdom of|strong=\"G3962\"* our|strong=\"G1722\"* father|strong=\"G3962\"* David|strong=\"G1138\"* that|strong=\"G3588\"* is|strong=\"G3588\"* coming|strong=\"G2064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name of|strong=\"G3962\"* the|strong=\"G1722\"* Lord|strong=\"G3588\"*! Hosanna|strong=\"G5614\"* in|strong=\"G1722\"* the|strong=\"G1722\"* highest|strong=\"G5310\"*!”" + }, + { + "verseNum": 11, + "text": "Jesus|strong=\"G1525\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G2411\"* in|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*. When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* looked|strong=\"G4017\"* around|strong=\"G4017\"* at|strong=\"G1519\"* everything|strong=\"G3956\"*, it|strong=\"G2532\"* being|strong=\"G1510\"* now|strong=\"G2532\"* evening|strong=\"G3796\"*, he|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G1519\"* Bethany with|strong=\"G3326\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G2532\"* Bethany, he|strong=\"G2532\"* was|strong=\"G3588\"* hungry|strong=\"G3983\"*." + }, + { + "verseNum": 13, + "text": "Seeing|strong=\"G3708\"* a|strong=\"G2192\"* fig|strong=\"G4808\"* tree|strong=\"G4808\"* afar|strong=\"G3113\"* off|strong=\"G3113\"* having|strong=\"G2192\"* leaves|strong=\"G5444\"*, he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G2532\"* see|strong=\"G3708\"* if|strong=\"G1487\"* perhaps he|strong=\"G2532\"* might|strong=\"G2532\"* find|strong=\"G2147\"* anything|strong=\"G5100\"* on|strong=\"G1909\"* it|strong=\"G2532\"*. When|strong=\"G2532\"* he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G2532\"* it|strong=\"G2532\"*, he|strong=\"G2532\"* found|strong=\"G2147\"* nothing|strong=\"G3762\"* but|strong=\"G2532\"* leaves|strong=\"G5444\"*, for|strong=\"G1063\"* it|strong=\"G2532\"* was|strong=\"G1510\"* not|strong=\"G3756\"* the|strong=\"G1722\"* season|strong=\"G2540\"* for|strong=\"G1063\"* figs|strong=\"G4810\"*." + }, + { + "verseNum": 14, + "text": "Jesus|strong=\"G3004\"* told|strong=\"G3004\"* it|strong=\"G2532\"*, “\\+w May|strong=\"G2532\"\\+w* \\+w no|strong=\"G3367\"\\+w* \\+w one|strong=\"G3367\"\\+w* \\+w ever|strong=\"G1519\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w again|strong=\"G3371\"\\+w*!” * and|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* heard it|strong=\"G2532\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*, and|strong=\"G2532\"* Jesus|strong=\"G1525\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* and|strong=\"G2532\"* began to|strong=\"G1519\"* throw|strong=\"G1544\"* out|strong=\"G1544\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sold|strong=\"G4453\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* bought in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, and|strong=\"G2532\"* overthrew|strong=\"G2690\"* the|strong=\"G1722\"* money|strong=\"G2855\"* changers|strong=\"G2855\"*’ tables|strong=\"G5132\"* and|strong=\"G2532\"* the|strong=\"G1722\"* seats|strong=\"G2515\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sold|strong=\"G4453\"* the|strong=\"G1722\"* doves|strong=\"G4058\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* would|strong=\"G2532\"* not|strong=\"G3756\"* allow anyone|strong=\"G5100\"* to|strong=\"G2443\"* carry|strong=\"G1308\"* a|strong=\"G2532\"* container|strong=\"G4632\"* through|strong=\"G1223\"* the|strong=\"G2532\"* temple|strong=\"G2411\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"G2532\"* taught|strong=\"G1321\"*, saying|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Isn’\\+w t|strong=\"G3588\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w My|strong=\"G3956\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w prayer|strong=\"G4335\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w*’?*+ 11:17 Isaiah 56:7* \\+w But|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w den|strong=\"G4693\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w robbers|strong=\"G3027\"\\+w*!”*+ 11:17 Jeremiah 7:11*" + }, + { + "verseNum": 18, + "text": "The|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* heard it|strong=\"G2532\"*, and|strong=\"G2532\"* sought|strong=\"G2212\"* how|strong=\"G4459\"* they|strong=\"G2532\"* might|strong=\"G2532\"* destroy him|strong=\"G3588\"*. For|strong=\"G1063\"* they|strong=\"G2532\"* feared|strong=\"G5399\"* him|strong=\"G3588\"*, because|strong=\"G1063\"* all|strong=\"G3956\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* was|strong=\"G3588\"* astonished|strong=\"G1605\"* at|strong=\"G1909\"* his|strong=\"G3956\"* teaching|strong=\"G1322\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"G3752\"* evening|strong=\"G3796\"* came|strong=\"G1096\"*, he|strong=\"G2532\"* went|strong=\"G2532\"* out|strong=\"G1854\"* of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"*." + }, + { + "verseNum": 20, + "text": "As|strong=\"G2532\"* they|strong=\"G2532\"* passed|strong=\"G3588\"* by|strong=\"G1537\"* in|strong=\"G2532\"* the|strong=\"G2532\"* morning|strong=\"G4404\"*, they|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* fig|strong=\"G4808\"* tree|strong=\"G4808\"* withered|strong=\"G3583\"* away|strong=\"G3583\"* from|strong=\"G1537\"* the|strong=\"G2532\"* roots|strong=\"G4491\"*." + }, + { + "verseNum": 21, + "text": "Peter|strong=\"G4074\"*, remembering, said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Rabbi|strong=\"G4461\"*, look|strong=\"G3708\"*! The|strong=\"G2532\"* fig|strong=\"G4808\"* tree|strong=\"G4808\"* which|strong=\"G3739\"* you|strong=\"G3739\"* cursed|strong=\"G2672\"* has|strong=\"G3739\"* withered|strong=\"G3583\"* away|strong=\"G3583\"*.”" + }, + { + "verseNum": 22, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Have|strong=\"G2192\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w For|strong=\"G3754\"\\+w* most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w whoever|strong=\"G3739\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w mountain|strong=\"G3735\"\\+w*, ‘\\+w Be|strong=\"G1096\"\\+w* \\+w taken|strong=\"G1096\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sea|strong=\"G2281\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w doubt|strong=\"G1252\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w happening|strong=\"G1096\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w says|strong=\"G3004\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w Therefore|strong=\"G1223\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w whatever|strong=\"G3745\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w pray|strong=\"G4336\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w ask|strong=\"G3004\"\\+w* \\+w for|strong=\"G3754\"\\+w*, \\+w believe|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w them|strong=\"G3004\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w them|strong=\"G3004\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w Whenever|strong=\"G3752\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w stand|strong=\"G4739\"\\+w* \\+w praying|strong=\"G4336\"\\+w*, forgive, \\+w if|strong=\"G1487\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w anything|strong=\"G5100\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w anyone|strong=\"G5100\"\\+w*; \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w may|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* forgive \\+w you|strong=\"G5210\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w transgressions|strong=\"G3900\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "But if you do not forgive, neither will your Father in heaven forgive your transgressions.”*+ 11:26 NU omits verse 26.*" + }, + { + "verseNum": 27, + "text": "They|strong=\"G2532\"* came|strong=\"G2064\"* again|strong=\"G3825\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*, and|strong=\"G2532\"* as|strong=\"G1519\"* he|strong=\"G2532\"* was|strong=\"G3588\"* walking|strong=\"G4043\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2411\"*, the|strong=\"G1722\"* chief|strong=\"G2532\"* priests, the|strong=\"G1722\"* scribes|strong=\"G1122\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* elders|strong=\"G4245\"* came|strong=\"G2064\"* to|strong=\"G1519\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 28, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* began saying|strong=\"G3004\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, “By|strong=\"G1722\"* what|strong=\"G5101\"* authority|strong=\"G1849\"* do|strong=\"G4160\"* you|strong=\"G4771\"* do|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3778\"*? Or|strong=\"G2228\"* who|strong=\"G5101\"* gave|strong=\"G1325\"* you|strong=\"G4771\"* this|strong=\"G3778\"* authority|strong=\"G1849\"* to|strong=\"G2443\"* do|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3778\"*?”" + }, + { + "verseNum": 29, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w ask|strong=\"G1905\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w question|strong=\"G1905\"\\+w*. \\+w Answer|strong=\"G3056\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w what|strong=\"G4169\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w The|strong=\"G1537\"\\+w* baptism \\+w of|strong=\"G1537\"\\+w* \\+w John|strong=\"G2491\"\\+w*—\\+w was|strong=\"G1510\"\\+w* \\+w it|strong=\"G1510\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w men|strong=\"G3588\"\\+w*? Answer \\+w me|strong=\"G1473\"\\+w*.” *" + }, + { + "verseNum": 31, + "text": "They|strong=\"G2532\"* reasoned|strong=\"G1260\"* with|strong=\"G4314\"* themselves|strong=\"G1438\"*, saying|strong=\"G3004\"*, “If|strong=\"G1437\"* we|strong=\"G1437\"* should|strong=\"G2532\"* say|strong=\"G3004\"*, ‘From|strong=\"G1537\"* heaven|strong=\"G3772\"*;’ he|strong=\"G2532\"* will|strong=\"G5101\"* say|strong=\"G3004\"*, ‘Why|strong=\"G5101\"* then|strong=\"G3767\"* did|strong=\"G2532\"* you|strong=\"G1437\"* not|strong=\"G3756\"* believe|strong=\"G4100\"* him|strong=\"G2532\"*?’" + }, + { + "verseNum": 32, + "text": "If|strong=\"G3748\"* we|strong=\"G3754\"* should|strong=\"G3588\"* say|strong=\"G3004\"*, ‘From|strong=\"G1537\"* men|strong=\"G3588\"*’”—they|strong=\"G3588\"* feared|strong=\"G5399\"* the|strong=\"G1537\"* people|strong=\"G2992\"*, for|strong=\"G1063\"* all|strong=\"G3588\"* held|strong=\"G2192\"* John|strong=\"G2491\"* to|strong=\"G3004\"* really|strong=\"G3689\"* be|strong=\"G1510\"* a|strong=\"G2192\"* prophet|strong=\"G4396\"*." + }, + { + "verseNum": 33, + "text": "They|strong=\"G2532\"* answered|strong=\"G3004\"* Jesus|strong=\"G2424\"*, “We|strong=\"G2532\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"*.”" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* began to|strong=\"G2532\"* speak|strong=\"G2980\"* to|strong=\"G2532\"* them|strong=\"G1722\"* in|strong=\"G1722\"* parables|strong=\"G3850\"*. “\\+w A|strong=\"G2532\"\\+w* man \\+w planted|strong=\"G5452\"\\+w* \\+w a|strong=\"G2532\"\\+w* vineyard, \\+w put|strong=\"G4060\"\\+w* \\+w a|strong=\"G2532\"\\+w* hedge \\+w around|strong=\"G4060\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w dug|strong=\"G3736\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w pit|strong=\"G2532\"\\+w* \\+w for|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w wine|strong=\"G5276\"\\+w* \\+w press|strong=\"G5276\"\\+w*, \\+w built|strong=\"G3618\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w tower|strong=\"G4444\"\\+w*, \\+w rented|strong=\"G1554\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w farmer|strong=\"G1092\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w went|strong=\"G2532\"\\+w* \\+w into|strong=\"G1722\"\\+w* \\+w another|strong=\"G1722\"\\+w* country. *" + }, + { + "verseNum": 2, + "text": "\\+w When|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w time|strong=\"G2540\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w farmer|strong=\"G1092\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w get|strong=\"G2532\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w farmer|strong=\"G1092\"\\+w* \\+w his|strong=\"G2983\"\\+w* share \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard. *" + }, + { + "verseNum": 3, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w him|strong=\"G2532\"\\+w*, \\+w beat|strong=\"G1194\"\\+w* \\+w him|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w him|strong=\"G2532\"\\+w* away \\+w empty|strong=\"G2756\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w Again|strong=\"G3825\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w another|strong=\"G1438\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w them|strong=\"G1438\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* threw stones \\+w at|strong=\"G4314\"\\+w* \\+w him|strong=\"G2532\"\\+w*, \\+w wounded|strong=\"G2775\"\\+w* \\+w him|strong=\"G2532\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w head|strong=\"G2775\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w him|strong=\"G2532\"\\+w* away shamefully treated. *" + }, + { + "verseNum": 5, + "text": "\\+w Again|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w another|strong=\"G3739\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* killed \\+w him|strong=\"G3739\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w others|strong=\"G3739\"\\+w*, \\+w beating|strong=\"G1194\"\\+w* \\+w some|strong=\"G3739\"\\+w*, \\+w and|strong=\"G2532\"\\+w* killing \\+w some|strong=\"G3739\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w Therefore|strong=\"G3754\"\\+w* \\+w still|strong=\"G2089\"\\+w* \\+w having|strong=\"G2192\"\\+w* \\+w one|strong=\"G1520\"\\+w*, \\+w his|strong=\"G1438\"\\+w* beloved \\+w son|strong=\"G5207\"\\+w*, \\+w he|strong=\"G3754\"\\+w* sent \\+w him|strong=\"G3588\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w They|strong=\"G3588\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w respect|strong=\"G1788\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w son|strong=\"G5207\"\\+w*.’ *" + }, + { + "verseNum": 7, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w those|strong=\"G3588\"\\+w* farmers \\+w said|strong=\"G3004\"\\+w* \\+w among|strong=\"G4314\"\\+w* \\+w themselves|strong=\"G1438\"\\+w*, ‘\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w heir|strong=\"G2818\"\\+w*. \\+w Come|strong=\"G1205\"\\+w*, \\+w let|strong=\"G1161\"\\+w*’s kill \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w inheritance|strong=\"G2817\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w ours|strong=\"G1473\"\\+w*.’ *" + }, + { + "verseNum": 8, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w him|strong=\"G3588\"\\+w*, killed \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard. *" + }, + { + "verseNum": 9, + "text": "\\+w What|strong=\"G5101\"\\+w* \\+w therefore|strong=\"G2532\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard \\+w do|strong=\"G4160\"\\+w*? \\+w He|strong=\"G2532\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* destroy \\+w the|strong=\"G2532\"\\+w* farmers, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard \\+w to|strong=\"G2532\"\\+w* \\+w others|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "Haven’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w even|strong=\"G3761\"\\+w* read \\+w this|strong=\"G3778\"\\+w* \\+w Scripture|strong=\"G1124\"\\+w*:*" + }, + { + "verseNum": 11, + "text": "\\+w This|strong=\"G3778\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Lord|strong=\"G2962\"\\+w*.*" + }, + { + "verseNum": 12, + "text": "They|strong=\"G2532\"* tried|strong=\"G2212\"* to|strong=\"G4314\"* seize|strong=\"G2902\"* him|strong=\"G3588\"*, but|strong=\"G2532\"* they|strong=\"G2532\"* feared|strong=\"G5399\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*; for|strong=\"G1063\"* they|strong=\"G2532\"* perceived|strong=\"G1097\"* that|strong=\"G3754\"* he|strong=\"G2532\"* spoke|strong=\"G3004\"* the|strong=\"G2532\"* parable|strong=\"G3850\"* against|strong=\"G4314\"* them|strong=\"G3588\"*. They|strong=\"G2532\"* left him|strong=\"G3588\"* and|strong=\"G2532\"* went|strong=\"G2532\"* away." + }, + { + "verseNum": 13, + "text": "They|strong=\"G2532\"* sent|strong=\"G2532\"* some|strong=\"G5100\"* of|strong=\"G3056\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Herodians|strong=\"G2265\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* trap him|strong=\"G3588\"* with|strong=\"G4314\"* words|strong=\"G3056\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G2064\"*, they|strong=\"G2532\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, we|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G4771\"* are|strong=\"G1510\"* honest, and|strong=\"G2532\"* don’t|strong=\"G3588\"* defer|strong=\"G3199\"* to|strong=\"G1519\"* anyone|strong=\"G3762\"*; for|strong=\"G1063\"* you|strong=\"G4771\"* aren’t|strong=\"G3588\"* partial to|strong=\"G1519\"* anyone|strong=\"G3762\"*, but|strong=\"G2532\"* truly|strong=\"G1909\"* teach|strong=\"G1321\"* the|strong=\"G2532\"* way|strong=\"G3598\"* of|strong=\"G4012\"* God|strong=\"G2316\"*. Is|strong=\"G1510\"* it|strong=\"G2532\"* lawful|strong=\"G1832\"* to|strong=\"G1519\"* pay|strong=\"G1325\"* taxes|strong=\"G2778\"* to|strong=\"G1519\"* Caesar|strong=\"G2541\"*, or|strong=\"G2228\"* not|strong=\"G3756\"*?" + }, + { + "verseNum": 15, + "text": "Shall|strong=\"G5101\"* we|strong=\"G1161\"* give|strong=\"G3004\"*, or|strong=\"G1161\"* shall|strong=\"G5101\"* we|strong=\"G1161\"* not|strong=\"G3708\"* give|strong=\"G3004\"*?”" + }, + { + "verseNum": 16, + "text": "They|strong=\"G2532\"* brought|strong=\"G5342\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 17, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Give|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w Caesar|strong=\"G2541\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w Caesar|strong=\"G2541\"\\+w*’s, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s.”*" + }, + { + "verseNum": 18, + "text": "Some|strong=\"G3748\"* Sadducees|strong=\"G4523\"*, who|strong=\"G3748\"* say|strong=\"G3004\"* that|strong=\"G2532\"* there|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3361\"* resurrection, came|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G1905\"*. They|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G1905\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 19, + "text": "“Teacher|strong=\"G1320\"*, Moses|strong=\"G3475\"* wrote|strong=\"G1125\"* to|strong=\"G2443\"* us|strong=\"G2249\"*, ‘If|strong=\"G1437\"* a|strong=\"G2532\"* man|strong=\"G5100\"*’s brother dies and|strong=\"G2532\"* leaves|strong=\"G2641\"* a|strong=\"G2532\"* wife|strong=\"G1135\"* behind|strong=\"G2641\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* leaves|strong=\"G2641\"* no|strong=\"G3361\"* children|strong=\"G5043\"*, that|strong=\"G3754\"* his|strong=\"G2983\"* brother should|strong=\"G5100\"* take|strong=\"G2983\"* his|strong=\"G2983\"* wife|strong=\"G1135\"* and|strong=\"G2532\"* raise|strong=\"G2532\"* up|strong=\"G1817\"* offspring for|strong=\"G3754\"* his|strong=\"G2983\"* brother.’" + }, + { + "verseNum": 20, + "text": "There|strong=\"G2532\"* were|strong=\"G1510\"* seven|strong=\"G2033\"* brothers. The|strong=\"G2532\"* first|strong=\"G4413\"* took|strong=\"G2983\"* a|strong=\"G2532\"* wife|strong=\"G1135\"*, and|strong=\"G2532\"* dying left no|strong=\"G3756\"* offspring." + }, + { + "verseNum": 21, + "text": "The|strong=\"G2532\"* second|strong=\"G1208\"* took|strong=\"G2983\"* her|strong=\"G1438\"*, and|strong=\"G2532\"* died|strong=\"G3588\"*, leaving|strong=\"G2641\"* no|strong=\"G3361\"* children|strong=\"G4690\"* behind|strong=\"G2641\"* him|strong=\"G3588\"*. The|strong=\"G2532\"* third|strong=\"G5154\"* likewise|strong=\"G5615\"*;" + }, + { + "verseNum": 22, + "text": "and|strong=\"G2532\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* took|strong=\"G2532\"* her|strong=\"G3956\"* and|strong=\"G2532\"* left no|strong=\"G3756\"* children|strong=\"G4690\"*. Last|strong=\"G2078\"* of|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* also|strong=\"G2532\"* died|strong=\"G3588\"*." + }, + { + "verseNum": 23, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* resurrection, when|strong=\"G3752\"* they|strong=\"G3588\"* rise, whose|strong=\"G5101\"* wife|strong=\"G1135\"* will|strong=\"G5101\"* she|strong=\"G1063\"* be|strong=\"G1510\"* of|strong=\"G1722\"* them|strong=\"G3588\"*? For|strong=\"G1063\"* the|strong=\"G1722\"* seven|strong=\"G2033\"* had|strong=\"G2192\"* her|strong=\"G1438\"* as|strong=\"G1722\"* a|strong=\"G2192\"* wife|strong=\"G1135\"*.”" + }, + { + "verseNum": 24, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G5346\"* them|strong=\"G3588\"*, “Isn’\\+w t|strong=\"G3588\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w you|strong=\"G3778\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w mistaken|strong=\"G4105\"\\+w*, \\+w not|strong=\"G3756\"\\+w* \\+w knowing|strong=\"G1492\"\\+w* \\+w the|strong=\"G1223\"\\+w* \\+w Scriptures|strong=\"G1124\"\\+w* \\+w nor|strong=\"G3366\"\\+w* \\+w the|strong=\"G1223\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w God|strong=\"G2316\"\\+w*? *" + }, + { + "verseNum": 25, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w will|strong=\"G1510\"\\+w* rise \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w dead|strong=\"G3498\"\\+w*, \\+w they|strong=\"G3588\"\\+w* \\+w neither|strong=\"G3777\"\\+w* \\+w marry|strong=\"G1060\"\\+w* \\+w nor|strong=\"G3777\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w given|strong=\"G1061\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w marriage|strong=\"G1061\"\\+w*, \\+w but|strong=\"G1063\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w like|strong=\"G5613\"\\+w* angels \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w dead|strong=\"G3498\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w raised|strong=\"G1453\"\\+w*, haven’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3754\"\\+w* read \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w book|strong=\"G3588\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w the|strong=\"G1722\"\\+w* Bush, \\+w how|strong=\"G4459\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w spoke|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G4012\"\\+w* Abraham, \\+w the|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w Isaac|strong=\"G2464\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w Jacob|strong=\"G2384\"\\+w*’?*+ 12:26 Exodus 3:6*" + }, + { + "verseNum": 27, + "text": "\\+w He|strong=\"G1510\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w the|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G2316\"\\+w* \\+w dead|strong=\"G3498\"\\+w*, \\+w but|strong=\"G2316\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G2316\"\\+w* \\+w living|strong=\"G2198\"\\+w*. \\+w You|strong=\"G1510\"\\+w* \\+w are|strong=\"G1510\"\\+w* therefore \\+w badly|strong=\"G4183\"\\+w* \\+w mistaken|strong=\"G4105\"\\+w*.”*" + }, + { + "verseNum": 28, + "text": "One|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* came|strong=\"G4334\"* and|strong=\"G2532\"* heard them|strong=\"G3588\"* questioning|strong=\"G1905\"* together|strong=\"G4802\"*, and|strong=\"G2532\"* knowing that|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2532\"* answered them|strong=\"G3588\"* well|strong=\"G2573\"*, asked|strong=\"G1905\"* him|strong=\"G3588\"*, “Which|strong=\"G3588\"* commandment|strong=\"G1785\"* is|strong=\"G1510\"* the|strong=\"G2532\"* greatest of|strong=\"G2532\"* all|strong=\"G3956\"*?”" + }, + { + "verseNum": 29, + "text": "Jesus|strong=\"G2424\"* answered, “\\+w The|strong=\"G3588\"\\+w* greatest \\+w is|strong=\"G1510\"\\+w*: ‘Hear, \\+w Israel|strong=\"G2474\"\\+w*, \\+w the|strong=\"G3588\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w our|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w the|strong=\"G3588\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w one|strong=\"G1520\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* love \\+w the|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w with|strong=\"G1537\"\\+w* \\+w all|strong=\"G3650\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, \\+w with|strong=\"G1537\"\\+w* \\+w all|strong=\"G3650\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w soul|strong=\"G5590\"\\+w*, \\+w with|strong=\"G1537\"\\+w* \\+w all|strong=\"G3650\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w mind|strong=\"G1271\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w with|strong=\"G1537\"\\+w* \\+w all|strong=\"G3650\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w strength|strong=\"G2479\"\\+w*.’*+ 12:30 Deuteronomy 6:4-5* \\+w This|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G3588\"\\+w* commandment. *" + }, + { + "verseNum": 31, + "text": "\\+w The|strong=\"G3588\"\\+w* \\+w second|strong=\"G1208\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w this|strong=\"G3778\"\\+w*: ‘\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G3778\"\\+w* love \\+w your|strong=\"G3588\"\\+w* \\+w neighbor|strong=\"G4139\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w yourself|strong=\"G4572\"\\+w*.’*+ 12:31 Leviticus 19:18* \\+w There|strong=\"G1510\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w other|strong=\"G3588\"\\+w* \\+w commandment|strong=\"G1785\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w these|strong=\"G3778\"\\+w*.”*" + }, + { + "verseNum": 32, + "text": "The|strong=\"G2532\"* scribe|strong=\"G1122\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Truly|strong=\"G1909\"*, teacher|strong=\"G1320\"*, you|strong=\"G3754\"* have|strong=\"G2532\"* said|strong=\"G3004\"* well|strong=\"G2573\"* that|strong=\"G3754\"* he|strong=\"G2532\"* is|strong=\"G1510\"* one|strong=\"G1520\"*, and|strong=\"G2532\"* there|strong=\"G2532\"* is|strong=\"G1510\"* none|strong=\"G3756\"* other|strong=\"G1520\"* but|strong=\"G2532\"* he|strong=\"G2532\"*;" + }, + { + "verseNum": 33, + "text": "and|strong=\"G2532\"* to|strong=\"G2532\"* love him|strong=\"G3588\"* with|strong=\"G1537\"* all|strong=\"G3956\"* the|strong=\"G2532\"* heart|strong=\"G2588\"*, with|strong=\"G1537\"* all|strong=\"G3956\"* the|strong=\"G2532\"* understanding|strong=\"G4907\"*, all|strong=\"G3956\"* the|strong=\"G2532\"* soul, and|strong=\"G2532\"* with|strong=\"G1537\"* all|strong=\"G3956\"* the|strong=\"G2532\"* strength|strong=\"G2479\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* love his|strong=\"G1438\"* neighbor|strong=\"G4139\"* as|strong=\"G5613\"* himself|strong=\"G1438\"*, is|strong=\"G1510\"* more|strong=\"G2532\"* important than|strong=\"G2532\"* all|strong=\"G3956\"* whole|strong=\"G3650\"* burnt|strong=\"G3646\"* offerings|strong=\"G3646\"* and|strong=\"G2532\"* sacrifices|strong=\"G2378\"*.”" + }, + { + "verseNum": 34, + "text": "When|strong=\"G2532\"* Jesus|strong=\"G2424\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* he|strong=\"G2532\"* answered|strong=\"G3004\"* wisely, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w You|strong=\"G3754\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w far|strong=\"G3112\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom.”*" + }, + { + "verseNum": 35, + "text": "Jesus|strong=\"G2424\"* responded|strong=\"G3004\"*, as|strong=\"G1722\"* he|strong=\"G2532\"* taught|strong=\"G1321\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2411\"*, “\\+w How|strong=\"G4459\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w scribes|strong=\"G1122\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Christ|strong=\"G5547\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w David|strong=\"G1138\"\\+w*? *" + }, + { + "verseNum": 36, + "text": "\\+w For|strong=\"G1722\"\\+w* \\+w David|strong=\"G1138\"\\+w* himself \\+w said|strong=\"G3004\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w*,*" + }, + { + "verseNum": 37, + "text": "\\+w Therefore|strong=\"G2532\"\\+w* \\+w David|strong=\"G1138\"\\+w* himself \\+w calls|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w Lord|strong=\"G2962\"\\+w*, \\+w so|strong=\"G2532\"\\+w* \\+w how|strong=\"G4159\"\\+w* \\+w can|strong=\"G3004\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w*?” *" + }, + { + "verseNum": 38, + "text": "In|strong=\"G1722\"* his|strong=\"G1722\"* teaching|strong=\"G1322\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Beware \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w scribes|strong=\"G1122\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w like|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w walk|strong=\"G4043\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w long|strong=\"G4749\"\\+w* \\+w robes|strong=\"G4749\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w get|strong=\"G2532\"\\+w* greetings \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* marketplaces, *" + }, + { + "verseNum": 39, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w get|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* best \\+w seats|strong=\"G4410\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* best \\+w places|strong=\"G4411\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w feasts|strong=\"G1173\"\\+w*, *" + }, + { + "verseNum": 40, + "text": "\\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w devour|strong=\"G2719\"\\+w* \\+w widows|strong=\"G5503\"\\+w*’ \\+w houses|strong=\"G3614\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w pretense|strong=\"G4392\"\\+w* \\+w make|strong=\"G4336\"\\+w* \\+w long|strong=\"G3117\"\\+w* \\+w prayers|strong=\"G4336\"\\+w*. \\+w These|strong=\"G3778\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w receive|strong=\"G2983\"\\+w* greater \\+w condemnation|strong=\"G2917\"\\+w*.”*" + }, + { + "verseNum": 41, + "text": "Jesus|strong=\"G2532\"* sat|strong=\"G2523\"* down|strong=\"G2523\"* opposite|strong=\"G2713\"* the|strong=\"G2532\"* treasury|strong=\"G1049\"* and|strong=\"G2532\"* saw|strong=\"G2334\"* how|strong=\"G4459\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* cast|strong=\"G2532\"* money|strong=\"G5475\"* into|strong=\"G1519\"* the|strong=\"G2532\"* treasury|strong=\"G1049\"*. Many|strong=\"G4183\"* who|strong=\"G3588\"* were|strong=\"G3588\"* rich|strong=\"G4145\"* cast|strong=\"G2532\"* in|strong=\"G1519\"* much|strong=\"G4183\"*." + }, + { + "verseNum": 42, + "text": "A|strong=\"G2532\"* poor|strong=\"G4434\"* widow|strong=\"G5503\"* came|strong=\"G2064\"* and|strong=\"G2532\"* she|strong=\"G2532\"* cast|strong=\"G2532\"* in|strong=\"G2532\"* two|strong=\"G1417\"* small|strong=\"G3016\"* brass coins|strong=\"G3016\"*,+ 12:42 literally, lepta (or widow’s mites). Lepta are very small brass coins worth half a quadrans each, which is a quarter of the copper assarion. Lepta are worth less than 1% of an agricultural worker’s daily wages.* which|strong=\"G3739\"* equal a|strong=\"G2532\"* quadrans coin.+ 12:42 A quadrans is a coin worth about 1/64 of a denarius. A denarius is about one day’s wages for an agricultural laborer.*" + }, + { + "verseNum": 43, + "text": "He|strong=\"G2532\"* called|strong=\"G3004\"* his|strong=\"G3956\"* disciples|strong=\"G3101\"* to|strong=\"G1519\"* himself|strong=\"G1519\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Most|strong=\"G4183\"\\+w* \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w this|strong=\"G3778\"\\+w* \\+w poor|strong=\"G4434\"\\+w* \\+w widow|strong=\"G5503\"\\+w* \\+w gave|strong=\"G2532\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* giving \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w treasury|strong=\"G1049\"\\+w*, *" + }, + { + "verseNum": 44, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w gave|strong=\"G3956\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w their|strong=\"G3956\"\\+w* \\+w abundance|strong=\"G4052\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w she|strong=\"G1161\"\\+w*, \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w her|strong=\"G3956\"\\+w* \\+w poverty|strong=\"G5304\"\\+w*, \\+w gave|strong=\"G3956\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w she|strong=\"G1161\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w to|strong=\"G1161\"\\+w* \\+w live|strong=\"G2192\"\\+w* \\+w on|strong=\"G1537\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "As|strong=\"G2532\"* he|strong=\"G2532\"* went|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* temple|strong=\"G2411\"*, one|strong=\"G1520\"* of|strong=\"G1537\"* his|strong=\"G3708\"* disciples|strong=\"G3101\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, see|strong=\"G3708\"* what|strong=\"G3588\"* kind|strong=\"G4217\"* of|strong=\"G1537\"* stones|strong=\"G3037\"* and|strong=\"G2532\"* what|strong=\"G3588\"* kind|strong=\"G4217\"* of|strong=\"G1537\"* buildings|strong=\"G3619\"*!”" + }, + { + "verseNum": 2, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Do|strong=\"G2532\"\\+w* \\+w you|strong=\"G3739\"\\+w* see \\+w these|strong=\"G3778\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w buildings|strong=\"G3619\"\\+w*? \\+w There|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G2532\"\\+w* left \\+w here|strong=\"G5602\"\\+w* \\+w one|strong=\"G3739\"\\+w* \\+w stone|strong=\"G3037\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w another|strong=\"G3037\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G2532\"\\+w* thrown \\+w down|strong=\"G2647\"\\+w*.”*" + }, + { + "verseNum": 3, + "text": "As|strong=\"G1519\"* he|strong=\"G2532\"* sat|strong=\"G2521\"* on|strong=\"G1519\"* the|strong=\"G2532\"* Mount|strong=\"G3735\"* of|strong=\"G2532\"* Olives|strong=\"G1636\"* opposite|strong=\"G2713\"* the|strong=\"G2532\"* temple|strong=\"G2411\"*, Peter|strong=\"G4074\"*, James|strong=\"G2385\"*, John|strong=\"G2491\"*, and|strong=\"G2532\"* Andrew asked|strong=\"G1905\"* him|strong=\"G3588\"* privately|strong=\"G2398\"*," + }, + { + "verseNum": 4, + "text": "“Tell|strong=\"G3004\"* us|strong=\"G3004\"*, when|strong=\"G3752\"* will|strong=\"G5101\"* these|strong=\"G3778\"* things|strong=\"G3956\"* be|strong=\"G1510\"*? What|strong=\"G5101\"* is|strong=\"G1510\"* the|strong=\"G2532\"* sign|strong=\"G4592\"* that|strong=\"G3588\"* these|strong=\"G3778\"* things|strong=\"G3956\"* are|strong=\"G1510\"* all|strong=\"G3956\"* about|strong=\"G3195\"* to|strong=\"G2532\"* be|strong=\"G1510\"* fulfilled|strong=\"G4931\"*?”" + }, + { + "verseNum": 5, + "text": "Jesus|strong=\"G2424\"*, answering|strong=\"G3361\"*, began|strong=\"G1161\"* to|strong=\"G3004\"* tell|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Be|strong=\"G3361\"\\+w* careful \\+w that|strong=\"G3588\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w one|strong=\"G5100\"\\+w* \\+w leads|strong=\"G4105\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w astray|strong=\"G4105\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w For|strong=\"G3754\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w*!’*+ 13:6 or, “I AM!”* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w lead|strong=\"G1510\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w astray|strong=\"G4105\"\\+w*.*" + }, + { + "verseNum": 7, + "text": "“\\+w When|strong=\"G3752\"\\+w* \\+w you|strong=\"G3752\"\\+w* hear \\+w of|strong=\"G2532\"\\+w* \\+w wars|strong=\"G4171\"\\+w* \\+w and|strong=\"G2532\"\\+w* rumors \\+w of|strong=\"G2532\"\\+w* \\+w wars|strong=\"G4171\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w troubled|strong=\"G2360\"\\+w*. \\+w For|strong=\"G1161\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w happen|strong=\"G1096\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w end|strong=\"G5056\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w yet|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w nation|strong=\"G1484\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w rise|strong=\"G1453\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w nation|strong=\"G1484\"\\+w*, \\+w and|strong=\"G2532\"\\+w* kingdom \\+w against|strong=\"G2596\"\\+w* kingdom. \\+w There|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w earthquakes|strong=\"G4578\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w various|strong=\"G2596\"\\+w* \\+w places|strong=\"G5117\"\\+w*. \\+w There|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w famines|strong=\"G3042\"\\+w* \\+w and|strong=\"G2532\"\\+w* troubles. \\+w These|strong=\"G2532\"\\+w* things \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* beginning \\+w of|strong=\"G2532\"\\+w* \\+w birth|strong=\"G5604\"\\+w* \\+w pains|strong=\"G5604\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "“\\+w But|strong=\"G1161\"\\+w* watch \\+w yourselves|strong=\"G1438\"\\+w*, \\+w for|strong=\"G1519\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w councils|strong=\"G4892\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w beaten|strong=\"G1194\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w stand|strong=\"G2476\"\\+w* \\+w before|strong=\"G1909\"\\+w* \\+w rulers|strong=\"G2232\"\\+w* \\+w and|strong=\"G2532\"\\+w* kings \\+w for|strong=\"G1519\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w sake|strong=\"G1752\"\\+w*, \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w testimony|strong=\"G3142\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G1438\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w Good|strong=\"G3956\"\\+w* \\+w News|strong=\"G2098\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w preached|strong=\"G2784\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w When|strong=\"G3752\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w lead|strong=\"G1510\"\\+w* \\+w you|strong=\"G5210\"\\+w* away \\+w and|strong=\"G2532\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w up|strong=\"G3860\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* anxious \\+w beforehand|strong=\"G4305\"\\+w* \\+w or|strong=\"G2532\"\\+w* premeditate \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w say|strong=\"G2980\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w say|strong=\"G2980\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w hour|strong=\"G5610\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w speak|strong=\"G2980\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w*.*" + }, + { + "verseNum": 12, + "text": "“Brother \\+w will|strong=\"G2532\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w up|strong=\"G3860\"\\+w* brother \\+w to|strong=\"G1519\"\\+w* \\+w death|strong=\"G2288\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w child|strong=\"G5043\"\\+w*. \\+w Children|strong=\"G5043\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rise|strong=\"G1881\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w parents|strong=\"G1118\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w cause|strong=\"G2289\"\\+w* \\+w them|strong=\"G1438\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w put|strong=\"G2289\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w death|strong=\"G2288\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w You|strong=\"G1510\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w hated|strong=\"G3404\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w men|strong=\"G3956\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w name|strong=\"G3686\"\\+w*’s \\+w sake|strong=\"G1223\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w endures|strong=\"G5278\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w end|strong=\"G5056\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w saved|strong=\"G4982\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G3752\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G1722\"\\+w* abomination \\+w of|strong=\"G1722\"\\+w* \\+w desolation|strong=\"G2050\"\\+w*,*+ 13:14 Daniel 9:17; 11:31; 12:11* spoken \\+w of|strong=\"G1722\"\\+w* \\+w by|strong=\"G1722\"\\+w* Daniel \\+w the|strong=\"G1722\"\\+w* prophet, \\+w standing|strong=\"G2476\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w ought|strong=\"G1163\"\\+w* \\+w not|strong=\"G3756\"\\+w*”* (let|strong=\"G1161\"* the|strong=\"G1722\"* reader understand|strong=\"G3539\"*), “\\+w then|strong=\"G5119\"\\+w* \\+w let|strong=\"G1161\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Judea|strong=\"G2449\"\\+w* \\+w flee|strong=\"G5343\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w mountains|strong=\"G3735\"\\+w*, *" + }, + { + "verseNum": 15, + "text": "\\+w and|strong=\"G1161\"\\+w* \\+w let|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w housetop|strong=\"G1430\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w go|strong=\"G1525\"\\+w* \\+w down|strong=\"G2597\"\\+w*, \\+w nor|strong=\"G3366\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w in|strong=\"G1909\"\\+w*, \\+w to|strong=\"G1909\"\\+w* \\+w take|strong=\"G1161\"\\+w* \\+w anything|strong=\"G5100\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w his|strong=\"G1909\"\\+w* \\+w house|strong=\"G3614\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w Let|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* field \\+w not|strong=\"G3361\"\\+w* \\+w return|strong=\"G1994\"\\+w* \\+w back|strong=\"G3694\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w take|strong=\"G2532\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w cloak|strong=\"G2440\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w child|strong=\"G1064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* nurse \\+w babies|strong=\"G2337\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w days|strong=\"G2250\"\\+w*! *" + }, + { + "verseNum": 18, + "text": "\\+w Pray|strong=\"G4336\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w your|strong=\"G1096\"\\+w* flight won’t \\+w be|strong=\"G1096\"\\+w* \\+w in|strong=\"G1096\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w winter|strong=\"G5494\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w be|strong=\"G1096\"\\+w* oppression, \\+w such|strong=\"G5108\"\\+w* \\+w as|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w like|strong=\"G5108\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* beginning \\+w of|strong=\"G2250\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w creation|strong=\"G2937\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w created|strong=\"G2936\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w now|strong=\"G3568\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w never|strong=\"G3756\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w be|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w Unless|strong=\"G1487\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w shortened|strong=\"G2856\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w days|strong=\"G2250\"\\+w*, \\+w no|strong=\"G3756\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w saved|strong=\"G4982\"\\+w*; \\+w but|strong=\"G2532\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sake|strong=\"G1223\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w chosen|strong=\"G1588\"\\+w* ones, \\+w whom|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* picked \\+w out|strong=\"G2532\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w shortened|strong=\"G2856\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w days|strong=\"G2250\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* tells \\+w you|strong=\"G5210\"\\+w*, ‘\\+w Look|strong=\"G3708\"\\+w*, \\+w here|strong=\"G5602\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Christ|strong=\"G5547\"\\+w*!’ \\+w or|strong=\"G2532\"\\+w*, ‘\\+w Look|strong=\"G3708\"\\+w*, \\+w there|strong=\"G1563\"\\+w*!’ don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w false|strong=\"G5578\"\\+w* \\+w christs|strong=\"G5580\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w false|strong=\"G5578\"\\+w* \\+w prophets|strong=\"G5578\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w arise|strong=\"G1453\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w show|strong=\"G4160\"\\+w* \\+w signs|strong=\"G4592\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w wonders|strong=\"G5059\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w lead|strong=\"G2532\"\\+w* astray, \\+w if|strong=\"G1487\"\\+w* \\+w possible|strong=\"G1415\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w chosen|strong=\"G1588\"\\+w* ones. *" + }, + { + "verseNum": 23, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* watch.*" + }, + { + "verseNum": 24, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w days|strong=\"G2250\"\\+w*, \\+w after|strong=\"G3326\"\\+w* \\+w that|strong=\"G3588\"\\+w* oppression, \\+w the|strong=\"G1722\"\\+w* \\+w sun|strong=\"G2246\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w darkened|strong=\"G4654\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w moon|strong=\"G4582\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w its|strong=\"G1325\"\\+w* \\+w light|strong=\"G5338\"\\+w*, *" + }, + { + "verseNum": 25, + "text": "\\+w the|strong=\"G1722\"\\+w* stars \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w falling|strong=\"G4098\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sky|strong=\"G3772\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w powers|strong=\"G1411\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w heavens|strong=\"G3772\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w shaken|strong=\"G4531\"\\+w*.*+ 13:25 Isaiah 13:10; 34:4*" + }, + { + "verseNum": 26, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w clouds|strong=\"G3507\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w great|strong=\"G4183\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w glory|strong=\"G1391\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* send \\+w out|strong=\"G1537\"\\+w* \\+w his|strong=\"G2532\"\\+w* angels, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w gather|strong=\"G1996\"\\+w* \\+w together|strong=\"G1996\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w chosen|strong=\"G1588\"\\+w* ones \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w four|strong=\"G5064\"\\+w* winds, \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* ends \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* ends \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w*.*" + }, + { + "verseNum": 28, + "text": "“\\+w Now|strong=\"G1161\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fig|strong=\"G4808\"\\+w* \\+w tree|strong=\"G4808\"\\+w*, \\+w learn|strong=\"G3129\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w parable|strong=\"G3850\"\\+w*. \\+w When|strong=\"G3752\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w branch|strong=\"G2798\"\\+w* \\+w has|strong=\"G1096\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w become|strong=\"G1096\"\\+w* tender \\+w and|strong=\"G2532\"\\+w* produces \\+w its|strong=\"G1631\"\\+w* \\+w leaves|strong=\"G5444\"\\+w*, \\+w you|strong=\"G3752\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w summer|strong=\"G2330\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w near|strong=\"G1451\"\\+w*; *" + }, + { + "verseNum": 29, + "text": "\\+w even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w coming|strong=\"G1096\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w pass|strong=\"G1096\"\\+w*, \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w near|strong=\"G1451\"\\+w*, \\+w at|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w doors|strong=\"G2374\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "Most \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w**+ 13:30 The word translated “generation” (genea) could also be translated “race”, “family”, or “people”.* \\+w will|strong=\"G3739\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w pass|strong=\"G1096\"\\+w* \\+w away|strong=\"G3928\"\\+w* \\+w until|strong=\"G3360\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w happen|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w Heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w pass|strong=\"G3928\"\\+w* \\+w away|strong=\"G3928\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w pass|strong=\"G3928\"\\+w* \\+w away|strong=\"G3928\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w knows|strong=\"G1492\"\\+w*—\\+w not|strong=\"G3361\"\\+w* \\+w even|strong=\"G3761\"\\+w* \\+w the|strong=\"G1722\"\\+w* angels \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w nor|strong=\"G3761\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w only|strong=\"G1487\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "Watch, keep alert, \\+w and|strong=\"G3588\"\\+w* pray; \\+w for|strong=\"G1063\"\\+w* \\+w you|strong=\"G1510\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w when|strong=\"G1492\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w time|strong=\"G2540\"\\+w* \\+w is|strong=\"G1510\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "“\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w man|strong=\"G1538\"\\+w* traveling \\+w to|strong=\"G2443\"\\+w* \\+w another|strong=\"G3588\"\\+w* country, \\+w having|strong=\"G2532\"\\+w* left \\+w his|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w servants|strong=\"G1401\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w each|strong=\"G1538\"\\+w* \\+w one|strong=\"G1538\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w work|strong=\"G2041\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w commanded|strong=\"G1781\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w doorkeeper|strong=\"G2377\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w keep|strong=\"G1127\"\\+w* \\+w watch|strong=\"G1127\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w Watch|strong=\"G1127\"\\+w* \\+w therefore|strong=\"G3767\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w you|strong=\"G3767\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w when|strong=\"G1492\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2962\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w*—\\+w whether|strong=\"G2228\"\\+w* \\+w at|strong=\"G3756\"\\+w* \\+w evening|strong=\"G3796\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w at|strong=\"G3756\"\\+w* \\+w midnight|strong=\"G3317\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w when|strong=\"G1492\"\\+w* \\+w the|strong=\"G3588\"\\+w* rooster crows, \\+w or|strong=\"G2228\"\\+w* \\+w in|strong=\"G3756\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w morning|strong=\"G4404\"\\+w*; *" + }, + { + "verseNum": 36, + "text": "\\+w lest|strong=\"G3361\"\\+w*, \\+w coming|strong=\"G2064\"\\+w* \\+w suddenly|strong=\"G1810\"\\+w*, \\+w he|strong=\"G2064\"\\+w* \\+w might|strong=\"G5210\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w sleeping|strong=\"G2518\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w What|strong=\"G3739\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w all|strong=\"G3956\"\\+w*: \\+w Watch|strong=\"G1127\"\\+w*!”*" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "It|strong=\"G2532\"* was|strong=\"G1510\"* now|strong=\"G1161\"* two|strong=\"G1417\"* days|strong=\"G2250\"* before|strong=\"G1722\"* the|strong=\"G1722\"* Passover|strong=\"G3957\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Feast of|strong=\"G2250\"* Unleavened Bread, and|strong=\"G2532\"* the|strong=\"G1722\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G1722\"* scribes|strong=\"G1122\"* sought|strong=\"G2212\"* how|strong=\"G4459\"* they|strong=\"G2532\"* might|strong=\"G2532\"* seize|strong=\"G2902\"* him|strong=\"G3588\"* by|strong=\"G1722\"* deception and|strong=\"G2532\"* kill him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* they|strong=\"G3588\"* said|strong=\"G3004\"*, “Not|strong=\"G3361\"* during|strong=\"G1722\"* the|strong=\"G1722\"* feast|strong=\"G1859\"*, because|strong=\"G1063\"* there|strong=\"G1063\"* might|strong=\"G2351\"* be|strong=\"G1510\"* a|strong=\"G1722\"* riot|strong=\"G2351\"* among|strong=\"G1722\"* the|strong=\"G1722\"* people|strong=\"G2992\"*.”" + }, + { + "verseNum": 3, + "text": "While|strong=\"G1722\"* he|strong=\"G2532\"* was|strong=\"G1510\"* at|strong=\"G1722\"* Bethany, in|strong=\"G1722\"* the|strong=\"G1722\"* house|strong=\"G3614\"* of|strong=\"G2532\"* Simon|strong=\"G4613\"* the|strong=\"G1722\"* leper|strong=\"G3015\"*, as|strong=\"G1722\"* he|strong=\"G2532\"* sat|strong=\"G2532\"* at|strong=\"G1722\"* the|strong=\"G1722\"* table, a|strong=\"G2192\"* woman|strong=\"G1135\"* came|strong=\"G2064\"* having|strong=\"G2192\"* an|strong=\"G2192\"* alabaster jar of|strong=\"G2532\"* ointment|strong=\"G3464\"* of|strong=\"G2532\"* pure|strong=\"G4101\"* nard|strong=\"G3487\"*—very|strong=\"G2532\"* costly|strong=\"G4185\"*. She|strong=\"G2532\"* broke|strong=\"G4937\"* the|strong=\"G1722\"* jar and|strong=\"G2532\"* poured|strong=\"G2532\"* it|strong=\"G2532\"* over|strong=\"G1722\"* his|strong=\"G1722\"* head|strong=\"G2776\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* there|strong=\"G1161\"* were|strong=\"G1510\"* some|strong=\"G5100\"* who|strong=\"G5101\"* were|strong=\"G1510\"* indignant among|strong=\"G1519\"* themselves|strong=\"G1438\"*, saying, “Why|strong=\"G5101\"* has|strong=\"G5101\"* this|strong=\"G3778\"* ointment|strong=\"G3464\"* been|strong=\"G1510\"* wasted?" + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* might|strong=\"G1410\"* have|strong=\"G2532\"* been|strong=\"G2532\"* sold|strong=\"G4097\"* for|strong=\"G1063\"* more|strong=\"G2532\"* than|strong=\"G2532\"* three|strong=\"G5145\"* hundred|strong=\"G5145\"* denarii|strong=\"G1220\"*+ 14:5 300 denarii was about a year’s wages for an agricultural laborer. * and|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2532\"* the|strong=\"G2532\"* poor|strong=\"G4434\"*.” So|strong=\"G2532\"* they|strong=\"G2532\"* grumbled against|strong=\"G1690\"* her|strong=\"G1325\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “Leave \\+w her|strong=\"G1438\"\\+w* \\+w alone|strong=\"G1438\"\\+w*. \\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w trouble|strong=\"G2873\"\\+w* \\+w her|strong=\"G1438\"\\+w*? \\+w She|strong=\"G1161\"\\+w* \\+w has|strong=\"G5101\"\\+w* \\+w done|strong=\"G2038\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w work|strong=\"G2041\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w you|strong=\"G3752\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w poor|strong=\"G4434\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G3752\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w whenever|strong=\"G3752\"\\+w* \\+w you|strong=\"G3752\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w*, \\+w you|strong=\"G3752\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w good|strong=\"G2095\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G3752\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w She|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w she|strong=\"G3739\"\\+w* \\+w could|strong=\"G2192\"\\+w*. \\+w She|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w anointed|strong=\"G3462\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w beforehand|strong=\"G4301\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w burying|strong=\"G1780\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w wherever|strong=\"G3699\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w Good|strong=\"G3588\"\\+w* \\+w News|strong=\"G2098\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w preached|strong=\"G2784\"\\+w* \\+w throughout|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w that|strong=\"G3739\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w woman|strong=\"G3778\"\\+w* \\+w has|strong=\"G3739\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w spoken|strong=\"G2980\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w memorial|strong=\"G3422\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w her|strong=\"G1437\"\\+w*.”*" + }, + { + "verseNum": 10, + "text": "Judas|strong=\"G2455\"* Iscariot|strong=\"G2469\"*, who|strong=\"G3588\"* was|strong=\"G3588\"* one|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*, went|strong=\"G2532\"* away to|strong=\"G4314\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests, that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* deliver|strong=\"G3860\"* him|strong=\"G3588\"* to|strong=\"G4314\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"G2532\"*, when|strong=\"G1161\"* they|strong=\"G2532\"* heard it|strong=\"G2532\"*, were|strong=\"G3588\"* glad|strong=\"G5463\"*, and|strong=\"G2532\"* promised|strong=\"G1861\"* to|strong=\"G2532\"* give|strong=\"G1325\"* him|strong=\"G3588\"* money. He|strong=\"G2532\"* sought|strong=\"G2212\"* how|strong=\"G4459\"* he|strong=\"G2532\"* might|strong=\"G2532\"* conveniently|strong=\"G2122\"* deliver|strong=\"G3860\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "On|strong=\"G2443\"* the|strong=\"G2532\"* first|strong=\"G4413\"* day|strong=\"G2250\"* of|strong=\"G2250\"* unleavened bread, when|strong=\"G3753\"* they|strong=\"G2532\"* sacrificed|strong=\"G2380\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"*, his|strong=\"G2532\"* disciples|strong=\"G3101\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Where|strong=\"G4226\"* do|strong=\"G2532\"* you|strong=\"G3004\"* want|strong=\"G2309\"* us|strong=\"G3004\"* to|strong=\"G2443\"* go|strong=\"G2309\"* and|strong=\"G2532\"* prepare|strong=\"G2090\"* that|strong=\"G2443\"* you|strong=\"G3004\"* may|strong=\"G2532\"* eat|strong=\"G2068\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"*?”" + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* sent|strong=\"G2532\"* two|strong=\"G1417\"* of|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Go|strong=\"G5217\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w city|strong=\"G4172\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w man|strong=\"G1519\"\\+w* carrying \\+w a|strong=\"G2532\"\\+w* \\+w pitcher|strong=\"G2765\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w water|strong=\"G5204\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w meet|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w*. Follow \\+w him|strong=\"G3588\"\\+w*, *" + }, + { + "verseNum": 14, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w wherever|strong=\"G3699\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w enters|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w*, \\+w tell|strong=\"G3004\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w master|strong=\"G1320\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w house|strong=\"G3617\"\\+w*, ‘\\+w The|strong=\"G2532\"\\+w* \\+w Teacher|strong=\"G1320\"\\+w* \\+w says|strong=\"G3004\"\\+w*, “\\+w Where|strong=\"G3699\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w guest|strong=\"G2646\"\\+w* \\+w room|strong=\"G2646\"\\+w*, \\+w where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Passover|strong=\"G3957\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w my|strong=\"G1525\"\\+w* \\+w disciples|strong=\"G3101\"\\+w*?”’ *" + }, + { + "verseNum": 15, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* himself \\+w show|strong=\"G1166\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w large|strong=\"G3173\"\\+w* upper room \\+w furnished|strong=\"G4766\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w ready|strong=\"G2092\"\\+w*. \\+w Get|strong=\"G2090\"\\+w* \\+w ready|strong=\"G2092\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w us|strong=\"G2249\"\\+w* \\+w there|strong=\"G1563\"\\+w*.”*" + }, + { + "verseNum": 16, + "text": "His|strong=\"G1519\"* disciples|strong=\"G3101\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, and|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, and|strong=\"G2532\"* found|strong=\"G2147\"* things|strong=\"G3588\"* as|strong=\"G2531\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* prepared|strong=\"G2090\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"*." + }, + { + "verseNum": 17, + "text": "When|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G1096\"* evening|strong=\"G3798\"* he|strong=\"G2532\"* came|strong=\"G2064\"* with|strong=\"G3326\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*." + }, + { + "verseNum": 18, + "text": "As|strong=\"G2532\"* they|strong=\"G2532\"* sat|strong=\"G2532\"* and|strong=\"G2532\"* were|strong=\"G3588\"* eating|strong=\"G2068\"*, Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “\\+w Most|strong=\"G1537\"\\+w* \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w betray|strong=\"G3860\"\\+w* \\+w me|strong=\"G1473\"\\+w*—\\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w eats|strong=\"G2068\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 19, + "text": "They|strong=\"G2532\"* began to|strong=\"G2532\"* be|strong=\"G2532\"* sorrowful|strong=\"G3076\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* ask|strong=\"G3004\"* him|strong=\"G2532\"* one|strong=\"G1520\"* by|strong=\"G2596\"* one|strong=\"G1520\"*, “Surely|strong=\"G3385\"* not|strong=\"G3385\"* I|strong=\"G1473\"*?” And|strong=\"G2532\"* another|strong=\"G2596\"* said|strong=\"G3004\"*, “Surely|strong=\"G3385\"* not|strong=\"G3385\"* I|strong=\"G1473\"*?”" + }, + { + "verseNum": 20, + "text": "He|strong=\"G1161\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w It|strong=\"G1161\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1520\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w twelve|strong=\"G1427\"\\+w*, \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w dips|strong=\"G1686\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* dish. *" + }, + { + "verseNum": 21, + "text": "\\+w For|strong=\"G3754\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3739\"\\+w* \\+w goes|strong=\"G5217\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G3756\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w man|strong=\"G3739\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3739\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w betrayed|strong=\"G3860\"\\+w*! \\+w It|strong=\"G3754\"\\+w* \\+w would|strong=\"G3860\"\\+w* \\+w be|strong=\"G3756\"\\+w* \\+w better|strong=\"G2570\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w man|strong=\"G3739\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w had|strong=\"G3739\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w been|strong=\"G3756\"\\+w* \\+w born|strong=\"G1080\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "As|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G1510\"* eating|strong=\"G2068\"*, Jesus|strong=\"G3004\"* took|strong=\"G2983\"* bread, and|strong=\"G2532\"* when|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* blessed|strong=\"G2127\"* it|strong=\"G2532\"*, he|strong=\"G2532\"* broke|strong=\"G2806\"* it|strong=\"G2532\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Take|strong=\"G2983\"\\+w*, \\+w eat|strong=\"G2068\"\\+w*. \\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1325\"\\+w* \\+w body|strong=\"G4983\"\\+w*.”*" + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* cup|strong=\"G4221\"*, and|strong=\"G2532\"* when|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* given|strong=\"G1325\"* thanks|strong=\"G2168\"*, he|strong=\"G2532\"* gave|strong=\"G1325\"* to|strong=\"G2532\"* them|strong=\"G1325\"*. They|strong=\"G2532\"* all|strong=\"G3956\"* drank|strong=\"G4095\"* of|strong=\"G1537\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* blood \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* new \\+w covenant|strong=\"G1242\"\\+w*, \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w poured|strong=\"G1632\"\\+w* \\+w out|strong=\"G1632\"\\+w* \\+w for|strong=\"G5228\"\\+w* \\+w many|strong=\"G4183\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w Most|strong=\"G2316\"\\+w* \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G3754\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w more|strong=\"G3765\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w fruit|strong=\"G1081\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* vine \\+w until|strong=\"G2193\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w it|strong=\"G3754\"\\+w* anew \\+w in|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom.”*" + }, + { + "verseNum": 26, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* sung a|strong=\"G2532\"* hymn|strong=\"G5214\"*, they|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Mount|strong=\"G3735\"* of|strong=\"G2532\"* Olives|strong=\"G1636\"*." + }, + { + "verseNum": 27, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w All|strong=\"G3956\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w made|strong=\"G3956\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w stumble|strong=\"G4624\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w me|strong=\"G3004\"\\+w* tonight, \\+w for|strong=\"G3754\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w I|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w strike|strong=\"G3960\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w shepherd|strong=\"G4166\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w scattered|strong=\"G1287\"\\+w*.’*+ 14:27 Zechariah 13:7*" + }, + { + "verseNum": 28, + "text": "However, \\+w after|strong=\"G3326\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w raised|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w go|strong=\"G4254\"\\+w* \\+w before|strong=\"G4254\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w Galilee|strong=\"G1056\"\\+w*.” *" + }, + { + "verseNum": 29, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* said|strong=\"G5346\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Although|strong=\"G1161\"* all|strong=\"G3956\"* will|strong=\"G2532\"* be|strong=\"G2532\"* offended|strong=\"G4624\"*, yet|strong=\"G2532\"* I|strong=\"G1473\"* will|strong=\"G2532\"* not|strong=\"G3756\"*.”" + }, + { + "verseNum": 30, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w today|strong=\"G4594\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w night|strong=\"G3571\"\\+w*, \\+w before|strong=\"G4250\"\\+w* \\+w the|strong=\"G2532\"\\+w* rooster \\+w crows|strong=\"G5455\"\\+w* \\+w twice|strong=\"G1364\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w three|strong=\"G5151\"\\+w* \\+w times|strong=\"G5151\"\\+w*.” *" + }, + { + "verseNum": 31, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* spoke|strong=\"G2980\"* all|strong=\"G3956\"* the|strong=\"G2532\"* more|strong=\"G4057\"*, “If|strong=\"G1437\"* I|strong=\"G1473\"* must|strong=\"G1163\"* die|strong=\"G4880\"* with|strong=\"G2532\"* you|strong=\"G4771\"*, I|strong=\"G1473\"* will|strong=\"G2532\"* not|strong=\"G3756\"* deny|strong=\"G3588\"* you|strong=\"G4771\"*.” They|strong=\"G2532\"* all|strong=\"G3956\"* said|strong=\"G3004\"* the|strong=\"G2532\"* same|strong=\"G5615\"* thing|strong=\"G3956\"*." + }, + { + "verseNum": 32, + "text": "They|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* a|strong=\"G2532\"* place|strong=\"G5564\"* which|strong=\"G3739\"* was|strong=\"G3588\"* named|strong=\"G3686\"* Gethsemane|strong=\"G1068\"*. He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, “\\+w Sit|strong=\"G2523\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w while|strong=\"G2193\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w pray|strong=\"G4336\"\\+w*.”*" + }, + { + "verseNum": 33, + "text": "He|strong=\"G2532\"* took|strong=\"G3880\"* with|strong=\"G3326\"* him|strong=\"G3588\"* Peter|strong=\"G4074\"*, James|strong=\"G2385\"*, and|strong=\"G2532\"* John|strong=\"G2491\"*, and|strong=\"G2532\"* began to|strong=\"G2532\"* be|strong=\"G2532\"* greatly troubled and|strong=\"G2532\"* distressed|strong=\"G1568\"*." + }, + { + "verseNum": 34, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w My|strong=\"G1473\"\\+w* \\+w soul|strong=\"G5590\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w exceedingly|strong=\"G1510\"\\+w* \\+w sorrowful|strong=\"G4036\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w death|strong=\"G2288\"\\+w*. \\+w Stay|strong=\"G3306\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w watch|strong=\"G1127\"\\+w*.”*" + }, + { + "verseNum": 35, + "text": "He|strong=\"G2532\"* went|strong=\"G2532\"* forward|strong=\"G4281\"* a|strong=\"G2532\"* little|strong=\"G3398\"*, and|strong=\"G2532\"* fell|strong=\"G4098\"* on|strong=\"G1909\"* the|strong=\"G2532\"* ground|strong=\"G1093\"*, and|strong=\"G2532\"* prayed|strong=\"G4336\"* that|strong=\"G2443\"* if|strong=\"G1487\"* it|strong=\"G2532\"* were|strong=\"G1510\"* possible|strong=\"G1415\"*, the|strong=\"G2532\"* hour|strong=\"G5610\"* might|strong=\"G2532\"* pass|strong=\"G3928\"* away|strong=\"G3928\"* from|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 36, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “Abba,*+ 14:36 Abba is a Greek spelling for the Aramaic word for “Father” or “Daddy” used in a familiar, respectful, and loving way. * \\+w Father|strong=\"G3962\"\\+w*, \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w possible|strong=\"G1415\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*. \\+w Please|strong=\"G2309\"\\+w* \\+w remove|strong=\"G3911\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*. However, \\+w not|strong=\"G3756\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w desire|strong=\"G2309\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w desire|strong=\"G2309\"\\+w*.” *" + }, + { + "verseNum": 37, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* and|strong=\"G2532\"* found|strong=\"G2147\"* them|strong=\"G3588\"* sleeping|strong=\"G2518\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* Peter|strong=\"G4074\"*, “\\+w Simon|strong=\"G4613\"\\+w*, \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w sleeping|strong=\"G2518\"\\+w*? Couldn’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w watch|strong=\"G1127\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w hour|strong=\"G5610\"\\+w*? *" + }, + { + "verseNum": 38, + "text": "\\+w Watch|strong=\"G1127\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w pray|strong=\"G4336\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w enter|strong=\"G1519\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w temptation|strong=\"G3986\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w spirit|strong=\"G4151\"\\+w* \\+w indeed|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w willing|strong=\"G4289\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w is|strong=\"G3588\"\\+w* weak.”*" + }, + { + "verseNum": 39, + "text": "Again|strong=\"G3825\"* he|strong=\"G2532\"* went|strong=\"G2532\"* away and|strong=\"G2532\"* prayed|strong=\"G4336\"*, saying|strong=\"G3004\"* the|strong=\"G2532\"* same|strong=\"G2532\"* words|strong=\"G3056\"*." + }, + { + "verseNum": 40, + "text": "Again|strong=\"G3825\"* he|strong=\"G2532\"* returned|strong=\"G5290\"* and|strong=\"G2532\"* found|strong=\"G2147\"* them|strong=\"G3588\"* sleeping|strong=\"G2518\"*, for|strong=\"G1063\"* their|strong=\"G1438\"* eyes|strong=\"G3788\"* were|strong=\"G1510\"* very|strong=\"G2532\"* heavy|strong=\"G2599\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"* what|strong=\"G5101\"* to|strong=\"G2532\"* answer him|strong=\"G3588\"*." + }, + { + "verseNum": 41, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* the|strong=\"G2532\"* third|strong=\"G5154\"* time|strong=\"G5610\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Sleep|strong=\"G2518\"\\+w* \\+w on|strong=\"G1519\"\\+w* \\+w now|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w take|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* rest. \\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* enough. \\+w The|strong=\"G2532\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w has|strong=\"G5610\"\\+w* \\+w come|strong=\"G2064\"\\+w*. \\+w Behold|strong=\"G2400\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1519\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w betrayed|strong=\"G3860\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w of|strong=\"G5207\"\\+w* sinners. *" + }, + { + "verseNum": 42, + "text": "\\+w Arise|strong=\"G1453\"\\+w*! Let’s \\+w get|strong=\"G1453\"\\+w* going. \\+w Behold|strong=\"G2400\"\\+w*, \\+w he|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w betrays|strong=\"G3860\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w at|strong=\"G3588\"\\+w* \\+w hand|strong=\"G1448\"\\+w*.” *" + }, + { + "verseNum": 43, + "text": "Immediately|strong=\"G2112\"*, while|strong=\"G2980\"* he|strong=\"G2532\"* was|strong=\"G3588\"* still|strong=\"G2089\"* speaking|strong=\"G2980\"*, Judas|strong=\"G2455\"*, one|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*, came|strong=\"G3854\"*—and|strong=\"G2532\"* with|strong=\"G3326\"* him|strong=\"G3588\"* a|strong=\"G2532\"* multitude|strong=\"G3793\"* with|strong=\"G3326\"* swords|strong=\"G3162\"* and|strong=\"G2532\"* clubs|strong=\"G3586\"*, from|strong=\"G3844\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests, the|strong=\"G2532\"* scribes|strong=\"G1122\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*." + }, + { + "verseNum": 44, + "text": "Now|strong=\"G1161\"* he|strong=\"G2532\"* who|strong=\"G3739\"* betrayed|strong=\"G3860\"* him|strong=\"G3588\"* had|strong=\"G2532\"* given|strong=\"G1325\"* them|strong=\"G3588\"* a|strong=\"G2532\"* sign, saying|strong=\"G3004\"*, “Whomever|strong=\"G3739\"* I|strong=\"G3739\"* will|strong=\"G1510\"* kiss|strong=\"G5368\"*, that|strong=\"G3739\"* is|strong=\"G1510\"* he|strong=\"G2532\"*. Seize|strong=\"G2902\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* lead|strong=\"G1510\"* him|strong=\"G3588\"* away safely.”" + }, + { + "verseNum": 45, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G2064\"*, immediately|strong=\"G2112\"* he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G2532\"* him|strong=\"G2532\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “Rabbi|strong=\"G4461\"*! Rabbi|strong=\"G4461\"*!” and|strong=\"G2532\"* kissed|strong=\"G2705\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 46, + "text": "They|strong=\"G2532\"* laid|strong=\"G1911\"* their|strong=\"G2532\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* him|strong=\"G3588\"* and|strong=\"G2532\"* seized|strong=\"G2902\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 47, + "text": "But|strong=\"G1161\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* one|strong=\"G1520\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* stood|strong=\"G3936\"* by|strong=\"G3936\"* drew|strong=\"G4685\"* his|strong=\"G2532\"* sword|strong=\"G3162\"* and|strong=\"G2532\"* struck|strong=\"G3817\"* the|strong=\"G2532\"* servant|strong=\"G1401\"* of|strong=\"G2532\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest, and|strong=\"G2532\"* cut|strong=\"G2532\"* off his|strong=\"G2532\"* ear|strong=\"G5621\"*." + }, + { + "verseNum": 48, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Have|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w come|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w*, \\+w as|strong=\"G5613\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w robber|strong=\"G3027\"\\+w*, \\+w with|strong=\"G3326\"\\+w* \\+w swords|strong=\"G3162\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w clubs|strong=\"G3586\"\\+w* \\+w to|strong=\"G2532\"\\+w* seize \\+w me|strong=\"G1473\"\\+w*? *" + }, + { + "verseNum": 49, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w daily|strong=\"G2250\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w temple|strong=\"G2411\"\\+w* \\+w teaching|strong=\"G1321\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w arrest|strong=\"G2902\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w But|strong=\"G2532\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Scriptures|strong=\"G1124\"\\+w* \\+w might|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w*.”*" + }, + { + "verseNum": 50, + "text": "They|strong=\"G2532\"* all|strong=\"G3956\"* left him|strong=\"G2532\"*, and|strong=\"G2532\"* fled|strong=\"G5343\"*." + }, + { + "verseNum": 51, + "text": "A|strong=\"G2532\"* certain|strong=\"G5100\"* young|strong=\"G3495\"* man|strong=\"G5100\"* followed|strong=\"G4870\"* him|strong=\"G2532\"*, having|strong=\"G2532\"* a|strong=\"G2532\"* linen|strong=\"G4616\"* cloth|strong=\"G4616\"* thrown around|strong=\"G1909\"* himself|strong=\"G4016\"* over|strong=\"G1909\"* his|strong=\"G1909\"* naked|strong=\"G1131\"* body. The|strong=\"G2532\"* young|strong=\"G3495\"* men|strong=\"G3495\"* grabbed him|strong=\"G2532\"*," + }, + { + "verseNum": 52, + "text": "but|strong=\"G1161\"* he|strong=\"G1161\"* left|strong=\"G2641\"* the|strong=\"G1161\"* linen|strong=\"G4616\"* cloth|strong=\"G4616\"* and|strong=\"G1161\"* fled|strong=\"G5343\"* from|strong=\"G3588\"* them|strong=\"G3588\"* naked|strong=\"G1131\"*." + }, + { + "verseNum": 53, + "text": "They|strong=\"G2532\"* led|strong=\"G2424\"* Jesus|strong=\"G2424\"* away to|strong=\"G4314\"* the|strong=\"G2532\"* high|strong=\"G3956\"* priest. All|strong=\"G3956\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests, the|strong=\"G2532\"* elders|strong=\"G4245\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* came|strong=\"G4905\"* together|strong=\"G4905\"* with|strong=\"G4314\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 54, + "text": "Peter|strong=\"G4074\"* had|strong=\"G2532\"* followed him|strong=\"G3588\"* from|strong=\"G2532\"* a|strong=\"G2532\"* distance|strong=\"G3113\"*, until|strong=\"G2193\"* he|strong=\"G2532\"* came|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G2532\"* court of|strong=\"G2532\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest. He|strong=\"G2532\"* was|strong=\"G1510\"* sitting|strong=\"G4775\"* with|strong=\"G3326\"* the|strong=\"G2532\"* officers|strong=\"G5257\"*, and|strong=\"G2532\"* warming|strong=\"G2328\"* himself|strong=\"G2328\"* in|strong=\"G1519\"* the|strong=\"G2532\"* light|strong=\"G5457\"* of|strong=\"G2532\"* the|strong=\"G2532\"* fire|strong=\"G5457\"*." + }, + { + "verseNum": 55, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* council|strong=\"G4892\"* sought|strong=\"G2212\"* witnesses against|strong=\"G2596\"* Jesus|strong=\"G2424\"* to|strong=\"G1519\"* put|strong=\"G2289\"* him|strong=\"G3588\"* to|strong=\"G1519\"* death|strong=\"G2289\"*, and|strong=\"G2532\"* found|strong=\"G2147\"* none|strong=\"G3756\"*." + }, + { + "verseNum": 56, + "text": "For|strong=\"G1063\"* many|strong=\"G4183\"* gave|strong=\"G2532\"* false|strong=\"G5576\"* testimony|strong=\"G3141\"* against|strong=\"G2596\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* their|strong=\"G2532\"* testimony|strong=\"G3141\"* didn’t|strong=\"G3588\"* agree|strong=\"G1510\"* with|strong=\"G2532\"* each|strong=\"G2596\"* other|strong=\"G4183\"*." + }, + { + "verseNum": 57, + "text": "Some|strong=\"G5100\"* stood|strong=\"G2532\"* up|strong=\"G2532\"* and|strong=\"G2532\"* gave|strong=\"G2532\"* false|strong=\"G5576\"* testimony|strong=\"G5576\"* against|strong=\"G2596\"* him|strong=\"G2532\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 58, + "text": "“We|strong=\"G2249\"* heard him|strong=\"G3588\"* say|strong=\"G3004\"*, ‘I|strong=\"G1473\"* will|strong=\"G2532\"* destroy|strong=\"G2647\"* this|strong=\"G3778\"* temple|strong=\"G3485\"* that|strong=\"G3754\"* is|strong=\"G3588\"* made|strong=\"G5499\"* with|strong=\"G1223\"* hands|strong=\"G5499\"*, and|strong=\"G2532\"* in|strong=\"G2532\"* three|strong=\"G5140\"* days|strong=\"G2250\"* I|strong=\"G1473\"* will|strong=\"G2532\"* build|strong=\"G3618\"* another|strong=\"G2250\"* made|strong=\"G5499\"* without|strong=\"G2532\"* hands|strong=\"G5499\"*.’”" + }, + { + "verseNum": 59, + "text": "Even|strong=\"G2532\"* so|strong=\"G3779\"*, their|strong=\"G2532\"* testimony|strong=\"G3141\"* didn’t|strong=\"G3588\"* agree|strong=\"G1510\"*." + }, + { + "verseNum": 60, + "text": "The|strong=\"G2532\"* high|strong=\"G2532\"* priest stood|strong=\"G3588\"* up|strong=\"G1519\"* in|strong=\"G1519\"* the|strong=\"G2532\"* middle|strong=\"G3319\"*, and|strong=\"G2532\"* asked|strong=\"G1905\"* Jesus|strong=\"G2424\"*, “Have|strong=\"G2532\"* you|strong=\"G4771\"* no|strong=\"G3756\"* answer? What|strong=\"G5101\"* is|strong=\"G3588\"* it|strong=\"G2532\"* which|strong=\"G3588\"* these|strong=\"G3778\"* testify|strong=\"G2649\"* against|strong=\"G1519\"* you|strong=\"G4771\"*?”" + }, + { + "verseNum": 61, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* stayed|strong=\"G1510\"* quiet|strong=\"G4623\"*, and|strong=\"G2532\"* answered|strong=\"G3004\"* nothing|strong=\"G3762\"*. Again|strong=\"G3825\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest asked|strong=\"G1905\"* him|strong=\"G3588\"*, “Are|strong=\"G1510\"* you|strong=\"G4771\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*, the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G2532\"* Blessed|strong=\"G2128\"*?”" + }, + { + "verseNum": 62, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*. \\+w You|strong=\"G3004\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w sitting|strong=\"G2521\"\\+w* \\+w at|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w hand|strong=\"G1188\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Power|strong=\"G1411\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w clouds|strong=\"G3507\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w*.”*" + }, + { + "verseNum": 63, + "text": "The|strong=\"G1161\"* high priest tore|strong=\"G1284\"* his|strong=\"G2192\"* clothes|strong=\"G5509\"* and|strong=\"G1161\"* said|strong=\"G3004\"*, “What|strong=\"G5101\"* further|strong=\"G2089\"* need|strong=\"G5532\"* have|strong=\"G2192\"* we|strong=\"G1161\"* of|strong=\"G5532\"* witnesses|strong=\"G3144\"*?" + }, + { + "verseNum": 64, + "text": "You|strong=\"G5210\"* have|strong=\"G1510\"* heard the|strong=\"G3956\"* blasphemy! What|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G5210\"* think|strong=\"G5316\"*?” They|strong=\"G1161\"* all|strong=\"G3956\"* condemned|strong=\"G2632\"* him|strong=\"G3588\"* to|strong=\"G1161\"* be|strong=\"G1510\"* worthy of|strong=\"G3956\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 65, + "text": "Some|strong=\"G5100\"* began|strong=\"G2983\"* to|strong=\"G2532\"* spit|strong=\"G1716\"* on|strong=\"G3004\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* cover|strong=\"G4028\"* his|strong=\"G2983\"* face|strong=\"G4383\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* beat|strong=\"G2852\"* him|strong=\"G3588\"* with|strong=\"G2532\"* fists|strong=\"G2852\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* tell|strong=\"G3004\"* him|strong=\"G3588\"*, “Prophesy|strong=\"G4395\"*!” The|strong=\"G2532\"* officers|strong=\"G5257\"* struck|strong=\"G2983\"* him|strong=\"G3588\"* with|strong=\"G2532\"* the|strong=\"G2532\"* palms of|strong=\"G2532\"* their|strong=\"G2532\"* hands|strong=\"G4475\"*." + }, + { + "verseNum": 66, + "text": "As|strong=\"G1722\"* Peter|strong=\"G4074\"* was|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* courtyard below|strong=\"G2736\"*, one|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G1722\"* maids|strong=\"G3814\"* of|strong=\"G2532\"* the|strong=\"G1722\"* high|strong=\"G2532\"* priest came|strong=\"G2064\"*," + }, + { + "verseNum": 67, + "text": "and|strong=\"G2532\"* seeing|strong=\"G3708\"* Peter|strong=\"G4074\"* warming|strong=\"G2328\"* himself|strong=\"G2328\"*, she|strong=\"G2532\"* looked|strong=\"G3708\"* at|strong=\"G1689\"* him|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “You|strong=\"G4771\"* were|strong=\"G1510\"* also|strong=\"G2532\"* with|strong=\"G3326\"* the|strong=\"G2532\"* Nazarene|strong=\"G3479\"*, Jesus|strong=\"G2424\"*!”" + }, + { + "verseNum": 68, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* denied it|strong=\"G2532\"*, saying|strong=\"G3004\"*, “I|strong=\"G2532\"* neither|strong=\"G3777\"* know|strong=\"G1492\"* nor|strong=\"G3777\"* understand|strong=\"G1492\"* what|strong=\"G5101\"* you|strong=\"G4771\"* are|strong=\"G3588\"* saying|strong=\"G3004\"*.” He|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* on|strong=\"G1519\"* the|strong=\"G2532\"* porch|strong=\"G4259\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* rooster crowed|strong=\"G5455\"*." + }, + { + "verseNum": 69, + "text": "The|strong=\"G2532\"* maid|strong=\"G3814\"* saw|strong=\"G3708\"* him|strong=\"G3588\"* and|strong=\"G2532\"* began again|strong=\"G3825\"* to|strong=\"G2532\"* tell|strong=\"G3004\"* those|strong=\"G3588\"* who|strong=\"G3588\"* stood|strong=\"G3936\"* by|strong=\"G1537\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* one|strong=\"G3588\"* of|strong=\"G1537\"* them|strong=\"G3588\"*.”" + }, + { + "verseNum": 70, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* again|strong=\"G3825\"* denied it|strong=\"G2532\"*. After|strong=\"G3326\"* a|strong=\"G2532\"* little|strong=\"G3398\"* while|strong=\"G3398\"* again|strong=\"G3825\"* those|strong=\"G3588\"* who|strong=\"G3588\"* stood|strong=\"G3936\"* by|strong=\"G1537\"* said|strong=\"G3004\"* to|strong=\"G2532\"* Peter|strong=\"G4074\"*, “You|strong=\"G4771\"* truly|strong=\"G1161\"* are|strong=\"G1510\"* one|strong=\"G3588\"* of|strong=\"G1537\"* them|strong=\"G3588\"*, for|strong=\"G1063\"* you|strong=\"G4771\"* are|strong=\"G1510\"* a|strong=\"G2532\"* Galilean|strong=\"G1057\"*, and|strong=\"G2532\"* your|strong=\"G2532\"* speech|strong=\"G2981\"* shows it|strong=\"G2532\"*.”" + }, + { + "verseNum": 71, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* began|strong=\"G1161\"* to|strong=\"G2532\"* curse and|strong=\"G2532\"* to|strong=\"G2532\"* swear|strong=\"G3660\"*, “I|strong=\"G3739\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* this|strong=\"G3778\"* man|strong=\"G3778\"* of|strong=\"G2532\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* speak|strong=\"G3004\"*!”" + }, + { + "verseNum": 72, + "text": "The|strong=\"G2532\"* rooster crowed|strong=\"G5455\"* the|strong=\"G2532\"* second|strong=\"G1208\"* time|strong=\"G1208\"*. Peter|strong=\"G4074\"* remembered the|strong=\"G2532\"* words|strong=\"G4487\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Before|strong=\"G4250\"\\+w* \\+w the|strong=\"G2532\"\\+w* rooster \\+w crows|strong=\"G5455\"\\+w* \\+w twice|strong=\"G1364\"\\+w*, \\+w you|strong=\"G3754\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w three|strong=\"G5151\"\\+w* \\+w times|strong=\"G5151\"\\+w*.”* When|strong=\"G5613\"* he|strong=\"G2532\"* thought|strong=\"G3004\"* about|strong=\"G5613\"* that|strong=\"G3754\"*, he|strong=\"G2532\"* wept|strong=\"G2799\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Immediately|strong=\"G2112\"* in|strong=\"G2532\"* the|strong=\"G2532\"* morning|strong=\"G4404\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests, with|strong=\"G3326\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*, scribes|strong=\"G1122\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* council|strong=\"G4892\"*, held|strong=\"G4160\"* a|strong=\"G2532\"* consultation|strong=\"G4824\"*, bound|strong=\"G1210\"* Jesus|strong=\"G2424\"*, carried|strong=\"G2532\"* him|strong=\"G3588\"* away|strong=\"G3326\"*, and|strong=\"G2532\"* delivered|strong=\"G3860\"* him|strong=\"G3588\"* up|strong=\"G3860\"* to|strong=\"G2532\"* Pilate|strong=\"G4091\"*." + }, + { + "verseNum": 2, + "text": "Pilate|strong=\"G4091\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “Are|strong=\"G1510\"* you|strong=\"G4771\"* the|strong=\"G2532\"* King|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*?”" + }, + { + "verseNum": 3, + "text": "The|strong=\"G2532\"* chief|strong=\"G2532\"* priests accused|strong=\"G2723\"* him|strong=\"G3588\"* of|strong=\"G2532\"* many|strong=\"G4183\"* things|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "Pilate|strong=\"G4091\"* again|strong=\"G3825\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “Have|strong=\"G3588\"* you|strong=\"G4771\"* no|strong=\"G3756\"* answer? See|strong=\"G3708\"* how|strong=\"G4214\"* many|strong=\"G4214\"* things|strong=\"G3588\"* they|strong=\"G1161\"* testify against|strong=\"G3762\"* you|strong=\"G4771\"*!”" + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* made|strong=\"G1161\"* no|strong=\"G3762\"* further|strong=\"G3765\"* answer, so|strong=\"G1161\"* that|strong=\"G3588\"* Pilate|strong=\"G4091\"* marveled|strong=\"G2296\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"G1161\"* at|strong=\"G2596\"* the|strong=\"G1161\"* feast|strong=\"G1859\"* he|strong=\"G1161\"* used to|strong=\"G2596\"* release to|strong=\"G2596\"* them|strong=\"G3739\"* one|strong=\"G1520\"* prisoner|strong=\"G1198\"*, whomever|strong=\"G3739\"* they|strong=\"G1161\"* asked of|strong=\"G1520\"* him|strong=\"G3739\"*." + }, + { + "verseNum": 7, + "text": "There|strong=\"G1161\"* was|strong=\"G1510\"* one|strong=\"G3588\"* called|strong=\"G3004\"* Barabbas, bound|strong=\"G1210\"* with|strong=\"G3326\"* his|strong=\"G1722\"* fellow insurgents, men|strong=\"G3588\"* who|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* insurrection|strong=\"G4714\"* had|strong=\"G1510\"* committed|strong=\"G4160\"* murder|strong=\"G5408\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"G2532\"* multitude|strong=\"G3793\"*, crying|strong=\"G3793\"* aloud, began to|strong=\"G2532\"* ask him|strong=\"G3588\"* to|strong=\"G2532\"* do|strong=\"G4160\"* as|strong=\"G2531\"* he|strong=\"G2532\"* always did|strong=\"G4160\"* for|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 9, + "text": "Pilate|strong=\"G4091\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Do|strong=\"G3004\"* you|strong=\"G5210\"* want|strong=\"G2309\"* me|strong=\"G3004\"* to|strong=\"G3004\"* release to|strong=\"G3004\"* you|strong=\"G5210\"* the|strong=\"G1161\"* King|strong=\"G3588\"* of|strong=\"G3588\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"*?”" + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* he|strong=\"G3754\"* perceived|strong=\"G1097\"* that|strong=\"G3754\"* for|strong=\"G1063\"* envy|strong=\"G5355\"* the|strong=\"G1223\"* chief priests had|strong=\"G3588\"* delivered|strong=\"G3860\"* him|strong=\"G3588\"* up|strong=\"G3860\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* chief priests stirred up the|strong=\"G1161\"* multitude|strong=\"G3793\"*, that|strong=\"G2443\"* he|strong=\"G1161\"* should|strong=\"G3588\"* release Barabbas to|strong=\"G2443\"* them|strong=\"G3588\"* instead|strong=\"G3123\"*." + }, + { + "verseNum": 12, + "text": "Pilate|strong=\"G4091\"* again|strong=\"G3825\"* asked|strong=\"G3004\"* them|strong=\"G3588\"*, “What|strong=\"G5101\"* then|strong=\"G3767\"* should|strong=\"G3588\"* I|strong=\"G3739\"* do|strong=\"G4160\"* to|strong=\"G3004\"* him|strong=\"G3588\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* call|strong=\"G3004\"* the|strong=\"G1161\"* King|strong=\"G3588\"* of|strong=\"G3588\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"*?”" + }, + { + "verseNum": 13, + "text": "They|strong=\"G1161\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* again|strong=\"G3825\"*, “Crucify|strong=\"G4717\"* him|strong=\"G3588\"*!”" + }, + { + "verseNum": 14, + "text": "Pilate|strong=\"G4091\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “Why|strong=\"G5101\"*, what|strong=\"G5101\"* evil|strong=\"G2556\"* has|strong=\"G5101\"* he|strong=\"G1161\"* done|strong=\"G4160\"*?”" + }, + { + "verseNum": 15, + "text": "Pilate|strong=\"G4091\"*, wishing|strong=\"G1014\"* to|strong=\"G2443\"* please the|strong=\"G2532\"* multitude|strong=\"G3793\"*, released Barabbas to|strong=\"G2443\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* handed|strong=\"G3860\"* over|strong=\"G3860\"* Jesus|strong=\"G2424\"*, when|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2424\"* flogged|strong=\"G5417\"* him|strong=\"G3588\"*, to|strong=\"G2443\"* be|strong=\"G2532\"* crucified|strong=\"G4717\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"G2532\"* soldiers|strong=\"G4757\"* led him|strong=\"G3588\"* away within|strong=\"G2080\"* the|strong=\"G2532\"* court, which|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Praetorium|strong=\"G4232\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* called|strong=\"G4779\"* together|strong=\"G4779\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* cohort|strong=\"G4686\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"G2532\"* clothed him|strong=\"G2532\"* with|strong=\"G2532\"* purple|strong=\"G4209\"*; and|strong=\"G2532\"* weaving a|strong=\"G2532\"* crown|strong=\"G4735\"* of|strong=\"G2532\"* thorns, they|strong=\"G2532\"* put|strong=\"G4060\"* it|strong=\"G2532\"* on|strong=\"G2532\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"G2532\"* began to|strong=\"G2532\"* salute him|strong=\"G3588\"*, “Hail|strong=\"G5463\"*, King|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*!”" + }, + { + "verseNum": 19, + "text": "They|strong=\"G2532\"* struck|strong=\"G5180\"* his|strong=\"G2532\"* head|strong=\"G2776\"* with|strong=\"G2532\"* a|strong=\"G2532\"* reed|strong=\"G2563\"* and|strong=\"G2532\"* spat|strong=\"G1716\"* on|strong=\"G3588\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* bowing|strong=\"G4352\"* their|strong=\"G2532\"* knees|strong=\"G1119\"*, did|strong=\"G2532\"* homage to|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"G3753\"* they|strong=\"G2532\"* had|strong=\"G2532\"* mocked|strong=\"G1702\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* took|strong=\"G2532\"* the|strong=\"G2532\"* purple|strong=\"G4209\"* cloak|strong=\"G2440\"* off|strong=\"G1562\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* put|strong=\"G1746\"* his|strong=\"G2398\"* own|strong=\"G2398\"* garments|strong=\"G2440\"* on|strong=\"G1746\"* him|strong=\"G3588\"*. They|strong=\"G2532\"* led|strong=\"G1806\"* him|strong=\"G3588\"* out|strong=\"G1806\"* to|strong=\"G2443\"* crucify|strong=\"G4717\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"G2532\"* compelled one|strong=\"G5100\"* passing|strong=\"G3855\"* by|strong=\"G2532\"*, coming|strong=\"G2064\"* from|strong=\"G2064\"* the|strong=\"G2532\"* country, Simon|strong=\"G4613\"* of|strong=\"G2532\"* Cyrene|strong=\"G2956\"*, the|strong=\"G2532\"* father|strong=\"G3962\"* of|strong=\"G2532\"* Alexander and|strong=\"G2532\"* Rufus|strong=\"G4504\"*, to|strong=\"G2443\"* go|strong=\"G2064\"* with|strong=\"G2532\"* them|strong=\"G3588\"* that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* bear|strong=\"G2443\"* his|strong=\"G2532\"* cross|strong=\"G4716\"*." + }, + { + "verseNum": 22, + "text": "They|strong=\"G2532\"* brought|strong=\"G5342\"* him|strong=\"G3588\"* to|strong=\"G2532\"* the|strong=\"G2532\"* place|strong=\"G5117\"* called|strong=\"G3739\"* Golgotha|strong=\"G1115\"*, which|strong=\"G3739\"* is|strong=\"G1510\"*, being|strong=\"G1510\"* interpreted|strong=\"G3177\"*, “The|strong=\"G2532\"* place|strong=\"G5117\"* of|strong=\"G2532\"* a|strong=\"G2532\"* skull|strong=\"G2898\"*.”" + }, + { + "verseNum": 23, + "text": "They|strong=\"G2532\"* offered him|strong=\"G1325\"* wine|strong=\"G3631\"* mixed|strong=\"G4669\"* with|strong=\"G2532\"* myrrh|strong=\"G4669\"* to|strong=\"G2532\"* drink|strong=\"G2532\"*, but|strong=\"G1161\"* he|strong=\"G2532\"* didn’t take|strong=\"G2983\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 24, + "text": "Crucifying him|strong=\"G3588\"*, they|strong=\"G2532\"* parted|strong=\"G1266\"* his|strong=\"G1909\"* garments|strong=\"G2440\"* among|strong=\"G1909\"* them|strong=\"G3588\"*, casting lots|strong=\"G2819\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, what|strong=\"G5101\"* each|strong=\"G5101\"* should|strong=\"G3588\"* take|strong=\"G2532\"*." + }, + { + "verseNum": 25, + "text": "It|strong=\"G2532\"* was|strong=\"G1510\"* the|strong=\"G2532\"* third|strong=\"G5154\"* hour|strong=\"G5610\"*+ 15:25 9:00 a.m.* when|strong=\"G1161\"* they|strong=\"G2532\"* crucified|strong=\"G4717\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"G2532\"* superscription|strong=\"G1923\"* of|strong=\"G2532\"* his|strong=\"G2532\"* accusation was|strong=\"G1510\"* written|strong=\"G3588\"* over|strong=\"G1924\"* him|strong=\"G3588\"*: “THE|strong=\"G2532\"* KING|strong=\"G3588\"* OF|strong=\"G2532\"* THE|strong=\"G2532\"* JEWS|strong=\"G2453\"*.”" + }, + { + "verseNum": 27, + "text": "With|strong=\"G4862\"* him|strong=\"G2532\"* they|strong=\"G2532\"* crucified|strong=\"G4717\"* two|strong=\"G1417\"* robbers|strong=\"G3027\"*, one|strong=\"G1520\"* on|strong=\"G1537\"* his|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"*, and|strong=\"G2532\"* one|strong=\"G1520\"* on|strong=\"G1537\"* his|strong=\"G2532\"* left|strong=\"G2176\"*." + }, + { + "verseNum": 28, + "text": "The Scripture was fulfilled which says, “He was counted with transgressors.”+ 15:28 NU omits verse 28.*" + }, + { + "verseNum": 29, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* passed|strong=\"G3588\"* by|strong=\"G1722\"* blasphemed him|strong=\"G3588\"*, wagging|strong=\"G2795\"* their|strong=\"G2532\"* heads|strong=\"G2776\"* and|strong=\"G2532\"* saying|strong=\"G3004\"*, “Ha|strong=\"G3758\"*! You|strong=\"G1722\"* who|strong=\"G3588\"* destroy|strong=\"G2647\"* the|strong=\"G1722\"* temple|strong=\"G3485\"* and|strong=\"G2532\"* build|strong=\"G3618\"* it|strong=\"G2532\"* in|strong=\"G1722\"* three|strong=\"G5140\"* days|strong=\"G2250\"*," + }, + { + "verseNum": 30, + "text": "save|strong=\"G4982\"* yourself|strong=\"G4572\"*, and|strong=\"G2597\"* come|strong=\"G2597\"* down|strong=\"G2597\"* from|strong=\"G2597\"* the|strong=\"G3588\"* cross|strong=\"G4716\"*!”" + }, + { + "verseNum": 31, + "text": "Likewise|strong=\"G3668\"*, also|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests mocking|strong=\"G1702\"* among|strong=\"G4314\"* themselves|strong=\"G1438\"* with|strong=\"G3326\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* said|strong=\"G3004\"*, “He|strong=\"G2532\"* saved|strong=\"G4982\"* others|strong=\"G3588\"*. He|strong=\"G2532\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* save|strong=\"G4982\"* himself|strong=\"G1438\"*." + }, + { + "verseNum": 32, + "text": "Let|strong=\"G2443\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*, the|strong=\"G2532\"* King|strong=\"G3588\"* of|strong=\"G2532\"* Israel|strong=\"G2474\"*, now|strong=\"G3568\"* come|strong=\"G2597\"* down|strong=\"G2597\"* from|strong=\"G2597\"* the|strong=\"G2532\"* cross|strong=\"G4716\"*, that|strong=\"G2443\"* we|strong=\"G2532\"* may|strong=\"G2532\"* see|strong=\"G3708\"* and|strong=\"G2532\"* believe|strong=\"G4100\"* him|strong=\"G3588\"*.”+ 15:32 TR omits “him”* Those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* crucified|strong=\"G4957\"* with|strong=\"G4862\"* him|strong=\"G3588\"* also|strong=\"G2532\"* insulted him|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* sixth|strong=\"G1623\"* hour|strong=\"G5610\"*+ 15:33 or, noon* had|strong=\"G2532\"* come|strong=\"G1096\"*, there|strong=\"G2532\"* was|strong=\"G1096\"* darkness|strong=\"G4655\"* over|strong=\"G1909\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* land|strong=\"G1093\"* until|strong=\"G2193\"* the|strong=\"G2532\"* ninth|strong=\"G1766\"* hour|strong=\"G5610\"*.+ 15:33 3:00 p.m.*" + }, + { + "verseNum": 34, + "text": "At|strong=\"G1519\"* the|strong=\"G2532\"* ninth|strong=\"G1766\"* hour|strong=\"G5610\"* Jesus|strong=\"G2424\"* cried|strong=\"G2532\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, saying|strong=\"G3173\"*, “\\+w Eloi|strong=\"G1682\"\\+w*, \\+w Eloi|strong=\"G1682\"\\+w*, \\+w lama|strong=\"G2982\"\\+w* \\+w sabachthani|strong=\"G4518\"\\+w*?”* which|strong=\"G3739\"* is|strong=\"G1510\"*, being|strong=\"G1510\"* interpreted|strong=\"G3177\"*, “\\+w My|strong=\"G1473\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w my|strong=\"G1473\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w why|strong=\"G5101\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w forsaken|strong=\"G1459\"\\+w* \\+w me|strong=\"G1473\"\\+w*?”* + 15:34 Psalms 22:1*" + }, + { + "verseNum": 35, + "text": "Some|strong=\"G5100\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* stood|strong=\"G3936\"* by|strong=\"G3936\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* heard it|strong=\"G2532\"*, said|strong=\"G3004\"*, “Behold|strong=\"G2396\"*, he|strong=\"G2532\"* is|strong=\"G3588\"* calling|strong=\"G5455\"* Elijah|strong=\"G2243\"*.”" + }, + { + "verseNum": 36, + "text": "One|strong=\"G5100\"* ran|strong=\"G5143\"*, and|strong=\"G2532\"* filling|strong=\"G1072\"* a|strong=\"G2532\"* sponge|strong=\"G4699\"* full|strong=\"G1072\"* of|strong=\"G2532\"* vinegar|strong=\"G3690\"*, put|strong=\"G4060\"* it|strong=\"G2532\"* on|strong=\"G1161\"* a|strong=\"G2532\"* reed|strong=\"G2563\"* and|strong=\"G2532\"* gave|strong=\"G4222\"* it|strong=\"G2532\"* to|strong=\"G2532\"* him|strong=\"G3708\"* to|strong=\"G2532\"* drink|strong=\"G4222\"*, saying|strong=\"G3004\"*, “Let|strong=\"G1161\"* him|strong=\"G3708\"* be|strong=\"G2532\"*. Let|strong=\"G1161\"*’s see|strong=\"G3708\"* whether|strong=\"G1487\"* Elijah|strong=\"G2243\"* comes|strong=\"G2064\"* to|strong=\"G2532\"* take|strong=\"G2507\"* him|strong=\"G3708\"* down|strong=\"G2507\"*.”" + }, + { + "verseNum": 37, + "text": "Jesus|strong=\"G2424\"* cried|strong=\"G2424\"* out|strong=\"G5456\"* with|strong=\"G3588\"* a|strong=\"G1161\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, and|strong=\"G1161\"* gave|strong=\"G3588\"* up the|strong=\"G1161\"* spirit|strong=\"G3588\"*." + }, + { + "verseNum": 38, + "text": "The|strong=\"G2532\"* veil|strong=\"G2665\"* of|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G3485\"* was|strong=\"G3588\"* torn|strong=\"G4977\"* in|strong=\"G1519\"* two|strong=\"G1417\"* from|strong=\"G2532\"* the|strong=\"G2532\"* top to|strong=\"G1519\"* the|strong=\"G2532\"* bottom|strong=\"G2736\"*." + }, + { + "verseNum": 39, + "text": "When|strong=\"G1161\"* the|strong=\"G1537\"* centurion|strong=\"G2760\"*, who|strong=\"G3588\"* stood|strong=\"G3936\"* by|strong=\"G1537\"* opposite him|strong=\"G3588\"*, saw|strong=\"G3708\"* that|strong=\"G3754\"* he|strong=\"G1161\"* cried|strong=\"G3779\"* out|strong=\"G1537\"* like|strong=\"G3779\"* this|strong=\"G3778\"* and|strong=\"G1161\"* breathed|strong=\"G1606\"* his|strong=\"G3708\"* last|strong=\"G1606\"*, he|strong=\"G1161\"* said|strong=\"G3004\"*, “Truly|strong=\"G1161\"* this|strong=\"G3778\"* man|strong=\"G3778\"* was|strong=\"G1510\"* the|strong=\"G1537\"* Son|strong=\"G5207\"* of|strong=\"G1537\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 40, + "text": "There|strong=\"G2532\"* were|strong=\"G1510\"* also|strong=\"G2532\"* women|strong=\"G1135\"* watching|strong=\"G2334\"* from|strong=\"G2532\"* afar|strong=\"G3113\"*, among|strong=\"G1722\"* whom|strong=\"G3739\"* were|strong=\"G1510\"* both|strong=\"G2532\"* Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"* and|strong=\"G2532\"* Mary|strong=\"G3137\"* the|strong=\"G1722\"* mother|strong=\"G3384\"* of|strong=\"G2532\"* James|strong=\"G2385\"* the|strong=\"G1722\"* less|strong=\"G3398\"* and|strong=\"G2532\"* of|strong=\"G2532\"* Joses|strong=\"G2500\"*, and|strong=\"G2532\"* Salome|strong=\"G4539\"*;" + }, + { + "verseNum": 41, + "text": "who|strong=\"G3739\"*, when|strong=\"G3753\"* he|strong=\"G2532\"* was|strong=\"G1510\"* in|strong=\"G1722\"* Galilee|strong=\"G1056\"*, followed him|strong=\"G3588\"* and|strong=\"G2532\"* served|strong=\"G1247\"* him|strong=\"G3588\"*; and|strong=\"G2532\"* many|strong=\"G4183\"* other|strong=\"G4183\"* women who|strong=\"G3739\"* came|strong=\"G2532\"* up|strong=\"G1519\"* with|strong=\"G1722\"* him|strong=\"G3588\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 42, + "text": "When|strong=\"G2532\"* evening|strong=\"G3798\"* had|strong=\"G2532\"* now|strong=\"G2532\"* come|strong=\"G1096\"*, because|strong=\"G1893\"* it|strong=\"G2532\"* was|strong=\"G1510\"* the|strong=\"G2532\"* Preparation|strong=\"G3904\"* Day|strong=\"G3904\"*, that|strong=\"G3739\"* is|strong=\"G1510\"*, the|strong=\"G2532\"* day|strong=\"G3904\"* before|strong=\"G2532\"* the|strong=\"G2532\"* Sabbath|strong=\"G4315\"*," + }, + { + "verseNum": 43, + "text": "Joseph|strong=\"G2501\"* of|strong=\"G2316\"* Arimathaea, a|strong=\"G2532\"* prominent|strong=\"G2158\"* council|strong=\"G1010\"* member|strong=\"G1010\"* who|strong=\"G3739\"* also|strong=\"G2532\"* himself was|strong=\"G1510\"* looking|strong=\"G4327\"* for|strong=\"G4314\"* God|strong=\"G2316\"*’s Kingdom, came|strong=\"G2064\"*. He|strong=\"G2532\"* boldly|strong=\"G5111\"* went|strong=\"G2064\"* in|strong=\"G1525\"* to|strong=\"G4314\"* Pilate|strong=\"G4091\"*, and|strong=\"G2532\"* asked for|strong=\"G4314\"* Jesus|strong=\"G2424\"*’ body|strong=\"G4983\"*." + }, + { + "verseNum": 44, + "text": "Pilate|strong=\"G4091\"* was|strong=\"G3588\"* surprised|strong=\"G2296\"* to|strong=\"G2532\"* hear that|strong=\"G3588\"* he|strong=\"G2532\"* was|strong=\"G3588\"* already|strong=\"G2235\"* dead|strong=\"G2348\"*; and|strong=\"G2532\"* summoning|strong=\"G4341\"* the|strong=\"G2532\"* centurion|strong=\"G2760\"*, he|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G3588\"* whether|strong=\"G1487\"* he|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G2532\"* dead|strong=\"G2348\"* long|strong=\"G3819\"*." + }, + { + "verseNum": 45, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* found|strong=\"G1097\"* out|strong=\"G2532\"* from|strong=\"G2532\"* the|strong=\"G2532\"* centurion|strong=\"G2760\"*, he|strong=\"G2532\"* granted|strong=\"G1433\"* the|strong=\"G2532\"* body|strong=\"G4430\"* to|strong=\"G2532\"* Joseph|strong=\"G2501\"*." + }, + { + "verseNum": 46, + "text": "He|strong=\"G2532\"* bought a|strong=\"G2532\"* linen|strong=\"G4616\"* cloth|strong=\"G4616\"*, and|strong=\"G2532\"* taking him|strong=\"G3588\"* down|strong=\"G5087\"*, wound him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* linen|strong=\"G4616\"* cloth|strong=\"G4616\"* and|strong=\"G2532\"* laid|strong=\"G5087\"* him|strong=\"G3588\"* in|strong=\"G1722\"* a|strong=\"G2532\"* tomb|strong=\"G3419\"* which|strong=\"G3739\"* had|strong=\"G2532\"* been|strong=\"G1510\"* cut|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* a|strong=\"G2532\"* rock|strong=\"G4073\"*. He|strong=\"G2532\"* rolled|strong=\"G4351\"* a|strong=\"G2532\"* stone|strong=\"G3037\"* against|strong=\"G1909\"* the|strong=\"G1722\"* door|strong=\"G2374\"* of|strong=\"G1537\"* the|strong=\"G1722\"* tomb|strong=\"G3419\"*." + }, + { + "verseNum": 47, + "text": "Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"* and|strong=\"G2532\"* Mary|strong=\"G3137\"* the|strong=\"G2532\"* mother of|strong=\"G2532\"* Joses|strong=\"G2500\"*, saw|strong=\"G2334\"* where|strong=\"G4226\"* he|strong=\"G2532\"* was|strong=\"G3588\"* laid|strong=\"G5087\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"* was|strong=\"G3588\"* past|strong=\"G1230\"*, Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"*, and|strong=\"G2532\"* Mary|strong=\"G3137\"* the|strong=\"G2532\"* mother of|strong=\"G2532\"* James|strong=\"G2385\"*, and|strong=\"G2532\"* Salome|strong=\"G4539\"* bought spices, that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* come|strong=\"G2064\"* and|strong=\"G2532\"* anoint him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "Very|strong=\"G3029\"* early|strong=\"G4404\"* on|strong=\"G1909\"* the|strong=\"G2532\"* first|strong=\"G1520\"* day|strong=\"G4521\"* of|strong=\"G2532\"* the|strong=\"G2532\"* week|strong=\"G4521\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G2532\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"* when|strong=\"G2532\"* the|strong=\"G2532\"* sun|strong=\"G2246\"* had|strong=\"G2532\"* risen|strong=\"G2532\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* saying|strong=\"G3004\"* among|strong=\"G1537\"* themselves|strong=\"G1438\"*, “Who|strong=\"G5101\"* will|strong=\"G5101\"* roll away the|strong=\"G2532\"* stone|strong=\"G3037\"* from|strong=\"G1537\"* the|strong=\"G2532\"* door|strong=\"G2374\"* of|strong=\"G1537\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"* for|strong=\"G4314\"* us|strong=\"G3004\"*?”" + }, + { + "verseNum": 4, + "text": "for|strong=\"G1063\"* it|strong=\"G2532\"* was|strong=\"G1510\"* very|strong=\"G2532\"* big|strong=\"G3173\"*. Looking|strong=\"G2334\"* up|strong=\"G2532\"*, they|strong=\"G2532\"* saw|strong=\"G2334\"* that|strong=\"G3754\"* the|strong=\"G2532\"* stone|strong=\"G3037\"* was|strong=\"G1510\"* rolled|strong=\"G3037\"* back." + }, + { + "verseNum": 5, + "text": "Entering|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G1722\"* tomb|strong=\"G3419\"*, they|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G2532\"* young|strong=\"G3495\"* man|strong=\"G3495\"* sitting|strong=\"G2521\"* on|strong=\"G1722\"* the|strong=\"G1722\"* right|strong=\"G1188\"* side|strong=\"G1188\"*, dressed|strong=\"G4016\"* in|strong=\"G1722\"* a|strong=\"G2532\"* white|strong=\"G3022\"* robe|strong=\"G4749\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* amazed|strong=\"G1568\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “Don’t|strong=\"G3588\"* be|strong=\"G1510\"* amazed|strong=\"G1568\"*. You|strong=\"G3004\"* seek|strong=\"G2212\"* Jesus|strong=\"G2424\"*, the|strong=\"G1161\"* Nazarene|strong=\"G3479\"*, who|strong=\"G3588\"* has|strong=\"G3708\"* been|strong=\"G1510\"* crucified|strong=\"G4717\"*. He|strong=\"G1161\"* has|strong=\"G3708\"* risen|strong=\"G1453\"*! He|strong=\"G1161\"* is|strong=\"G1510\"* not|strong=\"G3756\"* here|strong=\"G5602\"*. See|strong=\"G3708\"* the|strong=\"G1161\"* place|strong=\"G5117\"* where|strong=\"G3699\"* they|strong=\"G1161\"* laid|strong=\"G5087\"* him|strong=\"G3588\"*!" + }, + { + "verseNum": 7, + "text": "But|strong=\"G2532\"* go|strong=\"G5217\"*, tell|strong=\"G3004\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* Peter|strong=\"G4074\"*, ‘He|strong=\"G2532\"* goes|strong=\"G5217\"* before|strong=\"G4254\"* you|strong=\"G5210\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*. There|strong=\"G1563\"* you|strong=\"G5210\"* will|strong=\"G2532\"* see|strong=\"G3708\"* him|strong=\"G3588\"*, as|strong=\"G2531\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* you|strong=\"G5210\"*.’”" + }, + { + "verseNum": 8, + "text": "They|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"*,+ 16:8 TR adds “quickly”* and|strong=\"G2532\"* fled|strong=\"G5343\"* from|strong=\"G2532\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"*, for|strong=\"G1063\"* trembling|strong=\"G5156\"* and|strong=\"G2532\"* astonishment|strong=\"G1611\"* had|strong=\"G2192\"* come|strong=\"G1831\"* on|strong=\"G4012\"* them|strong=\"G3588\"*. They|strong=\"G2532\"* said|strong=\"G3004\"* nothing|strong=\"G3762\"* to|strong=\"G2532\"* anyone|strong=\"G3762\"*; for|strong=\"G1063\"* they|strong=\"G2532\"* were|strong=\"G3588\"* afraid|strong=\"G5399\"*.+ 16:8 One isolated manuscript omits verses 9-20 but adds this “short ending of Mark” to the end of verse 8: They told all that had been commanded them briefly to those around Peter. After that, Jesus himself sent them out, from east to west, with the sacred and imperishable proclamation of eternal salvation.*" + }, + { + "verseNum": 9, + "text": "+ 16:9 NU includes the text of verses 9-20, but mentions in a footnote that a few manuscripts omitted it. The translators of the World English Bible regard Mark 16:9-20 as reliable based on an overwhelming majority of textual evidence, including not only the authoritative Greek Majority Text New Testament, but also the TR and many of the manuscripts cited in the NU text.*Now|strong=\"G1161\"* when|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G3739\"* risen early|strong=\"G4404\"* on|strong=\"G1161\"* the|strong=\"G1161\"* first|strong=\"G4413\"* day|strong=\"G4521\"* of|strong=\"G3844\"* the|strong=\"G1161\"* week|strong=\"G4521\"*, he|strong=\"G1161\"* appeared|strong=\"G5316\"* first|strong=\"G4413\"* to|strong=\"G1161\"* Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"*, from|strong=\"G3844\"* whom|strong=\"G3739\"* he|strong=\"G1161\"* had|strong=\"G3739\"* cast|strong=\"G1544\"* out|strong=\"G1544\"* seven|strong=\"G2033\"* demons|strong=\"G1140\"*." + }, + { + "verseNum": 10, + "text": "She|strong=\"G2532\"* went|strong=\"G4198\"* and|strong=\"G2532\"* told those|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2532\"* been|strong=\"G1096\"* with|strong=\"G3326\"* him|strong=\"G3588\"*, as|strong=\"G2532\"* they|strong=\"G2532\"* mourned|strong=\"G3996\"* and|strong=\"G2532\"* wept|strong=\"G2799\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* heard that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G2532\"* alive|strong=\"G2198\"* and|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G2532\"* seen|strong=\"G2300\"* by|strong=\"G5259\"* her|strong=\"G3754\"*, they|strong=\"G2532\"* disbelieved." + }, + { + "verseNum": 12, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"* he|strong=\"G1161\"* was|strong=\"G3778\"* revealed|strong=\"G5319\"* in|strong=\"G1722\"* another|strong=\"G2087\"* form|strong=\"G3444\"* to|strong=\"G1519\"* two|strong=\"G1417\"* of|strong=\"G1537\"* them|strong=\"G1722\"* as|strong=\"G1519\"* they|strong=\"G1161\"* walked|strong=\"G4043\"*, on|strong=\"G1722\"* their|strong=\"G1722\"* way|strong=\"G4198\"* into|strong=\"G1519\"* the|strong=\"G1722\"* country." + }, + { + "verseNum": 13, + "text": "They|strong=\"G3588\"* went|strong=\"G3588\"* away and|strong=\"G2548\"* told it|strong=\"G1565\"* to|strong=\"G3588\"* the|strong=\"G3588\"* rest|strong=\"G3062\"*. They|strong=\"G3588\"* didn’t|strong=\"G3588\"* believe|strong=\"G4100\"* them|strong=\"G3588\"*, either|strong=\"G3761\"*." + }, + { + "verseNum": 14, + "text": "Afterward|strong=\"G5305\"* he|strong=\"G2532\"* was|strong=\"G3588\"* revealed|strong=\"G5319\"* to|strong=\"G2532\"* the|strong=\"G2532\"* eleven|strong=\"G1733\"* themselves as|strong=\"G1161\"* they|strong=\"G2532\"* sat|strong=\"G2532\"* at|strong=\"G1161\"* the|strong=\"G2532\"* table; and|strong=\"G2532\"* he|strong=\"G2532\"* rebuked them|strong=\"G3588\"* for|strong=\"G3754\"* their|strong=\"G2532\"* unbelief and|strong=\"G2532\"* hardness|strong=\"G4641\"* of|strong=\"G2532\"* heart|strong=\"G4641\"*, because|strong=\"G3754\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* believe|strong=\"G4100\"* those|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2532\"* seen|strong=\"G2300\"* him|strong=\"G3588\"* after|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* risen|strong=\"G1453\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Go|strong=\"G4198\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w preach|strong=\"G2784\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Good|strong=\"G3956\"\\+w* \\+w News|strong=\"G2098\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w whole|strong=\"G3956\"\\+w* \\+w creation|strong=\"G2937\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* baptized \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w saved|strong=\"G4982\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* disbelieves \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w condemned|strong=\"G2632\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w These|strong=\"G3778\"\\+w* \\+w signs|strong=\"G4592\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w accompany|strong=\"G3877\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w*: \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w demons|strong=\"G1140\"\\+w*; \\+w they|strong=\"G1161\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w speak|strong=\"G2980\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w languages|strong=\"G1100\"\\+w*; *" + }, + { + "verseNum": 18, + "text": "\\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w take|strong=\"G2532\"\\+w* \\+w up|strong=\"G3361\"\\+w* \\+w serpents|strong=\"G3789\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w if|strong=\"G2579\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w any|strong=\"G5100\"\\+w* \\+w deadly|strong=\"G2286\"\\+w* \\+w thing|strong=\"G5100\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G5100\"\\+w* hurt \\+w them|strong=\"G1438\"\\+w*; \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w lay|strong=\"G2007\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* sick, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w recover|strong=\"G2192\"\\+w*.”*" + }, + { + "verseNum": 19, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*,+ 16:19 NU adds “Jesus”* after|strong=\"G3326\"* he|strong=\"G2532\"* had|strong=\"G2424\"* spoken|strong=\"G2980\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, was|strong=\"G3588\"* received up|strong=\"G1519\"* into|strong=\"G1519\"* heaven|strong=\"G3772\"* and|strong=\"G2532\"* sat|strong=\"G2523\"* down|strong=\"G2523\"* at|strong=\"G1519\"* the|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G1537\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* preached|strong=\"G2784\"* everywhere|strong=\"G3837\"*, the|strong=\"G2532\"* Lord|strong=\"G2962\"* working|strong=\"G4903\"* with|strong=\"G1223\"* them|strong=\"G3588\"* and|strong=\"G2532\"* confirming the|strong=\"G2532\"* word|strong=\"G3056\"* by|strong=\"G1223\"* the|strong=\"G2532\"* signs|strong=\"G4592\"* that|strong=\"G3588\"* followed|strong=\"G1872\"*. Amen." + } + ] + } + ] + }, + { + "name": "Luke", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Since many|strong=\"G4183\"* have|strong=\"G1473\"* undertaken|strong=\"G2021\"* to|strong=\"G1722\"* set in|strong=\"G1722\"* order a|strong=\"G1722\"* narrative concerning|strong=\"G4012\"* those|strong=\"G3588\"* matters which|strong=\"G3588\"* have|strong=\"G1473\"* been|strong=\"G4183\"* fulfilled among|strong=\"G1722\"* us|strong=\"G2249\"*," + }, + { + "verseNum": 2, + "text": "even|strong=\"G2532\"* as|strong=\"G2531\"* those|strong=\"G3588\"* who|strong=\"G3588\"* from|strong=\"G2532\"* the|strong=\"G2532\"* beginning were|strong=\"G3588\"* eyewitnesses and|strong=\"G2532\"* servants|strong=\"G5257\"* of|strong=\"G3056\"* the|strong=\"G2532\"* word|strong=\"G3056\"* delivered|strong=\"G3860\"* them|strong=\"G3588\"* to|strong=\"G2532\"* us|strong=\"G2249\"*," + }, + { + "verseNum": 3, + "text": "it|strong=\"G1380\"* seemed|strong=\"G1380\"* good|strong=\"G1380\"* to|strong=\"G1380\"* me|strong=\"G2504\"* also|strong=\"G2504\"*, having traced the|strong=\"G3956\"* course of|strong=\"G3956\"* all|strong=\"G3956\"* things|strong=\"G3956\"* accurately from the|strong=\"G3956\"* first, to|strong=\"G1380\"* write|strong=\"G1125\"* to|strong=\"G1380\"* you|strong=\"G4771\"* in|strong=\"G3956\"* order|strong=\"G2517\"*, most|strong=\"G2903\"* excellent|strong=\"G2903\"* Theophilus|strong=\"G2321\"*;" + }, + { + "verseNum": 4, + "text": "that|strong=\"G2443\"* you|strong=\"G3739\"* might know|strong=\"G1921\"* the|strong=\"G3588\"* certainty concerning|strong=\"G4012\"* the|strong=\"G3588\"* things|strong=\"G3588\"* in|strong=\"G4012\"* which|strong=\"G3739\"* you|strong=\"G3739\"* were|strong=\"G3588\"* instructed|strong=\"G2727\"*." + }, + { + "verseNum": 5, + "text": "There|strong=\"G2532\"* was|strong=\"G1096\"* in|strong=\"G1722\"* the|strong=\"G1722\"* days|strong=\"G2250\"* of|strong=\"G1537\"* Herod|strong=\"G2264\"*, the|strong=\"G1722\"* king|strong=\"G3588\"* of|strong=\"G1537\"* Judea|strong=\"G2449\"*, a|strong=\"G1096\"* certain|strong=\"G5100\"* priest|strong=\"G2409\"* named|strong=\"G3686\"* Zacharias|strong=\"G2197\"*, of|strong=\"G1537\"* the|strong=\"G1722\"* priestly division|strong=\"G2183\"* of|strong=\"G1537\"* Abijah. He|strong=\"G2532\"* had|strong=\"G2532\"* a|strong=\"G1096\"* wife|strong=\"G1135\"* of|strong=\"G1537\"* the|strong=\"G1722\"* daughters|strong=\"G2364\"* of|strong=\"G1537\"* Aaron, and|strong=\"G2532\"* her|strong=\"G3588\"* name|strong=\"G3686\"* was|strong=\"G1096\"* Elizabeth|strong=\"G1665\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"G2532\"* were|strong=\"G1510\"* both|strong=\"G2532\"* righteous|strong=\"G1342\"* before|strong=\"G1722\"* God|strong=\"G2316\"*, walking|strong=\"G4198\"* blamelessly in|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* commandments|strong=\"G1785\"* and|strong=\"G2532\"* ordinances|strong=\"G1345\"* of|strong=\"G2316\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* no|strong=\"G3756\"* child|strong=\"G5043\"*, because|strong=\"G2530\"* Elizabeth|strong=\"G1665\"* was|strong=\"G1510\"* barren|strong=\"G4723\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* both|strong=\"G2532\"* were|strong=\"G1510\"* well|strong=\"G2532\"* advanced|strong=\"G4260\"* in|strong=\"G1722\"* years|strong=\"G2250\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"G1161\"* while|strong=\"G1722\"* he|strong=\"G1161\"* executed the|strong=\"G1722\"* priest’s office before|strong=\"G1722\"* God|strong=\"G2316\"* in|strong=\"G1722\"* the|strong=\"G1722\"* order|strong=\"G5010\"* of|strong=\"G2316\"* his|strong=\"G1722\"* division|strong=\"G2183\"*" + }, + { + "verseNum": 9, + "text": "according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G1519\"* custom|strong=\"G1485\"* of|strong=\"G2962\"* the|strong=\"G1519\"* priest’s|strong=\"G2962\"* office|strong=\"G2405\"*, his|strong=\"G1519\"* lot|strong=\"G2975\"* was|strong=\"G3588\"* to|strong=\"G1519\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G1519\"* temple|strong=\"G3485\"* of|strong=\"G2962\"* the|strong=\"G1519\"* Lord|strong=\"G2962\"* and|strong=\"G2962\"* burn|strong=\"G2370\"* incense|strong=\"G2370\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"G2532\"* whole|strong=\"G3956\"* multitude|strong=\"G4128\"* of|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"* were|strong=\"G1510\"* praying|strong=\"G4336\"* outside|strong=\"G1854\"* at|strong=\"G3588\"* the|strong=\"G2532\"* hour|strong=\"G5610\"* of|strong=\"G2532\"* incense|strong=\"G2368\"*." + }, + { + "verseNum": 11, + "text": "An|strong=\"G1161\"* angel of|strong=\"G1537\"* the|strong=\"G1537\"* Lord|strong=\"G2962\"* appeared|strong=\"G3708\"* to|strong=\"G1161\"* him|strong=\"G3588\"*, standing|strong=\"G2476\"* on|strong=\"G1537\"* the|strong=\"G1537\"* right|strong=\"G1188\"* side|strong=\"G1188\"* of|strong=\"G1537\"* the|strong=\"G1537\"* altar|strong=\"G2379\"* of|strong=\"G1537\"* incense|strong=\"G2368\"*." + }, + { + "verseNum": 12, + "text": "Zacharias|strong=\"G2197\"* was|strong=\"G2532\"* troubled|strong=\"G5015\"* when|strong=\"G2532\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* him|strong=\"G3708\"*, and|strong=\"G2532\"* fear|strong=\"G5401\"* fell|strong=\"G1968\"* upon|strong=\"G1909\"* him|strong=\"G3708\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* angel said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Don’t|strong=\"G3588\"* be|strong=\"G2532\"* afraid|strong=\"G5399\"*, Zacharias|strong=\"G2197\"*, because|strong=\"G1360\"* your|strong=\"G2532\"* request|strong=\"G1162\"* has|strong=\"G2532\"* been|strong=\"G2532\"* heard|strong=\"G1522\"*. Your|strong=\"G2532\"* wife|strong=\"G1135\"*, Elizabeth|strong=\"G1665\"*, will|strong=\"G2532\"* bear|strong=\"G1080\"* you|strong=\"G4771\"* a|strong=\"G2532\"* son|strong=\"G5207\"*, and|strong=\"G2532\"* you|strong=\"G4771\"* shall|strong=\"G2532\"* call|strong=\"G2564\"* his|strong=\"G2532\"* name|strong=\"G3686\"* John|strong=\"G2491\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"G4771\"* will|strong=\"G1510\"* have|strong=\"G2532\"* joy|strong=\"G5479\"* and|strong=\"G2532\"* gladness|strong=\"G5479\"*, and|strong=\"G2532\"* many|strong=\"G4183\"* will|strong=\"G1510\"* rejoice|strong=\"G5463\"* at|strong=\"G1909\"* his|strong=\"G1909\"* birth|strong=\"G1078\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* great|strong=\"G3173\"* in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G1510\"* drink|strong=\"G4095\"* no|strong=\"G3756\"* wine|strong=\"G3631\"* nor|strong=\"G2532\"* strong|strong=\"G3173\"* drink|strong=\"G4095\"*. He|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* filled|strong=\"G4130\"* with|strong=\"G1537\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, even|strong=\"G2532\"* from|strong=\"G1537\"* his|strong=\"G2532\"* mother|strong=\"G3384\"*’s|strong=\"G2962\"* womb|strong=\"G2836\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* will|strong=\"G2316\"* turn|strong=\"G1994\"* many|strong=\"G4183\"* of|strong=\"G5207\"* the|strong=\"G2532\"* children|strong=\"G5207\"* of|strong=\"G5207\"* Israel|strong=\"G2474\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* their|strong=\"G2532\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"G2532\"* will|strong=\"G2532\"* go|strong=\"G4281\"* before|strong=\"G1799\"* him|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* spirit|strong=\"G4151\"* and|strong=\"G2532\"* power|strong=\"G1411\"* of|strong=\"G4151\"* Elijah|strong=\"G2243\"*, ‘to|strong=\"G2532\"* turn|strong=\"G1994\"* the|strong=\"G1722\"* hearts|strong=\"G2588\"* of|strong=\"G4151\"* the|strong=\"G1722\"* fathers|strong=\"G3962\"* to|strong=\"G2532\"* the|strong=\"G1722\"* children|strong=\"G5043\"*,’+ 1:17 Malachi 4:6* and|strong=\"G2532\"* the|strong=\"G1722\"* disobedient to|strong=\"G2532\"* the|strong=\"G1722\"* wisdom|strong=\"G5428\"* of|strong=\"G4151\"* the|strong=\"G1722\"* just|strong=\"G1342\"*; to|strong=\"G2532\"* prepare|strong=\"G2090\"* a|strong=\"G2532\"* people|strong=\"G2992\"* prepared|strong=\"G2090\"* for|strong=\"G1909\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*.”" + }, + { + "verseNum": 18, + "text": "Zacharias|strong=\"G2197\"* said|strong=\"G3004\"* to|strong=\"G4314\"* the|strong=\"G1722\"* angel, “How|strong=\"G5101\"* can|strong=\"G3004\"* I|strong=\"G1473\"* be|strong=\"G1510\"* sure|strong=\"G1097\"* of|strong=\"G2250\"* this|strong=\"G3778\"*? For|strong=\"G1063\"* I|strong=\"G1473\"* am|strong=\"G1510\"* an|strong=\"G2532\"* old|strong=\"G2532\"* man|strong=\"G3778\"*, and|strong=\"G2532\"* my|strong=\"G1722\"* wife|strong=\"G1135\"* is|strong=\"G1510\"* well|strong=\"G2532\"* advanced|strong=\"G4260\"* in|strong=\"G1722\"* years|strong=\"G2250\"*.”" + }, + { + "verseNum": 19, + "text": "The|strong=\"G2532\"* angel answered|strong=\"G3004\"* him|strong=\"G3588\"*, “I|strong=\"G1473\"* am|strong=\"G1510\"* Gabriel|strong=\"G1043\"*, who|strong=\"G3588\"* stands|strong=\"G3936\"* in|strong=\"G2532\"* the|strong=\"G2532\"* presence|strong=\"G1799\"* of|strong=\"G2316\"* God|strong=\"G2316\"*. I|strong=\"G1473\"* was|strong=\"G1510\"* sent|strong=\"G2316\"* to|strong=\"G4314\"* speak|strong=\"G2980\"* to|strong=\"G4314\"* you|strong=\"G4771\"* and|strong=\"G2532\"* to|strong=\"G4314\"* bring|strong=\"G2097\"* you|strong=\"G4771\"* this|strong=\"G3778\"* good|strong=\"G2097\"* news|strong=\"G2097\"*." + }, + { + "verseNum": 20, + "text": "Behold|strong=\"G2400\"*,+ 1:20 “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* you|strong=\"G3739\"* will|strong=\"G1510\"* be|strong=\"G1096\"* silent|strong=\"G4623\"* and|strong=\"G2532\"* not|strong=\"G3756\"* able|strong=\"G1410\"* to|strong=\"G1519\"* speak|strong=\"G2980\"* until|strong=\"G1519\"* the|strong=\"G2532\"* day|strong=\"G2250\"* that|strong=\"G3739\"* these|strong=\"G3778\"* things|strong=\"G3778\"* will|strong=\"G1510\"* happen|strong=\"G1096\"*, because|strong=\"G2532\"* you|strong=\"G3739\"* didn’t|strong=\"G3588\"* believe|strong=\"G4100\"* my|strong=\"G3708\"* words|strong=\"G3056\"*, which|strong=\"G3739\"* will|strong=\"G1510\"* be|strong=\"G1096\"* fulfilled|strong=\"G4137\"* in|strong=\"G1519\"* their|strong=\"G2532\"* proper|strong=\"G2540\"* time|strong=\"G2540\"*.”" + }, + { + "verseNum": 21, + "text": "The|strong=\"G1722\"* people|strong=\"G2992\"* were|strong=\"G1510\"* waiting|strong=\"G4328\"* for|strong=\"G1722\"* Zacharias|strong=\"G2197\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* marveled|strong=\"G2296\"* that|strong=\"G3588\"* he|strong=\"G2532\"* delayed in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G3485\"*." + }, + { + "verseNum": 22, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* came|strong=\"G1831\"* out|strong=\"G1831\"*, he|strong=\"G2532\"* could|strong=\"G1410\"* not|strong=\"G3756\"* speak|strong=\"G2980\"* to|strong=\"G2532\"* them|strong=\"G3588\"*. They|strong=\"G2532\"* perceived|strong=\"G1921\"* that|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2532\"* seen|strong=\"G3708\"* a|strong=\"G2532\"* vision|strong=\"G3701\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G3485\"*. He|strong=\"G2532\"* continued making|strong=\"G2532\"* signs|strong=\"G1269\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* remained|strong=\"G1265\"* mute|strong=\"G2974\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"G5613\"* the|strong=\"G2532\"* days|strong=\"G2250\"* of|strong=\"G2250\"* his|strong=\"G1519\"* service|strong=\"G3009\"* were|strong=\"G3588\"* fulfilled, he|strong=\"G2532\"* departed to|strong=\"G1519\"* his|strong=\"G1519\"* house|strong=\"G3624\"*." + }, + { + "verseNum": 24, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* days|strong=\"G2250\"* Elizabeth|strong=\"G1665\"* his|strong=\"G1438\"* wife|strong=\"G1135\"* conceived|strong=\"G4815\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* hid|strong=\"G4032\"* herself|strong=\"G1438\"* five|strong=\"G4002\"* months|strong=\"G3376\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 25, + "text": "“Thus|strong=\"G3779\"* has|strong=\"G2962\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* done|strong=\"G4160\"* to|strong=\"G1722\"* me|strong=\"G1473\"* in|strong=\"G1722\"* the|strong=\"G1722\"* days|strong=\"G2250\"* in|strong=\"G1722\"* which|strong=\"G3739\"* he|strong=\"G3739\"* looked|strong=\"G1896\"* at|strong=\"G1722\"* me|strong=\"G1473\"*, to|strong=\"G1722\"* take|strong=\"G1896\"* away my|strong=\"G1722\"* reproach|strong=\"G3681\"* among|strong=\"G1722\"* men|strong=\"G1722\"*.”" + }, + { + "verseNum": 26, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sixth|strong=\"G1623\"* month|strong=\"G3376\"*, the|strong=\"G1722\"* angel Gabriel|strong=\"G1043\"* was|strong=\"G3588\"* sent|strong=\"G2316\"* from|strong=\"G3588\"* God|strong=\"G2316\"* to|strong=\"G1519\"* a|strong=\"G1519\"* city|strong=\"G4172\"* of|strong=\"G2316\"* Galilee|strong=\"G1056\"* named|strong=\"G3686\"* Nazareth|strong=\"G3478\"*," + }, + { + "verseNum": 27, + "text": "to|strong=\"G4314\"* a|strong=\"G2532\"* virgin|strong=\"G3933\"* pledged to|strong=\"G4314\"* be|strong=\"G2532\"* married to|strong=\"G4314\"* a|strong=\"G2532\"* man|strong=\"G3739\"* whose|strong=\"G3739\"* name|strong=\"G3686\"* was|strong=\"G3588\"* Joseph|strong=\"G2501\"*, of|strong=\"G1537\"* David|strong=\"G1138\"*’s house|strong=\"G3624\"*. The|strong=\"G2532\"* virgin|strong=\"G3933\"*’s name|strong=\"G3686\"* was|strong=\"G3588\"* Mary|strong=\"G3137\"*." + }, + { + "verseNum": 28, + "text": "Having|strong=\"G2532\"* come|strong=\"G1525\"* in|strong=\"G1525\"*, the|strong=\"G2532\"* angel said|strong=\"G3004\"* to|strong=\"G4314\"* her|strong=\"G1438\"*, “Rejoice|strong=\"G5463\"*, you|strong=\"G4771\"* highly favored|strong=\"G5487\"* one|strong=\"G1438\"*! The|strong=\"G2532\"* Lord|strong=\"G2962\"* is|strong=\"G3588\"* with|strong=\"G3326\"* you|strong=\"G4771\"*. Blessed are|strong=\"G3588\"* you|strong=\"G4771\"* among|strong=\"G4314\"* women!”" + }, + { + "verseNum": 29, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* she|strong=\"G2532\"* saw him|strong=\"G3588\"*, she|strong=\"G2532\"* was|strong=\"G1510\"* greatly troubled|strong=\"G1298\"* at|strong=\"G1909\"* the|strong=\"G2532\"* saying|strong=\"G3056\"*, and|strong=\"G2532\"* considered what|strong=\"G3588\"* kind|strong=\"G4217\"* of|strong=\"G3056\"* salutation this|strong=\"G3778\"* might|strong=\"G2532\"* be|strong=\"G1510\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"G2532\"* angel said|strong=\"G3004\"* to|strong=\"G2532\"* her|strong=\"G3137\"*, “Don’t|strong=\"G3588\"* be|strong=\"G2532\"* afraid|strong=\"G5399\"*, Mary|strong=\"G3137\"*, for|strong=\"G1063\"* you|strong=\"G3004\"* have|strong=\"G2532\"* found|strong=\"G2147\"* favor|strong=\"G5485\"* with|strong=\"G3844\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 31, + "text": "Behold|strong=\"G2400\"*, you|strong=\"G1722\"* will|strong=\"G2532\"* conceive|strong=\"G4815\"* in|strong=\"G1722\"* your|strong=\"G2532\"* womb|strong=\"G1064\"* and|strong=\"G2532\"* give|strong=\"G5088\"* birth|strong=\"G5088\"* to|strong=\"G2532\"* a|strong=\"G2532\"* son|strong=\"G5207\"*, and|strong=\"G2532\"* shall|strong=\"G2532\"* name|strong=\"G3686\"* him|strong=\"G3588\"* ‘Jesus|strong=\"G2424\"*.’" + }, + { + "verseNum": 32, + "text": "He|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G1510\"* great|strong=\"G3173\"* and|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G1510\"* called|strong=\"G2564\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G2532\"* Most|strong=\"G5310\"* High|strong=\"G5310\"*. The|strong=\"G2532\"* Lord|strong=\"G2962\"* God|strong=\"G2316\"* will|strong=\"G2316\"* give|strong=\"G1325\"* him|strong=\"G3588\"* the|strong=\"G2532\"* throne|strong=\"G2362\"* of|strong=\"G5207\"* his|strong=\"G2532\"* father|strong=\"G3962\"* David|strong=\"G1138\"*," + }, + { + "verseNum": 33, + "text": "and|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G1510\"* reign|strong=\"G2532\"* over|strong=\"G1909\"* the|strong=\"G2532\"* house|strong=\"G3624\"* of|strong=\"G2532\"* Jacob|strong=\"G2384\"* forever|strong=\"G1519\"*. There|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* no|strong=\"G3756\"* end|strong=\"G5056\"* to|strong=\"G1519\"* his|strong=\"G1519\"* Kingdom.”" + }, + { + "verseNum": 34, + "text": "Mary|strong=\"G3137\"* said|strong=\"G3004\"* to|strong=\"G4314\"* the|strong=\"G1161\"* angel, “How|strong=\"G4459\"* can|strong=\"G3004\"* this|strong=\"G3778\"* be|strong=\"G1510\"*, seeing|strong=\"G1893\"* I|strong=\"G1161\"* am|strong=\"G1510\"* a|strong=\"G1510\"* virgin|strong=\"G3756\"*?”" + }, + { + "verseNum": 35, + "text": "The|strong=\"G2532\"* angel answered|strong=\"G3004\"* her|strong=\"G3588\"*, “The|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* will|strong=\"G2316\"* come|strong=\"G1904\"* on|strong=\"G1909\"* you|strong=\"G4771\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* power|strong=\"G1411\"* of|strong=\"G5207\"* the|strong=\"G2532\"* Most|strong=\"G5310\"* High|strong=\"G5310\"* will|strong=\"G2316\"* overshadow|strong=\"G1982\"* you|strong=\"G4771\"*. Therefore|strong=\"G1352\"* also|strong=\"G2532\"* the|strong=\"G2532\"* holy|strong=\"G4151\"* one|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G3588\"* born|strong=\"G1080\"* from|strong=\"G2532\"* you|strong=\"G4771\"* will|strong=\"G2316\"* be|strong=\"G2532\"* called|strong=\"G2564\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 36, + "text": "Behold|strong=\"G2400\"*, Elizabeth|strong=\"G1665\"* your|strong=\"G2532\"* relative|strong=\"G4773\"* also|strong=\"G2532\"* has|strong=\"G3778\"* conceived|strong=\"G4815\"* a|strong=\"G2532\"* son|strong=\"G5207\"* in|strong=\"G1722\"* her|strong=\"G3708\"* old|strong=\"G2532\"* age|strong=\"G1094\"*; and|strong=\"G2532\"* this|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G1722\"* sixth|strong=\"G1623\"* month|strong=\"G3376\"* with|strong=\"G1722\"* her|strong=\"G3708\"* who|strong=\"G3588\"* was|strong=\"G1510\"* called|strong=\"G2564\"* barren|strong=\"G4723\"*." + }, + { + "verseNum": 37, + "text": "For|strong=\"G3754\"* nothing|strong=\"G3756\"* spoken by|strong=\"G3844\"* God|strong=\"G2316\"* is|strong=\"G3588\"* impossible|strong=\"G3756\"*.”+ 1:37 or, “For everything spoken by God is possible.”*" + }, + { + "verseNum": 38, + "text": "Mary|strong=\"G3137\"* said|strong=\"G3004\"*, “Behold|strong=\"G2400\"*, the|strong=\"G2532\"* servant|strong=\"G1399\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*; let|strong=\"G1096\"* it|strong=\"G2532\"* be|strong=\"G1096\"* done|strong=\"G1096\"* to|strong=\"G2532\"* me|strong=\"G1473\"* according|strong=\"G2596\"* to|strong=\"G2532\"* your|strong=\"G2962\"* word|strong=\"G4487\"*.”" + }, + { + "verseNum": 39, + "text": "Mary|strong=\"G3137\"* arose in|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"* and|strong=\"G1161\"* went|strong=\"G4198\"* into|strong=\"G1519\"* the|strong=\"G1722\"* hill|strong=\"G3714\"* country|strong=\"G3714\"* with|strong=\"G3326\"* haste|strong=\"G4710\"*, into|strong=\"G1519\"* a|strong=\"G1519\"* city|strong=\"G4172\"* of|strong=\"G2250\"* Judah|strong=\"G2455\"*," + }, + { + "verseNum": 40, + "text": "and|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* house|strong=\"G3624\"* of|strong=\"G2532\"* Zacharias|strong=\"G2197\"* and|strong=\"G2532\"* greeted Elizabeth|strong=\"G1665\"*." + }, + { + "verseNum": 41, + "text": "When|strong=\"G5613\"* Elizabeth|strong=\"G1665\"* heard Mary|strong=\"G3137\"*’s greeting, the|strong=\"G1722\"* baby|strong=\"G1025\"* leaped|strong=\"G4640\"* in|strong=\"G1722\"* her|strong=\"G3137\"* womb|strong=\"G2836\"*; and|strong=\"G2532\"* Elizabeth|strong=\"G1665\"* was|strong=\"G1096\"* filled|strong=\"G4130\"* with|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 42, + "text": "She|strong=\"G2532\"* called|strong=\"G3004\"* out|strong=\"G2532\"* with|strong=\"G1722\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G2906\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “Blessed|strong=\"G2127\"* are|strong=\"G3588\"* you|strong=\"G4771\"* among|strong=\"G1722\"* women|strong=\"G1135\"*, and|strong=\"G2532\"* blessed|strong=\"G2127\"* is|strong=\"G3588\"* the|strong=\"G1722\"* fruit|strong=\"G2590\"* of|strong=\"G2532\"* your|strong=\"G2532\"* womb|strong=\"G2836\"*!" + }, + { + "verseNum": 43, + "text": "Why|strong=\"G2443\"* am|strong=\"G1473\"* I|strong=\"G1473\"* so|strong=\"G2443\"* favored, that|strong=\"G2443\"* the|strong=\"G2532\"* mother|strong=\"G3384\"* of|strong=\"G2532\"* my|strong=\"G1473\"* Lord|strong=\"G2962\"* should|strong=\"G3588\"* come|strong=\"G2064\"* to|strong=\"G4314\"* me|strong=\"G1473\"*?" + }, + { + "verseNum": 44, + "text": "For|strong=\"G1063\"* behold|strong=\"G2400\"*, when|strong=\"G5613\"* the|strong=\"G1722\"* voice|strong=\"G5456\"* of|strong=\"G1722\"* your|strong=\"G3708\"* greeting came|strong=\"G1096\"* into|strong=\"G1519\"* my|strong=\"G3708\"* ears|strong=\"G3775\"*, the|strong=\"G1722\"* baby|strong=\"G1025\"* leaped|strong=\"G4640\"* in|strong=\"G1722\"* my|strong=\"G3708\"* womb|strong=\"G2836\"* for|strong=\"G1063\"* joy!" + }, + { + "verseNum": 45, + "text": "Blessed|strong=\"G3107\"* is|strong=\"G1510\"* she|strong=\"G2532\"* who|strong=\"G3588\"* believed|strong=\"G4100\"*, for|strong=\"G3754\"* there|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* a|strong=\"G2532\"* fulfillment|strong=\"G5050\"* of|strong=\"G2532\"* the|strong=\"G2532\"* things|strong=\"G3588\"* which|strong=\"G3588\"* have|strong=\"G2532\"* been|strong=\"G1510\"* spoken|strong=\"G2980\"* to|strong=\"G2532\"* her|strong=\"G3754\"* from|strong=\"G3844\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*!”" + }, + { + "verseNum": 46, + "text": "Mary|strong=\"G3137\"* said|strong=\"G3004\"*," + }, + { + "verseNum": 47, + "text": "My|strong=\"G1473\"* spirit|strong=\"G4151\"* has|strong=\"G2316\"* rejoiced in|strong=\"G1909\"* God|strong=\"G2316\"* my|strong=\"G1473\"* Savior|strong=\"G4990\"*," + }, + { + "verseNum": 48, + "text": "for|strong=\"G1063\"* he|strong=\"G3754\"* has|strong=\"G3708\"* looked|strong=\"G3708\"* at|strong=\"G1909\"* the|strong=\"G3956\"* humble|strong=\"G5014\"* state|strong=\"G5014\"* of|strong=\"G1909\"* his|strong=\"G3956\"* servant|strong=\"G1399\"*." + }, + { + "verseNum": 49, + "text": "For|strong=\"G3754\"* he|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G3588\"* mighty|strong=\"G1415\"* has|strong=\"G3748\"* done|strong=\"G4160\"* great|strong=\"G3173\"* things|strong=\"G3588\"* for|strong=\"G3754\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 50, + "text": "His|strong=\"G1519\"* mercy|strong=\"G1656\"* is|strong=\"G3588\"* for|strong=\"G1519\"* generations|strong=\"G1074\"* and|strong=\"G2532\"* generations|strong=\"G1074\"* on|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3588\"* fear|strong=\"G5399\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 51, + "text": "He|strong=\"G4160\"* has shown|strong=\"G4160\"* strength|strong=\"G2904\"* with|strong=\"G1722\"* his|strong=\"G1722\"* arm|strong=\"G1023\"*." + }, + { + "verseNum": 52, + "text": "He|strong=\"G2532\"* has|strong=\"G2532\"* put|strong=\"G2532\"* down|strong=\"G2507\"* princes from|strong=\"G2532\"* their|strong=\"G2532\"* thrones|strong=\"G2362\"*," + }, + { + "verseNum": 53, + "text": "He|strong=\"G2532\"* has|strong=\"G2532\"* filled|strong=\"G1705\"* the|strong=\"G2532\"* hungry|strong=\"G3983\"* with|strong=\"G2532\"* good|strong=\"G2532\"* things|strong=\"G2756\"*." + }, + { + "verseNum": 54, + "text": "He|strong=\"G2474\"* has given help to|strong=\"G1656\"* Israel|strong=\"G2474\"*, his|strong=\"G3403\"* servant|strong=\"G3816\"*, that|strong=\"G3403\"* he|strong=\"G2474\"* might remember|strong=\"G3403\"* mercy|strong=\"G1656\"*," + }, + { + "verseNum": 55, + "text": "as|strong=\"G2531\"* he|strong=\"G2532\"* spoke|strong=\"G2980\"* to|strong=\"G1519\"* our|strong=\"G2532\"* fathers|strong=\"G3962\"*," + }, + { + "verseNum": 56, + "text": "Mary|strong=\"G3137\"* stayed|strong=\"G3306\"* with|strong=\"G4862\"* her|strong=\"G1519\"* about|strong=\"G5613\"* three|strong=\"G5140\"* months|strong=\"G3376\"*, and|strong=\"G2532\"* then|strong=\"G2532\"* returned|strong=\"G5290\"* to|strong=\"G1519\"* her|strong=\"G1519\"* house|strong=\"G3624\"*." + }, + { + "verseNum": 57, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* time|strong=\"G5550\"* that|strong=\"G3588\"* Elizabeth|strong=\"G1665\"* should|strong=\"G3588\"* give|strong=\"G5088\"* birth|strong=\"G5088\"* was|strong=\"G3588\"* fulfilled, and|strong=\"G2532\"* she|strong=\"G2532\"* gave|strong=\"G5088\"* birth|strong=\"G5088\"* to|strong=\"G2532\"* a|strong=\"G2532\"* son|strong=\"G5207\"*." + }, + { + "verseNum": 58, + "text": "Her|strong=\"G3754\"* neighbors|strong=\"G4040\"* and|strong=\"G2532\"* her|strong=\"G3754\"* relatives|strong=\"G4773\"* heard that|strong=\"G3754\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* had|strong=\"G2532\"* magnified|strong=\"G3170\"* his|strong=\"G2532\"* mercy|strong=\"G1656\"* toward|strong=\"G3326\"* her|strong=\"G3754\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* rejoiced|strong=\"G4796\"* with|strong=\"G3326\"* her|strong=\"G3754\"*." + }, + { + "verseNum": 59, + "text": "On|strong=\"G1909\"* the|strong=\"G1722\"* eighth|strong=\"G3590\"* day|strong=\"G2250\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G2532\"* circumcise|strong=\"G4059\"* the|strong=\"G1722\"* child|strong=\"G3813\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* would|strong=\"G1096\"* have|strong=\"G2532\"* called|strong=\"G2564\"* him|strong=\"G3588\"* Zacharias|strong=\"G2197\"*, after|strong=\"G1909\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2250\"* his|strong=\"G1909\"* father|strong=\"G3962\"*." + }, + { + "verseNum": 60, + "text": "His|strong=\"G2532\"* mother|strong=\"G3384\"* answered|strong=\"G3004\"*, “Not|strong=\"G3780\"* so|strong=\"G2532\"*; but|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G2532\"* be|strong=\"G2532\"* called|strong=\"G2564\"* John|strong=\"G2491\"*.”" + }, + { + "verseNum": 61, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* her|strong=\"G1438\"*, “There|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3762\"* one|strong=\"G3762\"* among|strong=\"G1537\"* your|strong=\"G2532\"* relatives|strong=\"G4772\"* who|strong=\"G3739\"* is|strong=\"G1510\"* called|strong=\"G2564\"* by|strong=\"G1537\"* this|strong=\"G3778\"* name|strong=\"G3686\"*.”" + }, + { + "verseNum": 62, + "text": "They|strong=\"G1161\"* made|strong=\"G1161\"* signs|strong=\"G1770\"* to|strong=\"G2309\"* his|strong=\"G2564\"* father|strong=\"G3962\"*, what|strong=\"G5101\"* he|strong=\"G1161\"* would|strong=\"G2309\"* have|strong=\"G2309\"* him|strong=\"G3588\"* called|strong=\"G2564\"*." + }, + { + "verseNum": 63, + "text": "He|strong=\"G2532\"* asked|strong=\"G3004\"* for|strong=\"G2532\"* a|strong=\"G2532\"* writing|strong=\"G1125\"* tablet|strong=\"G4093\"*, and|strong=\"G2532\"* wrote|strong=\"G1125\"*, “His|strong=\"G3956\"* name|strong=\"G3686\"* is|strong=\"G1510\"* John|strong=\"G2491\"*.”" + }, + { + "verseNum": 64, + "text": "His|strong=\"G2532\"* mouth|strong=\"G4750\"* was|strong=\"G3588\"* opened immediately|strong=\"G3916\"* and|strong=\"G2532\"* his|strong=\"G2532\"* tongue|strong=\"G1100\"* freed, and|strong=\"G2532\"* he|strong=\"G2532\"* spoke|strong=\"G2980\"*, blessing|strong=\"G2127\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 65, + "text": "Fear|strong=\"G5401\"* came|strong=\"G1096\"* on|strong=\"G1909\"* all|strong=\"G3956\"* who|strong=\"G3588\"* lived|strong=\"G2532\"* around|strong=\"G1909\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* these|strong=\"G3778\"* sayings|strong=\"G4487\"* were|strong=\"G3588\"* talked|strong=\"G1255\"* about|strong=\"G1909\"* throughout|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* hill|strong=\"G3714\"* country|strong=\"G3714\"* of|strong=\"G2532\"* Judea|strong=\"G2449\"*." + }, + { + "verseNum": 66, + "text": "All|strong=\"G3956\"* who|strong=\"G5101\"* heard them|strong=\"G3588\"* laid|strong=\"G5087\"* them|strong=\"G3588\"* up|strong=\"G2532\"* in|strong=\"G1722\"* their|strong=\"G2532\"* heart|strong=\"G2588\"*, saying|strong=\"G3004\"*, “What|strong=\"G5101\"* then|strong=\"G2532\"* will|strong=\"G5101\"* this|strong=\"G3778\"* child|strong=\"G3813\"* be|strong=\"G1510\"*?” The|strong=\"G1722\"* hand|strong=\"G5495\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* was|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 67, + "text": "His|strong=\"G2532\"* father|strong=\"G3962\"* Zacharias|strong=\"G2197\"* was|strong=\"G3588\"* filled|strong=\"G4130\"* with|strong=\"G2532\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, and|strong=\"G2532\"* prophesied|strong=\"G4395\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 68, + "text": "“Blessed|strong=\"G2128\"* be|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* Israel|strong=\"G2474\"*," + }, + { + "verseNum": 69, + "text": "and|strong=\"G2532\"* has|strong=\"G2532\"* raised|strong=\"G1453\"* up|strong=\"G1453\"* a|strong=\"G2532\"* horn|strong=\"G2768\"* of|strong=\"G2532\"* salvation|strong=\"G4991\"* for|strong=\"G1722\"* us|strong=\"G2249\"* in|strong=\"G1722\"* the|strong=\"G1722\"* house|strong=\"G3624\"* of|strong=\"G2532\"* his|strong=\"G1722\"* servant|strong=\"G3816\"* David|strong=\"G1138\"*" + }, + { + "verseNum": 70, + "text": "(as|strong=\"G2531\"* he|strong=\"G3588\"* spoke|strong=\"G2980\"* by|strong=\"G1223\"* the|strong=\"G1223\"* mouth|strong=\"G4750\"* of|strong=\"G1223\"* his|strong=\"G1223\"* holy prophets|strong=\"G4396\"* who|strong=\"G3588\"* have|strong=\"G3588\"* been from|strong=\"G3588\"* of|strong=\"G1223\"* old)," + }, + { + "verseNum": 71, + "text": "salvation|strong=\"G4991\"* from|strong=\"G1537\"* our|strong=\"G2532\"* enemies|strong=\"G2190\"* and|strong=\"G2532\"* from|strong=\"G1537\"* the|strong=\"G2532\"* hand|strong=\"G5495\"* of|strong=\"G1537\"* all|strong=\"G3956\"* who|strong=\"G3588\"* hate|strong=\"G3404\"* us|strong=\"G2249\"*;" + }, + { + "verseNum": 72, + "text": "to|strong=\"G2532\"* show|strong=\"G4160\"* mercy|strong=\"G1656\"* toward|strong=\"G3326\"* our|strong=\"G2532\"* fathers|strong=\"G3962\"*," + }, + { + "verseNum": 73, + "text": "the|strong=\"G4314\"* oath|strong=\"G3727\"* which|strong=\"G3739\"* he|strong=\"G3739\"* swore|strong=\"G3660\"* to|strong=\"G4314\"* Abraham our|strong=\"G4314\"* father|strong=\"G3962\"*," + }, + { + "verseNum": 74, + "text": "to|strong=\"G1537\"* grant to|strong=\"G1537\"* us|strong=\"G1537\"* that|strong=\"G1537\"* we, being delivered|strong=\"G4506\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1537\"* hand|strong=\"G5495\"* of|strong=\"G1537\"* our|strong=\"G1537\"* enemies|strong=\"G2190\"*," + }, + { + "verseNum": 75, + "text": "in|strong=\"G1722\"* holiness|strong=\"G3742\"* and|strong=\"G2532\"* righteousness|strong=\"G1343\"* before|strong=\"G1799\"* him|strong=\"G3588\"* all|strong=\"G3956\"* the|strong=\"G1722\"* days|strong=\"G2250\"* of|strong=\"G2250\"* our|strong=\"G2532\"* life." + }, + { + "verseNum": 76, + "text": "And|strong=\"G2532\"* you|strong=\"G4771\"*, child|strong=\"G3813\"*, will|strong=\"G2532\"* be|strong=\"G2532\"* called|strong=\"G2564\"* a|strong=\"G2532\"* prophet|strong=\"G4396\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Most|strong=\"G5310\"* High|strong=\"G5310\"*;" + }, + { + "verseNum": 77, + "text": "to|strong=\"G1722\"* give|strong=\"G1325\"* knowledge|strong=\"G1108\"* of|strong=\"G1722\"* salvation|strong=\"G4991\"* to|strong=\"G1722\"* his|strong=\"G1722\"* people|strong=\"G2992\"* by|strong=\"G1722\"* the|strong=\"G1722\"* remission of|strong=\"G1722\"* their|strong=\"G1722\"* sins," + }, + { + "verseNum": 78, + "text": "because|strong=\"G1223\"* of|strong=\"G1537\"* the|strong=\"G1722\"* tender|strong=\"G4698\"* mercy|strong=\"G1656\"* of|strong=\"G1537\"* our|strong=\"G2316\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 79, + "text": "to|strong=\"G1519\"* shine|strong=\"G2014\"* on|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sit|strong=\"G2521\"* in|strong=\"G1722\"* darkness|strong=\"G4655\"* and|strong=\"G2532\"* the|strong=\"G1722\"* shadow|strong=\"G4639\"* of|strong=\"G2532\"* death|strong=\"G2288\"*;" + }, + { + "verseNum": 80, + "text": "The|strong=\"G1722\"* child|strong=\"G3813\"* was|strong=\"G1510\"* growing|strong=\"G1722\"* and|strong=\"G2532\"* becoming strong|strong=\"G2901\"* in|strong=\"G1722\"* spirit|strong=\"G4151\"*, and|strong=\"G2532\"* was|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* desert|strong=\"G2048\"* until|strong=\"G2193\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G4151\"* his|strong=\"G1722\"* public appearance to|strong=\"G4314\"* Israel|strong=\"G2474\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"*, a|strong=\"G1096\"* decree|strong=\"G1378\"* went|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G3844\"* Caesar|strong=\"G2541\"* Augustus that|strong=\"G3588\"* all|strong=\"G3956\"* the|strong=\"G1722\"* world|strong=\"G3625\"* should|strong=\"G3588\"* be|strong=\"G1096\"* enrolled." + }, + { + "verseNum": 2, + "text": "This|strong=\"G3778\"* was|strong=\"G1096\"* the|strong=\"G3588\"* first|strong=\"G4413\"* enrollment made|strong=\"G1096\"* when|strong=\"G1096\"* Quirinius|strong=\"G2958\"* was|strong=\"G1096\"* governor|strong=\"G2230\"* of|strong=\"G3588\"* Syria|strong=\"G4947\"*." + }, + { + "verseNum": 3, + "text": "All|strong=\"G3956\"* went|strong=\"G4198\"* to|strong=\"G1519\"* enroll themselves|strong=\"G1438\"*, everyone|strong=\"G3956\"* to|strong=\"G1519\"* his|strong=\"G1438\"* own|strong=\"G1438\"* city|strong=\"G4172\"*." + }, + { + "verseNum": 4, + "text": "Joseph|strong=\"G2501\"* also|strong=\"G2532\"* went|strong=\"G2532\"* up|strong=\"G1519\"* from|strong=\"G1537\"* Galilee|strong=\"G1056\"*, out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* city|strong=\"G4172\"* of|strong=\"G1537\"* Nazareth|strong=\"G3478\"*, into|strong=\"G1519\"* Judea|strong=\"G2449\"*, to|strong=\"G1519\"* David|strong=\"G1138\"*’s city|strong=\"G4172\"*, which|strong=\"G3588\"* is|strong=\"G1510\"* called|strong=\"G2564\"* Bethlehem, because|strong=\"G1223\"* he|strong=\"G2532\"* was|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G2532\"* house|strong=\"G3624\"* and|strong=\"G2532\"* family|strong=\"G3965\"* of|strong=\"G1537\"* David|strong=\"G1138\"*," + }, + { + "verseNum": 5, + "text": "to|strong=\"G1510\"* enroll himself|strong=\"G4862\"* with|strong=\"G4862\"* Mary|strong=\"G3137\"*, who|strong=\"G3588\"* was|strong=\"G1510\"* pledged to|strong=\"G1510\"* be|strong=\"G1510\"* married to|strong=\"G1510\"* him|strong=\"G3588\"* as|strong=\"G3588\"* wife, being|strong=\"G1510\"* pregnant." + }, + { + "verseNum": 6, + "text": "While|strong=\"G1722\"* they|strong=\"G1161\"* were|strong=\"G1510\"* there|strong=\"G1563\"*, the|strong=\"G1722\"* day|strong=\"G2250\"* had|strong=\"G1510\"* come|strong=\"G1096\"* for|strong=\"G1161\"* her|strong=\"G1438\"* to|strong=\"G1722\"* give|strong=\"G5088\"* birth|strong=\"G5088\"*." + }, + { + "verseNum": 7, + "text": "She|strong=\"G2532\"* gave|strong=\"G5088\"* birth|strong=\"G5088\"* to|strong=\"G2532\"* her|strong=\"G3588\"* firstborn|strong=\"G4416\"* son|strong=\"G5207\"*. She|strong=\"G2532\"* wrapped|strong=\"G4683\"* him|strong=\"G3588\"* in|strong=\"G1722\"* bands of|strong=\"G5207\"* cloth and|strong=\"G2532\"* laid|strong=\"G2532\"* him|strong=\"G3588\"* in|strong=\"G1722\"* a|strong=\"G2532\"* feeding trough, because|strong=\"G1360\"* there|strong=\"G2532\"* was|strong=\"G1510\"* no|strong=\"G3756\"* room|strong=\"G5117\"* for|strong=\"G1722\"* them|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* inn|strong=\"G2646\"*." + }, + { + "verseNum": 8, + "text": "There|strong=\"G2532\"* were|strong=\"G1510\"* shepherds|strong=\"G4166\"* in|strong=\"G1722\"* the|strong=\"G1722\"* same|strong=\"G2532\"* country|strong=\"G5561\"* staying in|strong=\"G1722\"* the|strong=\"G1722\"* field, and|strong=\"G2532\"* keeping|strong=\"G5442\"* watch|strong=\"G5438\"* by|strong=\"G1722\"* night|strong=\"G3571\"* over|strong=\"G1909\"* their|strong=\"G2532\"* flock|strong=\"G4167\"*." + }, + { + "verseNum": 9, + "text": "Behold, an|strong=\"G2532\"* angel of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* stood|strong=\"G2186\"* by|strong=\"G2532\"* them|strong=\"G1438\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* shone|strong=\"G4034\"* around|strong=\"G4034\"* them|strong=\"G1438\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G2532\"* terrified|strong=\"G5399\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"G2532\"* angel said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Don’t|strong=\"G3588\"* be|strong=\"G1510\"* afraid|strong=\"G5399\"*, for|strong=\"G1063\"* behold|strong=\"G2400\"*, I|strong=\"G2532\"* bring|strong=\"G2097\"* you|strong=\"G5210\"* good|strong=\"G2097\"* news|strong=\"G2097\"* of|strong=\"G2532\"* great|strong=\"G3173\"* joy|strong=\"G5479\"* which|strong=\"G3588\"* will|strong=\"G1510\"* be|strong=\"G1510\"* to|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G3754\"* there|strong=\"G3754\"* is|strong=\"G1510\"* born|strong=\"G5088\"* to|strong=\"G1722\"* you|strong=\"G5210\"* today|strong=\"G4594\"*, in|strong=\"G1722\"* David|strong=\"G1138\"*’s|strong=\"G2962\"* city|strong=\"G4172\"*, a|strong=\"G1722\"* Savior|strong=\"G4990\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"*+ 2:11 “Christ” means “Anointed One”.* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 12, + "text": "This|strong=\"G3778\"* is|strong=\"G3588\"* the|strong=\"G1722\"* sign|strong=\"G4592\"* to|strong=\"G2532\"* you|strong=\"G5210\"*: you|strong=\"G5210\"* will|strong=\"G2532\"* find|strong=\"G2147\"* a|strong=\"G2532\"* baby|strong=\"G1025\"* wrapped|strong=\"G4683\"* in|strong=\"G1722\"* strips of|strong=\"G2532\"* cloth, lying|strong=\"G2749\"* in|strong=\"G1722\"* a|strong=\"G2532\"* feeding trough.”" + }, + { + "verseNum": 13, + "text": "Suddenly|strong=\"G1810\"*, there|strong=\"G2532\"* was|strong=\"G1096\"* with|strong=\"G4862\"* the|strong=\"G2532\"* angel a|strong=\"G1096\"* multitude|strong=\"G4128\"* of|strong=\"G2316\"* the|strong=\"G2532\"* heavenly|strong=\"G3770\"* army|strong=\"G4756\"* praising God|strong=\"G2316\"* and|strong=\"G2532\"* saying|strong=\"G3004\"*," + }, + { + "verseNum": 14, + "text": "“Glory|strong=\"G1391\"* to|strong=\"G2532\"* God|strong=\"G2316\"* in|strong=\"G1722\"* the|strong=\"G1722\"* highest|strong=\"G5310\"*," + }, + { + "verseNum": 15, + "text": "When|strong=\"G5613\"* the|strong=\"G2532\"* angels went|strong=\"G1330\"* away from|strong=\"G2532\"* them|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*, the|strong=\"G2532\"* shepherds|strong=\"G4166\"* said|strong=\"G2980\"* to|strong=\"G1519\"* one|strong=\"G3739\"* another|strong=\"G3739\"*, “Let|strong=\"G1096\"*’s|strong=\"G2962\"* go|strong=\"G1330\"* to|strong=\"G1519\"* Bethlehem, now|strong=\"G2532\"*, and|strong=\"G2532\"* see|strong=\"G3708\"* this|strong=\"G3778\"* thing|strong=\"G3778\"* that|strong=\"G3739\"* has|strong=\"G2962\"* happened|strong=\"G1096\"*, which|strong=\"G3739\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* has|strong=\"G2962\"* made|strong=\"G1096\"* known|strong=\"G1107\"* to|strong=\"G1519\"* us|strong=\"G1519\"*.”" + }, + { + "verseNum": 16, + "text": "They|strong=\"G2532\"* came|strong=\"G2064\"* with|strong=\"G1722\"* haste|strong=\"G4692\"* and|strong=\"G2532\"* found|strong=\"G2532\"* both|strong=\"G2532\"* Mary|strong=\"G3137\"* and|strong=\"G2532\"* Joseph|strong=\"G2501\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* baby|strong=\"G1025\"* was|strong=\"G3588\"* lying|strong=\"G2749\"* in|strong=\"G1722\"* the|strong=\"G1722\"* feeding trough." + }, + { + "verseNum": 17, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* saw|strong=\"G3708\"* it|strong=\"G1161\"*, they|strong=\"G1161\"* publicized widely the|strong=\"G1161\"* saying|strong=\"G2980\"* which|strong=\"G3588\"* was|strong=\"G3588\"* spoken|strong=\"G2980\"* to|strong=\"G2980\"* them|strong=\"G3588\"* about|strong=\"G4012\"* this|strong=\"G3778\"* child|strong=\"G3813\"*." + }, + { + "verseNum": 18, + "text": "All|strong=\"G3956\"* who|strong=\"G3588\"* heard it|strong=\"G2532\"* wondered|strong=\"G2296\"* at|strong=\"G4314\"* the|strong=\"G2532\"* things|strong=\"G3956\"* which|strong=\"G3588\"* were|strong=\"G3588\"* spoken|strong=\"G2980\"* to|strong=\"G4314\"* them|strong=\"G3588\"* by|strong=\"G5259\"* the|strong=\"G2532\"* shepherds|strong=\"G4166\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"G1161\"* Mary|strong=\"G3137\"* kept|strong=\"G4933\"* all|strong=\"G3956\"* these|strong=\"G3778\"* sayings|strong=\"G4487\"*, pondering|strong=\"G4820\"* them|strong=\"G3588\"* in|strong=\"G1722\"* her|strong=\"G3956\"* heart|strong=\"G2588\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"G2532\"* shepherds|strong=\"G4166\"* returned|strong=\"G5290\"*, glorifying|strong=\"G1392\"* and|strong=\"G2532\"* praising|strong=\"G1392\"* God|strong=\"G2316\"* for|strong=\"G1909\"* all|strong=\"G3956\"* the|strong=\"G2532\"* things|strong=\"G3956\"* that|strong=\"G3739\"* they|strong=\"G2532\"* had|strong=\"G2532\"* heard and|strong=\"G2532\"* seen|strong=\"G3708\"*, just|strong=\"G2531\"* as|strong=\"G2531\"* it|strong=\"G2532\"* was|strong=\"G3588\"* told|strong=\"G2980\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"G3753\"* eight|strong=\"G3638\"* days|strong=\"G2250\"* were|strong=\"G3588\"* fulfilled for|strong=\"G1722\"* the|strong=\"G1722\"* circumcision|strong=\"G4059\"* of|strong=\"G5259\"* the|strong=\"G1722\"* child|strong=\"G1722\"*, his|strong=\"G1722\"* name|strong=\"G3686\"* was|strong=\"G3588\"* called|strong=\"G2564\"* Jesus|strong=\"G2424\"*, which|strong=\"G3588\"* was|strong=\"G3588\"* given|strong=\"G2564\"* by|strong=\"G1722\"* the|strong=\"G1722\"* angel before|strong=\"G4253\"* he|strong=\"G2532\"* was|strong=\"G3588\"* conceived|strong=\"G4815\"* in|strong=\"G1722\"* the|strong=\"G1722\"* womb|strong=\"G2836\"*." + }, + { + "verseNum": 22, + "text": "When|strong=\"G3753\"* the|strong=\"G2532\"* days|strong=\"G2250\"* of|strong=\"G2250\"* their|strong=\"G2532\"* purification|strong=\"G2512\"* according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G2532\"* law|strong=\"G3551\"* of|strong=\"G2250\"* Moses|strong=\"G3475\"* were|strong=\"G3588\"* fulfilled, they|strong=\"G2532\"* brought|strong=\"G2532\"* him|strong=\"G3588\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"* to|strong=\"G1519\"* present|strong=\"G3936\"* him|strong=\"G3588\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*" + }, + { + "verseNum": 23, + "text": "(as|strong=\"G2531\"* it|strong=\"G3754\"* is|strong=\"G3588\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* of|strong=\"G2962\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, “Every|strong=\"G3956\"* male who|strong=\"G3588\"* opens|strong=\"G1272\"* the|strong=\"G1722\"* womb|strong=\"G3388\"* shall|strong=\"G2962\"* be|strong=\"G3956\"* called|strong=\"G2564\"* holy to|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*”),+ 2:23 Exodus 13:2,12*" + }, + { + "verseNum": 24, + "text": "and|strong=\"G2532\"* to|strong=\"G2532\"* offer|strong=\"G1325\"* a|strong=\"G2532\"* sacrifice|strong=\"G2378\"* according|strong=\"G2596\"* to|strong=\"G2532\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* said|strong=\"G3004\"* in|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, “A|strong=\"G2532\"* pair|strong=\"G2201\"* of|strong=\"G2532\"* turtledoves|strong=\"G5167\"*, or|strong=\"G2228\"* two|strong=\"G1417\"* young|strong=\"G3502\"* pigeons|strong=\"G4058\"*.”+ 2:24 Leviticus 12:8*" + }, + { + "verseNum": 25, + "text": "Behold|strong=\"G2400\"*, there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* man|strong=\"G3778\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"* whose|strong=\"G3739\"* name|strong=\"G3686\"* was|strong=\"G1510\"* Simeon|strong=\"G4826\"*. This|strong=\"G3778\"* man|strong=\"G3778\"* was|strong=\"G1510\"* righteous|strong=\"G1342\"* and|strong=\"G2532\"* devout|strong=\"G2126\"*, looking|strong=\"G4327\"* for|strong=\"G1909\"* the|strong=\"G1722\"* consolation|strong=\"G3874\"* of|strong=\"G4151\"* Israel|strong=\"G2474\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* was|strong=\"G1510\"* on|strong=\"G1909\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 26, + "text": "It|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G1510\"* revealed|strong=\"G5537\"* to|strong=\"G2532\"* him|strong=\"G3588\"* by|strong=\"G5259\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* that|strong=\"G3588\"* he|strong=\"G2532\"* should|strong=\"G3588\"* not|strong=\"G3361\"* see|strong=\"G3708\"* death|strong=\"G2288\"* before|strong=\"G4250\"* he|strong=\"G2532\"* had|strong=\"G2532\"* seen|strong=\"G3708\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* Christ|strong=\"G5547\"*.+ 2:26 “Christ” (Greek) and “Messiah” (Hebrew) both mean “Anointed One”*" + }, + { + "verseNum": 27, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* into|strong=\"G1519\"* the|strong=\"G1722\"* temple|strong=\"G2411\"*. When|strong=\"G2532\"* the|strong=\"G1722\"* parents|strong=\"G1118\"* brought|strong=\"G1521\"* in|strong=\"G1722\"* the|strong=\"G1722\"* child|strong=\"G3813\"*, Jesus|strong=\"G2424\"*, that|strong=\"G3588\"* they|strong=\"G2532\"* might|strong=\"G2532\"* do|strong=\"G4160\"* concerning|strong=\"G4012\"* him|strong=\"G3588\"* according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G1722\"* custom|strong=\"G1480\"* of|strong=\"G4012\"* the|strong=\"G1722\"* law|strong=\"G3551\"*," + }, + { + "verseNum": 28, + "text": "then|strong=\"G2532\"* he|strong=\"G2532\"* received|strong=\"G1209\"* him|strong=\"G3588\"* into|strong=\"G1519\"* his|strong=\"G1519\"* arms and|strong=\"G2532\"* blessed|strong=\"G2127\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*," + }, + { + "verseNum": 29, + "text": "“Now|strong=\"G3568\"* you|strong=\"G4771\"* are|strong=\"G3588\"* releasing your|strong=\"G1722\"* servant|strong=\"G1401\"*, Master|strong=\"G1203\"*," + }, + { + "verseNum": 30, + "text": "for|strong=\"G3754\"* my|strong=\"G3708\"* eyes|strong=\"G3788\"* have|strong=\"G1473\"* seen|strong=\"G3708\"* your|strong=\"G3708\"* salvation|strong=\"G4992\"*," + }, + { + "verseNum": 31, + "text": "which|strong=\"G3739\"* you|strong=\"G3739\"* have|strong=\"G3956\"* prepared|strong=\"G2090\"* before|strong=\"G2596\"* the|strong=\"G3956\"* face|strong=\"G4383\"* of|strong=\"G2596\"* all|strong=\"G3956\"* peoples|strong=\"G2992\"*;" + }, + { + "verseNum": 32, + "text": "a|strong=\"G2532\"* light|strong=\"G5457\"* for|strong=\"G1519\"* revelation to|strong=\"G1519\"* the|strong=\"G2532\"* nations|strong=\"G1484\"*," + }, + { + "verseNum": 33, + "text": "Joseph and|strong=\"G2532\"* his|strong=\"G4012\"* mother|strong=\"G3384\"* were|strong=\"G1510\"* marveling|strong=\"G2296\"* at|strong=\"G1909\"* the|strong=\"G2532\"* things|strong=\"G3588\"* which|strong=\"G3588\"* were|strong=\"G1510\"* spoken|strong=\"G2980\"* concerning|strong=\"G4012\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 34, + "text": "Simeon|strong=\"G4826\"* blessed|strong=\"G2127\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* Mary|strong=\"G3137\"*, his|strong=\"G1438\"* mother|strong=\"G3384\"*, “Behold|strong=\"G2400\"*, this|strong=\"G3778\"* child|strong=\"G1722\"* is|strong=\"G3588\"* appointed|strong=\"G2749\"* for|strong=\"G1519\"* the|strong=\"G1722\"* falling and|strong=\"G2532\"* the|strong=\"G1722\"* rising|strong=\"G2532\"* of|strong=\"G2532\"* many|strong=\"G4183\"* in|strong=\"G1722\"* Israel|strong=\"G2474\"*, and|strong=\"G2532\"* for|strong=\"G1519\"* a|strong=\"G2532\"* sign|strong=\"G4592\"* which|strong=\"G3588\"* is|strong=\"G3588\"* spoken|strong=\"G3004\"* against|strong=\"G4314\"*." + }, + { + "verseNum": 35, + "text": "Yes|strong=\"G1161\"*, a|strong=\"G2532\"* sword|strong=\"G4501\"* will|strong=\"G2532\"* pierce|strong=\"G1330\"* through|strong=\"G1330\"* your|strong=\"G2532\"* own soul|strong=\"G5590\"*, that|strong=\"G3588\"* the|strong=\"G2532\"* thoughts|strong=\"G1261\"* of|strong=\"G1537\"* many|strong=\"G4183\"* hearts|strong=\"G2588\"* may|strong=\"G2532\"* be|strong=\"G2532\"* revealed.”" + }, + { + "verseNum": 36, + "text": "There|strong=\"G2532\"* was|strong=\"G1510\"* one|strong=\"G3588\"* Anna, a|strong=\"G2532\"* prophetess|strong=\"G4398\"*, the|strong=\"G1722\"* daughter|strong=\"G2364\"* of|strong=\"G1537\"* Phanuel|strong=\"G5323\"*, of|strong=\"G1537\"* the|strong=\"G1722\"* tribe|strong=\"G5443\"* of|strong=\"G1537\"* Asher (she|strong=\"G2532\"* was|strong=\"G1510\"* of|strong=\"G1537\"* a|strong=\"G2532\"* great|strong=\"G4183\"* age|strong=\"G2094\"*, having|strong=\"G2532\"* lived|strong=\"G2198\"* with|strong=\"G3326\"* a|strong=\"G2532\"* husband seven|strong=\"G2033\"* years|strong=\"G2094\"* from|strong=\"G1537\"* her|strong=\"G3588\"* virginity|strong=\"G3932\"*," + }, + { + "verseNum": 37, + "text": "and|strong=\"G2532\"* she|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G2532\"* a|strong=\"G2532\"* widow|strong=\"G5503\"* for|strong=\"G2532\"* about|strong=\"G3588\"* eighty-four|strong=\"G3589\"* years|strong=\"G2094\"*), who|strong=\"G3739\"* didn’t|strong=\"G3588\"* depart from|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G2411\"*, worshiping|strong=\"G3000\"* with|strong=\"G2532\"* fastings|strong=\"G3521\"* and|strong=\"G2532\"* petitions night|strong=\"G3571\"* and|strong=\"G2532\"* day|strong=\"G2250\"*." + }, + { + "verseNum": 38, + "text": "Coming|strong=\"G2316\"* up|strong=\"G2532\"* at|strong=\"G4012\"* that|strong=\"G3588\"* very|strong=\"G2532\"* hour|strong=\"G5610\"*, she|strong=\"G2532\"* gave|strong=\"G2532\"* thanks to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"*, and|strong=\"G2532\"* spoke|strong=\"G2980\"* of|strong=\"G4012\"* him|strong=\"G3588\"* to|strong=\"G2532\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* looking|strong=\"G4327\"* for|strong=\"G4012\"* redemption|strong=\"G3085\"* in|strong=\"G2532\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 39, + "text": "When|strong=\"G5613\"* they|strong=\"G2532\"* had|strong=\"G2532\"* accomplished|strong=\"G5055\"* all|strong=\"G3956\"* things|strong=\"G3956\"* that|strong=\"G3588\"* were|strong=\"G3588\"* according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G2532\"* law|strong=\"G3551\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, they|strong=\"G2532\"* returned|strong=\"G1994\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*, to|strong=\"G1519\"* their|strong=\"G1438\"* own|strong=\"G1438\"* city|strong=\"G4172\"*, Nazareth|strong=\"G3478\"*." + }, + { + "verseNum": 40, + "text": "The|strong=\"G2532\"* child|strong=\"G3813\"* was|strong=\"G1510\"* growing, and|strong=\"G2532\"* was|strong=\"G1510\"* becoming strong|strong=\"G2901\"* in|strong=\"G1909\"* spirit|strong=\"G3588\"*, being|strong=\"G1510\"* filled|strong=\"G4137\"* with|strong=\"G2532\"* wisdom|strong=\"G4678\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* was|strong=\"G1510\"* upon|strong=\"G1909\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 41, + "text": "His|strong=\"G1519\"* parents|strong=\"G1118\"* went|strong=\"G4198\"* every|strong=\"G2596\"* year|strong=\"G2094\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"* at|strong=\"G1519\"* the|strong=\"G2532\"* feast|strong=\"G1859\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"*." + }, + { + "verseNum": 42, + "text": "When|strong=\"G3753\"* he|strong=\"G2532\"* was|strong=\"G1096\"* twelve|strong=\"G1427\"* years|strong=\"G2094\"* old|strong=\"G2094\"*, they|strong=\"G2532\"* went|strong=\"G2532\"* up|strong=\"G2532\"* to|strong=\"G2532\"* Jerusalem according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* custom|strong=\"G1485\"* of|strong=\"G2532\"* the|strong=\"G2532\"* feast|strong=\"G1859\"*;" + }, + { + "verseNum": 43, + "text": "and|strong=\"G2532\"* when|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2424\"* fulfilled|strong=\"G5048\"* the|strong=\"G1722\"* days|strong=\"G2250\"*, as|strong=\"G1722\"* they|strong=\"G2532\"* were|strong=\"G3588\"* returning|strong=\"G5290\"*, the|strong=\"G1722\"* boy|strong=\"G3816\"* Jesus|strong=\"G2424\"* stayed|strong=\"G5278\"* behind|strong=\"G5278\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"*. Joseph and|strong=\"G2532\"* his|strong=\"G1438\"* mother didn’t|strong=\"G3588\"* know|strong=\"G1097\"* it|strong=\"G2532\"*," + }, + { + "verseNum": 44, + "text": "but|strong=\"G1161\"* supposing|strong=\"G3543\"* him|strong=\"G3588\"* to|strong=\"G2532\"* be|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* company|strong=\"G4923\"*, they|strong=\"G2532\"* went|strong=\"G2064\"* a|strong=\"G2532\"* day|strong=\"G2250\"*’s journey|strong=\"G3598\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* looked|strong=\"G2532\"* for|strong=\"G1161\"* him|strong=\"G3588\"* among|strong=\"G1722\"* their|strong=\"G2532\"* relatives|strong=\"G4773\"* and|strong=\"G2532\"* acquaintances|strong=\"G1110\"*." + }, + { + "verseNum": 45, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* didn’t find|strong=\"G2147\"* him|strong=\"G2532\"*, they|strong=\"G2532\"* returned|strong=\"G5290\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*, looking|strong=\"G2532\"* for|strong=\"G1519\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 46, + "text": "After|strong=\"G3326\"* three|strong=\"G5140\"* days|strong=\"G2250\"* they|strong=\"G2532\"* found|strong=\"G2147\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2411\"*, sitting|strong=\"G2516\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2250\"* the|strong=\"G1722\"* teachers|strong=\"G1320\"*, both|strong=\"G2532\"* listening to|strong=\"G2532\"* them|strong=\"G3588\"* and|strong=\"G2532\"* asking|strong=\"G1905\"* them|strong=\"G3588\"* questions|strong=\"G1905\"*." + }, + { + "verseNum": 47, + "text": "All|strong=\"G3956\"* who|strong=\"G3588\"* heard him|strong=\"G3588\"* were|strong=\"G3588\"* amazed|strong=\"G1839\"* at|strong=\"G1909\"* his|strong=\"G3956\"* understanding|strong=\"G4907\"* and|strong=\"G2532\"* his|strong=\"G3956\"* answers." + }, + { + "verseNum": 48, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* astonished|strong=\"G1605\"*; and|strong=\"G2532\"* his|strong=\"G4160\"* mother|strong=\"G3384\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Son|strong=\"G5043\"*, why|strong=\"G5101\"* have|strong=\"G2532\"* you|strong=\"G4771\"* treated|strong=\"G4160\"* us|strong=\"G3004\"* this|strong=\"G3588\"* way|strong=\"G3779\"*? Behold|strong=\"G2400\"*, your|strong=\"G2532\"* father|strong=\"G3962\"* and|strong=\"G2532\"* I|strong=\"G1473\"* were|strong=\"G3588\"* anxiously|strong=\"G3600\"* looking|strong=\"G2212\"* for|strong=\"G4314\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 49, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w looking|strong=\"G2212\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w me|strong=\"G1473\"\\+w*? Didn’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s house?”*" + }, + { + "verseNum": 50, + "text": "They|strong=\"G2532\"* didn’t|strong=\"G3588\"* understand|strong=\"G4920\"* the|strong=\"G2532\"* saying|strong=\"G2980\"* which|strong=\"G3739\"* he|strong=\"G2532\"* spoke|strong=\"G2980\"* to|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 51, + "text": "And|strong=\"G2532\"* he|strong=\"G2532\"* went|strong=\"G2064\"* down|strong=\"G2597\"* with|strong=\"G3326\"* them|strong=\"G3588\"* and|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Nazareth|strong=\"G3478\"*. He|strong=\"G2532\"* was|strong=\"G1510\"* subject|strong=\"G5293\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* his|strong=\"G3956\"* mother|strong=\"G3384\"* kept|strong=\"G1301\"* all|strong=\"G3956\"* these|strong=\"G3956\"* sayings|strong=\"G4487\"* in|strong=\"G1722\"* her|strong=\"G1519\"* heart|strong=\"G2588\"*." + }, + { + "verseNum": 52, + "text": "And|strong=\"G2532\"* Jesus|strong=\"G2424\"* increased|strong=\"G4298\"* in|strong=\"G1722\"* wisdom|strong=\"G4678\"* and|strong=\"G2532\"* stature|strong=\"G2244\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* favor|strong=\"G5485\"* with|strong=\"G1722\"* God|strong=\"G2316\"* and|strong=\"G2532\"* men|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* the|strong=\"G1722\"* fifteenth|strong=\"G4003\"* year|strong=\"G2094\"* of|strong=\"G2532\"* the|strong=\"G1722\"* reign|strong=\"G2231\"* of|strong=\"G2532\"* Tiberius|strong=\"G5086\"* Caesar|strong=\"G2541\"*, Pontius|strong=\"G4194\"* Pilate|strong=\"G4091\"* being|strong=\"G2532\"* governor|strong=\"G2230\"* of|strong=\"G2532\"* Judea|strong=\"G2449\"*, and|strong=\"G2532\"* Herod|strong=\"G2264\"* being|strong=\"G2532\"* tetrarch|strong=\"G5075\"* of|strong=\"G2532\"* Galilee|strong=\"G1056\"*, and|strong=\"G2532\"* his|strong=\"G1722\"* brother Philip|strong=\"G5376\"* tetrarch|strong=\"G5075\"* of|strong=\"G2532\"* the|strong=\"G1722\"* region|strong=\"G5561\"* of|strong=\"G2532\"* Ituraea|strong=\"G2484\"* and|strong=\"G2532\"* Trachonitis|strong=\"G5139\"*, and|strong=\"G2532\"* Lysanias|strong=\"G3078\"* tetrarch|strong=\"G5075\"* of|strong=\"G2532\"* Abilene," + }, + { + "verseNum": 2, + "text": "during|strong=\"G1722\"* the|strong=\"G1722\"* high|strong=\"G2532\"* priesthood of|strong=\"G5207\"* Annas and|strong=\"G2532\"* Caiaphas|strong=\"G2533\"*, the|strong=\"G1722\"* word|strong=\"G4487\"* of|strong=\"G5207\"* God|strong=\"G2316\"* came|strong=\"G1096\"* to|strong=\"G2532\"* John|strong=\"G2491\"*, the|strong=\"G1722\"* son|strong=\"G5207\"* of|strong=\"G5207\"* Zacharias|strong=\"G2197\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G2532\"* region|strong=\"G4066\"* around|strong=\"G4066\"* the|strong=\"G2532\"* Jordan|strong=\"G2446\"*, preaching|strong=\"G2784\"* the|strong=\"G2532\"* baptism of|strong=\"G2532\"* repentance|strong=\"G3341\"* for|strong=\"G1519\"* remission of|strong=\"G2532\"* sins." + }, + { + "verseNum": 4, + "text": "As|strong=\"G5613\"* it|strong=\"G4160\"* is|strong=\"G3588\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* book|strong=\"G3588\"* of|strong=\"G3056\"* the|strong=\"G1722\"* words|strong=\"G3056\"* of|strong=\"G3056\"* Isaiah|strong=\"G2268\"* the|strong=\"G1722\"* prophet|strong=\"G4396\"*," + }, + { + "verseNum": 5, + "text": "Every|strong=\"G3956\"* valley|strong=\"G5327\"* will|strong=\"G1510\"* be|strong=\"G1510\"* filled|strong=\"G4137\"*." + }, + { + "verseNum": 6, + "text": "All|strong=\"G3956\"* flesh|strong=\"G4561\"* will|strong=\"G2316\"* see|strong=\"G3708\"* God|strong=\"G2316\"*’s salvation|strong=\"G4992\"*.’”+ 3:6 Isaiah 40:3-5*" + }, + { + "verseNum": 7, + "text": "He|strong=\"G3588\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* to|strong=\"G3004\"* the|strong=\"G3588\"* multitudes|strong=\"G3793\"* who|strong=\"G5101\"* went|strong=\"G1607\"* out|strong=\"G1607\"* to|strong=\"G3004\"* be|strong=\"G3195\"* baptized by|strong=\"G5259\"* him|strong=\"G3588\"*, “You|strong=\"G5210\"* offspring|strong=\"G1081\"* of|strong=\"G5259\"* vipers|strong=\"G2191\"*, who|strong=\"G5101\"* warned|strong=\"G5263\"* you|strong=\"G5210\"* to|strong=\"G3004\"* flee|strong=\"G5343\"* from|strong=\"G5259\"* the|strong=\"G3588\"* wrath|strong=\"G3709\"* to|strong=\"G3004\"* come|strong=\"G3195\"*?" + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G3767\"* produce|strong=\"G4160\"* fruits|strong=\"G2590\"* worthy of|strong=\"G1537\"* repentance|strong=\"G3341\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* begin to|strong=\"G2532\"* say|strong=\"G3004\"* among|strong=\"G1722\"* yourselves|strong=\"G1438\"*, ‘We|strong=\"G3754\"* have|strong=\"G2192\"* Abraham for|strong=\"G1063\"* our|strong=\"G2316\"* father|strong=\"G3962\"*;’ for|strong=\"G1063\"* I|strong=\"G2532\"* tell|strong=\"G3004\"* you|strong=\"G5210\"* that|strong=\"G3754\"* God|strong=\"G2316\"* is|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2532\"* raise|strong=\"G1453\"* up|strong=\"G1453\"* children|strong=\"G5043\"* to|strong=\"G2532\"* Abraham from|strong=\"G1537\"* these|strong=\"G3778\"* stones|strong=\"G3037\"*!" + }, + { + "verseNum": 9, + "text": "Even|strong=\"G2532\"* now|strong=\"G1161\"* the|strong=\"G2532\"* ax also|strong=\"G2532\"* lies|strong=\"G2749\"* at|strong=\"G1519\"* the|strong=\"G2532\"* root|strong=\"G4491\"* of|strong=\"G2532\"* the|strong=\"G2532\"* trees|strong=\"G1186\"*. Every|strong=\"G3956\"* tree|strong=\"G1186\"* therefore|strong=\"G3767\"* that|strong=\"G3588\"* doesn’t|strong=\"G3588\"* produce|strong=\"G4160\"* good|strong=\"G2570\"* fruit|strong=\"G2590\"* is|strong=\"G3588\"* cut|strong=\"G1581\"* down|strong=\"G1581\"* and|strong=\"G2532\"* thrown into|strong=\"G1519\"* the|strong=\"G2532\"* fire|strong=\"G4442\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"G2532\"* multitudes|strong=\"G3793\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “What|strong=\"G5101\"* then|strong=\"G3767\"* must|strong=\"G4160\"* we|strong=\"G2532\"* do|strong=\"G4160\"*?”" + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “He|strong=\"G2532\"* who|strong=\"G3588\"* has|strong=\"G2192\"* two|strong=\"G1417\"* coats|strong=\"G5509\"*, let|strong=\"G1161\"* him|strong=\"G3588\"* give|strong=\"G4160\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* has|strong=\"G2192\"* none|strong=\"G3361\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* has|strong=\"G2192\"* food|strong=\"G1033\"*, let|strong=\"G1161\"* him|strong=\"G3588\"* do|strong=\"G4160\"* likewise|strong=\"G3668\"*.”" + }, + { + "verseNum": 12, + "text": "Tax|strong=\"G5057\"* collectors|strong=\"G5057\"* also|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* be|strong=\"G2532\"* baptized, and|strong=\"G2532\"* they|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G4160\"*, “Teacher|strong=\"G1320\"*, what|strong=\"G5101\"* must|strong=\"G4160\"* we|strong=\"G2532\"* do|strong=\"G4160\"*?”" + }, + { + "verseNum": 13, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “Collect|strong=\"G4238\"* no|strong=\"G3367\"* more|strong=\"G4119\"* than|strong=\"G3844\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* appointed|strong=\"G1299\"* to|strong=\"G4314\"* you|strong=\"G5210\"*.”" + }, + { + "verseNum": 14, + "text": "Soldiers|strong=\"G4754\"* also|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “What|strong=\"G5101\"* about|strong=\"G4314\"* us|strong=\"G3004\"*? What|strong=\"G5101\"* must|strong=\"G4160\"* we|strong=\"G2249\"* do|strong=\"G4160\"*?”" + }, + { + "verseNum": 15, + "text": "As|strong=\"G1722\"* the|strong=\"G1722\"* people|strong=\"G2992\"* were|strong=\"G1510\"* in|strong=\"G1722\"* expectation|strong=\"G4328\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* men|strong=\"G3956\"* reasoned|strong=\"G1260\"* in|strong=\"G1722\"* their|strong=\"G2532\"* hearts|strong=\"G2588\"* concerning|strong=\"G4012\"* John|strong=\"G2491\"*, whether|strong=\"G2532\"* perhaps|strong=\"G3379\"* he|strong=\"G2532\"* was|strong=\"G1510\"* the|strong=\"G1722\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 16, + "text": "John|strong=\"G2491\"* answered|strong=\"G3004\"* them|strong=\"G3588\"* all|strong=\"G3956\"*, “I|strong=\"G1473\"* indeed|strong=\"G2532\"* baptize you|strong=\"G5210\"* with|strong=\"G1722\"* water|strong=\"G5204\"*, but|strong=\"G1161\"* he|strong=\"G2532\"* comes|strong=\"G2064\"* who|strong=\"G3739\"* is|strong=\"G1510\"* mightier|strong=\"G2478\"* than|strong=\"G2478\"* I|strong=\"G1473\"*, the|strong=\"G1722\"* strap of|strong=\"G4151\"* whose|strong=\"G3739\"* sandals|strong=\"G5266\"* I|strong=\"G1473\"* am|strong=\"G1510\"* not|strong=\"G3756\"* worthy|strong=\"G2425\"* to|strong=\"G2532\"* loosen. He|strong=\"G2532\"* will|strong=\"G1510\"* baptize you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* and|strong=\"G2532\"* fire|strong=\"G4442\"*." + }, + { + "verseNum": 17, + "text": "His|strong=\"G1519\"* winnowing|strong=\"G4425\"* fan|strong=\"G4425\"* is|strong=\"G3588\"* in|strong=\"G1722\"* his|strong=\"G1519\"* hand|strong=\"G5495\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G2532\"* thoroughly|strong=\"G1245\"* cleanse his|strong=\"G1519\"* threshing floor, and|strong=\"G2532\"* will|strong=\"G2532\"* gather|strong=\"G4863\"* the|strong=\"G1722\"* wheat|strong=\"G4621\"* into|strong=\"G1519\"* his|strong=\"G1519\"* barn; but|strong=\"G1161\"* he|strong=\"G2532\"* will|strong=\"G2532\"* burn|strong=\"G2618\"* up|strong=\"G1519\"* the|strong=\"G1722\"* chaff with|strong=\"G1722\"* unquenchable fire|strong=\"G4442\"*.”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"G3767\"* with|strong=\"G2532\"* many|strong=\"G4183\"* other|strong=\"G2087\"* exhortations|strong=\"G3870\"* he|strong=\"G2532\"* preached|strong=\"G2097\"* good|strong=\"G2097\"* news|strong=\"G2097\"* to|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"*," + }, + { + "verseNum": 19, + "text": "but|strong=\"G1161\"* Herod|strong=\"G2264\"* the|strong=\"G2532\"* tetrarch|strong=\"G5076\"*,+ 3:19 a tetrarch is one of four governors of a province* being|strong=\"G2532\"* reproved|strong=\"G1651\"* by|strong=\"G5259\"* him|strong=\"G3588\"* for|strong=\"G4012\"* Herodias|strong=\"G2266\"*, his|strong=\"G3956\"* brother’s+ 3:19 TR reads “brother Philip’s” instead of “brother’s”* wife|strong=\"G1135\"*, and|strong=\"G2532\"* for|strong=\"G4012\"* all|strong=\"G3956\"* the|strong=\"G2532\"* evil|strong=\"G4190\"* things|strong=\"G3956\"* which|strong=\"G3739\"* Herod|strong=\"G2264\"* had|strong=\"G2532\"* done|strong=\"G4160\"*," + }, + { + "verseNum": 20, + "text": "added|strong=\"G4369\"* this|strong=\"G3778\"* also|strong=\"G2532\"* to|strong=\"G2532\"* them|strong=\"G3588\"* all|strong=\"G3956\"*, that|strong=\"G3588\"* he|strong=\"G2532\"* shut up|strong=\"G2623\"* John|strong=\"G2491\"* in|strong=\"G1722\"* prison|strong=\"G5438\"*." + }, + { + "verseNum": 21, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* all|strong=\"G2532\"* the|strong=\"G1722\"* people|strong=\"G2992\"* were|strong=\"G3588\"* baptized, Jesus|strong=\"G2424\"* also|strong=\"G2532\"* had|strong=\"G2424\"* been|strong=\"G1096\"* baptized and|strong=\"G2532\"* was|strong=\"G1096\"* praying|strong=\"G4336\"*. The|strong=\"G1722\"* sky|strong=\"G3772\"* was|strong=\"G1096\"* opened," + }, + { + "verseNum": 22, + "text": "and|strong=\"G2532\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* descended|strong=\"G2597\"* in|strong=\"G1722\"* a|strong=\"G1096\"* bodily|strong=\"G4984\"* form|strong=\"G1491\"* like|strong=\"G5613\"* a|strong=\"G1096\"* dove|strong=\"G4058\"* on|strong=\"G1909\"* him|strong=\"G3588\"*; and|strong=\"G2532\"* a|strong=\"G1096\"* voice|strong=\"G5456\"* came|strong=\"G1096\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* sky|strong=\"G3772\"*, saying “You|strong=\"G4771\"* are|strong=\"G1510\"* my|strong=\"G1722\"* beloved Son|strong=\"G5207\"*. In|strong=\"G1722\"* you|strong=\"G4771\"* I|strong=\"G1473\"* am|strong=\"G1510\"* well|strong=\"G2532\"* pleased|strong=\"G2106\"*.”" + }, + { + "verseNum": 23, + "text": "Jesus|strong=\"G2424\"* himself, when|strong=\"G5613\"* he|strong=\"G2532\"* began to|strong=\"G2532\"* teach, was|strong=\"G1510\"* about|strong=\"G5613\"* thirty|strong=\"G5144\"* years|strong=\"G2094\"* old|strong=\"G2094\"*, being|strong=\"G1510\"* the|strong=\"G2532\"* son|strong=\"G5207\"* (as|strong=\"G5613\"* was|strong=\"G1510\"* supposed|strong=\"G3543\"*) of|strong=\"G5207\"* Joseph|strong=\"G2501\"*, the|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* Heli|strong=\"G2242\"*," + }, + { + "verseNum": 24, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Matthat|strong=\"G3158\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Levi|strong=\"G3017\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Melchi|strong=\"G3197\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Jannai|strong=\"G2388\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Joseph|strong=\"G2501\"*," + }, + { + "verseNum": 25, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Mattathias|strong=\"G3161\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Amos, the|strong=\"G3588\"* son of|strong=\"G3588\"* Nahum|strong=\"G3486\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Esli|strong=\"G2069\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Naggai|strong=\"G3477\"*," + }, + { + "verseNum": 26, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Maath|strong=\"G3092\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Mattathias|strong=\"G3161\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Semein|strong=\"G4584\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Joseph|strong=\"G2501\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Judah|strong=\"G2448\"*," + }, + { + "verseNum": 27, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Joanan, the|strong=\"G3588\"* son of|strong=\"G3588\"* Rhesa|strong=\"G4488\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Zerubbabel|strong=\"G2216\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Shealtiel|strong=\"G4528\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Neri|strong=\"G3518\"*," + }, + { + "verseNum": 28, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Melchi|strong=\"G3197\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Addi, the|strong=\"G3588\"* son of|strong=\"G3588\"* Cosam|strong=\"G2973\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Elmodam|strong=\"G1678\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Er|strong=\"G2262\"*," + }, + { + "verseNum": 29, + "text": "the|strong=\"G3588\"* son of|strong=\"G2424\"* Jose, the|strong=\"G3588\"* son of|strong=\"G2424\"* Eliezer|strong=\"G1663\"*, the|strong=\"G3588\"* son of|strong=\"G2424\"* Jorim|strong=\"G2497\"*, the|strong=\"G3588\"* son of|strong=\"G2424\"* Matthat|strong=\"G3158\"*, the|strong=\"G3588\"* son of|strong=\"G2424\"* Levi|strong=\"G3017\"*," + }, + { + "verseNum": 30, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Simeon|strong=\"G4826\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Judah|strong=\"G2455\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Joseph|strong=\"G2501\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Jonan|strong=\"G2494\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Eliakim|strong=\"G1662\"*," + }, + { + "verseNum": 31, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Melea|strong=\"G3190\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Menan|strong=\"G3104\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Mattatha|strong=\"G3160\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Nathan|strong=\"G3481\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* David|strong=\"G1138\"*," + }, + { + "verseNum": 32, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Jesse|strong=\"G2421\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Obed|strong=\"G5601\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Boaz|strong=\"G1003\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Salmon, the|strong=\"G3588\"* son of|strong=\"G3588\"* Nahshon|strong=\"G3476\"*," + }, + { + "verseNum": 33, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Amminadab, the|strong=\"G3588\"* son of|strong=\"G3588\"* Aram,+ 3:33 NU reads “Admin, the son of Arni” instead of “Aram”* the|strong=\"G3588\"* son of|strong=\"G3588\"* Hezron|strong=\"G2074\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Perez|strong=\"G5329\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Judah|strong=\"G2455\"*," + }, + { + "verseNum": 34, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Jacob|strong=\"G2384\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Isaac|strong=\"G2464\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Abraham, the|strong=\"G3588\"* son of|strong=\"G3588\"* Terah|strong=\"G2291\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Nahor|strong=\"G3493\"*," + }, + { + "verseNum": 35, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Serug, the|strong=\"G3588\"* son of|strong=\"G3588\"* Reu|strong=\"G4466\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Peleg|strong=\"G5317\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Eber, the|strong=\"G3588\"* son of|strong=\"G3588\"* Shelah|strong=\"G4527\"*," + }, + { + "verseNum": 36, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Cainan|strong=\"G2536\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Arphaxad, the|strong=\"G3588\"* son of|strong=\"G3588\"* Shem|strong=\"G4590\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Noah|strong=\"G3575\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Lamech|strong=\"G2984\"*," + }, + { + "verseNum": 37, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Methuselah|strong=\"G3103\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Enoch|strong=\"G1802\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Jared|strong=\"G2391\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Mahalaleel|strong=\"G3121\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Cainan|strong=\"G2536\"*," + }, + { + "verseNum": 38, + "text": "the|strong=\"G3588\"* son of|strong=\"G2316\"* Enos|strong=\"G1800\"*, the|strong=\"G3588\"* son of|strong=\"G2316\"* Seth|strong=\"G4589\"*, the|strong=\"G3588\"* son of|strong=\"G2316\"* Adam, the|strong=\"G3588\"* son of|strong=\"G2316\"* God|strong=\"G2316\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Jesus|strong=\"G2424\"*, full|strong=\"G4134\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, returned|strong=\"G5290\"* from|strong=\"G2532\"* the|strong=\"G1722\"* Jordan|strong=\"G2446\"* and|strong=\"G2532\"* was|strong=\"G3588\"* led|strong=\"G2424\"* by|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* into|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"*" + }, + { + "verseNum": 2, + "text": "for|strong=\"G1722\"* forty|strong=\"G5062\"* days|strong=\"G2250\"*, being|strong=\"G2532\"* tempted|strong=\"G3985\"* by|strong=\"G1722\"* the|strong=\"G1722\"* devil|strong=\"G1228\"*. He|strong=\"G2532\"* ate|strong=\"G2068\"* nothing|strong=\"G3762\"* in|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"*. Afterward, when|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* completed, he|strong=\"G2532\"* was|strong=\"G3588\"* hungry|strong=\"G3983\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"G1161\"* devil|strong=\"G1228\"* said|strong=\"G3004\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, “If|strong=\"G1487\"* you|strong=\"G1487\"* are|strong=\"G1510\"* the|strong=\"G1161\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, command|strong=\"G3004\"* this|strong=\"G3778\"* stone|strong=\"G3037\"* to|strong=\"G2443\"* become|strong=\"G1096\"* bread.”" + }, + { + "verseNum": 4, + "text": "Jesus|strong=\"G2424\"* answered him|strong=\"G3588\"*, saying|strong=\"G3754\"*, “\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w Man|strong=\"G3756\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w live|strong=\"G2198\"\\+w* \\+w by|strong=\"G1909\"\\+w* bread \\+w alone|strong=\"G3441\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w by|strong=\"G1909\"\\+w* \\+w every|strong=\"G2532\"\\+w* \\+w word|strong=\"G3588\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w God|strong=\"G2532\"\\+w*.’”*+ 4:4 Deuteronomy 8:3*" + }, + { + "verseNum": 5, + "text": "The|strong=\"G1722\"* devil, leading him|strong=\"G3588\"* up|strong=\"G2532\"* on|strong=\"G1722\"* a|strong=\"G2532\"* high|strong=\"G3956\"* mountain, showed|strong=\"G1166\"* him|strong=\"G3588\"* all|strong=\"G3956\"* the|strong=\"G1722\"* kingdoms of|strong=\"G2532\"* the|strong=\"G1722\"* world|strong=\"G3625\"* in|strong=\"G1722\"* a|strong=\"G2532\"* moment|strong=\"G4743\"* of|strong=\"G2532\"* time|strong=\"G5550\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"G2532\"* devil|strong=\"G1228\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “I|strong=\"G1473\"* will|strong=\"G2309\"* give|strong=\"G1325\"* you|strong=\"G4771\"* all|strong=\"G2532\"* this|strong=\"G3778\"* authority|strong=\"G1849\"* and|strong=\"G2532\"* their|strong=\"G1438\"* glory|strong=\"G1391\"*, for|strong=\"G3754\"* it|strong=\"G2532\"* has|strong=\"G3739\"* been|strong=\"G2532\"* delivered|strong=\"G3860\"* to|strong=\"G2532\"* me|strong=\"G1325\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* give|strong=\"G1325\"* it|strong=\"G2532\"* to|strong=\"G2532\"* whomever|strong=\"G3739\"* I|strong=\"G1473\"* want|strong=\"G2309\"*." + }, + { + "verseNum": 7, + "text": "If|strong=\"G1437\"* you|strong=\"G4771\"* therefore|strong=\"G3767\"* will|strong=\"G1510\"* worship|strong=\"G4352\"* before|strong=\"G1799\"* me|strong=\"G1473\"*, it|strong=\"G1437\"* will|strong=\"G1510\"* all|strong=\"G3956\"* be|strong=\"G1510\"* yours|strong=\"G4771\"*.”" + }, + { + "verseNum": 8, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Get|strong=\"G2532\"\\+w* behind \\+w me|strong=\"G3004\"\\+w*, Satan! \\+w For|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w worship|strong=\"G4352\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w your|strong=\"G2962\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w serve|strong=\"G3000\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w only|strong=\"G3441\"\\+w*.’”*+ 4:8 Deuteronomy 6:13*" + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* led him|strong=\"G3588\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"* and|strong=\"G2532\"* set|strong=\"G2476\"* him|strong=\"G3588\"* on|strong=\"G1909\"* the|strong=\"G2532\"* pinnacle|strong=\"G4419\"* of|strong=\"G5207\"* the|strong=\"G2532\"* temple|strong=\"G2411\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “If|strong=\"G1487\"* you|strong=\"G1487\"* are|strong=\"G1510\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, cast|strong=\"G2532\"* yourself|strong=\"G4572\"* down|strong=\"G2736\"* from|strong=\"G2532\"* here|strong=\"G1782\"*," + }, + { + "verseNum": 10, + "text": "for|strong=\"G1063\"* it|strong=\"G3754\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"G2532\"*," + }, + { + "verseNum": 12, + "text": "Jesus|strong=\"G2424\"* answering, said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w It|strong=\"G2532\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w tempt|strong=\"G1598\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w your|strong=\"G2962\"\\+w* \\+w God|strong=\"G2316\"\\+w*.’”*+ 4:12 Deuteronomy 6:16*" + }, + { + "verseNum": 13, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* devil|strong=\"G1228\"* had|strong=\"G2532\"* completed every|strong=\"G3956\"* temptation|strong=\"G3986\"*, he|strong=\"G2532\"* departed from|strong=\"G2532\"* him|strong=\"G3588\"* until|strong=\"G2532\"* another|strong=\"G3588\"* time|strong=\"G2540\"*." + }, + { + "verseNum": 14, + "text": "Jesus|strong=\"G2424\"* returned|strong=\"G5290\"* in|strong=\"G1722\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G4012\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*, and|strong=\"G2532\"* news|strong=\"G5345\"* about|strong=\"G4012\"* him|strong=\"G3588\"* spread|strong=\"G1831\"* through|strong=\"G1722\"* all|strong=\"G3650\"* the|strong=\"G1722\"* surrounding|strong=\"G4066\"* area." + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* taught|strong=\"G1321\"* in|strong=\"G1722\"* their|strong=\"G2532\"* synagogues|strong=\"G4864\"*, being|strong=\"G2532\"* glorified|strong=\"G1392\"* by|strong=\"G1722\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Nazareth|strong=\"G3478\"*, where|strong=\"G3757\"* he|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G1510\"* brought|strong=\"G2064\"* up|strong=\"G1519\"*. He|strong=\"G2532\"* entered|strong=\"G1525\"*, as|strong=\"G1519\"* was|strong=\"G1510\"* his|strong=\"G1519\"* custom|strong=\"G1486\"*, into|strong=\"G1519\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"* day|strong=\"G2250\"*, and|strong=\"G2532\"* stood|strong=\"G3588\"* up|strong=\"G1519\"* to|strong=\"G1519\"* read." + }, + { + "verseNum": 17, + "text": "The|strong=\"G2532\"* book|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* prophet|strong=\"G4396\"* Isaiah|strong=\"G2268\"* was|strong=\"G1510\"* handed|strong=\"G1929\"* to|strong=\"G2532\"* him|strong=\"G3588\"*. He|strong=\"G2532\"* opened the|strong=\"G2532\"* book|strong=\"G3588\"*, and|strong=\"G2532\"* found|strong=\"G2147\"* the|strong=\"G2532\"* place|strong=\"G5117\"* where|strong=\"G3757\"* it|strong=\"G2532\"* was|strong=\"G1510\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 18, + "text": "“\\+w The|strong=\"G1722\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w of|strong=\"G4151\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w is|strong=\"G3739\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w me|strong=\"G1473\"\\+w*,*" + }, + { + "verseNum": 19, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w proclaim|strong=\"G2784\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w acceptable|strong=\"G1184\"\\+w* \\+w year|strong=\"G1763\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Lord|strong=\"G2962\"\\+w*.”*+ 4:19 Isaiah 61:1-2*" + }, + { + "verseNum": 20, + "text": "He|strong=\"G2532\"* closed|strong=\"G4428\"* the|strong=\"G1722\"* book|strong=\"G3588\"*, gave|strong=\"G2532\"* it|strong=\"G2532\"* back to|strong=\"G2532\"* the|strong=\"G1722\"* attendant|strong=\"G5257\"*, and|strong=\"G2532\"* sat|strong=\"G2523\"* down|strong=\"G2523\"*. The|strong=\"G1722\"* eyes|strong=\"G3788\"* of|strong=\"G2532\"* all|strong=\"G3956\"* in|strong=\"G1722\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"* were|strong=\"G1510\"* fastened on|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"G1161\"* began|strong=\"G1161\"* to|strong=\"G4314\"* tell|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Today|strong=\"G4594\"\\+w*, \\+w this|strong=\"G3778\"\\+w* \\+w Scripture|strong=\"G1124\"\\+w* \\+w has|strong=\"G3778\"\\+w* been \\+w fulfilled|strong=\"G4137\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G1722\"\\+w* \\+w hearing|strong=\"G3775\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "All|strong=\"G3956\"* testified|strong=\"G3140\"* about|strong=\"G1909\"* him|strong=\"G3588\"* and|strong=\"G2532\"* wondered|strong=\"G2296\"* at|strong=\"G1909\"* the|strong=\"G2532\"* gracious|strong=\"G5485\"* words|strong=\"G3056\"* which|strong=\"G3588\"* proceeded|strong=\"G1607\"* out|strong=\"G1537\"* of|strong=\"G1537\"* his|strong=\"G3956\"* mouth|strong=\"G4750\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* said|strong=\"G3004\"*, “Isn’t|strong=\"G3588\"* this|strong=\"G3778\"* Joseph|strong=\"G2501\"*’s son|strong=\"G5207\"*?”" + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “Doubtless \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w proverb|strong=\"G3850\"\\+w*, ‘\\+w Physician|strong=\"G2395\"\\+w*, \\+w heal|strong=\"G2323\"\\+w* \\+w yourself|strong=\"G4572\"\\+w*! \\+w Whatever|strong=\"G3745\"\\+w* \\+w we|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* heard \\+w done|strong=\"G4160\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w Capernaum|strong=\"G2584\"\\+w*, \\+w do|strong=\"G4160\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hometown|strong=\"G3968\"\\+w*.’”*" + }, + { + "verseNum": 24, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"*, “Most certainly \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w no|strong=\"G3762\"\\+w* \\+w prophet|strong=\"G4396\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w acceptable|strong=\"G1184\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w hometown|strong=\"G3968\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w truly|strong=\"G1909\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w there|strong=\"G2532\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w widows|strong=\"G5503\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Israel|strong=\"G2474\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w Elijah|strong=\"G2243\"\\+w*, \\+w when|strong=\"G3753\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w shut|strong=\"G2808\"\\+w* \\+w up|strong=\"G2808\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w years|strong=\"G2094\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w six|strong=\"G1803\"\\+w* \\+w months|strong=\"G3376\"\\+w*, \\+w when|strong=\"G3753\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w famine|strong=\"G3042\"\\+w* \\+w came|strong=\"G1096\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w land|strong=\"G1093\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w Elijah|strong=\"G2243\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w none|strong=\"G3762\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w Zarephath|strong=\"G4558\"\\+w*, \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* land \\+w of|strong=\"G2532\"\\+w* \\+w Sidon|strong=\"G4606\"\\+w*, \\+w to|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w woman|strong=\"G1135\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w widow|strong=\"G5503\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w There|strong=\"G2532\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w lepers|strong=\"G3015\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Israel|strong=\"G2474\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w time|strong=\"G1909\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Elisha|strong=\"G1666\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w prophet|strong=\"G4396\"\\+w*, \\+w yet|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w cleansed|strong=\"G2511\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w Naaman|strong=\"G3497\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w Syrian|strong=\"G4948\"\\+w*.”*" + }, + { + "verseNum": 28, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* all|strong=\"G3956\"* filled|strong=\"G4130\"* with|strong=\"G1722\"* wrath|strong=\"G2372\"* in|strong=\"G1722\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"* as|strong=\"G1722\"* they|strong=\"G2532\"* heard these|strong=\"G3778\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 29, + "text": "They|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G3618\"*, threw|strong=\"G1544\"* him|strong=\"G3588\"* out|strong=\"G1544\"* of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, and|strong=\"G2532\"* led him|strong=\"G3588\"* to|strong=\"G2532\"* the|strong=\"G2532\"* brow|strong=\"G3790\"* of|strong=\"G2532\"* the|strong=\"G2532\"* hill|strong=\"G3735\"* that|strong=\"G3739\"* their|strong=\"G2532\"* city|strong=\"G4172\"* was|strong=\"G3588\"* built|strong=\"G3618\"* on|strong=\"G1909\"*, that|strong=\"G3739\"* they|strong=\"G2532\"* might|strong=\"G2532\"* throw|strong=\"G1544\"* him|strong=\"G3588\"* off the|strong=\"G2532\"* cliff|strong=\"G2630\"*." + }, + { + "verseNum": 30, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"*, passing|strong=\"G1330\"* through|strong=\"G1223\"* the|strong=\"G1161\"* middle|strong=\"G3319\"* of|strong=\"G1223\"* them|strong=\"G1223\"*, went|strong=\"G4198\"* his|strong=\"G1223\"* way|strong=\"G4198\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"G2532\"* came|strong=\"G2718\"* down|strong=\"G2718\"* to|strong=\"G1519\"* Capernaum|strong=\"G2584\"*, a|strong=\"G2532\"* city|strong=\"G4172\"* of|strong=\"G2532\"* Galilee|strong=\"G1056\"*. He|strong=\"G2532\"* was|strong=\"G1510\"* teaching|strong=\"G1321\"* them|strong=\"G3588\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"*," + }, + { + "verseNum": 32, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G1510\"* astonished|strong=\"G1605\"* at|strong=\"G1722\"* his|strong=\"G1909\"* teaching|strong=\"G1322\"*, for|strong=\"G3754\"* his|strong=\"G1909\"* word|strong=\"G3056\"* was|strong=\"G1510\"* with|strong=\"G1722\"* authority|strong=\"G1849\"*." + }, + { + "verseNum": 33, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"* there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2192\"* man who|strong=\"G3588\"* had|strong=\"G2192\"* a|strong=\"G2192\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* an|strong=\"G2192\"* unclean demon|strong=\"G1140\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* cried|strong=\"G2532\"* out|strong=\"G2532\"* with|strong=\"G1722\"* a|strong=\"G2192\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*," + }, + { + "verseNum": 34, + "text": "saying, “Ah! what|strong=\"G5101\"* have|strong=\"G2532\"* we|strong=\"G2249\"* to|strong=\"G2532\"* do|strong=\"G5101\"* with|strong=\"G2532\"* you|strong=\"G4771\"*, Jesus|strong=\"G2424\"* of|strong=\"G2316\"* Nazareth|strong=\"G3479\"*? Have|strong=\"G2532\"* you|strong=\"G4771\"* come|strong=\"G2064\"* to|strong=\"G2532\"* destroy us|strong=\"G2249\"*? I|strong=\"G1473\"* know|strong=\"G1492\"* who|strong=\"G5101\"* you|strong=\"G4771\"* are|strong=\"G1510\"*: the|strong=\"G2532\"* Holy One|strong=\"G3588\"* of|strong=\"G2316\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 35, + "text": "Jesus|strong=\"G2424\"* rebuked|strong=\"G2008\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w Be|strong=\"G2532\"\\+w* silent \\+w and|strong=\"G2532\"\\+w* \\+w come|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*!” * When|strong=\"G2532\"* the|strong=\"G2532\"* demon|strong=\"G1140\"* had|strong=\"G2424\"* thrown|strong=\"G4496\"* him|strong=\"G3588\"* down|strong=\"G4496\"* in|strong=\"G1519\"* the|strong=\"G2532\"* middle|strong=\"G3319\"* of|strong=\"G2532\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G2532\"* him|strong=\"G3588\"*, having|strong=\"G2532\"* done him|strong=\"G3588\"* no|strong=\"G3367\"* harm." + }, + { + "verseNum": 36, + "text": "Amazement|strong=\"G2285\"* came|strong=\"G1096\"* on|strong=\"G1909\"* all|strong=\"G3956\"* and|strong=\"G2532\"* they|strong=\"G2532\"* spoke|strong=\"G3004\"* together|strong=\"G1909\"*, one|strong=\"G3956\"* with|strong=\"G1722\"* another|strong=\"G3588\"*, saying|strong=\"G3004\"*, “What|strong=\"G5101\"* is|strong=\"G3588\"* this|strong=\"G3778\"* word|strong=\"G3056\"*? For|strong=\"G3754\"* with|strong=\"G1722\"* authority|strong=\"G1849\"* and|strong=\"G2532\"* power|strong=\"G1411\"* he|strong=\"G2532\"* commands|strong=\"G2004\"* the|strong=\"G1722\"* unclean spirits|strong=\"G4151\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* come|strong=\"G1096\"* out|strong=\"G1831\"*!”" + }, + { + "verseNum": 37, + "text": "News about|strong=\"G4012\"* him|strong=\"G3588\"* went|strong=\"G2532\"* out|strong=\"G1607\"* into|strong=\"G1519\"* every|strong=\"G3956\"* place|strong=\"G5117\"* of|strong=\"G4012\"* the|strong=\"G2532\"* surrounding|strong=\"G4066\"* region|strong=\"G4066\"*." + }, + { + "verseNum": 38, + "text": "He|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G1519\"* from|strong=\"G2532\"* the|strong=\"G2532\"* synagogue|strong=\"G4864\"* and|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* Simon|strong=\"G4613\"*’s house|strong=\"G3614\"*. Simon|strong=\"G4613\"*’s mother-in-law|strong=\"G3994\"* was|strong=\"G1510\"* afflicted|strong=\"G4912\"* with|strong=\"G2532\"* a|strong=\"G2532\"* great|strong=\"G3173\"* fever|strong=\"G4446\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* begged|strong=\"G2065\"* him|strong=\"G3588\"* to|strong=\"G1519\"* help|strong=\"G4012\"* her|strong=\"G1519\"*." + }, + { + "verseNum": 39, + "text": "He|strong=\"G2532\"* stood|strong=\"G2186\"* over|strong=\"G1883\"* her|strong=\"G1438\"* and|strong=\"G2532\"* rebuked|strong=\"G2008\"* the|strong=\"G2532\"* fever|strong=\"G4446\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* left her|strong=\"G1438\"*. Immediately|strong=\"G3916\"* she|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* and|strong=\"G2532\"* served|strong=\"G1247\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 40, + "text": "When|strong=\"G1161\"* the|strong=\"G3956\"* sun|strong=\"G2246\"* was|strong=\"G3588\"* setting|strong=\"G1416\"*, all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2192\"* any|strong=\"G3956\"* sick|strong=\"G3956\"* with|strong=\"G4314\"* various|strong=\"G4164\"* diseases|strong=\"G3554\"* brought|strong=\"G1161\"* them|strong=\"G3588\"* to|strong=\"G4314\"* him|strong=\"G3588\"*; and|strong=\"G1161\"* he|strong=\"G1161\"* laid|strong=\"G2007\"* his|strong=\"G1438\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* every|strong=\"G3956\"* one|strong=\"G1520\"* of|strong=\"G1520\"* them|strong=\"G3588\"*, and|strong=\"G1161\"* healed|strong=\"G2323\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 41, + "text": "Demons|strong=\"G1140\"* also|strong=\"G2532\"* came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G5207\"* many|strong=\"G4183\"*, crying|strong=\"G2905\"* out|strong=\"G1831\"* and|strong=\"G2532\"* saying|strong=\"G3004\"*, “You|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*, the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*!” Rebuking|strong=\"G2008\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* didn’t|strong=\"G3588\"* allow|strong=\"G1439\"* them|strong=\"G3588\"* to|strong=\"G2532\"* speak|strong=\"G2980\"*, because|strong=\"G3754\"* they|strong=\"G2532\"* knew|strong=\"G1492\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 42, + "text": "When|strong=\"G1161\"* it|strong=\"G2532\"* was|strong=\"G1096\"* day|strong=\"G2250\"*, he|strong=\"G2532\"* departed|strong=\"G1831\"* and|strong=\"G2532\"* went|strong=\"G1831\"* into|strong=\"G1519\"* an|strong=\"G2532\"* uninhabited place|strong=\"G5117\"* and|strong=\"G2532\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* looked|strong=\"G2532\"* for|strong=\"G1519\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* held|strong=\"G2722\"* on|strong=\"G1519\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* he|strong=\"G2532\"* wouldn’t|strong=\"G3588\"* go|strong=\"G4198\"* away|strong=\"G1831\"* from|strong=\"G2064\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 43, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w preach|strong=\"G2097\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w good|strong=\"G2097\"\\+w* \\+w news|strong=\"G2097\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G2087\"\\+w* \\+w cities|strong=\"G4172\"\\+w* \\+w also|strong=\"G2532\"\\+w*. \\+w For|strong=\"G3754\"\\+w* \\+w this|strong=\"G3778\"\\+w* reason \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2316\"\\+w*.”*" + }, + { + "verseNum": 44, + "text": "He|strong=\"G2532\"* was|strong=\"G1510\"* preaching|strong=\"G2784\"* in|strong=\"G1519\"* the|strong=\"G2532\"* synagogues|strong=\"G4864\"* of|strong=\"G2532\"* Galilee|strong=\"G1056\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* while|strong=\"G1722\"* the|strong=\"G1722\"* multitude|strong=\"G3793\"* pressed|strong=\"G3793\"* on|strong=\"G1722\"* him|strong=\"G3588\"* and|strong=\"G2532\"* heard the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*, he|strong=\"G2532\"* was|strong=\"G1510\"* standing|strong=\"G2476\"* by|strong=\"G1722\"* the|strong=\"G1722\"* lake|strong=\"G3041\"* of|strong=\"G3056\"* Gennesaret|strong=\"G1082\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* saw|strong=\"G3708\"* two|strong=\"G1417\"* boats|strong=\"G4143\"* standing|strong=\"G2476\"* by|strong=\"G3844\"* the|strong=\"G2532\"* lake|strong=\"G3041\"*, but|strong=\"G1161\"* the|strong=\"G2532\"* fishermen had|strong=\"G2532\"* gone out|strong=\"G2532\"* of|strong=\"G2532\"* them|strong=\"G3588\"* and|strong=\"G2532\"* were|strong=\"G3588\"* washing|strong=\"G4150\"* their|strong=\"G2532\"* nets|strong=\"G1350\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"G1161\"* entered|strong=\"G1684\"* into|strong=\"G1519\"* one|strong=\"G1520\"* of|strong=\"G1093\"* the|strong=\"G1722\"* boats|strong=\"G4143\"*, which|strong=\"G3739\"* was|strong=\"G1510\"* Simon|strong=\"G4613\"*’s, and|strong=\"G1161\"* asked|strong=\"G2065\"* him|strong=\"G3588\"* to|strong=\"G1519\"* put|strong=\"G1877\"* out|strong=\"G1877\"* a|strong=\"G1519\"* little|strong=\"G3641\"* from|strong=\"G3588\"* the|strong=\"G1722\"* land|strong=\"G1093\"*. He|strong=\"G1161\"* sat|strong=\"G2523\"* down|strong=\"G2523\"* and|strong=\"G1161\"* taught|strong=\"G1321\"* the|strong=\"G1722\"* multitudes|strong=\"G3793\"* from|strong=\"G3588\"* the|strong=\"G1722\"* boat|strong=\"G4143\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* finished|strong=\"G3973\"* speaking|strong=\"G2980\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* Simon|strong=\"G4613\"*, “\\+w Put|strong=\"G1877\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* deep \\+w and|strong=\"G2532\"\\+w* \\+w let|strong=\"G5465\"\\+w* \\+w down|strong=\"G5465\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w nets|strong=\"G1350\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G5613\"\\+w* catch.”*" + }, + { + "verseNum": 5, + "text": "Simon|strong=\"G4613\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Master|strong=\"G1988\"*, we|strong=\"G2532\"* worked|strong=\"G2872\"* all|strong=\"G3650\"* night|strong=\"G3571\"* and|strong=\"G2532\"* caught|strong=\"G2983\"* nothing|strong=\"G3762\"*; but|strong=\"G1161\"* at|strong=\"G1909\"* your|strong=\"G3650\"* word|strong=\"G4487\"* I|strong=\"G2532\"* will|strong=\"G2532\"* let|strong=\"G5465\"* down|strong=\"G5465\"* the|strong=\"G2532\"* net|strong=\"G1350\"*.”" + }, + { + "verseNum": 6, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* done|strong=\"G4160\"* this|strong=\"G3778\"*, they|strong=\"G2532\"* caught a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G4128\"* of|strong=\"G2532\"* fish|strong=\"G2486\"*, and|strong=\"G2532\"* their|strong=\"G2532\"* net|strong=\"G1350\"* was|strong=\"G3588\"* breaking." + }, + { + "verseNum": 7, + "text": "They|strong=\"G2532\"* beckoned|strong=\"G2656\"* to|strong=\"G2532\"* their|strong=\"G2532\"* partners|strong=\"G3353\"* in|strong=\"G1722\"* the|strong=\"G1722\"* other|strong=\"G2087\"* boat|strong=\"G4143\"*, that|strong=\"G3588\"* they|strong=\"G2532\"* should|strong=\"G3588\"* come|strong=\"G2064\"* and|strong=\"G2532\"* help|strong=\"G4815\"* them|strong=\"G3588\"*. They|strong=\"G2532\"* came|strong=\"G2064\"* and|strong=\"G2532\"* filled|strong=\"G4130\"* both|strong=\"G2532\"* boats|strong=\"G4143\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* they|strong=\"G2532\"* began to|strong=\"G2532\"* sink|strong=\"G1036\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* Simon|strong=\"G4613\"* Peter|strong=\"G4074\"*, when|strong=\"G1161\"* he|strong=\"G1161\"* saw|strong=\"G3708\"* it|strong=\"G3754\"*, fell|strong=\"G4363\"* down|strong=\"G4363\"* at|strong=\"G1161\"* Jesus|strong=\"G2424\"*’ knees|strong=\"G1119\"*, saying|strong=\"G3004\"*, “Depart|strong=\"G1831\"* from|strong=\"G1831\"* me|strong=\"G1473\"*, for|strong=\"G3754\"* I|strong=\"G1473\"* am|strong=\"G1510\"* a|strong=\"G1510\"* sinful man, Lord|strong=\"G2962\"*.”" + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* was|strong=\"G3588\"* amazed|strong=\"G2285\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* who|strong=\"G3739\"* were|strong=\"G3588\"* with|strong=\"G4862\"* him|strong=\"G3588\"*, at|strong=\"G1909\"* the|strong=\"G2532\"* catch of|strong=\"G2532\"* fish|strong=\"G2486\"* which|strong=\"G3739\"* they|strong=\"G2532\"* had|strong=\"G2532\"* caught|strong=\"G4815\"*;" + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* so|strong=\"G2532\"* also|strong=\"G2532\"* were|strong=\"G1510\"* James|strong=\"G2385\"* and|strong=\"G2532\"* John|strong=\"G2491\"*, sons|strong=\"G5207\"* of|strong=\"G5207\"* Zebedee|strong=\"G2199\"*, who|strong=\"G3739\"* were|strong=\"G1510\"* partners|strong=\"G2844\"* with|strong=\"G4314\"* Simon|strong=\"G4613\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* brought|strong=\"G2609\"* their|strong=\"G2532\"* boats|strong=\"G4143\"* to|strong=\"G2532\"* land|strong=\"G1093\"*, they|strong=\"G2532\"* left everything|strong=\"G3956\"*, and|strong=\"G2532\"* followed him|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "While|strong=\"G1722\"* he|strong=\"G2532\"* was|strong=\"G1510\"* in|strong=\"G1722\"* one|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G1722\"* cities|strong=\"G4172\"*, behold|strong=\"G2400\"*, there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G1096\"* man|strong=\"G1520\"* full|strong=\"G4134\"* of|strong=\"G2532\"* leprosy|strong=\"G3014\"*. When|strong=\"G1161\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* Jesus|strong=\"G2424\"*, he|strong=\"G2532\"* fell|strong=\"G4098\"* on|strong=\"G1909\"* his|strong=\"G1909\"* face|strong=\"G4383\"* and|strong=\"G2532\"* begged|strong=\"G1189\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, if|strong=\"G1437\"* you|strong=\"G1437\"* want|strong=\"G2309\"* to|strong=\"G2532\"*, you|strong=\"G1437\"* can|strong=\"G1410\"* make|strong=\"G2511\"* me|strong=\"G1473\"* clean|strong=\"G2511\"*.”" + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* stretched|strong=\"G1614\"* out|strong=\"G2532\"* his|strong=\"G2532\"* hand|strong=\"G5495\"* and|strong=\"G2532\"* touched him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w I|strong=\"G2532\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w*. \\+w Be|strong=\"G2532\"\\+w* \\+w made|strong=\"G3004\"\\+w* \\+w clean|strong=\"G2511\"\\+w*.”*" + }, + { + "verseNum": 14, + "text": "He|strong=\"G2532\"* commanded|strong=\"G3853\"* him|strong=\"G3588\"* to|strong=\"G1519\"* tell|strong=\"G3004\"* no|strong=\"G3367\"* one|strong=\"G3367\"*, “\\+w But|strong=\"G2532\"\\+w* \\+w go|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w way|strong=\"G3367\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w show|strong=\"G1166\"\\+w* \\+w yourself|strong=\"G4572\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w priest|strong=\"G2409\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w offer|strong=\"G4374\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w cleansing|strong=\"G2512\"\\+w* \\+w according|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w commanded|strong=\"G3853\"\\+w*, \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w testimony|strong=\"G3142\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* report|strong=\"G3056\"* concerning|strong=\"G4012\"* him|strong=\"G3588\"* spread|strong=\"G1330\"* much|strong=\"G4183\"* more|strong=\"G3123\"*, and|strong=\"G2532\"* great|strong=\"G4183\"* multitudes|strong=\"G3793\"* came|strong=\"G4905\"* together|strong=\"G4905\"* to|strong=\"G2532\"* hear and|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* healed|strong=\"G2323\"* by|strong=\"G2532\"* him|strong=\"G3588\"* of|strong=\"G4012\"* their|strong=\"G2532\"* infirmities." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* withdrew|strong=\"G5298\"* himself into|strong=\"G1722\"* the|strong=\"G1722\"* desert|strong=\"G2048\"* and|strong=\"G2532\"* prayed|strong=\"G4336\"*." + }, + { + "verseNum": 17, + "text": "On|strong=\"G1722\"* one|strong=\"G1520\"* of|strong=\"G1537\"* those|strong=\"G3588\"* days|strong=\"G2250\"*, he|strong=\"G2532\"* was|strong=\"G1510\"* teaching|strong=\"G1321\"*; and|strong=\"G2532\"* there|strong=\"G2532\"* were|strong=\"G1510\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* teachers|strong=\"G3547\"* of|strong=\"G1537\"* the|strong=\"G1722\"* law|strong=\"G3547\"* sitting|strong=\"G2521\"* by|strong=\"G1722\"* who|strong=\"G3739\"* had|strong=\"G2532\"* come|strong=\"G2064\"* out|strong=\"G1537\"* of|strong=\"G1537\"* every|strong=\"G3956\"* village|strong=\"G2968\"* of|strong=\"G1537\"* Galilee|strong=\"G1056\"*, Judea|strong=\"G2449\"*, and|strong=\"G2532\"* Jerusalem|strong=\"G2419\"*. The|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G1537\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* was|strong=\"G1510\"* with|strong=\"G1722\"* him|strong=\"G3588\"* to|strong=\"G1519\"* heal|strong=\"G2390\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 18, + "text": "Behold|strong=\"G2400\"*, men|strong=\"G3739\"* brought|strong=\"G5342\"* a|strong=\"G2532\"* paralyzed|strong=\"G3886\"* man|strong=\"G3739\"* on|strong=\"G1909\"* a|strong=\"G2532\"* cot, and|strong=\"G2532\"* they|strong=\"G2532\"* sought|strong=\"G2212\"* to|strong=\"G2532\"* bring|strong=\"G5342\"* him|strong=\"G3739\"* in|strong=\"G1909\"* to|strong=\"G2532\"* lay|strong=\"G5087\"* before|strong=\"G1799\"* Jesus|strong=\"G1510\"*." + }, + { + "verseNum": 19, + "text": "Not|strong=\"G3361\"* finding|strong=\"G2147\"* a|strong=\"G2532\"* way|strong=\"G3319\"* to|strong=\"G1519\"* bring|strong=\"G1533\"* him|strong=\"G3588\"* in|strong=\"G1519\"* because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*, they|strong=\"G2532\"* went|strong=\"G2424\"* up|strong=\"G1519\"* to|strong=\"G1519\"* the|strong=\"G2532\"* housetop|strong=\"G1430\"* and|strong=\"G2532\"* let|strong=\"G2524\"* him|strong=\"G3588\"* down|strong=\"G2524\"* through|strong=\"G1223\"* the|strong=\"G2532\"* tiles|strong=\"G2766\"* with|strong=\"G4862\"* his|strong=\"G1223\"* cot into|strong=\"G1519\"* the|strong=\"G2532\"* middle|strong=\"G3319\"* before|strong=\"G1715\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 20, + "text": "Seeing|strong=\"G3708\"* their|strong=\"G2532\"* faith|strong=\"G4102\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Man, \\+w your|strong=\"G2532\"\\+w* sins \\+w are|strong=\"G3588\"\\+w* forgiven \\+w you|strong=\"G4771\"\\+w*.”*" + }, + { + "verseNum": 21, + "text": "The|strong=\"G2532\"* scribes|strong=\"G1122\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* began to|strong=\"G2532\"* reason|strong=\"G1260\"*, saying|strong=\"G3004\"*, “Who|strong=\"G3739\"* is|strong=\"G1510\"* this|strong=\"G3778\"* who|strong=\"G3739\"* speaks|strong=\"G2980\"* blasphemies? Who|strong=\"G3739\"* can|strong=\"G1410\"* forgive sins, but|strong=\"G2532\"* God|strong=\"G2316\"* alone|strong=\"G3441\"*?”" + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"*, perceiving|strong=\"G1921\"* their|strong=\"G1438\"* thoughts|strong=\"G1261\"*, answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w reasoning|strong=\"G1260\"\\+w* \\+w so|strong=\"G1161\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G1722\"\\+w* \\+w hearts|strong=\"G2588\"\\+w*? *" + }, + { + "verseNum": 23, + "text": "\\+w Which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w easier|strong=\"G2123\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Your|strong=\"G2532\"\\+w* sins \\+w are|strong=\"G1510\"\\+w* forgiven \\+w you|strong=\"G4771\"\\+w*,’ \\+w or|strong=\"G2228\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Arise|strong=\"G1453\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w walk|strong=\"G4043\"\\+w*’? *" + }, + { + "verseNum": 24, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1519\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w to|strong=\"G1519\"\\+w* forgive sins,”* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G2532\"* paralyzed|strong=\"G3886\"* man|strong=\"G1519\"*, “\\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w arise|strong=\"G1453\"\\+w*, \\+w take|strong=\"G1161\"\\+w* \\+w up|strong=\"G1453\"\\+w* \\+w your|strong=\"G2192\"\\+w* cot, \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w house|strong=\"G3624\"\\+w*.”*" + }, + { + "verseNum": 25, + "text": "Immediately|strong=\"G3916\"* he|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G1519\"* before|strong=\"G1799\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* took|strong=\"G2532\"* up|strong=\"G1519\"* that|strong=\"G3739\"* which|strong=\"G3739\"* he|strong=\"G2532\"* was|strong=\"G3588\"* laying on|strong=\"G1909\"*, and|strong=\"G2532\"* departed to|strong=\"G1519\"* his|strong=\"G1519\"* house|strong=\"G3624\"*, glorifying|strong=\"G1392\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 26, + "text": "Amazement|strong=\"G1611\"* took|strong=\"G2983\"* hold on|strong=\"G5401\"* all|strong=\"G2532\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* glorified|strong=\"G1392\"* God|strong=\"G2316\"*. They|strong=\"G2532\"* were|strong=\"G3588\"* filled|strong=\"G4130\"* with|strong=\"G2532\"* fear|strong=\"G5401\"*, saying|strong=\"G3004\"*, “We|strong=\"G3754\"* have|strong=\"G2532\"* seen|strong=\"G3708\"* strange things|strong=\"G3588\"* today|strong=\"G4594\"*.”" + }, + { + "verseNum": 27, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"* he|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* saw|strong=\"G2300\"* a|strong=\"G2532\"* tax|strong=\"G5057\"* collector|strong=\"G5057\"* named|strong=\"G3686\"* Levi|strong=\"G3018\"* sitting|strong=\"G2521\"* at|strong=\"G1909\"* the|strong=\"G2532\"* tax|strong=\"G5057\"* office, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Follow|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w*!”*" + }, + { + "verseNum": 28, + "text": "He|strong=\"G2532\"* left|strong=\"G2641\"* everything|strong=\"G3956\"*, and|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* and|strong=\"G2532\"* followed him|strong=\"G2532\"*." + }, + { + "verseNum": 29, + "text": "Levi|strong=\"G3018\"* made|strong=\"G4160\"* a|strong=\"G2532\"* great|strong=\"G3173\"* feast|strong=\"G1403\"* for|strong=\"G1722\"* him|strong=\"G3588\"* in|strong=\"G1722\"* his|strong=\"G1722\"* house|strong=\"G3614\"*. There|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* great|strong=\"G3173\"* crowd|strong=\"G3793\"* of|strong=\"G2532\"* tax|strong=\"G5057\"* collectors|strong=\"G5057\"* and|strong=\"G2532\"* others|strong=\"G3588\"* who|strong=\"G3739\"* were|strong=\"G1510\"* reclining|strong=\"G2621\"* with|strong=\"G3326\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 30, + "text": "Their|strong=\"G2532\"* scribes|strong=\"G1122\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* murmured|strong=\"G1111\"* against|strong=\"G4314\"* his|strong=\"G1223\"* disciples|strong=\"G3101\"*, saying|strong=\"G3004\"*, “Why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G3004\"* eat|strong=\"G2068\"* and|strong=\"G2532\"* drink|strong=\"G4095\"* with|strong=\"G3326\"* the|strong=\"G2532\"* tax|strong=\"G5057\"* collectors|strong=\"G5057\"* and|strong=\"G2532\"* sinners?”" + }, + { + "verseNum": 31, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* healthy \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w need|strong=\"G5532\"\\+w* \\+w for|strong=\"G4314\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w physician|strong=\"G2395\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w sick|strong=\"G2560\"\\+w* \\+w do|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w I|strong=\"G2064\"\\+w* \\+w have|strong=\"G3756\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w call|strong=\"G2564\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w righteous|strong=\"G1342\"\\+w*, \\+w but|strong=\"G1342\"\\+w* sinners, \\+w to|strong=\"G1519\"\\+w* \\+w repentance|strong=\"G3341\"\\+w*.” *" + }, + { + "verseNum": 33, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Why do|strong=\"G4160\"* John|strong=\"G2491\"*’s disciples|strong=\"G3101\"* often|strong=\"G4437\"* fast|strong=\"G3522\"* and|strong=\"G2532\"* pray|strong=\"G1162\"*, likewise|strong=\"G3668\"* also|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"*, but|strong=\"G1161\"* yours|strong=\"G4674\"* eat|strong=\"G2068\"* and|strong=\"G2532\"* drink|strong=\"G4095\"*?”" + }, + { + "verseNum": 34, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w Can|strong=\"G1410\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w the|strong=\"G1722\"\\+w* friends \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w fast|strong=\"G3522\"\\+w* \\+w while|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w them|strong=\"G3588\"\\+w*? *" + }, + { + "verseNum": 35, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* taken away \\+w from|strong=\"G2064\"\\+w* \\+w them|strong=\"G3588\"\\+w*. \\+w Then|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w fast|strong=\"G3522\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w days|strong=\"G2250\"\\+w*.”*" + }, + { + "verseNum": 36, + "text": "He|strong=\"G2532\"* also|strong=\"G2532\"* told|strong=\"G3004\"* a|strong=\"G2532\"* parable|strong=\"G3850\"* to|strong=\"G4314\"* them|strong=\"G3588\"*. “\\+w No|strong=\"G3756\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w puts|strong=\"G1911\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w piece|strong=\"G1915\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w garment|strong=\"G2440\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w old|strong=\"G3820\"\\+w* \\+w garment|strong=\"G2440\"\\+w*, \\+w or|strong=\"G2532\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w tear|strong=\"G4977\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w new|strong=\"G2537\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w piece|strong=\"G1915\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w match|strong=\"G4856\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w old|strong=\"G3820\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* puts \\+w new|strong=\"G3501\"\\+w* \\+w wine|strong=\"G3631\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w old|strong=\"G3820\"\\+w* wineskins, \\+w or|strong=\"G2532\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w new|strong=\"G3501\"\\+w* \\+w wine|strong=\"G3631\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w burst|strong=\"G4486\"\\+w* \\+w the|strong=\"G2532\"\\+w* skins, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w spilled|strong=\"G1632\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* skins \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* destroyed. *" + }, + { + "verseNum": 38, + "text": "But \\+w new|strong=\"G2537\"\\+w* \\+w wine|strong=\"G3631\"\\+w* must \\+w be|strong=\"G1519\"\\+w* \\+w put|strong=\"G1519\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w fresh|strong=\"G2537\"\\+w* wineskins, \\+w and|strong=\"G1519\"\\+w* both \\+w are|strong=\"G1519\"\\+w* preserved. *" + }, + { + "verseNum": 39, + "text": "\\+w No|strong=\"G3762\"\\+w* \\+w man|strong=\"G3762\"\\+w* \\+w having|strong=\"G2532\"\\+w* \\+w drunk|strong=\"G4095\"\\+w* \\+w old|strong=\"G3820\"\\+w* wine immediately \\+w desires|strong=\"G2309\"\\+w* \\+w new|strong=\"G3501\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w says|strong=\"G3004\"\\+w*, ‘\\+w The|strong=\"G2532\"\\+w* \\+w old|strong=\"G3820\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w better|strong=\"G5543\"\\+w*.’”*" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* on|strong=\"G1722\"* the|strong=\"G1722\"* second|strong=\"G1207\"* Sabbath|strong=\"G4521\"* after|strong=\"G1161\"* the|strong=\"G1722\"* first|strong=\"G1207\"*, he|strong=\"G2532\"* was|strong=\"G1096\"* going|strong=\"G2532\"* through|strong=\"G1223\"* the|strong=\"G1722\"* grain|strong=\"G4719\"* fields|strong=\"G4702\"*. His|strong=\"G1223\"* disciples|strong=\"G3101\"* plucked|strong=\"G5089\"* the|strong=\"G1722\"* heads|strong=\"G4719\"* of|strong=\"G1223\"* grain|strong=\"G4719\"* and|strong=\"G2532\"* ate|strong=\"G2068\"*, rubbing|strong=\"G5597\"* them|strong=\"G3588\"* in|strong=\"G1722\"* their|strong=\"G2532\"* hands|strong=\"G5495\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"G1161\"* some|strong=\"G5100\"* of|strong=\"G5100\"* the|strong=\"G1161\"* Pharisees|strong=\"G5330\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “Why|strong=\"G5101\"* do|strong=\"G4160\"* you|strong=\"G3739\"* do|strong=\"G4160\"* that|strong=\"G3739\"* which|strong=\"G3739\"* is|strong=\"G3588\"* not|strong=\"G3756\"* lawful|strong=\"G1832\"* to|strong=\"G3004\"* do|strong=\"G4160\"* on|strong=\"G1161\"* the|strong=\"G1161\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"*?”" + }, + { + "verseNum": 3, + "text": "Jesus|strong=\"G2424\"*, answering them|strong=\"G3588\"*, said|strong=\"G3004\"*, “Haven’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3739\"\\+w* read \\+w what|strong=\"G3739\"\\+w* \\+w David|strong=\"G1138\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w hungry|strong=\"G3983\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w him|strong=\"G3588\"\\+w*, *" + }, + { + "verseNum": 4, + "text": "\\+w how|strong=\"G5613\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w entered|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s \\+w house|strong=\"G3624\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w ate|strong=\"G2068\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w show|strong=\"G2983\"\\+w* bread, \\+w and|strong=\"G2532\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w lawful|strong=\"G1832\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w except|strong=\"G1487\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w priests|strong=\"G2409\"\\+w* \\+w alone|strong=\"G3441\"\\+w*?”*" + }, + { + "verseNum": 5, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w The|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w*.”*" + }, + { + "verseNum": 6, + "text": "It|strong=\"G2532\"* also|strong=\"G2532\"* happened|strong=\"G1096\"* on|strong=\"G1722\"* another|strong=\"G2087\"* Sabbath|strong=\"G4521\"* that|strong=\"G3588\"* he|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"* and|strong=\"G2532\"* taught|strong=\"G1321\"*. There|strong=\"G1563\"* was|strong=\"G1510\"* a|strong=\"G1096\"* man|strong=\"G2087\"* there|strong=\"G1563\"*, and|strong=\"G2532\"* his|strong=\"G1519\"* right|strong=\"G1188\"* hand|strong=\"G5495\"* was|strong=\"G1510\"* withered|strong=\"G3584\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"G1722\"* scribes|strong=\"G1122\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Pharisees|strong=\"G5330\"* watched|strong=\"G3906\"* him|strong=\"G3588\"*, to|strong=\"G2443\"* see whether|strong=\"G1487\"* he|strong=\"G2532\"* would|strong=\"G2532\"* heal|strong=\"G2323\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* find|strong=\"G2147\"* an|strong=\"G2532\"* accusation|strong=\"G2723\"* against|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* knew|strong=\"G1492\"* their|strong=\"G2532\"* thoughts|strong=\"G1261\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G2532\"* man|strong=\"G1519\"* who|strong=\"G3588\"* had|strong=\"G2192\"* the|strong=\"G2532\"* withered|strong=\"G3584\"* hand|strong=\"G5495\"*, “\\+w Rise|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w stand|strong=\"G2476\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w middle|strong=\"G3319\"\\+w*.”* He|strong=\"G2532\"* arose|strong=\"G1453\"* and|strong=\"G2532\"* stood|strong=\"G2476\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1161\"\\+w* \\+w will|strong=\"G5590\"\\+w* \\+w ask|strong=\"G1905\"\\+w* \\+w you|strong=\"G5210\"\\+w* something: \\+w Is|strong=\"G3588\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w lawful|strong=\"G1832\"\\+w* \\+w on|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w do|strong=\"G3004\"\\+w* \\+w good|strong=\"G3588\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w do|strong=\"G3004\"\\+w* \\+w harm|strong=\"G2554\"\\+w*? \\+w To|strong=\"G4314\"\\+w* \\+w save|strong=\"G4982\"\\+w* \\+w a|strong=\"G1487\"\\+w* \\+w life|strong=\"G5590\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w to|strong=\"G4314\"\\+w* kill?”*" + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* looked|strong=\"G4017\"* around|strong=\"G4017\"* at|strong=\"G1161\"* them|strong=\"G3588\"* all|strong=\"G3956\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* man|strong=\"G3956\"*, “\\+w Stretch|strong=\"G1614\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hand|strong=\"G5495\"\\+w*.”* He|strong=\"G2532\"* did|strong=\"G4160\"*, and|strong=\"G2532\"* his|strong=\"G1438\"* hand|strong=\"G5495\"* was|strong=\"G3588\"* restored as|strong=\"G1161\"* sound as|strong=\"G1161\"* the|strong=\"G2532\"* other|strong=\"G1161\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G3588\"* filled|strong=\"G4130\"* with|strong=\"G4314\"* rage, and|strong=\"G2532\"* talked|strong=\"G1255\"* with|strong=\"G4314\"* one|strong=\"G3588\"* another|strong=\"G3588\"* about|strong=\"G4314\"* what|strong=\"G5101\"* they|strong=\"G2532\"* might|strong=\"G2532\"* do|strong=\"G4160\"* to|strong=\"G4314\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 12, + "text": "In|strong=\"G1722\"* these|strong=\"G3778\"* days|strong=\"G2250\"*, he|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G1519\"* the|strong=\"G1722\"* mountain|strong=\"G3735\"* to|strong=\"G1519\"* pray|strong=\"G4336\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* continued|strong=\"G1096\"* all|strong=\"G2532\"* night|strong=\"G1273\"* in|strong=\"G1722\"* prayer|strong=\"G4335\"* to|strong=\"G1519\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"G3753\"* it|strong=\"G2532\"* was|strong=\"G1096\"* day|strong=\"G2250\"*, he|strong=\"G2532\"* called|strong=\"G4377\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"*, and|strong=\"G2532\"* from|strong=\"G2532\"* them|strong=\"G3588\"* he|strong=\"G2532\"* chose|strong=\"G1586\"* twelve|strong=\"G1427\"*, whom|strong=\"G3739\"* he|strong=\"G2532\"* also|strong=\"G2532\"* named|strong=\"G3687\"* apostles:" + }, + { + "verseNum": 14, + "text": "Simon|strong=\"G4613\"*, whom|strong=\"G3739\"* he|strong=\"G2532\"* also|strong=\"G2532\"* named|strong=\"G3687\"* Peter|strong=\"G4074\"*; Andrew, his|strong=\"G2532\"* brother; James|strong=\"G2385\"*; John|strong=\"G2491\"*; Philip|strong=\"G5376\"*; Bartholomew;" + }, + { + "verseNum": 15, + "text": "Matthew|strong=\"G3156\"*; Thomas|strong=\"G2381\"*; James|strong=\"G2385\"* the|strong=\"G2532\"* son of|strong=\"G2532\"* Alphaeus; Simon|strong=\"G4613\"* who|strong=\"G3588\"* was|strong=\"G3588\"* called|strong=\"G2564\"* the|strong=\"G2532\"* Zealot|strong=\"G2208\"*;" + }, + { + "verseNum": 16, + "text": "Judas|strong=\"G2455\"* the|strong=\"G2532\"* son of|strong=\"G2532\"* James|strong=\"G2385\"*; and|strong=\"G2532\"* Judas|strong=\"G2455\"* Iscariot|strong=\"G2469\"*, who|strong=\"G3739\"* also|strong=\"G2532\"* became|strong=\"G1096\"* a|strong=\"G1096\"* traitor|strong=\"G4273\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* down|strong=\"G2597\"* with|strong=\"G3326\"* them|strong=\"G3588\"* and|strong=\"G2532\"* stood|strong=\"G2476\"* on|strong=\"G1909\"* a|strong=\"G2532\"* level|strong=\"G3977\"* place|strong=\"G5117\"*, with|strong=\"G3326\"* a|strong=\"G2532\"* crowd|strong=\"G3793\"* of|strong=\"G2532\"* his|strong=\"G3956\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* a|strong=\"G2532\"* great|strong=\"G4183\"* number|strong=\"G4128\"* of|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"* from|strong=\"G2064\"* all|strong=\"G3956\"* Judea|strong=\"G2449\"* and|strong=\"G2532\"* Jerusalem|strong=\"G2419\"* and|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2532\"* coast|strong=\"G5117\"* of|strong=\"G2532\"* Tyre|strong=\"G5184\"* and|strong=\"G2532\"* Sidon|strong=\"G4605\"*, who|strong=\"G3739\"* came|strong=\"G2064\"* to|strong=\"G2532\"* hear him|strong=\"G3588\"* and|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* healed|strong=\"G2390\"* of|strong=\"G2532\"* their|strong=\"G2532\"* diseases|strong=\"G3554\"*," + }, + { + "verseNum": 18, + "text": "as|strong=\"G2532\"* well|strong=\"G2532\"* as|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* troubled|strong=\"G1776\"* by|strong=\"G2532\"* unclean spirits|strong=\"G4151\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* being|strong=\"G2532\"* healed|strong=\"G2323\"*." + }, + { + "verseNum": 19, + "text": "All|strong=\"G3956\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* sought|strong=\"G2212\"* to|strong=\"G2532\"* touch him|strong=\"G3588\"*, for|strong=\"G3754\"* power|strong=\"G1411\"* came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G2532\"* him|strong=\"G3588\"* and|strong=\"G2532\"* healed|strong=\"G2390\"* them|strong=\"G3588\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"G2532\"* lifted|strong=\"G1869\"* up|strong=\"G1869\"* his|strong=\"G1519\"* eyes|strong=\"G3788\"* to|strong=\"G1519\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*:" + }, + { + "verseNum": 21, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w hunger|strong=\"G3983\"\\+w* \\+w now|strong=\"G3568\"\\+w*,*" + }, + { + "verseNum": 22, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w hate|strong=\"G3404\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w they|strong=\"G2532\"\\+w* exclude \\+w and|strong=\"G2532\"\\+w* mock \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w throw|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w evil|strong=\"G4190\"\\+w*, \\+w for|strong=\"G1752\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w*’s \\+w sake|strong=\"G1752\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w Rejoice|strong=\"G5463\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w leap|strong=\"G4640\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w joy|strong=\"G5463\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, \\+w your|strong=\"G2532\"\\+w* \\+w reward|strong=\"G3408\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w great|strong=\"G4183\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w fathers|strong=\"G3962\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w same|strong=\"G1565\"\\+w* thing \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*.*" + }, + { + "verseNum": 24, + "text": "“\\+w But|strong=\"G4133\"\\+w* \\+w woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G3759\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w rich|strong=\"G4145\"\\+w*!*" + }, + { + "verseNum": 25, + "text": "\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* full \\+w now|strong=\"G3568\"\\+w*,*" + }, + { + "verseNum": 26, + "text": "\\+w Woe|strong=\"G3759\"\\+w*,*+ 6:26 TR adds “to you”* \\+w when|strong=\"G3752\"\\+w**+ 6:26 TR adds “all” * \\+w men|strong=\"G3956\"\\+w* \\+w speak|strong=\"G3004\"\\+w* \\+w well|strong=\"G2573\"\\+w* \\+w of|strong=\"G3962\"\\+w* \\+w you|strong=\"G4771\"\\+w*,*" + }, + { + "verseNum": 27, + "text": "“\\+w But|strong=\"G3588\"\\+w* \\+w I|strong=\"G3004\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3588\"\\+w* hear: love \\+w your|strong=\"G4160\"\\+w* \\+w enemies|strong=\"G2190\"\\+w*, \\+w do|strong=\"G4160\"\\+w* \\+w good|strong=\"G2573\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w hate|strong=\"G3404\"\\+w* \\+w you|strong=\"G5210\"\\+w*, *" + }, + { + "verseNum": 28, + "text": "\\+w bless|strong=\"G2127\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w curse|strong=\"G2672\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G3588\"\\+w* \\+w pray|strong=\"G4336\"\\+w* \\+w for|strong=\"G4012\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w mistreat|strong=\"G1908\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w To|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* strikes \\+w you|strong=\"G4771\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w cheek|strong=\"G4600\"\\+w*, \\+w offer|strong=\"G3930\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G3361\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* takes away \\+w your|strong=\"G2532\"\\+w* \\+w cloak|strong=\"G2440\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w withhold|strong=\"G2967\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w coat|strong=\"G2440\"\\+w* \\+w also|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w Give|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* asks \\+w you|strong=\"G4771\"\\+w*, \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* ask \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* takes away \\+w your|strong=\"G4674\"\\+w* goods \\+w to|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w back|strong=\"G1325\"\\+w* \\+w again|strong=\"G2532\"\\+w*.*" + }, + { + "verseNum": 31, + "text": "“\\+w As|strong=\"G2531\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w would|strong=\"G2309\"\\+w* \\+w like|strong=\"G2531\"\\+w* \\+w people|strong=\"G4160\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w do|strong=\"G4160\"\\+w* exactly \\+w so|strong=\"G2443\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "“\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G5210\"\\+w* love \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* love \\+w you|strong=\"G5210\"\\+w*, \\+w what|strong=\"G4169\"\\+w* \\+w credit|strong=\"G5485\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*? \\+w For|strong=\"G1063\"\\+w* \\+w even|strong=\"G2532\"\\+w* sinners love \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* love \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w what|strong=\"G4169\"\\+w* \\+w credit|strong=\"G5485\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*? \\+w For|strong=\"G1063\"\\+w* \\+w even|strong=\"G2532\"\\+w* sinners \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w same|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w lend|strong=\"G1155\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w hope|strong=\"G1679\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w receive|strong=\"G2983\"\\+w*, \\+w what|strong=\"G3739\"\\+w* \\+w credit|strong=\"G5485\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w*? \\+w Even|strong=\"G2532\"\\+w* sinners \\+w lend|strong=\"G1155\"\\+w* \\+w to|strong=\"G2443\"\\+w* sinners, \\+w to|strong=\"G2443\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w back|strong=\"G2983\"\\+w* \\+w as|strong=\"G2532\"\\+w* much. *" + }, + { + "verseNum": 35, + "text": "\\+w But|strong=\"G2532\"\\+w* love \\+w your|strong=\"G2532\"\\+w* \\+w enemies|strong=\"G2190\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w good|strong=\"G5543\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w lend|strong=\"G1155\"\\+w*, expecting \\+w nothing|strong=\"G3367\"\\+w* back; \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w reward|strong=\"G3408\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w great|strong=\"G4183\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Most|strong=\"G5310\"\\+w* \\+w High|strong=\"G5310\"\\+w*; \\+w for|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w kind|strong=\"G5543\"\\+w* \\+w toward|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* unthankful \\+w and|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w*.*" + }, + { + "verseNum": 36, + "text": "“Therefore \\+w be|strong=\"G1096\"\\+w* \\+w merciful|strong=\"G3629\"\\+w*,*" + }, + { + "verseNum": 37, + "text": "Don’t \\+w judge|strong=\"G2919\"\\+w*,*" + }, + { + "verseNum": 38, + "text": "“\\+w Give|strong=\"G1325\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*: \\+w good|strong=\"G2570\"\\+w* \\+w measure|strong=\"G3358\"\\+w*, \\+w pressed|strong=\"G4085\"\\+w* \\+w down|strong=\"G4085\"\\+w*, \\+w shaken|strong=\"G4531\"\\+w* \\+w together|strong=\"G4531\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w running|strong=\"G5240\"\\+w* \\+w over|strong=\"G1519\"\\+w*, \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*.*+ 6:38 literally, into your bosom.* \\+w For|strong=\"G1063\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w same|strong=\"G3739\"\\+w* \\+w measure|strong=\"G3358\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w measure|strong=\"G3358\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w measured|strong=\"G3354\"\\+w* \\+w back|strong=\"G1519\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*.”*" + }, + { + "verseNum": 39, + "text": "He|strong=\"G2532\"* spoke|strong=\"G3004\"* a|strong=\"G2532\"* parable|strong=\"G3850\"* to|strong=\"G1519\"* them|strong=\"G3004\"*. “\\+w Can|strong=\"G1410\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w blind|strong=\"G5185\"\\+w* \\+w guide|strong=\"G3594\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w blind|strong=\"G5185\"\\+w*? Won’t \\+w they|strong=\"G2532\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w fall|strong=\"G1706\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w pit|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 40, + "text": "\\+w A|strong=\"G5613\"\\+w* \\+w disciple|strong=\"G3101\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w above|strong=\"G5228\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w teacher|strong=\"G1320\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w when|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w fully|strong=\"G2675\"\\+w* \\+w trained|strong=\"G2675\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w teacher|strong=\"G1320\"\\+w*. *" + }, + { + "verseNum": 41, + "text": "\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G4771\"\\+w* see \\+w the|strong=\"G1722\"\\+w* \\+w speck|strong=\"G2595\"\\+w* \\+w of|strong=\"G1722\"\\+w* chaff \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G1722\"\\+w* brother’s \\+w eye|strong=\"G3788\"\\+w*, \\+w but|strong=\"G1161\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w consider|strong=\"G2657\"\\+w* \\+w the|strong=\"G1722\"\\+w* beam \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G1722\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w eye|strong=\"G3788\"\\+w*? *" + }, + { + "verseNum": 42, + "text": "\\+w Or|strong=\"G2532\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w your|strong=\"G2532\"\\+w* brother, ‘Brother, \\+w let|strong=\"G2532\"\\+w* \\+w me|strong=\"G3004\"\\+w* \\+w remove|strong=\"G1544\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w speck|strong=\"G2595\"\\+w* \\+w of|strong=\"G1537\"\\+w* chaff \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w eye|strong=\"G3788\"\\+w*,’ \\+w when|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w yourself|strong=\"G4771\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w see|strong=\"G1227\"\\+w* \\+w the|strong=\"G1722\"\\+w* beam \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w own|strong=\"G3788\"\\+w* \\+w eye|strong=\"G3788\"\\+w*? \\+w You|strong=\"G4771\"\\+w* \\+w hypocrite|strong=\"G5273\"\\+w*! \\+w First|strong=\"G4413\"\\+w* \\+w remove|strong=\"G1544\"\\+w* \\+w the|strong=\"G1722\"\\+w* beam \\+w from|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w own|strong=\"G3788\"\\+w* \\+w eye|strong=\"G3788\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w see|strong=\"G1227\"\\+w* \\+w clearly|strong=\"G1227\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w remove|strong=\"G1544\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w speck|strong=\"G2595\"\\+w* \\+w of|strong=\"G1537\"\\+w* chaff \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* brother’s \\+w eye|strong=\"G3788\"\\+w*. *" + }, + { + "verseNum": 43, + "text": "“\\+w For|strong=\"G1063\"\\+w* \\+w there|strong=\"G1063\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w that|strong=\"G4160\"\\+w* \\+w produces|strong=\"G4160\"\\+w* rotten \\+w fruit|strong=\"G2590\"\\+w*, \\+w nor|strong=\"G3761\"\\+w* \\+w again|strong=\"G3825\"\\+w* \\+w a|strong=\"G1510\"\\+w* rotten \\+w tree|strong=\"G1186\"\\+w* \\+w that|strong=\"G4160\"\\+w* \\+w produces|strong=\"G4160\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*. *" + }, + { + "verseNum": 44, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w each|strong=\"G1538\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w by|strong=\"G1537\"\\+w* \\+w its|strong=\"G1537\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w people|strong=\"G3761\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w gather|strong=\"G4816\"\\+w* \\+w figs|strong=\"G4810\"\\+w* \\+w from|strong=\"G1537\"\\+w* thorns, \\+w nor|strong=\"G3761\"\\+w* \\+w do|strong=\"G1063\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w gather|strong=\"G4816\"\\+w* \\+w grapes|strong=\"G4718\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w a|strong=\"G3756\"\\+w* bramble bush. *" + }, + { + "verseNum": 45, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w man|strong=\"G2588\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w brings|strong=\"G4393\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w good|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w man|strong=\"G2588\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w brings|strong=\"G4393\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w evil|strong=\"G4190\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w abundance|strong=\"G4051\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, \\+w his|strong=\"G2532\"\\+w* \\+w mouth|strong=\"G4750\"\\+w* \\+w speaks|strong=\"G2980\"\\+w*.*" + }, + { + "verseNum": 46, + "text": "“\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w call|strong=\"G2564\"\\+w* \\+w me|strong=\"G1473\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w Lord|strong=\"G2962\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* don’t \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3739\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w say|strong=\"G3004\"\\+w*? *" + }, + { + "verseNum": 47, + "text": "\\+w Everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* hears \\+w my|strong=\"G3956\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w does|strong=\"G4160\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w show|strong=\"G4160\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w*. *" + }, + { + "verseNum": 48, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w man|strong=\"G3739\"\\+w* \\+w building|strong=\"G3618\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w house|strong=\"G3614\"\\+w*, \\+w who|strong=\"G3739\"\\+w* \\+w dug|strong=\"G4626\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w went|strong=\"G2532\"\\+w* deep \\+w and|strong=\"G2532\"\\+w* \\+w laid|strong=\"G5087\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w foundation|strong=\"G2310\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rock|strong=\"G4073\"\\+w*. \\+w When|strong=\"G1161\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w flood|strong=\"G4215\"\\+w* \\+w arose|strong=\"G1096\"\\+w*, \\+w the|strong=\"G2532\"\\+w* stream broke \\+w against|strong=\"G1909\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w house|strong=\"G3614\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w could|strong=\"G2480\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w shake|strong=\"G4531\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w because|strong=\"G1223\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* founded \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rock|strong=\"G4073\"\\+w*. *" + }, + { + "verseNum": 49, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* hears \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w*, \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w man|strong=\"G3361\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w built|strong=\"G3618\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w without|strong=\"G5565\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w foundation|strong=\"G2310\"\\+w*, \\+w against|strong=\"G1909\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* stream broke, \\+w and|strong=\"G2532\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w fell|strong=\"G4098\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w ruin|strong=\"G4485\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w great|strong=\"G3173\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G4137\"* he|strong=\"G3588\"* had|strong=\"G3588\"* finished|strong=\"G4137\"* speaking in|strong=\"G1519\"* the|strong=\"G1519\"* hearing of|strong=\"G3956\"* the|strong=\"G1519\"* people|strong=\"G2992\"*, he|strong=\"G3588\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* Capernaum|strong=\"G2584\"*." + }, + { + "verseNum": 2, + "text": "A|strong=\"G2192\"* certain|strong=\"G5100\"* centurion|strong=\"G1543\"*’s|strong=\"G2192\"* servant|strong=\"G1401\"*, who|strong=\"G3739\"* was|strong=\"G1510\"* dear|strong=\"G1784\"* to|strong=\"G3195\"* him|strong=\"G3739\"*, was|strong=\"G1510\"* sick|strong=\"G2560\"* and|strong=\"G1161\"* at|strong=\"G1161\"* the|strong=\"G1161\"* point|strong=\"G3195\"* of|strong=\"G1401\"* death." + }, + { + "verseNum": 3, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* heard about|strong=\"G4012\"* Jesus|strong=\"G2424\"*, he|strong=\"G1161\"* sent|strong=\"G2424\"* to|strong=\"G4314\"* him|strong=\"G3588\"* elders|strong=\"G4245\"* of|strong=\"G4012\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"*, asking|strong=\"G2065\"* him|strong=\"G3588\"* to|strong=\"G4314\"* come|strong=\"G2064\"* and|strong=\"G1161\"* save|strong=\"G1295\"* his|strong=\"G4012\"* servant|strong=\"G1401\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* came|strong=\"G3854\"* to|strong=\"G4314\"* Jesus|strong=\"G2424\"*, they|strong=\"G1161\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* earnestly|strong=\"G4709\"*, saying|strong=\"G3004\"*, “He|strong=\"G1161\"* is|strong=\"G1510\"* worthy for|strong=\"G3754\"* you|strong=\"G3739\"* to|strong=\"G4314\"* do|strong=\"G3004\"* this|strong=\"G3778\"* for|strong=\"G3754\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 5, + "text": "for|strong=\"G1063\"* he|strong=\"G2532\"* loves our|strong=\"G2532\"* nation|strong=\"G1484\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* built|strong=\"G3618\"* our|strong=\"G2532\"* synagogue|strong=\"G4864\"* for|strong=\"G1063\"* us|strong=\"G2249\"*.”" + }, + { + "verseNum": 6, + "text": "Jesus|strong=\"G2424\"* went|strong=\"G4198\"* with|strong=\"G4862\"* them|strong=\"G3588\"*. When|strong=\"G1161\"* he|strong=\"G1161\"* was|strong=\"G1510\"* now|strong=\"G1161\"* not|strong=\"G3756\"* far|strong=\"G3112\"* from|strong=\"G5259\"* the|strong=\"G1161\"* house|strong=\"G3614\"*, the|strong=\"G1161\"* centurion|strong=\"G1543\"* sent|strong=\"G3992\"* friends|strong=\"G5384\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, don’t|strong=\"G3588\"* trouble|strong=\"G4660\"* yourself, for|strong=\"G1063\"* I|strong=\"G1473\"* am|strong=\"G1510\"* not|strong=\"G3756\"* worthy|strong=\"G2425\"* for|strong=\"G1063\"* you|strong=\"G3004\"* to|strong=\"G2443\"* come|strong=\"G1525\"* under|strong=\"G5259\"* my|strong=\"G1525\"* roof|strong=\"G4721\"*." + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"G1352\"* I|strong=\"G1473\"* didn’t|strong=\"G3588\"* even|strong=\"G2532\"* think myself|strong=\"G1683\"* worthy to|strong=\"G4314\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G4771\"*; but|strong=\"G2532\"* say|strong=\"G3004\"* the|strong=\"G2532\"* word|strong=\"G3056\"*, and|strong=\"G2532\"* my|strong=\"G1473\"* servant|strong=\"G3816\"* will|strong=\"G2532\"* be|strong=\"G2532\"* healed|strong=\"G2390\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* also|strong=\"G2532\"* am|strong=\"G1510\"* a|strong=\"G2192\"* man|strong=\"G3778\"* placed under|strong=\"G5259\"* authority|strong=\"G1849\"*, having|strong=\"G2192\"* under|strong=\"G5259\"* myself|strong=\"G1683\"* soldiers|strong=\"G4757\"*. I|strong=\"G1473\"* tell|strong=\"G3004\"* this|strong=\"G3778\"* one|strong=\"G3588\"*, ‘Go|strong=\"G4198\"*!’ and|strong=\"G2532\"* he|strong=\"G2532\"* goes|strong=\"G4198\"*; and|strong=\"G2532\"* to|strong=\"G2532\"* another|strong=\"G3588\"*, ‘Come|strong=\"G2064\"*!’ and|strong=\"G2532\"* he|strong=\"G2532\"* comes|strong=\"G2064\"*; and|strong=\"G2532\"* to|strong=\"G2532\"* my|strong=\"G1473\"* servant|strong=\"G1401\"*, ‘Do|strong=\"G4160\"* this|strong=\"G3778\"*,’ and|strong=\"G2532\"* he|strong=\"G2532\"* does|strong=\"G4160\"* it|strong=\"G2532\"*.”" + }, + { + "verseNum": 9, + "text": "When|strong=\"G1161\"* Jesus|strong=\"G2424\"* heard these|strong=\"G3778\"* things|strong=\"G3778\"*, he|strong=\"G2532\"* marveled|strong=\"G2296\"* at|strong=\"G1722\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* turned|strong=\"G4762\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G1722\"* multitude|strong=\"G3793\"* who|strong=\"G3588\"* followed him|strong=\"G3588\"*, “\\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w not|strong=\"G3761\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w such|strong=\"G5118\"\\+w* \\+w great|strong=\"G5118\"\\+w* \\+w faith|strong=\"G4102\"\\+w*, \\+w no|strong=\"G3761\"\\+w*, \\+w not|strong=\"G3761\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Israel|strong=\"G2474\"\\+w*.”*" + }, + { + "verseNum": 10, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* sent|strong=\"G3992\"*, returning|strong=\"G5290\"* to|strong=\"G1519\"* the|strong=\"G2532\"* house|strong=\"G3624\"*, found|strong=\"G2147\"* that|strong=\"G3588\"* the|strong=\"G2532\"* servant|strong=\"G1401\"* who|strong=\"G3588\"* had|strong=\"G2532\"* been|strong=\"G2532\"* sick was|strong=\"G3588\"* well|strong=\"G2532\"*." + }, + { + "verseNum": 11, + "text": "Soon|strong=\"G1722\"* afterwards|strong=\"G1722\"*, he|strong=\"G2532\"* went|strong=\"G4198\"* to|strong=\"G1519\"* a|strong=\"G1096\"* city|strong=\"G4172\"* called|strong=\"G2564\"* Nain|strong=\"G3484\"*. Many|strong=\"G4183\"* of|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, along|strong=\"G2532\"* with|strong=\"G1722\"* a|strong=\"G1096\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"*, went|strong=\"G4198\"* with|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* he|strong=\"G2532\"* came|strong=\"G2532\"* near|strong=\"G1448\"* to|strong=\"G2532\"* the|strong=\"G2532\"* gate|strong=\"G4439\"* of|strong=\"G5207\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, behold|strong=\"G2400\"*, one|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G1510\"* dead|strong=\"G2348\"* was|strong=\"G1510\"* carried|strong=\"G2532\"* out|strong=\"G2532\"*, the|strong=\"G2532\"* only|strong=\"G3439\"* born+ 7:12 The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”. * son|strong=\"G5207\"* of|strong=\"G5207\"* his|strong=\"G3708\"* mother|strong=\"G3384\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G5613\"* widow|strong=\"G5503\"*. Many|strong=\"G2425\"* people|strong=\"G3793\"* of|strong=\"G5207\"* the|strong=\"G2532\"* city|strong=\"G4172\"* were|strong=\"G1510\"* with|strong=\"G4862\"* her|strong=\"G3708\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* saw|strong=\"G3708\"* her|strong=\"G1438\"*, he|strong=\"G2532\"* had|strong=\"G2532\"* compassion|strong=\"G4697\"* on|strong=\"G1909\"* her|strong=\"G1438\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* her|strong=\"G1438\"*, “Don’\\+w t|strong=\"G3588\"\\+w* cry.”*" + }, + { + "verseNum": 14, + "text": "He|strong=\"G2532\"* came|strong=\"G4334\"* near|strong=\"G4334\"* and|strong=\"G2532\"* touched the|strong=\"G2532\"* coffin|strong=\"G4673\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* bearers stood|strong=\"G2476\"* still|strong=\"G2476\"*. He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Young|strong=\"G3495\"\\+w* \\+w man|strong=\"G3495\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w arise|strong=\"G1453\"\\+w*!”*" + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* was|strong=\"G3588\"* dead|strong=\"G3498\"* sat|strong=\"G3498\"* up|strong=\"G1325\"* and|strong=\"G2532\"* began to|strong=\"G2532\"* speak|strong=\"G2980\"*. Then|strong=\"G2532\"* he|strong=\"G2532\"* gave|strong=\"G1325\"* him|strong=\"G3588\"* to|strong=\"G2532\"* his|strong=\"G2532\"* mother|strong=\"G3384\"*." + }, + { + "verseNum": 16, + "text": "Fear|strong=\"G5401\"* took|strong=\"G2983\"* hold|strong=\"G2249\"* of|strong=\"G2316\"* all|strong=\"G3956\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* glorified|strong=\"G1392\"* God|strong=\"G2316\"*, saying|strong=\"G3004\"*, “A|strong=\"G2532\"* great|strong=\"G3173\"* prophet|strong=\"G4396\"* has|strong=\"G2316\"* arisen|strong=\"G1453\"* among|strong=\"G1722\"* us|strong=\"G3004\"*!” and|strong=\"G2532\"*, “God|strong=\"G2316\"* has|strong=\"G2316\"* visited|strong=\"G1980\"* his|strong=\"G3956\"* people|strong=\"G2992\"*!”" + }, + { + "verseNum": 17, + "text": "This|strong=\"G3778\"* report|strong=\"G3056\"* went|strong=\"G1831\"* out|strong=\"G1831\"* concerning|strong=\"G4012\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* whole|strong=\"G3650\"* of|strong=\"G4012\"* Judea|strong=\"G2449\"* and|strong=\"G2532\"* in|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* surrounding|strong=\"G4066\"* region|strong=\"G4066\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"G2532\"* disciples|strong=\"G3101\"* of|strong=\"G4012\"* John|strong=\"G2491\"* told him|strong=\"G3588\"* about|strong=\"G4012\"* all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 19, + "text": "John|strong=\"G2491\"*, calling|strong=\"G4341\"* to|strong=\"G4314\"* himself two|strong=\"G1417\"* of|strong=\"G2532\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"*, sent|strong=\"G3992\"* them|strong=\"G3588\"* to|strong=\"G4314\"* Jesus|strong=\"G3004\"*, saying|strong=\"G3004\"*, “Are|strong=\"G1510\"* you|strong=\"G4771\"* the|strong=\"G2532\"* one|strong=\"G5100\"* who|strong=\"G3588\"* is|strong=\"G1510\"* coming|strong=\"G2064\"*, or|strong=\"G2228\"* should|strong=\"G5100\"* we|strong=\"G2532\"* look|strong=\"G4328\"* for|strong=\"G4314\"* another|strong=\"G5100\"*?”" + }, + { + "verseNum": 20, + "text": "When|strong=\"G1161\"* the|strong=\"G1161\"* men|strong=\"G3588\"* had|strong=\"G1510\"* come|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, they|strong=\"G1161\"* said|strong=\"G3004\"*, “John|strong=\"G2491\"* the|strong=\"G1161\"* Baptizer has|strong=\"G1510\"* sent us|strong=\"G3004\"* to|strong=\"G4314\"* you|strong=\"G4771\"*, saying|strong=\"G3004\"*, ‘Are|strong=\"G1510\"* you|strong=\"G4771\"* he|strong=\"G1161\"* who|strong=\"G3588\"* comes|strong=\"G2064\"*, or|strong=\"G2228\"* should|strong=\"G3588\"* we|strong=\"G2249\"* look|strong=\"G4328\"* for|strong=\"G4314\"* another|strong=\"G3588\"*?’”" + }, + { + "verseNum": 21, + "text": "In|strong=\"G1722\"* that|strong=\"G3588\"* hour|strong=\"G5610\"* he|strong=\"G2532\"* cured|strong=\"G2323\"* many|strong=\"G4183\"* of|strong=\"G4151\"* diseases|strong=\"G3554\"* and|strong=\"G2532\"* plagues|strong=\"G3148\"* and|strong=\"G2532\"* evil|strong=\"G4190\"* spirits|strong=\"G4151\"*; and|strong=\"G2532\"* to|strong=\"G2532\"* many|strong=\"G4183\"* who|strong=\"G3588\"* were|strong=\"G3588\"* blind|strong=\"G5185\"* he|strong=\"G2532\"* gave|strong=\"G2532\"* sight|strong=\"G3588\"*." + }, + { + "verseNum": 22, + "text": "Jesus|strong=\"G3004\"* answered|strong=\"G3004\"* them|strong=\"G3739\"*, “\\+w Go|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w John|strong=\"G2491\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3739\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w and|strong=\"G2532\"\\+w* heard: \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w blind|strong=\"G5185\"\\+w* receive \\+w their|strong=\"G2532\"\\+w* sight, \\+w the|strong=\"G2532\"\\+w* \\+w lame|strong=\"G5560\"\\+w* \\+w walk|strong=\"G4043\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w lepers|strong=\"G3015\"\\+w* \\+w are|strong=\"G3739\"\\+w* \\+w cleansed|strong=\"G2511\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w deaf|strong=\"G2974\"\\+w* hear, \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w are|strong=\"G3739\"\\+w* \\+w raised|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w poor|strong=\"G4434\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w good|strong=\"G2097\"\\+w* \\+w news|strong=\"G2097\"\\+w* \\+w preached|strong=\"G2097\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3739\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* finds \\+w no|strong=\"G3361\"\\+w* occasion \\+w for|strong=\"G1722\"\\+w* \\+w stumbling|strong=\"G4624\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 24, + "text": "When|strong=\"G1161\"* John|strong=\"G2491\"*’s messengers had|strong=\"G3588\"* departed|strong=\"G1831\"*, he|strong=\"G1161\"* began|strong=\"G1161\"* to|strong=\"G1519\"* tell|strong=\"G3004\"* the|strong=\"G1519\"* multitudes|strong=\"G3793\"* about|strong=\"G4012\"* John|strong=\"G2491\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w did|strong=\"G5101\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w wilderness|strong=\"G2048\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w see|strong=\"G2300\"\\+w*? \\+w A|strong=\"G1519\"\\+w* \\+w reed|strong=\"G2563\"\\+w* \\+w shaken|strong=\"G4531\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w the|strong=\"G1519\"\\+w* wind? *" + }, + { + "verseNum": 25, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w*? \\+w A|strong=\"G2532\"\\+w* \\+w man|strong=\"G5101\"\\+w* \\+w clothed|strong=\"G2441\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w soft|strong=\"G3120\"\\+w* \\+w clothing|strong=\"G2440\"\\+w*? \\+w Behold|strong=\"G2400\"\\+w*, \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w gorgeously|strong=\"G1741\"\\+w* \\+w dressed|strong=\"G1722\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w live|strong=\"G5225\"\\+w* \\+w delicately|strong=\"G5172\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w kings|strong=\"G3588\"\\+w*’ courts. *" + }, + { + "verseNum": 26, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w*? \\+w A|strong=\"G2532\"\\+w* \\+w prophet|strong=\"G4396\"\\+w*? \\+w Yes|strong=\"G3483\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* much \\+w more|strong=\"G2532\"\\+w* \\+w than|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w prophet|strong=\"G4396\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G3739\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w it|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w written|strong=\"G1125\"\\+w*,*" + }, + { + "verseNum": 28, + "text": "“\\+w For|strong=\"G1161\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w among|strong=\"G1722\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w born|strong=\"G1084\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w women|strong=\"G1135\"\\+w* \\+w there|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G1510\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w prophet|strong=\"G4396\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w John|strong=\"G2491\"\\+w* \\+w the|strong=\"G1722\"\\+w* Baptizer; \\+w yet|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w least|strong=\"G3398\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w is|strong=\"G1510\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w he|strong=\"G1161\"\\+w*.”*" + }, + { + "verseNum": 29, + "text": "When|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"* and|strong=\"G2532\"* the|strong=\"G2532\"* tax|strong=\"G5057\"* collectors|strong=\"G5057\"* heard this|strong=\"G3588\"*, they|strong=\"G2532\"* declared God|strong=\"G2316\"* to|strong=\"G2532\"* be|strong=\"G2532\"* just|strong=\"G2532\"*, having|strong=\"G2532\"* been|strong=\"G2532\"* baptized with|strong=\"G2532\"* John|strong=\"G2491\"*’s baptism." + }, + { + "verseNum": 30, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* the|strong=\"G2532\"* lawyers|strong=\"G3544\"* rejected the|strong=\"G2532\"* counsel|strong=\"G1012\"* of|strong=\"G5259\"* God|strong=\"G2316\"*, not|strong=\"G3361\"* being|strong=\"G2532\"* baptized by|strong=\"G5259\"* him|strong=\"G3588\"* themselves|strong=\"G1438\"*." + }, + { + "verseNum": 31, + "text": "+ 7:31 TR adds “But the Lord said,”*“\\+w To|strong=\"G2532\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w then|strong=\"G3767\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w compare|strong=\"G3666\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w people|strong=\"G1510\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w*? \\+w What|strong=\"G5101\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w like|strong=\"G3664\"\\+w*? *" + }, + { + "verseNum": 32, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w children|strong=\"G3813\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sit|strong=\"G2521\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* marketplace \\+w and|strong=\"G2532\"\\+w* \\+w call|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w another|strong=\"G3588\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w We|strong=\"G2532\"\\+w* piped \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w dance|strong=\"G3738\"\\+w*. \\+w We|strong=\"G2532\"\\+w* mourned, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w weep|strong=\"G2799\"\\+w*.’ *" + }, + { + "verseNum": 33, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w John|strong=\"G2491\"\\+w* \\+w the|strong=\"G2532\"\\+w* Baptizer \\+w came|strong=\"G2064\"\\+w* \\+w neither|strong=\"G3366\"\\+w* \\+w eating|strong=\"G2068\"\\+w* bread \\+w nor|strong=\"G3366\"\\+w* \\+w drinking|strong=\"G4095\"\\+w* \\+w wine|strong=\"G3631\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w He|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w demon|strong=\"G1140\"\\+w*.’ *" + }, + { + "verseNum": 34, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w has|strong=\"G3708\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w eating|strong=\"G2068\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drinking|strong=\"G4095\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Behold|strong=\"G2400\"\\+w*, \\+w a|strong=\"G2532\"\\+w* glutton \\+w and|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w drunkard|strong=\"G3630\"\\+w*, \\+w a|strong=\"G2532\"\\+w* \\+w friend|strong=\"G5384\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w tax|strong=\"G5057\"\\+w* \\+w collectors|strong=\"G5057\"\\+w* \\+w and|strong=\"G2532\"\\+w* sinners!’ *" + }, + { + "verseNum": 35, + "text": "\\+w Wisdom|strong=\"G4678\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w justified|strong=\"G1344\"\\+w* \\+w by|strong=\"G1344\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w her|strong=\"G3956\"\\+w* \\+w children|strong=\"G5043\"\\+w*.”*" + }, + { + "verseNum": 36, + "text": "One|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* invited|strong=\"G2065\"* him|strong=\"G3588\"* to|strong=\"G1519\"* eat|strong=\"G2068\"* with|strong=\"G3326\"* him|strong=\"G3588\"*. He|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* Pharisee|strong=\"G5330\"*’s house|strong=\"G3624\"* and|strong=\"G2532\"* sat|strong=\"G2532\"* at|strong=\"G1519\"* the|strong=\"G2532\"* table." + }, + { + "verseNum": 37, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G2532\"* woman|strong=\"G1135\"* in|strong=\"G1722\"* the|strong=\"G1722\"* city|strong=\"G4172\"* who|strong=\"G3588\"* was|strong=\"G1510\"* a|strong=\"G2532\"* sinner, when|strong=\"G2532\"* she|strong=\"G2532\"* knew|strong=\"G1921\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* reclining|strong=\"G2621\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Pharisee|strong=\"G5330\"*’s house|strong=\"G3614\"*, brought|strong=\"G2865\"* an|strong=\"G2532\"* alabaster jar of|strong=\"G2532\"* ointment|strong=\"G3464\"*." + }, + { + "verseNum": 38, + "text": "Standing|strong=\"G2476\"* behind|strong=\"G3694\"* at|strong=\"G3844\"* his|strong=\"G2532\"* feet|strong=\"G4228\"* weeping|strong=\"G2799\"*, she|strong=\"G2532\"* began to|strong=\"G2532\"* wet|strong=\"G1026\"* his|strong=\"G2532\"* feet|strong=\"G4228\"* with|strong=\"G3844\"* her|strong=\"G3588\"* tears|strong=\"G1144\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* wiped|strong=\"G1591\"* them|strong=\"G3588\"* with|strong=\"G3844\"* the|strong=\"G2532\"* hair|strong=\"G2359\"* of|strong=\"G2532\"* her|strong=\"G3588\"* head|strong=\"G2776\"*, kissed|strong=\"G2705\"* his|strong=\"G2532\"* feet|strong=\"G4228\"*, and|strong=\"G2532\"* anointed them|strong=\"G3588\"* with|strong=\"G3844\"* the|strong=\"G2532\"* ointment|strong=\"G3464\"*." + }, + { + "verseNum": 39, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G1722\"* Pharisee|strong=\"G5330\"* who|strong=\"G5101\"* had|strong=\"G2532\"* invited|strong=\"G2564\"* him|strong=\"G3588\"* saw|strong=\"G3708\"* it|strong=\"G2532\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* himself|strong=\"G1438\"*, “This|strong=\"G3778\"* man|strong=\"G3778\"*, if|strong=\"G1487\"* he|strong=\"G2532\"* were|strong=\"G1510\"* a|strong=\"G2532\"* prophet|strong=\"G4396\"*, would|strong=\"G2532\"* have|strong=\"G2532\"* perceived|strong=\"G1097\"* who|strong=\"G5101\"* and|strong=\"G2532\"* what|strong=\"G5101\"* kind|strong=\"G4217\"* of|strong=\"G2532\"* woman|strong=\"G1135\"* this|strong=\"G3778\"* is|strong=\"G1510\"* who|strong=\"G5101\"* touches him|strong=\"G3588\"*, that|strong=\"G3754\"* she|strong=\"G2532\"* is|strong=\"G1510\"* a|strong=\"G2532\"* sinner.”" + }, + { + "verseNum": 40, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Simon|strong=\"G4613\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w something|strong=\"G5100\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*.” *" + }, + { + "verseNum": 41, + "text": "“\\+w A|strong=\"G1510\"\\+w* \\+w certain|strong=\"G5100\"\\+w* lender \\+w had|strong=\"G1510\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w debtors|strong=\"G5533\"\\+w*. \\+w The|strong=\"G1161\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w owed|strong=\"G3784\"\\+w* \\+w five|strong=\"G4001\"\\+w* \\+w hundred|strong=\"G4001\"\\+w* \\+w denarii|strong=\"G1220\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w other|strong=\"G2087\"\\+w* \\+w fifty|strong=\"G4004\"\\+w*. *" + }, + { + "verseNum": 42, + "text": "\\+w When|strong=\"G3767\"\\+w* \\+w they|strong=\"G3767\"\\+w* couldn’t pay, \\+w he|strong=\"G3767\"\\+w* \\+w forgave|strong=\"G5483\"\\+w* \\+w them|strong=\"G4183\"\\+w* both. \\+w Which|strong=\"G5101\"\\+w* \\+w of|strong=\"G2192\"\\+w* \\+w them|strong=\"G4183\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w will|strong=\"G5101\"\\+w* love him \\+w most|strong=\"G4183\"\\+w*?”*" + }, + { + "verseNum": 43, + "text": "Simon|strong=\"G4613\"* answered|strong=\"G3004\"*, “He|strong=\"G1161\"*, I|strong=\"G3739\"* suppose|strong=\"G5274\"*, to|strong=\"G3004\"* whom|strong=\"G3739\"* he|strong=\"G1161\"* forgave|strong=\"G5483\"* the|strong=\"G1161\"* most|strong=\"G4183\"*.”" + }, + { + "verseNum": 44, + "text": "Turning|strong=\"G4762\"* to|strong=\"G1519\"* the|strong=\"G2532\"* woman|strong=\"G1135\"*, he|strong=\"G2532\"* said|strong=\"G5346\"* to|strong=\"G1519\"* Simon|strong=\"G4613\"*, “\\+w Do|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* see \\+w this|strong=\"G3778\"\\+w* \\+w woman|strong=\"G1135\"\\+w*? \\+w I|strong=\"G1473\"\\+w* \\+w entered|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w water|strong=\"G5204\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w my|strong=\"G1525\"\\+w* \\+w feet|strong=\"G4228\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w she|strong=\"G2532\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w wet|strong=\"G1026\"\\+w* \\+w my|strong=\"G1525\"\\+w* \\+w feet|strong=\"G4228\"\\+w* \\+w with|strong=\"G4314\"\\+w* \\+w her|strong=\"G1325\"\\+w* \\+w tears|strong=\"G1144\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w wiped|strong=\"G1591\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w with|strong=\"G4314\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w hair|strong=\"G2359\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w her|strong=\"G1325\"\\+w* head. *" + }, + { + "verseNum": 45, + "text": "\\+w You|strong=\"G3739\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w kiss|strong=\"G5370\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w she|strong=\"G1161\"\\+w*, \\+w since|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w time|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w*, \\+w has|strong=\"G3739\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w ceased|strong=\"G1257\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w kiss|strong=\"G5370\"\\+w* \\+w my|strong=\"G1525\"\\+w* \\+w feet|strong=\"G4228\"\\+w*. *" + }, + { + "verseNum": 46, + "text": "\\+w You|strong=\"G3778\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* anoint \\+w my|strong=\"G1473\"\\+w* \\+w head|strong=\"G2776\"\\+w* \\+w with|strong=\"G3756\"\\+w* \\+w oil|strong=\"G1637\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w she|strong=\"G1161\"\\+w* \\+w has|strong=\"G3778\"\\+w* anointed \\+w my|strong=\"G1473\"\\+w* \\+w feet|strong=\"G4228\"\\+w* \\+w with|strong=\"G3756\"\\+w* \\+w ointment|strong=\"G3464\"\\+w*. *" + }, + { + "verseNum": 47, + "text": "\\+w Therefore|strong=\"G1161\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w her|strong=\"G3754\"\\+w* sins, \\+w which|strong=\"G3739\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w many|strong=\"G4183\"\\+w*, \\+w are|strong=\"G3588\"\\+w* forgiven, \\+w for|strong=\"G3754\"\\+w* \\+w she|strong=\"G1161\"\\+w* loved \\+w much|strong=\"G4183\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w one|strong=\"G3739\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w little|strong=\"G3641\"\\+w* \\+w is|strong=\"G3588\"\\+w* forgiven, loves \\+w little|strong=\"G3641\"\\+w*.” *" + }, + { + "verseNum": 48, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* her|strong=\"G3588\"*, “\\+w Your|strong=\"G3588\"\\+w* sins \\+w are|strong=\"G3588\"\\+w* forgiven.”*" + }, + { + "verseNum": 49, + "text": "Those|strong=\"G3588\"* who|strong=\"G3739\"* sat|strong=\"G3739\"* at|strong=\"G1722\"* the|strong=\"G1722\"* table|strong=\"G4873\"* with|strong=\"G1722\"* him|strong=\"G3588\"* began to|strong=\"G2532\"* say|strong=\"G3004\"* to|strong=\"G2532\"* themselves|strong=\"G1438\"*, “Who|strong=\"G3739\"* is|strong=\"G1510\"* this|strong=\"G3778\"* who|strong=\"G3739\"* even|strong=\"G2532\"* forgives sins?”" + }, + { + "verseNum": 50, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G1519\"* woman|strong=\"G1135\"*, “\\+w Your|strong=\"G4982\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w has|strong=\"G4102\"\\+w* \\+w saved|strong=\"G4982\"\\+w* \\+w you|strong=\"G4771\"\\+w*. \\+w Go|strong=\"G4198\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w peace|strong=\"G1515\"\\+w*.” *" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Soon|strong=\"G1722\"* afterwards|strong=\"G1722\"*, he|strong=\"G2532\"* went|strong=\"G2532\"* about|strong=\"G2596\"* through|strong=\"G1722\"* cities|strong=\"G4172\"* and|strong=\"G2532\"* villages|strong=\"G2968\"*, preaching|strong=\"G2784\"* and|strong=\"G2532\"* bringing the|strong=\"G1722\"* good|strong=\"G2097\"* news|strong=\"G2097\"* of|strong=\"G2316\"* God|strong=\"G2316\"*’s Kingdom. With|strong=\"G1722\"* him|strong=\"G3588\"* were|strong=\"G3588\"* the|strong=\"G1722\"* twelve|strong=\"G1427\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"G2532\"* certain|strong=\"G5100\"* women|strong=\"G1135\"* who|strong=\"G3739\"* had|strong=\"G2532\"* been|strong=\"G1510\"* healed|strong=\"G2323\"* of|strong=\"G4151\"* evil|strong=\"G4190\"* spirits|strong=\"G4151\"* and|strong=\"G2532\"* infirmities: Mary|strong=\"G3137\"* who|strong=\"G3739\"* was|strong=\"G1510\"* called|strong=\"G2564\"* Magdalene|strong=\"G3094\"*, from|strong=\"G2532\"* whom|strong=\"G3739\"* seven|strong=\"G2033\"* demons|strong=\"G1140\"* had|strong=\"G2532\"* gone|strong=\"G1831\"* out|strong=\"G1831\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"G2532\"* Joanna|strong=\"G2489\"*, the|strong=\"G2532\"* wife|strong=\"G1135\"* of|strong=\"G1537\"* Chuzas, Herod|strong=\"G2264\"*’s steward|strong=\"G2012\"*; Susanna|strong=\"G4677\"*; and|strong=\"G2532\"* many|strong=\"G4183\"* others|strong=\"G2087\"* who|strong=\"G3588\"* served|strong=\"G1247\"* them|strong=\"G3588\"*+ 8:3 TR reads “him” instead of “them”* from|strong=\"G1537\"* their|strong=\"G2532\"* possessions|strong=\"G5225\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"G1161\"* a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* came|strong=\"G2532\"* together|strong=\"G4896\"* and|strong=\"G2532\"* people|strong=\"G3793\"* from|strong=\"G2532\"* every|strong=\"G2596\"* city|strong=\"G4172\"* were|strong=\"G3588\"* coming|strong=\"G4896\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* spoke|strong=\"G3004\"* by|strong=\"G1223\"* a|strong=\"G2532\"* parable|strong=\"G3850\"*:" + }, + { + "verseNum": 5, + "text": "“\\+w The|strong=\"G1722\"\\+w* farmer \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w sow|strong=\"G4687\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w seed|strong=\"G4703\"\\+w*. \\+w As|strong=\"G1722\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w sowed|strong=\"G4687\"\\+w*, \\+w some|strong=\"G3739\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w along|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w road|strong=\"G3598\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w trampled|strong=\"G2662\"\\+w* \\+w under|strong=\"G1722\"\\+w* \\+w foot|strong=\"G2662\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w birds|strong=\"G4071\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w devoured|strong=\"G2719\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w Other|strong=\"G2087\"\\+w* seed \\+w fell|strong=\"G2532\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rock|strong=\"G4073\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w as|strong=\"G2532\"\\+w* \\+w soon|strong=\"G3361\"\\+w* \\+w as|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w grew|strong=\"G5453\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w withered|strong=\"G3583\"\\+w* \\+w away|strong=\"G3583\"\\+w*, \\+w because|strong=\"G1223\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w moisture|strong=\"G2429\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w Other|strong=\"G2087\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w amid|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* thorns, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* thorns \\+w grew|strong=\"G4855\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* choked \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w Other|strong=\"G2087\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w ground|strong=\"G1093\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w grew|strong=\"G5453\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w produced|strong=\"G4160\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w hundred|strong=\"G1542\"\\+w* \\+w times|strong=\"G1542\"\\+w* \\+w as|strong=\"G1519\"\\+w* \\+w much|strong=\"G1542\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*.”* As|strong=\"G1519\"* he|strong=\"G2532\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, he|strong=\"G2532\"* called|strong=\"G3004\"* out|strong=\"G2532\"*, “\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w ears|strong=\"G3775\"\\+w* \\+w to|strong=\"G1519\"\\+w* hear, \\+w let|strong=\"G2192\"\\+w* \\+w him|strong=\"G3588\"\\+w* hear!”*" + }, + { + "verseNum": 9, + "text": "Then|strong=\"G1161\"* his|strong=\"G3588\"* disciples|strong=\"G3101\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “What|strong=\"G5101\"* does|strong=\"G1510\"* this|strong=\"G3778\"* parable|strong=\"G3850\"* mean|strong=\"G1510\"*?”" + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w To|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w mysteries|strong=\"G3466\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom, \\+w but|strong=\"G1161\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w rest|strong=\"G3062\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w parables|strong=\"G3850\"\\+w*, \\+w that|strong=\"G2443\"\\+w* ‘seeing \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w see|strong=\"G1097\"\\+w*, \\+w and|strong=\"G2532\"\\+w* hearing \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w understand|strong=\"G4920\"\\+w*.’*+ 8:10 Isaiah 6:9*" + }, + { + "verseNum": 11, + "text": "“\\+w Now|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w parable|strong=\"G3850\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w this|strong=\"G3778\"\\+w*: \\+w The|strong=\"G1161\"\\+w* \\+w seed|strong=\"G4703\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w Those|strong=\"G3588\"\\+w* \\+w along|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w road|strong=\"G3598\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* hear; \\+w then|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w devil|strong=\"G1228\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* takes away \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w saved|strong=\"G4982\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w Those|strong=\"G3588\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w rock|strong=\"G4073\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w they|strong=\"G2532\"\\+w* hear, \\+w receive|strong=\"G1209\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w joy|strong=\"G5479\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w root|strong=\"G4491\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w for|strong=\"G1909\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w while|strong=\"G1722\"\\+w*, \\+w then|strong=\"G2532\"\\+w* fall \\+w away|strong=\"G3326\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w time|strong=\"G2540\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w temptation|strong=\"G3986\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w What|strong=\"G3588\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w among|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* thorns, \\+w these|strong=\"G3778\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* heard, \\+w and|strong=\"G2532\"\\+w* \\+w as|strong=\"G1519\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w on|strong=\"G1519\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w way|strong=\"G4198\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w choked|strong=\"G4846\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w cares|strong=\"G3308\"\\+w*, \\+w riches|strong=\"G4149\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w pleasures|strong=\"G2237\"\\+w* \\+w of|strong=\"G5259\"\\+w* life; \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w bring|strong=\"G5052\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w fruit|strong=\"G5052\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w maturity|strong=\"G5052\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w Those|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w ground|strong=\"G1093\"\\+w*, \\+w these|strong=\"G3778\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w honest|strong=\"G2570\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, \\+w having|strong=\"G2532\"\\+w* heard \\+w the|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w hold|strong=\"G2722\"\\+w* \\+w it|strong=\"G2532\"\\+w* tightly, \\+w and|strong=\"G2532\"\\+w* produce \\+w fruit|strong=\"G2592\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w perseverance|strong=\"G5281\"\\+w*.*" + }, + { + "verseNum": 16, + "text": "“\\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w*, \\+w when|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w has|strong=\"G3762\"\\+w* lit \\+w a|strong=\"G1909\"\\+w* \\+w lamp|strong=\"G3088\"\\+w*, \\+w covers|strong=\"G2572\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w with|strong=\"G1909\"\\+w* \\+w a|strong=\"G1909\"\\+w* \\+w container|strong=\"G4632\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w puts|strong=\"G5087\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w under|strong=\"G5270\"\\+w* \\+w a|strong=\"G1909\"\\+w* \\+w bed|strong=\"G2825\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w puts|strong=\"G5087\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w a|strong=\"G1909\"\\+w* stand, \\+w that|strong=\"G2443\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w enter|strong=\"G1531\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w may|strong=\"G2443\"\\+w* see \\+w the|strong=\"G1161\"\\+w* \\+w light|strong=\"G5457\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w nothing|strong=\"G3756\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w hidden|strong=\"G2927\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w revealed|strong=\"G5318\"\\+w*, \\+w nor|strong=\"G3761\"\\+w* anything \\+w secret|strong=\"G2927\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w light|strong=\"G5318\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w Be|strong=\"G2532\"\\+w* careful \\+w therefore|strong=\"G3767\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w you|strong=\"G3739\"\\+w* hear. \\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G1325\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* doesn’t \\+w have|strong=\"G2192\"\\+w*, \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G1325\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* taken away \\+w even|strong=\"G2532\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w thinks|strong=\"G1380\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w*.”*" + }, + { + "verseNum": 19, + "text": "His|strong=\"G1223\"* mother|strong=\"G3384\"* and|strong=\"G2532\"* brothers came|strong=\"G3854\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* could|strong=\"G1410\"* not|strong=\"G3756\"* come|strong=\"G3854\"* near|strong=\"G4314\"* him|strong=\"G3588\"* for|strong=\"G1223\"* the|strong=\"G2532\"* crowd|strong=\"G3793\"*." + }, + { + "verseNum": 20, + "text": "Some|strong=\"G3588\"* people|strong=\"G3588\"* told him|strong=\"G3588\"*, “Your|strong=\"G2532\"* mother|strong=\"G3384\"* and|strong=\"G2532\"* your|strong=\"G2532\"* brothers stand|strong=\"G2476\"* outside|strong=\"G1854\"*, desiring|strong=\"G2309\"* to|strong=\"G2532\"* see|strong=\"G3708\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 21, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w My|strong=\"G1473\"\\+w* \\+w mother|strong=\"G3384\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G1473\"\\+w* brothers \\+w are|strong=\"G1510\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w who|strong=\"G3588\"\\+w* hear \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w it|strong=\"G2532\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "Now|strong=\"G1161\"* on|strong=\"G1722\"* one|strong=\"G1520\"* of|strong=\"G2250\"* those|strong=\"G3588\"* days|strong=\"G2250\"*, he|strong=\"G2532\"* entered|strong=\"G1684\"* into|strong=\"G1519\"* a|strong=\"G1096\"* boat|strong=\"G4143\"*, himself|strong=\"G1438\"* and|strong=\"G2532\"* his|strong=\"G1438\"* disciples|strong=\"G3101\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Let|strong=\"G1096\"\\+w*’s \\+w go|strong=\"G1330\"\\+w* \\+w over|strong=\"G4008\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w other|strong=\"G4008\"\\+w* \\+w side|strong=\"G4008\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w lake|strong=\"G3041\"\\+w*.”* So|strong=\"G2532\"* they|strong=\"G2532\"* launched out|strong=\"G2532\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* as|strong=\"G1519\"* they|strong=\"G2532\"* sailed|strong=\"G4126\"*, he|strong=\"G2532\"* fell|strong=\"G2597\"* asleep. A|strong=\"G2532\"* wind storm|strong=\"G2978\"* came|strong=\"G2597\"* down|strong=\"G2597\"* on|strong=\"G1519\"* the|strong=\"G2532\"* lake|strong=\"G3041\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* taking on|strong=\"G1519\"* dangerous amounts of|strong=\"G2532\"* water." + }, + { + "verseNum": 24, + "text": "They|strong=\"G2532\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"* and|strong=\"G2532\"* awoke|strong=\"G1326\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Master|strong=\"G1988\"*, Master|strong=\"G1988\"*, we|strong=\"G2532\"* are|strong=\"G3588\"* dying!” He|strong=\"G2532\"* awoke|strong=\"G1326\"* and|strong=\"G2532\"* rebuked|strong=\"G2008\"* the|strong=\"G2532\"* wind and|strong=\"G2532\"* the|strong=\"G2532\"* raging|strong=\"G2830\"* of|strong=\"G2532\"* the|strong=\"G2532\"* water|strong=\"G5204\"*; then|strong=\"G2532\"* they|strong=\"G2532\"* ceased|strong=\"G3973\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G1096\"* calm|strong=\"G1055\"*.+ 8:24 See Psalms 107:29*" + }, + { + "verseNum": 25, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w Where|strong=\"G4226\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w faith|strong=\"G4102\"\\+w*?”* Being|strong=\"G1510\"* afraid|strong=\"G5399\"*, they|strong=\"G2532\"* marveled|strong=\"G2296\"*, saying|strong=\"G3004\"* to|strong=\"G4314\"* one|strong=\"G3588\"* another|strong=\"G3588\"*, “Who|strong=\"G5101\"* is|strong=\"G1510\"* this|strong=\"G3778\"* then|strong=\"G2532\"*, that|strong=\"G3754\"* he|strong=\"G2532\"* commands|strong=\"G2004\"* even|strong=\"G2532\"* the|strong=\"G2532\"* winds and|strong=\"G2532\"* the|strong=\"G2532\"* water|strong=\"G5204\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* obey|strong=\"G5219\"* him|strong=\"G3588\"*?”" + }, + { + "verseNum": 26, + "text": "Then|strong=\"G2532\"* they|strong=\"G2532\"* arrived|strong=\"G2668\"* at|strong=\"G1519\"* the|strong=\"G2532\"* country|strong=\"G5561\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Gadarenes, which|strong=\"G3588\"* is|strong=\"G1510\"* opposite Galilee|strong=\"G1056\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"G1161\"* Jesus|strong=\"G1831\"* stepped ashore|strong=\"G1831\"*, a|strong=\"G2192\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G1722\"* city|strong=\"G4172\"* who|strong=\"G3588\"* had|strong=\"G2192\"* demons|strong=\"G1140\"* for|strong=\"G1909\"* a|strong=\"G2192\"* long|strong=\"G2425\"* time|strong=\"G5550\"* met|strong=\"G5221\"* him|strong=\"G3588\"*. He|strong=\"G2532\"* wore|strong=\"G2192\"* no|strong=\"G3756\"* clothes|strong=\"G2440\"*, and|strong=\"G2532\"* didn’t|strong=\"G3588\"* live|strong=\"G2532\"* in|strong=\"G1722\"* a|strong=\"G2192\"* house|strong=\"G3614\"*, but|strong=\"G1161\"* in|strong=\"G1722\"* the|strong=\"G1722\"* tombs|strong=\"G3418\"*." + }, + { + "verseNum": 28, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* Jesus|strong=\"G2424\"*, he|strong=\"G2532\"* cried|strong=\"G2532\"* out|strong=\"G2532\"* and|strong=\"G2532\"* fell|strong=\"G4363\"* down|strong=\"G4363\"* before|strong=\"G4363\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* said|strong=\"G3004\"*, “What|strong=\"G5101\"* do|strong=\"G5101\"* I|strong=\"G1473\"* have|strong=\"G2532\"* to|strong=\"G2532\"* do|strong=\"G5101\"* with|strong=\"G2532\"* you|strong=\"G4771\"*, Jesus|strong=\"G2424\"*, you|strong=\"G4771\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G2532\"* Most|strong=\"G5310\"* High|strong=\"G5310\"* God|strong=\"G2316\"*? I|strong=\"G1473\"* beg|strong=\"G1189\"* you|strong=\"G4771\"*, don’t|strong=\"G3588\"* torment me|strong=\"G1473\"*!”" + }, + { + "verseNum": 29, + "text": "For|strong=\"G1063\"* Jesus|strong=\"G1831\"* was|strong=\"G3588\"* commanding|strong=\"G3853\"* the|strong=\"G2532\"* unclean spirit|strong=\"G4151\"* to|strong=\"G1519\"* come|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G5259\"* the|strong=\"G2532\"* man|strong=\"G1519\"*. For|strong=\"G1063\"* the|strong=\"G2532\"* unclean spirit|strong=\"G4151\"* had|strong=\"G2532\"* often|strong=\"G4183\"* seized|strong=\"G4884\"* the|strong=\"G2532\"* man|strong=\"G1519\"*. He|strong=\"G2532\"* was|strong=\"G3588\"* kept|strong=\"G5442\"* under|strong=\"G5259\"* guard|strong=\"G5442\"* and|strong=\"G2532\"* bound|strong=\"G1195\"* with|strong=\"G2532\"* chains|strong=\"G1199\"* and|strong=\"G2532\"* fetters|strong=\"G3976\"*. Breaking the|strong=\"G2532\"* bonds|strong=\"G1199\"* apart, he|strong=\"G2532\"* was|strong=\"G3588\"* driven|strong=\"G1643\"* by|strong=\"G5259\"* the|strong=\"G2532\"* demon|strong=\"G1140\"* into|strong=\"G1519\"* the|strong=\"G2532\"* desert|strong=\"G2048\"*." + }, + { + "verseNum": 30, + "text": "Jesus|strong=\"G2424\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w name|strong=\"G3686\"\\+w*?”*" + }, + { + "verseNum": 31, + "text": "They|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* that|strong=\"G2443\"* he|strong=\"G2532\"* would|strong=\"G2532\"* not|strong=\"G3361\"* command|strong=\"G2004\"* them|strong=\"G3588\"* to|strong=\"G1519\"* go|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* abyss." + }, + { + "verseNum": 32, + "text": "Now|strong=\"G1161\"* there|strong=\"G1563\"* was|strong=\"G1510\"* there|strong=\"G1563\"* a|strong=\"G2532\"* herd of|strong=\"G2532\"* many|strong=\"G2425\"* pigs|strong=\"G5519\"* feeding|strong=\"G1006\"* on|strong=\"G1722\"* the|strong=\"G1722\"* mountain|strong=\"G3735\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* that|strong=\"G2443\"* he|strong=\"G2532\"* would|strong=\"G2532\"* allow|strong=\"G2010\"* them|strong=\"G3588\"* to|strong=\"G1519\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* those|strong=\"G3588\"*. Then|strong=\"G2532\"* he|strong=\"G2532\"* allowed|strong=\"G2010\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"G2532\"* demons|strong=\"G1140\"* came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G2532\"* the|strong=\"G2532\"* man|strong=\"G1519\"* and|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* pigs|strong=\"G5519\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* herd rushed|strong=\"G3729\"* down|strong=\"G2596\"* the|strong=\"G2532\"* steep|strong=\"G2911\"* bank|strong=\"G2911\"* into|strong=\"G1519\"* the|strong=\"G2532\"* lake|strong=\"G3041\"* and|strong=\"G2532\"* were|strong=\"G3588\"* drowned." + }, + { + "verseNum": 34, + "text": "When|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* fed|strong=\"G1006\"* them|strong=\"G3588\"* saw|strong=\"G3708\"* what|strong=\"G3588\"* had|strong=\"G2532\"* happened|strong=\"G1096\"*, they|strong=\"G2532\"* fled|strong=\"G5343\"* and|strong=\"G2532\"* told it|strong=\"G2532\"* in|strong=\"G1519\"* the|strong=\"G2532\"* city|strong=\"G4172\"* and|strong=\"G2532\"* in|strong=\"G1519\"* the|strong=\"G2532\"* country." + }, + { + "verseNum": 35, + "text": "People|strong=\"G3588\"* went|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G4314\"* see|strong=\"G3708\"* what|strong=\"G3739\"* had|strong=\"G2424\"* happened|strong=\"G1096\"*. They|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* found|strong=\"G2147\"* the|strong=\"G2532\"* man|strong=\"G3739\"* from|strong=\"G3844\"* whom|strong=\"G3739\"* the|strong=\"G2532\"* demons|strong=\"G1140\"* had|strong=\"G2424\"* gone|strong=\"G1831\"* out|strong=\"G1831\"*, sitting|strong=\"G2521\"* at|strong=\"G4314\"* Jesus|strong=\"G2424\"*’ feet|strong=\"G4228\"*, clothed|strong=\"G2439\"* and|strong=\"G2532\"* in|strong=\"G2532\"* his|strong=\"G3708\"* right|strong=\"G4993\"* mind|strong=\"G4993\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* afraid|strong=\"G5399\"*." + }, + { + "verseNum": 36, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* saw|strong=\"G3708\"* it|strong=\"G1161\"* told them|strong=\"G3588\"* how|strong=\"G4459\"* he|strong=\"G1161\"* who|strong=\"G3588\"* had|strong=\"G3588\"* been possessed by|strong=\"G3588\"* demons was|strong=\"G3588\"* healed|strong=\"G4982\"*." + }, + { + "verseNum": 37, + "text": "All|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G4128\"* of|strong=\"G2532\"* the|strong=\"G2532\"* surrounding|strong=\"G4066\"* country|strong=\"G4066\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Gadarenes asked|strong=\"G2065\"* him|strong=\"G3588\"* to|strong=\"G1519\"* depart from|strong=\"G2532\"* them|strong=\"G3588\"*, for|strong=\"G3754\"* they|strong=\"G2532\"* were|strong=\"G3588\"* very|strong=\"G2532\"* much|strong=\"G3173\"* afraid. Then|strong=\"G2532\"* he|strong=\"G2532\"* entered|strong=\"G1684\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"* and|strong=\"G2532\"* returned|strong=\"G5290\"*." + }, + { + "verseNum": 38, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* man|strong=\"G3739\"* from|strong=\"G1831\"* whom|strong=\"G3739\"* the|strong=\"G1161\"* demons|strong=\"G1140\"* had|strong=\"G1510\"* gone|strong=\"G1831\"* out|strong=\"G1831\"* begged|strong=\"G1189\"* him|strong=\"G3588\"* that|strong=\"G3739\"* he|strong=\"G1161\"* might go|strong=\"G1831\"* with|strong=\"G4862\"* him|strong=\"G3588\"*, but|strong=\"G1161\"* Jesus|strong=\"G3004\"* sent him|strong=\"G3588\"* away|strong=\"G1831\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 39, + "text": "“\\+w Return|strong=\"G5290\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w house|strong=\"G3624\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w declare|strong=\"G1334\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w great|strong=\"G3745\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w*.”* He|strong=\"G2532\"* went|strong=\"G2424\"* his|strong=\"G1519\"* way|strong=\"G2596\"*, proclaiming|strong=\"G2784\"* throughout|strong=\"G2596\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* city|strong=\"G4172\"* what|strong=\"G3588\"* great|strong=\"G3745\"* things|strong=\"G3588\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* done|strong=\"G4160\"* for|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 40, + "text": "When|strong=\"G1161\"* Jesus|strong=\"G2424\"* returned|strong=\"G5290\"*, the|strong=\"G1722\"* multitude|strong=\"G3793\"* welcomed him|strong=\"G3588\"*, for|strong=\"G1063\"* they|strong=\"G1161\"* were|strong=\"G1510\"* all|strong=\"G3956\"* waiting|strong=\"G4328\"* for|strong=\"G1063\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 41, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G2532\"* man|strong=\"G3739\"* named|strong=\"G3686\"* Jairus|strong=\"G2383\"* came|strong=\"G2064\"*. He|strong=\"G2532\"* was|strong=\"G3588\"* a|strong=\"G2532\"* ruler of|strong=\"G2532\"* the|strong=\"G2532\"* synagogue|strong=\"G4864\"*. He|strong=\"G2532\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* at|strong=\"G1519\"* Jesus|strong=\"G2424\"*’ feet|strong=\"G4228\"* and|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* to|strong=\"G1519\"* come|strong=\"G2064\"* into|strong=\"G1519\"* his|strong=\"G1519\"* house|strong=\"G3624\"*," + }, + { + "verseNum": 42, + "text": "for|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2532\"* an|strong=\"G2532\"* only|strong=\"G3439\"* born+ 8:42 The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”.* daughter|strong=\"G2364\"*, about|strong=\"G5613\"* twelve|strong=\"G1427\"* years|strong=\"G2094\"* of|strong=\"G2532\"* age|strong=\"G2094\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* was|strong=\"G1510\"* dying. But|strong=\"G1161\"* as|strong=\"G5613\"* he|strong=\"G2532\"* went|strong=\"G2532\"*, the|strong=\"G1722\"* multitudes|strong=\"G3793\"* pressed|strong=\"G3793\"* against|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 43, + "text": "A|strong=\"G2532\"* woman|strong=\"G1135\"* who|strong=\"G3588\"* had|strong=\"G2532\"* a|strong=\"G2532\"* flow of|strong=\"G2532\"* blood for|strong=\"G1722\"* twelve|strong=\"G1427\"* years|strong=\"G2094\"*, who|strong=\"G3588\"* had|strong=\"G2532\"* spent|strong=\"G4321\"* all|strong=\"G3650\"* her|strong=\"G3588\"* living on|strong=\"G1722\"* physicians|strong=\"G2395\"* and|strong=\"G2532\"* could|strong=\"G2480\"* not|strong=\"G3756\"* be|strong=\"G1510\"* healed|strong=\"G2323\"* by|strong=\"G1722\"* any|strong=\"G3762\"*," + }, + { + "verseNum": 44, + "text": "came|strong=\"G4334\"* behind|strong=\"G3693\"* him|strong=\"G3588\"* and|strong=\"G2532\"* touched the|strong=\"G2532\"* fringe|strong=\"G2899\"*+ 8:44 or, tassel* of|strong=\"G2532\"* his|strong=\"G2532\"* cloak|strong=\"G2440\"*. Immediately|strong=\"G3916\"* the|strong=\"G2532\"* flow of|strong=\"G2532\"* her|strong=\"G3588\"* blood stopped|strong=\"G2476\"*." + }, + { + "verseNum": 45, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “\\+w Who|strong=\"G5101\"\\+w* touched \\+w me|strong=\"G1473\"\\+w*?”*" + }, + { + "verseNum": 46, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “\\+w Someone|strong=\"G5100\"\\+w* \\+w did|strong=\"G1097\"\\+w* touch \\+w me|strong=\"G1473\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w perceived|strong=\"G1097\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w has|strong=\"G5100\"\\+w* \\+w gone|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1411\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 47, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* she|strong=\"G2532\"* was|strong=\"G3588\"* not|strong=\"G3756\"* hidden, she|strong=\"G2532\"* came|strong=\"G2064\"* trembling|strong=\"G5141\"*; and|strong=\"G2532\"* falling down|strong=\"G4363\"* before|strong=\"G1799\"* him|strong=\"G3588\"* declared|strong=\"G3754\"* to|strong=\"G2532\"* him|strong=\"G3588\"* in|strong=\"G2532\"* the|strong=\"G2532\"* presence|strong=\"G1799\"* of|strong=\"G1223\"* all|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"* the|strong=\"G2532\"* reason|strong=\"G1223\"* why|strong=\"G1223\"* she|strong=\"G2532\"* had|strong=\"G2532\"* touched him|strong=\"G3588\"*, and|strong=\"G2532\"* how|strong=\"G5613\"* she|strong=\"G2532\"* was|strong=\"G3588\"* healed|strong=\"G2390\"* immediately|strong=\"G3916\"*." + }, + { + "verseNum": 48, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G1519\"* her|strong=\"G1519\"*, “\\+w Daughter|strong=\"G2364\"\\+w*, cheer \\+w up|strong=\"G1519\"\\+w*. \\+w Your|strong=\"G4982\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w has|strong=\"G4102\"\\+w* \\+w made|strong=\"G4982\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w well|strong=\"G4982\"\\+w*. \\+w Go|strong=\"G4198\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w peace|strong=\"G1515\"\\+w*.”*" + }, + { + "verseNum": 49, + "text": "While|strong=\"G2980\"* he|strong=\"G3754\"* still|strong=\"G2089\"* spoke|strong=\"G2980\"*, one|strong=\"G5100\"* from|strong=\"G3844\"* the|strong=\"G3588\"* ruler of|strong=\"G3844\"* the|strong=\"G3588\"* synagogue’s house came|strong=\"G2064\"*, saying|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Your|strong=\"G3588\"* daughter|strong=\"G2364\"* is|strong=\"G3588\"* dead|strong=\"G2348\"*. Don’t|strong=\"G3588\"* trouble|strong=\"G4660\"* the|strong=\"G3588\"* Teacher|strong=\"G1320\"*.”" + }, + { + "verseNum": 50, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* hearing it|strong=\"G2532\"*, answered him|strong=\"G3588\"*, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*. \\+w Only|strong=\"G3440\"\\+w* \\+w believe|strong=\"G4100\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w she|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w healed|strong=\"G4982\"\\+w*.”*" + }, + { + "verseNum": 51, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* house|strong=\"G3614\"*, he|strong=\"G2532\"* didn’t|strong=\"G3588\"* allow anyone|strong=\"G5100\"* to|strong=\"G1519\"* enter|strong=\"G1525\"* in|strong=\"G1519\"*, except|strong=\"G1487\"* Peter|strong=\"G4074\"*, John|strong=\"G2491\"*, James|strong=\"G2385\"*, the|strong=\"G2532\"* father|strong=\"G3962\"* of|strong=\"G2532\"* the|strong=\"G2532\"* child|strong=\"G3816\"*, and|strong=\"G2532\"* her|strong=\"G1519\"* mother|strong=\"G3384\"*." + }, + { + "verseNum": 52, + "text": "All|strong=\"G3956\"* were|strong=\"G3588\"* weeping|strong=\"G2799\"* and|strong=\"G2532\"* mourning|strong=\"G2875\"* her|strong=\"G1438\"*, but|strong=\"G1161\"* he|strong=\"G2532\"* said|strong=\"G3004\"*, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w weep|strong=\"G2799\"\\+w*. \\+w She|strong=\"G2532\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* dead, \\+w but|strong=\"G1161\"\\+w* \\+w sleeping|strong=\"G2518\"\\+w*.”*" + }, + { + "verseNum": 53, + "text": "They|strong=\"G2532\"* were|strong=\"G2532\"* ridiculing him|strong=\"G2532\"*, knowing|strong=\"G1492\"* that|strong=\"G3754\"* she|strong=\"G2532\"* was|strong=\"G2532\"* dead." + }, + { + "verseNum": 54, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* put them|strong=\"G3588\"* all|strong=\"G1161\"* outside, and|strong=\"G1161\"* taking|strong=\"G2902\"* her|strong=\"G3588\"* by|strong=\"G3004\"* the|strong=\"G1161\"* hand|strong=\"G5495\"*, he|strong=\"G1161\"* called|strong=\"G3004\"*, saying|strong=\"G3004\"*, “\\+w Child|strong=\"G3816\"\\+w*, \\+w arise|strong=\"G1453\"\\+w*!”*" + }, + { + "verseNum": 55, + "text": "Her|strong=\"G1325\"* spirit|strong=\"G4151\"* returned|strong=\"G1994\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G1325\"* immediately|strong=\"G3916\"*. He|strong=\"G2532\"* commanded|strong=\"G1299\"* that|strong=\"G3588\"* something be|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2532\"* her|strong=\"G1325\"* to|strong=\"G2532\"* eat|strong=\"G2068\"*." + }, + { + "verseNum": 56, + "text": "Her|strong=\"G3588\"* parents|strong=\"G1118\"* were|strong=\"G3588\"* amazed|strong=\"G1839\"*, but|strong=\"G1161\"* he|strong=\"G2532\"* commanded|strong=\"G3853\"* them|strong=\"G3588\"* to|strong=\"G2532\"* tell|strong=\"G3004\"* no|strong=\"G3367\"* one|strong=\"G3367\"* what|strong=\"G3588\"* had|strong=\"G2532\"* been|strong=\"G1096\"* done|strong=\"G1096\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* called|strong=\"G4779\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*+ 9:1 TR reads “his twelve disciples” instead of “the twelve”* together|strong=\"G4779\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* them|strong=\"G3588\"* power|strong=\"G1411\"* and|strong=\"G2532\"* authority|strong=\"G1849\"* over|strong=\"G1909\"* all|strong=\"G3956\"* demons|strong=\"G1140\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* cure|strong=\"G2323\"* diseases|strong=\"G3554\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* sent|strong=\"G2316\"* them|strong=\"G3588\"* out|strong=\"G2532\"* to|strong=\"G2532\"* preach|strong=\"G2784\"* God|strong=\"G2316\"*’s Kingdom and|strong=\"G2532\"* to|strong=\"G2532\"* heal|strong=\"G2390\"* the|strong=\"G2532\"* sick." + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Take|strong=\"G2532\"\\+w* \\+w nothing|strong=\"G3367\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w journey|strong=\"G3598\"\\+w*—\\+w no|strong=\"G3367\"\\+w* staffs, \\+w nor|strong=\"G3383\"\\+w* wallet, \\+w nor|strong=\"G3383\"\\+w* bread, \\+w nor|strong=\"G3383\"\\+w* money. Don’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w tunics|strong=\"G5509\"\\+w* \\+w each|strong=\"G1438\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w Into|strong=\"G1519\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w enter|strong=\"G1525\"\\+w*, \\+w stay|strong=\"G3306\"\\+w* \\+w there|strong=\"G1563\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w depart|strong=\"G1831\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w there|strong=\"G1563\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w As|strong=\"G3745\"\\+w* \\+w many|strong=\"G3745\"\\+w* \\+w as|strong=\"G3745\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w when|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w depart|strong=\"G1831\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w city|strong=\"G4172\"\\+w*, shake \\+w off|strong=\"G1831\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dust|strong=\"G2868\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w feet|strong=\"G4228\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w testimony|strong=\"G3142\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w them|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 6, + "text": "They|strong=\"G2532\"* departed|strong=\"G1831\"* and|strong=\"G2532\"* went|strong=\"G1831\"* throughout|strong=\"G2596\"* the|strong=\"G2532\"* villages|strong=\"G2968\"*, preaching|strong=\"G2097\"* the|strong=\"G2532\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* and|strong=\"G2532\"* healing|strong=\"G2323\"* everywhere|strong=\"G3837\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"G1161\"* Herod|strong=\"G2264\"* the|strong=\"G2532\"* tetrarch|strong=\"G5076\"* heard of|strong=\"G1537\"* all|strong=\"G3956\"* that|strong=\"G3754\"* was|strong=\"G1096\"* done|strong=\"G1096\"* by|strong=\"G1223\"* him|strong=\"G3588\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G1096\"* very|strong=\"G2532\"* perplexed|strong=\"G1280\"*, because|strong=\"G3754\"* it|strong=\"G2532\"* was|strong=\"G1096\"* said|strong=\"G3004\"* by|strong=\"G1223\"* some|strong=\"G5100\"* that|strong=\"G3754\"* John|strong=\"G2491\"* had|strong=\"G2532\"* risen|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*," + }, + { + "verseNum": 8, + "text": "and|strong=\"G1161\"* by|strong=\"G5259\"* some|strong=\"G5100\"* that|strong=\"G3754\"* Elijah|strong=\"G2243\"* had|strong=\"G3588\"* appeared|strong=\"G5316\"*, and|strong=\"G1161\"* by|strong=\"G5259\"* others|strong=\"G3588\"* that|strong=\"G3754\"* one|strong=\"G5100\"* of|strong=\"G5259\"* the|strong=\"G1161\"* old prophets|strong=\"G4396\"* had|strong=\"G3588\"* risen again." + }, + { + "verseNum": 9, + "text": "Herod|strong=\"G2264\"* said|strong=\"G3004\"*, “I|strong=\"G1473\"* beheaded John|strong=\"G2491\"*, but|strong=\"G1161\"* who|strong=\"G3739\"* is|strong=\"G1510\"* this|strong=\"G3778\"* about|strong=\"G4012\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* hear|strong=\"G5101\"* such|strong=\"G5108\"* things|strong=\"G3778\"*?” He|strong=\"G2532\"* sought|strong=\"G2212\"* to|strong=\"G2532\"* see|strong=\"G3708\"* him|strong=\"G3739\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"G2532\"* apostles, when|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* returned|strong=\"G5290\"*, told|strong=\"G1334\"* him|strong=\"G3588\"* what|strong=\"G3588\"* things|strong=\"G3588\"* they|strong=\"G2532\"* had|strong=\"G2532\"* done|strong=\"G4160\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"*, perceiving|strong=\"G1097\"* it|strong=\"G2532\"*, followed him|strong=\"G3588\"*. He|strong=\"G2532\"* welcomed them|strong=\"G3588\"*, spoke|strong=\"G2980\"* to|strong=\"G2532\"* them|strong=\"G3588\"* of|strong=\"G4012\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* Kingdom, and|strong=\"G2532\"* he|strong=\"G2532\"* cured|strong=\"G2390\"* those|strong=\"G3588\"* who|strong=\"G3588\"* needed|strong=\"G5532\"* healing|strong=\"G2390\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"G1722\"* day|strong=\"G2250\"* began|strong=\"G1161\"* to|strong=\"G1519\"* wear away|strong=\"G4198\"*; and|strong=\"G2532\"* the|strong=\"G1722\"* twelve|strong=\"G1427\"* came|strong=\"G4334\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “Send the|strong=\"G1722\"* multitude|strong=\"G3793\"* away|strong=\"G4198\"*, that|strong=\"G3754\"* they|strong=\"G2532\"* may|strong=\"G2532\"* go|strong=\"G4198\"* into|strong=\"G1519\"* the|strong=\"G1722\"* surrounding|strong=\"G2945\"* villages|strong=\"G2968\"* and|strong=\"G2532\"* farms and|strong=\"G2532\"* lodge|strong=\"G2647\"* and|strong=\"G2532\"* get|strong=\"G2147\"* food, for|strong=\"G3754\"* we|strong=\"G3754\"* are|strong=\"G1510\"* here|strong=\"G5602\"* in|strong=\"G1722\"* a|strong=\"G2532\"* deserted|strong=\"G2048\"* place|strong=\"G5117\"*.”" + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w You|strong=\"G5210\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w something|strong=\"G4183\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w eat|strong=\"G2068\"\\+w*.”*" + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* they|strong=\"G1161\"* were|strong=\"G1510\"* about|strong=\"G5616\"* five|strong=\"G4000\"* thousand|strong=\"G4000\"* men|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"G2532\"* did|strong=\"G4160\"* so|strong=\"G3779\"*, and|strong=\"G2532\"* made|strong=\"G4160\"* them|strong=\"G4160\"* all|strong=\"G2532\"* sit|strong=\"G2625\"* down|strong=\"G2625\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* five|strong=\"G4002\"* loaves and|strong=\"G2532\"* the|strong=\"G2532\"* two|strong=\"G1417\"* fish|strong=\"G2486\"*, and|strong=\"G2532\"* looking|strong=\"G2532\"* up|strong=\"G1519\"* to|strong=\"G1519\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*, he|strong=\"G2532\"* blessed|strong=\"G2127\"* them|strong=\"G3588\"*, broke|strong=\"G2622\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* gave|strong=\"G1325\"* them|strong=\"G3588\"* to|strong=\"G1519\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* to|strong=\"G1519\"* set|strong=\"G3908\"* before|strong=\"G3908\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"G2532\"* ate|strong=\"G2068\"* and|strong=\"G2532\"* were|strong=\"G3588\"* all|strong=\"G3956\"* filled|strong=\"G5526\"*. They|strong=\"G2532\"* gathered up|strong=\"G2532\"* twelve|strong=\"G1427\"* baskets|strong=\"G2894\"* of|strong=\"G2532\"* broken|strong=\"G2801\"* pieces|strong=\"G2801\"* that|strong=\"G3588\"* were|strong=\"G3588\"* left|strong=\"G4052\"* over|strong=\"G4052\"*." + }, + { + "verseNum": 18, + "text": "As|strong=\"G1722\"* he|strong=\"G2532\"* was|strong=\"G1510\"* praying|strong=\"G4336\"* alone|strong=\"G3441\"*, the|strong=\"G1722\"* disciples|strong=\"G3101\"* were|strong=\"G1510\"* near|strong=\"G2596\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* asked|strong=\"G1905\"* them|strong=\"G3588\"*, “\\+w Who|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w multitudes|strong=\"G3793\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*?”*" + }, + { + "verseNum": 19, + "text": "They|strong=\"G1161\"* answered|strong=\"G3004\"*, “‘John|strong=\"G2491\"* the|strong=\"G1161\"* Baptizer,’ but|strong=\"G1161\"* others|strong=\"G3588\"* say|strong=\"G3004\"*, ‘Elijah|strong=\"G2243\"*,’ and|strong=\"G1161\"* others|strong=\"G3588\"*, that|strong=\"G3754\"* one|strong=\"G5100\"* of|strong=\"G5100\"* the|strong=\"G1161\"* old prophets|strong=\"G4396\"* has|strong=\"G5100\"* risen again.”" + }, + { + "verseNum": 20, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w But|strong=\"G1161\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*?”*" + }, + { + "verseNum": 21, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* warned|strong=\"G2008\"* them|strong=\"G3588\"* and|strong=\"G1161\"* commanded|strong=\"G3853\"* them|strong=\"G3588\"* to|strong=\"G3004\"* tell|strong=\"G3004\"* this|strong=\"G3778\"* to|strong=\"G3004\"* no|strong=\"G3367\"* one|strong=\"G3367\"*," + }, + { + "verseNum": 22, + "text": "saying|strong=\"G3004\"*, “\\+w The|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w suffer|strong=\"G3958\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w things|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* rejected \\+w by|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w elders|strong=\"G4245\"\\+w*, \\+w chief|strong=\"G2532\"\\+w* priests, \\+w and|strong=\"G2532\"\\+w* \\+w scribes|strong=\"G1122\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* killed, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w third|strong=\"G5154\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w raised|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*.”*" + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* all|strong=\"G3956\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w desires|strong=\"G2309\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w after|strong=\"G2596\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w let|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w take|strong=\"G1161\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w cross|strong=\"G4716\"\\+w*,*+ 9:23 TR, NU add “daily”* \\+w and|strong=\"G2532\"\\+w* \\+w follow|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w desires|strong=\"G2309\"\\+w* \\+w to|strong=\"G2309\"\\+w* \\+w save|strong=\"G4982\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w will|strong=\"G2309\"\\+w* lose \\+w it|strong=\"G1161\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w will|strong=\"G2309\"\\+w* lose \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w sake|strong=\"G1752\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w save|strong=\"G4982\"\\+w* \\+w it|strong=\"G1161\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w does|strong=\"G5101\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w profit|strong=\"G5623\"\\+w* \\+w a|strong=\"G2228\"\\+w* \\+w man|strong=\"G5101\"\\+w* \\+w if|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w gains|strong=\"G2770\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w and|strong=\"G1161\"\\+w* loses \\+w or|strong=\"G2228\"\\+w* \\+w forfeits|strong=\"G2210\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* self? *" + }, + { + "verseNum": 26, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w ashamed|strong=\"G1870\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w words|strong=\"G3056\"\\+w*, \\+w of|strong=\"G5207\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w ashamed|strong=\"G1870\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w glory|strong=\"G1391\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* holy angels. *" + }, + { + "verseNum": 27, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w the|strong=\"G1161\"\\+w* truth: \\+w There|strong=\"G1161\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w some|strong=\"G5100\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w stand|strong=\"G2476\"\\+w* \\+w here|strong=\"G1510\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w in|strong=\"G2316\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G3739\"\\+w* \\+w taste|strong=\"G1089\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w death|strong=\"G2288\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom.” *" + }, + { + "verseNum": 28, + "text": "About|strong=\"G5616\"* eight|strong=\"G3638\"* days|strong=\"G2250\"* after|strong=\"G3326\"* these|strong=\"G3778\"* sayings|strong=\"G3056\"*, he|strong=\"G2532\"* took|strong=\"G3880\"* with|strong=\"G3326\"* him|strong=\"G3588\"* Peter|strong=\"G4074\"*, John|strong=\"G2491\"*, and|strong=\"G2532\"* James|strong=\"G2385\"*, and|strong=\"G2532\"* went|strong=\"G2532\"* up|strong=\"G1519\"* onto|strong=\"G1519\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"* to|strong=\"G1519\"* pray|strong=\"G4336\"*." + }, + { + "verseNum": 29, + "text": "As|strong=\"G1722\"* he|strong=\"G2532\"* was|strong=\"G1096\"* praying|strong=\"G4336\"*, the|strong=\"G1722\"* appearance|strong=\"G4383\"* of|strong=\"G2532\"* his|strong=\"G1722\"* face|strong=\"G4383\"* was|strong=\"G1096\"* altered|strong=\"G2087\"*, and|strong=\"G2532\"* his|strong=\"G1722\"* clothing|strong=\"G2441\"* became|strong=\"G1096\"* white|strong=\"G3022\"* and|strong=\"G2532\"* dazzling." + }, + { + "verseNum": 30, + "text": "Behold|strong=\"G2400\"*, two|strong=\"G1417\"* men|strong=\"G1417\"* were|strong=\"G1510\"* talking|strong=\"G4814\"* with|strong=\"G2532\"* him|strong=\"G3708\"*, who|strong=\"G3748\"* were|strong=\"G1510\"* Moses|strong=\"G3475\"* and|strong=\"G2532\"* Elijah|strong=\"G2243\"*," + }, + { + "verseNum": 31, + "text": "who|strong=\"G3739\"* appeared|strong=\"G3708\"* in|strong=\"G1722\"* glory|strong=\"G1391\"* and|strong=\"G1391\"* spoke|strong=\"G3004\"* of|strong=\"G1391\"* his|strong=\"G1722\"* departure|strong=\"G1841\"*,+ 9:31 literally, “exodus”* which|strong=\"G3739\"* he|strong=\"G3739\"* was|strong=\"G3588\"* about|strong=\"G3195\"* to|strong=\"G3004\"* accomplish|strong=\"G4137\"* at|strong=\"G1722\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 32, + "text": "Now|strong=\"G1161\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* with|strong=\"G4862\"* him|strong=\"G3588\"* were|strong=\"G1510\"* heavy with|strong=\"G4862\"* sleep|strong=\"G5258\"*, but|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G1510\"* fully|strong=\"G1235\"* awake|strong=\"G1235\"*, they|strong=\"G2532\"* saw|strong=\"G3708\"* his|strong=\"G3708\"* glory|strong=\"G1391\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* two|strong=\"G1417\"* men|strong=\"G1417\"* who|strong=\"G3588\"* stood|strong=\"G3588\"* with|strong=\"G4862\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "As|strong=\"G1722\"* they|strong=\"G2532\"* were|strong=\"G1510\"* parting from|strong=\"G2532\"* him|strong=\"G3588\"*, Peter|strong=\"G4074\"* said|strong=\"G3004\"* to|strong=\"G4314\"* Jesus|strong=\"G2424\"*, “Master|strong=\"G1988\"*, it|strong=\"G2532\"* is|strong=\"G1510\"* good|strong=\"G2570\"* for|strong=\"G4314\"* us|strong=\"G3004\"* to|strong=\"G4314\"* be|strong=\"G1096\"* here|strong=\"G5602\"*. Let|strong=\"G1096\"*’s make|strong=\"G4160\"* three|strong=\"G5140\"* tents|strong=\"G4633\"*: one|strong=\"G1520\"* for|strong=\"G4314\"* you|strong=\"G4771\"*, one|strong=\"G1520\"* for|strong=\"G4314\"* Moses|strong=\"G3475\"*, and|strong=\"G2532\"* one|strong=\"G1520\"* for|strong=\"G4314\"* Elijah|strong=\"G2243\"*,” not|strong=\"G3361\"* knowing|strong=\"G1492\"* what|strong=\"G3739\"* he|strong=\"G2532\"* said|strong=\"G3004\"*." + }, + { + "verseNum": 34, + "text": "While|strong=\"G1722\"* he|strong=\"G2532\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, a|strong=\"G1096\"* cloud|strong=\"G3507\"* came|strong=\"G1096\"* and|strong=\"G2532\"* overshadowed|strong=\"G1982\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* afraid|strong=\"G5399\"* as|strong=\"G1519\"* they|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G1722\"* cloud|strong=\"G3507\"*." + }, + { + "verseNum": 35, + "text": "A|strong=\"G1096\"* voice|strong=\"G5456\"* came|strong=\"G1096\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* cloud|strong=\"G3507\"*, saying|strong=\"G3004\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* my|strong=\"G1473\"* beloved Son|strong=\"G5207\"*. Listen to|strong=\"G2532\"* him|strong=\"G3588\"*!”" + }, + { + "verseNum": 36, + "text": "When|strong=\"G2532\"* the|strong=\"G1722\"* voice|strong=\"G5456\"* came|strong=\"G1096\"*, Jesus|strong=\"G2424\"* was|strong=\"G1096\"* found|strong=\"G2147\"* alone|strong=\"G3441\"*. They|strong=\"G2532\"* were|strong=\"G3588\"* silent|strong=\"G4601\"*, and|strong=\"G2532\"* told no|strong=\"G3762\"* one|strong=\"G3762\"* in|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"* any|strong=\"G3762\"* of|strong=\"G2250\"* the|strong=\"G1722\"* things|strong=\"G3588\"* which|strong=\"G3739\"* they|strong=\"G2532\"* had|strong=\"G2424\"* seen|strong=\"G3708\"*." + }, + { + "verseNum": 37, + "text": "On|strong=\"G1161\"* the|strong=\"G1161\"* next|strong=\"G1836\"* day|strong=\"G2250\"*, when|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G3588\"* come|strong=\"G1096\"* down|strong=\"G2718\"* from|strong=\"G2718\"* the|strong=\"G1161\"* mountain|strong=\"G3735\"*, a|strong=\"G1096\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* met|strong=\"G4876\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 38, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G2532\"* man|strong=\"G5207\"* from|strong=\"G2532\"* the|strong=\"G2532\"* crowd|strong=\"G3793\"* called|strong=\"G3004\"* out|strong=\"G2532\"*, saying|strong=\"G3004\"*, “Teacher|strong=\"G1320\"*, I|strong=\"G1473\"* beg|strong=\"G1189\"* you|strong=\"G4771\"* to|strong=\"G2532\"* look|strong=\"G2400\"* at|strong=\"G1909\"* my|strong=\"G3708\"* son|strong=\"G5207\"*, for|strong=\"G3754\"* he|strong=\"G2532\"* is|strong=\"G1510\"* my|strong=\"G3708\"* only|strong=\"G3439\"* born+ 9:38 The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”.* child|strong=\"G5207\"*." + }, + { + "verseNum": 39, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G2532\"* spirit|strong=\"G4151\"* takes|strong=\"G2983\"* him|strong=\"G3708\"*, he|strong=\"G2532\"* suddenly|strong=\"G1810\"* cries|strong=\"G2896\"* out|strong=\"G2896\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* convulses him|strong=\"G3708\"* so|strong=\"G2532\"* that|strong=\"G2532\"* he|strong=\"G2532\"* foams; and|strong=\"G2532\"* it|strong=\"G2532\"* hardly|strong=\"G3425\"* departs from|strong=\"G2532\"* him|strong=\"G3708\"*, bruising|strong=\"G4937\"* him|strong=\"G3708\"* severely|strong=\"G4937\"*." + }, + { + "verseNum": 40, + "text": "I|strong=\"G2532\"* begged|strong=\"G1189\"* your|strong=\"G2532\"* disciples|strong=\"G3101\"* to|strong=\"G2443\"* cast|strong=\"G1544\"* it|strong=\"G2532\"* out|strong=\"G1544\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* couldn’t|strong=\"G3588\"*.”" + }, + { + "verseNum": 41, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “Faithless \\+w and|strong=\"G2532\"\\+w* \\+w perverse|strong=\"G1294\"\\+w* \\+w generation|strong=\"G1074\"\\+w*, \\+w how|strong=\"G2193\"\\+w* \\+w long|strong=\"G2193\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w with|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w bear|strong=\"G2532\"\\+w* \\+w with|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w*? \\+w Bring|strong=\"G4317\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w here|strong=\"G5602\"\\+w*.”*" + }, + { + "verseNum": 42, + "text": "While|strong=\"G1161\"* he|strong=\"G2532\"* was|strong=\"G3588\"* still|strong=\"G2089\"* coming|strong=\"G4334\"*, the|strong=\"G2532\"* demon|strong=\"G1140\"* threw|strong=\"G4952\"* him|strong=\"G3588\"* down|strong=\"G4486\"* and|strong=\"G2532\"* convulsed him|strong=\"G3588\"* violently. But|strong=\"G1161\"* Jesus|strong=\"G2424\"* rebuked|strong=\"G2008\"* the|strong=\"G2532\"* unclean spirit|strong=\"G4151\"*, healed|strong=\"G2390\"* the|strong=\"G2532\"* boy|strong=\"G3816\"*, and|strong=\"G2532\"* gave|strong=\"G2532\"* him|strong=\"G3588\"* back to|strong=\"G2532\"* his|strong=\"G2532\"* father|strong=\"G3962\"*." + }, + { + "verseNum": 43, + "text": "They|strong=\"G1161\"* were|strong=\"G3588\"* all|strong=\"G3956\"* astonished|strong=\"G1605\"* at|strong=\"G1909\"* the|strong=\"G3956\"* majesty|strong=\"G3168\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 44, + "text": "“\\+w Let|strong=\"G1063\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w sink|strong=\"G5087\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w your|strong=\"G5087\"\\+w* \\+w ears|strong=\"G3775\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w be|strong=\"G3195\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w men|strong=\"G3778\"\\+w*.”*" + }, + { + "verseNum": 45, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* understand this|strong=\"G3778\"* saying|strong=\"G4487\"*. It|strong=\"G2532\"* was|strong=\"G1510\"* concealed|strong=\"G3871\"* from|strong=\"G2532\"* them|strong=\"G3588\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G3588\"* not|strong=\"G3361\"* perceive it|strong=\"G2532\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G1510\"* afraid|strong=\"G5399\"* to|strong=\"G2443\"* ask|strong=\"G2065\"* him|strong=\"G3588\"* about|strong=\"G4012\"* this|strong=\"G3778\"* saying|strong=\"G4487\"*." + }, + { + "verseNum": 46, + "text": "An|strong=\"G1722\"* argument|strong=\"G1261\"* arose|strong=\"G1525\"* among|strong=\"G1722\"* them|strong=\"G3588\"* about|strong=\"G1722\"* which|strong=\"G3588\"* of|strong=\"G1722\"* them|strong=\"G3588\"* was|strong=\"G1510\"* the|strong=\"G1722\"* greatest|strong=\"G3173\"*." + }, + { + "verseNum": 47, + "text": "Jesus|strong=\"G2424\"*, perceiving|strong=\"G1492\"* the|strong=\"G1161\"* reasoning|strong=\"G1261\"* of|strong=\"G3844\"* their|strong=\"G1438\"* hearts|strong=\"G2588\"*, took|strong=\"G1949\"* a|strong=\"G3708\"* little child|strong=\"G3813\"*, and|strong=\"G1161\"* set|strong=\"G2476\"* him|strong=\"G3588\"* by|strong=\"G3844\"* his|strong=\"G1438\"* side|strong=\"G3844\"*," + }, + { + "verseNum": 48, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Whoever|strong=\"G3739\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w child|strong=\"G3813\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w Whoever|strong=\"G3739\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w least|strong=\"G3398\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w all|strong=\"G3956\"\\+w*, \\+w this|strong=\"G3778\"\\+w* \\+w one|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w great|strong=\"G3173\"\\+w*.”*" + }, + { + "verseNum": 49, + "text": "John|strong=\"G2491\"* answered|strong=\"G3004\"*, “Master|strong=\"G1988\"*, we|strong=\"G2249\"* saw|strong=\"G3708\"* someone|strong=\"G5100\"* casting|strong=\"G1544\"* out|strong=\"G1544\"* demons|strong=\"G1140\"* in|strong=\"G1722\"* your|strong=\"G2532\"* name|strong=\"G3686\"*, and|strong=\"G2532\"* we|strong=\"G2249\"* forbade him|strong=\"G3588\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* doesn’t|strong=\"G3588\"* follow|strong=\"G1161\"* with|strong=\"G3326\"* us|strong=\"G3004\"*.”" + }, + { + "verseNum": 50, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3739\"*, “Don’t \\+w forbid|strong=\"G2967\"\\+w* \\+w him|strong=\"G3739\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w us|strong=\"G3004\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w us|strong=\"G3004\"\\+w*.”*" + }, + { + "verseNum": 51, + "text": "It|strong=\"G2532\"* came|strong=\"G1096\"* to|strong=\"G1519\"* pass|strong=\"G1096\"*, when|strong=\"G1161\"* the|strong=\"G1722\"* days|strong=\"G2250\"* were|strong=\"G3588\"* near|strong=\"G1519\"* that|strong=\"G3588\"* he|strong=\"G2532\"* should|strong=\"G3588\"* be|strong=\"G1096\"* taken|strong=\"G1096\"* up|strong=\"G1519\"*, he|strong=\"G2532\"* intently set|strong=\"G2532\"* his|strong=\"G1519\"* face|strong=\"G4383\"* to|strong=\"G1519\"* go|strong=\"G4198\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*" + }, + { + "verseNum": 52, + "text": "and|strong=\"G2532\"* sent|strong=\"G2532\"* messengers before|strong=\"G4253\"* his|strong=\"G1519\"* face|strong=\"G4383\"*. They|strong=\"G2532\"* went|strong=\"G4198\"* and|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* a|strong=\"G5613\"* village|strong=\"G2968\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Samaritans|strong=\"G4541\"*, so|strong=\"G2532\"* as|strong=\"G5613\"* to|strong=\"G1519\"* prepare|strong=\"G2090\"* for|strong=\"G1519\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 53, + "text": "They|strong=\"G2532\"* didn’t|strong=\"G3588\"* receive|strong=\"G1209\"* him|strong=\"G3588\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* traveling|strong=\"G4198\"* with|strong=\"G2532\"* his|strong=\"G1519\"* face|strong=\"G4383\"* set|strong=\"G2532\"* toward|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 54, + "text": "When|strong=\"G1161\"* his|strong=\"G1438\"* disciples|strong=\"G3101\"*, James|strong=\"G2385\"* and|strong=\"G2532\"* John|strong=\"G2491\"*, saw|strong=\"G3708\"* this|strong=\"G3588\"*, they|strong=\"G2532\"* said|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, do|strong=\"G2532\"* you|strong=\"G3004\"* want|strong=\"G2309\"* us|strong=\"G3004\"* to|strong=\"G2532\"* command|strong=\"G3004\"* fire|strong=\"G4442\"* to|strong=\"G2532\"* come|strong=\"G2597\"* down|strong=\"G2597\"* from|strong=\"G2597\"* the|strong=\"G2532\"* sky|strong=\"G3772\"* and|strong=\"G2532\"* destroy them|strong=\"G3588\"*, just|strong=\"G2532\"* as|strong=\"G1161\"* Elijah did|strong=\"G2532\"*?”" + }, + { + "verseNum": 55, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* turned|strong=\"G4762\"* and|strong=\"G1161\"* rebuked|strong=\"G2008\"* them, “You don’t know \\+w of|strong=\"G1161\"\\+w* \\+w what|strong=\"G1161\"\\+w* kind \\+w of|strong=\"G1161\"\\+w* spirit you are. *" + }, + { + "verseNum": 56, + "text": "\\+w For|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* Son \\+w of|strong=\"G2532\"\\+w* \\+w Man|strong=\"G2087\"\\+w* didn’t \\+w come|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* destroy men’s lives, \\+w but|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* save \\+w them|strong=\"G2532\"\\+w*.”*" + }, + { + "verseNum": 57, + "text": "As|strong=\"G1722\"* they|strong=\"G2532\"* went|strong=\"G4198\"* on|strong=\"G1722\"* the|strong=\"G1722\"* way|strong=\"G3598\"*, a|strong=\"G2532\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “I|strong=\"G2532\"* want to|strong=\"G4314\"* follow|strong=\"G4198\"* you|strong=\"G4771\"* wherever|strong=\"G3699\"* you|strong=\"G4771\"* go|strong=\"G4198\"*, Lord|strong=\"G3588\"*.”" + }, + { + "verseNum": 58, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w The|strong=\"G2532\"\\+w* foxes \\+w have|strong=\"G2192\"\\+w* \\+w holes|strong=\"G5454\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w birds|strong=\"G4071\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w nests|strong=\"G2682\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3756\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w place|strong=\"G4226\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w lay|strong=\"G2827\"\\+w* \\+w his|strong=\"G2192\"\\+w* \\+w head|strong=\"G2776\"\\+w*.”*" + }, + { + "verseNum": 59, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* another|strong=\"G2087\"*, “\\+w Follow|strong=\"G1161\"\\+w* \\+w me|strong=\"G1473\"\\+w*!”*" + }, + { + "verseNum": 60, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G3004\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Leave \\+w the|strong=\"G1161\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w bury|strong=\"G2290\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w dead|strong=\"G3498\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w* go \\+w and|strong=\"G1161\"\\+w* announce \\+w God|strong=\"G2316\"\\+w*’s Kingdom.”*" + }, + { + "verseNum": 61, + "text": "Another|strong=\"G2087\"* also|strong=\"G2532\"* said|strong=\"G3004\"*, “I|strong=\"G1473\"* want to|strong=\"G1519\"* follow|strong=\"G1161\"* you|strong=\"G4771\"*, Lord|strong=\"G2962\"*, but|strong=\"G1161\"* first|strong=\"G4413\"* allow|strong=\"G2010\"* me|strong=\"G1473\"* to|strong=\"G1519\"* say|strong=\"G3004\"* good-bye to|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* at|strong=\"G1519\"* my|strong=\"G1473\"* house|strong=\"G3624\"*.”" + }, + { + "verseNum": 62, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “\\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w*, \\+w having|strong=\"G2532\"\\+w* \\+w put|strong=\"G1911\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w hand|strong=\"G5495\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* plow \\+w and|strong=\"G2532\"\\+w* \\+w looking|strong=\"G2424\"\\+w* \\+w back|strong=\"G3694\"\\+w*, \\+w is|strong=\"G1510\"\\+w* \\+w fit|strong=\"G2111\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom.”*" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* after|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3956\"*, the|strong=\"G2532\"* Lord|strong=\"G2962\"* also|strong=\"G2532\"* appointed seventy|strong=\"G1440\"* others|strong=\"G2087\"*, and|strong=\"G2532\"* sent|strong=\"G2532\"* them|strong=\"G3588\"* two|strong=\"G1417\"* by|strong=\"G2532\"* two|strong=\"G1417\"* ahead|strong=\"G4253\"* of|strong=\"G2532\"* him|strong=\"G3588\"*+ 10:1 literally, “before his face”* into|strong=\"G1519\"* every|strong=\"G3956\"* city|strong=\"G4172\"* and|strong=\"G2532\"* place|strong=\"G5117\"* where|strong=\"G3757\"* he|strong=\"G2532\"* was|strong=\"G3588\"* about|strong=\"G3195\"* to|strong=\"G1519\"* come|strong=\"G2064\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"G3767\"* he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w The|strong=\"G1519\"\\+w* \\+w harvest|strong=\"G2326\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w indeed|strong=\"G3303\"\\+w* \\+w plentiful|strong=\"G4183\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w laborers|strong=\"G2040\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w few|strong=\"G3641\"\\+w*. \\+w Pray|strong=\"G1189\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2962\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w harvest|strong=\"G2326\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w may|strong=\"G3004\"\\+w* \\+w send|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w laborers|strong=\"G2040\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w harvest|strong=\"G2326\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w Go|strong=\"G5217\"\\+w* \\+w your|strong=\"G3708\"\\+w* \\+w ways|strong=\"G5217\"\\+w*. \\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G5613\"\\+w* send \\+w you|strong=\"G5210\"\\+w* out \\+w as|strong=\"G5613\"\\+w* lambs \\+w among|strong=\"G1722\"\\+w* \\+w wolves|strong=\"G3074\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "Carry \\+w no|strong=\"G3361\"\\+w* purse, \\+w nor|strong=\"G2532\"\\+w* wallet, \\+w nor|strong=\"G2532\"\\+w* \\+w sandals|strong=\"G5266\"\\+w*. Greet \\+w no|strong=\"G3361\"\\+w* \\+w one|strong=\"G3367\"\\+w* \\+w on|strong=\"G2596\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w way|strong=\"G3598\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w Into|strong=\"G1519\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w enter|strong=\"G1525\"\\+w*, \\+w first|strong=\"G4413\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Peace|strong=\"G1515\"\\+w* \\+w be|strong=\"G1519\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w house|strong=\"G3624\"\\+w*.’ *" + }, + { + "verseNum": 6, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w peace|strong=\"G1515\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w there|strong=\"G1563\"\\+w*, \\+w your|strong=\"G1437\"\\+w* \\+w peace|strong=\"G1515\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w rest|strong=\"G1515\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w him|strong=\"G3588\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w not|strong=\"G3361\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* return \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w Remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w same|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w*, \\+w eating|strong=\"G2068\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drinking|strong=\"G4095\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w give|strong=\"G3844\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w laborer|strong=\"G2040\"\\+w* \\+w is|strong=\"G3588\"\\+w* worthy \\+w of|strong=\"G1537\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w wages|strong=\"G3408\"\\+w*. Don’\\+w t|strong=\"G3588\"\\+w* \\+w go|strong=\"G3327\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w house|strong=\"G3614\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w Into|strong=\"G1519\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w eat|strong=\"G2068\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w set|strong=\"G3908\"\\+w* \\+w before|strong=\"G3908\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w Heal|strong=\"G2323\"\\+w* \\+w the|strong=\"G1722\"\\+w* sick \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w them|strong=\"G3588\"\\+w*, ‘\\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w has|strong=\"G2316\"\\+w* \\+w come|strong=\"G2532\"\\+w* \\+w near|strong=\"G1448\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*.’ *" + }, + { + "verseNum": 10, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w into|strong=\"G1519\"\\+w* its \\+w streets|strong=\"G4113\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, *" + }, + { + "verseNum": 11, + "text": "‘\\+w Even|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dust|strong=\"G2868\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w clings|strong=\"G2853\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w us|strong=\"G1519\"\\+w*, \\+w we|strong=\"G2249\"\\+w* wipe \\+w off|strong=\"G1537\"\\+w* \\+w against|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w Nevertheless|strong=\"G4133\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w has|strong=\"G2316\"\\+w* \\+w come|strong=\"G2532\"\\+w* \\+w near|strong=\"G1448\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*.’ *" + }, + { + "verseNum": 12, + "text": "\\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w it|strong=\"G3754\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w more|strong=\"G1161\"\\+w* tolerable \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w Sodom|strong=\"G4670\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w city|strong=\"G4172\"\\+w*.*" + }, + { + "verseNum": 13, + "text": "“\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w Chorazin|strong=\"G5523\"\\+w*! \\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, Bethsaida! \\+w For|strong=\"G3754\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w mighty|strong=\"G1411\"\\+w* \\+w works|strong=\"G1411\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w been|strong=\"G1096\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Tyre|strong=\"G5184\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Sidon|strong=\"G4605\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w would|strong=\"G1096\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w repented|strong=\"G3340\"\\+w* \\+w long|strong=\"G3819\"\\+w* \\+w ago|strong=\"G3819\"\\+w*, \\+w sitting|strong=\"G2521\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w sackcloth|strong=\"G4526\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w ashes|strong=\"G4700\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w more|strong=\"G2532\"\\+w* tolerable \\+w for|strong=\"G1722\"\\+w* \\+w Tyre|strong=\"G5184\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Sidon|strong=\"G4605\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w for|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w You|strong=\"G4771\"\\+w*, \\+w Capernaum|strong=\"G2584\"\\+w*, \\+w who|strong=\"G2532\"\\+w* \\+w are|strong=\"G2532\"\\+w* \\+w exalted|strong=\"G5312\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w brought|strong=\"G2532\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w to|strong=\"G2532\"\\+w* Hades. *+ 10:15 Hades is the lower realm of the dead, or Hell.*" + }, + { + "verseNum": 16, + "text": "\\+w Whoever|strong=\"G3588\"\\+w* listens \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* listens \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w whoever|strong=\"G3588\"\\+w* rejects \\+w you|strong=\"G5210\"\\+w* rejects \\+w me|strong=\"G1473\"\\+w*. \\+w Whoever|strong=\"G3588\"\\+w* rejects \\+w me|strong=\"G1473\"\\+w* rejects \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 17, + "text": "The|strong=\"G1722\"* seventy|strong=\"G1440\"* returned|strong=\"G5290\"* with|strong=\"G3326\"* joy|strong=\"G5479\"*, saying|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, even|strong=\"G2532\"* the|strong=\"G1722\"* demons|strong=\"G1140\"* are|strong=\"G3588\"* subject|strong=\"G5293\"* to|strong=\"G2532\"* us|strong=\"G3004\"* in|strong=\"G1722\"* your|strong=\"G2962\"* name|strong=\"G3686\"*!”" + }, + { + "verseNum": 18, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1161\"\\+w* \\+w saw|strong=\"G2334\"\\+w* \\+w Satan|strong=\"G4567\"\\+w* having \\+w fallen|strong=\"G4098\"\\+w* \\+w like|strong=\"G5613\"\\+w* lightning \\+w from|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w tread|strong=\"G3961\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w serpents|strong=\"G3789\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w scorpions|strong=\"G4651\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w enemy|strong=\"G2190\"\\+w*. \\+w Nothing|strong=\"G3762\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w any|strong=\"G3956\"\\+w* \\+w way|strong=\"G3956\"\\+w* hurt \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w Nevertheless|strong=\"G4133\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w rejoice|strong=\"G5463\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w spirits|strong=\"G4151\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w subject|strong=\"G5293\"\\+w* \\+w to|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w rejoice|strong=\"G5463\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w your|strong=\"G1722\"\\+w* \\+w names|strong=\"G3686\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w written|strong=\"G1449\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*.”*" + }, + { + "verseNum": 21, + "text": "In|strong=\"G1722\"* that|strong=\"G3754\"* same|strong=\"G3778\"* hour|strong=\"G5610\"*, Jesus|strong=\"G3004\"* rejoiced in|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w I|strong=\"G2532\"\\+w* \\+w thank|strong=\"G1843\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w O|strong=\"G3962\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w Lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G4151\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* hidden \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w wise|strong=\"G4680\"\\+w* \\+w and|strong=\"G2532\"\\+w* understanding, \\+w and|strong=\"G2532\"\\+w* revealed \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* little \\+w children|strong=\"G3516\"\\+w*. \\+w Yes|strong=\"G3483\"\\+w*, \\+w Father|strong=\"G3962\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G1096\"\\+w* \\+w well-pleasing|strong=\"G2107\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2962\"\\+w* \\+w sight|strong=\"G1715\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "Turning|strong=\"G4762\"* to|strong=\"G4314\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w All|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. \\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w knows|strong=\"G1097\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w is|strong=\"G1510\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w is|strong=\"G1510\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w whomever|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w desires|strong=\"G1014\"\\+w* \\+w to|strong=\"G4314\"\\+w* reveal \\+w him|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 23, + "text": "Turning|strong=\"G4762\"* to|strong=\"G4314\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* privately|strong=\"G2398\"*, “\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w eyes|strong=\"G3788\"\\+w* \\+w which|strong=\"G3739\"\\+w* see \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* see, *" + }, + { + "verseNum": 24, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w and|strong=\"G2532\"\\+w* kings \\+w desired|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G4183\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w see|strong=\"G3708\"\\+w*, \\+w and|strong=\"G2532\"\\+w* didn’t \\+w see|strong=\"G3708\"\\+w* \\+w them|strong=\"G3739\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* hear \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G4183\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* hear, \\+w and|strong=\"G2532\"\\+w* didn’t hear \\+w them|strong=\"G3739\"\\+w*.”*" + }, + { + "verseNum": 25, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G2532\"* certain|strong=\"G5100\"* lawyer|strong=\"G3544\"* stood|strong=\"G2532\"* up|strong=\"G2532\"* and|strong=\"G2532\"* tested him|strong=\"G3708\"*, saying|strong=\"G3004\"*, “Teacher|strong=\"G1320\"*, what|strong=\"G5101\"* shall|strong=\"G2532\"* I|strong=\"G2532\"* do|strong=\"G4160\"* to|strong=\"G2532\"* inherit|strong=\"G2816\"* eternal life|strong=\"G2222\"*?”" + }, + { + "verseNum": 26, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w law|strong=\"G3551\"\\+w*? \\+w How|strong=\"G4459\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w read|strong=\"G1125\"\\+w* \\+w it|strong=\"G1161\"\\+w*?” *" + }, + { + "verseNum": 27, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"*, “You|strong=\"G4771\"* shall|strong=\"G2532\"* love the|strong=\"G1722\"* Lord|strong=\"G2962\"* your|strong=\"G3650\"* God|strong=\"G2316\"* with|strong=\"G1722\"* all|strong=\"G3650\"* your|strong=\"G3650\"* heart|strong=\"G2588\"*, with|strong=\"G1722\"* all|strong=\"G3650\"* your|strong=\"G3650\"* soul|strong=\"G5590\"*, with|strong=\"G1722\"* all|strong=\"G3650\"* your|strong=\"G3650\"* strength|strong=\"G2479\"*, and|strong=\"G2532\"* with|strong=\"G1722\"* all|strong=\"G3650\"* your|strong=\"G3650\"* mind|strong=\"G1271\"*;+ 10:27 Deuteronomy 6:5* and|strong=\"G2532\"* your|strong=\"G3650\"* neighbor|strong=\"G4139\"* as|strong=\"G5613\"* yourself|strong=\"G4572\"*.”+ 10:27 Leviticus 19:18*" + }, + { + "verseNum": 28, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G4160\"*, “\\+w You|strong=\"G3004\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w answered|strong=\"G3004\"\\+w* \\+w correctly|strong=\"G3723\"\\+w*. \\+w Do|strong=\"G4160\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w live|strong=\"G2198\"\\+w*.”*" + }, + { + "verseNum": 29, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"*, desiring|strong=\"G2309\"* to|strong=\"G4314\"* justify|strong=\"G1344\"* himself|strong=\"G1438\"*, asked|strong=\"G3004\"* Jesus|strong=\"G2424\"*, “Who|strong=\"G5101\"* is|strong=\"G1510\"* my|strong=\"G1473\"* neighbor|strong=\"G4139\"*?”" + }, + { + "verseNum": 30, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “\\+w A|strong=\"G2532\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w going|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w from|strong=\"G2597\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w Jericho|strong=\"G2410\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w fell|strong=\"G2597\"\\+w* \\+w among|strong=\"G1519\"\\+w* \\+w robbers|strong=\"G3027\"\\+w*, \\+w who|strong=\"G3739\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w stripped|strong=\"G1562\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w beat|strong=\"G4127\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* departed, \\+w leaving|strong=\"G2007\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w half|strong=\"G2253\"\\+w* \\+w dead|strong=\"G2253\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w By|strong=\"G1722\"\\+w* \\+w chance|strong=\"G4795\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w priest|strong=\"G2409\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w going|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w way|strong=\"G3598\"\\+w*. \\+w When|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w passed|strong=\"G3588\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w other|strong=\"G1161\"\\+w* \\+w side|strong=\"G3598\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w In|strong=\"G2596\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w same|strong=\"G3668\"\\+w* \\+w way|strong=\"G3668\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w Levite|strong=\"G3019\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w when|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w place|strong=\"G5117\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w passed|strong=\"G3588\"\\+w* \\+w by|strong=\"G2596\"\\+w* \\+w on|strong=\"G2596\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G1161\"\\+w* side. *" + }, + { + "verseNum": 33, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w Samaritan|strong=\"G4541\"\\+w*, \\+w as|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* traveled, \\+w came|strong=\"G2064\"\\+w* \\+w where|strong=\"G2596\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w was|strong=\"G2532\"\\+w*. \\+w When|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w him|strong=\"G3708\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w was|strong=\"G2532\"\\+w* \\+w moved|strong=\"G4697\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w compassion|strong=\"G4697\"\\+w*, *" + }, + { + "verseNum": 34, + "text": "\\+w came|strong=\"G4334\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* bound \\+w up|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w wounds|strong=\"G5134\"\\+w*, \\+w pouring|strong=\"G2022\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w oil|strong=\"G1637\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w wine|strong=\"G3631\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w set|strong=\"G1913\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w animal|strong=\"G2934\"\\+w*, \\+w brought|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w inn|strong=\"G3829\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w took|strong=\"G2532\"\\+w* \\+w care|strong=\"G1959\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w On|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* next \\+w day|strong=\"G3588\"\\+w*, \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* departed, \\+w he|strong=\"G2532\"\\+w* \\+w took|strong=\"G2532\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w denarii|strong=\"G1220\"\\+w*, \\+w gave|strong=\"G1325\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* host, \\+w and|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Take|strong=\"G1544\"\\+w* \\+w care|strong=\"G1959\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*. \\+w Whatever|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w spend|strong=\"G4325\"\\+w* \\+w beyond|strong=\"G1909\"\\+w* \\+w that|strong=\"G3739\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* repay \\+w you|strong=\"G4771\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w return|strong=\"G1880\"\\+w*.’ *" + }, + { + "verseNum": 36, + "text": "\\+w Now|strong=\"G1096\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w think|strong=\"G1380\"\\+w* \\+w seemed|strong=\"G1380\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w neighbor|strong=\"G4139\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w fell|strong=\"G1096\"\\+w* \\+w among|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w robbers|strong=\"G3027\"\\+w*?”*" + }, + { + "verseNum": 37, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “He|strong=\"G2532\"* who|strong=\"G3588\"* showed|strong=\"G4160\"* mercy|strong=\"G1656\"* on|strong=\"G4198\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 38, + "text": "As|strong=\"G1519\"* they|strong=\"G2532\"* went|strong=\"G4198\"* on|strong=\"G1722\"* their|strong=\"G1438\"* way|strong=\"G4198\"*, he|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* a|strong=\"G1096\"* certain|strong=\"G5100\"* village|strong=\"G2968\"*, and|strong=\"G2532\"* a|strong=\"G1096\"* certain|strong=\"G5100\"* woman|strong=\"G1135\"* named|strong=\"G3686\"* Martha|strong=\"G3136\"* received|strong=\"G5264\"* him|strong=\"G3588\"* into|strong=\"G1519\"* her|strong=\"G1438\"* house|strong=\"G3614\"*." + }, + { + "verseNum": 39, + "text": "She|strong=\"G2532\"* had|strong=\"G2424\"* a|strong=\"G2532\"* sister called|strong=\"G2564\"* Mary|strong=\"G3137\"*, who|strong=\"G3739\"* also|strong=\"G2532\"* sat|strong=\"G3869\"* at|strong=\"G4314\"* Jesus|strong=\"G2424\"*’ feet|strong=\"G4228\"* and|strong=\"G2532\"* heard his|strong=\"G2532\"* word|strong=\"G3056\"*." + }, + { + "verseNum": 40, + "text": "But|strong=\"G1161\"* Martha|strong=\"G3136\"* was|strong=\"G3588\"* distracted|strong=\"G4049\"* with|strong=\"G4012\"* much|strong=\"G4183\"* serving|strong=\"G1247\"*, and|strong=\"G1161\"* she|strong=\"G1161\"* came|strong=\"G2186\"* up|strong=\"G2186\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, and|strong=\"G1161\"* said|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, don’t|strong=\"G3588\"* you|strong=\"G4771\"* care|strong=\"G3199\"* that|strong=\"G3754\"* my|strong=\"G1473\"* sister left|strong=\"G2641\"* me|strong=\"G1473\"* to|strong=\"G2443\"* serve|strong=\"G1247\"* alone|strong=\"G3441\"*? Ask|strong=\"G3004\"* her|strong=\"G3754\"* therefore|strong=\"G3767\"* to|strong=\"G2443\"* help|strong=\"G4878\"* me|strong=\"G1473\"*.”" + }, + { + "verseNum": 41, + "text": "Jesus|strong=\"G3004\"* answered|strong=\"G3004\"* her|strong=\"G3588\"*, “\\+w Martha|strong=\"G3136\"\\+w*, \\+w Martha|strong=\"G3136\"\\+w*, \\+w you|strong=\"G3004\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w anxious|strong=\"G3309\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w troubled|strong=\"G2350\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w things|strong=\"G3588\"\\+w*, *" + }, + { + "verseNum": 42, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w thing|strong=\"G1520\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w needed|strong=\"G5532\"\\+w*. \\+w Mary|strong=\"G3137\"\\+w* \\+w has|strong=\"G3748\"\\+w* \\+w chosen|strong=\"G1586\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w good|strong=\"G3756\"\\+w* \\+w part|strong=\"G3310\"\\+w*, \\+w which|strong=\"G3588\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1510\"\\+w* taken away \\+w from|strong=\"G3756\"\\+w* \\+w her|strong=\"G3137\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G5613\"* he|strong=\"G2532\"* finished|strong=\"G1096\"* praying|strong=\"G4336\"* in|strong=\"G1722\"* a|strong=\"G1096\"* certain|strong=\"G5100\"* place|strong=\"G5117\"*, one|strong=\"G5100\"* of|strong=\"G2532\"* his|strong=\"G1722\"* disciples|strong=\"G3101\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, teach|strong=\"G1321\"* us|strong=\"G3004\"* to|strong=\"G4314\"* pray|strong=\"G4336\"*, just|strong=\"G2531\"* as|strong=\"G5613\"* John|strong=\"G2491\"* also|strong=\"G2532\"* taught|strong=\"G1321\"* his|strong=\"G1722\"* disciples|strong=\"G3101\"*.”" + }, + { + "verseNum": 2, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w When|strong=\"G3752\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w pray|strong=\"G4336\"\\+w*, \\+w say|strong=\"G3004\"\\+w*,*" + }, + { + "verseNum": 3, + "text": "\\+w Give|strong=\"G1325\"\\+w* \\+w us|strong=\"G1325\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w by|strong=\"G2596\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w our|strong=\"G2596\"\\+w* \\+w daily|strong=\"G2250\"\\+w* bread.*" + }, + { + "verseNum": 4, + "text": "Forgive \\+w us|strong=\"G1519\"\\+w* \\+w our|strong=\"G2532\"\\+w* sins,*" + }, + { + "verseNum": 5, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G1438\"*, “\\+w Which|strong=\"G5101\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w if|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w friend|strong=\"G5384\"\\+w* \\+w at|strong=\"G4314\"\\+w* \\+w midnight|strong=\"G3317\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w him|strong=\"G2532\"\\+w*, ‘\\+w Friend|strong=\"G5384\"\\+w*, \\+w lend|strong=\"G5531\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w three|strong=\"G5140\"\\+w* loaves \\+w of|strong=\"G1537\"\\+w* bread, *" + }, + { + "verseNum": 6, + "text": "\\+w for|strong=\"G4314\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w friend|strong=\"G5384\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w mine|strong=\"G1473\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w come|strong=\"G3854\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w journey|strong=\"G3598\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w nothing|strong=\"G3756\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w set|strong=\"G3908\"\\+w* \\+w before|strong=\"G4314\"\\+w* \\+w him|strong=\"G3739\"\\+w*,’ *" + }, + { + "verseNum": 7, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w within|strong=\"G2081\"\\+w* \\+w will|strong=\"G1510\"\\+w* answer \\+w and|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘Don’\\+w t|strong=\"G3588\"\\+w* \\+w bother|strong=\"G2873\"\\+w* \\+w me|strong=\"G1325\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w door|strong=\"G2374\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w now|strong=\"G2532\"\\+w* \\+w shut|strong=\"G2808\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G1325\"\\+w* \\+w children|strong=\"G3813\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w bed|strong=\"G2845\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w get|strong=\"G2532\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w*’? *" + }, + { + "verseNum": 8, + "text": "\\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w although|strong=\"G5210\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w rise|strong=\"G1453\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w his|strong=\"G1223\"\\+w* \\+w friend|strong=\"G5384\"\\+w*, \\+w yet|strong=\"G2532\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w his|strong=\"G1223\"\\+w* persistence, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w get|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w as|strong=\"G3745\"\\+w* \\+w many|strong=\"G3745\"\\+w* \\+w as|strong=\"G3745\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w needs|strong=\"G5535\"\\+w*.*" + }, + { + "verseNum": 9, + "text": "“\\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, keep \\+w asking|strong=\"G3004\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w*. Keep \\+w seeking|strong=\"G2212\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w find|strong=\"G2147\"\\+w*. Keep \\+w knocking|strong=\"G2925\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* opened \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* asks \\+w receives|strong=\"G2983\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w seeks|strong=\"G2212\"\\+w* \\+w finds|strong=\"G2147\"\\+w*. \\+w To|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w knocks|strong=\"G2925\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* opened.*" + }, + { + "verseNum": 11, + "text": "“\\+w Which|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w fathers|strong=\"G3962\"\\+w*, \\+w if|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w* asks \\+w for|strong=\"G1161\"\\+w* bread, \\+w will|strong=\"G5101\"\\+w* \\+w give|strong=\"G1929\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w stone|strong=\"G3037\"\\+w*? \\+w Or|strong=\"G2228\"\\+w* \\+w if|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* asks \\+w for|strong=\"G1161\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w fish|strong=\"G2486\"\\+w*, \\+w he|strong=\"G2532\"\\+w* won’\\+w t|strong=\"G3588\"\\+w* \\+w give|strong=\"G1929\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w snake|strong=\"G3789\"\\+w* \\+w instead|strong=\"G1161\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w fish|strong=\"G2486\"\\+w*, \\+w will|strong=\"G5101\"\\+w* \\+w he|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 12, + "text": "\\+w Or|strong=\"G2228\"\\+w* \\+w if|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* asks \\+w for|strong=\"G2532\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w egg|strong=\"G5609\"\\+w*, \\+w he|strong=\"G2532\"\\+w* won’t \\+w give|strong=\"G1929\"\\+w* \\+w him|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w scorpion|strong=\"G4651\"\\+w*, \\+w will|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 13, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w then|strong=\"G3767\"\\+w*, \\+w being|strong=\"G5225\"\\+w* \\+w evil|strong=\"G4190\"\\+w*, \\+w know|strong=\"G1492\"\\+w* \\+w how|strong=\"G4214\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w gifts|strong=\"G1390\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w your|strong=\"G1487\"\\+w* \\+w children|strong=\"G5043\"\\+w*, \\+w how|strong=\"G4214\"\\+w* \\+w much|strong=\"G4214\"\\+w* \\+w more|strong=\"G3123\"\\+w* \\+w will|strong=\"G3962\"\\+w* \\+w your|strong=\"G1487\"\\+w* \\+w heavenly|strong=\"G3772\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* ask \\+w him|strong=\"G3588\"\\+w*?”*" + }, + { + "verseNum": 14, + "text": "He|strong=\"G2532\"* was|strong=\"G1510\"* casting|strong=\"G1544\"* out|strong=\"G1831\"* a|strong=\"G1096\"* demon|strong=\"G1140\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G1510\"* mute|strong=\"G2974\"*. When|strong=\"G1161\"* the|strong=\"G2532\"* demon|strong=\"G1140\"* had|strong=\"G2532\"* gone|strong=\"G1831\"* out|strong=\"G1831\"*, the|strong=\"G2532\"* mute|strong=\"G2974\"* man|strong=\"G2974\"* spoke|strong=\"G2980\"*; and|strong=\"G2532\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* marveled|strong=\"G2296\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* some|strong=\"G5100\"* of|strong=\"G1537\"* them|strong=\"G3588\"* said|strong=\"G3004\"*, “He|strong=\"G1161\"* casts|strong=\"G1544\"* out|strong=\"G1537\"* demons|strong=\"G1140\"* by|strong=\"G1722\"* Beelzebul, the|strong=\"G1722\"* prince of|strong=\"G1537\"* the|strong=\"G1722\"* demons|strong=\"G1140\"*.”" + }, + { + "verseNum": 16, + "text": "Others|strong=\"G2087\"*, testing|strong=\"G3985\"* him|strong=\"G1537\"*, sought|strong=\"G2212\"* from|strong=\"G1537\"* him|strong=\"G1537\"* a|strong=\"G1161\"* sign|strong=\"G4592\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"*, knowing|strong=\"G1492\"* their|strong=\"G1438\"* thoughts|strong=\"G1270\"*, said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Every|strong=\"G3956\"\\+w* kingdom \\+w divided|strong=\"G1266\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w itself|strong=\"G1438\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w brought|strong=\"G1161\"\\+w* \\+w to|strong=\"G2532\"\\+w* desolation. \\+w A|strong=\"G2532\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w divided|strong=\"G1266\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w itself|strong=\"G1438\"\\+w* \\+w falls|strong=\"G4098\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w Satan|strong=\"G4567\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w divided|strong=\"G1266\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w how|strong=\"G4459\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w his|strong=\"G1438\"\\+w* kingdom \\+w stand|strong=\"G2476\"\\+w*? \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w demons|strong=\"G1140\"\\+w* \\+w by|strong=\"G1722\"\\+w* Beelzebul. *" + }, + { + "verseNum": 19, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w demons|strong=\"G1140\"\\+w* \\+w by|strong=\"G1223\"\\+w* Beelzebul, \\+w by|strong=\"G1223\"\\+w* \\+w whom|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w out|strong=\"G1544\"\\+w*? \\+w Therefore|strong=\"G1223\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w judges|strong=\"G2923\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s \\+w finger|strong=\"G1147\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w demons|strong=\"G1140\"\\+w*, \\+w then|strong=\"G1161\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w has|strong=\"G2316\"\\+w* \\+w come|strong=\"G5348\"\\+w* \\+w to|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w*.*" + }, + { + "verseNum": 21, + "text": "“\\+w When|strong=\"G3752\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w strong|strong=\"G2478\"\\+w* \\+w man|strong=\"G2478\"\\+w*, \\+w fully|strong=\"G2528\"\\+w* \\+w armed|strong=\"G2528\"\\+w*, \\+w guards|strong=\"G5442\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* dwelling, \\+w his|strong=\"G1438\"\\+w* goods \\+w are|strong=\"G1510\"\\+w* \\+w safe|strong=\"G1722\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G1161\"\\+w* \\+w someone|strong=\"G3739\"\\+w* \\+w stronger|strong=\"G2478\"\\+w* \\+w attacks|strong=\"G1904\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w overcomes|strong=\"G3528\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w he|strong=\"G2532\"\\+w* takes \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w his|strong=\"G1909\"\\+w* whole \\+w armor|strong=\"G3833\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w trusted|strong=\"G3982\"\\+w*, \\+w and|strong=\"G2532\"\\+w* divides \\+w his|strong=\"G1909\"\\+w* \\+w plunder|strong=\"G4661\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "“\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w gather|strong=\"G4863\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w scatters|strong=\"G4650\"\\+w*.*" + }, + { + "verseNum": 24, + "text": "\\+w The|strong=\"G2532\"\\+w* unclean \\+w spirit|strong=\"G4151\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G4151\"\\+w* \\+w gone|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G4151\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w man|strong=\"G3361\"\\+w*, \\+w passes|strong=\"G1330\"\\+w* \\+w through|strong=\"G1223\"\\+w* dry \\+w places|strong=\"G5117\"\\+w*, \\+w seeking|strong=\"G2212\"\\+w* rest; \\+w and|strong=\"G2532\"\\+w* \\+w finding|strong=\"G2147\"\\+w* \\+w none|strong=\"G3361\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w says|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w turn|strong=\"G5290\"\\+w* \\+w back|strong=\"G5290\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w my|strong=\"G2212\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w*.’ *" + }, + { + "verseNum": 25, + "text": "\\+w When|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* returns, \\+w he|strong=\"G2532\"\\+w* \\+w finds|strong=\"G2147\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w swept|strong=\"G4563\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w put|strong=\"G2532\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w order|strong=\"G2885\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w goes|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w takes|strong=\"G3880\"\\+w* \\+w seven|strong=\"G2033\"\\+w* \\+w other|strong=\"G2087\"\\+w* \\+w spirits|strong=\"G4151\"\\+w* \\+w more|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w than|strong=\"G2532\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w dwell|strong=\"G2730\"\\+w* \\+w there|strong=\"G1563\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w last|strong=\"G2078\"\\+w* state \\+w of|strong=\"G4151\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w man|strong=\"G4413\"\\+w* \\+w becomes|strong=\"G1096\"\\+w* \\+w worse|strong=\"G5501\"\\+w* \\+w than|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w*.”*" + }, + { + "verseNum": 27, + "text": "It|strong=\"G2532\"* came|strong=\"G1096\"* to|strong=\"G2532\"* pass|strong=\"G1096\"*, as|strong=\"G1722\"* he|strong=\"G2532\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, a|strong=\"G1096\"* certain|strong=\"G5100\"* woman|strong=\"G1135\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* multitude|strong=\"G3793\"* lifted|strong=\"G1869\"* up|strong=\"G1869\"* her|strong=\"G1869\"* voice|strong=\"G5456\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Blessed|strong=\"G3107\"* is|strong=\"G3588\"* the|strong=\"G1722\"* womb|strong=\"G2836\"* that|strong=\"G3739\"* bore you|strong=\"G4771\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* breasts|strong=\"G3149\"* which|strong=\"G3739\"* nursed|strong=\"G2337\"* you|strong=\"G4771\"*!”" + }, + { + "verseNum": 28, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w On|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w contrary|strong=\"G2316\"\\+w*, \\+w blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* hear \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w keep|strong=\"G5442\"\\+w* \\+w it|strong=\"G2532\"\\+w*.”*" + }, + { + "verseNum": 29, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* were|strong=\"G1510\"* gathering|strong=\"G3793\"* together|strong=\"G1865\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* began|strong=\"G1161\"* to|strong=\"G2532\"* say|strong=\"G3004\"*, “\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w generation|strong=\"G1074\"\\+w*. \\+w It|strong=\"G2532\"\\+w* \\+w seeks|strong=\"G2212\"\\+w* \\+w after|strong=\"G1161\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w sign|strong=\"G4592\"\\+w*. \\+w No|strong=\"G3756\"\\+w* \\+w sign|strong=\"G4592\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sign|strong=\"G4592\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Jonah|strong=\"G2495\"\\+w* \\+w the|strong=\"G2532\"\\+w* prophet. *" + }, + { + "verseNum": 30, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w Jonah|strong=\"G2495\"\\+w* \\+w became|strong=\"G1096\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w sign|strong=\"G4592\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Ninevites|strong=\"G3536\"\\+w*, \\+w so|strong=\"G3779\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w The|strong=\"G1722\"\\+w* Queen \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w South|strong=\"G3558\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rise|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w men|strong=\"G3778\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w condemn|strong=\"G2632\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w she|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w ends|strong=\"G4009\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w to|strong=\"G2532\"\\+w* hear \\+w the|strong=\"G1722\"\\+w* \\+w wisdom|strong=\"G4678\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Solomon|strong=\"G4672\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, \\+w one|strong=\"G1438\"\\+w* \\+w greater|strong=\"G4183\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w Solomon|strong=\"G4672\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w here|strong=\"G5602\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w The|strong=\"G1722\"\\+w* \\+w men|strong=\"G3778\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Nineveh|strong=\"G3536\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w stand|strong=\"G3778\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w condemn|strong=\"G2632\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w repented|strong=\"G3340\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w preaching|strong=\"G2782\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Jonah|strong=\"G2495\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, \\+w one|strong=\"G1438\"\\+w* \\+w greater|strong=\"G4183\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w Jonah|strong=\"G2495\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w here|strong=\"G5602\"\\+w*.*" + }, + { + "verseNum": 33, + "text": "“\\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w*, \\+w when|strong=\"G5259\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w has|strong=\"G3762\"\\+w* lit \\+w a|strong=\"G1519\"\\+w* \\+w lamp|strong=\"G3088\"\\+w*, \\+w puts|strong=\"G5087\"\\+w* \\+w it|strong=\"G5087\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w cellar|strong=\"G2926\"\\+w* \\+w or|strong=\"G3761\"\\+w* \\+w under|strong=\"G5259\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w basket|strong=\"G3426\"\\+w*, \\+w but|strong=\"G3762\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w a|strong=\"G1519\"\\+w* stand, \\+w that|strong=\"G2443\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w come|strong=\"G1531\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w may|strong=\"G2443\"\\+w* see \\+w the|strong=\"G1519\"\\+w* \\+w light|strong=\"G5338\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w lamp|strong=\"G3088\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w eye|strong=\"G3788\"\\+w*. \\+w Therefore|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w eye|strong=\"G3788\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w good|strong=\"G3588\"\\+w*, \\+w your|strong=\"G3650\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w full|strong=\"G5460\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w light|strong=\"G3088\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w evil|strong=\"G4190\"\\+w*, \\+w your|strong=\"G3650\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w full|strong=\"G5460\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w darkness|strong=\"G4652\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w Therefore|strong=\"G3767\"\\+w* \\+w see|strong=\"G4648\"\\+w* whether \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G4771\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* \\+w darkness|strong=\"G4655\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w full|strong=\"G5460\"\\+w* \\+w of|strong=\"G5100\"\\+w* \\+w light|strong=\"G5461\"\\+w*, \\+w having|strong=\"G2192\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w part|strong=\"G3313\"\\+w* \\+w dark|strong=\"G4652\"\\+w*, \\+w it|strong=\"G1487\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w wholly|strong=\"G3650\"\\+w* \\+w full|strong=\"G5460\"\\+w* \\+w of|strong=\"G5100\"\\+w* \\+w light|strong=\"G5461\"\\+w*, \\+w as|strong=\"G5613\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w lamp|strong=\"G3088\"\\+w* \\+w with|strong=\"G2192\"\\+w* \\+w its|strong=\"G3752\"\\+w* \\+w bright|strong=\"G5460\"\\+w* shining gives \\+w you|strong=\"G4771\"\\+w* \\+w light|strong=\"G5461\"\\+w*.”*" + }, + { + "verseNum": 37, + "text": "Now|strong=\"G1161\"* as|strong=\"G1722\"* he|strong=\"G1161\"* spoke|strong=\"G2980\"*, a|strong=\"G1722\"* certain Pharisee|strong=\"G5330\"* asked|strong=\"G2065\"* him|strong=\"G3588\"* to|strong=\"G1722\"* dine with|strong=\"G1722\"* him|strong=\"G3588\"*. He|strong=\"G1161\"* went|strong=\"G1525\"* in|strong=\"G1722\"* and|strong=\"G1161\"* sat at|strong=\"G1722\"* the|strong=\"G1722\"* table." + }, + { + "verseNum": 38, + "text": "When|strong=\"G1161\"* the|strong=\"G1161\"* Pharisee|strong=\"G5330\"* saw|strong=\"G3708\"* it|strong=\"G3754\"*, he|strong=\"G1161\"* marveled|strong=\"G2296\"* that|strong=\"G3754\"* he|strong=\"G1161\"* had|strong=\"G3588\"* not|strong=\"G3756\"* first|strong=\"G4413\"* washed himself before|strong=\"G4253\"* dinner." + }, + { + "verseNum": 39, + "text": "The|strong=\"G2532\"* Lord|strong=\"G2962\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “\\+w Now|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w* \\+w cleanse|strong=\"G2511\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w outside|strong=\"G1855\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w platter|strong=\"G4094\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w your|strong=\"G2962\"\\+w* \\+w inward|strong=\"G2081\"\\+w* \\+w part|strong=\"G1161\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w full|strong=\"G1073\"\\+w* \\+w of|strong=\"G2532\"\\+w* extortion \\+w and|strong=\"G2532\"\\+w* \\+w wickedness|strong=\"G4189\"\\+w*. *" + }, + { + "verseNum": 40, + "text": "\\+w You|strong=\"G4160\"\\+w* \\+w foolish|strong=\"G2532\"\\+w* ones, didn’\\+w t|strong=\"G3588\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w outside|strong=\"G1855\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w inside|strong=\"G2081\"\\+w* \\+w also|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 41, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w gifts|strong=\"G1654\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* needy \\+w those|strong=\"G3588\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w within|strong=\"G1751\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w clean|strong=\"G2513\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 42, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* tithe \\+w mint|strong=\"G2238\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w rue|strong=\"G4076\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w every|strong=\"G3956\"\\+w* \\+w herb|strong=\"G3001\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* bypass \\+w justice|strong=\"G2920\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s love. \\+w You|strong=\"G5210\"\\+w* \\+w ought|strong=\"G1163\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w these|strong=\"G3778\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w left|strong=\"G2548\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G1161\"\\+w* undone. *" + }, + { + "verseNum": 43, + "text": "\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* love \\+w the|strong=\"G1722\"\\+w* best \\+w seats|strong=\"G4410\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* greetings \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* marketplaces. *" + }, + { + "verseNum": 44, + "text": "\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, scribes \\+w and|strong=\"G2532\"\\+w* Pharisees, hypocrites! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w like|strong=\"G5613\"\\+w* hidden \\+w graves|strong=\"G3419\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w walk|strong=\"G4043\"\\+w* \\+w over|strong=\"G1883\"\\+w* \\+w them|strong=\"G3588\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w it|strong=\"G2532\"\\+w*.”*" + }, + { + "verseNum": 45, + "text": "One|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G2532\"* lawyers|strong=\"G3544\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, in|strong=\"G2532\"* saying|strong=\"G3004\"* this|strong=\"G3778\"* you|strong=\"G3004\"* insult|strong=\"G5195\"* us|strong=\"G3004\"* also|strong=\"G2532\"*.”" + }, + { + "verseNum": 46, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w lawyers|strong=\"G3544\"\\+w* \\+w also|strong=\"G2532\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w load|strong=\"G5413\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w burdens|strong=\"G5413\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w are|strong=\"G3588\"\\+w* difficult \\+w to|strong=\"G2532\"\\+w* carry, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w yourselves|strong=\"G4771\"\\+w* won’\\+w t|strong=\"G3588\"\\+w* \\+w even|strong=\"G2532\"\\+w* lift \\+w one|strong=\"G1520\"\\+w* \\+w finger|strong=\"G1147\"\\+w* \\+w to|strong=\"G2532\"\\+w* help carry \\+w those|strong=\"G3588\"\\+w* \\+w burdens|strong=\"G5413\"\\+w*. *" + }, + { + "verseNum": 47, + "text": "\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w build|strong=\"G3618\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w tombs|strong=\"G3419\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w fathers|strong=\"G3962\"\\+w* killed \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 48, + "text": "\\+w So|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w testify|strong=\"G3144\"\\+w* \\+w and|strong=\"G2532\"\\+w* consent \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w fathers|strong=\"G3962\"\\+w*. \\+w For|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* killed \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w build|strong=\"G3618\"\\+w* \\+w their|strong=\"G1438\"\\+w* tombs. *" + }, + { + "verseNum": 49, + "text": "\\+w Therefore|strong=\"G1223\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wisdom|strong=\"G4678\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* send \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w and|strong=\"G2532\"\\+w* apostles; \\+w and|strong=\"G2532\"\\+w* \\+w some|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* kill \\+w and|strong=\"G2532\"\\+w* \\+w persecute|strong=\"G1377\"\\+w*, *" + }, + { + "verseNum": 50, + "text": "\\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G3956\"\\+w* blood \\+w of|strong=\"G3956\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*, \\+w which|strong=\"G3588\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w shed|strong=\"G1632\"\\+w* \\+w from|strong=\"G3588\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w foundation|strong=\"G2602\"\\+w* \\+w of|strong=\"G3956\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w may|strong=\"G2443\"\\+w* \\+w be|strong=\"G3956\"\\+w* required \\+w of|strong=\"G3956\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w*, *" + }, + { + "verseNum": 51, + "text": "\\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* blood \\+w of|strong=\"G2532\"\\+w* Abel \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* blood \\+w of|strong=\"G2532\"\\+w* Zachariah, \\+w who|strong=\"G3588\"\\+w* perished \\+w between|strong=\"G3342\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w altar|strong=\"G2379\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* sanctuary.’ \\+w Yes|strong=\"G3483\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* required \\+w of|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w*. *" + }, + { + "verseNum": 52, + "text": "\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w lawyers|strong=\"G3544\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w took|strong=\"G2532\"\\+w* away \\+w the|strong=\"G2532\"\\+w* \\+w key|strong=\"G2807\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w knowledge|strong=\"G1108\"\\+w*. \\+w You|strong=\"G5210\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w yourselves|strong=\"G4771\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w entering|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w hindered|strong=\"G2967\"\\+w*.” *" + }, + { + "verseNum": 53, + "text": "As|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G2532\"* these|strong=\"G4012\"* things|strong=\"G3588\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, the|strong=\"G2532\"* scribes|strong=\"G1122\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* began to|strong=\"G2532\"* be|strong=\"G2532\"* terribly angry, and|strong=\"G2532\"* to|strong=\"G2532\"* draw many|strong=\"G4183\"* things|strong=\"G3588\"* out|strong=\"G1831\"* of|strong=\"G4012\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 54, + "text": "lying|strong=\"G1748\"* in|strong=\"G1537\"* wait|strong=\"G1748\"* for|strong=\"G1537\"* him|strong=\"G3588\"*, and|strong=\"G3588\"* seeking to|strong=\"G5100\"* catch|strong=\"G2340\"* him|strong=\"G3588\"* in|strong=\"G1537\"* something|strong=\"G5100\"* he|strong=\"G3588\"* might|strong=\"G5100\"* say|strong=\"G1537\"*, that|strong=\"G3588\"* they|strong=\"G3588\"* might|strong=\"G5100\"* accuse him|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Meanwhile|strong=\"G1510\"*, when|strong=\"G1722\"* a|strong=\"G1722\"* multitude|strong=\"G3793\"* of|strong=\"G1722\"* many|strong=\"G3461\"* thousands|strong=\"G3461\"* had|strong=\"G1510\"* gathered|strong=\"G1996\"* together|strong=\"G1996\"*, so|strong=\"G5620\"* much so|strong=\"G5620\"* that|strong=\"G3739\"* they|strong=\"G3588\"* trampled|strong=\"G2662\"* on|strong=\"G1722\"* each|strong=\"G1438\"* other|strong=\"G3739\"*, he|strong=\"G3739\"* began to|strong=\"G4314\"* tell|strong=\"G3004\"* his|strong=\"G1438\"* disciples|strong=\"G3101\"* first|strong=\"G4413\"* of|strong=\"G1722\"* all|strong=\"G1722\"*, “\\+w Beware|strong=\"G4337\"\\+w* \\+w of|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w yeast|strong=\"G2219\"\\+w* \\+w of|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w hypocrisy|strong=\"G5272\"\\+w*. *" + }, + { + "verseNum": 2, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w nothing|strong=\"G3762\"\\+w* \\+w covered|strong=\"G4780\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1510\"\\+w* revealed, \\+w nor|strong=\"G2532\"\\+w* \\+w hidden|strong=\"G2927\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w known|strong=\"G1097\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w Therefore|strong=\"G2532\"\\+w* \\+w whatever|strong=\"G3745\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w darkness|strong=\"G4653\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* heard \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w*. \\+w What|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w spoken|strong=\"G2980\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w ear|strong=\"G3775\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w inner|strong=\"G5009\"\\+w* \\+w rooms|strong=\"G5009\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w proclaimed|strong=\"G2784\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w housetops|strong=\"G1430\"\\+w*.*" + }, + { + "verseNum": 4, + "text": "“\\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w my|strong=\"G1473\"\\+w* \\+w friends|strong=\"G5384\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w afraid|strong=\"G5399\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* kill \\+w the|strong=\"G2532\"\\+w* \\+w body|strong=\"G4983\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w after|strong=\"G3326\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w more|strong=\"G2192\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w can|strong=\"G3004\"\\+w* \\+w do|strong=\"G4160\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w warn|strong=\"G5263\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w whom|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w fear|strong=\"G5399\"\\+w*. \\+w Fear|strong=\"G5399\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w after|strong=\"G3326\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w has|strong=\"G2192\"\\+w* killed, \\+w has|strong=\"G2192\"\\+w* \\+w power|strong=\"G1849\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w cast|strong=\"G1685\"\\+w* \\+w into|strong=\"G1519\"\\+w* Gehenna.*+ 12:5 or, Hell* \\+w Yes|strong=\"G3483\"\\+w*, \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w fear|strong=\"G5399\"\\+w* \\+w him|strong=\"G3588\"\\+w*.*" + }, + { + "verseNum": 6, + "text": "“Aren’\\+w t|strong=\"G3588\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w sparrows|strong=\"G4765\"\\+w* \\+w sold|strong=\"G4453\"\\+w* \\+w for|strong=\"G1520\"\\+w* \\+w two|strong=\"G1417\"\\+w* assaria coins*+ 12:6 An assarion was a small copper coin worth about an hour’s wages for an agricultural laborer.*? \\+w Not|strong=\"G3756\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w forgotten|strong=\"G1950\"\\+w* \\+w by|strong=\"G1537\"\\+w* \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w very|strong=\"G4183\"\\+w* \\+w hairs|strong=\"G2359\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w head|strong=\"G2776\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w all|strong=\"G3956\"\\+w* counted. \\+w Therefore|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w more|strong=\"G4183\"\\+w* value \\+w than|strong=\"G4183\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w sparrows|strong=\"G4765\"\\+w*.*" + }, + { + "verseNum": 8, + "text": "“\\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w confesses|strong=\"G3670\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w men|strong=\"G3956\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3956\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w confess|strong=\"G3670\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w the|strong=\"G1722\"\\+w* angels \\+w of|strong=\"G5207\"\\+w* \\+w God|strong=\"G2316\"\\+w*; *" + }, + { + "verseNum": 9, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* denies \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G2316\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w presence|strong=\"G1799\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w be|strong=\"G2316\"\\+w* denied \\+w in|strong=\"G2316\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w presence|strong=\"G1799\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s angels. *" + }, + { + "verseNum": 10, + "text": "\\+w Everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w speaks|strong=\"G3004\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w against|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3956\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* forgiven, \\+w but|strong=\"G1161\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* blaspheme \\+w against|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G2532\"\\+w* forgiven. *" + }, + { + "verseNum": 11, + "text": "\\+w When|strong=\"G3752\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w bring|strong=\"G1533\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w before|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w*, \\+w the|strong=\"G2532\"\\+w* rulers, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w authorities|strong=\"G1849\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w anxious|strong=\"G3309\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* answer \\+w or|strong=\"G2228\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w say|strong=\"G3004\"\\+w*; *" + }, + { + "verseNum": 12, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w teach|strong=\"G1321\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w same|strong=\"G3739\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w say|strong=\"G3004\"\\+w*.”*" + }, + { + "verseNum": 13, + "text": "One|strong=\"G5100\"* of|strong=\"G1537\"* the|strong=\"G1537\"* multitude|strong=\"G3793\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, tell|strong=\"G3004\"* my|strong=\"G1473\"* brother to|strong=\"G3004\"* divide|strong=\"G3307\"* the|strong=\"G1537\"* inheritance|strong=\"G2817\"* with|strong=\"G3326\"* me|strong=\"G1473\"*.”" + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G1909\"* him|strong=\"G3588\"*, “\\+w Man|strong=\"G5101\"\\+w*, \\+w who|strong=\"G5101\"\\+w* \\+w made|strong=\"G2525\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w a|strong=\"G1909\"\\+w* \\+w judge|strong=\"G2923\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w an|strong=\"G2228\"\\+w* \\+w arbitrator|strong=\"G3312\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w*?”*" + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w Beware|strong=\"G5442\"\\+w*! \\+w Keep|strong=\"G5442\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w covetousness|strong=\"G4124\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w man|strong=\"G5100\"\\+w*’s \\+w life|strong=\"G2222\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w consist|strong=\"G1510\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w abundance|strong=\"G4052\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w he|strong=\"G2532\"\\+w* possesses.”*" + }, + { + "verseNum": 16, + "text": "He|strong=\"G1161\"* spoke|strong=\"G3004\"* a|strong=\"G1161\"* parable|strong=\"G3850\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w The|strong=\"G1161\"\\+w* ground \\+w of|strong=\"G5100\"\\+w* \\+w a|strong=\"G1161\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w rich|strong=\"G4145\"\\+w* \\+w man|strong=\"G5100\"\\+w* produced abundantly. *" + }, + { + "verseNum": 17, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w reasoned|strong=\"G1260\"\\+w* \\+w within|strong=\"G1722\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w What|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* room \\+w to|strong=\"G2532\"\\+w* \\+w store|strong=\"G4863\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w crops|strong=\"G2590\"\\+w*?’ *" + }, + { + "verseNum": 18, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* pull \\+w down|strong=\"G2507\"\\+w* \\+w my|strong=\"G3956\"\\+w* barns, \\+w build|strong=\"G3618\"\\+w* bigger \\+w ones|strong=\"G3173\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w there|strong=\"G1563\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w store|strong=\"G4863\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w my|strong=\"G3956\"\\+w* grain \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G3956\"\\+w* goods. *" + }, + { + "verseNum": 19, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w soul|strong=\"G5590\"\\+w*, “\\+w Soul|strong=\"G5590\"\\+w*, \\+w you|strong=\"G3004\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w many|strong=\"G4183\"\\+w* goods \\+w laid|strong=\"G2749\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w years|strong=\"G2094\"\\+w*. \\+w Take|strong=\"G2532\"\\+w* \\+w your|strong=\"G2192\"\\+w* ease, \\+w eat|strong=\"G2068\"\\+w*, \\+w drink|strong=\"G4095\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w merry|strong=\"G2165\"\\+w*.”’*" + }, + { + "verseNum": 20, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w You|strong=\"G4771\"\\+w* foolish \\+w one|strong=\"G3739\"\\+w*, \\+w tonight|strong=\"G3571\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w soul|strong=\"G5590\"\\+w* \\+w is|strong=\"G1510\"\\+w* required \\+w of|strong=\"G2316\"\\+w* \\+w you|strong=\"G4771\"\\+w*. \\+w The|strong=\"G1161\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G1510\"\\+w* \\+w prepared|strong=\"G2090\"\\+w*—\\+w whose|strong=\"G3739\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w be|strong=\"G1510\"\\+w*?’ *" + }, + { + "verseNum": 21, + "text": "\\+w So|strong=\"G3779\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* lays \\+w up|strong=\"G2343\"\\+w* \\+w treasure|strong=\"G2343\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w rich|strong=\"G4147\"\\+w* \\+w toward|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* his|strong=\"G1223\"* disciples|strong=\"G3101\"*, “\\+w Therefore|strong=\"G1223\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w anxious|strong=\"G3309\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w life|strong=\"G5590\"\\+w*, \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w eat|strong=\"G2068\"\\+w*, \\+w nor|strong=\"G3366\"\\+w* \\+w yet|strong=\"G1161\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w body|strong=\"G4983\"\\+w*, \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* wear. *" + }, + { + "verseNum": 23, + "text": "\\+w Life|strong=\"G5590\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w food|strong=\"G5160\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w clothing|strong=\"G1742\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w Consider|strong=\"G2657\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w ravens|strong=\"G2876\"\\+w*: \\+w they|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w sow|strong=\"G4687\"\\+w*, \\+w they|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w reap|strong=\"G2325\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* warehouse \\+w or|strong=\"G2532\"\\+w* barn, \\+w and|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w feeds|strong=\"G5142\"\\+w* \\+w them|strong=\"G3588\"\\+w*. \\+w How|strong=\"G4214\"\\+w* \\+w much|strong=\"G4214\"\\+w* \\+w more|strong=\"G3123\"\\+w* \\+w valuable|strong=\"G1308\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w than|strong=\"G2532\"\\+w* \\+w birds|strong=\"G4071\"\\+w*! *" + }, + { + "verseNum": 25, + "text": "\\+w Which|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w by|strong=\"G1537\"\\+w* \\+w being|strong=\"G1161\"\\+w* \\+w anxious|strong=\"G3309\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w add|strong=\"G4369\"\\+w* \\+w a|strong=\"G1909\"\\+w* \\+w cubit|strong=\"G4083\"\\+w**+ 12:25 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* \\+w to|strong=\"G1909\"\\+w* \\+w his|strong=\"G1909\"\\+w* height? *" + }, + { + "verseNum": 26, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w then|strong=\"G3767\"\\+w* \\+w you|strong=\"G1487\"\\+w* aren’\\+w t|strong=\"G3588\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w to|strong=\"G1410\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w even|strong=\"G3761\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w least|strong=\"G1646\"\\+w* \\+w things|strong=\"G3588\"\\+w*, \\+w why|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w anxious|strong=\"G3309\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w rest|strong=\"G3062\"\\+w*? *" + }, + { + "verseNum": 27, + "text": "\\+w Consider|strong=\"G2657\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w lilies|strong=\"G2918\"\\+w*, \\+w how|strong=\"G4459\"\\+w* \\+w they|strong=\"G1161\"\\+w* grow. \\+w They|strong=\"G1161\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w toil|strong=\"G2872\"\\+w*, \\+w neither|strong=\"G3777\"\\+w* \\+w do|strong=\"G3004\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w spin|strong=\"G3514\"\\+w*; \\+w yet|strong=\"G1161\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w even|strong=\"G3761\"\\+w* \\+w Solomon|strong=\"G4672\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w not|strong=\"G3761\"\\+w* \\+w arrayed|strong=\"G4016\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1391\"\\+w* \\+w these|strong=\"G3778\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w how|strong=\"G4214\"\\+w* \\+w God|strong=\"G2316\"\\+w* clothes \\+w the|strong=\"G1722\"\\+w* \\+w grass|strong=\"G5528\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* field, \\+w which|strong=\"G3588\"\\+w* \\+w today|strong=\"G4594\"\\+w* exists \\+w and|strong=\"G2532\"\\+w* tomorrow \\+w is|strong=\"G1510\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* oven, \\+w how|strong=\"G4214\"\\+w* \\+w much|strong=\"G4214\"\\+w* \\+w more|strong=\"G3123\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w he|strong=\"G2532\"\\+w* clothe \\+w you|strong=\"G5210\"\\+w*, O \\+w you|strong=\"G5210\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w little|strong=\"G3640\"\\+w* \\+w faith|strong=\"G3640\"\\+w*? *" + }, + { + "verseNum": 29, + "text": "“Don’t \\+w seek|strong=\"G2212\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w or|strong=\"G2532\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w drink|strong=\"G4095\"\\+w*; \\+w neither|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* anxious. *" + }, + { + "verseNum": 30, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w nations|strong=\"G1484\"\\+w* \\+w of|strong=\"G3962\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w seek|strong=\"G1934\"\\+w* \\+w after|strong=\"G1161\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G3962\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w your|strong=\"G3956\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w knows|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w need|strong=\"G5535\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w God|strong=\"G2532\"\\+w*’s Kingdom, \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G2532\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w added|strong=\"G4369\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*.*" + }, + { + "verseNum": 32, + "text": "“Don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*, \\+w little|strong=\"G3398\"\\+w* \\+w flock|strong=\"G4168\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w your|strong=\"G1325\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s \\+w good|strong=\"G2106\"\\+w* \\+w pleasure|strong=\"G2106\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w the|strong=\"G3588\"\\+w* Kingdom. *" + }, + { + "verseNum": 33, + "text": "\\+w Sell|strong=\"G4453\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w gifts|strong=\"G1654\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* needy. \\+w Make|strong=\"G4160\"\\+w* \\+w for|strong=\"G1722\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w* purses \\+w which|strong=\"G3588\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* grow \\+w old|strong=\"G3822\"\\+w*, \\+w a|strong=\"G2532\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w heavens|strong=\"G3772\"\\+w* \\+w that|strong=\"G3588\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w fail|strong=\"G3756\"\\+w*, \\+w where|strong=\"G3699\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w thief|strong=\"G2812\"\\+w* approaches \\+w and|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w moth|strong=\"G4597\"\\+w* \\+w destroys|strong=\"G1311\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w is|strong=\"G1510\"\\+w*, \\+w there|strong=\"G1563\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w also|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "“\\+w Let|strong=\"G1510\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w waist|strong=\"G3751\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w dressed|strong=\"G4024\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w lamps|strong=\"G3088\"\\+w* \\+w burning|strong=\"G2545\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w Be|strong=\"G2532\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w men|strong=\"G3588\"\\+w* watching \\+w for|strong=\"G2532\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* returns \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wedding|strong=\"G1062\"\\+w* \\+w feast|strong=\"G1062\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w knocks|strong=\"G2925\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* open \\+w to|strong=\"G2443\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w watching|strong=\"G1127\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w comes|strong=\"G2064\"\\+w*. Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* dress \\+w himself|strong=\"G1565\"\\+w*, \\+w make|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* recline, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w serve|strong=\"G1247\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 38, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w blessed|strong=\"G3107\"\\+w* \\+w if|strong=\"G2579\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w second|strong=\"G1208\"\\+w* \\+w or|strong=\"G2532\"\\+w* \\+w third|strong=\"G5154\"\\+w* \\+w watch|strong=\"G5438\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w finds|strong=\"G2147\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w so|strong=\"G3779\"\\+w*. *" + }, + { + "verseNum": 39, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w the|strong=\"G1161\"\\+w* master \\+w of|strong=\"G3624\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w had|strong=\"G3588\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w in|strong=\"G3756\"\\+w* \\+w what|strong=\"G4169\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w thief|strong=\"G2812\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w*, \\+w he|strong=\"G1161\"\\+w* \\+w would|strong=\"G2064\"\\+w* \\+w have|strong=\"G3588\"\\+w* watched \\+w and|strong=\"G1161\"\\+w* \\+w not|strong=\"G3756\"\\+w* allowed \\+w his|strong=\"G3754\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w to|strong=\"G2064\"\\+w* \\+w be|strong=\"G3756\"\\+w* \\+w broken|strong=\"G1358\"\\+w* \\+w into|strong=\"G2064\"\\+w*. *" + }, + { + "verseNum": 40, + "text": "\\+w Therefore|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w ready|strong=\"G2092\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3739\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w expect|strong=\"G1380\"\\+w* \\+w him|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 41, + "text": "Peter|strong=\"G4074\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, are|strong=\"G3588\"* you|strong=\"G3004\"* telling|strong=\"G3004\"* this|strong=\"G3778\"* parable|strong=\"G3850\"* to|strong=\"G4314\"* us|strong=\"G3004\"*, or|strong=\"G2228\"* to|strong=\"G4314\"* everybody?”" + }, + { + "verseNum": 42, + "text": "The|strong=\"G1722\"* Lord|strong=\"G2962\"* said|strong=\"G3004\"*, “\\+w Who|strong=\"G3739\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w wise|strong=\"G5429\"\\+w* \\+w steward|strong=\"G3623\"\\+w*, \\+w whom|strong=\"G3739\"\\+w* \\+w his|strong=\"G1909\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w set|strong=\"G2525\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w his|strong=\"G1909\"\\+w* \\+w household|strong=\"G2322\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w their|strong=\"G2532\"\\+w* portion \\+w of|strong=\"G2532\"\\+w* food \\+w at|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w right|strong=\"G2540\"\\+w* \\+w times|strong=\"G2540\"\\+w*? *" + }, + { + "verseNum": 43, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w his|strong=\"G4160\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w doing|strong=\"G4160\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w when|strong=\"G2064\"\\+w* \\+w he|strong=\"G3739\"\\+w* \\+w comes|strong=\"G2064\"\\+w*. *" + }, + { + "verseNum": 44, + "text": "\\+w Truly|strong=\"G1909\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G3754\"\\+w* \\+w will|strong=\"G3956\"\\+w* \\+w set|strong=\"G2525\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G3754\"\\+w* has. *" + }, + { + "verseNum": 45, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, ‘\\+w My|strong=\"G1722\"\\+w* \\+w lord|strong=\"G2962\"\\+w* delays \\+w his|strong=\"G1722\"\\+w* \\+w coming|strong=\"G2064\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* begins \\+w to|strong=\"G2532\"\\+w* \\+w beat|strong=\"G5180\"\\+w* \\+w the|strong=\"G1722\"\\+w* menservants \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* maidservants, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w drunken|strong=\"G4095\"\\+w*, *" + }, + { + "verseNum": 46, + "text": "\\+w then|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2240\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* \\+w expecting|strong=\"G4328\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1097\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w cut|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* two, \\+w and|strong=\"G2532\"\\+w* \\+w place|strong=\"G3313\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w portion|strong=\"G3313\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w the|strong=\"G1722\"\\+w* unfaithful. *" + }, + { + "verseNum": 47, + "text": "\\+w That|strong=\"G3588\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w knew|strong=\"G1097\"\\+w* \\+w his|strong=\"G4160\"\\+w* \\+w lord|strong=\"G2962\"\\+w*’\\+w s|strong=\"G2962\"\\+w* \\+w will|strong=\"G2307\"\\+w*, \\+w and|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w prepare|strong=\"G2090\"\\+w* \\+w nor|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w he|strong=\"G2532\"\\+w* wanted, \\+w will|strong=\"G2307\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w beaten|strong=\"G1194\"\\+w* \\+w with|strong=\"G4314\"\\+w* \\+w many|strong=\"G4183\"\\+w* stripes, *" + }, + { + "verseNum": 48, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1097\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w things|strong=\"G3956\"\\+w* worthy \\+w of|strong=\"G2532\"\\+w* \\+w stripes|strong=\"G4127\"\\+w*, \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w beaten|strong=\"G1194\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w few|strong=\"G3641\"\\+w* \\+w stripes|strong=\"G4127\"\\+w*. \\+w To|strong=\"G2532\"\\+w* \\+w whomever|strong=\"G3739\"\\+w* \\+w much|strong=\"G4183\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w given|strong=\"G1325\"\\+w*, \\+w of|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w much|strong=\"G4183\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w required|strong=\"G2212\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w much|strong=\"G4183\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w entrusted|strong=\"G3908\"\\+w*, \\+w of|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w more|strong=\"G4183\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* asked. *" + }, + { + "verseNum": 49, + "text": "“\\+w I|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G2532\"\\+w* throw \\+w fire|strong=\"G4442\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w*. \\+w I|strong=\"G2532\"\\+w* \\+w wish|strong=\"G2309\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w already|strong=\"G2235\"\\+w* kindled. *" + }, + { + "verseNum": 50, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* baptism \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* baptized \\+w with|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w distressed|strong=\"G4912\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G2532\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3748\"\\+w* \\+w accomplished|strong=\"G5055\"\\+w*! *" + }, + { + "verseNum": 51, + "text": "\\+w Do|strong=\"G1380\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w think|strong=\"G1380\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w have|strong=\"G5210\"\\+w* \\+w come|strong=\"G3854\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w peace|strong=\"G1515\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w*? \\+w I|strong=\"G3754\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w no|strong=\"G3780\"\\+w*, \\+w but|strong=\"G3588\"\\+w* \\+w rather|strong=\"G2228\"\\+w* \\+w division|strong=\"G1267\"\\+w*. *" + }, + { + "verseNum": 52, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w now|strong=\"G3568\"\\+w* \\+w on|strong=\"G1909\"\\+w*, \\+w there|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w divided|strong=\"G1266\"\\+w*, \\+w three|strong=\"G5140\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w two|strong=\"G1417\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w three|strong=\"G5140\"\\+w*. *" + }, + { + "verseNum": 53, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w divided|strong=\"G1266\"\\+w*, \\+w father|strong=\"G3962\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w son|strong=\"G5207\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w father|strong=\"G3962\"\\+w*; \\+w mother|strong=\"G3384\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w daughter|strong=\"G2364\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w daughter|strong=\"G2364\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w her|strong=\"G3588\"\\+w* \\+w mother|strong=\"G3384\"\\+w*; \\+w mother-in-law|strong=\"G3994\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w her|strong=\"G3588\"\\+w* \\+w daughter-in-law|strong=\"G3565\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w daughter-in-law|strong=\"G3565\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w her|strong=\"G3588\"\\+w* \\+w mother-in-law|strong=\"G3994\"\\+w*.” *+ 12:53 Micah 7:6*" + }, + { + "verseNum": 54, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* also|strong=\"G2532\"*, “\\+w When|strong=\"G3752\"\\+w* \\+w you|strong=\"G3752\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w cloud|strong=\"G3507\"\\+w* \\+w rising|strong=\"G2532\"\\+w* \\+w from|strong=\"G2064\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w west|strong=\"G1424\"\\+w*, \\+w immediately|strong=\"G2112\"\\+w* \\+w you|strong=\"G3752\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w A|strong=\"G1096\"\\+w* \\+w shower|strong=\"G3655\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w happens|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 55, + "text": "\\+w When|strong=\"G3752\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w south|strong=\"G3558\"\\+w* \\+w wind|strong=\"G3558\"\\+w* \\+w blows|strong=\"G4154\"\\+w*, \\+w you|strong=\"G3752\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w There|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w scorching|strong=\"G2742\"\\+w* \\+w heat|strong=\"G2742\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w happens|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 56, + "text": "\\+w You|strong=\"G4459\"\\+w* \\+w hypocrites|strong=\"G5273\"\\+w*! \\+w You|strong=\"G4459\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w to|strong=\"G2532\"\\+w* interpret \\+w the|strong=\"G2532\"\\+w* \\+w appearance|strong=\"G4383\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w you|strong=\"G4459\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* interpret \\+w this|strong=\"G3778\"\\+w* \\+w time|strong=\"G2540\"\\+w*? *" + }, + { + "verseNum": 57, + "text": "“\\+w Why|strong=\"G5101\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G1438\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w right|strong=\"G1342\"\\+w*? *" + }, + { + "verseNum": 58, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w when|strong=\"G5613\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w going|strong=\"G5217\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w your|strong=\"G2532\"\\+w* adversary \\+w before|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* magistrate, try diligently \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w way|strong=\"G3598\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G2532\"\\+w* released \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w lest|strong=\"G3379\"\\+w* \\+w perhaps|strong=\"G3379\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w drag|strong=\"G2694\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w judge|strong=\"G2923\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w judge|strong=\"G2923\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w officer|strong=\"G4233\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w officer|strong=\"G4233\"\\+w* throw \\+w you|strong=\"G4771\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w prison|strong=\"G5438\"\\+w*. *" + }, + { + "verseNum": 59, + "text": "\\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w by|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w means|strong=\"G3004\"\\+w* \\+w get|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* paid \\+w the|strong=\"G2532\"\\+w* \\+w very|strong=\"G2532\"\\+w* \\+w last|strong=\"G2078\"\\+w* penny.*+ 12:59 literally, lepton. A lepton is a very small brass Jewish coin worth half a Roman quadrans each, which is worth a quarter of the copper assarion. Lepta are worth less than 1% of an agricultural worker’s daily wages.*”*" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* there|strong=\"G1161\"* were|strong=\"G3588\"* some|strong=\"G5100\"* present|strong=\"G3918\"* at|strong=\"G1722\"* the|strong=\"G1722\"* same|strong=\"G3739\"* time|strong=\"G2540\"* who|strong=\"G3739\"* told him|strong=\"G3588\"* about|strong=\"G4012\"* the|strong=\"G1722\"* Galileans|strong=\"G1057\"* whose|strong=\"G3739\"* blood Pilate|strong=\"G4091\"* had|strong=\"G3739\"* mixed|strong=\"G3396\"* with|strong=\"G3326\"* their|strong=\"G1722\"* sacrifices|strong=\"G2378\"*." + }, + { + "verseNum": 2, + "text": "Jesus|strong=\"G3004\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Do|strong=\"G1096\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w think|strong=\"G1380\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w Galileans|strong=\"G1057\"\\+w* \\+w were|strong=\"G3588\"\\+w* worse sinners \\+w than|strong=\"G3844\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G3588\"\\+w* \\+w Galileans|strong=\"G1057\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w suffered|strong=\"G3958\"\\+w* \\+w such|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w*? *" + }, + { + "verseNum": 3, + "text": "\\+w I|strong=\"G1437\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w no|strong=\"G3361\"\\+w*, \\+w but|strong=\"G3361\"\\+w* \\+w unless|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w repent|strong=\"G3340\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G3956\"\\+w* \\+w all|strong=\"G3956\"\\+w* perish \\+w in|strong=\"G3956\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w same|strong=\"G3668\"\\+w* \\+w way|strong=\"G3668\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w Or|strong=\"G2228\"\\+w* \\+w those|strong=\"G3588\"\\+w* eighteen \\+w on|strong=\"G1909\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w tower|strong=\"G4444\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Siloam|strong=\"G4611\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w and|strong=\"G2532\"\\+w* killed \\+w them|strong=\"G3588\"\\+w*—\\+w do|strong=\"G1096\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w think|strong=\"G1380\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w were|strong=\"G3588\"\\+w* worse offenders \\+w than|strong=\"G2228\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w men|strong=\"G3956\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w dwell|strong=\"G2730\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w*? *" + }, + { + "verseNum": 5, + "text": "\\+w I|strong=\"G1437\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w no|strong=\"G3361\"\\+w*, \\+w but|strong=\"G3361\"\\+w*, \\+w unless|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w repent|strong=\"G3340\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G3956\"\\+w* \\+w all|strong=\"G3956\"\\+w* perish \\+w in|strong=\"G3956\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w same|strong=\"G5615\"\\+w* \\+w way|strong=\"G5615\"\\+w*.”*" + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* spoke|strong=\"G3004\"* this|strong=\"G3778\"* parable|strong=\"G3850\"*. “\\+w A|strong=\"G2192\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w fig|strong=\"G4808\"\\+w* \\+w tree|strong=\"G4808\"\\+w* \\+w planted|strong=\"G5452\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* vineyard, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w seeking|strong=\"G2212\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w none|strong=\"G3756\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w vine|strong=\"G1093\"\\+w* dresser, ‘\\+w Behold|strong=\"G2400\"\\+w*, \\+w these|strong=\"G3778\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w years|strong=\"G2094\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w looking|strong=\"G2212\"\\+w* \\+w for|strong=\"G4314\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w fig|strong=\"G4808\"\\+w* \\+w tree|strong=\"G4808\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w none|strong=\"G3756\"\\+w*. \\+w Cut|strong=\"G1581\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w down|strong=\"G1581\"\\+w*! \\+w Why|strong=\"G2444\"\\+w* \\+w does|strong=\"G2064\"\\+w* \\+w it|strong=\"G2532\"\\+w* waste \\+w the|strong=\"G1722\"\\+w* \\+w soil|strong=\"G1093\"\\+w*?’ *" + }, + { + "verseNum": 8, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w answered|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, leave \\+w it|strong=\"G2532\"\\+w* \\+w alone|strong=\"G1438\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w year|strong=\"G2094\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w until|strong=\"G2193\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w dig|strong=\"G4626\"\\+w* \\+w around|strong=\"G4012\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* fertilize \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w bears|strong=\"G4160\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*, fine; \\+w but|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w not|strong=\"G3361\"\\+w*, \\+w after|strong=\"G1161\"\\+w* \\+w that|strong=\"G3588\"\\+w*, \\+w you|strong=\"G1487\"\\+w* \\+w can|strong=\"G4160\"\\+w* \\+w cut|strong=\"G1581\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w down|strong=\"G1581\"\\+w*.’”*" + }, + { + "verseNum": 10, + "text": "He|strong=\"G1161\"* was|strong=\"G1510\"* teaching|strong=\"G1321\"* in|strong=\"G1722\"* one|strong=\"G1520\"* of|strong=\"G1520\"* the|strong=\"G1722\"* synagogues|strong=\"G4864\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"*." + }, + { + "verseNum": 11, + "text": "Behold|strong=\"G2400\"*, there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2192\"* woman|strong=\"G1135\"* who|strong=\"G3588\"* had|strong=\"G2192\"* a|strong=\"G2192\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* infirmity eighteen years|strong=\"G2094\"*. She|strong=\"G2532\"* was|strong=\"G1510\"* bent|strong=\"G4794\"* over|strong=\"G1519\"* and|strong=\"G2532\"* could|strong=\"G1410\"* in|strong=\"G1519\"* no|strong=\"G3361\"* way straighten herself up|strong=\"G1519\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"G1161\"* Jesus|strong=\"G2424\"* saw|strong=\"G3708\"* her|strong=\"G1438\"*, he|strong=\"G2532\"* called|strong=\"G3004\"* her|strong=\"G1438\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* her|strong=\"G1438\"*, “\\+w Woman|strong=\"G1135\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G3588\"\\+w* freed \\+w from|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* infirmity.”*" + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* laid|strong=\"G2007\"* his|strong=\"G2007\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* her|strong=\"G3588\"*, and|strong=\"G2532\"* immediately|strong=\"G3916\"* she|strong=\"G2532\"* stood|strong=\"G3588\"* up|strong=\"G2532\"* straight and|strong=\"G2532\"* glorified|strong=\"G1392\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"G1722\"* ruler of|strong=\"G2250\"* the|strong=\"G1722\"* synagogue, being|strong=\"G1510\"* indignant because|strong=\"G3754\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* healed|strong=\"G2323\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"*, said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G1722\"* multitude|strong=\"G3793\"*, “There|strong=\"G2532\"* are|strong=\"G1510\"* six|strong=\"G1803\"* days|strong=\"G2250\"* in|strong=\"G1722\"* which|strong=\"G3739\"* men|strong=\"G3588\"* ought|strong=\"G1163\"* to|strong=\"G2532\"* work|strong=\"G2038\"*. Therefore|strong=\"G3767\"* come|strong=\"G2064\"* on|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"* and|strong=\"G2532\"* be|strong=\"G1510\"* healed|strong=\"G2323\"*, and|strong=\"G2532\"* not|strong=\"G3361\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"* day|strong=\"G2250\"*!”" + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"G1161\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w You|strong=\"G5210\"\\+w* \\+w hypocrites|strong=\"G5273\"\\+w*! Doesn’\\+w t|strong=\"G3588\"\\+w* \\+w each|strong=\"G1538\"\\+w* \\+w one|strong=\"G1538\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w free|strong=\"G3089\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w ox|strong=\"G1016\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w donkey|strong=\"G3688\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w stall|strong=\"G5336\"\\+w* \\+w on|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w lead|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* away \\+w to|strong=\"G2532\"\\+w* \\+w water|strong=\"G4222\"\\+w*? *" + }, + { + "verseNum": 16, + "text": "\\+w Ought|strong=\"G1163\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w woman|strong=\"G3778\"\\+w*, \\+w being|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w daughter|strong=\"G2364\"\\+w* \\+w of|strong=\"G2250\"\\+w* Abraham \\+w whom|strong=\"G3739\"\\+w* \\+w Satan|strong=\"G4567\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w bound|strong=\"G1210\"\\+w* \\+w eighteen|strong=\"G1176\"\\+w* \\+w long|strong=\"G2250\"\\+w* \\+w years|strong=\"G2094\"\\+w*, \\+w be|strong=\"G1510\"\\+w* freed \\+w from|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* bondage \\+w on|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w day|strong=\"G2250\"\\+w*?” *" + }, + { + "verseNum": 17, + "text": "As|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3956\"*, all|strong=\"G3956\"* his|strong=\"G3956\"* adversaries were|strong=\"G3588\"* disappointed|strong=\"G2617\"*; and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* rejoiced|strong=\"G5463\"* for|strong=\"G1909\"* all|strong=\"G3956\"* the|strong=\"G2532\"* glorious|strong=\"G1741\"* things|strong=\"G3956\"* that|strong=\"G3588\"* were|strong=\"G3588\"* done|strong=\"G1096\"* by|strong=\"G5259\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w like|strong=\"G3664\"\\+w*? \\+w To|strong=\"G2532\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w compare|strong=\"G3666\"\\+w* \\+w it|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 19, + "text": "\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w grain|strong=\"G2848\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w mustard|strong=\"G4615\"\\+w* \\+w seed|strong=\"G2848\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w man|strong=\"G3739\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w put|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w garden|strong=\"G2779\"\\+w*. \\+w It|strong=\"G2532\"\\+w* grew \\+w and|strong=\"G2532\"\\+w* \\+w became|strong=\"G1096\"\\+w* \\+w a|strong=\"G1096\"\\+w* large \\+w tree|strong=\"G1186\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w birds|strong=\"G4071\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w live|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* its \\+w branches|strong=\"G2798\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "Again|strong=\"G3825\"* he|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w To|strong=\"G2532\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w compare|strong=\"G3666\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom? *" + }, + { + "verseNum": 21, + "text": "\\+w It|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w yeast|strong=\"G2219\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w woman|strong=\"G1135\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w and|strong=\"G1135\"\\+w* \\+w hid|strong=\"G2928\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w measures|strong=\"G4568\"\\+w* *+ 13:21 literally, three sata. 3 sata is about 39 liters or a bit more than a bushel.* \\+w of|strong=\"G1519\"\\+w* flour, \\+w until|strong=\"G2193\"\\+w* \\+w it|strong=\"G3739\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w all|strong=\"G3650\"\\+w* \\+w leavened|strong=\"G2220\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "He|strong=\"G2532\"* went|strong=\"G2532\"* on|strong=\"G1519\"* his|strong=\"G1519\"* way|strong=\"G2596\"* through|strong=\"G2596\"* cities|strong=\"G4172\"* and|strong=\"G2532\"* villages|strong=\"G2968\"*, teaching|strong=\"G1321\"*, and|strong=\"G2532\"* traveling on|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 23, + "text": "One|strong=\"G5100\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, are|strong=\"G3588\"* they|strong=\"G1161\"* few|strong=\"G3641\"* who|strong=\"G3588\"* are|strong=\"G3588\"* saved|strong=\"G4982\"*?”" + }, + { + "verseNum": 24, + "text": "“Strive \\+w to|strong=\"G2532\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w narrow|strong=\"G4728\"\\+w* \\+w door|strong=\"G2374\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w many|strong=\"G4183\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w will|strong=\"G2532\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w able|strong=\"G2480\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w When|strong=\"G2532\"\\+w* \\+w once|strong=\"G3617\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w master|strong=\"G2962\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w house|strong=\"G3617\"\\+w* \\+w has|strong=\"G2962\"\\+w* \\+w risen|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w has|strong=\"G2962\"\\+w* \\+w shut|strong=\"G1473\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w door|strong=\"G2374\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* begin \\+w to|strong=\"G2532\"\\+w* \\+w stand|strong=\"G2476\"\\+w* \\+w outside|strong=\"G1854\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w knock|strong=\"G2925\"\\+w* \\+w at|strong=\"G3756\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w door|strong=\"G2374\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w Lord|strong=\"G2962\"\\+w*, open \\+w to|strong=\"G2532\"\\+w* \\+w us|strong=\"G3004\"\\+w*!’ \\+w then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* answer \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w or|strong=\"G2532\"\\+w* \\+w where|strong=\"G4159\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w come|strong=\"G1510\"\\+w* \\+w from|strong=\"G2532\"\\+w*.’ *" + }, + { + "verseNum": 26, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* begin \\+w to|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w We|strong=\"G2249\"\\+w* \\+w ate|strong=\"G2068\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drank|strong=\"G4095\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w presence|strong=\"G1799\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w taught|strong=\"G1321\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w our|strong=\"G2532\"\\+w* \\+w streets|strong=\"G4116\"\\+w*.’ *" + }, + { + "verseNum": 27, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G1473\"\\+w* don’t \\+w know|strong=\"G1492\"\\+w* \\+w where|strong=\"G4159\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w come|strong=\"G1510\"\\+w* \\+w from|strong=\"G2532\"\\+w*. Depart \\+w from|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w all|strong=\"G3956\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w workers|strong=\"G2040\"\\+w* \\+w of|strong=\"G2532\"\\+w* iniquity.’ *" + }, + { + "verseNum": 28, + "text": "\\+w There|strong=\"G1563\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w weeping|strong=\"G2805\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gnashing|strong=\"G1030\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w teeth|strong=\"G3599\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w see|strong=\"G3708\"\\+w* Abraham, \\+w Isaac|strong=\"G2464\"\\+w*, \\+w Jacob|strong=\"G2384\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom, \\+w and|strong=\"G2532\"\\+w* \\+w yourselves|strong=\"G4771\"\\+w* \\+w being|strong=\"G1510\"\\+w* \\+w thrown|strong=\"G1544\"\\+w* \\+w outside|strong=\"G1854\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w come|strong=\"G2240\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* east, \\+w west|strong=\"G1424\"\\+w*, \\+w north|strong=\"G1005\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w south|strong=\"G3558\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* sit down \\+w in|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom. *" + }, + { + "verseNum": 30, + "text": "\\+w Behold|strong=\"G2400\"\\+w*, \\+w there|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w some|strong=\"G3739\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w first|strong=\"G4413\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w some|strong=\"G3739\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w last|strong=\"G2078\"\\+w*.”*" + }, + { + "verseNum": 31, + "text": "On|strong=\"G1722\"* that|strong=\"G3754\"* same|strong=\"G2532\"* day|strong=\"G5610\"*, some|strong=\"G5100\"* Pharisees|strong=\"G5330\"* came|strong=\"G4334\"*, saying|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Get|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G2532\"* here|strong=\"G1782\"* and|strong=\"G2532\"* go|strong=\"G4198\"* away|strong=\"G1831\"*, for|strong=\"G3754\"* Herod|strong=\"G2264\"* wants|strong=\"G2309\"* to|strong=\"G2532\"* kill you|strong=\"G4771\"*.”" + }, + { + "verseNum": 32, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Go|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w that|strong=\"G3588\"\\+w* fox, ‘\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w demons|strong=\"G1140\"\\+w* \\+w and|strong=\"G2532\"\\+w* perform \\+w cures|strong=\"G2392\"\\+w* \\+w today|strong=\"G4594\"\\+w* \\+w and|strong=\"G2532\"\\+w* tomorrow, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w third|strong=\"G5154\"\\+w* \\+w day|strong=\"G4594\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w complete|strong=\"G5048\"\\+w* \\+w my|strong=\"G3708\"\\+w* mission. *" + }, + { + "verseNum": 33, + "text": "\\+w Nevertheless|strong=\"G4133\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w on|strong=\"G4198\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w way|strong=\"G4198\"\\+w* \\+w today|strong=\"G4594\"\\+w* \\+w and|strong=\"G2532\"\\+w* tomorrow \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w next|strong=\"G2192\"\\+w* \\+w day|strong=\"G4594\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w it|strong=\"G2532\"\\+w* can’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w prophet|strong=\"G4396\"\\+w* \\+w would|strong=\"G2532\"\\+w* perish \\+w outside|strong=\"G1854\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w*.’*" + }, + { + "verseNum": 34, + "text": "“\\+w Jerusalem|strong=\"G2419\"\\+w*, \\+w Jerusalem|strong=\"G2419\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w who|strong=\"G3739\"\\+w* kills \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w stones|strong=\"G3036\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w her|strong=\"G1438\"\\+w*! \\+w How|strong=\"G4212\"\\+w* \\+w often|strong=\"G4212\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w wanted|strong=\"G2309\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w gather|strong=\"G1996\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w children|strong=\"G5043\"\\+w* \\+w together|strong=\"G1996\"\\+w*, \\+w like|strong=\"G2309\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w hen|strong=\"G3733\"\\+w* \\+w gathers|strong=\"G1996\"\\+w* \\+w her|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w brood|strong=\"G3555\"\\+w* \\+w under|strong=\"G5259\"\\+w* \\+w her|strong=\"G1438\"\\+w* \\+w wings|strong=\"G4420\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w refused|strong=\"G3756\"\\+w*! *" + }, + { + "verseNum": 35, + "text": "\\+w Behold|strong=\"G2400\"\\+w*, \\+w your|strong=\"G2962\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w is|strong=\"G3588\"\\+w* left \\+w to|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* desolate. \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2962\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Blessed|strong=\"G2127\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w of|strong=\"G3686\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Lord|strong=\"G2962\"\\+w*!’” *+ 13:35 Psalms 118:26*" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* went|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G1722\"* house|strong=\"G3624\"* of|strong=\"G2532\"* one|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G1722\"* rulers of|strong=\"G2532\"* the|strong=\"G1722\"* Pharisees|strong=\"G5330\"* on|strong=\"G1722\"* a|strong=\"G1096\"* Sabbath|strong=\"G4521\"* to|strong=\"G1519\"* eat|strong=\"G2068\"* bread, they|strong=\"G2532\"* were|strong=\"G1510\"* watching|strong=\"G3906\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G2532\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* who|strong=\"G2532\"* had|strong=\"G2532\"* dropsy|strong=\"G5203\"* was|strong=\"G1510\"* in|strong=\"G2532\"* front|strong=\"G1715\"* of|strong=\"G2532\"* him|strong=\"G3708\"*." + }, + { + "verseNum": 3, + "text": "Jesus|strong=\"G2424\"*, answering, spoke|strong=\"G3004\"* to|strong=\"G4314\"* the|strong=\"G2532\"* lawyers|strong=\"G3544\"* and|strong=\"G2532\"* Pharisees|strong=\"G5330\"*, saying|strong=\"G3004\"*, “\\+w Is|strong=\"G3588\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w lawful|strong=\"G1832\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w heal|strong=\"G2323\"\\+w* \\+w on|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w*?”*" + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G2532\"* silent|strong=\"G2270\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Which|strong=\"G3588\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w if|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w**+ 14:5 TR reads “donkey” instead of “son”* \\+w or|strong=\"G2228\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w ox|strong=\"G1016\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w well|strong=\"G2532\"\\+w*, wouldn’\\+w t|strong=\"G3588\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* pull \\+w him|strong=\"G3588\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w day|strong=\"G2250\"\\+w*?”*" + }, + { + "verseNum": 6, + "text": "They|strong=\"G2532\"* couldn’t answer him|strong=\"G2532\"* regarding these|strong=\"G3778\"* things|strong=\"G3778\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"G1161\"* spoke|strong=\"G3004\"* a|strong=\"G1161\"* parable|strong=\"G3850\"* to|strong=\"G4314\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* invited|strong=\"G2564\"*, when|strong=\"G1161\"* he|strong=\"G1161\"* noticed|strong=\"G1907\"* how|strong=\"G4459\"* they|strong=\"G1161\"* chose|strong=\"G1586\"* the|strong=\"G1161\"* best seats, and|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 8, + "text": "“\\+w When|strong=\"G3752\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w invited|strong=\"G2564\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w wedding|strong=\"G1062\"\\+w* \\+w feast|strong=\"G1062\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w sit|strong=\"G2625\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* best seat, \\+w since|strong=\"G3379\"\\+w* \\+w perhaps|strong=\"G3379\"\\+w* \\+w someone|strong=\"G5100\"\\+w* \\+w more|strong=\"G1784\"\\+w* honorable \\+w than|strong=\"G3361\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w might|strong=\"G2564\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w invited|strong=\"G2564\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w him|strong=\"G3588\"\\+w*, *" + }, + { + "verseNum": 9, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w invited|strong=\"G2564\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, ‘\\+w Make|strong=\"G2532\"\\+w* \\+w room|strong=\"G5117\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w person|strong=\"G3778\"\\+w*.’ \\+w Then|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w would|strong=\"G2532\"\\+w* begin, \\+w with|strong=\"G3326\"\\+w* shame, \\+w to|strong=\"G2532\"\\+w* \\+w take|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* lowest \\+w place|strong=\"G5117\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w But|strong=\"G3588\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w invited|strong=\"G2564\"\\+w*, \\+w go|strong=\"G4198\"\\+w* \\+w and|strong=\"G2064\"\\+w* \\+w sit|strong=\"G3956\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* lowest \\+w place|strong=\"G5117\"\\+w*, \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w invited|strong=\"G2564\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w comes|strong=\"G2064\"\\+w*, \\+w he|strong=\"G3588\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, ‘\\+w Friend|strong=\"G5384\"\\+w*, \\+w move|strong=\"G4320\"\\+w* \\+w up|strong=\"G1519\"\\+w* higher.’ \\+w Then|strong=\"G5119\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w honored|strong=\"G1391\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w presence|strong=\"G1799\"\\+w* \\+w of|strong=\"G1391\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sit|strong=\"G3956\"\\+w* \\+w at|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w table|strong=\"G4873\"\\+w* \\+w with|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w For|strong=\"G3754\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w exalts|strong=\"G5312\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w humbled|strong=\"G5013\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w whoever|strong=\"G3748\"\\+w* \\+w humbles|strong=\"G5013\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w exalted|strong=\"G5312\"\\+w*.”*" + }, + { + "verseNum": 12, + "text": "He|strong=\"G2532\"* also|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* one|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2532\"* invited|strong=\"G2564\"* him|strong=\"G3588\"*, “\\+w When|strong=\"G3752\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w dinner|strong=\"G1173\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w supper|strong=\"G1173\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w call|strong=\"G2564\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w friends|strong=\"G5384\"\\+w*, \\+w nor|strong=\"G3366\"\\+w* \\+w your|strong=\"G2532\"\\+w* brothers, \\+w nor|strong=\"G3366\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w kinsmen|strong=\"G4773\"\\+w*, \\+w nor|strong=\"G3366\"\\+w* \\+w rich|strong=\"G4145\"\\+w* \\+w neighbors|strong=\"G1069\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w perhaps|strong=\"G3379\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w might|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* return \\+w the|strong=\"G2532\"\\+w* favor, \\+w and|strong=\"G2532\"\\+w* pay \\+w you|strong=\"G4771\"\\+w* back. *" + }, + { + "verseNum": 13, + "text": "But \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G3752\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w a|strong=\"G4160\"\\+w* \\+w feast|strong=\"G1403\"\\+w*, ask \\+w the|strong=\"G4160\"\\+w* \\+w poor|strong=\"G4434\"\\+w*, \\+w the|strong=\"G4160\"\\+w* maimed, \\+w the|strong=\"G4160\"\\+w* \\+w lame|strong=\"G5560\"\\+w*, or \\+w the|strong=\"G4160\"\\+w* \\+w blind|strong=\"G5185\"\\+w*; *" + }, + { + "verseNum": 14, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w blessed|strong=\"G3107\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w the|strong=\"G1722\"\\+w* resources \\+w to|strong=\"G2532\"\\+w* \\+w repay|strong=\"G2192\"\\+w* \\+w you|strong=\"G4771\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* repaid \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* resurrection \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w righteous|strong=\"G1342\"\\+w*.” *" + }, + { + "verseNum": 15, + "text": "When|strong=\"G1161\"* one|strong=\"G5100\"* of|strong=\"G2316\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G4873\"* at|strong=\"G1722\"* the|strong=\"G1722\"* table|strong=\"G4873\"* with|strong=\"G1722\"* him|strong=\"G3588\"* heard these|strong=\"G3778\"* things|strong=\"G3778\"*, he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Blessed|strong=\"G3107\"* is|strong=\"G3588\"* he|strong=\"G1161\"* who|strong=\"G3588\"* will|strong=\"G2316\"* feast in|strong=\"G1722\"* God|strong=\"G2316\"*’s Kingdom!”" + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w A|strong=\"G2532\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w supper|strong=\"G1173\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w invited|strong=\"G2564\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w people|strong=\"G4160\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w at|strong=\"G2235\"\\+w* \\+w supper|strong=\"G1173\"\\+w* \\+w time|strong=\"G5610\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w invited|strong=\"G2564\"\\+w*, ‘\\+w Come|strong=\"G2064\"\\+w*, \\+w for|strong=\"G3754\"\\+w* everything \\+w is|strong=\"G1510\"\\+w* \\+w ready|strong=\"G2092\"\\+w* \\+w now|strong=\"G2532\"\\+w*.’ *" + }, + { + "verseNum": 18, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w as|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w began|strong=\"G2192\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w make|strong=\"G2532\"\\+w* \\+w excuses|strong=\"G3868\"\\+w*.*" + }, + { + "verseNum": 19, + "text": "“\\+w Another|strong=\"G2087\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* bought \\+w five|strong=\"G4002\"\\+w* \\+w yoke|strong=\"G2201\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w oxen|strong=\"G1016\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w must|strong=\"G2192\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w try|strong=\"G1381\"\\+w* \\+w them|strong=\"G3004\"\\+w* \\+w out|strong=\"G2532\"\\+w*. \\+w Please|strong=\"G2065\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w excused|strong=\"G3868\"\\+w*.’*" + }, + { + "verseNum": 20, + "text": "“\\+w Another|strong=\"G2087\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w married|strong=\"G1060\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w wife|strong=\"G1135\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w therefore|strong=\"G1223\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w can|strong=\"G1410\"\\+w*’t \\+w come|strong=\"G2064\"\\+w*.’ *" + }, + { + "verseNum": 21, + "text": "“\\+w That|strong=\"G3588\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w came|strong=\"G1831\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*. \\+w Then|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w master|strong=\"G2962\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w house|strong=\"G3617\"\\+w*, \\+w being|strong=\"G2532\"\\+w* \\+w angry|strong=\"G3710\"\\+w*, \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w servant|strong=\"G1401\"\\+w*, ‘\\+w Go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w quickly|strong=\"G5030\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w streets|strong=\"G4113\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w lanes|strong=\"G4505\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w city|strong=\"G4172\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w bring|strong=\"G2532\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w poor|strong=\"G4434\"\\+w*, maimed, \\+w blind|strong=\"G5185\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w lame|strong=\"G5560\"\\+w*.’*" + }, + { + "verseNum": 22, + "text": "“\\+w The|strong=\"G2532\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w as|strong=\"G2532\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w commanded|strong=\"G2004\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w still|strong=\"G2089\"\\+w* \\+w room|strong=\"G5117\"\\+w*.’*" + }, + { + "verseNum": 23, + "text": "“\\+w The|strong=\"G2532\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w servant|strong=\"G1401\"\\+w*, ‘\\+w Go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w highways|strong=\"G3598\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w hedges|strong=\"G5418\"\\+w*, \\+w and|strong=\"G2532\"\\+w* compel \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w come|strong=\"G1831\"\\+w* \\+w in|strong=\"G1519\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w my|strong=\"G1525\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w filled|strong=\"G1072\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w none|strong=\"G3762\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w invited|strong=\"G2564\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w taste|strong=\"G1089\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w supper|strong=\"G1173\"\\+w*. \\+w For|strong=\"G1063\"\\+w* many \\+w are|strong=\"G3588\"\\+w* \\+w called|strong=\"G2564\"\\+w*, \\+w but|strong=\"G1063\"\\+w* few \\+w are|strong=\"G3588\"\\+w* chosen.*+ 14:24 RP MT includes the last sentence. TR, NU, and FH MT omit: For many are called, but few are chosen.*’”*" + }, + { + "verseNum": 25, + "text": "Now|strong=\"G1161\"* great|strong=\"G4183\"* multitudes|strong=\"G3793\"* were|strong=\"G2532\"* going|strong=\"G2532\"* with|strong=\"G4314\"* him|strong=\"G2532\"*. He|strong=\"G2532\"* turned|strong=\"G4762\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G1438\"*," + }, + { + "verseNum": 26, + "text": "“\\+w If|strong=\"G1487\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* disregard*+ 14:26 or, hate * \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w father|strong=\"G3962\"\\+w*, \\+w mother|strong=\"G3384\"\\+w*, \\+w wife|strong=\"G1135\"\\+w*, \\+w children|strong=\"G5043\"\\+w*, brothers, \\+w and|strong=\"G2532\"\\+w* sisters, \\+w yes|strong=\"G2089\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w disciple|strong=\"G3101\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w Whoever|strong=\"G3748\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w bear|strong=\"G2532\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w cross|strong=\"G4716\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w after|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w disciple|strong=\"G3101\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w desiring|strong=\"G2309\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w build|strong=\"G3618\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w tower|strong=\"G4444\"\\+w*, doesn’\\+w t|strong=\"G3588\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w sit|strong=\"G2523\"\\+w* \\+w down|strong=\"G2523\"\\+w* \\+w and|strong=\"G4413\"\\+w* \\+w count|strong=\"G2192\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w cost|strong=\"G1160\"\\+w*, \\+w to|strong=\"G1519\"\\+w* see \\+w if|strong=\"G1487\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* enough \\+w to|strong=\"G1519\"\\+w* complete \\+w it|strong=\"G1063\"\\+w*? *" + }, + { + "verseNum": 29, + "text": "\\+w Or|strong=\"G2532\"\\+w* \\+w perhaps|strong=\"G3379\"\\+w*, \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2532\"\\+w* \\+w laid|strong=\"G5087\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w foundation|strong=\"G2310\"\\+w* \\+w and|strong=\"G2532\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* \\+w able|strong=\"G2480\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w finish|strong=\"G1615\"\\+w*, \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sees|strong=\"G2334\"\\+w* begins \\+w to|strong=\"G2443\"\\+w* \\+w mock|strong=\"G1702\"\\+w* \\+w him|strong=\"G3588\"\\+w*, *" + }, + { + "verseNum": 30, + "text": "\\+w saying|strong=\"G3004\"\\+w*, ‘\\+w This|strong=\"G3778\"\\+w* \\+w man|strong=\"G3778\"\\+w* began \\+w to|strong=\"G2532\"\\+w* \\+w build|strong=\"G3618\"\\+w* \\+w and|strong=\"G2532\"\\+w* wasn’\\+w t|strong=\"G3588\"\\+w* \\+w able|strong=\"G2480\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w finish|strong=\"G1615\"\\+w*.’ *" + }, + { + "verseNum": 31, + "text": "\\+w Or|strong=\"G2228\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w king|strong=\"G3588\"\\+w*, \\+w as|strong=\"G1519\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w goes|strong=\"G4198\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w encounter|strong=\"G5221\"\\+w* \\+w another|strong=\"G2087\"\\+w* \\+w king|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w war|strong=\"G4171\"\\+w*, \\+w will|strong=\"G5101\"\\+w* \\+w not|strong=\"G3780\"\\+w* \\+w sit|strong=\"G2523\"\\+w* \\+w down|strong=\"G2523\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w and|strong=\"G2064\"\\+w* \\+w consider|strong=\"G1011\"\\+w* \\+w whether|strong=\"G1487\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w able|strong=\"G1415\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w thousand|strong=\"G5505\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w meet|strong=\"G3588\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w twenty|strong=\"G1501\"\\+w* \\+w thousand|strong=\"G5505\"\\+w*? *" + }, + { + "verseNum": 32, + "text": "\\+w Or|strong=\"G1161\"\\+w* \\+w else|strong=\"G3361\"\\+w*, \\+w while|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w other|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w yet|strong=\"G2089\"\\+w* \\+w a|strong=\"G1510\"\\+w* great way off, \\+w he|strong=\"G1161\"\\+w* sends \\+w an|strong=\"G1510\"\\+w* envoy \\+w and|strong=\"G1161\"\\+w* \\+w asks|strong=\"G2065\"\\+w* \\+w for|strong=\"G4314\"\\+w* conditions \\+w of|strong=\"G3588\"\\+w* \\+w peace|strong=\"G1515\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w So|strong=\"G3779\"\\+w* \\+w therefore|strong=\"G3767\"\\+w*, \\+w whoever|strong=\"G3739\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3739\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* renounce \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w he|strong=\"G3739\"\\+w* \\+w has|strong=\"G3739\"\\+w*, \\+w he|strong=\"G3739\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w disciple|strong=\"G3101\"\\+w*.*" + }, + { + "verseNum": 34, + "text": "“Salt \\+w is|strong=\"G3588\"\\+w* \\+w good|strong=\"G2570\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w the|strong=\"G1722\"\\+w* salt becomes flat \\+w and|strong=\"G2532\"\\+w* \\+w tasteless|strong=\"G3471\"\\+w*, \\+w with|strong=\"G1722\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G1437\"\\+w* season \\+w it|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 35, + "text": "\\+w It|strong=\"G1510\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w fit|strong=\"G2111\"\\+w* \\+w neither|strong=\"G3777\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w soil|strong=\"G1093\"\\+w* \\+w nor|strong=\"G3777\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w manure|strong=\"G2874\"\\+w* \\+w pile|strong=\"G2874\"\\+w*. \\+w It|strong=\"G1510\"\\+w* \\+w is|strong=\"G1510\"\\+w* thrown \\+w out|strong=\"G1854\"\\+w*. \\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w ears|strong=\"G3775\"\\+w* \\+w to|strong=\"G1519\"\\+w* hear, \\+w let|strong=\"G1510\"\\+w* \\+w him|strong=\"G3588\"\\+w* hear.”*" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* all|strong=\"G3956\"* the|strong=\"G2532\"* tax|strong=\"G5057\"* collectors|strong=\"G5057\"* and|strong=\"G2532\"* sinners were|strong=\"G1510\"* coming|strong=\"G1448\"* close|strong=\"G1448\"* to|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G2532\"* hear him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* murmured|strong=\"G1234\"*, saying|strong=\"G3004\"*, “This|strong=\"G3778\"* man|strong=\"G3778\"* welcomes|strong=\"G4327\"* sinners, and|strong=\"G2532\"* eats|strong=\"G4906\"* with|strong=\"G2532\"* them|strong=\"G3588\"*.”" + }, + { + "verseNum": 3, + "text": "He|strong=\"G1161\"* told|strong=\"G3004\"* them|strong=\"G3588\"* this|strong=\"G3778\"* parable|strong=\"G3850\"*:" + }, + { + "verseNum": 4, + "text": "“\\+w Which|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w men|strong=\"G3588\"\\+w*, \\+w if|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w hundred|strong=\"G1540\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w and|strong=\"G2532\"\\+w* lost \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w them|strong=\"G3588\"\\+w*, wouldn’\\+w t|strong=\"G3588\"\\+w* \\+w leave|strong=\"G2641\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w ninety-nine|strong=\"G1768\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w wilderness|strong=\"G2048\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w after|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w was|strong=\"G3588\"\\+w* lost, \\+w until|strong=\"G2193\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w it|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 5, + "text": "\\+w When|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w he|strong=\"G2532\"\\+w* carries \\+w it|strong=\"G2532\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w his|strong=\"G2007\"\\+w* \\+w shoulders|strong=\"G5606\"\\+w*, \\+w rejoicing|strong=\"G5463\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w When|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w home|strong=\"G3624\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w calls|strong=\"G3004\"\\+w* \\+w together|strong=\"G4779\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w friends|strong=\"G5384\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w neighbors|strong=\"G1069\"\\+w*, \\+w saying|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w*, ‘\\+w Rejoice|strong=\"G4796\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w was|strong=\"G3588\"\\+w* lost!’ *" + }, + { + "verseNum": 7, + "text": "\\+w I|strong=\"G3754\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w even|strong=\"G2192\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w there|strong=\"G3754\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w more|strong=\"G2192\"\\+w* \\+w joy|strong=\"G5479\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w one|strong=\"G1520\"\\+w* sinner \\+w who|strong=\"G3588\"\\+w* \\+w repents|strong=\"G3340\"\\+w*, \\+w than|strong=\"G2228\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w ninety-nine|strong=\"G1768\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* \\+w people|strong=\"G1510\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w need|strong=\"G5532\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w repentance|strong=\"G3341\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "“\\+w Or|strong=\"G2228\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w woman|strong=\"G1135\"\\+w*, \\+w if|strong=\"G1437\"\\+w* \\+w she|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w ten|strong=\"G1176\"\\+w* drachma*+ 15:8 A drachma coin was worth about a days wages for an agricultural laborer.* \\+w coins|strong=\"G1406\"\\+w*, \\+w if|strong=\"G1437\"\\+w* \\+w she|strong=\"G2532\"\\+w* lost \\+w one|strong=\"G1520\"\\+w* drachma \\+w coin|strong=\"G1406\"\\+w*, wouldn’\\+w t|strong=\"G3588\"\\+w* \\+w light|strong=\"G3088\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w lamp|strong=\"G3088\"\\+w*, \\+w sweep|strong=\"G4563\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w diligently|strong=\"G1960\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w she|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w it|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 9, + "text": "\\+w When|strong=\"G2532\"\\+w* \\+w she|strong=\"G2532\"\\+w* \\+w has|strong=\"G3739\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w she|strong=\"G2532\"\\+w* \\+w calls|strong=\"G3004\"\\+w* \\+w together|strong=\"G4779\"\\+w* \\+w her|strong=\"G3754\"\\+w* \\+w friends|strong=\"G5384\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w neighbors|strong=\"G1069\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Rejoice|strong=\"G4796\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w the|strong=\"G2532\"\\+w* drachma \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w had|strong=\"G2532\"\\+w* lost!’ *" + }, + { + "verseNum": 10, + "text": "\\+w Even|strong=\"G3779\"\\+w* \\+w so|strong=\"G3779\"\\+w*, \\+w I|strong=\"G3004\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w there|strong=\"G1096\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w joy|strong=\"G5479\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w the|strong=\"G1909\"\\+w* \\+w presence|strong=\"G1799\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G1909\"\\+w* angels \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w one|strong=\"G1520\"\\+w* sinner repenting.”*" + }, + { + "verseNum": 11, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"*, “\\+w A|strong=\"G2192\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w sons|strong=\"G5207\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w younger|strong=\"G3501\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w*, ‘\\+w Father|strong=\"G3962\"\\+w*, \\+w give|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w my|strong=\"G1325\"\\+w* \\+w share|strong=\"G3313\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* property.’ \\+w So|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w divided|strong=\"G1244\"\\+w* \\+w his|strong=\"G2532\"\\+w* livelihood \\+w between|strong=\"G1244\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w Not|strong=\"G3756\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w after|strong=\"G3326\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w younger|strong=\"G3501\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w gathered|strong=\"G4863\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w together|strong=\"G4863\"\\+w* \\+w and|strong=\"G2532\"\\+w* traveled \\+w into|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w far|strong=\"G3588\"\\+w* \\+w country|strong=\"G5561\"\\+w*. \\+w There|strong=\"G1563\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w wasted|strong=\"G1287\"\\+w* \\+w his|strong=\"G3956\"\\+w* property \\+w with|strong=\"G3326\"\\+w* riotous \\+w living|strong=\"G2198\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w When|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w spent|strong=\"G1159\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w there|strong=\"G2532\"\\+w* \\+w arose|strong=\"G1096\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w severe|strong=\"G2478\"\\+w* \\+w famine|strong=\"G3042\"\\+w* \\+w in|strong=\"G2596\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w country|strong=\"G5561\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w began|strong=\"G1096\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w in|strong=\"G2596\"\\+w* \\+w need|strong=\"G5302\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w went|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w joined|strong=\"G2853\"\\+w* \\+w himself|strong=\"G1565\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w citizens|strong=\"G4177\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w country|strong=\"G5561\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w fields|strong=\"G5561\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w feed|strong=\"G1006\"\\+w* \\+w pigs|strong=\"G5519\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w He|strong=\"G2532\"\\+w* wanted \\+w to|strong=\"G2532\"\\+w* \\+w fill|strong=\"G1072\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w belly|strong=\"G2836\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w pods|strong=\"G2769\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w pigs|strong=\"G5519\"\\+w* \\+w ate|strong=\"G2068\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w any|strong=\"G3762\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w he|strong=\"G1161\"\\+w* \\+w said|strong=\"G5346\"\\+w*, ‘\\+w How|strong=\"G4214\"\\+w* \\+w many|strong=\"G4214\"\\+w* \\+w hired|strong=\"G3407\"\\+w* servants \\+w of|strong=\"G3962\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w father|strong=\"G3962\"\\+w*’s \\+w have|strong=\"G1473\"\\+w* bread \\+w enough|strong=\"G4052\"\\+w* \\+w to|strong=\"G1519\"\\+w* spare, \\+w and|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w*’m dying \\+w with|strong=\"G1519\"\\+w* \\+w hunger|strong=\"G3042\"\\+w*! *" + }, + { + "verseNum": 18, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w get|strong=\"G2532\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w*, “\\+w Father|strong=\"G3962\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* sinned \\+w against|strong=\"G4314\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w sight|strong=\"G1799\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w no|strong=\"G3765\"\\+w* \\+w more|strong=\"G3765\"\\+w* worthy \\+w to|strong=\"G4160\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w your|strong=\"G4160\"\\+w* \\+w son|strong=\"G5207\"\\+w*. \\+w Make|strong=\"G4160\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w your|strong=\"G4160\"\\+w* \\+w hired|strong=\"G3407\"\\+w* servants.”’*" + }, + { + "verseNum": 20, + "text": "“\\+w He|strong=\"G2532\"\\+w* arose \\+w and|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w father|strong=\"G3962\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w while|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w still|strong=\"G2089\"\\+w* \\+w far|strong=\"G3112\"\\+w* \\+w off|strong=\"G3112\"\\+w*, \\+w his|strong=\"G1438\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w moved|strong=\"G4697\"\\+w* \\+w with|strong=\"G4314\"\\+w* \\+w compassion|strong=\"G4697\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w ran|strong=\"G5143\"\\+w*, \\+w fell|strong=\"G1968\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w neck|strong=\"G5137\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w kissed|strong=\"G2705\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Father|strong=\"G3962\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* sinned \\+w against|strong=\"G1519\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w sight|strong=\"G1799\"\\+w*. \\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w no|strong=\"G3765\"\\+w* \\+w longer|strong=\"G3765\"\\+w* worthy \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w*.’*" + }, + { + "verseNum": 22, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w servants|strong=\"G1401\"\\+w*, ‘\\+w Bring|strong=\"G2532\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w best|strong=\"G4413\"\\+w* \\+w robe|strong=\"G4749\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w put|strong=\"G1746\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w on|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w*. \\+w Put|strong=\"G1746\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w ring|strong=\"G1146\"\\+w* \\+w on|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w hand|strong=\"G5495\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w sandals|strong=\"G5266\"\\+w* \\+w on|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w feet|strong=\"G4228\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w Bring|strong=\"G5342\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fattened|strong=\"G4618\"\\+w* \\+w calf|strong=\"G3448\"\\+w*, \\+w kill|strong=\"G2380\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w let|strong=\"G2532\"\\+w*’s \\+w eat|strong=\"G2068\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w celebrate|strong=\"G2165\"\\+w*; *" + }, + { + "verseNum": 24, + "text": "\\+w for|strong=\"G3754\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w my|strong=\"G1473\"\\+w* \\+w son|strong=\"G5207\"\\+w*, \\+w was|strong=\"G1510\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* alive \\+w again|strong=\"G2532\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* lost \\+w and|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w found|strong=\"G2147\"\\+w*.’ \\+w Then|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* began \\+w to|strong=\"G2532\"\\+w* \\+w celebrate|strong=\"G2165\"\\+w*.*" + }, + { + "verseNum": 25, + "text": "“\\+w Now|strong=\"G1161\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w elder|strong=\"G4245\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* field. \\+w As|strong=\"G5613\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w near|strong=\"G1448\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w house|strong=\"G3614\"\\+w*, \\+w he|strong=\"G2532\"\\+w* heard \\+w music|strong=\"G4858\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w dancing|strong=\"G5525\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w called|strong=\"G4341\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w servants|strong=\"G3816\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w asked|strong=\"G4441\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w going|strong=\"G2532\"\\+w* \\+w on|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Your|strong=\"G2532\"\\+w* brother \\+w has|strong=\"G3962\"\\+w* \\+w come|strong=\"G2240\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w killed|strong=\"G2380\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fattened|strong=\"G4618\"\\+w* \\+w calf|strong=\"G3448\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G3962\"\\+w* received \\+w him|strong=\"G3588\"\\+w* back \\+w safe|strong=\"G5198\"\\+w* \\+w and|strong=\"G2532\"\\+w* healthy.’ *" + }, + { + "verseNum": 28, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w angry|strong=\"G3710\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w would|strong=\"G2309\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w in|strong=\"G1525\"\\+w*. \\+w Therefore|strong=\"G1161\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w came|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w begged|strong=\"G3870\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w answered|strong=\"G3004\"\\+w* \\+w his|strong=\"G3708\"\\+w* \\+w father|strong=\"G3962\"\\+w*, ‘\\+w Behold|strong=\"G2400\"\\+w*, \\+w these|strong=\"G3326\"\\+w* \\+w many|strong=\"G5118\"\\+w* \\+w years|strong=\"G2094\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w served|strong=\"G1398\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w never|strong=\"G3763\"\\+w* \\+w disobeyed|strong=\"G3928\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w commandment|strong=\"G1785\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w yours|strong=\"G4771\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w never|strong=\"G3763\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w goat|strong=\"G2056\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w might|strong=\"G2532\"\\+w* \\+w celebrate|strong=\"G2165\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w friends|strong=\"G5384\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3753\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w came|strong=\"G2064\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w devoured|strong=\"G2719\"\\+w* \\+w your|strong=\"G3588\"\\+w* living \\+w with|strong=\"G3326\"\\+w* \\+w prostitutes|strong=\"G4204\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w killed|strong=\"G2380\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w fattened|strong=\"G4618\"\\+w* \\+w calf|strong=\"G3448\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w*.’*" + }, + { + "verseNum": 31, + "text": "“\\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Son|strong=\"G5043\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w mine|strong=\"G1699\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w yours|strong=\"G4771\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* appropriate \\+w to|strong=\"G2532\"\\+w* \\+w celebrate|strong=\"G2165\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w glad|strong=\"G5463\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w your|strong=\"G2532\"\\+w* brother, \\+w was|strong=\"G1510\"\\+w* \\+w dead|strong=\"G3498\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w alive|strong=\"G2198\"\\+w* \\+w again|strong=\"G2532\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* lost, \\+w and|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w found|strong=\"G2147\"\\+w*.’”*" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* also|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* his|strong=\"G2192\"* disciples|strong=\"G3101\"*, “\\+w There|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w rich|strong=\"G4145\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w manager|strong=\"G3623\"\\+w*. \\+w An|strong=\"G2192\"\\+w* accusation \\+w was|strong=\"G1510\"\\+w* \\+w made|strong=\"G1161\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w was|strong=\"G1510\"\\+w* wasting \\+w his|strong=\"G2192\"\\+w* \\+w possessions|strong=\"G5225\"\\+w*. *" + }, + { + "verseNum": 2, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w called|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w What|strong=\"G5101\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w hear|strong=\"G5101\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w you|strong=\"G4771\"\\+w*? \\+w Give|strong=\"G3004\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w accounting|strong=\"G3056\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w management|strong=\"G3622\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w longer|strong=\"G2089\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w manager|strong=\"G3621\"\\+w*.’ *" + }, + { + "verseNum": 3, + "text": "“\\+w The|strong=\"G1722\"\\+w* \\+w manager|strong=\"G3623\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w within|strong=\"G1722\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, ‘\\+w What|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w*, \\+w seeing|strong=\"G3754\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w is|strong=\"G3588\"\\+w* taking away \\+w the|strong=\"G1722\"\\+w* \\+w management|strong=\"G3622\"\\+w* position \\+w from|strong=\"G3756\"\\+w* \\+w me|strong=\"G1473\"\\+w*? \\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w strength|strong=\"G2480\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w dig|strong=\"G4626\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* ashamed \\+w to|strong=\"G3004\"\\+w* \\+w beg|strong=\"G1871\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w do|strong=\"G4160\"\\+w*, \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w removed|strong=\"G3179\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w management|strong=\"G3622\"\\+w*, \\+w they|strong=\"G3588\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w houses|strong=\"G3624\"\\+w*.’ *" + }, + { + "verseNum": 5, + "text": "\\+w Calling|strong=\"G4341\"\\+w* \\+w each|strong=\"G1538\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w lord|strong=\"G2962\"\\+w*’\\+w s|strong=\"G2962\"\\+w* \\+w debtors|strong=\"G5533\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w*, ‘\\+w How|strong=\"G4214\"\\+w* \\+w much|strong=\"G4214\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w owe|strong=\"G3784\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w lord|strong=\"G2962\"\\+w*?’ *" + }, + { + "verseNum": 6, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w A|strong=\"G2532\"\\+w* \\+w hundred|strong=\"G1540\"\\+w* batos*+ 16:6 100 batos is about 395 liters or 104 U. S. gallons.* \\+w of|strong=\"G2532\"\\+w* \\+w oil|strong=\"G1637\"\\+w*.’ \\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Take|strong=\"G1209\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w bill|strong=\"G1121\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w sit|strong=\"G2523\"\\+w* \\+w down|strong=\"G2523\"\\+w* \\+w quickly|strong=\"G5030\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w write|strong=\"G1125\"\\+w* \\+w fifty|strong=\"G4004\"\\+w*.’ *" + }, + { + "verseNum": 7, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w another|strong=\"G2087\"\\+w*, ‘\\+w How|strong=\"G4214\"\\+w* \\+w much|strong=\"G4214\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w owe|strong=\"G3784\"\\+w*?’ \\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w A|strong=\"G2532\"\\+w* \\+w hundred|strong=\"G1540\"\\+w* cors*+ 16:7 100 cors = about 2,110 liters or 600 bushels.* \\+w of|strong=\"G2532\"\\+w* \\+w wheat|strong=\"G4621\"\\+w*.’ \\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Take|strong=\"G1209\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w bill|strong=\"G1121\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w write|strong=\"G1125\"\\+w* \\+w eighty|strong=\"G3589\"\\+w*.’*" + }, + { + "verseNum": 8, + "text": "“\\+w His|strong=\"G1438\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w commended|strong=\"G1867\"\\+w* \\+w the|strong=\"G2532\"\\+w* dishonest \\+w manager|strong=\"G3623\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w wisely|strong=\"G5430\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w this|strong=\"G3778\"\\+w* world \\+w are|strong=\"G1510\"\\+w*, \\+w in|strong=\"G1519\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w generation|strong=\"G1074\"\\+w*, \\+w wiser|strong=\"G5429\"\\+w* \\+w than|strong=\"G5228\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w light|strong=\"G5457\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w make|strong=\"G4160\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w* \\+w friends|strong=\"G5384\"\\+w* \\+w by|strong=\"G1537\"\\+w* \\+w means|strong=\"G3004\"\\+w* \\+w of|strong=\"G1537\"\\+w* unrighteous \\+w mammon|strong=\"G3126\"\\+w*, \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w fail|strong=\"G1587\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* eternal \\+w tents|strong=\"G4633\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w very|strong=\"G4183\"\\+w* \\+w little|strong=\"G1646\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w much|strong=\"G4183\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* dishonest \\+w in|strong=\"G1722\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w very|strong=\"G4183\"\\+w* \\+w little|strong=\"G1646\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w also|strong=\"G2532\"\\+w* dishonest \\+w in|strong=\"G1722\"\\+w* \\+w much|strong=\"G4183\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G5210\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w been|strong=\"G1096\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* unrighteous \\+w mammon|strong=\"G3126\"\\+w*, \\+w who|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w commit|strong=\"G3756\"\\+w* \\+w to|strong=\"G1722\"\\+w* \\+w your|strong=\"G1487\"\\+w* \\+w trust|strong=\"G4100\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w true|strong=\"G4103\"\\+w* riches? *" + }, + { + "verseNum": 12, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w been|strong=\"G1096\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w another|strong=\"G3588\"\\+w*’s, \\+w who|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w your|strong=\"G5212\"\\+w* own? *" + }, + { + "verseNum": 13, + "text": "\\+w No|strong=\"G3756\"\\+w* \\+w servant|strong=\"G3610\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w serve|strong=\"G1398\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w masters|strong=\"G2962\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w either|strong=\"G2228\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w hate|strong=\"G3404\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w and|strong=\"G2532\"\\+w* love \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G2087\"\\+w*; \\+w or|strong=\"G2228\"\\+w* \\+w else|strong=\"G2228\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* hold \\+w to|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w despise|strong=\"G2706\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G2087\"\\+w*. \\+w You|strong=\"G2532\"\\+w* aren’\\+w t|strong=\"G3588\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w serve|strong=\"G1398\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Mammon|strong=\"G3126\"\\+w*.”*+ 16:13 “Mammon” refers to riches or a false god of wealth.*" + }, + { + "verseNum": 14, + "text": "The|strong=\"G2532\"* Pharisees|strong=\"G5330\"*, who|strong=\"G3588\"* were|strong=\"G3588\"* lovers|strong=\"G5366\"* of|strong=\"G2532\"* money|strong=\"G5366\"*, also|strong=\"G2532\"* heard all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* scoffed at|strong=\"G1161\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w justify|strong=\"G1344\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sight|strong=\"G1799\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w men|strong=\"G3588\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w knows|strong=\"G1097\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hearts|strong=\"G2588\"\\+w*. \\+w For|strong=\"G3754\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w exalted|strong=\"G5308\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w an|strong=\"G2532\"\\+w* abomination \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sight|strong=\"G1799\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "“\\+w The|strong=\"G2532\"\\+w* \\+w law|strong=\"G3551\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w until|strong=\"G3360\"\\+w* \\+w John|strong=\"G2491\"\\+w*. \\+w From|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w time|strong=\"G5119\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Good|strong=\"G2097\"\\+w* \\+w News|strong=\"G2097\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w is|strong=\"G3588\"\\+w* \\+w preached|strong=\"G2097\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w is|strong=\"G3588\"\\+w* forcing \\+w his|strong=\"G1438\"\\+w* \\+w way|strong=\"G3956\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w easier|strong=\"G2123\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w pass|strong=\"G3928\"\\+w* \\+w away|strong=\"G3928\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w one|strong=\"G1520\"\\+w* tiny \\+w stroke|strong=\"G2762\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* pen \\+w in|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w law|strong=\"G3551\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w fall|strong=\"G4098\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "“\\+w Everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* divorces \\+w his|strong=\"G3956\"\\+w* \\+w wife|strong=\"G1135\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w marries|strong=\"G1060\"\\+w* \\+w another|strong=\"G2087\"\\+w* \\+w commits|strong=\"G3431\"\\+w* \\+w adultery|strong=\"G3431\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w marries|strong=\"G1060\"\\+w* \\+w one|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* divorced \\+w from|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* husband \\+w commits|strong=\"G3431\"\\+w* \\+w adultery|strong=\"G3431\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "“\\+w Now|strong=\"G1161\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w rich|strong=\"G4145\"\\+w* \\+w man|strong=\"G5100\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* clothed \\+w in|strong=\"G2596\"\\+w* \\+w purple|strong=\"G4209\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w fine|strong=\"G2532\"\\+w* \\+w linen|strong=\"G1040\"\\+w*, \\+w living|strong=\"G2165\"\\+w* \\+w in|strong=\"G2596\"\\+w* luxury \\+w every|strong=\"G2596\"\\+w* \\+w day|strong=\"G2250\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w A|strong=\"G1161\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w beggar|strong=\"G4434\"\\+w*, \\+w named|strong=\"G3686\"\\+w* \\+w Lazarus|strong=\"G2976\"\\+w*, \\+w was|strong=\"G3588\"\\+w* taken \\+w to|strong=\"G4314\"\\+w* \\+w his|strong=\"G4314\"\\+w* \\+w gate|strong=\"G4440\"\\+w*, full \\+w of|strong=\"G3686\"\\+w* \\+w sores|strong=\"G1669\"\\+w*, *" + }, + { + "verseNum": 21, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w desiring|strong=\"G1937\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w fed|strong=\"G5526\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* crumbs \\+w that|strong=\"G3588\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w from|strong=\"G2064\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rich|strong=\"G4145\"\\+w* \\+w man|strong=\"G4145\"\\+w*’s \\+w table|strong=\"G5132\"\\+w*. Yes, \\+w even|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dogs|strong=\"G2965\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* licked \\+w his|strong=\"G2532\"\\+w* \\+w sores|strong=\"G1668\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w beggar|strong=\"G4434\"\\+w* \\+w died|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w was|strong=\"G1096\"\\+w* \\+w carried|strong=\"G2532\"\\+w* away \\+w by|strong=\"G5259\"\\+w* \\+w the|strong=\"G2532\"\\+w* angels \\+w to|strong=\"G1519\"\\+w* Abraham’s \\+w bosom|strong=\"G2859\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w rich|strong=\"G4145\"\\+w* \\+w man|strong=\"G4145\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w died|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w was|strong=\"G1096\"\\+w* \\+w buried|strong=\"G2290\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w In|strong=\"G1722\"\\+w* Hades,*+ 16:23 or, Hell* \\+w he|strong=\"G2532\"\\+w* \\+w lifted|strong=\"G1869\"\\+w* \\+w up|strong=\"G1869\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w eyes|strong=\"G3788\"\\+w*, \\+w being|strong=\"G5225\"\\+w* \\+w in|strong=\"G1722\"\\+w* torment, \\+w and|strong=\"G2532\"\\+w* \\+w saw|strong=\"G3708\"\\+w* Abraham \\+w far|strong=\"G3113\"\\+w* \\+w off|strong=\"G3113\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w Lazarus|strong=\"G2976\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w bosom|strong=\"G2859\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w cried|strong=\"G5455\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w Father|strong=\"G3962\"\\+w* Abraham, \\+w have|strong=\"G2532\"\\+w* \\+w mercy|strong=\"G1653\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w send|strong=\"G3992\"\\+w* \\+w Lazarus|strong=\"G2976\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* dip \\+w the|strong=\"G1722\"\\+w* tip \\+w of|strong=\"G2532\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w finger|strong=\"G1147\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w water|strong=\"G5204\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w cool|strong=\"G2711\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w tongue|strong=\"G1100\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* anguish \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w flame|strong=\"G5395\"\\+w*.’*" + }, + { + "verseNum": 25, + "text": "“\\+w But|strong=\"G1161\"\\+w* Abraham \\+w said|strong=\"G3004\"\\+w*, ‘\\+w Son|strong=\"G5043\"\\+w*, \\+w remember|strong=\"G3403\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w lifetime|strong=\"G2222\"\\+w*, received \\+w your|strong=\"G2532\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w things|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w Lazarus|strong=\"G2976\"\\+w*, \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w same|strong=\"G3668\"\\+w* \\+w way|strong=\"G3668\"\\+w*, \\+w bad|strong=\"G2556\"\\+w* \\+w things|strong=\"G3588\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w comforted|strong=\"G3870\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* anguish. *" + }, + { + "verseNum": 26, + "text": "\\+w Besides|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w between|strong=\"G3342\"\\+w* \\+w us|strong=\"G2249\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w gulf|strong=\"G5490\"\\+w* \\+w fixed|strong=\"G4741\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w pass|strong=\"G1224\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w here|strong=\"G1759\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w able|strong=\"G1410\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w one|strong=\"G3956\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w cross|strong=\"G1276\"\\+w* \\+w over|strong=\"G1276\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w us|strong=\"G2249\"\\+w*.’*" + }, + { + "verseNum": 27, + "text": "“\\+w He|strong=\"G1161\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w ask|strong=\"G2065\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w therefore|strong=\"G3767\"\\+w*, \\+w father|strong=\"G3962\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G4771\"\\+w* would \\+w send|strong=\"G3992\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w father|strong=\"G3962\"\\+w*’s \\+w house|strong=\"G3624\"\\+w*—*" + }, + { + "verseNum": 28, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w five|strong=\"G4002\"\\+w* brothers—\\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w testify|strong=\"G1263\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w so|strong=\"G2443\"\\+w* \\+w they|strong=\"G2532\"\\+w* won’\\+w t|strong=\"G3588\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w place|strong=\"G5117\"\\+w* \\+w of|strong=\"G2532\"\\+w* torment.’*" + }, + { + "verseNum": 29, + "text": "“\\+w But|strong=\"G1161\"\\+w* Abraham \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w They|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*. \\+w Let|strong=\"G1161\"\\+w* \\+w them|strong=\"G3588\"\\+w* listen \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*.’*" + }, + { + "verseNum": 30, + "text": "“\\+w He|strong=\"G1161\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w No|strong=\"G3780\"\\+w*, \\+w father|strong=\"G3962\"\\+w* Abraham, \\+w but|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w one|strong=\"G5100\"\\+w* \\+w goes|strong=\"G4198\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w from|strong=\"G3588\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w dead|strong=\"G3498\"\\+w*, \\+w they|strong=\"G1161\"\\+w* \\+w will|strong=\"G5100\"\\+w* \\+w repent|strong=\"G3340\"\\+w*.’*" + }, + { + "verseNum": 31, + "text": "“\\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w If|strong=\"G1487\"\\+w* \\+w they|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w listen|strong=\"G3982\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*, \\+w neither|strong=\"G3761\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w persuaded|strong=\"G3982\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w one|strong=\"G5100\"\\+w* rises \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w*.’”*" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* the|strong=\"G1161\"* disciples|strong=\"G3101\"*, “\\+w It|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* impossible \\+w that|strong=\"G3739\"\\+w* \\+w no|strong=\"G3361\"\\+w* occasions \\+w of|strong=\"G1223\"\\+w* \\+w stumbling|strong=\"G4625\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w come|strong=\"G2064\"\\+w*! *" + }, + { + "verseNum": 2, + "text": "\\+w It|strong=\"G2532\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w better|strong=\"G3081\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w millstone|strong=\"G3037\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w hung|strong=\"G4029\"\\+w* \\+w around|strong=\"G4012\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w neck|strong=\"G5137\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w thrown|strong=\"G4496\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sea|strong=\"G2281\"\\+w*, \\+w rather|strong=\"G2228\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w cause|strong=\"G4624\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w ones|strong=\"G3398\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w Be|strong=\"G2532\"\\+w* \\+w careful|strong=\"G4337\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w your|strong=\"G1437\"\\+w* brother sins against \\+w you|strong=\"G4771\"\\+w*, \\+w rebuke|strong=\"G2008\"\\+w* \\+w him|strong=\"G3588\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w repents|strong=\"G3340\"\\+w*, forgive \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w he|strong=\"G2532\"\\+w* sins \\+w against|strong=\"G4314\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w seven|strong=\"G2034\"\\+w* \\+w times|strong=\"G2034\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w day|strong=\"G2250\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w seven|strong=\"G2034\"\\+w* \\+w times|strong=\"G2034\"\\+w* \\+w returns|strong=\"G1994\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G2532\"\\+w* \\+w repent|strong=\"G3340\"\\+w*,’ \\+w you|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* forgive \\+w him|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 5, + "text": "The|strong=\"G2532\"* apostles said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, “Increase|strong=\"G4369\"* our|strong=\"G2532\"* faith|strong=\"G4102\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"G1722\"* Lord|strong=\"G2962\"* said|strong=\"G3004\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w grain|strong=\"G2848\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w mustard|strong=\"G4615\"\\+w* \\+w seed|strong=\"G2848\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w this|strong=\"G3778\"\\+w* sycamore \\+w tree|strong=\"G4807\"\\+w*, ‘\\+w Be|strong=\"G2532\"\\+w* \\+w uprooted|strong=\"G1610\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w planted|strong=\"G5452\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sea|strong=\"G2281\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w obey|strong=\"G5219\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w there|strong=\"G1161\"\\+w* \\+w among|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w having|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w servant|strong=\"G1401\"\\+w* plowing \\+w or|strong=\"G2228\"\\+w* \\+w keeping|strong=\"G2192\"\\+w* \\+w sheep|strong=\"G4165\"\\+w*, \\+w that|strong=\"G3739\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w when|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w comes|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* field, ‘\\+w Come|strong=\"G1525\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* \\+w and|strong=\"G1161\"\\+w* sit \\+w down|strong=\"G1537\"\\+w* \\+w at|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* table’? *" + }, + { + "verseNum": 8, + "text": "Wouldn’t \\+w he|strong=\"G2532\"\\+w* \\+w rather|strong=\"G3780\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w him|strong=\"G2532\"\\+w*, ‘\\+w Prepare|strong=\"G2090\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w supper|strong=\"G1172\"\\+w*, \\+w clothe|strong=\"G4024\"\\+w* \\+w yourself|strong=\"G4771\"\\+w* properly, \\+w and|strong=\"G2532\"\\+w* \\+w serve|strong=\"G1247\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w while|strong=\"G2193\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4095\"\\+w*. \\+w Afterward|strong=\"G3326\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4095\"\\+w*’? *" + }, + { + "verseNum": 9, + "text": "\\+w Does|strong=\"G4160\"\\+w* \\+w he|strong=\"G3754\"\\+w* \\+w thank|strong=\"G5485\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w he|strong=\"G3754\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w commanded|strong=\"G1299\"\\+w*? \\+w I|strong=\"G3754\"\\+w* \\+w think|strong=\"G2192\"\\+w* \\+w not|strong=\"G3361\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w Even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w commanded|strong=\"G1299\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w say|strong=\"G3004\"\\+w*, ‘\\+w We|strong=\"G3739\"\\+w* \\+w are|strong=\"G1510\"\\+w* unworthy \\+w servants|strong=\"G1401\"\\+w*. \\+w We|strong=\"G3739\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w our|strong=\"G2532\"\\+w* duty.’” *" + }, + { + "verseNum": 11, + "text": "As|strong=\"G1519\"* he|strong=\"G2532\"* was|strong=\"G1096\"* on|strong=\"G1722\"* his|strong=\"G1223\"* way|strong=\"G4198\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*, he|strong=\"G2532\"* was|strong=\"G1096\"* passing|strong=\"G1330\"* along|strong=\"G2532\"* the|strong=\"G1722\"* borders of|strong=\"G1223\"* Samaria|strong=\"G4540\"* and|strong=\"G2532\"* Galilee|strong=\"G1056\"*." + }, + { + "verseNum": 12, + "text": "As|strong=\"G1519\"* he|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* village|strong=\"G2968\"*, ten|strong=\"G1176\"* men|strong=\"G5100\"* who|strong=\"G3739\"* were|strong=\"G2532\"* lepers|strong=\"G3015\"* met|strong=\"G5221\"* him|strong=\"G3739\"*, who|strong=\"G3739\"* stood|strong=\"G2476\"* at|strong=\"G1519\"* a|strong=\"G2532\"* distance|strong=\"G4207\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"G2532\"* lifted|strong=\"G2532\"* up|strong=\"G2532\"* their|strong=\"G2532\"* voices|strong=\"G5456\"*, saying|strong=\"G3004\"*, “Jesus|strong=\"G2424\"*, Master|strong=\"G1988\"*, have|strong=\"G2532\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* us|strong=\"G3004\"*!”" + }, + { + "verseNum": 14, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Go|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w show|strong=\"G1925\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w priests|strong=\"G2409\"\\+w*.”* As|strong=\"G1722\"* they|strong=\"G2532\"* went|strong=\"G4198\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* cleansed|strong=\"G2511\"*." + }, + { + "verseNum": 15, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* them|strong=\"G3588\"*, when|strong=\"G1161\"* he|strong=\"G1161\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* he|strong=\"G1161\"* was|strong=\"G3588\"* healed|strong=\"G2390\"*, turned|strong=\"G5290\"* back|strong=\"G5290\"*, glorifying|strong=\"G1392\"* God|strong=\"G2316\"* with|strong=\"G3326\"* a|strong=\"G3708\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* fell|strong=\"G4098\"* on|strong=\"G1909\"* his|strong=\"G1909\"* face|strong=\"G4383\"* at|strong=\"G1909\"* Jesus|strong=\"G1510\"*’ feet|strong=\"G4228\"*, giving|strong=\"G2168\"* him|strong=\"G3588\"* thanks|strong=\"G2168\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* Samaritan|strong=\"G4541\"*." + }, + { + "verseNum": 17, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “Weren’\\+w t|strong=\"G3588\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w cleansed|strong=\"G2511\"\\+w*? \\+w But|strong=\"G1161\"\\+w* \\+w where|strong=\"G4226\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w nine|strong=\"G1767\"\\+w*? *" + }, + { + "verseNum": 18, + "text": "\\+w Were|strong=\"G3588\"\\+w* \\+w there|strong=\"G1487\"\\+w* \\+w none|strong=\"G3756\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w returned|strong=\"G5290\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w this|strong=\"G3778\"\\+w* foreigner?”*" + }, + { + "verseNum": 19, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Get|strong=\"G4982\"\\+w* \\+w up|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w way|strong=\"G4198\"\\+w*. \\+w Your|strong=\"G2532\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w has|strong=\"G4102\"\\+w* \\+w healed|strong=\"G4982\"\\+w* \\+w you|strong=\"G4771\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "Being|strong=\"G2532\"* asked|strong=\"G1905\"* by|strong=\"G5259\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* when|strong=\"G1161\"* God|strong=\"G2316\"*’s Kingdom would|strong=\"G2316\"* come|strong=\"G2064\"*, he|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w God|strong=\"G2316\"\\+w*’s Kingdom doesn’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w observation|strong=\"G3907\"\\+w*; *" + }, + { + "verseNum": 21, + "text": "\\+w neither|strong=\"G3761\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Look|strong=\"G2400\"\\+w*, \\+w here|strong=\"G5602\"\\+w*!’ \\+w or|strong=\"G2228\"\\+w*, ‘\\+w Look|strong=\"G2400\"\\+w*, \\+w there|strong=\"G1563\"\\+w*!’ \\+w for|strong=\"G1063\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w is|strong=\"G1510\"\\+w* \\+w within|strong=\"G1787\"\\+w* \\+w you|strong=\"G5210\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*, “\\+w The|strong=\"G2532\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w when|strong=\"G3753\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w desire|strong=\"G1937\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1520\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, ‘\\+w Look|strong=\"G2400\"\\+w*, \\+w here|strong=\"G5602\"\\+w*!’ \\+w or|strong=\"G2532\"\\+w* ‘\\+w Look|strong=\"G2400\"\\+w*, \\+w there|strong=\"G1563\"\\+w*!’ Don’t \\+w go|strong=\"G2532\"\\+w* away \\+w or|strong=\"G2532\"\\+w* \\+w follow|strong=\"G1377\"\\+w* \\+w after|strong=\"G1377\"\\+w* \\+w them|strong=\"G3004\"\\+w*, *" + }, + { + "verseNum": 24, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w as|strong=\"G5618\"\\+w* \\+w the|strong=\"G1722\"\\+w* lightning, \\+w when|strong=\"G1722\"\\+w* \\+w it|strong=\"G1063\"\\+w* flashes \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w one|strong=\"G3588\"\\+w* part \\+w under|strong=\"G5259\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sky|strong=\"G3772\"\\+w*, \\+w shines|strong=\"G2989\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w another|strong=\"G2250\"\\+w* part \\+w under|strong=\"G5259\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sky|strong=\"G3772\"\\+w*, \\+w so|strong=\"G3779\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Man|strong=\"G1519\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w day|strong=\"G2250\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w first|strong=\"G4413\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w suffer|strong=\"G3958\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* rejected \\+w by|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w As|strong=\"G2531\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Noah|strong=\"G3575\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w ate|strong=\"G2068\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w drank|strong=\"G4095\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w married|strong=\"G1060\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w given|strong=\"G1061\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w marriage|strong=\"G1061\"\\+w* \\+w until|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w Noah|strong=\"G3575\"\\+w* \\+w entered|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* ship, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w flood|strong=\"G2627\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* destroyed \\+w them|strong=\"G3588\"\\+w* \\+w all|strong=\"G3956\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w Likewise|strong=\"G3668\"\\+w*, \\+w even|strong=\"G2531\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w it|strong=\"G2531\"\\+w* \\+w was|strong=\"G1096\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w Lot|strong=\"G3091\"\\+w*: \\+w they|strong=\"G3588\"\\+w* \\+w ate|strong=\"G2068\"\\+w*, \\+w they|strong=\"G3588\"\\+w* \\+w drank|strong=\"G4095\"\\+w*, \\+w they|strong=\"G3588\"\\+w* bought, \\+w they|strong=\"G3588\"\\+w* \\+w sold|strong=\"G4453\"\\+w*, \\+w they|strong=\"G3588\"\\+w* \\+w planted|strong=\"G5452\"\\+w*, \\+w they|strong=\"G3588\"\\+w* \\+w built|strong=\"G3618\"\\+w*; *" + }, + { + "verseNum": 29, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w Lot|strong=\"G3091\"\\+w* \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w Sodom|strong=\"G4670\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w rained|strong=\"G1026\"\\+w* \\+w fire|strong=\"G4442\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w sulfur|strong=\"G2303\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* destroyed \\+w them|strong=\"G3739\"\\+w* \\+w all|strong=\"G3956\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w It|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w the|strong=\"G2596\"\\+w* \\+w same|strong=\"G3739\"\\+w* \\+w way|strong=\"G2596\"\\+w* \\+w in|strong=\"G2596\"\\+w* \\+w the|strong=\"G2596\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w the|strong=\"G2596\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* revealed. *" + }, + { + "verseNum": 31, + "text": "\\+w In|strong=\"G1722\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w day|strong=\"G2250\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w housetop|strong=\"G1430\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w goods|strong=\"G4632\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w house|strong=\"G3614\"\\+w*, \\+w let|strong=\"G1510\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w go|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w take|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* away. \\+w Let|strong=\"G1510\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* field \\+w likewise|strong=\"G3668\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w turn|strong=\"G1994\"\\+w* \\+w back|strong=\"G3694\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w Remember|strong=\"G3421\"\\+w* \\+w Lot|strong=\"G3091\"\\+w*’s \\+w wife|strong=\"G1135\"\\+w*! *" + }, + { + "verseNum": 33, + "text": "\\+w Whoever|strong=\"G3739\"\\+w* \\+w seeks|strong=\"G2212\"\\+w* \\+w to|strong=\"G2532\"\\+w* save \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* loses \\+w it|strong=\"G2532\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* loses \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* preserves \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "\\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w in|strong=\"G1909\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w night|strong=\"G3571\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w people|strong=\"G1510\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w bed|strong=\"G2825\"\\+w*. \\+w One|strong=\"G1520\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w taken|strong=\"G3880\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G2087\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* left. *" + }, + { + "verseNum": 35, + "text": "\\+w There|strong=\"G1161\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w two|strong=\"G1417\"\\+w* grinding grain \\+w together|strong=\"G1909\"\\+w*. \\+w One|strong=\"G1520\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w taken|strong=\"G3880\"\\+w* \\+w and|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w other|strong=\"G2087\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* left.”*" + }, + { + "verseNum": 36, + "text": "+ 17:36 Some Greek manuscripts add: “Two will be in the field: the one taken, and the other left.”*" + }, + { + "verseNum": 37, + "text": "They|strong=\"G2532\"*, answering, asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Where|strong=\"G3699\"*, Lord|strong=\"G2962\"*?”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* also|strong=\"G2532\"* spoke|strong=\"G3004\"* a|strong=\"G2532\"* parable|strong=\"G3850\"* to|strong=\"G4314\"* them|strong=\"G3588\"* that|strong=\"G3588\"* they|strong=\"G2532\"* must|strong=\"G1163\"* always|strong=\"G3842\"* pray|strong=\"G4336\"* and|strong=\"G2532\"* not|strong=\"G3361\"* give|strong=\"G3004\"* up|strong=\"G1210\"*," + }, + { + "verseNum": 2, + "text": "saying|strong=\"G3004\"*, “\\+w There|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w judge|strong=\"G2923\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w who|strong=\"G3588\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w fear|strong=\"G5399\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w and|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w respect|strong=\"G1788\"\\+w* \\+w man|strong=\"G5100\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w A|strong=\"G2532\"\\+w* \\+w widow|strong=\"G5503\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w city|strong=\"G4172\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w she|strong=\"G2532\"\\+w* often \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘Defend \\+w me|strong=\"G1473\"\\+w* \\+w from|strong=\"G2064\"\\+w* \\+w my|strong=\"G1722\"\\+w* adversary!’ *" + }, + { + "verseNum": 4, + "text": "\\+w He|strong=\"G2532\"\\+w* wouldn’\\+w t|strong=\"G3588\"\\+w* \\+w for|strong=\"G1909\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w while|strong=\"G1722\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w afterward|strong=\"G3326\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, ‘\\+w Though|strong=\"G1487\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w neither|strong=\"G3761\"\\+w* \\+w fear|strong=\"G5399\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w nor|strong=\"G3761\"\\+w* \\+w respect|strong=\"G1788\"\\+w* \\+w man|strong=\"G3778\"\\+w*, *" + }, + { + "verseNum": 5, + "text": "\\+w yet|strong=\"G1065\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w widow|strong=\"G5503\"\\+w* \\+w bothers|strong=\"G3930\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1473\"\\+w* defend \\+w her|strong=\"G1438\"\\+w*, \\+w or|strong=\"G3361\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w she|strong=\"G2443\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w wear|strong=\"G5299\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w out|strong=\"G2064\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w her|strong=\"G1438\"\\+w* \\+w continual|strong=\"G5056\"\\+w* \\+w coming|strong=\"G2064\"\\+w*.’”*" + }, + { + "verseNum": 6, + "text": "The|strong=\"G1161\"* Lord|strong=\"G2962\"* said|strong=\"G3004\"*, “Listen \\+w to|strong=\"G3004\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w the|strong=\"G1161\"\\+w* unrighteous \\+w judge|strong=\"G2923\"\\+w* \\+w says|strong=\"G3004\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "Won’\\+w t|strong=\"G3588\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w avenge|strong=\"G1557\"\\+w* \\+w his|strong=\"G1909\"\\+w* \\+w chosen|strong=\"G1588\"\\+w* ones \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* crying \\+w out|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w night|strong=\"G3571\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w yet|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w exercises|strong=\"G4160\"\\+w* \\+w patience|strong=\"G3114\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*? *" + }, + { + "verseNum": 8, + "text": "\\+w I|strong=\"G3754\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G3754\"\\+w* \\+w will|strong=\"G1093\"\\+w* \\+w avenge|strong=\"G1557\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w quickly|strong=\"G5034\"\\+w*. \\+w Nevertheless|strong=\"G4133\"\\+w*, \\+w when|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w comes|strong=\"G2064\"\\+w*, \\+w will|strong=\"G1093\"\\+w* \\+w he|strong=\"G3754\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w*?”*" + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* also|strong=\"G2532\"* spoke|strong=\"G3004\"* this|strong=\"G3778\"* parable|strong=\"G3850\"* to|strong=\"G4314\"* certain|strong=\"G5100\"* people|strong=\"G1510\"* who|strong=\"G3588\"* were|strong=\"G1510\"* convinced|strong=\"G3982\"* of|strong=\"G2532\"* their|strong=\"G1438\"* own|strong=\"G1438\"* righteousness, and|strong=\"G2532\"* who|strong=\"G3588\"* despised|strong=\"G1848\"* all|strong=\"G2532\"* others|strong=\"G3062\"*:" + }, + { + "verseNum": 10, + "text": "“\\+w Two|strong=\"G1417\"\\+w* \\+w men|strong=\"G1417\"\\+w* \\+w went|strong=\"G2532\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w temple|strong=\"G2411\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w pray|strong=\"G4336\"\\+w*; \\+w one|strong=\"G1520\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w Pharisee|strong=\"G5330\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G2087\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w tax|strong=\"G5057\"\\+w* \\+w collector|strong=\"G5057\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w Pharisee|strong=\"G5330\"\\+w* \\+w stood|strong=\"G2476\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w prayed|strong=\"G4336\"\\+w* \\+w by|strong=\"G4314\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w this|strong=\"G3778\"\\+w*: ‘\\+w God|strong=\"G2316\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w thank|strong=\"G2168\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rest|strong=\"G3062\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w men|strong=\"G3778\"\\+w*: extortionists, unrighteous, \\+w adulterers|strong=\"G3432\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w tax|strong=\"G5057\"\\+w* \\+w collector|strong=\"G5057\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w I|strong=\"G3745\"\\+w* \\+w fast|strong=\"G3522\"\\+w* \\+w twice|strong=\"G1364\"\\+w* \\+w a|strong=\"G2932\"\\+w* \\+w week|strong=\"G4521\"\\+w*. \\+w I|strong=\"G3745\"\\+w* \\+w give|strong=\"G3956\"\\+w* tithes \\+w of|strong=\"G3956\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w I|strong=\"G3745\"\\+w* \\+w get|strong=\"G2932\"\\+w*.’ *" + }, + { + "verseNum": 13, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w tax|strong=\"G5057\"\\+w* \\+w collector|strong=\"G5057\"\\+w*, \\+w standing|strong=\"G2476\"\\+w* \\+w far|strong=\"G3113\"\\+w* \\+w away|strong=\"G3113\"\\+w*, wouldn’\\+w t|strong=\"G3588\"\\+w* \\+w even|strong=\"G3761\"\\+w* \\+w lift|strong=\"G1869\"\\+w* \\+w up|strong=\"G1869\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w eyes|strong=\"G3788\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w beat|strong=\"G5180\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w chest|strong=\"G4738\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w God|strong=\"G2316\"\\+w*, \\+w be|strong=\"G3756\"\\+w* \\+w merciful|strong=\"G2433\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w a|strong=\"G1519\"\\+w* sinner!’ *" + }, + { + "verseNum": 14, + "text": "\\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w this|strong=\"G3778\"\\+w* \\+w man|strong=\"G3778\"\\+w* \\+w went|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w justified|strong=\"G1344\"\\+w* \\+w rather|strong=\"G2228\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w other|strong=\"G1161\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w exalts|strong=\"G5312\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w will|strong=\"G3956\"\\+w* \\+w be|strong=\"G3956\"\\+w* \\+w humbled|strong=\"G5013\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w humbles|strong=\"G5013\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w will|strong=\"G3956\"\\+w* \\+w be|strong=\"G3956\"\\+w* \\+w exalted|strong=\"G5312\"\\+w*.”*" + }, + { + "verseNum": 15, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* also|strong=\"G2532\"* bringing|strong=\"G4374\"* their|strong=\"G2532\"* babies|strong=\"G1025\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* touch them|strong=\"G3588\"*. But|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* saw|strong=\"G3708\"* it|strong=\"G2532\"*, they|strong=\"G2532\"* rebuked|strong=\"G2008\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "Jesus|strong=\"G2424\"* summoned|strong=\"G4341\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Allow \\+w the|strong=\"G2532\"\\+w* little \\+w children|strong=\"G3813\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w hinder|strong=\"G2967\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w belongs|strong=\"G1510\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w such|strong=\"G5108\"\\+w* \\+w as|strong=\"G1161\"\\+w* \\+w these|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w Most|strong=\"G2316\"\\+w* \\+w certainly|strong=\"G3756\"\\+w*, \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w whoever|strong=\"G3739\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w like|strong=\"G5613\"\\+w* \\+w a|strong=\"G5613\"\\+w* little \\+w child|strong=\"G3813\"\\+w*, \\+w he|strong=\"G3739\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G5613\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w it|strong=\"G3739\"\\+w*.”*" + }, + { + "verseNum": 18, + "text": "A|strong=\"G2532\"* certain|strong=\"G5100\"* ruler asked|strong=\"G1905\"* him|strong=\"G1905\"*, saying|strong=\"G3004\"*, “Good|strong=\"G5101\"* Teacher|strong=\"G1320\"*, what|strong=\"G5101\"* shall|strong=\"G2532\"* I|strong=\"G2532\"* do|strong=\"G4160\"* to|strong=\"G2532\"* inherit|strong=\"G2816\"* eternal life|strong=\"G2222\"*?”" + }, + { + "verseNum": 19, + "text": "Jesus|strong=\"G2424\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w call|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w good|strong=\"G5101\"\\+w*? \\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w good|strong=\"G5101\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w one|strong=\"G1520\"\\+w*: \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w You|strong=\"G4771\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w commandments|strong=\"G1785\"\\+w*: ‘Don’\\+w t|strong=\"G3588\"\\+w* \\+w commit|strong=\"G3431\"\\+w* \\+w adultery|strong=\"G3431\"\\+w*,’ ‘Don’\\+w t|strong=\"G3588\"\\+w* \\+w murder|strong=\"G5407\"\\+w*,’ ‘Don’\\+w t|strong=\"G3588\"\\+w* \\+w steal|strong=\"G2813\"\\+w*,’ ‘Don’\\+w t|strong=\"G3588\"\\+w* \\+w give|strong=\"G5576\"\\+w* \\+w false|strong=\"G5576\"\\+w* \\+w testimony|strong=\"G5576\"\\+w*,’ ‘\\+w Honor|strong=\"G5091\"\\+w* \\+w your|strong=\"G5091\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G5091\"\\+w* \\+w mother|strong=\"G3384\"\\+w*.’”*+ 18:20 Exodus 20:12-16; Deuteronomy 5:16-20*" + }, + { + "verseNum": 21, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"*, “I|strong=\"G1473\"* have|strong=\"G1473\"* observed|strong=\"G5442\"* all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"* from|strong=\"G1537\"* my|strong=\"G3956\"* youth|strong=\"G3503\"* up|strong=\"G1537\"*.”" + }, + { + "verseNum": 22, + "text": "When|strong=\"G1161\"* Jesus|strong=\"G2424\"* heard these|strong=\"G3956\"* things|strong=\"G3956\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w You|strong=\"G4771\"\\+w* \\+w still|strong=\"G2089\"\\+w* \\+w lack|strong=\"G3007\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w thing|strong=\"G1520\"\\+w*. \\+w Sell|strong=\"G4453\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w distribute|strong=\"G1239\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w poor|strong=\"G4434\"\\+w*. \\+w Then|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*; \\+w then|strong=\"G2532\"\\+w* \\+w come|strong=\"G1204\"\\+w*, \\+w follow|strong=\"G1161\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* he|strong=\"G1161\"* heard these|strong=\"G3778\"* things|strong=\"G3778\"*, he|strong=\"G1161\"* became|strong=\"G1096\"* very|strong=\"G4970\"* sad|strong=\"G4036\"*, for|strong=\"G1063\"* he|strong=\"G1161\"* was|strong=\"G1510\"* very|strong=\"G4970\"* rich|strong=\"G4145\"*." + }, + { + "verseNum": 24, + "text": "Jesus|strong=\"G2424\"*, seeing|strong=\"G3708\"* that|strong=\"G3588\"* he|strong=\"G1161\"* became|strong=\"G3588\"* very|strong=\"G3588\"* sad, said|strong=\"G3004\"*, “\\+w How|strong=\"G4459\"\\+w* \\+w hard|strong=\"G1423\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w riches|strong=\"G5536\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1531\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’\\+w s|strong=\"G2192\"\\+w* Kingdom! *" + }, + { + "verseNum": 25, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w it|strong=\"G1063\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w easier|strong=\"G2123\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w camel|strong=\"G2574\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w a|strong=\"G1519\"\\+w* needle’s eye \\+w than|strong=\"G2228\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w rich|strong=\"G4145\"\\+w* \\+w man|strong=\"G4145\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom.”*" + }, + { + "verseNum": 26, + "text": "Those|strong=\"G3588\"* who|strong=\"G5101\"* heard it|strong=\"G2532\"* said|strong=\"G3004\"*, “Then|strong=\"G2532\"* who|strong=\"G5101\"* can|strong=\"G1410\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*?”" + }, + { + "verseNum": 27, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* said|strong=\"G3004\"*, “\\+w The|strong=\"G1161\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* impossible \\+w with|strong=\"G3844\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w possible|strong=\"G1415\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w God|strong=\"G2316\"\\+w*.”*" + }, + { + "verseNum": 28, + "text": "Peter|strong=\"G4074\"* said|strong=\"G3004\"*, “Look|strong=\"G2400\"*, we|strong=\"G2249\"* have|strong=\"G1473\"* left everything and|strong=\"G1161\"* followed you|strong=\"G4771\"*.”" + }, + { + "verseNum": 29, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Most|strong=\"G2316\"\\+w* certainly \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w there|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w has|strong=\"G2316\"\\+w* left \\+w house|strong=\"G3614\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w wife|strong=\"G1135\"\\+w*, \\+w or|strong=\"G2228\"\\+w* brothers, \\+w or|strong=\"G2228\"\\+w* \\+w parents|strong=\"G1118\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w children|strong=\"G5043\"\\+w*, \\+w for|strong=\"G1752\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom’s \\+w sake|strong=\"G1752\"\\+w*, *" + }, + { + "verseNum": 30, + "text": "\\+w who|strong=\"G3739\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* receive \\+w many|strong=\"G4179\"\\+w* \\+w times|strong=\"G2540\"\\+w* \\+w more|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w time|strong=\"G2540\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* world \\+w to|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w*, eternal \\+w life|strong=\"G2222\"\\+w*.”*" + }, + { + "verseNum": 31, + "text": "He|strong=\"G2532\"* took|strong=\"G3880\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"* aside|strong=\"G3880\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Behold|strong=\"G2400\"\\+w*, \\+w we|strong=\"G2532\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w going|strong=\"G2532\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w concerning|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3956\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w completed|strong=\"G5055\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Gentiles|strong=\"G1484\"\\+w*, \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w mocked|strong=\"G1702\"\\+w*, treated shamefully, \\+w and|strong=\"G2532\"\\+w* \\+w spit|strong=\"G1716\"\\+w* \\+w on|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w scourge|strong=\"G3146\"\\+w* \\+w and|strong=\"G2532\"\\+w* kill \\+w him|strong=\"G3588\"\\+w*. \\+w On|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w third|strong=\"G5154\"\\+w* \\+w day|strong=\"G2250\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rise|strong=\"G2250\"\\+w* \\+w again|strong=\"G2532\"\\+w*.”*" + }, + { + "verseNum": 34, + "text": "They|strong=\"G2532\"* understood|strong=\"G4920\"* none|strong=\"G3762\"* of|strong=\"G2532\"* these|strong=\"G3778\"* things|strong=\"G3778\"*. This|strong=\"G3778\"* saying|strong=\"G3004\"* was|strong=\"G1510\"* hidden|strong=\"G2928\"* from|strong=\"G2532\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* understand|strong=\"G4920\"* the|strong=\"G2532\"* things|strong=\"G3778\"* that|strong=\"G3588\"* were|strong=\"G1510\"* said|strong=\"G3004\"*." + }, + { + "verseNum": 35, + "text": "As|strong=\"G1519\"* he|strong=\"G1161\"* came|strong=\"G1096\"* near|strong=\"G1448\"* Jericho|strong=\"G2410\"*, a|strong=\"G1096\"* certain|strong=\"G5100\"* blind|strong=\"G5185\"* man|strong=\"G5100\"* sat|strong=\"G2521\"* by|strong=\"G1722\"* the|strong=\"G1722\"* road|strong=\"G3598\"*, begging|strong=\"G1871\"*." + }, + { + "verseNum": 36, + "text": "Hearing a|strong=\"G1510\"* multitude|strong=\"G3793\"* going|strong=\"G3778\"* by|strong=\"G1510\"*, he|strong=\"G1161\"* asked|strong=\"G4441\"* what|strong=\"G5101\"* this|strong=\"G3778\"* meant|strong=\"G1510\"*." + }, + { + "verseNum": 37, + "text": "They|strong=\"G1161\"* told him|strong=\"G3588\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* of|strong=\"G2424\"* Nazareth|strong=\"G3480\"* was|strong=\"G3588\"* passing|strong=\"G3928\"* by|strong=\"G2424\"*." + }, + { + "verseNum": 38, + "text": "He|strong=\"G2532\"* cried|strong=\"G2532\"* out|strong=\"G2532\"*, “Jesus|strong=\"G2424\"*, you|strong=\"G3004\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*, have|strong=\"G2532\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* me|strong=\"G1473\"*!”" + }, + { + "verseNum": 39, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* led|strong=\"G4254\"* the|strong=\"G2532\"* way|strong=\"G4254\"* rebuked|strong=\"G2008\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* should|strong=\"G3588\"* be|strong=\"G2532\"* quiet|strong=\"G4601\"*; but|strong=\"G1161\"* he|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* all|strong=\"G2532\"* the|strong=\"G2532\"* more|strong=\"G3123\"*, “You|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*, have|strong=\"G2532\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* me|strong=\"G1473\"*!”" + }, + { + "verseNum": 40, + "text": "Standing|strong=\"G2476\"* still|strong=\"G2476\"*, Jesus|strong=\"G2424\"* commanded|strong=\"G2753\"* him|strong=\"G3588\"* to|strong=\"G4314\"* be|strong=\"G3588\"* brought|strong=\"G1161\"* to|strong=\"G4314\"* him|strong=\"G3588\"*. When|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G2424\"* come|strong=\"G1448\"* near|strong=\"G1448\"*, he|strong=\"G1161\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 41, + "text": "“\\+w What|strong=\"G5101\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w me|strong=\"G3004\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w do|strong=\"G4160\"\\+w*?”*" + }, + { + "verseNum": 42, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Receive|strong=\"G4102\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w sight|strong=\"G3588\"\\+w*. \\+w Your|strong=\"G2532\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w has|strong=\"G4102\"\\+w* \\+w healed|strong=\"G4982\"\\+w* \\+w you|strong=\"G4771\"\\+w*.” *" + }, + { + "verseNum": 43, + "text": "Immediately|strong=\"G3916\"* he|strong=\"G2532\"* received his|strong=\"G3956\"* sight|strong=\"G3588\"* and|strong=\"G2532\"* followed|strong=\"G2992\"* him|strong=\"G3588\"*, glorifying|strong=\"G1392\"* God|strong=\"G2316\"*. All|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* it|strong=\"G2532\"*, praised|strong=\"G1392\"* God|strong=\"G2316\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* entered|strong=\"G1525\"* and|strong=\"G2532\"* was|strong=\"G3588\"* passing|strong=\"G1330\"* through|strong=\"G1330\"* Jericho|strong=\"G2410\"*." + }, + { + "verseNum": 2, + "text": "There|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* man|strong=\"G4145\"* named|strong=\"G3686\"* Zacchaeus|strong=\"G2195\"*. He|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* chief|strong=\"G2532\"* tax collector, and|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G1510\"* rich|strong=\"G4145\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* was|strong=\"G1510\"* trying|strong=\"G2212\"* to|strong=\"G2532\"* see|strong=\"G3708\"* who|strong=\"G5101\"* Jesus|strong=\"G2424\"* was|strong=\"G1510\"*, and|strong=\"G2532\"* couldn’t|strong=\"G3588\"* because|strong=\"G3754\"* of|strong=\"G2532\"* the|strong=\"G2532\"* crowd|strong=\"G3793\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* short|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"G2532\"* ran|strong=\"G4390\"* on|strong=\"G1909\"* ahead|strong=\"G1715\"* and|strong=\"G2532\"* climbed up|strong=\"G1519\"* into|strong=\"G1519\"* a|strong=\"G2532\"* sycamore|strong=\"G4809\"* tree|strong=\"G4809\"* to|strong=\"G1519\"* see|strong=\"G3708\"* him|strong=\"G3588\"*, for|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G3588\"* going|strong=\"G3195\"* to|strong=\"G1519\"* pass|strong=\"G1330\"* that|strong=\"G3754\"* way|strong=\"G1330\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"G5613\"* Jesus|strong=\"G2424\"* came|strong=\"G2064\"* to|strong=\"G4314\"* the|strong=\"G1722\"* place|strong=\"G5117\"*, he|strong=\"G2532\"* looked|strong=\"G2532\"* up|strong=\"G1210\"* and|strong=\"G2532\"* saw|strong=\"G2424\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “\\+w Zacchaeus|strong=\"G2195\"\\+w*, \\+w hurry|strong=\"G4692\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w down|strong=\"G2597\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w today|strong=\"G4594\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w stay|strong=\"G3306\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w house|strong=\"G3624\"\\+w*.” *" + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* hurried|strong=\"G4692\"*, came|strong=\"G2597\"* down|strong=\"G2597\"*, and|strong=\"G2532\"* received|strong=\"G5264\"* him|strong=\"G2532\"* joyfully|strong=\"G5463\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* it|strong=\"G2532\"*, they|strong=\"G2532\"* all|strong=\"G3956\"* murmured|strong=\"G1234\"*, saying|strong=\"G3004\"*, “He|strong=\"G2532\"* has|strong=\"G3708\"* gone|strong=\"G1525\"* in|strong=\"G1525\"* to|strong=\"G2532\"* lodge|strong=\"G2647\"* with|strong=\"G3844\"* a|strong=\"G2532\"* man|strong=\"G3956\"* who|strong=\"G3748\"* is|strong=\"G3956\"* a|strong=\"G2532\"* sinner.”" + }, + { + "verseNum": 8, + "text": "Zacchaeus|strong=\"G2195\"* stood|strong=\"G2476\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, “Behold|strong=\"G2400\"*, Lord|strong=\"G2962\"*, half|strong=\"G2255\"* of|strong=\"G2532\"* my|strong=\"G3708\"* goods I|strong=\"G1473\"* give|strong=\"G1325\"* to|strong=\"G4314\"* the|strong=\"G2532\"* poor|strong=\"G4434\"*. If|strong=\"G1487\"* I|strong=\"G1473\"* have|strong=\"G2532\"* wrongfully exacted anything|strong=\"G5100\"* of|strong=\"G2532\"* anyone|strong=\"G5100\"*, I|strong=\"G1473\"* restore four|strong=\"G5073\"* times|strong=\"G5073\"* as|strong=\"G1161\"* much|strong=\"G5073\"*.”" + }, + { + "verseNum": 9, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “\\+w Today|strong=\"G4594\"\\+w*, \\+w salvation|strong=\"G4991\"\\+w* \\+w has|strong=\"G1096\"\\+w* \\+w come|strong=\"G1096\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w house|strong=\"G3624\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* Abraham. *" + }, + { + "verseNum": 10, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w save|strong=\"G4982\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w was|strong=\"G3588\"\\+w* lost.” *" + }, + { + "verseNum": 11, + "text": "As|strong=\"G1161\"* they|strong=\"G2532\"* heard these|strong=\"G3778\"* things|strong=\"G3778\"*, he|strong=\"G2532\"* went|strong=\"G2532\"* on|strong=\"G1161\"* and|strong=\"G2532\"* told|strong=\"G3004\"* a|strong=\"G2532\"* parable|strong=\"G3850\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* near|strong=\"G1451\"* Jerusalem|strong=\"G2419\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* supposed|strong=\"G1380\"* that|strong=\"G3754\"* God|strong=\"G2316\"*’s Kingdom would|strong=\"G3195\"* be|strong=\"G1510\"* revealed immediately|strong=\"G3916\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"*, “\\+w A|strong=\"G2532\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w nobleman|strong=\"G2104\"\\+w* \\+w went|strong=\"G4198\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* far \\+w country|strong=\"G5561\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w a|strong=\"G2532\"\\+w* kingdom \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w return|strong=\"G5290\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w them|strong=\"G1325\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w mina|strong=\"G3414\"\\+w* coins, *+ 19:13 10 minas was more than 3 years’ wages for an agricultural laborer. * \\+w and|strong=\"G2532\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w them|strong=\"G1325\"\\+w*, ‘Conduct \\+w business|strong=\"G4231\"\\+w* \\+w until|strong=\"G2532\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w come|strong=\"G2064\"\\+w*.’ *" + }, + { + "verseNum": 14, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w his|strong=\"G1909\"\\+w* \\+w citizens|strong=\"G4177\"\\+w* \\+w hated|strong=\"G3404\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w an|strong=\"G2532\"\\+w* envoy \\+w after|strong=\"G3694\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w We|strong=\"G2249\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w man|strong=\"G3778\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w reign|strong=\"G2532\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w us|strong=\"G3004\"\\+w*.’*" + }, + { + "verseNum": 15, + "text": "“\\+w When|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w come|strong=\"G1096\"\\+w* \\+w back|strong=\"G2983\"\\+w* \\+w again|strong=\"G2532\"\\+w*, \\+w having|strong=\"G2532\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w the|strong=\"G1722\"\\+w* kingdom, \\+w he|strong=\"G2532\"\\+w* \\+w commanded|strong=\"G1325\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w servants|strong=\"G1401\"\\+w*, \\+w to|strong=\"G2443\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w the|strong=\"G1722\"\\+w* money, \\+w to|strong=\"G2443\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w called|strong=\"G3004\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w might|strong=\"G2532\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w had|strong=\"G2532\"\\+w* gained \\+w by|strong=\"G1722\"\\+w* conducting \\+w business|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w The|strong=\"G1161\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w came|strong=\"G3854\"\\+w* \\+w before|strong=\"G4413\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w your|strong=\"G2962\"\\+w* \\+w mina|strong=\"G3414\"\\+w* \\+w has|strong=\"G2962\"\\+w* \\+w made|strong=\"G1161\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w more|strong=\"G4333\"\\+w* \\+w minas|strong=\"G3414\"\\+w*.’*" + }, + { + "verseNum": 17, + "text": "“\\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G2532\"\\+w*, ‘\\+w Well|strong=\"G2532\"\\+w* \\+w done|strong=\"G1096\"\\+w*, \\+w you|strong=\"G3754\"\\+w* \\+w good|strong=\"G2095\"\\+w* \\+w servant|strong=\"G1401\"\\+w*! \\+w Because|strong=\"G3754\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w found|strong=\"G1096\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w very|strong=\"G2532\"\\+w* \\+w little|strong=\"G1646\"\\+w*, \\+w you|strong=\"G3754\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w over|strong=\"G1883\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w cities|strong=\"G4172\"\\+w*.’ *" + }, + { + "verseNum": 18, + "text": "“\\+w The|strong=\"G2532\"\\+w* \\+w second|strong=\"G1208\"\\+w* \\+w came|strong=\"G2064\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Your|strong=\"G2962\"\\+w* \\+w mina|strong=\"G3414\"\\+w*, \\+w Lord|strong=\"G2962\"\\+w*, \\+w has|strong=\"G2962\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w minas|strong=\"G3414\"\\+w*.’ *" + }, + { + "verseNum": 19, + "text": "“\\+w So|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G2532\"\\+w*, ‘\\+w And|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G3778\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w over|strong=\"G1883\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w cities|strong=\"G4172\"\\+w*.’ *" + }, + { + "verseNum": 20, + "text": "\\+w Another|strong=\"G2087\"\\+w* \\+w came|strong=\"G2064\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w behold|strong=\"G2400\"\\+w*, \\+w your|strong=\"G2192\"\\+w* \\+w mina|strong=\"G3414\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w kept|strong=\"G3739\"\\+w* \\+w laid|strong=\"G2532\"\\+w* away \\+w in|strong=\"G1722\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w handkerchief|strong=\"G4676\"\\+w*, *" + }, + { + "verseNum": 21, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w feared|strong=\"G5399\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w an|strong=\"G2532\"\\+w* exacting \\+w man|strong=\"G3739\"\\+w*. \\+w You|strong=\"G4771\"\\+w* \\+w take|strong=\"G2532\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* didn’t \\+w lay|strong=\"G5087\"\\+w* \\+w down|strong=\"G5087\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w reap|strong=\"G2325\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* didn’t \\+w sow|strong=\"G4687\"\\+w*.’*" + }, + { + "verseNum": 22, + "text": "“\\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w your|strong=\"G5087\"\\+w* own \\+w mouth|strong=\"G4750\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w wicked|strong=\"G4190\"\\+w* \\+w servant|strong=\"G1401\"\\+w*! \\+w You|strong=\"G4771\"\\+w* \\+w knew|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w an|strong=\"G2532\"\\+w* exacting \\+w man|strong=\"G3739\"\\+w*, taking \\+w up|strong=\"G2532\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w lay|strong=\"G5087\"\\+w* \\+w down|strong=\"G5087\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w reaping|strong=\"G2325\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w sow|strong=\"G4687\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w why|strong=\"G5101\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G1325\"\\+w* deposit \\+w my|strong=\"G1325\"\\+w* money \\+w in|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w bank|strong=\"G5132\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w my|strong=\"G1325\"\\+w* \\+w coming|strong=\"G2064\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w might|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* earned \\+w interest|strong=\"G5110\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w it|strong=\"G2532\"\\+w*?’ *" + }, + { + "verseNum": 24, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w stood|strong=\"G3936\"\\+w* \\+w by|strong=\"G3936\"\\+w*, ‘\\+w Take|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w mina|strong=\"G3414\"\\+w* away \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w minas|strong=\"G3414\"\\+w*.’*" + }, + { + "verseNum": 25, + "text": "“\\+w They|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G2532\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w minas|strong=\"G3414\"\\+w*!’ *" + }, + { + "verseNum": 26, + "text": "‘\\+w For|strong=\"G3754\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w*, \\+w will|strong=\"G2532\"\\+w* \\+w more|strong=\"G2192\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* taken away \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w bring|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w enemies|strong=\"G2190\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w mine|strong=\"G1473\"\\+w* \\+w who|strong=\"G3588\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w reign|strong=\"G2532\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w here|strong=\"G5602\"\\+w*, \\+w and|strong=\"G2532\"\\+w* kill \\+w them|strong=\"G3588\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w me|strong=\"G1473\"\\+w*.’”*" + }, + { + "verseNum": 28, + "text": "Having|strong=\"G2532\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, he|strong=\"G2532\"* went|strong=\"G4198\"* on|strong=\"G1519\"* ahead|strong=\"G1715\"*, going|strong=\"G4198\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"G5613\"* he|strong=\"G2532\"* came|strong=\"G1096\"* near|strong=\"G1448\"* to|strong=\"G1519\"* Bethsphage+ 19:29 TR, NU read “Bethpage” instead of “Bethsphage”* and|strong=\"G2532\"* Bethany, at|strong=\"G1519\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"* that|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G2564\"* Olivet, he|strong=\"G2532\"* sent|strong=\"G2532\"* two|strong=\"G1417\"* of|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*," + }, + { + "verseNum": 30, + "text": "saying|strong=\"G3004\"*, “\\+w Go|strong=\"G5217\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w way|strong=\"G1722\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w village|strong=\"G2968\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w other|strong=\"G3739\"\\+w* side, \\+w in|strong=\"G1722\"\\+w* \\+w which|strong=\"G3739\"\\+w*, \\+w as|strong=\"G1519\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w enter|strong=\"G1531\"\\+w*, \\+w you|strong=\"G3739\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w colt|strong=\"G4454\"\\+w* \\+w tied|strong=\"G1210\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w man|strong=\"G3762\"\\+w* \\+w has|strong=\"G3739\"\\+w* \\+w ever|strong=\"G1519\"\\+w* \\+w sat|strong=\"G2523\"\\+w* \\+w upon|strong=\"G1909\"\\+w*. \\+w Untie|strong=\"G3089\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w bring|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w asks|strong=\"G2065\"\\+w* \\+w you|strong=\"G5210\"\\+w*, ‘\\+w Why|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w untying|strong=\"G3089\"\\+w* \\+w it|strong=\"G2532\"\\+w*?’ \\+w say|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*: ‘\\+w The|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w needs|strong=\"G5532\"\\+w* \\+w it|strong=\"G2532\"\\+w*.’”*" + }, + { + "verseNum": 32, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* sent went|strong=\"G3588\"* away and|strong=\"G1161\"* found|strong=\"G2147\"* things|strong=\"G3588\"* just|strong=\"G2531\"* as|strong=\"G2531\"* he|strong=\"G1161\"* had|strong=\"G3588\"* told|strong=\"G3004\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "As|strong=\"G1161\"* they|strong=\"G1161\"* were|strong=\"G3588\"* untying|strong=\"G3089\"* the|strong=\"G1161\"* colt|strong=\"G4454\"*, its|strong=\"G3089\"* owners|strong=\"G2962\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “Why|strong=\"G5101\"* are|strong=\"G3588\"* you|strong=\"G3004\"* untying|strong=\"G3089\"* the|strong=\"G1161\"* colt|strong=\"G4454\"*?”" + }, + { + "verseNum": 34, + "text": "They|strong=\"G1161\"* said|strong=\"G3004\"*, “The|strong=\"G1161\"* Lord|strong=\"G2962\"* needs|strong=\"G5532\"* it|strong=\"G3754\"*.”" + }, + { + "verseNum": 35, + "text": "Then|strong=\"G2532\"* they|strong=\"G2532\"* brought|strong=\"G2532\"* it|strong=\"G2532\"* to|strong=\"G4314\"* Jesus|strong=\"G2424\"*. They|strong=\"G2532\"* threw|strong=\"G1977\"* their|strong=\"G2532\"* cloaks|strong=\"G2440\"* on|strong=\"G1909\"* the|strong=\"G2532\"* colt|strong=\"G4454\"* and|strong=\"G2532\"* sat|strong=\"G2532\"* Jesus|strong=\"G2424\"* on|strong=\"G1909\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 36, + "text": "As|strong=\"G1722\"* he|strong=\"G1161\"* went|strong=\"G4198\"*, they|strong=\"G1161\"* spread|strong=\"G5291\"* their|strong=\"G1438\"* cloaks|strong=\"G2440\"* on|strong=\"G1722\"* the|strong=\"G1722\"* road|strong=\"G3598\"*." + }, + { + "verseNum": 37, + "text": "As|strong=\"G1161\"* he|strong=\"G1161\"* was|strong=\"G3588\"* now|strong=\"G1161\"* getting near|strong=\"G1448\"*, at|strong=\"G4314\"* the|strong=\"G3956\"* descent|strong=\"G2600\"* of|strong=\"G4012\"* the|strong=\"G3956\"* Mount|strong=\"G3735\"* of|strong=\"G4012\"* Olives|strong=\"G1636\"*, the|strong=\"G3956\"* whole|strong=\"G3956\"* multitude|strong=\"G4128\"* of|strong=\"G4012\"* the|strong=\"G3956\"* disciples|strong=\"G3101\"* began|strong=\"G1161\"* to|strong=\"G4314\"* rejoice|strong=\"G5463\"* and|strong=\"G1161\"* praise God|strong=\"G2316\"* with|strong=\"G4314\"* a|strong=\"G3708\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* for|strong=\"G4012\"* all|strong=\"G3956\"* the|strong=\"G3956\"* mighty|strong=\"G1411\"* works|strong=\"G1411\"* which|strong=\"G3739\"* they|strong=\"G1161\"* had|strong=\"G2316\"* seen|strong=\"G3708\"*," + }, + { + "verseNum": 38, + "text": "saying|strong=\"G3004\"*, “Blessed|strong=\"G2127\"* is|strong=\"G3588\"* the|strong=\"G1722\"* King|strong=\"G3588\"* who|strong=\"G3588\"* comes|strong=\"G2064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*!+ 19:38 Psalms 118:26* Peace|strong=\"G1515\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*, and|strong=\"G2532\"* glory|strong=\"G1391\"* in|strong=\"G1722\"* the|strong=\"G1722\"* highest|strong=\"G5310\"*!”" + }, + { + "verseNum": 39, + "text": "Some|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* from|strong=\"G2532\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, rebuke|strong=\"G2008\"* your|strong=\"G2532\"* disciples|strong=\"G3101\"*!”" + }, + { + "verseNum": 40, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w silent|strong=\"G4623\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w stones|strong=\"G3037\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w cry|strong=\"G2896\"\\+w* \\+w out|strong=\"G2896\"\\+w*.”*" + }, + { + "verseNum": 41, + "text": "When|strong=\"G5613\"* he|strong=\"G2532\"* came|strong=\"G2532\"* near|strong=\"G1448\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* city|strong=\"G4172\"* and|strong=\"G2532\"* wept|strong=\"G2799\"* over|strong=\"G1909\"* it|strong=\"G2532\"*," + }, + { + "verseNum": 42, + "text": "saying|strong=\"G3004\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w had|strong=\"G2532\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w today|strong=\"G2250\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3588\"\\+w* belong \\+w to|strong=\"G4314\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w peace|strong=\"G1515\"\\+w*! \\+w But|strong=\"G1161\"\\+w* \\+w now|strong=\"G1161\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w hidden|strong=\"G2928\"\\+w* \\+w from|strong=\"G1515\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w eyes|strong=\"G3788\"\\+w*. *" + }, + { + "verseNum": 43, + "text": "\\+w For|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2240\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w enemies|strong=\"G2190\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w throw|strong=\"G3925\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w barricade|strong=\"G5482\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w surround|strong=\"G4033\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w hem|strong=\"G4912\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w every|strong=\"G2532\"\\+w* \\+w side|strong=\"G3840\"\\+w*, *" + }, + { + "verseNum": 44, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* dash \\+w you|strong=\"G4771\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w children|strong=\"G5043\"\\+w* \\+w within|strong=\"G1722\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w ground|strong=\"G1474\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* leave \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w one|strong=\"G3739\"\\+w* \\+w stone|strong=\"G3037\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w another|strong=\"G3037\"\\+w*, \\+w because|strong=\"G1909\"\\+w* \\+w you|strong=\"G4771\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w time|strong=\"G2540\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w visitation|strong=\"G1984\"\\+w*.”*" + }, + { + "verseNum": 45, + "text": "He|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G2411\"* and|strong=\"G2532\"* began to|strong=\"G1519\"* drive|strong=\"G1544\"* out|strong=\"G1544\"* those|strong=\"G3588\"* who|strong=\"G3588\"* bought and|strong=\"G2532\"* sold|strong=\"G4453\"* in|strong=\"G1519\"* it|strong=\"G2532\"*," + }, + { + "verseNum": 46, + "text": "saying|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w My|strong=\"G1473\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w prayer|strong=\"G4335\"\\+w*,’ *+ 19:46 Isaiah 56:7* \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* ‘\\+w den|strong=\"G4693\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w robbers|strong=\"G3027\"\\+w*’!” *+ 19:46 Jeremiah 7:11*" + }, + { + "verseNum": 47, + "text": "He|strong=\"G2532\"* was|strong=\"G1510\"* teaching|strong=\"G1321\"* daily|strong=\"G2250\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, but|strong=\"G1161\"* the|strong=\"G1722\"* chief|strong=\"G4413\"* priests, the|strong=\"G1722\"* scribes|strong=\"G1122\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* leading|strong=\"G4413\"* men|strong=\"G4413\"* among|strong=\"G1722\"* the|strong=\"G1722\"* people|strong=\"G2992\"* sought|strong=\"G2212\"* to|strong=\"G2532\"* destroy him|strong=\"G3588\"*." + }, + { + "verseNum": 48, + "text": "They|strong=\"G2532\"* couldn’t|strong=\"G3588\"* find|strong=\"G2147\"* what|strong=\"G5101\"* they|strong=\"G2532\"* might|strong=\"G2532\"* do|strong=\"G4160\"*, for|strong=\"G1063\"* all|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"* hung on|strong=\"G4160\"* to|strong=\"G2532\"* every|strong=\"G2532\"* word|strong=\"G3588\"* that|strong=\"G3588\"* he|strong=\"G2532\"* said|strong=\"G2532\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "On|strong=\"G1722\"* one|strong=\"G1520\"* of|strong=\"G2250\"* those|strong=\"G3588\"* days|strong=\"G2250\"*, as|strong=\"G1722\"* he|strong=\"G2532\"* was|strong=\"G1096\"* teaching|strong=\"G1321\"* the|strong=\"G1722\"* people|strong=\"G2992\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* and|strong=\"G2532\"* preaching|strong=\"G2097\"* the|strong=\"G1722\"* Good|strong=\"G2097\"* News|strong=\"G2097\"*, the|strong=\"G1722\"*+ 20:1 TR adds “chief”* priests|strong=\"G2409\"* and|strong=\"G2532\"* scribes|strong=\"G1122\"* came|strong=\"G1096\"* to|strong=\"G2532\"* him|strong=\"G3588\"* with|strong=\"G1722\"* the|strong=\"G1722\"* elders|strong=\"G4245\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"G2532\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Tell|strong=\"G3004\"* us|strong=\"G1325\"*: by|strong=\"G1722\"* what|strong=\"G5101\"* authority|strong=\"G1849\"* do|strong=\"G4160\"* you|strong=\"G4771\"* do|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3778\"*? Or|strong=\"G2228\"* who|strong=\"G5101\"* is|strong=\"G1510\"* giving|strong=\"G1325\"* you|strong=\"G4771\"* this|strong=\"G3778\"* authority|strong=\"G1849\"*?”" + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G1438\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w ask|strong=\"G2065\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w one|strong=\"G1438\"\\+w* \\+w question|strong=\"G2065\"\\+w*. \\+w Tell|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w*: *" + }, + { + "verseNum": 4, + "text": "\\+w the|strong=\"G1537\"\\+w* baptism \\+w of|strong=\"G1537\"\\+w* \\+w John|strong=\"G2491\"\\+w*, \\+w was|strong=\"G1510\"\\+w* \\+w it|strong=\"G1510\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w men|strong=\"G3588\"\\+w*?”*" + }, + { + "verseNum": 5, + "text": "They|strong=\"G1161\"* reasoned|strong=\"G4817\"* with|strong=\"G4314\"* themselves|strong=\"G1438\"*, saying|strong=\"G3004\"*, “If|strong=\"G1437\"* we|strong=\"G1437\"* say|strong=\"G3004\"*, ‘From|strong=\"G1537\"* heaven|strong=\"G3772\"*,’ he|strong=\"G1161\"* will|strong=\"G5101\"* say|strong=\"G3004\"*, ‘Why|strong=\"G5101\"* didn’t|strong=\"G3588\"* you|strong=\"G1437\"* believe|strong=\"G4100\"* him|strong=\"G3588\"*?’" + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* if|strong=\"G1437\"* we|strong=\"G2249\"* say|strong=\"G3004\"*, ‘From|strong=\"G1537\"* men|strong=\"G3588\"*,’ all|strong=\"G1161\"* the|strong=\"G1537\"* people|strong=\"G2992\"* will|strong=\"G1510\"* stone|strong=\"G2642\"* us|strong=\"G3004\"*, for|strong=\"G1063\"* they|strong=\"G1161\"* are|strong=\"G1510\"* persuaded|strong=\"G3982\"* that|strong=\"G3588\"* John|strong=\"G2491\"* was|strong=\"G1510\"* a|strong=\"G1510\"* prophet|strong=\"G4396\"*.”" + }, + { + "verseNum": 7, + "text": "They|strong=\"G2532\"* answered that|strong=\"G2532\"* they|strong=\"G2532\"* didn’t know|strong=\"G1492\"* where|strong=\"G4159\"* it|strong=\"G2532\"* was|strong=\"G2532\"* from|strong=\"G2532\"*." + }, + { + "verseNum": 8, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Neither|strong=\"G3761\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w what|strong=\"G4169\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* began|strong=\"G1161\"* to|strong=\"G4314\"* tell|strong=\"G3004\"* the|strong=\"G2532\"* people|strong=\"G2992\"* this|strong=\"G3778\"* parable|strong=\"G3850\"*: “\\+w A|strong=\"G2532\"\\+w* *+ 20:9 NU (in brackets) and TR add “certain”* \\+w man|strong=\"G3778\"\\+w* \\+w planted|strong=\"G5452\"\\+w* \\+w a|strong=\"G2532\"\\+w* vineyard \\+w and|strong=\"G2532\"\\+w* \\+w rented|strong=\"G1554\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w some|strong=\"G3588\"\\+w* farmers, \\+w and|strong=\"G2532\"\\+w* \\+w went|strong=\"G2532\"\\+w* \\+w into|strong=\"G4314\"\\+w* \\+w another|strong=\"G3588\"\\+w* country \\+w for|strong=\"G4314\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w long|strong=\"G2425\"\\+w* \\+w time|strong=\"G5550\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w At|strong=\"G4314\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w proper|strong=\"G2540\"\\+w* \\+w season|strong=\"G2540\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w sent|strong=\"G1821\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G2532\"\\+w* farmers \\+w to|strong=\"G4314\"\\+w* collect \\+w his|strong=\"G2532\"\\+w* share \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard. \\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* farmers \\+w beat|strong=\"G1194\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w sent|strong=\"G1821\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w away|strong=\"G1821\"\\+w* \\+w empty|strong=\"G2756\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w yet|strong=\"G2532\"\\+w* \\+w another|strong=\"G2087\"\\+w* \\+w servant|strong=\"G1401\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w beat|strong=\"G1194\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* treated \\+w him|strong=\"G3588\"\\+w* shamefully, \\+w and|strong=\"G2532\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w away|strong=\"G1821\"\\+w* \\+w empty|strong=\"G2756\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w yet|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w third|strong=\"G5154\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w wounded|strong=\"G5135\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w threw|strong=\"G1544\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w out|strong=\"G1544\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w The|strong=\"G1161\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1161\"\\+w* vineyard \\+w said|strong=\"G3004\"\\+w*, ‘\\+w What|strong=\"G5101\"\\+w* \\+w shall|strong=\"G5101\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w*? \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w send|strong=\"G3992\"\\+w* \\+w my|strong=\"G1473\"\\+w* beloved \\+w son|strong=\"G5207\"\\+w*. \\+w It|strong=\"G1161\"\\+w* \\+w may|strong=\"G3004\"\\+w* \\+w be|strong=\"G3588\"\\+w* \\+w that|strong=\"G3588\"\\+w* seeing \\+w him|strong=\"G3588\"\\+w*, \\+w they|strong=\"G1161\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w respect|strong=\"G1788\"\\+w* \\+w him|strong=\"G3588\"\\+w*.’*" + }, + { + "verseNum": 14, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* farmers \\+w saw|strong=\"G3708\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w they|strong=\"G1161\"\\+w* \\+w reasoned|strong=\"G1260\"\\+w* \\+w among|strong=\"G4314\"\\+w* \\+w themselves|strong=\"G3778\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w heir|strong=\"G2818\"\\+w*. \\+w Come|strong=\"G1096\"\\+w*, \\+w let|strong=\"G1096\"\\+w*’s kill \\+w him|strong=\"G3588\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w inheritance|strong=\"G2817\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w ours|strong=\"G1473\"\\+w*.’ *" + }, + { + "verseNum": 15, + "text": "\\+w Then|strong=\"G3767\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w threw|strong=\"G1544\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard \\+w and|strong=\"G2532\"\\+w* killed \\+w him|strong=\"G3588\"\\+w*. \\+w What|strong=\"G5101\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard \\+w do|strong=\"G4160\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*? *" + }, + { + "verseNum": 16, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* destroy \\+w these|strong=\"G3778\"\\+w* farmers, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard \\+w to|strong=\"G2532\"\\+w* \\+w others|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* looked|strong=\"G1689\"* at|strong=\"G1519\"* them|strong=\"G3588\"* and|strong=\"G1161\"* said|strong=\"G3004\"*, “\\+w Then|strong=\"G3767\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w written|strong=\"G1125\"\\+w*,*" + }, + { + "verseNum": 18, + "text": "\\+w Everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w falls|strong=\"G4098\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w stone|strong=\"G3037\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w be|strong=\"G3956\"\\+w* \\+w broken|strong=\"G4917\"\\+w* \\+w to|strong=\"G1909\"\\+w* \\+w pieces|strong=\"G4917\"\\+w*, *" + }, + { + "verseNum": 19, + "text": "The|strong=\"G1722\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G1722\"* scribes|strong=\"G1122\"* sought|strong=\"G2212\"* to|strong=\"G4314\"* lay|strong=\"G1911\"* hands|strong=\"G5495\"* on|strong=\"G1909\"* him|strong=\"G3588\"* that|strong=\"G3754\"* very|strong=\"G2532\"* hour|strong=\"G5610\"*, but|strong=\"G2532\"* they|strong=\"G2532\"* feared|strong=\"G5399\"* the|strong=\"G1722\"* people|strong=\"G2992\"*—for|strong=\"G1063\"* they|strong=\"G2532\"* knew|strong=\"G1097\"* he|strong=\"G2532\"* had|strong=\"G2532\"* spoken|strong=\"G3004\"* this|strong=\"G3778\"* parable|strong=\"G3850\"* against|strong=\"G1909\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"G2532\"* watched|strong=\"G3906\"* him|strong=\"G3588\"* and|strong=\"G2532\"* sent|strong=\"G2532\"* out|strong=\"G2532\"* spies|strong=\"G1455\"*, who|strong=\"G3588\"* pretended|strong=\"G5271\"* to|strong=\"G2443\"* be|strong=\"G1510\"* righteous|strong=\"G1342\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* trap him|strong=\"G3588\"* in|strong=\"G2532\"* something|strong=\"G1510\"* he|strong=\"G2532\"* said|strong=\"G2532\"*, so|strong=\"G2443\"* as|strong=\"G2532\"* to|strong=\"G2443\"* deliver|strong=\"G3860\"* him|strong=\"G3588\"* up|strong=\"G3860\"* to|strong=\"G2443\"* the|strong=\"G2532\"* power|strong=\"G1849\"* and|strong=\"G2532\"* authority|strong=\"G1849\"* of|strong=\"G3056\"* the|strong=\"G2532\"* governor|strong=\"G2232\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, we|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G3754\"* say|strong=\"G3004\"* and|strong=\"G2532\"* teach|strong=\"G1321\"* what|strong=\"G3588\"* is|strong=\"G3588\"* right|strong=\"G3723\"*, and|strong=\"G2532\"* aren’t|strong=\"G3588\"* partial|strong=\"G2983\"* to|strong=\"G2532\"* anyone, but|strong=\"G2532\"* truly|strong=\"G1909\"* teach|strong=\"G1321\"* the|strong=\"G2532\"* way|strong=\"G3598\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 22, + "text": "Is|strong=\"G1832\"* it|strong=\"G1325\"* lawful|strong=\"G1832\"* for|strong=\"G1832\"* us|strong=\"G1325\"* to|strong=\"G1325\"* pay|strong=\"G1325\"* taxes|strong=\"G5411\"* to|strong=\"G1325\"* Caesar|strong=\"G2541\"*, or|strong=\"G2228\"* not|strong=\"G3756\"*?”" + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* perceived|strong=\"G2657\"* their|strong=\"G1438\"* craftiness|strong=\"G3834\"*, and|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “Why \\+w do|strong=\"G3004\"\\+w* \\+w you|strong=\"G3004\"\\+w* test \\+w me|strong=\"G3004\"\\+w*? *" + }, + { + "verseNum": 24, + "text": "\\+w Show|strong=\"G1166\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w denarius|strong=\"G1220\"\\+w*. \\+w Whose|strong=\"G5101\"\\+w* \\+w image|strong=\"G1504\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w inscription|strong=\"G1923\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w on|strong=\"G1161\"\\+w* \\+w it|strong=\"G2532\"\\+w*?” *" + }, + { + "verseNum": 25, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w Then|strong=\"G2532\"\\+w* \\+w give|strong=\"G3004\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w Caesar|strong=\"G2541\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w Caesar|strong=\"G2541\"\\+w*’s, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s.”*" + }, + { + "verseNum": 26, + "text": "They|strong=\"G2532\"* weren’t|strong=\"G3588\"* able|strong=\"G2480\"* to|strong=\"G2532\"* trap him|strong=\"G3588\"* in|strong=\"G1909\"* his|strong=\"G1909\"* words|strong=\"G4487\"* before|strong=\"G1909\"* the|strong=\"G2532\"* people|strong=\"G2992\"*. They|strong=\"G2532\"* marveled|strong=\"G2296\"* at|strong=\"G1909\"* his|strong=\"G1909\"* answer and|strong=\"G2532\"* were|strong=\"G3588\"* silent|strong=\"G4601\"*." + }, + { + "verseNum": 27, + "text": "Some|strong=\"G5100\"* of|strong=\"G5100\"* the|strong=\"G1161\"* Sadducees|strong=\"G4523\"* came|strong=\"G4334\"* to|strong=\"G4334\"* him|strong=\"G3588\"*, those|strong=\"G3588\"* who|strong=\"G3588\"* deny|strong=\"G3588\"* that|strong=\"G3588\"* there|strong=\"G1161\"* is|strong=\"G1510\"* a|strong=\"G1510\"* resurrection." + }, + { + "verseNum": 28, + "text": "They|strong=\"G2532\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, Moses|strong=\"G3475\"* wrote|strong=\"G1125\"* to|strong=\"G2443\"* us|strong=\"G3004\"* that|strong=\"G2443\"* if|strong=\"G1437\"* a|strong=\"G2192\"* man|strong=\"G5100\"*’s|strong=\"G2192\"* brother dies having|strong=\"G2192\"* a|strong=\"G2192\"* wife|strong=\"G1135\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* is|strong=\"G1510\"* childless, his|strong=\"G2983\"* brother should|strong=\"G5100\"* take|strong=\"G2983\"* the|strong=\"G2532\"* wife|strong=\"G1135\"* and|strong=\"G2532\"* raise|strong=\"G2532\"* up|strong=\"G1817\"* children|strong=\"G4690\"* for|strong=\"G2532\"* his|strong=\"G2983\"* brother." + }, + { + "verseNum": 29, + "text": "There|strong=\"G2532\"* were|strong=\"G1510\"* therefore|strong=\"G3767\"* seven|strong=\"G2033\"* brothers. The|strong=\"G2532\"* first|strong=\"G4413\"* took|strong=\"G2983\"* a|strong=\"G2532\"* wife|strong=\"G1135\"*, and|strong=\"G2532\"* died|strong=\"G3588\"* childless." + }, + { + "verseNum": 30, + "text": "The|strong=\"G2532\"* second|strong=\"G1208\"* took|strong=\"G2532\"* her|strong=\"G3588\"* as|strong=\"G2532\"* wife, and|strong=\"G2532\"* he|strong=\"G2532\"* died|strong=\"G3588\"* childless." + }, + { + "verseNum": 31, + "text": "The|strong=\"G2532\"* third|strong=\"G5154\"* took|strong=\"G2983\"* her|strong=\"G1438\"*, and|strong=\"G2532\"* likewise|strong=\"G5615\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* all|strong=\"G2532\"* left|strong=\"G2641\"* no|strong=\"G3756\"* children|strong=\"G5043\"*, and|strong=\"G2532\"* died|strong=\"G3588\"*." + }, + { + "verseNum": 32, + "text": "Afterward|strong=\"G5305\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* also|strong=\"G2532\"* died|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "Therefore|strong=\"G3767\"* in|strong=\"G1722\"* the|strong=\"G1722\"* resurrection whose|strong=\"G5101\"* wife|strong=\"G1135\"* of|strong=\"G1722\"* them|strong=\"G3588\"* will|strong=\"G5101\"* she|strong=\"G1063\"* be|strong=\"G1096\"*? For|strong=\"G1063\"* the|strong=\"G1722\"* seven|strong=\"G2033\"* had|strong=\"G2192\"* her|strong=\"G1438\"* as|strong=\"G1722\"* a|strong=\"G2192\"* wife|strong=\"G1135\"*.”" + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w The|strong=\"G2532\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w this|strong=\"G3778\"\\+w* age \\+w marry|strong=\"G1060\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w given|strong=\"G1061\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w marriage|strong=\"G1061\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w considered|strong=\"G2661\"\\+w* \\+w worthy|strong=\"G2661\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w attain|strong=\"G5177\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* age \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* resurrection \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w neither|strong=\"G3777\"\\+w* \\+w marry|strong=\"G1060\"\\+w* \\+w nor|strong=\"G3777\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w given|strong=\"G1061\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w marriage|strong=\"G1061\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* die \\+w any|strong=\"G2089\"\\+w* \\+w more|strong=\"G2089\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w like|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w angels|strong=\"G2465\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w being|strong=\"G1510\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* resurrection. *" + }, + { + "verseNum": 37, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w raised|strong=\"G1453\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w showed|strong=\"G3377\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* bush, \\+w when|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w called|strong=\"G3004\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* ‘\\+w The|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G2316\"\\+w* Abraham, \\+w the|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w Isaac|strong=\"G2464\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w Jacob|strong=\"G2384\"\\+w*.’ *+ 20:37 Exodus 3:6*" + }, + { + "verseNum": 38, + "text": "\\+w Now|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w dead|strong=\"G3498\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w living|strong=\"G2198\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w alive|strong=\"G2198\"\\+w* \\+w to|strong=\"G3756\"\\+w* him.”*" + }, + { + "verseNum": 39, + "text": "Some|strong=\"G5100\"* of|strong=\"G5100\"* the|strong=\"G1161\"* scribes|strong=\"G1122\"* answered|strong=\"G3004\"*, “Teacher|strong=\"G1320\"*, you|strong=\"G3004\"* speak|strong=\"G3004\"* well|strong=\"G2573\"*.”" + }, + { + "verseNum": 40, + "text": "They|strong=\"G1063\"* didn’t dare|strong=\"G5111\"* to|strong=\"G5111\"* ask|strong=\"G1905\"* him|strong=\"G1905\"* any|strong=\"G3762\"* more|strong=\"G3765\"* questions|strong=\"G1905\"*." + }, + { + "verseNum": 41, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w Why|strong=\"G4459\"\\+w* \\+w do|strong=\"G3004\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Christ|strong=\"G5547\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w David|strong=\"G1138\"\\+w*’s \\+w son|strong=\"G5207\"\\+w*? *" + }, + { + "verseNum": 42, + "text": "\\+w David|strong=\"G1138\"\\+w* himself \\+w says|strong=\"G3004\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w book|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Psalms|strong=\"G5568\"\\+w*,*" + }, + { + "verseNum": 43, + "text": "\\+w until|strong=\"G2193\"\\+w* \\+w I|strong=\"G2193\"\\+w* \\+w make|strong=\"G5087\"\\+w* \\+w your|strong=\"G5087\"\\+w* \\+w enemies|strong=\"G2190\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w footstool|strong=\"G5286\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w your|strong=\"G5087\"\\+w* \\+w feet|strong=\"G4228\"\\+w*.”’* + 20:43 Psalms 110:1*" + }, + { + "verseNum": 44, + "text": "“\\+w David|strong=\"G1138\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w calls|strong=\"G2564\"\\+w* \\+w him|strong=\"G2564\"\\+w* \\+w Lord|strong=\"G2962\"\\+w*, \\+w so|strong=\"G3767\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w*?”*" + }, + { + "verseNum": 45, + "text": "In|strong=\"G3956\"* the|strong=\"G3956\"* hearing of|strong=\"G3956\"* all|strong=\"G3956\"* the|strong=\"G3956\"* people|strong=\"G2992\"*, he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* his|strong=\"G3956\"* disciples|strong=\"G3101\"*," + }, + { + "verseNum": 46, + "text": "“\\+w Beware|strong=\"G4337\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w scribes|strong=\"G1122\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w like|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w walk|strong=\"G4043\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w long|strong=\"G4749\"\\+w* \\+w robes|strong=\"G4749\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w love|strong=\"G5368\"\\+w* greetings \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* marketplaces, \\+w the|strong=\"G1722\"\\+w* best \\+w seats|strong=\"G4410\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* best \\+w places|strong=\"G4411\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w feasts|strong=\"G1173\"\\+w*; *" + }, + { + "verseNum": 47, + "text": "\\+w who|strong=\"G3739\"\\+w* \\+w devour|strong=\"G2719\"\\+w* \\+w widows|strong=\"G5503\"\\+w*’ \\+w houses|strong=\"G3614\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w pretense|strong=\"G4392\"\\+w* \\+w make|strong=\"G4336\"\\+w* \\+w long|strong=\"G3117\"\\+w* \\+w prayers|strong=\"G4336\"\\+w*. \\+w These|strong=\"G3778\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w receive|strong=\"G2983\"\\+w* greater \\+w condemnation|strong=\"G2917\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G1161\"* looked|strong=\"G3708\"* up|strong=\"G1519\"* and|strong=\"G1161\"* saw|strong=\"G3708\"* the|strong=\"G1519\"* rich|strong=\"G4145\"* people|strong=\"G4145\"* who|strong=\"G3588\"* were|strong=\"G3588\"* putting their|strong=\"G1519\"* gifts|strong=\"G1435\"* into|strong=\"G1519\"* the|strong=\"G1519\"* treasury|strong=\"G1049\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G1161\"* saw|strong=\"G3708\"* a|strong=\"G3708\"* certain|strong=\"G5100\"* poor|strong=\"G3998\"* widow|strong=\"G5503\"* casting|strong=\"G5100\"* in|strong=\"G1161\"* two|strong=\"G1417\"* small|strong=\"G3016\"* brass coins|strong=\"G3016\"*.+ 21:2 literally, “two lepta.” 2 lepta was about 1% of a day’s wages for an agricultural laborer.*" + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “Truly \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w this|strong=\"G3778\"\\+w* \\+w poor|strong=\"G4434\"\\+w* \\+w widow|strong=\"G5503\"\\+w* \\+w put|strong=\"G2532\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*, *" + }, + { + "verseNum": 4, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w put|strong=\"G3956\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w gifts|strong=\"G1435\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w God|strong=\"G1519\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w their|strong=\"G3956\"\\+w* \\+w abundance|strong=\"G4052\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w she|strong=\"G1161\"\\+w*, \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w her|strong=\"G1519\"\\+w* \\+w poverty|strong=\"G5303\"\\+w*, \\+w put|strong=\"G3956\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w she|strong=\"G1161\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w live|strong=\"G2192\"\\+w* \\+w on|strong=\"G1519\"\\+w*.”*" + }, + { + "verseNum": 5, + "text": "As|strong=\"G2532\"* some|strong=\"G5100\"* were|strong=\"G3588\"* talking|strong=\"G3004\"* about|strong=\"G4012\"* the|strong=\"G2532\"* temple|strong=\"G2413\"* and|strong=\"G2532\"* how|strong=\"G3754\"* it|strong=\"G2532\"* was|strong=\"G3588\"* decorated with|strong=\"G2532\"* beautiful|strong=\"G2570\"* stones|strong=\"G3037\"* and|strong=\"G2532\"* gifts, he|strong=\"G2532\"* said|strong=\"G3004\"*," + }, + { + "verseNum": 6, + "text": "“\\+w As|strong=\"G1722\"\\+w* \\+w for|strong=\"G1909\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w see|strong=\"G2334\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w there|strong=\"G1722\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G3756\"\\+w* left \\+w here|strong=\"G3778\"\\+w* \\+w one|strong=\"G3739\"\\+w* \\+w stone|strong=\"G3037\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w another|strong=\"G3037\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G3756\"\\+w* thrown \\+w down|strong=\"G2647\"\\+w*.”*" + }, + { + "verseNum": 7, + "text": "They|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, so|strong=\"G3767\"* when|strong=\"G3752\"* will|strong=\"G5101\"* these|strong=\"G3778\"* things|strong=\"G3778\"* be|strong=\"G1096\"*? What|strong=\"G5101\"* is|strong=\"G1510\"* the|strong=\"G2532\"* sign|strong=\"G4592\"* that|strong=\"G3588\"* these|strong=\"G3778\"* things|strong=\"G3778\"* are|strong=\"G1510\"* about|strong=\"G3195\"* to|strong=\"G2532\"* happen|strong=\"G1096\"*?”" + }, + { + "verseNum": 8, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “Watch \\+w out|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w get|strong=\"G2532\"\\+w* \\+w led|strong=\"G4105\"\\+w* \\+w astray|strong=\"G4105\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w**+ 21:8 or, I AM*,’ \\+w and|strong=\"G2532\"\\+w*, ‘\\+w The|strong=\"G2532\"\\+w* \\+w time|strong=\"G2540\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w hand|strong=\"G1448\"\\+w*.’ \\+w Therefore|strong=\"G1161\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w follow|strong=\"G3694\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w When|strong=\"G3752\"\\+w* \\+w you|strong=\"G3752\"\\+w* hear \\+w of|strong=\"G2532\"\\+w* \\+w wars|strong=\"G4171\"\\+w* \\+w and|strong=\"G2532\"\\+w* disturbances, don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w terrified|strong=\"G4422\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w happen|strong=\"G1096\"\\+w* \\+w first|strong=\"G4413\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w end|strong=\"G5056\"\\+w* won’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G1096\"\\+w* \\+w immediately|strong=\"G2112\"\\+w*.”*" + }, + { + "verseNum": 10, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3004\"*, “\\+w Nation|strong=\"G1484\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rise|strong=\"G1453\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w nation|strong=\"G1484\"\\+w*, \\+w and|strong=\"G2532\"\\+w* kingdom \\+w against|strong=\"G1909\"\\+w* kingdom. *" + }, + { + "verseNum": 11, + "text": "\\+w There|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w earthquakes|strong=\"G4578\"\\+w*, \\+w famines|strong=\"G3042\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w plagues|strong=\"G3061\"\\+w* \\+w in|strong=\"G2596\"\\+w* \\+w various|strong=\"G2596\"\\+w* \\+w places|strong=\"G5117\"\\+w*. \\+w There|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w terrors|strong=\"G5400\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w signs|strong=\"G4592\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w lay|strong=\"G1911\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w persecute|strong=\"G1377\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w delivering|strong=\"G3860\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w prisons|strong=\"G5438\"\\+w*, bringing \\+w you|strong=\"G5210\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w kings|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w governors|strong=\"G2232\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w name|strong=\"G3686\"\\+w*’s \\+w sake|strong=\"G1752\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w It|strong=\"G1519\"\\+w* \\+w will|strong=\"G4771\"\\+w* turn \\+w out|strong=\"G1519\"\\+w* \\+w as|strong=\"G1519\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w testimony|strong=\"G3142\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w Settle|strong=\"G5087\"\\+w* \\+w it|strong=\"G5087\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G5087\"\\+w* \\+w hearts|strong=\"G2588\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w to|strong=\"G1722\"\\+w* meditate \\+w beforehand|strong=\"G4304\"\\+w* \\+w how|strong=\"G1722\"\\+w* \\+w to|strong=\"G1722\"\\+w* answer, *" + }, + { + "verseNum": 15, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w mouth|strong=\"G4750\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w wisdom|strong=\"G4678\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w all|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* adversaries \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w to|strong=\"G2532\"\\+w* withstand \\+w or|strong=\"G2228\"\\+w* \\+w to|strong=\"G2532\"\\+w* contradict. *" + }, + { + "verseNum": 16, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w handed|strong=\"G3860\"\\+w* \\+w over|strong=\"G3860\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w parents|strong=\"G1118\"\\+w*, brothers, \\+w relatives|strong=\"G4773\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w friends|strong=\"G5384\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w cause|strong=\"G2289\"\\+w* \\+w some|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w put|strong=\"G2289\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w death|strong=\"G2289\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w You|strong=\"G1510\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w hated|strong=\"G3404\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w men|strong=\"G3956\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w name|strong=\"G3686\"\\+w*’s \\+w sake|strong=\"G1223\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w And|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w hair|strong=\"G2359\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w head|strong=\"G2776\"\\+w* \\+w will|strong=\"G2532\"\\+w* perish.*" + }, + { + "verseNum": 19, + "text": "“\\+w By|strong=\"G1722\"\\+w* \\+w your|strong=\"G1722\"\\+w* \\+w endurance|strong=\"G5281\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5590\"\\+w* win \\+w your|strong=\"G1722\"\\+w* \\+w lives|strong=\"G5590\"\\+w*.*" + }, + { + "verseNum": 20, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G3752\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w* \\+w surrounded|strong=\"G2944\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w armies|strong=\"G4760\"\\+w*, \\+w then|strong=\"G5119\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w its|strong=\"G3752\"\\+w* \\+w desolation|strong=\"G2050\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w at|strong=\"G1161\"\\+w* \\+w hand|strong=\"G1448\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w let|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Judea|strong=\"G2449\"\\+w* \\+w flee|strong=\"G5343\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w mountains|strong=\"G3735\"\\+w*. \\+w Let|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w middle|strong=\"G3319\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w her|strong=\"G1438\"\\+w* depart. \\+w Let|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w country|strong=\"G5561\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w therein|strong=\"G1722\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w For|strong=\"G3754\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w vengeance|strong=\"G1557\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w may|strong=\"G3956\"\\+w* \\+w be|strong=\"G1510\"\\+w* fulfilled. *" + }, + { + "verseNum": 23, + "text": "\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w pregnant|strong=\"G1064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* nurse infants \\+w in|strong=\"G1722\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w days|strong=\"G2250\"\\+w*! \\+w For|strong=\"G1063\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w great|strong=\"G3173\"\\+w* distress \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w land|strong=\"G1093\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w wrath|strong=\"G3709\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w people|strong=\"G2992\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w fall|strong=\"G4098\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w edge|strong=\"G4750\"\\+w* \\+w of|strong=\"G5259\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sword|strong=\"G3162\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* led captive \\+w into|strong=\"G1519\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w*. \\+w Jerusalem|strong=\"G2419\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w trampled|strong=\"G3961\"\\+w* \\+w down|strong=\"G4098\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Gentiles|strong=\"G1484\"\\+w* \\+w until|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w times|strong=\"G2540\"\\+w* \\+w of|strong=\"G5259\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Gentiles|strong=\"G1484\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "“\\+w There|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w signs|strong=\"G4592\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sun|strong=\"G2246\"\\+w*, \\+w moon|strong=\"G4582\"\\+w*, \\+w and|strong=\"G2532\"\\+w* stars; \\+w and|strong=\"G2532\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w* anxiety \\+w of|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w*, \\+w in|strong=\"G1722\"\\+w* perplexity \\+w for|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w roaring|strong=\"G2279\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sea|strong=\"G2281\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w waves|strong=\"G4535\"\\+w*; *" + }, + { + "verseNum": 26, + "text": "\\+w men|strong=\"G3588\"\\+w* fainting \\+w for|strong=\"G1063\"\\+w* \\+w fear|strong=\"G5401\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w expectation|strong=\"G4329\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w coming|strong=\"G1904\"\\+w* \\+w on|strong=\"G5401\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G3625\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w powers|strong=\"G1411\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w heavens|strong=\"G3772\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w shaken|strong=\"G4531\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w cloud|strong=\"G3507\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w great|strong=\"G4183\"\\+w* \\+w glory|strong=\"G1391\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G1161\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* begin \\+w to|strong=\"G2532\"\\+w* \\+w happen|strong=\"G1096\"\\+w*, \\+w look|strong=\"G1096\"\\+w* \\+w up|strong=\"G1869\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w lift|strong=\"G1869\"\\+w* \\+w up|strong=\"G1869\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w heads|strong=\"G2776\"\\+w*, \\+w because|strong=\"G1360\"\\+w* \\+w your|strong=\"G2532\"\\+w* redemption \\+w is|strong=\"G3588\"\\+w* \\+w near|strong=\"G1448\"\\+w*.”*" + }, + { + "verseNum": 29, + "text": "He|strong=\"G2532\"* told|strong=\"G3004\"* them|strong=\"G3588\"* a|strong=\"G2532\"* parable|strong=\"G3850\"*. “\\+w See|strong=\"G3708\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fig|strong=\"G4808\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w trees|strong=\"G1186\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w When|strong=\"G3752\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w already|strong=\"G2235\"\\+w* budding, \\+w you|strong=\"G3752\"\\+w* \\+w see|strong=\"G1097\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w and|strong=\"G3588\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w by|strong=\"G1097\"\\+w* \\+w your|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w selves|strong=\"G1438\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w summer|strong=\"G2330\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w already|strong=\"G2235\"\\+w* \\+w near|strong=\"G1451\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w Even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w happening|strong=\"G1096\"\\+w*, \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w is|strong=\"G1510\"\\+w* \\+w near|strong=\"G1451\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "Most \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w* \\+w will|strong=\"G3956\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w pass|strong=\"G1096\"\\+w* \\+w away|strong=\"G3928\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w accomplished|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w Heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w pass|strong=\"G3928\"\\+w* \\+w away|strong=\"G3928\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w by|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w means|strong=\"G3361\"\\+w* \\+w pass|strong=\"G3928\"\\+w* \\+w away|strong=\"G3928\"\\+w*.*" + }, + { + "verseNum": 34, + "text": "“\\+w So|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w careful|strong=\"G4337\"\\+w*, \\+w or|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hearts|strong=\"G2588\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* loaded down \\+w with|strong=\"G1722\"\\+w* carousing, \\+w drunkenness|strong=\"G3178\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w cares|strong=\"G3308\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w this|strong=\"G3588\"\\+w* life, \\+w and|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2186\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w* suddenly. *" + }, + { + "verseNum": 35, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w it|strong=\"G1063\"\\+w* \\+w will|strong=\"G3956\"\\+w* \\+w come|strong=\"G1904\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w snare|strong=\"G3803\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w dwell|strong=\"G2521\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G3956\"\\+w* surface \\+w of|strong=\"G1909\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w earth|strong=\"G1093\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w Therefore|strong=\"G1161\"\\+w* \\+w be|strong=\"G1096\"\\+w* watchful \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w time|strong=\"G2540\"\\+w*, \\+w praying|strong=\"G1189\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* counted worthy \\+w to|strong=\"G2443\"\\+w* \\+w escape|strong=\"G1628\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w happen|strong=\"G1096\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w stand|strong=\"G2476\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w*.”*" + }, + { + "verseNum": 37, + "text": "Every|strong=\"G1722\"* day|strong=\"G2250\"* Jesus|strong=\"G1510\"* was|strong=\"G1510\"* teaching|strong=\"G1321\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, and|strong=\"G1161\"* every|strong=\"G1722\"* night|strong=\"G3571\"* he|strong=\"G1161\"* would|strong=\"G1722\"* go|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G1161\"* spend the|strong=\"G1722\"* night|strong=\"G3571\"* on|strong=\"G1722\"* the|strong=\"G1722\"* mountain|strong=\"G3735\"* that|strong=\"G3588\"* is|strong=\"G1510\"* called|strong=\"G2564\"* Olivet." + }, + { + "verseNum": 38, + "text": "All|strong=\"G3956\"* the|strong=\"G1722\"* people|strong=\"G2992\"* came|strong=\"G2532\"* early|strong=\"G3719\"* in|strong=\"G1722\"* the|strong=\"G1722\"* morning|strong=\"G3719\"* to|strong=\"G4314\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* to|strong=\"G4314\"* hear him|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* the|strong=\"G1161\"* feast|strong=\"G1859\"* of|strong=\"G3588\"* unleavened bread, which|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G3004\"* the|strong=\"G1161\"* Passover|strong=\"G3957\"*, was|strong=\"G3588\"* approaching|strong=\"G1448\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* sought|strong=\"G2212\"* how|strong=\"G4459\"* they|strong=\"G2532\"* might|strong=\"G2532\"* put|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G2532\"* death, for|strong=\"G1063\"* they|strong=\"G2532\"* feared|strong=\"G5399\"* the|strong=\"G2532\"* people|strong=\"G2992\"*." + }, + { + "verseNum": 3, + "text": "Satan|strong=\"G4567\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* Judas|strong=\"G2455\"*, who|strong=\"G3588\"* was|strong=\"G1510\"* also|strong=\"G1161\"* called|strong=\"G2564\"* Iscariot|strong=\"G2469\"*, who|strong=\"G3588\"* was|strong=\"G1510\"* counted with|strong=\"G1537\"* the|strong=\"G1519\"* twelve|strong=\"G1427\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"G2532\"* went|strong=\"G2532\"* away and|strong=\"G2532\"* talked with|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G4755\"* priests and|strong=\"G2532\"* captains|strong=\"G4755\"* about|strong=\"G3588\"* how|strong=\"G4459\"* he|strong=\"G2532\"* might|strong=\"G2532\"* deliver|strong=\"G3860\"* him|strong=\"G3588\"* to|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"G2532\"* were|strong=\"G2532\"* glad|strong=\"G5463\"*, and|strong=\"G2532\"* agreed|strong=\"G4934\"* to|strong=\"G2532\"* give|strong=\"G1325\"* him|strong=\"G1325\"* money." + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* consented|strong=\"G1843\"* and|strong=\"G2532\"* sought|strong=\"G2212\"* an|strong=\"G2532\"* opportunity|strong=\"G2120\"* to|strong=\"G2532\"* deliver|strong=\"G3860\"* him|strong=\"G3588\"* to|strong=\"G2532\"* them|strong=\"G3588\"* in|strong=\"G2532\"* the|strong=\"G2532\"* absence of|strong=\"G2532\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G2250\"* unleavened bread came|strong=\"G2064\"*, on|strong=\"G1722\"* which|strong=\"G3739\"* the|strong=\"G1722\"* Passover|strong=\"G3957\"* must|strong=\"G1163\"* be|strong=\"G1163\"* sacrificed|strong=\"G2380\"*." + }, + { + "verseNum": 8, + "text": "Jesus|strong=\"G3004\"* sent|strong=\"G2532\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* John|strong=\"G2491\"*, saying|strong=\"G3004\"*, “\\+w Go|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w prepare|strong=\"G2090\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Passover|strong=\"G3957\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w us|strong=\"G3004\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w we|strong=\"G2249\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "They|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Where|strong=\"G4226\"* do|strong=\"G3004\"* you|strong=\"G3004\"* want|strong=\"G2309\"* us|strong=\"G3004\"* to|strong=\"G3004\"* prepare|strong=\"G2090\"*?”" + }, + { + "verseNum": 10, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Behold|strong=\"G2400\"\\+w*, \\+w when|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G5210\"\\+w* \\+w entered|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w city|strong=\"G4172\"\\+w*, \\+w a|strong=\"G1519\"\\+w* \\+w man|strong=\"G3739\"\\+w* carrying \\+w a|strong=\"G1519\"\\+w* \\+w pitcher|strong=\"G2765\"\\+w* \\+w of|strong=\"G4172\"\\+w* \\+w water|strong=\"G5204\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w meet|strong=\"G4876\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w Follow|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w enters|strong=\"G1525\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w Tell|strong=\"G3004\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w master|strong=\"G1320\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w*, ‘\\+w The|strong=\"G2532\"\\+w* \\+w Teacher|strong=\"G1320\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*, “\\+w Where|strong=\"G3699\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w guest|strong=\"G2646\"\\+w* \\+w room|strong=\"G2646\"\\+w*, \\+w where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Passover|strong=\"G3957\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w disciples|strong=\"G3101\"\\+w*?”’ *" + }, + { + "verseNum": 12, + "text": "\\+w He|strong=\"G1563\"\\+w* \\+w will|strong=\"G2548\"\\+w* \\+w show|strong=\"G1166\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w a|strong=\"G2090\"\\+w* \\+w large|strong=\"G3173\"\\+w*, \\+w furnished|strong=\"G4766\"\\+w* upper room. \\+w Make|strong=\"G2090\"\\+w* preparations \\+w there|strong=\"G1563\"\\+w*.”*" + }, + { + "verseNum": 13, + "text": "They|strong=\"G2532\"* went|strong=\"G2532\"*, found|strong=\"G2147\"* things|strong=\"G3588\"* as|strong=\"G2531\"* Jesus|strong=\"G3004\"* had|strong=\"G2532\"* told|strong=\"G3004\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* prepared|strong=\"G2090\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"G3753\"* the|strong=\"G2532\"* hour|strong=\"G5610\"* had|strong=\"G2532\"* come|strong=\"G1096\"*, he|strong=\"G2532\"* sat|strong=\"G2532\"* down with|strong=\"G4862\"* the|strong=\"G2532\"* twelve apostles." + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w earnestly|strong=\"G1939\"\\+w* \\+w desired|strong=\"G1937\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w Passover|strong=\"G3957\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w suffer|strong=\"G3958\"\\+w*, *" + }, + { + "verseNum": 16, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1063\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G1063\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w longer|strong=\"G3765\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w any|strong=\"G3361\"\\+w* \\+w means|strong=\"G3004\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom.”*" + }, + { + "verseNum": 17, + "text": "He|strong=\"G2532\"* received|strong=\"G2983\"* a|strong=\"G2532\"* cup|strong=\"G4221\"*, and|strong=\"G2532\"* when|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* given|strong=\"G2168\"* thanks|strong=\"G2168\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Take|strong=\"G2983\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w share|strong=\"G1266\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w among|strong=\"G1519\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w*, *" + }, + { + "verseNum": 18, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1063\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G1063\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w at|strong=\"G3756\"\\+w* \\+w all|strong=\"G3361\"\\+w* \\+w again|strong=\"G2193\"\\+w* \\+w from|strong=\"G2064\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w fruit|strong=\"G1081\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G3588\"\\+w* vine, \\+w until|strong=\"G2193\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w comes|strong=\"G2064\"\\+w*.”*" + }, + { + "verseNum": 19, + "text": "He|strong=\"G2532\"* took|strong=\"G2983\"* bread, and|strong=\"G2532\"* when|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* given|strong=\"G1325\"* thanks|strong=\"G2168\"*, he|strong=\"G2532\"* broke|strong=\"G2806\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* it|strong=\"G2532\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w Do|strong=\"G4160\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w in|strong=\"G1519\"\\+w* memory \\+w of|strong=\"G2532\"\\+w* \\+w me|strong=\"G1325\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "Likewise|strong=\"G5615\"*, he|strong=\"G2532\"* took|strong=\"G2532\"* the|strong=\"G1722\"* cup|strong=\"G4221\"* after|strong=\"G3326\"* supper|strong=\"G1172\"*, saying|strong=\"G3004\"*, “\\+w This|strong=\"G3778\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w covenant|strong=\"G1242\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* blood, \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w poured|strong=\"G1632\"\\+w* \\+w out|strong=\"G1632\"\\+w* \\+w for|strong=\"G5228\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w But|strong=\"G4133\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, \\+w the|strong=\"G1909\"\\+w* \\+w hand|strong=\"G5495\"\\+w* \\+w of|strong=\"G1909\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w betrays|strong=\"G3860\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1909\"\\+w* \\+w table|strong=\"G5132\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w The|strong=\"G1223\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3739\"\\+w* \\+w indeed|strong=\"G3303\"\\+w* \\+w goes|strong=\"G4198\"\\+w* \\+w as|strong=\"G2596\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w has|strong=\"G3739\"\\+w* been \\+w determined|strong=\"G3724\"\\+w*, \\+w but|strong=\"G4133\"\\+w* \\+w woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2596\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w man|strong=\"G3739\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w he|strong=\"G3739\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w betrayed|strong=\"G3860\"\\+w*!”*" + }, + { + "verseNum": 23, + "text": "They|strong=\"G2532\"* began to|strong=\"G4314\"* question|strong=\"G4802\"* among|strong=\"G1537\"* themselves|strong=\"G1438\"* which|strong=\"G3588\"* of|strong=\"G1537\"* them|strong=\"G3588\"* it|strong=\"G2532\"* was|strong=\"G1510\"* who|strong=\"G5101\"* would|strong=\"G3195\"* do|strong=\"G4238\"* this|strong=\"G3778\"* thing|strong=\"G3778\"*." + }, + { + "verseNum": 24, + "text": "A|strong=\"G1096\"* dispute|strong=\"G5379\"* also|strong=\"G2532\"* arose|strong=\"G1096\"* among|strong=\"G1722\"* them|strong=\"G3588\"*, which|strong=\"G3588\"* of|strong=\"G2532\"* them|strong=\"G3588\"* was|strong=\"G1510\"* considered to|strong=\"G2532\"* be|strong=\"G1096\"* greatest|strong=\"G3173\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w The|strong=\"G2532\"\\+w* \\+w kings|strong=\"G3588\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w* \\+w lord|strong=\"G3588\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w over|strong=\"G2961\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w authority|strong=\"G1850\"\\+w* \\+w over|strong=\"G2961\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w called|strong=\"G2564\"\\+w* ‘\\+w benefactors|strong=\"G2110\"\\+w*.’ *" + }, + { + "verseNum": 26, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w Rather|strong=\"G3756\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w let|strong=\"G1096\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w become|strong=\"G1096\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w younger|strong=\"G3501\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* governing, \\+w as|strong=\"G5613\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w serves|strong=\"G1247\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w greater|strong=\"G3173\"\\+w*, \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* sits \\+w at|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* table, \\+w or|strong=\"G2228\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w serves|strong=\"G1247\"\\+w*? Isn’\\+w t|strong=\"G3588\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G5101\"\\+w* sits \\+w at|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* table? \\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w serves|strong=\"G1247\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G1473\"\\+w* continued \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w trials|strong=\"G3986\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w I|strong=\"G1473\"\\+w* confer \\+w on|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w a|strong=\"G4771\"\\+w* kingdom, \\+w even|strong=\"G2531\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w* conferred \\+w on|strong=\"G3588\"\\+w* \\+w me|strong=\"G1473\"\\+w*, *" + }, + { + "verseNum": 30, + "text": "\\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w table|strong=\"G5132\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* Kingdom. \\+w You|strong=\"G1722\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w sit|strong=\"G2521\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w thrones|strong=\"G2362\"\\+w*, \\+w judging|strong=\"G2919\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w twelve|strong=\"G1427\"\\+w* \\+w tribes|strong=\"G5443\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Israel|strong=\"G2474\"\\+w*.”*" + }, + { + "verseNum": 31, + "text": "The|strong=\"G3588\"* Lord|strong=\"G3588\"* said, “\\+w Simon|strong=\"G4613\"\\+w*, \\+w Simon|strong=\"G4613\"\\+w*, \\+w behold|strong=\"G2400\"\\+w*, \\+w Satan|strong=\"G4567\"\\+w* asked \\+w to|strong=\"G3708\"\\+w* \\+w have|strong=\"G5210\"\\+w* \\+w all|strong=\"G3588\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w might|strong=\"G5210\"\\+w* \\+w sift|strong=\"G4617\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w wheat|strong=\"G4621\"\\+w*, *" + }, + { + "verseNum": 32, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w prayed|strong=\"G1189\"\\+w* \\+w for|strong=\"G4012\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w faith|strong=\"G4102\"\\+w* wouldn’\\+w t|strong=\"G3588\"\\+w* \\+w fail|strong=\"G1587\"\\+w*. \\+w You|strong=\"G4771\"\\+w*, \\+w when|strong=\"G1161\"\\+w* \\+w once|strong=\"G4218\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w turned|strong=\"G1994\"\\+w* \\+w again|strong=\"G1994\"\\+w*, \\+w establish|strong=\"G4741\"\\+w* \\+w your|strong=\"G2532\"\\+w* brothers.”*+ 22:32 The word for “brothers” here may be also correctly translated “brothers and sisters” or “siblings.”*" + }, + { + "verseNum": 33, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, I|strong=\"G2532\"* am|strong=\"G1510\"* ready|strong=\"G2092\"* to|strong=\"G1519\"* go|strong=\"G4198\"* with|strong=\"G3326\"* you|strong=\"G4771\"* both|strong=\"G2532\"* to|strong=\"G1519\"* prison|strong=\"G5438\"* and|strong=\"G2532\"* to|strong=\"G1519\"* death|strong=\"G2288\"*!”" + }, + { + "verseNum": 34, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w Peter|strong=\"G4074\"\\+w*, \\+w the|strong=\"G1161\"\\+w* rooster \\+w will|strong=\"G1473\"\\+w* \\+w by|strong=\"G3004\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w means|strong=\"G3004\"\\+w* \\+w crow|strong=\"G5455\"\\+w* \\+w today|strong=\"G4594\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w three|strong=\"G5151\"\\+w* \\+w times|strong=\"G5151\"\\+w*.”*" + }, + { + "verseNum": 35, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w When|strong=\"G3753\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w without|strong=\"G3361\"\\+w* purse, \\+w bag|strong=\"G4082\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w sandals|strong=\"G5266\"\\+w*, \\+w did|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w lack|strong=\"G5302\"\\+w* \\+w anything|strong=\"G5100\"\\+w*?”*" + }, + { + "verseNum": 36, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w But|strong=\"G1161\"\\+w* \\+w now|strong=\"G1161\"\\+w*, \\+w whoever|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* purse, \\+w let|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w take|strong=\"G1161\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w likewise|strong=\"G3668\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w bag|strong=\"G4082\"\\+w*. \\+w Whoever|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w none|strong=\"G3361\"\\+w*, \\+w let|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w sell|strong=\"G4453\"\\+w* \\+w his|strong=\"G2192\"\\+w* \\+w cloak|strong=\"G2440\"\\+w*, \\+w and|strong=\"G2532\"\\+w* buy \\+w a|strong=\"G2192\"\\+w* \\+w sword|strong=\"G3162\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w must|strong=\"G1163\"\\+w* still \\+w be|strong=\"G2532\"\\+w* \\+w fulfilled|strong=\"G5055\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*: ‘\\+w He|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w counted|strong=\"G3049\"\\+w* \\+w with|strong=\"G3326\"\\+w* transgressors.’*+ 22:37 Isaiah 53:12* \\+w For|strong=\"G1063\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3588\"\\+w* concerns \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w being|strong=\"G2532\"\\+w* \\+w fulfilled|strong=\"G5055\"\\+w*.”*" + }, + { + "verseNum": 38, + "text": "They|strong=\"G1161\"* said|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, behold|strong=\"G2400\"*, here|strong=\"G5602\"* are|strong=\"G1510\"* two|strong=\"G1417\"* swords|strong=\"G3162\"*.”" + }, + { + "verseNum": 39, + "text": "He|strong=\"G2532\"* came|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* went|strong=\"G1831\"*, as|strong=\"G1519\"* his|strong=\"G1519\"* custom|strong=\"G1485\"* was|strong=\"G3588\"*, to|strong=\"G1519\"* the|strong=\"G2532\"* Mount|strong=\"G3735\"* of|strong=\"G2532\"* Olives|strong=\"G1636\"*. His|strong=\"G1519\"* disciples|strong=\"G3101\"* also|strong=\"G2532\"* followed him|strong=\"G3588\"*." + }, + { + "verseNum": 40, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* was|strong=\"G1096\"* at|strong=\"G1909\"* the|strong=\"G1519\"* place|strong=\"G5117\"*, he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Pray|strong=\"G4336\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w temptation|strong=\"G3986\"\\+w*.”*" + }, + { + "verseNum": 41, + "text": "He|strong=\"G2532\"* was|strong=\"G3588\"* withdrawn from|strong=\"G2532\"* them|strong=\"G3588\"* about|strong=\"G5616\"* a|strong=\"G2532\"* stone|strong=\"G3037\"*’s throw|strong=\"G1000\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* knelt|strong=\"G1119\"* down|strong=\"G5087\"* and|strong=\"G2532\"* prayed|strong=\"G4336\"*," + }, + { + "verseNum": 42, + "text": "saying|strong=\"G3004\"*, “\\+w Father|strong=\"G3962\"\\+w*, \\+w if|strong=\"G1487\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w willing|strong=\"G1014\"\\+w*, \\+w remove|strong=\"G3911\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w from|strong=\"G3588\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w Nevertheless|strong=\"G4133\"\\+w*, \\+w not|strong=\"G3361\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w will|strong=\"G2307\"\\+w*, \\+w but|strong=\"G1487\"\\+w* \\+w yours|strong=\"G4674\"\\+w*, \\+w be|strong=\"G1096\"\\+w* \\+w done|strong=\"G1096\"\\+w*.”*" + }, + { + "verseNum": 43, + "text": "An|strong=\"G1161\"* angel from|strong=\"G3772\"* heaven|strong=\"G3772\"* appeared|strong=\"G3708\"* to|strong=\"G1161\"* him|strong=\"G3708\"*, strengthening|strong=\"G1765\"* him|strong=\"G3708\"*." + }, + { + "verseNum": 44, + "text": "Being|strong=\"G1096\"* in|strong=\"G1722\"* agony, he|strong=\"G2532\"* prayed|strong=\"G4336\"* more|strong=\"G2532\"* earnestly|strong=\"G1617\"*. His|strong=\"G1909\"* sweat|strong=\"G2402\"* became|strong=\"G1096\"* like|strong=\"G5616\"* great|strong=\"G2532\"* drops|strong=\"G2361\"* of|strong=\"G2532\"* blood falling|strong=\"G1096\"* down|strong=\"G2597\"* on|strong=\"G1909\"* the|strong=\"G1722\"* ground|strong=\"G1093\"*." + }, + { + "verseNum": 45, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* from|strong=\"G2064\"* his|strong=\"G1438\"* prayer|strong=\"G4335\"*, he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* found|strong=\"G2147\"* them|strong=\"G3588\"* sleeping|strong=\"G2837\"* because|strong=\"G4314\"* of|strong=\"G2532\"* grief|strong=\"G3077\"*," + }, + { + "verseNum": 46, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3004\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w sleep|strong=\"G2518\"\\+w*? Rise \\+w and|strong=\"G2532\"\\+w* \\+w pray|strong=\"G4336\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w temptation|strong=\"G3986\"\\+w*.”*" + }, + { + "verseNum": 47, + "text": "While|strong=\"G2980\"* he|strong=\"G2532\"* was|strong=\"G3588\"* still|strong=\"G2089\"* speaking|strong=\"G2980\"*, a|strong=\"G2532\"* crowd|strong=\"G3793\"* appeared|strong=\"G3708\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* was|strong=\"G3588\"* called|strong=\"G3004\"* Judas|strong=\"G2455\"*, one|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*, was|strong=\"G3588\"* leading them|strong=\"G3588\"*. He|strong=\"G2532\"* came|strong=\"G2532\"* near|strong=\"G1448\"* to|strong=\"G2532\"* Jesus|strong=\"G2424\"* to|strong=\"G2532\"* kiss|strong=\"G5368\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 48, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Judas|strong=\"G2455\"\\+w*, \\+w do|strong=\"G3004\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w betray|strong=\"G3860\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w with|strong=\"G3588\"\\+w* \\+w a|strong=\"G1161\"\\+w* \\+w kiss|strong=\"G5370\"\\+w*?”*" + }, + { + "verseNum": 49, + "text": "When|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* around|strong=\"G4012\"* him|strong=\"G3588\"* saw|strong=\"G3708\"* what|strong=\"G3588\"* was|strong=\"G1510\"* about|strong=\"G4012\"* to|strong=\"G3004\"* happen|strong=\"G1510\"*, they|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, shall|strong=\"G2962\"* we|strong=\"G1161\"* strike|strong=\"G3960\"* with|strong=\"G1722\"* the|strong=\"G1722\"* sword|strong=\"G3162\"*?”" + }, + { + "verseNum": 50, + "text": "A|strong=\"G2532\"* certain|strong=\"G5100\"* one|strong=\"G1520\"* of|strong=\"G1537\"* them|strong=\"G3588\"* struck|strong=\"G3960\"* the|strong=\"G2532\"* servant|strong=\"G1401\"* of|strong=\"G1537\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest, and|strong=\"G2532\"* cut|strong=\"G2532\"* off|strong=\"G1537\"* his|strong=\"G2532\"* right|strong=\"G1188\"* ear|strong=\"G3775\"*." + }, + { + "verseNum": 51, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “\\+w Let|strong=\"G1439\"\\+w* \\+w me|strong=\"G3004\"\\+w* \\+w at|strong=\"G1161\"\\+w* least \\+w do|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w*”*—and|strong=\"G2532\"* he|strong=\"G2532\"* touched his|strong=\"G2532\"* ear|strong=\"G5621\"* and|strong=\"G2532\"* healed|strong=\"G2390\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 52, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G4314\"* the|strong=\"G2532\"* chief|strong=\"G4755\"* priests, captains|strong=\"G4755\"* of|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G2413\"*, and|strong=\"G2532\"* elders|strong=\"G4245\"*, who|strong=\"G3588\"* had|strong=\"G2424\"* come|strong=\"G1831\"* against|strong=\"G1909\"* him|strong=\"G3588\"*, “\\+w Have|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w come|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w robber|strong=\"G3027\"\\+w*, \\+w with|strong=\"G3326\"\\+w* \\+w swords|strong=\"G3162\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w clubs|strong=\"G3586\"\\+w*? *" + }, + { + "verseNum": 53, + "text": "\\+w When|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w temple|strong=\"G2413\"\\+w* \\+w daily|strong=\"G2250\"\\+w*, \\+w you|strong=\"G5210\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w stretch|strong=\"G1614\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w But|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hour|strong=\"G5610\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w power|strong=\"G1849\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w darkness|strong=\"G4655\"\\+w*.” *" + }, + { + "verseNum": 54, + "text": "They|strong=\"G2532\"* seized|strong=\"G4815\"* him|strong=\"G3588\"* and|strong=\"G2532\"* led|strong=\"G1521\"* him|strong=\"G3588\"* away|strong=\"G3113\"*, and|strong=\"G2532\"* brought|strong=\"G1521\"* him|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest’s house|strong=\"G3614\"*. But|strong=\"G1161\"* Peter|strong=\"G4074\"* followed from|strong=\"G2532\"* a|strong=\"G2532\"* distance|strong=\"G3113\"*." + }, + { + "verseNum": 55, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* kindled a|strong=\"G2532\"* fire|strong=\"G4442\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2532\"* the|strong=\"G1722\"* courtyard and|strong=\"G2532\"* had|strong=\"G2532\"* sat|strong=\"G2521\"* down|strong=\"G2521\"* together|strong=\"G4776\"*, Peter|strong=\"G4074\"* sat|strong=\"G2521\"* among|strong=\"G1722\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 56, + "text": "A|strong=\"G2532\"* certain|strong=\"G5100\"* servant|strong=\"G3588\"* girl saw|strong=\"G3708\"* him|strong=\"G3588\"* as|strong=\"G1161\"* he|strong=\"G2532\"* sat|strong=\"G2521\"* in|strong=\"G2532\"* the|strong=\"G2532\"* light|strong=\"G5457\"*, and|strong=\"G2532\"* looking|strong=\"G2532\"* intently at|strong=\"G4314\"* him|strong=\"G3588\"*, said|strong=\"G3004\"*, “This|strong=\"G3778\"* man|strong=\"G5100\"* also|strong=\"G2532\"* was|strong=\"G1510\"* with|strong=\"G4862\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 57, + "text": "He|strong=\"G1161\"* denied Jesus|strong=\"G3004\"*, saying|strong=\"G3004\"*, “Woman|strong=\"G1135\"*, I|strong=\"G1161\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 58, + "text": "After|strong=\"G3326\"* a|strong=\"G2532\"* little|strong=\"G1024\"* while|strong=\"G1161\"* someone|strong=\"G2087\"* else|strong=\"G2087\"* saw|strong=\"G3708\"* him|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G5346\"*, “You|strong=\"G4771\"* also|strong=\"G2532\"* are|strong=\"G1510\"* one|strong=\"G3588\"* of|strong=\"G1537\"* them|strong=\"G3588\"*!”" + }, + { + "verseNum": 59, + "text": "After|strong=\"G3326\"* about|strong=\"G5616\"* one|strong=\"G1520\"* hour|strong=\"G5610\"* passed|strong=\"G1339\"*, another|strong=\"G1520\"* confidently|strong=\"G3326\"* affirmed|strong=\"G1340\"*, saying|strong=\"G3004\"*, “Truly|strong=\"G1909\"* this|strong=\"G3778\"* man|strong=\"G5100\"* also|strong=\"G2532\"* was|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G2532\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* is|strong=\"G1510\"* a|strong=\"G2532\"* Galilean|strong=\"G1057\"*!”" + }, + { + "verseNum": 60, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* said|strong=\"G3004\"*, “Man|strong=\"G3739\"*, I|strong=\"G3739\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* what|strong=\"G3739\"* you|strong=\"G3739\"* are|strong=\"G3588\"* talking|strong=\"G2980\"* about|strong=\"G2980\"*!” Immediately|strong=\"G3916\"*, while|strong=\"G2980\"* he|strong=\"G2532\"* was|strong=\"G3588\"* still|strong=\"G2089\"* speaking|strong=\"G2980\"*, a|strong=\"G2532\"* rooster crowed|strong=\"G5455\"*." + }, + { + "verseNum": 61, + "text": "The|strong=\"G2532\"* Lord|strong=\"G2962\"* turned|strong=\"G4762\"* and|strong=\"G2532\"* looked|strong=\"G1689\"* at|strong=\"G1689\"* Peter|strong=\"G4074\"*. Then|strong=\"G2532\"* Peter|strong=\"G4074\"* remembered|strong=\"G5279\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* word|strong=\"G3056\"*, how|strong=\"G5613\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Before|strong=\"G4250\"\\+w* \\+w the|strong=\"G2532\"\\+w* rooster \\+w crows|strong=\"G5455\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w three|strong=\"G5151\"\\+w* \\+w times|strong=\"G5151\"\\+w*.”*" + }, + { + "verseNum": 62, + "text": "He|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, and|strong=\"G2532\"* wept|strong=\"G2799\"* bitterly|strong=\"G4090\"*." + }, + { + "verseNum": 63, + "text": "The|strong=\"G2532\"* men|strong=\"G3588\"* who|strong=\"G3588\"* held|strong=\"G4912\"* Jesus|strong=\"G2532\"* mocked|strong=\"G1702\"* him|strong=\"G3588\"* and|strong=\"G2532\"* beat|strong=\"G1194\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 64, + "text": "Having|strong=\"G2532\"* blindfolded|strong=\"G4028\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* struck|strong=\"G3817\"* him|strong=\"G3588\"* on|strong=\"G3004\"* the|strong=\"G2532\"* face and|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “Prophesy|strong=\"G4395\"*! Who|strong=\"G5101\"* is|strong=\"G1510\"* the|strong=\"G2532\"* one|strong=\"G3588\"* who|strong=\"G5101\"* struck|strong=\"G3817\"* you|strong=\"G4771\"*?”" + }, + { + "verseNum": 65, + "text": "They|strong=\"G2532\"* spoke|strong=\"G3004\"* many|strong=\"G4183\"* other|strong=\"G2087\"* things|strong=\"G4183\"* against|strong=\"G1519\"* him|strong=\"G2532\"*, insulting him|strong=\"G2532\"*." + }, + { + "verseNum": 66, + "text": "As|strong=\"G5613\"* soon|strong=\"G5613\"* as|strong=\"G5613\"* it|strong=\"G2532\"* was|strong=\"G1510\"* day|strong=\"G2250\"*, the|strong=\"G2532\"* assembly of|strong=\"G2250\"* the|strong=\"G2532\"* elders|strong=\"G4244\"* of|strong=\"G2250\"* the|strong=\"G2532\"* people|strong=\"G2992\"* were|strong=\"G1510\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"*, both|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* scribes|strong=\"G1122\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* led him|strong=\"G3588\"* away into|strong=\"G1519\"* their|strong=\"G2532\"* council|strong=\"G4892\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 67, + "text": "“If|strong=\"G1487\"* you|strong=\"G5210\"* are|strong=\"G1510\"* the|strong=\"G1161\"* Christ|strong=\"G5547\"*, tell|strong=\"G3004\"* us|strong=\"G3004\"*.”" + }, + { + "verseNum": 68, + "text": "\\+w and|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w ask|strong=\"G2065\"\\+w*, \\+w you|strong=\"G1437\"\\+w* \\+w will|strong=\"G2065\"\\+w* \\+w in|strong=\"G3756\"\\+w* \\+w no|strong=\"G3756\"\\+w* way answer \\+w me|strong=\"G2065\"\\+w* \\+w or|strong=\"G1161\"\\+w* \\+w let|strong=\"G1161\"\\+w* \\+w me|strong=\"G2065\"\\+w* go. *" + }, + { + "verseNum": 69, + "text": "\\+w From|strong=\"G1537\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w on|strong=\"G1537\"\\+w*, \\+w the|strong=\"G1537\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w seated|strong=\"G2521\"\\+w* \\+w at|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w hand|strong=\"G1188\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w God|strong=\"G2316\"\\+w*.”*" + }, + { + "verseNum": 70, + "text": "They|strong=\"G1161\"* all|strong=\"G3956\"* said|strong=\"G3004\"*, “Are|strong=\"G1510\"* you|strong=\"G5210\"* then|strong=\"G3767\"* the|strong=\"G3956\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*?”" + }, + { + "verseNum": 71, + "text": "They|strong=\"G1161\"* said|strong=\"G3004\"*, “Why|strong=\"G5101\"* do|strong=\"G5101\"* we|strong=\"G1063\"* need|strong=\"G5532\"* any|strong=\"G2089\"* more|strong=\"G2089\"* witness|strong=\"G3141\"*? For|strong=\"G1063\"* we|strong=\"G1063\"* ourselves have|strong=\"G2192\"* heard from|strong=\"G3588\"* his|strong=\"G2192\"* own mouth|strong=\"G4750\"*!”" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"G2532\"* whole company|strong=\"G4128\"* of|strong=\"G2532\"* them|strong=\"G3588\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* and|strong=\"G2532\"* brought|strong=\"G2532\"* him|strong=\"G3588\"* before|strong=\"G1909\"* Pilate|strong=\"G4091\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"G2532\"* began|strong=\"G1161\"* to|strong=\"G2532\"* accuse|strong=\"G2723\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “We|strong=\"G2249\"* found|strong=\"G2147\"* this|strong=\"G3778\"* man|strong=\"G3778\"* perverting|strong=\"G1294\"* the|strong=\"G2532\"* nation|strong=\"G1484\"*, forbidding|strong=\"G2967\"* paying taxes|strong=\"G5411\"* to|strong=\"G2532\"* Caesar|strong=\"G2541\"*, and|strong=\"G2532\"* saying|strong=\"G3004\"* that|strong=\"G3588\"* he|strong=\"G2532\"* himself|strong=\"G1438\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"*, a|strong=\"G2532\"* king|strong=\"G3588\"*.”" + }, + { + "verseNum": 3, + "text": "Pilate|strong=\"G4091\"* asked|strong=\"G2065\"* him|strong=\"G3588\"*, “Are|strong=\"G1510\"* you|strong=\"G4771\"* the|strong=\"G1161\"* King|strong=\"G3588\"* of|strong=\"G3588\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"*?”" + }, + { + "verseNum": 4, + "text": "Pilate|strong=\"G4091\"* said|strong=\"G3004\"* to|strong=\"G4314\"* the|strong=\"G1722\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G1722\"* multitudes|strong=\"G3793\"*, “I|strong=\"G2532\"* find|strong=\"G2147\"* no|strong=\"G3762\"* basis for|strong=\"G4314\"* a|strong=\"G2532\"* charge against|strong=\"G4314\"* this|strong=\"G3778\"* man|strong=\"G3778\"*.”" + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"* insisted, saying|strong=\"G3004\"*, “He|strong=\"G2532\"* stirs up|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, teaching|strong=\"G1321\"* throughout|strong=\"G2596\"* all|strong=\"G3650\"* Judea|strong=\"G2449\"*, beginning from|strong=\"G2532\"* Galilee|strong=\"G1056\"* even|strong=\"G2532\"* to|strong=\"G2532\"* this|strong=\"G3588\"* place|strong=\"G5602\"*.”" + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Pilate|strong=\"G4091\"* heard Galilee|strong=\"G1057\"* mentioned, he|strong=\"G1161\"* asked|strong=\"G1905\"* if|strong=\"G1487\"* the|strong=\"G1161\"* man was|strong=\"G1510\"* a|strong=\"G1510\"* Galilean|strong=\"G1057\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* found|strong=\"G1921\"* out|strong=\"G1537\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* in|strong=\"G1722\"* Herod|strong=\"G2264\"*’s jurisdiction|strong=\"G1849\"*, he|strong=\"G2532\"* sent|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G4314\"* Herod|strong=\"G2264\"*, who|strong=\"G3588\"* was|strong=\"G1510\"* also|strong=\"G2532\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2414\"* during|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* Herod|strong=\"G2264\"* saw|strong=\"G3708\"* Jesus|strong=\"G2424\"*, he|strong=\"G2532\"* was|strong=\"G1510\"* exceedingly|strong=\"G3029\"* glad|strong=\"G5463\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* had|strong=\"G2424\"* wanted|strong=\"G2309\"* to|strong=\"G2532\"* see|strong=\"G3708\"* him|strong=\"G3588\"* for|strong=\"G1063\"* a|strong=\"G1096\"* long|strong=\"G2425\"* time|strong=\"G5550\"*, because|strong=\"G1223\"* he|strong=\"G2532\"* had|strong=\"G2424\"* heard many|strong=\"G2425\"* things|strong=\"G3588\"* about|strong=\"G4012\"* him|strong=\"G3588\"*. He|strong=\"G2532\"* hoped|strong=\"G1679\"* to|strong=\"G2532\"* see|strong=\"G3708\"* some|strong=\"G5100\"* miracle|strong=\"G4592\"* done|strong=\"G1096\"* by|strong=\"G1223\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"G1161\"* questioned|strong=\"G1905\"* him|strong=\"G1905\"* with|strong=\"G1722\"* many|strong=\"G2425\"* words|strong=\"G3056\"*, but|strong=\"G1161\"* he|strong=\"G1161\"* gave|strong=\"G3762\"* no|strong=\"G3762\"* answers." + }, + { + "verseNum": 10, + "text": "The|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* stood|strong=\"G2476\"*, vehemently|strong=\"G2159\"* accusing|strong=\"G2723\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "Herod|strong=\"G2264\"* with|strong=\"G4862\"* his|strong=\"G2532\"* soldiers|strong=\"G4753\"* humiliated him|strong=\"G3588\"* and|strong=\"G2532\"* mocked|strong=\"G1702\"* him|strong=\"G3588\"*. Dressing|strong=\"G4016\"* him|strong=\"G3588\"* in|strong=\"G2532\"* luxurious clothing|strong=\"G2066\"*, they|strong=\"G2532\"* sent|strong=\"G2532\"* him|strong=\"G3588\"* back to|strong=\"G2532\"* Pilate|strong=\"G4091\"*." + }, + { + "verseNum": 12, + "text": "Herod|strong=\"G2264\"* and|strong=\"G2532\"* Pilate|strong=\"G4091\"* became|strong=\"G1096\"* friends|strong=\"G5384\"* with|strong=\"G3326\"* each|strong=\"G1438\"* other|strong=\"G1161\"* that|strong=\"G3588\"* very|strong=\"G2532\"* day|strong=\"G2250\"*, for|strong=\"G1063\"* before|strong=\"G4314\"* that|strong=\"G3588\"* they|strong=\"G2532\"* were|strong=\"G1510\"* enemies|strong=\"G2189\"* with|strong=\"G3326\"* each|strong=\"G1438\"* other|strong=\"G1161\"*." + }, + { + "verseNum": 13, + "text": "Pilate|strong=\"G4091\"* called|strong=\"G4779\"* together|strong=\"G4779\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests, the|strong=\"G2532\"* rulers, and|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “You|strong=\"G5210\"* brought|strong=\"G4374\"* this|strong=\"G3778\"* man|strong=\"G3778\"* to|strong=\"G4314\"* me|strong=\"G1473\"* as|strong=\"G5613\"* one|strong=\"G3762\"* that|strong=\"G3739\"* perverts the|strong=\"G1722\"* people|strong=\"G2992\"*, and|strong=\"G2532\"* behold|strong=\"G2400\"*, having|strong=\"G2532\"* examined him|strong=\"G3588\"* before|strong=\"G1799\"* you|strong=\"G5210\"*, I|strong=\"G1473\"* found|strong=\"G2147\"* no|strong=\"G3762\"* basis|strong=\"G2596\"* for|strong=\"G4314\"* a|strong=\"G5613\"* charge|strong=\"G2723\"* against|strong=\"G2596\"* this|strong=\"G3778\"* man|strong=\"G3778\"* concerning|strong=\"G2596\"* those|strong=\"G3588\"* things|strong=\"G3778\"* of|strong=\"G2532\"* which|strong=\"G3739\"* you|strong=\"G5210\"* accuse|strong=\"G2723\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "Neither|strong=\"G3761\"* has|strong=\"G3762\"* Herod|strong=\"G2264\"*, for|strong=\"G1063\"* I|strong=\"G1473\"* sent|strong=\"G2532\"* you|strong=\"G3708\"* to|strong=\"G4314\"* him|strong=\"G3708\"*, and|strong=\"G2532\"* see|strong=\"G3708\"*, nothing|strong=\"G3762\"* worthy of|strong=\"G2532\"* death|strong=\"G2288\"* has|strong=\"G3762\"* been|strong=\"G1510\"* done|strong=\"G4238\"* by|strong=\"G4314\"* him|strong=\"G3708\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"G3767\"* will|strong=\"G3767\"* therefore|strong=\"G3767\"* chastise|strong=\"G3811\"* him and|strong=\"G3767\"* release him.”" + }, + { + "verseNum": 17, + "text": "Now he had to release one prisoner to them at the feast.+ 23:17 NU omits verse 17.*" + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* they|strong=\"G1161\"* all|strong=\"G1161\"* cried|strong=\"G3588\"* out together|strong=\"G3826\"*, saying|strong=\"G3004\"*, “Away with|strong=\"G3588\"* this|strong=\"G3778\"* man|strong=\"G3778\"*! Release to|strong=\"G3004\"* us|strong=\"G3004\"* Barabbas!”—" + }, + { + "verseNum": 19, + "text": "one|strong=\"G5100\"* who|strong=\"G3588\"* was|strong=\"G1510\"* thrown into|strong=\"G1722\"* prison|strong=\"G5438\"* for|strong=\"G1223\"* a|strong=\"G1096\"* certain|strong=\"G5100\"* revolt in|strong=\"G1722\"* the|strong=\"G1722\"* city|strong=\"G4172\"*, and|strong=\"G2532\"* for|strong=\"G1223\"* murder|strong=\"G5408\"*." + }, + { + "verseNum": 20, + "text": "Then|strong=\"G1161\"* Pilate|strong=\"G4091\"* spoke|strong=\"G4377\"* to|strong=\"G2309\"* them|strong=\"G3588\"* again|strong=\"G3825\"*, wanting|strong=\"G2309\"* to|strong=\"G2309\"* release Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 21, + "text": "but|strong=\"G1161\"* they|strong=\"G1161\"* shouted|strong=\"G2019\"*, saying|strong=\"G3004\"*, “Crucify|strong=\"G4717\"*! Crucify|strong=\"G4717\"* him|strong=\"G3588\"*!”" + }, + { + "verseNum": 22, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"* the|strong=\"G1722\"* third|strong=\"G5154\"* time|strong=\"G5154\"*, “Why|strong=\"G5101\"*? What|strong=\"G5101\"* evil|strong=\"G2556\"* has|strong=\"G5101\"* this|strong=\"G3778\"* man|strong=\"G3778\"* done|strong=\"G4160\"*? I|strong=\"G1161\"* have|strong=\"G4160\"* found|strong=\"G2147\"* no|strong=\"G3762\"* capital crime|strong=\"G2147\"* in|strong=\"G1722\"* him|strong=\"G3588\"*. I|strong=\"G1161\"* will|strong=\"G5101\"* therefore|strong=\"G3767\"* chastise|strong=\"G3811\"* him|strong=\"G3588\"* and|strong=\"G1161\"* release him|strong=\"G3588\"*.”" + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G3588\"* urgent with|strong=\"G2532\"* loud|strong=\"G3173\"* voices|strong=\"G5456\"*, asking that|strong=\"G3588\"* he|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G2532\"* crucified|strong=\"G4717\"*. Their|strong=\"G2532\"* voices|strong=\"G5456\"* and|strong=\"G2532\"* the|strong=\"G2532\"* voices|strong=\"G5456\"* of|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests prevailed|strong=\"G2729\"*." + }, + { + "verseNum": 24, + "text": "Pilate|strong=\"G4091\"* decreed that|strong=\"G3588\"* what|strong=\"G3588\"* they|strong=\"G2532\"* asked for|strong=\"G2532\"* should|strong=\"G3588\"* be|strong=\"G1096\"* done|strong=\"G1096\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"G2532\"* released him|strong=\"G3588\"* who|strong=\"G3739\"* had|strong=\"G2424\"* been|strong=\"G2532\"* thrown into|strong=\"G1519\"* prison|strong=\"G5438\"* for|strong=\"G1519\"* insurrection|strong=\"G4714\"* and|strong=\"G2532\"* murder|strong=\"G5408\"*, for|strong=\"G1519\"* whom|strong=\"G3739\"* they|strong=\"G2532\"* asked, but|strong=\"G1161\"* he|strong=\"G2532\"* delivered|strong=\"G3860\"* Jesus|strong=\"G2424\"* up|strong=\"G3860\"* to|strong=\"G1519\"* their|strong=\"G2532\"* will|strong=\"G2307\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"G5613\"* they|strong=\"G2532\"* led|strong=\"G2424\"* him|strong=\"G3588\"* away, they|strong=\"G2532\"* grabbed one|strong=\"G5100\"* Simon|strong=\"G4613\"* of|strong=\"G2532\"* Cyrene|strong=\"G2956\"*, coming|strong=\"G2064\"* from|strong=\"G2064\"* the|strong=\"G2532\"* country, and|strong=\"G2532\"* laid|strong=\"G2007\"* the|strong=\"G2532\"* cross|strong=\"G4716\"* on|strong=\"G1949\"* him|strong=\"G3588\"* to|strong=\"G2532\"* carry|strong=\"G5342\"* it|strong=\"G2532\"* after|strong=\"G5613\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 27, + "text": "A|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G4128\"* of|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"* followed|strong=\"G2992\"* him|strong=\"G3588\"*, including|strong=\"G2532\"* women|strong=\"G1135\"* who|strong=\"G3739\"* also|strong=\"G2532\"* mourned and|strong=\"G2532\"* lamented|strong=\"G2875\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 28, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"*, turning|strong=\"G4762\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, said|strong=\"G3004\"*, “\\+w Daughters|strong=\"G2364\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w weep|strong=\"G2799\"\\+w* \\+w for|strong=\"G1909\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w weep|strong=\"G2799\"\\+w* \\+w for|strong=\"G1909\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w for|strong=\"G1909\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w children|strong=\"G5043\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w For|strong=\"G3754\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w barren|strong=\"G4723\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w wombs|strong=\"G2836\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w never|strong=\"G3756\"\\+w* \\+w bore|strong=\"G1080\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w breasts|strong=\"G3149\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w never|strong=\"G3756\"\\+w* \\+w nursed|strong=\"G5142\"\\+w*.’ *" + }, + { + "verseNum": 30, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* begin \\+w to|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w mountains|strong=\"G3735\"\\+w*, ‘\\+w Fall|strong=\"G4098\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w us|strong=\"G3004\"\\+w*!’ \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w hills|strong=\"G1015\"\\+w*, ‘\\+w Cover|strong=\"G2572\"\\+w* \\+w us|strong=\"G3004\"\\+w*.’*+ 23:30 Hosea 10:8*" + }, + { + "verseNum": 31, + "text": "\\+w For|strong=\"G3754\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w green|strong=\"G5200\"\\+w* \\+w tree|strong=\"G3586\"\\+w*, \\+w what|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w dry|strong=\"G3584\"\\+w*?”*" + }, + { + "verseNum": 32, + "text": "There|strong=\"G2532\"* were|strong=\"G2532\"* also|strong=\"G2532\"* others|strong=\"G2087\"*, two|strong=\"G1417\"* criminals|strong=\"G2557\"*, led with|strong=\"G4862\"* him|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* put|strong=\"G2532\"* to|strong=\"G2532\"* death." + }, + { + "verseNum": 33, + "text": "When|strong=\"G3753\"* they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G2532\"* the|strong=\"G2532\"* place|strong=\"G5117\"* that|strong=\"G3739\"* is|strong=\"G3588\"* called|strong=\"G2564\"* “The|strong=\"G2532\"* Skull|strong=\"G2898\"*”, they|strong=\"G2532\"* crucified|strong=\"G4717\"* him|strong=\"G3588\"* there|strong=\"G1563\"* with|strong=\"G1537\"* the|strong=\"G2532\"* criminals|strong=\"G2557\"*, one|strong=\"G3739\"* on|strong=\"G1909\"* the|strong=\"G2532\"* right|strong=\"G1188\"* and|strong=\"G2532\"* the|strong=\"G2532\"* other|strong=\"G1161\"* on|strong=\"G1909\"* the|strong=\"G2532\"* left." + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “\\+w Father|strong=\"G3962\"\\+w*, forgive \\+w them|strong=\"G3588\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w they|strong=\"G1161\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w doing|strong=\"G4160\"\\+w*.”*" + }, + { + "verseNum": 35, + "text": "The|strong=\"G2532\"* people|strong=\"G2992\"* stood|strong=\"G2476\"* watching|strong=\"G2334\"*. The|strong=\"G2532\"* rulers with|strong=\"G2532\"* them|strong=\"G3588\"* also|strong=\"G2532\"* scoffed at|strong=\"G1161\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “He|strong=\"G2532\"* saved|strong=\"G4982\"* others|strong=\"G3588\"*. Let|strong=\"G1161\"* him|strong=\"G3588\"* save|strong=\"G4982\"* himself|strong=\"G1438\"*, if|strong=\"G1487\"* this|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, his|strong=\"G1438\"* chosen|strong=\"G1588\"* one|strong=\"G1438\"*!”" + }, + { + "verseNum": 36, + "text": "The|strong=\"G2532\"* soldiers|strong=\"G4757\"* also|strong=\"G2532\"* mocked|strong=\"G1702\"* him|strong=\"G3588\"*, coming|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"* and|strong=\"G2532\"* offering|strong=\"G4374\"* him|strong=\"G3588\"* vinegar|strong=\"G3690\"*," + }, + { + "verseNum": 37, + "text": "and|strong=\"G2532\"* saying|strong=\"G3004\"*, “If|strong=\"G1487\"* you|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G2532\"* King|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, save|strong=\"G4982\"* yourself|strong=\"G4572\"*!”" + }, + { + "verseNum": 38, + "text": "An|strong=\"G2532\"* inscription|strong=\"G1923\"* was|strong=\"G1510\"* also|strong=\"G2532\"* written|strong=\"G3588\"* over|strong=\"G1909\"* him|strong=\"G3588\"* in|strong=\"G1909\"* letters of|strong=\"G2532\"* Greek, Latin, and|strong=\"G2532\"* Hebrew: “THIS|strong=\"G3778\"* IS|strong=\"G1510\"* THE|strong=\"G2532\"* KING|strong=\"G3588\"* OF|strong=\"G2532\"* THE|strong=\"G2532\"* JEWS|strong=\"G2453\"*.”" + }, + { + "verseNum": 39, + "text": "One|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G2532\"* criminals|strong=\"G2557\"* who|strong=\"G3588\"* was|strong=\"G1510\"* hanged|strong=\"G2910\"* insulted him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “If|strong=\"G2532\"* you|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*, save|strong=\"G4982\"* yourself|strong=\"G4572\"* and|strong=\"G2532\"* us|strong=\"G3004\"*!”" + }, + { + "verseNum": 40, + "text": "But|strong=\"G1161\"* the|strong=\"G1722\"* other|strong=\"G2087\"* answered|strong=\"G5346\"*, and|strong=\"G1161\"* rebuking|strong=\"G2008\"* him|strong=\"G3588\"* said|strong=\"G5346\"*, “Don’t|strong=\"G3588\"* you|strong=\"G4771\"* even|strong=\"G3761\"* fear|strong=\"G5399\"* God|strong=\"G2316\"*, seeing|strong=\"G3754\"* you|strong=\"G4771\"* are|strong=\"G1510\"* under|strong=\"G1722\"* the|strong=\"G1722\"* same condemnation|strong=\"G2917\"*?" + }, + { + "verseNum": 41, + "text": "And|strong=\"G2532\"* we|strong=\"G2249\"* indeed|strong=\"G2532\"* justly|strong=\"G1346\"*, for|strong=\"G1063\"* we|strong=\"G2249\"* receive the|strong=\"G2532\"* due reward for|strong=\"G1063\"* our|strong=\"G2532\"* deeds|strong=\"G4238\"*, but|strong=\"G1161\"* this|strong=\"G3778\"* man|strong=\"G3778\"* has|strong=\"G3739\"* done|strong=\"G4238\"* nothing|strong=\"G3762\"* wrong.”" + }, + { + "verseNum": 42, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* Jesus|strong=\"G2424\"*, “Lord|strong=\"G3588\"*, remember|strong=\"G3403\"* me|strong=\"G1473\"* when|strong=\"G3752\"* you|strong=\"G4771\"* come|strong=\"G2064\"* into|strong=\"G1722\"* your|strong=\"G2532\"* Kingdom.”" + }, + { + "verseNum": 43, + "text": "Jesus|strong=\"G3004\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Assuredly \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w today|strong=\"G4594\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Paradise|strong=\"G3857\"\\+w*.”*" + }, + { + "verseNum": 44, + "text": "It|strong=\"G2532\"* was|strong=\"G1510\"* now|strong=\"G2532\"* about|strong=\"G5616\"* the|strong=\"G2532\"* sixth|strong=\"G1623\"* hour|strong=\"G5610\"*,+ 23:44 Time was counted from sunrise, so the sixth hour was about noon.* and|strong=\"G2532\"* darkness|strong=\"G4655\"* came|strong=\"G1096\"* over|strong=\"G1909\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* land|strong=\"G1093\"* until|strong=\"G2193\"* the|strong=\"G2532\"* ninth|strong=\"G1766\"* hour|strong=\"G5610\"*.+ 23:44 3:00 p.m.*" + }, + { + "verseNum": 45, + "text": "The|strong=\"G1161\"* sun|strong=\"G2246\"* was|strong=\"G3588\"* darkened, and|strong=\"G1161\"* the|strong=\"G1161\"* veil|strong=\"G2665\"* of|strong=\"G3485\"* the|strong=\"G1161\"* temple|strong=\"G3485\"* was|strong=\"G3588\"* torn|strong=\"G4977\"* in|strong=\"G1161\"* two|strong=\"G3319\"*." + }, + { + "verseNum": 46, + "text": "Jesus|strong=\"G2424\"*, crying|strong=\"G5455\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, said|strong=\"G3004\"*, “\\+w Father|strong=\"G3962\"\\+w*, \\+w into|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w commit|strong=\"G3908\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w spirit|strong=\"G4151\"\\+w*!”* Having|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* breathed|strong=\"G1606\"* his|strong=\"G1519\"* last|strong=\"G1606\"*." + }, + { + "verseNum": 47, + "text": "When|strong=\"G1161\"* the|strong=\"G1161\"* centurion|strong=\"G1543\"* saw|strong=\"G3708\"* what|strong=\"G3588\"* was|strong=\"G1510\"* done|strong=\"G1096\"*, he|strong=\"G1161\"* glorified|strong=\"G1392\"* God|strong=\"G2316\"*, saying|strong=\"G3004\"*, “Certainly|strong=\"G3689\"* this|strong=\"G3778\"* was|strong=\"G1510\"* a|strong=\"G1096\"* righteous|strong=\"G1342\"* man|strong=\"G3778\"*.”" + }, + { + "verseNum": 48, + "text": "All|strong=\"G3956\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* that|strong=\"G3588\"* came|strong=\"G1096\"* together|strong=\"G1909\"* to|strong=\"G2532\"* see|strong=\"G2334\"* this|strong=\"G3778\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* saw|strong=\"G2334\"* the|strong=\"G2532\"* things|strong=\"G3956\"* that|strong=\"G3588\"* were|strong=\"G3588\"* done|strong=\"G1096\"*, returned|strong=\"G5290\"* home|strong=\"G5290\"* beating|strong=\"G5180\"* their|strong=\"G2532\"* chests|strong=\"G4738\"*." + }, + { + "verseNum": 49, + "text": "All|strong=\"G3956\"* his|strong=\"G3956\"* acquaintances|strong=\"G1110\"* and|strong=\"G2532\"* the|strong=\"G2532\"* women|strong=\"G1135\"* who|strong=\"G3588\"* followed|strong=\"G4870\"* with|strong=\"G2532\"* him|strong=\"G3588\"* from|strong=\"G2532\"* Galilee|strong=\"G1056\"* stood|strong=\"G2476\"* at|strong=\"G1161\"* a|strong=\"G2532\"* distance|strong=\"G3113\"*, watching these|strong=\"G3778\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 50, + "text": "Behold|strong=\"G2400\"*, there|strong=\"G2532\"* was|strong=\"G2532\"* a|strong=\"G2532\"* man|strong=\"G1342\"* named|strong=\"G3686\"* Joseph|strong=\"G2501\"*, who|strong=\"G2532\"* was|strong=\"G2532\"* a|strong=\"G2532\"* member|strong=\"G1010\"* of|strong=\"G2532\"* the|strong=\"G2532\"* council|strong=\"G1010\"*, a|strong=\"G2532\"* good|strong=\"G2532\"* and|strong=\"G2532\"* righteous|strong=\"G1342\"* man|strong=\"G1342\"*" + }, + { + "verseNum": 51, + "text": "(he|strong=\"G2532\"* had|strong=\"G2532\"* not|strong=\"G3756\"* consented|strong=\"G4784\"* to|strong=\"G2532\"* their|strong=\"G2532\"* counsel|strong=\"G1012\"* and|strong=\"G2532\"* deed|strong=\"G4234\"*), from|strong=\"G2532\"* Arimathaea, a|strong=\"G2532\"* city|strong=\"G4172\"* of|strong=\"G2316\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, who|strong=\"G3739\"* was|strong=\"G1510\"* also|strong=\"G2532\"* waiting|strong=\"G4327\"* for|strong=\"G2532\"* God|strong=\"G2316\"*’s Kingdom." + }, + { + "verseNum": 52, + "text": "This|strong=\"G3778\"* man|strong=\"G3778\"* went|strong=\"G4334\"* to|strong=\"G4334\"* Pilate|strong=\"G4091\"*, and|strong=\"G4334\"* asked for|strong=\"G3778\"* Jesus|strong=\"G2424\"*’ body|strong=\"G4983\"*." + }, + { + "verseNum": 53, + "text": "He|strong=\"G2532\"* took|strong=\"G2507\"* it|strong=\"G2532\"* down|strong=\"G5087\"* and|strong=\"G2532\"* wrapped|strong=\"G1794\"* it|strong=\"G2532\"* in|strong=\"G1722\"* a|strong=\"G2532\"* linen|strong=\"G4616\"* cloth|strong=\"G4616\"*, and|strong=\"G2532\"* laid|strong=\"G5087\"* him|strong=\"G2532\"* in|strong=\"G1722\"* a|strong=\"G2532\"* tomb|strong=\"G3418\"* that|strong=\"G2532\"* was|strong=\"G1510\"* cut|strong=\"G2532\"* in|strong=\"G1722\"* stone|strong=\"G2991\"*, where|strong=\"G3757\"* no|strong=\"G3756\"* one|strong=\"G3762\"* had|strong=\"G2532\"* ever|strong=\"G3756\"* been|strong=\"G1510\"* laid|strong=\"G5087\"*." + }, + { + "verseNum": 54, + "text": "It|strong=\"G2532\"* was|strong=\"G1510\"* the|strong=\"G2532\"* day|strong=\"G2250\"* of|strong=\"G2250\"* the|strong=\"G2532\"* Preparation|strong=\"G3904\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"* was|strong=\"G1510\"* drawing near." + }, + { + "verseNum": 55, + "text": "The|strong=\"G2532\"* women|strong=\"G1135\"* who|strong=\"G3588\"* had|strong=\"G2532\"* come|strong=\"G4905\"* with|strong=\"G1537\"* him|strong=\"G3588\"* out|strong=\"G1537\"* of|strong=\"G1537\"* Galilee|strong=\"G1056\"* followed|strong=\"G2628\"* after|strong=\"G1161\"*, and|strong=\"G2532\"* saw|strong=\"G2300\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"* and|strong=\"G2532\"* how|strong=\"G5613\"* his|strong=\"G2532\"* body|strong=\"G4983\"* was|strong=\"G1510\"* laid|strong=\"G5087\"*." + }, + { + "verseNum": 56, + "text": "They|strong=\"G2532\"* returned|strong=\"G5290\"* and|strong=\"G2532\"* prepared|strong=\"G2090\"* spices and|strong=\"G2532\"* ointments|strong=\"G3464\"*. On|strong=\"G2596\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"* they|strong=\"G2532\"* rested|strong=\"G2270\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* commandment|strong=\"G1785\"*." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"G1161\"* on|strong=\"G1909\"* the|strong=\"G1161\"* first|strong=\"G1520\"* day|strong=\"G4521\"* of|strong=\"G1909\"* the|strong=\"G1161\"* week|strong=\"G4521\"*, at|strong=\"G1909\"* early|strong=\"G3722\"* dawn|strong=\"G3722\"*, they|strong=\"G1161\"* and|strong=\"G1161\"* some|strong=\"G3739\"* others|strong=\"G3588\"* came|strong=\"G2064\"* to|strong=\"G1909\"* the|strong=\"G1161\"* tomb|strong=\"G3418\"*, bringing|strong=\"G5342\"* the|strong=\"G1161\"* spices which|strong=\"G3739\"* they|strong=\"G1161\"* had|strong=\"G3739\"* prepared|strong=\"G2090\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"G1161\"* found|strong=\"G2147\"* the|strong=\"G1161\"* stone|strong=\"G3037\"* rolled|strong=\"G3037\"* away from|strong=\"G3588\"* the|strong=\"G1161\"* tomb|strong=\"G3419\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"G1161\"* entered|strong=\"G1525\"* in|strong=\"G1525\"*, and|strong=\"G1161\"* didn’t|strong=\"G3588\"* find|strong=\"G2147\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*’ body|strong=\"G4983\"*." + }, + { + "verseNum": 4, + "text": "While|strong=\"G1722\"* they|strong=\"G2532\"* were|strong=\"G3588\"* greatly perplexed about|strong=\"G4012\"* this|strong=\"G3778\"*, behold|strong=\"G2400\"*, two|strong=\"G1417\"* men|strong=\"G3778\"* stood|strong=\"G2186\"* by|strong=\"G1722\"* them|strong=\"G3588\"* in|strong=\"G1722\"* dazzling clothing|strong=\"G2066\"*." + }, + { + "verseNum": 5, + "text": "Becoming|strong=\"G1096\"* terrified|strong=\"G1719\"*, they|strong=\"G2532\"* bowed|strong=\"G2827\"* their|strong=\"G1438\"* faces|strong=\"G4383\"* down|strong=\"G2827\"* to|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"G3588\"* isn’t|strong=\"G3588\"* here|strong=\"G5602\"*, but|strong=\"G3588\"* is|strong=\"G1510\"* risen|strong=\"G1453\"*. Remember|strong=\"G3403\"* what|strong=\"G3588\"* he|strong=\"G3588\"* told|strong=\"G2980\"* you|strong=\"G5210\"* when|strong=\"G5613\"* he|strong=\"G3588\"* was|strong=\"G1510\"* still|strong=\"G2089\"* in|strong=\"G1722\"* Galilee|strong=\"G1056\"*," + }, + { + "verseNum": 7, + "text": "saying|strong=\"G3004\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* Man|strong=\"G1519\"* must|strong=\"G1163\"* be|strong=\"G2532\"* delivered|strong=\"G3860\"* up|strong=\"G3860\"* into|strong=\"G1519\"* the|strong=\"G2532\"* hands|strong=\"G5495\"* of|strong=\"G5207\"* sinful men|strong=\"G3588\"* and|strong=\"G2532\"* be|strong=\"G2532\"* crucified|strong=\"G4717\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* third|strong=\"G5154\"* day|strong=\"G2250\"* rise|strong=\"G2250\"* again|strong=\"G1519\"*?”" + }, + { + "verseNum": 8, + "text": "They|strong=\"G2532\"* remembered|strong=\"G3403\"* his|strong=\"G2532\"* words|strong=\"G4487\"*," + }, + { + "verseNum": 9, + "text": "returned|strong=\"G5290\"* from|strong=\"G2532\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"*, and|strong=\"G2532\"* told all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"* to|strong=\"G2532\"* the|strong=\"G2532\"* eleven|strong=\"G1733\"* and|strong=\"G2532\"* to|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* rest|strong=\"G3062\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G1510\"* Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"*, Joanna|strong=\"G2489\"*, and|strong=\"G2532\"* Mary|strong=\"G3137\"* the|strong=\"G2532\"* mother of|strong=\"G2532\"* James|strong=\"G2385\"*. The|strong=\"G2532\"* other|strong=\"G3062\"* women|strong=\"G3062\"* with|strong=\"G4862\"* them|strong=\"G3588\"* told|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G4314\"* the|strong=\"G2532\"* apostles." + }, + { + "verseNum": 11, + "text": "These|strong=\"G3778\"* words|strong=\"G4487\"* seemed|strong=\"G5316\"* to|strong=\"G2532\"* them|strong=\"G3588\"* to|strong=\"G2532\"* be|strong=\"G2532\"* nonsense|strong=\"G3026\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* believe them|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* got|strong=\"G1096\"* up|strong=\"G2532\"* and|strong=\"G2532\"* ran|strong=\"G5143\"* to|strong=\"G4314\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"*. Stooping|strong=\"G3879\"* and|strong=\"G2532\"* looking|strong=\"G3879\"* in|strong=\"G1909\"*, he|strong=\"G2532\"* saw the|strong=\"G2532\"* strips of|strong=\"G2532\"* linen|strong=\"G3608\"* lying by|strong=\"G1909\"* themselves|strong=\"G1438\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* departed to|strong=\"G4314\"* his|strong=\"G1438\"* home|strong=\"G1438\"*, wondering|strong=\"G2296\"* what|strong=\"G2532\"* had|strong=\"G2532\"* happened|strong=\"G1096\"*." + }, + { + "verseNum": 13, + "text": "Behold|strong=\"G2400\"*, two|strong=\"G1417\"* of|strong=\"G1537\"* them|strong=\"G3588\"* were|strong=\"G1510\"* going|strong=\"G4198\"* that|strong=\"G3739\"* very|strong=\"G2532\"* day|strong=\"G2250\"* to|strong=\"G1519\"* a|strong=\"G2532\"* village|strong=\"G2968\"* named|strong=\"G3686\"* Emmaus|strong=\"G1695\"*, which|strong=\"G3739\"* was|strong=\"G1510\"* sixty|strong=\"G1835\"* stadia+ 24:13 60 stadia = about 11 kilometers or about 7 miles. * from|strong=\"G1537\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"G2532\"* talked|strong=\"G3656\"* with|strong=\"G4314\"* each other|strong=\"G3588\"* about|strong=\"G4012\"* all|strong=\"G3956\"* of|strong=\"G4012\"* these|strong=\"G3778\"* things|strong=\"G3956\"* which|strong=\"G3588\"* had|strong=\"G2532\"* happened|strong=\"G4819\"*." + }, + { + "verseNum": 15, + "text": "While|strong=\"G1722\"* they|strong=\"G2532\"* talked|strong=\"G3656\"* and|strong=\"G2532\"* questioned|strong=\"G4802\"* together|strong=\"G4802\"*, Jesus|strong=\"G2424\"* himself|strong=\"G1438\"* came|strong=\"G1096\"* near|strong=\"G1448\"*, and|strong=\"G2532\"* went|strong=\"G2424\"* with|strong=\"G1722\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* their|strong=\"G3588\"* eyes|strong=\"G3788\"* were|strong=\"G3588\"* kept|strong=\"G2902\"* from|strong=\"G3588\"* recognizing|strong=\"G1921\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w talking|strong=\"G3004\"\\+w* \\+w about|strong=\"G4314\"\\+w* \\+w as|strong=\"G1161\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w walk|strong=\"G4043\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w sad|strong=\"G4659\"\\+w*?”*" + }, + { + "verseNum": 18, + "text": "One|strong=\"G1520\"* of|strong=\"G2250\"* them|strong=\"G3588\"*, named|strong=\"G3686\"* Cleopas|strong=\"G2810\"*, answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Are|strong=\"G3588\"* you|strong=\"G4771\"* the|strong=\"G1722\"* only|strong=\"G3441\"* stranger|strong=\"G3939\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"* who|strong=\"G3739\"* doesn’t|strong=\"G3588\"* know|strong=\"G1097\"* the|strong=\"G1722\"* things|strong=\"G3778\"* which|strong=\"G3739\"* have|strong=\"G2532\"* happened|strong=\"G1096\"* there|strong=\"G2532\"* in|strong=\"G1722\"* these|strong=\"G3778\"* days|strong=\"G2250\"*?”" + }, + { + "verseNum": 19, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w What|strong=\"G3739\"\\+w* \\+w things|strong=\"G3956\"\\+w*?”*" + }, + { + "verseNum": 20, + "text": "and|strong=\"G2532\"* how|strong=\"G3704\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* our|strong=\"G2532\"* rulers delivered|strong=\"G3860\"* him|strong=\"G3588\"* up|strong=\"G3860\"* to|strong=\"G1519\"* be|strong=\"G2532\"* condemned|strong=\"G2917\"* to|strong=\"G1519\"* death|strong=\"G2288\"*, and|strong=\"G2532\"* crucified|strong=\"G4717\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"* were|strong=\"G1510\"* hoping|strong=\"G1679\"* that|strong=\"G3754\"* it|strong=\"G2532\"* was|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3739\"* would|strong=\"G3195\"* redeem|strong=\"G3084\"* Israel|strong=\"G2474\"*. Yes|strong=\"G1161\"*, and|strong=\"G2532\"* besides|strong=\"G2532\"* all|strong=\"G3956\"* this|strong=\"G3778\"*, it|strong=\"G2532\"* is|strong=\"G1510\"* now|strong=\"G1161\"* the|strong=\"G2532\"* third|strong=\"G5154\"* day|strong=\"G2250\"* since|strong=\"G3754\"* these|strong=\"G3778\"* things|strong=\"G3956\"* happened|strong=\"G1096\"*." + }, + { + "verseNum": 22, + "text": "Also|strong=\"G2532\"*, certain|strong=\"G5100\"* women|strong=\"G1135\"* of|strong=\"G1537\"* our|strong=\"G2532\"* company amazed|strong=\"G1839\"* us|strong=\"G2249\"*, having|strong=\"G2532\"* arrived|strong=\"G1096\"* early|strong=\"G3720\"* at|strong=\"G1909\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"*;" + }, + { + "verseNum": 23, + "text": "and|strong=\"G2532\"* when|strong=\"G2532\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* find|strong=\"G2147\"* his|strong=\"G3708\"* body|strong=\"G4983\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* saying|strong=\"G3004\"* that|strong=\"G3739\"* they|strong=\"G2532\"* had|strong=\"G2532\"* also|strong=\"G2532\"* seen|strong=\"G3708\"* a|strong=\"G2532\"* vision|strong=\"G3701\"* of|strong=\"G2532\"* angels, who|strong=\"G3739\"* said|strong=\"G3004\"* that|strong=\"G3739\"* he|strong=\"G2532\"* was|strong=\"G3588\"* alive|strong=\"G2198\"*." + }, + { + "verseNum": 24, + "text": "Some|strong=\"G5100\"* of|strong=\"G2532\"* us|strong=\"G3004\"* went|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"* and|strong=\"G2532\"* found|strong=\"G2147\"* it|strong=\"G2532\"* just|strong=\"G2531\"* like|strong=\"G3779\"* the|strong=\"G2532\"* women|strong=\"G1135\"* had|strong=\"G2532\"* said|strong=\"G3004\"*, but|strong=\"G1161\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* see|strong=\"G3708\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 25, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w Foolish|strong=\"G2532\"\\+w* \\+w people|strong=\"G3956\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w slow|strong=\"G1021\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w spoken|strong=\"G2980\"\\+w*! *" + }, + { + "verseNum": 26, + "text": "Didn’\\+w t|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Christ|strong=\"G5547\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w suffer|strong=\"G3958\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w glory|strong=\"G1391\"\\+w*?”*" + }, + { + "verseNum": 27, + "text": "Beginning from|strong=\"G2532\"* Moses|strong=\"G3475\"* and|strong=\"G2532\"* from|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"*, he|strong=\"G2532\"* explained|strong=\"G1329\"* to|strong=\"G2532\"* them|strong=\"G3588\"* in|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* Scriptures|strong=\"G1124\"* the|strong=\"G1722\"* things|strong=\"G3956\"* concerning|strong=\"G4012\"* himself|strong=\"G1438\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"G2532\"* came|strong=\"G2532\"* near|strong=\"G1448\"* to|strong=\"G1519\"* the|strong=\"G2532\"* village|strong=\"G2968\"* where|strong=\"G3757\"* they|strong=\"G2532\"* were|strong=\"G3588\"* going|strong=\"G4198\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* acted|strong=\"G4364\"* like he|strong=\"G2532\"* would|strong=\"G2532\"* go|strong=\"G4198\"* further|strong=\"G4208\"*." + }, + { + "verseNum": 29, + "text": "They|strong=\"G2532\"* urged|strong=\"G3849\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Stay|strong=\"G3306\"* with|strong=\"G3326\"* us|strong=\"G3004\"*, for|strong=\"G3754\"* it|strong=\"G2532\"* is|strong=\"G1510\"* almost evening|strong=\"G2073\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* day|strong=\"G2250\"* is|strong=\"G1510\"* almost over|strong=\"G2827\"*.”" + }, + { + "verseNum": 30, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* sat|strong=\"G2532\"* down|strong=\"G2625\"* at|strong=\"G1722\"* the|strong=\"G1722\"* table with|strong=\"G3326\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G1722\"* bread and|strong=\"G2532\"* gave|strong=\"G2532\"* thanks. Breaking|strong=\"G2806\"* it|strong=\"G2532\"*, he|strong=\"G2532\"* gave|strong=\"G2532\"* it|strong=\"G2532\"* to|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 31, + "text": "Their|strong=\"G2532\"* eyes|strong=\"G3788\"* were|strong=\"G3588\"* opened|strong=\"G1272\"* and|strong=\"G2532\"* they|strong=\"G2532\"* recognized|strong=\"G1921\"* him|strong=\"G3588\"*; then|strong=\"G2532\"* he|strong=\"G2532\"* vanished out|strong=\"G2532\"* of|strong=\"G2532\"* their|strong=\"G2532\"* sight|strong=\"G3788\"*." + }, + { + "verseNum": 32, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* one|strong=\"G3588\"* another|strong=\"G3588\"*, “Weren’t|strong=\"G3588\"* our|strong=\"G2532\"* hearts|strong=\"G2588\"* burning|strong=\"G2545\"* within|strong=\"G1722\"* us|strong=\"G3004\"* while|strong=\"G1722\"* he|strong=\"G2532\"* spoke|strong=\"G2980\"* to|strong=\"G4314\"* us|strong=\"G3004\"* along|strong=\"G2532\"* the|strong=\"G1722\"* way|strong=\"G3598\"*, and|strong=\"G2532\"* while|strong=\"G1722\"* he|strong=\"G2532\"* opened|strong=\"G1272\"* the|strong=\"G1722\"* Scriptures|strong=\"G1124\"* to|strong=\"G4314\"* us|strong=\"G3004\"*?”" + }, + { + "verseNum": 33, + "text": "They|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G1519\"* that|strong=\"G3588\"* very|strong=\"G2532\"* hour|strong=\"G5610\"*, returned|strong=\"G5290\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*, and|strong=\"G2532\"* found|strong=\"G2147\"* the|strong=\"G2532\"* eleven|strong=\"G1733\"* gathered|strong=\"G4867\"* together|strong=\"G4867\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* with|strong=\"G4862\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 34, + "text": "saying|strong=\"G3004\"*, “The|strong=\"G2532\"* Lord|strong=\"G2962\"* is|strong=\"G3588\"* risen|strong=\"G1453\"* indeed|strong=\"G2532\"*, and|strong=\"G2532\"* has|strong=\"G2962\"* appeared|strong=\"G3708\"* to|strong=\"G2532\"* Simon|strong=\"G4613\"*!”" + }, + { + "verseNum": 35, + "text": "They|strong=\"G2532\"* related|strong=\"G1834\"* the|strong=\"G1722\"* things|strong=\"G3588\"* that|strong=\"G3588\"* happened|strong=\"G3588\"* along|strong=\"G2532\"* the|strong=\"G1722\"* way|strong=\"G3598\"*, and|strong=\"G2532\"* how|strong=\"G5613\"* he|strong=\"G2532\"* was|strong=\"G3588\"* recognized|strong=\"G1097\"* by|strong=\"G1722\"* them|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* breaking|strong=\"G2800\"* of|strong=\"G2532\"* the|strong=\"G1722\"* bread." + }, + { + "verseNum": 36, + "text": "As|strong=\"G1722\"* they|strong=\"G1161\"* said|strong=\"G2980\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, Jesus|strong=\"G3778\"* himself stood|strong=\"G2476\"* among|strong=\"G1722\"* them|strong=\"G1722\"*, and|strong=\"G1161\"* said|strong=\"G2980\"* to|strong=\"G1722\"* them|strong=\"G1722\"*, “Peace \\+w be|strong=\"G1161\"\\+w* \\+w to|strong=\"G1722\"\\+w* \\+w you|strong=\"G1722\"\\+w*.”*" + }, + { + "verseNum": 37, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G1096\"* terrified|strong=\"G1719\"* and|strong=\"G2532\"* filled with|strong=\"G2532\"* fear, and|strong=\"G2532\"* supposed|strong=\"G1380\"* that|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* seen|strong=\"G2334\"* a|strong=\"G1096\"* spirit|strong=\"G4151\"*." + }, + { + "verseNum": 38, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w troubled|strong=\"G5015\"\\+w*? \\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w doubts|strong=\"G1261\"\\+w* arise \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w hearts|strong=\"G2588\"\\+w*? *" + }, + { + "verseNum": 39, + "text": "\\+w See|strong=\"G3708\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w feet|strong=\"G4228\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* truly \\+w me|strong=\"G1473\"\\+w*. \\+w Touch|strong=\"G5584\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w spirit|strong=\"G4151\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w bones|strong=\"G3747\"\\+w*, \\+w as|strong=\"G2531\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w*.”*" + }, + { + "verseNum": 40, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G2532\"*, he|strong=\"G2532\"* showed them|strong=\"G3004\"* his|strong=\"G2532\"* hands|strong=\"G5495\"* and|strong=\"G2532\"* his|strong=\"G2532\"* feet|strong=\"G4228\"*." + }, + { + "verseNum": 41, + "text": "While|strong=\"G1161\"* they|strong=\"G2532\"* still|strong=\"G2089\"* didn’t|strong=\"G3588\"* believe for|strong=\"G1161\"* joy|strong=\"G5479\"*, and|strong=\"G2532\"* wondered|strong=\"G2296\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Do|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w anything|strong=\"G5100\"\\+w* \\+w here|strong=\"G1759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w eat|strong=\"G1034\"\\+w*?”*" + }, + { + "verseNum": 42, + "text": "They|strong=\"G1161\"* gave|strong=\"G1929\"* him|strong=\"G3588\"* a|strong=\"G1161\"* piece|strong=\"G3313\"* of|strong=\"G3588\"* a|strong=\"G1161\"* broiled|strong=\"G3702\"* fish|strong=\"G2486\"* and|strong=\"G1161\"* some|strong=\"G3588\"* honeycomb." + }, + { + "verseNum": 43, + "text": "He|strong=\"G2532\"* took|strong=\"G2983\"* them|strong=\"G2532\"*, and|strong=\"G2532\"* ate|strong=\"G2068\"* in|strong=\"G2532\"* front|strong=\"G1799\"* of|strong=\"G2532\"* them|strong=\"G2532\"*." + }, + { + "verseNum": 44, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w while|strong=\"G1722\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w still|strong=\"G2089\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w law|strong=\"G3551\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w Moses|strong=\"G3475\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w psalms|strong=\"G5568\"\\+w* \\+w concerning|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w*.”*" + }, + { + "verseNum": 45, + "text": "Then|strong=\"G5119\"* he|strong=\"G3588\"* opened|strong=\"G1272\"* their|strong=\"G3588\"* minds|strong=\"G3563\"*, that|strong=\"G3588\"* they|strong=\"G3588\"* might|strong=\"G1124\"* understand|strong=\"G4920\"* the|strong=\"G3588\"* Scriptures|strong=\"G1124\"*." + }, + { + "verseNum": 46, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Thus|strong=\"G3779\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w thus|strong=\"G3779\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* necessary \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Christ|strong=\"G5547\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w suffer|strong=\"G3958\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w rise|strong=\"G2250\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w third|strong=\"G5154\"\\+w* \\+w day|strong=\"G2250\"\\+w*, *" + }, + { + "verseNum": 47, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w repentance|strong=\"G3341\"\\+w* \\+w and|strong=\"G2532\"\\+w* remission \\+w of|strong=\"G2532\"\\+w* sins \\+w should|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w preached|strong=\"G2784\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w*, beginning \\+w at|strong=\"G1909\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w*. *" + }, + { + "verseNum": 48, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w witnesses|strong=\"G3144\"\\+w* \\+w of|strong=\"G3144\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*. *" + }, + { + "verseNum": 49, + "text": "\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w send|strong=\"G1821\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w promise|strong=\"G1860\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w But|strong=\"G1161\"\\+w* wait \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w of|strong=\"G1537\"\\+w* Jerusalem \\+w until|strong=\"G2193\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w clothed|strong=\"G1746\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w high|strong=\"G5311\"\\+w*.” *" + }, + { + "verseNum": 50, + "text": "He|strong=\"G2532\"* led|strong=\"G1806\"* them|strong=\"G3588\"* out|strong=\"G1806\"* as|strong=\"G1161\"* far|strong=\"G2193\"* as|strong=\"G1161\"* Bethany, and|strong=\"G2532\"* he|strong=\"G2532\"* lifted|strong=\"G1869\"* up|strong=\"G1869\"* his|strong=\"G1438\"* hands|strong=\"G5495\"* and|strong=\"G2532\"* blessed|strong=\"G2127\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 51, + "text": "While|strong=\"G1722\"* he|strong=\"G2532\"* blessed|strong=\"G2127\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* withdrew from|strong=\"G2532\"* them|strong=\"G3588\"* and|strong=\"G2532\"* was|strong=\"G1096\"* carried|strong=\"G2532\"* up|strong=\"G1519\"* into|strong=\"G1519\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 52, + "text": "They|strong=\"G2532\"* worshiped|strong=\"G4352\"* him|strong=\"G2532\"* and|strong=\"G2532\"* returned|strong=\"G5290\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"* with|strong=\"G3326\"* great|strong=\"G3173\"* joy|strong=\"G5479\"*," + }, + { + "verseNum": 53, + "text": "and|strong=\"G2532\"* were|strong=\"G1510\"* continually|strong=\"G1223\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, praising|strong=\"G2127\"* and|strong=\"G2532\"* blessing|strong=\"G2127\"* God|strong=\"G2316\"*. Amen." + } + ] + } + ] + }, + { + "name": "John", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* beginning was|strong=\"G1510\"* the|strong=\"G1722\"* Word|strong=\"G3056\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* Word|strong=\"G3056\"* was|strong=\"G1510\"* with|strong=\"G1722\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* Word|strong=\"G3056\"* was|strong=\"G1510\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"G1722\"* same|strong=\"G3778\"* was|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* beginning with|strong=\"G1722\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 3, + "text": "All|strong=\"G3956\"* things|strong=\"G3956\"* were|strong=\"G1096\"* made|strong=\"G1096\"* through|strong=\"G1223\"* him|strong=\"G3739\"*. Without|strong=\"G5565\"* him|strong=\"G3739\"*, nothing|strong=\"G3956\"* was|strong=\"G1096\"* made|strong=\"G1096\"* that|strong=\"G3739\"* has|strong=\"G3739\"* been|strong=\"G1096\"* made|strong=\"G1096\"*." + }, + { + "verseNum": 4, + "text": "In|strong=\"G1722\"* him|strong=\"G3588\"* was|strong=\"G1510\"* life|strong=\"G2222\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* life|strong=\"G2222\"* was|strong=\"G1510\"* the|strong=\"G1722\"* light|strong=\"G5457\"* of|strong=\"G2532\"* men|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"G1722\"* light|strong=\"G5457\"* shines|strong=\"G5316\"* in|strong=\"G1722\"* the|strong=\"G1722\"* darkness|strong=\"G4653\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* darkness|strong=\"G4653\"* hasn’t|strong=\"G3588\"* overcome+ 1:5 The word translated “overcome” (κατέλαβεν) can also be translated “comprehended.” It refers to getting a grip on an enemy to defeat him. * it|strong=\"G2532\"*." + }, + { + "verseNum": 6, + "text": "There|strong=\"G1096\"* came|strong=\"G1096\"* a|strong=\"G1096\"* man|strong=\"G2316\"* sent|strong=\"G2316\"* from|strong=\"G3844\"* God|strong=\"G2316\"*, whose name|strong=\"G3686\"* was|strong=\"G1096\"* John|strong=\"G2491\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"G1519\"* same|strong=\"G3778\"* came|strong=\"G2064\"* as|strong=\"G1519\"* a|strong=\"G1519\"* witness|strong=\"G3140\"*, that|strong=\"G2443\"* he|strong=\"G3778\"* might|strong=\"G3778\"* testify|strong=\"G3140\"* about|strong=\"G4012\"* the|strong=\"G1519\"* light|strong=\"G5457\"*, that|strong=\"G2443\"* all|strong=\"G3956\"* might|strong=\"G3778\"* believe|strong=\"G4100\"* through|strong=\"G1223\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"G3588\"* was|strong=\"G1510\"* not|strong=\"G3756\"* the|strong=\"G3588\"* light|strong=\"G5457\"*, but|strong=\"G3588\"* was|strong=\"G1510\"* sent that|strong=\"G2443\"* he|strong=\"G3588\"* might testify|strong=\"G3140\"* about|strong=\"G4012\"* the|strong=\"G3588\"* light|strong=\"G5457\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"G1519\"* true|strong=\"G3588\"* light|strong=\"G5457\"* that|strong=\"G3739\"* enlightens|strong=\"G5461\"* everyone|strong=\"G3956\"* was|strong=\"G1510\"* coming|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G1519\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* was|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* world|strong=\"G2889\"* was|strong=\"G1510\"* made|strong=\"G1096\"* through|strong=\"G1223\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* world|strong=\"G2889\"* didn’t|strong=\"G3588\"* recognize|strong=\"G1097\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* his|strong=\"G1519\"* own|strong=\"G2398\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* his|strong=\"G1519\"* own|strong=\"G2398\"* didn’t|strong=\"G3588\"* receive|strong=\"G3880\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* received|strong=\"G2983\"* him|strong=\"G3588\"*, to|strong=\"G1519\"* them|strong=\"G3588\"* he|strong=\"G1161\"* gave|strong=\"G1325\"* the|strong=\"G1519\"* right|strong=\"G1849\"* to|strong=\"G1519\"* become|strong=\"G1096\"* God|strong=\"G2316\"*’s children|strong=\"G5043\"*, to|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3588\"* believe|strong=\"G4100\"* in|strong=\"G1519\"* his|strong=\"G1519\"* name|strong=\"G3686\"*:" + }, + { + "verseNum": 13, + "text": "who|strong=\"G3739\"* were|strong=\"G3739\"* born|strong=\"G1080\"*, not|strong=\"G3756\"* of|strong=\"G1537\"* blood, nor|strong=\"G3761\"* of|strong=\"G1537\"* the|strong=\"G1537\"* will|strong=\"G2307\"* of|strong=\"G1537\"* the|strong=\"G1537\"* flesh|strong=\"G4561\"*, nor|strong=\"G3761\"* of|strong=\"G1537\"* the|strong=\"G1537\"* will|strong=\"G2307\"* of|strong=\"G1537\"* man|strong=\"G3739\"*, but|strong=\"G2316\"* of|strong=\"G1537\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"G1722\"* Word|strong=\"G3056\"* became|strong=\"G1096\"* flesh|strong=\"G4561\"* and|strong=\"G2532\"* lived|strong=\"G2532\"* among|strong=\"G1722\"* us|strong=\"G2249\"*. We|strong=\"G2249\"* saw|strong=\"G2300\"* his|strong=\"G1722\"* glory|strong=\"G1391\"*, such|strong=\"G3588\"* glory|strong=\"G1391\"* as|strong=\"G5613\"* of|strong=\"G3056\"* the|strong=\"G1722\"* only|strong=\"G3439\"* born|strong=\"G1096\"*+ 1:14 The phrase “only born” is from the Greek word “μονογενους”, which is sometimes translated “only begotten” or “one and only”.* Son of|strong=\"G3056\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*, full|strong=\"G4134\"* of|strong=\"G3056\"* grace|strong=\"G5485\"* and|strong=\"G2532\"* truth." + }, + { + "verseNum": 15, + "text": "John|strong=\"G2491\"* testified|strong=\"G3140\"* about|strong=\"G4012\"* him|strong=\"G3588\"*. He|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"*, saying|strong=\"G3004\"*, “This|strong=\"G3778\"* was|strong=\"G1510\"* he|strong=\"G2532\"* of|strong=\"G4012\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* said|strong=\"G3004\"*, ‘He|strong=\"G2532\"* who|strong=\"G3739\"* comes|strong=\"G2064\"* after|strong=\"G3694\"* me|strong=\"G1473\"* has|strong=\"G3739\"* surpassed me|strong=\"G1473\"*, for|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* before|strong=\"G1715\"* me|strong=\"G1473\"*.’”" + }, + { + "verseNum": 16, + "text": "From|strong=\"G1537\"* his|strong=\"G3956\"* fullness|strong=\"G4138\"* we|strong=\"G2249\"* all|strong=\"G3956\"* received|strong=\"G2983\"* grace|strong=\"G5485\"* upon|strong=\"G3588\"* grace|strong=\"G5485\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G3754\"* the|strong=\"G2532\"* law|strong=\"G3551\"* was|strong=\"G1096\"* given|strong=\"G1325\"* through|strong=\"G1223\"* Moses|strong=\"G3475\"*. Grace|strong=\"G5485\"* and|strong=\"G2532\"* truth were|strong=\"G3588\"* realized|strong=\"G1096\"* through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*.+ 1:17 “Christ” means “Anointed One”.*" + }, + { + "verseNum": 18, + "text": "No|strong=\"G3762\"* one|strong=\"G3762\"* has|strong=\"G2316\"* seen|strong=\"G3708\"* God|strong=\"G2316\"* at|strong=\"G1519\"* any|strong=\"G3762\"* time|strong=\"G4455\"*. The|strong=\"G1519\"* only|strong=\"G3439\"* born+ 1:18 The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”.* Son|strong=\"G5207\"*,+ 1:18 NU reads “God”* who|strong=\"G3588\"* is|strong=\"G1510\"* in|strong=\"G1519\"* the|strong=\"G1519\"* bosom|strong=\"G2859\"* of|strong=\"G5207\"* the|strong=\"G1519\"* Father|strong=\"G3962\"*, has|strong=\"G2316\"* declared|strong=\"G1834\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 19, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* John|strong=\"G2491\"*’s testimony|strong=\"G3141\"*, when|strong=\"G3753\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* sent|strong=\"G2532\"* priests|strong=\"G2409\"* and|strong=\"G2532\"* Levites|strong=\"G3019\"* from|strong=\"G1537\"* Jerusalem|strong=\"G2414\"* to|strong=\"G2443\"* ask|strong=\"G2065\"* him|strong=\"G3588\"*, “Who|strong=\"G5101\"* are|strong=\"G1510\"* you|strong=\"G4771\"*?”" + }, + { + "verseNum": 20, + "text": "He|strong=\"G2532\"* declared|strong=\"G3754\"*, and|strong=\"G2532\"* didn’t|strong=\"G3588\"* deny|strong=\"G3588\"*, but|strong=\"G2532\"* he|strong=\"G2532\"* declared|strong=\"G3754\"*, “I|strong=\"G1473\"* am|strong=\"G1510\"* not|strong=\"G3756\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*.”" + }, + { + "verseNum": 21, + "text": "They|strong=\"G2532\"* asked|strong=\"G2065\"* him|strong=\"G3588\"*, “What|strong=\"G5101\"* then|strong=\"G3767\"*? Are|strong=\"G1510\"* you|strong=\"G4771\"* Elijah|strong=\"G2243\"*?”" + }, + { + "verseNum": 22, + "text": "They|strong=\"G3588\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, “Who|strong=\"G5101\"* are|strong=\"G1510\"* you|strong=\"G1325\"*? Give|strong=\"G1325\"* us|strong=\"G1325\"* an|strong=\"G1325\"* answer to|strong=\"G2443\"* take|strong=\"G2443\"* back|strong=\"G1325\"* to|strong=\"G2443\"* those|strong=\"G3588\"* who|strong=\"G5101\"* sent|strong=\"G3992\"* us|strong=\"G1325\"*. What|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G1325\"* say|strong=\"G3004\"* about|strong=\"G4012\"* yourself|strong=\"G4572\"*?”" + }, + { + "verseNum": 23, + "text": "He|strong=\"G3588\"* said|strong=\"G3004\"*, “I|strong=\"G1473\"* am|strong=\"G1473\"* the|strong=\"G1722\"* voice|strong=\"G5456\"* of|strong=\"G2962\"* one|strong=\"G3588\"* crying in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"*, ‘Make|strong=\"G2116\"* straight|strong=\"G2116\"* the|strong=\"G1722\"* way|strong=\"G3598\"* of|strong=\"G2962\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*,’+ 1:23 Isaiah 40:3* as|strong=\"G2531\"* Isaiah|strong=\"G2268\"* the|strong=\"G1722\"* prophet|strong=\"G4396\"* said|strong=\"G3004\"*.”" + }, + { + "verseNum": 24, + "text": "The|strong=\"G2532\"* ones who|strong=\"G3588\"* had|strong=\"G2532\"* been|strong=\"G1510\"* sent|strong=\"G2532\"* were|strong=\"G1510\"* from|strong=\"G1537\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"G2532\"* asked|strong=\"G2065\"* him|strong=\"G3588\"*, “Why|strong=\"G5101\"* then|strong=\"G3767\"* do|strong=\"G5101\"* you|strong=\"G4771\"* baptize if|strong=\"G1487\"* you|strong=\"G4771\"* are|strong=\"G1510\"* not|strong=\"G3756\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*, nor|strong=\"G3761\"* Elijah|strong=\"G2243\"*, nor|strong=\"G3761\"* the|strong=\"G2532\"* prophet|strong=\"G4396\"*?”" + }, + { + "verseNum": 26, + "text": "John|strong=\"G2491\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “I|strong=\"G1473\"* baptize in|strong=\"G1722\"* water|strong=\"G5204\"*, but|strong=\"G3588\"* among|strong=\"G1722\"* you|strong=\"G5210\"* stands|strong=\"G2476\"* one|strong=\"G3739\"* whom|strong=\"G3739\"* you|strong=\"G5210\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"*." + }, + { + "verseNum": 27, + "text": "He|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G3588\"* one|strong=\"G3739\"* who|strong=\"G3739\"* comes|strong=\"G2064\"* after|strong=\"G3694\"* me|strong=\"G1473\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* preferred before|strong=\"G3588\"* me|strong=\"G1473\"*, whose|strong=\"G3739\"* sandal|strong=\"G5266\"* strap I|strong=\"G1473\"*’m not|strong=\"G3756\"* worthy to|strong=\"G2443\"* loosen.”" + }, + { + "verseNum": 28, + "text": "These|strong=\"G3778\"* things|strong=\"G3778\"* were|strong=\"G1510\"* done|strong=\"G1096\"* in|strong=\"G1722\"* Bethany beyond|strong=\"G4008\"* the|strong=\"G1722\"* Jordan|strong=\"G2446\"*, where|strong=\"G3699\"* John|strong=\"G2491\"* was|strong=\"G1510\"* baptizing." + }, + { + "verseNum": 29, + "text": "The|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* Jesus|strong=\"G2424\"* coming|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Behold|strong=\"G2396\"*,+ 1:29 “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* the|strong=\"G2532\"* Lamb|strong=\"G3004\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* takes away the|strong=\"G2532\"* sin of|strong=\"G2316\"* the|strong=\"G2532\"* world|strong=\"G2889\"*!" + }, + { + "verseNum": 30, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* he|strong=\"G3739\"* of|strong=\"G5228\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* said|strong=\"G3004\"*, ‘After|strong=\"G3694\"* me|strong=\"G1473\"* comes|strong=\"G2064\"* a|strong=\"G1096\"* man|strong=\"G3778\"* who|strong=\"G3739\"* is|strong=\"G1510\"* preferred|strong=\"G1096\"* before|strong=\"G1715\"* me|strong=\"G1473\"*, for|strong=\"G3754\"* he|strong=\"G3739\"* was|strong=\"G1510\"* before|strong=\"G1715\"* me|strong=\"G1473\"*.’" + }, + { + "verseNum": 31, + "text": "I|strong=\"G1473\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"* him|strong=\"G3588\"*, but|strong=\"G3588\"* for|strong=\"G1223\"* this|strong=\"G3778\"* reason|strong=\"G1223\"* I|strong=\"G1473\"* came|strong=\"G2064\"* baptizing in|strong=\"G1722\"* water|strong=\"G5204\"*, that|strong=\"G2443\"* he|strong=\"G3778\"* would|strong=\"G2064\"* be|strong=\"G3756\"* revealed|strong=\"G5319\"* to|strong=\"G2443\"* Israel|strong=\"G2474\"*.”" + }, + { + "verseNum": 32, + "text": "John|strong=\"G2491\"* testified|strong=\"G3140\"*, saying|strong=\"G3004\"*, “I|strong=\"G2532\"* have|strong=\"G2532\"* seen|strong=\"G2300\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* descending|strong=\"G2597\"* like|strong=\"G5613\"* a|strong=\"G5613\"* dove|strong=\"G4058\"* out|strong=\"G1537\"* of|strong=\"G1537\"* heaven|strong=\"G3772\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* remained|strong=\"G3306\"* on|strong=\"G1909\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "I|strong=\"G1473\"* didn’t|strong=\"G3588\"* recognize|strong=\"G1492\"* him|strong=\"G3588\"*, but|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3739\"* sent|strong=\"G3992\"* me|strong=\"G1473\"* to|strong=\"G2532\"* baptize in|strong=\"G1722\"* water|strong=\"G5204\"* said|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, ‘On|strong=\"G1909\"* whomever|strong=\"G3739\"* you|strong=\"G3739\"* will|strong=\"G1510\"* see|strong=\"G3708\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* descending|strong=\"G2597\"* and|strong=\"G2532\"* remaining|strong=\"G3306\"* on|strong=\"G1909\"* him|strong=\"G3588\"* is|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3739\"* baptizes in|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*.’" + }, + { + "verseNum": 34, + "text": "I|strong=\"G2532\"* have|strong=\"G2532\"* seen|strong=\"G3708\"* and|strong=\"G2532\"* have|strong=\"G2532\"* testified|strong=\"G3140\"* that|strong=\"G3754\"* this|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 35, + "text": "Again|strong=\"G3825\"*, the|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"*, John|strong=\"G2491\"* was|strong=\"G3588\"* standing|strong=\"G2476\"* with|strong=\"G1537\"* two|strong=\"G1417\"* of|strong=\"G1537\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"*," + }, + { + "verseNum": 36, + "text": "and|strong=\"G2532\"* he|strong=\"G2532\"* looked|strong=\"G3708\"* at|strong=\"G1689\"* Jesus|strong=\"G2424\"* as|strong=\"G2532\"* he|strong=\"G2532\"* walked|strong=\"G4043\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Behold|strong=\"G2396\"*, the|strong=\"G2532\"* Lamb|strong=\"G3004\"* of|strong=\"G2316\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 37, + "text": "The|strong=\"G2532\"* two|strong=\"G1417\"* disciples|strong=\"G3101\"* heard him|strong=\"G3588\"* speak|strong=\"G2980\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* followed Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 38, + "text": "Jesus|strong=\"G2424\"* turned|strong=\"G4762\"* and|strong=\"G2532\"* saw|strong=\"G2300\"* them|strong=\"G3588\"* following, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w looking|strong=\"G2212\"\\+w* \\+w for|strong=\"G1161\"\\+w*?”*" + }, + { + "verseNum": 39, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Come|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w*.”*" + }, + { + "verseNum": 40, + "text": "One|strong=\"G1520\"* of|strong=\"G2250\"* the|strong=\"G2532\"* two|strong=\"G1417\"* who|strong=\"G3588\"* heard John|strong=\"G2491\"* and|strong=\"G2532\"* followed him|strong=\"G3588\"* was|strong=\"G1510\"* Andrew, Simon|strong=\"G4613\"* Peter|strong=\"G4074\"*’s brother." + }, + { + "verseNum": 41, + "text": "He|strong=\"G2532\"* first|strong=\"G4413\"* found|strong=\"G2147\"* his|strong=\"G2398\"* own|strong=\"G2398\"* brother, Simon|strong=\"G4613\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “We|strong=\"G2532\"* have|strong=\"G2532\"* found|strong=\"G2147\"* the|strong=\"G2532\"* Messiah|strong=\"G5547\"*!” (which|strong=\"G3588\"* is|strong=\"G1510\"*, being|strong=\"G1510\"* interpreted|strong=\"G3177\"*, Christ|strong=\"G5547\"*+ 1:41 “Messiah” (Hebrew) and “Christ” (Greek) both mean “Anointed One”.*)." + }, + { + "verseNum": 42, + "text": "He|strong=\"G2532\"* brought|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G4314\"* Jesus|strong=\"G2424\"*. Jesus|strong=\"G2424\"* looked|strong=\"G1689\"* at|strong=\"G4314\"* him|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w You|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w Simon|strong=\"G4613\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* Jonah. \\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w Cephas|strong=\"G2786\"\\+w*”* (which|strong=\"G3588\"* is|strong=\"G1510\"* by|strong=\"G4314\"* interpretation|strong=\"G2059\"*, Peter|strong=\"G4074\"*).+ 1:42 “Cephas” (Aramaic) and “Peter” (Greek) both mean “Rock”.*" + }, + { + "verseNum": 43, + "text": "On|strong=\"G1519\"* the|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"*, he|strong=\"G2532\"* was|strong=\"G1510\"* determined to|strong=\"G1519\"* go|strong=\"G1831\"* out|strong=\"G1831\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* found|strong=\"G2147\"* Philip|strong=\"G5376\"*. Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “Follow \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 44, + "text": "Now|strong=\"G1161\"* Philip|strong=\"G5376\"* was|strong=\"G1510\"* from|strong=\"G2532\"* Bethsaida, the|strong=\"G2532\"* city|strong=\"G4172\"* of|strong=\"G2532\"* Andrew and|strong=\"G2532\"* Peter|strong=\"G4074\"*." + }, + { + "verseNum": 45, + "text": "Philip|strong=\"G5376\"* found|strong=\"G2147\"* Nathanael|strong=\"G3482\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “We|strong=\"G2532\"* have|strong=\"G2532\"* found|strong=\"G2147\"* him|strong=\"G3588\"* of|strong=\"G1537\"* whom|strong=\"G3588\"* Moses|strong=\"G3475\"* in|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* and|strong=\"G2532\"* also|strong=\"G2532\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"*, wrote|strong=\"G1125\"*: Jesus|strong=\"G2424\"* of|strong=\"G1537\"* Nazareth|strong=\"G3478\"*, the|strong=\"G1722\"* son|strong=\"G5207\"* of|strong=\"G1537\"* Joseph|strong=\"G2501\"*.”" + }, + { + "verseNum": 46, + "text": "Nathanael|strong=\"G3482\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Can|strong=\"G1410\"* any|strong=\"G1410\"* good|strong=\"G3588\"* thing|strong=\"G3739\"* come|strong=\"G2064\"* out|strong=\"G2532\"* of|strong=\"G5207\"* Nazareth|strong=\"G3478\"*?”" + }, + { + "verseNum": 47, + "text": "Jesus|strong=\"G2424\"* saw|strong=\"G3708\"* Nathanael|strong=\"G3482\"* coming|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G3708\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* about|strong=\"G4012\"* him|strong=\"G3708\"*, “\\+w Behold|strong=\"G2396\"\\+w*, \\+w an|strong=\"G2532\"\\+w* \\+w Israelite|strong=\"G2475\"\\+w* \\+w indeed|strong=\"G2532\"\\+w*, \\+w in|strong=\"G1722\"\\+w* \\+w whom|strong=\"G5101\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w no|strong=\"G2532\"\\+w* \\+w deceit|strong=\"G1388\"\\+w*!”*" + }, + { + "verseNum": 48, + "text": "Nathanael|strong=\"G3482\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “How|strong=\"G4159\"* do|strong=\"G2532\"* you|strong=\"G4771\"* know|strong=\"G1097\"* me|strong=\"G1473\"*?”" + }, + { + "verseNum": 49, + "text": "Nathanael|strong=\"G3482\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Rabbi|strong=\"G4461\"*, you|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*! You|strong=\"G4771\"* are|strong=\"G1510\"* King|strong=\"G3588\"* of|strong=\"G5207\"* Israel|strong=\"G2474\"*!”" + }, + { + "verseNum": 50, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Because|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, ‘\\+w I|strong=\"G2532\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w underneath|strong=\"G5270\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fig|strong=\"G4808\"\\+w* \\+w tree|strong=\"G4808\"\\+w*,’ \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w believe|strong=\"G4100\"\\+w*? \\+w You|strong=\"G4771\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w these|strong=\"G3588\"\\+w*!”*" + }, + { + "verseNum": 51, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Most|strong=\"G2316\"\\+w* \\+w certainly|strong=\"G1909\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w all|strong=\"G2532\"\\+w*, hereafter \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* opened, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* angels \\+w of|strong=\"G5207\"\\+w* \\+w God|strong=\"G2316\"\\+w* ascending \\+w and|strong=\"G2532\"\\+w* \\+w descending|strong=\"G2597\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"G1722\"* third|strong=\"G5154\"* day|strong=\"G2250\"*, there|strong=\"G1563\"* was|strong=\"G1510\"* a|strong=\"G1096\"* wedding|strong=\"G1062\"* in|strong=\"G1722\"* Cana|strong=\"G2580\"* of|strong=\"G2250\"* Galilee|strong=\"G1056\"*. Jesus|strong=\"G2424\"*’ mother|strong=\"G3384\"* was|strong=\"G1510\"* there|strong=\"G1563\"*." + }, + { + "verseNum": 2, + "text": "Jesus|strong=\"G2424\"* also|strong=\"G2532\"* was|strong=\"G3588\"* invited|strong=\"G2564\"*, with|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, to|strong=\"G1519\"* the|strong=\"G2532\"* wedding|strong=\"G1062\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* wine|strong=\"G3631\"* ran|strong=\"G5302\"* out|strong=\"G2532\"*, Jesus|strong=\"G2424\"*’ mother|strong=\"G3384\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “They|strong=\"G2532\"* have|strong=\"G2192\"* no|strong=\"G3756\"* wine|strong=\"G3631\"*.”" + }, + { + "verseNum": 4, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* her|strong=\"G3588\"*, “\\+w Woman|strong=\"G1135\"\\+w*, \\+w what|strong=\"G5101\"\\+w* \\+w does|strong=\"G5101\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*? \\+w My|strong=\"G1473\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w has|strong=\"G5101\"\\+w* \\+w not|strong=\"G3768\"\\+w* \\+w yet|strong=\"G2532\"\\+w* \\+w come|strong=\"G2240\"\\+w*.”*" + }, + { + "verseNum": 5, + "text": "His|strong=\"G4160\"* mother|strong=\"G3384\"* said|strong=\"G3004\"* to|strong=\"G3004\"* the|strong=\"G3588\"* servants|strong=\"G1249\"*, “Whatever|strong=\"G3739\"* he|strong=\"G3739\"* says|strong=\"G3004\"* to|strong=\"G3004\"* you|strong=\"G5210\"*, do|strong=\"G4160\"* it|strong=\"G4160\"*.”" + }, + { + "verseNum": 6, + "text": "Now|strong=\"G1161\"* there|strong=\"G1563\"* were|strong=\"G1510\"* six|strong=\"G1803\"* water pots of|strong=\"G2596\"* stone|strong=\"G3035\"* set|strong=\"G2749\"* there|strong=\"G1563\"* after|strong=\"G2596\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"*’ way|strong=\"G2596\"* of|strong=\"G2596\"* purifying|strong=\"G2512\"*, containing|strong=\"G5562\"* two|strong=\"G1417\"* or|strong=\"G2228\"* three|strong=\"G5140\"* metretes+ 2:6 2 to 3 metretes is about 20 to 30 U. S. Gallons, or 75 to 115 liters.* apiece." + }, + { + "verseNum": 7, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Fill|strong=\"G1072\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w water|strong=\"G5204\"\\+w* pots \\+w with|strong=\"G2532\"\\+w* \\+w water|strong=\"G5204\"\\+w*.”* So|strong=\"G2532\"* they|strong=\"G2532\"* filled|strong=\"G1072\"* them|strong=\"G3588\"* up|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* brim." + }, + { + "verseNum": 8, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Now|strong=\"G1161\"\\+w* draw \\+w some|strong=\"G3588\"\\+w* \\+w out|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w take|strong=\"G5342\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* ruler \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* feast.”* So|strong=\"G2532\"* they|strong=\"G2532\"* took|strong=\"G2532\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* ruler of|strong=\"G2532\"* the|strong=\"G2532\"* feast tasted|strong=\"G1089\"* the|strong=\"G2532\"* water|strong=\"G5204\"* now|strong=\"G1161\"* become|strong=\"G1096\"* wine|strong=\"G3631\"*, and|strong=\"G2532\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"* where|strong=\"G4159\"* it|strong=\"G2532\"* came|strong=\"G1096\"* from|strong=\"G2532\"* (but|strong=\"G1161\"* the|strong=\"G2532\"* servants|strong=\"G1249\"* who|strong=\"G3588\"* had|strong=\"G2532\"* drawn the|strong=\"G2532\"* water|strong=\"G5204\"* knew|strong=\"G1492\"*), the|strong=\"G2532\"* ruler of|strong=\"G2532\"* the|strong=\"G2532\"* feast called|strong=\"G5455\"* the|strong=\"G2532\"* bridegroom|strong=\"G3566\"*" + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Everyone|strong=\"G3956\"* serves|strong=\"G5087\"* the|strong=\"G2532\"* good|strong=\"G2570\"* wine|strong=\"G3631\"* first|strong=\"G4413\"*, and|strong=\"G2532\"* when|strong=\"G3752\"* the|strong=\"G2532\"* guests have|strong=\"G2532\"* drunk|strong=\"G3184\"* freely|strong=\"G3184\"*, then|strong=\"G2532\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* worse|strong=\"G1640\"*. You|strong=\"G4771\"* have|strong=\"G2532\"* kept|strong=\"G5083\"* the|strong=\"G2532\"* good|strong=\"G2570\"* wine|strong=\"G3631\"* until|strong=\"G2193\"* now|strong=\"G2532\"*!”" + }, + { + "verseNum": 11, + "text": "This|strong=\"G3778\"* beginning of|strong=\"G2532\"* his|strong=\"G1519\"* signs|strong=\"G4592\"* Jesus|strong=\"G2424\"* did|strong=\"G4160\"* in|strong=\"G1722\"* Cana|strong=\"G2580\"* of|strong=\"G2532\"* Galilee|strong=\"G1056\"*, and|strong=\"G2532\"* revealed|strong=\"G5319\"* his|strong=\"G1519\"* glory|strong=\"G1391\"*; and|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* believed|strong=\"G4100\"* in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "After|strong=\"G3326\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* went|strong=\"G2597\"* down|strong=\"G2597\"* to|strong=\"G1519\"* Capernaum|strong=\"G2584\"*, he|strong=\"G2532\"*, and|strong=\"G2532\"* his|strong=\"G1519\"* mother|strong=\"G3384\"*, his|strong=\"G1519\"* brothers, and|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* stayed|strong=\"G3306\"* there|strong=\"G1563\"* a|strong=\"G2532\"* few|strong=\"G3756\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"G2532\"* Passover|strong=\"G3957\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* was|strong=\"G1510\"* at|strong=\"G1519\"* hand|strong=\"G1451\"*, and|strong=\"G2532\"* Jesus|strong=\"G2424\"* went|strong=\"G2424\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"G2532\"* found|strong=\"G2147\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sold|strong=\"G4453\"* oxen|strong=\"G1016\"*, sheep|strong=\"G4263\"*, and|strong=\"G2532\"* doves|strong=\"G4058\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* changers|strong=\"G2773\"* of|strong=\"G2532\"* money|strong=\"G2773\"* sitting|strong=\"G2521\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* made|strong=\"G4160\"* a|strong=\"G2532\"* whip of|strong=\"G1537\"* cords|strong=\"G4979\"* and|strong=\"G2532\"* drove|strong=\"G1544\"* all|strong=\"G3956\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* temple|strong=\"G2413\"*, both|strong=\"G2532\"* the|strong=\"G2532\"* sheep|strong=\"G4263\"* and|strong=\"G2532\"* the|strong=\"G2532\"* oxen|strong=\"G1016\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* poured|strong=\"G1632\"* out|strong=\"G1537\"* the|strong=\"G2532\"* changers|strong=\"G2855\"*’ money|strong=\"G2855\"* and|strong=\"G2532\"* overthrew their|strong=\"G2532\"* tables|strong=\"G5132\"*." + }, + { + "verseNum": 16, + "text": "To|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sold|strong=\"G4453\"* the|strong=\"G2532\"* doves|strong=\"G4058\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Take|strong=\"G2532\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w here|strong=\"G1782\"\\+w*! Don’\\+w t|strong=\"G3588\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s \\+w house|strong=\"G3624\"\\+w* \\+w a|strong=\"G2532\"\\+w* marketplace!”*" + }, + { + "verseNum": 17, + "text": "His|strong=\"G3754\"* disciples|strong=\"G3101\"* remembered|strong=\"G3403\"* that|strong=\"G3754\"* it|strong=\"G3754\"* was|strong=\"G1510\"* written|strong=\"G1125\"*, “Zeal|strong=\"G2205\"* for|strong=\"G3754\"* your|strong=\"G3588\"* house|strong=\"G3624\"* will|strong=\"G1510\"* eat|strong=\"G2719\"* me|strong=\"G1473\"* up|strong=\"G2719\"*.”+ 2:17 Psalms 69:9*" + }, + { + "verseNum": 18, + "text": "The|strong=\"G2532\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “What|strong=\"G5101\"* sign|strong=\"G4592\"* do|strong=\"G4160\"* you|strong=\"G3754\"* show|strong=\"G1166\"* us|strong=\"G3004\"*, seeing|strong=\"G3754\"* that|strong=\"G3754\"* you|strong=\"G3754\"* do|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3778\"*?”" + }, + { + "verseNum": 19, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Destroy|strong=\"G3089\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w temple|strong=\"G3485\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w raise|strong=\"G1453\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w up|strong=\"G1453\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "The|strong=\"G1722\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"*, “It|strong=\"G2532\"* took|strong=\"G2532\"* forty-six years|strong=\"G2094\"* to|strong=\"G2532\"* build|strong=\"G3618\"* this|strong=\"G3778\"* temple|strong=\"G3485\"*! Will|strong=\"G2532\"* you|strong=\"G4771\"* raise|strong=\"G1453\"* it|strong=\"G2532\"* up|strong=\"G1453\"* in|strong=\"G1722\"* three|strong=\"G5140\"* days|strong=\"G2250\"*?”" + }, + { + "verseNum": 21, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* spoke|strong=\"G3004\"* of|strong=\"G4012\"* the|strong=\"G1161\"* temple|strong=\"G3485\"* of|strong=\"G4012\"* his|strong=\"G4012\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 22, + "text": "When|strong=\"G3753\"* therefore|strong=\"G3767\"* he|strong=\"G2532\"* was|strong=\"G3588\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, his|strong=\"G2532\"* disciples|strong=\"G3101\"* remembered|strong=\"G3403\"* that|strong=\"G3754\"* he|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* believed|strong=\"G4100\"* the|strong=\"G2532\"* Scripture|strong=\"G1124\"* and|strong=\"G2532\"* the|strong=\"G2532\"* word|strong=\"G3056\"* which|strong=\"G3739\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* said|strong=\"G3004\"*." + }, + { + "verseNum": 23, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* he|strong=\"G1161\"* was|strong=\"G1510\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2414\"* at|strong=\"G1722\"* the|strong=\"G1722\"* Passover|strong=\"G3957\"*, during|strong=\"G1722\"* the|strong=\"G1722\"* feast|strong=\"G1859\"*, many|strong=\"G4183\"* believed|strong=\"G4100\"* in|strong=\"G1722\"* his|strong=\"G1519\"* name|strong=\"G3686\"*, observing|strong=\"G2334\"* his|strong=\"G1519\"* signs|strong=\"G4592\"* which|strong=\"G3739\"* he|strong=\"G1161\"* did|strong=\"G4160\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* didn’t|strong=\"G3588\"* entrust|strong=\"G4100\"* himself|strong=\"G1438\"* to|strong=\"G3756\"* them|strong=\"G3588\"*, because|strong=\"G1223\"* he|strong=\"G1161\"* knew|strong=\"G1097\"* everyone|strong=\"G3956\"*," + }, + { + "verseNum": 25, + "text": "and|strong=\"G2532\"* because|strong=\"G3754\"* he|strong=\"G2532\"* didn’t|strong=\"G3588\"* need|strong=\"G5532\"* for|strong=\"G1063\"* anyone|strong=\"G5100\"* to|strong=\"G2443\"* testify|strong=\"G3140\"* concerning|strong=\"G4012\"* man|strong=\"G5100\"*; for|strong=\"G1063\"* he|strong=\"G2532\"* himself knew|strong=\"G1097\"* what|strong=\"G5101\"* was|strong=\"G1510\"* in|strong=\"G1722\"* man|strong=\"G5100\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* there|strong=\"G1161\"* was|strong=\"G1510\"* a|strong=\"G1510\"* man of|strong=\"G1537\"* the|strong=\"G1537\"* Pharisees|strong=\"G5330\"* named|strong=\"G3686\"* Nicodemus|strong=\"G3530\"*, a|strong=\"G1510\"* ruler of|strong=\"G1537\"* the|strong=\"G1537\"* Jews|strong=\"G2453\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* Jesus|strong=\"G3004\"* by|strong=\"G4314\"* night|strong=\"G3571\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Rabbi|strong=\"G4461\"*, we|strong=\"G3739\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G4771\"* are|strong=\"G1510\"* a|strong=\"G2532\"* teacher|strong=\"G1320\"* come|strong=\"G2064\"* from|strong=\"G2064\"* God|strong=\"G2316\"*, for|strong=\"G1063\"* no|strong=\"G3762\"* one|strong=\"G3762\"* can|strong=\"G1410\"* do|strong=\"G4160\"* these|strong=\"G3778\"* signs|strong=\"G4592\"* that|strong=\"G3754\"* you|strong=\"G4771\"* do|strong=\"G4160\"*, unless|strong=\"G1437\"* God|strong=\"G2316\"* is|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 3, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Most|strong=\"G2316\"\\+w* \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w unless|strong=\"G1437\"\\+w* \\+w one|strong=\"G5100\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w born|strong=\"G1080\"\\+w* anew, *+ 3:3 The word translated “anew” here and in John 3:7 (ἄνωθεν) also means “again” and “from above”.* \\+w he|strong=\"G2532\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom.”*" + }, + { + "verseNum": 4, + "text": "Nicodemus|strong=\"G3530\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “How|strong=\"G4459\"* can|strong=\"G1410\"* a|strong=\"G2532\"* man|strong=\"G3361\"* be|strong=\"G1510\"* born|strong=\"G1080\"* when|strong=\"G2532\"* he|strong=\"G2532\"* is|strong=\"G1510\"* old|strong=\"G1088\"*? Can|strong=\"G1410\"* he|strong=\"G2532\"* enter|strong=\"G1525\"* a|strong=\"G2532\"* second|strong=\"G1208\"* time|strong=\"G1208\"* into|strong=\"G1519\"* his|strong=\"G1519\"* mother|strong=\"G3384\"*’s womb|strong=\"G2836\"* and|strong=\"G2532\"* be|strong=\"G1510\"* born|strong=\"G1080\"*?”" + }, + { + "verseNum": 5, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “\\+w Most|strong=\"G2316\"\\+w* \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w unless|strong=\"G1437\"\\+w* \\+w one|strong=\"G5100\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w born|strong=\"G1080\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w water|strong=\"G5204\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom.*" + }, + { + "verseNum": 6, + "text": "\\+w That|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w born|strong=\"G1080\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w flesh|strong=\"G4561\"\\+w*. \\+w That|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w born|strong=\"G1080\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w spirit|strong=\"G4151\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "Don’t \\+w marvel|strong=\"G2296\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, ‘\\+w You|strong=\"G5210\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w be|strong=\"G1163\"\\+w* \\+w born|strong=\"G1080\"\\+w* anew.’ *" + }, + { + "verseNum": 8, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w wind|strong=\"G4154\"\\+w**+ 3:8 The same Greek word (πνεῦμα) means wind, breath, and spirit.* \\+w blows|strong=\"G4154\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w wants|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1510\"\\+w* \\+w hear|strong=\"G5456\"\\+w* \\+w its|strong=\"G3956\"\\+w* \\+w sound|strong=\"G5456\"\\+w*, \\+w but|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w going|strong=\"G5217\"\\+w*. \\+w So|strong=\"G3779\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w born|strong=\"G1080\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "Nicodemus|strong=\"G3530\"* answered|strong=\"G3004\"* him|strong=\"G2532\"*, “How|strong=\"G4459\"* can|strong=\"G1410\"* these|strong=\"G3778\"* things|strong=\"G3778\"* be|strong=\"G1096\"*?”" + }, + { + "verseNum": 10, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Are|strong=\"G1510\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w teacher|strong=\"G1320\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Israel|strong=\"G2474\"\\+w*, \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w understand|strong=\"G1097\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*? *" + }, + { + "verseNum": 11, + "text": "Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w we|strong=\"G2249\"\\+w* \\+w speak|strong=\"G2980\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w we|strong=\"G2249\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w testify|strong=\"G3140\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w we|strong=\"G2249\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w seen|strong=\"G3708\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w our|strong=\"G2532\"\\+w* \\+w witness|strong=\"G3140\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w earthly|strong=\"G1919\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w*, \\+w how|strong=\"G4459\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w heavenly|strong=\"G2032\"\\+w* \\+w things|strong=\"G3588\"\\+w*? *" + }, + { + "verseNum": 13, + "text": "\\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w has|strong=\"G3762\"\\+w* \\+w ascended|strong=\"G3588\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w but|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w descended|strong=\"G2597\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Man|strong=\"G3762\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w As|strong=\"G2531\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w lifted|strong=\"G5312\"\\+w* \\+w up|strong=\"G1210\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w serpent|strong=\"G3789\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w wilderness|strong=\"G2048\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w lifted|strong=\"G5312\"\\+w* \\+w up|strong=\"G1210\"\\+w*, *" + }, + { + "verseNum": 15, + "text": "\\+w that|strong=\"G2443\"\\+w* \\+w whoever|strong=\"G3956\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w not|strong=\"G2192\"\\+w* perish, \\+w but|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w so|strong=\"G3779\"\\+w* loved \\+w the|strong=\"G1519\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w only|strong=\"G3439\"\\+w* born*+ 3:16 The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”.* \\+w Son|strong=\"G5207\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w whoever|strong=\"G3956\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w should|strong=\"G2316\"\\+w* \\+w not|strong=\"G3361\"\\+w* perish, \\+w but|strong=\"G3361\"\\+w* \\+w have|strong=\"G2192\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w God|strong=\"G2316\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* send \\+w his|strong=\"G1223\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w but|strong=\"G1063\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w should|strong=\"G2316\"\\+w* \\+w be|strong=\"G3756\"\\+w* \\+w saved|strong=\"G4982\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w He|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w judged|strong=\"G2919\"\\+w*. \\+w He|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w been|strong=\"G2235\"\\+w* \\+w judged|strong=\"G2919\"\\+w* \\+w already|strong=\"G2235\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w believed|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w only|strong=\"G3439\"\\+w* born \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w men|strong=\"G3778\"\\+w* loved \\+w the|strong=\"G2532\"\\+w* \\+w darkness|strong=\"G4655\"\\+w* \\+w rather|strong=\"G3123\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w light|strong=\"G5457\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w evil|strong=\"G4190\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w does|strong=\"G2064\"\\+w* \\+w evil|strong=\"G5337\"\\+w* \\+w hates|strong=\"G3404\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w light|strong=\"G5457\"\\+w*, \\+w lest|strong=\"G3361\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w exposed|strong=\"G1651\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w does|strong=\"G4160\"\\+w* \\+w the|strong=\"G1722\"\\+w* truth \\+w comes|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w revealed|strong=\"G5319\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w have|strong=\"G3748\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, Jesus|strong=\"G2424\"* came|strong=\"G2064\"* with|strong=\"G3326\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* into|strong=\"G1519\"* the|strong=\"G2532\"* land|strong=\"G1093\"* of|strong=\"G2532\"* Judea|strong=\"G2453\"*. He|strong=\"G2532\"* stayed|strong=\"G1304\"* there|strong=\"G1563\"* with|strong=\"G3326\"* them|strong=\"G3588\"* and|strong=\"G2532\"* baptized." + }, + { + "verseNum": 23, + "text": "John|strong=\"G2491\"* also|strong=\"G2532\"* was|strong=\"G1510\"* baptizing in|strong=\"G1722\"* Enon near|strong=\"G1451\"* Salim|strong=\"G4530\"*, because|strong=\"G3754\"* there|strong=\"G1563\"* was|strong=\"G1510\"* much|strong=\"G4183\"* water|strong=\"G5204\"* there|strong=\"G1563\"*. They|strong=\"G2532\"* came|strong=\"G3854\"* and|strong=\"G2532\"* were|strong=\"G1510\"* baptized;" + }, + { + "verseNum": 24, + "text": "for|strong=\"G1063\"* John|strong=\"G2491\"* was|strong=\"G1510\"* not|strong=\"G1510\"* yet|strong=\"G3768\"* thrown into|strong=\"G1519\"* prison|strong=\"G5438\"*." + }, + { + "verseNum": 25, + "text": "Therefore|strong=\"G3767\"* a|strong=\"G1096\"* dispute arose|strong=\"G1096\"* on|strong=\"G1537\"* the|strong=\"G1537\"* part of|strong=\"G1537\"* John|strong=\"G2491\"*’s disciples|strong=\"G3101\"* with|strong=\"G3326\"* some|strong=\"G3588\"* Jews|strong=\"G2453\"* about|strong=\"G4012\"* purification|strong=\"G2512\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* John|strong=\"G2491\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Rabbi|strong=\"G4461\"*, he|strong=\"G2532\"* who|strong=\"G3739\"* was|strong=\"G1510\"* with|strong=\"G3326\"* you|strong=\"G4771\"* beyond|strong=\"G4008\"* the|strong=\"G2532\"* Jordan|strong=\"G2446\"*, to|strong=\"G4314\"* whom|strong=\"G3739\"* you|strong=\"G4771\"* have|strong=\"G2532\"* testified|strong=\"G3140\"*, behold|strong=\"G2396\"*, he|strong=\"G2532\"* baptizes, and|strong=\"G2532\"* everyone|strong=\"G3956\"* is|strong=\"G1510\"* coming|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 27, + "text": "John|strong=\"G2491\"* answered|strong=\"G3004\"*, “A|strong=\"G2532\"* man|strong=\"G3762\"* can|strong=\"G1410\"* receive|strong=\"G2983\"* nothing|strong=\"G3762\"* unless|strong=\"G1437\"* it|strong=\"G2532\"* has|strong=\"G3762\"* been|strong=\"G1510\"* given|strong=\"G1325\"* him|strong=\"G3588\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 28, + "text": "You|strong=\"G5210\"* yourselves|strong=\"G4771\"* testify|strong=\"G3140\"* that|strong=\"G3754\"* I|strong=\"G1473\"* said|strong=\"G3004\"*, ‘I|strong=\"G1473\"* am|strong=\"G1510\"* not|strong=\"G3756\"* the|strong=\"G3588\"* Christ|strong=\"G5547\"*,’ but|strong=\"G3588\"*, ‘I|strong=\"G1473\"* have|strong=\"G1473\"* been|strong=\"G1510\"* sent before|strong=\"G1715\"* him|strong=\"G3588\"*.’" + }, + { + "verseNum": 29, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* has|strong=\"G2192\"* the|strong=\"G2532\"* bride|strong=\"G3565\"* is|strong=\"G1510\"* the|strong=\"G2532\"* bridegroom|strong=\"G3566\"*; but|strong=\"G1161\"* the|strong=\"G2532\"* friend|strong=\"G5384\"* of|strong=\"G1223\"* the|strong=\"G2532\"* bridegroom|strong=\"G3566\"*, who|strong=\"G3588\"* stands|strong=\"G2476\"* and|strong=\"G2532\"* hears him|strong=\"G3588\"*, rejoices|strong=\"G5463\"* greatly|strong=\"G5479\"* because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* bridegroom|strong=\"G3566\"*’s|strong=\"G2192\"* voice|strong=\"G5456\"*. Therefore|strong=\"G3767\"* my|strong=\"G1699\"* joy|strong=\"G5479\"* is|strong=\"G1510\"* made|strong=\"G4137\"* full|strong=\"G4137\"*." + }, + { + "verseNum": 30, + "text": "He|strong=\"G1161\"* must|strong=\"G1163\"* increase, but|strong=\"G1161\"* I|strong=\"G1473\"* must|strong=\"G1163\"* decrease|strong=\"G1642\"*." + }, + { + "verseNum": 31, + "text": "“He|strong=\"G2532\"* who|strong=\"G3588\"* comes|strong=\"G2064\"* from|strong=\"G1537\"* above|strong=\"G1883\"* is|strong=\"G1510\"* above|strong=\"G1883\"* all|strong=\"G3956\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G1510\"* from|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* belongs|strong=\"G1510\"* to|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* and|strong=\"G2532\"* speaks|strong=\"G2980\"* of|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* comes|strong=\"G2064\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"* is|strong=\"G1510\"* above|strong=\"G1883\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 32, + "text": "What|strong=\"G3739\"* he|strong=\"G2532\"* has|strong=\"G3739\"* seen|strong=\"G3708\"* and|strong=\"G2532\"* heard, of|strong=\"G2532\"* that|strong=\"G3739\"* he|strong=\"G2532\"* testifies|strong=\"G3140\"*; and|strong=\"G2532\"* no|strong=\"G3762\"* one|strong=\"G3762\"* receives|strong=\"G2983\"* his|strong=\"G2983\"* witness|strong=\"G3140\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"G3754\"* who|strong=\"G3588\"* has|strong=\"G2316\"* received|strong=\"G2983\"* his|strong=\"G2983\"* witness|strong=\"G3141\"* has|strong=\"G2316\"* set|strong=\"G4972\"* his|strong=\"G2983\"* seal|strong=\"G4972\"* to|strong=\"G2316\"* this|strong=\"G3588\"*, that|strong=\"G3754\"* God|strong=\"G2316\"* is|strong=\"G1510\"* true|strong=\"G3588\"*." + }, + { + "verseNum": 34, + "text": "For|strong=\"G1063\"* he|strong=\"G3739\"* whom|strong=\"G3739\"* God|strong=\"G2316\"* has|strong=\"G2316\"* sent|strong=\"G2316\"* speaks|strong=\"G2980\"* the|strong=\"G1537\"* words|strong=\"G4487\"* of|strong=\"G1537\"* God|strong=\"G2316\"*; for|strong=\"G1063\"* God|strong=\"G2316\"* gives|strong=\"G1325\"* the|strong=\"G1537\"* Spirit|strong=\"G4151\"* without|strong=\"G3756\"* measure|strong=\"G3358\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"G1722\"* Father|strong=\"G3962\"* loves the|strong=\"G1722\"* Son|strong=\"G5207\"*, and|strong=\"G2532\"* has|strong=\"G3962\"* given|strong=\"G1325\"* all|strong=\"G3956\"* things|strong=\"G3956\"* into|strong=\"G1722\"* his|strong=\"G3956\"* hand|strong=\"G5495\"*." + }, + { + "verseNum": 36, + "text": "One|strong=\"G3588\"* who|strong=\"G3588\"* believes|strong=\"G4100\"* in|strong=\"G1519\"* the|strong=\"G1519\"* Son|strong=\"G5207\"* has|strong=\"G2192\"* eternal life|strong=\"G2222\"*, but|strong=\"G1161\"* one|strong=\"G3588\"* who|strong=\"G3588\"* disobeys+ 3:36 The same word can be translated “disobeys” or “disbelieves” in this context.* the|strong=\"G1519\"* Son|strong=\"G5207\"* won’t|strong=\"G3588\"* see|strong=\"G3708\"* life|strong=\"G2222\"*, but|strong=\"G1161\"* the|strong=\"G1519\"* wrath|strong=\"G3709\"* of|strong=\"G5207\"* God|strong=\"G2316\"* remains|strong=\"G3306\"* on|strong=\"G1909\"* him|strong=\"G3588\"*.”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G3767\"* when|strong=\"G5613\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"* knew|strong=\"G1097\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* had|strong=\"G2424\"* heard|strong=\"G1097\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* was|strong=\"G3588\"* making|strong=\"G4160\"* and|strong=\"G2532\"* baptizing more|strong=\"G4119\"* disciples|strong=\"G3101\"* than|strong=\"G2228\"* John|strong=\"G2491\"*" + }, + { + "verseNum": 2, + "text": "(although|strong=\"G2544\"* Jesus|strong=\"G2424\"* himself didn’t|strong=\"G3588\"* baptize, but|strong=\"G3588\"* his|strong=\"G3588\"* disciples|strong=\"G3101\"*)," + }, + { + "verseNum": 3, + "text": "he|strong=\"G2532\"* left Judea|strong=\"G2449\"* and|strong=\"G2532\"* departed into|strong=\"G1519\"* Galilee|strong=\"G1056\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"G1161\"* needed|strong=\"G1163\"* to|strong=\"G1163\"* pass|strong=\"G1330\"* through|strong=\"G1223\"* Samaria|strong=\"G4540\"*." + }, + { + "verseNum": 5, + "text": "So|strong=\"G3767\"* he|strong=\"G3739\"* came|strong=\"G2064\"* to|strong=\"G1519\"* a|strong=\"G1519\"* city|strong=\"G4172\"* of|strong=\"G5207\"* Samaria|strong=\"G4540\"* called|strong=\"G3004\"* Sychar|strong=\"G4965\"*, near|strong=\"G4139\"* the|strong=\"G1519\"* parcel|strong=\"G5564\"* of|strong=\"G5207\"* ground|strong=\"G5564\"* that|strong=\"G3739\"* Jacob|strong=\"G2384\"* gave|strong=\"G1325\"* to|strong=\"G1519\"* his|strong=\"G1519\"* son|strong=\"G5207\"* Joseph|strong=\"G2501\"*." + }, + { + "verseNum": 6, + "text": "Jacob|strong=\"G2384\"*’s well|strong=\"G4077\"* was|strong=\"G1510\"* there|strong=\"G1563\"*. Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"*, being|strong=\"G1510\"* tired from|strong=\"G1537\"* his|strong=\"G1909\"* journey|strong=\"G3597\"*, sat|strong=\"G2516\"* down|strong=\"G1537\"* by|strong=\"G1537\"* the|strong=\"G1537\"* well|strong=\"G4077\"*. It|strong=\"G1161\"* was|strong=\"G1510\"* about|strong=\"G5613\"* the|strong=\"G1537\"* sixth|strong=\"G1623\"* hour|strong=\"G5610\"*.+ 4:6 noon*" + }, + { + "verseNum": 7, + "text": "A|strong=\"G1325\"* woman|strong=\"G1135\"* of|strong=\"G1537\"* Samaria|strong=\"G4540\"* came|strong=\"G2064\"* to|strong=\"G3004\"* draw water|strong=\"G5204\"*. Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* her|strong=\"G1325\"*, “\\+w Give|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w a|strong=\"G1325\"\\+w* \\+w drink|strong=\"G4095\"\\+w*.”*" + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* had|strong=\"G3588\"* gone away into|strong=\"G1519\"* the|strong=\"G1519\"* city|strong=\"G4172\"* to|strong=\"G1519\"* buy food|strong=\"G5160\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"G3588\"* Samaritan|strong=\"G4542\"* woman|strong=\"G1135\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “How|strong=\"G4459\"* is|strong=\"G1510\"* it|strong=\"G1063\"* that|strong=\"G3588\"* you|strong=\"G4771\"*, being|strong=\"G1510\"* a|strong=\"G1510\"* Jew|strong=\"G2453\"*, ask|strong=\"G3004\"* for|strong=\"G1063\"* a|strong=\"G1510\"* drink|strong=\"G4095\"* from|strong=\"G3844\"* me|strong=\"G1473\"*, a|strong=\"G1510\"* Samaritan|strong=\"G4542\"* woman|strong=\"G1135\"*?” (For|strong=\"G1063\"* Jews|strong=\"G2453\"* have|strong=\"G1473\"* no|strong=\"G3588\"* dealings|strong=\"G4798\"* with|strong=\"G3844\"* Samaritans.)" + }, + { + "verseNum": 10, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* her|strong=\"G1325\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w knew|strong=\"G1492\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w gift|strong=\"G1431\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*, ‘\\+w Give|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4095\"\\+w*,’ \\+w you|strong=\"G4771\"\\+w* \\+w would|strong=\"G2316\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w asked|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w would|strong=\"G2316\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w living|strong=\"G2198\"\\+w* \\+w water|strong=\"G5204\"\\+w*.”*" + }, + { + "verseNum": 11, + "text": "The|strong=\"G2532\"* woman|strong=\"G1135\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Sir|strong=\"G2962\"*, you|strong=\"G3004\"* have|strong=\"G2192\"* nothing|strong=\"G3777\"* to|strong=\"G2532\"* draw with|strong=\"G2532\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* well|strong=\"G2532\"* is|strong=\"G1510\"* deep. So|strong=\"G3767\"* where|strong=\"G4159\"* do|strong=\"G2532\"* you|strong=\"G3004\"* get|strong=\"G2192\"* that|strong=\"G3588\"* living|strong=\"G2198\"* water|strong=\"G5204\"*?" + }, + { + "verseNum": 12, + "text": "Are|strong=\"G1510\"* you|strong=\"G4771\"* greater|strong=\"G3173\"* than|strong=\"G3173\"* our|strong=\"G2532\"* father|strong=\"G3962\"* Jacob|strong=\"G2384\"*, who|strong=\"G3739\"* gave|strong=\"G1325\"* us|strong=\"G1325\"* the|strong=\"G2532\"* well|strong=\"G2532\"* and|strong=\"G2532\"* drank|strong=\"G4095\"* from|strong=\"G1537\"* it|strong=\"G2532\"* himself, as|strong=\"G2532\"* did|strong=\"G2532\"* his|strong=\"G2532\"* children|strong=\"G5207\"* and|strong=\"G2532\"* his|strong=\"G2532\"* livestock|strong=\"G2353\"*?”" + }, + { + "verseNum": 13, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* her|strong=\"G3956\"*, “\\+w Everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w drinks|strong=\"G4095\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w water|strong=\"G5204\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w thirst|strong=\"G1372\"\\+w* \\+w again|strong=\"G3825\"\\+w*, *" + }, + { + "verseNum": 14, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w drinks|strong=\"G4095\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w water|strong=\"G5204\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w never|strong=\"G3756\"\\+w* \\+w thirst|strong=\"G1372\"\\+w* \\+w again|strong=\"G1519\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w water|strong=\"G5204\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w become|strong=\"G1096\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w well|strong=\"G4077\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w water|strong=\"G5204\"\\+w* springing \\+w up|strong=\"G1519\"\\+w* \\+w to|strong=\"G1519\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*.”*" + }, + { + "verseNum": 15, + "text": "The|strong=\"G4314\"* woman|strong=\"G1135\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Sir|strong=\"G2962\"*, give|strong=\"G1325\"* me|strong=\"G1325\"* this|strong=\"G3778\"* water|strong=\"G5204\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* I|strong=\"G1473\"* don’t|strong=\"G3588\"* get thirsty|strong=\"G1372\"*, neither|strong=\"G3366\"* come|strong=\"G1330\"* all|strong=\"G3361\"* the|strong=\"G4314\"* way|strong=\"G3778\"* here|strong=\"G1759\"* to|strong=\"G4314\"* draw.”" + }, + { + "verseNum": 16, + "text": "Jesus|strong=\"G3004\"* said|strong=\"G3004\"* to|strong=\"G2532\"* her|strong=\"G3588\"*, “\\+w Go|strong=\"G5217\"\\+w*, \\+w call|strong=\"G3004\"\\+w* \\+w your|strong=\"G2532\"\\+w* husband, \\+w and|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w here|strong=\"G1759\"\\+w*.” *" + }, + { + "verseNum": 17, + "text": "The|strong=\"G2532\"* woman|strong=\"G1135\"* answered|strong=\"G3004\"*, “I|strong=\"G2532\"* have|strong=\"G2192\"* no|strong=\"G3756\"* husband.”" + }, + { + "verseNum": 18, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w five|strong=\"G4002\"\\+w* husbands; \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w now|strong=\"G3568\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w your|strong=\"G2192\"\\+w* husband. \\+w This|strong=\"G3778\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w said|strong=\"G3004\"\\+w* truly.”*" + }, + { + "verseNum": 19, + "text": "The|strong=\"G3588\"* woman|strong=\"G1135\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Sir|strong=\"G2962\"*, I|strong=\"G3754\"* perceive|strong=\"G2334\"* that|strong=\"G3754\"* you|strong=\"G4771\"* are|strong=\"G1510\"* a|strong=\"G1510\"* prophet|strong=\"G4396\"*." + }, + { + "verseNum": 20, + "text": "Our|strong=\"G2532\"* fathers|strong=\"G3962\"* worshiped|strong=\"G4352\"* in|strong=\"G1722\"* this|strong=\"G3778\"* mountain|strong=\"G3735\"*, and|strong=\"G2532\"* you|strong=\"G5210\"* Jews say|strong=\"G3004\"* that|strong=\"G3754\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2414\"* is|strong=\"G1510\"* the|strong=\"G1722\"* place|strong=\"G5117\"* where|strong=\"G3699\"* people|strong=\"G1510\"* ought|strong=\"G1163\"* to|strong=\"G2532\"* worship|strong=\"G4352\"*.”" + }, + { + "verseNum": 21, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* her|strong=\"G3754\"*, “\\+w Woman|strong=\"G1135\"\\+w*, \\+w believe|strong=\"G4100\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w when|strong=\"G3753\"\\+w* \\+w neither|strong=\"G3777\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w mountain|strong=\"G3735\"\\+w* \\+w nor|strong=\"G3777\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Jerusalem|strong=\"G2414\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w worship|strong=\"G4352\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w worship|strong=\"G4352\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w*. \\+w We|strong=\"G2249\"\\+w* \\+w worship|strong=\"G4352\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w we|strong=\"G2249\"\\+w* \\+w know|strong=\"G1492\"\\+w*; \\+w for|strong=\"G3754\"\\+w* \\+w salvation|strong=\"G4991\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w Jews|strong=\"G2453\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w comes|strong=\"G2064\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w now|strong=\"G3568\"\\+w* \\+w is|strong=\"G1510\"\\+w*, \\+w when|strong=\"G3753\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w true|strong=\"G3588\"\\+w* \\+w worshipers|strong=\"G4353\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w worship|strong=\"G4352\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w spirit|strong=\"G4151\"\\+w* \\+w and|strong=\"G2532\"\\+w* truth, \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w seeks|strong=\"G2212\"\\+w* \\+w such|strong=\"G5108\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w worshipers|strong=\"G4353\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w God|strong=\"G2316\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w spirit|strong=\"G4151\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w worship|strong=\"G4352\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w worship|strong=\"G4352\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w spirit|strong=\"G4151\"\\+w* \\+w and|strong=\"G2532\"\\+w* truth.”*" + }, + { + "verseNum": 25, + "text": "The|strong=\"G3588\"* woman|strong=\"G1135\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “I|strong=\"G1473\"* know|strong=\"G1492\"* that|strong=\"G3754\"* Messiah|strong=\"G5547\"* is|strong=\"G3588\"* coming|strong=\"G2064\"*, he|strong=\"G3754\"* who|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G3004\"* Christ|strong=\"G5547\"*.+ 4:25 “Messiah” (Hebrew) and “Christ” (Greek) both mean “Anointed One”.* When|strong=\"G3752\"* he|strong=\"G3754\"* has|strong=\"G5547\"* come|strong=\"G2064\"*, he|strong=\"G3754\"* will|strong=\"G1473\"* declare to|strong=\"G3004\"* us|strong=\"G3004\"* all|strong=\"G3588\"* things|strong=\"G3588\"*.”" + }, + { + "verseNum": 26, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* her|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w he|strong=\"G3588\"\\+w*, \\+w the|strong=\"G3588\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w speaks|strong=\"G2980\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*.”*" + }, + { + "verseNum": 27, + "text": "Just|strong=\"G2532\"* then|strong=\"G2532\"*, his|strong=\"G1909\"* disciples|strong=\"G3101\"* came|strong=\"G2064\"*. They|strong=\"G2532\"* marveled|strong=\"G2296\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G3588\"* speaking|strong=\"G2980\"* with|strong=\"G3326\"* a|strong=\"G2532\"* woman|strong=\"G1135\"*; yet|strong=\"G2532\"* no|strong=\"G3762\"* one|strong=\"G3762\"* said|strong=\"G3004\"*, “What|strong=\"G5101\"* are|strong=\"G3588\"* you|strong=\"G3754\"* looking|strong=\"G2212\"* for|strong=\"G3754\"*?” or|strong=\"G2228\"*, “Why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G3754\"* speak|strong=\"G2980\"* with|strong=\"G3326\"* her|strong=\"G3754\"*?”" + }, + { + "verseNum": 28, + "text": "So|strong=\"G3767\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* left her|strong=\"G1519\"* water pot, went|strong=\"G2532\"* away into|strong=\"G1519\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G2532\"* people|strong=\"G3767\"*," + }, + { + "verseNum": 29, + "text": "“Come|strong=\"G1205\"*, see|strong=\"G3708\"* a|strong=\"G1510\"* man|strong=\"G3778\"* who|strong=\"G3739\"* told|strong=\"G3004\"* me|strong=\"G1473\"* everything|strong=\"G3956\"* that|strong=\"G3739\"* I|strong=\"G1473\"* have|strong=\"G1473\"* done|strong=\"G4160\"*. Can|strong=\"G3004\"* this|strong=\"G3778\"* be|strong=\"G1510\"* the|strong=\"G3956\"* Christ|strong=\"G5547\"*?”" + }, + { + "verseNum": 30, + "text": "They|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, and|strong=\"G2532\"* were|strong=\"G3588\"* coming|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 31, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* meanwhile|strong=\"G3342\"*, the|strong=\"G1722\"* disciples|strong=\"G3101\"* urged him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Rabbi|strong=\"G4461\"*, eat|strong=\"G2068\"*.”" + }, + { + "verseNum": 32, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w food|strong=\"G1035\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w about|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 33, + "text": "The|strong=\"G4314\"* disciples|strong=\"G3101\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G4314\"* one|strong=\"G5100\"* another|strong=\"G5100\"*, “Has|strong=\"G5100\"* anyone|strong=\"G5100\"* brought|strong=\"G5342\"* him|strong=\"G3588\"* something|strong=\"G5100\"* to|strong=\"G4314\"* eat|strong=\"G2068\"*?”" + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2443\"* them|strong=\"G3588\"*, “\\+w My|strong=\"G1699\"\\+w* \\+w food|strong=\"G1033\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w accomplish|strong=\"G5048\"\\+w* \\+w his|strong=\"G4160\"\\+w* \\+w work|strong=\"G2041\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "Don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w There|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w yet|strong=\"G2089\"\\+w* \\+w four|strong=\"G5072\"\\+w* \\+w months|strong=\"G5072\"\\+w* \\+w until|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w harvest|strong=\"G2326\"\\+w*’? \\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w lift|strong=\"G1869\"\\+w* \\+w up|strong=\"G1869\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w eyes|strong=\"G3788\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w look|strong=\"G2400\"\\+w* \\+w at|strong=\"G4314\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fields|strong=\"G5561\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w white|strong=\"G3022\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w harvest|strong=\"G2326\"\\+w* \\+w already|strong=\"G2235\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w reaps|strong=\"G2325\"\\+w* \\+w receives|strong=\"G2983\"\\+w* \\+w wages|strong=\"G3408\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gathers|strong=\"G4863\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w to|strong=\"G1519\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sows|strong=\"G4687\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w reaps|strong=\"G2325\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w rejoice|strong=\"G5463\"\\+w* \\+w together|strong=\"G4863\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w saying|strong=\"G3056\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w true|strong=\"G3588\"\\+w*, ‘\\+w One|strong=\"G3588\"\\+w* \\+w sows|strong=\"G4687\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w another|strong=\"G3588\"\\+w* \\+w reaps|strong=\"G2325\"\\+w*.’ *" + }, + { + "verseNum": 38, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w reap|strong=\"G2325\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* haven’\\+w t|strong=\"G3588\"\\+w* \\+w labored|strong=\"G2872\"\\+w*. \\+w Others|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w labored|strong=\"G2872\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w entered|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w labor|strong=\"G2873\"\\+w*.”*" + }, + { + "verseNum": 39, + "text": "From|strong=\"G1537\"* that|strong=\"G3754\"* city|strong=\"G4172\"* many|strong=\"G4183\"* of|strong=\"G1537\"* the|strong=\"G1519\"* Samaritans|strong=\"G4541\"* believed|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"* because|strong=\"G3754\"* of|strong=\"G1537\"* the|strong=\"G1519\"* word|strong=\"G3056\"* of|strong=\"G1537\"* the|strong=\"G1519\"* woman|strong=\"G1135\"*, who|strong=\"G3739\"* testified|strong=\"G3140\"*, “He|strong=\"G1161\"* told|strong=\"G3004\"* me|strong=\"G1473\"* everything|strong=\"G3956\"* that|strong=\"G3754\"* I|strong=\"G1473\"* have|strong=\"G1473\"* done|strong=\"G4160\"*.”" + }, + { + "verseNum": 40, + "text": "So|strong=\"G3767\"* when|strong=\"G5613\"* the|strong=\"G2532\"* Samaritans|strong=\"G4541\"* came|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* begged|strong=\"G2065\"* him|strong=\"G3588\"* to|strong=\"G4314\"* stay|strong=\"G3306\"* with|strong=\"G4314\"* them|strong=\"G3588\"*. He|strong=\"G2532\"* stayed|strong=\"G3306\"* there|strong=\"G1563\"* two|strong=\"G1417\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 41, + "text": "Many|strong=\"G4183\"* more|strong=\"G4119\"* believed|strong=\"G4100\"* because|strong=\"G1223\"* of|strong=\"G3056\"* his|strong=\"G1223\"* word|strong=\"G3056\"*." + }, + { + "verseNum": 42, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* woman|strong=\"G1135\"*, “Now|strong=\"G2532\"* we|strong=\"G3754\"* believe|strong=\"G4100\"*, not|strong=\"G1510\"* because|strong=\"G3754\"* of|strong=\"G1223\"* your|strong=\"G4674\"* speaking|strong=\"G3004\"*; for|strong=\"G1063\"* we|strong=\"G3754\"* have|strong=\"G2532\"* heard for|strong=\"G1063\"* ourselves, and|strong=\"G2532\"* know|strong=\"G1492\"* that|strong=\"G3754\"* this|strong=\"G3778\"* is|strong=\"G1510\"* indeed|strong=\"G2532\"* the|strong=\"G2532\"* Christ, the|strong=\"G2532\"* Savior|strong=\"G4990\"* of|strong=\"G1223\"* the|strong=\"G2532\"* world|strong=\"G2889\"*.”" + }, + { + "verseNum": 43, + "text": "After|strong=\"G3326\"* the|strong=\"G1519\"* two|strong=\"G1417\"* days|strong=\"G2250\"* he|strong=\"G1161\"* went|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G1831\"* there|strong=\"G1161\"* and|strong=\"G1161\"* went|strong=\"G1831\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*." + }, + { + "verseNum": 44, + "text": "For|strong=\"G1063\"* Jesus|strong=\"G2424\"* himself|strong=\"G2398\"* testified|strong=\"G3140\"* that|strong=\"G3754\"* a|strong=\"G2192\"* prophet|strong=\"G4396\"* has|strong=\"G2192\"* no|strong=\"G3756\"* honor|strong=\"G5092\"* in|strong=\"G1722\"* his|strong=\"G1722\"* own|strong=\"G2398\"* country|strong=\"G3968\"*." + }, + { + "verseNum": 45, + "text": "So|strong=\"G3767\"* when|strong=\"G3753\"* he|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*, the|strong=\"G1722\"* Galileans|strong=\"G1057\"* received|strong=\"G1209\"* him|strong=\"G3588\"*, having|strong=\"G2532\"* seen|strong=\"G3708\"* all|strong=\"G3956\"* the|strong=\"G1722\"* things|strong=\"G3956\"* that|strong=\"G3739\"* he|strong=\"G2532\"* did|strong=\"G4160\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2414\"* at|strong=\"G1722\"* the|strong=\"G1722\"* feast|strong=\"G1859\"*, for|strong=\"G1063\"* they|strong=\"G2532\"* also|strong=\"G2532\"* went|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G1722\"* feast|strong=\"G1859\"*." + }, + { + "verseNum": 46, + "text": "Jesus|strong=\"G1510\"* came|strong=\"G2064\"* therefore|strong=\"G3767\"* again|strong=\"G3825\"* to|strong=\"G1519\"* Cana|strong=\"G2580\"* of|strong=\"G5207\"* Galilee|strong=\"G1056\"*, where|strong=\"G3699\"* he|strong=\"G2532\"* made|strong=\"G4160\"* the|strong=\"G1722\"* water|strong=\"G5204\"* into|strong=\"G1519\"* wine|strong=\"G3631\"*. There|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* certain|strong=\"G2532\"* nobleman whose|strong=\"G3739\"* son|strong=\"G5207\"* was|strong=\"G1510\"* sick at|strong=\"G1722\"* Capernaum|strong=\"G2584\"*." + }, + { + "verseNum": 47, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* heard that|strong=\"G3754\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* come|strong=\"G2240\"* out|strong=\"G1537\"* of|strong=\"G1537\"* Judea|strong=\"G2449\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*, he|strong=\"G2532\"* went|strong=\"G2597\"* to|strong=\"G1519\"* him|strong=\"G3588\"* and|strong=\"G2532\"* begged|strong=\"G2065\"* him|strong=\"G3588\"* that|strong=\"G3754\"* he|strong=\"G2532\"* would|strong=\"G3195\"* come|strong=\"G2240\"* down|strong=\"G2597\"* and|strong=\"G2532\"* heal|strong=\"G2390\"* his|strong=\"G1519\"* son|strong=\"G5207\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* was|strong=\"G3588\"* at|strong=\"G1519\"* the|strong=\"G2532\"* point|strong=\"G3195\"* of|strong=\"G1537\"* death." + }, + { + "verseNum": 48, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “\\+w Unless|strong=\"G1437\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w signs|strong=\"G4592\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w wonders|strong=\"G5059\"\\+w*, \\+w you|strong=\"G1437\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* way \\+w believe|strong=\"G4100\"\\+w*.”*" + }, + { + "verseNum": 49, + "text": "The|strong=\"G4314\"* nobleman said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Sir|strong=\"G2962\"*, come|strong=\"G2597\"* down|strong=\"G2597\"* before|strong=\"G4250\"* my|strong=\"G1473\"* child|strong=\"G3813\"* dies.”" + }, + { + "verseNum": 50, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Go|strong=\"G4198\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w way|strong=\"G4198\"\\+w*. \\+w Your|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w lives|strong=\"G2198\"\\+w*.”* The|strong=\"G2532\"* man|strong=\"G3739\"* believed|strong=\"G4100\"* the|strong=\"G2532\"* word|strong=\"G3056\"* that|strong=\"G3739\"* Jesus|strong=\"G2424\"* spoke|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* went|strong=\"G4198\"* his|strong=\"G2532\"* way|strong=\"G4198\"*." + }, + { + "verseNum": 51, + "text": "As|strong=\"G1161\"* he|strong=\"G2532\"* was|strong=\"G3588\"* going|strong=\"G2597\"* down|strong=\"G2597\"*, his|strong=\"G2532\"* servants|strong=\"G1401\"* met|strong=\"G5221\"* him|strong=\"G3588\"* and|strong=\"G2532\"* reported|strong=\"G3004\"*, saying|strong=\"G3004\"* “Your|strong=\"G2532\"* child|strong=\"G3816\"* lives|strong=\"G2198\"*!”" + }, + { + "verseNum": 52, + "text": "So|strong=\"G3767\"* he|strong=\"G3739\"* inquired|strong=\"G4441\"* of|strong=\"G3844\"* them|strong=\"G3588\"* the|strong=\"G1722\"* hour|strong=\"G5610\"* when|strong=\"G1722\"* he|strong=\"G3739\"* began|strong=\"G2192\"* to|strong=\"G3004\"* get|strong=\"G2192\"* better|strong=\"G2866\"*. They|strong=\"G3588\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Yesterday|strong=\"G5504\"* at|strong=\"G1722\"* the|strong=\"G1722\"* seventh|strong=\"G1442\"* hour|strong=\"G5610\"*,+ 4:52 1:00 p.m.* the|strong=\"G1722\"* fever|strong=\"G4446\"* left him|strong=\"G3588\"*.”" + }, + { + "verseNum": 53, + "text": "So|strong=\"G3767\"* the|strong=\"G1722\"* father|strong=\"G3962\"* knew|strong=\"G1097\"* that|strong=\"G3754\"* it|strong=\"G2532\"* was|strong=\"G3588\"* at|strong=\"G1722\"* that|strong=\"G3754\"* hour|strong=\"G5610\"* in|strong=\"G1722\"* which|strong=\"G3739\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Your|strong=\"G3650\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w lives|strong=\"G2198\"\\+w*.”* He|strong=\"G2532\"* believed|strong=\"G4100\"*, as|strong=\"G1722\"* did|strong=\"G2532\"* his|strong=\"G1722\"* whole|strong=\"G3650\"* house|strong=\"G3614\"*." + }, + { + "verseNum": 54, + "text": "This|strong=\"G3778\"* is|strong=\"G3588\"* again|strong=\"G3825\"* the|strong=\"G1519\"* second|strong=\"G1208\"* sign|strong=\"G4592\"* that|strong=\"G3588\"* Jesus|strong=\"G2424\"* did|strong=\"G4160\"*, having|strong=\"G4160\"* come|strong=\"G2064\"* out|strong=\"G1537\"* of|strong=\"G1537\"* Judea|strong=\"G2449\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* feast|strong=\"G1859\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, and|strong=\"G2532\"* Jesus|strong=\"G2424\"* went|strong=\"G2424\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2414\"* by|strong=\"G1722\"* the|strong=\"G1722\"* sheep|strong=\"G4262\"* gate, there|strong=\"G1161\"* is|strong=\"G1510\"* a|strong=\"G2192\"* pool|strong=\"G2861\"*, which|strong=\"G3588\"* is|strong=\"G1510\"* called|strong=\"G3004\"* in|strong=\"G1722\"* Hebrew|strong=\"G1447\"*, “Bethesda”, having|strong=\"G2192\"* five|strong=\"G4002\"* porches|strong=\"G4745\"*." + }, + { + "verseNum": 3, + "text": "In|strong=\"G1722\"* these|strong=\"G3778\"* lay|strong=\"G2621\"* a|strong=\"G1722\"* great|strong=\"G4128\"* multitude|strong=\"G4128\"* of|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* sick|strong=\"G2621\"*, blind|strong=\"G5185\"*, lame|strong=\"G5560\"*, or|strong=\"G3588\"* paralyzed, waiting for|strong=\"G1722\"* the|strong=\"G1722\"* moving of|strong=\"G1722\"* the|strong=\"G1722\"* water;" + }, + { + "verseNum": 4, + "text": "for an angel went down at certain times into the pool and stirred up the water. Whoever stepped in first after the stirring of the water was healed of whatever disease he had.+ 5:4 NU omits from “waiting” in verse 3 to the end of verse 4.*" + }, + { + "verseNum": 5, + "text": "A|strong=\"G2192\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* was|strong=\"G1510\"* there|strong=\"G1563\"* who|strong=\"G3588\"* had|strong=\"G2192\"* been|strong=\"G1510\"* sick for|strong=\"G1161\"* thirty-eight|strong=\"G5144\"* years|strong=\"G2094\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"G2532\"* Jesus|strong=\"G2424\"* saw|strong=\"G3708\"* him|strong=\"G3588\"* lying|strong=\"G2621\"* there|strong=\"G2532\"*, and|strong=\"G2532\"* knew|strong=\"G1097\"* that|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2192\"* been|strong=\"G1096\"* sick|strong=\"G2621\"* for|strong=\"G3754\"* a|strong=\"G2192\"* long|strong=\"G4183\"* time|strong=\"G5550\"*, he|strong=\"G2532\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Do|strong=\"G1096\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w made|strong=\"G1096\"\\+w* \\+w well|strong=\"G2532\"\\+w*?”*" + }, + { + "verseNum": 7, + "text": "The|strong=\"G1722\"* sick man|strong=\"G3739\"* answered him|strong=\"G3588\"*, “Sir|strong=\"G2962\"*, I|strong=\"G1473\"* have|strong=\"G2192\"* no|strong=\"G3756\"* one|strong=\"G3739\"* to|strong=\"G1519\"* put|strong=\"G1519\"* me|strong=\"G1473\"* into|strong=\"G1519\"* the|strong=\"G1722\"* pool|strong=\"G2861\"* when|strong=\"G3752\"* the|strong=\"G1722\"* water|strong=\"G5204\"* is|strong=\"G3588\"* stirred|strong=\"G5015\"* up|strong=\"G1519\"*, but|strong=\"G1161\"* while|strong=\"G1722\"* I|strong=\"G1473\"*’m coming|strong=\"G2064\"*, another|strong=\"G3739\"* steps|strong=\"G2597\"* down|strong=\"G2597\"* before|strong=\"G4253\"* me|strong=\"G1473\"*.”" + }, + { + "verseNum": 8, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Arise|strong=\"G1453\"\\+w*, \\+w take|strong=\"G2532\"\\+w* \\+w up|strong=\"G1453\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w mat|strong=\"G2895\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w walk|strong=\"G4043\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "Immediately|strong=\"G2112\"*, the|strong=\"G1722\"* man|strong=\"G1565\"* was|strong=\"G1510\"* made|strong=\"G1096\"* well|strong=\"G2532\"*, and|strong=\"G2532\"* took|strong=\"G1096\"* up|strong=\"G2532\"* his|strong=\"G1722\"* mat|strong=\"G2895\"* and|strong=\"G2532\"* walked|strong=\"G4043\"*." + }, + { + "verseNum": 10, + "text": "So|strong=\"G3767\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G1510\"* cured|strong=\"G2323\"*, “It|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"*. It|strong=\"G2532\"* is|strong=\"G1510\"* not|strong=\"G3756\"* lawful|strong=\"G1832\"* for|strong=\"G2532\"* you|strong=\"G4771\"* to|strong=\"G2532\"* carry the|strong=\"G2532\"* mat|strong=\"G2895\"*.”" + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “He|strong=\"G2532\"* who|strong=\"G3588\"* made|strong=\"G4160\"* me|strong=\"G1473\"* well|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, ‘\\+w Take|strong=\"G1161\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w mat|strong=\"G2895\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w walk|strong=\"G4043\"\\+w*.’* ”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"G3767\"* they|strong=\"G2532\"* asked|strong=\"G2065\"* him|strong=\"G3588\"*, “Who|strong=\"G5101\"* is|strong=\"G1510\"* the|strong=\"G2532\"* man|strong=\"G5101\"* who|strong=\"G5101\"* said|strong=\"G3004\"* to|strong=\"G2532\"* you|strong=\"G4771\"*, ‘\\+w Take|strong=\"G2532\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* mat \\+w and|strong=\"G2532\"\\+w* \\+w walk|strong=\"G4043\"\\+w*’*?”" + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G5101\"* was|strong=\"G1510\"* healed|strong=\"G2390\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"* who|strong=\"G5101\"* it|strong=\"G1161\"* was|strong=\"G1510\"*, for|strong=\"G1063\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* withdrawn, a|strong=\"G1722\"* crowd|strong=\"G3793\"* being|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* place|strong=\"G5117\"*." + }, + { + "verseNum": 14, + "text": "Afterward|strong=\"G3326\"* Jesus|strong=\"G2424\"* found|strong=\"G2147\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, “\\+w Behold|strong=\"G2396\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w made|strong=\"G1096\"\\+w* \\+w well|strong=\"G2532\"\\+w*. Sin \\+w no|strong=\"G3361\"\\+w* \\+w more|strong=\"G3371\"\\+w*, \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w nothing|strong=\"G3361\"\\+w* \\+w worse|strong=\"G5501\"\\+w* \\+w happens|strong=\"G1096\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w you|strong=\"G4771\"\\+w*.” *" + }, + { + "verseNum": 15, + "text": "The|strong=\"G2532\"* man|strong=\"G4160\"* went|strong=\"G2424\"* away, and|strong=\"G2532\"* told|strong=\"G3004\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* that|strong=\"G3754\"* it|strong=\"G2532\"* was|strong=\"G1510\"* Jesus|strong=\"G2424\"* who|strong=\"G3588\"* had|strong=\"G2424\"* made|strong=\"G4160\"* him|strong=\"G3588\"* well|strong=\"G2532\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G3754\"* this|strong=\"G3778\"* cause|strong=\"G4160\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* persecuted|strong=\"G1377\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* sought to|strong=\"G2532\"* kill him|strong=\"G3588\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* did|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3778\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* Jesus answered them|strong=\"G3588\"*, “\\+w My|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w still|strong=\"G2193\"\\+w* \\+w working|strong=\"G2038\"\\+w*, \\+w so|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w working|strong=\"G2038\"\\+w*, too.”*" + }, + { + "verseNum": 18, + "text": "For|strong=\"G3754\"* this|strong=\"G3778\"* cause|strong=\"G4160\"* therefore|strong=\"G3767\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* sought|strong=\"G2212\"* all|strong=\"G2532\"* the|strong=\"G2532\"* more|strong=\"G3123\"* to|strong=\"G2532\"* kill him|strong=\"G3588\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* not|strong=\"G3756\"* only|strong=\"G3440\"* broke|strong=\"G3089\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* called|strong=\"G3004\"* God|strong=\"G2316\"* his|strong=\"G1438\"* own|strong=\"G2398\"* Father|strong=\"G3962\"*, making|strong=\"G4160\"* himself|strong=\"G1438\"* equal|strong=\"G2470\"* with|strong=\"G1223\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 19, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “Most \\+w certainly|strong=\"G1063\"\\+w*, \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w nothing|strong=\"G3762\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* sees \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w doing|strong=\"G4160\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w does|strong=\"G4160\"\\+w*, \\+w these|strong=\"G3778\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w does|strong=\"G4160\"\\+w* \\+w likewise|strong=\"G3668\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w has|strong=\"G3962\"\\+w* affection \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w shows|strong=\"G1166\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G2532\"\\+w* himself \\+w does|strong=\"G4160\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w show|strong=\"G1166\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w these|strong=\"G3778\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w marvel|strong=\"G2296\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w as|strong=\"G5618\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w raises|strong=\"G1453\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gives|strong=\"G2227\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w life|strong=\"G2227\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w gives|strong=\"G2227\"\\+w* \\+w life|strong=\"G2227\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w desires|strong=\"G2309\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w judges|strong=\"G2919\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w*, \\+w but|strong=\"G1063\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w Son|strong=\"G5207\"\\+w*, *" + }, + { + "verseNum": 23, + "text": "\\+w that|strong=\"G2443\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w honor|strong=\"G5091\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w Son|strong=\"G5207\"\\+w*, \\+w even|strong=\"G2531\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w honor|strong=\"G5091\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. \\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w honor|strong=\"G5091\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w Son|strong=\"G5207\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w honor|strong=\"G5091\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w him|strong=\"G3588\"\\+w*.*" + }, + { + "verseNum": 24, + "text": "“\\+w Most|strong=\"G1537\"\\+w* \\+w certainly|strong=\"G2192\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* hears \\+w my|strong=\"G1473\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w has|strong=\"G2192\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*, \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w passed|strong=\"G3327\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w death|strong=\"G2288\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w Most|strong=\"G2316\"\\+w* \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w comes|strong=\"G2064\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w now|strong=\"G3568\"\\+w* \\+w is|strong=\"G1510\"\\+w*, \\+w when|strong=\"G3753\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w hear|strong=\"G5456\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s \\+w voice|strong=\"G5456\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w hear|strong=\"G5456\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w live|strong=\"G2198\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w as|strong=\"G5618\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w himself|strong=\"G1438\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w him|strong=\"G1325\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w execute|strong=\"G4160\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w man|strong=\"G5207\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "Don’\\+w t|strong=\"G3588\"\\+w* \\+w marvel|strong=\"G2296\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w tombs|strong=\"G3419\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w hear|strong=\"G5456\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w voice|strong=\"G5456\"\\+w* *" + }, + { + "verseNum": 29, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G1607\"\\+w* \\+w out|strong=\"G1607\"\\+w*; \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w good|strong=\"G3588\"\\+w*, \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* resurrection \\+w of|strong=\"G2532\"\\+w* \\+w life|strong=\"G2222\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w evil|strong=\"G5337\"\\+w*, \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* resurrection \\+w of|strong=\"G2532\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w myself|strong=\"G1683\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w nothing|strong=\"G3762\"\\+w*. \\+w As|strong=\"G2531\"\\+w* \\+w I|strong=\"G1473\"\\+w* hear, \\+w I|strong=\"G1473\"\\+w* \\+w judge|strong=\"G2919\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w righteous|strong=\"G1342\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w own|strong=\"G1699\"\\+w* \\+w will|strong=\"G2307\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w my|strong=\"G1699\"\\+w* Father \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*.*" + }, + { + "verseNum": 31, + "text": "“\\+w If|strong=\"G1437\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w testify|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w myself|strong=\"G1683\"\\+w*, \\+w my|strong=\"G1473\"\\+w* \\+w witness|strong=\"G3140\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* valid. *" + }, + { + "verseNum": 32, + "text": "\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w another|strong=\"G3739\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w testifies|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w testimony|strong=\"G3141\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w testifies|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w true|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w John|strong=\"G2491\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2532\"\\+w* \\+w testified|strong=\"G3140\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G2532\"\\+w* truth. *" + }, + { + "verseNum": 34, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w testimony|strong=\"G3141\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w man|strong=\"G3778\"\\+w*. \\+w However|strong=\"G1161\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w be|strong=\"G3756\"\\+w* \\+w saved|strong=\"G4982\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w burning|strong=\"G2545\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w shining|strong=\"G5316\"\\+w* \\+w lamp|strong=\"G3088\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w willing|strong=\"G2309\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w rejoice|strong=\"G2532\"\\+w* \\+w for|strong=\"G4314\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w while|strong=\"G1722\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w testimony|strong=\"G3141\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w John|strong=\"G2491\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w accomplish|strong=\"G5048\"\\+w*, \\+w the|strong=\"G1161\"\\+w* \\+w very|strong=\"G3588\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w*, \\+w testify|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w has|strong=\"G2192\"\\+w* sent \\+w me|strong=\"G1325\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w himself|strong=\"G1565\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w has|strong=\"G3962\"\\+w* \\+w testified|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w You|strong=\"G3708\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w neither|strong=\"G3777\"\\+w* heard \\+w his|strong=\"G4012\"\\+w* \\+w voice|strong=\"G5456\"\\+w* \\+w at|strong=\"G4012\"\\+w* \\+w any|strong=\"G4455\"\\+w* \\+w time|strong=\"G4455\"\\+w*, \\+w nor|strong=\"G3777\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w his|strong=\"G4012\"\\+w* \\+w form|strong=\"G1491\"\\+w*. *" + }, + { + "verseNum": 38, + "text": "\\+w You|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w living|strong=\"G2192\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w*.*" + }, + { + "verseNum": 39, + "text": "“\\+w You|strong=\"G5210\"\\+w* \\+w search|strong=\"G2045\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Scriptures|strong=\"G1124\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w think|strong=\"G1380\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2192\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w these|strong=\"G4012\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w testify|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 40, + "text": "\\+w Yet|strong=\"G2532\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 41, + "text": "\\+w I|strong=\"G2983\"\\+w* don’t \\+w receive|strong=\"G2983\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w from|strong=\"G3844\"\\+w* men. *" + }, + { + "verseNum": 42, + "text": "\\+w But|strong=\"G2316\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w God|strong=\"G2316\"\\+w*’\\+w s|strong=\"G2192\"\\+w* love \\+w in|strong=\"G1722\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w*. *" + }, + { + "verseNum": 43, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s \\+w name|strong=\"G3686\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1437\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w another|strong=\"G3588\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w you|strong=\"G1437\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 44, + "text": "\\+w How|strong=\"G4459\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w believe|strong=\"G4100\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w another|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w comes|strong=\"G2532\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w only|strong=\"G3441\"\\+w* \\+w God|strong=\"G2316\"\\+w*?*" + }, + { + "verseNum": 45, + "text": "“Don’\\+w t|strong=\"G3588\"\\+w* \\+w think|strong=\"G1380\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w accuse|strong=\"G2723\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. \\+w There|strong=\"G3754\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w one|strong=\"G3739\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w accuses|strong=\"G2723\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w even|strong=\"G1519\"\\+w* \\+w Moses|strong=\"G3475\"\\+w*, \\+w on|strong=\"G1519\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w set|strong=\"G1679\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w hope|strong=\"G1679\"\\+w*. *" + }, + { + "verseNum": 46, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w believed|strong=\"G4100\"\\+w* \\+w Moses|strong=\"G3475\"\\+w*, \\+w you|strong=\"G1487\"\\+w* \\+w would|strong=\"G4100\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w me|strong=\"G1473\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w he|strong=\"G1565\"\\+w* \\+w wrote|strong=\"G1125\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 47, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w you|strong=\"G1487\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w his|strong=\"G1565\"\\+w* \\+w writings|strong=\"G1121\"\\+w*, \\+w how|strong=\"G4459\"\\+w* \\+w will|strong=\"G4100\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w words|strong=\"G4487\"\\+w*?”*" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, Jesus|strong=\"G2424\"* went|strong=\"G2424\"* away|strong=\"G3326\"* to|strong=\"G2424\"* the|strong=\"G3588\"* other|strong=\"G4008\"* side|strong=\"G4008\"* of|strong=\"G2424\"* the|strong=\"G3588\"* sea|strong=\"G2281\"* of|strong=\"G2424\"* Galilee|strong=\"G1056\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* also called|strong=\"G3778\"* the|strong=\"G3588\"* Sea|strong=\"G2281\"* of|strong=\"G2424\"* Tiberias|strong=\"G5085\"*." + }, + { + "verseNum": 2, + "text": "A|strong=\"G1909\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* followed him|strong=\"G3588\"*, because|strong=\"G3754\"* they|strong=\"G1161\"* saw|strong=\"G3708\"* his|strong=\"G1909\"* signs|strong=\"G4592\"* which|strong=\"G3739\"* he|strong=\"G1161\"* did|strong=\"G4160\"* on|strong=\"G1909\"* those|strong=\"G3588\"* who|strong=\"G3739\"* were|strong=\"G3588\"* sick." + }, + { + "verseNum": 3, + "text": "Jesus|strong=\"G2424\"* went|strong=\"G2424\"* up|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* sat|strong=\"G2521\"* there|strong=\"G1563\"* with|strong=\"G3326\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"G1161\"* the|strong=\"G1161\"* Passover|strong=\"G3957\"*, the|strong=\"G1161\"* feast|strong=\"G1859\"* of|strong=\"G3588\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"*, was|strong=\"G1510\"* at|strong=\"G1161\"* hand|strong=\"G1451\"*." + }, + { + "verseNum": 5, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"*, lifting|strong=\"G1869\"* up|strong=\"G1869\"* his|strong=\"G2532\"* eyes|strong=\"G3788\"* and|strong=\"G2532\"* seeing|strong=\"G2300\"* that|strong=\"G3754\"* a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* was|strong=\"G3588\"* coming|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, said|strong=\"G3004\"* to|strong=\"G4314\"* Philip|strong=\"G5376\"*, “\\+w Where|strong=\"G4159\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w we|strong=\"G3754\"\\+w* \\+w to|strong=\"G4314\"\\+w* buy bread, \\+w that|strong=\"G3754\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w*?”*" + }, + { + "verseNum": 6, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* this|strong=\"G3778\"* to|strong=\"G3004\"* test|strong=\"G3985\"* him|strong=\"G4160\"*, for|strong=\"G1063\"* he|strong=\"G1161\"* himself knew|strong=\"G1492\"* what|strong=\"G5101\"* he|strong=\"G1161\"* would|strong=\"G3195\"* do|strong=\"G4160\"*." + }, + { + "verseNum": 7, + "text": "Philip|strong=\"G5376\"* answered him|strong=\"G3588\"*, “Two|strong=\"G1250\"* hundred|strong=\"G1250\"* denarii|strong=\"G1220\"*+ 6:7 A denarius was a silver coin worth about a day’s wages for an agricultural laborer, so 200 denarii would be between 6 and 7 month’s pay.* worth of|strong=\"G5100\"* bread is|strong=\"G3588\"* not|strong=\"G3756\"* sufficient for|strong=\"G2443\"* them|strong=\"G3588\"*, that|strong=\"G2443\"* every|strong=\"G1538\"* one|strong=\"G5100\"* of|strong=\"G5100\"* them|strong=\"G3588\"* may|strong=\"G2443\"* receive|strong=\"G2983\"* a|strong=\"G2983\"* little|strong=\"G1024\"*.”" + }, + { + "verseNum": 8, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* his|strong=\"G3588\"* disciples|strong=\"G3101\"*, Andrew, Simon|strong=\"G4613\"* Peter|strong=\"G4074\"*’s brother, said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 9, + "text": "“There|strong=\"G2532\"* is|strong=\"G1510\"* a|strong=\"G2192\"* boy here|strong=\"G5602\"* who|strong=\"G3739\"* has|strong=\"G2192\"* five|strong=\"G4002\"* barley|strong=\"G2916\"* loaves and|strong=\"G2532\"* two|strong=\"G1417\"* fish|strong=\"G3795\"*, but|strong=\"G2532\"* what|strong=\"G5101\"* are|strong=\"G1510\"* these|strong=\"G3778\"* among|strong=\"G1519\"* so|strong=\"G2532\"* many|strong=\"G5118\"*?”" + }, + { + "verseNum": 10, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “\\+w Have|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w people|strong=\"G1510\"\\+w* sit down.”* Now|strong=\"G1161\"* there|strong=\"G1161\"* was|strong=\"G1510\"* much|strong=\"G4183\"* grass|strong=\"G5528\"* in|strong=\"G1722\"* that|strong=\"G3588\"* place|strong=\"G5117\"*. So|strong=\"G3767\"* the|strong=\"G1722\"* men|strong=\"G3588\"* sat down, in|strong=\"G1722\"* number about|strong=\"G5613\"* five|strong=\"G4000\"* thousand|strong=\"G4000\"*." + }, + { + "verseNum": 11, + "text": "Jesus|strong=\"G2424\"* took|strong=\"G2983\"* the|strong=\"G2532\"* loaves, and|strong=\"G2532\"* having|strong=\"G2532\"* given|strong=\"G1325\"* thanks|strong=\"G2168\"*, he|strong=\"G2532\"* distributed|strong=\"G1239\"* to|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3588\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* sitting|strong=\"G2532\"* down|strong=\"G1537\"*, likewise|strong=\"G3668\"* also|strong=\"G2532\"* of|strong=\"G1537\"* the|strong=\"G2532\"* fish|strong=\"G3795\"* as|strong=\"G3745\"* much|strong=\"G3745\"* as|strong=\"G3745\"* they|strong=\"G2532\"* desired|strong=\"G2309\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* were|strong=\"G3588\"* filled|strong=\"G1705\"*, he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G2443\"* his|strong=\"G5613\"* disciples|strong=\"G3101\"*, “\\+w Gather|strong=\"G4863\"\\+w* \\+w up|strong=\"G3361\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w broken|strong=\"G2801\"\\+w* \\+w pieces|strong=\"G2801\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w left|strong=\"G4052\"\\+w* \\+w over|strong=\"G4052\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w nothing|strong=\"G3361\"\\+w* \\+w be|strong=\"G3361\"\\+w* lost.”*" + }, + { + "verseNum": 13, + "text": "So|strong=\"G3767\"* they|strong=\"G2532\"* gathered|strong=\"G4863\"* them|strong=\"G3588\"* up|strong=\"G2532\"*, and|strong=\"G2532\"* filled|strong=\"G1072\"* twelve|strong=\"G1427\"* baskets|strong=\"G2894\"* with|strong=\"G1537\"* broken|strong=\"G2801\"* pieces|strong=\"G2801\"* from|strong=\"G1537\"* the|strong=\"G2532\"* five|strong=\"G4002\"* barley|strong=\"G2916\"* loaves, which|strong=\"G3739\"* were|strong=\"G3588\"* left|strong=\"G4052\"* over|strong=\"G1537\"* by|strong=\"G1537\"* those|strong=\"G3588\"* who|strong=\"G3739\"* had|strong=\"G2532\"* eaten." + }, + { + "verseNum": 14, + "text": "When|strong=\"G2064\"* therefore|strong=\"G3767\"* the|strong=\"G1519\"* people|strong=\"G1510\"* saw|strong=\"G3708\"* the|strong=\"G1519\"* sign|strong=\"G4592\"* which|strong=\"G3739\"* Jesus|strong=\"G3004\"* did|strong=\"G4160\"*, they|strong=\"G3588\"* said|strong=\"G3004\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* truly the|strong=\"G1519\"* prophet|strong=\"G4396\"* who|strong=\"G3739\"* comes|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G1519\"* world|strong=\"G2889\"*.”" + }, + { + "verseNum": 15, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"*, perceiving|strong=\"G1097\"* that|strong=\"G3754\"* they|strong=\"G2532\"* were|strong=\"G3588\"* about|strong=\"G3195\"* to|strong=\"G1519\"* come|strong=\"G2064\"* and|strong=\"G2532\"* take|strong=\"G2532\"* him|strong=\"G3588\"* by|strong=\"G2532\"* force to|strong=\"G1519\"* make|strong=\"G4160\"* him|strong=\"G3588\"* king|strong=\"G3588\"*, withdrew|strong=\"G2424\"* again|strong=\"G3825\"* to|strong=\"G1519\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"* by|strong=\"G2532\"* himself|strong=\"G3441\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"G1161\"* evening|strong=\"G3798\"* came|strong=\"G1096\"*, his|strong=\"G1909\"* disciples|strong=\"G3101\"* went|strong=\"G2597\"* down|strong=\"G2597\"* to|strong=\"G1909\"* the|strong=\"G1161\"* sea|strong=\"G2281\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"G2532\"* entered|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"*, and|strong=\"G2532\"* were|strong=\"G3588\"* going|strong=\"G2532\"* over|strong=\"G4008\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* to|strong=\"G1519\"* Capernaum|strong=\"G2584\"*. It|strong=\"G2532\"* was|strong=\"G1096\"* now|strong=\"G1161\"* dark|strong=\"G4653\"*, and|strong=\"G2532\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* not|strong=\"G3768\"* come|strong=\"G2064\"* to|strong=\"G1519\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"G3588\"* sea|strong=\"G2281\"* was|strong=\"G3588\"* tossed by|strong=\"G5037\"* a|strong=\"G5037\"* great|strong=\"G3173\"* wind|strong=\"G4154\"* blowing|strong=\"G4154\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"G5613\"* therefore|strong=\"G3767\"* they|strong=\"G2532\"* had|strong=\"G2424\"* rowed|strong=\"G1643\"* about|strong=\"G5613\"* twenty-five or|strong=\"G2228\"* thirty|strong=\"G5144\"* stadia,+ 6:19 25 to 30 stadia is about 5 to 6 kilometers or about 3 to 4 miles* they|strong=\"G2532\"* saw|strong=\"G2334\"* Jesus|strong=\"G2424\"* walking|strong=\"G4043\"* on|strong=\"G1909\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*+ 6:19 See Job 9:8* and|strong=\"G2532\"* drawing|strong=\"G1096\"* near|strong=\"G1451\"* to|strong=\"G2532\"* the|strong=\"G2532\"* boat|strong=\"G4143\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* afraid|strong=\"G5399\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w It|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w I|strong=\"G1473\"\\+w*.*+ 6:20 or, I AM* Don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*.”*" + }, + { + "verseNum": 21, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* willing|strong=\"G2309\"* therefore|strong=\"G3767\"* to|strong=\"G1519\"* receive|strong=\"G2983\"* him|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"*. Immediately|strong=\"G2112\"* the|strong=\"G2532\"* boat|strong=\"G4143\"* was|strong=\"G1096\"* at|strong=\"G1909\"* the|strong=\"G2532\"* land|strong=\"G1093\"* where|strong=\"G3739\"* they|strong=\"G2532\"* were|strong=\"G3588\"* going|strong=\"G5217\"*." + }, + { + "verseNum": 22, + "text": "On|strong=\"G1519\"* the|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"*, the|strong=\"G2532\"* multitude|strong=\"G3793\"* that|strong=\"G3754\"* stood|strong=\"G2476\"* on|strong=\"G1519\"* the|strong=\"G2532\"* other|strong=\"G4008\"* side|strong=\"G4008\"* of|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* there|strong=\"G1563\"* was|strong=\"G1510\"* no|strong=\"G3756\"* other|strong=\"G4008\"* boat|strong=\"G4143\"* there|strong=\"G1563\"*, except|strong=\"G1487\"* the|strong=\"G2532\"* one|strong=\"G1520\"* in|strong=\"G1519\"* which|strong=\"G3588\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* had|strong=\"G2424\"* embarked, and|strong=\"G2532\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* hadn’t|strong=\"G3588\"* entered|strong=\"G4897\"* with|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"*, but|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* had|strong=\"G2424\"* gone away alone|strong=\"G3441\"*." + }, + { + "verseNum": 23, + "text": "However, boats|strong=\"G4142\"* from|strong=\"G1537\"* Tiberias|strong=\"G5085\"* came|strong=\"G2064\"* near|strong=\"G1451\"* to|strong=\"G2064\"* the|strong=\"G1537\"* place|strong=\"G5117\"* where|strong=\"G3699\"* they|strong=\"G3588\"* ate|strong=\"G2068\"* the|strong=\"G1537\"* bread after|strong=\"G1537\"* the|strong=\"G1537\"* Lord|strong=\"G2962\"* had|strong=\"G3588\"* given|strong=\"G2168\"* thanks|strong=\"G2168\"*." + }, + { + "verseNum": 24, + "text": "When|strong=\"G3753\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* therefore|strong=\"G3767\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* wasn’t|strong=\"G3588\"* there|strong=\"G1563\"*, nor|strong=\"G3761\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, they|strong=\"G2532\"* themselves|strong=\"G1519\"* got|strong=\"G1684\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boats|strong=\"G4142\"* and|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Capernaum|strong=\"G2584\"*, seeking|strong=\"G2212\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 25, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* found|strong=\"G2147\"* him|strong=\"G3588\"* on|strong=\"G1096\"* the|strong=\"G2532\"* other|strong=\"G4008\"* side|strong=\"G4008\"* of|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, they|strong=\"G2532\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Rabbi|strong=\"G4461\"*, when|strong=\"G2532\"* did|strong=\"G2532\"* you|strong=\"G3004\"* come|strong=\"G1096\"* here|strong=\"G5602\"*?”" + }, + { + "verseNum": 26, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Most|strong=\"G1537\"\\+w* \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w not|strong=\"G3756\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w signs|strong=\"G4592\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w ate|strong=\"G2068\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* loaves \\+w and|strong=\"G2532\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w filled|strong=\"G5526\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "Don’\\+w t|strong=\"G3588\"\\+w* \\+w work|strong=\"G2038\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w food|strong=\"G1035\"\\+w* \\+w which|strong=\"G3739\"\\+w* perishes, \\+w but|strong=\"G3361\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w food|strong=\"G1035\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w remains|strong=\"G3306\"\\+w* \\+w to|strong=\"G1519\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w sealed|strong=\"G4972\"\\+w* \\+w him|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 28, + "text": "They|strong=\"G3588\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “What|strong=\"G5101\"* must|strong=\"G4160\"* we|strong=\"G2443\"* do|strong=\"G4160\"*, that|strong=\"G2443\"* we|strong=\"G2443\"* may|strong=\"G2443\"* work|strong=\"G2041\"* the|strong=\"G4314\"* works|strong=\"G2041\"* of|strong=\"G2316\"* God|strong=\"G2316\"*?”" + }, + { + "verseNum": 29, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w work|strong=\"G2041\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w sent|strong=\"G2316\"\\+w*.”*" + }, + { + "verseNum": 30, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* to|strong=\"G2443\"* him|strong=\"G3708\"*, “What|strong=\"G5101\"* then|strong=\"G3767\"* do|strong=\"G4160\"* you|strong=\"G4771\"* do|strong=\"G4160\"* for|strong=\"G2532\"* a|strong=\"G2532\"* sign|strong=\"G4592\"*, that|strong=\"G2443\"* we|strong=\"G2532\"* may|strong=\"G2532\"* see|strong=\"G3708\"* and|strong=\"G2532\"* believe|strong=\"G4100\"* you|strong=\"G4771\"*? What|strong=\"G5101\"* work|strong=\"G2038\"* do|strong=\"G4160\"* you|strong=\"G4771\"* do|strong=\"G4160\"*?" + }, + { + "verseNum": 31, + "text": "Our|strong=\"G1722\"* fathers|strong=\"G3962\"* ate|strong=\"G2068\"* the|strong=\"G1722\"* manna|strong=\"G3131\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"*. As|strong=\"G2531\"* it|strong=\"G2531\"* is|strong=\"G1510\"* written|strong=\"G1125\"*, ‘He|strong=\"G3588\"* gave|strong=\"G1325\"* them|strong=\"G3588\"* bread out|strong=\"G1537\"* of|strong=\"G1537\"* heaven|strong=\"G3772\"*+ 6:31 Greek and Hebrew use the same word for “heaven”, “the heavens”, “the sky”, and “the air”.* to|strong=\"G1722\"* eat|strong=\"G2068\"*.’”+ 6:31 Exodus 16:4; Nehemiah 9:15; Psalms 78:24-25*" + }, + { + "verseNum": 32, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Most|strong=\"G1537\"\\+w* \\+w certainly|strong=\"G3756\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w it|strong=\"G3004\"\\+w* wasn’\\+w t|strong=\"G3588\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w the|strong=\"G1537\"\\+w* bread \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w but|strong=\"G3767\"\\+w* \\+w my|strong=\"G1325\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w gives|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w true|strong=\"G3588\"\\+w* bread \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* bread \\+w of|strong=\"G1537\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w comes|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gives|strong=\"G1325\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w*.”*" + }, + { + "verseNum": 34, + "text": "They|strong=\"G3588\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, always|strong=\"G3842\"* give|strong=\"G1325\"* us|strong=\"G1325\"* this|strong=\"G3778\"* bread.”" + }, + { + "verseNum": 35, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* bread \\+w of|strong=\"G2532\"\\+w* \\+w life|strong=\"G2222\"\\+w*. \\+w Whoever|strong=\"G3588\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w hungry|strong=\"G3983\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w whoever|strong=\"G3588\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w never|strong=\"G3756\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w thirsty|strong=\"G1372\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w yet|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’t \\+w believe|strong=\"G4100\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w All|strong=\"G3956\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w gives|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1325\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G3956\"\\+w* \\+w throw|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w*. *" + }, + { + "verseNum": 38, + "text": "\\+w For|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w come|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w from|strong=\"G2597\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w not|strong=\"G3756\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w own|strong=\"G1699\"\\+w* \\+w will|strong=\"G2307\"\\+w*, \\+w but|strong=\"G3588\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w of|strong=\"G2307\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 39, + "text": "\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G1722\"\\+w* Father \\+w who|strong=\"G3739\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w has|strong=\"G3739\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w should|strong=\"G3588\"\\+w* lose \\+w nothing|strong=\"G3361\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w should|strong=\"G3588\"\\+w* raise \\+w him|strong=\"G3588\"\\+w* \\+w up|strong=\"G1325\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w day|strong=\"G2250\"\\+w*. *" + }, + { + "verseNum": 40, + "text": "\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w one|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sees|strong=\"G2334\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w raise|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w day|strong=\"G2250\"\\+w*.”*" + }, + { + "verseNum": 41, + "text": "The|strong=\"G1537\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* murmured|strong=\"G1111\"* concerning|strong=\"G4012\"* him|strong=\"G3588\"*, because|strong=\"G3754\"* he|strong=\"G3754\"* said|strong=\"G3004\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G1537\"\\+w* bread \\+w which|strong=\"G3588\"\\+w* \\+w came|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*.”*" + }, + { + "verseNum": 42, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"*, “Isn’t|strong=\"G3588\"* this|strong=\"G3778\"* Jesus|strong=\"G2424\"*, the|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G1537\"* Joseph|strong=\"G2501\"*, whose|strong=\"G3739\"* father|strong=\"G3962\"* and|strong=\"G2532\"* mother|strong=\"G3384\"* we|strong=\"G2249\"* know|strong=\"G1492\"*? How|strong=\"G4459\"* then|strong=\"G2532\"* does|strong=\"G1492\"* he|strong=\"G2532\"* say|strong=\"G3004\"*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w come|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*’?” *" + }, + { + "verseNum": 43, + "text": "Therefore|strong=\"G2532\"* Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3004\"*, “Don’t \\+w murmur|strong=\"G1111\"\\+w* \\+w among|strong=\"G3326\"\\+w* yourselves. *" + }, + { + "verseNum": 44, + "text": "\\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w unless|strong=\"G1437\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w draws|strong=\"G1670\"\\+w* \\+w him|strong=\"G3588\"\\+w*; \\+w and|strong=\"G2064\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1473\"\\+w* raise \\+w him|strong=\"G3588\"\\+w* \\+w up|strong=\"G3361\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w day|strong=\"G2250\"\\+w*. *" + }, + { + "verseNum": 45, + "text": "\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*, ‘\\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w taught|strong=\"G1318\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*.’ *+ 6:45 Isaiah 54:13* \\+w Therefore|strong=\"G3844\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* hears \\+w from|strong=\"G3844\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w learned|strong=\"G3129\"\\+w*, \\+w comes|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 46, + "text": "\\+w Not|strong=\"G3756\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w he|strong=\"G3754\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w God|strong=\"G2316\"\\+w*. \\+w He|strong=\"G3754\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. *" + }, + { + "verseNum": 47, + "text": "Most \\+w certainly|strong=\"G2192\"\\+w*, \\+w I|strong=\"G3004\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w he|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G4100\"\\+w* \\+w me|strong=\"G3004\"\\+w* \\+w has|strong=\"G2192\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 48, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G3588\"\\+w* bread \\+w of|strong=\"G3588\"\\+w* \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 49, + "text": "\\+w Your|strong=\"G2532\"\\+w* \\+w fathers|strong=\"G3962\"\\+w* \\+w ate|strong=\"G2068\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w manna|strong=\"G3131\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w wilderness|strong=\"G2048\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w died|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 50, + "text": "\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* bread \\+w which|strong=\"G3588\"\\+w* \\+w comes|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* die. *" + }, + { + "verseNum": 51, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w living|strong=\"G2198\"\\+w* bread \\+w which|strong=\"G3739\"\\+w* \\+w came|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w eats|strong=\"G2068\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w this|strong=\"G3588\"\\+w* bread, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w live|strong=\"G2198\"\\+w* \\+w forever|strong=\"G1519\"\\+w*. \\+w Yes|strong=\"G1161\"\\+w*, \\+w the|strong=\"G2532\"\\+w* bread \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1325\"\\+w* \\+w flesh|strong=\"G4561\"\\+w*.”*" + }, + { + "verseNum": 52, + "text": "The|strong=\"G4314\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* contended with|strong=\"G4314\"* one|strong=\"G3588\"* another|strong=\"G3588\"*, saying|strong=\"G3004\"*, “How|strong=\"G4459\"* can|strong=\"G1410\"* this|strong=\"G3778\"* man|strong=\"G3778\"* give|strong=\"G1325\"* us|strong=\"G1325\"* his|strong=\"G1325\"* flesh|strong=\"G4561\"* to|strong=\"G4314\"* eat|strong=\"G2068\"*?”" + }, + { + "verseNum": 53, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Most \\+w certainly|strong=\"G2192\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w unless|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3361\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w his|strong=\"G1438\"\\+w* blood, \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w*. *" + }, + { + "verseNum": 54, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w eats|strong=\"G5176\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drinks|strong=\"G4095\"\\+w* \\+w my|strong=\"G1473\"\\+w* blood \\+w has|strong=\"G2192\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w raise|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w at|strong=\"G2250\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w day|strong=\"G2250\"\\+w*. *" + }, + { + "verseNum": 55, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w food|strong=\"G1035\"\\+w* \\+w indeed|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G1473\"\\+w* blood \\+w is|strong=\"G1510\"\\+w* \\+w drink|strong=\"G4213\"\\+w* \\+w indeed|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 56, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w eats|strong=\"G5176\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drinks|strong=\"G4095\"\\+w* \\+w my|strong=\"G1722\"\\+w* blood \\+w lives|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 57, + "text": "\\+w As|strong=\"G2531\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w living|strong=\"G2198\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w live|strong=\"G2198\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w so|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* feeds \\+w on|strong=\"G2198\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w live|strong=\"G2198\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 58, + "text": "\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* bread \\+w which|strong=\"G3588\"\\+w* \\+w came|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*—\\+w not|strong=\"G3756\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w our|strong=\"G2532\"\\+w* \\+w fathers|strong=\"G3962\"\\+w* \\+w ate|strong=\"G2068\"\\+w* \\+w the|strong=\"G2532\"\\+w* manna \\+w and|strong=\"G2532\"\\+w* \\+w died|strong=\"G3588\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w eats|strong=\"G2068\"\\+w* \\+w this|strong=\"G3778\"\\+w* bread \\+w will|strong=\"G1510\"\\+w* \\+w live|strong=\"G2198\"\\+w* \\+w forever|strong=\"G1519\"\\+w*.”*" + }, + { + "verseNum": 59, + "text": "He|strong=\"G3778\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"* in|strong=\"G1722\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"*, as|strong=\"G1722\"* he|strong=\"G3778\"* taught|strong=\"G1321\"* in|strong=\"G1722\"* Capernaum|strong=\"G2584\"*." + }, + { + "verseNum": 60, + "text": "Therefore|strong=\"G3767\"* many|strong=\"G4183\"* of|strong=\"G1537\"* his|strong=\"G3588\"* disciples|strong=\"G3101\"*, when|strong=\"G3767\"* they|strong=\"G3588\"* heard this|strong=\"G3778\"*, said|strong=\"G3004\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* a|strong=\"G1510\"* hard|strong=\"G4642\"* saying|strong=\"G3004\"*! Who|strong=\"G5101\"* can|strong=\"G1410\"* listen to|strong=\"G3004\"* it|strong=\"G3778\"*?”" + }, + { + "verseNum": 61, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* knowing|strong=\"G1492\"* in|strong=\"G1722\"* himself|strong=\"G1438\"* that|strong=\"G3754\"* his|strong=\"G1438\"* disciples|strong=\"G3101\"* murmured|strong=\"G1111\"* at|strong=\"G1722\"* this|strong=\"G3778\"*, said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Does|strong=\"G1492\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w cause|strong=\"G4624\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*? *" + }, + { + "verseNum": 62, + "text": "\\+w Then|strong=\"G3767\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w would|strong=\"G1437\"\\+w* \\+w see|strong=\"G2334\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* ascending \\+w to|strong=\"G1510\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w before|strong=\"G4386\"\\+w*? *" + }, + { + "verseNum": 63, + "text": "\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w spirit|strong=\"G4151\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w gives|strong=\"G2227\"\\+w* \\+w life|strong=\"G2222\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w profits|strong=\"G5623\"\\+w* \\+w nothing|strong=\"G3762\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w words|strong=\"G4487\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w speak|strong=\"G2980\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w spirit|strong=\"G4151\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 64, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w some|strong=\"G5100\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3739\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w*.”* For|strong=\"G1063\"* Jesus|strong=\"G2424\"* knew|strong=\"G1492\"* from|strong=\"G1537\"* the|strong=\"G2532\"* beginning who|strong=\"G3739\"* they|strong=\"G2532\"* were|strong=\"G1510\"* who|strong=\"G3739\"* didn’t|strong=\"G3588\"* believe|strong=\"G4100\"*, and|strong=\"G2532\"* who|strong=\"G3739\"* it|strong=\"G2532\"* was|strong=\"G1510\"* who|strong=\"G3739\"* would|strong=\"G2532\"* betray|strong=\"G3860\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 65, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w For|strong=\"G3754\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w cause|strong=\"G1223\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w unless|strong=\"G1437\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w my|strong=\"G1325\"\\+w* \\+w Father|strong=\"G3962\"\\+w*.”*" + }, + { + "verseNum": 66, + "text": "At|strong=\"G1519\"* this|strong=\"G3778\"*, many|strong=\"G4183\"* of|strong=\"G1537\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* went|strong=\"G2532\"* back|strong=\"G3694\"* and|strong=\"G2532\"* walked|strong=\"G4043\"* no|strong=\"G3765\"* more|strong=\"G4183\"* with|strong=\"G3326\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 67, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* to|strong=\"G2532\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*, “\\+w You|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w away|strong=\"G5217\"\\+w*, \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*?”*" + }, + { + "verseNum": 68, + "text": "Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* answered him|strong=\"G4314\"*, “Lord|strong=\"G2962\"*, to|strong=\"G4314\"* whom|strong=\"G5101\"* would|strong=\"G5101\"* we|strong=\"G2192\"* go|strong=\"G2192\"*? You|strong=\"G5101\"* have|strong=\"G2192\"* the|strong=\"G4314\"* words|strong=\"G4487\"* of|strong=\"G2962\"* eternal life|strong=\"G2222\"*." + }, + { + "verseNum": 69, + "text": "We|strong=\"G2249\"* have|strong=\"G2532\"* come|strong=\"G1510\"* to|strong=\"G2532\"* believe|strong=\"G4100\"* and|strong=\"G2532\"* know|strong=\"G1097\"* that|strong=\"G3754\"* you|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G2532\"* Christ, the|strong=\"G2532\"* Son of|strong=\"G2316\"* the|strong=\"G2532\"* living God|strong=\"G2316\"*.”" + }, + { + "verseNum": 70, + "text": "Jesus|strong=\"G2424\"* answered them|strong=\"G3588\"*, “Didn’\\+w t|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w choose|strong=\"G1586\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w twelve|strong=\"G1427\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w devil|strong=\"G1228\"\\+w*?”*" + }, + { + "verseNum": 71, + "text": "Now|strong=\"G1161\"* he|strong=\"G1161\"* spoke|strong=\"G3004\"* of|strong=\"G1537\"* Judas|strong=\"G2455\"*, the|strong=\"G1537\"* son of|strong=\"G1537\"* Simon|strong=\"G4613\"* Iscariot|strong=\"G2469\"*, for|strong=\"G1063\"* it|strong=\"G1161\"* was|strong=\"G1510\"* he|strong=\"G1161\"* who|strong=\"G3588\"* would|strong=\"G3195\"* betray|strong=\"G3860\"* him|strong=\"G3588\"*, being|strong=\"G1510\"* one|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G1537\"* twelve|strong=\"G1427\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, Jesus|strong=\"G2424\"* was|strong=\"G3588\"* walking|strong=\"G4043\"* in|strong=\"G1722\"* Galilee|strong=\"G1056\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* wouldn’t|strong=\"G3588\"* walk|strong=\"G4043\"* in|strong=\"G1722\"* Judea|strong=\"G2453\"*, because|strong=\"G3754\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* sought|strong=\"G2212\"* to|strong=\"G2532\"* kill him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"G1161\"* the|strong=\"G1161\"* feast|strong=\"G1859\"* of|strong=\"G3588\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"*, the|strong=\"G1161\"* Feast|strong=\"G1859\"* of|strong=\"G3588\"* Booths|strong=\"G4634\"*, was|strong=\"G1510\"* at|strong=\"G1161\"* hand|strong=\"G1451\"*." + }, + { + "verseNum": 3, + "text": "His|strong=\"G1519\"* brothers therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “Depart|strong=\"G3327\"* from|strong=\"G2532\"* here|strong=\"G1782\"* and|strong=\"G2532\"* go|strong=\"G5217\"* into|strong=\"G1519\"* Judea|strong=\"G2449\"*, that|strong=\"G2443\"* your|strong=\"G2532\"* disciples|strong=\"G3101\"* also|strong=\"G2532\"* may|strong=\"G2532\"* see|strong=\"G2334\"* your|strong=\"G2532\"* works|strong=\"G2041\"* which|strong=\"G3739\"* you|strong=\"G4771\"* do|strong=\"G4160\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* no|strong=\"G3762\"* one|strong=\"G5100\"* does|strong=\"G4160\"* anything|strong=\"G5100\"* in|strong=\"G1722\"* secret|strong=\"G2927\"* while|strong=\"G1722\"* he|strong=\"G2532\"* seeks|strong=\"G2212\"* to|strong=\"G2532\"* be|strong=\"G1510\"* known|strong=\"G5319\"* openly|strong=\"G3954\"*. If|strong=\"G1487\"* you|strong=\"G1487\"* do|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, reveal|strong=\"G5319\"* yourself|strong=\"G4572\"* to|strong=\"G2532\"* the|strong=\"G1722\"* world|strong=\"G2889\"*.”" + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* even|strong=\"G3761\"* his|strong=\"G1519\"* brothers didn’t|strong=\"G3588\"* believe|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 6, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w My|strong=\"G1699\"\\+w* \\+w time|strong=\"G2540\"\\+w* \\+w has|strong=\"G1510\"\\+w* \\+w not|strong=\"G1510\"\\+w* \\+w yet|strong=\"G1161\"\\+w* \\+w come|strong=\"G1510\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w your|strong=\"G5212\"\\+w* \\+w time|strong=\"G2540\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w ready|strong=\"G2092\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w The|strong=\"G1161\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w hate|strong=\"G3404\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w hates|strong=\"G3404\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w testify|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w it|strong=\"G3754\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w its|strong=\"G3754\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w evil|strong=\"G4190\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w go|strong=\"G1519\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w feast|strong=\"G1859\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w yet|strong=\"G3768\"\\+w* \\+w going|strong=\"G3778\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w feast|strong=\"G1859\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w time|strong=\"G2540\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w yet|strong=\"G3768\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "Having said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, he|strong=\"G1161\"* stayed|strong=\"G3306\"* in|strong=\"G1722\"* Galilee|strong=\"G1056\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* his|strong=\"G1519\"* brothers had|strong=\"G2532\"* gone up|strong=\"G1519\"* to|strong=\"G1519\"* the|strong=\"G1722\"* feast|strong=\"G1859\"*, then|strong=\"G2532\"* he|strong=\"G2532\"* also|strong=\"G2532\"* went|strong=\"G2532\"* up|strong=\"G1519\"*, not|strong=\"G3756\"* publicly|strong=\"G5320\"*, but|strong=\"G1161\"* as|strong=\"G5613\"* it|strong=\"G2532\"* were|strong=\"G3588\"* in|strong=\"G1722\"* secret|strong=\"G2927\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"G1722\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* sought|strong=\"G2212\"* him|strong=\"G3588\"* at|strong=\"G1722\"* the|strong=\"G1722\"* feast|strong=\"G1859\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Where|strong=\"G4226\"* is|strong=\"G1510\"* he|strong=\"G2532\"*?”" + }, + { + "verseNum": 12, + "text": "There|strong=\"G2532\"* was|strong=\"G1510\"* much|strong=\"G4183\"* murmuring|strong=\"G1112\"* among|strong=\"G1722\"* the|strong=\"G1722\"* multitudes|strong=\"G3793\"* concerning|strong=\"G4012\"* him|strong=\"G3588\"*. Some|strong=\"G3588\"* said|strong=\"G3004\"*, “He|strong=\"G2532\"* is|strong=\"G1510\"* a|strong=\"G2532\"* good|strong=\"G3756\"* man|strong=\"G3756\"*.” Others|strong=\"G3588\"* said|strong=\"G3004\"*, “Not|strong=\"G3756\"* so|strong=\"G2532\"*, but|strong=\"G1161\"* he|strong=\"G2532\"* leads|strong=\"G4105\"* the|strong=\"G1722\"* multitude|strong=\"G3793\"* astray|strong=\"G4105\"*.”" + }, + { + "verseNum": 13, + "text": "Yet|strong=\"G3305\"* no|strong=\"G3762\"* one|strong=\"G3762\"* spoke|strong=\"G2980\"* openly|strong=\"G3954\"* of|strong=\"G4012\"* him|strong=\"G3588\"* for|strong=\"G1223\"* fear|strong=\"G5401\"* of|strong=\"G4012\"* the|strong=\"G1223\"* Jews|strong=\"G2453\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* it|strong=\"G2532\"* was|strong=\"G3588\"* now|strong=\"G1161\"* the|strong=\"G2532\"* middle of|strong=\"G2532\"* the|strong=\"G2532\"* feast|strong=\"G1859\"*, Jesus|strong=\"G2424\"* went|strong=\"G2424\"* up|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G2411\"* and|strong=\"G2532\"* taught|strong=\"G1321\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"G3588\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* marveled|strong=\"G2296\"*, saying|strong=\"G3004\"*, “How|strong=\"G4459\"* does|strong=\"G1492\"* this|strong=\"G3778\"* man|strong=\"G3778\"* know|strong=\"G1492\"* letters|strong=\"G1121\"*, having|strong=\"G1492\"* never|strong=\"G3361\"* been|strong=\"G3361\"* educated|strong=\"G3129\"*?”" + }, + { + "verseNum": 16, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w My|strong=\"G1699\"\\+w* \\+w teaching|strong=\"G1322\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w mine|strong=\"G1699\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w desires|strong=\"G2309\"\\+w* \\+w to|strong=\"G2309\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w his|strong=\"G4012\"\\+w* \\+w will|strong=\"G2307\"\\+w*, \\+w he|strong=\"G3588\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w teaching|strong=\"G1322\"\\+w*, \\+w whether|strong=\"G1437\"\\+w* \\+w it|strong=\"G1437\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w speaking|strong=\"G2980\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w myself|strong=\"G1683\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w speaks|strong=\"G2980\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w seeks|strong=\"G2212\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w glory|strong=\"G1391\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w seeks|strong=\"G2212\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w true|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* unrighteousness \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "Didn’\\+w t|strong=\"G3588\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w law|strong=\"G3551\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w yet|strong=\"G2532\"\\+w* \\+w none|strong=\"G3762\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w keeps|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w law|strong=\"G3551\"\\+w*? \\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w to|strong=\"G2532\"\\+w* kill \\+w me|strong=\"G1325\"\\+w*?”*" + }, + { + "verseNum": 20, + "text": "The|strong=\"G3588\"* multitude|strong=\"G3793\"* answered, “You|strong=\"G4771\"* have|strong=\"G2192\"* a|strong=\"G2192\"* demon|strong=\"G1140\"*! Who|strong=\"G5101\"* seeks|strong=\"G2212\"* to|strong=\"G2212\"* kill you|strong=\"G4771\"*?”" + }, + { + "verseNum": 21, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G4160\"*, “\\+w I|strong=\"G2532\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w work|strong=\"G2041\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w marvel|strong=\"G2296\"\\+w* \\+w because|strong=\"G2532\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w Moses|strong=\"G3475\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w circumcision|strong=\"G4061\"\\+w* (\\+w not|strong=\"G3756\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Moses|strong=\"G3475\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w fathers|strong=\"G3962\"\\+w*), \\+w and|strong=\"G2532\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w circumcise|strong=\"G4059\"\\+w* \\+w a|strong=\"G2532\"\\+w* boy. *" + }, + { + "verseNum": 23, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w a|strong=\"G1722\"\\+w* boy \\+w receives|strong=\"G2983\"\\+w* \\+w circumcision|strong=\"G4061\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w law|strong=\"G3551\"\\+w* \\+w of|strong=\"G3551\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w broken|strong=\"G3089\"\\+w*, \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w angry|strong=\"G5520\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w man|strong=\"G3361\"\\+w* \\+w completely|strong=\"G3650\"\\+w* \\+w healthy|strong=\"G5199\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w*? *" + }, + { + "verseNum": 24, + "text": "Don’\\+w t|strong=\"G3588\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w according|strong=\"G2596\"\\+w* \\+w to|strong=\"G2596\"\\+w* \\+w appearance|strong=\"G3799\"\\+w*, \\+w but|strong=\"G3361\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*.” *" + }, + { + "verseNum": 25, + "text": "Therefore|strong=\"G3767\"* some|strong=\"G5100\"* of|strong=\"G1537\"* them|strong=\"G3588\"* of|strong=\"G1537\"* Jerusalem|strong=\"G2415\"* said|strong=\"G3004\"*, “Isn’t|strong=\"G3588\"* this|strong=\"G3778\"* he|strong=\"G3739\"* whom|strong=\"G3739\"* they|strong=\"G3588\"* seek|strong=\"G2212\"* to|strong=\"G3004\"* kill?" + }, + { + "verseNum": 26, + "text": "Behold|strong=\"G2396\"*, he|strong=\"G2532\"* speaks|strong=\"G2980\"* openly|strong=\"G3954\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* say|strong=\"G3004\"* nothing|strong=\"G3762\"* to|strong=\"G2532\"* him|strong=\"G3588\"*. Can|strong=\"G3004\"* it|strong=\"G2532\"* be|strong=\"G1510\"* that|strong=\"G3754\"* the|strong=\"G2532\"* rulers indeed|strong=\"G2532\"* know|strong=\"G1097\"* that|strong=\"G3754\"* this|strong=\"G3778\"* is|strong=\"G1510\"* truly the|strong=\"G2532\"* Christ|strong=\"G5547\"*?" + }, + { + "verseNum": 27, + "text": "However|strong=\"G1161\"*, we|strong=\"G1161\"* know|strong=\"G1492\"* where|strong=\"G4159\"* this|strong=\"G3778\"* man|strong=\"G3778\"* comes|strong=\"G2064\"* from|strong=\"G2064\"*, but|strong=\"G1161\"* when|strong=\"G3752\"* the|strong=\"G1161\"* Christ|strong=\"G5547\"* comes|strong=\"G2064\"*, no|strong=\"G3762\"* one|strong=\"G3762\"* will|strong=\"G1510\"* know|strong=\"G1492\"* where|strong=\"G4159\"* he|strong=\"G1161\"* comes|strong=\"G2064\"* from|strong=\"G2064\"*.”" + }, + { + "verseNum": 28, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, teaching|strong=\"G1321\"* and|strong=\"G2532\"* saying|strong=\"G3004\"*, “\\+w You|strong=\"G5210\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w where|strong=\"G4159\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w from|strong=\"G2064\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w myself|strong=\"G1683\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w true|strong=\"G3588\"\\+w*, \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* him, \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w from|strong=\"G3844\"\\+w* him, \\+w and|strong=\"G2548\"\\+w* \\+w he|strong=\"G3754\"\\+w* \\+w sent|strong=\"G3844\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 30, + "text": "They|strong=\"G2532\"* sought|strong=\"G2212\"* therefore|strong=\"G3767\"* to|strong=\"G2532\"* take|strong=\"G4084\"* him|strong=\"G3588\"*; but|strong=\"G2532\"* no|strong=\"G3762\"* one|strong=\"G3762\"* laid|strong=\"G1911\"* a|strong=\"G2532\"* hand|strong=\"G5495\"* on|strong=\"G1909\"* him|strong=\"G3588\"*, because|strong=\"G3754\"* his|strong=\"G1909\"* hour|strong=\"G5610\"* had|strong=\"G2532\"* not|strong=\"G3762\"* yet|strong=\"G2532\"* come|strong=\"G2064\"*." + }, + { + "verseNum": 31, + "text": "But|strong=\"G1161\"* of|strong=\"G1537\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*, many|strong=\"G4183\"* believed|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"*. They|strong=\"G2532\"* said|strong=\"G3004\"*, “When|strong=\"G3752\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"* comes|strong=\"G2064\"*, he|strong=\"G2532\"* won’t|strong=\"G3588\"* do|strong=\"G4160\"* more|strong=\"G4119\"* signs|strong=\"G4592\"* than|strong=\"G4183\"* those|strong=\"G3588\"* which|strong=\"G3739\"* this|strong=\"G3778\"* man|strong=\"G3778\"* has|strong=\"G3739\"* done|strong=\"G4160\"*, will|strong=\"G2532\"* he|strong=\"G2532\"*?”" + }, + { + "verseNum": 32, + "text": "The|strong=\"G2532\"* Pharisees|strong=\"G5330\"* heard the|strong=\"G2532\"* multitude|strong=\"G3793\"* murmuring|strong=\"G1111\"* these|strong=\"G3778\"* things|strong=\"G3778\"* concerning|strong=\"G4012\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* sent|strong=\"G2532\"* officers|strong=\"G5257\"* to|strong=\"G2443\"* arrest|strong=\"G4084\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "Then|strong=\"G3767\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w little|strong=\"G3397\"\\+w* \\+w while|strong=\"G5550\"\\+w* \\+w longer|strong=\"G2089\"\\+w*, \\+w then|strong=\"G3767\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* won’t \\+w find|strong=\"G2147\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w can|strong=\"G1410\"\\+w*’t \\+w come|strong=\"G2064\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*.”*" + }, + { + "verseNum": 35, + "text": "The|strong=\"G2532\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* among|strong=\"G1519\"* themselves|strong=\"G1438\"*, “Where|strong=\"G4226\"* will|strong=\"G3195\"* this|strong=\"G3778\"* man|strong=\"G3778\"* go|strong=\"G4198\"* that|strong=\"G3754\"* we|strong=\"G3754\"* won’t|strong=\"G3588\"* find|strong=\"G2147\"* him|strong=\"G3588\"*? Will|strong=\"G3195\"* he|strong=\"G2532\"* go|strong=\"G4198\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Dispersion|strong=\"G1290\"* among|strong=\"G1519\"* the|strong=\"G2532\"* Greeks|strong=\"G1672\"* and|strong=\"G2532\"* teach|strong=\"G1321\"* the|strong=\"G2532\"* Greeks|strong=\"G1672\"*?" + }, + { + "verseNum": 36, + "text": "What|strong=\"G5101\"* is|strong=\"G1510\"* this|strong=\"G3778\"* word|strong=\"G3056\"* that|strong=\"G3739\"* he|strong=\"G2532\"* said|strong=\"G3004\"*, ‘\\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* won’\\+w t|strong=\"G3588\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w me|strong=\"G1473\"\\+w*;’* and|strong=\"G2532\"* ‘\\+w Where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w*’*?”" + }, + { + "verseNum": 37, + "text": "Now|strong=\"G1161\"* on|strong=\"G1722\"* the|strong=\"G1722\"* last|strong=\"G2078\"* and|strong=\"G2532\"* greatest|strong=\"G3173\"* day|strong=\"G2250\"* of|strong=\"G2250\"* the|strong=\"G1722\"* feast|strong=\"G1859\"*, Jesus|strong=\"G2424\"* stood|strong=\"G2476\"* and|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"*, “\\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w thirsty|strong=\"G1372\"\\+w*, \\+w let|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4095\"\\+w*! *" + }, + { + "verseNum": 38, + "text": "\\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w as|strong=\"G2531\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w Scripture|strong=\"G1124\"\\+w* \\+w has|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w*, \\+w from|strong=\"G1537\"\\+w* \\+w within|strong=\"G2836\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w flow|strong=\"G4482\"\\+w* \\+w rivers|strong=\"G4215\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w living|strong=\"G2198\"\\+w* \\+w water|strong=\"G5204\"\\+w*.”*" + }, + { + "verseNum": 39, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* said|strong=\"G3004\"* this|strong=\"G3778\"* about|strong=\"G4012\"* the|strong=\"G1519\"* Spirit|strong=\"G4151\"*, which|strong=\"G3739\"* those|strong=\"G3588\"* believing|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"* were|strong=\"G1510\"* to|strong=\"G1519\"* receive|strong=\"G2983\"*. For|strong=\"G1063\"* the|strong=\"G1519\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* was|strong=\"G1510\"* not|strong=\"G1510\"* yet|strong=\"G1161\"* given, because|strong=\"G3754\"* Jesus|strong=\"G2424\"* wasn’t|strong=\"G3588\"* yet|strong=\"G1161\"* glorified|strong=\"G1392\"*." + }, + { + "verseNum": 40, + "text": "Many|strong=\"G3793\"* of|strong=\"G1537\"* the|strong=\"G1537\"* multitude|strong=\"G3793\"* therefore|strong=\"G3767\"*, when|strong=\"G3767\"* they|strong=\"G3588\"* heard these|strong=\"G3778\"* words|strong=\"G3056\"*, said|strong=\"G3004\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* truly the|strong=\"G1537\"* prophet|strong=\"G4396\"*.”" + }, + { + "verseNum": 41, + "text": "Others|strong=\"G3588\"* said|strong=\"G3004\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G1537\"* Christ|strong=\"G5547\"*.” But|strong=\"G1161\"* some|strong=\"G3588\"* said|strong=\"G3004\"*, “What|strong=\"G3588\"*, does|strong=\"G1510\"* the|strong=\"G1537\"* Christ|strong=\"G5547\"* come|strong=\"G2064\"* out|strong=\"G1537\"* of|strong=\"G1537\"* Galilee|strong=\"G1056\"*?" + }, + { + "verseNum": 42, + "text": "Hasn’t|strong=\"G3588\"* the|strong=\"G2532\"* Scripture|strong=\"G1124\"* said|strong=\"G3004\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"* comes|strong=\"G2064\"* of|strong=\"G1537\"* the|strong=\"G2532\"* offspring+ 7:42 or, seed* of|strong=\"G1537\"* David|strong=\"G1138\"*,+ 7:42 2 Samuel 7:12* and|strong=\"G2532\"* from|strong=\"G1537\"* Bethlehem,+ 7:42 Micah 5:2* the|strong=\"G2532\"* village|strong=\"G2968\"* where|strong=\"G3699\"* David|strong=\"G1138\"* was|strong=\"G1510\"*?”" + }, + { + "verseNum": 43, + "text": "So|strong=\"G3767\"* a|strong=\"G1096\"* division|strong=\"G4978\"* arose|strong=\"G1096\"* in|strong=\"G1722\"* the|strong=\"G1722\"* multitude|strong=\"G3793\"* because|strong=\"G1223\"* of|strong=\"G1223\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 44, + "text": "Some|strong=\"G5100\"* of|strong=\"G1537\"* them|strong=\"G3588\"* would|strong=\"G2309\"* have|strong=\"G2309\"* arrested him|strong=\"G3588\"*, but|strong=\"G1161\"* no|strong=\"G3762\"* one|strong=\"G5100\"* laid|strong=\"G1911\"* hands|strong=\"G5495\"* on|strong=\"G1909\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 45, + "text": "The|strong=\"G2532\"* officers|strong=\"G5257\"* therefore|strong=\"G3767\"* came|strong=\"G2064\"* to|strong=\"G4314\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* Pharisees|strong=\"G5330\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “Why|strong=\"G5101\"* didn’t|strong=\"G3588\"* you|strong=\"G3004\"* bring|strong=\"G2532\"* him|strong=\"G3588\"*?”" + }, + { + "verseNum": 46, + "text": "The|strong=\"G3588\"* officers|strong=\"G5257\"* answered, “No|strong=\"G3588\"* man|strong=\"G3778\"* ever|strong=\"G3763\"* spoke|strong=\"G2980\"* like|strong=\"G5613\"* this|strong=\"G3778\"* man|strong=\"G3778\"*!”" + }, + { + "verseNum": 47, + "text": "The|strong=\"G2532\"* Pharisees|strong=\"G5330\"* therefore|strong=\"G3767\"* answered them|strong=\"G3588\"*, “You|strong=\"G5210\"* aren’t|strong=\"G3588\"* also|strong=\"G2532\"* led|strong=\"G3767\"* astray|strong=\"G4105\"*, are|strong=\"G3588\"* you|strong=\"G5210\"*?" + }, + { + "verseNum": 48, + "text": "Have|strong=\"G5100\"* any|strong=\"G5100\"* of|strong=\"G1537\"* the|strong=\"G1519\"* rulers or|strong=\"G2228\"* any|strong=\"G5100\"* of|strong=\"G1537\"* the|strong=\"G1519\"* Pharisees|strong=\"G5330\"* believed|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"*?" + }, + { + "verseNum": 49, + "text": "But|strong=\"G3361\"* this|strong=\"G3778\"* multitude|strong=\"G3793\"* that|strong=\"G3588\"* doesn’t|strong=\"G3588\"* know|strong=\"G1097\"* the|strong=\"G3588\"* law|strong=\"G3551\"* is|strong=\"G1510\"* cursed|strong=\"G1944\"*.”" + }, + { + "verseNum": 50, + "text": "Nicodemus|strong=\"G3530\"* (he|strong=\"G3004\"* who|strong=\"G1520\"* came|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G1438\"* by|strong=\"G1537\"* night, being|strong=\"G1510\"* one|strong=\"G1520\"* of|strong=\"G1537\"* them|strong=\"G1438\"*) said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G1438\"*," + }, + { + "verseNum": 51, + "text": "“Does|strong=\"G4160\"* our|strong=\"G2532\"* law|strong=\"G3551\"* judge|strong=\"G2919\"* a|strong=\"G2532\"* man|strong=\"G3361\"* unless|strong=\"G1437\"* it|strong=\"G2532\"* first|strong=\"G4413\"* hears from|strong=\"G3844\"* him|strong=\"G3588\"* personally and|strong=\"G2532\"* knows|strong=\"G1097\"* what|strong=\"G5101\"* he|strong=\"G2532\"* does|strong=\"G4160\"*?”" + }, + { + "verseNum": 52, + "text": "They|strong=\"G2532\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Are|strong=\"G1510\"* you|strong=\"G4771\"* also|strong=\"G2532\"* from|strong=\"G1537\"* Galilee|strong=\"G1056\"*? Search|strong=\"G2045\"* and|strong=\"G2532\"* see|strong=\"G3708\"* that|strong=\"G3754\"* no|strong=\"G3756\"* prophet|strong=\"G4396\"* has|strong=\"G3708\"* arisen|strong=\"G1453\"* out|strong=\"G1537\"* of|strong=\"G1537\"* Galilee|strong=\"G1056\"*.”+ 7:52 See Isaiah 9:1; Matthew 4:13-16*" + }, + { + "verseNum": 53, + "text": "Everyone|strong=\"G1538\"* went|strong=\"G4198\"* to|strong=\"G1519\"* his|strong=\"G1519\"* own house|strong=\"G3624\"*," + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "but|strong=\"G1161\"* Jesus|strong=\"G2424\"* went|strong=\"G4198\"* to|strong=\"G1519\"* the|strong=\"G1519\"* Mount|strong=\"G3735\"* of|strong=\"G2424\"* Olives|strong=\"G1636\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"G1161\"* very|strong=\"G2532\"* early|strong=\"G3722\"* in|strong=\"G1519\"* the|strong=\"G2532\"* morning|strong=\"G3722\"*, he|strong=\"G2532\"* came|strong=\"G2064\"* again|strong=\"G3825\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G2411\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"* came|strong=\"G2064\"* to|strong=\"G1519\"* him|strong=\"G3588\"*. He|strong=\"G2532\"* sat|strong=\"G2523\"* down|strong=\"G2523\"* and|strong=\"G2532\"* taught|strong=\"G1321\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"G1722\"* scribes|strong=\"G1122\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Pharisees|strong=\"G5330\"* brought|strong=\"G1161\"* a|strong=\"G2532\"* woman|strong=\"G1135\"* taken|strong=\"G2638\"* in|strong=\"G1722\"* adultery|strong=\"G3430\"*. Having|strong=\"G2532\"* set|strong=\"G2476\"* her|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"*," + }, + { + "verseNum": 4, + "text": "they|strong=\"G3588\"* told|strong=\"G3004\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, we|strong=\"G3778\"* found|strong=\"G2638\"* this|strong=\"G3778\"* woman|strong=\"G1135\"* in|strong=\"G3004\"* adultery|strong=\"G3431\"*, in|strong=\"G3004\"* the|strong=\"G3588\"* very|strong=\"G3778\"* act|strong=\"G1888\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* our|strong=\"G1722\"* law|strong=\"G3551\"*, Moses|strong=\"G3475\"* commanded|strong=\"G1781\"* us|strong=\"G3004\"* to|strong=\"G3004\"* stone|strong=\"G3036\"* such|strong=\"G5108\"* women|strong=\"G5108\"*.+ 8:5 Leviticus 20:10; Deuteronomy 22:22* What|strong=\"G5101\"* then|strong=\"G3767\"* do|strong=\"G5101\"* you|strong=\"G4771\"* say|strong=\"G3004\"* about|strong=\"G1722\"* her|strong=\"G3588\"*?”" + }, + { + "verseNum": 6, + "text": "They|strong=\"G1161\"* said|strong=\"G3004\"* this|strong=\"G3778\"* testing|strong=\"G3985\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* they|strong=\"G1161\"* might|strong=\"G3778\"* have|strong=\"G2192\"* something to|strong=\"G1519\"* accuse|strong=\"G2723\"* him|strong=\"G3588\"* of|strong=\"G1093\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G1161\"* continued|strong=\"G1961\"* asking|strong=\"G2065\"* him|strong=\"G3588\"*, he|strong=\"G1161\"* looked up|strong=\"G1909\"* and|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w He|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w without|strong=\"G5613\"\\+w* sin \\+w among|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w let|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w* throw \\+w the|strong=\"G1161\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w stone|strong=\"G3037\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w her|strong=\"G3588\"\\+w*.” *" + }, + { + "verseNum": 8, + "text": "Again|strong=\"G3825\"* he|strong=\"G2532\"* stooped|strong=\"G2955\"* down|strong=\"G2736\"* and|strong=\"G2532\"* wrote|strong=\"G1125\"* on|strong=\"G1519\"* the|strong=\"G2532\"* ground|strong=\"G1093\"* with|strong=\"G2532\"* his|strong=\"G1519\"* finger." + }, + { + "verseNum": 9, + "text": "They|strong=\"G2532\"*, when|strong=\"G1161\"* they|strong=\"G2532\"* heard it|strong=\"G2532\"*, being|strong=\"G2532\"* convicted|strong=\"G1651\"* by|strong=\"G1722\"* their|strong=\"G2532\"* conscience|strong=\"G4893\"*, went|strong=\"G1831\"* out|strong=\"G1831\"* one|strong=\"G1520\"* by|strong=\"G1722\"* one|strong=\"G1520\"*, beginning from|strong=\"G2532\"* the|strong=\"G1722\"* oldest, even|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G1722\"* last|strong=\"G2078\"*. Jesus|strong=\"G2424\"* was|strong=\"G3588\"* left|strong=\"G2641\"* alone|strong=\"G3441\"* with|strong=\"G1722\"* the|strong=\"G1722\"* woman|strong=\"G1135\"* where|strong=\"G1722\"* she|strong=\"G2532\"* was|strong=\"G3588\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"*." + }, + { + "verseNum": 10, + "text": "Jesus|strong=\"G2424\"*, standing up|strong=\"G2532\"*, saw|strong=\"G2300\"* her|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Woman|strong=\"G1135\"\\+w*, \\+w where|strong=\"G4226\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w accusers|strong=\"G2725\"\\+w*? \\+w Did|strong=\"G2532\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w condemn|strong=\"G2632\"\\+w* \\+w you|strong=\"G4771\"\\+w*?”*" + }, + { + "verseNum": 11, + "text": "She|strong=\"G2532\"* said|strong=\"G3004\"*, “No|strong=\"G3762\"* one|strong=\"G3762\"*, Lord|strong=\"G2962\"*.”" + }, + { + "verseNum": 12, + "text": "Again|strong=\"G3825\"*, therefore|strong=\"G3767\"*, Jesus|strong=\"G2424\"* spoke|strong=\"G2980\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w of|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w*.*+ 8:12 Isaiah 60:1* \\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w follows|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w walk|strong=\"G4043\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w darkness|strong=\"G4653\"\\+w*, \\+w but|strong=\"G3361\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w of|strong=\"G1722\"\\+w* \\+w life|strong=\"G2222\"\\+w*.”*" + }, + { + "verseNum": 13, + "text": "The|strong=\"G3588\"* Pharisees|strong=\"G5330\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “You|strong=\"G4771\"* testify|strong=\"G3140\"* about|strong=\"G4012\"* yourself|strong=\"G4572\"*. Your|strong=\"G3588\"* testimony|strong=\"G3141\"* is|strong=\"G1510\"* not|strong=\"G3756\"* valid.”" + }, + { + "verseNum": 14, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Even|strong=\"G2532\"\\+w* \\+w if|strong=\"G2579\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w testify|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w myself|strong=\"G1683\"\\+w*, \\+w my|strong=\"G1473\"\\+w* \\+w testimony|strong=\"G3141\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w true|strong=\"G3588\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w where|strong=\"G4226\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w from|strong=\"G2064\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w where|strong=\"G4226\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w going|strong=\"G5217\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w where|strong=\"G4226\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w from|strong=\"G2064\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w where|strong=\"G4226\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w going|strong=\"G5217\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w according|strong=\"G2596\"\\+w* \\+w to|strong=\"G2596\"\\+w* \\+w the|strong=\"G2596\"\\+w* \\+w flesh|strong=\"G4561\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w one|strong=\"G3762\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w Even|strong=\"G2532\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G2919\"\\+w* \\+w judge|strong=\"G2919\"\\+w*, \\+w my|strong=\"G1699\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w true|strong=\"G3588\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w alone|strong=\"G3441\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w It|strong=\"G2532\"\\+w*’s \\+w also|strong=\"G2532\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G5212\"\\+w* \\+w law|strong=\"G3551\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w testimony|strong=\"G3141\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w people|strong=\"G1510\"\\+w* \\+w is|strong=\"G1510\"\\+w* valid.*+ 8:17 Deuteronomy 17:6; 19:15*" + }, + { + "verseNum": 18, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w testifies|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w myself|strong=\"G1683\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w testifies|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 19, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Where|strong=\"G4226\"* is|strong=\"G1510\"* your|strong=\"G2532\"* Father|strong=\"G3962\"*?”" + }, + { + "verseNum": 20, + "text": "Jesus|strong=\"G2532\"* spoke|strong=\"G2980\"* these|strong=\"G3778\"* words|strong=\"G4487\"* in|strong=\"G1722\"* the|strong=\"G1722\"* treasury|strong=\"G1049\"*, as|strong=\"G1722\"* he|strong=\"G2532\"* taught|strong=\"G1321\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*. Yet|strong=\"G2532\"* no|strong=\"G3762\"* one|strong=\"G3762\"* arrested him|strong=\"G3588\"*, because|strong=\"G3754\"* his|strong=\"G1722\"* hour|strong=\"G5610\"* had|strong=\"G2532\"* not|strong=\"G3762\"* yet|strong=\"G2532\"* come|strong=\"G2064\"*." + }, + { + "verseNum": 21, + "text": "Jesus|strong=\"G3004\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* again|strong=\"G3825\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w going|strong=\"G5217\"\\+w* \\+w away|strong=\"G5217\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* die \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* sins. \\+w Where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w go|strong=\"G5217\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w*.” *" + }, + { + "verseNum": 22, + "text": "The|strong=\"G3588\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"*, “Will|strong=\"G1473\"* he|strong=\"G3754\"* kill himself|strong=\"G1438\"*, because|strong=\"G3754\"* he|strong=\"G3754\"* says|strong=\"G3004\"*, ‘\\+w Where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w going|strong=\"G5217\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w*’*?”" + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w beneath|strong=\"G2736\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w from|strong=\"G1537\"\\+w* above. \\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w world|strong=\"G2889\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w world|strong=\"G2889\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* die \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G1437\"\\+w* sins; \\+w for|strong=\"G1063\"\\+w* \\+w unless|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w**+ 8:24 or, I AM* \\+w he|strong=\"G3754\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* die \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G1437\"\\+w* sins.” *" + }, + { + "verseNum": 25, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Who|strong=\"G3739\"* are|strong=\"G1510\"* you|strong=\"G5210\"*?”" + }, + { + "verseNum": 26, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w speak|strong=\"G2980\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w concerning|strong=\"G4012\"\\+w* \\+w you|strong=\"G5210\"\\+w*. However, \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w true|strong=\"G3588\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* heard \\+w from|strong=\"G3844\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w these|strong=\"G3778\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w say|strong=\"G2980\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w*.”*" + }, + { + "verseNum": 27, + "text": "They|strong=\"G3588\"* didn’t|strong=\"G3588\"* understand|strong=\"G1097\"* that|strong=\"G3754\"* he|strong=\"G3754\"* spoke|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"* about|strong=\"G3754\"* the|strong=\"G3588\"* Father|strong=\"G3962\"*." + }, + { + "verseNum": 28, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w When|strong=\"G3752\"\\+w* \\+w you|strong=\"G3752\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w lifted|strong=\"G5312\"\\+w* \\+w up|strong=\"G5312\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w*, \\+w then|strong=\"G3767\"\\+w* \\+w you|strong=\"G3752\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w nothing|strong=\"G3762\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w myself|strong=\"G1683\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w taught|strong=\"G1321\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w The|strong=\"G2532\"\\+w* Father hasn’\\+w t|strong=\"G3588\"\\+w* left \\+w me|strong=\"G1473\"\\+w* \\+w alone|strong=\"G3441\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w are|strong=\"G1510\"\\+w* pleasing \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 30, + "text": "As|strong=\"G1519\"* he|strong=\"G3778\"* spoke|strong=\"G2980\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, many|strong=\"G4183\"* believed|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G1519\"*." + }, + { + "verseNum": 31, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G4314\"* those|strong=\"G3588\"* Jews|strong=\"G2453\"* who|strong=\"G3588\"* had|strong=\"G2424\"* believed|strong=\"G4100\"* him|strong=\"G3588\"*, “\\+w If|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w then|strong=\"G3767\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w truly|strong=\"G1722\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w disciples|strong=\"G3101\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w the|strong=\"G2532\"\\+w* truth, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* truth \\+w will|strong=\"G2532\"\\+w* \\+w make|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w free|strong=\"G1659\"\\+w*.” *+ 8:32 Psalms 119:45*" + }, + { + "verseNum": 33, + "text": "They|strong=\"G2532\"* answered|strong=\"G3004\"* him|strong=\"G2532\"*, “We|strong=\"G3754\"* are|strong=\"G1510\"* Abraham’s offspring, and|strong=\"G2532\"* have|strong=\"G2532\"* never|strong=\"G3762\"* been|strong=\"G1510\"* in|strong=\"G2532\"* bondage|strong=\"G1398\"* to|strong=\"G4314\"* anyone|strong=\"G3762\"*. How|strong=\"G4459\"* do|strong=\"G1096\"* you|strong=\"G4771\"* say|strong=\"G3004\"*, ‘\\+w You|strong=\"G4771\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w made|strong=\"G1096\"\\+w* \\+w free|strong=\"G1658\"\\+w*’*?”" + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “Most certainly \\+w I|strong=\"G3754\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w commits|strong=\"G4160\"\\+w* sin \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G3956\"\\+w* bondservant \\+w of|strong=\"G1401\"\\+w* sin. *" + }, + { + "verseNum": 35, + "text": "\\+w A|strong=\"G1519\"\\+w* bondservant doesn’\\+w t|strong=\"G3588\"\\+w* live \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w forever|strong=\"G1519\"\\+w*. \\+w A|strong=\"G1519\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w remains|strong=\"G3306\"\\+w* \\+w forever|strong=\"G1519\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w makes|strong=\"G1659\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w free|strong=\"G1658\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w free|strong=\"G1658\"\\+w* \\+w indeed|strong=\"G3689\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* Abraham’s offspring, \\+w yet|strong=\"G5210\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w to|strong=\"G2212\"\\+w* kill \\+w me|strong=\"G1473\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w word|strong=\"G3056\"\\+w* finds \\+w no|strong=\"G3756\"\\+w* \\+w place|strong=\"G5562\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 38, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w say|strong=\"G2980\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w Father|strong=\"G3962\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w*.”*" + }, + { + "verseNum": 39, + "text": "They|strong=\"G2532\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Our|strong=\"G2424\"* father|strong=\"G3962\"* is|strong=\"G1510\"* Abraham.”" + }, + { + "verseNum": 40, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w to|strong=\"G2212\"\\+w* kill \\+w me|strong=\"G1473\"\\+w*, \\+w a|strong=\"G4160\"\\+w* \\+w man|strong=\"G3778\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w told|strong=\"G2980\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w the|strong=\"G1161\"\\+w* truth \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* heard \\+w from|strong=\"G3844\"\\+w* \\+w God|strong=\"G2316\"\\+w*. Abraham didn’\\+w t|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w this|strong=\"G3778\"\\+w*. *" + }, + { + "verseNum": 41, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w father|strong=\"G3962\"\\+w*.”*" + }, + { + "verseNum": 42, + "text": "Therefore|strong=\"G2532\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w would|strong=\"G2316\"\\+w* love \\+w me|strong=\"G1473\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w God|strong=\"G2316\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* haven’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w myself|strong=\"G1683\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2316\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 43, + "text": "\\+w Why|strong=\"G5101\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w understand|strong=\"G1097\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w speech|strong=\"G3056\"\\+w*? \\+w Because|strong=\"G3754\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w hear|strong=\"G5101\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w word|strong=\"G3056\"\\+w*. *" + }, + { + "verseNum": 44, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w devil|strong=\"G1228\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w desires|strong=\"G1939\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* murderer \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* beginning, \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w stand|strong=\"G2476\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* truth, \\+w because|strong=\"G3754\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w no|strong=\"G3756\"\\+w* truth \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w*. \\+w When|strong=\"G3752\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w speaks|strong=\"G2980\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w lie|strong=\"G5579\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w speaks|strong=\"G2980\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w own|strong=\"G2398\"\\+w*; \\+w for|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w liar|strong=\"G5583\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w of|strong=\"G1537\"\\+w* lies. *" + }, + { + "verseNum": 45, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w the|strong=\"G1161\"\\+w* truth, \\+w you|strong=\"G3754\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 46, + "text": "\\+w Which|strong=\"G5101\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w convicts|strong=\"G1651\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w of|strong=\"G1537\"\\+w* sin? \\+w If|strong=\"G1487\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w the|strong=\"G1537\"\\+w* truth, \\+w why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w me|strong=\"G1473\"\\+w*? *" + }, + { + "verseNum": 47, + "text": "\\+w He|strong=\"G3754\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w God|strong=\"G2316\"\\+w* hears \\+w the|strong=\"G1537\"\\+w* \\+w words|strong=\"G4487\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w God|strong=\"G2316\"\\+w*. \\+w For|strong=\"G3754\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w cause|strong=\"G1223\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* hear, \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w God|strong=\"G2316\"\\+w*.”*" + }, + { + "verseNum": 48, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Don’t|strong=\"G3588\"* we|strong=\"G2249\"* say|strong=\"G3004\"* well|strong=\"G2573\"* that|strong=\"G3754\"* you|strong=\"G4771\"* are|strong=\"G1510\"* a|strong=\"G2192\"* Samaritan|strong=\"G4541\"*, and|strong=\"G2532\"* have|strong=\"G2192\"* a|strong=\"G2192\"* demon|strong=\"G1140\"*?”" + }, + { + "verseNum": 49, + "text": "Jesus|strong=\"G2424\"* answered, “\\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w demon|strong=\"G1140\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w honor|strong=\"G5091\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* dishonor \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 50, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w my|strong=\"G2212\"\\+w* own \\+w glory|strong=\"G1391\"\\+w*. \\+w There|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w seeks|strong=\"G2212\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w judges|strong=\"G2919\"\\+w*. *" + }, + { + "verseNum": 51, + "text": "Most \\+w certainly|strong=\"G3756\"\\+w*, \\+w I|strong=\"G1437\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w if|strong=\"G1437\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w person|strong=\"G5100\"\\+w* \\+w keeps|strong=\"G5083\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w he|strong=\"G3588\"\\+w* \\+w will|strong=\"G5100\"\\+w* \\+w never|strong=\"G3756\"\\+w* \\+w see|strong=\"G2334\"\\+w* \\+w death|strong=\"G2288\"\\+w*.”*" + }, + { + "verseNum": 52, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “Now|strong=\"G3568\"* we|strong=\"G1437\"* know|strong=\"G1097\"* that|strong=\"G3754\"* you|strong=\"G4771\"* have|strong=\"G2192\"* a|strong=\"G2192\"* demon|strong=\"G1140\"*. Abraham died|strong=\"G2288\"*, as|strong=\"G1519\"* did|strong=\"G2532\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"*; and|strong=\"G2532\"* you|strong=\"G4771\"* say|strong=\"G3004\"*, ‘\\+w If|strong=\"G1437\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w keeps|strong=\"G5083\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w never|strong=\"G3756\"\\+w* \\+w taste|strong=\"G1089\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w death|strong=\"G2288\"\\+w*.’*" + }, + { + "verseNum": 53, + "text": "Are|strong=\"G1510\"* you|strong=\"G4771\"* greater|strong=\"G3173\"* than|strong=\"G3173\"* our|strong=\"G2532\"* father|strong=\"G3962\"* Abraham, who|strong=\"G5101\"* died|strong=\"G3588\"*? The|strong=\"G2532\"* prophets|strong=\"G4396\"* died|strong=\"G3588\"*. Who|strong=\"G5101\"* do|strong=\"G4160\"* you|strong=\"G4771\"* make|strong=\"G4160\"* yourself|strong=\"G4572\"* out|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G1510\"*?”" + }, + { + "verseNum": 54, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “\\+w If|strong=\"G1437\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w glorify|strong=\"G1392\"\\+w* \\+w myself|strong=\"G1683\"\\+w*, \\+w my|strong=\"G1473\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w nothing|strong=\"G3762\"\\+w*. \\+w It|strong=\"G3754\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w glorifies|strong=\"G1392\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w of|strong=\"G2316\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w our|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 55, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w him|strong=\"G3588\"\\+w*. \\+w If|strong=\"G2579\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w him|strong=\"G3588\"\\+w*,’ \\+w I|strong=\"G1473\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w a|strong=\"G2532\"\\+w* \\+w liar|strong=\"G5583\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w keep|strong=\"G5083\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w*. *" + }, + { + "verseNum": 56, + "text": "\\+w Your|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w* Abraham \\+w rejoiced|strong=\"G5463\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w day|strong=\"G2250\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w saw|strong=\"G1492\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w glad|strong=\"G5463\"\\+w*.”*" + }, + { + "verseNum": 57, + "text": "The|strong=\"G2532\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “You|strong=\"G3004\"* are|strong=\"G3588\"* not|strong=\"G3768\"* yet|strong=\"G2532\"* fifty|strong=\"G4004\"* years|strong=\"G2094\"* old|strong=\"G2094\"*! Have|strong=\"G2192\"* you|strong=\"G3004\"* seen|strong=\"G3708\"* Abraham?”" + }, + { + "verseNum": 58, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3004\"*, “Most certainly, \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w before|strong=\"G4250\"\\+w* Abraham \\+w came|strong=\"G1096\"\\+w* \\+w into|strong=\"G1096\"\\+w* existence, \\+w I|strong=\"G1473\"\\+w* \\+w AM|strong=\"G1510\"\\+w*.*+ 8:58 Exodus 3:14*”*" + }, + { + "verseNum": 59, + "text": "Therefore|strong=\"G3767\"* they|strong=\"G2532\"* took|strong=\"G2532\"* up|strong=\"G2532\"* stones|strong=\"G3037\"* to|strong=\"G2443\"* throw at|strong=\"G1909\"* him|strong=\"G3588\"*, but|strong=\"G1161\"* Jesus|strong=\"G2424\"* hid|strong=\"G2928\"* himself|strong=\"G2928\"* and|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* temple|strong=\"G2413\"*, having|strong=\"G2532\"* gone|strong=\"G1831\"* through|strong=\"G1537\"* the|strong=\"G2532\"* middle of|strong=\"G1537\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* so|strong=\"G2443\"* passed|strong=\"G2424\"* by|strong=\"G1537\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "As|strong=\"G2532\"* he|strong=\"G2532\"* passed|strong=\"G3855\"* by|strong=\"G1537\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G2532\"* man|strong=\"G5185\"* blind|strong=\"G5185\"* from|strong=\"G1537\"* birth|strong=\"G1079\"*." + }, + { + "verseNum": 2, + "text": "His|strong=\"G2532\"* disciples|strong=\"G3101\"* asked|strong=\"G2065\"* him|strong=\"G3588\"*, “Rabbi|strong=\"G4461\"*, who|strong=\"G5101\"* sinned, this|strong=\"G3778\"* man|strong=\"G3778\"* or|strong=\"G2228\"* his|strong=\"G2532\"* parents|strong=\"G1118\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* was|strong=\"G3588\"* born|strong=\"G1080\"* blind|strong=\"G5185\"*?”" + }, + { + "verseNum": 3, + "text": "Jesus|strong=\"G2424\"* answered, “\\+w This|strong=\"G3778\"\\+w* \\+w man|strong=\"G3778\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* sin, \\+w nor|strong=\"G3777\"\\+w* \\+w did|strong=\"G2316\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w parents|strong=\"G1118\"\\+w*, \\+w but|strong=\"G2316\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w might|strong=\"G2316\"\\+w* \\+w be|strong=\"G2316\"\\+w* \\+w revealed|strong=\"G5319\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w work|strong=\"G2041\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w while|strong=\"G2193\"\\+w* \\+w it|strong=\"G1510\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w day|strong=\"G2250\"\\+w*. \\+w The|strong=\"G3588\"\\+w* \\+w night|strong=\"G3571\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w coming|strong=\"G2064\"\\+w*, \\+w when|strong=\"G3753\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w work|strong=\"G2041\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w While|strong=\"G1722\"\\+w* \\+w I|strong=\"G3752\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w I|strong=\"G3752\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w of|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w*.”*" + }, + { + "verseNum": 6, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* spat|strong=\"G4429\"* on|strong=\"G1909\"* the|strong=\"G2532\"* ground|strong=\"G5476\"*, made|strong=\"G4160\"* mud|strong=\"G4081\"* with|strong=\"G1537\"* the|strong=\"G2532\"* saliva, anointed|strong=\"G2025\"* the|strong=\"G2532\"* blind man|strong=\"G3778\"*’s eyes|strong=\"G3788\"* with|strong=\"G1537\"* the|strong=\"G2532\"* mud|strong=\"G4081\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “\\+w Go|strong=\"G5217\"\\+w*, \\+w wash|strong=\"G3538\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w pool|strong=\"G2861\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Siloam|strong=\"G4611\"\\+w*”* (which|strong=\"G3739\"* means|strong=\"G3004\"* “Sent|strong=\"G2532\"*”). So|strong=\"G3767\"* he|strong=\"G2532\"* went|strong=\"G2064\"* away|strong=\"G5217\"*, washed|strong=\"G3538\"*, and|strong=\"G2532\"* came|strong=\"G2064\"* back|strong=\"G1519\"* seeing." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G3767\"* the|strong=\"G2532\"* neighbors|strong=\"G1069\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* saw|strong=\"G2334\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* blind before|strong=\"G4386\"* said|strong=\"G3004\"*, “Isn’t|strong=\"G3588\"* this|strong=\"G3778\"* he|strong=\"G2532\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* and|strong=\"G2532\"* begged|strong=\"G4319\"*?”" + }, + { + "verseNum": 9, + "text": "Others|strong=\"G3754\"* were|strong=\"G1510\"* saying|strong=\"G3004\"*, “It|strong=\"G3754\"* is|strong=\"G1510\"* he|strong=\"G3754\"*.” Still others|strong=\"G3754\"* were|strong=\"G1510\"* saying|strong=\"G3004\"*, “He|strong=\"G3754\"* looks like|strong=\"G3664\"* him|strong=\"G1565\"*.”" + }, + { + "verseNum": 10, + "text": "They|strong=\"G3588\"* therefore|strong=\"G3767\"* were|strong=\"G3588\"* asking|strong=\"G3004\"* him|strong=\"G3588\"*, “How|strong=\"G4459\"* were|strong=\"G3588\"* your|strong=\"G3588\"* eyes|strong=\"G3788\"* opened|strong=\"G4459\"*?”" + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"*, “A|strong=\"G2532\"* man|strong=\"G1519\"* called|strong=\"G3004\"* Jesus|strong=\"G2424\"* made|strong=\"G4160\"* mud|strong=\"G4081\"*, anointed|strong=\"G2025\"* my|strong=\"G1473\"* eyes|strong=\"G3788\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* me|strong=\"G1473\"*, ‘\\+w Go|strong=\"G5217\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* pool \\+w of|strong=\"G2532\"\\+w* \\+w Siloam|strong=\"G4611\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w wash|strong=\"G3538\"\\+w*.’* So|strong=\"G3767\"* I|strong=\"G1473\"* went|strong=\"G2424\"* away|strong=\"G5217\"* and|strong=\"G2532\"* washed|strong=\"G3538\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* received|strong=\"G3788\"* sight|strong=\"G3788\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"G2532\"* they|strong=\"G2532\"* asked|strong=\"G3004\"* him|strong=\"G1565\"*, “Where|strong=\"G4226\"* is|strong=\"G1510\"* he|strong=\"G2532\"*?”" + }, + { + "verseNum": 13, + "text": "They|strong=\"G3588\"* brought him|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G3588\"* been blind|strong=\"G5185\"* to|strong=\"G4314\"* the|strong=\"G4314\"* Pharisees|strong=\"G5330\"*." + }, + { + "verseNum": 14, + "text": "It|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* Sabbath|strong=\"G4521\"* when|strong=\"G1161\"* Jesus|strong=\"G2424\"* made|strong=\"G4160\"* the|strong=\"G1722\"* mud|strong=\"G4081\"* and|strong=\"G2532\"* opened his|strong=\"G1722\"* eyes|strong=\"G3788\"*." + }, + { + "verseNum": 15, + "text": "Again|strong=\"G3825\"* therefore|strong=\"G3767\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* also|strong=\"G2532\"* asked|strong=\"G2065\"* him|strong=\"G3588\"* how|strong=\"G4459\"* he|strong=\"G2532\"* received|strong=\"G3788\"* his|strong=\"G2007\"* sight|strong=\"G3788\"*. He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “He|strong=\"G2532\"* put|strong=\"G2007\"* mud|strong=\"G4081\"* on|strong=\"G1909\"* my|strong=\"G1473\"* eyes|strong=\"G3788\"*, I|strong=\"G1473\"* washed|strong=\"G3538\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* see.”" + }, + { + "verseNum": 16, + "text": "Some|strong=\"G5100\"* therefore|strong=\"G3767\"* of|strong=\"G1537\"* the|strong=\"G1722\"* Pharisees|strong=\"G5330\"* said|strong=\"G3004\"*, “This|strong=\"G3778\"* man|strong=\"G5100\"* is|strong=\"G1510\"* not|strong=\"G3756\"* from|strong=\"G1537\"* God|strong=\"G2316\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* doesn’t|strong=\"G3588\"* keep|strong=\"G5083\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"*.”" + }, + { + "verseNum": 17, + "text": "Therefore|strong=\"G3767\"* they|strong=\"G1161\"* asked|strong=\"G3004\"* the|strong=\"G1161\"* blind|strong=\"G5185\"* man|strong=\"G5185\"* again|strong=\"G3825\"*, “What|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G4771\"* say|strong=\"G3004\"* about|strong=\"G4012\"* him|strong=\"G3588\"*, because|strong=\"G3754\"* he|strong=\"G1161\"* opened your|strong=\"G3588\"* eyes|strong=\"G3788\"*?”" + }, + { + "verseNum": 18, + "text": "The|strong=\"G2532\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* didn’t|strong=\"G3588\"* believe|strong=\"G4100\"* concerning|strong=\"G4012\"* him|strong=\"G3588\"*, that|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G1510\"* blind|strong=\"G5185\"* and|strong=\"G2532\"* had|strong=\"G2532\"* received his|strong=\"G4012\"* sight|strong=\"G3588\"*, until|strong=\"G2193\"* they|strong=\"G2532\"* called|strong=\"G5455\"* the|strong=\"G2532\"* parents|strong=\"G1118\"* of|strong=\"G4012\"* him|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2532\"* received his|strong=\"G4012\"* sight|strong=\"G3588\"*," + }, + { + "verseNum": 19, + "text": "and|strong=\"G2532\"* asked|strong=\"G2065\"* them|strong=\"G3588\"*, “Is|strong=\"G1510\"* this|strong=\"G3778\"* your|strong=\"G2532\"* son|strong=\"G5207\"*, whom|strong=\"G3739\"* you|strong=\"G5210\"* say|strong=\"G3004\"* was|strong=\"G1510\"* born|strong=\"G1080\"* blind|strong=\"G5185\"*? How|strong=\"G4459\"* then|strong=\"G3767\"* does|strong=\"G1510\"* he|strong=\"G2532\"* now|strong=\"G2532\"* see?”" + }, + { + "verseNum": 20, + "text": "His|strong=\"G2532\"* parents|strong=\"G1118\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “We|strong=\"G2249\"* know|strong=\"G1492\"* that|strong=\"G3754\"* this|strong=\"G3778\"* is|strong=\"G1510\"* our|strong=\"G2532\"* son|strong=\"G5207\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* born|strong=\"G1080\"* blind|strong=\"G5185\"*;" + }, + { + "verseNum": 21, + "text": "but|strong=\"G1161\"* how|strong=\"G4459\"* he|strong=\"G1161\"* now|strong=\"G1161\"* sees|strong=\"G1492\"*, we|strong=\"G2249\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"*; or|strong=\"G2228\"* who|strong=\"G5101\"* opened|strong=\"G4459\"* his|strong=\"G1438\"* eyes|strong=\"G3788\"*, we|strong=\"G2249\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"*. He|strong=\"G1161\"* is|strong=\"G3588\"* of|strong=\"G4012\"* age|strong=\"G2244\"*. Ask|strong=\"G2065\"* him|strong=\"G3588\"*. He|strong=\"G1161\"* will|strong=\"G5101\"* speak|strong=\"G2980\"* for|strong=\"G4012\"* himself|strong=\"G1438\"*.”" + }, + { + "verseNum": 22, + "text": "His|strong=\"G3754\"* parents|strong=\"G1118\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"* because|strong=\"G3754\"* they|strong=\"G3588\"* feared|strong=\"G5399\"* the|strong=\"G3588\"* Jews|strong=\"G2453\"*; for|strong=\"G1063\"* the|strong=\"G3588\"* Jews|strong=\"G2453\"* had|strong=\"G3588\"* already|strong=\"G2235\"* agreed|strong=\"G4934\"* that|strong=\"G3754\"* if|strong=\"G1437\"* any|strong=\"G5100\"* man|strong=\"G5100\"* would|strong=\"G1096\"* confess|strong=\"G3670\"* him|strong=\"G3588\"* as|strong=\"G1096\"* Christ|strong=\"G5547\"*, he|strong=\"G3754\"* would|strong=\"G1096\"* be|strong=\"G1096\"* put|strong=\"G1096\"* out|strong=\"G1096\"* of|strong=\"G5100\"* the|strong=\"G3588\"* synagogue." + }, + { + "verseNum": 23, + "text": "Therefore|strong=\"G1223\"* his|strong=\"G1223\"* parents|strong=\"G1118\"* said|strong=\"G3004\"*, “He|strong=\"G3754\"* is|strong=\"G3588\"* of|strong=\"G1223\"* age|strong=\"G2244\"*. Ask|strong=\"G1905\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 24, + "text": "So|strong=\"G3767\"* they|strong=\"G2532\"* called|strong=\"G3004\"* the|strong=\"G2532\"* man|strong=\"G3778\"* who|strong=\"G3739\"* was|strong=\"G1510\"* blind|strong=\"G5185\"* a|strong=\"G2532\"* second|strong=\"G1208\"* time|strong=\"G1208\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Give|strong=\"G1325\"* glory|strong=\"G1391\"* to|strong=\"G2532\"* God|strong=\"G2316\"*. We|strong=\"G2249\"* know|strong=\"G1492\"* that|strong=\"G3754\"* this|strong=\"G3778\"* man|strong=\"G3778\"* is|strong=\"G1510\"* a|strong=\"G2532\"* sinner.”" + }, + { + "verseNum": 25, + "text": "He|strong=\"G3754\"* therefore|strong=\"G3767\"* answered, “I|strong=\"G3754\"* don’t know|strong=\"G1492\"* if|strong=\"G1487\"* he|strong=\"G3754\"* is|strong=\"G1510\"* a|strong=\"G1510\"* sinner. One|strong=\"G1520\"* thing|strong=\"G1520\"* I|strong=\"G3754\"* do|strong=\"G1492\"* know|strong=\"G1492\"*: that|strong=\"G3754\"* though|strong=\"G1487\"* I|strong=\"G3754\"* was|strong=\"G1510\"* blind|strong=\"G5185\"*, now|strong=\"G3767\"* I|strong=\"G3754\"* see|strong=\"G1492\"*.”" + }, + { + "verseNum": 26, + "text": "They|strong=\"G3588\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"* again, “What|strong=\"G5101\"* did|strong=\"G4160\"* he|strong=\"G3588\"* do|strong=\"G4160\"* to|strong=\"G3004\"* you|strong=\"G4771\"*? How|strong=\"G4459\"* did|strong=\"G4160\"* he|strong=\"G3588\"* open your|strong=\"G4160\"* eyes|strong=\"G3788\"*?”" + }, + { + "verseNum": 27, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3004\"*, “I|strong=\"G2532\"* told|strong=\"G3004\"* you|strong=\"G5210\"* already|strong=\"G2235\"*, and|strong=\"G2532\"* you|strong=\"G5210\"* didn’t listen. Why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G5210\"* want|strong=\"G2309\"* to|strong=\"G2532\"* hear|strong=\"G5101\"* it|strong=\"G2532\"* again|strong=\"G3825\"*? You|strong=\"G5210\"* don’t also|strong=\"G2532\"* want|strong=\"G2309\"* to|strong=\"G2532\"* become|strong=\"G1096\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"*, do|strong=\"G5101\"* you|strong=\"G5210\"*?”" + }, + { + "verseNum": 28, + "text": "They|strong=\"G2532\"* insulted him|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “You|strong=\"G4771\"* are|strong=\"G1510\"* his|strong=\"G2532\"* disciple|strong=\"G3101\"*, but|strong=\"G1161\"* we|strong=\"G2249\"* are|strong=\"G1510\"* disciples|strong=\"G3101\"* of|strong=\"G2532\"* Moses|strong=\"G3475\"*." + }, + { + "verseNum": 29, + "text": "We|strong=\"G2249\"* know|strong=\"G1492\"* that|strong=\"G3754\"* God|strong=\"G2316\"* has|strong=\"G2316\"* spoken|strong=\"G2980\"* to|strong=\"G3756\"* Moses|strong=\"G3475\"*. But|strong=\"G1161\"* as|strong=\"G1161\"* for|strong=\"G3754\"* this|strong=\"G3778\"* man|strong=\"G3778\"*, we|strong=\"G2249\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* where|strong=\"G4159\"* he|strong=\"G1161\"* comes|strong=\"G1510\"* from|strong=\"G3756\"*.”" + }, + { + "verseNum": 30, + "text": "The|strong=\"G1722\"* man|strong=\"G3778\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “How|strong=\"G3754\"* amazing|strong=\"G2298\"*! You|strong=\"G5210\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* where|strong=\"G4159\"* he|strong=\"G2532\"* comes|strong=\"G1510\"* from|strong=\"G2532\"*, yet|strong=\"G2532\"* he|strong=\"G2532\"* opened my|strong=\"G1722\"* eyes|strong=\"G3788\"*." + }, + { + "verseNum": 31, + "text": "We|strong=\"G1437\"* know|strong=\"G1492\"* that|strong=\"G3754\"* God|strong=\"G2316\"* doesn’t|strong=\"G3588\"* listen|strong=\"G1492\"* to|strong=\"G2532\"* sinners, but|strong=\"G2532\"* if|strong=\"G1437\"* anyone|strong=\"G5100\"* is|strong=\"G1510\"* a|strong=\"G2532\"* worshiper of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* does|strong=\"G4160\"* his|strong=\"G4160\"* will|strong=\"G2307\"*, he|strong=\"G2532\"* listens to|strong=\"G2532\"* him|strong=\"G3588\"*.+ 9:31 Psalms 66:18; Proverbs 15:29; 28:9*" + }, + { + "verseNum": 32, + "text": "Since|strong=\"G3754\"* the|strong=\"G1537\"* world began it|strong=\"G3754\"* has|strong=\"G5100\"* never|strong=\"G3756\"* been|strong=\"G3756\"* heard of|strong=\"G1537\"* that|strong=\"G3754\"* anyone|strong=\"G5100\"* opened the|strong=\"G1537\"* eyes|strong=\"G3788\"* of|strong=\"G1537\"* someone|strong=\"G5100\"* born|strong=\"G1080\"* blind|strong=\"G5185\"*." + }, + { + "verseNum": 33, + "text": "If|strong=\"G1487\"* this|strong=\"G3778\"* man|strong=\"G3778\"* were|strong=\"G1510\"* not|strong=\"G3756\"* from|strong=\"G3844\"* God|strong=\"G2316\"*, he|strong=\"G3778\"* could|strong=\"G1410\"* do|strong=\"G4160\"* nothing|strong=\"G3762\"*.”" + }, + { + "verseNum": 34, + "text": "They|strong=\"G2532\"* answered|strong=\"G3004\"* him|strong=\"G2532\"*, “You|strong=\"G4771\"* were|strong=\"G2532\"* altogether|strong=\"G3650\"* born|strong=\"G1080\"* in|strong=\"G1722\"* sins, and|strong=\"G2532\"* do|strong=\"G2532\"* you|strong=\"G4771\"* teach|strong=\"G1321\"* us|strong=\"G3004\"*?” Then|strong=\"G2532\"* they|strong=\"G2532\"* threw|strong=\"G1544\"* him|strong=\"G2532\"* out|strong=\"G1544\"*." + }, + { + "verseNum": 35, + "text": "Jesus|strong=\"G2424\"* heard that|strong=\"G3754\"* they|strong=\"G2532\"* had|strong=\"G2424\"* thrown|strong=\"G1544\"* him|strong=\"G3588\"* out|strong=\"G1544\"*, and|strong=\"G2532\"* finding|strong=\"G2147\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Do|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w God|strong=\"G3004\"\\+w*?”*" + }, + { + "verseNum": 36, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"*, “Who|strong=\"G5101\"* is|strong=\"G1510\"* he|strong=\"G2532\"*, Lord|strong=\"G2962\"*, that|strong=\"G2443\"* I|strong=\"G2532\"* may|strong=\"G2532\"* believe|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G1565\"*?”" + }, + { + "verseNum": 37, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w You|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w speaks|strong=\"G2980\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G4771\"\\+w*.”*" + }, + { + "verseNum": 38, + "text": "He|strong=\"G2532\"* said|strong=\"G5346\"*, “Lord|strong=\"G2962\"*, I|strong=\"G2532\"* believe|strong=\"G4100\"*!” and|strong=\"G2532\"* he|strong=\"G2532\"* worshiped|strong=\"G4352\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 39, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w judgment|strong=\"G2917\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* see \\+w may|strong=\"G2532\"\\+w* see; \\+w and|strong=\"G2532\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* see \\+w may|strong=\"G2532\"\\+w* \\+w become|strong=\"G1096\"\\+w* \\+w blind|strong=\"G5185\"\\+w*.”*" + }, + { + "verseNum": 40, + "text": "Those|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* who|strong=\"G3588\"* were|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G3588\"* heard these|strong=\"G3326\"* things|strong=\"G3588\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Are|strong=\"G1510\"* we|strong=\"G2249\"* also|strong=\"G2532\"* blind|strong=\"G5185\"*?”" + }, + { + "verseNum": 41, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w blind|strong=\"G5185\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w would|strong=\"G1510\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* sin; \\+w but|strong=\"G1161\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w We|strong=\"G3754\"\\+w* see.’ \\+w Therefore|strong=\"G1161\"\\+w* \\+w your|strong=\"G2192\"\\+w* sin \\+w remains|strong=\"G3306\"\\+w*.*" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "“Most \\+w certainly|strong=\"G2532\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w door|strong=\"G2374\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* fold, \\+w but|strong=\"G2532\"\\+w* climbs \\+w up|strong=\"G1519\"\\+w* \\+w some|strong=\"G3588\"\\+w* \\+w other|strong=\"G3361\"\\+w* \\+w way|strong=\"G1223\"\\+w*, \\+w is|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w thief|strong=\"G2812\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w robber|strong=\"G3027\"\\+w*. *" + }, + { + "verseNum": 2, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w enters|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w door|strong=\"G2374\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w shepherd|strong=\"G4166\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w The|strong=\"G2532\"\\+w* gatekeeper opens \\+w the|strong=\"G2532\"\\+w* gate \\+w for|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* listen \\+w to|strong=\"G2532\"\\+w* \\+w his|strong=\"G2398\"\\+w* \\+w voice|strong=\"G5456\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w calls|strong=\"G5455\"\\+w* \\+w his|strong=\"G2398\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w by|strong=\"G2596\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w leads|strong=\"G1806\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w out|strong=\"G1806\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w Whenever|strong=\"G3752\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w brings|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w goes|strong=\"G4198\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w them|strong=\"G3588\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w follow|strong=\"G4198\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w voice|strong=\"G5456\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w They|strong=\"G1161\"\\+w* \\+w will|strong=\"G3748\"\\+w* \\+w by|strong=\"G3361\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w means|strong=\"G3361\"\\+w* \\+w follow|strong=\"G1161\"\\+w* \\+w a|strong=\"G1161\"\\+w* stranger, \\+w but|strong=\"G1161\"\\+w* \\+w will|strong=\"G3748\"\\+w* \\+w flee|strong=\"G5343\"\\+w* \\+w from|strong=\"G5456\"\\+w* \\+w him|strong=\"G3588\"\\+w*; \\+w for|strong=\"G3754\"\\+w* \\+w they|strong=\"G1161\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w voice|strong=\"G5456\"\\+w* \\+w of|strong=\"G5456\"\\+w* strangers.”*" + }, + { + "verseNum": 6, + "text": "Jesus|strong=\"G2424\"* spoke|strong=\"G2980\"* this|strong=\"G3778\"* parable|strong=\"G3942\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, but|strong=\"G1161\"* they|strong=\"G1161\"* didn’t|strong=\"G3588\"* understand|strong=\"G1097\"* what|strong=\"G5101\"* he|strong=\"G1161\"* was|strong=\"G1510\"* telling|strong=\"G3004\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 7, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"* again|strong=\"G3825\"*, “Most certainly, \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*’s \\+w door|strong=\"G2374\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w All|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w thieves|strong=\"G2812\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w robbers|strong=\"G3027\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* listen \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w door|strong=\"G2374\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w enters|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w saved|strong=\"G4982\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w pasture|strong=\"G3542\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w thief|strong=\"G2812\"\\+w* \\+w only|strong=\"G1487\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w steal|strong=\"G2813\"\\+w*, \\+w kill|strong=\"G2380\"\\+w*, \\+w and|strong=\"G2532\"\\+w* destroy. \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w life|strong=\"G2222\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w abundantly|strong=\"G4053\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "“\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w shepherd|strong=\"G4166\"\\+w*.*+ 10:11 Isaiah 40:11; Ezekiel 34:11-12,15,22* \\+w The|strong=\"G3588\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w shepherd|strong=\"G4166\"\\+w* \\+w lays|strong=\"G5087\"\\+w* \\+w down|strong=\"G5087\"\\+w* \\+w his|strong=\"G5087\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w for|strong=\"G5228\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w hired|strong=\"G3411\"\\+w* \\+w hand|strong=\"G3411\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w shepherd|strong=\"G4166\"\\+w*, \\+w who|strong=\"G3739\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*, \\+w sees|strong=\"G2334\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wolf|strong=\"G3074\"\\+w* \\+w coming|strong=\"G2064\"\\+w*, leaves \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w flees|strong=\"G5343\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w wolf|strong=\"G3074\"\\+w* snatches \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w scatters|strong=\"G4650\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w hired|strong=\"G3411\"\\+w* \\+w hand|strong=\"G3411\"\\+w* flees \\+w because|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w hired|strong=\"G3411\"\\+w* \\+w hand|strong=\"G3411\"\\+w* \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w care|strong=\"G3199\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w shepherd|strong=\"G4166\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w own|strong=\"G1699\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w*’m \\+w known|strong=\"G1097\"\\+w* \\+w by|strong=\"G2532\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w own|strong=\"G1699\"\\+w*; *" + }, + { + "verseNum": 15, + "text": "\\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w knows|strong=\"G1097\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w lay|strong=\"G5087\"\\+w* \\+w down|strong=\"G5087\"\\+w* \\+w my|strong=\"G5087\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w for|strong=\"G5228\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w other|strong=\"G1520\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w fold|strong=\"G4167\"\\+w*.*+ 10:16 Isaiah 56:8 * \\+w I|strong=\"G1473\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w bring|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w hear|strong=\"G5456\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w voice|strong=\"G5456\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w become|strong=\"G1096\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w flock|strong=\"G4167\"\\+w* \\+w with|strong=\"G1537\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w shepherd|strong=\"G4166\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w Therefore|strong=\"G1223\"\\+w* \\+w the|strong=\"G1223\"\\+w* \\+w Father|strong=\"G3962\"\\+w* loves \\+w me|strong=\"G1473\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w lay|strong=\"G5087\"\\+w* \\+w down|strong=\"G5087\"\\+w* \\+w my|strong=\"G5087\"\\+w* \\+w life|strong=\"G5590\"\\+w*, *+ 10:17 Isaiah 53:7-8* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w take|strong=\"G2983\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w again|strong=\"G3825\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w takes|strong=\"G2983\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w away|strong=\"G5087\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w lay|strong=\"G5087\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w down|strong=\"G5087\"\\+w* \\+w by|strong=\"G3844\"\\+w* \\+w myself|strong=\"G1683\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w power|strong=\"G1849\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w lay|strong=\"G5087\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w down|strong=\"G5087\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w power|strong=\"G1849\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w take|strong=\"G2983\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w again|strong=\"G3825\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w commandment|strong=\"G1785\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w my|strong=\"G5087\"\\+w* \\+w Father|strong=\"G3962\"\\+w*.”*" + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"G1223\"* a|strong=\"G1096\"* division|strong=\"G4978\"* arose|strong=\"G1096\"* again|strong=\"G3825\"* among|strong=\"G1722\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* because|strong=\"G1223\"* of|strong=\"G3056\"* these|strong=\"G3778\"* words|strong=\"G3056\"*." + }, + { + "verseNum": 20, + "text": "Many|strong=\"G4183\"* of|strong=\"G1537\"* them|strong=\"G3004\"* said|strong=\"G3004\"*, “He|strong=\"G2532\"* has|strong=\"G2192\"* a|strong=\"G2192\"* demon|strong=\"G1140\"* and|strong=\"G2532\"* is|strong=\"G5101\"* insane|strong=\"G3105\"*! Why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G3004\"* listen to|strong=\"G2532\"* him|strong=\"G2532\"*?”" + }, + { + "verseNum": 21, + "text": "Others|strong=\"G3588\"* said|strong=\"G3004\"*, “These|strong=\"G3778\"* are|strong=\"G1510\"* not|strong=\"G3756\"* the|strong=\"G3588\"* sayings|strong=\"G4487\"* of|strong=\"G4487\"* one|strong=\"G3588\"* possessed by|strong=\"G3004\"* a|strong=\"G1510\"* demon|strong=\"G1140\"*. It|strong=\"G3778\"* isn’t|strong=\"G3588\"* possible|strong=\"G1410\"* for|strong=\"G3756\"* a|strong=\"G1510\"* demon|strong=\"G1140\"* to|strong=\"G3004\"* open the|strong=\"G3588\"* eyes|strong=\"G3788\"* of|strong=\"G4487\"* the|strong=\"G3588\"* blind|strong=\"G5185\"*, is|strong=\"G1510\"* it|strong=\"G3778\"*?”+ 10:21 Exodus 4:11*" + }, + { + "verseNum": 22, + "text": "It|strong=\"G1161\"* was|strong=\"G1510\"* the|strong=\"G1722\"* Feast|strong=\"G1456\"* of|strong=\"G1722\"* the|strong=\"G1722\"* Dedication|strong=\"G1456\"*+ 10:22 The “Feast of the Dedication” is the Greek name for “Hanukkah”, a celebration of the rededication of the Temple.* at|strong=\"G1722\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 23, + "text": "It|strong=\"G2532\"* was|strong=\"G3588\"* winter, and|strong=\"G2532\"* Jesus|strong=\"G2424\"* was|strong=\"G3588\"* walking|strong=\"G4043\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, in|strong=\"G1722\"* Solomon|strong=\"G4672\"*’s porch|strong=\"G4745\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"G2532\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* came|strong=\"G2532\"* around|strong=\"G2944\"* him|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “How|strong=\"G2193\"* long|strong=\"G2193\"* will|strong=\"G1510\"* you|strong=\"G4771\"* hold|strong=\"G2249\"* us|strong=\"G3004\"* in|strong=\"G2532\"* suspense|strong=\"G5590\"*? If|strong=\"G1487\"* you|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*, tell|strong=\"G3004\"* us|strong=\"G3004\"* plainly|strong=\"G3954\"*.”" + }, + { + "verseNum": 25, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w*. \\+w The|strong=\"G1722\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s \\+w name|strong=\"G3686\"\\+w*, \\+w these|strong=\"G3778\"\\+w* \\+w testify|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w But|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*, \\+w as|strong=\"G3754\"\\+w* \\+w I|strong=\"G3754\"\\+w* told \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w My|strong=\"G1699\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w hear|strong=\"G5456\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w voice|strong=\"G5456\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* follow \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w give|strong=\"G1325\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w never|strong=\"G3756\"\\+w* perish, \\+w and|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w one|strong=\"G5100\"\\+w* \\+w will|strong=\"G2532\"\\+w* snatch \\+w them|strong=\"G3588\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G1325\"\\+w* \\+w hand|strong=\"G5495\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w My|strong=\"G3956\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w all|strong=\"G3956\"\\+w*. \\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w to|strong=\"G2532\"\\+w* snatch \\+w them|strong=\"G3588\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s \\+w hand|strong=\"G5495\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w one|strong=\"G1520\"\\+w*.”*" + }, + { + "verseNum": 31, + "text": "Therefore|strong=\"G3767\"* the|strong=\"G3588\"* Jews|strong=\"G2453\"* took|strong=\"G2453\"* up stones|strong=\"G3037\"* again|strong=\"G3825\"* to|strong=\"G2443\"* stone|strong=\"G3037\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 32, + "text": "Jesus|strong=\"G2424\"* answered them|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w shown|strong=\"G1166\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. \\+w For|strong=\"G1223\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w do|strong=\"G2041\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w stone|strong=\"G3034\"\\+w* \\+w me|strong=\"G1473\"\\+w*?”*" + }, + { + "verseNum": 33, + "text": "The|strong=\"G2532\"* Jews|strong=\"G2453\"* answered him|strong=\"G3588\"*, “We|strong=\"G3754\"* don’t|strong=\"G3588\"* stone|strong=\"G3034\"* you|strong=\"G4771\"* for|strong=\"G3754\"* a|strong=\"G2532\"* good|strong=\"G2570\"* work|strong=\"G2041\"*, but|strong=\"G2532\"* for|strong=\"G3754\"* blasphemy, because|strong=\"G3754\"* you|strong=\"G4771\"*, being|strong=\"G1510\"* a|strong=\"G2532\"* man|strong=\"G3756\"*, make|strong=\"G4160\"* yourself|strong=\"G4572\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “Isn’\\+w t|strong=\"G3588\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G1722\"\\+w* \\+w law|strong=\"G3551\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w gods|strong=\"G2316\"\\+w*’?*+ 10:34 Psalms 82:6*" + }, + { + "verseNum": 35, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w called|strong=\"G3004\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w gods|strong=\"G2316\"\\+w*, \\+w to|strong=\"G4314\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w came|strong=\"G1096\"\\+w* (\\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Scripture|strong=\"G1124\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w broken|strong=\"G3089\"\\+w*), *" + }, + { + "verseNum": 36, + "text": "\\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* sanctified \\+w and|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2316\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w*, ‘\\+w You|strong=\"G5210\"\\+w* blaspheme,’ \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G3739\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w God|strong=\"G2316\"\\+w*’? *" + }, + { + "verseNum": 37, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w of|strong=\"G3962\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 38, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w though|strong=\"G1487\"\\+w* \\+w you|strong=\"G1487\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w believe|strong=\"G4100\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w works|strong=\"G2041\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*.” *" + }, + { + "verseNum": 39, + "text": "They|strong=\"G2532\"* sought|strong=\"G2212\"* again|strong=\"G3825\"* to|strong=\"G2532\"* seize|strong=\"G4084\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* their|strong=\"G2532\"* hand|strong=\"G5495\"*." + }, + { + "verseNum": 40, + "text": "He|strong=\"G2532\"* went|strong=\"G2532\"* away again|strong=\"G3825\"* beyond|strong=\"G4008\"* the|strong=\"G2532\"* Jordan|strong=\"G2446\"* into|strong=\"G1519\"* the|strong=\"G2532\"* place|strong=\"G5117\"* where|strong=\"G3699\"* John|strong=\"G2491\"* was|strong=\"G1510\"* baptizing at|strong=\"G1519\"* first|strong=\"G4413\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* stayed|strong=\"G3306\"* there|strong=\"G1563\"*." + }, + { + "verseNum": 41, + "text": "Many|strong=\"G4183\"* came|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G4160\"*. They|strong=\"G2532\"* said|strong=\"G3004\"*, “John|strong=\"G2491\"* indeed|strong=\"G2532\"* did|strong=\"G4160\"* no|strong=\"G3762\"* sign|strong=\"G4592\"*, but|strong=\"G1161\"* everything|strong=\"G3956\"* that|strong=\"G3754\"* John|strong=\"G2491\"* said|strong=\"G3004\"* about|strong=\"G4012\"* this|strong=\"G3778\"* man|strong=\"G3778\"* is|strong=\"G1510\"* true.”" + }, + { + "verseNum": 42, + "text": "Many|strong=\"G4183\"* believed|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G2532\"* there|strong=\"G1563\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* was|strong=\"G1510\"* sick, Lazarus|strong=\"G2976\"* from|strong=\"G1537\"* Bethany, of|strong=\"G1537\"* the|strong=\"G2532\"* village|strong=\"G2968\"* of|strong=\"G1537\"* Mary|strong=\"G3137\"* and|strong=\"G2532\"* her|strong=\"G3137\"* sister, Martha|strong=\"G3136\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"G2532\"* was|strong=\"G1510\"* that|strong=\"G3739\"* Mary|strong=\"G3137\"* who|strong=\"G3739\"* had|strong=\"G2532\"* anointed the|strong=\"G2532\"* Lord|strong=\"G2962\"* with|strong=\"G2532\"* ointment|strong=\"G3464\"* and|strong=\"G2532\"* wiped|strong=\"G1591\"* his|strong=\"G2532\"* feet|strong=\"G4228\"* with|strong=\"G2532\"* her|strong=\"G3137\"* hair|strong=\"G2359\"*, whose|strong=\"G3739\"* brother Lazarus|strong=\"G2976\"* was|strong=\"G1510\"* sick." + }, + { + "verseNum": 3, + "text": "The|strong=\"G4314\"* sisters therefore|strong=\"G3767\"* sent to|strong=\"G4314\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, behold|strong=\"G2396\"*, he|strong=\"G3739\"* for|strong=\"G4314\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* have|strong=\"G3588\"* great affection is|strong=\"G3588\"* sick.”" + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Jesus|strong=\"G2424\"* heard it|strong=\"G1161\"*, he|strong=\"G1161\"* said|strong=\"G3004\"*, “\\+w This|strong=\"G3778\"\\+w* sickness \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w death|strong=\"G2288\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w for|strong=\"G5228\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s \\+w Son|strong=\"G5207\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w glorified|strong=\"G1392\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w it|strong=\"G1161\"\\+w*.”*" + }, + { + "verseNum": 5, + "text": "Now|strong=\"G1161\"* Jesus|strong=\"G2424\"* loved Martha|strong=\"G3136\"*, and|strong=\"G2532\"* her|strong=\"G3588\"* sister, and|strong=\"G2532\"* Lazarus|strong=\"G2976\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"G5613\"* therefore|strong=\"G3767\"* he|strong=\"G3739\"* heard that|strong=\"G3754\"* he|strong=\"G3739\"* was|strong=\"G1510\"* sick, he|strong=\"G3739\"* stayed|strong=\"G3306\"* two|strong=\"G1417\"* days|strong=\"G2250\"* in|strong=\"G1722\"* the|strong=\"G1722\"* place|strong=\"G5117\"* where|strong=\"G3739\"* he|strong=\"G3739\"* was|strong=\"G1510\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"G1899\"* after|strong=\"G3326\"* this|strong=\"G3778\"* he|strong=\"G3778\"* said|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G1519\"* disciples|strong=\"G3101\"*, “\\+w Let|strong=\"G3004\"\\+w*’s \\+w go|strong=\"G1519\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w Judea|strong=\"G2449\"\\+w* \\+w again|strong=\"G3825\"\\+w*.”*" + }, + { + "verseNum": 8, + "text": "The|strong=\"G2532\"* disciples|strong=\"G3101\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Rabbi|strong=\"G4461\"*, the|strong=\"G2532\"* Jews|strong=\"G2453\"* were|strong=\"G3588\"* just|strong=\"G2532\"* trying|strong=\"G2212\"* to|strong=\"G2532\"* stone|strong=\"G3034\"* you|strong=\"G4771\"*. Are|strong=\"G3588\"* you|strong=\"G4771\"* going|strong=\"G5217\"* there|strong=\"G1563\"* again|strong=\"G3825\"*?”" + }, + { + "verseNum": 9, + "text": "Jesus|strong=\"G2424\"* answered, “Aren’\\+w t|strong=\"G3588\"\\+w* \\+w there|strong=\"G3754\"\\+w* \\+w twelve|strong=\"G1427\"\\+w* \\+w hours|strong=\"G5610\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w daylight|strong=\"G2250\"\\+w*? \\+w If|strong=\"G1437\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w walks|strong=\"G4043\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w day|strong=\"G2250\"\\+w*, \\+w he|strong=\"G3754\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w stumble|strong=\"G4350\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w he|strong=\"G3754\"\\+w* sees \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w world|strong=\"G2889\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w walks|strong=\"G4043\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w night|strong=\"G3571\"\\+w*, \\+w he|strong=\"G1161\"\\+w* \\+w stumbles|strong=\"G4350\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, and|strong=\"G2532\"* after|strong=\"G3326\"* that|strong=\"G2443\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2443\"* them|strong=\"G3588\"*, “\\+w Our|strong=\"G2532\"\\+w* \\+w friend|strong=\"G5384\"\\+w* \\+w Lazarus|strong=\"G2976\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w fallen|strong=\"G2837\"\\+w* \\+w asleep|strong=\"G2837\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w going|strong=\"G4198\"\\+w* \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w may|strong=\"G2532\"\\+w* awake \\+w him|strong=\"G3588\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w sleep|strong=\"G2837\"\\+w*.”*" + }, + { + "verseNum": 12, + "text": "The|strong=\"G3588\"* disciples|strong=\"G3101\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, if|strong=\"G1487\"* he|strong=\"G3588\"* has|strong=\"G2962\"* fallen|strong=\"G2837\"* asleep|strong=\"G2837\"*, he|strong=\"G3588\"* will|strong=\"G2962\"* recover|strong=\"G4982\"*.”" + }, + { + "verseNum": 13, + "text": "Now|strong=\"G1161\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* spoken|strong=\"G3004\"* of|strong=\"G4012\"* his|strong=\"G4012\"* death|strong=\"G2288\"*, but|strong=\"G1161\"* they|strong=\"G1161\"* thought|strong=\"G1380\"* that|strong=\"G3754\"* he|strong=\"G1161\"* spoke|strong=\"G3004\"* of|strong=\"G4012\"* taking rest|strong=\"G2838\"* in|strong=\"G3004\"* sleep|strong=\"G5258\"*." + }, + { + "verseNum": 14, + "text": "So|strong=\"G3767\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"* plainly|strong=\"G3954\"* then|strong=\"G3767\"*, “\\+w Lazarus|strong=\"G2976\"\\+w* \\+w is|strong=\"G3588\"\\+w* dead. *" + }, + { + "verseNum": 15, + "text": "\\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w glad|strong=\"G5463\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w sakes|strong=\"G1223\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w there|strong=\"G1563\"\\+w*, \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w believe|strong=\"G4100\"\\+w*. \\+w Nevertheless|strong=\"G3756\"\\+w*, \\+w let|strong=\"G1510\"\\+w*’s \\+w go|strong=\"G2532\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w him|strong=\"G2532\"\\+w*.”*" + }, + { + "verseNum": 16, + "text": "Thomas|strong=\"G2381\"* therefore|strong=\"G3767\"*, who|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G3004\"* Didymus|strong=\"G1324\"*,+ 11:16 “Didymus” means “Twin”.* said|strong=\"G3004\"* to|strong=\"G2443\"* his|strong=\"G2532\"* fellow|strong=\"G4827\"* disciples|strong=\"G4827\"*, “Let|strong=\"G2443\"*’s also|strong=\"G2532\"* go|strong=\"G2532\"*, that|strong=\"G2443\"* we|strong=\"G2249\"* may|strong=\"G2532\"* die with|strong=\"G3326\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 17, + "text": "So|strong=\"G3767\"* when|strong=\"G1722\"* Jesus|strong=\"G2424\"* came|strong=\"G2064\"*, he|strong=\"G3588\"* found|strong=\"G2147\"* that|strong=\"G3588\"* he|strong=\"G3588\"* had|strong=\"G2192\"* been|strong=\"G2192\"* in|strong=\"G1722\"* the|strong=\"G1722\"* tomb|strong=\"G3419\"* four|strong=\"G5064\"* days|strong=\"G2250\"* already|strong=\"G2235\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"G1161\"* Bethany was|strong=\"G1510\"* near|strong=\"G1451\"* Jerusalem|strong=\"G2414\"*, about|strong=\"G5613\"* fifteen|strong=\"G1178\"* stadia+ 11:18 15 stadia is about 2.8 kilometers or 1.7 miles* away." + }, + { + "verseNum": 19, + "text": "Many|strong=\"G4183\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* had|strong=\"G2532\"* joined the|strong=\"G2532\"* women around|strong=\"G4012\"* Martha|strong=\"G3136\"* and|strong=\"G2532\"* Mary|strong=\"G3137\"*, to|strong=\"G4314\"* console|strong=\"G3888\"* them|strong=\"G3588\"* concerning|strong=\"G4012\"* their|strong=\"G1438\"* brother." + }, + { + "verseNum": 20, + "text": "Then|strong=\"G3767\"* when|strong=\"G1161\"* Martha|strong=\"G3136\"* heard that|strong=\"G3754\"* Jesus|strong=\"G2424\"* was|strong=\"G3588\"* coming|strong=\"G2064\"*, she|strong=\"G1161\"* went|strong=\"G2064\"* and|strong=\"G1161\"* met|strong=\"G5221\"* him|strong=\"G3588\"*, but|strong=\"G1161\"* Mary|strong=\"G3137\"* stayed|strong=\"G2516\"* in|strong=\"G1722\"* the|strong=\"G1722\"* house|strong=\"G3624\"*." + }, + { + "verseNum": 21, + "text": "Therefore|strong=\"G3767\"* Martha|strong=\"G3136\"* said|strong=\"G3004\"* to|strong=\"G4314\"* Jesus|strong=\"G2424\"*, “Lord|strong=\"G2962\"*, if|strong=\"G1487\"* you|strong=\"G1487\"* would|strong=\"G1510\"* have|strong=\"G1473\"* been|strong=\"G1510\"* here|strong=\"G5602\"*, my|strong=\"G1473\"* brother wouldn’t|strong=\"G3588\"* have|strong=\"G1473\"* died|strong=\"G3588\"*." + }, + { + "verseNum": 22, + "text": "Even|strong=\"G2532\"* now|strong=\"G3568\"* I|strong=\"G2532\"* know|strong=\"G1492\"* that|strong=\"G3754\"* whatever|strong=\"G3745\"* you|strong=\"G4771\"* ask of|strong=\"G2316\"* God|strong=\"G2316\"*, God|strong=\"G2316\"* will|strong=\"G2316\"* give|strong=\"G1325\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 23, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* her|strong=\"G3588\"*, “\\+w Your|strong=\"G3588\"\\+w* brother \\+w will|strong=\"G3004\"\\+w* rise again.”*" + }, + { + "verseNum": 24, + "text": "Martha|strong=\"G3136\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “I|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* he|strong=\"G3754\"* will|strong=\"G2250\"* rise|strong=\"G2250\"* again in|strong=\"G1722\"* the|strong=\"G1722\"* resurrection at|strong=\"G1722\"* the|strong=\"G1722\"* last|strong=\"G2078\"* day|strong=\"G2250\"*.”" + }, + { + "verseNum": 25, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* her|strong=\"G1519\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* resurrection \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w life|strong=\"G2222\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* still \\+w live|strong=\"G2198\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w if|strong=\"G2579\"\\+w* \\+w he|strong=\"G2532\"\\+w* dies. *" + }, + { + "verseNum": 26, + "text": "\\+w Whoever|strong=\"G3956\"\\+w* \\+w lives|strong=\"G2198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w never|strong=\"G3756\"\\+w* die. \\+w Do|strong=\"G2532\"\\+w* \\+w you|strong=\"G3956\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w this|strong=\"G3778\"\\+w*?”*" + }, + { + "verseNum": 27, + "text": "She|strong=\"G3754\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “Yes|strong=\"G3483\"*, Lord|strong=\"G2962\"*. I|strong=\"G1473\"* have|strong=\"G1473\"* come|strong=\"G2064\"* to|strong=\"G1519\"* believe|strong=\"G4100\"* that|strong=\"G3754\"* you|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G1519\"* Christ|strong=\"G5547\"*, God|strong=\"G2316\"*’s|strong=\"G2962\"* Son|strong=\"G5207\"*, he|strong=\"G3754\"* who|strong=\"G3588\"* comes|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G1519\"* world|strong=\"G2889\"*.”" + }, + { + "verseNum": 28, + "text": "When|strong=\"G2532\"* she|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, she|strong=\"G2532\"* went|strong=\"G2532\"* away and|strong=\"G2532\"* called|strong=\"G3004\"* Mary|strong=\"G3137\"*, her|strong=\"G3137\"* sister, secretly|strong=\"G2977\"*, saying|strong=\"G3004\"*, “The|strong=\"G2532\"* Teacher|strong=\"G1320\"* is|strong=\"G3588\"* here|strong=\"G3918\"* and|strong=\"G2532\"* is|strong=\"G3588\"* calling|strong=\"G5455\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 29, + "text": "When|strong=\"G1161\"* she|strong=\"G2532\"* heard this|strong=\"G1565\"*, she|strong=\"G2532\"* arose|strong=\"G1453\"* quickly|strong=\"G5035\"* and|strong=\"G2532\"* went|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G1565\"*." + }, + { + "verseNum": 30, + "text": "Now|strong=\"G1161\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* not|strong=\"G1510\"* yet|strong=\"G2089\"* come|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G1722\"* village|strong=\"G2968\"*, but|strong=\"G1161\"* was|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* place|strong=\"G5117\"* where|strong=\"G3699\"* Martha|strong=\"G3136\"* met|strong=\"G5221\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 31, + "text": "Then|strong=\"G3767\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* who|strong=\"G3588\"* were|strong=\"G1510\"* with|strong=\"G3326\"* her|strong=\"G1438\"* in|strong=\"G1722\"* the|strong=\"G1722\"* house|strong=\"G3614\"* and|strong=\"G2532\"* were|strong=\"G1510\"* consoling|strong=\"G3888\"* her|strong=\"G1438\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* Mary|strong=\"G3137\"*, that|strong=\"G3754\"* she|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G1519\"* quickly|strong=\"G5030\"* and|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, followed her|strong=\"G1438\"*, saying|strong=\"G3754\"*, “She|strong=\"G2532\"* is|strong=\"G1510\"* going|strong=\"G5217\"* to|strong=\"G1519\"* the|strong=\"G1722\"* tomb|strong=\"G3419\"* to|strong=\"G1519\"* weep|strong=\"G2799\"* there|strong=\"G1563\"*.”" + }, + { + "verseNum": 32, + "text": "Therefore|strong=\"G3767\"* when|strong=\"G5613\"* Mary|strong=\"G3137\"* came|strong=\"G2064\"* to|strong=\"G4314\"* where|strong=\"G3699\"* Jesus|strong=\"G2424\"* was|strong=\"G1510\"* and|strong=\"G2064\"* saw|strong=\"G3708\"* him|strong=\"G3588\"*, she|strong=\"G5613\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* at|strong=\"G4314\"* his|strong=\"G3708\"* feet|strong=\"G4228\"*, saying|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, if|strong=\"G1487\"* you|strong=\"G1487\"* would|strong=\"G2064\"* have|strong=\"G1473\"* been|strong=\"G1510\"* here|strong=\"G5602\"*, my|strong=\"G3708\"* brother wouldn’t|strong=\"G3588\"* have|strong=\"G1473\"* died|strong=\"G4098\"*.”" + }, + { + "verseNum": 33, + "text": "When|strong=\"G5613\"* Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* saw|strong=\"G3708\"* her|strong=\"G1438\"* weeping|strong=\"G2799\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* weeping|strong=\"G2799\"* who|strong=\"G3588\"* came|strong=\"G4905\"* with|strong=\"G2532\"* her|strong=\"G1438\"*, he|strong=\"G2532\"* groaned|strong=\"G1690\"* in|strong=\"G2532\"* the|strong=\"G2532\"* spirit|strong=\"G4151\"* and|strong=\"G2532\"* was|strong=\"G3588\"* troubled|strong=\"G5015\"*," + }, + { + "verseNum": 34, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Where|strong=\"G4226\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w laid|strong=\"G5087\"\\+w* \\+w him|strong=\"G3708\"\\+w*?”*" + }, + { + "verseNum": 35, + "text": "Jesus|strong=\"G2424\"* wept|strong=\"G1145\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"G3588\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"*, “See|strong=\"G3708\"* how|strong=\"G4459\"* much affection he|strong=\"G3588\"* had|strong=\"G3588\"* for|strong=\"G2453\"* him|strong=\"G3588\"*!”" + }, + { + "verseNum": 37, + "text": "Some|strong=\"G5100\"* of|strong=\"G1537\"* them|strong=\"G3588\"* said|strong=\"G3004\"*, “Couldn’t|strong=\"G3588\"* this|strong=\"G3778\"* man|strong=\"G5100\"*, who|strong=\"G3588\"* opened the|strong=\"G2532\"* eyes|strong=\"G3788\"* of|strong=\"G1537\"* him|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G3588\"* blind|strong=\"G5185\"*, have|strong=\"G2532\"* also|strong=\"G2532\"* kept|strong=\"G4160\"* this|strong=\"G3778\"* man|strong=\"G5100\"* from|strong=\"G1537\"* dying?”" + }, + { + "verseNum": 38, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"*, again|strong=\"G3825\"* groaning|strong=\"G1690\"* in|strong=\"G1722\"* himself|strong=\"G1438\"*, came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G1722\"* tomb|strong=\"G3419\"*. Now|strong=\"G1161\"* it|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* cave|strong=\"G4693\"*, and|strong=\"G2532\"* a|strong=\"G2532\"* stone|strong=\"G3037\"* lay|strong=\"G1945\"* against|strong=\"G1909\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 39, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “Take away \\+w the|strong=\"G3588\"\\+w* \\+w stone|strong=\"G3037\"\\+w*.”*" + }, + { + "verseNum": 40, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* her|strong=\"G1437\"*, “Didn’\\+w t|strong=\"G3588\"\\+w* \\+w I|strong=\"G1437\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w believed|strong=\"G4100\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w would|strong=\"G2316\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s \\+w glory|strong=\"G1391\"\\+w*?”*" + }, + { + "verseNum": 41, + "text": "So|strong=\"G3767\"* they|strong=\"G2532\"* took|strong=\"G2532\"* away the|strong=\"G2532\"* stone|strong=\"G3037\"* from|strong=\"G2532\"* the|strong=\"G2532\"* place|strong=\"G1473\"* where the|strong=\"G2532\"* dead man was|strong=\"G3588\"* lying.+ 11:41 NU omits “from the place where the dead man was lying.”* Jesus|strong=\"G2424\"* lifted|strong=\"G2532\"* up|strong=\"G2532\"* his|strong=\"G2532\"* eyes|strong=\"G3788\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Father|strong=\"G3962\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w thank|strong=\"G2168\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* listened \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 42, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w listen|strong=\"G1492\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w multitude|strong=\"G3793\"\\+w* \\+w standing|strong=\"G4026\"\\+w* \\+w around|strong=\"G4026\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w this|strong=\"G3588\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* sent \\+w me|strong=\"G1473\"\\+w*.” *" + }, + { + "verseNum": 43, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* cried|strong=\"G2905\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, “\\+w Lazarus|strong=\"G2976\"\\+w*, \\+w come|strong=\"G1204\"\\+w* \\+w out|strong=\"G1854\"\\+w*!”*" + }, + { + "verseNum": 44, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* was|strong=\"G3588\"* dead|strong=\"G2348\"* came|strong=\"G1831\"* out|strong=\"G1831\"*, bound|strong=\"G1210\"* hand|strong=\"G5495\"* and|strong=\"G2532\"* foot|strong=\"G4228\"* with|strong=\"G2532\"* wrappings|strong=\"G2750\"*, and|strong=\"G2532\"* his|strong=\"G2532\"* face|strong=\"G3799\"* was|strong=\"G3588\"* wrapped|strong=\"G1210\"* around|strong=\"G4019\"* with|strong=\"G2532\"* a|strong=\"G2532\"* cloth|strong=\"G4676\"*." + }, + { + "verseNum": 45, + "text": "Therefore|strong=\"G3767\"* many|strong=\"G4183\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* who|strong=\"G3739\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Mary|strong=\"G3137\"* and|strong=\"G2532\"* saw|strong=\"G2300\"* what|strong=\"G3739\"* Jesus|strong=\"G2532\"* did|strong=\"G4160\"* believed|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 46, + "text": "But|strong=\"G1161\"* some|strong=\"G5100\"* of|strong=\"G1537\"* them|strong=\"G3588\"* went|strong=\"G2424\"* away to|strong=\"G4314\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* told|strong=\"G3004\"* them|strong=\"G3588\"* the|strong=\"G2532\"* things|strong=\"G3588\"* which|strong=\"G3739\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* done|strong=\"G4160\"*." + }, + { + "verseNum": 47, + "text": "The|strong=\"G2532\"* chief|strong=\"G2532\"* priests therefore|strong=\"G3767\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* gathered|strong=\"G4863\"* a|strong=\"G2532\"* council|strong=\"G4892\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “What|strong=\"G5101\"* are|strong=\"G3588\"* we|strong=\"G3754\"* doing|strong=\"G4160\"*? For|strong=\"G3754\"* this|strong=\"G3778\"* man|strong=\"G3778\"* does|strong=\"G4160\"* many|strong=\"G4183\"* signs|strong=\"G4592\"*." + }, + { + "verseNum": 48, + "text": "If|strong=\"G1437\"* we|strong=\"G2249\"* leave him|strong=\"G3588\"* alone|strong=\"G3779\"* like|strong=\"G3779\"* this|strong=\"G3588\"*, everyone|strong=\"G3956\"* will|strong=\"G2532\"* believe|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* Romans|strong=\"G4514\"* will|strong=\"G2532\"* come|strong=\"G2064\"* and|strong=\"G2532\"* take|strong=\"G2532\"* away both|strong=\"G2532\"* our|strong=\"G2532\"* place|strong=\"G5117\"* and|strong=\"G2532\"* our|strong=\"G2532\"* nation|strong=\"G1484\"*.”" + }, + { + "verseNum": 49, + "text": "But|strong=\"G1161\"* a|strong=\"G1510\"* certain|strong=\"G5100\"* one|strong=\"G1520\"* of|strong=\"G1537\"* them|strong=\"G3588\"*, Caiaphas|strong=\"G2533\"*, being|strong=\"G1510\"* high|strong=\"G5100\"* priest that|strong=\"G3588\"* year|strong=\"G1763\"*, said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “You|strong=\"G5210\"* know|strong=\"G1492\"* nothing|strong=\"G3762\"* at|strong=\"G1537\"* all|strong=\"G1161\"*," + }, + { + "verseNum": 50, + "text": "nor|strong=\"G3761\"* do|strong=\"G2532\"* you|strong=\"G5210\"* consider|strong=\"G3049\"* that|strong=\"G3754\"* it|strong=\"G2532\"* is|strong=\"G3588\"* advantageous for|strong=\"G3754\"* us that|strong=\"G3754\"* one|strong=\"G1520\"* man|strong=\"G1520\"* should|strong=\"G3588\"* die for|strong=\"G3754\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* nation|strong=\"G1484\"* not|strong=\"G3361\"* perish.”" + }, + { + "verseNum": 51, + "text": "Now|strong=\"G1161\"* he|strong=\"G1161\"* didn’t|strong=\"G3588\"* say|strong=\"G3004\"* this|strong=\"G3778\"* of|strong=\"G5228\"* himself|strong=\"G1438\"*, but|strong=\"G1161\"* being|strong=\"G1510\"* high priest that|strong=\"G3754\"* year|strong=\"G1763\"*, he|strong=\"G1161\"* prophesied|strong=\"G4395\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* would|strong=\"G3195\"* die for|strong=\"G3754\"* the|strong=\"G1161\"* nation|strong=\"G1484\"*," + }, + { + "verseNum": 52, + "text": "and|strong=\"G2532\"* not|strong=\"G3756\"* for|strong=\"G1519\"* the|strong=\"G2532\"* nation|strong=\"G1484\"* only|strong=\"G3440\"*, but|strong=\"G2532\"* that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* also|strong=\"G2532\"* gather|strong=\"G4863\"* together|strong=\"G4863\"* into|strong=\"G1519\"* one|strong=\"G1520\"* the|strong=\"G2532\"* children|strong=\"G5043\"* of|strong=\"G2316\"* God|strong=\"G2316\"* who|strong=\"G3588\"* are|strong=\"G3588\"* scattered|strong=\"G1287\"* abroad|strong=\"G1287\"*." + }, + { + "verseNum": 53, + "text": "So|strong=\"G2443\"* from|strong=\"G3588\"* that|strong=\"G2443\"* day|strong=\"G2250\"* forward they|strong=\"G3588\"* took|strong=\"G3767\"* counsel|strong=\"G1011\"* that|strong=\"G2443\"* they|strong=\"G3588\"* might put him|strong=\"G3588\"* to|strong=\"G2443\"* death." + }, + { + "verseNum": 54, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* walked|strong=\"G4043\"* no|strong=\"G3765\"* more|strong=\"G3765\"* openly|strong=\"G3954\"* among|strong=\"G1722\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"*, but|strong=\"G3767\"* departed from|strong=\"G3588\"* there|strong=\"G1564\"* into|strong=\"G1519\"* the|strong=\"G1722\"* country|strong=\"G5561\"* near|strong=\"G1451\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"*, to|strong=\"G1519\"* a|strong=\"G1519\"* city|strong=\"G4172\"* called|strong=\"G3004\"* Ephraim|strong=\"G2187\"*. He|strong=\"G3588\"* stayed|strong=\"G3306\"* there|strong=\"G1564\"* with|strong=\"G3326\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*." + }, + { + "verseNum": 55, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* was|strong=\"G1510\"* at|strong=\"G1519\"* hand|strong=\"G1451\"*. Many|strong=\"G4183\"* went|strong=\"G2532\"* up|strong=\"G1519\"* from|strong=\"G1537\"* the|strong=\"G2532\"* country|strong=\"G5561\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"* before|strong=\"G4253\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"*, to|strong=\"G1519\"* purify themselves|strong=\"G1438\"*." + }, + { + "verseNum": 56, + "text": "Then|strong=\"G3767\"* they|strong=\"G2532\"* sought|strong=\"G2212\"* for|strong=\"G3754\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* spoke|strong=\"G3004\"* with|strong=\"G3326\"* one|strong=\"G3588\"* another|strong=\"G3588\"* as|strong=\"G1519\"* they|strong=\"G2532\"* stood|strong=\"G2476\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, “What|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G5210\"* think|strong=\"G1380\"*—that|strong=\"G3754\"* he|strong=\"G2532\"* isn’t|strong=\"G3588\"* coming|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G1722\"* feast|strong=\"G1859\"* at|strong=\"G1722\"* all|strong=\"G2532\"*?”" + }, + { + "verseNum": 57, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* had|strong=\"G2532\"* commanded|strong=\"G1785\"* that|strong=\"G2443\"* if|strong=\"G1437\"* anyone|strong=\"G5100\"* knew|strong=\"G1097\"* where|strong=\"G4226\"* he|strong=\"G2532\"* was|strong=\"G1510\"*, he|strong=\"G2532\"* should|strong=\"G5100\"* report|strong=\"G3377\"* it|strong=\"G2532\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* seize|strong=\"G4084\"* him|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"G3767\"*, six|strong=\"G1803\"* days|strong=\"G2250\"* before|strong=\"G4253\"* the|strong=\"G1519\"* Passover|strong=\"G3957\"*, Jesus|strong=\"G2424\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Bethany, where|strong=\"G3699\"* Lazarus|strong=\"G2976\"* was|strong=\"G1510\"*, who|strong=\"G3739\"* had|strong=\"G2424\"* been|strong=\"G1510\"* dead|strong=\"G3498\"*, whom|strong=\"G3739\"* he|strong=\"G3739\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G1519\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 2, + "text": "So|strong=\"G3767\"* they|strong=\"G2532\"* made|strong=\"G4160\"* him|strong=\"G3588\"* a|strong=\"G2532\"* supper|strong=\"G1173\"* there|strong=\"G1563\"*. Martha|strong=\"G3136\"* served|strong=\"G1247\"*, but|strong=\"G1161\"* Lazarus|strong=\"G2976\"* was|strong=\"G1510\"* one|strong=\"G1520\"* of|strong=\"G1537\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G2532\"* at|strong=\"G1537\"* the|strong=\"G2532\"* table with|strong=\"G4862\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"G3767\"* Mary|strong=\"G3137\"* took|strong=\"G2983\"* a|strong=\"G2532\"* pound|strong=\"G3046\"*+ 12:3 a Roman pound of 12 ounces, or about 340 grams* of|strong=\"G1537\"* ointment|strong=\"G3464\"* of|strong=\"G1537\"* pure|strong=\"G4101\"* nard|strong=\"G3487\"*, very|strong=\"G2532\"* precious|strong=\"G4186\"*, and|strong=\"G2532\"* anointed Jesus|strong=\"G2424\"*’ feet|strong=\"G4228\"* and|strong=\"G2532\"* wiped|strong=\"G1591\"* his|strong=\"G2983\"* feet|strong=\"G4228\"* with|strong=\"G1537\"* her|strong=\"G3137\"* hair|strong=\"G2359\"*. The|strong=\"G2532\"* house|strong=\"G3614\"* was|strong=\"G3588\"* filled|strong=\"G4137\"* with|strong=\"G1537\"* the|strong=\"G2532\"* fragrance|strong=\"G3744\"* of|strong=\"G1537\"* the|strong=\"G2532\"* ointment|strong=\"G3464\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"G1161\"* Judas|strong=\"G2455\"* Iscariot|strong=\"G2469\"*, Simon’s son, one|strong=\"G1520\"* of|strong=\"G1537\"* his|strong=\"G3588\"* disciples|strong=\"G3101\"*, who|strong=\"G3588\"* would|strong=\"G3195\"* betray|strong=\"G3860\"* him|strong=\"G3588\"*, said|strong=\"G3004\"*," + }, + { + "verseNum": 5, + "text": "“Why|strong=\"G5101\"* wasn’t|strong=\"G3588\"* this|strong=\"G3778\"* ointment|strong=\"G3464\"* sold|strong=\"G4097\"* for|strong=\"G1223\"* three|strong=\"G5145\"* hundred|strong=\"G5145\"* denarii|strong=\"G1220\"*+ 12:5 300 denarii was about a year’s wages for an agricultural laborer.* and|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2532\"* the|strong=\"G2532\"* poor|strong=\"G4434\"*?”" + }, + { + "verseNum": 6, + "text": "Now|strong=\"G1161\"* he|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, not|strong=\"G3756\"* because|strong=\"G3754\"* he|strong=\"G2532\"* cared|strong=\"G3199\"* for|strong=\"G3754\"* the|strong=\"G2532\"* poor|strong=\"G4434\"*, but|strong=\"G1161\"* because|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2192\"* thief|strong=\"G2812\"*, and|strong=\"G2532\"* having|strong=\"G2192\"* the|strong=\"G2532\"* money|strong=\"G1101\"* box|strong=\"G1101\"*, used to|strong=\"G2532\"* steal what|strong=\"G3588\"* was|strong=\"G1510\"* put|strong=\"G2532\"* into it|strong=\"G2532\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G3767\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “Leave \\+w her|strong=\"G1438\"\\+w* \\+w alone|strong=\"G1438\"\\+w*. \\+w She|strong=\"G2443\"\\+w* \\+w has|strong=\"G2424\"\\+w* \\+w kept|strong=\"G5083\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w burial|strong=\"G1780\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w you|strong=\"G1438\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w poor|strong=\"G4434\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G1438\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G1438\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "A|strong=\"G2532\"* large|strong=\"G4183\"* crowd|strong=\"G3793\"* therefore|strong=\"G3767\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* learned|strong=\"G1097\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* there|strong=\"G1563\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* came|strong=\"G2064\"*, not|strong=\"G3756\"* for|strong=\"G3754\"* Jesus|strong=\"G2424\"*’ sake|strong=\"G1223\"* only|strong=\"G3440\"*, but|strong=\"G2532\"* that|strong=\"G3754\"* they|strong=\"G2532\"* might|strong=\"G2532\"* see|strong=\"G3708\"* Lazarus|strong=\"G2976\"* also|strong=\"G2532\"*, whom|strong=\"G3739\"* he|strong=\"G2532\"* had|strong=\"G2424\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests conspired to|strong=\"G2443\"* put|strong=\"G2532\"* Lazarus|strong=\"G2976\"* to|strong=\"G2443\"* death also|strong=\"G2532\"*," + }, + { + "verseNum": 11, + "text": "because|strong=\"G3754\"* on|strong=\"G1519\"* account|strong=\"G1223\"* of|strong=\"G1223\"* him|strong=\"G3588\"* many|strong=\"G4183\"* of|strong=\"G1223\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* went|strong=\"G2424\"* away|strong=\"G5217\"* and|strong=\"G2532\"* believed|strong=\"G4100\"* in|strong=\"G1519\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 12, + "text": "On|strong=\"G1519\"* the|strong=\"G1519\"* next|strong=\"G1887\"* day|strong=\"G1887\"* a|strong=\"G1519\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* had|strong=\"G2424\"* come|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G1519\"* feast|strong=\"G1859\"*. When|strong=\"G2064\"* they|strong=\"G3588\"* heard that|strong=\"G3754\"* Jesus|strong=\"G2424\"* was|strong=\"G3588\"* coming|strong=\"G2064\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*," + }, + { + "verseNum": 13, + "text": "they|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G1722\"* branches|strong=\"G5404\"* of|strong=\"G2532\"* the|strong=\"G1722\"* palm|strong=\"G5404\"* trees|strong=\"G5404\"* and|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G1519\"* meet|strong=\"G5222\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* cried|strong=\"G2905\"* out|strong=\"G1831\"*, “Hosanna|strong=\"G5614\"*!+ 12:13 “Hosanna” means “save us” or “help us, we pray”.* Blessed|strong=\"G2127\"* is|strong=\"G3588\"* he|strong=\"G2532\"* who|strong=\"G3588\"* comes|strong=\"G2064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*,+ 12:13 Psalms 118:25-26 * the|strong=\"G1722\"* King|strong=\"G3588\"* of|strong=\"G2532\"* Israel|strong=\"G2474\"*!”" + }, + { + "verseNum": 14, + "text": "Jesus|strong=\"G2424\"*, having found|strong=\"G2147\"* a|strong=\"G1510\"* young|strong=\"G3678\"* donkey|strong=\"G3678\"*, sat|strong=\"G2523\"* on|strong=\"G1909\"* it|strong=\"G1161\"*. As|strong=\"G2531\"* it|strong=\"G1161\"* is|strong=\"G1510\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 15, + "text": "“Don’t|strong=\"G3588\"* be|strong=\"G3361\"* afraid|strong=\"G5399\"*, daughter|strong=\"G2364\"* of|strong=\"G1909\"* Zion|strong=\"G4622\"*. Behold|strong=\"G2400\"*, your|strong=\"G3708\"* King|strong=\"G3588\"* comes|strong=\"G2064\"*, sitting|strong=\"G2521\"* on|strong=\"G1909\"* a|strong=\"G1909\"* donkey|strong=\"G3688\"*’s colt|strong=\"G4454\"*.”+ 12:15 Zechariah 9:9*" + }, + { + "verseNum": 16, + "text": "His|strong=\"G1909\"* disciples|strong=\"G3101\"* didn’t|strong=\"G3588\"* understand|strong=\"G1097\"* these|strong=\"G3778\"* things|strong=\"G3778\"* at|strong=\"G1909\"* first|strong=\"G4413\"*, but|strong=\"G2532\"* when|strong=\"G3753\"* Jesus|strong=\"G2424\"* was|strong=\"G1510\"* glorified|strong=\"G1392\"*, then|strong=\"G2532\"* they|strong=\"G2532\"* remembered|strong=\"G3403\"* that|strong=\"G3754\"* these|strong=\"G3778\"* things|strong=\"G3778\"* were|strong=\"G1510\"* written|strong=\"G1125\"* about|strong=\"G1909\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* they|strong=\"G2532\"* had|strong=\"G2424\"* done|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"G2532\"* multitude|strong=\"G3793\"* therefore|strong=\"G3767\"* that|strong=\"G3754\"* was|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G3588\"* when|strong=\"G3753\"* he|strong=\"G2532\"* called|strong=\"G5455\"* Lazarus|strong=\"G2976\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"* and|strong=\"G2532\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"* was|strong=\"G1510\"* testifying|strong=\"G3140\"* about|strong=\"G3754\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G3754\"* this|strong=\"G3778\"* cause|strong=\"G4160\"* also|strong=\"G2532\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* went|strong=\"G2532\"* and|strong=\"G2532\"* met|strong=\"G5221\"* him|strong=\"G3588\"*, because|strong=\"G3754\"* they|strong=\"G2532\"* heard that|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2532\"* done|strong=\"G4160\"* this|strong=\"G3778\"* sign|strong=\"G4592\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"G4314\"* Pharisees|strong=\"G5330\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* among|strong=\"G4314\"* themselves|strong=\"G1438\"*, “See|strong=\"G3708\"* how|strong=\"G3754\"* you|strong=\"G3754\"* accomplish nothing|strong=\"G3762\"*. Behold|strong=\"G2396\"*, the|strong=\"G4314\"* world|strong=\"G2889\"* has|strong=\"G3762\"* gone after|strong=\"G3694\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 20, + "text": "Now|strong=\"G1161\"* there|strong=\"G1161\"* were|strong=\"G1510\"* certain|strong=\"G5100\"* Greeks|strong=\"G1672\"* among|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* went|strong=\"G3588\"* up|strong=\"G1722\"* to|strong=\"G2443\"* worship|strong=\"G4352\"* at|strong=\"G1722\"* the|strong=\"G1722\"* feast|strong=\"G1859\"*." + }, + { + "verseNum": 21, + "text": "Therefore|strong=\"G3767\"*, these|strong=\"G3778\"* came|strong=\"G4334\"* to|strong=\"G2532\"* Philip|strong=\"G5376\"*, who|strong=\"G3588\"* was|strong=\"G3588\"* from|strong=\"G2532\"* Bethsaida of|strong=\"G2532\"* Galilee|strong=\"G1056\"*, and|strong=\"G2532\"* asked|strong=\"G2065\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Sir|strong=\"G2962\"*, we|strong=\"G2532\"* want|strong=\"G2309\"* to|strong=\"G2532\"* see|strong=\"G3708\"* Jesus|strong=\"G2424\"*.”" + }, + { + "verseNum": 22, + "text": "Philip|strong=\"G5376\"* came|strong=\"G2064\"* and|strong=\"G2532\"* told|strong=\"G3004\"* Andrew, and|strong=\"G2532\"* in|strong=\"G2532\"* turn, Andrew came|strong=\"G2064\"* with|strong=\"G2532\"* Philip|strong=\"G5376\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* told|strong=\"G3004\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 23, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w The|strong=\"G1161\"\\+w* \\+w time|strong=\"G5610\"\\+w* \\+w has|strong=\"G5610\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w be|strong=\"G2443\"\\+w* \\+w glorified|strong=\"G1392\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w Most|strong=\"G4183\"\\+w* certainly \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w unless|strong=\"G1437\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w grain|strong=\"G2590\"\\+w* \\+w of|strong=\"G1093\"\\+w* \\+w wheat|strong=\"G4621\"\\+w* \\+w falls|strong=\"G4098\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w and|strong=\"G1161\"\\+w* dies, \\+w it|strong=\"G1161\"\\+w* \\+w remains|strong=\"G3306\"\\+w* \\+w by|strong=\"G3004\"\\+w* itself \\+w alone|strong=\"G3441\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w it|strong=\"G1161\"\\+w* dies, \\+w it|strong=\"G1161\"\\+w* \\+w bears|strong=\"G5342\"\\+w* \\+w much|strong=\"G4183\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w loves|strong=\"G5368\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w will|strong=\"G2532\"\\+w* lose \\+w it|strong=\"G2532\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w hates|strong=\"G3404\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w keep|strong=\"G5442\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w serves|strong=\"G1247\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w let|strong=\"G1510\"\\+w* \\+w him|strong=\"G3588\"\\+w* follow \\+w me|strong=\"G1473\"\\+w*. \\+w Where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*, \\+w there|strong=\"G1563\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w servant|strong=\"G1249\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w serves|strong=\"G1247\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w honor|strong=\"G5091\"\\+w* \\+w him|strong=\"G3588\"\\+w*.*" + }, + { + "verseNum": 27, + "text": "“\\+w Now|strong=\"G3568\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w soul|strong=\"G5590\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w troubled|strong=\"G5015\"\\+w*. \\+w What|strong=\"G5101\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w say|strong=\"G3004\"\\+w*? ‘\\+w Father|strong=\"G3962\"\\+w*, \\+w save|strong=\"G4982\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w time|strong=\"G5610\"\\+w*’? \\+w But|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w time|strong=\"G5610\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w cause|strong=\"G1223\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w Father|strong=\"G3962\"\\+w*, \\+w glorify|strong=\"G1392\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w name|strong=\"G3686\"\\+w*!”*" + }, + { + "verseNum": 29, + "text": "Therefore|strong=\"G3767\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* who|strong=\"G3588\"* stood|strong=\"G2476\"* by|strong=\"G2532\"* and|strong=\"G2532\"* heard it|strong=\"G2532\"* said|strong=\"G3004\"* that|strong=\"G3588\"* it|strong=\"G2532\"* had|strong=\"G2532\"* thundered|strong=\"G1027\"*. Others|strong=\"G3588\"* said|strong=\"G3004\"*, “An|strong=\"G2532\"* angel has|strong=\"G1096\"* spoken|strong=\"G2980\"* to|strong=\"G2532\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 30, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “\\+w This|strong=\"G3778\"\\+w* \\+w voice|strong=\"G5456\"\\+w* hasn’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G1096\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w sake|strong=\"G1223\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w sakes|strong=\"G1223\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w Now|strong=\"G3568\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w world|strong=\"G2889\"\\+w*. \\+w Now|strong=\"G3568\"\\+w* \\+w the|strong=\"G3588\"\\+w* prince \\+w of|strong=\"G3588\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w And|strong=\"G1093\"\\+w* \\+w I|strong=\"G2504\"\\+w*, \\+w if|strong=\"G1437\"\\+w* \\+w I|strong=\"G2504\"\\+w* \\+w am|strong=\"G2504\"\\+w* \\+w lifted|strong=\"G5312\"\\+w* \\+w up|strong=\"G5312\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w earth|strong=\"G1093\"\\+w*, \\+w will|strong=\"G3956\"\\+w* \\+w draw|strong=\"G1670\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w people|strong=\"G3956\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w myself|strong=\"G1683\"\\+w*.”*" + }, + { + "verseNum": 33, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, signifying|strong=\"G4591\"* by|strong=\"G3004\"* what|strong=\"G4169\"* kind|strong=\"G4169\"* of|strong=\"G3004\"* death|strong=\"G2288\"* he|strong=\"G1161\"* should|strong=\"G3195\"* die|strong=\"G2288\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"G2532\"* multitude|strong=\"G3793\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “We|strong=\"G2249\"* have|strong=\"G2532\"* heard out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* law|strong=\"G3551\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"* remains|strong=\"G3306\"* forever|strong=\"G1519\"*.+ 12:34 Isaiah 9:7; Daniel 2:44; See Isaiah 53:8* How|strong=\"G4459\"* do|strong=\"G5101\"* you|strong=\"G4771\"* say|strong=\"G3004\"*, ‘\\+w The|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Man|strong=\"G3778\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w lifted|strong=\"G5312\"\\+w* \\+w up|strong=\"G1210\"\\+w*’*? Who|strong=\"G5101\"* is|strong=\"G1510\"* this|strong=\"G3778\"* Son|strong=\"G5207\"* of|strong=\"G1537\"* Man|strong=\"G3778\"*?”" + }, + { + "verseNum": 35, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G2443\"* them|strong=\"G3588\"*, “\\+w Yet|strong=\"G2089\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w little|strong=\"G3397\"\\+w* \\+w while|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w Walk|strong=\"G4043\"\\+w* \\+w while|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w darkness|strong=\"G4653\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w overtake|strong=\"G2638\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w walks|strong=\"G4043\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w darkness|strong=\"G4653\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w where|strong=\"G4226\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w going|strong=\"G5217\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w While|strong=\"G5613\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w light|strong=\"G5457\"\\+w*, \\+w believe|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w light|strong=\"G5457\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w become|strong=\"G1096\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w light|strong=\"G5457\"\\+w*.”* Jesus|strong=\"G2424\"* said|strong=\"G2980\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* departed and|strong=\"G2532\"* hid|strong=\"G2928\"* himself|strong=\"G2928\"* from|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 37, + "text": "But|strong=\"G1161\"* though|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G4160\"* done|strong=\"G4160\"* so|strong=\"G1161\"* many|strong=\"G5118\"* signs|strong=\"G4592\"* before|strong=\"G1715\"* them|strong=\"G4160\"*, yet|strong=\"G1161\"* they|strong=\"G1161\"* didn’t believe|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G4160\"*," + }, + { + "verseNum": 38, + "text": "that|strong=\"G2443\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* Isaiah|strong=\"G2268\"* the|strong=\"G2532\"* prophet|strong=\"G4396\"* might|strong=\"G2532\"* be|strong=\"G2532\"* fulfilled|strong=\"G4137\"*, which|strong=\"G3739\"* he|strong=\"G2532\"* spoke|strong=\"G3004\"*:" + }, + { + "verseNum": 39, + "text": "For|strong=\"G3754\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* they|strong=\"G3754\"* couldn’t believe|strong=\"G4100\"*, for|strong=\"G3754\"* Isaiah|strong=\"G2268\"* said|strong=\"G3004\"* again|strong=\"G3825\"*:" + }, + { + "verseNum": 40, + "text": "“He|strong=\"G2532\"* has|strong=\"G3708\"* blinded|strong=\"G5186\"* their|strong=\"G1438\"* eyes|strong=\"G3788\"* and|strong=\"G2532\"* he|strong=\"G2532\"* hardened|strong=\"G4456\"* their|strong=\"G1438\"* heart|strong=\"G2588\"*," + }, + { + "verseNum": 41, + "text": "Isaiah|strong=\"G2268\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"* when|strong=\"G2532\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* his|strong=\"G4012\"* glory|strong=\"G1391\"*, and|strong=\"G2532\"* spoke|strong=\"G2980\"* of|strong=\"G4012\"* him|strong=\"G3588\"*. + 12:41 Isaiah 6:1*" + }, + { + "verseNum": 42, + "text": "Nevertheless|strong=\"G3305\"*, even|strong=\"G2532\"* many|strong=\"G4183\"* of|strong=\"G1537\"* the|strong=\"G2532\"* rulers believed|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"*, but|strong=\"G2532\"* because|strong=\"G1223\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* confess|strong=\"G3670\"* it|strong=\"G2532\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* they|strong=\"G2532\"* wouldn’t|strong=\"G3588\"* be|strong=\"G1096\"* put|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* synagogue," + }, + { + "verseNum": 43, + "text": "for|strong=\"G1063\"* they|strong=\"G3588\"* loved men|strong=\"G3588\"*’s praise|strong=\"G1391\"* more|strong=\"G3123\"* than|strong=\"G2260\"* God|strong=\"G2316\"*’s praise|strong=\"G1391\"*." + }, + { + "verseNum": 44, + "text": "Jesus|strong=\"G2424\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Whoever|strong=\"G3588\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w believes|strong=\"G4100\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 45, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sees|strong=\"G2334\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w sees|strong=\"G2334\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 46, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w as|strong=\"G1519\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w whoever|strong=\"G3956\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w darkness|strong=\"G4653\"\\+w*. *" + }, + { + "verseNum": 47, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* listens \\+w to|strong=\"G2443\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w sayings|strong=\"G4487\"\\+w* \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* believe, \\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w him|strong=\"G3588\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w save|strong=\"G4982\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w*. *" + }, + { + "verseNum": 48, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* rejects \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w sayings|strong=\"G3056\"\\+w*, \\+w has|strong=\"G2192\"\\+w* \\+w one|strong=\"G3739\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w judges|strong=\"G2919\"\\+w* \\+w him|strong=\"G3588\"\\+w*. \\+w The|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w spoke|strong=\"G2980\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w day|strong=\"G2250\"\\+w*. *" + }, + { + "verseNum": 49, + "text": "\\+w For|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w spoke|strong=\"G2980\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w myself|strong=\"G1683\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w commandment|strong=\"G1785\"\\+w*, \\+w what|strong=\"G5101\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w speak|strong=\"G2980\"\\+w*. *" + }, + { + "verseNum": 50, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w commandment|strong=\"G1785\"\\+w* \\+w is|strong=\"G1510\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w speak|strong=\"G2980\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w so|strong=\"G3779\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w speak|strong=\"G2980\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* before|strong=\"G4253\"* the|strong=\"G1722\"* feast|strong=\"G1859\"* of|strong=\"G1537\"* the|strong=\"G1722\"* Passover|strong=\"G3957\"*, Jesus|strong=\"G2424\"*, knowing|strong=\"G1492\"* that|strong=\"G3754\"* his|strong=\"G1438\"* time|strong=\"G5610\"* had|strong=\"G2424\"* come|strong=\"G2064\"* that|strong=\"G3754\"* he|strong=\"G1161\"* would|strong=\"G2064\"* depart|strong=\"G3327\"* from|strong=\"G1537\"* this|strong=\"G3778\"* world|strong=\"G2889\"* to|strong=\"G1519\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*, having|strong=\"G1492\"* loved his|strong=\"G1438\"* own|strong=\"G2398\"* who|strong=\"G3588\"* were|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*, he|strong=\"G1161\"* loved them|strong=\"G3588\"* to|strong=\"G1519\"* the|strong=\"G1722\"* end|strong=\"G5056\"*." + }, + { + "verseNum": 2, + "text": "During|strong=\"G1096\"* supper|strong=\"G1173\"*, the|strong=\"G2532\"* devil|strong=\"G1228\"* having|strong=\"G2532\"* already|strong=\"G2235\"* put|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G2532\"* heart|strong=\"G2588\"* of|strong=\"G2532\"* Judas|strong=\"G2455\"* Iscariot|strong=\"G2469\"*, Simon|strong=\"G4613\"*’s son, to|strong=\"G1519\"* betray|strong=\"G3860\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 3, + "text": "Jesus|strong=\"G1831\"*, knowing|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* had|strong=\"G2532\"* given|strong=\"G1325\"* all|strong=\"G3956\"* things|strong=\"G3956\"* into|strong=\"G1519\"* his|strong=\"G3956\"* hands|strong=\"G5495\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* he|strong=\"G2532\"* came|strong=\"G1831\"* from|strong=\"G2532\"* God|strong=\"G2316\"* and|strong=\"G2532\"* was|strong=\"G3588\"* going|strong=\"G5217\"* to|strong=\"G1519\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 4, + "text": "arose|strong=\"G1453\"* from|strong=\"G1537\"* supper|strong=\"G1173\"*, and|strong=\"G2532\"* laid|strong=\"G5087\"* aside|strong=\"G5087\"* his|strong=\"G1438\"* outer|strong=\"G2440\"* garments|strong=\"G2440\"*. He|strong=\"G2532\"* took|strong=\"G2983\"* a|strong=\"G2532\"* towel|strong=\"G3012\"* and|strong=\"G2532\"* wrapped a|strong=\"G2532\"* towel|strong=\"G3012\"* around his|strong=\"G1438\"* waist." + }, + { + "verseNum": 5, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* poured|strong=\"G2532\"* water|strong=\"G5204\"* into|strong=\"G1519\"* the|strong=\"G2532\"* basin|strong=\"G3537\"*, and|strong=\"G2532\"* began to|strong=\"G1519\"* wash|strong=\"G3538\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*’ feet|strong=\"G4228\"* and|strong=\"G2532\"* to|strong=\"G1519\"* wipe|strong=\"G1591\"* them|strong=\"G3588\"* with|strong=\"G2532\"* the|strong=\"G2532\"* towel|strong=\"G3012\"* that|strong=\"G3739\"* was|strong=\"G1510\"* wrapped around him|strong=\"G3588\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"G3767\"* he|strong=\"G3588\"* came|strong=\"G2064\"* to|strong=\"G4314\"* Simon|strong=\"G4613\"* Peter|strong=\"G4074\"*. He|strong=\"G3588\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, do|strong=\"G3004\"* you|strong=\"G4771\"* wash|strong=\"G3538\"* my|strong=\"G1473\"* feet|strong=\"G4228\"*?”" + }, + { + "verseNum": 7, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* him|strong=\"G3739\"*, “\\+w You|strong=\"G4771\"\\+w* don’t \\+w know|strong=\"G1492\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w doing|strong=\"G4160\"\\+w* \\+w now|strong=\"G1161\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w understand|strong=\"G1097\"\\+w* \\+w later|strong=\"G3326\"\\+w*.”*" + }, + { + "verseNum": 8, + "text": "Peter|strong=\"G4074\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “You|strong=\"G4771\"* will|strong=\"G1473\"* never|strong=\"G3756\"* wash|strong=\"G3538\"* my|strong=\"G1473\"* feet|strong=\"G4228\"*!”" + }, + { + "verseNum": 9, + "text": "Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, not|strong=\"G3361\"* my|strong=\"G1473\"* feet|strong=\"G4228\"* only|strong=\"G3440\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* my|strong=\"G1473\"* hands|strong=\"G5495\"* and|strong=\"G2532\"* my|strong=\"G1473\"* head|strong=\"G2776\"*!”" + }, + { + "verseNum": 10, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Someone \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w bathed|strong=\"G3068\"\\+w* \\+w only|strong=\"G1487\"\\+w* \\+w needs|strong=\"G5532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w feet|strong=\"G4228\"\\+w* \\+w washed|strong=\"G3538\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w completely|strong=\"G3650\"\\+w* \\+w clean|strong=\"G2513\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w clean|strong=\"G2513\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*.” *" + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* he|strong=\"G3754\"* knew|strong=\"G1492\"* him|strong=\"G3588\"* who|strong=\"G3588\"* would|strong=\"G1510\"* betray|strong=\"G3860\"* him|strong=\"G3588\"*; therefore|strong=\"G1223\"* he|strong=\"G3754\"* said|strong=\"G3004\"*, “\\+w You|strong=\"G3754\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3780\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w clean|strong=\"G2513\"\\+w*.”*" + }, + { + "verseNum": 12, + "text": "So|strong=\"G3767\"* when|strong=\"G3753\"* he|strong=\"G2532\"* had|strong=\"G2532\"* washed|strong=\"G3538\"* their|strong=\"G2532\"* feet|strong=\"G4228\"*, put|strong=\"G4160\"* his|strong=\"G4160\"* outer|strong=\"G2440\"* garment|strong=\"G2440\"* back|strong=\"G3825\"* on|strong=\"G4160\"*, and|strong=\"G2532\"* sat|strong=\"G2532\"* down again|strong=\"G3825\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Do|strong=\"G4160\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*? *" + }, + { + "verseNum": 13, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w call|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w*, ‘\\+w Teacher|strong=\"G1320\"\\+w*’ \\+w and|strong=\"G2532\"\\+w* ‘\\+w Lord|strong=\"G2962\"\\+w*.’ \\+w You|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w so|strong=\"G2532\"\\+w* \\+w correctly|strong=\"G2573\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w so|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w then|strong=\"G3767\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Teacher|strong=\"G1320\"\\+w*, \\+w have|strong=\"G2532\"\\+w* \\+w washed|strong=\"G3538\"\\+w* \\+w your|strong=\"G2962\"\\+w* \\+w feet|strong=\"G4228\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w ought|strong=\"G3784\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w wash|strong=\"G3538\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w another|strong=\"G3588\"\\+w*’\\+w s|strong=\"G2962\"\\+w* \\+w feet|strong=\"G4228\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w example|strong=\"G5262\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w should|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "Most \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G1510\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w a|strong=\"G1510\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w his|strong=\"G3992\"\\+w* \\+w lord|strong=\"G2962\"\\+w*, \\+w neither|strong=\"G3761\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*, \\+w blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w them|strong=\"G4160\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w speak|strong=\"G3004\"\\+w* \\+w concerning|strong=\"G4012\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w whom|strong=\"G5101\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w chosen|strong=\"G1586\"\\+w*; \\+w but|strong=\"G3588\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w Scripture|strong=\"G1124\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w be|strong=\"G3756\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w*, ‘\\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w eats|strong=\"G5176\"\\+w* bread \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w has|strong=\"G5101\"\\+w* \\+w lifted|strong=\"G1869\"\\+w* \\+w up|strong=\"G1869\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w heel|strong=\"G4418\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w me|strong=\"G1473\"\\+w*.’*+ 13:18 Psalms 41:9*" + }, + { + "verseNum": 19, + "text": "\\+w From|strong=\"G3588\"\\+w* \\+w now|strong=\"G1096\"\\+w* \\+w on|strong=\"G1096\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w happens|strong=\"G1096\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w happens|strong=\"G1096\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w he|strong=\"G3754\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "Most certainly \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w receives|strong=\"G2983\"\\+w* whomever \\+w I|strong=\"G1473\"\\+w* \\+w send|strong=\"G3992\"\\+w*, \\+w receives|strong=\"G2983\"\\+w* \\+w me|strong=\"G1473\"\\+w*; \\+w and|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w receives|strong=\"G2983\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w receives|strong=\"G2983\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 21, + "text": "When|strong=\"G2532\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* was|strong=\"G3588\"* troubled|strong=\"G5015\"* in|strong=\"G2532\"* spirit|strong=\"G4151\"*, and|strong=\"G2532\"* testified|strong=\"G3140\"*, “\\+w Most|strong=\"G1537\"\\+w* \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w betray|strong=\"G3860\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "The|strong=\"G1519\"* disciples|strong=\"G3101\"* looked at|strong=\"G1519\"* one|strong=\"G3588\"* another|strong=\"G3588\"*, perplexed about|strong=\"G4012\"* whom|strong=\"G5101\"* he|strong=\"G3588\"* spoke|strong=\"G3004\"*." + }, + { + "verseNum": 23, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* his|strong=\"G1722\"* disciples|strong=\"G3101\"*, whom|strong=\"G3739\"* Jesus|strong=\"G2424\"* loved, was|strong=\"G1510\"* at|strong=\"G1722\"* the|strong=\"G1722\"* table, leaning against|strong=\"G1722\"* Jesus|strong=\"G2424\"*’ chest." + }, + { + "verseNum": 24, + "text": "Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* therefore|strong=\"G3767\"* beckoned|strong=\"G3506\"* to|strong=\"G2532\"* him|strong=\"G3739\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3739\"*, “Tell|strong=\"G3004\"* us|strong=\"G3004\"* who|strong=\"G3739\"* it|strong=\"G2532\"* is|strong=\"G1510\"* of|strong=\"G4012\"* whom|strong=\"G3739\"* he|strong=\"G2532\"* speaks|strong=\"G3004\"*.”" + }, + { + "verseNum": 25, + "text": "He|strong=\"G3588\"*, leaning back, as|strong=\"G3779\"* he|strong=\"G3588\"* was|strong=\"G1510\"*, on|strong=\"G1909\"* Jesus|strong=\"G2424\"*’ chest|strong=\"G4738\"*, asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, who|strong=\"G5101\"* is|strong=\"G1510\"* it|strong=\"G5101\"*?”" + }, + { + "verseNum": 26, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* answered, “\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w this|strong=\"G3588\"\\+w* piece \\+w of|strong=\"G2532\"\\+w* bread \\+w when|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* dipped \\+w it|strong=\"G2532\"\\+w*.”* So|strong=\"G3767\"* when|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2424\"* dipped the|strong=\"G2532\"* piece of|strong=\"G2532\"* bread, he|strong=\"G2532\"* gave|strong=\"G1325\"* it|strong=\"G2532\"* to|strong=\"G2532\"* Judas|strong=\"G2455\"*, the|strong=\"G2532\"* son of|strong=\"G2532\"* Simon|strong=\"G4613\"* Iscariot|strong=\"G2469\"*." + }, + { + "verseNum": 27, + "text": "After|strong=\"G3326\"* the|strong=\"G2532\"* piece of|strong=\"G2532\"* bread, then|strong=\"G3767\"* Satan|strong=\"G4567\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 28, + "text": "Now|strong=\"G1161\"* nobody|strong=\"G3762\"* at|strong=\"G4314\"* the|strong=\"G1161\"* table knew|strong=\"G1097\"* why|strong=\"G5101\"* he|strong=\"G1161\"* said|strong=\"G3004\"* this|strong=\"G3778\"* to|strong=\"G4314\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 29, + "text": "For|strong=\"G1063\"* some|strong=\"G5100\"* thought|strong=\"G1380\"*, because|strong=\"G3754\"* Judas|strong=\"G2455\"* had|strong=\"G2192\"* the|strong=\"G1519\"* money|strong=\"G1101\"* box|strong=\"G1101\"*, that|strong=\"G3754\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “Buy what|strong=\"G3739\"* things|strong=\"G3588\"* we|strong=\"G3739\"* need|strong=\"G5532\"* for|strong=\"G1063\"* the|strong=\"G1519\"* feast|strong=\"G1859\"*,” or|strong=\"G2228\"* that|strong=\"G3754\"* he|strong=\"G3739\"* should|strong=\"G5100\"* give|strong=\"G1325\"* something|strong=\"G5100\"* to|strong=\"G1519\"* the|strong=\"G1519\"* poor|strong=\"G4434\"*." + }, + { + "verseNum": 30, + "text": "Therefore|strong=\"G3767\"* having|strong=\"G3767\"* received|strong=\"G2983\"* that|strong=\"G3588\"* morsel|strong=\"G5596\"*, he|strong=\"G1161\"* went|strong=\"G1831\"* out|strong=\"G1831\"* immediately|strong=\"G2112\"*. It|strong=\"G1161\"* was|strong=\"G1510\"* night|strong=\"G3571\"*." + }, + { + "verseNum": 31, + "text": "When|strong=\"G3753\"* he|strong=\"G2532\"* had|strong=\"G2424\"* gone|strong=\"G1831\"* out|strong=\"G1831\"*, Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “\\+w Now|strong=\"G3568\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w glorified|strong=\"G1392\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w glorified|strong=\"G1392\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w glorified|strong=\"G1392\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w God|strong=\"G2316\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w glorify|strong=\"G1392\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w glorify|strong=\"G1392\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w immediately|strong=\"G2112\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w Little|strong=\"G3398\"\\+w* \\+w children|strong=\"G5040\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w while|strong=\"G3398\"\\+w* \\+w longer|strong=\"G2089\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Jews|strong=\"G2453\"\\+w*, ‘\\+w Where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w going|strong=\"G5217\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w*,’ \\+w so|strong=\"G2532\"\\+w* \\+w now|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "\\+w A|strong=\"G2532\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w commandment|strong=\"G1785\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* love \\+w one|strong=\"G2532\"\\+w* another. \\+w Just|strong=\"G2531\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* loved \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w* love \\+w one|strong=\"G2532\"\\+w* another. *" + }, + { + "verseNum": 35, + "text": "\\+w By|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w disciples|strong=\"G3101\"\\+w*, \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w have|strong=\"G2192\"\\+w* love \\+w for|strong=\"G3754\"\\+w* \\+w one|strong=\"G3956\"\\+w* \\+w another|strong=\"G1722\"\\+w*.”*" + }, + { + "verseNum": 36, + "text": "Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G2424\"*, “Lord|strong=\"G2962\"*, where|strong=\"G3699\"* are|strong=\"G3568\"* you|strong=\"G3004\"* going|strong=\"G5217\"*?”" + }, + { + "verseNum": 37, + "text": "Peter|strong=\"G4074\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, why|strong=\"G5101\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* I|strong=\"G1473\"* follow you|strong=\"G4771\"* now|strong=\"G3756\"*? I|strong=\"G1473\"* will|strong=\"G5101\"* lay|strong=\"G5087\"* down|strong=\"G5087\"* my|strong=\"G5087\"* life|strong=\"G5590\"* for|strong=\"G5228\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 38, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Will|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w lay|strong=\"G5087\"\\+w* \\+w down|strong=\"G5087\"\\+w* \\+w your|strong=\"G5087\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w for|strong=\"G5228\"\\+w* \\+w me|strong=\"G1473\"\\+w*? \\+w Most|strong=\"G5228\"\\+w* \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w the|strong=\"G3588\"\\+w* rooster won’\\+w t|strong=\"G3588\"\\+w* \\+w crow|strong=\"G5455\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G1473\"\\+w* denied \\+w me|strong=\"G1473\"\\+w* \\+w three|strong=\"G5151\"\\+w* \\+w times|strong=\"G5151\"\\+w*.*" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "“Don’\\+w t|strong=\"G3588\"\\+w* \\+w let|strong=\"G5015\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w troubled|strong=\"G5015\"\\+w*. \\+w Believe|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*. \\+w Believe|strong=\"G4100\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 2, + "text": "\\+w In|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s \\+w house|strong=\"G3614\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w many|strong=\"G4183\"\\+w* homes. \\+w If|strong=\"G1487\"\\+w* \\+w it|strong=\"G3754\"\\+w* weren’\\+w t|strong=\"G3588\"\\+w* \\+w so|strong=\"G1161\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w would|strong=\"G1722\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w going|strong=\"G4198\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w prepare|strong=\"G2090\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w place|strong=\"G5117\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w prepare|strong=\"G2090\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w place|strong=\"G5117\"\\+w* \\+w for|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w again|strong=\"G3825\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w receive|strong=\"G3880\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w myself|strong=\"G1683\"\\+w*; \\+w that|strong=\"G2443\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w You|strong=\"G2532\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w go|strong=\"G5217\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w way|strong=\"G3598\"\\+w*.”*" + }, + { + "verseNum": 5, + "text": "Thomas|strong=\"G2381\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, we|strong=\"G2532\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* where|strong=\"G4226\"* you|strong=\"G3004\"* are|strong=\"G3588\"* going|strong=\"G5217\"*. How|strong=\"G4459\"* can|strong=\"G1410\"* we|strong=\"G2532\"* know|strong=\"G1492\"* the|strong=\"G2532\"* way|strong=\"G3598\"*?”" + }, + { + "verseNum": 6, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w way|strong=\"G3598\"\\+w*, \\+w the|strong=\"G2532\"\\+w* truth, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w life|strong=\"G2222\"\\+w*. \\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w you|strong=\"G1487\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w also|strong=\"G2532\"\\+w*. \\+w From|strong=\"G2532\"\\+w* \\+w now|strong=\"G2532\"\\+w* \\+w on|strong=\"G3588\"\\+w*, \\+w you|strong=\"G1487\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w him|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 8, + "text": "Philip|strong=\"G5376\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, show|strong=\"G1166\"* us|strong=\"G3004\"* the|strong=\"G2532\"* Father|strong=\"G3962\"*, and|strong=\"G2532\"* that|strong=\"G3588\"* will|strong=\"G2532\"* be|strong=\"G2532\"* enough for|strong=\"G2532\"* us|strong=\"G3004\"*.”" + }, + { + "verseNum": 9, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Have|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w such|strong=\"G5118\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w long|strong=\"G5550\"\\+w* \\+w time|strong=\"G5550\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w Philip|strong=\"G5376\"\\+w*? \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. \\+w How|strong=\"G4459\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Show|strong=\"G1166\"\\+w* \\+w us|strong=\"G3004\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’? *" + }, + { + "verseNum": 10, + "text": "Don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*? \\+w The|strong=\"G1722\"\\+w* \\+w words|strong=\"G4487\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w speak|strong=\"G2980\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w myself|strong=\"G1683\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w lives|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w does|strong=\"G4160\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w works|strong=\"G2041\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w Believe|strong=\"G4100\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*; \\+w or|strong=\"G2532\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w very|strong=\"G2532\"\\+w* \\+w works|strong=\"G2041\"\\+w*’ \\+w sake|strong=\"G1223\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w also|strong=\"G2532\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w these|strong=\"G3778\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w going|strong=\"G4198\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w Whatever|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w will|strong=\"G2532\"\\+w* ask \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w glorified|strong=\"G1392\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w will|strong=\"G1473\"\\+w* ask \\+w anything|strong=\"G5100\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w it|strong=\"G1437\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w you|strong=\"G1437\"\\+w* love \\+w me|strong=\"G1473\"\\+w*, \\+w keep|strong=\"G5083\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w commandments|strong=\"G1785\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w I|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w pray|strong=\"G2065\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w another|strong=\"G3588\"\\+w* Counselor, *+ 14:16 Greek παρακλητον: Counselor, Helper, Intercessor, Advocate, and Comforter.* \\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w forever|strong=\"G1519\"\\+w*:*" + }, + { + "verseNum": 17, + "text": "\\+w the|strong=\"G1722\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w of|strong=\"G4151\"\\+w* truth, \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w receive|strong=\"G2983\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w it|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w see|strong=\"G2334\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w him|strong=\"G3588\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w lives|strong=\"G3306\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w I|strong=\"G2064\"\\+w* \\+w will|strong=\"G2064\"\\+w* \\+w not|strong=\"G3756\"\\+w* leave \\+w you|strong=\"G5210\"\\+w* \\+w orphans|strong=\"G3737\"\\+w*. \\+w I|strong=\"G2064\"\\+w* \\+w will|strong=\"G2064\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w Yet|strong=\"G2089\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w while|strong=\"G3398\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w see|strong=\"G2334\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w no|strong=\"G3765\"\\+w* \\+w more|strong=\"G2089\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w see|strong=\"G2334\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w Because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w live|strong=\"G2198\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w live|strong=\"G2198\"\\+w* \\+w also|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w In|strong=\"G1722\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w One|strong=\"G1438\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w commandments|strong=\"G1785\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w keeps|strong=\"G5083\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w that|strong=\"G3588\"\\+w* person \\+w is|strong=\"G1510\"\\+w* \\+w one|strong=\"G1438\"\\+w* \\+w who|strong=\"G3588\"\\+w* loves \\+w me|strong=\"G1473\"\\+w*. \\+w One|strong=\"G1438\"\\+w* \\+w who|strong=\"G3588\"\\+w* loves \\+w me|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* loved \\+w by|strong=\"G5259\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* love \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* reveal \\+w myself|strong=\"G1683\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "Judas|strong=\"G2455\"* (not|strong=\"G3756\"* Iscariot|strong=\"G2469\"*) said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, what|strong=\"G5101\"* has|strong=\"G2962\"* happened|strong=\"G1096\"* that|strong=\"G3754\"* you|strong=\"G3754\"* are|strong=\"G3588\"* about|strong=\"G3195\"* to|strong=\"G2532\"* reveal yourself|strong=\"G4572\"* to|strong=\"G2532\"* us|strong=\"G3004\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* to|strong=\"G2532\"* the|strong=\"G2532\"* world|strong=\"G2889\"*?”" + }, + { + "verseNum": 23, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w If|strong=\"G1437\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w man|strong=\"G5100\"\\+w* loves \\+w me|strong=\"G1473\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w keep|strong=\"G5083\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w word|strong=\"G3056\"\\+w*. \\+w My|strong=\"G5083\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w will|strong=\"G2532\"\\+w* love \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w we|strong=\"G1437\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w our|strong=\"G2424\"\\+w* home \\+w with|strong=\"G4314\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* love \\+w me|strong=\"G1473\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w keep|strong=\"G5083\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w words|strong=\"G3056\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* hear isn’\\+w t|strong=\"G3588\"\\+w* \\+w mine|strong=\"G1699\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s \\+w who|strong=\"G3739\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "“\\+w I|strong=\"G3778\"\\+w* \\+w have|strong=\"G5210\"\\+w* \\+w said|strong=\"G2980\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w to|strong=\"G2980\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w while|strong=\"G2980\"\\+w* \\+w still|strong=\"G3306\"\\+w* \\+w living|strong=\"G3306\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G1722\"\\+w* Counselor, \\+w the|strong=\"G1722\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w*, \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w send|strong=\"G3992\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w will|strong=\"G2532\"\\+w* \\+w teach|strong=\"G1321\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w remind|strong=\"G5279\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w of|strong=\"G4151\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w Peace|strong=\"G1515\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w leave|strong=\"G1325\"\\+w* \\+w with|strong=\"G2588\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w My|strong=\"G1699\"\\+w* \\+w peace|strong=\"G1515\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w*; \\+w not|strong=\"G3756\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w gives|strong=\"G1325\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w*. Don’\\+w t|strong=\"G3588\"\\+w* \\+w let|strong=\"G5015\"\\+w* \\+w your|strong=\"G1325\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w be|strong=\"G3756\"\\+w* \\+w troubled|strong=\"G5015\"\\+w*, \\+w neither|strong=\"G3756\"\\+w* \\+w let|strong=\"G5015\"\\+w* \\+w it|strong=\"G2531\"\\+w* \\+w be|strong=\"G3756\"\\+w* \\+w fearful|strong=\"G1168\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w You|strong=\"G5210\"\\+w* heard \\+w how|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w going|strong=\"G5217\"\\+w* \\+w away|strong=\"G5217\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w back|strong=\"G4314\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w*.’ \\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G5210\"\\+w* loved \\+w me|strong=\"G1473\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w rejoiced|strong=\"G5463\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w* ‘\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w going|strong=\"G5217\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*;’ \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w I|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w Now|strong=\"G3568\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w before|strong=\"G4250\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w happens|strong=\"G1096\"\\+w* \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w happens|strong=\"G1096\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w believe|strong=\"G4100\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w more|strong=\"G4183\"\\+w* \\+w speak|strong=\"G2980\"\\+w* \\+w much|strong=\"G4183\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1722\"\\+w* prince \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w comes|strong=\"G2064\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w nothing|strong=\"G3762\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* love \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w commanded|strong=\"G1781\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w*. \\+w Arise|strong=\"G1453\"\\+w*, \\+w let|strong=\"G1097\"\\+w*’s \\+w go|strong=\"G2532\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w here|strong=\"G1782\"\\+w*.*" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "“\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w true|strong=\"G3588\"\\+w* vine, \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w farmer|strong=\"G1092\"\\+w*. *" + }, + { + "verseNum": 2, + "text": "\\+w Every|strong=\"G3956\"\\+w* \\+w branch|strong=\"G2814\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w that|strong=\"G2443\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w bear|strong=\"G5342\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*, \\+w he|strong=\"G2532\"\\+w* takes away. \\+w Every|strong=\"G3956\"\\+w* \\+w branch|strong=\"G2814\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w bears|strong=\"G5342\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w prunes|strong=\"G2508\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w bear|strong=\"G5342\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w already|strong=\"G2235\"\\+w* pruned \\+w clean|strong=\"G2513\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w the|strong=\"G1223\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w have|strong=\"G1510\"\\+w* \\+w spoken|strong=\"G2980\"\\+w* \\+w to|strong=\"G2980\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w Remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w As|strong=\"G2531\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w branch|strong=\"G2814\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w bear|strong=\"G5342\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w itself|strong=\"G1438\"\\+w* \\+w unless|strong=\"G1437\"\\+w* \\+w it|strong=\"G1437\"\\+w* \\+w remains|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* vine, \\+w so|strong=\"G3779\"\\+w* \\+w neither|strong=\"G3761\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w unless|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* vine. \\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w branches|strong=\"G2814\"\\+w*. \\+w He|strong=\"G3754\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w remains|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w and|strong=\"G4160\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w bears|strong=\"G4160\"\\+w* \\+w much|strong=\"G4183\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w apart|strong=\"G5565\"\\+w* \\+w from|strong=\"G3756\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w nothing|strong=\"G3762\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w man|strong=\"G5100\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* thrown \\+w out|strong=\"G1854\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w branch|strong=\"G2814\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w withered|strong=\"G3583\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w gather|strong=\"G4863\"\\+w* \\+w them|strong=\"G3588\"\\+w*, throw \\+w them|strong=\"G3588\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w fire|strong=\"G4442\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w burned|strong=\"G2545\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w words|strong=\"G4487\"\\+w* \\+w remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2309\"\\+w* ask \\+w whatever|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w desire|strong=\"G2309\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w for|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*.*" + }, + { + "verseNum": 8, + "text": "“\\+w In|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w glorified|strong=\"G1392\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w bear|strong=\"G5342\"\\+w* \\+w much|strong=\"G4183\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w so|strong=\"G2443\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w disciples|strong=\"G3101\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w Even|strong=\"G2531\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w has|strong=\"G3962\"\\+w* loved \\+w me|strong=\"G1473\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w also|strong=\"G2504\"\\+w* \\+w have|strong=\"G1473\"\\+w* loved \\+w you|strong=\"G4771\"\\+w*. \\+w Remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1699\"\\+w* love. *" + }, + { + "verseNum": 10, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w keep|strong=\"G5083\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w commandments|strong=\"G1785\"\\+w*, \\+w you|strong=\"G1437\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G5083\"\\+w* love, \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w kept|strong=\"G5083\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s \\+w commandments|strong=\"G1785\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* love. *" + }, + { + "verseNum": 11, + "text": "\\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w spoken|strong=\"G2980\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w joy|strong=\"G5479\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w remain|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w joy|strong=\"G5479\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w made|strong=\"G4137\"\\+w* \\+w full|strong=\"G4137\"\\+w*.*" + }, + { + "verseNum": 12, + "text": "“\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w commandment|strong=\"G1785\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* love \\+w one|strong=\"G3588\"\\+w* \\+w another|strong=\"G3588\"\\+w*, \\+w even|strong=\"G2531\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w I|strong=\"G3778\"\\+w* \\+w have|strong=\"G1510\"\\+w* loved \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w Greater|strong=\"G3173\"\\+w* love \\+w has|strong=\"G2192\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w than|strong=\"G5228\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w that|strong=\"G2443\"\\+w* someone \\+w lay|strong=\"G5087\"\\+w* \\+w down|strong=\"G5087\"\\+w* \\+w his|strong=\"G2192\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w for|strong=\"G5228\"\\+w* \\+w his|strong=\"G2192\"\\+w* \\+w friends|strong=\"G5384\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w friends|strong=\"G5384\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w command|strong=\"G1781\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w No|strong=\"G3756\"\\+w* \\+w longer|strong=\"G3765\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w call|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w servants|strong=\"G1401\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w servant|strong=\"G1401\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w does|strong=\"G4160\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w called|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w friends|strong=\"G5384\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w everything|strong=\"G3956\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* heard \\+w from|strong=\"G3844\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w known|strong=\"G1107\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w You|strong=\"G5210\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w choose|strong=\"G1586\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w chose|strong=\"G1586\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w appointed|strong=\"G5087\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w should|strong=\"G5100\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w bear|strong=\"G5342\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w your|strong=\"G5087\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w should|strong=\"G5100\"\\+w* \\+w remain|strong=\"G3306\"\\+w*; \\+w that|strong=\"G2443\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* ask \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w*.*" + }, + { + "verseNum": 17, + "text": "“\\+w I|strong=\"G3778\"\\+w* \\+w command|strong=\"G1781\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2443\"\\+w* love \\+w one|strong=\"G3778\"\\+w* another. *" + }, + { + "verseNum": 18, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w hates|strong=\"G3404\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w has|strong=\"G2889\"\\+w* \\+w hated|strong=\"G3404\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w before|strong=\"G4413\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w hated|strong=\"G3404\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w the|strong=\"G1537\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w would|strong=\"G1510\"\\+w* \\+w love|strong=\"G5368\"\\+w* \\+w its|strong=\"G5368\"\\+w* \\+w own|strong=\"G2398\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w since|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w chose|strong=\"G1586\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w therefore|strong=\"G1223\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w hates|strong=\"G3404\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w Remember|strong=\"G3421\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*: ‘\\+w A|strong=\"G2532\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w lord|strong=\"G2962\"\\+w*.’*+ 15:20 John 13:16* \\+w If|strong=\"G1487\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w persecuted|strong=\"G1377\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w persecute|strong=\"G1377\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w If|strong=\"G1487\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w kept|strong=\"G5083\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w keep|strong=\"G5083\"\\+w* \\+w yours|strong=\"G4771\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w But|strong=\"G3588\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w name|strong=\"G3686\"\\+w*’s \\+w sake|strong=\"G1223\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w they|strong=\"G3588\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w spoken|strong=\"G2980\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w had|strong=\"G2192\"\\+w* sin; \\+w but|strong=\"G1161\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w excuse|strong=\"G4392\"\\+w* \\+w for|strong=\"G4012\"\\+w* \\+w their|strong=\"G2532\"\\+w* sin. *" + }, + { + "verseNum": 23, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w hates|strong=\"G3404\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w hates|strong=\"G3404\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w also|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w I|strong=\"G1473\"\\+w* hadn’\\+w t|strong=\"G3588\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w did|strong=\"G4160\"\\+w*, \\+w they|strong=\"G2532\"\\+w* wouldn’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w had|strong=\"G2192\"\\+w* sin. \\+w But|strong=\"G1161\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w hated|strong=\"G3404\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w But|strong=\"G3551\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w happened|strong=\"G3588\"\\+w* \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w be|strong=\"G2443\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w their|strong=\"G1722\"\\+w* \\+w law|strong=\"G3551\"\\+w*, ‘\\+w They|strong=\"G3588\"\\+w* \\+w hated|strong=\"G3404\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w without|strong=\"G3588\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w cause|strong=\"G3588\"\\+w*.’*+ 15:25 Psalms 35:19; 69:4*" + }, + { + "verseNum": 26, + "text": "“\\+w When|strong=\"G3752\"\\+w* \\+w the|strong=\"G3588\"\\+w* Counselor*+ 15:26 Greek Parakletos: Counselor, Helper, Advocate, Intercessor, and Comforter.* \\+w has|strong=\"G3962\"\\+w* \\+w come|strong=\"G2064\"\\+w*, \\+w whom|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w send|strong=\"G3992\"\\+w* \\+w to|strong=\"G2064\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w the|strong=\"G3588\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w of|strong=\"G4012\"\\+w* truth, \\+w who|strong=\"G3739\"\\+w* \\+w proceeds|strong=\"G1607\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w he|strong=\"G3739\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w testify|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w testify|strong=\"G3140\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* beginning.*" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "“\\+w I|strong=\"G3778\"\\+w* \\+w have|strong=\"G5210\"\\+w* \\+w said|strong=\"G2980\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* wouldn’t \\+w be|strong=\"G3361\"\\+w* caused \\+w to|strong=\"G2443\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*. *" + }, + { + "verseNum": 2, + "text": "\\+w They|strong=\"G3588\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w put|strong=\"G4160\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w out|strong=\"G2064\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G3956\"\\+w* synagogues. Yes, \\+w the|strong=\"G3956\"\\+w* \\+w time|strong=\"G5610\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w whoever|strong=\"G3956\"\\+w* kills \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w think|strong=\"G1380\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w offers|strong=\"G4374\"\\+w* \\+w service|strong=\"G2999\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w**+ 16:3 TR adds “to you”* \\+w because|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w nor|strong=\"G3761\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w time|strong=\"G5610\"\\+w* \\+w comes|strong=\"G2064\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w remember|strong=\"G3421\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w about|strong=\"G2980\"\\+w* \\+w them|strong=\"G3588\"\\+w*. \\+w I|strong=\"G1473\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* beginning, \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w going|strong=\"G5217\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w none|strong=\"G3762\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w asks|strong=\"G2065\"\\+w* \\+w me|strong=\"G1473\"\\+w*, ‘\\+w Where|strong=\"G4226\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w going|strong=\"G5217\"\\+w*?’ *" + }, + { + "verseNum": 6, + "text": "\\+w But|strong=\"G3588\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w have|strong=\"G3748\"\\+w* \\+w told|strong=\"G2980\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*, \\+w sorrow|strong=\"G3077\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w filled|strong=\"G4137\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w heart|strong=\"G2588\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w Nevertheless|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w the|strong=\"G1161\"\\+w* truth: \\+w It|strong=\"G1161\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w your|strong=\"G1437\"\\+w* \\+w advantage|strong=\"G4851\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w away|strong=\"G4198\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w away|strong=\"G4198\"\\+w*, \\+w the|strong=\"G1161\"\\+w* Counselor won’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w go|strong=\"G4198\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w send|strong=\"G3992\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w When|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2889\"\\+w* \\+w come|strong=\"G2064\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w convict|strong=\"G1651\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w about|strong=\"G4012\"\\+w* sin, \\+w about|strong=\"G4012\"\\+w* \\+w righteousness|strong=\"G1343\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*; *" + }, + { + "verseNum": 9, + "text": "\\+w about|strong=\"G4012\"\\+w* sin, \\+w because|strong=\"G3754\"\\+w* \\+w they|strong=\"G3754\"\\+w* don’t \\+w believe|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w*; *" + }, + { + "verseNum": 10, + "text": "\\+w about|strong=\"G4012\"\\+w* \\+w righteousness|strong=\"G1343\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w going|strong=\"G5217\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3754\"\\+w* won’\\+w t|strong=\"G3588\"\\+w* \\+w see|strong=\"G2334\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w any|strong=\"G3765\"\\+w* \\+w more|strong=\"G3765\"\\+w*; *" + }, + { + "verseNum": 11, + "text": "\\+w about|strong=\"G4012\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w the|strong=\"G1161\"\\+w* prince \\+w of|strong=\"G4012\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w has|strong=\"G3778\"\\+w* been \\+w judged|strong=\"G2919\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "“\\+w I|strong=\"G3004\"\\+w* \\+w still|strong=\"G2089\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w things|strong=\"G4183\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, but \\+w you|strong=\"G5210\"\\+w* \\+w can|strong=\"G1410\"\\+w*’t \\+w bear|strong=\"G2192\"\\+w* \\+w them|strong=\"G3004\"\\+w* \\+w now|strong=\"G2089\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w However|strong=\"G1161\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w he|strong=\"G2532\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w of|strong=\"G4151\"\\+w* truth, \\+w has|strong=\"G4151\"\\+w* \\+w come|strong=\"G2064\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w guide|strong=\"G3594\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w into|strong=\"G1722\"\\+w* \\+w all|strong=\"G3956\"\\+w* truth, \\+w for|strong=\"G1063\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w speak|strong=\"G2980\"\\+w* \\+w from|strong=\"G2064\"\\+w* \\+w himself|strong=\"G1438\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w whatever|strong=\"G3745\"\\+w* \\+w he|strong=\"G2532\"\\+w* hears, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w speak|strong=\"G2980\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* declare \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w glorify|strong=\"G1392\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w take|strong=\"G2983\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w mine|strong=\"G1699\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* declare \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w All|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w mine|strong=\"G1699\"\\+w*; \\+w therefore|strong=\"G1223\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w takes|strong=\"G2983\"\\+w**+ 16:15 TR reads “will take” instead of “takes”* \\+w of|strong=\"G1537\"\\+w* \\+w mine|strong=\"G1699\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* declare \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "“\\+w A|strong=\"G2532\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w while|strong=\"G3398\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3708\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3765\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w Again|strong=\"G3825\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w while|strong=\"G3398\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3708\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 17, + "text": "Some|strong=\"G3739\"* of|strong=\"G1537\"* his|strong=\"G3708\"* disciples|strong=\"G3101\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G4314\"* one|strong=\"G3739\"* another|strong=\"G3739\"*, “What|strong=\"G5101\"* is|strong=\"G1510\"* this|strong=\"G3778\"* that|strong=\"G3754\"* he|strong=\"G2532\"* says|strong=\"G3004\"* to|strong=\"G4314\"* us|strong=\"G3004\"*, ‘\\+w A|strong=\"G2532\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w while|strong=\"G3398\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3739\"\\+w* won’\\+w t|strong=\"G3588\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w again|strong=\"G3825\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w while|strong=\"G3398\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w*;’* and|strong=\"G2532\"*, ‘\\+w Because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’*?”" + }, + { + "verseNum": 18, + "text": "They|strong=\"G3588\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"*, “What|strong=\"G5101\"* is|strong=\"G1510\"* this|strong=\"G3778\"* that|strong=\"G3739\"* he|strong=\"G3739\"* says|strong=\"G3004\"*, ‘\\+w A|strong=\"G1510\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w while|strong=\"G2980\"\\+w*’*? We|strong=\"G3739\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* what|strong=\"G5101\"* he|strong=\"G3739\"* is|strong=\"G1510\"* saying|strong=\"G3004\"*.”" + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"G2532\"* Jesus|strong=\"G2424\"* perceived|strong=\"G1097\"* that|strong=\"G3754\"* they|strong=\"G2532\"* wanted|strong=\"G2309\"* to|strong=\"G2532\"* ask|strong=\"G2065\"* him|strong=\"G3708\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3004\"*, “\\+w Do|strong=\"G2532\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w inquire|strong=\"G2212\"\\+w* \\+w among|strong=\"G3326\"\\+w* yourselves \\+w concerning|strong=\"G4012\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w A|strong=\"G2532\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w while|strong=\"G3398\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3754\"\\+w* won’t \\+w see|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w again|strong=\"G3825\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w while|strong=\"G3398\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w*’? *" + }, + { + "verseNum": 20, + "text": "Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w weep|strong=\"G2799\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w lament|strong=\"G2354\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rejoice|strong=\"G5463\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w sorrowful|strong=\"G3076\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w sorrow|strong=\"G3077\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w turned|strong=\"G1096\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w joy|strong=\"G5479\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w A|strong=\"G2192\"\\+w* \\+w woman|strong=\"G1135\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w she|strong=\"G1161\"\\+w* \\+w gives|strong=\"G1223\"\\+w* \\+w birth|strong=\"G5088\"\\+w*, \\+w has|strong=\"G2192\"\\+w* \\+w sorrow|strong=\"G3077\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w her|strong=\"G1519\"\\+w* \\+w time|strong=\"G5610\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w come|strong=\"G2064\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w she|strong=\"G1161\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w delivered|strong=\"G5088\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w child|strong=\"G3813\"\\+w*, \\+w she|strong=\"G1161\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w remember|strong=\"G3421\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w anguish|strong=\"G2347\"\\+w* \\+w any|strong=\"G2192\"\\+w* \\+w more|strong=\"G3765\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w joy|strong=\"G5479\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w a|strong=\"G2192\"\\+w* human \\+w being|strong=\"G2192\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w born|strong=\"G1080\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w world|strong=\"G2889\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w Therefore|strong=\"G3767\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w sorrow|strong=\"G3077\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w again|strong=\"G3825\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rejoice|strong=\"G5463\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w take|strong=\"G1161\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w joy|strong=\"G5479\"\\+w* away \\+w from|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*.*" + }, + { + "verseNum": 23, + "text": "“\\+w In|strong=\"G1722\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w ask|strong=\"G2065\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w no|strong=\"G3756\"\\+w* questions. Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w whatever|strong=\"G5100\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w ask|strong=\"G2065\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w Until|strong=\"G2193\"\\+w* \\+w now|strong=\"G2532\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* asked \\+w nothing|strong=\"G3762\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w*. Ask, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w receive|strong=\"G2983\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w joy|strong=\"G5479\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w made|strong=\"G4137\"\\+w* \\+w full|strong=\"G4137\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "“\\+w I|strong=\"G3778\"\\+w* \\+w have|strong=\"G5210\"\\+w* \\+w spoken|strong=\"G2980\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w to|strong=\"G2064\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* figures \\+w of|strong=\"G4012\"\\+w* \\+w speech|strong=\"G3954\"\\+w*. \\+w But|strong=\"G3588\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w time|strong=\"G5610\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w when|strong=\"G3753\"\\+w* \\+w I|strong=\"G3778\"\\+w* \\+w will|strong=\"G3778\"\\+w* \\+w no|strong=\"G3765\"\\+w* \\+w more|strong=\"G3765\"\\+w* \\+w speak|strong=\"G2980\"\\+w* \\+w to|strong=\"G2064\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* figures \\+w of|strong=\"G4012\"\\+w* \\+w speech|strong=\"G3954\"\\+w*, \\+w but|strong=\"G3588\"\\+w* \\+w will|strong=\"G3778\"\\+w* \\+w tell|strong=\"G2980\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w plainly|strong=\"G3954\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w In|strong=\"G1722\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w ask|strong=\"G2065\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w pray|strong=\"G2065\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w*, *" + }, + { + "verseNum": 27, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* himself \\+w loves|strong=\"G5368\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w loved|strong=\"G5368\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w believed|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G1831\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w I|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w*. \\+w Again|strong=\"G3825\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w leave|strong=\"G1831\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*.”*" + }, + { + "verseNum": 29, + "text": "His|strong=\"G1722\"* disciples|strong=\"G3101\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Behold|strong=\"G2396\"*, now|strong=\"G3568\"* you|strong=\"G1722\"* are|strong=\"G3588\"* speaking|strong=\"G2980\"* plainly|strong=\"G3954\"*, and|strong=\"G2532\"* using|strong=\"G3004\"* no|strong=\"G3762\"* figures of|strong=\"G2532\"* speech|strong=\"G3954\"*." + }, + { + "verseNum": 30, + "text": "Now|strong=\"G3568\"* we|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G4771\"* know|strong=\"G1492\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G2532\"* don’t need|strong=\"G5532\"* for|strong=\"G3754\"* anyone|strong=\"G5100\"* to|strong=\"G2443\"* question|strong=\"G2065\"* you|strong=\"G4771\"*. By|strong=\"G1722\"* this|strong=\"G3778\"* we|strong=\"G3754\"* believe|strong=\"G4100\"* that|strong=\"G3754\"* you|strong=\"G4771\"* came|strong=\"G1831\"* from|strong=\"G2532\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 31, + "text": "Jesus|strong=\"G2424\"* answered them|strong=\"G4100\"*, “\\+w Do|strong=\"G4100\"\\+w* \\+w you|strong=\"G2424\"\\+w* now \\+w believe|strong=\"G4100\"\\+w*? *" + }, + { + "verseNum": 32, + "text": "\\+w Behold|strong=\"G2400\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w time|strong=\"G5610\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w coming|strong=\"G2064\"\\+w*, yes, \\+w and|strong=\"G2532\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w now|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w scattered|strong=\"G4650\"\\+w*, \\+w everyone|strong=\"G1538\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w place|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w will|strong=\"G1510\"\\+w* leave \\+w me|strong=\"G1473\"\\+w* \\+w alone|strong=\"G3441\"\\+w*. \\+w Yet|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w alone|strong=\"G3441\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w told|strong=\"G2980\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w peace|strong=\"G1515\"\\+w*. \\+w In|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w trouble|strong=\"G2347\"\\+w*; \\+w but|strong=\"G3588\"\\+w* cheer \\+w up|strong=\"G1722\"\\+w*! \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w overcome|strong=\"G3528\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w*.” *" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, then|strong=\"G2532\"* lifting|strong=\"G1869\"* up|strong=\"G1869\"* his|strong=\"G1519\"* eyes|strong=\"G3788\"* to|strong=\"G1519\"* heaven|strong=\"G3772\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Father|strong=\"G3962\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w time|strong=\"G5610\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w come|strong=\"G2064\"\\+w*. \\+w Glorify|strong=\"G1392\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w glorify|strong=\"G1392\"\\+w* \\+w you|strong=\"G4771\"\\+w*; *" + }, + { + "verseNum": 2, + "text": "\\+w even|strong=\"G2531\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w him|strong=\"G1325\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w over|strong=\"G1849\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w flesh|strong=\"G4561\"\\+w*, \\+w so|strong=\"G2443\"\\+w* \\+w he|strong=\"G3739\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w give|strong=\"G1325\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G3956\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w him|strong=\"G1325\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w should|strong=\"G2316\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w only|strong=\"G3441\"\\+w* \\+w true|strong=\"G3588\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w sent|strong=\"G2316\"\\+w*, \\+w Jesus|strong=\"G2424\"\\+w* \\+w Christ|strong=\"G5547\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w glorified|strong=\"G1392\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w accomplished|strong=\"G5048\"\\+w* \\+w the|strong=\"G1909\"\\+w* \\+w work|strong=\"G2041\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w do|strong=\"G4160\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w Now|strong=\"G3568\"\\+w*, \\+w Father|strong=\"G3962\"\\+w*, \\+w glorify|strong=\"G1392\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w own|strong=\"G4572\"\\+w* \\+w self|strong=\"G4572\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w existed|strong=\"G1510\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "“\\+w I|strong=\"G1473\"\\+w* \\+w revealed|strong=\"G5319\"\\+w* \\+w your|strong=\"G4674\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w people|strong=\"G1510\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w yours|strong=\"G4771\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1325\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w kept|strong=\"G5083\"\\+w* \\+w your|strong=\"G4674\"\\+w* \\+w word|strong=\"G3056\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w Now|strong=\"G3568\"\\+w* \\+w they|strong=\"G3754\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w whatever|strong=\"G3745\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w you|strong=\"G4771\"\\+w*, *" + }, + { + "verseNum": 8, + "text": "\\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w words|strong=\"G4487\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w knew|strong=\"G1097\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w sure|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G1831\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w you|strong=\"G4771\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w believed|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w me|strong=\"G1325\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w pray|strong=\"G2065\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w them|strong=\"G3588\"\\+w*. \\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w pray|strong=\"G2065\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w but|strong=\"G3588\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w yours|strong=\"G4771\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w All|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w mine|strong=\"G1699\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w yours|strong=\"G4674\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w yours|strong=\"G4674\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w mine|strong=\"G1699\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w glorified|strong=\"G1392\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w no|strong=\"G3765\"\\+w* \\+w more|strong=\"G3765\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w these|strong=\"G3739\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G4771\"\\+w*. Holy \\+w Father|strong=\"G3962\"\\+w*, \\+w keep|strong=\"G5083\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w through|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w one|strong=\"G1520\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w we|strong=\"G2249\"\\+w* \\+w are|strong=\"G1510\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w While|strong=\"G1722\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* world, \\+w I|strong=\"G1473\"\\+w* \\+w kept|strong=\"G5083\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w name|strong=\"G3686\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w kept|strong=\"G5083\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w*. \\+w None|strong=\"G3762\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* lost \\+w except|strong=\"G1487\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w of|strong=\"G1537\"\\+w* destruction, \\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Scripture|strong=\"G1124\"\\+w* \\+w might|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w say|strong=\"G2980\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w joy|strong=\"G5479\"\\+w* \\+w made|strong=\"G4137\"\\+w* \\+w full|strong=\"G4137\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w themselves|strong=\"G1438\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w hated|strong=\"G3404\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w I|strong=\"G2443\"\\+w* \\+w pray|strong=\"G2065\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G1438\"\\+w* \\+w would|strong=\"G1438\"\\+w* \\+w take|strong=\"G2443\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w but|strong=\"G3588\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G1438\"\\+w* \\+w would|strong=\"G1438\"\\+w* \\+w keep|strong=\"G5083\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w one|strong=\"G1438\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w They|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w even|strong=\"G2531\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w world|strong=\"G2889\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "Sanctify \\+w them|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G4674\"\\+w* truth. \\+w Your|strong=\"G4674\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w is|strong=\"G1510\"\\+w* truth.*+ 17:17 Psalms 119:142*" + }, + { + "verseNum": 18, + "text": "\\+w As|strong=\"G2531\"\\+w* \\+w you|strong=\"G1438\"\\+w* sent \\+w me|strong=\"G1473\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w even|strong=\"G2531\"\\+w* \\+w so|strong=\"G1519\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* sent \\+w them|strong=\"G3588\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w world|strong=\"G2889\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w For|strong=\"G5228\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w sakes|strong=\"G5228\"\\+w* \\+w I|strong=\"G1473\"\\+w* sanctify \\+w myself|strong=\"G1683\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w themselves|strong=\"G1722\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* sanctified \\+w in|strong=\"G1722\"\\+w* truth. *" + }, + { + "verseNum": 20, + "text": "“\\+w Not|strong=\"G3756\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w only|strong=\"G3440\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w pray|strong=\"G2065\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w*, *" + }, + { + "verseNum": 21, + "text": "\\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w one|strong=\"G1520\"\\+w*; \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w Father|strong=\"G3962\"\\+w*, \\+w are|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w us|strong=\"G2249\"\\+w*; \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w The|strong=\"G3588\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w one|strong=\"G1520\"\\+w*, \\+w even|strong=\"G2531\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w we|strong=\"G2249\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w one|strong=\"G1520\"\\+w*, *" + }, + { + "verseNum": 23, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w perfected|strong=\"G5048\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w one|strong=\"G1520\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* loved \\+w them|strong=\"G3588\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w you|strong=\"G4771\"\\+w* loved \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w Father|strong=\"G3962\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w desire|strong=\"G2309\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w also|strong=\"G2548\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G2309\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w see|strong=\"G2334\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G2309\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w you|strong=\"G3739\"\\+w* loved \\+w me|strong=\"G1325\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w foundation|strong=\"G2602\"\\+w* \\+w of|strong=\"G1391\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w world|strong=\"G2889\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w Righteous|strong=\"G1342\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w* hasn’\\+w t|strong=\"G3588\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w knew|strong=\"G1097\"\\+w* \\+w you|strong=\"G4771\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w knew|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w made|strong=\"G1107\"\\+w* \\+w known|strong=\"G1107\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w make|strong=\"G1107\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w known|strong=\"G1107\"\\+w*; \\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G1722\"\\+w* love \\+w with|strong=\"G1722\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* loved \\+w me|strong=\"G1473\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G2532\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* spoken|strong=\"G3004\"* these|strong=\"G3778\"* words|strong=\"G2532\"*, he|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* with|strong=\"G4862\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* over|strong=\"G4008\"* the|strong=\"G2532\"* brook|strong=\"G5493\"* Kidron|strong=\"G2748\"*, where|strong=\"G3699\"* there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* garden|strong=\"G2779\"*, into|strong=\"G1519\"* which|strong=\"G3739\"* he|strong=\"G2532\"* and|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* entered|strong=\"G1525\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"G1161\"* Judas|strong=\"G2455\"*, who|strong=\"G3588\"* betrayed|strong=\"G3860\"* him|strong=\"G3588\"*, also|strong=\"G2532\"* knew|strong=\"G1492\"* the|strong=\"G2532\"* place|strong=\"G5117\"*, for|strong=\"G3754\"* Jesus|strong=\"G2424\"* often|strong=\"G4178\"* met|strong=\"G4863\"* there|strong=\"G1563\"* with|strong=\"G3326\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"*." + }, + { + "verseNum": 3, + "text": "Judas|strong=\"G2455\"* then|strong=\"G3767\"*, having|strong=\"G2532\"* taken|strong=\"G2983\"* a|strong=\"G2532\"* detachment of|strong=\"G1537\"* soldiers and|strong=\"G2532\"* officers|strong=\"G5257\"* from|strong=\"G1537\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"*, came|strong=\"G2064\"* there|strong=\"G1563\"* with|strong=\"G3326\"* lanterns|strong=\"G5322\"*, torches|strong=\"G2985\"*, and|strong=\"G2532\"* weapons|strong=\"G3696\"*." + }, + { + "verseNum": 4, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"*, knowing|strong=\"G1492\"* all|strong=\"G3956\"* the|strong=\"G2532\"* things|strong=\"G3956\"* that|strong=\"G3588\"* were|strong=\"G3588\"* happening to|strong=\"G2532\"* him|strong=\"G3588\"*, went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Who|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w looking|strong=\"G2212\"\\+w* \\+w for|strong=\"G1909\"\\+w*?”*" + }, + { + "verseNum": 5, + "text": "They|strong=\"G2532\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Jesus|strong=\"G2424\"* of|strong=\"G2532\"* Nazareth|strong=\"G3480\"*.”" + }, + { + "verseNum": 6, + "text": "When|strong=\"G5613\"* therefore|strong=\"G3767\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w*,”* they|strong=\"G2532\"* went|strong=\"G2532\"* backward|strong=\"G3694\"* and|strong=\"G2532\"* fell|strong=\"G4098\"* to|strong=\"G1519\"* the|strong=\"G2532\"* ground|strong=\"G5476\"*." + }, + { + "verseNum": 7, + "text": "Again|strong=\"G3825\"* therefore|strong=\"G3767\"* he|strong=\"G1161\"* asked|strong=\"G1905\"* them|strong=\"G3588\"*, “\\+w Who|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w looking|strong=\"G2212\"\\+w* \\+w for|strong=\"G1161\"\\+w*?”*" + }, + { + "verseNum": 8, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w he|strong=\"G3754\"\\+w*. \\+w If|strong=\"G1487\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w let|strong=\"G1510\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w their|strong=\"G2212\"\\+w* \\+w way|strong=\"G5217\"\\+w*,”*" + }, + { + "verseNum": 9, + "text": "that|strong=\"G3754\"* the|strong=\"G1537\"* word|strong=\"G3056\"* might|strong=\"G1473\"* be|strong=\"G3756\"* fulfilled|strong=\"G4137\"* which|strong=\"G3739\"* he|strong=\"G3739\"* spoke|strong=\"G3004\"*, “\\+w Of|strong=\"G1537\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* lost \\+w none|strong=\"G3762\"\\+w*.”*+ 18:9 John 6:39*" + }, + { + "verseNum": 10, + "text": "Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* therefore|strong=\"G3767\"*, having|strong=\"G2192\"* a|strong=\"G2192\"* sword|strong=\"G3162\"*, drew|strong=\"G1670\"* it|strong=\"G2532\"*, struck|strong=\"G3817\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest’s|strong=\"G2192\"* servant|strong=\"G1401\"*, and|strong=\"G2532\"* cut|strong=\"G2532\"* off his|strong=\"G1438\"* right|strong=\"G1188\"* ear|strong=\"G5621\"*. The|strong=\"G2532\"* servant|strong=\"G1401\"*’s|strong=\"G2192\"* name|strong=\"G3686\"* was|strong=\"G1510\"* Malchus|strong=\"G3124\"*." + }, + { + "verseNum": 11, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G1519\"* Peter|strong=\"G4074\"*, “\\+w Put|strong=\"G1325\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w sword|strong=\"G3162\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w its|strong=\"G1325\"\\+w* \\+w sheath|strong=\"G2336\"\\+w*. \\+w The|strong=\"G1519\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w shall|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w surely|strong=\"G3361\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w it|strong=\"G3739\"\\+w*?”*" + }, + { + "verseNum": 12, + "text": "So|strong=\"G3767\"* the|strong=\"G2532\"* detachment, the|strong=\"G2532\"* commanding officer|strong=\"G5257\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* officers|strong=\"G5257\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* seized|strong=\"G4815\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* bound|strong=\"G1210\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 13, + "text": "and|strong=\"G2532\"* led him|strong=\"G3588\"* to|strong=\"G4314\"* Annas first|strong=\"G4413\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* was|strong=\"G1510\"* father-in-law|strong=\"G3995\"* to|strong=\"G4314\"* Caiaphas|strong=\"G2533\"*, who|strong=\"G3739\"* was|strong=\"G1510\"* high|strong=\"G2532\"* priest that|strong=\"G3739\"* year|strong=\"G1763\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"G1161\"* it|strong=\"G3754\"* was|strong=\"G1510\"* Caiaphas|strong=\"G2533\"* who|strong=\"G3588\"* advised|strong=\"G4823\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"* that|strong=\"G3754\"* it|strong=\"G3754\"* was|strong=\"G1510\"* expedient|strong=\"G4851\"* that|strong=\"G3754\"* one|strong=\"G1520\"* man|strong=\"G1520\"* should|strong=\"G3588\"* perish for|strong=\"G3754\"* the|strong=\"G1161\"* people|strong=\"G2992\"*." + }, + { + "verseNum": 15, + "text": "Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* followed Jesus|strong=\"G2424\"*, as|strong=\"G1519\"* did|strong=\"G2532\"* another|strong=\"G3588\"* disciple|strong=\"G3101\"*. Now|strong=\"G1161\"* that|strong=\"G3588\"* disciple|strong=\"G3101\"* was|strong=\"G1510\"* known|strong=\"G1110\"* to|strong=\"G1519\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest, and|strong=\"G2532\"* entered|strong=\"G4897\"* in|strong=\"G1519\"* with|strong=\"G2532\"* Jesus|strong=\"G2424\"* into|strong=\"G1519\"* the|strong=\"G2532\"* court of|strong=\"G2532\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest;" + }, + { + "verseNum": 16, + "text": "but|strong=\"G1161\"* Peter|strong=\"G4074\"* was|strong=\"G3588\"* standing|strong=\"G2476\"* at|strong=\"G4314\"* the|strong=\"G2532\"* door|strong=\"G2374\"* outside|strong=\"G1854\"*. So|strong=\"G3767\"* the|strong=\"G2532\"* other|strong=\"G1161\"* disciple|strong=\"G3101\"*, who|strong=\"G3588\"* was|strong=\"G3588\"* known|strong=\"G1110\"* to|strong=\"G4314\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest, went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* spoke|strong=\"G3004\"* to|strong=\"G4314\"* her|strong=\"G3588\"* who|strong=\"G3588\"* kept|strong=\"G2532\"* the|strong=\"G2532\"* door|strong=\"G2374\"*, and|strong=\"G2532\"* brought|strong=\"G1521\"* in|strong=\"G2532\"* Peter|strong=\"G4074\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"G3767\"* the|strong=\"G2532\"* maid|strong=\"G3814\"* who|strong=\"G3588\"* kept|strong=\"G2532\"* the|strong=\"G2532\"* door|strong=\"G2377\"* said|strong=\"G3004\"* to|strong=\"G2532\"* Peter|strong=\"G4074\"*, “Are|strong=\"G1510\"* you|strong=\"G4771\"* also|strong=\"G2532\"* one|strong=\"G3588\"* of|strong=\"G1537\"* this|strong=\"G3778\"* man|strong=\"G3778\"*’s disciples|strong=\"G3101\"*?”" + }, + { + "verseNum": 18, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* servants|strong=\"G1401\"* and|strong=\"G2532\"* the|strong=\"G2532\"* officers|strong=\"G5257\"* were|strong=\"G1510\"* standing|strong=\"G2476\"* there|strong=\"G2532\"*, having|strong=\"G2532\"* made|strong=\"G4160\"* a|strong=\"G2532\"* fire of|strong=\"G2532\"* coals, for|strong=\"G3754\"* it|strong=\"G2532\"* was|strong=\"G1510\"* cold|strong=\"G5592\"*. They|strong=\"G2532\"* were|strong=\"G1510\"* warming|strong=\"G2328\"* themselves|strong=\"G3326\"*. Peter|strong=\"G4074\"* was|strong=\"G1510\"* with|strong=\"G3326\"* them|strong=\"G3588\"*, standing|strong=\"G2476\"* and|strong=\"G2532\"* warming|strong=\"G2328\"* himself|strong=\"G2328\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"G2532\"* high|strong=\"G2532\"* priest therefore|strong=\"G3767\"* asked|strong=\"G2065\"* Jesus|strong=\"G2424\"* about|strong=\"G4012\"* his|strong=\"G4012\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* about|strong=\"G4012\"* his|strong=\"G4012\"* teaching|strong=\"G1322\"*." + }, + { + "verseNum": 20, + "text": "Jesus|strong=\"G2424\"* answered him|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w spoke|strong=\"G2980\"\\+w* \\+w openly|strong=\"G3954\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w taught|strong=\"G1321\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w temple|strong=\"G2413\"\\+w*, \\+w where|strong=\"G3699\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Jews|strong=\"G2453\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w meet|strong=\"G3588\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G2980\"\\+w* \\+w nothing|strong=\"G3762\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w secret|strong=\"G2927\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w ask|strong=\"G2065\"\\+w* \\+w me|strong=\"G1473\"\\+w*? \\+w Ask|strong=\"G2065\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w have|strong=\"G1473\"\\+w* heard \\+w me|strong=\"G1473\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w them|strong=\"G3588\"\\+w*. \\+w Behold|strong=\"G1492\"\\+w*, \\+w they|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G2424\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, one|strong=\"G1520\"* of|strong=\"G1520\"* the|strong=\"G1161\"* officers|strong=\"G5257\"* standing|strong=\"G3936\"* by|strong=\"G3936\"* slapped Jesus|strong=\"G2424\"* with|strong=\"G3588\"* his|strong=\"G1325\"* hand|strong=\"G1161\"*, saying|strong=\"G3004\"*, “Do|strong=\"G3004\"* you|strong=\"G1325\"* answer the|strong=\"G1161\"* high priest like|strong=\"G3779\"* that|strong=\"G3588\"*?”" + }, + { + "verseNum": 23, + "text": "Jesus|strong=\"G2424\"* answered him|strong=\"G3588\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w spoken|strong=\"G2980\"\\+w* \\+w evil|strong=\"G2556\"\\+w*, \\+w testify|strong=\"G3140\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w evil|strong=\"G2556\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w well|strong=\"G2573\"\\+w*, \\+w why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w beat|strong=\"G1194\"\\+w* \\+w me|strong=\"G1473\"\\+w*?”*" + }, + { + "verseNum": 24, + "text": "Annas sent him|strong=\"G3588\"* bound|strong=\"G1210\"* to|strong=\"G4314\"* Caiaphas|strong=\"G2533\"*, the|strong=\"G4314\"* high priest." + }, + { + "verseNum": 25, + "text": "Now|strong=\"G1161\"* Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* was|strong=\"G1510\"* standing|strong=\"G2476\"* and|strong=\"G2532\"* warming|strong=\"G2328\"* himself|strong=\"G2328\"*. They|strong=\"G2532\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “You|strong=\"G4771\"* aren’t|strong=\"G3588\"* also|strong=\"G2532\"* one|strong=\"G3588\"* of|strong=\"G1537\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"*, are|strong=\"G1510\"* you|strong=\"G4771\"*?”" + }, + { + "verseNum": 26, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G1722\"* servants|strong=\"G1401\"* of|strong=\"G1537\"* the|strong=\"G1722\"* high priest, being|strong=\"G1510\"* a|strong=\"G1722\"* relative|strong=\"G4773\"* of|strong=\"G1537\"* him|strong=\"G3588\"* whose|strong=\"G3739\"* ear|strong=\"G5621\"* Peter|strong=\"G4074\"* had|strong=\"G1510\"* cut|strong=\"G4074\"* off|strong=\"G1537\"*, said|strong=\"G3004\"*, “Didn’t|strong=\"G3588\"* I|strong=\"G1473\"* see|strong=\"G3708\"* you|strong=\"G4771\"* in|strong=\"G1722\"* the|strong=\"G1722\"* garden|strong=\"G2779\"* with|strong=\"G3326\"* him|strong=\"G3588\"*?”" + }, + { + "verseNum": 27, + "text": "Peter|strong=\"G4074\"* therefore|strong=\"G3767\"* denied it|strong=\"G2532\"* again|strong=\"G3825\"*, and|strong=\"G2532\"* immediately|strong=\"G2112\"* the|strong=\"G2532\"* rooster crowed|strong=\"G5455\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"G2532\"* led|strong=\"G3767\"* Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* from|strong=\"G2532\"* Caiaphas|strong=\"G2533\"* into|strong=\"G1519\"* the|strong=\"G2532\"* Praetorium|strong=\"G4232\"*. It|strong=\"G2532\"* was|strong=\"G1510\"* early|strong=\"G4404\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* themselves|strong=\"G1519\"* didn’t|strong=\"G3588\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* Praetorium|strong=\"G4232\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* not|strong=\"G3756\"* be|strong=\"G1510\"* defiled|strong=\"G3392\"*, but|strong=\"G1161\"* might|strong=\"G2532\"* eat|strong=\"G2068\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"*." + }, + { + "verseNum": 29, + "text": "Pilate|strong=\"G4091\"* therefore|strong=\"G3767\"* went|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G4314\"* them|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G5346\"*, “What|strong=\"G5101\"* accusation|strong=\"G2724\"* do|strong=\"G5101\"* you|strong=\"G1438\"* bring|strong=\"G5342\"* against|strong=\"G2596\"* this|strong=\"G3778\"* man|strong=\"G3778\"*?”" + }, + { + "verseNum": 30, + "text": "They|strong=\"G2532\"* answered|strong=\"G3004\"* him|strong=\"G4160\"*, “If|strong=\"G1487\"* this|strong=\"G3778\"* man|strong=\"G3778\"* weren’t an|strong=\"G2532\"* evildoer|strong=\"G2556\"*, we|strong=\"G2532\"* wouldn’t have|strong=\"G2532\"* delivered|strong=\"G3860\"* him|strong=\"G4160\"* up|strong=\"G3860\"* to|strong=\"G2532\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 31, + "text": "Pilate|strong=\"G4091\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Take|strong=\"G2983\"* him|strong=\"G3588\"* yourselves|strong=\"G4771\"*, and|strong=\"G2532\"* judge|strong=\"G2919\"* him|strong=\"G3588\"* according|strong=\"G2596\"* to|strong=\"G2532\"* your|strong=\"G2532\"* law|strong=\"G3551\"*.”" + }, + { + "verseNum": 32, + "text": "that|strong=\"G2443\"* the|strong=\"G3588\"* word|strong=\"G3056\"* of|strong=\"G3056\"* Jesus|strong=\"G2424\"* might be|strong=\"G3195\"* fulfilled|strong=\"G4137\"*, which|strong=\"G3739\"* he|strong=\"G3739\"* spoke|strong=\"G3004\"*, signifying|strong=\"G4591\"* by|strong=\"G3004\"* what|strong=\"G3739\"* kind|strong=\"G4169\"* of|strong=\"G3056\"* death|strong=\"G2288\"* he|strong=\"G3739\"* should|strong=\"G3195\"* die|strong=\"G2288\"*." + }, + { + "verseNum": 33, + "text": "Pilate|strong=\"G4091\"* therefore|strong=\"G3767\"* entered|strong=\"G1525\"* again|strong=\"G3825\"* into|strong=\"G1519\"* the|strong=\"G2532\"* Praetorium|strong=\"G4232\"*, called|strong=\"G3004\"* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “Are|strong=\"G1510\"* you|strong=\"G4771\"* the|strong=\"G2532\"* King|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*?”" + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* him|strong=\"G1438\"*, “\\+w Do|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w by|strong=\"G3004\"\\+w* \\+w yourself|strong=\"G4572\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w did|strong=\"G2228\"\\+w* others \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w*?”*" + }, + { + "verseNum": 35, + "text": "Pilate|strong=\"G4091\"* answered, “I|strong=\"G1473\"*’m not|strong=\"G1510\"* a|strong=\"G2532\"* Jew|strong=\"G2453\"*, am|strong=\"G1510\"* I|strong=\"G1473\"*? Your|strong=\"G4674\"* own|strong=\"G4674\"* nation|strong=\"G1484\"* and|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests delivered|strong=\"G3860\"* you|strong=\"G4771\"* to|strong=\"G2532\"* me|strong=\"G1473\"*. What|strong=\"G5101\"* have|strong=\"G2532\"* you|strong=\"G4771\"* done|strong=\"G4160\"*?”" + }, + { + "verseNum": 36, + "text": "Jesus|strong=\"G2424\"* answered, “\\+w My|strong=\"G1699\"\\+w* Kingdom \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w world|strong=\"G2889\"\\+w*. \\+w If|strong=\"G1487\"\\+w* \\+w my|strong=\"G1699\"\\+w* Kingdom \\+w were|strong=\"G1510\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w then|strong=\"G1161\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w servants|strong=\"G5257\"\\+w* \\+w would|strong=\"G1510\"\\+w* fight, \\+w that|strong=\"G2443\"\\+w* \\+w I|strong=\"G1473\"\\+w* wouldn’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w Jews|strong=\"G2453\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w my|strong=\"G1699\"\\+w* Kingdom \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w here|strong=\"G1782\"\\+w*.”*" + }, + { + "verseNum": 37, + "text": "Pilate|strong=\"G4091\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “Are|strong=\"G1510\"* you|strong=\"G4771\"* a|strong=\"G2532\"* king|strong=\"G3588\"* then|strong=\"G3767\"*?”" + }, + { + "verseNum": 38, + "text": "Pilate|strong=\"G4091\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “What|strong=\"G5101\"* is|strong=\"G1510\"* truth?”" + }, + { + "verseNum": 39, + "text": "But|strong=\"G1161\"* you|strong=\"G5210\"* have|strong=\"G1510\"* a|strong=\"G1722\"* custom|strong=\"G4914\"* that|strong=\"G2443\"* I|strong=\"G1161\"* should|strong=\"G3588\"* release someone|strong=\"G1520\"* to|strong=\"G2443\"* you|strong=\"G5210\"* at|strong=\"G1722\"* the|strong=\"G1722\"* Passover|strong=\"G3957\"*. Therefore|strong=\"G3767\"*, do|strong=\"G1510\"* you|strong=\"G5210\"* want|strong=\"G1014\"* me to|strong=\"G2443\"* release to|strong=\"G2443\"* you|strong=\"G5210\"* the|strong=\"G1722\"* King|strong=\"G3588\"* of|strong=\"G1520\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"*?”" + }, + { + "verseNum": 40, + "text": "Then|strong=\"G3767\"* they|strong=\"G1161\"* all|strong=\"G3361\"* shouted again|strong=\"G3825\"*, saying|strong=\"G3004\"*, “Not|strong=\"G3361\"* this|strong=\"G3778\"* man|strong=\"G3778\"*, but|strong=\"G1161\"* Barabbas!” Now|strong=\"G1161\"* Barabbas was|strong=\"G1510\"* a|strong=\"G1510\"* robber|strong=\"G3027\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "So|strong=\"G3767\"* Pilate|strong=\"G4091\"* then|strong=\"G3767\"* took|strong=\"G2983\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* flogged him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"G2532\"* soldiers|strong=\"G4757\"* twisted|strong=\"G4120\"* thorns into a|strong=\"G2532\"* crown|strong=\"G4735\"* and|strong=\"G2532\"* put|strong=\"G2007\"* it|strong=\"G2532\"* on|strong=\"G1537\"* his|strong=\"G2007\"* head|strong=\"G2776\"*, and|strong=\"G2532\"* dressed|strong=\"G4016\"* him|strong=\"G3588\"* in|strong=\"G2532\"* a|strong=\"G2532\"* purple|strong=\"G4210\"* garment|strong=\"G2440\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"G2532\"* kept|strong=\"G2532\"* saying|strong=\"G3004\"*, “Hail|strong=\"G5463\"*, King|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*!” and|strong=\"G2532\"* they|strong=\"G2532\"* kept|strong=\"G2532\"* slapping him|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"G2532\"* Pilate|strong=\"G4091\"* went|strong=\"G1831\"* out|strong=\"G1831\"* again|strong=\"G3825\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2443\"* them|strong=\"G3588\"*, “Behold|strong=\"G2396\"*, I|strong=\"G2532\"* bring|strong=\"G2532\"* him|strong=\"G3588\"* out|strong=\"G1831\"* to|strong=\"G2443\"* you|strong=\"G5210\"*, that|strong=\"G3754\"* you|strong=\"G5210\"* may|strong=\"G2532\"* know|strong=\"G1097\"* that|strong=\"G3754\"* I|strong=\"G2532\"* find|strong=\"G2147\"* no|strong=\"G3756\"* basis for|strong=\"G3754\"* a|strong=\"G2532\"* charge against|strong=\"G1722\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 5, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* came|strong=\"G1831\"* out|strong=\"G1831\"*, wearing|strong=\"G5409\"* the|strong=\"G2532\"* crown|strong=\"G4735\"* of|strong=\"G2532\"* thorns and|strong=\"G2532\"* the|strong=\"G2532\"* purple|strong=\"G4210\"* garment|strong=\"G2440\"*. Pilate|strong=\"G3004\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Behold|strong=\"G2400\"*, the|strong=\"G2532\"* man!”" + }, + { + "verseNum": 6, + "text": "When|strong=\"G3753\"* therefore|strong=\"G3767\"* the|strong=\"G1722\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G1722\"* officers|strong=\"G5257\"* saw|strong=\"G3708\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* shouted, saying|strong=\"G3004\"*, “Crucify|strong=\"G4717\"*! Crucify|strong=\"G4717\"*!”" + }, + { + "verseNum": 7, + "text": "The|strong=\"G2532\"* Jews|strong=\"G2453\"* answered him|strong=\"G3588\"*, “We|strong=\"G2249\"* have|strong=\"G2192\"* a|strong=\"G2192\"* law|strong=\"G3551\"*, and|strong=\"G2532\"* by|strong=\"G2596\"* our|strong=\"G2316\"* law|strong=\"G3551\"* he|strong=\"G2532\"* ought|strong=\"G3784\"* to|strong=\"G2532\"* die, because|strong=\"G3754\"* he|strong=\"G2532\"* made|strong=\"G4160\"* himself|strong=\"G1438\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 8, + "text": "When|strong=\"G3753\"* therefore|strong=\"G3767\"* Pilate|strong=\"G4091\"* heard this|strong=\"G3778\"* saying|strong=\"G3056\"*, he|strong=\"G3778\"* was|strong=\"G3588\"* more|strong=\"G3123\"* afraid|strong=\"G5399\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* Praetorium|strong=\"G4232\"* again|strong=\"G3825\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* Jesus|strong=\"G2424\"*, “Where|strong=\"G4159\"* are|strong=\"G1510\"* you|strong=\"G4771\"* from|strong=\"G2532\"*?” But|strong=\"G1161\"* Jesus|strong=\"G2424\"* gave|strong=\"G1325\"* him|strong=\"G3588\"* no|strong=\"G3756\"* answer." + }, + { + "verseNum": 10, + "text": "Pilate|strong=\"G4091\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Aren’t|strong=\"G3588\"* you|strong=\"G4771\"* speaking|strong=\"G2980\"* to|strong=\"G2532\"* me|strong=\"G1473\"*? Don’t|strong=\"G3588\"* you|strong=\"G4771\"* know|strong=\"G1492\"* that|strong=\"G3754\"* I|strong=\"G1473\"* have|strong=\"G2192\"* power|strong=\"G1849\"* to|strong=\"G2532\"* release you|strong=\"G4771\"* and|strong=\"G2532\"* have|strong=\"G2192\"* power|strong=\"G1849\"* to|strong=\"G2532\"* crucify|strong=\"G4717\"* you|strong=\"G4771\"*?”" + }, + { + "verseNum": 11, + "text": "Jesus|strong=\"G2424\"* answered, “\\+w You|strong=\"G4771\"\\+w* \\+w would|strong=\"G1510\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w power|strong=\"G1849\"\\+w* \\+w at|strong=\"G2596\"\\+w* \\+w all|strong=\"G2596\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w unless|strong=\"G1487\"\\+w* \\+w it|strong=\"G1487\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2596\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w from|strong=\"G2596\"\\+w* above. \\+w Therefore|strong=\"G1223\"\\+w* \\+w he|strong=\"G3778\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w to|strong=\"G2596\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w greater|strong=\"G3173\"\\+w* sin.”*" + }, + { + "verseNum": 12, + "text": "At|strong=\"G1537\"* this|strong=\"G3778\"*, Pilate|strong=\"G4091\"* was|strong=\"G1510\"* seeking|strong=\"G2212\"* to|strong=\"G3004\"* release him|strong=\"G3588\"*, but|strong=\"G1161\"* the|strong=\"G3956\"* Jews|strong=\"G2453\"* cried|strong=\"G2905\"* out|strong=\"G1537\"*, saying|strong=\"G3004\"*, “If|strong=\"G1437\"* you|strong=\"G1437\"* release this|strong=\"G3778\"* man|strong=\"G3778\"*, you|strong=\"G1437\"* aren’t|strong=\"G3588\"* Caesar|strong=\"G2541\"*’s friend|strong=\"G5384\"*! Everyone|strong=\"G3956\"* who|strong=\"G3588\"* makes|strong=\"G4160\"* himself|strong=\"G1438\"* a|strong=\"G1510\"* king|strong=\"G3588\"* speaks|strong=\"G3004\"* against|strong=\"G1537\"* Caesar|strong=\"G2541\"*!”" + }, + { + "verseNum": 13, + "text": "When|strong=\"G1161\"* Pilate|strong=\"G4091\"* therefore|strong=\"G3767\"* heard these|strong=\"G3778\"* words|strong=\"G3056\"*, he|strong=\"G2532\"* brought|strong=\"G1161\"* Jesus|strong=\"G2424\"* out|strong=\"G1854\"* and|strong=\"G2532\"* sat|strong=\"G2523\"* down|strong=\"G2523\"* on|strong=\"G1909\"* the|strong=\"G2532\"* judgment seat|strong=\"G2523\"* at|strong=\"G1909\"* a|strong=\"G2532\"* place|strong=\"G5117\"* called|strong=\"G3004\"* “The|strong=\"G2532\"* Pavement|strong=\"G3038\"*”, but|strong=\"G1161\"* in|strong=\"G1519\"* Hebrew|strong=\"G1447\"*, “Gabbatha|strong=\"G1042\"*.”" + }, + { + "verseNum": 14, + "text": "Now|strong=\"G1161\"* it|strong=\"G2532\"* was|strong=\"G1510\"* the|strong=\"G2532\"* Preparation|strong=\"G3904\"* Day|strong=\"G3904\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"*, at|strong=\"G1161\"* about|strong=\"G5613\"* the|strong=\"G2532\"* sixth|strong=\"G1623\"* hour|strong=\"G5610\"*.+ 19:14 “the sixth hour” would have been 6:00 a.m. according to the Roman timekeeping system, or noon for the Jewish timekeeping system in use, then. * He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, “Behold|strong=\"G2396\"*, your|strong=\"G2532\"* King|strong=\"G3588\"*!”" + }, + { + "verseNum": 15, + "text": "They|strong=\"G3588\"* cried|strong=\"G2905\"* out|strong=\"G2905\"*, “Away with|strong=\"G2192\"* him|strong=\"G3588\"*! Away with|strong=\"G2192\"* him|strong=\"G3588\"*! Crucify|strong=\"G4717\"* him|strong=\"G3588\"*!”" + }, + { + "verseNum": 16, + "text": "So|strong=\"G2443\"* then|strong=\"G3767\"* he|strong=\"G3588\"* delivered|strong=\"G3860\"* him|strong=\"G3588\"* to|strong=\"G2443\"* them|strong=\"G3588\"* to|strong=\"G2443\"* be|strong=\"G2443\"* crucified|strong=\"G4717\"*. So|strong=\"G2443\"* they|strong=\"G3588\"* took|strong=\"G3880\"* Jesus|strong=\"G2424\"* and|strong=\"G2424\"* led|strong=\"G3767\"* him|strong=\"G3588\"* away." + }, + { + "verseNum": 17, + "text": "He|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, bearing his|strong=\"G1438\"* cross|strong=\"G4716\"*, to|strong=\"G1519\"* the|strong=\"G2532\"* place|strong=\"G5117\"* called|strong=\"G3004\"* “The|strong=\"G2532\"* Place|strong=\"G5117\"* of|strong=\"G2532\"* a|strong=\"G2532\"* Skull|strong=\"G2898\"*”, which|strong=\"G3739\"* is|strong=\"G3588\"* called|strong=\"G3004\"* in|strong=\"G1519\"* Hebrew|strong=\"G1447\"*, “Golgotha|strong=\"G1115\"*”," + }, + { + "verseNum": 18, + "text": "where|strong=\"G3699\"* they|strong=\"G2532\"* crucified|strong=\"G4717\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* with|strong=\"G3326\"* him|strong=\"G3588\"* two|strong=\"G1417\"* others|strong=\"G3588\"*, on|strong=\"G1161\"* either|strong=\"G1782\"* side|strong=\"G1782\"* one|strong=\"G3588\"*, and|strong=\"G2532\"* Jesus|strong=\"G2424\"* in|strong=\"G2532\"* the|strong=\"G2532\"* middle|strong=\"G3319\"*." + }, + { + "verseNum": 19, + "text": "Pilate|strong=\"G4091\"* wrote|strong=\"G1125\"* a|strong=\"G2532\"* title|strong=\"G5102\"* also|strong=\"G2532\"*, and|strong=\"G2532\"* put|strong=\"G5087\"* it|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G2532\"* cross|strong=\"G4716\"*. There|strong=\"G2532\"* was|strong=\"G1510\"* written|strong=\"G1125\"*, “JESUS|strong=\"G2424\"* OF|strong=\"G2532\"* NAZARETH|strong=\"G3480\"*, THE|strong=\"G2532\"* KING|strong=\"G3588\"* OF|strong=\"G2532\"* THE|strong=\"G2532\"* JEWS|strong=\"G2453\"*.”" + }, + { + "verseNum": 20, + "text": "Therefore|strong=\"G3767\"* many|strong=\"G4183\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* read|strong=\"G1125\"* this|strong=\"G3778\"* title|strong=\"G5102\"*, for|strong=\"G3754\"* the|strong=\"G2532\"* place|strong=\"G5117\"* where|strong=\"G3699\"* Jesus|strong=\"G2424\"* was|strong=\"G1510\"* crucified|strong=\"G4717\"* was|strong=\"G1510\"* near|strong=\"G1451\"* the|strong=\"G2532\"* city|strong=\"G4172\"*; and|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G1510\"* written|strong=\"G1125\"* in|strong=\"G2532\"* Hebrew|strong=\"G1447\"*, in|strong=\"G2532\"* Latin|strong=\"G4515\"*, and|strong=\"G2532\"* in|strong=\"G2532\"* Greek|strong=\"G1676\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"G3588\"* chief priests of|strong=\"G3588\"* the|strong=\"G3588\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G3004\"* Pilate|strong=\"G4091\"*, “Don’t|strong=\"G3588\"* write|strong=\"G1125\"*, ‘The|strong=\"G3588\"* King|strong=\"G3588\"* of|strong=\"G3588\"* the|strong=\"G3588\"* Jews|strong=\"G2453\"*,’ but|strong=\"G3361\"*, ‘he|strong=\"G3754\"* said|strong=\"G3004\"*, “I|strong=\"G3754\"* am|strong=\"G1510\"* King|strong=\"G3588\"* of|strong=\"G3588\"* the|strong=\"G3588\"* Jews|strong=\"G2453\"*.”’”" + }, + { + "verseNum": 22, + "text": "Pilate|strong=\"G4091\"* answered, “What|strong=\"G3739\"* I|strong=\"G3739\"* have|strong=\"G3588\"* written|strong=\"G1125\"*, I|strong=\"G3739\"* have|strong=\"G3588\"* written|strong=\"G1125\"*.”" + }, + { + "verseNum": 23, + "text": "Then|strong=\"G3767\"* the|strong=\"G2532\"* soldiers|strong=\"G4757\"*, when|strong=\"G3753\"* they|strong=\"G2532\"* had|strong=\"G2424\"* crucified|strong=\"G4717\"* Jesus|strong=\"G2424\"*, took|strong=\"G2983\"* his|strong=\"G1223\"* garments|strong=\"G2440\"* and|strong=\"G2532\"* made|strong=\"G4160\"* four|strong=\"G5064\"* parts|strong=\"G3313\"*, to|strong=\"G2532\"* every|strong=\"G1538\"* soldier|strong=\"G4757\"* a|strong=\"G2532\"* part|strong=\"G3313\"*; and|strong=\"G2532\"* also|strong=\"G2532\"* the|strong=\"G2532\"* tunic|strong=\"G5509\"*. Now|strong=\"G1161\"* the|strong=\"G2532\"* tunic|strong=\"G5509\"* was|strong=\"G1510\"* without|strong=\"G2532\"* seam, woven|strong=\"G5307\"* from|strong=\"G1537\"* the|strong=\"G2532\"* top throughout|strong=\"G3650\"*." + }, + { + "verseNum": 24, + "text": "Then|strong=\"G3767\"* they|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* one|strong=\"G1438\"* another|strong=\"G1438\"*, “Let|strong=\"G1510\"*’s not|strong=\"G3361\"* tear|strong=\"G4977\"* it|strong=\"G2532\"*, but|strong=\"G2532\"* cast|strong=\"G2532\"* lots|strong=\"G2819\"* for|strong=\"G4012\"* it|strong=\"G2532\"* to|strong=\"G4314\"* decide whose|strong=\"G5101\"* it|strong=\"G2532\"* will|strong=\"G5101\"* be|strong=\"G1510\"*,” that|strong=\"G2443\"* the|strong=\"G2532\"* Scripture|strong=\"G1124\"* might|strong=\"G2532\"* be|strong=\"G1510\"* fulfilled|strong=\"G4137\"*, which|strong=\"G3588\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* standing|strong=\"G2476\"* by|strong=\"G3844\"* Jesus|strong=\"G2424\"*’ cross|strong=\"G4716\"* were|strong=\"G3588\"* his|strong=\"G2532\"* mother|strong=\"G3384\"*, his|strong=\"G2532\"* mother|strong=\"G3384\"*’s sister, Mary|strong=\"G3137\"* the|strong=\"G2532\"* wife of|strong=\"G2532\"* Clopas|strong=\"G2832\"*, and|strong=\"G2532\"* Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"*." + }, + { + "verseNum": 26, + "text": "Therefore|strong=\"G3767\"* when|strong=\"G2532\"* Jesus|strong=\"G2424\"* saw|strong=\"G3708\"* his|strong=\"G3708\"* mother|strong=\"G3384\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* disciple|strong=\"G3101\"* whom|strong=\"G3739\"* he|strong=\"G2532\"* loved standing|strong=\"G3936\"* there|strong=\"G2532\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* his|strong=\"G3708\"* mother|strong=\"G3384\"*, “\\+w Woman|strong=\"G1135\"\\+w*, \\+w behold|strong=\"G2396\"\\+w*, \\+w your|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w*!” *" + }, + { + "verseNum": 27, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G2532\"* disciple|strong=\"G3101\"*, “\\+w Behold|strong=\"G2396\"\\+w*, \\+w your|strong=\"G2532\"\\+w* \\+w mother|strong=\"G3384\"\\+w*!”* From|strong=\"G2532\"* that|strong=\"G3588\"* hour|strong=\"G5610\"*, the|strong=\"G2532\"* disciple|strong=\"G3101\"* took|strong=\"G2983\"* her|strong=\"G1438\"* to|strong=\"G1519\"* his|strong=\"G1438\"* own|strong=\"G2398\"* home|strong=\"G1519\"*." + }, + { + "verseNum": 28, + "text": "After|strong=\"G3326\"* this|strong=\"G3778\"*, Jesus|strong=\"G2424\"*, seeing|strong=\"G3708\"*+ 19:28 NU, TR read “knowing” instead of “seeing” * that|strong=\"G3754\"* all|strong=\"G3956\"* things|strong=\"G3956\"* were|strong=\"G3588\"* now|strong=\"G2235\"* finished|strong=\"G5055\"*, that|strong=\"G3754\"* the|strong=\"G3956\"* Scripture|strong=\"G1124\"* might|strong=\"G3778\"* be|strong=\"G3956\"* fulfilled|strong=\"G5055\"*, said|strong=\"G3004\"*, “\\+w I|strong=\"G3754\"\\+w* \\+w am|strong=\"G3588\"\\+w* \\+w thirsty|strong=\"G1372\"\\+w*!”*" + }, + { + "verseNum": 29, + "text": "Now|strong=\"G3767\"* a|strong=\"G4060\"* vessel|strong=\"G4632\"* full|strong=\"G3324\"* of|strong=\"G4750\"* vinegar|strong=\"G3690\"* was|strong=\"G3588\"* set|strong=\"G2749\"* there|strong=\"G3767\"*; so|strong=\"G3767\"* they|strong=\"G3588\"* put|strong=\"G4060\"* a|strong=\"G4060\"* sponge|strong=\"G4699\"* full|strong=\"G3324\"* of|strong=\"G4750\"* the|strong=\"G3588\"* vinegar|strong=\"G3690\"* on|strong=\"G3588\"* hyssop|strong=\"G5301\"*, and|strong=\"G3767\"* held it|strong=\"G3588\"* at|strong=\"G3588\"* his|strong=\"G3588\"* mouth|strong=\"G4750\"*." + }, + { + "verseNum": 30, + "text": "When|strong=\"G3753\"* Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* had|strong=\"G2424\"* received|strong=\"G2983\"* the|strong=\"G2532\"* vinegar|strong=\"G3690\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w finished|strong=\"G5055\"\\+w*!”* Then|strong=\"G3767\"* he|strong=\"G2532\"* bowed|strong=\"G2827\"* his|strong=\"G2983\"* head|strong=\"G2776\"* and|strong=\"G2532\"* gave|strong=\"G3860\"* up|strong=\"G3860\"* his|strong=\"G2983\"* spirit|strong=\"G4151\"*." + }, + { + "verseNum": 31, + "text": "Therefore|strong=\"G3767\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"*, because|strong=\"G1063\"* it|strong=\"G2532\"* was|strong=\"G1510\"* the|strong=\"G1722\"* Preparation|strong=\"G3904\"* Day|strong=\"G2250\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* the|strong=\"G1722\"* bodies|strong=\"G4983\"* wouldn’t|strong=\"G3588\"* remain|strong=\"G3306\"* on|strong=\"G1909\"* the|strong=\"G1722\"* cross|strong=\"G4716\"* on|strong=\"G1909\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"* (for|strong=\"G1063\"* that|strong=\"G2443\"* Sabbath|strong=\"G4521\"* was|strong=\"G1510\"* a|strong=\"G2532\"* special one|strong=\"G3588\"*), asked|strong=\"G2065\"* of|strong=\"G2250\"* Pilate|strong=\"G4091\"* that|strong=\"G2443\"* their|strong=\"G2532\"* legs|strong=\"G4628\"* might|strong=\"G2532\"* be|strong=\"G1510\"* broken|strong=\"G2608\"* and|strong=\"G2532\"* that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G1510\"* taken away." + }, + { + "verseNum": 32, + "text": "Therefore|strong=\"G3767\"* the|strong=\"G2532\"* soldiers|strong=\"G4757\"* came|strong=\"G2064\"* and|strong=\"G2532\"* broke|strong=\"G2608\"* the|strong=\"G2532\"* legs|strong=\"G4628\"* of|strong=\"G2532\"* the|strong=\"G2532\"* first|strong=\"G4413\"* and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* other|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G3588\"* crucified|strong=\"G4957\"* with|strong=\"G2532\"* him|strong=\"G3588\"*;" + }, + { + "verseNum": 33, + "text": "but|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G1161\"* came|strong=\"G2064\"* to|strong=\"G1909\"* Jesus|strong=\"G2424\"* and|strong=\"G1161\"* saw|strong=\"G3708\"* that|strong=\"G3588\"* he|strong=\"G1161\"* was|strong=\"G3588\"* already|strong=\"G2235\"* dead|strong=\"G2348\"*, they|strong=\"G1161\"* didn’t|strong=\"G3588\"* break|strong=\"G2608\"* his|strong=\"G1909\"* legs|strong=\"G4628\"*." + }, + { + "verseNum": 34, + "text": "However, one|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G2532\"* soldiers|strong=\"G4757\"* pierced|strong=\"G3572\"* his|strong=\"G2532\"* side|strong=\"G4125\"* with|strong=\"G2532\"* a|strong=\"G2532\"* spear|strong=\"G3057\"*, and|strong=\"G2532\"* immediately|strong=\"G2112\"* blood and|strong=\"G2532\"* water|strong=\"G5204\"* came|strong=\"G1831\"* out|strong=\"G1831\"*." + }, + { + "verseNum": 35, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* has|strong=\"G3708\"* seen|strong=\"G3708\"* has|strong=\"G3708\"* testified|strong=\"G3140\"*, and|strong=\"G2532\"* his|strong=\"G3708\"* testimony|strong=\"G3141\"* is|strong=\"G1510\"* true|strong=\"G3588\"*. He|strong=\"G2532\"* knows|strong=\"G1492\"* that|strong=\"G3754\"* he|strong=\"G2532\"* tells the|strong=\"G2532\"* truth, that|strong=\"G3754\"* you|strong=\"G5210\"* may|strong=\"G2532\"* believe|strong=\"G4100\"*." + }, + { + "verseNum": 36, + "text": "For|strong=\"G1063\"* these|strong=\"G3778\"* things|strong=\"G3778\"* happened|strong=\"G1096\"* that|strong=\"G2443\"* the|strong=\"G3588\"* Scripture|strong=\"G1124\"* might|strong=\"G3778\"* be|strong=\"G1096\"* fulfilled|strong=\"G4137\"*, “A|strong=\"G1096\"* bone|strong=\"G3747\"* of|strong=\"G3588\"* him|strong=\"G3588\"* will|strong=\"G3778\"* not|strong=\"G3756\"* be|strong=\"G1096\"* broken|strong=\"G4937\"*.”+ 19:36 Exodus 12:46; Numbers 9:12; Psalms 34:20 *" + }, + { + "verseNum": 37, + "text": "Again|strong=\"G3825\"* another|strong=\"G2087\"* Scripture|strong=\"G1124\"* says|strong=\"G3004\"*, “They|strong=\"G2532\"* will|strong=\"G2532\"* look|strong=\"G3708\"* on|strong=\"G1519\"* him|strong=\"G3739\"* whom|strong=\"G3739\"* they|strong=\"G2532\"* pierced|strong=\"G1574\"*.”+ 19:37 Zechariah 12:10*" + }, + { + "verseNum": 38, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, Joseph|strong=\"G2501\"* of|strong=\"G1223\"* Arimathaea, being|strong=\"G1510\"* a|strong=\"G2532\"* disciple|strong=\"G3101\"* of|strong=\"G1223\"* Jesus|strong=\"G2424\"*, but|strong=\"G1161\"* secretly|strong=\"G2928\"* for|strong=\"G1223\"* fear|strong=\"G5401\"* of|strong=\"G1223\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, asked|strong=\"G2065\"* of|strong=\"G1223\"* Pilate|strong=\"G4091\"* that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* take|strong=\"G1161\"* away|strong=\"G3326\"* Jesus|strong=\"G2424\"*’ body|strong=\"G4983\"*. Pilate|strong=\"G4091\"* gave|strong=\"G2010\"* him|strong=\"G3588\"* permission|strong=\"G2010\"*. He|strong=\"G2532\"* came|strong=\"G2064\"* therefore|strong=\"G3767\"* and|strong=\"G2532\"* took|strong=\"G2532\"* away|strong=\"G3326\"* his|strong=\"G1223\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 39, + "text": "Nicodemus|strong=\"G3530\"*, who|strong=\"G3588\"* at|strong=\"G4314\"* first|strong=\"G4413\"* came|strong=\"G2064\"* to|strong=\"G4314\"* Jesus|strong=\"G2532\"* by|strong=\"G4314\"* night|strong=\"G3571\"*, also|strong=\"G2532\"* came|strong=\"G2064\"* bringing|strong=\"G5342\"* a|strong=\"G5613\"* mixture|strong=\"G3395\"* of|strong=\"G2532\"* myrrh|strong=\"G4666\"* and|strong=\"G2532\"* aloes, about|strong=\"G5613\"* a|strong=\"G5613\"* hundred|strong=\"G1540\"* Roman pounds|strong=\"G3046\"*.+ 19:39 100 Roman pounds of 12 ounces each, or about 72 pounds, or 33 Kilograms.*" + }, + { + "verseNum": 40, + "text": "So|strong=\"G3767\"* they|strong=\"G2532\"* took|strong=\"G2983\"* Jesus|strong=\"G2424\"*’ body|strong=\"G4983\"*, and|strong=\"G2532\"* bound|strong=\"G1210\"* it|strong=\"G2532\"* in|strong=\"G2532\"* linen|strong=\"G3608\"* cloths with|strong=\"G3326\"* the|strong=\"G2532\"* spices, as|strong=\"G2531\"* the|strong=\"G2532\"* custom|strong=\"G1485\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* is|strong=\"G1510\"* to|strong=\"G2532\"* bury|strong=\"G1779\"*." + }, + { + "verseNum": 41, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* the|strong=\"G1722\"* place|strong=\"G5117\"* where|strong=\"G3699\"* he|strong=\"G2532\"* was|strong=\"G1510\"* crucified|strong=\"G4717\"* there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* garden|strong=\"G2779\"*. In|strong=\"G1722\"* the|strong=\"G1722\"* garden|strong=\"G2779\"* was|strong=\"G1510\"* a|strong=\"G2532\"* new|strong=\"G2537\"* tomb|strong=\"G3419\"* in|strong=\"G1722\"* which|strong=\"G3739\"* no|strong=\"G3762\"* man|strong=\"G3762\"* had|strong=\"G2532\"* ever|strong=\"G3762\"* yet|strong=\"G2532\"* been|strong=\"G1510\"* laid|strong=\"G5087\"*." + }, + { + "verseNum": 42, + "text": "Then|strong=\"G3767\"*, because|strong=\"G3754\"* of|strong=\"G1223\"* the|strong=\"G1223\"* Jews|strong=\"G2453\"*’ Preparation|strong=\"G3904\"* Day|strong=\"G3904\"* (for|strong=\"G3754\"* the|strong=\"G1223\"* tomb|strong=\"G3419\"* was|strong=\"G1510\"* near|strong=\"G1451\"* at|strong=\"G1223\"* hand|strong=\"G1451\"*), they|strong=\"G3588\"* laid|strong=\"G5087\"* Jesus|strong=\"G2424\"* there|strong=\"G1563\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* on|strong=\"G1519\"* the|strong=\"G2532\"* first|strong=\"G1520\"* day|strong=\"G4521\"* of|strong=\"G1537\"* the|strong=\"G2532\"* week|strong=\"G4521\"*, Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"* went|strong=\"G2064\"* early|strong=\"G4404\"*, while|strong=\"G1161\"* it|strong=\"G2532\"* was|strong=\"G1510\"* still|strong=\"G2089\"* dark|strong=\"G4653\"*, to|strong=\"G1519\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"*, and|strong=\"G2532\"* saw that|strong=\"G3588\"* the|strong=\"G2532\"* stone|strong=\"G3037\"* had|strong=\"G2532\"* been|strong=\"G1510\"* taken|strong=\"G3037\"* away from|strong=\"G1537\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"*." + }, + { + "verseNum": 2, + "text": "Therefore|strong=\"G3767\"* she|strong=\"G2532\"* ran|strong=\"G5143\"* and|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* to|strong=\"G4314\"* the|strong=\"G2532\"* other|strong=\"G3739\"* disciple|strong=\"G3101\"* whom|strong=\"G3739\"* Jesus|strong=\"G2424\"* loved|strong=\"G5368\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “They|strong=\"G2532\"* have|strong=\"G2532\"* taken away|strong=\"G5087\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"*, and|strong=\"G2532\"* we|strong=\"G3739\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* where|strong=\"G4226\"* they|strong=\"G2532\"* have|strong=\"G2532\"* laid|strong=\"G5087\"* him|strong=\"G3588\"*!”" + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"G3767\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* the|strong=\"G2532\"* other|strong=\"G3588\"* disciple|strong=\"G3101\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* went|strong=\"G1831\"* toward|strong=\"G1519\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"G2532\"* both|strong=\"G2532\"* ran|strong=\"G5143\"* together|strong=\"G3674\"*. The|strong=\"G2532\"* other|strong=\"G1161\"* disciple|strong=\"G3101\"* outran Peter|strong=\"G4074\"* and|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"* first|strong=\"G4413\"*." + }, + { + "verseNum": 5, + "text": "Stooping|strong=\"G3879\"* and|strong=\"G2532\"* looking|strong=\"G3879\"* in|strong=\"G1525\"*, he|strong=\"G2532\"* saw the|strong=\"G2532\"* linen|strong=\"G3608\"* cloths lying|strong=\"G2749\"* there|strong=\"G2532\"*; yet|strong=\"G2532\"* he|strong=\"G2532\"* didn’t|strong=\"G3588\"* enter|strong=\"G1525\"* in|strong=\"G1525\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"G3767\"* Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* came|strong=\"G2064\"*, following him|strong=\"G3588\"*, and|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"*. He|strong=\"G2532\"* saw|strong=\"G2334\"* the|strong=\"G2532\"* linen|strong=\"G3608\"* cloths lying|strong=\"G2749\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"G2532\"* the|strong=\"G2532\"* cloth|strong=\"G4676\"* that|strong=\"G3739\"* had|strong=\"G2532\"* been|strong=\"G1510\"* on|strong=\"G1909\"* his|strong=\"G1519\"* head|strong=\"G2776\"*, not|strong=\"G3756\"* lying|strong=\"G2749\"* with|strong=\"G3326\"* the|strong=\"G2532\"* linen|strong=\"G3608\"* cloths, but|strong=\"G2532\"* rolled|strong=\"G1794\"* up|strong=\"G1519\"* in|strong=\"G1519\"* a|strong=\"G2532\"* place|strong=\"G5117\"* by|strong=\"G1909\"* itself|strong=\"G5565\"*." + }, + { + "verseNum": 8, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"* the|strong=\"G2532\"* other|strong=\"G3588\"* disciple|strong=\"G3101\"* who|strong=\"G3588\"* came|strong=\"G2064\"* first|strong=\"G4413\"* to|strong=\"G1519\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"* also|strong=\"G2532\"* entered|strong=\"G1525\"* in|strong=\"G1519\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* and|strong=\"G2532\"* believed|strong=\"G4100\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* as|strong=\"G1063\"* yet|strong=\"G3764\"* they|strong=\"G3588\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"* the|strong=\"G1537\"* Scripture|strong=\"G1124\"*, that|strong=\"G3754\"* he|strong=\"G3754\"* must|strong=\"G1163\"* rise|strong=\"G1163\"* from|strong=\"G1537\"* the|strong=\"G1537\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 10, + "text": "So|strong=\"G3767\"* the|strong=\"G4314\"* disciples|strong=\"G3101\"* went|strong=\"G3101\"* away again|strong=\"G3825\"* to|strong=\"G4314\"* their|strong=\"G1438\"* own|strong=\"G1438\"* homes." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* Mary|strong=\"G3137\"* was|strong=\"G3588\"* standing|strong=\"G2476\"* outside|strong=\"G1854\"* at|strong=\"G1519\"* the|strong=\"G1519\"* tomb|strong=\"G3419\"* weeping|strong=\"G2799\"*. So|strong=\"G3767\"* as|strong=\"G5613\"* she|strong=\"G1161\"* wept|strong=\"G2799\"*, she|strong=\"G1161\"* stooped|strong=\"G3879\"* and|strong=\"G1161\"* looked|strong=\"G3879\"* into|strong=\"G1519\"* the|strong=\"G1519\"* tomb|strong=\"G3419\"*," + }, + { + "verseNum": 12, + "text": "and|strong=\"G2532\"* she|strong=\"G2532\"* saw|strong=\"G2334\"* two|strong=\"G1417\"* angels in|strong=\"G1722\"* white|strong=\"G3022\"* sitting|strong=\"G2516\"*, one|strong=\"G1520\"* at|strong=\"G1722\"* the|strong=\"G1722\"* head|strong=\"G2776\"* and|strong=\"G2532\"* one|strong=\"G1520\"* at|strong=\"G1722\"* the|strong=\"G1722\"* feet|strong=\"G4228\"*, where|strong=\"G3699\"* the|strong=\"G1722\"* body|strong=\"G4983\"* of|strong=\"G2532\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* lain|strong=\"G2749\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"G2532\"* asked|strong=\"G3004\"* her|strong=\"G3754\"*, “Woman|strong=\"G1135\"*, why|strong=\"G5101\"* are|strong=\"G3588\"* you|strong=\"G3754\"* weeping|strong=\"G2799\"*?”" + }, + { + "verseNum": 14, + "text": "When|strong=\"G2532\"* she|strong=\"G2532\"* had|strong=\"G2424\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, she|strong=\"G2532\"* turned|strong=\"G4762\"* around|strong=\"G3694\"* and|strong=\"G2532\"* saw|strong=\"G1492\"* Jesus|strong=\"G2424\"* standing|strong=\"G2476\"*, and|strong=\"G2532\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"* that|strong=\"G3754\"* it|strong=\"G2532\"* was|strong=\"G1510\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 15, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* her|strong=\"G3754\"*, “\\+w Woman|strong=\"G1135\"\\+w*, \\+w why|strong=\"G5101\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w weeping|strong=\"G2799\"\\+w*? \\+w Who|strong=\"G5101\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w looking|strong=\"G2212\"\\+w* \\+w for|strong=\"G3754\"\\+w*?”*" + }, + { + "verseNum": 16, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* her|strong=\"G3137\"*, “\\+w Mary|strong=\"G3137\"\\+w*.”*" + }, + { + "verseNum": 17, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G4314\"* her|strong=\"G3588\"*, “Don’\\+w t|strong=\"G3588\"\\+w* hold \\+w me|strong=\"G1473\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* haven’\\+w t|strong=\"G3588\"\\+w* \\+w yet|strong=\"G2532\"\\+w* \\+w ascended|strong=\"G3588\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w my|strong=\"G1473\"\\+w* brothers \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w them|strong=\"G3588\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* ascending \\+w to|strong=\"G4314\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w to|strong=\"G4314\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w*.’”*" + }, + { + "verseNum": 18, + "text": "Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"* came|strong=\"G2064\"* and|strong=\"G2532\"* told|strong=\"G3004\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* that|strong=\"G3754\"* she|strong=\"G2532\"* had|strong=\"G2532\"* seen|strong=\"G3708\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G2532\"* her|strong=\"G3708\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"G2532\"* therefore|strong=\"G3767\"* it|strong=\"G2532\"* was|strong=\"G1510\"* evening|strong=\"G3798\"* on|strong=\"G1519\"* that|strong=\"G3588\"* day|strong=\"G2250\"*, the|strong=\"G2532\"* first|strong=\"G1520\"* day|strong=\"G2250\"* of|strong=\"G2250\"* the|strong=\"G2532\"* week|strong=\"G4521\"*, and|strong=\"G2532\"* when|strong=\"G2532\"* the|strong=\"G2532\"* doors|strong=\"G2374\"* were|strong=\"G1510\"* locked|strong=\"G2808\"* where|strong=\"G3699\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* were|strong=\"G1510\"* assembled, for|strong=\"G1519\"* fear|strong=\"G5401\"* of|strong=\"G2250\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, Jesus|strong=\"G2424\"* came|strong=\"G2064\"* and|strong=\"G2532\"* stood|strong=\"G2476\"* in|strong=\"G1519\"* the|strong=\"G2532\"* middle|strong=\"G3319\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Peace|strong=\"G1515\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* showed|strong=\"G1166\"* them|strong=\"G3588\"* his|strong=\"G3708\"* hands|strong=\"G5495\"* and|strong=\"G2532\"* his|strong=\"G3708\"* side|strong=\"G4125\"*. The|strong=\"G2532\"* disciples|strong=\"G3101\"* therefore|strong=\"G3767\"* were|strong=\"G3588\"* glad|strong=\"G5463\"* when|strong=\"G2532\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 21, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"* again|strong=\"G3825\"*, “\\+w Peace|strong=\"G1515\"\\+w* \\+w be|strong=\"G3588\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w As|strong=\"G2531\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w even|strong=\"G2531\"\\+w* \\+w so|strong=\"G3767\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w send|strong=\"G3992\"\\+w* \\+w you|strong=\"G5210\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* breathed|strong=\"G1720\"* on|strong=\"G4151\"* them|strong=\"G3004\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3004\"*, “\\+w Receive|strong=\"G2983\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w*! *" + }, + { + "verseNum": 23, + "text": "If \\+w you|strong=\"G5100\"\\+w* forgive \\+w anyone|strong=\"G5100\"\\+w*’s sins, \\+w they|strong=\"G3588\"\\+w* \\+w have|strong=\"G5100\"\\+w* \\+w been|strong=\"G5100\"\\+w* forgiven \\+w them|strong=\"G3588\"\\+w*. If \\+w you|strong=\"G5100\"\\+w* \\+w retain|strong=\"G2902\"\\+w* \\+w anyone|strong=\"G5100\"\\+w*’s sins, \\+w they|strong=\"G3588\"\\+w* \\+w have|strong=\"G5100\"\\+w* \\+w been|strong=\"G5100\"\\+w* \\+w retained|strong=\"G2902\"\\+w*.”*" + }, + { + "verseNum": 24, + "text": "But|strong=\"G1161\"* Thomas|strong=\"G2381\"*, one|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G1537\"* twelve|strong=\"G1427\"*, called|strong=\"G3004\"* Didymus|strong=\"G1324\"*,+ 20:24 or, Twin* wasn’t|strong=\"G3588\"* with|strong=\"G3326\"* them|strong=\"G3588\"* when|strong=\"G3753\"* Jesus|strong=\"G2424\"* came|strong=\"G2064\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"G1722\"* other|strong=\"G1161\"* disciples|strong=\"G3101\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “We|strong=\"G1437\"* have|strong=\"G2532\"* seen|strong=\"G3708\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*!”" + }, + { + "verseNum": 26, + "text": "After|strong=\"G3326\"* eight|strong=\"G3638\"* days|strong=\"G2250\"*, again|strong=\"G3825\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* were|strong=\"G1510\"* inside|strong=\"G2080\"* and|strong=\"G2532\"* Thomas|strong=\"G2381\"* was|strong=\"G1510\"* with|strong=\"G3326\"* them|strong=\"G3588\"*. Jesus|strong=\"G2424\"* came|strong=\"G2064\"*, the|strong=\"G2532\"* doors|strong=\"G2374\"* being|strong=\"G1510\"* locked|strong=\"G2808\"*, and|strong=\"G2532\"* stood|strong=\"G2476\"* in|strong=\"G1519\"* the|strong=\"G2532\"* middle|strong=\"G3319\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Peace|strong=\"G1515\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*.”*" + }, + { + "verseNum": 27, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* Thomas|strong=\"G2381\"*, “\\+w Reach|strong=\"G5342\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w finger|strong=\"G1147\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w hands|strong=\"G5495\"\\+w*. \\+w Reach|strong=\"G5342\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hand|strong=\"G5495\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w put|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w side|strong=\"G4125\"\\+w*. Don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1096\"\\+w* unbelieving, \\+w but|strong=\"G2532\"\\+w* \\+w believing|strong=\"G4103\"\\+w*.”*" + }, + { + "verseNum": 28, + "text": "Thomas|strong=\"G2381\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “My|strong=\"G1473\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* my|strong=\"G1473\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 29, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Because|strong=\"G3754\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w*,*+ 20:29 TR adds “Thomas,”* \\+w you|strong=\"G3754\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w believed|strong=\"G4100\"\\+w*. \\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w believed|strong=\"G4100\"\\+w*.”*" + }, + { + "verseNum": 30, + "text": "Therefore|strong=\"G3767\"* Jesus|strong=\"G2424\"* did|strong=\"G4160\"* many|strong=\"G4183\"* other|strong=\"G4183\"* signs|strong=\"G4592\"* in|strong=\"G1722\"* the|strong=\"G1722\"* presence|strong=\"G1799\"* of|strong=\"G2532\"* his|strong=\"G1722\"* disciples|strong=\"G3101\"*, which|strong=\"G3739\"* are|strong=\"G1510\"* not|strong=\"G3756\"* written|strong=\"G1125\"* in|strong=\"G1722\"* this|strong=\"G3778\"* book|strong=\"G3588\"*;" + }, + { + "verseNum": 31, + "text": "but|strong=\"G1161\"* these|strong=\"G3778\"* are|strong=\"G1510\"* written|strong=\"G1125\"* that|strong=\"G3754\"* you|strong=\"G3754\"* may|strong=\"G2532\"* believe|strong=\"G4100\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* is|strong=\"G1510\"* the|strong=\"G1722\"* Christ|strong=\"G5547\"*, the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* believing|strong=\"G4100\"* you|strong=\"G3754\"* may|strong=\"G2532\"* have|strong=\"G2192\"* life|strong=\"G2222\"* in|strong=\"G1722\"* his|strong=\"G1722\"* name|strong=\"G3686\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, Jesus|strong=\"G2424\"* revealed|strong=\"G5319\"* himself|strong=\"G1438\"* again|strong=\"G3825\"* to|strong=\"G1909\"* the|strong=\"G1161\"* disciples|strong=\"G3101\"* at|strong=\"G1909\"* the|strong=\"G1161\"* sea|strong=\"G2281\"* of|strong=\"G1909\"* Tiberias|strong=\"G5085\"*. He|strong=\"G1161\"* revealed|strong=\"G5319\"* himself|strong=\"G1438\"* this|strong=\"G3778\"* way|strong=\"G3779\"*." + }, + { + "verseNum": 2, + "text": "Simon|strong=\"G4613\"* Peter|strong=\"G4074\"*, Thomas|strong=\"G2381\"* called|strong=\"G3004\"* Didymus|strong=\"G1324\"*,+ 21:2 or, Twin* Nathanael|strong=\"G3482\"* of|strong=\"G1537\"* Cana|strong=\"G2580\"* in|strong=\"G2532\"* Galilee|strong=\"G1056\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* sons of|strong=\"G1537\"* Zebedee|strong=\"G2199\"*, and|strong=\"G2532\"* two|strong=\"G1417\"* others|strong=\"G3588\"* of|strong=\"G1537\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"* were|strong=\"G1510\"* together|strong=\"G3674\"*." + }, + { + "verseNum": 3, + "text": "Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “I|strong=\"G1473\"*’m going|strong=\"G5217\"* fishing.”" + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* day|strong=\"G3588\"* had|strong=\"G2424\"* already|strong=\"G2235\"* come|strong=\"G1096\"*, Jesus|strong=\"G2424\"* stood|strong=\"G2476\"* on|strong=\"G1909\"* the|strong=\"G1519\"* beach; yet|strong=\"G1161\"* the|strong=\"G1519\"* disciples|strong=\"G3101\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"* that|strong=\"G3754\"* it|strong=\"G3754\"* was|strong=\"G1510\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 5, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3004\"*, “\\+w Children|strong=\"G3813\"\\+w*, \\+w have|strong=\"G2192\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w anything|strong=\"G5100\"\\+w* \\+w to|strong=\"G3004\"\\+w* eat?” *" + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Cast|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w net|strong=\"G1350\"\\+w* \\+w on|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w side|strong=\"G3313\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w boat|strong=\"G4143\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w some|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 7, + "text": "That|strong=\"G3754\"* disciple|strong=\"G3101\"* therefore|strong=\"G3767\"* whom|strong=\"G3739\"* Jesus|strong=\"G2424\"* loved said|strong=\"G3004\"* to|strong=\"G1519\"* Peter|strong=\"G4074\"*, “It|strong=\"G2532\"*’s|strong=\"G2962\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*!”" + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* other|strong=\"G1161\"* disciples|strong=\"G3101\"* came|strong=\"G2064\"* in|strong=\"G3756\"* the|strong=\"G1161\"* little|strong=\"G4142\"* boat|strong=\"G4142\"* (for|strong=\"G1063\"* they|strong=\"G1161\"* were|strong=\"G1510\"* not|strong=\"G3756\"* far|strong=\"G3112\"* from|strong=\"G2064\"* the|strong=\"G1161\"* land|strong=\"G1093\"*, but|strong=\"G1161\"* about|strong=\"G5613\"* two|strong=\"G1250\"* hundred|strong=\"G1250\"* cubits|strong=\"G4083\"*+ 21:8 200 cubits is about 100 yards or about 91 meters* away|strong=\"G4951\"*), dragging|strong=\"G4951\"* the|strong=\"G1161\"* net|strong=\"G1350\"* full of|strong=\"G1093\"* fish|strong=\"G2486\"*." + }, + { + "verseNum": 9, + "text": "So|strong=\"G3767\"* when|strong=\"G5613\"* they|strong=\"G2532\"* got out|strong=\"G2532\"* on|strong=\"G1519\"* the|strong=\"G2532\"* land|strong=\"G1093\"*, they|strong=\"G2532\"* saw a|strong=\"G5613\"* fire of|strong=\"G2532\"* coals there|strong=\"G2532\"*, with|strong=\"G2532\"* fish|strong=\"G3795\"* and|strong=\"G2532\"* bread laid|strong=\"G2749\"* on|strong=\"G1519\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 10, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Bring|strong=\"G5342\"\\+w* \\+w some|strong=\"G3739\"\\+w* \\+w of|strong=\"G2424\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w fish|strong=\"G3795\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G3588\"\\+w* \\+w just|strong=\"G3739\"\\+w* \\+w caught|strong=\"G4084\"\\+w*.”*" + }, + { + "verseNum": 11, + "text": "Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* went|strong=\"G2532\"* up|strong=\"G1519\"*, and|strong=\"G2532\"* drew|strong=\"G1670\"* the|strong=\"G2532\"* net|strong=\"G1350\"* to|strong=\"G1519\"* land|strong=\"G1093\"*, full|strong=\"G3324\"* of|strong=\"G2532\"* one|strong=\"G3588\"* hundred|strong=\"G1540\"* fifty-three|strong=\"G4004\"* great|strong=\"G3173\"* fish|strong=\"G2486\"*. Even|strong=\"G2532\"* though|strong=\"G2532\"* there|strong=\"G2532\"* were|strong=\"G1510\"* so|strong=\"G3767\"* many|strong=\"G5118\"*, the|strong=\"G2532\"* net|strong=\"G1350\"* wasn’t|strong=\"G3588\"* torn|strong=\"G4977\"*." + }, + { + "verseNum": 12, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Come|strong=\"G1205\"\\+w* \\+w and|strong=\"G1161\"\\+w* eat breakfast!”*" + }, + { + "verseNum": 13, + "text": "Then|strong=\"G2532\"* Jesus|strong=\"G2424\"* came|strong=\"G2064\"* and|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* bread, gave|strong=\"G1325\"* it|strong=\"G2532\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* fish|strong=\"G3795\"* likewise|strong=\"G3668\"*." + }, + { + "verseNum": 14, + "text": "This|strong=\"G3778\"* is|strong=\"G3588\"* now|strong=\"G2235\"* the|strong=\"G1537\"* third|strong=\"G5154\"* time|strong=\"G5154\"* that|strong=\"G3588\"* Jesus|strong=\"G2424\"* was|strong=\"G3588\"* revealed|strong=\"G5319\"* to|strong=\"G3101\"* his|strong=\"G3588\"* disciples|strong=\"G3101\"* after|strong=\"G1537\"* he|strong=\"G3778\"* had|strong=\"G2424\"* risen|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G1537\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 15, + "text": "So|strong=\"G3767\"* when|strong=\"G3753\"* they|strong=\"G3588\"* had|strong=\"G2424\"* eaten their|strong=\"G3588\"* breakfast, Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* Simon|strong=\"G4613\"* Peter|strong=\"G4074\"*, “\\+w Simon|strong=\"G4613\"\\+w*, son \\+w of|strong=\"G2962\"\\+w* Jonah, \\+w do|strong=\"G1492\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w love|strong=\"G5368\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w these|strong=\"G3778\"\\+w*?”*" + }, + { + "verseNum": 16, + "text": "He|strong=\"G3754\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"* again|strong=\"G3825\"* a|strong=\"G1492\"* second|strong=\"G1208\"* time|strong=\"G1208\"*, “\\+w Simon|strong=\"G4613\"\\+w*, son \\+w of|strong=\"G2962\"\\+w* Jonah, \\+w do|strong=\"G1492\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w love|strong=\"G5368\"\\+w* \\+w me|strong=\"G1473\"\\+w*?”*" + }, + { + "verseNum": 17, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"* the|strong=\"G2532\"* third|strong=\"G5154\"* time|strong=\"G5154\"*, “\\+w Simon|strong=\"G4613\"\\+w*, son \\+w of|strong=\"G2532\"\\+w* Jonah, \\+w do|strong=\"G1492\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* affection \\+w for|strong=\"G3754\"\\+w* \\+w me|strong=\"G1473\"\\+w*?”*" + }, + { + "verseNum": 18, + "text": "Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w young|strong=\"G3501\"\\+w*, \\+w you|strong=\"G4771\"\\+w* dressed \\+w yourself|strong=\"G4572\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w walked|strong=\"G4043\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w wanted|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w old|strong=\"G1095\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w stretch|strong=\"G1614\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hands|strong=\"G5495\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w another|strong=\"G3588\"\\+w* \\+w will|strong=\"G2309\"\\+w* dress \\+w you|strong=\"G4771\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w carry|strong=\"G5342\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w you|strong=\"G4771\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w go|strong=\"G2309\"\\+w*.”*" + }, + { + "verseNum": 19, + "text": "Now|strong=\"G1161\"* he|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, signifying|strong=\"G4591\"* by|strong=\"G2532\"* what|strong=\"G4169\"* kind|strong=\"G4169\"* of|strong=\"G2316\"* death|strong=\"G2288\"* he|strong=\"G2532\"* would|strong=\"G2316\"* glorify|strong=\"G1392\"* God|strong=\"G2316\"*. When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Follow|strong=\"G1161\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "Then|strong=\"G2532\"* Peter|strong=\"G4074\"*, turning|strong=\"G1994\"* around|strong=\"G1909\"*, saw|strong=\"G2424\"* a|strong=\"G2532\"* disciple|strong=\"G3101\"* following|strong=\"G1722\"*. This|strong=\"G3588\"* was|strong=\"G1510\"* the|strong=\"G1722\"* disciple|strong=\"G3101\"* whom|strong=\"G3739\"* Jesus|strong=\"G2424\"* loved, the|strong=\"G1722\"* one|strong=\"G3739\"* who|strong=\"G3739\"* had|strong=\"G2424\"* also|strong=\"G2532\"* leaned on|strong=\"G1909\"* Jesus|strong=\"G2424\"*’ chest|strong=\"G4738\"* at|strong=\"G1722\"* the|strong=\"G1722\"* supper|strong=\"G1173\"* and|strong=\"G2532\"* asked|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* going|strong=\"G2532\"* to|strong=\"G2532\"* betray|strong=\"G3860\"* you|strong=\"G4771\"*?”" + }, + { + "verseNum": 21, + "text": "Peter|strong=\"G4074\"*, seeing|strong=\"G3708\"* him|strong=\"G3588\"*, said|strong=\"G3004\"* to|strong=\"G3004\"* Jesus|strong=\"G2424\"*, “Lord|strong=\"G2962\"*, what|strong=\"G5101\"* about|strong=\"G2424\"* this|strong=\"G3778\"* man|strong=\"G3778\"*?”" + }, + { + "verseNum": 22, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “\\+w If|strong=\"G1437\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w desire|strong=\"G2309\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w stay|strong=\"G3306\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w come|strong=\"G2064\"\\+w*, \\+w what|strong=\"G5101\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G4771\"\\+w*? \\+w You|strong=\"G4771\"\\+w* \\+w follow|strong=\"G2064\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 23, + "text": "This|strong=\"G3778\"* saying|strong=\"G3004\"* therefore|strong=\"G3767\"* went|strong=\"G1831\"* out|strong=\"G1831\"* among|strong=\"G1519\"* the|strong=\"G2532\"* brothers+ 21:23 The word for “brothers” here may be also correctly translated “brothers and sisters” or “siblings.”* that|strong=\"G3754\"* this|strong=\"G3778\"* disciple|strong=\"G3101\"* wouldn’t|strong=\"G3588\"* die. Yet|strong=\"G2532\"* Jesus|strong=\"G2424\"* didn’t|strong=\"G3588\"* say|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"* that|strong=\"G3754\"* he|strong=\"G2532\"* wouldn’t|strong=\"G3588\"* die, but|strong=\"G1161\"*, “\\+w If|strong=\"G1437\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w desire|strong=\"G2309\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w stay|strong=\"G3306\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w*, \\+w what|strong=\"G5101\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w*?”*" + }, + { + "verseNum": 24, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* disciple|strong=\"G3101\"* who|strong=\"G3588\"* testifies|strong=\"G3140\"* about|strong=\"G4012\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, and|strong=\"G2532\"* wrote|strong=\"G1125\"* these|strong=\"G3778\"* things|strong=\"G3778\"*. We|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* his|strong=\"G4012\"* witness|strong=\"G3140\"* is|strong=\"G1510\"* true|strong=\"G3588\"*." + }, + { + "verseNum": 25, + "text": "There|strong=\"G2532\"* are|strong=\"G1510\"* also|strong=\"G2532\"* many|strong=\"G4183\"* other|strong=\"G1161\"* things|strong=\"G4183\"* which|strong=\"G2532\"* Jesus|strong=\"G2424\"* did|strong=\"G4160\"*, which|strong=\"G2532\"* if|strong=\"G1437\"* they|strong=\"G2532\"* would|strong=\"G2532\"* all|strong=\"G2532\"* be|strong=\"G1510\"* written|strong=\"G1125\"*, I|strong=\"G2532\"* suppose|strong=\"G3633\"* that|strong=\"G2532\"* even|strong=\"G2532\"* the|strong=\"G2532\"* world|strong=\"G2889\"* itself wouldn’t have|strong=\"G2532\"* room|strong=\"G5562\"* for|strong=\"G1161\"* the|strong=\"G2532\"* books that|strong=\"G2532\"* would|strong=\"G2532\"* be|strong=\"G1510\"* written|strong=\"G1125\"*." + } + ] + } + ] + }, + { + "name": "Acts", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"G2532\"* first|strong=\"G4413\"* book|strong=\"G3588\"* I|strong=\"G3739\"* wrote, Theophilus|strong=\"G2321\"*, concerned all|strong=\"G3956\"* that|strong=\"G3739\"* Jesus|strong=\"G2424\"* began both|strong=\"G2532\"* to|strong=\"G2532\"* do|strong=\"G4160\"* and|strong=\"G2532\"* to|strong=\"G2532\"* teach|strong=\"G1321\"*," + }, + { + "verseNum": 2, + "text": "until the|strong=\"G1223\"* day|strong=\"G2250\"* in|strong=\"G1223\"* which|strong=\"G3739\"* he|strong=\"G3739\"* was|strong=\"G3588\"* received up, after|strong=\"G1223\"* he|strong=\"G3739\"* had|strong=\"G3739\"* given|strong=\"G1781\"* commandment|strong=\"G1781\"* through|strong=\"G1223\"* the|strong=\"G1223\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* to|strong=\"G4151\"* the|strong=\"G1223\"* apostles whom|strong=\"G3739\"* he|strong=\"G3739\"* had|strong=\"G3739\"* chosen|strong=\"G1586\"*." + }, + { + "verseNum": 3, + "text": "To|strong=\"G2532\"* these|strong=\"G3739\"* he|strong=\"G2532\"* also|strong=\"G2532\"* showed himself|strong=\"G1438\"* alive|strong=\"G2198\"* after|strong=\"G3326\"* he|strong=\"G2532\"* suffered|strong=\"G3958\"*, by|strong=\"G1223\"* many|strong=\"G4183\"* proofs|strong=\"G5039\"*, appearing|strong=\"G3700\"* to|strong=\"G2532\"* them|strong=\"G3588\"* over|strong=\"G4012\"* a|strong=\"G2532\"* period|strong=\"G2532\"* of|strong=\"G4012\"* forty|strong=\"G5062\"* days|strong=\"G2250\"* and|strong=\"G2532\"* speaking|strong=\"G3004\"* about|strong=\"G4012\"* God|strong=\"G2316\"*’s Kingdom." + }, + { + "verseNum": 4, + "text": "Being|strong=\"G2532\"* assembled together|strong=\"G4871\"* with|strong=\"G2532\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* commanded|strong=\"G3853\"* them|strong=\"G3588\"*, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w depart|strong=\"G5563\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w Jerusalem|strong=\"G2414\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w wait|strong=\"G4037\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w promise|strong=\"G1860\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* heard \\+w from|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w For|strong=\"G3754\"\\+w* \\+w John|strong=\"G2491\"\\+w* \\+w indeed|strong=\"G3303\"\\+w* baptized \\+w in|strong=\"G1722\"\\+w* \\+w water|strong=\"G5204\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G4183\"\\+w* \\+w be|strong=\"G3756\"\\+w* baptized \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w from|strong=\"G3756\"\\+w* \\+w now|strong=\"G1161\"\\+w*.”*" + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"G3767\"*, when|strong=\"G1722\"* they|strong=\"G3588\"* had|strong=\"G3588\"* come|strong=\"G4905\"* together|strong=\"G4905\"*, they|strong=\"G3588\"* asked|strong=\"G2065\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, are|strong=\"G3588\"* you|strong=\"G1487\"* now|strong=\"G3767\"* restoring the|strong=\"G1722\"* kingdom to|strong=\"G3004\"* Israel|strong=\"G2474\"*?”" + }, + { + "verseNum": 7, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w It|strong=\"G1161\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* \\+w for|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w times|strong=\"G2540\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w seasons|strong=\"G2540\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w set|strong=\"G5087\"\\+w* \\+w within|strong=\"G1722\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w authority|strong=\"G1849\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w has|strong=\"G4151\"\\+w* \\+w come|strong=\"G1904\"\\+w* \\+w upon|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w witnesses|strong=\"G3144\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w*, \\+w in|strong=\"G1722\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w Judea|strong=\"G2449\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Samaria|strong=\"G4540\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* uttermost parts \\+w of|strong=\"G4151\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, as|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* looking|strong=\"G2532\"*, he|strong=\"G2532\"* was|strong=\"G3588\"* taken up|strong=\"G1869\"*, and|strong=\"G2532\"* a|strong=\"G2532\"* cloud|strong=\"G3507\"* received|strong=\"G5274\"* him|strong=\"G3588\"* out|strong=\"G2532\"* of|strong=\"G2532\"* their|strong=\"G2532\"* sight|strong=\"G3788\"*." + }, + { + "verseNum": 10, + "text": "While|strong=\"G1722\"* they|strong=\"G2532\"* were|strong=\"G1510\"* looking|strong=\"G2532\"* steadfastly into|strong=\"G1519\"* the|strong=\"G1722\"* sky|strong=\"G3772\"* as|strong=\"G5613\"* he|strong=\"G2532\"* went|strong=\"G4198\"*, behold|strong=\"G2400\"*,+ 1:10 “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* two|strong=\"G1417\"* men|strong=\"G1417\"* stood|strong=\"G3936\"* by|strong=\"G1722\"* them|strong=\"G3588\"* in|strong=\"G1722\"* white|strong=\"G3022\"* clothing|strong=\"G2066\"*," + }, + { + "verseNum": 11, + "text": "who|strong=\"G3739\"* also|strong=\"G2532\"* said|strong=\"G3004\"*, “You|strong=\"G5210\"* men|strong=\"G3778\"* of|strong=\"G2532\"* Galilee|strong=\"G1057\"*, why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G5210\"* stand|strong=\"G2476\"* looking|strong=\"G2424\"* into|strong=\"G1519\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*? This|strong=\"G3778\"* Jesus|strong=\"G2424\"*, who|strong=\"G3739\"* was|strong=\"G3588\"* received up|strong=\"G1519\"* from|strong=\"G2064\"* you|strong=\"G5210\"* into|strong=\"G1519\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*, will|strong=\"G5101\"* come|strong=\"G2064\"* back|strong=\"G1519\"* in|strong=\"G1519\"* the|strong=\"G2532\"* same|strong=\"G3778\"* way|strong=\"G3779\"* as|strong=\"G1519\"* you|strong=\"G5210\"* saw|strong=\"G2300\"* him|strong=\"G3588\"* going|strong=\"G4198\"* into|strong=\"G1519\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"G5119\"* they|strong=\"G3588\"* returned|strong=\"G5290\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"* from|strong=\"G3588\"* the|strong=\"G1519\"* mountain|strong=\"G3735\"* called|strong=\"G2564\"* Olivet|strong=\"G1638\"*, which|strong=\"G3739\"* is|strong=\"G1510\"* near|strong=\"G1451\"* Jerusalem|strong=\"G2419\"*, a|strong=\"G2192\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"*’s|strong=\"G2192\"* journey|strong=\"G3598\"* away|strong=\"G5290\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"G3753\"* they|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G1525\"* in|strong=\"G1519\"*, they|strong=\"G2532\"* went|strong=\"G1525\"* up|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* upper|strong=\"G5253\"* room|strong=\"G5253\"* where|strong=\"G3757\"* they|strong=\"G2532\"* were|strong=\"G1510\"* staying|strong=\"G2650\"*, that|strong=\"G3588\"* is|strong=\"G1510\"* Peter|strong=\"G4074\"*, John|strong=\"G2491\"*, James|strong=\"G2385\"*, Andrew, Philip|strong=\"G5376\"*, Thomas|strong=\"G2381\"*, Bartholomew, Matthew|strong=\"G3156\"*, James|strong=\"G2385\"* the|strong=\"G2532\"* son of|strong=\"G2532\"* Alphaeus, Simon|strong=\"G4613\"* the|strong=\"G2532\"* Zealot, and|strong=\"G2532\"* Judas|strong=\"G2455\"* the|strong=\"G2532\"* son of|strong=\"G2532\"* James|strong=\"G2385\"*." + }, + { + "verseNum": 14, + "text": "All|strong=\"G3956\"* these|strong=\"G3778\"* with|strong=\"G4862\"* one|strong=\"G3956\"* accord|strong=\"G3661\"* continued|strong=\"G4342\"* steadfastly in|strong=\"G2532\"* prayer|strong=\"G4335\"* and|strong=\"G2532\"* supplication, along|strong=\"G4862\"* with|strong=\"G4862\"* the|strong=\"G2532\"* women|strong=\"G1135\"* and|strong=\"G2532\"* Mary|strong=\"G3137\"* the|strong=\"G2532\"* mother|strong=\"G3384\"* of|strong=\"G2532\"* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* with|strong=\"G4862\"* his|strong=\"G3956\"* brothers." + }, + { + "verseNum": 15, + "text": "In|strong=\"G1722\"* these|strong=\"G3778\"* days|strong=\"G2250\"*, Peter|strong=\"G4074\"* stood|strong=\"G3588\"* up|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2250\"* the|strong=\"G1722\"* disciples|strong=\"G1510\"* (and|strong=\"G2532\"* the|strong=\"G1722\"* number|strong=\"G3793\"* of|strong=\"G2250\"* names|strong=\"G3686\"* was|strong=\"G1510\"* about|strong=\"G5613\"* one|strong=\"G3588\"* hundred|strong=\"G1540\"* twenty|strong=\"G1501\"*), and|strong=\"G2532\"* said|strong=\"G3004\"*," + }, + { + "verseNum": 16, + "text": "“Brothers, it|strong=\"G3739\"* was|strong=\"G1096\"* necessary|strong=\"G1163\"* that|strong=\"G3739\"* this|strong=\"G3588\"* Scripture|strong=\"G1124\"* should|strong=\"G1163\"* be|strong=\"G1096\"* fulfilled|strong=\"G4137\"*, which|strong=\"G3739\"* the|strong=\"G1223\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* spoke before|strong=\"G4302\"* by|strong=\"G1223\"* the|strong=\"G1223\"* mouth|strong=\"G4750\"* of|strong=\"G4012\"* David|strong=\"G1138\"* concerning|strong=\"G4012\"* Judas|strong=\"G2455\"*, who|strong=\"G3739\"* was|strong=\"G1096\"* guide|strong=\"G3595\"* to|strong=\"G1163\"* those|strong=\"G3588\"* who|strong=\"G3739\"* took|strong=\"G1096\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* counted|strong=\"G2674\"* with|strong=\"G1722\"* us|strong=\"G2249\"*, and|strong=\"G2532\"* received|strong=\"G2975\"* his|strong=\"G1722\"* portion|strong=\"G2819\"* in|strong=\"G1722\"* this|strong=\"G3778\"* ministry|strong=\"G1248\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"G2532\"* this|strong=\"G3778\"* man|strong=\"G3778\"* obtained|strong=\"G2932\"* a|strong=\"G1096\"* field|strong=\"G5564\"* with|strong=\"G1537\"* the|strong=\"G2532\"* reward|strong=\"G3408\"* for|strong=\"G2532\"* his|strong=\"G3956\"* wickedness; and|strong=\"G2532\"* falling|strong=\"G1096\"* headlong|strong=\"G4248\"*, his|strong=\"G3956\"* body burst|strong=\"G2997\"* open|strong=\"G2997\"* and|strong=\"G2532\"* all|strong=\"G3956\"* his|strong=\"G3956\"* intestines|strong=\"G4698\"* gushed|strong=\"G1632\"* out|strong=\"G1537\"*." + }, + { + "verseNum": 19, + "text": "It|strong=\"G2532\"* became|strong=\"G1096\"* known|strong=\"G1110\"* to|strong=\"G2532\"* everyone|strong=\"G3956\"* who|strong=\"G3739\"* lived|strong=\"G2730\"* in|strong=\"G2532\"* Jerusalem|strong=\"G2419\"* that|strong=\"G3739\"* in|strong=\"G2532\"* their|strong=\"G2532\"* language|strong=\"G1258\"* that|strong=\"G3739\"* field|strong=\"G5564\"* was|strong=\"G1510\"* called|strong=\"G2564\"* ‘Akeldama,’ that|strong=\"G3739\"* is|strong=\"G1510\"*, ‘The|strong=\"G2532\"* field|strong=\"G5564\"* of|strong=\"G2532\"* blood.’" + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G1510\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* book|strong=\"G3588\"* of|strong=\"G2532\"* Psalms|strong=\"G5568\"*," + }, + { + "verseNum": 21, + "text": "“Of|strong=\"G2532\"* the|strong=\"G1722\"* men|strong=\"G3956\"* therefore|strong=\"G3767\"* who|strong=\"G3739\"* have|strong=\"G2532\"* accompanied|strong=\"G4905\"* us|strong=\"G2249\"* all|strong=\"G3956\"* the|strong=\"G1722\"* time|strong=\"G5550\"* that|strong=\"G3739\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* went|strong=\"G1831\"* in|strong=\"G1722\"* and|strong=\"G2532\"* out|strong=\"G1831\"* among|strong=\"G1722\"* us|strong=\"G2249\"*," + }, + { + "verseNum": 22, + "text": "beginning from|strong=\"G3588\"* the|strong=\"G3588\"* baptism of|strong=\"G2250\"* John|strong=\"G2491\"* to|strong=\"G2193\"* the|strong=\"G3588\"* day|strong=\"G2250\"* that|strong=\"G3739\"* he|strong=\"G3739\"* was|strong=\"G1096\"* received up from|strong=\"G3588\"* us|strong=\"G2249\"*, of|strong=\"G2250\"* these|strong=\"G3778\"* one|strong=\"G1520\"* must|strong=\"G1096\"* become|strong=\"G1096\"* a|strong=\"G1096\"* witness|strong=\"G3144\"* with|strong=\"G4862\"* us|strong=\"G2249\"* of|strong=\"G2250\"* his|strong=\"G3739\"* resurrection.”" + }, + { + "verseNum": 23, + "text": "They|strong=\"G2532\"* put|strong=\"G2476\"* forward|strong=\"G2476\"* two|strong=\"G1417\"*: Joseph|strong=\"G2501\"* called|strong=\"G2564\"* Barsabbas, who|strong=\"G3739\"* was|strong=\"G3588\"* also|strong=\"G2532\"* called|strong=\"G2564\"* Justus|strong=\"G2459\"*, and|strong=\"G2532\"* Matthias|strong=\"G3159\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"G2532\"* prayed|strong=\"G4336\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “You|strong=\"G4771\"*, Lord|strong=\"G2962\"*, who|strong=\"G3739\"* know|strong=\"G2589\"* the|strong=\"G2532\"* hearts|strong=\"G2589\"* of|strong=\"G1537\"* all|strong=\"G3956\"* men|strong=\"G3956\"*, show which|strong=\"G3739\"* one|strong=\"G1520\"* of|strong=\"G1537\"* these|strong=\"G3778\"* two|strong=\"G1417\"* you|strong=\"G4771\"* have|strong=\"G2532\"* chosen|strong=\"G1586\"*" + }, + { + "verseNum": 25, + "text": "to|strong=\"G1519\"* take|strong=\"G2983\"* part|strong=\"G2532\"* in|strong=\"G1519\"* this|strong=\"G3778\"* ministry|strong=\"G1248\"* and|strong=\"G2532\"* apostleship from|strong=\"G2532\"* which|strong=\"G3739\"* Judas|strong=\"G2455\"* fell|strong=\"G2532\"* away|strong=\"G4198\"*, that|strong=\"G3739\"* he|strong=\"G2532\"* might|strong=\"G2532\"* go|strong=\"G4198\"* to|strong=\"G1519\"* his|strong=\"G1519\"* own|strong=\"G2398\"* place|strong=\"G5117\"*.”" + }, + { + "verseNum": 26, + "text": "They|strong=\"G2532\"* drew|strong=\"G2532\"* lots|strong=\"G2819\"* for|strong=\"G1909\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* lot|strong=\"G2819\"* fell|strong=\"G4098\"* on|strong=\"G1909\"* Matthias|strong=\"G3159\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3588\"* counted with|strong=\"G3326\"* the|strong=\"G2532\"* eleven|strong=\"G1733\"* apostles." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G2532\"* when|strong=\"G2532\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G2250\"* Pentecost|strong=\"G4005\"* had|strong=\"G2532\"* come|strong=\"G1510\"*, they|strong=\"G2532\"* were|strong=\"G1510\"* all|strong=\"G3956\"* with|strong=\"G1722\"* one|strong=\"G3956\"* accord in|strong=\"G1722\"* one|strong=\"G3956\"* place|strong=\"G1722\"*." + }, + { + "verseNum": 2, + "text": "Suddenly there|strong=\"G2532\"* came|strong=\"G1096\"* from|strong=\"G1537\"* the|strong=\"G2532\"* sky|strong=\"G3772\"* a|strong=\"G1096\"* sound|strong=\"G2279\"* like|strong=\"G5618\"* the|strong=\"G2532\"* rushing|strong=\"G5342\"* of|strong=\"G1537\"* a|strong=\"G1096\"* mighty|strong=\"G2532\"* wind|strong=\"G4157\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* filled|strong=\"G4137\"* all|strong=\"G3650\"* the|strong=\"G2532\"* house|strong=\"G3624\"* where|strong=\"G3757\"* they|strong=\"G2532\"* were|strong=\"G1510\"* sitting|strong=\"G2521\"*." + }, + { + "verseNum": 3, + "text": "Tongues|strong=\"G1100\"* like|strong=\"G5616\"* fire|strong=\"G4442\"* appeared|strong=\"G3708\"* and|strong=\"G2532\"* were|strong=\"G2532\"* distributed to|strong=\"G2532\"* them|strong=\"G3708\"*, and|strong=\"G2532\"* one|strong=\"G1520\"* sat|strong=\"G2523\"* on|strong=\"G1909\"* each|strong=\"G1538\"* of|strong=\"G2532\"* them|strong=\"G3708\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* all|strong=\"G3956\"* filled|strong=\"G4130\"* with|strong=\"G2532\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* and|strong=\"G2532\"* began to|strong=\"G2532\"* speak|strong=\"G2980\"* with|strong=\"G2532\"* other|strong=\"G2087\"* languages|strong=\"G1100\"*, as|strong=\"G2531\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* gave|strong=\"G1325\"* them|strong=\"G3588\"* the|strong=\"G2532\"* ability to|strong=\"G2532\"* speak|strong=\"G2980\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"G1161\"* there|strong=\"G1161\"* were|strong=\"G1510\"* dwelling|strong=\"G2730\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"* Jews|strong=\"G2453\"*, devout|strong=\"G2126\"* men|strong=\"G3956\"*, from|strong=\"G5259\"* every|strong=\"G3956\"* nation|strong=\"G1484\"* under|strong=\"G5259\"* the|strong=\"G1722\"* sky|strong=\"G3772\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"G1161\"* this|strong=\"G3778\"* sound|strong=\"G5456\"* was|strong=\"G1096\"* heard, the|strong=\"G2532\"* multitude|strong=\"G4128\"* came|strong=\"G1096\"* together|strong=\"G4905\"* and|strong=\"G2532\"* were|strong=\"G3588\"* bewildered|strong=\"G4797\"*, because|strong=\"G3754\"* everyone|strong=\"G1538\"* heard them|strong=\"G3588\"* speaking|strong=\"G2980\"* in|strong=\"G2532\"* his|strong=\"G2398\"* own|strong=\"G2398\"* language|strong=\"G1258\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"G2532\"* were|strong=\"G1510\"* all|strong=\"G3956\"* amazed|strong=\"G2296\"* and|strong=\"G2532\"* marveled|strong=\"G2296\"*, saying|strong=\"G3004\"* to|strong=\"G2532\"* one|strong=\"G3956\"* another|strong=\"G3588\"*, “Behold|strong=\"G2400\"*, aren’t|strong=\"G3588\"* all|strong=\"G3956\"* these|strong=\"G3778\"* who|strong=\"G3588\"* speak|strong=\"G2980\"* Galileans|strong=\"G1057\"*?" + }, + { + "verseNum": 8, + "text": "How|strong=\"G4459\"* do|strong=\"G2532\"* we|strong=\"G2249\"* hear, everyone|strong=\"G1538\"* in|strong=\"G1722\"* our|strong=\"G2532\"* own|strong=\"G2398\"* native|strong=\"G1722\"* language|strong=\"G1258\"*?" + }, + { + "verseNum": 9, + "text": "Parthians|strong=\"G3934\"*, Medes|strong=\"G3370\"*, Elamites|strong=\"G1639\"*, and|strong=\"G2532\"* people|strong=\"G3588\"* from|strong=\"G2532\"* Mesopotamia|strong=\"G3318\"*, Judea|strong=\"G2449\"*, Cappadocia|strong=\"G2587\"*, Pontus|strong=\"G4195\"*, Asia|strong=\"G3588\"*," + }, + { + "verseNum": 10, + "text": "Phrygia|strong=\"G5435\"*, Pamphylia|strong=\"G3828\"*, Egypt, the|strong=\"G2532\"* parts|strong=\"G3313\"* of|strong=\"G2532\"* Libya|strong=\"G3033\"* around|strong=\"G2596\"* Cyrene|strong=\"G2957\"*, visitors|strong=\"G1927\"* from|strong=\"G2532\"* Rome|strong=\"G4514\"*, both|strong=\"G2532\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* proselytes|strong=\"G4339\"*," + }, + { + "verseNum": 11, + "text": "Cretans|strong=\"G2912\"* and|strong=\"G2532\"* Arabians—we|strong=\"G2532\"* hear them|strong=\"G3588\"* speaking|strong=\"G2980\"* in|strong=\"G2532\"* our|strong=\"G2316\"* languages|strong=\"G1100\"* the|strong=\"G2532\"* mighty|strong=\"G2532\"* works|strong=\"G3167\"* of|strong=\"G2316\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 12, + "text": "They|strong=\"G2532\"* were|strong=\"G1510\"* all|strong=\"G3956\"* amazed|strong=\"G1839\"* and|strong=\"G2532\"* were|strong=\"G1510\"* perplexed|strong=\"G1280\"*, saying|strong=\"G3004\"* to|strong=\"G4314\"* one|strong=\"G3956\"* another|strong=\"G1161\"*, “What|strong=\"G5101\"* does|strong=\"G1510\"* this|strong=\"G3778\"* mean|strong=\"G3004\"*?”" + }, + { + "verseNum": 13, + "text": "Others|strong=\"G2087\"*, mocking|strong=\"G5512\"*, said|strong=\"G3004\"*, “They|strong=\"G1161\"* are|strong=\"G1510\"* filled with|strong=\"G1161\"* new wine|strong=\"G1098\"*.”" + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"*, standing|strong=\"G2476\"* up|strong=\"G1869\"* with|strong=\"G4862\"* the|strong=\"G2532\"* eleven|strong=\"G1733\"*, lifted|strong=\"G1869\"* up|strong=\"G1869\"* his|strong=\"G3956\"* voice|strong=\"G5456\"* and|strong=\"G2532\"* spoke out|strong=\"G2532\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “You|strong=\"G5210\"* men|strong=\"G3956\"* of|strong=\"G2532\"* Judea|strong=\"G2453\"* and|strong=\"G2532\"* all|strong=\"G3956\"* you|strong=\"G5210\"* who|strong=\"G3588\"* dwell|strong=\"G2730\"* at|strong=\"G2730\"* Jerusalem|strong=\"G2419\"*, let|strong=\"G1161\"* this|strong=\"G3778\"* be|strong=\"G1510\"* known|strong=\"G1110\"* to|strong=\"G2532\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* listen to|strong=\"G2532\"* my|strong=\"G3956\"* words|strong=\"G4487\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* these|strong=\"G3778\"* aren’t|strong=\"G3588\"* drunken|strong=\"G3184\"*, as|strong=\"G5613\"* you|strong=\"G5210\"* suppose|strong=\"G5274\"*, seeing|strong=\"G5613\"* it|strong=\"G1063\"* is|strong=\"G1510\"* only|strong=\"G3756\"* the|strong=\"G3588\"* third|strong=\"G5154\"* hour|strong=\"G5610\"* of|strong=\"G2250\"* the|strong=\"G3588\"* day|strong=\"G2250\"*.+ 2:15 about 9:00 a.m.*" + }, + { + "verseNum": 16, + "text": "But|strong=\"G3588\"* this|strong=\"G3778\"* is|strong=\"G1510\"* what|strong=\"G3588\"* has|strong=\"G3778\"* been|strong=\"G1510\"* spoken|strong=\"G3004\"* through|strong=\"G1223\"* the|strong=\"G1223\"* prophet|strong=\"G4396\"* Joel|strong=\"G2493\"*:" + }, + { + "verseNum": 17, + "text": "‘It|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* last|strong=\"G2078\"* days|strong=\"G2250\"*, says|strong=\"G3004\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 18, + "text": "Yes, and|strong=\"G2532\"* on|strong=\"G1909\"* my|strong=\"G1722\"* servants|strong=\"G1401\"* and|strong=\"G2532\"* on|strong=\"G1909\"* my|strong=\"G1722\"* handmaidens|strong=\"G1399\"* in|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"*," + }, + { + "verseNum": 19, + "text": "I|strong=\"G2532\"* will|strong=\"G2532\"* show|strong=\"G1325\"* wonders|strong=\"G5059\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sky|strong=\"G3772\"* above|strong=\"G1909\"*," + }, + { + "verseNum": 20, + "text": "The|strong=\"G2532\"* sun|strong=\"G2246\"* will|strong=\"G2532\"* be|strong=\"G2532\"* turned|strong=\"G3344\"* into|strong=\"G1519\"* darkness|strong=\"G4655\"*," + }, + { + "verseNum": 21, + "text": "It|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* that|strong=\"G3739\"* whoever|strong=\"G3739\"* will|strong=\"G1510\"* call|strong=\"G1941\"* on|strong=\"G1941\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* will|strong=\"G1510\"* be|strong=\"G1510\"* saved|strong=\"G4982\"*.’+ 2:21 Joel 2:28-32*" + }, + { + "verseNum": 22, + "text": "“Men|strong=\"G3778\"* of|strong=\"G3056\"* Israel|strong=\"G2475\"*, hear these|strong=\"G3778\"* words|strong=\"G3056\"*! Jesus|strong=\"G2424\"* of|strong=\"G3056\"* Nazareth|strong=\"G3480\"*, a|strong=\"G2532\"* man|strong=\"G3778\"* approved by|strong=\"G1223\"* God|strong=\"G2316\"* to|strong=\"G1519\"* you|strong=\"G5210\"* by|strong=\"G1223\"* mighty|strong=\"G1411\"* works|strong=\"G1411\"* and|strong=\"G2532\"* wonders|strong=\"G5059\"* and|strong=\"G2532\"* signs|strong=\"G4592\"* which|strong=\"G3739\"* God|strong=\"G2316\"* did|strong=\"G4160\"* by|strong=\"G1223\"* him|strong=\"G3588\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* you|strong=\"G5210\"* yourselves|strong=\"G4771\"* know|strong=\"G1492\"*," + }, + { + "verseNum": 23, + "text": "him|strong=\"G3588\"*, being|strong=\"G2532\"* delivered|strong=\"G1560\"* up|strong=\"G2532\"* by|strong=\"G1223\"* the|strong=\"G2532\"* determined|strong=\"G3724\"* counsel|strong=\"G1012\"* and|strong=\"G2532\"* foreknowledge|strong=\"G4268\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, you|strong=\"G2532\"* have|strong=\"G2532\"* taken by|strong=\"G1223\"* the|strong=\"G2532\"* hand|strong=\"G5495\"* of|strong=\"G1223\"* lawless men|strong=\"G3778\"*, crucified|strong=\"G4362\"* and|strong=\"G2532\"* killed;" + }, + { + "verseNum": 24, + "text": "whom|strong=\"G3739\"* God|strong=\"G2316\"* raised|strong=\"G2316\"* up|strong=\"G3089\"*, having|strong=\"G2316\"* freed him|strong=\"G3588\"* from|strong=\"G5259\"* the|strong=\"G3588\"* agony|strong=\"G5604\"* of|strong=\"G5259\"* death|strong=\"G2288\"*, because|strong=\"G2530\"* it|strong=\"G3739\"* was|strong=\"G1510\"* not|strong=\"G3756\"* possible|strong=\"G1415\"* that|strong=\"G3739\"* he|strong=\"G3739\"* should|strong=\"G2316\"* be|strong=\"G1510\"* held|strong=\"G2902\"* by|strong=\"G5259\"* it|strong=\"G3739\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"G1063\"* David|strong=\"G1138\"* says|strong=\"G3004\"* concerning|strong=\"G1519\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 26, + "text": "Therefore|strong=\"G1223\"* my|strong=\"G1473\"* heart|strong=\"G2588\"* was|strong=\"G3588\"* glad|strong=\"G2165\"*, and|strong=\"G2532\"* my|strong=\"G1473\"* tongue|strong=\"G1100\"* rejoiced|strong=\"G2165\"*." + }, + { + "verseNum": 27, + "text": "because|strong=\"G3754\"* you|strong=\"G4771\"* will|strong=\"G1473\"* not|strong=\"G3756\"* leave|strong=\"G1459\"* my|strong=\"G3708\"* soul|strong=\"G5590\"* in|strong=\"G1519\"* Hades,+ 2:27 or, Hell*" + }, + { + "verseNum": 28, + "text": "You|strong=\"G4771\"* made|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G3326\"* me|strong=\"G1473\"* the|strong=\"G3588\"* ways|strong=\"G3598\"* of|strong=\"G3598\"* life|strong=\"G2222\"*." + }, + { + "verseNum": 29, + "text": "“Brothers, I|strong=\"G1473\"* may|strong=\"G2532\"* tell|strong=\"G3004\"* you|strong=\"G5210\"* freely|strong=\"G3954\"* of|strong=\"G4012\"* the|strong=\"G1722\"* patriarch|strong=\"G3966\"* David|strong=\"G1138\"*, that|strong=\"G3754\"* he|strong=\"G2532\"* both|strong=\"G2532\"* died|strong=\"G5053\"* and|strong=\"G2532\"* was|strong=\"G1510\"* buried|strong=\"G2290\"*, and|strong=\"G2532\"* his|strong=\"G4012\"* tomb|strong=\"G3418\"* is|strong=\"G1510\"* with|strong=\"G3326\"* us|strong=\"G3004\"* to|strong=\"G4314\"* this|strong=\"G3778\"* day|strong=\"G2250\"*." + }, + { + "verseNum": 30, + "text": "Therefore|strong=\"G3767\"*, being|strong=\"G5225\"* a|strong=\"G2532\"* prophet|strong=\"G4396\"*, and|strong=\"G2532\"* knowing|strong=\"G1492\"* that|strong=\"G3754\"* God|strong=\"G2316\"* had|strong=\"G2532\"* sworn|strong=\"G3660\"* with|strong=\"G1537\"* an|strong=\"G2532\"* oath|strong=\"G3727\"* to|strong=\"G2532\"* him|strong=\"G3588\"* that|strong=\"G3754\"* of|strong=\"G1537\"* the|strong=\"G2532\"* fruit|strong=\"G2590\"* of|strong=\"G1537\"* his|strong=\"G1909\"* body, according|strong=\"G2316\"* to|strong=\"G2532\"* the|strong=\"G2532\"* flesh, he|strong=\"G2532\"* would|strong=\"G2316\"* raise|strong=\"G2532\"* up|strong=\"G2532\"* the|strong=\"G2532\"* Christ+ 2:30 “Christ” means “Anointed One”.* to|strong=\"G2532\"* sit|strong=\"G2523\"* on|strong=\"G1909\"* his|strong=\"G1909\"* throne|strong=\"G2362\"*," + }, + { + "verseNum": 31, + "text": "he|strong=\"G3754\"* foreseeing this|strong=\"G3588\"*, spoke|strong=\"G2980\"* about|strong=\"G4012\"* the|strong=\"G1519\"* resurrection of|strong=\"G4012\"* the|strong=\"G1519\"* Christ|strong=\"G5547\"*, that|strong=\"G3754\"* his|strong=\"G1519\"* soul wasn’t|strong=\"G3588\"* left|strong=\"G1459\"* in|strong=\"G1519\"* Hades,+ 2:31 or, Hell* and|strong=\"G4561\"* his|strong=\"G1519\"* flesh|strong=\"G4561\"* didn’t|strong=\"G3588\"* see|strong=\"G3708\"* decay|strong=\"G1312\"*." + }, + { + "verseNum": 32, + "text": "This|strong=\"G3778\"* Jesus|strong=\"G2424\"* God|strong=\"G2316\"* raised|strong=\"G2316\"* up, to|strong=\"G2316\"* which|strong=\"G3739\"* we|strong=\"G2249\"* all|strong=\"G3956\"* are|strong=\"G1510\"* witnesses|strong=\"G3144\"*." + }, + { + "verseNum": 33, + "text": "Being|strong=\"G2532\"* therefore|strong=\"G3767\"* exalted|strong=\"G5312\"* by|strong=\"G3844\"* the|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G4151\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* having|strong=\"G2532\"* received|strong=\"G2983\"* from|strong=\"G3844\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, he|strong=\"G2532\"* has|strong=\"G2316\"* poured|strong=\"G1632\"* out|strong=\"G1632\"* this|strong=\"G3778\"* which|strong=\"G3739\"* you|strong=\"G5210\"* now|strong=\"G2532\"* see and|strong=\"G2532\"* hear." + }, + { + "verseNum": 34, + "text": "For|strong=\"G1063\"* David|strong=\"G1138\"* didn’t|strong=\"G3588\"* ascend|strong=\"G1537\"* into|strong=\"G1519\"* the|strong=\"G1519\"* heavens|strong=\"G3772\"*, but|strong=\"G1161\"* he|strong=\"G1161\"* says|strong=\"G3004\"* himself|strong=\"G1519\"*," + }, + { + "verseNum": 35, + "text": "until|strong=\"G2193\"* I|strong=\"G2193\"* make|strong=\"G5087\"* your|strong=\"G5087\"* enemies|strong=\"G2190\"* a|strong=\"G5087\"* footstool|strong=\"G5286\"* for|strong=\"G4228\"* your|strong=\"G5087\"* feet|strong=\"G4228\"*.”’+ 2:35 Psalms 110:1 *" + }, + { + "verseNum": 36, + "text": "“Let|strong=\"G1097\"* all|strong=\"G3956\"* the|strong=\"G2532\"* house|strong=\"G3624\"* of|strong=\"G2316\"* Israel|strong=\"G2474\"* therefore|strong=\"G3767\"* know|strong=\"G1097\"* certainly|strong=\"G2532\"* that|strong=\"G3754\"* God|strong=\"G2316\"* has|strong=\"G2316\"* made|strong=\"G4160\"* him|strong=\"G3588\"* both|strong=\"G2532\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* Christ|strong=\"G5547\"*, this|strong=\"G3778\"* Jesus|strong=\"G2424\"* whom|strong=\"G3739\"* you|strong=\"G5210\"* crucified|strong=\"G4717\"*.”" + }, + { + "verseNum": 37, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G2532\"* heard this|strong=\"G3588\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* cut|strong=\"G2532\"* to|strong=\"G4314\"* the|strong=\"G2532\"* heart|strong=\"G2588\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* the|strong=\"G2532\"* rest|strong=\"G3062\"* of|strong=\"G2532\"* the|strong=\"G2532\"* apostles, “Brothers, what|strong=\"G5101\"* shall|strong=\"G2532\"* we|strong=\"G2532\"* do|strong=\"G4160\"*?”" + }, + { + "verseNum": 38, + "text": "Peter|strong=\"G4074\"* said|strong=\"G5346\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “Repent|strong=\"G3340\"* and|strong=\"G2532\"* be|strong=\"G2532\"* baptized, every|strong=\"G1538\"* one|strong=\"G1538\"* of|strong=\"G4151\"* you|strong=\"G5210\"*, in|strong=\"G1519\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G4151\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* for|strong=\"G1519\"* the|strong=\"G2532\"* forgiveness of|strong=\"G4151\"* sins, and|strong=\"G2532\"* you|strong=\"G5210\"* will|strong=\"G2532\"* receive|strong=\"G2983\"* the|strong=\"G2532\"* gift|strong=\"G1431\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 39, + "text": "For|strong=\"G1063\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* is|strong=\"G1510\"* to|strong=\"G1519\"* you|strong=\"G5210\"* and|strong=\"G2532\"* to|strong=\"G1519\"* your|strong=\"G2962\"* children|strong=\"G5043\"*, and|strong=\"G2532\"* to|strong=\"G1519\"* all|strong=\"G3956\"* who|strong=\"G3588\"* are|strong=\"G1510\"* far|strong=\"G3588\"* off, even|strong=\"G2532\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* our|strong=\"G2316\"* God|strong=\"G2316\"* will|strong=\"G2316\"* call|strong=\"G4341\"* to|strong=\"G1519\"* himself|strong=\"G1519\"*.”" + }, + { + "verseNum": 40, + "text": "With|strong=\"G2532\"* many|strong=\"G4183\"* other|strong=\"G2087\"* words|strong=\"G3056\"* he|strong=\"G2532\"* testified|strong=\"G1263\"* and|strong=\"G2532\"* exhorted|strong=\"G3870\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Save|strong=\"G4982\"* yourselves|strong=\"G1438\"* from|strong=\"G2532\"* this|strong=\"G3778\"* crooked|strong=\"G4646\"* generation|strong=\"G1074\"*!”" + }, + { + "verseNum": 41, + "text": "Then|strong=\"G3767\"* those|strong=\"G3588\"* who|strong=\"G3588\"* gladly received his|strong=\"G1722\"* word|strong=\"G3056\"* were|strong=\"G3588\"* baptized. There|strong=\"G2532\"* were|strong=\"G3588\"* added|strong=\"G4369\"* that|strong=\"G3588\"* day|strong=\"G2250\"* about|strong=\"G5616\"* three|strong=\"G5153\"* thousand|strong=\"G5153\"* souls|strong=\"G5590\"*." + }, + { + "verseNum": 42, + "text": "They|strong=\"G2532\"* continued|strong=\"G4342\"* steadfastly in|strong=\"G2532\"* the|strong=\"G2532\"* apostles’ teaching|strong=\"G1322\"* and|strong=\"G2532\"* fellowship|strong=\"G2842\"*, in|strong=\"G2532\"* the|strong=\"G2532\"* breaking|strong=\"G2800\"* of|strong=\"G2532\"* bread, and|strong=\"G2532\"* prayer|strong=\"G4335\"*." + }, + { + "verseNum": 43, + "text": "Fear|strong=\"G5401\"* came|strong=\"G1096\"* on|strong=\"G1909\"* every|strong=\"G3956\"* soul|strong=\"G5590\"*, and|strong=\"G2532\"* many|strong=\"G4183\"* wonders|strong=\"G5059\"* and|strong=\"G2532\"* signs|strong=\"G4592\"* were|strong=\"G1510\"* done|strong=\"G1096\"* through|strong=\"G1223\"* the|strong=\"G1722\"* apostles." + }, + { + "verseNum": 44, + "text": "All|strong=\"G3956\"* who|strong=\"G3588\"* believed|strong=\"G4100\"* were|strong=\"G1510\"* together|strong=\"G1909\"*, and|strong=\"G2532\"* had|strong=\"G2192\"* all|strong=\"G3956\"* things|strong=\"G3956\"* in|strong=\"G1909\"* common|strong=\"G2839\"*." + }, + { + "verseNum": 45, + "text": "They|strong=\"G2532\"* sold|strong=\"G4097\"* their|strong=\"G2532\"* possessions|strong=\"G2933\"* and|strong=\"G2532\"* goods|strong=\"G5223\"*, and|strong=\"G2532\"* distributed them|strong=\"G3588\"* to|strong=\"G2532\"* all|strong=\"G3956\"*, according|strong=\"G5100\"* as|strong=\"G2532\"* anyone|strong=\"G5100\"* had|strong=\"G2192\"* need|strong=\"G5532\"*." + }, + { + "verseNum": 46, + "text": "Day|strong=\"G2250\"* by|strong=\"G1722\"* day|strong=\"G2250\"*, continuing|strong=\"G4342\"* steadfastly with|strong=\"G1722\"* one|strong=\"G3588\"* accord|strong=\"G3661\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, and|strong=\"G2532\"* breaking|strong=\"G2806\"* bread at|strong=\"G1722\"* home|strong=\"G3624\"*, they|strong=\"G2532\"* took|strong=\"G2532\"* their|strong=\"G2532\"* food|strong=\"G5160\"* with|strong=\"G1722\"* gladness and|strong=\"G2532\"* singleness of|strong=\"G2250\"* heart|strong=\"G2588\"*," + }, + { + "verseNum": 47, + "text": "praising God|strong=\"G2316\"* and|strong=\"G2532\"* having|strong=\"G2192\"* favor|strong=\"G5485\"* with|strong=\"G4314\"* all|strong=\"G3650\"* the|strong=\"G2532\"* people|strong=\"G2992\"*. The|strong=\"G2532\"* Lord|strong=\"G2962\"* added|strong=\"G4369\"* to|strong=\"G4314\"* the|strong=\"G2532\"* assembly day|strong=\"G2250\"* by|strong=\"G2596\"* day|strong=\"G2250\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* being|strong=\"G2532\"* saved|strong=\"G4982\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Peter|strong=\"G4074\"* and|strong=\"G2532\"* John|strong=\"G2491\"* were|strong=\"G3588\"* going|strong=\"G2532\"* up|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G2411\"* at|strong=\"G1909\"* the|strong=\"G2532\"* hour|strong=\"G5610\"* of|strong=\"G2532\"* prayer|strong=\"G4335\"*, the|strong=\"G2532\"* ninth|strong=\"G1766\"* hour|strong=\"G5610\"*.+ 3:1 3:00 p.m.*" + }, + { + "verseNum": 2, + "text": "A|strong=\"G2532\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* who|strong=\"G3739\"* was|strong=\"G3588\"* lame|strong=\"G5560\"* from|strong=\"G1537\"* his|strong=\"G1519\"* mother|strong=\"G3384\"*’s womb|strong=\"G2836\"* was|strong=\"G3588\"* being|strong=\"G5225\"* carried|strong=\"G2532\"*, whom|strong=\"G3739\"* they|strong=\"G2532\"* laid|strong=\"G5087\"* daily|strong=\"G2250\"* at|strong=\"G1519\"* the|strong=\"G2532\"* door|strong=\"G2374\"* of|strong=\"G1537\"* the|strong=\"G2532\"* temple|strong=\"G2413\"* which|strong=\"G3739\"* is|strong=\"G3588\"* called|strong=\"G3004\"* Beautiful|strong=\"G5611\"*, to|strong=\"G1519\"* ask|strong=\"G3004\"* gifts|strong=\"G1654\"* for|strong=\"G1519\"* the|strong=\"G2532\"* needy of|strong=\"G1537\"* those|strong=\"G3588\"* who|strong=\"G3739\"* entered|strong=\"G1531\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G2413\"*." + }, + { + "verseNum": 3, + "text": "Seeing|strong=\"G3708\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* John|strong=\"G2491\"* about|strong=\"G3195\"* to|strong=\"G1519\"* go|strong=\"G1524\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G2411\"*, he|strong=\"G2532\"* asked|strong=\"G2065\"* to|strong=\"G1519\"* receive|strong=\"G2983\"* gifts|strong=\"G1654\"* for|strong=\"G1519\"* the|strong=\"G2532\"* needy." + }, + { + "verseNum": 4, + "text": "Peter|strong=\"G4074\"*, fastening his|strong=\"G1519\"* eyes on|strong=\"G1519\"* him|strong=\"G3588\"*, with|strong=\"G4862\"* John|strong=\"G2491\"*, said|strong=\"G3004\"*, “Look at|strong=\"G1519\"* us|strong=\"G3004\"*.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"G1161\"* listened to|strong=\"G5100\"* them|strong=\"G3588\"*, expecting|strong=\"G4328\"* to|strong=\"G5100\"* receive|strong=\"G2983\"* something|strong=\"G5100\"* from|strong=\"G3844\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* said|strong=\"G3004\"*, “I|strong=\"G1473\"* have|strong=\"G2192\"* no|strong=\"G3756\"* silver or|strong=\"G2532\"* gold|strong=\"G5553\"*, but|strong=\"G1161\"* what|strong=\"G3739\"* I|strong=\"G1473\"* have|strong=\"G2192\"*, that|strong=\"G3739\"* I|strong=\"G1473\"* give|strong=\"G1325\"* you|strong=\"G4771\"*. In|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2532\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* of|strong=\"G2532\"* Nazareth|strong=\"G3480\"*, get|strong=\"G2192\"* up|strong=\"G1325\"* and|strong=\"G2532\"* walk|strong=\"G4043\"*!”" + }, + { + "verseNum": 7, + "text": "He|strong=\"G2532\"* took|strong=\"G2532\"* him|strong=\"G3588\"* by|strong=\"G2532\"* the|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G5495\"* and|strong=\"G2532\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* up|strong=\"G1453\"*. Immediately|strong=\"G3916\"* his|strong=\"G2532\"* feet and|strong=\"G2532\"* his|strong=\"G2532\"* ankle|strong=\"G2532\"* bones|strong=\"G4974\"* received|strong=\"G4974\"* strength|strong=\"G4732\"*." + }, + { + "verseNum": 8, + "text": "Leaping|strong=\"G2476\"* up|strong=\"G1519\"*, he|strong=\"G2532\"* stood|strong=\"G2476\"* and|strong=\"G2532\"* began to|strong=\"G1519\"* walk|strong=\"G4043\"*. He|strong=\"G2532\"* entered|strong=\"G1525\"* with|strong=\"G4862\"* them|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G2411\"*, walking|strong=\"G4043\"*, leaping|strong=\"G2476\"*, and|strong=\"G2532\"* praising God|strong=\"G2316\"*." + }, + { + "verseNum": 9, + "text": "All|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"* saw|strong=\"G3708\"* him|strong=\"G3588\"* walking|strong=\"G4043\"* and|strong=\"G2532\"* praising God|strong=\"G2316\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"G2532\"* recognized|strong=\"G1921\"* him|strong=\"G3588\"*, that|strong=\"G3754\"* it|strong=\"G2532\"* was|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3588\"* used to|strong=\"G4314\"* sit|strong=\"G2521\"* begging for|strong=\"G3754\"* gifts|strong=\"G1654\"* for|strong=\"G3754\"* the|strong=\"G2532\"* needy at|strong=\"G1909\"* the|strong=\"G2532\"* Beautiful|strong=\"G5611\"* Gate|strong=\"G4439\"* of|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G2413\"*. They|strong=\"G2532\"* were|strong=\"G1510\"* filled|strong=\"G4130\"* with|strong=\"G4314\"* wonder|strong=\"G2285\"* and|strong=\"G2532\"* amazement|strong=\"G1611\"* at|strong=\"G1909\"* what|strong=\"G3588\"* had|strong=\"G2532\"* happened|strong=\"G4819\"* to|strong=\"G4314\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "As|strong=\"G1161\"* the|strong=\"G2532\"* lame man|strong=\"G3956\"* who|strong=\"G3588\"* was|strong=\"G3588\"* healed held|strong=\"G2902\"* on|strong=\"G1909\"* to|strong=\"G4314\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* John|strong=\"G2491\"*, all|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"* ran|strong=\"G4936\"* together|strong=\"G1909\"* to|strong=\"G4314\"* them|strong=\"G3588\"* in|strong=\"G1909\"* the|strong=\"G2532\"* porch|strong=\"G4745\"* that|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G2564\"* Solomon|strong=\"G4672\"*’s, greatly wondering|strong=\"G1569\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"G1161\"* Peter|strong=\"G4074\"* saw|strong=\"G3708\"* it|strong=\"G1161\"*, he|strong=\"G1161\"* responded to|strong=\"G4314\"* the|strong=\"G1161\"* people|strong=\"G2992\"*, “You|strong=\"G3708\"* men|strong=\"G3778\"* of|strong=\"G1411\"* Israel|strong=\"G2475\"*, why|strong=\"G5101\"* do|strong=\"G4160\"* you|strong=\"G3708\"* marvel|strong=\"G2296\"* at|strong=\"G1909\"* this|strong=\"G3778\"* man|strong=\"G3778\"*? Why|strong=\"G5101\"* do|strong=\"G4160\"* you|strong=\"G3708\"* fasten your|strong=\"G3708\"* eyes on|strong=\"G1909\"* us|strong=\"G4160\"*, as|strong=\"G5613\"* though|strong=\"G5613\"* by|strong=\"G1909\"* our|strong=\"G4314\"* own|strong=\"G2398\"* power|strong=\"G1411\"* or|strong=\"G2228\"* godliness|strong=\"G2150\"* we|strong=\"G2249\"* had|strong=\"G3588\"* made|strong=\"G4160\"* him|strong=\"G3588\"* walk|strong=\"G4043\"*?" + }, + { + "verseNum": 13, + "text": "The|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* Abraham, Isaac|strong=\"G2464\"*, and|strong=\"G2532\"* Jacob|strong=\"G2384\"*, the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* our|strong=\"G2316\"* fathers|strong=\"G3962\"*, has|strong=\"G2316\"* glorified|strong=\"G1392\"* his|strong=\"G2532\"* Servant|strong=\"G3816\"* Jesus|strong=\"G2424\"*, whom|strong=\"G3739\"* you|strong=\"G5210\"* delivered|strong=\"G3860\"* up|strong=\"G3860\"* and|strong=\"G2532\"* denied in|strong=\"G2596\"* the|strong=\"G2532\"* presence|strong=\"G4383\"* of|strong=\"G2316\"* Pilate|strong=\"G4091\"*, when|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2424\"* determined|strong=\"G2919\"* to|strong=\"G2532\"* release him|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* you|strong=\"G5210\"* denied the|strong=\"G2532\"* Holy and|strong=\"G2532\"* Righteous|strong=\"G1342\"* One|strong=\"G3588\"* and|strong=\"G2532\"* asked for|strong=\"G1161\"* a|strong=\"G2532\"* murderer|strong=\"G5406\"* to|strong=\"G2532\"* be|strong=\"G2532\"* granted|strong=\"G5483\"* to|strong=\"G2532\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 15, + "text": "and|strong=\"G1161\"* killed the|strong=\"G1537\"* Prince of|strong=\"G1537\"* life|strong=\"G2222\"*, whom|strong=\"G3739\"* God|strong=\"G2316\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G1537\"* dead|strong=\"G3498\"*, to|strong=\"G1161\"* which|strong=\"G3739\"* we|strong=\"G2249\"* are|strong=\"G1510\"* witnesses|strong=\"G3144\"*." + }, + { + "verseNum": 16, + "text": "By|strong=\"G1223\"* faith|strong=\"G4102\"* in|strong=\"G1909\"* his|strong=\"G3956\"* name|strong=\"G3686\"*, his|strong=\"G3956\"* name|strong=\"G3686\"* has|strong=\"G3739\"* made|strong=\"G3956\"* this|strong=\"G3778\"* man|strong=\"G3778\"* strong|strong=\"G2532\"*, whom|strong=\"G3739\"* you|strong=\"G5210\"* see|strong=\"G1492\"* and|strong=\"G2532\"* know|strong=\"G1492\"*. Yes, the|strong=\"G2532\"* faith|strong=\"G4102\"* which|strong=\"G3739\"* is|strong=\"G3588\"* through|strong=\"G1223\"* him|strong=\"G3588\"* has|strong=\"G3739\"* given|strong=\"G1325\"* him|strong=\"G3588\"* this|strong=\"G3778\"* perfect|strong=\"G3778\"* soundness|strong=\"G3647\"* in|strong=\"G1909\"* the|strong=\"G2532\"* presence|strong=\"G1223\"* of|strong=\"G1223\"* you|strong=\"G5210\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 17, + "text": "“Now|strong=\"G3568\"*, brothers,+ 3:17 The word for “brothers” here may be also correctly translated “brothers and sisters” or “siblings.”* I|strong=\"G2532\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G5210\"* did|strong=\"G2532\"* this|strong=\"G3588\"* in|strong=\"G2596\"* ignorance, as|strong=\"G5618\"* did|strong=\"G2532\"* also|strong=\"G2532\"* your|strong=\"G2532\"* rulers." + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* the|strong=\"G3956\"* things|strong=\"G3956\"* which|strong=\"G3739\"* God|strong=\"G2316\"* announced|strong=\"G4293\"* by|strong=\"G1223\"* the|strong=\"G3956\"* mouth|strong=\"G4750\"* of|strong=\"G1223\"* all|strong=\"G3956\"* his|strong=\"G3956\"* prophets|strong=\"G4396\"*, that|strong=\"G3739\"* Christ|strong=\"G5547\"* should|strong=\"G2316\"* suffer|strong=\"G3958\"*, he|strong=\"G1161\"* thus|strong=\"G3779\"* fulfilled|strong=\"G4137\"*." + }, + { + "verseNum": 19, + "text": "“Repent|strong=\"G3340\"* therefore|strong=\"G3767\"*, and|strong=\"G2532\"* turn|strong=\"G1994\"* again|strong=\"G1994\"*, that|strong=\"G3588\"* your|strong=\"G2962\"* sins may|strong=\"G2532\"* be|strong=\"G2532\"* blotted out|strong=\"G2532\"*, so|strong=\"G3767\"* that|strong=\"G3588\"* there|strong=\"G2532\"* may|strong=\"G2532\"* come|strong=\"G2064\"* times|strong=\"G2540\"* of|strong=\"G2532\"* refreshing from|strong=\"G2064\"* the|strong=\"G2532\"* presence|strong=\"G4383\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*," + }, + { + "verseNum": 20, + "text": "and|strong=\"G2532\"* that|strong=\"G3588\"* he|strong=\"G2532\"* may|strong=\"G2532\"* send Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, who|strong=\"G3588\"* was|strong=\"G3588\"* ordained|strong=\"G2962\"* for|strong=\"G2532\"* you|strong=\"G5210\"* before|strong=\"G3588\"*," + }, + { + "verseNum": 21, + "text": "whom|strong=\"G3739\"* heaven|strong=\"G3772\"* must|strong=\"G1163\"* receive|strong=\"G1209\"* until the|strong=\"G3956\"* times|strong=\"G5550\"* of|strong=\"G1223\"* restoration of|strong=\"G1223\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, which|strong=\"G3739\"* God|strong=\"G2316\"* spoke|strong=\"G2980\"* long|strong=\"G5550\"* ago|strong=\"G5550\"* by|strong=\"G1223\"* the|strong=\"G3956\"* mouth|strong=\"G4750\"* of|strong=\"G1223\"* his|strong=\"G3956\"* holy prophets|strong=\"G4396\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"G3754\"* Moses|strong=\"G3475\"* indeed|strong=\"G3303\"* said|strong=\"G3004\"* to|strong=\"G4314\"* the|strong=\"G3956\"* fathers, ‘The|strong=\"G3956\"* Lord|strong=\"G2962\"* God|strong=\"G2316\"* will|strong=\"G2316\"* raise|strong=\"G2316\"* up|strong=\"G1537\"* a|strong=\"G5613\"* prophet|strong=\"G4396\"* for|strong=\"G3754\"* you|strong=\"G5210\"* from|strong=\"G1537\"* among|strong=\"G1537\"* your|strong=\"G2962\"* brothers, like|strong=\"G5613\"* me|strong=\"G1473\"*. You|strong=\"G5210\"* shall|strong=\"G2316\"* listen to|strong=\"G4314\"* him|strong=\"G3588\"* in|strong=\"G2596\"* all|strong=\"G3956\"* things|strong=\"G3956\"* whatever|strong=\"G3745\"* he|strong=\"G3754\"* says|strong=\"G3004\"* to|strong=\"G4314\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 23, + "text": "It|strong=\"G1161\"* will|strong=\"G1510\"* be|strong=\"G1510\"* that|strong=\"G3588\"* every|strong=\"G3956\"* soul|strong=\"G5590\"* that|strong=\"G3588\"* will|strong=\"G1510\"* not|strong=\"G3361\"* listen to|strong=\"G1161\"* that|strong=\"G3588\"* prophet|strong=\"G4396\"* will|strong=\"G1510\"* be|strong=\"G1510\"* utterly|strong=\"G1842\"* destroyed|strong=\"G1842\"* from|strong=\"G1537\"* among|strong=\"G1537\"* the|strong=\"G3956\"* people|strong=\"G2992\"*.’+ 3:23 Deuteronomy 18:15,18-19 *" + }, + { + "verseNum": 24, + "text": "Yes|strong=\"G1161\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"* from|strong=\"G2532\"* Samuel|strong=\"G4545\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* followed after|strong=\"G1161\"*, as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* have|strong=\"G2532\"* spoken|strong=\"G2980\"*, also|strong=\"G2532\"* told|strong=\"G2980\"* of|strong=\"G2250\"* these|strong=\"G3778\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"G5210\"* are|strong=\"G1510\"* the|strong=\"G1722\"* children|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"*, and|strong=\"G2532\"* of|strong=\"G5207\"* the|strong=\"G1722\"* covenant|strong=\"G1242\"* which|strong=\"G3739\"* God|strong=\"G2316\"* made|strong=\"G1303\"* with|strong=\"G1722\"* our|strong=\"G2316\"* fathers|strong=\"G3962\"*, saying|strong=\"G3004\"* to|strong=\"G4314\"* Abraham, ‘All|strong=\"G3956\"* the|strong=\"G1722\"* families|strong=\"G3965\"* of|strong=\"G5207\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* will|strong=\"G2316\"* be|strong=\"G1510\"* blessed|strong=\"G1757\"* through|strong=\"G1722\"* your|strong=\"G2532\"* offspring.’+ 3:25 or, seed*+ 3:25 Genesis 22:18; 26:4*" + }, + { + "verseNum": 26, + "text": "God|strong=\"G2316\"*, having|strong=\"G2316\"* raised|strong=\"G2316\"* up|strong=\"G1722\"* his|strong=\"G1722\"* servant|strong=\"G3816\"* Jesus, sent|strong=\"G2316\"* him|strong=\"G3588\"* to|strong=\"G1722\"* you|strong=\"G5210\"* first|strong=\"G4413\"* to|strong=\"G1722\"* bless|strong=\"G2127\"* you|strong=\"G5210\"*, in|strong=\"G1722\"* turning|strong=\"G1722\"* away every|strong=\"G1538\"* one|strong=\"G1538\"* of|strong=\"G2316\"* you|strong=\"G5210\"* from|strong=\"G3588\"* your|strong=\"G1722\"* wickedness|strong=\"G4189\"*.”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "As|strong=\"G1161\"* they|strong=\"G2532\"* spoke|strong=\"G2980\"* to|strong=\"G4314\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, the|strong=\"G2532\"* priests|strong=\"G2409\"* and|strong=\"G2532\"* the|strong=\"G2532\"* captain|strong=\"G4755\"* of|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G2413\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Sadducees|strong=\"G4523\"* came|strong=\"G2532\"* to|strong=\"G4314\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 2, + "text": "being|strong=\"G2532\"* upset because|strong=\"G1223\"* they|strong=\"G2532\"* taught|strong=\"G1321\"* the|strong=\"G1722\"* people|strong=\"G2992\"* and|strong=\"G2532\"* proclaimed|strong=\"G2605\"* in|strong=\"G1722\"* Jesus|strong=\"G2424\"* the|strong=\"G1722\"* resurrection from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"G2532\"* laid|strong=\"G5087\"* hands|strong=\"G5495\"* on|strong=\"G1519\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* put|strong=\"G5087\"* them|strong=\"G3588\"* in|strong=\"G1519\"* custody until|strong=\"G1519\"* the|strong=\"G2532\"* next|strong=\"G1519\"* day|strong=\"G3588\"*, for|strong=\"G1063\"* it|strong=\"G2532\"* was|strong=\"G1510\"* now|strong=\"G2532\"* evening|strong=\"G2073\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* many|strong=\"G4183\"* of|strong=\"G3056\"* those|strong=\"G3588\"* who|strong=\"G3588\"* heard the|strong=\"G2532\"* word|strong=\"G3056\"* believed|strong=\"G4100\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* number of|strong=\"G3056\"* the|strong=\"G2532\"* men|strong=\"G3588\"* came|strong=\"G1096\"* to|strong=\"G2532\"* be|strong=\"G1096\"* about|strong=\"G5613\"* five|strong=\"G4002\"* thousand|strong=\"G5505\"*." + }, + { + "verseNum": 5, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* morning, their|strong=\"G2532\"* rulers, elders|strong=\"G4245\"*, and|strong=\"G2532\"* scribes|strong=\"G1122\"* were|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 6, + "text": "Annas the|strong=\"G2532\"* high|strong=\"G2532\"* priest was|strong=\"G1510\"* there|strong=\"G2532\"*, with|strong=\"G1537\"* Caiaphas|strong=\"G2533\"*, John|strong=\"G2491\"*, Alexander, and|strong=\"G2532\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* were|strong=\"G1510\"* relatives of|strong=\"G1537\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest." + }, + { + "verseNum": 7, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* stood|strong=\"G2476\"* Peter|strong=\"G4160\"* and|strong=\"G2532\"* John|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2532\"* them|strong=\"G3588\"*, they|strong=\"G2532\"* inquired|strong=\"G4441\"*, “By|strong=\"G1722\"* what|strong=\"G4169\"* power|strong=\"G1411\"*, or|strong=\"G2228\"* in|strong=\"G1722\"* what|strong=\"G4169\"* name|strong=\"G3686\"*, have|strong=\"G2532\"* you|strong=\"G5210\"* done|strong=\"G4160\"* this|strong=\"G3778\"*?”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"G2532\"* Peter|strong=\"G4074\"*, filled|strong=\"G4130\"* with|strong=\"G4314\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “You|strong=\"G3004\"* rulers of|strong=\"G4151\"* the|strong=\"G2532\"* people|strong=\"G2992\"* and|strong=\"G2532\"* elders|strong=\"G4245\"* of|strong=\"G4151\"* Israel," + }, + { + "verseNum": 9, + "text": "if|strong=\"G1487\"* we|strong=\"G2249\"* are|strong=\"G3778\"* examined today|strong=\"G4594\"* concerning|strong=\"G1909\"* a|strong=\"G1722\"* good|strong=\"G5101\"* deed done|strong=\"G2108\"* to|strong=\"G1909\"* a|strong=\"G1722\"* crippled man|strong=\"G3778\"*, by|strong=\"G1722\"* what|strong=\"G5101\"* means|strong=\"G5101\"* this|strong=\"G3778\"* man|strong=\"G3778\"* has|strong=\"G5101\"* been healed|strong=\"G4982\"*," + }, + { + "verseNum": 10, + "text": "may|strong=\"G2532\"* it|strong=\"G2532\"* be|strong=\"G1510\"* known|strong=\"G1110\"* to|strong=\"G2532\"* you|strong=\"G5210\"* all|strong=\"G3956\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G1722\"* people|strong=\"G2992\"* of|strong=\"G1537\"* Israel|strong=\"G2474\"*, that|strong=\"G3754\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G1537\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* of|strong=\"G1537\"* Nazareth|strong=\"G3480\"*, whom|strong=\"G3739\"* you|strong=\"G5210\"* crucified|strong=\"G4717\"*, whom|strong=\"G3739\"* God|strong=\"G2316\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*, this|strong=\"G3778\"* man|strong=\"G3778\"* stands|strong=\"G3936\"* here|strong=\"G3936\"* before|strong=\"G1799\"* you|strong=\"G5210\"* whole|strong=\"G3956\"* in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"G3778\"* is|strong=\"G1510\"* ‘the|strong=\"G1519\"* stone|strong=\"G3037\"* which|strong=\"G3588\"* was|strong=\"G1510\"* regarded as|strong=\"G1519\"* worthless by|strong=\"G5259\"* you|strong=\"G5210\"*, the|strong=\"G1519\"* builders|strong=\"G3618\"*, which|strong=\"G3588\"* has|strong=\"G1096\"* become|strong=\"G1096\"* the|strong=\"G1519\"* head|strong=\"G2776\"* of|strong=\"G5259\"* the|strong=\"G1519\"* corner|strong=\"G1137\"*.’+ 4:11 Psalms 118:22*" + }, + { + "verseNum": 12, + "text": "There|strong=\"G2532\"* is|strong=\"G1510\"* salvation|strong=\"G4991\"* in|strong=\"G1722\"* no|strong=\"G3756\"* one|strong=\"G3762\"* else|strong=\"G2087\"*, for|strong=\"G1063\"* there|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3756\"* other|strong=\"G2087\"* name|strong=\"G3686\"* under|strong=\"G5259\"* heaven|strong=\"G3772\"* that|strong=\"G3739\"* is|strong=\"G1510\"* given|strong=\"G1325\"* among|strong=\"G1722\"* men|strong=\"G3588\"*, by|strong=\"G1722\"* which|strong=\"G3739\"* we|strong=\"G2249\"* must|strong=\"G1163\"* be|strong=\"G1510\"* saved|strong=\"G4982\"*!”" + }, + { + "verseNum": 13, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G2532\"* saw|strong=\"G2334\"* the|strong=\"G2532\"* boldness|strong=\"G3954\"* of|strong=\"G2532\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* John|strong=\"G2491\"*, and|strong=\"G2532\"* had|strong=\"G2424\"* perceived|strong=\"G1921\"* that|strong=\"G3754\"* they|strong=\"G2532\"* were|strong=\"G1510\"* unlearned|strong=\"G2399\"* and|strong=\"G2532\"* ignorant|strong=\"G2399\"* men|strong=\"G3588\"*, they|strong=\"G2532\"* marveled|strong=\"G2296\"*. They|strong=\"G2532\"* recognized|strong=\"G1921\"* that|strong=\"G3754\"* they|strong=\"G2532\"* had|strong=\"G2424\"* been|strong=\"G1510\"* with|strong=\"G4862\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 14, + "text": "Seeing|strong=\"G2192\"* the|strong=\"G3588\"* man|strong=\"G3762\"* who|strong=\"G3588\"* was|strong=\"G3588\"* healed|strong=\"G2323\"* standing|strong=\"G2476\"* with|strong=\"G4862\"* them|strong=\"G3588\"*, they|strong=\"G3588\"* could|strong=\"G2192\"* say nothing|strong=\"G3762\"* against|strong=\"G3762\"* it|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G3588\"* commanded|strong=\"G2753\"* them|strong=\"G3588\"* to|strong=\"G4314\"* go aside out|strong=\"G1854\"* of|strong=\"G3588\"* the|strong=\"G1161\"* council|strong=\"G4892\"*, they|strong=\"G1161\"* conferred|strong=\"G4820\"* among|strong=\"G4314\"* themselves|strong=\"G1438\"*," + }, + { + "verseNum": 16, + "text": "saying|strong=\"G3004\"*, “What|strong=\"G5101\"* shall|strong=\"G2532\"* we|strong=\"G3754\"* do|strong=\"G4160\"* to|strong=\"G2532\"* these|strong=\"G3778\"* men|strong=\"G3956\"*? Because|strong=\"G3754\"* indeed|strong=\"G2532\"* a|strong=\"G1096\"* notable|strong=\"G1110\"* miracle|strong=\"G4592\"* has|strong=\"G5101\"* been|strong=\"G1096\"* done|strong=\"G4160\"* through|strong=\"G1223\"* them|strong=\"G3588\"*, as|strong=\"G2532\"* can|strong=\"G1410\"* be|strong=\"G1096\"* plainly seen by|strong=\"G1223\"* all|strong=\"G3956\"* who|strong=\"G5101\"* dwell|strong=\"G2730\"* in|strong=\"G2532\"* Jerusalem|strong=\"G2419\"*, and|strong=\"G2532\"* we|strong=\"G3754\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* deny|strong=\"G3588\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G3361\"* so|strong=\"G2443\"* that|strong=\"G2443\"* this|strong=\"G3778\"* spreads no|strong=\"G3361\"* further|strong=\"G4119\"* among|strong=\"G1519\"* the|strong=\"G1519\"* people|strong=\"G2992\"*, let|strong=\"G2443\"*’s threaten them|strong=\"G3588\"*, that|strong=\"G2443\"* from|strong=\"G3588\"* now on|strong=\"G1909\"* they|strong=\"G3588\"* don’t|strong=\"G3588\"* speak|strong=\"G2980\"* to|strong=\"G1519\"* anyone|strong=\"G3367\"* in|strong=\"G1519\"* this|strong=\"G3778\"* name|strong=\"G3686\"*.”" + }, + { + "verseNum": 18, + "text": "They|strong=\"G2532\"* called|strong=\"G2564\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* commanded|strong=\"G3853\"* them|strong=\"G3588\"* not|strong=\"G3361\"* to|strong=\"G2532\"* speak|strong=\"G5350\"* at|strong=\"G1909\"* all|strong=\"G2532\"* nor|strong=\"G3366\"* teach|strong=\"G1321\"* in|strong=\"G1909\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G2532\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* John|strong=\"G2491\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “Whether|strong=\"G1487\"* it|strong=\"G2532\"* is|strong=\"G1510\"* right|strong=\"G1342\"* in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2316\"* God|strong=\"G2316\"* to|strong=\"G4314\"* listen to|strong=\"G4314\"* you|strong=\"G5210\"* rather|strong=\"G3123\"* than|strong=\"G2228\"* to|strong=\"G4314\"* God|strong=\"G2316\"*, judge|strong=\"G2919\"* for|strong=\"G4314\"* yourselves|strong=\"G1438\"*," + }, + { + "verseNum": 20, + "text": "for|strong=\"G1063\"* we|strong=\"G2249\"* can|strong=\"G1410\"*’t help telling|strong=\"G2980\"* the|strong=\"G2532\"* things|strong=\"G3739\"* which|strong=\"G3739\"* we|strong=\"G2249\"* saw|strong=\"G3708\"* and|strong=\"G2532\"* heard.”" + }, + { + "verseNum": 21, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G2316\"* further|strong=\"G1909\"* threatened|strong=\"G4324\"* them|strong=\"G3588\"*, they|strong=\"G1161\"* let|strong=\"G1096\"* them|strong=\"G3588\"* go, finding|strong=\"G2147\"* no|strong=\"G3367\"* way|strong=\"G1223\"* to|strong=\"G1909\"* punish|strong=\"G2849\"* them|strong=\"G3588\"*, because|strong=\"G3754\"* of|strong=\"G1223\"* the|strong=\"G3956\"* people|strong=\"G2992\"*; for|strong=\"G3754\"* everyone|strong=\"G3956\"* glorified|strong=\"G1392\"* God|strong=\"G2316\"* for|strong=\"G3754\"* that|strong=\"G3754\"* which|strong=\"G3588\"* was|strong=\"G1096\"* done|strong=\"G1096\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"G1063\"* the|strong=\"G1909\"* man|strong=\"G3778\"* on|strong=\"G1909\"* whom|strong=\"G3739\"* this|strong=\"G3778\"* miracle|strong=\"G4592\"* of|strong=\"G1909\"* healing|strong=\"G2392\"* was|strong=\"G1510\"* performed|strong=\"G1096\"* was|strong=\"G1510\"* more|strong=\"G4119\"* than|strong=\"G4183\"* forty|strong=\"G5062\"* years|strong=\"G2094\"* old|strong=\"G2094\"*." + }, + { + "verseNum": 23, + "text": "Being|strong=\"G2532\"* let|strong=\"G1161\"* go|strong=\"G2064\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* their|strong=\"G1438\"* own|strong=\"G2398\"* company|strong=\"G2398\"* and|strong=\"G2532\"* reported|strong=\"G3004\"* all|strong=\"G3745\"* that|strong=\"G3588\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* had|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 24, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* heard it|strong=\"G2532\"*, they|strong=\"G2532\"* lifted|strong=\"G2532\"* up|strong=\"G2532\"* their|strong=\"G2532\"* voice|strong=\"G5456\"* to|strong=\"G4314\"* God|strong=\"G2316\"* with|strong=\"G1722\"* one|strong=\"G3956\"* accord|strong=\"G3661\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “O Lord|strong=\"G1203\"*, you|strong=\"G4771\"* are|strong=\"G3588\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* made|strong=\"G4160\"* the|strong=\"G1722\"* heaven|strong=\"G3772\"*, the|strong=\"G1722\"* earth|strong=\"G1093\"*, the|strong=\"G1722\"* sea|strong=\"G2281\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* that|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* them|strong=\"G3588\"*;" + }, + { + "verseNum": 25, + "text": "who|strong=\"G3588\"* by|strong=\"G1223\"* the|strong=\"G2532\"* mouth|strong=\"G4750\"* of|strong=\"G4151\"* your|strong=\"G1223\"* servant|strong=\"G3816\"* David|strong=\"G1138\"*, said|strong=\"G3004\"*," + }, + { + "verseNum": 26, + "text": "The|strong=\"G2532\"* kings|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* take|strong=\"G2532\"* a|strong=\"G2532\"* stand|strong=\"G3936\"*," + }, + { + "verseNum": 27, + "text": "“For|strong=\"G1063\"* truly|strong=\"G1909\"*,+ 4:27 nu adds “in this city,”* both|strong=\"G2532\"* Herod|strong=\"G2264\"* and|strong=\"G2532\"* Pontius|strong=\"G4194\"* Pilate|strong=\"G4091\"*, with|strong=\"G1722\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* and|strong=\"G2532\"* the|strong=\"G1722\"* people|strong=\"G2992\"* of|strong=\"G2532\"* Israel|strong=\"G2474\"*, were|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* against|strong=\"G1909\"* your|strong=\"G2532\"* holy servant|strong=\"G3816\"* Jesus|strong=\"G2424\"*, whom|strong=\"G3739\"* you|strong=\"G4771\"* anointed|strong=\"G5548\"*," + }, + { + "verseNum": 28, + "text": "to|strong=\"G2532\"* do|strong=\"G4160\"* whatever|strong=\"G3745\"* your|strong=\"G2532\"* hand|strong=\"G5495\"* and|strong=\"G2532\"* your|strong=\"G2532\"* counsel|strong=\"G1012\"* foreordained to|strong=\"G2532\"* happen|strong=\"G1096\"*." + }, + { + "verseNum": 29, + "text": "Now|strong=\"G3568\"*, Lord|strong=\"G2962\"*, look at|strong=\"G1909\"* their|strong=\"G2532\"* threats, and|strong=\"G2532\"* grant|strong=\"G1325\"* to|strong=\"G2532\"* your|strong=\"G2962\"* servants|strong=\"G1401\"* to|strong=\"G2532\"* speak|strong=\"G2980\"* your|strong=\"G2962\"* word|strong=\"G3056\"* with|strong=\"G3326\"* all|strong=\"G3956\"* boldness|strong=\"G3954\"*," + }, + { + "verseNum": 30, + "text": "while|strong=\"G1722\"* you|strong=\"G4771\"* stretch|strong=\"G1614\"* out|strong=\"G2532\"* your|strong=\"G1223\"* hand|strong=\"G5495\"* to|strong=\"G1519\"* heal|strong=\"G2392\"*; and|strong=\"G2532\"* that|strong=\"G3588\"* signs|strong=\"G4592\"* and|strong=\"G2532\"* wonders|strong=\"G5059\"* may|strong=\"G2532\"* be|strong=\"G1096\"* done|strong=\"G1096\"* through|strong=\"G1223\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G1223\"* your|strong=\"G1223\"* holy Servant|strong=\"G3816\"* Jesus|strong=\"G2424\"*.”" + }, + { + "verseNum": 31, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* prayed|strong=\"G1189\"*, the|strong=\"G1722\"* place|strong=\"G5117\"* was|strong=\"G1510\"* shaken|strong=\"G4531\"* where|strong=\"G3739\"* they|strong=\"G2532\"* were|strong=\"G1510\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"*. They|strong=\"G2532\"* were|strong=\"G1510\"* all|strong=\"G2532\"* filled|strong=\"G4130\"* with|strong=\"G3326\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* spoke|strong=\"G2980\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* with|strong=\"G3326\"* boldness|strong=\"G3954\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"G2532\"* multitude|strong=\"G4128\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* believed|strong=\"G4100\"* were|strong=\"G1510\"* of|strong=\"G2532\"* one|strong=\"G1520\"* heart|strong=\"G2588\"* and|strong=\"G2532\"* soul|strong=\"G5590\"*. Not|strong=\"G3761\"* one|strong=\"G1520\"* of|strong=\"G2532\"* them|strong=\"G3588\"* claimed|strong=\"G3004\"* that|strong=\"G3588\"* anything|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G2532\"* things|strong=\"G3956\"* which|strong=\"G3588\"* he|strong=\"G2532\"* possessed was|strong=\"G1510\"* his|strong=\"G3956\"* own|strong=\"G2398\"*, but|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* all|strong=\"G3956\"* things|strong=\"G3956\"* in|strong=\"G2532\"* common|strong=\"G2839\"*." + }, + { + "verseNum": 33, + "text": "With|strong=\"G2532\"* great|strong=\"G3173\"* power|strong=\"G1411\"*, the|strong=\"G2532\"* apostles gave|strong=\"G2532\"* their|strong=\"G1438\"* testimony|strong=\"G3142\"* of|strong=\"G2532\"* the|strong=\"G2532\"* resurrection of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*. Great|strong=\"G3173\"* grace|strong=\"G5485\"* was|strong=\"G1510\"* on|strong=\"G1909\"* them|strong=\"G3588\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 34, + "text": "For|strong=\"G1063\"* neither|strong=\"G3761\"* was|strong=\"G1510\"* there|strong=\"G1063\"* among|strong=\"G1722\"* them|strong=\"G3588\"* any|strong=\"G5100\"* who|strong=\"G3588\"* lacked|strong=\"G1729\"*, for|strong=\"G1063\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* were|strong=\"G1510\"* owners|strong=\"G2935\"* of|strong=\"G5100\"* lands|strong=\"G5564\"* or|strong=\"G2228\"* houses|strong=\"G3614\"* sold|strong=\"G4453\"* them|strong=\"G3588\"*, and|strong=\"G5092\"* brought|strong=\"G5342\"* the|strong=\"G1722\"* proceeds|strong=\"G5092\"* of|strong=\"G5100\"* the|strong=\"G1722\"* things|strong=\"G3588\"* that|strong=\"G3588\"* were|strong=\"G1510\"* sold|strong=\"G4453\"*," + }, + { + "verseNum": 35, + "text": "and|strong=\"G2532\"* laid|strong=\"G5087\"* them|strong=\"G3588\"* at|strong=\"G3844\"* the|strong=\"G2532\"* apostles’ feet|strong=\"G4228\"*; and|strong=\"G2532\"* distribution was|strong=\"G3588\"* made|strong=\"G5087\"* to|strong=\"G2532\"* each|strong=\"G1538\"*, according|strong=\"G1538\"* as|strong=\"G1161\"* anyone|strong=\"G5100\"* had|strong=\"G2192\"* need|strong=\"G5532\"*." + }, + { + "verseNum": 36, + "text": "Joses, who|strong=\"G3739\"* by|strong=\"G3739\"* the|strong=\"G1161\"* apostles was|strong=\"G1510\"* also|strong=\"G1161\"* called|strong=\"G1941\"* Barnabas (which|strong=\"G3739\"* is|strong=\"G1510\"*, being|strong=\"G1510\"* interpreted|strong=\"G3177\"*, Son|strong=\"G5207\"* of|strong=\"G5207\"* Encouragement|strong=\"G3874\"*), a|strong=\"G1510\"* Levite|strong=\"G3019\"*, a|strong=\"G1510\"* man|strong=\"G3739\"* of|strong=\"G5207\"* Cyprus|strong=\"G2953\"* by|strong=\"G3739\"* race|strong=\"G1085\"*," + }, + { + "verseNum": 37, + "text": "having|strong=\"G2532\"* a|strong=\"G2532\"* field, sold|strong=\"G4453\"* it|strong=\"G2532\"* and|strong=\"G2532\"* brought|strong=\"G5342\"* the|strong=\"G2532\"* money|strong=\"G5536\"* and|strong=\"G2532\"* laid|strong=\"G5087\"* it|strong=\"G2532\"* at|strong=\"G4314\"* the|strong=\"G2532\"* apostles’ feet|strong=\"G4228\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"G1161\"* a|strong=\"G1161\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* named|strong=\"G3686\"* Ananias, with|strong=\"G4862\"* Sapphira|strong=\"G4551\"* his|strong=\"G3588\"* wife|strong=\"G1135\"*, sold|strong=\"G4453\"* a|strong=\"G1161\"* possession|strong=\"G2933\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"G2532\"* kept|strong=\"G5087\"* back|strong=\"G3557\"* part|strong=\"G3313\"* of|strong=\"G2532\"* the|strong=\"G2532\"* price|strong=\"G5092\"*, his|strong=\"G2532\"* wife|strong=\"G1135\"* also|strong=\"G2532\"* being|strong=\"G2532\"* aware|strong=\"G4894\"* of|strong=\"G2532\"* it|strong=\"G2532\"*, then|strong=\"G2532\"* brought|strong=\"G5342\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* part|strong=\"G3313\"* and|strong=\"G2532\"* laid|strong=\"G5087\"* it|strong=\"G2532\"* at|strong=\"G3844\"* the|strong=\"G2532\"* apostles’ feet|strong=\"G4228\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* said|strong=\"G3004\"*, “Ananias, why|strong=\"G5101\"* has|strong=\"G5101\"* Satan|strong=\"G4567\"* filled|strong=\"G4137\"* your|strong=\"G1223\"* heart|strong=\"G2588\"* to|strong=\"G2532\"* lie|strong=\"G5574\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* and|strong=\"G2532\"* to|strong=\"G2532\"* keep|strong=\"G3557\"* back|strong=\"G3557\"* part|strong=\"G1161\"* of|strong=\"G4151\"* the|strong=\"G2532\"* price|strong=\"G5092\"* of|strong=\"G4151\"* the|strong=\"G2532\"* land|strong=\"G5564\"*?" + }, + { + "verseNum": 4, + "text": "While|strong=\"G1722\"* you|strong=\"G4771\"* kept|strong=\"G5087\"* it|strong=\"G2532\"*, didn’t|strong=\"G3588\"* it|strong=\"G2532\"* remain|strong=\"G3306\"* your|strong=\"G4674\"* own|strong=\"G4674\"*? After|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G3588\"* sold|strong=\"G4097\"*, wasn’t|strong=\"G3588\"* it|strong=\"G2532\"* in|strong=\"G1722\"* your|strong=\"G4674\"* power|strong=\"G1849\"*? How|strong=\"G5101\"* is|strong=\"G3588\"* it|strong=\"G2532\"* that|strong=\"G3754\"* you|strong=\"G4771\"* have|strong=\"G2532\"* conceived|strong=\"G5087\"* this|strong=\"G3778\"* thing|strong=\"G3778\"* in|strong=\"G1722\"* your|strong=\"G4674\"* heart|strong=\"G2588\"*? You|strong=\"G4771\"* haven’t|strong=\"G3588\"* lied|strong=\"G5574\"* to|strong=\"G2532\"* men|strong=\"G3778\"*, but|strong=\"G2532\"* to|strong=\"G2532\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 5, + "text": "Ananias, hearing these|strong=\"G3778\"* words|strong=\"G3056\"*, fell|strong=\"G4098\"* down|strong=\"G4098\"* and|strong=\"G2532\"* died|strong=\"G1634\"*. Great|strong=\"G3173\"* fear|strong=\"G5401\"* came|strong=\"G1096\"* on|strong=\"G1909\"* all|strong=\"G3956\"* who|strong=\"G3588\"* heard these|strong=\"G3778\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"G2532\"* young|strong=\"G3501\"* men|strong=\"G3501\"* arose and|strong=\"G2532\"* wrapped|strong=\"G4958\"* him|strong=\"G3588\"* up|strong=\"G4958\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* carried|strong=\"G1627\"* him|strong=\"G3588\"* out|strong=\"G2532\"* and|strong=\"G2532\"* buried|strong=\"G2290\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 7, + "text": "About|strong=\"G5613\"* three|strong=\"G5140\"* hours|strong=\"G5610\"* later, his|strong=\"G2532\"* wife|strong=\"G1135\"*, not|strong=\"G3361\"* knowing|strong=\"G1492\"* what|strong=\"G3588\"* had|strong=\"G2532\"* happened|strong=\"G1096\"*, came|strong=\"G1096\"* in|strong=\"G1525\"*." + }, + { + "verseNum": 8, + "text": "Peter|strong=\"G4074\"* answered|strong=\"G3004\"* her|strong=\"G1438\"*, “Tell|strong=\"G3004\"* me|strong=\"G1473\"* whether|strong=\"G1487\"* you|strong=\"G1487\"* sold the|strong=\"G1161\"* land|strong=\"G5564\"* for|strong=\"G4314\"* so|strong=\"G1161\"* much|strong=\"G5118\"*.”" + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* asked|strong=\"G3985\"* her|strong=\"G1438\"*, “How|strong=\"G5101\"* is|strong=\"G3588\"* it|strong=\"G2532\"* that|strong=\"G3754\"* you|strong=\"G5210\"* have|strong=\"G2532\"* agreed|strong=\"G4856\"* together|strong=\"G1909\"* to|strong=\"G4314\"* tempt|strong=\"G3985\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*? Behold|strong=\"G2400\"*, the|strong=\"G2532\"* feet|strong=\"G4228\"* of|strong=\"G4151\"* those|strong=\"G3588\"* who|strong=\"G5101\"* have|strong=\"G2532\"* buried|strong=\"G2290\"* your|strong=\"G2962\"* husband are|strong=\"G3588\"* at|strong=\"G1909\"* the|strong=\"G2532\"* door|strong=\"G2374\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* will|strong=\"G5101\"* carry|strong=\"G1627\"* you|strong=\"G5210\"* out|strong=\"G2532\"*.”" + }, + { + "verseNum": 10, + "text": "She|strong=\"G2532\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* immediately|strong=\"G3916\"* at|strong=\"G4314\"* his|strong=\"G1438\"* feet|strong=\"G4228\"* and|strong=\"G2532\"* died|strong=\"G1634\"*. The|strong=\"G2532\"* young|strong=\"G3495\"* men|strong=\"G3495\"* came|strong=\"G1525\"* in|strong=\"G1525\"* and|strong=\"G2532\"* found|strong=\"G2147\"* her|strong=\"G1438\"* dead|strong=\"G3498\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* carried|strong=\"G1627\"* her|strong=\"G1438\"* out|strong=\"G2532\"* and|strong=\"G2532\"* buried|strong=\"G2290\"* her|strong=\"G1438\"* by|strong=\"G4314\"* her|strong=\"G1438\"* husband." + }, + { + "verseNum": 11, + "text": "Great|strong=\"G3173\"* fear|strong=\"G5401\"* came|strong=\"G1096\"* on|strong=\"G1909\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* assembly|strong=\"G1577\"*, and|strong=\"G2532\"* on|strong=\"G1909\"* all|strong=\"G3956\"* who|strong=\"G3588\"* heard these|strong=\"G3778\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 12, + "text": "By|strong=\"G1223\"* the|strong=\"G1722\"* hands|strong=\"G5495\"* of|strong=\"G1223\"* the|strong=\"G1722\"* apostles many|strong=\"G4183\"* signs|strong=\"G4592\"* and|strong=\"G2532\"* wonders|strong=\"G5059\"* were|strong=\"G1510\"* done|strong=\"G1096\"* among|strong=\"G1722\"* the|strong=\"G1722\"* people|strong=\"G2992\"*. They|strong=\"G2532\"* were|strong=\"G1510\"* all|strong=\"G2532\"* with|strong=\"G1722\"* one|strong=\"G3588\"* accord|strong=\"G3661\"* in|strong=\"G1722\"* Solomon|strong=\"G4672\"*’s porch|strong=\"G4745\"*." + }, + { + "verseNum": 13, + "text": "None|strong=\"G3762\"* of|strong=\"G2992\"* the|strong=\"G1161\"* rest|strong=\"G3062\"* dared|strong=\"G5111\"* to|strong=\"G1161\"* join|strong=\"G2853\"* them|strong=\"G3588\"*; however|strong=\"G1161\"*, the|strong=\"G1161\"* people|strong=\"G2992\"* honored them|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "More|strong=\"G3123\"* believers|strong=\"G4100\"* were|strong=\"G3588\"* added|strong=\"G4369\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, multitudes|strong=\"G4128\"* of|strong=\"G2532\"* both|strong=\"G2532\"* men|strong=\"G3588\"* and|strong=\"G2532\"* women|strong=\"G1135\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"G2532\"* even|strong=\"G2532\"* carried|strong=\"G1627\"* out|strong=\"G2532\"* the|strong=\"G2532\"* sick into|strong=\"G1519\"* the|strong=\"G2532\"* streets|strong=\"G4113\"* and|strong=\"G2532\"* laid|strong=\"G5087\"* them|strong=\"G3588\"* on|strong=\"G1909\"* cots and|strong=\"G2532\"* mattresses, so|strong=\"G2443\"* that|strong=\"G2443\"* as|strong=\"G1519\"* Peter|strong=\"G4074\"* came|strong=\"G2064\"* by|strong=\"G1909\"*, at|strong=\"G1909\"* least|strong=\"G2579\"* his|strong=\"G1519\"* shadow|strong=\"G4639\"* might|strong=\"G2532\"* overshadow|strong=\"G1982\"* some|strong=\"G5100\"* of|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"G2532\"* multitude|strong=\"G4128\"* also|strong=\"G2532\"* came|strong=\"G4905\"* together|strong=\"G4905\"* from|strong=\"G2532\"* the|strong=\"G2532\"* cities|strong=\"G4172\"* around|strong=\"G4038\"* Jerusalem|strong=\"G2419\"*, bringing|strong=\"G5342\"* sick|strong=\"G5342\"* people|strong=\"G4128\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* tormented by|strong=\"G5259\"* unclean spirits|strong=\"G4151\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* all|strong=\"G2532\"* healed|strong=\"G2323\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* high|strong=\"G3956\"* priest rose|strong=\"G2532\"* up|strong=\"G2532\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* with|strong=\"G4862\"* him|strong=\"G3588\"* (which|strong=\"G3588\"* is|strong=\"G1510\"* the|strong=\"G2532\"* sect of|strong=\"G2532\"* the|strong=\"G2532\"* Sadducees|strong=\"G4523\"*), and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G1510\"* filled|strong=\"G4130\"* with|strong=\"G4862\"* jealousy|strong=\"G2205\"*" + }, + { + "verseNum": 18, + "text": "and|strong=\"G2532\"* laid|strong=\"G5087\"* hands|strong=\"G5495\"* on|strong=\"G1909\"* the|strong=\"G1722\"* apostles, then|strong=\"G2532\"* put|strong=\"G5087\"* them|strong=\"G3588\"* in|strong=\"G1722\"* public|strong=\"G1219\"* custody." + }, + { + "verseNum": 19, + "text": "But|strong=\"G1161\"* an|strong=\"G1161\"* angel of|strong=\"G1223\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"* opened the|strong=\"G1161\"* prison|strong=\"G5438\"* doors|strong=\"G2374\"* by|strong=\"G1223\"* night|strong=\"G3571\"*, and|strong=\"G1161\"* brought|strong=\"G1806\"* them|strong=\"G3588\"* out|strong=\"G1806\"* and|strong=\"G1161\"* said|strong=\"G3004\"*," + }, + { + "verseNum": 20, + "text": "“Go|strong=\"G4198\"* stand|strong=\"G2476\"* and|strong=\"G2532\"* speak|strong=\"G2980\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* to|strong=\"G2532\"* the|strong=\"G1722\"* people|strong=\"G2992\"* all|strong=\"G3956\"* the|strong=\"G1722\"* words|strong=\"G4487\"* of|strong=\"G2532\"* this|strong=\"G3778\"* life|strong=\"G2222\"*.”" + }, + { + "verseNum": 21, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* heard this|strong=\"G3588\"*, they|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G2411\"* about|strong=\"G1519\"* daybreak|strong=\"G3722\"* and|strong=\"G2532\"* taught|strong=\"G1321\"*. But|strong=\"G1161\"* the|strong=\"G2532\"* high|strong=\"G3956\"* priest and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* with|strong=\"G4862\"* him|strong=\"G3588\"* came|strong=\"G3854\"* and|strong=\"G2532\"* called|strong=\"G4779\"* the|strong=\"G2532\"* council|strong=\"G4892\"* together|strong=\"G4779\"*, with|strong=\"G4862\"* all|strong=\"G3956\"* the|strong=\"G2532\"* senate|strong=\"G1087\"* of|strong=\"G5207\"* the|strong=\"G2532\"* children|strong=\"G5207\"* of|strong=\"G5207\"* Israel|strong=\"G2474\"*, and|strong=\"G2532\"* sent|strong=\"G2532\"* to|strong=\"G1519\"* the|strong=\"G2532\"* prison|strong=\"G1201\"* to|strong=\"G1519\"* have|strong=\"G2532\"* them|strong=\"G3588\"* brought|strong=\"G1161\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* the|strong=\"G1722\"* officers|strong=\"G5257\"* who|strong=\"G3588\"* came|strong=\"G3854\"* didn’t|strong=\"G3588\"* find|strong=\"G2147\"* them|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* prison|strong=\"G5438\"*. They|strong=\"G1161\"* returned and|strong=\"G1161\"* reported," + }, + { + "verseNum": 23, + "text": "“We|strong=\"G3754\"* found|strong=\"G2147\"* the|strong=\"G1722\"* prison|strong=\"G1201\"* shut|strong=\"G2808\"* and|strong=\"G2532\"* locked|strong=\"G2808\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* guards|strong=\"G5441\"* standing|strong=\"G2476\"* before|strong=\"G1909\"* the|strong=\"G1722\"* doors|strong=\"G2374\"*, but|strong=\"G1161\"* when|strong=\"G1161\"* we|strong=\"G3754\"* opened them|strong=\"G3588\"*, we|strong=\"G3754\"* found|strong=\"G2147\"* no|strong=\"G3762\"* one|strong=\"G3762\"* inside|strong=\"G2080\"*!”" + }, + { + "verseNum": 24, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest, the|strong=\"G2532\"* captain|strong=\"G4755\"* of|strong=\"G4012\"* the|strong=\"G2532\"* temple|strong=\"G2413\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G4755\"* priests heard these|strong=\"G3778\"* words|strong=\"G3056\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* very|strong=\"G2532\"* perplexed|strong=\"G1280\"* about|strong=\"G4012\"* them|strong=\"G3588\"* and|strong=\"G2532\"* what|strong=\"G5101\"* might|strong=\"G2532\"* become|strong=\"G1096\"* of|strong=\"G4012\"* this|strong=\"G3778\"*." + }, + { + "verseNum": 25, + "text": "One|strong=\"G5100\"* came|strong=\"G3854\"* and|strong=\"G2532\"* told them|strong=\"G3588\"*, “Behold|strong=\"G2400\"*, the|strong=\"G1722\"* men|strong=\"G5100\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* put|strong=\"G5087\"* in|strong=\"G1722\"* prison|strong=\"G5438\"* are|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, standing|strong=\"G2476\"* and|strong=\"G2532\"* teaching|strong=\"G1321\"* the|strong=\"G1722\"* people|strong=\"G2992\"*.”" + }, + { + "verseNum": 26, + "text": "Then|strong=\"G5119\"* the|strong=\"G3588\"* captain|strong=\"G4755\"* went|strong=\"G5119\"* with|strong=\"G3326\"* the|strong=\"G3588\"* officers|strong=\"G5257\"*, and|strong=\"G2992\"* brought them|strong=\"G3588\"* without|strong=\"G3361\"* violence, for|strong=\"G1063\"* they|strong=\"G3588\"* were|strong=\"G3588\"* afraid|strong=\"G5399\"* that|strong=\"G2443\"* the|strong=\"G3588\"* people|strong=\"G2992\"* might stone|strong=\"G3034\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* brought|strong=\"G1161\"* them|strong=\"G3588\"*, they|strong=\"G2532\"* set|strong=\"G2476\"* them|strong=\"G3588\"* before|strong=\"G1722\"* the|strong=\"G1722\"* council|strong=\"G4892\"*. The|strong=\"G1722\"* high|strong=\"G2532\"* priest questioned|strong=\"G1905\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 28, + "text": "saying|strong=\"G3004\"*, “Didn’t|strong=\"G3588\"* we|strong=\"G2249\"* strictly command|strong=\"G3853\"* you|strong=\"G5210\"* not|strong=\"G3361\"* to|strong=\"G2532\"* teach|strong=\"G1321\"* in|strong=\"G1909\"* this|strong=\"G3778\"* name|strong=\"G3686\"*? Behold|strong=\"G2400\"*, you|strong=\"G5210\"* have|strong=\"G2532\"* filled|strong=\"G4137\"* Jerusalem|strong=\"G2419\"* with|strong=\"G2532\"* your|strong=\"G2532\"* teaching|strong=\"G1321\"*, and|strong=\"G2532\"* intend|strong=\"G1014\"* to|strong=\"G2532\"* bring|strong=\"G1863\"* this|strong=\"G3778\"* man|strong=\"G3778\"*’s blood on|strong=\"G1909\"* us|strong=\"G3004\"*.”" + }, + { + "verseNum": 29, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* the|strong=\"G2532\"* apostles answered|strong=\"G3004\"*, “We|strong=\"G2532\"* must|strong=\"G1163\"* obey|strong=\"G3980\"* God|strong=\"G2316\"* rather|strong=\"G3123\"* than|strong=\"G2228\"* men|strong=\"G3588\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"G1909\"* God|strong=\"G2316\"* of|strong=\"G2316\"* our|strong=\"G2316\"* fathers|strong=\"G3962\"* raised|strong=\"G1453\"* up|strong=\"G1453\"* Jesus|strong=\"G2424\"*, whom|strong=\"G3739\"* you|strong=\"G5210\"* killed, hanging|strong=\"G2910\"* him|strong=\"G3588\"* on|strong=\"G1909\"* a|strong=\"G1909\"* tree|strong=\"G3586\"*." + }, + { + "verseNum": 31, + "text": "God|strong=\"G2316\"* exalted|strong=\"G5312\"* him|strong=\"G3588\"* with|strong=\"G2532\"* his|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* to|strong=\"G2532\"* be|strong=\"G2532\"* a|strong=\"G2532\"* Prince and|strong=\"G2532\"* a|strong=\"G2532\"* Savior|strong=\"G4990\"*, to|strong=\"G2532\"* give|strong=\"G1325\"* repentance|strong=\"G3341\"* to|strong=\"G2532\"* Israel|strong=\"G2474\"*, and|strong=\"G2532\"* remission of|strong=\"G2316\"* sins." + }, + { + "verseNum": 32, + "text": "We|strong=\"G2249\"* are|strong=\"G1510\"* his|strong=\"G2532\"* witnesses|strong=\"G3144\"* of|strong=\"G4151\"* these|strong=\"G3778\"* things|strong=\"G3778\"*; and|strong=\"G2532\"* so|strong=\"G2532\"* also|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, whom|strong=\"G3739\"* God|strong=\"G2316\"* has|strong=\"G2316\"* given|strong=\"G1325\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3739\"* obey|strong=\"G3980\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 33, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"*, when|strong=\"G1161\"* they|strong=\"G2532\"* heard this|strong=\"G3588\"*, were|strong=\"G3588\"* cut|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* heart, and|strong=\"G2532\"* were|strong=\"G3588\"* determined|strong=\"G1011\"* to|strong=\"G2532\"* kill them|strong=\"G3588\"*." + }, + { + "verseNum": 34, + "text": "But|strong=\"G1161\"* one|strong=\"G5100\"* stood|strong=\"G3588\"* up|strong=\"G1722\"* in|strong=\"G1722\"* the|strong=\"G1722\"* council|strong=\"G4892\"*, a|strong=\"G1722\"* Pharisee|strong=\"G5330\"* named|strong=\"G3686\"* Gamaliel|strong=\"G1059\"*, a|strong=\"G1722\"* teacher|strong=\"G3547\"* of|strong=\"G3686\"* the|strong=\"G1722\"* law|strong=\"G3547\"*, honored by|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* people|strong=\"G2992\"*, and|strong=\"G1161\"* commanded|strong=\"G2753\"* to|strong=\"G1722\"* put|strong=\"G4160\"* the|strong=\"G1722\"* apostles out|strong=\"G1854\"* for|strong=\"G1161\"* a|strong=\"G1722\"* little|strong=\"G1024\"* while|strong=\"G1722\"*." + }, + { + "verseNum": 35, + "text": "He|strong=\"G3778\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “You|strong=\"G3004\"* men|strong=\"G3778\"* of|strong=\"G1909\"* Israel|strong=\"G2475\"*, be|strong=\"G3195\"* careful|strong=\"G4337\"* concerning|strong=\"G1909\"* these|strong=\"G3778\"* men|strong=\"G3778\"*, what|strong=\"G5101\"* you|strong=\"G3004\"* are|strong=\"G3588\"* about|strong=\"G3195\"* to|strong=\"G4314\"* do|strong=\"G4238\"*." + }, + { + "verseNum": 36, + "text": "For|strong=\"G1063\"* before|strong=\"G4253\"* these|strong=\"G3778\"* days|strong=\"G2250\"* Theudas|strong=\"G2333\"* rose|strong=\"G2532\"* up|strong=\"G1519\"*, making|strong=\"G2532\"* himself|strong=\"G1438\"* out|strong=\"G2532\"* to|strong=\"G1519\"* be|strong=\"G1096\"* somebody|strong=\"G5100\"*; to|strong=\"G1519\"* whom|strong=\"G3739\"* a|strong=\"G1096\"* number of|strong=\"G2250\"* men|strong=\"G3956\"*, about|strong=\"G5613\"* four|strong=\"G5071\"* hundred|strong=\"G5071\"*, joined|strong=\"G1096\"* themselves|strong=\"G1438\"*. He|strong=\"G2532\"* was|strong=\"G1510\"* slain; and|strong=\"G2532\"* all|strong=\"G3956\"*, as|strong=\"G5613\"* many|strong=\"G3745\"* as|strong=\"G5613\"* obeyed|strong=\"G3982\"* him|strong=\"G3588\"*, were|strong=\"G1510\"* dispersed|strong=\"G1262\"* and|strong=\"G2532\"* came|strong=\"G1096\"* to|strong=\"G1519\"* nothing|strong=\"G3762\"*." + }, + { + "verseNum": 37, + "text": "After|strong=\"G3326\"* this|strong=\"G3778\"* man|strong=\"G3778\"*, Judas|strong=\"G2455\"* of|strong=\"G2250\"* Galilee|strong=\"G1057\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* days|strong=\"G2250\"* of|strong=\"G2250\"* the|strong=\"G1722\"* enrollment, and|strong=\"G2532\"* drew|strong=\"G2532\"* away|strong=\"G3326\"* some|strong=\"G3588\"* people|strong=\"G2992\"* after|strong=\"G3326\"* him|strong=\"G3588\"*. He|strong=\"G2532\"* also|strong=\"G2532\"* perished, and|strong=\"G2532\"* all|strong=\"G3956\"*, as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* obeyed|strong=\"G3982\"* him|strong=\"G3588\"*, were|strong=\"G3588\"* scattered|strong=\"G1287\"* abroad|strong=\"G1287\"*." + }, + { + "verseNum": 38, + "text": "Now|strong=\"G3568\"* I|strong=\"G2532\"* tell|strong=\"G3004\"* you|strong=\"G5210\"*, withdraw from|strong=\"G1537\"* these|strong=\"G3778\"* men|strong=\"G3778\"* and|strong=\"G2532\"* leave them|strong=\"G3588\"* alone|strong=\"G1438\"*. For|strong=\"G3754\"* if|strong=\"G1437\"* this|strong=\"G3778\"* counsel|strong=\"G1012\"* or|strong=\"G2228\"* this|strong=\"G3778\"* work|strong=\"G2041\"* is|strong=\"G1510\"* of|strong=\"G1537\"* men|strong=\"G3778\"*, it|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* overthrown|strong=\"G2647\"*." + }, + { + "verseNum": 39, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* it|strong=\"G2532\"* is|strong=\"G1510\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, you|strong=\"G1487\"* will|strong=\"G2316\"* not|strong=\"G3756\"* be|strong=\"G1510\"* able|strong=\"G1410\"* to|strong=\"G2532\"* overthrow|strong=\"G2647\"* it|strong=\"G2532\"*, and|strong=\"G2532\"* you|strong=\"G1487\"* would|strong=\"G2316\"* be|strong=\"G1510\"* found|strong=\"G2147\"* even|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G1510\"* fighting|strong=\"G2314\"* against|strong=\"G1537\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 40, + "text": "They|strong=\"G2532\"* agreed|strong=\"G3982\"* with|strong=\"G2532\"* him|strong=\"G3588\"*. Summoning|strong=\"G4341\"* the|strong=\"G2532\"* apostles, they|strong=\"G2532\"* beat|strong=\"G1194\"* them|strong=\"G3588\"* and|strong=\"G2532\"* commanded|strong=\"G3853\"* them|strong=\"G3588\"* not|strong=\"G3361\"* to|strong=\"G2532\"* speak|strong=\"G2980\"* in|strong=\"G1909\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G2532\"* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* let|strong=\"G1161\"* them|strong=\"G3588\"* go|strong=\"G2532\"*." + }, + { + "verseNum": 41, + "text": "They|strong=\"G3588\"* therefore|strong=\"G3767\"* departed|strong=\"G4198\"* from|strong=\"G3588\"* the|strong=\"G3588\"* presence|strong=\"G4383\"* of|strong=\"G3686\"* the|strong=\"G3588\"* council|strong=\"G4892\"*, rejoicing|strong=\"G5463\"* that|strong=\"G3754\"* they|strong=\"G3588\"* were|strong=\"G3588\"* counted worthy|strong=\"G2661\"* to|strong=\"G4198\"* suffer dishonor for|strong=\"G3754\"* Jesus|strong=\"G4198\"*’ name|strong=\"G3686\"*." + }, + { + "verseNum": 42, + "text": "Every|strong=\"G3956\"* day|strong=\"G2250\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* and|strong=\"G2532\"* at|strong=\"G1722\"* home|strong=\"G3624\"*, they|strong=\"G2532\"* never|strong=\"G3756\"* stopped|strong=\"G3973\"* teaching|strong=\"G1321\"* and|strong=\"G2532\"* preaching|strong=\"G2097\"* Jesus|strong=\"G2424\"*, the|strong=\"G1722\"* Christ|strong=\"G5547\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"*, when|strong=\"G1161\"* the|strong=\"G1722\"* number|strong=\"G4129\"* of|strong=\"G2250\"* the|strong=\"G1722\"* disciples|strong=\"G3101\"* was|strong=\"G1096\"* multiplying|strong=\"G4129\"*, a|strong=\"G1096\"* complaint|strong=\"G1112\"* arose|strong=\"G1096\"* from|strong=\"G3588\"* the|strong=\"G1722\"* Hellenists+ 6:1 The Hellenists used Greek language and culture, even though they were also of Hebrew descent.* against|strong=\"G4314\"* the|strong=\"G1722\"* Hebrews|strong=\"G1445\"*, because|strong=\"G3754\"* their|strong=\"G1722\"* widows|strong=\"G5503\"* were|strong=\"G3588\"* neglected|strong=\"G3865\"* in|strong=\"G1722\"* the|strong=\"G1722\"* daily|strong=\"G2250\"* service|strong=\"G1248\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"G1161\"* twelve|strong=\"G1427\"* summoned|strong=\"G4341\"* the|strong=\"G1161\"* multitude|strong=\"G4128\"* of|strong=\"G3056\"* the|strong=\"G1161\"* disciples|strong=\"G3101\"* and|strong=\"G1161\"* said|strong=\"G3004\"*, “It|strong=\"G1161\"* is|strong=\"G1510\"* not|strong=\"G3756\"* appropriate for|strong=\"G1161\"* us|strong=\"G3004\"* to|strong=\"G3004\"* forsake the|strong=\"G1161\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* and|strong=\"G1161\"* serve|strong=\"G1247\"* tables|strong=\"G5132\"*." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"G1161\"*, select|strong=\"G1980\"* from|strong=\"G1537\"* among|strong=\"G1537\"* you|strong=\"G5210\"*, brothers, seven|strong=\"G2033\"* men|strong=\"G3778\"* of|strong=\"G1537\"* good|strong=\"G3588\"* report|strong=\"G3140\"*, full|strong=\"G4134\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* and|strong=\"G2532\"* of|strong=\"G1537\"* wisdom|strong=\"G4678\"*, whom|strong=\"G3739\"* we|strong=\"G3739\"* may|strong=\"G2532\"* appoint|strong=\"G2525\"* over|strong=\"G1909\"* this|strong=\"G3778\"* business|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"* will|strong=\"G2532\"* continue|strong=\"G2532\"* steadfastly in|strong=\"G2532\"* prayer|strong=\"G4335\"* and|strong=\"G2532\"* in|strong=\"G2532\"* the|strong=\"G2532\"* ministry|strong=\"G1248\"* of|strong=\"G3056\"* the|strong=\"G2532\"* word|strong=\"G3056\"*.”" + }, + { + "verseNum": 5, + "text": "These|strong=\"G3956\"* words|strong=\"G3056\"* pleased the|strong=\"G2532\"* whole|strong=\"G3956\"* multitude|strong=\"G4128\"*. They|strong=\"G2532\"* chose|strong=\"G1586\"* Stephen|strong=\"G4736\"*, a|strong=\"G2532\"* man|strong=\"G3956\"* full|strong=\"G4134\"* of|strong=\"G3056\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* of|strong=\"G3056\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, Philip|strong=\"G5376\"*, Prochorus|strong=\"G4402\"*, Nicanor|strong=\"G3527\"*, Timon|strong=\"G5096\"*, Parmenas|strong=\"G3937\"*, and|strong=\"G2532\"* Nicolaus, a|strong=\"G2532\"* proselyte|strong=\"G4339\"* of|strong=\"G3056\"* Antioch," + }, + { + "verseNum": 6, + "text": "whom|strong=\"G3739\"* they|strong=\"G2532\"* set|strong=\"G2476\"* before|strong=\"G1799\"* the|strong=\"G2532\"* apostles. When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* prayed|strong=\"G4336\"*, they|strong=\"G2532\"* laid|strong=\"G2007\"* their|strong=\"G2532\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* increased|strong=\"G4129\"* and|strong=\"G2532\"* the|strong=\"G1722\"* number|strong=\"G3793\"* of|strong=\"G3056\"* the|strong=\"G1722\"* disciples|strong=\"G3101\"* greatly|strong=\"G4183\"* multiplied|strong=\"G4129\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"*. A|strong=\"G2532\"* great|strong=\"G4183\"* company|strong=\"G3793\"* of|strong=\"G3056\"* the|strong=\"G1722\"* priests|strong=\"G2409\"* were|strong=\"G3588\"* obedient|strong=\"G5219\"* to|strong=\"G2532\"* the|strong=\"G1722\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 8, + "text": "Stephen|strong=\"G4736\"*, full|strong=\"G4134\"* of|strong=\"G2532\"* faith and|strong=\"G2532\"* power|strong=\"G1411\"*, performed|strong=\"G4160\"* great|strong=\"G3173\"* wonders|strong=\"G5059\"* and|strong=\"G2532\"* signs|strong=\"G4592\"* among|strong=\"G1722\"* the|strong=\"G1722\"* people|strong=\"G2992\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* some|strong=\"G5100\"* of|strong=\"G1537\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G2532\"* synagogue|strong=\"G4864\"* called|strong=\"G3004\"* “The|strong=\"G2532\"* Libertines|strong=\"G3032\"*”, and|strong=\"G2532\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Cyrenians|strong=\"G2956\"*, of|strong=\"G1537\"* the|strong=\"G2532\"* Alexandrians, and|strong=\"G2532\"* of|strong=\"G1537\"* those|strong=\"G3588\"* of|strong=\"G1537\"* Cilicia|strong=\"G2791\"* and|strong=\"G2532\"* Asia|strong=\"G3588\"* arose, disputing|strong=\"G4802\"* with|strong=\"G1537\"* Stephen|strong=\"G4736\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"G2532\"* weren’t|strong=\"G3588\"* able|strong=\"G2480\"* to|strong=\"G2532\"* withstand the|strong=\"G2532\"* wisdom|strong=\"G4678\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* by|strong=\"G2532\"* which|strong=\"G3739\"* he|strong=\"G2532\"* spoke|strong=\"G2980\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"G2532\"* they|strong=\"G2532\"* secretly|strong=\"G5260\"* induced|strong=\"G5260\"* men|strong=\"G3588\"* to|strong=\"G1519\"* say|strong=\"G3004\"*, “We|strong=\"G3754\"* have|strong=\"G2532\"* heard him|strong=\"G3588\"* speak|strong=\"G2980\"* blasphemous words|strong=\"G4487\"* against|strong=\"G1519\"* Moses|strong=\"G3475\"* and|strong=\"G2532\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 12, + "text": "They|strong=\"G2532\"* stirred|strong=\"G2532\"* up|strong=\"G1519\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, the|strong=\"G2532\"* elders|strong=\"G4245\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"*, and|strong=\"G2532\"* came|strong=\"G2532\"* against|strong=\"G1519\"* him|strong=\"G3588\"* and|strong=\"G2532\"* seized|strong=\"G4884\"* him|strong=\"G3588\"*, then|strong=\"G2532\"* brought|strong=\"G2532\"* him|strong=\"G3588\"* in|strong=\"G1519\"* to|strong=\"G1519\"* the|strong=\"G2532\"* council|strong=\"G4892\"*," + }, + { + "verseNum": 13, + "text": "and|strong=\"G2532\"* set|strong=\"G2476\"* up|strong=\"G2476\"* false|strong=\"G5571\"* witnesses|strong=\"G3144\"* who|strong=\"G3588\"* said|strong=\"G3004\"*, “This|strong=\"G3778\"* man|strong=\"G3778\"* never|strong=\"G3756\"* stops speaking|strong=\"G2980\"* blasphemous words|strong=\"G4487\"* against|strong=\"G2596\"* this|strong=\"G3778\"* holy place|strong=\"G5117\"* and|strong=\"G2532\"* the|strong=\"G2532\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* have|strong=\"G2532\"* heard him|strong=\"G3588\"* say|strong=\"G3004\"* that|strong=\"G3754\"* this|strong=\"G3778\"* Jesus|strong=\"G2424\"* of|strong=\"G2532\"* Nazareth|strong=\"G3480\"* will|strong=\"G2532\"* destroy|strong=\"G2647\"* this|strong=\"G3778\"* place|strong=\"G5117\"*, and|strong=\"G2532\"* will|strong=\"G2532\"* change the|strong=\"G2532\"* customs|strong=\"G1485\"* which|strong=\"G3739\"* Moses|strong=\"G3475\"* delivered|strong=\"G3860\"* to|strong=\"G2532\"* us|strong=\"G3004\"*.”" + }, + { + "verseNum": 15, + "text": "All|strong=\"G3956\"* who|strong=\"G3588\"* sat|strong=\"G2516\"* in|strong=\"G1722\"* the|strong=\"G1722\"* council|strong=\"G4892\"*, fastening their|strong=\"G2532\"* eyes on|strong=\"G1722\"* him|strong=\"G3588\"*, saw|strong=\"G3708\"* his|strong=\"G3956\"* face|strong=\"G4383\"* like|strong=\"G5616\"* it|strong=\"G2532\"* was|strong=\"G3588\"* the|strong=\"G1722\"* face|strong=\"G4383\"* of|strong=\"G2532\"* an|strong=\"G2532\"* angel." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"G1161\"* high priest said|strong=\"G3004\"*, “Are|strong=\"G3588\"* these|strong=\"G3778\"* things|strong=\"G3778\"* so|strong=\"G3779\"*?”" + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* said|strong=\"G5346\"*, “Brothers and|strong=\"G2532\"* fathers|strong=\"G3962\"*, listen. The|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G2316\"* glory|strong=\"G1391\"* appeared|strong=\"G3708\"* to|strong=\"G2532\"* our|strong=\"G2316\"* father|strong=\"G3962\"* Abraham when|strong=\"G1161\"* he|strong=\"G2532\"* was|strong=\"G1510\"* in|strong=\"G1722\"* Mesopotamia|strong=\"G3318\"*, before|strong=\"G4250\"* he|strong=\"G2532\"* lived|strong=\"G2730\"* in|strong=\"G1722\"* Haran|strong=\"G5488\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, ‘Get|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* your|strong=\"G2532\"* land|strong=\"G1093\"* and|strong=\"G2532\"* away|strong=\"G1831\"* from|strong=\"G1537\"* your|strong=\"G2532\"* relatives|strong=\"G4772\"*, and|strong=\"G2532\"* come|strong=\"G1831\"* into|strong=\"G1519\"* a|strong=\"G2532\"* land|strong=\"G1093\"* which|strong=\"G3739\"* I|strong=\"G3739\"* will|strong=\"G2532\"* show|strong=\"G1166\"* you|strong=\"G4771\"*.’+ 7:3 Genesis 12:1*" + }, + { + "verseNum": 4, + "text": "Then|strong=\"G5119\"* he|strong=\"G3739\"* came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G1722\"* land|strong=\"G1093\"* of|strong=\"G1537\"* the|strong=\"G1722\"* Chaldaeans and|strong=\"G3962\"* lived|strong=\"G2730\"* in|strong=\"G1722\"* Haran|strong=\"G5488\"*. From|strong=\"G1537\"* there|strong=\"G2547\"*, when|strong=\"G1722\"* his|strong=\"G1519\"* father|strong=\"G3962\"* was|strong=\"G3588\"* dead, God|strong=\"G2730\"* moved him|strong=\"G3588\"* into|strong=\"G1519\"* this|strong=\"G3778\"* land|strong=\"G1093\"* where|strong=\"G3739\"* you|strong=\"G5210\"* are|strong=\"G3588\"* now|strong=\"G3568\"* living|strong=\"G2730\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"G2532\"* gave|strong=\"G1325\"* him|strong=\"G3588\"* no|strong=\"G3756\"* inheritance|strong=\"G2817\"* in|strong=\"G1722\"* it|strong=\"G2532\"*, no|strong=\"G3756\"*, not|strong=\"G3756\"* so|strong=\"G2532\"* much as|strong=\"G1519\"* to|strong=\"G1519\"* set|strong=\"G2532\"* his|strong=\"G1438\"* foot|strong=\"G4228\"* on|strong=\"G1722\"*. He|strong=\"G2532\"* promised|strong=\"G1861\"* that|strong=\"G3588\"* he|strong=\"G2532\"* would|strong=\"G2532\"* give|strong=\"G1325\"* it|strong=\"G2532\"* to|strong=\"G1519\"* him|strong=\"G3588\"* for|strong=\"G1519\"* a|strong=\"G2532\"* possession|strong=\"G2697\"*, and|strong=\"G2532\"* to|strong=\"G1519\"* his|strong=\"G1438\"* offspring after|strong=\"G3326\"* him|strong=\"G3588\"*, when|strong=\"G2532\"* he|strong=\"G2532\"* still had|strong=\"G2532\"* no|strong=\"G3756\"* child|strong=\"G5043\"*." + }, + { + "verseNum": 6, + "text": "God|strong=\"G2316\"* spoke|strong=\"G2980\"* in|strong=\"G1722\"* this|strong=\"G3588\"* way|strong=\"G3779\"*: that|strong=\"G3754\"* his|strong=\"G1722\"* offspring would|strong=\"G2316\"* live|strong=\"G2532\"* as|strong=\"G1722\"* aliens|strong=\"G3941\"* in|strong=\"G1722\"* a|strong=\"G2532\"* strange land|strong=\"G1093\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* they|strong=\"G2532\"* would|strong=\"G2316\"* be|strong=\"G1510\"* enslaved|strong=\"G1402\"* and|strong=\"G2532\"* mistreated|strong=\"G2559\"* for|strong=\"G3754\"* four|strong=\"G5071\"* hundred|strong=\"G5071\"* years|strong=\"G2094\"*." + }, + { + "verseNum": 7, + "text": "‘I|strong=\"G1473\"* will|strong=\"G2316\"* judge|strong=\"G2919\"* the|strong=\"G1722\"* nation|strong=\"G1484\"* to|strong=\"G2532\"* which|strong=\"G3739\"* they|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G2532\"* in|strong=\"G1722\"* bondage|strong=\"G1398\"*,’ said|strong=\"G3004\"* God|strong=\"G2316\"*, ‘and|strong=\"G2532\"* after|strong=\"G3326\"* that|strong=\"G3739\"* they|strong=\"G2532\"* will|strong=\"G2316\"* come|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* serve|strong=\"G1398\"* me|strong=\"G1473\"* in|strong=\"G1722\"* this|strong=\"G3778\"* place|strong=\"G5117\"*.’+ 7:7 Genesis 15:13-14*" + }, + { + "verseNum": 8, + "text": "He|strong=\"G2532\"* gave|strong=\"G1325\"* him|strong=\"G3588\"* the|strong=\"G2532\"* covenant|strong=\"G1242\"* of|strong=\"G2250\"* circumcision|strong=\"G4061\"*. So|strong=\"G3779\"* Abraham became|strong=\"G1080\"* the|strong=\"G2532\"* father|strong=\"G1080\"* of|strong=\"G2250\"* Isaac|strong=\"G2464\"*, and|strong=\"G2532\"* circumcised|strong=\"G4059\"* him|strong=\"G3588\"* the|strong=\"G2532\"* eighth|strong=\"G3590\"* day|strong=\"G2250\"*. Isaac|strong=\"G2464\"* became|strong=\"G1080\"* the|strong=\"G2532\"* father|strong=\"G1080\"* of|strong=\"G2250\"* Jacob|strong=\"G2384\"*, and|strong=\"G2532\"* Jacob|strong=\"G2384\"* became|strong=\"G1080\"* the|strong=\"G2532\"* father|strong=\"G1080\"* of|strong=\"G2250\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"* patriarchs|strong=\"G3966\"*." + }, + { + "verseNum": 9, + "text": "“The|strong=\"G2532\"* patriarchs|strong=\"G3966\"*, moved with|strong=\"G3326\"* jealousy against|strong=\"G1519\"* Joseph|strong=\"G2501\"*, sold|strong=\"G2532\"* him|strong=\"G3588\"* into|strong=\"G1519\"* Egypt. God|strong=\"G2316\"* was|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G3588\"*" + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* delivered|strong=\"G1807\"* him|strong=\"G3588\"* out|strong=\"G1537\"* of|strong=\"G1537\"* all|strong=\"G3956\"* his|strong=\"G3956\"* afflictions|strong=\"G2347\"*, and|strong=\"G2532\"* gave|strong=\"G1325\"* him|strong=\"G3588\"* favor|strong=\"G5485\"* and|strong=\"G2532\"* wisdom|strong=\"G4678\"* before|strong=\"G1909\"* Pharaoh|strong=\"G5328\"*, king|strong=\"G3588\"* of|strong=\"G1537\"* Egypt. He|strong=\"G2532\"* made|strong=\"G2525\"* him|strong=\"G3588\"* governor|strong=\"G2233\"* over|strong=\"G1909\"* Egypt and|strong=\"G2532\"* all|strong=\"G3956\"* his|strong=\"G3956\"* house|strong=\"G3624\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"G1161\"* a|strong=\"G2532\"* famine|strong=\"G3042\"* came|strong=\"G2064\"* over|strong=\"G1909\"* all|strong=\"G3650\"* the|strong=\"G2532\"* land of|strong=\"G2532\"* Egypt and|strong=\"G2532\"* Canaan|strong=\"G5477\"*, and|strong=\"G2532\"* great|strong=\"G3173\"* affliction|strong=\"G2347\"*. Our|strong=\"G2532\"* fathers|strong=\"G3962\"* found|strong=\"G2147\"* no|strong=\"G3756\"* food|strong=\"G5527\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Jacob|strong=\"G2384\"* heard that|strong=\"G3588\"* there|strong=\"G1161\"* was|strong=\"G1510\"* grain|strong=\"G4621\"* in|strong=\"G1519\"* Egypt, he|strong=\"G1161\"* sent|strong=\"G1821\"* out|strong=\"G1821\"* our|strong=\"G1519\"* fathers|strong=\"G3962\"* the|strong=\"G1519\"* first|strong=\"G4413\"* time|strong=\"G4413\"*." + }, + { + "verseNum": 13, + "text": "On|strong=\"G1722\"* the|strong=\"G1722\"* second|strong=\"G1208\"* time|strong=\"G1208\"* Joseph|strong=\"G2501\"* was|strong=\"G1096\"* made|strong=\"G1096\"* known|strong=\"G5318\"* to|strong=\"G2532\"* his|strong=\"G1722\"* brothers, and|strong=\"G2532\"* Joseph|strong=\"G2501\"*’s family|strong=\"G1085\"* was|strong=\"G1096\"* revealed|strong=\"G5318\"* to|strong=\"G2532\"* Pharaoh|strong=\"G5328\"*." + }, + { + "verseNum": 14, + "text": "Joseph|strong=\"G2501\"* sent|strong=\"G2532\"* and|strong=\"G2532\"* summoned Jacob|strong=\"G2384\"* his|strong=\"G3956\"* father|strong=\"G3962\"* and|strong=\"G2532\"* all|strong=\"G3956\"* his|strong=\"G3956\"* relatives|strong=\"G4772\"*, seventy-five|strong=\"G1440\"* souls|strong=\"G5590\"*." + }, + { + "verseNum": 15, + "text": "Jacob|strong=\"G2384\"* went|strong=\"G2597\"* down|strong=\"G2597\"* into|strong=\"G1519\"* Egypt and|strong=\"G2532\"* he|strong=\"G2532\"* died|strong=\"G5053\"*, himself|strong=\"G1519\"* and|strong=\"G2532\"* our|strong=\"G2532\"* fathers|strong=\"G3962\"*;" + }, + { + "verseNum": 16, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* brought|strong=\"G2532\"* back|strong=\"G1519\"* to|strong=\"G1519\"* Shechem|strong=\"G4966\"* and|strong=\"G2532\"* laid|strong=\"G5087\"* in|strong=\"G1722\"* the|strong=\"G1722\"* tomb|strong=\"G3418\"* that|strong=\"G3739\"* Abraham bought|strong=\"G5608\"* for|strong=\"G1519\"* a|strong=\"G2532\"* price|strong=\"G5092\"* in|strong=\"G1722\"* silver from|strong=\"G3844\"* the|strong=\"G1722\"* children|strong=\"G5207\"* of|strong=\"G5207\"* Hamor|strong=\"G1697\"* of|strong=\"G5207\"* Shechem|strong=\"G4966\"*." + }, + { + "verseNum": 17, + "text": "“But|strong=\"G1161\"* as|strong=\"G2531\"* the|strong=\"G1722\"* time|strong=\"G5550\"* of|strong=\"G2316\"* the|strong=\"G1722\"* promise|strong=\"G1860\"* came|strong=\"G2532\"* close|strong=\"G1448\"* which|strong=\"G3739\"* God|strong=\"G2316\"* had|strong=\"G2532\"* sworn to|strong=\"G2532\"* Abraham, the|strong=\"G1722\"* people|strong=\"G2992\"* grew and|strong=\"G2532\"* multiplied|strong=\"G4129\"* in|strong=\"G1722\"* Egypt," + }, + { + "verseNum": 18, + "text": "until there|strong=\"G1492\"* arose a|strong=\"G1909\"* different|strong=\"G2087\"* king|strong=\"G3588\"* who|strong=\"G3739\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"* Joseph|strong=\"G2501\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"G1519\"* same|strong=\"G3778\"* took|strong=\"G4160\"* advantage|strong=\"G2686\"* of|strong=\"G3962\"* our|strong=\"G1519\"* race|strong=\"G1085\"* and|strong=\"G3962\"* mistreated|strong=\"G2559\"* our|strong=\"G1519\"* fathers|strong=\"G3962\"*, and|strong=\"G3962\"* forced them|strong=\"G3588\"* to|strong=\"G1519\"* abandon their|strong=\"G1519\"* babies|strong=\"G1025\"*, so|strong=\"G1519\"* that|strong=\"G3588\"* they|strong=\"G3588\"* wouldn’t|strong=\"G3588\"* stay alive." + }, + { + "verseNum": 20, + "text": "At|strong=\"G1722\"* that|strong=\"G3739\"* time|strong=\"G2540\"* Moses|strong=\"G3475\"* was|strong=\"G1510\"* born|strong=\"G1080\"*, and|strong=\"G2532\"* was|strong=\"G1510\"* exceedingly|strong=\"G1510\"* handsome to|strong=\"G2532\"* God|strong=\"G2316\"*. He|strong=\"G2532\"* was|strong=\"G1510\"* nourished three|strong=\"G5140\"* months|strong=\"G3376\"* in|strong=\"G1722\"* his|strong=\"G1722\"* father|strong=\"G3962\"*’s house|strong=\"G3624\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* was|strong=\"G3588\"* abandoned, Pharaoh|strong=\"G5328\"*’s daughter|strong=\"G2364\"* took|strong=\"G2532\"* him|strong=\"G3588\"* up|strong=\"G1519\"* and|strong=\"G2532\"* reared him|strong=\"G3588\"* as|strong=\"G1519\"* her|strong=\"G1438\"* own|strong=\"G1438\"* son|strong=\"G5207\"*." + }, + { + "verseNum": 22, + "text": "Moses|strong=\"G3475\"* was|strong=\"G1510\"* instructed in|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* wisdom|strong=\"G4678\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Egyptians. He|strong=\"G2532\"* was|strong=\"G1510\"* mighty|strong=\"G1415\"* in|strong=\"G1722\"* his|strong=\"G3956\"* words|strong=\"G3056\"* and|strong=\"G2532\"* works|strong=\"G2041\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* he|strong=\"G1161\"* was|strong=\"G3588\"* forty|strong=\"G5063\"* years|strong=\"G5063\"* old|strong=\"G5550\"*, it|strong=\"G1161\"* came|strong=\"G3588\"* into|strong=\"G1909\"* his|strong=\"G1909\"* heart|strong=\"G2588\"* to|strong=\"G1909\"* visit|strong=\"G1980\"* his|strong=\"G1909\"* brothers,+ 7:23 The word for “brothers” here and where the context allows may be also correctly translated “brothers and sisters” or “siblings.”* the|strong=\"G1161\"* children|strong=\"G5207\"* of|strong=\"G5207\"* Israel|strong=\"G2474\"*." + }, + { + "verseNum": 24, + "text": "Seeing|strong=\"G3708\"* one|strong=\"G5100\"* of|strong=\"G2532\"* them|strong=\"G3588\"* suffer|strong=\"G2532\"* wrong|strong=\"G1557\"*, he|strong=\"G2532\"* defended him|strong=\"G3588\"* and|strong=\"G2532\"* avenged|strong=\"G1557\"* him|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G3588\"* oppressed|strong=\"G2669\"*, striking|strong=\"G3960\"* the|strong=\"G2532\"* Egyptian." + }, + { + "verseNum": 25, + "text": "He|strong=\"G1161\"* supposed|strong=\"G3543\"* that|strong=\"G3754\"* his|strong=\"G1223\"* brothers understood|strong=\"G4920\"* that|strong=\"G3754\"* God|strong=\"G2316\"*, by|strong=\"G1223\"* his|strong=\"G1223\"* hand|strong=\"G5495\"*, was|strong=\"G3588\"* giving|strong=\"G1325\"* them|strong=\"G3588\"* deliverance|strong=\"G4991\"*; but|strong=\"G1161\"* they|strong=\"G1161\"* didn’t|strong=\"G3588\"* understand|strong=\"G4920\"*." + }, + { + "verseNum": 26, + "text": "“The|strong=\"G2532\"* day|strong=\"G2250\"* following|strong=\"G1966\"*, he|strong=\"G2532\"* appeared|strong=\"G3708\"* to|strong=\"G1519\"* them|strong=\"G3588\"* as|strong=\"G1519\"* they|strong=\"G2532\"* fought, and|strong=\"G2532\"* urged them|strong=\"G3588\"* to|strong=\"G1519\"* be|strong=\"G1510\"* at|strong=\"G1519\"* peace|strong=\"G1515\"* again|strong=\"G1519\"*, saying|strong=\"G3004\"*, ‘Sirs, you|strong=\"G3004\"* are|strong=\"G1510\"* brothers. Why|strong=\"G2444\"* do|strong=\"G2532\"* you|strong=\"G3004\"* wrong one|strong=\"G1438\"* another|strong=\"G1438\"*?’" + }, + { + "verseNum": 27, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* who|strong=\"G5101\"* did|strong=\"G2532\"* his|strong=\"G1909\"* neighbor|strong=\"G4139\"* wrong pushed him|strong=\"G3588\"* away, saying|strong=\"G3004\"*, ‘Who|strong=\"G5101\"* made|strong=\"G2525\"* you|strong=\"G4771\"* a|strong=\"G2532\"* ruler|strong=\"G2525\"* and|strong=\"G2532\"* a|strong=\"G2532\"* judge|strong=\"G1348\"* over|strong=\"G1909\"* us|strong=\"G3004\"*?" + }, + { + "verseNum": 28, + "text": "Do|strong=\"G3361\"* you|strong=\"G4771\"* want|strong=\"G2309\"* to|strong=\"G2309\"* kill me|strong=\"G1473\"* as|strong=\"G3739\"* you|strong=\"G4771\"* killed the|strong=\"G3588\"* Egyptian yesterday|strong=\"G5504\"*?’+ 7:28 Exodus 2:14*" + }, + { + "verseNum": 29, + "text": "Moses|strong=\"G3475\"* fled|strong=\"G5343\"* at|strong=\"G1722\"* this|strong=\"G3778\"* saying|strong=\"G3056\"*, and|strong=\"G2532\"* became|strong=\"G1096\"* a|strong=\"G1096\"* stranger|strong=\"G3941\"* in|strong=\"G1722\"* the|strong=\"G1722\"* land|strong=\"G1093\"* of|strong=\"G5207\"* Midian|strong=\"G3099\"*, where|strong=\"G3757\"* he|strong=\"G2532\"* became|strong=\"G1096\"* the|strong=\"G1722\"* father|strong=\"G1080\"* of|strong=\"G5207\"* two|strong=\"G1417\"* sons|strong=\"G5207\"*." + }, + { + "verseNum": 30, + "text": "“When|strong=\"G2532\"* forty|strong=\"G5062\"* years|strong=\"G2094\"* were|strong=\"G3588\"* fulfilled|strong=\"G4137\"*, an|strong=\"G2532\"* angel of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G3588\"* appeared|strong=\"G3708\"* to|strong=\"G2532\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"* of|strong=\"G2532\"* Mount|strong=\"G3735\"* Sinai|strong=\"G4614\"*, in|strong=\"G1722\"* a|strong=\"G2532\"* flame|strong=\"G5395\"* of|strong=\"G2532\"* fire|strong=\"G4442\"* in|strong=\"G1722\"* a|strong=\"G2532\"* bush." + }, + { + "verseNum": 31, + "text": "When|strong=\"G1161\"* Moses|strong=\"G3475\"* saw|strong=\"G3708\"* it|strong=\"G1161\"*, he|strong=\"G1161\"* wondered|strong=\"G2296\"* at|strong=\"G2296\"* the|strong=\"G1161\"* sight|strong=\"G3705\"*. As|strong=\"G1161\"* he|strong=\"G1161\"* came|strong=\"G4334\"* close to|strong=\"G4334\"* see|strong=\"G3708\"*, the|strong=\"G1161\"* voice|strong=\"G5456\"* of|strong=\"G2962\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"* came|strong=\"G4334\"* to|strong=\"G4334\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 32, + "text": "‘I|strong=\"G1473\"* am|strong=\"G1473\"* the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* your|strong=\"G2532\"* fathers|strong=\"G3962\"*: the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* Abraham, the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* Isaac|strong=\"G2464\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* Jacob|strong=\"G2384\"*.’+ 7:32 Exodus 3:6* Moses|strong=\"G3475\"* trembled|strong=\"G1790\"* and|strong=\"G2532\"* dared|strong=\"G5111\"* not|strong=\"G3756\"* look|strong=\"G2657\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"G1161\"* Lord|strong=\"G2962\"* said|strong=\"G3004\"* to|strong=\"G1909\"* him|strong=\"G3588\"*, ‘Take|strong=\"G3089\"* off|strong=\"G3089\"* your|strong=\"G2962\"* sandals|strong=\"G5266\"*, for|strong=\"G1063\"* the|strong=\"G1161\"* place|strong=\"G5117\"* where|strong=\"G3739\"* you|strong=\"G4771\"* stand|strong=\"G2476\"* is|strong=\"G1510\"* holy ground|strong=\"G1093\"*." + }, + { + "verseNum": 34, + "text": "I|strong=\"G1473\"* have|strong=\"G2532\"* surely seen|strong=\"G3708\"* the|strong=\"G1722\"* affliction|strong=\"G2561\"* of|strong=\"G2532\"* my|strong=\"G3708\"* people|strong=\"G2992\"* who|strong=\"G3588\"* are|strong=\"G3588\"* in|strong=\"G1722\"* Egypt, and|strong=\"G2532\"* have|strong=\"G2532\"* heard their|strong=\"G1438\"* groaning|strong=\"G4726\"*. I|strong=\"G1473\"* have|strong=\"G2532\"* come|strong=\"G1204\"* down|strong=\"G2597\"* to|strong=\"G1519\"* deliver|strong=\"G1807\"* them|strong=\"G3588\"*. Now|strong=\"G3568\"* come|strong=\"G1204\"*, I|strong=\"G1473\"* will|strong=\"G2532\"* send you|strong=\"G4771\"* into|strong=\"G1519\"* Egypt.’+ 7:34 Exodus 3:5,7-8,10*" + }, + { + "verseNum": 35, + "text": "“This|strong=\"G3778\"* Moses|strong=\"G3475\"* whom|strong=\"G3739\"* they|strong=\"G2532\"* refused, saying|strong=\"G3004\"*, ‘Who|strong=\"G3739\"* made|strong=\"G2525\"* you|strong=\"G4771\"* a|strong=\"G2532\"* ruler|strong=\"G2525\"* and|strong=\"G2532\"* a|strong=\"G2532\"* judge|strong=\"G1348\"*?’—God|strong=\"G2316\"* has|strong=\"G2316\"* sent|strong=\"G2316\"* him|strong=\"G3588\"* as|strong=\"G1722\"* both|strong=\"G2532\"* a|strong=\"G2532\"* ruler|strong=\"G2525\"* and|strong=\"G2532\"* a|strong=\"G2532\"* deliverer|strong=\"G3086\"* by|strong=\"G1722\"* the|strong=\"G1722\"* hand|strong=\"G5495\"* of|strong=\"G2316\"* the|strong=\"G1722\"* angel who|strong=\"G3739\"* appeared|strong=\"G3708\"* to|strong=\"G2532\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* bush." + }, + { + "verseNum": 36, + "text": "This|strong=\"G3778\"* man|strong=\"G3778\"* led|strong=\"G1806\"* them|strong=\"G3588\"* out|strong=\"G1806\"*, having|strong=\"G2532\"* worked|strong=\"G4160\"* wonders|strong=\"G5059\"* and|strong=\"G2532\"* signs|strong=\"G4592\"* in|strong=\"G1722\"* Egypt, in|strong=\"G1722\"* the|strong=\"G1722\"* Red|strong=\"G2063\"* Sea|strong=\"G2281\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"* for|strong=\"G1722\"* forty|strong=\"G5062\"* years|strong=\"G2094\"*." + }, + { + "verseNum": 37, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* that|strong=\"G3588\"* Moses|strong=\"G3475\"* who|strong=\"G3588\"* said|strong=\"G3004\"* to|strong=\"G3004\"* the|strong=\"G1537\"* children|strong=\"G5207\"* of|strong=\"G1537\"* Israel|strong=\"G2474\"*, ‘The|strong=\"G1537\"* Lord|strong=\"G3588\"* our|strong=\"G2316\"* God|strong=\"G2316\"* will|strong=\"G2316\"* raise|strong=\"G2316\"* up|strong=\"G1537\"* a|strong=\"G5613\"* prophet|strong=\"G4396\"* for|strong=\"G1537\"* you|strong=\"G5210\"* from|strong=\"G1537\"* among|strong=\"G1537\"* your|strong=\"G3588\"* brothers, like|strong=\"G5613\"* me|strong=\"G1473\"*.’+ 7:37 TR adds “You shall listen to him.”*+ 7:37 Deuteronomy 18:15*" + }, + { + "verseNum": 38, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3739\"* was|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"* with|strong=\"G3326\"* the|strong=\"G1722\"* angel that|strong=\"G3739\"* spoke|strong=\"G2980\"* to|strong=\"G2532\"* him|strong=\"G3588\"* on|strong=\"G1722\"* Mount|strong=\"G3735\"* Sinai|strong=\"G4614\"*, and|strong=\"G2532\"* with|strong=\"G3326\"* our|strong=\"G2532\"* fathers|strong=\"G3962\"*, who|strong=\"G3739\"* received|strong=\"G1209\"* living|strong=\"G2198\"* revelations to|strong=\"G2532\"* give|strong=\"G1325\"* to|strong=\"G2532\"* us|strong=\"G1325\"*," + }, + { + "verseNum": 39, + "text": "to|strong=\"G1519\"* whom|strong=\"G3739\"* our|strong=\"G2532\"* fathers|strong=\"G3962\"* wouldn’t|strong=\"G3588\"* be|strong=\"G1096\"* obedient|strong=\"G5255\"*, but|strong=\"G2532\"* rejected him|strong=\"G3588\"* and|strong=\"G2532\"* turned|strong=\"G4762\"* back|strong=\"G1519\"* in|strong=\"G1722\"* their|strong=\"G2532\"* hearts|strong=\"G2588\"* to|strong=\"G1519\"* Egypt," + }, + { + "verseNum": 40, + "text": "saying|strong=\"G3004\"* to|strong=\"G3004\"* Aaron, ‘Make|strong=\"G4160\"* us|strong=\"G3004\"* gods|strong=\"G2316\"* that|strong=\"G3739\"* will|strong=\"G2316\"* go|strong=\"G4313\"* before|strong=\"G3588\"* us|strong=\"G3004\"*, for|strong=\"G1063\"* as|strong=\"G3739\"* for|strong=\"G1063\"* this|strong=\"G3778\"* Moses|strong=\"G3475\"* who|strong=\"G3739\"* led|strong=\"G1806\"* us|strong=\"G3004\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1537\"* land|strong=\"G1093\"* of|strong=\"G1537\"* Egypt, we|strong=\"G2249\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* what|strong=\"G5101\"* has|strong=\"G2316\"* become|strong=\"G1096\"* of|strong=\"G1537\"* him|strong=\"G3588\"*.’+ 7:40 Exodus 32:1*" + }, + { + "verseNum": 41, + "text": "They|strong=\"G2532\"* made|strong=\"G1565\"* a|strong=\"G2532\"* calf|strong=\"G3447\"* in|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"*, and|strong=\"G2532\"* brought|strong=\"G2532\"* a|strong=\"G2532\"* sacrifice|strong=\"G2378\"* to|strong=\"G2532\"* the|strong=\"G1722\"* idol|strong=\"G1497\"*, and|strong=\"G2532\"* rejoiced|strong=\"G2165\"* in|strong=\"G1722\"* the|strong=\"G1722\"* works|strong=\"G2041\"* of|strong=\"G2250\"* their|strong=\"G2532\"* hands|strong=\"G5495\"*." + }, + { + "verseNum": 42, + "text": "But|strong=\"G1161\"* God|strong=\"G2316\"* turned|strong=\"G4762\"* away|strong=\"G4762\"* and|strong=\"G2532\"* gave|strong=\"G3860\"* them|strong=\"G3588\"* up|strong=\"G3860\"* to|strong=\"G2532\"* serve|strong=\"G3000\"* the|strong=\"G1722\"* army|strong=\"G4756\"* of|strong=\"G2316\"* the|strong=\"G1722\"* sky|strong=\"G3772\"*,+ 7:42 This idiom could also be translated “host of heaven”, or “angelic beings”, or “heavenly bodies.”* as|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* book|strong=\"G3588\"* of|strong=\"G2316\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"*," + }, + { + "verseNum": 43, + "text": "You|strong=\"G5210\"* took|strong=\"G2532\"* up|strong=\"G2532\"* the|strong=\"G2532\"* tabernacle|strong=\"G4633\"* of|strong=\"G2316\"* Moloch|strong=\"G3434\"*," + }, + { + "verseNum": 44, + "text": "“Our|strong=\"G1722\"* fathers|strong=\"G3962\"* had|strong=\"G1510\"* the|strong=\"G1722\"* tabernacle|strong=\"G4633\"* of|strong=\"G3962\"* the|strong=\"G1722\"* testimony|strong=\"G3142\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"*, even|strong=\"G2531\"* as|strong=\"G2531\"* he|strong=\"G3739\"* who|strong=\"G3739\"* spoke|strong=\"G2980\"* to|strong=\"G2596\"* Moses|strong=\"G3475\"* commanded|strong=\"G1299\"* him|strong=\"G3588\"* to|strong=\"G2596\"* make|strong=\"G4160\"* it|strong=\"G4160\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* pattern|strong=\"G5179\"* that|strong=\"G3739\"* he|strong=\"G3739\"* had|strong=\"G1510\"* seen|strong=\"G3708\"*;" + }, + { + "verseNum": 45, + "text": "which|strong=\"G3739\"* also|strong=\"G2532\"* our|strong=\"G2316\"* fathers|strong=\"G3962\"*, in|strong=\"G1722\"* their|strong=\"G2532\"* turn|strong=\"G1237\"*, brought|strong=\"G1521\"* in|strong=\"G1722\"* with|strong=\"G3326\"* Joshua|strong=\"G2424\"* when|strong=\"G2532\"* they|strong=\"G2532\"* entered into|strong=\"G1722\"* the|strong=\"G1722\"* possession|strong=\"G2697\"* of|strong=\"G2250\"* the|strong=\"G1722\"* nations|strong=\"G1484\"* whom|strong=\"G3739\"* God|strong=\"G2316\"* drove|strong=\"G1856\"* out|strong=\"G2532\"* before|strong=\"G1722\"* the|strong=\"G1722\"* face|strong=\"G4383\"* of|strong=\"G2250\"* our|strong=\"G2316\"* fathers|strong=\"G3962\"* to|strong=\"G2532\"* the|strong=\"G1722\"* days|strong=\"G2250\"* of|strong=\"G2250\"* David|strong=\"G1138\"*," + }, + { + "verseNum": 46, + "text": "who|strong=\"G3739\"* found|strong=\"G2147\"* favor|strong=\"G5485\"* in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* asked to|strong=\"G2532\"* find|strong=\"G2147\"* a|strong=\"G2532\"* habitation for|strong=\"G2532\"* the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* Jacob|strong=\"G2384\"*." + }, + { + "verseNum": 47, + "text": "But|strong=\"G1161\"* Solomon|strong=\"G4672\"* built|strong=\"G3618\"* him a|strong=\"G1161\"* house|strong=\"G3624\"*." + }, + { + "verseNum": 48, + "text": "However, the|strong=\"G1722\"* Most|strong=\"G5310\"* High|strong=\"G5310\"* doesn’t|strong=\"G3588\"* dwell|strong=\"G2730\"* in|strong=\"G1722\"* temples made|strong=\"G5499\"* with|strong=\"G1722\"* hands|strong=\"G5499\"*, as|strong=\"G2531\"* the|strong=\"G1722\"* prophet|strong=\"G4396\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 49, + "text": "‘heaven|strong=\"G3772\"* is|strong=\"G3588\"* my|strong=\"G1473\"* throne|strong=\"G2362\"*," + }, + { + "verseNum": 50, + "text": "Didn’t|strong=\"G3588\"* my|strong=\"G3956\"* hand|strong=\"G5495\"* make|strong=\"G4160\"* all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"*?’+ 7:50 Isaiah 66:1-2*" + }, + { + "verseNum": 51, + "text": "“You|strong=\"G5210\"* stiff-necked|strong=\"G4644\"* and|strong=\"G2532\"* uncircumcised in|strong=\"G2532\"* heart|strong=\"G2588\"* and|strong=\"G2532\"* ears|strong=\"G3775\"*, you|strong=\"G5210\"* always resist the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*! As|strong=\"G5613\"* your|strong=\"G2532\"* fathers|strong=\"G3962\"* did|strong=\"G2532\"*, so|strong=\"G2532\"* you|strong=\"G5210\"* do|strong=\"G2532\"*." + }, + { + "verseNum": 52, + "text": "Which|strong=\"G3739\"* of|strong=\"G4012\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"* didn’t|strong=\"G3588\"* your|strong=\"G2532\"* fathers|strong=\"G3962\"* persecute|strong=\"G1377\"*? They|strong=\"G2532\"* killed those|strong=\"G3588\"* who|strong=\"G3739\"* foretold|strong=\"G4293\"* the|strong=\"G2532\"* coming|strong=\"G1096\"* of|strong=\"G4012\"* the|strong=\"G2532\"* Righteous|strong=\"G1342\"* One|strong=\"G3739\"*, of|strong=\"G4012\"* whom|strong=\"G3739\"* you|strong=\"G5210\"* have|strong=\"G2532\"* now|strong=\"G3568\"* become|strong=\"G1096\"* betrayers|strong=\"G4273\"* and|strong=\"G2532\"* murderers|strong=\"G5406\"*." + }, + { + "verseNum": 53, + "text": "You|strong=\"G2532\"* received|strong=\"G2983\"* the|strong=\"G2532\"* law|strong=\"G3551\"* as|strong=\"G1519\"* it|strong=\"G2532\"* was|strong=\"G3588\"* ordained|strong=\"G1296\"* by|strong=\"G2532\"* angels, and|strong=\"G2532\"* didn’t|strong=\"G3588\"* keep|strong=\"G5442\"* it|strong=\"G2532\"*!”" + }, + { + "verseNum": 54, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G2532\"* heard these|strong=\"G3778\"* things|strong=\"G3778\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* cut|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* heart|strong=\"G2588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* gnashed|strong=\"G1031\"* at|strong=\"G1909\"* him|strong=\"G3588\"* with|strong=\"G2532\"* their|strong=\"G2532\"* teeth|strong=\"G3599\"*." + }, + { + "verseNum": 55, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"*, being|strong=\"G5225\"* full|strong=\"G4134\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, looked|strong=\"G3708\"* up|strong=\"G1519\"* steadfastly into|strong=\"G1519\"* heaven|strong=\"G3772\"* and|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* Jesus|strong=\"G2424\"* standing|strong=\"G2476\"* on|strong=\"G1519\"* the|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G1537\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 56, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"*, “Behold|strong=\"G2400\"*, I|strong=\"G2532\"* see|strong=\"G3708\"* the|strong=\"G2532\"* heavens|strong=\"G3772\"* opened|strong=\"G1272\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G1537\"* Man|strong=\"G5207\"* standing|strong=\"G2476\"* at|strong=\"G1537\"* the|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G1537\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 57, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* and|strong=\"G2532\"* stopped|strong=\"G4912\"* their|strong=\"G2532\"* ears|strong=\"G3775\"*, then|strong=\"G2532\"* rushed|strong=\"G3729\"* at|strong=\"G1909\"* him|strong=\"G3588\"* with|strong=\"G2532\"* one|strong=\"G3588\"* accord|strong=\"G3661\"*." + }, + { + "verseNum": 58, + "text": "They|strong=\"G2532\"* threw|strong=\"G1544\"* him|strong=\"G3588\"* out|strong=\"G1544\"* of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"* and|strong=\"G2532\"* stoned|strong=\"G3036\"* him|strong=\"G3588\"*. The|strong=\"G2532\"* witnesses|strong=\"G3144\"* placed their|strong=\"G2532\"* garments|strong=\"G2440\"* at|strong=\"G3844\"* the|strong=\"G2532\"* feet|strong=\"G4228\"* of|strong=\"G2532\"* a|strong=\"G2532\"* young|strong=\"G3494\"* man|strong=\"G3494\"* named|strong=\"G2564\"* Saul|strong=\"G4569\"*." + }, + { + "verseNum": 59, + "text": "They|strong=\"G2532\"* stoned|strong=\"G3036\"* Stephen|strong=\"G4736\"* as|strong=\"G2532\"* he|strong=\"G2532\"* called|strong=\"G3004\"* out|strong=\"G2532\"*, saying|strong=\"G3004\"*, “Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*, receive|strong=\"G1209\"* my|strong=\"G1473\"* spirit|strong=\"G4151\"*!”" + }, + { + "verseNum": 60, + "text": "He|strong=\"G2532\"* kneeled|strong=\"G5087\"* down|strong=\"G5087\"* and|strong=\"G2532\"* cried|strong=\"G2896\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, “Lord|strong=\"G2962\"*, don’t|strong=\"G3588\"* hold|strong=\"G2476\"* this|strong=\"G3778\"* sin against|strong=\"G3361\"* them|strong=\"G3588\"*!” When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* fell|strong=\"G2837\"* asleep|strong=\"G2837\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Saul|strong=\"G4569\"* was|strong=\"G1510\"* consenting|strong=\"G2532\"* to|strong=\"G2532\"* his|strong=\"G3956\"* death. A|strong=\"G1096\"* great|strong=\"G3173\"* persecution|strong=\"G1375\"* arose|strong=\"G1096\"* against|strong=\"G2596\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* which|strong=\"G3588\"* was|strong=\"G1510\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2414\"* in|strong=\"G1722\"* that|strong=\"G3588\"* day|strong=\"G2250\"*. They|strong=\"G2532\"* were|strong=\"G1510\"* all|strong=\"G3956\"* scattered|strong=\"G1289\"* abroad|strong=\"G1289\"* throughout|strong=\"G2596\"* the|strong=\"G1722\"* regions|strong=\"G5561\"* of|strong=\"G2250\"* Judea|strong=\"G2449\"* and|strong=\"G2532\"* Samaria|strong=\"G4540\"*, except|strong=\"G4133\"* for|strong=\"G1909\"* the|strong=\"G1722\"* apostles." + }, + { + "verseNum": 2, + "text": "Devout|strong=\"G2126\"* men|strong=\"G3588\"* buried|strong=\"G4792\"* Stephen|strong=\"G4736\"* and|strong=\"G2532\"* lamented greatly|strong=\"G3173\"* over|strong=\"G1909\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* Saul|strong=\"G4569\"* ravaged the|strong=\"G2532\"* assembly|strong=\"G1577\"*, entering|strong=\"G1531\"* into|strong=\"G1519\"* every|strong=\"G2596\"* house|strong=\"G3624\"* and|strong=\"G2532\"* dragged|strong=\"G4951\"* both|strong=\"G2532\"* men|strong=\"G3588\"* and|strong=\"G2532\"* women|strong=\"G1135\"* off|strong=\"G2596\"* to|strong=\"G1519\"* prison|strong=\"G5438\"*." + }, + { + "verseNum": 4, + "text": "Therefore|strong=\"G3767\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* scattered|strong=\"G1289\"* abroad|strong=\"G1289\"* went|strong=\"G1330\"* around preaching|strong=\"G2097\"* the|strong=\"G3588\"* word|strong=\"G3056\"*." + }, + { + "verseNum": 5, + "text": "Philip|strong=\"G5376\"* went|strong=\"G2718\"* down|strong=\"G2718\"* to|strong=\"G1519\"* the|strong=\"G1519\"* city|strong=\"G4172\"* of|strong=\"G4172\"* Samaria|strong=\"G4540\"* and|strong=\"G1161\"* proclaimed|strong=\"G2784\"* to|strong=\"G1519\"* them|strong=\"G3588\"* the|strong=\"G1519\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"G1722\"* multitudes|strong=\"G3793\"* listened with|strong=\"G1722\"* one|strong=\"G3739\"* accord|strong=\"G3661\"* to|strong=\"G2532\"* the|strong=\"G1722\"* things|strong=\"G3588\"* that|strong=\"G3739\"* were|strong=\"G3588\"* spoken|strong=\"G3004\"* by|strong=\"G1722\"* Philip|strong=\"G5376\"* when|strong=\"G1161\"* they|strong=\"G2532\"* heard and|strong=\"G2532\"* saw the|strong=\"G1722\"* signs|strong=\"G4592\"* which|strong=\"G3739\"* he|strong=\"G2532\"* did|strong=\"G4160\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* unclean spirits|strong=\"G4151\"* came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G4151\"* many|strong=\"G4183\"* of|strong=\"G4151\"* those|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2192\"* them|strong=\"G3588\"*. They|strong=\"G2532\"* came|strong=\"G1831\"* out|strong=\"G1831\"*, crying with|strong=\"G2532\"* a|strong=\"G2192\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*. Many|strong=\"G4183\"* who|strong=\"G3588\"* had|strong=\"G2192\"* been|strong=\"G2192\"* paralyzed|strong=\"G3886\"* and|strong=\"G2532\"* lame|strong=\"G5560\"* were|strong=\"G3588\"* healed|strong=\"G2323\"*." + }, + { + "verseNum": 8, + "text": "There|strong=\"G1161\"* was|strong=\"G1096\"* great|strong=\"G4183\"* joy|strong=\"G5479\"* in|strong=\"G1722\"* that|strong=\"G3588\"* city|strong=\"G4172\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* man|strong=\"G5100\"*, Simon|strong=\"G4613\"* by|strong=\"G1722\"* name|strong=\"G3686\"*, who|strong=\"G3588\"* used|strong=\"G4172\"* to|strong=\"G2532\"* practice sorcery|strong=\"G3096\"* in|strong=\"G1722\"* the|strong=\"G1722\"* city|strong=\"G4172\"* and|strong=\"G2532\"* amazed|strong=\"G1839\"* the|strong=\"G1722\"* people|strong=\"G1484\"* of|strong=\"G2532\"* Samaria|strong=\"G4540\"*, making|strong=\"G2532\"* himself|strong=\"G1438\"* out|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G1510\"* some|strong=\"G5100\"* great|strong=\"G3173\"* one|strong=\"G5100\"*," + }, + { + "verseNum": 10, + "text": "to|strong=\"G3004\"* whom|strong=\"G3739\"* they|strong=\"G3588\"* all|strong=\"G3956\"* listened, from|strong=\"G3588\"* the|strong=\"G3956\"* least|strong=\"G3398\"* to|strong=\"G3004\"* the|strong=\"G3956\"* greatest|strong=\"G3173\"*, saying|strong=\"G3004\"*, “This|strong=\"G3778\"* man|strong=\"G3778\"* is|strong=\"G1510\"* that|strong=\"G3739\"* great|strong=\"G3173\"* power|strong=\"G1411\"* of|strong=\"G2316\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 11, + "text": "They|strong=\"G1161\"* listened to|strong=\"G1161\"* him|strong=\"G3588\"* because|strong=\"G1223\"* for|strong=\"G1223\"* a|strong=\"G1161\"* long|strong=\"G2425\"* time|strong=\"G5550\"* he|strong=\"G1161\"* had|strong=\"G3588\"* amazed|strong=\"G1839\"* them|strong=\"G3588\"* with|strong=\"G1223\"* his|strong=\"G1438\"* sorceries|strong=\"G3095\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* when|strong=\"G3753\"* they|strong=\"G2532\"* believed|strong=\"G4100\"* Philip|strong=\"G5376\"* preaching|strong=\"G2097\"* good|strong=\"G2097\"* news|strong=\"G2097\"* concerning|strong=\"G4012\"* God|strong=\"G2316\"*’s Kingdom and|strong=\"G2532\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G4012\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* baptized, both|strong=\"G2532\"* men|strong=\"G3588\"* and|strong=\"G2532\"* women|strong=\"G1135\"*." + }, + { + "verseNum": 13, + "text": "Simon|strong=\"G4613\"* himself|strong=\"G1839\"* also|strong=\"G2532\"* believed|strong=\"G4100\"*. Being|strong=\"G1510\"* baptized, he|strong=\"G2532\"* continued|strong=\"G4342\"* with|strong=\"G2532\"* Philip|strong=\"G5376\"*. Seeing|strong=\"G2334\"* signs|strong=\"G4592\"* and|strong=\"G2532\"* great|strong=\"G3173\"* miracles|strong=\"G1411\"* occurring, he|strong=\"G2532\"* was|strong=\"G1510\"* amazed|strong=\"G1839\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G1722\"* apostles who|strong=\"G3588\"* were|strong=\"G3588\"* at|strong=\"G1722\"* Jerusalem|strong=\"G2414\"* heard that|strong=\"G3754\"* Samaria|strong=\"G4540\"* had|strong=\"G2532\"* received|strong=\"G1209\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*, they|strong=\"G2532\"* sent|strong=\"G2316\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* John|strong=\"G2491\"* to|strong=\"G4314\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 15, + "text": "who|strong=\"G3748\"*, when|strong=\"G4336\"* they|strong=\"G3748\"* had|strong=\"G3748\"* come|strong=\"G2597\"* down|strong=\"G2597\"*, prayed|strong=\"G4336\"* for|strong=\"G4012\"* them|strong=\"G2983\"*, that|strong=\"G3704\"* they|strong=\"G3748\"* might receive|strong=\"G2983\"* the|strong=\"G2983\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*;" + }, + { + "verseNum": 16, + "text": "for|strong=\"G1063\"* as|strong=\"G1519\"* yet|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G2424\"* fallen|strong=\"G1968\"* on|strong=\"G1909\"* none|strong=\"G3762\"* of|strong=\"G3686\"* them|strong=\"G3588\"*. They|strong=\"G1161\"* had|strong=\"G2424\"* only|strong=\"G3440\"* been|strong=\"G1510\"* baptized in|strong=\"G1519\"* the|strong=\"G1519\"* name|strong=\"G3686\"* of|strong=\"G3686\"* Christ|strong=\"G2962\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"G2532\"* they|strong=\"G2532\"* laid|strong=\"G2007\"* their|strong=\"G1438\"* hands|strong=\"G5495\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* received|strong=\"G2983\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* Simon|strong=\"G4613\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* the|strong=\"G1161\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* was|strong=\"G3588\"* given|strong=\"G1325\"* through|strong=\"G1223\"* the|strong=\"G1161\"* laying|strong=\"G1936\"* on|strong=\"G5495\"* of|strong=\"G4151\"* the|strong=\"G1161\"* apostles’ hands|strong=\"G5495\"*, he|strong=\"G1161\"* offered|strong=\"G4374\"* them|strong=\"G3588\"* money|strong=\"G5536\"*," + }, + { + "verseNum": 19, + "text": "saying|strong=\"G3004\"*, “Give|strong=\"G1325\"* me|strong=\"G1325\"* also|strong=\"G2504\"* this|strong=\"G3778\"* power|strong=\"G1849\"*, that|strong=\"G2443\"* whomever|strong=\"G3739\"* I|strong=\"G3739\"* lay|strong=\"G2007\"* my|strong=\"G1325\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* may|strong=\"G2443\"* receive|strong=\"G2983\"* the|strong=\"G3588\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*.”" + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “May|strong=\"G2316\"* your|strong=\"G1223\"* silver perish with|strong=\"G4862\"* you|strong=\"G4771\"*, because|strong=\"G3754\"* you|strong=\"G4771\"* thought|strong=\"G3543\"* you|strong=\"G4771\"* could|strong=\"G3588\"* obtain|strong=\"G2932\"* the|strong=\"G1519\"* gift|strong=\"G1431\"* of|strong=\"G1223\"* God|strong=\"G2316\"* with|strong=\"G4862\"* money|strong=\"G5536\"*!" + }, + { + "verseNum": 21, + "text": "You|strong=\"G4771\"* have|strong=\"G1510\"* neither|strong=\"G3761\"* part|strong=\"G3310\"* nor|strong=\"G3761\"* lot|strong=\"G2819\"* in|strong=\"G1722\"* this|strong=\"G3778\"* matter|strong=\"G3056\"*, for|strong=\"G1063\"* your|strong=\"G1722\"* heart|strong=\"G2588\"* isn’t|strong=\"G3588\"* right|strong=\"G2117\"* before|strong=\"G1722\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 22, + "text": "Repent|strong=\"G3340\"* therefore|strong=\"G3767\"* of|strong=\"G2532\"* this|strong=\"G3778\"*, your|strong=\"G2962\"* wickedness|strong=\"G2549\"*, and|strong=\"G2532\"* ask|strong=\"G1189\"* God|strong=\"G2532\"* if|strong=\"G1487\"* perhaps the|strong=\"G2532\"* thought|strong=\"G1963\"* of|strong=\"G2532\"* your|strong=\"G2962\"* heart|strong=\"G2588\"* may|strong=\"G2532\"* be|strong=\"G2532\"* forgiven you|strong=\"G4771\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"G1063\"* I|strong=\"G2532\"* see|strong=\"G3708\"* that|strong=\"G2532\"* you|strong=\"G4771\"* are|strong=\"G1510\"* in|strong=\"G1519\"* the|strong=\"G2532\"* poison of|strong=\"G2532\"* bitterness|strong=\"G4088\"* and|strong=\"G2532\"* in|strong=\"G1519\"* the|strong=\"G2532\"* bondage|strong=\"G4886\"* of|strong=\"G2532\"* iniquity.”" + }, + { + "verseNum": 24, + "text": "Simon|strong=\"G4613\"* answered|strong=\"G3004\"*, “Pray|strong=\"G1189\"* for|strong=\"G5228\"* me|strong=\"G1473\"* to|strong=\"G4314\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"*, that|strong=\"G3739\"* none|strong=\"G3367\"* of|strong=\"G2962\"* the|strong=\"G1161\"* things|strong=\"G3588\"* which|strong=\"G3739\"* you|strong=\"G5210\"* have|strong=\"G1473\"* spoken|strong=\"G3004\"* happen|strong=\"G1904\"* to|strong=\"G4314\"* me|strong=\"G1473\"*.”" + }, + { + "verseNum": 25, + "text": "They|strong=\"G2532\"* therefore|strong=\"G3767\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* testified|strong=\"G1263\"* and|strong=\"G2532\"* spoken|strong=\"G2980\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, returned|strong=\"G5290\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*, and|strong=\"G2532\"* preached|strong=\"G2097\"* the|strong=\"G2532\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* to|strong=\"G1519\"* many|strong=\"G4183\"* villages|strong=\"G2968\"* of|strong=\"G3056\"* the|strong=\"G2532\"* Samaritans|strong=\"G4541\"*." + }, + { + "verseNum": 26, + "text": "Then|strong=\"G2532\"* an|strong=\"G2532\"* angel|strong=\"G2597\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* spoke|strong=\"G2980\"* to|strong=\"G1519\"* Philip|strong=\"G5376\"*, saying|strong=\"G3004\"*, “Arise, and|strong=\"G2532\"* go|strong=\"G4198\"* toward|strong=\"G1519\"* the|strong=\"G2532\"* south|strong=\"G3314\"* to|strong=\"G1519\"* the|strong=\"G2532\"* way|strong=\"G3598\"* that|strong=\"G3588\"* goes|strong=\"G4198\"* down|strong=\"G2597\"* from|strong=\"G2597\"* Jerusalem|strong=\"G2419\"* to|strong=\"G1519\"* Gaza|strong=\"G1048\"*. This|strong=\"G3778\"* is|strong=\"G1510\"* a|strong=\"G2532\"* desert|strong=\"G2048\"*.”" + }, + { + "verseNum": 27, + "text": "He|strong=\"G2532\"* arose and|strong=\"G2532\"* went|strong=\"G4198\"*; and|strong=\"G2532\"* behold|strong=\"G2400\"*, there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* man|strong=\"G3956\"* of|strong=\"G2532\"* Ethiopia, a|strong=\"G2532\"* eunuch|strong=\"G2135\"* of|strong=\"G2532\"* great|strong=\"G3956\"* authority|strong=\"G1413\"* under|strong=\"G1909\"* Candace|strong=\"G2582\"*, queen of|strong=\"G2532\"* the|strong=\"G2532\"* Ethiopians, who|strong=\"G3739\"* was|strong=\"G1510\"* over|strong=\"G1909\"* all|strong=\"G3956\"* her|strong=\"G1519\"* treasure|strong=\"G1047\"*, who|strong=\"G3739\"* had|strong=\"G2532\"* come|strong=\"G2064\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"* to|strong=\"G1519\"* worship|strong=\"G4352\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"G2532\"* was|strong=\"G1510\"* returning|strong=\"G5290\"* and|strong=\"G2532\"* sitting|strong=\"G2521\"* in|strong=\"G1909\"* his|strong=\"G1909\"* chariot, and|strong=\"G2532\"* was|strong=\"G1510\"* reading the|strong=\"G2532\"* prophet|strong=\"G4396\"* Isaiah|strong=\"G2268\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"G2532\"* Spirit|strong=\"G4151\"* said|strong=\"G3004\"* to|strong=\"G2532\"* Philip|strong=\"G5376\"*, “Go|strong=\"G4151\"* near|strong=\"G4334\"*, and|strong=\"G2532\"* join|strong=\"G2853\"* yourself to|strong=\"G2532\"* this|strong=\"G3778\"* chariot.”" + }, + { + "verseNum": 30, + "text": "Philip|strong=\"G5376\"* ran|strong=\"G4370\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* heard|strong=\"G1097\"* him|strong=\"G3588\"* reading Isaiah|strong=\"G2268\"* the|strong=\"G2532\"* prophet|strong=\"G4396\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Do|strong=\"G2532\"* you|strong=\"G3739\"* understand|strong=\"G1097\"* what|strong=\"G3739\"* you|strong=\"G3739\"* are|strong=\"G3588\"* reading?”" + }, + { + "verseNum": 31, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"*, “How|strong=\"G4459\"* can|strong=\"G1410\"* I|strong=\"G1473\"*, unless|strong=\"G1437\"* someone|strong=\"G5100\"* explains it|strong=\"G1161\"* to|strong=\"G3004\"* me|strong=\"G1473\"*?” He|strong=\"G1161\"* begged|strong=\"G3870\"* Philip|strong=\"G5376\"* to|strong=\"G3004\"* come up|strong=\"G3361\"* and|strong=\"G1161\"* sit|strong=\"G2523\"* with|strong=\"G4862\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 32, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* passage|strong=\"G4042\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Scripture|strong=\"G1124\"* which|strong=\"G3739\"* he|strong=\"G2532\"* was|strong=\"G1510\"* reading was|strong=\"G1510\"* this|strong=\"G3778\"*," + }, + { + "verseNum": 33, + "text": "In|strong=\"G1722\"* his|strong=\"G1722\"* humiliation|strong=\"G5014\"*, his|strong=\"G1722\"* judgment|strong=\"G2920\"* was|strong=\"G3588\"* taken away." + }, + { + "verseNum": 34, + "text": "The|strong=\"G1161\"* eunuch|strong=\"G2135\"* answered|strong=\"G3004\"* Philip|strong=\"G5376\"*, “Who|strong=\"G5101\"* is|strong=\"G3588\"* the|strong=\"G1161\"* prophet|strong=\"G4396\"* talking|strong=\"G3004\"* about|strong=\"G4012\"*? About|strong=\"G4012\"* himself|strong=\"G1438\"*, or|strong=\"G2228\"* about|strong=\"G4012\"* someone|strong=\"G5100\"* else|strong=\"G2228\"*?”" + }, + { + "verseNum": 35, + "text": "Philip|strong=\"G5376\"* opened his|strong=\"G2532\"* mouth|strong=\"G4750\"*, and|strong=\"G2532\"* beginning from|strong=\"G2532\"* this|strong=\"G3778\"* Scripture|strong=\"G1124\"*, preached|strong=\"G2097\"* to|strong=\"G2532\"* him|strong=\"G3588\"* about|strong=\"G2424\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 36, + "text": "As|strong=\"G5613\"* they|strong=\"G2532\"* went|strong=\"G4198\"* on|strong=\"G1909\"* the|strong=\"G2532\"* way|strong=\"G3598\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G2532\"* some|strong=\"G5100\"* water|strong=\"G5204\"*; and|strong=\"G2532\"* the|strong=\"G2532\"* eunuch|strong=\"G2135\"* said|strong=\"G5346\"*, “Behold|strong=\"G2400\"*, here|strong=\"G2400\"* is|strong=\"G3588\"* water|strong=\"G5204\"*. What|strong=\"G5101\"* is|strong=\"G3588\"* keeping me|strong=\"G1473\"* from|strong=\"G2064\"* being|strong=\"G2532\"* baptized?”" + }, + { + "verseNum": 37, + "text": "+ 8:37 TR adds Philip said, “If you believe with all your heart, you may.” He answered, “I believe that Jesus Christ is the Son of God.”*" + }, + { + "verseNum": 38, + "text": "He|strong=\"G2532\"* commanded|strong=\"G2753\"* the|strong=\"G2532\"* chariot to|strong=\"G1519\"* stand|strong=\"G2476\"* still|strong=\"G2476\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* both|strong=\"G2532\"* went|strong=\"G2597\"* down|strong=\"G2597\"* into|strong=\"G1519\"* the|strong=\"G2532\"* water|strong=\"G5204\"*, both|strong=\"G2532\"* Philip|strong=\"G5376\"* and|strong=\"G2532\"* the|strong=\"G2532\"* eunuch|strong=\"G2135\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* baptized him|strong=\"G3588\"*." + }, + { + "verseNum": 39, + "text": "When|strong=\"G3753\"* they|strong=\"G2532\"* came|strong=\"G2532\"* up|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* water|strong=\"G5204\"*, the|strong=\"G2532\"* Spirit|strong=\"G4151\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* caught|strong=\"G2962\"* Philip|strong=\"G5376\"* away|strong=\"G4198\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* eunuch|strong=\"G2135\"* didn’t|strong=\"G3588\"* see|strong=\"G3708\"* him|strong=\"G3588\"* any|strong=\"G3756\"* more|strong=\"G3765\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* went|strong=\"G4198\"* on|strong=\"G1537\"* his|strong=\"G3708\"* way|strong=\"G3598\"* rejoicing|strong=\"G5463\"*." + }, + { + "verseNum": 40, + "text": "But|strong=\"G1161\"* Philip|strong=\"G5376\"* was|strong=\"G3588\"* found|strong=\"G2147\"* at|strong=\"G1519\"* Azotus. Passing|strong=\"G1330\"* through|strong=\"G1330\"*, he|strong=\"G2532\"* preached|strong=\"G2097\"* the|strong=\"G2532\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* to|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G2532\"* cities|strong=\"G4172\"* until|strong=\"G2193\"* he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Caesarea|strong=\"G2542\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"G1161\"* Saul|strong=\"G4569\"*, still|strong=\"G2089\"* breathing|strong=\"G1709\"* threats and|strong=\"G2532\"* slaughter|strong=\"G5408\"* against|strong=\"G1519\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, went|strong=\"G4334\"* to|strong=\"G1519\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest" + }, + { + "verseNum": 2, + "text": "and|strong=\"G2532\"* asked for|strong=\"G1519\"* letters|strong=\"G1992\"* from|strong=\"G3844\"* him|strong=\"G3588\"* to|strong=\"G1519\"* the|strong=\"G2532\"* synagogues|strong=\"G4864\"* of|strong=\"G2532\"* Damascus|strong=\"G1154\"*, that|strong=\"G3588\"* if|strong=\"G1437\"* he|strong=\"G2532\"* found|strong=\"G2147\"* any|strong=\"G5100\"* who|strong=\"G3588\"* were|strong=\"G1510\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Way|strong=\"G3598\"*, whether|strong=\"G1437\"* men|strong=\"G5100\"* or|strong=\"G2532\"* women|strong=\"G1135\"*, he|strong=\"G2532\"* might|strong=\"G2532\"* bring|strong=\"G2532\"* them|strong=\"G3588\"* bound|strong=\"G1210\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 3, + "text": "As|strong=\"G1722\"* he|strong=\"G1161\"* traveled, he|strong=\"G1161\"* got|strong=\"G1096\"* close|strong=\"G1448\"* to|strong=\"G1722\"* Damascus|strong=\"G1154\"*, and|strong=\"G1161\"* suddenly|strong=\"G1810\"* a|strong=\"G1096\"* light|strong=\"G5457\"* from|strong=\"G1537\"* the|strong=\"G1722\"* sky|strong=\"G3772\"* shone|strong=\"G4015\"* around|strong=\"G4015\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"G2532\"* fell|strong=\"G4098\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, and|strong=\"G2532\"* heard a|strong=\"G2532\"* voice|strong=\"G5456\"* saying|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Saul|strong=\"G4549\"\\+w*, \\+w Saul|strong=\"G4549\"\\+w*, \\+w why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w persecute|strong=\"G1377\"\\+w* \\+w me|strong=\"G1473\"\\+w*?”*" + }, + { + "verseNum": 5, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"*, “Who|strong=\"G3739\"* are|strong=\"G1510\"* you|strong=\"G4771\"*, Lord|strong=\"G2962\"*?”" + }, + { + "verseNum": 6, + "text": "\\+w But|strong=\"G2532\"\\+w**+ 9:6 TR omits “But” * \\+w rise|strong=\"G1163\"\\+w* \\+w up|strong=\"G1210\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w city|strong=\"G4172\"\\+w*, \\+w then|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w told|strong=\"G2980\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w do|strong=\"G4160\"\\+w*.”*" + }, + { + "verseNum": 7, + "text": "The|strong=\"G1161\"* men|strong=\"G3588\"* who|strong=\"G3588\"* traveled|strong=\"G4922\"* with|strong=\"G3588\"* him|strong=\"G3588\"* stood|strong=\"G2476\"* speechless|strong=\"G1769\"*, hearing the|strong=\"G1161\"* sound|strong=\"G5456\"*, but|strong=\"G1161\"* seeing|strong=\"G2334\"* no|strong=\"G3367\"* one|strong=\"G3367\"*." + }, + { + "verseNum": 8, + "text": "Saul|strong=\"G4569\"* arose|strong=\"G1453\"* from|strong=\"G3588\"* the|strong=\"G1519\"* ground|strong=\"G1093\"*, and|strong=\"G1161\"* when|strong=\"G1161\"* his|strong=\"G1519\"* eyes|strong=\"G3788\"* were|strong=\"G3588\"* opened, he|strong=\"G1161\"* saw no|strong=\"G3762\"* one|strong=\"G3762\"*. They|strong=\"G1161\"* led|strong=\"G5496\"* him|strong=\"G3588\"* by|strong=\"G1519\"* the|strong=\"G1519\"* hand|strong=\"G1161\"* and|strong=\"G1161\"* brought|strong=\"G1521\"* him|strong=\"G3588\"* into|strong=\"G1519\"* Damascus|strong=\"G1154\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* was|strong=\"G1510\"* without|strong=\"G3361\"* sight for|strong=\"G2532\"* three|strong=\"G5140\"* days|strong=\"G2250\"*, and|strong=\"G2532\"* neither|strong=\"G3761\"* ate|strong=\"G2068\"* nor|strong=\"G3761\"* drank|strong=\"G4095\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"G1161\"* there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* disciple|strong=\"G3101\"* at|strong=\"G1722\"* Damascus|strong=\"G1154\"* named|strong=\"G3686\"* Ananias. The|strong=\"G1722\"* Lord|strong=\"G2962\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"* in|strong=\"G1722\"* a|strong=\"G2532\"* vision|strong=\"G3705\"*, “Ananias!”*" + }, + { + "verseNum": 11, + "text": "The|strong=\"G1722\"* Lord|strong=\"G2962\"* said|strong=\"G1161\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Arise \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w street|strong=\"G4505\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w Straight|strong=\"G2117\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w inquire|strong=\"G2212\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Judah|strong=\"G2455\"\\+w**+ 9:11 or, Judas* \\+w for|strong=\"G1063\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w named|strong=\"G3686\"\\+w* \\+w Saul|strong=\"G4569\"\\+w*, \\+w a|strong=\"G2532\"\\+w* man \\+w of|strong=\"G2532\"\\+w* \\+w Tarsus|strong=\"G5018\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w praying|strong=\"G4336\"\\+w*, *" + }, + { + "verseNum": 12, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w vision|strong=\"G3705\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G3708\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w a|strong=\"G2532\"\\+w* man \\+w named|strong=\"G3686\"\\+w* Ananias \\+w coming|strong=\"G1525\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w laying|strong=\"G2007\"\\+w* \\+w his|strong=\"G2007\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w him|strong=\"G3708\"\\+w*, \\+w that|strong=\"G3704\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w might|strong=\"G2532\"\\+w* receive \\+w his|strong=\"G2007\"\\+w* \\+w sight|strong=\"G3705\"\\+w*.”*" + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* Ananias answered, “Lord|strong=\"G2962\"*, I|strong=\"G1161\"* have|strong=\"G3745\"* heard from|strong=\"G3588\"* many|strong=\"G4183\"* about|strong=\"G4012\"* this|strong=\"G3778\"* man|strong=\"G3778\"*, how|strong=\"G3745\"* much|strong=\"G4183\"* evil|strong=\"G2556\"* he|strong=\"G1161\"* did|strong=\"G4160\"* to|strong=\"G1722\"* your|strong=\"G2962\"* saints at|strong=\"G1722\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 14, + "text": "Here|strong=\"G5602\"* he|strong=\"G2532\"* has|strong=\"G2192\"* authority|strong=\"G1849\"* from|strong=\"G3844\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests to|strong=\"G2532\"* bind|strong=\"G1210\"* all|strong=\"G3956\"* who|strong=\"G3588\"* call|strong=\"G1941\"* on|strong=\"G1941\"* your|strong=\"G2192\"* name|strong=\"G3686\"*.”" + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “\\+w Go|strong=\"G4198\"\\+w* \\+w your|strong=\"G2962\"\\+w* \\+w way|strong=\"G4198\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w chosen|strong=\"G1589\"\\+w* \\+w vessel|strong=\"G4632\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w bear|strong=\"G2532\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w before|strong=\"G1799\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w kings|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Israel|strong=\"G2474\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w show|strong=\"G5263\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w how|strong=\"G3745\"\\+w* \\+w many|strong=\"G3745\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w suffer|strong=\"G3958\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w name|strong=\"G3686\"\\+w*’s \\+w sake|strong=\"G5228\"\\+w*.”*" + }, + { + "verseNum": 17, + "text": "Ananias departed and|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G1722\"* house|strong=\"G3614\"*. Laying|strong=\"G2007\"* his|strong=\"G2007\"* hands|strong=\"G5495\"* on|strong=\"G1909\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “Brother Saul|strong=\"G4549\"*, the|strong=\"G1722\"* Lord|strong=\"G2962\"*, who|strong=\"G3739\"* appeared|strong=\"G3708\"* to|strong=\"G1519\"* you|strong=\"G4771\"* on|strong=\"G1909\"* the|strong=\"G1722\"* road|strong=\"G3598\"* by|strong=\"G1722\"* which|strong=\"G3739\"* you|strong=\"G4771\"* came|strong=\"G2064\"*, has|strong=\"G2962\"* sent|strong=\"G2532\"* me|strong=\"G1473\"* that|strong=\"G3739\"* you|strong=\"G4771\"* may|strong=\"G2532\"* receive your|strong=\"G2962\"* sight|strong=\"G3588\"* and|strong=\"G2532\"* be|strong=\"G2532\"* filled|strong=\"G4130\"* with|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*.”" + }, + { + "verseNum": 18, + "text": "Immediately|strong=\"G2112\"* something|strong=\"G3788\"* like|strong=\"G5613\"* scales|strong=\"G3013\"* fell|strong=\"G2532\"* from|strong=\"G2532\"* his|strong=\"G2532\"* eyes|strong=\"G3788\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* received|strong=\"G3788\"* his|strong=\"G2532\"* sight|strong=\"G3788\"*. He|strong=\"G2532\"* arose and|strong=\"G2532\"* was|strong=\"G3588\"* baptized." + }, + { + "verseNum": 19, + "text": "He|strong=\"G2532\"* took|strong=\"G2983\"* food|strong=\"G5160\"* and|strong=\"G2532\"* was|strong=\"G1096\"* strengthened|strong=\"G1765\"*." + }, + { + "verseNum": 20, + "text": "Immediately|strong=\"G2112\"* in|strong=\"G1722\"* the|strong=\"G1722\"* synagogues|strong=\"G4864\"* he|strong=\"G2532\"* proclaimed|strong=\"G2784\"* the|strong=\"G1722\"* Christ, that|strong=\"G3754\"* he|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 21, + "text": "All|strong=\"G3956\"* who|strong=\"G3588\"* heard him|strong=\"G3588\"* were|strong=\"G1510\"* amazed|strong=\"G1839\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Isn’t|strong=\"G3588\"* this|strong=\"G3778\"* he|strong=\"G2532\"* who|strong=\"G3588\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"* made|strong=\"G3756\"* havoc of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* called|strong=\"G3004\"* on|strong=\"G1909\"* this|strong=\"G3778\"* name|strong=\"G3686\"*? And|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G2064\"* here|strong=\"G5602\"* intending to|strong=\"G1519\"* bring|strong=\"G2532\"* them|strong=\"G3588\"* bound|strong=\"G1210\"* before|strong=\"G1909\"* the|strong=\"G1722\"* chief|strong=\"G2532\"* priests!”" + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* Saul|strong=\"G4569\"* increased|strong=\"G1743\"* more|strong=\"G3123\"* in|strong=\"G1722\"* strength|strong=\"G1743\"*, and|strong=\"G2532\"* confounded|strong=\"G4797\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* who|strong=\"G3588\"* lived|strong=\"G2730\"* at|strong=\"G1722\"* Damascus|strong=\"G1154\"*, proving|strong=\"G4822\"* that|strong=\"G3754\"* this|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G1722\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"G1161\"* many|strong=\"G2425\"* days|strong=\"G2250\"* were|strong=\"G3588\"* fulfilled|strong=\"G4137\"*, the|strong=\"G1161\"* Jews|strong=\"G2453\"* conspired together|strong=\"G4823\"* to|strong=\"G1161\"* kill him|strong=\"G3588\"*," + }, + { + "verseNum": 24, + "text": "but|strong=\"G1161\"* their|strong=\"G2532\"* plot|strong=\"G1917\"* became|strong=\"G1917\"* known|strong=\"G1097\"* to|strong=\"G2532\"* Saul|strong=\"G4569\"*. They|strong=\"G2532\"* watched|strong=\"G3906\"* the|strong=\"G2532\"* gates|strong=\"G4439\"* both|strong=\"G2532\"* day|strong=\"G2250\"* and|strong=\"G2532\"* night|strong=\"G3571\"* that|strong=\"G3588\"* they|strong=\"G2532\"* might|strong=\"G2532\"* kill him|strong=\"G3588\"*," + }, + { + "verseNum": 25, + "text": "but|strong=\"G1161\"* his|strong=\"G1223\"* disciples|strong=\"G3101\"* took|strong=\"G2983\"* him|strong=\"G3588\"* by|strong=\"G1223\"* night|strong=\"G3571\"* and|strong=\"G1161\"* let|strong=\"G5465\"* him|strong=\"G3588\"* down|strong=\"G5465\"* through|strong=\"G1223\"* the|strong=\"G1722\"* wall|strong=\"G5038\"*, lowering|strong=\"G2524\"* him|strong=\"G3588\"* in|strong=\"G1722\"* a|strong=\"G1722\"* basket|strong=\"G4711\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"G1161\"* Saul had|strong=\"G2532\"* come|strong=\"G3854\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*, he|strong=\"G2532\"* tried|strong=\"G3985\"* to|strong=\"G1519\"* join|strong=\"G2853\"* himself|strong=\"G2853\"* to|strong=\"G1519\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*; but|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G1510\"* all|strong=\"G3956\"* afraid|strong=\"G5399\"* of|strong=\"G2532\"* him|strong=\"G3588\"*, not|strong=\"G3361\"* believing|strong=\"G4100\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* disciple|strong=\"G3101\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"G1161\"* Barnabas took|strong=\"G1949\"* him|strong=\"G3588\"* and|strong=\"G2532\"* brought|strong=\"G1161\"* him|strong=\"G3588\"* to|strong=\"G4314\"* the|strong=\"G1722\"* apostles, and|strong=\"G2532\"* declared|strong=\"G1334\"* to|strong=\"G4314\"* them|strong=\"G3588\"* how|strong=\"G4459\"* he|strong=\"G2532\"* had|strong=\"G2424\"* seen|strong=\"G3708\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* on|strong=\"G1722\"* the|strong=\"G1722\"* way|strong=\"G3598\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2424\"* spoken|strong=\"G2980\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* how|strong=\"G4459\"* at|strong=\"G1722\"* Damascus|strong=\"G1154\"* he|strong=\"G2532\"* had|strong=\"G2424\"* preached|strong=\"G2980\"* boldly|strong=\"G3955\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2532\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"G2532\"* was|strong=\"G1510\"* with|strong=\"G3326\"* them|strong=\"G3588\"* entering|strong=\"G1531\"* into|strong=\"G1519\"*+ 9:28 TR and NU add “and going out” * Jerusalem|strong=\"G2419\"*," + }, + { + "verseNum": 29, + "text": "preaching|strong=\"G2980\"* boldly in|strong=\"G2532\"* the|strong=\"G2532\"* name of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"* Jesus|strong=\"G2532\"*.+ 9:29 TR and NU omit “Jesus” and reverse the order of verses 28 & 29.* He|strong=\"G2532\"* spoke|strong=\"G2980\"* and|strong=\"G2532\"* disputed|strong=\"G4802\"* against|strong=\"G4314\"* the|strong=\"G2532\"* Hellenists,+ 9:29 The Hellenists were Hebrews who used Greek language and culture.* but|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G3588\"* seeking to|strong=\"G4314\"* kill him|strong=\"G3588\"*." + }, + { + "verseNum": 30, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* brothers+ 9:30 The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.” * knew|strong=\"G1921\"* it|strong=\"G2532\"*, they|strong=\"G2532\"* brought|strong=\"G2609\"* him|strong=\"G3588\"* down|strong=\"G2609\"* to|strong=\"G1519\"* Caesarea|strong=\"G2542\"* and|strong=\"G2532\"* sent|strong=\"G1821\"* him|strong=\"G3588\"* off|strong=\"G1821\"* to|strong=\"G1519\"* Tarsus|strong=\"G5019\"*." + }, + { + "verseNum": 31, + "text": "So|strong=\"G3767\"* the|strong=\"G2532\"* assemblies|strong=\"G1577\"* throughout|strong=\"G2596\"* all|strong=\"G3650\"* Judea|strong=\"G2449\"*, Galilee|strong=\"G1056\"*, and|strong=\"G2532\"* Samaria|strong=\"G4540\"* had|strong=\"G2192\"* peace|strong=\"G1515\"* and|strong=\"G2532\"* were|strong=\"G3588\"* built|strong=\"G3618\"* up|strong=\"G3618\"*. They|strong=\"G2532\"* were|strong=\"G3588\"* multiplied|strong=\"G4129\"*, walking|strong=\"G4198\"* in|strong=\"G2596\"* the|strong=\"G2532\"* fear|strong=\"G5401\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* in|strong=\"G2596\"* the|strong=\"G2532\"* comfort|strong=\"G3874\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 32, + "text": "As|strong=\"G1161\"* Peter|strong=\"G4074\"* went|strong=\"G1330\"* throughout|strong=\"G1223\"* all|strong=\"G3956\"* those|strong=\"G3588\"* parts, he|strong=\"G2532\"* came|strong=\"G1096\"* down|strong=\"G2718\"* also|strong=\"G2532\"* to|strong=\"G4314\"* the|strong=\"G2532\"* saints who|strong=\"G3588\"* lived|strong=\"G2730\"* at|strong=\"G4314\"* Lydda|strong=\"G3069\"*." + }, + { + "verseNum": 33, + "text": "There|strong=\"G1563\"* he|strong=\"G1161\"* found|strong=\"G2147\"* a|strong=\"G1510\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* named|strong=\"G3686\"* Aeneas, who|strong=\"G3739\"* had|strong=\"G1510\"* been|strong=\"G1510\"* bedridden|strong=\"G2621\"* for|strong=\"G1909\"* eight|strong=\"G3638\"* years|strong=\"G2094\"* because|strong=\"G1537\"* he|strong=\"G1161\"* was|strong=\"G1510\"* paralyzed|strong=\"G3886\"*." + }, + { + "verseNum": 34, + "text": "Peter|strong=\"G4074\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Aeneas, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* heals|strong=\"G2390\"* you|strong=\"G4771\"*. Get|strong=\"G2532\"* up|strong=\"G2532\"* and|strong=\"G2532\"* make|strong=\"G4766\"* your|strong=\"G2532\"* bed|strong=\"G4766\"*!” Immediately|strong=\"G2112\"* he|strong=\"G2532\"* arose." + }, + { + "verseNum": 35, + "text": "All|strong=\"G3956\"* who|strong=\"G3588\"* lived|strong=\"G2730\"* at|strong=\"G1909\"* Lydda|strong=\"G3069\"* and|strong=\"G2532\"* in|strong=\"G1909\"* Sharon|strong=\"G4565\"* saw|strong=\"G3708\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* turned|strong=\"G1994\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 36, + "text": "Now|strong=\"G1161\"* there|strong=\"G2532\"* was|strong=\"G1510\"* at|strong=\"G1722\"* Joppa|strong=\"G2445\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* disciple|strong=\"G3102\"* named|strong=\"G3686\"* Tabitha|strong=\"G5000\"*, which|strong=\"G3739\"* when|strong=\"G1161\"* translated|strong=\"G1329\"* means|strong=\"G1510\"* Dorcas|strong=\"G1393\"*.+ 9:36 “Dorcas” is Greek for “Gazelle.”* This|strong=\"G3778\"* woman|strong=\"G3778\"* was|strong=\"G1510\"* full|strong=\"G4134\"* of|strong=\"G2532\"* good|strong=\"G2532\"* works|strong=\"G2041\"* and|strong=\"G2532\"* acts|strong=\"G4160\"* of|strong=\"G2532\"* mercy which|strong=\"G3739\"* she|strong=\"G2532\"* did|strong=\"G4160\"*." + }, + { + "verseNum": 37, + "text": "In|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"*, she|strong=\"G1161\"* became|strong=\"G1096\"* sick and|strong=\"G1161\"* died|strong=\"G3588\"*. When|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G3588\"* washed|strong=\"G3068\"* her|strong=\"G1438\"*, they|strong=\"G1161\"* laid|strong=\"G5087\"* her|strong=\"G1438\"* in|strong=\"G1722\"* an|strong=\"G1722\"* upper|strong=\"G5253\"* room|strong=\"G5253\"*." + }, + { + "verseNum": 38, + "text": "As|strong=\"G1722\"* Lydda|strong=\"G3069\"* was|strong=\"G1510\"* near|strong=\"G1451\"* Joppa|strong=\"G2445\"*, the|strong=\"G1722\"* disciples|strong=\"G3101\"*, hearing that|strong=\"G3754\"* Peter|strong=\"G4074\"* was|strong=\"G1510\"* there|strong=\"G1161\"*, sent two|strong=\"G1417\"* men|strong=\"G1417\"*+ 9:38 Reading from NU, TR; MT omits “two men”* to|strong=\"G4314\"* him|strong=\"G3588\"*, imploring|strong=\"G3870\"* him|strong=\"G3588\"* not|strong=\"G3361\"* to|strong=\"G4314\"* delay|strong=\"G3635\"* in|strong=\"G1722\"* coming|strong=\"G1330\"* to|strong=\"G4314\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 39, + "text": "Peter|strong=\"G4074\"* got up|strong=\"G1519\"* and|strong=\"G2532\"* went|strong=\"G2532\"* with|strong=\"G3326\"* them|strong=\"G3588\"*. When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G3854\"*, they|strong=\"G2532\"* brought|strong=\"G1161\"* him|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G2532\"* upper|strong=\"G5253\"* room|strong=\"G5253\"*. All|strong=\"G3956\"* the|strong=\"G2532\"* widows|strong=\"G5503\"* stood|strong=\"G3936\"* by|strong=\"G3936\"* him|strong=\"G3588\"* weeping|strong=\"G2799\"*, and|strong=\"G2532\"* showing|strong=\"G1925\"* the|strong=\"G2532\"* tunics|strong=\"G5509\"* and|strong=\"G2532\"* other|strong=\"G1161\"* garments|strong=\"G2440\"* which|strong=\"G3739\"* Dorcas|strong=\"G1393\"* had|strong=\"G2532\"* made|strong=\"G4160\"* while|strong=\"G1161\"* she|strong=\"G2532\"* was|strong=\"G1510\"* with|strong=\"G3326\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 40, + "text": "Peter|strong=\"G4074\"* sent|strong=\"G1544\"* them|strong=\"G3588\"* all|strong=\"G3956\"* out|strong=\"G1544\"*, and|strong=\"G2532\"* knelt|strong=\"G1119\"* down|strong=\"G5087\"* and|strong=\"G2532\"* prayed|strong=\"G4336\"*. Turning|strong=\"G1994\"* to|strong=\"G4314\"* the|strong=\"G2532\"* body|strong=\"G4983\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “Tabitha|strong=\"G5000\"*, get|strong=\"G2532\"* up|strong=\"G2532\"*!” She|strong=\"G2532\"* opened her|strong=\"G3708\"* eyes|strong=\"G3788\"*, and|strong=\"G2532\"* when|strong=\"G1161\"* she|strong=\"G2532\"* saw|strong=\"G3708\"* Peter|strong=\"G4074\"*, she|strong=\"G2532\"* sat|strong=\"G4074\"* up|strong=\"G2532\"*." + }, + { + "verseNum": 41, + "text": "He|strong=\"G2532\"* gave|strong=\"G1325\"* her|strong=\"G1325\"* his|strong=\"G1438\"* hand|strong=\"G5495\"* and|strong=\"G2532\"* raised|strong=\"G2532\"* her|strong=\"G1325\"* up|strong=\"G1325\"*. Calling|strong=\"G5455\"* the|strong=\"G2532\"* saints and|strong=\"G2532\"* widows|strong=\"G5503\"*, he|strong=\"G2532\"* presented|strong=\"G3936\"* her|strong=\"G1325\"* alive|strong=\"G2198\"*." + }, + { + "verseNum": 42, + "text": "This|strong=\"G3588\"* became|strong=\"G1096\"* known|strong=\"G1110\"* throughout|strong=\"G2596\"* all|strong=\"G3650\"* Joppa|strong=\"G2445\"*, and|strong=\"G2532\"* many|strong=\"G4183\"* believed|strong=\"G4100\"* in|strong=\"G1909\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 43, + "text": "He|strong=\"G1161\"* stayed|strong=\"G3306\"* many|strong=\"G2425\"* days|strong=\"G2250\"* in|strong=\"G1722\"* Joppa|strong=\"G2445\"* with|strong=\"G1722\"* a|strong=\"G1096\"* tanner|strong=\"G1038\"* named|strong=\"G4613\"* Simon|strong=\"G4613\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* there|strong=\"G1161\"* was|strong=\"G3588\"* a|strong=\"G1722\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* in|strong=\"G1722\"* Caesarea|strong=\"G2542\"*, Cornelius|strong=\"G2883\"* by|strong=\"G1722\"* name|strong=\"G3686\"*, a|strong=\"G1722\"* centurion|strong=\"G1543\"* of|strong=\"G1537\"* what|strong=\"G3588\"* was|strong=\"G3588\"* called|strong=\"G2564\"* the|strong=\"G1722\"* Italian|strong=\"G2483\"* Regiment," + }, + { + "verseNum": 2, + "text": "a|strong=\"G2532\"* devout|strong=\"G2152\"* man|strong=\"G3956\"*, and|strong=\"G2532\"* one|strong=\"G3956\"* who|strong=\"G3588\"* feared|strong=\"G5399\"* God|strong=\"G2316\"* with|strong=\"G4862\"* all|strong=\"G3956\"* his|strong=\"G3956\"* house|strong=\"G3624\"*, who|strong=\"G3588\"* gave|strong=\"G4160\"* gifts|strong=\"G1654\"* for|strong=\"G1223\"* the|strong=\"G2532\"* needy generously to|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, and|strong=\"G2532\"* always|strong=\"G3956\"* prayed|strong=\"G1189\"* to|strong=\"G2532\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 3, + "text": "At|strong=\"G1722\"* about|strong=\"G4012\"* the|strong=\"G1722\"* ninth|strong=\"G1766\"* hour|strong=\"G5610\"* of|strong=\"G4012\"* the|strong=\"G1722\"* day|strong=\"G2250\"*,+ 10:3 3:00 p.m.* he|strong=\"G2532\"* clearly|strong=\"G5320\"* saw|strong=\"G3708\"* in|strong=\"G1722\"* a|strong=\"G2532\"* vision|strong=\"G3705\"* an|strong=\"G2532\"* angel of|strong=\"G4012\"* God|strong=\"G2316\"* coming|strong=\"G2316\"* to|strong=\"G4314\"* him|strong=\"G3588\"* and|strong=\"G2532\"* saying|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Cornelius|strong=\"G2883\"*!”" + }, + { + "verseNum": 4, + "text": "He|strong=\"G2532\"*, fastening his|strong=\"G1519\"* eyes on|strong=\"G1519\"* him|strong=\"G3588\"* and|strong=\"G2532\"* being|strong=\"G1510\"* frightened|strong=\"G1719\"*, said|strong=\"G3004\"*, “What|strong=\"G5101\"* is|strong=\"G1510\"* it|strong=\"G2532\"*, Lord|strong=\"G2962\"*?”" + }, + { + "verseNum": 5, + "text": "Now|strong=\"G3568\"* send|strong=\"G3992\"* men|strong=\"G5100\"* to|strong=\"G1519\"* Joppa|strong=\"G2445\"*, and|strong=\"G2532\"* get|strong=\"G2532\"* Simon|strong=\"G4613\"*, who|strong=\"G3739\"* is|strong=\"G3739\"* also|strong=\"G2532\"* called|strong=\"G1941\"* Peter|strong=\"G4074\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"G3739\"* is|strong=\"G1510\"* staying|strong=\"G3579\"* with|strong=\"G3844\"* a|strong=\"G1510\"* tanner|strong=\"G1038\"* named|strong=\"G4613\"* Simon|strong=\"G4613\"*, whose|strong=\"G3739\"* house|strong=\"G3614\"* is|strong=\"G1510\"* by|strong=\"G3844\"* the|strong=\"G3739\"* seaside.+ 10:6 TR adds “This one will tell you what it is necessary for you to do.”*" + }, + { + "verseNum": 7, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* angel who|strong=\"G3588\"* spoke|strong=\"G2980\"* to|strong=\"G2532\"* him|strong=\"G3588\"* had|strong=\"G2532\"* departed, Cornelius|strong=\"G5455\"* called|strong=\"G5455\"* two|strong=\"G1417\"* of|strong=\"G2532\"* his|strong=\"G2532\"* household|strong=\"G3610\"* servants|strong=\"G3610\"* and|strong=\"G2532\"* a|strong=\"G5613\"* devout|strong=\"G2152\"* soldier|strong=\"G4757\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* waited|strong=\"G4342\"* on|strong=\"G1161\"* him|strong=\"G3588\"* continually|strong=\"G4342\"*." + }, + { + "verseNum": 8, + "text": "Having|strong=\"G2532\"* explained|strong=\"G1834\"* everything to|strong=\"G1519\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* sent|strong=\"G2532\"* them|strong=\"G3588\"* to|strong=\"G1519\"* Joppa|strong=\"G2445\"*." + }, + { + "verseNum": 9, + "text": "Now|strong=\"G1161\"* on|strong=\"G1909\"* the|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"* as|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G3588\"* on|strong=\"G1909\"* their|strong=\"G2532\"* journey|strong=\"G3596\"* and|strong=\"G2532\"* got close|strong=\"G1448\"* to|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, Peter|strong=\"G4074\"* went|strong=\"G2532\"* up|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G2532\"* housetop|strong=\"G1430\"* to|strong=\"G2532\"* pray|strong=\"G4336\"* at|strong=\"G1909\"* about|strong=\"G4012\"* noon|strong=\"G5610\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* became|strong=\"G1096\"* hungry|strong=\"G4361\"* and|strong=\"G2532\"* desired|strong=\"G2309\"* to|strong=\"G2532\"* eat|strong=\"G1089\"*, but|strong=\"G1161\"* while|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G1096\"* preparing, he|strong=\"G2532\"* fell|strong=\"G1096\"* into|strong=\"G1909\"* a|strong=\"G1096\"* trance|strong=\"G1611\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* saw|strong=\"G2334\"* heaven|strong=\"G3772\"* opened and|strong=\"G2532\"* a|strong=\"G5613\"* certain|strong=\"G5100\"* container|strong=\"G4632\"* descending|strong=\"G2597\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, like|strong=\"G5613\"* a|strong=\"G5613\"* great|strong=\"G3173\"* sheet|strong=\"G3607\"* let|strong=\"G2524\"* down|strong=\"G2597\"* by|strong=\"G1909\"* four|strong=\"G5064\"* corners on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*," + }, + { + "verseNum": 12, + "text": "in|strong=\"G1722\"* which|strong=\"G3739\"* were|strong=\"G3588\"* all|strong=\"G3956\"* kinds|strong=\"G3956\"* of|strong=\"G2532\"* four-footed|strong=\"G5074\"* animals|strong=\"G5074\"* of|strong=\"G2532\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, wild|strong=\"G2532\"* animals|strong=\"G5074\"*, reptiles|strong=\"G2062\"*, and|strong=\"G2532\"* birds|strong=\"G4071\"* of|strong=\"G2532\"* the|strong=\"G1722\"* sky|strong=\"G3772\"*." + }, + { + "verseNum": 13, + "text": "A|strong=\"G1096\"* voice|strong=\"G5456\"* came|strong=\"G1096\"* to|strong=\"G4314\"* him|strong=\"G2532\"*, “Rise, \\+w Peter|strong=\"G4074\"\\+w*, \\+w kill|strong=\"G2380\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w*!”*" + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* said|strong=\"G3004\"*, “Not|strong=\"G2532\"* so|strong=\"G2532\"*, Lord|strong=\"G2962\"*; for|strong=\"G3754\"* I|strong=\"G2532\"* have|strong=\"G2532\"* never|strong=\"G3763\"* eaten|strong=\"G5315\"* anything|strong=\"G3956\"* that|strong=\"G3754\"* is|strong=\"G3588\"* common|strong=\"G2839\"* or|strong=\"G2532\"* unclean|strong=\"G2839\"*.”" + }, + { + "verseNum": 15, + "text": "A|strong=\"G2532\"* voice|strong=\"G5456\"* came|strong=\"G2532\"* to|strong=\"G4314\"* him|strong=\"G3588\"* again|strong=\"G3825\"* the|strong=\"G2532\"* second|strong=\"G1208\"* time|strong=\"G1208\"*, “\\+w What|strong=\"G3739\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w cleansed|strong=\"G2511\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w must|strong=\"G3588\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w call|strong=\"G2532\"\\+w* \\+w unclean|strong=\"G2840\"\\+w*.”*" + }, + { + "verseNum": 16, + "text": "This|strong=\"G3778\"* was|strong=\"G1096\"* done|strong=\"G1096\"* three|strong=\"G5151\"* times|strong=\"G5151\"*, and|strong=\"G2532\"* immediately|strong=\"G2112\"* the|strong=\"G2532\"* thing|strong=\"G3778\"* was|strong=\"G1096\"* received up|strong=\"G1519\"* into|strong=\"G1519\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"G1161\"* while|strong=\"G1722\"* Peter|strong=\"G4074\"* was|strong=\"G1510\"* very|strong=\"G3588\"* perplexed|strong=\"G1280\"* in|strong=\"G1722\"* himself|strong=\"G1438\"* what|strong=\"G5101\"* the|strong=\"G1722\"* vision|strong=\"G3705\"* which|strong=\"G3739\"* he|strong=\"G1161\"* had|strong=\"G1510\"* seen|strong=\"G3708\"* might mean|strong=\"G1510\"*, behold|strong=\"G2400\"*, the|strong=\"G1722\"* men|strong=\"G3588\"* who|strong=\"G3739\"* were|strong=\"G1510\"* sent by|strong=\"G1722\"* Cornelius|strong=\"G2883\"*, having made|strong=\"G1161\"* inquiry for|strong=\"G1909\"* Simon|strong=\"G4613\"*’s house|strong=\"G3614\"*, stood|strong=\"G2186\"* before|strong=\"G1909\"* the|strong=\"G1722\"* gate|strong=\"G4440\"*," + }, + { + "verseNum": 18, + "text": "and|strong=\"G2532\"* called|strong=\"G5455\"* and|strong=\"G2532\"* asked|strong=\"G4441\"* whether|strong=\"G1487\"* Simon|strong=\"G4613\"*, who|strong=\"G3588\"* was|strong=\"G3588\"* also|strong=\"G2532\"* called|strong=\"G5455\"* Peter|strong=\"G4074\"*, was|strong=\"G3588\"* lodging|strong=\"G3579\"* there|strong=\"G2532\"*." + }, + { + "verseNum": 19, + "text": "While|strong=\"G1161\"* Peter|strong=\"G4074\"* was|strong=\"G3588\"* pondering the|strong=\"G1161\"* vision|strong=\"G3705\"*, the|strong=\"G1161\"* Spirit|strong=\"G4151\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Behold|strong=\"G2400\"*, three+ 10:19 Reading from TR and NU. MT omits “three”* men|strong=\"G3588\"* seek|strong=\"G2212\"* you|strong=\"G4771\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"G2532\"* arise, get|strong=\"G2532\"* down|strong=\"G2597\"*, and|strong=\"G2532\"* go|strong=\"G4198\"* with|strong=\"G4862\"* them|strong=\"G1438\"*, doubting|strong=\"G1252\"* nothing|strong=\"G3367\"*; for|strong=\"G3754\"* I|strong=\"G1473\"* have|strong=\"G2532\"* sent|strong=\"G2532\"* them|strong=\"G1438\"*.”" + }, + { + "verseNum": 21, + "text": "Peter|strong=\"G4074\"* went|strong=\"G2597\"* down|strong=\"G2597\"* to|strong=\"G4314\"* the|strong=\"G1161\"* men|strong=\"G3588\"*, and|strong=\"G1161\"* said|strong=\"G3004\"*, “Behold|strong=\"G2400\"*, I|strong=\"G1473\"* am|strong=\"G1510\"* he|strong=\"G1161\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* seek|strong=\"G2212\"*. Why|strong=\"G5101\"* have|strong=\"G1473\"* you|strong=\"G3739\"* come|strong=\"G2597\"*?”" + }, + { + "verseNum": 22, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"*, “Cornelius|strong=\"G2883\"*, a|strong=\"G2532\"* centurion|strong=\"G1543\"*, a|strong=\"G2532\"* righteous|strong=\"G1342\"* man|strong=\"G1342\"* and|strong=\"G2532\"* one|strong=\"G3588\"* who|strong=\"G3588\"* fears|strong=\"G5399\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* well|strong=\"G2532\"* spoken|strong=\"G3004\"* of|strong=\"G5259\"* by|strong=\"G5259\"* all|strong=\"G3650\"* the|strong=\"G2532\"* nation|strong=\"G1484\"* of|strong=\"G5259\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, was|strong=\"G3588\"* directed|strong=\"G5537\"* by|strong=\"G5259\"* a|strong=\"G2532\"* holy angel to|strong=\"G1519\"* invite you|strong=\"G4771\"* to|strong=\"G1519\"* his|strong=\"G1519\"* house|strong=\"G3624\"*, and|strong=\"G2532\"* to|strong=\"G1519\"* listen to|strong=\"G1519\"* what|strong=\"G3588\"* you|strong=\"G4771\"* say|strong=\"G3004\"*.”" + }, + { + "verseNum": 23, + "text": "So|strong=\"G3767\"* he|strong=\"G2532\"* called|strong=\"G3767\"* them|strong=\"G3588\"* in|strong=\"G2532\"* and|strong=\"G2532\"* provided a|strong=\"G2532\"* place to|strong=\"G2532\"* stay." + }, + { + "verseNum": 24, + "text": "On|strong=\"G1519\"* the|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"* they|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* Caesarea|strong=\"G2542\"*. Cornelius|strong=\"G2883\"* was|strong=\"G1510\"* waiting|strong=\"G4328\"* for|strong=\"G1519\"* them|strong=\"G3588\"*, having|strong=\"G2532\"* called|strong=\"G4779\"* together|strong=\"G4779\"* his|strong=\"G1438\"* relatives|strong=\"G4773\"* and|strong=\"G2532\"* his|strong=\"G1438\"* near|strong=\"G1519\"* friends|strong=\"G5384\"*." + }, + { + "verseNum": 25, + "text": "When|strong=\"G1161\"* Peter|strong=\"G4074\"* entered|strong=\"G1525\"*, Cornelius|strong=\"G2883\"* met|strong=\"G4876\"* him|strong=\"G3588\"*, fell|strong=\"G4098\"* down|strong=\"G4098\"* at|strong=\"G1909\"* his|strong=\"G1909\"* feet|strong=\"G4228\"*, and|strong=\"G1161\"* worshiped|strong=\"G4352\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 26, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* up|strong=\"G1453\"*, saying|strong=\"G3004\"*, “Stand|strong=\"G1453\"* up|strong=\"G1453\"*! I|strong=\"G1473\"* myself|strong=\"G1473\"* am|strong=\"G1510\"* also|strong=\"G2532\"* a|strong=\"G2532\"* man.”" + }, + { + "verseNum": 27, + "text": "As|strong=\"G2532\"* he|strong=\"G2532\"* talked|strong=\"G4926\"* with|strong=\"G2532\"* him|strong=\"G2532\"*, he|strong=\"G2532\"* went|strong=\"G1525\"* in|strong=\"G1525\"* and|strong=\"G2532\"* found|strong=\"G2147\"* many|strong=\"G4183\"* gathered|strong=\"G4905\"* together|strong=\"G4905\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"G3588\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “You|strong=\"G5210\"* yourselves|strong=\"G1438\"* know|strong=\"G1987\"* how|strong=\"G5613\"* it|strong=\"G1510\"* is|strong=\"G1510\"* an|strong=\"G2228\"* unlawful thing|strong=\"G3367\"* for|strong=\"G4314\"* a|strong=\"G5613\"* man|strong=\"G3367\"* who|strong=\"G3588\"* is|strong=\"G1510\"* a|strong=\"G5613\"* Jew|strong=\"G2453\"* to|strong=\"G4314\"* join|strong=\"G2853\"* himself|strong=\"G1438\"* or|strong=\"G2228\"* come|strong=\"G1510\"* to|strong=\"G4314\"* one|strong=\"G3367\"* of|strong=\"G2316\"* another|strong=\"G1438\"* nation, but|strong=\"G2316\"* God|strong=\"G2316\"* has|strong=\"G2316\"* shown|strong=\"G1166\"* me|strong=\"G3004\"* that|strong=\"G3588\"* I|strong=\"G2504\"* shouldn’t|strong=\"G3588\"* call|strong=\"G3004\"* any|strong=\"G3367\"* man|strong=\"G3367\"* unholy|strong=\"G2839\"* or|strong=\"G2228\"* unclean|strong=\"G2839\"*." + }, + { + "verseNum": 29, + "text": "Therefore|strong=\"G3767\"* I|strong=\"G1473\"* also|strong=\"G2532\"* came|strong=\"G2064\"* without|strong=\"G2532\"* complaint|strong=\"G3056\"* when|strong=\"G2532\"* I|strong=\"G1473\"* was|strong=\"G2532\"* sent|strong=\"G3343\"* for|strong=\"G2532\"*. I|strong=\"G1473\"* ask|strong=\"G4441\"* therefore|strong=\"G3767\"*, why|strong=\"G5101\"* did|strong=\"G2532\"* you|strong=\"G2532\"* send|strong=\"G3343\"* for|strong=\"G2532\"* me|strong=\"G1473\"*?”" + }, + { + "verseNum": 30, + "text": "Cornelius|strong=\"G2883\"* said|strong=\"G5346\"*, “Four|strong=\"G5067\"* days|strong=\"G2250\"* ago, I|strong=\"G1473\"* was|strong=\"G1510\"* fasting until|strong=\"G3360\"* this|strong=\"G3778\"* hour|strong=\"G5610\"*; and|strong=\"G2532\"* at|strong=\"G1722\"* the|strong=\"G1722\"* ninth|strong=\"G1766\"* hour|strong=\"G5610\"*,+ 10:30 3:00 p.m.* I|strong=\"G1473\"* prayed|strong=\"G4336\"* in|strong=\"G1722\"* my|strong=\"G3708\"* house|strong=\"G3624\"*, and|strong=\"G2532\"* behold|strong=\"G2400\"*, a|strong=\"G2532\"* man|strong=\"G3778\"* stood|strong=\"G2476\"* before|strong=\"G1799\"* me|strong=\"G1473\"* in|strong=\"G1722\"* bright|strong=\"G2986\"* clothing|strong=\"G2066\"*" + }, + { + "verseNum": 31, + "text": "and|strong=\"G2532\"* said|strong=\"G5346\"*, ‘Cornelius|strong=\"G2883\"*, your|strong=\"G2532\"* prayer|strong=\"G4335\"* is|strong=\"G3588\"* heard|strong=\"G1522\"*, and|strong=\"G2532\"* your|strong=\"G2532\"* gifts|strong=\"G1654\"* to|strong=\"G2532\"* the|strong=\"G2532\"* needy are|strong=\"G3588\"* remembered|strong=\"G3403\"* in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 32, + "text": "Send|strong=\"G3992\"* therefore|strong=\"G3767\"* to|strong=\"G1519\"* Joppa|strong=\"G2445\"* and|strong=\"G2532\"* summon|strong=\"G3333\"* Simon|strong=\"G4613\"*, who|strong=\"G3739\"* is|strong=\"G3778\"* also|strong=\"G2532\"* called|strong=\"G1941\"* Peter|strong=\"G4074\"*. He|strong=\"G2532\"* is|strong=\"G3778\"* staying|strong=\"G3579\"* in|strong=\"G1722\"* the|strong=\"G1722\"* house|strong=\"G3614\"* of|strong=\"G2532\"* a|strong=\"G2532\"* tanner|strong=\"G1038\"* named|strong=\"G4613\"* Simon|strong=\"G4613\"*, by|strong=\"G1722\"* the|strong=\"G1722\"* seaside. When|strong=\"G2532\"* he|strong=\"G2532\"* comes|strong=\"G2532\"*, he|strong=\"G2532\"* will|strong=\"G2532\"* speak|strong=\"G3778\"* to|strong=\"G1519\"* you|strong=\"G3739\"*.’" + }, + { + "verseNum": 33, + "text": "Therefore|strong=\"G3767\"* I|strong=\"G1473\"* sent|strong=\"G3992\"* to|strong=\"G4314\"* you|strong=\"G4771\"* at|strong=\"G4314\"* once|strong=\"G1824\"*, and|strong=\"G5037\"* it|strong=\"G4160\"* was|strong=\"G3588\"* good|strong=\"G2573\"* of|strong=\"G5259\"* you|strong=\"G4771\"* to|strong=\"G4314\"* come|strong=\"G3854\"*. Now|strong=\"G3568\"* therefore|strong=\"G3767\"* we|strong=\"G2249\"* are|strong=\"G3588\"* all|strong=\"G3956\"* here|strong=\"G3918\"* present|strong=\"G3568\"* in|strong=\"G2316\"* the|strong=\"G3956\"* sight|strong=\"G1799\"* of|strong=\"G5259\"* God|strong=\"G2316\"* to|strong=\"G4314\"* hear all|strong=\"G3956\"* things|strong=\"G3956\"* that|strong=\"G3588\"* have|strong=\"G1473\"* been|strong=\"G3568\"* commanded|strong=\"G4367\"* you|strong=\"G4771\"* by|strong=\"G5259\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 34, + "text": "Peter|strong=\"G4074\"* opened his|strong=\"G1909\"* mouth|strong=\"G4750\"* and|strong=\"G1161\"* said|strong=\"G3004\"*, “Truly|strong=\"G1909\"* I|strong=\"G1161\"* perceive|strong=\"G2638\"* that|strong=\"G3754\"* God|strong=\"G2316\"* doesn’t|strong=\"G3588\"* show|strong=\"G4381\"* favoritism;" + }, + { + "verseNum": 35, + "text": "but|strong=\"G2532\"* in|strong=\"G1722\"* every|strong=\"G3956\"* nation|strong=\"G1484\"* he|strong=\"G2532\"* who|strong=\"G3588\"* fears|strong=\"G5399\"* him|strong=\"G3588\"* and|strong=\"G2532\"* works|strong=\"G2038\"* righteousness|strong=\"G1343\"* is|strong=\"G1510\"* acceptable|strong=\"G1184\"* to|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"G3956\"* word|strong=\"G3056\"* which|strong=\"G3739\"* he|strong=\"G3739\"* sent|strong=\"G2424\"* to|strong=\"G2424\"* the|strong=\"G3956\"* children|strong=\"G5207\"* of|strong=\"G5207\"* Israel|strong=\"G2474\"*, preaching|strong=\"G2097\"* good|strong=\"G2097\"* news|strong=\"G2097\"* of|strong=\"G5207\"* peace|strong=\"G1515\"* by|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*—he|strong=\"G3739\"* is|strong=\"G1510\"* Lord|strong=\"G2962\"* of|strong=\"G5207\"* all|strong=\"G3956\"*—" + }, + { + "verseNum": 37, + "text": "you|strong=\"G5210\"* yourselves|strong=\"G4771\"* know|strong=\"G1492\"* what|strong=\"G3739\"* happened|strong=\"G1096\"*, which|strong=\"G3739\"* was|strong=\"G1096\"* proclaimed|strong=\"G2784\"* throughout|strong=\"G2596\"* all|strong=\"G3650\"* Judea|strong=\"G2449\"*, beginning from|strong=\"G2596\"* Galilee|strong=\"G1056\"*, after|strong=\"G3326\"* the|strong=\"G2596\"* baptism which|strong=\"G3739\"* John|strong=\"G2491\"* preached|strong=\"G2784\"*;" + }, + { + "verseNum": 38, + "text": "how|strong=\"G5613\"* God|strong=\"G2316\"* anointed|strong=\"G5548\"* Jesus|strong=\"G2424\"* of|strong=\"G5259\"* Nazareth|strong=\"G3478\"* with|strong=\"G3326\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* and|strong=\"G2532\"* with|strong=\"G3326\"* power|strong=\"G1411\"*, who|strong=\"G3739\"* went|strong=\"G2424\"* about|strong=\"G5613\"* doing|strong=\"G1330\"* good|strong=\"G3956\"* and|strong=\"G2532\"* healing|strong=\"G2390\"* all|strong=\"G3956\"* who|strong=\"G3739\"* were|strong=\"G1510\"* oppressed|strong=\"G2616\"* by|strong=\"G5259\"* the|strong=\"G2532\"* devil|strong=\"G1228\"*, for|strong=\"G3754\"* God|strong=\"G2316\"* was|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 39, + "text": "We|strong=\"G2249\"* are|strong=\"G3588\"* witnesses|strong=\"G3144\"* of|strong=\"G2532\"* everything|strong=\"G3956\"* he|strong=\"G2532\"* did|strong=\"G4160\"* both|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* country|strong=\"G5561\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"*; whom|strong=\"G3739\"* they|strong=\"G2532\"* also|strong=\"G2532\"*+ 10:39 TR omits “also”* killed, hanging|strong=\"G2910\"* him|strong=\"G3588\"* on|strong=\"G1909\"* a|strong=\"G2532\"* tree|strong=\"G3586\"*." + }, + { + "verseNum": 40, + "text": "God|strong=\"G2316\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* up|strong=\"G1453\"* the|strong=\"G1722\"* third|strong=\"G5154\"* day|strong=\"G2250\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* him|strong=\"G3588\"* to|strong=\"G2532\"* be|strong=\"G1096\"* revealed," + }, + { + "verseNum": 41, + "text": "not|strong=\"G3756\"* to|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, but|strong=\"G2532\"* to|strong=\"G2532\"* witnesses|strong=\"G3144\"* who|strong=\"G3588\"* were|strong=\"G3588\"* chosen|strong=\"G3144\"* before|strong=\"G3588\"* by|strong=\"G5259\"* God|strong=\"G2316\"*, to|strong=\"G2532\"* us|strong=\"G2249\"*, who|strong=\"G3588\"* ate|strong=\"G4906\"* and|strong=\"G2532\"* drank|strong=\"G4844\"* with|strong=\"G3326\"* him|strong=\"G3588\"* after|strong=\"G3326\"* he|strong=\"G2532\"* rose|strong=\"G2532\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 42, + "text": "He|strong=\"G2532\"* commanded|strong=\"G3853\"* us|strong=\"G2249\"* to|strong=\"G2532\"* preach|strong=\"G2784\"* to|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"* and|strong=\"G2532\"* to|strong=\"G2532\"* testify|strong=\"G1263\"* that|strong=\"G3754\"* this|strong=\"G3588\"* is|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G1510\"* appointed|strong=\"G3724\"* by|strong=\"G5259\"* God|strong=\"G2316\"* as|strong=\"G2532\"* the|strong=\"G2532\"* Judge|strong=\"G2923\"* of|strong=\"G5259\"* the|strong=\"G2532\"* living|strong=\"G2198\"* and|strong=\"G2532\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 43, + "text": "All|strong=\"G3956\"* the|strong=\"G1519\"* prophets|strong=\"G4396\"* testify|strong=\"G3140\"* about|strong=\"G1519\"* him|strong=\"G3588\"*, that|strong=\"G3588\"* through|strong=\"G1223\"* his|strong=\"G3956\"* name|strong=\"G3686\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* believes|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"* will|strong=\"G3956\"* receive|strong=\"G2983\"* remission of|strong=\"G1223\"* sins.”" + }, + { + "verseNum": 44, + "text": "While|strong=\"G2980\"* Peter|strong=\"G4074\"* was|strong=\"G3588\"* still|strong=\"G2089\"* speaking|strong=\"G2980\"* these|strong=\"G3778\"* words|strong=\"G3056\"*, the|strong=\"G3956\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* fell|strong=\"G1968\"* on|strong=\"G1909\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* heard the|strong=\"G3956\"* word|strong=\"G3056\"*." + }, + { + "verseNum": 45, + "text": "They|strong=\"G2532\"* of|strong=\"G1537\"* the|strong=\"G2532\"* circumcision|strong=\"G4061\"* who|strong=\"G3588\"* believed|strong=\"G3588\"* were|strong=\"G3588\"* amazed|strong=\"G1839\"*, as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* came|strong=\"G4905\"* with|strong=\"G1537\"* Peter|strong=\"G4074\"*, because|strong=\"G3754\"* the|strong=\"G2532\"* gift|strong=\"G1431\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* was|strong=\"G3588\"* also|strong=\"G2532\"* poured|strong=\"G1632\"* out|strong=\"G1537\"* on|strong=\"G1909\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*." + }, + { + "verseNum": 46, + "text": "For|strong=\"G1063\"* they|strong=\"G2532\"* heard them|strong=\"G3588\"* speaking|strong=\"G2980\"* in|strong=\"G2532\"* other|strong=\"G3588\"* languages|strong=\"G1100\"* and|strong=\"G2532\"* magnifying God|strong=\"G2316\"*." + }, + { + "verseNum": 47, + "text": "“Can|strong=\"G1410\"* anyone|strong=\"G5100\"* forbid|strong=\"G2967\"* these|strong=\"G3778\"* people|strong=\"G2983\"* from|strong=\"G2532\"* being|strong=\"G2532\"* baptized with|strong=\"G2532\"* water|strong=\"G5204\"*? They|strong=\"G2532\"* have|strong=\"G2532\"* received|strong=\"G2983\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* just|strong=\"G5613\"* like|strong=\"G5613\"* us|strong=\"G2249\"*.”" + }, + { + "verseNum": 48, + "text": "He|strong=\"G1161\"* commanded|strong=\"G4367\"* them|strong=\"G3588\"* to|strong=\"G1722\"* be|strong=\"G3588\"* baptized in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2250\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*. Then|strong=\"G5119\"* they|strong=\"G1161\"* asked|strong=\"G2065\"* him|strong=\"G3588\"* to|strong=\"G1722\"* stay|strong=\"G1961\"* some|strong=\"G5100\"* days|strong=\"G2250\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* apostles and|strong=\"G2532\"* the|strong=\"G2532\"* brothers+ 11:1 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* who|strong=\"G3588\"* were|strong=\"G1510\"* in|strong=\"G2596\"* Judea|strong=\"G2449\"* heard|strong=\"G1484\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"* had|strong=\"G2532\"* also|strong=\"G2532\"* received|strong=\"G1209\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"G3753\"* Peter|strong=\"G4074\"* had|strong=\"G3588\"* come|strong=\"G1537\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*, those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1519\"* circumcision|strong=\"G4061\"* contended|strong=\"G1252\"* with|strong=\"G4314\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 3, + "text": "saying|strong=\"G3004\"*, “You|strong=\"G3754\"* went|strong=\"G1525\"* in|strong=\"G1525\"* to|strong=\"G4314\"* uncircumcised men and|strong=\"G2532\"* ate|strong=\"G4906\"* with|strong=\"G4314\"* them|strong=\"G3004\"*!”" + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* began|strong=\"G1161\"*, and|strong=\"G1161\"* explained|strong=\"G1620\"* to|strong=\"G3004\"* them|strong=\"G3004\"* in|strong=\"G3004\"* order|strong=\"G2517\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 5, + "text": "“I|strong=\"G1473\"* was|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* city|strong=\"G4172\"* of|strong=\"G1537\"* Joppa|strong=\"G2445\"* praying|strong=\"G4336\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* a|strong=\"G5613\"* trance|strong=\"G1611\"* I|strong=\"G1473\"* saw|strong=\"G3708\"* a|strong=\"G5613\"* vision|strong=\"G3705\"*: a|strong=\"G5613\"* certain|strong=\"G5100\"* container|strong=\"G4632\"* descending|strong=\"G2597\"*, like|strong=\"G5613\"* it|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G5613\"* great|strong=\"G3173\"* sheet|strong=\"G3607\"* let|strong=\"G2524\"* down|strong=\"G2597\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"* by|strong=\"G1722\"* four|strong=\"G5064\"* corners. It|strong=\"G2532\"* came|strong=\"G2064\"* as|strong=\"G5613\"* far|strong=\"G3588\"* as|strong=\"G5613\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"G2532\"* I|strong=\"G3739\"* had|strong=\"G2532\"* looked|strong=\"G3708\"* intently at|strong=\"G1519\"* it|strong=\"G2532\"*, I|strong=\"G3739\"* considered|strong=\"G2657\"*, and|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* four-footed|strong=\"G5074\"* animals|strong=\"G5074\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, wild|strong=\"G2342\"* animals|strong=\"G5074\"*, creeping|strong=\"G2532\"* things|strong=\"G3588\"*, and|strong=\"G2532\"* birds|strong=\"G4071\"* of|strong=\"G2532\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"G1473\"* also|strong=\"G2532\"* heard a|strong=\"G2532\"* voice|strong=\"G5456\"* saying|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, ‘Rise, \\+w Peter|strong=\"G4074\"\\+w*, \\+w kill|strong=\"G2380\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w*!’ *" + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* I|strong=\"G1473\"* said|strong=\"G3004\"*, ‘Not|strong=\"G1473\"* so|strong=\"G1161\"*, Lord|strong=\"G2962\"*, for|strong=\"G3754\"* nothing|strong=\"G3763\"* unholy|strong=\"G2839\"* or|strong=\"G2228\"* unclean|strong=\"G2839\"* has|strong=\"G2962\"* ever|strong=\"G1519\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* my|strong=\"G1525\"* mouth|strong=\"G4750\"*.’" + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* a|strong=\"G1161\"* voice|strong=\"G5456\"* answered me|strong=\"G2511\"* the|strong=\"G1537\"* second|strong=\"G1208\"* time|strong=\"G1208\"* out|strong=\"G1537\"* of|strong=\"G1537\"* heaven|strong=\"G3772\"*, ‘\\+w What|strong=\"G3739\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w cleansed|strong=\"G2511\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w call|strong=\"G2840\"\\+w* \\+w unclean|strong=\"G2840\"\\+w*.’*" + }, + { + "verseNum": 10, + "text": "This|strong=\"G3778\"* was|strong=\"G1096\"* done|strong=\"G1096\"* three|strong=\"G5151\"* times|strong=\"G5151\"*, and|strong=\"G2532\"* all|strong=\"G2532\"* were|strong=\"G3588\"* drawn up|strong=\"G1519\"* again|strong=\"G3825\"* into|strong=\"G1519\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 11, + "text": "Behold|strong=\"G2400\"*, immediately|strong=\"G1824\"* three|strong=\"G5140\"* men|strong=\"G3588\"* stood|strong=\"G2186\"* before|strong=\"G1909\"* the|strong=\"G1722\"* house|strong=\"G3614\"* where|strong=\"G3739\"* I|strong=\"G1473\"* was|strong=\"G1510\"*, having|strong=\"G2532\"* been|strong=\"G1510\"* sent|strong=\"G2532\"* from|strong=\"G2532\"* Caesarea|strong=\"G2542\"* to|strong=\"G4314\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"G2532\"* Spirit|strong=\"G4151\"* told|strong=\"G3004\"* me|strong=\"G1473\"* to|strong=\"G1519\"* go|strong=\"G1525\"* with|strong=\"G4862\"* them|strong=\"G3588\"* without|strong=\"G3367\"* discriminating. These|strong=\"G3778\"* six|strong=\"G1803\"* brothers also|strong=\"G2532\"* accompanied|strong=\"G4905\"* me|strong=\"G1473\"*, and|strong=\"G2532\"* we|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* man|strong=\"G3778\"*’s house|strong=\"G3624\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* told|strong=\"G3004\"* us|strong=\"G3004\"* how|strong=\"G4459\"* he|strong=\"G2532\"* had|strong=\"G2532\"* seen|strong=\"G3708\"* the|strong=\"G1722\"* angel standing|strong=\"G2476\"* in|strong=\"G1722\"* his|strong=\"G1519\"* house|strong=\"G3624\"* and|strong=\"G2532\"* saying|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, ‘Send|strong=\"G3343\"* to|strong=\"G1519\"* Joppa|strong=\"G2445\"* and|strong=\"G2532\"* get|strong=\"G2532\"* Simon|strong=\"G4613\"*, who|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G3004\"* Peter|strong=\"G4074\"*," + }, + { + "verseNum": 14, + "text": "who|strong=\"G3739\"* will|strong=\"G2532\"* speak|strong=\"G2980\"* to|strong=\"G4314\"* you|strong=\"G4771\"* words|strong=\"G4487\"* by|strong=\"G1722\"* which|strong=\"G3739\"* you|strong=\"G4771\"* will|strong=\"G2532\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*, you|strong=\"G4771\"* and|strong=\"G2532\"* all|strong=\"G3956\"* your|strong=\"G2532\"* house|strong=\"G3624\"*.’" + }, + { + "verseNum": 15, + "text": "As|strong=\"G5618\"* I|strong=\"G1473\"* began|strong=\"G1909\"* to|strong=\"G2532\"* speak|strong=\"G2980\"*, the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* fell|strong=\"G1968\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, even|strong=\"G2532\"* as|strong=\"G5618\"* on|strong=\"G1909\"* us|strong=\"G2249\"* at|strong=\"G1722\"* the|strong=\"G1722\"* beginning." + }, + { + "verseNum": 16, + "text": "I|strong=\"G1161\"* remembered|strong=\"G3403\"* the|strong=\"G1722\"* word|strong=\"G4487\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, how|strong=\"G5613\"* he|strong=\"G1161\"* said|strong=\"G3004\"*, ‘\\+w John|strong=\"G2491\"\\+w* \\+w indeed|strong=\"G3303\"\\+w* baptized \\+w in|strong=\"G1722\"\\+w* \\+w water|strong=\"G5204\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2962\"\\+w* \\+w be|strong=\"G3588\"\\+w* baptized \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w*.’*" + }, + { + "verseNum": 17, + "text": "If|strong=\"G1487\"* then|strong=\"G3767\"* God|strong=\"G2316\"* gave|strong=\"G1325\"* to|strong=\"G2532\"* them|strong=\"G3588\"* the|strong=\"G2532\"* same|strong=\"G2470\"* gift|strong=\"G1431\"* as|strong=\"G5613\"* us|strong=\"G1325\"* when|strong=\"G5613\"* we|strong=\"G2249\"* believed|strong=\"G4100\"* in|strong=\"G1909\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, who|strong=\"G5101\"* was|strong=\"G1510\"* I|strong=\"G1473\"*, that|strong=\"G3588\"* I|strong=\"G1473\"* could|strong=\"G1415\"* withstand|strong=\"G2967\"* God|strong=\"G2316\"*?”" + }, + { + "verseNum": 18, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* heard|strong=\"G1484\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, they|strong=\"G2532\"* held their|strong=\"G2532\"* peace|strong=\"G2270\"* and|strong=\"G2532\"* glorified|strong=\"G1392\"* God|strong=\"G2316\"*, saying|strong=\"G3004\"*, “Then|strong=\"G2532\"* God|strong=\"G2316\"* has|strong=\"G2316\"* also|strong=\"G2532\"* granted|strong=\"G1325\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"* repentance|strong=\"G3341\"* to|strong=\"G1519\"* life|strong=\"G2222\"*!”" + }, + { + "verseNum": 19, + "text": "They|strong=\"G2532\"* therefore|strong=\"G3767\"* who|strong=\"G3588\"* were|strong=\"G3588\"* scattered|strong=\"G1289\"* abroad|strong=\"G1289\"* by|strong=\"G1909\"* the|strong=\"G2532\"* oppression that|strong=\"G3588\"* arose|strong=\"G1096\"* about|strong=\"G1909\"* Stephen|strong=\"G4736\"* traveled as|strong=\"G2532\"* far|strong=\"G2193\"* as|strong=\"G2532\"* Phoenicia|strong=\"G5403\"*, Cyprus|strong=\"G2954\"*, and|strong=\"G2532\"* Antioch, speaking|strong=\"G2980\"* the|strong=\"G2532\"* word|strong=\"G3056\"* to|strong=\"G2532\"* no|strong=\"G3361\"* one|strong=\"G3367\"* except|strong=\"G1487\"* to|strong=\"G2532\"* Jews|strong=\"G2453\"* only|strong=\"G3440\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* there|strong=\"G2532\"* were|strong=\"G1510\"* some|strong=\"G5100\"* of|strong=\"G1537\"* them|strong=\"G3588\"*, men|strong=\"G5100\"* of|strong=\"G1537\"* Cyprus|strong=\"G2953\"* and|strong=\"G2532\"* Cyrene|strong=\"G2956\"*, who|strong=\"G3588\"*, when|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2424\"* come|strong=\"G2064\"* to|strong=\"G1519\"* Antioch, spoke|strong=\"G2980\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Hellenists,+ 11:20 A Hellenist is someone who keeps Greek customs and culture.* preaching|strong=\"G2097\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"G2532\"* hand|strong=\"G5495\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* was|strong=\"G1510\"* with|strong=\"G3326\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* a|strong=\"G2532\"* great|strong=\"G4183\"* number believed|strong=\"G4100\"* and|strong=\"G2532\"* turned|strong=\"G1994\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"G1722\"* report|strong=\"G3056\"* concerning|strong=\"G4012\"* them|strong=\"G3588\"* came|strong=\"G2532\"* to|strong=\"G1519\"* the|strong=\"G1722\"* ears|strong=\"G3775\"* of|strong=\"G4012\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* which|strong=\"G3588\"* was|strong=\"G1510\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"*. They|strong=\"G2532\"* sent|strong=\"G1821\"* out|strong=\"G2532\"* Barnabas to|strong=\"G1519\"* go|strong=\"G1519\"* as|strong=\"G1519\"* far|strong=\"G2193\"* as|strong=\"G1519\"* Antioch," + }, + { + "verseNum": 23, + "text": "who|strong=\"G3739\"*, when|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G3854\"*, and|strong=\"G2532\"* had|strong=\"G2532\"* seen|strong=\"G3708\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, was|strong=\"G3588\"* glad|strong=\"G5463\"*. He|strong=\"G2532\"* exhorted|strong=\"G3870\"* them|strong=\"G3588\"* all|strong=\"G3956\"*, that|strong=\"G3739\"* with|strong=\"G2532\"* purpose|strong=\"G4286\"* of|strong=\"G2316\"* heart|strong=\"G2588\"* they|strong=\"G2532\"* should|strong=\"G2316\"* remain|strong=\"G4357\"* near to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* good|strong=\"G2425\"* man, and|strong=\"G2532\"* full|strong=\"G4134\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* and|strong=\"G2532\"* of|strong=\"G4151\"* faith|strong=\"G4102\"*, and|strong=\"G2532\"* many|strong=\"G2425\"* people|strong=\"G3793\"* were|strong=\"G1510\"* added|strong=\"G4369\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 25, + "text": "Barnabas went|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G1519\"* Tarsus|strong=\"G5019\"* to|strong=\"G1519\"* look for|strong=\"G1519\"* Saul|strong=\"G4569\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* found|strong=\"G2147\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* brought|strong=\"G1096\"* him|strong=\"G3588\"* to|strong=\"G1519\"* Antioch. For|strong=\"G1519\"* a|strong=\"G1096\"* whole|strong=\"G3650\"* year|strong=\"G1763\"* they|strong=\"G2532\"* were|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* with|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"*, and|strong=\"G2532\"* taught|strong=\"G1321\"* many|strong=\"G2425\"* people|strong=\"G3793\"*. The|strong=\"G1722\"* disciples|strong=\"G3101\"* were|strong=\"G3588\"* first|strong=\"G4413\"* called|strong=\"G5537\"* Christians|strong=\"G5546\"* in|strong=\"G1722\"* Antioch." + }, + { + "verseNum": 27, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* these|strong=\"G3778\"* days|strong=\"G2250\"*, prophets|strong=\"G4396\"* came|strong=\"G2718\"* down|strong=\"G2718\"* from|strong=\"G2718\"* Jerusalem|strong=\"G2414\"* to|strong=\"G1519\"* Antioch." + }, + { + "verseNum": 28, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* them|strong=\"G3588\"* named|strong=\"G3686\"* Agabus stood|strong=\"G3588\"* up|strong=\"G1537\"* and|strong=\"G1161\"* indicated by|strong=\"G1223\"* the|strong=\"G1537\"* Spirit|strong=\"G4151\"* that|strong=\"G3588\"* there|strong=\"G1161\"* should|strong=\"G3195\"* be|strong=\"G1096\"* a|strong=\"G1096\"* great|strong=\"G3173\"* famine|strong=\"G3042\"* all|strong=\"G3650\"* over|strong=\"G1909\"* the|strong=\"G1537\"* world|strong=\"G3625\"*, which|strong=\"G3588\"* also|strong=\"G1161\"* happened|strong=\"G1096\"* in|strong=\"G1909\"* the|strong=\"G1537\"* days of|strong=\"G1537\"* Claudius|strong=\"G2804\"*." + }, + { + "verseNum": 29, + "text": "As|strong=\"G2531\"* any|strong=\"G5100\"* of|strong=\"G5100\"* the|strong=\"G1722\"* disciples|strong=\"G3101\"* had|strong=\"G3588\"* plenty, each|strong=\"G1538\"* determined|strong=\"G3724\"* to|strong=\"G1519\"* send|strong=\"G3992\"* relief|strong=\"G1248\"* to|strong=\"G1519\"* the|strong=\"G1722\"* brothers who|strong=\"G3588\"* lived|strong=\"G2730\"* in|strong=\"G1722\"* Judea|strong=\"G2449\"*;" + }, + { + "verseNum": 30, + "text": "which|strong=\"G3739\"* they|strong=\"G2532\"* also|strong=\"G2532\"* did|strong=\"G4160\"*, sending it|strong=\"G2532\"* to|strong=\"G4314\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* by|strong=\"G1223\"* the|strong=\"G2532\"* hands|strong=\"G5495\"* of|strong=\"G1223\"* Barnabas and|strong=\"G2532\"* Saul|strong=\"G4569\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* about|strong=\"G2596\"* that|strong=\"G3588\"* time|strong=\"G2540\"*, King|strong=\"G3588\"* Herod|strong=\"G2264\"* stretched out|strong=\"G2596\"* his|strong=\"G1565\"* hands|strong=\"G5495\"* to|strong=\"G2596\"* oppress some|strong=\"G5100\"* of|strong=\"G1577\"* the|strong=\"G1161\"* assembly|strong=\"G1577\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G1161\"* killed James|strong=\"G2385\"*, the|strong=\"G1161\"* brother of|strong=\"G3588\"* John|strong=\"G2491\"*, with|strong=\"G3588\"* the|strong=\"G1161\"* sword|strong=\"G3162\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* it|strong=\"G2532\"* pleased the|strong=\"G2532\"* Jews|strong=\"G2453\"*, he|strong=\"G2532\"* proceeded|strong=\"G4369\"* to|strong=\"G2532\"* seize Peter|strong=\"G4074\"* also|strong=\"G2532\"*. This|strong=\"G3588\"* was|strong=\"G1510\"* during the|strong=\"G2532\"* days|strong=\"G2250\"* of|strong=\"G2250\"* unleavened bread." + }, + { + "verseNum": 4, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* arrested him|strong=\"G3588\"*, he|strong=\"G2532\"* put|strong=\"G5087\"* him|strong=\"G3588\"* in|strong=\"G1519\"* prison|strong=\"G5438\"* and|strong=\"G2532\"* delivered|strong=\"G3860\"* him|strong=\"G3588\"* to|strong=\"G1519\"* four|strong=\"G5064\"* squads|strong=\"G5069\"* of|strong=\"G2532\"* four|strong=\"G5064\"* soldiers|strong=\"G4757\"* each|strong=\"G3326\"* to|strong=\"G1519\"* guard|strong=\"G5442\"* him|strong=\"G3588\"*, intending|strong=\"G1014\"* to|strong=\"G1519\"* bring|strong=\"G2532\"* him|strong=\"G3588\"* out|strong=\"G2532\"* to|strong=\"G1519\"* the|strong=\"G2532\"* people|strong=\"G2992\"* after|strong=\"G3326\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"*." + }, + { + "verseNum": 5, + "text": "Peter|strong=\"G4074\"* therefore|strong=\"G3767\"* was|strong=\"G1510\"* kept|strong=\"G5083\"* in|strong=\"G1722\"* the|strong=\"G1722\"* prison|strong=\"G5438\"*, but|strong=\"G1161\"* constant prayer|strong=\"G4335\"* was|strong=\"G1510\"* made|strong=\"G1096\"* by|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* to|strong=\"G4314\"* God|strong=\"G2316\"* for|strong=\"G4012\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"G1161\"* same|strong=\"G1565\"* night|strong=\"G3571\"* when|strong=\"G3753\"* Herod|strong=\"G2264\"* was|strong=\"G1510\"* about|strong=\"G3195\"* to|strong=\"G3195\"* bring|strong=\"G4254\"* him|strong=\"G3588\"* out|strong=\"G1510\"*, Peter|strong=\"G4074\"* was|strong=\"G1510\"* sleeping|strong=\"G2837\"* between|strong=\"G3342\"* two|strong=\"G1417\"* soldiers|strong=\"G4757\"*, bound|strong=\"G1210\"* with|strong=\"G1210\"* two|strong=\"G1417\"* chains|strong=\"G1210\"*. Guards|strong=\"G5441\"* in|strong=\"G1161\"* front|strong=\"G4253\"* of|strong=\"G3588\"* the|strong=\"G1161\"* door|strong=\"G2374\"* kept|strong=\"G5083\"* the|strong=\"G1161\"* prison|strong=\"G5438\"*." + }, + { + "verseNum": 7, + "text": "And|strong=\"G2532\"* behold|strong=\"G2400\"*, an|strong=\"G2532\"* angel of|strong=\"G1537\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* stood|strong=\"G2186\"* by|strong=\"G1722\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* a|strong=\"G2532\"* light|strong=\"G5457\"* shone|strong=\"G2989\"* in|strong=\"G1722\"* the|strong=\"G1722\"* cell|strong=\"G3612\"*. He|strong=\"G2532\"* struck|strong=\"G3960\"* Peter|strong=\"G4074\"* on|strong=\"G1722\"* the|strong=\"G1722\"* side|strong=\"G4125\"* and|strong=\"G2532\"* woke|strong=\"G1453\"* him|strong=\"G3588\"* up|strong=\"G1453\"*, saying|strong=\"G3004\"*, “Stand|strong=\"G1453\"* up|strong=\"G1453\"* quickly|strong=\"G5034\"*!” His|strong=\"G1722\"* chains fell|strong=\"G2532\"* off|strong=\"G1601\"* his|strong=\"G1722\"* hands|strong=\"G5495\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"G2532\"* angel said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Get|strong=\"G2532\"* dressed|strong=\"G4016\"* and|strong=\"G2532\"* put|strong=\"G4160\"* on|strong=\"G1161\"* your|strong=\"G2532\"* sandals|strong=\"G4547\"*.” He|strong=\"G2532\"* did|strong=\"G4160\"* so|strong=\"G3779\"*. He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Put|strong=\"G4160\"* on|strong=\"G1161\"* your|strong=\"G2532\"* cloak|strong=\"G2440\"* and|strong=\"G2532\"* follow|strong=\"G1161\"* me|strong=\"G1473\"*.”" + }, + { + "verseNum": 9, + "text": "And|strong=\"G2532\"* he|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* followed|strong=\"G1096\"* him|strong=\"G3588\"*. He|strong=\"G2532\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"* that|strong=\"G3754\"* what|strong=\"G3588\"* was|strong=\"G1510\"* being|strong=\"G1510\"* done|strong=\"G1096\"* by|strong=\"G1223\"* the|strong=\"G2532\"* angel was|strong=\"G1510\"* real, but|strong=\"G1161\"* thought|strong=\"G1380\"* he|strong=\"G2532\"* saw|strong=\"G1492\"* a|strong=\"G1096\"* vision|strong=\"G3705\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G3588\"* past|strong=\"G1330\"* the|strong=\"G2532\"* first|strong=\"G4413\"* and|strong=\"G2532\"* the|strong=\"G2532\"* second|strong=\"G1208\"* guard|strong=\"G2532\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* iron|strong=\"G4603\"* gate|strong=\"G4439\"* that|strong=\"G3588\"* leads|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, which|strong=\"G3588\"* opened to|strong=\"G1519\"* them|strong=\"G3588\"* by|strong=\"G1909\"* itself. They|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* went|strong=\"G1831\"* down one|strong=\"G1520\"* street|strong=\"G4505\"*, and|strong=\"G2532\"* immediately|strong=\"G2112\"* the|strong=\"G2532\"* angel departed|strong=\"G1831\"* from|strong=\"G2064\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"G2532\"* Peter|strong=\"G4074\"* had|strong=\"G2532\"* come|strong=\"G1096\"* to|strong=\"G2532\"* himself|strong=\"G1438\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “Now|strong=\"G3568\"* I|strong=\"G1473\"* truly|strong=\"G1722\"* know|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* has|strong=\"G2962\"* sent|strong=\"G1821\"* out|strong=\"G1537\"* his|strong=\"G1438\"* angel and|strong=\"G2532\"* delivered|strong=\"G1807\"* me|strong=\"G1473\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* hand|strong=\"G5495\"* of|strong=\"G1537\"* Herod|strong=\"G2264\"*, and|strong=\"G2532\"* from|strong=\"G1537\"* everything|strong=\"G3956\"* the|strong=\"G1722\"* Jewish|strong=\"G2453\"* people|strong=\"G2992\"* were|strong=\"G3588\"* expecting|strong=\"G4329\"*.”" + }, + { + "verseNum": 12, + "text": "Thinking about|strong=\"G1909\"* that|strong=\"G3588\"*, he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G2532\"* the|strong=\"G2532\"* house|strong=\"G3614\"* of|strong=\"G2532\"* Mary|strong=\"G3137\"*, the|strong=\"G2532\"* mother|strong=\"G3384\"* of|strong=\"G2532\"* John|strong=\"G2491\"* who|strong=\"G3588\"* was|strong=\"G1510\"* called|strong=\"G1941\"* Mark|strong=\"G3138\"*, where|strong=\"G3757\"* many|strong=\"G2425\"* were|strong=\"G1510\"* gathered|strong=\"G4867\"* together|strong=\"G1909\"* and|strong=\"G2532\"* were|strong=\"G1510\"* praying|strong=\"G4336\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"G1161\"* Peter knocked|strong=\"G2925\"* at|strong=\"G1161\"* the|strong=\"G1161\"* door|strong=\"G2374\"* of|strong=\"G3686\"* the|strong=\"G1161\"* gate|strong=\"G4440\"*, a|strong=\"G1161\"* servant|strong=\"G3588\"* girl named|strong=\"G3686\"* Rhoda|strong=\"G4498\"* came|strong=\"G4334\"* to|strong=\"G4334\"* answer|strong=\"G5219\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"G1161\"* she|strong=\"G2532\"* recognized|strong=\"G1921\"* Peter|strong=\"G4074\"*’s voice|strong=\"G5456\"*, she|strong=\"G2532\"* didn’t|strong=\"G3588\"* open the|strong=\"G2532\"* gate|strong=\"G4440\"* for|strong=\"G1161\"* joy|strong=\"G5479\"*, but|strong=\"G1161\"* ran|strong=\"G1532\"* in|strong=\"G2532\"* and|strong=\"G2532\"* reported that|strong=\"G3588\"* Peter|strong=\"G4074\"* was|strong=\"G3588\"* standing|strong=\"G2476\"* in|strong=\"G2532\"* front|strong=\"G4253\"* of|strong=\"G2532\"* the|strong=\"G2532\"* gate|strong=\"G4440\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* her|strong=\"G1438\"*, “You|strong=\"G3004\"* are|strong=\"G1510\"* crazy!” But|strong=\"G1161\"* she|strong=\"G1161\"* insisted that|strong=\"G3588\"* it|strong=\"G1161\"* was|strong=\"G1510\"* so|strong=\"G3779\"*. They|strong=\"G1161\"* said|strong=\"G3004\"*, “It|strong=\"G1161\"* is|strong=\"G1510\"* his|strong=\"G1438\"* angel.”" + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* continued|strong=\"G1961\"* knocking|strong=\"G2925\"*. When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* opened, they|strong=\"G2532\"* saw|strong=\"G3708\"* him|strong=\"G3588\"* and|strong=\"G2532\"* were|strong=\"G3588\"* amazed|strong=\"G1839\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"*, beckoning|strong=\"G2678\"* to|strong=\"G1519\"* them|strong=\"G3588\"* with|strong=\"G1537\"* his|strong=\"G1519\"* hand|strong=\"G5495\"* to|strong=\"G1519\"* be|strong=\"G2532\"* silent|strong=\"G4601\"*, declared|strong=\"G1334\"* to|strong=\"G1519\"* them|strong=\"G3588\"* how|strong=\"G4459\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* had|strong=\"G2532\"* brought|strong=\"G1806\"* him|strong=\"G3588\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* prison|strong=\"G5438\"*. He|strong=\"G2532\"* said|strong=\"G3004\"*, “Tell|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G1519\"* James|strong=\"G2385\"* and|strong=\"G2532\"* to|strong=\"G1519\"* the|strong=\"G2532\"* brothers.” Then|strong=\"G2532\"* he|strong=\"G2532\"* departed|strong=\"G1831\"* and|strong=\"G2532\"* went|strong=\"G1831\"* to|strong=\"G1519\"* another|strong=\"G2087\"* place|strong=\"G5117\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"G1161\"* as|strong=\"G1722\"* soon|strong=\"G1722\"* as|strong=\"G1722\"* it|strong=\"G1161\"* was|strong=\"G1510\"* day|strong=\"G2250\"*, there|strong=\"G1161\"* was|strong=\"G1510\"* no|strong=\"G3756\"* small|strong=\"G3641\"* stir|strong=\"G5017\"* among|strong=\"G1722\"* the|strong=\"G1722\"* soldiers|strong=\"G4757\"* about|strong=\"G1722\"* what|strong=\"G5101\"* had|strong=\"G1510\"* become|strong=\"G1096\"* of|strong=\"G2250\"* Peter|strong=\"G4074\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"G1161\"* Herod|strong=\"G2264\"* had|strong=\"G2532\"* sought|strong=\"G1934\"* for|strong=\"G1519\"* him|strong=\"G3588\"* and|strong=\"G2532\"* didn’t|strong=\"G3588\"* find|strong=\"G2147\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* examined the|strong=\"G2532\"* guards|strong=\"G5441\"*, then|strong=\"G2532\"* commanded|strong=\"G2753\"* that|strong=\"G3588\"* they|strong=\"G2532\"* should|strong=\"G3588\"* be|strong=\"G2532\"* put|strong=\"G2532\"* to|strong=\"G1519\"* death. He|strong=\"G2532\"* went|strong=\"G2532\"* down|strong=\"G2718\"* from|strong=\"G2532\"* Judea|strong=\"G2449\"* to|strong=\"G1519\"* Caesarea|strong=\"G2542\"*, and|strong=\"G2532\"* stayed|strong=\"G1304\"* there|strong=\"G2532\"*." + }, + { + "verseNum": 20, + "text": "Now|strong=\"G1161\"* Herod|strong=\"G1510\"* was|strong=\"G1510\"* very|strong=\"G2532\"* angry|strong=\"G2371\"* with|strong=\"G4314\"* the|strong=\"G2532\"* people|strong=\"G1510\"* of|strong=\"G1223\"* Tyre|strong=\"G5183\"* and|strong=\"G2532\"* Sidon|strong=\"G4606\"*. They|strong=\"G2532\"* came|strong=\"G2532\"* with|strong=\"G4314\"* one|strong=\"G3588\"* accord|strong=\"G3661\"* to|strong=\"G4314\"* him|strong=\"G3588\"* and|strong=\"G2532\"*, having|strong=\"G2532\"* made|strong=\"G1161\"* Blastus, the|strong=\"G2532\"* king|strong=\"G3588\"*’s personal aide, their|strong=\"G2532\"* friend|strong=\"G3982\"*, they|strong=\"G2532\"* asked for|strong=\"G1223\"* peace|strong=\"G1515\"*, because|strong=\"G1223\"* their|strong=\"G2532\"* country|strong=\"G5561\"* depended on|strong=\"G1909\"* the|strong=\"G2532\"* king|strong=\"G3588\"*’s country|strong=\"G5561\"* for|strong=\"G1223\"* food." + }, + { + "verseNum": 21, + "text": "On|strong=\"G1909\"* an|strong=\"G2532\"* appointed|strong=\"G5002\"* day|strong=\"G2250\"*, Herod|strong=\"G2264\"* dressed|strong=\"G1746\"* himself|strong=\"G1438\"* in|strong=\"G1909\"* royal clothing|strong=\"G2066\"*, sat|strong=\"G2523\"* on|strong=\"G1909\"* the|strong=\"G2532\"* throne, and|strong=\"G2532\"* gave|strong=\"G2532\"* a|strong=\"G2532\"* speech to|strong=\"G4314\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"G2532\"* people|strong=\"G1218\"* shouted|strong=\"G2019\"*, “The|strong=\"G2532\"* voice|strong=\"G5456\"* of|strong=\"G2316\"* a|strong=\"G2532\"* god|strong=\"G2316\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* of|strong=\"G2316\"* a|strong=\"G2532\"* man|strong=\"G3756\"*!”" + }, + { + "verseNum": 23, + "text": "Immediately|strong=\"G3916\"* an|strong=\"G2532\"* angel of|strong=\"G2316\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* struck|strong=\"G3960\"* him|strong=\"G3588\"*, because|strong=\"G1161\"* he|strong=\"G2532\"* didn’t|strong=\"G3588\"* give|strong=\"G1325\"* God|strong=\"G2316\"* the|strong=\"G2532\"* glory|strong=\"G1391\"*. Then|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G1096\"* eaten|strong=\"G4662\"* by|strong=\"G2532\"* worms|strong=\"G4662\"* and|strong=\"G2532\"* died|strong=\"G1634\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* grew and|strong=\"G2532\"* multiplied|strong=\"G4129\"*." + }, + { + "verseNum": 25, + "text": "Barnabas and|strong=\"G2532\"* Saul|strong=\"G4569\"* returned|strong=\"G5290\"* to|strong=\"G1519\"*+ 12:25 TR reads “from” instead of “to”* Jerusalem|strong=\"G2419\"* when|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* fulfilled|strong=\"G4137\"* their|strong=\"G2532\"* service|strong=\"G1248\"*, also|strong=\"G2532\"* taking|strong=\"G4838\"* with|strong=\"G1537\"* them|strong=\"G3588\"* John|strong=\"G2491\"* who|strong=\"G3588\"* was|strong=\"G3588\"* called|strong=\"G1941\"* Mark|strong=\"G3138\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* that|strong=\"G3588\"* was|strong=\"G1510\"* at|strong=\"G1722\"* Antioch there|strong=\"G2532\"* were|strong=\"G1510\"* some|strong=\"G3588\"* prophets|strong=\"G4396\"* and|strong=\"G2532\"* teachers|strong=\"G1320\"*: Barnabas, Simeon|strong=\"G4826\"* who|strong=\"G3588\"* was|strong=\"G1510\"* called|strong=\"G2564\"* Niger|strong=\"G3526\"*, Lucius|strong=\"G3066\"* of|strong=\"G2532\"* Cyrene|strong=\"G2956\"*, Manaen|strong=\"G3127\"* the|strong=\"G1722\"* foster brother of|strong=\"G2532\"* Herod|strong=\"G2264\"* the|strong=\"G1722\"* tetrarch|strong=\"G5076\"*, and|strong=\"G2532\"* Saul|strong=\"G4569\"*." + }, + { + "verseNum": 2, + "text": "As|strong=\"G1519\"* they|strong=\"G2532\"* served the|strong=\"G2532\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* fasted|strong=\"G3522\"*, the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* said|strong=\"G3004\"*, “Separate Barnabas and|strong=\"G2532\"* Saul|strong=\"G4569\"* for|strong=\"G1519\"* me|strong=\"G1473\"*, for|strong=\"G1519\"* the|strong=\"G2532\"* work|strong=\"G2041\"* to|strong=\"G1519\"* which|strong=\"G3739\"* I|strong=\"G1473\"* have|strong=\"G2532\"* called|strong=\"G3004\"* them|strong=\"G3588\"*.”" + }, + { + "verseNum": 3, + "text": "Then|strong=\"G2532\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* fasted|strong=\"G3522\"* and|strong=\"G2532\"* prayed|strong=\"G4336\"* and|strong=\"G2532\"* laid|strong=\"G2007\"* their|strong=\"G2532\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* them|strong=\"G3588\"*, they|strong=\"G2532\"* sent|strong=\"G2532\"* them|strong=\"G3588\"* away." + }, + { + "verseNum": 4, + "text": "So|strong=\"G3767\"*, being|strong=\"G3767\"* sent|strong=\"G1599\"* out|strong=\"G1519\"* by|strong=\"G5259\"* the|strong=\"G1519\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, they|strong=\"G3588\"* went|strong=\"G2718\"* down|strong=\"G2718\"* to|strong=\"G1519\"* Seleucia|strong=\"G4581\"*. From|strong=\"G5259\"* there|strong=\"G1564\"* they|strong=\"G3588\"* sailed to|strong=\"G1519\"* Cyprus|strong=\"G2954\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G3588\"* at|strong=\"G1722\"* Salamis|strong=\"G4529\"*, they|strong=\"G2532\"* proclaimed|strong=\"G2605\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* word|strong=\"G3056\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Jewish|strong=\"G2453\"* synagogues|strong=\"G4864\"*. They|strong=\"G2532\"* also|strong=\"G2532\"* had|strong=\"G2192\"* John|strong=\"G2491\"* as|strong=\"G1722\"* their|strong=\"G2532\"* attendant|strong=\"G5257\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G3739\"* gone|strong=\"G1330\"* through|strong=\"G1330\"* the|strong=\"G1161\"* island|strong=\"G3520\"* to|strong=\"G5100\"* Paphos|strong=\"G3974\"*, they|strong=\"G1161\"* found|strong=\"G2147\"* a|strong=\"G2147\"* certain|strong=\"G5100\"* sorcerer|strong=\"G3097\"*, a|strong=\"G2147\"* false|strong=\"G5578\"* prophet|strong=\"G5578\"*, a|strong=\"G2147\"* Jew|strong=\"G2453\"* whose|strong=\"G3739\"* name|strong=\"G3686\"* was|strong=\"G3588\"* Bar Jesus," + }, + { + "verseNum": 7, + "text": "who|strong=\"G3739\"* was|strong=\"G1510\"* with|strong=\"G4862\"* the|strong=\"G2532\"* proconsul, Sergius|strong=\"G4588\"* Paulus|strong=\"G3972\"*, a|strong=\"G2532\"* man|strong=\"G3778\"* of|strong=\"G3056\"* understanding. This|strong=\"G3778\"* man|strong=\"G3778\"* summoned|strong=\"G4341\"* Barnabas and|strong=\"G2532\"* Saul|strong=\"G4569\"*, and|strong=\"G2532\"* sought|strong=\"G1934\"* to|strong=\"G2532\"* hear the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* Elymas|strong=\"G1681\"* the|strong=\"G1161\"* sorcerer|strong=\"G3097\"* (for|strong=\"G1063\"* so|strong=\"G3779\"* is|strong=\"G3588\"* his|strong=\"G2212\"* name|strong=\"G3686\"* by|strong=\"G1063\"* interpretation|strong=\"G3177\"*) withstood them|strong=\"G3588\"*, seeking|strong=\"G2212\"* to|strong=\"G2212\"* turn|strong=\"G1294\"* the|strong=\"G1161\"* proconsul away|strong=\"G1294\"* from|strong=\"G3588\"* the|strong=\"G1161\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* Saul|strong=\"G4569\"*, who|strong=\"G3588\"* is|strong=\"G3588\"* also|strong=\"G2532\"* called|strong=\"G3972\"* Paul|strong=\"G3972\"*, filled|strong=\"G4130\"* with|strong=\"G2532\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, fastened his|strong=\"G1519\"* eyes on|strong=\"G1519\"* him|strong=\"G3588\"*" + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"*, “You|strong=\"G3004\"* son|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G2532\"* devil|strong=\"G1228\"*, full|strong=\"G4134\"* of|strong=\"G5207\"* all|strong=\"G3956\"* deceit|strong=\"G1388\"* and|strong=\"G2532\"* all|strong=\"G3956\"* cunning, you|strong=\"G3004\"* enemy|strong=\"G2190\"* of|strong=\"G5207\"* all|strong=\"G3956\"* righteousness|strong=\"G1343\"*, will|strong=\"G2532\"* you|strong=\"G3004\"* not|strong=\"G3756\"* cease|strong=\"G3973\"* to|strong=\"G2532\"* pervert|strong=\"G1294\"* the|strong=\"G2532\"* right|strong=\"G2117\"* ways|strong=\"G3598\"* of|strong=\"G5207\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*?" + }, + { + "verseNum": 11, + "text": "Now|strong=\"G1161\"*, behold|strong=\"G2400\"*, the|strong=\"G2532\"* hand|strong=\"G5495\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* is|strong=\"G1510\"* on|strong=\"G1909\"* you|strong=\"G4771\"*, and|strong=\"G2532\"* you|strong=\"G4771\"* will|strong=\"G1510\"* be|strong=\"G1510\"* blind|strong=\"G5185\"*, not|strong=\"G3361\"* seeing|strong=\"G3708\"* the|strong=\"G2532\"* sun|strong=\"G2246\"* for|strong=\"G1909\"* a|strong=\"G2532\"* season|strong=\"G2540\"*!”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"G5119\"* the|strong=\"G1909\"* proconsul, when|strong=\"G1096\"* he|strong=\"G3588\"* saw|strong=\"G3708\"* what|strong=\"G3588\"* was|strong=\"G1096\"* done|strong=\"G1096\"*, believed|strong=\"G4100\"*, being|strong=\"G1096\"* astonished|strong=\"G1605\"* at|strong=\"G1909\"* the|strong=\"G1909\"* teaching|strong=\"G1322\"* of|strong=\"G2962\"* the|strong=\"G1909\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"G1161\"* Paul|strong=\"G3972\"* and|strong=\"G1161\"* his|strong=\"G1519\"* company|strong=\"G4012\"* set|strong=\"G2064\"* sail from|strong=\"G2064\"* Paphos|strong=\"G3974\"* and|strong=\"G1161\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Perga|strong=\"G4011\"* in|strong=\"G1519\"* Pamphylia|strong=\"G3828\"*. John|strong=\"G2491\"* departed from|strong=\"G2064\"* them|strong=\"G3588\"* and|strong=\"G1161\"* returned|strong=\"G5290\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"*, passing|strong=\"G1330\"* on|strong=\"G1519\"* from|strong=\"G2064\"* Perga|strong=\"G4011\"*, came|strong=\"G2064\"* to|strong=\"G1519\"* Antioch of|strong=\"G2250\"* Pisidia|strong=\"G4099\"*. They|strong=\"G2532\"* went|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* synagogue|strong=\"G4864\"* on|strong=\"G1519\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"* day|strong=\"G2250\"* and|strong=\"G2532\"* sat|strong=\"G2523\"* down|strong=\"G2523\"*." + }, + { + "verseNum": 15, + "text": "After|strong=\"G3326\"* the|strong=\"G1722\"* reading of|strong=\"G3056\"* the|strong=\"G1722\"* law|strong=\"G3551\"* and|strong=\"G2532\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"*, the|strong=\"G1722\"* rulers of|strong=\"G3056\"* the|strong=\"G1722\"* synagogue sent|strong=\"G2532\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Brothers, if|strong=\"G1487\"* you|strong=\"G5210\"* have|strong=\"G2532\"* any|strong=\"G5100\"* word|strong=\"G3056\"* of|strong=\"G3056\"* exhortation|strong=\"G3874\"* for|strong=\"G4314\"* the|strong=\"G1722\"* people|strong=\"G2992\"*, speak|strong=\"G3004\"*.”" + }, + { + "verseNum": 16, + "text": "Paul|strong=\"G3972\"* stood|strong=\"G3588\"* up|strong=\"G2532\"*, and|strong=\"G2532\"* gesturing|strong=\"G2678\"* with|strong=\"G2532\"* his|strong=\"G2532\"* hand|strong=\"G5495\"* said|strong=\"G3004\"*, “Men|strong=\"G3588\"* of|strong=\"G2316\"* Israel|strong=\"G2475\"*, and|strong=\"G2532\"* you|strong=\"G3004\"* who|strong=\"G3588\"* fear|strong=\"G5399\"* God|strong=\"G2316\"*, listen." + }, + { + "verseNum": 17, + "text": "The|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G1537\"* this|strong=\"G3778\"* people|strong=\"G2992\"*+ 13:17 TR, NU add “Israel”* chose|strong=\"G1586\"* our|strong=\"G2316\"* fathers|strong=\"G3962\"*, and|strong=\"G2532\"* exalted|strong=\"G5312\"* the|strong=\"G1722\"* people|strong=\"G2992\"* when|strong=\"G2532\"* they|strong=\"G2532\"* stayed as|strong=\"G1722\"* aliens in|strong=\"G1722\"* the|strong=\"G1722\"* land|strong=\"G1093\"* of|strong=\"G1537\"* Egypt, and|strong=\"G2532\"* with|strong=\"G3326\"* an|strong=\"G2532\"* uplifted|strong=\"G5308\"* arm|strong=\"G1023\"*, he|strong=\"G2532\"* led|strong=\"G1806\"* them|strong=\"G3588\"* out|strong=\"G1537\"* of|strong=\"G1537\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1722\"* a|strong=\"G5613\"* period|strong=\"G5550\"* of|strong=\"G2532\"* about|strong=\"G5613\"* forty|strong=\"G5063\"* years|strong=\"G5063\"* he|strong=\"G2532\"* put|strong=\"G2532\"* up|strong=\"G2532\"* with|strong=\"G1722\"* them|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* destroyed|strong=\"G2507\"* seven|strong=\"G2033\"* nations|strong=\"G1484\"* in|strong=\"G1722\"* the|strong=\"G1722\"* land|strong=\"G1093\"* of|strong=\"G2532\"* Canaan|strong=\"G5477\"*, he|strong=\"G2532\"* gave|strong=\"G2532\"* them|strong=\"G3588\"* their|strong=\"G2532\"* land|strong=\"G1093\"* for|strong=\"G1722\"* an|strong=\"G2532\"* inheritance|strong=\"G2624\"* for|strong=\"G1722\"* about|strong=\"G1722\"* four hundred fifty years." + }, + { + "verseNum": 20, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, he|strong=\"G2532\"* gave|strong=\"G1325\"* them|strong=\"G1325\"* judges|strong=\"G2923\"* until|strong=\"G2193\"* Samuel|strong=\"G4545\"* the|strong=\"G2532\"* prophet|strong=\"G4396\"*." + }, + { + "verseNum": 21, + "text": "Afterward|strong=\"G2547\"* they|strong=\"G2532\"* asked for|strong=\"G2532\"* a|strong=\"G2532\"* king|strong=\"G3588\"*, and|strong=\"G2532\"* God|strong=\"G2316\"* gave|strong=\"G1325\"* to|strong=\"G2532\"* them|strong=\"G3588\"* Saul|strong=\"G4549\"* the|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G1537\"* Kish|strong=\"G2797\"*, a|strong=\"G2532\"* man|strong=\"G5207\"* of|strong=\"G1537\"* the|strong=\"G2532\"* tribe|strong=\"G5443\"* of|strong=\"G1537\"* Benjamin, for|strong=\"G2532\"* forty|strong=\"G5062\"* years|strong=\"G2094\"*." + }, + { + "verseNum": 22, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* removed|strong=\"G3179\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* raised|strong=\"G1453\"* up|strong=\"G1453\"* David|strong=\"G1138\"* to|strong=\"G1519\"* be|strong=\"G2532\"* their|strong=\"G2532\"* king|strong=\"G3588\"*, to|strong=\"G1519\"* whom|strong=\"G3739\"* he|strong=\"G2532\"* also|strong=\"G2532\"* testified|strong=\"G3140\"*, ‘I|strong=\"G1473\"* have|strong=\"G2532\"* found|strong=\"G2147\"* David|strong=\"G1138\"* the|strong=\"G2532\"* son of|strong=\"G2532\"* Jesse|strong=\"G2421\"*, a|strong=\"G2532\"* man|strong=\"G3956\"* after|strong=\"G2596\"* my|strong=\"G3956\"* heart|strong=\"G2588\"*, who|strong=\"G3739\"* will|strong=\"G2307\"* do|strong=\"G4160\"* all|strong=\"G3956\"* my|strong=\"G3956\"* will|strong=\"G2307\"*.’" + }, + { + "verseNum": 23, + "text": "From|strong=\"G2596\"* this|strong=\"G3778\"* man|strong=\"G3778\"*’s offspring, God|strong=\"G2316\"* has|strong=\"G2316\"* brought salvation+ 13:23 TR, NU read “a Savior, Jesus” instead of “salvation”* to|strong=\"G2596\"* Israel|strong=\"G2474\"* according|strong=\"G2596\"* to|strong=\"G2596\"* his|strong=\"G2596\"* promise|strong=\"G1860\"*," + }, + { + "verseNum": 24, + "text": "before|strong=\"G4253\"* his|strong=\"G3956\"* coming|strong=\"G1529\"*, when|strong=\"G3588\"* John|strong=\"G2491\"* had|strong=\"G3588\"* first|strong=\"G3588\"* preached|strong=\"G4296\"* the|strong=\"G3956\"* baptism of|strong=\"G3956\"* repentance|strong=\"G3341\"* to|strong=\"G3956\"* Israel|strong=\"G2474\"*.+ 13:24 TR, NU read “to all the people of Israel” instead of “to Israel”*" + }, + { + "verseNum": 25, + "text": "As|strong=\"G5613\"* John|strong=\"G2491\"* was|strong=\"G1510\"* fulfilling his|strong=\"G3708\"* course|strong=\"G1408\"*, he|strong=\"G1161\"* said|strong=\"G3004\"*, ‘What|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G3739\"* suppose|strong=\"G5101\"* that|strong=\"G3739\"* I|strong=\"G1473\"* am|strong=\"G1510\"*? I|strong=\"G1473\"* am|strong=\"G1510\"* not|strong=\"G3756\"* he|strong=\"G1161\"*. But|strong=\"G1161\"* behold|strong=\"G2400\"*, one|strong=\"G3739\"* comes|strong=\"G2064\"* after|strong=\"G3326\"* me|strong=\"G1473\"*, the|strong=\"G1161\"* sandals|strong=\"G5266\"* of|strong=\"G3588\"* whose|strong=\"G3739\"* feet|strong=\"G4228\"* I|strong=\"G1473\"* am|strong=\"G1510\"* not|strong=\"G3756\"* worthy to|strong=\"G3004\"* untie|strong=\"G3089\"*.’" + }, + { + "verseNum": 26, + "text": "“Brothers, children|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G1722\"* stock|strong=\"G1085\"* of|strong=\"G5207\"* Abraham, and|strong=\"G2532\"* those|strong=\"G3588\"* among|strong=\"G1722\"* you|strong=\"G5210\"* who|strong=\"G3588\"* fear|strong=\"G5399\"* God|strong=\"G2316\"*, the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G5207\"* this|strong=\"G3778\"* salvation|strong=\"G4991\"* is|strong=\"G3588\"* sent|strong=\"G1821\"* out|strong=\"G2532\"* to|strong=\"G2532\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"G1063\"* those|strong=\"G3588\"* who|strong=\"G3588\"* dwell|strong=\"G2730\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"*, and|strong=\"G2532\"* their|strong=\"G2532\"* rulers, because|strong=\"G1063\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* know|strong=\"G1722\"* him|strong=\"G3588\"*, nor|strong=\"G2532\"* the|strong=\"G1722\"* voices|strong=\"G5456\"* of|strong=\"G2532\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"* which|strong=\"G3588\"* are|strong=\"G3588\"* read every|strong=\"G3956\"* Sabbath|strong=\"G4521\"*, fulfilled|strong=\"G4137\"* them|strong=\"G3588\"* by|strong=\"G1722\"* condemning|strong=\"G2919\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 28, + "text": "Though|strong=\"G2532\"* they|strong=\"G2532\"* found|strong=\"G2147\"* no|strong=\"G3367\"* cause|strong=\"G3367\"* for|strong=\"G2532\"* death|strong=\"G2288\"*, they|strong=\"G2532\"* still asked Pilate|strong=\"G4091\"* to|strong=\"G2532\"* have|strong=\"G2532\"* him|strong=\"G2532\"* killed." + }, + { + "verseNum": 29, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G3588\"* fulfilled|strong=\"G5055\"* all|strong=\"G3956\"* things|strong=\"G3956\"* that|strong=\"G3588\"* were|strong=\"G3588\"* written|strong=\"G1125\"* about|strong=\"G4012\"* him|strong=\"G3588\"*, they|strong=\"G1161\"* took|strong=\"G2507\"* him|strong=\"G3588\"* down|strong=\"G5087\"* from|strong=\"G3588\"* the|strong=\"G1519\"* tree|strong=\"G3586\"* and|strong=\"G1161\"* laid|strong=\"G5087\"* him|strong=\"G3588\"* in|strong=\"G1519\"* a|strong=\"G5613\"* tomb|strong=\"G3419\"*." + }, + { + "verseNum": 30, + "text": "But|strong=\"G1161\"* God|strong=\"G2316\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* from|strong=\"G1537\"* the|strong=\"G1537\"* dead|strong=\"G3498\"*," + }, + { + "verseNum": 31, + "text": "and|strong=\"G2250\"* he|strong=\"G3739\"* was|strong=\"G1510\"* seen|strong=\"G3708\"* for|strong=\"G1519\"* many|strong=\"G4183\"* days|strong=\"G2250\"* by|strong=\"G1909\"* those|strong=\"G3588\"* who|strong=\"G3739\"* came|strong=\"G3588\"* up|strong=\"G1519\"* with|strong=\"G4314\"* him|strong=\"G3588\"* from|strong=\"G3588\"* Galilee|strong=\"G1056\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*, who|strong=\"G3739\"* are|strong=\"G1510\"* his|strong=\"G1519\"* witnesses|strong=\"G3144\"* to|strong=\"G1519\"* the|strong=\"G1519\"* people|strong=\"G2992\"*." + }, + { + "verseNum": 32, + "text": "We|strong=\"G2249\"* bring|strong=\"G2097\"* you|strong=\"G5210\"* good|strong=\"G2097\"* news|strong=\"G2097\"* of|strong=\"G2316\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* made|strong=\"G1096\"* to|strong=\"G4314\"* the|strong=\"G2532\"* fathers|strong=\"G3962\"*," + }, + { + "verseNum": 33, + "text": "that|strong=\"G3588\"* God|strong=\"G2316\"* has|strong=\"G2316\"* fulfilled|strong=\"G1603\"* this|strong=\"G3588\"* to|strong=\"G2532\"* us|strong=\"G1722\"*, their|strong=\"G2532\"* children|strong=\"G5043\"*, in|strong=\"G1722\"* that|strong=\"G3588\"* he|strong=\"G2532\"* raised|strong=\"G2316\"* up|strong=\"G2532\"* Jesus|strong=\"G2424\"*. As|strong=\"G5613\"* it|strong=\"G2532\"* is|strong=\"G1510\"* also|strong=\"G2532\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* second|strong=\"G1208\"* psalm|strong=\"G5568\"*," + }, + { + "verseNum": 34, + "text": "“Concerning|strong=\"G1519\"* that|strong=\"G3754\"* he|strong=\"G1161\"* raised|strong=\"G3498\"* him|strong=\"G3588\"* up|strong=\"G1519\"* from|strong=\"G1537\"* the|strong=\"G1519\"* dead|strong=\"G3498\"*, now|strong=\"G1161\"* no|strong=\"G3371\"* more|strong=\"G3371\"* to|strong=\"G1519\"* return|strong=\"G5290\"* to|strong=\"G1519\"* corruption|strong=\"G1312\"*, he|strong=\"G1161\"* has|strong=\"G3748\"* spoken|strong=\"G3004\"* thus|strong=\"G3779\"*: ‘I|strong=\"G1161\"* will|strong=\"G3195\"* give|strong=\"G1325\"* you|strong=\"G5210\"* the|strong=\"G1519\"* holy|strong=\"G3741\"* and|strong=\"G1161\"* sure|strong=\"G4103\"* blessings of|strong=\"G1537\"* David|strong=\"G1138\"*.’+ 13:34 Isaiah 55:3*" + }, + { + "verseNum": 35, + "text": "Therefore|strong=\"G1360\"* he|strong=\"G2532\"* says|strong=\"G3004\"* also|strong=\"G2532\"* in|strong=\"G1722\"* another|strong=\"G2087\"* psalm, ‘You|strong=\"G4771\"* will|strong=\"G2532\"* not|strong=\"G3756\"* allow|strong=\"G1325\"* your|strong=\"G2532\"* Holy|strong=\"G3741\"* One|strong=\"G3588\"* to|strong=\"G2532\"* see|strong=\"G3708\"* decay|strong=\"G1312\"*.’+ 13:35 Psalms 16:10*" + }, + { + "verseNum": 36, + "text": "For|strong=\"G1063\"* David|strong=\"G1138\"*, after|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* in|strong=\"G2532\"* his|strong=\"G2398\"* own|strong=\"G2398\"* generation|strong=\"G1074\"* served|strong=\"G5256\"* the|strong=\"G2532\"* counsel|strong=\"G1012\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, fell|strong=\"G2837\"* asleep|strong=\"G2837\"*, was|strong=\"G3588\"* laid|strong=\"G4369\"* with|strong=\"G4314\"* his|strong=\"G2398\"* fathers|strong=\"G3962\"*, and|strong=\"G2532\"* saw|strong=\"G3708\"* decay|strong=\"G1312\"*." + }, + { + "verseNum": 37, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* whom|strong=\"G3739\"* God|strong=\"G2316\"* raised|strong=\"G1453\"* up|strong=\"G1453\"* saw|strong=\"G3708\"* no|strong=\"G3756\"* decay|strong=\"G1312\"*." + }, + { + "verseNum": 38, + "text": "Be|strong=\"G1510\"* it|strong=\"G2532\"* known|strong=\"G1110\"* to|strong=\"G2532\"* you|strong=\"G5210\"* therefore|strong=\"G3767\"*, brothers,+ 13:38 The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.”* that|strong=\"G3754\"* through|strong=\"G1223\"* this|strong=\"G3778\"* man|strong=\"G3778\"* is|strong=\"G1510\"* proclaimed|strong=\"G2605\"* to|strong=\"G2532\"* you|strong=\"G5210\"* remission of|strong=\"G1223\"* sins;" + }, + { + "verseNum": 39, + "text": "and|strong=\"G3956\"* by|strong=\"G1722\"* him|strong=\"G3588\"* everyone|strong=\"G3956\"* who|strong=\"G3739\"* believes|strong=\"G4100\"* is|strong=\"G3588\"* justified|strong=\"G1344\"* from|strong=\"G3756\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, from|strong=\"G3756\"* which|strong=\"G3739\"* you|strong=\"G3739\"* could|strong=\"G1410\"* not|strong=\"G3756\"* be|strong=\"G3756\"* justified|strong=\"G1344\"* by|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* of|strong=\"G3551\"* Moses|strong=\"G3475\"*." + }, + { + "verseNum": 40, + "text": "Beware therefore|strong=\"G3767\"*, lest|strong=\"G3361\"* that|strong=\"G3588\"* come|strong=\"G1904\"* on|strong=\"G1722\"* you|strong=\"G1722\"* which|strong=\"G3588\"* is|strong=\"G3588\"* spoken|strong=\"G3004\"* in|strong=\"G1722\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"*:" + }, + { + "verseNum": 41, + "text": "‘Behold|strong=\"G3708\"*, you|strong=\"G5210\"* scoffers|strong=\"G2707\"*!" + }, + { + "verseNum": 42, + "text": "So|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G1519\"* Jews went|strong=\"G3588\"* out|strong=\"G1826\"* of|strong=\"G4487\"* the|strong=\"G1519\"* synagogue, the|strong=\"G1519\"* Gentiles begged|strong=\"G3870\"* that|strong=\"G3588\"* these|strong=\"G3778\"* words|strong=\"G4487\"* might|strong=\"G3778\"* be|strong=\"G1519\"* preached|strong=\"G2980\"* to|strong=\"G1519\"* them|strong=\"G3588\"* the|strong=\"G1519\"* next|strong=\"G3342\"* Sabbath|strong=\"G4521\"*." + }, + { + "verseNum": 43, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G2532\"* synagogue|strong=\"G4864\"* broke|strong=\"G3089\"* up|strong=\"G2532\"*, many|strong=\"G4183\"* of|strong=\"G2316\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* of|strong=\"G2316\"* the|strong=\"G2532\"* devout|strong=\"G4576\"* proselytes|strong=\"G4339\"* followed|strong=\"G3982\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* Barnabas; who|strong=\"G3588\"*, speaking|strong=\"G4354\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, urged them|strong=\"G3588\"* to|strong=\"G2532\"* continue|strong=\"G2532\"* in|strong=\"G2532\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 44, + "text": "The|strong=\"G3956\"* next|strong=\"G2064\"* Sabbath|strong=\"G4521\"*, almost|strong=\"G4975\"* the|strong=\"G3956\"* whole|strong=\"G3956\"* city|strong=\"G4172\"* was|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* to|strong=\"G2064\"* hear the|strong=\"G3956\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2962\"*." + }, + { + "verseNum": 45, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* filled|strong=\"G4130\"* with|strong=\"G2532\"* jealousy|strong=\"G2205\"*, and|strong=\"G2532\"* contradicted the|strong=\"G2532\"* things|strong=\"G3588\"* which|strong=\"G3588\"* were|strong=\"G3588\"* spoken|strong=\"G2980\"* by|strong=\"G5259\"* Paul|strong=\"G3972\"*, and|strong=\"G2532\"* blasphemed." + }, + { + "verseNum": 46, + "text": "Paul|strong=\"G3972\"* and|strong=\"G2532\"* Barnabas spoke|strong=\"G2980\"* out|strong=\"G2532\"* boldly|strong=\"G3955\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “It|strong=\"G2532\"* was|strong=\"G1510\"* necessary that|strong=\"G3588\"* God|strong=\"G2316\"*’s word|strong=\"G3056\"* should|strong=\"G2316\"* be|strong=\"G1510\"* spoken|strong=\"G2980\"* to|strong=\"G1519\"* you|strong=\"G5210\"* first|strong=\"G4413\"*. Since|strong=\"G1894\"* indeed|strong=\"G2532\"* you|strong=\"G5210\"* thrust it|strong=\"G2532\"* from|strong=\"G2532\"* yourselves|strong=\"G1438\"*, and|strong=\"G2532\"* judge|strong=\"G2919\"* yourselves|strong=\"G1438\"* unworthy|strong=\"G3756\"* of|strong=\"G3056\"* eternal life|strong=\"G2222\"*, behold|strong=\"G2400\"*, we|strong=\"G2532\"* turn|strong=\"G4762\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*." + }, + { + "verseNum": 47, + "text": "For|strong=\"G1063\"* so|strong=\"G3779\"* has|strong=\"G2962\"* the|strong=\"G1519\"* Lord|strong=\"G2962\"* commanded|strong=\"G1781\"* us|strong=\"G1519\"*, saying," + }, + { + "verseNum": 48, + "text": "As|strong=\"G3745\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"* heard|strong=\"G1484\"* this|strong=\"G3588\"*, they|strong=\"G2532\"* were|strong=\"G1510\"* glad|strong=\"G5463\"* and|strong=\"G2532\"* glorified|strong=\"G1392\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2532\"*. As|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* were|strong=\"G1510\"* appointed|strong=\"G5021\"* to|strong=\"G1519\"* eternal life|strong=\"G2222\"* believed|strong=\"G4100\"*." + }, + { + "verseNum": 49, + "text": "The|strong=\"G1161\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* word|strong=\"G3056\"* was|strong=\"G3588\"* spread|strong=\"G1308\"* abroad throughout|strong=\"G2596\"* all|strong=\"G3650\"* the|strong=\"G1161\"* region|strong=\"G5561\"*." + }, + { + "verseNum": 50, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* stirred|strong=\"G2453\"* up|strong=\"G2532\"* the|strong=\"G2532\"* devout|strong=\"G4576\"* and|strong=\"G2532\"* prominent|strong=\"G2158\"* women|strong=\"G1135\"* and|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G4413\"* men|strong=\"G4413\"* of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, and|strong=\"G2532\"* stirred|strong=\"G2453\"* up|strong=\"G2532\"* a|strong=\"G2532\"* persecution|strong=\"G1375\"* against|strong=\"G1909\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* Barnabas, and|strong=\"G2532\"* threw|strong=\"G1544\"* them|strong=\"G3588\"* out|strong=\"G1544\"* of|strong=\"G2532\"* their|strong=\"G1438\"* borders|strong=\"G3725\"*." + }, + { + "verseNum": 51, + "text": "But|strong=\"G1161\"* they|strong=\"G1161\"* shook|strong=\"G1621\"* off|strong=\"G1621\"* the|strong=\"G1519\"* dust|strong=\"G2868\"* of|strong=\"G1909\"* their|strong=\"G1438\"* feet|strong=\"G4228\"* against|strong=\"G1909\"* them|strong=\"G3588\"*, and|strong=\"G1161\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Iconium|strong=\"G2430\"*." + }, + { + "verseNum": 52, + "text": "The|strong=\"G2532\"* disciples|strong=\"G3101\"* were|strong=\"G3588\"* filled|strong=\"G4137\"* with|strong=\"G2532\"* joy|strong=\"G5479\"* and|strong=\"G2532\"* with|strong=\"G2532\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"G1722\"* Iconium|strong=\"G2430\"*, they|strong=\"G2532\"* entered|strong=\"G1525\"* together|strong=\"G2596\"* into|strong=\"G1519\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"*, and|strong=\"G2532\"* so|strong=\"G3779\"* spoke|strong=\"G2980\"* that|strong=\"G3588\"* a|strong=\"G1096\"* great|strong=\"G4183\"* multitude|strong=\"G4128\"* both|strong=\"G2532\"* of|strong=\"G2532\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* of|strong=\"G2532\"* Greeks|strong=\"G1672\"* believed|strong=\"G4100\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* disbelieving+ 14:2 or, disobedient* Jews|strong=\"G2453\"* stirred|strong=\"G2453\"* up|strong=\"G2532\"* and|strong=\"G2532\"* embittered|strong=\"G2559\"* the|strong=\"G2532\"* souls|strong=\"G5590\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"* against|strong=\"G2596\"* the|strong=\"G2532\"* brothers." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"G3767\"* they|strong=\"G2532\"* stayed|strong=\"G1304\"* there|strong=\"G2532\"* a|strong=\"G1096\"* long|strong=\"G2425\"* time|strong=\"G5550\"*, speaking|strong=\"G3955\"* boldly|strong=\"G3955\"* in|strong=\"G1909\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, who|strong=\"G3588\"* testified|strong=\"G3140\"* to|strong=\"G2532\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* his|strong=\"G1223\"* grace|strong=\"G5485\"*, granting|strong=\"G1325\"* signs|strong=\"G4592\"* and|strong=\"G2532\"* wonders|strong=\"G5059\"* to|strong=\"G2532\"* be|strong=\"G1096\"* done|strong=\"G1096\"* by|strong=\"G1223\"* their|strong=\"G2532\"* hands|strong=\"G5495\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* multitude|strong=\"G4128\"* of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"* was|strong=\"G1510\"* divided|strong=\"G4977\"*. Part|strong=\"G1161\"* sided|strong=\"G1510\"* with|strong=\"G4862\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* part|strong=\"G1161\"* with|strong=\"G4862\"* the|strong=\"G2532\"* apostles." + }, + { + "verseNum": 5, + "text": "When|strong=\"G1161\"* some|strong=\"G3588\"* of|strong=\"G2532\"* both|strong=\"G2532\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, with|strong=\"G4862\"* their|strong=\"G1438\"* rulers, made|strong=\"G1096\"* a|strong=\"G1096\"* violent attempt|strong=\"G3730\"* to|strong=\"G2532\"* mistreat|strong=\"G5195\"* and|strong=\"G2532\"* stone|strong=\"G3036\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 6, + "text": "they|strong=\"G2532\"* became|strong=\"G3588\"* aware|strong=\"G4894\"* of|strong=\"G2532\"* it|strong=\"G2532\"* and|strong=\"G2532\"* fled|strong=\"G2703\"* to|strong=\"G1519\"* the|strong=\"G2532\"* cities|strong=\"G4172\"* of|strong=\"G2532\"* Lycaonia|strong=\"G3071\"*, Lystra|strong=\"G3082\"*, Derbe|strong=\"G1191\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* surrounding|strong=\"G4066\"* region|strong=\"G4066\"*." + }, + { + "verseNum": 7, + "text": "There|strong=\"G2546\"* they|strong=\"G1510\"* preached|strong=\"G2097\"* the|strong=\"G2097\"* Good|strong=\"G2097\"* News|strong=\"G2097\"*." + }, + { + "verseNum": 8, + "text": "At|strong=\"G1722\"* Lystra|strong=\"G3082\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* sat|strong=\"G2521\"*, impotent in|strong=\"G1722\"* his|strong=\"G1722\"* feet|strong=\"G4228\"*, a|strong=\"G2532\"* cripple|strong=\"G5560\"* from|strong=\"G1537\"* his|strong=\"G1722\"* mother|strong=\"G3384\"*’s womb|strong=\"G2836\"*, who|strong=\"G3739\"* never|strong=\"G3763\"* had|strong=\"G2532\"* walked|strong=\"G4043\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* was|strong=\"G3588\"* listening to|strong=\"G2532\"* Paul|strong=\"G3972\"* speaking|strong=\"G2980\"*, who|strong=\"G3739\"*, fastening eyes on|strong=\"G4102\"* him|strong=\"G3588\"* and|strong=\"G2532\"* seeing|strong=\"G3708\"* that|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2192\"* faith|strong=\"G4102\"* to|strong=\"G2532\"* be|strong=\"G2532\"* made|strong=\"G4982\"* whole|strong=\"G4982\"*," + }, + { + "verseNum": 10, + "text": "said|strong=\"G3004\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, “Stand upright|strong=\"G3717\"* on|strong=\"G1909\"* your|strong=\"G2532\"* feet|strong=\"G4228\"*!” He|strong=\"G2532\"* leaped up|strong=\"G2532\"* and|strong=\"G2532\"* walked|strong=\"G4043\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"G3739\"* the|strong=\"G4314\"* multitude|strong=\"G3793\"* saw|strong=\"G3708\"* what|strong=\"G3739\"* Paul|strong=\"G3972\"* had|strong=\"G2316\"* done|strong=\"G4160\"*, they|strong=\"G3588\"* lifted|strong=\"G1869\"* up|strong=\"G1869\"* their|strong=\"G3588\"* voice|strong=\"G5456\"*, saying|strong=\"G3004\"* in|strong=\"G2316\"* the|strong=\"G4314\"* language|strong=\"G5456\"* of|strong=\"G2316\"* Lycaonia|strong=\"G3072\"*, “The|strong=\"G4314\"* gods|strong=\"G2316\"* have|strong=\"G1473\"* come|strong=\"G2597\"* down|strong=\"G2597\"* to|strong=\"G4314\"* us|strong=\"G3004\"* in|strong=\"G2316\"* the|strong=\"G4314\"* likeness|strong=\"G3666\"* of|strong=\"G2316\"* men|strong=\"G3588\"*!”" + }, + { + "verseNum": 12, + "text": "They|strong=\"G1161\"* called|strong=\"G2564\"* Barnabas “Jupiter|strong=\"G2203\"*”, and|strong=\"G1161\"* Paul|strong=\"G3972\"* “Mercury”, because|strong=\"G1894\"* he|strong=\"G1161\"* was|strong=\"G1510\"* the|strong=\"G1161\"* chief|strong=\"G2233\"* speaker|strong=\"G3056\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"G2532\"* priest|strong=\"G2409\"* of|strong=\"G2532\"* Jupiter|strong=\"G2203\"*, whose|strong=\"G3588\"* temple was|strong=\"G1510\"* in|strong=\"G1909\"* front|strong=\"G4253\"* of|strong=\"G2532\"* their|strong=\"G2532\"* city|strong=\"G4172\"*, brought|strong=\"G5342\"* oxen|strong=\"G5022\"* and|strong=\"G2532\"* garlands|strong=\"G4725\"* to|strong=\"G2532\"* the|strong=\"G2532\"* gates|strong=\"G4440\"*, and|strong=\"G2532\"* would|strong=\"G2309\"* have|strong=\"G2309\"* made|strong=\"G5342\"* a|strong=\"G2532\"* sacrifice|strong=\"G2380\"* along|strong=\"G4862\"* with|strong=\"G4862\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G2532\"* apostles, Barnabas and|strong=\"G2532\"* Paul|strong=\"G3972\"*, heard of|strong=\"G2532\"* it|strong=\"G2532\"*, they|strong=\"G2532\"* tore|strong=\"G1284\"* their|strong=\"G2532\"* clothes|strong=\"G2440\"* and|strong=\"G2532\"* sprang into|strong=\"G1519\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*, crying|strong=\"G2896\"* out|strong=\"G2896\"*," + }, + { + "verseNum": 15, + "text": "“Men|strong=\"G3956\"*, why|strong=\"G5101\"* are|strong=\"G1510\"* you|strong=\"G5210\"* doing|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3956\"*? We|strong=\"G2249\"* also|strong=\"G2532\"* are|strong=\"G1510\"* men|strong=\"G3956\"* of|strong=\"G2316\"* the|strong=\"G1722\"* same|strong=\"G3778\"* nature|strong=\"G3663\"* as|strong=\"G1722\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* bring|strong=\"G4160\"* you|strong=\"G5210\"* good|strong=\"G2097\"* news|strong=\"G2097\"*, that|strong=\"G3739\"* you|strong=\"G5210\"* should|strong=\"G2316\"* turn|strong=\"G1994\"* from|strong=\"G2532\"* these|strong=\"G3778\"* vain|strong=\"G3152\"* things|strong=\"G3956\"* to|strong=\"G2532\"* the|strong=\"G1722\"* living|strong=\"G2198\"* God|strong=\"G2316\"*, who|strong=\"G3739\"* made|strong=\"G4160\"* the|strong=\"G1722\"* sky|strong=\"G3772\"*, the|strong=\"G1722\"* earth|strong=\"G1093\"*, the|strong=\"G1722\"* sea|strong=\"G2281\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* that|strong=\"G3739\"* is|strong=\"G1510\"* in|strong=\"G1722\"* them|strong=\"G3588\"*;" + }, + { + "verseNum": 16, + "text": "who|strong=\"G3739\"* in|strong=\"G1722\"* the|strong=\"G1722\"* generations|strong=\"G1074\"* gone|strong=\"G4198\"* by|strong=\"G1722\"* allowed|strong=\"G1439\"* all|strong=\"G3956\"* the|strong=\"G1722\"* nations|strong=\"G1484\"* to|strong=\"G1722\"* walk|strong=\"G4198\"* in|strong=\"G1722\"* their|strong=\"G1722\"* own ways|strong=\"G3598\"*." + }, + { + "verseNum": 17, + "text": "Yet|strong=\"G2532\"* he|strong=\"G2532\"* didn’t|strong=\"G3588\"* leave|strong=\"G1325\"* himself|strong=\"G1438\"* without|strong=\"G2532\"* witness, in|strong=\"G2532\"* that|strong=\"G3588\"* he|strong=\"G2532\"* did|strong=\"G2532\"* good|strong=\"G3756\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* you|strong=\"G5210\"*+ 14:17 TR reads “us” instead of “you”* rains|strong=\"G5205\"* from|strong=\"G2532\"* the|strong=\"G2532\"* sky and|strong=\"G2532\"* fruitful|strong=\"G2593\"* seasons|strong=\"G2540\"*, filling|strong=\"G1705\"* our|strong=\"G2532\"* hearts|strong=\"G2588\"* with|strong=\"G2532\"* food|strong=\"G5160\"* and|strong=\"G2532\"* gladness|strong=\"G2167\"*.”" + }, + { + "verseNum": 18, + "text": "Even|strong=\"G2532\"* saying|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, they|strong=\"G2532\"* hardly|strong=\"G3433\"* stopped the|strong=\"G2532\"* multitudes|strong=\"G3793\"* from|strong=\"G2532\"* making|strong=\"G2532\"* a|strong=\"G2532\"* sacrifice|strong=\"G2380\"* to|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"G1161\"* some|strong=\"G3588\"* Jews|strong=\"G2453\"* from|strong=\"G2532\"* Antioch and|strong=\"G2532\"* Iconium|strong=\"G2430\"* came|strong=\"G2532\"* there|strong=\"G2532\"*, and|strong=\"G2532\"* having|strong=\"G2532\"* persuaded|strong=\"G3982\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"*, they|strong=\"G2532\"* stoned|strong=\"G3034\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* dragged|strong=\"G4951\"* him|strong=\"G3588\"* out|strong=\"G1854\"* of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, supposing|strong=\"G3543\"* that|strong=\"G3588\"* he|strong=\"G2532\"* was|strong=\"G3588\"* dead|strong=\"G2348\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* as|strong=\"G1519\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* stood|strong=\"G3588\"* around|strong=\"G2944\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G1519\"*, and|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* city|strong=\"G4172\"*. On|strong=\"G1519\"* the|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"* he|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* with|strong=\"G4862\"* Barnabas to|strong=\"G1519\"* Derbe|strong=\"G1191\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* preached|strong=\"G2097\"* the|strong=\"G2532\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* to|strong=\"G1519\"* that|strong=\"G3588\"* city|strong=\"G4172\"* and|strong=\"G2532\"* had|strong=\"G2532\"* made|strong=\"G3100\"* many|strong=\"G2425\"* disciples|strong=\"G3100\"*, they|strong=\"G2532\"* returned|strong=\"G5290\"* to|strong=\"G1519\"* Lystra|strong=\"G3082\"*, Iconium|strong=\"G2430\"*, and|strong=\"G2532\"* Antioch," + }, + { + "verseNum": 22, + "text": "strengthening|strong=\"G1991\"* the|strong=\"G2532\"* souls|strong=\"G5590\"* of|strong=\"G1223\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*, exhorting|strong=\"G3870\"* them|strong=\"G3588\"* to|strong=\"G1519\"* continue|strong=\"G1696\"* in|strong=\"G1519\"* the|strong=\"G2532\"* faith|strong=\"G4102\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* through|strong=\"G1223\"* many|strong=\"G4183\"* afflictions|strong=\"G2347\"* we|strong=\"G2249\"* must|strong=\"G1163\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* God|strong=\"G2316\"*’s Kingdom." + }, + { + "verseNum": 23, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G3739\"* appointed|strong=\"G5500\"* elders|strong=\"G4245\"* for|strong=\"G1519\"* them|strong=\"G3588\"* in|strong=\"G1519\"* every|strong=\"G2596\"* assembly|strong=\"G1577\"*, and|strong=\"G1161\"* had|strong=\"G3739\"* prayed|strong=\"G4336\"* with|strong=\"G3326\"* fasting|strong=\"G3521\"*, they|strong=\"G1161\"* commended|strong=\"G3908\"* them|strong=\"G3588\"* to|strong=\"G1519\"* the|strong=\"G1519\"* Lord|strong=\"G2962\"* on|strong=\"G1519\"* whom|strong=\"G3739\"* they|strong=\"G1161\"* had|strong=\"G3739\"* believed|strong=\"G4100\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"G2532\"* passed|strong=\"G1330\"* through|strong=\"G1330\"* Pisidia|strong=\"G4099\"* and|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Pamphylia|strong=\"G3828\"*." + }, + { + "verseNum": 25, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* spoken|strong=\"G2980\"* the|strong=\"G1722\"* word|strong=\"G3056\"* in|strong=\"G1722\"* Perga|strong=\"G4011\"*, they|strong=\"G2532\"* went|strong=\"G2597\"* down|strong=\"G2597\"* to|strong=\"G1519\"* Attalia." + }, + { + "verseNum": 26, + "text": "From|strong=\"G3588\"* there|strong=\"G2547\"* they|strong=\"G3588\"* sailed to|strong=\"G1519\"* Antioch, from|strong=\"G3588\"* where|strong=\"G3739\"* they|strong=\"G3588\"* had|strong=\"G2316\"* been|strong=\"G1510\"* committed|strong=\"G3860\"* to|strong=\"G1519\"* the|strong=\"G1519\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* for|strong=\"G1519\"* the|strong=\"G1519\"* work|strong=\"G2041\"* which|strong=\"G3739\"* they|strong=\"G3588\"* had|strong=\"G2316\"* fulfilled|strong=\"G4137\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* arrived|strong=\"G3854\"* and|strong=\"G2532\"* had|strong=\"G2532\"* gathered|strong=\"G4863\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"* together|strong=\"G4863\"*, they|strong=\"G2532\"* reported all|strong=\"G3745\"* the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G3754\"* God|strong=\"G2316\"* had|strong=\"G2532\"* done|strong=\"G4160\"* with|strong=\"G3326\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2532\"* opened a|strong=\"G2532\"* door|strong=\"G2374\"* of|strong=\"G2316\"* faith|strong=\"G4102\"* to|strong=\"G2532\"* the|strong=\"G2532\"* nations|strong=\"G1484\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"G1161\"* stayed|strong=\"G1304\"* there|strong=\"G1161\"* with|strong=\"G4862\"* the|strong=\"G1161\"* disciples|strong=\"G3101\"* for|strong=\"G1161\"* a|strong=\"G1161\"* long|strong=\"G5550\"* time|strong=\"G5550\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Some|strong=\"G5100\"* men|strong=\"G5100\"* came|strong=\"G2718\"* down|strong=\"G2718\"* from|strong=\"G2532\"* Judea|strong=\"G2449\"* and|strong=\"G2532\"* taught|strong=\"G1321\"* the|strong=\"G2532\"* brothers,+ 15:1 The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.”* “Unless|strong=\"G1437\"* you|strong=\"G1437\"* are|strong=\"G3588\"* circumcised|strong=\"G4059\"* after|strong=\"G2532\"* the|strong=\"G2532\"* custom|strong=\"G1485\"* of|strong=\"G2532\"* Moses|strong=\"G3475\"*, you|strong=\"G1437\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*.”" + }, + { + "verseNum": 2, + "text": "Therefore|strong=\"G1161\"* when|strong=\"G1161\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* Barnabas had|strong=\"G2532\"* no|strong=\"G3756\"* small|strong=\"G3641\"* discord and|strong=\"G2532\"* discussion|strong=\"G2214\"* with|strong=\"G4314\"* them|strong=\"G3588\"*, they|strong=\"G2532\"* appointed|strong=\"G5021\"* Paul|strong=\"G3972\"*, Barnabas, and|strong=\"G2532\"* some|strong=\"G5100\"* others|strong=\"G3588\"* of|strong=\"G1537\"* them|strong=\"G3588\"* to|strong=\"G1519\"* go|strong=\"G1519\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"* to|strong=\"G1519\"* the|strong=\"G2532\"* apostles and|strong=\"G2532\"* elders|strong=\"G4245\"* about|strong=\"G4012\"* this|strong=\"G3778\"* question|strong=\"G2213\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"G2532\"*, being|strong=\"G2532\"* sent|strong=\"G2532\"* on|strong=\"G4311\"* their|strong=\"G2532\"* way|strong=\"G4311\"* by|strong=\"G5259\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"*, passed|strong=\"G1330\"* through|strong=\"G1330\"* both|strong=\"G2532\"* Phoenicia|strong=\"G5403\"* and|strong=\"G2532\"* Samaria|strong=\"G4540\"*, declaring|strong=\"G1555\"* the|strong=\"G2532\"* conversion|strong=\"G1995\"* of|strong=\"G5259\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*. They|strong=\"G2532\"* caused|strong=\"G4160\"* great|strong=\"G3173\"* joy|strong=\"G5479\"* to|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* brothers." + }, + { + "verseNum": 4, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G3854\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* received|strong=\"G3858\"* by|strong=\"G5259\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"* and|strong=\"G2532\"* the|strong=\"G2532\"* apostles and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* reported everything|strong=\"G3745\"* that|strong=\"G3588\"* God|strong=\"G2316\"* had|strong=\"G2532\"* done|strong=\"G4160\"* with|strong=\"G3326\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* some|strong=\"G5100\"* of|strong=\"G3551\"* the|strong=\"G1161\"* sect of|strong=\"G3551\"* the|strong=\"G1161\"* Pharisees|strong=\"G5330\"* who|strong=\"G3588\"* believed|strong=\"G4100\"* rose up|strong=\"G1210\"*, saying|strong=\"G3004\"*, “It|strong=\"G3754\"* is|strong=\"G3588\"* necessary|strong=\"G1163\"* to|strong=\"G3004\"* circumcise|strong=\"G4059\"* them|strong=\"G3588\"*, and|strong=\"G1161\"* to|strong=\"G3004\"* command|strong=\"G3853\"* them|strong=\"G3588\"* to|strong=\"G3004\"* keep|strong=\"G5083\"* the|strong=\"G1161\"* law|strong=\"G3551\"* of|strong=\"G3551\"* Moses|strong=\"G3475\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"G2532\"* apostles and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* were|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* to|strong=\"G2532\"* see|strong=\"G3708\"* about|strong=\"G4012\"* this|strong=\"G3778\"* matter|strong=\"G3056\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"G1161\"* there|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G1096\"* much|strong=\"G4183\"* discussion|strong=\"G2214\"*, Peter|strong=\"G4074\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “Brothers, you|strong=\"G5210\"* know|strong=\"G1987\"* that|strong=\"G3754\"* a|strong=\"G1096\"* good|strong=\"G1223\"* while|strong=\"G1722\"* ago God|strong=\"G2316\"* made|strong=\"G1096\"* a|strong=\"G1096\"* choice|strong=\"G1586\"* among|strong=\"G1722\"* you|strong=\"G5210\"* that|strong=\"G3754\"* by|strong=\"G1223\"* my|strong=\"G1722\"* mouth|strong=\"G4750\"* the|strong=\"G1722\"* nations|strong=\"G1484\"* should|strong=\"G2316\"* hear the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Good|strong=\"G1223\"* News|strong=\"G3056\"* and|strong=\"G2532\"* believe|strong=\"G4100\"*." + }, + { + "verseNum": 8, + "text": "God|strong=\"G2316\"*, who|strong=\"G3588\"* knows|strong=\"G2589\"* the|strong=\"G2532\"* heart|strong=\"G2589\"*, testified|strong=\"G3140\"* about|strong=\"G3588\"* them|strong=\"G3588\"*, giving|strong=\"G1325\"* them|strong=\"G3588\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, just|strong=\"G2531\"* like|strong=\"G2531\"* he|strong=\"G2532\"* did|strong=\"G2532\"* to|strong=\"G2532\"* us|strong=\"G1325\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* made|strong=\"G1252\"* no|strong=\"G3762\"* distinction|strong=\"G1252\"* between|strong=\"G3342\"* us|strong=\"G2249\"* and|strong=\"G2532\"* them|strong=\"G3588\"*, cleansing|strong=\"G2511\"* their|strong=\"G2532\"* hearts|strong=\"G2588\"* by|strong=\"G2532\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"G3568\"* therefore|strong=\"G3767\"* why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G3739\"* tempt|strong=\"G3985\"* God|strong=\"G2316\"*, that|strong=\"G3739\"* you|strong=\"G3739\"* should|strong=\"G2316\"* put|strong=\"G2007\"* a|strong=\"G1909\"* yoke|strong=\"G2218\"* on|strong=\"G1909\"* the|strong=\"G1909\"* neck|strong=\"G5137\"* of|strong=\"G2316\"* the|strong=\"G1909\"* disciples|strong=\"G3101\"* which|strong=\"G3739\"* neither|strong=\"G3777\"* our|strong=\"G2316\"* fathers|strong=\"G3962\"* nor|strong=\"G3777\"* we|strong=\"G2249\"* were|strong=\"G3588\"* able|strong=\"G2480\"* to|strong=\"G1909\"* bear?" + }, + { + "verseNum": 11, + "text": "But|strong=\"G3588\"* we|strong=\"G3739\"* believe|strong=\"G4100\"* that|strong=\"G3739\"* we|strong=\"G3739\"* are|strong=\"G3588\"* saved|strong=\"G4982\"* through|strong=\"G1223\"* the|strong=\"G1223\"* grace|strong=\"G5485\"* of|strong=\"G1223\"* the|strong=\"G1223\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*,+ 15:11 TR adds “Christ”* just|strong=\"G2596\"* as|strong=\"G2596\"* they|strong=\"G3588\"* are|strong=\"G3588\"*.”" + }, + { + "verseNum": 12, + "text": "All|strong=\"G3956\"* the|strong=\"G1722\"* multitude|strong=\"G4128\"* kept|strong=\"G4160\"* silence|strong=\"G4601\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* listened to|strong=\"G2532\"* Barnabas and|strong=\"G2532\"* Paul|strong=\"G3972\"* reporting what|strong=\"G3588\"* signs|strong=\"G4592\"* and|strong=\"G2532\"* wonders|strong=\"G5059\"* God|strong=\"G2316\"* had|strong=\"G2532\"* done|strong=\"G4160\"* among|strong=\"G1722\"* the|strong=\"G1722\"* nations|strong=\"G1484\"* through|strong=\"G1223\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 13, + "text": "After|strong=\"G3326\"* they|strong=\"G1161\"* were|strong=\"G3588\"* silent|strong=\"G4601\"*, James|strong=\"G2385\"* answered|strong=\"G3004\"*, “Brothers, listen to|strong=\"G3004\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 14, + "text": "Simeon|strong=\"G4826\"* has|strong=\"G2316\"* reported how|strong=\"G2531\"* God|strong=\"G2316\"* first|strong=\"G4413\"* visited|strong=\"G1980\"* the|strong=\"G1537\"* nations|strong=\"G1484\"* to|strong=\"G2316\"* take|strong=\"G2983\"* out|strong=\"G1537\"* of|strong=\"G1537\"* them|strong=\"G3588\"* a|strong=\"G2983\"* people|strong=\"G2992\"* for|strong=\"G1537\"* his|strong=\"G2983\"* name|strong=\"G3686\"*." + }, + { + "verseNum": 15, + "text": "This|strong=\"G3778\"* agrees with|strong=\"G2532\"* the|strong=\"G2532\"* words|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"*. As|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 16, + "text": "‘After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"* I|strong=\"G2532\"* will|strong=\"G2532\"* return." + }, + { + "verseNum": 17, + "text": "that|strong=\"G3739\"* the|strong=\"G2532\"* rest|strong=\"G2645\"* of|strong=\"G2532\"* men|strong=\"G3956\"* may|strong=\"G2532\"* seek|strong=\"G1567\"* after|strong=\"G1909\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*:" + }, + { + "verseNum": 18, + "text": "“All of|strong=\"G1110\"* God’s works are known|strong=\"G1110\"* to|strong=\"G1110\"* him from|strong=\"G1110\"* eternity." + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"G1352\"* my|strong=\"G1473\"* judgment|strong=\"G2919\"* is|strong=\"G3588\"* that|strong=\"G3588\"* we|strong=\"G1352\"* don’t|strong=\"G3588\"* trouble|strong=\"G3926\"* those|strong=\"G3588\"* from|strong=\"G3588\"* among|strong=\"G1909\"* the|strong=\"G1909\"* Gentiles|strong=\"G1484\"* who|strong=\"G3588\"* turn|strong=\"G1994\"* to|strong=\"G1909\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 20, + "text": "but|strong=\"G2532\"* that|strong=\"G3588\"* we|strong=\"G2532\"* write|strong=\"G1989\"* to|strong=\"G2532\"* them|strong=\"G3588\"* that|strong=\"G3588\"* they|strong=\"G2532\"* abstain from|strong=\"G2532\"* the|strong=\"G2532\"* pollution of|strong=\"G2532\"* idols|strong=\"G1497\"*, from|strong=\"G2532\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*, from|strong=\"G2532\"* what|strong=\"G3588\"* is|strong=\"G3588\"* strangled|strong=\"G4156\"*, and|strong=\"G2532\"* from|strong=\"G2532\"* blood." + }, + { + "verseNum": 21, + "text": "For|strong=\"G1063\"* Moses|strong=\"G3475\"* from|strong=\"G1537\"* generations|strong=\"G1074\"* of|strong=\"G1537\"* old|strong=\"G2192\"* has|strong=\"G2192\"* in|strong=\"G1722\"* every|strong=\"G3956\"* city|strong=\"G4172\"* those|strong=\"G3588\"* who|strong=\"G3588\"* preach|strong=\"G2784\"* him|strong=\"G3588\"*, being|strong=\"G2192\"* read in|strong=\"G1722\"* the|strong=\"G1722\"* synagogues|strong=\"G4864\"* every|strong=\"G3956\"* Sabbath|strong=\"G4521\"*.”" + }, + { + "verseNum": 22, + "text": "Then|strong=\"G2532\"* it|strong=\"G2532\"* seemed|strong=\"G1380\"* good|strong=\"G1380\"* to|strong=\"G1519\"* the|strong=\"G1722\"* apostles and|strong=\"G2532\"* the|strong=\"G1722\"* elders|strong=\"G4245\"*, with|strong=\"G1722\"* the|strong=\"G1722\"* whole|strong=\"G3650\"* assembly|strong=\"G1577\"*, to|strong=\"G1519\"* choose|strong=\"G1586\"* men|strong=\"G4245\"* out|strong=\"G1537\"* of|strong=\"G1537\"* their|strong=\"G2532\"* company, and|strong=\"G2532\"* send|strong=\"G3992\"* them|strong=\"G3588\"* to|strong=\"G1519\"* Antioch with|strong=\"G1722\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* Barnabas: Judas|strong=\"G2455\"* called|strong=\"G2564\"* Barsabbas, and|strong=\"G2532\"* Silas|strong=\"G4609\"*, chief|strong=\"G2233\"* men|strong=\"G4245\"* among|strong=\"G1722\"* the|strong=\"G1722\"* brothers.+ 15:22 The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.”*" + }, + { + "verseNum": 23, + "text": "They|strong=\"G2532\"* wrote|strong=\"G1125\"* these|strong=\"G3588\"* things|strong=\"G3588\"* by|strong=\"G1223\"* their|strong=\"G2532\"* hand|strong=\"G5495\"*:" + }, + { + "verseNum": 24, + "text": "Because|strong=\"G3754\"* we|strong=\"G2249\"* have|strong=\"G1473\"* heard that|strong=\"G3754\"* some|strong=\"G5100\"* who|strong=\"G3739\"* went|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G1537\"* us|strong=\"G2249\"* have|strong=\"G1473\"* troubled|strong=\"G5015\"* you|strong=\"G5210\"* with|strong=\"G1537\"* words|strong=\"G3056\"*, unsettling your|strong=\"G3588\"* souls|strong=\"G5590\"*, saying|strong=\"G3056\"*, ‘You|strong=\"G5210\"* must|strong=\"G5100\"* be|strong=\"G3756\"* circumcised and|strong=\"G3056\"* keep the|strong=\"G1537\"* law,’ to|strong=\"G3756\"* whom|strong=\"G3739\"* we|strong=\"G2249\"* gave|strong=\"G1291\"* no|strong=\"G3756\"* commandment|strong=\"G1291\"*;" + }, + { + "verseNum": 25, + "text": "it|strong=\"G2532\"* seemed|strong=\"G1380\"* good|strong=\"G1380\"* to|strong=\"G4314\"* us|strong=\"G2249\"*, having|strong=\"G2532\"* come|strong=\"G1096\"* to|strong=\"G4314\"* one|strong=\"G3588\"* accord|strong=\"G3661\"*, to|strong=\"G4314\"* choose|strong=\"G1586\"* out|strong=\"G2532\"* men|strong=\"G3588\"* and|strong=\"G2532\"* send|strong=\"G3992\"* them|strong=\"G3588\"* to|strong=\"G4314\"* you|strong=\"G5210\"* with|strong=\"G4862\"* our|strong=\"G2532\"* beloved Barnabas and|strong=\"G2532\"* Paul|strong=\"G3972\"*," + }, + { + "verseNum": 26, + "text": "men|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G1473\"* risked|strong=\"G3860\"* their|strong=\"G3588\"* lives|strong=\"G5590\"* for|strong=\"G5228\"* the|strong=\"G3588\"* name|strong=\"G3686\"* of|strong=\"G3686\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 27, + "text": "We|strong=\"G2532\"* have|strong=\"G2532\"* sent|strong=\"G2532\"* therefore|strong=\"G3767\"* Judas|strong=\"G2455\"* and|strong=\"G2532\"* Silas|strong=\"G4609\"*, who|strong=\"G3588\"* themselves|strong=\"G1438\"* will|strong=\"G2532\"* also|strong=\"G2532\"* tell you|strong=\"G1438\"* the|strong=\"G2532\"* same|strong=\"G2532\"* things|strong=\"G3588\"* by|strong=\"G1223\"* word|strong=\"G3056\"* of|strong=\"G3056\"* mouth|strong=\"G3056\"*." + }, + { + "verseNum": 28, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* seemed|strong=\"G1380\"* good|strong=\"G1380\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* us|strong=\"G2249\"*, to|strong=\"G2532\"* lay|strong=\"G2007\"* no|strong=\"G3367\"* greater|strong=\"G4183\"* burden on|strong=\"G2007\"* you|strong=\"G5210\"* than|strong=\"G4183\"* these|strong=\"G3778\"* necessary|strong=\"G1876\"* things|strong=\"G3778\"*:" + }, + { + "verseNum": 29, + "text": "that|strong=\"G3739\"* you|strong=\"G3739\"* abstain from|strong=\"G1537\"* things|strong=\"G3739\"* sacrificed|strong=\"G1494\"* to|strong=\"G2532\"* idols|strong=\"G1494\"*, from|strong=\"G1537\"* blood, from|strong=\"G1537\"* things|strong=\"G3739\"* strangled|strong=\"G4156\"*, and|strong=\"G2532\"* from|strong=\"G1537\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*, from|strong=\"G1537\"* which|strong=\"G3739\"* if|strong=\"G2532\"* you|strong=\"G3739\"* keep|strong=\"G1301\"* yourselves|strong=\"G1438\"*, it|strong=\"G2532\"* will|strong=\"G2532\"* be|strong=\"G2532\"* well|strong=\"G2532\"* with|strong=\"G1537\"* you|strong=\"G3739\"*. Farewell|strong=\"G4517\"*.”" + }, + { + "verseNum": 30, + "text": "So|strong=\"G3767\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* sent|strong=\"G2532\"* off, they|strong=\"G2532\"* came|strong=\"G2718\"* to|strong=\"G1519\"* Antioch. Having|strong=\"G2532\"* gathered|strong=\"G4863\"* the|strong=\"G2532\"* multitude|strong=\"G4128\"* together|strong=\"G4863\"*, they|strong=\"G2532\"* delivered|strong=\"G1929\"* the|strong=\"G2532\"* letter|strong=\"G1992\"*." + }, + { + "verseNum": 31, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G3588\"* read it|strong=\"G1161\"*, they|strong=\"G1161\"* rejoiced|strong=\"G5463\"* over|strong=\"G1909\"* the|strong=\"G1161\"* encouragement|strong=\"G3874\"*." + }, + { + "verseNum": 32, + "text": "Judas|strong=\"G2455\"* and|strong=\"G2532\"* Silas|strong=\"G4609\"*, also|strong=\"G2532\"* being|strong=\"G1510\"* prophets|strong=\"G4396\"* themselves|strong=\"G1510\"*, encouraged|strong=\"G3870\"* the|strong=\"G2532\"* brothers with|strong=\"G1223\"* many|strong=\"G4183\"* words|strong=\"G3056\"* and|strong=\"G2532\"* strengthened|strong=\"G1991\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "After|strong=\"G3326\"* they|strong=\"G1161\"* had|strong=\"G3588\"* spent|strong=\"G4160\"* some|strong=\"G3588\"* time|strong=\"G5550\"* there|strong=\"G1161\"*, they|strong=\"G1161\"* were|strong=\"G3588\"* dismissed in|strong=\"G4314\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* the|strong=\"G1161\"* brothers to|strong=\"G4314\"* the|strong=\"G1161\"* apostles." + }, + { + "verseNum": 34, + "text": "+ 15:34 Some manuscripts add: But it seemed good to Silas to stay there. *" + }, + { + "verseNum": 35, + "text": "But|strong=\"G1161\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* Barnabas stayed|strong=\"G1304\"* in|strong=\"G1722\"* Antioch, teaching|strong=\"G1321\"* and|strong=\"G2532\"* preaching|strong=\"G2097\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, with|strong=\"G3326\"* many|strong=\"G4183\"* others|strong=\"G2087\"* also|strong=\"G2532\"*." + }, + { + "verseNum": 36, + "text": "After|strong=\"G3326\"* some|strong=\"G5100\"* days|strong=\"G2250\"* Paul|strong=\"G3972\"* said|strong=\"G3004\"* to|strong=\"G4314\"* Barnabas, “Let|strong=\"G1161\"*’s|strong=\"G2962\"* return|strong=\"G1994\"* now|strong=\"G1161\"* and|strong=\"G1161\"* visit|strong=\"G1980\"* our|strong=\"G3956\"* brothers in|strong=\"G1722\"* every|strong=\"G3956\"* city|strong=\"G4172\"* in|strong=\"G1722\"* which|strong=\"G3739\"* we|strong=\"G3739\"* proclaimed|strong=\"G2605\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, to|strong=\"G4314\"* see how|strong=\"G4459\"* they|strong=\"G1161\"* are|strong=\"G3588\"* doing.”" + }, + { + "verseNum": 37, + "text": "Barnabas planned|strong=\"G1014\"* to|strong=\"G2532\"* take|strong=\"G4838\"* John|strong=\"G2491\"*, who|strong=\"G3588\"* was|strong=\"G3588\"* called|strong=\"G2564\"* Mark|strong=\"G3138\"*, with|strong=\"G2532\"* them|strong=\"G3588\"* also|strong=\"G2532\"*." + }, + { + "verseNum": 38, + "text": "But|strong=\"G1161\"* Paul|strong=\"G3972\"* didn’t|strong=\"G3588\"* think that|strong=\"G3588\"* it|strong=\"G2532\"* was|strong=\"G3588\"* a|strong=\"G2532\"* good|strong=\"G3588\"* idea to|strong=\"G1519\"* take|strong=\"G4838\"* with|strong=\"G2532\"* them|strong=\"G3588\"* someone who|strong=\"G3588\"* had|strong=\"G2532\"* withdrawn from|strong=\"G2532\"* them|strong=\"G3588\"* in|strong=\"G1519\"* Pamphylia|strong=\"G3828\"*, and|strong=\"G2532\"* didn’t|strong=\"G3588\"* go|strong=\"G1519\"* with|strong=\"G2532\"* them|strong=\"G3588\"* to|strong=\"G1519\"* do|strong=\"G2532\"* the|strong=\"G2532\"* work|strong=\"G2041\"*." + }, + { + "verseNum": 39, + "text": "Then|strong=\"G1161\"* the|strong=\"G1519\"* contention|strong=\"G3948\"* grew so|strong=\"G1161\"* sharp|strong=\"G3948\"* that|strong=\"G3588\"* they|strong=\"G1161\"* separated from|strong=\"G3588\"* each|strong=\"G1438\"* other|strong=\"G1161\"*. Barnabas took|strong=\"G3880\"* Mark|strong=\"G3138\"* with|strong=\"G1519\"* him|strong=\"G3588\"* and|strong=\"G1161\"* sailed|strong=\"G1602\"* away|strong=\"G1602\"* to|strong=\"G1519\"* Cyprus|strong=\"G2954\"*," + }, + { + "verseNum": 40, + "text": "but|strong=\"G1161\"* Paul|strong=\"G3972\"* chose|strong=\"G1951\"* Silas|strong=\"G4609\"* and|strong=\"G1161\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, being|strong=\"G1161\"* commended|strong=\"G3860\"* by|strong=\"G5259\"* the|strong=\"G1161\"* brothers to|strong=\"G1161\"* the|strong=\"G1161\"* grace|strong=\"G5485\"* of|strong=\"G5259\"* God|strong=\"G2962\"*." + }, + { + "verseNum": 41, + "text": "He|strong=\"G2532\"* went|strong=\"G1330\"* through|strong=\"G1330\"* Syria|strong=\"G4947\"* and|strong=\"G2532\"* Cilicia|strong=\"G2791\"*, strengthening|strong=\"G1991\"* the|strong=\"G2532\"* assemblies|strong=\"G1577\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* came|strong=\"G2658\"* to|strong=\"G1519\"* Derbe|strong=\"G1191\"* and|strong=\"G2532\"* Lystra|strong=\"G3082\"*; and|strong=\"G2532\"* behold|strong=\"G2400\"*, a|strong=\"G2532\"* certain|strong=\"G5100\"* disciple|strong=\"G3101\"* was|strong=\"G1510\"* there|strong=\"G1563\"*, named|strong=\"G3686\"* Timothy|strong=\"G5095\"*, the|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* a|strong=\"G2532\"* Jewess|strong=\"G2453\"* who|strong=\"G3962\"* believed|strong=\"G4103\"*, but|strong=\"G1161\"* his|strong=\"G1519\"* father|strong=\"G3962\"* was|strong=\"G1510\"* a|strong=\"G2532\"* Greek|strong=\"G1672\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"G1722\"* brothers who|strong=\"G3739\"* were|strong=\"G3588\"* at|strong=\"G1722\"* Lystra|strong=\"G3082\"* and|strong=\"G2532\"* Iconium|strong=\"G2430\"* gave|strong=\"G2532\"* a|strong=\"G2532\"* good|strong=\"G3588\"* testimony|strong=\"G3140\"* about|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 3, + "text": "Paul|strong=\"G3972\"* wanted|strong=\"G2309\"* to|strong=\"G2532\"* have|strong=\"G2309\"* him|strong=\"G3588\"* go|strong=\"G1831\"* out|strong=\"G1831\"* with|strong=\"G1722\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* took|strong=\"G2983\"* and|strong=\"G2532\"* circumcised|strong=\"G4059\"* him|strong=\"G3588\"* because|strong=\"G3754\"* of|strong=\"G1223\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* who|strong=\"G3588\"* were|strong=\"G1510\"* in|strong=\"G1722\"* those|strong=\"G3588\"* parts|strong=\"G5117\"*, for|strong=\"G1063\"* they|strong=\"G2532\"* all|strong=\"G2532\"* knew|strong=\"G1492\"* that|strong=\"G3754\"* his|strong=\"G1223\"* father|strong=\"G3962\"* was|strong=\"G1510\"* a|strong=\"G2532\"* Greek|strong=\"G1672\"*." + }, + { + "verseNum": 4, + "text": "As|strong=\"G5613\"* they|strong=\"G2532\"* went|strong=\"G2532\"* on|strong=\"G1722\"* their|strong=\"G2532\"* way|strong=\"G1722\"* through|strong=\"G1722\"* the|strong=\"G1722\"* cities|strong=\"G4172\"*, they|strong=\"G2532\"* delivered|strong=\"G3860\"* the|strong=\"G1722\"* decrees|strong=\"G1378\"* to|strong=\"G2532\"* them|strong=\"G3588\"* to|strong=\"G2532\"* keep|strong=\"G5442\"* which|strong=\"G3588\"* had|strong=\"G2532\"* been|strong=\"G2532\"* ordained|strong=\"G2919\"* by|strong=\"G1722\"* the|strong=\"G1722\"* apostles and|strong=\"G2532\"* elders|strong=\"G4245\"* who|strong=\"G3588\"* were|strong=\"G3588\"* at|strong=\"G1722\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 5, + "text": "So|strong=\"G3767\"* the|strong=\"G2532\"* assemblies|strong=\"G1577\"* were|strong=\"G3588\"* strengthened|strong=\"G4732\"* in|strong=\"G2596\"* the|strong=\"G2532\"* faith|strong=\"G4102\"*, and|strong=\"G2532\"* increased|strong=\"G4052\"* in|strong=\"G2596\"* number daily|strong=\"G2250\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* gone|strong=\"G1330\"* through|strong=\"G1722\"* the|strong=\"G1722\"* region|strong=\"G5561\"* of|strong=\"G3056\"* Phrygia|strong=\"G5435\"* and|strong=\"G2532\"* Galatia|strong=\"G1054\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* forbidden|strong=\"G2967\"* by|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* to|strong=\"G2532\"* speak|strong=\"G2980\"* the|strong=\"G1722\"* word|strong=\"G3056\"* in|strong=\"G1722\"* Asia|strong=\"G3588\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2424\"* come|strong=\"G2064\"* opposite Mysia|strong=\"G3465\"*, they|strong=\"G2532\"* tried|strong=\"G3985\"* to|strong=\"G1519\"* go|strong=\"G4198\"* into|strong=\"G1519\"* Bithynia, but|strong=\"G1161\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* didn’t|strong=\"G3588\"* allow|strong=\"G1439\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 8, + "text": "Passing|strong=\"G3928\"* by|strong=\"G1519\"* Mysia|strong=\"G3465\"*, they|strong=\"G1161\"* came|strong=\"G2597\"* down|strong=\"G2597\"* to|strong=\"G1519\"* Troas|strong=\"G5174\"*." + }, + { + "verseNum": 9, + "text": "A|strong=\"G2532\"* vision|strong=\"G3705\"* appeared|strong=\"G3708\"* to|strong=\"G1519\"* Paul|strong=\"G3972\"* in|strong=\"G1519\"* the|strong=\"G2532\"* night|strong=\"G3571\"*. There|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* man|strong=\"G5100\"* of|strong=\"G1223\"* Macedonia|strong=\"G3109\"* standing|strong=\"G2476\"*, begging|strong=\"G3870\"* him|strong=\"G3588\"* and|strong=\"G2532\"* saying|strong=\"G3004\"*, “Come|strong=\"G1510\"* over|strong=\"G1224\"* into|strong=\"G1519\"* Macedonia|strong=\"G3109\"* and|strong=\"G2532\"* help us|strong=\"G3004\"*.”" + }, + { + "verseNum": 10, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G2316\"* seen|strong=\"G3708\"* the|strong=\"G1519\"* vision|strong=\"G3705\"*, immediately|strong=\"G2112\"* we|strong=\"G2249\"* sought|strong=\"G2212\"* to|strong=\"G1519\"* go|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G1519\"* Macedonia|strong=\"G3109\"*, concluding|strong=\"G4822\"* that|strong=\"G3754\"* the|strong=\"G1519\"* Lord|strong=\"G3588\"* had|strong=\"G2316\"* called|strong=\"G4341\"* us|strong=\"G2097\"* to|strong=\"G1519\"* preach|strong=\"G2097\"* the|strong=\"G1519\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* to|strong=\"G1519\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "Setting sail therefore|strong=\"G3767\"* from|strong=\"G3588\"* Troas|strong=\"G5174\"*, we|strong=\"G1161\"* made|strong=\"G1161\"* a|strong=\"G1519\"* straight|strong=\"G2113\"* course|strong=\"G2113\"* to|strong=\"G1519\"* Samothrace|strong=\"G4543\"*, and|strong=\"G1161\"* the|strong=\"G1519\"* day|strong=\"G3588\"* following|strong=\"G1966\"* to|strong=\"G1519\"* Neapolis|strong=\"G3501\"*;" + }, + { + "verseNum": 12, + "text": "and|strong=\"G1161\"* from|strong=\"G3588\"* there|strong=\"G1161\"* to|strong=\"G1519\"* Philippi|strong=\"G5375\"*, which|strong=\"G3588\"* is|strong=\"G1510\"* a|strong=\"G1519\"* city|strong=\"G4172\"* of|strong=\"G2250\"* Macedonia|strong=\"G3109\"*, the|strong=\"G1722\"* foremost|strong=\"G4413\"* of|strong=\"G2250\"* the|strong=\"G1722\"* district|strong=\"G3310\"*, a|strong=\"G1519\"* Roman colony|strong=\"G2862\"*. We|strong=\"G1161\"* were|strong=\"G1510\"* staying|strong=\"G1304\"* some|strong=\"G5100\"* days|strong=\"G2250\"* in|strong=\"G1722\"* this|strong=\"G3778\"* city|strong=\"G4172\"*." + }, + { + "verseNum": 13, + "text": "On|strong=\"G2523\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"* day|strong=\"G2250\"* we|strong=\"G2532\"* went|strong=\"G1831\"* outside|strong=\"G1854\"* of|strong=\"G2250\"* the|strong=\"G2532\"* city by|strong=\"G3844\"* a|strong=\"G2532\"* riverside|strong=\"G3844\"*, where|strong=\"G3757\"* we|strong=\"G2532\"* supposed|strong=\"G3543\"* there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* place|strong=\"G4335\"* of|strong=\"G2250\"* prayer|strong=\"G4335\"*, and|strong=\"G2532\"* we|strong=\"G2532\"* sat|strong=\"G2523\"* down|strong=\"G2523\"* and|strong=\"G2532\"* spoke|strong=\"G2980\"* to|strong=\"G2532\"* the|strong=\"G2532\"* women|strong=\"G1135\"* who|strong=\"G3588\"* had|strong=\"G2532\"* come|strong=\"G1831\"* together|strong=\"G4905\"*." + }, + { + "verseNum": 14, + "text": "A|strong=\"G2532\"* certain|strong=\"G5100\"* woman|strong=\"G1135\"* named|strong=\"G3686\"* Lydia|strong=\"G3070\"*, a|strong=\"G2532\"* seller|strong=\"G4211\"* of|strong=\"G5259\"* purple|strong=\"G4211\"*, of|strong=\"G5259\"* the|strong=\"G2532\"* city|strong=\"G4172\"* of|strong=\"G5259\"* Thyatira|strong=\"G2363\"*, one|strong=\"G5100\"* who|strong=\"G3739\"* worshiped God|strong=\"G2316\"*, heard us. The|strong=\"G2532\"* Lord|strong=\"G2962\"* opened|strong=\"G1272\"* her|strong=\"G5259\"* heart|strong=\"G2588\"* to|strong=\"G2532\"* listen to|strong=\"G2532\"* the|strong=\"G2532\"* things|strong=\"G3588\"* which|strong=\"G3739\"* were|strong=\"G3588\"* spoken|strong=\"G2980\"* by|strong=\"G5259\"* Paul|strong=\"G3972\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"G1161\"* she|strong=\"G2532\"* and|strong=\"G2532\"* her|strong=\"G1519\"* household|strong=\"G3624\"* were|strong=\"G1510\"* baptized, she|strong=\"G2532\"* begged|strong=\"G3870\"* us|strong=\"G3004\"*, saying|strong=\"G3004\"*, “If|strong=\"G1487\"* you|strong=\"G1487\"* have|strong=\"G2532\"* judged|strong=\"G2919\"* me|strong=\"G1473\"* to|strong=\"G1519\"* be|strong=\"G1510\"* faithful|strong=\"G4103\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, come|strong=\"G1525\"* into|strong=\"G1519\"* my|strong=\"G1525\"* house|strong=\"G3624\"* and|strong=\"G2532\"* stay|strong=\"G3306\"*.” So|strong=\"G2532\"* she|strong=\"G2532\"* persuaded us|strong=\"G3004\"*." + }, + { + "verseNum": 16, + "text": "As|strong=\"G1519\"* we|strong=\"G2249\"* were|strong=\"G3588\"* going|strong=\"G4198\"* to|strong=\"G1519\"* prayer|strong=\"G4335\"*, a|strong=\"G2192\"* certain|strong=\"G5100\"* girl having|strong=\"G2192\"* a|strong=\"G2192\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* divination|strong=\"G4436\"* met|strong=\"G5221\"* us|strong=\"G1519\"*, who|strong=\"G3588\"* brought|strong=\"G3930\"* her|strong=\"G1519\"* masters|strong=\"G2962\"* much|strong=\"G4183\"* gain|strong=\"G2039\"* by|strong=\"G1519\"* fortune telling." + }, + { + "verseNum": 17, + "text": "Following|strong=\"G2628\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* us|strong=\"G3004\"*, she|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"*, “These|strong=\"G3778\"* men|strong=\"G3778\"* are|strong=\"G1510\"* servants|strong=\"G1401\"* of|strong=\"G2316\"* the|strong=\"G2532\"* Most|strong=\"G5310\"* High|strong=\"G5310\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* proclaim|strong=\"G2605\"* to|strong=\"G2532\"* us|strong=\"G3004\"* a|strong=\"G2532\"* way|strong=\"G3598\"* of|strong=\"G2316\"* salvation|strong=\"G4991\"*!”" + }, + { + "verseNum": 18, + "text": "She|strong=\"G2532\"* was|strong=\"G3588\"* doing|strong=\"G4160\"* this|strong=\"G3778\"* for|strong=\"G1909\"* many|strong=\"G4183\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* her|strong=\"G1519\"* masters|strong=\"G2962\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* the|strong=\"G2532\"* hope|strong=\"G1680\"* of|strong=\"G2532\"* their|strong=\"G2532\"* gain|strong=\"G2039\"* was|strong=\"G3588\"* gone|strong=\"G1831\"*, they|strong=\"G2532\"* seized|strong=\"G1949\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* Silas|strong=\"G4609\"* and|strong=\"G2532\"* dragged|strong=\"G1670\"* them|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G2532\"* marketplace before|strong=\"G1909\"* the|strong=\"G2532\"* rulers." + }, + { + "verseNum": 20, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* brought|strong=\"G4317\"* them|strong=\"G3588\"* to|strong=\"G2532\"* the|strong=\"G2532\"* magistrates|strong=\"G4755\"*, they|strong=\"G2532\"* said|strong=\"G3004\"*, “These|strong=\"G3778\"* men|strong=\"G3778\"*, being|strong=\"G5225\"* Jews|strong=\"G2453\"*, are|strong=\"G3588\"* agitating our|strong=\"G2532\"* city|strong=\"G4172\"*" + }, + { + "verseNum": 21, + "text": "and|strong=\"G2532\"* advocate customs|strong=\"G1485\"* which|strong=\"G3739\"* it|strong=\"G2532\"* is|strong=\"G1510\"* not|strong=\"G3756\"* lawful|strong=\"G1832\"* for|strong=\"G2532\"* us|strong=\"G4160\"* to|strong=\"G2532\"* accept|strong=\"G3858\"* or|strong=\"G2532\"* to|strong=\"G2532\"* observe|strong=\"G4160\"*, being|strong=\"G1510\"* Romans|strong=\"G4514\"*.”" + }, + { + "verseNum": 22, + "text": "The|strong=\"G2532\"* multitude|strong=\"G3793\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* together|strong=\"G4911\"* against|strong=\"G2596\"* them|strong=\"G3588\"* and|strong=\"G2532\"* the|strong=\"G2532\"* magistrates|strong=\"G4755\"* tore|strong=\"G4048\"* their|strong=\"G2532\"* clothes|strong=\"G2440\"* from|strong=\"G2532\"* them|strong=\"G3588\"*, then|strong=\"G2532\"* commanded|strong=\"G2753\"* them|strong=\"G3588\"* to|strong=\"G2532\"* be|strong=\"G2532\"* beaten|strong=\"G4463\"* with|strong=\"G2532\"* rods|strong=\"G4463\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"G2007\"* they|strong=\"G3588\"* had|strong=\"G3588\"* laid|strong=\"G2007\"* many|strong=\"G4183\"* stripes|strong=\"G4127\"* on|strong=\"G1519\"* them|strong=\"G3588\"*, they|strong=\"G3588\"* threw them|strong=\"G3588\"* into|strong=\"G1519\"* prison|strong=\"G5438\"*, charging|strong=\"G3853\"* the|strong=\"G1519\"* jailer|strong=\"G1200\"* to|strong=\"G1519\"* keep|strong=\"G5083\"* them|strong=\"G3588\"* safely." + }, + { + "verseNum": 24, + "text": "Having|strong=\"G2532\"* received|strong=\"G2983\"* such|strong=\"G5108\"* a|strong=\"G2532\"* command|strong=\"G3852\"*, he|strong=\"G2532\"* threw them|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G2532\"* inner|strong=\"G2082\"* prison|strong=\"G5438\"* and|strong=\"G2532\"* secured their|strong=\"G1438\"* feet|strong=\"G4228\"* in|strong=\"G1519\"* the|strong=\"G2532\"* stocks|strong=\"G3586\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* about|strong=\"G2596\"* midnight|strong=\"G3317\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* Silas|strong=\"G4609\"* were|strong=\"G3588\"* praying|strong=\"G4336\"* and|strong=\"G2532\"* singing|strong=\"G5214\"* hymns|strong=\"G5214\"* to|strong=\"G2532\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* prisoners|strong=\"G1198\"* were|strong=\"G3588\"* listening|strong=\"G1874\"* to|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 26, + "text": "Suddenly there|strong=\"G2532\"* was|strong=\"G1096\"* a|strong=\"G1096\"* great|strong=\"G3173\"* earthquake|strong=\"G4578\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* the|strong=\"G2532\"* foundations|strong=\"G2310\"* of|strong=\"G2532\"* the|strong=\"G2532\"* prison|strong=\"G1201\"* were|strong=\"G3588\"* shaken|strong=\"G4531\"*; and|strong=\"G2532\"* immediately|strong=\"G3916\"* all|strong=\"G3956\"* the|strong=\"G2532\"* doors|strong=\"G2374\"* were|strong=\"G3588\"* opened, and|strong=\"G2532\"* everyone|strong=\"G3956\"*’s bonds|strong=\"G1199\"* were|strong=\"G3588\"* loosened." + }, + { + "verseNum": 27, + "text": "The|strong=\"G2532\"* jailer|strong=\"G1200\"*, being|strong=\"G1096\"* roused out|strong=\"G2532\"* of|strong=\"G2532\"* sleep|strong=\"G1853\"* and|strong=\"G2532\"* seeing|strong=\"G3708\"* the|strong=\"G2532\"* prison|strong=\"G5438\"* doors|strong=\"G2374\"* open, drew|strong=\"G4685\"* his|strong=\"G1438\"* sword|strong=\"G3162\"* and|strong=\"G2532\"* was|strong=\"G1096\"* about|strong=\"G3195\"* to|strong=\"G2532\"* kill himself|strong=\"G1438\"*, supposing|strong=\"G3543\"* that|strong=\"G3588\"* the|strong=\"G2532\"* prisoners|strong=\"G1198\"* had|strong=\"G2532\"* escaped|strong=\"G1628\"*." + }, + { + "verseNum": 28, + "text": "But|strong=\"G1161\"* Paul|strong=\"G3972\"* cried|strong=\"G5455\"* with|strong=\"G1161\"* a|strong=\"G1510\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, saying|strong=\"G3004\"*, “Don’t harm|strong=\"G2556\"* yourself|strong=\"G4572\"*, for|strong=\"G1063\"* we|strong=\"G1063\"* are|strong=\"G1510\"* all|strong=\"G1161\"* here|strong=\"G1759\"*!”" + }, + { + "verseNum": 29, + "text": "He|strong=\"G2532\"* called|strong=\"G3972\"* for|strong=\"G1161\"* lights|strong=\"G5457\"*, sprang in|strong=\"G2532\"*, fell|strong=\"G4363\"* down|strong=\"G4363\"* trembling|strong=\"G1790\"* before|strong=\"G4363\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* Silas|strong=\"G4609\"*," + }, + { + "verseNum": 30, + "text": "brought|strong=\"G4254\"* them|strong=\"G1438\"* out|strong=\"G1854\"*, and|strong=\"G2532\"* said|strong=\"G5346\"*, “Sirs|strong=\"G2962\"*, what|strong=\"G5101\"* must|strong=\"G1163\"* I|strong=\"G1473\"* do|strong=\"G4160\"* to|strong=\"G2443\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*?”" + }, + { + "verseNum": 31, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"*, “Believe|strong=\"G4100\"* in|strong=\"G1909\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G2962\"*, and|strong=\"G2532\"* you|strong=\"G4771\"* will|strong=\"G2532\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*, you|strong=\"G4771\"* and|strong=\"G2532\"* your|strong=\"G2962\"* household|strong=\"G3624\"*.”" + }, + { + "verseNum": 32, + "text": "They|strong=\"G2532\"* spoke|strong=\"G2980\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* all|strong=\"G3956\"* who|strong=\"G3588\"* were|strong=\"G3588\"* in|strong=\"G1722\"* his|strong=\"G3956\"* house|strong=\"G3614\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"G2532\"* took|strong=\"G3880\"* them|strong=\"G3588\"* the|strong=\"G1722\"* same|strong=\"G1565\"* hour|strong=\"G5610\"* of|strong=\"G2532\"* the|strong=\"G1722\"* night|strong=\"G3571\"* and|strong=\"G2532\"* washed|strong=\"G3068\"* their|strong=\"G1438\"* stripes|strong=\"G4127\"*, and|strong=\"G2532\"* was|strong=\"G3588\"* immediately|strong=\"G3916\"* baptized, he|strong=\"G2532\"* and|strong=\"G2532\"* all|strong=\"G3956\"* his|strong=\"G1438\"* household." + }, + { + "verseNum": 34, + "text": "He|strong=\"G2532\"* brought|strong=\"G2532\"* them|strong=\"G3588\"* up|strong=\"G1519\"* into|strong=\"G1519\"* his|strong=\"G1438\"* house|strong=\"G3624\"* and|strong=\"G2532\"* set|strong=\"G3908\"* food|strong=\"G5132\"* before|strong=\"G3908\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* rejoiced greatly|strong=\"G4100\"* with|strong=\"G2532\"* all|strong=\"G2532\"* his|strong=\"G1438\"* household|strong=\"G3624\"*, having|strong=\"G2532\"* believed|strong=\"G4100\"* in|strong=\"G1519\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 35, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* it|strong=\"G1161\"* was|strong=\"G1096\"* day|strong=\"G2250\"*, the|strong=\"G1161\"* magistrates|strong=\"G4755\"* sent the|strong=\"G1161\"* sergeants, saying|strong=\"G3004\"*, “Let|strong=\"G1096\"* those|strong=\"G3588\"* men|strong=\"G3588\"* go.”" + }, + { + "verseNum": 36, + "text": "The|strong=\"G1722\"* jailer|strong=\"G1200\"* reported these|strong=\"G3778\"* words|strong=\"G3056\"* to|strong=\"G4314\"* Paul|strong=\"G3972\"*, saying|strong=\"G3056\"*, “The|strong=\"G1722\"* magistrates|strong=\"G4755\"* have|strong=\"G3748\"* sent to|strong=\"G4314\"* let|strong=\"G1161\"* you|strong=\"G3754\"* go|strong=\"G4198\"*; now|strong=\"G1161\"* therefore|strong=\"G3767\"* come|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G1161\"* go|strong=\"G4198\"* in|strong=\"G1722\"* peace|strong=\"G1515\"*.”" + }, + { + "verseNum": 37, + "text": "But|strong=\"G1161\"* Paul|strong=\"G3972\"* said|strong=\"G5346\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “They|strong=\"G2532\"* have|strong=\"G2532\"* beaten|strong=\"G1194\"* us|strong=\"G1519\"* publicly|strong=\"G1219\"* without|strong=\"G2532\"* a|strong=\"G2532\"* trial, men|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* Romans|strong=\"G4514\"*, and|strong=\"G2532\"* have|strong=\"G2532\"* cast|strong=\"G1544\"* us|strong=\"G1519\"* into|strong=\"G1519\"* prison|strong=\"G5438\"*! Do|strong=\"G2532\"* they|strong=\"G2532\"* now|strong=\"G1161\"* release us|strong=\"G1519\"* secretly|strong=\"G2977\"*? No|strong=\"G3756\"*, most certainly|strong=\"G1063\"*, but|strong=\"G1161\"* let|strong=\"G1161\"* them|strong=\"G3588\"* come|strong=\"G2064\"* themselves|strong=\"G1438\"* and|strong=\"G2532\"* bring|strong=\"G2532\"* us|strong=\"G1519\"* out|strong=\"G1544\"*!”" + }, + { + "verseNum": 38, + "text": "The|strong=\"G1161\"* sergeants reported these|strong=\"G3778\"* words|strong=\"G4487\"* to|strong=\"G1161\"* the|strong=\"G1161\"* magistrates|strong=\"G4755\"*, and|strong=\"G1161\"* they|strong=\"G1161\"* were|strong=\"G1510\"* afraid|strong=\"G5399\"* when|strong=\"G1161\"* they|strong=\"G1161\"* heard that|strong=\"G3754\"* they|strong=\"G1161\"* were|strong=\"G1510\"* Romans|strong=\"G4514\"*," + }, + { + "verseNum": 39, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* came|strong=\"G2064\"* and|strong=\"G2532\"* begged|strong=\"G3870\"* them|strong=\"G3588\"*. When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* brought|strong=\"G1806\"* them|strong=\"G3588\"* out|strong=\"G1806\"*, they|strong=\"G2532\"* asked|strong=\"G2065\"* them|strong=\"G3588\"* to|strong=\"G2532\"* depart from|strong=\"G2064\"* the|strong=\"G2532\"* city|strong=\"G4172\"*." + }, + { + "verseNum": 40, + "text": "They|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G2532\"* the|strong=\"G2532\"* prison|strong=\"G5438\"* and|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1525\"* Lydia|strong=\"G3070\"*’s house. When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* seen|strong=\"G3708\"* the|strong=\"G2532\"* brothers, they|strong=\"G2532\"* encouraged|strong=\"G3870\"* them|strong=\"G3588\"*, then|strong=\"G2532\"* departed|strong=\"G1831\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* passed|strong=\"G3588\"* through|strong=\"G1353\"* Amphipolis and|strong=\"G2532\"* Apollonia, they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Thessalonica|strong=\"G2332\"*, where|strong=\"G3699\"* there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* Jewish|strong=\"G2453\"* synagogue|strong=\"G4864\"*." + }, + { + "verseNum": 2, + "text": "Paul|strong=\"G3972\"*, as|strong=\"G1161\"* was|strong=\"G3588\"* his|strong=\"G1438\"* custom|strong=\"G1486\"*, went|strong=\"G1525\"* in|strong=\"G1909\"* to|strong=\"G4314\"* them|strong=\"G3588\"*; and|strong=\"G2532\"* for|strong=\"G1909\"* three|strong=\"G5140\"* Sabbath|strong=\"G4521\"* days|strong=\"G4521\"* reasoned|strong=\"G1256\"* with|strong=\"G4314\"* them|strong=\"G3588\"* from|strong=\"G2532\"* the|strong=\"G2532\"* Scriptures|strong=\"G1124\"*," + }, + { + "verseNum": 3, + "text": "explaining|strong=\"G1272\"* and|strong=\"G2532\"* demonstrating|strong=\"G3908\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"* had|strong=\"G2424\"* to|strong=\"G2532\"* suffer|strong=\"G3958\"* and|strong=\"G2532\"* rise|strong=\"G1163\"* again|strong=\"G2532\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, and|strong=\"G2532\"* saying|strong=\"G3754\"*, “This|strong=\"G3778\"* Jesus|strong=\"G2424\"*, whom|strong=\"G3739\"* I|strong=\"G1473\"* proclaim|strong=\"G2605\"* to|strong=\"G2532\"* you|strong=\"G5210\"*, is|strong=\"G1510\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*.”" + }, + { + "verseNum": 4, + "text": "Some|strong=\"G5100\"* of|strong=\"G1537\"* them|strong=\"G3588\"* were|strong=\"G3588\"* persuaded|strong=\"G3982\"* and|strong=\"G2532\"* joined|strong=\"G4345\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* Silas|strong=\"G4609\"*: of|strong=\"G1537\"* the|strong=\"G2532\"* devout|strong=\"G4576\"* Greeks|strong=\"G1672\"* a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G4128\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* a|strong=\"G2532\"* few|strong=\"G3641\"* of|strong=\"G1537\"* the|strong=\"G2532\"* chief|strong=\"G4413\"* women|strong=\"G1135\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* unpersuaded Jews|strong=\"G2453\"* took|strong=\"G4355\"* along|strong=\"G2532\"*+ 17:5 TR reads “And the Jews who were unpersuaded, becoming envious and taking along” instead of “But the unpersuaded Jews took along”* some|strong=\"G5100\"* wicked|strong=\"G4190\"* men|strong=\"G5100\"* from|strong=\"G2532\"* the|strong=\"G2532\"* marketplace and|strong=\"G2532\"* gathering a|strong=\"G2532\"* crowd, set|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"* in|strong=\"G1519\"* an|strong=\"G2532\"* uproar|strong=\"G2350\"*. Assaulting the|strong=\"G2532\"* house|strong=\"G3614\"* of|strong=\"G2532\"* Jason|strong=\"G2394\"*, they|strong=\"G2532\"* sought|strong=\"G2212\"* to|strong=\"G1519\"* bring|strong=\"G4254\"* them|strong=\"G3588\"* out|strong=\"G2532\"* to|strong=\"G1519\"* the|strong=\"G2532\"* people|strong=\"G1218\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* find|strong=\"G2147\"* them|strong=\"G3588\"*, they|strong=\"G2532\"* dragged|strong=\"G4951\"* Jason|strong=\"G2394\"* and|strong=\"G2532\"* certain|strong=\"G5100\"* brothers+ 17:6 The word for “brothers” here and where the context allows may be also correctly translated “brothers and sisters” or “siblings.”* before|strong=\"G1909\"* the|strong=\"G2532\"* rulers of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4173\"*, crying, “These|strong=\"G3778\"* who|strong=\"G3588\"* have|strong=\"G2532\"* turned the|strong=\"G2532\"* world|strong=\"G3625\"* upside|strong=\"G3625\"* down have|strong=\"G2532\"* come|strong=\"G3918\"* here|strong=\"G1759\"* also|strong=\"G2532\"*," + }, + { + "verseNum": 7, + "text": "whom|strong=\"G3739\"* Jason|strong=\"G2394\"* has|strong=\"G3739\"* received|strong=\"G5264\"*. These|strong=\"G3778\"* all|strong=\"G3956\"* act|strong=\"G4238\"* contrary to|strong=\"G2532\"* the|strong=\"G2532\"* decrees|strong=\"G1378\"* of|strong=\"G2532\"* Caesar|strong=\"G2541\"*, saying|strong=\"G3004\"* that|strong=\"G3739\"* there|strong=\"G2532\"* is|strong=\"G1510\"* another|strong=\"G2087\"* king|strong=\"G3588\"*, Jesus|strong=\"G2424\"*!”" + }, + { + "verseNum": 8, + "text": "The|strong=\"G2532\"* multitude|strong=\"G3793\"* and|strong=\"G2532\"* the|strong=\"G2532\"* rulers of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4173\"* were|strong=\"G3588\"* troubled|strong=\"G5015\"* when|strong=\"G1161\"* they|strong=\"G2532\"* heard these|strong=\"G3778\"* things|strong=\"G3778\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* taken|strong=\"G2983\"* security|strong=\"G2425\"* from|strong=\"G3844\"* Jason|strong=\"G2394\"* and|strong=\"G2532\"* the|strong=\"G2532\"* rest|strong=\"G3062\"*, they|strong=\"G2532\"* let|strong=\"G2983\"* them|strong=\"G3588\"* go|strong=\"G2532\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"G2532\"* brothers immediately|strong=\"G2112\"* sent|strong=\"G1599\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* Silas|strong=\"G4609\"* away|strong=\"G1599\"* by|strong=\"G1223\"* night|strong=\"G3571\"* to|strong=\"G1519\"* Beroea. When|strong=\"G1161\"* they|strong=\"G2532\"* arrived|strong=\"G3854\"*, they|strong=\"G2532\"* went|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G2532\"* Jewish|strong=\"G2453\"* synagogue|strong=\"G4864\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"G1161\"* these|strong=\"G3778\"* were|strong=\"G1510\"* more|strong=\"G2192\"* noble|strong=\"G2104\"* than|strong=\"G2104\"* those|strong=\"G3588\"* in|strong=\"G1722\"* Thessalonica|strong=\"G2332\"*, in|strong=\"G1722\"* that|strong=\"G3588\"* they|strong=\"G1161\"* received|strong=\"G1209\"* the|strong=\"G1722\"* word|strong=\"G3056\"* with|strong=\"G3326\"* all|strong=\"G3956\"* readiness|strong=\"G4288\"* of|strong=\"G3056\"* mind|strong=\"G4288\"*, examining the|strong=\"G1722\"* Scriptures|strong=\"G1124\"* daily|strong=\"G2250\"* to|strong=\"G2596\"* see whether|strong=\"G1487\"* these|strong=\"G3778\"* things|strong=\"G3956\"* were|strong=\"G1510\"* so|strong=\"G3779\"*." + }, + { + "verseNum": 12, + "text": "Many|strong=\"G4183\"* of|strong=\"G1537\"* them|strong=\"G3588\"* therefore|strong=\"G3767\"* believed|strong=\"G4100\"*; also|strong=\"G2532\"* of|strong=\"G1537\"* the|strong=\"G2532\"* prominent|strong=\"G2158\"* Greek|strong=\"G1674\"* women|strong=\"G1135\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* a|strong=\"G2532\"* few|strong=\"G3641\"* men|strong=\"G3588\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* of|strong=\"G3056\"* Thessalonica|strong=\"G2332\"* had|strong=\"G2532\"* knowledge|strong=\"G1097\"* that|strong=\"G3754\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* was|strong=\"G3588\"* proclaimed|strong=\"G2605\"* by|strong=\"G1722\"* Paul|strong=\"G3972\"* at|strong=\"G1722\"* Beroea also|strong=\"G2532\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* there|strong=\"G2532\"* likewise|strong=\"G2532\"*, agitating|strong=\"G4531\"* the|strong=\"G1722\"* multitudes|strong=\"G3793\"*." + }, + { + "verseNum": 14, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* brothers immediately|strong=\"G2112\"* sent|strong=\"G1821\"* out|strong=\"G2532\"* Paul|strong=\"G3972\"* to|strong=\"G2532\"* go|strong=\"G4198\"* as|strong=\"G1161\"* far|strong=\"G2193\"* as|strong=\"G1161\"* to|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, and|strong=\"G2532\"* Silas|strong=\"G4609\"* and|strong=\"G2532\"* Timothy|strong=\"G5095\"* still|strong=\"G2193\"* stayed|strong=\"G5278\"* there|strong=\"G1563\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* escorted|strong=\"G2525\"* Paul|strong=\"G3972\"* brought|strong=\"G2064\"* him|strong=\"G3588\"* as|strong=\"G5613\"* far|strong=\"G2193\"* as|strong=\"G5613\"* Athens. Receiving|strong=\"G2983\"* a|strong=\"G5613\"* commandment|strong=\"G1785\"* to|strong=\"G4314\"* Silas|strong=\"G4609\"* and|strong=\"G2532\"* Timothy|strong=\"G5095\"* that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G3588\"* come|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G3588\"* very|strong=\"G2532\"* quickly|strong=\"G5036\"*, they|strong=\"G2532\"* departed|strong=\"G1826\"*." + }, + { + "verseNum": 16, + "text": "Now|strong=\"G1161\"* while|strong=\"G1722\"* Paul|strong=\"G3972\"* waited|strong=\"G1551\"* for|strong=\"G1161\"* them|strong=\"G3588\"* at|strong=\"G1722\"* Athens, his|strong=\"G1438\"* spirit|strong=\"G4151\"* was|strong=\"G1510\"* provoked|strong=\"G3947\"* within|strong=\"G1722\"* him|strong=\"G3588\"* as|strong=\"G1722\"* he|strong=\"G1161\"* saw|strong=\"G2334\"* the|strong=\"G1722\"* city|strong=\"G4172\"* full|strong=\"G1722\"* of|strong=\"G4151\"* idols|strong=\"G2712\"*." + }, + { + "verseNum": 17, + "text": "So|strong=\"G3767\"* he|strong=\"G2532\"* reasoned|strong=\"G1256\"* in|strong=\"G1722\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"* with|strong=\"G1722\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* the|strong=\"G1722\"* devout|strong=\"G4576\"* persons|strong=\"G4576\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* marketplace every|strong=\"G3956\"* day|strong=\"G2250\"* with|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* met him|strong=\"G3588\"*." + }, + { + "verseNum": 18, + "text": "Some|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Epicurean|strong=\"G1946\"* and|strong=\"G2532\"* Stoic|strong=\"G4770\"* philosophers|strong=\"G5386\"* also|strong=\"G2532\"*+ 17:18 TR omits “also” * were|strong=\"G1510\"* conversing|strong=\"G4820\"* with|strong=\"G2532\"* him|strong=\"G3588\"*. Some|strong=\"G5100\"* said|strong=\"G3004\"*, “What|strong=\"G5101\"* does|strong=\"G1510\"* this|strong=\"G3778\"* babbler|strong=\"G4691\"* want|strong=\"G2309\"* to|strong=\"G2532\"* say|strong=\"G3004\"*?”" + }, + { + "verseNum": 19, + "text": "They|strong=\"G3588\"* took|strong=\"G1949\"* hold|strong=\"G1949\"* of|strong=\"G5259\"* him|strong=\"G3588\"* and|strong=\"G5037\"* brought him|strong=\"G3588\"* to|strong=\"G1909\"* the|strong=\"G1909\"* Areopagus, saying|strong=\"G3004\"*, “May|strong=\"G1410\"* we|strong=\"G3778\"* know|strong=\"G1097\"* what|strong=\"G5101\"* this|strong=\"G3778\"* new|strong=\"G2537\"* teaching|strong=\"G1322\"* is|strong=\"G3588\"*, which|strong=\"G3588\"* you|strong=\"G4771\"* are|strong=\"G3588\"* speaking|strong=\"G2980\"* about|strong=\"G1909\"*?" + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* you|strong=\"G1510\"* bring|strong=\"G1533\"* certain|strong=\"G5100\"* strange|strong=\"G3579\"* things|strong=\"G3778\"* to|strong=\"G1519\"* our|strong=\"G1519\"* ears. We|strong=\"G2249\"* want|strong=\"G2309\"* to|strong=\"G1519\"* know|strong=\"G1097\"* therefore|strong=\"G3767\"* what|strong=\"G5101\"* these|strong=\"G3778\"* things|strong=\"G3778\"* mean|strong=\"G2309\"*.”" + }, + { + "verseNum": 21, + "text": "Now|strong=\"G1161\"* all|strong=\"G3956\"* the|strong=\"G2532\"* Athenians and|strong=\"G2532\"* the|strong=\"G2532\"* strangers|strong=\"G3581\"* living there|strong=\"G2532\"* spent their|strong=\"G2532\"* time|strong=\"G2119\"* in|strong=\"G1519\"* nothing|strong=\"G3762\"* else|strong=\"G2228\"*, but|strong=\"G1161\"* either|strong=\"G2228\"* to|strong=\"G1519\"* tell|strong=\"G3004\"* or|strong=\"G2228\"* to|strong=\"G1519\"* hear some|strong=\"G5100\"* new|strong=\"G2537\"* thing|strong=\"G5100\"*." + }, + { + "verseNum": 22, + "text": "Paul|strong=\"G3972\"* stood|strong=\"G2476\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G1722\"* the|strong=\"G1722\"* Areopagus and|strong=\"G1161\"* said|strong=\"G5346\"*, “You|strong=\"G5210\"* men|strong=\"G3956\"* of|strong=\"G1722\"* Athens, I|strong=\"G1161\"* perceive|strong=\"G2334\"* that|strong=\"G3588\"* you|strong=\"G5210\"* are|strong=\"G3588\"* very|strong=\"G3588\"* religious in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"G1063\"* as|strong=\"G1722\"* I|strong=\"G1473\"* passed|strong=\"G1330\"* along|strong=\"G2532\"* and|strong=\"G2532\"* observed the|strong=\"G1722\"* objects|strong=\"G4574\"* of|strong=\"G2316\"* your|strong=\"G2532\"* worship|strong=\"G2151\"*, I|strong=\"G1473\"* also|strong=\"G2532\"* found|strong=\"G2147\"* an|strong=\"G2532\"* altar|strong=\"G1041\"* with|strong=\"G1722\"* this|strong=\"G3778\"* inscription|strong=\"G1924\"*: ‘TO|strong=\"G2532\"* AN|strong=\"G2532\"* UNKNOWN GOD|strong=\"G2316\"*.’ What|strong=\"G3739\"* therefore|strong=\"G3767\"* you|strong=\"G5210\"* worship|strong=\"G2151\"* in|strong=\"G1722\"* ignorance, I|strong=\"G1473\"* announce to|strong=\"G2532\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"G1722\"* God|strong=\"G2316\"* who|strong=\"G3588\"* made|strong=\"G4160\"* the|strong=\"G1722\"* world|strong=\"G2889\"* and|strong=\"G2532\"* all|strong=\"G3956\"* things|strong=\"G3956\"* in|strong=\"G1722\"* it|strong=\"G2532\"*, he|strong=\"G2532\"*, being|strong=\"G5225\"* Lord|strong=\"G2962\"* of|strong=\"G2316\"* heaven|strong=\"G3772\"* and|strong=\"G2532\"* earth|strong=\"G1093\"*, doesn’t|strong=\"G3588\"* dwell|strong=\"G2730\"* in|strong=\"G1722\"* temples|strong=\"G3485\"* made|strong=\"G4160\"* with|strong=\"G1722\"* hands|strong=\"G5499\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"G2532\"* isn’t|strong=\"G3588\"* served|strong=\"G2323\"* by|strong=\"G5259\"* men|strong=\"G3956\"*’s hands|strong=\"G5495\"*, as|strong=\"G2532\"* though|strong=\"G2532\"* he|strong=\"G2532\"* needed|strong=\"G4326\"* anything|strong=\"G5100\"*, seeing he|strong=\"G2532\"* himself gives|strong=\"G1325\"* to|strong=\"G2532\"* all|strong=\"G3956\"* life|strong=\"G2222\"* and|strong=\"G2532\"* breath|strong=\"G4157\"* and|strong=\"G2532\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"G2532\"* made|strong=\"G4160\"* from|strong=\"G1537\"* one|strong=\"G1520\"* blood every|strong=\"G3956\"* nation|strong=\"G1484\"* of|strong=\"G1537\"* men|strong=\"G3956\"* to|strong=\"G2532\"* dwell|strong=\"G2730\"* on|strong=\"G1909\"* all|strong=\"G3956\"* the|strong=\"G2532\"* surface of|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, having|strong=\"G2532\"* determined|strong=\"G3724\"* appointed|strong=\"G4160\"* seasons|strong=\"G2540\"* and|strong=\"G2532\"* the|strong=\"G2532\"* boundaries|strong=\"G3734\"* of|strong=\"G1537\"* their|strong=\"G2532\"* dwellings," + }, + { + "verseNum": 27, + "text": "that|strong=\"G3588\"* they|strong=\"G2532\"* should|strong=\"G2316\"* seek|strong=\"G2212\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"*, if|strong=\"G1487\"* perhaps they|strong=\"G2532\"* might|strong=\"G2532\"* reach out|strong=\"G2532\"* for|strong=\"G1520\"* him|strong=\"G3588\"* and|strong=\"G2532\"* find|strong=\"G2147\"* him|strong=\"G3588\"*, though|strong=\"G1487\"* he|strong=\"G2532\"* is|strong=\"G3588\"* not|strong=\"G3756\"* far|strong=\"G3112\"* from|strong=\"G2532\"* each|strong=\"G1538\"* one|strong=\"G1520\"* of|strong=\"G2316\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 28, + "text": "‘For|strong=\"G1063\"* in|strong=\"G1722\"* him|strong=\"G3588\"* we|strong=\"G1063\"* live|strong=\"G2198\"*, move|strong=\"G2795\"*, and|strong=\"G2532\"* have|strong=\"G2532\"* our|strong=\"G2532\"* being|strong=\"G1510\"*.’ As|strong=\"G5613\"* some|strong=\"G5100\"* of|strong=\"G2532\"* your|strong=\"G2532\"* own poets|strong=\"G4163\"* have|strong=\"G2532\"* said|strong=\"G3004\"*, ‘For|strong=\"G1063\"* we|strong=\"G1063\"* are|strong=\"G1510\"* also|strong=\"G2532\"* his|strong=\"G1722\"* offspring|strong=\"G1085\"*.’" + }, + { + "verseNum": 29, + "text": "Being|strong=\"G1510\"* then|strong=\"G3767\"* the|strong=\"G2532\"* offspring|strong=\"G1085\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, we|strong=\"G2532\"* ought|strong=\"G3784\"* not|strong=\"G3756\"* to|strong=\"G2532\"* think|strong=\"G3543\"* that|strong=\"G3588\"* the|strong=\"G2532\"* Divine|strong=\"G2304\"* Nature|strong=\"G2304\"* is|strong=\"G1510\"* like|strong=\"G3664\"* gold|strong=\"G5557\"*, or|strong=\"G2228\"* silver, or|strong=\"G2228\"* stone|strong=\"G3037\"*, engraved by|strong=\"G2532\"* art|strong=\"G5078\"* and|strong=\"G2532\"* design of|strong=\"G2316\"* man|strong=\"G3756\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"G3956\"* times|strong=\"G5550\"* of|strong=\"G2316\"* ignorance therefore|strong=\"G3767\"* God|strong=\"G2316\"* overlooked|strong=\"G5237\"*. But|strong=\"G3767\"* now|strong=\"G3568\"* he|strong=\"G3588\"* commands|strong=\"G3853\"* that|strong=\"G3588\"* all|strong=\"G3956\"* people|strong=\"G3956\"* everywhere|strong=\"G3837\"* should|strong=\"G2316\"* repent|strong=\"G3340\"*," + }, + { + "verseNum": 31, + "text": "because|strong=\"G1537\"* he|strong=\"G3739\"* has|strong=\"G3739\"* appointed|strong=\"G3724\"* a|strong=\"G1722\"* day|strong=\"G2250\"* in|strong=\"G1722\"* which|strong=\"G3739\"* he|strong=\"G3739\"* will|strong=\"G3195\"* judge|strong=\"G2919\"* the|strong=\"G1722\"* world|strong=\"G3625\"* in|strong=\"G1722\"* righteousness|strong=\"G1343\"* by|strong=\"G1722\"* the|strong=\"G1722\"* man|strong=\"G3956\"* whom|strong=\"G3739\"* he|strong=\"G3739\"* has|strong=\"G3739\"* ordained|strong=\"G3724\"*; of|strong=\"G1537\"* which|strong=\"G3739\"* he|strong=\"G3739\"* has|strong=\"G3739\"* given|strong=\"G3930\"* assurance|strong=\"G4102\"* to|strong=\"G3195\"* all|strong=\"G3956\"* men|strong=\"G3956\"*, in|strong=\"G1722\"* that|strong=\"G3739\"* he|strong=\"G3739\"* has|strong=\"G3739\"* raised|strong=\"G3498\"* him|strong=\"G3588\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*.”" + }, + { + "verseNum": 32, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G2532\"* heard of|strong=\"G4012\"* the|strong=\"G2532\"* resurrection of|strong=\"G4012\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, some|strong=\"G3588\"* mocked|strong=\"G5512\"*; but|strong=\"G1161\"* others|strong=\"G3588\"* said|strong=\"G3004\"*, “We|strong=\"G2532\"* want to|strong=\"G2532\"* hear you|strong=\"G4771\"* again|strong=\"G3825\"* concerning|strong=\"G4012\"* this|strong=\"G3778\"*.”" + }, + { + "verseNum": 33, + "text": "Thus|strong=\"G3779\"* Paul|strong=\"G3972\"* went|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G1537\"* among|strong=\"G1537\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 34, + "text": "But|strong=\"G1161\"* certain|strong=\"G5100\"* men|strong=\"G5100\"* joined|strong=\"G2853\"* with|strong=\"G1722\"* him|strong=\"G3588\"* and|strong=\"G2532\"* believed|strong=\"G4100\"*, including|strong=\"G4862\"* Dionysius|strong=\"G1354\"* the|strong=\"G1722\"* Areopagite, and|strong=\"G2532\"* a|strong=\"G2532\"* woman|strong=\"G1135\"* named|strong=\"G3686\"* Damaris|strong=\"G1152\"*, and|strong=\"G2532\"* others|strong=\"G2087\"* with|strong=\"G1722\"* them|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"* Paul|strong=\"G5563\"* departed|strong=\"G5563\"* from|strong=\"G1537\"* Athens and|strong=\"G2064\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Corinth|strong=\"G2882\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* found|strong=\"G2147\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* Jew|strong=\"G2453\"* named|strong=\"G3686\"* Aquila, a|strong=\"G2532\"* man|strong=\"G5100\"* of|strong=\"G1223\"* Pontus|strong=\"G4193\"* by|strong=\"G1223\"* race|strong=\"G1085\"*, who|strong=\"G3588\"* had|strong=\"G2532\"* recently|strong=\"G4373\"* come|strong=\"G2064\"* from|strong=\"G2064\"* Italy|strong=\"G2482\"* with|strong=\"G1223\"* his|strong=\"G3956\"* wife|strong=\"G1135\"* Priscilla|strong=\"G4252\"*, because|strong=\"G1223\"* Claudius|strong=\"G2804\"* had|strong=\"G2532\"* commanded|strong=\"G1299\"* all|strong=\"G3956\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* to|strong=\"G2532\"* depart|strong=\"G5563\"* from|strong=\"G2064\"* Rome|strong=\"G4516\"*. He|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G2532\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"G2532\"* because|strong=\"G1223\"* he|strong=\"G2532\"* practiced the|strong=\"G2532\"* same|strong=\"G2532\"* trade|strong=\"G3673\"*, he|strong=\"G2532\"* lived|strong=\"G1510\"* with|strong=\"G3844\"* them|strong=\"G3588\"* and|strong=\"G2532\"* worked|strong=\"G2038\"*, for|strong=\"G1063\"* by|strong=\"G1223\"* trade|strong=\"G3673\"* they|strong=\"G2532\"* were|strong=\"G1510\"* tent makers." + }, + { + "verseNum": 4, + "text": "He|strong=\"G2532\"* reasoned|strong=\"G1256\"* in|strong=\"G1722\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"* every|strong=\"G3956\"* Sabbath|strong=\"G4521\"* and|strong=\"G2532\"* persuaded|strong=\"G3982\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* Greeks|strong=\"G1672\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"G1161\"* Silas|strong=\"G4609\"* and|strong=\"G2532\"* Timothy|strong=\"G5095\"* came|strong=\"G2718\"* down|strong=\"G2718\"* from|strong=\"G2532\"* Macedonia|strong=\"G3109\"*, Paul|strong=\"G3972\"* was|strong=\"G1510\"* compelled by|strong=\"G2532\"* the|strong=\"G2532\"* Spirit|strong=\"G3588\"*, testifying|strong=\"G1263\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* that|strong=\"G3588\"* Jesus|strong=\"G2424\"* was|strong=\"G1510\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* opposed him|strong=\"G3588\"* and|strong=\"G2532\"* blasphemed, he|strong=\"G2532\"* shook|strong=\"G1621\"* out|strong=\"G2532\"* his|strong=\"G1438\"* clothing|strong=\"G2440\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “Your|strong=\"G2532\"* blood be|strong=\"G2532\"* on|strong=\"G1909\"* your|strong=\"G2532\"* own|strong=\"G1438\"* heads|strong=\"G2776\"*! I|strong=\"G1473\"* am|strong=\"G1473\"* clean|strong=\"G2513\"*. From|strong=\"G2532\"* now|strong=\"G1161\"* on|strong=\"G1909\"*, I|strong=\"G1473\"* will|strong=\"G2532\"* go|strong=\"G4198\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*!”" + }, + { + "verseNum": 7, + "text": "He|strong=\"G2532\"* departed|strong=\"G3327\"* there|strong=\"G2532\"* and|strong=\"G2532\"* went|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* house|strong=\"G3614\"* of|strong=\"G2316\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* named|strong=\"G3686\"* Justus|strong=\"G2459\"*, one|strong=\"G5100\"* who|strong=\"G3739\"* worshiped God|strong=\"G2316\"*, whose|strong=\"G3739\"* house|strong=\"G3614\"* was|strong=\"G1510\"* next|strong=\"G4927\"* door to|strong=\"G1519\"* the|strong=\"G2532\"* synagogue|strong=\"G4864\"*." + }, + { + "verseNum": 8, + "text": "Crispus|strong=\"G2921\"*, the|strong=\"G2532\"* ruler of|strong=\"G2532\"* the|strong=\"G2532\"* synagogue, believed|strong=\"G4100\"* in|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* with|strong=\"G4862\"* all|strong=\"G3650\"* his|strong=\"G2532\"* house|strong=\"G3624\"*. Many|strong=\"G4183\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Corinthians|strong=\"G2881\"*, when|strong=\"G1161\"* they|strong=\"G2532\"* heard, believed|strong=\"G4100\"* and|strong=\"G2532\"* were|strong=\"G3588\"* baptized." + }, + { + "verseNum": 9, + "text": "The|strong=\"G1722\"* Lord|strong=\"G2962\"* said|strong=\"G3004\"* to|strong=\"G2532\"* Paul|strong=\"G3972\"* in|strong=\"G1722\"* the|strong=\"G1722\"* night|strong=\"G3571\"* by|strong=\"G1223\"* a|strong=\"G2532\"* vision|strong=\"G3705\"*, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w speak|strong=\"G2980\"\\+w* \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w silent|strong=\"G4623\"\\+w*; *" + }, + { + "verseNum": 10, + "text": "\\+w for|strong=\"G1722\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w attack|strong=\"G2007\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w harm|strong=\"G2559\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w for|strong=\"G1722\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w people|strong=\"G2992\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w city|strong=\"G4172\"\\+w*.”*" + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* lived|strong=\"G2532\"* there|strong=\"G2532\"* a|strong=\"G2532\"* year|strong=\"G1763\"* and|strong=\"G2532\"* six|strong=\"G1803\"* months|strong=\"G3376\"*, teaching|strong=\"G1321\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* among|strong=\"G1722\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Gallio|strong=\"G1058\"* was|strong=\"G1510\"* proconsul of|strong=\"G2532\"* Achaia, the|strong=\"G2532\"* Jews|strong=\"G2453\"* with|strong=\"G2532\"* one|strong=\"G3588\"* accord|strong=\"G3661\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* against|strong=\"G1909\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* brought|strong=\"G1161\"* him|strong=\"G3588\"* before|strong=\"G1909\"* the|strong=\"G2532\"* judgment seat," + }, + { + "verseNum": 13, + "text": "saying|strong=\"G3004\"*, “This|strong=\"G3778\"* man|strong=\"G3778\"* persuades men|strong=\"G3778\"* to|strong=\"G3004\"* worship|strong=\"G4576\"* God|strong=\"G2316\"* contrary|strong=\"G3844\"* to|strong=\"G3004\"* the|strong=\"G3588\"* law|strong=\"G3551\"*.”" + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Paul|strong=\"G3972\"* was|strong=\"G1510\"* about|strong=\"G3195\"* to|strong=\"G4314\"* open his|strong=\"G2596\"* mouth|strong=\"G4750\"*, Gallio|strong=\"G1058\"* said|strong=\"G3004\"* to|strong=\"G4314\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"*, “If|strong=\"G1487\"* indeed|strong=\"G3303\"* it|strong=\"G1161\"* were|strong=\"G1510\"* a|strong=\"G1510\"* matter|strong=\"G3056\"* of|strong=\"G3056\"* wrong or|strong=\"G2228\"* of|strong=\"G3056\"* wicked|strong=\"G4190\"* crime|strong=\"G4467\"*, you|strong=\"G5210\"* Jews|strong=\"G2453\"*, it|strong=\"G1161\"* would|strong=\"G3195\"* be|strong=\"G1510\"* reasonable|strong=\"G3056\"* that|strong=\"G3588\"* I|strong=\"G1161\"* should|strong=\"G3195\"* bear with|strong=\"G4314\"* you|strong=\"G5210\"*;" + }, + { + "verseNum": 15, + "text": "but|strong=\"G1161\"* if|strong=\"G1487\"* they|strong=\"G2532\"* are|strong=\"G1510\"* questions|strong=\"G2213\"* about|strong=\"G4012\"* words|strong=\"G3056\"* and|strong=\"G2532\"* names|strong=\"G3686\"* and|strong=\"G2532\"* your|strong=\"G2532\"* own law|strong=\"G3551\"*, look|strong=\"G3708\"* to|strong=\"G2532\"* it|strong=\"G2532\"* yourselves|strong=\"G4771\"*. For|strong=\"G4012\"* I|strong=\"G1473\"* don’t|strong=\"G3588\"* want|strong=\"G1014\"* to|strong=\"G2532\"* be|strong=\"G1510\"* a|strong=\"G2532\"* judge|strong=\"G2923\"* of|strong=\"G4012\"* these|strong=\"G3778\"* matters|strong=\"G3056\"*.”" + }, + { + "verseNum": 16, + "text": "So|strong=\"G2532\"* he|strong=\"G2532\"* drove them|strong=\"G3588\"* from|strong=\"G2532\"* the|strong=\"G2532\"* judgment seat." + }, + { + "verseNum": 17, + "text": "Then|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* Greeks seized|strong=\"G1949\"* Sosthenes|strong=\"G4988\"*, the|strong=\"G2532\"* ruler of|strong=\"G2532\"* the|strong=\"G2532\"* synagogue, and|strong=\"G2532\"* beat|strong=\"G5180\"* him|strong=\"G3588\"* before|strong=\"G1715\"* the|strong=\"G2532\"* judgment seat. Gallio|strong=\"G1058\"* didn’t|strong=\"G3588\"* care|strong=\"G3199\"* about|strong=\"G3199\"* any|strong=\"G3956\"* of|strong=\"G2532\"* these|strong=\"G3778\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 18, + "text": "Paul|strong=\"G3972\"*, having|strong=\"G2192\"* stayed after|strong=\"G1161\"* this|strong=\"G3588\"* many|strong=\"G2425\"* more|strong=\"G2089\"* days|strong=\"G2250\"*, took|strong=\"G2532\"* his|strong=\"G1519\"* leave of|strong=\"G2250\"* the|strong=\"G1722\"* brothers,+ 18:18 The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.”* and|strong=\"G2532\"* sailed|strong=\"G1602\"* from|strong=\"G2532\"* there|strong=\"G2532\"* for|strong=\"G1063\"* Syria|strong=\"G4947\"*, together|strong=\"G4862\"* with|strong=\"G1722\"* Priscilla|strong=\"G4252\"* and|strong=\"G2532\"* Aquila. He|strong=\"G2532\"* shaved his|strong=\"G1519\"* head|strong=\"G2776\"* in|strong=\"G1722\"* Cenchreae, for|strong=\"G1063\"* he|strong=\"G2532\"* had|strong=\"G2192\"* a|strong=\"G2192\"* vow|strong=\"G2171\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"G1161\"* came|strong=\"G1525\"* to|strong=\"G1519\"* Ephesus|strong=\"G2181\"*, and|strong=\"G1161\"* he|strong=\"G1161\"* left|strong=\"G2641\"* them|strong=\"G3588\"* there|strong=\"G1161\"*; but|strong=\"G1161\"* he|strong=\"G1161\"* himself|strong=\"G1519\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G1519\"* synagogue|strong=\"G4864\"* and|strong=\"G1161\"* reasoned|strong=\"G1256\"* with|strong=\"G1519\"* the|strong=\"G1519\"* Jews|strong=\"G2453\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* asked|strong=\"G2065\"* him|strong=\"G2065\"* to|strong=\"G1909\"* stay|strong=\"G3306\"* with|strong=\"G1909\"* them|strong=\"G4183\"* a|strong=\"G1909\"* longer|strong=\"G1909\"* time|strong=\"G5550\"*, he|strong=\"G1161\"* declined;" + }, + { + "verseNum": 21, + "text": "but|strong=\"G2532\"* taking his|strong=\"G2532\"* leave of|strong=\"G2316\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “I|strong=\"G2532\"* must|strong=\"G3588\"* by|strong=\"G4314\"* all|strong=\"G2532\"* means|strong=\"G3004\"* keep this|strong=\"G3588\"* coming|strong=\"G2316\"* feast in|strong=\"G2532\"* Jerusalem, but|strong=\"G2532\"* I|strong=\"G2532\"* will|strong=\"G2309\"* return again|strong=\"G3825\"* to|strong=\"G4314\"* you|strong=\"G5210\"* if|strong=\"G2532\"* God|strong=\"G2316\"* wills|strong=\"G2309\"*.” Then|strong=\"G2532\"* he|strong=\"G2532\"* set|strong=\"G2532\"* sail from|strong=\"G2532\"* Ephesus|strong=\"G2181\"*." + }, + { + "verseNum": 22, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* landed|strong=\"G2718\"* at|strong=\"G1519\"* Caesarea|strong=\"G2542\"*, he|strong=\"G2532\"* went|strong=\"G2597\"* up|strong=\"G1519\"* and|strong=\"G2532\"* greeted the|strong=\"G2532\"* assembly|strong=\"G1577\"*, and|strong=\"G2532\"* went|strong=\"G2597\"* down|strong=\"G2597\"* to|strong=\"G1519\"* Antioch." + }, + { + "verseNum": 23, + "text": "Having|strong=\"G2532\"* spent|strong=\"G4160\"* some|strong=\"G5100\"* time|strong=\"G5550\"* there|strong=\"G2532\"*, he|strong=\"G2532\"* departed|strong=\"G1831\"* and|strong=\"G2532\"* went|strong=\"G1831\"* through|strong=\"G1330\"* the|strong=\"G2532\"* region|strong=\"G5561\"* of|strong=\"G2532\"* Galatia|strong=\"G1054\"* and|strong=\"G2532\"* Phrygia|strong=\"G5435\"*, in|strong=\"G2532\"* order|strong=\"G2517\"*, establishing|strong=\"G4160\"* all|strong=\"G3956\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*." + }, + { + "verseNum": 24, + "text": "Now|strong=\"G1161\"* a|strong=\"G1519\"* certain|strong=\"G5100\"* Jew|strong=\"G2453\"* named|strong=\"G3686\"* Apollos, an|strong=\"G1519\"* Alexandrian by|strong=\"G1722\"* race|strong=\"G1085\"*, an|strong=\"G1519\"* eloquent|strong=\"G3052\"* man|strong=\"G5100\"*, came|strong=\"G2658\"* to|strong=\"G1519\"* Ephesus|strong=\"G2181\"*. He|strong=\"G1161\"* was|strong=\"G1510\"* mighty|strong=\"G1415\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Scriptures|strong=\"G1124\"*." + }, + { + "verseNum": 25, + "text": "This|strong=\"G3778\"* man|strong=\"G3778\"* had|strong=\"G2424\"* been|strong=\"G1510\"* instructed|strong=\"G2727\"* in|strong=\"G2532\"* the|strong=\"G2532\"* way|strong=\"G3598\"* of|strong=\"G4012\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*; and|strong=\"G2532\"* being|strong=\"G1510\"* fervent|strong=\"G2204\"* in|strong=\"G2532\"* spirit|strong=\"G4151\"*, he|strong=\"G2532\"* spoke|strong=\"G2980\"* and|strong=\"G2532\"* taught|strong=\"G1321\"* accurately the|strong=\"G2532\"* things|strong=\"G3778\"* concerning|strong=\"G4012\"* Jesus|strong=\"G2424\"*, although|strong=\"G2532\"* he|strong=\"G2532\"* knew only|strong=\"G3440\"* the|strong=\"G2532\"* baptism of|strong=\"G4012\"* John|strong=\"G2491\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"G2532\"* began|strong=\"G1161\"* to|strong=\"G2532\"* speak|strong=\"G3955\"* boldly|strong=\"G3955\"* in|strong=\"G1722\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"*. But|strong=\"G1161\"* when|strong=\"G1161\"* Priscilla|strong=\"G4252\"* and|strong=\"G2532\"* Aquila heard him|strong=\"G3588\"*, they|strong=\"G2532\"* took|strong=\"G4355\"* him|strong=\"G3588\"* aside|strong=\"G4355\"*, and|strong=\"G2532\"* explained|strong=\"G1620\"* to|strong=\"G2532\"* him|strong=\"G3588\"* the|strong=\"G1722\"* way|strong=\"G3598\"* of|strong=\"G2316\"* God|strong=\"G2316\"* more|strong=\"G2532\"* accurately." + }, + { + "verseNum": 27, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G3739\"* determined to|strong=\"G1519\"* pass|strong=\"G1330\"* over|strong=\"G1330\"* into|strong=\"G1519\"* Achaia, the|strong=\"G1519\"* brothers encouraged|strong=\"G4389\"* him|strong=\"G3588\"*; and|strong=\"G1161\"* wrote|strong=\"G1125\"* to|strong=\"G1519\"* the|strong=\"G1519\"* disciples|strong=\"G3101\"* to|strong=\"G1519\"* receive him|strong=\"G3588\"*. When|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G3739\"* come|strong=\"G3854\"*, he|strong=\"G1161\"* greatly|strong=\"G4183\"* helped|strong=\"G4820\"* those|strong=\"G3588\"* who|strong=\"G3739\"* had|strong=\"G3739\"* believed|strong=\"G4100\"* through|strong=\"G1223\"* grace|strong=\"G5485\"*;" + }, + { + "verseNum": 28, + "text": "for|strong=\"G1063\"* he|strong=\"G3588\"* powerfully|strong=\"G2159\"* refuted|strong=\"G1246\"* the|strong=\"G1223\"* Jews|strong=\"G2453\"*, publicly|strong=\"G1219\"* showing|strong=\"G1925\"* by|strong=\"G1223\"* the|strong=\"G1223\"* Scriptures|strong=\"G1124\"* that|strong=\"G3588\"* Jesus|strong=\"G2424\"* was|strong=\"G1510\"* the|strong=\"G1223\"* Christ|strong=\"G5547\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "While|strong=\"G1722\"* Apollos was|strong=\"G1510\"* at|strong=\"G1722\"* Corinth|strong=\"G2882\"*, Paul|strong=\"G3972\"*, having|strong=\"G2532\"* passed|strong=\"G1330\"* through|strong=\"G1722\"* the|strong=\"G1722\"* upper country|strong=\"G3313\"*, came|strong=\"G2064\"* to|strong=\"G1519\"* Ephesus|strong=\"G2181\"* and|strong=\"G2532\"* found|strong=\"G2147\"* certain|strong=\"G5100\"* disciples|strong=\"G3101\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “Did|strong=\"G4100\"* you|strong=\"G1487\"* receive|strong=\"G2983\"* the|strong=\"G1161\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* when|strong=\"G1161\"* you|strong=\"G1487\"* believed|strong=\"G4100\"*?”" + }, + { + "verseNum": 3, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"*, “Into|strong=\"G1519\"* what|strong=\"G5101\"* then|strong=\"G3767\"* were|strong=\"G3588\"* you|strong=\"G3004\"* baptized?”" + }, + { + "verseNum": 4, + "text": "Paul|strong=\"G3972\"* said|strong=\"G3004\"*, “John|strong=\"G2491\"* indeed|strong=\"G1161\"* baptized with|strong=\"G3326\"* the|strong=\"G1519\"* baptism of|strong=\"G2424\"* repentance|strong=\"G3341\"*, saying|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G1519\"* people|strong=\"G2992\"* that|strong=\"G2443\"* they|strong=\"G1161\"* should|strong=\"G3588\"* believe|strong=\"G4100\"* in|strong=\"G1519\"* the|strong=\"G1519\"* one|strong=\"G3588\"* who|strong=\"G3588\"* would|strong=\"G2064\"* come|strong=\"G2064\"* after|strong=\"G3326\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* is|strong=\"G1510\"*, in|strong=\"G1519\"* Christ Jesus|strong=\"G2424\"*.”+ 19:4 NU omits Christ.*" + }, + { + "verseNum": 5, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* heard this|strong=\"G3588\"*, they|strong=\"G1161\"* were|strong=\"G3588\"* baptized in|strong=\"G1519\"* the|strong=\"G1519\"* name|strong=\"G3686\"* of|strong=\"G3686\"* the|strong=\"G1519\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"G2532\"* Paul|strong=\"G3972\"* had|strong=\"G2532\"* laid|strong=\"G2007\"* his|strong=\"G1438\"* hands|strong=\"G5495\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* came|strong=\"G2064\"* on|strong=\"G1909\"* them|strong=\"G3588\"* and|strong=\"G2532\"* they|strong=\"G2532\"* spoke|strong=\"G2980\"* with|strong=\"G2532\"* other|strong=\"G1438\"* languages|strong=\"G1100\"* and|strong=\"G2532\"* prophesied|strong=\"G4395\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"G1161\"* were|strong=\"G1510\"* about|strong=\"G5616\"* twelve|strong=\"G1427\"* men|strong=\"G3956\"* in|strong=\"G3956\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* synagogue|strong=\"G4864\"* and|strong=\"G2532\"* spoke|strong=\"G3955\"* boldly|strong=\"G3955\"* for|strong=\"G1519\"* a|strong=\"G2532\"* period|strong=\"G2532\"* of|strong=\"G4012\"* three|strong=\"G5140\"* months|strong=\"G3376\"*, reasoning|strong=\"G1256\"* and|strong=\"G2532\"* persuading|strong=\"G3982\"* about|strong=\"G4012\"* the|strong=\"G2532\"* things|strong=\"G3588\"* concerning|strong=\"G4012\"* God|strong=\"G2316\"*’s Kingdom." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* some|strong=\"G5100\"* were|strong=\"G3588\"* hardened|strong=\"G4645\"* and|strong=\"G2532\"* disobedient, speaking|strong=\"G2551\"* evil|strong=\"G2551\"* of|strong=\"G2250\"* the|strong=\"G1722\"* Way|strong=\"G3598\"* before|strong=\"G1799\"* the|strong=\"G1722\"* multitude|strong=\"G4128\"*, he|strong=\"G2532\"* departed from|strong=\"G2532\"* them|strong=\"G3588\"* and|strong=\"G2532\"* separated the|strong=\"G1722\"* disciples|strong=\"G3101\"*, reasoning|strong=\"G1256\"* daily|strong=\"G2250\"* in|strong=\"G1722\"* the|strong=\"G1722\"* school|strong=\"G4981\"* of|strong=\"G2250\"* Tyrannus|strong=\"G5181\"*." + }, + { + "verseNum": 10, + "text": "This|strong=\"G3778\"* continued|strong=\"G1096\"* for|strong=\"G1909\"* two|strong=\"G1417\"* years|strong=\"G2094\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* lived|strong=\"G2730\"* in|strong=\"G1909\"* Asia|strong=\"G3588\"* heard the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2532\"*, both|strong=\"G2532\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* Greeks|strong=\"G1672\"*." + }, + { + "verseNum": 11, + "text": "God|strong=\"G2316\"* worked|strong=\"G4160\"* special|strong=\"G5177\"* miracles|strong=\"G1411\"* by|strong=\"G1223\"* the|strong=\"G1223\"* hands|strong=\"G5495\"* of|strong=\"G1223\"* Paul|strong=\"G3972\"*," + }, + { + "verseNum": 12, + "text": "so|strong=\"G2532\"* that|strong=\"G3588\"* even|strong=\"G2532\"* handkerchiefs|strong=\"G4676\"* or|strong=\"G2228\"* aprons|strong=\"G4612\"* were|strong=\"G3588\"* carried|strong=\"G2532\"* away from|strong=\"G2532\"* his|strong=\"G1909\"* body|strong=\"G5559\"* to|strong=\"G2532\"* the|strong=\"G2532\"* sick, and|strong=\"G2532\"* the|strong=\"G2532\"* diseases|strong=\"G3554\"* departed|strong=\"G1607\"* from|strong=\"G2532\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* evil|strong=\"G4190\"* spirits|strong=\"G4151\"* went|strong=\"G2532\"* out|strong=\"G1607\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* some|strong=\"G5100\"* of|strong=\"G4151\"* the|strong=\"G2532\"* itinerant|strong=\"G4022\"* Jews|strong=\"G2453\"*, exorcists|strong=\"G1845\"*, took|strong=\"G2532\"* on|strong=\"G1909\"* themselves to|strong=\"G2532\"* invoke over|strong=\"G1909\"* those|strong=\"G3588\"* who|strong=\"G3739\"* had|strong=\"G2192\"* the|strong=\"G2532\"* evil|strong=\"G4190\"* spirits|strong=\"G4151\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*, saying|strong=\"G3004\"*, “We|strong=\"G3739\"* adjure|strong=\"G3726\"* you|strong=\"G5210\"* by|strong=\"G1909\"* Jesus|strong=\"G2424\"* whom|strong=\"G3739\"* Paul|strong=\"G3972\"* preaches|strong=\"G2784\"*.”" + }, + { + "verseNum": 14, + "text": "There|strong=\"G1161\"* were|strong=\"G1510\"* seven|strong=\"G2033\"* sons|strong=\"G5207\"* of|strong=\"G5207\"* one|strong=\"G5100\"* Sceva|strong=\"G4630\"*, a|strong=\"G1510\"* Jewish|strong=\"G2453\"* chief priest, who|strong=\"G2453\"* did|strong=\"G4160\"* this|strong=\"G3778\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"G2532\"* evil|strong=\"G4190\"* spirit|strong=\"G4151\"* answered|strong=\"G3004\"*, “Jesus|strong=\"G2424\"* I|strong=\"G2532\"* know|strong=\"G1097\"*, and|strong=\"G2532\"* Paul|strong=\"G3972\"* I|strong=\"G2532\"* know|strong=\"G1097\"*, but|strong=\"G1161\"* who|strong=\"G5101\"* are|strong=\"G1510\"* you|strong=\"G5210\"*?”" + }, + { + "verseNum": 16, + "text": "The|strong=\"G1722\"* man|strong=\"G3739\"* in|strong=\"G1722\"* whom|strong=\"G3739\"* the|strong=\"G1722\"* evil|strong=\"G4190\"* spirit|strong=\"G4151\"* was|strong=\"G1510\"* leaped|strong=\"G2177\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, overpowered|strong=\"G2480\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* prevailed|strong=\"G2480\"* against|strong=\"G2596\"* them|strong=\"G3588\"*, so|strong=\"G2532\"* that|strong=\"G3739\"* they|strong=\"G2532\"* fled|strong=\"G1628\"* out|strong=\"G1537\"* of|strong=\"G1537\"* that|strong=\"G3739\"* house|strong=\"G3624\"* naked|strong=\"G1131\"* and|strong=\"G2532\"* wounded|strong=\"G5135\"*." + }, + { + "verseNum": 17, + "text": "This|strong=\"G3778\"* became|strong=\"G1096\"* known|strong=\"G1110\"* to|strong=\"G2532\"* all|strong=\"G3956\"*, both|strong=\"G2532\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* Greeks|strong=\"G1672\"*, who|strong=\"G3588\"* lived|strong=\"G2730\"* at|strong=\"G1909\"* Ephesus|strong=\"G2181\"*. Fear|strong=\"G5401\"* fell|strong=\"G1968\"* on|strong=\"G1909\"* them|strong=\"G3588\"* all|strong=\"G3956\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* was|strong=\"G1096\"* magnified|strong=\"G3170\"*." + }, + { + "verseNum": 18, + "text": "Many|strong=\"G4183\"* also|strong=\"G2532\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2532\"* believed|strong=\"G4100\"* came|strong=\"G2064\"*, confessing|strong=\"G1843\"* and|strong=\"G2532\"* declaring their|strong=\"G2532\"* deeds|strong=\"G4234\"*." + }, + { + "verseNum": 19, + "text": "Many|strong=\"G2425\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* practiced|strong=\"G4238\"* magical arts|strong=\"G4021\"* brought|strong=\"G1161\"* their|strong=\"G2532\"* books together|strong=\"G4851\"* and|strong=\"G2532\"* burned|strong=\"G2618\"* them|strong=\"G3588\"* in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2532\"* all|strong=\"G3956\"*. They|strong=\"G2532\"* counted|strong=\"G4860\"* their|strong=\"G2532\"* price|strong=\"G5092\"*, and|strong=\"G2532\"* found|strong=\"G2147\"* it|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* fifty|strong=\"G3461\"* thousand|strong=\"G3461\"* pieces of|strong=\"G2532\"* silver.+ 19:19 The 50,000 pieces of silver here probably referred to 50,000 drachmas. If so, the value of the burned books was equivalent to about 160 man-years of wages for agricultural laborers*" + }, + { + "verseNum": 20, + "text": "So|strong=\"G3779\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* was|strong=\"G3588\"* growing and|strong=\"G2532\"* becoming mighty|strong=\"G2532\"*." + }, + { + "verseNum": 21, + "text": "Now|strong=\"G1161\"* after|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"* had|strong=\"G2532\"* ended|strong=\"G4137\"*, Paul|strong=\"G3972\"* determined in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*, when|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* passed|strong=\"G1330\"* through|strong=\"G1722\"* Macedonia|strong=\"G3109\"* and|strong=\"G2532\"* Achaia, to|strong=\"G1519\"* go|strong=\"G4198\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*, saying|strong=\"G3004\"*, “After|strong=\"G3326\"* I|strong=\"G1473\"* have|strong=\"G2532\"* been|strong=\"G1096\"* there|strong=\"G1563\"*, I|strong=\"G1473\"* must|strong=\"G1163\"* also|strong=\"G2532\"* see|strong=\"G3708\"* Rome|strong=\"G4516\"*.”" + }, + { + "verseNum": 22, + "text": "Having|strong=\"G2532\"* sent|strong=\"G2532\"* into|strong=\"G1519\"* Macedonia|strong=\"G3109\"* two|strong=\"G1417\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* served|strong=\"G1247\"* him|strong=\"G3588\"*, Timothy|strong=\"G5095\"* and|strong=\"G2532\"* Erastus|strong=\"G2037\"*, he|strong=\"G2532\"* himself|strong=\"G1519\"* stayed|strong=\"G1907\"* in|strong=\"G1519\"* Asia|strong=\"G3588\"* for|strong=\"G1519\"* a|strong=\"G2532\"* while|strong=\"G5550\"*." + }, + { + "verseNum": 23, + "text": "About|strong=\"G4012\"* that|strong=\"G3588\"* time|strong=\"G2540\"* there|strong=\"G1161\"* arose|strong=\"G1096\"* no|strong=\"G3756\"* small|strong=\"G3641\"* disturbance|strong=\"G5017\"* concerning|strong=\"G4012\"* the|strong=\"G1161\"* Way|strong=\"G3598\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"G1063\"* a|strong=\"G4160\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* named|strong=\"G3686\"* Demetrius|strong=\"G1216\"*, a|strong=\"G4160\"* silversmith who|strong=\"G3588\"* made|strong=\"G4160\"* silver shrines|strong=\"G3485\"* of|strong=\"G3686\"* Artemis, brought|strong=\"G3930\"* no|strong=\"G3756\"* little|strong=\"G3641\"* business|strong=\"G2039\"* to|strong=\"G3756\"* the|strong=\"G3588\"* craftsmen|strong=\"G5079\"*," + }, + { + "verseNum": 25, + "text": "whom|strong=\"G3739\"* he|strong=\"G2532\"* gathered|strong=\"G4867\"* together|strong=\"G4867\"* with|strong=\"G1537\"* the|strong=\"G2532\"* workmen|strong=\"G2040\"* of|strong=\"G1537\"* like|strong=\"G5108\"* occupation|strong=\"G5108\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Sirs, you|strong=\"G3739\"* know|strong=\"G1987\"* that|strong=\"G3754\"* by|strong=\"G1537\"* this|strong=\"G3778\"* business|strong=\"G2039\"* we|strong=\"G2249\"* have|strong=\"G2532\"* our|strong=\"G2532\"* wealth|strong=\"G2142\"*." + }, + { + "verseNum": 26, + "text": "You|strong=\"G3754\"* see|strong=\"G2334\"* and|strong=\"G2532\"* hear that|strong=\"G3754\"* not|strong=\"G3756\"* at|strong=\"G3756\"* Ephesus|strong=\"G2181\"* alone|strong=\"G3441\"*, but|strong=\"G2532\"* almost|strong=\"G4975\"* throughout|strong=\"G1223\"* all|strong=\"G3956\"* Asia|strong=\"G3588\"*, this|strong=\"G3778\"* Paul|strong=\"G3972\"* has|strong=\"G2316\"* persuaded|strong=\"G3982\"* and|strong=\"G2532\"* turned|strong=\"G3179\"* away|strong=\"G3179\"* many|strong=\"G2425\"* people|strong=\"G3793\"*, saying|strong=\"G3004\"* that|strong=\"G3754\"* they|strong=\"G2532\"* are|strong=\"G1510\"* no|strong=\"G3756\"* gods|strong=\"G2316\"* that|strong=\"G3754\"* are|strong=\"G1510\"* made|strong=\"G1096\"* with|strong=\"G1223\"* hands|strong=\"G5495\"*." + }, + { + "verseNum": 27, + "text": "Not|strong=\"G3756\"* only|strong=\"G3440\"* is|strong=\"G3588\"* there|strong=\"G2532\"* danger|strong=\"G2793\"* that|strong=\"G3739\"* this|strong=\"G3778\"* our|strong=\"G2532\"* trade|strong=\"G3313\"* come|strong=\"G2064\"* into|strong=\"G1519\"* disrepute, but|strong=\"G1161\"* also|strong=\"G2532\"* that|strong=\"G3739\"* the|strong=\"G2532\"* temple|strong=\"G2411\"* of|strong=\"G2532\"* the|strong=\"G2532\"* great|strong=\"G3173\"* goddess|strong=\"G2299\"* Artemis will|strong=\"G3195\"* be|strong=\"G2532\"* counted|strong=\"G3049\"* as|strong=\"G1519\"* nothing|strong=\"G3762\"* and|strong=\"G2532\"* her|strong=\"G1519\"* majesty|strong=\"G3168\"* destroyed|strong=\"G2507\"*, whom|strong=\"G3739\"* all|strong=\"G3650\"* Asia|strong=\"G3588\"* and|strong=\"G2532\"* the|strong=\"G2532\"* world|strong=\"G3625\"* worships.”" + }, + { + "verseNum": 28, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* heard this|strong=\"G3588\"* they|strong=\"G2532\"* were|strong=\"G3588\"* filled|strong=\"G4134\"* with|strong=\"G2532\"* anger|strong=\"G2372\"*, and|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"*, saying|strong=\"G3004\"*, “Great|strong=\"G3173\"* is|strong=\"G3588\"* Artemis of|strong=\"G2532\"* the|strong=\"G2532\"* Ephesians|strong=\"G2180\"*!”" + }, + { + "verseNum": 29, + "text": "The|strong=\"G2532\"* whole city|strong=\"G4172\"* was|strong=\"G3588\"* filled|strong=\"G4130\"* with|strong=\"G2532\"* confusion|strong=\"G4799\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* rushed|strong=\"G3729\"* with|strong=\"G2532\"* one|strong=\"G3588\"* accord|strong=\"G3661\"* into|strong=\"G1519\"* the|strong=\"G2532\"* theater|strong=\"G2302\"*, having|strong=\"G2532\"* seized|strong=\"G4884\"* Gaius|strong=\"G1050\"* and|strong=\"G2532\"* Aristarchus, men|strong=\"G3588\"* of|strong=\"G2532\"* Macedonia|strong=\"G3110\"*, Paul|strong=\"G3972\"*’s companions|strong=\"G3588\"* in|strong=\"G1519\"* travel|strong=\"G4898\"*." + }, + { + "verseNum": 30, + "text": "When|strong=\"G1161\"* Paul|strong=\"G3972\"* wanted|strong=\"G1014\"* to|strong=\"G1519\"* enter|strong=\"G1525\"* in|strong=\"G1519\"* to|strong=\"G1519\"* the|strong=\"G1519\"* people|strong=\"G1218\"*, the|strong=\"G1519\"* disciples|strong=\"G3101\"* didn’t|strong=\"G3588\"* allow|strong=\"G1439\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 31, + "text": "Certain|strong=\"G5100\"* also|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Asiarchs, being|strong=\"G1510\"* his|strong=\"G1438\"* friends|strong=\"G5384\"*, sent|strong=\"G3992\"* to|strong=\"G1519\"* him|strong=\"G3588\"* and|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* not|strong=\"G3361\"* to|strong=\"G1519\"* venture|strong=\"G1325\"* into|strong=\"G1519\"* the|strong=\"G2532\"* theater|strong=\"G2302\"*." + }, + { + "verseNum": 32, + "text": "Some|strong=\"G5100\"* therefore|strong=\"G3767\"* cried|strong=\"G2896\"* one|strong=\"G5100\"* thing|strong=\"G5100\"*, and|strong=\"G2532\"* some|strong=\"G5100\"* another|strong=\"G5100\"*, for|strong=\"G1063\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"* was|strong=\"G1510\"* in|strong=\"G2532\"* confusion|strong=\"G4797\"*. Most|strong=\"G4183\"* of|strong=\"G2532\"* them|strong=\"G3588\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"* why|strong=\"G5101\"* they|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G4905\"* together|strong=\"G4905\"*." + }, + { + "verseNum": 33, + "text": "They|strong=\"G1161\"* brought|strong=\"G1161\"* Alexander out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1537\"* multitude|strong=\"G3793\"*, the|strong=\"G1537\"* Jews|strong=\"G2453\"* putting|strong=\"G4261\"* him|strong=\"G3588\"* forward|strong=\"G4261\"*. Alexander beckoned|strong=\"G2678\"* with|strong=\"G1537\"* his|strong=\"G3588\"* hand|strong=\"G5495\"*, and|strong=\"G1161\"* would|strong=\"G2309\"* have|strong=\"G2309\"* made|strong=\"G1161\"* a|strong=\"G3793\"* defense to|strong=\"G2309\"* the|strong=\"G1537\"* people|strong=\"G3793\"*." + }, + { + "verseNum": 34, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G1161\"* perceived|strong=\"G1921\"* that|strong=\"G3754\"* he|strong=\"G1161\"* was|strong=\"G1510\"* a|strong=\"G1096\"* Jew|strong=\"G2453\"*, all|strong=\"G3956\"* with|strong=\"G1537\"* one|strong=\"G1520\"* voice|strong=\"G5456\"* for|strong=\"G3754\"* a|strong=\"G1096\"* time|strong=\"G5610\"* of|strong=\"G1537\"* about|strong=\"G5613\"* two|strong=\"G1417\"* hours|strong=\"G5610\"* cried|strong=\"G2896\"* out|strong=\"G1537\"*, “Great|strong=\"G3173\"* is|strong=\"G1510\"* Artemis of|strong=\"G1537\"* the|strong=\"G3956\"* Ephesians|strong=\"G2180\"*!”" + }, + { + "verseNum": 35, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* town|strong=\"G4172\"* clerk|strong=\"G1122\"* had|strong=\"G2532\"* quieted|strong=\"G2687\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*, he|strong=\"G2532\"* said|strong=\"G5346\"*, “You|strong=\"G3739\"* men|strong=\"G3588\"* of|strong=\"G2532\"* Ephesus|strong=\"G2180\"*, what|strong=\"G5101\"* man|strong=\"G3739\"* is|strong=\"G1510\"* there|strong=\"G2532\"* who|strong=\"G3739\"* doesn’t|strong=\"G3588\"* know|strong=\"G1097\"* that|strong=\"G3739\"* the|strong=\"G2532\"* city|strong=\"G4172\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Ephesians|strong=\"G2180\"* is|strong=\"G1510\"* temple|strong=\"G3511\"* keeper of|strong=\"G2532\"* the|strong=\"G2532\"* great|strong=\"G3173\"* goddess Artemis, and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* image which|strong=\"G3739\"* fell|strong=\"G2532\"* down|strong=\"G1356\"* from|strong=\"G2532\"* Zeus?" + }, + { + "verseNum": 36, + "text": "Seeing then|strong=\"G3767\"* that|strong=\"G2532\"* these|strong=\"G3778\"* things|strong=\"G3778\"* can’t be|strong=\"G1510\"* denied, you|strong=\"G5210\"* ought|strong=\"G1163\"* to|strong=\"G2532\"* be|strong=\"G1510\"* quiet|strong=\"G2687\"* and|strong=\"G2532\"* to|strong=\"G2532\"* do|strong=\"G4238\"* nothing|strong=\"G3367\"* rash|strong=\"G4312\"*." + }, + { + "verseNum": 37, + "text": "For|strong=\"G1063\"* you|strong=\"G3778\"* have|strong=\"G1473\"* brought these|strong=\"G3778\"* men|strong=\"G3778\"* here|strong=\"G3778\"*, who|strong=\"G3588\"* are|strong=\"G3588\"* neither|strong=\"G3777\"* robbers|strong=\"G2417\"* of|strong=\"G2316\"* temples|strong=\"G2417\"* nor|strong=\"G3777\"* blasphemers of|strong=\"G2316\"* your|strong=\"G3588\"* goddess|strong=\"G2316\"*." + }, + { + "verseNum": 38, + "text": "If|strong=\"G1487\"* therefore|strong=\"G3767\"* Demetrius|strong=\"G1216\"* and|strong=\"G2532\"* the|strong=\"G2532\"* craftsmen|strong=\"G5079\"* who|strong=\"G3588\"* are|strong=\"G1510\"* with|strong=\"G4862\"* him|strong=\"G3588\"* have|strong=\"G2192\"* a|strong=\"G2192\"* matter|strong=\"G3056\"* against|strong=\"G4314\"* anyone|strong=\"G5100\"*, the|strong=\"G2532\"* courts are|strong=\"G1510\"* open and|strong=\"G2532\"* there|strong=\"G2532\"* are|strong=\"G1510\"* proconsuls. Let|strong=\"G1510\"* them|strong=\"G3588\"* press charges|strong=\"G1458\"* against|strong=\"G4314\"* one|strong=\"G5100\"* another|strong=\"G5100\"*." + }, + { + "verseNum": 39, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* you|strong=\"G1487\"* seek|strong=\"G1934\"* anything|strong=\"G5100\"* about|strong=\"G4012\"* other|strong=\"G2087\"* matters|strong=\"G2087\"*, it|strong=\"G1161\"* will|strong=\"G5100\"* be|strong=\"G3588\"* settled|strong=\"G1956\"* in|strong=\"G1722\"* the|strong=\"G1722\"* regular assembly|strong=\"G1577\"*." + }, + { + "verseNum": 40, + "text": "For|strong=\"G1063\"* indeed|strong=\"G2532\"* we|strong=\"G3739\"* are|strong=\"G3588\"* in|strong=\"G2532\"* danger|strong=\"G2793\"* of|strong=\"G4012\"* being|strong=\"G5225\"* accused|strong=\"G1458\"* concerning|strong=\"G4012\"* today|strong=\"G4594\"*’s riot|strong=\"G4714\"*, there|strong=\"G2532\"* being|strong=\"G5225\"* no|strong=\"G3756\"* cause|strong=\"G3739\"*. Concerning|strong=\"G4012\"* it|strong=\"G2532\"*, we|strong=\"G3739\"* wouldn’t|strong=\"G3588\"* be|strong=\"G2532\"* able|strong=\"G1410\"* to|strong=\"G2532\"* give|strong=\"G3004\"* an|strong=\"G2532\"* account|strong=\"G3056\"* of|strong=\"G4012\"* this|strong=\"G3778\"* commotion.”" + }, + { + "verseNum": 41, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* thus|strong=\"G2532\"* spoken|strong=\"G3004\"*, he|strong=\"G2532\"* dismissed the|strong=\"G2532\"* assembly|strong=\"G1577\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* the|strong=\"G2532\"* uproar|strong=\"G2351\"* had|strong=\"G2532\"* ceased|strong=\"G3973\"*, Paul|strong=\"G3972\"* sent|strong=\"G3343\"* for|strong=\"G1519\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*, took|strong=\"G2532\"* leave|strong=\"G1831\"* of|strong=\"G2532\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* departed|strong=\"G1831\"* to|strong=\"G1519\"* go|strong=\"G4198\"* into|strong=\"G1519\"* Macedonia|strong=\"G3109\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* gone|strong=\"G1330\"* through|strong=\"G1330\"* those|strong=\"G3588\"* parts|strong=\"G3313\"* and|strong=\"G2532\"* had|strong=\"G2532\"* encouraged|strong=\"G3870\"* them|strong=\"G3588\"* with|strong=\"G2532\"* many|strong=\"G4183\"* words|strong=\"G3056\"*, he|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* Greece|strong=\"G1671\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"G1096\"* he|strong=\"G3588\"* had|strong=\"G3588\"* spent|strong=\"G4160\"* three|strong=\"G5140\"* months|strong=\"G3376\"* there|strong=\"G1096\"*, and|strong=\"G5037\"* a|strong=\"G1096\"* plot|strong=\"G1917\"* was|strong=\"G1096\"* made|strong=\"G4160\"* against|strong=\"G1519\"* him|strong=\"G3588\"* by|strong=\"G1223\"* Jews|strong=\"G2453\"* as|strong=\"G1519\"* he|strong=\"G3588\"* was|strong=\"G1096\"* about|strong=\"G3195\"* to|strong=\"G1519\"* set|strong=\"G5037\"* sail for|strong=\"G1519\"* Syria|strong=\"G4947\"*, he|strong=\"G3588\"* determined to|strong=\"G1519\"* return|strong=\"G5290\"* through|strong=\"G1223\"* Macedonia|strong=\"G3109\"*." + }, + { + "verseNum": 4, + "text": "These|strong=\"G1161\"* accompanied|strong=\"G4902\"* him|strong=\"G2532\"* as|strong=\"G1161\"* far as|strong=\"G1161\"* Asia: Sopater|strong=\"G4986\"* of|strong=\"G2532\"* Beroea, Aristarchus and|strong=\"G2532\"* Secundus|strong=\"G4580\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Thessalonians|strong=\"G2331\"*, Gaius|strong=\"G1050\"* of|strong=\"G2532\"* Derbe|strong=\"G1190\"*, Timothy|strong=\"G5095\"*, and|strong=\"G2532\"* Tychicus|strong=\"G5190\"* and|strong=\"G2532\"* Trophimus|strong=\"G5161\"* of|strong=\"G2532\"* Asia." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* these|strong=\"G3778\"* had|strong=\"G3778\"* gone|strong=\"G4281\"* ahead|strong=\"G4281\"*, and|strong=\"G1161\"* were|strong=\"G3778\"* waiting|strong=\"G3306\"* for|strong=\"G1161\"* us|strong=\"G2249\"* at|strong=\"G1722\"* Troas|strong=\"G5174\"*." + }, + { + "verseNum": 6, + "text": "We|strong=\"G2249\"* sailed|strong=\"G1602\"* away|strong=\"G1602\"* from|strong=\"G2064\"* Philippi|strong=\"G5375\"* after|strong=\"G3326\"* the|strong=\"G2532\"* days|strong=\"G2250\"* of|strong=\"G2250\"* Unleavened Bread, and|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* them|strong=\"G3588\"* at|strong=\"G1519\"* Troas|strong=\"G5174\"* in|strong=\"G1519\"* five|strong=\"G4002\"* days|strong=\"G2250\"*, where|strong=\"G3699\"* we|strong=\"G2249\"* stayed|strong=\"G1304\"* seven|strong=\"G2033\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 7, + "text": "On|strong=\"G1722\"* the|strong=\"G1722\"* first|strong=\"G1520\"* day|strong=\"G1887\"* of|strong=\"G3056\"* the|strong=\"G1722\"* week|strong=\"G4521\"*, when|strong=\"G1161\"* the|strong=\"G1722\"* disciples|strong=\"G3588\"* were|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* to|strong=\"G3195\"* break|strong=\"G2806\"* bread, Paul|strong=\"G3972\"* talked with|strong=\"G1722\"* them|strong=\"G3588\"*, intending|strong=\"G3195\"* to|strong=\"G3195\"* depart|strong=\"G1826\"* on|strong=\"G1722\"* the|strong=\"G1722\"* next|strong=\"G1887\"* day|strong=\"G1887\"*; and|strong=\"G1161\"* continued|strong=\"G3905\"* his|strong=\"G1722\"* speech|strong=\"G3056\"* until|strong=\"G3360\"* midnight|strong=\"G3317\"*." + }, + { + "verseNum": 8, + "text": "There|strong=\"G1161\"* were|strong=\"G1510\"* many|strong=\"G2425\"* lights|strong=\"G2985\"* in|strong=\"G1722\"* the|strong=\"G1722\"* upper|strong=\"G5253\"* room|strong=\"G5253\"* where|strong=\"G3757\"* we|strong=\"G1161\"*+ 20:8 TR reads “they” instead of “we”* were|strong=\"G1510\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"*." + }, + { + "verseNum": 9, + "text": "A|strong=\"G2532\"* certain|strong=\"G5100\"* young|strong=\"G3494\"* man|strong=\"G5100\"* named|strong=\"G3686\"* Eutychus|strong=\"G2161\"* sat|strong=\"G2516\"* in|strong=\"G1909\"* the|strong=\"G2532\"* window|strong=\"G2376\"*, weighed down|strong=\"G4098\"* with|strong=\"G2532\"* deep|strong=\"G4183\"* sleep|strong=\"G5258\"*. As|strong=\"G1161\"* Paul|strong=\"G3972\"* spoke still longer|strong=\"G1909\"*, being|strong=\"G2532\"* weighed down|strong=\"G4098\"* by|strong=\"G1909\"* his|strong=\"G1909\"* sleep|strong=\"G5258\"*, he|strong=\"G2532\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* from|strong=\"G2532\"* the|strong=\"G2532\"* third|strong=\"G5152\"* floor|strong=\"G5152\"* and|strong=\"G2532\"* was|strong=\"G3588\"* taken up|strong=\"G2532\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 10, + "text": "Paul|strong=\"G3972\"* went|strong=\"G2597\"* down|strong=\"G2597\"* and|strong=\"G2532\"* fell|strong=\"G1968\"* upon|strong=\"G1968\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* embracing|strong=\"G4843\"* him|strong=\"G3588\"* said|strong=\"G3004\"*, “Don’t|strong=\"G3588\"* be|strong=\"G1510\"* troubled|strong=\"G2350\"*, for|strong=\"G1063\"* his|strong=\"G1722\"* life|strong=\"G5590\"* is|strong=\"G1510\"* in|strong=\"G1722\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 11, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* gone|strong=\"G1831\"* up|strong=\"G2532\"*, had|strong=\"G2532\"* broken|strong=\"G2806\"* bread and|strong=\"G2532\"* eaten|strong=\"G1089\"*, and|strong=\"G2532\"* had|strong=\"G2532\"* talked|strong=\"G3656\"* with|strong=\"G2532\"* them|strong=\"G3588\"* a|strong=\"G2532\"* long|strong=\"G2425\"* while|strong=\"G1161\"*, even|strong=\"G2532\"* until|strong=\"G2532\"* break|strong=\"G2806\"* of|strong=\"G2532\"* day|strong=\"G3588\"*, he|strong=\"G2532\"* departed|strong=\"G1831\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"G2532\"* brought|strong=\"G1161\"* the|strong=\"G2532\"* boy|strong=\"G3816\"* in|strong=\"G2532\"* alive|strong=\"G2198\"*, and|strong=\"G2532\"* were|strong=\"G3588\"* greatly|strong=\"G3756\"* comforted|strong=\"G3870\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"*, going|strong=\"G3195\"* ahead|strong=\"G4281\"* to|strong=\"G1909\"* the|strong=\"G1161\"* ship|strong=\"G4143\"*, set sail for|strong=\"G1063\"* Assos, intending|strong=\"G3195\"* to|strong=\"G1909\"* take|strong=\"G1161\"* Paul|strong=\"G3972\"* aboard there|strong=\"G1161\"*; for|strong=\"G1063\"* he|strong=\"G1161\"* had|strong=\"G3972\"* so|strong=\"G3779\"* arranged|strong=\"G1299\"*, intending|strong=\"G3195\"* himself to|strong=\"G1909\"* go|strong=\"G4281\"* by|strong=\"G1909\"* land|strong=\"G3978\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* met|strong=\"G4820\"* us|strong=\"G1519\"* at|strong=\"G1519\"* Assos, we|strong=\"G2249\"* took|strong=\"G1161\"* him|strong=\"G3588\"* aboard and|strong=\"G1161\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Mitylene|strong=\"G3412\"*." + }, + { + "verseNum": 15, + "text": "Sailing from|strong=\"G2064\"* there|strong=\"G1161\"*, we|strong=\"G1161\"* came|strong=\"G2064\"* the|strong=\"G1519\"* following|strong=\"G1966\"* day|strong=\"G3588\"* opposite Chios|strong=\"G5508\"*. The|strong=\"G1519\"* next|strong=\"G2087\"* day|strong=\"G3588\"* we|strong=\"G1161\"* touched at|strong=\"G1519\"* Samos|strong=\"G4544\"* and|strong=\"G1161\"* stayed at|strong=\"G1519\"* Trogyllium, and|strong=\"G1161\"* the|strong=\"G1519\"* day|strong=\"G3588\"* after|strong=\"G1161\"* we|strong=\"G1161\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Miletus|strong=\"G3399\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* Paul|strong=\"G3972\"* had|strong=\"G3972\"* determined|strong=\"G2919\"* to|strong=\"G1519\"* sail|strong=\"G3896\"* past|strong=\"G1096\"* Ephesus|strong=\"G2181\"*, that|strong=\"G3588\"* he|strong=\"G3588\"* might|strong=\"G1096\"* not|strong=\"G3361\"* have|strong=\"G1510\"* to|strong=\"G1519\"* spend|strong=\"G5551\"* time|strong=\"G2250\"* in|strong=\"G1722\"* Asia|strong=\"G3588\"*; for|strong=\"G1063\"* he|strong=\"G3588\"* was|strong=\"G1510\"* hastening|strong=\"G4692\"*, if|strong=\"G1487\"* it|strong=\"G1063\"* were|strong=\"G1510\"* possible|strong=\"G1415\"* for|strong=\"G1063\"* him|strong=\"G3588\"*, to|strong=\"G1519\"* be|strong=\"G1096\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"* on|strong=\"G1722\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G2250\"* Pentecost|strong=\"G4005\"*." + }, + { + "verseNum": 17, + "text": "From|strong=\"G3588\"* Miletus|strong=\"G3399\"* he|strong=\"G1161\"* sent|strong=\"G3992\"* to|strong=\"G1519\"* Ephesus|strong=\"G2181\"* and|strong=\"G1161\"* called|strong=\"G3333\"* to|strong=\"G1519\"* himself|strong=\"G1519\"* the|strong=\"G1519\"* elders|strong=\"G4245\"* of|strong=\"G1577\"* the|strong=\"G1519\"* assembly|strong=\"G1577\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G3739\"* come|strong=\"G1096\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “You|strong=\"G5210\"* yourselves|strong=\"G4771\"* know|strong=\"G1987\"*, from|strong=\"G3588\"* the|strong=\"G1519\"* first|strong=\"G4413\"* day|strong=\"G2250\"* that|strong=\"G3739\"* I|strong=\"G3739\"* set|strong=\"G1910\"* foot|strong=\"G1910\"* in|strong=\"G1519\"* Asia|strong=\"G3588\"*, how|strong=\"G4459\"* I|strong=\"G3739\"* was|strong=\"G1096\"* with|strong=\"G3326\"* you|strong=\"G5210\"* all|strong=\"G3956\"* the|strong=\"G1519\"* time|strong=\"G5550\"*," + }, + { + "verseNum": 19, + "text": "serving|strong=\"G1398\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* with|strong=\"G3326\"* all|strong=\"G3956\"* humility|strong=\"G5012\"*, with|strong=\"G3326\"* many|strong=\"G1722\"* tears|strong=\"G1144\"*, and|strong=\"G2532\"* with|strong=\"G3326\"* trials|strong=\"G3986\"* which|strong=\"G3588\"* happened|strong=\"G4819\"* to|strong=\"G2532\"* me|strong=\"G1473\"* by|strong=\"G1722\"* the|strong=\"G1722\"* plots|strong=\"G1917\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"*;" + }, + { + "verseNum": 20, + "text": "how|strong=\"G5613\"* I|strong=\"G2532\"* didn’t|strong=\"G3588\"* shrink|strong=\"G5288\"* from|strong=\"G2532\"* declaring to|strong=\"G2532\"* you|strong=\"G5210\"* anything|strong=\"G3762\"* that|strong=\"G3588\"* was|strong=\"G3588\"* profitable|strong=\"G4851\"*, teaching|strong=\"G1321\"* you|strong=\"G5210\"* publicly|strong=\"G1219\"* and|strong=\"G2532\"* from|strong=\"G2532\"* house|strong=\"G3624\"* to|strong=\"G2532\"* house|strong=\"G3624\"*," + }, + { + "verseNum": 21, + "text": "testifying|strong=\"G1263\"* both|strong=\"G2532\"* to|strong=\"G1519\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* to|strong=\"G1519\"* Greeks|strong=\"G1672\"* repentance|strong=\"G3341\"* toward|strong=\"G1519\"* God|strong=\"G2316\"* and|strong=\"G2532\"* faith|strong=\"G4102\"* toward|strong=\"G1519\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*.+ 20:21 TR adds “Christ”*" + }, + { + "verseNum": 22, + "text": "Now|strong=\"G3568\"*, behold|strong=\"G2400\"*, I|strong=\"G1473\"* go|strong=\"G4198\"* bound|strong=\"G1210\"* by|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*, not|strong=\"G3361\"* knowing|strong=\"G1492\"* what|strong=\"G3588\"* will|strong=\"G2532\"* happen|strong=\"G1519\"* to|strong=\"G1519\"* me|strong=\"G1473\"* there|strong=\"G2532\"*;" + }, + { + "verseNum": 23, + "text": "except|strong=\"G4133\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* testifies|strong=\"G1263\"* in|strong=\"G2596\"* every|strong=\"G2596\"* city|strong=\"G4172\"*, saying|strong=\"G3004\"* that|strong=\"G3754\"* bonds|strong=\"G1199\"* and|strong=\"G2532\"* afflictions|strong=\"G2347\"* wait|strong=\"G4151\"* for|strong=\"G3754\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"G2532\"* these|strong=\"G3739\"* things|strong=\"G3588\"* don’t|strong=\"G3588\"* count; nor|strong=\"G2532\"* do|strong=\"G4160\"* I|strong=\"G1473\"* hold my|strong=\"G1473\"* life|strong=\"G5590\"* dear|strong=\"G5093\"* to|strong=\"G2532\"* myself|strong=\"G1683\"*, so|strong=\"G2532\"* that|strong=\"G3739\"* I|strong=\"G1473\"* may|strong=\"G2532\"* finish|strong=\"G5048\"* my|strong=\"G1473\"* race with|strong=\"G3844\"* joy|strong=\"G5485\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* ministry|strong=\"G1248\"* which|strong=\"G3739\"* I|strong=\"G1473\"* received|strong=\"G2983\"* from|strong=\"G3844\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*, to|strong=\"G2532\"* fully testify|strong=\"G1263\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Good|strong=\"G3588\"* News|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G3056\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 25, + "text": "“Now|strong=\"G3568\"*, behold|strong=\"G2400\"*, I|strong=\"G1473\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G5210\"* all|strong=\"G3956\"*, among|strong=\"G1722\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* went|strong=\"G1330\"* about|strong=\"G1722\"* preaching|strong=\"G2784\"* God|strong=\"G2532\"*’s Kingdom, will|strong=\"G2532\"* see|strong=\"G3708\"* my|strong=\"G3708\"* face|strong=\"G4383\"* no|strong=\"G3765\"* more|strong=\"G3765\"*." + }, + { + "verseNum": 26, + "text": "Therefore|strong=\"G1360\"* I|strong=\"G3754\"* testify|strong=\"G3143\"* to|strong=\"G1722\"* you|strong=\"G5210\"* today|strong=\"G4594\"* that|strong=\"G3754\"* I|strong=\"G3754\"* am|strong=\"G1510\"* clean|strong=\"G2513\"* from|strong=\"G3588\"* the|strong=\"G1722\"* blood of|strong=\"G2250\"* all|strong=\"G3956\"* men|strong=\"G3956\"*," + }, + { + "verseNum": 27, + "text": "for|strong=\"G1063\"* I|strong=\"G1063\"* didn’t|strong=\"G3588\"* shrink|strong=\"G5288\"* from|strong=\"G3756\"* declaring to|strong=\"G3756\"* you|strong=\"G5210\"* the|strong=\"G3956\"* whole|strong=\"G3956\"* counsel|strong=\"G1012\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 28, + "text": "Take|strong=\"G2316\"* heed|strong=\"G4337\"*, therefore|strong=\"G1223\"*, to|strong=\"G2532\"* yourselves|strong=\"G1438\"* and|strong=\"G2532\"* to|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G1722\"* flock|strong=\"G4168\"*, in|strong=\"G1722\"* which|strong=\"G3739\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* has|strong=\"G2316\"* made|strong=\"G5087\"* you|strong=\"G5210\"* overseers|strong=\"G1985\"*, to|strong=\"G2532\"* shepherd|strong=\"G4165\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"*+ 20:28 TR, NU omit “the Lord and”* God|strong=\"G2316\"* which|strong=\"G3739\"* he|strong=\"G2532\"* purchased|strong=\"G4046\"* with|strong=\"G1722\"* his|strong=\"G1438\"* own|strong=\"G2398\"* blood." + }, + { + "verseNum": 29, + "text": "For|strong=\"G3754\"* I|strong=\"G1473\"* know|strong=\"G1492\"* that|strong=\"G3754\"* after|strong=\"G3326\"* my|strong=\"G1525\"* departure, vicious wolves|strong=\"G3074\"* will|strong=\"G1473\"* enter|strong=\"G1525\"* in|strong=\"G1519\"* among|strong=\"G1519\"* you|strong=\"G5210\"*, not|strong=\"G3361\"* sparing|strong=\"G5339\"* the|strong=\"G1519\"* flock|strong=\"G4168\"*." + }, + { + "verseNum": 30, + "text": "Men|strong=\"G3588\"* will|strong=\"G2532\"* arise from|strong=\"G1537\"* among|strong=\"G1537\"* your|strong=\"G2532\"* own|strong=\"G1438\"* selves|strong=\"G1438\"*, speaking|strong=\"G2980\"* perverse|strong=\"G1294\"* things|strong=\"G3588\"*, to|strong=\"G2532\"* draw away|strong=\"G1294\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* after|strong=\"G3694\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 31, + "text": "Therefore|strong=\"G1352\"* watch|strong=\"G1127\"*, remembering|strong=\"G3421\"* that|strong=\"G3754\"* for|strong=\"G3754\"* a|strong=\"G2532\"* period|strong=\"G5148\"* of|strong=\"G2250\"* three|strong=\"G5148\"* years|strong=\"G2250\"* I|strong=\"G2532\"* didn’t cease|strong=\"G3973\"* to|strong=\"G2532\"* admonish|strong=\"G3560\"* everyone|strong=\"G1538\"* night|strong=\"G3571\"* and|strong=\"G2532\"* day|strong=\"G2250\"* with|strong=\"G3326\"* tears|strong=\"G1144\"*." + }, + { + "verseNum": 32, + "text": "Now|strong=\"G3568\"*, brothers,+ 20:32 The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.” * I|strong=\"G2532\"* entrust|strong=\"G3908\"* you|strong=\"G5210\"* to|strong=\"G2532\"* God|strong=\"G2316\"* and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* his|strong=\"G3956\"* grace|strong=\"G5485\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2532\"* build|strong=\"G3618\"* up|strong=\"G3618\"* and|strong=\"G2532\"* to|strong=\"G2532\"* give|strong=\"G1325\"* you|strong=\"G5210\"* the|strong=\"G1722\"* inheritance|strong=\"G2817\"* among|strong=\"G1722\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* sanctified|strong=\"G3956\"*." + }, + { + "verseNum": 33, + "text": "I|strong=\"G2228\"* coveted|strong=\"G1937\"* no|strong=\"G3762\"* one|strong=\"G3762\"*’s silver, gold|strong=\"G5553\"*, or|strong=\"G2228\"* clothing|strong=\"G2441\"*." + }, + { + "verseNum": 34, + "text": "You|strong=\"G3754\"* yourselves know|strong=\"G1097\"* that|strong=\"G3754\"* these|strong=\"G3778\"* hands|strong=\"G5495\"* served|strong=\"G5256\"* my|strong=\"G1473\"* necessities|strong=\"G5532\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* with|strong=\"G3326\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 35, + "text": "In|strong=\"G3956\"* all|strong=\"G3956\"* things|strong=\"G3956\"* I|strong=\"G3754\"* gave|strong=\"G1325\"* you|strong=\"G5210\"* an|strong=\"G2228\"* example, that|strong=\"G3754\"* so|strong=\"G3779\"* laboring you|strong=\"G5210\"* ought|strong=\"G1163\"* to|strong=\"G3004\"* help the|strong=\"G3956\"* weak, and|strong=\"G5037\"* to|strong=\"G3004\"* remember|strong=\"G3421\"* the|strong=\"G3956\"* words|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G3956\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*, that|strong=\"G3754\"* he|strong=\"G3754\"* himself said|strong=\"G3004\"*, ‘\\+w It|strong=\"G3754\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w more|strong=\"G3123\"\\+w* \\+w blessed|strong=\"G3107\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w receive|strong=\"G2983\"\\+w*.’* ”" + }, + { + "verseNum": 36, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* spoken|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3956\"*, he|strong=\"G2532\"* knelt|strong=\"G1119\"* down|strong=\"G5087\"* and|strong=\"G2532\"* prayed|strong=\"G4336\"* with|strong=\"G4862\"* them|strong=\"G3588\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 37, + "text": "They|strong=\"G2532\"* all|strong=\"G3956\"* wept|strong=\"G1096\"* freely|strong=\"G2532\"*, and|strong=\"G2532\"* fell|strong=\"G1968\"* on|strong=\"G1909\"* Paul|strong=\"G3972\"*’s neck|strong=\"G5137\"* and|strong=\"G2532\"* kissed|strong=\"G2705\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 38, + "text": "sorrowing|strong=\"G3600\"* most of|strong=\"G3056\"* all|strong=\"G1161\"* because|strong=\"G3754\"* of|strong=\"G3056\"* the|strong=\"G1519\"* word|strong=\"G3056\"* which|strong=\"G3739\"* he|strong=\"G1161\"* had|strong=\"G3739\"* spoken|strong=\"G3004\"*, that|strong=\"G3754\"* they|strong=\"G1161\"* should|strong=\"G3195\"* see|strong=\"G2334\"* his|strong=\"G1519\"* face|strong=\"G4383\"* no|strong=\"G3765\"* more|strong=\"G3765\"*. Then|strong=\"G1161\"* they|strong=\"G1161\"* accompanied|strong=\"G4311\"* him|strong=\"G3588\"* to|strong=\"G1519\"* the|strong=\"G1519\"* ship|strong=\"G4143\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G1161\"* we|strong=\"G2249\"* had|strong=\"G3588\"* departed from|strong=\"G2064\"* them|strong=\"G3588\"* and|strong=\"G1161\"* had|strong=\"G3588\"* set|strong=\"G2064\"* sail, we|strong=\"G2249\"* came|strong=\"G2064\"* with|strong=\"G1519\"* a|strong=\"G1096\"* straight|strong=\"G2113\"* course|strong=\"G2113\"* to|strong=\"G1519\"* Cos|strong=\"G2972\"*, and|strong=\"G1161\"* the|strong=\"G1519\"* next|strong=\"G1836\"* day|strong=\"G1836\"* to|strong=\"G1519\"* Rhodes|strong=\"G4499\"*, and|strong=\"G1161\"* from|strong=\"G2064\"* there|strong=\"G1161\"* to|strong=\"G1519\"* Patara|strong=\"G3959\"*." + }, + { + "verseNum": 2, + "text": "Having|strong=\"G2532\"* found|strong=\"G2147\"* a|strong=\"G2532\"* ship|strong=\"G4143\"* crossing|strong=\"G1276\"* over|strong=\"G1276\"* to|strong=\"G1519\"* Phoenicia|strong=\"G5403\"*, we|strong=\"G2532\"* went|strong=\"G2532\"* aboard|strong=\"G1910\"* and|strong=\"G2532\"* set|strong=\"G1910\"* sail." + }, + { + "verseNum": 3, + "text": "When|strong=\"G1161\"* we|strong=\"G1063\"* had|strong=\"G2532\"* come|strong=\"G1510\"* in|strong=\"G1519\"* sight|strong=\"G3588\"* of|strong=\"G2532\"* Cyprus|strong=\"G2954\"*, leaving|strong=\"G2641\"* it|strong=\"G2532\"* on|strong=\"G1519\"* the|strong=\"G2532\"* left|strong=\"G2641\"* hand|strong=\"G1161\"*, we|strong=\"G1063\"* sailed|strong=\"G4126\"* to|strong=\"G1519\"* Syria|strong=\"G4947\"* and|strong=\"G2532\"* landed|strong=\"G2718\"* at|strong=\"G1519\"* Tyre|strong=\"G5184\"*, for|strong=\"G1063\"* the|strong=\"G2532\"* ship|strong=\"G4143\"* was|strong=\"G1510\"* there|strong=\"G2532\"* to|strong=\"G1519\"* unload her|strong=\"G1438\"* cargo|strong=\"G1117\"*." + }, + { + "verseNum": 4, + "text": "Having|strong=\"G3361\"* found disciples|strong=\"G3101\"*, we|strong=\"G1161\"* stayed|strong=\"G1961\"* there|strong=\"G1161\"* seven|strong=\"G2033\"* days|strong=\"G2250\"*. These|strong=\"G3588\"* said|strong=\"G3004\"* to|strong=\"G1519\"* Paul|strong=\"G3972\"* through|strong=\"G1223\"* the|strong=\"G1519\"* Spirit|strong=\"G4151\"* that|strong=\"G3588\"* he|strong=\"G1161\"* should|strong=\"G3588\"* not|strong=\"G3361\"* go|strong=\"G4151\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"G3753\"* those|strong=\"G3588\"* days|strong=\"G2250\"* were|strong=\"G3588\"* over|strong=\"G1909\"*, we|strong=\"G2249\"* departed|strong=\"G1831\"* and|strong=\"G2532\"* went|strong=\"G1831\"* on|strong=\"G1909\"* our|strong=\"G2532\"* journey|strong=\"G4311\"*. They|strong=\"G2532\"* all|strong=\"G3956\"*, with|strong=\"G4862\"* wives|strong=\"G1135\"* and|strong=\"G2532\"* children|strong=\"G5043\"*, brought|strong=\"G1096\"* us|strong=\"G2249\"* on|strong=\"G1909\"* our|strong=\"G2532\"* way|strong=\"G4198\"* until|strong=\"G2193\"* we|strong=\"G2249\"* were|strong=\"G3588\"* out|strong=\"G1831\"* of|strong=\"G2250\"* the|strong=\"G2532\"* city|strong=\"G4172\"*. Kneeling|strong=\"G1119\"* down|strong=\"G5087\"* on|strong=\"G1909\"* the|strong=\"G2532\"* beach, we|strong=\"G2249\"* prayed|strong=\"G4336\"*." + }, + { + "verseNum": 6, + "text": "After|strong=\"G1161\"* saying goodbye to|strong=\"G1519\"* each|strong=\"G1519\"* other|strong=\"G1161\"*, we|strong=\"G2532\"* went|strong=\"G2532\"* on|strong=\"G1519\"* board|strong=\"G1684\"* the|strong=\"G2532\"* ship|strong=\"G4143\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* returned|strong=\"G5290\"* home|strong=\"G1519\"* again|strong=\"G5290\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"G1161\"* we|strong=\"G2249\"* had|strong=\"G2532\"* finished|strong=\"G1274\"* the|strong=\"G2532\"* voyage|strong=\"G4144\"* from|strong=\"G3844\"* Tyre|strong=\"G5184\"*, we|strong=\"G2249\"* arrived|strong=\"G2658\"* at|strong=\"G1519\"* Ptolemais|strong=\"G4424\"*. We|strong=\"G2249\"* greeted the|strong=\"G2532\"* brothers and|strong=\"G2532\"* stayed|strong=\"G3306\"* with|strong=\"G3844\"* them|strong=\"G3588\"* one|strong=\"G1520\"* day|strong=\"G2250\"*." + }, + { + "verseNum": 8, + "text": "On|strong=\"G1519\"* the|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"*, we|strong=\"G2532\"* who|strong=\"G3588\"* were|strong=\"G1510\"* Paul|strong=\"G1510\"*’s companions|strong=\"G3588\"* departed|strong=\"G1831\"* and|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Caesarea|strong=\"G2542\"*." + }, + { + "verseNum": 9, + "text": "Now|strong=\"G1161\"* this|strong=\"G3778\"* man|strong=\"G3778\"* had|strong=\"G1510\"* four|strong=\"G5064\"* virgin|strong=\"G3933\"* daughters|strong=\"G2364\"* who|strong=\"G3778\"* prophesied|strong=\"G4395\"*." + }, + { + "verseNum": 10, + "text": "As|strong=\"G1161\"* we|strong=\"G1161\"* stayed|strong=\"G1961\"* there|strong=\"G1161\"* some|strong=\"G5100\"* days|strong=\"G2250\"*, a|strong=\"G1161\"* certain|strong=\"G5100\"* prophet|strong=\"G4396\"* named|strong=\"G3686\"* Agabus came|strong=\"G2718\"* down|strong=\"G2718\"* from|strong=\"G2718\"* Judea|strong=\"G2449\"*." + }, + { + "verseNum": 11, + "text": "Coming|strong=\"G2064\"* to|strong=\"G1519\"* us|strong=\"G3004\"* and|strong=\"G2532\"* taking Paul|strong=\"G3972\"*’s belt|strong=\"G2223\"*, he|strong=\"G2532\"* bound|strong=\"G1210\"* his|strong=\"G1438\"* own|strong=\"G1438\"* feet|strong=\"G4228\"* and|strong=\"G2532\"* hands|strong=\"G5495\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “The|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* says|strong=\"G3004\"*: ‘So|strong=\"G3779\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* at|strong=\"G1722\"* Jerusalem|strong=\"G2419\"* will|strong=\"G1510\"* bind|strong=\"G1210\"* the|strong=\"G1722\"* man|strong=\"G3778\"* who|strong=\"G3739\"* owns|strong=\"G1510\"* this|strong=\"G3778\"* belt|strong=\"G2223\"*, and|strong=\"G2532\"* will|strong=\"G1510\"* deliver|strong=\"G3860\"* him|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G1722\"* hands|strong=\"G5495\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"*.’”" + }, + { + "verseNum": 12, + "text": "When|strong=\"G1161\"* we|strong=\"G2249\"* heard these|strong=\"G3778\"* things|strong=\"G3778\"*, both|strong=\"G2532\"* we|strong=\"G2249\"* and|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G3361\"* of|strong=\"G2532\"* that|strong=\"G3588\"* place|strong=\"G1473\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* not|strong=\"G3361\"* to|strong=\"G1519\"* go|strong=\"G1519\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"G2532\"* Paul|strong=\"G3972\"* answered|strong=\"G3004\"*, “What|strong=\"G5101\"* are|strong=\"G3588\"* you|strong=\"G3004\"* doing|strong=\"G4160\"*, weeping|strong=\"G2799\"* and|strong=\"G2532\"* breaking|strong=\"G4919\"* my|strong=\"G1473\"* heart|strong=\"G2588\"*? For|strong=\"G1063\"* I|strong=\"G1473\"* am|strong=\"G1473\"* ready|strong=\"G2093\"* not|strong=\"G3756\"* only|strong=\"G3440\"* to|strong=\"G1519\"* be|strong=\"G2532\"* bound|strong=\"G1210\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* to|strong=\"G1519\"* die at|strong=\"G1519\"* Jerusalem|strong=\"G2419\"* for|strong=\"G1063\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*.”" + }, + { + "verseNum": 14, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* would|strong=\"G1096\"* not|strong=\"G3361\"* be|strong=\"G1096\"* persuaded|strong=\"G3982\"*, we|strong=\"G1161\"* ceased|strong=\"G2270\"*, saying|strong=\"G3004\"*, “The|strong=\"G1161\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* will|strong=\"G2307\"* be|strong=\"G1096\"* done|strong=\"G1096\"*.”" + }, + { + "verseNum": 15, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* days|strong=\"G2250\"* we|strong=\"G1161\"* took|strong=\"G1161\"* up|strong=\"G1519\"* our|strong=\"G3326\"* baggage and|strong=\"G1161\"* went|strong=\"G3588\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 16, + "text": "Some|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* from|strong=\"G3844\"* Caesarea|strong=\"G2542\"* also|strong=\"G2532\"* went|strong=\"G2532\"* with|strong=\"G4862\"* us|strong=\"G3579\"*, bringing one|strong=\"G5100\"* Mnason|strong=\"G3416\"* of|strong=\"G2532\"* Cyprus|strong=\"G2953\"*, an|strong=\"G2532\"* early disciple|strong=\"G3101\"*, with|strong=\"G4862\"* whom|strong=\"G3739\"* we|strong=\"G2249\"* would|strong=\"G2532\"* stay." + }, + { + "verseNum": 17, + "text": "When|strong=\"G1161\"* we|strong=\"G2249\"* had|strong=\"G3588\"* come|strong=\"G1096\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*, the|strong=\"G1519\"* brothers received us|strong=\"G1519\"* gladly." + }, + { + "verseNum": 18, + "text": "The|strong=\"G3956\"* day|strong=\"G3588\"* following|strong=\"G1966\"*, Paul|strong=\"G3972\"* went|strong=\"G1524\"* in|strong=\"G3956\"* with|strong=\"G4862\"* us|strong=\"G2249\"* to|strong=\"G4314\"* James|strong=\"G2385\"*; and|strong=\"G1161\"* all|strong=\"G3956\"* the|strong=\"G3956\"* elders|strong=\"G4245\"* were|strong=\"G3588\"* present|strong=\"G3854\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* greeted them|strong=\"G3588\"*, he|strong=\"G2532\"* reported one|strong=\"G1520\"* by|strong=\"G1223\"* one|strong=\"G1520\"* the|strong=\"G1722\"* things|strong=\"G3588\"* which|strong=\"G3739\"* God|strong=\"G2316\"* had|strong=\"G2532\"* worked|strong=\"G4160\"* among|strong=\"G1722\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* through|strong=\"G1223\"* his|strong=\"G1438\"* ministry|strong=\"G1248\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"G2532\"*, when|strong=\"G1161\"* they|strong=\"G2532\"* heard it|strong=\"G2532\"*, glorified|strong=\"G1392\"* God|strong=\"G2316\"*. They|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “You|strong=\"G1722\"* see|strong=\"G2334\"*, brother, how|strong=\"G4214\"* many|strong=\"G4214\"* thousands|strong=\"G3461\"* there|strong=\"G2532\"* are|strong=\"G1510\"* among|strong=\"G1722\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* of|strong=\"G2316\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2532\"* believed|strong=\"G4100\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* are|strong=\"G1510\"* all|strong=\"G3956\"* zealous|strong=\"G2207\"* for|strong=\"G1161\"* the|strong=\"G1722\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"G1161\"* have|strong=\"G3748\"* been|strong=\"G3361\"* informed|strong=\"G2727\"* about|strong=\"G4012\"* you|strong=\"G4771\"*, that|strong=\"G3754\"* you|strong=\"G4771\"* teach|strong=\"G1321\"* all|strong=\"G3956\"* the|strong=\"G3956\"* Jews|strong=\"G2453\"* who|strong=\"G3588\"* are|strong=\"G3588\"* among|strong=\"G2596\"* the|strong=\"G3956\"* Gentiles|strong=\"G1484\"* to|strong=\"G2596\"* forsake Moses|strong=\"G3475\"*, telling|strong=\"G3004\"* them|strong=\"G3588\"* not|strong=\"G3361\"* to|strong=\"G2596\"* circumcise|strong=\"G4059\"* their|strong=\"G1438\"* children|strong=\"G5043\"* and|strong=\"G1161\"* not|strong=\"G3361\"* to|strong=\"G2596\"* walk|strong=\"G4043\"* after|strong=\"G2596\"* the|strong=\"G3956\"* customs|strong=\"G1485\"*." + }, + { + "verseNum": 22, + "text": "What|strong=\"G5101\"* then|strong=\"G3767\"*? The|strong=\"G3754\"* assembly|strong=\"G4128\"* must|strong=\"G1163\"* certainly|strong=\"G1063\"* meet|strong=\"G4905\"*, for|strong=\"G1063\"* they|strong=\"G3754\"* will|strong=\"G5101\"* hear|strong=\"G5101\"* that|strong=\"G3754\"* you|strong=\"G3754\"* have|strong=\"G3748\"* come|strong=\"G2064\"*." + }, + { + "verseNum": 23, + "text": "Therefore|strong=\"G3767\"* do|strong=\"G4160\"* what|strong=\"G3739\"* we|strong=\"G2249\"* tell|strong=\"G3004\"* you|strong=\"G4771\"*. We|strong=\"G2249\"* have|strong=\"G2192\"* four|strong=\"G5064\"* men|strong=\"G3778\"* who|strong=\"G3739\"* have|strong=\"G2192\"* taken a|strong=\"G2192\"* vow|strong=\"G2171\"*." + }, + { + "verseNum": 24, + "text": "Take|strong=\"G3880\"* them|strong=\"G3588\"* and|strong=\"G2532\"* purify yourself|strong=\"G4771\"* with|strong=\"G4862\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* pay|strong=\"G1159\"* their|strong=\"G2532\"* expenses|strong=\"G1159\"* for|strong=\"G3754\"* them|strong=\"G3588\"*, that|strong=\"G3754\"* they|strong=\"G2532\"* may|strong=\"G2532\"* shave|strong=\"G3587\"* their|strong=\"G2532\"* heads|strong=\"G2776\"*. Then|strong=\"G2532\"* all|strong=\"G3956\"* will|strong=\"G1510\"* know|strong=\"G1097\"* that|strong=\"G3754\"* there|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3762\"* truth in|strong=\"G1909\"* the|strong=\"G2532\"* things|strong=\"G3956\"* that|strong=\"G3754\"* they|strong=\"G2532\"* have|strong=\"G2532\"* been|strong=\"G1510\"* informed|strong=\"G2727\"* about|strong=\"G4012\"* you|strong=\"G4771\"*, but|strong=\"G2532\"* that|strong=\"G3754\"* you|strong=\"G4771\"* yourself|strong=\"G4771\"* also|strong=\"G2532\"* walk|strong=\"G4748\"* keeping|strong=\"G5442\"* the|strong=\"G2532\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* concerning|strong=\"G4012\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"* who|strong=\"G3588\"* believe|strong=\"G4100\"*, we|strong=\"G2249\"* have|strong=\"G2532\"* written|strong=\"G1989\"* our|strong=\"G2532\"* decision that|strong=\"G3588\"* they|strong=\"G2532\"* should|strong=\"G3588\"* observe|strong=\"G5442\"* no|strong=\"G2532\"* such|strong=\"G1161\"* thing|strong=\"G1494\"*, except that|strong=\"G3588\"* they|strong=\"G2532\"* should|strong=\"G3588\"* keep|strong=\"G5442\"* themselves|strong=\"G1438\"* from|strong=\"G2532\"* food offered to|strong=\"G2532\"* idols|strong=\"G1494\"*, from|strong=\"G2532\"* blood, from|strong=\"G2532\"* strangled|strong=\"G4156\"* things|strong=\"G3588\"*, and|strong=\"G2532\"* from|strong=\"G2532\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*.”" + }, + { + "verseNum": 26, + "text": "Then|strong=\"G5119\"* Paul|strong=\"G3972\"* took|strong=\"G3880\"* the|strong=\"G1519\"* men|strong=\"G3588\"*, and|strong=\"G3972\"* the|strong=\"G1519\"* next|strong=\"G2192\"* day|strong=\"G2250\"* purified himself|strong=\"G4862\"* and|strong=\"G3972\"* went|strong=\"G1524\"* with|strong=\"G4862\"* them|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G1519\"* temple|strong=\"G2411\"*, declaring the|strong=\"G1519\"* fulfillment of|strong=\"G2250\"* the|strong=\"G1519\"* days|strong=\"G2250\"* of|strong=\"G2250\"* purification, until|strong=\"G2193\"* the|strong=\"G1519\"* offering|strong=\"G4376\"* was|strong=\"G3588\"* offered|strong=\"G4374\"* for|strong=\"G1519\"* every|strong=\"G1538\"* one|strong=\"G1520\"* of|strong=\"G2250\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"G1161\"* the|strong=\"G1722\"* seven|strong=\"G2033\"* days|strong=\"G2250\"* were|strong=\"G3588\"* almost|strong=\"G3195\"* completed, the|strong=\"G1722\"* Jews|strong=\"G2453\"* from|strong=\"G2532\"* Asia|strong=\"G3588\"*, when|strong=\"G1161\"* they|strong=\"G2532\"* saw|strong=\"G2300\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, stirred|strong=\"G2453\"* up|strong=\"G4797\"* all|strong=\"G3956\"* the|strong=\"G1722\"* multitude|strong=\"G3793\"* and|strong=\"G2532\"* laid|strong=\"G1911\"* hands|strong=\"G5495\"* on|strong=\"G1909\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 28, + "text": "crying|strong=\"G2896\"* out|strong=\"G2896\"*, “Men|strong=\"G3956\"* of|strong=\"G2532\"* Israel|strong=\"G2475\"*, help! This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* man|strong=\"G3778\"* who|strong=\"G3588\"* teaches|strong=\"G1321\"* all|strong=\"G3956\"* men|strong=\"G3956\"* everywhere|strong=\"G3837\"* against|strong=\"G2596\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* law|strong=\"G3551\"*, and|strong=\"G2532\"* this|strong=\"G3778\"* place|strong=\"G5117\"*. Moreover|strong=\"G2532\"*, he|strong=\"G2532\"* also|strong=\"G2532\"* brought|strong=\"G1521\"* Greeks|strong=\"G1672\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G2411\"* and|strong=\"G2532\"* has|strong=\"G3778\"* defiled|strong=\"G2840\"* this|strong=\"G3778\"* holy place|strong=\"G5117\"*!”" + }, + { + "verseNum": 29, + "text": "For|strong=\"G1063\"* they|strong=\"G3588\"* had|strong=\"G3972\"* seen|strong=\"G4308\"* Trophimus|strong=\"G5161\"* the|strong=\"G1722\"* Ephesian|strong=\"G2180\"* with|strong=\"G1722\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* city|strong=\"G4172\"*, and|strong=\"G3972\"* they|strong=\"G3588\"* supposed|strong=\"G3543\"* that|strong=\"G3754\"* Paul|strong=\"G3972\"* had|strong=\"G3972\"* brought|strong=\"G1521\"* him|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G1722\"* temple|strong=\"G2411\"*." + }, + { + "verseNum": 30, + "text": "All|strong=\"G3650\"* the|strong=\"G2532\"* city|strong=\"G4172\"* was|strong=\"G1096\"* moved|strong=\"G2795\"* and|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"* ran|strong=\"G2992\"* together|strong=\"G4890\"*. They|strong=\"G2532\"* seized|strong=\"G1949\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* dragged|strong=\"G1670\"* him|strong=\"G3588\"* out|strong=\"G1854\"* of|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G2413\"*. Immediately|strong=\"G2112\"* the|strong=\"G2532\"* doors|strong=\"G2374\"* were|strong=\"G3588\"* shut|strong=\"G2808\"*." + }, + { + "verseNum": 31, + "text": "As|strong=\"G3754\"* they|strong=\"G3588\"* were|strong=\"G3588\"* trying|strong=\"G2212\"* to|strong=\"G2212\"* kill him|strong=\"G3588\"*, news came|strong=\"G3588\"* up|strong=\"G4797\"* to|strong=\"G2212\"* the|strong=\"G3588\"* commanding officer of|strong=\"G3588\"* the|strong=\"G3588\"* regiment that|strong=\"G3754\"* all|strong=\"G3650\"* Jerusalem|strong=\"G2419\"* was|strong=\"G3588\"* in|strong=\"G3588\"* an|strong=\"G3754\"* uproar|strong=\"G4797\"*." + }, + { + "verseNum": 32, + "text": "Immediately|strong=\"G1824\"* he|strong=\"G2532\"* took|strong=\"G3880\"* soldiers|strong=\"G4757\"* and|strong=\"G2532\"* centurions|strong=\"G1543\"* and|strong=\"G2532\"* ran|strong=\"G1161\"* down|strong=\"G2701\"* to|strong=\"G2532\"* them|strong=\"G3588\"*. They|strong=\"G2532\"*, when|strong=\"G1161\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* captain|strong=\"G5506\"* and|strong=\"G2532\"* the|strong=\"G2532\"* soldiers|strong=\"G4757\"*, stopped|strong=\"G3973\"* beating|strong=\"G5180\"* Paul|strong=\"G3972\"*." + }, + { + "verseNum": 33, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* commanding|strong=\"G2753\"* officer came|strong=\"G2532\"* near|strong=\"G1448\"*, arrested him|strong=\"G3588\"*, commanded|strong=\"G2753\"* him|strong=\"G3588\"* to|strong=\"G2532\"* be|strong=\"G1510\"* bound|strong=\"G1210\"* with|strong=\"G2532\"* two|strong=\"G1417\"* chains|strong=\"G1210\"*, and|strong=\"G2532\"* inquired|strong=\"G4441\"* who|strong=\"G5101\"* he|strong=\"G2532\"* was|strong=\"G1510\"* and|strong=\"G2532\"* what|strong=\"G5101\"* he|strong=\"G2532\"* had|strong=\"G2532\"* done|strong=\"G4160\"*." + }, + { + "verseNum": 34, + "text": "Some|strong=\"G5100\"* shouted|strong=\"G2019\"* one|strong=\"G5100\"* thing|strong=\"G5100\"* and|strong=\"G1161\"* some|strong=\"G5100\"* another|strong=\"G5100\"*, among|strong=\"G1722\"* the|strong=\"G1722\"* crowd|strong=\"G3793\"*. When|strong=\"G1161\"* he|strong=\"G1161\"* couldn’t|strong=\"G3588\"* find|strong=\"G1097\"* out|strong=\"G3793\"* the|strong=\"G1722\"* truth because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G1722\"* noise, he|strong=\"G1161\"* commanded|strong=\"G2753\"* him|strong=\"G3588\"* to|strong=\"G1519\"* be|strong=\"G3361\"* brought|strong=\"G1161\"* into|strong=\"G1519\"* the|strong=\"G1722\"* barracks|strong=\"G3925\"*." + }, + { + "verseNum": 35, + "text": "When|strong=\"G3753\"* he|strong=\"G1161\"* came|strong=\"G1096\"* to|strong=\"G1909\"* the|strong=\"G1161\"* stairs, he|strong=\"G1161\"* was|strong=\"G1096\"* carried|strong=\"G1096\"* by|strong=\"G1223\"* the|strong=\"G1161\"* soldiers|strong=\"G4757\"* because|strong=\"G1223\"* of|strong=\"G5259\"* the|strong=\"G1161\"* violence of|strong=\"G5259\"* the|strong=\"G1161\"* crowd|strong=\"G3793\"*;" + }, + { + "verseNum": 36, + "text": "for|strong=\"G1063\"* the|strong=\"G3588\"* multitude|strong=\"G4128\"* of|strong=\"G4128\"* the|strong=\"G3588\"* people|strong=\"G2992\"* followed|strong=\"G2992\"* after|strong=\"G1063\"*, crying|strong=\"G2896\"* out|strong=\"G2896\"*, “Away with|strong=\"G2896\"* him|strong=\"G3588\"*!”" + }, + { + "verseNum": 37, + "text": "As|strong=\"G1519\"* Paul|strong=\"G3972\"* was|strong=\"G3588\"* about|strong=\"G3195\"* to|strong=\"G1519\"* be|strong=\"G3195\"* brought|strong=\"G1521\"* into|strong=\"G1519\"* the|strong=\"G1519\"* barracks|strong=\"G3925\"*, he|strong=\"G1161\"* asked|strong=\"G3004\"* the|strong=\"G1519\"* commanding officer, “May|strong=\"G1832\"* I|strong=\"G1473\"* speak|strong=\"G3004\"* to|strong=\"G1519\"* you|strong=\"G4771\"*?”" + }, + { + "verseNum": 38, + "text": "Aren’t|strong=\"G3588\"* you|strong=\"G4771\"* then|strong=\"G2532\"* the|strong=\"G2532\"* Egyptian who|strong=\"G3588\"* before|strong=\"G4253\"* these|strong=\"G3778\"* days|strong=\"G2250\"* stirred|strong=\"G2532\"* up|strong=\"G1519\"* to|strong=\"G1519\"* sedition and|strong=\"G2532\"* led|strong=\"G1806\"* out|strong=\"G1806\"* into|strong=\"G1519\"* the|strong=\"G2532\"* wilderness|strong=\"G2048\"* the|strong=\"G2532\"* four|strong=\"G5070\"* thousand|strong=\"G5070\"* men|strong=\"G3778\"* of|strong=\"G2250\"* the|strong=\"G2532\"* Assassins|strong=\"G4607\"*?”" + }, + { + "verseNum": 39, + "text": "But|strong=\"G1161\"* Paul|strong=\"G3972\"* said|strong=\"G3004\"*, “I|strong=\"G1473\"* am|strong=\"G1510\"* a|strong=\"G1510\"* Jew|strong=\"G2453\"* from|strong=\"G3756\"* Tarsus|strong=\"G5018\"* in|strong=\"G2980\"* Cilicia|strong=\"G2791\"*, a|strong=\"G1510\"* citizen|strong=\"G4177\"* of|strong=\"G4172\"* no|strong=\"G3756\"* insignificant city|strong=\"G4172\"*. I|strong=\"G1473\"* beg|strong=\"G1189\"* you|strong=\"G4771\"*, allow|strong=\"G2010\"* me|strong=\"G1473\"* to|strong=\"G4314\"* speak|strong=\"G2980\"* to|strong=\"G4314\"* the|strong=\"G1161\"* people|strong=\"G2992\"*.”" + }, + { + "verseNum": 40, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G3972\"* given|strong=\"G2010\"* him|strong=\"G3588\"* permission|strong=\"G2010\"*, Paul|strong=\"G3972\"*, standing|strong=\"G2476\"* on|strong=\"G1909\"* the|strong=\"G1161\"* stairs, beckoned|strong=\"G2678\"* with|strong=\"G1909\"* his|strong=\"G1909\"* hand|strong=\"G5495\"* to|strong=\"G1909\"* the|strong=\"G1161\"* people|strong=\"G2992\"*. When|strong=\"G1161\"* there|strong=\"G1161\"* was|strong=\"G1096\"* a|strong=\"G1096\"* great|strong=\"G4183\"* silence|strong=\"G4602\"*, he|strong=\"G1161\"* spoke|strong=\"G3004\"* to|strong=\"G1909\"* them|strong=\"G3588\"* in|strong=\"G1909\"* the|strong=\"G1161\"* Hebrew|strong=\"G1446\"* language|strong=\"G1258\"*, saying|strong=\"G3004\"*," + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "“Brothers and|strong=\"G2532\"* fathers|strong=\"G3962\"*, listen to|strong=\"G4314\"* the|strong=\"G2532\"* defense which|strong=\"G3588\"* I|strong=\"G1473\"* now|strong=\"G2532\"* make|strong=\"G2532\"* to|strong=\"G4314\"* you|strong=\"G5210\"*.”" + }, + { + "verseNum": 2, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* heard that|strong=\"G3754\"* he|strong=\"G2532\"* spoke|strong=\"G4377\"* to|strong=\"G2532\"* them|strong=\"G3588\"* in|strong=\"G2532\"* the|strong=\"G2532\"* Hebrew|strong=\"G1446\"* language|strong=\"G1258\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* even|strong=\"G2532\"* more|strong=\"G3123\"* quiet|strong=\"G2271\"*." + }, + { + "verseNum": 3, + "text": "“I|strong=\"G1473\"* am|strong=\"G1510\"* indeed|strong=\"G1161\"* a|strong=\"G1722\"* Jew|strong=\"G2453\"*, born|strong=\"G1080\"* in|strong=\"G1722\"* Tarsus|strong=\"G5019\"* of|strong=\"G2316\"* Cilicia|strong=\"G2791\"*, but|strong=\"G1161\"* brought|strong=\"G1161\"* up|strong=\"G1722\"* in|strong=\"G1722\"* this|strong=\"G3778\"* city|strong=\"G4172\"* at|strong=\"G1722\"* the|strong=\"G1722\"* feet|strong=\"G4228\"* of|strong=\"G2316\"* Gamaliel|strong=\"G1059\"*, instructed according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* strict tradition of|strong=\"G2316\"* the|strong=\"G1722\"* law|strong=\"G3551\"* of|strong=\"G2316\"* our|strong=\"G2316\"* fathers|strong=\"G3971\"*, being|strong=\"G1510\"* zealous|strong=\"G2207\"* for|strong=\"G1161\"* God|strong=\"G2316\"*, even|strong=\"G2531\"* as|strong=\"G2531\"* you|strong=\"G5210\"* all|strong=\"G3956\"* are|strong=\"G1510\"* today|strong=\"G4594\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"G3739\"* persecuted|strong=\"G1377\"* this|strong=\"G3778\"* Way|strong=\"G3598\"* to|strong=\"G1519\"* the|strong=\"G2532\"* death|strong=\"G2288\"*, binding|strong=\"G1195\"* and|strong=\"G2532\"* delivering|strong=\"G3860\"* into|strong=\"G1519\"* prisons|strong=\"G5438\"* both|strong=\"G2532\"* men|strong=\"G3778\"* and|strong=\"G2532\"* women|strong=\"G1135\"*," + }, + { + "verseNum": 5, + "text": "as|strong=\"G5613\"* also|strong=\"G2532\"* the|strong=\"G2532\"* high|strong=\"G3956\"* priest and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* council|strong=\"G4244\"* of|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4244\"* testify|strong=\"G3140\"*, from|strong=\"G3844\"* whom|strong=\"G3739\"* also|strong=\"G2532\"* I|strong=\"G1473\"* received|strong=\"G1209\"* letters|strong=\"G1992\"* to|strong=\"G1519\"* the|strong=\"G2532\"* brothers, and|strong=\"G2532\"* traveled to|strong=\"G1519\"* Damascus|strong=\"G1154\"* to|strong=\"G1519\"* bring|strong=\"G2532\"* them|strong=\"G3588\"* also|strong=\"G2532\"* who|strong=\"G3739\"* were|strong=\"G1510\"* there|strong=\"G2532\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"* in|strong=\"G1519\"* bonds|strong=\"G1210\"* to|strong=\"G1519\"* be|strong=\"G1510\"* punished|strong=\"G5097\"*." + }, + { + "verseNum": 6, + "text": "“As|strong=\"G1161\"* I|strong=\"G1473\"* made|strong=\"G1096\"* my|strong=\"G1473\"* journey|strong=\"G4198\"* and|strong=\"G2532\"* came|strong=\"G1096\"* close|strong=\"G1448\"* to|strong=\"G2532\"* Damascus|strong=\"G1154\"*, about|strong=\"G4012\"* noon|strong=\"G3314\"* suddenly|strong=\"G1810\"* a|strong=\"G1096\"* great|strong=\"G2532\"* light|strong=\"G5457\"* shone|strong=\"G4015\"* around|strong=\"G4012\"* me|strong=\"G1473\"* from|strong=\"G1537\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"G1473\"* fell|strong=\"G4098\"* to|strong=\"G1519\"* the|strong=\"G2532\"* ground|strong=\"G1475\"* and|strong=\"G2532\"* heard a|strong=\"G2532\"* voice|strong=\"G5456\"* saying|strong=\"G3004\"* to|strong=\"G1519\"* me|strong=\"G1473\"*, ‘\\+w Saul|strong=\"G4549\"\\+w*, \\+w Saul|strong=\"G4549\"\\+w*, \\+w why|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w persecuting|strong=\"G1377\"\\+w* \\+w me|strong=\"G1473\"\\+w*?’*" + }, + { + "verseNum": 8, + "text": "I|strong=\"G1473\"* answered|strong=\"G3004\"*, ‘Who|strong=\"G3739\"* are|strong=\"G1510\"* you|strong=\"G4771\"*, Lord|strong=\"G2962\"*?’ He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* me|strong=\"G1473\"*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w Jesus|strong=\"G2424\"\\+w* \\+w of|strong=\"G2962\"\\+w* \\+w Nazareth|strong=\"G3480\"\\+w*, \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w persecute|strong=\"G1377\"\\+w*.’*" + }, + { + "verseNum": 9, + "text": "“Those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* with|strong=\"G4862\"* me|strong=\"G1473\"* indeed|strong=\"G3303\"* saw|strong=\"G2300\"* the|strong=\"G1161\"* light|strong=\"G5457\"* and|strong=\"G1161\"* were|strong=\"G1510\"* afraid, but|strong=\"G1161\"* they|strong=\"G1161\"* didn’t|strong=\"G3588\"* understand the|strong=\"G1161\"* voice|strong=\"G5456\"* of|strong=\"G5456\"* him|strong=\"G3588\"* who|strong=\"G3588\"* spoke|strong=\"G2980\"* to|strong=\"G3756\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"G1473\"* said|strong=\"G3004\"*, ‘What|strong=\"G5101\"* shall|strong=\"G3739\"* I|strong=\"G1473\"* do|strong=\"G4160\"*, Lord|strong=\"G2962\"*?’ The|strong=\"G1519\"* Lord|strong=\"G2962\"* said|strong=\"G3004\"* to|strong=\"G1519\"* me|strong=\"G1473\"*, ‘Arise, \\+w and|strong=\"G1161\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w Damascus|strong=\"G1154\"\\+w*. \\+w There|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w be|strong=\"G3956\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w appointed|strong=\"G4160\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w do|strong=\"G4160\"\\+w*.’*" + }, + { + "verseNum": 11, + "text": "When|strong=\"G1161\"* I|strong=\"G1473\"* couldn’t|strong=\"G3588\"* see|strong=\"G1689\"* for|strong=\"G1519\"* the|strong=\"G1519\"* glory|strong=\"G1391\"* of|strong=\"G5259\"* that|strong=\"G3588\"* light|strong=\"G5457\"*, being|strong=\"G1161\"* led|strong=\"G5496\"* by|strong=\"G5259\"* the|strong=\"G1519\"* hand|strong=\"G1161\"* of|strong=\"G5259\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* with|strong=\"G5259\"* me|strong=\"G1473\"*, I|strong=\"G1473\"* came|strong=\"G2064\"* into|strong=\"G1519\"* Damascus|strong=\"G1154\"*." + }, + { + "verseNum": 12, + "text": "“One|strong=\"G5100\"* Ananias, a|strong=\"G1161\"* devout|strong=\"G2126\"* man|strong=\"G5100\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G3956\"* law|strong=\"G3551\"*, well|strong=\"G3140\"* reported|strong=\"G3140\"* of|strong=\"G5259\"* by|strong=\"G5259\"* all|strong=\"G3956\"* the|strong=\"G3956\"* Jews|strong=\"G2453\"* who|strong=\"G3588\"* lived|strong=\"G2730\"* in|strong=\"G2596\"* Damascus," + }, + { + "verseNum": 13, + "text": "came|strong=\"G2064\"* to|strong=\"G1519\"* me|strong=\"G1473\"*, and|strong=\"G2532\"* standing|strong=\"G2186\"* by|strong=\"G4314\"* me|strong=\"G1473\"* said|strong=\"G3004\"* to|strong=\"G1519\"* me|strong=\"G1473\"*, ‘Brother Saul|strong=\"G4549\"*, receive your|strong=\"G2532\"* sight|strong=\"G3588\"*!’ In|strong=\"G1519\"* that|strong=\"G3588\"* very|strong=\"G2532\"* hour|strong=\"G5610\"* I|strong=\"G1473\"* looked|strong=\"G2532\"* up|strong=\"G1519\"* at|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, ‘The|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G1537\"* our|strong=\"G2316\"* fathers|strong=\"G3962\"* has|strong=\"G2316\"* appointed|strong=\"G4400\"* you|strong=\"G4771\"* to|strong=\"G2532\"* know|strong=\"G1097\"* his|strong=\"G3708\"* will|strong=\"G2307\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* see|strong=\"G3708\"* the|strong=\"G2532\"* Righteous|strong=\"G1342\"* One|strong=\"G3588\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* hear|strong=\"G5456\"* a|strong=\"G2532\"* voice|strong=\"G5456\"* from|strong=\"G1537\"* his|strong=\"G3708\"* mouth|strong=\"G4750\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G3754\"* you|strong=\"G3739\"* will|strong=\"G1510\"* be|strong=\"G1510\"* a|strong=\"G2532\"* witness|strong=\"G3144\"* for|strong=\"G3754\"* him|strong=\"G3739\"* to|strong=\"G4314\"* all|strong=\"G3956\"* men|strong=\"G3956\"* of|strong=\"G2532\"* what|strong=\"G3739\"* you|strong=\"G3739\"* have|strong=\"G2532\"* seen|strong=\"G3708\"* and|strong=\"G2532\"* heard." + }, + { + "verseNum": 16, + "text": "Now|strong=\"G3568\"* why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G4771\"* wait? Arise, be|strong=\"G2532\"* baptized, and|strong=\"G2532\"* wash|strong=\"G2532\"* away your|strong=\"G2532\"* sins, calling|strong=\"G1941\"* on|strong=\"G1941\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"*.’" + }, + { + "verseNum": 17, + "text": "“When|strong=\"G1161\"* I|strong=\"G1473\"* had|strong=\"G2532\"* returned|strong=\"G5290\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"* and|strong=\"G2532\"* while|strong=\"G1722\"* I|strong=\"G1473\"* prayed|strong=\"G4336\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, I|strong=\"G1473\"* fell|strong=\"G1096\"* into|strong=\"G1519\"* a|strong=\"G1096\"* trance|strong=\"G1611\"*" + }, + { + "verseNum": 18, + "text": "and|strong=\"G2532\"* saw|strong=\"G3708\"* him|strong=\"G3708\"* saying|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, ‘\\+w Hurry|strong=\"G4692\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w get|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w* \\+w quickly|strong=\"G5034\"\\+w*, \\+w because|strong=\"G1360\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w receive|strong=\"G3858\"\\+w* \\+w testimony|strong=\"G3141\"\\+w* \\+w concerning|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w you|strong=\"G4771\"\\+w*.’*" + }, + { + "verseNum": 19, + "text": "I|strong=\"G1473\"* said|strong=\"G3004\"*, ‘Lord|strong=\"G2962\"*, they|strong=\"G2532\"* themselves|strong=\"G1510\"* know|strong=\"G1987\"* that|strong=\"G3754\"* I|strong=\"G1473\"* imprisoned|strong=\"G5439\"* and|strong=\"G2532\"* beat|strong=\"G1194\"* in|strong=\"G1909\"* every|strong=\"G2596\"* synagogue|strong=\"G4864\"* those|strong=\"G3588\"* who|strong=\"G3588\"* believed|strong=\"G4100\"* in|strong=\"G1909\"* you|strong=\"G4771\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"G3753\"* the|strong=\"G2532\"* blood of|strong=\"G2532\"* Stephen|strong=\"G4736\"*, your|strong=\"G2532\"* witness|strong=\"G3144\"*, was|strong=\"G1510\"* shed|strong=\"G1632\"*, I|strong=\"G2532\"* also|strong=\"G2532\"* was|strong=\"G1510\"* standing|strong=\"G2186\"* by|strong=\"G2532\"*, consenting|strong=\"G2532\"* to|strong=\"G2532\"* his|strong=\"G2532\"* death, and|strong=\"G2532\"* guarding|strong=\"G5442\"* the|strong=\"G2532\"* cloaks|strong=\"G2440\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* killed him|strong=\"G3588\"*.’" + }, + { + "verseNum": 21, + "text": "“He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* me|strong=\"G1473\"*, ‘\\+w Depart|strong=\"G4198\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w send|strong=\"G1821\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w far|strong=\"G3112\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w here|strong=\"G1519\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Gentiles|strong=\"G1484\"\\+w*.’* ”" + }, + { + "verseNum": 22, + "text": "They|strong=\"G2532\"* listened to|strong=\"G2532\"* him|strong=\"G3588\"* until|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* that|strong=\"G3588\"*; then|strong=\"G2532\"* they|strong=\"G2532\"* lifted|strong=\"G1869\"* up|strong=\"G1869\"* their|strong=\"G2532\"* voice|strong=\"G5456\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “Rid the|strong=\"G2532\"* earth|strong=\"G1093\"* of|strong=\"G3056\"* this|strong=\"G3778\"* fellow|strong=\"G5108\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* isn’t|strong=\"G3588\"* fit|strong=\"G2520\"* to|strong=\"G2532\"* live|strong=\"G2198\"*!”" + }, + { + "verseNum": 23, + "text": "As|strong=\"G1519\"* they|strong=\"G2532\"* cried|strong=\"G2905\"* out|strong=\"G2905\"*, threw|strong=\"G4496\"* off|strong=\"G4495\"* their|strong=\"G2532\"* cloaks|strong=\"G2440\"*, and|strong=\"G2532\"* threw|strong=\"G4496\"* dust|strong=\"G2868\"* into|strong=\"G1519\"* the|strong=\"G2532\"* air," + }, + { + "verseNum": 24, + "text": "the|strong=\"G1519\"* commanding|strong=\"G2753\"* officer commanded|strong=\"G2753\"* him|strong=\"G3588\"* to|strong=\"G1519\"* be|strong=\"G1519\"* brought|strong=\"G1521\"* into|strong=\"G1519\"* the|strong=\"G1519\"* barracks|strong=\"G3925\"*, ordering|strong=\"G2753\"* him|strong=\"G3588\"* to|strong=\"G1519\"* be|strong=\"G1519\"* examined by|strong=\"G1223\"* scourging|strong=\"G3148\"*, that|strong=\"G2443\"* he|strong=\"G3739\"* might know|strong=\"G1921\"* for|strong=\"G1519\"* what|strong=\"G3739\"* crime they|strong=\"G3588\"* shouted|strong=\"G2019\"* against|strong=\"G1519\"* him|strong=\"G3588\"* like|strong=\"G3779\"* that|strong=\"G2443\"*." + }, + { + "verseNum": 25, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* tied him|strong=\"G3588\"* up|strong=\"G2476\"* with|strong=\"G4314\"* straps, Paul|strong=\"G3972\"* asked|strong=\"G3004\"* the|strong=\"G2532\"* centurion|strong=\"G1543\"* who|strong=\"G3588\"* stood|strong=\"G2476\"* by|strong=\"G4314\"*, “Is|strong=\"G3588\"* it|strong=\"G2532\"* lawful|strong=\"G1832\"* for|strong=\"G4314\"* you|strong=\"G5210\"* to|strong=\"G4314\"* scourge|strong=\"G3147\"* a|strong=\"G5613\"* man who|strong=\"G3588\"* is|strong=\"G3588\"* a|strong=\"G5613\"* Roman|strong=\"G4514\"*, and|strong=\"G2532\"* not|strong=\"G2532\"* found|strong=\"G2532\"* guilty?”" + }, + { + "verseNum": 26, + "text": "When|strong=\"G1161\"* the|strong=\"G1161\"* centurion|strong=\"G1543\"* heard it|strong=\"G1161\"*, he|strong=\"G1161\"* went|strong=\"G4334\"* to|strong=\"G3004\"* the|strong=\"G1161\"* commanding officer and|strong=\"G1161\"* told|strong=\"G3004\"* him|strong=\"G3588\"*, “Watch what|strong=\"G5101\"* you|strong=\"G3004\"* are|strong=\"G1510\"* about|strong=\"G3195\"* to|strong=\"G3004\"* do|strong=\"G4160\"*, for|strong=\"G1063\"* this|strong=\"G3778\"* man|strong=\"G3778\"* is|strong=\"G1510\"* a|strong=\"G1510\"* Roman|strong=\"G4514\"*!”" + }, + { + "verseNum": 27, + "text": "The|strong=\"G1161\"* commanding officer came|strong=\"G4334\"* and|strong=\"G1161\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Tell|strong=\"G3004\"* me|strong=\"G1473\"*, are|strong=\"G1510\"* you|strong=\"G4771\"* a|strong=\"G1510\"* Roman|strong=\"G4514\"*?”" + }, + { + "verseNum": 28, + "text": "The|strong=\"G2532\"* commanding officer answered|strong=\"G5346\"*, “I|strong=\"G1473\"* bought my|strong=\"G1473\"* citizenship|strong=\"G4174\"* for|strong=\"G1161\"* a|strong=\"G2532\"* great|strong=\"G4183\"* price|strong=\"G4183\"*.”" + }, + { + "verseNum": 29, + "text": "Immediately|strong=\"G2112\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* about|strong=\"G3195\"* to|strong=\"G2532\"* examine him|strong=\"G3588\"* departed from|strong=\"G2532\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* commanding officer also|strong=\"G2532\"* was|strong=\"G1510\"* afraid|strong=\"G5399\"* when|strong=\"G1161\"* he|strong=\"G2532\"* realized|strong=\"G1921\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* Roman|strong=\"G4514\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2532\"* bound|strong=\"G1210\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 30, + "text": "But|strong=\"G1161\"* on|strong=\"G1519\"* the|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"*, desiring|strong=\"G1014\"* to|strong=\"G1519\"* know|strong=\"G1097\"* the|strong=\"G2532\"* truth about|strong=\"G1519\"* why|strong=\"G5101\"* he|strong=\"G2532\"* was|strong=\"G3588\"* accused|strong=\"G2723\"* by|strong=\"G5259\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, he|strong=\"G2532\"* freed him|strong=\"G3588\"* from|strong=\"G2532\"* the|strong=\"G2532\"* bonds and|strong=\"G2532\"* commanded|strong=\"G2753\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* council|strong=\"G4892\"* to|strong=\"G1519\"* come|strong=\"G4905\"* together|strong=\"G4905\"*, and|strong=\"G2532\"* brought|strong=\"G2609\"* Paul|strong=\"G3972\"* down|strong=\"G2609\"* and|strong=\"G2532\"* set|strong=\"G2476\"* him|strong=\"G3588\"* before|strong=\"G1519\"* them|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, looking steadfastly at|strong=\"G1161\"* the|strong=\"G3956\"* council|strong=\"G4892\"*, said|strong=\"G3004\"*, “Brothers, I|strong=\"G1473\"* have|strong=\"G1473\"* lived|strong=\"G4176\"* before|strong=\"G3588\"* God|strong=\"G2316\"* in|strong=\"G2316\"* all|strong=\"G3956\"* good|strong=\"G3956\"* conscience|strong=\"G4893\"* until today|strong=\"G2250\"*.”" + }, + { + "verseNum": 2, + "text": "The|strong=\"G1161\"* high priest, Ananias, commanded|strong=\"G2004\"* those|strong=\"G3588\"* who|strong=\"G3588\"* stood|strong=\"G3936\"* by|strong=\"G3936\"* him|strong=\"G3588\"* to|strong=\"G1161\"* strike|strong=\"G5180\"* him|strong=\"G3588\"* on|strong=\"G1161\"* the|strong=\"G1161\"* mouth|strong=\"G4750\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"G2532\"* Paul|strong=\"G3972\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “God|strong=\"G2316\"* will|strong=\"G2316\"* strike|strong=\"G5180\"* you|strong=\"G4771\"*, you|strong=\"G4771\"* whitewashed|strong=\"G2867\"* wall|strong=\"G5109\"*! Do|strong=\"G2919\"* you|strong=\"G4771\"* sit|strong=\"G2521\"* to|strong=\"G4314\"* judge|strong=\"G2919\"* me|strong=\"G1473\"* according|strong=\"G2596\"* to|strong=\"G4314\"* the|strong=\"G2532\"* law|strong=\"G3551\"*, and|strong=\"G2532\"* command|strong=\"G3004\"* me|strong=\"G1473\"* to|strong=\"G4314\"* be|strong=\"G2532\"* struck|strong=\"G5180\"* contrary|strong=\"G2316\"* to|strong=\"G4314\"* the|strong=\"G2532\"* law|strong=\"G3551\"*?”" + }, + { + "verseNum": 4, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* stood|strong=\"G3936\"* by|strong=\"G3936\"* said|strong=\"G3004\"*, “Do|strong=\"G3004\"* you|strong=\"G3004\"* malign God|strong=\"G2316\"*’s high|strong=\"G2316\"* priest?”" + }, + { + "verseNum": 5, + "text": "Paul|strong=\"G3972\"* said|strong=\"G3004\"*, “I|strong=\"G1063\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"*, brothers, that|strong=\"G3754\"* he|strong=\"G3754\"* was|strong=\"G1510\"* high priest. For|strong=\"G1063\"* it|strong=\"G3754\"* is|strong=\"G1510\"* written|strong=\"G1125\"*, ‘You|strong=\"G4771\"* shall|strong=\"G3748\"* not|strong=\"G3756\"* speak|strong=\"G3004\"* evil|strong=\"G2560\"* of|strong=\"G2992\"* a|strong=\"G1510\"* ruler of|strong=\"G2992\"* your|strong=\"G3588\"* people|strong=\"G2992\"*.’”+ 23:5 Exodus 22:28*" + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Paul|strong=\"G3972\"* perceived|strong=\"G1097\"* that|strong=\"G3754\"* the|strong=\"G1722\"* one|strong=\"G1520\"* part|strong=\"G3313\"* were|strong=\"G1510\"* Sadducees|strong=\"G4523\"* and|strong=\"G2532\"* the|strong=\"G1722\"* other|strong=\"G2087\"* Pharisees|strong=\"G5330\"*, he|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* in|strong=\"G1722\"* the|strong=\"G1722\"* council|strong=\"G4892\"*, “Men|strong=\"G3588\"* and|strong=\"G2532\"* brothers, I|strong=\"G1473\"* am|strong=\"G1510\"* a|strong=\"G2532\"* Pharisee|strong=\"G5330\"*, a|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* Pharisees|strong=\"G5330\"*. Concerning|strong=\"G4012\"* the|strong=\"G1722\"* hope|strong=\"G1680\"* and|strong=\"G2532\"* resurrection of|strong=\"G5207\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* I|strong=\"G1473\"* am|strong=\"G1510\"* being|strong=\"G1510\"* judged|strong=\"G2919\"*!”" + }, + { + "verseNum": 7, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G2980\"* this|strong=\"G3778\"*, an|strong=\"G2532\"* argument arose|strong=\"G1096\"* between|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* Sadducees|strong=\"G4523\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* crowd|strong=\"G4128\"* was|strong=\"G1096\"* divided|strong=\"G4977\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* the|strong=\"G1161\"* Sadducees|strong=\"G4523\"* say|strong=\"G3004\"* that|strong=\"G3588\"* there|strong=\"G1161\"* is|strong=\"G1510\"* no|strong=\"G3361\"* resurrection, nor|strong=\"G3383\"* angel, nor|strong=\"G3383\"* spirit|strong=\"G4151\"*; but|strong=\"G1161\"* the|strong=\"G1161\"* Pharisees|strong=\"G5330\"* confess|strong=\"G3670\"* all|strong=\"G3361\"* of|strong=\"G4151\"* these|strong=\"G3588\"*." + }, + { + "verseNum": 9, + "text": "A|strong=\"G1096\"* great|strong=\"G3173\"* clamor|strong=\"G2906\"* arose|strong=\"G1096\"*, and|strong=\"G2532\"* some|strong=\"G5100\"* of|strong=\"G4151\"* the|strong=\"G1722\"* scribes|strong=\"G1122\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Pharisees|strong=\"G5330\"*’ part|strong=\"G3313\"* stood|strong=\"G3588\"* up|strong=\"G2532\"*, and|strong=\"G2532\"* contended, saying|strong=\"G3004\"*, “We|strong=\"G2532\"* find|strong=\"G2147\"* no|strong=\"G3762\"* evil|strong=\"G2556\"* in|strong=\"G1722\"* this|strong=\"G3778\"* man|strong=\"G5100\"*. But|strong=\"G1161\"* if|strong=\"G1487\"* a|strong=\"G1096\"* spirit|strong=\"G4151\"* or|strong=\"G2228\"* angel has|strong=\"G1096\"* spoken|strong=\"G2980\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, let|strong=\"G1096\"*’s not|strong=\"G3762\"* fight against|strong=\"G1722\"* God|strong=\"G3004\"*!”" + }, + { + "verseNum": 10, + "text": "When|strong=\"G1161\"* a|strong=\"G1096\"* great|strong=\"G4183\"* argument arose|strong=\"G1096\"*, the|strong=\"G1519\"* commanding|strong=\"G2753\"* officer, fearing|strong=\"G5399\"* that|strong=\"G3588\"* Paul|strong=\"G3972\"* would|strong=\"G1096\"* be|strong=\"G1096\"* torn|strong=\"G1288\"* in|strong=\"G1519\"* pieces|strong=\"G1288\"* by|strong=\"G5259\"* them|strong=\"G3588\"*, commanded|strong=\"G2753\"* the|strong=\"G1519\"* soldiers|strong=\"G4753\"* to|strong=\"G1519\"* go|strong=\"G2597\"* down|strong=\"G2597\"* and|strong=\"G1161\"* take|strong=\"G1096\"* him|strong=\"G3588\"* by|strong=\"G5259\"* force from|strong=\"G1537\"* among|strong=\"G1519\"* them|strong=\"G3588\"* and|strong=\"G1161\"* bring|strong=\"G1519\"* him|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G1519\"* barracks|strong=\"G3925\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"G2532\"* following|strong=\"G1966\"* night|strong=\"G3571\"*, the|strong=\"G2532\"* Lord|strong=\"G2962\"* stood|strong=\"G2186\"* by|strong=\"G2532\"* him|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “Cheer \\+w up|strong=\"G1210\"\\+w*, \\+w Paul|strong=\"G3588\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w testified|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w at|strong=\"G1519\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w*, \\+w so|strong=\"G3779\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w testify|strong=\"G3140\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w at|strong=\"G1519\"\\+w* \\+w Rome|strong=\"G4516\"\\+w*.”*" + }, + { + "verseNum": 12, + "text": "When|strong=\"G1161\"* it|strong=\"G1161\"* was|strong=\"G1096\"* day|strong=\"G2250\"*, some|strong=\"G3739\"* of|strong=\"G2250\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"* banded|strong=\"G4160\"* together|strong=\"G4963\"* and|strong=\"G1161\"* bound themselves|strong=\"G1438\"* under a|strong=\"G1096\"* curse, saying|strong=\"G3004\"* that|strong=\"G3739\"* they|strong=\"G1161\"* would|strong=\"G1096\"* neither|strong=\"G3383\"* eat|strong=\"G2068\"* nor|strong=\"G3383\"* drink|strong=\"G4095\"* until|strong=\"G2193\"* they|strong=\"G1161\"* had|strong=\"G3972\"* killed Paul|strong=\"G3972\"*." + }, + { + "verseNum": 13, + "text": "There|strong=\"G1161\"* were|strong=\"G1510\"* more|strong=\"G4119\"* than|strong=\"G4183\"* forty|strong=\"G5062\"* people|strong=\"G1510\"* who|strong=\"G3588\"* had|strong=\"G1510\"* made|strong=\"G4160\"* this|strong=\"G3778\"* conspiracy|strong=\"G4945\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"G2532\"* came|strong=\"G4334\"* to|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “We|strong=\"G3739\"* have|strong=\"G2532\"* bound ourselves|strong=\"G1438\"* under a|strong=\"G2532\"* great|strong=\"G2532\"* curse to|strong=\"G2532\"* taste|strong=\"G1089\"* nothing|strong=\"G3367\"* until|strong=\"G2193\"* we|strong=\"G3739\"* have|strong=\"G2532\"* killed Paul|strong=\"G3972\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"G1161\"* therefore|strong=\"G3767\"*, you|strong=\"G5210\"* with|strong=\"G4862\"* the|strong=\"G1519\"* council|strong=\"G4892\"* inform the|strong=\"G1519\"* commanding officer that|strong=\"G3588\"* he|strong=\"G1161\"* should|strong=\"G3195\"* bring|strong=\"G2609\"* him|strong=\"G3588\"* down|strong=\"G2609\"* to|strong=\"G1519\"* you|strong=\"G5210\"* tomorrow, as|strong=\"G5613\"* though|strong=\"G5613\"* you|strong=\"G5210\"* were|strong=\"G1510\"* going|strong=\"G3195\"* to|strong=\"G1519\"* judge|strong=\"G4253\"* his|strong=\"G1519\"* case|strong=\"G3588\"* more|strong=\"G1161\"* exactly. We|strong=\"G2249\"* are|strong=\"G1510\"* ready|strong=\"G2092\"* to|strong=\"G1519\"* kill him|strong=\"G3588\"* before|strong=\"G4253\"* he|strong=\"G1161\"* comes|strong=\"G1510\"* near|strong=\"G1448\"*.”" + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* Paul|strong=\"G3972\"*’s sister’s son|strong=\"G5207\"* heard they|strong=\"G2532\"* were|strong=\"G3588\"* lying in|strong=\"G1519\"* wait|strong=\"G1747\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* came|strong=\"G3854\"* and|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* barracks|strong=\"G3925\"* and|strong=\"G2532\"* told Paul|strong=\"G3972\"*." + }, + { + "verseNum": 17, + "text": "Paul|strong=\"G3972\"* summoned|strong=\"G4341\"* one|strong=\"G1520\"* of|strong=\"G1520\"* the|strong=\"G1161\"* centurions|strong=\"G1543\"* and|strong=\"G1161\"* said|strong=\"G5346\"*, “Bring this|strong=\"G3778\"* young|strong=\"G3494\"* man|strong=\"G5100\"* to|strong=\"G4314\"* the|strong=\"G1161\"* commanding officer, for|strong=\"G1063\"* he|strong=\"G1161\"* has|strong=\"G2192\"* something|strong=\"G5100\"* to|strong=\"G4314\"* tell him|strong=\"G3588\"*.”" + }, + { + "verseNum": 18, + "text": "So|strong=\"G3767\"* he|strong=\"G2532\"* took|strong=\"G3880\"* him|strong=\"G3588\"* and|strong=\"G2532\"* brought|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G4314\"* the|strong=\"G2532\"* commanding officer and|strong=\"G2532\"* said|strong=\"G5346\"*, “Paul|strong=\"G3972\"*, the|strong=\"G2532\"* prisoner|strong=\"G1198\"*, summoned|strong=\"G4341\"* me|strong=\"G1473\"* and|strong=\"G2532\"* asked|strong=\"G2065\"* me|strong=\"G1473\"* to|strong=\"G4314\"* bring|strong=\"G2532\"* this|strong=\"G3778\"* young|strong=\"G3495\"* man|strong=\"G5100\"* to|strong=\"G4314\"* you|strong=\"G4771\"*. He|strong=\"G2532\"* has|strong=\"G2192\"* something|strong=\"G5100\"* to|strong=\"G4314\"* tell|strong=\"G2980\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 19, + "text": "The|strong=\"G2532\"* commanding officer took|strong=\"G1949\"* him|strong=\"G3588\"* by|strong=\"G2596\"* the|strong=\"G2532\"* hand|strong=\"G5495\"*, and|strong=\"G2532\"* going|strong=\"G2532\"* aside|strong=\"G2596\"*, asked|strong=\"G4441\"* him|strong=\"G3588\"* privately|strong=\"G2398\"*, “What|strong=\"G5101\"* is|strong=\"G1510\"* it|strong=\"G2532\"* that|strong=\"G3739\"* you|strong=\"G3739\"* have|strong=\"G2192\"* to|strong=\"G2532\"* tell me|strong=\"G1473\"*?”" + }, + { + "verseNum": 20, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"*, “The|strong=\"G1519\"* Jews|strong=\"G2453\"* have|strong=\"G3748\"* agreed|strong=\"G4934\"* to|strong=\"G1519\"* ask|strong=\"G2065\"* you|strong=\"G4771\"* to|strong=\"G1519\"* bring|strong=\"G2609\"* Paul|strong=\"G3972\"* down|strong=\"G2609\"* to|strong=\"G1519\"* the|strong=\"G1519\"* council|strong=\"G4892\"* tomorrow, as|strong=\"G5613\"* though|strong=\"G5613\"* intending|strong=\"G3195\"* to|strong=\"G1519\"* inquire|strong=\"G4441\"* somewhat|strong=\"G5100\"* more|strong=\"G1161\"* accurately concerning|strong=\"G4012\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 21, + "text": "Therefore|strong=\"G3767\"* don’t|strong=\"G3588\"* yield|strong=\"G3982\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, for|strong=\"G1063\"* more|strong=\"G4119\"* than|strong=\"G4183\"* forty|strong=\"G5062\"* men|strong=\"G3588\"* lie in|strong=\"G2532\"* wait|strong=\"G1748\"* for|strong=\"G1063\"* him|strong=\"G3588\"*, who|strong=\"G3739\"* have|strong=\"G2532\"* bound themselves|strong=\"G1438\"* under|strong=\"G1537\"* a|strong=\"G2532\"* curse to|strong=\"G2532\"* neither|strong=\"G3383\"* eat|strong=\"G2068\"* nor|strong=\"G3383\"* drink|strong=\"G4095\"* until|strong=\"G2193\"* they|strong=\"G2532\"* have|strong=\"G2532\"* killed him|strong=\"G3588\"*. Now|strong=\"G3568\"* they|strong=\"G2532\"* are|strong=\"G1510\"* ready|strong=\"G2092\"*, looking|strong=\"G4327\"* for|strong=\"G1063\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* from|strong=\"G1537\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 22, + "text": "So|strong=\"G3767\"* the|strong=\"G4314\"* commanding|strong=\"G3853\"* officer let|strong=\"G3767\"* the|strong=\"G4314\"* young|strong=\"G3495\"* man|strong=\"G3778\"* go, charging|strong=\"G3853\"* him|strong=\"G3588\"*, “Tell|strong=\"G1583\"* no|strong=\"G3367\"* one|strong=\"G3367\"* that|strong=\"G3754\"* you|strong=\"G3754\"* have|strong=\"G1473\"* revealed these|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G4314\"* me|strong=\"G1473\"*.”" + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* called|strong=\"G3004\"* to|strong=\"G2532\"* himself two|strong=\"G1417\"* of|strong=\"G2532\"* the|strong=\"G2532\"* centurions|strong=\"G1543\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Prepare|strong=\"G2090\"* two|strong=\"G1417\"* hundred|strong=\"G1250\"* soldiers|strong=\"G4757\"* to|strong=\"G2532\"* go|strong=\"G4198\"* as|strong=\"G2532\"* far|strong=\"G2193\"* as|strong=\"G2532\"* Caesarea|strong=\"G2542\"*, with|strong=\"G2532\"* seventy|strong=\"G1440\"* horsemen|strong=\"G2460\"* and|strong=\"G2532\"* two|strong=\"G1417\"* hundred|strong=\"G1250\"* men|strong=\"G5100\"* armed with|strong=\"G2532\"* spears, at|strong=\"G3588\"* the|strong=\"G2532\"* third|strong=\"G5154\"* hour|strong=\"G5610\"* of|strong=\"G2532\"* the|strong=\"G2532\"* night|strong=\"G3571\"*.”+ 23:23 about 9:00 p.m.*" + }, + { + "verseNum": 24, + "text": "He|strong=\"G3588\"* asked them|strong=\"G3588\"* to|strong=\"G4314\"* provide|strong=\"G3936\"* mounts|strong=\"G2934\"*, that|strong=\"G2443\"* they|strong=\"G3588\"* might set|strong=\"G1913\"* Paul|strong=\"G3972\"* on|strong=\"G1913\"* one|strong=\"G3588\"*, and|strong=\"G5037\"* bring|strong=\"G1295\"* him|strong=\"G3588\"* safely|strong=\"G1295\"* to|strong=\"G4314\"* Felix|strong=\"G5344\"* the|strong=\"G4314\"* governor|strong=\"G2232\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"G3778\"* wrote|strong=\"G1125\"* a|strong=\"G2192\"* letter|strong=\"G1992\"* like|strong=\"G5179\"* this|strong=\"G3778\"*:" + }, + { + "verseNum": 26, + "text": "“Claudius|strong=\"G2804\"* Lysias|strong=\"G3079\"* to|strong=\"G3588\"* the|strong=\"G3588\"* most|strong=\"G2903\"* excellent|strong=\"G2903\"* governor|strong=\"G2232\"* Felix|strong=\"G5344\"*: Greetings|strong=\"G5463\"*." + }, + { + "verseNum": 27, + "text": "“This|strong=\"G3778\"* man|strong=\"G3778\"* was|strong=\"G1510\"* seized|strong=\"G4815\"* by|strong=\"G5259\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, and|strong=\"G2532\"* was|strong=\"G1510\"* about|strong=\"G3195\"* to|strong=\"G2532\"* be|strong=\"G1510\"* killed by|strong=\"G5259\"* them|strong=\"G3588\"* when|strong=\"G2532\"* I|strong=\"G2532\"* came|strong=\"G2532\"* with|strong=\"G4862\"* the|strong=\"G2532\"* soldiers|strong=\"G4753\"* and|strong=\"G2532\"* rescued|strong=\"G1807\"* him|strong=\"G3588\"*, having|strong=\"G2532\"* learned|strong=\"G3129\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* Roman|strong=\"G4514\"*." + }, + { + "verseNum": 28, + "text": "Desiring|strong=\"G1014\"* to|strong=\"G1519\"* know|strong=\"G1921\"* the|strong=\"G1519\"* cause|strong=\"G1223\"* why|strong=\"G1223\"* they|strong=\"G3588\"* accused|strong=\"G1458\"* him|strong=\"G3588\"*, I|strong=\"G3739\"* brought|strong=\"G2609\"* him|strong=\"G3588\"* down|strong=\"G2609\"* to|strong=\"G1519\"* their|strong=\"G1519\"* council|strong=\"G4892\"*." + }, + { + "verseNum": 29, + "text": "I|strong=\"G3739\"* found|strong=\"G2147\"* him|strong=\"G3588\"* to|strong=\"G1161\"* be|strong=\"G3588\"* accused|strong=\"G1458\"* about|strong=\"G4012\"* questions|strong=\"G2213\"* of|strong=\"G4012\"* their|strong=\"G4012\"* law|strong=\"G3551\"*, but|strong=\"G1161\"* not|strong=\"G3367\"* to|strong=\"G1161\"* be|strong=\"G3588\"* charged with|strong=\"G2192\"* anything|strong=\"G3367\"* worthy of|strong=\"G4012\"* death|strong=\"G2288\"* or|strong=\"G2228\"* of|strong=\"G4012\"* imprisonment|strong=\"G1199\"*." + }, + { + "verseNum": 30, + "text": "When|strong=\"G1161\"* I|strong=\"G1473\"* was|strong=\"G1510\"* told|strong=\"G3004\"* that|strong=\"G3588\"* the|strong=\"G2532\"* Jews lay in|strong=\"G1519\"* wait|strong=\"G1917\"* for|strong=\"G1519\"* the|strong=\"G2532\"* man|strong=\"G1519\"*, I|strong=\"G1473\"* sent|strong=\"G3992\"* him|strong=\"G3588\"* to|strong=\"G1519\"* you|strong=\"G4771\"* immediately|strong=\"G1824\"*, charging|strong=\"G3853\"* his|strong=\"G1519\"* accusers|strong=\"G2725\"* also|strong=\"G2532\"* to|strong=\"G1519\"* bring|strong=\"G2532\"* their|strong=\"G2532\"* accusations against|strong=\"G1909\"* him|strong=\"G3588\"* before|strong=\"G1909\"* you|strong=\"G4771\"*. Farewell.”" + }, + { + "verseNum": 31, + "text": "So|strong=\"G3767\"* the|strong=\"G1519\"* soldiers|strong=\"G4757\"*, carrying out|strong=\"G1519\"* their|strong=\"G2596\"* orders|strong=\"G1299\"*, took|strong=\"G3767\"* Paul|strong=\"G3972\"* and|strong=\"G3972\"* brought|strong=\"G1519\"* him|strong=\"G3588\"* by|strong=\"G1223\"* night|strong=\"G3571\"* to|strong=\"G1519\"* Antipatris." + }, + { + "verseNum": 32, + "text": "But|strong=\"G1161\"* on|strong=\"G1519\"* the|strong=\"G1519\"* next|strong=\"G1887\"* day|strong=\"G1887\"* they|strong=\"G1161\"* left|strong=\"G1439\"* the|strong=\"G1519\"* horsemen|strong=\"G2460\"* to|strong=\"G1519\"* go|strong=\"G1519\"* with|strong=\"G4862\"* him|strong=\"G3588\"*, and|strong=\"G1161\"* returned|strong=\"G5290\"* to|strong=\"G1519\"* the|strong=\"G1519\"* barracks|strong=\"G3925\"*." + }, + { + "verseNum": 33, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* came|strong=\"G1525\"* to|strong=\"G1519\"* Caesarea|strong=\"G2542\"* and|strong=\"G2532\"* delivered the|strong=\"G2532\"* letter|strong=\"G1992\"* to|strong=\"G1519\"* the|strong=\"G2532\"* governor|strong=\"G2232\"*, they|strong=\"G2532\"* also|strong=\"G2532\"* presented|strong=\"G3936\"* Paul|strong=\"G3972\"* to|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 34, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* governor had|strong=\"G2532\"* read it|strong=\"G2532\"*, he|strong=\"G2532\"* asked|strong=\"G1905\"* what|strong=\"G4169\"* province|strong=\"G1885\"* he|strong=\"G2532\"* was|strong=\"G1510\"* from|strong=\"G1537\"*. When|strong=\"G1161\"* he|strong=\"G2532\"* understood|strong=\"G4441\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* from|strong=\"G1537\"* Cilicia|strong=\"G2791\"*, he|strong=\"G2532\"* said|strong=\"G1161\"*," + }, + { + "verseNum": 35, + "text": "“I|strong=\"G2532\"* will|strong=\"G2532\"* hear|strong=\"G1251\"* you|strong=\"G4771\"* fully when|strong=\"G3752\"* your|strong=\"G2532\"* accusers|strong=\"G2725\"* also|strong=\"G2532\"* arrive|strong=\"G3854\"*.” He|strong=\"G2532\"* commanded|strong=\"G2753\"* that|strong=\"G3588\"* he|strong=\"G2532\"* be|strong=\"G2532\"* kept|strong=\"G5442\"* in|strong=\"G1722\"* Herod|strong=\"G2264\"*’s palace|strong=\"G4232\"*." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* five|strong=\"G4002\"* days|strong=\"G2250\"*, the|strong=\"G2532\"* high|strong=\"G2532\"* priest, Ananias, came|strong=\"G2597\"* down|strong=\"G2597\"* with|strong=\"G3326\"* certain|strong=\"G5100\"* elders|strong=\"G4245\"* and|strong=\"G2532\"* an|strong=\"G2532\"* orator|strong=\"G4489\"*, one|strong=\"G5100\"* Tertullus|strong=\"G5061\"*. They|strong=\"G2532\"* informed|strong=\"G1718\"* the|strong=\"G2532\"* governor|strong=\"G2232\"* against|strong=\"G2596\"* Paul|strong=\"G3972\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* was|strong=\"G1096\"* called|strong=\"G2564\"*, Tertullus|strong=\"G5061\"* began|strong=\"G1096\"* to|strong=\"G2532\"* accuse|strong=\"G2723\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Seeing|strong=\"G1223\"* that|strong=\"G3588\"* by|strong=\"G1223\"* you|strong=\"G4771\"* we|strong=\"G2532\"* enjoy|strong=\"G5177\"* much|strong=\"G4183\"* peace|strong=\"G1515\"*, and|strong=\"G2532\"* that|strong=\"G3588\"* prosperity is|strong=\"G3588\"* coming|strong=\"G1096\"* to|strong=\"G2532\"* this|strong=\"G3588\"* nation|strong=\"G1484\"* by|strong=\"G1223\"* your|strong=\"G4674\"* foresight|strong=\"G4307\"*," + }, + { + "verseNum": 3, + "text": "we|strong=\"G2532\"* accept it|strong=\"G2532\"* in|strong=\"G2532\"* all|strong=\"G3956\"* ways and|strong=\"G2532\"* in|strong=\"G2532\"* all|strong=\"G3956\"* places|strong=\"G3837\"*, most|strong=\"G4183\"* excellent|strong=\"G2903\"* Felix|strong=\"G5344\"*, with|strong=\"G3326\"* all|strong=\"G3956\"* thankfulness|strong=\"G2169\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* that|strong=\"G2443\"* I|strong=\"G1473\"* don’t|strong=\"G3588\"* delay|strong=\"G1465\"* you|strong=\"G4771\"*, I|strong=\"G1473\"* entreat|strong=\"G3870\"* you|strong=\"G4771\"* to|strong=\"G2443\"* bear|strong=\"G2443\"* with|strong=\"G1909\"* us|strong=\"G2249\"* and|strong=\"G1161\"* hear a|strong=\"G1909\"* few words|strong=\"G4935\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* have|strong=\"G2532\"* found|strong=\"G2147\"* this|strong=\"G3778\"* man|strong=\"G3778\"* to|strong=\"G2532\"* be|strong=\"G2532\"* a|strong=\"G2532\"* plague, an|strong=\"G2532\"* instigator of|strong=\"G2532\"* insurrections among|strong=\"G2596\"* all|strong=\"G3956\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* throughout|strong=\"G2596\"* the|strong=\"G2532\"* world|strong=\"G3625\"*, and|strong=\"G2532\"* a|strong=\"G2532\"* ringleader|strong=\"G4414\"* of|strong=\"G2532\"* the|strong=\"G2532\"* sect of|strong=\"G2532\"* the|strong=\"G2532\"* Nazarenes|strong=\"G3480\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* even|strong=\"G2532\"* tried|strong=\"G3985\"* to|strong=\"G2532\"* profane the|strong=\"G2532\"* temple|strong=\"G2411\"*, and|strong=\"G2532\"* we|strong=\"G3739\"* arrested|strong=\"G2902\"* him|strong=\"G3588\"*.+ 24:6 TR adds “We wanted to judge him according to our law,”*" + }, + { + "verseNum": 7, + "text": "+ 24:7 TR adds “but the commanding officer, Lysias, came by and with great violence took him out of our hands,”*" + }, + { + "verseNum": 8, + "text": "+ 24:8 TR adds “commanding his accusers to come to you.”*By|strong=\"G3844\"* examining him|strong=\"G3739\"* yourself you|strong=\"G3739\"* may|strong=\"G1410\"* ascertain|strong=\"G1921\"* all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"* of|strong=\"G4012\"* which|strong=\"G3739\"* we|strong=\"G2249\"* accuse|strong=\"G2723\"* him|strong=\"G3739\"*.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"G2532\"* Jews|strong=\"G2453\"* also|strong=\"G2532\"* joined|strong=\"G4934\"* in|strong=\"G2532\"* the|strong=\"G2532\"* attack, affirming that|strong=\"G3588\"* these|strong=\"G3778\"* things|strong=\"G3778\"* were|strong=\"G3588\"* so|strong=\"G3779\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"G1510\"* the|strong=\"G1537\"* governor|strong=\"G2232\"* had|strong=\"G3972\"* beckoned|strong=\"G3506\"* to|strong=\"G3004\"* him|strong=\"G3588\"* to|strong=\"G3004\"* speak|strong=\"G3004\"*, Paul|strong=\"G3972\"* answered|strong=\"G3004\"*, “Because|strong=\"G1537\"* I|strong=\"G3778\"* know|strong=\"G1987\"* that|strong=\"G3588\"* you|strong=\"G4771\"* have|strong=\"G1510\"* been|strong=\"G1510\"* a|strong=\"G1510\"* judge|strong=\"G2923\"* of|strong=\"G1537\"* this|strong=\"G3778\"* nation|strong=\"G1484\"* for|strong=\"G4012\"* many|strong=\"G4183\"* years|strong=\"G2094\"*, I|strong=\"G3778\"* cheerfully|strong=\"G2115\"* make my|strong=\"G1683\"* defense," + }, + { + "verseNum": 11, + "text": "seeing|strong=\"G3754\"* that|strong=\"G3754\"* you|strong=\"G4771\"* can|strong=\"G1410\"* verify|strong=\"G1921\"* that|strong=\"G3754\"* it|strong=\"G3754\"* is|strong=\"G1510\"* not|strong=\"G3756\"* more|strong=\"G4119\"* than|strong=\"G4183\"* twelve|strong=\"G1427\"* days|strong=\"G2250\"* since|strong=\"G3754\"* I|strong=\"G1473\"* went|strong=\"G3739\"* up|strong=\"G1519\"* to|strong=\"G1519\"* worship|strong=\"G4352\"* at|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 12, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* find|strong=\"G2147\"* me|strong=\"G1473\"* disputing|strong=\"G1256\"* with|strong=\"G1722\"* anyone|strong=\"G5100\"* or|strong=\"G2228\"* stirring up|strong=\"G2532\"* a|strong=\"G2532\"* crowd|strong=\"G3793\"*, either|strong=\"G2228\"* in|strong=\"G1722\"* the|strong=\"G1722\"* synagogues|strong=\"G4864\"* or|strong=\"G2228\"* in|strong=\"G1722\"* the|strong=\"G1722\"* city|strong=\"G4172\"*." + }, + { + "verseNum": 13, + "text": "Nor|strong=\"G3761\"* can|strong=\"G1410\"* they|strong=\"G3739\"* prove|strong=\"G3936\"* to|strong=\"G1410\"* you|strong=\"G4771\"* the|strong=\"G3739\"* things|strong=\"G3739\"* of|strong=\"G4012\"* which|strong=\"G3739\"* they|strong=\"G3739\"* now|strong=\"G3570\"* accuse|strong=\"G2723\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* this|strong=\"G3778\"* I|strong=\"G3739\"* confess|strong=\"G3670\"* to|strong=\"G2532\"* you|strong=\"G4771\"*, that|strong=\"G3754\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* Way|strong=\"G3598\"*, which|strong=\"G3739\"* they|strong=\"G2532\"* call|strong=\"G3004\"* a|strong=\"G2532\"* sect, so|strong=\"G3779\"* I|strong=\"G3739\"* serve|strong=\"G3000\"* the|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G2316\"* our|strong=\"G2316\"* fathers|strong=\"G3971\"*, believing|strong=\"G4100\"* all|strong=\"G3956\"* things|strong=\"G3956\"* which|strong=\"G3739\"* are|strong=\"G3588\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, and|strong=\"G2532\"* which|strong=\"G3739\"* are|strong=\"G3588\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"*;" + }, + { + "verseNum": 15, + "text": "having|strong=\"G2192\"* hope|strong=\"G1680\"* toward|strong=\"G1519\"* God|strong=\"G2316\"*, which|strong=\"G3739\"* these|strong=\"G3778\"* also|strong=\"G2532\"* themselves|strong=\"G1519\"* look for|strong=\"G1519\"*, that|strong=\"G3739\"* there|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G1510\"* a|strong=\"G2192\"* resurrection of|strong=\"G2316\"* the|strong=\"G2532\"* dead, both|strong=\"G2532\"* of|strong=\"G2316\"* the|strong=\"G2532\"* just|strong=\"G1342\"* and|strong=\"G2532\"* unjust." + }, + { + "verseNum": 16, + "text": "In|strong=\"G1722\"* this|strong=\"G3778\"* I|strong=\"G2532\"* also|strong=\"G2532\"* practice always|strong=\"G3956\"* having|strong=\"G2192\"* a|strong=\"G2192\"* conscience|strong=\"G4893\"* void of|strong=\"G1223\"* offense toward|strong=\"G4314\"* God|strong=\"G2316\"* and|strong=\"G2532\"* men|strong=\"G3956\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"G1161\"* after|strong=\"G1161\"* some|strong=\"G3588\"* years|strong=\"G2094\"*, I|strong=\"G1473\"* came|strong=\"G3854\"* to|strong=\"G1519\"* bring|strong=\"G4160\"* gifts|strong=\"G1654\"* for|strong=\"G1519\"* the|strong=\"G2532\"* needy to|strong=\"G1519\"* my|strong=\"G1473\"* nation|strong=\"G1484\"*, and|strong=\"G2532\"* offerings|strong=\"G4376\"*;" + }, + { + "verseNum": 18, + "text": "amid|strong=\"G3326\"* which|strong=\"G3739\"* certain|strong=\"G5100\"* Jews|strong=\"G2453\"* from|strong=\"G3756\"* Asia|strong=\"G3588\"* found|strong=\"G2147\"* me|strong=\"G1473\"* purified in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, not|strong=\"G3756\"* with|strong=\"G3326\"* a|strong=\"G1722\"* mob|strong=\"G3793\"*, nor|strong=\"G3761\"* with|strong=\"G3326\"* turmoil." + }, + { + "verseNum": 19, + "text": "They|strong=\"G2532\"* ought|strong=\"G1163\"* to|strong=\"G4314\"* have|strong=\"G2192\"* been|strong=\"G2192\"* here|strong=\"G3918\"* before|strong=\"G1909\"* you|strong=\"G4771\"* and|strong=\"G2532\"* to|strong=\"G4314\"* make|strong=\"G2532\"* accusation|strong=\"G2723\"* if|strong=\"G1487\"* they|strong=\"G2532\"* had|strong=\"G2192\"* anything|strong=\"G5100\"* against|strong=\"G1909\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 20, + "text": "Or|strong=\"G2228\"* else|strong=\"G2228\"* let|strong=\"G2228\"* these|strong=\"G3778\"* men|strong=\"G3778\"* themselves|strong=\"G3778\"* say|strong=\"G3004\"* what|strong=\"G5101\"* injustice they|strong=\"G3588\"* found|strong=\"G2147\"* in|strong=\"G1909\"* me|strong=\"G1473\"* when|strong=\"G2147\"* I|strong=\"G1473\"* stood|strong=\"G2476\"* before|strong=\"G1909\"* the|strong=\"G1909\"* council|strong=\"G4892\"*," + }, + { + "verseNum": 21, + "text": "unless it|strong=\"G3754\"* is|strong=\"G3778\"* for|strong=\"G3754\"* this|strong=\"G3778\"* one|strong=\"G1520\"* thing|strong=\"G1520\"* that|strong=\"G3754\"* I|strong=\"G1473\"* cried|strong=\"G2896\"* standing|strong=\"G2476\"* among|strong=\"G1722\"* them|strong=\"G1722\"*, ‘Concerning|strong=\"G4012\"* the|strong=\"G1722\"* resurrection of|strong=\"G4012\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* I|strong=\"G1473\"* am|strong=\"G1473\"* being|strong=\"G1722\"* judged|strong=\"G2919\"* before|strong=\"G1909\"* you|strong=\"G5210\"* today|strong=\"G4594\"*!’”" + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* Felix|strong=\"G5344\"*, having|strong=\"G1492\"* more|strong=\"G1492\"* exact knowledge|strong=\"G1492\"* concerning|strong=\"G4012\"* the|strong=\"G1161\"* Way|strong=\"G3598\"*, deferred them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “When|strong=\"G3752\"* Lysias|strong=\"G3079\"*, the|strong=\"G1161\"* commanding officer, comes|strong=\"G2597\"* down|strong=\"G2597\"*, I|strong=\"G1161\"* will|strong=\"G3004\"* decide|strong=\"G1231\"* your|strong=\"G3708\"* case|strong=\"G3588\"*.”" + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* ordered|strong=\"G1299\"* the|strong=\"G2532\"* centurion|strong=\"G1543\"* that|strong=\"G3588\"* Paul|strong=\"G3588\"* should|strong=\"G3588\"* be|strong=\"G2532\"* kept|strong=\"G5083\"* in|strong=\"G2532\"* custody|strong=\"G5083\"* and|strong=\"G2532\"* should|strong=\"G3588\"* have|strong=\"G2192\"* some|strong=\"G3588\"* privileges, and|strong=\"G2532\"* not|strong=\"G3367\"* to|strong=\"G2532\"* forbid|strong=\"G2967\"* any|strong=\"G3367\"* of|strong=\"G2532\"* his|strong=\"G2398\"* friends|strong=\"G2398\"* to|strong=\"G2532\"* serve|strong=\"G2192\"* him|strong=\"G3588\"* or|strong=\"G2532\"* to|strong=\"G2532\"* visit him|strong=\"G3588\"*." + }, + { + "verseNum": 24, + "text": "After|strong=\"G3326\"* some|strong=\"G5100\"* days|strong=\"G2250\"*, Felix|strong=\"G5344\"* came|strong=\"G3854\"* with|strong=\"G3326\"* Drusilla|strong=\"G1409\"* his|strong=\"G1519\"* wife|strong=\"G1135\"*, who|strong=\"G3588\"* was|strong=\"G1510\"* a|strong=\"G2532\"* Jewess|strong=\"G2453\"*, and|strong=\"G2532\"* sent|strong=\"G3343\"* for|strong=\"G1519\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* heard him|strong=\"G3588\"* concerning|strong=\"G4012\"* the|strong=\"G2532\"* faith|strong=\"G4102\"* in|strong=\"G1519\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 25, + "text": "As|strong=\"G1161\"* he|strong=\"G2532\"* reasoned|strong=\"G1256\"* about|strong=\"G4012\"* righteousness|strong=\"G1343\"*, self-control|strong=\"G1466\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* judgment|strong=\"G2917\"* to|strong=\"G2532\"* come|strong=\"G1096\"*, Felix|strong=\"G5344\"* was|strong=\"G1096\"* terrified|strong=\"G1719\"*, and|strong=\"G2532\"* answered, “Go|strong=\"G4198\"* your|strong=\"G2192\"* way|strong=\"G4198\"* for|strong=\"G4012\"* this|strong=\"G3588\"* time|strong=\"G2540\"*, and|strong=\"G2532\"* when|strong=\"G1161\"* it|strong=\"G2532\"* is|strong=\"G3588\"* convenient for|strong=\"G4012\"* me|strong=\"G2192\"*, I|strong=\"G2532\"* will|strong=\"G3195\"* summon|strong=\"G3333\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 26, + "text": "Meanwhile, he|strong=\"G2532\"* also|strong=\"G2532\"* hoped|strong=\"G1679\"* that|strong=\"G3754\"* money|strong=\"G5536\"* would|strong=\"G2532\"* be|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G3588\"* by|strong=\"G5259\"* Paul|strong=\"G3972\"*, that|strong=\"G3754\"* he|strong=\"G2532\"* might|strong=\"G2532\"* release him|strong=\"G3588\"*. Therefore|strong=\"G1352\"* also|strong=\"G2532\"* he|strong=\"G2532\"* sent|strong=\"G3343\"* for|strong=\"G3754\"* him|strong=\"G3588\"* more|strong=\"G2532\"* often|strong=\"G4437\"* and|strong=\"G2532\"* talked|strong=\"G3656\"* with|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* two|strong=\"G1333\"* years|strong=\"G1333\"* were|strong=\"G3588\"* fulfilled|strong=\"G4137\"*, Felix|strong=\"G5344\"* was|strong=\"G3588\"* succeeded|strong=\"G1240\"* by|strong=\"G2453\"* Porcius|strong=\"G4201\"* Festus|strong=\"G5347\"*, and|strong=\"G1161\"* desiring|strong=\"G2309\"* to|strong=\"G2309\"* gain favor|strong=\"G5485\"* with|strong=\"G4137\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"*, Felix|strong=\"G5344\"* left|strong=\"G2641\"* Paul|strong=\"G3972\"* in|strong=\"G1161\"* bonds|strong=\"G1210\"*." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Festus|strong=\"G5347\"* therefore|strong=\"G3767\"*, having|strong=\"G3767\"* come|strong=\"G1910\"* into|strong=\"G1519\"* the|strong=\"G1519\"* province|strong=\"G1885\"*, after|strong=\"G3326\"* three|strong=\"G5140\"* days|strong=\"G2250\"* went|strong=\"G3767\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"* from|strong=\"G3588\"* Caesarea|strong=\"G2542\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest and|strong=\"G2532\"* the|strong=\"G2532\"* principal men|strong=\"G4413\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* informed|strong=\"G1718\"* him|strong=\"G3588\"* against|strong=\"G2596\"* Paul|strong=\"G3972\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 3, + "text": "asking a|strong=\"G1519\"* favor|strong=\"G5485\"* against|strong=\"G2596\"* him|strong=\"G3588\"*, that|strong=\"G3588\"* he|strong=\"G3588\"* would|strong=\"G5485\"* summon|strong=\"G3343\"* him|strong=\"G3588\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*, plotting to|strong=\"G1519\"* kill him|strong=\"G3588\"* on|strong=\"G1519\"* the|strong=\"G1519\"* way|strong=\"G3598\"*." + }, + { + "verseNum": 4, + "text": "However|strong=\"G1161\"* Festus|strong=\"G5347\"* answered that|strong=\"G3588\"* Paul|strong=\"G3972\"* should|strong=\"G3195\"* be|strong=\"G3195\"* kept|strong=\"G5083\"* in|strong=\"G1722\"* custody|strong=\"G5083\"* at|strong=\"G1722\"* Caesarea|strong=\"G2542\"*, and|strong=\"G1161\"* that|strong=\"G3588\"* he|strong=\"G1161\"* himself|strong=\"G1438\"* was|strong=\"G3588\"* about|strong=\"G3195\"* to|strong=\"G1519\"* depart|strong=\"G1607\"* shortly|strong=\"G5034\"*." + }, + { + "verseNum": 5, + "text": "“Let|strong=\"G1510\"* them|strong=\"G3588\"* therefore|strong=\"G3767\"*”, he|strong=\"G3588\"* said|strong=\"G5346\"*, “that|strong=\"G3588\"* are|strong=\"G1510\"* in|strong=\"G1722\"* power|strong=\"G1415\"* among|strong=\"G1722\"* you|strong=\"G5210\"* go|strong=\"G4782\"* down with|strong=\"G1722\"* me, and|strong=\"G3767\"* if|strong=\"G1487\"* there|strong=\"G1510\"* is|strong=\"G1510\"* anything|strong=\"G5100\"* wrong in|strong=\"G1722\"* the|strong=\"G1722\"* man|strong=\"G5100\"*, let|strong=\"G1510\"* them|strong=\"G3588\"* accuse|strong=\"G2723\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 6, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G3972\"* stayed|strong=\"G1304\"* among|strong=\"G1722\"* them|strong=\"G3588\"* more|strong=\"G4119\"* than|strong=\"G2228\"* ten|strong=\"G1176\"* days|strong=\"G2250\"*, he|strong=\"G1161\"* went|strong=\"G2597\"* down|strong=\"G2597\"* to|strong=\"G1519\"* Caesarea|strong=\"G2542\"*, and|strong=\"G1161\"* on|strong=\"G1909\"* the|strong=\"G1722\"* next|strong=\"G1887\"* day|strong=\"G2250\"* he|strong=\"G1161\"* sat|strong=\"G2523\"* on|strong=\"G1909\"* the|strong=\"G1722\"* judgment|strong=\"G2250\"* seat|strong=\"G2523\"*, and|strong=\"G1161\"* commanded|strong=\"G2753\"* Paul|strong=\"G3972\"* to|strong=\"G1519\"* be|strong=\"G3756\"* brought|strong=\"G1161\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G3854\"*, the|strong=\"G2532\"* Jews|strong=\"G2453\"* who|strong=\"G3739\"* had|strong=\"G2532\"* come|strong=\"G3854\"* down|strong=\"G2597\"* from|strong=\"G2597\"* Jerusalem|strong=\"G2414\"* stood|strong=\"G3588\"* around|strong=\"G4026\"* him|strong=\"G3588\"*, bringing|strong=\"G2702\"* against|strong=\"G2702\"* him|strong=\"G3588\"* many|strong=\"G4183\"* and|strong=\"G2532\"* grievous charges which|strong=\"G3739\"* they|strong=\"G2532\"* could|strong=\"G2480\"* not|strong=\"G3756\"* prove," + }, + { + "verseNum": 8, + "text": "while|strong=\"G3754\"* he|strong=\"G3754\"* said|strong=\"G3972\"* in|strong=\"G1519\"* his|strong=\"G1519\"* defense, “Neither|strong=\"G3777\"* against|strong=\"G1519\"* the|strong=\"G1519\"* law|strong=\"G3551\"* of|strong=\"G3551\"* the|strong=\"G1519\"* Jews|strong=\"G2453\"*, nor|strong=\"G3777\"* against|strong=\"G1519\"* the|strong=\"G1519\"* temple|strong=\"G2411\"*, nor|strong=\"G3777\"* against|strong=\"G1519\"* Caesar|strong=\"G2541\"*, have|strong=\"G3748\"* I|strong=\"G3754\"* sinned at|strong=\"G1519\"* all|strong=\"G3588\"*.”" + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* Festus|strong=\"G5347\"*, desiring|strong=\"G2309\"* to|strong=\"G1519\"* gain favor|strong=\"G5485\"* with|strong=\"G1909\"* the|strong=\"G1519\"* Jews|strong=\"G2453\"*, answered|strong=\"G3004\"* Paul|strong=\"G3972\"* and|strong=\"G1161\"* said|strong=\"G3004\"*, “Are|strong=\"G3588\"* you|strong=\"G3004\"* willing|strong=\"G2309\"* to|strong=\"G1519\"* go|strong=\"G2309\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"* and|strong=\"G1161\"* be|strong=\"G1519\"* judged|strong=\"G2919\"* by|strong=\"G1909\"* me|strong=\"G1473\"* there|strong=\"G1563\"* concerning|strong=\"G4012\"* these|strong=\"G3778\"* things|strong=\"G3778\"*?”" + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* Paul|strong=\"G3972\"* said|strong=\"G3004\"*, “I|strong=\"G1473\"* am|strong=\"G1510\"* standing|strong=\"G2476\"* before|strong=\"G1909\"* Caesar|strong=\"G2541\"*’s judgment|strong=\"G2919\"* seat, where|strong=\"G3757\"* I|strong=\"G1473\"* ought|strong=\"G1163\"* to|strong=\"G2532\"* be|strong=\"G1510\"* tried|strong=\"G2919\"*. I|strong=\"G1473\"* have|strong=\"G2532\"* done no|strong=\"G3762\"* wrong to|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, as|strong=\"G5613\"* you|strong=\"G4771\"* also|strong=\"G2532\"* know|strong=\"G1921\"* very|strong=\"G2532\"* well|strong=\"G2532\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1161\"* if|strong=\"G1487\"* I|strong=\"G1473\"* have|strong=\"G2532\"* done|strong=\"G4238\"* wrong and|strong=\"G2532\"* have|strong=\"G2532\"* committed|strong=\"G4238\"* anything|strong=\"G5100\"* worthy of|strong=\"G2532\"* death|strong=\"G2288\"*, I|strong=\"G1473\"* don’t|strong=\"G3588\"* refuse|strong=\"G3868\"* to|strong=\"G2532\"* die|strong=\"G2288\"*; but|strong=\"G1161\"* if|strong=\"G1487\"* none|strong=\"G3762\"* of|strong=\"G2532\"* those|strong=\"G3588\"* things|strong=\"G3778\"* is|strong=\"G1510\"* true|strong=\"G3588\"* that|strong=\"G3739\"* they|strong=\"G2532\"* accuse|strong=\"G2723\"* me|strong=\"G1473\"* of|strong=\"G2532\"*, no|strong=\"G3756\"* one|strong=\"G5100\"* can|strong=\"G1410\"* give|strong=\"G5483\"* me|strong=\"G1473\"* up|strong=\"G2532\"* to|strong=\"G2532\"* them|strong=\"G3588\"*. I|strong=\"G1473\"* appeal|strong=\"G1941\"* to|strong=\"G2532\"* Caesar|strong=\"G2541\"*!”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"G5119\"* Festus|strong=\"G5347\"*, when|strong=\"G5119\"* he|strong=\"G3588\"* had|strong=\"G3588\"* conferred|strong=\"G4824\"* with|strong=\"G3326\"* the|strong=\"G1909\"* council|strong=\"G4824\"*, answered, “You|strong=\"G1909\"* have|strong=\"G3588\"* appealed|strong=\"G1941\"* to|strong=\"G1909\"* Caesar|strong=\"G2541\"*. To|strong=\"G1909\"* Caesar|strong=\"G2541\"* you|strong=\"G1909\"* shall|strong=\"G3588\"* go|strong=\"G4198\"*.”" + }, + { + "verseNum": 13, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* some|strong=\"G5100\"* days|strong=\"G2250\"* had|strong=\"G2532\"* passed|strong=\"G3588\"*, King|strong=\"G3588\"* Agrippa and|strong=\"G2532\"* Bernice arrived|strong=\"G2658\"* at|strong=\"G1519\"* Caesarea|strong=\"G2542\"* and|strong=\"G2532\"* greeted Festus|strong=\"G5347\"*." + }, + { + "verseNum": 14, + "text": "As|strong=\"G5613\"* he|strong=\"G1161\"* stayed|strong=\"G1510\"* there|strong=\"G1563\"* many|strong=\"G4183\"* days|strong=\"G2250\"*, Festus|strong=\"G5347\"* laid|strong=\"G1563\"* Paul|strong=\"G3972\"*’s case|strong=\"G3588\"* before|strong=\"G2596\"* the|strong=\"G1161\"* king|strong=\"G3588\"*, saying|strong=\"G3004\"*, “There|strong=\"G1563\"* is|strong=\"G1510\"* a|strong=\"G5613\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* left|strong=\"G2641\"* a|strong=\"G5613\"* prisoner|strong=\"G1198\"* by|strong=\"G5259\"* Felix|strong=\"G5344\"*;" + }, + { + "verseNum": 15, + "text": "about|strong=\"G4012\"* whom|strong=\"G3739\"*, when|strong=\"G2532\"* I|strong=\"G1473\"* was|strong=\"G1096\"* at|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*, the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* of|strong=\"G4012\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* informed|strong=\"G1718\"* me|strong=\"G1473\"*, asking for|strong=\"G1519\"* a|strong=\"G1096\"* sentence|strong=\"G1473\"* against|strong=\"G2596\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"G3739\"* answered them|strong=\"G3588\"* that|strong=\"G3754\"* it|strong=\"G3754\"* is|strong=\"G1510\"* not|strong=\"G3756\"* the|strong=\"G2596\"* custom|strong=\"G1485\"* of|strong=\"G4012\"* the|strong=\"G2596\"* Romans|strong=\"G4514\"* to|strong=\"G4314\"* give|strong=\"G5483\"* up any|strong=\"G5100\"* man|strong=\"G5100\"* to|strong=\"G4314\"* destruction before|strong=\"G4250\"* the|strong=\"G2596\"* accused|strong=\"G2723\"* has|strong=\"G2192\"* met the|strong=\"G2596\"* accusers|strong=\"G2725\"* face|strong=\"G4383\"* to|strong=\"G4314\"* face|strong=\"G4383\"* and|strong=\"G5037\"* has|strong=\"G2192\"* had|strong=\"G2192\"* opportunity|strong=\"G5117\"* to|strong=\"G4314\"* make|strong=\"G2723\"* his|strong=\"G4012\"* defense concerning|strong=\"G4012\"* the|strong=\"G2596\"* matter|strong=\"G5100\"* laid against|strong=\"G2596\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "When|strong=\"G3767\"* therefore|strong=\"G3767\"* they|strong=\"G3588\"* had|strong=\"G3588\"* come|strong=\"G4905\"* together|strong=\"G4905\"* here|strong=\"G1759\"*, I|strong=\"G3767\"* didn’t|strong=\"G3588\"* delay, but|strong=\"G3767\"* on|strong=\"G1909\"* the|strong=\"G1909\"* next|strong=\"G1836\"* day|strong=\"G1836\"* sat|strong=\"G2523\"* on|strong=\"G1909\"* the|strong=\"G1909\"* judgment seat|strong=\"G2523\"* and|strong=\"G3767\"* commanded|strong=\"G2753\"* the|strong=\"G1909\"* man|strong=\"G3367\"* to|strong=\"G1909\"* be|strong=\"G3588\"* brought." + }, + { + "verseNum": 18, + "text": "When|strong=\"G3739\"* the|strong=\"G3588\"* accusers|strong=\"G2725\"* stood|strong=\"G2476\"* up|strong=\"G2476\"*, they|strong=\"G3588\"* brought|strong=\"G5342\"* no|strong=\"G3762\"* charges against|strong=\"G4012\"* him|strong=\"G3588\"* of|strong=\"G4012\"* such|strong=\"G3588\"* things|strong=\"G3588\"* as|strong=\"G3739\"* I|strong=\"G1473\"* supposed|strong=\"G5282\"*;" + }, + { + "verseNum": 19, + "text": "but|strong=\"G1161\"* had|strong=\"G2192\"* certain|strong=\"G5100\"* questions|strong=\"G2213\"* against|strong=\"G4314\"* him|strong=\"G3588\"* about|strong=\"G4012\"* their|strong=\"G2532\"* own|strong=\"G2398\"* religion|strong=\"G1175\"* and|strong=\"G2532\"* about|strong=\"G4012\"* one|strong=\"G5100\"* Jesus|strong=\"G2424\"*, who|strong=\"G3739\"* was|strong=\"G3588\"* dead|strong=\"G2348\"*, whom|strong=\"G3739\"* Paul|strong=\"G3972\"* affirmed|strong=\"G5335\"* to|strong=\"G4314\"* be|strong=\"G2532\"* alive|strong=\"G2198\"*." + }, + { + "verseNum": 20, + "text": "Being|strong=\"G1161\"* perplexed how|strong=\"G1161\"* to|strong=\"G1519\"* inquire concerning|strong=\"G4012\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, I|strong=\"G1473\"* asked|strong=\"G3004\"* whether|strong=\"G1487\"* he|strong=\"G1161\"* was|strong=\"G3588\"* willing|strong=\"G1014\"* to|strong=\"G1519\"* go|strong=\"G4198\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"* and|strong=\"G1161\"* there|strong=\"G1161\"* be|strong=\"G1519\"* judged|strong=\"G2919\"* concerning|strong=\"G4012\"* these|strong=\"G3778\"* matters." + }, + { + "verseNum": 21, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Paul|strong=\"G3972\"* had|strong=\"G3972\"* appealed|strong=\"G1941\"* to|strong=\"G1519\"* be|strong=\"G1519\"* kept|strong=\"G5083\"* for|strong=\"G1519\"* the|strong=\"G1519\"* decision|strong=\"G1233\"* of|strong=\"G3588\"* the|strong=\"G1519\"* emperor|strong=\"G4575\"*, I|strong=\"G3739\"* commanded|strong=\"G2753\"* him|strong=\"G3588\"* to|strong=\"G1519\"* be|strong=\"G1519\"* kept|strong=\"G5083\"* until|strong=\"G2193\"* I|strong=\"G3739\"* could|strong=\"G3588\"* send him|strong=\"G3588\"* to|strong=\"G1519\"* Caesar|strong=\"G2541\"*.”" + }, + { + "verseNum": 22, + "text": "Agrippa said|strong=\"G5346\"* to|strong=\"G4314\"* Festus|strong=\"G5347\"*, “I|strong=\"G2532\"* also|strong=\"G2532\"* would|strong=\"G1014\"* like|strong=\"G4314\"* to|strong=\"G4314\"* hear the|strong=\"G2532\"* man myself.”" + }, + { + "verseNum": 23, + "text": "So|strong=\"G3767\"* on|strong=\"G1519\"* the|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"*, when|strong=\"G2532\"* Agrippa and|strong=\"G2532\"* Bernice had|strong=\"G2532\"* come|strong=\"G2064\"* with|strong=\"G3326\"* great|strong=\"G4183\"* pomp|strong=\"G5325\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* place of|strong=\"G2532\"* hearing with|strong=\"G3326\"* the|strong=\"G2532\"* commanding|strong=\"G2753\"* officers and|strong=\"G2532\"* the|strong=\"G2532\"* principal|strong=\"G1851\"* men|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, at|strong=\"G1519\"* the|strong=\"G2532\"* command|strong=\"G2753\"* of|strong=\"G2532\"* Festus|strong=\"G5347\"*, Paul|strong=\"G3972\"* was|strong=\"G3588\"* brought|strong=\"G2064\"* in|strong=\"G1519\"*." + }, + { + "verseNum": 24, + "text": "Festus|strong=\"G5347\"* said|strong=\"G5346\"*, “King|strong=\"G3588\"* Agrippa, and|strong=\"G2532\"* all|strong=\"G3956\"* men|strong=\"G3956\"* who|strong=\"G3739\"* are|strong=\"G3588\"* here|strong=\"G1759\"* present|strong=\"G4840\"* with|strong=\"G1722\"* us|strong=\"G2249\"*, you|strong=\"G3739\"* see|strong=\"G2334\"* this|strong=\"G3778\"* man|strong=\"G3778\"* about|strong=\"G4012\"* whom|strong=\"G3739\"* all|strong=\"G3956\"* the|strong=\"G1722\"* multitude|strong=\"G4128\"* of|strong=\"G4012\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* petitioned me|strong=\"G1473\"*, both|strong=\"G2532\"* at|strong=\"G1722\"* Jerusalem|strong=\"G2414\"* and|strong=\"G2532\"* here|strong=\"G1759\"*, crying that|strong=\"G3739\"* he|strong=\"G2532\"* ought|strong=\"G1163\"* not|strong=\"G3361\"* to|strong=\"G2532\"* live|strong=\"G2198\"* any|strong=\"G3956\"* longer|strong=\"G3371\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* I|strong=\"G1473\"* found|strong=\"G2638\"* that|strong=\"G3588\"* he|strong=\"G1161\"* had|strong=\"G3588\"* committed|strong=\"G4238\"* nothing|strong=\"G3367\"* worthy of|strong=\"G3588\"* death|strong=\"G2288\"*, and|strong=\"G1161\"* as|strong=\"G1161\"* he|strong=\"G1161\"* himself appealed|strong=\"G1941\"* to|strong=\"G1161\"* the|strong=\"G1161\"* emperor|strong=\"G4575\"*, I|strong=\"G1473\"* determined|strong=\"G2919\"* to|strong=\"G1161\"* send|strong=\"G3992\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 26, + "text": "of|strong=\"G4012\"* whom|strong=\"G3739\"* I|strong=\"G3739\"* have|strong=\"G2192\"* no|strong=\"G3756\"* certain|strong=\"G5100\"* thing|strong=\"G5100\"* to|strong=\"G2532\"* write|strong=\"G1125\"* to|strong=\"G2532\"* my|strong=\"G3739\"* lord|strong=\"G2962\"*. Therefore|strong=\"G1352\"* I|strong=\"G3739\"* have|strong=\"G2192\"* brought|strong=\"G4254\"* him|strong=\"G3588\"* out|strong=\"G2532\"* before|strong=\"G1909\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* especially|strong=\"G3122\"* before|strong=\"G1909\"* you|strong=\"G5210\"*, King|strong=\"G3588\"* Agrippa, that|strong=\"G3739\"*, after|strong=\"G1909\"* examination I|strong=\"G3739\"* may|strong=\"G2532\"* have|strong=\"G2192\"* something|strong=\"G5100\"* to|strong=\"G2532\"* write|strong=\"G1125\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* seems|strong=\"G1380\"* to|strong=\"G2532\"* me|strong=\"G1473\"* unreasonable, in|strong=\"G2596\"* sending|strong=\"G3992\"* a|strong=\"G2532\"* prisoner|strong=\"G1198\"*, not|strong=\"G3361\"* to|strong=\"G2532\"* also|strong=\"G2532\"* specify the|strong=\"G2532\"* charges against|strong=\"G2596\"* him|strong=\"G3588\"*.”" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "Agrippa said|strong=\"G3004\"* to|strong=\"G4314\"* Paul|strong=\"G3972\"*, “You|strong=\"G4771\"* may|strong=\"G3004\"* speak|strong=\"G3004\"* for|strong=\"G5228\"* yourself|strong=\"G4572\"*.”" + }, + { + "verseNum": 2, + "text": "“I|strong=\"G3739\"* think|strong=\"G2233\"* myself|strong=\"G1683\"* happy|strong=\"G3107\"*, King Agrippa, that|strong=\"G3739\"* I|strong=\"G3739\"* am|strong=\"G3195\"* to|strong=\"G1909\"* make my|strong=\"G3956\"* defense before|strong=\"G1909\"* you|strong=\"G4771\"* today|strong=\"G4594\"* concerning|strong=\"G4012\"* all|strong=\"G3956\"* the|strong=\"G3956\"* things|strong=\"G3956\"* that|strong=\"G3739\"* I|strong=\"G3739\"* am|strong=\"G3195\"* accused|strong=\"G1458\"* by|strong=\"G5259\"* the|strong=\"G3956\"* Jews|strong=\"G2453\"*," + }, + { + "verseNum": 3, + "text": "especially|strong=\"G3122\"* because|strong=\"G2532\"* you|strong=\"G4771\"* are|strong=\"G1510\"* expert|strong=\"G1109\"* in|strong=\"G2596\"* all|strong=\"G3956\"* customs|strong=\"G1485\"* and|strong=\"G2532\"* questions|strong=\"G2213\"* which|strong=\"G3588\"* are|strong=\"G1510\"* among|strong=\"G2596\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*. Therefore|strong=\"G1352\"* I|strong=\"G1473\"* beg|strong=\"G1189\"* you|strong=\"G4771\"* to|strong=\"G2532\"* hear me|strong=\"G1473\"* patiently|strong=\"G3116\"*." + }, + { + "verseNum": 4, + "text": "“Indeed|strong=\"G3303\"*, all|strong=\"G3956\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* know|strong=\"G1492\"* my|strong=\"G1722\"* way|strong=\"G1722\"* of|strong=\"G1537\"* life from|strong=\"G1537\"* my|strong=\"G1722\"* youth|strong=\"G3503\"* up|strong=\"G1722\"*, which|strong=\"G3588\"* was|strong=\"G1096\"* from|strong=\"G1537\"* the|strong=\"G1722\"* beginning among|strong=\"G1722\"* my|strong=\"G1722\"* own nation|strong=\"G1484\"* and|strong=\"G5037\"* at|strong=\"G1722\"* Jerusalem|strong=\"G2414\"*;" + }, + { + "verseNum": 5, + "text": "having|strong=\"G3140\"* known|strong=\"G4267\"* me|strong=\"G1473\"* from|strong=\"G2596\"* the|strong=\"G2596\"* first|strong=\"G3588\"*, if|strong=\"G1437\"* they|strong=\"G3588\"* are|strong=\"G3588\"* willing|strong=\"G2309\"* to|strong=\"G2596\"* testify|strong=\"G3140\"*, that|strong=\"G3754\"* after|strong=\"G2596\"* the|strong=\"G2596\"* strictest sect of|strong=\"G2596\"* our|strong=\"G2251\"* religion|strong=\"G2356\"* I|strong=\"G1473\"* lived|strong=\"G2198\"* a|strong=\"G1437\"* Pharisee|strong=\"G5330\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"G3568\"* I|strong=\"G1473\"* stand|strong=\"G2476\"* here|strong=\"G1519\"* to|strong=\"G1519\"* be|strong=\"G1096\"* judged|strong=\"G2919\"* for|strong=\"G1519\"* the|strong=\"G2532\"* hope|strong=\"G1680\"* of|strong=\"G5259\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* made|strong=\"G1096\"* by|strong=\"G5259\"* God|strong=\"G2316\"* to|strong=\"G1519\"* our|strong=\"G2316\"* fathers|strong=\"G3962\"*," + }, + { + "verseNum": 7, + "text": "which|strong=\"G3739\"* our|strong=\"G2532\"* twelve|strong=\"G1429\"* tribes|strong=\"G1429\"*, earnestly|strong=\"G2532\"* serving|strong=\"G3000\"* night|strong=\"G3571\"* and|strong=\"G2532\"* day|strong=\"G2250\"*, hope|strong=\"G1680\"* to|strong=\"G1519\"* attain|strong=\"G2658\"*. Concerning|strong=\"G4012\"* this|strong=\"G3588\"* hope|strong=\"G1680\"* I|strong=\"G1473\"* am|strong=\"G1473\"* accused|strong=\"G1458\"* by|strong=\"G1722\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"*, King|strong=\"G3588\"* Agrippa!" + }, + { + "verseNum": 8, + "text": "Why|strong=\"G5101\"* is|strong=\"G3588\"* it|strong=\"G1487\"* judged|strong=\"G2919\"* incredible with|strong=\"G3844\"* you|strong=\"G5210\"* if|strong=\"G1487\"* God|strong=\"G2316\"* does|strong=\"G5101\"* raise|strong=\"G1453\"* the|strong=\"G3588\"* dead|strong=\"G3498\"*?" + }, + { + "verseNum": 9, + "text": "“I|strong=\"G1473\"* myself|strong=\"G1683\"* most|strong=\"G4183\"* certainly|strong=\"G3303\"* thought|strong=\"G1380\"* that|strong=\"G3588\"* I|strong=\"G1473\"* ought|strong=\"G1163\"* to|strong=\"G4314\"* do|strong=\"G4238\"* many|strong=\"G4183\"* things|strong=\"G3588\"* contrary|strong=\"G1727\"* to|strong=\"G4314\"* the|strong=\"G4314\"* name|strong=\"G3686\"* of|strong=\"G3686\"* Jesus|strong=\"G2424\"* of|strong=\"G3686\"* Nazareth|strong=\"G3480\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"G1473\"* also|strong=\"G2532\"* did|strong=\"G4160\"* this|strong=\"G3588\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2414\"*. I|strong=\"G1473\"* both|strong=\"G2532\"* shut|strong=\"G1473\"* up|strong=\"G2623\"* many|strong=\"G4183\"* of|strong=\"G2532\"* the|strong=\"G1722\"* saints in|strong=\"G1722\"* prisons|strong=\"G5438\"*, having|strong=\"G2532\"* received|strong=\"G2983\"* authority|strong=\"G1849\"* from|strong=\"G3844\"* the|strong=\"G1722\"* chief|strong=\"G2532\"* priests; and|strong=\"G2532\"* when|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* put|strong=\"G4160\"* to|strong=\"G2532\"* death I|strong=\"G1473\"* gave|strong=\"G4160\"* my|strong=\"G1722\"* vote|strong=\"G5586\"* against|strong=\"G1722\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "Punishing them|strong=\"G3588\"* often|strong=\"G4178\"* in|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G2532\"* synagogues|strong=\"G4864\"*, I|strong=\"G2532\"* tried to|strong=\"G1519\"* make|strong=\"G1519\"* them|strong=\"G3588\"* blaspheme. Being|strong=\"G2532\"* exceedingly|strong=\"G4057\"* enraged|strong=\"G1693\"* against|strong=\"G2596\"* them|strong=\"G3588\"*, I|strong=\"G2532\"* persecuted|strong=\"G1377\"* them|strong=\"G3588\"* even|strong=\"G2532\"* to|strong=\"G1519\"* foreign|strong=\"G1854\"* cities|strong=\"G4172\"*." + }, + { + "verseNum": 12, + "text": "“Whereupon|strong=\"G3739\"* as|strong=\"G1519\"* I|strong=\"G3739\"* traveled to|strong=\"G1519\"* Damascus|strong=\"G1154\"* with|strong=\"G3326\"* the|strong=\"G1722\"* authority|strong=\"G1849\"* and|strong=\"G2532\"* commission|strong=\"G2011\"* from|strong=\"G2532\"* the|strong=\"G1722\"* chief|strong=\"G2532\"* priests," + }, + { + "verseNum": 13, + "text": "at|strong=\"G2596\"* noon, O king|strong=\"G3588\"*, I|strong=\"G1473\"* saw|strong=\"G3708\"* on|strong=\"G5228\"* the|strong=\"G2532\"* way|strong=\"G3598\"* a|strong=\"G2532\"* light|strong=\"G5457\"* from|strong=\"G2532\"* the|strong=\"G2532\"* sky, brighter|strong=\"G2987\"* than|strong=\"G5228\"* the|strong=\"G2532\"* sun|strong=\"G2246\"*, shining|strong=\"G4034\"* around|strong=\"G4034\"* me|strong=\"G1473\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* traveled with|strong=\"G4862\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"G3004\"* we|strong=\"G2249\"* had|strong=\"G3588\"* all|strong=\"G3956\"* fallen|strong=\"G2667\"* to|strong=\"G1519\"* the|strong=\"G1519\"* earth|strong=\"G1093\"*, I|strong=\"G1473\"* heard a|strong=\"G1519\"* voice|strong=\"G5456\"* saying|strong=\"G3004\"* to|strong=\"G1519\"* me|strong=\"G1473\"* in|strong=\"G1519\"* the|strong=\"G1519\"* Hebrew|strong=\"G1446\"* language|strong=\"G1258\"*, ‘\\+w Saul|strong=\"G4549\"\\+w*, \\+w Saul|strong=\"G4549\"\\+w*, \\+w why|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w persecuting|strong=\"G1377\"\\+w* \\+w me|strong=\"G1473\"\\+w*? \\+w It|strong=\"G5101\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w hard|strong=\"G4642\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w kick|strong=\"G2979\"\\+w* \\+w against|strong=\"G4314\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w goads|strong=\"G2759\"\\+w*.’*" + }, + { + "verseNum": 15, + "text": "“I|strong=\"G1473\"* said|strong=\"G3004\"*, ‘Who|strong=\"G3739\"* are|strong=\"G1510\"* you|strong=\"G4771\"*, Lord|strong=\"G2962\"*?’" + }, + { + "verseNum": 16, + "text": "\\+w But|strong=\"G2532\"\\+w* arise, \\+w and|strong=\"G2532\"\\+w* \\+w stand|strong=\"G2476\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w feet|strong=\"G4228\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w appeared|strong=\"G3708\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w purpose|strong=\"G3739\"\\+w*: \\+w to|strong=\"G1519\"\\+w* \\+w appoint|strong=\"G4400\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w servant|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w witness|strong=\"G3144\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* reveal \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w*; *" + }, + { + "verseNum": 17, + "text": "\\+w delivering|strong=\"G1807\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w people|strong=\"G2992\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Gentiles|strong=\"G1484\"\\+w*, \\+w to|strong=\"G1519\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* send \\+w you|strong=\"G4771\"\\+w*, *" + }, + { + "verseNum": 18, + "text": "\\+w to|strong=\"G1519\"\\+w* open \\+w their|strong=\"G1438\"\\+w* \\+w eyes|strong=\"G3788\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w turn|strong=\"G1994\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w darkness|strong=\"G4655\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w power|strong=\"G1849\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w Satan|strong=\"G4567\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w receive|strong=\"G2983\"\\+w* remission \\+w of|strong=\"G2316\"\\+w* sins \\+w and|strong=\"G2532\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w inheritance|strong=\"G2819\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* sanctified \\+w by|strong=\"G1722\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*.’*" + }, + { + "verseNum": 19, + "text": "“Therefore|strong=\"G3606\"*, King|strong=\"G3588\"* Agrippa, I|strong=\"G1096\"* was|strong=\"G1096\"* not|strong=\"G3756\"* disobedient to|strong=\"G3756\"* the|strong=\"G3588\"* heavenly|strong=\"G3770\"* vision|strong=\"G3701\"*," + }, + { + "verseNum": 20, + "text": "but|strong=\"G2532\"* declared first|strong=\"G4413\"* to|strong=\"G2532\"* them|strong=\"G3588\"* of|strong=\"G2316\"* Damascus|strong=\"G1154\"*, at|strong=\"G1722\"* Jerusalem|strong=\"G2414\"*, and|strong=\"G2532\"* throughout|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* country|strong=\"G5561\"* of|strong=\"G2316\"* Judea|strong=\"G2449\"*, and|strong=\"G2532\"* also|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"*, that|strong=\"G3588\"* they|strong=\"G2532\"* should|strong=\"G2316\"* repent|strong=\"G3340\"* and|strong=\"G2532\"* turn|strong=\"G1994\"* to|strong=\"G2532\"* God|strong=\"G2316\"*, doing|strong=\"G4238\"* works|strong=\"G2041\"* worthy of|strong=\"G2316\"* repentance|strong=\"G3341\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"G1752\"* this|strong=\"G3778\"* reason|strong=\"G1752\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* seized|strong=\"G4815\"* me|strong=\"G1473\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* and|strong=\"G2453\"* tried|strong=\"G3987\"* to|strong=\"G1722\"* kill|strong=\"G1315\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 22, + "text": "Having|strong=\"G2532\"* therefore|strong=\"G3767\"* obtained|strong=\"G5177\"* the|strong=\"G2532\"* help|strong=\"G1947\"* that|strong=\"G3739\"* is|strong=\"G3588\"* from|strong=\"G2532\"* God|strong=\"G2316\"*, I|strong=\"G3739\"* stand|strong=\"G2476\"* to|strong=\"G2532\"* this|strong=\"G3778\"* day|strong=\"G2250\"* testifying|strong=\"G3143\"* both|strong=\"G2532\"* to|strong=\"G2532\"* small|strong=\"G3398\"* and|strong=\"G2532\"* great|strong=\"G3173\"*, saying|strong=\"G3004\"* nothing|strong=\"G3762\"* but|strong=\"G2532\"* what|strong=\"G3739\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"* and|strong=\"G2532\"* Moses|strong=\"G3475\"* said|strong=\"G3004\"* would|strong=\"G3195\"* happen|strong=\"G1096\"*," + }, + { + "verseNum": 23, + "text": "how the|strong=\"G2532\"* Christ|strong=\"G5547\"* must|strong=\"G5547\"* suffer|strong=\"G3805\"*, and|strong=\"G2532\"* how, by|strong=\"G1537\"* the|strong=\"G2532\"* resurrection of|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, he|strong=\"G2532\"* would|strong=\"G3195\"* be|strong=\"G2532\"* first|strong=\"G4413\"* to|strong=\"G2532\"* proclaim|strong=\"G2605\"* light|strong=\"G5457\"* both|strong=\"G2532\"* to|strong=\"G2532\"* these|strong=\"G3588\"* people|strong=\"G2992\"* and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*.”" + }, + { + "verseNum": 24, + "text": "As|strong=\"G1519\"* he|strong=\"G1161\"* thus|strong=\"G1519\"* made|strong=\"G1161\"* his|strong=\"G1519\"* defense, Festus|strong=\"G5347\"* said|strong=\"G5346\"* with|strong=\"G1519\"* a|strong=\"G1519\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, “Paul|strong=\"G3972\"*, you|strong=\"G4771\"* are|strong=\"G3588\"* crazy! Your|strong=\"G3588\"* great|strong=\"G3173\"* learning|strong=\"G1121\"* is|strong=\"G3588\"* driving|strong=\"G4062\"* you|strong=\"G4771\"* insane|strong=\"G3105\"*!”" + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* said|strong=\"G5346\"*, “I|strong=\"G2532\"* am|strong=\"G2532\"* not|strong=\"G3756\"* crazy, most|strong=\"G2903\"* excellent|strong=\"G2903\"* Festus|strong=\"G5347\"*, but|strong=\"G1161\"* boldly declare words|strong=\"G4487\"* of|strong=\"G2532\"* truth and|strong=\"G2532\"* reasonableness." + }, + { + "verseNum": 26, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* king|strong=\"G3588\"* knows|strong=\"G1987\"* of|strong=\"G4012\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, to|strong=\"G4314\"* whom|strong=\"G3739\"* also|strong=\"G2532\"* I|strong=\"G3739\"* speak|strong=\"G2980\"* freely|strong=\"G3955\"*. For|strong=\"G1063\"* I|strong=\"G3739\"* am|strong=\"G1510\"* persuaded|strong=\"G3982\"* that|strong=\"G3739\"* none|strong=\"G3762\"* of|strong=\"G4012\"* these|strong=\"G3778\"* things|strong=\"G3778\"* is|strong=\"G1510\"* hidden from|strong=\"G2532\"* him|strong=\"G3588\"*, for|strong=\"G1063\"* this|strong=\"G3778\"* has|strong=\"G3739\"* not|strong=\"G3756\"* been|strong=\"G1510\"* done|strong=\"G4238\"* in|strong=\"G1722\"* a|strong=\"G2532\"* corner|strong=\"G1137\"*." + }, + { + "verseNum": 27, + "text": "King|strong=\"G3588\"* Agrippa, do|strong=\"G1492\"* you|strong=\"G3754\"* believe|strong=\"G4100\"* the|strong=\"G3588\"* prophets|strong=\"G4396\"*? I|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G3754\"* believe|strong=\"G4100\"*.”" + }, + { + "verseNum": 28, + "text": "Agrippa said|strong=\"G1161\"* to|strong=\"G4314\"* Paul|strong=\"G3972\"*, “With|strong=\"G1722\"* a|strong=\"G1722\"* little|strong=\"G3641\"* persuasion are|strong=\"G3588\"* you|strong=\"G1722\"* trying to|strong=\"G4314\"* make|strong=\"G4160\"* me|strong=\"G1473\"* a|strong=\"G1722\"* Christian|strong=\"G5546\"*?”" + }, + { + "verseNum": 29, + "text": "Paul|strong=\"G3972\"* said|strong=\"G1161\"*, “I|strong=\"G1473\"* pray|strong=\"G2172\"* to|strong=\"G2532\"* God|strong=\"G2316\"*, that|strong=\"G3588\"* whether|strong=\"G2532\"* with|strong=\"G1722\"* little|strong=\"G3641\"* or|strong=\"G2532\"* with|strong=\"G1722\"* much|strong=\"G3173\"*, not|strong=\"G3756\"* only|strong=\"G3440\"* you|strong=\"G4771\"*, but|strong=\"G1161\"* also|strong=\"G2532\"* all|strong=\"G3956\"* that|strong=\"G3588\"* hear me|strong=\"G1473\"* today|strong=\"G4594\"*, might|strong=\"G2532\"* become|strong=\"G1096\"* such|strong=\"G5108\"* as|strong=\"G1722\"* I|strong=\"G1473\"* am|strong=\"G1510\"*, except|strong=\"G3924\"* for|strong=\"G1161\"* these|strong=\"G3778\"* bonds|strong=\"G1199\"*.”" + }, + { + "verseNum": 30, + "text": "The|strong=\"G2532\"* king|strong=\"G3588\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* with|strong=\"G2532\"* the|strong=\"G2532\"* governor|strong=\"G2232\"* and|strong=\"G2532\"* Bernice, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G4775\"* with|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 31, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* withdrawn, they|strong=\"G2532\"* spoke|strong=\"G2980\"* to|strong=\"G4314\"* one|strong=\"G5100\"* another|strong=\"G5100\"*, saying|strong=\"G3004\"*, “This|strong=\"G3778\"* man|strong=\"G5100\"* does|strong=\"G2980\"* nothing|strong=\"G3762\"* worthy of|strong=\"G2532\"* death|strong=\"G2288\"* or|strong=\"G2228\"* of|strong=\"G2532\"* bonds|strong=\"G1199\"*.”" + }, + { + "verseNum": 32, + "text": "Agrippa said|strong=\"G5346\"* to|strong=\"G1410\"* Festus|strong=\"G5347\"*, “This|strong=\"G3778\"* man|strong=\"G3778\"* might|strong=\"G1410\"* have|strong=\"G3588\"* been|strong=\"G3361\"* set free if|strong=\"G1487\"* he|strong=\"G1161\"* had|strong=\"G3588\"* not|strong=\"G3361\"* appealed|strong=\"G1941\"* to|strong=\"G1410\"* Caesar|strong=\"G2541\"*.”" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G1161\"* it|strong=\"G2532\"* was|strong=\"G3588\"* determined|strong=\"G2919\"* that|strong=\"G3588\"* we|strong=\"G2249\"* should|strong=\"G5100\"* sail for|strong=\"G1519\"* Italy|strong=\"G2482\"*, they|strong=\"G2532\"* delivered|strong=\"G3860\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* certain|strong=\"G5100\"* other|strong=\"G2087\"* prisoners|strong=\"G1202\"* to|strong=\"G1519\"* a|strong=\"G5613\"* centurion|strong=\"G1543\"* named|strong=\"G3686\"* Julius|strong=\"G2457\"*, of|strong=\"G2532\"* the|strong=\"G2532\"* Augustan|strong=\"G4575\"* band|strong=\"G4686\"*." + }, + { + "verseNum": 2, + "text": "Embarking|strong=\"G1910\"* in|strong=\"G1519\"* a|strong=\"G1519\"* ship|strong=\"G4143\"* of|strong=\"G2596\"* Adramyttium, which|strong=\"G3588\"* was|strong=\"G1510\"* about|strong=\"G3195\"* to|strong=\"G1519\"* sail|strong=\"G4126\"* to|strong=\"G1519\"* places|strong=\"G5117\"* on|strong=\"G1519\"* the|strong=\"G1519\"* coast|strong=\"G2596\"* of|strong=\"G2596\"* Asia|strong=\"G3588\"*, we|strong=\"G2249\"* put|strong=\"G1519\"* to|strong=\"G1519\"* sea, Aristarchus, a|strong=\"G1519\"* Macedonian|strong=\"G3110\"* of|strong=\"G2596\"* Thessalonica|strong=\"G2331\"* being|strong=\"G1510\"* with|strong=\"G4862\"* us|strong=\"G1519\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"G1519\"* next|strong=\"G2087\"* day|strong=\"G3588\"*, we|strong=\"G4314\"* touched|strong=\"G2609\"* at|strong=\"G1519\"* Sidon|strong=\"G4605\"*. Julius|strong=\"G2457\"* treated|strong=\"G5530\"* Paul|strong=\"G3972\"* kindly|strong=\"G5364\"* and|strong=\"G5037\"* gave|strong=\"G2010\"* him|strong=\"G3588\"* permission|strong=\"G2010\"* to|strong=\"G1519\"* go|strong=\"G4198\"* to|strong=\"G1519\"* his|strong=\"G1519\"* friends|strong=\"G5384\"* and|strong=\"G5037\"* refresh himself|strong=\"G1519\"*." + }, + { + "verseNum": 4, + "text": "Putting to|strong=\"G1510\"* sea from|strong=\"G3588\"* there|strong=\"G2547\"*, we|strong=\"G1510\"* sailed|strong=\"G5284\"* under|strong=\"G5284\"* the|strong=\"G1223\"* lee of|strong=\"G1223\"* Cyprus|strong=\"G2954\"*, because|strong=\"G1223\"* the|strong=\"G1223\"* winds were|strong=\"G1510\"* contrary|strong=\"G1727\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"G2532\"* we|strong=\"G2532\"* had|strong=\"G2532\"* sailed|strong=\"G1277\"* across the|strong=\"G2532\"* sea|strong=\"G3989\"* which|strong=\"G3588\"* is|strong=\"G3588\"* off|strong=\"G2596\"* Cilicia|strong=\"G2791\"* and|strong=\"G2532\"* Pamphylia|strong=\"G3828\"*, we|strong=\"G2532\"* came|strong=\"G2718\"* to|strong=\"G1519\"* Myra|strong=\"G3460\"*, a|strong=\"G2532\"* city of|strong=\"G2532\"* Lycia|strong=\"G3073\"*." + }, + { + "verseNum": 6, + "text": "There|strong=\"G2546\"* the|strong=\"G1519\"* centurion|strong=\"G1543\"* found|strong=\"G2147\"* a|strong=\"G1519\"* ship|strong=\"G4143\"* of|strong=\"G3588\"* Alexandria sailing|strong=\"G4126\"* for|strong=\"G1519\"* Italy|strong=\"G2482\"*, and|strong=\"G3588\"* he|strong=\"G3588\"* put|strong=\"G1688\"* us|strong=\"G1519\"* on|strong=\"G1519\"* board." + }, + { + "verseNum": 7, + "text": "When|strong=\"G1161\"* we|strong=\"G2249\"* had|strong=\"G2532\"* sailed|strong=\"G5284\"* slowly|strong=\"G1020\"* many|strong=\"G2425\"* days|strong=\"G2250\"*, and|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G1096\"* with|strong=\"G1722\"* difficulty|strong=\"G3433\"* opposite Cnidus|strong=\"G2834\"*, the|strong=\"G1722\"* wind not|strong=\"G3361\"* allowing us|strong=\"G2249\"* further, we|strong=\"G2249\"* sailed|strong=\"G5284\"* under|strong=\"G1722\"* the|strong=\"G1722\"* lee of|strong=\"G2250\"* Crete|strong=\"G2914\"*, opposite Salmone|strong=\"G4534\"*." + }, + { + "verseNum": 8, + "text": "With|strong=\"G1519\"* difficulty|strong=\"G3433\"* sailing|strong=\"G3881\"* along|strong=\"G3881\"* it|strong=\"G3739\"* we|strong=\"G3739\"* came|strong=\"G2064\"* to|strong=\"G1519\"* a|strong=\"G1519\"* certain|strong=\"G5100\"* place|strong=\"G5117\"* called|strong=\"G2564\"* Fair|strong=\"G2570\"* Havens, near|strong=\"G1451\"* the|strong=\"G1519\"* city|strong=\"G4172\"* of|strong=\"G5100\"* Lasea|strong=\"G2996\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"G1161\"* much|strong=\"G2425\"* time|strong=\"G5550\"* had|strong=\"G2532\"* passed|strong=\"G3588\"* and|strong=\"G2532\"* the|strong=\"G2532\"* voyage|strong=\"G4144\"* was|strong=\"G1510\"* now|strong=\"G1161\"* dangerous|strong=\"G2000\"* because|strong=\"G1223\"* the|strong=\"G2532\"* Fast|strong=\"G3521\"* had|strong=\"G2532\"* now|strong=\"G1161\"* already|strong=\"G2235\"* gone by|strong=\"G1223\"*, Paul|strong=\"G3972\"* admonished|strong=\"G3867\"* them|strong=\"G3588\"*" + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Sirs, I|strong=\"G1473\"* perceive|strong=\"G2334\"* that|strong=\"G3754\"* the|strong=\"G2532\"* voyage|strong=\"G4144\"* will|strong=\"G3195\"* be|strong=\"G1510\"* with|strong=\"G3326\"* injury and|strong=\"G2532\"* much|strong=\"G4183\"* loss|strong=\"G2209\"*, not|strong=\"G3756\"* only|strong=\"G3440\"* of|strong=\"G2532\"* the|strong=\"G2532\"* cargo|strong=\"G5413\"* and|strong=\"G2532\"* the|strong=\"G2532\"* ship|strong=\"G4143\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* of|strong=\"G2532\"* our|strong=\"G2532\"* lives|strong=\"G5590\"*.”" + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* centurion|strong=\"G1543\"* gave|strong=\"G2532\"* more|strong=\"G3123\"* heed to|strong=\"G2532\"* the|strong=\"G2532\"* master|strong=\"G2942\"* and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* owner of|strong=\"G5259\"* the|strong=\"G2532\"* ship|strong=\"G3490\"* than|strong=\"G2228\"* to|strong=\"G2532\"* those|strong=\"G3588\"* things|strong=\"G3588\"* which|strong=\"G3588\"* were|strong=\"G3588\"* spoken|strong=\"G3004\"* by|strong=\"G5259\"* Paul|strong=\"G3972\"*." + }, + { + "verseNum": 12, + "text": "Because|strong=\"G1161\"* the|strong=\"G2532\"* haven|strong=\"G3040\"* was|strong=\"G3588\"* not|strong=\"G1410\"* suitable|strong=\"G3588\"* to|strong=\"G1519\"* winter|strong=\"G3914\"* in|strong=\"G1519\"*, the|strong=\"G2532\"* majority|strong=\"G4183\"* advised|strong=\"G5087\"* going|strong=\"G2532\"* to|strong=\"G1519\"* sea|strong=\"G2532\"* from|strong=\"G2532\"* there|strong=\"G2532\"*, if|strong=\"G1487\"* by|strong=\"G2596\"* any|strong=\"G1487\"* means|strong=\"G1513\"* they|strong=\"G2532\"* could|strong=\"G1410\"* reach|strong=\"G2658\"* Phoenix|strong=\"G5405\"* and|strong=\"G2532\"* winter|strong=\"G3914\"* there|strong=\"G2532\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* a|strong=\"G2532\"* port of|strong=\"G2532\"* Crete|strong=\"G2914\"*, looking|strong=\"G2532\"* southwest|strong=\"G3047\"* and|strong=\"G2532\"* northwest|strong=\"G5566\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"G1161\"* the|strong=\"G1161\"* south|strong=\"G3558\"* wind|strong=\"G3558\"* blew|strong=\"G3558\"* softly|strong=\"G5285\"*, supposing|strong=\"G1380\"* that|strong=\"G3588\"* they|strong=\"G1161\"* had|strong=\"G3588\"* obtained|strong=\"G2902\"* their|strong=\"G3588\"* purpose|strong=\"G4286\"*, they|strong=\"G1161\"* weighed anchor and|strong=\"G1161\"* sailed|strong=\"G3881\"* along|strong=\"G3881\"* Crete|strong=\"G2914\"*, close to|strong=\"G1161\"* shore." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* before|strong=\"G2596\"* long|strong=\"G4183\"*, a|strong=\"G1161\"* stormy wind beat down|strong=\"G2596\"* from|strong=\"G2596\"* shore, which|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G2564\"* Euroclydon|strong=\"G2148\"*.+ 27:14 Or, “a northeaster”.*" + }, + { + "verseNum": 15, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* ship|strong=\"G4143\"* was|strong=\"G3588\"* caught|strong=\"G4884\"* and|strong=\"G2532\"* couldn’t|strong=\"G3588\"* face the|strong=\"G2532\"* wind, we|strong=\"G2532\"* gave|strong=\"G2532\"* way|strong=\"G1929\"* to|strong=\"G2532\"* it|strong=\"G2532\"* and|strong=\"G2532\"* were|strong=\"G3588\"* driven|strong=\"G5342\"* along|strong=\"G2532\"*." + }, + { + "verseNum": 16, + "text": "Running|strong=\"G5295\"* under|strong=\"G5295\"* the|strong=\"G1161\"* lee of|strong=\"G5100\"* a|strong=\"G1096\"* small|strong=\"G3519\"* island|strong=\"G3519\"* called|strong=\"G2564\"* Clauda|strong=\"G2802\"*, we|strong=\"G1161\"* were|strong=\"G3588\"* able|strong=\"G2480\"*, with|strong=\"G3588\"* difficulty|strong=\"G3433\"*, to|strong=\"G1096\"* secure the|strong=\"G1161\"* boat|strong=\"G4627\"*." + }, + { + "verseNum": 17, + "text": "After|strong=\"G3739\"* they|strong=\"G3588\"* had|strong=\"G3739\"* hoisted it|strong=\"G3739\"* up|strong=\"G1519\"*, they|strong=\"G3588\"* used|strong=\"G5530\"* cables to|strong=\"G1519\"* help reinforce the|strong=\"G1519\"* ship|strong=\"G4143\"*. Fearing|strong=\"G5399\"* that|strong=\"G3739\"* they|strong=\"G3588\"* would run|strong=\"G1601\"* aground|strong=\"G1601\"* on|strong=\"G1519\"* the|strong=\"G1519\"* Syrtis|strong=\"G4950\"* sand bars, they|strong=\"G3588\"* lowered the|strong=\"G1519\"* sea|strong=\"G4632\"* anchor|strong=\"G4632\"*, and|strong=\"G5037\"* so|strong=\"G3779\"* were|strong=\"G3588\"* driven|strong=\"G5342\"* along|strong=\"G5037\"*." + }, + { + "verseNum": 18, + "text": "As|strong=\"G1161\"* we|strong=\"G2249\"* labored exceedingly|strong=\"G4971\"* with|strong=\"G4160\"* the|strong=\"G1161\"* storm, the|strong=\"G1161\"* next|strong=\"G1836\"* day|strong=\"G1836\"* they|strong=\"G1161\"* began|strong=\"G1161\"* to|strong=\"G1161\"* throw things|strong=\"G3588\"* overboard." + }, + { + "verseNum": 19, + "text": "On|strong=\"G3588\"* the|strong=\"G2532\"* third|strong=\"G5154\"* day|strong=\"G3588\"*, they|strong=\"G2532\"* threw|strong=\"G4496\"* out|strong=\"G2532\"* the|strong=\"G2532\"* ship|strong=\"G4143\"*’s tackle|strong=\"G4631\"* with|strong=\"G2532\"* their|strong=\"G2532\"* own hands." + }, + { + "verseNum": 20, + "text": "When|strong=\"G1161\"* neither|strong=\"G3756\"* sun|strong=\"G2246\"* nor|strong=\"G3383\"* stars shone on|strong=\"G1909\"* us|strong=\"G2249\"* for|strong=\"G1909\"* many|strong=\"G4183\"* days|strong=\"G2250\"*, and|strong=\"G1161\"* no|strong=\"G3756\"* small|strong=\"G3641\"* storm|strong=\"G5494\"* pressed on|strong=\"G1909\"* us|strong=\"G2249\"*, all|strong=\"G3956\"* hope|strong=\"G1680\"* that|strong=\"G3588\"* we|strong=\"G2249\"* would|strong=\"G2250\"* be|strong=\"G3756\"* saved|strong=\"G4982\"* was|strong=\"G3588\"* now|strong=\"G1161\"* taken|strong=\"G3063\"* away|strong=\"G4014\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G2532\"* long|strong=\"G4183\"* without|strong=\"G3361\"* food, Paul|strong=\"G3972\"* stood|strong=\"G2476\"* up|strong=\"G2476\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2532\"* them|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “Sirs, you|strong=\"G1722\"* should|strong=\"G1163\"* have|strong=\"G2532\"* listened to|strong=\"G2532\"* me|strong=\"G1473\"*, and|strong=\"G2532\"* not|strong=\"G3361\"* have|strong=\"G2532\"* set|strong=\"G2476\"* sail from|strong=\"G2532\"* Crete|strong=\"G2914\"* and|strong=\"G2532\"* have|strong=\"G2532\"* gotten this|strong=\"G3778\"* injury and|strong=\"G2532\"* loss|strong=\"G2209\"*." + }, + { + "verseNum": 22, + "text": "Now|strong=\"G3568\"* I|strong=\"G2532\"* exhort you|strong=\"G5210\"* to|strong=\"G2532\"* cheer|strong=\"G2114\"* up|strong=\"G2532\"*, for|strong=\"G1063\"* there|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* no|strong=\"G3762\"* loss of|strong=\"G1537\"* life|strong=\"G5590\"* among|strong=\"G1537\"* you|strong=\"G5210\"*, but|strong=\"G2532\"* only|strong=\"G2532\"* of|strong=\"G1537\"* the|strong=\"G2532\"* ship|strong=\"G4143\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"G1063\"* there|strong=\"G2532\"* stood|strong=\"G3936\"* by|strong=\"G3936\"* me|strong=\"G1473\"* this|strong=\"G3778\"* night|strong=\"G3571\"* an|strong=\"G2532\"* angel, belonging|strong=\"G1510\"* to|strong=\"G2532\"* the|strong=\"G2532\"* God|strong=\"G2316\"* whose|strong=\"G3739\"* I|strong=\"G1473\"* am|strong=\"G1510\"* and|strong=\"G2532\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* serve|strong=\"G3000\"*," + }, + { + "verseNum": 24, + "text": "saying|strong=\"G3004\"*, ‘Don’t|strong=\"G3588\"* be|strong=\"G2532\"* afraid|strong=\"G5399\"*, Paul|strong=\"G3972\"*. You|strong=\"G4771\"* must|strong=\"G1163\"* stand|strong=\"G3936\"* before|strong=\"G3936\"* Caesar|strong=\"G2541\"*. Behold|strong=\"G2400\"*, God|strong=\"G2316\"* has|strong=\"G2316\"* granted|strong=\"G5483\"* you|strong=\"G4771\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sail|strong=\"G4126\"* with|strong=\"G3326\"* you|strong=\"G4771\"*.’" + }, + { + "verseNum": 25, + "text": "Therefore|strong=\"G1352\"*, sirs, cheer|strong=\"G2114\"* up! For|strong=\"G1063\"* I|strong=\"G1473\"* believe|strong=\"G4100\"* God|strong=\"G2316\"*, that|strong=\"G3754\"* it|strong=\"G3754\"* will|strong=\"G2316\"* be|strong=\"G1510\"* just|strong=\"G2596\"* as|strong=\"G2596\"* it|strong=\"G3754\"* has|strong=\"G2316\"* been|strong=\"G1510\"* spoken|strong=\"G2980\"* to|strong=\"G2596\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 26, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"* must|strong=\"G1163\"* run|strong=\"G1601\"* aground|strong=\"G1601\"* on|strong=\"G1519\"* a|strong=\"G1519\"* certain|strong=\"G5100\"* island|strong=\"G3520\"*.”" + }, + { + "verseNum": 27, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G1722\"* fourteenth|strong=\"G5065\"* night|strong=\"G3571\"* had|strong=\"G3588\"* come|strong=\"G1096\"*, as|strong=\"G5613\"* we|strong=\"G2249\"* were|strong=\"G3588\"* driven|strong=\"G1308\"* back and|strong=\"G1161\"* forth|strong=\"G3319\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Adriatic Sea, about|strong=\"G5613\"* midnight|strong=\"G3319\"* the|strong=\"G1722\"* sailors|strong=\"G3492\"* surmised that|strong=\"G3588\"* they|strong=\"G1161\"* were|strong=\"G3588\"* drawing|strong=\"G1096\"* near|strong=\"G5561\"* to|strong=\"G2596\"* some|strong=\"G5100\"* land|strong=\"G5561\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"G2532\"* took|strong=\"G2532\"* soundings|strong=\"G1001\"* and|strong=\"G2532\"* found|strong=\"G2147\"* twenty|strong=\"G1501\"* fathoms|strong=\"G3712\"*.+ 27:28 20 fathoms = 120 feet = 36.6 meters* After|strong=\"G1161\"* a|strong=\"G2532\"* little|strong=\"G1024\"* while|strong=\"G1161\"*, they|strong=\"G2532\"* took|strong=\"G2532\"* soundings|strong=\"G1001\"* again|strong=\"G3825\"*, and|strong=\"G2532\"* found|strong=\"G2147\"* fifteen|strong=\"G1178\"* fathoms|strong=\"G3712\"*.+ 27:28 15 fathoms = 90 feet = 27.4 meters*" + }, + { + "verseNum": 29, + "text": "Fearing|strong=\"G5399\"* that|strong=\"G1096\"* we|strong=\"G2250\"* would|strong=\"G1096\"* run|strong=\"G1601\"* aground|strong=\"G1601\"* on|strong=\"G1537\"* rocky ground, they|strong=\"G5037\"* let|strong=\"G1096\"* go four|strong=\"G5064\"* anchors from|strong=\"G1537\"* the|strong=\"G1537\"* stern|strong=\"G4403\"*, and|strong=\"G5037\"* wished|strong=\"G2172\"* for|strong=\"G1537\"* daylight|strong=\"G2250\"*." + }, + { + "verseNum": 30, + "text": "As|strong=\"G5613\"* the|strong=\"G2532\"* sailors|strong=\"G3492\"* were|strong=\"G3588\"* trying|strong=\"G2212\"* to|strong=\"G1519\"* flee|strong=\"G5343\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* ship|strong=\"G4143\"* and|strong=\"G2532\"* had|strong=\"G2532\"* lowered the|strong=\"G2532\"* boat|strong=\"G4143\"* into|strong=\"G1519\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, pretending|strong=\"G4392\"* that|strong=\"G3588\"* they|strong=\"G2532\"* would|strong=\"G3195\"* lay|strong=\"G1614\"* out|strong=\"G1537\"* anchors from|strong=\"G1537\"* the|strong=\"G2532\"* bow|strong=\"G4408\"*," + }, + { + "verseNum": 31, + "text": "Paul|strong=\"G3972\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G1722\"* centurion|strong=\"G1543\"* and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G1722\"* soldiers|strong=\"G4757\"*, “Unless|strong=\"G1437\"* these|strong=\"G3778\"* stay|strong=\"G3306\"* in|strong=\"G1722\"* the|strong=\"G1722\"* ship|strong=\"G4143\"*, you|strong=\"G5210\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*.”" + }, + { + "verseNum": 32, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* soldiers|strong=\"G4757\"* cut|strong=\"G2532\"* away|strong=\"G1601\"* the|strong=\"G2532\"* ropes|strong=\"G4979\"* of|strong=\"G2532\"* the|strong=\"G2532\"* boat|strong=\"G4627\"* and|strong=\"G2532\"* let|strong=\"G1439\"* it|strong=\"G2532\"* fall|strong=\"G1601\"* off|strong=\"G1601\"*." + }, + { + "verseNum": 33, + "text": "While|strong=\"G1161\"* the|strong=\"G1161\"* day|strong=\"G2250\"* was|strong=\"G1096\"* coming|strong=\"G1096\"* on|strong=\"G1161\"*, Paul|strong=\"G3972\"* begged|strong=\"G3870\"* them|strong=\"G3588\"* all|strong=\"G1161\"* to|strong=\"G3004\"* take|strong=\"G1096\"* some|strong=\"G3739\"* food|strong=\"G5160\"*, saying|strong=\"G3004\"*, “Today|strong=\"G4594\"* is|strong=\"G3588\"* the|strong=\"G1161\"* fourteenth|strong=\"G5065\"* day|strong=\"G2250\"* that|strong=\"G3739\"* you|strong=\"G3739\"* wait and|strong=\"G1161\"* continue|strong=\"G1096\"* fasting, having taken|strong=\"G1096\"* nothing|strong=\"G3367\"*." + }, + { + "verseNum": 34, + "text": "Therefore|strong=\"G1352\"* I|strong=\"G1063\"* beg|strong=\"G3870\"* you|strong=\"G5210\"* to|strong=\"G4314\"* take|strong=\"G3335\"* some|strong=\"G3588\"* food|strong=\"G5160\"*, for|strong=\"G1063\"* this|strong=\"G3778\"* is|strong=\"G3588\"* for|strong=\"G1063\"* your|strong=\"G5212\"* safety; for|strong=\"G1063\"* not|strong=\"G3762\"* a|strong=\"G4314\"* hair|strong=\"G2359\"* will|strong=\"G3778\"* perish from|strong=\"G3588\"* any|strong=\"G3762\"* of|strong=\"G2776\"* your|strong=\"G5212\"* heads|strong=\"G2776\"*.”" + }, + { + "verseNum": 35, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"* and|strong=\"G2532\"* had|strong=\"G2532\"* taken|strong=\"G2983\"* bread, he|strong=\"G2532\"* gave|strong=\"G2532\"* thanks|strong=\"G2168\"* to|strong=\"G2532\"* God|strong=\"G2316\"* in|strong=\"G2532\"* the|strong=\"G2532\"* presence|strong=\"G1799\"* of|strong=\"G2316\"* all|strong=\"G3956\"*; then|strong=\"G2532\"* he|strong=\"G2532\"* broke|strong=\"G2806\"* it|strong=\"G2532\"* and|strong=\"G2532\"* began|strong=\"G1161\"* to|strong=\"G2532\"* eat|strong=\"G2068\"*." + }, + { + "verseNum": 36, + "text": "Then|strong=\"G2532\"* they|strong=\"G2532\"* all|strong=\"G3956\"* cheered up|strong=\"G2532\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* also|strong=\"G2532\"* took|strong=\"G4355\"* food|strong=\"G5160\"*." + }, + { + "verseNum": 37, + "text": "In|strong=\"G1722\"* all|strong=\"G3956\"*, we|strong=\"G1161\"* were|strong=\"G1510\"* two|strong=\"G1250\"* hundred|strong=\"G1250\"* seventy-six|strong=\"G1440\"* souls|strong=\"G5590\"* on|strong=\"G1722\"* the|strong=\"G1722\"* ship|strong=\"G4143\"*." + }, + { + "verseNum": 38, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G3588\"* eaten|strong=\"G2880\"* enough|strong=\"G2880\"*, they|strong=\"G1161\"* lightened|strong=\"G2893\"* the|strong=\"G1519\"* ship|strong=\"G4143\"*, throwing|strong=\"G1544\"* out|strong=\"G1544\"* the|strong=\"G1519\"* wheat|strong=\"G4621\"* into|strong=\"G1519\"* the|strong=\"G1519\"* sea|strong=\"G2281\"*." + }, + { + "verseNum": 39, + "text": "When|strong=\"G3753\"* it|strong=\"G1161\"* was|strong=\"G1096\"* day|strong=\"G2250\"*, they|strong=\"G1161\"* didn’t|strong=\"G3588\"* recognize|strong=\"G1921\"* the|strong=\"G1519\"* land|strong=\"G1093\"*, but|strong=\"G1161\"* they|strong=\"G1161\"* noticed a|strong=\"G2192\"* certain|strong=\"G5100\"* bay|strong=\"G2859\"* with|strong=\"G1519\"* a|strong=\"G2192\"* beach, and|strong=\"G1161\"* they|strong=\"G1161\"* decided|strong=\"G1096\"* to|strong=\"G1519\"* try to|strong=\"G1519\"* drive|strong=\"G1856\"* the|strong=\"G1519\"* ship|strong=\"G4143\"* onto|strong=\"G1519\"* it|strong=\"G1161\"*." + }, + { + "verseNum": 40, + "text": "Casting|strong=\"G4014\"* off|strong=\"G4014\"* the|strong=\"G2532\"* anchors, they|strong=\"G2532\"* left|strong=\"G1439\"* them|strong=\"G3588\"* in|strong=\"G1519\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, at|strong=\"G1519\"* the|strong=\"G2532\"* same|strong=\"G2532\"* time untying the|strong=\"G2532\"* rudder|strong=\"G4079\"* ropes|strong=\"G2202\"*. Hoisting|strong=\"G1869\"* up|strong=\"G1869\"* the|strong=\"G2532\"* foresail to|strong=\"G1519\"* the|strong=\"G2532\"* wind|strong=\"G4154\"*, they|strong=\"G2532\"* made|strong=\"G2722\"* for|strong=\"G1519\"* the|strong=\"G2532\"* beach." + }, + { + "verseNum": 41, + "text": "But|strong=\"G1161\"* coming to|strong=\"G1519\"* a|strong=\"G2532\"* place|strong=\"G5117\"* where|strong=\"G5117\"* two|strong=\"G1337\"* seas|strong=\"G1337\"* met|strong=\"G1337\"*, they|strong=\"G2532\"* ran|strong=\"G2027\"* the|strong=\"G2532\"* vessel|strong=\"G3491\"* aground|strong=\"G2027\"*. The|strong=\"G2532\"* bow|strong=\"G4408\"* struck and|strong=\"G2532\"* remained|strong=\"G3306\"* immovable, but|strong=\"G1161\"* the|strong=\"G2532\"* stern|strong=\"G4403\"* began|strong=\"G1161\"* to|strong=\"G1519\"* break|strong=\"G3089\"* up|strong=\"G1519\"* by|strong=\"G5259\"* the|strong=\"G2532\"* violence of|strong=\"G5259\"* the|strong=\"G2532\"* waves." + }, + { + "verseNum": 42, + "text": "The|strong=\"G1161\"* soldiers|strong=\"G4757\"*’ counsel|strong=\"G1012\"* was|strong=\"G1096\"* to|strong=\"G2443\"* kill the|strong=\"G1161\"* prisoners|strong=\"G1202\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* none|strong=\"G3361\"* of|strong=\"G5100\"* them|strong=\"G3588\"* would|strong=\"G1096\"* swim|strong=\"G1579\"* out|strong=\"G1096\"* and|strong=\"G1161\"* escape|strong=\"G1309\"*." + }, + { + "verseNum": 43, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* centurion|strong=\"G1543\"*, desiring|strong=\"G1014\"* to|strong=\"G1909\"* save|strong=\"G1295\"* Paul|strong=\"G3972\"*, stopped them|strong=\"G3588\"* from|strong=\"G3588\"* their|strong=\"G1438\"* purpose|strong=\"G1013\"*, and|strong=\"G1161\"* commanded|strong=\"G2753\"* that|strong=\"G3588\"* those|strong=\"G3588\"* who|strong=\"G3588\"* could|strong=\"G1410\"* swim|strong=\"G2860\"* should|strong=\"G3588\"* throw themselves|strong=\"G1438\"* overboard first|strong=\"G4413\"* to|strong=\"G1909\"* go toward|strong=\"G1909\"* the|strong=\"G1161\"* land|strong=\"G1093\"*;" + }, + { + "verseNum": 44, + "text": "and|strong=\"G2532\"* the|strong=\"G2532\"* rest|strong=\"G3062\"* should|strong=\"G5100\"* follow|strong=\"G1161\"*, some|strong=\"G5100\"* on|strong=\"G1909\"* planks|strong=\"G4548\"* and|strong=\"G2532\"* some|strong=\"G5100\"* on|strong=\"G1909\"* other|strong=\"G3062\"* things|strong=\"G3956\"* from|strong=\"G2532\"* the|strong=\"G2532\"* ship|strong=\"G4143\"*. So|strong=\"G3779\"* they|strong=\"G2532\"* all|strong=\"G3956\"* escaped|strong=\"G1295\"* safely|strong=\"G1295\"* to|strong=\"G2532\"* the|strong=\"G2532\"* land|strong=\"G1093\"*." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G2532\"* we|strong=\"G3754\"* had|strong=\"G2532\"* escaped|strong=\"G1295\"*, then|strong=\"G2532\"* they|strong=\"G2532\"*+ 28:1 NU reads “we”* learned|strong=\"G1921\"* that|strong=\"G3754\"* the|strong=\"G2532\"* island|strong=\"G3520\"* was|strong=\"G3588\"* called|strong=\"G2564\"* Malta|strong=\"G3194\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"G2532\"* natives showed|strong=\"G3930\"* us|strong=\"G2249\"* uncommon kindness|strong=\"G5363\"*; for|strong=\"G1063\"* they|strong=\"G2532\"* kindled a|strong=\"G2532\"* fire|strong=\"G4443\"* and|strong=\"G2532\"* received|strong=\"G4355\"* us|strong=\"G2249\"* all|strong=\"G3956\"*, because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* present|strong=\"G2186\"* rain|strong=\"G5205\"* and|strong=\"G2532\"* because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* cold|strong=\"G5592\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Paul|strong=\"G3972\"* had|strong=\"G2532\"* gathered|strong=\"G4962\"* a|strong=\"G2532\"* bundle|strong=\"G4128\"* of|strong=\"G2532\"* sticks|strong=\"G5434\"* and|strong=\"G2532\"* laid|strong=\"G2007\"* them|strong=\"G3588\"* on|strong=\"G1909\"* the|strong=\"G2532\"* fire|strong=\"G4443\"*, a|strong=\"G2532\"* viper|strong=\"G2191\"* came|strong=\"G1831\"* out|strong=\"G1831\"* because|strong=\"G1909\"* of|strong=\"G2532\"* the|strong=\"G2532\"* heat|strong=\"G2329\"* and|strong=\"G2532\"* fastened|strong=\"G2510\"* on|strong=\"G1909\"* his|strong=\"G2007\"* hand|strong=\"G5495\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"G1161\"* the|strong=\"G1537\"* natives saw|strong=\"G3708\"* the|strong=\"G1537\"* creature|strong=\"G2342\"* hanging|strong=\"G2910\"* from|strong=\"G1537\"* his|strong=\"G3708\"* hand|strong=\"G5495\"*, they|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* one|strong=\"G3739\"* another|strong=\"G3739\"*, “No|strong=\"G3756\"* doubt|strong=\"G3843\"* this|strong=\"G3778\"* man|strong=\"G3778\"* is|strong=\"G1510\"* a|strong=\"G5613\"* murderer|strong=\"G5406\"*, whom|strong=\"G3739\"*, though|strong=\"G5613\"* he|strong=\"G1161\"* has|strong=\"G3739\"* escaped|strong=\"G1295\"* from|strong=\"G1537\"* the|strong=\"G1537\"* sea|strong=\"G2281\"*, yet|strong=\"G1161\"* Justice|strong=\"G1349\"* has|strong=\"G3739\"* not|strong=\"G3756\"* allowed|strong=\"G1439\"* to|strong=\"G4314\"* live|strong=\"G2198\"*.”" + }, + { + "verseNum": 5, + "text": "However|strong=\"G3767\"* he|strong=\"G3588\"* shook off the|strong=\"G1519\"* creature|strong=\"G2342\"* into|strong=\"G1519\"* the|strong=\"G1519\"* fire|strong=\"G4442\"*, and|strong=\"G3767\"* wasn’t|strong=\"G3588\"* harmed." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"* expected that|strong=\"G3588\"* he|strong=\"G2532\"* would|strong=\"G3195\"* have|strong=\"G2532\"* swollen|strong=\"G4092\"* or|strong=\"G2228\"* fallen|strong=\"G2667\"* down|strong=\"G2667\"* dead|strong=\"G3498\"* suddenly, but|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G2532\"* watched|strong=\"G2334\"* for|strong=\"G1519\"* a|strong=\"G1096\"* long|strong=\"G4183\"* time|strong=\"G1909\"* and|strong=\"G2532\"* saw|strong=\"G2334\"* nothing|strong=\"G3367\"* bad happen|strong=\"G1096\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* changed|strong=\"G3328\"* their|strong=\"G2532\"* minds|strong=\"G3328\"* and|strong=\"G2532\"* said|strong=\"G3004\"* that|strong=\"G3588\"* he|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G1096\"* god|strong=\"G2316\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* the|strong=\"G1722\"* neighborhood|strong=\"G4012\"* of|strong=\"G4012\"* that|strong=\"G3739\"* place|strong=\"G5117\"* were|strong=\"G3588\"* lands|strong=\"G5564\"* belonging|strong=\"G5225\"* to|strong=\"G1722\"* the|strong=\"G1722\"* chief|strong=\"G4413\"* man|strong=\"G4413\"* of|strong=\"G4012\"* the|strong=\"G1722\"* island|strong=\"G3520\"*, named|strong=\"G3686\"* Publius|strong=\"G4196\"*, who|strong=\"G3739\"* received us|strong=\"G3579\"* and|strong=\"G1161\"* courteously|strong=\"G5390\"* entertained|strong=\"G3579\"* us|strong=\"G3579\"* for|strong=\"G4012\"* three|strong=\"G5140\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"G2532\"* father|strong=\"G3962\"* of|strong=\"G2532\"* Publius|strong=\"G4196\"* lay|strong=\"G2007\"* sick|strong=\"G2621\"* of|strong=\"G2532\"* fever|strong=\"G4446\"* and|strong=\"G2532\"* dysentery|strong=\"G1420\"*. Paul|strong=\"G3972\"* entered|strong=\"G1525\"* in|strong=\"G1525\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, prayed|strong=\"G4336\"*, and|strong=\"G2532\"* laying|strong=\"G2007\"* his|strong=\"G2007\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* him|strong=\"G3588\"*, healed|strong=\"G2390\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"G2532\"* when|strong=\"G1161\"* this|strong=\"G3778\"* was|strong=\"G1096\"* done|strong=\"G1096\"*, the|strong=\"G1722\"* rest|strong=\"G3062\"* also|strong=\"G2532\"* who|strong=\"G3588\"* had|strong=\"G2192\"* diseases in|strong=\"G1722\"* the|strong=\"G1722\"* island|strong=\"G3520\"* came|strong=\"G4334\"* and|strong=\"G2532\"* were|strong=\"G3588\"* cured|strong=\"G2323\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"G2532\"* also|strong=\"G2532\"* honored|strong=\"G5091\"* us|strong=\"G2249\"* with|strong=\"G4314\"* many|strong=\"G4183\"* honors|strong=\"G5091\"*; and|strong=\"G2532\"* when|strong=\"G2532\"* we|strong=\"G2249\"* sailed|strong=\"G2249\"*, they|strong=\"G2532\"* put|strong=\"G2007\"* on|strong=\"G2007\"* board the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G3739\"* we|strong=\"G2249\"* needed|strong=\"G5532\"*." + }, + { + "verseNum": 11, + "text": "After|strong=\"G3326\"* three|strong=\"G5140\"* months|strong=\"G3376\"*, we|strong=\"G1161\"* set sail in|strong=\"G1722\"* a|strong=\"G1722\"* ship|strong=\"G4143\"* of|strong=\"G1722\"* Alexandria which|strong=\"G3588\"* had|strong=\"G3588\"* wintered|strong=\"G3914\"* in|strong=\"G1722\"* the|strong=\"G1722\"* island|strong=\"G3520\"*, whose|strong=\"G3588\"* figurehead|strong=\"G3902\"* was|strong=\"G3588\"* “The|strong=\"G1722\"* Twin|strong=\"G1359\"* Brothers|strong=\"G1359\"*.”" + }, + { + "verseNum": 12, + "text": "Touching at|strong=\"G1519\"* Syracuse|strong=\"G4946\"*, we|strong=\"G2532\"* stayed|strong=\"G1961\"* there|strong=\"G2532\"* three|strong=\"G5140\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 13, + "text": "From|strong=\"G2064\"* there|strong=\"G2532\"* we|strong=\"G2532\"* circled around|strong=\"G4022\"* and|strong=\"G2532\"* arrived|strong=\"G2064\"* at|strong=\"G1519\"* Rhegium|strong=\"G4484\"*. After|strong=\"G3326\"* one|strong=\"G1520\"* day|strong=\"G2250\"*, a|strong=\"G2532\"* south|strong=\"G3558\"* wind|strong=\"G3558\"* sprang|strong=\"G1920\"* up|strong=\"G1519\"*, and|strong=\"G2532\"* on|strong=\"G1519\"* the|strong=\"G2532\"* second|strong=\"G1206\"* day|strong=\"G2250\"* we|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Puteoli|strong=\"G4223\"*," + }, + { + "verseNum": 14, + "text": "where|strong=\"G3757\"* we|strong=\"G2532\"* found|strong=\"G2147\"* brothers,+ 28:14 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* and|strong=\"G2532\"* were|strong=\"G3588\"* entreated to|strong=\"G1519\"* stay|strong=\"G1961\"* with|strong=\"G3844\"* them|strong=\"G3588\"* for|strong=\"G1519\"* seven|strong=\"G2033\"* days|strong=\"G2250\"*. So|strong=\"G3779\"* we|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Rome|strong=\"G4516\"*." + }, + { + "verseNum": 15, + "text": "From|strong=\"G2064\"* there|strong=\"G2532\"* the|strong=\"G2532\"* brothers, when|strong=\"G2532\"* they|strong=\"G2532\"* heard of|strong=\"G4012\"* us|strong=\"G1519\"*, came|strong=\"G2064\"* to|strong=\"G1519\"* meet|strong=\"G3588\"* us|strong=\"G1519\"* as|strong=\"G1519\"* far|strong=\"G3588\"* as|strong=\"G1519\"* The|strong=\"G2532\"* Market|strong=\"G5410\"* of|strong=\"G4012\"* Appius and|strong=\"G2532\"* The|strong=\"G2532\"* Three|strong=\"G5140\"* Taverns|strong=\"G4999\"*. When|strong=\"G2532\"* Paul|strong=\"G3972\"* saw|strong=\"G3708\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* thanked|strong=\"G2168\"* God|strong=\"G2316\"* and|strong=\"G2532\"* took|strong=\"G2983\"* courage|strong=\"G2294\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"G3753\"* we|strong=\"G1161\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* Rome|strong=\"G4516\"*, the|strong=\"G1519\"* centurion delivered the|strong=\"G1519\"* prisoners to|strong=\"G1519\"* the|strong=\"G1519\"* captain of|strong=\"G2596\"* the|strong=\"G1519\"* guard|strong=\"G5442\"*, but|strong=\"G1161\"* Paul|strong=\"G3972\"* was|strong=\"G3588\"* allowed|strong=\"G2010\"* to|strong=\"G1519\"* stay|strong=\"G3306\"* by|strong=\"G2596\"* himself|strong=\"G1438\"* with|strong=\"G4862\"* the|strong=\"G1519\"* soldier|strong=\"G4757\"* who|strong=\"G3588\"* guarded|strong=\"G5442\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "After|strong=\"G3326\"* three|strong=\"G5140\"* days|strong=\"G2250\"* Paul|strong=\"G1510\"* called|strong=\"G3004\"* together|strong=\"G4905\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* the|strong=\"G1519\"* leaders|strong=\"G4413\"* of|strong=\"G1537\"* the|strong=\"G1519\"* Jews|strong=\"G2453\"*. When|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G1510\"* come|strong=\"G1096\"* together|strong=\"G4905\"*, he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “I|strong=\"G1473\"*, brothers, though|strong=\"G1161\"* I|strong=\"G1473\"* had|strong=\"G1510\"* done|strong=\"G4160\"* nothing|strong=\"G3762\"* against|strong=\"G4314\"* the|strong=\"G1519\"* people|strong=\"G2992\"* or|strong=\"G2228\"* the|strong=\"G1519\"* customs|strong=\"G1485\"* of|strong=\"G1537\"* our|strong=\"G3326\"* fathers|strong=\"G3971\"*, still was|strong=\"G1510\"* delivered|strong=\"G3860\"* prisoner|strong=\"G1198\"* from|strong=\"G1537\"* Jerusalem|strong=\"G2414\"* into|strong=\"G1519\"* the|strong=\"G1519\"* hands|strong=\"G5495\"* of|strong=\"G1537\"* the|strong=\"G1519\"* Romans|strong=\"G4514\"*," + }, + { + "verseNum": 18, + "text": "who|strong=\"G3588\"*, when|strong=\"G1722\"* they|strong=\"G3588\"* had|strong=\"G3588\"* examined me|strong=\"G1473\"*, desired to|strong=\"G1722\"* set me|strong=\"G1473\"* free|strong=\"G1722\"*, because|strong=\"G1223\"* there|strong=\"G1722\"* was|strong=\"G3588\"* no|strong=\"G3367\"* cause|strong=\"G1223\"* of|strong=\"G1223\"* death|strong=\"G2288\"* in|strong=\"G1722\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"* spoke against|strong=\"G2723\"* it|strong=\"G1161\"*, I|strong=\"G1473\"* was|strong=\"G3588\"* constrained to|strong=\"G3756\"* appeal|strong=\"G1941\"* to|strong=\"G3756\"* Caesar|strong=\"G2541\"*, not|strong=\"G3756\"* that|strong=\"G3588\"* I|strong=\"G1473\"* had|strong=\"G2192\"* anything|strong=\"G5100\"* about|strong=\"G5613\"* which|strong=\"G3588\"* to|strong=\"G3756\"* accuse|strong=\"G2723\"* my|strong=\"G1473\"* nation|strong=\"G1484\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* therefore|strong=\"G3767\"* I|strong=\"G2532\"* asked|strong=\"G3870\"* to|strong=\"G2532\"* see|strong=\"G3708\"* you|strong=\"G5210\"* and|strong=\"G2532\"* to|strong=\"G2532\"* speak|strong=\"G4354\"* with|strong=\"G1223\"* you|strong=\"G5210\"*. For|strong=\"G1063\"* because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* hope|strong=\"G1680\"* of|strong=\"G1223\"* Israel|strong=\"G2474\"* I|strong=\"G2532\"* am|strong=\"G2532\"* bound with|strong=\"G1223\"* this|strong=\"G3778\"* chain.”" + }, + { + "verseNum": 21, + "text": "They|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “We|strong=\"G2249\"* neither|strong=\"G3777\"* received|strong=\"G1209\"* letters|strong=\"G1121\"* from|strong=\"G3588\"* Judea|strong=\"G2449\"* concerning|strong=\"G4012\"* you|strong=\"G4771\"*, nor|strong=\"G3777\"* did|strong=\"G5100\"* any|strong=\"G5100\"* of|strong=\"G4012\"* the|strong=\"G1161\"* brothers come|strong=\"G3854\"* here|strong=\"G3854\"* and|strong=\"G1161\"* report or|strong=\"G2228\"* speak|strong=\"G2980\"* any|strong=\"G5100\"* evil|strong=\"G4190\"* of|strong=\"G4012\"* you|strong=\"G4771\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"* desire to|strong=\"G1161\"* hear from|strong=\"G3844\"* you|strong=\"G4771\"* what|strong=\"G3739\"* you|strong=\"G4771\"* think|strong=\"G5426\"*. For|strong=\"G1063\"*, as|strong=\"G1161\"* concerning|strong=\"G4012\"* this|strong=\"G3778\"* sect, it|strong=\"G3754\"* is|strong=\"G1510\"* known|strong=\"G1110\"* to|strong=\"G1161\"* us|strong=\"G2249\"* that|strong=\"G3754\"* everywhere|strong=\"G3837\"* it|strong=\"G3754\"* is|strong=\"G1510\"* spoken against|strong=\"G4012\"*.”" + }, + { + "verseNum": 23, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2424\"* appointed|strong=\"G5021\"* him|strong=\"G3588\"* a|strong=\"G2532\"* day|strong=\"G2250\"*, many|strong=\"G4183\"* people|strong=\"G2240\"* came|strong=\"G2064\"* to|strong=\"G1519\"* him|strong=\"G3588\"* at|strong=\"G1519\"* his|strong=\"G1438\"* lodging|strong=\"G3578\"*. He|strong=\"G2532\"* explained|strong=\"G1620\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, testifying|strong=\"G1263\"* about|strong=\"G4012\"* God|strong=\"G2316\"*’s Kingdom, and|strong=\"G2532\"* persuading|strong=\"G3982\"* them|strong=\"G3588\"* concerning|strong=\"G4012\"* Jesus|strong=\"G2424\"*, both|strong=\"G2532\"* from|strong=\"G2064\"* the|strong=\"G2532\"* law|strong=\"G3551\"* of|strong=\"G4012\"* Moses|strong=\"G3475\"* and|strong=\"G2532\"* from|strong=\"G2064\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"*, from|strong=\"G2064\"* morning|strong=\"G4404\"* until|strong=\"G2193\"* evening|strong=\"G2073\"*." + }, + { + "verseNum": 24, + "text": "Some|strong=\"G3588\"* believed|strong=\"G3982\"* the|strong=\"G2532\"* things|strong=\"G3588\"* which|strong=\"G3588\"* were|strong=\"G3588\"* spoken|strong=\"G3004\"*, and|strong=\"G2532\"* some|strong=\"G3588\"* disbelieved." + }, + { + "verseNum": 25, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* didn’t|strong=\"G3588\"* agree|strong=\"G1510\"* among|strong=\"G4314\"* themselves|strong=\"G1510\"*, they|strong=\"G1161\"* departed after|strong=\"G1161\"* Paul|strong=\"G3972\"* had|strong=\"G3972\"* spoken|strong=\"G2980\"* one|strong=\"G1520\"* message|strong=\"G4487\"*: “The|strong=\"G1161\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* spoke|strong=\"G2980\"* rightly|strong=\"G2573\"* through|strong=\"G1223\"* Isaiah|strong=\"G2268\"* the|strong=\"G1161\"* prophet|strong=\"G4396\"* to|strong=\"G4314\"* our|strong=\"G1223\"* fathers|strong=\"G3962\"*," + }, + { + "verseNum": 26, + "text": "saying|strong=\"G3004\"*," + }, + { + "verseNum": 27, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* people|strong=\"G2992\"*’s heart|strong=\"G2588\"* has|strong=\"G3778\"* grown callous." + }, + { + "verseNum": 28, + "text": "“Be|strong=\"G1510\"* it|strong=\"G2532\"* known|strong=\"G1110\"* therefore|strong=\"G3767\"* to|strong=\"G2532\"* you|strong=\"G4771\"* that|strong=\"G3754\"* the|strong=\"G2532\"* salvation|strong=\"G4992\"* of|strong=\"G2316\"* God|strong=\"G2316\"* is|strong=\"G1510\"* sent|strong=\"G2316\"* to|strong=\"G2532\"* the|strong=\"G2532\"* nations|strong=\"G1484\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* will|strong=\"G2316\"* listen.”" + }, + { + "verseNum": 29, + "text": "When he had said these words, the Jews departed, having a great dispute among themselves.+ 28:29 NU omits verse 29.*" + }, + { + "verseNum": 30, + "text": "Paul|strong=\"G1696\"* stayed|strong=\"G1696\"* two|strong=\"G1333\"* whole|strong=\"G3650\"* years|strong=\"G1333\"* in|strong=\"G1722\"* his|strong=\"G3956\"* own|strong=\"G2398\"* rented|strong=\"G3410\"* house|strong=\"G3410\"* and|strong=\"G2532\"* received all|strong=\"G3956\"* who|strong=\"G3588\"* were|strong=\"G3588\"* coming to|strong=\"G4314\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 31, + "text": "preaching|strong=\"G2784\"* God|strong=\"G2316\"*’s|strong=\"G2962\"* Kingdom and|strong=\"G2532\"* teaching|strong=\"G1321\"* the|strong=\"G2532\"* things|strong=\"G3956\"* concerning|strong=\"G4012\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* with|strong=\"G3326\"* all|strong=\"G3956\"* boldness|strong=\"G3954\"*, without|strong=\"G2532\"* hindrance." + } + ] + } + ] + }, + { + "name": "Romans", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, a|strong=\"G1519\"* servant|strong=\"G1401\"* of|strong=\"G2316\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:1 “Christ” means “Anointed One”.* called|strong=\"G2822\"* to|strong=\"G1519\"* be|strong=\"G1519\"* an|strong=\"G1519\"* apostle, set apart for|strong=\"G1519\"* the|strong=\"G1519\"* Good|strong=\"G2098\"* News|strong=\"G2098\"* of|strong=\"G2316\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 2, + "text": "which|strong=\"G3739\"* he|strong=\"G3739\"* promised|strong=\"G4279\"* before|strong=\"G1722\"* through|strong=\"G1223\"* his|strong=\"G1223\"* prophets|strong=\"G4396\"* in|strong=\"G1722\"* the|strong=\"G1722\"* holy Scriptures|strong=\"G1124\"*," + }, + { + "verseNum": 3, + "text": "concerning|strong=\"G4012\"* his|strong=\"G4012\"* Son|strong=\"G5207\"*, who|strong=\"G3588\"* was|strong=\"G1096\"* born|strong=\"G1096\"* of|strong=\"G1537\"* the|strong=\"G1537\"* offspring+ 1:3 or, seed* of|strong=\"G1537\"* David|strong=\"G1138\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1537\"* flesh|strong=\"G4561\"*," + }, + { + "verseNum": 4, + "text": "who|strong=\"G3588\"* was|strong=\"G3588\"* declared|strong=\"G3724\"* to|strong=\"G2596\"* be|strong=\"G2316\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G1537\"* God|strong=\"G2316\"* with|strong=\"G1722\"* power|strong=\"G1411\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G1537\"* holiness, by|strong=\"G1722\"* the|strong=\"G1722\"* resurrection from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"*," + }, + { + "verseNum": 5, + "text": "through|strong=\"G1223\"* whom|strong=\"G3739\"* we|strong=\"G3739\"* received|strong=\"G2983\"* grace|strong=\"G5485\"* and|strong=\"G2532\"* apostleship for|strong=\"G1519\"* obedience|strong=\"G5218\"* of|strong=\"G1223\"* faith|strong=\"G4102\"* among|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* nations|strong=\"G1484\"* for|strong=\"G1519\"* his|strong=\"G3956\"* name|strong=\"G3686\"*’s sake|strong=\"G1223\"*;" + }, + { + "verseNum": 6, + "text": "among|strong=\"G1722\"* whom|strong=\"G3739\"* you|strong=\"G5210\"* are|strong=\"G1510\"* also|strong=\"G2532\"* called|strong=\"G2822\"* to|strong=\"G2532\"* belong|strong=\"G1510\"* to|strong=\"G2532\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*;" + }, + { + "verseNum": 7, + "text": "to|strong=\"G2532\"* all|strong=\"G3956\"* who|strong=\"G3588\"* are|strong=\"G1510\"* in|strong=\"G1722\"* Rome|strong=\"G4516\"*, beloved of|strong=\"G2316\"* God|strong=\"G2316\"*, called|strong=\"G2822\"* to|strong=\"G2532\"* be|strong=\"G1510\"* saints: Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 8, + "text": "First|strong=\"G4413\"*, I|strong=\"G1473\"* thank|strong=\"G2168\"* my|strong=\"G1722\"* God|strong=\"G2316\"* through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* for|strong=\"G3754\"* all|strong=\"G3956\"* of|strong=\"G4012\"* you|strong=\"G5210\"*, that|strong=\"G3754\"* your|strong=\"G3650\"* faith|strong=\"G4102\"* is|strong=\"G3588\"* proclaimed|strong=\"G2605\"* throughout|strong=\"G1722\"* the|strong=\"G1722\"* whole|strong=\"G3650\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* God|strong=\"G2316\"* is|strong=\"G1510\"* my|strong=\"G1722\"* witness|strong=\"G3144\"*, whom|strong=\"G3739\"* I|strong=\"G1473\"* serve|strong=\"G3000\"* in|strong=\"G1722\"* my|strong=\"G1722\"* spirit|strong=\"G4151\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G5207\"* his|strong=\"G1722\"* Son|strong=\"G5207\"*, how|strong=\"G5613\"* unceasingly I|strong=\"G1473\"* make|strong=\"G4160\"* mention|strong=\"G3417\"* of|strong=\"G5207\"* you|strong=\"G5210\"* always in|strong=\"G1722\"* my|strong=\"G1722\"* prayers," + }, + { + "verseNum": 10, + "text": "requesting, if|strong=\"G1487\"* by|strong=\"G1722\"* any|strong=\"G1487\"* means|strong=\"G1513\"* now|strong=\"G2235\"* at|strong=\"G1722\"* last|strong=\"G4218\"* I|strong=\"G1473\"* may|strong=\"G2316\"* be|strong=\"G2316\"* prospered by|strong=\"G1722\"* the|strong=\"G1722\"* will|strong=\"G2307\"* of|strong=\"G2316\"* God|strong=\"G2316\"* to|strong=\"G4314\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* I|strong=\"G1063\"* long|strong=\"G1971\"* to|strong=\"G1519\"* see|strong=\"G3708\"* you|strong=\"G5210\"*, that|strong=\"G2443\"* I|strong=\"G1063\"* may|strong=\"G2443\"* impart|strong=\"G3330\"* to|strong=\"G1519\"* you|strong=\"G5210\"* some|strong=\"G5100\"* spiritual|strong=\"G4152\"* gift|strong=\"G5486\"*, to|strong=\"G1519\"* the|strong=\"G1519\"* end|strong=\"G1519\"* that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2443\"* be|strong=\"G1519\"* established|strong=\"G4741\"*;" + }, + { + "verseNum": 12, + "text": "that|strong=\"G3588\"* is|strong=\"G1510\"*, that|strong=\"G3588\"* I|strong=\"G1473\"* with|strong=\"G1722\"* you|strong=\"G5210\"* may|strong=\"G2532\"* be|strong=\"G1510\"* encouraged|strong=\"G4837\"* in|strong=\"G1722\"* you|strong=\"G5210\"*, each|strong=\"G1223\"* of|strong=\"G1223\"* us|strong=\"G1722\"* by|strong=\"G1223\"* the|strong=\"G1722\"* other|strong=\"G1161\"*’s faith|strong=\"G4102\"*, both|strong=\"G2532\"* yours|strong=\"G4771\"* and|strong=\"G2532\"* mine|strong=\"G1473\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"G1161\"* I|strong=\"G2532\"* don’t|strong=\"G3588\"* desire|strong=\"G2309\"* to|strong=\"G4314\"* have|strong=\"G2192\"* you|strong=\"G5210\"* unaware|strong=\"G3756\"*, brothers, that|strong=\"G3754\"* I|strong=\"G2532\"* often|strong=\"G4178\"* planned|strong=\"G4388\"* to|strong=\"G4314\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"* (and|strong=\"G2532\"* was|strong=\"G3588\"* hindered|strong=\"G2967\"* so|strong=\"G2443\"* far|strong=\"G3588\"*), that|strong=\"G3754\"* I|strong=\"G2532\"* might|strong=\"G2532\"* have|strong=\"G2192\"* some|strong=\"G5100\"* fruit|strong=\"G2590\"* among|strong=\"G1722\"* you|strong=\"G5210\"* also|strong=\"G2532\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* among|strong=\"G1722\"* the|strong=\"G1722\"* rest|strong=\"G3062\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"G2532\"* am|strong=\"G1510\"* debtor|strong=\"G3781\"* both|strong=\"G2532\"* to|strong=\"G2532\"* Greeks|strong=\"G1672\"* and|strong=\"G2532\"* to|strong=\"G2532\"* foreigners, both|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* wise|strong=\"G4680\"* and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* foolish|strong=\"G2532\"*." + }, + { + "verseNum": 15, + "text": "So|strong=\"G3779\"* as|strong=\"G1722\"* much as|strong=\"G1722\"* is|strong=\"G3588\"* in|strong=\"G1722\"* me|strong=\"G1473\"*, I|strong=\"G1473\"* am|strong=\"G1473\"* eager|strong=\"G4289\"* to|strong=\"G2532\"* preach|strong=\"G2097\"* the|strong=\"G1722\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* to|strong=\"G2532\"* you|strong=\"G5210\"* also|strong=\"G2532\"* who|strong=\"G3588\"* are|strong=\"G3588\"* in|strong=\"G1722\"* Rome|strong=\"G4516\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* I|strong=\"G2532\"* am|strong=\"G1510\"* not|strong=\"G3756\"* ashamed|strong=\"G1870\"* of|strong=\"G2316\"* the|strong=\"G2532\"* Good|strong=\"G3956\"* News|strong=\"G2098\"* of|strong=\"G2316\"* Christ, because|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* power|strong=\"G1411\"* of|strong=\"G2316\"* God|strong=\"G2316\"* for|strong=\"G1063\"* salvation|strong=\"G4991\"* for|strong=\"G1063\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* believes|strong=\"G4100\"*, for|strong=\"G1063\"* the|strong=\"G2532\"* Jew|strong=\"G2453\"* first|strong=\"G4413\"*, and|strong=\"G2532\"* also|strong=\"G2532\"* for|strong=\"G1063\"* the|strong=\"G2532\"* Greek|strong=\"G1672\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* in|strong=\"G1722\"* it|strong=\"G1161\"* is|strong=\"G3588\"* revealed God|strong=\"G2316\"*’s righteousness|strong=\"G1343\"* from|strong=\"G1537\"* faith|strong=\"G4102\"* to|strong=\"G1519\"* faith|strong=\"G4102\"*. As|strong=\"G2531\"* it|strong=\"G1161\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “But|strong=\"G1161\"* the|strong=\"G1722\"* righteous|strong=\"G1342\"* shall|strong=\"G2316\"* live|strong=\"G2198\"* by|strong=\"G1722\"* faith|strong=\"G4102\"*.”+ 1:17 Habakkuk 2:4*" + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* wrath|strong=\"G3709\"* of|strong=\"G2316\"* God|strong=\"G2316\"* is|strong=\"G3588\"* revealed from|strong=\"G2532\"* heaven|strong=\"G3772\"* against|strong=\"G1909\"* all|strong=\"G3956\"* ungodliness and|strong=\"G2532\"* unrighteousness of|strong=\"G2316\"* men|strong=\"G3956\"* who|strong=\"G3588\"* suppress|strong=\"G2722\"* the|strong=\"G1722\"* truth in|strong=\"G1722\"* unrighteousness," + }, + { + "verseNum": 19, + "text": "because|strong=\"G1063\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G1510\"* known|strong=\"G1110\"* of|strong=\"G2316\"* God|strong=\"G2316\"* is|strong=\"G1510\"* revealed|strong=\"G5319\"* in|strong=\"G1722\"* them|strong=\"G3588\"*, for|strong=\"G1063\"* God|strong=\"G2316\"* revealed|strong=\"G5319\"* it|strong=\"G1063\"* to|strong=\"G1722\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* the|strong=\"G2532\"* invisible things|strong=\"G3588\"* of|strong=\"G2532\"* him|strong=\"G3588\"* since|strong=\"G1063\"* the|strong=\"G2532\"* creation|strong=\"G2937\"* of|strong=\"G2532\"* the|strong=\"G2532\"* world|strong=\"G2889\"* are|strong=\"G1510\"* clearly|strong=\"G2529\"* seen|strong=\"G2529\"*, being|strong=\"G1510\"* perceived through|strong=\"G3539\"* the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G3588\"* are|strong=\"G1510\"* made|strong=\"G4161\"*, even|strong=\"G2532\"* his|strong=\"G1438\"* everlasting power|strong=\"G1411\"* and|strong=\"G2532\"* divinity, that|strong=\"G3588\"* they|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G1510\"* without|strong=\"G2532\"* excuse." + }, + { + "verseNum": 21, + "text": "Because|strong=\"G1360\"* knowing|strong=\"G1097\"* God|strong=\"G2316\"*, they|strong=\"G2532\"* didn’t|strong=\"G3588\"* glorify|strong=\"G1392\"* him|strong=\"G3588\"* as|strong=\"G5613\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* didn’t|strong=\"G3588\"* give|strong=\"G2168\"* thanks|strong=\"G2168\"*, but|strong=\"G2532\"* became|strong=\"G3154\"* vain|strong=\"G2532\"* in|strong=\"G1722\"* their|strong=\"G2532\"* reasoning|strong=\"G1261\"*, and|strong=\"G2532\"* their|strong=\"G2532\"* senseless heart|strong=\"G2588\"* was|strong=\"G3588\"* darkened|strong=\"G4654\"*." + }, + { + "verseNum": 22, + "text": "Professing|strong=\"G5335\"* themselves|strong=\"G5335\"* to|strong=\"G1510\"* be|strong=\"G1510\"* wise|strong=\"G4680\"*, they|strong=\"G1510\"* became|strong=\"G3471\"* fools|strong=\"G3471\"*," + }, + { + "verseNum": 23, + "text": "and|strong=\"G2532\"* traded the|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* the|strong=\"G1722\"* incorruptible God|strong=\"G2316\"* for|strong=\"G1722\"* the|strong=\"G1722\"* likeness|strong=\"G3667\"* of|strong=\"G2316\"* an|strong=\"G2532\"* image|strong=\"G1504\"* of|strong=\"G2316\"* corruptible|strong=\"G5349\"* man|strong=\"G2316\"*, and|strong=\"G2532\"* of|strong=\"G2316\"* birds|strong=\"G4071\"*, four-footed|strong=\"G5074\"* animals|strong=\"G5074\"*, and|strong=\"G2532\"* creeping|strong=\"G2532\"* things|strong=\"G3588\"*." + }, + { + "verseNum": 24, + "text": "Therefore|strong=\"G1352\"* God|strong=\"G2316\"* also|strong=\"G2316\"* gave|strong=\"G3860\"* them|strong=\"G3588\"* up|strong=\"G3860\"* in|strong=\"G1722\"* the|strong=\"G1722\"* lusts|strong=\"G1939\"* of|strong=\"G2316\"* their|strong=\"G1438\"* hearts|strong=\"G2588\"* to|strong=\"G1519\"* uncleanness, that|strong=\"G3588\"* their|strong=\"G1438\"* bodies|strong=\"G4983\"* should|strong=\"G2316\"* be|strong=\"G1519\"* dishonored among|strong=\"G1722\"* themselves|strong=\"G1438\"*;" + }, + { + "verseNum": 25, + "text": "who|strong=\"G3739\"* exchanged|strong=\"G3337\"* the|strong=\"G1722\"* truth of|strong=\"G2316\"* God|strong=\"G2316\"* for|strong=\"G1519\"* a|strong=\"G2532\"* lie|strong=\"G5579\"*, and|strong=\"G2532\"* worshiped|strong=\"G4573\"* and|strong=\"G2532\"* served|strong=\"G3000\"* the|strong=\"G1722\"* creature|strong=\"G2937\"* rather|strong=\"G3844\"* than|strong=\"G3844\"* the|strong=\"G1722\"* Creator|strong=\"G2936\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* blessed|strong=\"G2128\"* forever|strong=\"G1519\"*. Amen." + }, + { + "verseNum": 26, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* reason|strong=\"G1223\"*, God|strong=\"G2316\"* gave|strong=\"G3860\"* them|strong=\"G3588\"* up|strong=\"G3860\"* to|strong=\"G1519\"* vile passions|strong=\"G3806\"*. For|strong=\"G1063\"* their|strong=\"G1438\"* women|strong=\"G2338\"* changed|strong=\"G3337\"* the|strong=\"G1519\"* natural|strong=\"G5446\"* function|strong=\"G5540\"* into|strong=\"G1519\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* against|strong=\"G1519\"* nature|strong=\"G5449\"*." + }, + { + "verseNum": 27, + "text": "Likewise|strong=\"G3668\"* also|strong=\"G2532\"* the|strong=\"G1722\"* men|strong=\"G3588\"*, leaving|strong=\"G3588\"* the|strong=\"G1722\"* natural|strong=\"G5446\"* function|strong=\"G5540\"* of|strong=\"G2532\"* the|strong=\"G1722\"* woman|strong=\"G1572\"*, burned|strong=\"G1722\"* in|strong=\"G1722\"* their|strong=\"G1438\"* lust toward|strong=\"G1519\"* one|strong=\"G3739\"* another|strong=\"G1438\"*, men|strong=\"G3588\"* doing|strong=\"G2716\"* what|strong=\"G3739\"* is|strong=\"G3588\"* inappropriate with|strong=\"G1722\"* men|strong=\"G3588\"*, and|strong=\"G2532\"* receiving in|strong=\"G1722\"* themselves|strong=\"G1438\"* the|strong=\"G1722\"* due|strong=\"G1163\"* penalty of|strong=\"G2532\"* their|strong=\"G1438\"* error|strong=\"G4106\"*." + }, + { + "verseNum": 28, + "text": "Even|strong=\"G2532\"* as|strong=\"G2531\"* they|strong=\"G2532\"* refused|strong=\"G3756\"* to|strong=\"G1519\"* have|strong=\"G2192\"* God|strong=\"G2316\"* in|strong=\"G1722\"* their|strong=\"G1438\"* knowledge|strong=\"G1922\"*, God|strong=\"G2316\"* gave|strong=\"G3860\"* them|strong=\"G3588\"* up|strong=\"G3860\"* to|strong=\"G1519\"* a|strong=\"G2192\"* reprobate mind|strong=\"G3563\"*, to|strong=\"G1519\"* do|strong=\"G4160\"* those|strong=\"G3588\"* things|strong=\"G3588\"* which|strong=\"G3588\"* are|strong=\"G3588\"* not|strong=\"G3756\"* fitting;" + }, + { + "verseNum": 29, + "text": "being filled|strong=\"G4137\"* with|strong=\"G4137\"* all|strong=\"G3956\"* unrighteousness, sexual immorality, wickedness|strong=\"G4189\"*, covetousness|strong=\"G4124\"*, malice|strong=\"G2549\"*; full|strong=\"G3324\"* of|strong=\"G3956\"* envy|strong=\"G5355\"*, murder|strong=\"G5408\"*, strife|strong=\"G2054\"*, deceit|strong=\"G1388\"*, evil|strong=\"G2549\"* habits, secret slanderers," + }, + { + "verseNum": 30, + "text": "backbiters|strong=\"G2637\"*, hateful to|strong=\"G2556\"* God|strong=\"G2319\"*, insolent|strong=\"G5197\"*, arrogant|strong=\"G5244\"*, boastful, inventors|strong=\"G2182\"* of|strong=\"G1118\"* evil|strong=\"G2556\"* things|strong=\"G2556\"*, disobedient to|strong=\"G2556\"* parents|strong=\"G1118\"*," + }, + { + "verseNum": 31, + "text": "without understanding, covenant breakers, without natural affection, unforgiving, unmerciful;" + }, + { + "verseNum": 32, + "text": "who|strong=\"G3588\"*, knowing|strong=\"G1921\"* the|strong=\"G2532\"* ordinance|strong=\"G1345\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, that|strong=\"G3754\"* those|strong=\"G3588\"* who|strong=\"G3588\"* practice|strong=\"G4238\"* such|strong=\"G5108\"* things|strong=\"G3588\"* are|strong=\"G1510\"* worthy of|strong=\"G2316\"* death|strong=\"G2288\"*, not|strong=\"G3756\"* only|strong=\"G3440\"* do|strong=\"G4160\"* the|strong=\"G2532\"* same|strong=\"G2532\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* approve|strong=\"G4909\"* of|strong=\"G2316\"* those|strong=\"G3588\"* who|strong=\"G3588\"* practice|strong=\"G4238\"* them|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G1352\"* you|strong=\"G3739\"* are|strong=\"G1510\"* without|strong=\"G3588\"* excuse, O|strong=\"G5599\"* man|strong=\"G3956\"*, whoever|strong=\"G3739\"* you|strong=\"G3739\"* are|strong=\"G1510\"* who|strong=\"G3739\"* judge|strong=\"G2919\"*. For|strong=\"G1063\"* in|strong=\"G1722\"* that|strong=\"G3739\"* which|strong=\"G3739\"* you|strong=\"G3739\"* judge|strong=\"G2919\"* another|strong=\"G2087\"*, you|strong=\"G3739\"* condemn|strong=\"G2632\"* yourself|strong=\"G4572\"*. For|strong=\"G1063\"* you|strong=\"G3739\"* who|strong=\"G3739\"* judge|strong=\"G2919\"* practice|strong=\"G4238\"* the|strong=\"G1722\"* same|strong=\"G3739\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 2, + "text": "We|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G1161\"* judgment|strong=\"G2917\"* of|strong=\"G2316\"* God|strong=\"G2316\"* is|strong=\"G1510\"* according|strong=\"G2596\"* to|strong=\"G2596\"* truth against|strong=\"G2596\"* those|strong=\"G3588\"* who|strong=\"G3588\"* practice|strong=\"G4238\"* such|strong=\"G5108\"* things|strong=\"G3588\"*." + }, + { + "verseNum": 3, + "text": "Do|strong=\"G4160\"* you|strong=\"G4771\"* think|strong=\"G3049\"* this|strong=\"G3778\"*, O|strong=\"G5599\"* man|strong=\"G3778\"* who|strong=\"G3588\"* judges|strong=\"G2919\"* those|strong=\"G3588\"* who|strong=\"G3588\"* practice|strong=\"G4238\"* such|strong=\"G5108\"* things|strong=\"G3778\"*, and|strong=\"G2532\"* do|strong=\"G4160\"* the|strong=\"G2532\"* same|strong=\"G3778\"*, that|strong=\"G3754\"* you|strong=\"G4771\"* will|strong=\"G2316\"* escape|strong=\"G1628\"* the|strong=\"G2532\"* judgment|strong=\"G2917\"* of|strong=\"G2316\"* God|strong=\"G2316\"*?" + }, + { + "verseNum": 4, + "text": "Or|strong=\"G2228\"* do|strong=\"G2532\"* you|strong=\"G4771\"* despise|strong=\"G2706\"* the|strong=\"G2532\"* riches|strong=\"G4149\"* of|strong=\"G2316\"* his|strong=\"G1519\"* goodness|strong=\"G5544\"*, forbearance, and|strong=\"G2532\"* patience|strong=\"G3115\"*, not|strong=\"G2532\"* knowing that|strong=\"G3754\"* the|strong=\"G2532\"* goodness|strong=\"G5544\"* of|strong=\"G2316\"* God|strong=\"G2316\"* leads|strong=\"G1519\"* you|strong=\"G4771\"* to|strong=\"G1519\"* repentance|strong=\"G3341\"*?" + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* according|strong=\"G2596\"* to|strong=\"G2532\"* your|strong=\"G2532\"* hardness|strong=\"G4643\"* and|strong=\"G2532\"* unrepentant heart|strong=\"G2588\"* you|strong=\"G4771\"* are|strong=\"G3588\"* treasuring up|strong=\"G2343\"* for|strong=\"G1161\"* yourself|strong=\"G4572\"* wrath|strong=\"G3709\"* in|strong=\"G1722\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G2250\"* wrath|strong=\"G3709\"*, revelation, and|strong=\"G2532\"* of|strong=\"G2250\"* the|strong=\"G1722\"* righteous|strong=\"G1341\"* judgment|strong=\"G1341\"* of|strong=\"G2250\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 6, + "text": "who|strong=\"G3739\"* “will|strong=\"G3739\"* pay back to|strong=\"G2596\"* everyone|strong=\"G1538\"* according|strong=\"G2596\"* to|strong=\"G2596\"* their|strong=\"G2596\"* works|strong=\"G2041\"*:”+ 2:6 Psalms 62:12; Proverbs 24:12*" + }, + { + "verseNum": 7, + "text": "to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* by|strong=\"G2596\"* perseverance|strong=\"G5281\"* in|strong=\"G2596\"* well-doing seek|strong=\"G2212\"* for|strong=\"G2212\"* glory|strong=\"G1391\"*, honor|strong=\"G5092\"*, and|strong=\"G2532\"* incorruptibility, eternal life|strong=\"G2222\"*;" + }, + { + "verseNum": 8, + "text": "but|strong=\"G1161\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* self-seeking and|strong=\"G2532\"* don’t|strong=\"G3588\"* obey|strong=\"G3982\"* the|strong=\"G2532\"* truth, but|strong=\"G1161\"* obey|strong=\"G3982\"* unrighteousness, will|strong=\"G2532\"* be|strong=\"G2532\"* wrath|strong=\"G3709\"*, indignation|strong=\"G2372\"*," + }, + { + "verseNum": 9, + "text": "oppression, and|strong=\"G2532\"* anguish|strong=\"G2347\"* on|strong=\"G1909\"* every|strong=\"G3956\"* soul|strong=\"G5590\"* of|strong=\"G2532\"* man|strong=\"G3956\"* who|strong=\"G3588\"* does|strong=\"G2716\"* evil|strong=\"G2556\"*, to|strong=\"G2532\"* the|strong=\"G2532\"* Jew|strong=\"G2453\"* first|strong=\"G4413\"*, and|strong=\"G2532\"* also|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Greek|strong=\"G1672\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* glory|strong=\"G1391\"*, honor|strong=\"G5092\"*, and|strong=\"G2532\"* peace|strong=\"G1515\"* go|strong=\"G2532\"* to|strong=\"G2532\"* every|strong=\"G3956\"* man|strong=\"G3956\"* who|strong=\"G3588\"* does|strong=\"G2038\"* good|strong=\"G3956\"*, to|strong=\"G2532\"* the|strong=\"G2532\"* Jew|strong=\"G2453\"* first|strong=\"G4413\"*, and|strong=\"G2532\"* also|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Greek|strong=\"G1672\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* there|strong=\"G1063\"* is|strong=\"G1510\"* no|strong=\"G3756\"* partiality|strong=\"G4382\"* with|strong=\"G3844\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* have|strong=\"G2532\"* sinned without|strong=\"G2532\"* the|strong=\"G1722\"* law|strong=\"G3551\"* will|strong=\"G2532\"* also|strong=\"G2532\"* perish without|strong=\"G2532\"* the|strong=\"G1722\"* law|strong=\"G3551\"*. As|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* have|strong=\"G2532\"* sinned under|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* will|strong=\"G2532\"* be|strong=\"G2532\"* judged|strong=\"G2919\"* by|strong=\"G1223\"* the|strong=\"G1722\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* it|strong=\"G1063\"* isn’t|strong=\"G3588\"* the|strong=\"G3588\"* hearers of|strong=\"G2316\"* the|strong=\"G3588\"* law|strong=\"G3551\"* who|strong=\"G3588\"* are|strong=\"G3588\"* righteous|strong=\"G1342\"* before|strong=\"G3844\"* God|strong=\"G2316\"*, but|strong=\"G1063\"* the|strong=\"G3588\"* doers|strong=\"G4163\"* of|strong=\"G2316\"* the|strong=\"G3588\"* law|strong=\"G3551\"* will|strong=\"G2316\"* be|strong=\"G3756\"* justified|strong=\"G1344\"*" + }, + { + "verseNum": 14, + "text": "(for|strong=\"G1063\"* when|strong=\"G3752\"* Gentiles|strong=\"G1484\"* who|strong=\"G3588\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* the|strong=\"G3588\"* law|strong=\"G3551\"* do|strong=\"G4160\"* by|strong=\"G1438\"* nature|strong=\"G5449\"* the|strong=\"G3588\"* things|strong=\"G3778\"* of|strong=\"G3551\"* the|strong=\"G3588\"* law|strong=\"G3551\"*, these|strong=\"G3778\"*, not|strong=\"G3361\"* having|strong=\"G2192\"* the|strong=\"G3588\"* law|strong=\"G3551\"*, are|strong=\"G1510\"* a|strong=\"G2192\"* law|strong=\"G3551\"* to|strong=\"G3361\"* themselves|strong=\"G1438\"*," + }, + { + "verseNum": 15, + "text": "in|strong=\"G1722\"* that|strong=\"G3588\"* they|strong=\"G2532\"* show|strong=\"G1731\"* the|strong=\"G1722\"* work|strong=\"G2041\"* of|strong=\"G2532\"* the|strong=\"G1722\"* law|strong=\"G3551\"* written|strong=\"G1123\"* in|strong=\"G1722\"* their|strong=\"G2532\"* hearts|strong=\"G2588\"*, their|strong=\"G2532\"* conscience|strong=\"G4893\"* testifying with|strong=\"G1722\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* their|strong=\"G2532\"* thoughts|strong=\"G3053\"* among|strong=\"G1722\"* themselves|strong=\"G1722\"* accusing|strong=\"G2723\"* or|strong=\"G2228\"* else|strong=\"G2228\"* excusing them|strong=\"G3588\"*)" + }, + { + "verseNum": 16, + "text": "in|strong=\"G1722\"* the|strong=\"G1722\"* day|strong=\"G2250\"* when|strong=\"G3753\"* God|strong=\"G2316\"* will|strong=\"G2316\"* judge|strong=\"G2919\"* the|strong=\"G1722\"* secrets|strong=\"G2927\"* of|strong=\"G2250\"* men|strong=\"G3588\"*, according|strong=\"G2596\"* to|strong=\"G2596\"* my|strong=\"G1722\"* Good|strong=\"G1223\"* News|strong=\"G2098\"*, by|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 17, + "text": "Indeed|strong=\"G2532\"* you|strong=\"G4771\"* bear|strong=\"G2532\"* the|strong=\"G1722\"* name|strong=\"G2028\"* of|strong=\"G2316\"* a|strong=\"G2532\"* Jew|strong=\"G2453\"*, rest|strong=\"G1879\"* on|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, glory|strong=\"G2744\"* in|strong=\"G1722\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 18, + "text": "know|strong=\"G1097\"* his|strong=\"G2532\"* will|strong=\"G2307\"*, and|strong=\"G2532\"* approve|strong=\"G1381\"* the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G3588\"* are|strong=\"G3588\"* excellent|strong=\"G1308\"*, being|strong=\"G2532\"* instructed|strong=\"G2727\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* law|strong=\"G3551\"*," + }, + { + "verseNum": 19, + "text": "and|strong=\"G5037\"* are|strong=\"G1510\"* confident|strong=\"G3982\"* that|strong=\"G3588\"* you|strong=\"G1722\"* yourself|strong=\"G4572\"* are|strong=\"G1510\"* a|strong=\"G1722\"* guide|strong=\"G3595\"* of|strong=\"G1722\"* the|strong=\"G1722\"* blind|strong=\"G5185\"*, a|strong=\"G1722\"* light|strong=\"G5457\"* to|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* in|strong=\"G1722\"* darkness|strong=\"G4655\"*," + }, + { + "verseNum": 20, + "text": "a|strong=\"G2192\"* corrector|strong=\"G3810\"* of|strong=\"G2532\"* the|strong=\"G1722\"* foolish|strong=\"G2532\"*, a|strong=\"G2192\"* teacher|strong=\"G1320\"* of|strong=\"G2532\"* babies, having|strong=\"G2192\"* in|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* the|strong=\"G1722\"* form|strong=\"G3446\"* of|strong=\"G2532\"* knowledge|strong=\"G1108\"* and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G1722\"* truth." + }, + { + "verseNum": 21, + "text": "You|strong=\"G1321\"* therefore|strong=\"G3767\"* who|strong=\"G3588\"* teach|strong=\"G1321\"* another|strong=\"G2087\"*, don’t|strong=\"G3588\"* you|strong=\"G1321\"* teach|strong=\"G1321\"* yourself|strong=\"G4572\"*? You|strong=\"G1321\"* who|strong=\"G3588\"* preach|strong=\"G2784\"* that|strong=\"G3588\"* a|strong=\"G3756\"* man|strong=\"G3361\"* shouldn’t|strong=\"G3588\"* steal|strong=\"G2813\"*, do|strong=\"G3361\"* you|strong=\"G1321\"* steal|strong=\"G2813\"*?" + }, + { + "verseNum": 22, + "text": "You|strong=\"G3004\"* who|strong=\"G3588\"* say|strong=\"G3004\"* a|strong=\"G3004\"* man|strong=\"G3361\"* shouldn’t|strong=\"G3588\"* commit|strong=\"G3431\"* adultery|strong=\"G3431\"*, do|strong=\"G3004\"* you|strong=\"G3004\"* commit|strong=\"G3431\"* adultery|strong=\"G3431\"*? You|strong=\"G3004\"* who|strong=\"G3588\"* abhor idols|strong=\"G1497\"*, do|strong=\"G3004\"* you|strong=\"G3004\"* rob|strong=\"G2416\"* temples|strong=\"G2416\"*?" + }, + { + "verseNum": 23, + "text": "You|strong=\"G3739\"* who|strong=\"G3739\"* glory|strong=\"G2744\"* in|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, do|strong=\"G1223\"* you|strong=\"G3739\"* dishonor God|strong=\"G2316\"* by|strong=\"G1223\"* disobeying the|strong=\"G1722\"* law|strong=\"G3551\"*?" + }, + { + "verseNum": 24, + "text": "For|strong=\"G1063\"* “the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G1223\"* God|strong=\"G2316\"* is|strong=\"G3588\"* blasphemed among|strong=\"G1722\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* because|strong=\"G1223\"* of|strong=\"G1223\"* you|strong=\"G5210\"*,”+ 2:24 Isaiah 52:5; Ezekiel 36:22* just|strong=\"G2531\"* as|strong=\"G2531\"* it|strong=\"G1063\"* is|strong=\"G3588\"* written|strong=\"G1125\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"G1063\"* circumcision|strong=\"G4061\"* indeed|strong=\"G3303\"* profits|strong=\"G5623\"*, if|strong=\"G1437\"* you|strong=\"G4771\"* are|strong=\"G1510\"* a|strong=\"G1096\"* doer of|strong=\"G3551\"* the|strong=\"G1161\"* law|strong=\"G3551\"*, but|strong=\"G1161\"* if|strong=\"G1437\"* you|strong=\"G4771\"* are|strong=\"G1510\"* a|strong=\"G1096\"* transgressor|strong=\"G3848\"* of|strong=\"G3551\"* the|strong=\"G1161\"* law|strong=\"G3551\"*, your|strong=\"G1437\"* circumcision|strong=\"G4061\"* has|strong=\"G1096\"* become|strong=\"G1096\"* uncircumcision." + }, + { + "verseNum": 26, + "text": "If|strong=\"G1437\"* therefore|strong=\"G3767\"* the|strong=\"G1519\"* uncircumcised keep|strong=\"G5442\"* the|strong=\"G1519\"* ordinances|strong=\"G1345\"* of|strong=\"G3551\"* the|strong=\"G1519\"* law|strong=\"G3551\"*, won’t|strong=\"G3588\"* his|strong=\"G1519\"* uncircumcision be|strong=\"G3756\"* accounted|strong=\"G3049\"* as|strong=\"G1519\"* circumcision|strong=\"G4061\"*?" + }, + { + "verseNum": 27, + "text": "Won’t|strong=\"G3588\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* physically|strong=\"G5449\"* uncircumcised, but|strong=\"G2532\"* fulfill the|strong=\"G2532\"* law|strong=\"G3551\"*, judge|strong=\"G2919\"* you|strong=\"G4771\"*, who|strong=\"G3588\"* with|strong=\"G1537\"* the|strong=\"G2532\"* letter|strong=\"G1121\"* and|strong=\"G2532\"* circumcision|strong=\"G4061\"* are|strong=\"G3588\"* a|strong=\"G2532\"* transgressor|strong=\"G3848\"* of|strong=\"G1537\"* the|strong=\"G2532\"* law|strong=\"G3551\"*?" + }, + { + "verseNum": 28, + "text": "For|strong=\"G1063\"* he|strong=\"G3588\"* is|strong=\"G1510\"* not|strong=\"G3756\"* a|strong=\"G1722\"* Jew|strong=\"G2453\"* who|strong=\"G3588\"* is|strong=\"G1510\"* one|strong=\"G3588\"* outwardly|strong=\"G1722\"*, neither|strong=\"G3761\"* is|strong=\"G1510\"* that|strong=\"G3588\"* circumcision|strong=\"G4061\"* which|strong=\"G3588\"* is|strong=\"G1510\"* outward|strong=\"G5318\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*;" + }, + { + "verseNum": 29, + "text": "but|strong=\"G2532\"* he|strong=\"G2532\"* is|strong=\"G3588\"* a|strong=\"G2532\"* Jew|strong=\"G2453\"* who|strong=\"G3739\"* is|strong=\"G3588\"* one|strong=\"G3739\"* inwardly|strong=\"G2927\"*, and|strong=\"G2532\"* circumcision|strong=\"G4061\"* is|strong=\"G3588\"* that|strong=\"G3739\"* of|strong=\"G1537\"* the|strong=\"G1722\"* heart|strong=\"G2588\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* spirit|strong=\"G4151\"*, not|strong=\"G3756\"* in|strong=\"G1722\"* the|strong=\"G1722\"* letter|strong=\"G1121\"*; whose|strong=\"G3739\"* praise|strong=\"G1868\"* is|strong=\"G3588\"* not|strong=\"G3756\"* from|strong=\"G1537\"* men|strong=\"G3588\"*, but|strong=\"G2532\"* from|strong=\"G1537\"* God|strong=\"G2316\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"G3767\"* what|strong=\"G5101\"* advantage|strong=\"G4053\"* does|strong=\"G5101\"* the|strong=\"G3588\"* Jew|strong=\"G2453\"* have|strong=\"G5101\"*? Or|strong=\"G2228\"* what|strong=\"G5101\"* is|strong=\"G3588\"* the|strong=\"G3588\"* profit|strong=\"G5622\"* of|strong=\"G2228\"* circumcision|strong=\"G4061\"*?" + }, + { + "verseNum": 2, + "text": "Much|strong=\"G4183\"* in|strong=\"G2596\"* every|strong=\"G3956\"* way|strong=\"G5158\"*! Because|strong=\"G3754\"* first|strong=\"G4413\"* of|strong=\"G2316\"* all|strong=\"G3956\"*, they|strong=\"G3588\"* were|strong=\"G3588\"* entrusted|strong=\"G4100\"* with|strong=\"G2316\"* the|strong=\"G3956\"* revelations of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* what|strong=\"G5101\"* if|strong=\"G1487\"* some|strong=\"G5100\"* were|strong=\"G3588\"* without|strong=\"G3361\"* faith|strong=\"G4102\"*? Will|strong=\"G2316\"* their|strong=\"G3588\"* lack|strong=\"G5101\"* of|strong=\"G2316\"* faith|strong=\"G4102\"* nullify|strong=\"G2673\"* the|strong=\"G3588\"* faithfulness|strong=\"G4102\"* of|strong=\"G2316\"* God|strong=\"G2316\"*?" + }, + { + "verseNum": 4, + "text": "May|strong=\"G2532\"* it|strong=\"G2532\"* never|strong=\"G3361\"* be|strong=\"G1096\"*! Yes|strong=\"G1161\"*, let|strong=\"G1096\"* God|strong=\"G2316\"* be|strong=\"G1096\"* found|strong=\"G1096\"* true|strong=\"G3588\"*, but|strong=\"G1161\"* every|strong=\"G3956\"* man|strong=\"G3956\"* a|strong=\"G1096\"* liar|strong=\"G5583\"*. As|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* our|strong=\"G2316\"* unrighteousness commends|strong=\"G4921\"* the|strong=\"G1161\"* righteousness|strong=\"G1343\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, what|strong=\"G5101\"* will|strong=\"G2316\"* we|strong=\"G2249\"* say|strong=\"G3004\"*? Is|strong=\"G3588\"* God|strong=\"G2316\"* unrighteous who|strong=\"G5101\"* inflicts|strong=\"G2018\"* wrath|strong=\"G3709\"*? I|strong=\"G1473\"* speak|strong=\"G3004\"* like|strong=\"G2596\"* men|strong=\"G3588\"* do|strong=\"G5101\"*." + }, + { + "verseNum": 6, + "text": "May|strong=\"G2889\"* it|strong=\"G1893\"* never|strong=\"G3361\"* be|strong=\"G1096\"*! For|strong=\"G2316\"* then|strong=\"G1893\"* how|strong=\"G4459\"* will|strong=\"G2316\"* God|strong=\"G2316\"* judge|strong=\"G2919\"* the|strong=\"G3588\"* world|strong=\"G2889\"*?" + }, + { + "verseNum": 7, + "text": "For|strong=\"G1519\"* if|strong=\"G1487\"* the|strong=\"G1722\"* truth of|strong=\"G2316\"* God|strong=\"G2316\"* through|strong=\"G1722\"* my|strong=\"G1699\"* lie|strong=\"G5582\"* abounded|strong=\"G4052\"* to|strong=\"G1519\"* his|strong=\"G1519\"* glory|strong=\"G1391\"*, why|strong=\"G5101\"* am|strong=\"G2504\"* I|strong=\"G2504\"* also|strong=\"G2504\"* still|strong=\"G2089\"* judged|strong=\"G2919\"* as|strong=\"G5613\"* a|strong=\"G5613\"* sinner?" + }, + { + "verseNum": 8, + "text": "Why|strong=\"G2443\"* not|strong=\"G3361\"* (as|strong=\"G2531\"* we|strong=\"G2249\"* are|strong=\"G1510\"* slanderously reported|strong=\"G3004\"*, and|strong=\"G2532\"* as|strong=\"G2531\"* some|strong=\"G5100\"* affirm|strong=\"G5100\"* that|strong=\"G3754\"* we|strong=\"G2249\"* say|strong=\"G3004\"*), “Let|strong=\"G1510\"*’s do|strong=\"G4160\"* evil|strong=\"G2556\"*, that|strong=\"G3754\"* good|strong=\"G3588\"* may|strong=\"G2532\"* come|strong=\"G2064\"*?” Those|strong=\"G3588\"* who|strong=\"G3739\"* say|strong=\"G3004\"* so|strong=\"G2443\"* are|strong=\"G1510\"* justly condemned|strong=\"G2917\"*." + }, + { + "verseNum": 9, + "text": "What|strong=\"G5101\"* then|strong=\"G3767\"*? Are|strong=\"G1510\"* we|strong=\"G1063\"* better|strong=\"G4284\"* than|strong=\"G2532\"* they|strong=\"G2532\"*? No|strong=\"G3756\"*, in|strong=\"G2532\"* no|strong=\"G3756\"* way|strong=\"G3956\"*. For|strong=\"G1063\"* we|strong=\"G1063\"* previously warned both|strong=\"G2532\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* Greeks|strong=\"G1672\"* that|strong=\"G3956\"* they|strong=\"G2532\"* are|strong=\"G1510\"* all|strong=\"G3956\"* under|strong=\"G5259\"* sin." + }, + { + "verseNum": 10, + "text": "As|strong=\"G2531\"* it|strong=\"G3754\"* is|strong=\"G1510\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 11, + "text": "There|strong=\"G1510\"* is|strong=\"G1510\"* no|strong=\"G3756\"* one|strong=\"G3588\"* who|strong=\"G3588\"* understands|strong=\"G4920\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"G3588\"* have|strong=\"G1510\"* all|strong=\"G3956\"* turned|strong=\"G1578\"* away|strong=\"G1578\"*." + }, + { + "verseNum": 13, + "text": "“Their|strong=\"G3588\"* throat|strong=\"G2995\"* is|strong=\"G3588\"* an|strong=\"G1100\"* open tomb." + }, + { + "verseNum": 14, + "text": "“Their|strong=\"G2532\"* mouth|strong=\"G4750\"* is|strong=\"G3588\"* full|strong=\"G1073\"* of|strong=\"G2532\"* cursing and|strong=\"G2532\"* bitterness|strong=\"G4088\"*.”+ 3:14 Psalms 10:7*" + }, + { + "verseNum": 15, + "text": "“Their|strong=\"G3588\"* feet|strong=\"G4228\"* are|strong=\"G3588\"* swift|strong=\"G3691\"* to|strong=\"G3588\"* shed|strong=\"G1632\"* blood." + }, + { + "verseNum": 16, + "text": "Destruction|strong=\"G4938\"* and|strong=\"G2532\"* misery|strong=\"G5004\"* are|strong=\"G3588\"* in|strong=\"G1722\"* their|strong=\"G2532\"* ways|strong=\"G3598\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"G2532\"* way|strong=\"G3598\"* of|strong=\"G2532\"* peace|strong=\"G1515\"*, they|strong=\"G2532\"* haven’t known|strong=\"G1097\"*.”+ 3:17 Isaiah 59:7-8*" + }, + { + "verseNum": 18, + "text": "“There|strong=\"G1510\"* is|strong=\"G1510\"* no|strong=\"G3756\"* fear|strong=\"G5401\"* of|strong=\"G2316\"* God|strong=\"G2316\"* before|strong=\"G3588\"* their|strong=\"G3588\"* eyes|strong=\"G3788\"*.”+ 3:18 Psalms 36:1*" + }, + { + "verseNum": 19, + "text": "Now|strong=\"G1161\"* we|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* whatever|strong=\"G3745\"* things|strong=\"G3956\"* the|strong=\"G1722\"* law|strong=\"G3551\"* says|strong=\"G3004\"*, it|strong=\"G2532\"* speaks|strong=\"G2980\"* to|strong=\"G2443\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* under|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, that|strong=\"G3754\"* every|strong=\"G3956\"* mouth|strong=\"G4750\"* may|strong=\"G2532\"* be|strong=\"G1096\"* closed|strong=\"G5420\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G1722\"* world|strong=\"G2889\"* may|strong=\"G2532\"* be|strong=\"G1096\"* brought|strong=\"G1096\"* under|strong=\"G1722\"* the|strong=\"G1722\"* judgment of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 20, + "text": "Because|strong=\"G1223\"* by|strong=\"G1223\"* the|strong=\"G3956\"* works|strong=\"G2041\"* of|strong=\"G1537\"* the|strong=\"G3956\"* law|strong=\"G3551\"*, no|strong=\"G3756\"* flesh|strong=\"G4561\"* will|strong=\"G3956\"* be|strong=\"G3756\"* justified|strong=\"G1344\"* in|strong=\"G3956\"* his|strong=\"G3956\"* sight|strong=\"G1799\"*; for|strong=\"G1063\"* through|strong=\"G1223\"* the|strong=\"G3956\"* law|strong=\"G3551\"* comes|strong=\"G1922\"* the|strong=\"G3956\"* knowledge|strong=\"G1922\"* of|strong=\"G1537\"* sin." + }, + { + "verseNum": 21, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* apart|strong=\"G5565\"* from|strong=\"G2532\"* the|strong=\"G2532\"* law|strong=\"G3551\"*, a|strong=\"G2532\"* righteousness|strong=\"G1343\"* of|strong=\"G5259\"* God|strong=\"G2316\"* has|strong=\"G2316\"* been|strong=\"G2532\"* revealed|strong=\"G5319\"*, being|strong=\"G2532\"* testified|strong=\"G3140\"* by|strong=\"G5259\"* the|strong=\"G2532\"* law|strong=\"G3551\"* and|strong=\"G2532\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"*;" + }, + { + "verseNum": 22, + "text": "even|strong=\"G1161\"* the|strong=\"G1519\"* righteousness|strong=\"G1343\"* of|strong=\"G1223\"* God|strong=\"G2316\"* through|strong=\"G1223\"* faith|strong=\"G4102\"* in|strong=\"G1519\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* to|strong=\"G1519\"* all|strong=\"G3956\"* and|strong=\"G1161\"* on|strong=\"G1519\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* believe|strong=\"G4100\"*. For|strong=\"G1063\"* there|strong=\"G1161\"* is|strong=\"G1510\"* no|strong=\"G3756\"* distinction|strong=\"G1293\"*," + }, + { + "verseNum": 23, + "text": "for|strong=\"G1063\"* all|strong=\"G3956\"* have|strong=\"G2532\"* sinned, and|strong=\"G2532\"* fall|strong=\"G5302\"* short|strong=\"G5302\"* of|strong=\"G2532\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2532\"* God|strong=\"G2316\"*;" + }, + { + "verseNum": 24, + "text": "being|strong=\"G5547\"* justified|strong=\"G1344\"* freely|strong=\"G1432\"* by|strong=\"G1223\"* his|strong=\"G1223\"* grace|strong=\"G5485\"* through|strong=\"G1223\"* the|strong=\"G1722\"* redemption that|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 25, + "text": "whom|strong=\"G3739\"* God|strong=\"G2316\"* sent|strong=\"G2316\"* to|strong=\"G1519\"* be|strong=\"G1519\"* an|strong=\"G1519\"* atoning sacrifice+ 3:25 or, a propitiation* through|strong=\"G1223\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* his|strong=\"G1223\"* blood, for|strong=\"G1519\"* a|strong=\"G1519\"* demonstration|strong=\"G1732\"* of|strong=\"G1223\"* his|strong=\"G1223\"* righteousness|strong=\"G1343\"* through|strong=\"G1223\"* the|strong=\"G1722\"* passing over|strong=\"G1519\"* of|strong=\"G1223\"* prior sins, in|strong=\"G1722\"* God|strong=\"G2316\"*’s forbearance;" + }, + { + "verseNum": 26, + "text": "to|strong=\"G1519\"* demonstrate|strong=\"G1732\"* his|strong=\"G1519\"* righteousness|strong=\"G1343\"* at|strong=\"G1722\"* this|strong=\"G3588\"* present|strong=\"G3568\"* time|strong=\"G2540\"*, that|strong=\"G3588\"* he|strong=\"G2532\"* might|strong=\"G2532\"* himself|strong=\"G1519\"* be|strong=\"G1510\"* just|strong=\"G1342\"* and|strong=\"G2532\"* the|strong=\"G1722\"* justifier|strong=\"G1344\"* of|strong=\"G1537\"* him|strong=\"G3588\"* who|strong=\"G3588\"* has|strong=\"G2316\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 27, + "text": "Where|strong=\"G4226\"* then|strong=\"G3767\"* is|strong=\"G3588\"* the|strong=\"G1223\"* boasting|strong=\"G2746\"*? It|strong=\"G1223\"* is|strong=\"G3588\"* excluded|strong=\"G1576\"*. By|strong=\"G1223\"* what|strong=\"G4169\"* kind|strong=\"G4169\"* of|strong=\"G1223\"* law|strong=\"G3551\"*? Of|strong=\"G1223\"* works|strong=\"G2041\"*? No|strong=\"G3780\"*, but|strong=\"G3767\"* by|strong=\"G1223\"* a|strong=\"G1223\"* law|strong=\"G3551\"* of|strong=\"G1223\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 28, + "text": "We|strong=\"G1063\"* maintain|strong=\"G3049\"* therefore|strong=\"G1063\"* that|strong=\"G1063\"* a|strong=\"G2041\"* man is|strong=\"G4102\"* justified|strong=\"G1344\"* by|strong=\"G1344\"* faith|strong=\"G4102\"* apart|strong=\"G5565\"* from|strong=\"G5565\"* the|strong=\"G1063\"* works|strong=\"G2041\"* of|strong=\"G3551\"* the|strong=\"G1063\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 29, + "text": "Or|strong=\"G2228\"* is|strong=\"G3588\"* God|strong=\"G2316\"* the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* Jews|strong=\"G2453\"* only|strong=\"G3440\"*? Isn’t|strong=\"G3588\"* he|strong=\"G2532\"* the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* Gentiles|strong=\"G1484\"* also|strong=\"G2532\"*? Yes|strong=\"G3483\"*, of|strong=\"G2316\"* Gentiles|strong=\"G1484\"* also|strong=\"G2532\"*," + }, + { + "verseNum": 30, + "text": "since|strong=\"G1537\"* indeed|strong=\"G2532\"* there|strong=\"G2532\"* is|strong=\"G3588\"* one|strong=\"G1520\"* God|strong=\"G2316\"* who|strong=\"G3739\"* will|strong=\"G2316\"* justify|strong=\"G1344\"* the|strong=\"G2532\"* circumcised|strong=\"G4061\"* by|strong=\"G1223\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* the|strong=\"G2532\"* uncircumcised through|strong=\"G1223\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 31, + "text": "Do|strong=\"G1096\"* we|strong=\"G3767\"* then|strong=\"G3767\"* nullify|strong=\"G2673\"* the|strong=\"G1223\"* law|strong=\"G3551\"* through|strong=\"G1223\"* faith|strong=\"G4102\"*? May|strong=\"G4102\"* it|strong=\"G1223\"* never|strong=\"G3361\"* be|strong=\"G1096\"*! No|strong=\"G3361\"*, we|strong=\"G3767\"* establish|strong=\"G2476\"* the|strong=\"G1223\"* law|strong=\"G3551\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "What|strong=\"G5101\"* then|strong=\"G3767\"* will|strong=\"G5101\"* we|strong=\"G2249\"* say|strong=\"G3004\"* that|strong=\"G3588\"* Abraham, our|strong=\"G2596\"* forefather|strong=\"G3962\"*, has|strong=\"G3962\"* found|strong=\"G2147\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G2596\"* flesh|strong=\"G4561\"*?" + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* Abraham was|strong=\"G2316\"* justified|strong=\"G1344\"* by|strong=\"G1537\"* works|strong=\"G2041\"*, he|strong=\"G1063\"* has|strong=\"G2192\"* something|strong=\"G2745\"* to|strong=\"G4314\"* boast|strong=\"G2745\"* about|strong=\"G4314\"*, but|strong=\"G1487\"* not|strong=\"G3756\"* toward|strong=\"G4314\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* what|strong=\"G5101\"* does|strong=\"G5101\"* the|strong=\"G2532\"* Scripture|strong=\"G1124\"* say|strong=\"G3004\"*? “Abraham|strong=\"G4100\"* believed|strong=\"G4100\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G3588\"* accounted|strong=\"G3049\"* to|strong=\"G1519\"* him|strong=\"G3588\"* for|strong=\"G1063\"* righteousness|strong=\"G1343\"*.”+ 4:3 Genesis 15:6*" + }, + { + "verseNum": 4, + "text": "Now|strong=\"G1161\"* to|strong=\"G2596\"* him|strong=\"G3588\"* who|strong=\"G3588\"* works|strong=\"G2038\"*, the|strong=\"G1161\"* reward|strong=\"G3408\"* is|strong=\"G3588\"* not|strong=\"G3756\"* counted|strong=\"G3049\"* as|strong=\"G1161\"* grace|strong=\"G5485\"*, but|strong=\"G1161\"* as|strong=\"G1161\"* something owed." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* to|strong=\"G1519\"* him|strong=\"G3588\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* work|strong=\"G2038\"*, but|strong=\"G1161\"* believes|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"* who|strong=\"G3588\"* justifies|strong=\"G1344\"* the|strong=\"G1519\"* ungodly, his|strong=\"G1519\"* faith|strong=\"G4102\"* is|strong=\"G3588\"* accounted|strong=\"G3049\"* for|strong=\"G1519\"* righteousness|strong=\"G1343\"*." + }, + { + "verseNum": 6, + "text": "Even|strong=\"G2532\"* as|strong=\"G2509\"* David|strong=\"G1138\"* also|strong=\"G2532\"* pronounces blessing|strong=\"G3108\"* on|strong=\"G3049\"* the|strong=\"G2532\"* man|strong=\"G3739\"* to|strong=\"G2532\"* whom|strong=\"G3739\"* God|strong=\"G2316\"* counts righteousness|strong=\"G1343\"* apart|strong=\"G5565\"* from|strong=\"G2532\"* works|strong=\"G2041\"*:" + }, + { + "verseNum": 7, + "text": "“Blessed|strong=\"G3107\"* are|strong=\"G3588\"* they|strong=\"G2532\"* whose|strong=\"G3739\"* iniquities are|strong=\"G3588\"* forgiven," + }, + { + "verseNum": 8, + "text": "Blessed|strong=\"G3107\"* is|strong=\"G3739\"* the|strong=\"G3739\"* man|strong=\"G3361\"* whom|strong=\"G3739\"* the|strong=\"G3739\"* Lord|strong=\"G2962\"* will|strong=\"G3739\"* by|strong=\"G3739\"* no|strong=\"G3756\"* means|strong=\"G3361\"* charge with|strong=\"G2962\"* sin.”+ 4:8 Psalms 32:1-2*" + }, + { + "verseNum": 9, + "text": "Is|strong=\"G3588\"* this|strong=\"G3778\"* blessing|strong=\"G3108\"* then|strong=\"G3767\"* pronounced only|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G2532\"* circumcised|strong=\"G4061\"*, or|strong=\"G2228\"* on|strong=\"G1909\"* the|strong=\"G2532\"* uncircumcised also|strong=\"G2532\"*? For|strong=\"G1063\"* we|strong=\"G1063\"* say|strong=\"G3004\"* that|strong=\"G3588\"* faith|strong=\"G4102\"* was|strong=\"G3588\"* accounted|strong=\"G3049\"* to|strong=\"G1519\"* Abraham for|strong=\"G1063\"* righteousness|strong=\"G1343\"*." + }, + { + "verseNum": 10, + "text": "How|strong=\"G4459\"* then|strong=\"G3767\"* was|strong=\"G1510\"* it|strong=\"G1510\"* counted|strong=\"G3049\"*? When|strong=\"G1722\"* he|strong=\"G1510\"* was|strong=\"G1510\"* in|strong=\"G1722\"* circumcision|strong=\"G4061\"*, or|strong=\"G2228\"* in|strong=\"G1722\"* uncircumcision? Not|strong=\"G3756\"* in|strong=\"G1722\"* circumcision|strong=\"G4061\"*, but|strong=\"G3767\"* in|strong=\"G1722\"* uncircumcision." + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* received|strong=\"G2983\"* the|strong=\"G1722\"* sign|strong=\"G4592\"* of|strong=\"G1223\"* circumcision|strong=\"G4061\"*, a|strong=\"G2532\"* seal|strong=\"G4973\"* of|strong=\"G1223\"* the|strong=\"G1722\"* righteousness|strong=\"G1343\"* of|strong=\"G1223\"* the|strong=\"G1722\"* faith|strong=\"G4102\"* which|strong=\"G3588\"* he|strong=\"G2532\"* had|strong=\"G2532\"* while|strong=\"G1722\"* he|strong=\"G2532\"* was|strong=\"G1510\"* in|strong=\"G1722\"* uncircumcision, that|strong=\"G3588\"* he|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G1510\"* the|strong=\"G1722\"* father|strong=\"G3962\"* of|strong=\"G1223\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* believe|strong=\"G4100\"*, though|strong=\"G2532\"* they|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G1510\"* in|strong=\"G1722\"* uncircumcision, that|strong=\"G3588\"* righteousness|strong=\"G1343\"* might|strong=\"G2532\"* also|strong=\"G2532\"* be|strong=\"G1510\"* accounted|strong=\"G3049\"* to|strong=\"G1519\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"G2532\"* is|strong=\"G3588\"* the|strong=\"G1722\"* father|strong=\"G3962\"* of|strong=\"G1537\"* circumcision|strong=\"G4061\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* not|strong=\"G3756\"* only|strong=\"G3440\"* are|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1722\"* circumcision|strong=\"G4061\"*, but|strong=\"G2532\"* who|strong=\"G3588\"* also|strong=\"G2532\"* walk|strong=\"G4748\"* in|strong=\"G1722\"* the|strong=\"G1722\"* steps|strong=\"G2487\"* of|strong=\"G1537\"* that|strong=\"G3588\"* faith|strong=\"G4102\"* of|strong=\"G1537\"* our|strong=\"G2532\"* father|strong=\"G3962\"* Abraham, which|strong=\"G3588\"* he|strong=\"G2532\"* had|strong=\"G2532\"* in|strong=\"G1722\"* uncircumcision." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* the|strong=\"G1223\"* promise|strong=\"G1860\"* to|strong=\"G3756\"* Abraham and|strong=\"G4102\"* to|strong=\"G3756\"* his|strong=\"G1223\"* offspring that|strong=\"G3588\"* he|strong=\"G3588\"* would|strong=\"G1510\"* be|strong=\"G1510\"* heir|strong=\"G2818\"* of|strong=\"G1223\"* the|strong=\"G1223\"* world|strong=\"G2889\"* wasn’t|strong=\"G3588\"* through|strong=\"G1223\"* the|strong=\"G1223\"* law|strong=\"G3551\"*, but|strong=\"G1063\"* through|strong=\"G1223\"* the|strong=\"G1223\"* righteousness|strong=\"G1343\"* of|strong=\"G1223\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G2532\"* law|strong=\"G3551\"* are|strong=\"G3588\"* heirs|strong=\"G2818\"*, faith|strong=\"G4102\"* is|strong=\"G3588\"* made|strong=\"G2758\"* void|strong=\"G2758\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* is|strong=\"G3588\"* made|strong=\"G2758\"* of|strong=\"G1537\"* no|strong=\"G2532\"* effect|strong=\"G2673\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* the|strong=\"G1161\"* law|strong=\"G3551\"* produces|strong=\"G2716\"* wrath|strong=\"G3709\"*; for|strong=\"G1063\"* where|strong=\"G3757\"* there|strong=\"G1161\"* is|strong=\"G1510\"* no|strong=\"G3756\"* law|strong=\"G3551\"*, neither|strong=\"G3761\"* is|strong=\"G1510\"* there|strong=\"G1161\"* disobedience." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1519\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* it|strong=\"G2532\"* is|strong=\"G1510\"* of|strong=\"G1537\"* faith|strong=\"G4102\"*, that|strong=\"G2443\"* it|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G1510\"* according|strong=\"G2596\"* to|strong=\"G1519\"* grace|strong=\"G5485\"*, to|strong=\"G1519\"* the|strong=\"G2532\"* end|strong=\"G1519\"* that|strong=\"G2443\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* may|strong=\"G2532\"* be|strong=\"G1510\"* sure to|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G2532\"* offspring, not|strong=\"G3756\"* to|strong=\"G1519\"* that|strong=\"G2443\"* only|strong=\"G3440\"* which|strong=\"G3739\"* is|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G2532\"* law|strong=\"G3551\"*, but|strong=\"G2532\"* to|strong=\"G1519\"* that|strong=\"G2443\"* also|strong=\"G2532\"* which|strong=\"G3739\"* is|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G2532\"* faith|strong=\"G4102\"* of|strong=\"G1537\"* Abraham, who|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G2532\"* father|strong=\"G3962\"* of|strong=\"G1537\"* us|strong=\"G1519\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 17, + "text": "As|strong=\"G5613\"* it|strong=\"G2532\"* is|strong=\"G1510\"* written|strong=\"G1125\"*, “I|strong=\"G3739\"* have|strong=\"G2532\"* made|strong=\"G5087\"* you|strong=\"G4771\"* a|strong=\"G5613\"* father|strong=\"G3962\"* of|strong=\"G2316\"* many|strong=\"G4183\"* nations|strong=\"G1484\"*.”+ 4:17 Genesis 17:5* This|strong=\"G3588\"* is|strong=\"G1510\"* in|strong=\"G2532\"* the|strong=\"G2532\"* presence|strong=\"G2713\"* of|strong=\"G2316\"* him|strong=\"G3588\"* whom|strong=\"G3739\"* he|strong=\"G2532\"* believed|strong=\"G4100\"*: God|strong=\"G2316\"*, who|strong=\"G3739\"* gives|strong=\"G2227\"* life|strong=\"G2227\"* to|strong=\"G2532\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, and|strong=\"G2532\"* calls|strong=\"G2564\"* the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G3754\"* are|strong=\"G1510\"* not|strong=\"G3361\"*, as|strong=\"G5613\"* though|strong=\"G5613\"* they|strong=\"G2532\"* were|strong=\"G1510\"*." + }, + { + "verseNum": 18, + "text": "Against|strong=\"G2596\"* hope|strong=\"G1680\"*, Abraham|strong=\"G4100\"* in|strong=\"G1519\"* hope|strong=\"G1680\"* believed|strong=\"G4100\"*, to|strong=\"G1519\"* the|strong=\"G1519\"* end|strong=\"G1519\"* that|strong=\"G3739\"* he|strong=\"G3739\"* might|strong=\"G1484\"* become|strong=\"G1096\"* a|strong=\"G1096\"* father|strong=\"G3962\"* of|strong=\"G3844\"* many|strong=\"G4183\"* nations|strong=\"G1484\"*, according|strong=\"G2596\"* to|strong=\"G1519\"* that|strong=\"G3739\"* which|strong=\"G3739\"* had|strong=\"G1510\"* been|strong=\"G1510\"* spoken|strong=\"G3004\"*, “So|strong=\"G3779\"* will|strong=\"G1510\"* your|strong=\"G1909\"* offspring be|strong=\"G1096\"*.”+ 4:18 Genesis 15:5*" + }, + { + "verseNum": 19, + "text": "Without|strong=\"G3361\"* being|strong=\"G5225\"* weakened in|strong=\"G2532\"* faith|strong=\"G4102\"*, he|strong=\"G2532\"* didn’t|strong=\"G3588\"* consider|strong=\"G2657\"* his|strong=\"G1438\"* own|strong=\"G1438\"* body|strong=\"G4983\"*, already having|strong=\"G2532\"* been|strong=\"G2532\"* worn out|strong=\"G2532\"*, (he|strong=\"G2532\"* being|strong=\"G5225\"* about|strong=\"G4225\"* a|strong=\"G2532\"* hundred|strong=\"G1541\"* years|strong=\"G1541\"* old|strong=\"G1541\"*), and|strong=\"G2532\"* the|strong=\"G2532\"* deadness|strong=\"G3500\"* of|strong=\"G2532\"* Sarah|strong=\"G4564\"*’s womb|strong=\"G3388\"*." + }, + { + "verseNum": 20, + "text": "Yet|strong=\"G1161\"*, looking to|strong=\"G1519\"* the|strong=\"G1519\"* promise|strong=\"G1860\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, he|strong=\"G1161\"* didn’t|strong=\"G3588\"* waver|strong=\"G1252\"* through|strong=\"G2316\"* unbelief, but|strong=\"G1161\"* grew|strong=\"G1743\"* strong|strong=\"G1743\"* through|strong=\"G2316\"* faith|strong=\"G4102\"*, giving|strong=\"G1325\"* glory|strong=\"G1391\"* to|strong=\"G1519\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 21, + "text": "and|strong=\"G2532\"* being|strong=\"G1510\"* fully|strong=\"G4135\"* assured|strong=\"G4135\"* that|strong=\"G3754\"* what|strong=\"G3739\"* he|strong=\"G2532\"* had|strong=\"G2532\"* promised|strong=\"G1861\"*, he|strong=\"G2532\"* was|strong=\"G1510\"* also|strong=\"G2532\"* able|strong=\"G1415\"* to|strong=\"G2532\"* perform|strong=\"G4160\"*." + }, + { + "verseNum": 22, + "text": "Therefore|strong=\"G1352\"* it|strong=\"G2532\"* also|strong=\"G2532\"* was|strong=\"G2532\"* “credited|strong=\"G3049\"* to|strong=\"G1519\"* him|strong=\"G2532\"* for|strong=\"G1519\"* righteousness|strong=\"G1343\"*.”+ 4:22 Genesis 15:6*" + }, + { + "verseNum": 23, + "text": "Now|strong=\"G1161\"* it|strong=\"G3754\"* was|strong=\"G3748\"* not|strong=\"G3756\"* written|strong=\"G1125\"* that|strong=\"G3754\"* it|strong=\"G3754\"* was|strong=\"G3748\"* accounted|strong=\"G3049\"* to|strong=\"G3756\"* him|strong=\"G3049\"* for|strong=\"G3754\"* his|strong=\"G1223\"* sake|strong=\"G1223\"* alone|strong=\"G3441\"*," + }, + { + "verseNum": 24, + "text": "but|strong=\"G2532\"* for|strong=\"G1223\"* our|strong=\"G2424\"* sake|strong=\"G1223\"* also|strong=\"G2532\"*, to|strong=\"G2532\"* whom|strong=\"G3739\"* it|strong=\"G2532\"* will|strong=\"G3195\"* be|strong=\"G2532\"* accounted|strong=\"G3049\"*, who|strong=\"G3739\"* believe|strong=\"G4100\"* in|strong=\"G1909\"* him|strong=\"G3588\"* who|strong=\"G3739\"* raised|strong=\"G1453\"* Jesus|strong=\"G2424\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*," + }, + { + "verseNum": 25, + "text": "who|strong=\"G3739\"* was|strong=\"G3588\"* delivered|strong=\"G3860\"* up|strong=\"G1453\"* for|strong=\"G1223\"* our|strong=\"G2532\"* trespasses|strong=\"G3900\"*, and|strong=\"G2532\"* was|strong=\"G3588\"* raised|strong=\"G1453\"* for|strong=\"G1223\"* our|strong=\"G2532\"* justification|strong=\"G1347\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Being|strong=\"G2192\"* therefore|strong=\"G3767\"* justified|strong=\"G1344\"* by|strong=\"G1223\"* faith|strong=\"G4102\"*, we|strong=\"G2249\"* have|strong=\"G2192\"* peace|strong=\"G1515\"* with|strong=\"G4314\"* God|strong=\"G2316\"* through|strong=\"G1223\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*;" + }, + { + "verseNum": 2, + "text": "through|strong=\"G1223\"* whom|strong=\"G3739\"* we|strong=\"G3739\"* also|strong=\"G2532\"* have|strong=\"G2192\"* our|strong=\"G2316\"* access|strong=\"G4318\"* by|strong=\"G1223\"* faith|strong=\"G4102\"* into|strong=\"G1519\"* this|strong=\"G3778\"* grace|strong=\"G5485\"* in|strong=\"G1722\"* which|strong=\"G3739\"* we|strong=\"G3739\"* stand|strong=\"G2476\"*. We|strong=\"G3739\"* rejoice|strong=\"G2744\"* in|strong=\"G1722\"* hope|strong=\"G1680\"* of|strong=\"G1223\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G1223\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 3, + "text": "Not|strong=\"G3756\"* only|strong=\"G3440\"* this|strong=\"G3588\"*, but|strong=\"G1161\"* we|strong=\"G3754\"* also|strong=\"G2532\"* rejoice|strong=\"G2744\"* in|strong=\"G1722\"* our|strong=\"G2532\"* sufferings|strong=\"G2347\"*, knowing|strong=\"G1492\"* that|strong=\"G3754\"* suffering|strong=\"G2347\"* produces|strong=\"G2716\"* perseverance|strong=\"G5281\"*;" + }, + { + "verseNum": 4, + "text": "and|strong=\"G1161\"* perseverance|strong=\"G5281\"*, proven|strong=\"G1382\"* character|strong=\"G1382\"*; and|strong=\"G1161\"* proven|strong=\"G1382\"* character|strong=\"G1382\"*, hope|strong=\"G1680\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"G1161\"* hope|strong=\"G1680\"* doesn’t|strong=\"G3588\"* disappoint|strong=\"G2617\"* us|strong=\"G1325\"*, because|strong=\"G3754\"* God|strong=\"G2316\"*’s love has|strong=\"G2316\"* been|strong=\"G1325\"* poured|strong=\"G1632\"* into|strong=\"G1722\"* our|strong=\"G2316\"* hearts|strong=\"G2588\"* through|strong=\"G1223\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* who|strong=\"G3588\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G1722\"* us|strong=\"G1325\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1063\"* while|strong=\"G1510\"* we|strong=\"G2249\"* were|strong=\"G1510\"* yet|strong=\"G2089\"* weak, at|strong=\"G2596\"* the|strong=\"G2596\"* right|strong=\"G2540\"* time|strong=\"G2540\"* Christ|strong=\"G5547\"* died for|strong=\"G1063\"* the|strong=\"G2596\"* ungodly." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* one|strong=\"G5100\"* will|strong=\"G2532\"* hardly|strong=\"G3433\"* die for|strong=\"G1063\"* a|strong=\"G2532\"* righteous|strong=\"G1342\"* man|strong=\"G5100\"*. Yet|strong=\"G2532\"* perhaps|strong=\"G5029\"* for|strong=\"G1063\"* a|strong=\"G2532\"* good|strong=\"G3588\"* person|strong=\"G1342\"* someone|strong=\"G5100\"* would|strong=\"G2532\"* even|strong=\"G2532\"* dare|strong=\"G5111\"* to|strong=\"G2532\"* die." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* God|strong=\"G2316\"* commends|strong=\"G4921\"* his|strong=\"G1438\"* own|strong=\"G1438\"* love toward|strong=\"G1519\"* us|strong=\"G1519\"*, in|strong=\"G1519\"* that|strong=\"G3754\"* while|strong=\"G1161\"* we|strong=\"G2249\"* were|strong=\"G1510\"* yet|strong=\"G2089\"* sinners, Christ|strong=\"G5547\"* died|strong=\"G3588\"* for|strong=\"G3754\"* us|strong=\"G1519\"*." + }, + { + "verseNum": 9, + "text": "Much|strong=\"G4183\"* more|strong=\"G3123\"* then|strong=\"G3767\"*, being|strong=\"G1722\"* now|strong=\"G3568\"* justified|strong=\"G1344\"* by|strong=\"G1223\"* his|strong=\"G1223\"* blood, we|strong=\"G3568\"* will|strong=\"G4183\"* be|strong=\"G3588\"* saved|strong=\"G4982\"* from|strong=\"G3588\"* God|strong=\"G3588\"*’s wrath|strong=\"G3709\"* through|strong=\"G1223\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* while|strong=\"G1722\"* we|strong=\"G1063\"* were|strong=\"G1510\"* enemies|strong=\"G2190\"*, we|strong=\"G1063\"* were|strong=\"G1510\"* reconciled|strong=\"G2644\"* to|strong=\"G1722\"* God|strong=\"G2316\"* through|strong=\"G1223\"* the|strong=\"G1722\"* death|strong=\"G2288\"* of|strong=\"G5207\"* his|strong=\"G1223\"* Son|strong=\"G5207\"*, much|strong=\"G4183\"* more|strong=\"G3123\"*, being|strong=\"G1510\"* reconciled|strong=\"G2644\"*, we|strong=\"G1063\"* will|strong=\"G2316\"* be|strong=\"G1510\"* saved|strong=\"G4982\"* by|strong=\"G1223\"* his|strong=\"G1223\"* life|strong=\"G2222\"*." + }, + { + "verseNum": 11, + "text": "Not|strong=\"G3756\"* only|strong=\"G3440\"* so|strong=\"G2532\"*, but|strong=\"G1161\"* we|strong=\"G2249\"* also|strong=\"G2532\"* rejoice|strong=\"G2744\"* in|strong=\"G1722\"* God|strong=\"G2316\"* through|strong=\"G1223\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, through|strong=\"G1223\"* whom|strong=\"G3739\"* we|strong=\"G2249\"* have|strong=\"G2532\"* now|strong=\"G1161\"* received|strong=\"G2983\"* the|strong=\"G1722\"* reconciliation|strong=\"G2643\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"G1223\"*, as|strong=\"G5618\"* sin entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* world|strong=\"G2889\"* through|strong=\"G1223\"* one|strong=\"G1520\"* man|strong=\"G3778\"*, and|strong=\"G2532\"* death|strong=\"G2288\"* through|strong=\"G1223\"* sin, so|strong=\"G3779\"* death|strong=\"G2288\"* passed|strong=\"G1330\"* to|strong=\"G1519\"* all|strong=\"G3956\"* men|strong=\"G3956\"* because|strong=\"G1223\"* all|strong=\"G3956\"* sinned." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* until|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, sin was|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*; but|strong=\"G1161\"* sin is|strong=\"G1510\"* not|strong=\"G3756\"* charged when|strong=\"G1161\"* there|strong=\"G1161\"* is|strong=\"G1510\"* no|strong=\"G3756\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 14, + "text": "Nevertheless|strong=\"G2532\"* death|strong=\"G2288\"* reigned from|strong=\"G2532\"* Adam until|strong=\"G3360\"* Moses|strong=\"G3475\"*, even|strong=\"G2532\"* over|strong=\"G1909\"* those|strong=\"G3588\"* whose|strong=\"G3739\"* sins weren’t|strong=\"G3588\"* like|strong=\"G5179\"* Adam’s disobedience, who|strong=\"G3739\"* is|strong=\"G1510\"* a|strong=\"G2532\"* foreshadowing of|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3739\"* was|strong=\"G1510\"* to|strong=\"G2532\"* come|strong=\"G3195\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"G2532\"* the|strong=\"G1722\"* free|strong=\"G5486\"* gift|strong=\"G1431\"* isn’t|strong=\"G3588\"* like|strong=\"G5613\"* the|strong=\"G1722\"* trespass|strong=\"G3900\"*. For|strong=\"G1063\"* if|strong=\"G1487\"* by|strong=\"G1722\"* the|strong=\"G1722\"* trespass|strong=\"G3900\"* of|strong=\"G2316\"* the|strong=\"G1722\"* one|strong=\"G1520\"* the|strong=\"G1722\"* many|strong=\"G4183\"* died|strong=\"G3588\"*, much|strong=\"G4183\"* more|strong=\"G3123\"* did|strong=\"G2532\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* the|strong=\"G1722\"* gift|strong=\"G1431\"* by|strong=\"G1722\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* the|strong=\"G1722\"* one|strong=\"G1520\"* man|strong=\"G1520\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, abound|strong=\"G4052\"* to|strong=\"G1519\"* the|strong=\"G1722\"* many|strong=\"G4183\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"G2532\"* gift|strong=\"G5486\"* is|strong=\"G3588\"* not|strong=\"G3756\"* as|strong=\"G5613\"* through|strong=\"G1223\"* one|strong=\"G1520\"* who|strong=\"G3588\"* sinned; for|strong=\"G1063\"* the|strong=\"G2532\"* judgment|strong=\"G2917\"* came|strong=\"G2532\"* by|strong=\"G1223\"* one|strong=\"G1520\"* to|strong=\"G1519\"* condemnation|strong=\"G2917\"*, but|strong=\"G1161\"* the|strong=\"G2532\"* free|strong=\"G5486\"* gift|strong=\"G5486\"* followed many|strong=\"G4183\"* trespasses|strong=\"G3900\"* to|strong=\"G1519\"* justification|strong=\"G1345\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* by|strong=\"G1223\"* the|strong=\"G1722\"* trespass|strong=\"G3900\"* of|strong=\"G1223\"* the|strong=\"G1722\"* one|strong=\"G1520\"*, death|strong=\"G2288\"* reigned through|strong=\"G1223\"* the|strong=\"G1722\"* one|strong=\"G1520\"*; so|strong=\"G2532\"* much|strong=\"G4183\"* more|strong=\"G3123\"* will|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* receive|strong=\"G2983\"* the|strong=\"G1722\"* abundance|strong=\"G4050\"* of|strong=\"G1223\"* grace|strong=\"G5485\"* and|strong=\"G2532\"* of|strong=\"G1223\"* the|strong=\"G1722\"* gift|strong=\"G1431\"* of|strong=\"G1223\"* righteousness|strong=\"G1343\"* reign|strong=\"G2532\"* in|strong=\"G1722\"* life|strong=\"G2222\"* through|strong=\"G1223\"* the|strong=\"G1722\"* one|strong=\"G1520\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 18, + "text": "So|strong=\"G3779\"* then|strong=\"G3767\"* as|strong=\"G5613\"* through|strong=\"G1223\"* one|strong=\"G1520\"* trespass|strong=\"G3900\"*, all|strong=\"G3956\"* men|strong=\"G3956\"* were|strong=\"G2532\"* condemned; even|strong=\"G2532\"* so|strong=\"G3779\"* through|strong=\"G1223\"* one|strong=\"G1520\"* act|strong=\"G1345\"* of|strong=\"G1223\"* righteousness|strong=\"G1345\"*, all|strong=\"G3956\"* men|strong=\"G3956\"* were|strong=\"G2532\"* justified to|strong=\"G1519\"* life|strong=\"G2222\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* as|strong=\"G5618\"* through|strong=\"G1223\"* the|strong=\"G2532\"* one|strong=\"G1520\"* man|strong=\"G1342\"*’s disobedience|strong=\"G3876\"* many|strong=\"G4183\"* were|strong=\"G3588\"* made|strong=\"G2525\"* sinners, even|strong=\"G2532\"* so|strong=\"G3779\"* through|strong=\"G1223\"* the|strong=\"G2532\"* obedience|strong=\"G5218\"* of|strong=\"G1223\"* the|strong=\"G2532\"* one|strong=\"G1520\"*, many|strong=\"G4183\"* will|strong=\"G2532\"* be|strong=\"G2532\"* made|strong=\"G2525\"* righteous|strong=\"G1342\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"G1161\"* law|strong=\"G3551\"* came|strong=\"G3588\"* in|strong=\"G1161\"* that|strong=\"G2443\"* the|strong=\"G1161\"* trespass|strong=\"G3900\"* might|strong=\"G3900\"* abound|strong=\"G4121\"*; but|strong=\"G1161\"* where|strong=\"G3757\"* sin|strong=\"G3900\"* abounded|strong=\"G5248\"*, grace|strong=\"G5485\"* abounded|strong=\"G5248\"* more|strong=\"G1161\"* exceedingly," + }, + { + "verseNum": 21, + "text": "that|strong=\"G2443\"* as|strong=\"G5618\"* sin reigned in|strong=\"G1722\"* death|strong=\"G2288\"*, even|strong=\"G2532\"* so|strong=\"G3779\"* grace|strong=\"G5485\"* might|strong=\"G2532\"* reign|strong=\"G2532\"* through|strong=\"G1223\"* righteousness|strong=\"G1343\"* to|strong=\"G1519\"* eternal life|strong=\"G2222\"* through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "What|strong=\"G5101\"* shall|strong=\"G5101\"* we|strong=\"G2443\"* say|strong=\"G3004\"* then|strong=\"G3767\"*? Shall|strong=\"G5101\"* we|strong=\"G2443\"* continue|strong=\"G1961\"* in|strong=\"G1961\"* sin, that|strong=\"G2443\"* grace|strong=\"G5485\"* may|strong=\"G2443\"* abound|strong=\"G4121\"*?" + }, + { + "verseNum": 2, + "text": "May it|strong=\"G1096\"* never|strong=\"G3361\"* be|strong=\"G1096\"*! We|strong=\"G1722\"* who|strong=\"G3588\"* died|strong=\"G3588\"* to|strong=\"G1722\"* sin, how|strong=\"G4459\"* could|strong=\"G3361\"* we|strong=\"G1722\"* live|strong=\"G2198\"* in|strong=\"G1722\"* it|strong=\"G1096\"* any|strong=\"G3361\"* longer|strong=\"G2089\"*?" + }, + { + "verseNum": 3, + "text": "Or|strong=\"G2228\"* don’t|strong=\"G3588\"* you|strong=\"G3754\"* know that|strong=\"G3754\"* all|strong=\"G3745\"* of|strong=\"G2424\"* us|strong=\"G1519\"* who|strong=\"G3588\"* were|strong=\"G3588\"* baptized into|strong=\"G1519\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* were|strong=\"G3588\"* baptized into|strong=\"G1519\"* his|strong=\"G1519\"* death|strong=\"G2288\"*?" + }, + { + "verseNum": 4, + "text": "We|strong=\"G2249\"* were|strong=\"G3588\"* buried|strong=\"G4916\"* therefore|strong=\"G3767\"* with|strong=\"G1722\"* him|strong=\"G3588\"* through|strong=\"G1223\"* baptism into|strong=\"G1519\"* death|strong=\"G2288\"*, that|strong=\"G2443\"* just|strong=\"G5618\"* as|strong=\"G5618\"* Christ|strong=\"G5547\"* was|strong=\"G3588\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* through|strong=\"G1223\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G1537\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*, so|strong=\"G3779\"* we|strong=\"G2249\"* also|strong=\"G2532\"* might|strong=\"G2532\"* walk|strong=\"G4043\"* in|strong=\"G1722\"* newness|strong=\"G2538\"* of|strong=\"G1537\"* life|strong=\"G2222\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* we|strong=\"G1063\"* have|strong=\"G2532\"* become|strong=\"G1096\"* united|strong=\"G4854\"* with|strong=\"G2532\"* him|strong=\"G3588\"* in|strong=\"G2532\"* the|strong=\"G2532\"* likeness|strong=\"G3667\"* of|strong=\"G2532\"* his|strong=\"G2532\"* death|strong=\"G2288\"*, we|strong=\"G1063\"* will|strong=\"G1510\"* also|strong=\"G2532\"* be|strong=\"G1096\"* part|strong=\"G2532\"* of|strong=\"G2532\"* his|strong=\"G2532\"* resurrection;" + }, + { + "verseNum": 6, + "text": "knowing|strong=\"G1097\"* this|strong=\"G3778\"*, that|strong=\"G3754\"* our old|strong=\"G3820\"* man|strong=\"G3778\"* was|strong=\"G3588\"* crucified|strong=\"G4957\"* with|strong=\"G4957\"* him|strong=\"G3588\"*, that|strong=\"G3754\"* the|strong=\"G3588\"* body|strong=\"G4983\"* of|strong=\"G4983\"* sin might|strong=\"G3778\"* be|strong=\"G2443\"* done|strong=\"G2673\"* away|strong=\"G2673\"* with|strong=\"G4957\"*, so|strong=\"G2443\"* that|strong=\"G3754\"* we|strong=\"G2249\"* would no|strong=\"G3371\"* longer|strong=\"G3371\"* be|strong=\"G2443\"* in|strong=\"G3588\"* bondage|strong=\"G1398\"* to|strong=\"G2443\"* sin." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* he|strong=\"G3588\"* who|strong=\"G3588\"* has died|strong=\"G3588\"* has been freed|strong=\"G1344\"* from|strong=\"G3588\"* sin." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* we|strong=\"G3754\"* died with|strong=\"G4862\"* Christ|strong=\"G5547\"*, we|strong=\"G3754\"* believe|strong=\"G4100\"* that|strong=\"G3754\"* we|strong=\"G3754\"* will|strong=\"G2532\"* also|strong=\"G2532\"* live|strong=\"G4800\"* with|strong=\"G4862\"* him|strong=\"G2532\"*," + }, + { + "verseNum": 9, + "text": "knowing|strong=\"G1492\"* that|strong=\"G3754\"* Christ|strong=\"G5547\"*, being|strong=\"G5547\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G1537\"* dead|strong=\"G3498\"*, dies no|strong=\"G3765\"* more|strong=\"G3765\"*. Death|strong=\"G2288\"* no|strong=\"G3765\"* longer|strong=\"G3765\"* has|strong=\"G5547\"* dominion|strong=\"G2961\"* over|strong=\"G2961\"* him|strong=\"G1537\"*!" + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* the|strong=\"G1161\"* death that|strong=\"G3739\"* he|strong=\"G1161\"* died|strong=\"G3588\"*, he|strong=\"G1161\"* died|strong=\"G3588\"* to|strong=\"G1161\"* sin one|strong=\"G3739\"* time|strong=\"G3739\"*; but|strong=\"G1161\"* the|strong=\"G1161\"* life|strong=\"G2198\"* that|strong=\"G3739\"* he|strong=\"G1161\"* lives|strong=\"G2198\"*, he|strong=\"G1161\"* lives|strong=\"G2198\"* to|strong=\"G1161\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 11, + "text": "Thus|strong=\"G3779\"* consider|strong=\"G3049\"* yourselves|strong=\"G1438\"* also|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G1510\"* dead|strong=\"G3498\"* to|strong=\"G2532\"* sin, but|strong=\"G1161\"* alive|strong=\"G2198\"* to|strong=\"G2532\"* God|strong=\"G2316\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* our|strong=\"G2316\"* Lord|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"G3767\"* don’t|strong=\"G3588\"* let|strong=\"G3767\"* sin reign in|strong=\"G1722\"* your|strong=\"G1722\"* mortal|strong=\"G2349\"* body|strong=\"G4983\"*, that|strong=\"G3588\"* you|strong=\"G5210\"* should|strong=\"G3588\"* obey|strong=\"G5219\"* it|strong=\"G1519\"* in|strong=\"G1722\"* its|strong=\"G5219\"* lusts|strong=\"G1939\"*." + }, + { + "verseNum": 13, + "text": "Also|strong=\"G2532\"*, do|strong=\"G2532\"* not|strong=\"G3366\"* present|strong=\"G3936\"* your|strong=\"G2532\"* members|strong=\"G3196\"* to|strong=\"G2532\"* sin as|strong=\"G2532\"* instruments|strong=\"G3696\"* of|strong=\"G1537\"* unrighteousness, but|strong=\"G2532\"* present|strong=\"G3936\"* yourselves|strong=\"G1438\"* to|strong=\"G2532\"* God|strong=\"G2316\"* as|strong=\"G2532\"* alive|strong=\"G2198\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, and|strong=\"G2532\"* your|strong=\"G2532\"* members|strong=\"G3196\"* as|strong=\"G2532\"* instruments|strong=\"G3696\"* of|strong=\"G1537\"* righteousness|strong=\"G1343\"* to|strong=\"G2532\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* sin will|strong=\"G1510\"* not|strong=\"G3756\"* have|strong=\"G1510\"* dominion|strong=\"G2961\"* over|strong=\"G2961\"* you|strong=\"G5210\"*, for|strong=\"G1063\"* you|strong=\"G5210\"* are|strong=\"G1510\"* not|strong=\"G3756\"* under|strong=\"G5259\"* law|strong=\"G3551\"*, but|strong=\"G1063\"* under|strong=\"G5259\"* grace|strong=\"G5485\"*." + }, + { + "verseNum": 15, + "text": "What|strong=\"G5101\"* then|strong=\"G3767\"*? Shall|strong=\"G5101\"* we|strong=\"G3754\"* sin because|strong=\"G3754\"* we|strong=\"G3754\"* are|strong=\"G1510\"* not|strong=\"G3756\"* under|strong=\"G5259\"* law|strong=\"G3551\"* but|strong=\"G3361\"* under|strong=\"G5259\"* grace|strong=\"G5485\"*? May|strong=\"G5485\"* it|strong=\"G3754\"* never|strong=\"G3756\"* be|strong=\"G1096\"*!" + }, + { + "verseNum": 16, + "text": "Don’t you|strong=\"G3739\"* know|strong=\"G1492\"* that|strong=\"G3754\"* when|strong=\"G1492\"* you|strong=\"G3739\"* present|strong=\"G3936\"* yourselves|strong=\"G1438\"* as|strong=\"G1519\"* servants|strong=\"G1401\"* and|strong=\"G1401\"* obey|strong=\"G5219\"* someone|strong=\"G3739\"*, you|strong=\"G3739\"* are|strong=\"G1510\"* the|strong=\"G1519\"* servants|strong=\"G1401\"* of|strong=\"G1401\"* whomever|strong=\"G3739\"* you|strong=\"G3739\"* obey|strong=\"G5219\"*, whether|strong=\"G3739\"* of|strong=\"G1401\"* sin to|strong=\"G1519\"* death|strong=\"G2288\"*, or|strong=\"G2228\"* of|strong=\"G1401\"* obedience|strong=\"G5218\"* to|strong=\"G1519\"* righteousness|strong=\"G1343\"*?" + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* thanks|strong=\"G5485\"* be|strong=\"G1510\"* to|strong=\"G1519\"* God|strong=\"G2316\"* that|strong=\"G3754\"*, whereas|strong=\"G1161\"* you|strong=\"G3739\"* were|strong=\"G1510\"* bondservants of|strong=\"G1537\"* sin, you|strong=\"G3739\"* became|strong=\"G5219\"* obedient|strong=\"G5219\"* from|strong=\"G1537\"* the|strong=\"G1519\"* heart|strong=\"G2588\"* to|strong=\"G1519\"* that|strong=\"G3754\"* form|strong=\"G5179\"* of|strong=\"G1537\"* teaching|strong=\"G1322\"* to|strong=\"G1519\"* which|strong=\"G3739\"* you|strong=\"G3739\"* were|strong=\"G1510\"* delivered|strong=\"G3860\"*." + }, + { + "verseNum": 18, + "text": "Being|strong=\"G1161\"* made|strong=\"G1161\"* free|strong=\"G1659\"* from|strong=\"G3588\"* sin, you|strong=\"G1659\"* became|strong=\"G1402\"* bondservants of|strong=\"G1343\"* righteousness|strong=\"G1343\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"G2532\"* speak|strong=\"G3004\"* in|strong=\"G1519\"* human|strong=\"G4561\"* terms because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* weakness of|strong=\"G1223\"* your|strong=\"G1223\"* flesh|strong=\"G4561\"*; for|strong=\"G1063\"* as|strong=\"G5618\"* you|strong=\"G5210\"* presented|strong=\"G3936\"* your|strong=\"G1223\"* members|strong=\"G3196\"* as|strong=\"G5618\"* servants|strong=\"G1401\"* to|strong=\"G1519\"* uncleanness and|strong=\"G2532\"* to|strong=\"G1519\"* wickedness upon|strong=\"G1519\"* wickedness, even|strong=\"G2532\"* so|strong=\"G3779\"* now|strong=\"G3568\"* present|strong=\"G3936\"* your|strong=\"G1223\"* members|strong=\"G3196\"* as|strong=\"G5618\"* servants|strong=\"G1401\"* to|strong=\"G1519\"* righteousness|strong=\"G1343\"* for|strong=\"G1063\"* sanctification." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* when|strong=\"G3753\"* you|strong=\"G1510\"* were|strong=\"G1510\"* servants|strong=\"G1401\"* of|strong=\"G1401\"* sin, you|strong=\"G1510\"* were|strong=\"G1510\"* free|strong=\"G1658\"* from|strong=\"G3588\"* righteousness|strong=\"G1343\"*." + }, + { + "verseNum": 21, + "text": "What|strong=\"G5101\"* fruit|strong=\"G2590\"* then|strong=\"G3767\"* did|strong=\"G5101\"* you|strong=\"G3739\"* have|strong=\"G2192\"* at|strong=\"G1909\"* that|strong=\"G3739\"* time|strong=\"G5119\"* in|strong=\"G1909\"* the|strong=\"G1909\"* things|strong=\"G3588\"* of|strong=\"G1909\"* which|strong=\"G3739\"* you|strong=\"G3739\"* are|strong=\"G3588\"* now|strong=\"G3568\"* ashamed|strong=\"G1870\"*? For|strong=\"G1063\"* the|strong=\"G1909\"* end|strong=\"G5056\"* of|strong=\"G1909\"* those|strong=\"G3588\"* things|strong=\"G3588\"* is|strong=\"G3588\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"*, being|strong=\"G2192\"* made|strong=\"G2316\"* free|strong=\"G1659\"* from|strong=\"G3588\"* sin and|strong=\"G1161\"* having|strong=\"G2192\"* become|strong=\"G1161\"* servants|strong=\"G1402\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, you|strong=\"G5210\"* have|strong=\"G2192\"* your|strong=\"G2192\"* fruit|strong=\"G2590\"* of|strong=\"G2316\"* sanctification and|strong=\"G1161\"* the|strong=\"G1519\"* result|strong=\"G1519\"* of|strong=\"G2316\"* eternal life|strong=\"G2222\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* wages|strong=\"G3800\"* of|strong=\"G2316\"* sin is|strong=\"G3588\"* death|strong=\"G2288\"*, but|strong=\"G1161\"* the|strong=\"G1722\"* free|strong=\"G5486\"* gift|strong=\"G5486\"* of|strong=\"G2316\"* God|strong=\"G2316\"* is|strong=\"G3588\"* eternal life|strong=\"G2222\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Or|strong=\"G2228\"* don’t|strong=\"G3588\"* you|strong=\"G3754\"* know|strong=\"G1097\"*, brothers+ 7:1 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* (for|strong=\"G1063\"* I|strong=\"G1063\"* speak|strong=\"G2980\"* to|strong=\"G1909\"* men|strong=\"G3588\"* who|strong=\"G3588\"* know|strong=\"G1097\"* the|strong=\"G1909\"* law|strong=\"G3551\"*), that|strong=\"G3754\"* the|strong=\"G1909\"* law|strong=\"G3551\"* has|strong=\"G3748\"* dominion|strong=\"G2961\"* over|strong=\"G1909\"* a|strong=\"G1909\"* man for|strong=\"G1063\"* as|strong=\"G3745\"* long|strong=\"G5550\"* as|strong=\"G3745\"* he|strong=\"G3754\"* lives|strong=\"G2198\"*?" + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* the|strong=\"G1161\"* woman|strong=\"G1135\"* that|strong=\"G3588\"* has|strong=\"G3551\"* a|strong=\"G1437\"* husband|strong=\"G5220\"* is|strong=\"G3588\"* bound|strong=\"G1210\"* by|strong=\"G2198\"* law|strong=\"G3551\"* to|strong=\"G1161\"* the|strong=\"G1161\"* husband|strong=\"G5220\"* while|strong=\"G1161\"* he|strong=\"G1161\"* lives|strong=\"G2198\"*, but|strong=\"G1161\"* if|strong=\"G1437\"* the|strong=\"G1161\"* husband|strong=\"G5220\"* dies, she|strong=\"G1161\"* is|strong=\"G3588\"* discharged from|strong=\"G3588\"* the|strong=\"G1161\"* law|strong=\"G3551\"* of|strong=\"G3551\"* the|strong=\"G1161\"* husband|strong=\"G5220\"*." + }, + { + "verseNum": 3, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"* if|strong=\"G1437\"*, while|strong=\"G1161\"* the|strong=\"G1161\"* husband lives|strong=\"G2198\"*, she|strong=\"G1161\"* is|strong=\"G1510\"* joined|strong=\"G1096\"* to|strong=\"G1096\"* another|strong=\"G2087\"* man|strong=\"G3361\"*, she|strong=\"G1161\"* would|strong=\"G1096\"* be|strong=\"G1096\"* called|strong=\"G5537\"* an|strong=\"G1096\"* adulteress|strong=\"G3428\"*. But|strong=\"G1161\"* if|strong=\"G1437\"* the|strong=\"G1161\"* husband dies, she|strong=\"G1161\"* is|strong=\"G1510\"* free|strong=\"G1658\"* from|strong=\"G3588\"* the|strong=\"G1161\"* law|strong=\"G3551\"*, so|strong=\"G3767\"* that|strong=\"G3588\"* she|strong=\"G1161\"* is|strong=\"G1510\"* no|strong=\"G3361\"* adulteress|strong=\"G3428\"*, though|strong=\"G1437\"* she|strong=\"G1161\"* is|strong=\"G1510\"* joined|strong=\"G1096\"* to|strong=\"G1096\"* another|strong=\"G2087\"* man|strong=\"G3361\"*." + }, + { + "verseNum": 4, + "text": "Therefore|strong=\"G1223\"*, my|strong=\"G1473\"* brothers, you|strong=\"G5210\"* also|strong=\"G2532\"* were|strong=\"G3588\"* made|strong=\"G1096\"* dead|strong=\"G3498\"* to|strong=\"G1519\"* the|strong=\"G2532\"* law|strong=\"G3551\"* through|strong=\"G1223\"* the|strong=\"G2532\"* body|strong=\"G4983\"* of|strong=\"G1537\"* Christ|strong=\"G5547\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* would|strong=\"G1096\"* be|strong=\"G1096\"* joined|strong=\"G1096\"* to|strong=\"G1519\"* another|strong=\"G2087\"*, to|strong=\"G1519\"* him|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G1096\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, that|strong=\"G2443\"* we|strong=\"G2532\"* might|strong=\"G2532\"* produce fruit|strong=\"G2592\"* to|strong=\"G1519\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* when|strong=\"G3753\"* we|strong=\"G2249\"* were|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, the|strong=\"G1722\"* sinful passions|strong=\"G3804\"* which|strong=\"G3588\"* were|strong=\"G1510\"* through|strong=\"G1223\"* the|strong=\"G1722\"* law|strong=\"G3551\"* worked|strong=\"G1754\"* in|strong=\"G1722\"* our|strong=\"G1223\"* members|strong=\"G3196\"* to|strong=\"G1519\"* bring|strong=\"G1519\"* out|strong=\"G1063\"* fruit|strong=\"G2592\"* to|strong=\"G1519\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* we|strong=\"G2249\"* have|strong=\"G2532\"* been|strong=\"G2532\"* discharged from|strong=\"G2532\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, having|strong=\"G2532\"* died|strong=\"G3588\"* to|strong=\"G2532\"* that|strong=\"G3739\"* in|strong=\"G1722\"* which|strong=\"G3739\"* we|strong=\"G2249\"* were|strong=\"G3588\"* held|strong=\"G2722\"*; so|strong=\"G2532\"* that|strong=\"G3739\"* we|strong=\"G2249\"* serve|strong=\"G1398\"* in|strong=\"G1722\"* newness|strong=\"G2538\"* of|strong=\"G4151\"* the|strong=\"G1722\"* spirit|strong=\"G4151\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* in|strong=\"G1722\"* oldness|strong=\"G3821\"* of|strong=\"G4151\"* the|strong=\"G1722\"* letter|strong=\"G1121\"*." + }, + { + "verseNum": 7, + "text": "What|strong=\"G5101\"* shall|strong=\"G5101\"* we|strong=\"G1063\"* say|strong=\"G3004\"* then|strong=\"G3767\"*? Is|strong=\"G3588\"* the|strong=\"G1223\"* law|strong=\"G3551\"* sin? May|strong=\"G3004\"* it|strong=\"G1063\"* never|strong=\"G3756\"* be|strong=\"G1096\"*! However|strong=\"G3767\"*, I|strong=\"G1063\"* wouldn’t|strong=\"G3588\"* have|strong=\"G1096\"* known|strong=\"G1097\"* sin except|strong=\"G1487\"* through|strong=\"G1223\"* the|strong=\"G1223\"* law|strong=\"G3551\"*. For|strong=\"G1063\"* I|strong=\"G1063\"* wouldn’t|strong=\"G3588\"* have|strong=\"G1096\"* known|strong=\"G1097\"* coveting|strong=\"G1939\"* unless|strong=\"G1487\"* the|strong=\"G1223\"* law|strong=\"G3551\"* had|strong=\"G3588\"* said|strong=\"G3004\"*, “You|strong=\"G1487\"* shall|strong=\"G5101\"* not|strong=\"G3756\"* covet|strong=\"G1937\"*.”+ 7:7 Exodus 20:17; Deuteronomy 5:21*" + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* sin, finding|strong=\"G1063\"* occasion|strong=\"G1223\"* through|strong=\"G1223\"* the|strong=\"G1722\"* commandment|strong=\"G1785\"*, produced|strong=\"G2716\"* in|strong=\"G1722\"* me|strong=\"G1473\"* all|strong=\"G3956\"* kinds|strong=\"G3956\"* of|strong=\"G1223\"* coveting|strong=\"G1939\"*. For|strong=\"G1063\"* apart|strong=\"G5565\"* from|strong=\"G3588\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, sin is|strong=\"G3588\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"G1473\"* was|strong=\"G3588\"* alive|strong=\"G2198\"* apart|strong=\"G5565\"* from|strong=\"G2064\"* the|strong=\"G1161\"* law|strong=\"G3551\"* once|strong=\"G4218\"*, but|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G1161\"* commandment|strong=\"G1785\"* came|strong=\"G2064\"*, sin revived and|strong=\"G1161\"* I|strong=\"G1473\"* died|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"G2532\"* commandment|strong=\"G1785\"* which|strong=\"G3588\"* was|strong=\"G3588\"* for|strong=\"G1519\"* life|strong=\"G2222\"*, this|strong=\"G3778\"* I|strong=\"G1473\"* found|strong=\"G2147\"* to|strong=\"G1519\"* be|strong=\"G2532\"* for|strong=\"G1519\"* death|strong=\"G2288\"*;" + }, + { + "verseNum": 11, + "text": "for|strong=\"G1063\"* sin, finding|strong=\"G1063\"* occasion|strong=\"G1223\"* through|strong=\"G1223\"* the|strong=\"G2532\"* commandment|strong=\"G1785\"*, deceived|strong=\"G1818\"* me|strong=\"G1473\"*, and|strong=\"G2532\"* through|strong=\"G1223\"* it|strong=\"G2532\"* killed me|strong=\"G1473\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"G5620\"* the|strong=\"G2532\"* law|strong=\"G3551\"* indeed|strong=\"G2532\"* is|strong=\"G3588\"* holy, and|strong=\"G2532\"* the|strong=\"G2532\"* commandment|strong=\"G1785\"* holy, righteous|strong=\"G1342\"*, and|strong=\"G2532\"* good|strong=\"G3588\"*." + }, + { + "verseNum": 13, + "text": "Did|strong=\"G1096\"* then|strong=\"G3767\"* that|strong=\"G2443\"* which|strong=\"G3588\"* is|strong=\"G3588\"* good|strong=\"G1223\"* become|strong=\"G1096\"* death|strong=\"G2288\"* to|strong=\"G2443\"* me|strong=\"G1473\"*? May|strong=\"G2443\"* it|strong=\"G1223\"* never|strong=\"G3361\"* be|strong=\"G1096\"*! But|strong=\"G3361\"* sin, that|strong=\"G2443\"* it|strong=\"G1223\"* might|strong=\"G1785\"* be|strong=\"G1096\"* shown|strong=\"G5316\"* to|strong=\"G2443\"* be|strong=\"G1096\"* sin, was|strong=\"G1096\"* producing|strong=\"G2716\"* death|strong=\"G2288\"* in|strong=\"G2596\"* me|strong=\"G1473\"* through|strong=\"G1223\"* that|strong=\"G2443\"* which|strong=\"G3588\"* is|strong=\"G3588\"* good|strong=\"G1223\"*; that|strong=\"G2443\"* through|strong=\"G1223\"* the|strong=\"G1223\"* commandment|strong=\"G1785\"* sin might|strong=\"G1785\"* become|strong=\"G1096\"* exceedingly sinful." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* we|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G1161\"* law|strong=\"G3551\"* is|strong=\"G1510\"* spiritual|strong=\"G4152\"*, but|strong=\"G1161\"* I|strong=\"G1473\"* am|strong=\"G1510\"* fleshly, sold|strong=\"G4097\"* under|strong=\"G5259\"* sin." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* I|strong=\"G3739\"* don’t understand|strong=\"G1097\"* what|strong=\"G3739\"* I|strong=\"G3739\"* am|strong=\"G2309\"* doing|strong=\"G4160\"*. For|strong=\"G1063\"* I|strong=\"G3739\"* don’t practice|strong=\"G4238\"* what|strong=\"G3739\"* I|strong=\"G3739\"* desire|strong=\"G2309\"* to|strong=\"G2309\"* do|strong=\"G4160\"*; but|strong=\"G1063\"* what|strong=\"G3739\"* I|strong=\"G3739\"* hate|strong=\"G3404\"*, that|strong=\"G3739\"* I|strong=\"G3739\"* do|strong=\"G4160\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* what|strong=\"G3739\"* I|strong=\"G3739\"* don’t|strong=\"G3588\"* desire|strong=\"G2309\"*, that|strong=\"G3754\"* I|strong=\"G3739\"* do|strong=\"G4160\"*, I|strong=\"G3739\"* consent to|strong=\"G2309\"* the|strong=\"G1161\"* law|strong=\"G3551\"* that|strong=\"G3754\"* it|strong=\"G3754\"* is|strong=\"G3588\"* good|strong=\"G2570\"*." + }, + { + "verseNum": 17, + "text": "So|strong=\"G1161\"* now|strong=\"G1161\"* it|strong=\"G1161\"* is|strong=\"G3588\"* no|strong=\"G3765\"* more|strong=\"G3765\"* I|strong=\"G1473\"* that|strong=\"G3588\"* do|strong=\"G2716\"* it|strong=\"G1161\"*, but|strong=\"G1161\"* sin which|strong=\"G3588\"* dwells|strong=\"G3611\"* in|strong=\"G1722\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* know|strong=\"G1492\"* that|strong=\"G3754\"* in|strong=\"G1722\"* me|strong=\"G1473\"*, that|strong=\"G3754\"* is|strong=\"G1510\"*, in|strong=\"G1722\"* my|strong=\"G1722\"* flesh|strong=\"G4561\"*, dwells|strong=\"G3611\"* no|strong=\"G3756\"* good|strong=\"G2570\"* thing|strong=\"G3778\"*. For|strong=\"G1063\"* desire|strong=\"G2309\"* is|strong=\"G1510\"* present|strong=\"G3873\"* with|strong=\"G1722\"* me|strong=\"G1473\"*, but|strong=\"G1161\"* I|strong=\"G1473\"* don’t|strong=\"G3588\"* find it|strong=\"G3754\"* doing|strong=\"G2716\"* that|strong=\"G3754\"* which|strong=\"G3588\"* is|strong=\"G1510\"* good|strong=\"G2570\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* the|strong=\"G1063\"* good|strong=\"G3756\"* which|strong=\"G3739\"* I|strong=\"G3739\"* desire|strong=\"G2309\"*, I|strong=\"G3739\"* don’t do|strong=\"G4160\"*; but|strong=\"G1063\"* the|strong=\"G1063\"* evil|strong=\"G2556\"* which|strong=\"G3739\"* I|strong=\"G3739\"* don’t desire|strong=\"G2309\"*, that|strong=\"G3739\"* I|strong=\"G3739\"* practice|strong=\"G4238\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* what|strong=\"G3739\"* I|strong=\"G1473\"* don’t|strong=\"G3588\"* desire|strong=\"G2309\"*, that|strong=\"G3739\"* I|strong=\"G1473\"* do|strong=\"G4160\"*, it|strong=\"G1161\"* is|strong=\"G3588\"* no|strong=\"G3756\"* more|strong=\"G3765\"* I|strong=\"G1473\"* that|strong=\"G3739\"* do|strong=\"G4160\"* it|strong=\"G1161\"*, but|strong=\"G1161\"* sin which|strong=\"G3739\"* dwells|strong=\"G3611\"* in|strong=\"G1722\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"G1473\"* find|strong=\"G2147\"* then|strong=\"G3754\"* the|strong=\"G3588\"* law|strong=\"G3551\"* that|strong=\"G3754\"*, while|strong=\"G3754\"* I|strong=\"G1473\"* desire|strong=\"G2309\"* to|strong=\"G2309\"* do|strong=\"G4160\"* good|strong=\"G2570\"*, evil|strong=\"G2556\"* is|strong=\"G3588\"* present|strong=\"G3873\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"G1063\"* I|strong=\"G1063\"* delight|strong=\"G4913\"* in|strong=\"G2596\"* God|strong=\"G2316\"*’s law|strong=\"G3551\"* after|strong=\"G2596\"* the|strong=\"G2596\"* inward|strong=\"G2080\"* person," + }, + { + "verseNum": 23, + "text": "but|strong=\"G1161\"* I|strong=\"G1473\"* see a|strong=\"G2532\"* different|strong=\"G2087\"* law|strong=\"G3551\"* in|strong=\"G1722\"* my|strong=\"G1722\"* members|strong=\"G3196\"*, warring against|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* of|strong=\"G2532\"* my|strong=\"G1722\"* mind|strong=\"G3563\"*, and|strong=\"G2532\"* bringing me|strong=\"G1473\"* into|strong=\"G1722\"* captivity under|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* of|strong=\"G2532\"* sin which|strong=\"G3588\"* is|strong=\"G1510\"* in|strong=\"G1722\"* my|strong=\"G1722\"* members|strong=\"G3196\"*." + }, + { + "verseNum": 24, + "text": "What|strong=\"G5101\"* a|strong=\"G1537\"* wretched|strong=\"G5005\"* man|strong=\"G3778\"* I|strong=\"G1473\"* am|strong=\"G1473\"*! Who|strong=\"G5101\"* will|strong=\"G5101\"* deliver|strong=\"G4506\"* me|strong=\"G1473\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1537\"* body|strong=\"G4983\"* of|strong=\"G1537\"* this|strong=\"G3778\"* death|strong=\"G2288\"*?" + }, + { + "verseNum": 25, + "text": "I|strong=\"G1473\"* thank|strong=\"G5485\"* God|strong=\"G2316\"* through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, our|strong=\"G2316\"* Lord|strong=\"G2962\"*! So|strong=\"G3767\"* then|strong=\"G3767\"* with|strong=\"G1223\"* the|strong=\"G1161\"* mind|strong=\"G3563\"*, I|strong=\"G1473\"* myself|strong=\"G1473\"* serve|strong=\"G1398\"* God|strong=\"G2316\"*’s|strong=\"G2962\"* law|strong=\"G3551\"*, but|strong=\"G1161\"* with|strong=\"G1223\"* the|strong=\"G1161\"* flesh|strong=\"G4561\"*, sin’s|strong=\"G2962\"* law|strong=\"G3551\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "There|strong=\"G1722\"* is|strong=\"G3588\"* therefore now|strong=\"G3568\"* no|strong=\"G3762\"* condemnation|strong=\"G2631\"* to|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, who|strong=\"G3588\"* don’t|strong=\"G3588\"* walk according|strong=\"G3588\"* to|strong=\"G1722\"* the|strong=\"G1722\"* flesh, but|strong=\"G3762\"* according|strong=\"G3588\"* to|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G3588\"*.+ 8:1 NU omits “who don’t walk according to the flesh, but according to the Spirit”*" + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* law|strong=\"G3551\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* life|strong=\"G2222\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* made|strong=\"G1659\"* me free|strong=\"G1659\"* from|strong=\"G2532\"* the|strong=\"G1722\"* law|strong=\"G3551\"* of|strong=\"G4151\"* sin and|strong=\"G2532\"* of|strong=\"G4151\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* what|strong=\"G3739\"* the|strong=\"G1722\"* law|strong=\"G3551\"* couldn’t|strong=\"G3588\"* do|strong=\"G2532\"*, in|strong=\"G1722\"* that|strong=\"G3739\"* it|strong=\"G2532\"* was|strong=\"G3588\"* weak through|strong=\"G1223\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, God|strong=\"G2316\"* did|strong=\"G2532\"*, sending|strong=\"G3992\"* his|strong=\"G1438\"* own|strong=\"G1438\"* Son|strong=\"G5207\"* in|strong=\"G1722\"* the|strong=\"G1722\"* likeness|strong=\"G3667\"* of|strong=\"G5207\"* sinful flesh|strong=\"G4561\"* and|strong=\"G2532\"* for|strong=\"G1063\"* sin, he|strong=\"G2532\"* condemned|strong=\"G2632\"* sin in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*," + }, + { + "verseNum": 4, + "text": "that|strong=\"G2443\"* the|strong=\"G1722\"* ordinance|strong=\"G1345\"* of|strong=\"G4151\"* the|strong=\"G1722\"* law|strong=\"G3551\"* might|strong=\"G1473\"* be|strong=\"G3361\"* fulfilled|strong=\"G4137\"* in|strong=\"G1722\"* us|strong=\"G2249\"* who|strong=\"G3588\"* don’t|strong=\"G3588\"* walk|strong=\"G4043\"* according|strong=\"G2596\"* to|strong=\"G2443\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, but|strong=\"G3361\"* according|strong=\"G2596\"* to|strong=\"G2443\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* those|strong=\"G3588\"* who|strong=\"G3588\"* live|strong=\"G5426\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1161\"* flesh|strong=\"G4561\"* set|strong=\"G5426\"* their|strong=\"G2596\"* minds|strong=\"G5426\"* on|strong=\"G2596\"* the|strong=\"G1161\"* things|strong=\"G3588\"* of|strong=\"G4151\"* the|strong=\"G1161\"* flesh|strong=\"G4561\"*, but|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* live|strong=\"G5426\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"*, the|strong=\"G1161\"* things|strong=\"G3588\"* of|strong=\"G4151\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1063\"* the|strong=\"G2532\"* mind|strong=\"G5427\"* of|strong=\"G4151\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"* is|strong=\"G3588\"* death|strong=\"G2288\"*, but|strong=\"G1161\"* the|strong=\"G2532\"* mind|strong=\"G5427\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* is|strong=\"G3588\"* life|strong=\"G2222\"* and|strong=\"G2532\"* peace|strong=\"G1515\"*;" + }, + { + "verseNum": 7, + "text": "because|strong=\"G1063\"* the|strong=\"G1519\"* mind|strong=\"G5427\"* of|strong=\"G2316\"* the|strong=\"G1519\"* flesh|strong=\"G4561\"* is|strong=\"G3588\"* hostile|strong=\"G2189\"* toward|strong=\"G1519\"* God|strong=\"G2316\"*, for|strong=\"G1063\"* it|strong=\"G1063\"* is|strong=\"G3588\"* not|strong=\"G3756\"* subject|strong=\"G5293\"* to|strong=\"G1519\"* God|strong=\"G2316\"*’s law|strong=\"G3551\"*, neither|strong=\"G3761\"* indeed|strong=\"G1063\"* can|strong=\"G1410\"* it|strong=\"G1063\"* be|strong=\"G3756\"*." + }, + { + "verseNum": 8, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* please God|strong=\"G2316\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* you|strong=\"G5210\"* are|strong=\"G1510\"* not|strong=\"G3756\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"* but|strong=\"G1161\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*, if|strong=\"G1487\"* it|strong=\"G1161\"* is|strong=\"G1510\"* so|strong=\"G1161\"* that|strong=\"G1487\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* God|strong=\"G2316\"* dwells|strong=\"G3611\"* in|strong=\"G1722\"* you|strong=\"G5210\"*. But|strong=\"G1161\"* if|strong=\"G1487\"* any|strong=\"G5100\"* man|strong=\"G5100\"* doesn’t have|strong=\"G2192\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* Christ|strong=\"G5547\"*, he|strong=\"G1161\"* is|strong=\"G1510\"* not|strong=\"G3756\"* his|strong=\"G1722\"*." + }, + { + "verseNum": 10, + "text": "If|strong=\"G1487\"* Christ|strong=\"G5547\"* is|strong=\"G3588\"* in|strong=\"G1722\"* you|strong=\"G5210\"*, the|strong=\"G1722\"* body|strong=\"G4983\"* is|strong=\"G3588\"* dead|strong=\"G3498\"* because|strong=\"G1223\"* of|strong=\"G4151\"* sin, but|strong=\"G1161\"* the|strong=\"G1722\"* spirit|strong=\"G4151\"* is|strong=\"G3588\"* alive|strong=\"G2222\"* because|strong=\"G1223\"* of|strong=\"G4151\"* righteousness|strong=\"G1343\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G1537\"* him|strong=\"G3588\"* who|strong=\"G3588\"* raised|strong=\"G1453\"* up|strong=\"G1453\"* Jesus|strong=\"G2424\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* dwells|strong=\"G3611\"* in|strong=\"G1722\"* you|strong=\"G5210\"*, he|strong=\"G2532\"* who|strong=\"G3588\"* raised|strong=\"G1453\"* up|strong=\"G1453\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* will|strong=\"G2532\"* also|strong=\"G2532\"* give|strong=\"G2227\"* life|strong=\"G2227\"* to|strong=\"G2532\"* your|strong=\"G1223\"* mortal|strong=\"G2349\"* bodies|strong=\"G4983\"* through|strong=\"G1223\"* his|strong=\"G1223\"* Spirit|strong=\"G4151\"* who|strong=\"G3588\"* dwells|strong=\"G3611\"* in|strong=\"G1722\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 12, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"*, brothers, we|strong=\"G1510\"* are|strong=\"G1510\"* debtors|strong=\"G3781\"*, not|strong=\"G3756\"* to|strong=\"G2596\"* the|strong=\"G2596\"* flesh|strong=\"G4561\"*, to|strong=\"G2596\"* live|strong=\"G2198\"* after|strong=\"G2596\"* the|strong=\"G2596\"* flesh|strong=\"G4561\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* you|strong=\"G1487\"* live|strong=\"G2198\"* after|strong=\"G2596\"* the|strong=\"G1161\"* flesh|strong=\"G4561\"*, you|strong=\"G1487\"* must|strong=\"G3195\"* die|strong=\"G2289\"*; but|strong=\"G1161\"* if|strong=\"G1487\"* by|strong=\"G2596\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"* you|strong=\"G1487\"* put|strong=\"G2289\"* to|strong=\"G2596\"* death|strong=\"G2289\"* the|strong=\"G1161\"* deeds|strong=\"G4234\"* of|strong=\"G4151\"* the|strong=\"G1161\"* body|strong=\"G4983\"*, you|strong=\"G1487\"* will|strong=\"G3195\"* live|strong=\"G2198\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* are|strong=\"G1510\"* led by|strong=\"G1063\"* the|strong=\"G1063\"* Spirit|strong=\"G4151\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, these|strong=\"G3778\"* are|strong=\"G1510\"* children|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* you|strong=\"G3739\"* didn’t|strong=\"G3588\"* receive|strong=\"G2983\"* the|strong=\"G1722\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* bondage|strong=\"G1397\"* again|strong=\"G3825\"* to|strong=\"G1519\"* fear|strong=\"G5401\"*, but|strong=\"G1063\"* you|strong=\"G3739\"* received|strong=\"G2983\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* adoption|strong=\"G5206\"*, by|strong=\"G1722\"* whom|strong=\"G3739\"* we|strong=\"G3739\"* cry|strong=\"G2896\"*, “Abba!+ 8:15 Abba is an Aramaic word for “Father” or “Daddy”, which can be used affectionately and respectfully in prayer to our Father in heaven.* Father|strong=\"G3962\"*!”" + }, + { + "verseNum": 16, + "text": "The|strong=\"G3588\"* Spirit|strong=\"G4151\"* himself testifies|strong=\"G4828\"* with|strong=\"G2316\"* our|strong=\"G2316\"* spirit|strong=\"G4151\"* that|strong=\"G3754\"* we|strong=\"G2249\"* are|strong=\"G1510\"* children|strong=\"G5043\"* of|strong=\"G4151\"* God|strong=\"G2316\"*;" + }, + { + "verseNum": 17, + "text": "and|strong=\"G2532\"* if|strong=\"G1487\"* children|strong=\"G5043\"*, then|strong=\"G2532\"* heirs|strong=\"G2818\"*—heirs|strong=\"G2818\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* joint heirs|strong=\"G2818\"* with|strong=\"G2532\"* Christ|strong=\"G5547\"*, if|strong=\"G1487\"* indeed|strong=\"G2532\"* we|strong=\"G2532\"* suffer|strong=\"G4841\"* with|strong=\"G2532\"* him|strong=\"G2532\"*, that|strong=\"G2443\"* we|strong=\"G2532\"* may|strong=\"G2532\"* also|strong=\"G2532\"* be|strong=\"G2532\"* glorified|strong=\"G4888\"* with|strong=\"G2532\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* consider|strong=\"G3049\"* that|strong=\"G3754\"* the|strong=\"G1519\"* sufferings|strong=\"G3804\"* of|strong=\"G1391\"* this|strong=\"G3588\"* present|strong=\"G3568\"* time|strong=\"G2540\"* are|strong=\"G3588\"* not|strong=\"G3756\"* worthy to|strong=\"G1519\"* be|strong=\"G3756\"* compared with|strong=\"G4314\"* the|strong=\"G1519\"* glory|strong=\"G1391\"* which|strong=\"G3588\"* will|strong=\"G3195\"* be|strong=\"G3756\"* revealed toward|strong=\"G1519\"* us|strong=\"G1519\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* the|strong=\"G3588\"* creation|strong=\"G2937\"* waits with|strong=\"G2316\"* eager expectation for|strong=\"G1063\"* the|strong=\"G3588\"* children|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"* to|strong=\"G2316\"* be|strong=\"G2316\"* revealed." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* the|strong=\"G1909\"* creation|strong=\"G2937\"* was|strong=\"G3588\"* subjected|strong=\"G5293\"* to|strong=\"G1909\"* vanity|strong=\"G3153\"*, not|strong=\"G3756\"* of|strong=\"G1223\"* its|strong=\"G1223\"* own will, but|strong=\"G1063\"* because|strong=\"G1223\"* of|strong=\"G1223\"* him|strong=\"G3588\"* who|strong=\"G3588\"* subjected|strong=\"G5293\"* it|strong=\"G1063\"*, in|strong=\"G1909\"* hope|strong=\"G1680\"*" + }, + { + "verseNum": 21, + "text": "that|strong=\"G3588\"* the|strong=\"G2532\"* creation|strong=\"G2937\"* itself also|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G2532\"* delivered|strong=\"G1659\"* from|strong=\"G2532\"* the|strong=\"G2532\"* bondage|strong=\"G1397\"* of|strong=\"G2316\"* decay into|strong=\"G1519\"* the|strong=\"G2532\"* liberty|strong=\"G1657\"* of|strong=\"G2316\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* the|strong=\"G2532\"* children|strong=\"G5043\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"G1063\"* we|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G2532\"* whole|strong=\"G3956\"* creation|strong=\"G2937\"* groans|strong=\"G4959\"* and|strong=\"G2532\"* travails in|strong=\"G2532\"* pain together|strong=\"G4944\"* until|strong=\"G2532\"* now|strong=\"G3568\"*." + }, + { + "verseNum": 23, + "text": "Not|strong=\"G3756\"* only|strong=\"G3440\"* so|strong=\"G2532\"*, but|strong=\"G1161\"* ourselves|strong=\"G1438\"* also|strong=\"G2532\"*, who|strong=\"G3588\"* have|strong=\"G2192\"* the|strong=\"G1722\"* first|strong=\"G3588\"* fruits of|strong=\"G4151\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*, even|strong=\"G2532\"* we|strong=\"G2249\"* ourselves|strong=\"G1438\"* groan|strong=\"G4727\"* within|strong=\"G1722\"* ourselves|strong=\"G1438\"*, waiting for|strong=\"G1161\"* adoption|strong=\"G5206\"*, the|strong=\"G1722\"* redemption of|strong=\"G4151\"* our|strong=\"G2532\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"G1063\"* we|strong=\"G3739\"* were|strong=\"G1510\"* saved|strong=\"G4982\"* in|strong=\"G2532\"* hope|strong=\"G1680\"*, but|strong=\"G1161\"* hope|strong=\"G1680\"* that|strong=\"G3739\"* is|strong=\"G1510\"* seen is|strong=\"G1510\"* not|strong=\"G3756\"* hope|strong=\"G1680\"*. For|strong=\"G1063\"* who|strong=\"G3739\"* hopes|strong=\"G1679\"* for|strong=\"G1063\"* that|strong=\"G3739\"* which|strong=\"G3739\"* he|strong=\"G2532\"* sees?" + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* we|strong=\"G3739\"* hope|strong=\"G1679\"* for|strong=\"G1223\"* that|strong=\"G3739\"* which|strong=\"G3739\"* we|strong=\"G3739\"* don’t see, we|strong=\"G3739\"* wait|strong=\"G5281\"* for|strong=\"G1223\"* it|strong=\"G1161\"* with|strong=\"G1223\"* patience|strong=\"G5281\"*." + }, + { + "verseNum": 26, + "text": "In|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G5615\"* way|strong=\"G5615\"*, the|strong=\"G2532\"* Spirit|strong=\"G4151\"* also|strong=\"G2532\"* helps|strong=\"G4878\"* our|strong=\"G2532\"* weaknesses, for|strong=\"G1063\"* we|strong=\"G2249\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* how|strong=\"G5101\"* to|strong=\"G2532\"* pray|strong=\"G4336\"* as|strong=\"G1161\"* we|strong=\"G2249\"* ought|strong=\"G1163\"*. But|strong=\"G1161\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* himself makes intercession|strong=\"G5241\"* for|strong=\"G1063\"* us|strong=\"G2249\"* with|strong=\"G2532\"* groanings|strong=\"G4726\"* which|strong=\"G3588\"* can|strong=\"G1063\"*’t|strong=\"G3588\"* be|strong=\"G2532\"* uttered." + }, + { + "verseNum": 27, + "text": "He|strong=\"G1161\"* who|strong=\"G5101\"* searches|strong=\"G2045\"* the|strong=\"G1161\"* hearts|strong=\"G2588\"* knows|strong=\"G1492\"* what|strong=\"G5101\"* is|strong=\"G3588\"* on|strong=\"G5228\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"*’s mind|strong=\"G5427\"*, because|strong=\"G3754\"* he|strong=\"G1161\"* makes intercession|strong=\"G1793\"* for|strong=\"G3754\"* the|strong=\"G1161\"* saints according|strong=\"G2596\"* to|strong=\"G2596\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 28, + "text": "We|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* all|strong=\"G3956\"* things|strong=\"G3956\"* work|strong=\"G4903\"* together|strong=\"G4903\"* for|strong=\"G3754\"* good|strong=\"G3956\"* for|strong=\"G3754\"* those|strong=\"G3588\"* who|strong=\"G3588\"* love God|strong=\"G2316\"*, for|strong=\"G3754\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* called|strong=\"G2822\"* according|strong=\"G2596\"* to|strong=\"G1519\"* his|strong=\"G3956\"* purpose|strong=\"G4286\"*." + }, + { + "verseNum": 29, + "text": "For|strong=\"G3754\"* whom|strong=\"G3739\"* he|strong=\"G2532\"* foreknew|strong=\"G4267\"*, he|strong=\"G2532\"* also|strong=\"G2532\"* predestined|strong=\"G4309\"* to|strong=\"G1519\"* be|strong=\"G1510\"* conformed|strong=\"G4832\"* to|strong=\"G1519\"* the|strong=\"G1722\"* image|strong=\"G1504\"* of|strong=\"G5207\"* his|strong=\"G1519\"* Son|strong=\"G5207\"*, that|strong=\"G3754\"* he|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G1510\"* the|strong=\"G1722\"* firstborn|strong=\"G4416\"* among|strong=\"G1722\"* many|strong=\"G4183\"* brothers.+ 8:29 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”*" + }, + { + "verseNum": 30, + "text": "Whom|strong=\"G3739\"* he|strong=\"G2532\"* predestined|strong=\"G4309\"*, those|strong=\"G3778\"* he|strong=\"G2532\"* also|strong=\"G2532\"* called|strong=\"G2564\"*. Whom|strong=\"G3739\"* he|strong=\"G2532\"* called|strong=\"G2564\"*, those|strong=\"G3778\"* he|strong=\"G2532\"* also|strong=\"G2532\"* justified|strong=\"G1344\"*. Whom|strong=\"G3739\"* he|strong=\"G2532\"* justified|strong=\"G1344\"*, those|strong=\"G3778\"* he|strong=\"G2532\"* also|strong=\"G2532\"* glorified|strong=\"G1392\"*." + }, + { + "verseNum": 31, + "text": "What|strong=\"G5101\"* then|strong=\"G3767\"* shall|strong=\"G2316\"* we|strong=\"G2249\"* say|strong=\"G3004\"* about|strong=\"G2596\"* these|strong=\"G3778\"* things|strong=\"G3778\"*? If|strong=\"G1487\"* God|strong=\"G2316\"* is|strong=\"G3588\"* for|strong=\"G5228\"* us|strong=\"G3004\"*, who|strong=\"G5101\"* can|strong=\"G3004\"* be|strong=\"G2316\"* against|strong=\"G2596\"* us|strong=\"G3004\"*?" + }, + { + "verseNum": 32, + "text": "He|strong=\"G2532\"* who|strong=\"G3739\"* didn’t|strong=\"G3588\"* spare|strong=\"G5339\"* his|strong=\"G3956\"* own|strong=\"G2398\"* Son|strong=\"G5207\"*, but|strong=\"G2532\"* delivered|strong=\"G3860\"* him|strong=\"G3588\"* up|strong=\"G3860\"* for|strong=\"G5228\"* us|strong=\"G5483\"* all|strong=\"G3956\"*, how|strong=\"G4459\"* would|strong=\"G2532\"* he|strong=\"G2532\"* not|strong=\"G3756\"* also|strong=\"G2532\"* with|strong=\"G4862\"* him|strong=\"G3588\"* freely|strong=\"G5483\"* give|strong=\"G5483\"* us|strong=\"G5483\"* all|strong=\"G3956\"* things|strong=\"G3956\"*?" + }, + { + "verseNum": 33, + "text": "Who|strong=\"G5101\"* could|strong=\"G3588\"* bring|strong=\"G1458\"* a|strong=\"G2596\"* charge|strong=\"G1458\"* against|strong=\"G2596\"* God|strong=\"G2316\"*’s chosen|strong=\"G1588\"* ones? It|strong=\"G5101\"* is|strong=\"G3588\"* God|strong=\"G2316\"* who|strong=\"G5101\"* justifies|strong=\"G1344\"*." + }, + { + "verseNum": 34, + "text": "Who|strong=\"G3739\"* is|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3739\"* condemns|strong=\"G2632\"*? It|strong=\"G2532\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"* who|strong=\"G3739\"* died|strong=\"G3588\"*, yes|strong=\"G1161\"* rather|strong=\"G3123\"*, who|strong=\"G3739\"* was|strong=\"G1510\"* raised|strong=\"G1453\"* from|strong=\"G2532\"* the|strong=\"G1722\"* dead, who|strong=\"G3739\"* is|strong=\"G1510\"* at|strong=\"G1722\"* the|strong=\"G1722\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, who|strong=\"G3739\"* also|strong=\"G2532\"* makes intercession|strong=\"G1793\"* for|strong=\"G5228\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 35, + "text": "Who|strong=\"G5101\"* shall|strong=\"G5101\"* separate|strong=\"G5563\"* us|strong=\"G2249\"* from|strong=\"G3588\"* the|strong=\"G3588\"* love of|strong=\"G2228\"* Christ|strong=\"G5547\"*? Could|strong=\"G3588\"* oppression, or|strong=\"G2228\"* anguish|strong=\"G2347\"*, or|strong=\"G2228\"* persecution|strong=\"G1375\"*, or|strong=\"G2228\"* famine|strong=\"G3042\"*, or|strong=\"G2228\"* nakedness|strong=\"G1132\"*, or|strong=\"G2228\"* peril|strong=\"G2794\"*, or|strong=\"G2228\"* sword|strong=\"G3162\"*?" + }, + { + "verseNum": 36, + "text": "Even|strong=\"G2531\"* as|strong=\"G5613\"* it|strong=\"G3754\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 37, + "text": "No|strong=\"G3956\"*, in|strong=\"G1722\"* all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"* we|strong=\"G2249\"* are|strong=\"G3588\"* more|strong=\"G3956\"* than conquerors|strong=\"G5245\"* through|strong=\"G1223\"* him|strong=\"G3588\"* who|strong=\"G3588\"* loved us|strong=\"G2249\"*." + }, + { + "verseNum": 38, + "text": "For|strong=\"G1063\"* I|strong=\"G1063\"* am|strong=\"G3195\"* persuaded|strong=\"G3982\"* that|strong=\"G3754\"* neither|strong=\"G3777\"* death|strong=\"G2288\"*, nor|strong=\"G3777\"* life|strong=\"G2222\"*, nor|strong=\"G3777\"* angels, nor|strong=\"G3777\"* principalities, nor|strong=\"G3777\"* things|strong=\"G3195\"* present|strong=\"G1764\"*, nor|strong=\"G3777\"* things|strong=\"G3195\"* to|strong=\"G3195\"* come|strong=\"G3195\"*, nor|strong=\"G3777\"* powers|strong=\"G1411\"*," + }, + { + "verseNum": 39, + "text": "nor|strong=\"G3777\"* height|strong=\"G5313\"*, nor|strong=\"G3777\"* depth, nor|strong=\"G3777\"* any|strong=\"G5100\"* other|strong=\"G2087\"* created|strong=\"G2937\"* thing|strong=\"G5100\"* will|strong=\"G2316\"* be|strong=\"G1410\"* able|strong=\"G1410\"* to|strong=\"G1410\"* separate|strong=\"G5563\"* us|strong=\"G2249\"* from|strong=\"G3588\"* God|strong=\"G2316\"*’s|strong=\"G2962\"* love which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G1473\"* tell|strong=\"G3004\"* the|strong=\"G1722\"* truth in|strong=\"G1722\"* Christ|strong=\"G5547\"*. I|strong=\"G1473\"* am|strong=\"G1473\"* not|strong=\"G3756\"* lying|strong=\"G5574\"*, my|strong=\"G1722\"* conscience|strong=\"G4893\"* testifying with|strong=\"G1722\"* me|strong=\"G1473\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*" + }, + { + "verseNum": 2, + "text": "that|strong=\"G3754\"* I|strong=\"G1473\"* have|strong=\"G2532\"* great|strong=\"G3173\"* sorrow|strong=\"G3077\"* and|strong=\"G2532\"* unceasing pain|strong=\"G3077\"* in|strong=\"G2532\"* my|strong=\"G1473\"* heart|strong=\"G2588\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* could|strong=\"G3588\"* wish|strong=\"G2172\"* that|strong=\"G3588\"* I|strong=\"G1473\"* myself|strong=\"G1473\"* were|strong=\"G1510\"* accursed from|strong=\"G2596\"* Christ|strong=\"G5547\"* for|strong=\"G1063\"* my|strong=\"G1473\"* brothers’ sake|strong=\"G5228\"*, my|strong=\"G1473\"* relatives|strong=\"G4773\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G2596\"* flesh|strong=\"G4561\"*" + }, + { + "verseNum": 4, + "text": "who|strong=\"G3739\"* are|strong=\"G1510\"* Israelites|strong=\"G2475\"*; whose|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G2532\"* adoption|strong=\"G5206\"*, the|strong=\"G2532\"* glory|strong=\"G1391\"*, the|strong=\"G2532\"* covenants|strong=\"G1242\"*, the|strong=\"G2532\"* giving|strong=\"G3548\"* of|strong=\"G2532\"* the|strong=\"G2532\"* law|strong=\"G3548\"*, the|strong=\"G2532\"* service|strong=\"G2999\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* promises|strong=\"G1860\"*;" + }, + { + "verseNum": 5, + "text": "of|strong=\"G1537\"* whom|strong=\"G3739\"* are|strong=\"G1510\"* the|strong=\"G2532\"* fathers|strong=\"G3962\"*, and|strong=\"G2532\"* from|strong=\"G1537\"* whom|strong=\"G3739\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"* as|strong=\"G1519\"* concerning|strong=\"G1519\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* over|strong=\"G1909\"* all|strong=\"G3956\"*, God|strong=\"G2316\"*, blessed|strong=\"G2128\"* forever|strong=\"G1519\"*. Amen." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* it|strong=\"G3754\"* is|strong=\"G3588\"* not|strong=\"G3756\"* as|strong=\"G1161\"* though|strong=\"G1161\"* the|strong=\"G3956\"* word|strong=\"G3056\"* of|strong=\"G1537\"* God|strong=\"G2316\"* has|strong=\"G2316\"* come|strong=\"G3756\"* to|strong=\"G3756\"* nothing|strong=\"G3756\"*. For|strong=\"G1063\"* they|strong=\"G1161\"* are|strong=\"G3588\"* not|strong=\"G3756\"* all|strong=\"G3956\"* Israel|strong=\"G2474\"* that|strong=\"G3754\"* are|strong=\"G3588\"* of|strong=\"G1537\"* Israel|strong=\"G2474\"*." + }, + { + "verseNum": 7, + "text": "Neither|strong=\"G3761\"*, because|strong=\"G3754\"* they|strong=\"G3754\"* are|strong=\"G1510\"* Abraham’s offspring, are|strong=\"G1510\"* they|strong=\"G3754\"* all|strong=\"G3956\"* children|strong=\"G5043\"*. But|strong=\"G3761\"*, “your|strong=\"G3956\"* offspring will|strong=\"G1510\"* be|strong=\"G1510\"* accounted as|strong=\"G1722\"* from|strong=\"G1722\"* Isaac|strong=\"G2464\"*.”+ 9:7 Genesis 21:12*" + }, + { + "verseNum": 8, + "text": "That|strong=\"G3588\"* is|strong=\"G1510\"*, it|strong=\"G3778\"* is|strong=\"G1510\"* not|strong=\"G3756\"* the|strong=\"G1519\"* children|strong=\"G5043\"* of|strong=\"G2316\"* the|strong=\"G1519\"* flesh|strong=\"G4561\"* who|strong=\"G3588\"* are|strong=\"G1510\"* children|strong=\"G5043\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, but|strong=\"G2316\"* the|strong=\"G1519\"* children|strong=\"G5043\"* of|strong=\"G2316\"* the|strong=\"G1519\"* promise|strong=\"G1860\"* are|strong=\"G1510\"* counted|strong=\"G3049\"* as|strong=\"G1519\"* heirs." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* is|strong=\"G1510\"* a|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G5207\"* promise|strong=\"G1860\"*: “At|strong=\"G2596\"* the|strong=\"G2532\"* appointed time|strong=\"G2540\"* I|strong=\"G2532\"* will|strong=\"G1510\"* come|strong=\"G2064\"*, and|strong=\"G2532\"* Sarah|strong=\"G4564\"* will|strong=\"G1510\"* have|strong=\"G2532\"* a|strong=\"G2532\"* son|strong=\"G5207\"*.”+ 9:9 Genesis 18:10,14*" + }, + { + "verseNum": 10, + "text": "Not|strong=\"G3756\"* only|strong=\"G3440\"* so|strong=\"G2532\"*, but|strong=\"G1161\"* Rebekah|strong=\"G4479\"* also|strong=\"G2532\"* conceived|strong=\"G2845\"* by|strong=\"G1537\"* one|strong=\"G1520\"*, by|strong=\"G1537\"* our|strong=\"G2532\"* father|strong=\"G3962\"* Isaac|strong=\"G2464\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* being|strong=\"G2443\"* not|strong=\"G3756\"* yet|strong=\"G1063\"* born|strong=\"G1080\"*, neither|strong=\"G3756\"* having|strong=\"G3366\"* done|strong=\"G4238\"* anything|strong=\"G5100\"* good|strong=\"G3756\"* or|strong=\"G2228\"* bad|strong=\"G5337\"*, that|strong=\"G2443\"* the|strong=\"G1537\"* purpose|strong=\"G4286\"* of|strong=\"G1537\"* God|strong=\"G2316\"* according|strong=\"G2596\"* to|strong=\"G2443\"* election|strong=\"G1589\"* might|strong=\"G2316\"* stand|strong=\"G3306\"*, not|strong=\"G3756\"* of|strong=\"G1537\"* works|strong=\"G2041\"*, but|strong=\"G1063\"* of|strong=\"G1537\"* him|strong=\"G3588\"* who|strong=\"G3588\"* calls|strong=\"G2564\"*,+ 9:11 NU puts the phrase “not of works, but of him who calls” at the beginning of verse 12 instead of the end of verse 11.*" + }, + { + "verseNum": 12, + "text": "it|strong=\"G3754\"* was|strong=\"G3588\"* said|strong=\"G2046\"* to|strong=\"G1398\"* her|strong=\"G3754\"*, “The|strong=\"G3588\"* elder will|strong=\"G3748\"* serve|strong=\"G1398\"* the|strong=\"G3588\"* younger|strong=\"G1640\"*.”+ 9:12 Genesis 25:23*" + }, + { + "verseNum": 13, + "text": "Even|strong=\"G2531\"* as|strong=\"G2531\"* it|strong=\"G1161\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “Jacob|strong=\"G2384\"* I|strong=\"G1161\"* loved, but|strong=\"G1161\"* Esau|strong=\"G2269\"* I|strong=\"G1161\"* hated|strong=\"G3404\"*.”+ 9:13 Malachi 1:2-3*" + }, + { + "verseNum": 14, + "text": "What|strong=\"G5101\"* shall|strong=\"G2316\"* we|strong=\"G3767\"* say|strong=\"G3004\"* then|strong=\"G3767\"*? Is|strong=\"G3588\"* there|strong=\"G1096\"* unrighteousness with|strong=\"G3844\"* God|strong=\"G2316\"*? May|strong=\"G2316\"* it|strong=\"G5101\"* never|strong=\"G3361\"* be|strong=\"G1096\"*!" + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* Moses|strong=\"G3475\"*, “I|strong=\"G3739\"* will|strong=\"G2532\"* have|strong=\"G2532\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* whom|strong=\"G3739\"* I|strong=\"G3739\"* have|strong=\"G2532\"* mercy|strong=\"G1653\"*, and|strong=\"G2532\"* I|strong=\"G3739\"* will|strong=\"G2532\"* have|strong=\"G2532\"* compassion|strong=\"G3627\"* on|strong=\"G1653\"* whom|strong=\"G3739\"* I|strong=\"G3739\"* have|strong=\"G2532\"* compassion|strong=\"G3627\"*.”+ 9:15 Exodus 33:19*" + }, + { + "verseNum": 16, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"* it|strong=\"G3588\"* is|strong=\"G3588\"* not|strong=\"G3756\"* of|strong=\"G2316\"* him|strong=\"G3588\"* who|strong=\"G3588\"* wills|strong=\"G2309\"*, nor|strong=\"G3761\"* of|strong=\"G2316\"* him|strong=\"G3588\"* who|strong=\"G3588\"* runs|strong=\"G5143\"*, but|strong=\"G3767\"* of|strong=\"G2316\"* God|strong=\"G2316\"* who|strong=\"G3588\"* has|strong=\"G2316\"* mercy|strong=\"G1653\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* Scripture|strong=\"G1124\"* says|strong=\"G3004\"* to|strong=\"G1519\"* Pharaoh|strong=\"G5328\"*, “For|strong=\"G1063\"* this|strong=\"G3778\"* very|strong=\"G2532\"* purpose I|strong=\"G1473\"* caused you|strong=\"G4771\"* to|strong=\"G1519\"* be|strong=\"G2532\"* raised|strong=\"G1825\"* up|strong=\"G1519\"*, that|strong=\"G3754\"* I|strong=\"G1473\"* might|strong=\"G2532\"* show|strong=\"G1731\"* in|strong=\"G1722\"* you|strong=\"G4771\"* my|strong=\"G1722\"* power|strong=\"G1411\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* my|strong=\"G1722\"* name|strong=\"G3686\"* might|strong=\"G2532\"* be|strong=\"G2532\"* proclaimed|strong=\"G1229\"* in|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*.”+ 9:17 Exodus 9:16*" + }, + { + "verseNum": 18, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"*, he|strong=\"G1161\"* has|strong=\"G3739\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* whom|strong=\"G3739\"* he|strong=\"G1161\"* desires|strong=\"G2309\"*, and|strong=\"G1161\"* he|strong=\"G1161\"* hardens|strong=\"G4645\"* whom|strong=\"G3739\"* he|strong=\"G1161\"* desires|strong=\"G2309\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"G3004\"* will|strong=\"G5101\"* say|strong=\"G3004\"* then|strong=\"G3767\"* to|strong=\"G3004\"* me|strong=\"G1473\"*, “Why|strong=\"G5101\"* does|strong=\"G5101\"* he|strong=\"G3588\"* still|strong=\"G2089\"* find|strong=\"G3201\"* fault|strong=\"G3201\"*? For|strong=\"G1063\"* who|strong=\"G5101\"* withstands his|strong=\"G3588\"* will|strong=\"G5101\"*?”" + }, + { + "verseNum": 20, + "text": "But|strong=\"G3361\"* indeed|strong=\"G3304\"*, O|strong=\"G5599\"* man|strong=\"G3361\"*, who|strong=\"G5101\"* are|strong=\"G1510\"* you|strong=\"G4771\"* to|strong=\"G3004\"* reply|strong=\"G3004\"* against|strong=\"G3779\"* God|strong=\"G2316\"*? Will|strong=\"G2316\"* the|strong=\"G3588\"* thing|strong=\"G5101\"* formed|strong=\"G4160\"* ask|strong=\"G3004\"* him|strong=\"G3588\"* who|strong=\"G5101\"* formed|strong=\"G4160\"* it|strong=\"G4160\"*, “Why|strong=\"G5101\"* did|strong=\"G4160\"* you|strong=\"G4771\"* make|strong=\"G4160\"* me|strong=\"G1473\"* like|strong=\"G3779\"* this|strong=\"G3588\"*?”+ 9:20 Isaiah 29:16; 45:9*" + }, + { + "verseNum": 21, + "text": "Or|strong=\"G2228\"* hasn’t|strong=\"G3588\"* the|strong=\"G1519\"* potter|strong=\"G2763\"* a|strong=\"G2192\"* right|strong=\"G1849\"* over|strong=\"G1537\"* the|strong=\"G1519\"* clay|strong=\"G4081\"*, from|strong=\"G1537\"* the|strong=\"G1519\"* same|strong=\"G3739\"* lump|strong=\"G5445\"* to|strong=\"G1519\"* make|strong=\"G4160\"* one|strong=\"G3739\"* part|strong=\"G1161\"* a|strong=\"G2192\"* vessel|strong=\"G4632\"* for|strong=\"G1519\"* honor|strong=\"G5092\"*, and|strong=\"G1161\"* another|strong=\"G3739\"* for|strong=\"G1519\"* dishonor?" + }, + { + "verseNum": 22, + "text": "What|strong=\"G3588\"* if|strong=\"G1487\"* God|strong=\"G2316\"*, willing|strong=\"G2309\"* to|strong=\"G1519\"* show|strong=\"G1731\"* his|strong=\"G1519\"* wrath|strong=\"G3709\"* and|strong=\"G2532\"* to|strong=\"G1519\"* make|strong=\"G1107\"* his|strong=\"G1519\"* power|strong=\"G1415\"* known|strong=\"G1107\"*, endured|strong=\"G5342\"* with|strong=\"G1722\"* much|strong=\"G4183\"* patience|strong=\"G3115\"* vessels|strong=\"G4632\"* of|strong=\"G2316\"* wrath|strong=\"G3709\"* prepared|strong=\"G2675\"* for|strong=\"G1519\"* destruction," + }, + { + "verseNum": 23, + "text": "and|strong=\"G2532\"* that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* make|strong=\"G1107\"* known|strong=\"G1107\"* the|strong=\"G2532\"* riches|strong=\"G4149\"* of|strong=\"G2532\"* his|strong=\"G1519\"* glory|strong=\"G1391\"* on|strong=\"G1909\"* vessels|strong=\"G4632\"* of|strong=\"G2532\"* mercy|strong=\"G1656\"*, which|strong=\"G3739\"* he|strong=\"G2532\"* prepared|strong=\"G4282\"* beforehand|strong=\"G4282\"* for|strong=\"G1519\"* glory|strong=\"G1391\"*—" + }, + { + "verseNum": 24, + "text": "us|strong=\"G2249\"*, whom|strong=\"G3739\"* he|strong=\"G2532\"* also|strong=\"G2532\"* called|strong=\"G2564\"*, not|strong=\"G3756\"* from|strong=\"G1537\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* only|strong=\"G3440\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* from|strong=\"G1537\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*?" + }, + { + "verseNum": 25, + "text": "As|strong=\"G5613\"* he|strong=\"G2532\"* says|strong=\"G3004\"* also|strong=\"G2532\"* in|strong=\"G1722\"* Hosea|strong=\"G5617\"*," + }, + { + "verseNum": 26, + "text": "“It|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G1510\"* that|strong=\"G3739\"* in|strong=\"G1722\"* the|strong=\"G1722\"* place|strong=\"G5117\"* where|strong=\"G3757\"* it|strong=\"G2532\"* was|strong=\"G1510\"* said|strong=\"G2046\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, ‘You|strong=\"G5210\"* are|strong=\"G1510\"* not|strong=\"G3756\"* my|strong=\"G1722\"* people|strong=\"G2992\"*,’" + }, + { + "verseNum": 27, + "text": "Isaiah|strong=\"G2268\"* cries|strong=\"G2896\"* concerning|strong=\"G5228\"* Israel|strong=\"G2474\"*," + }, + { + "verseNum": 28, + "text": "for|strong=\"G1063\"* he|strong=\"G2532\"* will|strong=\"G2532\"* finish|strong=\"G4931\"* the|strong=\"G2532\"* work|strong=\"G3056\"* and|strong=\"G2532\"* cut|strong=\"G2532\"* it|strong=\"G2532\"* short|strong=\"G4932\"* in|strong=\"G1909\"* righteousness," + }, + { + "verseNum": 29, + "text": "As|strong=\"G5613\"* Isaiah|strong=\"G2268\"* has|strong=\"G2962\"* said|strong=\"G2532\"* before|strong=\"G4302\"*," + }, + { + "verseNum": 30, + "text": "What|strong=\"G5101\"* shall|strong=\"G5101\"* we|strong=\"G3754\"* say|strong=\"G3004\"* then|strong=\"G3767\"*? That|strong=\"G3754\"* the|strong=\"G1537\"* Gentiles|strong=\"G1484\"*, who|strong=\"G5101\"* didn’t|strong=\"G3588\"* follow|strong=\"G1377\"* after|strong=\"G1161\"* righteousness|strong=\"G1343\"*, attained|strong=\"G2638\"* to|strong=\"G3004\"* righteousness|strong=\"G1343\"*, even|strong=\"G1161\"* the|strong=\"G1537\"* righteousness|strong=\"G1343\"* which|strong=\"G3588\"* is|strong=\"G3588\"* of|strong=\"G1537\"* faith|strong=\"G4102\"*;" + }, + { + "verseNum": 31, + "text": "but|strong=\"G1161\"* Israel|strong=\"G2474\"*, following after|strong=\"G1161\"* a|strong=\"G1519\"* law|strong=\"G3551\"* of|strong=\"G3551\"* righteousness|strong=\"G1343\"*, didn’t arrive|strong=\"G5348\"* at|strong=\"G1519\"* the|strong=\"G1519\"* law|strong=\"G3551\"* of|strong=\"G3551\"* righteousness|strong=\"G1343\"*." + }, + { + "verseNum": 32, + "text": "Why|strong=\"G5101\"*? Because|strong=\"G3754\"* they|strong=\"G3588\"* didn’t|strong=\"G3588\"* seek|strong=\"G5101\"* it|strong=\"G3754\"* by|strong=\"G1223\"* faith|strong=\"G4102\"*, but|strong=\"G3588\"* as|strong=\"G5613\"* it|strong=\"G3754\"* were|strong=\"G3588\"* by|strong=\"G1223\"* works|strong=\"G2041\"* of|strong=\"G1537\"* the|strong=\"G1537\"* law. They|strong=\"G3588\"* stumbled|strong=\"G4350\"* over|strong=\"G1537\"* the|strong=\"G1537\"* stumbling|strong=\"G4348\"* stone|strong=\"G3037\"*," + }, + { + "verseNum": 33, + "text": "even|strong=\"G2532\"* as|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Brothers, my|strong=\"G1699\"* heart|strong=\"G2588\"*’s desire|strong=\"G2107\"* and|strong=\"G2532\"* my|strong=\"G1699\"* prayer|strong=\"G1162\"* to|strong=\"G1519\"* God|strong=\"G2316\"* is|strong=\"G3588\"* for|strong=\"G1519\"* Israel, that|strong=\"G3588\"* they|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G2532\"* saved|strong=\"G4991\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* I|strong=\"G1063\"* testify|strong=\"G3140\"* about|strong=\"G2596\"* them|strong=\"G3754\"* that|strong=\"G3754\"* they|strong=\"G3754\"* have|strong=\"G2192\"* a|strong=\"G2192\"* zeal|strong=\"G2205\"* for|strong=\"G1063\"* God|strong=\"G2316\"*, but|strong=\"G1063\"* not|strong=\"G3756\"* according|strong=\"G2596\"* to|strong=\"G2596\"* knowledge|strong=\"G1922\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* being|strong=\"G2532\"* ignorant of|strong=\"G2316\"* God|strong=\"G2316\"*’s righteousness|strong=\"G1343\"*, and|strong=\"G2532\"* seeking|strong=\"G2212\"* to|strong=\"G2532\"* establish|strong=\"G2476\"* their|strong=\"G2532\"* own|strong=\"G2398\"* righteousness|strong=\"G1343\"*, they|strong=\"G2532\"* didn’t|strong=\"G3588\"* subject|strong=\"G5293\"* themselves|strong=\"G2398\"* to|strong=\"G2532\"* the|strong=\"G2532\"* righteousness|strong=\"G1343\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* Christ|strong=\"G5547\"* is|strong=\"G3588\"* the|strong=\"G1519\"* fulfillment|strong=\"G5056\"*+ 10:4 or, completion, or end* of|strong=\"G3551\"* the|strong=\"G1519\"* law|strong=\"G3551\"* for|strong=\"G1063\"* righteousness|strong=\"G1343\"* to|strong=\"G1519\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* believes|strong=\"G4100\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* Moses|strong=\"G3475\"* writes|strong=\"G1125\"* about|strong=\"G1722\"* the|strong=\"G1722\"* righteousness|strong=\"G1343\"* of|strong=\"G1537\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, “The|strong=\"G1722\"* one|strong=\"G3588\"* who|strong=\"G3588\"* does|strong=\"G4160\"* them|strong=\"G3588\"* will|strong=\"G4160\"* live|strong=\"G2198\"* by|strong=\"G1722\"* them|strong=\"G3588\"*.”+ 10:5 Leviticus 18:5*" + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* the|strong=\"G1722\"* righteousness|strong=\"G1343\"* which|strong=\"G3588\"* is|strong=\"G1510\"* of|strong=\"G1537\"* faith|strong=\"G4102\"* says|strong=\"G3004\"* this|strong=\"G3778\"*, “Don’t|strong=\"G3588\"* say|strong=\"G3004\"* in|strong=\"G1722\"* your|strong=\"G1722\"* heart|strong=\"G2588\"*, ‘Who|strong=\"G5101\"* will|strong=\"G5101\"* ascend|strong=\"G1537\"* into|strong=\"G1519\"* heaven|strong=\"G3772\"*?’+ 10:6 Deuteronomy 30:12* (that|strong=\"G3588\"* is|strong=\"G1510\"*, to|strong=\"G1519\"* bring|strong=\"G2609\"* Christ|strong=\"G5547\"* down|strong=\"G2609\"*);" + }, + { + "verseNum": 7, + "text": "or|strong=\"G2228\"*, ‘Who|strong=\"G5101\"* will|strong=\"G5101\"* descend|strong=\"G2597\"* into|strong=\"G1519\"* the|strong=\"G1519\"* abyss?’+ 10:7 Deuteronomy 30:13* (that|strong=\"G3588\"* is|strong=\"G1510\"*, to|strong=\"G1519\"* bring|strong=\"G1519\"* Christ|strong=\"G5547\"* up|strong=\"G1519\"* from|strong=\"G1537\"* the|strong=\"G1519\"* dead|strong=\"G3498\"*.)”" + }, + { + "verseNum": 8, + "text": "But|strong=\"G2532\"* what|strong=\"G5101\"* does|strong=\"G1510\"* it|strong=\"G2532\"* say|strong=\"G3004\"*? “The|strong=\"G1722\"* word|strong=\"G4487\"* is|strong=\"G1510\"* near|strong=\"G1451\"* you|strong=\"G4771\"*, in|strong=\"G1722\"* your|strong=\"G2532\"* mouth|strong=\"G4750\"* and|strong=\"G2532\"* in|strong=\"G1722\"* your|strong=\"G2532\"* heart|strong=\"G2588\"*;”+ 10:8 Deuteronomy 30:14* that|strong=\"G3739\"* is|strong=\"G1510\"*, the|strong=\"G1722\"* word|strong=\"G4487\"* of|strong=\"G2532\"* faith|strong=\"G4102\"* which|strong=\"G3739\"* we|strong=\"G3739\"* preach|strong=\"G2784\"*:" + }, + { + "verseNum": 9, + "text": "that|strong=\"G3754\"* if|strong=\"G1437\"* you|strong=\"G4771\"* will|strong=\"G2316\"* confess|strong=\"G3670\"* with|strong=\"G1722\"* your|strong=\"G2962\"* mouth|strong=\"G4750\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* is|strong=\"G3588\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* believe|strong=\"G4100\"* in|strong=\"G1722\"* your|strong=\"G2962\"* heart|strong=\"G2588\"* that|strong=\"G3754\"* God|strong=\"G2316\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*, you|strong=\"G4771\"* will|strong=\"G2316\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* with|strong=\"G1519\"* the|strong=\"G1519\"* heart|strong=\"G2588\"* one|strong=\"G1519\"* believes|strong=\"G4100\"* resulting|strong=\"G1519\"* in|strong=\"G1519\"* righteousness|strong=\"G1343\"*; and|strong=\"G1161\"* with|strong=\"G1519\"* the|strong=\"G1519\"* mouth|strong=\"G4750\"* confession is|strong=\"G1343\"* made|strong=\"G3670\"* resulting|strong=\"G1519\"* in|strong=\"G1519\"* salvation|strong=\"G4991\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* the|strong=\"G3956\"* Scripture|strong=\"G1124\"* says|strong=\"G3004\"*, “Whoever|strong=\"G3956\"* believes|strong=\"G4100\"* in|strong=\"G1909\"* him|strong=\"G3588\"* will|strong=\"G3956\"* not|strong=\"G3756\"* be|strong=\"G3756\"* disappointed|strong=\"G2617\"*.”+ 10:11 Isaiah 28:16*" + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* there|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3756\"* distinction|strong=\"G1293\"* between|strong=\"G5037\"* Jew|strong=\"G2453\"* and|strong=\"G2532\"* Greek|strong=\"G1672\"*; for|strong=\"G1063\"* the|strong=\"G2532\"* same|strong=\"G2532\"* Lord|strong=\"G2962\"* is|strong=\"G1510\"* Lord|strong=\"G2962\"* of|strong=\"G2532\"* all|strong=\"G3956\"*, and|strong=\"G2532\"* is|strong=\"G1510\"* rich|strong=\"G4147\"* to|strong=\"G1519\"* all|strong=\"G3956\"* who|strong=\"G3588\"* call|strong=\"G1941\"* on|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"*, “Whoever|strong=\"G3739\"* will|strong=\"G3739\"* call|strong=\"G1941\"* on|strong=\"G1941\"* the|strong=\"G3956\"* name|strong=\"G3686\"* of|strong=\"G3686\"* the|strong=\"G3956\"* Lord|strong=\"G2962\"* will|strong=\"G3739\"* be|strong=\"G3956\"* saved|strong=\"G4982\"*.”+ 10:13 Joel 2:32*" + }, + { + "verseNum": 14, + "text": "How|strong=\"G4459\"* then|strong=\"G3767\"* will|strong=\"G3739\"* they|strong=\"G1161\"* call|strong=\"G1941\"* on|strong=\"G1519\"* him|strong=\"G3739\"* in|strong=\"G1519\"* whom|strong=\"G3739\"* they|strong=\"G1161\"* have|strong=\"G4100\"* not|strong=\"G3756\"* believed|strong=\"G4100\"*? How|strong=\"G4459\"* will|strong=\"G3739\"* they|strong=\"G1161\"* believe|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3739\"* whom|strong=\"G3739\"* they|strong=\"G1161\"* have|strong=\"G4100\"* not|strong=\"G3756\"* heard? How|strong=\"G4459\"* will|strong=\"G3739\"* they|strong=\"G1161\"* hear without|strong=\"G5565\"* a|strong=\"G1519\"* preacher|strong=\"G2784\"*?" + }, + { + "verseNum": 15, + "text": "And|strong=\"G1161\"* how|strong=\"G4459\"* will|strong=\"G4459\"* they|strong=\"G1161\"* preach|strong=\"G2784\"* unless|strong=\"G1437\"* they|strong=\"G1161\"* are|strong=\"G3588\"* sent|strong=\"G1125\"*? As|strong=\"G5613\"* it|strong=\"G1161\"* is|strong=\"G3588\"* written|strong=\"G1125\"*:" + }, + { + "verseNum": 16, + "text": "But|strong=\"G1063\"* they|strong=\"G3588\"* didn’t|strong=\"G3588\"* all|strong=\"G3956\"* listen to|strong=\"G3004\"* the|strong=\"G3956\"* glad news|strong=\"G2098\"*. For|strong=\"G1063\"* Isaiah|strong=\"G2268\"* says|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, who|strong=\"G5101\"* has|strong=\"G2962\"* believed|strong=\"G4100\"* our|strong=\"G3956\"* report?”+ 10:16 Isaiah 53:1*" + }, + { + "verseNum": 17, + "text": "So|strong=\"G1161\"* faith|strong=\"G4102\"* comes by|strong=\"G1223\"* hearing, and|strong=\"G1161\"* hearing by|strong=\"G1223\"* the|strong=\"G1537\"* word|strong=\"G4487\"* of|strong=\"G1537\"* God|strong=\"G3588\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"G2532\"* I|strong=\"G2532\"* say|strong=\"G3004\"*, didn’t|strong=\"G3588\"* they|strong=\"G2532\"* hear? Yes, most certainly|strong=\"G2532\"*," + }, + { + "verseNum": 19, + "text": "But|strong=\"G3361\"* I|strong=\"G1473\"* ask|strong=\"G3004\"*, didn’t Israel|strong=\"G2474\"* know|strong=\"G1097\"*? First|strong=\"G4413\"* Moses|strong=\"G3475\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 20, + "text": "Isaiah|strong=\"G2268\"* is|strong=\"G3588\"* very|strong=\"G2532\"* bold and|strong=\"G2532\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 21, + "text": "But|strong=\"G1161\"* about|strong=\"G4314\"* Israel|strong=\"G2474\"* he|strong=\"G2532\"* says|strong=\"G3004\"*, “All|strong=\"G3650\"* day|strong=\"G2250\"* long|strong=\"G2250\"* I|strong=\"G1473\"* stretched|strong=\"G1600\"* out|strong=\"G2532\"* my|strong=\"G1473\"* hands|strong=\"G5495\"* to|strong=\"G4314\"* a|strong=\"G2532\"* disobedient and|strong=\"G2532\"* contrary people|strong=\"G2992\"*.”+ 10:21 Isaiah 65:2*" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G1473\"* ask|strong=\"G3004\"* then|strong=\"G3767\"*, did|strong=\"G2532\"* God|strong=\"G2316\"* reject his|strong=\"G2532\"* people|strong=\"G2992\"*? May|strong=\"G2532\"* it|strong=\"G2532\"* never|strong=\"G3361\"* be|strong=\"G1096\"*! For|strong=\"G1063\"* I|strong=\"G1473\"* also|strong=\"G2532\"* am|strong=\"G1510\"* an|strong=\"G2532\"* Israelite|strong=\"G2475\"*, a|strong=\"G1096\"* descendant|strong=\"G4690\"* of|strong=\"G1537\"* Abraham, of|strong=\"G1537\"* the|strong=\"G2532\"* tribe|strong=\"G5443\"* of|strong=\"G1537\"* Benjamin." + }, + { + "verseNum": 2, + "text": "God|strong=\"G2316\"* didn’t|strong=\"G3588\"* reject his|strong=\"G1722\"* people|strong=\"G2992\"*, whom|strong=\"G3739\"* he|strong=\"G3739\"* foreknew|strong=\"G4267\"*. Or|strong=\"G2228\"* don’t|strong=\"G3588\"* you|strong=\"G3739\"* know|strong=\"G1492\"* what|strong=\"G5101\"* the|strong=\"G1722\"* Scripture|strong=\"G1124\"* says|strong=\"G3004\"* about|strong=\"G5613\"* Elijah|strong=\"G2243\"*? How|strong=\"G5613\"* he|strong=\"G3739\"* pleads|strong=\"G1793\"* with|strong=\"G1722\"* God|strong=\"G2316\"* against|strong=\"G2596\"* Israel|strong=\"G2474\"*:" + }, + { + "verseNum": 3, + "text": "“Lord|strong=\"G2962\"*, they|strong=\"G2532\"* have|strong=\"G2532\"* killed your|strong=\"G2962\"* prophets|strong=\"G4396\"*. They|strong=\"G2532\"* have|strong=\"G2532\"* broken down|strong=\"G2679\"* your|strong=\"G2962\"* altars|strong=\"G2379\"*. I|strong=\"G1473\"* am|strong=\"G1473\"* left|strong=\"G5275\"* alone|strong=\"G3441\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* seek|strong=\"G2212\"* my|strong=\"G2212\"* life|strong=\"G5590\"*.”+ 11:3 1 Kings 19:10,14*" + }, + { + "verseNum": 4, + "text": "But|strong=\"G3588\"* how|strong=\"G5101\"* does|strong=\"G5101\"* God|strong=\"G3004\"* answer him|strong=\"G3588\"*? “I|strong=\"G3004\"* have|strong=\"G3748\"* reserved|strong=\"G2641\"* for|strong=\"G3756\"* myself|strong=\"G1683\"* seven|strong=\"G2035\"* thousand|strong=\"G2035\"* men|strong=\"G3588\"* who|strong=\"G5101\"* have|strong=\"G3748\"* not|strong=\"G3756\"* bowed|strong=\"G2578\"* the|strong=\"G3588\"* knee|strong=\"G1119\"* to|strong=\"G3004\"* Baal.”+ 11:4 1 Kings 19:18*" + }, + { + "verseNum": 5, + "text": "Even|strong=\"G2532\"* so|strong=\"G3779\"* too|strong=\"G2532\"* at|strong=\"G1722\"* this|strong=\"G3588\"* present|strong=\"G3568\"* time|strong=\"G2540\"* also|strong=\"G2532\"* there|strong=\"G2532\"* is|strong=\"G3588\"* a|strong=\"G1096\"* remnant|strong=\"G3005\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* election|strong=\"G1589\"* of|strong=\"G2532\"* grace|strong=\"G5485\"*." + }, + { + "verseNum": 6, + "text": "And|strong=\"G1161\"* if|strong=\"G1487\"* by|strong=\"G1537\"* grace|strong=\"G5485\"*, then|strong=\"G1161\"* it|strong=\"G1161\"* is|strong=\"G3588\"* no|strong=\"G3765\"* longer|strong=\"G3765\"* of|strong=\"G1537\"* works|strong=\"G2041\"*; otherwise|strong=\"G1893\"* grace|strong=\"G5485\"* is|strong=\"G3588\"* no|strong=\"G3765\"* longer|strong=\"G3765\"* grace|strong=\"G5485\"*. But|strong=\"G1161\"* if|strong=\"G1487\"* it|strong=\"G1161\"* is|strong=\"G3588\"* of|strong=\"G1537\"* works|strong=\"G2041\"*, it|strong=\"G1161\"* is|strong=\"G3588\"* no|strong=\"G3765\"* longer|strong=\"G3765\"* grace|strong=\"G5485\"*; otherwise|strong=\"G1893\"* work|strong=\"G2041\"* is|strong=\"G3588\"* no|strong=\"G3765\"* longer|strong=\"G3765\"* work|strong=\"G2041\"*." + }, + { + "verseNum": 7, + "text": "What|strong=\"G5101\"* then|strong=\"G3767\"*? That|strong=\"G3739\"* which|strong=\"G3739\"* Israel|strong=\"G2474\"* seeks|strong=\"G1934\"* for|strong=\"G1161\"*, that|strong=\"G3739\"* he|strong=\"G1161\"* didn’t|strong=\"G3588\"* obtain|strong=\"G2013\"*, but|strong=\"G1161\"* the|strong=\"G1161\"* chosen|strong=\"G1589\"* ones obtained|strong=\"G2013\"* it|strong=\"G1161\"*, and|strong=\"G1161\"* the|strong=\"G1161\"* rest|strong=\"G3062\"* were|strong=\"G3588\"* hardened|strong=\"G4456\"*." + }, + { + "verseNum": 8, + "text": "According|strong=\"G2316\"* as|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “God|strong=\"G2316\"* gave|strong=\"G1325\"* them|strong=\"G3588\"* a|strong=\"G2532\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* stupor|strong=\"G2659\"*, eyes|strong=\"G3788\"* that|strong=\"G3588\"* they|strong=\"G2532\"* should|strong=\"G2316\"* not|strong=\"G3361\"* see, and|strong=\"G2532\"* ears|strong=\"G3775\"* that|strong=\"G3588\"* they|strong=\"G2532\"* should|strong=\"G2316\"* not|strong=\"G3361\"* hear, to|strong=\"G2532\"* this|strong=\"G3588\"* very|strong=\"G2532\"* day|strong=\"G2250\"*.”+ 11:8 Deuteronomy 29:4; Isaiah 29:10*" + }, + { + "verseNum": 9, + "text": "David|strong=\"G1138\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 10, + "text": "Let|strong=\"G4654\"* their|strong=\"G2532\"* eyes|strong=\"G3788\"* be|strong=\"G2532\"* darkened|strong=\"G4654\"*, that|strong=\"G3588\"* they|strong=\"G2532\"* may|strong=\"G2532\"* not|strong=\"G3361\"* see." + }, + { + "verseNum": 11, + "text": "I|strong=\"G3767\"* ask|strong=\"G3004\"* then|strong=\"G3767\"*, did|strong=\"G1096\"* they|strong=\"G3588\"* stumble|strong=\"G4417\"* that|strong=\"G2443\"* they|strong=\"G3588\"* might|strong=\"G1484\"* fall|strong=\"G4098\"*? May|strong=\"G2443\"* it|strong=\"G1096\"* never|strong=\"G3361\"* be|strong=\"G1096\"*! But|strong=\"G3361\"* by|strong=\"G3004\"* their|strong=\"G1438\"* fall|strong=\"G4098\"* salvation|strong=\"G4991\"* has|strong=\"G1096\"* come|strong=\"G1096\"* to|strong=\"G1519\"* the|strong=\"G1519\"* Gentiles|strong=\"G1484\"*, to|strong=\"G1519\"* provoke|strong=\"G3863\"* them|strong=\"G3588\"* to|strong=\"G1519\"* jealousy|strong=\"G3863\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"G1161\"* if|strong=\"G1487\"* their|strong=\"G2532\"* fall|strong=\"G3900\"* is|strong=\"G3588\"* the|strong=\"G2532\"* riches|strong=\"G4149\"* of|strong=\"G2532\"* the|strong=\"G2532\"* world|strong=\"G2889\"*, and|strong=\"G2532\"* their|strong=\"G2532\"* loss the|strong=\"G2532\"* riches|strong=\"G4149\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*, how|strong=\"G4214\"* much|strong=\"G4214\"* more|strong=\"G3123\"* their|strong=\"G2532\"* fullness|strong=\"G4138\"*!" + }, + { + "verseNum": 13, + "text": "For|strong=\"G1909\"* I|strong=\"G1473\"* speak|strong=\"G3004\"* to|strong=\"G1909\"* you|strong=\"G5210\"* who|strong=\"G3588\"* are|strong=\"G1510\"* Gentiles|strong=\"G1484\"*. Since|strong=\"G1161\"* then|strong=\"G3767\"* as|strong=\"G3745\"* I|strong=\"G1473\"* am|strong=\"G1510\"* an|strong=\"G1510\"* apostle to|strong=\"G1909\"* Gentiles|strong=\"G1484\"*, I|strong=\"G1473\"* glorify|strong=\"G1392\"* my|strong=\"G1473\"* ministry|strong=\"G1248\"*," + }, + { + "verseNum": 14, + "text": "if|strong=\"G1487\"* by|strong=\"G1537\"* any|strong=\"G5100\"* means|strong=\"G1513\"* I|strong=\"G1473\"* may|strong=\"G2532\"* provoke|strong=\"G3863\"* to|strong=\"G2532\"* jealousy|strong=\"G3863\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* my|strong=\"G1473\"* flesh|strong=\"G4561\"*, and|strong=\"G2532\"* may|strong=\"G2532\"* save|strong=\"G4982\"* some|strong=\"G5100\"* of|strong=\"G1537\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* the|strong=\"G1537\"* rejection of|strong=\"G1537\"* them|strong=\"G3588\"* is|strong=\"G3588\"* the|strong=\"G1537\"* reconciling|strong=\"G2643\"* of|strong=\"G1537\"* the|strong=\"G1537\"* world|strong=\"G2889\"*, what|strong=\"G5101\"* would|strong=\"G5101\"* their|strong=\"G3588\"* acceptance|strong=\"G4356\"* be|strong=\"G3361\"*, but|strong=\"G1487\"* life|strong=\"G2222\"* from|strong=\"G1537\"* the|strong=\"G1537\"* dead|strong=\"G3498\"*?" + }, + { + "verseNum": 16, + "text": "If|strong=\"G1487\"* the|strong=\"G2532\"* first|strong=\"G3588\"* fruit is|strong=\"G3588\"* holy, so|strong=\"G2532\"* is|strong=\"G3588\"* the|strong=\"G2532\"* lump|strong=\"G5445\"*. If|strong=\"G1487\"* the|strong=\"G2532\"* root|strong=\"G4491\"* is|strong=\"G3588\"* holy, so|strong=\"G2532\"* are|strong=\"G3588\"* the|strong=\"G2532\"* branches|strong=\"G2798\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* some|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G1722\"* branches|strong=\"G2798\"* were|strong=\"G1510\"* broken|strong=\"G1575\"* off|strong=\"G1575\"*, and|strong=\"G2532\"* you|strong=\"G4771\"*, being|strong=\"G1510\"* a|strong=\"G1096\"* wild|strong=\"G2532\"* olive|strong=\"G1636\"*, were|strong=\"G1510\"* grafted|strong=\"G1461\"* in|strong=\"G1722\"* among|strong=\"G1722\"* them|strong=\"G3588\"* and|strong=\"G2532\"* became|strong=\"G1096\"* partaker|strong=\"G4791\"* with|strong=\"G1722\"* them|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G1722\"* root|strong=\"G4491\"* and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G1722\"* richness of|strong=\"G2532\"* the|strong=\"G1722\"* olive|strong=\"G1636\"* tree|strong=\"G1636\"*," + }, + { + "verseNum": 18, + "text": "don’t|strong=\"G3588\"* boast|strong=\"G2620\"* over|strong=\"G2620\"* the|strong=\"G1161\"* branches|strong=\"G2798\"*. But|strong=\"G1161\"* if|strong=\"G1487\"* you|strong=\"G4771\"* boast|strong=\"G2620\"*, remember that|strong=\"G3588\"* it|strong=\"G1161\"* is|strong=\"G3588\"* not|strong=\"G3756\"* you|strong=\"G4771\"* who|strong=\"G3588\"* support the|strong=\"G1161\"* root|strong=\"G4491\"*, but|strong=\"G1161\"* the|strong=\"G1161\"* root|strong=\"G4491\"* supports you|strong=\"G4771\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"G3004\"* will|strong=\"G1473\"* say|strong=\"G3004\"* then|strong=\"G3767\"*, “Branches|strong=\"G2798\"* were|strong=\"G2798\"* broken|strong=\"G1575\"* off|strong=\"G1575\"*, that|strong=\"G2443\"* I|strong=\"G1473\"* might|strong=\"G1473\"* be|strong=\"G2443\"* grafted|strong=\"G1461\"* in|strong=\"G3004\"*.”" + }, + { + "verseNum": 20, + "text": "True|strong=\"G3588\"*; by|strong=\"G2476\"* their|strong=\"G3588\"* unbelief they|strong=\"G1161\"* were|strong=\"G3588\"* broken|strong=\"G1575\"* off|strong=\"G1575\"*, and|strong=\"G1161\"* you|strong=\"G4771\"* stand|strong=\"G2476\"* by|strong=\"G2476\"* your|strong=\"G5426\"* faith|strong=\"G4102\"*. Don’t|strong=\"G3588\"* be|strong=\"G3361\"* conceited|strong=\"G5426\"*, but|strong=\"G1161\"* fear|strong=\"G5399\"*;" + }, + { + "verseNum": 21, + "text": "for|strong=\"G1063\"* if|strong=\"G1487\"* God|strong=\"G2316\"* didn’t|strong=\"G3588\"* spare|strong=\"G5339\"* the|strong=\"G2596\"* natural|strong=\"G5449\"* branches|strong=\"G2798\"*, neither|strong=\"G3761\"* will|strong=\"G2316\"* he|strong=\"G3588\"* spare|strong=\"G5339\"* you|strong=\"G4771\"*." + }, + { + "verseNum": 22, + "text": "See|strong=\"G3708\"* then|strong=\"G3767\"* the|strong=\"G2532\"* goodness|strong=\"G5544\"* and|strong=\"G2532\"* severity of|strong=\"G2316\"* God|strong=\"G2316\"*. Toward|strong=\"G1909\"* those|strong=\"G3588\"* who|strong=\"G3588\"* fell|strong=\"G4098\"*, severity; but|strong=\"G1161\"* toward|strong=\"G1909\"* you|strong=\"G4771\"*, goodness|strong=\"G5544\"*, if|strong=\"G1437\"* you|strong=\"G4771\"* continue|strong=\"G1961\"* in|strong=\"G1909\"* his|strong=\"G1909\"* goodness|strong=\"G5544\"*; otherwise|strong=\"G1893\"* you|strong=\"G4771\"* also|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G2532\"* cut|strong=\"G1581\"* off|strong=\"G1581\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"G1161\"* also|strong=\"G1161\"*, if|strong=\"G1437\"* they|strong=\"G1161\"* don’t|strong=\"G3588\"* continue|strong=\"G1961\"* in|strong=\"G2316\"* their|strong=\"G1438\"* unbelief, will|strong=\"G2316\"* be|strong=\"G1510\"* grafted|strong=\"G1461\"* in|strong=\"G2316\"*, for|strong=\"G1063\"* God|strong=\"G2316\"* is|strong=\"G1510\"* able|strong=\"G1415\"* to|strong=\"G1161\"* graft|strong=\"G1461\"* them|strong=\"G3588\"* in|strong=\"G2316\"* again|strong=\"G3825\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* you|strong=\"G4771\"* were|strong=\"G3588\"* cut|strong=\"G1581\"* out|strong=\"G1537\"* of|strong=\"G1537\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* by|strong=\"G1537\"* nature|strong=\"G5449\"* a|strong=\"G2532\"* wild|strong=\"G2532\"* olive|strong=\"G1636\"* tree|strong=\"G1636\"*, and|strong=\"G2532\"* were|strong=\"G3588\"* grafted|strong=\"G1461\"* contrary|strong=\"G3844\"* to|strong=\"G1519\"* nature|strong=\"G5449\"* into|strong=\"G1519\"* a|strong=\"G2532\"* good|strong=\"G3588\"* olive|strong=\"G1636\"* tree|strong=\"G1636\"*, how|strong=\"G4214\"* much|strong=\"G4214\"* more|strong=\"G3123\"* will|strong=\"G2532\"* these|strong=\"G3778\"*, which|strong=\"G3588\"* are|strong=\"G3588\"* the|strong=\"G2532\"* natural|strong=\"G5449\"* branches, be|strong=\"G2532\"* grafted|strong=\"G1461\"* into|strong=\"G1519\"* their|strong=\"G2532\"* own|strong=\"G2398\"* olive|strong=\"G1636\"* tree|strong=\"G1636\"*?" + }, + { + "verseNum": 25, + "text": "For|strong=\"G1063\"* I|strong=\"G3739\"* don’t|strong=\"G3588\"* desire|strong=\"G2309\"* you|strong=\"G5210\"* to|strong=\"G2443\"* be|strong=\"G1096\"* ignorant|strong=\"G3361\"*, brothers,+ 11:25 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* of|strong=\"G3844\"* this|strong=\"G3778\"* mystery|strong=\"G3466\"*, so|strong=\"G2443\"* that|strong=\"G3754\"* you|strong=\"G5210\"* won’t|strong=\"G3588\"* be|strong=\"G1096\"* wise|strong=\"G5429\"* in|strong=\"G1525\"* your|strong=\"G1438\"* own|strong=\"G1438\"* conceits|strong=\"G1438\"*, that|strong=\"G3754\"* a|strong=\"G1096\"* partial|strong=\"G3313\"* hardening|strong=\"G4457\"* has|strong=\"G3739\"* happened|strong=\"G1096\"* to|strong=\"G2443\"* Israel|strong=\"G2474\"*, until the|strong=\"G3588\"* fullness|strong=\"G4138\"* of|strong=\"G3844\"* the|strong=\"G3588\"* Gentiles|strong=\"G1484\"* has|strong=\"G3739\"* come|strong=\"G1096\"* in|strong=\"G1525\"*," + }, + { + "verseNum": 26, + "text": "and|strong=\"G2532\"* so|strong=\"G3779\"* all|strong=\"G3956\"* Israel|strong=\"G2474\"* will|strong=\"G2532\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*. Even|strong=\"G2532\"* as|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 27, + "text": "This|strong=\"G3778\"* is|strong=\"G3588\"* my|strong=\"G1473\"* covenant|strong=\"G1242\"* with|strong=\"G3844\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 28, + "text": "Concerning|strong=\"G2596\"* the|strong=\"G1161\"* Good|strong=\"G1223\"* News|strong=\"G2098\"*, they|strong=\"G1161\"* are|strong=\"G3588\"* enemies|strong=\"G2190\"* for|strong=\"G1223\"* your|strong=\"G1223\"* sake|strong=\"G1223\"*. But|strong=\"G1161\"* concerning|strong=\"G2596\"* the|strong=\"G1161\"* election|strong=\"G1589\"*, they|strong=\"G1161\"* are|strong=\"G3588\"* beloved for|strong=\"G1223\"* the|strong=\"G1161\"* fathers|strong=\"G3962\"*’ sake|strong=\"G1223\"*." + }, + { + "verseNum": 29, + "text": "For|strong=\"G1063\"* the|strong=\"G2532\"* gifts|strong=\"G5486\"* and|strong=\"G2532\"* the|strong=\"G2532\"* calling|strong=\"G2821\"* of|strong=\"G2532\"* God|strong=\"G2316\"* are|strong=\"G3588\"* irrevocable." + }, + { + "verseNum": 30, + "text": "For|strong=\"G1063\"* as|strong=\"G5618\"* you|strong=\"G5210\"* in|strong=\"G2316\"* time|strong=\"G4218\"* past|strong=\"G4218\"* were|strong=\"G3588\"* disobedient to|strong=\"G1161\"* God|strong=\"G2316\"*, but|strong=\"G1161\"* now|strong=\"G1161\"* have|strong=\"G1653\"* obtained|strong=\"G3568\"* mercy|strong=\"G1653\"* by|strong=\"G1063\"* their|strong=\"G3588\"* disobedience," + }, + { + "verseNum": 31, + "text": "even|strong=\"G2532\"* so|strong=\"G3779\"* these|strong=\"G3778\"* also|strong=\"G2532\"* have|strong=\"G2532\"* now|strong=\"G3568\"* been|strong=\"G2532\"* disobedient, that|strong=\"G2443\"* by|strong=\"G2532\"* the|strong=\"G2532\"* mercy|strong=\"G1656\"* shown|strong=\"G1653\"* to|strong=\"G2443\"* you|strong=\"G3779\"* they|strong=\"G2532\"* may|strong=\"G2532\"* also|strong=\"G2532\"* obtain mercy|strong=\"G1656\"*." + }, + { + "verseNum": 32, + "text": "For|strong=\"G1063\"* God|strong=\"G2316\"* has|strong=\"G2316\"* bound all|strong=\"G3956\"* to|strong=\"G1519\"* disobedience, that|strong=\"G2443\"* he|strong=\"G3588\"* might|strong=\"G2316\"* have|strong=\"G1653\"* mercy|strong=\"G1653\"* on|strong=\"G1519\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 33, + "text": "Oh|strong=\"G5599\"* the|strong=\"G2532\"* depth of|strong=\"G2316\"* the|strong=\"G2532\"* riches|strong=\"G4149\"* both|strong=\"G2532\"* of|strong=\"G2316\"* the|strong=\"G2532\"* wisdom|strong=\"G4678\"* and|strong=\"G2532\"* the|strong=\"G2532\"* knowledge|strong=\"G1108\"* of|strong=\"G2316\"* God|strong=\"G2316\"*! How|strong=\"G5613\"* unsearchable are|strong=\"G3588\"* his|strong=\"G2532\"* judgments|strong=\"G2917\"*, and|strong=\"G2532\"* his|strong=\"G2532\"* ways|strong=\"G3598\"* past tracing out|strong=\"G2532\"*!" + }, + { + "verseNum": 34, + "text": "“For|strong=\"G1063\"* who|strong=\"G5101\"* has|strong=\"G2962\"* known|strong=\"G1097\"* the|strong=\"G1063\"* mind|strong=\"G3563\"* of|strong=\"G2962\"* the|strong=\"G1063\"* Lord|strong=\"G2962\"*?" + }, + { + "verseNum": 35, + "text": "“Or|strong=\"G2228\"* who|strong=\"G5101\"* has|strong=\"G5101\"* first|strong=\"G4272\"* given|strong=\"G4272\"* to|strong=\"G2532\"* him|strong=\"G2532\"*," + }, + { + "verseNum": 36, + "text": "For|strong=\"G3754\"* of|strong=\"G1537\"* him|strong=\"G3588\"* and|strong=\"G2532\"* through|strong=\"G1223\"* him|strong=\"G3588\"* and|strong=\"G2532\"* to|strong=\"G1519\"* him|strong=\"G3588\"* are|strong=\"G3588\"* all|strong=\"G3956\"* things|strong=\"G3956\"*. To|strong=\"G1519\"* him|strong=\"G3588\"* be|strong=\"G2532\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* for|strong=\"G3754\"* ever|strong=\"G1519\"*! Amen." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G3767\"* I|strong=\"G1223\"* urge|strong=\"G3870\"* you|strong=\"G5210\"*, brothers, by|strong=\"G1223\"* the|strong=\"G1223\"* mercies|strong=\"G3628\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, to|strong=\"G2316\"* present|strong=\"G3936\"* your|strong=\"G1223\"* bodies|strong=\"G4983\"* a|strong=\"G1223\"* living|strong=\"G2198\"* sacrifice|strong=\"G2378\"*, holy, acceptable|strong=\"G2101\"* to|strong=\"G2316\"* God|strong=\"G2316\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* your|strong=\"G1223\"* spiritual|strong=\"G3050\"* service|strong=\"G2999\"*." + }, + { + "verseNum": 2, + "text": "Don’t|strong=\"G3588\"* be|strong=\"G2532\"* conformed|strong=\"G4964\"* to|strong=\"G1519\"* this|strong=\"G3778\"* world, but|strong=\"G2532\"* be|strong=\"G2532\"* transformed|strong=\"G3339\"* by|strong=\"G2532\"* the|strong=\"G2532\"* renewing of|strong=\"G2316\"* your|strong=\"G2532\"* mind|strong=\"G3563\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* you|strong=\"G5210\"* may|strong=\"G2532\"* prove|strong=\"G1381\"* what|strong=\"G5101\"* is|strong=\"G3588\"* the|strong=\"G2532\"* good|strong=\"G5101\"*, well-pleasing|strong=\"G2101\"*, and|strong=\"G2532\"* perfect|strong=\"G5046\"* will|strong=\"G2307\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* say|strong=\"G3004\"* through|strong=\"G1223\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* that|strong=\"G3739\"* was|strong=\"G1510\"* given|strong=\"G1325\"* me|strong=\"G1325\"*, to|strong=\"G1519\"* everyone|strong=\"G3956\"* who|strong=\"G3739\"* is|strong=\"G1510\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, not|strong=\"G3361\"* to|strong=\"G1519\"* think|strong=\"G5426\"* of|strong=\"G1223\"* yourself|strong=\"G4771\"* more|strong=\"G1325\"* highly|strong=\"G5252\"* than|strong=\"G3844\"* you|strong=\"G5210\"* ought|strong=\"G1163\"* to|strong=\"G1519\"* think|strong=\"G5426\"*; but|strong=\"G3361\"* to|strong=\"G1519\"* think|strong=\"G5426\"* reasonably, as|strong=\"G5613\"* God|strong=\"G2316\"* has|strong=\"G2316\"* apportioned|strong=\"G3307\"* to|strong=\"G1519\"* each|strong=\"G1538\"* person|strong=\"G3739\"* a|strong=\"G5613\"* measure|strong=\"G3358\"* of|strong=\"G1223\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* even|strong=\"G1161\"* as|strong=\"G1722\"* we|strong=\"G1063\"* have|strong=\"G2192\"* many|strong=\"G4183\"* members|strong=\"G3196\"* in|strong=\"G1722\"* one|strong=\"G1520\"* body|strong=\"G4983\"*, and|strong=\"G1161\"* all|strong=\"G3956\"* the|strong=\"G1722\"* members|strong=\"G3196\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* the|strong=\"G1722\"* same function|strong=\"G4234\"*," + }, + { + "verseNum": 5, + "text": "so|strong=\"G3779\"* we|strong=\"G1161\"*, who|strong=\"G3588\"* are|strong=\"G1510\"* many|strong=\"G4183\"*, are|strong=\"G1510\"* one|strong=\"G1520\"* body|strong=\"G4983\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*, and|strong=\"G1161\"* individually|strong=\"G2596\"* members|strong=\"G3196\"* of|strong=\"G1520\"* one|strong=\"G1520\"* another|strong=\"G2596\"*," + }, + { + "verseNum": 6, + "text": "having|strong=\"G2192\"* gifts|strong=\"G5486\"* differing|strong=\"G1313\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1161\"* grace|strong=\"G5485\"* that|strong=\"G3588\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2596\"* us|strong=\"G1325\"*: if|strong=\"G1535\"* prophecy|strong=\"G4394\"*, let|strong=\"G1161\"*’s|strong=\"G2192\"* prophesy according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1161\"* proportion of|strong=\"G5485\"* our|strong=\"G2596\"* faith|strong=\"G4102\"*;" + }, + { + "verseNum": 7, + "text": "or|strong=\"G1535\"* service|strong=\"G1248\"*, let’s give ourselves to|strong=\"G1722\"* service|strong=\"G1248\"*; or|strong=\"G1535\"* he|strong=\"G3588\"* who|strong=\"G3588\"* teaches|strong=\"G1321\"*, to|strong=\"G1722\"* his|strong=\"G1722\"* teaching|strong=\"G1321\"*;" + }, + { + "verseNum": 8, + "text": "or|strong=\"G1535\"* he|strong=\"G3588\"* who|strong=\"G3588\"* exhorts|strong=\"G3870\"*, to|strong=\"G1722\"* his|strong=\"G1722\"* exhorting|strong=\"G3870\"*; he|strong=\"G3588\"* who|strong=\"G3588\"* gives|strong=\"G3330\"*, let him|strong=\"G3588\"* do|strong=\"G1722\"* it|strong=\"G3588\"* with|strong=\"G1722\"* generosity; he|strong=\"G3588\"* who|strong=\"G3588\"* rules, with|strong=\"G1722\"* diligence|strong=\"G4710\"*; he|strong=\"G3588\"* who|strong=\"G3588\"* shows|strong=\"G1653\"* mercy|strong=\"G1653\"*, with|strong=\"G1722\"* cheerfulness|strong=\"G2432\"*." + }, + { + "verseNum": 9, + "text": "Let love be|strong=\"G3588\"* without|strong=\"G3588\"* hypocrisy. Abhor that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* evil|strong=\"G4190\"*. Cling|strong=\"G2853\"* to|strong=\"G3588\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* good|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"G1519\"* love|strong=\"G5360\"* of|strong=\"G3588\"* the|strong=\"G1519\"* brothers be|strong=\"G1519\"* tenderly affectionate to|strong=\"G1519\"* one|strong=\"G3588\"* another|strong=\"G3588\"*; in|strong=\"G1519\"* honor|strong=\"G5092\"* prefer one|strong=\"G3588\"* another|strong=\"G3588\"*," + }, + { + "verseNum": 11, + "text": "not|strong=\"G3361\"* lagging|strong=\"G3636\"* in|strong=\"G3588\"* diligence|strong=\"G4710\"*, fervent|strong=\"G2204\"* in|strong=\"G3588\"* spirit|strong=\"G4151\"*, serving|strong=\"G1398\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"*," + }, + { + "verseNum": 12, + "text": "rejoicing|strong=\"G5463\"* in|strong=\"G5463\"* hope|strong=\"G1680\"*, enduring in|strong=\"G5463\"* troubles|strong=\"G2347\"*, continuing|strong=\"G4342\"* steadfastly in|strong=\"G5463\"* prayer|strong=\"G4335\"*," + }, + { + "verseNum": 13, + "text": "contributing|strong=\"G2841\"* to|strong=\"G3588\"* the|strong=\"G3588\"* needs|strong=\"G5532\"* of|strong=\"G5532\"* the|strong=\"G3588\"* saints, and|strong=\"G3588\"* given to|strong=\"G3588\"* hospitality|strong=\"G5381\"*." + }, + { + "verseNum": 14, + "text": "Bless|strong=\"G2127\"* those|strong=\"G3588\"* who|strong=\"G3588\"* persecute|strong=\"G1377\"* you|strong=\"G5210\"*; bless|strong=\"G2127\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* curse|strong=\"G2672\"*." + }, + { + "verseNum": 15, + "text": "Rejoice|strong=\"G5463\"* with|strong=\"G3326\"* those who rejoice|strong=\"G5463\"*. Weep|strong=\"G2799\"* with|strong=\"G3326\"* those who weep|strong=\"G2799\"*." + }, + { + "verseNum": 16, + "text": "Be|strong=\"G1096\"* of|strong=\"G3844\"* the|strong=\"G1519\"* same mind|strong=\"G5426\"* one|strong=\"G1438\"* toward|strong=\"G1519\"* another|strong=\"G1438\"*. Don’t|strong=\"G3588\"* set|strong=\"G5426\"* your|strong=\"G5426\"* mind|strong=\"G5426\"* on|strong=\"G1519\"* high|strong=\"G5308\"* things|strong=\"G3588\"*, but|strong=\"G3361\"* associate|strong=\"G4879\"* with|strong=\"G3844\"* the|strong=\"G1519\"* humble|strong=\"G5011\"*. Don’t|strong=\"G3588\"* be|strong=\"G1096\"* wise|strong=\"G5429\"* in|strong=\"G1519\"* your|strong=\"G5426\"* own|strong=\"G1438\"* conceits|strong=\"G1438\"*." + }, + { + "verseNum": 17, + "text": "Repay no|strong=\"G3367\"* one|strong=\"G3367\"* evil|strong=\"G2556\"* for|strong=\"G2570\"* evil|strong=\"G2556\"*. Respect|strong=\"G4306\"* what|strong=\"G2556\"* is|strong=\"G3956\"* honorable|strong=\"G2570\"* in|strong=\"G3956\"* the|strong=\"G3956\"* sight|strong=\"G1799\"* of|strong=\"G1799\"* all|strong=\"G3956\"* men|strong=\"G3956\"*." + }, + { + "verseNum": 18, + "text": "If|strong=\"G1487\"* it|strong=\"G1487\"* is|strong=\"G3588\"* possible|strong=\"G1415\"*, as|strong=\"G3956\"* much as|strong=\"G3956\"* it|strong=\"G1487\"* is|strong=\"G3588\"* up|strong=\"G1537\"* to|strong=\"G3956\"* you|strong=\"G5210\"*, be|strong=\"G3956\"* at|strong=\"G1537\"* peace|strong=\"G1514\"* with|strong=\"G3326\"* all|strong=\"G3956\"* men|strong=\"G3956\"*." + }, + { + "verseNum": 19, + "text": "Don’t|strong=\"G3588\"* seek revenge|strong=\"G1556\"* yourselves|strong=\"G1438\"*, beloved, but|strong=\"G3361\"* give|strong=\"G1325\"* place|strong=\"G5117\"* to|strong=\"G3004\"* God|strong=\"G3004\"*’s|strong=\"G2962\"* wrath|strong=\"G3709\"*. For|strong=\"G1063\"* it|strong=\"G1063\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “Vengeance|strong=\"G1557\"* belongs to|strong=\"G3004\"* me|strong=\"G1325\"*; I|strong=\"G1473\"* will|strong=\"G2962\"* repay, says|strong=\"G3004\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"*.”+ 12:19 Deuteronomy 32:35*" + }, + { + "verseNum": 20, + "text": "Therefore|strong=\"G1063\"*" + }, + { + "verseNum": 21, + "text": "Don’t|strong=\"G3588\"* be|strong=\"G3361\"* overcome|strong=\"G3528\"* by|strong=\"G1722\"* evil|strong=\"G2556\"*, but|strong=\"G3361\"* overcome|strong=\"G3528\"* evil|strong=\"G2556\"* with|strong=\"G1722\"* good|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Let|strong=\"G1161\"* every|strong=\"G3956\"* soul|strong=\"G5590\"* be|strong=\"G1510\"* in|strong=\"G2316\"* subjection|strong=\"G5293\"* to|strong=\"G1849\"* the|strong=\"G3956\"* higher|strong=\"G5242\"* authorities|strong=\"G1849\"*, for|strong=\"G1063\"* there|strong=\"G1161\"* is|strong=\"G1510\"* no|strong=\"G3756\"* authority|strong=\"G1849\"* except|strong=\"G1487\"* from|strong=\"G5259\"* God|strong=\"G2316\"*, and|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* exist|strong=\"G1510\"* are|strong=\"G1510\"* ordained|strong=\"G5021\"* by|strong=\"G5259\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 2, + "text": "Therefore|strong=\"G5620\"* he|strong=\"G1161\"* who|strong=\"G3588\"* resists the|strong=\"G1161\"* authority|strong=\"G1849\"* withstands the|strong=\"G1161\"* ordinance|strong=\"G1296\"* of|strong=\"G2316\"* God|strong=\"G2316\"*; and|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* withstand will|strong=\"G2316\"* receive|strong=\"G2983\"* to|strong=\"G1849\"* themselves|strong=\"G1438\"* judgment|strong=\"G2917\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* rulers are|strong=\"G1510\"* not|strong=\"G3756\"* a|strong=\"G2192\"* terror|strong=\"G5401\"* to|strong=\"G2532\"* the|strong=\"G2532\"* good|strong=\"G3756\"* work|strong=\"G2041\"*, but|strong=\"G1161\"* to|strong=\"G2532\"* the|strong=\"G2532\"* evil|strong=\"G2556\"*. Do|strong=\"G4160\"* you|strong=\"G1510\"* desire|strong=\"G2309\"* to|strong=\"G2532\"* have|strong=\"G2192\"* no|strong=\"G3756\"* fear|strong=\"G5401\"* of|strong=\"G1537\"* the|strong=\"G2532\"* authority|strong=\"G1849\"*? Do|strong=\"G4160\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G1510\"* good|strong=\"G3756\"*, and|strong=\"G2532\"* you|strong=\"G1510\"* will|strong=\"G2309\"* have|strong=\"G2192\"* praise|strong=\"G1868\"* from|strong=\"G1537\"* the|strong=\"G2532\"* authority|strong=\"G1849\"*," + }, + { + "verseNum": 4, + "text": "for|strong=\"G1063\"* he|strong=\"G1161\"* is|strong=\"G1510\"* a|strong=\"G1519\"* servant|strong=\"G1249\"* of|strong=\"G2316\"* God|strong=\"G2316\"* to|strong=\"G1519\"* you|strong=\"G4771\"* for|strong=\"G1063\"* good|strong=\"G3756\"*. But|strong=\"G1161\"* if|strong=\"G1437\"* you|strong=\"G4771\"* do|strong=\"G4160\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G1510\"* evil|strong=\"G2556\"*, be|strong=\"G1510\"* afraid|strong=\"G5399\"*, for|strong=\"G1063\"* he|strong=\"G1161\"* doesn’t|strong=\"G3588\"* bear|strong=\"G4160\"* the|strong=\"G1519\"* sword|strong=\"G3162\"* in|strong=\"G1519\"* vain|strong=\"G1500\"*; for|strong=\"G1063\"* he|strong=\"G1161\"* is|strong=\"G1510\"* a|strong=\"G1519\"* servant|strong=\"G1249\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, an|strong=\"G1519\"* avenger|strong=\"G1558\"* for|strong=\"G1063\"* wrath|strong=\"G3709\"* to|strong=\"G1519\"* him|strong=\"G3588\"* who|strong=\"G3588\"* does|strong=\"G4160\"* evil|strong=\"G2556\"*." + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"G1352\"* you|strong=\"G2532\"* need to|strong=\"G2532\"* be|strong=\"G2532\"* in|strong=\"G2532\"* subjection|strong=\"G5293\"*, not|strong=\"G3756\"* only|strong=\"G3440\"* because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* wrath|strong=\"G3709\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* for|strong=\"G1223\"* conscience|strong=\"G4893\"*’ sake|strong=\"G1223\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* reason|strong=\"G1223\"* you|strong=\"G1510\"* also|strong=\"G2532\"* pay|strong=\"G5055\"* taxes|strong=\"G5411\"*, for|strong=\"G1063\"* they|strong=\"G2532\"* are|strong=\"G1510\"* servants|strong=\"G3011\"* of|strong=\"G1223\"* God|strong=\"G2316\"*’s service, continually|strong=\"G1223\"* doing this|strong=\"G3778\"* very|strong=\"G2532\"* thing|strong=\"G3778\"*." + }, + { + "verseNum": 7, + "text": "Therefore give|strong=\"G3956\"* everyone|strong=\"G3956\"* what|strong=\"G3588\"* you|strong=\"G3956\"* owe: if you|strong=\"G3956\"* owe taxes|strong=\"G5411\"*, pay taxes|strong=\"G5411\"*; if customs|strong=\"G5056\"*, then|strong=\"G3956\"* customs|strong=\"G5056\"*; if respect|strong=\"G5092\"*, then|strong=\"G3956\"* respect|strong=\"G5092\"*; if honor|strong=\"G5092\"*, then|strong=\"G3956\"* honor|strong=\"G5092\"*." + }, + { + "verseNum": 8, + "text": "Owe|strong=\"G3784\"* no|strong=\"G3361\"* one|strong=\"G3367\"* anything|strong=\"G3367\"*, except|strong=\"G1487\"* to|strong=\"G3361\"* love one|strong=\"G3367\"* another|strong=\"G2087\"*; for|strong=\"G1063\"* he|strong=\"G3588\"* who|strong=\"G3588\"* loves his|strong=\"G3588\"* neighbor|strong=\"G2087\"* has|strong=\"G4137\"* fulfilled|strong=\"G4137\"* the|strong=\"G3588\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* commandments|strong=\"G1785\"*, “You|strong=\"G4771\"* shall|strong=\"G2532\"* not|strong=\"G3756\"* commit|strong=\"G3431\"* adultery|strong=\"G3431\"*,” “You|strong=\"G4771\"* shall|strong=\"G2532\"* not|strong=\"G3756\"* murder|strong=\"G5407\"*,” “You|strong=\"G4771\"* shall|strong=\"G2532\"* not|strong=\"G3756\"* steal|strong=\"G2813\"*,”+ 13:9 TR adds “You shall not give false testimony,”* “You|strong=\"G4771\"* shall|strong=\"G2532\"* not|strong=\"G3756\"* covet|strong=\"G1937\"*,”+ 13:9 Exodus 20:13-15,17; Deuteronomy 5:17-19,21* and|strong=\"G2532\"* whatever|strong=\"G5100\"* other|strong=\"G2087\"* commandments|strong=\"G1785\"* there|strong=\"G2532\"* are|strong=\"G3588\"*, are|strong=\"G3588\"* all|strong=\"G2532\"* summed up|strong=\"G2532\"* in|strong=\"G1722\"* this|strong=\"G3778\"* saying|strong=\"G3056\"*, namely|strong=\"G5613\"*, “You|strong=\"G4771\"* shall|strong=\"G2532\"* love your|strong=\"G2532\"* neighbor|strong=\"G4139\"* as|strong=\"G5613\"* yourself|strong=\"G4572\"*.”+ 13:9 Leviticus 19:18*" + }, + { + "verseNum": 10, + "text": "Love doesn’t|strong=\"G3588\"* harm|strong=\"G2556\"* a|strong=\"G3756\"* neighbor|strong=\"G4139\"*. Love therefore|strong=\"G3767\"* is|strong=\"G3588\"* the|strong=\"G3588\"* fulfillment|strong=\"G4138\"* of|strong=\"G3551\"* the|strong=\"G3588\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 11, + "text": "Do|strong=\"G1492\"* this|strong=\"G3778\"*, knowing|strong=\"G1492\"* the|strong=\"G2532\"* time|strong=\"G2540\"*, that|strong=\"G3754\"* it|strong=\"G2532\"* is|strong=\"G3588\"* already|strong=\"G2235\"* time|strong=\"G2540\"* for|strong=\"G1063\"* you|strong=\"G5210\"* to|strong=\"G2532\"* awaken|strong=\"G1453\"* out|strong=\"G1537\"* of|strong=\"G1537\"* sleep|strong=\"G5258\"*, for|strong=\"G1063\"* salvation|strong=\"G4991\"* is|strong=\"G3588\"* now|strong=\"G3568\"* nearer|strong=\"G1452\"* to|strong=\"G2532\"* us|strong=\"G2249\"* than|strong=\"G2228\"* when|strong=\"G3753\"* we|strong=\"G2249\"* first|strong=\"G3588\"* believed|strong=\"G4100\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"G1161\"* night|strong=\"G3571\"* is|strong=\"G3588\"* far|strong=\"G3588\"* gone|strong=\"G4298\"*, and|strong=\"G1161\"* the|strong=\"G1161\"* day|strong=\"G2250\"* is|strong=\"G3588\"* near|strong=\"G1448\"*. Let|strong=\"G1161\"*’s therefore|strong=\"G3767\"* throw off the|strong=\"G1161\"* deeds|strong=\"G2041\"* of|strong=\"G2250\"* darkness|strong=\"G4655\"*, and|strong=\"G1161\"* let|strong=\"G1161\"*’s put|strong=\"G1746\"* on|strong=\"G1746\"* the|strong=\"G1161\"* armor|strong=\"G3696\"* of|strong=\"G2250\"* light|strong=\"G5457\"*." + }, + { + "verseNum": 13, + "text": "Let|strong=\"G2532\"*’s walk|strong=\"G4043\"* properly|strong=\"G2156\"*, as|strong=\"G5613\"* in|strong=\"G1722\"* the|strong=\"G1722\"* day|strong=\"G2250\"*; not|strong=\"G3361\"* in|strong=\"G1722\"* reveling and|strong=\"G2532\"* drunkenness|strong=\"G3178\"*, not|strong=\"G3361\"* in|strong=\"G1722\"* sexual|strong=\"G2845\"* promiscuity|strong=\"G2845\"* and|strong=\"G2532\"* lustful acts, and|strong=\"G2532\"* not|strong=\"G3361\"* in|strong=\"G1722\"* strife|strong=\"G2054\"* and|strong=\"G2532\"* jealousy|strong=\"G2205\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G2532\"* put|strong=\"G1746\"* on|strong=\"G1519\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* make|strong=\"G4160\"* no|strong=\"G3361\"* provision|strong=\"G4307\"* for|strong=\"G1519\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, for|strong=\"G1519\"* its lusts|strong=\"G1939\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* accept|strong=\"G4355\"* one|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G3588\"* weak in|strong=\"G1519\"* faith|strong=\"G4102\"*, but|strong=\"G1161\"* not|strong=\"G3361\"* for|strong=\"G1519\"* disputes over|strong=\"G1519\"* opinions|strong=\"G1261\"*." + }, + { + "verseNum": 2, + "text": "One|strong=\"G3739\"* man|strong=\"G3956\"* has|strong=\"G3739\"* faith|strong=\"G3739\"* to|strong=\"G1161\"* eat|strong=\"G2068\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, but|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3739\"* is|strong=\"G3588\"* weak eats|strong=\"G2068\"* only|strong=\"G3303\"* vegetables|strong=\"G3001\"*." + }, + { + "verseNum": 3, + "text": "Don’t|strong=\"G3588\"* let|strong=\"G1161\"* him|strong=\"G3588\"* who|strong=\"G3588\"* eats|strong=\"G2068\"* despise|strong=\"G1848\"* him|strong=\"G3588\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* eat|strong=\"G2068\"*. Don’t|strong=\"G3588\"* let|strong=\"G1161\"* him|strong=\"G3588\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* eat|strong=\"G2068\"* judge|strong=\"G2919\"* him|strong=\"G3588\"* who|strong=\"G3588\"* eats|strong=\"G2068\"*, for|strong=\"G1063\"* God|strong=\"G2316\"* has|strong=\"G2316\"* accepted|strong=\"G4355\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "Who|strong=\"G5101\"* are|strong=\"G1510\"* you|strong=\"G4771\"* who|strong=\"G5101\"* judge|strong=\"G2919\"* another|strong=\"G3588\"*’s|strong=\"G2962\"* servant|strong=\"G3610\"*? To|strong=\"G1161\"* his|strong=\"G2398\"* own|strong=\"G2398\"* lord|strong=\"G2962\"* he|strong=\"G1161\"* stands|strong=\"G2476\"* or|strong=\"G2228\"* falls|strong=\"G4098\"*. Yes|strong=\"G1063\"*, he|strong=\"G1161\"* will|strong=\"G5101\"* be|strong=\"G1510\"* made|strong=\"G1161\"* to|strong=\"G1161\"* stand|strong=\"G2476\"*, for|strong=\"G1063\"* God|strong=\"G2962\"* has|strong=\"G2962\"* power to|strong=\"G1161\"* make|strong=\"G2476\"* him|strong=\"G3588\"* stand|strong=\"G2476\"*." + }, + { + "verseNum": 5, + "text": "One|strong=\"G1538\"* man|strong=\"G1538\"* esteems one|strong=\"G1538\"* day|strong=\"G2250\"* as|strong=\"G1722\"* more|strong=\"G1161\"* important. Another|strong=\"G3739\"* esteems every|strong=\"G3956\"* day|strong=\"G2250\"* alike. Let|strong=\"G1161\"* each|strong=\"G1538\"* man|strong=\"G1538\"* be|strong=\"G3956\"* fully|strong=\"G4135\"* assured|strong=\"G4135\"* in|strong=\"G1722\"* his|strong=\"G3956\"* own|strong=\"G2398\"* mind|strong=\"G3563\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* observes|strong=\"G5426\"* the|strong=\"G2532\"* day|strong=\"G2250\"*, observes|strong=\"G5426\"* it|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* does|strong=\"G2068\"* not|strong=\"G3756\"* observe the|strong=\"G2532\"* day|strong=\"G2250\"*, to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* he|strong=\"G2532\"* does|strong=\"G2068\"* not|strong=\"G3756\"* observe it|strong=\"G2532\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* eats|strong=\"G2068\"*, eats|strong=\"G2068\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* gives|strong=\"G2168\"* God|strong=\"G2316\"* thanks|strong=\"G2168\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* eat|strong=\"G2068\"*, to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* he|strong=\"G2532\"* doesn’t|strong=\"G3588\"* eat|strong=\"G2068\"*, and|strong=\"G2532\"* gives|strong=\"G2168\"* God|strong=\"G2316\"* thanks|strong=\"G2168\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* none|strong=\"G3762\"* of|strong=\"G2532\"* us|strong=\"G2249\"* lives|strong=\"G2198\"* to|strong=\"G2532\"* himself|strong=\"G1438\"*, and|strong=\"G2532\"* none|strong=\"G3762\"* dies to|strong=\"G2532\"* himself|strong=\"G1438\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* if|strong=\"G1437\"* we|strong=\"G1437\"* live|strong=\"G2198\"*, we|strong=\"G1437\"* live|strong=\"G2198\"* to|strong=\"G5037\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"*. Or|strong=\"G1437\"* if|strong=\"G1437\"* we|strong=\"G1437\"* die, we|strong=\"G1437\"* die to|strong=\"G5037\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"*. If|strong=\"G1437\"* therefore|strong=\"G3767\"* we|strong=\"G1437\"* live|strong=\"G2198\"* or|strong=\"G1437\"* die, we|strong=\"G1437\"* are|strong=\"G1510\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* to|strong=\"G1519\"* this|strong=\"G3778\"* end|strong=\"G1519\"* Christ|strong=\"G5547\"* died, rose|strong=\"G2532\"*, and|strong=\"G2532\"* lived|strong=\"G2198\"* again|strong=\"G1519\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G2532\"* Lord|strong=\"G2961\"* of|strong=\"G2532\"* both|strong=\"G2532\"* the|strong=\"G2532\"* dead|strong=\"G3498\"* and|strong=\"G2532\"* the|strong=\"G2532\"* living|strong=\"G2198\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* you|strong=\"G4771\"*, why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G4771\"* judge|strong=\"G2919\"* your|strong=\"G2532\"* brother? Or|strong=\"G2228\"* you|strong=\"G4771\"* again|strong=\"G2532\"*, why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G4771\"* despise|strong=\"G1848\"* your|strong=\"G2532\"* brother? For|strong=\"G1063\"* we|strong=\"G1063\"* will|strong=\"G2316\"* all|strong=\"G3956\"* stand|strong=\"G3936\"* before|strong=\"G3936\"* the|strong=\"G2532\"* judgment|strong=\"G2919\"* seat of|strong=\"G2316\"* Christ." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 12, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"* each|strong=\"G1538\"* one|strong=\"G1538\"* of|strong=\"G4012\"* us|strong=\"G1325\"* will|strong=\"G2316\"* give|strong=\"G1325\"* account|strong=\"G3056\"* of|strong=\"G4012\"* himself|strong=\"G1438\"* to|strong=\"G1325\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"G3767\"* let|strong=\"G2919\"*’s not|strong=\"G3361\"* judge|strong=\"G2919\"* one|strong=\"G3588\"* another|strong=\"G3588\"* any|strong=\"G3361\"* more|strong=\"G3123\"*, but|strong=\"G3361\"* judge|strong=\"G2919\"* this|strong=\"G3778\"* rather|strong=\"G3123\"*, that|strong=\"G3588\"* no|strong=\"G3361\"* man|strong=\"G3778\"* put|strong=\"G5087\"* a|strong=\"G2228\"* stumbling|strong=\"G4625\"* block|strong=\"G4625\"* in|strong=\"G5087\"* his|strong=\"G5087\"* brother’s way|strong=\"G3778\"*, or|strong=\"G2228\"* an|strong=\"G2228\"* occasion for|strong=\"G2228\"* falling|strong=\"G5087\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"G2532\"* know|strong=\"G1492\"* and|strong=\"G2532\"* am|strong=\"G1510\"* persuaded|strong=\"G3982\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* that|strong=\"G3754\"* nothing|strong=\"G3762\"* is|strong=\"G1510\"* unclean|strong=\"G2839\"* of|strong=\"G1223\"* itself|strong=\"G1438\"*; except|strong=\"G1487\"* that|strong=\"G3754\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* considers anything|strong=\"G5100\"* to|strong=\"G2532\"* be|strong=\"G1510\"* unclean|strong=\"G2839\"*, to|strong=\"G2532\"* him|strong=\"G3588\"* it|strong=\"G2532\"* is|strong=\"G1510\"* unclean|strong=\"G2839\"*." + }, + { + "verseNum": 15, + "text": "Yet|strong=\"G1063\"* if|strong=\"G1487\"* because|strong=\"G1223\"* of|strong=\"G1223\"* food|strong=\"G1033\"* your|strong=\"G1223\"* brother is|strong=\"G3588\"* grieved|strong=\"G3076\"*, you|strong=\"G4771\"* walk|strong=\"G4043\"* no|strong=\"G3361\"* longer|strong=\"G3765\"* in|strong=\"G2596\"* love. Don’t|strong=\"G3588\"* destroy with|strong=\"G1223\"* your|strong=\"G1223\"* food|strong=\"G1033\"* him|strong=\"G3588\"* for|strong=\"G1063\"* whom|strong=\"G3739\"* Christ|strong=\"G5547\"* died|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"G3767\"* don’t|strong=\"G3588\"* let|strong=\"G3767\"* your|strong=\"G3588\"* good|strong=\"G3588\"* be|strong=\"G3361\"* slandered," + }, + { + "verseNum": 17, + "text": "for|strong=\"G1063\"* God|strong=\"G2316\"*’s Kingdom is|strong=\"G1510\"* not|strong=\"G3756\"* eating|strong=\"G1035\"* and|strong=\"G2532\"* drinking|strong=\"G4213\"*, but|strong=\"G2532\"* righteousness|strong=\"G1343\"*, peace|strong=\"G1515\"*, and|strong=\"G2532\"* joy|strong=\"G5479\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* who|strong=\"G3588\"* serves|strong=\"G1398\"* Christ|strong=\"G5547\"* in|strong=\"G1722\"* these|strong=\"G3778\"* things|strong=\"G3778\"* is|strong=\"G3588\"* acceptable|strong=\"G2101\"* to|strong=\"G2532\"* God|strong=\"G2316\"* and|strong=\"G2532\"* approved|strong=\"G1384\"* by|strong=\"G1722\"* men|strong=\"G3778\"*." + }, + { + "verseNum": 19, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"*, let|strong=\"G3767\"*’s follow|strong=\"G1377\"* after|strong=\"G1377\"* things|strong=\"G3588\"* which|strong=\"G3588\"* make|strong=\"G1519\"* for|strong=\"G1519\"* peace|strong=\"G1515\"*, and|strong=\"G2532\"* things|strong=\"G3588\"* by|strong=\"G2532\"* which|strong=\"G3588\"* we|strong=\"G2532\"* may|strong=\"G2532\"* build|strong=\"G3619\"* one|strong=\"G3588\"* another|strong=\"G3588\"* up|strong=\"G1519\"*." + }, + { + "verseNum": 20, + "text": "Don’t|strong=\"G3588\"* overthrow|strong=\"G2647\"* God|strong=\"G2316\"*’s work|strong=\"G2041\"* for|strong=\"G1223\"* food|strong=\"G1033\"*’s sake|strong=\"G1223\"*. All|strong=\"G3956\"* things|strong=\"G3956\"* indeed|strong=\"G3303\"* are|strong=\"G3588\"* clean|strong=\"G2513\"*, however|strong=\"G3303\"* it|strong=\"G1223\"* is|strong=\"G3588\"* evil|strong=\"G2556\"* for|strong=\"G1223\"* that|strong=\"G3588\"* man|strong=\"G3956\"* who|strong=\"G3588\"* creates a|strong=\"G1223\"* stumbling|strong=\"G4348\"* block|strong=\"G4348\"* by|strong=\"G1223\"* eating|strong=\"G2068\"*." + }, + { + "verseNum": 21, + "text": "It|strong=\"G3739\"* is|strong=\"G3588\"* good|strong=\"G2570\"* to|strong=\"G1722\"* not|strong=\"G3361\"* eat|strong=\"G2068\"* meat|strong=\"G2907\"*, drink|strong=\"G4095\"* wine|strong=\"G3631\"*, nor|strong=\"G3366\"* do|strong=\"G3361\"* anything|strong=\"G5315\"* by|strong=\"G1722\"* which|strong=\"G3739\"* your|strong=\"G1722\"* brother stumbles|strong=\"G4350\"*, is|strong=\"G3588\"* offended|strong=\"G4624\"*, or|strong=\"G2228\"* is|strong=\"G3588\"* made weak." + }, + { + "verseNum": 22, + "text": "Do|strong=\"G2919\"* you|strong=\"G4771\"* have|strong=\"G2192\"* faith|strong=\"G4102\"*? Have|strong=\"G2192\"* it|strong=\"G3739\"* to|strong=\"G2596\"* yourself|strong=\"G4572\"* before|strong=\"G1799\"* God|strong=\"G2316\"*. Happy|strong=\"G3107\"* is|strong=\"G3588\"* he|strong=\"G3739\"* who|strong=\"G3739\"* doesn’t|strong=\"G3588\"* judge|strong=\"G2919\"* himself|strong=\"G1438\"* in|strong=\"G1722\"* that|strong=\"G3739\"* which|strong=\"G3739\"* he|strong=\"G3739\"* approves|strong=\"G1381\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3739\"* doubts|strong=\"G1252\"* is|strong=\"G1510\"* condemned|strong=\"G2632\"* if|strong=\"G1437\"* he|strong=\"G1161\"* eats|strong=\"G2068\"*, because|strong=\"G3754\"* it|strong=\"G3754\"* isn’t|strong=\"G3588\"* of|strong=\"G1537\"* faith|strong=\"G4102\"*; and|strong=\"G1161\"* whatever|strong=\"G3739\"* is|strong=\"G1510\"* not|strong=\"G3756\"* of|strong=\"G1537\"* faith|strong=\"G4102\"* is|strong=\"G1510\"* sin." + }, + { + "verseNum": 24, + "text": "Now to him who is able to establish you according to my Good News and the preaching of Jesus Christ, according to the revelation of the mystery which has been kept secret through long ages," + }, + { + "verseNum": 25, + "text": "but now is revealed, and by the Scriptures of the prophets, according to the commandment of the eternal God, is made known for obedience of faith to all the nations;" + }, + { + "verseNum": 26, + "text": "to the only wise God, through Jesus Christ, to whom be the glory forever! Amen.+ 14:26 TR places verses 24-26 after Romans 16:24 as verses 25-27. *" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* we|strong=\"G2249\"* who|strong=\"G3588\"* are|strong=\"G3588\"* strong|strong=\"G1415\"* ought|strong=\"G3784\"* to|strong=\"G2532\"* bear|strong=\"G2532\"* the|strong=\"G2532\"* weaknesses of|strong=\"G2532\"* the|strong=\"G2532\"* weak, and|strong=\"G2532\"* not|strong=\"G3361\"* to|strong=\"G2532\"* please ourselves|strong=\"G1438\"*." + }, + { + "verseNum": 2, + "text": "Let each|strong=\"G1538\"* one|strong=\"G1538\"* of|strong=\"G3588\"* us|strong=\"G1519\"* please his|strong=\"G1519\"* neighbor|strong=\"G4139\"* for|strong=\"G1519\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* good|strong=\"G3588\"*, to|strong=\"G1519\"* be|strong=\"G1519\"* building|strong=\"G3619\"* him|strong=\"G3588\"* up|strong=\"G1519\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* even|strong=\"G2532\"* Christ|strong=\"G5547\"* didn’t|strong=\"G3588\"* please himself|strong=\"G1438\"*. But|strong=\"G2532\"*, as|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “The|strong=\"G2532\"* reproaches|strong=\"G3680\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* reproached|strong=\"G3679\"* you|strong=\"G4771\"* fell|strong=\"G1968\"* on|strong=\"G1909\"* me|strong=\"G1473\"*.”+ 15:3 Psalms 69:9*" + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* whatever|strong=\"G3745\"* things|strong=\"G3588\"* were|strong=\"G3588\"* written|strong=\"G1125\"* before|strong=\"G1519\"* were|strong=\"G3588\"* written|strong=\"G1125\"* for|strong=\"G1063\"* our|strong=\"G2251\"* learning|strong=\"G1319\"*, that|strong=\"G2443\"* through|strong=\"G1223\"* perseverance|strong=\"G5281\"* and|strong=\"G2532\"* through|strong=\"G1223\"* encouragement|strong=\"G3874\"* of|strong=\"G1223\"* the|strong=\"G2532\"* Scriptures|strong=\"G1124\"* we|strong=\"G1063\"* might|strong=\"G2532\"* have|strong=\"G2192\"* hope|strong=\"G1680\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"G1161\"* the|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G2316\"* perseverance|strong=\"G5281\"* and|strong=\"G2532\"* of|strong=\"G2316\"* encouragement|strong=\"G3874\"* grant|strong=\"G1325\"* you|strong=\"G5210\"* to|strong=\"G2532\"* be|strong=\"G2532\"* of|strong=\"G2316\"* the|strong=\"G1722\"* same|strong=\"G2532\"* mind|strong=\"G5426\"* with|strong=\"G1722\"* one|strong=\"G3588\"* another|strong=\"G2596\"* according|strong=\"G2596\"* to|strong=\"G2532\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 6, + "text": "that|strong=\"G2443\"* with|strong=\"G1722\"* one|strong=\"G1520\"* accord|strong=\"G3661\"* you|strong=\"G1722\"* may|strong=\"G2532\"* with|strong=\"G1722\"* one|strong=\"G1520\"* mouth|strong=\"G4750\"* glorify|strong=\"G1392\"* the|strong=\"G1722\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"* of|strong=\"G2316\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"G1352\"* accept|strong=\"G4355\"* one|strong=\"G3588\"* another|strong=\"G3588\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* Christ|strong=\"G5547\"* also|strong=\"G2532\"* accepted|strong=\"G4355\"* you|strong=\"G5210\"*,+ 15:7 TR reads “us” instead of “you”* to|strong=\"G1519\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"G1096\"* I|strong=\"G1063\"* say|strong=\"G3004\"* that|strong=\"G3588\"* Christ|strong=\"G5547\"* has|strong=\"G2316\"* been|strong=\"G1096\"* made|strong=\"G1096\"* a|strong=\"G1096\"* servant|strong=\"G1249\"* of|strong=\"G2316\"* the|strong=\"G1519\"* circumcision|strong=\"G4061\"* for|strong=\"G1063\"* the|strong=\"G1519\"* truth of|strong=\"G2316\"* God|strong=\"G2316\"*, that|strong=\"G3588\"* he|strong=\"G3588\"* might|strong=\"G2316\"* confirm the|strong=\"G1519\"* promises|strong=\"G1860\"* given to|strong=\"G1519\"* the|strong=\"G1519\"* fathers|strong=\"G3962\"*," + }, + { + "verseNum": 9, + "text": "and|strong=\"G2532\"* that|strong=\"G3588\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* might|strong=\"G2532\"* glorify|strong=\"G1392\"* God|strong=\"G2316\"* for|strong=\"G5228\"* his|strong=\"G1223\"* mercy|strong=\"G1656\"*. As|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 10, + "text": "Again|strong=\"G3825\"* he|strong=\"G2532\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 11, + "text": "Again|strong=\"G3825\"*," + }, + { + "verseNum": 12, + "text": "Again|strong=\"G3825\"*, Isaiah|strong=\"G2268\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 13, + "text": "Now|strong=\"G1161\"* may|strong=\"G2532\"* the|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G4151\"* hope|strong=\"G1680\"* fill|strong=\"G4137\"* you|strong=\"G5210\"* with|strong=\"G1722\"* all|strong=\"G3956\"* joy|strong=\"G5479\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* in|strong=\"G1722\"* believing|strong=\"G4100\"*, that|strong=\"G3588\"* you|strong=\"G5210\"* may|strong=\"G2532\"* abound|strong=\"G4052\"* in|strong=\"G1722\"* hope|strong=\"G1680\"* in|strong=\"G1722\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"G1473\"* myself|strong=\"G1473\"* am|strong=\"G1510\"* also|strong=\"G2532\"* persuaded|strong=\"G3982\"* about|strong=\"G4012\"* you|strong=\"G5210\"*, my|strong=\"G3956\"* brothers,+ 15:14 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* that|strong=\"G3754\"* you|strong=\"G5210\"* yourselves|strong=\"G4771\"* are|strong=\"G1510\"* full|strong=\"G3324\"* of|strong=\"G4012\"* goodness, filled|strong=\"G4137\"* with|strong=\"G2532\"* all|strong=\"G3956\"* knowledge|strong=\"G1108\"*, able|strong=\"G1410\"* also|strong=\"G2532\"* to|strong=\"G2532\"* admonish|strong=\"G3560\"* others|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* I|strong=\"G1473\"* write|strong=\"G1125\"* the|strong=\"G1161\"* more|strong=\"G1161\"* boldly|strong=\"G5112\"* to|strong=\"G1325\"* you|strong=\"G5210\"* in|strong=\"G2316\"* part|strong=\"G3313\"* as|strong=\"G5613\"* reminding you|strong=\"G5210\"*, because|strong=\"G1223\"* of|strong=\"G5259\"* the|strong=\"G1161\"* grace|strong=\"G5485\"* that|strong=\"G3588\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G1325\"* me|strong=\"G1325\"* by|strong=\"G1223\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 16, + "text": "that|strong=\"G2443\"* I|strong=\"G1473\"* should|strong=\"G2316\"* be|strong=\"G1096\"* a|strong=\"G1096\"* servant|strong=\"G3588\"* of|strong=\"G4151\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* to|strong=\"G1519\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"*, serving as|strong=\"G1519\"* a|strong=\"G1096\"* priest|strong=\"G2418\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G4151\"* God|strong=\"G2316\"*, that|strong=\"G2443\"* the|strong=\"G1722\"* offering|strong=\"G4376\"* up|strong=\"G1519\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* might|strong=\"G1484\"* be|strong=\"G1096\"* made|strong=\"G1096\"* acceptable|strong=\"G2144\"*, sanctified by|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"G3767\"* have|strong=\"G2192\"* therefore|strong=\"G3767\"* my|strong=\"G1722\"* boasting|strong=\"G2746\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* in|strong=\"G1722\"* things|strong=\"G3588\"* pertaining|strong=\"G4314\"* to|strong=\"G4314\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* will|strong=\"G2532\"* not|strong=\"G3756\"* dare|strong=\"G5111\"* to|strong=\"G1519\"* speak|strong=\"G2980\"* of|strong=\"G3056\"* any|strong=\"G5100\"* things|strong=\"G3739\"* except|strong=\"G3756\"* those|strong=\"G3739\"* which|strong=\"G3739\"* Christ|strong=\"G5547\"* worked through|strong=\"G1223\"* me|strong=\"G1473\"* for|strong=\"G1063\"* the|strong=\"G2532\"* obedience|strong=\"G5218\"* of|strong=\"G3056\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*, by|strong=\"G1223\"* word|strong=\"G3056\"* and|strong=\"G2532\"* deed|strong=\"G2041\"*," + }, + { + "verseNum": 19, + "text": "in|strong=\"G1722\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G4151\"* signs|strong=\"G4592\"* and|strong=\"G2532\"* wonders|strong=\"G5059\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G4151\"* God|strong=\"G2316\"*’s Spirit|strong=\"G4151\"*; so|strong=\"G2532\"* that|strong=\"G3588\"* from|strong=\"G2532\"* Jerusalem|strong=\"G2419\"* and|strong=\"G2532\"* around|strong=\"G2945\"* as|strong=\"G1722\"* far|strong=\"G3588\"* as|strong=\"G1722\"* to|strong=\"G2532\"* Illyricum|strong=\"G2437\"*, I|strong=\"G1473\"* have|strong=\"G2532\"* fully|strong=\"G4137\"* preached|strong=\"G4137\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G4151\"* Christ|strong=\"G5547\"*;" + }, + { + "verseNum": 20, + "text": "yes|strong=\"G1161\"*, making it|strong=\"G1161\"* my|strong=\"G3618\"* aim to|strong=\"G2443\"* preach|strong=\"G2097\"* the|strong=\"G1161\"* Good|strong=\"G2097\"* News|strong=\"G2097\"*, not|strong=\"G3756\"* where|strong=\"G3699\"* Christ|strong=\"G5547\"* was|strong=\"G5547\"* already named|strong=\"G3687\"*, that|strong=\"G2443\"* I|strong=\"G1161\"* might|strong=\"G5547\"* not|strong=\"G3756\"* build|strong=\"G3618\"* on|strong=\"G1909\"* another|strong=\"G1909\"*’s foundation|strong=\"G2310\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"G2532\"*, as|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3739\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 22, + "text": "Therefore|strong=\"G1352\"* also|strong=\"G2532\"* I|strong=\"G2532\"* was|strong=\"G3588\"* hindered|strong=\"G1465\"* these|strong=\"G3588\"* many|strong=\"G4183\"* times from|strong=\"G2064\"* coming|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 23, + "text": "but|strong=\"G1161\"* now|strong=\"G1161\"*, no|strong=\"G3371\"* longer|strong=\"G3371\"* having|strong=\"G2192\"* any|strong=\"G2192\"* place|strong=\"G5117\"* in|strong=\"G1722\"* these|strong=\"G3778\"* regions|strong=\"G2824\"*, and|strong=\"G1161\"* having|strong=\"G2192\"* these|strong=\"G3778\"* many|strong=\"G4183\"* years|strong=\"G2094\"* a|strong=\"G2192\"* longing|strong=\"G1974\"* to|strong=\"G4314\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 24, + "text": "whenever|strong=\"G1437\"* I|strong=\"G2532\"* travel to|strong=\"G1519\"* Spain|strong=\"G4681\"*, I|strong=\"G2532\"* will|strong=\"G2532\"* come|strong=\"G2532\"* to|strong=\"G1519\"* you|strong=\"G5210\"*. For|strong=\"G1063\"* I|strong=\"G2532\"* hope|strong=\"G1679\"* to|strong=\"G1519\"* see|strong=\"G2300\"* you|strong=\"G5210\"* on|strong=\"G1519\"* my|strong=\"G5259\"* journey|strong=\"G4311\"*, and|strong=\"G2532\"* to|strong=\"G1519\"* be|strong=\"G2532\"* helped|strong=\"G4311\"* on|strong=\"G1519\"* my|strong=\"G5259\"* way|strong=\"G4198\"* there|strong=\"G1563\"* by|strong=\"G5259\"* you|strong=\"G5210\"*, if|strong=\"G1437\"* first|strong=\"G4413\"* I|strong=\"G2532\"* may|strong=\"G2532\"* enjoy your|strong=\"G1437\"* company for|strong=\"G1063\"* a|strong=\"G5613\"* while|strong=\"G5613\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"*, I|strong=\"G1161\"* say, I|strong=\"G1161\"* am|strong=\"G3588\"* going|strong=\"G4198\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*, serving|strong=\"G1247\"* the|strong=\"G1519\"* saints." + }, + { + "verseNum": 26, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* has|strong=\"G5100\"* been|strong=\"G2532\"* the|strong=\"G1722\"* good|strong=\"G2106\"* pleasure|strong=\"G2106\"* of|strong=\"G2532\"* Macedonia|strong=\"G3109\"* and|strong=\"G2532\"* Achaia to|strong=\"G1519\"* make|strong=\"G4160\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* contribution|strong=\"G2842\"* for|strong=\"G1063\"* the|strong=\"G1722\"* poor|strong=\"G4434\"* among|strong=\"G1722\"* the|strong=\"G1722\"* saints who|strong=\"G3588\"* are|strong=\"G3588\"* at|strong=\"G1722\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 27, + "text": "Yes|strong=\"G1063\"*, it|strong=\"G2532\"* has|strong=\"G1510\"* been|strong=\"G1510\"* their|strong=\"G2532\"* good|strong=\"G2106\"* pleasure|strong=\"G2106\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* are|strong=\"G1510\"* their|strong=\"G2532\"* debtors|strong=\"G3781\"*. For|strong=\"G1063\"* if|strong=\"G1487\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* have|strong=\"G2532\"* been|strong=\"G1510\"* made partakers|strong=\"G2841\"* of|strong=\"G2532\"* their|strong=\"G2532\"* spiritual|strong=\"G4152\"* things|strong=\"G3588\"*, they|strong=\"G2532\"* owe|strong=\"G3784\"* it|strong=\"G2532\"* to|strong=\"G2532\"* them|strong=\"G3588\"* also|strong=\"G2532\"* to|strong=\"G2532\"* serve them|strong=\"G3588\"* in|strong=\"G1722\"* material|strong=\"G4559\"* things|strong=\"G3588\"*." + }, + { + "verseNum": 28, + "text": "When|strong=\"G2532\"* therefore|strong=\"G3767\"* I|strong=\"G2532\"* have|strong=\"G2532\"* accomplished|strong=\"G2005\"* this|strong=\"G3778\"*, and|strong=\"G2532\"* have|strong=\"G2532\"* sealed|strong=\"G4972\"* to|strong=\"G1519\"* them|strong=\"G3588\"* this|strong=\"G3778\"* fruit|strong=\"G2590\"*, I|strong=\"G2532\"* will|strong=\"G2532\"* go|strong=\"G1519\"* on|strong=\"G1519\"* by|strong=\"G1223\"* way|strong=\"G1223\"* of|strong=\"G1223\"* you|strong=\"G5210\"* to|strong=\"G1519\"* Spain|strong=\"G4681\"*." + }, + { + "verseNum": 29, + "text": "I|strong=\"G1161\"* know|strong=\"G1492\"* that|strong=\"G3754\"* when|strong=\"G1161\"* I|strong=\"G1161\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"*, I|strong=\"G1161\"* will|strong=\"G3748\"* come|strong=\"G2064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* fullness|strong=\"G4138\"* of|strong=\"G1722\"* the|strong=\"G1722\"* blessing|strong=\"G2129\"* of|strong=\"G1722\"* the|strong=\"G1722\"* Good News of|strong=\"G1722\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 30, + "text": "Now|strong=\"G1161\"* I|strong=\"G1473\"* beg|strong=\"G3870\"* you|strong=\"G5210\"*, brothers, by|strong=\"G1223\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* and|strong=\"G2532\"* by|strong=\"G1223\"* the|strong=\"G1722\"* love of|strong=\"G4151\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*, that|strong=\"G3588\"* you|strong=\"G5210\"* strive|strong=\"G4865\"* together|strong=\"G4865\"* with|strong=\"G1722\"* me|strong=\"G1473\"* in|strong=\"G1722\"* your|strong=\"G1223\"* prayers|strong=\"G4335\"* to|strong=\"G4314\"* God|strong=\"G2316\"* for|strong=\"G5228\"* me|strong=\"G1473\"*," + }, + { + "verseNum": 31, + "text": "that|strong=\"G2443\"* I|strong=\"G1473\"* may|strong=\"G2532\"* be|strong=\"G1096\"* delivered|strong=\"G4506\"* from|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* disobedient in|strong=\"G1722\"* Judea|strong=\"G2449\"*, and|strong=\"G2532\"* that|strong=\"G2443\"* my|strong=\"G1722\"* service|strong=\"G1248\"* which|strong=\"G3588\"* I|strong=\"G1473\"* have|strong=\"G2532\"* for|strong=\"G1519\"* Jerusalem|strong=\"G2419\"* may|strong=\"G2532\"* be|strong=\"G1096\"* acceptable|strong=\"G2144\"* to|strong=\"G1519\"* the|strong=\"G1722\"* saints," + }, + { + "verseNum": 32, + "text": "that|strong=\"G2443\"* I|strong=\"G1223\"* may|strong=\"G2443\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"* in|strong=\"G1722\"* joy|strong=\"G5479\"* through|strong=\"G1223\"* the|strong=\"G1722\"* will|strong=\"G2307\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, and|strong=\"G2064\"* together|strong=\"G4314\"* with|strong=\"G1722\"* you|strong=\"G5210\"*, find|strong=\"G4875\"* rest|strong=\"G4875\"*." + }, + { + "verseNum": 33, + "text": "Now|strong=\"G1161\"* the|strong=\"G3956\"* God|strong=\"G2316\"* of|strong=\"G2316\"* peace|strong=\"G1515\"* be|strong=\"G3956\"* with|strong=\"G3326\"* you|strong=\"G5210\"* all|strong=\"G3956\"*. Amen." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G1473\"* commend|strong=\"G4921\"* to|strong=\"G2532\"* you|strong=\"G5210\"* Phoebe|strong=\"G5402\"*, our|strong=\"G2532\"* sister, who|strong=\"G3588\"* is|strong=\"G1510\"* a|strong=\"G2532\"* servant|strong=\"G1249\"*+ 16:1 or, deacon * of|strong=\"G2532\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* that|strong=\"G3588\"* is|strong=\"G1510\"* at|strong=\"G1722\"* Cenchreae," + }, + { + "verseNum": 2, + "text": "that|strong=\"G2443\"* you|strong=\"G5210\"* receive|strong=\"G4327\"* her|strong=\"G1438\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* in|strong=\"G1722\"* a|strong=\"G1096\"* way|strong=\"G1722\"* worthy of|strong=\"G2532\"* the|strong=\"G1722\"* saints, and|strong=\"G2532\"* that|strong=\"G2443\"* you|strong=\"G5210\"* assist|strong=\"G3936\"* her|strong=\"G1438\"* in|strong=\"G1722\"* whatever|strong=\"G3739\"* matter|strong=\"G4229\"* she|strong=\"G2532\"* may|strong=\"G2532\"* need|strong=\"G5535\"* from|strong=\"G2532\"* you|strong=\"G5210\"*, for|strong=\"G1063\"* she|strong=\"G2532\"* herself|strong=\"G1438\"* also|strong=\"G2532\"* has|strong=\"G2962\"* been|strong=\"G1096\"* a|strong=\"G1096\"* helper|strong=\"G4368\"* of|strong=\"G2532\"* many|strong=\"G4183\"*, and|strong=\"G2532\"* of|strong=\"G2532\"* my|strong=\"G1722\"* own|strong=\"G1438\"* self." + }, + { + "verseNum": 3, + "text": "Greet Prisca|strong=\"G4251\"* and|strong=\"G2532\"* Aquila, my|strong=\"G1722\"* fellow|strong=\"G4904\"* workers|strong=\"G4904\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 4, + "text": "who|strong=\"G3739\"* risked|strong=\"G5294\"* their|strong=\"G1438\"* own|strong=\"G1438\"* necks|strong=\"G5137\"* for|strong=\"G5228\"* my|strong=\"G3956\"* life|strong=\"G5590\"*, to|strong=\"G2532\"* whom|strong=\"G3739\"* not|strong=\"G3756\"* only|strong=\"G3441\"* I|strong=\"G1473\"* give|strong=\"G2168\"* thanks|strong=\"G2168\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* assemblies|strong=\"G1577\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*." + }, + { + "verseNum": 5, + "text": "Greet the|strong=\"G2532\"* assembly|strong=\"G1577\"* that|strong=\"G3739\"* is|strong=\"G1510\"* in|strong=\"G1519\"* their|strong=\"G2532\"* house|strong=\"G3624\"*. Greet Epaenetus|strong=\"G1866\"*, my|strong=\"G1473\"* beloved, who|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G2532\"* first|strong=\"G3588\"* fruits of|strong=\"G2532\"* Achaia to|strong=\"G1519\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 6, + "text": "Greet Mary|strong=\"G3137\"*, who|strong=\"G3748\"* labored|strong=\"G2872\"* much|strong=\"G4183\"* for|strong=\"G1519\"* us|strong=\"G1519\"*." + }, + { + "verseNum": 7, + "text": "Greet Andronicus and|strong=\"G2532\"* Junia|strong=\"G2458\"*, my|strong=\"G1722\"* relatives|strong=\"G4773\"* and|strong=\"G2532\"* my|strong=\"G1722\"* fellow|strong=\"G4869\"* prisoners|strong=\"G4869\"*, who|strong=\"G3739\"* are|strong=\"G1510\"* notable|strong=\"G1978\"* among|strong=\"G1722\"* the|strong=\"G1722\"* apostles, who|strong=\"G3739\"* were|strong=\"G1510\"* also|strong=\"G2532\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* before|strong=\"G4253\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 8, + "text": "Greet Amplias, my|strong=\"G1722\"* beloved in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 9, + "text": "Greet Urbanus|strong=\"G3773\"*, our|strong=\"G2532\"* fellow|strong=\"G4904\"* worker|strong=\"G4904\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* Stachys|strong=\"G4720\"*, my|strong=\"G1722\"* beloved." + }, + { + "verseNum": 10, + "text": "Greet Apelles, the|strong=\"G1722\"* approved|strong=\"G1384\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*. Greet those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1722\"* household of|strong=\"G1537\"* Aristobulus." + }, + { + "verseNum": 11, + "text": "Greet Herodion|strong=\"G2267\"*, my|strong=\"G1722\"* kinsman|strong=\"G4773\"*. Greet them|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1722\"* household of|strong=\"G1537\"* Narcissus|strong=\"G3488\"*, who|strong=\"G3588\"* are|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 12, + "text": "Greet Tryphaena|strong=\"G5170\"* and|strong=\"G2532\"* Tryphosa|strong=\"G5173\"*, who|strong=\"G3588\"* labor|strong=\"G2872\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*. Greet Persis|strong=\"G4069\"*, the|strong=\"G1722\"* beloved, who|strong=\"G3588\"* labored|strong=\"G2872\"* much|strong=\"G4183\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 13, + "text": "Greet Rufus|strong=\"G4504\"*, the|strong=\"G1722\"* chosen|strong=\"G1588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, and|strong=\"G2532\"* his|strong=\"G1722\"* mother|strong=\"G3384\"* and|strong=\"G2532\"* mine|strong=\"G1473\"*." + }, + { + "verseNum": 14, + "text": "Greet Asyncritus, Phlegon|strong=\"G5393\"*, Hermes|strong=\"G2060\"*, Patrobas|strong=\"G3969\"*, Hermas|strong=\"G2057\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* brothers+ 16:14 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* who|strong=\"G3588\"* are|strong=\"G3588\"* with|strong=\"G4862\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "Greet Philologus|strong=\"G5378\"* and|strong=\"G2532\"* Julia|strong=\"G2456\"*, Nereus|strong=\"G3517\"* and|strong=\"G2532\"* his|strong=\"G3956\"* sister, and|strong=\"G2532\"* Olympas|strong=\"G3652\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* saints who|strong=\"G3588\"* are|strong=\"G3588\"* with|strong=\"G4862\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "Greet one|strong=\"G3956\"* another|strong=\"G3588\"* with|strong=\"G1722\"* a|strong=\"G1722\"* holy kiss|strong=\"G5370\"*. The|strong=\"G1722\"* assemblies|strong=\"G1577\"* of|strong=\"G1577\"* Christ|strong=\"G5547\"* greet you|strong=\"G5210\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"G1161\"* I|strong=\"G3739\"* beg|strong=\"G3870\"* you|strong=\"G5210\"*, brothers, look|strong=\"G4648\"* out|strong=\"G2532\"* for|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3739\"* are|strong=\"G3588\"* causing|strong=\"G4160\"* the|strong=\"G2532\"* divisions|strong=\"G1370\"* and|strong=\"G2532\"* occasions of|strong=\"G2532\"* stumbling|strong=\"G4625\"*, contrary|strong=\"G3844\"* to|strong=\"G2532\"* the|strong=\"G2532\"* doctrine|strong=\"G1322\"* which|strong=\"G3739\"* you|strong=\"G5210\"* learned|strong=\"G3129\"*, and|strong=\"G2532\"* turn|strong=\"G1578\"* away|strong=\"G1578\"* from|strong=\"G3844\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* such|strong=\"G5108\"* don’t|strong=\"G3588\"* serve|strong=\"G1398\"* our|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2532\"* Christ|strong=\"G5547\"*, but|strong=\"G2532\"* their|strong=\"G1438\"* own|strong=\"G1438\"* belly|strong=\"G2836\"*; and|strong=\"G2532\"* by|strong=\"G1223\"* their|strong=\"G1438\"* smooth|strong=\"G5542\"* and|strong=\"G2532\"* flattering|strong=\"G2129\"* speech|strong=\"G2129\"* they|strong=\"G2532\"* deceive|strong=\"G1818\"* the|strong=\"G2532\"* hearts|strong=\"G2588\"* of|strong=\"G1223\"* the|strong=\"G2532\"* innocent." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* your|strong=\"G3956\"* obedience|strong=\"G5218\"* has|strong=\"G1510\"* become|strong=\"G1510\"* known to|strong=\"G1519\"* all|strong=\"G3956\"*. I|strong=\"G1161\"* rejoice|strong=\"G5463\"* therefore|strong=\"G3767\"* over|strong=\"G1909\"* you|strong=\"G5210\"*. But|strong=\"G1161\"* I|strong=\"G1161\"* desire|strong=\"G2309\"* to|strong=\"G1519\"* have|strong=\"G2309\"* you|strong=\"G5210\"* wise|strong=\"G4680\"* in|strong=\"G1519\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G1510\"* good|strong=\"G3956\"*, but|strong=\"G1161\"* innocent in|strong=\"G1519\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G1510\"* evil|strong=\"G2556\"*." + }, + { + "verseNum": 20, + "text": "And|strong=\"G1161\"* the|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G5259\"* peace|strong=\"G1515\"* will|strong=\"G2316\"* quickly|strong=\"G5034\"* crush|strong=\"G4937\"* Satan|strong=\"G4567\"* under|strong=\"G5259\"* your|strong=\"G2962\"* feet|strong=\"G4228\"*." + }, + { + "verseNum": 21, + "text": "Timothy|strong=\"G5095\"*, my|strong=\"G1473\"* fellow|strong=\"G4904\"* worker|strong=\"G4904\"*, greets you|strong=\"G5210\"*, as|strong=\"G2532\"* do|strong=\"G2532\"* Lucius|strong=\"G3066\"*, Jason|strong=\"G2394\"*, and|strong=\"G2532\"* Sosipater|strong=\"G4989\"*, my|strong=\"G1473\"* relatives|strong=\"G4773\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"G1473\"*, Tertius|strong=\"G5060\"*, who|strong=\"G3588\"* write|strong=\"G1125\"* the|strong=\"G1722\"* letter|strong=\"G1992\"*, greet you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 23, + "text": "Gaius|strong=\"G1050\"*, my|strong=\"G1473\"* host|strong=\"G3581\"* and|strong=\"G2532\"* host|strong=\"G3581\"* of|strong=\"G2532\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* assembly|strong=\"G1577\"*, greets you|strong=\"G5210\"*. Erastus|strong=\"G2037\"*, the|strong=\"G2532\"* treasurer|strong=\"G3623\"* of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, greets you|strong=\"G5210\"*, as|strong=\"G2532\"* does Quartus|strong=\"G2890\"*, the|strong=\"G2532\"* brother." + }, + { + "verseNum": 24, + "text": "The|strong=\"G3956\"* grace|strong=\"G5485\"* of|strong=\"G5485\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* be|strong=\"G3956\"* with|strong=\"G3326\"* you|strong=\"G4771\"* all|strong=\"G3956\"*! Amen." + }, + { + "verseNum": 25, + "text": "+ 16:25 TR places Romans 14:24-26 at the end of Romans instead of at the end of chapter 14, and numbers these verses 16:25-27.*" + } + ] + } + ] + }, + { + "name": "1 Corinthians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, called|strong=\"G2822\"* to|strong=\"G2532\"* be|strong=\"G2532\"* an|strong=\"G2532\"* apostle of|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*+ 1:1 “Christ” means “Anointed One”.* through|strong=\"G1223\"* the|strong=\"G2532\"* will|strong=\"G2307\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* our|strong=\"G2316\"* brother Sosthenes|strong=\"G4988\"*," + }, + { + "verseNum": 2, + "text": "to|strong=\"G2532\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* of|strong=\"G2316\"* God|strong=\"G2316\"* which|strong=\"G3588\"* is|strong=\"G1510\"* at|strong=\"G1722\"* Corinth|strong=\"G2882\"*—those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* sanctified|strong=\"G3956\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, called|strong=\"G2822\"* saints, with|strong=\"G1722\"* all|strong=\"G3956\"* who|strong=\"G3588\"* call|strong=\"G1941\"* on|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2316\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* in|strong=\"G1722\"* every|strong=\"G3956\"* place|strong=\"G5117\"*, both|strong=\"G2532\"* theirs and|strong=\"G2532\"* ours|strong=\"G1473\"*:" + }, + { + "verseNum": 3, + "text": "Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"G1473\"* always|strong=\"G3842\"* thank|strong=\"G2168\"* my|strong=\"G1722\"* God|strong=\"G2316\"* concerning|strong=\"G4012\"* you|strong=\"G5210\"* for|strong=\"G4012\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* of|strong=\"G4012\"* God|strong=\"G2316\"* which|strong=\"G3588\"* was|strong=\"G3588\"* given|strong=\"G1325\"* you|strong=\"G5210\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 5, + "text": "that|strong=\"G3754\"* in|strong=\"G1722\"* everything|strong=\"G3956\"* you|strong=\"G3754\"* were|strong=\"G2532\"* enriched|strong=\"G4148\"* in|strong=\"G1722\"* him|strong=\"G2532\"*, in|strong=\"G1722\"* all|strong=\"G3956\"* speech|strong=\"G3056\"* and|strong=\"G2532\"* all|strong=\"G3956\"* knowledge|strong=\"G1108\"*—" + }, + { + "verseNum": 6, + "text": "even|strong=\"G2531\"* as|strong=\"G2531\"* the|strong=\"G1722\"* testimony|strong=\"G3142\"* of|strong=\"G1722\"* Christ|strong=\"G5547\"* was|strong=\"G3588\"* confirmed in|strong=\"G1722\"* you|strong=\"G5210\"*—" + }, + { + "verseNum": 7, + "text": "so|strong=\"G5620\"* that|strong=\"G3588\"* you|strong=\"G5210\"* come|strong=\"G5302\"* behind|strong=\"G5302\"* in|strong=\"G1722\"* no|strong=\"G3361\"* gift|strong=\"G5486\"*, waiting for|strong=\"G1722\"* the|strong=\"G1722\"* revelation of|strong=\"G2962\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 8, + "text": "who|strong=\"G3739\"* will|strong=\"G2532\"* also|strong=\"G2532\"* confirm you|strong=\"G5210\"* until|strong=\"G2193\"* the|strong=\"G1722\"* end|strong=\"G5056\"*, blameless in|strong=\"G1722\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G2250\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 9, + "text": "God|strong=\"G2316\"* is|strong=\"G3588\"* faithful|strong=\"G4103\"*, through|strong=\"G1223\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* were|strong=\"G3588\"* called|strong=\"G2564\"* into|strong=\"G1519\"* the|strong=\"G1519\"* fellowship|strong=\"G2842\"* of|strong=\"G5207\"* his|strong=\"G1223\"* Son|strong=\"G5207\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"G1161\"* I|strong=\"G1473\"* beg|strong=\"G3870\"* you|strong=\"G5210\"*, brothers,+ 1:10 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* through|strong=\"G1223\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G1223\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* all|strong=\"G3956\"* speak|strong=\"G3004\"* the|strong=\"G1722\"* same|strong=\"G2532\"* thing|strong=\"G3956\"*, and|strong=\"G2532\"* that|strong=\"G2443\"* there|strong=\"G2532\"* be|strong=\"G1510\"* no|strong=\"G3361\"* divisions|strong=\"G4978\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, but|strong=\"G1161\"* that|strong=\"G2443\"* you|strong=\"G5210\"* be|strong=\"G1510\"* perfected together|strong=\"G2675\"* in|strong=\"G1722\"* the|strong=\"G1722\"* same|strong=\"G2532\"* mind|strong=\"G3563\"* and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* same|strong=\"G2532\"* judgment|strong=\"G1106\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* it|strong=\"G3754\"* has|strong=\"G3748\"* been|strong=\"G1510\"* reported to|strong=\"G1722\"* me|strong=\"G1473\"* concerning|strong=\"G4012\"* you|strong=\"G5210\"*, my|strong=\"G1722\"* brothers, by|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* from|strong=\"G5259\"* Chloe|strong=\"G5514\"*’s household, that|strong=\"G3754\"* there|strong=\"G1063\"* are|strong=\"G1510\"* contentions|strong=\"G2054\"* among|strong=\"G1722\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"G1161\"* I|strong=\"G1473\"* mean|strong=\"G3004\"* this|strong=\"G3778\"*, that|strong=\"G3754\"* each|strong=\"G1538\"* one|strong=\"G1538\"* of|strong=\"G1538\"* you|strong=\"G5210\"* says|strong=\"G3004\"*, “I|strong=\"G1473\"* follow|strong=\"G1161\"* Paul|strong=\"G3972\"*,” “I|strong=\"G1473\"* follow|strong=\"G1161\"* Apollos,” “I|strong=\"G1473\"* follow|strong=\"G1161\"* Cephas|strong=\"G2786\"*,” and|strong=\"G1161\"*, “I|strong=\"G1473\"* follow|strong=\"G1161\"* Christ|strong=\"G5547\"*.”" + }, + { + "verseNum": 13, + "text": "Is|strong=\"G3588\"* Christ|strong=\"G5547\"* divided|strong=\"G3307\"*? Was|strong=\"G3588\"* Paul|strong=\"G3972\"* crucified|strong=\"G4717\"* for|strong=\"G1519\"* you|strong=\"G5210\"*? Or|strong=\"G2228\"* were|strong=\"G3588\"* you|strong=\"G5210\"* baptized into|strong=\"G1519\"* the|strong=\"G1519\"* name|strong=\"G3686\"* of|strong=\"G3686\"* Paul|strong=\"G3972\"*?" + }, + { + "verseNum": 14, + "text": "I|strong=\"G2532\"* thank|strong=\"G2168\"* God|strong=\"G2532\"* that|strong=\"G3754\"* I|strong=\"G2532\"* baptized none|strong=\"G3762\"* of|strong=\"G2532\"* you|strong=\"G5210\"* except|strong=\"G1487\"* Crispus|strong=\"G2921\"* and|strong=\"G2532\"* Gaius|strong=\"G1050\"*," + }, + { + "verseNum": 15, + "text": "so|strong=\"G2443\"* that|strong=\"G3754\"* no|strong=\"G3361\"* one|strong=\"G5100\"* should|strong=\"G5100\"* say|strong=\"G3004\"* that|strong=\"G3754\"* I|strong=\"G3754\"* had|strong=\"G3588\"* baptized you|strong=\"G3754\"* into|strong=\"G1519\"* my|strong=\"G1699\"* own|strong=\"G1699\"* name|strong=\"G3686\"*." + }, + { + "verseNum": 16, + "text": "(I|strong=\"G2532\"* also|strong=\"G2532\"* baptized the|strong=\"G2532\"* household|strong=\"G3624\"* of|strong=\"G2532\"* Stephanas|strong=\"G4734\"*; besides|strong=\"G3063\"* them|strong=\"G3588\"*, I|strong=\"G2532\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* whether|strong=\"G1487\"* I|strong=\"G2532\"* baptized any|strong=\"G5100\"* other|strong=\"G1161\"*.)" + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* Christ|strong=\"G5547\"* sent me|strong=\"G1473\"* not|strong=\"G3756\"* to|strong=\"G2443\"* baptize, but|strong=\"G3361\"* to|strong=\"G2443\"* preach|strong=\"G2097\"* the|strong=\"G1722\"* Good|strong=\"G2097\"* News|strong=\"G2097\"*—not|strong=\"G3756\"* in|strong=\"G1722\"* wisdom|strong=\"G4678\"* of|strong=\"G3056\"* words|strong=\"G3056\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* the|strong=\"G1722\"* cross|strong=\"G4716\"* of|strong=\"G3056\"* Christ|strong=\"G5547\"* wouldn’t|strong=\"G3588\"* be|strong=\"G3756\"* made|strong=\"G2758\"* void|strong=\"G2758\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* the|strong=\"G1161\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1161\"* cross|strong=\"G4716\"* is|strong=\"G1510\"* foolishness|strong=\"G3472\"* to|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* dying, but|strong=\"G1161\"* to|strong=\"G1161\"* us|strong=\"G2249\"* who|strong=\"G3588\"* are|strong=\"G1510\"* being|strong=\"G1510\"* saved|strong=\"G4982\"* it|strong=\"G1161\"* is|strong=\"G1510\"* the|strong=\"G1161\"* power|strong=\"G1411\"* of|strong=\"G3056\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 20, + "text": "Where|strong=\"G4226\"* is|strong=\"G3588\"* the|strong=\"G3588\"* wise|strong=\"G4680\"*? Where|strong=\"G4226\"* is|strong=\"G3588\"* the|strong=\"G3588\"* scribe|strong=\"G1122\"*? Where|strong=\"G4226\"* is|strong=\"G3588\"* the|strong=\"G3588\"* debater|strong=\"G4804\"* of|strong=\"G2316\"* this|strong=\"G3778\"* age|strong=\"G2889\"*? Hasn’t|strong=\"G3588\"* God|strong=\"G2316\"* made|strong=\"G2316\"* foolish|strong=\"G3471\"* the|strong=\"G3588\"* wisdom|strong=\"G4678\"* of|strong=\"G2316\"* this|strong=\"G3778\"* world|strong=\"G2889\"*?" + }, + { + "verseNum": 21, + "text": "For|strong=\"G1063\"* seeing|strong=\"G1894\"* that|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wisdom|strong=\"G4678\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, the|strong=\"G1722\"* world|strong=\"G2889\"* through|strong=\"G1223\"* its|strong=\"G1223\"* wisdom|strong=\"G4678\"* didn’t|strong=\"G3588\"* know|strong=\"G1097\"* God|strong=\"G2316\"*, it|strong=\"G1063\"* was|strong=\"G3588\"* God|strong=\"G2316\"*’s good|strong=\"G2106\"* pleasure|strong=\"G2106\"* through|strong=\"G1223\"* the|strong=\"G1722\"* foolishness|strong=\"G3472\"* of|strong=\"G1223\"* the|strong=\"G1722\"* preaching|strong=\"G2782\"* to|strong=\"G1722\"* save|strong=\"G4982\"* those|strong=\"G3588\"* who|strong=\"G3588\"* believe|strong=\"G4100\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"G2212\"* Jews|strong=\"G2453\"* ask for|strong=\"G2212\"* signs|strong=\"G4592\"*, Greeks|strong=\"G1672\"* seek|strong=\"G2212\"* after|strong=\"G2532\"* wisdom|strong=\"G4678\"*," + }, + { + "verseNum": 23, + "text": "but|strong=\"G1161\"* we|strong=\"G2249\"* preach|strong=\"G2784\"* Christ|strong=\"G5547\"* crucified|strong=\"G4717\"*, a|strong=\"G1161\"* stumbling|strong=\"G4625\"* block|strong=\"G4625\"* to|strong=\"G1161\"* Jews|strong=\"G2453\"* and|strong=\"G1161\"* foolishness|strong=\"G3472\"* to|strong=\"G1161\"* Greeks," + }, + { + "verseNum": 24, + "text": "but|strong=\"G1161\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* called|strong=\"G2822\"*, both|strong=\"G2532\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* Greeks|strong=\"G1672\"*, Christ|strong=\"G5547\"* is|strong=\"G3588\"* the|strong=\"G2532\"* power|strong=\"G1411\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* the|strong=\"G2532\"* wisdom|strong=\"G4678\"* of|strong=\"G2316\"* God|strong=\"G2316\"*;" + }, + { + "verseNum": 25, + "text": "because|strong=\"G3754\"* the|strong=\"G2532\"* foolishness|strong=\"G3474\"* of|strong=\"G2316\"* God|strong=\"G2316\"* is|strong=\"G1510\"* wiser|strong=\"G4680\"* than|strong=\"G2478\"* men|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* weakness of|strong=\"G2316\"* God|strong=\"G2316\"* is|strong=\"G1510\"* stronger|strong=\"G2478\"* than|strong=\"G2478\"* men|strong=\"G3588\"*." + }, + { + "verseNum": 26, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* see your|strong=\"G3588\"* calling|strong=\"G2821\"*, brothers, that|strong=\"G3754\"* not|strong=\"G3756\"* many|strong=\"G4183\"* are|strong=\"G3588\"* wise|strong=\"G4680\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G2596\"* flesh|strong=\"G4561\"*, not|strong=\"G3756\"* many|strong=\"G4183\"* mighty|strong=\"G1415\"*, and|strong=\"G4561\"* not|strong=\"G3756\"* many|strong=\"G4183\"* noble|strong=\"G2104\"*;" + }, + { + "verseNum": 27, + "text": "but|strong=\"G2532\"* God|strong=\"G2316\"* chose|strong=\"G1586\"* the|strong=\"G2532\"* foolish|strong=\"G3474\"* things|strong=\"G3588\"* of|strong=\"G2316\"* the|strong=\"G2532\"* world|strong=\"G2889\"* that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* put|strong=\"G2617\"* to|strong=\"G2443\"* shame|strong=\"G2617\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* wise|strong=\"G4680\"*. God|strong=\"G2316\"* chose|strong=\"G1586\"* the|strong=\"G2532\"* weak things|strong=\"G3588\"* of|strong=\"G2316\"* the|strong=\"G2532\"* world|strong=\"G2889\"* that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* put|strong=\"G2617\"* to|strong=\"G2443\"* shame|strong=\"G2617\"* the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G2443\"* are|strong=\"G3588\"* strong|strong=\"G2478\"*." + }, + { + "verseNum": 28, + "text": "God|strong=\"G2316\"* chose|strong=\"G1586\"* the|strong=\"G2532\"* lowly things|strong=\"G3588\"* of|strong=\"G2316\"* the|strong=\"G2532\"* world|strong=\"G2889\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G2443\"* are|strong=\"G1510\"* despised|strong=\"G1848\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G2443\"* don’t|strong=\"G3588\"* exist|strong=\"G1510\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* bring|strong=\"G2532\"* to|strong=\"G2443\"* nothing|strong=\"G3361\"* the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G2443\"* exist|strong=\"G1510\"*," + }, + { + "verseNum": 29, + "text": "that|strong=\"G3588\"* no|strong=\"G3361\"* flesh|strong=\"G4561\"* should|strong=\"G2316\"* boast|strong=\"G2744\"* before|strong=\"G1799\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 30, + "text": "Because|strong=\"G1537\"* of|strong=\"G1537\"* him|strong=\"G3739\"*, you|strong=\"G5210\"* are|strong=\"G1510\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, who|strong=\"G3739\"* was|strong=\"G1510\"* made|strong=\"G1096\"* to|strong=\"G2532\"* us|strong=\"G2249\"* wisdom|strong=\"G4678\"* from|strong=\"G1537\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* righteousness|strong=\"G1343\"* and|strong=\"G2532\"* sanctification, and|strong=\"G2532\"* redemption," + }, + { + "verseNum": 31, + "text": "that|strong=\"G2443\"*, as|strong=\"G2531\"* it|strong=\"G2531\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “He|strong=\"G3588\"* who|strong=\"G3588\"* boasts|strong=\"G2744\"*, let|strong=\"G2443\"* him|strong=\"G3588\"* boast|strong=\"G2744\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*.”+ 1:31 Jeremiah 9:24*" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G2064\"* I|strong=\"G2504\"* came|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"*, brothers, I|strong=\"G2504\"* didn’t|strong=\"G3588\"* come|strong=\"G2064\"* with|strong=\"G4314\"* excellence of|strong=\"G3056\"* speech|strong=\"G3056\"* or|strong=\"G2228\"* of|strong=\"G3056\"* wisdom|strong=\"G4678\"*, proclaiming|strong=\"G2605\"* to|strong=\"G4314\"* you|strong=\"G5210\"* the|strong=\"G2596\"* testimony|strong=\"G3142\"* of|strong=\"G3056\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* I|strong=\"G2532\"* determined|strong=\"G2919\"* not|strong=\"G3756\"* to|strong=\"G2532\"* know|strong=\"G1492\"* anything|strong=\"G5100\"* among|strong=\"G1722\"* you|strong=\"G5210\"* except|strong=\"G1487\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* and|strong=\"G2532\"* him|strong=\"G2532\"* crucified|strong=\"G4717\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"G2532\"* was|strong=\"G1096\"* with|strong=\"G1722\"* you|strong=\"G5210\"* in|strong=\"G1722\"* weakness, in|strong=\"G1722\"* fear|strong=\"G5401\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* much|strong=\"G4183\"* trembling|strong=\"G5156\"*." + }, + { + "verseNum": 4, + "text": "My|strong=\"G1722\"* speech|strong=\"G3056\"* and|strong=\"G2532\"* my|strong=\"G1722\"* preaching|strong=\"G2782\"* were|strong=\"G3588\"* not|strong=\"G3756\"* in|strong=\"G1722\"* persuasive|strong=\"G3981\"* words|strong=\"G3056\"* of|strong=\"G3056\"* human wisdom|strong=\"G4678\"*, but|strong=\"G2532\"* in|strong=\"G1722\"* demonstration of|strong=\"G3056\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* and|strong=\"G2532\"* of|strong=\"G3056\"* power|strong=\"G1411\"*," + }, + { + "verseNum": 5, + "text": "that|strong=\"G2443\"* your|strong=\"G1722\"* faith|strong=\"G4102\"* wouldn’t|strong=\"G3588\"* stand|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wisdom|strong=\"G4678\"* of|strong=\"G2316\"* men|strong=\"G3588\"*, but|strong=\"G3361\"* in|strong=\"G1722\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 6, + "text": "We|strong=\"G1161\"* speak|strong=\"G2980\"* wisdom|strong=\"G4678\"*, however|strong=\"G1161\"*, among|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* full|strong=\"G1722\"* grown, yet|strong=\"G1161\"* a|strong=\"G1722\"* wisdom|strong=\"G4678\"* not|strong=\"G3756\"* of|strong=\"G1722\"* this|strong=\"G3778\"* world nor|strong=\"G3761\"* of|strong=\"G1722\"* the|strong=\"G1722\"* rulers of|strong=\"G1722\"* this|strong=\"G3778\"* world who|strong=\"G3588\"* are|strong=\"G3588\"* coming to|strong=\"G1722\"* nothing|strong=\"G3756\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G2316\"* we|strong=\"G2249\"* speak|strong=\"G2980\"* God|strong=\"G2316\"*’s wisdom|strong=\"G4678\"* in|strong=\"G1722\"* a|strong=\"G1519\"* mystery|strong=\"G3466\"*, the|strong=\"G1722\"* wisdom|strong=\"G4678\"* that|strong=\"G3739\"* has|strong=\"G2316\"* been hidden, which|strong=\"G3739\"* God|strong=\"G2316\"* foreordained before|strong=\"G4253\"* the|strong=\"G1722\"* worlds for|strong=\"G1519\"* our|strong=\"G2316\"* glory|strong=\"G1391\"*," + }, + { + "verseNum": 8, + "text": "which|strong=\"G3739\"* none|strong=\"G3762\"* of|strong=\"G1391\"* the|strong=\"G3588\"* rulers of|strong=\"G1391\"* this|strong=\"G3778\"* world has|strong=\"G2962\"* known|strong=\"G1097\"*. For|strong=\"G1063\"* had|strong=\"G3739\"* they|strong=\"G3588\"* known|strong=\"G1097\"* it|strong=\"G1063\"*, they|strong=\"G3588\"* wouldn’t|strong=\"G3588\"* have|strong=\"G3588\"* crucified|strong=\"G4717\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"* of|strong=\"G1391\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G2532\"* as|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* to|strong=\"G2532\"* us|strong=\"G2249\"*, God|strong=\"G2316\"* revealed them|strong=\"G3588\"* through|strong=\"G1223\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"*. For|strong=\"G1063\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* searches|strong=\"G2045\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, yes|strong=\"G1063\"*, the|strong=\"G2532\"* deep things|strong=\"G3956\"* of|strong=\"G4151\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* who|strong=\"G5101\"* among|strong=\"G1722\"* men|strong=\"G3588\"* knows|strong=\"G1097\"* the|strong=\"G1722\"* things|strong=\"G3588\"* of|strong=\"G4151\"* a|strong=\"G2532\"* man|strong=\"G3762\"* except|strong=\"G1487\"* the|strong=\"G1722\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* the|strong=\"G1722\"* man|strong=\"G3762\"* which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* him|strong=\"G3588\"*? Even|strong=\"G2532\"* so|strong=\"G3779\"*, no|strong=\"G3762\"* one|strong=\"G3762\"* knows|strong=\"G1097\"* the|strong=\"G1722\"* things|strong=\"G3588\"* of|strong=\"G4151\"* God|strong=\"G2316\"* except|strong=\"G1487\"* God|strong=\"G2316\"*’s Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"* received|strong=\"G2983\"* not|strong=\"G3756\"* the|strong=\"G1537\"* spirit|strong=\"G4151\"* of|strong=\"G1537\"* the|strong=\"G1537\"* world|strong=\"G2889\"*, but|strong=\"G1161\"* the|strong=\"G1537\"* Spirit|strong=\"G4151\"* which|strong=\"G3588\"* is|strong=\"G3588\"* from|strong=\"G1537\"* God|strong=\"G2316\"*, that|strong=\"G2443\"* we|strong=\"G2249\"* might|strong=\"G2316\"* know|strong=\"G1492\"* the|strong=\"G1537\"* things|strong=\"G3588\"* that|strong=\"G2443\"* were|strong=\"G3588\"* freely|strong=\"G5483\"* given|strong=\"G5483\"* to|strong=\"G2443\"* us|strong=\"G5483\"* by|strong=\"G5259\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 13, + "text": "We|strong=\"G3739\"* also|strong=\"G2532\"* speak|strong=\"G2980\"* these|strong=\"G3739\"* things|strong=\"G3739\"*, not|strong=\"G3756\"* in|strong=\"G1722\"* words|strong=\"G3056\"* which|strong=\"G3739\"* man|strong=\"G3739\"*’s wisdom|strong=\"G4678\"* teaches but|strong=\"G2532\"* which|strong=\"G3739\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* teaches, comparing|strong=\"G4793\"* spiritual|strong=\"G4152\"* things|strong=\"G3739\"* with|strong=\"G1722\"* spiritual|strong=\"G4152\"* things|strong=\"G3739\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* natural|strong=\"G5591\"* man|strong=\"G3756\"* doesn’t|strong=\"G3588\"* receive|strong=\"G1209\"* the|strong=\"G2532\"* things|strong=\"G3588\"* of|strong=\"G4151\"* God|strong=\"G2316\"*’s Spirit|strong=\"G4151\"*, for|strong=\"G1063\"* they|strong=\"G2532\"* are|strong=\"G1510\"* foolishness|strong=\"G3472\"* to|strong=\"G2532\"* him|strong=\"G3588\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* know|strong=\"G1097\"* them|strong=\"G3588\"*, because|strong=\"G3754\"* they|strong=\"G2532\"* are|strong=\"G1510\"* spiritually|strong=\"G4153\"* discerned." + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3588\"* is|strong=\"G3588\"* spiritual|strong=\"G4152\"* discerns all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G1161\"* he|strong=\"G1161\"* himself is|strong=\"G3588\"* to|strong=\"G1161\"* be|strong=\"G3956\"* judged by|strong=\"G5259\"* no|strong=\"G3762\"* one|strong=\"G3762\"*." + }, + { + "verseNum": 16, + "text": "“For|strong=\"G1063\"* who|strong=\"G3739\"* has|strong=\"G2192\"* known|strong=\"G1097\"* the|strong=\"G1161\"* mind|strong=\"G3563\"* of|strong=\"G2962\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"* that|strong=\"G3739\"* he|strong=\"G1161\"* should|strong=\"G2249\"* instruct|strong=\"G4822\"* him|strong=\"G3739\"*?”+ 2:16 Isaiah 40:13* But|strong=\"G1161\"* we|strong=\"G2249\"* have|strong=\"G2192\"* Christ|strong=\"G5547\"*’s|strong=\"G2962\"* mind|strong=\"G3563\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Brothers, I|strong=\"G2504\"* couldn’t speak|strong=\"G2980\"* to|strong=\"G1410\"* you|strong=\"G5210\"* as|strong=\"G5613\"* to|strong=\"G1410\"* spiritual|strong=\"G4152\"*, but as|strong=\"G5613\"* to|strong=\"G1410\"* fleshly, as|strong=\"G5613\"* to|strong=\"G1410\"* babies in|strong=\"G1722\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"G1063\"* fed|strong=\"G4222\"* you|strong=\"G5210\"* with|strong=\"G3756\"* milk|strong=\"G1051\"*, not|strong=\"G3756\"* with|strong=\"G3756\"* solid food|strong=\"G1033\"*, for|strong=\"G1063\"* you|strong=\"G5210\"* weren’t yet|strong=\"G2089\"* ready|strong=\"G1410\"*. Indeed|strong=\"G1063\"*, you|strong=\"G5210\"* aren’t ready|strong=\"G1410\"* even|strong=\"G3761\"* now|strong=\"G3568\"*," + }, + { + "verseNum": 3, + "text": "for|strong=\"G1063\"* you|strong=\"G5210\"* are|strong=\"G1510\"* still|strong=\"G2089\"* fleshly|strong=\"G4559\"*. For|strong=\"G1063\"* insofar as|strong=\"G1722\"* there|strong=\"G2532\"* is|strong=\"G1510\"* jealousy|strong=\"G2205\"*, strife|strong=\"G2054\"*, and|strong=\"G2532\"* factions among|strong=\"G1722\"* you|strong=\"G5210\"*, aren’t you|strong=\"G5210\"* fleshly|strong=\"G4559\"*, and|strong=\"G2532\"* don’t you|strong=\"G5210\"* walk|strong=\"G4043\"* in|strong=\"G1722\"* the|strong=\"G1722\"* ways of|strong=\"G2532\"* men|strong=\"G3699\"*?" + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* when|strong=\"G3752\"* one|strong=\"G5100\"* says|strong=\"G3004\"*, “I|strong=\"G1473\"* follow|strong=\"G1161\"* Paul|strong=\"G3972\"*,” and|strong=\"G1161\"* another|strong=\"G2087\"*, “I|strong=\"G1473\"* follow|strong=\"G1161\"* Apollos,” aren’t you|strong=\"G3752\"* fleshly?" + }, + { + "verseNum": 5, + "text": "Who|strong=\"G3739\"* then|strong=\"G3767\"* is|strong=\"G1510\"* Apollos, and|strong=\"G2532\"* who|strong=\"G3739\"* is|strong=\"G1510\"* Paul|strong=\"G3972\"*, but|strong=\"G1161\"* servants|strong=\"G1249\"* through|strong=\"G1223\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* believed|strong=\"G4100\"*, and|strong=\"G2532\"* each|strong=\"G1538\"* as|strong=\"G5613\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* gave|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G3588\"*?" + }, + { + "verseNum": 6, + "text": "I|strong=\"G1473\"* planted|strong=\"G5452\"*. Apollos watered|strong=\"G4222\"*. But|strong=\"G2316\"* God|strong=\"G2316\"* gave|strong=\"G4222\"* the|strong=\"G3588\"* increase." + }, + { + "verseNum": 7, + "text": "So|strong=\"G5620\"* then|strong=\"G5620\"* neither|strong=\"G3777\"* he|strong=\"G3588\"* who|strong=\"G3588\"* plants|strong=\"G5452\"* is|strong=\"G1510\"* anything|strong=\"G5100\"*, nor|strong=\"G3777\"* he|strong=\"G3588\"* who|strong=\"G3588\"* waters|strong=\"G4222\"*, but|strong=\"G2316\"* God|strong=\"G2316\"* who|strong=\"G3588\"* gives|strong=\"G4222\"* the|strong=\"G3588\"* increase." + }, + { + "verseNum": 8, + "text": "Now|strong=\"G1161\"* he|strong=\"G2532\"* who|strong=\"G3588\"* plants|strong=\"G5452\"* and|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* waters|strong=\"G4222\"* are|strong=\"G1510\"* the|strong=\"G2532\"* same|strong=\"G2532\"*, but|strong=\"G1161\"* each|strong=\"G1538\"* will|strong=\"G1510\"* receive|strong=\"G2983\"* his|strong=\"G2983\"* own|strong=\"G2398\"* reward|strong=\"G3408\"* according|strong=\"G2596\"* to|strong=\"G2532\"* his|strong=\"G2983\"* own|strong=\"G2398\"* labor|strong=\"G2873\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* are|strong=\"G1510\"* God|strong=\"G2316\"*’s fellow|strong=\"G4904\"* workers|strong=\"G4904\"*. You|strong=\"G1510\"* are|strong=\"G1510\"* God|strong=\"G2316\"*’s farming, God|strong=\"G2316\"*’s building|strong=\"G3619\"*." + }, + { + "verseNum": 10, + "text": "According|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1161\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* which|strong=\"G3588\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2596\"* me|strong=\"G1325\"*, as|strong=\"G5613\"* a|strong=\"G5613\"* wise|strong=\"G4680\"* master builder I|strong=\"G1473\"* laid|strong=\"G5087\"* a|strong=\"G5613\"* foundation|strong=\"G2310\"*, and|strong=\"G1161\"* another|strong=\"G2596\"* builds|strong=\"G2026\"* on|strong=\"G2596\"* it|strong=\"G1161\"*. But|strong=\"G1161\"* let|strong=\"G1161\"* each|strong=\"G1538\"* man|strong=\"G1538\"* be|strong=\"G2316\"* careful how|strong=\"G4459\"* he|strong=\"G1161\"* builds|strong=\"G2026\"* on|strong=\"G2596\"* it|strong=\"G1161\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* no|strong=\"G3762\"* one|strong=\"G3762\"* can|strong=\"G1410\"* lay|strong=\"G5087\"* any|strong=\"G3762\"* other|strong=\"G3739\"* foundation|strong=\"G2310\"* than|strong=\"G3844\"* that|strong=\"G3739\"* which|strong=\"G3739\"* has|strong=\"G3739\"* been|strong=\"G1510\"* laid|strong=\"G5087\"*, which|strong=\"G3739\"* is|strong=\"G1510\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* anyone|strong=\"G5100\"* builds|strong=\"G2026\"* on|strong=\"G1909\"* the|strong=\"G1161\"* foundation|strong=\"G2310\"* with|strong=\"G1909\"* gold|strong=\"G5553\"*, silver, costly|strong=\"G5093\"* stones|strong=\"G3037\"*, wood|strong=\"G3586\"*, hay|strong=\"G5528\"*, or|strong=\"G1161\"* straw|strong=\"G2562\"*," + }, + { + "verseNum": 13, + "text": "each|strong=\"G1538\"* man|strong=\"G1538\"*’s work|strong=\"G2041\"* will|strong=\"G1510\"* be|strong=\"G1096\"* revealed|strong=\"G5318\"*. For|strong=\"G1063\"* the|strong=\"G1722\"* Day|strong=\"G2250\"* will|strong=\"G1510\"* declare it|strong=\"G2532\"*, because|strong=\"G3754\"* it|strong=\"G2532\"* is|strong=\"G1510\"* revealed|strong=\"G5318\"* in|strong=\"G1722\"* fire|strong=\"G4442\"*; and|strong=\"G2532\"* the|strong=\"G1722\"* fire|strong=\"G4442\"* itself will|strong=\"G1510\"* test|strong=\"G1381\"* what|strong=\"G3588\"* sort|strong=\"G3697\"* of|strong=\"G2250\"* work|strong=\"G2041\"* each|strong=\"G1538\"* man|strong=\"G1538\"*’s work|strong=\"G2041\"* is|strong=\"G1510\"*." + }, + { + "verseNum": 14, + "text": "If|strong=\"G1487\"* any|strong=\"G5100\"* man|strong=\"G5100\"*’s work|strong=\"G2041\"* remains|strong=\"G3306\"* which|strong=\"G3739\"* he|strong=\"G3739\"* built|strong=\"G2026\"* on|strong=\"G2026\"* it|strong=\"G1487\"*, he|strong=\"G3739\"* will|strong=\"G3739\"* receive|strong=\"G2983\"* a|strong=\"G2983\"* reward|strong=\"G3408\"*." + }, + { + "verseNum": 15, + "text": "If|strong=\"G1487\"* any|strong=\"G5100\"* man|strong=\"G5100\"*’s work|strong=\"G2041\"* is|strong=\"G3588\"* burned|strong=\"G2618\"*, he|strong=\"G1161\"* will|strong=\"G5100\"* suffer|strong=\"G2210\"* loss|strong=\"G2210\"*, but|strong=\"G1161\"* he|strong=\"G1161\"* himself will|strong=\"G5100\"* be|strong=\"G3588\"* saved|strong=\"G4982\"*, but|strong=\"G1161\"* as|strong=\"G5613\"* through|strong=\"G1223\"* fire|strong=\"G4442\"*." + }, + { + "verseNum": 16, + "text": "Don’t|strong=\"G3588\"* you|strong=\"G5210\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G5210\"* are|strong=\"G1510\"* God|strong=\"G2316\"*’s temple|strong=\"G3485\"* and|strong=\"G2532\"* that|strong=\"G3754\"* God|strong=\"G2316\"*’s Spirit|strong=\"G4151\"* lives|strong=\"G3611\"* in|strong=\"G1722\"* you|strong=\"G5210\"*?" + }, + { + "verseNum": 17, + "text": "If|strong=\"G1487\"* anyone|strong=\"G5100\"* destroys|strong=\"G5351\"* God|strong=\"G2316\"*’s temple|strong=\"G3485\"*, God|strong=\"G2316\"* will|strong=\"G2316\"* destroy|strong=\"G5351\"* him|strong=\"G3588\"*; for|strong=\"G1063\"* God|strong=\"G2316\"*’s temple|strong=\"G3485\"* is|strong=\"G1510\"* holy, which|strong=\"G3588\"* you|strong=\"G5210\"* are|strong=\"G1510\"*." + }, + { + "verseNum": 18, + "text": "Let|strong=\"G1096\"* no|strong=\"G3367\"* one|strong=\"G5100\"* deceive|strong=\"G1818\"* himself|strong=\"G1438\"*. If|strong=\"G1487\"* anyone|strong=\"G5100\"* thinks|strong=\"G1380\"* that|strong=\"G2443\"* he|strong=\"G3778\"* is|strong=\"G1510\"* wise|strong=\"G4680\"* among|strong=\"G1722\"* you|strong=\"G5210\"* in|strong=\"G1722\"* this|strong=\"G3778\"* world, let|strong=\"G1096\"* him|strong=\"G3588\"* become|strong=\"G1096\"* a|strong=\"G1096\"* fool|strong=\"G3474\"* that|strong=\"G2443\"* he|strong=\"G3778\"* may|strong=\"G2443\"* become|strong=\"G1096\"* wise|strong=\"G4680\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* wisdom|strong=\"G4678\"* of|strong=\"G2316\"* this|strong=\"G3778\"* world|strong=\"G2889\"* is|strong=\"G1510\"* foolishness|strong=\"G3472\"* with|strong=\"G1722\"* God|strong=\"G2316\"*. For|strong=\"G1063\"* it|strong=\"G1063\"* is|strong=\"G1510\"* written|strong=\"G1125\"*, “He|strong=\"G3778\"* has|strong=\"G2316\"* taken the|strong=\"G1722\"* wise|strong=\"G4680\"* in|strong=\"G1722\"* their|strong=\"G1722\"* craftiness|strong=\"G3834\"*.”+ 3:19 Job 5:13*" + }, + { + "verseNum": 20, + "text": "And|strong=\"G2532\"* again|strong=\"G3825\"*, “The|strong=\"G2532\"* Lord|strong=\"G2962\"* knows|strong=\"G1097\"* the|strong=\"G2532\"* reasoning|strong=\"G1261\"* of|strong=\"G2532\"* the|strong=\"G2532\"* wise|strong=\"G4680\"*, that|strong=\"G3754\"* it|strong=\"G2532\"* is|strong=\"G1510\"* worthless|strong=\"G3152\"*.”+ 3:20 Psalms 94:11*" + }, + { + "verseNum": 21, + "text": "Therefore|strong=\"G5620\"* let|strong=\"G1510\"* no|strong=\"G3367\"* one|strong=\"G3367\"* boast|strong=\"G2744\"* in|strong=\"G1722\"* men|strong=\"G3956\"*. For|strong=\"G1063\"* all|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G1510\"* yours|strong=\"G4771\"*," + }, + { + "verseNum": 22, + "text": "whether|strong=\"G1535\"* Paul|strong=\"G3972\"*, or|strong=\"G1535\"* Apollos, or|strong=\"G1535\"* Cephas|strong=\"G2786\"*, or|strong=\"G1535\"* the|strong=\"G3956\"* world|strong=\"G2889\"*, or|strong=\"G1535\"* life|strong=\"G2222\"*, or|strong=\"G1535\"* death|strong=\"G2288\"*, or|strong=\"G1535\"* things|strong=\"G3956\"* present|strong=\"G1764\"*, or|strong=\"G1535\"* things|strong=\"G3956\"* to|strong=\"G3195\"* come|strong=\"G3195\"*. All|strong=\"G3956\"* are|strong=\"G3956\"* yours|strong=\"G4771\"*," + }, + { + "verseNum": 23, + "text": "and|strong=\"G1161\"* you|strong=\"G5210\"* are|strong=\"G5547\"* Christ|strong=\"G5547\"*’s, and|strong=\"G1161\"* Christ|strong=\"G5547\"* is|strong=\"G2316\"* God|strong=\"G2316\"*’s." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "So|strong=\"G3779\"* let|strong=\"G3049\"* a|strong=\"G5613\"* man|strong=\"G2316\"* think|strong=\"G3049\"* of|strong=\"G2316\"* us|strong=\"G2249\"* as|strong=\"G5613\"* Christ|strong=\"G5547\"*’s servants|strong=\"G5257\"* and|strong=\"G2532\"* stewards|strong=\"G3623\"* of|strong=\"G2316\"* God|strong=\"G2316\"*’s mysteries|strong=\"G3466\"*." + }, + { + "verseNum": 2, + "text": "Here|strong=\"G5602\"*, moreover|strong=\"G3063\"*, it|strong=\"G2147\"* is|strong=\"G3588\"* required|strong=\"G2212\"* of|strong=\"G5100\"* stewards|strong=\"G3623\"* that|strong=\"G2443\"* they|strong=\"G3588\"* be|strong=\"G2443\"* found|strong=\"G2147\"* faithful|strong=\"G4103\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* with|strong=\"G5259\"* me|strong=\"G1473\"* it|strong=\"G1161\"* is|strong=\"G1510\"* a|strong=\"G1519\"* very|strong=\"G1646\"* small|strong=\"G1646\"* thing|strong=\"G1646\"* that|strong=\"G2443\"* I|strong=\"G1473\"* should|strong=\"G1519\"* be|strong=\"G1510\"* judged by|strong=\"G5259\"* you|strong=\"G5210\"*, or|strong=\"G2228\"* by|strong=\"G5259\"* a|strong=\"G1519\"* human court|strong=\"G2250\"*. Yes|strong=\"G1161\"*, I|strong=\"G1473\"* don’t even|strong=\"G3761\"* judge my|strong=\"G1473\"* own|strong=\"G1683\"* self|strong=\"G1683\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* know|strong=\"G1722\"* nothing|strong=\"G3762\"* against|strong=\"G1722\"* myself|strong=\"G1683\"*. Yet|strong=\"G1161\"* I|strong=\"G1473\"* am|strong=\"G1510\"* not|strong=\"G3756\"* justified|strong=\"G1344\"* by|strong=\"G1722\"* this|strong=\"G3778\"*, but|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3588\"* judges me|strong=\"G1473\"* is|strong=\"G1510\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"G5620\"* judge|strong=\"G2919\"* nothing|strong=\"G3361\"* before|strong=\"G4253\"* the|strong=\"G2532\"* time|strong=\"G2540\"*, until|strong=\"G2193\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* comes|strong=\"G2064\"*, who|strong=\"G3739\"* will|strong=\"G2316\"* both|strong=\"G2532\"* bring|strong=\"G5461\"* to|strong=\"G2532\"* light|strong=\"G5461\"* the|strong=\"G2532\"* hidden|strong=\"G2927\"* things|strong=\"G3588\"* of|strong=\"G2316\"* darkness|strong=\"G4655\"* and|strong=\"G2532\"* reveal|strong=\"G5319\"* the|strong=\"G2532\"* counsels|strong=\"G1012\"* of|strong=\"G2316\"* the|strong=\"G2532\"* hearts|strong=\"G2588\"*. Then|strong=\"G2532\"* each|strong=\"G1538\"* man|strong=\"G5100\"* will|strong=\"G2316\"* get|strong=\"G1096\"* his|strong=\"G2532\"* praise|strong=\"G1868\"* from|strong=\"G2064\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"G1161\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, brothers, I|strong=\"G1473\"* have|strong=\"G2532\"* in|strong=\"G1722\"* a|strong=\"G2532\"* figure transferred|strong=\"G3345\"* to|strong=\"G1519\"* myself|strong=\"G1683\"* and|strong=\"G2532\"* Apollos for|strong=\"G1519\"* your|strong=\"G1223\"* sakes|strong=\"G1223\"*, that|strong=\"G2443\"* in|strong=\"G1722\"* us|strong=\"G1519\"* you|strong=\"G5210\"* might|strong=\"G2532\"* learn|strong=\"G3129\"* not|strong=\"G3361\"* to|strong=\"G1519\"* think beyond|strong=\"G5228\"* the|strong=\"G1722\"* things|strong=\"G3778\"* which|strong=\"G3739\"* are|strong=\"G3588\"* written|strong=\"G1125\"*, that|strong=\"G2443\"* none|strong=\"G3361\"* of|strong=\"G1223\"* you|strong=\"G5210\"* be|strong=\"G2532\"* puffed up|strong=\"G5448\"* against|strong=\"G2596\"* one|strong=\"G1520\"* another|strong=\"G2087\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* who|strong=\"G3739\"* makes you|strong=\"G4771\"* different? And|strong=\"G2532\"* what|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G4771\"* have|strong=\"G2192\"* that|strong=\"G3739\"* you|strong=\"G4771\"* didn’t receive|strong=\"G2983\"*? But|strong=\"G1161\"* if|strong=\"G1487\"* you|strong=\"G4771\"* did|strong=\"G2532\"* receive|strong=\"G2983\"* it|strong=\"G2532\"*, why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G4771\"* boast|strong=\"G2744\"* as|strong=\"G5613\"* if|strong=\"G1487\"* you|strong=\"G4771\"* had|strong=\"G2192\"* not|strong=\"G3756\"* received|strong=\"G2983\"* it|strong=\"G2532\"*?" + }, + { + "verseNum": 8, + "text": "You|strong=\"G5210\"* are|strong=\"G1510\"* already|strong=\"G2235\"* filled|strong=\"G2880\"*. You|strong=\"G5210\"* have|strong=\"G2532\"* already|strong=\"G2235\"* become|strong=\"G1510\"* rich|strong=\"G4147\"*. You|strong=\"G5210\"* have|strong=\"G2532\"* come|strong=\"G1510\"* to|strong=\"G2443\"* reign|strong=\"G4821\"* without|strong=\"G5565\"* us|strong=\"G2249\"*. Yes, and|strong=\"G2532\"* I|strong=\"G1473\"* wish|strong=\"G3785\"* that|strong=\"G2443\"* you|strong=\"G5210\"* did|strong=\"G2532\"* reign|strong=\"G4821\"*, that|strong=\"G2443\"* we|strong=\"G2249\"* also|strong=\"G2532\"* might|strong=\"G2532\"* reign|strong=\"G4821\"* with|strong=\"G2532\"* you|strong=\"G5210\"*!" + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* think|strong=\"G1380\"* that|strong=\"G3754\"* God|strong=\"G2316\"* has|strong=\"G2316\"* displayed us|strong=\"G2249\"*, the|strong=\"G2532\"* apostles, last|strong=\"G2078\"* of|strong=\"G2316\"* all|strong=\"G2532\"*, like|strong=\"G5613\"* men|strong=\"G3588\"* sentenced to|strong=\"G2532\"* death|strong=\"G1935\"*. For|strong=\"G1063\"* we|strong=\"G2249\"* are|strong=\"G3588\"* made|strong=\"G1096\"* a|strong=\"G1096\"* spectacle|strong=\"G2302\"* to|strong=\"G2532\"* the|strong=\"G2532\"* world|strong=\"G2889\"*, both|strong=\"G2532\"* to|strong=\"G2532\"* angels and|strong=\"G2532\"* men|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "We|strong=\"G2249\"* are|strong=\"G2249\"* fools|strong=\"G3474\"* for|strong=\"G1223\"* Christ|strong=\"G5547\"*’s sake|strong=\"G1223\"*, but|strong=\"G1161\"* you|strong=\"G5210\"* are|strong=\"G2249\"* wise|strong=\"G5429\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*. We|strong=\"G2249\"* are|strong=\"G2249\"* weak, but|strong=\"G1161\"* you|strong=\"G5210\"* are|strong=\"G2249\"* strong|strong=\"G2478\"*. You|strong=\"G5210\"* have|strong=\"G1473\"* honor, but|strong=\"G1161\"* we|strong=\"G2249\"* have|strong=\"G1473\"* dishonor." + }, + { + "verseNum": 11, + "text": "Even|strong=\"G2532\"* to|strong=\"G2532\"* this|strong=\"G3588\"* present hour|strong=\"G5610\"* we|strong=\"G2532\"* hunger|strong=\"G3983\"*, thirst|strong=\"G1372\"*, are|strong=\"G3588\"* naked|strong=\"G1130\"*, are|strong=\"G3588\"* beaten, and|strong=\"G2532\"* have|strong=\"G2532\"* no|strong=\"G2532\"* certain|strong=\"G2532\"* dwelling place." + }, + { + "verseNum": 12, + "text": "We|strong=\"G2532\"* toil|strong=\"G2872\"*, working|strong=\"G2038\"* with|strong=\"G2532\"* our|strong=\"G2532\"* own|strong=\"G2398\"* hands|strong=\"G5495\"*. When|strong=\"G2532\"* people|strong=\"G3588\"* curse us|strong=\"G1377\"*, we|strong=\"G2532\"* bless|strong=\"G2127\"*. Being|strong=\"G2532\"* persecuted|strong=\"G1377\"*, we|strong=\"G2532\"* endure." + }, + { + "verseNum": 13, + "text": "Being|strong=\"G1096\"* defamed, we|strong=\"G5613\"* entreat|strong=\"G3870\"*. We|strong=\"G5613\"* are|strong=\"G3588\"* made|strong=\"G1096\"* as|strong=\"G5613\"* the|strong=\"G3956\"* filth|strong=\"G4027\"* of|strong=\"G3956\"* the|strong=\"G3956\"* world|strong=\"G2889\"*, the|strong=\"G3956\"* dirt|strong=\"G4027\"* wiped off by|strong=\"G3956\"* all|strong=\"G3956\"*, even|strong=\"G2193\"* until|strong=\"G2193\"* now|strong=\"G1096\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"G1473\"* don’t write|strong=\"G1125\"* these|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G3756\"* shame|strong=\"G1788\"* you|strong=\"G5210\"*, but|strong=\"G3778\"* to|strong=\"G3756\"* admonish|strong=\"G3560\"* you|strong=\"G5210\"* as|strong=\"G5613\"* my|strong=\"G1473\"* beloved children|strong=\"G5043\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* though|strong=\"G1437\"* you|strong=\"G5210\"* have|strong=\"G2192\"* ten|strong=\"G3463\"* thousand|strong=\"G3463\"* tutors|strong=\"G3807\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*, you|strong=\"G5210\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* many|strong=\"G4183\"* fathers|strong=\"G3962\"*. For|strong=\"G1063\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, I|strong=\"G1473\"* became|strong=\"G1080\"* your|strong=\"G1223\"* father|strong=\"G3962\"* through|strong=\"G1223\"* the|strong=\"G1722\"* Good|strong=\"G1223\"* News|strong=\"G2098\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"G1473\"* beg|strong=\"G3870\"* you|strong=\"G5210\"* therefore|strong=\"G3767\"*, be|strong=\"G1096\"* imitators|strong=\"G3402\"* of|strong=\"G1096\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 17, + "text": "Because|strong=\"G1223\"* of|strong=\"G1223\"* this|strong=\"G3778\"* I|strong=\"G1473\"* have|strong=\"G2532\"* sent|strong=\"G3992\"* Timothy|strong=\"G5095\"* to|strong=\"G2532\"* you|strong=\"G5210\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* my|strong=\"G1722\"* beloved and|strong=\"G2532\"* faithful|strong=\"G4103\"* child|strong=\"G5043\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, who|strong=\"G3739\"* will|strong=\"G1510\"* remind you|strong=\"G5210\"* of|strong=\"G1223\"* my|strong=\"G1722\"* ways|strong=\"G3598\"* which|strong=\"G3739\"* are|strong=\"G1510\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* I|strong=\"G1473\"* teach|strong=\"G1321\"* everywhere|strong=\"G3837\"* in|strong=\"G1722\"* every|strong=\"G3956\"* assembly|strong=\"G1577\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"G1161\"* some|strong=\"G5100\"* are|strong=\"G5210\"* puffed up|strong=\"G5448\"*, as|strong=\"G5613\"* though|strong=\"G5613\"* I|strong=\"G1473\"* were|strong=\"G5613\"* not|strong=\"G3361\"* coming|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"G1161\"* I|strong=\"G2532\"* will|strong=\"G2309\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"* shortly|strong=\"G5030\"*, if|strong=\"G1437\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* is|strong=\"G3588\"* willing|strong=\"G2309\"*. And|strong=\"G2532\"* I|strong=\"G2532\"* will|strong=\"G2309\"* know|strong=\"G1097\"*, not|strong=\"G3756\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* puffed|strong=\"G3756\"* up|strong=\"G5448\"*, but|strong=\"G1161\"* the|strong=\"G2532\"* power|strong=\"G1411\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* God|strong=\"G2316\"*’s Kingdom is|strong=\"G3588\"* not|strong=\"G3756\"* in|strong=\"G1722\"* word|strong=\"G3056\"*, but|strong=\"G1063\"* in|strong=\"G1722\"* power|strong=\"G1411\"*." + }, + { + "verseNum": 21, + "text": "What|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G5210\"* want|strong=\"G2309\"*? Shall|strong=\"G5101\"* I|strong=\"G2309\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"* with|strong=\"G1722\"* a|strong=\"G1722\"* rod|strong=\"G4464\"*, or|strong=\"G2228\"* in|strong=\"G1722\"* love|strong=\"G2309\"* and|strong=\"G5037\"* a|strong=\"G1722\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* gentleness|strong=\"G4240\"*?" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "It|strong=\"G2532\"* is|strong=\"G3588\"* actually|strong=\"G3654\"* reported that|strong=\"G3588\"* there|strong=\"G2532\"* is|strong=\"G3588\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* such|strong=\"G5108\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"* as|strong=\"G1722\"* is|strong=\"G3588\"* not|strong=\"G3761\"* even|strong=\"G2532\"* named among|strong=\"G1722\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"*, that|strong=\"G3588\"* one|strong=\"G5100\"* has|strong=\"G2192\"* his|strong=\"G1722\"* father|strong=\"G3962\"*’s|strong=\"G2192\"* wife|strong=\"G1135\"*." + }, + { + "verseNum": 2, + "text": "You|strong=\"G5210\"* are|strong=\"G1510\"* arrogant|strong=\"G5448\"*, and|strong=\"G2532\"* didn’t|strong=\"G3588\"* mourn|strong=\"G3996\"* instead|strong=\"G3123\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* who|strong=\"G3588\"* had|strong=\"G2532\"* done|strong=\"G4160\"* this|strong=\"G3778\"* deed|strong=\"G2041\"* might|strong=\"G2532\"* be|strong=\"G1510\"* removed from|strong=\"G1537\"* among|strong=\"G1537\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* most certainly|strong=\"G3303\"*, as|strong=\"G5613\"* being|strong=\"G1161\"* absent in|strong=\"G1161\"* body|strong=\"G4983\"* but|strong=\"G1161\"* present|strong=\"G3918\"* in|strong=\"G1161\"* spirit|strong=\"G4151\"*, have|strong=\"G1473\"* already|strong=\"G2235\"*, as|strong=\"G5613\"* though|strong=\"G5613\"* I|strong=\"G1473\"* were|strong=\"G3588\"* present|strong=\"G3918\"*, judged|strong=\"G2919\"* him|strong=\"G3588\"* who|strong=\"G3588\"* has|strong=\"G3778\"* done|strong=\"G2716\"* this|strong=\"G3778\"* thing|strong=\"G3778\"*." + }, + { + "verseNum": 4, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G4151\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G2962\"*, when|strong=\"G2532\"* you|strong=\"G5210\"* are|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* with|strong=\"G1722\"* my|strong=\"G1699\"* spirit|strong=\"G4151\"* with|strong=\"G1722\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G4151\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G2962\"*," + }, + { + "verseNum": 5, + "text": "you|strong=\"G1722\"* are|strong=\"G3588\"* to|strong=\"G1519\"* deliver|strong=\"G3860\"* such|strong=\"G5108\"* a|strong=\"G1519\"* one|strong=\"G5108\"* to|strong=\"G1519\"* Satan|strong=\"G4567\"* for|strong=\"G1519\"* the|strong=\"G1722\"* destruction|strong=\"G3639\"* of|strong=\"G4151\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, that|strong=\"G2443\"* the|strong=\"G1722\"* spirit|strong=\"G4151\"* may|strong=\"G2443\"* be|strong=\"G1519\"* saved|strong=\"G4982\"* in|strong=\"G1722\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 6, + "text": "Your|strong=\"G3650\"* boasting|strong=\"G2745\"* is|strong=\"G3588\"* not|strong=\"G3756\"* good|strong=\"G2570\"*. Don’t|strong=\"G3588\"* you|strong=\"G5210\"* know|strong=\"G1492\"* that|strong=\"G3754\"* a|strong=\"G3756\"* little|strong=\"G3398\"* yeast|strong=\"G2219\"* leavens|strong=\"G2220\"* the|strong=\"G3588\"* whole|strong=\"G3650\"* lump|strong=\"G5445\"*?" + }, + { + "verseNum": 7, + "text": "Purge|strong=\"G1571\"* out|strong=\"G2532\"* the|strong=\"G2532\"* old|strong=\"G3820\"* yeast|strong=\"G2219\"*, that|strong=\"G2443\"* you|strong=\"G1510\"* may|strong=\"G2532\"* be|strong=\"G1510\"* a|strong=\"G2532\"* new|strong=\"G3501\"* lump|strong=\"G5445\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* you|strong=\"G1510\"* are|strong=\"G1510\"* unleavened. For|strong=\"G1063\"* indeed|strong=\"G2532\"* Christ|strong=\"G5547\"*, our|strong=\"G2532\"* Passover|strong=\"G3957\"*, has|strong=\"G5547\"* been|strong=\"G1510\"* sacrificed|strong=\"G2380\"* in|strong=\"G2532\"* our|strong=\"G2532\"* place|strong=\"G1473\"*." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G5620\"* let|strong=\"G2532\"*’s keep|strong=\"G3361\"* the|strong=\"G1722\"* feast|strong=\"G1858\"*, not|strong=\"G3361\"* with|strong=\"G1722\"* old|strong=\"G3820\"* yeast|strong=\"G2219\"*, neither|strong=\"G3366\"* with|strong=\"G1722\"* the|strong=\"G1722\"* yeast|strong=\"G2219\"* of|strong=\"G2532\"* malice|strong=\"G2549\"* and|strong=\"G2532\"* wickedness|strong=\"G4189\"*, but|strong=\"G2532\"* with|strong=\"G1722\"* the|strong=\"G1722\"* unleavened bread of|strong=\"G2532\"* sincerity|strong=\"G1505\"* and|strong=\"G2532\"* truth." + }, + { + "verseNum": 9, + "text": "I|strong=\"G1722\"* wrote|strong=\"G1125\"* to|strong=\"G1722\"* you|strong=\"G5210\"* in|strong=\"G1722\"* my|strong=\"G1722\"* letter|strong=\"G1992\"* to|strong=\"G1722\"* have|strong=\"G5210\"* no|strong=\"G3361\"* company|strong=\"G4874\"* with|strong=\"G1722\"* sexual sinners;" + }, + { + "verseNum": 10, + "text": "yet|strong=\"G2532\"* not|strong=\"G3756\"* at|strong=\"G1537\"* all|strong=\"G2532\"* meaning with|strong=\"G1537\"* the|strong=\"G2532\"* sexual sinners of|strong=\"G1537\"* this|strong=\"G3778\"* world|strong=\"G2889\"*, or|strong=\"G2228\"* with|strong=\"G1537\"* the|strong=\"G2532\"* covetous|strong=\"G4123\"* and|strong=\"G2532\"* extortionists, or|strong=\"G2228\"* with|strong=\"G1537\"* idolaters|strong=\"G1496\"*, for|strong=\"G2532\"* then|strong=\"G2532\"* you|strong=\"G2532\"* would|strong=\"G2532\"* have|strong=\"G2532\"* to|strong=\"G2532\"* leave|strong=\"G1831\"* the|strong=\"G2532\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* as|strong=\"G1161\"* it|strong=\"G1161\"* is|strong=\"G1510\"*, I|strong=\"G1161\"* wrote|strong=\"G1125\"* to|strong=\"G5100\"* you|strong=\"G5210\"* not|strong=\"G3361\"* to|strong=\"G5100\"* associate|strong=\"G4874\"* with|strong=\"G3588\"* anyone|strong=\"G5100\"* who|strong=\"G3588\"* is|strong=\"G1510\"* called|strong=\"G3687\"* a|strong=\"G1510\"* brother who|strong=\"G3588\"* is|strong=\"G1510\"* a|strong=\"G1510\"* sexual sinner, or|strong=\"G2228\"* covetous|strong=\"G4123\"*, or|strong=\"G2228\"* an|strong=\"G2228\"* idolater|strong=\"G1496\"*, or|strong=\"G2228\"* a|strong=\"G1510\"* slanderer, or|strong=\"G2228\"* a|strong=\"G1510\"* drunkard|strong=\"G3183\"*, or|strong=\"G2228\"* an|strong=\"G2228\"* extortionist. Don’t|strong=\"G3588\"* even|strong=\"G1161\"* eat|strong=\"G4906\"* with|strong=\"G3588\"* such|strong=\"G5108\"* a|strong=\"G1510\"* person|strong=\"G5108\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* what|strong=\"G5101\"* do|strong=\"G5101\"* I|strong=\"G1473\"* have|strong=\"G1473\"* to|strong=\"G5101\"* do|strong=\"G5101\"* with|strong=\"G3588\"* also|strong=\"G4771\"* judging|strong=\"G2919\"* those|strong=\"G3588\"* who|strong=\"G5101\"* are|strong=\"G3588\"* outside|strong=\"G1854\"*? Don’t|strong=\"G3588\"* you|strong=\"G5210\"* judge|strong=\"G2919\"* those|strong=\"G3588\"* who|strong=\"G5101\"* are|strong=\"G3588\"* within|strong=\"G2080\"*?" + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* outside|strong=\"G1854\"*, God|strong=\"G2316\"* judges|strong=\"G2919\"*. “Put away|strong=\"G1854\"* the|strong=\"G1537\"* wicked|strong=\"G4190\"* man|strong=\"G4190\"* from|strong=\"G1537\"* among|strong=\"G1537\"* yourselves|strong=\"G4771\"*.”+ 5:13 Deuteronomy 17:7; 19:19; 21:21; 22:21; 24:7*" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Dare|strong=\"G5111\"* any|strong=\"G5100\"* of|strong=\"G2532\"* you|strong=\"G5210\"*, having|strong=\"G2192\"* a|strong=\"G2192\"* matter|strong=\"G4229\"* against|strong=\"G1909\"* his|strong=\"G1909\"* neighbor|strong=\"G2087\"*, go|strong=\"G2192\"* to|strong=\"G4314\"* law|strong=\"G2919\"* before|strong=\"G1909\"* the|strong=\"G2532\"* unrighteous, and|strong=\"G2532\"* not|strong=\"G3780\"* before|strong=\"G1909\"* the|strong=\"G2532\"* saints?" + }, + { + "verseNum": 2, + "text": "Don’t|strong=\"G3588\"* you|strong=\"G5210\"* know|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G1722\"* saints will|strong=\"G1510\"* judge|strong=\"G2919\"* the|strong=\"G1722\"* world|strong=\"G2889\"*? And|strong=\"G2532\"* if|strong=\"G1487\"* the|strong=\"G1722\"* world|strong=\"G2889\"* is|strong=\"G1510\"* judged|strong=\"G2919\"* by|strong=\"G1722\"* you|strong=\"G5210\"*, are|strong=\"G1510\"* you|strong=\"G5210\"* unworthy|strong=\"G3756\"* to|strong=\"G2532\"* judge|strong=\"G2919\"* the|strong=\"G1722\"* smallest|strong=\"G1646\"* matters|strong=\"G1646\"*?" + }, + { + "verseNum": 3, + "text": "Don’t you|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* we|strong=\"G3754\"* will|strong=\"G3748\"* judge|strong=\"G2919\"* angels? How|strong=\"G3754\"* much|strong=\"G3386\"* more|strong=\"G1492\"*, things|strong=\"G3748\"* that|strong=\"G3754\"* pertain to|strong=\"G3756\"* this|strong=\"G3748\"* life?" + }, + { + "verseNum": 4, + "text": "If|strong=\"G1437\"* then|strong=\"G3767\"* you|strong=\"G1437\"* have|strong=\"G2192\"* to|strong=\"G1722\"* judge|strong=\"G2922\"* things|strong=\"G3778\"* pertaining to|strong=\"G1722\"* this|strong=\"G3778\"* life, do|strong=\"G2192\"* you|strong=\"G1437\"* set|strong=\"G2523\"* them|strong=\"G3588\"* to|strong=\"G1722\"* judge|strong=\"G2922\"* who|strong=\"G3588\"* are|strong=\"G3588\"* of|strong=\"G1577\"* no|strong=\"G3588\"* account|strong=\"G1848\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"*?" + }, + { + "verseNum": 5, + "text": "I|strong=\"G3739\"* say|strong=\"G3004\"* this|strong=\"G3588\"* to|strong=\"G4314\"* move you|strong=\"G5210\"* to|strong=\"G4314\"* shame|strong=\"G1791\"*. Isn’t|strong=\"G3588\"* there|strong=\"G1762\"* even|strong=\"G3739\"* one|strong=\"G3762\"* wise|strong=\"G4680\"* man|strong=\"G3762\"* among|strong=\"G1722\"* you|strong=\"G5210\"* who|strong=\"G3739\"* would|strong=\"G1722\"* be|strong=\"G3756\"* able|strong=\"G1410\"* to|strong=\"G4314\"* decide|strong=\"G1252\"* between|strong=\"G3319\"* his|strong=\"G1722\"* brothers?" + }, + { + "verseNum": 6, + "text": "But|strong=\"G2532\"* brother goes|strong=\"G2919\"* to|strong=\"G2532\"* law|strong=\"G2919\"* with|strong=\"G3326\"* brother, and|strong=\"G2532\"* that|strong=\"G2532\"* before|strong=\"G1909\"* unbelievers!" + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"G3767\"* it|strong=\"G3754\"* is|strong=\"G1510\"* already|strong=\"G2235\"* altogether a|strong=\"G2192\"* defect in|strong=\"G1223\"* you|strong=\"G5210\"* that|strong=\"G3754\"* you|strong=\"G5210\"* have|strong=\"G2192\"* lawsuits|strong=\"G2917\"* one|strong=\"G1438\"* with|strong=\"G3326\"* another|strong=\"G1438\"*. Why|strong=\"G5101\"* not|strong=\"G3780\"* rather|strong=\"G3123\"* be|strong=\"G1510\"* wronged? Why|strong=\"G5101\"* not|strong=\"G3780\"* rather|strong=\"G3123\"* be|strong=\"G1510\"* defrauded?" + }, + { + "verseNum": 8, + "text": "No|strong=\"G2532\"*, but|strong=\"G2532\"* you|strong=\"G5210\"* yourselves|strong=\"G4771\"* do|strong=\"G2532\"* wrong and|strong=\"G2532\"* defraud, and|strong=\"G2532\"* that|strong=\"G2532\"* against your|strong=\"G2532\"* brothers." + }, + { + "verseNum": 9, + "text": "Or|strong=\"G2228\"* don’t you|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G3754\"* unrighteous will|strong=\"G2316\"* not|strong=\"G3756\"* inherit|strong=\"G2816\"* God|strong=\"G2316\"*’s Kingdom? Don’t be|strong=\"G3756\"* deceived|strong=\"G4105\"*. Neither|strong=\"G3777\"* the|strong=\"G3754\"* sexually immoral|strong=\"G4205\"*, nor|strong=\"G3777\"* idolaters|strong=\"G1496\"*, nor|strong=\"G3777\"* adulterers|strong=\"G3432\"*, nor|strong=\"G3777\"* male prostitutes, nor|strong=\"G3777\"* homosexuals," + }, + { + "verseNum": 10, + "text": "nor|strong=\"G3777\"* thieves|strong=\"G2812\"*, nor|strong=\"G3777\"* covetous|strong=\"G4123\"*, nor|strong=\"G3777\"* drunkards|strong=\"G3183\"*, nor|strong=\"G3777\"* slanderers, nor|strong=\"G3777\"* extortionists, will|strong=\"G2316\"* inherit|strong=\"G2816\"* God|strong=\"G2316\"*’s Kingdom." + }, + { + "verseNum": 11, + "text": "Some|strong=\"G5100\"* of|strong=\"G4151\"* you|strong=\"G1722\"* were|strong=\"G1510\"* such|strong=\"G3778\"*, but|strong=\"G2532\"* you|strong=\"G1722\"* were|strong=\"G1510\"* washed. You|strong=\"G1722\"* were|strong=\"G1510\"* sanctified. You|strong=\"G1722\"* were|strong=\"G1510\"* justified|strong=\"G1344\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* our|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 12, + "text": "“All|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3956\"* lawful|strong=\"G1832\"* for|strong=\"G1832\"* me|strong=\"G1473\"*,” but|strong=\"G1473\"* not|strong=\"G3756\"* all|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3956\"* expedient|strong=\"G4851\"*. “All|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3956\"* lawful|strong=\"G1832\"* for|strong=\"G1832\"* me|strong=\"G1473\"*,” but|strong=\"G1473\"* I|strong=\"G1473\"* will|strong=\"G1473\"* not|strong=\"G3756\"* be|strong=\"G3756\"* brought|strong=\"G4851\"* under|strong=\"G5259\"* the|strong=\"G3956\"* power|strong=\"G1850\"* of|strong=\"G5259\"* anything|strong=\"G5100\"*." + }, + { + "verseNum": 13, + "text": "“Foods|strong=\"G1033\"* for|strong=\"G1161\"* the|strong=\"G2532\"* belly|strong=\"G2836\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* belly|strong=\"G2836\"* for|strong=\"G1161\"* foods|strong=\"G1033\"*,” but|strong=\"G1161\"* God|strong=\"G2316\"* will|strong=\"G2316\"* bring|strong=\"G2532\"* to|strong=\"G2532\"* nothing|strong=\"G3756\"* both|strong=\"G2532\"* it|strong=\"G2532\"* and|strong=\"G2532\"* them|strong=\"G3588\"*. But|strong=\"G1161\"* the|strong=\"G2532\"* body|strong=\"G4983\"* is|strong=\"G3588\"* not|strong=\"G3756\"* for|strong=\"G1161\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*, but|strong=\"G1161\"* for|strong=\"G1161\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* for|strong=\"G1161\"* the|strong=\"G2532\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"G1161\"* God|strong=\"G2316\"* raised|strong=\"G1453\"* up|strong=\"G1453\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, and|strong=\"G2532\"* will|strong=\"G2316\"* also|strong=\"G2532\"* raise|strong=\"G1453\"* us|strong=\"G2249\"* up|strong=\"G1453\"* by|strong=\"G1223\"* his|strong=\"G1223\"* power|strong=\"G1411\"*." + }, + { + "verseNum": 15, + "text": "Don’t|strong=\"G3588\"* you|strong=\"G5210\"* know|strong=\"G1492\"* that|strong=\"G3754\"* your|strong=\"G4160\"* bodies|strong=\"G4983\"* are|strong=\"G1510\"* members|strong=\"G3196\"* of|strong=\"G4983\"* Christ|strong=\"G5547\"*? Shall|strong=\"G3748\"* I|strong=\"G3754\"* then|strong=\"G3767\"* take|strong=\"G1096\"* the|strong=\"G3588\"* members|strong=\"G3196\"* of|strong=\"G4983\"* Christ|strong=\"G5547\"* and|strong=\"G3767\"* make|strong=\"G4160\"* them|strong=\"G3588\"* members|strong=\"G3196\"* of|strong=\"G4983\"* a|strong=\"G1096\"* prostitute|strong=\"G4204\"*? May|strong=\"G5547\"* it|strong=\"G3754\"* never|strong=\"G3756\"* be|strong=\"G1096\"*!" + }, + { + "verseNum": 16, + "text": "Or|strong=\"G2228\"* don’t|strong=\"G3588\"* you|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* he|strong=\"G3754\"* who|strong=\"G3588\"* is|strong=\"G1510\"* joined|strong=\"G2853\"* to|strong=\"G1519\"* a|strong=\"G1519\"* prostitute|strong=\"G4204\"* is|strong=\"G1510\"* one|strong=\"G1520\"* body|strong=\"G4983\"*? For|strong=\"G1063\"*, “The|strong=\"G1519\"* two|strong=\"G1417\"*”, he|strong=\"G3754\"* says|strong=\"G5346\"*, “will|strong=\"G1510\"* become|strong=\"G1510\"* one|strong=\"G1520\"* flesh|strong=\"G4561\"*.”+ 6:16 Genesis 2:24*" + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3588\"* is|strong=\"G1510\"* joined|strong=\"G2853\"* to|strong=\"G1161\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"* is|strong=\"G1510\"* one|strong=\"G1520\"* spirit|strong=\"G4151\"*." + }, + { + "verseNum": 18, + "text": "Flee|strong=\"G5343\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*! “Every|strong=\"G3956\"* sin that|strong=\"G3739\"* a|strong=\"G1519\"* man|strong=\"G3956\"* does|strong=\"G4160\"* is|strong=\"G1510\"* outside|strong=\"G1622\"* the|strong=\"G1519\"* body|strong=\"G4983\"*,” but|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3739\"* commits|strong=\"G4160\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"* sins against|strong=\"G1519\"* his|strong=\"G3956\"* own|strong=\"G2398\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 19, + "text": "Or|strong=\"G2228\"* don’t|strong=\"G3588\"* you|strong=\"G5210\"* know|strong=\"G1492\"* that|strong=\"G3754\"* your|strong=\"G2192\"* body|strong=\"G4983\"* is|strong=\"G1510\"* a|strong=\"G2192\"* temple|strong=\"G3485\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* who|strong=\"G3739\"* is|strong=\"G1510\"* in|strong=\"G1722\"* you|strong=\"G5210\"*, whom|strong=\"G3739\"* you|strong=\"G5210\"* have|strong=\"G2192\"* from|strong=\"G2532\"* God|strong=\"G2316\"*? You|strong=\"G5210\"* are|strong=\"G1510\"* not|strong=\"G3756\"* your|strong=\"G2192\"* own|strong=\"G1438\"*," + }, + { + "verseNum": 20, + "text": "for|strong=\"G1063\"* you|strong=\"G5210\"* were|strong=\"G3588\"* bought with|strong=\"G1722\"* a|strong=\"G1722\"* price|strong=\"G5092\"*. Therefore|strong=\"G1211\"* glorify|strong=\"G1392\"* God|strong=\"G2316\"* in|strong=\"G1722\"* your|strong=\"G1392\"* body|strong=\"G4983\"* and|strong=\"G2316\"* in|strong=\"G1722\"* your|strong=\"G1392\"* spirit|strong=\"G3588\"*, which|strong=\"G3588\"* are|strong=\"G3588\"* God|strong=\"G2316\"*’s." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* concerning|strong=\"G4012\"* the|strong=\"G1161\"* things|strong=\"G3739\"* about|strong=\"G4012\"* which|strong=\"G3739\"* you|strong=\"G3739\"* wrote|strong=\"G1125\"* to|strong=\"G3361\"* me: it|strong=\"G1161\"* is|strong=\"G3739\"* good|strong=\"G2570\"* for|strong=\"G4012\"* a|strong=\"G1161\"* man|strong=\"G3361\"* not|strong=\"G3361\"* to|strong=\"G3361\"* touch a|strong=\"G1161\"* woman|strong=\"G1135\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"G1161\"*, because|strong=\"G1223\"* of|strong=\"G1223\"* sexual|strong=\"G4202\"* immoralities|strong=\"G4202\"*, let|strong=\"G1161\"* each|strong=\"G1538\"* man|strong=\"G1538\"* have|strong=\"G2192\"* his|strong=\"G1438\"* own|strong=\"G2398\"* wife|strong=\"G1135\"*, and|strong=\"G2532\"* let|strong=\"G1161\"* each|strong=\"G1538\"* woman|strong=\"G1135\"* have|strong=\"G2192\"* her|strong=\"G1438\"* own|strong=\"G2398\"* husband." + }, + { + "verseNum": 3, + "text": "Let|strong=\"G1161\"* the|strong=\"G2532\"* husband give his|strong=\"G2532\"* wife|strong=\"G1135\"* the|strong=\"G2532\"* affection owed her|strong=\"G3588\"*,+ 7:3 NU and TR have “what is owed her” instead of “the affection owed her”.* and|strong=\"G2532\"* likewise|strong=\"G3668\"* also|strong=\"G2532\"* the|strong=\"G2532\"* wife|strong=\"G1135\"* her|strong=\"G3588\"* husband." + }, + { + "verseNum": 4, + "text": "The|strong=\"G2532\"* wife|strong=\"G1135\"* doesn’t|strong=\"G3588\"* have|strong=\"G2532\"* authority|strong=\"G1850\"* over|strong=\"G1850\"* her|strong=\"G3588\"* own|strong=\"G2398\"* body|strong=\"G4983\"*, but|strong=\"G1161\"* the|strong=\"G2532\"* husband does. Likewise|strong=\"G3668\"* also|strong=\"G2532\"* the|strong=\"G2532\"* husband doesn’t|strong=\"G3588\"* have|strong=\"G2532\"* authority|strong=\"G1850\"* over|strong=\"G1850\"* his|strong=\"G2398\"* own|strong=\"G2398\"* body|strong=\"G4983\"*, but|strong=\"G1161\"* the|strong=\"G2532\"* wife|strong=\"G1135\"* does." + }, + { + "verseNum": 5, + "text": "Don’t|strong=\"G3588\"* deprive one|strong=\"G3588\"* another|strong=\"G3825\"*, unless|strong=\"G1487\"* it|strong=\"G2532\"* is|strong=\"G1510\"* by|strong=\"G1223\"* consent|strong=\"G4859\"* for|strong=\"G1223\"* a|strong=\"G2532\"* season|strong=\"G2540\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* give yourselves|strong=\"G4771\"* to|strong=\"G4314\"* fasting and|strong=\"G2532\"* prayer|strong=\"G4335\"*, and|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G1510\"* together|strong=\"G1909\"* again|strong=\"G3825\"*, that|strong=\"G2443\"* Satan|strong=\"G4567\"* doesn’t|strong=\"G3588\"* tempt|strong=\"G3985\"* you|strong=\"G5210\"* because|strong=\"G1223\"* of|strong=\"G1537\"* your|strong=\"G1223\"* lack of|strong=\"G1537\"* self-control." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* this|strong=\"G3778\"* I|strong=\"G1161\"* say|strong=\"G3004\"* by|strong=\"G2596\"* way|strong=\"G2596\"* of|strong=\"G2596\"* concession|strong=\"G4774\"*, not|strong=\"G3756\"* of|strong=\"G2596\"* commandment|strong=\"G2003\"*." + }, + { + "verseNum": 7, + "text": "Yet|strong=\"G2532\"* I|strong=\"G2532\"* wish|strong=\"G2309\"* that|strong=\"G3588\"* all|strong=\"G3956\"* men|strong=\"G3956\"* were|strong=\"G1510\"* like|strong=\"G5613\"* me|strong=\"G1683\"*. However|strong=\"G1161\"*, each|strong=\"G1538\"* man|strong=\"G1538\"* has|strong=\"G2192\"* his|strong=\"G3956\"* own|strong=\"G2398\"* gift|strong=\"G5486\"* from|strong=\"G1537\"* God|strong=\"G2316\"*, one|strong=\"G1538\"* of|strong=\"G1537\"* this|strong=\"G3588\"* kind|strong=\"G3956\"*, and|strong=\"G2532\"* another|strong=\"G3588\"* of|strong=\"G1537\"* that|strong=\"G3588\"* kind|strong=\"G3956\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* I|strong=\"G2532\"* say|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* unmarried and|strong=\"G2532\"* to|strong=\"G2532\"* widows|strong=\"G5503\"*, it|strong=\"G2532\"* is|strong=\"G3588\"* good|strong=\"G2570\"* for|strong=\"G1161\"* them|strong=\"G3588\"* if|strong=\"G1437\"* they|strong=\"G2532\"* remain|strong=\"G3306\"* even|strong=\"G2532\"* as|strong=\"G5613\"* I|strong=\"G2532\"* am|strong=\"G2532\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* they|strong=\"G1161\"* don’t have|strong=\"G1510\"* self-control|strong=\"G1467\"*, let|strong=\"G1161\"* them|strong=\"G1510\"* marry|strong=\"G1060\"*. For|strong=\"G1063\"* it|strong=\"G1161\"*’s better|strong=\"G2909\"* to|strong=\"G3756\"* marry|strong=\"G1060\"* than|strong=\"G2228\"* to|strong=\"G3756\"* burn|strong=\"G4448\"* with|strong=\"G3756\"* passion." + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* to|strong=\"G3756\"* the|strong=\"G1161\"* married|strong=\"G1060\"* I|strong=\"G1473\"* command|strong=\"G3853\"*—not|strong=\"G3756\"* I|strong=\"G1473\"*, but|strong=\"G1161\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"*—that|strong=\"G3588\"* the|strong=\"G1161\"* wife|strong=\"G1135\"* not|strong=\"G3756\"* leave|strong=\"G5563\"* her|strong=\"G3588\"* husband" + }, + { + "verseNum": 11, + "text": "(but|strong=\"G1161\"* if|strong=\"G1437\"* she|strong=\"G2532\"* departs, let|strong=\"G1161\"* her|strong=\"G1437\"* remain|strong=\"G3306\"* unmarried, or|strong=\"G2228\"* else|strong=\"G2228\"* be|strong=\"G2532\"* reconciled|strong=\"G2644\"* to|strong=\"G2532\"* her|strong=\"G1437\"* husband), and|strong=\"G2532\"* that|strong=\"G3588\"* the|strong=\"G2532\"* husband not|strong=\"G3361\"* leave|strong=\"G5563\"* his|strong=\"G2532\"* wife|strong=\"G1135\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* to|strong=\"G2532\"* the|strong=\"G2532\"* rest|strong=\"G3062\"* I|strong=\"G1473\"*—not|strong=\"G3756\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*—say|strong=\"G3004\"*, if|strong=\"G1487\"* any|strong=\"G5100\"* brother has|strong=\"G2192\"* an|strong=\"G2192\"* unbelieving wife|strong=\"G1135\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* is|strong=\"G3588\"* content to|strong=\"G2532\"* live|strong=\"G2532\"* with|strong=\"G3326\"* him|strong=\"G3588\"*, let|strong=\"G1161\"* him|strong=\"G3588\"* not|strong=\"G3756\"* leave her|strong=\"G1438\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"G2532\"* woman|strong=\"G1135\"* who|strong=\"G3588\"* has|strong=\"G2192\"* an|strong=\"G2192\"* unbelieving husband, and|strong=\"G2532\"* he|strong=\"G2532\"* is|strong=\"G3588\"* content to|strong=\"G2532\"* live|strong=\"G2532\"* with|strong=\"G3326\"* her|strong=\"G2192\"*, let|strong=\"G2192\"* her|strong=\"G2192\"* not|strong=\"G3361\"* leave her|strong=\"G2192\"* husband." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* unbelieving husband is|strong=\"G1510\"* sanctified in|strong=\"G1722\"* the|strong=\"G1722\"* wife|strong=\"G1135\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* unbelieving wife|strong=\"G1135\"* is|strong=\"G1510\"* sanctified in|strong=\"G1722\"* the|strong=\"G1722\"* husband. Otherwise|strong=\"G1893\"* your|strong=\"G2532\"* children|strong=\"G5043\"* would|strong=\"G2532\"* be|strong=\"G1510\"* unclean, but|strong=\"G1161\"* now|strong=\"G1161\"* they|strong=\"G2532\"* are|strong=\"G1510\"* holy." + }, + { + "verseNum": 15, + "text": "Yet|strong=\"G1161\"* if|strong=\"G1487\"* the|strong=\"G1722\"* unbeliever departs, let|strong=\"G1161\"* there|strong=\"G1161\"* be|strong=\"G3756\"* separation. The|strong=\"G1722\"* brother or|strong=\"G2228\"* the|strong=\"G1722\"* sister is|strong=\"G3588\"* not|strong=\"G3756\"* under|strong=\"G1722\"* bondage|strong=\"G1402\"* in|strong=\"G1722\"* such|strong=\"G5108\"* cases, but|strong=\"G1161\"* God|strong=\"G2316\"* has|strong=\"G2316\"* called|strong=\"G2564\"* us|strong=\"G2564\"* in|strong=\"G1722\"* peace|strong=\"G1515\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* how|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G1487\"* know|strong=\"G1492\"*, wife|strong=\"G1135\"*, whether|strong=\"G1487\"* you|strong=\"G1487\"* will|strong=\"G5101\"* save|strong=\"G4982\"* your|strong=\"G1487\"* husband? Or|strong=\"G2228\"* how|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G1487\"* know|strong=\"G1492\"*, husband, whether|strong=\"G1487\"* you|strong=\"G1487\"* will|strong=\"G5101\"* save|strong=\"G4982\"* your|strong=\"G1487\"* wife|strong=\"G1135\"*?" + }, + { + "verseNum": 17, + "text": "Only|strong=\"G1487\"*, as|strong=\"G5613\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* has|strong=\"G2316\"* distributed|strong=\"G3307\"* to|strong=\"G2532\"* each|strong=\"G1538\"* man|strong=\"G1538\"*, as|strong=\"G5613\"* God|strong=\"G2316\"* has|strong=\"G2316\"* called|strong=\"G2564\"* each|strong=\"G1538\"*, so|strong=\"G3779\"* let|strong=\"G2532\"* him|strong=\"G3588\"* walk|strong=\"G4043\"*. So|strong=\"G3779\"* I|strong=\"G2532\"* command in|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* assemblies|strong=\"G1577\"*." + }, + { + "verseNum": 18, + "text": "Was|strong=\"G2564\"* anyone|strong=\"G5100\"* called|strong=\"G2564\"* having|strong=\"G5100\"* been|strong=\"G3361\"* circumcised|strong=\"G4059\"*? Let him|strong=\"G2564\"* not|strong=\"G3361\"* become|strong=\"G3361\"* uncircumcised|strong=\"G1986\"*. Has|strong=\"G5100\"* anyone|strong=\"G5100\"* been|strong=\"G3361\"* called|strong=\"G2564\"* in|strong=\"G1722\"* uncircumcision? Let him|strong=\"G2564\"* not|strong=\"G3361\"* be|strong=\"G3361\"* circumcised|strong=\"G4059\"*." + }, + { + "verseNum": 19, + "text": "Circumcision|strong=\"G4061\"* is|strong=\"G1510\"* nothing|strong=\"G3762\"*, and|strong=\"G2532\"* uncircumcision is|strong=\"G1510\"* nothing|strong=\"G3762\"*, but|strong=\"G2532\"* what|strong=\"G3588\"* matters is|strong=\"G1510\"* keeping|strong=\"G5084\"* God|strong=\"G2316\"*’s commandments|strong=\"G1785\"*." + }, + { + "verseNum": 20, + "text": "Let|strong=\"G3306\"* each|strong=\"G1538\"* man|strong=\"G3778\"* stay|strong=\"G3306\"* in|strong=\"G1722\"* that|strong=\"G3739\"* calling|strong=\"G2821\"* in|strong=\"G1722\"* which|strong=\"G3739\"* he|strong=\"G3739\"* was|strong=\"G3588\"* called|strong=\"G2564\"*." + }, + { + "verseNum": 21, + "text": "Were|strong=\"G1096\"* you|strong=\"G4771\"* called|strong=\"G2564\"* being|strong=\"G1096\"* a|strong=\"G1096\"* bondservant? Don’t let|strong=\"G1096\"* that|strong=\"G2532\"* bother you|strong=\"G4771\"*, but|strong=\"G2532\"* if|strong=\"G1487\"* you|strong=\"G4771\"* get|strong=\"G1096\"* an|strong=\"G2532\"* opportunity to|strong=\"G2532\"* become|strong=\"G1096\"* free|strong=\"G1658\"*, use|strong=\"G5530\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"G1063\"* he|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G1510\"* called|strong=\"G2564\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* being|strong=\"G1510\"* a|strong=\"G1722\"* bondservant is|strong=\"G1510\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* free|strong=\"G1658\"* man|strong=\"G1658\"*. Likewise|strong=\"G3668\"* he|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G1510\"* called|strong=\"G2564\"* being|strong=\"G1510\"* free|strong=\"G1658\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"*’s|strong=\"G2962\"* bondservant." + }, + { + "verseNum": 23, + "text": "You|strong=\"G3361\"* were|strong=\"G1096\"* bought with|strong=\"G1096\"* a|strong=\"G1096\"* price|strong=\"G5092\"*. Don’t become|strong=\"G1096\"* bondservants of|strong=\"G1401\"* men|strong=\"G1401\"*." + }, + { + "verseNum": 24, + "text": "Brothers, let|strong=\"G3306\"* each|strong=\"G1538\"* man|strong=\"G3778\"*, in|strong=\"G1722\"* whatever|strong=\"G3739\"* condition he|strong=\"G3739\"* was|strong=\"G3739\"* called|strong=\"G2564\"*, stay|strong=\"G3306\"* in|strong=\"G1722\"* that|strong=\"G3739\"* condition with|strong=\"G1722\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 25, + "text": "Now|strong=\"G1161\"* concerning|strong=\"G4012\"* virgins|strong=\"G3933\"*, I|strong=\"G1161\"* have|strong=\"G2192\"* no|strong=\"G3756\"* commandment|strong=\"G2003\"* from|strong=\"G5259\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"*, but|strong=\"G1161\"* I|strong=\"G1161\"* give|strong=\"G1325\"* my|strong=\"G1325\"* judgment|strong=\"G1106\"* as|strong=\"G5613\"* one|strong=\"G3588\"* who|strong=\"G3588\"* has|strong=\"G2192\"* obtained|strong=\"G2192\"* mercy|strong=\"G1653\"* from|strong=\"G5259\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"* to|strong=\"G1325\"* be|strong=\"G1510\"* trustworthy|strong=\"G4103\"*." + }, + { + "verseNum": 26, + "text": "Therefore|strong=\"G3767\"* I|strong=\"G3754\"* think|strong=\"G3543\"* that|strong=\"G3754\"* because|strong=\"G3754\"* of|strong=\"G1223\"* the|strong=\"G1223\"* distress that|strong=\"G3754\"* is|strong=\"G1510\"* on|strong=\"G3588\"* us, it|strong=\"G3754\"*’s good|strong=\"G2570\"* for|strong=\"G3754\"* a|strong=\"G1510\"* man|strong=\"G3778\"* to|strong=\"G3778\"* remain|strong=\"G1510\"* as|strong=\"G3779\"* he|strong=\"G3754\"* is|strong=\"G1510\"*." + }, + { + "verseNum": 27, + "text": "Are|strong=\"G2212\"* you|strong=\"G3361\"* bound|strong=\"G1210\"* to|strong=\"G2212\"* a|strong=\"G3361\"* wife|strong=\"G1135\"*? Don’t seek|strong=\"G2212\"* to|strong=\"G2212\"* be|strong=\"G3361\"* freed. Are|strong=\"G2212\"* you|strong=\"G3361\"* free|strong=\"G3089\"* from|strong=\"G3361\"* a|strong=\"G3361\"* wife|strong=\"G1135\"*? Don’t seek|strong=\"G2212\"* a|strong=\"G3361\"* wife|strong=\"G1135\"*." + }, + { + "verseNum": 28, + "text": "But|strong=\"G1161\"* if|strong=\"G1437\"* you|strong=\"G5210\"* marry|strong=\"G1060\"*, you|strong=\"G5210\"* have|strong=\"G2192\"* not|strong=\"G3756\"* sinned. If|strong=\"G1437\"* a|strong=\"G2192\"* virgin|strong=\"G3933\"* marries|strong=\"G1060\"*, she|strong=\"G2532\"* has|strong=\"G2192\"* not|strong=\"G3756\"* sinned. Yet|strong=\"G2532\"* such|strong=\"G5108\"* will|strong=\"G2532\"* have|strong=\"G2192\"* oppression in|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* want to|strong=\"G2532\"* spare|strong=\"G5339\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 29, + "text": "But|strong=\"G1161\"* I|strong=\"G2532\"* say|strong=\"G5346\"* this|strong=\"G3778\"*, brothers: the|strong=\"G2532\"* time|strong=\"G2540\"* is|strong=\"G1510\"* short|strong=\"G3588\"*. From|strong=\"G2532\"* now|strong=\"G1161\"* on|strong=\"G1161\"*, both|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2192\"* wives|strong=\"G1135\"* may|strong=\"G2532\"* be|strong=\"G1510\"* as|strong=\"G5613\"* though|strong=\"G5613\"* they|strong=\"G2532\"* had|strong=\"G2192\"* none|strong=\"G3361\"*;" + }, + { + "verseNum": 30, + "text": "and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* weep|strong=\"G2799\"*, as|strong=\"G5613\"* though|strong=\"G5613\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* weep|strong=\"G2799\"*; and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* rejoice|strong=\"G5463\"*, as|strong=\"G5613\"* though|strong=\"G5613\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* rejoice|strong=\"G5463\"*; and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* buy, as|strong=\"G5613\"* though|strong=\"G5613\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* possess|strong=\"G2722\"*;" + }, + { + "verseNum": 31, + "text": "and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* use|strong=\"G5530\"* the|strong=\"G2532\"* world|strong=\"G2889\"*, as|strong=\"G5613\"* not|strong=\"G3361\"* using|strong=\"G2710\"* it|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* fullest. For|strong=\"G1063\"* the|strong=\"G2532\"* mode of|strong=\"G2532\"* this|strong=\"G3778\"* world|strong=\"G2889\"* passes away|strong=\"G3855\"*." + }, + { + "verseNum": 32, + "text": "But|strong=\"G1161\"* I|strong=\"G1161\"* desire|strong=\"G2309\"* to|strong=\"G2309\"* have|strong=\"G2309\"* you|strong=\"G5210\"* to|strong=\"G2309\"* be|strong=\"G1510\"* free from|strong=\"G3588\"* cares. He|strong=\"G1161\"* who|strong=\"G3588\"* is|strong=\"G1510\"* unmarried is|strong=\"G1510\"* concerned|strong=\"G3309\"* for|strong=\"G1161\"* the|strong=\"G1161\"* things|strong=\"G3588\"* of|strong=\"G2962\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"*, how|strong=\"G4459\"* he|strong=\"G1161\"* may|strong=\"G5210\"* please|strong=\"G2309\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"*;" + }, + { + "verseNum": 33, + "text": "but|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3588\"* is|strong=\"G3588\"* married|strong=\"G1060\"* is|strong=\"G3588\"* concerned|strong=\"G3309\"* about|strong=\"G3309\"* the|strong=\"G1161\"* things|strong=\"G3588\"* of|strong=\"G3588\"* the|strong=\"G1161\"* world|strong=\"G2889\"*, how|strong=\"G4459\"* he|strong=\"G1161\"* may|strong=\"G2889\"* please his|strong=\"G3588\"* wife|strong=\"G1135\"*." + }, + { + "verseNum": 34, + "text": "There|strong=\"G2532\"* is|strong=\"G1510\"* also|strong=\"G2532\"* a|strong=\"G2532\"* difference|strong=\"G3307\"* between|strong=\"G3307\"* a|strong=\"G2532\"* wife|strong=\"G1135\"* and|strong=\"G2532\"* a|strong=\"G2532\"* virgin|strong=\"G3933\"*. The|strong=\"G2532\"* unmarried|strong=\"G3933\"* woman|strong=\"G1135\"* cares about|strong=\"G3309\"* the|strong=\"G2532\"* things|strong=\"G3588\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, that|strong=\"G2443\"* she|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G1510\"* holy|strong=\"G4151\"* both|strong=\"G2532\"* in|strong=\"G2532\"* body|strong=\"G4983\"* and|strong=\"G2532\"* in|strong=\"G2532\"* spirit|strong=\"G4151\"*. But|strong=\"G1161\"* she|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G1510\"* married|strong=\"G1060\"* cares about|strong=\"G3309\"* the|strong=\"G2532\"* things|strong=\"G3588\"* of|strong=\"G4151\"* the|strong=\"G2532\"* world|strong=\"G2889\"*—how|strong=\"G4459\"* she|strong=\"G2532\"* may|strong=\"G2532\"* please her|strong=\"G3588\"* husband." + }, + { + "verseNum": 35, + "text": "This|strong=\"G3778\"* I|strong=\"G2532\"* say|strong=\"G3004\"* for|strong=\"G4314\"* your|strong=\"G2962\"* own benefit|strong=\"G4851\"*, not|strong=\"G3756\"* that|strong=\"G2443\"* I|strong=\"G2532\"* may|strong=\"G2532\"* ensnare you|strong=\"G5210\"*, but|strong=\"G1161\"* for|strong=\"G4314\"* that|strong=\"G2443\"* which|strong=\"G3588\"* is|strong=\"G3588\"* appropriate|strong=\"G2158\"*, and|strong=\"G2532\"* that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* attend to|strong=\"G4314\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* without|strong=\"G2532\"* distraction." + }, + { + "verseNum": 36, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* any|strong=\"G5100\"* man|strong=\"G5100\"* thinks|strong=\"G3543\"* that|strong=\"G3739\"* he|strong=\"G2532\"* is|strong=\"G1510\"* behaving inappropriately toward|strong=\"G1909\"* his|strong=\"G1909\"* virgin|strong=\"G3933\"*, if|strong=\"G1487\"* she|strong=\"G2532\"* is|strong=\"G1510\"* past|strong=\"G1096\"* the|strong=\"G2532\"* flower of|strong=\"G2532\"* her|strong=\"G1437\"* age|strong=\"G5230\"*, and|strong=\"G2532\"* if|strong=\"G1487\"* need|strong=\"G1487\"* so|strong=\"G3779\"* requires, let|strong=\"G1096\"* him|strong=\"G3588\"* do|strong=\"G4160\"* what|strong=\"G3739\"* he|strong=\"G2532\"* desires|strong=\"G2309\"*. He|strong=\"G2532\"* doesn’t|strong=\"G3588\"* sin. Let|strong=\"G1096\"* them|strong=\"G3588\"* marry|strong=\"G1060\"*." + }, + { + "verseNum": 37, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* who|strong=\"G3739\"* stands|strong=\"G2476\"* steadfast|strong=\"G1476\"* in|strong=\"G1722\"* his|strong=\"G1438\"* heart|strong=\"G2588\"*, having|strong=\"G2192\"* no|strong=\"G3361\"* urgency, but|strong=\"G1161\"* has|strong=\"G2192\"* power|strong=\"G1849\"* over|strong=\"G4012\"* his|strong=\"G1438\"* own|strong=\"G2398\"* will|strong=\"G2307\"*, and|strong=\"G2532\"* has|strong=\"G2192\"* determined|strong=\"G2919\"* in|strong=\"G1722\"* his|strong=\"G1438\"* own|strong=\"G2398\"* heart|strong=\"G2588\"* to|strong=\"G2532\"* keep|strong=\"G5083\"* his|strong=\"G1438\"* own|strong=\"G2398\"* virgin|strong=\"G3933\"*, does|strong=\"G4160\"* well|strong=\"G2573\"*." + }, + { + "verseNum": 38, + "text": "So|strong=\"G2532\"* then|strong=\"G2532\"* both|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* gives|strong=\"G1061\"* his|strong=\"G1438\"* own|strong=\"G1438\"* virgin|strong=\"G3933\"* in|strong=\"G2532\"* marriage|strong=\"G1061\"* does|strong=\"G4160\"* well|strong=\"G2573\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* give|strong=\"G4160\"* her|strong=\"G1438\"* in|strong=\"G2532\"* marriage|strong=\"G1061\"* does|strong=\"G4160\"* better|strong=\"G2909\"*." + }, + { + "verseNum": 39, + "text": "A|strong=\"G1722\"* wife|strong=\"G1135\"* is|strong=\"G1510\"* bound|strong=\"G1210\"* by|strong=\"G1722\"* law for|strong=\"G1909\"* as|strong=\"G3745\"* long|strong=\"G5550\"* as|strong=\"G3745\"* her|strong=\"G1437\"* husband lives|strong=\"G2198\"*; but|strong=\"G1161\"* if|strong=\"G1437\"* the|strong=\"G1722\"* husband is|strong=\"G1510\"* dead|strong=\"G2837\"*, she|strong=\"G1161\"* is|strong=\"G1510\"* free|strong=\"G1658\"* to|strong=\"G1909\"* be|strong=\"G1510\"* married|strong=\"G1060\"* to|strong=\"G1909\"* whomever|strong=\"G3739\"* she|strong=\"G1161\"* desires|strong=\"G2309\"*, only|strong=\"G3440\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 40, + "text": "But|strong=\"G1161\"* she|strong=\"G1161\"* is|strong=\"G1510\"* happier|strong=\"G3107\"* if|strong=\"G1437\"* she|strong=\"G1161\"* stays as|strong=\"G1161\"* she|strong=\"G1161\"* is|strong=\"G1510\"*, in|strong=\"G2596\"* my|strong=\"G1699\"* judgment|strong=\"G1106\"*, and|strong=\"G1161\"* I|strong=\"G2504\"* think|strong=\"G1380\"* that|strong=\"G3588\"* I|strong=\"G2504\"* also|strong=\"G2504\"* have|strong=\"G2192\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* Spirit|strong=\"G4151\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* concerning|strong=\"G4012\"* things|strong=\"G3956\"* sacrificed|strong=\"G1494\"* to|strong=\"G1161\"* idols|strong=\"G1494\"*: We|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* we|strong=\"G3754\"* all|strong=\"G3956\"* have|strong=\"G2192\"* knowledge|strong=\"G1108\"*. Knowledge|strong=\"G1108\"* puffs up|strong=\"G5448\"*, but|strong=\"G1161\"* love builds|strong=\"G3618\"* up|strong=\"G5448\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"G1487\"* if|strong=\"G1487\"* anyone|strong=\"G5100\"* thinks|strong=\"G1380\"* that|strong=\"G1097\"* he|strong=\"G1487\"* knows|strong=\"G1097\"* anything|strong=\"G5100\"*, he|strong=\"G1487\"* doesn’t yet|strong=\"G3768\"* know|strong=\"G1097\"* as|strong=\"G2531\"* he|strong=\"G1487\"* ought|strong=\"G1163\"* to|strong=\"G1163\"* know|strong=\"G1097\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* anyone|strong=\"G5100\"* who|strong=\"G3588\"* loves God|strong=\"G2316\"* is|strong=\"G3588\"* known|strong=\"G1097\"* by|strong=\"G5259\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "Therefore|strong=\"G3767\"* concerning|strong=\"G4012\"* the|strong=\"G1722\"* eating|strong=\"G1035\"* of|strong=\"G4012\"* things|strong=\"G3588\"* sacrificed|strong=\"G1494\"* to|strong=\"G2532\"* idols|strong=\"G1497\"*, we|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* no|strong=\"G3762\"* idol|strong=\"G1497\"* is|strong=\"G3588\"* anything|strong=\"G3762\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* there|strong=\"G2532\"* is|strong=\"G3588\"* no|strong=\"G3762\"* other|strong=\"G1520\"* God|strong=\"G2316\"* but|strong=\"G2532\"* one|strong=\"G1520\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* though|strong=\"G2532\"* there|strong=\"G2532\"* are|strong=\"G1510\"* things|strong=\"G4183\"* that|strong=\"G2532\"* are|strong=\"G1510\"* called|strong=\"G3004\"* “gods|strong=\"G2316\"*”, whether|strong=\"G1535\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavens|strong=\"G3772\"* or|strong=\"G1535\"* on|strong=\"G1909\"* earth|strong=\"G1093\"*—as|strong=\"G5618\"* there|strong=\"G2532\"* are|strong=\"G1510\"* many|strong=\"G4183\"* “gods|strong=\"G2316\"*” and|strong=\"G2532\"* many|strong=\"G4183\"* “lords|strong=\"G2962\"*”—" + }, + { + "verseNum": 6, + "text": "yet|strong=\"G2532\"* to|strong=\"G1519\"* us|strong=\"G1519\"* there|strong=\"G2532\"* is|strong=\"G3588\"* one|strong=\"G1520\"* God|strong=\"G2316\"*, the|strong=\"G2532\"* Father|strong=\"G3962\"*, of|strong=\"G1537\"* whom|strong=\"G3739\"* are|strong=\"G3588\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G2532\"* we|strong=\"G2249\"* for|strong=\"G1519\"* him|strong=\"G3588\"*; and|strong=\"G2532\"* one|strong=\"G1520\"* Lord|strong=\"G2962\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, through|strong=\"G1223\"* whom|strong=\"G3739\"* are|strong=\"G3588\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G2532\"* we|strong=\"G2249\"* live|strong=\"G2532\"* through|strong=\"G1223\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 7, + "text": "However|strong=\"G1161\"*, that|strong=\"G3588\"* knowledge|strong=\"G1108\"* isn’t|strong=\"G3588\"* in|strong=\"G1722\"* all|strong=\"G3956\"* men|strong=\"G3956\"*. But|strong=\"G1161\"* some|strong=\"G5100\"*, with|strong=\"G1722\"* consciousness|strong=\"G4893\"* of|strong=\"G2532\"* an|strong=\"G2532\"* idol|strong=\"G1497\"* until|strong=\"G2193\"* now|strong=\"G1161\"*, eat|strong=\"G2068\"* as|strong=\"G5613\"* of|strong=\"G2532\"* a|strong=\"G5613\"* thing|strong=\"G5100\"* sacrificed|strong=\"G1494\"* to|strong=\"G2532\"* an|strong=\"G2532\"* idol|strong=\"G1497\"*, and|strong=\"G2532\"* their|strong=\"G2532\"* conscience|strong=\"G4893\"*, being|strong=\"G1510\"* weak, is|strong=\"G1510\"* defiled|strong=\"G3435\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* food|strong=\"G1033\"* will|strong=\"G2316\"* not|strong=\"G3756\"* commend|strong=\"G3936\"* us|strong=\"G2249\"* to|strong=\"G3756\"* God|strong=\"G2316\"*. For|strong=\"G1063\"* neither|strong=\"G3777\"*, if|strong=\"G1437\"* we|strong=\"G2249\"* don’t|strong=\"G3588\"* eat|strong=\"G2068\"* are|strong=\"G3588\"* we|strong=\"G2249\"* the|strong=\"G1161\"* worse|strong=\"G5302\"*, nor|strong=\"G3777\"* if|strong=\"G1437\"* we|strong=\"G2249\"* eat|strong=\"G2068\"* are|strong=\"G3588\"* we|strong=\"G2249\"* the|strong=\"G1161\"* better|strong=\"G4052\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* be|strong=\"G1096\"* careful that|strong=\"G3588\"* by|strong=\"G3361\"* no|strong=\"G3361\"* means|strong=\"G3381\"* does|strong=\"G1096\"* this|strong=\"G3778\"* liberty|strong=\"G1849\"* of|strong=\"G3588\"* yours|strong=\"G4771\"* become|strong=\"G1096\"* a|strong=\"G1096\"* stumbling|strong=\"G4348\"* block|strong=\"G4348\"* to|strong=\"G1849\"* the|strong=\"G1161\"* weak." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* if|strong=\"G1437\"* a|strong=\"G2192\"* man|strong=\"G5100\"* sees|strong=\"G3708\"* you|strong=\"G4771\"* who|strong=\"G3588\"* have|strong=\"G2192\"* knowledge|strong=\"G1108\"* sitting|strong=\"G2621\"* in|strong=\"G1722\"* an|strong=\"G2192\"* idol|strong=\"G1494\"*’s|strong=\"G2192\"* temple|strong=\"G1493\"*, won’t|strong=\"G3588\"* his|strong=\"G1519\"* conscience|strong=\"G4893\"*, if|strong=\"G1437\"* he|strong=\"G3588\"* is|strong=\"G1510\"* weak, be|strong=\"G1510\"* emboldened|strong=\"G3618\"* to|strong=\"G1519\"* eat|strong=\"G2068\"* things|strong=\"G3588\"* sacrificed|strong=\"G1494\"* to|strong=\"G1519\"* idols|strong=\"G1494\"*?" + }, + { + "verseNum": 11, + "text": "And|strong=\"G5547\"* through|strong=\"G1223\"* your|strong=\"G4674\"* knowledge|strong=\"G1108\"*, he|strong=\"G3739\"* who|strong=\"G3739\"* is|strong=\"G3588\"* weak perishes, the|strong=\"G1722\"* brother for|strong=\"G1063\"* whose|strong=\"G3739\"* sake|strong=\"G1223\"* Christ|strong=\"G5547\"* died|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "Thus|strong=\"G3779\"*, sinning against|strong=\"G1519\"* the|strong=\"G2532\"* brothers, and|strong=\"G2532\"* wounding|strong=\"G5180\"* their|strong=\"G2532\"* conscience|strong=\"G4893\"* when|strong=\"G1161\"* it|strong=\"G2532\"* is|strong=\"G3588\"* weak, you|strong=\"G3779\"* sin against|strong=\"G1519\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"G1355\"*, if|strong=\"G1487\"* food|strong=\"G1033\"* causes|strong=\"G4624\"* my|strong=\"G1473\"* brother to|strong=\"G1519\"* stumble|strong=\"G4624\"*, I|strong=\"G1473\"* will|strong=\"G1473\"* eat|strong=\"G2068\"* no|strong=\"G3756\"* meat|strong=\"G1033\"* forever|strong=\"G1519\"* more|strong=\"G3756\"*, that|strong=\"G2443\"* I|strong=\"G1473\"* don’t|strong=\"G3588\"* cause|strong=\"G4624\"* my|strong=\"G1473\"* brother to|strong=\"G1519\"* stumble|strong=\"G4624\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Am|strong=\"G1510\"* I|strong=\"G1473\"* not|strong=\"G3756\"* free|strong=\"G1658\"*? Am|strong=\"G1510\"* I|strong=\"G1473\"* not|strong=\"G3756\"* an|strong=\"G1722\"* apostle? Haven’t|strong=\"G3588\"* I|strong=\"G1473\"* seen|strong=\"G3708\"* Jesus|strong=\"G2424\"* Christ|strong=\"G2962\"*, our|strong=\"G2424\"* Lord|strong=\"G2962\"*? Aren’t|strong=\"G3588\"* you|strong=\"G5210\"* my|strong=\"G3708\"* work|strong=\"G2041\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*?" + }, + { + "verseNum": 2, + "text": "If|strong=\"G1487\"* to|strong=\"G1722\"* others|strong=\"G3588\"* I|strong=\"G1473\"* am|strong=\"G1510\"* not|strong=\"G3756\"* an|strong=\"G1722\"* apostle, yet|strong=\"G1065\"* at|strong=\"G1722\"* least I|strong=\"G1473\"* am|strong=\"G1510\"* to|strong=\"G1722\"* you|strong=\"G5210\"*; for|strong=\"G1063\"* you|strong=\"G5210\"* are|strong=\"G1510\"* the|strong=\"G1722\"* seal|strong=\"G4973\"* of|strong=\"G2962\"* my|strong=\"G1722\"* apostleship in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 3, + "text": "My|strong=\"G1699\"* defense to|strong=\"G3778\"* those|strong=\"G3588\"* who|strong=\"G3588\"* examine me|strong=\"G1473\"* is|strong=\"G1510\"* this|strong=\"G3778\"*:" + }, + { + "verseNum": 4, + "text": "Have|strong=\"G2192\"* we|strong=\"G2532\"* no|strong=\"G3756\"* right|strong=\"G1849\"* to|strong=\"G2532\"* eat|strong=\"G2068\"* and|strong=\"G2532\"* to|strong=\"G2532\"* drink|strong=\"G4095\"*?" + }, + { + "verseNum": 5, + "text": "Have|strong=\"G2192\"* we|strong=\"G2532\"* no|strong=\"G3756\"* right|strong=\"G1849\"* to|strong=\"G2532\"* take|strong=\"G2532\"* along|strong=\"G2532\"* a|strong=\"G2192\"* wife|strong=\"G1135\"* who|strong=\"G3588\"* is|strong=\"G3588\"* a|strong=\"G2192\"* believer, even|strong=\"G2532\"* as|strong=\"G5613\"* the|strong=\"G2532\"* rest|strong=\"G3062\"* of|strong=\"G2532\"* the|strong=\"G2532\"* apostles, and|strong=\"G2532\"* the|strong=\"G2532\"* brothers of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, and|strong=\"G2532\"* Cephas|strong=\"G2786\"*?" + }, + { + "verseNum": 6, + "text": "Or|strong=\"G2228\"* have|strong=\"G2192\"* only|strong=\"G3441\"* Barnabas and|strong=\"G2532\"* I|strong=\"G1473\"* no|strong=\"G3756\"* right|strong=\"G1849\"* to|strong=\"G2532\"* not|strong=\"G3756\"* work|strong=\"G2038\"*?" + }, + { + "verseNum": 7, + "text": "What|strong=\"G5101\"* soldier|strong=\"G4754\"* ever|strong=\"G4218\"* serves|strong=\"G4754\"* at|strong=\"G1537\"* his|strong=\"G2398\"* own|strong=\"G2398\"* expense|strong=\"G3800\"*? Who|strong=\"G5101\"* plants|strong=\"G5452\"* a|strong=\"G2532\"* vineyard, and|strong=\"G2532\"* doesn’t|strong=\"G3588\"* eat|strong=\"G2068\"* of|strong=\"G1537\"* its|strong=\"G1537\"* fruit|strong=\"G2590\"*? Or|strong=\"G2228\"* who|strong=\"G5101\"* feeds a|strong=\"G2532\"* flock|strong=\"G4167\"*, and|strong=\"G2532\"* doesn’t|strong=\"G3588\"* drink|strong=\"G2532\"* from|strong=\"G1537\"* the|strong=\"G2532\"* flock|strong=\"G4167\"*’s milk|strong=\"G1051\"*?" + }, + { + "verseNum": 8, + "text": "Do|strong=\"G2532\"* I|strong=\"G2532\"* speak|strong=\"G2980\"* these|strong=\"G3778\"* things|strong=\"G3778\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* ways of|strong=\"G2532\"* men|strong=\"G3778\"*? Or|strong=\"G2228\"* doesn’t|strong=\"G3588\"* the|strong=\"G2532\"* law|strong=\"G3551\"* also|strong=\"G2532\"* say|strong=\"G3004\"* the|strong=\"G2532\"* same|strong=\"G3778\"* thing|strong=\"G3778\"*?" + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* it|strong=\"G1063\"* is|strong=\"G3588\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* of|strong=\"G2316\"* Moses|strong=\"G3475\"*, “You|strong=\"G1722\"* shall|strong=\"G2316\"* not|strong=\"G3756\"* muzzle|strong=\"G5392\"* an|strong=\"G1722\"* ox|strong=\"G1016\"* while|strong=\"G1722\"* it|strong=\"G1063\"* treads out|strong=\"G1063\"* the|strong=\"G1722\"* grain.”+ 9:9 Deuteronomy 25:4* Is|strong=\"G3588\"* it|strong=\"G1063\"* for|strong=\"G1063\"* the|strong=\"G1722\"* oxen|strong=\"G1016\"* that|strong=\"G3588\"* God|strong=\"G2316\"* cares|strong=\"G3199\"*," + }, + { + "verseNum": 10, + "text": "or|strong=\"G2228\"* does|strong=\"G3004\"* he|strong=\"G2532\"* say|strong=\"G3004\"* it|strong=\"G2532\"* assuredly for|strong=\"G1063\"* our|strong=\"G2532\"* sake|strong=\"G1223\"*? Yes|strong=\"G1063\"*, it|strong=\"G2532\"* was|strong=\"G3588\"* written|strong=\"G1125\"* for|strong=\"G1063\"* our|strong=\"G2532\"* sake|strong=\"G1223\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* who|strong=\"G3588\"* plows ought|strong=\"G3784\"* to|strong=\"G2532\"* plow in|strong=\"G1909\"* hope|strong=\"G1680\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* threshes in|strong=\"G1909\"* hope|strong=\"G1680\"* should|strong=\"G3784\"* partake|strong=\"G3348\"* of|strong=\"G1223\"* his|strong=\"G1223\"* hope|strong=\"G1680\"*." + }, + { + "verseNum": 11, + "text": "If|strong=\"G1487\"* we|strong=\"G2249\"* sowed|strong=\"G4687\"* to|strong=\"G3588\"* you|strong=\"G5210\"* spiritual|strong=\"G4152\"* things|strong=\"G3588\"*, is|strong=\"G3588\"* it|strong=\"G1487\"* a|strong=\"G1487\"* great|strong=\"G3173\"* thing|strong=\"G3173\"* if|strong=\"G1487\"* we|strong=\"G2249\"* reap|strong=\"G2325\"* your|strong=\"G1487\"* fleshly|strong=\"G4559\"* things|strong=\"G3588\"*?" + }, + { + "verseNum": 12, + "text": "If|strong=\"G1487\"* others|strong=\"G3588\"* partake|strong=\"G3348\"* of|strong=\"G2098\"* this|strong=\"G3778\"* right|strong=\"G1849\"* over|strong=\"G1849\"* you|strong=\"G5210\"*, don’t|strong=\"G3588\"* we|strong=\"G2249\"* yet|strong=\"G5210\"* more|strong=\"G3123\"*?" + }, + { + "verseNum": 13, + "text": "Don’t|strong=\"G3588\"* you|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* those|strong=\"G3588\"* who|strong=\"G3588\"* serve around sacred|strong=\"G2413\"* things|strong=\"G3588\"* eat|strong=\"G2068\"* from|strong=\"G1537\"* the|strong=\"G1537\"* things|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1537\"* temple|strong=\"G2413\"*, and|strong=\"G2068\"* those|strong=\"G3588\"* who|strong=\"G3588\"* wait|strong=\"G4332\"* on|strong=\"G1537\"* the|strong=\"G1537\"* altar|strong=\"G2379\"* have|strong=\"G3748\"* their|strong=\"G2068\"* portion with|strong=\"G1537\"* the|strong=\"G1537\"* altar|strong=\"G2379\"*?" + }, + { + "verseNum": 14, + "text": "Even|strong=\"G2532\"* so|strong=\"G3779\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* ordained|strong=\"G1299\"* that|strong=\"G3588\"* those|strong=\"G3588\"* who|strong=\"G3588\"* proclaim|strong=\"G2605\"* the|strong=\"G2532\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* should|strong=\"G3588\"* live|strong=\"G2198\"* from|strong=\"G1537\"* the|strong=\"G2532\"* Good|strong=\"G3588\"* News|strong=\"G2098\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* I|strong=\"G1473\"* have|strong=\"G1473\"* used|strong=\"G5530\"* none|strong=\"G3762\"* of|strong=\"G1722\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, and|strong=\"G1161\"* I|strong=\"G1473\"* don’t|strong=\"G3588\"* write|strong=\"G1125\"* these|strong=\"G3778\"* things|strong=\"G3778\"* that|strong=\"G2443\"* it|strong=\"G1161\"* may|strong=\"G2443\"* be|strong=\"G1096\"* done|strong=\"G1096\"* so|strong=\"G3779\"* in|strong=\"G1722\"* my|strong=\"G1722\"* case|strong=\"G3588\"*; for|strong=\"G1063\"* I|strong=\"G1473\"* would|strong=\"G1096\"* rather|strong=\"G3123\"* die, than|strong=\"G2228\"* that|strong=\"G2443\"* anyone|strong=\"G3762\"* should|strong=\"G3588\"* make|strong=\"G2758\"* my|strong=\"G1722\"* boasting|strong=\"G2745\"* void|strong=\"G2758\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* if|strong=\"G1437\"* I|strong=\"G1473\"* preach|strong=\"G2097\"* the|strong=\"G1063\"* Good|strong=\"G2097\"* News|strong=\"G2097\"*, I|strong=\"G1473\"* have|strong=\"G1473\"* nothing|strong=\"G3756\"* to|strong=\"G3756\"* boast|strong=\"G2745\"* about|strong=\"G3361\"*, for|strong=\"G1063\"* necessity is|strong=\"G1510\"* laid|strong=\"G1945\"* on|strong=\"G3361\"* me|strong=\"G1473\"*; but|strong=\"G3361\"* woe|strong=\"G3759\"* is|strong=\"G1510\"* to|strong=\"G3756\"* me|strong=\"G1473\"* if|strong=\"G1437\"* I|strong=\"G1473\"* don’t preach|strong=\"G2097\"* the|strong=\"G1063\"* Good|strong=\"G2097\"* News|strong=\"G2097\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* I|strong=\"G1161\"* do|strong=\"G4238\"* this|strong=\"G3778\"* of|strong=\"G2192\"* my|strong=\"G4100\"* own will|strong=\"G3778\"*, I|strong=\"G1161\"* have|strong=\"G2192\"* a|strong=\"G2192\"* reward|strong=\"G3408\"*. But|strong=\"G1161\"* if|strong=\"G1487\"* not|strong=\"G2192\"* of|strong=\"G2192\"* my|strong=\"G4100\"* own will|strong=\"G3778\"*, I|strong=\"G1161\"* have|strong=\"G2192\"* a|strong=\"G2192\"* stewardship|strong=\"G3622\"* entrusted|strong=\"G4100\"* to|strong=\"G1161\"* me|strong=\"G2192\"*." + }, + { + "verseNum": 18, + "text": "What|strong=\"G5101\"* then|strong=\"G3767\"* is|strong=\"G1510\"* my|strong=\"G1722\"* reward|strong=\"G3408\"*? That|strong=\"G2443\"* when|strong=\"G1722\"* I|strong=\"G1473\"* preach|strong=\"G2097\"* the|strong=\"G1722\"* Good|strong=\"G2097\"* News|strong=\"G2097\"*, I|strong=\"G1473\"* may|strong=\"G2443\"* present|strong=\"G5087\"* the|strong=\"G1722\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* of|strong=\"G2098\"* Christ without|strong=\"G3361\"* charge|strong=\"G1849\"*, so|strong=\"G2443\"* as|strong=\"G1519\"* not|strong=\"G3361\"* to|strong=\"G1519\"* abuse|strong=\"G2710\"* my|strong=\"G1722\"* authority|strong=\"G1849\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Good|strong=\"G2097\"* News|strong=\"G2097\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* though|strong=\"G1063\"* I|strong=\"G1063\"* was|strong=\"G1510\"* free|strong=\"G1658\"* from|strong=\"G1537\"* all|strong=\"G3956\"*, I|strong=\"G1063\"* brought myself|strong=\"G1683\"* under|strong=\"G1537\"* bondage|strong=\"G1402\"* to|strong=\"G2443\"* all|strong=\"G3956\"*, that|strong=\"G2443\"* I|strong=\"G1063\"* might|strong=\"G3956\"* gain|strong=\"G2770\"* the|strong=\"G3956\"* more|strong=\"G4119\"*." + }, + { + "verseNum": 20, + "text": "To|strong=\"G2443\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* I|strong=\"G2532\"* became|strong=\"G1096\"* as|strong=\"G5613\"* a|strong=\"G1096\"* Jew|strong=\"G2453\"*, that|strong=\"G2443\"* I|strong=\"G2532\"* might|strong=\"G2532\"* gain|strong=\"G2770\"* Jews|strong=\"G2453\"*; to|strong=\"G2443\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* under|strong=\"G5259\"* the|strong=\"G2532\"* law|strong=\"G3551\"*, as|strong=\"G5613\"* under|strong=\"G5259\"* the|strong=\"G2532\"* law|strong=\"G3551\"*,+ 9:20 NU adds: though I myself am not under the law* that|strong=\"G2443\"* I|strong=\"G2532\"* might|strong=\"G2532\"* gain|strong=\"G2770\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* under|strong=\"G5259\"* the|strong=\"G2532\"* law|strong=\"G3551\"*;" + }, + { + "verseNum": 21, + "text": "to|strong=\"G2443\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* without|strong=\"G3361\"* law|strong=\"G1772\"*, as|strong=\"G5613\"* without|strong=\"G3361\"* law|strong=\"G1772\"* (not|strong=\"G3361\"* being|strong=\"G1510\"* without|strong=\"G3361\"* law|strong=\"G1772\"* toward God|strong=\"G2316\"*, but|strong=\"G3361\"* under|strong=\"G1772\"* law|strong=\"G1772\"* toward Christ|strong=\"G5547\"*), that|strong=\"G2443\"* I|strong=\"G5613\"* might|strong=\"G2316\"* win|strong=\"G2770\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* without|strong=\"G3361\"* law|strong=\"G1772\"*." + }, + { + "verseNum": 22, + "text": "To|strong=\"G2443\"* the|strong=\"G3956\"* weak I|strong=\"G2443\"* became|strong=\"G1096\"* as|strong=\"G1096\"* weak, that|strong=\"G2443\"* I|strong=\"G2443\"* might|strong=\"G4982\"* gain|strong=\"G2770\"* the|strong=\"G3956\"* weak. I|strong=\"G2443\"* have|strong=\"G1096\"* become|strong=\"G1096\"* all|strong=\"G3956\"* things|strong=\"G3956\"* to|strong=\"G2443\"* all|strong=\"G3956\"* men|strong=\"G3956\"*, that|strong=\"G2443\"* I|strong=\"G2443\"* may|strong=\"G2443\"* by|strong=\"G3956\"* all|strong=\"G3956\"* means|strong=\"G3843\"* save|strong=\"G4982\"* some|strong=\"G5100\"*." + }, + { + "verseNum": 23, + "text": "Now|strong=\"G1161\"* I|strong=\"G1161\"* do|strong=\"G4160\"* this|strong=\"G3588\"* for|strong=\"G1223\"* the|strong=\"G3956\"* sake|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G3956\"* Good|strong=\"G3956\"* News|strong=\"G2098\"*, that|strong=\"G2443\"* I|strong=\"G1161\"* may|strong=\"G2443\"* be|strong=\"G1096\"* a|strong=\"G1096\"* joint partaker|strong=\"G4791\"* of|strong=\"G1223\"* it|strong=\"G1161\"*." + }, + { + "verseNum": 24, + "text": "Don’t|strong=\"G3588\"* you|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* those|strong=\"G3588\"* who|strong=\"G3588\"* run|strong=\"G5143\"* in|strong=\"G1722\"* a|strong=\"G1722\"* race|strong=\"G4712\"* all|strong=\"G3956\"* run|strong=\"G5143\"*, but|strong=\"G1161\"* one|strong=\"G1520\"* receives|strong=\"G2983\"* the|strong=\"G1722\"* prize|strong=\"G1017\"*? Run|strong=\"G5143\"* like|strong=\"G3779\"* that|strong=\"G3754\"*, so|strong=\"G3779\"* that|strong=\"G3754\"* you|strong=\"G3754\"* may|strong=\"G2443\"* win|strong=\"G2638\"*." + }, + { + "verseNum": 25, + "text": "Every|strong=\"G3956\"* man|strong=\"G3956\"* who|strong=\"G3588\"* strives in|strong=\"G3956\"* the|strong=\"G3956\"* games exercises|strong=\"G1467\"* self-control|strong=\"G1467\"* in|strong=\"G3956\"* all|strong=\"G3956\"* things|strong=\"G3956\"*. Now|strong=\"G1161\"* they|strong=\"G1161\"* do|strong=\"G2983\"* it|strong=\"G1161\"* to|strong=\"G2443\"* receive|strong=\"G2983\"* a|strong=\"G2983\"* corruptible|strong=\"G5349\"* crown|strong=\"G4735\"*, but|strong=\"G1161\"* we|strong=\"G2249\"* an|strong=\"G1161\"* incorruptible." + }, + { + "verseNum": 26, + "text": "I|strong=\"G1473\"* therefore|strong=\"G5106\"* run|strong=\"G5143\"* like|strong=\"G5613\"* that|strong=\"G5613\"*, not|strong=\"G3756\"* aimlessly. I|strong=\"G1473\"* fight|strong=\"G3779\"* like|strong=\"G5613\"* that|strong=\"G5613\"*, not|strong=\"G3756\"* beating|strong=\"G1194\"* the|strong=\"G5613\"* air," + }, + { + "verseNum": 27, + "text": "but|strong=\"G2532\"* I|strong=\"G1473\"* beat my|strong=\"G1473\"* body|strong=\"G4983\"* and|strong=\"G2532\"* bring|strong=\"G1396\"* it|strong=\"G2532\"* into|strong=\"G1096\"* submission, lest|strong=\"G3361\"* by|strong=\"G2532\"* any|strong=\"G3361\"* means|strong=\"G3381\"*, after|strong=\"G2532\"* I|strong=\"G1473\"* have|strong=\"G2532\"* preached|strong=\"G2784\"* to|strong=\"G2532\"* others|strong=\"G3588\"*, I|strong=\"G1473\"* myself|strong=\"G1473\"* should|strong=\"G3588\"* be|strong=\"G1096\"* disqualified." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G2532\"* I|strong=\"G1473\"* would|strong=\"G2309\"* not|strong=\"G3756\"* have|strong=\"G2309\"* you|strong=\"G5210\"* ignorant, brothers, that|strong=\"G3754\"* our|strong=\"G2532\"* fathers|strong=\"G3962\"* were|strong=\"G1510\"* all|strong=\"G3956\"* under|strong=\"G5259\"* the|strong=\"G2532\"* cloud|strong=\"G3507\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* passed|strong=\"G1330\"* through|strong=\"G1223\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*;" + }, + { + "verseNum": 2, + "text": "and|strong=\"G2532\"* were|strong=\"G3588\"* all|strong=\"G3956\"* baptized into|strong=\"G1519\"* Moses|strong=\"G3475\"* in|strong=\"G1722\"* the|strong=\"G1722\"* cloud|strong=\"G3507\"* and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"G2532\"* all|strong=\"G3956\"* ate|strong=\"G2068\"* the|strong=\"G2532\"* same|strong=\"G2532\"* spiritual|strong=\"G4152\"* food|strong=\"G1033\"*;" + }, + { + "verseNum": 4, + "text": "and|strong=\"G2532\"* all|strong=\"G3956\"* drank|strong=\"G4095\"* the|strong=\"G2532\"* same|strong=\"G2532\"* spiritual|strong=\"G4152\"* drink|strong=\"G4095\"*. For|strong=\"G1063\"* they|strong=\"G2532\"* drank|strong=\"G4095\"* of|strong=\"G1537\"* a|strong=\"G2532\"* spiritual|strong=\"G4152\"* rock|strong=\"G4073\"* that|strong=\"G3588\"* followed them|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* rock|strong=\"G4073\"* was|strong=\"G1510\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 5, + "text": "However with|strong=\"G1722\"* most|strong=\"G4183\"* of|strong=\"G2316\"* them|strong=\"G3588\"*, God|strong=\"G2316\"* was|strong=\"G3588\"* not|strong=\"G3756\"* well|strong=\"G1063\"* pleased|strong=\"G2106\"*, for|strong=\"G1063\"* they|strong=\"G3588\"* were|strong=\"G3588\"* overthrown|strong=\"G2693\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"G1161\"* these|strong=\"G3778\"* things|strong=\"G3778\"* were|strong=\"G1510\"* our|strong=\"G1519\"* examples|strong=\"G5179\"*, to|strong=\"G1519\"* the|strong=\"G1519\"* intent|strong=\"G1519\"* we|strong=\"G2249\"* should|strong=\"G3588\"* not|strong=\"G3361\"* lust|strong=\"G1937\"* after|strong=\"G1161\"* evil|strong=\"G2556\"* things|strong=\"G3778\"* as|strong=\"G2531\"* they|strong=\"G1161\"* also|strong=\"G1161\"* lusted|strong=\"G1937\"*." + }, + { + "verseNum": 7, + "text": "Don’t|strong=\"G3588\"* be|strong=\"G1096\"* idolaters|strong=\"G1496\"*, as|strong=\"G2531\"* some|strong=\"G5100\"* of|strong=\"G2532\"* them|strong=\"G3588\"* were|strong=\"G3588\"*. As|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “The|strong=\"G2532\"* people|strong=\"G2992\"* sat|strong=\"G2523\"* down|strong=\"G2523\"* to|strong=\"G2532\"* eat|strong=\"G2068\"* and|strong=\"G2532\"* drink|strong=\"G4095\"*, and|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* to|strong=\"G2532\"* play|strong=\"G3815\"*.”+ 10:7 Exodus 32:6*" + }, + { + "verseNum": 8, + "text": "Let|strong=\"G2532\"*’s not|strong=\"G3366\"* commit|strong=\"G4203\"* sexual immorality|strong=\"G4203\"*, as|strong=\"G2531\"* some|strong=\"G5100\"* of|strong=\"G2250\"* them|strong=\"G2250\"* committed|strong=\"G4203\"*, and|strong=\"G2532\"* in|strong=\"G2532\"* one|strong=\"G1520\"* day|strong=\"G2250\"* twenty-three|strong=\"G1501\"* thousand|strong=\"G5505\"* fell|strong=\"G4098\"*." + }, + { + "verseNum": 9, + "text": "Let|strong=\"G2532\"*’s|strong=\"G2962\"* not|strong=\"G3366\"* test|strong=\"G3985\"* Christ|strong=\"G5547\"*,+ 10:9 NU reads “the Lord” instead of “Christ”.* as|strong=\"G2531\"* some|strong=\"G5100\"* of|strong=\"G5259\"* them|strong=\"G3588\"* tested|strong=\"G3985\"*, and|strong=\"G2532\"* perished by|strong=\"G5259\"* the|strong=\"G2532\"* serpents|strong=\"G3789\"*." + }, + { + "verseNum": 10, + "text": "Don’t|strong=\"G3588\"* grumble|strong=\"G1111\"*, as|strong=\"G2509\"* some|strong=\"G5100\"* of|strong=\"G5259\"* them|strong=\"G3588\"* also|strong=\"G2532\"* grumbled|strong=\"G1111\"*, and|strong=\"G2532\"* perished by|strong=\"G5259\"* the|strong=\"G2532\"* destroyer|strong=\"G3644\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"G1161\"* all|strong=\"G1161\"* these|strong=\"G3778\"* things|strong=\"G3778\"* happened|strong=\"G4819\"* to|strong=\"G1519\"* them|strong=\"G3588\"* by|strong=\"G4314\"* way|strong=\"G3739\"* of|strong=\"G3588\"* example|strong=\"G5179\"*, and|strong=\"G1161\"* they|strong=\"G1161\"* were|strong=\"G3588\"* written|strong=\"G1125\"* for|strong=\"G1519\"* our|strong=\"G4314\"* admonition|strong=\"G3559\"*, on|strong=\"G1519\"* whom|strong=\"G3739\"* the|strong=\"G1519\"* ends|strong=\"G5056\"* of|strong=\"G3588\"* the|strong=\"G1519\"* ages have|strong=\"G1473\"* come|strong=\"G2658\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"G5620\"* let|strong=\"G1380\"* him|strong=\"G3588\"* who|strong=\"G3588\"* thinks|strong=\"G1380\"* he|strong=\"G3588\"* stands|strong=\"G2476\"* be|strong=\"G3361\"* careful that|strong=\"G3588\"* he|strong=\"G3588\"* doesn’t|strong=\"G3588\"* fall|strong=\"G4098\"*." + }, + { + "verseNum": 13, + "text": "No|strong=\"G3756\"* temptation|strong=\"G3986\"* has|strong=\"G2316\"* taken|strong=\"G2983\"* you|strong=\"G5210\"* except|strong=\"G1487\"* what|strong=\"G3739\"* is|strong=\"G3588\"* common to|strong=\"G2532\"* man|strong=\"G3361\"*. God|strong=\"G2316\"* is|strong=\"G3588\"* faithful|strong=\"G4103\"*, who|strong=\"G3739\"* will|strong=\"G2316\"* not|strong=\"G3756\"* allow|strong=\"G1439\"* you|strong=\"G5210\"* to|strong=\"G2532\"* be|strong=\"G2532\"* tempted|strong=\"G3985\"* above|strong=\"G5228\"* what|strong=\"G3739\"* you|strong=\"G5210\"* are|strong=\"G3588\"* able|strong=\"G1410\"*, but|strong=\"G1161\"* will|strong=\"G2316\"* with|strong=\"G4862\"* the|strong=\"G2532\"* temptation|strong=\"G3986\"* also|strong=\"G2532\"* make|strong=\"G4160\"* the|strong=\"G2532\"* way|strong=\"G3739\"* of|strong=\"G2316\"* escape|strong=\"G1545\"*, that|strong=\"G3739\"* you|strong=\"G5210\"* may|strong=\"G2532\"* be|strong=\"G2532\"* able|strong=\"G1410\"* to|strong=\"G2532\"* endure|strong=\"G5297\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"G1355\"*, my|strong=\"G1473\"* beloved, flee|strong=\"G5343\"* from|strong=\"G3588\"* idolatry|strong=\"G1495\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"G3739\"* speak|strong=\"G3004\"* as|strong=\"G5613\"* to|strong=\"G3004\"* wise|strong=\"G5429\"* men|strong=\"G5429\"*. Judge|strong=\"G2919\"* what|strong=\"G3739\"* I|strong=\"G3739\"* say|strong=\"G3004\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"G3588\"* cup|strong=\"G4221\"* of|strong=\"G4983\"* blessing|strong=\"G2129\"* which|strong=\"G3739\"* we|strong=\"G3739\"* bless|strong=\"G2127\"*, isn’t|strong=\"G3588\"* it|strong=\"G3739\"* a|strong=\"G1510\"* sharing|strong=\"G2842\"* of|strong=\"G4983\"* the|strong=\"G3588\"* blood of|strong=\"G4983\"* Christ|strong=\"G5547\"*? The|strong=\"G3588\"* bread which|strong=\"G3739\"* we|strong=\"G3739\"* break|strong=\"G2806\"*, isn’t|strong=\"G3588\"* it|strong=\"G3739\"* a|strong=\"G1510\"* sharing|strong=\"G2842\"* of|strong=\"G4983\"* the|strong=\"G3588\"* body|strong=\"G4983\"* of|strong=\"G4983\"* Christ|strong=\"G5547\"*?" + }, + { + "verseNum": 17, + "text": "Because|strong=\"G3754\"* there|strong=\"G1063\"* is|strong=\"G1510\"* one|strong=\"G1520\"* loaf of|strong=\"G1537\"* bread, we|strong=\"G3754\"*, who|strong=\"G3588\"* are|strong=\"G1510\"* many|strong=\"G4183\"*, are|strong=\"G1510\"* one|strong=\"G1520\"* body|strong=\"G4983\"*; for|strong=\"G1063\"* we|strong=\"G3754\"* all|strong=\"G3956\"* partake|strong=\"G3348\"* of|strong=\"G1537\"* the|strong=\"G3956\"* one|strong=\"G1520\"* loaf of|strong=\"G1537\"* bread." + }, + { + "verseNum": 18, + "text": "Consider Israel|strong=\"G2474\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G2596\"* flesh|strong=\"G4561\"*. Don’t|strong=\"G3588\"* those|strong=\"G3588\"* who|strong=\"G3588\"* eat|strong=\"G2068\"* the|strong=\"G2596\"* sacrifices|strong=\"G2378\"* participate in|strong=\"G2596\"* the|strong=\"G2596\"* altar|strong=\"G2379\"*?" + }, + { + "verseNum": 19, + "text": "What|strong=\"G5101\"* am|strong=\"G1510\"* I|strong=\"G3754\"* saying|strong=\"G3754\"* then|strong=\"G3767\"*? That|strong=\"G3754\"* a|strong=\"G1510\"* thing|strong=\"G5100\"* sacrificed|strong=\"G1494\"* to|strong=\"G5100\"* idols|strong=\"G1497\"* is|strong=\"G1510\"* anything|strong=\"G5100\"*, or|strong=\"G2228\"* that|strong=\"G3754\"* an|strong=\"G2228\"* idol|strong=\"G1497\"* is|strong=\"G1510\"* anything|strong=\"G5100\"*?" + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* I|strong=\"G3739\"* say|strong=\"G2532\"* that|strong=\"G3754\"* the|strong=\"G2532\"* things|strong=\"G3588\"* which|strong=\"G3739\"* the|strong=\"G2532\"* Gentiles sacrifice|strong=\"G2380\"*, they|strong=\"G2532\"* sacrifice|strong=\"G2380\"* to|strong=\"G2532\"* demons|strong=\"G1140\"* and|strong=\"G2532\"* not|strong=\"G3756\"* to|strong=\"G2532\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* I|strong=\"G3739\"* don’t|strong=\"G3588\"* desire|strong=\"G2309\"* that|strong=\"G3754\"* you|strong=\"G5210\"* would|strong=\"G2309\"* have|strong=\"G2309\"* fellowship|strong=\"G2844\"* with|strong=\"G2532\"* demons|strong=\"G1140\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"G2532\"* can|strong=\"G1410\"*’t both|strong=\"G2532\"* drink|strong=\"G4095\"* the|strong=\"G2532\"* cup|strong=\"G4221\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* the|strong=\"G2532\"* cup|strong=\"G4221\"* of|strong=\"G2532\"* demons|strong=\"G1140\"*. You|strong=\"G2532\"* can|strong=\"G1410\"*’t both|strong=\"G2532\"* partake|strong=\"G3348\"* of|strong=\"G2532\"* the|strong=\"G2532\"* table|strong=\"G5132\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* table|strong=\"G5132\"* of|strong=\"G2532\"* demons|strong=\"G1140\"*." + }, + { + "verseNum": 22, + "text": "Or|strong=\"G2228\"* do|strong=\"G3361\"* we|strong=\"G1510\"* provoke|strong=\"G3863\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"* to|strong=\"G3361\"* jealousy|strong=\"G3863\"*? Are|strong=\"G1510\"* we|strong=\"G1510\"* stronger|strong=\"G2478\"* than|strong=\"G2228\"* he|strong=\"G3588\"*?" + }, + { + "verseNum": 23, + "text": "“All|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3956\"* lawful|strong=\"G1832\"* for|strong=\"G1832\"* me|strong=\"G3756\"*,” but not|strong=\"G3756\"* all|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3956\"* profitable|strong=\"G4851\"*. “All|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3956\"* lawful|strong=\"G1832\"* for|strong=\"G1832\"* me|strong=\"G3756\"*,” but not|strong=\"G3756\"* all|strong=\"G3956\"* things|strong=\"G3956\"* build|strong=\"G3618\"* up|strong=\"G3618\"*." + }, + { + "verseNum": 24, + "text": "Let no|strong=\"G3367\"* one|strong=\"G3367\"* seek|strong=\"G2212\"* his|strong=\"G1438\"* own|strong=\"G1438\"*, but|strong=\"G3588\"* each|strong=\"G1438\"* one|strong=\"G3367\"* his|strong=\"G1438\"* neighbor|strong=\"G2087\"*’s good|strong=\"G3588\"*." + }, + { + "verseNum": 25, + "text": "Whatever|strong=\"G3956\"* is|strong=\"G3588\"* sold|strong=\"G4453\"* in|strong=\"G1722\"* the|strong=\"G1722\"* butcher shop, eat|strong=\"G2068\"*, asking no|strong=\"G3367\"* question for|strong=\"G1223\"* the|strong=\"G1722\"* sake|strong=\"G1223\"* of|strong=\"G1223\"* conscience|strong=\"G4893\"*," + }, + { + "verseNum": 26, + "text": "for|strong=\"G1063\"* “the|strong=\"G2532\"* earth|strong=\"G1093\"* is|strong=\"G3588\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"*, and|strong=\"G2532\"* its fullness|strong=\"G4138\"*.”+ 10:26 Psalms 24:1 *" + }, + { + "verseNum": 27, + "text": "But|strong=\"G2532\"* if|strong=\"G1487\"* one|strong=\"G5100\"* of|strong=\"G1223\"* those|strong=\"G3588\"* who|strong=\"G3588\"* don’t|strong=\"G3588\"* believe invites|strong=\"G2564\"* you|strong=\"G5210\"* to|strong=\"G2532\"* a|strong=\"G2532\"* meal, and|strong=\"G2532\"* you|strong=\"G5210\"* are|strong=\"G3588\"* inclined to|strong=\"G2532\"* go|strong=\"G4198\"*, eat|strong=\"G2068\"* whatever|strong=\"G3956\"* is|strong=\"G3588\"* set|strong=\"G3908\"* before|strong=\"G3908\"* you|strong=\"G5210\"*, asking no|strong=\"G3367\"* questions for|strong=\"G1223\"* the|strong=\"G2532\"* sake|strong=\"G1223\"* of|strong=\"G1223\"* conscience|strong=\"G4893\"*." + }, + { + "verseNum": 28, + "text": "But|strong=\"G1161\"* if|strong=\"G1437\"* anyone|strong=\"G5100\"* says|strong=\"G3004\"* to|strong=\"G2532\"* you|strong=\"G5210\"*, “This|strong=\"G3778\"* was|strong=\"G1510\"* offered to|strong=\"G2532\"* idols|strong=\"G1494\"*,” don’t|strong=\"G3588\"* eat|strong=\"G2068\"* it|strong=\"G2532\"* for|strong=\"G1223\"* the|strong=\"G2532\"* sake|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* one|strong=\"G5100\"* who|strong=\"G3588\"* told|strong=\"G3004\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* for|strong=\"G1223\"* the|strong=\"G2532\"* sake|strong=\"G1223\"* of|strong=\"G1223\"* conscience|strong=\"G4893\"*. For|strong=\"G1223\"* “the|strong=\"G2532\"* earth|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"*’s, with|strong=\"G1223\"* all|strong=\"G2532\"* its|strong=\"G1223\"* fullness.”" + }, + { + "verseNum": 29, + "text": "Conscience|strong=\"G4893\"*, I|strong=\"G1473\"* say|strong=\"G3004\"*, not|strong=\"G3780\"* your|strong=\"G5259\"* own|strong=\"G1438\"*, but|strong=\"G1161\"* the|strong=\"G1161\"* other|strong=\"G2087\"*’s conscience|strong=\"G4893\"*. For|strong=\"G1063\"* why|strong=\"G2444\"* is|strong=\"G3588\"* my|strong=\"G1473\"* liberty|strong=\"G1657\"* judged|strong=\"G2919\"* by|strong=\"G5259\"* another|strong=\"G2087\"* conscience|strong=\"G4893\"*?" + }, + { + "verseNum": 30, + "text": "If|strong=\"G1487\"* I|strong=\"G1473\"* partake|strong=\"G3348\"* with|strong=\"G5485\"* thankfulness|strong=\"G5485\"*, why|strong=\"G5101\"* am|strong=\"G1473\"* I|strong=\"G1473\"* denounced for|strong=\"G5228\"* something|strong=\"G5101\"* I|strong=\"G1473\"* give|strong=\"G2168\"* thanks|strong=\"G2168\"* for|strong=\"G5228\"*?" + }, + { + "verseNum": 31, + "text": "Whether|strong=\"G1535\"* therefore|strong=\"G3767\"* you|strong=\"G4160\"* eat|strong=\"G2068\"* or|strong=\"G1535\"* drink|strong=\"G4095\"*, or|strong=\"G1535\"* whatever|strong=\"G3956\"* you|strong=\"G4160\"* do|strong=\"G4160\"*, do|strong=\"G4160\"* all|strong=\"G3956\"* to|strong=\"G1519\"* the|strong=\"G1519\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 32, + "text": "Give|strong=\"G1096\"* no|strong=\"G2532\"* occasion for|strong=\"G2532\"* stumbling, whether|strong=\"G2532\"* to|strong=\"G2532\"* Jews|strong=\"G2453\"*, to|strong=\"G2532\"* Greeks|strong=\"G1672\"*, or|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"* of|strong=\"G2316\"* God|strong=\"G2316\"*;" + }, + { + "verseNum": 33, + "text": "even|strong=\"G2531\"* as|strong=\"G2531\"* I|strong=\"G2504\"* also|strong=\"G2504\"* please all|strong=\"G3956\"* men|strong=\"G3956\"* in|strong=\"G3956\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, not|strong=\"G3361\"* seeking|strong=\"G2212\"* my|strong=\"G2212\"* own|strong=\"G1683\"* profit|strong=\"G4851\"*, but|strong=\"G3361\"* the|strong=\"G3956\"* profit|strong=\"G4851\"* of|strong=\"G3956\"* the|strong=\"G3956\"* many|strong=\"G4183\"*, that|strong=\"G2443\"* they|strong=\"G3588\"* may|strong=\"G2443\"* be|strong=\"G3361\"* saved|strong=\"G4982\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Be|strong=\"G1096\"* imitators|strong=\"G3402\"* of|strong=\"G1096\"* me|strong=\"G1473\"*, even|strong=\"G2531\"* as|strong=\"G2531\"* I|strong=\"G1473\"* also|strong=\"G2504\"* am|strong=\"G1473\"* of|strong=\"G1096\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"G1161\"* I|strong=\"G1473\"* praise|strong=\"G1867\"* you|strong=\"G5210\"*, brothers, that|strong=\"G3754\"* you|strong=\"G5210\"* remember|strong=\"G3403\"* me|strong=\"G1473\"* in|strong=\"G2532\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G2532\"* hold|strong=\"G2722\"* firm the|strong=\"G2532\"* traditions|strong=\"G3862\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* I|strong=\"G1473\"* delivered|strong=\"G3860\"* them|strong=\"G3588\"* to|strong=\"G2532\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* I|strong=\"G1161\"* would|strong=\"G2309\"* have|strong=\"G2309\"* you|strong=\"G5210\"* know|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G3956\"* head|strong=\"G2776\"*+ 11:3 or, origin* of|strong=\"G2316\"* every|strong=\"G3956\"* man|strong=\"G3956\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"*, and|strong=\"G1161\"* the|strong=\"G3956\"* head|strong=\"G2776\"*+ 11:3 or, origin* of|strong=\"G2316\"* the|strong=\"G3956\"* woman|strong=\"G1135\"* is|strong=\"G1510\"* man|strong=\"G3956\"*, and|strong=\"G1161\"* the|strong=\"G3956\"* head|strong=\"G2776\"*+ 11:3 or, origin* of|strong=\"G2316\"* Christ|strong=\"G5547\"* is|strong=\"G1510\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 4, + "text": "Every|strong=\"G3956\"* man|strong=\"G3956\"* praying|strong=\"G4336\"* or|strong=\"G2228\"* prophesying|strong=\"G4395\"*, having|strong=\"G2192\"* his|strong=\"G3956\"* head|strong=\"G2776\"* covered|strong=\"G2596\"*, dishonors his|strong=\"G3956\"* head|strong=\"G2776\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* every|strong=\"G3956\"* woman|strong=\"G1135\"* praying|strong=\"G4336\"* or|strong=\"G2228\"* prophesying|strong=\"G4395\"* with|strong=\"G2532\"* her|strong=\"G3956\"* head|strong=\"G2776\"* uncovered dishonors her|strong=\"G3956\"* head|strong=\"G2776\"*. For|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G1510\"* one|strong=\"G1520\"* and|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G2532\"* thing|strong=\"G1520\"* as|strong=\"G1161\"* if|strong=\"G2532\"* she|strong=\"G2532\"* were|strong=\"G1510\"* shaved|strong=\"G3587\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* a|strong=\"G2532\"* woman|strong=\"G1135\"* is|strong=\"G3588\"* not|strong=\"G3756\"* covered|strong=\"G2619\"*, let|strong=\"G1161\"* her|strong=\"G3588\"* hair|strong=\"G2751\"* also|strong=\"G2532\"* be|strong=\"G2532\"* cut|strong=\"G2532\"* off|strong=\"G2751\"*. But|strong=\"G1161\"* if|strong=\"G1487\"* it|strong=\"G2532\"* is|strong=\"G3588\"* shameful for|strong=\"G1063\"* a|strong=\"G2532\"* woman|strong=\"G1135\"* to|strong=\"G2532\"* have|strong=\"G2532\"* her|strong=\"G3588\"* hair|strong=\"G2751\"* cut|strong=\"G2532\"* off|strong=\"G2751\"* or|strong=\"G2228\"* be|strong=\"G2532\"* shaved|strong=\"G3587\"*, let|strong=\"G1161\"* her|strong=\"G3588\"* be|strong=\"G2532\"* covered|strong=\"G2619\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* a|strong=\"G2532\"* man|strong=\"G3756\"* indeed|strong=\"G2532\"* ought|strong=\"G3784\"* not|strong=\"G3756\"* to|strong=\"G2532\"* have|strong=\"G2532\"* his|strong=\"G2532\"* head|strong=\"G2776\"* covered|strong=\"G2619\"*, because|strong=\"G1063\"* he|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* image|strong=\"G1504\"* and|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, but|strong=\"G1161\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* is|strong=\"G1510\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* the|strong=\"G2532\"* man|strong=\"G3756\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* man|strong=\"G3756\"* is|strong=\"G1510\"* not|strong=\"G3756\"* from|strong=\"G1537\"* woman|strong=\"G1135\"*, but|strong=\"G1063\"* woman|strong=\"G1135\"* from|strong=\"G1537\"* man|strong=\"G3756\"*;" + }, + { + "verseNum": 9, + "text": "for|strong=\"G1063\"* man|strong=\"G3756\"* wasn’t|strong=\"G3588\"* created|strong=\"G2936\"* for|strong=\"G1063\"* the|strong=\"G2532\"* woman|strong=\"G1135\"*, but|strong=\"G2532\"* woman|strong=\"G1135\"* for|strong=\"G1063\"* the|strong=\"G2532\"* man|strong=\"G3756\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1223\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* the|strong=\"G1909\"* woman|strong=\"G1135\"* ought|strong=\"G3784\"* to|strong=\"G1909\"* have|strong=\"G2192\"* authority|strong=\"G1849\"* over|strong=\"G1909\"* her|strong=\"G2192\"* own head|strong=\"G2776\"*, because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G1909\"* angels." + }, + { + "verseNum": 11, + "text": "Nevertheless|strong=\"G4133\"*, neither|strong=\"G3777\"* is|strong=\"G2962\"* the|strong=\"G1722\"* woman|strong=\"G1135\"* independent|strong=\"G5565\"* of|strong=\"G2962\"* the|strong=\"G1722\"* man, nor|strong=\"G3777\"* the|strong=\"G1722\"* man independent|strong=\"G5565\"* of|strong=\"G2962\"* the|strong=\"G1722\"* woman|strong=\"G1135\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* as|strong=\"G5618\"* woman|strong=\"G1135\"* came|strong=\"G2532\"* from|strong=\"G1537\"* man|strong=\"G3956\"*, so|strong=\"G3779\"* a|strong=\"G2532\"* man|strong=\"G3956\"* also|strong=\"G2532\"* comes|strong=\"G2532\"* through|strong=\"G1223\"* a|strong=\"G2532\"* woman|strong=\"G1135\"*; but|strong=\"G1161\"* all|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3588\"* from|strong=\"G1537\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 13, + "text": "Judge|strong=\"G2919\"* for|strong=\"G1722\"* yourselves|strong=\"G4771\"*. Is|strong=\"G1510\"* it|strong=\"G1510\"* appropriate that|strong=\"G3588\"* a|strong=\"G1722\"* woman|strong=\"G1135\"* pray|strong=\"G4336\"* to|strong=\"G1722\"* God|strong=\"G2316\"* unveiled?" + }, + { + "verseNum": 14, + "text": "Doesn’t|strong=\"G3588\"* even|strong=\"G3761\"* nature|strong=\"G5449\"* itself teach|strong=\"G1321\"* you|strong=\"G5210\"* that|strong=\"G3754\"* if|strong=\"G1437\"* a|strong=\"G1510\"* man has|strong=\"G3748\"* long|strong=\"G2863\"* hair|strong=\"G2863\"*, it|strong=\"G3754\"* is|strong=\"G1510\"* a|strong=\"G1510\"* dishonor to|strong=\"G1510\"* him|strong=\"G3588\"*?" + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* if|strong=\"G1437\"* a|strong=\"G1510\"* woman|strong=\"G1135\"* has|strong=\"G3748\"* long|strong=\"G2863\"* hair|strong=\"G2863\"*, it|strong=\"G3754\"* is|strong=\"G1510\"* a|strong=\"G1510\"* glory|strong=\"G1391\"* to|strong=\"G1325\"* her|strong=\"G1437\"*, for|strong=\"G3754\"* her|strong=\"G1437\"* hair|strong=\"G2863\"* is|strong=\"G1510\"* given|strong=\"G1325\"* to|strong=\"G1325\"* her|strong=\"G1437\"* for|strong=\"G3754\"* a|strong=\"G1510\"* covering|strong=\"G4018\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* any|strong=\"G5100\"* man|strong=\"G5100\"* seems|strong=\"G1380\"* to|strong=\"G3756\"* be|strong=\"G1510\"* contentious|strong=\"G5380\"*, we|strong=\"G2249\"* have|strong=\"G2192\"* no|strong=\"G3756\"* such|strong=\"G5108\"* custom|strong=\"G4914\"*, neither|strong=\"G3761\"* do|strong=\"G1380\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* assemblies|strong=\"G1577\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* in|strong=\"G1519\"* giving|strong=\"G3853\"* you|strong=\"G3754\"* this|strong=\"G3778\"* command|strong=\"G3853\"* I|strong=\"G1161\"* don’t|strong=\"G3588\"* praise|strong=\"G1867\"* you|strong=\"G3754\"*, because|strong=\"G3754\"* you|strong=\"G3754\"* come|strong=\"G4905\"* together|strong=\"G4905\"* not|strong=\"G3756\"* for|strong=\"G3754\"* the|strong=\"G1519\"* better|strong=\"G2909\"* but|strong=\"G1161\"* for|strong=\"G3754\"* the|strong=\"G1519\"* worse|strong=\"G2276\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* first|strong=\"G4413\"* of|strong=\"G2532\"* all|strong=\"G2532\"*, when|strong=\"G2532\"* you|strong=\"G5210\"* come|strong=\"G4905\"* together|strong=\"G4905\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"*, I|strong=\"G2532\"* hear that|strong=\"G2532\"* divisions|strong=\"G4978\"* exist|strong=\"G5225\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* partly|strong=\"G3313\"* believe|strong=\"G4100\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* there|strong=\"G2532\"* also|strong=\"G2532\"* must|strong=\"G1163\"* be|strong=\"G1096\"* factions among|strong=\"G1722\"* you|strong=\"G5210\"*, that|strong=\"G2443\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* approved|strong=\"G1384\"* may|strong=\"G2532\"* be|strong=\"G1096\"* revealed|strong=\"G5318\"* among|strong=\"G1722\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"G3767\"* therefore|strong=\"G3767\"* you|strong=\"G5210\"* assemble|strong=\"G4905\"* yourselves|strong=\"G4771\"* together|strong=\"G4905\"*, it|strong=\"G1510\"* is|strong=\"G1510\"* not|strong=\"G3756\"* the|strong=\"G1909\"* Lord|strong=\"G3588\"*’s supper|strong=\"G1173\"* that|strong=\"G3588\"* you|strong=\"G5210\"* eat|strong=\"G2068\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"G1063\"* in|strong=\"G1722\"* your|strong=\"G2532\"* eating|strong=\"G2068\"* each|strong=\"G1538\"* one|strong=\"G1538\"* takes|strong=\"G4301\"* his|strong=\"G1722\"* own|strong=\"G2398\"* supper|strong=\"G1173\"* first|strong=\"G3588\"*. One|strong=\"G1538\"* is|strong=\"G3588\"* hungry|strong=\"G3983\"*, and|strong=\"G2532\"* another|strong=\"G3739\"* is|strong=\"G3588\"* drunken|strong=\"G3184\"*." + }, + { + "verseNum": 22, + "text": "What|strong=\"G5101\"*, don’t|strong=\"G3588\"* you|strong=\"G5210\"* have|strong=\"G2192\"* houses|strong=\"G3614\"* to|strong=\"G1519\"* eat|strong=\"G2068\"* and|strong=\"G2532\"* to|strong=\"G1519\"* drink|strong=\"G4095\"* in|strong=\"G1722\"*? Or|strong=\"G2228\"* do|strong=\"G5101\"* you|strong=\"G5210\"* despise|strong=\"G2706\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* assembly|strong=\"G1577\"* and|strong=\"G2532\"* put|strong=\"G2617\"* them|strong=\"G3588\"* to|strong=\"G1519\"* shame|strong=\"G2617\"* who|strong=\"G5101\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* enough? What|strong=\"G5101\"* shall|strong=\"G2532\"* I|strong=\"G2532\"* tell|strong=\"G3004\"* you|strong=\"G5210\"*? Shall|strong=\"G2532\"* I|strong=\"G2532\"* praise|strong=\"G1867\"* you|strong=\"G5210\"*? In|strong=\"G1722\"* this|strong=\"G3778\"* I|strong=\"G2532\"* don’t|strong=\"G3588\"* praise|strong=\"G1867\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* received|strong=\"G2983\"* from|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* that|strong=\"G3754\"* which|strong=\"G3739\"* also|strong=\"G2532\"* I|strong=\"G1473\"* delivered|strong=\"G3860\"* to|strong=\"G2532\"* you|strong=\"G5210\"*, that|strong=\"G3754\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* on|strong=\"G1722\"* the|strong=\"G1722\"* night|strong=\"G3571\"* in|strong=\"G1722\"* which|strong=\"G3739\"* he|strong=\"G2532\"* was|strong=\"G3588\"* betrayed|strong=\"G3860\"* took|strong=\"G2983\"* bread." + }, + { + "verseNum": 24, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* given|strong=\"G2168\"* thanks|strong=\"G2168\"*, he|strong=\"G2532\"* broke|strong=\"G2806\"* it|strong=\"G2532\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Take|strong=\"G2532\"\\+w*, eat. \\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w body|strong=\"G4983\"\\+w*, \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w broken|strong=\"G2806\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w Do|strong=\"G4160\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w in|strong=\"G1519\"\\+w* memory \\+w of|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 25, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* same|strong=\"G3778\"* way|strong=\"G1722\"* he|strong=\"G2532\"* also|strong=\"G2532\"* took|strong=\"G2532\"* the|strong=\"G1722\"* cup|strong=\"G4221\"* after|strong=\"G3326\"* supper|strong=\"G1172\"*, saying|strong=\"G3004\"*, “\\+w This|strong=\"G3778\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w covenant|strong=\"G1242\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1699\"\\+w* blood. \\+w Do|strong=\"G4160\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w as|strong=\"G1519\"\\+w* \\+w often|strong=\"G3740\"\\+w* \\+w as|strong=\"G1519\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w drink|strong=\"G4095\"\\+w*, \\+w in|strong=\"G1722\"\\+w* memory \\+w of|strong=\"G2532\"\\+w* \\+w me|strong=\"G3004\"\\+w*.”*" + }, + { + "verseNum": 26, + "text": "For|strong=\"G1063\"* as|strong=\"G2532\"* often|strong=\"G3740\"* as|strong=\"G2532\"* you|strong=\"G3739\"* eat|strong=\"G2068\"* this|strong=\"G3778\"* bread and|strong=\"G2532\"* drink|strong=\"G4095\"* this|strong=\"G3778\"* cup|strong=\"G4221\"*, you|strong=\"G3739\"* proclaim|strong=\"G2605\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* death|strong=\"G2288\"* until|strong=\"G2532\"* he|strong=\"G2532\"* comes|strong=\"G2064\"*." + }, + { + "verseNum": 27, + "text": "Therefore|strong=\"G5620\"* whoever|strong=\"G3739\"* eats|strong=\"G2068\"* this|strong=\"G3588\"* bread or|strong=\"G2228\"* drinks|strong=\"G4095\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* cup|strong=\"G4221\"* in|strong=\"G2532\"* a|strong=\"G2532\"* way|strong=\"G3739\"* unworthy of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* will|strong=\"G1510\"* be|strong=\"G1510\"* guilty|strong=\"G1777\"* of|strong=\"G2532\"* the|strong=\"G2532\"* body|strong=\"G4983\"* and|strong=\"G2532\"* the|strong=\"G2532\"* blood of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 28, + "text": "But|strong=\"G1161\"* let|strong=\"G1161\"* a|strong=\"G2532\"* man examine|strong=\"G1381\"* himself|strong=\"G1438\"*, and|strong=\"G2532\"* so|strong=\"G3779\"* let|strong=\"G1161\"* him|strong=\"G3588\"* eat|strong=\"G2068\"* of|strong=\"G1537\"* the|strong=\"G2532\"* bread and|strong=\"G2532\"* drink|strong=\"G4095\"* of|strong=\"G1537\"* the|strong=\"G2532\"* cup|strong=\"G4221\"*." + }, + { + "verseNum": 29, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* who|strong=\"G3588\"* eats|strong=\"G2068\"* and|strong=\"G2532\"* drinks|strong=\"G4095\"* in|strong=\"G2532\"* an|strong=\"G2532\"* unworthy way|strong=\"G2917\"* eats|strong=\"G2068\"* and|strong=\"G2532\"* drinks|strong=\"G4095\"* judgment|strong=\"G2917\"* to|strong=\"G2532\"* himself|strong=\"G1438\"* if|strong=\"G2532\"* he|strong=\"G2532\"* doesn’t|strong=\"G3588\"* discern|strong=\"G1252\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"*’s body|strong=\"G4983\"*." + }, + { + "verseNum": 30, + "text": "For|strong=\"G1223\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* many|strong=\"G4183\"* among|strong=\"G1722\"* you|strong=\"G5210\"* are|strong=\"G3778\"* weak and|strong=\"G2532\"* sickly, and|strong=\"G2532\"* not|strong=\"G1223\"* a|strong=\"G2532\"* few|strong=\"G1722\"* sleep|strong=\"G2837\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"G1161\"* if|strong=\"G1487\"* we|strong=\"G1161\"* discerned ourselves|strong=\"G1438\"*, we|strong=\"G1161\"* wouldn’t be|strong=\"G3756\"* judged|strong=\"G2919\"*." + }, + { + "verseNum": 32, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* we|strong=\"G1161\"* are|strong=\"G3588\"* judged|strong=\"G2919\"*, we|strong=\"G1161\"* are|strong=\"G3588\"* disciplined|strong=\"G3811\"* by|strong=\"G5259\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"*, that|strong=\"G2443\"* we|strong=\"G1161\"* may|strong=\"G2443\"* not|strong=\"G3361\"* be|strong=\"G3361\"* condemned|strong=\"G2632\"* with|strong=\"G4862\"* the|strong=\"G1161\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 33, + "text": "Therefore|strong=\"G5620\"*, my|strong=\"G1473\"* brothers, when|strong=\"G4905\"* you|strong=\"G1519\"* come|strong=\"G4905\"* together|strong=\"G4905\"* to|strong=\"G1519\"* eat|strong=\"G2068\"*, wait|strong=\"G1551\"* for|strong=\"G1519\"* one|strong=\"G3588\"* another|strong=\"G3588\"*." + }, + { + "verseNum": 34, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* anyone|strong=\"G5100\"* is|strong=\"G3588\"* hungry|strong=\"G3983\"*, let|strong=\"G1161\"* him|strong=\"G3588\"* eat|strong=\"G2068\"* at|strong=\"G1722\"* home|strong=\"G3624\"*, lest|strong=\"G3361\"* your|strong=\"G1487\"* coming|strong=\"G2064\"* together|strong=\"G4905\"* be|strong=\"G3361\"* for|strong=\"G1519\"* judgment|strong=\"G2917\"*. The|strong=\"G1722\"* rest|strong=\"G3062\"* I|strong=\"G1161\"* will|strong=\"G5100\"* set|strong=\"G2443\"* in|strong=\"G1722\"* order|strong=\"G2443\"* whenever|strong=\"G5613\"* I|strong=\"G1161\"* come|strong=\"G2064\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* concerning|strong=\"G4012\"* spiritual|strong=\"G4152\"* things|strong=\"G3588\"*, brothers, I|strong=\"G1161\"* don’t|strong=\"G3588\"* want|strong=\"G2309\"* you|strong=\"G5210\"* to|strong=\"G2309\"* be|strong=\"G3756\"* ignorant." + }, + { + "verseNum": 2, + "text": "You|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* when|strong=\"G3753\"* you|strong=\"G3754\"* were|strong=\"G1510\"* heathen|strong=\"G1484\"*,+ 12:2 or Gentiles* you|strong=\"G3754\"* were|strong=\"G1510\"* led away to|strong=\"G4314\"* those|strong=\"G3588\"* mute idols|strong=\"G1497\"*, however|strong=\"G5613\"* you|strong=\"G3754\"* might|strong=\"G1484\"* be|strong=\"G1510\"* led." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"G1352\"* I|strong=\"G2532\"* make|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G2532\"* you|strong=\"G5210\"* that|strong=\"G3754\"* no|strong=\"G3762\"* man|strong=\"G3762\"* speaking|strong=\"G2980\"* by|strong=\"G1722\"* God|strong=\"G2316\"*’s|strong=\"G2962\"* Spirit|strong=\"G4151\"* says|strong=\"G3004\"*, “Jesus|strong=\"G2424\"* is|strong=\"G2316\"* accursed.” No|strong=\"G3762\"* one|strong=\"G3762\"* can|strong=\"G1410\"* say|strong=\"G3004\"*, “Jesus|strong=\"G2424\"* is|strong=\"G2316\"* Lord|strong=\"G2962\"*,” but|strong=\"G2532\"* by|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"G1161\"* there|strong=\"G1161\"* are|strong=\"G1510\"* various kinds of|strong=\"G4151\"* gifts|strong=\"G5486\"*, but|strong=\"G1161\"* the|strong=\"G1161\"* same Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 5, + "text": "There|strong=\"G2532\"* are|strong=\"G1510\"* various kinds of|strong=\"G2532\"* service|strong=\"G1248\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 6, + "text": "There|strong=\"G2532\"* are|strong=\"G1510\"* various kinds|strong=\"G3956\"* of|strong=\"G2316\"* workings, but|strong=\"G1161\"* the|strong=\"G1722\"* same|strong=\"G2532\"* God|strong=\"G2316\"* who|strong=\"G3588\"* works|strong=\"G1754\"* all|strong=\"G3956\"* things|strong=\"G3956\"* in|strong=\"G1722\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* to|strong=\"G4314\"* each|strong=\"G1538\"* one|strong=\"G1538\"* is|strong=\"G3588\"* given|strong=\"G1325\"* the|strong=\"G1161\"* manifestation|strong=\"G5321\"* of|strong=\"G4151\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"* for|strong=\"G4314\"* the|strong=\"G1161\"* profit|strong=\"G4851\"* of|strong=\"G4151\"* all|strong=\"G1161\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* to|strong=\"G2596\"* one|strong=\"G3739\"* is|strong=\"G3588\"* given|strong=\"G1325\"* through|strong=\"G1223\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"* the|strong=\"G1161\"* word|strong=\"G3056\"* of|strong=\"G3056\"* wisdom|strong=\"G4678\"*, and|strong=\"G1161\"* to|strong=\"G2596\"* another|strong=\"G3739\"* the|strong=\"G1161\"* word|strong=\"G3056\"* of|strong=\"G3056\"* knowledge|strong=\"G1108\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1161\"* same|strong=\"G3739\"* Spirit|strong=\"G4151\"*," + }, + { + "verseNum": 9, + "text": "to|strong=\"G1722\"* another|strong=\"G2087\"* faith|strong=\"G4102\"* by|strong=\"G1722\"* the|strong=\"G1722\"* same Spirit|strong=\"G4151\"*, and|strong=\"G1161\"* to|strong=\"G1722\"* another|strong=\"G2087\"* gifts|strong=\"G5486\"* of|strong=\"G4151\"* healings|strong=\"G2386\"* by|strong=\"G1722\"* the|strong=\"G1722\"* same Spirit|strong=\"G4151\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"G1161\"* to|strong=\"G1161\"* another|strong=\"G2087\"* workings of|strong=\"G4151\"* miracles|strong=\"G1411\"*, and|strong=\"G1161\"* to|strong=\"G1161\"* another|strong=\"G2087\"* prophecy|strong=\"G4394\"*, and|strong=\"G1161\"* to|strong=\"G1161\"* another|strong=\"G2087\"* discerning|strong=\"G1253\"* of|strong=\"G4151\"* spirits|strong=\"G4151\"*, to|strong=\"G1161\"* another|strong=\"G2087\"* different|strong=\"G2087\"* kinds|strong=\"G1085\"* of|strong=\"G4151\"* languages|strong=\"G1100\"*, and|strong=\"G1161\"* to|strong=\"G1161\"* another|strong=\"G2087\"* the|strong=\"G1161\"* interpretation|strong=\"G2058\"* of|strong=\"G4151\"* languages|strong=\"G1100\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* one|strong=\"G1520\"* and|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G3778\"* Spirit|strong=\"G4151\"* produces all|strong=\"G3956\"* of|strong=\"G4151\"* these|strong=\"G3778\"*, distributing|strong=\"G1244\"* to|strong=\"G2532\"* each|strong=\"G1538\"* one|strong=\"G1520\"* separately as|strong=\"G2531\"* he|strong=\"G2532\"* desires|strong=\"G1014\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* as|strong=\"G1161\"* the|strong=\"G2532\"* body|strong=\"G4983\"* is|strong=\"G1510\"* one|strong=\"G1520\"* and|strong=\"G2532\"* has|strong=\"G2192\"* many|strong=\"G4183\"* members|strong=\"G3196\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* members|strong=\"G3196\"* of|strong=\"G2532\"* the|strong=\"G2532\"* body|strong=\"G4983\"*, being|strong=\"G1510\"* many|strong=\"G4183\"*, are|strong=\"G1510\"* one|strong=\"G1520\"* body|strong=\"G4983\"*; so|strong=\"G3779\"* also|strong=\"G2532\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* in|strong=\"G1722\"* one|strong=\"G1520\"* Spirit|strong=\"G4151\"* we|strong=\"G2249\"* were|strong=\"G2532\"* all|strong=\"G3956\"* baptized into|strong=\"G1519\"* one|strong=\"G1520\"* body|strong=\"G4983\"*, whether|strong=\"G1535\"* Jews|strong=\"G2453\"* or|strong=\"G1535\"* Greeks|strong=\"G1672\"*, whether|strong=\"G1535\"* bond|strong=\"G1401\"* or|strong=\"G1535\"* free|strong=\"G1658\"*; and|strong=\"G2532\"* were|strong=\"G2532\"* all|strong=\"G3956\"* given to|strong=\"G1519\"* drink|strong=\"G4222\"* into|strong=\"G1519\"* one|strong=\"G1520\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* the|strong=\"G2532\"* body|strong=\"G4983\"* is|strong=\"G1510\"* not|strong=\"G3756\"* one|strong=\"G1520\"* member|strong=\"G3196\"*, but|strong=\"G2532\"* many|strong=\"G4183\"*." + }, + { + "verseNum": 15, + "text": "If|strong=\"G1437\"* the|strong=\"G1537\"* foot|strong=\"G4228\"* would|strong=\"G1437\"* say|strong=\"G3004\"*, “Because|strong=\"G3754\"* I|strong=\"G1437\"*’m not|strong=\"G3756\"* the|strong=\"G1537\"* hand|strong=\"G5495\"*, I|strong=\"G1437\"*’m not|strong=\"G3756\"* part of|strong=\"G1537\"* the|strong=\"G1537\"* body|strong=\"G4983\"*,” it|strong=\"G3754\"* is|strong=\"G1510\"* not|strong=\"G3756\"* therefore|strong=\"G3844\"* not|strong=\"G3756\"* part of|strong=\"G1537\"* the|strong=\"G1537\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 16, + "text": "If|strong=\"G1437\"* the|strong=\"G2532\"* ear|strong=\"G3775\"* would|strong=\"G2532\"* say|strong=\"G3004\"*, “Because|strong=\"G3754\"* I|strong=\"G2532\"*’m not|strong=\"G3756\"* the|strong=\"G2532\"* eye|strong=\"G3788\"*, I|strong=\"G2532\"*’m not|strong=\"G3756\"* part|strong=\"G2532\"* of|strong=\"G1537\"* the|strong=\"G2532\"* body|strong=\"G4983\"*,” it|strong=\"G2532\"*’s not|strong=\"G3756\"* therefore|strong=\"G3844\"* not|strong=\"G3756\"* part|strong=\"G2532\"* of|strong=\"G1537\"* the|strong=\"G2532\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 17, + "text": "If|strong=\"G1487\"* the|strong=\"G3588\"* whole|strong=\"G3650\"* body|strong=\"G4983\"* were|strong=\"G3588\"* an|strong=\"G3788\"* eye|strong=\"G3788\"*, where|strong=\"G4226\"* would the|strong=\"G3588\"* hearing be|strong=\"G3588\"*? If|strong=\"G1487\"* the|strong=\"G3588\"* whole|strong=\"G3650\"* were|strong=\"G3588\"* hearing, where|strong=\"G4226\"* would the|strong=\"G3588\"* smelling|strong=\"G3750\"* be|strong=\"G3588\"*?" + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* God|strong=\"G2316\"* has|strong=\"G2316\"* set|strong=\"G5087\"* the|strong=\"G1722\"* members|strong=\"G3196\"*, each|strong=\"G1538\"* one|strong=\"G1520\"* of|strong=\"G2316\"* them|strong=\"G3588\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* body|strong=\"G4983\"*, just|strong=\"G2531\"* as|strong=\"G2531\"* he|strong=\"G1161\"* desired|strong=\"G2309\"*." + }, + { + "verseNum": 19, + "text": "If|strong=\"G1487\"* they|strong=\"G1161\"* were|strong=\"G1510\"* all|strong=\"G3956\"* one|strong=\"G1520\"* member|strong=\"G3196\"*, where|strong=\"G4226\"* would|strong=\"G1510\"* the|strong=\"G3956\"* body|strong=\"G4983\"* be|strong=\"G1510\"*?" + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* they|strong=\"G1161\"* are|strong=\"G3568\"* many|strong=\"G4183\"* members|strong=\"G3196\"*, but|strong=\"G1161\"* one|strong=\"G1520\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"G1161\"* eye|strong=\"G3788\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* tell|strong=\"G3004\"* the|strong=\"G1161\"* hand|strong=\"G5495\"*, “I|strong=\"G1161\"* have|strong=\"G2192\"* no|strong=\"G3756\"* need|strong=\"G5532\"* for|strong=\"G1161\"* you|strong=\"G5210\"*,” or|strong=\"G2228\"* again|strong=\"G3825\"* the|strong=\"G1161\"* head|strong=\"G2776\"* to|strong=\"G3004\"* the|strong=\"G1161\"* feet|strong=\"G4228\"*, “I|strong=\"G1161\"* have|strong=\"G2192\"* no|strong=\"G3756\"* need|strong=\"G5532\"* for|strong=\"G1161\"* you|strong=\"G5210\"*.”" + }, + { + "verseNum": 22, + "text": "No|strong=\"G3588\"*, much|strong=\"G4183\"* rather|strong=\"G3123\"*, those|strong=\"G3588\"* members|strong=\"G3196\"* of|strong=\"G4983\"* the|strong=\"G3588\"* body|strong=\"G4983\"* which|strong=\"G3588\"* seem|strong=\"G1380\"* to|strong=\"G1380\"* be|strong=\"G1510\"* weaker are|strong=\"G1510\"* necessary." + }, + { + "verseNum": 23, + "text": "Those|strong=\"G3588\"* parts of|strong=\"G2532\"* the|strong=\"G2532\"* body|strong=\"G4983\"* which|strong=\"G3739\"* we|strong=\"G2249\"* think|strong=\"G1380\"* to|strong=\"G2532\"* be|strong=\"G1510\"* less honorable|strong=\"G5092\"*, on|strong=\"G3588\"* those|strong=\"G3588\"* we|strong=\"G2249\"* bestow|strong=\"G4060\"* more|strong=\"G4053\"* abundant|strong=\"G4053\"* honor|strong=\"G5092\"*; and|strong=\"G2532\"* our|strong=\"G2532\"* unpresentable|strong=\"G2157\"* parts have|strong=\"G2192\"* more|strong=\"G4053\"* abundant|strong=\"G4053\"* modesty," + }, + { + "verseNum": 24, + "text": "while|strong=\"G1161\"* our|strong=\"G2316\"* presentable|strong=\"G2158\"* parts have|strong=\"G2192\"* no|strong=\"G3756\"* such|strong=\"G1161\"* need|strong=\"G5532\"*. But|strong=\"G1161\"* God|strong=\"G2316\"* composed|strong=\"G4786\"* the|strong=\"G1161\"* body|strong=\"G4983\"* together|strong=\"G4786\"*, giving|strong=\"G1325\"* more|strong=\"G4053\"* abundant|strong=\"G4053\"* honor|strong=\"G5092\"* to|strong=\"G1325\"* the|strong=\"G1161\"* inferior|strong=\"G5302\"* part|strong=\"G1473\"*," + }, + { + "verseNum": 25, + "text": "that|strong=\"G2443\"* there|strong=\"G1510\"* should|strong=\"G3588\"* be|strong=\"G1510\"* no|strong=\"G3361\"* division|strong=\"G4978\"* in|strong=\"G1722\"* the|strong=\"G1722\"* body|strong=\"G4983\"*, but|strong=\"G3361\"* that|strong=\"G2443\"* the|strong=\"G1722\"* members|strong=\"G3196\"* should|strong=\"G3588\"* have|strong=\"G1510\"* the|strong=\"G1722\"* same care|strong=\"G3309\"* for|strong=\"G5228\"* one|strong=\"G3588\"* another|strong=\"G3588\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"G2532\"* one|strong=\"G1520\"* member|strong=\"G3196\"* suffers|strong=\"G3958\"*, all|strong=\"G3956\"* the|strong=\"G2532\"* members|strong=\"G3196\"* suffer|strong=\"G3958\"* with|strong=\"G2532\"* it|strong=\"G2532\"*. When|strong=\"G2532\"* one|strong=\"G1520\"* member|strong=\"G3196\"* is|strong=\"G3588\"* honored|strong=\"G1392\"*, all|strong=\"G3956\"* the|strong=\"G2532\"* members|strong=\"G3196\"* rejoice|strong=\"G4796\"* with|strong=\"G2532\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 27, + "text": "Now|strong=\"G1161\"* you|strong=\"G5210\"* are|strong=\"G1510\"* the|strong=\"G2532\"* body|strong=\"G4983\"* of|strong=\"G1537\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* members|strong=\"G3196\"* individually|strong=\"G3313\"*." + }, + { + "verseNum": 28, + "text": "God|strong=\"G2316\"* has|strong=\"G2316\"* set|strong=\"G5087\"* some|strong=\"G3739\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"*: first|strong=\"G4413\"* apostles, second|strong=\"G1208\"* prophets|strong=\"G4396\"*, third|strong=\"G5154\"* teachers|strong=\"G1320\"*, then|strong=\"G2532\"* miracle|strong=\"G1411\"* workers, then|strong=\"G2532\"* gifts|strong=\"G5486\"* of|strong=\"G2316\"* healings|strong=\"G2386\"*, helps, governments|strong=\"G2941\"*, and|strong=\"G2532\"* various kinds|strong=\"G1085\"* of|strong=\"G2316\"* languages|strong=\"G1100\"*." + }, + { + "verseNum": 29, + "text": "Are|strong=\"G3956\"* all|strong=\"G3956\"* apostles? Are|strong=\"G3956\"* all|strong=\"G3956\"* prophets|strong=\"G4396\"*? Are|strong=\"G3956\"* all|strong=\"G3956\"* teachers|strong=\"G1320\"*? Are|strong=\"G3956\"* all|strong=\"G3956\"* miracle|strong=\"G1411\"* workers?" + }, + { + "verseNum": 30, + "text": "Do|strong=\"G2192\"* all|strong=\"G3956\"* have|strong=\"G2192\"* gifts|strong=\"G5486\"* of|strong=\"G3956\"* healings|strong=\"G2386\"*? Do|strong=\"G2192\"* all|strong=\"G3956\"* speak|strong=\"G2980\"* with|strong=\"G2980\"* various languages|strong=\"G1100\"*? Do|strong=\"G2192\"* all|strong=\"G3956\"* interpret|strong=\"G1329\"*?" + }, + { + "verseNum": 31, + "text": "But|strong=\"G1161\"* earnestly|strong=\"G2206\"* desire|strong=\"G2206\"* the|strong=\"G2532\"* best gifts|strong=\"G5486\"*. Moreover|strong=\"G1161\"*, I|strong=\"G2532\"* show|strong=\"G1166\"* a|strong=\"G2532\"* most excellent|strong=\"G5236\"* way|strong=\"G3598\"* to|strong=\"G2532\"* you|strong=\"G5210\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "If|strong=\"G1437\"* I|strong=\"G2532\"* speak|strong=\"G2980\"* with|strong=\"G2532\"* the|strong=\"G2532\"* languages|strong=\"G1100\"* of|strong=\"G2532\"* men|strong=\"G3588\"* and|strong=\"G2532\"* of|strong=\"G2532\"* angels, but|strong=\"G1161\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* love, I|strong=\"G2532\"* have|strong=\"G2192\"* become|strong=\"G1096\"* sounding|strong=\"G2278\"* brass|strong=\"G5475\"* or|strong=\"G2228\"* a|strong=\"G2192\"* clanging cymbal|strong=\"G2950\"*." + }, + { + "verseNum": 2, + "text": "If|strong=\"G1437\"* I|strong=\"G2532\"* have|strong=\"G2192\"* the|strong=\"G2532\"* gift of|strong=\"G2532\"* prophecy|strong=\"G4394\"*, and|strong=\"G2532\"* know|strong=\"G1492\"* all|strong=\"G3956\"* mysteries|strong=\"G3466\"* and|strong=\"G2532\"* all|strong=\"G3956\"* knowledge|strong=\"G1108\"*, and|strong=\"G2532\"* if|strong=\"G1437\"* I|strong=\"G2532\"* have|strong=\"G2192\"* all|strong=\"G3956\"* faith|strong=\"G4102\"*, so|strong=\"G2532\"* as|strong=\"G1161\"* to|strong=\"G2532\"* remove|strong=\"G3179\"* mountains|strong=\"G3735\"*, but|strong=\"G1161\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* love, I|strong=\"G2532\"* am|strong=\"G1510\"* nothing|strong=\"G3762\"*." + }, + { + "verseNum": 3, + "text": "If|strong=\"G1437\"* I|strong=\"G1473\"* give|strong=\"G1473\"* away all|strong=\"G3956\"* my|strong=\"G3956\"* goods to|strong=\"G2443\"* feed|strong=\"G5595\"* the|strong=\"G2532\"* poor, and|strong=\"G2532\"* if|strong=\"G1437\"* I|strong=\"G1473\"* give|strong=\"G1473\"* my|strong=\"G3956\"* body|strong=\"G4983\"* to|strong=\"G2443\"* be|strong=\"G2532\"* burned|strong=\"G2545\"*, but|strong=\"G1161\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* love, it|strong=\"G2532\"* profits|strong=\"G5623\"* me|strong=\"G1473\"* nothing|strong=\"G3762\"*." + }, + { + "verseNum": 4, + "text": "Love is|strong=\"G3588\"* patient|strong=\"G3114\"* and|strong=\"G3588\"* is|strong=\"G3588\"* kind|strong=\"G5541\"*. Love doesn’t|strong=\"G3588\"* envy|strong=\"G2206\"*. Love doesn’t|strong=\"G3588\"* brag|strong=\"G4068\"*, is|strong=\"G3588\"* not|strong=\"G3756\"* proud|strong=\"G5448\"*," + }, + { + "verseNum": 5, + "text": "doesn’t|strong=\"G3588\"* behave|strong=\"G3756\"* itself|strong=\"G1438\"* inappropriately, doesn’t|strong=\"G3588\"* seek|strong=\"G2212\"* its|strong=\"G2212\"* own|strong=\"G1438\"* way, is|strong=\"G3588\"* not|strong=\"G3756\"* provoked|strong=\"G3947\"*, takes no|strong=\"G3756\"* account|strong=\"G3049\"* of|strong=\"G3588\"* evil|strong=\"G2556\"*;" + }, + { + "verseNum": 6, + "text": "doesn’t|strong=\"G3588\"* rejoice|strong=\"G5463\"* in|strong=\"G1909\"* unrighteousness, but|strong=\"G1161\"* rejoices|strong=\"G5463\"* with|strong=\"G1909\"* the|strong=\"G1161\"* truth;" + }, + { + "verseNum": 7, + "text": "bears|strong=\"G4722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, believes|strong=\"G4100\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, hopes|strong=\"G1679\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G3956\"* endures|strong=\"G5278\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 8, + "text": "Love never|strong=\"G3763\"* fails|strong=\"G4098\"*. But|strong=\"G1161\"* where there|strong=\"G1161\"* are|strong=\"G3588\"* prophecies|strong=\"G4394\"*, they|strong=\"G1161\"* will|strong=\"G1100\"* be|strong=\"G3588\"* done|strong=\"G2673\"* away|strong=\"G2673\"* with|strong=\"G3588\"*. Where there|strong=\"G1161\"* are|strong=\"G3588\"* various languages|strong=\"G1100\"*, they|strong=\"G1161\"* will|strong=\"G1100\"* cease|strong=\"G3973\"*. Where there|strong=\"G1161\"* is|strong=\"G3588\"* knowledge|strong=\"G1108\"*, it|strong=\"G1161\"* will|strong=\"G1100\"* be|strong=\"G3588\"* done|strong=\"G2673\"* away|strong=\"G2673\"* with|strong=\"G3588\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* know|strong=\"G1097\"* in|strong=\"G2532\"* part|strong=\"G3313\"* and|strong=\"G2532\"* we|strong=\"G1063\"* prophesy|strong=\"G4395\"* in|strong=\"G2532\"* part|strong=\"G3313\"*;" + }, + { + "verseNum": 10, + "text": "but|strong=\"G1161\"* when|strong=\"G3752\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* complete|strong=\"G5046\"* has|strong=\"G2064\"* come|strong=\"G2064\"*, then|strong=\"G1161\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* partial|strong=\"G3313\"* will|strong=\"G2064\"* be|strong=\"G3588\"* done|strong=\"G2673\"* away|strong=\"G2673\"* with|strong=\"G1537\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"G3753\"* I|strong=\"G5613\"* was|strong=\"G1510\"* a|strong=\"G1096\"* child|strong=\"G3516\"*, I|strong=\"G5613\"* spoke|strong=\"G2980\"* as|strong=\"G5613\"* a|strong=\"G1096\"* child|strong=\"G3516\"*, I|strong=\"G5613\"* felt|strong=\"G1510\"* as|strong=\"G5613\"* a|strong=\"G1096\"* child|strong=\"G3516\"*, I|strong=\"G5613\"* thought|strong=\"G3049\"* as|strong=\"G5613\"* a|strong=\"G1096\"* child|strong=\"G3516\"*. Now|strong=\"G1096\"* that|strong=\"G3588\"* I|strong=\"G5613\"* have|strong=\"G1510\"* become|strong=\"G1096\"* a|strong=\"G1096\"* man, I|strong=\"G5613\"* have|strong=\"G1510\"* put|strong=\"G1096\"* away|strong=\"G2673\"* childish|strong=\"G3516\"* things|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* now|strong=\"G1161\"* we|strong=\"G1063\"* see|strong=\"G1097\"* in|strong=\"G1722\"* a|strong=\"G2532\"* mirror|strong=\"G2072\"*, dimly, but|strong=\"G1161\"* then|strong=\"G2532\"* face|strong=\"G4383\"* to|strong=\"G4314\"* face|strong=\"G4383\"*. Now|strong=\"G1161\"* I|strong=\"G2532\"* know|strong=\"G1097\"* in|strong=\"G1722\"* part|strong=\"G3313\"*, but|strong=\"G1161\"* then|strong=\"G2532\"* I|strong=\"G2532\"* will|strong=\"G2532\"* know|strong=\"G1097\"* fully|strong=\"G1921\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* I|strong=\"G2532\"* was|strong=\"G2532\"* also|strong=\"G2532\"* fully|strong=\"G1921\"* known|strong=\"G1097\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* faith|strong=\"G4102\"*, hope|strong=\"G1680\"*, and|strong=\"G1161\"* love remain|strong=\"G3306\"*—these|strong=\"G3778\"* three|strong=\"G5140\"*. The|strong=\"G1161\"* greatest|strong=\"G3173\"* of|strong=\"G1680\"* these|strong=\"G3778\"* is|strong=\"G3588\"* love." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Follow|strong=\"G1377\"* after|strong=\"G1161\"* love and|strong=\"G1161\"* earnestly|strong=\"G2206\"* desire|strong=\"G2206\"* spiritual|strong=\"G4152\"* gifts, but|strong=\"G1161\"* especially|strong=\"G3123\"* that|strong=\"G2443\"* you may|strong=\"G2443\"* prophesy|strong=\"G4395\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* he|strong=\"G1161\"* who|strong=\"G3588\"* speaks|strong=\"G2980\"* in|strong=\"G2316\"* another|strong=\"G3588\"* language|strong=\"G1100\"* speaks|strong=\"G2980\"* not|strong=\"G3756\"* to|strong=\"G3756\"* men|strong=\"G3588\"*, but|strong=\"G1161\"* to|strong=\"G3756\"* God|strong=\"G2316\"*, for|strong=\"G1063\"* no|strong=\"G3756\"* one|strong=\"G3762\"* understands, but|strong=\"G1161\"* in|strong=\"G2316\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"* he|strong=\"G1161\"* speaks|strong=\"G2980\"* mysteries|strong=\"G3466\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* who|strong=\"G3588\"* prophesies|strong=\"G4395\"* speaks|strong=\"G2980\"* to|strong=\"G2532\"* men|strong=\"G3588\"* for|strong=\"G1161\"* their|strong=\"G2532\"* edification|strong=\"G3619\"*, exhortation|strong=\"G3874\"*, and|strong=\"G2532\"* consolation|strong=\"G3874\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"G1161\"* who|strong=\"G3588\"* speaks|strong=\"G2980\"* in|strong=\"G2980\"* another|strong=\"G1438\"* language|strong=\"G1100\"* edifies|strong=\"G3618\"* himself|strong=\"G1438\"*, but|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3588\"* prophesies|strong=\"G4395\"* edifies|strong=\"G3618\"* the|strong=\"G1161\"* assembly|strong=\"G1577\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"G1161\"* I|strong=\"G1161\"* desire|strong=\"G2309\"* to|strong=\"G2443\"* have|strong=\"G2309\"* you|strong=\"G5210\"* all|strong=\"G3956\"* speak|strong=\"G2980\"* with|strong=\"G2980\"* other|strong=\"G1161\"* languages|strong=\"G1100\"*, but|strong=\"G1161\"* even|strong=\"G1161\"* more|strong=\"G3123\"* that|strong=\"G2443\"* you|strong=\"G5210\"* would|strong=\"G2309\"* prophesy|strong=\"G4395\"*. For|strong=\"G1161\"* he|strong=\"G1161\"* is|strong=\"G3588\"* greater|strong=\"G3173\"* who|strong=\"G3588\"* prophesies|strong=\"G4395\"* than|strong=\"G2228\"* he|strong=\"G1161\"* who|strong=\"G3588\"* speaks|strong=\"G2980\"* with|strong=\"G2980\"* other|strong=\"G1161\"* languages|strong=\"G1100\"*, unless|strong=\"G1487\"* he|strong=\"G1161\"* interprets|strong=\"G1329\"*, that|strong=\"G2443\"* the|strong=\"G3956\"* assembly|strong=\"G1577\"* may|strong=\"G2443\"* be|strong=\"G3361\"* built up|strong=\"G3361\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"*, brothers,+ 14:6 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” * if|strong=\"G1437\"* I|strong=\"G1161\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"* speaking|strong=\"G2980\"* with|strong=\"G1722\"* other|strong=\"G1161\"* languages|strong=\"G1100\"*, what|strong=\"G5101\"* would|strong=\"G5101\"* I|strong=\"G1161\"* profit|strong=\"G5623\"* you|strong=\"G5210\"* unless|strong=\"G1437\"* I|strong=\"G1161\"* speak|strong=\"G2980\"* to|strong=\"G4314\"* you|strong=\"G5210\"* either|strong=\"G2228\"* by|strong=\"G1722\"* way|strong=\"G1722\"* of|strong=\"G1722\"* revelation, or|strong=\"G2228\"* of|strong=\"G1722\"* knowledge|strong=\"G1108\"*, or|strong=\"G2228\"* of|strong=\"G1722\"* prophesying|strong=\"G4394\"*, or|strong=\"G2228\"* of|strong=\"G1722\"* teaching|strong=\"G1322\"*?" + }, + { + "verseNum": 7, + "text": "Even|strong=\"G3676\"* lifeless things|strong=\"G3588\"* that|strong=\"G3588\"* make|strong=\"G1325\"* a|strong=\"G1437\"* sound|strong=\"G5456\"*, whether|strong=\"G1535\"* pipe or|strong=\"G2228\"* harp|strong=\"G2788\"*, if|strong=\"G1437\"* they|strong=\"G3588\"* didn’t|strong=\"G3588\"* give|strong=\"G1325\"* a|strong=\"G1437\"* distinction|strong=\"G1293\"* in|strong=\"G2228\"* the|strong=\"G3588\"* sounds|strong=\"G5456\"*, how|strong=\"G4459\"* would|strong=\"G1437\"* it|strong=\"G1437\"* be|strong=\"G3361\"* known|strong=\"G1097\"* what|strong=\"G3588\"* is|strong=\"G3588\"* piped or|strong=\"G2228\"* harped|strong=\"G2789\"*?" + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* if|strong=\"G1437\"* the|strong=\"G2532\"* trumpet|strong=\"G4536\"* gave|strong=\"G1325\"* an|strong=\"G2532\"* uncertain sound|strong=\"G5456\"*, who|strong=\"G5101\"* would|strong=\"G2532\"* prepare|strong=\"G3903\"* himself|strong=\"G1519\"* for|strong=\"G1063\"* war|strong=\"G4171\"*?" + }, + { + "verseNum": 9, + "text": "So|strong=\"G3779\"* also|strong=\"G2532\"* you|strong=\"G5210\"*, unless|strong=\"G1437\"* you|strong=\"G5210\"* uttered|strong=\"G2980\"* by|strong=\"G1223\"* the|strong=\"G2532\"* tongue|strong=\"G1100\"* words|strong=\"G3056\"* easy|strong=\"G2154\"* to|strong=\"G1519\"* understand|strong=\"G1097\"*, how|strong=\"G4459\"* would|strong=\"G2532\"* it|strong=\"G2532\"* be|strong=\"G1510\"* known|strong=\"G1097\"* what|strong=\"G3588\"* is|strong=\"G1510\"* spoken|strong=\"G2980\"*? For|strong=\"G1063\"* you|strong=\"G5210\"* would|strong=\"G2532\"* be|strong=\"G1510\"* speaking|strong=\"G2980\"* into|strong=\"G1519\"* the|strong=\"G2532\"* air." + }, + { + "verseNum": 10, + "text": "There|strong=\"G2532\"* are|strong=\"G1510\"*, it|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G1510\"*, so|strong=\"G2532\"* many|strong=\"G5118\"* kinds|strong=\"G1085\"* of|strong=\"G2532\"* languages|strong=\"G5456\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*, and|strong=\"G2532\"* none|strong=\"G3762\"* of|strong=\"G2532\"* them|strong=\"G1722\"* is|strong=\"G1510\"* without|strong=\"G2532\"* meaning." + }, + { + "verseNum": 11, + "text": "If|strong=\"G1437\"* then|strong=\"G3767\"* I|strong=\"G1473\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* the|strong=\"G1722\"* meaning|strong=\"G1411\"* of|strong=\"G2532\"* the|strong=\"G1722\"* language|strong=\"G5456\"*, I|strong=\"G1473\"* would|strong=\"G2532\"* be|strong=\"G1510\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* speaks|strong=\"G2980\"* a|strong=\"G2532\"* foreigner, and|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* speaks|strong=\"G2980\"* would|strong=\"G2532\"* be|strong=\"G1510\"* a|strong=\"G2532\"* foreigner to|strong=\"G2532\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 12, + "text": "So|strong=\"G3779\"* also|strong=\"G2532\"* you|strong=\"G5210\"*, since|strong=\"G1893\"* you|strong=\"G5210\"* are|strong=\"G1510\"* zealous|strong=\"G2207\"* for|strong=\"G4314\"* spiritual|strong=\"G4151\"* gifts, seek|strong=\"G2212\"* that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* abound|strong=\"G4052\"* to|strong=\"G4314\"* the|strong=\"G2532\"* building|strong=\"G3619\"* up|strong=\"G2532\"* of|strong=\"G4151\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"*." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"G1352\"* let|strong=\"G2443\"* him|strong=\"G3588\"* who|strong=\"G3588\"* speaks|strong=\"G2980\"* in|strong=\"G2980\"* another|strong=\"G3588\"* language|strong=\"G1100\"* pray|strong=\"G4336\"* that|strong=\"G2443\"* he|strong=\"G3588\"* may|strong=\"G2443\"* interpret|strong=\"G1329\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* if|strong=\"G1437\"* I|strong=\"G1473\"* pray|strong=\"G4336\"* in|strong=\"G1161\"* another|strong=\"G3588\"* language|strong=\"G1100\"*, my|strong=\"G1473\"* spirit|strong=\"G4151\"* prays|strong=\"G4336\"*, but|strong=\"G1161\"* my|strong=\"G1473\"* understanding|strong=\"G3563\"* is|strong=\"G1510\"* unfruitful." + }, + { + "verseNum": 15, + "text": "What|strong=\"G5101\"* should|strong=\"G3588\"* I|strong=\"G2532\"* do|strong=\"G5101\"*? I|strong=\"G2532\"* will|strong=\"G5101\"* pray|strong=\"G4336\"* with|strong=\"G2532\"* the|strong=\"G2532\"* spirit|strong=\"G4151\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* will|strong=\"G5101\"* pray|strong=\"G4336\"* with|strong=\"G2532\"* the|strong=\"G2532\"* understanding|strong=\"G3563\"* also|strong=\"G2532\"*. I|strong=\"G2532\"* will|strong=\"G5101\"* sing|strong=\"G5567\"* with|strong=\"G2532\"* the|strong=\"G2532\"* spirit|strong=\"G4151\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* will|strong=\"G5101\"* sing|strong=\"G5567\"* with|strong=\"G2532\"* the|strong=\"G2532\"* understanding|strong=\"G3563\"* also|strong=\"G2532\"*." + }, + { + "verseNum": 16, + "text": "Otherwise|strong=\"G1893\"*, if|strong=\"G1437\"* you|strong=\"G1437\"* bless|strong=\"G2127\"* with|strong=\"G1909\"* the|strong=\"G1909\"* spirit|strong=\"G4151\"*, how|strong=\"G4459\"* will|strong=\"G5101\"* he|strong=\"G3588\"* who|strong=\"G5101\"* fills the|strong=\"G1909\"* place|strong=\"G5117\"* of|strong=\"G4151\"* the|strong=\"G1909\"* unlearned|strong=\"G2399\"* say|strong=\"G3004\"* the|strong=\"G1909\"* “Amen” at|strong=\"G1909\"* your|strong=\"G4674\"* giving|strong=\"G2169\"* of|strong=\"G4151\"* thanks|strong=\"G2169\"*, seeing|strong=\"G1492\"* he|strong=\"G3588\"* doesn’t|strong=\"G3588\"* know|strong=\"G1492\"* what|strong=\"G5101\"* you|strong=\"G1437\"* say|strong=\"G3004\"*?" + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* you|strong=\"G4771\"* most certainly|strong=\"G3303\"* give|strong=\"G2168\"* thanks|strong=\"G2168\"* well|strong=\"G2573\"*, but|strong=\"G1063\"* the|strong=\"G3588\"* other|strong=\"G2087\"* person|strong=\"G2087\"* is|strong=\"G3588\"* not|strong=\"G3756\"* built|strong=\"G3618\"* up|strong=\"G3618\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"G3956\"* thank|strong=\"G2168\"* my|strong=\"G3956\"* God|strong=\"G2316\"*, I|strong=\"G3956\"* speak|strong=\"G2980\"* with|strong=\"G2980\"* other|strong=\"G3588\"* languages|strong=\"G1100\"* more|strong=\"G3123\"* than|strong=\"G3123\"* you|strong=\"G5210\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 19, + "text": "However, in|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* I|strong=\"G1473\"* would|strong=\"G2309\"* rather|strong=\"G2228\"* speak|strong=\"G2980\"* five|strong=\"G4002\"* words|strong=\"G3056\"* with|strong=\"G1722\"* my|strong=\"G1722\"* understanding|strong=\"G3563\"*, that|strong=\"G2443\"* I|strong=\"G1473\"* might|strong=\"G2532\"* instruct|strong=\"G2727\"* others|strong=\"G3588\"* also|strong=\"G2532\"*, than|strong=\"G2228\"* ten|strong=\"G3463\"* thousand|strong=\"G3463\"* words|strong=\"G3056\"* in|strong=\"G1722\"* another|strong=\"G3588\"* language|strong=\"G1100\"*." + }, + { + "verseNum": 20, + "text": "Brothers, don’t|strong=\"G3588\"* be|strong=\"G1096\"* children|strong=\"G3813\"* in|strong=\"G1096\"* thoughts, yet|strong=\"G1161\"* in|strong=\"G1096\"* malice|strong=\"G2549\"* be|strong=\"G1096\"* babies, but|strong=\"G1161\"* in|strong=\"G1096\"* thoughts be|strong=\"G1096\"* mature|strong=\"G5046\"*." + }, + { + "verseNum": 21, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “By|strong=\"G1722\"* men|strong=\"G3778\"* of|strong=\"G2532\"* strange|strong=\"G2087\"* languages and|strong=\"G2532\"* by|strong=\"G1722\"* the|strong=\"G1722\"* lips|strong=\"G5491\"* of|strong=\"G2532\"* strangers|strong=\"G2087\"* I|strong=\"G1473\"* will|strong=\"G2532\"* speak|strong=\"G2980\"* to|strong=\"G2532\"* this|strong=\"G3778\"* people|strong=\"G2992\"*. They|strong=\"G2532\"* won’t|strong=\"G3588\"* even|strong=\"G2532\"* listen|strong=\"G1522\"* to|strong=\"G2532\"* me|strong=\"G1473\"* that|strong=\"G3754\"* way|strong=\"G3779\"*, says|strong=\"G3004\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*.”+ 14:21 Isaiah 28:11-12*" + }, + { + "verseNum": 22, + "text": "Therefore|strong=\"G5620\"* other|strong=\"G1161\"* languages|strong=\"G1100\"* are|strong=\"G1510\"* for|strong=\"G1519\"* a|strong=\"G1519\"* sign|strong=\"G4592\"*, not|strong=\"G3756\"* to|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3588\"* believe|strong=\"G4100\"*, but|strong=\"G1161\"* to|strong=\"G1519\"* the|strong=\"G1519\"* unbelieving; but|strong=\"G1161\"* prophesying|strong=\"G4394\"* is|strong=\"G1510\"* for|strong=\"G1519\"* a|strong=\"G1519\"* sign|strong=\"G4592\"*, not|strong=\"G3756\"* to|strong=\"G1519\"* the|strong=\"G1519\"* unbelieving, but|strong=\"G1161\"* to|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3588\"* believe|strong=\"G4100\"*." + }, + { + "verseNum": 23, + "text": "If|strong=\"G1437\"* therefore|strong=\"G3767\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* assembly|strong=\"G1577\"* is|strong=\"G3588\"* assembled|strong=\"G4905\"* together|strong=\"G4905\"* and|strong=\"G2532\"* all|strong=\"G3956\"* speak|strong=\"G2980\"* with|strong=\"G2532\"* other|strong=\"G1161\"* languages|strong=\"G1100\"*, and|strong=\"G2532\"* unlearned|strong=\"G2399\"* or|strong=\"G2228\"* unbelieving people|strong=\"G3956\"* come|strong=\"G1525\"* in|strong=\"G1909\"*, won’t|strong=\"G3588\"* they|strong=\"G2532\"* say|strong=\"G3004\"* that|strong=\"G3754\"* you|strong=\"G1437\"* are|strong=\"G3588\"* crazy?" + }, + { + "verseNum": 24, + "text": "But|strong=\"G1161\"* if|strong=\"G1437\"* all|strong=\"G3956\"* prophesy|strong=\"G4395\"*, and|strong=\"G1161\"* someone|strong=\"G5100\"* unbelieving or|strong=\"G2228\"* unlearned|strong=\"G2399\"* comes|strong=\"G1525\"* in|strong=\"G1525\"*, he|strong=\"G1161\"* is|strong=\"G5100\"* reproved|strong=\"G1651\"* by|strong=\"G5259\"* all|strong=\"G3956\"*, and|strong=\"G1161\"* he|strong=\"G1161\"* is|strong=\"G5100\"* judged by|strong=\"G5259\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 25, + "text": "And|strong=\"G2532\"* thus|strong=\"G3779\"* the|strong=\"G1722\"* secrets|strong=\"G2927\"* of|strong=\"G2316\"* his|strong=\"G1909\"* heart|strong=\"G2588\"* are|strong=\"G1510\"* revealed|strong=\"G5318\"*. So|strong=\"G3779\"* he|strong=\"G2532\"* will|strong=\"G2316\"* fall|strong=\"G4098\"* down|strong=\"G4098\"* on|strong=\"G1909\"* his|strong=\"G1909\"* face|strong=\"G4383\"* and|strong=\"G2532\"* worship|strong=\"G4352\"* God|strong=\"G2316\"*, declaring that|strong=\"G3754\"* God|strong=\"G2316\"* is|strong=\"G1510\"* among|strong=\"G1722\"* you|strong=\"G5210\"* indeed|strong=\"G2532\"*." + }, + { + "verseNum": 26, + "text": "What|strong=\"G5101\"* is|strong=\"G1510\"* it|strong=\"G5101\"* then|strong=\"G3767\"*, brothers? When|strong=\"G3752\"* you|strong=\"G3752\"* come|strong=\"G1096\"* together|strong=\"G4905\"*, each|strong=\"G1538\"* one|strong=\"G1538\"* of|strong=\"G3956\"* you|strong=\"G3752\"* has|strong=\"G2192\"* a|strong=\"G2192\"* psalm|strong=\"G5568\"*, has|strong=\"G2192\"* a|strong=\"G2192\"* teaching|strong=\"G1322\"*, has|strong=\"G2192\"* a|strong=\"G2192\"* revelation, has|strong=\"G2192\"* another language|strong=\"G1100\"*, or has|strong=\"G2192\"* an|strong=\"G2192\"* interpretation|strong=\"G2058\"*. Let|strong=\"G1096\"* all|strong=\"G3956\"* things|strong=\"G3956\"* be|strong=\"G1096\"* done|strong=\"G1096\"* to|strong=\"G4314\"* build|strong=\"G3619\"* each|strong=\"G1538\"* other up|strong=\"G3619\"*." + }, + { + "verseNum": 27, + "text": "If|strong=\"G1535\"* any|strong=\"G5100\"* man|strong=\"G5100\"* speaks|strong=\"G2980\"* in|strong=\"G2596\"* another|strong=\"G2596\"* language|strong=\"G1100\"*, let|strong=\"G2532\"* there|strong=\"G2532\"* be|strong=\"G2532\"* two|strong=\"G1417\"*, or|strong=\"G2228\"* at|strong=\"G2596\"* the|strong=\"G2532\"* most|strong=\"G4183\"* three|strong=\"G5140\"*, and|strong=\"G2532\"* in|strong=\"G2596\"* turn|strong=\"G3313\"*; and|strong=\"G2532\"* let|strong=\"G2532\"* one|strong=\"G1520\"* interpret|strong=\"G1329\"*." + }, + { + "verseNum": 28, + "text": "But|strong=\"G1161\"* if|strong=\"G1437\"* there|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3361\"* interpreter|strong=\"G1328\"*, let|strong=\"G1161\"* him|strong=\"G3588\"* keep|strong=\"G3361\"* silent|strong=\"G4601\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"*, and|strong=\"G2532\"* let|strong=\"G1161\"* him|strong=\"G3588\"* speak|strong=\"G2980\"* to|strong=\"G2532\"* himself|strong=\"G1438\"* and|strong=\"G2532\"* to|strong=\"G2532\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 29, + "text": "Let|strong=\"G1161\"* two|strong=\"G1417\"* or|strong=\"G2228\"* three|strong=\"G5140\"* of|strong=\"G2532\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"* speak|strong=\"G2980\"*, and|strong=\"G2532\"* let|strong=\"G1161\"* the|strong=\"G2532\"* others|strong=\"G3588\"* discern|strong=\"G1252\"*." + }, + { + "verseNum": 30, + "text": "But|strong=\"G1161\"* if|strong=\"G1437\"* a|strong=\"G1437\"* revelation is|strong=\"G3588\"* made|strong=\"G1161\"* to|strong=\"G1161\"* another|strong=\"G3588\"* sitting|strong=\"G2521\"* by|strong=\"G2521\"*, let|strong=\"G1161\"* the|strong=\"G1161\"* first|strong=\"G4413\"* keep|strong=\"G4601\"* silent|strong=\"G4601\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"G1063\"* you|strong=\"G3956\"* all|strong=\"G3956\"* can|strong=\"G1410\"* prophesy|strong=\"G4395\"* one|strong=\"G1520\"* by|strong=\"G2596\"* one|strong=\"G1520\"*, that|strong=\"G2443\"* all|strong=\"G3956\"* may|strong=\"G2532\"* learn|strong=\"G3129\"* and|strong=\"G2532\"* all|strong=\"G3956\"* may|strong=\"G2532\"* be|strong=\"G2532\"* exhorted|strong=\"G3870\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"G2532\"* spirits|strong=\"G4151\"* of|strong=\"G4151\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"* are|strong=\"G2532\"* subject|strong=\"G5293\"* to|strong=\"G2532\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"*," + }, + { + "verseNum": 33, + "text": "for|strong=\"G1063\"* God|strong=\"G2316\"* is|strong=\"G1510\"* not|strong=\"G3756\"* a|strong=\"G5613\"* God|strong=\"G2316\"* of|strong=\"G2316\"* confusion but|strong=\"G1063\"* of|strong=\"G2316\"* peace|strong=\"G1515\"*, as|strong=\"G5613\"* in|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* assemblies|strong=\"G1577\"* of|strong=\"G2316\"* the|strong=\"G1722\"* saints." + }, + { + "verseNum": 34, + "text": "Let|strong=\"G2010\"* the|strong=\"G1722\"* wives|strong=\"G1135\"* be|strong=\"G2532\"* quiet|strong=\"G4601\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assemblies|strong=\"G1577\"*, for|strong=\"G1063\"* it|strong=\"G2532\"* has|strong=\"G2532\"* not|strong=\"G3756\"* been|strong=\"G2532\"* permitted|strong=\"G2010\"* for|strong=\"G1063\"* them|strong=\"G3588\"* to|strong=\"G2532\"* be|strong=\"G2532\"* talking|strong=\"G2980\"* except|strong=\"G3756\"* in|strong=\"G1722\"* submission, as|strong=\"G2531\"* the|strong=\"G1722\"* law|strong=\"G3551\"* also|strong=\"G2532\"* says|strong=\"G3004\"*,+ 14:34 Deuteronomy 27:9*" + }, + { + "verseNum": 35, + "text": "if|strong=\"G1487\"* they|strong=\"G1161\"* desire|strong=\"G2309\"* to|strong=\"G2309\"* learn|strong=\"G3129\"* anything|strong=\"G5100\"*. “Let|strong=\"G1161\"* them|strong=\"G3588\"* ask|strong=\"G1905\"* their|strong=\"G1722\"* own|strong=\"G2398\"* husbands at|strong=\"G1722\"* home|strong=\"G3624\"*, for|strong=\"G1063\"* it|strong=\"G1161\"* is|strong=\"G1510\"* shameful for|strong=\"G1063\"* a|strong=\"G1722\"* wife|strong=\"G1135\"* to|strong=\"G2309\"* be|strong=\"G1510\"* talking|strong=\"G2980\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"*.”" + }, + { + "verseNum": 36, + "text": "What|strong=\"G3588\"*!? Was|strong=\"G3588\"* it|strong=\"G1519\"* from|strong=\"G1831\"* you|strong=\"G5210\"* that|strong=\"G3588\"* the|strong=\"G1519\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* went|strong=\"G1831\"* out|strong=\"G1831\"*? Or|strong=\"G2228\"* did|strong=\"G2316\"* it|strong=\"G1519\"* come|strong=\"G1831\"* to|strong=\"G1519\"* you|strong=\"G5210\"* alone|strong=\"G3441\"*?" + }, + { + "verseNum": 37, + "text": "If|strong=\"G1487\"* any|strong=\"G5100\"* man|strong=\"G5100\"* thinks|strong=\"G1380\"* himself|strong=\"G1380\"* to|strong=\"G5100\"* be|strong=\"G1510\"* a|strong=\"G1510\"* prophet|strong=\"G4396\"* or|strong=\"G2228\"* spiritual|strong=\"G4152\"*, let|strong=\"G1510\"* him|strong=\"G3739\"* recognize|strong=\"G1921\"* the|strong=\"G3754\"* things|strong=\"G3739\"* which|strong=\"G3739\"* I|strong=\"G3739\"* write|strong=\"G1125\"* to|strong=\"G5100\"* you|strong=\"G5210\"*, that|strong=\"G3754\"* they|strong=\"G3739\"* are|strong=\"G1510\"* the|strong=\"G3754\"* commandment of|strong=\"G2962\"* the|strong=\"G3754\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 38, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* anyone|strong=\"G5100\"* is|strong=\"G5100\"* ignorant, let|strong=\"G1161\"* him be|strong=\"G5100\"* ignorant." + }, + { + "verseNum": 39, + "text": "Therefore|strong=\"G5620\"*, brothers, desire|strong=\"G2206\"* earnestly|strong=\"G2206\"* to|strong=\"G2532\"* prophesy|strong=\"G4395\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* forbid|strong=\"G2967\"* speaking|strong=\"G2980\"* with|strong=\"G2532\"* other|strong=\"G3361\"* languages|strong=\"G1100\"*." + }, + { + "verseNum": 40, + "text": "Let|strong=\"G1096\"* all|strong=\"G3956\"* things|strong=\"G3956\"* be|strong=\"G1096\"* done|strong=\"G1096\"* decently|strong=\"G2156\"* and|strong=\"G2532\"* in|strong=\"G2596\"* order|strong=\"G5010\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* I|strong=\"G3739\"* declare|strong=\"G1107\"* to|strong=\"G2532\"* you|strong=\"G5210\"*, brothers, the|strong=\"G1722\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* which|strong=\"G3739\"* I|strong=\"G3739\"* preached|strong=\"G2097\"* to|strong=\"G2532\"* you|strong=\"G5210\"*, which|strong=\"G3739\"* also|strong=\"G2532\"* you|strong=\"G5210\"* received|strong=\"G3880\"*, in|strong=\"G1722\"* which|strong=\"G3739\"* you|strong=\"G5210\"* also|strong=\"G2532\"* stand|strong=\"G2476\"*," + }, + { + "verseNum": 2, + "text": "by|strong=\"G1223\"* which|strong=\"G3739\"* also|strong=\"G2532\"* you|strong=\"G5210\"* are|strong=\"G3739\"* saved|strong=\"G4982\"*, if|strong=\"G1487\"* you|strong=\"G5210\"* hold|strong=\"G2722\"* firmly|strong=\"G2722\"* the|strong=\"G2532\"* word|strong=\"G3056\"* which|strong=\"G3739\"* I|strong=\"G3739\"* preached|strong=\"G2097\"* to|strong=\"G2532\"* you|strong=\"G5210\"*—unless|strong=\"G1487\"* you|strong=\"G5210\"* believed|strong=\"G4100\"* in|strong=\"G2532\"* vain|strong=\"G1500\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* delivered|strong=\"G3860\"* to|strong=\"G2532\"* you|strong=\"G5210\"* first|strong=\"G4413\"* of|strong=\"G2532\"* all|strong=\"G2532\"* that|strong=\"G3754\"* which|strong=\"G3739\"* I|strong=\"G1473\"* also|strong=\"G2532\"* received|strong=\"G3880\"*: that|strong=\"G3754\"* Christ|strong=\"G5547\"* died|strong=\"G3588\"* for|strong=\"G1063\"* our|strong=\"G2532\"* sins according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* Scriptures|strong=\"G1124\"*," + }, + { + "verseNum": 4, + "text": "that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G3588\"* buried|strong=\"G2290\"*, that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G3588\"* raised|strong=\"G1453\"* on|strong=\"G2596\"* the|strong=\"G2532\"* third|strong=\"G5154\"* day|strong=\"G2250\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Scriptures|strong=\"G1124\"*," + }, + { + "verseNum": 5, + "text": "and|strong=\"G2532\"* that|strong=\"G3754\"* he|strong=\"G2532\"* appeared|strong=\"G3708\"* to|strong=\"G2532\"* Cephas|strong=\"G2786\"*, then|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"G1161\"* he|strong=\"G1161\"* appeared|strong=\"G3708\"* to|strong=\"G2193\"* over|strong=\"G1883\"* five|strong=\"G4001\"* hundred|strong=\"G4001\"* brothers at|strong=\"G1537\"* once|strong=\"G2178\"*, most|strong=\"G4183\"* of|strong=\"G1537\"* whom|strong=\"G3739\"* remain|strong=\"G3306\"* until|strong=\"G2193\"* now|strong=\"G1161\"*, but|strong=\"G1161\"* some|strong=\"G5100\"* have|strong=\"G5100\"* also|strong=\"G1161\"* fallen|strong=\"G2837\"* asleep|strong=\"G2837\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"G1899\"* he|strong=\"G3588\"* appeared|strong=\"G3708\"* to|strong=\"G3956\"* James|strong=\"G2385\"*, then|strong=\"G1899\"* to|strong=\"G3956\"* all|strong=\"G3956\"* the|strong=\"G3956\"* apostles," + }, + { + "verseNum": 8, + "text": "and|strong=\"G1161\"* last|strong=\"G2078\"* of|strong=\"G3956\"* all|strong=\"G3956\"*, as|strong=\"G1161\"* to|strong=\"G1161\"* the|strong=\"G3956\"* child born|strong=\"G1626\"* at|strong=\"G1161\"* the|strong=\"G3956\"* wrong time|strong=\"G1626\"*, he|strong=\"G1161\"* appeared|strong=\"G3708\"* to|strong=\"G1161\"* me|strong=\"G2504\"* also|strong=\"G2504\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* am|strong=\"G1510\"* the|strong=\"G3588\"* least|strong=\"G1646\"* of|strong=\"G2316\"* the|strong=\"G3588\"* apostles, who|strong=\"G3739\"* is|strong=\"G1510\"* not|strong=\"G3756\"* worthy|strong=\"G2425\"* to|strong=\"G3756\"* be|strong=\"G1510\"* called|strong=\"G2564\"* an|strong=\"G1510\"* apostle, because|strong=\"G1063\"* I|strong=\"G1473\"* persecuted|strong=\"G1377\"* the|strong=\"G3588\"* assembly|strong=\"G1577\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* by|strong=\"G2532\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* I|strong=\"G1473\"* am|strong=\"G1510\"* what|strong=\"G3739\"* I|strong=\"G1473\"* am|strong=\"G1510\"*. His|strong=\"G3956\"* grace|strong=\"G5485\"* which|strong=\"G3739\"* was|strong=\"G1510\"* given to|strong=\"G1519\"* me|strong=\"G1473\"* was|strong=\"G1510\"* not|strong=\"G3756\"* futile|strong=\"G2756\"*, but|strong=\"G1161\"* I|strong=\"G1473\"* worked|strong=\"G2872\"* more|strong=\"G2532\"* than|strong=\"G2532\"* all|strong=\"G3956\"* of|strong=\"G2316\"* them|strong=\"G3588\"*; yet|strong=\"G2532\"* not|strong=\"G3756\"* I|strong=\"G1473\"*, but|strong=\"G1161\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* which|strong=\"G3739\"* was|strong=\"G1510\"* with|strong=\"G4862\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 11, + "text": "Whether|strong=\"G1535\"* then|strong=\"G3767\"* it|strong=\"G2532\"* is|strong=\"G2532\"* I|strong=\"G1473\"* or|strong=\"G1535\"* they|strong=\"G2532\"*, so|strong=\"G3779\"* we|strong=\"G2532\"* preach|strong=\"G2784\"*, and|strong=\"G2532\"* so|strong=\"G3779\"* you|strong=\"G3779\"* believed|strong=\"G4100\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"G1161\"* if|strong=\"G1487\"* Christ|strong=\"G5547\"* is|strong=\"G1510\"* preached|strong=\"G2784\"*, that|strong=\"G3754\"* he|strong=\"G1161\"* has|strong=\"G5547\"* been|strong=\"G1510\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*, how|strong=\"G4459\"* do|strong=\"G3004\"* some|strong=\"G5100\"* among|strong=\"G1722\"* you|strong=\"G5210\"* say|strong=\"G3004\"* that|strong=\"G3754\"* there|strong=\"G1161\"* is|strong=\"G1510\"* no|strong=\"G3756\"* resurrection of|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*?" + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* there|strong=\"G1161\"* is|strong=\"G1510\"* no|strong=\"G3756\"* resurrection of|strong=\"G1510\"* the|strong=\"G1161\"* dead|strong=\"G3498\"*, neither|strong=\"G3761\"* has|strong=\"G5547\"* Christ|strong=\"G5547\"* been|strong=\"G1510\"* raised|strong=\"G1453\"*." + }, + { + "verseNum": 14, + "text": "If|strong=\"G1487\"* Christ|strong=\"G5547\"* has|strong=\"G4102\"* not|strong=\"G3756\"* been|strong=\"G2532\"* raised|strong=\"G1453\"*, then|strong=\"G2532\"* our|strong=\"G2532\"* preaching|strong=\"G2782\"* is|strong=\"G3588\"* in|strong=\"G2532\"* vain|strong=\"G2756\"* and|strong=\"G2532\"* your|strong=\"G2532\"* faith|strong=\"G4102\"* also|strong=\"G2532\"* is|strong=\"G3588\"* in|strong=\"G2532\"* vain|strong=\"G2756\"*." + }, + { + "verseNum": 15, + "text": "Yes|strong=\"G1161\"*, we|strong=\"G3739\"* are|strong=\"G3588\"* also|strong=\"G2532\"* found|strong=\"G2147\"* false|strong=\"G2147\"* witnesses|strong=\"G5575\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, because|strong=\"G3754\"* we|strong=\"G3739\"* testified|strong=\"G3140\"* about|strong=\"G2596\"* God|strong=\"G2316\"* that|strong=\"G3754\"* he|strong=\"G2532\"* raised|strong=\"G1453\"* up|strong=\"G1453\"* Christ|strong=\"G5547\"*, whom|strong=\"G3739\"* he|strong=\"G2532\"* didn’t|strong=\"G3588\"* raise|strong=\"G1453\"* up|strong=\"G1453\"* if|strong=\"G1512\"* it|strong=\"G2532\"* is|strong=\"G3588\"* true|strong=\"G3588\"* that|strong=\"G3754\"* the|strong=\"G2532\"* dead|strong=\"G3498\"* are|strong=\"G3588\"* not|strong=\"G3756\"* raised|strong=\"G1453\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* the|strong=\"G1063\"* dead|strong=\"G3498\"* aren’t raised|strong=\"G1453\"*, neither|strong=\"G3761\"* has|strong=\"G5547\"* Christ|strong=\"G5547\"* been|strong=\"G3756\"* raised|strong=\"G1453\"*." + }, + { + "verseNum": 17, + "text": "If|strong=\"G1487\"* Christ|strong=\"G5547\"* has|strong=\"G4102\"* not|strong=\"G3756\"* been|strong=\"G1510\"* raised|strong=\"G1453\"*, your|strong=\"G1487\"* faith|strong=\"G4102\"* is|strong=\"G1510\"* vain|strong=\"G3152\"*; you|strong=\"G5210\"* are|strong=\"G1510\"* still|strong=\"G2089\"* in|strong=\"G1722\"* your|strong=\"G1487\"* sins." + }, + { + "verseNum": 18, + "text": "Then|strong=\"G2532\"* they|strong=\"G2532\"* also|strong=\"G2532\"* who|strong=\"G3588\"* are|strong=\"G3588\"* fallen|strong=\"G2837\"* asleep|strong=\"G2837\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* have|strong=\"G2532\"* perished." + }, + { + "verseNum": 19, + "text": "If|strong=\"G1487\"* we|strong=\"G1487\"* have|strong=\"G1510\"* only|strong=\"G3440\"* hoped|strong=\"G1679\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* in|strong=\"G1722\"* this|strong=\"G3778\"* life|strong=\"G2222\"*, we|strong=\"G1487\"* are|strong=\"G1510\"* of|strong=\"G1722\"* all|strong=\"G3956\"* men|strong=\"G3956\"* most|strong=\"G1652\"* pitiable." + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* Christ|strong=\"G5547\"* has|strong=\"G5547\"* been|strong=\"G5547\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G1537\"* dead|strong=\"G3498\"*. He|strong=\"G1161\"* became|strong=\"G3588\"* the|strong=\"G1537\"* first|strong=\"G3588\"* fruit of|strong=\"G1537\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* asleep|strong=\"G2837\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"G1063\"* since|strong=\"G1894\"* death|strong=\"G2288\"* came|strong=\"G2532\"* by|strong=\"G1223\"* man|strong=\"G3498\"*, the|strong=\"G2532\"* resurrection of|strong=\"G1223\"* the|strong=\"G2532\"* dead|strong=\"G3498\"* also|strong=\"G2532\"* came|strong=\"G2532\"* by|strong=\"G1223\"* man|strong=\"G3498\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"G1063\"* as|strong=\"G5618\"* in|strong=\"G1722\"* Adam all|strong=\"G3956\"* die, so|strong=\"G3779\"* also|strong=\"G2532\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* all|strong=\"G3956\"* will|strong=\"G2532\"* be|strong=\"G2532\"* made|strong=\"G2227\"* alive|strong=\"G2227\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* each|strong=\"G1538\"* in|strong=\"G1722\"* his|strong=\"G1722\"* own|strong=\"G2398\"* order|strong=\"G5001\"*: Christ|strong=\"G5547\"* the|strong=\"G1722\"* first|strong=\"G3588\"* fruits, then|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* Christ|strong=\"G5547\"*’s at|strong=\"G1722\"* his|strong=\"G1722\"* coming|strong=\"G3952\"*." + }, + { + "verseNum": 24, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* end|strong=\"G5056\"* comes|strong=\"G2532\"*, when|strong=\"G3752\"* he|strong=\"G2532\"* will|strong=\"G2316\"* deliver|strong=\"G3860\"* up|strong=\"G3860\"* the|strong=\"G2532\"* Kingdom to|strong=\"G2532\"* God|strong=\"G2316\"* the|strong=\"G2532\"* Father|strong=\"G3962\"*, when|strong=\"G3752\"* he|strong=\"G2532\"* will|strong=\"G2316\"* have|strong=\"G2532\"* abolished|strong=\"G2673\"* all|strong=\"G3956\"* rule and|strong=\"G2532\"* all|strong=\"G3956\"* authority|strong=\"G1849\"* and|strong=\"G2532\"* power|strong=\"G1411\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"G1063\"* he|strong=\"G3739\"* must|strong=\"G1163\"* reign until he|strong=\"G3739\"* has|strong=\"G3739\"* put|strong=\"G5087\"* all|strong=\"G3956\"* his|strong=\"G3956\"* enemies|strong=\"G2190\"* under|strong=\"G5259\"* his|strong=\"G3956\"* feet|strong=\"G4228\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"G3588\"* last|strong=\"G2078\"* enemy|strong=\"G2190\"* that|strong=\"G3588\"* will|strong=\"G2190\"* be|strong=\"G3588\"* abolished|strong=\"G2673\"* is|strong=\"G3588\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"G1063\"*, “He|strong=\"G1161\"* put|strong=\"G5293\"* all|strong=\"G3956\"* things|strong=\"G3956\"* in|strong=\"G3956\"* subjection|strong=\"G5293\"* under|strong=\"G5259\"* his|strong=\"G3956\"* feet|strong=\"G4228\"*.”+ 15:27 Psalms 8:6* But|strong=\"G1161\"* when|strong=\"G3752\"* he|strong=\"G1161\"* says|strong=\"G3004\"*, “All|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3588\"* put|strong=\"G5293\"* in|strong=\"G3956\"* subjection|strong=\"G5293\"*”, it|strong=\"G3754\"* is|strong=\"G3588\"* evident|strong=\"G1212\"* that|strong=\"G3754\"* he|strong=\"G1161\"* is|strong=\"G3588\"* excepted|strong=\"G1622\"* who|strong=\"G3588\"* subjected|strong=\"G5293\"* all|strong=\"G3956\"* things|strong=\"G3956\"* to|strong=\"G3004\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 28, + "text": "When|strong=\"G3752\"* all|strong=\"G3956\"* things|strong=\"G3956\"* have|strong=\"G2532\"* been|strong=\"G1510\"* subjected|strong=\"G5293\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, then|strong=\"G2532\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* will|strong=\"G2316\"* also|strong=\"G2532\"* himself be|strong=\"G1510\"* subjected|strong=\"G5293\"* to|strong=\"G2443\"* him|strong=\"G3588\"* who|strong=\"G3588\"* subjected|strong=\"G5293\"* all|strong=\"G3956\"* things|strong=\"G3956\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* God|strong=\"G2316\"* may|strong=\"G2532\"* be|strong=\"G1510\"* all|strong=\"G3956\"* in|strong=\"G1722\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 29, + "text": "Or|strong=\"G2532\"* else|strong=\"G1893\"* what|strong=\"G5101\"* will|strong=\"G5101\"* they|strong=\"G2532\"* do|strong=\"G4160\"* who|strong=\"G5101\"* are|strong=\"G3588\"* baptized for|strong=\"G5228\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*? If|strong=\"G1487\"* the|strong=\"G2532\"* dead|strong=\"G3498\"* aren’t|strong=\"G3588\"* raised|strong=\"G1453\"* at|strong=\"G3756\"* all|strong=\"G2532\"*, why|strong=\"G5101\"* then|strong=\"G2532\"* are|strong=\"G3588\"* they|strong=\"G2532\"* baptized for|strong=\"G5228\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*?" + }, + { + "verseNum": 30, + "text": "Why|strong=\"G5101\"* do|strong=\"G5101\"* we|strong=\"G2249\"* also|strong=\"G2532\"* stand|strong=\"G2793\"* in|strong=\"G2532\"* jeopardy|strong=\"G2793\"* every|strong=\"G3956\"* hour|strong=\"G5610\"*?" + }, + { + "verseNum": 31, + "text": "I|strong=\"G1473\"* affirm|strong=\"G3513\"*, by|strong=\"G1722\"* the|strong=\"G1722\"* boasting|strong=\"G2746\"* in|strong=\"G1722\"* you|strong=\"G3739\"* which|strong=\"G3739\"* I|strong=\"G1473\"* have|strong=\"G2192\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"*, I|strong=\"G1473\"* die daily|strong=\"G2250\"*." + }, + { + "verseNum": 32, + "text": "If|strong=\"G1487\"* I|strong=\"G1473\"* fought|strong=\"G2341\"* with|strong=\"G1722\"* animals at|strong=\"G1722\"* Ephesus|strong=\"G2181\"* for|strong=\"G1063\"* human purposes, what|strong=\"G5101\"* does|strong=\"G2068\"* it|strong=\"G2532\"* profit|strong=\"G3786\"* me|strong=\"G1473\"*? If|strong=\"G1487\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* are|strong=\"G3588\"* not|strong=\"G3756\"* raised|strong=\"G1453\"*, then|strong=\"G2532\"* “let|strong=\"G1063\"*’s eat|strong=\"G2068\"* and|strong=\"G2532\"* drink|strong=\"G4095\"*, for|strong=\"G1063\"* tomorrow we|strong=\"G1063\"* die.”+ 15:32 Isaiah 22:13*" + }, + { + "verseNum": 33, + "text": "Don’t be|strong=\"G3361\"* deceived|strong=\"G4105\"*! “Evil|strong=\"G2556\"* companionships corrupt|strong=\"G5351\"* good|strong=\"G5543\"* morals|strong=\"G2239\"*.”" + }, + { + "verseNum": 34, + "text": "Wake up|strong=\"G3361\"* righteously|strong=\"G1346\"* and|strong=\"G2532\"* don’t sin, for|strong=\"G1063\"* some|strong=\"G5100\"* have|strong=\"G2192\"* no|strong=\"G3361\"* knowledge of|strong=\"G2316\"* God|strong=\"G2316\"*. I|strong=\"G2532\"* say|strong=\"G2980\"* this|strong=\"G2532\"* to|strong=\"G4314\"* your|strong=\"G2192\"* shame|strong=\"G1791\"*." + }, + { + "verseNum": 35, + "text": "But|strong=\"G1161\"* someone|strong=\"G5100\"* will|strong=\"G5100\"* say|strong=\"G3004\"*, “How|strong=\"G4459\"* are|strong=\"G3588\"* the|strong=\"G1161\"* dead|strong=\"G3498\"* raised|strong=\"G1453\"*?” and|strong=\"G1161\"*, “With|strong=\"G2064\"* what|strong=\"G4169\"* kind|strong=\"G4169\"* of|strong=\"G5100\"* body|strong=\"G4983\"* do|strong=\"G3004\"* they|strong=\"G1161\"* come|strong=\"G2064\"*?”" + }, + { + "verseNum": 36, + "text": "You|strong=\"G4771\"* foolish one|strong=\"G3739\"*, that|strong=\"G3739\"* which|strong=\"G3739\"* you|strong=\"G4771\"* yourself|strong=\"G4771\"* sow|strong=\"G4687\"* is|strong=\"G3739\"* not|strong=\"G3756\"* made|strong=\"G3756\"* alive|strong=\"G2227\"* unless|strong=\"G1437\"* it|strong=\"G1437\"* dies." + }, + { + "verseNum": 37, + "text": "That|strong=\"G3739\"* which|strong=\"G3739\"* you|strong=\"G3739\"* sow|strong=\"G4687\"*, you|strong=\"G3739\"* don’t|strong=\"G3588\"* sow|strong=\"G4687\"* the|strong=\"G2532\"* body|strong=\"G4983\"* that|strong=\"G3739\"* will|strong=\"G2532\"* be|strong=\"G1096\"*, but|strong=\"G2532\"* a|strong=\"G1096\"* bare|strong=\"G1131\"* grain|strong=\"G4621\"*, maybe of|strong=\"G2532\"* wheat|strong=\"G4621\"*, or|strong=\"G2228\"* of|strong=\"G2532\"* some|strong=\"G5100\"* other|strong=\"G3062\"* kind|strong=\"G5100\"*." + }, + { + "verseNum": 38, + "text": "But|strong=\"G1161\"* God|strong=\"G2316\"* gives|strong=\"G1325\"* it|strong=\"G2532\"* a|strong=\"G2532\"* body|strong=\"G4983\"* even|strong=\"G2532\"* as|strong=\"G2531\"* it|strong=\"G2532\"* pleased him|strong=\"G3588\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* each|strong=\"G1538\"* seed|strong=\"G4690\"* a|strong=\"G2532\"* body|strong=\"G4983\"* of|strong=\"G2316\"* its|strong=\"G1325\"* own|strong=\"G2398\"*." + }, + { + "verseNum": 39, + "text": "All|strong=\"G3956\"* flesh|strong=\"G4561\"* is|strong=\"G3588\"* not|strong=\"G3756\"* the|strong=\"G3956\"* same flesh|strong=\"G4561\"*, but|strong=\"G1161\"* there|strong=\"G1161\"* is|strong=\"G3588\"* one|strong=\"G3956\"* flesh|strong=\"G4561\"* of|strong=\"G3956\"* men|strong=\"G3956\"*, another|strong=\"G3588\"* flesh|strong=\"G4561\"* of|strong=\"G3956\"* animals, another|strong=\"G3588\"* of|strong=\"G3956\"* fish|strong=\"G2486\"*, and|strong=\"G1161\"* another|strong=\"G3588\"* of|strong=\"G3956\"* birds|strong=\"G4421\"*." + }, + { + "verseNum": 40, + "text": "There|strong=\"G2532\"* are|strong=\"G3588\"* also|strong=\"G2532\"* celestial|strong=\"G2032\"* bodies|strong=\"G4983\"* and|strong=\"G2532\"* terrestrial|strong=\"G1919\"* bodies|strong=\"G4983\"*; but|strong=\"G1161\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2532\"* the|strong=\"G2532\"* celestial|strong=\"G2032\"* differs from|strong=\"G2532\"* that|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* terrestrial|strong=\"G1919\"*." + }, + { + "verseNum": 41, + "text": "There|strong=\"G2532\"* is|strong=\"G2532\"* one|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G2532\"* the|strong=\"G1722\"* sun|strong=\"G2246\"*, another|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G2532\"* the|strong=\"G1722\"* moon|strong=\"G4582\"*, and|strong=\"G2532\"* another|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G2532\"* the|strong=\"G1722\"* stars; for|strong=\"G1063\"* one|strong=\"G1722\"* star differs|strong=\"G1308\"* from|strong=\"G2532\"* another|strong=\"G1722\"* star in|strong=\"G1722\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 42, + "text": "So|strong=\"G3779\"* also|strong=\"G2532\"* is|strong=\"G3588\"* the|strong=\"G1722\"* resurrection of|strong=\"G2532\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*. The|strong=\"G1722\"* body is|strong=\"G3588\"* sown|strong=\"G4687\"* perishable|strong=\"G5356\"*; it|strong=\"G2532\"* is|strong=\"G3588\"* raised|strong=\"G1453\"* imperishable." + }, + { + "verseNum": 43, + "text": "It|strong=\"G1453\"* is|strong=\"G1453\"* sown|strong=\"G4687\"* in|strong=\"G1722\"* dishonor; it|strong=\"G1453\"* is|strong=\"G1453\"* raised|strong=\"G1453\"* in|strong=\"G1722\"* glory|strong=\"G1391\"*. It|strong=\"G1453\"* is|strong=\"G1453\"* sown|strong=\"G4687\"* in|strong=\"G1722\"* weakness; it|strong=\"G1453\"* is|strong=\"G1453\"* raised|strong=\"G1453\"* in|strong=\"G1722\"* power|strong=\"G1411\"*." + }, + { + "verseNum": 44, + "text": "It|strong=\"G2532\"* is|strong=\"G1510\"* sown|strong=\"G4687\"* a|strong=\"G2532\"* natural|strong=\"G5591\"* body|strong=\"G4983\"*; it|strong=\"G2532\"* is|strong=\"G1510\"* raised|strong=\"G1453\"* a|strong=\"G2532\"* spiritual|strong=\"G4152\"* body|strong=\"G4983\"*. There|strong=\"G2532\"* is|strong=\"G1510\"* a|strong=\"G2532\"* natural|strong=\"G5591\"* body|strong=\"G4983\"* and|strong=\"G2532\"* there|strong=\"G2532\"* is|strong=\"G1510\"* also|strong=\"G2532\"* a|strong=\"G2532\"* spiritual|strong=\"G4152\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 45, + "text": "So|strong=\"G3779\"* also|strong=\"G2532\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “The|strong=\"G2532\"* first|strong=\"G4413\"* man|strong=\"G4413\"* Adam became|strong=\"G1096\"* a|strong=\"G1096\"* living|strong=\"G2198\"* soul|strong=\"G5590\"*.”+ 15:45 Genesis 2:7* The|strong=\"G2532\"* last|strong=\"G2078\"* Adam became|strong=\"G1096\"* a|strong=\"G1096\"* life-giving|strong=\"G2227\"* spirit|strong=\"G4151\"*." + }, + { + "verseNum": 46, + "text": "However, that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* spiritual|strong=\"G4152\"* isn’t|strong=\"G3588\"* first|strong=\"G4413\"*, but|strong=\"G3588\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* natural|strong=\"G5591\"*, then|strong=\"G1899\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* spiritual|strong=\"G4152\"*." + }, + { + "verseNum": 47, + "text": "The|strong=\"G1537\"* first|strong=\"G4413\"* man|strong=\"G4413\"* is|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1537\"* earth|strong=\"G1093\"*, made|strong=\"G4413\"* of|strong=\"G1537\"* dust. The|strong=\"G1537\"* second|strong=\"G1208\"* man|strong=\"G4413\"* is|strong=\"G3588\"* the|strong=\"G1537\"* Lord|strong=\"G3588\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 48, + "text": "As|strong=\"G2532\"* is|strong=\"G3588\"* the|strong=\"G2532\"* one|strong=\"G5108\"* made of|strong=\"G2532\"* dust, such|strong=\"G5108\"* are|strong=\"G3588\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* also|strong=\"G2532\"* made of|strong=\"G2532\"* dust; and|strong=\"G2532\"* as|strong=\"G2532\"* is|strong=\"G3588\"* the|strong=\"G2532\"* heavenly|strong=\"G2032\"*, such|strong=\"G5108\"* are|strong=\"G3588\"* they|strong=\"G2532\"* also|strong=\"G2532\"* that|strong=\"G3588\"* are|strong=\"G3588\"* heavenly|strong=\"G2032\"*." + }, + { + "verseNum": 49, + "text": "As|strong=\"G2531\"* we|strong=\"G2532\"* have|strong=\"G2532\"* borne|strong=\"G5409\"* the|strong=\"G2532\"* image|strong=\"G1504\"* of|strong=\"G2532\"* those|strong=\"G3588\"* made of|strong=\"G2532\"* dust, let|strong=\"G2532\"*’s+ 15:49 NU, TR read “we will” instead of “let’s”* also|strong=\"G2532\"* bear|strong=\"G5409\"* the|strong=\"G2532\"* image|strong=\"G1504\"* of|strong=\"G2532\"* the|strong=\"G2532\"* heavenly|strong=\"G2032\"*." + }, + { + "verseNum": 50, + "text": "Now|strong=\"G1161\"* I|strong=\"G2532\"* say|strong=\"G5346\"* this|strong=\"G3778\"*, brothers,+ 15:50 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* that|strong=\"G3754\"* flesh|strong=\"G4561\"* and|strong=\"G2532\"* blood can|strong=\"G1410\"*’t|strong=\"G3588\"* inherit|strong=\"G2816\"* God|strong=\"G2316\"*’s Kingdom; neither|strong=\"G3761\"* does|strong=\"G3761\"* the|strong=\"G2532\"* perishable|strong=\"G5356\"* inherit|strong=\"G2816\"* imperishable." + }, + { + "verseNum": 51, + "text": "Behold|strong=\"G2400\"*,+ 15:51 “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"G1161\"* tell|strong=\"G3004\"* you|strong=\"G5210\"* a|strong=\"G3708\"* mystery|strong=\"G3466\"*. We|strong=\"G1161\"* will|strong=\"G3956\"* not|strong=\"G3756\"* all|strong=\"G3956\"* sleep|strong=\"G2837\"*, but|strong=\"G1161\"* we|strong=\"G1161\"* will|strong=\"G3956\"* all|strong=\"G3956\"* be|strong=\"G3756\"* changed," + }, + { + "verseNum": 52, + "text": "in|strong=\"G1722\"* a|strong=\"G2532\"* moment, in|strong=\"G1722\"* the|strong=\"G1722\"* twinkling|strong=\"G4493\"* of|strong=\"G2532\"* an|strong=\"G2532\"* eye|strong=\"G3788\"*, at|strong=\"G1722\"* the|strong=\"G1722\"* last|strong=\"G2078\"* trumpet|strong=\"G4536\"*. For|strong=\"G1063\"* the|strong=\"G1722\"* trumpet|strong=\"G4536\"* will|strong=\"G2532\"* sound|strong=\"G4537\"* and|strong=\"G2532\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* will|strong=\"G2532\"* be|strong=\"G2532\"* raised|strong=\"G1453\"* incorruptible, and|strong=\"G2532\"* we|strong=\"G2249\"* will|strong=\"G2532\"* be|strong=\"G2532\"* changed." + }, + { + "verseNum": 53, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* perishable|strong=\"G5349\"* body must|strong=\"G1163\"* become imperishable, and|strong=\"G2532\"* this|strong=\"G3778\"* mortal|strong=\"G2349\"* must|strong=\"G1163\"* put|strong=\"G1746\"* on|strong=\"G1746\"* immortality." + }, + { + "verseNum": 54, + "text": "But|strong=\"G1161\"* when|strong=\"G3752\"* this|strong=\"G3778\"* perishable|strong=\"G5349\"* body|strong=\"G1519\"* will|strong=\"G2532\"* have|strong=\"G2532\"* become|strong=\"G1096\"* imperishable, and|strong=\"G2532\"* this|strong=\"G3778\"* mortal|strong=\"G2349\"* will|strong=\"G2532\"* have|strong=\"G2532\"* put|strong=\"G1746\"* on|strong=\"G1519\"* immortality, then|strong=\"G2532\"* what|strong=\"G3588\"* is|strong=\"G3588\"* written|strong=\"G1125\"* will|strong=\"G2532\"* happen|strong=\"G1096\"*: “Death|strong=\"G2288\"* is|strong=\"G3588\"* swallowed|strong=\"G2666\"* up|strong=\"G1519\"* in|strong=\"G1519\"* victory|strong=\"G3534\"*.”+ 15:54 Isaiah 25:8*" + }, + { + "verseNum": 55, + "text": "“Death|strong=\"G2288\"*, where|strong=\"G4226\"* is|strong=\"G3588\"* your|strong=\"G3588\"* sting|strong=\"G2759\"*?" + }, + { + "verseNum": 56, + "text": "The|strong=\"G1161\"* sting|strong=\"G2759\"* of|strong=\"G3551\"* death|strong=\"G2288\"* is|strong=\"G3588\"* sin, and|strong=\"G1161\"* the|strong=\"G1161\"* power|strong=\"G1411\"* of|strong=\"G3551\"* sin is|strong=\"G3588\"* the|strong=\"G1161\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 57, + "text": "But|strong=\"G1161\"* thanks|strong=\"G5485\"* be|strong=\"G2316\"* to|strong=\"G1325\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* gives|strong=\"G1325\"* us|strong=\"G1325\"* the|strong=\"G1161\"* victory|strong=\"G3534\"* through|strong=\"G1223\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 58, + "text": "Therefore|strong=\"G5620\"*, my|strong=\"G1722\"* beloved brothers, be|strong=\"G1096\"* steadfast|strong=\"G1476\"*, immovable, always|strong=\"G3842\"* abounding|strong=\"G4052\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* work|strong=\"G2041\"*, because|strong=\"G3754\"* you|strong=\"G5210\"* know|strong=\"G1492\"* that|strong=\"G3754\"* your|strong=\"G2962\"* labor|strong=\"G2873\"* is|strong=\"G1510\"* not|strong=\"G3756\"* in|strong=\"G1722\"* vain|strong=\"G2756\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* concerning|strong=\"G4012\"* the|strong=\"G2532\"* collection|strong=\"G3048\"* for|strong=\"G1519\"* the|strong=\"G2532\"* saints: as|strong=\"G5618\"* I|strong=\"G2532\"* commanded|strong=\"G1299\"* the|strong=\"G2532\"* assemblies|strong=\"G1577\"* of|strong=\"G4012\"* Galatia|strong=\"G1053\"*, you|strong=\"G5210\"* do|strong=\"G4160\"* likewise|strong=\"G2532\"*." + }, + { + "verseNum": 2, + "text": "On|strong=\"G2596\"* the|strong=\"G2596\"* first|strong=\"G1520\"* day|strong=\"G4521\"* of|strong=\"G3844\"* every|strong=\"G2596\"* week|strong=\"G4521\"*, let|strong=\"G1096\"* each|strong=\"G1538\"* one|strong=\"G1520\"* of|strong=\"G3844\"* you|strong=\"G5210\"* save|strong=\"G3361\"* as|strong=\"G2596\"* he|strong=\"G3739\"* may|strong=\"G2443\"* prosper|strong=\"G2137\"*, that|strong=\"G2443\"* no|strong=\"G3361\"* collections|strong=\"G3048\"* are|strong=\"G3739\"* made|strong=\"G1096\"* when|strong=\"G3752\"* I|strong=\"G3739\"* come|strong=\"G2064\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"G3752\"* I|strong=\"G3739\"* arrive|strong=\"G3854\"*, I|strong=\"G3739\"* will|strong=\"G3739\"* send|strong=\"G3992\"* whoever|strong=\"G3739\"* you|strong=\"G5210\"* approve|strong=\"G1381\"* with|strong=\"G1223\"* letters|strong=\"G1992\"* to|strong=\"G1519\"* carry your|strong=\"G1223\"* gracious|strong=\"G5485\"* gift|strong=\"G5485\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 4, + "text": "If|strong=\"G1437\"* it|strong=\"G1161\"* is|strong=\"G1510\"* appropriate for|strong=\"G1161\"* me|strong=\"G1473\"* to|strong=\"G4198\"* go|strong=\"G4198\"* also|strong=\"G2504\"*, they|strong=\"G1161\"* will|strong=\"G1510\"* go|strong=\"G4198\"* with|strong=\"G4862\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"G1161\"* will|strong=\"G2064\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"* when|strong=\"G3752\"* I|strong=\"G1161\"* have|strong=\"G5210\"* passed|strong=\"G1330\"* through|strong=\"G1330\"* Macedonia|strong=\"G3109\"*, for|strong=\"G1063\"* I|strong=\"G1161\"* am|strong=\"G2064\"* passing|strong=\"G1330\"* through|strong=\"G1330\"* Macedonia|strong=\"G3109\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* with|strong=\"G4314\"* you|strong=\"G5210\"* it|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G2532\"* that|strong=\"G2443\"* I|strong=\"G1473\"* will|strong=\"G2532\"* stay with|strong=\"G4314\"* you|strong=\"G5210\"*, or|strong=\"G2228\"* even|strong=\"G2532\"* winter|strong=\"G3914\"* with|strong=\"G4314\"* you|strong=\"G5210\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* send|strong=\"G4311\"* me|strong=\"G1473\"* on|strong=\"G4198\"* my|strong=\"G1473\"* journey|strong=\"G4311\"* wherever|strong=\"G3757\"* I|strong=\"G1473\"* go|strong=\"G4198\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* I|strong=\"G1063\"* do|strong=\"G3708\"* not|strong=\"G3756\"* wish|strong=\"G2309\"* to|strong=\"G4314\"* see|strong=\"G3708\"* you|strong=\"G5210\"* now|strong=\"G3756\"* in|strong=\"G1722\"* passing|strong=\"G3938\"*, but|strong=\"G1063\"* I|strong=\"G1063\"* hope|strong=\"G1679\"* to|strong=\"G4314\"* stay|strong=\"G1961\"* a|strong=\"G1722\"* while|strong=\"G1722\"* with|strong=\"G1722\"* you|strong=\"G5210\"*, if|strong=\"G1437\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* permits|strong=\"G2010\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* I|strong=\"G1161\"* will|strong=\"G1722\"* stay|strong=\"G1961\"* at|strong=\"G1722\"* Ephesus|strong=\"G2181\"* until|strong=\"G2193\"* Pentecost|strong=\"G4005\"*," + }, + { + "verseNum": 9, + "text": "for|strong=\"G1063\"* a|strong=\"G2532\"* great|strong=\"G3173\"* and|strong=\"G2532\"* effective|strong=\"G1756\"* door|strong=\"G2374\"* has|strong=\"G2532\"* opened to|strong=\"G2532\"* me|strong=\"G1473\"*, and|strong=\"G2532\"* there|strong=\"G2532\"* are|strong=\"G2532\"* many|strong=\"G4183\"* adversaries." + }, + { + "verseNum": 10, + "text": "Now|strong=\"G1161\"* if|strong=\"G1437\"* Timothy|strong=\"G5095\"* comes|strong=\"G2064\"*, see that|strong=\"G2443\"* he|strong=\"G1161\"* is|strong=\"G3588\"* with|strong=\"G4314\"* you|strong=\"G5210\"* without|strong=\"G5613\"* fear|strong=\"G2443\"*, for|strong=\"G1063\"* he|strong=\"G1161\"* does|strong=\"G2038\"* the|strong=\"G1161\"* work|strong=\"G2041\"* of|strong=\"G2962\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"*, as|strong=\"G5613\"* I|strong=\"G2504\"* also|strong=\"G2504\"* do|strong=\"G1096\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"G3767\"* let|strong=\"G1161\"* no|strong=\"G3361\"* one|strong=\"G5100\"* despise|strong=\"G1848\"* him|strong=\"G3588\"*. But|strong=\"G1161\"* set|strong=\"G2443\"* him|strong=\"G3588\"* forward on|strong=\"G1722\"* his|strong=\"G1722\"* journey|strong=\"G4311\"* in|strong=\"G1722\"* peace|strong=\"G1515\"*, that|strong=\"G2443\"* he|strong=\"G1161\"* may|strong=\"G2443\"* come|strong=\"G2064\"* to|strong=\"G4314\"* me|strong=\"G1473\"*; for|strong=\"G1063\"* I|strong=\"G1473\"* expect|strong=\"G1551\"* him|strong=\"G3588\"* with|strong=\"G3326\"* the|strong=\"G1722\"* brothers." + }, + { + "verseNum": 12, + "text": "Now|strong=\"G1161\"* concerning|strong=\"G4012\"* Apollos the|strong=\"G2532\"* brother, I|strong=\"G2532\"* strongly|strong=\"G4183\"* urged|strong=\"G3870\"* him|strong=\"G3588\"* to|strong=\"G4314\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"* with|strong=\"G3326\"* the|strong=\"G2532\"* brothers, but|strong=\"G1161\"* it|strong=\"G2532\"* was|strong=\"G1510\"* not|strong=\"G3756\"* at|strong=\"G4314\"* all|strong=\"G2532\"* his|strong=\"G4012\"* desire|strong=\"G2307\"* to|strong=\"G4314\"* come|strong=\"G2064\"* now|strong=\"G1161\"*; but|strong=\"G1161\"* he|strong=\"G2532\"* will|strong=\"G2307\"* come|strong=\"G2064\"* when|strong=\"G3752\"* he|strong=\"G2532\"* has|strong=\"G1510\"* an|strong=\"G2532\"* opportunity|strong=\"G2119\"*." + }, + { + "verseNum": 13, + "text": "Watch|strong=\"G1127\"*! Stand|strong=\"G4739\"* firm|strong=\"G4739\"* in|strong=\"G1722\"* the|strong=\"G1722\"* faith|strong=\"G4102\"*! Be|strong=\"G3588\"* courageous! Be|strong=\"G3588\"* strong|strong=\"G2901\"*!" + }, + { + "verseNum": 14, + "text": "Let|strong=\"G1096\"* all|strong=\"G3956\"* that|strong=\"G3956\"* you|strong=\"G5210\"* do|strong=\"G1096\"* be|strong=\"G1096\"* done|strong=\"G1096\"* in|strong=\"G1722\"* love." + }, + { + "verseNum": 15, + "text": "Now|strong=\"G1161\"* I|strong=\"G2532\"* beg|strong=\"G3870\"* you|strong=\"G5210\"*, brothers—you|strong=\"G5210\"* know|strong=\"G1492\"* the|strong=\"G2532\"* house|strong=\"G3614\"* of|strong=\"G2532\"* Stephanas|strong=\"G4734\"*, that|strong=\"G3754\"* it|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* first|strong=\"G3588\"* fruits of|strong=\"G2532\"* Achaia, and|strong=\"G2532\"* that|strong=\"G3754\"* they|strong=\"G2532\"* have|strong=\"G2532\"* set|strong=\"G5021\"* themselves|strong=\"G1438\"* to|strong=\"G1519\"* serve|strong=\"G1248\"* the|strong=\"G2532\"* saints—" + }, + { + "verseNum": 16, + "text": "that|strong=\"G2443\"* you|strong=\"G5210\"* also|strong=\"G2532\"* be|strong=\"G2532\"* in|strong=\"G2532\"* subjection|strong=\"G5293\"* to|strong=\"G2443\"* such|strong=\"G5108\"*, and|strong=\"G2532\"* to|strong=\"G2443\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* helps|strong=\"G4903\"* in|strong=\"G2532\"* the|strong=\"G2532\"* work|strong=\"G2872\"* and|strong=\"G2532\"* labors|strong=\"G2872\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"G2532\"* rejoice|strong=\"G5463\"* at|strong=\"G1909\"* the|strong=\"G2532\"* coming|strong=\"G3952\"* of|strong=\"G2532\"* Stephanas|strong=\"G4734\"*, Fortunatus|strong=\"G5415\"*, and|strong=\"G2532\"* Achaicus; for|strong=\"G3754\"* that|strong=\"G3754\"* which|strong=\"G3588\"* was|strong=\"G3588\"* lacking|strong=\"G5303\"* on|strong=\"G1909\"* your|strong=\"G5212\"* part|strong=\"G1161\"*, they|strong=\"G2532\"* supplied." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* they|strong=\"G2532\"* refreshed my|strong=\"G1699\"* spirit|strong=\"G4151\"* and|strong=\"G2532\"* yours|strong=\"G4771\"*. Therefore|strong=\"G3767\"* acknowledge|strong=\"G1921\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* like|strong=\"G5108\"* that|strong=\"G3588\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"G1722\"* assemblies|strong=\"G1577\"* of|strong=\"G2532\"* Asia|strong=\"G3588\"* greet you|strong=\"G5210\"*. Aquila and|strong=\"G2532\"* Priscilla|strong=\"G4251\"* greet you|strong=\"G5210\"* warmly|strong=\"G4183\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, together|strong=\"G2596\"* with|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* that|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* their|strong=\"G2532\"* house|strong=\"G3624\"*." + }, + { + "verseNum": 20, + "text": "All|strong=\"G3956\"* the|strong=\"G1722\"* brothers greet you|strong=\"G5210\"*. Greet one|strong=\"G3956\"* another|strong=\"G3588\"* with|strong=\"G1722\"* a|strong=\"G1722\"* holy kiss|strong=\"G5370\"*." + }, + { + "verseNum": 21, + "text": "This|strong=\"G3588\"* greeting is|strong=\"G3588\"* by|strong=\"G3588\"* me|strong=\"G1699\"*, Paul|strong=\"G3972\"*, with|strong=\"G5495\"* my|strong=\"G1699\"* own|strong=\"G1699\"* hand|strong=\"G5495\"*." + }, + { + "verseNum": 22, + "text": "If|strong=\"G1487\"* any|strong=\"G5100\"* man|strong=\"G5100\"* doesn’t|strong=\"G3588\"* love|strong=\"G5368\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"* Jesus|strong=\"G1510\"* Christ|strong=\"G2962\"*, let|strong=\"G1510\"* him|strong=\"G3588\"* be|strong=\"G1510\"* cursed.+ 16:22 Greek: anathema.* Come|strong=\"G1510\"*, Lord|strong=\"G2962\"*!+ 16:22 Aramaic: Maranatha!*" + }, + { + "verseNum": 23, + "text": "The|strong=\"G3588\"* grace|strong=\"G5485\"* of|strong=\"G5485\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G2962\"* be|strong=\"G3588\"* with|strong=\"G3326\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 24, + "text": "My|strong=\"G1722\"* love to|strong=\"G1722\"* all|strong=\"G3956\"* of|strong=\"G1722\"* you|strong=\"G5210\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*. Amen." + } + ] + } + ] + }, + { + "name": "2 Corinthians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, an|strong=\"G2532\"* apostle of|strong=\"G1223\"* Christ|strong=\"G5547\"*+ 1:1 “Christ” means “Anointed One”.* Jesus|strong=\"G2424\"* through|strong=\"G1223\"* the|strong=\"G1722\"* will|strong=\"G2307\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* Timothy|strong=\"G5095\"* our|strong=\"G2316\"* brother, to|strong=\"G2532\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* of|strong=\"G1223\"* God|strong=\"G2316\"* which|strong=\"G3588\"* is|strong=\"G1510\"* at|strong=\"G1722\"* Corinth|strong=\"G2882\"*, with|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* saints who|strong=\"G3588\"* are|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* whole|strong=\"G3650\"* of|strong=\"G1223\"* Achaia:" + }, + { + "verseNum": 2, + "text": "Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 3, + "text": "Blessed|strong=\"G2128\"* be|strong=\"G2532\"* the|strong=\"G2532\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"* of|strong=\"G2316\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, the|strong=\"G2532\"* Father|strong=\"G3962\"* of|strong=\"G2316\"* mercies|strong=\"G3628\"* and|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* all|strong=\"G3956\"* comfort|strong=\"G3874\"*," + }, + { + "verseNum": 4, + "text": "who|strong=\"G3739\"* comforts|strong=\"G3870\"* us|strong=\"G1519\"* in|strong=\"G1722\"* all|strong=\"G3956\"* our|strong=\"G2316\"* affliction|strong=\"G2347\"*, that|strong=\"G3739\"* we|strong=\"G2249\"* may|strong=\"G1410\"* be|strong=\"G1410\"* able|strong=\"G1410\"* to|strong=\"G1519\"* comfort|strong=\"G3874\"* those|strong=\"G3588\"* who|strong=\"G3739\"* are|strong=\"G3588\"* in|strong=\"G1722\"* any|strong=\"G3956\"* affliction|strong=\"G2347\"*, through|strong=\"G1223\"* the|strong=\"G1722\"* comfort|strong=\"G3874\"* with|strong=\"G1722\"* which|strong=\"G3739\"* we|strong=\"G2249\"* ourselves|strong=\"G2249\"* are|strong=\"G3588\"* comforted|strong=\"G3870\"* by|strong=\"G1223\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G3754\"* as|strong=\"G2531\"* the|strong=\"G2532\"* sufferings|strong=\"G3804\"* of|strong=\"G1223\"* Christ|strong=\"G5547\"* abound|strong=\"G4052\"* to|strong=\"G1519\"* us|strong=\"G1519\"*, even|strong=\"G2532\"* so|strong=\"G3779\"* our|strong=\"G2532\"* comfort|strong=\"G3874\"* also|strong=\"G2532\"* abounds through|strong=\"G1223\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* if|strong=\"G1535\"* we|strong=\"G2249\"* are|strong=\"G3588\"* afflicted|strong=\"G2346\"*, it|strong=\"G2532\"* is|strong=\"G3588\"* for|strong=\"G5228\"* your|strong=\"G2532\"* comfort|strong=\"G3874\"* and|strong=\"G2532\"* salvation|strong=\"G4991\"*. If|strong=\"G1535\"* we|strong=\"G2249\"* are|strong=\"G3588\"* comforted|strong=\"G3870\"*, it|strong=\"G2532\"* is|strong=\"G3588\"* for|strong=\"G5228\"* your|strong=\"G2532\"* comfort|strong=\"G3874\"*, which|strong=\"G3739\"* produces in|strong=\"G1722\"* you|strong=\"G5210\"* the|strong=\"G1722\"* patient|strong=\"G5281\"* enduring|strong=\"G5281\"* of|strong=\"G2532\"* the|strong=\"G1722\"* same|strong=\"G3739\"* sufferings|strong=\"G3804\"* which|strong=\"G3739\"* we|strong=\"G2249\"* also|strong=\"G2532\"* suffer|strong=\"G3958\"*." + }, + { + "verseNum": 7, + "text": "Our|strong=\"G2532\"* hope|strong=\"G1680\"* for|strong=\"G3754\"* you|strong=\"G4771\"* is|strong=\"G1510\"* steadfast, knowing|strong=\"G1492\"* that|strong=\"G3754\"*, since|strong=\"G3754\"* you|strong=\"G4771\"* are|strong=\"G1510\"* partakers|strong=\"G2844\"* of|strong=\"G2532\"* the|strong=\"G2532\"* sufferings|strong=\"G3804\"*, so|strong=\"G3779\"* you|strong=\"G4771\"* are|strong=\"G1510\"* also|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* comfort|strong=\"G3874\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* don’t|strong=\"G3588\"* desire|strong=\"G2309\"* to|strong=\"G2532\"* have|strong=\"G2309\"* you|strong=\"G5210\"* uninformed, brothers,+ 1:8 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* concerning|strong=\"G2596\"* our|strong=\"G2532\"* affliction|strong=\"G2347\"* which|strong=\"G3588\"* happened|strong=\"G1096\"* to|strong=\"G2532\"* us|strong=\"G2249\"* in|strong=\"G1722\"* Asia|strong=\"G3588\"*: that|strong=\"G3754\"* we|strong=\"G2249\"* were|strong=\"G3588\"* weighed down|strong=\"G2596\"* exceedingly, beyond|strong=\"G5228\"* our|strong=\"G2532\"* power|strong=\"G1411\"*, so|strong=\"G2532\"* much that|strong=\"G3754\"* we|strong=\"G2249\"* despaired|strong=\"G1820\"* even|strong=\"G2532\"* of|strong=\"G2532\"* life|strong=\"G2198\"*." + }, + { + "verseNum": 9, + "text": "Yes, we|strong=\"G2192\"* ourselves|strong=\"G1438\"* have|strong=\"G2192\"* had|strong=\"G2192\"* the|strong=\"G1722\"* sentence of|strong=\"G2316\"* death|strong=\"G2288\"* within|strong=\"G1722\"* ourselves|strong=\"G1438\"*, that|strong=\"G2443\"* we|strong=\"G2192\"* should|strong=\"G2316\"* not|strong=\"G3361\"* trust|strong=\"G3982\"* in|strong=\"G1722\"* ourselves|strong=\"G1438\"*, but|strong=\"G3361\"* in|strong=\"G1722\"* God|strong=\"G2316\"* who|strong=\"G3588\"* raises|strong=\"G1453\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*," + }, + { + "verseNum": 10, + "text": "who|strong=\"G3739\"* delivered|strong=\"G4506\"* us|strong=\"G1519\"* out|strong=\"G1537\"* of|strong=\"G1537\"* so|strong=\"G2532\"* great|strong=\"G5082\"* a|strong=\"G2532\"* death|strong=\"G2288\"*, and|strong=\"G2532\"* does deliver|strong=\"G4506\"*, on|strong=\"G1519\"* whom|strong=\"G3739\"* we|strong=\"G2249\"* have|strong=\"G2532\"* set|strong=\"G1679\"* our|strong=\"G2532\"* hope|strong=\"G1679\"* that|strong=\"G3754\"* he|strong=\"G2532\"* will|strong=\"G2532\"* also|strong=\"G2532\"* still|strong=\"G2089\"* deliver|strong=\"G4506\"* us|strong=\"G1519\"*," + }, + { + "verseNum": 11, + "text": "you|strong=\"G5210\"* also|strong=\"G2532\"* helping|strong=\"G4943\"* together|strong=\"G4943\"* on|strong=\"G1519\"* our|strong=\"G2532\"* behalf|strong=\"G5228\"* by|strong=\"G1223\"* your|strong=\"G1223\"* supplication|strong=\"G1162\"*; that|strong=\"G2443\"*, for|strong=\"G1519\"* the|strong=\"G2532\"* gift|strong=\"G5486\"* given|strong=\"G2168\"* to|strong=\"G1519\"* us|strong=\"G1519\"* by|strong=\"G1223\"* means|strong=\"G1223\"* of|strong=\"G1537\"* many|strong=\"G4183\"*, thanks|strong=\"G2168\"* may|strong=\"G2532\"* be|strong=\"G2532\"* given|strong=\"G2168\"* by|strong=\"G1223\"* many|strong=\"G4183\"* persons|strong=\"G4383\"* on|strong=\"G1519\"* your|strong=\"G1223\"* behalf|strong=\"G5228\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* our|strong=\"G2316\"* boasting|strong=\"G2746\"* is|strong=\"G1510\"* this|strong=\"G3778\"*: the|strong=\"G1722\"* testimony|strong=\"G3142\"* of|strong=\"G2316\"* our|strong=\"G2316\"* conscience|strong=\"G4893\"* that|strong=\"G3754\"* in|strong=\"G1722\"* holiness and|strong=\"G2532\"* sincerity|strong=\"G1505\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, not|strong=\"G3756\"* in|strong=\"G1722\"* fleshly|strong=\"G4559\"* wisdom|strong=\"G4678\"* but|strong=\"G1161\"* in|strong=\"G1722\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, we|strong=\"G2249\"* behaved ourselves|strong=\"G2249\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*, and|strong=\"G2532\"* more|strong=\"G2532\"* abundantly|strong=\"G4056\"* toward|strong=\"G4314\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* we|strong=\"G3739\"* write|strong=\"G1125\"* no|strong=\"G3756\"* other|strong=\"G1161\"* things|strong=\"G3739\"* to|strong=\"G2532\"* you|strong=\"G5210\"* than|strong=\"G2228\"* what|strong=\"G3739\"* you|strong=\"G5210\"* read|strong=\"G1125\"* or|strong=\"G2228\"* even|strong=\"G2532\"* acknowledge|strong=\"G1921\"*, and|strong=\"G2532\"* I|strong=\"G3739\"* hope|strong=\"G1679\"* you|strong=\"G5210\"* will|strong=\"G2532\"* acknowledge|strong=\"G1921\"* to|strong=\"G2532\"* the|strong=\"G2532\"* end|strong=\"G5056\"*—" + }, + { + "verseNum": 14, + "text": "as|strong=\"G2531\"* also|strong=\"G2532\"* you|strong=\"G5210\"* acknowledged|strong=\"G1921\"* us|strong=\"G2249\"* in|strong=\"G1722\"* part|strong=\"G3313\"*—that|strong=\"G3754\"* we|strong=\"G2249\"* are|strong=\"G1510\"* your|strong=\"G2962\"* boasting|strong=\"G2745\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* you|strong=\"G5210\"* also|strong=\"G2532\"* are|strong=\"G1510\"* ours|strong=\"G1473\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G2250\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 15, + "text": "In|strong=\"G2532\"* this|strong=\"G3778\"* confidence|strong=\"G4006\"*, I|strong=\"G2532\"* was|strong=\"G3588\"* determined to|strong=\"G4314\"* come|strong=\"G2064\"* first|strong=\"G4386\"* to|strong=\"G4314\"* you|strong=\"G5210\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* might|strong=\"G2532\"* have|strong=\"G2192\"* a|strong=\"G2192\"* second|strong=\"G1208\"* benefit|strong=\"G5485\"*," + }, + { + "verseNum": 16, + "text": "and|strong=\"G2532\"* by|strong=\"G1223\"* you|strong=\"G5210\"* to|strong=\"G1519\"* pass|strong=\"G1330\"* into|strong=\"G1519\"* Macedonia|strong=\"G3109\"*, and|strong=\"G2532\"* again|strong=\"G3825\"* from|strong=\"G2064\"* Macedonia|strong=\"G3109\"* to|strong=\"G1519\"* come|strong=\"G2064\"* to|strong=\"G1519\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* to|strong=\"G1519\"* be|strong=\"G2532\"* sent|strong=\"G2532\"* forward|strong=\"G1519\"* by|strong=\"G1223\"* you|strong=\"G5210\"* on|strong=\"G1519\"* my|strong=\"G5259\"* journey|strong=\"G4311\"* to|strong=\"G1519\"* Judea|strong=\"G2449\"*." + }, + { + "verseNum": 17, + "text": "When|strong=\"G2532\"* I|strong=\"G1473\"* therefore|strong=\"G3767\"* planned|strong=\"G1011\"* this|strong=\"G3778\"*, did|strong=\"G2532\"* I|strong=\"G1473\"* show fickleness? Or|strong=\"G2228\"* the|strong=\"G2532\"* things|strong=\"G3778\"* that|strong=\"G2443\"* I|strong=\"G1473\"* plan, do|strong=\"G2532\"* I|strong=\"G1473\"* plan according|strong=\"G2596\"* to|strong=\"G2443\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, that|strong=\"G2443\"* with|strong=\"G3844\"* me|strong=\"G1473\"* there|strong=\"G2532\"* should|strong=\"G3588\"* be|strong=\"G1510\"* the|strong=\"G2532\"* “Yes|strong=\"G3483\"*, yes|strong=\"G3483\"*” and|strong=\"G2532\"* the|strong=\"G2532\"* “No|strong=\"G3756\"*, no|strong=\"G3756\"*?”" + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* as|strong=\"G1161\"* God|strong=\"G2316\"* is|strong=\"G1510\"* faithful|strong=\"G4103\"*, our|strong=\"G2316\"* word|strong=\"G3056\"* toward|strong=\"G4314\"* you|strong=\"G5210\"* was|strong=\"G1510\"* not|strong=\"G3756\"* “Yes|strong=\"G3483\"* and|strong=\"G2532\"* no|strong=\"G3756\"*.”" + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, who|strong=\"G3588\"* was|strong=\"G1096\"* preached|strong=\"G2784\"* among|strong=\"G1722\"* you|strong=\"G5210\"* by|strong=\"G1223\"* us|strong=\"G2249\"*—by|strong=\"G1223\"* me|strong=\"G1473\"*, Silvanus|strong=\"G4610\"*, and|strong=\"G2532\"* Timothy|strong=\"G5095\"*—was|strong=\"G1096\"* not|strong=\"G3756\"* “Yes|strong=\"G3483\"* and|strong=\"G2532\"* no|strong=\"G3756\"*,” but|strong=\"G2532\"* in|strong=\"G1722\"* him|strong=\"G3588\"* is|strong=\"G3588\"* “Yes|strong=\"G3483\"*.”" + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* however many|strong=\"G3745\"* are|strong=\"G3588\"* the|strong=\"G1722\"* promises|strong=\"G1860\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, in|strong=\"G1722\"* him|strong=\"G3588\"* is|strong=\"G3588\"* the|strong=\"G1722\"* “Yes|strong=\"G3483\"*.” Therefore|strong=\"G1352\"* also|strong=\"G2532\"* through|strong=\"G1223\"* him|strong=\"G3588\"* is|strong=\"G3588\"* the|strong=\"G1722\"* “Amen”, to|strong=\"G4314\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G1223\"* God|strong=\"G2316\"* through|strong=\"G1223\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 21, + "text": "Now|strong=\"G1161\"* he|strong=\"G2532\"* who|strong=\"G3588\"* establishes us|strong=\"G1519\"* with|strong=\"G4862\"* you|strong=\"G5210\"* in|strong=\"G1519\"* Christ|strong=\"G5547\"* and|strong=\"G2532\"* anointed|strong=\"G5548\"* us|strong=\"G1519\"* is|strong=\"G3588\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 22, + "text": "who|strong=\"G3588\"* also|strong=\"G2532\"* sealed|strong=\"G4972\"* us|strong=\"G1325\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* us|strong=\"G1325\"* the|strong=\"G1722\"* down payment of|strong=\"G4151\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* in|strong=\"G1722\"* our|strong=\"G2532\"* hearts|strong=\"G2588\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* I|strong=\"G1473\"* call|strong=\"G1941\"* God|strong=\"G2316\"* for|strong=\"G3754\"* a|strong=\"G1519\"* witness|strong=\"G3144\"* to|strong=\"G1519\"* my|strong=\"G1699\"* soul|strong=\"G5590\"*, that|strong=\"G3754\"* to|strong=\"G1519\"* spare|strong=\"G5339\"* you|strong=\"G5210\"*, I|strong=\"G1473\"* didn’t|strong=\"G3588\"* come|strong=\"G2064\"* to|strong=\"G1519\"* Corinth|strong=\"G2882\"*." + }, + { + "verseNum": 24, + "text": "We|strong=\"G3754\"* don’t|strong=\"G3588\"* control your|strong=\"G3588\"* faith|strong=\"G4102\"*, but|strong=\"G1063\"* are|strong=\"G1510\"* fellow|strong=\"G4904\"* workers|strong=\"G4904\"* with|strong=\"G3756\"* you|strong=\"G5210\"* for|strong=\"G1063\"* your|strong=\"G3588\"* joy|strong=\"G5479\"*. For|strong=\"G1063\"* you|strong=\"G5210\"* stand|strong=\"G2476\"* firm|strong=\"G2476\"* in|strong=\"G4102\"* faith|strong=\"G4102\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"G1161\"* I|strong=\"G1161\"* determined|strong=\"G2919\"* this|strong=\"G3778\"* for|strong=\"G1063\"* myself|strong=\"G1683\"*, that|strong=\"G3588\"* I|strong=\"G1161\"* would|strong=\"G2064\"* not|strong=\"G3361\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"* again|strong=\"G3825\"* in|strong=\"G1722\"* sorrow|strong=\"G3077\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* I|strong=\"G1473\"* make|strong=\"G2532\"* you|strong=\"G5210\"* grieve|strong=\"G3076\"*, then|strong=\"G2532\"* who|strong=\"G5101\"* will|strong=\"G5101\"* make|strong=\"G2532\"* me|strong=\"G1473\"* glad|strong=\"G2165\"* but|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G5101\"* is|strong=\"G3588\"* made|strong=\"G3076\"* to|strong=\"G2532\"* grieve|strong=\"G3076\"* by|strong=\"G1537\"* me|strong=\"G1473\"*?" + }, + { + "verseNum": 3, + "text": "And|strong=\"G2532\"* I|strong=\"G1473\"* wrote|strong=\"G1125\"* this|strong=\"G3778\"* very|strong=\"G2532\"* thing|strong=\"G3956\"* to|strong=\"G2443\"* you|strong=\"G5210\"*, so|strong=\"G2443\"* that|strong=\"G3754\"* when|strong=\"G2532\"* I|strong=\"G1473\"* came|strong=\"G2064\"*, I|strong=\"G1473\"* wouldn’t|strong=\"G3588\"* have|strong=\"G2192\"* sorrow|strong=\"G3077\"* from|strong=\"G2064\"* them|strong=\"G3588\"* of|strong=\"G2532\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* ought|strong=\"G1163\"* to|strong=\"G2443\"* rejoice|strong=\"G5463\"*; having|strong=\"G2192\"* confidence|strong=\"G3982\"* in|strong=\"G1909\"* you|strong=\"G5210\"* all|strong=\"G3956\"* that|strong=\"G3754\"* my|strong=\"G1699\"* joy|strong=\"G5479\"* would|strong=\"G2532\"* be|strong=\"G1510\"* shared by|strong=\"G1909\"* all|strong=\"G3956\"* of|strong=\"G2532\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* out|strong=\"G1537\"* of|strong=\"G1537\"* much|strong=\"G4183\"* affliction|strong=\"G2347\"* and|strong=\"G2532\"* anguish|strong=\"G4928\"* of|strong=\"G1537\"* heart|strong=\"G2588\"* I|strong=\"G3739\"* wrote|strong=\"G1125\"* to|strong=\"G1519\"* you|strong=\"G5210\"* with|strong=\"G1537\"* many|strong=\"G4183\"* tears|strong=\"G1144\"*, not|strong=\"G3756\"* that|strong=\"G2443\"* you|strong=\"G5210\"* should|strong=\"G3588\"* be|strong=\"G2532\"* made|strong=\"G3076\"* to|strong=\"G1519\"* grieve|strong=\"G3076\"*, but|strong=\"G2532\"* that|strong=\"G2443\"* you|strong=\"G5210\"* might|strong=\"G2532\"* know|strong=\"G1097\"* the|strong=\"G2532\"* love that|strong=\"G2443\"* I|strong=\"G3739\"* have|strong=\"G2192\"* so|strong=\"G2443\"* abundantly|strong=\"G4056\"* for|strong=\"G1063\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* any|strong=\"G5100\"* has|strong=\"G5100\"* caused|strong=\"G3076\"* sorrow|strong=\"G3076\"*, he|strong=\"G1161\"* has|strong=\"G5100\"* caused|strong=\"G3076\"* sorrow|strong=\"G3076\"* not|strong=\"G3756\"* to|strong=\"G2443\"* me|strong=\"G1473\"*, but|strong=\"G1161\"* in|strong=\"G3956\"* part|strong=\"G3313\"* (that|strong=\"G2443\"* I|strong=\"G1473\"* not|strong=\"G3756\"* press too|strong=\"G1912\"* heavily) to|strong=\"G2443\"* you|strong=\"G5210\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 6, + "text": "This|strong=\"G3778\"* punishment|strong=\"G2009\"* which|strong=\"G3588\"* was|strong=\"G3588\"* inflicted by|strong=\"G5259\"* the|strong=\"G3588\"* many|strong=\"G4183\"* is|strong=\"G3588\"* sufficient|strong=\"G2425\"* for|strong=\"G3778\"* such|strong=\"G5108\"* a|strong=\"G5108\"* one|strong=\"G5108\"*;" + }, + { + "verseNum": 7, + "text": "so|strong=\"G2532\"* that|strong=\"G3588\"*, on|strong=\"G3588\"* the|strong=\"G2532\"* contrary|strong=\"G5121\"*, you|strong=\"G4771\"* should|strong=\"G3588\"* rather|strong=\"G3123\"* forgive|strong=\"G5483\"* him|strong=\"G3588\"* and|strong=\"G2532\"* comfort|strong=\"G3870\"* him|strong=\"G3588\"*, lest|strong=\"G3361\"* by|strong=\"G2532\"* any|strong=\"G3361\"* means|strong=\"G3381\"* such|strong=\"G5108\"* a|strong=\"G2532\"* one|strong=\"G5108\"* should|strong=\"G3588\"* be|strong=\"G2532\"* swallowed|strong=\"G2666\"* up|strong=\"G2666\"* with|strong=\"G2532\"* his|strong=\"G2532\"* excessive|strong=\"G4053\"* sorrow|strong=\"G3077\"*." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G1352\"* I|strong=\"G1352\"* beg|strong=\"G3870\"* you|strong=\"G5210\"* to|strong=\"G1519\"* confirm|strong=\"G2964\"* your|strong=\"G3870\"* love toward|strong=\"G1519\"* him|strong=\"G3870\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* to|strong=\"G1519\"* this|strong=\"G3778\"* end|strong=\"G1519\"* I|strong=\"G2532\"* also|strong=\"G2532\"* wrote|strong=\"G1125\"*, that|strong=\"G2443\"* I|strong=\"G2532\"* might|strong=\"G2532\"* know|strong=\"G1097\"* the|strong=\"G2532\"* proof|strong=\"G1382\"* of|strong=\"G2532\"* you|strong=\"G5210\"*, whether|strong=\"G1487\"* you|strong=\"G5210\"* are|strong=\"G1510\"* obedient|strong=\"G5255\"* in|strong=\"G1519\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"G1161\"* I|strong=\"G1473\"* also|strong=\"G2532\"* forgive|strong=\"G5483\"* whomever|strong=\"G3739\"* you|strong=\"G5210\"* forgive|strong=\"G5483\"* anything|strong=\"G5100\"*. For|strong=\"G1063\"* if|strong=\"G1487\"* indeed|strong=\"G2532\"* I|strong=\"G1473\"* have|strong=\"G2532\"* forgiven|strong=\"G5483\"* anything|strong=\"G5100\"*, I|strong=\"G1473\"* have|strong=\"G2532\"* forgiven|strong=\"G5483\"* that|strong=\"G3739\"* one|strong=\"G5100\"* for|strong=\"G1063\"* your|strong=\"G1223\"* sakes|strong=\"G1223\"* in|strong=\"G1722\"* the|strong=\"G1722\"* presence|strong=\"G4383\"* of|strong=\"G1223\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 11, + "text": "that|strong=\"G2443\"* no|strong=\"G3756\"* advantage|strong=\"G4122\"* may|strong=\"G2443\"* be|strong=\"G3756\"* gained over|strong=\"G5259\"* us by|strong=\"G5259\"* Satan|strong=\"G4567\"*, for|strong=\"G1063\"* we|strong=\"G1063\"* are|strong=\"G3588\"* not|strong=\"G3756\"* ignorant|strong=\"G3361\"* of|strong=\"G5259\"* his|strong=\"G5259\"* schemes|strong=\"G3540\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* I|strong=\"G1473\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Troas|strong=\"G5174\"* for|strong=\"G1519\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* when|strong=\"G1161\"* a|strong=\"G2532\"* door|strong=\"G2374\"* was|strong=\"G3588\"* opened to|strong=\"G1519\"* me|strong=\"G1473\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*," + }, + { + "verseNum": 13, + "text": "I|strong=\"G1473\"* had|strong=\"G2192\"* no|strong=\"G3756\"* relief for|strong=\"G1519\"* my|strong=\"G1473\"* spirit|strong=\"G4151\"*, because|strong=\"G2192\"* I|strong=\"G1473\"* didn’t|strong=\"G3588\"* find|strong=\"G2147\"* Titus|strong=\"G5103\"* my|strong=\"G1473\"* brother, but|strong=\"G3361\"* taking my|strong=\"G1473\"* leave|strong=\"G1831\"* of|strong=\"G4151\"* them|strong=\"G3588\"*, I|strong=\"G1473\"* went|strong=\"G1831\"* out|strong=\"G1831\"* into|strong=\"G1519\"* Macedonia|strong=\"G3109\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"G1161\"* thanks|strong=\"G5485\"* be|strong=\"G2532\"* to|strong=\"G2532\"* God|strong=\"G2316\"* who|strong=\"G3588\"* always|strong=\"G3842\"* leads|strong=\"G2358\"* us|strong=\"G2249\"* in|strong=\"G1722\"* triumph|strong=\"G2358\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* reveals through|strong=\"G1223\"* us|strong=\"G2249\"* the|strong=\"G1722\"* sweet|strong=\"G3744\"* aroma|strong=\"G3744\"* of|strong=\"G1223\"* his|strong=\"G3956\"* knowledge|strong=\"G1108\"* in|strong=\"G1722\"* every|strong=\"G3956\"* place|strong=\"G5117\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G3754\"* we|strong=\"G3754\"* are|strong=\"G1510\"* a|strong=\"G2532\"* sweet aroma of|strong=\"G2316\"* Christ|strong=\"G5547\"* to|strong=\"G2532\"* God|strong=\"G2316\"* in|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* saved|strong=\"G4982\"* and|strong=\"G2532\"* in|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* perish:" + }, + { + "verseNum": 16, + "text": "to|strong=\"G1519\"* the|strong=\"G2532\"* one|strong=\"G3739\"* a|strong=\"G2532\"* stench from|strong=\"G1537\"* death|strong=\"G2288\"* to|strong=\"G1519\"* death|strong=\"G2288\"*, to|strong=\"G1519\"* the|strong=\"G2532\"* other|strong=\"G1161\"* a|strong=\"G2532\"* sweet|strong=\"G3744\"* aroma|strong=\"G3744\"* from|strong=\"G1537\"* life|strong=\"G2222\"* to|strong=\"G1519\"* life|strong=\"G2222\"*. Who|strong=\"G3739\"* is|strong=\"G5101\"* sufficient|strong=\"G2425\"* for|strong=\"G1519\"* these|strong=\"G3778\"* things|strong=\"G3778\"*?" + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* are|strong=\"G1510\"* not|strong=\"G3756\"* as|strong=\"G5613\"* so|strong=\"G5613\"* many|strong=\"G4183\"*, peddling|strong=\"G2585\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G1537\"* God|strong=\"G2316\"*. But|strong=\"G1063\"* as|strong=\"G5613\"* of|strong=\"G1537\"* sincerity|strong=\"G1505\"*, but|strong=\"G1063\"* as|strong=\"G5613\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* sight|strong=\"G2713\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, we|strong=\"G1063\"* speak|strong=\"G2980\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Are|strong=\"G5210\"* we|strong=\"G5613\"* beginning again|strong=\"G3825\"* to|strong=\"G4314\"* commend|strong=\"G4921\"* ourselves|strong=\"G1438\"*? Or|strong=\"G2228\"* do|strong=\"G3361\"* we|strong=\"G5613\"* need|strong=\"G5535\"*, as|strong=\"G5613\"* do|strong=\"G3361\"* some|strong=\"G5100\"*, letters|strong=\"G1992\"* of|strong=\"G1537\"* commendation|strong=\"G4956\"* to|strong=\"G4314\"* you|strong=\"G5210\"* or|strong=\"G2228\"* from|strong=\"G1537\"* you|strong=\"G5210\"*?" + }, + { + "verseNum": 2, + "text": "You|strong=\"G5210\"* are|strong=\"G1510\"* our|strong=\"G2532\"* letter|strong=\"G1992\"*, written|strong=\"G1449\"* in|strong=\"G1722\"* our|strong=\"G2532\"* hearts|strong=\"G2588\"*, known|strong=\"G1097\"* and|strong=\"G2532\"* read by|strong=\"G1722\"* all|strong=\"G3956\"* men|strong=\"G3956\"*," + }, + { + "verseNum": 3, + "text": "being|strong=\"G1510\"* revealed|strong=\"G5319\"* that|strong=\"G3754\"* you|strong=\"G3754\"* are|strong=\"G1510\"* a|strong=\"G1722\"* letter|strong=\"G1992\"* of|strong=\"G5259\"* Christ|strong=\"G5547\"*, served|strong=\"G1247\"* by|strong=\"G1722\"* us|strong=\"G2249\"*, written|strong=\"G1449\"* not|strong=\"G3756\"* with|strong=\"G1722\"* ink|strong=\"G3188\"*, but|strong=\"G2316\"* with|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G5259\"* the|strong=\"G1722\"* living|strong=\"G2198\"* God|strong=\"G2316\"*; not|strong=\"G3756\"* in|strong=\"G1722\"* tablets|strong=\"G4109\"* of|strong=\"G5259\"* stone|strong=\"G3035\"*, but|strong=\"G2316\"* in|strong=\"G1722\"* tablets|strong=\"G4109\"* that|strong=\"G3754\"* are|strong=\"G1510\"* hearts|strong=\"G2588\"* of|strong=\"G5259\"* flesh|strong=\"G4560\"*." + }, + { + "verseNum": 4, + "text": "Such|strong=\"G5108\"* confidence|strong=\"G4006\"* we|strong=\"G1161\"* have|strong=\"G2192\"* through|strong=\"G1223\"* Christ|strong=\"G5547\"* toward|strong=\"G4314\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 5, + "text": "not|strong=\"G3756\"* that|strong=\"G3754\"* we|strong=\"G2249\"* are|strong=\"G1510\"* sufficient|strong=\"G2425\"* of|strong=\"G1537\"* ourselves|strong=\"G1438\"* to|strong=\"G3756\"* account|strong=\"G3049\"* anything|strong=\"G5100\"* as|strong=\"G5613\"* from|strong=\"G1537\"* ourselves|strong=\"G1438\"*; but|strong=\"G2316\"* our|strong=\"G2316\"* sufficiency|strong=\"G2426\"* is|strong=\"G1510\"* from|strong=\"G1537\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 6, + "text": "who|strong=\"G3739\"* also|strong=\"G2532\"* made|strong=\"G2427\"* us|strong=\"G2427\"* sufficient as|strong=\"G1161\"* servants|strong=\"G1249\"* of|strong=\"G4151\"* a|strong=\"G2532\"* new|strong=\"G2537\"* covenant|strong=\"G1242\"*, not|strong=\"G3756\"* of|strong=\"G4151\"* the|strong=\"G2532\"* letter|strong=\"G1121\"* but|strong=\"G1161\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"*. For|strong=\"G1063\"* the|strong=\"G2532\"* letter|strong=\"G1121\"* kills, but|strong=\"G1161\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* gives|strong=\"G2227\"* life|strong=\"G2227\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* the|strong=\"G1722\"* service|strong=\"G1248\"* of|strong=\"G5207\"* death|strong=\"G2288\"*, written|strong=\"G1121\"* engraved|strong=\"G1795\"* on|strong=\"G1722\"* stones|strong=\"G3037\"*, came|strong=\"G1096\"* with|strong=\"G1722\"* glory|strong=\"G1391\"*, so|strong=\"G1161\"* that|strong=\"G3588\"* the|strong=\"G1722\"* children|strong=\"G5207\"* of|strong=\"G5207\"* Israel|strong=\"G2474\"* could|strong=\"G1410\"* not|strong=\"G3361\"* look|strong=\"G1096\"* steadfastly on|strong=\"G1722\"* the|strong=\"G1722\"* face|strong=\"G4383\"* of|strong=\"G5207\"* Moses|strong=\"G3475\"* for|strong=\"G1519\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G5207\"* his|strong=\"G1223\"* face|strong=\"G4383\"*, which|strong=\"G3588\"* was|strong=\"G1096\"* passing|strong=\"G2673\"* away|strong=\"G2673\"*," + }, + { + "verseNum": 8, + "text": "won’t|strong=\"G3588\"* service|strong=\"G1248\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* be|strong=\"G1510\"* with|strong=\"G1722\"* much|strong=\"G3123\"* more|strong=\"G3123\"* glory|strong=\"G1391\"*?" + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* the|strong=\"G3588\"* service|strong=\"G1248\"* of|strong=\"G1391\"* condemnation|strong=\"G2633\"* has|strong=\"G4052\"* glory|strong=\"G1391\"*, the|strong=\"G3588\"* service|strong=\"G1248\"* of|strong=\"G1391\"* righteousness|strong=\"G1343\"* exceeds much|strong=\"G4183\"* more|strong=\"G3123\"* in|strong=\"G4052\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* most certainly|strong=\"G1063\"* that|strong=\"G3588\"* which|strong=\"G3588\"* has|strong=\"G3778\"* been|strong=\"G2532\"* made|strong=\"G3756\"* glorious|strong=\"G1391\"* has|strong=\"G3778\"* not|strong=\"G3756\"* been|strong=\"G2532\"* made|strong=\"G3756\"* glorious|strong=\"G1391\"* in|strong=\"G1722\"* this|strong=\"G3778\"* respect|strong=\"G3313\"*, by|strong=\"G1722\"* reason|strong=\"G1752\"* of|strong=\"G2532\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* that|strong=\"G3588\"* surpasses|strong=\"G5235\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* that|strong=\"G3588\"* which|strong=\"G3588\"* passes away|strong=\"G2673\"* was|strong=\"G3588\"* with|strong=\"G1722\"* glory|strong=\"G1391\"*, much|strong=\"G4183\"* more|strong=\"G3123\"* that|strong=\"G3588\"* which|strong=\"G3588\"* remains|strong=\"G3306\"* is|strong=\"G3588\"* in|strong=\"G1722\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 12, + "text": "Having|strong=\"G2192\"* therefore|strong=\"G3767\"* such|strong=\"G5108\"* a|strong=\"G2192\"* hope|strong=\"G1680\"*, we|strong=\"G2192\"* use|strong=\"G5530\"* great|strong=\"G4183\"* boldness|strong=\"G3954\"* of|strong=\"G1680\"* speech|strong=\"G3954\"*," + }, + { + "verseNum": 13, + "text": "and|strong=\"G2532\"* not|strong=\"G3756\"* as|strong=\"G1519\"* Moses|strong=\"G3475\"*, who|strong=\"G3588\"* put|strong=\"G5087\"* a|strong=\"G2532\"* veil|strong=\"G2571\"* on|strong=\"G1909\"* his|strong=\"G1438\"* face|strong=\"G4383\"* so|strong=\"G2532\"* that|strong=\"G3588\"* the|strong=\"G2532\"* children|strong=\"G5207\"* of|strong=\"G5207\"* Israel|strong=\"G2474\"* wouldn’t|strong=\"G3588\"* look steadfastly on|strong=\"G1909\"* the|strong=\"G2532\"* end|strong=\"G5056\"* of|strong=\"G5207\"* that|strong=\"G3588\"* which|strong=\"G3588\"* was|strong=\"G3588\"* passing|strong=\"G2532\"* away|strong=\"G2673\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G3361\"* their|strong=\"G1722\"* minds|strong=\"G3540\"* were|strong=\"G3588\"* hardened|strong=\"G4456\"*, for|strong=\"G1063\"* until|strong=\"G1722\"* this|strong=\"G3588\"* very|strong=\"G4594\"* day|strong=\"G2250\"* at|strong=\"G1722\"* the|strong=\"G1722\"* reading of|strong=\"G2250\"* the|strong=\"G1722\"* old|strong=\"G3820\"* covenant|strong=\"G1242\"* the|strong=\"G1722\"* same veil|strong=\"G2571\"* remains|strong=\"G3306\"*, because|strong=\"G3754\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* it|strong=\"G3754\"* passes away|strong=\"G2673\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"G3588\"* to|strong=\"G1909\"* this|strong=\"G3588\"* day|strong=\"G4594\"*, when|strong=\"G2259\"* Moses|strong=\"G3475\"* is|strong=\"G3588\"* read, a|strong=\"G1909\"* veil|strong=\"G2571\"* lies|strong=\"G2749\"* on|strong=\"G1909\"* their|strong=\"G3588\"* heart|strong=\"G2588\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* whenever|strong=\"G1437\"* someone turns|strong=\"G1994\"* to|strong=\"G4314\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"*, the|strong=\"G1161\"* veil|strong=\"G2571\"* is|strong=\"G3588\"* taken|strong=\"G4014\"* away|strong=\"G4014\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"G1161\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"* is|strong=\"G1510\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"*; and|strong=\"G1161\"* where|strong=\"G3757\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"* is|strong=\"G1510\"*, there|strong=\"G1161\"* is|strong=\"G1510\"* liberty|strong=\"G1657\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"* all|strong=\"G3956\"*, with|strong=\"G1519\"* unveiled face|strong=\"G4383\"* seeing the|strong=\"G1519\"* glory|strong=\"G1391\"* of|strong=\"G4151\"* the|strong=\"G1519\"* Lord|strong=\"G2962\"* as|strong=\"G1519\"* in|strong=\"G1519\"* a|strong=\"G1519\"* mirror|strong=\"G2734\"*, are|strong=\"G3588\"* transformed|strong=\"G3339\"* into|strong=\"G1519\"* the|strong=\"G1519\"* same image|strong=\"G1504\"* from|strong=\"G3588\"* glory|strong=\"G1391\"* to|strong=\"G1519\"* glory|strong=\"G1391\"*, even|strong=\"G1161\"* as|strong=\"G1519\"* from|strong=\"G3588\"* the|strong=\"G1519\"* Lord|strong=\"G2962\"*, the|strong=\"G1519\"* Spirit|strong=\"G4151\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G1223\"*, seeing|strong=\"G1223\"* we|strong=\"G2192\"* have|strong=\"G2192\"* this|strong=\"G3778\"* ministry|strong=\"G1248\"*, even|strong=\"G2531\"* as|strong=\"G2531\"* we|strong=\"G2192\"* obtained|strong=\"G2192\"* mercy|strong=\"G1653\"*, we|strong=\"G2192\"* don’t|strong=\"G3588\"* faint|strong=\"G1573\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"G3361\"* we|strong=\"G1722\"* have|strong=\"G3956\"* renounced the|strong=\"G1722\"* hidden|strong=\"G2927\"* things|strong=\"G3956\"* of|strong=\"G3056\"* shame, not|strong=\"G3361\"* walking|strong=\"G4043\"* in|strong=\"G1722\"* craftiness|strong=\"G3834\"* nor|strong=\"G3366\"* handling|strong=\"G1389\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* deceitfully|strong=\"G1389\"*, but|strong=\"G3361\"* by|strong=\"G1722\"* the|strong=\"G1722\"* manifestation|strong=\"G5321\"* of|strong=\"G3056\"* the|strong=\"G1722\"* truth commending|strong=\"G4921\"* ourselves|strong=\"G1438\"* to|strong=\"G4314\"* every|strong=\"G3956\"* man|strong=\"G3956\"*’s conscience|strong=\"G4893\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sight|strong=\"G1799\"* of|strong=\"G3056\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 3, + "text": "Even|strong=\"G2532\"* if|strong=\"G1487\"* our|strong=\"G2532\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* is|strong=\"G1510\"* veiled|strong=\"G2572\"*, it|strong=\"G2532\"* is|strong=\"G1510\"* veiled|strong=\"G2572\"* in|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* dying," + }, + { + "verseNum": 4, + "text": "in|strong=\"G1722\"* whom|strong=\"G3739\"* the|strong=\"G1722\"* god|strong=\"G2316\"* of|strong=\"G2316\"* this|strong=\"G3778\"* world has|strong=\"G2316\"* blinded|strong=\"G5186\"* the|strong=\"G1722\"* minds|strong=\"G3540\"* of|strong=\"G2316\"* the|strong=\"G1722\"* unbelieving, that|strong=\"G3739\"* the|strong=\"G1722\"* light|strong=\"G5462\"* of|strong=\"G2316\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G2316\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* Christ|strong=\"G5547\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G1722\"* image|strong=\"G1504\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, should|strong=\"G2316\"* not|strong=\"G3361\"* dawn on|strong=\"G1722\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* don’t preach|strong=\"G2784\"* ourselves|strong=\"G1438\"*, but|strong=\"G1161\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* as|strong=\"G1161\"* Lord|strong=\"G2962\"*, and|strong=\"G1161\"* ourselves|strong=\"G1438\"* as|strong=\"G1161\"* your|strong=\"G1223\"* servants|strong=\"G1401\"* for|strong=\"G1063\"* Jesus|strong=\"G2424\"*’ sake|strong=\"G1223\"*," + }, + { + "verseNum": 6, + "text": "seeing|strong=\"G3754\"* it|strong=\"G3754\"* is|strong=\"G3588\"* God|strong=\"G2316\"* who|strong=\"G3739\"* said|strong=\"G3004\"*, “Light|strong=\"G5457\"* will|strong=\"G2316\"* shine|strong=\"G2989\"* out|strong=\"G1537\"* of|strong=\"G1537\"* darkness|strong=\"G4655\"*,”+ 4:6 Genesis 1:3* who|strong=\"G3739\"* has|strong=\"G2316\"* shone|strong=\"G2989\"* in|strong=\"G1722\"* our|strong=\"G2316\"* hearts|strong=\"G2588\"* to|strong=\"G4314\"* give|strong=\"G3004\"* the|strong=\"G1722\"* light|strong=\"G5457\"* of|strong=\"G1537\"* the|strong=\"G1722\"* knowledge|strong=\"G1108\"* of|strong=\"G1537\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G1537\"* God|strong=\"G2316\"* in|strong=\"G1722\"* the|strong=\"G1722\"* face|strong=\"G4383\"* of|strong=\"G1537\"* Jesus|strong=\"G3004\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"* have|strong=\"G2192\"* this|strong=\"G3778\"* treasure|strong=\"G2344\"* in|strong=\"G1722\"* clay|strong=\"G3749\"* vessels|strong=\"G4632\"*, that|strong=\"G2443\"* the|strong=\"G1722\"* exceeding|strong=\"G5236\"* greatness|strong=\"G5236\"* of|strong=\"G1537\"* the|strong=\"G1722\"* power|strong=\"G1411\"* may|strong=\"G2532\"* be|strong=\"G1510\"* of|strong=\"G1537\"* God|strong=\"G2316\"* and|strong=\"G2532\"* not|strong=\"G3361\"* from|strong=\"G1537\"* ourselves|strong=\"G2249\"*." + }, + { + "verseNum": 8, + "text": "We|strong=\"G1722\"* are|strong=\"G3956\"* pressed on|strong=\"G1722\"* every|strong=\"G3956\"* side|strong=\"G3956\"*, yet not|strong=\"G3756\"* crushed|strong=\"G4729\"*; perplexed, yet not|strong=\"G3756\"* to|strong=\"G1722\"* despair|strong=\"G1820\"*;" + }, + { + "verseNum": 9, + "text": "pursued, yet not|strong=\"G3756\"* forsaken|strong=\"G1459\"*; struck|strong=\"G2598\"* down|strong=\"G2598\"*, yet not|strong=\"G3756\"* destroyed;" + }, + { + "verseNum": 10, + "text": "always|strong=\"G3842\"* carrying|strong=\"G4064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* body|strong=\"G4983\"* the|strong=\"G1722\"* putting|strong=\"G2532\"* to|strong=\"G2443\"* death of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G3588\"* Jesus|strong=\"G2424\"*, that|strong=\"G2443\"* the|strong=\"G1722\"* life|strong=\"G2222\"* of|strong=\"G2532\"* Jesus|strong=\"G2424\"* may|strong=\"G2532\"* also|strong=\"G2532\"* be|strong=\"G2532\"* revealed|strong=\"G5319\"* in|strong=\"G1722\"* our|strong=\"G2424\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* who|strong=\"G3588\"* live|strong=\"G2198\"* are|strong=\"G3588\"* always|strong=\"G1223\"* delivered|strong=\"G3860\"* to|strong=\"G1519\"* death|strong=\"G2288\"* for|strong=\"G1063\"* Jesus|strong=\"G2424\"*’ sake|strong=\"G1223\"*, that|strong=\"G2443\"* the|strong=\"G1722\"* life|strong=\"G2222\"* also|strong=\"G2532\"* of|strong=\"G1223\"* Jesus|strong=\"G2424\"* may|strong=\"G2532\"* be|strong=\"G2532\"* revealed|strong=\"G5319\"* in|strong=\"G1722\"* our|strong=\"G2424\"* mortal|strong=\"G2349\"* flesh|strong=\"G4561\"*." + }, + { + "verseNum": 12, + "text": "So|strong=\"G1161\"* then|strong=\"G1161\"* death|strong=\"G2288\"* works|strong=\"G1754\"* in|strong=\"G1722\"* us|strong=\"G2249\"*, but|strong=\"G1161\"* life|strong=\"G2222\"* in|strong=\"G1722\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* having|strong=\"G2192\"* the|strong=\"G2532\"* same|strong=\"G2532\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* faith|strong=\"G4102\"*, according|strong=\"G2596\"* to|strong=\"G2532\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “I|strong=\"G1473\"* believed|strong=\"G4100\"*, and|strong=\"G2532\"* therefore|strong=\"G1352\"* I|strong=\"G1473\"* spoke|strong=\"G2980\"*.”+ 4:13 Psalms 116:10* We|strong=\"G2249\"* also|strong=\"G2532\"* believe|strong=\"G4100\"*, and|strong=\"G2532\"* therefore|strong=\"G1352\"* we|strong=\"G2249\"* also|strong=\"G2532\"* speak|strong=\"G2980\"*," + }, + { + "verseNum": 14, + "text": "knowing|strong=\"G1492\"* that|strong=\"G3754\"* he|strong=\"G2532\"* who|strong=\"G3588\"* raised|strong=\"G1453\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* will|strong=\"G2532\"* raise|strong=\"G1453\"* us|strong=\"G2249\"* also|strong=\"G2532\"* with|strong=\"G4862\"* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* will|strong=\"G2532\"* present|strong=\"G3936\"* us|strong=\"G2249\"* with|strong=\"G4862\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* all|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3588\"* for|strong=\"G1063\"* your|strong=\"G1223\"* sakes|strong=\"G1223\"*, that|strong=\"G2443\"* the|strong=\"G1519\"* grace|strong=\"G5485\"*, being|strong=\"G2443\"* multiplied through|strong=\"G1223\"* the|strong=\"G1519\"* many|strong=\"G4183\"*, may|strong=\"G2443\"* cause|strong=\"G1223\"* the|strong=\"G1519\"* thanksgiving|strong=\"G2169\"* to|strong=\"G1519\"* abound|strong=\"G4052\"* to|strong=\"G1519\"* the|strong=\"G1519\"* glory|strong=\"G1391\"* of|strong=\"G1223\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 16, + "text": "Therefore|strong=\"G1352\"* we|strong=\"G2249\"* don’t|strong=\"G3588\"* faint|strong=\"G1573\"*, but|strong=\"G2532\"* though|strong=\"G1487\"* our|strong=\"G2532\"* outward|strong=\"G1854\"* person is|strong=\"G3588\"* decaying|strong=\"G1311\"*, yet|strong=\"G2532\"* our|strong=\"G2532\"* inward|strong=\"G2080\"* person is|strong=\"G3588\"* renewed day|strong=\"G2250\"* by|strong=\"G2532\"* day|strong=\"G2250\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* our|strong=\"G2596\"* light|strong=\"G1645\"* affliction|strong=\"G2347\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* for|strong=\"G1063\"* the|strong=\"G1519\"* moment|strong=\"G3910\"*, works for|strong=\"G1063\"* us|strong=\"G1519\"* more|strong=\"G5236\"* and|strong=\"G1391\"* more|strong=\"G5236\"* exceedingly an|strong=\"G1519\"* eternal weight of|strong=\"G1391\"* glory|strong=\"G1391\"*," + }, + { + "verseNum": 18, + "text": "while|strong=\"G1161\"* we|strong=\"G2249\"* don’t|strong=\"G3588\"* look|strong=\"G4648\"* at|strong=\"G1161\"* the|strong=\"G1161\"* things|strong=\"G3588\"* which|strong=\"G3588\"* are|strong=\"G3588\"* seen, but|strong=\"G1161\"* at|strong=\"G1161\"* the|strong=\"G1161\"* things|strong=\"G3588\"* which|strong=\"G3588\"* are|strong=\"G3588\"* not|strong=\"G3361\"* seen. For|strong=\"G1063\"* the|strong=\"G1161\"* things|strong=\"G3588\"* which|strong=\"G3588\"* are|strong=\"G3588\"* seen are|strong=\"G3588\"* temporal|strong=\"G4340\"*, but|strong=\"G1161\"* the|strong=\"G1161\"* things|strong=\"G3588\"* which|strong=\"G3588\"* are|strong=\"G3588\"* not|strong=\"G3361\"* seen are|strong=\"G3588\"* eternal." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* know|strong=\"G1492\"* that|strong=\"G3754\"* if|strong=\"G1437\"* the|strong=\"G1722\"* earthly|strong=\"G1919\"* house|strong=\"G3614\"* of|strong=\"G1537\"* our|strong=\"G2316\"* tent|strong=\"G4636\"* is|strong=\"G3588\"* dissolved|strong=\"G2647\"*, we|strong=\"G2249\"* have|strong=\"G2192\"* a|strong=\"G2192\"* building|strong=\"G3619\"* from|strong=\"G1537\"* God|strong=\"G2316\"*, a|strong=\"G2192\"* house|strong=\"G3614\"* not|strong=\"G2192\"* made|strong=\"G2316\"* with|strong=\"G1722\"* hands, eternal, in|strong=\"G1722\"* the|strong=\"G1722\"* heavens|strong=\"G3772\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* most|strong=\"G1537\"* certainly|strong=\"G1063\"* in|strong=\"G1722\"* this|strong=\"G3778\"* we|strong=\"G2249\"* groan|strong=\"G4727\"*, longing|strong=\"G1971\"* to|strong=\"G2532\"* be|strong=\"G2532\"* clothed|strong=\"G1902\"* with|strong=\"G1722\"* our|strong=\"G2532\"* habitation|strong=\"G3613\"* which|strong=\"G3588\"* is|strong=\"G3588\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"*," + }, + { + "verseNum": 3, + "text": "if|strong=\"G1487\"* indeed|strong=\"G2532\"* being|strong=\"G2532\"* clothed|strong=\"G1746\"*, we|strong=\"G2532\"* will|strong=\"G2532\"* not|strong=\"G3756\"* be|strong=\"G2532\"* found|strong=\"G2147\"* naked|strong=\"G1131\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* indeed|strong=\"G2532\"* we|strong=\"G3739\"* who|strong=\"G3739\"* are|strong=\"G1510\"* in|strong=\"G1722\"* this|strong=\"G3588\"* tent|strong=\"G4636\"* do|strong=\"G2532\"* groan|strong=\"G4727\"*, being|strong=\"G1510\"* burdened, not|strong=\"G3756\"* that|strong=\"G2443\"* we|strong=\"G3739\"* desire|strong=\"G2309\"* to|strong=\"G2443\"* be|strong=\"G1510\"* unclothed|strong=\"G1562\"*, but|strong=\"G2532\"* that|strong=\"G2443\"* we|strong=\"G3739\"* desire|strong=\"G2309\"* to|strong=\"G2443\"* be|strong=\"G1510\"* clothed|strong=\"G1902\"*, that|strong=\"G2443\"* what|strong=\"G3739\"* is|strong=\"G1510\"* mortal|strong=\"G2349\"* may|strong=\"G2532\"* be|strong=\"G1510\"* swallowed|strong=\"G2666\"* up|strong=\"G2666\"* by|strong=\"G1722\"* life|strong=\"G2222\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3588\"* made|strong=\"G2316\"* us|strong=\"G1325\"* for|strong=\"G1519\"* this|strong=\"G3778\"* very|strong=\"G3778\"* thing|strong=\"G3778\"* is|strong=\"G3588\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* also|strong=\"G1161\"* gave|strong=\"G1325\"* to|strong=\"G1519\"* us|strong=\"G1325\"* the|strong=\"G1519\"* down payment of|strong=\"G4151\"* the|strong=\"G1519\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"G3767\"* we|strong=\"G3754\"* are|strong=\"G3588\"* always|strong=\"G3842\"* confident|strong=\"G2292\"* and|strong=\"G2532\"* know|strong=\"G1492\"* that|strong=\"G3754\"* while|strong=\"G1722\"* we|strong=\"G3754\"* are|strong=\"G3588\"* at|strong=\"G1722\"* home|strong=\"G1736\"* in|strong=\"G1722\"* the|strong=\"G1722\"* body|strong=\"G4983\"*, we|strong=\"G3754\"* are|strong=\"G3588\"* absent|strong=\"G1553\"* from|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*;" + }, + { + "verseNum": 7, + "text": "for|strong=\"G1063\"* we|strong=\"G1063\"* walk|strong=\"G4043\"* by|strong=\"G1223\"* faith|strong=\"G4102\"*, not|strong=\"G3756\"* by|strong=\"G1223\"* sight|strong=\"G1491\"*." + }, + { + "verseNum": 8, + "text": "We|strong=\"G2532\"* are|strong=\"G3588\"* courageous, I|strong=\"G2532\"* say|strong=\"G1537\"*, and|strong=\"G2532\"* are|strong=\"G3588\"* willing|strong=\"G2106\"* rather|strong=\"G3123\"* to|strong=\"G4314\"* be|strong=\"G2532\"* absent|strong=\"G1553\"* from|strong=\"G1537\"* the|strong=\"G2532\"* body|strong=\"G4983\"* and|strong=\"G2532\"* to|strong=\"G4314\"* be|strong=\"G2532\"* at|strong=\"G4314\"* home|strong=\"G1736\"* with|strong=\"G4314\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"G1352\"* also|strong=\"G2532\"* we|strong=\"G2532\"* make|strong=\"G2532\"* it|strong=\"G2532\"* our|strong=\"G2532\"* aim, whether|strong=\"G1535\"* at|strong=\"G2532\"* home|strong=\"G1736\"* or|strong=\"G1535\"* absent|strong=\"G1553\"*, to|strong=\"G2532\"* be|strong=\"G1510\"* well|strong=\"G2532\"* pleasing|strong=\"G2101\"* to|strong=\"G2532\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* must|strong=\"G1163\"* all|strong=\"G3956\"* be|strong=\"G1163\"* revealed|strong=\"G5319\"* before|strong=\"G1715\"* the|strong=\"G3956\"* judgment seat of|strong=\"G1223\"* Christ|strong=\"G5547\"* that|strong=\"G2443\"* each|strong=\"G1538\"* one|strong=\"G1538\"* may|strong=\"G2443\"* receive|strong=\"G2865\"* the|strong=\"G3956\"* things|strong=\"G3956\"* in|strong=\"G3956\"* the|strong=\"G3956\"* body|strong=\"G4983\"* according|strong=\"G1538\"* to|strong=\"G4314\"* what|strong=\"G3739\"* he|strong=\"G3739\"* has|strong=\"G3739\"* done|strong=\"G4238\"*, whether|strong=\"G1535\"* good|strong=\"G3956\"* or|strong=\"G1535\"* bad|strong=\"G5337\"*." + }, + { + "verseNum": 11, + "text": "Knowing|strong=\"G1492\"* therefore|strong=\"G3767\"* the|strong=\"G1722\"* fear|strong=\"G5401\"* of|strong=\"G2316\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, we|strong=\"G2532\"* persuade|strong=\"G3982\"* men|strong=\"G3588\"*, but|strong=\"G1161\"* we|strong=\"G2532\"* are|strong=\"G3588\"* revealed|strong=\"G5319\"* to|strong=\"G2532\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* hope|strong=\"G1679\"* that|strong=\"G3588\"* we|strong=\"G2532\"* are|strong=\"G3588\"* revealed|strong=\"G5319\"* also|strong=\"G2532\"* in|strong=\"G1722\"* your|strong=\"G2962\"* consciences|strong=\"G4893\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* are|strong=\"G3588\"* not|strong=\"G3756\"* commending|strong=\"G4921\"* ourselves|strong=\"G1438\"* to|strong=\"G4314\"* you|strong=\"G5210\"* again|strong=\"G3825\"*, but|strong=\"G2532\"* speak as|strong=\"G1722\"* giving|strong=\"G1325\"* you|strong=\"G5210\"* occasion of|strong=\"G2532\"* boasting|strong=\"G2745\"* on|strong=\"G1722\"* our|strong=\"G2532\"* behalf|strong=\"G5228\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* have|strong=\"G2192\"* something|strong=\"G2745\"* to|strong=\"G4314\"* answer those|strong=\"G3588\"* who|strong=\"G3588\"* boast|strong=\"G2744\"* in|strong=\"G1722\"* appearance|strong=\"G4383\"* and|strong=\"G2532\"* not|strong=\"G3756\"* in|strong=\"G1722\"* heart|strong=\"G2588\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* if|strong=\"G1535\"* we|strong=\"G1063\"* are|strong=\"G5210\"* beside|strong=\"G1839\"* ourselves|strong=\"G1839\"*, it|strong=\"G1063\"* is|strong=\"G2316\"* for|strong=\"G1063\"* God|strong=\"G2316\"*. Or|strong=\"G1535\"* if|strong=\"G1535\"* we|strong=\"G1063\"* are|strong=\"G5210\"* of|strong=\"G2316\"* sober|strong=\"G4993\"* mind|strong=\"G4993\"*, it|strong=\"G1063\"* is|strong=\"G2316\"* for|strong=\"G1063\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* the|strong=\"G3956\"* love of|strong=\"G1520\"* Christ|strong=\"G5547\"* compels us|strong=\"G2249\"*; because|strong=\"G1063\"* we|strong=\"G2249\"* judge|strong=\"G2919\"* thus: that|strong=\"G3588\"* one|strong=\"G1520\"* died|strong=\"G3588\"* for|strong=\"G1063\"* all|strong=\"G3956\"*, therefore|strong=\"G1063\"* all|strong=\"G3956\"* died|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* died|strong=\"G3588\"* for|strong=\"G3754\"* all|strong=\"G3956\"*, that|strong=\"G3754\"* those|strong=\"G3588\"* who|strong=\"G3588\"* live|strong=\"G2198\"* should|strong=\"G3588\"* no|strong=\"G3371\"* longer|strong=\"G3371\"* live|strong=\"G2198\"* to|strong=\"G2443\"* themselves|strong=\"G1438\"*, but|strong=\"G2532\"* to|strong=\"G2443\"* him|strong=\"G3588\"* who|strong=\"G3588\"* for|strong=\"G3754\"* their|strong=\"G1438\"* sakes|strong=\"G5228\"* died|strong=\"G3588\"* and|strong=\"G2532\"* rose|strong=\"G2532\"* again|strong=\"G1453\"*." + }, + { + "verseNum": 16, + "text": "Therefore|strong=\"G5620\"* we|strong=\"G2249\"* know|strong=\"G1492\"* no|strong=\"G3762\"* one|strong=\"G3762\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"* from|strong=\"G2532\"* now|strong=\"G3568\"* on|strong=\"G2596\"*. Even|strong=\"G2532\"* though|strong=\"G1487\"* we|strong=\"G2249\"* have|strong=\"G2532\"* known|strong=\"G1097\"* Christ|strong=\"G5547\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, yet|strong=\"G2532\"* now|strong=\"G3568\"* we|strong=\"G2249\"* know|strong=\"G1492\"* him|strong=\"G3588\"* so|strong=\"G2532\"* no|strong=\"G3762\"* more|strong=\"G3765\"*." + }, + { + "verseNum": 17, + "text": "Therefore|strong=\"G5620\"* if|strong=\"G1487\"* anyone|strong=\"G5100\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*, he|strong=\"G3588\"* is|strong=\"G3588\"* a|strong=\"G1096\"* new|strong=\"G2537\"* creation|strong=\"G2937\"*. The|strong=\"G1722\"* old things|strong=\"G3588\"* have|strong=\"G1096\"* passed|strong=\"G3588\"* away|strong=\"G3928\"*. Behold|strong=\"G2400\"*,+ 5:17 “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* all|strong=\"G1722\"* things|strong=\"G3588\"* have|strong=\"G1096\"* become|strong=\"G1096\"* new|strong=\"G2537\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* all|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3588\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* reconciled|strong=\"G2644\"* us|strong=\"G1325\"* to|strong=\"G2532\"* himself|strong=\"G1438\"* through|strong=\"G1223\"* Jesus|strong=\"G2532\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* gave|strong=\"G1325\"* to|strong=\"G2532\"* us|strong=\"G1325\"* the|strong=\"G2532\"* ministry|strong=\"G1248\"* of|strong=\"G1537\"* reconciliation|strong=\"G2643\"*;" + }, + { + "verseNum": 19, + "text": "namely|strong=\"G5613\"*, that|strong=\"G3754\"* God|strong=\"G2316\"* was|strong=\"G1510\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* reconciling|strong=\"G2644\"* the|strong=\"G1722\"* world|strong=\"G2889\"* to|strong=\"G2532\"* himself|strong=\"G1438\"*, not|strong=\"G3361\"* reckoning to|strong=\"G2532\"* them|strong=\"G3588\"* their|strong=\"G1438\"* trespasses|strong=\"G3900\"*, and|strong=\"G2532\"* having|strong=\"G2532\"* committed|strong=\"G5087\"* to|strong=\"G2532\"* us|strong=\"G2249\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* reconciliation|strong=\"G2643\"*." + }, + { + "verseNum": 20, + "text": "We|strong=\"G2249\"* are|strong=\"G3588\"* therefore|strong=\"G3767\"* ambassadors|strong=\"G4243\"* on|strong=\"G5228\"* behalf|strong=\"G5228\"* of|strong=\"G1223\"* Christ|strong=\"G5547\"*, as|strong=\"G5613\"* though|strong=\"G5613\"* God|strong=\"G2316\"* were|strong=\"G3588\"* entreating by|strong=\"G1223\"* us|strong=\"G2249\"*: we|strong=\"G2249\"* beg|strong=\"G1189\"* you|strong=\"G5613\"* on|strong=\"G5228\"* behalf|strong=\"G5228\"* of|strong=\"G1223\"* Christ|strong=\"G5547\"*, be|strong=\"G2316\"* reconciled|strong=\"G2644\"* to|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"G5228\"* him|strong=\"G3588\"* who|strong=\"G3588\"* knew|strong=\"G1097\"* no|strong=\"G3361\"* sin he|strong=\"G3588\"* made|strong=\"G4160\"* to|strong=\"G2443\"* be|strong=\"G1096\"* sin on|strong=\"G1722\"* our|strong=\"G2316\"* behalf|strong=\"G5228\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* in|strong=\"G1722\"* him|strong=\"G3588\"* we|strong=\"G2249\"* might|strong=\"G2316\"* become|strong=\"G1096\"* the|strong=\"G1722\"* righteousness|strong=\"G1343\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Working|strong=\"G4903\"* together|strong=\"G4903\"*, we|strong=\"G2532\"* entreat|strong=\"G3870\"* also|strong=\"G2532\"* that|strong=\"G3588\"* you|strong=\"G5210\"* do|strong=\"G2532\"* not|strong=\"G3361\"* receive|strong=\"G1209\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* in|strong=\"G1519\"* vain|strong=\"G2756\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 3, + "text": "We|strong=\"G2443\"* give|strong=\"G1325\"* no|strong=\"G3361\"* occasion of|strong=\"G1722\"* stumbling in|strong=\"G1722\"* anything|strong=\"G3367\"*, that|strong=\"G2443\"* our|strong=\"G1722\"* service|strong=\"G1248\"* may|strong=\"G2443\"* not|strong=\"G3361\"* be|strong=\"G3361\"* blamed|strong=\"G3469\"*," + }, + { + "verseNum": 4, + "text": "but|strong=\"G2316\"* in|strong=\"G1722\"* everything|strong=\"G3956\"* commending|strong=\"G4921\"* ourselves|strong=\"G1438\"* as|strong=\"G5613\"* servants|strong=\"G1249\"* of|strong=\"G2316\"* God|strong=\"G2316\"*: in|strong=\"G1722\"* great|strong=\"G4183\"* endurance|strong=\"G5281\"*, in|strong=\"G1722\"* afflictions|strong=\"G2347\"*, in|strong=\"G1722\"* hardships, in|strong=\"G1722\"* distresses|strong=\"G4730\"*," + }, + { + "verseNum": 5, + "text": "in|strong=\"G1722\"* beatings|strong=\"G4127\"*, in|strong=\"G1722\"* imprisonments|strong=\"G5438\"*, in|strong=\"G1722\"* riots, in|strong=\"G1722\"* labors|strong=\"G2873\"*, in|strong=\"G1722\"* watchings, in|strong=\"G1722\"* fastings|strong=\"G3521\"*," + }, + { + "verseNum": 6, + "text": "in|strong=\"G1722\"* pureness, in|strong=\"G1722\"* knowledge|strong=\"G1108\"*, in|strong=\"G1722\"* perseverance|strong=\"G3115\"*, in|strong=\"G1722\"* kindness|strong=\"G5544\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, in|strong=\"G1722\"* sincere love," + }, + { + "verseNum": 7, + "text": "in|strong=\"G1722\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* truth, in|strong=\"G1722\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G3056\"* God|strong=\"G2316\"*, by|strong=\"G1223\"* the|strong=\"G1722\"* armor|strong=\"G3696\"* of|strong=\"G3056\"* righteousness|strong=\"G1343\"* on|strong=\"G1722\"* the|strong=\"G1722\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* and|strong=\"G2532\"* on|strong=\"G1722\"* the|strong=\"G1722\"* left," + }, + { + "verseNum": 8, + "text": "by|strong=\"G1223\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* dishonor, by|strong=\"G1223\"* evil|strong=\"G1223\"* report|strong=\"G2162\"* and|strong=\"G2532\"* good|strong=\"G1223\"* report|strong=\"G2162\"*, as|strong=\"G5613\"* deceivers|strong=\"G4108\"* and|strong=\"G2532\"* yet|strong=\"G2532\"* true," + }, + { + "verseNum": 9, + "text": "as|strong=\"G5613\"* unknown and|strong=\"G2532\"* yet|strong=\"G2532\"* well|strong=\"G2532\"* known|strong=\"G1921\"*, as|strong=\"G5613\"* dying and|strong=\"G2532\"* behold|strong=\"G2400\"*—we|strong=\"G2532\"* live|strong=\"G2198\"*, as|strong=\"G5613\"* punished|strong=\"G3811\"* and|strong=\"G2532\"* not|strong=\"G3361\"* killed|strong=\"G2289\"*," + }, + { + "verseNum": 10, + "text": "as|strong=\"G5613\"* sorrowful|strong=\"G3076\"* yet|strong=\"G2532\"* always|strong=\"G3956\"* rejoicing|strong=\"G5463\"*, as|strong=\"G5613\"* poor|strong=\"G4434\"* yet|strong=\"G2532\"* making|strong=\"G4148\"* many|strong=\"G4183\"* rich|strong=\"G4148\"*, as|strong=\"G5613\"* having|strong=\"G2192\"* nothing|strong=\"G3367\"* and|strong=\"G2532\"* yet|strong=\"G2532\"* possessing|strong=\"G2722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 11, + "text": "Our|strong=\"G4314\"* mouth|strong=\"G4750\"* is|strong=\"G3588\"* open|strong=\"G4115\"* to|strong=\"G4314\"* you|strong=\"G5210\"*, Corinthians|strong=\"G2881\"*. Our|strong=\"G4314\"* heart|strong=\"G2588\"* is|strong=\"G3588\"* enlarged|strong=\"G4115\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"G5210\"* are|strong=\"G3588\"* not|strong=\"G3756\"* restricted|strong=\"G4729\"* by|strong=\"G1722\"* us|strong=\"G2249\"*, but|strong=\"G1161\"* you|strong=\"G5210\"* are|strong=\"G3588\"* restricted|strong=\"G4729\"* by|strong=\"G1722\"* your|strong=\"G1722\"* own affections|strong=\"G4698\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"G1161\"* in|strong=\"G2532\"* return—I|strong=\"G2532\"* speak|strong=\"G3004\"* as|strong=\"G5613\"* to|strong=\"G2532\"* my|strong=\"G3588\"* children|strong=\"G5043\"*—you|strong=\"G5210\"* also|strong=\"G2532\"* open|strong=\"G4115\"* your|strong=\"G2532\"* hearts." + }, + { + "verseNum": 14, + "text": "Don’t be|strong=\"G1096\"* unequally yoked with|strong=\"G4314\"* unbelievers, for|strong=\"G1063\"* what|strong=\"G5101\"* fellowship|strong=\"G2842\"* do|strong=\"G5101\"* righteousness|strong=\"G1343\"* and|strong=\"G2532\"* iniquity have|strong=\"G2532\"*? Or|strong=\"G2228\"* what|strong=\"G5101\"* fellowship|strong=\"G2842\"* does|strong=\"G5101\"* light|strong=\"G5457\"* have|strong=\"G2532\"* with|strong=\"G4314\"* darkness|strong=\"G4655\"*?" + }, + { + "verseNum": 15, + "text": "What|strong=\"G5101\"* agreement|strong=\"G4857\"* does|strong=\"G5101\"* Christ|strong=\"G5547\"* have|strong=\"G5101\"* with|strong=\"G3326\"* Belial? Or|strong=\"G2228\"* what|strong=\"G5101\"* portion does|strong=\"G5101\"* a|strong=\"G2228\"* believer|strong=\"G4103\"* have|strong=\"G5101\"* with|strong=\"G3326\"* an|strong=\"G2228\"* unbeliever?" + }, + { + "verseNum": 16, + "text": "What|strong=\"G5101\"* agreement|strong=\"G4783\"* does|strong=\"G1510\"* a|strong=\"G2532\"* temple|strong=\"G3485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* have|strong=\"G2532\"* with|strong=\"G3326\"* idols|strong=\"G1497\"*? For|strong=\"G1063\"* you|strong=\"G3754\"* are|strong=\"G1510\"* a|strong=\"G2532\"* temple|strong=\"G3485\"* of|strong=\"G2316\"* the|strong=\"G1722\"* living|strong=\"G2198\"* God|strong=\"G2316\"*. Even|strong=\"G2532\"* as|strong=\"G2531\"* God|strong=\"G2316\"* said|strong=\"G3004\"*, “I|strong=\"G1473\"* will|strong=\"G2316\"* dwell|strong=\"G1774\"* in|strong=\"G1722\"* them|strong=\"G3588\"* and|strong=\"G2532\"* walk|strong=\"G1704\"* in|strong=\"G1722\"* them|strong=\"G3588\"*. I|strong=\"G1473\"* will|strong=\"G2316\"* be|strong=\"G1510\"* their|strong=\"G2532\"* God|strong=\"G2316\"* and|strong=\"G2532\"* they|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G1510\"* my|strong=\"G1722\"* people|strong=\"G2992\"*.”+ 6:16 Leviticus 26:12; Jeremiah 32:38; Ezekiel 37:27*" + }, + { + "verseNum": 17, + "text": "Therefore|strong=\"G1352\"*" + }, + { + "verseNum": 18, + "text": "I|strong=\"G1473\"* will|strong=\"G1510\"* be|strong=\"G1510\"* to|strong=\"G1519\"* you|strong=\"G5210\"* a|strong=\"G2532\"* Father|strong=\"G3962\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Having|strong=\"G2192\"* therefore|strong=\"G3767\"* these|strong=\"G3778\"* promises|strong=\"G1860\"*, beloved, let|strong=\"G3767\"*’s|strong=\"G2192\"* cleanse|strong=\"G2511\"* ourselves|strong=\"G1438\"* from|strong=\"G2532\"* all|strong=\"G3956\"* defilement|strong=\"G3436\"* of|strong=\"G4151\"* flesh|strong=\"G4561\"* and|strong=\"G2532\"* spirit|strong=\"G4151\"*, perfecting|strong=\"G2005\"* holiness in|strong=\"G1722\"* the|strong=\"G1722\"* fear|strong=\"G5401\"* of|strong=\"G4151\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 2, + "text": "Open your hearts to|strong=\"G3762\"* us|strong=\"G2249\"*. We|strong=\"G2249\"* wronged no|strong=\"G3762\"* one|strong=\"G3762\"*. We|strong=\"G2249\"* corrupted|strong=\"G5351\"* no|strong=\"G3762\"* one|strong=\"G3762\"*. We|strong=\"G2249\"* took|strong=\"G4122\"* advantage|strong=\"G4122\"* of|strong=\"G3762\"* no|strong=\"G3762\"* one|strong=\"G3762\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"G1473\"* say|strong=\"G3004\"* this|strong=\"G3588\"* not|strong=\"G3756\"* to|strong=\"G1519\"* condemn|strong=\"G2633\"* you|strong=\"G3754\"*, for|strong=\"G1063\"* I|strong=\"G1473\"* have|strong=\"G2532\"* said|strong=\"G3004\"* before|strong=\"G4314\"* that|strong=\"G3754\"* you|strong=\"G3754\"* are|strong=\"G1510\"* in|strong=\"G1722\"* our|strong=\"G2532\"* hearts|strong=\"G2588\"* to|strong=\"G1519\"* die|strong=\"G4880\"* together|strong=\"G4314\"* and|strong=\"G2532\"* live|strong=\"G4800\"* together|strong=\"G4314\"*." + }, + { + "verseNum": 4, + "text": "Great|strong=\"G4183\"* is|strong=\"G3588\"* my|strong=\"G3956\"* boldness|strong=\"G3954\"* of|strong=\"G1909\"* speech|strong=\"G3954\"* toward|strong=\"G4314\"* you|strong=\"G5210\"*. Great|strong=\"G4183\"* is|strong=\"G3588\"* my|strong=\"G3956\"* boasting|strong=\"G2746\"* on|strong=\"G1909\"* your|strong=\"G3956\"* behalf|strong=\"G5228\"*. I|strong=\"G1473\"* am|strong=\"G1473\"* filled|strong=\"G4137\"* with|strong=\"G4314\"* comfort|strong=\"G3874\"*. I|strong=\"G1473\"* overflow with|strong=\"G4314\"* joy|strong=\"G5479\"* in|strong=\"G1909\"* all|strong=\"G3956\"* our|strong=\"G3956\"* affliction|strong=\"G2347\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* even|strong=\"G2532\"* when|strong=\"G2532\"* we|strong=\"G2249\"* had|strong=\"G2192\"* come|strong=\"G2064\"* into|strong=\"G1519\"* Macedonia|strong=\"G3109\"*, our|strong=\"G2532\"* flesh|strong=\"G4561\"* had|strong=\"G2192\"* no|strong=\"G3762\"* relief, but|strong=\"G2532\"* we|strong=\"G2249\"* were|strong=\"G3588\"* afflicted|strong=\"G2346\"* on|strong=\"G1722\"* every|strong=\"G3956\"* side|strong=\"G3956\"*. Fightings|strong=\"G3163\"* were|strong=\"G3588\"* outside|strong=\"G1855\"*. Fear|strong=\"G5401\"* was|strong=\"G3588\"* inside|strong=\"G2081\"*." + }, + { + "verseNum": 6, + "text": "Nevertheless, he|strong=\"G3588\"* who|strong=\"G3588\"* comforts|strong=\"G3870\"* the|strong=\"G1722\"* lowly|strong=\"G5011\"*, God|strong=\"G2316\"*, comforted|strong=\"G3870\"* us|strong=\"G2249\"* by|strong=\"G1722\"* the|strong=\"G1722\"* coming|strong=\"G3952\"* of|strong=\"G2316\"* Titus|strong=\"G5103\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"G2532\"* not|strong=\"G3756\"* by|strong=\"G1722\"* his|strong=\"G1909\"* coming|strong=\"G3952\"* only|strong=\"G3440\"*, but|strong=\"G1161\"* also|strong=\"G2532\"* by|strong=\"G1722\"* the|strong=\"G1722\"* comfort|strong=\"G3874\"* with|strong=\"G1722\"* which|strong=\"G3739\"* he|strong=\"G2532\"* was|strong=\"G3588\"* comforted|strong=\"G3870\"* in|strong=\"G1722\"* you|strong=\"G5210\"* while|strong=\"G1722\"* he|strong=\"G2532\"* told us|strong=\"G2249\"* of|strong=\"G2532\"* your|strong=\"G2532\"* longing|strong=\"G1972\"*, your|strong=\"G2532\"* mourning|strong=\"G3602\"*, and|strong=\"G2532\"* your|strong=\"G2532\"* zeal|strong=\"G2205\"* for|strong=\"G5228\"* me|strong=\"G1473\"*, so|strong=\"G2532\"* that|strong=\"G3739\"* I|strong=\"G1473\"* rejoiced|strong=\"G5463\"* still|strong=\"G3123\"* more|strong=\"G3123\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* though|strong=\"G1487\"* I|strong=\"G2532\"* grieved|strong=\"G3076\"* you|strong=\"G5210\"* with|strong=\"G1722\"* my|strong=\"G1722\"* letter|strong=\"G1992\"*, I|strong=\"G2532\"* do|strong=\"G2532\"* not|strong=\"G3756\"* regret|strong=\"G3338\"* it|strong=\"G2532\"*, though|strong=\"G1487\"* I|strong=\"G2532\"* did|strong=\"G2532\"* regret|strong=\"G3338\"* it|strong=\"G2532\"*. For|strong=\"G1063\"* I|strong=\"G2532\"* see that|strong=\"G3754\"* my|strong=\"G1722\"* letter|strong=\"G1992\"* made|strong=\"G3076\"* you|strong=\"G5210\"* grieve|strong=\"G3076\"*, though|strong=\"G1487\"* just|strong=\"G2532\"* for|strong=\"G1063\"* a|strong=\"G2532\"* while|strong=\"G1722\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"G1473\"* now|strong=\"G3568\"* rejoice|strong=\"G5463\"*, not|strong=\"G3756\"* that|strong=\"G3754\"* you|strong=\"G3754\"* were|strong=\"G3748\"* grieved|strong=\"G3076\"*, but|strong=\"G1063\"* that|strong=\"G3754\"* you|strong=\"G3754\"* were|strong=\"G3748\"* grieved|strong=\"G3076\"* to|strong=\"G1519\"* repentance|strong=\"G3341\"*. For|strong=\"G1063\"* you|strong=\"G3754\"* were|strong=\"G3748\"* grieved|strong=\"G3076\"* in|strong=\"G1722\"* a|strong=\"G1519\"* godly|strong=\"G2316\"* way|strong=\"G2596\"*, that|strong=\"G3754\"* you|strong=\"G3754\"* might|strong=\"G2316\"* suffer|strong=\"G2210\"* loss|strong=\"G2210\"* by|strong=\"G1722\"* us|strong=\"G1519\"* in|strong=\"G1722\"* nothing|strong=\"G3367\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* godly|strong=\"G2316\"* sorrow|strong=\"G3077\"* produces|strong=\"G2716\"* repentance|strong=\"G3341\"* leading|strong=\"G1519\"* to|strong=\"G1519\"* salvation|strong=\"G4991\"*, which|strong=\"G3588\"* brings|strong=\"G2716\"* no|strong=\"G3588\"* regret. But|strong=\"G1161\"* the|strong=\"G1519\"* sorrow|strong=\"G3077\"* of|strong=\"G2316\"* the|strong=\"G1519\"* world|strong=\"G2889\"* produces|strong=\"G2716\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* behold|strong=\"G2400\"*, this|strong=\"G3778\"* same|strong=\"G3778\"* thing|strong=\"G3956\"*, that|strong=\"G3588\"* you|strong=\"G5210\"* were|strong=\"G1510\"* grieved|strong=\"G3076\"* in|strong=\"G1722\"* a|strong=\"G1722\"* godly|strong=\"G2316\"* way|strong=\"G2596\"*, what|strong=\"G3588\"* earnest care|strong=\"G4710\"* it|strong=\"G1063\"* worked in|strong=\"G1722\"* you|strong=\"G5210\"*. Yes|strong=\"G1063\"*, what|strong=\"G3588\"* defense, indignation|strong=\"G2205\"*, fear|strong=\"G5401\"*, longing|strong=\"G1972\"*, zeal|strong=\"G2205\"*, and|strong=\"G2316\"* vindication! In|strong=\"G1722\"* everything|strong=\"G3956\"* you|strong=\"G5210\"* demonstrated|strong=\"G4921\"* yourselves|strong=\"G1438\"* to|strong=\"G2596\"* be|strong=\"G1510\"* pure in|strong=\"G1722\"* the|strong=\"G1722\"* matter|strong=\"G4229\"*." + }, + { + "verseNum": 12, + "text": "So|strong=\"G2532\"* although|strong=\"G5210\"* I|strong=\"G1473\"* wrote|strong=\"G1125\"* to|strong=\"G4314\"* you|strong=\"G5210\"*, I|strong=\"G1473\"* wrote|strong=\"G1125\"* not|strong=\"G3756\"* for|strong=\"G5228\"* his|strong=\"G2532\"* cause|strong=\"G1752\"* that|strong=\"G3588\"* did|strong=\"G2532\"* the|strong=\"G2532\"* wrong, nor|strong=\"G3761\"* for|strong=\"G5228\"* his|strong=\"G2532\"* cause|strong=\"G1752\"* that|strong=\"G3588\"* suffered the|strong=\"G2532\"* wrong, but|strong=\"G2532\"* that|strong=\"G3588\"* your|strong=\"G2532\"* earnest care|strong=\"G4710\"* for|strong=\"G5228\"* us|strong=\"G2249\"* might|strong=\"G2532\"* be|strong=\"G2532\"* revealed|strong=\"G5319\"* in|strong=\"G2532\"* you|strong=\"G5210\"* in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"G1223\"* we|strong=\"G2249\"* have|strong=\"G1473\"* been comforted|strong=\"G3870\"*. In|strong=\"G1909\"* our|strong=\"G1223\"* comfort|strong=\"G3874\"* we|strong=\"G2249\"* rejoiced|strong=\"G5463\"* the|strong=\"G3956\"* more|strong=\"G3123\"* exceedingly|strong=\"G4056\"* for|strong=\"G3754\"* the|strong=\"G3956\"* joy|strong=\"G5479\"* of|strong=\"G4151\"* Titus|strong=\"G5103\"*, because|strong=\"G3754\"* his|strong=\"G3956\"* spirit|strong=\"G4151\"* has|strong=\"G3778\"* been refreshed by|strong=\"G1223\"* you|strong=\"G5210\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G3754\"* if|strong=\"G1487\"* in|strong=\"G1722\"* anything|strong=\"G5100\"* I|strong=\"G1473\"* have|strong=\"G2532\"* boasted|strong=\"G2744\"* to|strong=\"G2532\"* him|strong=\"G3588\"* on|strong=\"G1909\"* your|strong=\"G2532\"* behalf|strong=\"G5228\"*, I|strong=\"G1473\"* was|strong=\"G1096\"* not|strong=\"G3756\"* disappointed|strong=\"G2617\"*. But|strong=\"G2532\"* as|strong=\"G5613\"* we|strong=\"G2249\"* spoke|strong=\"G2980\"* all|strong=\"G3956\"* things|strong=\"G3956\"* to|strong=\"G2532\"* you|strong=\"G5210\"* in|strong=\"G1722\"* truth, so|strong=\"G3779\"* our|strong=\"G2532\"* glorying|strong=\"G2746\"* also|strong=\"G2532\"* which|strong=\"G3588\"* I|strong=\"G1473\"* made|strong=\"G1096\"* before|strong=\"G1909\"* Titus|strong=\"G5103\"* was|strong=\"G1096\"* found|strong=\"G1096\"* to|strong=\"G2532\"* be|strong=\"G1096\"* truth." + }, + { + "verseNum": 15, + "text": "His|strong=\"G3956\"* affection|strong=\"G4698\"* is|strong=\"G1510\"* more|strong=\"G2532\"* abundantly|strong=\"G4056\"* toward|strong=\"G1519\"* you|strong=\"G5210\"*, while|strong=\"G5613\"* he|strong=\"G2532\"* remembers all|strong=\"G3956\"* of|strong=\"G2532\"* your|strong=\"G2532\"* obedience|strong=\"G5218\"*, how|strong=\"G5613\"* with|strong=\"G3326\"* fear|strong=\"G5401\"* and|strong=\"G2532\"* trembling|strong=\"G5156\"* you|strong=\"G5210\"* received|strong=\"G1209\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"G3754\"* rejoice|strong=\"G5463\"* that|strong=\"G3754\"* in|strong=\"G1722\"* everything|strong=\"G3956\"* I|strong=\"G3754\"* am|strong=\"G5463\"* confident|strong=\"G2292\"* concerning|strong=\"G1722\"* you|strong=\"G5210\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Moreover|strong=\"G1161\"*, brothers, we|strong=\"G1161\"* make|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G1722\"* you|strong=\"G5210\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* which|strong=\"G3588\"* has|strong=\"G2316\"* been|strong=\"G1325\"* given|strong=\"G1325\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assemblies|strong=\"G1577\"* of|strong=\"G2316\"* Macedonia|strong=\"G3109\"*," + }, + { + "verseNum": 2, + "text": "how|strong=\"G3754\"* in|strong=\"G1722\"* a|strong=\"G2532\"* severe ordeal|strong=\"G1382\"* of|strong=\"G2532\"* affliction|strong=\"G2347\"*, the|strong=\"G1722\"* abundance|strong=\"G4052\"* of|strong=\"G2532\"* their|strong=\"G2532\"* joy|strong=\"G5479\"* and|strong=\"G2532\"* their|strong=\"G2532\"* deep|strong=\"G4183\"* poverty|strong=\"G4432\"* abounded|strong=\"G4052\"* to|strong=\"G1519\"* the|strong=\"G1722\"* riches|strong=\"G4149\"* of|strong=\"G2532\"* their|strong=\"G2532\"* generosity." + }, + { + "verseNum": 3, + "text": "For|strong=\"G3754\"* according|strong=\"G2596\"* to|strong=\"G2532\"* their|strong=\"G2532\"* power|strong=\"G1411\"*, I|strong=\"G2532\"* testify|strong=\"G3140\"*, yes and|strong=\"G2532\"* beyond|strong=\"G3844\"* their|strong=\"G2532\"* power|strong=\"G1411\"*, they|strong=\"G2532\"* gave|strong=\"G2532\"* of|strong=\"G2532\"* their|strong=\"G2532\"* own accord|strong=\"G2596\"*," + }, + { + "verseNum": 4, + "text": "begging|strong=\"G1189\"* us|strong=\"G1519\"* with|strong=\"G3326\"* much|strong=\"G4183\"* entreaty to|strong=\"G1519\"* receive this|strong=\"G3588\"* grace|strong=\"G5485\"* and|strong=\"G2532\"* the|strong=\"G2532\"* fellowship|strong=\"G2842\"* in|strong=\"G1519\"* the|strong=\"G2532\"* service|strong=\"G1248\"* to|strong=\"G1519\"* the|strong=\"G2532\"* saints." + }, + { + "verseNum": 5, + "text": "This|strong=\"G3588\"* was|strong=\"G3588\"* not|strong=\"G3756\"* as|strong=\"G2531\"* we|strong=\"G2249\"* had|strong=\"G2532\"* expected|strong=\"G1679\"*, but|strong=\"G2532\"* first|strong=\"G4413\"* they|strong=\"G2532\"* gave|strong=\"G1325\"* their|strong=\"G1438\"* own|strong=\"G1438\"* selves|strong=\"G1438\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* us|strong=\"G1325\"* through|strong=\"G1223\"* the|strong=\"G2532\"* will|strong=\"G2307\"* of|strong=\"G1223\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 6, + "text": "So|strong=\"G3779\"* we|strong=\"G2249\"* urged|strong=\"G3870\"* Titus|strong=\"G5103\"*, that|strong=\"G2443\"* as|strong=\"G2531\"* he|strong=\"G2532\"* had|strong=\"G2532\"* made|strong=\"G1519\"* a|strong=\"G2532\"* beginning|strong=\"G4278\"* before|strong=\"G1519\"*, so|strong=\"G3779\"* he|strong=\"G2532\"* would|strong=\"G2532\"* also|strong=\"G2532\"* complete|strong=\"G2005\"* in|strong=\"G1519\"* you|strong=\"G5210\"* this|strong=\"G3778\"* grace|strong=\"G5485\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G2532\"* as|strong=\"G5618\"* you|strong=\"G5210\"* abound|strong=\"G4052\"* in|strong=\"G1722\"* everything|strong=\"G3956\"*—in|strong=\"G1722\"* faith|strong=\"G4102\"*, utterance|strong=\"G3056\"*, knowledge|strong=\"G1108\"*, all|strong=\"G3956\"* earnestness|strong=\"G4710\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* your|strong=\"G2532\"* love to|strong=\"G2443\"* us|strong=\"G2249\"*—see that|strong=\"G2443\"* you|strong=\"G5210\"* also|strong=\"G2532\"* abound|strong=\"G4052\"* in|strong=\"G1722\"* this|strong=\"G3778\"* grace|strong=\"G5485\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"G2532\"* speak|strong=\"G3004\"* not|strong=\"G3756\"* by|strong=\"G1223\"* way|strong=\"G2596\"* of|strong=\"G1223\"* commandment|strong=\"G2003\"*, but|strong=\"G2532\"* as|strong=\"G2596\"* proving|strong=\"G1381\"* through|strong=\"G1223\"* the|strong=\"G2532\"* earnestness|strong=\"G4710\"* of|strong=\"G1223\"* others|strong=\"G2087\"* the|strong=\"G2532\"* sincerity|strong=\"G1103\"* also|strong=\"G2532\"* of|strong=\"G1223\"* your|strong=\"G5212\"* love." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* know|strong=\"G1097\"* the|strong=\"G1223\"* grace|strong=\"G5485\"* of|strong=\"G1223\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, that|strong=\"G3754\"* though|strong=\"G3754\"* he|strong=\"G3754\"* was|strong=\"G1510\"* rich|strong=\"G4145\"*, yet|strong=\"G1063\"* for|strong=\"G1063\"* your|strong=\"G1223\"* sakes|strong=\"G1223\"* he|strong=\"G3754\"* became|strong=\"G4433\"* poor|strong=\"G4433\"*, that|strong=\"G3754\"* you|strong=\"G5210\"* through|strong=\"G1223\"* his|strong=\"G1223\"* poverty|strong=\"G4432\"* might|strong=\"G5210\"* become|strong=\"G1510\"* rich|strong=\"G4145\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"G2532\"* give|strong=\"G1325\"* advice|strong=\"G1106\"* in|strong=\"G1722\"* this|strong=\"G3778\"*: it|strong=\"G2532\"* is|strong=\"G3588\"* expedient|strong=\"G4851\"* for|strong=\"G1063\"* you|strong=\"G5210\"* who|strong=\"G3588\"* were|strong=\"G3588\"* the|strong=\"G1722\"* first|strong=\"G3588\"* to|strong=\"G2532\"* start a|strong=\"G2532\"* year|strong=\"G4070\"* ago|strong=\"G4070\"*, not|strong=\"G3756\"* only|strong=\"G3440\"* to|strong=\"G2532\"* do|strong=\"G4160\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* willing|strong=\"G2309\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* complete|strong=\"G2005\"* the|strong=\"G2532\"* doing|strong=\"G4160\"* also|strong=\"G2532\"*, that|strong=\"G3588\"* as|strong=\"G1161\"* there|strong=\"G2532\"* was|strong=\"G3588\"* the|strong=\"G2532\"* readiness|strong=\"G4288\"* to|strong=\"G2532\"* be|strong=\"G2532\"* willing|strong=\"G2309\"*, so|strong=\"G3779\"* there|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G2532\"* the|strong=\"G2532\"* completion|strong=\"G2005\"* also|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* your|strong=\"G2192\"* ability|strong=\"G2192\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* the|strong=\"G3588\"* readiness|strong=\"G4288\"* is|strong=\"G3588\"* there|strong=\"G1063\"*, it|strong=\"G1063\"* is|strong=\"G3588\"* acceptable|strong=\"G2144\"* according|strong=\"G3756\"* to|strong=\"G3756\"* what|strong=\"G3588\"* you|strong=\"G1437\"* have|strong=\"G2192\"*, not|strong=\"G3756\"* according|strong=\"G3756\"* to|strong=\"G3756\"* what|strong=\"G3588\"* you|strong=\"G1437\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* this|strong=\"G3588\"* is|strong=\"G3588\"* not|strong=\"G3756\"* that|strong=\"G2443\"* others|strong=\"G3588\"* may|strong=\"G2443\"* be|strong=\"G3756\"* eased and|strong=\"G3588\"* you|strong=\"G5210\"* distressed," + }, + { + "verseNum": 14, + "text": "but|strong=\"G2532\"* for|strong=\"G1519\"* equality|strong=\"G2471\"*. Your|strong=\"G2532\"* abundance|strong=\"G4051\"* at|strong=\"G1722\"* this|strong=\"G3588\"* present|strong=\"G3568\"* time|strong=\"G2540\"* supplies their|strong=\"G2532\"* lack|strong=\"G5303\"*, that|strong=\"G2443\"* their|strong=\"G2532\"* abundance|strong=\"G4051\"* also|strong=\"G2532\"* may|strong=\"G2532\"* become|strong=\"G1096\"* a|strong=\"G1096\"* supply for|strong=\"G1519\"* your|strong=\"G2532\"* lack|strong=\"G5303\"*, that|strong=\"G2443\"* there|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G1096\"* equality|strong=\"G2471\"*." + }, + { + "verseNum": 15, + "text": "As|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “He|strong=\"G2532\"* who|strong=\"G3588\"* gathered much|strong=\"G4183\"* had|strong=\"G2532\"* nothing|strong=\"G3756\"* left over|strong=\"G4121\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* gathered little|strong=\"G3641\"* had|strong=\"G2532\"* no|strong=\"G3756\"* lack|strong=\"G1641\"*.”+ 8:15 Exodus 16:18*" + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* thanks|strong=\"G5485\"* be|strong=\"G2316\"* to|strong=\"G1722\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* puts|strong=\"G1325\"* the|strong=\"G1722\"* same earnest care|strong=\"G4710\"* for|strong=\"G5228\"* you|strong=\"G5210\"* into|strong=\"G1722\"* the|strong=\"G1722\"* heart|strong=\"G2588\"* of|strong=\"G2316\"* Titus|strong=\"G5103\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G3754\"* he|strong=\"G1161\"* indeed|strong=\"G3303\"* accepted|strong=\"G1209\"* our|strong=\"G4314\"* exhortation|strong=\"G3874\"*, but|strong=\"G1161\"* being|strong=\"G5225\"* himself very|strong=\"G3588\"* earnest|strong=\"G4705\"*, he|strong=\"G1161\"* went|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G4314\"* you|strong=\"G5210\"* of|strong=\"G3588\"* his|strong=\"G3754\"* own accord|strong=\"G4314\"*." + }, + { + "verseNum": 18, + "text": "We|strong=\"G3739\"* have|strong=\"G3956\"* sent|strong=\"G4842\"* together|strong=\"G3326\"* with|strong=\"G3326\"* him|strong=\"G3588\"* the|strong=\"G1722\"* brother whose|strong=\"G3739\"* praise|strong=\"G1868\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Good|strong=\"G3956\"* News|strong=\"G2098\"* is|strong=\"G3588\"* known throughout|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* assemblies|strong=\"G1577\"*." + }, + { + "verseNum": 19, + "text": "Not|strong=\"G3756\"* only|strong=\"G3440\"* so|strong=\"G2532\"*, but|strong=\"G1161\"* he|strong=\"G2532\"* was|strong=\"G3588\"* also|strong=\"G2532\"* appointed|strong=\"G5500\"* by|strong=\"G5259\"* the|strong=\"G2532\"* assemblies|strong=\"G1577\"* to|strong=\"G4314\"* travel|strong=\"G4898\"* with|strong=\"G4862\"* us|strong=\"G2249\"* in|strong=\"G2532\"* this|strong=\"G3778\"* grace|strong=\"G5485\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* served|strong=\"G1247\"* by|strong=\"G5259\"* us|strong=\"G2249\"* to|strong=\"G4314\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G5259\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* himself|strong=\"G4862\"*, and|strong=\"G2532\"* to|strong=\"G4314\"* show our|strong=\"G2532\"* readiness|strong=\"G4288\"*." + }, + { + "verseNum": 20, + "text": "We|strong=\"G2249\"* are|strong=\"G3588\"* avoiding|strong=\"G4724\"* this|strong=\"G3778\"*, that|strong=\"G3588\"* any|strong=\"G5100\"* man|strong=\"G5100\"* should|strong=\"G5100\"* blame|strong=\"G3469\"* us|strong=\"G2249\"* concerning|strong=\"G1722\"* this|strong=\"G3778\"* abundance which|strong=\"G3588\"* is|strong=\"G3588\"* administered|strong=\"G1247\"* by|strong=\"G1722\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 21, + "text": "Having|strong=\"G2532\"* regard|strong=\"G4306\"* for|strong=\"G1063\"* honorable|strong=\"G2570\"* things|strong=\"G2570\"*, not|strong=\"G3756\"* only|strong=\"G3440\"* in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2532\"* men." + }, + { + "verseNum": 22, + "text": "We|strong=\"G2249\"* have|strong=\"G1473\"* sent|strong=\"G4842\"* with|strong=\"G1722\"* them|strong=\"G3588\"* our|strong=\"G1722\"* brother whom|strong=\"G3739\"* we|strong=\"G2249\"* have|strong=\"G1473\"* many|strong=\"G4183\"* times|strong=\"G4178\"* proved|strong=\"G1381\"* earnest|strong=\"G4705\"* in|strong=\"G1722\"* many|strong=\"G4183\"* things|strong=\"G3588\"*, but|strong=\"G1161\"* now|strong=\"G1161\"* much|strong=\"G4183\"* more|strong=\"G4183\"* earnest|strong=\"G4705\"*, by|strong=\"G1722\"* reason of|strong=\"G1722\"* the|strong=\"G1722\"* great|strong=\"G4183\"* confidence|strong=\"G4006\"* which|strong=\"G3739\"* he|strong=\"G1161\"* has|strong=\"G3739\"* in|strong=\"G1722\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 23, + "text": "As|strong=\"G1519\"* for|strong=\"G1519\"* Titus|strong=\"G5103\"*, he|strong=\"G2532\"* is|strong=\"G5547\"* my|strong=\"G1699\"* partner|strong=\"G2844\"* and|strong=\"G2532\"* fellow|strong=\"G4904\"* worker|strong=\"G4904\"* for|strong=\"G1519\"* you|strong=\"G5210\"*. As|strong=\"G1519\"* for|strong=\"G1519\"* our|strong=\"G2532\"* brothers, they|strong=\"G2532\"* are|strong=\"G2532\"* the|strong=\"G2532\"* apostles of|strong=\"G2532\"* the|strong=\"G2532\"* assemblies|strong=\"G1577\"*, the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 24, + "text": "Therefore|strong=\"G3767\"* show|strong=\"G1731\"* the|strong=\"G2532\"* proof|strong=\"G1732\"* of|strong=\"G2532\"* your|strong=\"G2532\"* love to|strong=\"G1519\"* them|strong=\"G3588\"* before|strong=\"G1519\"* the|strong=\"G2532\"* assemblies|strong=\"G1577\"*, and|strong=\"G2532\"* of|strong=\"G2532\"* our|strong=\"G2532\"* boasting|strong=\"G2746\"* on|strong=\"G1519\"* your|strong=\"G2532\"* behalf|strong=\"G5228\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "It|strong=\"G1063\"* is|strong=\"G1510\"* indeed|strong=\"G3303\"* unnecessary for|strong=\"G1063\"* me|strong=\"G1473\"* to|strong=\"G1519\"* write|strong=\"G1125\"* to|strong=\"G1519\"* you|strong=\"G5210\"* concerning|strong=\"G4012\"* the|strong=\"G1519\"* service|strong=\"G1248\"* to|strong=\"G1519\"* the|strong=\"G1519\"* saints," + }, + { + "verseNum": 2, + "text": "for|strong=\"G1063\"* I|strong=\"G3739\"* know|strong=\"G1492\"* your|strong=\"G2532\"* readiness|strong=\"G4288\"*, of|strong=\"G2532\"* which|strong=\"G3739\"* I|strong=\"G3739\"* boast|strong=\"G2744\"* on|strong=\"G5228\"* your|strong=\"G2532\"* behalf|strong=\"G5228\"* to|strong=\"G2532\"* those|strong=\"G3588\"* of|strong=\"G2532\"* Macedonia|strong=\"G3110\"*, that|strong=\"G3754\"* Achaia has|strong=\"G3739\"* been|strong=\"G2532\"* prepared|strong=\"G3903\"* for|strong=\"G1063\"* the|strong=\"G2532\"* past year|strong=\"G4070\"*. Your|strong=\"G2532\"* zeal|strong=\"G2205\"* has|strong=\"G3739\"* stirred|strong=\"G2532\"* up|strong=\"G2532\"* very|strong=\"G4183\"* many|strong=\"G4183\"* of|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* I|strong=\"G1473\"* have|strong=\"G1473\"* sent|strong=\"G3992\"* the|strong=\"G1722\"* brothers so|strong=\"G2443\"* that|strong=\"G2443\"* our|strong=\"G1722\"* boasting|strong=\"G2745\"* on|strong=\"G1722\"* your|strong=\"G1722\"* behalf|strong=\"G5228\"* may|strong=\"G2443\"* not|strong=\"G3361\"* be|strong=\"G1510\"* in|strong=\"G1722\"* vain|strong=\"G2758\"* in|strong=\"G1722\"* this|strong=\"G3778\"* respect|strong=\"G3313\"*, that|strong=\"G2443\"*, just|strong=\"G2531\"* as|strong=\"G2531\"* I|strong=\"G1473\"* said|strong=\"G3004\"*, you|strong=\"G5210\"* may|strong=\"G2443\"* be|strong=\"G1510\"* prepared|strong=\"G3903\"*," + }, + { + "verseNum": 4, + "text": "lest|strong=\"G3361\"* by|strong=\"G1722\"* any|strong=\"G1437\"* means|strong=\"G3381\"*, if|strong=\"G1437\"* anyone|strong=\"G1437\"* from|strong=\"G2064\"* Macedonia|strong=\"G3110\"* comes|strong=\"G2064\"* there|strong=\"G2532\"* with|strong=\"G1722\"* me|strong=\"G1473\"* and|strong=\"G2532\"* finds|strong=\"G2147\"* you|strong=\"G5210\"* unprepared, we|strong=\"G2249\"* (to|strong=\"G2443\"* say|strong=\"G3004\"* nothing|strong=\"G3361\"* of|strong=\"G2532\"* you|strong=\"G5210\"*) would|strong=\"G2532\"* be|strong=\"G2532\"* disappointed|strong=\"G2617\"* in|strong=\"G1722\"* this|strong=\"G3778\"* confident|strong=\"G1722\"* boasting|strong=\"G3004\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"G2532\"* thought|strong=\"G2233\"* it|strong=\"G2532\"* necessary|strong=\"G3767\"* therefore|strong=\"G3767\"* to|strong=\"G1519\"* entreat|strong=\"G3870\"* the|strong=\"G2532\"* brothers that|strong=\"G2443\"* they|strong=\"G2532\"* would|strong=\"G2532\"* go|strong=\"G4281\"* before|strong=\"G1519\"* to|strong=\"G1519\"* you|strong=\"G5210\"* and|strong=\"G2532\"* arrange|strong=\"G4294\"* ahead|strong=\"G4281\"* of|strong=\"G2532\"* time the|strong=\"G2532\"* generous gift|strong=\"G2129\"* that|strong=\"G2443\"* you|strong=\"G5210\"* promised|strong=\"G4279\"* before|strong=\"G1519\"*, that|strong=\"G2443\"* the|strong=\"G2532\"* same|strong=\"G3778\"* might|strong=\"G2532\"* be|strong=\"G1510\"* ready|strong=\"G2092\"* as|strong=\"G5613\"* a|strong=\"G5613\"* matter of|strong=\"G2532\"* generosity, and|strong=\"G2532\"* not|strong=\"G3361\"* of|strong=\"G2532\"* greediness|strong=\"G4124\"*." + }, + { + "verseNum": 6, + "text": "Remember this|strong=\"G3778\"*: he|strong=\"G2532\"* who|strong=\"G3588\"* sows|strong=\"G4687\"* sparingly|strong=\"G5340\"* will|strong=\"G2532\"* also|strong=\"G2532\"* reap|strong=\"G2325\"* sparingly|strong=\"G5340\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* sows|strong=\"G4687\"* bountifully|strong=\"G2129\"* will|strong=\"G2532\"* also|strong=\"G2532\"* reap|strong=\"G2325\"* bountifully|strong=\"G2129\"*." + }, + { + "verseNum": 7, + "text": "Let|strong=\"G1063\"* each|strong=\"G1538\"* man|strong=\"G1538\"* give according|strong=\"G1538\"* as|strong=\"G2531\"* he|strong=\"G3588\"* has|strong=\"G2316\"* determined in|strong=\"G2316\"* his|strong=\"G3588\"* heart|strong=\"G2588\"*, not|strong=\"G3361\"* grudgingly|strong=\"G1537\"* or|strong=\"G2228\"* under|strong=\"G1537\"* compulsion, for|strong=\"G1063\"* God|strong=\"G2316\"* loves a|strong=\"G2228\"* cheerful|strong=\"G2431\"* giver|strong=\"G1395\"*." + }, + { + "verseNum": 8, + "text": "And|strong=\"G1161\"* God|strong=\"G2316\"* is|strong=\"G3588\"* able|strong=\"G2192\"* to|strong=\"G1519\"* make|strong=\"G1519\"* all|strong=\"G3956\"* grace|strong=\"G5485\"* abound|strong=\"G4052\"* to|strong=\"G1519\"* you|strong=\"G5210\"*, that|strong=\"G2443\"* you|strong=\"G5210\"*, always|strong=\"G3842\"* having|strong=\"G2192\"* all|strong=\"G3956\"* sufficiency in|strong=\"G1722\"* everything|strong=\"G3956\"*, may|strong=\"G2443\"* abound|strong=\"G4052\"* to|strong=\"G1519\"* every|strong=\"G3956\"* good|strong=\"G3956\"* work|strong=\"G2041\"*." + }, + { + "verseNum": 9, + "text": "As|strong=\"G2531\"* it|strong=\"G2531\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 10, + "text": "Now|strong=\"G1161\"* may|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* supplies|strong=\"G5524\"* seed|strong=\"G4690\"* to|strong=\"G1519\"* the|strong=\"G2532\"* sower|strong=\"G4687\"* and|strong=\"G2532\"* bread for|strong=\"G1519\"* food|strong=\"G1035\"*, supply|strong=\"G2023\"* and|strong=\"G2532\"* multiply|strong=\"G4129\"* your|strong=\"G2532\"* seed|strong=\"G4690\"* for|strong=\"G1519\"* sowing|strong=\"G4687\"*, and|strong=\"G2532\"* increase|strong=\"G4129\"* the|strong=\"G2532\"* fruits|strong=\"G1081\"* of|strong=\"G2532\"* your|strong=\"G2532\"* righteousness|strong=\"G1343\"*," + }, + { + "verseNum": 11, + "text": "you|strong=\"G1722\"* being|strong=\"G1722\"* enriched|strong=\"G4148\"* in|strong=\"G1722\"* everything|strong=\"G3956\"* for|strong=\"G1519\"* all|strong=\"G3956\"* generosity, which|strong=\"G3588\"* produces|strong=\"G2716\"* thanksgiving|strong=\"G2169\"* to|strong=\"G1519\"* God|strong=\"G2316\"* through|strong=\"G1223\"* us|strong=\"G1519\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G3754\"* this|strong=\"G3778\"* service|strong=\"G1248\"* of|strong=\"G1223\"* giving|strong=\"G2169\"* that|strong=\"G3754\"* you|strong=\"G3754\"* perform not|strong=\"G3756\"* only|strong=\"G3440\"* makes up|strong=\"G2532\"* for|strong=\"G3754\"* lack|strong=\"G3756\"* among|strong=\"G3588\"* the|strong=\"G2532\"* saints, but|strong=\"G2532\"* abounds also|strong=\"G2532\"* through|strong=\"G1223\"* much|strong=\"G4183\"* giving|strong=\"G2169\"* of|strong=\"G1223\"* thanks|strong=\"G2169\"* to|strong=\"G2532\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 13, + "text": "seeing|strong=\"G1223\"* that|strong=\"G3588\"* through|strong=\"G1223\"* the|strong=\"G2532\"* proof|strong=\"G1382\"* given by|strong=\"G1223\"* this|strong=\"G3778\"* service|strong=\"G1248\"*, they|strong=\"G2532\"* glorify|strong=\"G1392\"* God|strong=\"G2316\"* for|strong=\"G1519\"* the|strong=\"G2532\"* obedience|strong=\"G5292\"* of|strong=\"G1223\"* your|strong=\"G1223\"* confession|strong=\"G3671\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Good|strong=\"G3956\"* News|strong=\"G2098\"* of|strong=\"G1223\"* Christ|strong=\"G5547\"* and|strong=\"G2532\"* for|strong=\"G1519\"* the|strong=\"G2532\"* generosity of|strong=\"G1223\"* your|strong=\"G1223\"* contribution|strong=\"G2842\"* to|strong=\"G1519\"* them|strong=\"G3588\"* and|strong=\"G2532\"* to|strong=\"G1519\"* all|strong=\"G3956\"*," + }, + { + "verseNum": 14, + "text": "while|strong=\"G2532\"* they|strong=\"G2532\"* themselves also|strong=\"G2532\"*, with|strong=\"G1223\"* supplication|strong=\"G1162\"* on|strong=\"G1909\"* your|strong=\"G1223\"* behalf|strong=\"G5228\"*, yearn|strong=\"G1971\"* for|strong=\"G5228\"* you|strong=\"G5210\"* by|strong=\"G1223\"* reason|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* exceeding|strong=\"G5235\"* grace|strong=\"G5485\"* of|strong=\"G1223\"* God|strong=\"G2316\"* in|strong=\"G1909\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 15, + "text": "Now thanks|strong=\"G5485\"* be|strong=\"G2316\"* to|strong=\"G1909\"* God|strong=\"G2316\"* for|strong=\"G1909\"* his|strong=\"G1909\"* unspeakable gift|strong=\"G1431\"*!" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* I|strong=\"G1473\"* Paul|strong=\"G3972\"*, myself|strong=\"G1473\"*, entreat|strong=\"G3870\"* you|strong=\"G5210\"* by|strong=\"G1223\"* the|strong=\"G1722\"* humility|strong=\"G4240\"* and|strong=\"G2532\"* gentleness|strong=\"G4240\"* of|strong=\"G1223\"* Christ|strong=\"G5547\"*, I|strong=\"G1473\"* who|strong=\"G3739\"* in|strong=\"G1722\"* your|strong=\"G1223\"* presence|strong=\"G4383\"* am|strong=\"G1473\"* lowly|strong=\"G5011\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, but|strong=\"G1161\"* being|strong=\"G2532\"* absent am|strong=\"G1473\"* bold|strong=\"G2292\"* toward|strong=\"G1519\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 2, + "text": "Yes|strong=\"G1161\"*, I|strong=\"G1473\"* beg|strong=\"G1189\"* you|strong=\"G3739\"* that|strong=\"G3739\"* I|strong=\"G1473\"* may|strong=\"G5100\"* not|strong=\"G3361\"*, when|strong=\"G1161\"* present|strong=\"G3918\"*, show courage|strong=\"G5111\"* with|strong=\"G1909\"* the|strong=\"G1161\"* confidence|strong=\"G4006\"* with|strong=\"G1909\"* which|strong=\"G3739\"* I|strong=\"G1473\"* intend to|strong=\"G2596\"* be|strong=\"G3361\"* bold|strong=\"G5111\"* against|strong=\"G2596\"* some|strong=\"G5100\"*, who|strong=\"G3739\"* consider|strong=\"G3049\"* us|strong=\"G2249\"* to|strong=\"G2596\"* be|strong=\"G3361\"* walking|strong=\"G4043\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1161\"* flesh|strong=\"G4561\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* though|strong=\"G1722\"* we|strong=\"G1063\"* walk|strong=\"G4043\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, we|strong=\"G1063\"* don’t wage|strong=\"G4754\"* war|strong=\"G4754\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*;" + }, + { + "verseNum": 4, + "text": "for|strong=\"G1063\"* the|strong=\"G4314\"* weapons|strong=\"G3696\"* of|strong=\"G2316\"* our|strong=\"G2316\"* warfare|strong=\"G4752\"* are|strong=\"G3588\"* not|strong=\"G3756\"* of|strong=\"G2316\"* the|strong=\"G4314\"* flesh|strong=\"G4559\"*, but|strong=\"G1063\"* mighty|strong=\"G1415\"* before|strong=\"G4314\"* God|strong=\"G2316\"* to|strong=\"G4314\"* the|strong=\"G4314\"* throwing down|strong=\"G2507\"* of|strong=\"G2316\"* strongholds|strong=\"G3794\"*," + }, + { + "verseNum": 5, + "text": "throwing down|strong=\"G2507\"* imaginations|strong=\"G3053\"* and|strong=\"G2532\"* every|strong=\"G3956\"* high|strong=\"G3956\"* thing|strong=\"G3956\"* that|strong=\"G3588\"* is|strong=\"G3588\"* exalted against|strong=\"G2596\"* the|strong=\"G2532\"* knowledge|strong=\"G1108\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* bringing every|strong=\"G3956\"* thought|strong=\"G3540\"* into|strong=\"G1519\"* captivity to|strong=\"G1519\"* the|strong=\"G2532\"* obedience|strong=\"G5218\"* of|strong=\"G2316\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 6, + "text": "and|strong=\"G2532\"* being|strong=\"G2532\"* in|strong=\"G1722\"* readiness|strong=\"G2092\"* to|strong=\"G2532\"* avenge|strong=\"G1556\"* all|strong=\"G3956\"* disobedience|strong=\"G3876\"* when|strong=\"G3752\"* your|strong=\"G2192\"* obedience|strong=\"G5218\"* is|strong=\"G3588\"* made|strong=\"G4137\"* full|strong=\"G4137\"*." + }, + { + "verseNum": 7, + "text": "Do|strong=\"G2532\"* you|strong=\"G1487\"* look at|strong=\"G1909\"* things|strong=\"G3778\"* only|strong=\"G1487\"* as|strong=\"G2531\"* they|strong=\"G2532\"* appear|strong=\"G1510\"* in|strong=\"G1909\"* front of|strong=\"G2532\"* your|strong=\"G2532\"* face|strong=\"G4383\"*? If|strong=\"G1487\"* anyone|strong=\"G5100\"* trusts|strong=\"G3982\"* in|strong=\"G1909\"* himself|strong=\"G1438\"* that|strong=\"G3754\"* he|strong=\"G2532\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"*’s, let|strong=\"G3049\"* him|strong=\"G3588\"* consider|strong=\"G3049\"* this|strong=\"G3778\"* again|strong=\"G3825\"* with|strong=\"G2532\"* himself|strong=\"G1438\"*, that|strong=\"G3754\"* even|strong=\"G2532\"* as|strong=\"G2531\"* he|strong=\"G2532\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"*’s, so|strong=\"G3779\"* we|strong=\"G2249\"* also|strong=\"G2532\"* are|strong=\"G1510\"* Christ|strong=\"G5547\"*’s." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* even|strong=\"G2532\"* if|strong=\"G1437\"* I|strong=\"G1473\"* boast|strong=\"G2744\"* somewhat|strong=\"G5100\"* abundantly concerning|strong=\"G4012\"* our|strong=\"G2532\"* authority|strong=\"G1849\"*, which|strong=\"G3739\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* gave|strong=\"G1325\"* for|strong=\"G1063\"* building|strong=\"G3619\"* you|strong=\"G5210\"* up|strong=\"G1519\"* and|strong=\"G2532\"* not|strong=\"G3756\"* for|strong=\"G1063\"* casting|strong=\"G5100\"* you|strong=\"G5210\"* down|strong=\"G2506\"*, I|strong=\"G1473\"* will|strong=\"G2532\"* not|strong=\"G3756\"* be|strong=\"G2532\"* ashamed," + }, + { + "verseNum": 9, + "text": "that|strong=\"G2443\"* I|strong=\"G5613\"* may|strong=\"G2443\"* not|strong=\"G3361\"* seem|strong=\"G1380\"* as|strong=\"G5613\"* if|strong=\"G5613\"* I|strong=\"G5613\"* desire to|strong=\"G2443\"* terrify|strong=\"G1629\"* you|strong=\"G5210\"* by|strong=\"G1223\"* my|strong=\"G3588\"* letters|strong=\"G1992\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G3754\"*, “His|strong=\"G2532\"* letters|strong=\"G1992\"*”, they|strong=\"G2532\"* say|strong=\"G5346\"*, “are|strong=\"G3588\"* weighty and|strong=\"G2532\"* strong|strong=\"G2478\"*, but|strong=\"G1161\"* his|strong=\"G2532\"* bodily|strong=\"G4983\"* presence|strong=\"G3952\"* is|strong=\"G3588\"* weak, and|strong=\"G2532\"* his|strong=\"G2532\"* speech|strong=\"G3056\"* is|strong=\"G3588\"* despised|strong=\"G1848\"*.”" + }, + { + "verseNum": 11, + "text": "Let|strong=\"G3049\"* such|strong=\"G5108\"* a|strong=\"G2532\"* person|strong=\"G5108\"* consider|strong=\"G3049\"* this|strong=\"G3778\"*, that|strong=\"G3754\"* what|strong=\"G3588\"* we|strong=\"G3754\"* are|strong=\"G1510\"* in|strong=\"G2532\"* word|strong=\"G3056\"* by|strong=\"G1223\"* letters|strong=\"G1992\"* when|strong=\"G2532\"* we|strong=\"G3754\"* are|strong=\"G1510\"* absent, such|strong=\"G5108\"* are|strong=\"G1510\"* we|strong=\"G3754\"* also|strong=\"G2532\"* in|strong=\"G2532\"* deed|strong=\"G2041\"* when|strong=\"G2532\"* we|strong=\"G3754\"* are|strong=\"G1510\"* present|strong=\"G3918\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* are|strong=\"G3588\"* not|strong=\"G3756\"* bold|strong=\"G5111\"* to|strong=\"G2532\"* number|strong=\"G3756\"* or|strong=\"G2228\"* compare|strong=\"G4793\"* ourselves|strong=\"G1438\"* with|strong=\"G1722\"* some|strong=\"G5100\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* commend|strong=\"G4921\"* themselves|strong=\"G1438\"*. But|strong=\"G2532\"* they|strong=\"G2532\"* themselves|strong=\"G1438\"*, measuring|strong=\"G3354\"* themselves|strong=\"G1438\"* by|strong=\"G1722\"* themselves|strong=\"G1438\"*, and|strong=\"G2532\"* comparing|strong=\"G4793\"* themselves|strong=\"G1438\"* with|strong=\"G1722\"* themselves|strong=\"G1438\"*, are|strong=\"G3588\"* without|strong=\"G2532\"* understanding|strong=\"G4920\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"* will|strong=\"G2316\"* not|strong=\"G3756\"* boast|strong=\"G2744\"* beyond|strong=\"G1519\"* proper|strong=\"G3358\"* limits, but|strong=\"G1161\"* within|strong=\"G2596\"* the|strong=\"G2532\"* boundaries with|strong=\"G2532\"* which|strong=\"G3739\"* God|strong=\"G2316\"* appointed to|strong=\"G1519\"* us|strong=\"G1519\"*, which|strong=\"G3739\"* reach|strong=\"G2185\"* even|strong=\"G2532\"* to|strong=\"G1519\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* don’t|strong=\"G3588\"* stretch|strong=\"G5239\"* ourselves|strong=\"G1438\"* too|strong=\"G2532\"* much, as|strong=\"G5613\"* though|strong=\"G5613\"* we|strong=\"G1063\"* didn’t|strong=\"G3588\"* reach|strong=\"G2185\"* to|strong=\"G1519\"* you|strong=\"G5210\"*. For|strong=\"G1063\"* we|strong=\"G1063\"* came|strong=\"G2532\"* even|strong=\"G2532\"* as|strong=\"G5613\"* far|strong=\"G3588\"* as|strong=\"G5613\"* to|strong=\"G1519\"* you|strong=\"G5210\"* with|strong=\"G1722\"* the|strong=\"G1722\"* Good|strong=\"G3756\"* News|strong=\"G2098\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 15, + "text": "not|strong=\"G3756\"* boasting|strong=\"G2744\"* beyond|strong=\"G1519\"* proper limits in|strong=\"G1722\"* other|strong=\"G1161\"* men|strong=\"G3588\"*’s|strong=\"G2192\"* labors|strong=\"G2873\"*, but|strong=\"G1161\"* having|strong=\"G2192\"* hope|strong=\"G1680\"* that|strong=\"G3588\"* as|strong=\"G1519\"* your|strong=\"G2192\"* faith|strong=\"G4102\"* grows, we|strong=\"G2249\"* will|strong=\"G1473\"* be|strong=\"G3756\"* abundantly|strong=\"G4050\"* enlarged|strong=\"G3170\"* by|strong=\"G1722\"* you|strong=\"G5210\"* in|strong=\"G1722\"* our|strong=\"G1722\"* sphere|strong=\"G2583\"* of|strong=\"G1722\"* influence," + }, + { + "verseNum": 16, + "text": "so|strong=\"G1519\"* as|strong=\"G1519\"* to|strong=\"G1519\"* preach|strong=\"G2097\"* the|strong=\"G1722\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* even|strong=\"G1519\"* to|strong=\"G1519\"* the|strong=\"G1722\"* parts beyond|strong=\"G1519\"* you|strong=\"G5210\"*, not|strong=\"G3756\"* to|strong=\"G1519\"* boast|strong=\"G2744\"* in|strong=\"G1722\"* what|strong=\"G3588\"* someone else has|strong=\"G1519\"* already done." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* “he|strong=\"G1161\"* who|strong=\"G3588\"* boasts|strong=\"G2744\"*, let|strong=\"G1161\"* him|strong=\"G3588\"* boast|strong=\"G2744\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*.”+ 10:17 Jeremiah 9:24 *" + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* it|strong=\"G1063\"* isn’t|strong=\"G3588\"* he|strong=\"G3739\"* who|strong=\"G3739\"* commends|strong=\"G4921\"* himself|strong=\"G1438\"* who|strong=\"G3739\"* is|strong=\"G1510\"* approved|strong=\"G1384\"*, but|strong=\"G1063\"* whom|strong=\"G3739\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"* commends|strong=\"G4921\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G1473\"* wish|strong=\"G3785\"* that|strong=\"G2532\"* you|strong=\"G2532\"* would|strong=\"G2532\"* bear|strong=\"G2532\"* with|strong=\"G2532\"* me|strong=\"G1473\"* in|strong=\"G2532\"* a|strong=\"G2532\"* little|strong=\"G3398\"* foolishness, but|strong=\"G2532\"* indeed|strong=\"G2532\"* you|strong=\"G2532\"* do|strong=\"G2532\"* bear|strong=\"G2532\"* with|strong=\"G2532\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* I|strong=\"G1063\"* am|strong=\"G3588\"* jealous|strong=\"G2206\"* over|strong=\"G2206\"* you|strong=\"G5210\"* with|strong=\"G2316\"* a|strong=\"G1520\"* godly|strong=\"G2316\"* jealousy|strong=\"G2205\"*. For|strong=\"G1063\"* I|strong=\"G1063\"* promised you|strong=\"G5210\"* in|strong=\"G2316\"* marriage to|strong=\"G2316\"* one|strong=\"G1520\"* husband, that|strong=\"G3588\"* I|strong=\"G1063\"* might|strong=\"G2316\"* present|strong=\"G3936\"* you|strong=\"G5210\"* as|strong=\"G1063\"* a|strong=\"G1520\"* pure virgin|strong=\"G3933\"* to|strong=\"G2316\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* I|strong=\"G2532\"* am|strong=\"G2532\"* afraid|strong=\"G5399\"* that|strong=\"G3588\"* somehow, as|strong=\"G5613\"* the|strong=\"G1722\"* serpent|strong=\"G3789\"* deceived|strong=\"G1818\"* Eve|strong=\"G2096\"* in|strong=\"G1722\"* his|strong=\"G1519\"* craftiness|strong=\"G3834\"*, so|strong=\"G2532\"* your|strong=\"G2532\"* minds|strong=\"G3540\"* might|strong=\"G2532\"* be|strong=\"G2532\"* corrupted|strong=\"G5351\"* from|strong=\"G2532\"* the|strong=\"G1722\"* simplicity that|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* he|strong=\"G3739\"* who|strong=\"G3739\"* comes|strong=\"G2064\"* preaches|strong=\"G2784\"* another|strong=\"G2087\"* Jesus|strong=\"G2424\"* whom|strong=\"G3739\"* we|strong=\"G3739\"* didn’t|strong=\"G3588\"* preach|strong=\"G2784\"*, or|strong=\"G2228\"* if|strong=\"G1487\"* you|strong=\"G3739\"* receive|strong=\"G2983\"* a|strong=\"G2983\"* different|strong=\"G2087\"* spirit|strong=\"G4151\"* which|strong=\"G3739\"* you|strong=\"G3739\"* didn’t|strong=\"G3588\"* receive|strong=\"G2983\"*, or|strong=\"G2228\"* a|strong=\"G2983\"* different|strong=\"G2087\"* “good|strong=\"G2573\"* news|strong=\"G2098\"*” which|strong=\"G3739\"* you|strong=\"G3739\"* didn’t|strong=\"G3588\"* accept|strong=\"G2983\"*, you|strong=\"G3739\"* put|strong=\"G2424\"* up|strong=\"G1209\"* with|strong=\"G2064\"* that|strong=\"G3739\"* well|strong=\"G2573\"* enough|strong=\"G2573\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* I|strong=\"G1063\"* reckon|strong=\"G3049\"* that|strong=\"G3588\"* I|strong=\"G1063\"* am|strong=\"G3588\"* not|strong=\"G3367\"* at|strong=\"G3588\"* all|strong=\"G3588\"* behind|strong=\"G5302\"* the|strong=\"G3588\"* very|strong=\"G3029\"* best apostles." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* though|strong=\"G1487\"* I|strong=\"G2532\"* am|strong=\"G2532\"* unskilled|strong=\"G2399\"* in|strong=\"G1722\"* speech|strong=\"G3056\"*, yet|strong=\"G2532\"* I|strong=\"G2532\"* am|strong=\"G2532\"* not|strong=\"G3756\"* unskilled|strong=\"G2399\"* in|strong=\"G1722\"* knowledge|strong=\"G1108\"*. No|strong=\"G3756\"*, in|strong=\"G1722\"* every|strong=\"G3956\"* way|strong=\"G1722\"* we|strong=\"G2532\"* have|strong=\"G2532\"* been|strong=\"G2532\"* revealed|strong=\"G5319\"* to|strong=\"G1519\"* you|strong=\"G5210\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 7, + "text": "Or|strong=\"G2228\"* did|strong=\"G4160\"* I|strong=\"G3754\"* commit|strong=\"G4160\"* a|strong=\"G4160\"* sin in|strong=\"G2316\"* humbling|strong=\"G5013\"* myself|strong=\"G1683\"* that|strong=\"G3754\"* you|strong=\"G5210\"* might|strong=\"G2316\"* be|strong=\"G2316\"* exalted|strong=\"G5312\"*, because|strong=\"G3754\"* I|strong=\"G3754\"* preached|strong=\"G2097\"* to|strong=\"G2443\"* you|strong=\"G5210\"* God|strong=\"G2316\"*’s Good|strong=\"G2097\"* News|strong=\"G2097\"* free of|strong=\"G2316\"* charge?" + }, + { + "verseNum": 8, + "text": "I|strong=\"G2532\"* robbed|strong=\"G4813\"* other|strong=\"G3588\"* assemblies|strong=\"G1577\"*, taking|strong=\"G2983\"* wages|strong=\"G3800\"* from|strong=\"G2532\"* them|strong=\"G3588\"* that|strong=\"G3588\"* I|strong=\"G2532\"* might|strong=\"G2532\"* serve|strong=\"G1248\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"G2532\"* I|strong=\"G1473\"* was|strong=\"G3588\"* present|strong=\"G3918\"* with|strong=\"G1722\"* you|strong=\"G5210\"* and|strong=\"G2532\"* was|strong=\"G3588\"* in|strong=\"G1722\"* need|strong=\"G5303\"*, I|strong=\"G1473\"* wasn’t|strong=\"G3588\"* a|strong=\"G2532\"* burden|strong=\"G2655\"* on|strong=\"G1722\"* anyone|strong=\"G3956\"*, for|strong=\"G1063\"* the|strong=\"G1722\"* brothers, when|strong=\"G2532\"* they|strong=\"G2532\"* came|strong=\"G2064\"* from|strong=\"G2064\"* Macedonia|strong=\"G3109\"*, supplied|strong=\"G4322\"* the|strong=\"G1722\"* measure of|strong=\"G2532\"* my|strong=\"G5083\"* need|strong=\"G5303\"*. In|strong=\"G1722\"* everything|strong=\"G3956\"* I|strong=\"G1473\"* kept|strong=\"G5083\"* myself|strong=\"G1683\"* from|strong=\"G2064\"* being|strong=\"G2532\"* burdensome|strong=\"G2655\"* to|strong=\"G4314\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* will|strong=\"G2532\"* continue|strong=\"G2532\"* to|strong=\"G4314\"* do|strong=\"G2532\"* so|strong=\"G2532\"*." + }, + { + "verseNum": 10, + "text": "As|strong=\"G1519\"* the|strong=\"G1722\"* truth of|strong=\"G1722\"* Christ|strong=\"G5547\"* is|strong=\"G1510\"* in|strong=\"G1722\"* me|strong=\"G1473\"*, no|strong=\"G3756\"* one|strong=\"G3588\"* will|strong=\"G1510\"* stop me|strong=\"G1473\"* from|strong=\"G3756\"* this|strong=\"G3778\"* boasting|strong=\"G2746\"* in|strong=\"G1722\"* the|strong=\"G1722\"* regions|strong=\"G2824\"* of|strong=\"G1722\"* Achaia." + }, + { + "verseNum": 11, + "text": "Why|strong=\"G5101\"*? Because|strong=\"G3754\"* I|strong=\"G3754\"* don’t|strong=\"G3588\"* love you|strong=\"G5210\"*? God|strong=\"G2316\"* knows|strong=\"G1492\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* what|strong=\"G3739\"* I|strong=\"G1473\"* do|strong=\"G4160\"*, that|strong=\"G2443\"* I|strong=\"G1473\"* will|strong=\"G2309\"* continue|strong=\"G2532\"* to|strong=\"G2443\"* do|strong=\"G4160\"*, that|strong=\"G2443\"* I|strong=\"G1473\"* may|strong=\"G2532\"* cut|strong=\"G1581\"* off|strong=\"G1581\"* opportunity from|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3739\"* desire|strong=\"G2309\"* an|strong=\"G2532\"* opportunity, that|strong=\"G2443\"* in|strong=\"G1722\"* which|strong=\"G3739\"* they|strong=\"G2532\"* boast|strong=\"G2744\"*, they|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G2532\"* recognized just|strong=\"G2531\"* like|strong=\"G2531\"* us|strong=\"G4160\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* such|strong=\"G5108\"* men|strong=\"G5108\"* are|strong=\"G3588\"* false|strong=\"G5570\"* apostles|strong=\"G5570\"*, deceitful|strong=\"G1386\"* workers|strong=\"G2040\"*, masquerading as|strong=\"G1519\"* Christ|strong=\"G5547\"*’s apostles|strong=\"G5570\"*." + }, + { + "verseNum": 14, + "text": "And|strong=\"G2532\"* no|strong=\"G3756\"* wonder|strong=\"G2295\"*, for|strong=\"G1063\"* even|strong=\"G2532\"* Satan|strong=\"G4567\"* masquerades as|strong=\"G1519\"* an|strong=\"G2532\"* angel of|strong=\"G2532\"* light|strong=\"G5457\"*." + }, + { + "verseNum": 15, + "text": "It|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3756\"* great|strong=\"G3173\"* thing|strong=\"G3739\"* therefore|strong=\"G3767\"* if|strong=\"G1487\"* his|strong=\"G2532\"* servants|strong=\"G1249\"* also|strong=\"G2532\"* masquerade as|strong=\"G5613\"* servants|strong=\"G1249\"* of|strong=\"G2532\"* righteousness|strong=\"G1343\"*, whose|strong=\"G3739\"* end|strong=\"G5056\"* will|strong=\"G1510\"* be|strong=\"G1510\"* according|strong=\"G2596\"* to|strong=\"G2532\"* their|strong=\"G2532\"* works|strong=\"G2041\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"G1473\"* say|strong=\"G3004\"* again|strong=\"G3825\"*, let|strong=\"G1161\"* no|strong=\"G3361\"* one|strong=\"G5100\"* think|strong=\"G1380\"* me|strong=\"G1473\"* foolish. But|strong=\"G1161\"* if|strong=\"G1487\"* so|strong=\"G2443\"*, yet|strong=\"G1161\"* receive|strong=\"G1209\"* me|strong=\"G1473\"* as|strong=\"G5613\"* foolish, that|strong=\"G2443\"* I|strong=\"G1473\"* also|strong=\"G2504\"* may|strong=\"G2443\"* boast|strong=\"G2744\"* a|strong=\"G5613\"* little|strong=\"G3398\"*." + }, + { + "verseNum": 17, + "text": "That|strong=\"G3739\"* which|strong=\"G3739\"* I|strong=\"G3739\"* speak|strong=\"G2980\"*, I|strong=\"G3739\"* don’t|strong=\"G3588\"* speak|strong=\"G2980\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, but|strong=\"G3588\"* as|strong=\"G5613\"* in|strong=\"G1722\"* foolishness, in|strong=\"G1722\"* this|strong=\"G3778\"* confidence|strong=\"G5287\"* of|strong=\"G2962\"* boasting|strong=\"G2746\"*." + }, + { + "verseNum": 18, + "text": "Seeing|strong=\"G1893\"* that|strong=\"G2596\"* many|strong=\"G4183\"* boast|strong=\"G2744\"* after|strong=\"G2596\"* the|strong=\"G2596\"* flesh|strong=\"G4561\"*, I|strong=\"G2504\"* will|strong=\"G4183\"* also|strong=\"G2504\"* boast|strong=\"G2744\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* you|strong=\"G1510\"* bear with|strong=\"G3588\"* the|strong=\"G3588\"* foolish gladly|strong=\"G2234\"*, being|strong=\"G1510\"* wise|strong=\"G5429\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* bear with|strong=\"G1519\"* a|strong=\"G1519\"* man|strong=\"G5100\"* if|strong=\"G1487\"* he|strong=\"G1063\"* brings|strong=\"G1519\"* you|strong=\"G5210\"* into|strong=\"G1519\"* bondage|strong=\"G2615\"*, if|strong=\"G1487\"* he|strong=\"G1063\"* devours|strong=\"G2719\"* you|strong=\"G5210\"*, if|strong=\"G1487\"* he|strong=\"G1063\"* takes|strong=\"G2983\"* you|strong=\"G5210\"* captive, if|strong=\"G1487\"* he|strong=\"G1063\"* exalts|strong=\"G1869\"* himself|strong=\"G1519\"*, or|strong=\"G1487\"* if|strong=\"G1487\"* he|strong=\"G1063\"* strikes|strong=\"G1194\"* you|strong=\"G5210\"* on|strong=\"G1519\"* the|strong=\"G1519\"* face|strong=\"G4383\"*." + }, + { + "verseNum": 21, + "text": "To|strong=\"G2596\"* my|strong=\"G1722\"* shame, I|strong=\"G1473\"* speak|strong=\"G3004\"* as|strong=\"G5613\"* though|strong=\"G5613\"* we|strong=\"G2249\"* had|strong=\"G3739\"* been|strong=\"G5100\"* weak. Yet|strong=\"G1161\"* in|strong=\"G1722\"* whatever|strong=\"G3739\"* way|strong=\"G2596\"* anyone|strong=\"G5100\"* is|strong=\"G3739\"* bold|strong=\"G5111\"* (I|strong=\"G1473\"* speak|strong=\"G3004\"* in|strong=\"G1722\"* foolishness), I|strong=\"G1473\"* am|strong=\"G1473\"* bold|strong=\"G5111\"* also|strong=\"G2504\"*." + }, + { + "verseNum": 22, + "text": "Are|strong=\"G1510\"* they|strong=\"G1510\"* Hebrews|strong=\"G1445\"*? So|strong=\"G2504\"* am|strong=\"G1510\"* I|strong=\"G2504\"*. Are|strong=\"G1510\"* they|strong=\"G1510\"* Israelites|strong=\"G2475\"*? So|strong=\"G2504\"* am|strong=\"G1510\"* I|strong=\"G2504\"*. Are|strong=\"G1510\"* they|strong=\"G1510\"* the|strong=\"G1510\"* offspring+ 11:22 or, seed* of|strong=\"G4690\"* Abraham? So|strong=\"G2504\"* am|strong=\"G1510\"* I|strong=\"G2504\"*." + }, + { + "verseNum": 23, + "text": "Are|strong=\"G1510\"* they|strong=\"G1510\"* servants|strong=\"G1249\"* of|strong=\"G1722\"* Christ|strong=\"G5547\"*? (I|strong=\"G1473\"* speak|strong=\"G2980\"* as|strong=\"G1722\"* one|strong=\"G1722\"* beside himself.) I|strong=\"G1473\"* am|strong=\"G1510\"* more|strong=\"G5228\"* so|strong=\"G1722\"*: in|strong=\"G1722\"* labors|strong=\"G2873\"* more|strong=\"G5228\"* abundantly|strong=\"G4056\"*, in|strong=\"G1722\"* prisons|strong=\"G5438\"* more|strong=\"G5228\"* abundantly|strong=\"G4056\"*, in|strong=\"G1722\"* stripes|strong=\"G4127\"* above|strong=\"G5228\"* measure|strong=\"G5234\"*, and|strong=\"G2980\"* in|strong=\"G1722\"* deaths|strong=\"G2288\"* often|strong=\"G4178\"*." + }, + { + "verseNum": 24, + "text": "Five|strong=\"G3999\"* times|strong=\"G3999\"* I|strong=\"G2453\"* received|strong=\"G2983\"* forty|strong=\"G5062\"* stripes minus one|strong=\"G1520\"* from|strong=\"G3844\"* the|strong=\"G2983\"* Jews|strong=\"G2453\"*." + }, + { + "verseNum": 25, + "text": "Three|strong=\"G5151\"* times|strong=\"G5151\"* I|strong=\"G1722\"* was|strong=\"G3588\"* beaten|strong=\"G4463\"* with|strong=\"G1722\"* rods|strong=\"G4463\"*. Once I|strong=\"G1722\"* was|strong=\"G3588\"* stoned|strong=\"G3034\"*. Three|strong=\"G5151\"* times|strong=\"G5151\"* I|strong=\"G1722\"* suffered|strong=\"G3489\"* shipwreck|strong=\"G3489\"*. I|strong=\"G1722\"* have|strong=\"G4160\"* been|strong=\"G4160\"* a|strong=\"G1722\"* night|strong=\"G3574\"* and|strong=\"G4160\"* a|strong=\"G1722\"* day|strong=\"G3574\"* in|strong=\"G1722\"* the|strong=\"G1722\"* deep|strong=\"G1037\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"G1722\"* have|strong=\"G1484\"* been|strong=\"G4178\"* in|strong=\"G1722\"* travels often|strong=\"G4178\"*, perils|strong=\"G2794\"* of|strong=\"G1537\"* rivers|strong=\"G4215\"*, perils|strong=\"G2794\"* of|strong=\"G1537\"* robbers|strong=\"G3027\"*, perils|strong=\"G2794\"* from|strong=\"G1537\"* my|strong=\"G1722\"* countrymen|strong=\"G1085\"*, perils|strong=\"G2794\"* from|strong=\"G1537\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"*, perils|strong=\"G2794\"* in|strong=\"G1722\"* the|strong=\"G1722\"* city|strong=\"G4172\"*, perils|strong=\"G2794\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2047\"*, perils|strong=\"G2794\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*, perils|strong=\"G2794\"* among|strong=\"G1722\"* false|strong=\"G5569\"* brothers;" + }, + { + "verseNum": 27, + "text": "in|strong=\"G1722\"* labor|strong=\"G2873\"* and|strong=\"G2532\"* travail|strong=\"G3449\"*, in|strong=\"G1722\"* watchings often|strong=\"G4178\"*, in|strong=\"G1722\"* hunger|strong=\"G3042\"* and|strong=\"G2532\"* thirst|strong=\"G1373\"*, in|strong=\"G1722\"* fastings|strong=\"G3521\"* often|strong=\"G4178\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* cold|strong=\"G5592\"* and|strong=\"G2532\"* nakedness|strong=\"G1132\"*." + }, + { + "verseNum": 28, + "text": "Besides|strong=\"G5565\"* those|strong=\"G3588\"* things|strong=\"G3956\"* that|strong=\"G3588\"* are|strong=\"G3588\"* outside, there|strong=\"G2250\"* is|strong=\"G3588\"* that|strong=\"G3588\"* which|strong=\"G3588\"* presses on|strong=\"G2596\"* me|strong=\"G1473\"* daily|strong=\"G2250\"*: anxiety|strong=\"G3308\"* for|strong=\"G3956\"* all|strong=\"G3956\"* the|strong=\"G3956\"* assemblies|strong=\"G1577\"*." + }, + { + "verseNum": 29, + "text": "Who|strong=\"G5101\"* is|strong=\"G5101\"* weak, and|strong=\"G2532\"* I|strong=\"G1473\"* am|strong=\"G1473\"* not|strong=\"G3756\"* weak? Who|strong=\"G5101\"* is|strong=\"G5101\"* caused to|strong=\"G2532\"* stumble|strong=\"G4624\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* don’t burn|strong=\"G4448\"* with|strong=\"G2532\"* indignation?" + }, + { + "verseNum": 30, + "text": "If|strong=\"G1487\"* I|strong=\"G1473\"* must|strong=\"G1163\"* boast|strong=\"G2744\"*, I|strong=\"G1473\"* will|strong=\"G1473\"* boast|strong=\"G2744\"* of|strong=\"G3588\"* the|strong=\"G3588\"* things|strong=\"G3588\"* that|strong=\"G3588\"* concern my|strong=\"G1473\"* weakness." + }, + { + "verseNum": 31, + "text": "The|strong=\"G2532\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"* of|strong=\"G2316\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G2962\"*, he|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G1510\"* blessed|strong=\"G2128\"* forever|strong=\"G1519\"* more|strong=\"G2532\"*, knows|strong=\"G1492\"* that|strong=\"G3754\"* I|strong=\"G2532\"* don’t|strong=\"G3588\"* lie|strong=\"G5574\"*." + }, + { + "verseNum": 32, + "text": "In|strong=\"G1722\"* Damascus|strong=\"G1154\"* the|strong=\"G1722\"* governor|strong=\"G1481\"* under|strong=\"G1722\"* King|strong=\"G3588\"* Aretas guarded the|strong=\"G1722\"* Damascenes|strong=\"G1153\"*’ city|strong=\"G4172\"*, desiring to|strong=\"G1722\"* arrest|strong=\"G4084\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 33, + "text": "I|strong=\"G2532\"* was|strong=\"G3588\"* let|strong=\"G5465\"* down|strong=\"G5465\"* in|strong=\"G1722\"* a|strong=\"G2532\"* basket|strong=\"G4553\"* through|strong=\"G1223\"* a|strong=\"G2532\"* window|strong=\"G2376\"* by|strong=\"G1223\"* the|strong=\"G1722\"* wall|strong=\"G5038\"*, and|strong=\"G2532\"* escaped|strong=\"G1628\"* his|strong=\"G1223\"* hands|strong=\"G5495\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "It|strong=\"G2532\"* is|strong=\"G2962\"* doubtless not|strong=\"G3756\"* profitable|strong=\"G4851\"* for|strong=\"G1519\"* me|strong=\"G3756\"* to|strong=\"G1519\"* boast|strong=\"G2744\"*, but|strong=\"G1161\"* I|strong=\"G2532\"* will|strong=\"G2532\"* come|strong=\"G2064\"* to|strong=\"G1519\"* visions|strong=\"G3701\"* and|strong=\"G2532\"* revelations of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"G2193\"* know|strong=\"G1492\"* a|strong=\"G1722\"* man|strong=\"G5108\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* who|strong=\"G3588\"* was|strong=\"G3588\"* caught|strong=\"G5108\"* up|strong=\"G1722\"* into|strong=\"G1722\"* the|strong=\"G1722\"* third|strong=\"G5154\"* heaven|strong=\"G3772\"* fourteen|strong=\"G1180\"* years|strong=\"G2094\"* ago|strong=\"G4253\"*—whether|strong=\"G1535\"* in|strong=\"G1722\"* the|strong=\"G1722\"* body|strong=\"G4983\"*, I|strong=\"G2193\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"*, or|strong=\"G1535\"* whether|strong=\"G1535\"* out|strong=\"G1535\"* of|strong=\"G2316\"* the|strong=\"G1722\"* body|strong=\"G4983\"*, I|strong=\"G2193\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"*; God|strong=\"G2316\"* knows|strong=\"G1492\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"G2532\"* know|strong=\"G1492\"* such|strong=\"G5108\"* a|strong=\"G2532\"* man|strong=\"G5108\"* (whether|strong=\"G1535\"* in|strong=\"G1722\"* the|strong=\"G1722\"* body|strong=\"G4983\"*, or|strong=\"G1535\"* outside of|strong=\"G2316\"* the|strong=\"G1722\"* body|strong=\"G4983\"*, I|strong=\"G2532\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"*; God|strong=\"G2316\"* knows|strong=\"G1492\"*)," + }, + { + "verseNum": 4, + "text": "how|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G3588\"* caught up|strong=\"G1519\"* into|strong=\"G1519\"* Paradise|strong=\"G3857\"* and|strong=\"G2532\"* heard unspeakable words|strong=\"G4487\"*, which|strong=\"G3739\"* it|strong=\"G2532\"* is|strong=\"G3588\"* not|strong=\"G3756\"* lawful|strong=\"G1832\"* for|strong=\"G3754\"* a|strong=\"G2532\"* man|strong=\"G3739\"* to|strong=\"G1519\"* utter|strong=\"G2980\"*." + }, + { + "verseNum": 5, + "text": "On|strong=\"G1722\"* behalf|strong=\"G5228\"* of|strong=\"G1722\"* such|strong=\"G5108\"* a|strong=\"G1722\"* one|strong=\"G5108\"* I|strong=\"G1473\"* will|strong=\"G1473\"* boast|strong=\"G2744\"*, but|strong=\"G1161\"* on|strong=\"G1722\"* my|strong=\"G1722\"* own|strong=\"G1683\"* behalf|strong=\"G5228\"* I|strong=\"G1473\"* will|strong=\"G1473\"* not|strong=\"G3756\"* boast|strong=\"G2744\"*, except|strong=\"G1487\"* in|strong=\"G1722\"* my|strong=\"G1722\"* weaknesses." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1063\"* if|strong=\"G1437\"* I|strong=\"G1473\"* would|strong=\"G2309\"* desire|strong=\"G2309\"* to|strong=\"G1519\"* boast|strong=\"G2744\"*, I|strong=\"G1473\"* will|strong=\"G2309\"* not|strong=\"G3756\"* be|strong=\"G1510\"* foolish; for|strong=\"G1063\"* I|strong=\"G1473\"* will|strong=\"G2309\"* speak|strong=\"G3004\"* the|strong=\"G1519\"* truth. But|strong=\"G1161\"* I|strong=\"G1473\"* refrain|strong=\"G3756\"*, so|strong=\"G1161\"* that|strong=\"G3739\"* no|strong=\"G3756\"* man|strong=\"G5100\"* may|strong=\"G5100\"* think|strong=\"G3049\"* more|strong=\"G5228\"* of|strong=\"G1537\"* me|strong=\"G1473\"* than|strong=\"G2228\"* that|strong=\"G3739\"* which|strong=\"G3739\"* he|strong=\"G1161\"* sees in|strong=\"G1519\"* me|strong=\"G1473\"* or|strong=\"G2228\"* hears from|strong=\"G1537\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 7, + "text": "By|strong=\"G2532\"* reason|strong=\"G1352\"* of|strong=\"G2532\"* the|strong=\"G2532\"* exceeding|strong=\"G5236\"* greatness|strong=\"G5236\"* of|strong=\"G2532\"* the|strong=\"G2532\"* revelations, that|strong=\"G2443\"* I|strong=\"G1473\"* should|strong=\"G3588\"* not|strong=\"G3361\"* be|strong=\"G2532\"* exalted excessively|strong=\"G5236\"*, a|strong=\"G2532\"* thorn|strong=\"G4647\"* in|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2443\"* me|strong=\"G1325\"*: a|strong=\"G2532\"* messenger of|strong=\"G2532\"* Satan|strong=\"G4567\"* to|strong=\"G2443\"* torment|strong=\"G2852\"* me|strong=\"G1325\"*, that|strong=\"G2443\"* I|strong=\"G1473\"* should|strong=\"G3588\"* not|strong=\"G3361\"* be|strong=\"G2532\"* exalted excessively|strong=\"G5236\"*." + }, + { + "verseNum": 8, + "text": "Concerning|strong=\"G5228\"* this|strong=\"G3778\"* thing|strong=\"G3778\"*, I|strong=\"G1473\"* begged|strong=\"G3870\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"* three|strong=\"G5151\"* times|strong=\"G5151\"* that|strong=\"G2443\"* it|strong=\"G3778\"* might|strong=\"G3778\"* depart from|strong=\"G3588\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* has|strong=\"G5547\"* said|strong=\"G3004\"* to|strong=\"G2443\"* me|strong=\"G1473\"*, “\\+w My|strong=\"G1722\"\\+w* \\+w grace|strong=\"G5485\"\\+w* \\+w is|strong=\"G3588\"\\+w* sufficient \\+w for|strong=\"G1063\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w made|strong=\"G3004\"\\+w* perfect \\+w in|strong=\"G1722\"\\+w* weakness.”* Most|strong=\"G3123\"* gladly|strong=\"G2236\"* therefore|strong=\"G3767\"* I|strong=\"G1473\"* will|strong=\"G2532\"* rather|strong=\"G3123\"* glory|strong=\"G2744\"* in|strong=\"G1722\"* my|strong=\"G1722\"* weaknesses, that|strong=\"G2443\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"* may|strong=\"G2532\"* rest|strong=\"G1981\"* on|strong=\"G1909\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"G1352\"* I|strong=\"G2532\"* take|strong=\"G2106\"* pleasure|strong=\"G2106\"* in|strong=\"G1722\"* weaknesses, in|strong=\"G1722\"* injuries, in|strong=\"G1722\"* necessities, in|strong=\"G1722\"* persecutions|strong=\"G1375\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* distresses|strong=\"G4730\"*, for|strong=\"G1063\"* Christ|strong=\"G5547\"*’s sake|strong=\"G5228\"*. For|strong=\"G1063\"* when|strong=\"G3752\"* I|strong=\"G2532\"* am|strong=\"G1510\"* weak, then|strong=\"G2532\"* am|strong=\"G1510\"* I|strong=\"G2532\"* strong|strong=\"G1415\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"G1473\"* have|strong=\"G2532\"* become|strong=\"G1096\"* foolish|strong=\"G2532\"* in|strong=\"G2532\"* boasting. You|strong=\"G5210\"* compelled me|strong=\"G1473\"*, for|strong=\"G1063\"* I|strong=\"G1473\"* ought|strong=\"G3784\"* to|strong=\"G2532\"* have|strong=\"G2532\"* been|strong=\"G1510\"* commended|strong=\"G4921\"* by|strong=\"G5259\"* you|strong=\"G5210\"*, for|strong=\"G1063\"* I|strong=\"G1473\"* am|strong=\"G1510\"* in|strong=\"G2532\"* no|strong=\"G3762\"* way inferior|strong=\"G5302\"* to|strong=\"G2532\"* the|strong=\"G2532\"* very|strong=\"G3029\"* best apostles, though|strong=\"G1487\"* I|strong=\"G1473\"* am|strong=\"G1510\"* nothing|strong=\"G3762\"*." + }, + { + "verseNum": 12, + "text": "Truly|strong=\"G3303\"* the|strong=\"G1722\"* signs|strong=\"G4592\"* of|strong=\"G2532\"* an|strong=\"G2532\"* apostle were|strong=\"G3588\"* worked among|strong=\"G1722\"* you|strong=\"G5210\"* in|strong=\"G1722\"* all|strong=\"G3956\"* perseverance|strong=\"G5281\"*, in|strong=\"G1722\"* signs|strong=\"G4592\"* and|strong=\"G2532\"* wonders|strong=\"G5059\"* and|strong=\"G2532\"* mighty|strong=\"G1411\"* works|strong=\"G1411\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* what|strong=\"G5101\"* is|strong=\"G1510\"* there|strong=\"G1063\"* in|strong=\"G1577\"* which|strong=\"G3739\"* you|strong=\"G5210\"* were|strong=\"G1510\"* made|strong=\"G3756\"* inferior|strong=\"G2274\"* to|strong=\"G3756\"* the|strong=\"G3588\"* rest|strong=\"G3062\"* of|strong=\"G1577\"* the|strong=\"G3588\"* assemblies|strong=\"G1577\"*, unless|strong=\"G1487\"* it|strong=\"G3754\"* is|strong=\"G1510\"* that|strong=\"G3754\"* I|strong=\"G1473\"* myself|strong=\"G1473\"* was|strong=\"G1510\"* not|strong=\"G3756\"* a|strong=\"G1510\"* burden|strong=\"G2655\"* to|strong=\"G3756\"* you|strong=\"G5210\"*? Forgive|strong=\"G5483\"* me|strong=\"G1473\"* this|strong=\"G3778\"* wrong!" + }, + { + "verseNum": 14, + "text": "Behold|strong=\"G2400\"*, this|strong=\"G3778\"* is|strong=\"G3588\"* the|strong=\"G2532\"* third|strong=\"G5154\"* time|strong=\"G5154\"* I|strong=\"G2532\"* am|strong=\"G2532\"* ready|strong=\"G2093\"* to|strong=\"G4314\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* will|strong=\"G2532\"* not|strong=\"G3756\"* be|strong=\"G2532\"* a|strong=\"G2192\"* burden|strong=\"G2655\"* to|strong=\"G4314\"* you|strong=\"G5210\"*; for|strong=\"G1063\"* I|strong=\"G2532\"* seek|strong=\"G2212\"* not|strong=\"G3756\"* your|strong=\"G2192\"* possessions, but|strong=\"G2532\"* you|strong=\"G5210\"*. For|strong=\"G1063\"* the|strong=\"G2532\"* children|strong=\"G5043\"* ought|strong=\"G3784\"* not|strong=\"G3756\"* to|strong=\"G4314\"* save|strong=\"G2343\"* up|strong=\"G2343\"* for|strong=\"G1063\"* the|strong=\"G2532\"* parents|strong=\"G1118\"*, but|strong=\"G2532\"* the|strong=\"G2532\"* parents|strong=\"G1118\"* for|strong=\"G1063\"* the|strong=\"G2532\"* children|strong=\"G5043\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"G1473\"* will|strong=\"G2532\"* most|strong=\"G5228\"* gladly|strong=\"G2236\"* spend|strong=\"G1159\"* and|strong=\"G2532\"* be|strong=\"G2532\"* spent|strong=\"G1159\"* for|strong=\"G5228\"* your|strong=\"G2532\"* souls|strong=\"G5590\"*. If|strong=\"G1487\"* I|strong=\"G1473\"* love you|strong=\"G5210\"* more|strong=\"G5228\"* abundantly|strong=\"G4056\"*, am|strong=\"G1473\"* I|strong=\"G1473\"* loved the|strong=\"G2532\"* less|strong=\"G2276\"*?" + }, + { + "verseNum": 16, + "text": "Even|strong=\"G1161\"* so|strong=\"G1161\"*, I|strong=\"G1473\"* myself|strong=\"G1473\"* didn’t burden|strong=\"G2599\"* you|strong=\"G5210\"*. But|strong=\"G1161\"* you|strong=\"G5210\"* might|strong=\"G5210\"* say|strong=\"G1473\"* that|strong=\"G1161\"* being|strong=\"G1510\"* crafty|strong=\"G3835\"*, I|strong=\"G1473\"* caught|strong=\"G2983\"* you|strong=\"G5210\"* with|strong=\"G3756\"* deception." + }, + { + "verseNum": 17, + "text": "Did|strong=\"G3361\"* I|strong=\"G3739\"* take|strong=\"G4122\"* advantage|strong=\"G4122\"* of|strong=\"G1223\"* you|strong=\"G5210\"* by|strong=\"G1223\"* anyone|strong=\"G5100\"* of|strong=\"G1223\"* those|strong=\"G3739\"* whom|strong=\"G3739\"* I|strong=\"G3739\"* have|strong=\"G5210\"* sent to|strong=\"G4314\"* you|strong=\"G5210\"*?" + }, + { + "verseNum": 18, + "text": "I|strong=\"G2532\"* exhorted|strong=\"G3870\"* Titus|strong=\"G5103\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* sent|strong=\"G4882\"* the|strong=\"G2532\"* brother with|strong=\"G2532\"* him|strong=\"G3588\"*. Did|strong=\"G2532\"* Titus|strong=\"G5103\"* take|strong=\"G2532\"* any|strong=\"G3756\"* advantage|strong=\"G4122\"* of|strong=\"G4151\"* you|strong=\"G5210\"*? Didn’t|strong=\"G3588\"* we|strong=\"G2532\"* walk|strong=\"G4043\"* in|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G2532\"* spirit|strong=\"G4151\"*? Didn’t|strong=\"G3588\"* we|strong=\"G2532\"* walk|strong=\"G4043\"* in|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G2532\"* steps|strong=\"G2487\"*?" + }, + { + "verseNum": 19, + "text": "Again, do|strong=\"G1380\"* you|strong=\"G5210\"* think|strong=\"G1380\"* that|strong=\"G3754\"* we|strong=\"G3754\"* are|strong=\"G3588\"* excusing ourselves to|strong=\"G1722\"* you|strong=\"G5210\"*? In|strong=\"G1722\"* the|strong=\"G1722\"* sight|strong=\"G2713\"* of|strong=\"G2316\"* God|strong=\"G2316\"* we|strong=\"G3754\"* speak|strong=\"G2980\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*. But|strong=\"G1161\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, beloved, are|strong=\"G3588\"* for|strong=\"G3754\"* your|strong=\"G3956\"* edifying|strong=\"G3619\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* I|strong=\"G2504\"* am|strong=\"G2309\"* afraid|strong=\"G5399\"* that|strong=\"G3361\"* perhaps|strong=\"G3381\"* when|strong=\"G2064\"* I|strong=\"G2504\"* come|strong=\"G2064\"*, I|strong=\"G2504\"* might|strong=\"G5210\"* find|strong=\"G2147\"* you|strong=\"G5210\"* not|strong=\"G3756\"* the|strong=\"G1063\"* way I|strong=\"G2504\"* want|strong=\"G2309\"* to|strong=\"G2309\"*, and|strong=\"G2064\"* that|strong=\"G3361\"* I|strong=\"G2504\"* might|strong=\"G5210\"* be|strong=\"G3756\"* found|strong=\"G2147\"* by|strong=\"G2064\"* you|strong=\"G5210\"* as|strong=\"G3634\"* you|strong=\"G5210\"* don’t desire|strong=\"G2309\"*, that|strong=\"G3361\"* perhaps|strong=\"G3381\"* there|strong=\"G1063\"* would|strong=\"G2309\"* be|strong=\"G3756\"* strife|strong=\"G2054\"*, jealousy|strong=\"G2205\"*, outbursts|strong=\"G2372\"* of|strong=\"G2372\"* anger|strong=\"G2372\"*, factions, slander|strong=\"G2636\"*, whisperings|strong=\"G5587\"*, proud thoughts, or|strong=\"G3361\"* riots," + }, + { + "verseNum": 21, + "text": "that|strong=\"G3739\"* again|strong=\"G3825\"* when|strong=\"G2532\"* I|strong=\"G1473\"* come|strong=\"G2064\"* my|strong=\"G1473\"* God|strong=\"G2316\"* would|strong=\"G2316\"* humble|strong=\"G5013\"* me|strong=\"G1473\"* before|strong=\"G1909\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* would|strong=\"G2316\"* mourn|strong=\"G3996\"* for|strong=\"G1909\"* many|strong=\"G4183\"* of|strong=\"G2316\"* those|strong=\"G3588\"* who|strong=\"G3739\"* have|strong=\"G2532\"* sinned|strong=\"G4258\"* before|strong=\"G1909\"* now|strong=\"G2532\"*, and|strong=\"G2532\"* not|strong=\"G3361\"* repented|strong=\"G3340\"* of|strong=\"G2316\"* the|strong=\"G2532\"* uncleanness, sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*, and|strong=\"G2532\"* lustfulness which|strong=\"G3739\"* they|strong=\"G2532\"* committed|strong=\"G4238\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "This|strong=\"G3778\"* is|strong=\"G3778\"* the|strong=\"G2532\"* third|strong=\"G5154\"* time|strong=\"G5154\"* I|strong=\"G2532\"* am|strong=\"G2532\"* coming|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"*. “At|strong=\"G1909\"* the|strong=\"G2532\"* mouth|strong=\"G4750\"* of|strong=\"G2532\"* two|strong=\"G1417\"* or|strong=\"G2532\"* three|strong=\"G5140\"* witnesses|strong=\"G3144\"* shall|strong=\"G2532\"* every|strong=\"G3956\"* word|strong=\"G4487\"* be|strong=\"G2532\"* established|strong=\"G2476\"*.”+ 13:1 Deuteronomy 19:15*" + }, + { + "verseNum": 2, + "text": "I|strong=\"G2532\"* have|strong=\"G2532\"* warned previously, and|strong=\"G2532\"* I|strong=\"G2532\"* warn again|strong=\"G3825\"*, as|strong=\"G5613\"* when|strong=\"G5613\"* I|strong=\"G2532\"* was|strong=\"G3588\"* present|strong=\"G3568\"* the|strong=\"G2532\"* second|strong=\"G1208\"* time|strong=\"G1208\"*, so|strong=\"G2532\"* now|strong=\"G3568\"*, being|strong=\"G2532\"* absent, I|strong=\"G2532\"* write to|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2532\"* sinned|strong=\"G4258\"* before|strong=\"G1519\"* now|strong=\"G3568\"* and|strong=\"G2532\"* to|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G2532\"* rest|strong=\"G3062\"* that|strong=\"G3754\"* if|strong=\"G1437\"* I|strong=\"G2532\"* come|strong=\"G2064\"* again|strong=\"G3825\"*, I|strong=\"G2532\"* will|strong=\"G2532\"* not|strong=\"G3756\"* spare|strong=\"G5339\"*," + }, + { + "verseNum": 3, + "text": "seeing|strong=\"G1893\"* that|strong=\"G3739\"* you|strong=\"G5210\"* seek|strong=\"G2212\"* a|strong=\"G1519\"* proof|strong=\"G1382\"* of|strong=\"G1722\"* Christ|strong=\"G5547\"* who|strong=\"G3739\"* speaks|strong=\"G2980\"* in|strong=\"G1722\"* me|strong=\"G1473\"* who|strong=\"G3739\"* is|strong=\"G3588\"* not|strong=\"G3756\"* weak, but|strong=\"G3588\"* is|strong=\"G3588\"* powerful in|strong=\"G1722\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* was|strong=\"G2532\"* crucified|strong=\"G4717\"* through|strong=\"G1722\"* weakness, yet|strong=\"G2532\"* he|strong=\"G2532\"* lives|strong=\"G2198\"* through|strong=\"G1722\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G1537\"* God|strong=\"G2316\"*. For|strong=\"G1063\"* we|strong=\"G2249\"* also|strong=\"G2532\"* are|strong=\"G2532\"* weak in|strong=\"G1722\"* him|strong=\"G2532\"*, but|strong=\"G2532\"* we|strong=\"G2249\"* will|strong=\"G2316\"* live|strong=\"G2198\"* with|strong=\"G1722\"* him|strong=\"G2532\"* through|strong=\"G1722\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G1537\"* God|strong=\"G2316\"* toward|strong=\"G1519\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 5, + "text": "Examine|strong=\"G1381\"* your|strong=\"G1487\"* own|strong=\"G1438\"* selves|strong=\"G1438\"*, whether|strong=\"G1487\"* you|strong=\"G5210\"* are|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* faith|strong=\"G4102\"*. Test|strong=\"G3985\"* your|strong=\"G1487\"* own|strong=\"G1438\"* selves|strong=\"G1438\"*. Or|strong=\"G2228\"* don’t|strong=\"G3588\"* you|strong=\"G5210\"* know|strong=\"G1921\"* about|strong=\"G1722\"* your|strong=\"G1487\"* own|strong=\"G1438\"* selves|strong=\"G1438\"*, that|strong=\"G3754\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* is|strong=\"G1510\"* in|strong=\"G1722\"* you|strong=\"G5210\"*?—unless|strong=\"G1487\"* indeed|strong=\"G1510\"* you|strong=\"G5210\"* are|strong=\"G1510\"* disqualified." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* I|strong=\"G1473\"* hope|strong=\"G1679\"* that|strong=\"G3754\"* you|strong=\"G3754\"* will|strong=\"G1510\"* know|strong=\"G1097\"* that|strong=\"G3754\"* we|strong=\"G2249\"* aren’t disqualified." + }, + { + "verseNum": 7, + "text": "Now|strong=\"G1161\"* I|strong=\"G1473\"* pray|strong=\"G2172\"* to|strong=\"G4314\"* God|strong=\"G2316\"* that|strong=\"G2443\"* you|strong=\"G5210\"* do|strong=\"G4160\"* no|strong=\"G3756\"* evil|strong=\"G2556\"*; not|strong=\"G3756\"* that|strong=\"G2443\"* we|strong=\"G2249\"* may|strong=\"G2443\"* appear|strong=\"G5316\"* approved|strong=\"G1384\"*, but|strong=\"G1161\"* that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2443\"* do|strong=\"G4160\"* that|strong=\"G2443\"* which|strong=\"G3588\"* is|strong=\"G1510\"* honorable|strong=\"G2570\"*, though|strong=\"G5613\"* we|strong=\"G2249\"* may|strong=\"G2443\"* seem|strong=\"G5316\"* to|strong=\"G4314\"* have|strong=\"G1473\"* failed|strong=\"G3756\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* can|strong=\"G1410\"* do|strong=\"G1410\"* nothing|strong=\"G3756\"* against|strong=\"G2596\"* the|strong=\"G2596\"* truth, but|strong=\"G1063\"* for|strong=\"G1063\"* the|strong=\"G2596\"* truth." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* rejoice|strong=\"G5463\"* when|strong=\"G3752\"* we|strong=\"G2249\"* are|strong=\"G1510\"* weak and|strong=\"G2532\"* you|strong=\"G5210\"* are|strong=\"G1510\"* strong|strong=\"G1415\"*. We|strong=\"G2249\"* also|strong=\"G2532\"* pray|strong=\"G2172\"* for|strong=\"G1063\"* this|strong=\"G3778\"*: your|strong=\"G2532\"* becoming perfect|strong=\"G3778\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1519\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* I|strong=\"G1473\"* write|strong=\"G1125\"* these|strong=\"G3778\"* things|strong=\"G3778\"* while|strong=\"G3739\"* absent, that|strong=\"G2443\"* I|strong=\"G1473\"* may|strong=\"G2532\"* not|strong=\"G3756\"* deal sharply when|strong=\"G2532\"* present|strong=\"G3918\"*, according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G2532\"* authority|strong=\"G1849\"* which|strong=\"G3739\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* gave|strong=\"G1325\"* me|strong=\"G1325\"* for|strong=\"G1519\"* building|strong=\"G3619\"* up|strong=\"G1519\"* and|strong=\"G2532\"* not|strong=\"G3756\"* for|strong=\"G1519\"* tearing|strong=\"G2506\"* down|strong=\"G2596\"*." + }, + { + "verseNum": 11, + "text": "Finally|strong=\"G3063\"*, brothers, rejoice|strong=\"G5463\"*! Be|strong=\"G1510\"* perfected. Be|strong=\"G1510\"* comforted|strong=\"G3870\"*. Be|strong=\"G1510\"* of|strong=\"G2316\"* the|strong=\"G2532\"* same|strong=\"G2532\"* mind|strong=\"G5426\"*. Live|strong=\"G2532\"* in|strong=\"G2532\"* peace|strong=\"G1515\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* love and|strong=\"G2532\"* peace|strong=\"G1515\"* will|strong=\"G2316\"* be|strong=\"G1510\"* with|strong=\"G3326\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 12, + "text": "Greet one|strong=\"G3956\"* another|strong=\"G3588\"* with|strong=\"G1722\"* a|strong=\"G1722\"* holy kiss|strong=\"G5370\"*." + }, + { + "verseNum": 13, + "text": "All|strong=\"G3956\"* the|strong=\"G2532\"* saints greet you|strong=\"G5210\"*." + }, + { + "verseNum": 14, + "text": "The grace of the Lord Jesus Christ, God’s love, and the fellowship of the Holy Spirit be with you all. Amen." + } + ] + } + ] + }, + { + "name": "Galatians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, an|strong=\"G2532\"* apostle—not|strong=\"G3756\"* from|strong=\"G1537\"* men|strong=\"G3588\"*, nor|strong=\"G3761\"* through|strong=\"G1223\"* man|strong=\"G3498\"*, but|strong=\"G2532\"* through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:1 “Christ” means “Anointed One”.* and|strong=\"G2532\"* God|strong=\"G2316\"* the|strong=\"G2532\"* Father|strong=\"G3962\"*, who|strong=\"G3588\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*—" + }, + { + "verseNum": 2, + "text": "and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* brothers+ 1:2 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” * who|strong=\"G3588\"* are|strong=\"G3588\"* with|strong=\"G4862\"* me|strong=\"G1473\"*, to|strong=\"G2532\"* the|strong=\"G2532\"* assemblies|strong=\"G1577\"* of|strong=\"G2532\"* Galatia|strong=\"G1053\"*:" + }, + { + "verseNum": 3, + "text": "Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 4, + "text": "who|strong=\"G3588\"* gave|strong=\"G1325\"* himself|strong=\"G1438\"* for|strong=\"G5228\"* our|strong=\"G2316\"* sins, that|strong=\"G3588\"* he|strong=\"G2532\"* might|strong=\"G2532\"* deliver|strong=\"G1807\"* us|strong=\"G1325\"* out|strong=\"G1537\"* of|strong=\"G1537\"* this|strong=\"G3588\"* present|strong=\"G1764\"* evil|strong=\"G4190\"* age, according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* will|strong=\"G2307\"* of|strong=\"G1537\"* our|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"*—" + }, + { + "verseNum": 5, + "text": "to|strong=\"G1519\"* whom|strong=\"G3739\"* be|strong=\"G1519\"* the|strong=\"G1519\"* glory|strong=\"G1391\"* forever|strong=\"G1519\"* and|strong=\"G1391\"* ever|strong=\"G1519\"*. Amen." + }, + { + "verseNum": 6, + "text": "I|strong=\"G3754\"* marvel|strong=\"G2296\"* that|strong=\"G3754\"* you|strong=\"G5210\"* are|strong=\"G3588\"* so|strong=\"G3779\"* quickly|strong=\"G5030\"* deserting|strong=\"G3346\"* him|strong=\"G3588\"* who|strong=\"G3588\"* called|strong=\"G2564\"* you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* of|strong=\"G5485\"* Christ|strong=\"G5547\"* to|strong=\"G1519\"* a|strong=\"G1519\"* different|strong=\"G2087\"* “good|strong=\"G3588\"* news|strong=\"G2098\"*”," + }, + { + "verseNum": 7, + "text": "but|strong=\"G2532\"* there|strong=\"G2532\"* isn’t|strong=\"G3588\"* another|strong=\"G3739\"* “good|strong=\"G3756\"* news|strong=\"G2098\"*.” Only|strong=\"G1487\"* there|strong=\"G2532\"* are|strong=\"G1510\"* some|strong=\"G5100\"* who|strong=\"G3739\"* trouble|strong=\"G5015\"* you|strong=\"G5210\"* and|strong=\"G2532\"* want|strong=\"G2309\"* to|strong=\"G2532\"* pervert|strong=\"G3344\"* the|strong=\"G2532\"* Good|strong=\"G3756\"* News|strong=\"G2098\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G2532\"* even|strong=\"G2532\"* though|strong=\"G1437\"* we|strong=\"G2249\"*, or|strong=\"G2228\"* an|strong=\"G2532\"* angel from|strong=\"G1537\"* heaven|strong=\"G3772\"*, should|strong=\"G2532\"* preach|strong=\"G2097\"* to|strong=\"G2532\"* you|strong=\"G5210\"* any|strong=\"G1437\"* “good|strong=\"G2097\"* news|strong=\"G2097\"*” other|strong=\"G3739\"* than|strong=\"G2228\"* that|strong=\"G3739\"* which|strong=\"G3739\"* we|strong=\"G2249\"* preached|strong=\"G2097\"* to|strong=\"G2532\"* you|strong=\"G5210\"*, let|strong=\"G1510\"* him|strong=\"G3739\"* be|strong=\"G1510\"* cursed." + }, + { + "verseNum": 9, + "text": "As|strong=\"G5613\"* we|strong=\"G3739\"* have|strong=\"G2532\"* said|strong=\"G3004\"* before|strong=\"G3844\"*, so|strong=\"G2532\"* I|strong=\"G3739\"* now|strong=\"G2532\"* say|strong=\"G3004\"* again|strong=\"G3825\"*: if|strong=\"G1487\"* any|strong=\"G5100\"* man|strong=\"G5100\"* preaches to|strong=\"G2532\"* you|strong=\"G5210\"* any|strong=\"G5100\"* “good|strong=\"G2097\"* news|strong=\"G2097\"*” other|strong=\"G3739\"* than|strong=\"G3844\"* that|strong=\"G3739\"* which|strong=\"G3739\"* you|strong=\"G5210\"* received|strong=\"G3880\"*, let|strong=\"G1510\"* him|strong=\"G3739\"* be|strong=\"G1510\"* cursed." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* am|strong=\"G1510\"* I|strong=\"G1063\"* now|strong=\"G1510\"* seeking|strong=\"G2212\"* the|strong=\"G3588\"* favor|strong=\"G3982\"* of|strong=\"G2316\"* men|strong=\"G1401\"*, or|strong=\"G2228\"* of|strong=\"G2316\"* God|strong=\"G2316\"*? Or|strong=\"G2228\"* am|strong=\"G1510\"* I|strong=\"G1063\"* striving|strong=\"G2212\"* to|strong=\"G2212\"* please men|strong=\"G1401\"*? For|strong=\"G1063\"* if|strong=\"G1487\"* I|strong=\"G1063\"* were|strong=\"G1510\"* still|strong=\"G2089\"* pleasing men|strong=\"G1401\"*, I|strong=\"G1063\"* wouldn’t|strong=\"G3588\"* be|strong=\"G1510\"* a|strong=\"G1510\"* servant|strong=\"G1401\"* of|strong=\"G2316\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* I|strong=\"G1473\"* make|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G2596\"* you|strong=\"G5210\"*, brothers, concerning|strong=\"G2596\"* the|strong=\"G1161\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* which|strong=\"G3588\"* was|strong=\"G1510\"* preached|strong=\"G2097\"* by|strong=\"G5259\"* me|strong=\"G1473\"*, that|strong=\"G3754\"* it|strong=\"G3754\"* is|strong=\"G1510\"* not|strong=\"G3756\"* according|strong=\"G2596\"* to|strong=\"G2596\"* man|strong=\"G3756\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* didn’t receive|strong=\"G3880\"* it|strong=\"G1063\"* from|strong=\"G3844\"* man, nor|strong=\"G3761\"* was|strong=\"G2424\"* I|strong=\"G1473\"* taught|strong=\"G1321\"* it|strong=\"G1063\"*, but|strong=\"G1063\"* it|strong=\"G1063\"* came|strong=\"G1223\"* to|strong=\"G2424\"* me|strong=\"G1473\"* through|strong=\"G1223\"* revelation of|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* you|strong=\"G3754\"* have|strong=\"G2532\"* heard of|strong=\"G2316\"* my|strong=\"G1699\"* way|strong=\"G2596\"* of|strong=\"G2316\"* living in|strong=\"G1722\"* time|strong=\"G4218\"* past|strong=\"G4218\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Jews’ religion, how|strong=\"G3754\"* that|strong=\"G3754\"* beyond|strong=\"G3754\"* measure|strong=\"G5236\"* I|strong=\"G2532\"* persecuted|strong=\"G1377\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* ravaged it|strong=\"G2532\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"G1473\"* advanced in|strong=\"G1722\"* the|strong=\"G1722\"* Jews’ religion beyond|strong=\"G5228\"* many|strong=\"G4183\"* of|strong=\"G2532\"* my|strong=\"G1722\"* own age among|strong=\"G1722\"* my|strong=\"G1722\"* countrymen|strong=\"G1085\"*, being|strong=\"G5225\"* more|strong=\"G4183\"* exceedingly|strong=\"G4056\"* zealous|strong=\"G2207\"* for|strong=\"G5228\"* the|strong=\"G1722\"* traditions|strong=\"G3862\"* of|strong=\"G2532\"* my|strong=\"G1722\"* fathers|strong=\"G3862\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* when|strong=\"G3753\"* it|strong=\"G2532\"* was|strong=\"G3588\"* the|strong=\"G2532\"* good|strong=\"G2106\"* pleasure|strong=\"G2106\"* of|strong=\"G1537\"* God|strong=\"G2532\"*, who|strong=\"G3588\"* separated me|strong=\"G1473\"* from|strong=\"G1537\"* my|strong=\"G1473\"* mother|strong=\"G3384\"*’s womb|strong=\"G2836\"* and|strong=\"G2532\"* called|strong=\"G2564\"* me|strong=\"G1473\"* through|strong=\"G1223\"* his|strong=\"G1223\"* grace|strong=\"G5485\"*," + }, + { + "verseNum": 16, + "text": "to|strong=\"G2443\"* reveal his|strong=\"G1722\"* Son|strong=\"G5207\"* in|strong=\"G1722\"* me|strong=\"G1473\"*, that|strong=\"G2443\"* I|strong=\"G1473\"* might|strong=\"G2532\"* preach|strong=\"G2097\"* him|strong=\"G3588\"* among|strong=\"G1722\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"*, I|strong=\"G1473\"* didn’t|strong=\"G3588\"* immediately|strong=\"G2112\"* confer with|strong=\"G1722\"* flesh|strong=\"G4561\"* and|strong=\"G2532\"* blood," + }, + { + "verseNum": 17, + "text": "nor|strong=\"G3761\"* did|strong=\"G2532\"* I|strong=\"G1473\"* go|strong=\"G1519\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"* to|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* apostles before|strong=\"G4253\"* me|strong=\"G1473\"*, but|strong=\"G2532\"* I|strong=\"G1473\"* went|strong=\"G2532\"* away|strong=\"G5290\"* into|strong=\"G1519\"* Arabia. Then|strong=\"G2532\"* I|strong=\"G1473\"* returned|strong=\"G5290\"* to|strong=\"G1519\"* Damascus|strong=\"G1154\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"G2532\"* after|strong=\"G3326\"* three|strong=\"G5140\"* years|strong=\"G2094\"* I|strong=\"G2532\"* went|strong=\"G2532\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"* to|strong=\"G1519\"* visit Peter|strong=\"G2532\"*, and|strong=\"G2532\"* stayed|strong=\"G1961\"* with|strong=\"G3326\"* him|strong=\"G2532\"* fifteen|strong=\"G1178\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"G1161\"* of|strong=\"G2962\"* the|strong=\"G1161\"* other|strong=\"G2087\"* apostles I|strong=\"G1161\"* saw|strong=\"G3708\"* no|strong=\"G3756\"* one|strong=\"G3588\"* except|strong=\"G1487\"* James|strong=\"G2385\"*, the|strong=\"G1161\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* brother." + }, + { + "verseNum": 20, + "text": "Now|strong=\"G1161\"* about|strong=\"G3754\"* the|strong=\"G1161\"* things|strong=\"G3588\"* which|strong=\"G3739\"* I|strong=\"G3739\"* write|strong=\"G1125\"* to|strong=\"G3756\"* you|strong=\"G5210\"*, behold|strong=\"G2400\"*,+ 1:20 “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* before|strong=\"G1799\"* God|strong=\"G2316\"*, I|strong=\"G3739\"*’m not|strong=\"G3756\"* lying|strong=\"G5574\"*." + }, + { + "verseNum": 21, + "text": "Then|strong=\"G2532\"* I|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* regions|strong=\"G2824\"* of|strong=\"G2532\"* Syria|strong=\"G4947\"* and|strong=\"G2532\"* Cilicia|strong=\"G2791\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"G1161\"* was|strong=\"G1510\"* still unknown by|strong=\"G1722\"* face|strong=\"G4383\"* to|strong=\"G1722\"* the|strong=\"G1722\"* assemblies|strong=\"G1577\"* of|strong=\"G1577\"* Judea|strong=\"G2449\"* which|strong=\"G3588\"* were|strong=\"G1510\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 23, + "text": "but|strong=\"G1161\"* they|strong=\"G1161\"* only|strong=\"G3440\"* heard, “He|strong=\"G1161\"* who|strong=\"G3739\"* once|strong=\"G4218\"* persecuted|strong=\"G1377\"* us|strong=\"G2097\"* now|strong=\"G1161\"* preaches the|strong=\"G1161\"* faith|strong=\"G4102\"* that|strong=\"G3754\"* he|strong=\"G1161\"* once|strong=\"G4218\"* tried to|strong=\"G1161\"* destroy|strong=\"G4199\"*.”" + }, + { + "verseNum": 24, + "text": "So|strong=\"G2532\"* they|strong=\"G2532\"* glorified|strong=\"G1392\"* God|strong=\"G2316\"* in|strong=\"G1722\"* me|strong=\"G1473\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"G2532\"* after|strong=\"G3326\"* a|strong=\"G2532\"* period|strong=\"G2532\"* of|strong=\"G1223\"* fourteen|strong=\"G1180\"* years|strong=\"G2094\"* I|strong=\"G2532\"* went|strong=\"G2532\"* up|strong=\"G1519\"* again|strong=\"G3825\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"* with|strong=\"G3326\"* Barnabas, taking|strong=\"G4838\"* Titus|strong=\"G5103\"* also|strong=\"G2532\"* with|strong=\"G3326\"* me|strong=\"G1223\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"G3739\"* went|strong=\"G2532\"* up|strong=\"G1519\"* by|strong=\"G1722\"* revelation, and|strong=\"G2532\"* I|strong=\"G3739\"* laid|strong=\"G2532\"* before|strong=\"G1722\"* them|strong=\"G3588\"* the|strong=\"G1722\"* Good|strong=\"G1380\"* News|strong=\"G2098\"* which|strong=\"G3739\"* I|strong=\"G3739\"* preach|strong=\"G2784\"* among|strong=\"G1722\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"*, but|strong=\"G1161\"* privately|strong=\"G2398\"* before|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3739\"* were|strong=\"G3588\"* respected, for|strong=\"G1519\"* fear|strong=\"G3381\"* that|strong=\"G3739\"* I|strong=\"G3739\"* might|strong=\"G2532\"* be|strong=\"G2532\"* running|strong=\"G5143\"*, or|strong=\"G2228\"* had|strong=\"G2532\"* run|strong=\"G5143\"*, in|strong=\"G1722\"* vain|strong=\"G2756\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G3588\"* not|strong=\"G3761\"* even|strong=\"G3761\"* Titus|strong=\"G5103\"*, who|strong=\"G3588\"* was|strong=\"G1510\"* with|strong=\"G4862\"* me|strong=\"G1473\"*, being|strong=\"G1510\"* a|strong=\"G1510\"* Greek|strong=\"G1672\"*, was|strong=\"G1510\"* compelled to|strong=\"G1510\"* be|strong=\"G1510\"* circumcised|strong=\"G4059\"*." + }, + { + "verseNum": 4, + "text": "This|strong=\"G3588\"* was|strong=\"G3588\"* because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G1722\"* false|strong=\"G5569\"* brothers secretly|strong=\"G3920\"* brought|strong=\"G1161\"* in|strong=\"G1722\"*, who|strong=\"G3739\"* stole in|strong=\"G1722\"* to|strong=\"G2443\"* spy|strong=\"G2684\"* out|strong=\"G2684\"* our|strong=\"G2424\"* liberty|strong=\"G1657\"* which|strong=\"G3739\"* we|strong=\"G2249\"* have|strong=\"G2192\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, that|strong=\"G2443\"* they|strong=\"G1161\"* might|strong=\"G2192\"* bring|strong=\"G2615\"* us|strong=\"G2249\"* into|strong=\"G1722\"* bondage|strong=\"G2615\"*," + }, + { + "verseNum": 5, + "text": "to|strong=\"G4314\"* whom|strong=\"G3739\"* we|strong=\"G3739\"* gave|strong=\"G3588\"* no|strong=\"G3761\"* place|strong=\"G1502\"* in|strong=\"G4314\"* the|strong=\"G4314\"* way|strong=\"G3739\"* of|strong=\"G2098\"* subjection|strong=\"G5292\"*, not|strong=\"G3761\"* for|strong=\"G4314\"* an|strong=\"G4314\"* hour|strong=\"G5610\"*, that|strong=\"G2443\"* the|strong=\"G4314\"* truth of|strong=\"G2098\"* the|strong=\"G4314\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* might|strong=\"G5610\"* continue|strong=\"G1265\"* with|strong=\"G4314\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* from|strong=\"G3756\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* reputed|strong=\"G1380\"* to|strong=\"G3756\"* be|strong=\"G1510\"* important—whatever|strong=\"G5100\"* they|strong=\"G1161\"* were|strong=\"G1510\"*, it|strong=\"G1161\"* makes|strong=\"G1308\"* no|strong=\"G3756\"* difference|strong=\"G1308\"* to|strong=\"G3756\"* me|strong=\"G1473\"*; God|strong=\"G2316\"* doesn’t|strong=\"G3588\"* show|strong=\"G2983\"* partiality|strong=\"G4383\"* to|strong=\"G3756\"* man|strong=\"G5100\"*—they|strong=\"G1161\"*, I|strong=\"G1473\"* say|strong=\"G1473\"*, who|strong=\"G3588\"* were|strong=\"G1510\"* respected imparted nothing|strong=\"G3762\"* to|strong=\"G3756\"* me|strong=\"G1473\"*," + }, + { + "verseNum": 7, + "text": "but|strong=\"G3588\"* to|strong=\"G3708\"* the|strong=\"G3588\"* contrary|strong=\"G5121\"*, when|strong=\"G3754\"* they|strong=\"G3588\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* I|strong=\"G3754\"* had|strong=\"G3588\"* been entrusted|strong=\"G4100\"* with|strong=\"G3588\"* the|strong=\"G3588\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* for|strong=\"G3754\"* the|strong=\"G3588\"* uncircumcised, even|strong=\"G2531\"* as|strong=\"G2531\"* Peter|strong=\"G4074\"* with|strong=\"G3588\"* the|strong=\"G3588\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* for|strong=\"G3754\"* the|strong=\"G3588\"* circumcised|strong=\"G4061\"*—" + }, + { + "verseNum": 8, + "text": "for|strong=\"G1063\"* he|strong=\"G2532\"* who|strong=\"G3588\"* worked|strong=\"G1754\"* through Peter|strong=\"G4074\"* in|strong=\"G1519\"* the|strong=\"G2532\"* apostleship with|strong=\"G2532\"* the|strong=\"G2532\"* circumcised|strong=\"G4061\"* also|strong=\"G2532\"* worked|strong=\"G1754\"* through me|strong=\"G1473\"* with|strong=\"G2532\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*—" + }, + { + "verseNum": 9, + "text": "and|strong=\"G2532\"* when|strong=\"G1161\"* they|strong=\"G2532\"* perceived|strong=\"G1097\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* that|strong=\"G2443\"* was|strong=\"G1510\"* given|strong=\"G1325\"* to|strong=\"G1519\"* me|strong=\"G1325\"*, James|strong=\"G2385\"* and|strong=\"G2532\"* Cephas|strong=\"G2786\"* and|strong=\"G2532\"* John|strong=\"G2491\"*, those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* reputed|strong=\"G1380\"* to|strong=\"G1519\"* be|strong=\"G1510\"* pillars|strong=\"G4769\"*, gave|strong=\"G1325\"* to|strong=\"G1519\"* Barnabas and|strong=\"G2532\"* me|strong=\"G1325\"* the|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G2532\"* fellowship|strong=\"G2842\"*, that|strong=\"G2443\"* we|strong=\"G2249\"* should|strong=\"G3588\"* go|strong=\"G1519\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* to|strong=\"G1519\"* the|strong=\"G2532\"* circumcision|strong=\"G4061\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"G2532\"* only|strong=\"G3440\"* asked us|strong=\"G4160\"* to|strong=\"G2443\"* remember|strong=\"G3421\"* the|strong=\"G2532\"* poor|strong=\"G4434\"*—which|strong=\"G3739\"* very|strong=\"G2532\"* thing|strong=\"G3778\"* I|strong=\"G3739\"* was|strong=\"G3588\"* also|strong=\"G2532\"* zealous to|strong=\"G2443\"* do|strong=\"G4160\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* when|strong=\"G3753\"* Peter came|strong=\"G2064\"* to|strong=\"G1519\"* Antioch, I|strong=\"G1161\"* resisted him|strong=\"G1519\"* to|strong=\"G1519\"* his|strong=\"G1519\"* face|strong=\"G4383\"*, because|strong=\"G3754\"* he|strong=\"G1161\"* stood condemned|strong=\"G2607\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* before|strong=\"G4253\"* some|strong=\"G5100\"* people|strong=\"G1484\"* came|strong=\"G2064\"* from|strong=\"G1537\"* James|strong=\"G2385\"*, he|strong=\"G2532\"* ate|strong=\"G4906\"* with|strong=\"G3326\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*. But|strong=\"G1161\"* when|strong=\"G3753\"* they|strong=\"G2532\"* came|strong=\"G2064\"*, he|strong=\"G2532\"* drew|strong=\"G2532\"* back|strong=\"G5288\"* and|strong=\"G2532\"* separated himself|strong=\"G1438\"*, fearing|strong=\"G5399\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G2532\"* circumcision|strong=\"G4061\"*." + }, + { + "verseNum": 13, + "text": "And|strong=\"G2532\"* the|strong=\"G2532\"* rest|strong=\"G3062\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* joined|strong=\"G4942\"* him|strong=\"G3588\"* in|strong=\"G2532\"* his|strong=\"G2532\"* hypocrisy|strong=\"G5272\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* even|strong=\"G2532\"* Barnabas was|strong=\"G3588\"* carried|strong=\"G4879\"* away|strong=\"G4879\"* with|strong=\"G2532\"* their|strong=\"G2532\"* hypocrisy|strong=\"G5272\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G2532\"* when|strong=\"G3753\"* I|strong=\"G2532\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* walk|strong=\"G2532\"* uprightly|strong=\"G3716\"* according|strong=\"G3756\"* to|strong=\"G4314\"* the|strong=\"G2532\"* truth of|strong=\"G2532\"* the|strong=\"G2532\"* Good|strong=\"G3956\"* News|strong=\"G2098\"*, I|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* Peter|strong=\"G2532\"* before|strong=\"G1715\"* them|strong=\"G3588\"* all|strong=\"G3956\"*, “If|strong=\"G1487\"* you|strong=\"G4771\"*, being|strong=\"G5225\"* a|strong=\"G2532\"* Jew|strong=\"G2453\"*, live|strong=\"G2198\"* as|strong=\"G2532\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"* do|strong=\"G2532\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* as|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* do|strong=\"G2532\"*, why|strong=\"G3754\"* do|strong=\"G2532\"* you|strong=\"G4771\"* compel the|strong=\"G2532\"* Gentiles|strong=\"G1484\"* to|strong=\"G4314\"* live|strong=\"G2198\"* as|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* do|strong=\"G2532\"*?" + }, + { + "verseNum": 15, + "text": "“We|strong=\"G2249\"*, being|strong=\"G2532\"* Jews|strong=\"G2453\"* by|strong=\"G1537\"* nature|strong=\"G5449\"* and|strong=\"G2532\"* not|strong=\"G3756\"* Gentile|strong=\"G1484\"* sinners," + }, + { + "verseNum": 16, + "text": "yet|strong=\"G2532\"* knowing|strong=\"G1492\"* that|strong=\"G3754\"* a|strong=\"G2532\"* man|strong=\"G3956\"* is|strong=\"G5547\"* not|strong=\"G3756\"* justified|strong=\"G1344\"* by|strong=\"G1223\"* the|strong=\"G2532\"* works|strong=\"G2041\"* of|strong=\"G1537\"* the|strong=\"G2532\"* law|strong=\"G3551\"* but|strong=\"G1161\"* through|strong=\"G1223\"* faith|strong=\"G4102\"* in|strong=\"G1519\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, even|strong=\"G2532\"* we|strong=\"G2249\"* believed|strong=\"G4100\"* in|strong=\"G1519\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, that|strong=\"G3754\"* we|strong=\"G2249\"* might|strong=\"G2532\"* be|strong=\"G2532\"* justified|strong=\"G1344\"* by|strong=\"G1223\"* faith|strong=\"G4102\"* in|strong=\"G1519\"* Christ|strong=\"G5547\"* and|strong=\"G2532\"* not|strong=\"G3756\"* by|strong=\"G1223\"* the|strong=\"G2532\"* works|strong=\"G2041\"* of|strong=\"G1537\"* the|strong=\"G2532\"* law|strong=\"G3551\"*, because|strong=\"G3754\"* no|strong=\"G3756\"* flesh|strong=\"G4561\"* will|strong=\"G2532\"* be|strong=\"G2532\"* justified|strong=\"G1344\"* by|strong=\"G1223\"* the|strong=\"G2532\"* works|strong=\"G2041\"* of|strong=\"G1537\"* the|strong=\"G2532\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* while|strong=\"G1722\"* we|strong=\"G2532\"* sought|strong=\"G2212\"* to|strong=\"G2532\"* be|strong=\"G1096\"* justified|strong=\"G1344\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*, we|strong=\"G2532\"* ourselves|strong=\"G1096\"* also|strong=\"G2532\"* were|strong=\"G1096\"* found|strong=\"G2147\"* sinners, is|strong=\"G1096\"* Christ|strong=\"G5547\"* a|strong=\"G1096\"* servant|strong=\"G1249\"* of|strong=\"G2532\"* sin? Certainly|strong=\"G2532\"* not|strong=\"G3361\"*!" + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* I|strong=\"G3739\"* build|strong=\"G3618\"* up|strong=\"G3618\"* again|strong=\"G3825\"* those|strong=\"G3778\"* things|strong=\"G3778\"* which|strong=\"G3739\"* I|strong=\"G3739\"* destroyed|strong=\"G2647\"*, I|strong=\"G3739\"* prove|strong=\"G4921\"* myself|strong=\"G1683\"* a|strong=\"G1487\"* law-breaker." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* through|strong=\"G1223\"* the|strong=\"G1223\"* law|strong=\"G3551\"* died to|strong=\"G2443\"* the|strong=\"G1223\"* law|strong=\"G3551\"*, that|strong=\"G2443\"* I|strong=\"G1473\"* might|strong=\"G2316\"* live|strong=\"G2198\"* to|strong=\"G2443\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 20, + "text": "I|strong=\"G1473\"* have|strong=\"G2532\"* been|strong=\"G2532\"* crucified|strong=\"G4957\"* with|strong=\"G1722\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* is|strong=\"G3588\"* no|strong=\"G3765\"* longer|strong=\"G3765\"* I|strong=\"G1473\"* who|strong=\"G3739\"* live|strong=\"G2198\"*, but|strong=\"G1161\"* Christ|strong=\"G5547\"* lives|strong=\"G2198\"* in|strong=\"G1722\"* me|strong=\"G1473\"*. That|strong=\"G3739\"* life|strong=\"G2198\"* which|strong=\"G3739\"* I|strong=\"G1473\"* now|strong=\"G1161\"* live|strong=\"G2198\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, I|strong=\"G1473\"* live|strong=\"G2198\"* by|strong=\"G1722\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, who|strong=\"G3739\"* loved me|strong=\"G1473\"* and|strong=\"G2532\"* gave|strong=\"G3860\"* himself|strong=\"G1438\"* up|strong=\"G3860\"* for|strong=\"G5228\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"G1063\"* don’t|strong=\"G3588\"* reject the|strong=\"G1223\"* grace|strong=\"G5485\"* of|strong=\"G1223\"* God|strong=\"G2316\"*. For|strong=\"G1063\"* if|strong=\"G1487\"* righteousness|strong=\"G1343\"* is|strong=\"G3588\"* through|strong=\"G1223\"* the|strong=\"G1223\"* law|strong=\"G3551\"*, then|strong=\"G1063\"* Christ|strong=\"G5547\"* died|strong=\"G3588\"* for|strong=\"G1063\"* nothing|strong=\"G3756\"*!”" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Foolish Galatians|strong=\"G1052\"*, who|strong=\"G3739\"* has|strong=\"G5101\"* bewitched you|strong=\"G5210\"* not|strong=\"G3739\"* to|strong=\"G2596\"* obey the|strong=\"G2596\"* truth, before|strong=\"G2596\"* whose|strong=\"G3739\"* eyes|strong=\"G3788\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* was|strong=\"G2424\"* openly portrayed|strong=\"G4270\"* among|strong=\"G2596\"* you|strong=\"G5210\"* as|strong=\"G2596\"* crucified|strong=\"G4717\"*?" + }, + { + "verseNum": 2, + "text": "I|strong=\"G3778\"* just|strong=\"G3440\"* want|strong=\"G2309\"* to|strong=\"G2309\"* learn|strong=\"G3129\"* this|strong=\"G3778\"* from|strong=\"G1537\"* you|strong=\"G5210\"*: Did|strong=\"G3588\"* you|strong=\"G5210\"* receive|strong=\"G2983\"* the|strong=\"G1537\"* Spirit|strong=\"G4151\"* by|strong=\"G1537\"* the|strong=\"G1537\"* works|strong=\"G2041\"* of|strong=\"G1537\"* the|strong=\"G1537\"* law|strong=\"G3551\"*, or|strong=\"G2228\"* by|strong=\"G1537\"* hearing of|strong=\"G1537\"* faith|strong=\"G4102\"*?" + }, + { + "verseNum": 3, + "text": "Are|strong=\"G1510\"* you|strong=\"G1510\"* so|strong=\"G3779\"* foolish? Having|strong=\"G4151\"* begun|strong=\"G1728\"* in|strong=\"G4151\"* the|strong=\"G4151\"* Spirit|strong=\"G4151\"*, are|strong=\"G1510\"* you|strong=\"G1510\"* now|strong=\"G3568\"* completed in|strong=\"G4151\"* the|strong=\"G4151\"* flesh|strong=\"G4561\"*?" + }, + { + "verseNum": 4, + "text": "Did|strong=\"G2532\"* you|strong=\"G1487\"* suffer|strong=\"G3958\"* so|strong=\"G2532\"* many|strong=\"G5118\"* things|strong=\"G5118\"* in|strong=\"G2532\"* vain|strong=\"G1500\"*, if|strong=\"G1487\"* it|strong=\"G2532\"* is|strong=\"G2532\"* indeed|strong=\"G2532\"* in|strong=\"G2532\"* vain|strong=\"G1500\"*?" + }, + { + "verseNum": 5, + "text": "He|strong=\"G2532\"* therefore|strong=\"G3767\"* who|strong=\"G3588\"* supplies|strong=\"G2023\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* does|strong=\"G2023\"* miracles|strong=\"G1411\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, does|strong=\"G2023\"* he|strong=\"G2532\"* do|strong=\"G2532\"* it|strong=\"G2532\"* by|strong=\"G1722\"* the|strong=\"G1722\"* works|strong=\"G2041\"* of|strong=\"G1537\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, or|strong=\"G2228\"* by|strong=\"G1722\"* hearing of|strong=\"G1537\"* faith|strong=\"G4102\"*?" + }, + { + "verseNum": 6, + "text": "Even|strong=\"G2532\"* so|strong=\"G2532\"*, Abraham|strong=\"G4100\"* “believed|strong=\"G4100\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G3588\"* counted|strong=\"G3049\"* to|strong=\"G1519\"* him|strong=\"G3588\"* for|strong=\"G1519\"* righteousness|strong=\"G1343\"*.”+ 3:6 Genesis 15:6*" + }, + { + "verseNum": 7, + "text": "Know|strong=\"G1097\"* therefore|strong=\"G3754\"* that|strong=\"G3754\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* of|strong=\"G1537\"* faith|strong=\"G4102\"* are|strong=\"G1510\"* children|strong=\"G5207\"* of|strong=\"G1537\"* Abraham." + }, + { + "verseNum": 8, + "text": "The|strong=\"G1722\"* Scripture|strong=\"G1124\"*, foreseeing that|strong=\"G3754\"* God|strong=\"G2316\"* would|strong=\"G2316\"* justify|strong=\"G1344\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* by|strong=\"G1722\"* faith|strong=\"G4102\"*, preached|strong=\"G4283\"* the|strong=\"G1722\"* Good|strong=\"G3956\"* News beforehand|strong=\"G4283\"* to|strong=\"G1722\"* Abraham, saying|strong=\"G3754\"*, “In|strong=\"G1722\"* you|strong=\"G4771\"* all|strong=\"G3956\"* the|strong=\"G1722\"* nations|strong=\"G1484\"* will|strong=\"G2316\"* be|strong=\"G3956\"* blessed|strong=\"G1757\"*.”+ 3:8 Genesis 12:3; 18:18; 22:18*" + }, + { + "verseNum": 9, + "text": "So|strong=\"G5620\"* then|strong=\"G5620\"*, those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* of|strong=\"G1537\"* faith|strong=\"G4102\"* are|strong=\"G3588\"* blessed|strong=\"G2127\"* with|strong=\"G4862\"* the|strong=\"G1537\"* faithful|strong=\"G4103\"* Abraham." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* are|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G1722\"* works|strong=\"G2041\"* of|strong=\"G1537\"* the|strong=\"G1722\"* law|strong=\"G3551\"* are|strong=\"G1510\"* under|strong=\"G5259\"* a|strong=\"G1722\"* curse|strong=\"G2671\"*. For|strong=\"G1063\"* it|strong=\"G3754\"* is|strong=\"G1510\"* written|strong=\"G1125\"*, “Cursed|strong=\"G1944\"* is|strong=\"G1510\"* everyone|strong=\"G3956\"* who|strong=\"G3739\"* doesn’t|strong=\"G3588\"* continue|strong=\"G1696\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"* that|strong=\"G3754\"* are|strong=\"G1510\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* book|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, to|strong=\"G1722\"* do|strong=\"G4160\"* them|strong=\"G3588\"*.”+ 3:10 Deuteronomy 27:26*" + }, + { + "verseNum": 11, + "text": "Now|strong=\"G1161\"* that|strong=\"G3754\"* no|strong=\"G3762\"* man|strong=\"G3762\"* is|strong=\"G3588\"* justified|strong=\"G1344\"* by|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* before|strong=\"G3844\"* God|strong=\"G2316\"* is|strong=\"G3588\"* evident|strong=\"G1212\"*, for|strong=\"G3754\"*, “The|strong=\"G1722\"* righteous|strong=\"G1342\"* will|strong=\"G2316\"* live|strong=\"G2198\"* by|strong=\"G1722\"* faith|strong=\"G4102\"*.”+ 3:11 Habakkuk 2:4*" + }, + { + "verseNum": 12, + "text": "The|strong=\"G1722\"* law|strong=\"G3551\"* is|strong=\"G1510\"* not|strong=\"G3756\"* of|strong=\"G1537\"* faith|strong=\"G4102\"*, but|strong=\"G1161\"*, “The|strong=\"G1722\"* man|strong=\"G3756\"* who|strong=\"G3588\"* does|strong=\"G4160\"* them|strong=\"G3588\"* will|strong=\"G1510\"* live|strong=\"G2198\"* by|strong=\"G1722\"* them|strong=\"G3588\"*.”+ 3:12 Leviticus 18:5*" + }, + { + "verseNum": 13, + "text": "Christ|strong=\"G5547\"* redeemed|strong=\"G1805\"* us|strong=\"G2249\"* from|strong=\"G1537\"* the|strong=\"G3956\"* curse|strong=\"G2671\"* of|strong=\"G1537\"* the|strong=\"G3956\"* law|strong=\"G3551\"*, having become|strong=\"G1096\"* a|strong=\"G1096\"* curse|strong=\"G2671\"* for|strong=\"G3754\"* us|strong=\"G2249\"*. For|strong=\"G3754\"* it|strong=\"G3754\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “Cursed|strong=\"G1944\"* is|strong=\"G3588\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* hangs|strong=\"G2910\"* on|strong=\"G1909\"* a|strong=\"G1096\"* tree|strong=\"G3586\"*,”+ 3:13 Deuteronomy 21:23*" + }, + { + "verseNum": 14, + "text": "that|strong=\"G2443\"* the|strong=\"G1722\"* blessing|strong=\"G2129\"* of|strong=\"G4151\"* Abraham might|strong=\"G1484\"* come|strong=\"G1096\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* through|strong=\"G1223\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, that|strong=\"G2443\"* we|strong=\"G2443\"* might|strong=\"G1484\"* receive|strong=\"G2983\"* the|strong=\"G1722\"* promise|strong=\"G1860\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* through|strong=\"G1223\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 15, + "text": "Brothers, speaking|strong=\"G3004\"* of|strong=\"G2596\"* human terms|strong=\"G2596\"*, though|strong=\"G3676\"* it|strong=\"G3004\"* is|strong=\"G3762\"* only a|strong=\"G2228\"* man|strong=\"G3762\"*’s covenant|strong=\"G1242\"*, yet|strong=\"G3676\"* when|strong=\"G3004\"* it|strong=\"G3004\"* has|strong=\"G3762\"* been confirmed|strong=\"G2964\"*, no|strong=\"G3762\"* one|strong=\"G3762\"* makes it|strong=\"G3004\"* void or|strong=\"G2228\"* adds|strong=\"G1928\"* to|strong=\"G2596\"* it|strong=\"G3004\"*." + }, + { + "verseNum": 16, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* promises|strong=\"G1860\"* were|strong=\"G1510\"* spoken|strong=\"G3004\"* to|strong=\"G2532\"* Abraham and|strong=\"G2532\"* to|strong=\"G2532\"* his|strong=\"G1909\"* offspring.+ 3:16 or, seed* He|strong=\"G2532\"* doesn’t|strong=\"G3588\"* say|strong=\"G3004\"*, “To|strong=\"G2532\"* descendants|strong=\"G4690\"*+ 3:16 or, seeds*”, as|strong=\"G5613\"* of|strong=\"G2532\"* many|strong=\"G4183\"*, but|strong=\"G1161\"* as|strong=\"G5613\"* of|strong=\"G2532\"* one|strong=\"G1520\"*, “To|strong=\"G2532\"* your|strong=\"G2532\"* offspring”,+ 3:16 Genesis 12:7; 13:15; 24:7* which|strong=\"G3739\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"G1161\"* I|strong=\"G2532\"* say|strong=\"G3004\"* this|strong=\"G3778\"*: A|strong=\"G1096\"* covenant|strong=\"G1242\"* confirmed beforehand by|strong=\"G5259\"* God|strong=\"G2316\"* in|strong=\"G1519\"* Christ, the|strong=\"G2532\"* law|strong=\"G3551\"*, which|strong=\"G3588\"* came|strong=\"G1096\"* four|strong=\"G5071\"* hundred|strong=\"G5071\"* thirty|strong=\"G5144\"* years|strong=\"G2094\"* after|strong=\"G3326\"*, does|strong=\"G2316\"* not|strong=\"G3756\"* annul, so|strong=\"G2532\"* as|strong=\"G1519\"* to|strong=\"G1519\"* make|strong=\"G2673\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* of|strong=\"G5259\"* no|strong=\"G3756\"* effect|strong=\"G2673\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* the|strong=\"G1537\"* inheritance|strong=\"G2817\"* is|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1537\"* law|strong=\"G3551\"*, it|strong=\"G1161\"* is|strong=\"G3588\"* no|strong=\"G3765\"* more|strong=\"G3765\"* of|strong=\"G1537\"* promise|strong=\"G1860\"*; but|strong=\"G1161\"* God|strong=\"G2316\"* has|strong=\"G2316\"* granted|strong=\"G5483\"* it|strong=\"G1161\"* to|strong=\"G1161\"* Abraham by|strong=\"G1223\"* promise|strong=\"G1860\"*." + }, + { + "verseNum": 19, + "text": "Then|strong=\"G3767\"* why|strong=\"G5101\"* is|strong=\"G3588\"* there|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"*? It|strong=\"G5101\"* was|strong=\"G3588\"* added|strong=\"G4369\"* because|strong=\"G1223\"* of|strong=\"G1223\"* transgressions|strong=\"G3847\"*, until|strong=\"G1722\"* the|strong=\"G1722\"* offspring should|strong=\"G3588\"* come|strong=\"G2064\"* to|strong=\"G2064\"* whom|strong=\"G3739\"* the|strong=\"G1722\"* promise|strong=\"G1861\"* has|strong=\"G5101\"* been made|strong=\"G1861\"*. It|strong=\"G5101\"* was|strong=\"G3588\"* ordained|strong=\"G1299\"* through|strong=\"G1223\"* angels by|strong=\"G1223\"* the|strong=\"G1722\"* hand|strong=\"G5495\"* of|strong=\"G1223\"* a|strong=\"G1722\"* mediator|strong=\"G3316\"*." + }, + { + "verseNum": 20, + "text": "Now|strong=\"G1161\"* a|strong=\"G1510\"* mediator|strong=\"G3316\"* is|strong=\"G1510\"* not|strong=\"G3756\"* between|strong=\"G3316\"* one|strong=\"G1520\"*, but|strong=\"G1161\"* God|strong=\"G2316\"* is|strong=\"G1510\"* one|strong=\"G1520\"*." + }, + { + "verseNum": 21, + "text": "Is|strong=\"G1510\"* the|strong=\"G1537\"* law|strong=\"G3551\"* then|strong=\"G3767\"* against|strong=\"G2596\"* the|strong=\"G1537\"* promises|strong=\"G1860\"* of|strong=\"G1537\"* God|strong=\"G2316\"*? Certainly|strong=\"G3689\"* not|strong=\"G3361\"*! For|strong=\"G1063\"* if|strong=\"G1487\"* there|strong=\"G1063\"* had|strong=\"G2316\"* been|strong=\"G1510\"* a|strong=\"G1096\"* law|strong=\"G3551\"* given|strong=\"G1325\"* which|strong=\"G3588\"* could|strong=\"G1410\"* make|strong=\"G1325\"* alive|strong=\"G2227\"*, most|strong=\"G2316\"* certainly|strong=\"G3689\"* righteousness|strong=\"G1343\"* would|strong=\"G1096\"* have|strong=\"G1510\"* been|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G1537\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"G3588\"* the|strong=\"G3956\"* Scripture|strong=\"G1124\"* imprisoned|strong=\"G4788\"* all|strong=\"G3956\"* things|strong=\"G3956\"* under|strong=\"G5259\"* sin, that|strong=\"G2443\"* the|strong=\"G3956\"* promise|strong=\"G1860\"* by|strong=\"G5259\"* faith|strong=\"G4102\"* in|strong=\"G3956\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* might|strong=\"G1124\"* be|strong=\"G3956\"* given|strong=\"G1325\"* to|strong=\"G2443\"* those|strong=\"G3588\"* who|strong=\"G3588\"* believe|strong=\"G4100\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* before|strong=\"G4253\"* faith|strong=\"G4102\"* came|strong=\"G2064\"*, we|strong=\"G1161\"* were|strong=\"G3588\"* kept|strong=\"G5432\"* in|strong=\"G1519\"* custody|strong=\"G5432\"* under|strong=\"G5259\"* the|strong=\"G1519\"* law|strong=\"G3551\"*, confined for|strong=\"G1519\"* the|strong=\"G1519\"* faith|strong=\"G4102\"* which|strong=\"G3588\"* should|strong=\"G3195\"* afterwards|strong=\"G3195\"* be|strong=\"G3195\"* revealed." + }, + { + "verseNum": 24, + "text": "So|strong=\"G2443\"* that|strong=\"G2443\"* the|strong=\"G1519\"* law|strong=\"G3551\"* has|strong=\"G4102\"* become|strong=\"G1096\"* our|strong=\"G5547\"* tutor|strong=\"G3807\"* to|strong=\"G1519\"* bring|strong=\"G1519\"* us|strong=\"G1519\"* to|strong=\"G1519\"* Christ|strong=\"G5547\"*, that|strong=\"G2443\"* we|strong=\"G2249\"* might|strong=\"G1096\"* be|strong=\"G1096\"* justified|strong=\"G1344\"* by|strong=\"G1537\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* that|strong=\"G3588\"* faith|strong=\"G4102\"* has|strong=\"G4102\"* come|strong=\"G2064\"*, we|strong=\"G1161\"* are|strong=\"G1510\"* no|strong=\"G3765\"* longer|strong=\"G3765\"* under|strong=\"G5259\"* a|strong=\"G1510\"* tutor|strong=\"G3807\"*." + }, + { + "verseNum": 26, + "text": "For|strong=\"G1063\"* you|strong=\"G1722\"* are|strong=\"G1510\"* all|strong=\"G3956\"* children|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, through|strong=\"G1223\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"G1063\"* as|strong=\"G3745\"* many|strong=\"G3745\"* of|strong=\"G1519\"* you|strong=\"G3745\"* as|strong=\"G3745\"* were|strong=\"G3745\"* baptized into|strong=\"G1519\"* Christ|strong=\"G5547\"* have|strong=\"G3745\"* put|strong=\"G1746\"* on|strong=\"G1519\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 28, + "text": "There|strong=\"G2532\"* is|strong=\"G1510\"* neither|strong=\"G3761\"* Jew|strong=\"G2453\"* nor|strong=\"G3761\"* Greek|strong=\"G1672\"*, there|strong=\"G2532\"* is|strong=\"G1510\"* neither|strong=\"G3761\"* slave|strong=\"G1401\"* nor|strong=\"G3761\"* free|strong=\"G1658\"* man|strong=\"G3956\"*, there|strong=\"G2532\"* is|strong=\"G1510\"* neither|strong=\"G3761\"* male nor|strong=\"G3761\"* female|strong=\"G2338\"*; for|strong=\"G1063\"* you|strong=\"G5210\"* are|strong=\"G1510\"* all|strong=\"G3956\"* one|strong=\"G1520\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 29, + "text": "If|strong=\"G1487\"* you|strong=\"G5210\"* are|strong=\"G1510\"* Christ|strong=\"G5547\"*’s, then|strong=\"G1161\"* you|strong=\"G5210\"* are|strong=\"G1510\"* Abraham’s offspring and|strong=\"G1161\"* heirs|strong=\"G2818\"* according|strong=\"G2596\"* to|strong=\"G2596\"* promise|strong=\"G1860\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"G1161\"* I|strong=\"G1161\"* say|strong=\"G3004\"* that|strong=\"G3588\"* so|strong=\"G1161\"* long|strong=\"G5550\"* as|strong=\"G3745\"* the|strong=\"G3956\"* heir|strong=\"G2818\"* is|strong=\"G1510\"* a|strong=\"G1510\"* child|strong=\"G3516\"*, he|strong=\"G1161\"* is|strong=\"G1510\"* no|strong=\"G3762\"* different|strong=\"G1308\"* from|strong=\"G3588\"* a|strong=\"G1510\"* bondservant, though|strong=\"G1161\"* he|strong=\"G1161\"* is|strong=\"G1510\"* lord|strong=\"G2962\"* of|strong=\"G2962\"* all|strong=\"G3956\"*," + }, + { + "verseNum": 2, + "text": "but|strong=\"G2532\"* is|strong=\"G1510\"* under|strong=\"G5259\"* guardians|strong=\"G2012\"* and|strong=\"G2532\"* stewards|strong=\"G3623\"* until|strong=\"G2532\"* the|strong=\"G2532\"* day|strong=\"G3588\"* appointed|strong=\"G4287\"* by|strong=\"G5259\"* the|strong=\"G2532\"* father|strong=\"G3962\"*." + }, + { + "verseNum": 3, + "text": "So|strong=\"G3779\"* we|strong=\"G2249\"* also|strong=\"G2532\"*, when|strong=\"G3753\"* we|strong=\"G2249\"* were|strong=\"G1510\"* children|strong=\"G3516\"*, were|strong=\"G1510\"* held|strong=\"G1402\"* in|strong=\"G2532\"* bondage|strong=\"G1402\"* under|strong=\"G5259\"* the|strong=\"G2532\"* elemental|strong=\"G4747\"* principles|strong=\"G4747\"* of|strong=\"G5259\"* the|strong=\"G2532\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* when|strong=\"G3753\"* the|strong=\"G1537\"* fullness|strong=\"G4138\"* of|strong=\"G1537\"* the|strong=\"G1537\"* time|strong=\"G5550\"* came|strong=\"G2064\"*, God|strong=\"G2316\"* sent|strong=\"G1821\"* out|strong=\"G1537\"* his|strong=\"G5259\"* Son|strong=\"G5207\"*, born|strong=\"G1096\"* to|strong=\"G2064\"* a|strong=\"G1096\"* woman|strong=\"G1135\"*, born|strong=\"G1096\"* under|strong=\"G5259\"* the|strong=\"G1537\"* law|strong=\"G3551\"*," + }, + { + "verseNum": 5, + "text": "that|strong=\"G2443\"* he|strong=\"G3588\"* might redeem|strong=\"G1805\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* under|strong=\"G5259\"* the|strong=\"G3588\"* law|strong=\"G3551\"*, that|strong=\"G2443\"* we|strong=\"G2443\"* might receive the|strong=\"G3588\"* adoption|strong=\"G5206\"* as|strong=\"G5206\"* children|strong=\"G5206\"*." + }, + { + "verseNum": 6, + "text": "And|strong=\"G1161\"* because|strong=\"G3754\"* you|strong=\"G3754\"* are|strong=\"G1510\"* children|strong=\"G5207\"*, God|strong=\"G2316\"* sent|strong=\"G1821\"* out|strong=\"G2896\"* the|strong=\"G1519\"* Spirit|strong=\"G4151\"* of|strong=\"G5207\"* his|strong=\"G1519\"* Son|strong=\"G5207\"* into|strong=\"G1519\"* your|strong=\"G3588\"* hearts|strong=\"G2588\"*, crying|strong=\"G2896\"*, “Abba,+ 4:6 Abba is a Greek spelling for the Aramaic word for “Father” or “Daddy” used in a familiar, respectful, and loving way. * Father|strong=\"G3962\"*!”" + }, + { + "verseNum": 7, + "text": "So|strong=\"G2532\"* you|strong=\"G1487\"* are|strong=\"G1510\"* no|strong=\"G3765\"* longer|strong=\"G3765\"* a|strong=\"G2532\"* bondservant, but|strong=\"G1161\"* a|strong=\"G2532\"* son|strong=\"G5207\"*; and|strong=\"G2532\"* if|strong=\"G1487\"* a|strong=\"G2532\"* son|strong=\"G5207\"*, then|strong=\"G2532\"* an|strong=\"G2532\"* heir|strong=\"G2818\"* of|strong=\"G5207\"* God|strong=\"G2316\"* through|strong=\"G1223\"* Christ." + }, + { + "verseNum": 8, + "text": "However|strong=\"G3303\"* at|strong=\"G3756\"* that|strong=\"G3588\"* time|strong=\"G5119\"*, not|strong=\"G3756\"* knowing|strong=\"G1492\"* God|strong=\"G2316\"*, you|strong=\"G1510\"* were|strong=\"G1510\"* in|strong=\"G2316\"* bondage|strong=\"G1398\"* to|strong=\"G3756\"* those|strong=\"G3588\"* who|strong=\"G3588\"* by|strong=\"G3361\"* nature|strong=\"G5449\"* are|strong=\"G1510\"* not|strong=\"G3756\"* gods|strong=\"G2316\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* that|strong=\"G3739\"* you|strong=\"G3739\"* have|strong=\"G2309\"* come|strong=\"G2532\"* to|strong=\"G2532\"* know|strong=\"G1097\"* God|strong=\"G2316\"*, or|strong=\"G2532\"* rather|strong=\"G3123\"* to|strong=\"G2532\"* be|strong=\"G2532\"* known|strong=\"G1097\"* by|strong=\"G5259\"* God|strong=\"G2316\"*, why|strong=\"G4459\"* do|strong=\"G2532\"* you|strong=\"G3739\"* turn|strong=\"G1994\"* back|strong=\"G3825\"* again|strong=\"G3825\"* to|strong=\"G2532\"* the|strong=\"G2532\"* weak and|strong=\"G2532\"* miserable elemental|strong=\"G4747\"* principles|strong=\"G4747\"*, to|strong=\"G2532\"* which|strong=\"G3739\"* you|strong=\"G3739\"* desire|strong=\"G2309\"* to|strong=\"G2532\"* be|strong=\"G2532\"* in|strong=\"G1909\"* bondage|strong=\"G1398\"* all|strong=\"G2532\"* over|strong=\"G1909\"* again|strong=\"G3825\"*?" + }, + { + "verseNum": 10, + "text": "You|strong=\"G2532\"* observe|strong=\"G3906\"* days|strong=\"G2250\"*, months|strong=\"G3376\"*, seasons|strong=\"G2540\"*, and|strong=\"G2532\"* years|strong=\"G1763\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"G2872\"* am|strong=\"G5399\"* afraid|strong=\"G5399\"* for|strong=\"G1519\"* you|strong=\"G5210\"*, that|strong=\"G1519\"* I|strong=\"G2872\"* might|strong=\"G5210\"* have|strong=\"G5210\"* wasted my labor|strong=\"G2872\"* for|strong=\"G1519\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"G1473\"* beg|strong=\"G1189\"* you|strong=\"G5210\"*, brothers, become|strong=\"G1096\"* as|strong=\"G5613\"* I|strong=\"G1473\"* am|strong=\"G1473\"*, for|strong=\"G3754\"* I|strong=\"G1473\"* also|strong=\"G2504\"* have|strong=\"G1473\"* become|strong=\"G1096\"* as|strong=\"G5613\"* you|strong=\"G5210\"* are|strong=\"G3748\"*. You|strong=\"G5210\"* did|strong=\"G1096\"* me|strong=\"G1473\"* no|strong=\"G3762\"* wrong," + }, + { + "verseNum": 13, + "text": "but|strong=\"G1161\"* you|strong=\"G5210\"* know|strong=\"G1492\"* that|strong=\"G3754\"* because|strong=\"G3754\"* of|strong=\"G1223\"* weakness in|strong=\"G1223\"* the|strong=\"G1161\"* flesh|strong=\"G4561\"* I|strong=\"G1161\"* preached|strong=\"G2097\"* the|strong=\"G1161\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* to|strong=\"G1161\"* you|strong=\"G5210\"* the|strong=\"G1161\"* first|strong=\"G4386\"* time|strong=\"G4387\"*." + }, + { + "verseNum": 14, + "text": "That|strong=\"G3588\"* which|strong=\"G3588\"* was|strong=\"G3588\"* a|strong=\"G5613\"* temptation|strong=\"G3986\"* to|strong=\"G2532\"* you|strong=\"G5210\"* in|strong=\"G1722\"* my|strong=\"G1722\"* flesh|strong=\"G4561\"*, you|strong=\"G5210\"* didn’t|strong=\"G3588\"* despise|strong=\"G1848\"* nor|strong=\"G3761\"* reject|strong=\"G1609\"*; but|strong=\"G2532\"* you|strong=\"G5210\"* received|strong=\"G1209\"* me|strong=\"G1473\"* as|strong=\"G5613\"* an|strong=\"G2532\"* angel of|strong=\"G2316\"* God|strong=\"G2316\"*, even|strong=\"G2532\"* as|strong=\"G5613\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 15, + "text": "What|strong=\"G3588\"* was|strong=\"G3588\"* the|strong=\"G3588\"* blessing|strong=\"G3108\"* you|strong=\"G5210\"* enjoyed? For|strong=\"G1063\"* I|strong=\"G1473\"* testify|strong=\"G3140\"* to|strong=\"G1325\"* you|strong=\"G5210\"* that|strong=\"G3754\"*, if|strong=\"G1487\"* possible|strong=\"G1415\"*, you|strong=\"G5210\"* would|strong=\"G1325\"* have|strong=\"G1473\"* plucked|strong=\"G1846\"* out|strong=\"G1063\"* your|strong=\"G1487\"* eyes|strong=\"G3788\"* and|strong=\"G3767\"* given|strong=\"G1325\"* them|strong=\"G3588\"* to|strong=\"G1325\"* me|strong=\"G1325\"*." + }, + { + "verseNum": 16, + "text": "So|strong=\"G5620\"* then|strong=\"G5620\"*, have|strong=\"G5210\"* I|strong=\"G1096\"* become|strong=\"G1096\"* your|strong=\"G5210\"* enemy|strong=\"G2190\"* by|strong=\"G1096\"* telling you|strong=\"G5210\"* the|strong=\"G1096\"* truth?" + }, + { + "verseNum": 17, + "text": "They|strong=\"G2443\"* zealously seek|strong=\"G2206\"* you|strong=\"G5210\"* in|strong=\"G1438\"* no|strong=\"G3756\"* good|strong=\"G2573\"* way. No|strong=\"G3756\"*, they|strong=\"G2443\"* desire|strong=\"G2309\"* to|strong=\"G2443\"* alienate you|strong=\"G5210\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2443\"* seek|strong=\"G2206\"* them|strong=\"G1438\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* it|strong=\"G2532\"* is|strong=\"G3588\"* always|strong=\"G3842\"* good|strong=\"G2570\"* to|strong=\"G4314\"* be|strong=\"G2532\"* zealous in|strong=\"G1722\"* a|strong=\"G2532\"* good|strong=\"G2570\"* cause|strong=\"G3588\"*, and|strong=\"G2532\"* not|strong=\"G3361\"* only|strong=\"G3440\"* when|strong=\"G1161\"* I|strong=\"G1473\"* am|strong=\"G1473\"* present|strong=\"G3918\"* with|strong=\"G1722\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 19, + "text": "My|strong=\"G1722\"* little children|strong=\"G5043\"*, of|strong=\"G1722\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* am|strong=\"G1473\"* again|strong=\"G3825\"* in|strong=\"G1722\"* travail until|strong=\"G3360\"* Christ|strong=\"G5547\"* is|strong=\"G3739\"* formed|strong=\"G3445\"* in|strong=\"G1722\"* you|strong=\"G5210\"*—" + }, + { + "verseNum": 20, + "text": "but|strong=\"G1161\"* I|strong=\"G1473\"* could|strong=\"G3588\"* wish|strong=\"G2309\"* to|strong=\"G4314\"* be|strong=\"G2532\"* present|strong=\"G3918\"* with|strong=\"G1722\"* you|strong=\"G5210\"* now|strong=\"G1161\"*, and|strong=\"G2532\"* to|strong=\"G4314\"* change my|strong=\"G1722\"* tone|strong=\"G5456\"*, for|strong=\"G3754\"* I|strong=\"G1473\"* am|strong=\"G1473\"* perplexed about|strong=\"G1722\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 21, + "text": "Tell|strong=\"G3004\"* me|strong=\"G1473\"*, you|strong=\"G3004\"* that|strong=\"G3588\"* desire|strong=\"G2309\"* to|strong=\"G3004\"* be|strong=\"G1510\"* under|strong=\"G5259\"* the|strong=\"G3588\"* law|strong=\"G3551\"*, don’t|strong=\"G3588\"* you|strong=\"G3004\"* listen to|strong=\"G3004\"* the|strong=\"G3588\"* law|strong=\"G3551\"*?" + }, + { + "verseNum": 22, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"* that|strong=\"G3754\"* Abraham had|strong=\"G2192\"* two|strong=\"G1417\"* sons|strong=\"G5207\"*, one|strong=\"G1520\"* by|strong=\"G1537\"* the|strong=\"G2532\"* servant|strong=\"G3588\"*, and|strong=\"G2532\"* one|strong=\"G1520\"* by|strong=\"G1537\"* the|strong=\"G2532\"* free|strong=\"G1658\"* woman|strong=\"G1658\"*." + }, + { + "verseNum": 23, + "text": "However|strong=\"G1161\"*, the|strong=\"G1537\"* son by|strong=\"G1223\"* the|strong=\"G1537\"* servant|strong=\"G3588\"* was|strong=\"G3588\"* born|strong=\"G1080\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1537\"* flesh|strong=\"G4561\"*, but|strong=\"G1161\"* the|strong=\"G1537\"* son by|strong=\"G1223\"* the|strong=\"G1537\"* free|strong=\"G1658\"* woman|strong=\"G1658\"* was|strong=\"G3588\"* born|strong=\"G1080\"* through|strong=\"G1223\"* promise|strong=\"G1860\"*." + }, + { + "verseNum": 24, + "text": "These|strong=\"G3778\"* things|strong=\"G3778\"* contain an|strong=\"G1519\"* allegory, for|strong=\"G1063\"* these|strong=\"G3778\"* are|strong=\"G1510\"* two|strong=\"G1417\"* covenants|strong=\"G1242\"*. One|strong=\"G1520\"* is|strong=\"G1510\"* from|strong=\"G1519\"* Mount|strong=\"G3735\"* Sinai|strong=\"G4614\"*, bearing|strong=\"G1080\"* children|strong=\"G1080\"* to|strong=\"G1519\"* bondage|strong=\"G1397\"*, which|strong=\"G3748\"* is|strong=\"G1510\"* Hagar." + }, + { + "verseNum": 25, + "text": "For|strong=\"G1063\"* this|strong=\"G3588\"* Hagar is|strong=\"G1510\"* Mount|strong=\"G3735\"* Sinai|strong=\"G4614\"* in|strong=\"G1722\"* Arabia, and|strong=\"G1161\"* answers to|strong=\"G1722\"* the|strong=\"G1722\"* Jerusalem|strong=\"G2419\"* that|strong=\"G3588\"* exists now|strong=\"G1161\"*, for|strong=\"G1063\"* she|strong=\"G1161\"* is|strong=\"G1510\"* in|strong=\"G1722\"* bondage|strong=\"G1398\"* with|strong=\"G3326\"* her|strong=\"G3588\"* children|strong=\"G5043\"*." + }, + { + "verseNum": 26, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* Jerusalem|strong=\"G2419\"* that|strong=\"G3588\"* is|strong=\"G1510\"* above is|strong=\"G1510\"* free|strong=\"G1658\"*, which|strong=\"G3588\"* is|strong=\"G1510\"* the|strong=\"G1161\"* mother|strong=\"G3384\"* of|strong=\"G3384\"* us|strong=\"G2249\"* all|strong=\"G1161\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 28, + "text": "Now|strong=\"G1161\"* we|strong=\"G1161\"*, brothers, as|strong=\"G1161\"* Isaac|strong=\"G2464\"* was|strong=\"G1510\"*, are|strong=\"G1510\"* children|strong=\"G5043\"* of|strong=\"G5043\"* promise|strong=\"G1860\"*." + }, + { + "verseNum": 29, + "text": "But|strong=\"G2532\"* as|strong=\"G5618\"* then|strong=\"G2532\"*, he|strong=\"G2532\"* who|strong=\"G3588\"* was|strong=\"G3588\"* born|strong=\"G1080\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"* persecuted|strong=\"G1377\"* him|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G3588\"* born|strong=\"G1080\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"*, so|strong=\"G3779\"* also|strong=\"G2532\"* it|strong=\"G2532\"* is|strong=\"G3588\"* now|strong=\"G3568\"*." + }, + { + "verseNum": 30, + "text": "However, what|strong=\"G5101\"* does|strong=\"G5101\"* the|strong=\"G2532\"* Scripture|strong=\"G1124\"* say|strong=\"G3004\"*? “Throw|strong=\"G1544\"* out|strong=\"G1544\"* the|strong=\"G2532\"* servant|strong=\"G3588\"* and|strong=\"G2532\"* her|strong=\"G3588\"* son|strong=\"G5207\"*, for|strong=\"G1063\"* the|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G2532\"* servant|strong=\"G3588\"* will|strong=\"G5101\"* not|strong=\"G3756\"* inherit|strong=\"G2816\"* with|strong=\"G3326\"* the|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G2532\"* free|strong=\"G1658\"* woman|strong=\"G1658\"*.”+ 4:30 Genesis 21:10*" + }, + { + "verseNum": 31, + "text": "So|strong=\"G1352\"* then|strong=\"G1352\"*, brothers, we|strong=\"G1352\"* are|strong=\"G1510\"* not|strong=\"G3756\"* children|strong=\"G5043\"* of|strong=\"G5043\"* a|strong=\"G1510\"* servant|strong=\"G3588\"*, but|strong=\"G3588\"* of|strong=\"G5043\"* the|strong=\"G3588\"* free|strong=\"G1658\"* woman|strong=\"G1658\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Stand|strong=\"G4739\"* firm|strong=\"G4739\"* therefore|strong=\"G3767\"* in|strong=\"G2532\"* the|strong=\"G2532\"* liberty|strong=\"G1657\"* by|strong=\"G2532\"* which|strong=\"G3588\"* Christ|strong=\"G5547\"* has|strong=\"G5547\"* made|strong=\"G1659\"* us|strong=\"G2249\"* free|strong=\"G1659\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* be|strong=\"G2532\"* entangled|strong=\"G1758\"* again|strong=\"G3825\"* with|strong=\"G2532\"* a|strong=\"G2532\"* yoke|strong=\"G2218\"* of|strong=\"G2532\"* bondage|strong=\"G1397\"*." + }, + { + "verseNum": 2, + "text": "Behold|strong=\"G2396\"*, I|strong=\"G1473\"*, Paul|strong=\"G3972\"*, tell|strong=\"G3004\"* you|strong=\"G5210\"* that|strong=\"G3754\"* if|strong=\"G1437\"* you|strong=\"G5210\"* receive|strong=\"G4059\"* circumcision|strong=\"G4059\"*, Christ|strong=\"G5547\"* will|strong=\"G1473\"* profit|strong=\"G5623\"* you|strong=\"G5210\"* nothing|strong=\"G3762\"*." + }, + { + "verseNum": 3, + "text": "Yes|strong=\"G1161\"*, I|strong=\"G1161\"* testify|strong=\"G3143\"* again|strong=\"G3825\"* to|strong=\"G1161\"* every|strong=\"G3956\"* man|strong=\"G3956\"* who|strong=\"G3588\"* receives|strong=\"G4059\"* circumcision|strong=\"G4059\"* that|strong=\"G3754\"* he|strong=\"G1161\"* is|strong=\"G1510\"* a|strong=\"G1510\"* debtor|strong=\"G3781\"* to|strong=\"G1161\"* do|strong=\"G4160\"* the|strong=\"G3956\"* whole|strong=\"G3650\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"G1722\"* are|strong=\"G3588\"* alienated from|strong=\"G3588\"* Christ|strong=\"G5547\"*, you|strong=\"G1722\"* who|strong=\"G3588\"* desire to|strong=\"G1722\"* be|strong=\"G3588\"* justified|strong=\"G1344\"* by|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"*. You|strong=\"G1722\"* have|strong=\"G3748\"* fallen|strong=\"G1601\"* away|strong=\"G2673\"* from|strong=\"G3588\"* grace|strong=\"G5485\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* through|strong=\"G1537\"* the|strong=\"G1537\"* Spirit|strong=\"G4151\"*, by|strong=\"G1537\"* faith|strong=\"G4102\"* wait|strong=\"G4151\"* for|strong=\"G1063\"* the|strong=\"G1537\"* hope|strong=\"G1680\"* of|strong=\"G1537\"* righteousness|strong=\"G1343\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1063\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* neither|strong=\"G3777\"* circumcision|strong=\"G4061\"* nor|strong=\"G3777\"* uncircumcision amounts to|strong=\"G1722\"* anything|strong=\"G5100\"*, but|strong=\"G1063\"* faith|strong=\"G4102\"* working|strong=\"G1754\"* through|strong=\"G1223\"* love." + }, + { + "verseNum": 7, + "text": "You|strong=\"G5210\"* were|strong=\"G5101\"* running|strong=\"G5143\"* well|strong=\"G2573\"*! Who|strong=\"G5101\"* interfered with|strong=\"G3361\"* you|strong=\"G5210\"* that|strong=\"G3361\"* you|strong=\"G5210\"* should|strong=\"G3982\"* not|strong=\"G3361\"* obey|strong=\"G3982\"* the|strong=\"G3361\"* truth?" + }, + { + "verseNum": 8, + "text": "This|strong=\"G3588\"* persuasion|strong=\"G3988\"* is|strong=\"G3588\"* not|strong=\"G3756\"* from|strong=\"G1537\"* him|strong=\"G3588\"* who|strong=\"G3588\"* calls|strong=\"G2564\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 9, + "text": "A|strong=\"G3588\"* little|strong=\"G3398\"* yeast|strong=\"G2219\"* grows through the|strong=\"G3588\"* whole|strong=\"G3650\"* lump|strong=\"G5445\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"G1473\"* have|strong=\"G1473\"* confidence|strong=\"G3982\"* toward|strong=\"G1519\"* you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* that|strong=\"G3754\"* you|strong=\"G5210\"* will|strong=\"G1510\"* think|strong=\"G5426\"* no|strong=\"G3762\"* other|strong=\"G1161\"* way|strong=\"G1722\"*. But|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3588\"* troubles you|strong=\"G5210\"* will|strong=\"G1510\"* bear his|strong=\"G1519\"* judgment|strong=\"G2917\"*, whoever|strong=\"G3748\"* he|strong=\"G1161\"* is|strong=\"G1510\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* I|strong=\"G1473\"*, brothers, if|strong=\"G1487\"* I|strong=\"G1473\"* still|strong=\"G2089\"* preach|strong=\"G2784\"* circumcision|strong=\"G4061\"*, why|strong=\"G5101\"* am|strong=\"G1473\"* I|strong=\"G1473\"* still|strong=\"G2089\"* persecuted|strong=\"G1377\"*? Then|strong=\"G1161\"* the|strong=\"G1161\"* stumbling|strong=\"G4625\"* block|strong=\"G4625\"* of|strong=\"G3588\"* the|strong=\"G1161\"* cross|strong=\"G4716\"* has|strong=\"G5101\"* been removed|strong=\"G2673\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"G2532\"* wish|strong=\"G3785\"* that|strong=\"G3588\"* those|strong=\"G3588\"* who|strong=\"G3588\"* disturb you|strong=\"G5210\"* would|strong=\"G2532\"* cut|strong=\"G2532\"* themselves off." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"*, brothers, were|strong=\"G3588\"* called|strong=\"G2564\"* for|strong=\"G1063\"* freedom|strong=\"G1657\"*. Only|strong=\"G3440\"* don’t|strong=\"G3588\"* use|strong=\"G3588\"* your|strong=\"G1223\"* freedom|strong=\"G1657\"* as|strong=\"G1519\"* an|strong=\"G1519\"* opportunity for|strong=\"G1063\"* the|strong=\"G1519\"* flesh|strong=\"G4561\"*, but|strong=\"G3361\"* through|strong=\"G1223\"* love be|strong=\"G3361\"* servants to|strong=\"G1519\"* one|strong=\"G3588\"* another|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* whole|strong=\"G3956\"* law|strong=\"G3551\"* is|strong=\"G3588\"* fulfilled|strong=\"G4137\"* in|strong=\"G1722\"* one|strong=\"G1520\"* word|strong=\"G3056\"*, in|strong=\"G1722\"* this|strong=\"G3588\"*: “You|strong=\"G4771\"* shall|strong=\"G3956\"* love your|strong=\"G3956\"* neighbor|strong=\"G4139\"* as|strong=\"G5613\"* yourself|strong=\"G4572\"*.”+ 5:14 Leviticus 19:18*" + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* you|strong=\"G1487\"* bite|strong=\"G1143\"* and|strong=\"G2532\"* devour|strong=\"G2719\"* one|strong=\"G3361\"* another|strong=\"G1161\"*, be|strong=\"G2532\"* careful that|strong=\"G2532\"* you|strong=\"G1487\"* don’t consume|strong=\"G2719\"* one|strong=\"G3361\"* another|strong=\"G1161\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* I|strong=\"G2532\"* say|strong=\"G3004\"*, walk|strong=\"G4043\"* by|strong=\"G2532\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"*, and|strong=\"G2532\"* you|strong=\"G3004\"* won’t fulfill the|strong=\"G2532\"* lust|strong=\"G1939\"* of|strong=\"G4151\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* the|strong=\"G1161\"* flesh|strong=\"G4561\"* lusts against|strong=\"G2596\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"*, and|strong=\"G1161\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"* against|strong=\"G2596\"* the|strong=\"G1161\"* flesh|strong=\"G4561\"*; and|strong=\"G1161\"* these|strong=\"G3778\"* are|strong=\"G3588\"* contrary|strong=\"G2596\"* to|strong=\"G2443\"* one|strong=\"G3739\"* another|strong=\"G3739\"*, that|strong=\"G2443\"* you|strong=\"G3739\"* may|strong=\"G2443\"* not|strong=\"G3361\"* do|strong=\"G4160\"* the|strong=\"G1161\"* things|strong=\"G3778\"* that|strong=\"G2443\"* you|strong=\"G3739\"* desire|strong=\"G2309\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* you|strong=\"G1487\"* are|strong=\"G1510\"* led by|strong=\"G5259\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"*, you|strong=\"G1487\"* are|strong=\"G1510\"* not|strong=\"G3756\"* under|strong=\"G5259\"* the|strong=\"G1161\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 19, + "text": "Now|strong=\"G1161\"* the|strong=\"G1161\"* deeds|strong=\"G2041\"* of|strong=\"G2041\"* the|strong=\"G1161\"* flesh|strong=\"G4561\"* are|strong=\"G1510\"* obvious|strong=\"G5318\"*, which|strong=\"G3588\"* are|strong=\"G1510\"*: adultery, sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*, uncleanness, lustfulness," + }, + { + "verseNum": 20, + "text": "idolatry|strong=\"G1495\"*, sorcery|strong=\"G5331\"*, hatred|strong=\"G2189\"*, strife|strong=\"G2054\"*, jealousies, outbursts|strong=\"G2372\"* of|strong=\"G2372\"* anger|strong=\"G2372\"*, rivalries, divisions|strong=\"G1370\"*, heresies," + }, + { + "verseNum": 21, + "text": "envy|strong=\"G5355\"*, murders, drunkenness|strong=\"G3178\"*, orgies, and|strong=\"G2532\"* things|strong=\"G3778\"* like|strong=\"G3664\"* these|strong=\"G3778\"*; of|strong=\"G2316\"* which|strong=\"G3739\"* I|strong=\"G3739\"* forewarn|strong=\"G4302\"* you|strong=\"G5210\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* I|strong=\"G3739\"* also|strong=\"G2532\"* forewarned you|strong=\"G5210\"*, that|strong=\"G3754\"* those|strong=\"G3588\"* who|strong=\"G3739\"* practice|strong=\"G4238\"* such|strong=\"G5108\"* things|strong=\"G3778\"* will|strong=\"G2316\"* not|strong=\"G3756\"* inherit|strong=\"G2816\"* God|strong=\"G2316\"*’s Kingdom." + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* fruit|strong=\"G2590\"* of|strong=\"G4151\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"* is|strong=\"G1510\"* love, joy|strong=\"G5479\"*, peace|strong=\"G1515\"*, patience|strong=\"G3115\"*, kindness|strong=\"G5544\"*, goodness|strong=\"G5544\"*, faith|strong=\"G4102\"*,+ 5:22 or, faithfulness*" + }, + { + "verseNum": 23, + "text": "gentleness|strong=\"G4240\"*, and|strong=\"G3551\"* self-control|strong=\"G1466\"*. Against|strong=\"G2596\"* such|strong=\"G5108\"* things|strong=\"G3588\"* there|strong=\"G1510\"* is|strong=\"G1510\"* no|strong=\"G3756\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 24, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* belong to|strong=\"G2532\"* Christ|strong=\"G5547\"* have|strong=\"G2532\"* crucified|strong=\"G4717\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"* with|strong=\"G4862\"* its passions|strong=\"G3804\"* and|strong=\"G2532\"* lusts|strong=\"G1939\"*." + }, + { + "verseNum": 25, + "text": "If|strong=\"G1487\"* we|strong=\"G2532\"* live|strong=\"G2198\"* by|strong=\"G2532\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"*, let|strong=\"G2532\"*’s also|strong=\"G2532\"* walk|strong=\"G4748\"* by|strong=\"G2532\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 26, + "text": "Let|strong=\"G1096\"*’s not|strong=\"G3361\"* become|strong=\"G1096\"* conceited|strong=\"G2755\"*, provoking|strong=\"G4292\"* one|strong=\"G3361\"* another, and|strong=\"G1096\"* envying|strong=\"G5354\"* one|strong=\"G3361\"* another." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Brothers, even|strong=\"G2532\"* if|strong=\"G1437\"* a|strong=\"G2532\"* man|strong=\"G5100\"* is|strong=\"G3588\"* caught|strong=\"G4301\"* in|strong=\"G1722\"* some|strong=\"G5100\"* fault|strong=\"G3900\"*, you|strong=\"G5210\"* who|strong=\"G3588\"* are|strong=\"G3588\"* spiritual|strong=\"G4152\"* must|strong=\"G5100\"* restore|strong=\"G2675\"* such|strong=\"G5108\"* a|strong=\"G2532\"* one|strong=\"G5100\"* in|strong=\"G1722\"* a|strong=\"G2532\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* gentleness|strong=\"G4240\"*, looking|strong=\"G2532\"* to|strong=\"G2532\"* yourself|strong=\"G4572\"* so|strong=\"G2532\"* that|strong=\"G3588\"* you|strong=\"G5210\"* also|strong=\"G2532\"* aren’t|strong=\"G3588\"* tempted|strong=\"G3985\"*." + }, + { + "verseNum": 2, + "text": "Bear|strong=\"G2532\"* one|strong=\"G3588\"* another|strong=\"G3588\"*’s burdens, and|strong=\"G2532\"* so|strong=\"G3779\"* fulfill the|strong=\"G2532\"* law|strong=\"G3551\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* a|strong=\"G1510\"* man|strong=\"G5100\"* thinks|strong=\"G1380\"* himself|strong=\"G1438\"* to|strong=\"G5100\"* be|strong=\"G1510\"* something|strong=\"G5100\"* when|strong=\"G1510\"* he|strong=\"G1063\"* is|strong=\"G1510\"* nothing|strong=\"G3367\"*, he|strong=\"G1063\"* deceives|strong=\"G5422\"* himself|strong=\"G1438\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* let|strong=\"G1161\"* each|strong=\"G1538\"* man|strong=\"G1538\"* examine|strong=\"G1381\"* his|strong=\"G1438\"* own|strong=\"G1438\"* work|strong=\"G2041\"*, and|strong=\"G2532\"* then|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G2532\"* have|strong=\"G2192\"* reason|strong=\"G2745\"* to|strong=\"G1519\"* boast|strong=\"G2745\"* in|strong=\"G1519\"* himself|strong=\"G1438\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* in|strong=\"G1519\"* someone|strong=\"G2087\"* else|strong=\"G2087\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* each|strong=\"G1538\"* man|strong=\"G1538\"* will|strong=\"G1538\"* bear his|strong=\"G2398\"* own|strong=\"G2398\"* burden|strong=\"G5413\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* let|strong=\"G1161\"* him|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G3588\"* taught|strong=\"G2727\"* in|strong=\"G1722\"* the|strong=\"G1722\"* word|strong=\"G3056\"* share|strong=\"G2841\"* all|strong=\"G3956\"* good|strong=\"G3956\"* things|strong=\"G3956\"* with|strong=\"G1722\"* him|strong=\"G3588\"* who|strong=\"G3588\"* teaches|strong=\"G2727\"*." + }, + { + "verseNum": 7, + "text": "Don’t be|strong=\"G2532\"* deceived|strong=\"G4105\"*. God|strong=\"G2316\"* is|strong=\"G2316\"* not|strong=\"G3756\"* mocked|strong=\"G3456\"*, for|strong=\"G1063\"* whatever|strong=\"G3739\"* a|strong=\"G2532\"* man|strong=\"G3778\"* sows|strong=\"G4687\"*, that|strong=\"G3739\"* he|strong=\"G2532\"* will|strong=\"G2316\"* also|strong=\"G2532\"* reap|strong=\"G2325\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G3754\"* he|strong=\"G1161\"* who|strong=\"G3588\"* sows|strong=\"G4687\"* to|strong=\"G1519\"* his|strong=\"G1438\"* own|strong=\"G1438\"* flesh|strong=\"G4561\"* will|strong=\"G3748\"* from|strong=\"G1537\"* the|strong=\"G1519\"* flesh|strong=\"G4561\"* reap|strong=\"G2325\"* corruption|strong=\"G5356\"*. But|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3588\"* sows|strong=\"G4687\"* to|strong=\"G1519\"* the|strong=\"G1519\"* Spirit|strong=\"G4151\"* will|strong=\"G3748\"* from|strong=\"G1537\"* the|strong=\"G1519\"* Spirit|strong=\"G4151\"* reap|strong=\"G2325\"* eternal life|strong=\"G2222\"*." + }, + { + "verseNum": 9, + "text": "Let|strong=\"G1161\"*’s not|strong=\"G3361\"* be|strong=\"G3361\"* weary|strong=\"G1573\"* in|strong=\"G1161\"* doing|strong=\"G4160\"* good|strong=\"G2570\"*, for|strong=\"G1063\"* we|strong=\"G1063\"* will|strong=\"G4160\"* reap|strong=\"G2325\"* in|strong=\"G1161\"* due|strong=\"G2398\"* season|strong=\"G2540\"* if|strong=\"G1161\"* we|strong=\"G1063\"* don’t|strong=\"G3588\"* give|strong=\"G4160\"* up|strong=\"G3361\"*." + }, + { + "verseNum": 10, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"*, as|strong=\"G5613\"* we|strong=\"G1161\"* have|strong=\"G2192\"* opportunity|strong=\"G2540\"*, let|strong=\"G1161\"*’s|strong=\"G2192\"* do|strong=\"G2192\"* what|strong=\"G3588\"* is|strong=\"G3588\"* good|strong=\"G3956\"* toward|strong=\"G4314\"* all|strong=\"G3956\"* men|strong=\"G3956\"*, and|strong=\"G1161\"* especially|strong=\"G3122\"* toward|strong=\"G4314\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* of|strong=\"G3956\"* the|strong=\"G3956\"* household|strong=\"G3609\"* of|strong=\"G3956\"* the|strong=\"G3956\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 11, + "text": "See|strong=\"G3708\"* with|strong=\"G5495\"* what|strong=\"G3588\"* large|strong=\"G4080\"* letters|strong=\"G1121\"* I|strong=\"G1125\"* write|strong=\"G1125\"* to|strong=\"G3708\"* you|strong=\"G5210\"* with|strong=\"G5495\"* my|strong=\"G1699\"* own|strong=\"G1699\"* hand|strong=\"G5495\"*." + }, + { + "verseNum": 12, + "text": "As|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* desire|strong=\"G2309\"* to|strong=\"G2443\"* make|strong=\"G2309\"* a|strong=\"G1722\"* good|strong=\"G3588\"* impression in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"* compel you|strong=\"G5210\"* to|strong=\"G2443\"* be|strong=\"G3361\"* circumcised|strong=\"G4059\"*, just|strong=\"G3440\"* so|strong=\"G2443\"* they|strong=\"G3588\"* may|strong=\"G2443\"* not|strong=\"G3361\"* be|strong=\"G3361\"* persecuted|strong=\"G1377\"* for|strong=\"G1722\"* the|strong=\"G1722\"* cross|strong=\"G4716\"* of|strong=\"G1722\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* even|strong=\"G3761\"* they|strong=\"G3588\"* who|strong=\"G3588\"* receive|strong=\"G4059\"* circumcision|strong=\"G4059\"* don’t|strong=\"G3588\"* keep|strong=\"G5442\"* the|strong=\"G1722\"* law|strong=\"G3551\"* themselves|strong=\"G1722\"*, but|strong=\"G1063\"* they|strong=\"G3588\"* desire|strong=\"G2309\"* to|strong=\"G2443\"* have|strong=\"G2309\"* you|strong=\"G5210\"* circumcised|strong=\"G4059\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* they|strong=\"G3588\"* may|strong=\"G2443\"* boast|strong=\"G2744\"* in|strong=\"G1722\"* your|strong=\"G5212\"* flesh|strong=\"G4561\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* far|strong=\"G3588\"* be|strong=\"G1096\"* it|strong=\"G1161\"* from|strong=\"G3588\"* me|strong=\"G1473\"* to|strong=\"G1722\"* boast|strong=\"G2744\"* except|strong=\"G1487\"* in|strong=\"G1722\"* the|strong=\"G1722\"* cross|strong=\"G4716\"* of|strong=\"G1223\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, through|strong=\"G1223\"* which|strong=\"G3739\"* the|strong=\"G1722\"* world|strong=\"G2889\"* has|strong=\"G2962\"* been|strong=\"G1096\"* crucified|strong=\"G4717\"* to|strong=\"G1722\"* me|strong=\"G1473\"*, and|strong=\"G1161\"* I|strong=\"G1473\"* to|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* in|strong=\"G1063\"* Christ Jesus|strong=\"G1510\"* neither|strong=\"G3777\"* is|strong=\"G1510\"* circumcision|strong=\"G4061\"* anything|strong=\"G5100\"*, nor|strong=\"G3777\"* uncircumcision, but|strong=\"G1063\"* a|strong=\"G1510\"* new|strong=\"G2537\"* creation|strong=\"G2937\"*." + }, + { + "verseNum": 16, + "text": "As|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* walk|strong=\"G4748\"* by|strong=\"G1909\"* this|strong=\"G3778\"* rule|strong=\"G2583\"*, peace|strong=\"G1515\"* and|strong=\"G2532\"* mercy|strong=\"G1656\"* be|strong=\"G2532\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* on|strong=\"G1909\"* God|strong=\"G2316\"*’s Israel|strong=\"G2474\"*." + }, + { + "verseNum": 17, + "text": "From|strong=\"G3588\"* now|strong=\"G1722\"* on|strong=\"G1722\"*, let|strong=\"G3930\"* no|strong=\"G3367\"* one|strong=\"G3367\"* cause|strong=\"G3930\"* me|strong=\"G1473\"* any|strong=\"G3367\"* trouble|strong=\"G2873\"*, for|strong=\"G1063\"* I|strong=\"G1473\"* bear the|strong=\"G1722\"* marks|strong=\"G4742\"* of|strong=\"G4983\"* the|strong=\"G1722\"* Lord|strong=\"G3588\"* Jesus|strong=\"G2424\"* branded on|strong=\"G1722\"* my|strong=\"G1722\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"G3588\"* grace|strong=\"G5485\"* of|strong=\"G4151\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* be|strong=\"G3588\"* with|strong=\"G3326\"* your|strong=\"G2962\"* spirit|strong=\"G4151\"*, brothers. Amen." + } + ] + } + ] + }, + { + "name": "Ephesians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, an|strong=\"G2532\"* apostle of|strong=\"G1223\"* Christ|strong=\"G5547\"*+ 1:1 “Christ” means “Anointed One”.* Jesus|strong=\"G2424\"* through|strong=\"G1223\"* the|strong=\"G1722\"* will|strong=\"G2307\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, to|strong=\"G2532\"* the|strong=\"G1722\"* saints who|strong=\"G3588\"* are|strong=\"G1510\"* at|strong=\"G1722\"* Ephesus|strong=\"G2181\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* faithful|strong=\"G4103\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*:" + }, + { + "verseNum": 2, + "text": "Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 3, + "text": "Blessed|strong=\"G2127\"* be|strong=\"G2532\"* the|strong=\"G1722\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"* of|strong=\"G2316\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, who|strong=\"G3588\"* has|strong=\"G2316\"* blessed|strong=\"G2127\"* us|strong=\"G2249\"* with|strong=\"G1722\"* every|strong=\"G3956\"* spiritual|strong=\"G4152\"* blessing|strong=\"G2129\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavenly|strong=\"G2032\"* places in|strong=\"G1722\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 4, + "text": "even|strong=\"G2532\"* as|strong=\"G2531\"* he|strong=\"G2532\"* chose|strong=\"G1586\"* us|strong=\"G2249\"* in|strong=\"G1722\"* him|strong=\"G2532\"* before|strong=\"G4253\"* the|strong=\"G1722\"* foundation|strong=\"G2602\"* of|strong=\"G2532\"* the|strong=\"G1722\"* world|strong=\"G2889\"*, that|strong=\"G2532\"* we|strong=\"G2249\"* would|strong=\"G2532\"* be|strong=\"G1510\"* holy and|strong=\"G2532\"* without|strong=\"G2532\"* defect before|strong=\"G4253\"* him|strong=\"G2532\"* in|strong=\"G1722\"* love," + }, + { + "verseNum": 5, + "text": "having predestined|strong=\"G4309\"* us|strong=\"G1519\"* for|strong=\"G1519\"* adoption|strong=\"G5206\"* as|strong=\"G1519\"* children|strong=\"G5206\"* through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* to|strong=\"G1519\"* himself|strong=\"G1519\"*, according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G1519\"* good|strong=\"G2107\"* pleasure|strong=\"G2107\"* of|strong=\"G1223\"* his|strong=\"G1223\"* desire|strong=\"G2107\"*," + }, + { + "verseNum": 6, + "text": "to|strong=\"G1519\"* the|strong=\"G1722\"* praise|strong=\"G1868\"* of|strong=\"G5485\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G5485\"* his|strong=\"G1519\"* grace|strong=\"G5485\"*, by|strong=\"G1722\"* which|strong=\"G3739\"* he|strong=\"G3739\"* freely|strong=\"G5487\"* gave|strong=\"G3588\"* us|strong=\"G1519\"* favor|strong=\"G5485\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Beloved." + }, + { + "verseNum": 7, + "text": "In|strong=\"G1722\"* him|strong=\"G3588\"* we|strong=\"G3739\"* have|strong=\"G2192\"* our|strong=\"G1223\"* redemption through|strong=\"G1223\"* his|strong=\"G1223\"* blood, the|strong=\"G1722\"* forgiveness of|strong=\"G1223\"* our|strong=\"G1223\"* trespasses|strong=\"G3900\"*, according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* riches|strong=\"G4149\"* of|strong=\"G1223\"* his|strong=\"G1223\"* grace|strong=\"G5485\"*" + }, + { + "verseNum": 8, + "text": "which|strong=\"G3739\"* he|strong=\"G2532\"* made|strong=\"G3956\"* to|strong=\"G1519\"* abound|strong=\"G4052\"* toward|strong=\"G1519\"* us|strong=\"G1519\"* in|strong=\"G1722\"* all|strong=\"G3956\"* wisdom|strong=\"G4678\"* and|strong=\"G2532\"* prudence|strong=\"G5428\"*," + }, + { + "verseNum": 9, + "text": "making known|strong=\"G1107\"* to|strong=\"G2596\"* us|strong=\"G2249\"* the|strong=\"G1722\"* mystery|strong=\"G3466\"* of|strong=\"G2307\"* his|strong=\"G1722\"* will|strong=\"G2307\"*, according|strong=\"G2596\"* to|strong=\"G2596\"* his|strong=\"G1722\"* good|strong=\"G2107\"* pleasure|strong=\"G2107\"* which|strong=\"G3739\"* he|strong=\"G3739\"* purposed|strong=\"G4388\"* in|strong=\"G1722\"* him|strong=\"G3588\"*" + }, + { + "verseNum": 10, + "text": "to|strong=\"G1519\"* an|strong=\"G2532\"* administration|strong=\"G3622\"* of|strong=\"G2532\"* the|strong=\"G1722\"* fullness|strong=\"G4138\"* of|strong=\"G2532\"* the|strong=\"G1722\"* times|strong=\"G2540\"*, to|strong=\"G1519\"* sum up|strong=\"G1519\"* all|strong=\"G3956\"* things|strong=\"G3956\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*, the|strong=\"G1722\"* things|strong=\"G3956\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavens|strong=\"G3772\"* and|strong=\"G2532\"* the|strong=\"G1722\"* things|strong=\"G3956\"* on|strong=\"G1909\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "We|strong=\"G3739\"* were|strong=\"G3588\"* also|strong=\"G2532\"* assigned an|strong=\"G2532\"* inheritance|strong=\"G2820\"* in|strong=\"G1722\"* him|strong=\"G3588\"*, having|strong=\"G2532\"* been|strong=\"G2532\"* foreordained according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* purpose|strong=\"G4286\"* of|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3739\"* does all|strong=\"G3956\"* things|strong=\"G3956\"* after|strong=\"G2596\"* the|strong=\"G1722\"* counsel|strong=\"G1012\"* of|strong=\"G2532\"* his|strong=\"G3956\"* will|strong=\"G2307\"*," + }, + { + "verseNum": 12, + "text": "to|strong=\"G1519\"* the|strong=\"G1722\"* end|strong=\"G1519\"* that|strong=\"G3588\"* we|strong=\"G2249\"* should|strong=\"G3588\"* be|strong=\"G1510\"* to|strong=\"G1519\"* the|strong=\"G1722\"* praise|strong=\"G1868\"* of|strong=\"G1391\"* his|strong=\"G1519\"* glory|strong=\"G1391\"*, we|strong=\"G2249\"* who|strong=\"G3588\"* had|strong=\"G1510\"* before|strong=\"G1722\"* hoped in|strong=\"G1722\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 13, + "text": "In|strong=\"G1722\"* him|strong=\"G3588\"* you|strong=\"G5210\"* also|strong=\"G2532\"*, having|strong=\"G2532\"* heard the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* truth, the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G3056\"* of|strong=\"G3056\"* your|strong=\"G2532\"* salvation|strong=\"G4991\"*—in|strong=\"G1722\"* whom|strong=\"G3739\"*, having|strong=\"G2532\"* also|strong=\"G2532\"* believed|strong=\"G4100\"*, you|strong=\"G5210\"* were|strong=\"G3588\"* sealed|strong=\"G4972\"* with|strong=\"G1722\"* the|strong=\"G1722\"* promised|strong=\"G1860\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*," + }, + { + "verseNum": 14, + "text": "who|strong=\"G3739\"* is|strong=\"G1510\"* a|strong=\"G1519\"* pledge of|strong=\"G1391\"* our|strong=\"G1519\"* inheritance|strong=\"G2817\"*, to|strong=\"G1519\"* the|strong=\"G1519\"* redemption of|strong=\"G1391\"* God|strong=\"G1519\"*’s own possession|strong=\"G4047\"*, to|strong=\"G1519\"* the|strong=\"G1519\"* praise|strong=\"G1868\"* of|strong=\"G1391\"* his|strong=\"G1519\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1519\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* I|strong=\"G2532\"* also|strong=\"G2532\"*, having|strong=\"G2532\"* heard of|strong=\"G1223\"* the|strong=\"G1722\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* which|strong=\"G3588\"* is|strong=\"G3588\"* among|strong=\"G1722\"* you|strong=\"G5210\"* and|strong=\"G2532\"* the|strong=\"G1722\"* love which|strong=\"G3588\"* you|strong=\"G5210\"* have|strong=\"G2532\"* toward|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G1722\"* saints," + }, + { + "verseNum": 16, + "text": "don’t|strong=\"G3588\"* cease|strong=\"G3973\"* to|strong=\"G1909\"* give|strong=\"G2168\"* thanks|strong=\"G2168\"* for|strong=\"G5228\"* you|strong=\"G5210\"*, making|strong=\"G4160\"* mention|strong=\"G3417\"* of|strong=\"G1909\"* you|strong=\"G5210\"* in|strong=\"G1909\"* my|strong=\"G1473\"* prayers|strong=\"G4335\"*," + }, + { + "verseNum": 17, + "text": "that|strong=\"G2443\"* the|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G4151\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, the|strong=\"G1722\"* Father|strong=\"G3962\"* of|strong=\"G4151\"* glory|strong=\"G1391\"*, may|strong=\"G2532\"* give|strong=\"G1325\"* to|strong=\"G2443\"* you|strong=\"G5210\"* a|strong=\"G2532\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* wisdom|strong=\"G4678\"* and|strong=\"G2532\"* revelation in|strong=\"G1722\"* the|strong=\"G1722\"* knowledge|strong=\"G1922\"* of|strong=\"G4151\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 18, + "text": "having|strong=\"G1492\"* the|strong=\"G1722\"* eyes|strong=\"G3788\"* of|strong=\"G1391\"* your|strong=\"G1722\"* hearts|strong=\"G2588\"*+ 1:18 TR reads “understanding” instead of “hearts”* enlightened|strong=\"G5461\"*, that|strong=\"G3588\"* you|strong=\"G5210\"* may|strong=\"G5210\"* know|strong=\"G1492\"* what|strong=\"G5101\"* is|strong=\"G1510\"* the|strong=\"G1722\"* hope|strong=\"G1680\"* of|strong=\"G1391\"* his|strong=\"G1519\"* calling|strong=\"G2821\"*, and|strong=\"G1391\"* what|strong=\"G5101\"* are|strong=\"G1510\"* the|strong=\"G1722\"* riches|strong=\"G4149\"* of|strong=\"G1391\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G1391\"* his|strong=\"G1519\"* inheritance|strong=\"G2817\"* in|strong=\"G1722\"* the|strong=\"G1722\"* saints," + }, + { + "verseNum": 19, + "text": "and|strong=\"G2532\"* what|strong=\"G5101\"* is|strong=\"G3588\"* the|strong=\"G2532\"* exceeding|strong=\"G5235\"* greatness|strong=\"G3174\"* of|strong=\"G2532\"* his|strong=\"G1519\"* power|strong=\"G1411\"* toward|strong=\"G1519\"* us|strong=\"G1519\"* who|strong=\"G5101\"* believe|strong=\"G4100\"*, according|strong=\"G2596\"* to|strong=\"G1519\"* that|strong=\"G3588\"* working|strong=\"G1753\"* of|strong=\"G2532\"* the|strong=\"G2532\"* strength|strong=\"G2479\"* of|strong=\"G2532\"* his|strong=\"G1519\"* might|strong=\"G2479\"*" + }, + { + "verseNum": 20, + "text": "which|strong=\"G3739\"* he|strong=\"G2532\"* worked|strong=\"G1754\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* when|strong=\"G2532\"* he|strong=\"G2532\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* and|strong=\"G2532\"* made him|strong=\"G3588\"* to|strong=\"G2532\"* sit|strong=\"G2523\"* at|strong=\"G1722\"* his|strong=\"G1722\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavenly|strong=\"G2032\"* places," + }, + { + "verseNum": 21, + "text": "far|strong=\"G5231\"* above|strong=\"G5231\"* all|strong=\"G3956\"* rule, authority|strong=\"G1849\"*, power|strong=\"G1411\"*, dominion|strong=\"G2963\"*, and|strong=\"G2532\"* every|strong=\"G3956\"* name|strong=\"G3686\"* that|strong=\"G3588\"* is|strong=\"G3588\"* named|strong=\"G3686\"*, not|strong=\"G3756\"* only|strong=\"G3440\"* in|strong=\"G1722\"* this|strong=\"G3778\"* age, but|strong=\"G2532\"* also|strong=\"G2532\"* in|strong=\"G1722\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* to|strong=\"G2532\"* come|strong=\"G3195\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"G2532\"* put|strong=\"G5293\"* all|strong=\"G3956\"* things|strong=\"G3956\"* in|strong=\"G2532\"* subjection|strong=\"G5293\"* under|strong=\"G5259\"* his|strong=\"G3956\"* feet|strong=\"G4228\"*, and|strong=\"G2532\"* gave|strong=\"G1325\"* him|strong=\"G3588\"* to|strong=\"G2532\"* be|strong=\"G2532\"* head|strong=\"G2776\"* over|strong=\"G5228\"* all|strong=\"G3956\"* things|strong=\"G3956\"* for|strong=\"G5228\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"*," + }, + { + "verseNum": 23, + "text": "which|strong=\"G3588\"* is|strong=\"G1510\"* his|strong=\"G3956\"* body|strong=\"G4983\"*, the|strong=\"G1722\"* fullness|strong=\"G4138\"* of|strong=\"G4983\"* him|strong=\"G3588\"* who|strong=\"G3588\"* fills|strong=\"G4137\"* all|strong=\"G3956\"* in|strong=\"G1722\"* all|strong=\"G3956\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "You|strong=\"G5210\"* were|strong=\"G1510\"* made alive when|strong=\"G2532\"* you|strong=\"G5210\"* were|strong=\"G1510\"* dead|strong=\"G3498\"* in|strong=\"G2532\"* transgressions|strong=\"G3900\"* and|strong=\"G2532\"* sins|strong=\"G3900\"*," + }, + { + "verseNum": 2, + "text": "in|strong=\"G1722\"* which|strong=\"G3739\"* you|strong=\"G3739\"* once|strong=\"G4218\"* walked|strong=\"G4043\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* course of|strong=\"G5207\"* this|strong=\"G3778\"* world|strong=\"G2889\"*, according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* prince of|strong=\"G5207\"* the|strong=\"G1722\"* power|strong=\"G1849\"* of|strong=\"G5207\"* the|strong=\"G1722\"* air, the|strong=\"G1722\"* spirit|strong=\"G4151\"* who|strong=\"G3739\"* now|strong=\"G3568\"* works|strong=\"G1754\"* in|strong=\"G1722\"* the|strong=\"G1722\"* children|strong=\"G5207\"* of|strong=\"G5207\"* disobedience." + }, + { + "verseNum": 3, + "text": "We|strong=\"G2249\"* also|strong=\"G2532\"* all|strong=\"G3956\"* once|strong=\"G4218\"* lived|strong=\"G1510\"* among|strong=\"G1722\"* them|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* lusts|strong=\"G1939\"* of|strong=\"G2532\"* our|strong=\"G2532\"* flesh|strong=\"G4561\"*, doing|strong=\"G4160\"* the|strong=\"G1722\"* desires|strong=\"G1939\"* of|strong=\"G2532\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"* and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G1722\"* mind|strong=\"G1271\"*, and|strong=\"G2532\"* were|strong=\"G1510\"* by|strong=\"G1722\"* nature|strong=\"G5449\"* children|strong=\"G5043\"* of|strong=\"G2532\"* wrath|strong=\"G3709\"*, even|strong=\"G2532\"* as|strong=\"G5613\"* the|strong=\"G1722\"* rest|strong=\"G3062\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* God|strong=\"G2316\"*, being|strong=\"G1510\"* rich|strong=\"G4145\"* in|strong=\"G1722\"* mercy|strong=\"G1656\"*, for|strong=\"G1223\"* his|strong=\"G1223\"* great|strong=\"G4183\"* love with|strong=\"G1722\"* which|strong=\"G3739\"* he|strong=\"G1161\"* loved us|strong=\"G2249\"*," + }, + { + "verseNum": 5, + "text": "even|strong=\"G2532\"* when|strong=\"G2532\"* we|strong=\"G2249\"* were|strong=\"G1510\"* dead|strong=\"G3498\"* through|strong=\"G3900\"* our|strong=\"G2532\"* trespasses|strong=\"G3900\"*, made|strong=\"G4982\"* us|strong=\"G2249\"* alive|strong=\"G4806\"* together|strong=\"G4806\"* with|strong=\"G2532\"* Christ|strong=\"G5547\"*—by|strong=\"G2532\"* grace|strong=\"G5485\"* you|strong=\"G1510\"* have|strong=\"G2532\"* been|strong=\"G1510\"* saved|strong=\"G4982\"*—" + }, + { + "verseNum": 6, + "text": "and|strong=\"G2532\"* raised|strong=\"G4891\"* us|strong=\"G1722\"* up|strong=\"G2532\"* with|strong=\"G1722\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* made|strong=\"G4776\"* us|strong=\"G1722\"* to|strong=\"G2532\"* sit with|strong=\"G1722\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavenly|strong=\"G2032\"* places in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 7, + "text": "that|strong=\"G2443\"* in|strong=\"G1722\"* the|strong=\"G1722\"* ages to|strong=\"G2443\"* come|strong=\"G1904\"* he|strong=\"G3588\"* might|strong=\"G5547\"* show|strong=\"G1731\"* the|strong=\"G1722\"* exceeding|strong=\"G5235\"* riches|strong=\"G4149\"* of|strong=\"G5485\"* his|strong=\"G1909\"* grace|strong=\"G5485\"* in|strong=\"G1722\"* kindness|strong=\"G5544\"* toward|strong=\"G1909\"* us|strong=\"G2249\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*;" + }, + { + "verseNum": 8, + "text": "for|strong=\"G1063\"* by|strong=\"G1223\"* grace|strong=\"G5485\"* you|strong=\"G5210\"* have|strong=\"G2532\"* been|strong=\"G1510\"* saved|strong=\"G4982\"* through|strong=\"G1223\"* faith|strong=\"G4102\"*, and|strong=\"G2532\"* that|strong=\"G3588\"* not|strong=\"G3756\"* of|strong=\"G1537\"* yourselves|strong=\"G4771\"*; it|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* gift|strong=\"G1435\"* of|strong=\"G1537\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 9, + "text": "not|strong=\"G3756\"* of|strong=\"G1537\"* works|strong=\"G2041\"*, that|strong=\"G2443\"* no|strong=\"G3756\"* one|strong=\"G5100\"* would|strong=\"G5100\"* boast|strong=\"G2744\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* we|strong=\"G3739\"* are|strong=\"G1510\"* his|strong=\"G1909\"* workmanship|strong=\"G4161\"*, created|strong=\"G2936\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* for|strong=\"G1063\"* good|strong=\"G3588\"* works|strong=\"G2041\"*, which|strong=\"G3739\"* God|strong=\"G2316\"* prepared|strong=\"G4282\"* before|strong=\"G1909\"* that|strong=\"G2443\"* we|strong=\"G3739\"* would|strong=\"G2316\"* walk|strong=\"G4043\"* in|strong=\"G1722\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"G1352\"* remember|strong=\"G3421\"* that|strong=\"G3754\"* once|strong=\"G4218\"* you|strong=\"G5210\"*, the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, who|strong=\"G3588\"* are|strong=\"G3588\"* called|strong=\"G3004\"* “uncircumcision” by|strong=\"G1722\"* that|strong=\"G3754\"* which|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G3004\"* “circumcision|strong=\"G4061\"*” (in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, made|strong=\"G5499\"* by|strong=\"G1722\"* hands|strong=\"G5499\"*)," + }, + { + "verseNum": 12, + "text": "that|strong=\"G3754\"* you|strong=\"G3754\"* were|strong=\"G1510\"* at|strong=\"G1722\"* that|strong=\"G3754\"* time|strong=\"G2540\"* separate|strong=\"G5565\"* from|strong=\"G2532\"* Christ|strong=\"G5547\"*, alienated from|strong=\"G2532\"* the|strong=\"G1722\"* commonwealth|strong=\"G4174\"* of|strong=\"G2532\"* Israel|strong=\"G2474\"*, and|strong=\"G2532\"* strangers|strong=\"G3581\"* from|strong=\"G2532\"* the|strong=\"G1722\"* covenants|strong=\"G1242\"* of|strong=\"G2532\"* the|strong=\"G1722\"* promise|strong=\"G1860\"*, having|strong=\"G2192\"* no|strong=\"G3361\"* hope|strong=\"G1680\"* and|strong=\"G2532\"* without|strong=\"G5565\"* God|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* you|strong=\"G5210\"* who|strong=\"G3588\"* once|strong=\"G4218\"* were|strong=\"G1510\"* far|strong=\"G3112\"* off|strong=\"G3112\"* are|strong=\"G1510\"* made|strong=\"G1096\"* near|strong=\"G1451\"* in|strong=\"G1722\"* the|strong=\"G1722\"* blood of|strong=\"G1722\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* is|strong=\"G1510\"* our|strong=\"G2532\"* peace|strong=\"G1515\"*, who|strong=\"G3588\"* made|strong=\"G4160\"* both|strong=\"G2532\"* one|strong=\"G1520\"*, and|strong=\"G2532\"* broke|strong=\"G3089\"* down|strong=\"G3089\"* the|strong=\"G1722\"* middle wall|strong=\"G3320\"* of|strong=\"G2532\"* separation," + }, + { + "verseNum": 15, + "text": "having|strong=\"G4160\"* abolished|strong=\"G2673\"* in|strong=\"G1722\"* his|strong=\"G1438\"* flesh|strong=\"G4561\"* the|strong=\"G1722\"* hostility|strong=\"G2189\"*, the|strong=\"G1722\"* law|strong=\"G3551\"* of|strong=\"G3551\"* commandments|strong=\"G1785\"* contained in|strong=\"G1722\"* ordinances|strong=\"G1378\"*, that|strong=\"G2443\"* he|strong=\"G3588\"* might|strong=\"G1785\"* create|strong=\"G2936\"* in|strong=\"G1722\"* himself|strong=\"G1438\"* one|strong=\"G1520\"* new|strong=\"G2537\"* man|strong=\"G1520\"* of|strong=\"G3551\"* the|strong=\"G1722\"* two|strong=\"G1417\"*, making|strong=\"G4160\"* peace|strong=\"G1515\"*," + }, + { + "verseNum": 16, + "text": "and|strong=\"G2532\"* might|strong=\"G2532\"* reconcile them|strong=\"G3588\"* both|strong=\"G2532\"* in|strong=\"G1722\"* one|strong=\"G1520\"* body|strong=\"G4983\"* to|strong=\"G2532\"* God|strong=\"G2316\"* through|strong=\"G1223\"* the|strong=\"G1722\"* cross|strong=\"G4716\"*, having|strong=\"G2532\"* killed the|strong=\"G1722\"* hostility|strong=\"G2189\"* through|strong=\"G1223\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* and|strong=\"G2532\"* preached|strong=\"G2097\"* peace|strong=\"G1515\"* to|strong=\"G2532\"* you|strong=\"G5210\"* who|strong=\"G3588\"* were|strong=\"G3588\"* far|strong=\"G3112\"* off|strong=\"G3112\"* and|strong=\"G2532\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* near|strong=\"G1451\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G3754\"* through|strong=\"G1223\"* him|strong=\"G3588\"* we|strong=\"G3754\"* both|strong=\"G3588\"* have|strong=\"G2192\"* our|strong=\"G1223\"* access|strong=\"G4318\"* in|strong=\"G1722\"* one|strong=\"G1520\"* Spirit|strong=\"G4151\"* to|strong=\"G4314\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*." + }, + { + "verseNum": 19, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"* you|strong=\"G1510\"* are|strong=\"G1510\"* no|strong=\"G3765\"* longer|strong=\"G3765\"* strangers|strong=\"G3581\"* and|strong=\"G2532\"* foreigners|strong=\"G3941\"*, but|strong=\"G2532\"* you|strong=\"G1510\"* are|strong=\"G1510\"* fellow|strong=\"G4847\"* citizens|strong=\"G4847\"* with|strong=\"G2532\"* the|strong=\"G2532\"* saints and|strong=\"G2532\"* of|strong=\"G2316\"* the|strong=\"G2532\"* household|strong=\"G3609\"* of|strong=\"G2316\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 20, + "text": "being|strong=\"G1510\"* built|strong=\"G2026\"* on|strong=\"G1909\"* the|strong=\"G2532\"* foundation|strong=\"G2310\"* of|strong=\"G2532\"* the|strong=\"G2532\"* apostles and|strong=\"G2532\"* prophets|strong=\"G4396\"*, Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* himself being|strong=\"G1510\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* cornerstone;" + }, + { + "verseNum": 21, + "text": "in|strong=\"G1722\"* whom|strong=\"G3739\"* the|strong=\"G1722\"* whole|strong=\"G3956\"* building|strong=\"G3619\"*, fitted|strong=\"G4883\"* together|strong=\"G4883\"*, grows into|strong=\"G1519\"* a|strong=\"G1519\"* holy temple|strong=\"G3485\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*;" + }, + { + "verseNum": 22, + "text": "in|strong=\"G1722\"* whom|strong=\"G3739\"* you|strong=\"G5210\"* also|strong=\"G2532\"* are|strong=\"G3588\"* built|strong=\"G4925\"* together|strong=\"G4925\"* for|strong=\"G1519\"* a|strong=\"G2532\"* habitation|strong=\"G2732\"* of|strong=\"G4151\"* God|strong=\"G2316\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"G5228\"* this|strong=\"G3778\"* cause|strong=\"G5484\"* I|strong=\"G1473\"*, Paul|strong=\"G3972\"*, am|strong=\"G1473\"* the|strong=\"G3588\"* prisoner|strong=\"G1198\"* of|strong=\"G5228\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* on|strong=\"G5228\"* behalf|strong=\"G5228\"* of|strong=\"G5228\"* you|strong=\"G5210\"* Gentiles|strong=\"G1484\"*," + }, + { + "verseNum": 2, + "text": "if|strong=\"G1487\"* it|strong=\"G1487\"* is|strong=\"G3588\"* so|strong=\"G1519\"* that|strong=\"G3588\"* you|strong=\"G5210\"* have|strong=\"G1473\"* heard of|strong=\"G2316\"* the|strong=\"G1519\"* administration|strong=\"G3622\"* of|strong=\"G2316\"* that|strong=\"G3588\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* which|strong=\"G3588\"* was|strong=\"G3588\"* given|strong=\"G1325\"* me|strong=\"G1325\"* toward|strong=\"G1519\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 3, + "text": "how|strong=\"G3754\"* that|strong=\"G3754\"* by|strong=\"G1722\"* revelation the|strong=\"G1722\"* mystery|strong=\"G3466\"* was|strong=\"G3588\"* made|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G2596\"* me|strong=\"G1473\"*, as|strong=\"G2531\"* I|strong=\"G1473\"* wrote|strong=\"G4270\"* before|strong=\"G1722\"* in|strong=\"G1722\"* few|strong=\"G3641\"* words|strong=\"G3641\"*," + }, + { + "verseNum": 4, + "text": "by|strong=\"G1722\"* which|strong=\"G3739\"*, when|strong=\"G1722\"* you|strong=\"G3739\"* read, you|strong=\"G3739\"* can|strong=\"G1410\"* perceive|strong=\"G3539\"* my|strong=\"G1722\"* understanding|strong=\"G4907\"* in|strong=\"G1722\"* the|strong=\"G1722\"* mystery|strong=\"G3466\"* of|strong=\"G1722\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 5, + "text": "which|strong=\"G3739\"* in|strong=\"G1722\"* other|strong=\"G2087\"* generations|strong=\"G1074\"* was|strong=\"G3588\"* not|strong=\"G3756\"* made|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G2532\"* the|strong=\"G1722\"* children|strong=\"G5207\"* of|strong=\"G5207\"* men|strong=\"G3588\"*, as|strong=\"G5613\"* it|strong=\"G2532\"* has|strong=\"G3739\"* now|strong=\"G3568\"* been|strong=\"G2532\"* revealed to|strong=\"G2532\"* his|strong=\"G1722\"* holy|strong=\"G4151\"* apostles and|strong=\"G2532\"* prophets|strong=\"G4396\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*," + }, + { + "verseNum": 6, + "text": "that|strong=\"G3588\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* are|strong=\"G1510\"* fellow|strong=\"G4789\"* heirs|strong=\"G4789\"* and|strong=\"G2532\"* fellow|strong=\"G4789\"* members|strong=\"G4954\"* of|strong=\"G1223\"* the|strong=\"G1722\"* body|strong=\"G4954\"*, and|strong=\"G2532\"* fellow|strong=\"G4789\"* partakers|strong=\"G4830\"* of|strong=\"G1223\"* his|strong=\"G1223\"* promise|strong=\"G1860\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* through|strong=\"G1223\"* the|strong=\"G1722\"* Good|strong=\"G1223\"* News|strong=\"G2098\"*," + }, + { + "verseNum": 7, + "text": "of|strong=\"G2316\"* which|strong=\"G3739\"* I|strong=\"G1473\"* was|strong=\"G1096\"* made|strong=\"G1096\"* a|strong=\"G1096\"* servant|strong=\"G1249\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G2596\"* gift|strong=\"G1431\"* of|strong=\"G2316\"* that|strong=\"G3739\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* which|strong=\"G3739\"* was|strong=\"G1096\"* given|strong=\"G1325\"* me|strong=\"G1325\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G2596\"* working|strong=\"G1753\"* of|strong=\"G2316\"* his|strong=\"G1325\"* power|strong=\"G1411\"*." + }, + { + "verseNum": 8, + "text": "To|strong=\"G1325\"* me|strong=\"G1325\"*, the|strong=\"G3956\"* very|strong=\"G1646\"* least|strong=\"G1646\"* of|strong=\"G5485\"* all|strong=\"G3956\"* saints, was|strong=\"G3588\"* this|strong=\"G3778\"* grace|strong=\"G5485\"* given|strong=\"G1325\"*, to|strong=\"G1325\"* preach|strong=\"G2097\"* to|strong=\"G1325\"* the|strong=\"G3956\"* Gentiles|strong=\"G1484\"* the|strong=\"G3956\"* unsearchable riches|strong=\"G4149\"* of|strong=\"G5485\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 9, + "text": "and|strong=\"G2532\"* to|strong=\"G2532\"* make|strong=\"G2936\"* all|strong=\"G3956\"* men|strong=\"G3956\"* see|strong=\"G5461\"* what|strong=\"G5101\"* is|strong=\"G3588\"* the|strong=\"G1722\"* administration|strong=\"G3622\"*+ 3:9 TR reads “fellowship” instead of “administration”* of|strong=\"G2316\"* the|strong=\"G1722\"* mystery|strong=\"G3466\"* which|strong=\"G3588\"* for|strong=\"G1722\"* ages has|strong=\"G2316\"* been|strong=\"G2532\"* hidden in|strong=\"G1722\"* God|strong=\"G2316\"*, who|strong=\"G5101\"* created|strong=\"G2936\"* all|strong=\"G3956\"* things|strong=\"G3956\"* through|strong=\"G1722\"* Jesus|strong=\"G2532\"* Christ," + }, + { + "verseNum": 10, + "text": "to|strong=\"G2443\"* the|strong=\"G1722\"* intent that|strong=\"G2443\"* now|strong=\"G3568\"* through|strong=\"G1223\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* the|strong=\"G1722\"* manifold|strong=\"G4182\"* wisdom|strong=\"G4678\"* of|strong=\"G1223\"* God|strong=\"G2316\"* might|strong=\"G2532\"* be|strong=\"G2532\"* made|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G2443\"* the|strong=\"G1722\"* principalities and|strong=\"G2532\"* the|strong=\"G1722\"* powers|strong=\"G1849\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavenly|strong=\"G2032\"* places," + }, + { + "verseNum": 11, + "text": "according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* eternal purpose|strong=\"G4286\"* which|strong=\"G3739\"* he|strong=\"G3739\"* accomplished|strong=\"G4160\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 12, + "text": "In|strong=\"G1722\"* him|strong=\"G3588\"* we|strong=\"G3739\"* have|strong=\"G2192\"* boldness|strong=\"G3954\"* and|strong=\"G2532\"* access|strong=\"G4318\"* in|strong=\"G1722\"* confidence|strong=\"G3954\"* through|strong=\"G1223\"* our|strong=\"G2532\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"G1352\"* I|strong=\"G1473\"* ask that|strong=\"G3588\"* you|strong=\"G5210\"* may|strong=\"G5210\"* not|strong=\"G3361\"* lose heart at|strong=\"G1722\"* my|strong=\"G1722\"* troubles|strong=\"G2347\"* for|strong=\"G5228\"* you|strong=\"G5210\"*, which|strong=\"G3588\"* are|strong=\"G1510\"* your|strong=\"G1722\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G4314\"* this|strong=\"G3778\"* cause|strong=\"G5484\"*, I|strong=\"G1473\"* bow|strong=\"G2578\"* my|strong=\"G1473\"* knees|strong=\"G1119\"* to|strong=\"G4314\"* the|strong=\"G4314\"* Father|strong=\"G3962\"* of|strong=\"G3962\"* our|strong=\"G4314\"* Lord|strong=\"G3588\"* Jesus|strong=\"G3778\"* Christ," + }, + { + "verseNum": 15, + "text": "from|strong=\"G1537\"* whom|strong=\"G3739\"* every|strong=\"G3956\"* family|strong=\"G3965\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"* and|strong=\"G2532\"* on|strong=\"G1909\"* earth|strong=\"G1093\"* is|strong=\"G3739\"* named|strong=\"G3687\"*," + }, + { + "verseNum": 16, + "text": "that|strong=\"G2443\"* he|strong=\"G3588\"* would|strong=\"G1325\"* grant|strong=\"G1325\"* you|strong=\"G5210\"*, according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G1519\"* riches|strong=\"G4149\"* of|strong=\"G4151\"* his|strong=\"G1223\"* glory|strong=\"G1391\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2443\"* be|strong=\"G1519\"* strengthened|strong=\"G2901\"* with|strong=\"G1223\"* power|strong=\"G1411\"* through|strong=\"G1223\"* his|strong=\"G1223\"* Spirit|strong=\"G4151\"* in|strong=\"G1519\"* the|strong=\"G1519\"* inner|strong=\"G2080\"* person," + }, + { + "verseNum": 17, + "text": "that|strong=\"G3588\"* Christ|strong=\"G5547\"* may|strong=\"G2532\"* dwell|strong=\"G2730\"* in|strong=\"G1722\"* your|strong=\"G1223\"* hearts|strong=\"G2588\"* through|strong=\"G1223\"* faith|strong=\"G4102\"*, to|strong=\"G2532\"* the|strong=\"G1722\"* end that|strong=\"G3588\"* you|strong=\"G5210\"*, being|strong=\"G2532\"* rooted and|strong=\"G2532\"* grounded|strong=\"G2311\"* in|strong=\"G1722\"* love," + }, + { + "verseNum": 18, + "text": "may|strong=\"G2532\"* be|strong=\"G2532\"* strengthened to|strong=\"G2443\"* comprehend|strong=\"G2638\"* with|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* saints what|strong=\"G5101\"* is|strong=\"G3588\"* the|strong=\"G1722\"* width|strong=\"G4114\"* and|strong=\"G2532\"* length|strong=\"G3372\"* and|strong=\"G2532\"* height|strong=\"G5311\"* and|strong=\"G2532\"* depth," + }, + { + "verseNum": 19, + "text": "and|strong=\"G5037\"* to|strong=\"G1519\"* know|strong=\"G1097\"* Christ|strong=\"G5547\"*’s love which|strong=\"G3588\"* surpasses|strong=\"G5235\"* knowledge|strong=\"G1108\"*, that|strong=\"G2443\"* you|strong=\"G3956\"* may|strong=\"G2443\"* be|strong=\"G3956\"* filled|strong=\"G4137\"* with|strong=\"G2316\"* all|strong=\"G3956\"* the|strong=\"G1519\"* fullness|strong=\"G4138\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 20, + "text": "Now|strong=\"G1161\"* to|strong=\"G2596\"* him|strong=\"G3588\"* who|strong=\"G3739\"* is|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2596\"* do|strong=\"G4160\"* exceedingly abundantly|strong=\"G4053\"* above|strong=\"G5228\"* all|strong=\"G3956\"* that|strong=\"G3739\"* we|strong=\"G2249\"* ask or|strong=\"G2228\"* think|strong=\"G3539\"*, according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* power|strong=\"G1411\"* that|strong=\"G3739\"* works|strong=\"G1754\"* in|strong=\"G1722\"* us|strong=\"G4160\"*," + }, + { + "verseNum": 21, + "text": "to|strong=\"G1519\"* him|strong=\"G3588\"* be|strong=\"G2532\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* and|strong=\"G2532\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* to|strong=\"G1519\"* all|strong=\"G3956\"* generations|strong=\"G1074\"*, forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*. Amen." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G1473\"* therefore|strong=\"G3767\"*, the|strong=\"G1722\"* prisoner|strong=\"G1198\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, beg|strong=\"G3870\"* you|strong=\"G5210\"* to|strong=\"G1722\"* walk|strong=\"G4043\"* worthily of|strong=\"G2962\"* the|strong=\"G1722\"* calling|strong=\"G2821\"* with|strong=\"G1722\"* which|strong=\"G3739\"* you|strong=\"G5210\"* were|strong=\"G3588\"* called|strong=\"G2564\"*," + }, + { + "verseNum": 2, + "text": "with|strong=\"G3326\"* all|strong=\"G3956\"* lowliness|strong=\"G5012\"* and|strong=\"G2532\"* humility|strong=\"G5012\"*, with|strong=\"G3326\"* patience|strong=\"G3115\"*, bearing with|strong=\"G3326\"* one|strong=\"G3956\"* another|strong=\"G1722\"* in|strong=\"G1722\"* love," + }, + { + "verseNum": 3, + "text": "being|strong=\"G1722\"* eager|strong=\"G4704\"* to|strong=\"G1722\"* keep|strong=\"G5083\"* the|strong=\"G1722\"* unity|strong=\"G1775\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* in|strong=\"G1722\"* the|strong=\"G1722\"* bond|strong=\"G4886\"* of|strong=\"G4151\"* peace|strong=\"G1515\"*." + }, + { + "verseNum": 4, + "text": "There|strong=\"G2532\"* is|strong=\"G3588\"* one|strong=\"G1520\"* body|strong=\"G4983\"* and|strong=\"G2532\"* one|strong=\"G1520\"* Spirit|strong=\"G4151\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* you|strong=\"G5210\"* also|strong=\"G2532\"* were|strong=\"G3588\"* called|strong=\"G2564\"* in|strong=\"G1722\"* one|strong=\"G1520\"* hope|strong=\"G1680\"* of|strong=\"G4151\"* your|strong=\"G2532\"* calling|strong=\"G2821\"*," + }, + { + "verseNum": 5, + "text": "one|strong=\"G1520\"* Lord|strong=\"G2962\"*, one|strong=\"G1520\"* faith|strong=\"G4102\"*, one|strong=\"G1520\"* baptism," + }, + { + "verseNum": 6, + "text": "one|strong=\"G1520\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"* of|strong=\"G1223\"* all|strong=\"G3956\"*, who|strong=\"G3588\"* is|strong=\"G3588\"* over|strong=\"G1909\"* all|strong=\"G3956\"* and|strong=\"G2532\"* through|strong=\"G1223\"* all|strong=\"G3956\"* and|strong=\"G2532\"* in|strong=\"G1722\"* us|strong=\"G1722\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* to|strong=\"G2596\"* each|strong=\"G1538\"* one|strong=\"G1520\"* of|strong=\"G5485\"* us|strong=\"G1325\"*, the|strong=\"G1161\"* grace|strong=\"G5485\"* was|strong=\"G3588\"* given|strong=\"G1325\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1161\"* measure|strong=\"G3358\"* of|strong=\"G5485\"* the|strong=\"G1161\"* gift|strong=\"G1431\"* of|strong=\"G5485\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G1352\"* he|strong=\"G3588\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 9, + "text": "Now|strong=\"G1161\"* this|strong=\"G3588\"*, “He|strong=\"G2532\"* ascended|strong=\"G3588\"*”, what|strong=\"G5101\"* is|strong=\"G1510\"* it|strong=\"G2532\"* but|strong=\"G1161\"* that|strong=\"G3754\"* he|strong=\"G2532\"* also|strong=\"G2532\"* first|strong=\"G3588\"* descended|strong=\"G2597\"* into|strong=\"G1519\"* the|strong=\"G2532\"* lower|strong=\"G2737\"* parts|strong=\"G3313\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*?" + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* descended|strong=\"G2597\"* is|strong=\"G1510\"* the|strong=\"G2532\"* one|strong=\"G3956\"* who|strong=\"G3588\"* also|strong=\"G2532\"* ascended|strong=\"G3588\"* far|strong=\"G5231\"* above|strong=\"G5231\"* all|strong=\"G3956\"* the|strong=\"G2532\"* heavens|strong=\"G3772\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* fill|strong=\"G4137\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* gave|strong=\"G1325\"* some|strong=\"G3588\"* to|strong=\"G2532\"* be|strong=\"G2532\"* apostles; and|strong=\"G2532\"* some|strong=\"G3588\"*, prophets|strong=\"G4396\"*; and|strong=\"G2532\"* some|strong=\"G3588\"*, evangelists|strong=\"G2099\"*; and|strong=\"G2532\"* some|strong=\"G3588\"*, shepherds|strong=\"G4166\"*+ 4:11 or, pastors* and|strong=\"G2532\"* teachers|strong=\"G1320\"*;" + }, + { + "verseNum": 12, + "text": "for|strong=\"G1519\"* the|strong=\"G1519\"* perfecting|strong=\"G2677\"* of|strong=\"G2041\"* the|strong=\"G1519\"* saints, to|strong=\"G1519\"* the|strong=\"G1519\"* work|strong=\"G2041\"* of|strong=\"G2041\"* serving|strong=\"G1248\"*, to|strong=\"G1519\"* the|strong=\"G1519\"* building|strong=\"G3619\"* up|strong=\"G1519\"* of|strong=\"G2041\"* the|strong=\"G1519\"* body|strong=\"G4983\"* of|strong=\"G2041\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 13, + "text": "until|strong=\"G3360\"* we|strong=\"G2532\"* all|strong=\"G3956\"* attain|strong=\"G2658\"* to|strong=\"G1519\"* the|strong=\"G2532\"* unity|strong=\"G1775\"* of|strong=\"G5207\"* the|strong=\"G2532\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* of|strong=\"G5207\"* the|strong=\"G2532\"* knowledge|strong=\"G1922\"* of|strong=\"G5207\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, to|strong=\"G1519\"* a|strong=\"G2532\"* full|strong=\"G4138\"* grown man|strong=\"G3956\"*, to|strong=\"G1519\"* the|strong=\"G2532\"* measure|strong=\"G3358\"* of|strong=\"G5207\"* the|strong=\"G2532\"* stature|strong=\"G2244\"* of|strong=\"G5207\"* the|strong=\"G2532\"* fullness|strong=\"G4138\"* of|strong=\"G5207\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 14, + "text": "that|strong=\"G2443\"* we|strong=\"G2532\"* may|strong=\"G2532\"* no|strong=\"G3371\"* longer|strong=\"G3371\"* be|strong=\"G1510\"* children|strong=\"G3516\"*, tossed|strong=\"G2831\"* back|strong=\"G4314\"* and|strong=\"G2532\"* forth and|strong=\"G2532\"* carried|strong=\"G2532\"* about|strong=\"G1722\"* with|strong=\"G1722\"* every|strong=\"G3956\"* wind of|strong=\"G2532\"* doctrine|strong=\"G1319\"*, by|strong=\"G1722\"* the|strong=\"G1722\"* trickery|strong=\"G3834\"* of|strong=\"G2532\"* men|strong=\"G3956\"*, in|strong=\"G1722\"* craftiness|strong=\"G3834\"*, after|strong=\"G2532\"* the|strong=\"G1722\"* wiles|strong=\"G3180\"* of|strong=\"G2532\"* error|strong=\"G4106\"*;" + }, + { + "verseNum": 15, + "text": "but|strong=\"G1161\"* speaking truth in|strong=\"G1722\"* love, we|strong=\"G3739\"* may|strong=\"G5547\"* grow up|strong=\"G1519\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"* into|strong=\"G1519\"* him|strong=\"G3588\"* who|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G1722\"* head|strong=\"G2776\"*, Christ|strong=\"G5547\"*," + }, + { + "verseNum": 16, + "text": "from|strong=\"G1537\"* whom|strong=\"G3739\"* all|strong=\"G3956\"* the|strong=\"G1722\"* body|strong=\"G4983\"*, being|strong=\"G2532\"* fitted|strong=\"G4883\"* and|strong=\"G2532\"* knit|strong=\"G4822\"* together|strong=\"G4822\"* through|strong=\"G1223\"* that|strong=\"G3739\"* which|strong=\"G3739\"* every|strong=\"G3956\"* joint supplies|strong=\"G2024\"*, according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G1722\"* working|strong=\"G1753\"* in|strong=\"G1722\"* measure|strong=\"G3358\"* of|strong=\"G1537\"* each|strong=\"G1538\"* individual|strong=\"G1520\"* part|strong=\"G3313\"*, makes|strong=\"G4160\"* the|strong=\"G1722\"* body|strong=\"G4983\"* increase to|strong=\"G1519\"* the|strong=\"G1722\"* building|strong=\"G3619\"* up|strong=\"G1519\"* of|strong=\"G1537\"* itself|strong=\"G1438\"* in|strong=\"G1722\"* love." + }, + { + "verseNum": 17, + "text": "This|strong=\"G3778\"* I|strong=\"G2532\"* say|strong=\"G3004\"* therefore|strong=\"G3767\"*, and|strong=\"G2532\"* testify|strong=\"G3143\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, that|strong=\"G3588\"* you|strong=\"G5210\"* no|strong=\"G3371\"* longer|strong=\"G3371\"* walk|strong=\"G4043\"* as|strong=\"G2531\"* the|strong=\"G1722\"* rest of|strong=\"G2532\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* also|strong=\"G2532\"* walk|strong=\"G4043\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* futility|strong=\"G3153\"* of|strong=\"G2532\"* their|strong=\"G2532\"* mind|strong=\"G3563\"*," + }, + { + "verseNum": 18, + "text": "being|strong=\"G1510\"* darkened|strong=\"G4656\"* in|strong=\"G1722\"* their|strong=\"G1722\"* understanding|strong=\"G1271\"*, alienated from|strong=\"G3588\"* the|strong=\"G1722\"* life|strong=\"G2222\"* of|strong=\"G1223\"* God|strong=\"G2316\"* because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G1722\"* ignorance that|strong=\"G3588\"* is|strong=\"G1510\"* in|strong=\"G1722\"* them|strong=\"G3588\"*, because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G1722\"* hardening|strong=\"G4457\"* of|strong=\"G1223\"* their|strong=\"G1722\"* hearts|strong=\"G2588\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"G3588\"*, having become callous, gave|strong=\"G3860\"* themselves|strong=\"G1438\"* up|strong=\"G3860\"* to|strong=\"G1519\"* lust, to|strong=\"G1519\"* work|strong=\"G2039\"* all|strong=\"G3956\"* uncleanness with|strong=\"G1722\"* greediness|strong=\"G4124\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* you|strong=\"G5210\"* didn’t|strong=\"G3588\"* learn|strong=\"G3129\"* Christ|strong=\"G5547\"* that|strong=\"G3588\"* way|strong=\"G3779\"*," + }, + { + "verseNum": 21, + "text": "if|strong=\"G1487\"* indeed|strong=\"G2532\"* you|strong=\"G1487\"* heard him|strong=\"G3588\"* and|strong=\"G2532\"* were|strong=\"G1510\"* taught|strong=\"G1321\"* in|strong=\"G1722\"* him|strong=\"G3588\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* truth is|strong=\"G1510\"* in|strong=\"G1722\"* Jesus|strong=\"G2424\"*:" + }, + { + "verseNum": 22, + "text": "that|strong=\"G3588\"* you|strong=\"G5210\"* put away, as|strong=\"G2596\"* concerning|strong=\"G2596\"* your|strong=\"G3588\"* former|strong=\"G4387\"* way|strong=\"G2596\"* of|strong=\"G2596\"* life, the|strong=\"G2596\"* old|strong=\"G3820\"* man that|strong=\"G3588\"* grows corrupt|strong=\"G5351\"* after|strong=\"G2596\"* the|strong=\"G2596\"* lusts|strong=\"G1939\"* of|strong=\"G2596\"* deceit," + }, + { + "verseNum": 23, + "text": "and|strong=\"G1161\"* that|strong=\"G3588\"* you|strong=\"G5210\"* be|strong=\"G3588\"* renewed in|strong=\"G1161\"* the|strong=\"G1161\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* your|strong=\"G3588\"* mind|strong=\"G3563\"*," + }, + { + "verseNum": 24, + "text": "and|strong=\"G2532\"* put|strong=\"G1746\"* on|strong=\"G1722\"* the|strong=\"G1722\"* new|strong=\"G2537\"* man|strong=\"G2316\"*, who|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* likeness of|strong=\"G2316\"* God|strong=\"G2316\"* has|strong=\"G2316\"* been|strong=\"G2532\"* created|strong=\"G2936\"* in|strong=\"G1722\"* righteousness|strong=\"G1343\"* and|strong=\"G2532\"* holiness|strong=\"G3742\"* of|strong=\"G2316\"* truth." + }, + { + "verseNum": 25, + "text": "Therefore|strong=\"G1352\"*, putting|strong=\"G1352\"* away|strong=\"G3326\"* falsehood|strong=\"G5579\"*, speak|strong=\"G2980\"* truth each|strong=\"G1538\"* one|strong=\"G1538\"* with|strong=\"G3326\"* his|strong=\"G3754\"* neighbor|strong=\"G4139\"*, for|strong=\"G3754\"* we|strong=\"G3754\"* are|strong=\"G1510\"* members|strong=\"G3196\"* of|strong=\"G3588\"* one|strong=\"G1538\"* another|strong=\"G3588\"*." + }, + { + "verseNum": 26, + "text": "“Be|strong=\"G2532\"* angry|strong=\"G3710\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* sin.”+ 4:26 Psalms 4:4* Don’t|strong=\"G3588\"* let|strong=\"G1931\"* the|strong=\"G2532\"* sun|strong=\"G2246\"* go|strong=\"G2246\"* down|strong=\"G1931\"* on|strong=\"G1909\"* your|strong=\"G2532\"* wrath|strong=\"G3950\"*," + }, + { + "verseNum": 27, + "text": "and|strong=\"G3588\"* don’t|strong=\"G3588\"* give|strong=\"G1325\"* place|strong=\"G5117\"*+ 4:27 or, opportunity* to|strong=\"G1325\"* the|strong=\"G3588\"* devil|strong=\"G1228\"*." + }, + { + "verseNum": 28, + "text": "Let|strong=\"G1161\"* him|strong=\"G3588\"* who|strong=\"G3588\"* stole|strong=\"G2813\"* steal|strong=\"G2813\"* no|strong=\"G3371\"* more|strong=\"G3123\"*; but|strong=\"G1161\"* rather|strong=\"G3123\"* let|strong=\"G1161\"* him|strong=\"G3588\"* labor|strong=\"G2872\"*, producing with|strong=\"G2192\"* his|strong=\"G2398\"* hands|strong=\"G5495\"* something that|strong=\"G2443\"* is|strong=\"G3588\"* good|strong=\"G3588\"*, that|strong=\"G2443\"* he|strong=\"G1161\"* may|strong=\"G2443\"* have|strong=\"G2192\"* something to|strong=\"G2443\"* give|strong=\"G3330\"* to|strong=\"G2443\"* him|strong=\"G3588\"* who|strong=\"G3588\"* has|strong=\"G2192\"* need|strong=\"G5532\"*." + }, + { + "verseNum": 29, + "text": "Let|strong=\"G2443\"* no|strong=\"G3361\"* corrupt|strong=\"G4550\"* speech|strong=\"G3056\"* proceed|strong=\"G1607\"* out|strong=\"G1537\"* of|strong=\"G1537\"* your|strong=\"G1487\"* mouth|strong=\"G4750\"*, but|strong=\"G1487\"* only|strong=\"G1487\"* what|strong=\"G3588\"* is|strong=\"G3588\"* good|strong=\"G3956\"* for|strong=\"G4314\"* building|strong=\"G3619\"* others|strong=\"G3588\"* up|strong=\"G1325\"* as|strong=\"G1607\"* the|strong=\"G3956\"* need|strong=\"G5532\"* may|strong=\"G2443\"* be|strong=\"G3361\"*, that|strong=\"G2443\"* it|strong=\"G1487\"* may|strong=\"G2443\"* give|strong=\"G1325\"* grace|strong=\"G5485\"* to|strong=\"G4314\"* those|strong=\"G3588\"* who|strong=\"G3588\"* hear." + }, + { + "verseNum": 30, + "text": "Don’t|strong=\"G3588\"* grieve|strong=\"G3076\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* God|strong=\"G2316\"*, in|strong=\"G1722\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* were|strong=\"G3588\"* sealed|strong=\"G4972\"* for|strong=\"G1519\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G4151\"* redemption." + }, + { + "verseNum": 31, + "text": "Let|strong=\"G2532\"* all|strong=\"G3956\"* bitterness|strong=\"G4088\"*, wrath|strong=\"G3709\"*, anger|strong=\"G3709\"*, outcry, and|strong=\"G2532\"* slander be|strong=\"G2532\"* put|strong=\"G2532\"* away from|strong=\"G2532\"* you|strong=\"G5210\"*, with|strong=\"G4862\"* all|strong=\"G3956\"* malice|strong=\"G2549\"*." + }, + { + "verseNum": 32, + "text": "And|strong=\"G2532\"* be|strong=\"G1096\"* kind|strong=\"G5543\"* to|strong=\"G1519\"* one|strong=\"G1438\"* another|strong=\"G1438\"*, tender hearted, forgiving|strong=\"G5483\"* each|strong=\"G1438\"* other|strong=\"G1161\"*, just|strong=\"G2531\"* as|strong=\"G2531\"* God|strong=\"G2316\"* also|strong=\"G2532\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* forgave|strong=\"G5483\"* you|strong=\"G5210\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Be|strong=\"G1096\"* therefore|strong=\"G3767\"* imitators|strong=\"G3402\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, as|strong=\"G5613\"* beloved children|strong=\"G5043\"*." + }, + { + "verseNum": 2, + "text": "Walk|strong=\"G4043\"* in|strong=\"G1722\"* love, even|strong=\"G2532\"* as|strong=\"G2531\"* Christ|strong=\"G5547\"* also|strong=\"G2532\"* loved us|strong=\"G1519\"* and|strong=\"G2532\"* gave|strong=\"G3860\"* himself|strong=\"G1438\"* up|strong=\"G3860\"* for|strong=\"G1519\"* us|strong=\"G1519\"*, an|strong=\"G2532\"* offering|strong=\"G4376\"* and|strong=\"G2532\"* a|strong=\"G2532\"* sacrifice|strong=\"G2378\"* to|strong=\"G1519\"* God|strong=\"G2316\"* for|strong=\"G1519\"* a|strong=\"G2532\"* sweet-smelling fragrance|strong=\"G3744\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* uncleanness or|strong=\"G2228\"* covetousness|strong=\"G4124\"*, let|strong=\"G1161\"* it|strong=\"G2532\"* not|strong=\"G3366\"* even|strong=\"G2532\"* be|strong=\"G2532\"* mentioned among|strong=\"G1722\"* you|strong=\"G5210\"*, as|strong=\"G2531\"* becomes saints;" + }, + { + "verseNum": 4, + "text": "nor|strong=\"G2532\"* filthiness, nor|strong=\"G2532\"* foolish|strong=\"G2532\"* talking|strong=\"G3473\"*, nor|strong=\"G2532\"* jesting|strong=\"G2160\"*, which|strong=\"G3739\"* are|strong=\"G3739\"* not|strong=\"G3756\"* appropriate, but|strong=\"G2532\"* rather|strong=\"G3123\"* giving|strong=\"G2169\"* of|strong=\"G2532\"* thanks|strong=\"G2169\"*." + }, + { + "verseNum": 5, + "text": "Know|strong=\"G1492\"* this|strong=\"G3778\"* for|strong=\"G1063\"* sure|strong=\"G1097\"*, that|strong=\"G3754\"* no|strong=\"G3756\"* sexually immoral|strong=\"G4205\"* person|strong=\"G3739\"*, nor|strong=\"G2532\"* unclean|strong=\"G2228\"* person|strong=\"G3739\"*, nor|strong=\"G2532\"* covetous|strong=\"G4123\"* man|strong=\"G3778\"* (who|strong=\"G3739\"* is|strong=\"G1510\"* an|strong=\"G2192\"* idolater|strong=\"G1496\"*), has|strong=\"G2192\"* any|strong=\"G3956\"* inheritance|strong=\"G2817\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Kingdom of|strong=\"G2316\"* Christ|strong=\"G5547\"* and|strong=\"G2532\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 6, + "text": "Let|strong=\"G1063\"* no|strong=\"G3367\"* one|strong=\"G3367\"* deceive you|strong=\"G5210\"* with|strong=\"G1223\"* empty|strong=\"G2756\"* words|strong=\"G3056\"*, for|strong=\"G1063\"* because|strong=\"G1223\"* of|strong=\"G5207\"* these|strong=\"G3778\"* things|strong=\"G3778\"* the|strong=\"G1909\"* wrath|strong=\"G3709\"* of|strong=\"G5207\"* God|strong=\"G2316\"* comes|strong=\"G2064\"* on|strong=\"G1909\"* the|strong=\"G1909\"* children|strong=\"G5207\"* of|strong=\"G5207\"* disobedience." + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"G3767\"* don’t be|strong=\"G1096\"* partakers|strong=\"G4830\"* with|strong=\"G1096\"* them." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* you|strong=\"G1722\"* were|strong=\"G1510\"* once|strong=\"G4218\"* darkness|strong=\"G4655\"*, but|strong=\"G1161\"* are|strong=\"G1510\"* now|strong=\"G1161\"* light|strong=\"G5457\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*. Walk|strong=\"G4043\"* as|strong=\"G5613\"* children|strong=\"G5043\"* of|strong=\"G2962\"* light|strong=\"G5457\"*," + }, + { + "verseNum": 9, + "text": "for|strong=\"G1063\"* the|strong=\"G1722\"* fruit|strong=\"G2590\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Spirit|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* all|strong=\"G3956\"* goodness and|strong=\"G2532\"* righteousness|strong=\"G1343\"* and|strong=\"G2532\"* truth," + }, + { + "verseNum": 10, + "text": "proving|strong=\"G1381\"* what|strong=\"G5101\"* is|strong=\"G1510\"* well|strong=\"G2101\"* pleasing|strong=\"G2101\"* to|strong=\"G5101\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 11, + "text": "Have|strong=\"G2532\"* no|strong=\"G3361\"* fellowship|strong=\"G4790\"* with|strong=\"G2532\"* the|strong=\"G2532\"* unfruitful deeds|strong=\"G2041\"* of|strong=\"G2532\"* darkness|strong=\"G4655\"*, but|strong=\"G1161\"* rather|strong=\"G3123\"* even|strong=\"G2532\"* reprove|strong=\"G1651\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G1510\"* a|strong=\"G1096\"* shame even|strong=\"G2532\"* to|strong=\"G2532\"* speak|strong=\"G3004\"* of|strong=\"G5259\"* the|strong=\"G2532\"* things|strong=\"G3588\"* which|strong=\"G3588\"* are|strong=\"G1510\"* done|strong=\"G1096\"* by|strong=\"G5259\"* them|strong=\"G3588\"* in|strong=\"G2532\"* secret|strong=\"G2931\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, when|strong=\"G1161\"* they|strong=\"G1161\"* are|strong=\"G1510\"* reproved|strong=\"G1651\"*, are|strong=\"G1510\"* revealed|strong=\"G5319\"* by|strong=\"G5259\"* the|strong=\"G3956\"* light|strong=\"G5457\"*, for|strong=\"G1063\"* everything|strong=\"G3956\"* that|strong=\"G3588\"* reveals is|strong=\"G1510\"* light|strong=\"G5457\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"G1352\"* he|strong=\"G2532\"* says|strong=\"G3004\"*, “Awake|strong=\"G1453\"*, you|strong=\"G4771\"* who|strong=\"G3588\"* sleep|strong=\"G2518\"*, and|strong=\"G2532\"* arise|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, and|strong=\"G2532\"* Christ|strong=\"G5547\"* will|strong=\"G1510\"* shine|strong=\"G2017\"* on|strong=\"G1537\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"G3767\"* watch carefully|strong=\"G4459\"* how|strong=\"G4459\"* you|strong=\"G4459\"* walk|strong=\"G4043\"*, not|strong=\"G3361\"* as|strong=\"G5613\"* unwise, but|strong=\"G3361\"* as|strong=\"G5613\"* wise|strong=\"G4680\"*," + }, + { + "verseNum": 16, + "text": "redeeming|strong=\"G1805\"* the|strong=\"G3588\"* time|strong=\"G2540\"*, because|strong=\"G3754\"* the|strong=\"G3588\"* days|strong=\"G2250\"* are|strong=\"G1510\"* evil|strong=\"G4190\"*." + }, + { + "verseNum": 17, + "text": "Therefore|strong=\"G1223\"*, don’t|strong=\"G3588\"* be|strong=\"G1096\"* foolish, but|strong=\"G3361\"* understand|strong=\"G4920\"* what|strong=\"G5101\"* the|strong=\"G1223\"* will|strong=\"G2307\"* of|strong=\"G1223\"* the|strong=\"G1223\"* Lord|strong=\"G2962\"* is|strong=\"G3588\"*." + }, + { + "verseNum": 18, + "text": "Don’t be|strong=\"G1510\"* drunken|strong=\"G3182\"* with|strong=\"G1722\"* wine|strong=\"G3631\"*, in|strong=\"G1722\"* which|strong=\"G3739\"* is|strong=\"G1510\"* dissipation, but|strong=\"G2532\"* be|strong=\"G1510\"* filled|strong=\"G4137\"* with|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*," + }, + { + "verseNum": 19, + "text": "speaking|strong=\"G2980\"* to|strong=\"G2532\"* one|strong=\"G1438\"* another|strong=\"G1438\"* in|strong=\"G2532\"* psalms|strong=\"G5568\"*, hymns|strong=\"G5215\"*, and|strong=\"G2532\"* spiritual|strong=\"G4152\"* songs|strong=\"G5603\"*; singing and|strong=\"G2532\"* making|strong=\"G5567\"* melody|strong=\"G5567\"* in|strong=\"G2532\"* your|strong=\"G2962\"* heart|strong=\"G2588\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*;" + }, + { + "verseNum": 20, + "text": "giving|strong=\"G2168\"* thanks|strong=\"G2168\"* always|strong=\"G3842\"* concerning|strong=\"G5228\"* all|strong=\"G3956\"* things|strong=\"G3956\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2316\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* to|strong=\"G2532\"* God|strong=\"G2316\"*, even|strong=\"G2532\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*;" + }, + { + "verseNum": 21, + "text": "subjecting|strong=\"G5293\"* yourselves|strong=\"G5293\"* to|strong=\"G1722\"* one|strong=\"G1722\"* another|strong=\"G5293\"* in|strong=\"G1722\"* the|strong=\"G1722\"* fear|strong=\"G5401\"* of|strong=\"G1722\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 22, + "text": "Wives|strong=\"G1135\"*, be|strong=\"G3588\"* subject to|strong=\"G2962\"* your|strong=\"G2962\"* own|strong=\"G2398\"* husbands, as|strong=\"G5613\"* to|strong=\"G2962\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"G3754\"* the|strong=\"G2532\"* husband is|strong=\"G1510\"* the|strong=\"G2532\"* head|strong=\"G2776\"* of|strong=\"G2532\"* the|strong=\"G2532\"* wife|strong=\"G1135\"*, as|strong=\"G5613\"* Christ|strong=\"G5547\"* also|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* head|strong=\"G2776\"* of|strong=\"G2532\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"*, being|strong=\"G1510\"* himself the|strong=\"G2532\"* savior|strong=\"G4990\"* of|strong=\"G2532\"* the|strong=\"G2532\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"G2532\"* as|strong=\"G5613\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* is|strong=\"G3588\"* subject|strong=\"G5293\"* to|strong=\"G2532\"* Christ|strong=\"G5547\"*, so|strong=\"G3779\"* let|strong=\"G2532\"* the|strong=\"G1722\"* wives|strong=\"G1135\"* also|strong=\"G2532\"* be|strong=\"G2532\"* to|strong=\"G2532\"* their|strong=\"G2532\"* own husbands in|strong=\"G1722\"* everything|strong=\"G3956\"*." + }, + { + "verseNum": 25, + "text": "Husbands, love your|strong=\"G2532\"* wives|strong=\"G1135\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* Christ|strong=\"G5547\"* also|strong=\"G2532\"* loved the|strong=\"G2532\"* assembly|strong=\"G1577\"* and|strong=\"G2532\"* gave|strong=\"G3860\"* himself|strong=\"G1438\"* up|strong=\"G3860\"* for|strong=\"G5228\"* her|strong=\"G1438\"*," + }, + { + "verseNum": 26, + "text": "that|strong=\"G2443\"* he|strong=\"G3588\"* might sanctify her|strong=\"G1438\"*, having cleansed|strong=\"G2511\"* her|strong=\"G1438\"* by|strong=\"G1722\"* the|strong=\"G1722\"* washing|strong=\"G3067\"* of|strong=\"G1722\"* water|strong=\"G5204\"* with|strong=\"G1722\"* the|strong=\"G1722\"* word|strong=\"G4487\"*," + }, + { + "verseNum": 27, + "text": "that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* present|strong=\"G3936\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"* to|strong=\"G2443\"* himself|strong=\"G1438\"* gloriously, not|strong=\"G3361\"* having|strong=\"G2192\"* spot|strong=\"G4696\"* or|strong=\"G2228\"* wrinkle|strong=\"G4512\"* or|strong=\"G2228\"* any|strong=\"G5100\"* such|strong=\"G5108\"* thing|strong=\"G5100\"*, but|strong=\"G2532\"* that|strong=\"G2443\"* she|strong=\"G2532\"* should|strong=\"G5100\"* be|strong=\"G1510\"* holy and|strong=\"G2532\"* without|strong=\"G3361\"* defect." + }, + { + "verseNum": 28, + "text": "Even|strong=\"G2532\"* so|strong=\"G3779\"* husbands also|strong=\"G2532\"* ought|strong=\"G3784\"* to|strong=\"G2532\"* love their|strong=\"G1438\"* own|strong=\"G1438\"* wives|strong=\"G1135\"* as|strong=\"G5613\"* their|strong=\"G1438\"* own|strong=\"G1438\"* bodies|strong=\"G4983\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* loves his|strong=\"G1438\"* own|strong=\"G1438\"* wife|strong=\"G1135\"* loves himself|strong=\"G1438\"*." + }, + { + "verseNum": 29, + "text": "For|strong=\"G1063\"* no|strong=\"G3762\"* man|strong=\"G3762\"* ever|strong=\"G4218\"* hated|strong=\"G3404\"* his|strong=\"G1438\"* own|strong=\"G1438\"* flesh|strong=\"G4561\"*, but|strong=\"G2532\"* nourishes|strong=\"G1625\"* and|strong=\"G2532\"* cherishes|strong=\"G2282\"* it|strong=\"G2532\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"* also|strong=\"G2532\"* does|strong=\"G3404\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"*," + }, + { + "verseNum": 30, + "text": "because|strong=\"G3754\"* we|strong=\"G3754\"* are|strong=\"G1510\"* members|strong=\"G3196\"* of|strong=\"G4983\"* his|strong=\"G3754\"* body|strong=\"G4983\"*, of|strong=\"G4983\"* his|strong=\"G3754\"* flesh and|strong=\"G4983\"* bones." + }, + { + "verseNum": 31, + "text": "“For|strong=\"G1519\"* this|strong=\"G3778\"* cause|strong=\"G3588\"* a|strong=\"G2532\"* man|strong=\"G3778\"* will|strong=\"G1510\"* leave|strong=\"G2641\"* his|strong=\"G1519\"* father|strong=\"G3962\"* and|strong=\"G2532\"* mother|strong=\"G3384\"* and|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* joined|strong=\"G4347\"* to|strong=\"G1519\"* his|strong=\"G1519\"* wife|strong=\"G1135\"*. Then|strong=\"G2532\"* the|strong=\"G2532\"* two|strong=\"G1417\"* will|strong=\"G1510\"* become|strong=\"G1510\"* one|strong=\"G1520\"* flesh|strong=\"G4561\"*.”+ 5:31 Genesis 2:24*" + }, + { + "verseNum": 32, + "text": "This|strong=\"G3778\"* mystery|strong=\"G3466\"* is|strong=\"G1510\"* great|strong=\"G3173\"*, but|strong=\"G1161\"* I|strong=\"G1473\"* speak|strong=\"G3004\"* concerning|strong=\"G1519\"* Christ|strong=\"G5547\"* and|strong=\"G2532\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"*." + }, + { + "verseNum": 33, + "text": "Nevertheless|strong=\"G4133\"* each|strong=\"G1538\"* of|strong=\"G2532\"* you|strong=\"G5210\"* must|strong=\"G1135\"* also|strong=\"G2532\"* love his|strong=\"G1438\"* own|strong=\"G1438\"* wife|strong=\"G1135\"* even|strong=\"G2532\"* as|strong=\"G5613\"* himself|strong=\"G1438\"*; and|strong=\"G2532\"* let|strong=\"G1161\"* the|strong=\"G2532\"* wife|strong=\"G1135\"* see that|strong=\"G2443\"* she|strong=\"G2532\"* respects|strong=\"G5399\"* her|strong=\"G1438\"* husband." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Children|strong=\"G5043\"*, obey|strong=\"G5219\"* your|strong=\"G2962\"* parents|strong=\"G1118\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, for|strong=\"G1063\"* this|strong=\"G3778\"* is|strong=\"G1510\"* right|strong=\"G1342\"*." + }, + { + "verseNum": 2, + "text": "“Honor|strong=\"G5091\"* your|strong=\"G5091\"* father|strong=\"G3962\"* and|strong=\"G2532\"* mother|strong=\"G3384\"*,” which|strong=\"G3588\"* is|strong=\"G1510\"* the|strong=\"G1722\"* first|strong=\"G4413\"* commandment|strong=\"G1785\"* with|strong=\"G1722\"* a|strong=\"G2532\"* promise|strong=\"G1860\"*:" + }, + { + "verseNum": 3, + "text": "“that|strong=\"G2443\"* it|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G1096\"* well|strong=\"G2532\"* with|strong=\"G2532\"* you|strong=\"G4771\"*, and|strong=\"G2532\"* you|strong=\"G4771\"* may|strong=\"G2532\"* live|strong=\"G2532\"* long|strong=\"G3118\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*.”+ 6:3 Deuteronomy 5:16*" + }, + { + "verseNum": 4, + "text": "You|strong=\"G5210\"* fathers|strong=\"G3962\"*, don’t|strong=\"G3588\"* provoke|strong=\"G3949\"* your|strong=\"G2962\"* children|strong=\"G5043\"* to|strong=\"G2532\"* wrath|strong=\"G3949\"*, but|strong=\"G2532\"* nurture|strong=\"G3809\"* them|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* discipline|strong=\"G3809\"* and|strong=\"G2532\"* instruction|strong=\"G3559\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 5, + "text": "Servants|strong=\"G1401\"*, be|strong=\"G2532\"* obedient|strong=\"G5219\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"* are|strong=\"G3588\"* your|strong=\"G2962\"* masters|strong=\"G2962\"*, with|strong=\"G3326\"* fear|strong=\"G5401\"* and|strong=\"G2532\"* trembling|strong=\"G5156\"*, in|strong=\"G1722\"* singleness of|strong=\"G2532\"* your|strong=\"G2962\"* heart|strong=\"G2588\"*, as|strong=\"G5613\"* to|strong=\"G2532\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 6, + "text": "not|strong=\"G3361\"* in|strong=\"G2596\"* the|strong=\"G1537\"* way|strong=\"G2596\"* of|strong=\"G1537\"* service|strong=\"G3787\"* only when|strong=\"G5613\"* eyes are|strong=\"G3588\"* on|strong=\"G1537\"* you|strong=\"G4160\"*, as|strong=\"G5613\"* men|strong=\"G1401\"* pleasers, but|strong=\"G3361\"* as|strong=\"G5613\"* servants|strong=\"G1401\"* of|strong=\"G1537\"* Christ|strong=\"G5547\"*, doing|strong=\"G4160\"* the|strong=\"G1537\"* will|strong=\"G2307\"* of|strong=\"G1537\"* God|strong=\"G2316\"* from|strong=\"G1537\"* the|strong=\"G1537\"* heart|strong=\"G5590\"*," + }, + { + "verseNum": 7, + "text": "with|strong=\"G3326\"* good|strong=\"G3756\"* will|strong=\"G2532\"* doing|strong=\"G2133\"* service|strong=\"G1398\"* as|strong=\"G5613\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* not|strong=\"G3756\"* to|strong=\"G2532\"* men|strong=\"G3588\"*," + }, + { + "verseNum": 8, + "text": "knowing|strong=\"G1492\"* that|strong=\"G3754\"* whatever|strong=\"G1437\"* good|strong=\"G1437\"* thing|strong=\"G5100\"* each|strong=\"G1538\"* one|strong=\"G5100\"* does|strong=\"G4160\"*, he|strong=\"G3754\"* will|strong=\"G2962\"* receive|strong=\"G2865\"* the|strong=\"G3754\"* same|strong=\"G3778\"* good|strong=\"G1437\"* again from|strong=\"G3844\"* the|strong=\"G3754\"* Lord|strong=\"G2962\"*, whether|strong=\"G1535\"* he|strong=\"G3754\"* is|strong=\"G3778\"* bound or|strong=\"G1535\"* free|strong=\"G1658\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"G5210\"* masters|strong=\"G2962\"*, do|strong=\"G4160\"* the|strong=\"G1722\"* same|strong=\"G2532\"* things|strong=\"G3588\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* give|strong=\"G4160\"* up|strong=\"G2532\"* threatening, knowing|strong=\"G1492\"* that|strong=\"G3754\"* he|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G1510\"* both|strong=\"G2532\"* their|strong=\"G1438\"* Master|strong=\"G2962\"* and|strong=\"G2532\"* yours|strong=\"G4771\"* is|strong=\"G1510\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*, and|strong=\"G2532\"* there|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3756\"* partiality|strong=\"G4382\"* with|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "Finally|strong=\"G3064\"*, be|strong=\"G2532\"* strong|strong=\"G1743\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* strength|strong=\"G2479\"* of|strong=\"G2532\"* his|strong=\"G1722\"* might|strong=\"G2479\"*." + }, + { + "verseNum": 11, + "text": "Put|strong=\"G1746\"* on|strong=\"G1746\"* the|strong=\"G4314\"* whole armor|strong=\"G3833\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, that|strong=\"G3588\"* you|strong=\"G5210\"* may|strong=\"G1410\"* be|strong=\"G1410\"* able|strong=\"G1410\"* to|strong=\"G4314\"* stand|strong=\"G2476\"* against|strong=\"G4314\"* the|strong=\"G4314\"* wiles|strong=\"G3180\"* of|strong=\"G2316\"* the|strong=\"G4314\"* devil|strong=\"G1228\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G3754\"* our|strong=\"G2532\"* wrestling is|strong=\"G1510\"* not|strong=\"G3756\"* against|strong=\"G4314\"* flesh|strong=\"G4561\"* and|strong=\"G2532\"* blood, but|strong=\"G2532\"* against|strong=\"G4314\"* the|strong=\"G1722\"* principalities, against|strong=\"G4314\"* the|strong=\"G1722\"* powers|strong=\"G1849\"*, against|strong=\"G4314\"* the|strong=\"G1722\"* world|strong=\"G2888\"*’s rulers|strong=\"G2888\"* of|strong=\"G2532\"* the|strong=\"G1722\"* darkness|strong=\"G4655\"* of|strong=\"G2532\"* this|strong=\"G3778\"* age, and|strong=\"G2532\"* against|strong=\"G4314\"* the|strong=\"G1722\"* spiritual|strong=\"G4152\"* forces|strong=\"G4189\"* of|strong=\"G2532\"* wickedness|strong=\"G4189\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavenly|strong=\"G2032\"* places." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"G1223\"* put|strong=\"G2476\"* on|strong=\"G1722\"* the|strong=\"G1722\"* whole|strong=\"G1722\"* armor|strong=\"G3833\"* of|strong=\"G2250\"* God|strong=\"G2316\"*, that|strong=\"G2443\"* you|strong=\"G1722\"* may|strong=\"G2532\"* be|strong=\"G2532\"* able|strong=\"G1410\"* to|strong=\"G2443\"* withstand in|strong=\"G1722\"* the|strong=\"G1722\"* evil|strong=\"G4190\"* day|strong=\"G2250\"*, and|strong=\"G2532\"* having|strong=\"G2532\"* done|strong=\"G2716\"* all|strong=\"G2532\"*, to|strong=\"G2443\"* stand|strong=\"G2476\"*." + }, + { + "verseNum": 14, + "text": "Stand|strong=\"G2476\"* therefore|strong=\"G3767\"*, having|strong=\"G2532\"* the|strong=\"G1722\"* utility belt|strong=\"G4024\"* of|strong=\"G2532\"* truth buckled around your|strong=\"G2532\"* waist|strong=\"G3751\"*, and|strong=\"G2532\"* having|strong=\"G2532\"* put|strong=\"G1746\"* on|strong=\"G1722\"* the|strong=\"G1722\"* breastplate|strong=\"G2382\"* of|strong=\"G2532\"* righteousness|strong=\"G1343\"*," + }, + { + "verseNum": 15, + "text": "and|strong=\"G2532\"* having|strong=\"G2532\"* fitted your|strong=\"G2532\"* feet|strong=\"G4228\"* with|strong=\"G1722\"* the|strong=\"G1722\"* preparation|strong=\"G2091\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G2532\"* peace|strong=\"G1515\"*," + }, + { + "verseNum": 16, + "text": "above all|strong=\"G3956\"*, taking up|strong=\"G1722\"* the|strong=\"G1722\"* shield|strong=\"G2375\"* of|strong=\"G1722\"* faith|strong=\"G4102\"*, with|strong=\"G1722\"* which|strong=\"G3739\"* you|strong=\"G3739\"* will|strong=\"G3739\"* be|strong=\"G1410\"* able|strong=\"G1410\"* to|strong=\"G1410\"* quench|strong=\"G4570\"* all|strong=\"G3956\"* the|strong=\"G1722\"* fiery|strong=\"G4448\"* darts of|strong=\"G1722\"* the|strong=\"G1722\"* evil|strong=\"G4190\"* one|strong=\"G3739\"*." + }, + { + "verseNum": 17, + "text": "And|strong=\"G2532\"* take|strong=\"G1209\"* the|strong=\"G2532\"* helmet|strong=\"G4030\"* of|strong=\"G4151\"* salvation|strong=\"G4992\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* sword|strong=\"G3162\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"*, which|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G2532\"* word|strong=\"G4487\"*+ 6:17 from the Greek “ῥῆμα” (rhema), which means “spoken word”* of|strong=\"G4151\"* God|strong=\"G2316\"*;" + }, + { + "verseNum": 18, + "text": "with|strong=\"G1722\"* all|strong=\"G3956\"* prayer|strong=\"G4335\"* and|strong=\"G2532\"* requests|strong=\"G1162\"*, praying|strong=\"G4336\"* at|strong=\"G1722\"* all|strong=\"G3956\"* times|strong=\"G2540\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*, and|strong=\"G2532\"* being|strong=\"G2532\"* watchful to|strong=\"G1519\"* this|strong=\"G3588\"* end|strong=\"G1519\"* in|strong=\"G1722\"* all|strong=\"G3956\"* perseverance|strong=\"G4343\"* and|strong=\"G2532\"* requests|strong=\"G1162\"* for|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G1722\"* saints." + }, + { + "verseNum": 19, + "text": "Pray|strong=\"G5228\"* for|strong=\"G5228\"* me|strong=\"G1325\"*, that|strong=\"G2443\"* utterance|strong=\"G3056\"* may|strong=\"G2532\"* be|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2443\"* me|strong=\"G1325\"* in|strong=\"G1722\"* opening my|strong=\"G1722\"* mouth|strong=\"G4750\"*, to|strong=\"G2443\"* make|strong=\"G1107\"* known|strong=\"G1107\"* with|strong=\"G1722\"* boldness|strong=\"G3954\"* the|strong=\"G1722\"* mystery|strong=\"G3466\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G3056\"*," + }, + { + "verseNum": 20, + "text": "for|strong=\"G5228\"* which|strong=\"G3739\"* I|strong=\"G1473\"* am|strong=\"G1473\"* an|strong=\"G1722\"* ambassador|strong=\"G4243\"* in|strong=\"G1722\"* chains|strong=\"G1210\"*; that|strong=\"G2443\"* in|strong=\"G1722\"* it|strong=\"G3739\"* I|strong=\"G1473\"* may|strong=\"G2443\"* speak|strong=\"G2980\"* boldly|strong=\"G3955\"*, as|strong=\"G5613\"* I|strong=\"G1473\"* ought|strong=\"G1163\"* to|strong=\"G2443\"* speak|strong=\"G2980\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"G1161\"* that|strong=\"G2443\"* you|strong=\"G5210\"* also|strong=\"G2532\"* may|strong=\"G2532\"* know|strong=\"G1492\"* my|strong=\"G1722\"* affairs|strong=\"G3588\"*, how|strong=\"G5101\"* I|strong=\"G1473\"* am|strong=\"G1473\"* doing|strong=\"G4238\"*, Tychicus|strong=\"G5190\"*, the|strong=\"G1722\"* beloved brother and|strong=\"G2532\"* faithful|strong=\"G4103\"* servant|strong=\"G1249\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, will|strong=\"G5101\"* make|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G2443\"* you|strong=\"G5210\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"G1473\"* have|strong=\"G2532\"* sent|strong=\"G3992\"* him|strong=\"G3588\"* to|strong=\"G1519\"* you|strong=\"G5210\"* for|strong=\"G1519\"* this|strong=\"G3778\"* very|strong=\"G2532\"* purpose|strong=\"G3739\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* know|strong=\"G1097\"* our|strong=\"G2532\"* state|strong=\"G4012\"* and|strong=\"G2532\"* that|strong=\"G2443\"* he|strong=\"G2532\"* may|strong=\"G2532\"* comfort|strong=\"G3870\"* your|strong=\"G2532\"* hearts|strong=\"G2588\"*." + }, + { + "verseNum": 23, + "text": "Peace|strong=\"G1515\"* be|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* brothers, and|strong=\"G2532\"* love with|strong=\"G3326\"* faith|strong=\"G4102\"*, from|strong=\"G1515\"* God|strong=\"G2316\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 24, + "text": "Grace|strong=\"G5485\"* be|strong=\"G3956\"* with|strong=\"G3326\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* love our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* with|strong=\"G3326\"* incorruptible love. Amen." + } + ] + } + ] + }, + { + "name": "Philippians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"* and|strong=\"G2532\"* Timothy|strong=\"G5095\"*, servants|strong=\"G1401\"* of|strong=\"G2532\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:1 “Christ” means “Anointed One”.* to|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G1722\"* saints in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* who|strong=\"G3588\"* are|strong=\"G1510\"* at|strong=\"G1722\"* Philippi|strong=\"G5375\"*, with|strong=\"G1722\"* the|strong=\"G1722\"* overseers|strong=\"G1985\"*+ 1:1 or, superintendents, or bishops* and|strong=\"G2532\"* servants|strong=\"G1401\"*:+ 1:1 Or, deacons*" + }, + { + "verseNum": 2, + "text": "Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"G1473\"* thank|strong=\"G2168\"* my|strong=\"G3956\"* God|strong=\"G2316\"* whenever I|strong=\"G1473\"* remember you|strong=\"G5210\"*," + }, + { + "verseNum": 4, + "text": "always|strong=\"G3842\"* in|strong=\"G1722\"* every|strong=\"G3956\"* request|strong=\"G1162\"* of|strong=\"G1722\"* mine|strong=\"G1473\"* on|strong=\"G1722\"* behalf|strong=\"G5228\"* of|strong=\"G1722\"* you|strong=\"G5210\"* all|strong=\"G3956\"*, making|strong=\"G4160\"* my|strong=\"G1722\"* requests|strong=\"G1162\"* with|strong=\"G3326\"* joy|strong=\"G5479\"*," + }, + { + "verseNum": 5, + "text": "for|strong=\"G1519\"* your|strong=\"G1909\"* partnership+ 1:5 The word translated “partnership” (κοινωνίᾳ) also means “fellowship” and “sharing”.* in|strong=\"G1519\"* furtherance of|strong=\"G2250\"* the|strong=\"G1519\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* from|strong=\"G3588\"* the|strong=\"G1519\"* first|strong=\"G4413\"* day|strong=\"G2250\"* until|strong=\"G1519\"* now|strong=\"G3568\"*;" + }, + { + "verseNum": 6, + "text": "being|strong=\"G5547\"* confident|strong=\"G3982\"* of|strong=\"G2250\"* this|strong=\"G3778\"* very|strong=\"G3778\"* thing|strong=\"G3778\"*, that|strong=\"G3754\"* he|strong=\"G3754\"* who|strong=\"G3588\"* began|strong=\"G1728\"* a|strong=\"G1722\"* good|strong=\"G3588\"* work|strong=\"G2041\"* in|strong=\"G1722\"* you|strong=\"G5210\"* will|strong=\"G3778\"* complete|strong=\"G2005\"* it|strong=\"G3754\"* until|strong=\"G1722\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G2250\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 7, + "text": "It|strong=\"G2532\"* is|strong=\"G1510\"* even|strong=\"G2532\"* right|strong=\"G1342\"* for|strong=\"G5228\"* me|strong=\"G1473\"* to|strong=\"G2532\"* think|strong=\"G5426\"* this|strong=\"G3778\"* way|strong=\"G1722\"* on|strong=\"G1722\"* behalf|strong=\"G5228\"* of|strong=\"G1223\"* all|strong=\"G3956\"* of|strong=\"G1223\"* you|strong=\"G5210\"*, because|strong=\"G1223\"* I|strong=\"G1473\"* have|strong=\"G2192\"* you|strong=\"G5210\"* in|strong=\"G1722\"* my|strong=\"G1722\"* heart|strong=\"G2588\"*, because|strong=\"G1223\"* both|strong=\"G2532\"* in|strong=\"G1722\"* my|strong=\"G1722\"* bonds|strong=\"G1199\"* and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* defense and|strong=\"G2532\"* confirmation of|strong=\"G1223\"* the|strong=\"G1722\"* Good|strong=\"G3956\"* News|strong=\"G2098\"*, you|strong=\"G5210\"* all|strong=\"G3956\"* are|strong=\"G1510\"* partakers|strong=\"G4791\"* with|strong=\"G1722\"* me|strong=\"G1473\"* of|strong=\"G1223\"* grace|strong=\"G5485\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* God|strong=\"G2316\"* is|strong=\"G3588\"* my|strong=\"G1722\"* witness|strong=\"G3144\"*, how|strong=\"G5613\"* I|strong=\"G1473\"* long|strong=\"G1971\"* after|strong=\"G5613\"* all|strong=\"G3956\"* of|strong=\"G2316\"* you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* tender|strong=\"G4698\"* mercies of|strong=\"G2316\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 9, + "text": "This|strong=\"G3778\"* I|strong=\"G2532\"* pray|strong=\"G4336\"*, that|strong=\"G2443\"* your|strong=\"G2532\"* love may|strong=\"G2532\"* abound|strong=\"G4052\"* yet|strong=\"G2089\"* more|strong=\"G3123\"* and|strong=\"G2532\"* more|strong=\"G3123\"* in|strong=\"G1722\"* knowledge|strong=\"G1922\"* and|strong=\"G2532\"* all|strong=\"G3956\"* discernment," + }, + { + "verseNum": 10, + "text": "so|strong=\"G2443\"* that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* approve|strong=\"G1381\"* the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G2443\"* are|strong=\"G1510\"* excellent|strong=\"G1308\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* be|strong=\"G1510\"* sincere|strong=\"G1506\"* and|strong=\"G2532\"* without|strong=\"G2532\"* offense to|strong=\"G1519\"* the|strong=\"G2532\"* day|strong=\"G2250\"* of|strong=\"G2250\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 11, + "text": "being|strong=\"G2532\"* filled|strong=\"G4137\"* with|strong=\"G1223\"* the|strong=\"G2532\"* fruits|strong=\"G2590\"* of|strong=\"G1223\"* righteousness|strong=\"G1343\"* which|strong=\"G3588\"* are|strong=\"G3588\"* through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, to|strong=\"G1519\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* praise|strong=\"G1868\"* of|strong=\"G1223\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"G1161\"* I|strong=\"G1473\"* desire|strong=\"G1014\"* to|strong=\"G1519\"* have|strong=\"G1473\"* you|strong=\"G5210\"* know|strong=\"G1097\"*, brothers,+ 1:12 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* that|strong=\"G3754\"* the|strong=\"G1519\"* things|strong=\"G3588\"* which|strong=\"G3588\"* happened|strong=\"G3588\"* to|strong=\"G1519\"* me|strong=\"G1473\"* have|strong=\"G1473\"* turned|strong=\"G2064\"* out|strong=\"G2064\"* rather|strong=\"G3123\"* to|strong=\"G1519\"* the|strong=\"G1519\"* progress|strong=\"G4297\"* of|strong=\"G2098\"* the|strong=\"G1519\"* Good|strong=\"G3588\"* News|strong=\"G2098\"*," + }, + { + "verseNum": 13, + "text": "so|strong=\"G2532\"* that|strong=\"G3588\"* it|strong=\"G2532\"* became|strong=\"G1096\"* evident|strong=\"G5318\"* to|strong=\"G2532\"* the|strong=\"G1722\"* whole|strong=\"G3650\"* palace|strong=\"G4232\"*+ 1:13 or, praetorian * guard|strong=\"G2532\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G1722\"* rest|strong=\"G3062\"*, that|strong=\"G3588\"* my|strong=\"G1722\"* bonds|strong=\"G1199\"* are|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"G2532\"* that|strong=\"G3588\"* most|strong=\"G4183\"* of|strong=\"G3056\"* the|strong=\"G1722\"* brothers in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, being|strong=\"G2532\"* confident|strong=\"G3982\"* through|strong=\"G1722\"* my|strong=\"G1722\"* bonds|strong=\"G1199\"*, are|strong=\"G3588\"* more|strong=\"G4119\"* abundantly|strong=\"G4056\"* bold|strong=\"G5111\"* to|strong=\"G2532\"* speak|strong=\"G2980\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* without|strong=\"G2532\"* fear." + }, + { + "verseNum": 15, + "text": "Some|strong=\"G5100\"* indeed|strong=\"G2532\"* preach|strong=\"G2784\"* Christ|strong=\"G5547\"* even|strong=\"G2532\"* out|strong=\"G2532\"* of|strong=\"G1223\"* envy|strong=\"G5355\"* and|strong=\"G2532\"* strife|strong=\"G2054\"*, and|strong=\"G2532\"* some|strong=\"G5100\"* also|strong=\"G2532\"* out|strong=\"G2532\"* of|strong=\"G1223\"* good|strong=\"G2107\"* will|strong=\"G2532\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"G1519\"* former|strong=\"G3588\"* insincerely preach Christ from|strong=\"G1537\"* selfish ambition, thinking that|strong=\"G3754\"* they|strong=\"G3588\"* add affliction to|strong=\"G1519\"* my|strong=\"G3754\"* chains;" + }, + { + "verseNum": 17, + "text": "but|strong=\"G1161\"* the|strong=\"G1537\"* latter out|strong=\"G1537\"* of|strong=\"G1537\"* love, knowing that|strong=\"G3588\"* I|strong=\"G1473\"* am|strong=\"G1473\"* appointed for|strong=\"G1161\"* the|strong=\"G1537\"* defense of|strong=\"G1537\"* the|strong=\"G1537\"* Good|strong=\"G3756\"* News." + }, + { + "verseNum": 18, + "text": "What|strong=\"G5101\"* does|strong=\"G5101\"* it|strong=\"G2532\"* matter? Only|strong=\"G2532\"* that|strong=\"G3754\"* in|strong=\"G1722\"* every|strong=\"G3956\"* way|strong=\"G5158\"*, whether|strong=\"G1535\"* in|strong=\"G1722\"* pretense|strong=\"G4392\"* or|strong=\"G1535\"* in|strong=\"G1722\"* truth, Christ|strong=\"G5547\"* is|strong=\"G5101\"* proclaimed|strong=\"G2605\"*. I|strong=\"G2532\"* rejoice|strong=\"G5463\"* in|strong=\"G1722\"* this|strong=\"G3778\"*, yes|strong=\"G1063\"*, and|strong=\"G2532\"* will|strong=\"G5101\"* rejoice|strong=\"G5463\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* know|strong=\"G1492\"* that|strong=\"G3754\"* this|strong=\"G3778\"* will|strong=\"G2532\"* turn out|strong=\"G2532\"* to|strong=\"G1519\"* my|strong=\"G1473\"* salvation|strong=\"G4991\"* through|strong=\"G1223\"* your|strong=\"G1223\"* prayers|strong=\"G1162\"* and|strong=\"G2532\"* the|strong=\"G2532\"* supply|strong=\"G2024\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 20, + "text": "according|strong=\"G2596\"* to|strong=\"G2532\"* my|strong=\"G1722\"* earnest expectation and|strong=\"G2532\"* hope|strong=\"G1680\"*, that|strong=\"G3754\"* I|strong=\"G1473\"* will|strong=\"G2532\"* in|strong=\"G1722\"* no|strong=\"G3762\"* way|strong=\"G2596\"* be|strong=\"G2532\"* disappointed, but|strong=\"G2532\"* with|strong=\"G1722\"* all|strong=\"G3956\"* boldness|strong=\"G3954\"*, as|strong=\"G5613\"* always|strong=\"G3842\"*, now|strong=\"G3568\"* also|strong=\"G2532\"* Christ|strong=\"G5547\"* will|strong=\"G2532\"* be|strong=\"G2532\"* magnified|strong=\"G3170\"* in|strong=\"G1722\"* my|strong=\"G1722\"* body|strong=\"G4983\"*, whether|strong=\"G1535\"* by|strong=\"G1223\"* life|strong=\"G2222\"* or|strong=\"G1535\"* by|strong=\"G1223\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"G1063\"* to|strong=\"G2532\"* me|strong=\"G1473\"* to|strong=\"G2532\"* live|strong=\"G2198\"* is|strong=\"G3588\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* die is|strong=\"G3588\"* gain|strong=\"G2771\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* I|strong=\"G1473\"* live|strong=\"G2198\"* on|strong=\"G1722\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, this|strong=\"G3778\"* will|strong=\"G5101\"* bring|strong=\"G2532\"* fruit|strong=\"G2590\"* from|strong=\"G2532\"* my|strong=\"G1722\"* work|strong=\"G2041\"*; yet|strong=\"G2532\"* I|strong=\"G1473\"* don’t|strong=\"G3588\"* know|strong=\"G1722\"* what|strong=\"G5101\"* I|strong=\"G1473\"* will|strong=\"G5101\"* choose." + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* I|strong=\"G2532\"* am|strong=\"G1510\"* hard|strong=\"G4183\"* pressed|strong=\"G4912\"* between|strong=\"G2532\"* the|strong=\"G2532\"* two|strong=\"G1417\"*, having|strong=\"G2192\"* the|strong=\"G2532\"* desire|strong=\"G1939\"* to|strong=\"G1519\"* depart and|strong=\"G2532\"* be|strong=\"G1510\"* with|strong=\"G4862\"* Christ|strong=\"G5547\"*, which|strong=\"G3588\"* is|strong=\"G1510\"* far|strong=\"G3123\"* better|strong=\"G2909\"*." + }, + { + "verseNum": 24, + "text": "Yet|strong=\"G1161\"* to|strong=\"G1722\"* remain|strong=\"G1961\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"* is|strong=\"G3588\"* more|strong=\"G1161\"* needful for|strong=\"G1223\"* your|strong=\"G1223\"* sake|strong=\"G1223\"*." + }, + { + "verseNum": 25, + "text": "Having|strong=\"G2532\"* this|strong=\"G3778\"* confidence|strong=\"G3982\"*, I|strong=\"G2532\"* know|strong=\"G1492\"* that|strong=\"G3754\"* I|strong=\"G2532\"* will|strong=\"G2532\"* remain|strong=\"G3306\"*, yes, and|strong=\"G2532\"* remain|strong=\"G3306\"* with|strong=\"G2532\"* you|strong=\"G5210\"* all|strong=\"G3956\"* for|strong=\"G3754\"* your|strong=\"G2532\"* progress|strong=\"G4297\"* and|strong=\"G2532\"* joy|strong=\"G5479\"* in|strong=\"G1519\"* the|strong=\"G2532\"* faith|strong=\"G4102\"*," + }, + { + "verseNum": 26, + "text": "that|strong=\"G2443\"* your|strong=\"G1223\"* boasting|strong=\"G2745\"*+ 1:26 or, rejoicing* may|strong=\"G2443\"* abound|strong=\"G4052\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* in|strong=\"G1722\"* me|strong=\"G1473\"* through|strong=\"G1223\"* my|strong=\"G1699\"* presence|strong=\"G3952\"* with|strong=\"G1722\"* you|strong=\"G5210\"* again|strong=\"G3825\"*." + }, + { + "verseNum": 27, + "text": "Only|strong=\"G3440\"* let|strong=\"G2443\"* your|strong=\"G2532\"* way|strong=\"G1722\"* of|strong=\"G4012\"* life|strong=\"G5590\"* be|strong=\"G2532\"* worthy of|strong=\"G4012\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G4012\"* Christ|strong=\"G5547\"*, that|strong=\"G3754\"* whether|strong=\"G1535\"* I|strong=\"G2532\"* come|strong=\"G2064\"* and|strong=\"G2532\"* see|strong=\"G3708\"* you|strong=\"G5210\"* or|strong=\"G1535\"* am|strong=\"G2532\"* absent, I|strong=\"G2532\"* may|strong=\"G2532\"* hear of|strong=\"G4012\"* your|strong=\"G2532\"* state|strong=\"G4012\"*, that|strong=\"G3754\"* you|strong=\"G5210\"* stand|strong=\"G4739\"* firm|strong=\"G4739\"* in|strong=\"G1722\"* one|strong=\"G1520\"* spirit|strong=\"G4151\"*, with|strong=\"G1722\"* one|strong=\"G1520\"* soul|strong=\"G5590\"* striving|strong=\"G4866\"* for|strong=\"G3754\"* the|strong=\"G1722\"* faith|strong=\"G4102\"* of|strong=\"G4012\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"*;" + }, + { + "verseNum": 28, + "text": "and|strong=\"G2532\"* in|strong=\"G1722\"* nothing|strong=\"G3367\"* frightened by|strong=\"G1722\"* the|strong=\"G1722\"* adversaries, which|strong=\"G3588\"* is|strong=\"G1510\"* for|strong=\"G1161\"* them|strong=\"G3588\"* a|strong=\"G2532\"* proof|strong=\"G1732\"* of|strong=\"G5259\"* destruction, but|strong=\"G1161\"* to|strong=\"G2532\"* you|strong=\"G5210\"* of|strong=\"G5259\"* salvation|strong=\"G4991\"*, and|strong=\"G2532\"* that|strong=\"G3588\"* from|strong=\"G2532\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 29, + "text": "Because|strong=\"G3754\"* it|strong=\"G2532\"* has|strong=\"G5547\"* been|strong=\"G2532\"* granted|strong=\"G5483\"* to|strong=\"G1519\"* you|strong=\"G5210\"* on|strong=\"G1519\"* behalf|strong=\"G5228\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*, not|strong=\"G3756\"* only|strong=\"G3440\"* to|strong=\"G1519\"* believe|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* to|strong=\"G1519\"* suffer|strong=\"G3958\"* on|strong=\"G1519\"* his|strong=\"G1519\"* behalf|strong=\"G5228\"*," + }, + { + "verseNum": 30, + "text": "having|strong=\"G2192\"* the|strong=\"G1722\"* same|strong=\"G2532\"* conflict which|strong=\"G3588\"* you|strong=\"G1722\"* saw|strong=\"G3708\"* in|strong=\"G1722\"* me|strong=\"G1473\"* and|strong=\"G2532\"* now|strong=\"G3568\"* hear is|strong=\"G3588\"* in|strong=\"G1722\"* me|strong=\"G1473\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "If|strong=\"G1487\"* therefore|strong=\"G3767\"* there|strong=\"G2532\"* is|strong=\"G5547\"* any|strong=\"G5100\"* exhortation|strong=\"G3874\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*, if|strong=\"G1487\"* any|strong=\"G5100\"* consolation|strong=\"G3874\"* of|strong=\"G4151\"* love, if|strong=\"G1487\"* any|strong=\"G5100\"* fellowship|strong=\"G2842\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*, if|strong=\"G1487\"* any|strong=\"G5100\"* tender|strong=\"G4698\"* mercies|strong=\"G3628\"* and|strong=\"G2532\"* compassion|strong=\"G3628\"*," + }, + { + "verseNum": 2, + "text": "make|strong=\"G4137\"* my|strong=\"G1473\"* joy|strong=\"G5479\"* full|strong=\"G4137\"* by|strong=\"G1520\"* being|strong=\"G2192\"* like-minded, having|strong=\"G2192\"* the|strong=\"G3588\"* same love, being|strong=\"G2192\"* of|strong=\"G1520\"* one|strong=\"G1520\"* accord|strong=\"G4861\"*, of|strong=\"G1520\"* one|strong=\"G1520\"* mind|strong=\"G5426\"*;" + }, + { + "verseNum": 3, + "text": "doing nothing|strong=\"G3367\"* through|strong=\"G2596\"* rivalry or|strong=\"G3366\"* through|strong=\"G2596\"* conceit|strong=\"G2754\"*, but|strong=\"G3588\"* in|strong=\"G2596\"* humility|strong=\"G5012\"*, each|strong=\"G2596\"* counting others|strong=\"G3588\"* better|strong=\"G5242\"* than|strong=\"G5242\"* himself|strong=\"G1438\"*;" + }, + { + "verseNum": 4, + "text": "each|strong=\"G1538\"* of|strong=\"G2532\"* you|strong=\"G1438\"* not|strong=\"G3361\"* just|strong=\"G2532\"* looking|strong=\"G2532\"* to|strong=\"G2532\"* his|strong=\"G1438\"* own|strong=\"G1438\"* things|strong=\"G3588\"*, but|strong=\"G2532\"* each|strong=\"G1538\"* of|strong=\"G2532\"* you|strong=\"G1438\"* also|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* things|strong=\"G3588\"* of|strong=\"G2532\"* others|strong=\"G2087\"*." + }, + { + "verseNum": 5, + "text": "Have|strong=\"G2532\"* this|strong=\"G3778\"* in|strong=\"G1722\"* your|strong=\"G2532\"* mind|strong=\"G5426\"*, which|strong=\"G3739\"* was|strong=\"G2424\"* also|strong=\"G2532\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 6, + "text": "who|strong=\"G3739\"*, existing in|strong=\"G1722\"* the|strong=\"G1722\"* form|strong=\"G3444\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, didn’t|strong=\"G3588\"* consider|strong=\"G2233\"* equality|strong=\"G2470\"* with|strong=\"G1722\"* God|strong=\"G2316\"* a|strong=\"G1722\"* thing|strong=\"G3739\"* to|strong=\"G1722\"* be|strong=\"G1510\"* grasped," + }, + { + "verseNum": 7, + "text": "but|strong=\"G2532\"* emptied|strong=\"G2758\"* himself|strong=\"G1438\"*, taking|strong=\"G2983\"* the|strong=\"G1722\"* form|strong=\"G3444\"* of|strong=\"G2532\"* a|strong=\"G1096\"* servant|strong=\"G1401\"*, being|strong=\"G1096\"* made|strong=\"G1096\"* in|strong=\"G1722\"* the|strong=\"G1722\"* likeness|strong=\"G3667\"* of|strong=\"G2532\"* men|strong=\"G1401\"*." + }, + { + "verseNum": 8, + "text": "And|strong=\"G1161\"* being|strong=\"G1096\"* found|strong=\"G1096\"* in|strong=\"G1096\"* human form, he|strong=\"G1161\"* humbled|strong=\"G5013\"* himself|strong=\"G1438\"*, becoming|strong=\"G1096\"* obedient|strong=\"G5255\"* to|strong=\"G1096\"* the|strong=\"G1161\"* point|strong=\"G3360\"* of|strong=\"G4716\"* death|strong=\"G2288\"*, yes|strong=\"G1161\"*, the|strong=\"G1161\"* death|strong=\"G2288\"* of|strong=\"G4716\"* the|strong=\"G1161\"* cross|strong=\"G4716\"*." + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"G1352\"* God|strong=\"G2316\"* also|strong=\"G2532\"* highly|strong=\"G5251\"* exalted|strong=\"G5251\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* gave|strong=\"G2532\"* to|strong=\"G2532\"* him|strong=\"G3588\"* the|strong=\"G2532\"* name|strong=\"G3686\"* which|strong=\"G3588\"* is|strong=\"G3588\"* above|strong=\"G5228\"* every|strong=\"G3956\"* name|strong=\"G3686\"*," + }, + { + "verseNum": 10, + "text": "that|strong=\"G2443\"* at|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2532\"* Jesus|strong=\"G2424\"* every|strong=\"G3956\"* knee|strong=\"G1119\"* should|strong=\"G3588\"* bow|strong=\"G2578\"*, of|strong=\"G2532\"* those|strong=\"G3588\"* in|strong=\"G1722\"* heaven|strong=\"G2032\"*, those|strong=\"G3588\"* on|strong=\"G1722\"* earth|strong=\"G2709\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* under|strong=\"G1722\"* the|strong=\"G1722\"* earth|strong=\"G2709\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"G2532\"* that|strong=\"G3754\"* every|strong=\"G3956\"* tongue|strong=\"G1100\"* should|strong=\"G2316\"* confess|strong=\"G1843\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* is|strong=\"G2316\"* Lord|strong=\"G2962\"*, to|strong=\"G1519\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* God|strong=\"G2316\"* the|strong=\"G2532\"* Father|strong=\"G3962\"*." + }, + { + "verseNum": 12, + "text": "So|strong=\"G2532\"* then|strong=\"G2532\"*, my|strong=\"G1722\"* beloved, even|strong=\"G2532\"* as|strong=\"G5613\"* you|strong=\"G1722\"* have|strong=\"G2532\"* always|strong=\"G3842\"* obeyed|strong=\"G5219\"*, not|strong=\"G3361\"* only|strong=\"G3440\"* in|strong=\"G1722\"* my|strong=\"G1722\"* presence|strong=\"G3952\"*, but|strong=\"G2532\"* now|strong=\"G3568\"* much|strong=\"G4183\"* more|strong=\"G3123\"* in|strong=\"G1722\"* my|strong=\"G1722\"* absence, work|strong=\"G2716\"* out|strong=\"G2532\"* your|strong=\"G2532\"* own|strong=\"G1438\"* salvation|strong=\"G4991\"* with|strong=\"G3326\"* fear|strong=\"G5401\"* and|strong=\"G2532\"* trembling|strong=\"G5156\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G1510\"* God|strong=\"G2316\"* who|strong=\"G3588\"* works|strong=\"G1754\"* in|strong=\"G1722\"* you|strong=\"G5210\"* both|strong=\"G2532\"* to|strong=\"G2532\"* will|strong=\"G2309\"* and|strong=\"G2532\"* to|strong=\"G2532\"* work|strong=\"G1754\"* for|strong=\"G1063\"* his|strong=\"G1722\"* good|strong=\"G2107\"* pleasure|strong=\"G2107\"*." + }, + { + "verseNum": 14, + "text": "Do|strong=\"G4160\"* all|strong=\"G3956\"* things|strong=\"G3956\"* without|strong=\"G5565\"* complaining|strong=\"G1112\"* and|strong=\"G2532\"* arguing|strong=\"G1261\"*," + }, + { + "verseNum": 15, + "text": "that|strong=\"G2443\"* you|strong=\"G3739\"* may|strong=\"G2532\"* become|strong=\"G1096\"* blameless and|strong=\"G2532\"* harmless, children|strong=\"G5043\"* of|strong=\"G2316\"* God|strong=\"G2316\"* without|strong=\"G2532\"* defect in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2316\"* a|strong=\"G1096\"* crooked|strong=\"G4646\"* and|strong=\"G2532\"* perverse|strong=\"G1294\"* generation|strong=\"G1074\"*, among|strong=\"G1722\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* are|strong=\"G3739\"* seen|strong=\"G5316\"* as|strong=\"G5613\"* lights|strong=\"G5458\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*," + }, + { + "verseNum": 16, + "text": "holding|strong=\"G1907\"* up|strong=\"G1519\"* the|strong=\"G1519\"* word|strong=\"G3056\"* of|strong=\"G3056\"* life|strong=\"G2222\"*, that|strong=\"G3754\"* I|strong=\"G1473\"* may|strong=\"G5547\"* have|strong=\"G1473\"* something|strong=\"G2745\"* to|strong=\"G1519\"* boast|strong=\"G2745\"* in|strong=\"G1519\"* the|strong=\"G1519\"* day|strong=\"G2250\"* of|strong=\"G3056\"* Christ|strong=\"G5547\"* that|strong=\"G3754\"* I|strong=\"G1473\"* didn’t run|strong=\"G5143\"* in|strong=\"G1519\"* vain|strong=\"G2756\"* nor|strong=\"G3761\"* labor|strong=\"G2872\"* in|strong=\"G1519\"* vain|strong=\"G2756\"*." + }, + { + "verseNum": 17, + "text": "Yes, and|strong=\"G2532\"* if|strong=\"G1487\"* I|strong=\"G2532\"* am|strong=\"G2532\"* poured|strong=\"G2532\"* out|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G2532\"* sacrifice|strong=\"G2378\"* and|strong=\"G2532\"* service|strong=\"G3009\"* of|strong=\"G2532\"* your|strong=\"G2532\"* faith|strong=\"G4102\"*, I|strong=\"G2532\"* am|strong=\"G2532\"* glad|strong=\"G5463\"* and|strong=\"G2532\"* rejoice|strong=\"G5463\"* with|strong=\"G2532\"* you|strong=\"G5210\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 18, + "text": "In|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G2532\"* way, you|strong=\"G5210\"* also|strong=\"G2532\"* should|strong=\"G3588\"* be|strong=\"G2532\"* glad|strong=\"G5463\"* and|strong=\"G2532\"* rejoice|strong=\"G5463\"* with|strong=\"G2532\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"G1161\"* I|strong=\"G2504\"* hope|strong=\"G1679\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* to|strong=\"G2443\"* send|strong=\"G3992\"* Timothy|strong=\"G5095\"* to|strong=\"G2443\"* you|strong=\"G5210\"* soon|strong=\"G5030\"*, that|strong=\"G2443\"* I|strong=\"G2504\"* also|strong=\"G2504\"* may|strong=\"G2443\"* be|strong=\"G2443\"* cheered up|strong=\"G1722\"* when|strong=\"G1161\"* I|strong=\"G2504\"* know|strong=\"G1097\"* how|strong=\"G1161\"* you|strong=\"G5210\"* are|strong=\"G3588\"* doing." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* I|strong=\"G1063\"* have|strong=\"G2192\"* no|strong=\"G3762\"* one|strong=\"G3762\"* else like-minded, who|strong=\"G3588\"* will|strong=\"G3748\"* truly care|strong=\"G3309\"* about|strong=\"G4012\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"G1063\"* they|strong=\"G3588\"* all|strong=\"G3956\"* seek|strong=\"G2212\"* their|strong=\"G1438\"* own|strong=\"G1438\"*, not|strong=\"G3756\"* the|strong=\"G3956\"* things|strong=\"G3956\"* of|strong=\"G3956\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* you|strong=\"G3754\"* know|strong=\"G1097\"* that|strong=\"G3754\"* he|strong=\"G1161\"* has|strong=\"G3962\"* proved himself|strong=\"G4862\"*. As|strong=\"G5613\"* a|strong=\"G5613\"* child|strong=\"G5043\"* serves|strong=\"G1398\"* a|strong=\"G5613\"* father|strong=\"G3962\"*, so|strong=\"G1161\"* he|strong=\"G1161\"* served|strong=\"G1398\"* with|strong=\"G4862\"* me|strong=\"G1473\"* in|strong=\"G1519\"* furtherance of|strong=\"G3962\"* the|strong=\"G1519\"* Good|strong=\"G3588\"* News|strong=\"G2098\"*." + }, + { + "verseNum": 23, + "text": "Therefore|strong=\"G3767\"* I|strong=\"G1473\"* hope|strong=\"G1679\"* to|strong=\"G1679\"* send|strong=\"G3992\"* him|strong=\"G3588\"* at|strong=\"G4012\"* once|strong=\"G1824\"*, as|strong=\"G5613\"* soon|strong=\"G5613\"* as|strong=\"G5613\"* I|strong=\"G1473\"* see how|strong=\"G5613\"* it|strong=\"G3778\"* will|strong=\"G1473\"* go with|strong=\"G4012\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"G1161\"* I|strong=\"G2532\"* trust|strong=\"G3982\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* that|strong=\"G3754\"* I|strong=\"G2532\"* myself also|strong=\"G2532\"* will|strong=\"G2532\"* come|strong=\"G2064\"* shortly|strong=\"G5030\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* I|strong=\"G1473\"* thought|strong=\"G2233\"* it|strong=\"G2532\"* necessary|strong=\"G5532\"* to|strong=\"G4314\"* send|strong=\"G3992\"* to|strong=\"G4314\"* you|strong=\"G5210\"* Epaphroditus|strong=\"G1891\"*, my|strong=\"G1473\"* brother, fellow|strong=\"G4904\"* worker|strong=\"G4904\"*, fellow|strong=\"G4904\"* soldier|strong=\"G4961\"*, and|strong=\"G2532\"* your|strong=\"G2532\"* apostle and|strong=\"G2532\"* servant|strong=\"G3588\"* of|strong=\"G2532\"* my|strong=\"G1473\"* need|strong=\"G5532\"*," + }, + { + "verseNum": 26, + "text": "since|strong=\"G3754\"* he|strong=\"G2532\"* longed|strong=\"G2532\"* for|strong=\"G3754\"* you|strong=\"G5210\"* all|strong=\"G3956\"*, and|strong=\"G2532\"* was|strong=\"G1510\"* very|strong=\"G2532\"* troubled because|strong=\"G3754\"* you|strong=\"G5210\"* had|strong=\"G2532\"* heard that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* sick|strong=\"G3956\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"G1063\"* indeed|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3588\"* sick nearly to|strong=\"G2443\"* death|strong=\"G2288\"*, but|strong=\"G1161\"* God|strong=\"G2316\"* had|strong=\"G2192\"* mercy|strong=\"G1653\"* on|strong=\"G1909\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* on|strong=\"G1909\"* him|strong=\"G3588\"* only|strong=\"G3441\"*, but|strong=\"G1161\"* on|strong=\"G1909\"* me|strong=\"G1473\"* also|strong=\"G2532\"*, that|strong=\"G2443\"* I|strong=\"G1473\"* might|strong=\"G2532\"* not|strong=\"G3756\"* have|strong=\"G2192\"* sorrow|strong=\"G3077\"* on|strong=\"G1909\"* sorrow|strong=\"G3077\"*." + }, + { + "verseNum": 28, + "text": "I|strong=\"G2504\"* have|strong=\"G1510\"* sent|strong=\"G3992\"* him|strong=\"G3708\"* therefore|strong=\"G3767\"* the|strong=\"G3767\"* more|strong=\"G3825\"* diligently|strong=\"G4709\"*, that|strong=\"G2443\"* when|strong=\"G3767\"* you|strong=\"G3708\"* see|strong=\"G3708\"* him|strong=\"G3708\"* again|strong=\"G3825\"*, you|strong=\"G3708\"* may|strong=\"G2443\"* rejoice|strong=\"G5463\"*, and|strong=\"G3767\"* that|strong=\"G2443\"* I|strong=\"G2504\"* may|strong=\"G2443\"* be|strong=\"G1510\"* the|strong=\"G3767\"* less sorrowful." + }, + { + "verseNum": 29, + "text": "Receive|strong=\"G4327\"* him|strong=\"G3588\"* therefore|strong=\"G3767\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* with|strong=\"G3326\"* all|strong=\"G3956\"* joy|strong=\"G5479\"*, and|strong=\"G2532\"* hold|strong=\"G2192\"* such|strong=\"G5108\"* people|strong=\"G3956\"* in|strong=\"G1722\"* honor|strong=\"G1784\"*," + }, + { + "verseNum": 30, + "text": "because|strong=\"G3754\"* for|strong=\"G3754\"* the|strong=\"G1223\"* work|strong=\"G2041\"* of|strong=\"G1223\"* Christ|strong=\"G5547\"* he|strong=\"G3754\"* came|strong=\"G3588\"* near|strong=\"G1448\"* to|strong=\"G4314\"* death|strong=\"G2288\"*, risking his|strong=\"G1223\"* life|strong=\"G5590\"* to|strong=\"G4314\"* supply that|strong=\"G3754\"* which|strong=\"G3588\"* was|strong=\"G3588\"* lacking|strong=\"G5303\"* in|strong=\"G1223\"* your|strong=\"G1223\"* service|strong=\"G3009\"* toward|strong=\"G4314\"* me|strong=\"G1473\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Finally|strong=\"G3063\"*, my|strong=\"G1722\"* brothers, rejoice|strong=\"G5463\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*! To|strong=\"G1722\"* write|strong=\"G1125\"* the|strong=\"G1722\"* same things|strong=\"G3588\"* to|strong=\"G1722\"* you|strong=\"G5210\"*, to|strong=\"G1722\"* me|strong=\"G1473\"* indeed|strong=\"G3303\"* is|strong=\"G3588\"* not|strong=\"G3756\"* tiresome, but|strong=\"G1161\"* for|strong=\"G1161\"* you|strong=\"G5210\"* it|strong=\"G1161\"* is|strong=\"G3588\"* safe|strong=\"G1722\"*." + }, + { + "verseNum": 2, + "text": "Beware of|strong=\"G3588\"* the|strong=\"G3588\"* dogs|strong=\"G2965\"*; beware of|strong=\"G3588\"* the|strong=\"G3588\"* evil|strong=\"G2556\"* workers|strong=\"G2040\"*; beware of|strong=\"G3588\"* the|strong=\"G3588\"* false|strong=\"G2699\"* circumcision|strong=\"G2699\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* are|strong=\"G1510\"* the|strong=\"G1722\"* circumcision|strong=\"G4061\"*, who|strong=\"G3588\"* worship|strong=\"G3000\"* God|strong=\"G2316\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*, and|strong=\"G2532\"* rejoice|strong=\"G2744\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* have|strong=\"G2532\"* no|strong=\"G3756\"* confidence|strong=\"G3982\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*;" + }, + { + "verseNum": 4, + "text": "though|strong=\"G1487\"* I|strong=\"G1473\"* myself|strong=\"G1473\"* might|strong=\"G2532\"* have|strong=\"G2192\"* confidence|strong=\"G4006\"* even|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*. If|strong=\"G1487\"* any|strong=\"G5100\"* other|strong=\"G5100\"* man|strong=\"G5100\"* thinks|strong=\"G1380\"* that|strong=\"G2532\"* he|strong=\"G2532\"* has|strong=\"G2192\"* confidence|strong=\"G4006\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, I|strong=\"G1473\"* yet|strong=\"G2532\"* more|strong=\"G3123\"*:" + }, + { + "verseNum": 5, + "text": "circumcised|strong=\"G4061\"* the|strong=\"G1537\"* eighth|strong=\"G3637\"* day|strong=\"G3637\"*, of|strong=\"G1537\"* the|strong=\"G1537\"* stock|strong=\"G1085\"* of|strong=\"G1537\"* Israel|strong=\"G2474\"*, of|strong=\"G1537\"* the|strong=\"G1537\"* tribe|strong=\"G5443\"* of|strong=\"G1537\"* Benjamin, a|strong=\"G1537\"* Hebrew|strong=\"G1445\"* of|strong=\"G1537\"* Hebrews|strong=\"G1445\"*; concerning|strong=\"G2596\"* the|strong=\"G1537\"* law|strong=\"G3551\"*, a|strong=\"G1537\"* Pharisee|strong=\"G5330\"*;" + }, + { + "verseNum": 6, + "text": "concerning|strong=\"G2596\"* zeal|strong=\"G2205\"*, persecuting|strong=\"G1377\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"*; concerning|strong=\"G2596\"* the|strong=\"G1722\"* righteousness|strong=\"G1343\"* which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, found|strong=\"G1096\"* blameless." + }, + { + "verseNum": 7, + "text": "However, I|strong=\"G1473\"* consider|strong=\"G2233\"* those|strong=\"G3588\"* things|strong=\"G3778\"* that|strong=\"G3588\"* were|strong=\"G1510\"* gain|strong=\"G2771\"* to|strong=\"G3778\"* me|strong=\"G1473\"* as|strong=\"G2233\"* a|strong=\"G1510\"* loss|strong=\"G2209\"* for|strong=\"G1223\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 8, + "text": "Yes most certainly|strong=\"G2532\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* count|strong=\"G2233\"* all|strong=\"G3956\"* things|strong=\"G3956\"* to|strong=\"G2443\"* be|strong=\"G1510\"* a|strong=\"G2532\"* loss|strong=\"G2209\"* for|strong=\"G1223\"* the|strong=\"G2532\"* excellency|strong=\"G5242\"* of|strong=\"G1223\"* the|strong=\"G2532\"* knowledge|strong=\"G1108\"* of|strong=\"G1223\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, my|strong=\"G3956\"* Lord|strong=\"G2962\"*, for|strong=\"G1223\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* suffered|strong=\"G2210\"* the|strong=\"G2532\"* loss|strong=\"G2209\"* of|strong=\"G1223\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G2532\"* count|strong=\"G2233\"* them|strong=\"G3588\"* nothing|strong=\"G3956\"* but|strong=\"G2532\"* refuse, that|strong=\"G2443\"* I|strong=\"G1473\"* may|strong=\"G2532\"* gain|strong=\"G2770\"* Christ|strong=\"G5547\"*" + }, + { + "verseNum": 9, + "text": "and|strong=\"G2532\"* be|strong=\"G2532\"* found|strong=\"G2147\"* in|strong=\"G1722\"* him|strong=\"G3588\"*, not|strong=\"G3361\"* having|strong=\"G2192\"* a|strong=\"G2192\"* righteousness|strong=\"G1343\"* of|strong=\"G1537\"* my|strong=\"G1699\"* own|strong=\"G1699\"*, that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, but|strong=\"G2532\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* through|strong=\"G1223\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*, the|strong=\"G1722\"* righteousness|strong=\"G1343\"* which|strong=\"G3588\"* is|strong=\"G3588\"* from|strong=\"G1537\"* God|strong=\"G2316\"* by|strong=\"G1223\"* faith|strong=\"G4102\"*," + }, + { + "verseNum": 10, + "text": "that|strong=\"G3588\"* I|strong=\"G2532\"* may|strong=\"G2532\"* know|strong=\"G1097\"* him|strong=\"G3588\"* and|strong=\"G2532\"* the|strong=\"G2532\"* power|strong=\"G1411\"* of|strong=\"G2532\"* his|strong=\"G2532\"* resurrection, and|strong=\"G2532\"* the|strong=\"G2532\"* fellowship|strong=\"G2842\"* of|strong=\"G2532\"* his|strong=\"G2532\"* sufferings|strong=\"G3804\"*, becoming conformed to|strong=\"G2532\"* his|strong=\"G2532\"* death|strong=\"G2288\"*," + }, + { + "verseNum": 11, + "text": "if|strong=\"G1487\"* by|strong=\"G1537\"* any|strong=\"G1487\"* means|strong=\"G1513\"* I|strong=\"G1487\"* may|strong=\"G1487\"* attain|strong=\"G2658\"* to|strong=\"G1519\"* the|strong=\"G1519\"* resurrection|strong=\"G1815\"* from|strong=\"G1537\"* the|strong=\"G1519\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 12, + "text": "Not|strong=\"G3756\"* that|strong=\"G3754\"* I|strong=\"G3739\"* have|strong=\"G2532\"* already|strong=\"G2235\"* obtained|strong=\"G2983\"*, or|strong=\"G2228\"* am|strong=\"G2532\"* already|strong=\"G2235\"* made|strong=\"G5048\"* perfect|strong=\"G5048\"*; but|strong=\"G1161\"* I|strong=\"G3739\"* press|strong=\"G1377\"* on|strong=\"G1909\"*, that|strong=\"G3754\"* I|strong=\"G3739\"* may|strong=\"G2532\"* take|strong=\"G2983\"* hold|strong=\"G2638\"* of|strong=\"G5259\"* that|strong=\"G3754\"* for|strong=\"G3754\"* which|strong=\"G3739\"* also|strong=\"G2532\"* I|strong=\"G3739\"* was|strong=\"G2424\"* taken|strong=\"G2983\"* hold|strong=\"G2638\"* of|strong=\"G5259\"* by|strong=\"G5259\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 13, + "text": "Brothers, I|strong=\"G1473\"* don’t regard|strong=\"G3049\"* myself|strong=\"G1683\"* as|strong=\"G1161\"* yet|strong=\"G1161\"* having taken|strong=\"G2638\"* hold|strong=\"G2638\"*, but|strong=\"G1161\"* one|strong=\"G1520\"* thing|strong=\"G1520\"* I|strong=\"G1473\"* do|strong=\"G1950\"*: forgetting|strong=\"G1950\"* the|strong=\"G1161\"* things which are|strong=\"G1473\"* behind|strong=\"G3694\"* and|strong=\"G1161\"* stretching forward|strong=\"G1901\"* to|strong=\"G1161\"* the|strong=\"G1161\"* things which are|strong=\"G1473\"* before|strong=\"G1715\"*," + }, + { + "verseNum": 14, + "text": "I|strong=\"G1161\"* press|strong=\"G1377\"* on|strong=\"G1722\"* toward|strong=\"G1519\"* the|strong=\"G1722\"* goal|strong=\"G4649\"* for|strong=\"G1519\"* the|strong=\"G1722\"* prize|strong=\"G1017\"* of|strong=\"G2316\"* the|strong=\"G1722\"* high|strong=\"G2316\"* calling|strong=\"G2821\"* of|strong=\"G2316\"* God|strong=\"G2316\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 15, + "text": "Let|strong=\"G3767\"* us|strong=\"G5426\"* therefore|strong=\"G3767\"*, as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* are|strong=\"G3588\"* perfect|strong=\"G5046\"*, think|strong=\"G5426\"* this|strong=\"G3778\"* way|strong=\"G5100\"*. If|strong=\"G1487\"* in|strong=\"G2532\"* anything|strong=\"G5100\"* you|strong=\"G5210\"* think|strong=\"G5426\"* otherwise|strong=\"G1487\"*, God|strong=\"G2316\"* will|strong=\"G2316\"* also|strong=\"G2532\"* reveal that|strong=\"G3588\"* to|strong=\"G2532\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 16, + "text": "Nevertheless|strong=\"G4133\"*, to|strong=\"G1519\"* the|strong=\"G1519\"* extent that|strong=\"G3739\"* we|strong=\"G3739\"* have|strong=\"G3588\"* already attained|strong=\"G5348\"*, let’s walk|strong=\"G4748\"* by|strong=\"G1519\"* the|strong=\"G1519\"* same|strong=\"G3739\"* rule. Let’s be|strong=\"G1519\"* of|strong=\"G3588\"* the|strong=\"G1519\"* same|strong=\"G3739\"* mind." + }, + { + "verseNum": 17, + "text": "Brothers, be|strong=\"G1096\"* imitators|strong=\"G4831\"* together|strong=\"G4831\"* of|strong=\"G2532\"* me|strong=\"G1473\"*, and|strong=\"G2532\"* note those|strong=\"G3588\"* who|strong=\"G3588\"* walk|strong=\"G4043\"* this|strong=\"G3588\"* way|strong=\"G3779\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* you|strong=\"G3779\"* have|strong=\"G2192\"* us|strong=\"G2249\"* for|strong=\"G2532\"* an|strong=\"G2192\"* example|strong=\"G5179\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* many|strong=\"G4183\"* walk|strong=\"G4043\"*, of|strong=\"G2532\"* whom|strong=\"G3739\"* I|strong=\"G3739\"* told|strong=\"G3004\"* you|strong=\"G5210\"* often|strong=\"G4178\"*, and|strong=\"G2532\"* now|strong=\"G1161\"* tell|strong=\"G3004\"* you|strong=\"G5210\"* even|strong=\"G2532\"* weeping|strong=\"G2799\"*, as|strong=\"G1161\"* the|strong=\"G2532\"* enemies|strong=\"G2190\"* of|strong=\"G2532\"* the|strong=\"G2532\"* cross|strong=\"G4716\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 19, + "text": "whose|strong=\"G3739\"* end|strong=\"G5056\"* is|strong=\"G3588\"* destruction, whose|strong=\"G3739\"* god|strong=\"G2316\"* is|strong=\"G3588\"* the|strong=\"G1722\"* belly|strong=\"G2836\"*, and|strong=\"G2532\"* whose|strong=\"G3739\"* glory|strong=\"G1391\"* is|strong=\"G3588\"* in|strong=\"G1722\"* their|strong=\"G2532\"* shame, who|strong=\"G3739\"* think|strong=\"G5426\"* about|strong=\"G1722\"* earthly|strong=\"G1919\"* things|strong=\"G3588\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* our|strong=\"G2424\"* citizenship|strong=\"G4175\"* is|strong=\"G3588\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*, from|strong=\"G1537\"* where|strong=\"G3739\"* we|strong=\"G2249\"* also|strong=\"G2532\"* wait for|strong=\"G1063\"* a|strong=\"G2532\"* Savior|strong=\"G4990\"*, the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 21, + "text": "who|strong=\"G3739\"* will|strong=\"G2532\"* change|strong=\"G3345\"* the|strong=\"G2532\"* body|strong=\"G4983\"* of|strong=\"G2532\"* our|strong=\"G2532\"* humiliation|strong=\"G5014\"* to|strong=\"G2532\"* be|strong=\"G2532\"* conformed|strong=\"G4832\"* to|strong=\"G2532\"* the|strong=\"G2532\"* body|strong=\"G4983\"* of|strong=\"G2532\"* his|strong=\"G1438\"* glory|strong=\"G1391\"*, according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* working|strong=\"G1753\"* by|strong=\"G2596\"* which|strong=\"G3739\"* he|strong=\"G2532\"* is|strong=\"G3588\"* able|strong=\"G1410\"* even|strong=\"G2532\"* to|strong=\"G2532\"* subject|strong=\"G5293\"* all|strong=\"G3956\"* things|strong=\"G3956\"* to|strong=\"G2532\"* himself|strong=\"G1438\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G5620\"*, my|strong=\"G1722\"* brothers, beloved and|strong=\"G2532\"* longed|strong=\"G2532\"* for|strong=\"G1722\"*, my|strong=\"G1722\"* joy|strong=\"G5479\"* and|strong=\"G2532\"* crown|strong=\"G4735\"*, stand|strong=\"G4739\"* firm|strong=\"G4739\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* in|strong=\"G1722\"* this|strong=\"G3779\"* way|strong=\"G3779\"*, my|strong=\"G1722\"* beloved." + }, + { + "verseNum": 2, + "text": "I|strong=\"G2532\"* exhort|strong=\"G3870\"* Euodia|strong=\"G2136\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* exhort|strong=\"G3870\"* Syntyche|strong=\"G4941\"*, to|strong=\"G2532\"* think|strong=\"G5426\"* the|strong=\"G1722\"* same|strong=\"G2532\"* way|strong=\"G1722\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 3, + "text": "Yes|strong=\"G3483\"*, I|strong=\"G1473\"* beg|strong=\"G2065\"* you|strong=\"G4771\"* also|strong=\"G2532\"*, true|strong=\"G1103\"* partner, help|strong=\"G4815\"* these|strong=\"G3739\"* women|strong=\"G3062\"*, for|strong=\"G1722\"* they|strong=\"G2532\"* labored with|strong=\"G3326\"* me|strong=\"G1473\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* with|strong=\"G3326\"* Clement|strong=\"G2815\"* also|strong=\"G2532\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* rest|strong=\"G3062\"* of|strong=\"G2532\"* my|strong=\"G1722\"* fellow|strong=\"G4904\"* workers|strong=\"G4904\"*, whose|strong=\"G3739\"* names|strong=\"G3686\"* are|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* book|strong=\"G3588\"* of|strong=\"G2532\"* life|strong=\"G2222\"*." + }, + { + "verseNum": 4, + "text": "Rejoice|strong=\"G5463\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* always|strong=\"G3842\"*! Again|strong=\"G3825\"* I|strong=\"G3004\"* will|strong=\"G2962\"* say|strong=\"G3004\"*, “Rejoice|strong=\"G5463\"*!”" + }, + { + "verseNum": 5, + "text": "Let|strong=\"G1097\"* your|strong=\"G2962\"* gentleness|strong=\"G1933\"* be|strong=\"G3956\"* known|strong=\"G1097\"* to|strong=\"G2962\"* all|strong=\"G3956\"* men|strong=\"G3956\"*. The|strong=\"G3956\"* Lord|strong=\"G2962\"* is|strong=\"G3588\"* at|strong=\"G3588\"* hand|strong=\"G1451\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"G1722\"* nothing|strong=\"G3367\"* be|strong=\"G2532\"* anxious|strong=\"G3309\"*, but|strong=\"G2532\"* in|strong=\"G1722\"* everything|strong=\"G3956\"*, by|strong=\"G1722\"* prayer|strong=\"G4335\"* and|strong=\"G2532\"* petition|strong=\"G1162\"* with|strong=\"G3326\"* thanksgiving|strong=\"G2169\"*, let|strong=\"G2532\"* your|strong=\"G2532\"* requests|strong=\"G1162\"* be|strong=\"G2532\"* made|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G4314\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 7, + "text": "And|strong=\"G2532\"* the|strong=\"G1722\"* peace|strong=\"G1515\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, which|strong=\"G3588\"* surpasses|strong=\"G5242\"* all|strong=\"G3956\"* understanding|strong=\"G3563\"*, will|strong=\"G2316\"* guard|strong=\"G2532\"* your|strong=\"G2532\"* hearts|strong=\"G2588\"* and|strong=\"G2532\"* your|strong=\"G2532\"* thoughts in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 8, + "text": "Finally|strong=\"G3063\"*, brothers, whatever|strong=\"G3745\"* things|strong=\"G3778\"* are|strong=\"G1510\"* true|strong=\"G3588\"*, whatever|strong=\"G3745\"* things|strong=\"G3778\"* are|strong=\"G1510\"* honorable|strong=\"G4586\"*, whatever|strong=\"G3745\"* things|strong=\"G3778\"* are|strong=\"G1510\"* just|strong=\"G1342\"*, whatever|strong=\"G3745\"* things|strong=\"G3778\"* are|strong=\"G1510\"* pure, whatever|strong=\"G3745\"* things|strong=\"G3778\"* are|strong=\"G1510\"* lovely|strong=\"G4375\"*, whatever|strong=\"G3745\"* things|strong=\"G3778\"* are|strong=\"G1510\"* of|strong=\"G2532\"* good|strong=\"G3588\"* report|strong=\"G2163\"*: if|strong=\"G1487\"* there|strong=\"G2532\"* is|strong=\"G1510\"* any|strong=\"G5100\"* virtue and|strong=\"G2532\"* if|strong=\"G1487\"* there|strong=\"G2532\"* is|strong=\"G1510\"* anything|strong=\"G5100\"* worthy|strong=\"G1868\"* of|strong=\"G2532\"* praise|strong=\"G1868\"*, think|strong=\"G3049\"* about|strong=\"G3588\"* these|strong=\"G3778\"* things|strong=\"G3778\"*." + }, + { + "verseNum": 9, + "text": "Do|strong=\"G4238\"* the|strong=\"G1722\"* things|strong=\"G3778\"* which|strong=\"G3739\"* you|strong=\"G5210\"* learned|strong=\"G3129\"*, received|strong=\"G3880\"*, heard, and|strong=\"G2532\"* saw|strong=\"G3708\"* in|strong=\"G1722\"* me|strong=\"G1473\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G2316\"* peace|strong=\"G1515\"* will|strong=\"G2316\"* be|strong=\"G1510\"* with|strong=\"G3326\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* I|strong=\"G1473\"* rejoice|strong=\"G5463\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* greatly|strong=\"G3171\"* that|strong=\"G3754\"* now|strong=\"G1161\"* at|strong=\"G1722\"* length|strong=\"G4218\"* you|strong=\"G3739\"* have|strong=\"G2532\"* revived your|strong=\"G2962\"* thought for|strong=\"G3754\"* me|strong=\"G1473\"*; in|strong=\"G1722\"* which|strong=\"G3739\"* you|strong=\"G3739\"* did|strong=\"G2532\"* indeed|strong=\"G2532\"* take|strong=\"G1161\"* thought, but|strong=\"G1161\"* you|strong=\"G3739\"* lacked opportunity." + }, + { + "verseNum": 11, + "text": "Not|strong=\"G3756\"* that|strong=\"G3754\"* I|strong=\"G1473\"* speak|strong=\"G3004\"* because|strong=\"G3754\"* of|strong=\"G1722\"* lack|strong=\"G3756\"*, for|strong=\"G1063\"* I|strong=\"G1473\"* have|strong=\"G1473\"* learned|strong=\"G3129\"* in|strong=\"G1722\"* whatever|strong=\"G3739\"* state|strong=\"G2596\"* I|strong=\"G1473\"* am|strong=\"G1510\"*, to|strong=\"G2596\"* be|strong=\"G1510\"* content in|strong=\"G1722\"* it|strong=\"G3754\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"G2532\"* know|strong=\"G1492\"* how|strong=\"G1492\"* to|strong=\"G2532\"* be|strong=\"G2532\"* humbled|strong=\"G5013\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* also|strong=\"G2532\"* know|strong=\"G1492\"* how|strong=\"G1492\"* to|strong=\"G2532\"* abound|strong=\"G4052\"*. In|strong=\"G1722\"* any|strong=\"G3956\"* and|strong=\"G2532\"* all|strong=\"G3956\"* circumstances|strong=\"G1722\"* I|strong=\"G2532\"* have|strong=\"G2532\"* learned|strong=\"G3453\"* the|strong=\"G1722\"* secret|strong=\"G3453\"* both|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* filled|strong=\"G5526\"* and|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* hungry|strong=\"G3983\"*, both|strong=\"G2532\"* to|strong=\"G2532\"* abound|strong=\"G4052\"* and|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* in|strong=\"G1722\"* need|strong=\"G5302\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"G1473\"* can|strong=\"G2480\"* do|strong=\"G2480\"* all|strong=\"G3956\"* things|strong=\"G3956\"* through|strong=\"G1722\"* Christ who|strong=\"G3588\"* strengthens|strong=\"G1743\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 14, + "text": "However|strong=\"G4133\"* you|strong=\"G4160\"* did|strong=\"G4160\"* well|strong=\"G2573\"* that|strong=\"G3588\"* you|strong=\"G4160\"* shared in|strong=\"G4160\"* my|strong=\"G1473\"* affliction|strong=\"G2347\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"G5210\"* yourselves|strong=\"G4771\"* also|strong=\"G2532\"* know|strong=\"G1492\"*, you|strong=\"G5210\"* Philippians|strong=\"G5374\"*, that|strong=\"G3754\"* in|strong=\"G1722\"* the|strong=\"G1722\"* beginning of|strong=\"G3056\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G3056\"*, when|strong=\"G3753\"* I|strong=\"G1473\"* departed|strong=\"G1831\"* from|strong=\"G2532\"* Macedonia|strong=\"G3109\"*, no|strong=\"G3762\"* assembly|strong=\"G1577\"* shared|strong=\"G2841\"* with|strong=\"G1722\"* me|strong=\"G1473\"* in|strong=\"G1722\"* the|strong=\"G1722\"* matter|strong=\"G3056\"* of|strong=\"G3056\"* giving|strong=\"G1394\"* and|strong=\"G2532\"* receiving|strong=\"G3028\"* but|strong=\"G1161\"* you|strong=\"G5210\"* only|strong=\"G3441\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G3754\"* even|strong=\"G2532\"* in|strong=\"G1722\"* Thessalonica|strong=\"G2332\"* you|strong=\"G3754\"* sent|strong=\"G3992\"* once and|strong=\"G2532\"* again|strong=\"G1364\"* to|strong=\"G1519\"* my|strong=\"G1722\"* need|strong=\"G5532\"*." + }, + { + "verseNum": 17, + "text": "Not|strong=\"G3756\"* that|strong=\"G3754\"* I|strong=\"G3754\"* seek|strong=\"G1934\"* for|strong=\"G3754\"* the|strong=\"G1519\"* gift|strong=\"G1390\"*, but|strong=\"G3588\"* I|strong=\"G3754\"* seek|strong=\"G1934\"* for|strong=\"G3754\"* the|strong=\"G1519\"* fruit|strong=\"G2590\"* that|strong=\"G3754\"* increases|strong=\"G4121\"* to|strong=\"G1519\"* your|strong=\"G3588\"* account|strong=\"G3056\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* I|strong=\"G2532\"* have|strong=\"G2532\"* all|strong=\"G3956\"* things|strong=\"G3956\"* and|strong=\"G2532\"* abound|strong=\"G4052\"*. I|strong=\"G2532\"* am|strong=\"G2532\"* filled|strong=\"G4137\"*, having|strong=\"G2532\"* received|strong=\"G1209\"* from|strong=\"G3844\"* Epaphroditus|strong=\"G1891\"* the|strong=\"G2532\"* things|strong=\"G3956\"* that|strong=\"G3588\"* came|strong=\"G2532\"* from|strong=\"G3844\"* you|strong=\"G5210\"*, a|strong=\"G2532\"* sweet-smelling fragrance|strong=\"G3744\"*, an|strong=\"G2532\"* acceptable|strong=\"G2101\"* and|strong=\"G2532\"* well-pleasing|strong=\"G2101\"* sacrifice|strong=\"G2378\"* to|strong=\"G2532\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 19, + "text": "My|strong=\"G1722\"* God|strong=\"G2316\"* will|strong=\"G2316\"* supply|strong=\"G4137\"* every|strong=\"G3956\"* need|strong=\"G5532\"* of|strong=\"G2316\"* yours|strong=\"G4771\"* according|strong=\"G2596\"* to|strong=\"G2596\"* his|strong=\"G3956\"* riches|strong=\"G4149\"* in|strong=\"G1722\"* glory|strong=\"G1391\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 20, + "text": "Now|strong=\"G1161\"* to|strong=\"G1519\"* our|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"* be|strong=\"G2532\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*! Amen." + }, + { + "verseNum": 21, + "text": "Greet every|strong=\"G3956\"* saint in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*. The|strong=\"G1722\"* brothers who|strong=\"G3588\"* are|strong=\"G3588\"* with|strong=\"G1722\"* me|strong=\"G1473\"* greet you|strong=\"G5210\"*." + }, + { + "verseNum": 22, + "text": "All|strong=\"G3956\"* the|strong=\"G3956\"* saints greet you|strong=\"G5210\"*, especially|strong=\"G3122\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* of|strong=\"G1537\"* Caesar|strong=\"G2541\"*’s household|strong=\"G3614\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"G3588\"* grace|strong=\"G5485\"* of|strong=\"G4151\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* be|strong=\"G3588\"* with|strong=\"G3326\"* you|strong=\"G5210\"* all|strong=\"G3588\"*. Amen." + } + ] + } + ] + }, + { + "name": "Colossians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, an|strong=\"G2532\"* apostle of|strong=\"G1223\"* Christ|strong=\"G5547\"*+ 1:1 “Christ” means “Anointed One”.* Jesus|strong=\"G2424\"* through|strong=\"G1223\"* the|strong=\"G2532\"* will|strong=\"G2307\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* Timothy|strong=\"G5095\"* our|strong=\"G2316\"* brother," + }, + { + "verseNum": 2, + "text": "to|strong=\"G2532\"* the|strong=\"G1722\"* saints and|strong=\"G2532\"* faithful|strong=\"G4103\"* brothers+ 1:2 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* in|strong=\"G1722\"* Christ|strong=\"G5547\"* at|strong=\"G1722\"* Colossae|strong=\"G2857\"*: Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G3588\"* Jesus|strong=\"G2532\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 3, + "text": "We|strong=\"G2249\"* give|strong=\"G2168\"* thanks|strong=\"G2168\"* to|strong=\"G2532\"* God|strong=\"G2316\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* of|strong=\"G4012\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, praying|strong=\"G4336\"* always|strong=\"G3842\"* for|strong=\"G4012\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 4, + "text": "having|strong=\"G2192\"* heard of|strong=\"G2532\"* your|strong=\"G2192\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G1722\"* love which|strong=\"G3739\"* you|strong=\"G5210\"* have|strong=\"G2192\"* toward|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G1722\"* saints," + }, + { + "verseNum": 5, + "text": "because|strong=\"G1223\"* of|strong=\"G3056\"* the|strong=\"G1722\"* hope|strong=\"G1680\"* which|strong=\"G3739\"* is|strong=\"G3588\"* laid up|strong=\"G1722\"* for|strong=\"G1223\"* you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavens|strong=\"G3772\"*, of|strong=\"G3056\"* which|strong=\"G3739\"* you|strong=\"G5210\"* heard|strong=\"G4257\"* before|strong=\"G1722\"* in|strong=\"G1722\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* truth of|strong=\"G3056\"* the|strong=\"G1722\"* Good|strong=\"G1223\"* News|strong=\"G3056\"*" + }, + { + "verseNum": 6, + "text": "which|strong=\"G3739\"* has|strong=\"G2316\"* come|strong=\"G1510\"* to|strong=\"G1519\"* you|strong=\"G5210\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G1510\"* in|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* world|strong=\"G2889\"* and|strong=\"G2532\"* is|strong=\"G1510\"* bearing|strong=\"G2592\"* fruit|strong=\"G2592\"* and|strong=\"G2532\"* growing|strong=\"G1722\"*, as|strong=\"G2531\"* it|strong=\"G2532\"* does|strong=\"G1510\"* in|strong=\"G1722\"* you|strong=\"G5210\"* also|strong=\"G2532\"*, since the|strong=\"G1722\"* day|strong=\"G2250\"* you|strong=\"G5210\"* heard and|strong=\"G2532\"* knew|strong=\"G1921\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* of|strong=\"G2250\"* God|strong=\"G2316\"* in|strong=\"G1722\"* truth," + }, + { + "verseNum": 7, + "text": "even|strong=\"G2531\"* as|strong=\"G2531\"* you|strong=\"G5210\"* learned|strong=\"G3129\"* from|strong=\"G3588\"* Epaphras|strong=\"G1889\"* our|strong=\"G5547\"* beloved fellow|strong=\"G4889\"* servant|strong=\"G1249\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* a|strong=\"G1510\"* faithful|strong=\"G4103\"* servant|strong=\"G1249\"* of|strong=\"G5228\"* Christ|strong=\"G5547\"* on|strong=\"G5228\"* your|strong=\"G5228\"*+ 1:7 NU reads our* behalf|strong=\"G5228\"*," + }, + { + "verseNum": 8, + "text": "who|strong=\"G3588\"* also|strong=\"G2532\"* declared|strong=\"G1213\"* to|strong=\"G2532\"* us|strong=\"G2249\"* your|strong=\"G2532\"* love in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G5228\"* this|strong=\"G3778\"* cause|strong=\"G1223\"*, we|strong=\"G2249\"* also|strong=\"G2532\"*, since|strong=\"G1223\"* the|strong=\"G1722\"* day|strong=\"G2250\"* we|strong=\"G2249\"* heard this|strong=\"G3778\"*, don’t|strong=\"G3588\"* cease|strong=\"G3973\"* praying|strong=\"G4336\"* and|strong=\"G2532\"* making|strong=\"G2532\"* requests for|strong=\"G5228\"* you|strong=\"G5210\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* be|strong=\"G2532\"* filled|strong=\"G4137\"* with|strong=\"G1722\"* the|strong=\"G1722\"* knowledge|strong=\"G1922\"* of|strong=\"G2250\"* his|strong=\"G3956\"* will|strong=\"G2307\"* in|strong=\"G1722\"* all|strong=\"G3956\"* spiritual|strong=\"G4152\"* wisdom|strong=\"G4678\"* and|strong=\"G2532\"* understanding|strong=\"G4907\"*," + }, + { + "verseNum": 10, + "text": "that|strong=\"G3588\"* you|strong=\"G1722\"* may|strong=\"G2532\"* walk|strong=\"G4043\"* worthily of|strong=\"G2316\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, to|strong=\"G1519\"* please him|strong=\"G3588\"* in|strong=\"G1722\"* all|strong=\"G3956\"* respects|strong=\"G3956\"*, bearing|strong=\"G2592\"* fruit|strong=\"G2592\"* in|strong=\"G1722\"* every|strong=\"G3956\"* good|strong=\"G3956\"* work|strong=\"G2041\"* and|strong=\"G2532\"* increasing in|strong=\"G1722\"* the|strong=\"G1722\"* knowledge|strong=\"G1922\"* of|strong=\"G2316\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 11, + "text": "strengthened|strong=\"G1412\"* with|strong=\"G3326\"* all|strong=\"G3956\"* power|strong=\"G1411\"*, according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G1722\"* might|strong=\"G2532\"* of|strong=\"G2532\"* his|strong=\"G3956\"* glory|strong=\"G1391\"*, for|strong=\"G1519\"* all|strong=\"G3956\"* endurance|strong=\"G5281\"* and|strong=\"G2532\"* perseverance|strong=\"G5281\"* with|strong=\"G3326\"* joy|strong=\"G5479\"*," + }, + { + "verseNum": 12, + "text": "giving|strong=\"G2168\"* thanks|strong=\"G2168\"* to|strong=\"G1519\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*, who|strong=\"G3588\"* made|strong=\"G2427\"* us|strong=\"G2427\"* fit to|strong=\"G1519\"* be|strong=\"G1519\"* partakers|strong=\"G3310\"* of|strong=\"G3962\"* the|strong=\"G1722\"* inheritance|strong=\"G2819\"* of|strong=\"G3962\"* the|strong=\"G1722\"* saints in|strong=\"G1722\"* light|strong=\"G5457\"*," + }, + { + "verseNum": 13, + "text": "who|strong=\"G3739\"* delivered|strong=\"G4506\"* us|strong=\"G1519\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* power|strong=\"G1849\"* of|strong=\"G1537\"* darkness|strong=\"G4655\"*, and|strong=\"G2532\"* translated|strong=\"G3179\"* us|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* Kingdom of|strong=\"G1537\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G1537\"* his|strong=\"G1519\"* love," + }, + { + "verseNum": 14, + "text": "in|strong=\"G1722\"* whom|strong=\"G3739\"* we|strong=\"G3739\"* have|strong=\"G2192\"* our|strong=\"G1722\"* redemption,+ 1:14 TR adds “through his blood,” * the|strong=\"G1722\"* forgiveness of|strong=\"G1722\"* our|strong=\"G1722\"* sins." + }, + { + "verseNum": 15, + "text": "He|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G3956\"* image|strong=\"G1504\"* of|strong=\"G2316\"* the|strong=\"G3956\"* invisible God|strong=\"G2316\"*, the|strong=\"G3956\"* firstborn|strong=\"G4416\"* of|strong=\"G2316\"* all|strong=\"G3956\"* creation|strong=\"G2937\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G3754\"* by|strong=\"G1223\"* him|strong=\"G3588\"* all|strong=\"G3956\"* things|strong=\"G3956\"* were|strong=\"G3588\"* created|strong=\"G2936\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavens|strong=\"G3772\"* and|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, visible|strong=\"G3707\"* things|strong=\"G3956\"* and|strong=\"G2532\"* invisible things|strong=\"G3956\"*, whether|strong=\"G1535\"* thrones|strong=\"G2362\"* or|strong=\"G1535\"* dominions|strong=\"G2963\"* or|strong=\"G1535\"* principalities or|strong=\"G1535\"* powers|strong=\"G1849\"*. All|strong=\"G3956\"* things|strong=\"G3956\"* have|strong=\"G2532\"* been|strong=\"G2532\"* created|strong=\"G2936\"* through|strong=\"G1223\"* him|strong=\"G3588\"* and|strong=\"G2532\"* for|strong=\"G3754\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"G2532\"* is|strong=\"G1510\"* before|strong=\"G4253\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* him|strong=\"G3588\"* all|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G1510\"* held together|strong=\"G2532\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G1722\"* head|strong=\"G2776\"* of|strong=\"G1537\"* the|strong=\"G1722\"* body|strong=\"G4983\"*, the|strong=\"G1722\"* assembly|strong=\"G1577\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G1722\"* beginning, the|strong=\"G1722\"* firstborn|strong=\"G4416\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*, that|strong=\"G2443\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"* he|strong=\"G2532\"* might|strong=\"G2532\"* have|strong=\"G2532\"* the|strong=\"G1722\"* preeminence|strong=\"G4409\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G3754\"* all|strong=\"G3956\"* the|strong=\"G1722\"* fullness|strong=\"G4138\"* was|strong=\"G3588\"* pleased|strong=\"G2106\"* to|strong=\"G1722\"* dwell|strong=\"G2730\"* in|strong=\"G1722\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 20, + "text": "and|strong=\"G2532\"* through|strong=\"G1223\"* him|strong=\"G3588\"* to|strong=\"G1519\"* reconcile all|strong=\"G3956\"* things|strong=\"G3956\"* to|strong=\"G1519\"* himself|strong=\"G1519\"* by|strong=\"G1223\"* him|strong=\"G3588\"*, whether|strong=\"G1535\"* things|strong=\"G3956\"* on|strong=\"G1909\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* or|strong=\"G1535\"* things|strong=\"G3956\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavens|strong=\"G3772\"*, having|strong=\"G2532\"* made|strong=\"G3956\"* peace|strong=\"G1517\"* through|strong=\"G1223\"* the|strong=\"G1722\"* blood of|strong=\"G1223\"* his|strong=\"G3956\"* cross|strong=\"G4716\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"G5210\"*, being|strong=\"G1510\"* in|strong=\"G1722\"* past|strong=\"G4218\"* times|strong=\"G4218\"* alienated and|strong=\"G2532\"* enemies|strong=\"G2190\"* in|strong=\"G1722\"* your|strong=\"G2532\"* mind|strong=\"G1271\"* in|strong=\"G1722\"* your|strong=\"G2532\"* evil|strong=\"G4190\"* deeds|strong=\"G2041\"*," + }, + { + "verseNum": 22, + "text": "yet|strong=\"G2532\"* now|strong=\"G1161\"* he|strong=\"G2532\"* has|strong=\"G2288\"* reconciled in|strong=\"G1722\"* the|strong=\"G1722\"* body|strong=\"G4983\"* of|strong=\"G1223\"* his|strong=\"G1223\"* flesh|strong=\"G4561\"* through|strong=\"G1223\"* death|strong=\"G2288\"*, to|strong=\"G2532\"* present|strong=\"G3936\"* you|strong=\"G5210\"* holy and|strong=\"G2532\"* without|strong=\"G2532\"* defect and|strong=\"G2532\"* blameless before|strong=\"G1722\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 23, + "text": "if|strong=\"G1487\"* it|strong=\"G2532\"* is|strong=\"G3588\"* so|strong=\"G2532\"* that|strong=\"G3739\"* you|strong=\"G3739\"* continue|strong=\"G1961\"* in|strong=\"G1722\"* the|strong=\"G1722\"* faith|strong=\"G4102\"*, grounded|strong=\"G2311\"* and|strong=\"G2532\"* steadfast|strong=\"G1476\"*, and|strong=\"G2532\"* not|strong=\"G3361\"* moved|strong=\"G3361\"* away|strong=\"G3334\"* from|strong=\"G2532\"* the|strong=\"G1722\"* hope|strong=\"G1680\"* of|strong=\"G5259\"* the|strong=\"G1722\"* Good|strong=\"G3956\"* News|strong=\"G2098\"* which|strong=\"G3739\"* you|strong=\"G3739\"* heard, which|strong=\"G3739\"* was|strong=\"G1096\"* proclaimed|strong=\"G2784\"* in|strong=\"G1722\"* all|strong=\"G3956\"* creation|strong=\"G2937\"* under|strong=\"G5259\"* heaven|strong=\"G3772\"*, of|strong=\"G5259\"* which|strong=\"G3739\"* I|strong=\"G1473\"*, Paul|strong=\"G3972\"*, was|strong=\"G1096\"* made|strong=\"G1096\"* a|strong=\"G1096\"* servant|strong=\"G1249\"*." + }, + { + "verseNum": 24, + "text": "Now|strong=\"G3568\"* I|strong=\"G1473\"* rejoice|strong=\"G5463\"* in|strong=\"G1722\"* my|strong=\"G1722\"* sufferings|strong=\"G3804\"* for|strong=\"G5228\"* your|strong=\"G2532\"* sake|strong=\"G5228\"*, and|strong=\"G2532\"* fill|strong=\"G2532\"* up|strong=\"G2532\"* on|strong=\"G1722\"* my|strong=\"G1722\"* part|strong=\"G1473\"* that|strong=\"G3739\"* which|strong=\"G3739\"* is|strong=\"G1510\"* lacking|strong=\"G5303\"* of|strong=\"G2532\"* the|strong=\"G1722\"* afflictions|strong=\"G2347\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"* in|strong=\"G1722\"* my|strong=\"G1722\"* flesh|strong=\"G4561\"* for|strong=\"G5228\"* his|strong=\"G1722\"* body|strong=\"G4983\"*’s sake|strong=\"G5228\"*, which|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"*," + }, + { + "verseNum": 25, + "text": "of|strong=\"G3056\"* which|strong=\"G3739\"* I|strong=\"G1473\"* was|strong=\"G1096\"* made|strong=\"G1096\"* a|strong=\"G1096\"* servant|strong=\"G1249\"* according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G1519\"* stewardship|strong=\"G3622\"* of|strong=\"G3056\"* God|strong=\"G2316\"* which|strong=\"G3739\"* was|strong=\"G1096\"* given|strong=\"G1325\"* me|strong=\"G1325\"* toward|strong=\"G1519\"* you|strong=\"G5210\"* to|strong=\"G1519\"* fulfill|strong=\"G4137\"* the|strong=\"G1519\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 26, + "text": "the|strong=\"G2532\"* mystery|strong=\"G3466\"* which|strong=\"G3588\"* has|strong=\"G5319\"* been|strong=\"G2532\"* hidden for|strong=\"G1161\"* ages|strong=\"G1074\"* and|strong=\"G2532\"* generations|strong=\"G1074\"*. But|strong=\"G1161\"* now|strong=\"G1161\"* it|strong=\"G2532\"* has|strong=\"G5319\"* been|strong=\"G2532\"* revealed|strong=\"G5319\"* to|strong=\"G2532\"* his|strong=\"G2532\"* saints," + }, + { + "verseNum": 27, + "text": "to|strong=\"G2309\"* whom|strong=\"G3739\"* God|strong=\"G2316\"* was|strong=\"G1510\"* pleased to|strong=\"G2309\"* make|strong=\"G1107\"* known|strong=\"G1107\"* what|strong=\"G5101\"* are|strong=\"G1510\"* the|strong=\"G1722\"* riches|strong=\"G4149\"* of|strong=\"G2316\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* this|strong=\"G3778\"* mystery|strong=\"G3466\"* among|strong=\"G1722\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"*, which|strong=\"G3739\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"* in|strong=\"G1722\"* you|strong=\"G5210\"*, the|strong=\"G1722\"* hope|strong=\"G1680\"* of|strong=\"G2316\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 28, + "text": "We|strong=\"G2249\"* proclaim|strong=\"G2605\"* him|strong=\"G3739\"*, admonishing|strong=\"G3560\"* every|strong=\"G3956\"* man|strong=\"G3956\"* and|strong=\"G2532\"* teaching|strong=\"G1321\"* every|strong=\"G3956\"* man|strong=\"G3956\"* in|strong=\"G1722\"* all|strong=\"G3956\"* wisdom|strong=\"G4678\"*, that|strong=\"G2443\"* we|strong=\"G2249\"* may|strong=\"G2532\"* present|strong=\"G3936\"* every|strong=\"G3956\"* man|strong=\"G3956\"* perfect|strong=\"G5046\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2532\"*;" + }, + { + "verseNum": 29, + "text": "for|strong=\"G1519\"* which|strong=\"G3739\"* I|strong=\"G1473\"* also|strong=\"G2532\"* labor|strong=\"G2872\"*, striving according|strong=\"G2596\"* to|strong=\"G1519\"* his|strong=\"G1519\"* working|strong=\"G1753\"*, which|strong=\"G3739\"* works|strong=\"G1754\"* in|strong=\"G1722\"* me|strong=\"G1473\"* mightily|strong=\"G1411\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* desire|strong=\"G2309\"* to|strong=\"G2532\"* have|strong=\"G2192\"* you|strong=\"G5210\"* know|strong=\"G1492\"* how|strong=\"G1492\"* greatly|strong=\"G3756\"* I|strong=\"G1473\"* struggle for|strong=\"G1063\"* you|strong=\"G5210\"* and|strong=\"G2532\"* for|strong=\"G1063\"* those|strong=\"G3588\"* at|strong=\"G1722\"* Laodicea|strong=\"G2993\"*, and|strong=\"G2532\"* for|strong=\"G1063\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* have|strong=\"G2192\"* not|strong=\"G3756\"* seen|strong=\"G3708\"* my|strong=\"G3708\"* face|strong=\"G4383\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*;" + }, + { + "verseNum": 2, + "text": "that|strong=\"G2443\"* their|strong=\"G2532\"* hearts|strong=\"G2588\"* may|strong=\"G2532\"* be|strong=\"G2532\"* comforted|strong=\"G3870\"*, they|strong=\"G2532\"* being|strong=\"G2532\"* knit|strong=\"G4822\"* together|strong=\"G4822\"* in|strong=\"G1722\"* love, and|strong=\"G2532\"* gaining all|strong=\"G3956\"* riches|strong=\"G4149\"* of|strong=\"G2316\"* the|strong=\"G1722\"* full|strong=\"G3956\"* assurance|strong=\"G4136\"* of|strong=\"G2316\"* understanding|strong=\"G4907\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* may|strong=\"G2532\"* know|strong=\"G1722\"* the|strong=\"G1722\"* mystery|strong=\"G3466\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, both|strong=\"G2532\"* of|strong=\"G2316\"* the|strong=\"G1722\"* Father and|strong=\"G2532\"* of|strong=\"G2316\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 3, + "text": "in|strong=\"G1722\"* whom|strong=\"G3739\"* all|strong=\"G3956\"* the|strong=\"G1722\"* treasures|strong=\"G2344\"* of|strong=\"G2532\"* wisdom|strong=\"G4678\"* and|strong=\"G2532\"* knowledge|strong=\"G1108\"* are|strong=\"G1510\"* hidden." + }, + { + "verseNum": 4, + "text": "Now|strong=\"G1722\"* I|strong=\"G3778\"* say|strong=\"G3004\"* this|strong=\"G3778\"* that|strong=\"G2443\"* no|strong=\"G3367\"* one|strong=\"G3367\"* may|strong=\"G2443\"* delude|strong=\"G3884\"* you|strong=\"G5210\"* with|strong=\"G1722\"* persuasiveness of|strong=\"G1722\"* speech." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* though|strong=\"G1487\"* I|strong=\"G2532\"* am|strong=\"G1510\"* absent in|strong=\"G1519\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, yet|strong=\"G2532\"* I|strong=\"G2532\"* am|strong=\"G1510\"* with|strong=\"G4862\"* you|strong=\"G5210\"* in|strong=\"G1519\"* the|strong=\"G2532\"* spirit|strong=\"G4151\"*, rejoicing|strong=\"G5463\"* and|strong=\"G2532\"* seeing your|strong=\"G2532\"* order|strong=\"G5010\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* steadfastness of|strong=\"G4151\"* your|strong=\"G2532\"* faith|strong=\"G4102\"* in|strong=\"G1519\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 6, + "text": "As|strong=\"G5613\"* therefore|strong=\"G3767\"* you|strong=\"G1722\"* received|strong=\"G3880\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, walk|strong=\"G4043\"* in|strong=\"G1722\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 7, + "text": "rooted|strong=\"G4492\"* and|strong=\"G2532\"* built|strong=\"G2026\"* up|strong=\"G2026\"* in|strong=\"G1722\"* him|strong=\"G3588\"* and|strong=\"G2532\"* established in|strong=\"G1722\"* the|strong=\"G1722\"* faith|strong=\"G4102\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* you|strong=\"G1722\"* were|strong=\"G3588\"* taught|strong=\"G1321\"*, abounding|strong=\"G4052\"* in|strong=\"G1722\"* it|strong=\"G2532\"* in|strong=\"G1722\"* thanksgiving|strong=\"G2169\"*." + }, + { + "verseNum": 8, + "text": "Be|strong=\"G1510\"* careful that|strong=\"G3588\"* you|strong=\"G5210\"* don’t|strong=\"G3588\"* let|strong=\"G1510\"* anyone|strong=\"G5100\"* rob you|strong=\"G5210\"* through|strong=\"G1223\"* his|strong=\"G1223\"* philosophy|strong=\"G5385\"* and|strong=\"G2532\"* vain|strong=\"G2756\"* deceit, after|strong=\"G2596\"* the|strong=\"G2532\"* tradition|strong=\"G3862\"* of|strong=\"G1223\"* men|strong=\"G5100\"*, after|strong=\"G2596\"* the|strong=\"G2532\"* elemental|strong=\"G4747\"* spirits|strong=\"G2889\"* of|strong=\"G1223\"* the|strong=\"G2532\"* world|strong=\"G2889\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* after|strong=\"G2596\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G3754\"* in|strong=\"G1722\"* him|strong=\"G3588\"* all|strong=\"G3956\"* the|strong=\"G1722\"* fullness|strong=\"G4138\"* of|strong=\"G1722\"* the|strong=\"G1722\"* Deity|strong=\"G2320\"* dwells|strong=\"G2730\"* bodily|strong=\"G4985\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* in|strong=\"G1722\"* him|strong=\"G3588\"* you|strong=\"G3739\"* are|strong=\"G1510\"* made|strong=\"G4137\"* full|strong=\"G4137\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G1722\"* head|strong=\"G2776\"* of|strong=\"G2532\"* all|strong=\"G3956\"* principality and|strong=\"G2532\"* power|strong=\"G1849\"*." + }, + { + "verseNum": 11, + "text": "In|strong=\"G1722\"* him|strong=\"G3588\"* you|strong=\"G3739\"* were|strong=\"G3588\"* also|strong=\"G2532\"* circumcised|strong=\"G4059\"* with|strong=\"G1722\"* a|strong=\"G2532\"* circumcision|strong=\"G4061\"* not|strong=\"G3739\"* made with|strong=\"G1722\"* hands, in|strong=\"G1722\"* the|strong=\"G1722\"* putting|strong=\"G2532\"* off of|strong=\"G2532\"* the|strong=\"G1722\"* body|strong=\"G4983\"* of|strong=\"G2532\"* the|strong=\"G1722\"* sins of|strong=\"G2532\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* circumcision|strong=\"G4061\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 12, + "text": "having|strong=\"G2532\"* been|strong=\"G2532\"* buried|strong=\"G4916\"* with|strong=\"G1722\"* him|strong=\"G3588\"* in|strong=\"G1722\"* baptism, in|strong=\"G1722\"* which|strong=\"G3739\"* you|strong=\"G3739\"* were|strong=\"G3588\"* also|strong=\"G2532\"* raised|strong=\"G1453\"* with|strong=\"G1722\"* him|strong=\"G3588\"* through|strong=\"G1223\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* the|strong=\"G1722\"* working|strong=\"G1753\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, who|strong=\"G3739\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"G5210\"* were|strong=\"G1510\"* dead|strong=\"G3498\"* through|strong=\"G1722\"* your|strong=\"G2532\"* trespasses|strong=\"G3900\"* and|strong=\"G2532\"* the|strong=\"G1722\"* uncircumcision of|strong=\"G2532\"* your|strong=\"G2532\"* flesh|strong=\"G4561\"*. He|strong=\"G2532\"* made|strong=\"G4806\"* you|strong=\"G5210\"* alive|strong=\"G4806\"* together|strong=\"G4806\"* with|strong=\"G1722\"* him|strong=\"G3588\"*, having|strong=\"G2532\"* forgiven|strong=\"G5483\"* us|strong=\"G5483\"* all|strong=\"G3956\"* our|strong=\"G2532\"* trespasses|strong=\"G3900\"*," + }, + { + "verseNum": 14, + "text": "wiping out|strong=\"G1537\"* the|strong=\"G2532\"* handwriting|strong=\"G5498\"* in|strong=\"G2596\"* ordinances|strong=\"G1378\"* which|strong=\"G3739\"* was|strong=\"G1510\"* against|strong=\"G2596\"* us|strong=\"G2249\"*. He|strong=\"G2532\"* has|strong=\"G3739\"* taken it|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* way|strong=\"G2596\"*, nailing|strong=\"G4338\"* it|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* cross|strong=\"G4716\"*." + }, + { + "verseNum": 15, + "text": "Having|strong=\"G2532\"* stripped the|strong=\"G1722\"* principalities and|strong=\"G2532\"* the|strong=\"G1722\"* powers|strong=\"G1849\"*, he|strong=\"G2532\"* made|strong=\"G1165\"* a|strong=\"G2532\"* show of|strong=\"G2532\"* them|strong=\"G3588\"* openly|strong=\"G3954\"*, triumphing over|strong=\"G1849\"* them|strong=\"G3588\"* in|strong=\"G1722\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 16, + "text": "Let|strong=\"G2919\"* no|strong=\"G3361\"* one|strong=\"G5100\"* therefore|strong=\"G3767\"* judge|strong=\"G2919\"* you|strong=\"G5210\"* in|strong=\"G1722\"* eating|strong=\"G1035\"* or|strong=\"G2228\"* drinking|strong=\"G4213\"*, or|strong=\"G2228\"* with|strong=\"G1722\"* respect|strong=\"G3313\"* to|strong=\"G1722\"* a|strong=\"G1722\"* feast|strong=\"G1859\"* day|strong=\"G4521\"* or|strong=\"G2228\"* a|strong=\"G1722\"* new|strong=\"G5100\"* moon|strong=\"G3561\"* or|strong=\"G2228\"* a|strong=\"G1722\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"*," + }, + { + "verseNum": 17, + "text": "which|strong=\"G3739\"* are|strong=\"G1510\"* a|strong=\"G1510\"* shadow|strong=\"G4639\"* of|strong=\"G4983\"* the|strong=\"G1161\"* things|strong=\"G3588\"* to|strong=\"G3195\"* come|strong=\"G3195\"*; but|strong=\"G1161\"* the|strong=\"G1161\"* body|strong=\"G4983\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"*’s." + }, + { + "verseNum": 18, + "text": "Let|strong=\"G2532\"* no|strong=\"G3367\"* one|strong=\"G3367\"* rob you|strong=\"G5210\"* of|strong=\"G5259\"* your|strong=\"G2532\"* prize|strong=\"G2603\"* by|strong=\"G1722\"* self-abasement|strong=\"G5012\"* and|strong=\"G2532\"* worshiping of|strong=\"G5259\"* the|strong=\"G1722\"* angels, dwelling in|strong=\"G1722\"* the|strong=\"G1722\"* things|strong=\"G3588\"* which|strong=\"G3739\"* he|strong=\"G2532\"* has|strong=\"G3739\"* not|strong=\"G3367\"* seen|strong=\"G3708\"*, vainly|strong=\"G1500\"* puffed|strong=\"G1500\"* up|strong=\"G5448\"* by|strong=\"G1722\"* his|strong=\"G1722\"* fleshly|strong=\"G4561\"* mind|strong=\"G3563\"*," + }, + { + "verseNum": 19, + "text": "and|strong=\"G2532\"* not|strong=\"G3756\"* holding|strong=\"G2902\"* firmly to|strong=\"G2532\"* the|strong=\"G2532\"* Head|strong=\"G2776\"*, from|strong=\"G1537\"* whom|strong=\"G3739\"* all|strong=\"G3956\"* the|strong=\"G2532\"* body|strong=\"G4983\"*, being|strong=\"G2532\"* supplied|strong=\"G2023\"* and|strong=\"G2532\"* knit|strong=\"G4822\"* together|strong=\"G4822\"* through|strong=\"G1223\"* the|strong=\"G2532\"* joints and|strong=\"G2532\"* ligaments|strong=\"G4886\"*, grows with|strong=\"G1537\"* God|strong=\"G2316\"*’s growth." + }, + { + "verseNum": 20, + "text": "If|strong=\"G1487\"* you|strong=\"G1487\"* died|strong=\"G3588\"* with|strong=\"G1722\"* Christ|strong=\"G5547\"* from|strong=\"G3588\"* the|strong=\"G1722\"* elemental|strong=\"G4747\"* spirits|strong=\"G2889\"* of|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*, why|strong=\"G5101\"*, as|strong=\"G5613\"* though|strong=\"G5613\"* living|strong=\"G2198\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*, do|strong=\"G5101\"* you|strong=\"G1487\"* subject yourselves|strong=\"G1722\"* to|strong=\"G1722\"* ordinances|strong=\"G1379\"*," + }, + { + "verseNum": 21, + "text": "“Don’t handle|strong=\"G2345\"*, nor|strong=\"G3366\"* taste|strong=\"G1089\"*, nor|strong=\"G3366\"* touch|strong=\"G2345\"*”" + }, + { + "verseNum": 22, + "text": "(all|strong=\"G3956\"* of|strong=\"G2532\"* which|strong=\"G3739\"* perish|strong=\"G5356\"* with|strong=\"G2532\"* use|strong=\"G3588\"*), according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G2532\"* precepts|strong=\"G1778\"* and|strong=\"G2532\"* doctrines|strong=\"G1319\"* of|strong=\"G2532\"* men|strong=\"G3956\"*?" + }, + { + "verseNum": 23, + "text": "These|strong=\"G3588\"* things|strong=\"G3588\"* indeed|strong=\"G2532\"* appear|strong=\"G1510\"* like|strong=\"G4314\"* wisdom|strong=\"G4678\"* in|strong=\"G1722\"* self-imposed worship|strong=\"G1479\"*, humility|strong=\"G5012\"*, and|strong=\"G2532\"* severity to|strong=\"G4314\"* the|strong=\"G1722\"* body|strong=\"G4983\"*, but|strong=\"G2532\"* aren’t|strong=\"G3588\"* of|strong=\"G3056\"* any|strong=\"G5100\"* value|strong=\"G5092\"* against|strong=\"G4314\"* the|strong=\"G1722\"* indulgence|strong=\"G4140\"* of|strong=\"G3056\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "If|strong=\"G1487\"* then|strong=\"G3767\"* you|strong=\"G1487\"* were|strong=\"G1510\"* raised|strong=\"G4891\"* together|strong=\"G4891\"* with|strong=\"G1722\"* Christ|strong=\"G5547\"*, seek|strong=\"G2212\"* the|strong=\"G1722\"* things|strong=\"G3588\"* that|strong=\"G3588\"* are|strong=\"G1510\"* above, where|strong=\"G3757\"* Christ|strong=\"G5547\"* is|strong=\"G1510\"*, seated|strong=\"G2521\"* on|strong=\"G1722\"* the|strong=\"G1722\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 2, + "text": "Set|strong=\"G5426\"* your|strong=\"G1909\"* mind|strong=\"G5426\"* on|strong=\"G1909\"* the|strong=\"G1909\"* things|strong=\"G3588\"* that|strong=\"G3588\"* are|strong=\"G3588\"* above|strong=\"G1909\"*, not|strong=\"G3361\"* on|strong=\"G1909\"* the|strong=\"G1909\"* things|strong=\"G3588\"* that|strong=\"G3588\"* are|strong=\"G3588\"* on|strong=\"G1909\"* the|strong=\"G1909\"* earth|strong=\"G1093\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* died|strong=\"G3588\"*, and|strong=\"G2532\"* your|strong=\"G2532\"* life|strong=\"G2222\"* is|strong=\"G3588\"* hidden|strong=\"G2928\"* with|strong=\"G1722\"* Christ|strong=\"G5547\"* in|strong=\"G1722\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"G3752\"* Christ|strong=\"G5547\"*, our|strong=\"G2532\"* life|strong=\"G2222\"*, is|strong=\"G3588\"* revealed|strong=\"G5319\"*, then|strong=\"G2532\"* you|strong=\"G5210\"* will|strong=\"G2532\"* also|strong=\"G2532\"* be|strong=\"G2532\"* revealed|strong=\"G5319\"* with|strong=\"G1722\"* him|strong=\"G3588\"* in|strong=\"G1722\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 5, + "text": "Put|strong=\"G2532\"* to|strong=\"G2532\"* death therefore|strong=\"G3767\"* your|strong=\"G2532\"* members|strong=\"G3196\"* which|strong=\"G3588\"* are|strong=\"G1510\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*: sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*, uncleanness, depraved passion|strong=\"G3806\"*, evil|strong=\"G2556\"* desire|strong=\"G1939\"*, and|strong=\"G2532\"* covetousness|strong=\"G4124\"*, which|strong=\"G3588\"* is|strong=\"G1510\"* idolatry|strong=\"G1495\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1223\"* these|strong=\"G3739\"* things|strong=\"G3588\"*’ sake|strong=\"G1223\"* the|strong=\"G1909\"* wrath|strong=\"G3709\"* of|strong=\"G5207\"* God|strong=\"G2316\"* comes|strong=\"G2064\"* on|strong=\"G1909\"* the|strong=\"G1909\"* children|strong=\"G5207\"* of|strong=\"G5207\"* disobedience." + }, + { + "verseNum": 7, + "text": "You|strong=\"G5210\"* also|strong=\"G2532\"* once|strong=\"G4218\"* walked|strong=\"G4043\"* in|strong=\"G1722\"* those|strong=\"G3778\"*, when|strong=\"G3753\"* you|strong=\"G5210\"* lived|strong=\"G2198\"* in|strong=\"G1722\"* them|strong=\"G1722\"*," + }, + { + "verseNum": 8, + "text": "but|strong=\"G1161\"* now|strong=\"G1161\"* you|strong=\"G5210\"* must|strong=\"G3588\"* put|strong=\"G2532\"* them|strong=\"G3588\"* all|strong=\"G3956\"* away: anger|strong=\"G3709\"*, wrath|strong=\"G3709\"*, malice|strong=\"G2549\"*, slander, and|strong=\"G2532\"* shameful speaking out|strong=\"G1537\"* of|strong=\"G1537\"* your|strong=\"G2532\"* mouth|strong=\"G4750\"*." + }, + { + "verseNum": 9, + "text": "Don’t|strong=\"G3588\"* lie|strong=\"G5574\"* to|strong=\"G1519\"* one|strong=\"G3588\"* another|strong=\"G3588\"*, seeing that|strong=\"G3588\"* you|strong=\"G3361\"* have|strong=\"G3588\"* put|strong=\"G3361\"* off the|strong=\"G1519\"* old|strong=\"G3820\"* man|strong=\"G3361\"* with|strong=\"G4862\"* his|strong=\"G1519\"* doings," + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* have|strong=\"G2532\"* put|strong=\"G1746\"* on|strong=\"G1519\"* the|strong=\"G2532\"* new|strong=\"G3501\"* man|strong=\"G1519\"*, who|strong=\"G3588\"* is|strong=\"G3588\"* being|strong=\"G2532\"* renewed in|strong=\"G1519\"* knowledge|strong=\"G1922\"* after|strong=\"G2596\"* the|strong=\"G2532\"* image|strong=\"G1504\"* of|strong=\"G2532\"* his|strong=\"G1519\"* Creator|strong=\"G2936\"*," + }, + { + "verseNum": 11, + "text": "where|strong=\"G3699\"* there|strong=\"G2532\"* can’t|strong=\"G3588\"* be|strong=\"G2532\"* Greek|strong=\"G1672\"* and|strong=\"G2532\"* Jew|strong=\"G2453\"*, circumcision|strong=\"G4061\"* and|strong=\"G2532\"* uncircumcision, barbarian, Scythian|strong=\"G4658\"*, bondservant, or|strong=\"G2532\"* free|strong=\"G1658\"* person; but|strong=\"G2532\"* Christ|strong=\"G5547\"* is|strong=\"G3588\"* all|strong=\"G3956\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 12, + "text": "Put|strong=\"G1746\"* on|strong=\"G1746\"* therefore|strong=\"G3767\"*, as|strong=\"G5613\"* God|strong=\"G2316\"*’s chosen|strong=\"G1588\"* ones, holy and|strong=\"G2532\"* beloved, a|strong=\"G5613\"* heart|strong=\"G4698\"* of|strong=\"G2316\"* compassion|strong=\"G3628\"*, kindness|strong=\"G5544\"*, lowliness|strong=\"G5012\"*, humility|strong=\"G5012\"*, and|strong=\"G2532\"* perseverance|strong=\"G3115\"*;" + }, + { + "verseNum": 13, + "text": "bearing|strong=\"G2192\"* with|strong=\"G4314\"* one|strong=\"G5100\"* another|strong=\"G1438\"*, and|strong=\"G2532\"* forgiving|strong=\"G5483\"* each|strong=\"G1438\"* other|strong=\"G5100\"*, if|strong=\"G1437\"* any|strong=\"G5100\"* man|strong=\"G5100\"* has|strong=\"G2192\"* a|strong=\"G2192\"* complaint|strong=\"G3437\"* against|strong=\"G4314\"* any|strong=\"G5100\"*; even|strong=\"G2532\"* as|strong=\"G2531\"* Christ|strong=\"G5547\"* forgave|strong=\"G5483\"* you|strong=\"G5210\"*, so|strong=\"G3779\"* you|strong=\"G5210\"* also|strong=\"G2532\"* do|strong=\"G2532\"*." + }, + { + "verseNum": 14, + "text": "Above|strong=\"G1909\"* all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"*, walk in|strong=\"G1909\"* love, which|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G3956\"* bond|strong=\"G4886\"* of|strong=\"G1909\"* perfection|strong=\"G5047\"*." + }, + { + "verseNum": 15, + "text": "And|strong=\"G2532\"* let|strong=\"G1096\"* the|strong=\"G1722\"* peace|strong=\"G1515\"* of|strong=\"G2532\"* God|strong=\"G2532\"* rule|strong=\"G1018\"* in|strong=\"G1722\"* your|strong=\"G2532\"* hearts|strong=\"G2588\"*, to|strong=\"G1519\"* which|strong=\"G3739\"* also|strong=\"G2532\"* you|strong=\"G5210\"* were|strong=\"G3588\"* called|strong=\"G2564\"* in|strong=\"G1722\"* one|strong=\"G1520\"* body|strong=\"G4983\"*, and|strong=\"G2532\"* be|strong=\"G1096\"* thankful|strong=\"G2170\"*." + }, + { + "verseNum": 16, + "text": "Let|strong=\"G1774\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* Christ|strong=\"G5547\"* dwell|strong=\"G1774\"* in|strong=\"G1722\"* you|strong=\"G5210\"* richly|strong=\"G4146\"*; in|strong=\"G1722\"* all|strong=\"G3956\"* wisdom|strong=\"G4678\"* teaching|strong=\"G1321\"* and|strong=\"G2532\"* admonishing|strong=\"G3560\"* one|strong=\"G3956\"* another|strong=\"G1438\"* with|strong=\"G1722\"* psalms|strong=\"G5568\"*, hymns|strong=\"G5215\"*, and|strong=\"G2532\"* spiritual|strong=\"G4152\"* songs|strong=\"G5603\"*, singing with|strong=\"G1722\"* grace|strong=\"G5485\"* in|strong=\"G1722\"* your|strong=\"G2532\"* heart|strong=\"G2588\"* to|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "Whatever|strong=\"G3739\"* you|strong=\"G3739\"* do|strong=\"G4160\"*, in|strong=\"G1722\"* word|strong=\"G3056\"* or|strong=\"G2228\"* in|strong=\"G1722\"* deed|strong=\"G2041\"*, do|strong=\"G4160\"* all|strong=\"G3956\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*, giving|strong=\"G2168\"* thanks|strong=\"G2168\"* to|strong=\"G2532\"* God|strong=\"G2316\"* the|strong=\"G1722\"* Father|strong=\"G3962\"* through|strong=\"G1223\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 18, + "text": "Wives|strong=\"G1135\"*, be|strong=\"G3588\"* in|strong=\"G1722\"* subjection|strong=\"G5293\"* to|strong=\"G1722\"* your|strong=\"G2962\"* husbands, as|strong=\"G5613\"* is|strong=\"G3588\"* fitting in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 19, + "text": "Husbands, love your|strong=\"G2532\"* wives|strong=\"G1135\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* be|strong=\"G2532\"* bitter|strong=\"G4087\"* against|strong=\"G4314\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 20, + "text": "Children|strong=\"G5043\"*, obey|strong=\"G5219\"* your|strong=\"G2962\"* parents|strong=\"G1118\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, for|strong=\"G1063\"* this|strong=\"G3778\"* pleases the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 21, + "text": "Fathers|strong=\"G3962\"*, don’t|strong=\"G3588\"* provoke|strong=\"G2042\"* your|strong=\"G3588\"* children|strong=\"G5043\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* they|strong=\"G3588\"* won’t|strong=\"G3588\"* be|strong=\"G3361\"* discouraged." + }, + { + "verseNum": 22, + "text": "Servants|strong=\"G1401\"*, obey|strong=\"G5219\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* your|strong=\"G2962\"* masters|strong=\"G2962\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, not|strong=\"G3361\"* just|strong=\"G5613\"* when|strong=\"G5613\"* they|strong=\"G3588\"* are|strong=\"G3588\"* looking, as|strong=\"G5613\"* men|strong=\"G3956\"* pleasers, but|strong=\"G3361\"* in|strong=\"G1722\"* singleness of|strong=\"G2962\"* heart|strong=\"G2588\"*, fearing|strong=\"G5399\"* God|strong=\"G3361\"*." + }, + { + "verseNum": 23, + "text": "And|strong=\"G2532\"* whatever|strong=\"G3739\"* you|strong=\"G3739\"* do|strong=\"G4160\"*, work|strong=\"G2038\"* heartily|strong=\"G5590\"*, as|strong=\"G5613\"* for|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* not|strong=\"G3756\"* for|strong=\"G2532\"* men|strong=\"G3588\"*," + }, + { + "verseNum": 24, + "text": "knowing|strong=\"G1492\"* that|strong=\"G3754\"* from|strong=\"G3588\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"* you|strong=\"G3754\"* will|strong=\"G2962\"* receive the|strong=\"G3588\"* reward of|strong=\"G2962\"* the|strong=\"G3588\"* inheritance|strong=\"G2817\"*; for|strong=\"G3754\"* you|strong=\"G3754\"* serve|strong=\"G1398\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3739\"* does|strong=\"G1510\"* wrong|strong=\"G2865\"* will|strong=\"G1510\"* receive|strong=\"G2865\"* again|strong=\"G2532\"* for|strong=\"G1063\"* the|strong=\"G2532\"* wrong|strong=\"G2865\"* that|strong=\"G3739\"* he|strong=\"G2532\"* has|strong=\"G3739\"* done, and|strong=\"G2532\"* there|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3756\"* partiality|strong=\"G4382\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Masters|strong=\"G2962\"*, give|strong=\"G3930\"* to|strong=\"G2532\"* your|strong=\"G2192\"* servants|strong=\"G1401\"* that|strong=\"G3754\"* which|strong=\"G3588\"* is|strong=\"G3588\"* just|strong=\"G1342\"* and|strong=\"G2532\"* equal|strong=\"G2471\"*, knowing|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G5210\"* also|strong=\"G2532\"* have|strong=\"G2192\"* a|strong=\"G2192\"* Master|strong=\"G2962\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 2, + "text": "Continue|strong=\"G4342\"* steadfastly in|strong=\"G1722\"* prayer|strong=\"G4335\"*, watching|strong=\"G1127\"* in|strong=\"G1722\"* it|strong=\"G3588\"* with|strong=\"G1722\"* thanksgiving|strong=\"G2169\"*," + }, + { + "verseNum": 3, + "text": "praying|strong=\"G4336\"* together|strong=\"G2532\"* for|strong=\"G1223\"* us|strong=\"G2249\"* also|strong=\"G2532\"*, that|strong=\"G2443\"* God|strong=\"G2316\"* may|strong=\"G2532\"* open to|strong=\"G2443\"* us|strong=\"G2249\"* a|strong=\"G2532\"* door|strong=\"G2374\"* for|strong=\"G1223\"* the|strong=\"G2532\"* word|strong=\"G3056\"*, to|strong=\"G2443\"* speak|strong=\"G2980\"* the|strong=\"G2532\"* mystery|strong=\"G3466\"* of|strong=\"G4012\"* Christ|strong=\"G5547\"*, for|strong=\"G1223\"* which|strong=\"G3739\"* I|strong=\"G1473\"* am|strong=\"G1473\"* also|strong=\"G2532\"* in|strong=\"G2532\"* bonds|strong=\"G1210\"*," + }, + { + "verseNum": 4, + "text": "that|strong=\"G2443\"* I|strong=\"G1473\"* may|strong=\"G2443\"* reveal|strong=\"G5319\"* it|strong=\"G5613\"* as|strong=\"G5613\"* I|strong=\"G1473\"* ought|strong=\"G1163\"* to|strong=\"G2443\"* speak|strong=\"G2980\"*." + }, + { + "verseNum": 5, + "text": "Walk|strong=\"G4043\"* in|strong=\"G1722\"* wisdom|strong=\"G4678\"* toward|strong=\"G4314\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* outside|strong=\"G1854\"*, redeeming|strong=\"G1805\"* the|strong=\"G1722\"* time|strong=\"G2540\"*." + }, + { + "verseNum": 6, + "text": "Let your|strong=\"G1722\"* speech|strong=\"G3056\"* always|strong=\"G3842\"* be|strong=\"G1163\"* with|strong=\"G1722\"* grace|strong=\"G5485\"*, seasoned with|strong=\"G1722\"* salt, that|strong=\"G3588\"* you|strong=\"G5210\"* may|strong=\"G5485\"* know|strong=\"G1492\"* how|strong=\"G4459\"* you|strong=\"G5210\"* ought|strong=\"G1163\"* to|strong=\"G1722\"* answer|strong=\"G3056\"* each|strong=\"G1538\"* one|strong=\"G1520\"*." + }, + { + "verseNum": 7, + "text": "All|strong=\"G3956\"* my|strong=\"G1722\"* affairs|strong=\"G3588\"* will|strong=\"G2532\"* be|strong=\"G2532\"* made|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G2532\"* you|strong=\"G5210\"* by|strong=\"G1722\"* Tychicus|strong=\"G5190\"*, the|strong=\"G1722\"* beloved brother, faithful|strong=\"G4103\"* servant|strong=\"G1249\"*, and|strong=\"G2532\"* fellow|strong=\"G4889\"* bondservant in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"G1473\"* am|strong=\"G1473\"* sending|strong=\"G3992\"* him|strong=\"G3588\"* to|strong=\"G1519\"* you|strong=\"G5210\"* for|strong=\"G1519\"* this|strong=\"G3778\"* very|strong=\"G2532\"* purpose|strong=\"G3739\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* may|strong=\"G2532\"* know|strong=\"G1097\"* your|strong=\"G2532\"* circumstances|strong=\"G3588\"* and|strong=\"G2532\"* comfort|strong=\"G3870\"* your|strong=\"G2532\"* hearts|strong=\"G2588\"*," + }, + { + "verseNum": 9, + "text": "together|strong=\"G4862\"* with|strong=\"G4862\"* Onesimus|strong=\"G3682\"*, the|strong=\"G2532\"* faithful|strong=\"G4103\"* and|strong=\"G2532\"* beloved brother, who|strong=\"G3739\"* is|strong=\"G1510\"* one|strong=\"G3739\"* of|strong=\"G1537\"* you|strong=\"G5210\"*. They|strong=\"G2532\"* will|strong=\"G1510\"* make|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G2532\"* you|strong=\"G5210\"* everything|strong=\"G3956\"* that|strong=\"G3739\"* is|strong=\"G1510\"* going|strong=\"G2532\"* on|strong=\"G1537\"* here|strong=\"G5602\"*." + }, + { + "verseNum": 10, + "text": "Aristarchus, my|strong=\"G1473\"* fellow|strong=\"G4869\"* prisoner|strong=\"G4869\"*, greets you|strong=\"G5210\"*, and|strong=\"G2532\"* Mark|strong=\"G3138\"* the|strong=\"G2532\"* cousin of|strong=\"G4012\"* Barnabas (concerning|strong=\"G4012\"* whom|strong=\"G3739\"* you|strong=\"G5210\"* received|strong=\"G2983\"* instructions|strong=\"G1785\"*, “if|strong=\"G1437\"* he|strong=\"G2532\"* comes|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"*, receive|strong=\"G2983\"* him|strong=\"G3588\"*”)," + }, + { + "verseNum": 11, + "text": "and|strong=\"G2532\"* Jesus|strong=\"G2424\"* who|strong=\"G3588\"* is|strong=\"G1510\"* called|strong=\"G3004\"* Justus|strong=\"G2459\"*. These|strong=\"G3778\"* are|strong=\"G1510\"* my|strong=\"G1473\"* only|strong=\"G3441\"* fellow|strong=\"G4904\"* workers|strong=\"G4904\"* for|strong=\"G1519\"* God|strong=\"G2316\"*’s Kingdom who|strong=\"G3588\"* are|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G2532\"* circumcision|strong=\"G4061\"*, men|strong=\"G3778\"* who|strong=\"G3588\"* have|strong=\"G2532\"* been|strong=\"G1510\"* a|strong=\"G1096\"* comfort|strong=\"G3931\"* to|strong=\"G1519\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 12, + "text": "Epaphras|strong=\"G1889\"*, who|strong=\"G3588\"* is|strong=\"G3588\"* one|strong=\"G3956\"* of|strong=\"G1537\"* you|strong=\"G5210\"*, a|strong=\"G2532\"* servant|strong=\"G1401\"* of|strong=\"G1537\"* Christ|strong=\"G5547\"*, salutes you|strong=\"G5210\"*, always|strong=\"G3842\"* striving for|strong=\"G5228\"* you|strong=\"G5210\"* in|strong=\"G1722\"* his|strong=\"G3956\"* prayers|strong=\"G4335\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* stand|strong=\"G2476\"* perfect|strong=\"G5046\"* and|strong=\"G2532\"* complete|strong=\"G3956\"* in|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* will|strong=\"G2307\"* of|strong=\"G1537\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* I|strong=\"G2532\"* testify|strong=\"G3140\"* about|strong=\"G1722\"* him|strong=\"G3588\"* that|strong=\"G3754\"* he|strong=\"G2532\"* has|strong=\"G2192\"* great|strong=\"G4183\"* zeal for|strong=\"G1063\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* for|strong=\"G1063\"* those|strong=\"G3588\"* in|strong=\"G1722\"* Laodicea|strong=\"G2993\"*, and|strong=\"G2532\"* for|strong=\"G1063\"* those|strong=\"G3588\"* in|strong=\"G1722\"* Hierapolis|strong=\"G2404\"*." + }, + { + "verseNum": 14, + "text": "Luke|strong=\"G3065\"* the|strong=\"G2532\"* beloved physician|strong=\"G2395\"* and|strong=\"G2532\"* Demas|strong=\"G1214\"* greet you|strong=\"G5210\"*." + }, + { + "verseNum": 15, + "text": "Greet the|strong=\"G1722\"* brothers who|strong=\"G3588\"* are|strong=\"G3588\"* in|strong=\"G1722\"* Laodicea|strong=\"G2993\"*, with|strong=\"G1722\"* Nymphas|strong=\"G3564\"* and|strong=\"G2532\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* that|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* his|strong=\"G1722\"* house|strong=\"G3624\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"G3752\"* this|strong=\"G3588\"* letter|strong=\"G1992\"* has|strong=\"G2532\"* been|strong=\"G2532\"* read among|strong=\"G1722\"* you|strong=\"G5210\"*, cause|strong=\"G4160\"* it|strong=\"G2532\"* to|strong=\"G2443\"* be|strong=\"G2532\"* read also|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* of|strong=\"G1537\"* the|strong=\"G1722\"* Laodiceans|strong=\"G2994\"*, and|strong=\"G2532\"* that|strong=\"G2443\"* you|strong=\"G5210\"* also|strong=\"G2532\"* read the|strong=\"G1722\"* letter|strong=\"G1992\"* from|strong=\"G1537\"* Laodicea|strong=\"G2993\"*." + }, + { + "verseNum": 17, + "text": "Tell|strong=\"G3004\"* Archippus, “Take|strong=\"G3880\"* heed to|strong=\"G2443\"* the|strong=\"G1722\"* ministry|strong=\"G1248\"* which|strong=\"G3739\"* you|strong=\"G3739\"* have|strong=\"G2532\"* received|strong=\"G3880\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, that|strong=\"G2443\"* you|strong=\"G3739\"* fulfill|strong=\"G4137\"* it|strong=\"G2532\"*.”" + }, + { + "verseNum": 18, + "text": "I|strong=\"G1473\"*, Paul|strong=\"G3972\"*, write this|strong=\"G3588\"* greeting with|strong=\"G3326\"* my|strong=\"G1699\"* own|strong=\"G1699\"* hand|strong=\"G5495\"*. Remember|strong=\"G3421\"* my|strong=\"G1699\"* chains|strong=\"G1199\"*. Grace|strong=\"G5485\"* be|strong=\"G3588\"* with|strong=\"G3326\"* you|strong=\"G5210\"*. Amen." + } + ] + } + ] + }, + { + "name": "1 Thessalonians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, Silvanus|strong=\"G4610\"*, and|strong=\"G2532\"* Timothy|strong=\"G5095\"*, to|strong=\"G2532\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* of|strong=\"G2316\"* the|strong=\"G1722\"* Thessalonians|strong=\"G2331\"* in|strong=\"G1722\"* God|strong=\"G2316\"* the|strong=\"G1722\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*:+ 1:1 “Christ” means “Anointed One”.* Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 2, + "text": "We|strong=\"G2249\"* always|strong=\"G3842\"* give|strong=\"G2168\"* thanks|strong=\"G2168\"* to|strong=\"G1909\"* God|strong=\"G2316\"* for|strong=\"G4012\"* all|strong=\"G3956\"* of|strong=\"G4012\"* you|strong=\"G5210\"*, mentioning you|strong=\"G5210\"* in|strong=\"G1909\"* our|strong=\"G2316\"* prayers|strong=\"G4335\"*," + }, + { + "verseNum": 3, + "text": "remembering|strong=\"G3421\"* without|strong=\"G2532\"* ceasing your|strong=\"G2962\"* work|strong=\"G2041\"* of|strong=\"G2316\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* labor|strong=\"G2873\"* of|strong=\"G2316\"* love and|strong=\"G2532\"* perseverance|strong=\"G5281\"* of|strong=\"G2316\"* hope|strong=\"G1680\"* in|strong=\"G2532\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, before|strong=\"G1715\"* our|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"*." + }, + { + "verseNum": 4, + "text": "We|strong=\"G1492\"* know|strong=\"G1492\"*, brothers+ 1:4 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” * loved by|strong=\"G5259\"* God|strong=\"G2316\"*, that|strong=\"G3588\"* you|strong=\"G5210\"* are|strong=\"G3588\"* chosen|strong=\"G1589\"*," + }, + { + "verseNum": 5, + "text": "and|strong=\"G2532\"* that|strong=\"G3754\"* our|strong=\"G2532\"* Good|strong=\"G1223\"* News|strong=\"G3056\"* came|strong=\"G1096\"* to|strong=\"G1519\"* you|strong=\"G5210\"* not|strong=\"G3756\"* in|strong=\"G1722\"* word|strong=\"G3056\"* only|strong=\"G3440\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* in|strong=\"G1722\"* power|strong=\"G1411\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* and|strong=\"G2532\"* with|strong=\"G1722\"* much|strong=\"G4183\"* assurance|strong=\"G4136\"*. You|strong=\"G5210\"* know|strong=\"G1492\"* what|strong=\"G3588\"* kind|strong=\"G3634\"* of|strong=\"G3056\"* men|strong=\"G3588\"* we|strong=\"G2249\"* showed ourselves|strong=\"G2249\"* to|strong=\"G1519\"* be|strong=\"G1096\"* among|strong=\"G1722\"* you|strong=\"G5210\"* for|strong=\"G3754\"* your|strong=\"G1223\"* sake|strong=\"G1223\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"G5210\"* became|strong=\"G1096\"* imitators|strong=\"G3402\"* of|strong=\"G3056\"* us|strong=\"G2249\"* and|strong=\"G2532\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, having|strong=\"G2532\"* received|strong=\"G1209\"* the|strong=\"G1722\"* word|strong=\"G3056\"* in|strong=\"G1722\"* much|strong=\"G4183\"* affliction|strong=\"G2347\"*, with|strong=\"G3326\"* joy|strong=\"G5479\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*," + }, + { + "verseNum": 7, + "text": "so|strong=\"G2532\"* that|strong=\"G3588\"* you|strong=\"G5210\"* became|strong=\"G1096\"* an|strong=\"G2532\"* example|strong=\"G5179\"* to|strong=\"G2532\"* all|strong=\"G3956\"* who|strong=\"G3588\"* believe|strong=\"G4100\"* in|strong=\"G1722\"* Macedonia|strong=\"G3109\"* and|strong=\"G2532\"* in|strong=\"G1722\"* Achaia." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* from|strong=\"G2532\"* you|strong=\"G5210\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* has|strong=\"G2192\"* been|strong=\"G2192\"* declared|strong=\"G2980\"*, not|strong=\"G3756\"* only|strong=\"G3440\"* in|strong=\"G1722\"* Macedonia|strong=\"G3109\"* and|strong=\"G2532\"* Achaia, but|strong=\"G2532\"* also|strong=\"G2532\"* in|strong=\"G1722\"* every|strong=\"G3956\"* place|strong=\"G5117\"* your|strong=\"G2192\"* faith|strong=\"G4102\"* toward|strong=\"G4314\"* God|strong=\"G2316\"* has|strong=\"G2192\"* gone|strong=\"G1831\"* out|strong=\"G1831\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* we|strong=\"G2249\"* need|strong=\"G5532\"* not|strong=\"G3756\"* to|strong=\"G4314\"* say|strong=\"G2980\"* anything|strong=\"G5100\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* they|strong=\"G2532\"* themselves report concerning|strong=\"G4012\"* us|strong=\"G2249\"* what|strong=\"G3588\"* kind|strong=\"G3697\"* of|strong=\"G4012\"* a|strong=\"G2192\"* reception|strong=\"G1529\"* we|strong=\"G2249\"* had|strong=\"G2192\"* from|strong=\"G2532\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* how|strong=\"G4459\"* you|strong=\"G5210\"* turned|strong=\"G1994\"* to|strong=\"G4314\"* God|strong=\"G2316\"* from|strong=\"G2532\"* idols|strong=\"G1497\"* to|strong=\"G4314\"* serve|strong=\"G1398\"* a|strong=\"G2192\"* living|strong=\"G2198\"* and|strong=\"G2532\"* true|strong=\"G3588\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* to|strong=\"G2532\"* wait for|strong=\"G2532\"* his|strong=\"G2532\"* Son|strong=\"G5207\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"*, whom|strong=\"G3739\"* he|strong=\"G2532\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*: Jesus|strong=\"G2424\"*, who|strong=\"G3739\"* delivers us|strong=\"G2249\"* from|strong=\"G1537\"* the|strong=\"G2532\"* wrath|strong=\"G3709\"* to|strong=\"G2532\"* come|strong=\"G2064\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* yourselves|strong=\"G4771\"* know|strong=\"G1492\"*, brothers, our|strong=\"G4314\"* visit to|strong=\"G4314\"* you|strong=\"G5210\"* wasn’t|strong=\"G3588\"* in|strong=\"G1096\"* vain|strong=\"G2756\"*," + }, + { + "verseNum": 2, + "text": "but|strong=\"G2532\"* having|strong=\"G2532\"* suffered|strong=\"G4310\"* before|strong=\"G4314\"* and|strong=\"G2532\"* been|strong=\"G2532\"* shamefully treated, as|strong=\"G2531\"* you|strong=\"G5210\"* know|strong=\"G1492\"*, at|strong=\"G1722\"* Philippi|strong=\"G5375\"*, we|strong=\"G2249\"* grew bold|strong=\"G3955\"* in|strong=\"G1722\"* our|strong=\"G2316\"* God|strong=\"G2316\"* to|strong=\"G4314\"* tell|strong=\"G1492\"* you|strong=\"G5210\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G2316\"* God|strong=\"G2316\"* in|strong=\"G1722\"* much|strong=\"G4183\"* conflict." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* our|strong=\"G1722\"* exhortation|strong=\"G3874\"* is|strong=\"G3588\"* not|strong=\"G3756\"* of|strong=\"G1537\"* error|strong=\"G4106\"*, nor|strong=\"G3761\"* of|strong=\"G1537\"* uncleanness, nor|strong=\"G3761\"* in|strong=\"G1722\"* deception|strong=\"G4106\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G2316\"* even|strong=\"G2531\"* as|strong=\"G5613\"* we|strong=\"G2249\"* have|strong=\"G1473\"* been|strong=\"G3756\"* approved|strong=\"G1381\"* by|strong=\"G5259\"* God|strong=\"G2316\"* to|strong=\"G3756\"* be|strong=\"G3756\"* entrusted|strong=\"G4100\"* with|strong=\"G2980\"* the|strong=\"G3588\"* Good|strong=\"G3756\"* News|strong=\"G2098\"*, so|strong=\"G3779\"* we|strong=\"G2249\"* speak|strong=\"G2980\"*—not|strong=\"G3756\"* as|strong=\"G5613\"* pleasing men|strong=\"G3588\"*, but|strong=\"G2316\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* tests our|strong=\"G2316\"* hearts|strong=\"G2588\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* neither|strong=\"G3777\"* were|strong=\"G1096\"* we|strong=\"G1063\"* at|strong=\"G1722\"* any|strong=\"G1492\"* time|strong=\"G4218\"* found|strong=\"G1096\"* using words|strong=\"G3056\"* of|strong=\"G3056\"* flattery, as|strong=\"G2531\"* you|strong=\"G1722\"* know|strong=\"G1492\"*, nor|strong=\"G3777\"* a|strong=\"G1096\"* cloak of|strong=\"G3056\"* covetousness|strong=\"G4124\"* (God|strong=\"G2316\"* is|strong=\"G2316\"* witness|strong=\"G3144\"*)," + }, + { + "verseNum": 6, + "text": "nor|strong=\"G3777\"* seeking|strong=\"G2212\"* glory|strong=\"G1391\"* from|strong=\"G1537\"* men|strong=\"G1722\"* (neither|strong=\"G3777\"* from|strong=\"G1537\"* you|strong=\"G5210\"* nor|strong=\"G3777\"* from|strong=\"G1537\"* others), when|strong=\"G5613\"* we|strong=\"G5613\"* might|strong=\"G1410\"* have|strong=\"G1510\"* claimed authority|strong=\"G2212\"* as|strong=\"G5613\"* apostles of|strong=\"G1537\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1437\"* we|strong=\"G1437\"* were|strong=\"G1510\"* gentle|strong=\"G2261\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, like|strong=\"G5613\"* a|strong=\"G1096\"* nursing|strong=\"G5162\"* mother cherishes|strong=\"G2282\"* her|strong=\"G1437\"* own|strong=\"G1438\"* children|strong=\"G5043\"*." + }, + { + "verseNum": 8, + "text": "Even|strong=\"G2532\"* so|strong=\"G3779\"*, affectionately longing for|strong=\"G1360\"* you|strong=\"G5210\"*, we|strong=\"G2249\"* were|strong=\"G3588\"* well|strong=\"G2532\"* pleased|strong=\"G2106\"* to|strong=\"G2532\"* impart|strong=\"G3330\"* to|strong=\"G2532\"* you|strong=\"G5210\"* not|strong=\"G3756\"* the|strong=\"G2532\"* Good|strong=\"G2106\"* News|strong=\"G2098\"* of|strong=\"G2316\"* God|strong=\"G2316\"* only|strong=\"G3440\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* our|strong=\"G2316\"* own|strong=\"G1438\"* souls|strong=\"G5590\"*, because|strong=\"G1360\"* you|strong=\"G5210\"* had|strong=\"G2532\"* become|strong=\"G1096\"* very|strong=\"G2532\"* dear to|strong=\"G2532\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* remember|strong=\"G3421\"*, brothers, our|strong=\"G2316\"* labor|strong=\"G2873\"* and|strong=\"G2532\"* travail|strong=\"G3449\"*; for|strong=\"G1063\"* working|strong=\"G2038\"* night|strong=\"G3571\"* and|strong=\"G2532\"* day|strong=\"G2250\"*, that|strong=\"G3588\"* we|strong=\"G2249\"* might|strong=\"G2532\"* not|strong=\"G3361\"* burden|strong=\"G1912\"* any|strong=\"G5100\"* of|strong=\"G2250\"* you|strong=\"G5210\"*, we|strong=\"G2249\"* preached|strong=\"G2784\"* to|strong=\"G1519\"* you|strong=\"G5210\"* the|strong=\"G2532\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G2250\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"G5210\"* are|strong=\"G3588\"* witnesses|strong=\"G3144\"* with|strong=\"G2532\"* God|strong=\"G2316\"* how|strong=\"G5613\"* holy, righteously|strong=\"G1346\"*, and|strong=\"G2532\"* blamelessly we|strong=\"G2532\"* behaved|strong=\"G1096\"* ourselves|strong=\"G1096\"* toward you|strong=\"G5210\"* who|strong=\"G3588\"* believe|strong=\"G4100\"*." + }, + { + "verseNum": 11, + "text": "As|strong=\"G5613\"* you|strong=\"G5210\"* know|strong=\"G1492\"*, we|strong=\"G2532\"* exhorted|strong=\"G3870\"*, comforted|strong=\"G3870\"*, and|strong=\"G2532\"* implored|strong=\"G3870\"* every|strong=\"G1538\"* one|strong=\"G1520\"* of|strong=\"G2532\"* you|strong=\"G5210\"*, as|strong=\"G5613\"* a|strong=\"G5613\"* father|strong=\"G3962\"* does|strong=\"G1492\"* his|strong=\"G1438\"* own|strong=\"G1438\"* children|strong=\"G5043\"*," + }, + { + "verseNum": 12, + "text": "to|strong=\"G1519\"* the|strong=\"G2532\"* end|strong=\"G1519\"* that|strong=\"G3588\"* you|strong=\"G5210\"* should|strong=\"G2316\"* walk|strong=\"G4043\"* worthily of|strong=\"G2316\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* calls|strong=\"G2564\"* you|strong=\"G5210\"* into|strong=\"G1519\"* his|strong=\"G1438\"* own|strong=\"G1438\"* Kingdom and|strong=\"G2532\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G3754\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* we|strong=\"G2249\"* also|strong=\"G2532\"* thank|strong=\"G2168\"* God|strong=\"G2316\"* without|strong=\"G2532\"* ceasing that|strong=\"G3754\"* when|strong=\"G2532\"* you|strong=\"G5210\"* received|strong=\"G1209\"* from|strong=\"G3844\"* us|strong=\"G2249\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* message|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*, you|strong=\"G5210\"* accepted|strong=\"G1209\"* it|strong=\"G2532\"* not|strong=\"G3756\"* as|strong=\"G2531\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* men|strong=\"G3778\"*, but|strong=\"G2532\"* as|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G1510\"* in|strong=\"G1722\"* truth, God|strong=\"G2316\"*’s word|strong=\"G3056\"*, which|strong=\"G3739\"* also|strong=\"G2532\"* works|strong=\"G1754\"* in|strong=\"G1722\"* you|strong=\"G5210\"* who|strong=\"G3739\"* believe|strong=\"G4100\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"*, brothers, became|strong=\"G1096\"* imitators|strong=\"G3402\"* of|strong=\"G5259\"* the|strong=\"G1722\"* assemblies|strong=\"G1577\"* of|strong=\"G5259\"* God|strong=\"G2316\"* which|strong=\"G3588\"* are|strong=\"G1510\"* in|strong=\"G1722\"* Judea|strong=\"G2453\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*; for|strong=\"G1063\"* you|strong=\"G5210\"* also|strong=\"G2532\"* suffered|strong=\"G3958\"* the|strong=\"G1722\"* same|strong=\"G2532\"* things|strong=\"G3588\"* from|strong=\"G2532\"* your|strong=\"G2532\"* own|strong=\"G2398\"* countrymen|strong=\"G4853\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* they|strong=\"G2532\"* did|strong=\"G2532\"* from|strong=\"G2532\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"*" + }, + { + "verseNum": 15, + "text": "who|strong=\"G3588\"* killed both|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* their|strong=\"G2532\"* own prophets|strong=\"G4396\"*, and|strong=\"G2532\"* drove|strong=\"G1559\"* us|strong=\"G2249\"* out|strong=\"G2532\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* please God|strong=\"G2316\"*, and|strong=\"G2532\"* are|strong=\"G3588\"* contrary|strong=\"G1727\"* to|strong=\"G2532\"* all|strong=\"G3956\"* men|strong=\"G3956\"*," + }, + { + "verseNum": 16, + "text": "forbidding|strong=\"G2967\"* us|strong=\"G1519\"* to|strong=\"G1519\"* speak|strong=\"G2980\"* to|strong=\"G1519\"* the|strong=\"G1519\"* Gentiles|strong=\"G1484\"* that|strong=\"G2443\"* they|strong=\"G1161\"* may|strong=\"G2443\"* be|strong=\"G1519\"* saved|strong=\"G4982\"*, to|strong=\"G1519\"* fill|strong=\"G1519\"* up|strong=\"G1519\"* their|strong=\"G1438\"* sins always|strong=\"G3842\"*. But|strong=\"G1161\"* wrath|strong=\"G3709\"* has|strong=\"G3709\"* come|strong=\"G5348\"* on|strong=\"G1909\"* them|strong=\"G3588\"* to|strong=\"G1519\"* the|strong=\"G1519\"* uttermost|strong=\"G5056\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"*, brothers, being|strong=\"G1722\"* bereaved of|strong=\"G1722\"* you|strong=\"G5210\"* for|strong=\"G4314\"* a|strong=\"G1722\"* short|strong=\"G3588\"* season|strong=\"G2540\"* in|strong=\"G1722\"* presence|strong=\"G4383\"*, not|strong=\"G3756\"* in|strong=\"G1722\"* heart|strong=\"G2588\"*, tried even|strong=\"G1161\"* harder to|strong=\"G4314\"* see|strong=\"G3708\"* your|strong=\"G3708\"* face|strong=\"G4383\"* with|strong=\"G1722\"* great|strong=\"G4183\"* desire|strong=\"G1939\"*," + }, + { + "verseNum": 18, + "text": "because|strong=\"G1360\"* we|strong=\"G2249\"* wanted|strong=\"G2309\"* to|strong=\"G4314\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"*—indeed|strong=\"G2532\"*, I|strong=\"G1473\"*, Paul|strong=\"G3972\"*, once and|strong=\"G2532\"* again|strong=\"G1364\"*—but|strong=\"G2532\"* Satan|strong=\"G4567\"* hindered|strong=\"G1465\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* what|strong=\"G5101\"* is|strong=\"G3588\"* our|strong=\"G2424\"* hope|strong=\"G1680\"*, or|strong=\"G2228\"* joy|strong=\"G5479\"*, or|strong=\"G2228\"* crown|strong=\"G4735\"* of|strong=\"G2532\"* rejoicing|strong=\"G2746\"*? Isn’t|strong=\"G3588\"* it|strong=\"G2532\"* even|strong=\"G2532\"* you|strong=\"G5210\"*, before|strong=\"G1715\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*+ 2:19 TR adds “Christ”* at|strong=\"G1722\"* his|strong=\"G1722\"* coming|strong=\"G3952\"*?" + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* are|strong=\"G1510\"* our|strong=\"G2532\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* our|strong=\"G2532\"* joy|strong=\"G5479\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G1352\"* when|strong=\"G1722\"* we|strong=\"G1352\"* couldn’t stand it|strong=\"G2106\"* any|strong=\"G1722\"* longer|strong=\"G3371\"*, we|strong=\"G1352\"* thought|strong=\"G2106\"* it|strong=\"G2106\"* good|strong=\"G2106\"* to|strong=\"G1722\"* be|strong=\"G3371\"* left|strong=\"G2641\"* behind|strong=\"G2641\"* at|strong=\"G1722\"* Athens alone|strong=\"G3441\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"G2532\"* sent|strong=\"G3992\"* Timothy|strong=\"G5095\"*, our|strong=\"G2316\"* brother and|strong=\"G2532\"* God|strong=\"G2316\"*’s servant|strong=\"G1249\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G2316\"* Christ|strong=\"G5547\"*, to|strong=\"G1519\"* establish|strong=\"G4741\"* you|strong=\"G5210\"* and|strong=\"G2532\"* to|strong=\"G1519\"* comfort|strong=\"G3870\"* you|strong=\"G5210\"* concerning|strong=\"G1519\"* your|strong=\"G2532\"* faith|strong=\"G4102\"*," + }, + { + "verseNum": 3, + "text": "that|strong=\"G3754\"* no|strong=\"G3367\"* one|strong=\"G3367\"* would|strong=\"G1722\"* be|strong=\"G1519\"* moved|strong=\"G4525\"* by|strong=\"G1722\"* these|strong=\"G3778\"* afflictions|strong=\"G2347\"*. For|strong=\"G1063\"* you|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* we|strong=\"G3754\"* are|strong=\"G3588\"* appointed|strong=\"G2749\"* to|strong=\"G1519\"* this|strong=\"G3778\"* task." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* most certainly|strong=\"G3195\"*, when|strong=\"G3753\"* we|strong=\"G3754\"* were|strong=\"G1510\"* with|strong=\"G4314\"* you|strong=\"G5210\"*, we|strong=\"G3754\"* told|strong=\"G4314\"* you|strong=\"G5210\"* beforehand that|strong=\"G3754\"* we|strong=\"G3754\"* are|strong=\"G1510\"* to|strong=\"G4314\"* suffer|strong=\"G2532\"* affliction|strong=\"G2346\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* it|strong=\"G2532\"* happened|strong=\"G1096\"*, and|strong=\"G2532\"* you|strong=\"G5210\"* know|strong=\"G1492\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1519\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* I|strong=\"G1473\"* also|strong=\"G2532\"*, when|strong=\"G2532\"* I|strong=\"G1473\"* couldn’t|strong=\"G3588\"* stand|strong=\"G5210\"* it|strong=\"G2532\"* any|strong=\"G3361\"* longer|strong=\"G3371\"*, sent|strong=\"G3992\"* that|strong=\"G3588\"* I|strong=\"G1473\"* might|strong=\"G2532\"* know|strong=\"G1097\"* your|strong=\"G1223\"* faith|strong=\"G4102\"*, for|strong=\"G1519\"* fear|strong=\"G3381\"* that|strong=\"G3588\"* by|strong=\"G1223\"* any|strong=\"G3361\"* means|strong=\"G3381\"* the|strong=\"G2532\"* tempter|strong=\"G3985\"* had|strong=\"G2532\"* tempted|strong=\"G3985\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* our|strong=\"G2532\"* labor|strong=\"G2873\"* would|strong=\"G1096\"* have|strong=\"G2532\"* been|strong=\"G1096\"* in|strong=\"G1519\"* vain|strong=\"G2756\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* Timothy|strong=\"G5095\"* has|strong=\"G2192\"* just|strong=\"G2509\"* now|strong=\"G1161\"* come|strong=\"G2064\"* to|strong=\"G4314\"* us|strong=\"G2097\"* from|strong=\"G2064\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* brought|strong=\"G2064\"* us|strong=\"G2097\"* glad news|strong=\"G2097\"* of|strong=\"G2532\"* your|strong=\"G2192\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* love, and|strong=\"G2532\"* that|strong=\"G3754\"* you|strong=\"G5210\"* have|strong=\"G2192\"* good|strong=\"G2097\"* memories of|strong=\"G2532\"* us|strong=\"G2097\"* always|strong=\"G3842\"*, longing|strong=\"G1971\"* to|strong=\"G4314\"* see|strong=\"G3708\"* us|strong=\"G2097\"*, even|strong=\"G2532\"* as|strong=\"G1161\"* we|strong=\"G2249\"* also|strong=\"G2532\"* long|strong=\"G1971\"* to|strong=\"G4314\"* see|strong=\"G3708\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1223\"* this|strong=\"G3778\"* cause|strong=\"G1223\"*, brothers, we|strong=\"G2249\"* were|strong=\"G3588\"* comforted|strong=\"G3870\"* over|strong=\"G1909\"* you|strong=\"G5210\"* in|strong=\"G1909\"* all|strong=\"G3956\"* our|strong=\"G2532\"* distress|strong=\"G2347\"* and|strong=\"G2532\"* affliction|strong=\"G2347\"* through|strong=\"G1223\"* your|strong=\"G1223\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G3754\"* now|strong=\"G3568\"* we|strong=\"G1437\"* live|strong=\"G2198\"*, if|strong=\"G1437\"* you|strong=\"G5210\"* stand|strong=\"G4739\"* fast|strong=\"G4739\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* what|strong=\"G5101\"* thanksgiving|strong=\"G2169\"* can|strong=\"G1410\"* we|strong=\"G2249\"* give|strong=\"G1473\"* again to|strong=\"G1909\"* God|strong=\"G2316\"* for|strong=\"G1063\"* you|strong=\"G5210\"*, for|strong=\"G1063\"* all|strong=\"G3956\"* the|strong=\"G3956\"* joy|strong=\"G5479\"* with|strong=\"G1223\"* which|strong=\"G3739\"* we|strong=\"G2249\"* rejoice|strong=\"G5463\"* for|strong=\"G1063\"* your|strong=\"G1223\"* sakes|strong=\"G1223\"* before|strong=\"G1715\"* our|strong=\"G2316\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 10, + "text": "night|strong=\"G3571\"* and|strong=\"G2532\"* day|strong=\"G2250\"* praying|strong=\"G1189\"* exceedingly that|strong=\"G3588\"* we|strong=\"G2532\"* may|strong=\"G2532\"* see|strong=\"G3708\"* your|strong=\"G2532\"* face|strong=\"G4383\"* and|strong=\"G2532\"* may|strong=\"G2532\"* perfect|strong=\"G2675\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* lacking|strong=\"G5303\"* in|strong=\"G1519\"* your|strong=\"G2532\"* faith|strong=\"G4102\"*?" + }, + { + "verseNum": 11, + "text": "Now|strong=\"G1161\"* may|strong=\"G2532\"* our|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"* himself, and|strong=\"G2532\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G2962\"*, direct|strong=\"G2720\"* our|strong=\"G2316\"* way|strong=\"G3598\"* to|strong=\"G4314\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 12, + "text": "May|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* make|strong=\"G1519\"* you|strong=\"G5210\"* to|strong=\"G1519\"* increase|strong=\"G4121\"* and|strong=\"G2532\"* abound|strong=\"G4052\"* in|strong=\"G1519\"* love toward|strong=\"G1519\"* one|strong=\"G3956\"* another|strong=\"G3588\"* and|strong=\"G2532\"* toward|strong=\"G1519\"* all|strong=\"G3956\"* men|strong=\"G3956\"*, even|strong=\"G2532\"* as|strong=\"G1519\"* we|strong=\"G2249\"* also|strong=\"G2532\"* do|strong=\"G2532\"* toward|strong=\"G1519\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 13, + "text": "to|strong=\"G1519\"* the|strong=\"G1722\"* end|strong=\"G1519\"* he|strong=\"G2532\"* may|strong=\"G2532\"* establish|strong=\"G4741\"* your|strong=\"G2962\"* hearts|strong=\"G2588\"* blameless in|strong=\"G1722\"* holiness before|strong=\"G1715\"* our|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"* at|strong=\"G1722\"* the|strong=\"G1722\"* coming|strong=\"G3952\"* of|strong=\"G2316\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* with|strong=\"G3326\"* all|strong=\"G3956\"* his|strong=\"G3956\"* saints." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Finally|strong=\"G3063\"* then|strong=\"G3767\"*, brothers, we|strong=\"G2249\"* beg|strong=\"G3870\"* and|strong=\"G2532\"* exhort|strong=\"G3870\"* you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*, that|strong=\"G2443\"* as|strong=\"G2531\"* you|strong=\"G5210\"* received|strong=\"G3880\"* from|strong=\"G3844\"* us|strong=\"G2249\"* how|strong=\"G4459\"* you|strong=\"G5210\"* ought|strong=\"G1163\"* to|strong=\"G2443\"* walk|strong=\"G4043\"* and|strong=\"G2532\"* to|strong=\"G2443\"* please|strong=\"G2065\"* God|strong=\"G2316\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* abound|strong=\"G4052\"* more|strong=\"G3123\"* and|strong=\"G2532\"* more|strong=\"G3123\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* know|strong=\"G1492\"* what|strong=\"G5101\"* instructions we|strong=\"G1063\"* gave|strong=\"G1325\"* you|strong=\"G5210\"* through|strong=\"G1223\"* the|strong=\"G1223\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G3588\"* will|strong=\"G2307\"* of|strong=\"G2316\"* God|strong=\"G2316\"*: your|strong=\"G3588\"* sanctification, that|strong=\"G3588\"* you|strong=\"G5210\"* abstain from|strong=\"G3588\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*," + }, + { + "verseNum": 4, + "text": "that|strong=\"G3588\"* each|strong=\"G1538\"* one|strong=\"G1538\"* of|strong=\"G2532\"* you|strong=\"G5210\"* know|strong=\"G1492\"* how|strong=\"G1492\"* to|strong=\"G2532\"* control his|strong=\"G1438\"* own|strong=\"G1438\"* body|strong=\"G4632\"*+ 4:4 literally, possess his own vessel* in|strong=\"G1722\"* sanctification and|strong=\"G2532\"* honor|strong=\"G5092\"*," + }, + { + "verseNum": 5, + "text": "not|strong=\"G3361\"* in|strong=\"G1722\"* the|strong=\"G1722\"* passion|strong=\"G3806\"* of|strong=\"G2316\"* lust|strong=\"G1939\"*, even|strong=\"G2532\"* as|strong=\"G1722\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* who|strong=\"G3588\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 6, + "text": "that|strong=\"G3588\"* no|strong=\"G3361\"* one|strong=\"G3956\"* should|strong=\"G3588\"* take|strong=\"G2532\"* advantage|strong=\"G4122\"* of|strong=\"G4012\"* and|strong=\"G2532\"* wrong a|strong=\"G2532\"* brother or|strong=\"G2532\"* sister in|strong=\"G1722\"* this|strong=\"G3778\"* matter|strong=\"G4229\"*; because|strong=\"G1360\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* is|strong=\"G3588\"* an|strong=\"G2532\"* avenger|strong=\"G1558\"* in|strong=\"G1722\"* all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"*, as|strong=\"G2531\"* also|strong=\"G2532\"* we|strong=\"G2532\"* forewarned you|strong=\"G5210\"* and|strong=\"G2532\"* testified|strong=\"G1263\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* God|strong=\"G2316\"* called|strong=\"G2564\"* us|strong=\"G2249\"* not|strong=\"G3756\"* for|strong=\"G1063\"* uncleanness, but|strong=\"G1063\"* in|strong=\"G1722\"* sanctification." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G5105\"* he|strong=\"G2532\"* who|strong=\"G3588\"* rejects this|strong=\"G3588\"* doesn’t|strong=\"G3588\"* reject man|strong=\"G3756\"*, but|strong=\"G2532\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* has|strong=\"G2316\"* also|strong=\"G2532\"* given|strong=\"G1325\"* his|strong=\"G1519\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* to|strong=\"G1519\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* concerning|strong=\"G4012\"* brotherly|strong=\"G5360\"* love|strong=\"G5360\"*, you|strong=\"G5210\"* have|strong=\"G2192\"* no|strong=\"G3756\"* need|strong=\"G5532\"* that|strong=\"G3588\"* one|strong=\"G3588\"* write|strong=\"G1125\"* to|strong=\"G1519\"* you|strong=\"G5210\"*. For|strong=\"G1063\"* you|strong=\"G5210\"* yourselves|strong=\"G4771\"* are|strong=\"G1510\"* taught|strong=\"G2312\"* by|strong=\"G1519\"* God|strong=\"G2312\"* to|strong=\"G1519\"* love|strong=\"G5360\"* one|strong=\"G3588\"* another|strong=\"G3588\"*," + }, + { + "verseNum": 10, + "text": "for|strong=\"G1063\"* indeed|strong=\"G2532\"* you|strong=\"G5210\"* do|strong=\"G4160\"* it|strong=\"G2532\"* toward|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G1722\"* brothers who|strong=\"G3588\"* are|strong=\"G3588\"* in|strong=\"G1722\"* all|strong=\"G3956\"* Macedonia|strong=\"G3109\"*. But|strong=\"G1161\"* we|strong=\"G1063\"* exhort|strong=\"G3870\"* you|strong=\"G5210\"*, brothers, that|strong=\"G3588\"* you|strong=\"G5210\"* abound|strong=\"G4052\"* more|strong=\"G3123\"* and|strong=\"G2532\"* more|strong=\"G3123\"*;" + }, + { + "verseNum": 11, + "text": "and|strong=\"G2532\"* that|strong=\"G3588\"* you|strong=\"G5210\"* make|strong=\"G2532\"* it|strong=\"G2532\"* your|strong=\"G2532\"* ambition|strong=\"G5389\"* to|strong=\"G2532\"* lead|strong=\"G2270\"* a|strong=\"G2532\"* quiet|strong=\"G2270\"* life|strong=\"G2270\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* do|strong=\"G4238\"* your|strong=\"G2532\"* own|strong=\"G2398\"* business|strong=\"G3588\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* work|strong=\"G2038\"* with|strong=\"G2532\"* your|strong=\"G2532\"* own|strong=\"G2398\"* hands|strong=\"G5495\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* we|strong=\"G2532\"* instructed|strong=\"G3853\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 12, + "text": "that|strong=\"G2443\"* you|strong=\"G2532\"* may|strong=\"G2532\"* walk|strong=\"G4043\"* properly|strong=\"G2156\"* toward|strong=\"G4314\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* outside|strong=\"G1854\"*, and|strong=\"G2532\"* may|strong=\"G2532\"* have|strong=\"G2192\"* need|strong=\"G5532\"* of|strong=\"G2532\"* nothing|strong=\"G3367\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* we|strong=\"G2532\"* don’t|strong=\"G3588\"* want|strong=\"G2309\"* you|strong=\"G5210\"* to|strong=\"G2443\"* be|strong=\"G2532\"* ignorant|strong=\"G3361\"*, brothers, concerning|strong=\"G4012\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2192\"* fallen|strong=\"G2837\"* asleep|strong=\"G2837\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* you|strong=\"G5210\"* don’t|strong=\"G3588\"* grieve|strong=\"G3076\"* like|strong=\"G2531\"* the|strong=\"G2532\"* rest|strong=\"G3062\"*, who|strong=\"G3588\"* have|strong=\"G2192\"* no|strong=\"G3756\"* hope|strong=\"G1680\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* we|strong=\"G3754\"* believe|strong=\"G4100\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* died|strong=\"G2837\"* and|strong=\"G2532\"* rose|strong=\"G2532\"* again|strong=\"G2532\"*, even|strong=\"G2532\"* so|strong=\"G3779\"* God|strong=\"G2316\"* will|strong=\"G2316\"* bring|strong=\"G2532\"* with|strong=\"G4862\"* him|strong=\"G3588\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2532\"* fallen|strong=\"G2837\"* asleep|strong=\"G2837\"* in|strong=\"G2532\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* we|strong=\"G2249\"* tell|strong=\"G3004\"* you|strong=\"G5210\"* by|strong=\"G1722\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, that|strong=\"G3754\"* we|strong=\"G2249\"* who|strong=\"G3588\"* are|strong=\"G3588\"* alive|strong=\"G2198\"*, who|strong=\"G3588\"* are|strong=\"G3588\"* left until|strong=\"G1519\"* the|strong=\"G1722\"* coming|strong=\"G3952\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, will|strong=\"G2962\"* in|strong=\"G1722\"* no|strong=\"G3756\"* way|strong=\"G1722\"* precede|strong=\"G5348\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G1473\"* fallen|strong=\"G2837\"* asleep|strong=\"G2837\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G3754\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* himself will|strong=\"G2316\"* descend|strong=\"G2597\"* from|strong=\"G2597\"* heaven|strong=\"G3772\"* with|strong=\"G1722\"* a|strong=\"G2532\"* shout|strong=\"G2752\"*, with|strong=\"G1722\"* the|strong=\"G1722\"* voice|strong=\"G5456\"* of|strong=\"G2316\"* the|strong=\"G1722\"* archangel and|strong=\"G2532\"* with|strong=\"G1722\"* God|strong=\"G2316\"*’s|strong=\"G2962\"* trumpet|strong=\"G4536\"*. The|strong=\"G1722\"* dead|strong=\"G3498\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* will|strong=\"G2316\"* rise first|strong=\"G4413\"*," + }, + { + "verseNum": 17, + "text": "then|strong=\"G2532\"* we|strong=\"G2249\"* who|strong=\"G3588\"* are|strong=\"G1510\"* alive|strong=\"G2198\"*, who|strong=\"G3588\"* are|strong=\"G1510\"* left, will|strong=\"G1510\"* be|strong=\"G1510\"* caught|strong=\"G2962\"* up|strong=\"G1519\"* together|strong=\"G4862\"* with|strong=\"G1722\"* them|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* clouds|strong=\"G3507\"* to|strong=\"G1519\"* meet|strong=\"G3588\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* in|strong=\"G1722\"* the|strong=\"G1722\"* air. So|strong=\"G3779\"* we|strong=\"G2249\"* will|strong=\"G1510\"* be|strong=\"G1510\"* with|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* forever|strong=\"G1519\"*." + }, + { + "verseNum": 18, + "text": "Therefore|strong=\"G5620\"* comfort|strong=\"G3870\"* one|strong=\"G3588\"* another|strong=\"G3588\"* with|strong=\"G1722\"* these|strong=\"G3778\"* words|strong=\"G3056\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"G1161\"* concerning|strong=\"G4012\"* the|strong=\"G2532\"* times|strong=\"G2540\"* and|strong=\"G2532\"* the|strong=\"G2532\"* seasons|strong=\"G2540\"*, brothers, you|strong=\"G5210\"* have|strong=\"G2192\"* no|strong=\"G3756\"* need|strong=\"G5532\"* that|strong=\"G3588\"* anything be|strong=\"G2532\"* written|strong=\"G1125\"* to|strong=\"G2532\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* you|strong=\"G3754\"* yourselves|strong=\"G1722\"* know|strong=\"G1492\"* well|strong=\"G1063\"* that|strong=\"G3754\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G2250\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* comes|strong=\"G2064\"* like|strong=\"G5613\"* a|strong=\"G5613\"* thief|strong=\"G2812\"* in|strong=\"G1722\"* the|strong=\"G1722\"* night|strong=\"G3571\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1722\"* when|strong=\"G3752\"* they|strong=\"G2532\"* are|strong=\"G3588\"* saying|strong=\"G3004\"*, “Peace|strong=\"G1515\"* and|strong=\"G2532\"* safety,” then|strong=\"G2532\"* sudden destruction|strong=\"G3639\"* will|strong=\"G2532\"* come|strong=\"G2186\"* on|strong=\"G1722\"* them|strong=\"G3588\"*, like|strong=\"G5618\"* birth|strong=\"G5604\"* pains|strong=\"G5604\"* on|strong=\"G1722\"* a|strong=\"G2192\"* pregnant|strong=\"G1064\"* woman|strong=\"G2192\"*. Then|strong=\"G2532\"* they|strong=\"G2532\"* will|strong=\"G2532\"* in|strong=\"G1722\"* no|strong=\"G3756\"* way|strong=\"G1722\"* escape|strong=\"G1628\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* you|strong=\"G5210\"*, brothers, aren’t|strong=\"G3588\"* in|strong=\"G1722\"* darkness|strong=\"G4655\"*, that|strong=\"G2443\"* the|strong=\"G1722\"* day|strong=\"G2250\"* should|strong=\"G3588\"* overtake|strong=\"G2638\"* you|strong=\"G5210\"* like|strong=\"G5613\"* a|strong=\"G5613\"* thief|strong=\"G2812\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"G5210\"* are|strong=\"G1510\"* all|strong=\"G3956\"* children|strong=\"G5207\"* of|strong=\"G5207\"* light|strong=\"G5457\"* and|strong=\"G2532\"* children|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G2532\"* day|strong=\"G2250\"*. We|strong=\"G1063\"* don’t belong|strong=\"G1510\"* to|strong=\"G2532\"* the|strong=\"G2532\"* night|strong=\"G3571\"*, nor|strong=\"G3761\"* to|strong=\"G2532\"* darkness|strong=\"G4655\"*," + }, + { + "verseNum": 6, + "text": "so|strong=\"G3767\"* then|strong=\"G3767\"* let|strong=\"G3767\"*’s not|strong=\"G3361\"* sleep|strong=\"G2518\"*, as|strong=\"G5613\"* the|strong=\"G2532\"* rest|strong=\"G3062\"* do|strong=\"G2532\"*, but|strong=\"G2532\"* let|strong=\"G3767\"*’s watch|strong=\"G1127\"* and|strong=\"G2532\"* be|strong=\"G2532\"* sober|strong=\"G3525\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sleep|strong=\"G2518\"*, sleep|strong=\"G2518\"* in|strong=\"G2532\"* the|strong=\"G2532\"* night|strong=\"G3571\"*; and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* drunk|strong=\"G3184\"* are|strong=\"G3588\"* drunk|strong=\"G3184\"* in|strong=\"G2532\"* the|strong=\"G2532\"* night|strong=\"G3571\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* since|strong=\"G1161\"* we|strong=\"G2249\"* belong|strong=\"G1510\"* to|strong=\"G2532\"* the|strong=\"G2532\"* day|strong=\"G2250\"*, let|strong=\"G1161\"*’s be|strong=\"G1510\"* sober|strong=\"G3525\"*, putting|strong=\"G2532\"* on|strong=\"G1746\"* the|strong=\"G2532\"* breastplate|strong=\"G2382\"* of|strong=\"G2250\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* love, and|strong=\"G2532\"* for|strong=\"G1161\"* a|strong=\"G2532\"* helmet|strong=\"G4030\"*, the|strong=\"G2532\"* hope|strong=\"G1680\"* of|strong=\"G2250\"* salvation|strong=\"G4991\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G3754\"* God|strong=\"G2316\"* didn’t|strong=\"G3588\"* appoint|strong=\"G5087\"* us|strong=\"G1519\"* to|strong=\"G1519\"* wrath|strong=\"G3709\"*, but|strong=\"G2316\"* to|strong=\"G1519\"* the|strong=\"G1519\"* obtaining|strong=\"G4047\"* of|strong=\"G1223\"* salvation|strong=\"G4991\"* through|strong=\"G1223\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 10, + "text": "who|strong=\"G3588\"* died|strong=\"G3588\"* for|strong=\"G4012\"* us|strong=\"G2249\"*, that|strong=\"G2443\"*, whether|strong=\"G1535\"* we|strong=\"G2249\"* wake|strong=\"G1127\"* or|strong=\"G1535\"* sleep|strong=\"G2518\"*, we|strong=\"G2249\"* should|strong=\"G3588\"* live|strong=\"G2198\"* together|strong=\"G4862\"* with|strong=\"G4862\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"G1352\"* exhort|strong=\"G3870\"* one|strong=\"G1520\"* another|strong=\"G1520\"*, and|strong=\"G2532\"* build|strong=\"G3618\"* each other|strong=\"G1520\"* up|strong=\"G3618\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* you|strong=\"G4160\"* also|strong=\"G2532\"* do|strong=\"G4160\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* we|strong=\"G2532\"* beg|strong=\"G2065\"* you|strong=\"G5210\"*, brothers, to|strong=\"G2532\"* know|strong=\"G1492\"* those|strong=\"G3588\"* who|strong=\"G3588\"* labor|strong=\"G2872\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* are|strong=\"G3588\"* over|strong=\"G1722\"* you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* admonish|strong=\"G3560\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 13, + "text": "and|strong=\"G2532\"* to|strong=\"G2532\"* respect and|strong=\"G2532\"* honor them|strong=\"G3588\"* in|strong=\"G1722\"* love for|strong=\"G1223\"* their|strong=\"G1438\"* work|strong=\"G2041\"*’s sake|strong=\"G1223\"*." + }, + { + "verseNum": 14, + "text": "We|strong=\"G1161\"* exhort|strong=\"G3870\"* you|strong=\"G5210\"*, brothers: Admonish|strong=\"G3560\"* the|strong=\"G3956\"* disorderly; encourage|strong=\"G3870\"* the|strong=\"G3956\"* faint-hearted; support the|strong=\"G3956\"* weak; be|strong=\"G3956\"* patient|strong=\"G3114\"* toward|strong=\"G4314\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 15, + "text": "See|strong=\"G3708\"* that|strong=\"G3588\"* no|strong=\"G3361\"* one|strong=\"G5100\"* returns evil|strong=\"G2556\"* for|strong=\"G1519\"* evil|strong=\"G2556\"* to|strong=\"G1519\"* anyone|strong=\"G5100\"*, but|strong=\"G2532\"* always|strong=\"G3842\"* follow|strong=\"G1377\"* after|strong=\"G1377\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* good|strong=\"G3956\"* for|strong=\"G1519\"* one|strong=\"G5100\"* another|strong=\"G5100\"* and|strong=\"G2532\"* for|strong=\"G1519\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 16, + "text": "Always|strong=\"G3842\"* rejoice|strong=\"G5463\"*." + }, + { + "verseNum": 17, + "text": "Pray|strong=\"G4336\"* without|strong=\"G4336\"* ceasing." + }, + { + "verseNum": 18, + "text": "In|strong=\"G1722\"* everything|strong=\"G3956\"* give|strong=\"G2168\"* thanks|strong=\"G2168\"*, for|strong=\"G1063\"* this|strong=\"G3778\"* is|strong=\"G2316\"* the|strong=\"G1722\"* will|strong=\"G2307\"* of|strong=\"G2316\"* God|strong=\"G2316\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* toward|strong=\"G1519\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 19, + "text": "Don’t|strong=\"G3588\"* quench|strong=\"G4570\"* the|strong=\"G3588\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 20, + "text": "Don’t despise|strong=\"G1848\"* prophecies|strong=\"G4394\"*." + }, + { + "verseNum": 21, + "text": "Test|strong=\"G1381\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G1161\"* hold|strong=\"G2722\"* firmly|strong=\"G2722\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* good|strong=\"G2570\"*." + }, + { + "verseNum": 22, + "text": "Abstain from|strong=\"G4190\"* every|strong=\"G3956\"* form|strong=\"G1491\"* of|strong=\"G3956\"* evil|strong=\"G4190\"*." + }, + { + "verseNum": 23, + "text": "May|strong=\"G2532\"* the|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G4151\"* peace|strong=\"G1515\"* himself sanctify you|strong=\"G5210\"* completely|strong=\"G3648\"*. May|strong=\"G2532\"* your|strong=\"G2962\"* whole|strong=\"G3648\"* spirit|strong=\"G4151\"*, soul|strong=\"G5590\"*, and|strong=\"G2532\"* body|strong=\"G4983\"* be|strong=\"G2532\"* preserved|strong=\"G5083\"* blameless at|strong=\"G1722\"* the|strong=\"G1722\"* coming|strong=\"G3952\"* of|strong=\"G4151\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"G2532\"* who|strong=\"G3739\"* calls|strong=\"G2564\"* you|strong=\"G5210\"* is|strong=\"G3588\"* faithful|strong=\"G4103\"*, who|strong=\"G3739\"* will|strong=\"G2532\"* also|strong=\"G2532\"* do|strong=\"G4160\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 25, + "text": "Brothers, pray|strong=\"G4336\"* for|strong=\"G4012\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 26, + "text": "Greet all|strong=\"G3956\"* the|strong=\"G1722\"* brothers with|strong=\"G1722\"* a|strong=\"G1722\"* holy kiss|strong=\"G5370\"*." + }, + { + "verseNum": 27, + "text": "I|strong=\"G3956\"* solemnly command you|strong=\"G5210\"* by|strong=\"G3956\"* the|strong=\"G3956\"* Lord|strong=\"G2962\"* that|strong=\"G3588\"* this|strong=\"G3588\"* letter|strong=\"G1992\"* be|strong=\"G3956\"* read to|strong=\"G3956\"* all|strong=\"G3956\"* the|strong=\"G3956\"* holy brothers." + }, + { + "verseNum": 28, + "text": "The|strong=\"G3588\"* grace|strong=\"G5485\"* of|strong=\"G5485\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* be|strong=\"G3588\"* with|strong=\"G3326\"* you|strong=\"G5210\"*. Amen." + } + ] + } + ] + }, + { + "name": "2 Thessalonians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, Silvanus|strong=\"G4610\"*, and|strong=\"G2532\"* Timothy|strong=\"G5095\"*, to|strong=\"G2532\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* of|strong=\"G2316\"* the|strong=\"G1722\"* Thessalonians|strong=\"G2331\"* in|strong=\"G1722\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*:" + }, + { + "verseNum": 2, + "text": "Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 3, + "text": "We|strong=\"G3754\"* are|strong=\"G1510\"* bound|strong=\"G3784\"* to|strong=\"G1519\"* always|strong=\"G3842\"* give|strong=\"G2168\"* thanks|strong=\"G2168\"* to|strong=\"G1519\"* God|strong=\"G2316\"* for|strong=\"G3754\"* you|strong=\"G5210\"*, brothers,+ 1:3 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* even|strong=\"G2532\"* as|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G1510\"* appropriate, because|strong=\"G3754\"* your|strong=\"G2532\"* faith|strong=\"G4102\"* grows|strong=\"G4121\"* exceedingly|strong=\"G5232\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* love of|strong=\"G4012\"* each|strong=\"G1538\"* and|strong=\"G2532\"* every|strong=\"G3956\"* one|strong=\"G1520\"* of|strong=\"G4012\"* you|strong=\"G5210\"* toward|strong=\"G1519\"* one|strong=\"G1520\"* another|strong=\"G1520\"* abounds," + }, + { + "verseNum": 4, + "text": "so|strong=\"G2532\"* that|strong=\"G3739\"* we|strong=\"G2249\"* ourselves|strong=\"G1438\"* boast|strong=\"G2744\"* about|strong=\"G1722\"* you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assemblies|strong=\"G1577\"* of|strong=\"G2316\"* God|strong=\"G2316\"* for|strong=\"G5228\"* your|strong=\"G2532\"* perseverance|strong=\"G5281\"* and|strong=\"G2532\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* all|strong=\"G3956\"* your|strong=\"G2532\"* persecutions|strong=\"G1375\"* and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* afflictions|strong=\"G2347\"* which|strong=\"G3739\"* you|strong=\"G5210\"* endure." + }, + { + "verseNum": 5, + "text": "This|strong=\"G3588\"* is|strong=\"G3588\"* an|strong=\"G2532\"* obvious sign of|strong=\"G2316\"* the|strong=\"G2532\"* righteous|strong=\"G1342\"* judgment|strong=\"G2920\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, to|strong=\"G1519\"* the|strong=\"G2532\"* end|strong=\"G1519\"* that|strong=\"G3739\"* you|strong=\"G5210\"* may|strong=\"G2532\"* be|strong=\"G2532\"* counted worthy|strong=\"G2661\"* of|strong=\"G2316\"* God|strong=\"G2316\"*’s Kingdom, for|strong=\"G1519\"* which|strong=\"G3739\"* you|strong=\"G5210\"* also|strong=\"G2532\"* suffer|strong=\"G3958\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G3844\"* it|strong=\"G3588\"* is|strong=\"G3588\"* a|strong=\"G2316\"* righteous|strong=\"G1342\"* thing|strong=\"G1342\"* with|strong=\"G3844\"* God|strong=\"G2316\"* to|strong=\"G2316\"* repay affliction|strong=\"G2347\"* to|strong=\"G2316\"* those|strong=\"G3588\"* who|strong=\"G3588\"* afflict|strong=\"G2346\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"G2532\"* to|strong=\"G2532\"* give|strong=\"G1473\"* relief to|strong=\"G2532\"* you|strong=\"G5210\"* who|strong=\"G3588\"* are|strong=\"G3588\"* afflicted|strong=\"G2346\"* with|strong=\"G3326\"* us|strong=\"G2249\"* when|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* is|strong=\"G3588\"* revealed from|strong=\"G2532\"* heaven|strong=\"G3772\"* with|strong=\"G3326\"* his|strong=\"G1722\"* mighty|strong=\"G1411\"* angels in|strong=\"G1722\"* flaming fire," + }, + { + "verseNum": 8, + "text": "punishing those|strong=\"G3588\"* who|strong=\"G3588\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* don’t|strong=\"G3588\"* obey|strong=\"G5219\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G2316\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 9, + "text": "who|strong=\"G3588\"* will|strong=\"G2532\"* pay|strong=\"G5099\"* the|strong=\"G2532\"* penalty|strong=\"G1349\"*: eternal destruction|strong=\"G3639\"* from|strong=\"G2532\"* the|strong=\"G2532\"* face|strong=\"G4383\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* from|strong=\"G2532\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2532\"* his|strong=\"G2532\"* might|strong=\"G2479\"*," + }, + { + "verseNum": 10, + "text": "when|strong=\"G3752\"* he|strong=\"G2532\"* comes|strong=\"G2064\"* in|strong=\"G1722\"* that|strong=\"G3754\"* day|strong=\"G2250\"* to|strong=\"G2532\"* be|strong=\"G2532\"* glorified|strong=\"G1740\"* in|strong=\"G1722\"* his|strong=\"G3956\"* saints and|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* admired|strong=\"G2296\"* among|strong=\"G1722\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2532\"* believed|strong=\"G4100\"*, because|strong=\"G3754\"* our|strong=\"G2532\"* testimony|strong=\"G3142\"* to|strong=\"G2532\"* you|strong=\"G5210\"* was|strong=\"G3588\"* believed|strong=\"G4100\"*." + }, + { + "verseNum": 11, + "text": "To|strong=\"G1519\"* this|strong=\"G3588\"* end|strong=\"G1519\"* we|strong=\"G2249\"* also|strong=\"G2532\"* pray|strong=\"G4336\"* always|strong=\"G3842\"* for|strong=\"G1519\"* you|strong=\"G5210\"* that|strong=\"G2443\"* our|strong=\"G2316\"* God|strong=\"G2316\"* may|strong=\"G2532\"* count you|strong=\"G5210\"* worthy of|strong=\"G4012\"* your|strong=\"G2532\"* calling|strong=\"G2821\"*, and|strong=\"G2532\"* fulfill|strong=\"G4137\"* every|strong=\"G3956\"* desire|strong=\"G2107\"* of|strong=\"G4012\"* goodness and|strong=\"G2532\"* work|strong=\"G2041\"* of|strong=\"G4012\"* faith|strong=\"G4102\"* with|strong=\"G1722\"* power|strong=\"G1411\"*," + }, + { + "verseNum": 12, + "text": "that|strong=\"G3588\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2316\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*+ 1:12 TR adds “Christ”* may|strong=\"G2532\"* be|strong=\"G2532\"* glorified|strong=\"G1740\"* in|strong=\"G1722\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* you|strong=\"G5210\"* in|strong=\"G1722\"* him|strong=\"G3588\"*, according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* our|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"*, brothers, concerning|strong=\"G5228\"* the|strong=\"G2532\"* coming|strong=\"G3952\"* of|strong=\"G2532\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* and|strong=\"G2532\"* our|strong=\"G2424\"* gathering|strong=\"G1997\"* together|strong=\"G1909\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, we|strong=\"G2249\"* ask|strong=\"G2065\"* you|strong=\"G5210\"*" + }, + { + "verseNum": 2, + "text": "not|strong=\"G3361\"* to|strong=\"G1519\"* be|strong=\"G3361\"* quickly|strong=\"G5030\"* shaken|strong=\"G4531\"* in|strong=\"G1519\"* your|strong=\"G1223\"* mind|strong=\"G3563\"* or|strong=\"G3366\"* troubled|strong=\"G2360\"*, either|strong=\"G3383\"* by|strong=\"G1223\"* spirit|strong=\"G4151\"* or|strong=\"G3366\"* by|strong=\"G1223\"* word|strong=\"G3056\"* or|strong=\"G3366\"* by|strong=\"G1223\"* letter|strong=\"G1992\"* as|strong=\"G5613\"* if|strong=\"G5613\"* from|strong=\"G3588\"* us|strong=\"G1519\"*, saying|strong=\"G3056\"* that|strong=\"G3754\"* the|strong=\"G1519\"* day|strong=\"G2250\"* of|strong=\"G3056\"* Christ|strong=\"G2962\"* has|strong=\"G2962\"* already come|strong=\"G1764\"*." + }, + { + "verseNum": 3, + "text": "Let|strong=\"G1818\"* no|strong=\"G3361\"* one|strong=\"G5100\"* deceive|strong=\"G1818\"* you|strong=\"G5210\"* in|strong=\"G2596\"* any|strong=\"G5100\"* way|strong=\"G5158\"*. For|strong=\"G3754\"* it|strong=\"G2532\"* will|strong=\"G2532\"* not|strong=\"G3361\"* be|strong=\"G2532\"* unless|strong=\"G1437\"* the|strong=\"G2532\"* rebellion+ 2:3 or, falling away, or, defection* comes|strong=\"G2064\"* first|strong=\"G4413\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* man|strong=\"G5100\"* of|strong=\"G5207\"* sin is|strong=\"G3588\"* revealed, the|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* destruction." + }, + { + "verseNum": 4, + "text": "He|strong=\"G2532\"* opposes and|strong=\"G2532\"* exalts|strong=\"G5229\"* himself|strong=\"G1438\"* against|strong=\"G1909\"* all|strong=\"G3956\"* that|strong=\"G3754\"* is|strong=\"G1510\"* called|strong=\"G3004\"* God|strong=\"G2316\"* or|strong=\"G2228\"* that|strong=\"G3754\"* is|strong=\"G1510\"* worshiped, so|strong=\"G2532\"* that|strong=\"G3754\"* he|strong=\"G2532\"* sits|strong=\"G2523\"* as|strong=\"G1519\"* God|strong=\"G2316\"* in|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G3485\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, setting himself|strong=\"G1438\"* up|strong=\"G1519\"* as|strong=\"G1519\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 5, + "text": "Don’t you|strong=\"G5210\"* remember|strong=\"G3421\"* that|strong=\"G3754\"* when|strong=\"G1510\"* I|strong=\"G3754\"* was|strong=\"G1510\"* still|strong=\"G2089\"* with|strong=\"G4314\"* you|strong=\"G5210\"*, I|strong=\"G3754\"* told|strong=\"G3004\"* you|strong=\"G5210\"* these|strong=\"G3778\"* things|strong=\"G3778\"*?" + }, + { + "verseNum": 6, + "text": "Now|strong=\"G3568\"* you|strong=\"G1722\"* know|strong=\"G1492\"* what|strong=\"G3588\"* is|strong=\"G3588\"* restraining him|strong=\"G3588\"*, to|strong=\"G1519\"* the|strong=\"G1722\"* end|strong=\"G1519\"* that|strong=\"G3588\"* he|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G2532\"* revealed in|strong=\"G1722\"* his|strong=\"G1438\"* own|strong=\"G1438\"* season|strong=\"G2540\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* the|strong=\"G1537\"* mystery|strong=\"G3466\"* of|strong=\"G1537\"* lawlessness already|strong=\"G2235\"* works|strong=\"G1754\"*. Only|strong=\"G3440\"* there|strong=\"G1063\"* is|strong=\"G3588\"* one|strong=\"G3588\"* who|strong=\"G3588\"* restrains|strong=\"G2722\"* now|strong=\"G2235\"*, until|strong=\"G2193\"* he|strong=\"G3588\"* is|strong=\"G3588\"* taken|strong=\"G1096\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1537\"* way|strong=\"G3319\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* lawless one|strong=\"G3739\"* will|strong=\"G2532\"* be|strong=\"G2532\"* revealed, whom|strong=\"G3739\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* will|strong=\"G2532\"* kill with|strong=\"G2532\"* the|strong=\"G2532\"* breath|strong=\"G4151\"* of|strong=\"G4151\"* his|strong=\"G2532\"* mouth|strong=\"G4750\"* and|strong=\"G2532\"* destroy|strong=\"G2673\"* by|strong=\"G2532\"* the|strong=\"G2532\"* manifestation of|strong=\"G4151\"* his|strong=\"G2532\"* coming|strong=\"G3952\"*;" + }, + { + "verseNum": 9, + "text": "even|strong=\"G2532\"* he|strong=\"G2532\"* whose|strong=\"G3739\"* coming|strong=\"G3952\"* is|strong=\"G1510\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* working|strong=\"G1753\"* of|strong=\"G2532\"* Satan|strong=\"G4567\"* with|strong=\"G1722\"* all|strong=\"G3956\"* power|strong=\"G1411\"* and|strong=\"G2532\"* signs|strong=\"G4592\"* and|strong=\"G2532\"* lying|strong=\"G5579\"* wonders|strong=\"G5059\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* with|strong=\"G1722\"* all|strong=\"G3956\"* deception of|strong=\"G2532\"* wickedness|strong=\"G1722\"* for|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3739\"* are|strong=\"G3588\"* being|strong=\"G2532\"* lost, because|strong=\"G1722\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* receive|strong=\"G1209\"* the|strong=\"G1722\"* love of|strong=\"G2532\"* the|strong=\"G1722\"* truth, that|strong=\"G3739\"* they|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*." + }, + { + "verseNum": 11, + "text": "Because|strong=\"G1223\"* of|strong=\"G1223\"* this|strong=\"G3778\"*, God|strong=\"G2316\"* sends|strong=\"G3992\"* them|strong=\"G3588\"* a|strong=\"G2532\"* powerful delusion|strong=\"G4106\"*, that|strong=\"G3588\"* they|strong=\"G2532\"* should|strong=\"G2316\"* believe|strong=\"G4100\"* a|strong=\"G2532\"* lie|strong=\"G5579\"*," + }, + { + "verseNum": 12, + "text": "that|strong=\"G2443\"* they|strong=\"G3588\"* all|strong=\"G3956\"* might|strong=\"G3956\"* be|strong=\"G3361\"* judged|strong=\"G2919\"* who|strong=\"G3588\"* didn’t|strong=\"G3588\"* believe|strong=\"G4100\"* the|strong=\"G3956\"* truth, but|strong=\"G3361\"* had|strong=\"G3588\"* pleasure|strong=\"G2106\"* in|strong=\"G3956\"* unrighteousness." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"* are|strong=\"G3588\"* bound|strong=\"G3784\"* to|strong=\"G1519\"* always|strong=\"G3842\"* give|strong=\"G2168\"* thanks|strong=\"G2168\"* to|strong=\"G1519\"* God|strong=\"G2316\"* for|strong=\"G3754\"* you|strong=\"G5210\"*, brothers loved by|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, because|strong=\"G3754\"* God|strong=\"G2316\"* chose you|strong=\"G5210\"* from|strong=\"G2532\"* the|strong=\"G1722\"* beginning for|strong=\"G3754\"* salvation|strong=\"G4991\"* through|strong=\"G1722\"* sanctification of|strong=\"G4012\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* and|strong=\"G2532\"* belief|strong=\"G4102\"* in|strong=\"G1722\"* the|strong=\"G1722\"* truth," + }, + { + "verseNum": 14, + "text": "to|strong=\"G1519\"* which|strong=\"G3739\"* he|strong=\"G2532\"* called|strong=\"G2564\"* you|strong=\"G5210\"* through|strong=\"G1223\"* our|strong=\"G2424\"* Good|strong=\"G1223\"* News|strong=\"G2098\"*, for|strong=\"G1519\"* the|strong=\"G2532\"* obtaining|strong=\"G4047\"* of|strong=\"G1223\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G1223\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 15, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"*, brothers, stand|strong=\"G4739\"* firm|strong=\"G4739\"* and|strong=\"G2532\"* hold|strong=\"G2902\"* the|strong=\"G2532\"* traditions|strong=\"G3862\"* which|strong=\"G3739\"* you|strong=\"G3739\"* were|strong=\"G3588\"* taught|strong=\"G1321\"* by|strong=\"G1223\"* us|strong=\"G2249\"*, whether|strong=\"G1535\"* by|strong=\"G1223\"* word|strong=\"G3056\"* or|strong=\"G1535\"* by|strong=\"G1223\"* letter|strong=\"G1992\"*." + }, + { + "verseNum": 16, + "text": "Now|strong=\"G1161\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* himself, and|strong=\"G2532\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"*, who|strong=\"G3588\"* loved us|strong=\"G1325\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* us|strong=\"G1325\"* eternal comfort|strong=\"G3874\"* and|strong=\"G2532\"* good|strong=\"G3588\"* hope|strong=\"G1680\"* through|strong=\"G1722\"* grace|strong=\"G5485\"*," + }, + { + "verseNum": 17, + "text": "comfort|strong=\"G3870\"* your|strong=\"G2532\"* hearts|strong=\"G2588\"* and|strong=\"G2532\"* establish|strong=\"G4741\"* you|strong=\"G5210\"* in|strong=\"G1722\"* every|strong=\"G3956\"* good|strong=\"G3956\"* work|strong=\"G2041\"* and|strong=\"G2532\"* word|strong=\"G3056\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Finally|strong=\"G3063\"*, brothers, pray|strong=\"G4336\"* for|strong=\"G4012\"* us|strong=\"G2249\"*, that|strong=\"G2443\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G4012\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* may|strong=\"G2532\"* spread|strong=\"G5143\"* rapidly|strong=\"G5143\"* and|strong=\"G2532\"* be|strong=\"G2532\"* glorified|strong=\"G1392\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* also|strong=\"G2532\"* with|strong=\"G4314\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"G2532\"* that|strong=\"G2443\"* we|strong=\"G1063\"* may|strong=\"G2532\"* be|strong=\"G2532\"* delivered|strong=\"G4506\"* from|strong=\"G2532\"* unreasonable and|strong=\"G2532\"* evil|strong=\"G4190\"* men|strong=\"G3956\"*; for|strong=\"G1063\"* not|strong=\"G3756\"* all|strong=\"G3956\"* have|strong=\"G2532\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* is|strong=\"G1510\"* faithful|strong=\"G4103\"*, who|strong=\"G3739\"* will|strong=\"G1510\"* establish|strong=\"G4741\"* you|strong=\"G5210\"* and|strong=\"G2532\"* guard|strong=\"G5442\"* you|strong=\"G5210\"* from|strong=\"G2532\"* the|strong=\"G2532\"* evil|strong=\"G4190\"* one|strong=\"G3739\"*." + }, + { + "verseNum": 4, + "text": "We|strong=\"G3739\"* have|strong=\"G2532\"* confidence|strong=\"G3982\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* concerning|strong=\"G1909\"* you|strong=\"G5210\"*, that|strong=\"G3754\"* you|strong=\"G5210\"* both|strong=\"G2532\"* do|strong=\"G4160\"* and|strong=\"G2532\"* will|strong=\"G2532\"* do|strong=\"G4160\"* the|strong=\"G1722\"* things|strong=\"G3739\"* we|strong=\"G3739\"* command|strong=\"G3853\"*." + }, + { + "verseNum": 5, + "text": "May|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* direct|strong=\"G2720\"* your|strong=\"G2962\"* hearts|strong=\"G2588\"* into|strong=\"G1519\"* God|strong=\"G2316\"*’s|strong=\"G2962\"* love and|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G2532\"* perseverance|strong=\"G5281\"* of|strong=\"G2316\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"G1161\"* we|strong=\"G2249\"* command|strong=\"G3853\"* you|strong=\"G5210\"*, brothers, in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2532\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, that|strong=\"G3739\"* you|strong=\"G5210\"* withdraw yourselves|strong=\"G4771\"* from|strong=\"G3844\"* every|strong=\"G3956\"* brother who|strong=\"G3739\"* walks|strong=\"G4043\"* in|strong=\"G1722\"* rebellion and|strong=\"G2532\"* not|strong=\"G3361\"* after|strong=\"G2596\"* the|strong=\"G1722\"* tradition|strong=\"G3862\"* which|strong=\"G3739\"* they|strong=\"G2532\"* received|strong=\"G3880\"* from|strong=\"G3844\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* know|strong=\"G1492\"* how|strong=\"G4459\"* you|strong=\"G5210\"* ought|strong=\"G1163\"* to|strong=\"G1722\"* imitate|strong=\"G3401\"* us|strong=\"G2249\"*. For|strong=\"G1063\"* we|strong=\"G2249\"* didn’t behave|strong=\"G3756\"* ourselves|strong=\"G2249\"* rebelliously among|strong=\"G1722\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 8, + "text": "neither|strong=\"G3761\"* did|strong=\"G2532\"* we|strong=\"G2532\"* eat|strong=\"G2068\"* bread from|strong=\"G3844\"* anyone|strong=\"G5100\"*’s hand without|strong=\"G3361\"* paying for|strong=\"G4314\"* it|strong=\"G2532\"*, but|strong=\"G2532\"* in|strong=\"G1722\"* labor|strong=\"G2873\"* and|strong=\"G2532\"* travail|strong=\"G3449\"* worked|strong=\"G2038\"* night|strong=\"G3571\"* and|strong=\"G2532\"* day|strong=\"G2250\"*, that|strong=\"G3588\"* we|strong=\"G2532\"* might|strong=\"G2532\"* not|strong=\"G3361\"* burden|strong=\"G1912\"* any|strong=\"G5100\"* of|strong=\"G2250\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 9, + "text": "This|strong=\"G3588\"* was|strong=\"G3588\"* not|strong=\"G3756\"* because|strong=\"G3754\"* we|strong=\"G2249\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* the|strong=\"G1519\"* right|strong=\"G1849\"*, but|strong=\"G3588\"* to|strong=\"G1519\"* make|strong=\"G1519\"* ourselves|strong=\"G1438\"* an|strong=\"G2192\"* example|strong=\"G5179\"* to|strong=\"G1519\"* you|strong=\"G5210\"*, that|strong=\"G3754\"* you|strong=\"G5210\"* should|strong=\"G3588\"* imitate|strong=\"G3401\"* us|strong=\"G1325\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* even|strong=\"G2532\"* when|strong=\"G3753\"* we|strong=\"G3754\"* were|strong=\"G1510\"* with|strong=\"G4314\"* you|strong=\"G5210\"*, we|strong=\"G3754\"* commanded|strong=\"G3853\"* you|strong=\"G5210\"* this|strong=\"G3778\"*: “If|strong=\"G1487\"* anyone|strong=\"G5100\"* is|strong=\"G1510\"* not|strong=\"G3756\"* willing|strong=\"G2309\"* to|strong=\"G4314\"* work|strong=\"G2038\"*, don’t let|strong=\"G1510\"* him|strong=\"G2532\"* eat|strong=\"G2068\"*.”" + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* hear of|strong=\"G5100\"* some|strong=\"G5100\"* who|strong=\"G5100\"* walk|strong=\"G4043\"* among|strong=\"G1722\"* you|strong=\"G5210\"* in|strong=\"G1722\"* rebellion, who|strong=\"G5100\"* don’t work|strong=\"G2038\"* at|strong=\"G1722\"* all|strong=\"G1722\"*, but|strong=\"G1063\"* are|strong=\"G4043\"* busybodies|strong=\"G4020\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* that|strong=\"G2443\"* way|strong=\"G1722\"*, we|strong=\"G2532\"* command|strong=\"G3853\"* and|strong=\"G2532\"* exhort|strong=\"G3870\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* work|strong=\"G2038\"* with|strong=\"G3326\"* quietness|strong=\"G2271\"* and|strong=\"G2532\"* eat|strong=\"G2068\"* their|strong=\"G1438\"* own|strong=\"G1438\"* bread." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* you|strong=\"G5210\"*, brothers, don’t be|strong=\"G3361\"* weary|strong=\"G1573\"* in|strong=\"G1161\"* doing|strong=\"G2569\"* what|strong=\"G1161\"* is|strong=\"G3361\"* right." + }, + { + "verseNum": 14, + "text": "If|strong=\"G1487\"* any|strong=\"G5100\"* man|strong=\"G5100\"* doesn’t|strong=\"G3588\"* obey|strong=\"G5219\"* our|strong=\"G1223\"* word|strong=\"G3056\"* in|strong=\"G1223\"* this|strong=\"G3778\"* letter|strong=\"G1992\"*, note|strong=\"G4593\"* that|strong=\"G2443\"* man|strong=\"G5100\"* and|strong=\"G1161\"* have|strong=\"G1473\"* no|strong=\"G3756\"* company|strong=\"G4874\"* with|strong=\"G1223\"* him|strong=\"G3588\"*, to|strong=\"G2443\"* the|strong=\"G1161\"* end|strong=\"G3778\"* that|strong=\"G2443\"* he|strong=\"G1161\"* may|strong=\"G2443\"* be|strong=\"G3756\"* ashamed|strong=\"G1788\"*." + }, + { + "verseNum": 15, + "text": "Don’t count|strong=\"G2233\"* him|strong=\"G2532\"* as|strong=\"G5613\"* an|strong=\"G2532\"* enemy|strong=\"G2190\"*, but|strong=\"G2532\"* admonish|strong=\"G3560\"* him|strong=\"G2532\"* as|strong=\"G5613\"* a|strong=\"G5613\"* brother." + }, + { + "verseNum": 16, + "text": "Now|strong=\"G1161\"* may|strong=\"G3956\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* of|strong=\"G1223\"* peace|strong=\"G1515\"* himself give|strong=\"G1325\"* you|strong=\"G5210\"* peace|strong=\"G1515\"* at|strong=\"G1722\"* all|strong=\"G3956\"* times in|strong=\"G1722\"* all|strong=\"G3956\"* ways. The|strong=\"G1722\"* Lord|strong=\"G2962\"* be|strong=\"G3956\"* with|strong=\"G3326\"* you|strong=\"G5210\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"G3739\"*, Paul|strong=\"G3972\"*, write|strong=\"G1125\"* this|strong=\"G3588\"* greeting with|strong=\"G1722\"* my|strong=\"G1699\"* own|strong=\"G1699\"* hand|strong=\"G5495\"*, which|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G1722\"* sign|strong=\"G4592\"* in|strong=\"G1722\"* every|strong=\"G3956\"* letter|strong=\"G1992\"*. This|strong=\"G3588\"* is|strong=\"G1510\"* how|strong=\"G3779\"* I|strong=\"G3739\"* write|strong=\"G1125\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"G3956\"* grace|strong=\"G5485\"* of|strong=\"G5485\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* be|strong=\"G3956\"* with|strong=\"G3326\"* you|strong=\"G5210\"* all|strong=\"G3956\"*. Amen." + } + ] + } + ] + }, + { + "name": "1 Timothy", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, an|strong=\"G2532\"* apostle of|strong=\"G2316\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* commandment|strong=\"G2003\"* of|strong=\"G2316\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Savior|strong=\"G4990\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*+ 1:1 NU reads Christ Jesus and omits the Lord. * our|strong=\"G2316\"* hope|strong=\"G1680\"*," + }, + { + "verseNum": 2, + "text": "to|strong=\"G2532\"* Timothy|strong=\"G5095\"*, my|strong=\"G1722\"* true|strong=\"G1103\"* child|strong=\"G5043\"* in|strong=\"G1722\"* faith|strong=\"G4102\"*: Grace|strong=\"G5485\"*, mercy|strong=\"G1656\"*, and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 3, + "text": "As|strong=\"G2531\"* I|strong=\"G2443\"* urged|strong=\"G3870\"* you|strong=\"G4771\"* when|strong=\"G1722\"* I|strong=\"G2443\"* was|strong=\"G4771\"* going|strong=\"G4198\"* into|strong=\"G1519\"* Macedonia|strong=\"G3109\"*, stay at|strong=\"G1722\"* Ephesus|strong=\"G2181\"* that|strong=\"G2443\"* you|strong=\"G4771\"* might|strong=\"G5100\"* command|strong=\"G3853\"* certain|strong=\"G5100\"* men|strong=\"G5100\"* not|strong=\"G3361\"* to|strong=\"G1519\"* teach|strong=\"G2085\"* a|strong=\"G1519\"* different|strong=\"G2085\"* doctrine|strong=\"G2085\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"G2532\"* not|strong=\"G3366\"* to|strong=\"G2532\"* pay|strong=\"G4337\"* attention|strong=\"G4337\"* to|strong=\"G2532\"* myths|strong=\"G3454\"* and|strong=\"G2532\"* endless genealogies|strong=\"G1076\"*, which|strong=\"G3588\"* cause|strong=\"G3930\"* disputes rather|strong=\"G3123\"* than|strong=\"G2228\"* God|strong=\"G2316\"*’s stewardship|strong=\"G3622\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* goal|strong=\"G5056\"* of|strong=\"G1537\"* this|strong=\"G3588\"* command|strong=\"G3852\"* is|strong=\"G1510\"* love from|strong=\"G1537\"* a|strong=\"G2532\"* pure|strong=\"G2513\"* heart|strong=\"G2588\"*, a|strong=\"G2532\"* good|strong=\"G3588\"* conscience|strong=\"G4893\"*, and|strong=\"G2532\"* sincere faith|strong=\"G4102\"*," + }, + { + "verseNum": 6, + "text": "from|strong=\"G1519\"* which|strong=\"G3739\"* things|strong=\"G3739\"* some|strong=\"G5100\"*, having|strong=\"G5100\"* missed the|strong=\"G1519\"* mark, have|strong=\"G5100\"* turned|strong=\"G1624\"* away to|strong=\"G1519\"* vain|strong=\"G1519\"* talking," + }, + { + "verseNum": 7, + "text": "desiring|strong=\"G2309\"* to|strong=\"G3004\"* be|strong=\"G1510\"* teachers|strong=\"G3547\"* of|strong=\"G4012\"* the|strong=\"G3004\"* law|strong=\"G3547\"*, though they|strong=\"G3739\"* understand|strong=\"G3539\"* neither|strong=\"G3383\"* what|strong=\"G5101\"* they|strong=\"G3739\"* say|strong=\"G3004\"* nor|strong=\"G3383\"* about|strong=\"G4012\"* what|strong=\"G5101\"* they|strong=\"G3739\"* strongly affirm|strong=\"G1226\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* we|strong=\"G1437\"* know|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G1161\"* law|strong=\"G3551\"* is|strong=\"G3588\"* good|strong=\"G2570\"* if|strong=\"G1437\"* a|strong=\"G1437\"* person|strong=\"G5100\"* uses|strong=\"G5530\"* it|strong=\"G3754\"* lawfully|strong=\"G3545\"*," + }, + { + "verseNum": 9, + "text": "as|strong=\"G1161\"* knowing|strong=\"G1492\"* this|strong=\"G3778\"*, that|strong=\"G3754\"* law|strong=\"G3551\"* is|strong=\"G3778\"* not|strong=\"G3756\"* made|strong=\"G3756\"* for|strong=\"G3754\"* a|strong=\"G2532\"* righteous|strong=\"G1342\"* person|strong=\"G1342\"*, but|strong=\"G1161\"* for|strong=\"G3754\"* the|strong=\"G2532\"* lawless and|strong=\"G2532\"* insubordinate, for|strong=\"G3754\"* the|strong=\"G2532\"* ungodly and|strong=\"G2532\"* sinners, for|strong=\"G3754\"* the|strong=\"G2532\"* unholy and|strong=\"G2532\"* profane, for|strong=\"G3754\"* murderers of|strong=\"G2532\"* fathers|strong=\"G3964\"* and|strong=\"G2532\"* murderers of|strong=\"G2532\"* mothers|strong=\"G3389\"*, for|strong=\"G3754\"* manslayers," + }, + { + "verseNum": 10, + "text": "for|strong=\"G2532\"* the|strong=\"G2532\"* sexually immoral|strong=\"G4205\"*, for|strong=\"G2532\"* homosexuals, for|strong=\"G2532\"* slave-traders, for|strong=\"G2532\"* liars|strong=\"G5583\"*, for|strong=\"G2532\"* perjurers|strong=\"G1965\"*, and|strong=\"G2532\"* for|strong=\"G2532\"* any|strong=\"G5100\"* other|strong=\"G2087\"* thing|strong=\"G5100\"* contrary to|strong=\"G2532\"* the|strong=\"G2532\"* sound|strong=\"G5198\"* doctrine|strong=\"G1319\"*," + }, + { + "verseNum": 11, + "text": "according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G2596\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G2316\"* the|strong=\"G2596\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* the|strong=\"G2596\"* blessed|strong=\"G3107\"* God|strong=\"G2316\"*, which|strong=\"G3739\"* was|strong=\"G3588\"* committed|strong=\"G4100\"* to|strong=\"G2596\"* my|strong=\"G1473\"* trust|strong=\"G4100\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"G1473\"* thank|strong=\"G5485\"* him|strong=\"G3588\"* who|strong=\"G3588\"* enabled|strong=\"G1743\"* me|strong=\"G1473\"*, Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"*, because|strong=\"G3754\"* he|strong=\"G3754\"* counted|strong=\"G2233\"* me|strong=\"G1473\"* faithful|strong=\"G4103\"*, appointing me|strong=\"G1473\"* to|strong=\"G1519\"* service|strong=\"G1248\"*," + }, + { + "verseNum": 13, + "text": "although|strong=\"G3748\"* I|strong=\"G2532\"* used to|strong=\"G2532\"* be|strong=\"G1510\"* a|strong=\"G2532\"* blasphemer, a|strong=\"G2532\"* persecutor|strong=\"G1376\"*, and|strong=\"G2532\"* insolent|strong=\"G5197\"*. However, I|strong=\"G2532\"* obtained mercy|strong=\"G1653\"* because|strong=\"G3754\"* I|strong=\"G2532\"* did|strong=\"G4160\"* it|strong=\"G2532\"* ignorantly in|strong=\"G1722\"* unbelief." + }, + { + "verseNum": 14, + "text": "The|strong=\"G1722\"* grace|strong=\"G5485\"* of|strong=\"G2532\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* abounded exceedingly with|strong=\"G3326\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* love which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"G2532\"* saying|strong=\"G3056\"* is|strong=\"G1510\"* faithful|strong=\"G4103\"* and|strong=\"G2532\"* worthy of|strong=\"G3056\"* all|strong=\"G3956\"* acceptance, that|strong=\"G3754\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* world|strong=\"G2889\"* to|strong=\"G1519\"* save|strong=\"G4982\"* sinners, of|strong=\"G3056\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* am|strong=\"G1510\"* chief|strong=\"G4413\"*." + }, + { + "verseNum": 16, + "text": "However, for|strong=\"G1519\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* I|strong=\"G1473\"* obtained mercy|strong=\"G1653\"*, that|strong=\"G2443\"* in|strong=\"G1722\"* me|strong=\"G1473\"* first|strong=\"G4413\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* might|strong=\"G3778\"* display all|strong=\"G1722\"* his|strong=\"G1223\"* patience|strong=\"G3115\"* for|strong=\"G1519\"* an|strong=\"G1519\"* example|strong=\"G5296\"* of|strong=\"G1223\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* going|strong=\"G3195\"* to|strong=\"G1519\"* believe|strong=\"G4100\"* in|strong=\"G1722\"* him|strong=\"G3588\"* for|strong=\"G1519\"* eternal life|strong=\"G2222\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"G1161\"* to|strong=\"G1519\"* the|strong=\"G2532\"* King|strong=\"G3588\"* eternal, immortal, invisible, to|strong=\"G1519\"* God|strong=\"G2316\"* who|strong=\"G3588\"* alone|strong=\"G3441\"* is|strong=\"G3588\"* wise, be|strong=\"G2532\"* honor|strong=\"G5092\"* and|strong=\"G2532\"* glory|strong=\"G1391\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*. Amen." + }, + { + "verseNum": 18, + "text": "I|strong=\"G3778\"* commit|strong=\"G3908\"* this|strong=\"G3778\"* instruction|strong=\"G3852\"* to|strong=\"G2443\"* you|strong=\"G4771\"*, my|strong=\"G1722\"* child|strong=\"G5043\"* Timothy|strong=\"G5095\"*, according|strong=\"G2596\"* to|strong=\"G2443\"* the|strong=\"G1722\"* prophecies|strong=\"G4394\"* which|strong=\"G3588\"* were|strong=\"G3588\"* given to|strong=\"G2443\"* you|strong=\"G4771\"* before|strong=\"G1909\"*, that|strong=\"G2443\"* by|strong=\"G1722\"* them|strong=\"G3588\"* you|strong=\"G4771\"* may|strong=\"G2443\"* wage|strong=\"G4754\"* the|strong=\"G1722\"* good|strong=\"G2570\"* warfare|strong=\"G4752\"*," + }, + { + "verseNum": 19, + "text": "holding|strong=\"G2192\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* a|strong=\"G2192\"* good|strong=\"G3588\"* conscience|strong=\"G4893\"*, which|strong=\"G3739\"* some|strong=\"G5100\"* having|strong=\"G2192\"* thrust away made|strong=\"G4102\"* a|strong=\"G2192\"* shipwreck|strong=\"G3489\"* concerning|strong=\"G4012\"* the|strong=\"G2532\"* faith|strong=\"G4102\"*," + }, + { + "verseNum": 20, + "text": "of|strong=\"G2532\"* whom|strong=\"G3739\"* are|strong=\"G1510\"* Hymenaeus|strong=\"G5211\"* and|strong=\"G2532\"* Alexander, whom|strong=\"G3739\"* I|strong=\"G3739\"* delivered|strong=\"G3860\"* to|strong=\"G2443\"* Satan|strong=\"G4567\"* that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G1510\"* taught|strong=\"G3811\"* not|strong=\"G3361\"* to|strong=\"G2443\"* blaspheme." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G3767\"* exhort|strong=\"G3870\"* therefore|strong=\"G3767\"*, first|strong=\"G4413\"* of|strong=\"G5228\"* all|strong=\"G3956\"*, that|strong=\"G3956\"* petitions|strong=\"G1783\"*, prayers|strong=\"G4335\"*, intercessions|strong=\"G1783\"*, and|strong=\"G3767\"* givings of|strong=\"G5228\"* thanks|strong=\"G2169\"* be|strong=\"G3956\"* made|strong=\"G4160\"* for|strong=\"G5228\"* all|strong=\"G3956\"* men|strong=\"G3956\"*," + }, + { + "verseNum": 2, + "text": "for|strong=\"G5228\"* kings|strong=\"G3588\"* and|strong=\"G2532\"* all|strong=\"G3956\"* who|strong=\"G3588\"* are|strong=\"G1510\"* in|strong=\"G1722\"* high|strong=\"G3956\"* places, that|strong=\"G2443\"* we|strong=\"G2532\"* may|strong=\"G2532\"* lead|strong=\"G1236\"* a|strong=\"G2532\"* tranquil|strong=\"G2263\"* and|strong=\"G2532\"* quiet|strong=\"G2272\"* life|strong=\"G1236\"* in|strong=\"G1722\"* all|strong=\"G3956\"* godliness|strong=\"G2150\"* and|strong=\"G2532\"* reverence." + }, + { + "verseNum": 3, + "text": "For|strong=\"G2532\"* this|strong=\"G3778\"* is|strong=\"G3588\"* good|strong=\"G2570\"* and|strong=\"G2532\"* acceptable in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2316\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Savior|strong=\"G4990\"*," + }, + { + "verseNum": 4, + "text": "who|strong=\"G3739\"* desires|strong=\"G2309\"* all|strong=\"G3956\"* people|strong=\"G3956\"* to|strong=\"G1519\"* be|strong=\"G2532\"* saved|strong=\"G4982\"* and|strong=\"G2532\"* come|strong=\"G2064\"* to|strong=\"G1519\"* full|strong=\"G3956\"* knowledge|strong=\"G1922\"* of|strong=\"G2532\"* the|strong=\"G2532\"* truth." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* there|strong=\"G2532\"* is|strong=\"G2316\"* one|strong=\"G1520\"* God|strong=\"G2316\"* and|strong=\"G2532\"* one|strong=\"G1520\"* mediator|strong=\"G3316\"* between|strong=\"G3316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* men, the|strong=\"G2532\"* man|strong=\"G1520\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 6, + "text": "who|strong=\"G3588\"* gave|strong=\"G1325\"* himself|strong=\"G1438\"* as|strong=\"G1438\"* a|strong=\"G1325\"* ransom for|strong=\"G5228\"* all|strong=\"G3956\"*, the|strong=\"G3956\"* testimony|strong=\"G3142\"* at|strong=\"G3588\"* the|strong=\"G3956\"* proper|strong=\"G2398\"* time|strong=\"G2540\"*," + }, + { + "verseNum": 7, + "text": "to|strong=\"G1519\"* which|strong=\"G3739\"* I|strong=\"G1473\"* was|strong=\"G3739\"* appointed|strong=\"G5087\"* a|strong=\"G2532\"* preacher|strong=\"G2783\"* and|strong=\"G2532\"* an|strong=\"G2532\"* apostle—I|strong=\"G1473\"* am|strong=\"G1473\"* telling|strong=\"G3004\"* the|strong=\"G1722\"* truth in|strong=\"G1722\"* Christ, not|strong=\"G3756\"* lying|strong=\"G5574\"*—a|strong=\"G2532\"* teacher|strong=\"G1320\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* in|strong=\"G1722\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* truth." + }, + { + "verseNum": 8, + "text": "I|strong=\"G2532\"* desire|strong=\"G1014\"* therefore|strong=\"G3767\"* that|strong=\"G3588\"* the|strong=\"G1722\"* men|strong=\"G3956\"* in|strong=\"G1722\"* every|strong=\"G3956\"* place|strong=\"G5117\"* pray|strong=\"G4336\"*, lifting|strong=\"G1869\"* up|strong=\"G1869\"* holy|strong=\"G3741\"* hands|strong=\"G5495\"* without|strong=\"G5565\"* anger|strong=\"G3709\"* and|strong=\"G2532\"* doubting|strong=\"G1261\"*." + }, + { + "verseNum": 9, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* same|strong=\"G5615\"* way|strong=\"G1722\"*, that|strong=\"G2532\"* women|strong=\"G1135\"* also|strong=\"G2532\"* adorn|strong=\"G2885\"* themselves|strong=\"G1438\"* in|strong=\"G1722\"* decent clothing|strong=\"G2441\"*, with|strong=\"G3326\"* modesty and|strong=\"G2532\"* propriety, not|strong=\"G3361\"*+ 2:9 The word for “not” is the negative particle “μη” which denies an expected idea, as opposed to the usual word for “not” (ου) which denies a fact. Thus “μη” in this context is denying an expected idea (that women can be properly dressed without good works).* with|strong=\"G3326\"* braided|strong=\"G4117\"* hair|strong=\"G4117\"*, gold|strong=\"G5553\"*, pearls|strong=\"G3135\"*, or|strong=\"G2228\"* expensive|strong=\"G4185\"* clothing|strong=\"G2441\"*," + }, + { + "verseNum": 10, + "text": "but|strong=\"G3739\"* with|strong=\"G1223\"* good|strong=\"G1223\"* works|strong=\"G2041\"*, which|strong=\"G3739\"* is|strong=\"G3739\"* appropriate for|strong=\"G1223\"* women|strong=\"G1135\"* professing|strong=\"G1861\"* godliness|strong=\"G2317\"*." + }, + { + "verseNum": 11, + "text": "Let|strong=\"G3129\"* a|strong=\"G1722\"* woman|strong=\"G1135\"* learn|strong=\"G3129\"* in|strong=\"G1722\"* quietness|strong=\"G2271\"* with|strong=\"G1722\"* full|strong=\"G3956\"* submission." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* I|strong=\"G1161\"* don’t permit|strong=\"G2010\"* a|strong=\"G1722\"* woman|strong=\"G1135\"* to|strong=\"G1722\"* teach|strong=\"G1321\"*, nor|strong=\"G3761\"* to|strong=\"G1722\"* exercise authority over|strong=\"G1722\"* a|strong=\"G1722\"* man|strong=\"G3756\"*, but|strong=\"G1161\"* to|strong=\"G1722\"* be|strong=\"G1510\"* in|strong=\"G1722\"* quietness|strong=\"G2271\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* Adam was|strong=\"G4111\"* formed|strong=\"G4111\"* first|strong=\"G4413\"*, then|strong=\"G1534\"* Eve|strong=\"G2096\"*." + }, + { + "verseNum": 14, + "text": "Adam wasn’t|strong=\"G3588\"* deceived|strong=\"G1818\"*, but|strong=\"G1161\"* the|strong=\"G1722\"* woman|strong=\"G1135\"*, being|strong=\"G1096\"* deceived|strong=\"G1818\"*, has|strong=\"G1096\"* fallen into|strong=\"G1722\"* disobedience;" + }, + { + "verseNum": 15, + "text": "but|strong=\"G1161\"* she|strong=\"G2532\"* will|strong=\"G2532\"* be|strong=\"G2532\"* saved|strong=\"G4982\"* through|strong=\"G1223\"* her|strong=\"G1437\"* childbearing|strong=\"G5042\"*, if|strong=\"G1437\"* they|strong=\"G2532\"* continue|strong=\"G3306\"* in|strong=\"G1722\"* faith|strong=\"G4102\"*, love, and|strong=\"G2532\"* holiness with|strong=\"G3326\"* sobriety|strong=\"G4997\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "This|strong=\"G3588\"* is|strong=\"G3588\"* a|strong=\"G1487\"* faithful|strong=\"G4103\"* saying|strong=\"G3056\"*: someone|strong=\"G5100\"* who|strong=\"G3588\"* seeks to|strong=\"G5100\"* be|strong=\"G3588\"* an|strong=\"G3056\"* overseer|strong=\"G1984\"*+ 3:1 or, superintendent, or bishop* desires|strong=\"G1937\"* a|strong=\"G1487\"* good|strong=\"G2570\"* work|strong=\"G2041\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"G3588\"* overseer|strong=\"G1985\"* therefore|strong=\"G3767\"* must|strong=\"G1163\"* be|strong=\"G1510\"* without|strong=\"G3588\"* reproach, the|strong=\"G3588\"* husband of|strong=\"G1520\"* one|strong=\"G1520\"* wife|strong=\"G1135\"*, temperate|strong=\"G3524\"*, sensible|strong=\"G4998\"*, modest|strong=\"G2887\"*, hospitable|strong=\"G5382\"*, good|strong=\"G3588\"* at|strong=\"G3588\"* teaching;" + }, + { + "verseNum": 3, + "text": "not|strong=\"G3361\"* a|strong=\"G3361\"* drinker, not|strong=\"G3361\"* violent|strong=\"G4131\"*, not|strong=\"G3361\"* greedy for|strong=\"G3361\"* money, but|strong=\"G3361\"* gentle|strong=\"G1933\"*, not|strong=\"G3361\"* quarrelsome, not|strong=\"G3361\"* covetous;" + }, + { + "verseNum": 4, + "text": "one|strong=\"G3956\"* who|strong=\"G3588\"* rules his|strong=\"G3956\"* own|strong=\"G2398\"* house|strong=\"G3624\"* well|strong=\"G2573\"*, having|strong=\"G2192\"* children|strong=\"G5043\"* in|strong=\"G1722\"* subjection|strong=\"G5292\"* with|strong=\"G3326\"* all|strong=\"G3956\"* reverence;" + }, + { + "verseNum": 5, + "text": "(for|strong=\"G1161\"* how|strong=\"G4459\"* could|strong=\"G1492\"* someone|strong=\"G5100\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* know|strong=\"G1492\"* how|strong=\"G4459\"* to|strong=\"G3756\"* rule|strong=\"G4291\"* his|strong=\"G2398\"* own|strong=\"G2398\"* house|strong=\"G3624\"* take|strong=\"G1959\"* care|strong=\"G1959\"* of|strong=\"G2316\"* God|strong=\"G2316\"*’s assembly|strong=\"G1577\"*?)" + }, + { + "verseNum": 6, + "text": "not|strong=\"G3361\"* a|strong=\"G1519\"* new|strong=\"G3504\"* convert|strong=\"G3504\"*, lest|strong=\"G3361\"* being|strong=\"G2443\"* puffed up|strong=\"G1519\"* he|strong=\"G3588\"* fall|strong=\"G1706\"* into|strong=\"G1519\"* the|strong=\"G1519\"* same condemnation|strong=\"G2917\"* as|strong=\"G1519\"* the|strong=\"G1519\"* devil|strong=\"G1228\"*." + }, + { + "verseNum": 7, + "text": "Moreover|strong=\"G1161\"* he|strong=\"G2532\"* must|strong=\"G1163\"* have|strong=\"G2192\"* good|strong=\"G2570\"* testimony|strong=\"G3141\"* from|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* outside|strong=\"G1855\"*, to|strong=\"G1519\"* avoid falling into|strong=\"G1519\"* reproach|strong=\"G3680\"* and|strong=\"G2532\"* the|strong=\"G2532\"* snare|strong=\"G3803\"* of|strong=\"G2532\"* the|strong=\"G2532\"* devil|strong=\"G1228\"*." + }, + { + "verseNum": 8, + "text": "Servants|strong=\"G1249\"*,+ 3:8 or, Deacons.* in|strong=\"G4183\"* the|strong=\"G3361\"* same|strong=\"G5615\"* way|strong=\"G5615\"*, must be|strong=\"G3361\"* reverent, not|strong=\"G3361\"* double-tongued|strong=\"G1351\"*, not|strong=\"G3361\"* addicted|strong=\"G4337\"* to|strong=\"G3361\"* much|strong=\"G4183\"* wine|strong=\"G3631\"*, not|strong=\"G3361\"* greedy for|strong=\"G4183\"* money," + }, + { + "verseNum": 9, + "text": "holding|strong=\"G2192\"* the|strong=\"G1722\"* mystery|strong=\"G3466\"* of|strong=\"G1722\"* the|strong=\"G1722\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* a|strong=\"G2192\"* pure|strong=\"G2513\"* conscience|strong=\"G4893\"*." + }, + { + "verseNum": 10, + "text": "Let|strong=\"G1161\"* them|strong=\"G3778\"* also|strong=\"G2532\"* first|strong=\"G4413\"* be|strong=\"G1510\"* tested|strong=\"G1381\"*; then|strong=\"G2532\"* let|strong=\"G1161\"* them|strong=\"G3778\"* serve|strong=\"G1247\"*+ 3:10 or, serve as deacons* if|strong=\"G2532\"* they|strong=\"G2532\"* are|strong=\"G1510\"* blameless." + }, + { + "verseNum": 11, + "text": "Their|strong=\"G1722\"* wives|strong=\"G1135\"* in|strong=\"G1722\"* the|strong=\"G1722\"* same|strong=\"G5615\"* way|strong=\"G1722\"* must|strong=\"G1135\"* be|strong=\"G3361\"* reverent, not|strong=\"G3361\"* slanderers|strong=\"G1228\"*, temperate|strong=\"G3524\"*, and|strong=\"G1135\"* faithful|strong=\"G4103\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 12, + "text": "Let|strong=\"G1510\"* servants|strong=\"G1249\"*+ 3:12 or, deacons* be|strong=\"G1510\"* husbands of|strong=\"G2532\"* one|strong=\"G1520\"* wife|strong=\"G1135\"*, ruling|strong=\"G4291\"* their|strong=\"G2532\"* children|strong=\"G5043\"* and|strong=\"G2532\"* their|strong=\"G2532\"* own|strong=\"G2398\"* houses|strong=\"G3624\"* well|strong=\"G2573\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2532\"* served|strong=\"G1247\"* well|strong=\"G2573\"*+ 3:13 or, served well as deacons* gain|strong=\"G4046\"* for|strong=\"G1063\"* themselves|strong=\"G1438\"* a|strong=\"G2532\"* good|strong=\"G2570\"* standing and|strong=\"G2532\"* great|strong=\"G4183\"* boldness|strong=\"G3954\"* in|strong=\"G1722\"* the|strong=\"G1722\"* faith|strong=\"G4102\"* which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 14, + "text": "These|strong=\"G3778\"* things|strong=\"G3778\"* I|strong=\"G3778\"* write|strong=\"G1125\"* to|strong=\"G4314\"* you|strong=\"G4771\"*, hoping|strong=\"G1679\"* to|strong=\"G4314\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G4771\"* shortly|strong=\"G5034\"*," + }, + { + "verseNum": 15, + "text": "but|strong=\"G1161\"* if|strong=\"G1437\"* I|strong=\"G2532\"* wait long|strong=\"G1019\"*, that|strong=\"G2443\"* you|strong=\"G1437\"* may|strong=\"G2532\"* know|strong=\"G1492\"* how|strong=\"G4459\"* men|strong=\"G3588\"* ought|strong=\"G1163\"* to|strong=\"G2443\"* behave themselves|strong=\"G1722\"* in|strong=\"G1722\"* God|strong=\"G2316\"*’s house|strong=\"G3624\"*, which|strong=\"G3588\"* is|strong=\"G1510\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* of|strong=\"G2316\"* the|strong=\"G1722\"* living|strong=\"G2198\"* God|strong=\"G2316\"*, the|strong=\"G1722\"* pillar|strong=\"G4769\"* and|strong=\"G2532\"* ground|strong=\"G1477\"* of|strong=\"G2316\"* the|strong=\"G1722\"* truth." + }, + { + "verseNum": 16, + "text": "Without|strong=\"G2532\"* controversy|strong=\"G3672\"*, the|strong=\"G1722\"* mystery|strong=\"G3466\"* of|strong=\"G4151\"* godliness|strong=\"G2150\"* is|strong=\"G1510\"* great|strong=\"G3173\"*:" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"G1161\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* says|strong=\"G3004\"* expressly|strong=\"G4490\"* that|strong=\"G3754\"* in|strong=\"G1722\"* later|strong=\"G5306\"* times|strong=\"G2540\"* some|strong=\"G5100\"* will|strong=\"G2532\"* fall away from|strong=\"G2532\"* the|strong=\"G1722\"* faith|strong=\"G4102\"*, paying|strong=\"G4337\"* attention|strong=\"G4337\"* to|strong=\"G2532\"* seducing|strong=\"G4108\"* spirits|strong=\"G4151\"* and|strong=\"G2532\"* doctrines|strong=\"G1319\"* of|strong=\"G4151\"* demons|strong=\"G1140\"*," + }, + { + "verseNum": 2, + "text": "through|strong=\"G1722\"* the|strong=\"G1722\"* hypocrisy|strong=\"G5272\"* of|strong=\"G1722\"* men|strong=\"G3588\"* who|strong=\"G3588\"* speak lies|strong=\"G5573\"*, branded in|strong=\"G1722\"* their|strong=\"G1722\"* own|strong=\"G2398\"* conscience|strong=\"G4893\"* as|strong=\"G1722\"* with|strong=\"G1722\"* a|strong=\"G1722\"* hot iron|strong=\"G2743\"*," + }, + { + "verseNum": 3, + "text": "forbidding|strong=\"G2967\"* marriage|strong=\"G1060\"* and|strong=\"G2532\"* commanding to|strong=\"G1519\"* abstain from|strong=\"G2532\"* foods|strong=\"G1033\"* which|strong=\"G3739\"* God|strong=\"G2316\"* created|strong=\"G2936\"* to|strong=\"G1519\"* be|strong=\"G2532\"* received|strong=\"G3336\"* with|strong=\"G3326\"* thanksgiving|strong=\"G2169\"* by|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3739\"* believe|strong=\"G4103\"* and|strong=\"G2532\"* know|strong=\"G1921\"* the|strong=\"G2532\"* truth." + }, + { + "verseNum": 4, + "text": "For|strong=\"G3754\"* every|strong=\"G3956\"* creature|strong=\"G2938\"* of|strong=\"G2316\"* God|strong=\"G2316\"* is|strong=\"G2316\"* good|strong=\"G2570\"*, and|strong=\"G2532\"* nothing|strong=\"G3762\"* is|strong=\"G2316\"* to|strong=\"G2532\"* be|strong=\"G2532\"* rejected if|strong=\"G2532\"* it|strong=\"G2532\"* is|strong=\"G2316\"* received|strong=\"G2983\"* with|strong=\"G3326\"* thanksgiving|strong=\"G2169\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G2316\"* sanctified through|strong=\"G1223\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* and|strong=\"G2532\"* prayer|strong=\"G1783\"*." + }, + { + "verseNum": 6, + "text": "If|strong=\"G2532\"* you|strong=\"G3739\"* instruct the|strong=\"G2532\"* brothers of|strong=\"G3056\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, you|strong=\"G3739\"* will|strong=\"G1510\"* be|strong=\"G1510\"* a|strong=\"G2532\"* good|strong=\"G2570\"* servant|strong=\"G1249\"* of|strong=\"G3056\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, nourished|strong=\"G1789\"* in|strong=\"G2532\"* the|strong=\"G2532\"* words|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G2532\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* of|strong=\"G3056\"* the|strong=\"G2532\"* good|strong=\"G2570\"* doctrine|strong=\"G1319\"* which|strong=\"G3739\"* you|strong=\"G3739\"* have|strong=\"G2532\"* followed|strong=\"G3877\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* refuse|strong=\"G3868\"* profane and|strong=\"G2532\"* old|strong=\"G2532\"* wives’ fables|strong=\"G3454\"*. Exercise|strong=\"G1128\"* yourself|strong=\"G4572\"* toward|strong=\"G4314\"* godliness|strong=\"G2150\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* bodily|strong=\"G4984\"* exercise|strong=\"G1129\"* has|strong=\"G2192\"* some|strong=\"G3588\"* value|strong=\"G5624\"*, but|strong=\"G1161\"* godliness|strong=\"G2150\"* has|strong=\"G2192\"* value|strong=\"G5624\"* in|strong=\"G2532\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, having|strong=\"G2192\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* of|strong=\"G2532\"* the|strong=\"G2532\"* life|strong=\"G2222\"* which|strong=\"G3588\"* is|strong=\"G1510\"* now|strong=\"G1161\"* and|strong=\"G2532\"* of|strong=\"G2532\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G1510\"* to|strong=\"G4314\"* come|strong=\"G3195\"*." + }, + { + "verseNum": 9, + "text": "This|strong=\"G3588\"* saying|strong=\"G3056\"* is|strong=\"G3588\"* faithful|strong=\"G4103\"* and|strong=\"G2532\"* worthy of|strong=\"G3056\"* all|strong=\"G3956\"* acceptance." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* to|strong=\"G1519\"* this|strong=\"G3778\"* end|strong=\"G1519\"* we|strong=\"G3739\"* both|strong=\"G2532\"* labor|strong=\"G2872\"* and|strong=\"G2532\"* suffer|strong=\"G2532\"* reproach|strong=\"G3679\"*, because|strong=\"G3754\"* we|strong=\"G3739\"* have|strong=\"G2532\"* set|strong=\"G1679\"* our|strong=\"G2316\"* trust|strong=\"G1679\"* in|strong=\"G1519\"* the|strong=\"G2532\"* living|strong=\"G2198\"* God|strong=\"G2316\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Savior|strong=\"G4990\"* of|strong=\"G2316\"* all|strong=\"G3956\"* men|strong=\"G3956\"*, especially|strong=\"G3122\"* of|strong=\"G2316\"* those|strong=\"G3778\"* who|strong=\"G3739\"* believe|strong=\"G4103\"*." + }, + { + "verseNum": 11, + "text": "Command|strong=\"G3853\"* and|strong=\"G2532\"* teach|strong=\"G1321\"* these|strong=\"G3778\"* things|strong=\"G3778\"*." + }, + { + "verseNum": 12, + "text": "Let|strong=\"G1096\"* no|strong=\"G3367\"* man|strong=\"G3367\"* despise|strong=\"G2706\"* your|strong=\"G1722\"* youth|strong=\"G3503\"*; but|strong=\"G3588\"* be|strong=\"G1096\"* an|strong=\"G1722\"* example|strong=\"G5179\"* to|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* believe|strong=\"G4103\"*, in|strong=\"G1722\"* word|strong=\"G3056\"*, in|strong=\"G1722\"* your|strong=\"G1722\"* way|strong=\"G1722\"* of|strong=\"G3056\"* life, in|strong=\"G1722\"* love, in|strong=\"G1722\"* spirit|strong=\"G3588\"*, in|strong=\"G1722\"* faith|strong=\"G4102\"*, and|strong=\"G4102\"* in|strong=\"G1722\"* purity." + }, + { + "verseNum": 13, + "text": "Until|strong=\"G2193\"* I|strong=\"G2193\"* come|strong=\"G2064\"*, pay|strong=\"G4337\"* attention|strong=\"G4337\"* to|strong=\"G2064\"* reading, to|strong=\"G2064\"* exhortation|strong=\"G3874\"*, and|strong=\"G2064\"* to|strong=\"G2064\"* teaching|strong=\"G1319\"*." + }, + { + "verseNum": 14, + "text": "Don’t|strong=\"G3588\"* neglect the|strong=\"G1722\"* gift|strong=\"G5486\"* that|strong=\"G3739\"* is|strong=\"G3588\"* in|strong=\"G1722\"* you|strong=\"G4771\"*, which|strong=\"G3739\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G1722\"* you|strong=\"G4771\"* by|strong=\"G1223\"* prophecy|strong=\"G4394\"* with|strong=\"G3326\"* the|strong=\"G1722\"* laying|strong=\"G1936\"* on|strong=\"G1722\"* of|strong=\"G1223\"* the|strong=\"G1722\"* hands|strong=\"G5495\"* of|strong=\"G1223\"* the|strong=\"G1722\"* elders|strong=\"G4244\"*." + }, + { + "verseNum": 15, + "text": "Be|strong=\"G1510\"* diligent in|strong=\"G1722\"* these|strong=\"G3778\"* things|strong=\"G3956\"*. Give|strong=\"G3956\"* yourself|strong=\"G4771\"* wholly to|strong=\"G2443\"* them|strong=\"G3588\"*, that|strong=\"G2443\"* your|strong=\"G3956\"* progress|strong=\"G4297\"* may|strong=\"G2443\"* be|strong=\"G1510\"* revealed|strong=\"G5318\"* to|strong=\"G2443\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 16, + "text": "Pay|strong=\"G1907\"* attention|strong=\"G1907\"* to|strong=\"G2532\"* yourself|strong=\"G4572\"* and|strong=\"G2532\"* to|strong=\"G2532\"* your|strong=\"G2532\"* teaching|strong=\"G1319\"*. Continue|strong=\"G1961\"* in|strong=\"G2532\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, for|strong=\"G1063\"* in|strong=\"G2532\"* doing|strong=\"G4160\"* this|strong=\"G3778\"* you|strong=\"G4771\"* will|strong=\"G2532\"* save|strong=\"G4982\"* both|strong=\"G2532\"* yourself|strong=\"G4572\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* hear you|strong=\"G4771\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Don’t rebuke|strong=\"G1969\"* an|strong=\"G5613\"* older|strong=\"G4245\"* man|strong=\"G3361\"*, but|strong=\"G3361\"* exhort|strong=\"G3870\"* him|strong=\"G3870\"* as|strong=\"G5613\"* a|strong=\"G5613\"* father|strong=\"G3962\"*; the|strong=\"G5613\"* younger|strong=\"G3501\"* men|strong=\"G3501\"* as|strong=\"G5613\"* brothers;" + }, + { + "verseNum": 2, + "text": "the|strong=\"G1722\"* elder|strong=\"G4245\"* women|strong=\"G4245\"* as|strong=\"G5613\"* mothers|strong=\"G3384\"*; the|strong=\"G1722\"* younger|strong=\"G3501\"* as|strong=\"G5613\"* sisters, in|strong=\"G1722\"* all|strong=\"G3956\"* purity." + }, + { + "verseNum": 3, + "text": "Honor|strong=\"G5091\"* widows|strong=\"G5503\"* who|strong=\"G3588\"* are|strong=\"G3588\"* widows|strong=\"G5503\"* indeed|strong=\"G3689\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* any|strong=\"G5100\"* widow|strong=\"G5503\"* has|strong=\"G2192\"* children|strong=\"G5043\"* or|strong=\"G2228\"* grandchildren|strong=\"G1549\"*, let|strong=\"G1161\"* them|strong=\"G3588\"* learn|strong=\"G3129\"* first|strong=\"G4412\"* to|strong=\"G2532\"* show|strong=\"G2192\"* piety|strong=\"G2151\"* toward their|strong=\"G2532\"* own|strong=\"G2398\"* family|strong=\"G3624\"* and|strong=\"G2532\"* to|strong=\"G2532\"* repay|strong=\"G2192\"* their|strong=\"G2532\"* parents|strong=\"G4269\"*, for|strong=\"G1063\"* this|strong=\"G3778\"* is|strong=\"G1510\"*+ 5:4 TR adds “good and”* acceptable in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"G1161\"* she|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G3588\"* a|strong=\"G2532\"* widow|strong=\"G5503\"* indeed|strong=\"G2532\"* and|strong=\"G2532\"* desolate|strong=\"G3443\"*, has|strong=\"G2316\"* her|strong=\"G3588\"* hope|strong=\"G1679\"* set|strong=\"G1679\"* on|strong=\"G1909\"* God|strong=\"G2316\"* and|strong=\"G2532\"* continues|strong=\"G4357\"* in|strong=\"G1909\"* petitions and|strong=\"G2532\"* prayers|strong=\"G4335\"* night|strong=\"G3571\"* and|strong=\"G2532\"* day|strong=\"G2250\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* she|strong=\"G1161\"* who|strong=\"G3588\"* gives|strong=\"G4684\"* herself|strong=\"G4684\"* to|strong=\"G1161\"* pleasure|strong=\"G4684\"* is|strong=\"G3588\"* dead|strong=\"G2348\"* while|strong=\"G1161\"* she|strong=\"G1161\"* lives|strong=\"G2198\"*." + }, + { + "verseNum": 7, + "text": "Also|strong=\"G2532\"* command|strong=\"G3853\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G1510\"* without|strong=\"G2532\"* reproach." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* anyone|strong=\"G5100\"* doesn’t|strong=\"G3588\"* provide|strong=\"G4306\"* for|strong=\"G1161\"* his|strong=\"G2398\"* own|strong=\"G2398\"*, and|strong=\"G2532\"* especially|strong=\"G3122\"* his|strong=\"G2398\"* own|strong=\"G2398\"* household|strong=\"G3609\"*, he|strong=\"G2532\"* has|strong=\"G4102\"* denied the|strong=\"G2532\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* is|strong=\"G1510\"* worse|strong=\"G5501\"* than|strong=\"G2532\"* an|strong=\"G2532\"* unbeliever." + }, + { + "verseNum": 9, + "text": "Let|strong=\"G1096\"* no|strong=\"G3361\"* one|strong=\"G1520\"* be|strong=\"G1096\"* enrolled as|strong=\"G1096\"* a|strong=\"G1096\"* widow|strong=\"G5503\"* under|strong=\"G1640\"* sixty|strong=\"G1835\"* years|strong=\"G2094\"* old|strong=\"G2094\"*, having|strong=\"G3361\"* been|strong=\"G1096\"* the|strong=\"G3361\"* wife|strong=\"G1135\"* of|strong=\"G1520\"* one|strong=\"G1520\"* man|strong=\"G1520\"*," + }, + { + "verseNum": 10, + "text": "being|strong=\"G1722\"* approved by|strong=\"G1722\"* good|strong=\"G2570\"* works|strong=\"G2041\"*, if|strong=\"G1487\"* she|strong=\"G3956\"* has|strong=\"G2041\"* brought|strong=\"G5044\"* up|strong=\"G1722\"* children|strong=\"G5044\"*, if|strong=\"G1487\"* she|strong=\"G3956\"* has|strong=\"G2041\"* been hospitable to|strong=\"G1722\"* strangers|strong=\"G3580\"*, if|strong=\"G1487\"* she|strong=\"G3956\"* has|strong=\"G2041\"* washed|strong=\"G3538\"* the|strong=\"G1722\"* saints’ feet|strong=\"G4228\"*, if|strong=\"G1487\"* she|strong=\"G3956\"* has|strong=\"G2041\"* relieved|strong=\"G1884\"* the|strong=\"G1722\"* afflicted|strong=\"G2346\"*, and|strong=\"G3956\"* if|strong=\"G1487\"* she|strong=\"G3956\"* has|strong=\"G2041\"* diligently followed|strong=\"G1872\"* every|strong=\"G3956\"* good|strong=\"G2570\"* work|strong=\"G2041\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* refuse|strong=\"G3868\"* younger|strong=\"G3501\"* widows|strong=\"G5503\"*, for|strong=\"G1063\"* when|strong=\"G3752\"* they|strong=\"G1161\"* have|strong=\"G2309\"* grown wanton against|strong=\"G2691\"* Christ|strong=\"G5547\"*, they|strong=\"G1161\"* desire|strong=\"G2309\"* to|strong=\"G2309\"* marry|strong=\"G1060\"*," + }, + { + "verseNum": 12, + "text": "having|strong=\"G2192\"* condemnation|strong=\"G2917\"*, because|strong=\"G3754\"* they|strong=\"G3588\"* have|strong=\"G2192\"* rejected their|strong=\"G3588\"* first|strong=\"G4413\"* pledge|strong=\"G4102\"*." + }, + { + "verseNum": 13, + "text": "Besides|strong=\"G2532\"*, they|strong=\"G2532\"* also|strong=\"G2532\"* learn|strong=\"G3129\"* to|strong=\"G2532\"* be|strong=\"G2532\"* idle, going|strong=\"G2532\"* about|strong=\"G4022\"* from|strong=\"G2532\"* house|strong=\"G3614\"* to|strong=\"G2532\"* house|strong=\"G3614\"*. Not|strong=\"G3756\"* only|strong=\"G3440\"* idle, but|strong=\"G1161\"* also|strong=\"G2532\"* gossips|strong=\"G5397\"* and|strong=\"G2532\"* busybodies|strong=\"G4021\"*, saying|strong=\"G2980\"* things|strong=\"G3588\"* which|strong=\"G3588\"* they|strong=\"G2532\"* ought|strong=\"G1163\"* not|strong=\"G3756\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"G3767\"* desire|strong=\"G1014\"* therefore|strong=\"G3767\"* that|strong=\"G3588\"* the|strong=\"G3588\"* younger|strong=\"G3501\"* widows marry|strong=\"G1060\"*, bear|strong=\"G5041\"* children|strong=\"G5041\"*, rule the|strong=\"G3588\"* household, and|strong=\"G3767\"* give|strong=\"G1325\"* no|strong=\"G3367\"* occasion to|strong=\"G1325\"* the|strong=\"G3588\"* adversary for|strong=\"G3367\"* insulting." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* already|strong=\"G2235\"* some|strong=\"G5100\"* have|strong=\"G5100\"* turned|strong=\"G1624\"* away after|strong=\"G3694\"* Satan|strong=\"G4567\"*." + }, + { + "verseNum": 16, + "text": "If|strong=\"G1487\"* any|strong=\"G5100\"* man|strong=\"G5100\"* or|strong=\"G2532\"* woman|strong=\"G4103\"* who|strong=\"G3588\"* believes has|strong=\"G2192\"* widows|strong=\"G5503\"*, let|strong=\"G2443\"* them|strong=\"G3588\"* relieve|strong=\"G1884\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* let|strong=\"G2443\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"* be|strong=\"G2532\"* burdened, that|strong=\"G2443\"* it|strong=\"G2532\"* might|strong=\"G2532\"* relieve|strong=\"G1884\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* widows|strong=\"G5503\"* indeed|strong=\"G2532\"*." + }, + { + "verseNum": 17, + "text": "Let|strong=\"G2532\"* the|strong=\"G1722\"* elders|strong=\"G4245\"* who|strong=\"G3588\"* rule|strong=\"G4291\"* well|strong=\"G2573\"* be|strong=\"G2532\"* counted worthy of|strong=\"G3056\"* double|strong=\"G1362\"* honor|strong=\"G5092\"*, especially|strong=\"G3122\"* those|strong=\"G3588\"* who|strong=\"G3588\"* labor|strong=\"G2872\"* in|strong=\"G1722\"* the|strong=\"G1722\"* word|strong=\"G3056\"* and|strong=\"G2532\"* in|strong=\"G1722\"* teaching|strong=\"G1319\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* the|strong=\"G2532\"* Scripture|strong=\"G1124\"* says|strong=\"G3004\"*, “You|strong=\"G3004\"* shall|strong=\"G2532\"* not|strong=\"G3756\"* muzzle|strong=\"G5392\"* the|strong=\"G2532\"* ox|strong=\"G1016\"* when|strong=\"G2532\"* it|strong=\"G2532\"* treads out|strong=\"G2532\"* the|strong=\"G2532\"* grain.”+ 5:18 Deuteronomy 25:4* And|strong=\"G2532\"*, “\\+w The|strong=\"G2532\"\\+w* \\+w laborer|strong=\"G2040\"\\+w* \\+w is|strong=\"G3588\"\\+w* worthy \\+w of|strong=\"G2532\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w wages|strong=\"G3408\"\\+w*.”*+ 5:18 Luke 10:7; Leviticus 19:13*" + }, + { + "verseNum": 19, + "text": "Don’t receive|strong=\"G3858\"* an|strong=\"G2228\"* accusation|strong=\"G2724\"* against|strong=\"G2596\"* an|strong=\"G2228\"* elder|strong=\"G4245\"* except|strong=\"G1487\"* at|strong=\"G1909\"* the|strong=\"G1909\"* word of|strong=\"G1909\"* two|strong=\"G1417\"* or|strong=\"G2228\"* three|strong=\"G5140\"* witnesses|strong=\"G3144\"*." + }, + { + "verseNum": 20, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* sin, reprove|strong=\"G1651\"* in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2532\"* all|strong=\"G3956\"*, that|strong=\"G2443\"* the|strong=\"G2532\"* rest|strong=\"G3062\"* also|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G2532\"* in|strong=\"G2532\"* fear|strong=\"G5401\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"G2532\"* command you|strong=\"G4160\"* in|strong=\"G2596\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* chosen|strong=\"G1588\"* angels, that|strong=\"G2443\"* you|strong=\"G4160\"* observe|strong=\"G5442\"* these|strong=\"G3778\"* things|strong=\"G3778\"* without|strong=\"G5565\"* prejudice|strong=\"G4299\"*, doing|strong=\"G4160\"* nothing|strong=\"G3367\"* by|strong=\"G2596\"* partiality|strong=\"G4346\"*." + }, + { + "verseNum": 22, + "text": "Lay|strong=\"G2007\"* hands|strong=\"G5495\"* hastily|strong=\"G5030\"* on|strong=\"G5495\"* no|strong=\"G3367\"* one|strong=\"G3367\"*. Don’t be|strong=\"G3366\"* a|strong=\"G2007\"* participant in|strong=\"G5083\"* other|strong=\"G2841\"* people’s sins. Keep|strong=\"G5083\"* yourself|strong=\"G4572\"* pure." + }, + { + "verseNum": 23, + "text": "Be|strong=\"G2532\"* no|strong=\"G3371\"* longer|strong=\"G3371\"* a|strong=\"G2532\"* drinker of|strong=\"G1223\"* water|strong=\"G5202\"* only|strong=\"G2532\"*, but|strong=\"G2532\"* use|strong=\"G5530\"* a|strong=\"G2532\"* little|strong=\"G3641\"* wine|strong=\"G3631\"* for|strong=\"G1223\"* your|strong=\"G1223\"* stomach|strong=\"G4751\"*’s sake|strong=\"G1223\"* and|strong=\"G2532\"* your|strong=\"G1223\"* frequent|strong=\"G4437\"* infirmities." + }, + { + "verseNum": 24, + "text": "Some|strong=\"G5100\"* men|strong=\"G5100\"*’s sins are|strong=\"G1510\"* evident|strong=\"G4271\"*, preceding them|strong=\"G3588\"* to|strong=\"G1519\"* judgment|strong=\"G2920\"*, and|strong=\"G2532\"* some|strong=\"G5100\"* also|strong=\"G2532\"* follow|strong=\"G1872\"* later." + }, + { + "verseNum": 25, + "text": "In|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G5615\"* way|strong=\"G5615\"* also|strong=\"G2532\"* there|strong=\"G2532\"* are|strong=\"G3588\"* good|strong=\"G2570\"* works|strong=\"G2041\"* that|strong=\"G3588\"* are|strong=\"G3588\"* obvious|strong=\"G4271\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* that|strong=\"G3588\"* are|strong=\"G3588\"* otherwise can|strong=\"G1410\"*’t|strong=\"G3588\"* be|strong=\"G2532\"* hidden|strong=\"G2928\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Let|strong=\"G1510\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* are|strong=\"G1510\"* bondservants under|strong=\"G5259\"* the|strong=\"G2532\"* yoke|strong=\"G2218\"* count|strong=\"G2233\"* their|strong=\"G2532\"* own|strong=\"G2398\"* masters|strong=\"G1203\"* worthy of|strong=\"G5259\"* all|strong=\"G3956\"* honor|strong=\"G5092\"*, that|strong=\"G2443\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G5259\"* God|strong=\"G2316\"* and|strong=\"G2532\"* the|strong=\"G2532\"* doctrine|strong=\"G1319\"* not|strong=\"G3361\"* be|strong=\"G1510\"* blasphemed." + }, + { + "verseNum": 2, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2192\"* believing|strong=\"G4103\"* masters|strong=\"G1203\"*, let|strong=\"G1161\"* them|strong=\"G3588\"* not|strong=\"G3361\"* despise|strong=\"G2706\"* them|strong=\"G3588\"* because|strong=\"G3754\"* they|strong=\"G2532\"* are|strong=\"G1510\"* brothers, but|strong=\"G1161\"* rather|strong=\"G3123\"* let|strong=\"G1161\"* them|strong=\"G3588\"* serve|strong=\"G1398\"* them|strong=\"G3588\"*, because|strong=\"G3754\"* those|strong=\"G3588\"* who|strong=\"G3588\"* partake of|strong=\"G2532\"* the|strong=\"G2532\"* benefit|strong=\"G2108\"* are|strong=\"G1510\"* believing|strong=\"G4103\"* and|strong=\"G2532\"* beloved. Teach|strong=\"G1321\"* and|strong=\"G2532\"* exhort|strong=\"G3870\"* these|strong=\"G3778\"* things|strong=\"G3778\"*." + }, + { + "verseNum": 3, + "text": "If|strong=\"G1487\"* anyone|strong=\"G5100\"* teaches a|strong=\"G2532\"* different|strong=\"G2085\"* doctrine|strong=\"G1319\"* and|strong=\"G2532\"* doesn’t|strong=\"G3588\"* consent|strong=\"G4334\"* to|strong=\"G2532\"* sound|strong=\"G5198\"* words|strong=\"G3056\"*, the|strong=\"G2532\"* words|strong=\"G3056\"* of|strong=\"G3056\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* doctrine|strong=\"G1319\"* which|strong=\"G3588\"* is|strong=\"G3588\"* according|strong=\"G2596\"* to|strong=\"G2532\"* godliness|strong=\"G2150\"*," + }, + { + "verseNum": 4, + "text": "he|strong=\"G2532\"* is|strong=\"G3739\"* conceited|strong=\"G5187\"*, knowing|strong=\"G1987\"* nothing|strong=\"G3367\"*, but|strong=\"G2532\"* obsessed with|strong=\"G1537\"* arguments, disputes|strong=\"G3055\"*, and|strong=\"G2532\"* word battles, from|strong=\"G1537\"* which|strong=\"G3739\"* come|strong=\"G1096\"* envy|strong=\"G5355\"*, strife|strong=\"G2054\"*, insulting, evil|strong=\"G4190\"* suspicions|strong=\"G5283\"*," + }, + { + "verseNum": 5, + "text": "constant friction of|strong=\"G2532\"* people|strong=\"G1510\"* of|strong=\"G2532\"* corrupt|strong=\"G1311\"* minds|strong=\"G3563\"* and|strong=\"G2532\"* destitute of|strong=\"G2532\"* the|strong=\"G2532\"* truth, who|strong=\"G3588\"* suppose|strong=\"G3543\"* that|strong=\"G3588\"* godliness|strong=\"G2150\"* is|strong=\"G1510\"* a|strong=\"G2532\"* means|strong=\"G1510\"* of|strong=\"G2532\"* gain|strong=\"G4200\"*. Withdraw yourself from|strong=\"G2532\"* such|strong=\"G3588\"*.+ 6:5 NU omits “Withdraw yourself from such.”*" + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* godliness|strong=\"G2150\"* with|strong=\"G3326\"* contentment is|strong=\"G1510\"* great|strong=\"G3173\"* gain|strong=\"G4200\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* we|strong=\"G3754\"* brought|strong=\"G1533\"* nothing|strong=\"G3762\"* into|strong=\"G1519\"* the|strong=\"G1519\"* world|strong=\"G2889\"*, and|strong=\"G3588\"* we|strong=\"G3754\"* certainly|strong=\"G1063\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* carry|strong=\"G1627\"* anything|strong=\"G5100\"* out|strong=\"G1627\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* having|strong=\"G2192\"* food|strong=\"G1305\"* and|strong=\"G2532\"* clothing, we|strong=\"G2532\"* will|strong=\"G2532\"* be|strong=\"G2532\"* content with|strong=\"G2532\"* that|strong=\"G2532\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* determined to|strong=\"G1519\"* be|strong=\"G2532\"* rich|strong=\"G4147\"* fall|strong=\"G1706\"* into|strong=\"G1519\"* a|strong=\"G2532\"* temptation|strong=\"G3986\"*, a|strong=\"G2532\"* snare|strong=\"G3803\"*, and|strong=\"G2532\"* many|strong=\"G4183\"* foolish|strong=\"G2532\"* and|strong=\"G2532\"* harmful lusts|strong=\"G1939\"*, such|strong=\"G1161\"* as|strong=\"G1519\"* drown|strong=\"G1036\"* men|strong=\"G3588\"* in|strong=\"G1519\"* ruin|strong=\"G3639\"* and|strong=\"G2532\"* destruction|strong=\"G3639\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* the|strong=\"G2532\"* love|strong=\"G5365\"* of|strong=\"G2532\"* money|strong=\"G5365\"* is|strong=\"G1510\"* a|strong=\"G2532\"* root|strong=\"G4491\"* of|strong=\"G2532\"* all|strong=\"G3956\"* kinds|strong=\"G3956\"* of|strong=\"G2532\"* evil|strong=\"G2556\"*. Some|strong=\"G5100\"* have|strong=\"G2532\"* been|strong=\"G1510\"* led astray from|strong=\"G2532\"* the|strong=\"G2532\"* faith|strong=\"G4102\"* in|strong=\"G2532\"* their|strong=\"G1438\"* greed, and|strong=\"G2532\"* have|strong=\"G2532\"* pierced|strong=\"G4044\"* themselves|strong=\"G1438\"* through|strong=\"G4044\"* with|strong=\"G2532\"* many|strong=\"G4183\"* sorrows|strong=\"G3601\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* you|strong=\"G4771\"*, man|strong=\"G3778\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, flee|strong=\"G5343\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, and|strong=\"G1161\"* follow|strong=\"G1377\"* after|strong=\"G1161\"* righteousness|strong=\"G1343\"*, godliness|strong=\"G2150\"*, faith|strong=\"G4102\"*, love, perseverance|strong=\"G5281\"*, and|strong=\"G1161\"* gentleness|strong=\"G4240\"*." + }, + { + "verseNum": 12, + "text": "Fight the|strong=\"G2532\"* good|strong=\"G2570\"* fight of|strong=\"G2532\"* faith|strong=\"G4102\"*. Take|strong=\"G1949\"* hold|strong=\"G1949\"* of|strong=\"G2532\"* the|strong=\"G2532\"* eternal life|strong=\"G2222\"* to|strong=\"G1519\"* which|strong=\"G3739\"* you|strong=\"G3739\"* were|strong=\"G3588\"* called|strong=\"G2564\"*, and|strong=\"G2532\"* you|strong=\"G3739\"* confessed|strong=\"G3670\"* the|strong=\"G2532\"* good|strong=\"G2570\"* confession|strong=\"G3671\"* in|strong=\"G1519\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2532\"* many|strong=\"G4183\"* witnesses|strong=\"G3144\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"G2532\"* command|strong=\"G3853\"* you|strong=\"G4771\"* before|strong=\"G1799\"* God|strong=\"G2316\"* who|strong=\"G3588\"* gives|strong=\"G2225\"* life|strong=\"G2225\"* to|strong=\"G2532\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G2532\"* before|strong=\"G1799\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* who|strong=\"G3588\"* before|strong=\"G1799\"* Pontius|strong=\"G4194\"* Pilate|strong=\"G4091\"* testified|strong=\"G3140\"* the|strong=\"G2532\"* good|strong=\"G2570\"* confession|strong=\"G3671\"*," + }, + { + "verseNum": 14, + "text": "that|strong=\"G3588\"* you|strong=\"G4771\"* keep|strong=\"G5083\"* the|strong=\"G3588\"* commandment|strong=\"G1785\"* without|strong=\"G3588\"* spot, blameless until|strong=\"G3360\"* the|strong=\"G3588\"* appearing|strong=\"G2015\"* of|strong=\"G2962\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 15, + "text": "which|strong=\"G3739\"* at|strong=\"G3588\"* the|strong=\"G2532\"* right|strong=\"G2540\"* time|strong=\"G2540\"* he|strong=\"G2532\"* will|strong=\"G2532\"* show|strong=\"G1166\"*, who|strong=\"G3739\"* is|strong=\"G3588\"* the|strong=\"G2532\"* blessed|strong=\"G3107\"* and|strong=\"G2532\"* only|strong=\"G3441\"* Ruler, the|strong=\"G2532\"* King|strong=\"G3588\"* of|strong=\"G2532\"* kings|strong=\"G3588\"* and|strong=\"G2532\"* Lord|strong=\"G2962\"* of|strong=\"G2532\"* lords|strong=\"G2962\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* alone|strong=\"G3441\"* has|strong=\"G2192\"* immortality, dwelling in|strong=\"G2532\"* unapproachable light|strong=\"G5457\"*, whom|strong=\"G3739\"* no|strong=\"G3762\"* man|strong=\"G3762\"* has|strong=\"G2192\"* seen|strong=\"G3708\"* nor|strong=\"G3761\"* can|strong=\"G1410\"* see|strong=\"G3708\"*, to|strong=\"G2532\"* whom|strong=\"G3739\"* be|strong=\"G2532\"* honor|strong=\"G5092\"* and|strong=\"G2532\"* eternal power|strong=\"G2904\"*. Amen." + }, + { + "verseNum": 17, + "text": "Charge|strong=\"G3853\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* rich|strong=\"G4145\"* in|strong=\"G1722\"* this|strong=\"G3588\"* present|strong=\"G3568\"* age that|strong=\"G3588\"* they|strong=\"G3588\"* not|strong=\"G3361\"* be|strong=\"G3361\"* arrogant, nor|strong=\"G3366\"* have|strong=\"G1473\"* their|strong=\"G1722\"* hope|strong=\"G1679\"* set|strong=\"G5426\"* on|strong=\"G1909\"* the|strong=\"G1722\"* uncertainty of|strong=\"G2316\"* riches|strong=\"G4149\"*, but|strong=\"G3361\"* on|strong=\"G1909\"* the|strong=\"G1722\"* living God|strong=\"G2316\"*, who|strong=\"G3588\"* richly|strong=\"G4146\"* provides|strong=\"G3930\"* us|strong=\"G1519\"* with|strong=\"G1722\"* everything|strong=\"G3956\"* to|strong=\"G1519\"* enjoy;" + }, + { + "verseNum": 18, + "text": "that|strong=\"G1722\"* they|strong=\"G1510\"* do|strong=\"G1510\"* good|strong=\"G2570\"*, that|strong=\"G1722\"* they|strong=\"G1510\"* be|strong=\"G1510\"* rich|strong=\"G4147\"* in|strong=\"G1722\"* good|strong=\"G2570\"* works|strong=\"G2041\"*, that|strong=\"G1722\"* they|strong=\"G1510\"* be|strong=\"G1510\"* ready|strong=\"G2843\"* to|strong=\"G1722\"* distribute|strong=\"G2130\"*, willing to|strong=\"G1722\"* share|strong=\"G2843\"*;" + }, + { + "verseNum": 19, + "text": "laying up|strong=\"G1519\"* in|strong=\"G1519\"* store for|strong=\"G1519\"* themselves|strong=\"G1438\"* a|strong=\"G1519\"* good|strong=\"G2570\"* foundation|strong=\"G2310\"* against|strong=\"G1519\"* the|strong=\"G1519\"* time to|strong=\"G1519\"* come|strong=\"G3195\"*, that|strong=\"G2443\"* they|strong=\"G3588\"* may|strong=\"G2443\"* lay hold|strong=\"G1949\"* of|strong=\"G3588\"* eternal life|strong=\"G2222\"*." + }, + { + "verseNum": 20, + "text": "Timothy|strong=\"G5095\"*, guard|strong=\"G5442\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* committed|strong=\"G3866\"* to|strong=\"G2532\"* you|strong=\"G2532\"*, turning away from|strong=\"G2532\"* the|strong=\"G2532\"* empty|strong=\"G2757\"* chatter|strong=\"G2757\"* and|strong=\"G2532\"* oppositions of|strong=\"G2532\"* what|strong=\"G3588\"* is|strong=\"G3588\"* falsely|strong=\"G5581\"* called|strong=\"G5581\"* knowledge|strong=\"G1108\"*," + }, + { + "verseNum": 21, + "text": "which|strong=\"G3739\"* some|strong=\"G5100\"* profess, and|strong=\"G4102\"* thus have|strong=\"G5210\"* wandered from|strong=\"G3588\"* the|strong=\"G3588\"* faith|strong=\"G4102\"*." + } + ] + } + ] + }, + { + "name": "2 Timothy", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, an|strong=\"G1722\"* apostle of|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*+ 1:1 “Christ” means “Anointed One”.* through|strong=\"G1223\"* the|strong=\"G1722\"* will|strong=\"G2307\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* promise|strong=\"G1860\"* of|strong=\"G1223\"* the|strong=\"G1722\"* life|strong=\"G2222\"* which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 2, + "text": "to|strong=\"G2532\"* Timothy|strong=\"G5095\"*, my|strong=\"G1473\"* beloved child|strong=\"G5043\"*: Grace|strong=\"G5485\"*, mercy|strong=\"G1656\"*, and|strong=\"G2532\"* peace|strong=\"G1515\"*, from|strong=\"G1515\"* God|strong=\"G2316\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"G1473\"* thank|strong=\"G5485\"* God|strong=\"G2316\"*, whom|strong=\"G3739\"* I|strong=\"G1473\"* serve|strong=\"G3000\"* as|strong=\"G5613\"* my|strong=\"G1722\"* forefathers|strong=\"G4269\"* did|strong=\"G2532\"*, with|strong=\"G1722\"* a|strong=\"G2192\"* pure|strong=\"G2513\"* conscience|strong=\"G4893\"*. How|strong=\"G5613\"* unceasing is|strong=\"G3588\"* my|strong=\"G1722\"* memory of|strong=\"G4012\"* you|strong=\"G4771\"* in|strong=\"G1722\"* my|strong=\"G1722\"* petitions, night|strong=\"G3571\"* and|strong=\"G2532\"* day|strong=\"G2250\"*" + }, + { + "verseNum": 4, + "text": "longing|strong=\"G1971\"* to|strong=\"G2443\"* see|strong=\"G3708\"* you|strong=\"G4771\"*, remembering your|strong=\"G3708\"* tears|strong=\"G1144\"*, that|strong=\"G2443\"* I|strong=\"G2443\"* may|strong=\"G2443\"* be|strong=\"G2443\"* filled|strong=\"G4137\"* with|strong=\"G4137\"* joy|strong=\"G5479\"*;" + }, + { + "verseNum": 5, + "text": "having|strong=\"G2532\"* been|strong=\"G2532\"* reminded of|strong=\"G2532\"* the|strong=\"G1722\"* sincere faith|strong=\"G4102\"* that|strong=\"G3754\"* is|strong=\"G3588\"* in|strong=\"G1722\"* you|strong=\"G4771\"*, which|strong=\"G3588\"* lived|strong=\"G2532\"* first|strong=\"G4413\"* in|strong=\"G1722\"* your|strong=\"G2532\"* grandmother|strong=\"G3125\"* Lois|strong=\"G3090\"* and|strong=\"G2532\"* your|strong=\"G2532\"* mother|strong=\"G3384\"* Eunice|strong=\"G2131\"* and|strong=\"G2532\"*, I|strong=\"G2532\"* am|strong=\"G2532\"* persuaded|strong=\"G3982\"*, in|strong=\"G1722\"* you|strong=\"G4771\"* also|strong=\"G2532\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1223\"* this|strong=\"G3588\"* cause|strong=\"G1223\"*, I|strong=\"G1473\"* remind you|strong=\"G4771\"* that|strong=\"G3739\"* you|strong=\"G4771\"* should|strong=\"G2316\"* stir up|strong=\"G1722\"* the|strong=\"G1722\"* gift|strong=\"G5486\"* of|strong=\"G1223\"* God|strong=\"G2316\"* which|strong=\"G3739\"* is|strong=\"G1510\"* in|strong=\"G1722\"* you|strong=\"G4771\"* through|strong=\"G1223\"* the|strong=\"G1722\"* laying|strong=\"G1936\"* on|strong=\"G1722\"* of|strong=\"G1223\"* my|strong=\"G1722\"* hands|strong=\"G5495\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* God|strong=\"G2316\"* didn’t|strong=\"G3588\"* give|strong=\"G1325\"* us|strong=\"G1325\"* a|strong=\"G2532\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* fear|strong=\"G1167\"*, but|strong=\"G2532\"* of|strong=\"G4151\"* power|strong=\"G1411\"*, love, and|strong=\"G2532\"* self-control|strong=\"G4995\"*." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G3767\"* don’t|strong=\"G3588\"* be|strong=\"G3361\"* ashamed|strong=\"G1870\"* of|strong=\"G2316\"* the|strong=\"G2596\"* testimony|strong=\"G3142\"* of|strong=\"G2316\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"*, nor|strong=\"G3366\"* of|strong=\"G2316\"* me|strong=\"G1473\"* his|strong=\"G2596\"* prisoner|strong=\"G1198\"*; but|strong=\"G3361\"* endure|strong=\"G3767\"* hardship|strong=\"G4777\"* for|strong=\"G2316\"* the|strong=\"G2596\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G2596\"* power|strong=\"G1411\"* of|strong=\"G2316\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 9, + "text": "who|strong=\"G3588\"* saved|strong=\"G4982\"* us|strong=\"G1325\"* and|strong=\"G2532\"* called|strong=\"G2564\"* us|strong=\"G1325\"* with|strong=\"G1722\"* a|strong=\"G2532\"* holy calling|strong=\"G2821\"*, not|strong=\"G3756\"* according|strong=\"G2596\"* to|strong=\"G2532\"* our|strong=\"G2424\"* works|strong=\"G2041\"*, but|strong=\"G2532\"* according|strong=\"G2596\"* to|strong=\"G2532\"* his|strong=\"G1722\"* own|strong=\"G2398\"* purpose|strong=\"G4286\"* and|strong=\"G2532\"* grace|strong=\"G5485\"*, which|strong=\"G3588\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2532\"* us|strong=\"G1325\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* before|strong=\"G4253\"* times|strong=\"G5550\"* eternal," + }, + { + "verseNum": 10, + "text": "but|strong=\"G1161\"* has|strong=\"G5547\"* now|strong=\"G1161\"* been|strong=\"G2532\"* revealed|strong=\"G5319\"* by|strong=\"G1223\"* the|strong=\"G2532\"* appearing|strong=\"G2015\"* of|strong=\"G1223\"* our|strong=\"G2424\"* Savior|strong=\"G4990\"*, Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, who|strong=\"G3588\"* abolished|strong=\"G2673\"* death|strong=\"G2288\"*, and|strong=\"G2532\"* brought|strong=\"G5461\"* life|strong=\"G2222\"* and|strong=\"G2532\"* immortality to|strong=\"G2532\"* light|strong=\"G5461\"* through|strong=\"G1223\"* the|strong=\"G2532\"* Good|strong=\"G1223\"* News|strong=\"G2098\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1519\"* this|strong=\"G3739\"* I|strong=\"G1473\"* was|strong=\"G3739\"* appointed|strong=\"G5087\"* as|strong=\"G1519\"* a|strong=\"G2532\"* preacher|strong=\"G2783\"*, an|strong=\"G2532\"* apostle, and|strong=\"G2532\"* a|strong=\"G2532\"* teacher|strong=\"G1320\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Gentiles." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* I|strong=\"G1473\"* also|strong=\"G2532\"* suffer|strong=\"G3958\"* these|strong=\"G3778\"* things|strong=\"G3778\"*." + }, + { + "verseNum": 13, + "text": "Hold|strong=\"G2192\"* the|strong=\"G1722\"* pattern|strong=\"G5296\"* of|strong=\"G3056\"* sound|strong=\"G5198\"* words|strong=\"G3056\"* which|strong=\"G3739\"* you|strong=\"G3739\"* have|strong=\"G2192\"* heard from|strong=\"G3844\"* me|strong=\"G1473\"*, in|strong=\"G1722\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* love which|strong=\"G3739\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 14, + "text": "That|strong=\"G3588\"* good|strong=\"G2570\"* thing|strong=\"G2570\"* which|strong=\"G3588\"* was|strong=\"G3588\"* committed|strong=\"G3866\"* to|strong=\"G1722\"* you|strong=\"G1722\"*, guard|strong=\"G5442\"* through|strong=\"G1223\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* who|strong=\"G3588\"* dwells|strong=\"G1774\"* in|strong=\"G1722\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 15, + "text": "This|strong=\"G3778\"* you|strong=\"G3739\"* know|strong=\"G1492\"*, that|strong=\"G3754\"* all|strong=\"G3956\"* who|strong=\"G3739\"* are|strong=\"G1510\"* in|strong=\"G1722\"* Asia|strong=\"G3588\"* turned away from|strong=\"G2532\"* me|strong=\"G1473\"*, of|strong=\"G2532\"* whom|strong=\"G3739\"* are|strong=\"G1510\"* Phygelus|strong=\"G5436\"* and|strong=\"G2532\"* Hermogenes|strong=\"G2061\"*." + }, + { + "verseNum": 16, + "text": "May|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* grant|strong=\"G1325\"* mercy|strong=\"G1656\"* to|strong=\"G2532\"* the|strong=\"G2532\"* house|strong=\"G3624\"* of|strong=\"G2532\"* Onesiphorus|strong=\"G3683\"*, for|strong=\"G3754\"* he|strong=\"G2532\"* often|strong=\"G4178\"* refreshed me|strong=\"G1325\"*, and|strong=\"G2532\"* was|strong=\"G3588\"* not|strong=\"G3756\"* ashamed|strong=\"G1870\"* of|strong=\"G2532\"* my|strong=\"G1325\"* chain," + }, + { + "verseNum": 17, + "text": "but|strong=\"G2532\"* when|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G1096\"* in|strong=\"G1722\"* Rome|strong=\"G4516\"*, he|strong=\"G2532\"* sought|strong=\"G2212\"* me|strong=\"G1473\"* diligently|strong=\"G4709\"* and|strong=\"G2532\"* found|strong=\"G2147\"* me|strong=\"G1473\"*" + }, + { + "verseNum": 18, + "text": "(the|strong=\"G1722\"* Lord|strong=\"G2962\"* grant|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G2532\"* find|strong=\"G2147\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* mercy|strong=\"G1656\"* in|strong=\"G1722\"* that|strong=\"G3588\"* day|strong=\"G2250\"*); and|strong=\"G2532\"* in|strong=\"G1722\"* how|strong=\"G3745\"* many|strong=\"G3745\"* things|strong=\"G3588\"* he|strong=\"G2532\"* served|strong=\"G1247\"* at|strong=\"G1722\"* Ephesus|strong=\"G2181\"*, you|strong=\"G4771\"* know|strong=\"G1097\"* very|strong=\"G2532\"* well|strong=\"G2532\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "You|strong=\"G4771\"* therefore|strong=\"G3767\"*, my|strong=\"G1722\"* child|strong=\"G5043\"*, be|strong=\"G3588\"* strengthened|strong=\"G1743\"* in|strong=\"G1722\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* that|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"G2532\"* things|strong=\"G3778\"* which|strong=\"G3739\"* you|strong=\"G3739\"* have|strong=\"G2532\"* heard from|strong=\"G3844\"* me|strong=\"G1473\"* among|strong=\"G3844\"* many|strong=\"G4183\"* witnesses|strong=\"G3144\"*, commit|strong=\"G3908\"* the|strong=\"G2532\"* same|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G2532\"* faithful|strong=\"G4103\"* men|strong=\"G3778\"* who|strong=\"G3739\"* will|strong=\"G1510\"* be|strong=\"G1510\"* able|strong=\"G2425\"* to|strong=\"G2532\"* teach|strong=\"G1321\"* others|strong=\"G2087\"* also|strong=\"G2532\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"G5613\"* therefore must|strong=\"G5547\"* endure hardship|strong=\"G4777\"* as|strong=\"G5613\"* a|strong=\"G5613\"* good|strong=\"G2570\"* soldier|strong=\"G4757\"* of|strong=\"G2424\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 4, + "text": "No|strong=\"G3762\"* soldier|strong=\"G4754\"* on|strong=\"G2443\"* duty entangles|strong=\"G1707\"* himself|strong=\"G1707\"* in|strong=\"G3588\"* the|strong=\"G3588\"* affairs|strong=\"G4230\"* of|strong=\"G3588\"* life|strong=\"G3762\"*, that|strong=\"G2443\"* he|strong=\"G3588\"* may|strong=\"G2443\"* please him|strong=\"G3588\"* who|strong=\"G3588\"* enrolled him|strong=\"G3588\"* as|strong=\"G2443\"* a|strong=\"G2443\"* soldier|strong=\"G4754\"*." + }, + { + "verseNum": 5, + "text": "Also|strong=\"G2532\"*, if|strong=\"G1437\"* anyone|strong=\"G5100\"* competes in|strong=\"G2532\"* athletics, he|strong=\"G2532\"* isn’t crowned|strong=\"G4737\"* unless|strong=\"G1437\"* he|strong=\"G2532\"* has|strong=\"G5100\"* competed by|strong=\"G2532\"* the|strong=\"G2532\"* rules|strong=\"G3545\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"G3588\"* farmer|strong=\"G1092\"* who|strong=\"G3588\"* labors|strong=\"G2872\"* must|strong=\"G1163\"* be|strong=\"G1163\"* the|strong=\"G3588\"* first|strong=\"G4413\"* to|strong=\"G1163\"* get a|strong=\"G2590\"* share|strong=\"G3335\"* of|strong=\"G3588\"* the|strong=\"G3588\"* crops|strong=\"G2590\"*." + }, + { + "verseNum": 7, + "text": "Consider|strong=\"G3539\"* what|strong=\"G3739\"* I|strong=\"G3739\"* say|strong=\"G3004\"*, and|strong=\"G2962\"* may|strong=\"G3956\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* give|strong=\"G1325\"* you|strong=\"G4771\"* understanding|strong=\"G4907\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 8, + "text": "Remember|strong=\"G3421\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, risen|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G1537\"* dead|strong=\"G3498\"*, of|strong=\"G1537\"* the|strong=\"G1537\"* offspring+ 2:8 or, seed* of|strong=\"G1537\"* David|strong=\"G1138\"*, according|strong=\"G2596\"* to|strong=\"G2596\"* my|strong=\"G1473\"* Good|strong=\"G3588\"* News|strong=\"G2098\"*," + }, + { + "verseNum": 9, + "text": "in|strong=\"G1722\"* which|strong=\"G3739\"* I|strong=\"G3739\"* suffer|strong=\"G2553\"* hardship|strong=\"G2553\"* to|strong=\"G1722\"* the|strong=\"G1722\"* point|strong=\"G3360\"* of|strong=\"G3056\"* chains|strong=\"G1199\"* as|strong=\"G5613\"* a|strong=\"G5613\"* criminal|strong=\"G2557\"*. But|strong=\"G2316\"* God|strong=\"G2316\"*’s word|strong=\"G3056\"* isn’t|strong=\"G3588\"* chained." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"G1223\"* I|strong=\"G2532\"* endure|strong=\"G5278\"* all|strong=\"G3956\"* things|strong=\"G3956\"* for|strong=\"G1223\"* the|strong=\"G1722\"* chosen|strong=\"G1588\"* ones’ sake|strong=\"G1223\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* also|strong=\"G2532\"* may|strong=\"G2532\"* obtain|strong=\"G5177\"* the|strong=\"G1722\"* salvation|strong=\"G4991\"* which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* with|strong=\"G3326\"* eternal glory|strong=\"G1391\"*." + }, + { + "verseNum": 11, + "text": "This|strong=\"G3588\"* saying|strong=\"G3056\"* is|strong=\"G3588\"* trustworthy|strong=\"G4103\"*:" + }, + { + "verseNum": 12, + "text": "If|strong=\"G1487\"* we|strong=\"G2249\"* endure|strong=\"G5278\"*," + }, + { + "verseNum": 13, + "text": "If|strong=\"G1487\"* we|strong=\"G1063\"* are|strong=\"G3306\"* faithless," + }, + { + "verseNum": 14, + "text": "Remind|strong=\"G5279\"* them|strong=\"G3588\"* of|strong=\"G2316\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, charging|strong=\"G1263\"* them|strong=\"G3588\"* in|strong=\"G1909\"* the|strong=\"G1909\"* sight|strong=\"G1799\"* of|strong=\"G2316\"* the|strong=\"G1909\"* Lord|strong=\"G2962\"* that|strong=\"G3588\"* they|strong=\"G3588\"* don’t|strong=\"G3588\"* argue about|strong=\"G1909\"* words|strong=\"G3054\"* to|strong=\"G1909\"* no|strong=\"G3762\"* profit|strong=\"G5539\"*, to|strong=\"G1909\"* the|strong=\"G1909\"* subverting|strong=\"G2692\"* of|strong=\"G2316\"* those|strong=\"G3588\"* who|strong=\"G3588\"* hear." + }, + { + "verseNum": 15, + "text": "Give diligence|strong=\"G4704\"* to|strong=\"G4704\"* present|strong=\"G3936\"* yourself|strong=\"G4572\"* approved|strong=\"G1384\"* by|strong=\"G3936\"* God|strong=\"G2316\"*, a|strong=\"G3056\"* workman|strong=\"G2040\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* need to|strong=\"G4704\"* be|strong=\"G2316\"* ashamed, properly handling|strong=\"G3718\"* the|strong=\"G3588\"* Word|strong=\"G3056\"* of|strong=\"G3056\"* Truth." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* shun|strong=\"G4026\"* empty|strong=\"G2757\"* chatter|strong=\"G2757\"*, for|strong=\"G1063\"* it|strong=\"G1161\"* will|strong=\"G4183\"* go|strong=\"G4298\"* further|strong=\"G4119\"* in|strong=\"G1909\"* ungodliness," + }, + { + "verseNum": 17, + "text": "and|strong=\"G2532\"* those|strong=\"G3588\"* words|strong=\"G3056\"* will|strong=\"G1510\"* consume like|strong=\"G5613\"* gangrene|strong=\"G1044\"*, of|strong=\"G3056\"* whom|strong=\"G3739\"* is|strong=\"G1510\"* Hymenaeus|strong=\"G5211\"* and|strong=\"G2532\"* Philetus|strong=\"G5372\"*:" + }, + { + "verseNum": 18, + "text": "men|strong=\"G5100\"* who|strong=\"G3588\"* have|strong=\"G2532\"* erred concerning|strong=\"G4012\"* the|strong=\"G2532\"* truth, saying|strong=\"G3004\"* that|strong=\"G3588\"* the|strong=\"G2532\"* resurrection is|strong=\"G3588\"* already|strong=\"G2235\"* past|strong=\"G1096\"*, and|strong=\"G2532\"* overthrowing the|strong=\"G2532\"* faith|strong=\"G4102\"* of|strong=\"G4012\"* some|strong=\"G5100\"*." + }, + { + "verseNum": 19, + "text": "However|strong=\"G3305\"*, God|strong=\"G2316\"*’s|strong=\"G2962\"* firm|strong=\"G2476\"* foundation|strong=\"G2310\"* stands|strong=\"G2476\"*, having|strong=\"G2192\"* this|strong=\"G3778\"* seal|strong=\"G4973\"*: “The|strong=\"G2532\"* Lord|strong=\"G2962\"* knows|strong=\"G1097\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* his|strong=\"G3956\"*,”+ 2:19 Numbers 16:5* and|strong=\"G2532\"*, “Let|strong=\"G1097\"* every|strong=\"G3956\"* one|strong=\"G3956\"* who|strong=\"G3588\"* names|strong=\"G3686\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G2316\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*+ 2:19 TR reads “Christ” instead of “the Lord”* depart from|strong=\"G2532\"* unrighteousness.”" + }, + { + "verseNum": 20, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* a|strong=\"G2532\"* large|strong=\"G3173\"* house|strong=\"G3614\"* there|strong=\"G2532\"* are|strong=\"G1510\"* not|strong=\"G3756\"* only|strong=\"G3440\"* vessels|strong=\"G4632\"* of|strong=\"G2532\"* gold|strong=\"G5552\"* and|strong=\"G2532\"* of|strong=\"G2532\"* silver, but|strong=\"G1161\"* also|strong=\"G2532\"* of|strong=\"G2532\"* wood|strong=\"G3585\"* and|strong=\"G2532\"* of|strong=\"G2532\"* clay|strong=\"G3749\"*. Some|strong=\"G3739\"* are|strong=\"G1510\"* for|strong=\"G1519\"* honor|strong=\"G5092\"* and|strong=\"G2532\"* some|strong=\"G3739\"* for|strong=\"G1519\"* dishonor." + }, + { + "verseNum": 21, + "text": "If|strong=\"G1437\"* anyone|strong=\"G5100\"* therefore|strong=\"G3767\"* purges himself|strong=\"G1438\"* from|strong=\"G3588\"* these|strong=\"G3778\"*, he|strong=\"G3778\"* will|strong=\"G1510\"* be|strong=\"G1510\"* a|strong=\"G1519\"* vessel|strong=\"G4632\"* for|strong=\"G1519\"* honor|strong=\"G5092\"*, sanctified|strong=\"G3956\"*, and|strong=\"G5092\"* suitable|strong=\"G3588\"* for|strong=\"G1519\"* the|strong=\"G1519\"* master|strong=\"G1203\"*’s use|strong=\"G2173\"*, prepared|strong=\"G2090\"* for|strong=\"G1519\"* every|strong=\"G3956\"* good|strong=\"G3956\"* work|strong=\"G2041\"*." + }, + { + "verseNum": 22, + "text": "Flee|strong=\"G5343\"* from|strong=\"G1537\"* youthful|strong=\"G3512\"* lusts|strong=\"G1939\"*; but|strong=\"G1161\"* pursue|strong=\"G1377\"* righteousness|strong=\"G1343\"*, faith|strong=\"G4102\"*, love, and|strong=\"G1161\"* peace|strong=\"G1515\"* with|strong=\"G3326\"* those|strong=\"G3588\"* who|strong=\"G3588\"* call|strong=\"G1941\"* on|strong=\"G1537\"* the|strong=\"G1537\"* Lord|strong=\"G2962\"* out|strong=\"G1537\"* of|strong=\"G1537\"* a|strong=\"G1161\"* pure|strong=\"G2513\"* heart|strong=\"G2588\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* refuse|strong=\"G3868\"* foolish|strong=\"G3474\"* and|strong=\"G2532\"* ignorant questionings, knowing|strong=\"G1492\"* that|strong=\"G3754\"* they|strong=\"G2532\"* generate strife." + }, + { + "verseNum": 24, + "text": "The|strong=\"G3956\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* servant|strong=\"G1401\"* must|strong=\"G1163\"* not|strong=\"G3756\"* quarrel, but|strong=\"G1161\"* be|strong=\"G1510\"* gentle|strong=\"G2261\"* toward|strong=\"G4314\"* all|strong=\"G3956\"*, able|strong=\"G1317\"* to|strong=\"G4314\"* teach|strong=\"G1317\"*, patient," + }, + { + "verseNum": 25, + "text": "in|strong=\"G1722\"* gentleness|strong=\"G4240\"* correcting|strong=\"G3811\"* those|strong=\"G3588\"* who|strong=\"G3588\"* oppose him|strong=\"G3588\"*. Perhaps|strong=\"G3379\"* God|strong=\"G2316\"* may|strong=\"G2316\"* give|strong=\"G1325\"* them|strong=\"G3588\"* repentance|strong=\"G3341\"* leading|strong=\"G1519\"* to|strong=\"G1519\"* a|strong=\"G1519\"* full|strong=\"G1722\"* knowledge|strong=\"G1922\"* of|strong=\"G2316\"* the|strong=\"G1722\"* truth," + }, + { + "verseNum": 26, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* may|strong=\"G2532\"* recover themselves|strong=\"G1519\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* devil|strong=\"G1228\"*’s snare|strong=\"G3803\"*, having|strong=\"G2532\"* been|strong=\"G2532\"* taken captive|strong=\"G2221\"* by|strong=\"G5259\"* him|strong=\"G3588\"* to|strong=\"G1519\"* do|strong=\"G2532\"* his|strong=\"G1519\"* will|strong=\"G2307\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"G1161\"* know|strong=\"G1097\"* this|strong=\"G3778\"*: that|strong=\"G3754\"* in|strong=\"G1722\"* the|strong=\"G1722\"* last|strong=\"G2078\"* days|strong=\"G2250\"*, grievous times|strong=\"G2540\"* will|strong=\"G3778\"* come|strong=\"G1764\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* men|strong=\"G3588\"* will|strong=\"G1510\"* be|strong=\"G1510\"* lovers|strong=\"G5366\"* of|strong=\"G3588\"* self|strong=\"G5367\"*, lovers|strong=\"G5366\"* of|strong=\"G3588\"* money|strong=\"G5366\"*, boastful, arrogant|strong=\"G5244\"*, blasphemers, disobedient to|strong=\"G1510\"* parents|strong=\"G1118\"*, unthankful, unholy," + }, + { + "verseNum": 3, + "text": "without natural affection, unforgiving, slanderers|strong=\"G1228\"*, without self-control, fierce, not lovers of|strong=\"G1228\"* good," + }, + { + "verseNum": 4, + "text": "traitors|strong=\"G4273\"*, headstrong, conceited|strong=\"G5187\"*, lovers|strong=\"G5377\"* of|strong=\"G2228\"* pleasure|strong=\"G5369\"* rather|strong=\"G3123\"* than|strong=\"G2228\"* lovers|strong=\"G5377\"* of|strong=\"G2228\"* God|strong=\"G5377\"*," + }, + { + "verseNum": 5, + "text": "holding|strong=\"G2192\"* a|strong=\"G2192\"* form|strong=\"G3446\"* of|strong=\"G2532\"* godliness|strong=\"G2150\"* but|strong=\"G1161\"* having|strong=\"G2192\"* denied its power|strong=\"G1411\"*. Turn away from|strong=\"G2532\"* these|strong=\"G3778\"*, also|strong=\"G2532\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1063\"* some|strong=\"G3588\"* of|strong=\"G1537\"* these|strong=\"G3778\"* are|strong=\"G1510\"* people|strong=\"G1510\"* who|strong=\"G3588\"* creep|strong=\"G1744\"* into|strong=\"G1519\"* houses|strong=\"G3614\"* and|strong=\"G2532\"* take|strong=\"G2532\"* captive gullible women|strong=\"G1133\"* loaded down|strong=\"G1537\"* with|strong=\"G1537\"* sins, led away by|strong=\"G1537\"* various|strong=\"G4164\"* lusts|strong=\"G1939\"*," + }, + { + "verseNum": 7, + "text": "always|strong=\"G3842\"* learning|strong=\"G3129\"* and|strong=\"G2532\"* never|strong=\"G3368\"* able|strong=\"G1410\"* to|strong=\"G1519\"* come|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* knowledge|strong=\"G1922\"* of|strong=\"G2532\"* the|strong=\"G2532\"* truth." + }, + { + "verseNum": 8, + "text": "Even|strong=\"G2532\"* as|strong=\"G1161\"* Jannes|strong=\"G2389\"* and|strong=\"G2532\"* Jambres|strong=\"G2387\"* opposed Moses|strong=\"G3475\"*, so|strong=\"G3779\"* these|strong=\"G3778\"* also|strong=\"G2532\"* oppose the|strong=\"G2532\"* truth, men|strong=\"G3778\"* corrupted in|strong=\"G2532\"* mind|strong=\"G3563\"*, who|strong=\"G3739\"* concerning|strong=\"G4012\"* the|strong=\"G2532\"* faith|strong=\"G4102\"* are|strong=\"G3588\"* rejected." + }, + { + "verseNum": 9, + "text": "But|strong=\"G2532\"* they|strong=\"G2532\"* will|strong=\"G1510\"* proceed|strong=\"G4298\"* no|strong=\"G3756\"* further|strong=\"G4119\"*. For|strong=\"G1063\"* their|strong=\"G2532\"* folly will|strong=\"G1510\"* be|strong=\"G1096\"* evident to|strong=\"G2532\"* all|strong=\"G3956\"* men|strong=\"G3956\"*, as|strong=\"G5613\"* theirs|strong=\"G1565\"* also|strong=\"G2532\"* came|strong=\"G1096\"* to|strong=\"G2532\"* be|strong=\"G1096\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* you|strong=\"G4771\"* followed|strong=\"G3877\"* my|strong=\"G1473\"* teaching|strong=\"G1319\"*, conduct, purpose|strong=\"G4286\"*, faith|strong=\"G4102\"*, patience|strong=\"G5281\"*, love, steadfastness|strong=\"G5281\"*," + }, + { + "verseNum": 11, + "text": "persecutions|strong=\"G1375\"*, and|strong=\"G2532\"* sufferings|strong=\"G3804\"*—those|strong=\"G3588\"* things|strong=\"G3956\"* that|strong=\"G3588\"* happened|strong=\"G1096\"* to|strong=\"G2532\"* me|strong=\"G1473\"* at|strong=\"G1722\"* Antioch, Iconium|strong=\"G2430\"*, and|strong=\"G2532\"* Lystra|strong=\"G3082\"*. I|strong=\"G1473\"* endured|strong=\"G5297\"* those|strong=\"G3588\"* persecutions|strong=\"G1375\"*. The|strong=\"G1722\"* Lord|strong=\"G2962\"* delivered|strong=\"G4506\"* me|strong=\"G1473\"* out|strong=\"G1537\"* of|strong=\"G1537\"* them|strong=\"G3588\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 12, + "text": "Yes|strong=\"G1161\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* who|strong=\"G3588\"* desire|strong=\"G2309\"* to|strong=\"G2532\"* live|strong=\"G2198\"* godly|strong=\"G2153\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* will|strong=\"G2309\"* suffer|strong=\"G2532\"* persecution|strong=\"G1377\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* evil|strong=\"G4190\"* men|strong=\"G3588\"* and|strong=\"G2532\"* impostors|strong=\"G1114\"* will|strong=\"G2532\"* grow worse|strong=\"G5501\"* and|strong=\"G2532\"* worse|strong=\"G5501\"*, deceiving|strong=\"G4105\"* and|strong=\"G2532\"* being|strong=\"G2532\"* deceived|strong=\"G4105\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* you|strong=\"G4771\"* remain|strong=\"G3306\"* in|strong=\"G1722\"* the|strong=\"G1722\"* things|strong=\"G3739\"* which|strong=\"G3739\"* you|strong=\"G4771\"* have|strong=\"G2532\"* learned|strong=\"G3129\"* and|strong=\"G2532\"* have|strong=\"G2532\"* been|strong=\"G2532\"* assured of|strong=\"G2532\"*, knowing|strong=\"G1492\"* from|strong=\"G3844\"* whom|strong=\"G3739\"* you|strong=\"G4771\"* have|strong=\"G2532\"* learned|strong=\"G3129\"* them|strong=\"G1722\"*." + }, + { + "verseNum": 15, + "text": "From|strong=\"G2532\"* infancy|strong=\"G1025\"*, you|strong=\"G4771\"* have|strong=\"G2532\"* known|strong=\"G1492\"* the|strong=\"G1722\"* holy|strong=\"G2413\"* Scriptures|strong=\"G1121\"* which|strong=\"G3588\"* are|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G1519\"* make|strong=\"G1519\"* you|strong=\"G4771\"* wise|strong=\"G4679\"* for|strong=\"G3754\"* salvation|strong=\"G4991\"* through|strong=\"G1223\"* faith|strong=\"G4102\"* which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 16, + "text": "Every|strong=\"G3956\"* Scripture|strong=\"G1124\"* is|strong=\"G3588\"* God-breathed and|strong=\"G2532\"*+ 3:16 or, Every writing inspired by God is* profitable|strong=\"G5624\"* for|strong=\"G4314\"* teaching|strong=\"G1319\"*, for|strong=\"G4314\"* reproof|strong=\"G1650\"*, for|strong=\"G4314\"* correction|strong=\"G1882\"*, and|strong=\"G2532\"* for|strong=\"G4314\"* instruction|strong=\"G1319\"* in|strong=\"G1722\"* righteousness|strong=\"G1343\"*," + }, + { + "verseNum": 17, + "text": "that|strong=\"G2443\"* each person who|strong=\"G3588\"* belongs|strong=\"G1510\"* to|strong=\"G4314\"* God|strong=\"G2316\"* may|strong=\"G2443\"* be|strong=\"G1510\"* complete|strong=\"G3956\"*, thoroughly equipped|strong=\"G1822\"* for|strong=\"G4314\"* every|strong=\"G3956\"* good|strong=\"G3956\"* work|strong=\"G2041\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G2532\"* command you|strong=\"G2532\"* therefore|strong=\"G2532\"* before|strong=\"G1799\"* God|strong=\"G2316\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, who|strong=\"G3588\"* will|strong=\"G2316\"* judge|strong=\"G2919\"* the|strong=\"G2532\"* living|strong=\"G2198\"* and|strong=\"G2532\"* the|strong=\"G2532\"* dead|strong=\"G3498\"* at|strong=\"G2316\"* his|strong=\"G2532\"* appearing|strong=\"G2015\"* and|strong=\"G2532\"* his|strong=\"G2532\"* Kingdom:" + }, + { + "verseNum": 2, + "text": "preach|strong=\"G2784\"* the|strong=\"G1722\"* word|strong=\"G3056\"*; be|strong=\"G2532\"* urgent in|strong=\"G1722\"* season|strong=\"G2122\"* and|strong=\"G2532\"* out|strong=\"G2532\"* of|strong=\"G3056\"* season|strong=\"G2122\"*; reprove|strong=\"G1651\"*, rebuke|strong=\"G2008\"*, and|strong=\"G2532\"* exhort|strong=\"G3870\"* with|strong=\"G1722\"* all|strong=\"G3956\"* patience|strong=\"G3115\"* and|strong=\"G2532\"* teaching|strong=\"G1322\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* the|strong=\"G2596\"* time|strong=\"G2540\"* will|strong=\"G1510\"* come|strong=\"G1510\"* when|strong=\"G3753\"* they|strong=\"G3588\"* will|strong=\"G1510\"* not|strong=\"G3756\"* listen to|strong=\"G2596\"* the|strong=\"G2596\"* sound|strong=\"G5198\"* doctrine|strong=\"G1319\"*, but|strong=\"G1063\"* having itching|strong=\"G2833\"* ears, will|strong=\"G1510\"* heap|strong=\"G2002\"* up for|strong=\"G1063\"* themselves|strong=\"G1438\"* teachers|strong=\"G1320\"* after|strong=\"G2596\"* their|strong=\"G1438\"* own|strong=\"G2398\"* lusts|strong=\"G1939\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"G2532\"* will|strong=\"G2532\"* turn|strong=\"G1624\"* away their|strong=\"G2532\"* ears from|strong=\"G2532\"* the|strong=\"G2532\"* truth, and|strong=\"G2532\"* turn|strong=\"G1624\"* away to|strong=\"G2532\"* fables|strong=\"G3454\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* you|strong=\"G4771\"* be|strong=\"G3956\"* sober|strong=\"G3525\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, suffer|strong=\"G2553\"* hardship|strong=\"G2553\"*, do|strong=\"G4160\"* the|strong=\"G1722\"* work|strong=\"G2041\"* of|strong=\"G2041\"* an|strong=\"G1722\"* evangelist|strong=\"G2099\"*, and|strong=\"G1161\"* fulfill|strong=\"G4135\"* your|strong=\"G4160\"* ministry|strong=\"G1248\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* am|strong=\"G1473\"* already|strong=\"G2235\"* being|strong=\"G2532\"* offered|strong=\"G4689\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* time|strong=\"G2540\"* of|strong=\"G2532\"* my|strong=\"G1473\"* departure has|strong=\"G2532\"* come|strong=\"G2186\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"G5083\"* have|strong=\"G3588\"* fought the|strong=\"G3588\"* good|strong=\"G2570\"* fight. I|strong=\"G5083\"* have|strong=\"G3588\"* finished|strong=\"G5055\"* the|strong=\"G3588\"* course|strong=\"G1408\"*. I|strong=\"G5083\"* have|strong=\"G3588\"* kept|strong=\"G5083\"* the|strong=\"G3588\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 8, + "text": "From|strong=\"G2532\"* now|strong=\"G1161\"* on|strong=\"G1722\"*, the|strong=\"G1722\"* crown|strong=\"G4735\"* of|strong=\"G2250\"* righteousness|strong=\"G1343\"* is|strong=\"G3588\"* stored up|strong=\"G2532\"* for|strong=\"G1161\"* me|strong=\"G1473\"*, which|strong=\"G3739\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, the|strong=\"G1722\"* righteous|strong=\"G1342\"* judge|strong=\"G2923\"*, will|strong=\"G2532\"* give|strong=\"G1473\"* to|strong=\"G2532\"* me|strong=\"G1473\"* on|strong=\"G1722\"* that|strong=\"G3739\"* day|strong=\"G2250\"*; and|strong=\"G2532\"* not|strong=\"G3756\"* to|strong=\"G2532\"* me|strong=\"G1473\"* only|strong=\"G3440\"*, but|strong=\"G1161\"* also|strong=\"G2532\"* to|strong=\"G2532\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3739\"* have|strong=\"G2532\"* loved his|strong=\"G3956\"* appearing|strong=\"G2015\"*." + }, + { + "verseNum": 9, + "text": "Be diligent|strong=\"G4704\"* to|strong=\"G4314\"* come|strong=\"G2064\"* to|strong=\"G4314\"* me|strong=\"G1473\"* soon|strong=\"G5030\"*," + }, + { + "verseNum": 10, + "text": "for|strong=\"G1063\"* Demas|strong=\"G1214\"* left|strong=\"G1459\"* me|strong=\"G1473\"*, having|strong=\"G2532\"* loved this|strong=\"G3588\"* present|strong=\"G3568\"* world, and|strong=\"G2532\"* went|strong=\"G4198\"* to|strong=\"G1519\"* Thessalonica|strong=\"G2332\"*; Crescens|strong=\"G2913\"* to|strong=\"G1519\"* Galatia|strong=\"G1053\"*; and|strong=\"G2532\"* Titus|strong=\"G5103\"* to|strong=\"G1519\"* Dalmatia|strong=\"G1149\"*." + }, + { + "verseNum": 11, + "text": "Only|strong=\"G3441\"* Luke|strong=\"G3065\"* is|strong=\"G1510\"* with|strong=\"G3326\"* me|strong=\"G1473\"*. Take Mark|strong=\"G3138\"* and|strong=\"G3326\"* bring|strong=\"G1519\"* him|strong=\"G1519\"* with|strong=\"G3326\"* you|strong=\"G1510\"*, for|strong=\"G1063\"* he|strong=\"G1063\"* is|strong=\"G1510\"* useful|strong=\"G2173\"* to|strong=\"G1519\"* me|strong=\"G1473\"* for|strong=\"G1063\"* service|strong=\"G1248\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* I|strong=\"G1161\"* sent Tychicus|strong=\"G5190\"* to|strong=\"G1519\"* Ephesus|strong=\"G2181\"*." + }, + { + "verseNum": 13, + "text": "Bring|strong=\"G5342\"* the|strong=\"G1722\"* cloak that|strong=\"G3739\"* I|strong=\"G3739\"* left at|strong=\"G1722\"* Troas|strong=\"G5174\"* with|strong=\"G1722\"* Carpus|strong=\"G2591\"* when|strong=\"G2532\"* you|strong=\"G3739\"* come|strong=\"G2064\"*—and|strong=\"G2532\"* the|strong=\"G1722\"* books, especially|strong=\"G3122\"* the|strong=\"G1722\"* parchments|strong=\"G3200\"*." + }, + { + "verseNum": 14, + "text": "Alexander the|strong=\"G2596\"* coppersmith|strong=\"G5471\"* did|strong=\"G1731\"* much|strong=\"G4183\"* evil|strong=\"G2556\"* to|strong=\"G2596\"* me|strong=\"G1473\"*. The|strong=\"G2596\"* Lord|strong=\"G2962\"* will|strong=\"G2962\"* repay him|strong=\"G3588\"* according|strong=\"G2596\"* to|strong=\"G2596\"* his|strong=\"G2596\"* deeds|strong=\"G2041\"*." + }, + { + "verseNum": 15, + "text": "Beware|strong=\"G5442\"* of|strong=\"G3056\"* him|strong=\"G3588\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* greatly|strong=\"G3029\"* opposed our|strong=\"G2251\"* words|strong=\"G3056\"*." + }, + { + "verseNum": 16, + "text": "At|strong=\"G1722\"* my|strong=\"G1722\"* first|strong=\"G4413\"* defense, no|strong=\"G3762\"* one|strong=\"G3762\"* came|strong=\"G3854\"* to|strong=\"G1722\"* help me|strong=\"G1473\"*, but|strong=\"G3361\"* all|strong=\"G3956\"* left|strong=\"G1459\"* me|strong=\"G1473\"*. May|strong=\"G3956\"* it|strong=\"G3588\"* not|strong=\"G3361\"* be|strong=\"G3361\"* held against|strong=\"G1722\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* stood|strong=\"G3936\"* by|strong=\"G1223\"* me|strong=\"G1473\"* and|strong=\"G2532\"* strengthened|strong=\"G1743\"* me|strong=\"G1473\"*, that|strong=\"G2443\"* through|strong=\"G1223\"* me|strong=\"G1473\"* the|strong=\"G2532\"* message|strong=\"G2782\"* might|strong=\"G2532\"* be|strong=\"G2532\"* fully|strong=\"G4135\"* proclaimed, and|strong=\"G2532\"* that|strong=\"G2443\"* all|strong=\"G3956\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"* might|strong=\"G2532\"* hear. So|strong=\"G2443\"* I|strong=\"G1473\"* was|strong=\"G3588\"* delivered|strong=\"G4506\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* mouth|strong=\"G4750\"* of|strong=\"G1537\"* the|strong=\"G2532\"* lion|strong=\"G3023\"*." + }, + { + "verseNum": 18, + "text": "And|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* will|strong=\"G2532\"* deliver|strong=\"G4506\"* me|strong=\"G1473\"* from|strong=\"G2532\"* every|strong=\"G3956\"* evil|strong=\"G4190\"* work|strong=\"G2041\"* and|strong=\"G2532\"* will|strong=\"G2532\"* preserve|strong=\"G4982\"* me|strong=\"G1473\"* for|strong=\"G1519\"* his|strong=\"G3956\"* heavenly|strong=\"G2032\"* Kingdom. To|strong=\"G1519\"* him|strong=\"G3588\"* be|strong=\"G2532\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*. Amen." + }, + { + "verseNum": 19, + "text": "Greet Prisca|strong=\"G4251\"* and|strong=\"G2532\"* Aquila, and|strong=\"G2532\"* the|strong=\"G2532\"* house|strong=\"G3624\"* of|strong=\"G2532\"* Onesiphorus|strong=\"G3683\"*." + }, + { + "verseNum": 20, + "text": "Erastus|strong=\"G2037\"* remained|strong=\"G3306\"* at|strong=\"G1722\"* Corinth|strong=\"G2882\"*, but|strong=\"G1161\"* I|strong=\"G1161\"* left Trophimus|strong=\"G5161\"* at|strong=\"G1722\"* Miletus|strong=\"G3399\"* sick." + }, + { + "verseNum": 21, + "text": "Be|strong=\"G2532\"* diligent|strong=\"G4704\"* to|strong=\"G2532\"* come|strong=\"G2064\"* before|strong=\"G4253\"* winter|strong=\"G5494\"*. Eubulus|strong=\"G2103\"* salutes you|strong=\"G4771\"*, as|strong=\"G2532\"* do|strong=\"G2532\"* Pudens|strong=\"G4227\"*, Linus|strong=\"G3044\"*, Claudia|strong=\"G2803\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* brothers." + }, + { + "verseNum": 22, + "text": "The|strong=\"G3588\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2962\"* Christ|strong=\"G2962\"* be|strong=\"G3588\"* with|strong=\"G3326\"* your|strong=\"G2962\"* spirit|strong=\"G4151\"*. Grace|strong=\"G5485\"* be|strong=\"G3588\"* with|strong=\"G3326\"* you|strong=\"G5210\"*. Amen." + } + ] + } + ] + }, + { + "name": "Titus", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, a|strong=\"G2532\"* servant|strong=\"G1401\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* an|strong=\"G2532\"* apostle of|strong=\"G2316\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:1 “Christ” means “Anointed One”.* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* faith|strong=\"G4102\"* of|strong=\"G2316\"* God|strong=\"G2316\"*’s chosen|strong=\"G1588\"* ones and|strong=\"G2532\"* the|strong=\"G2532\"* knowledge|strong=\"G1922\"* of|strong=\"G2316\"* the|strong=\"G2532\"* truth which|strong=\"G3588\"* is|strong=\"G3588\"* according|strong=\"G2596\"* to|strong=\"G2532\"* godliness|strong=\"G2150\"*," + }, + { + "verseNum": 2, + "text": "in|strong=\"G1909\"* hope|strong=\"G1680\"* of|strong=\"G2316\"* eternal life|strong=\"G2222\"*, which|strong=\"G3739\"* God|strong=\"G2316\"*, who|strong=\"G3739\"* can’t|strong=\"G3588\"* lie, promised|strong=\"G1861\"* before|strong=\"G4253\"* time|strong=\"G5550\"* began|strong=\"G1909\"*;" + }, + { + "verseNum": 3, + "text": "but|strong=\"G1161\"* in|strong=\"G1722\"* his|strong=\"G1722\"* own|strong=\"G2398\"* time|strong=\"G2540\"* revealed|strong=\"G5319\"* his|strong=\"G1722\"* word|strong=\"G3056\"* in|strong=\"G1722\"* the|strong=\"G1722\"* message|strong=\"G3056\"* with|strong=\"G1722\"* which|strong=\"G3739\"* I|strong=\"G1473\"* was|strong=\"G3588\"* entrusted|strong=\"G4100\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* commandment|strong=\"G2003\"* of|strong=\"G3056\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Savior|strong=\"G4990\"*," + }, + { + "verseNum": 4, + "text": "to|strong=\"G2532\"* Titus|strong=\"G5103\"*, my|strong=\"G1473\"* true|strong=\"G1103\"* child|strong=\"G5043\"* according|strong=\"G2596\"* to|strong=\"G2532\"* a|strong=\"G2532\"* common|strong=\"G2839\"* faith|strong=\"G4102\"*: Grace|strong=\"G5485\"*, mercy, and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* our|strong=\"G2316\"* Savior|strong=\"G4990\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"G1473\"* left|strong=\"G5484\"* you|strong=\"G4771\"* in|strong=\"G1722\"* Crete|strong=\"G2914\"* for|strong=\"G1722\"* this|strong=\"G3778\"* reason|strong=\"G5484\"*, that|strong=\"G2443\"* you|strong=\"G4771\"* would|strong=\"G2532\"* set|strong=\"G2525\"* in|strong=\"G1722\"* order|strong=\"G2443\"* the|strong=\"G1722\"* things|strong=\"G3778\"* that|strong=\"G2443\"* were|strong=\"G3588\"* lacking|strong=\"G3007\"* and|strong=\"G2532\"* appoint|strong=\"G2525\"* elders|strong=\"G4245\"* in|strong=\"G1722\"* every|strong=\"G2596\"* city|strong=\"G4172\"*, as|strong=\"G5613\"* I|strong=\"G1473\"* directed|strong=\"G1299\"* you|strong=\"G4771\"*—" + }, + { + "verseNum": 6, + "text": "if|strong=\"G1487\"* anyone|strong=\"G5100\"* is|strong=\"G1510\"* blameless, the|strong=\"G1722\"* husband of|strong=\"G1520\"* one|strong=\"G1520\"* wife|strong=\"G1135\"*, having|strong=\"G2192\"* children|strong=\"G5043\"* who|strong=\"G5101\"* believe|strong=\"G4103\"*, who|strong=\"G5101\"* are|strong=\"G1510\"* not|strong=\"G3361\"* accused|strong=\"G2724\"* of|strong=\"G1520\"* loose|strong=\"G5101\"* or|strong=\"G2228\"* unruly behavior." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* the|strong=\"G3588\"* overseer|strong=\"G1985\"* must|strong=\"G1163\"* be|strong=\"G1510\"* blameless, as|strong=\"G5613\"* God|strong=\"G2316\"*’s steward|strong=\"G3623\"*, not|strong=\"G3361\"* self-pleasing, not|strong=\"G3361\"* easily angered, not|strong=\"G3361\"* given|strong=\"G3361\"* to|strong=\"G1163\"* wine|strong=\"G3943\"*, not|strong=\"G3361\"* violent|strong=\"G4131\"*, not|strong=\"G3361\"* greedy for|strong=\"G1063\"* dishonest gain;" + }, + { + "verseNum": 8, + "text": "but|strong=\"G1342\"* given to|strong=\"G3741\"* hospitality|strong=\"G5382\"*, a lover of|strong=\"G3741\"* good|strong=\"G5358\"*, sober|strong=\"G4998\"* minded, fair, holy|strong=\"G3741\"*, self-controlled|strong=\"G4998\"*," + }, + { + "verseNum": 9, + "text": "holding to|strong=\"G2443\"* the|strong=\"G1722\"* faithful|strong=\"G4103\"* word|strong=\"G3056\"* which|strong=\"G3588\"* is|strong=\"G1510\"* according|strong=\"G2596\"* to|strong=\"G2443\"* the|strong=\"G1722\"* teaching|strong=\"G1322\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G1510\"* able|strong=\"G1415\"* to|strong=\"G2443\"* exhort|strong=\"G3870\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sound|strong=\"G5198\"* doctrine|strong=\"G1322\"*, and|strong=\"G2532\"* to|strong=\"G2443\"* convict|strong=\"G1651\"* those|strong=\"G3588\"* who|strong=\"G3588\"* contradict him|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* there|strong=\"G2532\"* are|strong=\"G1510\"* also|strong=\"G2532\"* many|strong=\"G4183\"* unruly men|strong=\"G3588\"*, vain|strong=\"G2532\"* talkers|strong=\"G3151\"* and|strong=\"G2532\"* deceivers|strong=\"G5423\"*, especially|strong=\"G3122\"* those|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G2532\"* circumcision|strong=\"G4061\"*," + }, + { + "verseNum": 11, + "text": "whose|strong=\"G3739\"* mouths|strong=\"G1993\"* must|strong=\"G1163\"* be|strong=\"G1163\"* stopped|strong=\"G1993\"*: men|strong=\"G3739\"* who|strong=\"G3739\"* overthrow whole|strong=\"G3650\"* houses|strong=\"G3624\"*, teaching|strong=\"G1321\"* things|strong=\"G3739\"* which|strong=\"G3739\"* they|strong=\"G3739\"* ought|strong=\"G1163\"* not|strong=\"G3361\"*, for|strong=\"G5484\"* dishonest gain|strong=\"G2771\"*’s sake|strong=\"G5484\"*." + }, + { + "verseNum": 12, + "text": "One|strong=\"G5100\"* of|strong=\"G1537\"* them|strong=\"G3004\"*, a|strong=\"G1537\"* prophet|strong=\"G4396\"* of|strong=\"G1537\"* their|strong=\"G2398\"* own|strong=\"G2398\"*, said|strong=\"G3004\"*, “Cretans|strong=\"G2912\"* are|strong=\"G4396\"* always liars|strong=\"G5583\"*, evil|strong=\"G2556\"* beasts|strong=\"G2342\"*, and|strong=\"G4396\"* idle gluttons|strong=\"G1064\"*.”" + }, + { + "verseNum": 13, + "text": "This|strong=\"G3778\"* testimony|strong=\"G3141\"* is|strong=\"G1510\"* true|strong=\"G3588\"*. For|strong=\"G1223\"* this|strong=\"G3778\"* cause|strong=\"G1223\"*, reprove|strong=\"G1651\"* them|strong=\"G3588\"* sharply, that|strong=\"G2443\"* they|strong=\"G3588\"* may|strong=\"G2443\"* be|strong=\"G1510\"* sound|strong=\"G5198\"* in|strong=\"G1722\"* the|strong=\"G1722\"* faith|strong=\"G4102\"*," + }, + { + "verseNum": 14, + "text": "not|strong=\"G3361\"* paying|strong=\"G4337\"* attention|strong=\"G4337\"* to|strong=\"G2532\"* Jewish|strong=\"G2451\"* fables|strong=\"G3454\"* and|strong=\"G2532\"* commandments|strong=\"G1785\"* of|strong=\"G2532\"* men|strong=\"G3588\"* who|strong=\"G3588\"* turn away from|strong=\"G2532\"* the|strong=\"G2532\"* truth." + }, + { + "verseNum": 15, + "text": "To|strong=\"G2532\"* the|strong=\"G2532\"* pure|strong=\"G2513\"*, all|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3588\"* pure|strong=\"G2513\"*, but|strong=\"G1161\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* defiled|strong=\"G3392\"* and|strong=\"G2532\"* unbelieving, nothing|strong=\"G3762\"* is|strong=\"G3588\"* pure|strong=\"G2513\"*; but|strong=\"G1161\"* both|strong=\"G2532\"* their|strong=\"G2532\"* mind|strong=\"G3563\"* and|strong=\"G2532\"* their|strong=\"G2532\"* conscience|strong=\"G4893\"* are|strong=\"G3588\"* defiled|strong=\"G3392\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"G2532\"* profess|strong=\"G3670\"* that|strong=\"G3588\"* they|strong=\"G2532\"* know|strong=\"G1492\"* God|strong=\"G2316\"*, but|strong=\"G1161\"* by|strong=\"G4314\"* their|strong=\"G2532\"* deeds|strong=\"G2041\"* they|strong=\"G2532\"* deny|strong=\"G3588\"* him|strong=\"G3588\"*, being|strong=\"G1510\"* abominable, disobedient, and|strong=\"G2532\"* unfit for|strong=\"G4314\"* any|strong=\"G3956\"* good|strong=\"G3956\"* work|strong=\"G2041\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"G1161\"* say|strong=\"G2980\"* the|strong=\"G1161\"* things|strong=\"G3588\"* which|strong=\"G3739\"* fit sound|strong=\"G5198\"* doctrine|strong=\"G1319\"*," + }, + { + "verseNum": 2, + "text": "that|strong=\"G3588\"* older|strong=\"G4246\"* men|strong=\"G3588\"* should|strong=\"G3588\"* be|strong=\"G1510\"* temperate|strong=\"G3524\"*, sensible|strong=\"G4998\"*, sober|strong=\"G4998\"* minded, sound|strong=\"G5198\"* in|strong=\"G4102\"* faith|strong=\"G4102\"*, in|strong=\"G4102\"* love, and|strong=\"G4102\"* in|strong=\"G4102\"* perseverance|strong=\"G5281\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"G3366\"* that|strong=\"G3361\"* older|strong=\"G4247\"* women|strong=\"G4247\"* likewise|strong=\"G5615\"* be|strong=\"G3361\"* reverent|strong=\"G2412\"* in|strong=\"G1722\"* behavior|strong=\"G2688\"*, not|strong=\"G3361\"* slanderers|strong=\"G1228\"* nor|strong=\"G3366\"* enslaved|strong=\"G1402\"* to|strong=\"G1722\"* much|strong=\"G4183\"* wine|strong=\"G3631\"*, teachers of|strong=\"G1722\"* that|strong=\"G3361\"* which|strong=\"G1722\"* is|strong=\"G3631\"* good|strong=\"G2567\"*," + }, + { + "verseNum": 4, + "text": "that|strong=\"G2443\"* they|strong=\"G3588\"* may|strong=\"G2443\"* train the|strong=\"G3588\"* young|strong=\"G3501\"* wives to|strong=\"G2443\"* love|strong=\"G5388\"* their|strong=\"G3588\"* husbands|strong=\"G5362\"*, to|strong=\"G2443\"* love|strong=\"G5388\"* their|strong=\"G3588\"* children|strong=\"G5388\"*," + }, + { + "verseNum": 5, + "text": "to|strong=\"G2443\"* be|strong=\"G3361\"* sober|strong=\"G4998\"* minded, chaste, workers|strong=\"G3626\"* at|strong=\"G2316\"* home|strong=\"G3626\"*, kind, being|strong=\"G2443\"* in|strong=\"G2316\"* subjection|strong=\"G5293\"* to|strong=\"G2443\"* their|strong=\"G2398\"* own|strong=\"G2398\"* husbands, that|strong=\"G2443\"* God|strong=\"G2316\"*’s word|strong=\"G3056\"* may|strong=\"G2443\"* not|strong=\"G3361\"* be|strong=\"G3361\"* blasphemed." + }, + { + "verseNum": 6, + "text": "Likewise|strong=\"G5615\"*, exhort|strong=\"G3870\"* the|strong=\"G3588\"* younger|strong=\"G3501\"* men|strong=\"G3501\"* to|strong=\"G3870\"* be|strong=\"G3588\"* sober|strong=\"G4993\"* minded|strong=\"G4993\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"* show|strong=\"G3930\"* yourself|strong=\"G4572\"* an|strong=\"G1722\"* example|strong=\"G5179\"* of|strong=\"G4012\"* good|strong=\"G2570\"* works|strong=\"G2041\"*. In|strong=\"G1722\"* your|strong=\"G3956\"* teaching|strong=\"G1319\"*, show|strong=\"G3930\"* integrity, seriousness, incorruptibility," + }, + { + "verseNum": 8, + "text": "and|strong=\"G3056\"* soundness of|strong=\"G1537\"* speech|strong=\"G3056\"* that|strong=\"G2443\"* can|strong=\"G3004\"*’t|strong=\"G3588\"* be|strong=\"G2443\"* condemned, that|strong=\"G2443\"* he|strong=\"G3588\"* who|strong=\"G3588\"* opposes you|strong=\"G3004\"* may|strong=\"G2443\"* be|strong=\"G2443\"* ashamed|strong=\"G1788\"*, having|strong=\"G2192\"* no|strong=\"G3367\"* evil|strong=\"G5337\"* thing|strong=\"G3056\"* to|strong=\"G2443\"* say|strong=\"G3004\"* about|strong=\"G4012\"* us|strong=\"G3004\"*." + }, + { + "verseNum": 9, + "text": "Exhort servants|strong=\"G1401\"* to|strong=\"G1722\"* be|strong=\"G1510\"* in|strong=\"G1722\"* subjection|strong=\"G5293\"* to|strong=\"G1722\"* their|strong=\"G1722\"* own|strong=\"G2398\"* masters|strong=\"G1203\"* and|strong=\"G1401\"* to|strong=\"G1722\"* be|strong=\"G1510\"* well-pleasing|strong=\"G2101\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, not|strong=\"G3361\"* contradicting," + }, + { + "verseNum": 10, + "text": "not|strong=\"G3361\"* stealing, but|strong=\"G3361\"* showing|strong=\"G1731\"* all|strong=\"G3956\"* good|strong=\"G3956\"* fidelity|strong=\"G4102\"*, that|strong=\"G2443\"* they|strong=\"G3588\"* may|strong=\"G2443\"* adorn|strong=\"G2885\"* the|strong=\"G1722\"* doctrine|strong=\"G1319\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, our|strong=\"G2316\"* Savior|strong=\"G4990\"*, in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* the|strong=\"G3956\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* has|strong=\"G2316\"* appeared|strong=\"G2014\"*, bringing|strong=\"G4992\"* salvation|strong=\"G4992\"* to|strong=\"G2316\"* all|strong=\"G3956\"* men|strong=\"G3956\"*," + }, + { + "verseNum": 12, + "text": "instructing|strong=\"G3811\"* us|strong=\"G2249\"* to|strong=\"G2443\"* the|strong=\"G1722\"* intent that|strong=\"G2443\"*, denying ungodliness and|strong=\"G2532\"* worldly|strong=\"G2886\"* lusts|strong=\"G1939\"*, we|strong=\"G2249\"* would|strong=\"G2532\"* live|strong=\"G2198\"* soberly|strong=\"G4996\"*, righteously|strong=\"G1346\"*, and|strong=\"G2532\"* godly|strong=\"G2153\"* in|strong=\"G1722\"* this|strong=\"G3588\"* present|strong=\"G3568\"* age;" + }, + { + "verseNum": 13, + "text": "looking|strong=\"G4327\"* for|strong=\"G2532\"* the|strong=\"G2532\"* blessed|strong=\"G3107\"* hope|strong=\"G1680\"* and|strong=\"G2532\"* appearing|strong=\"G2015\"* of|strong=\"G2316\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* our|strong=\"G2316\"* great|strong=\"G3173\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Savior|strong=\"G4990\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 14, + "text": "who|strong=\"G3739\"* gave|strong=\"G1325\"* himself|strong=\"G1438\"* for|strong=\"G5228\"* us|strong=\"G1325\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* redeem|strong=\"G3084\"* us|strong=\"G1325\"* from|strong=\"G2532\"* all|strong=\"G3956\"* iniquity and|strong=\"G2532\"* purify|strong=\"G2511\"* for|strong=\"G5228\"* himself|strong=\"G1438\"* a|strong=\"G2532\"* people|strong=\"G2992\"* for|strong=\"G5228\"* his|strong=\"G1438\"* own|strong=\"G1438\"* possession|strong=\"G4041\"*, zealous|strong=\"G2207\"* for|strong=\"G5228\"* good|strong=\"G2570\"* works|strong=\"G2041\"*." + }, + { + "verseNum": 15, + "text": "Say|strong=\"G2980\"* these|strong=\"G3778\"* things|strong=\"G3956\"* and|strong=\"G2532\"* exhort|strong=\"G3870\"* and|strong=\"G2532\"* reprove|strong=\"G1651\"* with|strong=\"G3326\"* all|strong=\"G3956\"* authority|strong=\"G2003\"*. Let|strong=\"G4065\"* no|strong=\"G3367\"* one|strong=\"G3367\"* despise|strong=\"G4065\"* you|strong=\"G4771\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Remind|strong=\"G5279\"* them|strong=\"G1438\"* to|strong=\"G4314\"* be|strong=\"G1510\"* in|strong=\"G3956\"* subjection|strong=\"G5293\"* to|strong=\"G4314\"* rulers and|strong=\"G1849\"* to|strong=\"G4314\"* authorities|strong=\"G1849\"*, to|strong=\"G4314\"* be|strong=\"G1510\"* obedient|strong=\"G5293\"*, to|strong=\"G4314\"* be|strong=\"G1510\"* ready|strong=\"G2092\"* for|strong=\"G4314\"* every|strong=\"G3956\"* good|strong=\"G3956\"* work|strong=\"G2041\"*," + }, + { + "verseNum": 2, + "text": "to|strong=\"G4314\"* speak evil|strong=\"G3367\"* of|strong=\"G3956\"* no|strong=\"G3367\"* one|strong=\"G3367\"*, not|strong=\"G3367\"* to|strong=\"G4314\"* be|strong=\"G1510\"* contentious, to|strong=\"G4314\"* be|strong=\"G1510\"* gentle|strong=\"G1933\"*, showing|strong=\"G1731\"* all|strong=\"G3956\"* humility|strong=\"G4240\"* toward|strong=\"G4314\"* all|strong=\"G3956\"* men|strong=\"G3956\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* were|strong=\"G1510\"* also|strong=\"G2532\"* once|strong=\"G4218\"* foolish|strong=\"G2532\"*, disobedient, deceived|strong=\"G4105\"*, serving|strong=\"G1398\"* various|strong=\"G4164\"* lusts|strong=\"G1939\"* and|strong=\"G2532\"* pleasures|strong=\"G2237\"*, living|strong=\"G1236\"* in|strong=\"G1722\"* malice|strong=\"G2549\"* and|strong=\"G2532\"* envy|strong=\"G5355\"*, hateful|strong=\"G4767\"*, and|strong=\"G2532\"* hating|strong=\"G3404\"* one|strong=\"G1722\"* another|strong=\"G1722\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* when|strong=\"G3753\"* the|strong=\"G2532\"* kindness|strong=\"G5544\"* of|strong=\"G2316\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Savior|strong=\"G4990\"* and|strong=\"G2532\"* his|strong=\"G2532\"* love|strong=\"G5363\"* toward|strong=\"G4990\"* mankind|strong=\"G5363\"* appeared|strong=\"G2014\"*," + }, + { + "verseNum": 5, + "text": "not|strong=\"G3756\"* by|strong=\"G1223\"* works|strong=\"G2041\"* of|strong=\"G1537\"* righteousness|strong=\"G1343\"* which|strong=\"G3739\"* we|strong=\"G2249\"* did|strong=\"G4160\"* ourselves|strong=\"G2249\"*, but|strong=\"G2532\"* according|strong=\"G2596\"* to|strong=\"G2532\"* his|strong=\"G1223\"* mercy|strong=\"G1656\"*, he|strong=\"G2532\"* saved|strong=\"G4982\"* us|strong=\"G4160\"* through|strong=\"G1223\"* the|strong=\"G1722\"* washing|strong=\"G3067\"* of|strong=\"G1537\"* regeneration|strong=\"G3824\"* and|strong=\"G2532\"* renewing by|strong=\"G1223\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*," + }, + { + "verseNum": 6, + "text": "whom|strong=\"G3739\"* he|strong=\"G3739\"* poured|strong=\"G1632\"* out|strong=\"G1632\"* on|strong=\"G1909\"* us|strong=\"G2249\"* richly|strong=\"G4146\"* through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* our|strong=\"G2424\"* Savior|strong=\"G4990\"*;" + }, + { + "verseNum": 7, + "text": "that|strong=\"G2443\"* being|strong=\"G1096\"* justified|strong=\"G1344\"* by|strong=\"G2596\"* his|strong=\"G1565\"* grace|strong=\"G5485\"*, we|strong=\"G2443\"* might|strong=\"G1680\"* be|strong=\"G1096\"* made|strong=\"G1096\"* heirs|strong=\"G2818\"* according|strong=\"G2596\"* to|strong=\"G2443\"* the|strong=\"G2596\"* hope|strong=\"G1680\"* of|strong=\"G5485\"* eternal life|strong=\"G2222\"*." + }, + { + "verseNum": 8, + "text": "This|strong=\"G3778\"* saying|strong=\"G3056\"* is|strong=\"G1510\"* faithful|strong=\"G4103\"*, and|strong=\"G2532\"* concerning|strong=\"G4012\"* these|strong=\"G3778\"* things|strong=\"G3778\"* I|strong=\"G2532\"* desire|strong=\"G1014\"* that|strong=\"G2443\"* you|strong=\"G4771\"* insist confidently|strong=\"G1226\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2532\"* believed|strong=\"G4100\"* God|strong=\"G2316\"* may|strong=\"G2532\"* be|strong=\"G1510\"* careful|strong=\"G5431\"* to|strong=\"G2443\"* maintain|strong=\"G4291\"* good|strong=\"G2570\"* works|strong=\"G2041\"*. These|strong=\"G3778\"* things|strong=\"G3778\"* are|strong=\"G1510\"* good|strong=\"G2570\"* and|strong=\"G2532\"* profitable|strong=\"G5624\"* to|strong=\"G2443\"* men|strong=\"G3778\"*;" + }, + { + "verseNum": 9, + "text": "but|strong=\"G1161\"* shun|strong=\"G4026\"* foolish|strong=\"G3474\"* questionings, genealogies|strong=\"G1076\"*, strife|strong=\"G2054\"*, and|strong=\"G2532\"* disputes|strong=\"G3163\"* about|strong=\"G4026\"* the|strong=\"G2532\"* law|strong=\"G3544\"*; for|strong=\"G1063\"* they|strong=\"G2532\"* are|strong=\"G1510\"* unprofitable and|strong=\"G2532\"* vain|strong=\"G3152\"*." + }, + { + "verseNum": 10, + "text": "Avoid|strong=\"G3868\"* a|strong=\"G2532\"* factious man|strong=\"G1520\"* after|strong=\"G3326\"* a|strong=\"G2532\"* first|strong=\"G1520\"* and|strong=\"G2532\"* second|strong=\"G1208\"* warning|strong=\"G3559\"*," + }, + { + "verseNum": 11, + "text": "knowing|strong=\"G1492\"* that|strong=\"G3754\"* such|strong=\"G5108\"* a|strong=\"G2532\"* one|strong=\"G5108\"* is|strong=\"G1510\"* perverted|strong=\"G1612\"* and|strong=\"G2532\"* sinful, being|strong=\"G1510\"* self-condemned." + }, + { + "verseNum": 12, + "text": "When|strong=\"G3752\"* I|strong=\"G1473\"* send|strong=\"G3992\"* Artemas to|strong=\"G1519\"* you|strong=\"G4771\"*, or|strong=\"G2228\"* Tychicus|strong=\"G5190\"*, be|strong=\"G1519\"* diligent|strong=\"G4704\"* to|strong=\"G1519\"* come|strong=\"G2064\"* to|strong=\"G1519\"* me|strong=\"G1473\"* to|strong=\"G1519\"* Nicopolis|strong=\"G3533\"*, for|strong=\"G1063\"* I|strong=\"G1473\"* have|strong=\"G1473\"* determined|strong=\"G2919\"* to|strong=\"G1519\"* winter|strong=\"G3914\"* there|strong=\"G1563\"*." + }, + { + "verseNum": 13, + "text": "Send|strong=\"G4311\"* Zenas|strong=\"G2211\"* the|strong=\"G2532\"* lawyer|strong=\"G3544\"* and|strong=\"G2532\"* Apollos on|strong=\"G4311\"* their|strong=\"G2532\"* journey|strong=\"G4311\"* speedily, that|strong=\"G2443\"* nothing|strong=\"G3367\"* may|strong=\"G2532\"* be|strong=\"G2532\"* lacking|strong=\"G3007\"* for|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "Let|strong=\"G1161\"* our|strong=\"G2251\"* people|strong=\"G1510\"* also|strong=\"G2532\"* learn|strong=\"G3129\"* to|strong=\"G1519\"* maintain|strong=\"G4291\"* good|strong=\"G2570\"* works|strong=\"G2041\"* to|strong=\"G1519\"* meet|strong=\"G2570\"* necessary|strong=\"G5532\"* needs|strong=\"G5532\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* may|strong=\"G2532\"* not|strong=\"G3361\"* be|strong=\"G1510\"* unfruitful." + }, + { + "verseNum": 15, + "text": "All|strong=\"G3956\"* who|strong=\"G3588\"* are|strong=\"G3588\"* with|strong=\"G3326\"* me|strong=\"G1473\"* greet you|strong=\"G5210\"*. Greet those|strong=\"G3588\"* who|strong=\"G3588\"* love|strong=\"G5368\"* us|strong=\"G2249\"* in|strong=\"G1722\"* faith|strong=\"G4102\"*." + } + ] + } + ] + }, + { + "name": "Philemon", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, a|strong=\"G2532\"* prisoner|strong=\"G1198\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*+ 1:1 “Christ” means “Anointed One”.* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* Timothy|strong=\"G5095\"* our|strong=\"G2424\"* brother, to|strong=\"G2532\"* Philemon|strong=\"G5371\"*, our|strong=\"G2424\"* beloved fellow|strong=\"G4904\"* worker|strong=\"G4904\"*," + }, + { + "verseNum": 2, + "text": "to|strong=\"G2532\"* the|strong=\"G2532\"* beloved Apphia, to|strong=\"G2532\"* Archippus our|strong=\"G2532\"* fellow|strong=\"G4961\"* soldier|strong=\"G4961\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"* in|strong=\"G2596\"* your|strong=\"G2532\"* house|strong=\"G3624\"*:" + }, + { + "verseNum": 3, + "text": "Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"G1473\"* thank|strong=\"G2168\"* my|strong=\"G1473\"* God|strong=\"G2316\"* always|strong=\"G3842\"*, making|strong=\"G4160\"* mention|strong=\"G3417\"* of|strong=\"G2316\"* you|strong=\"G4771\"* in|strong=\"G1909\"* my|strong=\"G1473\"* prayers|strong=\"G4335\"*," + }, + { + "verseNum": 5, + "text": "hearing of|strong=\"G2532\"* your|strong=\"G2192\"* love and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* faith|strong=\"G4102\"* which|strong=\"G3739\"* you|strong=\"G4771\"* have|strong=\"G2192\"* toward|strong=\"G1519\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* toward|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G2532\"* saints," + }, + { + "verseNum": 6, + "text": "that|strong=\"G3588\"* the|strong=\"G1722\"* fellowship|strong=\"G2842\"* of|strong=\"G1722\"* your|strong=\"G3956\"* faith|strong=\"G4102\"* may|strong=\"G5547\"* become|strong=\"G1096\"* effective|strong=\"G1756\"* in|strong=\"G1722\"* the|strong=\"G1722\"* knowledge|strong=\"G1922\"* of|strong=\"G1722\"* every|strong=\"G3956\"* good|strong=\"G3956\"* thing|strong=\"G3956\"* which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* us|strong=\"G1519\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G1096\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* we|strong=\"G3754\"* have|strong=\"G2192\"* much|strong=\"G4183\"* joy|strong=\"G5479\"* and|strong=\"G2532\"* comfort|strong=\"G3874\"* in|strong=\"G1909\"* your|strong=\"G1223\"* love, because|strong=\"G3754\"* the|strong=\"G2532\"* hearts|strong=\"G4698\"* of|strong=\"G1223\"* the|strong=\"G2532\"* saints have|strong=\"G2192\"* been|strong=\"G2192\"* refreshed through|strong=\"G1223\"* you|strong=\"G4771\"*, brother." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G1352\"* though|strong=\"G1722\"* I|strong=\"G1352\"* have|strong=\"G2192\"* all|strong=\"G1722\"* boldness|strong=\"G3954\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* to|strong=\"G1722\"* command|strong=\"G2004\"* you|strong=\"G4771\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* appropriate," + }, + { + "verseNum": 9, + "text": "yet|strong=\"G2532\"* for|strong=\"G1223\"* love’s sake|strong=\"G1223\"* I|strong=\"G2532\"* rather|strong=\"G3123\"* appeal|strong=\"G3870\"* to|strong=\"G2532\"* you|strong=\"G1510\"*, being|strong=\"G1510\"* such|strong=\"G5108\"* a|strong=\"G5613\"* one|strong=\"G5108\"* as|strong=\"G5613\"* Paul|strong=\"G3972\"*, the|strong=\"G2532\"* aged|strong=\"G4246\"*, but|strong=\"G1161\"* also|strong=\"G2532\"* a|strong=\"G5613\"* prisoner|strong=\"G1198\"* of|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"G1473\"* appeal|strong=\"G3870\"* to|strong=\"G1722\"* you|strong=\"G4771\"* for|strong=\"G4012\"* my|strong=\"G1699\"* child|strong=\"G5043\"* Onesimus|strong=\"G3682\"*, whom|strong=\"G3739\"* I|strong=\"G1473\"* have|strong=\"G1473\"* become the|strong=\"G1722\"* father|strong=\"G1080\"* of|strong=\"G4012\"* in|strong=\"G1722\"* my|strong=\"G1699\"* chains|strong=\"G1199\"*,+ 1:10 Onesimus means “useful”.*" + }, + { + "verseNum": 11, + "text": "who|strong=\"G3739\"* once|strong=\"G4218\"* was|strong=\"G3588\"* useless to|strong=\"G2532\"* you|strong=\"G4771\"*, but|strong=\"G1161\"* now|strong=\"G1161\"* is|strong=\"G3588\"* useful|strong=\"G2173\"* to|strong=\"G2532\"* you|strong=\"G4771\"* and|strong=\"G2532\"* to|strong=\"G2532\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"G3778\"* am|strong=\"G1510\"* sending him|strong=\"G3588\"* back. Therefore receive him|strong=\"G3588\"*, that|strong=\"G3588\"* is|strong=\"G1510\"*, my|strong=\"G1699\"* own|strong=\"G1699\"* heart|strong=\"G4698\"*," + }, + { + "verseNum": 13, + "text": "whom|strong=\"G3739\"* I|strong=\"G1473\"* desired to|strong=\"G4314\"* keep|strong=\"G2722\"* with|strong=\"G1722\"* me|strong=\"G1473\"*, that|strong=\"G2443\"* on|strong=\"G1722\"* your|strong=\"G1722\"* behalf|strong=\"G5228\"* he|strong=\"G3739\"* might|strong=\"G2098\"* serve|strong=\"G1247\"* me|strong=\"G1473\"* in|strong=\"G1722\"* my|strong=\"G1722\"* chains|strong=\"G1199\"* for|strong=\"G5228\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* I|strong=\"G1161\"* was|strong=\"G1510\"* willing|strong=\"G2309\"* to|strong=\"G2443\"* do|strong=\"G4160\"* nothing|strong=\"G3762\"* without|strong=\"G5565\"* your|strong=\"G4674\"* consent|strong=\"G1106\"*, that|strong=\"G2443\"* your|strong=\"G4674\"* goodness would|strong=\"G2309\"* not|strong=\"G3361\"* be|strong=\"G1510\"* as|strong=\"G5613\"* of|strong=\"G2596\"* necessity, but|strong=\"G1161\"* of|strong=\"G2596\"* free|strong=\"G1595\"* will|strong=\"G2309\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* perhaps|strong=\"G5029\"* he|strong=\"G3778\"* was|strong=\"G5610\"* therefore|strong=\"G1223\"* separated|strong=\"G5563\"* from|strong=\"G1223\"* you|strong=\"G3778\"* for|strong=\"G1063\"* a|strong=\"G4314\"* while|strong=\"G5610\"* that|strong=\"G2443\"* you|strong=\"G3778\"* would have|strong=\"G3778\"* him|strong=\"G4314\"* forever|strong=\"G1223\"*," + }, + { + "verseNum": 16, + "text": "no|strong=\"G3756\"* longer|strong=\"G2089\"* as|strong=\"G5613\"* a|strong=\"G5613\"* slave|strong=\"G1401\"*, but|strong=\"G1161\"* more|strong=\"G3123\"* than|strong=\"G5228\"* a|strong=\"G5613\"* slave|strong=\"G1401\"*, a|strong=\"G5613\"* beloved brother—especially|strong=\"G3122\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, but|strong=\"G1161\"* how|strong=\"G5613\"* much|strong=\"G4214\"* rather|strong=\"G3123\"* to|strong=\"G2532\"* you|strong=\"G4771\"*, both|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"* and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 17, + "text": "If|strong=\"G1487\"* then|strong=\"G3767\"* you|strong=\"G1487\"* count|strong=\"G2192\"* me|strong=\"G1473\"* a|strong=\"G2192\"* partner|strong=\"G2844\"*, receive|strong=\"G4355\"* him|strong=\"G4355\"* as|strong=\"G5613\"* you|strong=\"G1487\"* would receive|strong=\"G4355\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* he|strong=\"G1161\"* has|strong=\"G3778\"* wronged you|strong=\"G4771\"* at|strong=\"G1161\"* all|strong=\"G1161\"* or|strong=\"G2228\"* owes|strong=\"G3784\"* you|strong=\"G4771\"* anything|strong=\"G5100\"*, put|strong=\"G1677\"* that|strong=\"G1487\"* to|strong=\"G5100\"* my|strong=\"G1473\"* account|strong=\"G1677\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"G1473\"*, Paul|strong=\"G3972\"*, write|strong=\"G1125\"* this|strong=\"G3588\"* with|strong=\"G2532\"* my|strong=\"G1699\"* own|strong=\"G1699\"* hand|strong=\"G5495\"*: I|strong=\"G1473\"* will|strong=\"G2532\"* repay it|strong=\"G2532\"* (not|strong=\"G3361\"* to|strong=\"G2443\"* mention|strong=\"G3004\"* to|strong=\"G2443\"* you|strong=\"G4771\"* that|strong=\"G3754\"* you|strong=\"G4771\"* owe|strong=\"G4359\"* to|strong=\"G2443\"* me|strong=\"G1473\"* even|strong=\"G2532\"* your|strong=\"G2532\"* own|strong=\"G1699\"* self|strong=\"G4572\"* besides|strong=\"G2532\"*)." + }, + { + "verseNum": 20, + "text": "Yes|strong=\"G3483\"*, brother, let|strong=\"G3685\"* me|strong=\"G1473\"* have|strong=\"G1473\"* joy|strong=\"G3685\"* from|strong=\"G3588\"* you|strong=\"G4771\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*. Refresh my|strong=\"G1722\"* heart|strong=\"G4698\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 21, + "text": "Having|strong=\"G2532\"* confidence|strong=\"G3982\"* in|strong=\"G2532\"* your|strong=\"G2532\"* obedience|strong=\"G5218\"*, I|strong=\"G3739\"* write|strong=\"G1125\"* to|strong=\"G2532\"* you|strong=\"G4771\"*, knowing|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G4771\"* will|strong=\"G2532\"* do|strong=\"G4160\"* even|strong=\"G2532\"* beyond|strong=\"G5228\"* what|strong=\"G3739\"* I|strong=\"G3739\"* say|strong=\"G3004\"*." + }, + { + "verseNum": 22, + "text": "Also|strong=\"G2532\"*, prepare|strong=\"G2090\"* a|strong=\"G2532\"* guest room for|strong=\"G1063\"* me|strong=\"G1473\"*, for|strong=\"G1063\"* I|strong=\"G1473\"* hope|strong=\"G1679\"* that|strong=\"G3754\"* through|strong=\"G1223\"* your|strong=\"G1223\"* prayers|strong=\"G4335\"* I|strong=\"G1473\"* will|strong=\"G2532\"* be|strong=\"G2532\"* restored to|strong=\"G2532\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 23, + "text": "Epaphras|strong=\"G1889\"*, my|strong=\"G1722\"* fellow|strong=\"G4869\"* prisoner|strong=\"G4869\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, greets you|strong=\"G4771\"*," + }, + { + "verseNum": 24, + "text": "as|strong=\"G3588\"* do|strong=\"G3588\"* Mark|strong=\"G3138\"*, Aristarchus, Demas|strong=\"G1214\"*, and|strong=\"G3588\"* Luke|strong=\"G3065\"*, my|strong=\"G1473\"* fellow|strong=\"G4904\"* workers|strong=\"G4904\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"G3588\"* grace|strong=\"G5485\"* of|strong=\"G4151\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* be|strong=\"G3588\"* with|strong=\"G3326\"* your|strong=\"G2962\"* spirit|strong=\"G4151\"*. Amen." + } + ] + } + ] + }, + { + "name": "Hebrews", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "God|strong=\"G2316\"*, having|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* past|strong=\"G3819\"* spoken|strong=\"G2980\"* to|strong=\"G2532\"* the|strong=\"G1722\"* fathers|strong=\"G3962\"* through|strong=\"G1722\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"* at|strong=\"G1722\"* many|strong=\"G2980\"* times|strong=\"G4181\"* and|strong=\"G2532\"* in|strong=\"G1722\"* various ways|strong=\"G4187\"*," + }, + { + "verseNum": 2, + "text": "has|strong=\"G3739\"* at|strong=\"G1722\"* the|strong=\"G1722\"* end|strong=\"G2078\"* of|strong=\"G5207\"* these|strong=\"G3956\"* days|strong=\"G2250\"* spoken|strong=\"G2980\"* to|strong=\"G2532\"* us|strong=\"G4160\"* by|strong=\"G1223\"* his|strong=\"G3956\"* Son|strong=\"G5207\"*, whom|strong=\"G3739\"* he|strong=\"G2532\"* appointed|strong=\"G5087\"* heir|strong=\"G2818\"* of|strong=\"G5207\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, through|strong=\"G1223\"* whom|strong=\"G3739\"* also|strong=\"G2532\"* he|strong=\"G2532\"* made|strong=\"G4160\"* the|strong=\"G1722\"* worlds." + }, + { + "verseNum": 3, + "text": "His|strong=\"G1438\"* Son is|strong=\"G1510\"* the|strong=\"G1722\"* radiance|strong=\"G1391\"* of|strong=\"G1223\"* his|strong=\"G1438\"* glory|strong=\"G1391\"*, the|strong=\"G1722\"* very|strong=\"G2532\"* image|strong=\"G5481\"* of|strong=\"G1223\"* his|strong=\"G1438\"* substance|strong=\"G5287\"*, and|strong=\"G2532\"* upholding|strong=\"G5342\"* all|strong=\"G3956\"* things|strong=\"G3956\"* by|strong=\"G1223\"* the|strong=\"G1722\"* word|strong=\"G4487\"* of|strong=\"G1223\"* his|strong=\"G1438\"* power|strong=\"G1411\"*, who|strong=\"G3739\"*, when|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* by|strong=\"G1223\"* himself|strong=\"G1438\"* purified us|strong=\"G4160\"* of|strong=\"G1223\"* our|strong=\"G2532\"* sins, sat|strong=\"G2523\"* down|strong=\"G2523\"* on|strong=\"G1722\"* the|strong=\"G1722\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G1223\"* the|strong=\"G1722\"* Majesty|strong=\"G3172\"* on|strong=\"G1722\"* high|strong=\"G5308\"*," + }, + { + "verseNum": 4, + "text": "having become|strong=\"G1096\"* as|strong=\"G3745\"* much|strong=\"G5118\"* better|strong=\"G2909\"* than|strong=\"G3844\"* the|strong=\"G3588\"* angels as|strong=\"G3745\"* the|strong=\"G3588\"* more|strong=\"G1313\"* excellent|strong=\"G1313\"* name|strong=\"G3686\"* he|strong=\"G3588\"* has|strong=\"G1096\"* inherited|strong=\"G2816\"* is|strong=\"G3588\"* better|strong=\"G2909\"* than|strong=\"G3844\"* theirs." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* to|strong=\"G1519\"* which|strong=\"G3588\"* of|strong=\"G5207\"* the|strong=\"G2532\"* angels did|strong=\"G2532\"* he|strong=\"G2532\"* say|strong=\"G3004\"* at|strong=\"G1519\"* any|strong=\"G5101\"* time|strong=\"G4218\"*," + }, + { + "verseNum": 6, + "text": "When|strong=\"G3752\"* he|strong=\"G2532\"* again|strong=\"G3825\"* brings|strong=\"G1521\"* in|strong=\"G1519\"* the|strong=\"G2532\"* firstborn|strong=\"G4416\"* into|strong=\"G1519\"* the|strong=\"G2532\"* world|strong=\"G3625\"* he|strong=\"G2532\"* says|strong=\"G3004\"*, “Let|strong=\"G1161\"* all|strong=\"G3956\"* the|strong=\"G2532\"* angels of|strong=\"G2316\"* God|strong=\"G2316\"* worship|strong=\"G4352\"* him|strong=\"G3588\"*.”+ 1:6 Deuteronomy 32:43 LXX*" + }, + { + "verseNum": 7, + "text": "Of|strong=\"G4151\"* the|strong=\"G2532\"* angels he|strong=\"G2532\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* of|strong=\"G5207\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* he|strong=\"G2532\"* says," + }, + { + "verseNum": 9, + "text": "You|strong=\"G4771\"* have|strong=\"G2532\"* loved righteousness|strong=\"G1343\"* and|strong=\"G2532\"* hated|strong=\"G3404\"* iniquity;" + }, + { + "verseNum": 10, + "text": "And|strong=\"G2532\"*," + }, + { + "verseNum": 11, + "text": "They|strong=\"G2532\"* will|strong=\"G2532\"* perish, but|strong=\"G1161\"* you|strong=\"G4771\"* continue|strong=\"G1265\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"G4771\"* will|strong=\"G1510\"* roll|strong=\"G1667\"* them|strong=\"G3588\"* up|strong=\"G1667\"* like|strong=\"G5613\"* a|strong=\"G5613\"* mantle|strong=\"G4018\"*," + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* which|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1537\"* angels has|strong=\"G5101\"* he|strong=\"G1161\"* told|strong=\"G3004\"* at|strong=\"G4314\"* any|strong=\"G4314\"* time|strong=\"G4218\"*," + }, + { + "verseNum": 14, + "text": "Aren’t|strong=\"G3588\"* they|strong=\"G3588\"* all|strong=\"G3956\"* serving|strong=\"G1248\"* spirits|strong=\"G4151\"*, sent|strong=\"G4151\"* out|strong=\"G1519\"* to|strong=\"G1519\"* do|strong=\"G1510\"* service|strong=\"G1248\"* for|strong=\"G1519\"* the|strong=\"G1519\"* sake|strong=\"G1223\"* of|strong=\"G4151\"* those|strong=\"G3588\"* who|strong=\"G3588\"* will|strong=\"G3195\"* inherit|strong=\"G2816\"* salvation|strong=\"G4991\"*?" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G1223\"* we|strong=\"G2249\"* ought|strong=\"G1163\"* to|strong=\"G1163\"* pay|strong=\"G4337\"* greater attention|strong=\"G4337\"* to|strong=\"G1163\"* the|strong=\"G1223\"* things|strong=\"G3778\"* that|strong=\"G3588\"* were|strong=\"G3588\"* heard, lest|strong=\"G3379\"* perhaps|strong=\"G3379\"* we|strong=\"G2249\"* drift|strong=\"G3901\"* away|strong=\"G3901\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* the|strong=\"G2532\"* word|strong=\"G3056\"* spoken|strong=\"G2980\"* through|strong=\"G1223\"* angels proved|strong=\"G1096\"* steadfast, and|strong=\"G2532\"* every|strong=\"G3956\"* transgression|strong=\"G3847\"* and|strong=\"G2532\"* disobedience|strong=\"G3876\"* received|strong=\"G2983\"* a|strong=\"G1096\"* just|strong=\"G2532\"* penalty|strong=\"G3405\"*," + }, + { + "verseNum": 3, + "text": "how|strong=\"G4459\"* will|strong=\"G2962\"* we|strong=\"G2249\"* escape|strong=\"G1628\"* if|strong=\"G3748\"* we|strong=\"G2249\"* neglect so|strong=\"G1519\"* great|strong=\"G5082\"* a|strong=\"G1519\"* salvation|strong=\"G4991\"*—which|strong=\"G3588\"* at|strong=\"G1519\"* the|strong=\"G1519\"* first|strong=\"G3588\"* having been|strong=\"G2962\"* spoken|strong=\"G2980\"* through|strong=\"G1223\"* the|strong=\"G1519\"* Lord|strong=\"G2962\"*, was|strong=\"G3588\"* confirmed to|strong=\"G1519\"* us|strong=\"G1519\"* by|strong=\"G1223\"* those|strong=\"G3588\"* who|strong=\"G3588\"* heard," + }, + { + "verseNum": 4, + "text": "God|strong=\"G2316\"* also|strong=\"G2532\"* testifying with|strong=\"G2532\"* them|strong=\"G3588\"*, both|strong=\"G2532\"* by|strong=\"G2596\"* signs|strong=\"G4592\"* and|strong=\"G2532\"* wonders|strong=\"G5059\"*, by|strong=\"G2596\"* various|strong=\"G4164\"* works|strong=\"G1411\"* of|strong=\"G4151\"* power|strong=\"G1411\"*, and|strong=\"G2532\"* by|strong=\"G2596\"* gifts|strong=\"G3311\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, according|strong=\"G2596\"* to|strong=\"G2532\"* his|strong=\"G2532\"* own will|strong=\"G2316\"*?" + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* he|strong=\"G3739\"* didn’t|strong=\"G3588\"* subject|strong=\"G5293\"* the|strong=\"G3588\"* world|strong=\"G3625\"* to|strong=\"G3195\"* come|strong=\"G3195\"*, of|strong=\"G4012\"* which|strong=\"G3739\"* we|strong=\"G3739\"* speak|strong=\"G2980\"*, to|strong=\"G3195\"* angels." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* one|strong=\"G5100\"* has|strong=\"G5101\"* somewhere|strong=\"G4225\"* testified|strong=\"G1263\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 7, + "text": "You|strong=\"G2532\"* made|strong=\"G1642\"* him|strong=\"G2532\"* a|strong=\"G2532\"* little|strong=\"G1024\"* lower|strong=\"G1642\"* than|strong=\"G3844\"* the|strong=\"G2532\"* angels." + }, + { + "verseNum": 8, + "text": "You|strong=\"G1722\"* have|strong=\"G3956\"* put|strong=\"G5293\"* all|strong=\"G3956\"* things|strong=\"G3956\"* in|strong=\"G1722\"* subjection|strong=\"G5293\"* under|strong=\"G5270\"* his|strong=\"G3956\"* feet|strong=\"G4228\"*.”+ 2:8 Psalms 8:4-6 *" + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* we|strong=\"G2532\"* see|strong=\"G5092\"* him|strong=\"G3588\"* who|strong=\"G3588\"* has|strong=\"G2316\"* been|strong=\"G2532\"* made|strong=\"G2316\"* a|strong=\"G2532\"* little|strong=\"G1024\"* lower|strong=\"G1642\"* than|strong=\"G3844\"* the|strong=\"G2532\"* angels, Jesus|strong=\"G2424\"*, because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* suffering|strong=\"G3804\"* of|strong=\"G1223\"* death|strong=\"G2288\"* crowned|strong=\"G4737\"* with|strong=\"G3844\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* honor|strong=\"G5092\"*, that|strong=\"G3588\"* by|strong=\"G1223\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G1223\"* God|strong=\"G2316\"* he|strong=\"G2532\"* should|strong=\"G5100\"* taste|strong=\"G1089\"* of|strong=\"G1223\"* death|strong=\"G2288\"* for|strong=\"G5228\"* everyone|strong=\"G3956\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* became|strong=\"G4241\"* him|strong=\"G3588\"*, for|strong=\"G1063\"* whom|strong=\"G3739\"* are|strong=\"G3588\"* all|strong=\"G3956\"* things|strong=\"G3956\"* and|strong=\"G2532\"* through|strong=\"G1223\"* whom|strong=\"G3739\"* are|strong=\"G3588\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, in|strong=\"G1519\"* bringing many|strong=\"G4183\"* children|strong=\"G5207\"* to|strong=\"G1519\"* glory|strong=\"G1391\"*, to|strong=\"G1519\"* make|strong=\"G5048\"* the|strong=\"G2532\"* author of|strong=\"G5207\"* their|strong=\"G2532\"* salvation|strong=\"G4991\"* perfect|strong=\"G5048\"* through|strong=\"G1223\"* sufferings|strong=\"G3804\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* both|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3739\"* sanctifies and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3739\"* are|strong=\"G3588\"* sanctified|strong=\"G3956\"* are|strong=\"G3588\"* all|strong=\"G3956\"* from|strong=\"G1537\"* one|strong=\"G1520\"*, for|strong=\"G1063\"* which|strong=\"G3739\"* cause|strong=\"G1223\"* he|strong=\"G2532\"* is|strong=\"G3588\"* not|strong=\"G3756\"* ashamed|strong=\"G1870\"* to|strong=\"G2532\"* call|strong=\"G2564\"* them|strong=\"G3588\"* brothers,+ 2:11 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”*" + }, + { + "verseNum": 12, + "text": "saying|strong=\"G3004\"*," + }, + { + "verseNum": 13, + "text": "Again|strong=\"G3825\"*, “I|strong=\"G1473\"* will|strong=\"G2316\"* put|strong=\"G1325\"* my|strong=\"G3708\"* trust|strong=\"G3982\"* in|strong=\"G1909\"* him|strong=\"G3588\"*.” Again|strong=\"G3825\"*, “Behold|strong=\"G2400\"*, here|strong=\"G2400\"* I|strong=\"G1473\"* am|strong=\"G1510\"* with|strong=\"G2532\"* the|strong=\"G2532\"* children|strong=\"G3813\"* whom|strong=\"G3739\"* God|strong=\"G2316\"* has|strong=\"G2316\"* given|strong=\"G1325\"* me|strong=\"G1325\"*.”+ 2:13 Isaiah 8:18*" + }, + { + "verseNum": 14, + "text": "Since|strong=\"G1893\"* then|strong=\"G3767\"* the|strong=\"G2532\"* children|strong=\"G3813\"* have|strong=\"G2192\"* shared|strong=\"G2841\"* in|strong=\"G2532\"* flesh|strong=\"G4561\"* and|strong=\"G2532\"* blood, he|strong=\"G2532\"* also|strong=\"G2532\"* himself in|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G3778\"* way|strong=\"G1223\"* partook|strong=\"G3348\"* of|strong=\"G1223\"* the|strong=\"G2532\"* same|strong=\"G3778\"*, that|strong=\"G2443\"* through|strong=\"G1223\"* death|strong=\"G2288\"* he|strong=\"G2532\"* might|strong=\"G2532\"* bring|strong=\"G2532\"* to|strong=\"G2443\"* nothing him|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2192\"* the|strong=\"G2532\"* power|strong=\"G2904\"* of|strong=\"G1223\"* death|strong=\"G2288\"*, that|strong=\"G2443\"* is|strong=\"G1510\"*, the|strong=\"G2532\"* devil|strong=\"G1228\"*," + }, + { + "verseNum": 15, + "text": "and|strong=\"G2532\"* might|strong=\"G2532\"* deliver all|strong=\"G3956\"* of|strong=\"G1223\"* them|strong=\"G3588\"* who|strong=\"G3588\"* through|strong=\"G1223\"* fear|strong=\"G5401\"* of|strong=\"G1223\"* death|strong=\"G2288\"* were|strong=\"G1510\"* all|strong=\"G3956\"* their|strong=\"G2532\"* lifetime|strong=\"G2198\"* subject|strong=\"G1777\"* to|strong=\"G2532\"* bondage|strong=\"G1397\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* most certainly|strong=\"G1063\"*, he|strong=\"G1063\"* doesn’t give|strong=\"G1949\"* help|strong=\"G1949\"* to|strong=\"G3756\"* angels, but|strong=\"G1063\"* he|strong=\"G1063\"* gives|strong=\"G1949\"* help|strong=\"G1949\"* to|strong=\"G3756\"* the|strong=\"G1063\"* offspring+ 2:16 or, seed* of|strong=\"G4690\"* Abraham." + }, + { + "verseNum": 17, + "text": "Therefore|strong=\"G3606\"* he|strong=\"G2532\"* was|strong=\"G1096\"* obligated|strong=\"G3784\"* in|strong=\"G1519\"* all|strong=\"G3956\"* things|strong=\"G3956\"* to|strong=\"G1519\"* be|strong=\"G1096\"* made|strong=\"G1096\"* like|strong=\"G2596\"* his|strong=\"G3956\"* brothers, that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* become|strong=\"G1096\"* a|strong=\"G1096\"* merciful|strong=\"G1655\"* and|strong=\"G2532\"* faithful|strong=\"G4103\"* high|strong=\"G3956\"* priest in|strong=\"G1519\"* things|strong=\"G3956\"* pertaining|strong=\"G4314\"* to|strong=\"G1519\"* God|strong=\"G2316\"*, to|strong=\"G1519\"* make|strong=\"G1519\"* atonement for|strong=\"G1519\"* the|strong=\"G2532\"* sins of|strong=\"G2316\"* the|strong=\"G2532\"* people|strong=\"G2992\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* in|strong=\"G1722\"* that|strong=\"G3739\"* he|strong=\"G3739\"* himself has|strong=\"G3739\"* suffered|strong=\"G3958\"* being|strong=\"G1722\"* tempted|strong=\"G3985\"*, he|strong=\"G3739\"* is|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G1410\"* help those|strong=\"G3588\"* who|strong=\"G3739\"* are|strong=\"G3588\"* tempted|strong=\"G3985\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G3606\"*, holy brothers, partakers|strong=\"G3353\"* of|strong=\"G2532\"* a|strong=\"G2532\"* heavenly|strong=\"G2032\"* calling|strong=\"G2821\"*, consider|strong=\"G2657\"* the|strong=\"G2532\"* Apostle and|strong=\"G2532\"* High|strong=\"G2532\"* Priest of|strong=\"G2532\"* our|strong=\"G2424\"* confession|strong=\"G3671\"*: Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 2, + "text": "who|strong=\"G3588\"* was|strong=\"G1510\"* faithful|strong=\"G4103\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* appointed|strong=\"G4160\"* him|strong=\"G3588\"*, as|strong=\"G5613\"* also|strong=\"G2532\"* Moses|strong=\"G3475\"* was|strong=\"G1510\"* in|strong=\"G1722\"* all|strong=\"G3650\"* his|strong=\"G1722\"* house|strong=\"G3624\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* he|strong=\"G3778\"* has|strong=\"G2192\"* been|strong=\"G2192\"* counted|strong=\"G2192\"* worthy of|strong=\"G3844\"* more|strong=\"G4119\"* glory|strong=\"G1391\"* than|strong=\"G3844\"* Moses|strong=\"G3475\"*, because|strong=\"G1063\"* he|strong=\"G3778\"* who|strong=\"G3588\"* built|strong=\"G2680\"* the|strong=\"G2596\"* house|strong=\"G3624\"* has|strong=\"G2192\"* more|strong=\"G4119\"* honor|strong=\"G5092\"* than|strong=\"G3844\"* the|strong=\"G2596\"* house|strong=\"G3624\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* every|strong=\"G3956\"* house|strong=\"G3624\"* is|strong=\"G3588\"* built|strong=\"G2680\"* by|strong=\"G5259\"* someone|strong=\"G5100\"*; but|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3588\"* built|strong=\"G2680\"* all|strong=\"G3956\"* things|strong=\"G3956\"* is|strong=\"G3588\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 5, + "text": "Moses|strong=\"G3475\"* indeed|strong=\"G2532\"* was|strong=\"G3588\"* faithful|strong=\"G4103\"* in|strong=\"G1722\"* all|strong=\"G3650\"* his|strong=\"G1519\"* house|strong=\"G3624\"* as|strong=\"G5613\"* a|strong=\"G5613\"* servant|strong=\"G2324\"*, for|strong=\"G1519\"* a|strong=\"G5613\"* testimony|strong=\"G3142\"* of|strong=\"G2532\"* those|strong=\"G3588\"* things|strong=\"G3588\"* which|strong=\"G3588\"* were|strong=\"G3588\"* afterward to|strong=\"G1519\"* be|strong=\"G2532\"* spoken|strong=\"G2980\"*," + }, + { + "verseNum": 6, + "text": "but|strong=\"G1161\"* Christ|strong=\"G5547\"*+ 3:6 “Christ” means “Anointed One”.* is|strong=\"G1510\"* faithful as|strong=\"G5613\"* a|strong=\"G5613\"* Son|strong=\"G5207\"* over|strong=\"G1909\"* his|strong=\"G1909\"* house|strong=\"G3624\"*. We|strong=\"G2249\"* are|strong=\"G1510\"* his|strong=\"G1909\"* house|strong=\"G3624\"*, if|strong=\"G1437\"* we|strong=\"G2249\"* hold|strong=\"G2722\"* fast|strong=\"G2722\"* our|strong=\"G2532\"* confidence|strong=\"G3954\"* and|strong=\"G2532\"* the|strong=\"G2532\"* glorying|strong=\"G2745\"* of|strong=\"G5207\"* our|strong=\"G2532\"* hope|strong=\"G1680\"* firm to|strong=\"G2532\"* the|strong=\"G2532\"* end|strong=\"G5056\"*." + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"G1352\"*, even|strong=\"G2531\"* as|strong=\"G2531\"* the|strong=\"G3588\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 8, + "text": "don’t|strong=\"G3588\"* harden|strong=\"G4645\"* your|strong=\"G1722\"* hearts|strong=\"G2588\"* as|strong=\"G5613\"* in|strong=\"G1722\"* the|strong=\"G1722\"* rebellion," + }, + { + "verseNum": 9, + "text": "where|strong=\"G3757\"* your|strong=\"G2532\"* fathers|strong=\"G3962\"* tested|strong=\"G3985\"* me|strong=\"G1473\"* and|strong=\"G2532\"* tried|strong=\"G3985\"* me|strong=\"G1473\"*," + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"G1352\"* I|strong=\"G1473\"* was|strong=\"G3588\"* displeased with|strong=\"G2532\"* that|strong=\"G3588\"* generation|strong=\"G1074\"*," + }, + { + "verseNum": 11, + "text": "As|strong=\"G5613\"* I|strong=\"G1473\"* swore|strong=\"G3660\"* in|strong=\"G1722\"* my|strong=\"G1722\"* wrath|strong=\"G3709\"*," + }, + { + "verseNum": 12, + "text": "Beware, brothers, lest|strong=\"G3379\"* perhaps|strong=\"G3379\"* there|strong=\"G1510\"* might|strong=\"G2316\"* be|strong=\"G1510\"* in|strong=\"G1722\"* any|strong=\"G5100\"* one|strong=\"G5100\"* of|strong=\"G2316\"* you|strong=\"G5210\"* an|strong=\"G1722\"* evil|strong=\"G4190\"* heart|strong=\"G2588\"* of|strong=\"G2316\"* unbelief, in|strong=\"G1722\"* falling away from|strong=\"G3588\"* the|strong=\"G1722\"* living|strong=\"G2198\"* God|strong=\"G2316\"*;" + }, + { + "verseNum": 13, + "text": "but|strong=\"G3361\"* exhort|strong=\"G3870\"* one|strong=\"G5100\"* another|strong=\"G1438\"* day|strong=\"G2250\"* by|strong=\"G1537\"* day|strong=\"G2250\"*, so|strong=\"G2443\"* long|strong=\"G2250\"* as|strong=\"G2596\"* it|strong=\"G3739\"* is|strong=\"G3588\"* called|strong=\"G2564\"* “today|strong=\"G4594\"*”, lest|strong=\"G3361\"* any|strong=\"G5100\"* one|strong=\"G5100\"* of|strong=\"G1537\"* you|strong=\"G5210\"* be|strong=\"G3361\"* hardened|strong=\"G4645\"* by|strong=\"G1537\"* the|strong=\"G1537\"* deceitfulness of|strong=\"G1537\"* sin." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* we|strong=\"G1437\"* have|strong=\"G1096\"* become|strong=\"G1096\"* partakers|strong=\"G3353\"* of|strong=\"G3588\"* Christ|strong=\"G5547\"*, if|strong=\"G1437\"* we|strong=\"G1437\"* hold|strong=\"G2722\"* the|strong=\"G3588\"* beginning of|strong=\"G3588\"* our|strong=\"G5547\"* confidence|strong=\"G5287\"* firm to|strong=\"G1096\"* the|strong=\"G3588\"* end|strong=\"G5056\"*," + }, + { + "verseNum": 15, + "text": "while|strong=\"G1722\"* it|strong=\"G1437\"* is|strong=\"G3588\"* said|strong=\"G3004\"*," + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* who|strong=\"G5101\"*, when|strong=\"G1831\"* they|strong=\"G3588\"* heard, rebelled|strong=\"G3893\"*? Wasn’t|strong=\"G3588\"* it|strong=\"G1063\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G5101\"* came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* Egypt led by|strong=\"G1223\"* Moses|strong=\"G3475\"*?" + }, + { + "verseNum": 17, + "text": "With|strong=\"G1722\"* whom|strong=\"G3739\"* was|strong=\"G3588\"* he|strong=\"G1161\"* displeased forty|strong=\"G5062\"* years|strong=\"G2094\"*? Wasn’t|strong=\"G3588\"* it|strong=\"G1161\"* with|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3739\"* sinned, whose|strong=\"G3739\"* bodies|strong=\"G2966\"* fell|strong=\"G4098\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"*?" + }, + { + "verseNum": 18, + "text": "To|strong=\"G1519\"* whom|strong=\"G5101\"* did|strong=\"G5101\"* he|strong=\"G1161\"* swear|strong=\"G3660\"* that|strong=\"G3588\"* they|strong=\"G1161\"* wouldn’t|strong=\"G3588\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* his|strong=\"G1519\"* rest|strong=\"G2663\"*, but|strong=\"G1161\"* to|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G5101\"* were|strong=\"G3588\"* disobedient?" + }, + { + "verseNum": 19, + "text": "We|strong=\"G3754\"* see that|strong=\"G3754\"* they|strong=\"G2532\"* weren’t able|strong=\"G1410\"* to|strong=\"G2532\"* enter|strong=\"G1525\"* in|strong=\"G1525\"* because|strong=\"G3754\"* of|strong=\"G1223\"* unbelief." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Let|strong=\"G3767\"*’s fear|strong=\"G5399\"* therefore|strong=\"G3767\"*, lest|strong=\"G3379\"* perhaps|strong=\"G3379\"* anyone|strong=\"G5100\"* of|strong=\"G1537\"* you|strong=\"G5210\"* should|strong=\"G5100\"* seem|strong=\"G1380\"* to|strong=\"G1519\"* have|strong=\"G5210\"* come|strong=\"G1525\"* short|strong=\"G5302\"* of|strong=\"G1537\"* a|strong=\"G1519\"* promise|strong=\"G1860\"* of|strong=\"G1537\"* entering|strong=\"G1525\"* into|strong=\"G1519\"* his|strong=\"G1519\"* rest|strong=\"G2663\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* indeed|strong=\"G2532\"* we|strong=\"G1063\"* have|strong=\"G2532\"* had|strong=\"G2532\"* good|strong=\"G2097\"* news|strong=\"G2097\"* preached|strong=\"G2097\"* to|strong=\"G2532\"* us|strong=\"G2097\"*, even|strong=\"G2532\"* as|strong=\"G2509\"* they|strong=\"G2532\"* also|strong=\"G2532\"* did|strong=\"G2532\"*, but|strong=\"G2532\"* the|strong=\"G2532\"* word|strong=\"G3056\"* they|strong=\"G2532\"* heard didn’t|strong=\"G3588\"* profit|strong=\"G5623\"* them|strong=\"G3588\"*, because|strong=\"G1063\"* it|strong=\"G2532\"* wasn’t|strong=\"G3588\"* mixed with|strong=\"G2532\"* faith|strong=\"G4102\"* by|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* heard." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* who|strong=\"G3588\"* have|strong=\"G1473\"* believed|strong=\"G4100\"* do|strong=\"G1096\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* that|strong=\"G3588\"* rest|strong=\"G2663\"*, even|strong=\"G2531\"* as|strong=\"G5613\"* he|strong=\"G3588\"* has|strong=\"G1096\"* said|strong=\"G3004\"*, “As|strong=\"G5613\"* I|strong=\"G1473\"* swore|strong=\"G3660\"* in|strong=\"G1722\"* my|strong=\"G1722\"* wrath|strong=\"G3709\"*, they|strong=\"G3588\"* will|strong=\"G1473\"* not|strong=\"G1487\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* my|strong=\"G1722\"* rest|strong=\"G2663\"*;”+ 4:3 Psalms 95:11 * although|strong=\"G2543\"* the|strong=\"G1722\"* works|strong=\"G2041\"* were|strong=\"G3588\"* finished|strong=\"G1096\"* from|strong=\"G3588\"* the|strong=\"G1722\"* foundation|strong=\"G2602\"* of|strong=\"G2041\"* the|strong=\"G1722\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* has|strong=\"G2316\"* said|strong=\"G3004\"* this|strong=\"G3588\"* somewhere|strong=\"G4225\"* about|strong=\"G4012\"* the|strong=\"G1722\"* seventh|strong=\"G1442\"* day|strong=\"G2250\"*, “God|strong=\"G2316\"* rested|strong=\"G2664\"* on|strong=\"G1722\"* the|strong=\"G1722\"* seventh|strong=\"G1442\"* day|strong=\"G2250\"* from|strong=\"G2532\"* all|strong=\"G3956\"* his|strong=\"G3956\"* works|strong=\"G2041\"*;”+ 4:4 Genesis 2:2*" + }, + { + "verseNum": 5, + "text": "and|strong=\"G2532\"* in|strong=\"G1722\"* this|strong=\"G3778\"* place|strong=\"G1722\"* again|strong=\"G3825\"*, “They|strong=\"G2532\"* will|strong=\"G2532\"* not|strong=\"G2532\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* my|strong=\"G1722\"* rest|strong=\"G2663\"*.”+ 4:5 Psalms 95:11*" + }, + { + "verseNum": 6, + "text": "Seeing|strong=\"G1893\"* therefore|strong=\"G3767\"* it|strong=\"G2532\"* remains that|strong=\"G3588\"* some|strong=\"G5100\"* should|strong=\"G5100\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* it|strong=\"G2532\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* to|strong=\"G1519\"* whom|strong=\"G3588\"* the|strong=\"G2532\"* good|strong=\"G2097\"* news|strong=\"G2097\"* was|strong=\"G3588\"* preached|strong=\"G2097\"* before|strong=\"G4386\"* failed|strong=\"G3756\"* to|strong=\"G1519\"* enter|strong=\"G1525\"* in|strong=\"G1519\"* because|strong=\"G1223\"* of|strong=\"G1223\"* disobedience," + }, + { + "verseNum": 7, + "text": "he|strong=\"G3588\"* again|strong=\"G3825\"* defines a|strong=\"G1722\"* certain|strong=\"G5100\"* day|strong=\"G2250\"*, “today|strong=\"G4594\"*”, saying|strong=\"G3004\"* through|strong=\"G1722\"* David|strong=\"G1138\"* so|strong=\"G5118\"* long|strong=\"G5550\"* a|strong=\"G1722\"* time|strong=\"G5550\"* afterward|strong=\"G3326\"* (just|strong=\"G2531\"* as|strong=\"G2531\"* has|strong=\"G5100\"* been|strong=\"G3361\"* said|strong=\"G3004\"*)," + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* Joshua|strong=\"G2424\"* had|strong=\"G2424\"* given|strong=\"G2664\"* them|strong=\"G1438\"* rest|strong=\"G2664\"*, he|strong=\"G3778\"* would|strong=\"G2980\"* not|strong=\"G3756\"* have|strong=\"G2980\"* spoken|strong=\"G2980\"* afterward|strong=\"G3326\"* of|strong=\"G4012\"* another|strong=\"G1438\"* day|strong=\"G2250\"*." + }, + { + "verseNum": 9, + "text": "There remains therefore a|strong=\"G2316\"* Sabbath|strong=\"G4520\"* rest|strong=\"G4520\"* for|strong=\"G2316\"* the|strong=\"G3588\"* people|strong=\"G2992\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* who|strong=\"G3588\"* has|strong=\"G2316\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* his|strong=\"G1519\"* rest|strong=\"G2663\"* has|strong=\"G2316\"* himself|strong=\"G2398\"* also|strong=\"G2532\"* rested|strong=\"G2664\"* from|strong=\"G2532\"* his|strong=\"G1519\"* works|strong=\"G2041\"*, as|strong=\"G5618\"* God|strong=\"G2316\"* did|strong=\"G2532\"* from|strong=\"G2532\"* his|strong=\"G1519\"*." + }, + { + "verseNum": 11, + "text": "Let|strong=\"G2443\"*’s therefore|strong=\"G3767\"* give diligence|strong=\"G4704\"* to|strong=\"G1519\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* that|strong=\"G2443\"* rest|strong=\"G2663\"*, lest|strong=\"G3361\"* anyone|strong=\"G5100\"* fall|strong=\"G4098\"* after|strong=\"G1722\"* the|strong=\"G1722\"* same|strong=\"G1565\"* example|strong=\"G5262\"* of|strong=\"G5100\"* disobedience." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* is|strong=\"G3588\"* living|strong=\"G2198\"* and|strong=\"G2532\"* active|strong=\"G1756\"*, and|strong=\"G2532\"* sharper|strong=\"G5114\"* than|strong=\"G5228\"* any|strong=\"G3956\"* two-edged|strong=\"G1366\"* sword|strong=\"G3162\"*, piercing|strong=\"G1338\"* even|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* dividing of|strong=\"G3056\"* soul|strong=\"G5590\"* and|strong=\"G2532\"* spirit|strong=\"G4151\"*, of|strong=\"G3056\"* both|strong=\"G2532\"* joints and|strong=\"G2532\"* marrow|strong=\"G3452\"*, and|strong=\"G2532\"* is|strong=\"G3588\"* able|strong=\"G2924\"* to|strong=\"G2532\"* discern the|strong=\"G2532\"* thoughts|strong=\"G1761\"* and|strong=\"G2532\"* intentions|strong=\"G1771\"* of|strong=\"G3056\"* the|strong=\"G2532\"* heart|strong=\"G2588\"*." + }, + { + "verseNum": 13, + "text": "There|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3756\"* creature|strong=\"G2937\"* that|strong=\"G3739\"* is|strong=\"G1510\"* hidden from|strong=\"G2532\"* his|strong=\"G3956\"* sight|strong=\"G1799\"*, but|strong=\"G1161\"* all|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G1510\"* naked|strong=\"G1131\"* and|strong=\"G2532\"* laid|strong=\"G2532\"* open|strong=\"G1131\"* before|strong=\"G1799\"* the|strong=\"G2532\"* eyes|strong=\"G3788\"* of|strong=\"G3056\"* him|strong=\"G3588\"* to|strong=\"G4314\"* whom|strong=\"G3739\"* we|strong=\"G2249\"* must|strong=\"G1510\"* give|strong=\"G1473\"* an|strong=\"G2532\"* account|strong=\"G3056\"*." + }, + { + "verseNum": 14, + "text": "Having|strong=\"G2192\"* then|strong=\"G3767\"* a|strong=\"G2192\"* great|strong=\"G3173\"* high|strong=\"G3173\"* priest who|strong=\"G3588\"* has|strong=\"G2192\"* passed|strong=\"G1330\"* through|strong=\"G1330\"* the|strong=\"G3588\"* heavens|strong=\"G3772\"*, Jesus|strong=\"G2424\"*, the|strong=\"G3588\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, let|strong=\"G3767\"*’s|strong=\"G2192\"* hold|strong=\"G2902\"* tightly to|strong=\"G2316\"* our|strong=\"G2316\"* confession|strong=\"G3671\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* a|strong=\"G2192\"* high|strong=\"G3956\"* priest who|strong=\"G3588\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* be|strong=\"G3756\"* touched with|strong=\"G2596\"* the|strong=\"G3956\"* feeling of|strong=\"G2596\"* our|strong=\"G3956\"* infirmities, but|strong=\"G1161\"* one|strong=\"G3956\"* who|strong=\"G3588\"* has|strong=\"G2192\"* been|strong=\"G2192\"* in|strong=\"G2596\"* all|strong=\"G3956\"* points|strong=\"G3956\"* tempted|strong=\"G3985\"* like|strong=\"G2596\"* we|strong=\"G2249\"* are|strong=\"G3588\"*, yet|strong=\"G1161\"* without|strong=\"G5565\"* sin." + }, + { + "verseNum": 16, + "text": "Let|strong=\"G2443\"*’s therefore|strong=\"G3767\"* draw|strong=\"G4334\"* near|strong=\"G4334\"* with|strong=\"G3326\"* boldness|strong=\"G3954\"* to|strong=\"G1519\"* the|strong=\"G2532\"* throne|strong=\"G2362\"* of|strong=\"G2532\"* grace|strong=\"G5485\"*, that|strong=\"G2443\"* we|strong=\"G2532\"* may|strong=\"G2532\"* receive|strong=\"G2983\"* mercy|strong=\"G1656\"* and|strong=\"G2532\"* may|strong=\"G2532\"* find|strong=\"G2147\"* grace|strong=\"G5485\"* for|strong=\"G1519\"* help in|strong=\"G1519\"* time|strong=\"G2121\"* of|strong=\"G2532\"* need|strong=\"G2121\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"G1063\"* every|strong=\"G3956\"* high|strong=\"G3956\"* priest|strong=\"G4374\"*, being|strong=\"G2532\"* taken|strong=\"G2983\"* from|strong=\"G1537\"* among|strong=\"G1537\"* men|strong=\"G3956\"*, is|strong=\"G3588\"* appointed|strong=\"G2525\"* for|strong=\"G1063\"* men|strong=\"G3956\"* in|strong=\"G2532\"* things|strong=\"G3956\"* pertaining|strong=\"G4314\"* to|strong=\"G4314\"* God|strong=\"G2316\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* may|strong=\"G2532\"* offer|strong=\"G4374\"* both|strong=\"G2532\"* gifts|strong=\"G1435\"* and|strong=\"G2532\"* sacrifices|strong=\"G2378\"* for|strong=\"G1063\"* sins." + }, + { + "verseNum": 2, + "text": "The|strong=\"G2532\"* high|strong=\"G2532\"* priest can|strong=\"G1410\"* deal|strong=\"G3356\"* gently|strong=\"G3356\"* with|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* ignorant and|strong=\"G2532\"* going|strong=\"G2532\"* astray|strong=\"G4105\"*, because|strong=\"G1893\"* he|strong=\"G2532\"* himself is|strong=\"G3588\"* also|strong=\"G2532\"* surrounded with|strong=\"G2532\"* weakness." + }, + { + "verseNum": 3, + "text": "Because|strong=\"G1223\"* of|strong=\"G4012\"* this|strong=\"G3588\"*, he|strong=\"G2532\"* must|strong=\"G3784\"* offer|strong=\"G4374\"* sacrifices for|strong=\"G1223\"* sins for|strong=\"G1223\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, as|strong=\"G2531\"* well|strong=\"G2532\"* as|strong=\"G2531\"* for|strong=\"G1223\"* himself|strong=\"G1438\"*." + }, + { + "verseNum": 4, + "text": "Nobody takes|strong=\"G2983\"* this|strong=\"G3588\"* honor|strong=\"G5092\"* on|strong=\"G3588\"* himself|strong=\"G1438\"*, but|strong=\"G2532\"* he|strong=\"G2532\"* is|strong=\"G3588\"* called|strong=\"G2564\"* by|strong=\"G5259\"* God|strong=\"G2316\"*, just|strong=\"G2531\"* like|strong=\"G2531\"* Aaron was|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "So|strong=\"G3779\"* also|strong=\"G2532\"* Christ|strong=\"G5547\"* didn’t|strong=\"G3588\"* glorify|strong=\"G1392\"* himself|strong=\"G1438\"* to|strong=\"G4314\"* be|strong=\"G1096\"* made|strong=\"G1096\"* a|strong=\"G1096\"* high|strong=\"G2532\"* priest, but|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3588\"* said|strong=\"G2980\"* to|strong=\"G4314\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 6, + "text": "As|strong=\"G2531\"* he|strong=\"G2532\"* says|strong=\"G3004\"* also|strong=\"G2532\"* in|strong=\"G1722\"* another|strong=\"G2087\"* place|strong=\"G1722\"*," + }, + { + "verseNum": 7, + "text": "He|strong=\"G2532\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* days|strong=\"G2250\"* of|strong=\"G1537\"* his|strong=\"G1722\"* flesh|strong=\"G4561\"*, having|strong=\"G2532\"* offered|strong=\"G4374\"* up|strong=\"G4374\"* prayers|strong=\"G1162\"* and|strong=\"G2532\"* petitions with|strong=\"G3326\"* strong|strong=\"G2478\"* crying|strong=\"G2906\"* and|strong=\"G2532\"* tears|strong=\"G1144\"* to|strong=\"G4314\"* him|strong=\"G3588\"* who|strong=\"G3739\"* was|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G4314\"* save|strong=\"G4982\"* him|strong=\"G3588\"* from|strong=\"G1537\"* death|strong=\"G2288\"*, and|strong=\"G2532\"* having|strong=\"G2532\"* been|strong=\"G2532\"* heard|strong=\"G1522\"* for|strong=\"G4314\"* his|strong=\"G1722\"* godly|strong=\"G2532\"* fear|strong=\"G2124\"*," + }, + { + "verseNum": 8, + "text": "though|strong=\"G2539\"* he|strong=\"G3739\"* was|strong=\"G1510\"* a|strong=\"G1510\"* Son|strong=\"G5207\"*, yet|strong=\"G2539\"* learned|strong=\"G3129\"* obedience|strong=\"G5218\"* by|strong=\"G3739\"* the|strong=\"G3588\"* things|strong=\"G3588\"* which|strong=\"G3739\"* he|strong=\"G3739\"* suffered|strong=\"G3958\"*." + }, + { + "verseNum": 9, + "text": "Having|strong=\"G2532\"* been|strong=\"G1096\"* made|strong=\"G1096\"* perfect|strong=\"G5048\"*, he|strong=\"G2532\"* became|strong=\"G1096\"* to|strong=\"G2532\"* all|strong=\"G3956\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* obey|strong=\"G5219\"* him|strong=\"G3588\"* the|strong=\"G2532\"* author of|strong=\"G2532\"* eternal salvation|strong=\"G4991\"*," + }, + { + "verseNum": 10, + "text": "named by|strong=\"G5259\"* God|strong=\"G2316\"* a|strong=\"G5259\"* high|strong=\"G2316\"* priest after|strong=\"G2596\"* the|strong=\"G2596\"* order|strong=\"G5010\"* of|strong=\"G5259\"* Melchizedek|strong=\"G3198\"*." + }, + { + "verseNum": 11, + "text": "About|strong=\"G4012\"* him|strong=\"G3588\"* we|strong=\"G2249\"* have|strong=\"G2532\"* many|strong=\"G4183\"* words|strong=\"G3056\"* to|strong=\"G2532\"* say|strong=\"G3004\"*, and|strong=\"G2532\"* hard|strong=\"G4183\"* to|strong=\"G2532\"* interpret, seeing|strong=\"G1893\"* you|strong=\"G3739\"* have|strong=\"G2532\"* become|strong=\"G1096\"* dull|strong=\"G3576\"* of|strong=\"G4012\"* hearing." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* although|strong=\"G5210\"* by|strong=\"G1223\"* this|strong=\"G3588\"* time|strong=\"G5550\"* you|strong=\"G5210\"* should|strong=\"G5100\"* be|strong=\"G1096\"* teachers|strong=\"G1320\"*, you|strong=\"G5210\"* again|strong=\"G3825\"* need|strong=\"G5532\"* to|strong=\"G2532\"* have|strong=\"G2192\"* someone|strong=\"G5100\"* teach|strong=\"G1321\"* you|strong=\"G5210\"* the|strong=\"G2532\"* rudiments|strong=\"G4747\"* of|strong=\"G1223\"* the|strong=\"G2532\"* first|strong=\"G3588\"* principles|strong=\"G4747\"* of|strong=\"G1223\"* the|strong=\"G2532\"* revelations of|strong=\"G1223\"* God|strong=\"G2316\"*. You|strong=\"G5210\"* have|strong=\"G2192\"* come|strong=\"G1096\"* to|strong=\"G2532\"* need|strong=\"G5532\"* milk|strong=\"G1051\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* solid|strong=\"G4731\"* food|strong=\"G5160\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* lives on|strong=\"G3588\"* milk|strong=\"G1051\"* is|strong=\"G1510\"* not|strong=\"G1510\"* experienced in|strong=\"G3956\"* the|strong=\"G3956\"* word|strong=\"G3056\"* of|strong=\"G3056\"* righteousness|strong=\"G1343\"*, for|strong=\"G1063\"* he|strong=\"G3588\"* is|strong=\"G1510\"* a|strong=\"G1510\"* baby." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* solid|strong=\"G4731\"* food|strong=\"G5160\"* is|strong=\"G1510\"* for|strong=\"G1223\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* full|strong=\"G2192\"* grown, who|strong=\"G3588\"* by|strong=\"G1223\"* reason|strong=\"G1223\"* of|strong=\"G1223\"* use|strong=\"G1838\"* have|strong=\"G2192\"* their|strong=\"G2532\"* senses exercised|strong=\"G1128\"* to|strong=\"G4314\"* discern|strong=\"G1253\"* good|strong=\"G2570\"* and|strong=\"G2532\"* evil|strong=\"G2556\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G1352\"* leaving|strong=\"G3588\"* the|strong=\"G2532\"* teaching|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G2532\"* first|strong=\"G3588\"* principles of|strong=\"G3056\"* Christ|strong=\"G5547\"*, let|strong=\"G2532\"*’s press|strong=\"G5342\"* on|strong=\"G1909\"* to|strong=\"G2532\"* perfection|strong=\"G5047\"*—not|strong=\"G3361\"* laying|strong=\"G2598\"* again|strong=\"G3825\"* a|strong=\"G2532\"* foundation|strong=\"G2310\"* of|strong=\"G3056\"* repentance|strong=\"G3341\"* from|strong=\"G2532\"* dead|strong=\"G3498\"* works|strong=\"G2041\"*, of|strong=\"G3056\"* faith|strong=\"G4102\"* toward|strong=\"G1909\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 2, + "text": "of|strong=\"G2532\"* the|strong=\"G2532\"* teaching|strong=\"G1322\"* of|strong=\"G2532\"* baptisms, of|strong=\"G2532\"* laying|strong=\"G1936\"* on|strong=\"G5495\"* of|strong=\"G2532\"* hands|strong=\"G5495\"*, of|strong=\"G2532\"* resurrection of|strong=\"G2532\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, and|strong=\"G2532\"* of|strong=\"G2532\"* eternal judgment|strong=\"G2917\"*." + }, + { + "verseNum": 3, + "text": "This|strong=\"G3778\"* will|strong=\"G2316\"* we|strong=\"G1437\"* do|strong=\"G4160\"*, if|strong=\"G1437\"* God|strong=\"G2316\"* permits|strong=\"G2010\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* concerning those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* once enlightened|strong=\"G5461\"* and|strong=\"G2532\"* tasted|strong=\"G1089\"* of|strong=\"G4151\"* the|strong=\"G2532\"* heavenly|strong=\"G2032\"* gift|strong=\"G1431\"*, and|strong=\"G2532\"* were|strong=\"G3588\"* made|strong=\"G1096\"* partakers|strong=\"G3353\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*," + }, + { + "verseNum": 5, + "text": "and|strong=\"G2532\"* tasted|strong=\"G1089\"* the|strong=\"G2532\"* good|strong=\"G2570\"* word|strong=\"G4487\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* the|strong=\"G2532\"* powers|strong=\"G1411\"* of|strong=\"G2316\"* the|strong=\"G2532\"* age to|strong=\"G2532\"* come|strong=\"G3195\"*," + }, + { + "verseNum": 6, + "text": "and|strong=\"G2532\"* then|strong=\"G2532\"* fell|strong=\"G2532\"* away|strong=\"G3895\"*, it|strong=\"G2532\"* is|strong=\"G3588\"* impossible to|strong=\"G1519\"* renew them|strong=\"G3588\"* again|strong=\"G3825\"* to|strong=\"G1519\"* repentance|strong=\"G3341\"*; seeing they|strong=\"G2532\"* crucify the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"* for|strong=\"G1519\"* themselves|strong=\"G1438\"* again|strong=\"G3825\"*, and|strong=\"G2532\"* put|strong=\"G3856\"* him|strong=\"G3588\"* to|strong=\"G1519\"* open|strong=\"G3856\"* shame|strong=\"G3856\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* the|strong=\"G2532\"* land|strong=\"G1093\"* which|strong=\"G3739\"* has|strong=\"G2316\"* drunk|strong=\"G4095\"* the|strong=\"G2532\"* rain|strong=\"G5205\"* that|strong=\"G3739\"* comes|strong=\"G2064\"* often|strong=\"G4178\"* on|strong=\"G1909\"* it|strong=\"G2532\"* and|strong=\"G2532\"* produces a|strong=\"G2532\"* crop suitable|strong=\"G3588\"* for|strong=\"G1063\"* them|strong=\"G3588\"* for|strong=\"G1063\"* whose|strong=\"G3739\"* sake|strong=\"G1223\"* it|strong=\"G2532\"* is|strong=\"G3588\"* also|strong=\"G2532\"* tilled|strong=\"G1090\"*, receives|strong=\"G3335\"* blessing|strong=\"G2129\"* from|strong=\"G2064\"* God|strong=\"G2316\"*;" + }, + { + "verseNum": 8, + "text": "but|strong=\"G1161\"* if|strong=\"G2532\"* it|strong=\"G2532\"* bears thorns and|strong=\"G2532\"* thistles|strong=\"G5146\"*, it|strong=\"G2532\"* is|strong=\"G3588\"* rejected and|strong=\"G2532\"* near|strong=\"G1451\"* being|strong=\"G2532\"* cursed|strong=\"G2671\"*, whose|strong=\"G3739\"* end|strong=\"G5056\"* is|strong=\"G3588\"* to|strong=\"G1519\"* be|strong=\"G2532\"* burned|strong=\"G2740\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"*, beloved, we|strong=\"G2532\"* are|strong=\"G3588\"* persuaded|strong=\"G3982\"* of|strong=\"G4012\"* better|strong=\"G2909\"* things|strong=\"G3588\"* for|strong=\"G4012\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G3588\"* accompany|strong=\"G2192\"* salvation|strong=\"G4991\"*, even|strong=\"G2532\"* though|strong=\"G1487\"* we|strong=\"G2532\"* speak|strong=\"G2980\"* like|strong=\"G3779\"* this|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* God|strong=\"G2316\"* is|strong=\"G3588\"* not|strong=\"G3756\"* unrighteous, so|strong=\"G2532\"* as|strong=\"G1519\"* to|strong=\"G1519\"* forget|strong=\"G1950\"* your|strong=\"G2532\"* work|strong=\"G2041\"* and|strong=\"G2532\"* the|strong=\"G2532\"* labor|strong=\"G2041\"* of|strong=\"G2316\"* love which|strong=\"G3739\"* you|strong=\"G5210\"* showed toward|strong=\"G1519\"* his|strong=\"G1519\"* name|strong=\"G3686\"*, in|strong=\"G1519\"* that|strong=\"G3739\"* you|strong=\"G5210\"* served|strong=\"G1247\"* the|strong=\"G2532\"* saints, and|strong=\"G2532\"* still do|strong=\"G2532\"* serve|strong=\"G1247\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "We|strong=\"G1161\"* desire|strong=\"G1937\"* that|strong=\"G3588\"* each|strong=\"G1538\"* one|strong=\"G1538\"* of|strong=\"G1680\"* you|strong=\"G5210\"* may|strong=\"G5210\"* show|strong=\"G1731\"* the|strong=\"G1161\"* same diligence|strong=\"G4710\"* to|strong=\"G4314\"* the|strong=\"G1161\"* fullness of|strong=\"G1680\"* hope|strong=\"G1680\"* even|strong=\"G1161\"* to|strong=\"G4314\"* the|strong=\"G1161\"* end|strong=\"G5056\"*," + }, + { + "verseNum": 12, + "text": "that|strong=\"G2443\"* you|strong=\"G2532\"* won’t|strong=\"G3588\"* be|strong=\"G1096\"* sluggish|strong=\"G3576\"*, but|strong=\"G1161\"* imitators|strong=\"G3402\"* of|strong=\"G1223\"* those|strong=\"G3588\"* who|strong=\"G3588\"* through|strong=\"G1223\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* perseverance|strong=\"G3115\"* inherited|strong=\"G2816\"* the|strong=\"G2532\"* promises|strong=\"G1860\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* when|strong=\"G2192\"* God|strong=\"G2316\"* made|strong=\"G1861\"* a|strong=\"G2192\"* promise|strong=\"G1861\"* to|strong=\"G2596\"* Abraham, since|strong=\"G1893\"* he|strong=\"G3588\"* could|strong=\"G2192\"* swear|strong=\"G3660\"* by|strong=\"G2596\"* no|strong=\"G3762\"* one|strong=\"G3762\"* greater|strong=\"G3173\"*, he|strong=\"G3588\"* swore|strong=\"G3660\"* by|strong=\"G2596\"* himself|strong=\"G1438\"*," + }, + { + "verseNum": 14, + "text": "saying|strong=\"G3004\"*, “Surely|strong=\"G3375\"* blessing|strong=\"G2127\"* I|strong=\"G2532\"* will|strong=\"G2532\"* bless|strong=\"G2127\"* you|strong=\"G4771\"*, and|strong=\"G2532\"* multiplying|strong=\"G4129\"* I|strong=\"G2532\"* will|strong=\"G2532\"* multiply|strong=\"G4129\"* you|strong=\"G4771\"*.”+ 6:14 Genesis 22:17*" + }, + { + "verseNum": 15, + "text": "Thus|strong=\"G3779\"*, having|strong=\"G2532\"* patiently|strong=\"G3114\"* endured|strong=\"G3114\"*, he|strong=\"G2532\"* obtained|strong=\"G2013\"* the|strong=\"G2532\"* promise|strong=\"G1860\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* men|strong=\"G3956\"* indeed|strong=\"G2532\"* swear|strong=\"G3660\"* by|strong=\"G2596\"* a|strong=\"G2532\"* greater|strong=\"G3173\"* one|strong=\"G3956\"*, and|strong=\"G2532\"* in|strong=\"G1519\"* every|strong=\"G3956\"* dispute of|strong=\"G2532\"* theirs the|strong=\"G2532\"* oath|strong=\"G3727\"* is|strong=\"G3588\"* final for|strong=\"G1063\"* confirmation." + }, + { + "verseNum": 17, + "text": "In|strong=\"G1722\"* this|strong=\"G3588\"* way|strong=\"G1722\"* God|strong=\"G2316\"*, being|strong=\"G1722\"* determined|strong=\"G1012\"* to|strong=\"G1722\"* show|strong=\"G1925\"* more|strong=\"G4054\"* abundantly|strong=\"G4054\"* to|strong=\"G1722\"* the|strong=\"G1722\"* heirs|strong=\"G2818\"* of|strong=\"G2316\"* the|strong=\"G1722\"* promise|strong=\"G1860\"* the|strong=\"G1722\"* immutability of|strong=\"G2316\"* his|strong=\"G1722\"* counsel|strong=\"G1012\"*, interposed|strong=\"G3315\"* with|strong=\"G1722\"* an|strong=\"G1722\"* oath|strong=\"G3727\"*," + }, + { + "verseNum": 18, + "text": "that|strong=\"G2443\"* by|strong=\"G1223\"* two|strong=\"G1417\"* immutable things|strong=\"G3588\"*, in|strong=\"G1722\"* which|strong=\"G3739\"* it|strong=\"G3739\"* is|strong=\"G3588\"* impossible for|strong=\"G1223\"* God|strong=\"G2316\"* to|strong=\"G2443\"* lie|strong=\"G5574\"*, we|strong=\"G3739\"* may|strong=\"G2443\"* have|strong=\"G2192\"* a|strong=\"G2192\"* strong|strong=\"G2478\"* encouragement|strong=\"G3874\"*, who|strong=\"G3739\"* have|strong=\"G2192\"* fled|strong=\"G2703\"* for|strong=\"G1223\"* refuge|strong=\"G2703\"* to|strong=\"G2443\"* take|strong=\"G2902\"* hold|strong=\"G2902\"* of|strong=\"G1223\"* the|strong=\"G1722\"* hope|strong=\"G1680\"* set|strong=\"G4295\"* before|strong=\"G1722\"* us|strong=\"G4295\"*." + }, + { + "verseNum": 19, + "text": "This|strong=\"G3588\"* hope|strong=\"G2532\"* we|strong=\"G3739\"* have|strong=\"G2192\"* as|strong=\"G5613\"* an|strong=\"G2192\"* anchor of|strong=\"G2532\"* the|strong=\"G2532\"* soul|strong=\"G5590\"*, a|strong=\"G2192\"* hope|strong=\"G2532\"* both|strong=\"G2532\"* sure and|strong=\"G2532\"* steadfast and|strong=\"G2532\"* entering|strong=\"G1525\"* into|strong=\"G1519\"* that|strong=\"G3739\"* which|strong=\"G3739\"* is|strong=\"G3588\"* within|strong=\"G2082\"* the|strong=\"G2532\"* veil|strong=\"G2665\"*," + }, + { + "verseNum": 20, + "text": "where|strong=\"G3699\"* as|strong=\"G1519\"* a|strong=\"G1096\"* forerunner|strong=\"G4274\"* Jesus|strong=\"G2424\"* entered|strong=\"G1525\"* for|strong=\"G1519\"* us|strong=\"G1519\"*, having become|strong=\"G1096\"* a|strong=\"G1096\"* high priest forever|strong=\"G1519\"* after|strong=\"G2596\"* the|strong=\"G1519\"* order|strong=\"G5010\"* of|strong=\"G2596\"* Melchizedek|strong=\"G3198\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* Melchizedek|strong=\"G3198\"*, king|strong=\"G3588\"* of|strong=\"G2316\"* Salem|strong=\"G4532\"*, priest|strong=\"G2409\"* of|strong=\"G2316\"* God|strong=\"G2316\"* Most|strong=\"G5310\"* High|strong=\"G5310\"*, who|strong=\"G3588\"* met|strong=\"G4876\"* Abraham returning|strong=\"G5290\"* from|strong=\"G2532\"* the|strong=\"G2532\"* slaughter|strong=\"G2871\"* of|strong=\"G2316\"* the|strong=\"G2532\"* kings|strong=\"G3588\"* and|strong=\"G2532\"* blessed|strong=\"G2127\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 2, + "text": "to|strong=\"G2532\"* whom|strong=\"G3739\"* also|strong=\"G2532\"* Abraham divided|strong=\"G3307\"* a|strong=\"G2532\"* tenth|strong=\"G1181\"* part|strong=\"G1181\"* of|strong=\"G2532\"* all|strong=\"G3956\"* (being|strong=\"G1510\"* first|strong=\"G4413\"*, by|strong=\"G2532\"* interpretation|strong=\"G2059\"*, “king of|strong=\"G2532\"* righteousness|strong=\"G1343\"*”, and|strong=\"G2532\"* then|strong=\"G2532\"* also|strong=\"G2532\"* “king of|strong=\"G2532\"* Salem|strong=\"G4532\"*”, which|strong=\"G3739\"* means|strong=\"G1510\"* “king of|strong=\"G2532\"* peace|strong=\"G1515\"*”," + }, + { + "verseNum": 3, + "text": "without|strong=\"G2316\"* father, without|strong=\"G2316\"* mother, without|strong=\"G2316\"* genealogy, having|strong=\"G2192\"* neither|strong=\"G3383\"* beginning of|strong=\"G5207\"* days|strong=\"G2250\"* nor|strong=\"G3383\"* end|strong=\"G5056\"* of|strong=\"G5207\"* life|strong=\"G2222\"*, but|strong=\"G1161\"* made|strong=\"G2316\"* like|strong=\"G5207\"* the|strong=\"G1519\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*), remains|strong=\"G3306\"* a|strong=\"G2192\"* priest|strong=\"G2409\"* continually|strong=\"G1336\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"G1161\"* consider|strong=\"G2334\"* how|strong=\"G1161\"* great|strong=\"G4080\"* this|strong=\"G3778\"* man|strong=\"G3778\"* was|strong=\"G3588\"*, to|strong=\"G2532\"* whom|strong=\"G3739\"* even|strong=\"G2532\"* Abraham the|strong=\"G2532\"* patriarch|strong=\"G3966\"* gave|strong=\"G1325\"* a|strong=\"G2532\"* tenth|strong=\"G1181\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* best plunder." + }, + { + "verseNum": 5, + "text": "They|strong=\"G2532\"* indeed|strong=\"G2532\"* of|strong=\"G1537\"* the|strong=\"G2532\"* sons|strong=\"G5207\"* of|strong=\"G1537\"* Levi|strong=\"G3017\"* who|strong=\"G3588\"* receive|strong=\"G2983\"* the|strong=\"G2532\"* priest’s|strong=\"G2192\"* office|strong=\"G2405\"* have|strong=\"G2192\"* a|strong=\"G2192\"* commandment|strong=\"G1785\"* to|strong=\"G2532\"* take|strong=\"G2983\"* tithes from|strong=\"G1537\"* the|strong=\"G2532\"* people|strong=\"G2992\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* law|strong=\"G3551\"*, that|strong=\"G3588\"* is|strong=\"G1510\"*, of|strong=\"G1537\"* their|strong=\"G2532\"* brothers, though|strong=\"G2539\"* these|strong=\"G3778\"* have|strong=\"G2192\"* come|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* body of|strong=\"G1537\"* Abraham," + }, + { + "verseNum": 6, + "text": "but|strong=\"G1161\"* he|strong=\"G2532\"* whose|strong=\"G3588\"* genealogy|strong=\"G1075\"* is|strong=\"G3588\"* not|strong=\"G3361\"* counted|strong=\"G2192\"* from|strong=\"G1537\"* them|strong=\"G3588\"* has|strong=\"G2192\"* accepted tithes|strong=\"G1183\"* from|strong=\"G1537\"* Abraham, and|strong=\"G2532\"* has|strong=\"G2192\"* blessed|strong=\"G2127\"* him|strong=\"G3588\"* who|strong=\"G3588\"* has|strong=\"G2192\"* the|strong=\"G2532\"* promises|strong=\"G1860\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* without|strong=\"G5565\"* any|strong=\"G3956\"* dispute the|strong=\"G3956\"* lesser|strong=\"G1640\"* is|strong=\"G3588\"* blessed|strong=\"G2127\"* by|strong=\"G5259\"* the|strong=\"G3956\"* greater|strong=\"G2909\"*." + }, + { + "verseNum": 8, + "text": "Here|strong=\"G5602\"* people|strong=\"G2983\"* who|strong=\"G3748\"* die receive|strong=\"G2983\"* tithes|strong=\"G1181\"*, but|strong=\"G1161\"* there|strong=\"G1563\"* one|strong=\"G3303\"* receives|strong=\"G2983\"* tithes|strong=\"G1181\"* of|strong=\"G2532\"* whom|strong=\"G1161\"* it|strong=\"G2532\"* is|strong=\"G3748\"* testified|strong=\"G3140\"* that|strong=\"G3754\"* he|strong=\"G2532\"* lives|strong=\"G2198\"*." + }, + { + "verseNum": 9, + "text": "We|strong=\"G2532\"* can|strong=\"G3004\"* say|strong=\"G3004\"* that|strong=\"G3588\"* through|strong=\"G1223\"* Abraham even|strong=\"G2532\"* Levi|strong=\"G3018\"*, who|strong=\"G3588\"* receives|strong=\"G2983\"* tithes|strong=\"G1181\"*, has|strong=\"G2532\"* paid|strong=\"G1183\"* tithes|strong=\"G1181\"*," + }, + { + "verseNum": 10, + "text": "for|strong=\"G1063\"* he|strong=\"G3588\"* was|strong=\"G1510\"* yet|strong=\"G2089\"* in|strong=\"G1722\"* the|strong=\"G1722\"* body of|strong=\"G3962\"* his|strong=\"G1722\"* father|strong=\"G3962\"* when|strong=\"G3753\"* Melchizedek|strong=\"G3198\"* met|strong=\"G4876\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"G2532\"* if|strong=\"G1487\"* perfection|strong=\"G5050\"* was|strong=\"G1510\"* through|strong=\"G1223\"* the|strong=\"G2532\"* Levitical|strong=\"G3020\"* priesthood|strong=\"G2420\"* (for|strong=\"G1063\"* under|strong=\"G1909\"* it|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"* have|strong=\"G2532\"* received|strong=\"G3549\"* the|strong=\"G2532\"* law|strong=\"G3549\"*), what|strong=\"G5101\"* further|strong=\"G2089\"* need|strong=\"G5532\"* was|strong=\"G1510\"* there|strong=\"G2532\"* for|strong=\"G1063\"* another|strong=\"G2087\"* priest|strong=\"G2409\"* to|strong=\"G2532\"* arise after|strong=\"G2596\"* the|strong=\"G2532\"* order|strong=\"G5010\"* of|strong=\"G1223\"* Melchizedek|strong=\"G3198\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* be|strong=\"G1510\"* called|strong=\"G3004\"* after|strong=\"G2596\"* the|strong=\"G2532\"* order|strong=\"G5010\"* of|strong=\"G1223\"* Aaron?" + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* the|strong=\"G2532\"* priesthood|strong=\"G2420\"* being|strong=\"G1096\"* changed|strong=\"G3346\"*, there|strong=\"G2532\"* is|strong=\"G3588\"* of|strong=\"G1537\"* necessity a|strong=\"G1096\"* change|strong=\"G3331\"* made|strong=\"G1096\"* also|strong=\"G2532\"* in|strong=\"G2532\"* the|strong=\"G2532\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* he|strong=\"G3739\"* of|strong=\"G1909\"* whom|strong=\"G3739\"* these|strong=\"G3778\"* things|strong=\"G3778\"* are|strong=\"G3588\"* said|strong=\"G3004\"* belongs|strong=\"G3348\"* to|strong=\"G1909\"* another|strong=\"G2087\"* tribe|strong=\"G5443\"*, from|strong=\"G3588\"* which|strong=\"G3739\"* no|strong=\"G3762\"* one|strong=\"G3762\"* has|strong=\"G3739\"* officiated|strong=\"G4337\"* at|strong=\"G1909\"* the|strong=\"G1909\"* altar|strong=\"G2379\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* it|strong=\"G3754\"* is|strong=\"G3588\"* evident|strong=\"G4271\"* that|strong=\"G3754\"* our|strong=\"G2962\"* Lord|strong=\"G2962\"* has|strong=\"G2962\"* sprung out|strong=\"G1537\"* of|strong=\"G1537\"* Judah|strong=\"G2455\"*, about|strong=\"G4012\"* which|strong=\"G3739\"* tribe|strong=\"G5443\"* Moses|strong=\"G3475\"* spoke|strong=\"G2980\"* nothing|strong=\"G3762\"* concerning|strong=\"G4012\"* priesthood." + }, + { + "verseNum": 15, + "text": "This|strong=\"G3588\"* is|strong=\"G1510\"* yet|strong=\"G2089\"* more|strong=\"G2089\"* abundantly|strong=\"G4054\"* evident|strong=\"G2612\"*, if|strong=\"G1487\"* after|strong=\"G2596\"* the|strong=\"G2532\"* likeness|strong=\"G3665\"* of|strong=\"G2532\"* Melchizedek|strong=\"G3198\"* there|strong=\"G2532\"* arises another|strong=\"G2087\"* priest|strong=\"G2409\"*," + }, + { + "verseNum": 16, + "text": "who|strong=\"G3739\"* has|strong=\"G3739\"* been|strong=\"G1096\"* made|strong=\"G1096\"*, not|strong=\"G3756\"* after|strong=\"G2596\"* the|strong=\"G2596\"* law|strong=\"G3551\"* of|strong=\"G3551\"* a|strong=\"G1096\"* fleshly commandment|strong=\"G1785\"*, but|strong=\"G3551\"* after|strong=\"G2596\"* the|strong=\"G2596\"* power|strong=\"G1411\"* of|strong=\"G3551\"* an|strong=\"G1096\"* endless life|strong=\"G2222\"*;" + }, + { + "verseNum": 17, + "text": "for|strong=\"G1063\"* it|strong=\"G3754\"* is|strong=\"G3588\"* testified|strong=\"G3140\"*," + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* there|strong=\"G2532\"* is|strong=\"G3588\"* an|strong=\"G2532\"* annulling of|strong=\"G1223\"* a|strong=\"G1096\"* foregoing commandment|strong=\"G1785\"* because|strong=\"G1223\"* of|strong=\"G1223\"* its|strong=\"G1223\"* weakness and|strong=\"G2532\"* uselessness" + }, + { + "verseNum": 19, + "text": "(for|strong=\"G1063\"* the|strong=\"G1161\"* law|strong=\"G3551\"* made|strong=\"G5048\"* nothing|strong=\"G3762\"* perfect|strong=\"G5048\"*), and|strong=\"G1161\"* a|strong=\"G1161\"* bringing|strong=\"G1898\"* in|strong=\"G2316\"* of|strong=\"G1223\"* a|strong=\"G1161\"* better|strong=\"G2909\"* hope|strong=\"G1680\"*, through|strong=\"G1223\"* which|strong=\"G3739\"* we|strong=\"G3739\"* draw|strong=\"G1448\"* near|strong=\"G1448\"* to|strong=\"G1161\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 20, + "text": "Inasmuch|strong=\"G2596\"* as|strong=\"G3745\"* he|strong=\"G2532\"* was|strong=\"G1510\"* not|strong=\"G3756\"* made|strong=\"G1096\"* priest|strong=\"G2409\"* without|strong=\"G5565\"* the|strong=\"G2532\"* taking|strong=\"G1096\"* of|strong=\"G2532\"* an|strong=\"G2532\"* oath|strong=\"G3728\"*" + }, + { + "verseNum": 21, + "text": "(for|strong=\"G1519\"* they|strong=\"G2532\"* indeed|strong=\"G2532\"* have|strong=\"G2532\"* been|strong=\"G2532\"* made|strong=\"G3756\"* priests|strong=\"G2409\"* without|strong=\"G2532\"* an|strong=\"G2532\"* oath|strong=\"G3728\"*), but|strong=\"G1161\"* he|strong=\"G2532\"* with|strong=\"G3326\"* an|strong=\"G2532\"* oath|strong=\"G3728\"* by|strong=\"G1223\"* him|strong=\"G3588\"* that|strong=\"G3588\"* says|strong=\"G3004\"* of|strong=\"G1223\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 22, + "text": "By|strong=\"G2596\"* so|strong=\"G2532\"* much|strong=\"G5118\"*, Jesus|strong=\"G2424\"* has|strong=\"G1096\"* become|strong=\"G1096\"* the|strong=\"G2532\"* guarantee|strong=\"G1450\"* of|strong=\"G2532\"* a|strong=\"G1096\"* better|strong=\"G2909\"* covenant|strong=\"G1242\"*." + }, + { + "verseNum": 23, + "text": "Many|strong=\"G4183\"*, indeed|strong=\"G2532\"*, have|strong=\"G2532\"* been|strong=\"G1510\"* made|strong=\"G1096\"* priests|strong=\"G2409\"*, because|strong=\"G1223\"* they|strong=\"G2532\"* are|strong=\"G1510\"* hindered|strong=\"G2967\"* from|strong=\"G2532\"* continuing|strong=\"G3887\"* by|strong=\"G1223\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"*, because|strong=\"G1223\"* he|strong=\"G1161\"* lives|strong=\"G3306\"* forever|strong=\"G1519\"*, has|strong=\"G2192\"* his|strong=\"G1223\"* priesthood|strong=\"G2420\"* unchangeable." + }, + { + "verseNum": 25, + "text": "Therefore|strong=\"G1223\"* he|strong=\"G2532\"* is|strong=\"G3588\"* also|strong=\"G2532\"* able|strong=\"G1410\"* to|strong=\"G1519\"* save|strong=\"G4982\"* to|strong=\"G1519\"* the|strong=\"G2532\"* uttermost|strong=\"G3838\"* those|strong=\"G3588\"* who|strong=\"G3588\"* draw|strong=\"G4334\"* near|strong=\"G4334\"* to|strong=\"G1519\"* God|strong=\"G2316\"* through|strong=\"G1223\"* him|strong=\"G3588\"*, seeing|strong=\"G1223\"* that|strong=\"G3588\"* he|strong=\"G2532\"* lives|strong=\"G2198\"* forever|strong=\"G1519\"* to|strong=\"G1519\"* make|strong=\"G1519\"* intercession|strong=\"G1793\"* for|strong=\"G1519\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 26, + "text": "For|strong=\"G1063\"* such|strong=\"G5108\"* a|strong=\"G1096\"* high|strong=\"G5308\"* priest was|strong=\"G1096\"* fitting|strong=\"G4241\"* for|strong=\"G1063\"* us|strong=\"G1096\"*: holy|strong=\"G3741\"*, guiltless, undefiled, separated|strong=\"G5563\"* from|strong=\"G2532\"* sinners, and|strong=\"G2532\"* made|strong=\"G1096\"* higher|strong=\"G5308\"* than|strong=\"G2532\"* the|strong=\"G2532\"* heavens|strong=\"G3772\"*;" + }, + { + "verseNum": 27, + "text": "who|strong=\"G3739\"* doesn’t|strong=\"G3588\"* need|strong=\"G2192\"*, like|strong=\"G5618\"* those|strong=\"G3588\"* high priests, to|strong=\"G2596\"* offer|strong=\"G4374\"* up|strong=\"G4374\"* sacrifices|strong=\"G2378\"* daily|strong=\"G2250\"*, first|strong=\"G4386\"* for|strong=\"G1063\"* his|strong=\"G1438\"* own|strong=\"G2398\"* sins, and|strong=\"G2250\"* then|strong=\"G1899\"* for|strong=\"G1063\"* the|strong=\"G2596\"* sins of|strong=\"G2250\"* the|strong=\"G2596\"* people|strong=\"G2992\"*. For|strong=\"G1063\"* he|strong=\"G3739\"* did|strong=\"G4160\"* this|strong=\"G3778\"* once|strong=\"G2178\"* for|strong=\"G1063\"* all|strong=\"G2596\"*, when|strong=\"G3739\"* he|strong=\"G3739\"* offered|strong=\"G4374\"* up|strong=\"G4374\"* himself|strong=\"G1438\"*." + }, + { + "verseNum": 28, + "text": "For|strong=\"G1063\"* the|strong=\"G1519\"* law|strong=\"G3551\"* appoints|strong=\"G2525\"* men|strong=\"G3588\"* as|strong=\"G1519\"* high priests who|strong=\"G3588\"* have|strong=\"G2192\"* weakness, but|strong=\"G1161\"* the|strong=\"G1519\"* word|strong=\"G3056\"* of|strong=\"G5207\"* the|strong=\"G1519\"* oath|strong=\"G3728\"*, which|strong=\"G3588\"* came|strong=\"G3588\"* after|strong=\"G3326\"* the|strong=\"G1519\"* law|strong=\"G3551\"*, appoints|strong=\"G2525\"* a|strong=\"G2192\"* Son|strong=\"G5207\"* forever|strong=\"G1519\"* who|strong=\"G3588\"* has|strong=\"G2192\"* been|strong=\"G2192\"* perfected|strong=\"G5048\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* the|strong=\"G1722\"* things|strong=\"G3588\"* which|strong=\"G3739\"* we|strong=\"G3739\"* are|strong=\"G3588\"* saying|strong=\"G3004\"*, the|strong=\"G1722\"* main|strong=\"G2774\"* point|strong=\"G2774\"* is|strong=\"G3588\"* this|strong=\"G3588\"*: we|strong=\"G3739\"* have|strong=\"G2192\"* such|strong=\"G5108\"* a|strong=\"G2192\"* high priest, who|strong=\"G3739\"* sat|strong=\"G2523\"* down|strong=\"G2523\"* on|strong=\"G1909\"* the|strong=\"G1722\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G1909\"* the|strong=\"G1722\"* throne|strong=\"G2362\"* of|strong=\"G1909\"* the|strong=\"G1722\"* Majesty|strong=\"G3172\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavens|strong=\"G3772\"*," + }, + { + "verseNum": 2, + "text": "a|strong=\"G2532\"* servant|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* sanctuary and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* true|strong=\"G3588\"* tabernacle|strong=\"G4633\"* which|strong=\"G3739\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* pitched|strong=\"G4078\"*, not|strong=\"G3756\"* man|strong=\"G3739\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* every|strong=\"G3956\"* high|strong=\"G3956\"* priest|strong=\"G4374\"* is|strong=\"G3588\"* appointed|strong=\"G2525\"* to|strong=\"G1519\"* offer|strong=\"G4374\"* both|strong=\"G2532\"* gifts|strong=\"G1435\"* and|strong=\"G2532\"* sacrifices|strong=\"G2378\"*. Therefore|strong=\"G3606\"* it|strong=\"G2532\"* is|strong=\"G3588\"* necessary that|strong=\"G3739\"* this|strong=\"G3778\"* high|strong=\"G3956\"* priest|strong=\"G4374\"* also|strong=\"G2532\"* have|strong=\"G2192\"* something|strong=\"G5100\"* to|strong=\"G1519\"* offer|strong=\"G4374\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1909\"* if|strong=\"G1487\"* he|strong=\"G3588\"* were|strong=\"G1510\"* on|strong=\"G1909\"* earth|strong=\"G1093\"*, he|strong=\"G3588\"* would|strong=\"G1510\"* not|strong=\"G3761\"* be|strong=\"G1510\"* a|strong=\"G1510\"* priest|strong=\"G2409\"* at|strong=\"G1909\"* all|strong=\"G2596\"*, seeing there|strong=\"G1510\"* are|strong=\"G1510\"* priests|strong=\"G2409\"* who|strong=\"G3588\"* offer|strong=\"G4374\"* the|strong=\"G1909\"* gifts|strong=\"G1435\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1909\"* law|strong=\"G3551\"*," + }, + { + "verseNum": 5, + "text": "who|strong=\"G3588\"* serve|strong=\"G3000\"* a|strong=\"G2532\"* copy|strong=\"G5262\"* and|strong=\"G2532\"* shadow|strong=\"G4639\"* of|strong=\"G2532\"* the|strong=\"G1722\"* heavenly|strong=\"G2032\"* things|strong=\"G3956\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* Moses|strong=\"G3475\"* was|strong=\"G3588\"* warned|strong=\"G5537\"* by|strong=\"G1722\"* God|strong=\"G5537\"* when|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3588\"* about|strong=\"G3195\"* to|strong=\"G2532\"* make|strong=\"G4160\"* the|strong=\"G1722\"* tabernacle|strong=\"G4633\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* said|strong=\"G5346\"*, “See|strong=\"G3708\"*, you|strong=\"G4771\"* shall|strong=\"G2532\"* make|strong=\"G4160\"* everything|strong=\"G3956\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* pattern|strong=\"G5179\"* that|strong=\"G3588\"* was|strong=\"G3588\"* shown|strong=\"G1166\"* to|strong=\"G2532\"* you|strong=\"G4771\"* on|strong=\"G1722\"* the|strong=\"G1722\"* mountain|strong=\"G3735\"*.”+ 8:5 Exodus 25:40*" + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* he|strong=\"G2532\"* has|strong=\"G3748\"* obtained|strong=\"G5177\"* a|strong=\"G2532\"* more|strong=\"G1313\"* excellent|strong=\"G1313\"* ministry|strong=\"G3009\"*, by|strong=\"G1909\"* as|strong=\"G3745\"* much|strong=\"G3745\"* as|strong=\"G3745\"* he|strong=\"G2532\"* is|strong=\"G1510\"* also|strong=\"G2532\"* the|strong=\"G2532\"* mediator|strong=\"G3316\"* of|strong=\"G2532\"* a|strong=\"G2532\"* better|strong=\"G2909\"* covenant|strong=\"G1242\"*, which|strong=\"G3748\"* on|strong=\"G1909\"* better|strong=\"G2909\"* promises|strong=\"G1860\"* has|strong=\"G3748\"* been|strong=\"G1510\"* given as|strong=\"G3745\"* law|strong=\"G3549\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* that|strong=\"G3588\"* first|strong=\"G4413\"* covenant had|strong=\"G1510\"* been|strong=\"G1510\"* faultless, then|strong=\"G1063\"* no|strong=\"G3756\"* place|strong=\"G5117\"* would|strong=\"G1510\"* have|strong=\"G1510\"* been|strong=\"G1510\"* sought|strong=\"G2212\"* for|strong=\"G1063\"* a|strong=\"G1510\"* second|strong=\"G1208\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* finding|strong=\"G3201\"* fault|strong=\"G3201\"* with|strong=\"G2532\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*," + }, + { + "verseNum": 9, + "text": "not|strong=\"G3756\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* covenant|strong=\"G1242\"* that|strong=\"G3754\"* I|strong=\"G1473\"* made|strong=\"G4160\"* with|strong=\"G1722\"* their|strong=\"G1438\"* fathers|strong=\"G3962\"*" + }, + { + "verseNum": 10, + "text": "“For|strong=\"G3754\"* this|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* covenant|strong=\"G1242\"* that|strong=\"G3754\"* I|strong=\"G1473\"* will|strong=\"G2316\"* make|strong=\"G1303\"* with|strong=\"G3326\"* the|strong=\"G2532\"* house|strong=\"G3624\"* of|strong=\"G2250\"* Israel|strong=\"G2474\"*" + }, + { + "verseNum": 11, + "text": "They|strong=\"G2532\"* will|strong=\"G2532\"* not|strong=\"G3756\"* teach|strong=\"G1321\"* every|strong=\"G3956\"* man|strong=\"G1538\"* his|strong=\"G3956\"* fellow|strong=\"G4177\"* citizen|strong=\"G4177\"*+ 8:11 TR reads “neighbor” instead of “fellow citizen”*" + }, + { + "verseNum": 12, + "text": "For|strong=\"G3754\"* I|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* merciful|strong=\"G2436\"* to|strong=\"G2532\"* their|strong=\"G2532\"* unrighteousness." + }, + { + "verseNum": 13, + "text": "In|strong=\"G1722\"* that|strong=\"G3588\"* he|strong=\"G2532\"* says|strong=\"G3004\"*, “A|strong=\"G2532\"* new|strong=\"G2537\"* covenant”, he|strong=\"G2532\"* has|strong=\"G2532\"* made|strong=\"G1161\"* the|strong=\"G1722\"* first|strong=\"G4413\"* obsolete|strong=\"G3822\"*. But|strong=\"G1161\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* becoming|strong=\"G3822\"* obsolete|strong=\"G3822\"* and|strong=\"G2532\"* grows aged is|strong=\"G3588\"* near|strong=\"G1451\"* to|strong=\"G2532\"* vanishing away." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G2532\"* indeed|strong=\"G2532\"* even|strong=\"G2532\"* the|strong=\"G2532\"* first|strong=\"G4413\"*+ 9:1 TR adds “tabernacle”* covenant had|strong=\"G2192\"* ordinances|strong=\"G1345\"* of|strong=\"G2532\"* divine|strong=\"G2999\"* service|strong=\"G2999\"* and|strong=\"G2532\"* an|strong=\"G2192\"* earthly|strong=\"G2886\"* sanctuary." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* a|strong=\"G2532\"* tabernacle|strong=\"G4633\"* was|strong=\"G3588\"* prepared|strong=\"G2680\"*. In|strong=\"G1722\"* the|strong=\"G1722\"* first|strong=\"G4413\"* part|strong=\"G2532\"* were|strong=\"G3588\"* the|strong=\"G1722\"* lamp stand, the|strong=\"G1722\"* table|strong=\"G5132\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* show bread, which|strong=\"G3739\"* is|strong=\"G3588\"* called|strong=\"G3004\"* the|strong=\"G1722\"* Holy Place|strong=\"G1722\"*." + }, + { + "verseNum": 3, + "text": "After|strong=\"G3326\"* the|strong=\"G1161\"* second|strong=\"G1208\"* veil|strong=\"G2665\"* was|strong=\"G3588\"* the|strong=\"G1161\"* tabernacle|strong=\"G4633\"* which|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G3004\"* the|strong=\"G1161\"* Holy of|strong=\"G3588\"* Holies," + }, + { + "verseNum": 4, + "text": "having|strong=\"G2192\"* a|strong=\"G2192\"* golden|strong=\"G5552\"* altar|strong=\"G2369\"* of|strong=\"G2532\"* incense|strong=\"G2369\"* and|strong=\"G2532\"* the|strong=\"G1722\"* ark|strong=\"G2787\"* of|strong=\"G2532\"* the|strong=\"G1722\"* covenant|strong=\"G1242\"* overlaid|strong=\"G4028\"* on|strong=\"G1722\"* all|strong=\"G2532\"* sides|strong=\"G3840\"* with|strong=\"G1722\"* gold|strong=\"G5553\"*, in|strong=\"G1722\"* which|strong=\"G3739\"* was|strong=\"G3588\"* a|strong=\"G2192\"* golden|strong=\"G5552\"* pot|strong=\"G4713\"* holding|strong=\"G2192\"* the|strong=\"G1722\"* manna|strong=\"G3131\"*, Aaron’s|strong=\"G2192\"* rod|strong=\"G4464\"* that|strong=\"G3739\"* budded, and|strong=\"G2532\"* the|strong=\"G1722\"* tablets|strong=\"G4109\"* of|strong=\"G2532\"* the|strong=\"G1722\"* covenant|strong=\"G1242\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"G1161\"* above|strong=\"G5231\"* it|strong=\"G1161\"* cherubim|strong=\"G5502\"* of|strong=\"G4012\"* glory|strong=\"G1391\"* overshadowing|strong=\"G2683\"* the|strong=\"G1161\"* mercy|strong=\"G2435\"* seat|strong=\"G2435\"*, of|strong=\"G4012\"* which|strong=\"G3739\"* things|strong=\"G3588\"* we|strong=\"G3739\"* can|strong=\"G3004\"*’t|strong=\"G3588\"* speak|strong=\"G3004\"* now|strong=\"G1161\"* in|strong=\"G2596\"* detail|strong=\"G3313\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"G1161\"* these|strong=\"G3778\"* things|strong=\"G3956\"* having been thus|strong=\"G3779\"* prepared|strong=\"G2680\"*, the|strong=\"G1519\"* priests|strong=\"G2409\"* go|strong=\"G1524\"* in|strong=\"G1519\"* continually|strong=\"G1223\"* into|strong=\"G1519\"* the|strong=\"G1519\"* first|strong=\"G4413\"* tabernacle|strong=\"G4633\"*, accomplishing|strong=\"G2005\"* the|strong=\"G1519\"* services," + }, + { + "verseNum": 7, + "text": "but|strong=\"G1161\"* into|strong=\"G1519\"* the|strong=\"G2532\"* second|strong=\"G1208\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest|strong=\"G4374\"* alone|strong=\"G3441\"*, once|strong=\"G3739\"* in|strong=\"G1519\"* the|strong=\"G2532\"* year|strong=\"G1763\"*, not|strong=\"G3756\"* without|strong=\"G5565\"* blood, which|strong=\"G3739\"* he|strong=\"G2532\"* offers|strong=\"G4374\"* for|strong=\"G1519\"* himself|strong=\"G1438\"* and|strong=\"G2532\"* for|strong=\"G1519\"* the|strong=\"G2532\"* errors of|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"G3588\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* is|strong=\"G3588\"* indicating|strong=\"G1213\"* this|strong=\"G3778\"*, that|strong=\"G3588\"* the|strong=\"G3588\"* way|strong=\"G3598\"* into the|strong=\"G3588\"* Holy|strong=\"G4151\"* Place wasn’t|strong=\"G3588\"* yet|strong=\"G2089\"* revealed|strong=\"G5319\"* while|strong=\"G3778\"* the|strong=\"G3588\"* first|strong=\"G4413\"* tabernacle|strong=\"G4633\"* was|strong=\"G3588\"* still|strong=\"G2089\"* standing|strong=\"G4714\"*." + }, + { + "verseNum": 9, + "text": "This|strong=\"G3588\"* is|strong=\"G3588\"* a|strong=\"G2532\"* symbol|strong=\"G3850\"* of|strong=\"G2532\"* the|strong=\"G2532\"* present|strong=\"G1764\"* age|strong=\"G2540\"*, where|strong=\"G3739\"* gifts|strong=\"G1435\"* and|strong=\"G2532\"* sacrifices|strong=\"G2378\"* are|strong=\"G3588\"* offered|strong=\"G4374\"* that|strong=\"G3739\"* are|strong=\"G3588\"* incapable|strong=\"G3361\"*, concerning|strong=\"G1519\"* the|strong=\"G2532\"* conscience|strong=\"G4893\"*, of|strong=\"G2532\"* making|strong=\"G2532\"* the|strong=\"G2532\"* worshiper|strong=\"G3000\"* perfect|strong=\"G5048\"*," + }, + { + "verseNum": 10, + "text": "being|strong=\"G2532\"* only|strong=\"G3440\"* (with|strong=\"G2532\"* foods|strong=\"G1033\"* and|strong=\"G2532\"* drinks|strong=\"G4188\"* and|strong=\"G2532\"* various|strong=\"G1313\"* washings) fleshly|strong=\"G4561\"* ordinances|strong=\"G1345\"*, imposed|strong=\"G1945\"* until|strong=\"G3360\"* a|strong=\"G2532\"* time|strong=\"G2540\"* of|strong=\"G2532\"* reformation|strong=\"G1357\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* Christ|strong=\"G5547\"* having|strong=\"G2532\"* come|strong=\"G1096\"* as|strong=\"G1161\"* a|strong=\"G1096\"* high|strong=\"G3173\"* priest of|strong=\"G1223\"* the|strong=\"G2532\"* coming|strong=\"G3854\"* good|strong=\"G1223\"* things|strong=\"G3778\"*, through|strong=\"G1223\"* the|strong=\"G2532\"* greater|strong=\"G3173\"* and|strong=\"G2532\"* more|strong=\"G3173\"* perfect|strong=\"G5046\"* tabernacle|strong=\"G4633\"*, not|strong=\"G3756\"* made|strong=\"G1096\"* with|strong=\"G1223\"* hands|strong=\"G5499\"*, that|strong=\"G3588\"* is|strong=\"G1510\"* to|strong=\"G2532\"* say|strong=\"G1223\"*, not|strong=\"G3756\"* of|strong=\"G1223\"* this|strong=\"G3778\"* creation|strong=\"G2937\"*," + }, + { + "verseNum": 12, + "text": "nor|strong=\"G3761\"* yet|strong=\"G2532\"* through|strong=\"G1223\"* the|strong=\"G2532\"* blood of|strong=\"G1223\"* goats|strong=\"G5131\"* and|strong=\"G2532\"* calves|strong=\"G3448\"*, but|strong=\"G1161\"* through|strong=\"G1223\"* his|strong=\"G1223\"* own|strong=\"G2398\"* blood, entered|strong=\"G1525\"* in|strong=\"G1519\"* once|strong=\"G2178\"* for|strong=\"G1519\"* all|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G2532\"* Holy Place, having|strong=\"G2532\"* obtained|strong=\"G2147\"* eternal redemption|strong=\"G3085\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* the|strong=\"G2532\"* blood of|strong=\"G2532\"* goats|strong=\"G5131\"* and|strong=\"G2532\"* bulls|strong=\"G5022\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* ashes|strong=\"G4700\"* of|strong=\"G2532\"* a|strong=\"G2532\"* heifer|strong=\"G1151\"* sprinkling|strong=\"G4472\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2532\"* been|strong=\"G2532\"* defiled|strong=\"G2840\"*, sanctify to|strong=\"G4314\"* the|strong=\"G2532\"* cleanness of|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*," + }, + { + "verseNum": 14, + "text": "how|strong=\"G4214\"* much|strong=\"G4214\"* more|strong=\"G3123\"* will|strong=\"G2316\"* the|strong=\"G1519\"* blood of|strong=\"G4151\"* Christ|strong=\"G5547\"*, who|strong=\"G3739\"* through|strong=\"G1223\"* the|strong=\"G1519\"* eternal Spirit|strong=\"G4151\"* offered|strong=\"G4374\"* himself|strong=\"G1438\"* without|strong=\"G1438\"* defect to|strong=\"G1519\"* God|strong=\"G2316\"*, cleanse|strong=\"G2511\"* your|strong=\"G1223\"* conscience|strong=\"G4893\"* from|strong=\"G3588\"* dead|strong=\"G3498\"* works|strong=\"G2041\"* to|strong=\"G1519\"* serve|strong=\"G3000\"* the|strong=\"G1519\"* living|strong=\"G2198\"* God|strong=\"G2316\"*?" + }, + { + "verseNum": 15, + "text": "For|strong=\"G1519\"* this|strong=\"G3778\"* reason|strong=\"G1223\"* he|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* mediator|strong=\"G3316\"* of|strong=\"G1223\"* a|strong=\"G1096\"* new|strong=\"G2537\"* covenant|strong=\"G1242\"*, since|strong=\"G1223\"* a|strong=\"G1096\"* death|strong=\"G2288\"* has|strong=\"G1096\"* occurred|strong=\"G1096\"* for|strong=\"G1519\"* the|strong=\"G2532\"* redemption of|strong=\"G1223\"* the|strong=\"G2532\"* transgressions|strong=\"G3847\"* that|strong=\"G3588\"* were|strong=\"G1510\"* under|strong=\"G1909\"* the|strong=\"G2532\"* first|strong=\"G4413\"* covenant|strong=\"G1242\"*, that|strong=\"G3588\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2532\"* been|strong=\"G1510\"* called|strong=\"G2564\"* may|strong=\"G2532\"* receive|strong=\"G2983\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* of|strong=\"G1223\"* the|strong=\"G2532\"* eternal inheritance|strong=\"G2817\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* where|strong=\"G3699\"* a|strong=\"G5342\"* last will and|strong=\"G3588\"* testament|strong=\"G1242\"* is|strong=\"G3588\"*, there|strong=\"G1063\"* must|strong=\"G3588\"* of|strong=\"G3588\"* necessity be|strong=\"G3588\"* the|strong=\"G3588\"* death|strong=\"G2288\"* of|strong=\"G3588\"* him|strong=\"G3588\"* who|strong=\"G3588\"* made|strong=\"G1303\"* it|strong=\"G1063\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* a|strong=\"G1909\"* will|strong=\"G3498\"* is|strong=\"G3588\"* in|strong=\"G1909\"* force|strong=\"G2480\"* where there|strong=\"G1063\"* has|strong=\"G2480\"* been|strong=\"G2480\"* death|strong=\"G3498\"*, for|strong=\"G1063\"* it|strong=\"G1063\"* is|strong=\"G3588\"* never|strong=\"G3379\"* in|strong=\"G1909\"* force|strong=\"G2480\"* while|strong=\"G3753\"* he|strong=\"G3588\"* who|strong=\"G3588\"* made|strong=\"G1303\"* it|strong=\"G1063\"* lives|strong=\"G2198\"*." + }, + { + "verseNum": 18, + "text": "Therefore|strong=\"G3606\"* even|strong=\"G3761\"* the|strong=\"G3588\"* first|strong=\"G4413\"* covenant has|strong=\"G3761\"* not|strong=\"G3761\"* been dedicated|strong=\"G1457\"* without|strong=\"G5565\"* blood." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* when|strong=\"G2532\"* every|strong=\"G3956\"* commandment|strong=\"G1785\"* had|strong=\"G2532\"* been|strong=\"G2532\"* spoken|strong=\"G2980\"* by|strong=\"G5259\"* Moses|strong=\"G3475\"* to|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* law|strong=\"G3551\"*, he|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* blood of|strong=\"G5259\"* the|strong=\"G2532\"* calves|strong=\"G3448\"* and|strong=\"G2532\"* the|strong=\"G2532\"* goats|strong=\"G5131\"*, with|strong=\"G3326\"* water|strong=\"G5204\"* and|strong=\"G2532\"* scarlet|strong=\"G2847\"* wool|strong=\"G2053\"* and|strong=\"G2532\"* hyssop|strong=\"G5301\"*, and|strong=\"G2532\"* sprinkled|strong=\"G4472\"* both|strong=\"G2532\"* the|strong=\"G2532\"* book|strong=\"G3588\"* itself and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"*," + }, + { + "verseNum": 20, + "text": "saying|strong=\"G3004\"*, “This|strong=\"G3778\"* is|strong=\"G3588\"* the|strong=\"G4314\"* blood of|strong=\"G2316\"* the|strong=\"G4314\"* covenant|strong=\"G1242\"* which|strong=\"G3739\"* God|strong=\"G2316\"* has|strong=\"G2316\"* commanded|strong=\"G1781\"* you|strong=\"G5210\"*.”+ 9:20 Exodus 24:8*" + }, + { + "verseNum": 21, + "text": "He|strong=\"G2532\"* sprinkled|strong=\"G4472\"* the|strong=\"G2532\"* tabernacle|strong=\"G4633\"* and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* vessels|strong=\"G4632\"* of|strong=\"G2532\"* the|strong=\"G2532\"* ministry|strong=\"G3009\"* in|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G3668\"* way|strong=\"G3668\"* with|strong=\"G2532\"* the|strong=\"G2532\"* blood." + }, + { + "verseNum": 22, + "text": "According|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, nearly|strong=\"G4975\"* everything|strong=\"G3956\"* is|strong=\"G3588\"* cleansed|strong=\"G2511\"* with|strong=\"G1722\"* blood, and|strong=\"G2532\"* apart|strong=\"G5565\"* from|strong=\"G2532\"* shedding of|strong=\"G2532\"* blood there|strong=\"G2532\"* is|strong=\"G3588\"* no|strong=\"G3756\"* remission." + }, + { + "verseNum": 23, + "text": "It|strong=\"G1161\"* was|strong=\"G3588\"* necessary|strong=\"G3767\"* therefore|strong=\"G3767\"* that|strong=\"G3588\"* the|strong=\"G1722\"* copies|strong=\"G5262\"* of|strong=\"G3844\"* the|strong=\"G1722\"* things|strong=\"G3778\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavens|strong=\"G3772\"* should|strong=\"G3588\"* be|strong=\"G3588\"* cleansed|strong=\"G2511\"* with|strong=\"G1722\"* these|strong=\"G3778\"*, but|strong=\"G1161\"* the|strong=\"G1722\"* heavenly|strong=\"G2032\"* things|strong=\"G3778\"* themselves|strong=\"G3778\"* with|strong=\"G1722\"* better|strong=\"G2909\"* sacrifices|strong=\"G2378\"* than|strong=\"G3844\"* these|strong=\"G3778\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"G1063\"* Christ|strong=\"G5547\"* hasn’t|strong=\"G3588\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* holy places made|strong=\"G5499\"* with|strong=\"G2316\"* hands|strong=\"G5499\"*, which|strong=\"G3588\"* are|strong=\"G3588\"* representations of|strong=\"G2316\"* the|strong=\"G1519\"* true|strong=\"G3588\"*, but|strong=\"G1063\"* into|strong=\"G1519\"* heaven|strong=\"G3772\"* itself, now|strong=\"G3568\"* to|strong=\"G1519\"* appear|strong=\"G1718\"* in|strong=\"G1519\"* the|strong=\"G1519\"* presence|strong=\"G4383\"* of|strong=\"G2316\"* God|strong=\"G2316\"* for|strong=\"G1063\"* us|strong=\"G1519\"*;" + }, + { + "verseNum": 25, + "text": "nor|strong=\"G3761\"* yet|strong=\"G3761\"* that|strong=\"G2443\"* he|strong=\"G3588\"* should|strong=\"G3588\"* offer|strong=\"G4374\"* himself|strong=\"G1438\"* often|strong=\"G4178\"*, as|strong=\"G5618\"* the|strong=\"G1722\"* high priest|strong=\"G4374\"* enters|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G1722\"* holy place|strong=\"G1722\"* year|strong=\"G1763\"* by|strong=\"G1722\"* year|strong=\"G1763\"* with|strong=\"G1722\"* blood not|strong=\"G3761\"* his|strong=\"G1438\"* own|strong=\"G1438\"*," + }, + { + "verseNum": 26, + "text": "or|strong=\"G1161\"* else|strong=\"G1893\"* he|strong=\"G1161\"* must|strong=\"G1163\"* have|strong=\"G1163\"* suffered|strong=\"G3958\"* often|strong=\"G4178\"* since|strong=\"G1893\"* the|strong=\"G1519\"* foundation|strong=\"G2602\"* of|strong=\"G1223\"* the|strong=\"G1519\"* world|strong=\"G2889\"*. But|strong=\"G1161\"* now|strong=\"G1161\"* once at|strong=\"G1909\"* the|strong=\"G1519\"* end|strong=\"G4930\"* of|strong=\"G1223\"* the|strong=\"G1519\"* ages, he|strong=\"G1161\"* has|strong=\"G2889\"* been|strong=\"G5319\"* revealed|strong=\"G5319\"* to|strong=\"G1519\"* put|strong=\"G1163\"* away sin by|strong=\"G1223\"* the|strong=\"G1519\"* sacrifice|strong=\"G2378\"* of|strong=\"G1223\"* himself|strong=\"G1519\"*." + }, + { + "verseNum": 27, + "text": "Inasmuch|strong=\"G2596\"* as|strong=\"G3745\"* it|strong=\"G2532\"* is|strong=\"G3588\"* appointed for|strong=\"G1161\"* men|strong=\"G3778\"* to|strong=\"G2532\"* die once, and|strong=\"G2532\"* after|strong=\"G3326\"* this|strong=\"G3778\"*, judgment|strong=\"G2920\"*," + }, + { + "verseNum": 28, + "text": "so|strong=\"G3779\"* Christ|strong=\"G5547\"* also|strong=\"G2532\"*, having|strong=\"G2532\"* been|strong=\"G2532\"* offered|strong=\"G4374\"* once to|strong=\"G1519\"* bear|strong=\"G2532\"* the|strong=\"G2532\"* sins of|strong=\"G1537\"* many|strong=\"G4183\"*, will|strong=\"G2532\"* appear|strong=\"G3708\"* a|strong=\"G2532\"* second|strong=\"G1208\"* time|strong=\"G1208\"*, not|strong=\"G2532\"* to|strong=\"G1519\"* deal|strong=\"G4183\"* with|strong=\"G1537\"* sin, but|strong=\"G2532\"* to|strong=\"G1519\"* save those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* eagerly waiting for|strong=\"G1519\"* him|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"G1063\"* the|strong=\"G1519\"* law|strong=\"G3551\"*, having|strong=\"G2192\"* a|strong=\"G2192\"* shadow|strong=\"G4639\"* of|strong=\"G3551\"* the|strong=\"G1519\"* good|strong=\"G3756\"* to|strong=\"G1519\"* come|strong=\"G3195\"*, not|strong=\"G3756\"* the|strong=\"G1519\"* very|strong=\"G3588\"* image|strong=\"G1504\"* of|strong=\"G3551\"* the|strong=\"G1519\"* things|strong=\"G3588\"*, can|strong=\"G1410\"* never|strong=\"G3756\"* with|strong=\"G2596\"* the|strong=\"G1519\"* same|strong=\"G3739\"* sacrifices|strong=\"G2378\"* year|strong=\"G1763\"* by|strong=\"G2596\"* year|strong=\"G1763\"*, which|strong=\"G3739\"* they|strong=\"G3588\"* offer|strong=\"G4374\"* continually|strong=\"G1336\"*, make|strong=\"G5048\"* perfect|strong=\"G5048\"* those|strong=\"G3588\"* who|strong=\"G3739\"* draw|strong=\"G4334\"* near|strong=\"G4334\"*." + }, + { + "verseNum": 2, + "text": "Or|strong=\"G3588\"* else|strong=\"G1893\"* wouldn’t|strong=\"G3588\"* they|strong=\"G3588\"* have|strong=\"G2192\"* ceased|strong=\"G3973\"* to|strong=\"G3756\"* be|strong=\"G3756\"* offered|strong=\"G4374\"*, because|strong=\"G1223\"* the|strong=\"G1223\"* worshipers|strong=\"G3000\"*, having|strong=\"G2192\"* been|strong=\"G2192\"* once cleansed|strong=\"G2511\"*, would|strong=\"G1893\"* have|strong=\"G2192\"* had|strong=\"G2192\"* no|strong=\"G3756\"* more|strong=\"G2089\"* consciousness|strong=\"G4893\"* of|strong=\"G1223\"* sins?" + }, + { + "verseNum": 3, + "text": "But in|strong=\"G1722\"* those|strong=\"G1722\"* sacrifices there|strong=\"G1722\"* is|strong=\"G1722\"* a|strong=\"G1722\"* yearly reminder of|strong=\"G1722\"* sins." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G2532\"* impossible that|strong=\"G2532\"* the|strong=\"G2532\"* blood of|strong=\"G2532\"* bulls|strong=\"G5022\"* and|strong=\"G2532\"* goats|strong=\"G5131\"* should|strong=\"G2532\"* take|strong=\"G2532\"* away sins." + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"G1352\"* when|strong=\"G1161\"* he|strong=\"G2532\"* comes|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* world|strong=\"G2889\"*, he|strong=\"G2532\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 6, + "text": "You|strong=\"G2532\"* had|strong=\"G2532\"* no|strong=\"G3756\"* pleasure|strong=\"G2106\"* in|strong=\"G2532\"* whole|strong=\"G3646\"* burnt|strong=\"G3646\"* offerings|strong=\"G3646\"* and|strong=\"G2532\"* sacrifices for|strong=\"G4012\"* sin." + }, + { + "verseNum": 7, + "text": "Then|strong=\"G5119\"* I|strong=\"G1473\"* said|strong=\"G3004\"*, ‘Behold|strong=\"G2400\"*, I|strong=\"G1473\"* have|strong=\"G1473\"* come|strong=\"G2240\"* (in|strong=\"G1722\"* the|strong=\"G1722\"* scroll|strong=\"G2777\"* of|strong=\"G4012\"* the|strong=\"G1722\"* book|strong=\"G3588\"* it|strong=\"G4160\"* is|strong=\"G3588\"* written|strong=\"G1125\"* of|strong=\"G4012\"* me|strong=\"G1473\"*)" + }, + { + "verseNum": 8, + "text": "Previously saying|strong=\"G3004\"*, “Sacrifices|strong=\"G2378\"* and|strong=\"G2532\"* offerings|strong=\"G3646\"* and|strong=\"G2532\"* whole|strong=\"G3646\"* burnt|strong=\"G3646\"* offerings|strong=\"G3646\"* and|strong=\"G2532\"* sacrifices|strong=\"G2378\"* for|strong=\"G3754\"* sin you|strong=\"G3754\"* didn’t desire|strong=\"G2309\"*, neither|strong=\"G3761\"* had|strong=\"G2532\"* pleasure|strong=\"G2106\"* in|strong=\"G2596\"* them|strong=\"G3004\"*” (those|strong=\"G4012\"* which|strong=\"G3748\"* are|strong=\"G2532\"* offered|strong=\"G4374\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* law|strong=\"G3551\"*)," + }, + { + "verseNum": 9, + "text": "then|strong=\"G5119\"* he|strong=\"G3588\"* has|strong=\"G3708\"* said|strong=\"G3004\"*, “Behold|strong=\"G2400\"*, I|strong=\"G2443\"* have|strong=\"G4160\"* come|strong=\"G2240\"* to|strong=\"G2443\"* do|strong=\"G4160\"* your|strong=\"G3708\"* will|strong=\"G2307\"*.” He|strong=\"G3588\"* takes away the|strong=\"G3588\"* first|strong=\"G4413\"*, that|strong=\"G2443\"* he|strong=\"G3588\"* may|strong=\"G2443\"* establish|strong=\"G2476\"* the|strong=\"G3588\"* second|strong=\"G1208\"*," + }, + { + "verseNum": 10, + "text": "by|strong=\"G1223\"* which|strong=\"G3739\"* will|strong=\"G2307\"* we|strong=\"G3739\"* have|strong=\"G1510\"* been|strong=\"G1510\"* sanctified through|strong=\"G1223\"* the|strong=\"G1722\"* offering|strong=\"G4376\"* of|strong=\"G1223\"* the|strong=\"G1722\"* body|strong=\"G4983\"* of|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* once|strong=\"G2178\"* for|strong=\"G1223\"* all|strong=\"G1722\"*." + }, + { + "verseNum": 11, + "text": "Every|strong=\"G3956\"* priest|strong=\"G2409\"* indeed|strong=\"G2532\"* stands|strong=\"G2476\"* day|strong=\"G2250\"* by|strong=\"G2596\"* day|strong=\"G2250\"* serving|strong=\"G3008\"* and|strong=\"G2532\"* offering|strong=\"G4374\"* often|strong=\"G4178\"* the|strong=\"G2532\"* same|strong=\"G2532\"* sacrifices|strong=\"G2378\"*, which|strong=\"G3588\"* can|strong=\"G1410\"* never|strong=\"G3763\"* take|strong=\"G1410\"* away|strong=\"G4014\"* sins," + }, + { + "verseNum": 12, + "text": "but|strong=\"G1161\"* he|strong=\"G1161\"*, when|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G2316\"* offered|strong=\"G4374\"* one|strong=\"G1520\"* sacrifice|strong=\"G2378\"* for|strong=\"G1519\"* sins forever|strong=\"G1519\"*, sat|strong=\"G2523\"* down|strong=\"G2523\"* on|strong=\"G1722\"* the|strong=\"G1722\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G2316\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 13, + "text": "from|strong=\"G3588\"* that|strong=\"G3588\"* time waiting|strong=\"G1551\"* until|strong=\"G2193\"* his|strong=\"G5087\"* enemies|strong=\"G2190\"* are|strong=\"G3588\"* made|strong=\"G5087\"* the|strong=\"G3588\"* footstool|strong=\"G5286\"* of|strong=\"G3588\"* his|strong=\"G5087\"* feet|strong=\"G4228\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* by|strong=\"G1519\"* one|strong=\"G1520\"* offering|strong=\"G4376\"* he|strong=\"G3588\"* has|strong=\"G1519\"* perfected|strong=\"G5048\"* forever|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* being sanctified." + }, + { + "verseNum": 15, + "text": "The|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* also|strong=\"G2532\"* testifies|strong=\"G3140\"* to|strong=\"G2532\"* us|strong=\"G3004\"*, for|strong=\"G1063\"* after|strong=\"G3326\"* saying|strong=\"G3004\"*," + }, + { + "verseNum": 16, + "text": "“This|strong=\"G3778\"* is|strong=\"G3588\"* the|strong=\"G2532\"* covenant|strong=\"G1242\"* that|strong=\"G3739\"* I|strong=\"G1473\"* will|strong=\"G2532\"* make|strong=\"G1303\"* with|strong=\"G3326\"* them|strong=\"G3588\"*" + }, + { + "verseNum": 17, + "text": "“I|strong=\"G2532\"* will|strong=\"G2532\"* remember|strong=\"G3403\"* their|strong=\"G2532\"* sins and|strong=\"G2532\"* their|strong=\"G2532\"* iniquities no|strong=\"G3756\"* more|strong=\"G2089\"*.”+ 10:17 Jeremiah 31:34*" + }, + { + "verseNum": 18, + "text": "Now|strong=\"G1161\"* where|strong=\"G3699\"* remission of|strong=\"G4012\"* these|strong=\"G3778\"* is|strong=\"G3778\"*, there|strong=\"G1161\"* is|strong=\"G3778\"* no|strong=\"G3765\"* more|strong=\"G3765\"* offering|strong=\"G4376\"* for|strong=\"G4012\"* sin." + }, + { + "verseNum": 19, + "text": "Having|strong=\"G2192\"* therefore|strong=\"G3767\"*, brothers, boldness|strong=\"G3954\"* to|strong=\"G1519\"* enter|strong=\"G1529\"* into|strong=\"G1519\"* the|strong=\"G1722\"* holy place|strong=\"G1722\"* by|strong=\"G1722\"* the|strong=\"G1722\"* blood of|strong=\"G1722\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 20, + "text": "by|strong=\"G1223\"* the|strong=\"G2532\"* way|strong=\"G3598\"* which|strong=\"G3739\"* he|strong=\"G2532\"* dedicated|strong=\"G1457\"* for|strong=\"G1223\"* us|strong=\"G2249\"*, a|strong=\"G2532\"* new|strong=\"G4372\"* and|strong=\"G2532\"* living|strong=\"G2198\"* way|strong=\"G3598\"*, through|strong=\"G1223\"* the|strong=\"G2532\"* veil|strong=\"G2665\"*, that|strong=\"G3739\"* is|strong=\"G1510\"* to|strong=\"G2532\"* say|strong=\"G1223\"*, his|strong=\"G1223\"* flesh|strong=\"G4561\"*," + }, + { + "verseNum": 21, + "text": "and|strong=\"G2532\"* having|strong=\"G2532\"* a|strong=\"G2532\"* great|strong=\"G3173\"* priest|strong=\"G2409\"* over|strong=\"G1909\"* God|strong=\"G2316\"*’s house|strong=\"G3624\"*," + }, + { + "verseNum": 22, + "text": "let|strong=\"G2532\"*’s draw|strong=\"G4334\"* near|strong=\"G4334\"* with|strong=\"G3326\"* a|strong=\"G2532\"* true|strong=\"G3588\"* heart|strong=\"G2588\"* in|strong=\"G1722\"* fullness of|strong=\"G2532\"* faith|strong=\"G4102\"*, having|strong=\"G2532\"* our|strong=\"G2532\"* hearts|strong=\"G2588\"* sprinkled|strong=\"G4472\"* from|strong=\"G2532\"* an|strong=\"G2532\"* evil|strong=\"G4190\"* conscience|strong=\"G4893\"* and|strong=\"G2532\"* having|strong=\"G2532\"* our|strong=\"G2532\"* body|strong=\"G4983\"* washed|strong=\"G3068\"* with|strong=\"G3326\"* pure|strong=\"G2513\"* water," + }, + { + "verseNum": 23, + "text": "let|strong=\"G1063\"*’s hold|strong=\"G2722\"* fast|strong=\"G2722\"* the|strong=\"G2532\"* confession|strong=\"G3671\"* of|strong=\"G2532\"* our|strong=\"G2532\"* hope|strong=\"G1680\"* without|strong=\"G2532\"* wavering; for|strong=\"G1063\"* he|strong=\"G2532\"* who|strong=\"G3588\"* promised|strong=\"G1861\"* is|strong=\"G3588\"* faithful|strong=\"G4103\"*." + }, + { + "verseNum": 24, + "text": "Let|strong=\"G2532\"*’s consider|strong=\"G2657\"* how|strong=\"G2657\"* to|strong=\"G1519\"* provoke|strong=\"G3948\"* one|strong=\"G2657\"* another to|strong=\"G1519\"* love and|strong=\"G2532\"* good|strong=\"G2570\"* works|strong=\"G2041\"*," + }, + { + "verseNum": 25, + "text": "not|strong=\"G3361\"* forsaking|strong=\"G1459\"* our|strong=\"G2532\"* own|strong=\"G1438\"* assembling|strong=\"G1997\"* together|strong=\"G1997\"*, as|strong=\"G2531\"* the|strong=\"G2532\"* custom|strong=\"G1485\"* of|strong=\"G2250\"* some|strong=\"G5100\"* is|strong=\"G3588\"*, but|strong=\"G2532\"* exhorting|strong=\"G3870\"* one|strong=\"G5100\"* another|strong=\"G1438\"*, and|strong=\"G2532\"* so|strong=\"G2532\"* much|strong=\"G5118\"* the|strong=\"G2532\"* more|strong=\"G3123\"* as|strong=\"G2531\"* you|strong=\"G1438\"* see the|strong=\"G2532\"* Day|strong=\"G2250\"* approaching|strong=\"G1448\"*." + }, + { + "verseNum": 26, + "text": "For|strong=\"G1063\"* if we|strong=\"G2249\"* sin willfully|strong=\"G1596\"* after|strong=\"G3326\"* we|strong=\"G2249\"* have|strong=\"G1473\"* received|strong=\"G2983\"* the|strong=\"G3588\"* knowledge|strong=\"G1922\"* of|strong=\"G4012\"* the|strong=\"G3588\"* truth, there|strong=\"G1063\"* remains no|strong=\"G3765\"* more|strong=\"G3765\"* a|strong=\"G2983\"* sacrifice|strong=\"G2378\"* for|strong=\"G1063\"* sins," + }, + { + "verseNum": 27, + "text": "but|strong=\"G1161\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* fearful|strong=\"G5398\"* expectation|strong=\"G1561\"* of|strong=\"G2532\"* judgment|strong=\"G2920\"*, and|strong=\"G2532\"* a|strong=\"G2532\"* fierceness of|strong=\"G2532\"* fire|strong=\"G4442\"* which|strong=\"G3588\"* will|strong=\"G3195\"* devour|strong=\"G2068\"* the|strong=\"G2532\"* adversaries|strong=\"G5227\"*." + }, + { + "verseNum": 28, + "text": "A|strong=\"G1909\"* man|strong=\"G5100\"* who|strong=\"G5100\"* disregards Moses|strong=\"G3475\"*’ law|strong=\"G3551\"* dies without|strong=\"G5565\"* compassion|strong=\"G3628\"* on|strong=\"G1909\"* the|strong=\"G1909\"* word of|strong=\"G3551\"* two|strong=\"G1417\"* or|strong=\"G2228\"* three|strong=\"G5140\"* witnesses|strong=\"G3144\"*." + }, + { + "verseNum": 29, + "text": "How|strong=\"G4214\"* much|strong=\"G4214\"* worse|strong=\"G5501\"* punishment|strong=\"G5098\"* do|strong=\"G2532\"* you|strong=\"G3739\"* think|strong=\"G1380\"* he|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G2532\"* judged|strong=\"G2233\"* worthy of|strong=\"G5207\"* who|strong=\"G3739\"* has|strong=\"G2316\"* trodden under|strong=\"G1722\"* foot|strong=\"G2662\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* has|strong=\"G2316\"* counted|strong=\"G2233\"* the|strong=\"G1722\"* blood of|strong=\"G5207\"* the|strong=\"G1722\"* covenant|strong=\"G1242\"* with|strong=\"G1722\"* which|strong=\"G3739\"* he|strong=\"G2532\"* was|strong=\"G3588\"* sanctified an|strong=\"G2532\"* unholy|strong=\"G2839\"* thing|strong=\"G3739\"*, and|strong=\"G2532\"* has|strong=\"G2316\"* insulted|strong=\"G1796\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G5207\"* grace|strong=\"G5485\"*?" + }, + { + "verseNum": 30, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* know|strong=\"G1492\"* him|strong=\"G3588\"* who|strong=\"G3588\"* said|strong=\"G3004\"*, “Vengeance|strong=\"G1557\"* belongs to|strong=\"G2532\"* me|strong=\"G1473\"*. I|strong=\"G1473\"* will|strong=\"G2532\"* repay,” says|strong=\"G3004\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*.+ 10:30 Deuteronomy 32:35* Again|strong=\"G3825\"*, “The|strong=\"G2532\"* Lord|strong=\"G2962\"* will|strong=\"G2532\"* judge|strong=\"G2919\"* his|strong=\"G2532\"* people|strong=\"G2992\"*.”+ 10:30 Deuteronomy 32:36; Psalms 135:14*" + }, + { + "verseNum": 31, + "text": "It|strong=\"G1519\"* is|strong=\"G3588\"* a|strong=\"G1519\"* fearful|strong=\"G5398\"* thing|strong=\"G5398\"* to|strong=\"G1519\"* fall|strong=\"G1706\"* into|strong=\"G1519\"* the|strong=\"G1519\"* hands|strong=\"G5495\"* of|strong=\"G2316\"* the|strong=\"G1519\"* living|strong=\"G2198\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 32, + "text": "But|strong=\"G1161\"* remember the|strong=\"G1722\"* former|strong=\"G4387\"* days|strong=\"G2250\"*, in|strong=\"G1722\"* which|strong=\"G3739\"*, after|strong=\"G1161\"* you|strong=\"G3739\"* were|strong=\"G3588\"* enlightened|strong=\"G5461\"*, you|strong=\"G3739\"* endured|strong=\"G5278\"* a|strong=\"G1722\"* great|strong=\"G4183\"* struggle with|strong=\"G1722\"* sufferings|strong=\"G3804\"*:" + }, + { + "verseNum": 33, + "text": "partly|strong=\"G3778\"*, being|strong=\"G1096\"* exposed to|strong=\"G2532\"* both|strong=\"G2532\"* reproaches|strong=\"G3680\"* and|strong=\"G2532\"* oppressions, and|strong=\"G2532\"* partly|strong=\"G3778\"*, becoming|strong=\"G1096\"* partakers|strong=\"G2844\"* with|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* treated so|strong=\"G3779\"*." + }, + { + "verseNum": 34, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* both|strong=\"G2532\"* had|strong=\"G2192\"* compassion|strong=\"G4834\"* on|strong=\"G3326\"* me|strong=\"G2192\"* in|strong=\"G2532\"* my|strong=\"G3326\"* chains and|strong=\"G2532\"* joyfully|strong=\"G5479\"* accepted|strong=\"G4327\"* the|strong=\"G2532\"* plundering of|strong=\"G2532\"* your|strong=\"G2192\"* possessions|strong=\"G5225\"*, knowing|strong=\"G1097\"* that|strong=\"G3588\"* you|strong=\"G5210\"* have|strong=\"G2192\"* for|strong=\"G1063\"* yourselves|strong=\"G1438\"* a|strong=\"G2192\"* better|strong=\"G2909\"* possession|strong=\"G5223\"* and|strong=\"G2532\"* an|strong=\"G2192\"* enduring|strong=\"G3306\"* one|strong=\"G1438\"* in|strong=\"G2532\"* the|strong=\"G2532\"* heavens." + }, + { + "verseNum": 35, + "text": "Therefore|strong=\"G3767\"* don’t|strong=\"G3588\"* throw away your|strong=\"G2192\"* boldness|strong=\"G3954\"*, which|strong=\"G3588\"* has|strong=\"G2192\"* a|strong=\"G2192\"* great|strong=\"G3173\"* reward|strong=\"G3405\"*." + }, + { + "verseNum": 36, + "text": "For|strong=\"G1063\"* you|strong=\"G4160\"* need|strong=\"G5532\"* endurance|strong=\"G5281\"* so|strong=\"G2443\"* that|strong=\"G2443\"*, having|strong=\"G2192\"* done|strong=\"G4160\"* the|strong=\"G3588\"* will|strong=\"G2307\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, you|strong=\"G4160\"* may|strong=\"G2443\"* receive|strong=\"G2865\"* the|strong=\"G3588\"* promise|strong=\"G1860\"*." + }, + { + "verseNum": 37, + "text": "“In|strong=\"G2532\"* a|strong=\"G2532\"* very|strong=\"G2532\"* little|strong=\"G3398\"* while|strong=\"G3398\"*," + }, + { + "verseNum": 38, + "text": "But|strong=\"G1161\"* the|strong=\"G1722\"* righteous|strong=\"G1342\"* one|strong=\"G3588\"* will|strong=\"G2532\"* live|strong=\"G2198\"* by|strong=\"G1722\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 39, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"* are|strong=\"G1510\"* not|strong=\"G3756\"* of|strong=\"G4102\"* those|strong=\"G1161\"* who|strong=\"G3756\"* shrink|strong=\"G5289\"* back|strong=\"G1519\"* to|strong=\"G1519\"* destruction, but|strong=\"G1161\"* of|strong=\"G4102\"* those|strong=\"G1161\"* who|strong=\"G3756\"* have|strong=\"G1473\"* faith|strong=\"G4102\"* to|strong=\"G1519\"* the|strong=\"G1519\"* saving|strong=\"G4047\"* of|strong=\"G4102\"* the|strong=\"G1519\"* soul|strong=\"G5590\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* faith|strong=\"G4102\"* is|strong=\"G1510\"* assurance|strong=\"G5287\"* of|strong=\"G4102\"* things|strong=\"G4229\"* hoped|strong=\"G1679\"* for|strong=\"G1161\"*, proof|strong=\"G4102\"* of|strong=\"G4102\"* things|strong=\"G4229\"* not|strong=\"G3756\"* seen." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* by|strong=\"G1722\"* this|strong=\"G3778\"*, the|strong=\"G1722\"* elders|strong=\"G4245\"* obtained|strong=\"G3140\"* approval|strong=\"G3140\"*." + }, + { + "verseNum": 3, + "text": "By|strong=\"G1537\"* faith|strong=\"G4102\"* we|strong=\"G4102\"* understand|strong=\"G3539\"* that|strong=\"G3588\"* the|strong=\"G1519\"* universe has|strong=\"G2316\"* been|strong=\"G1096\"* framed|strong=\"G2675\"* by|strong=\"G1537\"* the|strong=\"G1519\"* word|strong=\"G4487\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, so|strong=\"G1519\"* that|strong=\"G3588\"* what|strong=\"G3588\"* is|strong=\"G3588\"* seen|strong=\"G5316\"* has|strong=\"G2316\"* not|strong=\"G3361\"* been|strong=\"G1096\"* made|strong=\"G1096\"* out|strong=\"G1537\"* of|strong=\"G1537\"* things|strong=\"G3588\"* which|strong=\"G3588\"* are|strong=\"G3588\"* visible|strong=\"G5316\"*." + }, + { + "verseNum": 4, + "text": "By|strong=\"G1223\"* faith|strong=\"G4102\"* Abel offered|strong=\"G4374\"* to|strong=\"G2532\"* God|strong=\"G2316\"* a|strong=\"G2532\"* more|strong=\"G2089\"* excellent|strong=\"G4119\"* sacrifice|strong=\"G2378\"* than|strong=\"G3844\"* Cain|strong=\"G2535\"*, through|strong=\"G1223\"* which|strong=\"G3739\"* he|strong=\"G2532\"* had|strong=\"G2532\"* testimony|strong=\"G3140\"* given|strong=\"G1435\"* to|strong=\"G2532\"* him|strong=\"G3588\"* that|strong=\"G3739\"* he|strong=\"G2532\"* was|strong=\"G1510\"* righteous|strong=\"G1342\"*, God|strong=\"G2316\"* testifying|strong=\"G3140\"* with|strong=\"G3844\"* respect|strong=\"G3739\"* to|strong=\"G2532\"* his|strong=\"G1223\"* gifts|strong=\"G1435\"*; and|strong=\"G2532\"* through|strong=\"G1223\"* it|strong=\"G2532\"* he|strong=\"G2532\"*, being|strong=\"G1510\"* dead, still|strong=\"G2089\"* speaks|strong=\"G2980\"*." + }, + { + "verseNum": 5, + "text": "By|strong=\"G2532\"* faith|strong=\"G4102\"* Enoch|strong=\"G1802\"* was|strong=\"G3588\"* taken|strong=\"G3331\"* away, so|strong=\"G2532\"* that|strong=\"G3588\"* he|strong=\"G2532\"* wouldn’t|strong=\"G3588\"* see|strong=\"G3708\"* death|strong=\"G2288\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3588\"* not|strong=\"G3756\"* found|strong=\"G2147\"*, because|strong=\"G1063\"* God|strong=\"G2316\"* translated|strong=\"G3346\"* him|strong=\"G3588\"*. For|strong=\"G1063\"* he|strong=\"G2532\"* has|strong=\"G2316\"* had|strong=\"G2532\"* testimony|strong=\"G3140\"* given|strong=\"G3361\"* to|strong=\"G2532\"* him|strong=\"G3588\"* that|strong=\"G3588\"* before|strong=\"G4253\"* his|strong=\"G3708\"* translation|strong=\"G3331\"* he|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G2532\"* well|strong=\"G2532\"* pleasing|strong=\"G2100\"* to|strong=\"G2532\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 6, + "text": "Without|strong=\"G5565\"* faith|strong=\"G4102\"* it|strong=\"G2532\"* is|strong=\"G1510\"* impossible to|strong=\"G2532\"* be|strong=\"G1096\"* well|strong=\"G2532\"* pleasing|strong=\"G2100\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* who|strong=\"G3588\"* comes|strong=\"G1096\"* to|strong=\"G2532\"* God|strong=\"G2316\"* must|strong=\"G1163\"* believe|strong=\"G4100\"* that|strong=\"G3754\"* he|strong=\"G2532\"* exists, and|strong=\"G2532\"* that|strong=\"G3754\"* he|strong=\"G2532\"* is|strong=\"G1510\"* a|strong=\"G1096\"* rewarder|strong=\"G3406\"* of|strong=\"G2316\"* those|strong=\"G3588\"* who|strong=\"G3588\"* seek|strong=\"G1567\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 7, + "text": "By|strong=\"G1223\"* faith|strong=\"G4102\"* Noah|strong=\"G3575\"*, being|strong=\"G1096\"* warned|strong=\"G5537\"* about|strong=\"G4012\"* things|strong=\"G3588\"* not|strong=\"G3739\"* yet|strong=\"G2532\"* seen, moved with|strong=\"G1223\"* godly|strong=\"G2596\"* fear|strong=\"G2125\"*,+ 11:7 or, reverence* prepared|strong=\"G2680\"* a|strong=\"G1096\"* ship for|strong=\"G1519\"* the|strong=\"G2532\"* saving|strong=\"G4991\"* of|strong=\"G4012\"* his|strong=\"G1223\"* house|strong=\"G3624\"*, through|strong=\"G1223\"* which|strong=\"G3739\"* he|strong=\"G2532\"* condemned|strong=\"G2632\"* the|strong=\"G2532\"* world|strong=\"G2889\"* and|strong=\"G2532\"* became|strong=\"G1096\"* heir|strong=\"G2818\"* of|strong=\"G4012\"* the|strong=\"G2532\"* righteousness|strong=\"G1343\"* which|strong=\"G3739\"* is|strong=\"G3588\"* according|strong=\"G2596\"* to|strong=\"G1519\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 8, + "text": "By|strong=\"G2532\"* faith|strong=\"G4102\"* Abraham, when|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3739\"* called|strong=\"G2564\"*, obeyed|strong=\"G5219\"* to|strong=\"G1519\"* go|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G1519\"* the|strong=\"G2532\"* place|strong=\"G5117\"* which|strong=\"G3739\"* he|strong=\"G2532\"* was|strong=\"G3739\"* to|strong=\"G1519\"* receive|strong=\"G2983\"* for|strong=\"G1519\"* an|strong=\"G2532\"* inheritance|strong=\"G2817\"*. He|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, not|strong=\"G3361\"* knowing|strong=\"G1987\"* where|strong=\"G4226\"* he|strong=\"G2532\"* went|strong=\"G1831\"*." + }, + { + "verseNum": 9, + "text": "By|strong=\"G1722\"* faith|strong=\"G4102\"* he|strong=\"G2532\"* lived|strong=\"G2730\"* as|strong=\"G5613\"* an|strong=\"G2532\"* alien|strong=\"G3939\"* in|strong=\"G1722\"* the|strong=\"G1722\"* land|strong=\"G1093\"* of|strong=\"G2532\"* promise|strong=\"G1860\"*, as|strong=\"G5613\"* in|strong=\"G1722\"* a|strong=\"G5613\"* land|strong=\"G1093\"* not|strong=\"G2532\"* his|strong=\"G1519\"* own, dwelling|strong=\"G2730\"* in|strong=\"G1722\"* tents|strong=\"G4633\"* with|strong=\"G3326\"* Isaac|strong=\"G2464\"* and|strong=\"G2532\"* Jacob|strong=\"G2384\"*, the|strong=\"G1722\"* heirs|strong=\"G4789\"* with|strong=\"G3326\"* him|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G1722\"* same|strong=\"G2532\"* promise|strong=\"G1860\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* was|strong=\"G3588\"* looking|strong=\"G2532\"* for|strong=\"G1063\"* the|strong=\"G2532\"* city|strong=\"G4172\"* which|strong=\"G3739\"* has|strong=\"G2192\"* foundations|strong=\"G2310\"*, whose|strong=\"G3739\"* builder|strong=\"G1217\"* and|strong=\"G2532\"* maker|strong=\"G1217\"* is|strong=\"G3588\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 11, + "text": "By|strong=\"G3844\"* faith|strong=\"G4102\"* even|strong=\"G2532\"* Sarah|strong=\"G4564\"* herself received|strong=\"G2983\"* power|strong=\"G1411\"* to|strong=\"G1519\"* conceive|strong=\"G2602\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* bore a|strong=\"G2532\"* child when|strong=\"G2532\"* she|strong=\"G2532\"* was|strong=\"G3588\"* past|strong=\"G3844\"* age|strong=\"G2244\"*, since|strong=\"G1893\"* she|strong=\"G2532\"* counted|strong=\"G2233\"* him|strong=\"G3588\"* faithful|strong=\"G4103\"* who|strong=\"G3588\"* had|strong=\"G2532\"* promised|strong=\"G1861\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"G1352\"* as|strong=\"G5613\"* many as|strong=\"G5613\"* the|strong=\"G2532\"* stars of|strong=\"G2532\"* the|strong=\"G2532\"* sky|strong=\"G3772\"* in|strong=\"G2532\"* multitude|strong=\"G4128\"*, and|strong=\"G2532\"* as|strong=\"G5613\"* innumerable as|strong=\"G5613\"* the|strong=\"G2532\"* sand which|strong=\"G3588\"* is|strong=\"G3588\"* by|strong=\"G3844\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* shore|strong=\"G5491\"*, were|strong=\"G3588\"* fathered|strong=\"G1080\"* by|strong=\"G3844\"* one|strong=\"G1520\"* man|strong=\"G3778\"*, and|strong=\"G2532\"* him|strong=\"G3588\"* as|strong=\"G5613\"* good|strong=\"G3588\"* as|strong=\"G5613\"* dead|strong=\"G3499\"*." + }, + { + "verseNum": 13, + "text": "These|strong=\"G3778\"* all|strong=\"G3956\"* died|strong=\"G3588\"* in|strong=\"G1909\"* faith|strong=\"G4102\"*, not|strong=\"G3361\"* having|strong=\"G2532\"* received|strong=\"G2983\"* the|strong=\"G2532\"* promises|strong=\"G1860\"*, but|strong=\"G2532\"* having|strong=\"G2532\"* seen|strong=\"G3708\"*+ 11:13 TR adds “and being convinced of”* them|strong=\"G3588\"* and|strong=\"G2532\"* embraced them|strong=\"G3588\"* from|strong=\"G2532\"* afar|strong=\"G3588\"*, and|strong=\"G2532\"* having|strong=\"G2532\"* confessed|strong=\"G3670\"* that|strong=\"G3754\"* they|strong=\"G2532\"* were|strong=\"G1510\"* strangers|strong=\"G3581\"* and|strong=\"G2532\"* pilgrims|strong=\"G3927\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* those|strong=\"G3588\"* who|strong=\"G3588\"* say|strong=\"G3004\"* such|strong=\"G5108\"* things|strong=\"G3588\"* make|strong=\"G1718\"* it|strong=\"G3754\"* clear|strong=\"G1718\"* that|strong=\"G3754\"* they|strong=\"G3588\"* are|strong=\"G3588\"* seeking|strong=\"G1934\"* a|strong=\"G5108\"* country|strong=\"G3968\"* of|strong=\"G3588\"* their|strong=\"G3588\"* own|strong=\"G3968\"*." + }, + { + "verseNum": 15, + "text": "If|strong=\"G1487\"* indeed|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2192\"* been|strong=\"G2192\"* thinking|strong=\"G3421\"* of|strong=\"G2532\"* that|strong=\"G3739\"* country from|strong=\"G2532\"* which|strong=\"G3739\"* they|strong=\"G2532\"* went|strong=\"G2532\"* out|strong=\"G2532\"*, they|strong=\"G2532\"* would|strong=\"G2532\"* have|strong=\"G2192\"* had|strong=\"G2192\"* enough time|strong=\"G2540\"* to|strong=\"G2532\"* return." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* they|strong=\"G1161\"* desire|strong=\"G3713\"* a|strong=\"G1510\"* better|strong=\"G2909\"* country, that|strong=\"G3588\"* is|strong=\"G1510\"*, a|strong=\"G1510\"* heavenly|strong=\"G2032\"* one|strong=\"G1438\"*. Therefore|strong=\"G1352\"* God|strong=\"G2316\"* is|strong=\"G1510\"* not|strong=\"G3756\"* ashamed|strong=\"G1870\"* of|strong=\"G2316\"* them|strong=\"G3588\"*, to|strong=\"G3756\"* be|strong=\"G1510\"* called|strong=\"G1941\"* their|strong=\"G1438\"* God|strong=\"G2316\"*, for|strong=\"G1063\"* he|strong=\"G1161\"* has|strong=\"G2316\"* prepared|strong=\"G2090\"* a|strong=\"G1510\"* city|strong=\"G4172\"* for|strong=\"G1063\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "By|strong=\"G2532\"* faith|strong=\"G4102\"*, Abraham, being|strong=\"G2532\"* tested|strong=\"G3985\"*, offered|strong=\"G4374\"* up|strong=\"G4374\"* Isaac|strong=\"G2464\"*. Yes, he|strong=\"G2532\"* who|strong=\"G3588\"* had|strong=\"G2532\"* gladly received the|strong=\"G2532\"* promises|strong=\"G1860\"* was|strong=\"G3588\"* offering|strong=\"G4374\"* up|strong=\"G4374\"* his|strong=\"G2532\"* only|strong=\"G3439\"* born+ 11:17 The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”.* son," + }, + { + "verseNum": 18, + "text": "to|strong=\"G4314\"* whom|strong=\"G3739\"* it|strong=\"G3754\"* was|strong=\"G3739\"* said|strong=\"G2980\"*, “Your|strong=\"G1722\"* offspring will|strong=\"G3739\"* be|strong=\"G4690\"* accounted as|strong=\"G1722\"* from|strong=\"G2980\"* Isaac|strong=\"G2464\"*,” + 11:18 Genesis 21:12*" + }, + { + "verseNum": 19, + "text": "concluding that|strong=\"G3754\"* God|strong=\"G2316\"* is|strong=\"G3588\"* able|strong=\"G1415\"* to|strong=\"G2532\"* raise|strong=\"G1453\"* up|strong=\"G1453\"* even|strong=\"G2532\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*. Figuratively speaking, he|strong=\"G2532\"* also|strong=\"G2532\"* did|strong=\"G2532\"* receive|strong=\"G2865\"* him|strong=\"G3588\"* back|strong=\"G2865\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 20, + "text": "By|strong=\"G2532\"* faith|strong=\"G4102\"* Isaac|strong=\"G2464\"* blessed|strong=\"G2127\"* Jacob|strong=\"G2384\"* and|strong=\"G2532\"* Esau|strong=\"G2269\"*, even|strong=\"G2532\"* concerning|strong=\"G4012\"* things|strong=\"G3588\"* to|strong=\"G2532\"* come|strong=\"G3195\"*." + }, + { + "verseNum": 21, + "text": "By|strong=\"G1909\"* faith|strong=\"G4102\"* Jacob|strong=\"G2384\"*, when|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3588\"* dying, blessed|strong=\"G2127\"* each|strong=\"G1538\"* of|strong=\"G5207\"* the|strong=\"G2532\"* sons|strong=\"G5207\"* of|strong=\"G5207\"* Joseph|strong=\"G2501\"*, and|strong=\"G2532\"* worshiped|strong=\"G4352\"*, leaning on|strong=\"G1909\"* the|strong=\"G2532\"* top of|strong=\"G5207\"* his|strong=\"G1909\"* staff|strong=\"G4464\"*." + }, + { + "verseNum": 22, + "text": "By|strong=\"G2532\"* faith|strong=\"G4102\"* Joseph|strong=\"G2501\"*, when|strong=\"G2532\"* his|strong=\"G4012\"* end was|strong=\"G3588\"* near, made|strong=\"G4102\"* mention|strong=\"G3421\"* of|strong=\"G5207\"* the|strong=\"G2532\"* departure|strong=\"G1841\"* of|strong=\"G5207\"* the|strong=\"G2532\"* children|strong=\"G5207\"* of|strong=\"G5207\"* Israel|strong=\"G2474\"*, and|strong=\"G2532\"* gave|strong=\"G2532\"* instructions concerning|strong=\"G4012\"* his|strong=\"G4012\"* bones|strong=\"G3747\"*." + }, + { + "verseNum": 23, + "text": "By|strong=\"G5259\"* faith|strong=\"G4102\"* Moses|strong=\"G3475\"*, when|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3588\"* born|strong=\"G1080\"*, was|strong=\"G3588\"* hidden|strong=\"G2928\"* for|strong=\"G1360\"* three|strong=\"G5150\"* months|strong=\"G5150\"* by|strong=\"G5259\"* his|strong=\"G3708\"* parents|strong=\"G3962\"*, because|strong=\"G1360\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* that|strong=\"G3588\"* he|strong=\"G2532\"* was|strong=\"G3588\"* a|strong=\"G2532\"* beautiful child|strong=\"G3813\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* not|strong=\"G3756\"* afraid|strong=\"G5399\"* of|strong=\"G5259\"* the|strong=\"G2532\"* king|strong=\"G3588\"*’s commandment|strong=\"G1297\"*." + }, + { + "verseNum": 24, + "text": "By|strong=\"G3004\"* faith|strong=\"G4102\"* Moses|strong=\"G3475\"*, when|strong=\"G1096\"* he|strong=\"G3004\"* had|strong=\"G1096\"* grown|strong=\"G3173\"* up, refused to|strong=\"G3004\"* be|strong=\"G1096\"* called|strong=\"G3004\"* the|strong=\"G3004\"* son|strong=\"G5207\"* of|strong=\"G5207\"* Pharaoh|strong=\"G5328\"*’s daughter|strong=\"G2364\"*," + }, + { + "verseNum": 25, + "text": "choosing rather|strong=\"G3123\"* to|strong=\"G2228\"* share ill|strong=\"G2192\"* treatment with|strong=\"G2316\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* people|strong=\"G2992\"* than|strong=\"G2228\"* to|strong=\"G2228\"* enjoy|strong=\"G2192\"* the|strong=\"G3588\"* pleasures of|strong=\"G2316\"* sin for|strong=\"G2316\"* a|strong=\"G2192\"* time," + }, + { + "verseNum": 26, + "text": "considering|strong=\"G2233\"* the|strong=\"G1519\"* reproach|strong=\"G3680\"* of|strong=\"G3588\"* Christ|strong=\"G5547\"* greater|strong=\"G3173\"* riches|strong=\"G4149\"* than|strong=\"G3173\"* the|strong=\"G1519\"* treasures|strong=\"G2344\"* of|strong=\"G3588\"* Egypt; for|strong=\"G1063\"* he|strong=\"G3588\"* looked to|strong=\"G1519\"* the|strong=\"G1519\"* reward|strong=\"G3405\"*." + }, + { + "verseNum": 27, + "text": "By|strong=\"G1063\"* faith|strong=\"G4102\"* he|strong=\"G3588\"* left|strong=\"G2641\"* Egypt, not|strong=\"G3361\"* fearing|strong=\"G5399\"* the|strong=\"G3588\"* wrath|strong=\"G2372\"* of|strong=\"G4102\"* the|strong=\"G3588\"* king|strong=\"G3588\"*; for|strong=\"G1063\"* he|strong=\"G3588\"* endured|strong=\"G2594\"*, as|strong=\"G5613\"* seeing|strong=\"G3708\"* him|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G3588\"* invisible." + }, + { + "verseNum": 28, + "text": "By|strong=\"G2532\"* faith|strong=\"G4102\"* he|strong=\"G2532\"* kept|strong=\"G4160\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"* and|strong=\"G2532\"* the|strong=\"G2532\"* sprinkling|strong=\"G4378\"* of|strong=\"G2532\"* the|strong=\"G2532\"* blood, that|strong=\"G2443\"* the|strong=\"G2532\"* destroyer of|strong=\"G2532\"* the|strong=\"G2532\"* firstborn|strong=\"G4416\"* should|strong=\"G3588\"* not|strong=\"G3361\"* touch|strong=\"G2345\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 29, + "text": "By|strong=\"G1223\"* faith|strong=\"G4102\"* they|strong=\"G3588\"* passed|strong=\"G3588\"* through|strong=\"G1223\"* the|strong=\"G1223\"* Red|strong=\"G2063\"* Sea|strong=\"G2281\"* as|strong=\"G5613\"* on|strong=\"G4102\"* dry|strong=\"G3584\"* land|strong=\"G1093\"*. When|strong=\"G5613\"* the|strong=\"G1223\"* Egyptians tried|strong=\"G3984\"* to|strong=\"G1093\"* do|strong=\"G2983\"* so|strong=\"G1223\"*, they|strong=\"G3588\"* were|strong=\"G3588\"* swallowed|strong=\"G2666\"* up|strong=\"G2666\"*." + }, + { + "verseNum": 30, + "text": "By|strong=\"G1909\"* faith|strong=\"G4102\"* the|strong=\"G1909\"* walls|strong=\"G5038\"* of|strong=\"G2250\"* Jericho|strong=\"G2410\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* after|strong=\"G1909\"* they|strong=\"G3588\"* had|strong=\"G3588\"* been encircled|strong=\"G2944\"* for|strong=\"G1909\"* seven|strong=\"G2033\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 31, + "text": "By|strong=\"G3588\"* faith|strong=\"G4102\"* Rahab|strong=\"G4460\"* the|strong=\"G3588\"* prostitute|strong=\"G4204\"* didn’t|strong=\"G3588\"* perish|strong=\"G4881\"* with|strong=\"G3326\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* disobedient, having received|strong=\"G1209\"* the|strong=\"G3588\"* spies|strong=\"G2685\"* in|strong=\"G4102\"* peace|strong=\"G1515\"*." + }, + { + "verseNum": 32, + "text": "What|strong=\"G5101\"* more|strong=\"G2089\"* shall|strong=\"G2532\"* I|strong=\"G1473\"* say|strong=\"G3004\"*? For|strong=\"G1063\"* the|strong=\"G2532\"* time|strong=\"G5550\"* would|strong=\"G2532\"* fail|strong=\"G1952\"* me|strong=\"G1473\"* if|strong=\"G2532\"* I|strong=\"G1473\"* told|strong=\"G3004\"* of|strong=\"G4012\"* Gideon|strong=\"G1066\"*, Barak, Samson|strong=\"G4546\"*, Jephthah|strong=\"G2422\"*, David|strong=\"G1138\"*, Samuel|strong=\"G4545\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"*—" + }, + { + "verseNum": 33, + "text": "who|strong=\"G3739\"* through|strong=\"G1223\"* faith|strong=\"G4102\"* subdued|strong=\"G2610\"* kingdoms, worked|strong=\"G2038\"* out|strong=\"G1223\"* righteousness|strong=\"G1343\"*, obtained|strong=\"G2013\"* promises|strong=\"G1860\"*, stopped|strong=\"G5420\"* the|strong=\"G1223\"* mouths|strong=\"G4750\"* of|strong=\"G1223\"* lions|strong=\"G3023\"*,+ 11:33 Daniel 6:22-23*" + }, + { + "verseNum": 34, + "text": "quenched|strong=\"G4570\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G1411\"* fire|strong=\"G4442\"*,+ 11:34 Daniel 3:1-30* escaped|strong=\"G5343\"* the|strong=\"G1722\"* edge|strong=\"G4750\"* of|strong=\"G1411\"* the|strong=\"G1722\"* sword|strong=\"G3162\"*,+ 11:34 1 Kings 19:1-3; 2 Kings 6:31—7:20* from|strong=\"G5343\"* weakness were|strong=\"G1096\"* made|strong=\"G1096\"* strong|strong=\"G2478\"*, grew mighty|strong=\"G2478\"* in|strong=\"G1722\"* war|strong=\"G4171\"*, and|strong=\"G1411\"* caused foreign armies|strong=\"G3925\"* to|strong=\"G1722\"* flee|strong=\"G5343\"*." + }, + { + "verseNum": 35, + "text": "Women|strong=\"G1135\"* received|strong=\"G2983\"* their|strong=\"G3588\"* dead|strong=\"G3498\"* by|strong=\"G1537\"* resurrection.+ 11:35 1 Kings 17:17-23; 2 Kings 4:32-37* Others|strong=\"G3588\"* were|strong=\"G3588\"* tortured|strong=\"G5178\"*, not|strong=\"G3756\"* accepting|strong=\"G4327\"* their|strong=\"G3588\"* deliverance, that|strong=\"G2443\"* they|strong=\"G1161\"* might obtain|strong=\"G5177\"* a|strong=\"G2983\"* better|strong=\"G2909\"* resurrection." + }, + { + "verseNum": 36, + "text": "Others|strong=\"G2087\"* were|strong=\"G2532\"* tried|strong=\"G3984\"* by|strong=\"G2532\"* mocking|strong=\"G1701\"* and|strong=\"G2532\"* scourging|strong=\"G3148\"*, yes|strong=\"G2089\"*, moreover|strong=\"G1161\"* by|strong=\"G2532\"* bonds|strong=\"G1199\"* and|strong=\"G2532\"* imprisonment|strong=\"G1199\"*." + }, + { + "verseNum": 37, + "text": "They|strong=\"G1722\"* were stoned|strong=\"G3034\"*.+ 11:37 2 Chronicles 24:20-21* They|strong=\"G1722\"* were sawn|strong=\"G4249\"* apart. They|strong=\"G1722\"* were tempted|strong=\"G3985\"*. They|strong=\"G1722\"* were slain with|strong=\"G1722\"* the|strong=\"G1722\"* sword|strong=\"G3162\"*.+ 11:37 Jeremiah 26:20-23; 1 Kings 19:10* They|strong=\"G1722\"* went|strong=\"G4022\"* around|strong=\"G4022\"* in|strong=\"G1722\"* sheep skins|strong=\"G1192\"* and|strong=\"G3162\"* in|strong=\"G1722\"* goat skins|strong=\"G1192\"*; being|strong=\"G1722\"* destitute|strong=\"G5302\"*, afflicted|strong=\"G2346\"*, ill-treated|strong=\"G2558\"*—" + }, + { + "verseNum": 38, + "text": "of|strong=\"G2532\"* whom|strong=\"G3739\"* the|strong=\"G2532\"* world|strong=\"G2889\"* was|strong=\"G1510\"* not|strong=\"G3756\"* worthy—wandering|strong=\"G4105\"* in|strong=\"G1909\"* deserts|strong=\"G2047\"*, mountains|strong=\"G3735\"*, caves|strong=\"G4693\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* holes|strong=\"G3692\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*." + }, + { + "verseNum": 39, + "text": "These|strong=\"G3778\"* all|strong=\"G3956\"*, having|strong=\"G2532\"* been|strong=\"G2532\"* commended|strong=\"G3140\"* for|strong=\"G1223\"* their|strong=\"G2532\"* faith|strong=\"G4102\"*, didn’t|strong=\"G3588\"* receive|strong=\"G2865\"* the|strong=\"G2532\"* promise|strong=\"G1860\"*," + }, + { + "verseNum": 40, + "text": "God|strong=\"G2316\"* having|strong=\"G5100\"* provided|strong=\"G4265\"* some|strong=\"G5100\"* better|strong=\"G2909\"* thing|strong=\"G5100\"* concerning|strong=\"G4012\"* us|strong=\"G2249\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* apart|strong=\"G5565\"* from|strong=\"G3588\"* us|strong=\"G2249\"* they|strong=\"G3588\"* should|strong=\"G5100\"* not|strong=\"G3361\"* be|strong=\"G3361\"* made|strong=\"G5048\"* perfect|strong=\"G5048\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G1223\"* let|strong=\"G2192\"*’s|strong=\"G2192\"* also|strong=\"G2532\"*, seeing|strong=\"G1223\"* we|strong=\"G2249\"* are|strong=\"G3588\"* surrounded by|strong=\"G1223\"* so|strong=\"G2532\"* great|strong=\"G5118\"* a|strong=\"G2192\"* cloud|strong=\"G3509\"* of|strong=\"G1223\"* witnesses|strong=\"G3144\"*, lay aside every|strong=\"G3956\"* weight|strong=\"G3591\"* and|strong=\"G2532\"* the|strong=\"G2532\"* sin which|strong=\"G3588\"* so|strong=\"G2532\"* easily|strong=\"G2139\"* entangles|strong=\"G2139\"* us|strong=\"G2249\"*, and|strong=\"G2532\"* let|strong=\"G2192\"*’s|strong=\"G2192\"* run|strong=\"G5143\"* with|strong=\"G1223\"* perseverance|strong=\"G5281\"* the|strong=\"G2532\"* race that|strong=\"G3588\"* is|strong=\"G3588\"* set|strong=\"G4295\"* before|strong=\"G4295\"* us|strong=\"G2249\"*," + }, + { + "verseNum": 2, + "text": "looking|strong=\"G2424\"* to|strong=\"G1519\"* Jesus|strong=\"G2424\"*, the|strong=\"G1722\"* author and|strong=\"G2532\"* perfecter|strong=\"G5051\"* of|strong=\"G2316\"* faith|strong=\"G4102\"*, who|strong=\"G3739\"* for|strong=\"G1519\"* the|strong=\"G1722\"* joy|strong=\"G5479\"* that|strong=\"G3739\"* was|strong=\"G3588\"* set|strong=\"G2523\"* before|strong=\"G1722\"* him|strong=\"G3588\"* endured|strong=\"G5278\"* the|strong=\"G1722\"* cross|strong=\"G4716\"*, despising|strong=\"G2706\"* its shame, and|strong=\"G2532\"* has|strong=\"G2316\"* sat|strong=\"G2523\"* down|strong=\"G2523\"* at|strong=\"G1722\"* the|strong=\"G1722\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G2316\"* the|strong=\"G1722\"* throne|strong=\"G2362\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* consider him|strong=\"G3588\"* who|strong=\"G3588\"* has|strong=\"G1519\"* endured|strong=\"G5278\"* such|strong=\"G5108\"* contradiction of|strong=\"G5259\"* sinners against|strong=\"G1519\"* himself|strong=\"G1438\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* don’t|strong=\"G3588\"* grow|strong=\"G2577\"* weary|strong=\"G1590\"*, fainting in|strong=\"G1519\"* your|strong=\"G5259\"* souls|strong=\"G5590\"*." + }, + { + "verseNum": 4, + "text": "You have|strong=\"G3588\"* not|strong=\"G3768\"* yet|strong=\"G3768\"* resisted to|strong=\"G4314\"* blood, striving against|strong=\"G4314\"* sin." + }, + { + "verseNum": 5, + "text": "You|strong=\"G5210\"* have|strong=\"G2532\"* forgotten|strong=\"G1585\"* the|strong=\"G2532\"* exhortation|strong=\"G3874\"* which|strong=\"G3588\"* reasons with|strong=\"G2532\"* you|strong=\"G5210\"* as|strong=\"G5613\"* with|strong=\"G2532\"* children|strong=\"G5207\"*," + }, + { + "verseNum": 6, + "text": "for|strong=\"G1063\"* whom|strong=\"G3739\"* the|strong=\"G3956\"* Lord|strong=\"G2962\"* loves, he|strong=\"G1161\"* disciplines|strong=\"G3811\"*," + }, + { + "verseNum": 7, + "text": "It|strong=\"G1063\"* is|strong=\"G3588\"* for|strong=\"G1063\"* discipline|strong=\"G3809\"* that|strong=\"G3739\"* you|strong=\"G5210\"* endure|strong=\"G5278\"*. God|strong=\"G2316\"* deals|strong=\"G4374\"* with|strong=\"G2316\"* you|strong=\"G5210\"* as|strong=\"G5613\"* with|strong=\"G2316\"* children|strong=\"G5207\"*, for|strong=\"G1063\"* what|strong=\"G5101\"* son|strong=\"G5207\"* is|strong=\"G3588\"* there|strong=\"G1063\"* whom|strong=\"G3739\"* his|strong=\"G1519\"* father|strong=\"G3962\"* doesn’t|strong=\"G3588\"* discipline|strong=\"G3809\"*?" + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* you|strong=\"G3739\"* are|strong=\"G1510\"* without|strong=\"G5565\"* discipline|strong=\"G3809\"*, of|strong=\"G5207\"* which|strong=\"G3739\"* all|strong=\"G3956\"* have|strong=\"G2532\"* been|strong=\"G1510\"* made|strong=\"G1096\"* partakers|strong=\"G3353\"*, then|strong=\"G2532\"* you|strong=\"G3739\"* are|strong=\"G1510\"* illegitimate|strong=\"G3541\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* children|strong=\"G5207\"*." + }, + { + "verseNum": 9, + "text": "Furthermore|strong=\"G1534\"*, we|strong=\"G2249\"* had|strong=\"G2192\"* the|strong=\"G2532\"* fathers|strong=\"G3962\"* of|strong=\"G4151\"* our|strong=\"G2532\"* flesh|strong=\"G4561\"* to|strong=\"G2532\"* chasten us|strong=\"G2249\"*, and|strong=\"G2532\"* we|strong=\"G2249\"* paid them|strong=\"G3588\"* respect|strong=\"G1788\"*. Shall|strong=\"G2532\"* we|strong=\"G2249\"* not|strong=\"G3756\"* much|strong=\"G4183\"* rather|strong=\"G3123\"* be|strong=\"G2532\"* in|strong=\"G2532\"* subjection|strong=\"G5293\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* of|strong=\"G4151\"* spirits|strong=\"G4151\"* and|strong=\"G2532\"* live|strong=\"G2198\"*?" + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* they|strong=\"G1161\"* indeed|strong=\"G3303\"* for|strong=\"G1063\"* a|strong=\"G1519\"* few|strong=\"G3641\"* days|strong=\"G2250\"* disciplined|strong=\"G3811\"* us|strong=\"G1519\"* as|strong=\"G1519\"* seemed|strong=\"G1380\"* good|strong=\"G1380\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, but|strong=\"G1161\"* he|strong=\"G1161\"* for|strong=\"G1063\"* our|strong=\"G2596\"* profit|strong=\"G4851\"*, that|strong=\"G3588\"* we|strong=\"G1063\"* may|strong=\"G1380\"* be|strong=\"G1519\"* partakers|strong=\"G3335\"* of|strong=\"G2250\"* his|strong=\"G1519\"* holiness." + }, + { + "verseNum": 11, + "text": "All|strong=\"G3956\"* chastening|strong=\"G3809\"* seems|strong=\"G1380\"* for|strong=\"G1223\"* the|strong=\"G3956\"* present|strong=\"G3918\"* to|strong=\"G4314\"* be|strong=\"G1510\"* not|strong=\"G3756\"* joyous|strong=\"G5479\"* but|strong=\"G1161\"* grievous|strong=\"G3077\"*; yet|strong=\"G1161\"* afterward|strong=\"G5305\"* it|strong=\"G1161\"* yields the|strong=\"G3956\"* peaceful|strong=\"G1516\"* fruit|strong=\"G2590\"* of|strong=\"G1223\"* righteousness|strong=\"G1343\"* to|strong=\"G4314\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G1510\"* been|strong=\"G1510\"* trained|strong=\"G1128\"* by|strong=\"G1223\"* it|strong=\"G1161\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"G1352\"* lift|strong=\"G1352\"* up|strong=\"G2532\"* the|strong=\"G2532\"* hands|strong=\"G5495\"* that|strong=\"G3588\"* hang down|strong=\"G1119\"* and|strong=\"G2532\"* the|strong=\"G2532\"* feeble|strong=\"G3886\"* knees|strong=\"G1119\"*,+ 12:12 Isaiah 35:3*" + }, + { + "verseNum": 13, + "text": "and|strong=\"G2532\"* make|strong=\"G4160\"* straight|strong=\"G3717\"* paths|strong=\"G5163\"* for|strong=\"G1161\"* your|strong=\"G2532\"* feet|strong=\"G4228\"*,+ 12:13 Proverbs 4:26* so|strong=\"G2443\"* what|strong=\"G3588\"* is|strong=\"G3588\"* lame|strong=\"G5560\"* may|strong=\"G2532\"* not|strong=\"G3361\"* be|strong=\"G2532\"* dislocated, but|strong=\"G1161\"* rather|strong=\"G3123\"* be|strong=\"G2532\"* healed|strong=\"G2390\"*." + }, + { + "verseNum": 14, + "text": "Follow|strong=\"G1377\"* after|strong=\"G3326\"* peace|strong=\"G1515\"* with|strong=\"G3326\"* all|strong=\"G3956\"* men|strong=\"G3956\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* sanctification without|strong=\"G5565\"* which|strong=\"G3739\"* no|strong=\"G3762\"* man|strong=\"G3762\"* will|strong=\"G2532\"* see|strong=\"G3708\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*," + }, + { + "verseNum": 15, + "text": "looking|strong=\"G2532\"* carefully lest|strong=\"G3361\"* there|strong=\"G2532\"* be|strong=\"G2532\"* any|strong=\"G5100\"* man|strong=\"G5100\"* who|strong=\"G3588\"* falls short|strong=\"G5302\"* of|strong=\"G1223\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, lest|strong=\"G3361\"* any|strong=\"G5100\"* root|strong=\"G4491\"* of|strong=\"G1223\"* bitterness|strong=\"G4088\"* springing|strong=\"G5453\"* up|strong=\"G3361\"* trouble|strong=\"G1776\"* you|strong=\"G2532\"* and|strong=\"G2532\"* many|strong=\"G4183\"* be|strong=\"G2532\"* defiled|strong=\"G3392\"* by|strong=\"G1223\"* it|strong=\"G2532\"*," + }, + { + "verseNum": 16, + "text": "lest|strong=\"G3361\"* there|strong=\"G3361\"* be|strong=\"G3361\"* any|strong=\"G5100\"* sexually immoral|strong=\"G4205\"* person|strong=\"G3739\"* or|strong=\"G2228\"* profane|strong=\"G2228\"* person|strong=\"G3739\"*, like|strong=\"G5613\"* Esau|strong=\"G2269\"*, who|strong=\"G3739\"* sold his|strong=\"G1438\"* birthright|strong=\"G4415\"* for|strong=\"G1520\"* one|strong=\"G1520\"* meal|strong=\"G1035\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* you|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* even|strong=\"G2532\"* when|strong=\"G2532\"* he|strong=\"G2532\"* afterward|strong=\"G3326\"* desired|strong=\"G2309\"* to|strong=\"G2532\"* inherit|strong=\"G2816\"* the|strong=\"G2532\"* blessing|strong=\"G2129\"*, he|strong=\"G2532\"* was|strong=\"G3588\"* rejected, for|strong=\"G1063\"* he|strong=\"G2532\"* found|strong=\"G2147\"* no|strong=\"G3756\"* place|strong=\"G5117\"* for|strong=\"G1063\"* a|strong=\"G2532\"* change of|strong=\"G2532\"* mind|strong=\"G1438\"* though|strong=\"G2539\"* he|strong=\"G2532\"* sought|strong=\"G1567\"* it|strong=\"G2532\"* diligently with|strong=\"G3326\"* tears|strong=\"G1144\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* you|strong=\"G2532\"* have|strong=\"G2532\"* not|strong=\"G3756\"* come|strong=\"G4334\"* to|strong=\"G2532\"* a|strong=\"G2532\"* mountain that|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G2532\"* touched|strong=\"G5584\"* and|strong=\"G2532\"* that|strong=\"G2532\"* burned|strong=\"G2545\"* with|strong=\"G2532\"* fire|strong=\"G4442\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* blackness|strong=\"G1105\"*, darkness|strong=\"G2217\"*, storm," + }, + { + "verseNum": 19, + "text": "the|strong=\"G2532\"* sound|strong=\"G5456\"* of|strong=\"G3056\"* a|strong=\"G2532\"* trumpet|strong=\"G4536\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* voice|strong=\"G5456\"* of|strong=\"G3056\"* words|strong=\"G3056\"*; which|strong=\"G3739\"* those|strong=\"G3588\"* who|strong=\"G3739\"* heard it|strong=\"G2532\"* begged|strong=\"G3868\"* that|strong=\"G3739\"* not|strong=\"G3361\"* one|strong=\"G3739\"* more|strong=\"G2532\"* word|strong=\"G3056\"* should|strong=\"G3588\"* be|strong=\"G2532\"* spoken|strong=\"G4369\"* to|strong=\"G2532\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 20, + "text": "for|strong=\"G1063\"* they|strong=\"G3588\"* could|strong=\"G3588\"* not|strong=\"G3756\"* stand that|strong=\"G3588\"* which|strong=\"G3588\"* was|strong=\"G3588\"* commanded|strong=\"G1291\"*, “If|strong=\"G2579\"* even|strong=\"G2579\"* an|strong=\"G3735\"* animal touches|strong=\"G2345\"* the|strong=\"G3588\"* mountain|strong=\"G3735\"*, it|strong=\"G1063\"* shall|strong=\"G3588\"* be|strong=\"G3756\"* stoned|strong=\"G3036\"*”.+ 12:20 TR adds “or shot with an arrow”*+ 12:20 Exodus 19:12-13*" + }, + { + "verseNum": 21, + "text": "So|strong=\"G3779\"* fearful|strong=\"G5398\"* was|strong=\"G1510\"* the|strong=\"G2532\"* appearance that|strong=\"G3588\"* Moses|strong=\"G3475\"* said|strong=\"G3004\"*, “I|strong=\"G2532\"* am|strong=\"G1510\"* terrified|strong=\"G1630\"* and|strong=\"G2532\"* trembling|strong=\"G1790\"*.”+ 12:21 Deuteronomy 9:19*" + }, + { + "verseNum": 22, + "text": "But|strong=\"G2532\"* you|strong=\"G2532\"* have|strong=\"G2532\"* come|strong=\"G4334\"* to|strong=\"G2532\"* Mount|strong=\"G3735\"* Zion|strong=\"G4622\"* and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"* of|strong=\"G2316\"* the|strong=\"G2532\"* living|strong=\"G2198\"* God|strong=\"G2316\"*, the|strong=\"G2532\"* heavenly|strong=\"G2032\"* Jerusalem|strong=\"G2419\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* innumerable multitudes of|strong=\"G2316\"* angels," + }, + { + "verseNum": 23, + "text": "to|strong=\"G2532\"* the|strong=\"G1722\"* festal gathering and|strong=\"G2532\"* assembly|strong=\"G1577\"* of|strong=\"G4151\"* the|strong=\"G1722\"* firstborn|strong=\"G4416\"* who|strong=\"G3956\"* are|strong=\"G3956\"* enrolled in|strong=\"G1722\"* heaven|strong=\"G3772\"*, to|strong=\"G2532\"* God|strong=\"G2316\"* the|strong=\"G1722\"* Judge|strong=\"G2923\"* of|strong=\"G4151\"* all|strong=\"G3956\"*, to|strong=\"G2532\"* the|strong=\"G1722\"* spirits|strong=\"G4151\"* of|strong=\"G4151\"* just|strong=\"G1342\"* men|strong=\"G3956\"* made|strong=\"G5048\"* perfect|strong=\"G5048\"*," + }, + { + "verseNum": 24, + "text": "to|strong=\"G2532\"* Jesus|strong=\"G2424\"*, the|strong=\"G2532\"* mediator|strong=\"G3316\"* of|strong=\"G2532\"* a|strong=\"G2532\"* new|strong=\"G3501\"* covenant|strong=\"G1242\"*,+ 12:24 Jeremiah 31:31* and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* blood of|strong=\"G2532\"* sprinkling|strong=\"G4473\"* that|strong=\"G3588\"* speaks|strong=\"G2980\"* better|strong=\"G2909\"* than|strong=\"G3844\"* that|strong=\"G3588\"* of|strong=\"G2532\"* Abel." + }, + { + "verseNum": 25, + "text": "See that|strong=\"G3588\"* you|strong=\"G1487\"* don’t|strong=\"G3588\"* refuse|strong=\"G3868\"* him|strong=\"G3588\"* who|strong=\"G3588\"* speaks|strong=\"G2980\"*. For|strong=\"G1063\"* if|strong=\"G1487\"* they|strong=\"G3588\"* didn’t|strong=\"G3588\"* escape|strong=\"G1628\"* when|strong=\"G2980\"* they|strong=\"G3588\"* refused|strong=\"G3756\"* him|strong=\"G3588\"* who|strong=\"G3588\"* warned|strong=\"G5537\"* on|strong=\"G1909\"* the|strong=\"G1909\"* earth|strong=\"G1093\"*, how much|strong=\"G4183\"* more|strong=\"G3123\"* will|strong=\"G1473\"* we|strong=\"G2249\"* not|strong=\"G3756\"* escape|strong=\"G1628\"* who|strong=\"G3588\"* turn away from|strong=\"G3756\"* him|strong=\"G3588\"* who|strong=\"G3588\"* warns from|strong=\"G3756\"* heaven|strong=\"G3772\"*," + }, + { + "verseNum": 26, + "text": "whose|strong=\"G3739\"* voice|strong=\"G5456\"* shook|strong=\"G4531\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* then|strong=\"G2532\"*, but|strong=\"G1161\"* now|strong=\"G1161\"* he|strong=\"G2532\"* has|strong=\"G3739\"* promised|strong=\"G1861\"*, saying|strong=\"G3004\"*, “Yet|strong=\"G2089\"* once|strong=\"G3739\"* more|strong=\"G2089\"* I|strong=\"G1473\"* will|strong=\"G2532\"* shake|strong=\"G4579\"* not|strong=\"G3756\"* only|strong=\"G3440\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, but|strong=\"G1161\"* also|strong=\"G2532\"* the|strong=\"G2532\"* heavens|strong=\"G3772\"*.”+ 12:26 Haggai 2:6*" + }, + { + "verseNum": 27, + "text": "This|strong=\"G3588\"* phrase, “Yet|strong=\"G2089\"* once more|strong=\"G2089\"*” signifies the|strong=\"G1161\"* removing|strong=\"G3331\"* of|strong=\"G3588\"* those|strong=\"G3588\"* things|strong=\"G3588\"* that|strong=\"G2443\"* are|strong=\"G3588\"* shaken|strong=\"G4531\"*, as|strong=\"G5613\"* of|strong=\"G3588\"* things|strong=\"G3588\"* that|strong=\"G2443\"* have|strong=\"G4160\"* been|strong=\"G4160\"* made|strong=\"G4160\"*, that|strong=\"G2443\"* those|strong=\"G3588\"* things|strong=\"G3588\"* which|strong=\"G3588\"* are|strong=\"G3588\"* not|strong=\"G3361\"* shaken|strong=\"G4531\"* may|strong=\"G2443\"* remain|strong=\"G3306\"*." + }, + { + "verseNum": 28, + "text": "Therefore|strong=\"G1352\"*, receiving|strong=\"G3880\"* a|strong=\"G2192\"* Kingdom that|strong=\"G3739\"* can’t|strong=\"G3588\"* be|strong=\"G2532\"* shaken, let|strong=\"G2192\"*’s|strong=\"G2192\"* have|strong=\"G2192\"* grace|strong=\"G5485\"*, through|strong=\"G1223\"* which|strong=\"G3739\"* we|strong=\"G3739\"* serve|strong=\"G3000\"* God|strong=\"G2316\"* acceptably|strong=\"G2102\"*, with|strong=\"G3326\"* reverence|strong=\"G2124\"* and|strong=\"G2532\"* awe," + }, + { + "verseNum": 29, + "text": "for|strong=\"G1063\"* our|strong=\"G2316\"* God|strong=\"G2316\"* is|strong=\"G3588\"* a|strong=\"G2532\"* consuming|strong=\"G2654\"* fire|strong=\"G4442\"*.+ 12:29 Deuteronomy 4:24*" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Let|strong=\"G3306\"* brotherly|strong=\"G5360\"* love|strong=\"G5360\"* continue|strong=\"G3306\"*." + }, + { + "verseNum": 2, + "text": "Don’t|strong=\"G3588\"* forget|strong=\"G1950\"* to|strong=\"G5100\"* show hospitality|strong=\"G5381\"* to|strong=\"G5100\"* strangers|strong=\"G5381\"*, for|strong=\"G1063\"* in|strong=\"G1223\"* doing so|strong=\"G1223\"*, some|strong=\"G5100\"* have|strong=\"G5100\"* entertained|strong=\"G3579\"* angels without|strong=\"G3361\"* knowing|strong=\"G2990\"* it|strong=\"G1063\"*." + }, + { + "verseNum": 3, + "text": "Remember|strong=\"G3403\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* in|strong=\"G1722\"* bonds|strong=\"G1198\"*, as|strong=\"G5613\"* bound with|strong=\"G1722\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* ill-treated|strong=\"G2558\"*, since|strong=\"G5613\"* you|strong=\"G1722\"* are|strong=\"G1510\"* also|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 4, + "text": "Let|strong=\"G2919\"* marriage|strong=\"G1062\"* be|strong=\"G2532\"* held in|strong=\"G1722\"* honor|strong=\"G5093\"* among|strong=\"G1722\"* all|strong=\"G3956\"*, and|strong=\"G2532\"* let|strong=\"G2919\"* the|strong=\"G1722\"* bed|strong=\"G2845\"* be|strong=\"G2532\"* undefiled; but|strong=\"G2532\"* God|strong=\"G2316\"* will|strong=\"G2316\"* judge|strong=\"G2919\"* the|strong=\"G1722\"* sexually immoral|strong=\"G4205\"* and|strong=\"G2532\"* adulterers|strong=\"G3432\"*." + }, + { + "verseNum": 5, + "text": "Be|strong=\"G3756\"* free from|strong=\"G3756\"* the|strong=\"G3588\"* love of|strong=\"G3588\"* money, content with|strong=\"G3756\"* such|strong=\"G3588\"* things|strong=\"G3588\"* as|strong=\"G5158\"* you|strong=\"G4771\"* have|strong=\"G3588\"*, for|strong=\"G1063\"* he|strong=\"G3588\"* has|strong=\"G3761\"* said|strong=\"G3004\"*, “I|strong=\"G1063\"* will|strong=\"G3004\"* in|strong=\"G3004\"* no|strong=\"G3756\"* way|strong=\"G5158\"* leave|strong=\"G1459\"* you|strong=\"G4771\"*, neither|strong=\"G3761\"* will|strong=\"G3004\"* I|strong=\"G1063\"* in|strong=\"G3004\"* any|strong=\"G3361\"* way|strong=\"G5158\"* forsake|strong=\"G1459\"* you|strong=\"G4771\"*.”+ 13:5 Deuteronomy 31:6*" + }, + { + "verseNum": 6, + "text": "So|strong=\"G5620\"* that|strong=\"G5620\"* with|strong=\"G2962\"* good|strong=\"G2292\"* courage|strong=\"G2292\"* we|strong=\"G2249\"* say|strong=\"G3004\"*," + }, + { + "verseNum": 7, + "text": "Remember|strong=\"G3421\"* your|strong=\"G3588\"* leaders|strong=\"G2233\"*, men|strong=\"G3588\"* who|strong=\"G3739\"* spoke|strong=\"G2980\"* to|strong=\"G2980\"* you|strong=\"G5210\"* the|strong=\"G3588\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*, and|strong=\"G2316\"* considering|strong=\"G2233\"* the|strong=\"G3588\"* results of|strong=\"G3056\"* their|strong=\"G3588\"* conduct, imitate|strong=\"G3401\"* their|strong=\"G3588\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 8, + "text": "Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* is|strong=\"G3588\"* the|strong=\"G2532\"* same|strong=\"G2532\"* yesterday|strong=\"G5504\"*, today|strong=\"G4594\"*, and|strong=\"G2532\"* forever|strong=\"G1519\"*." + }, + { + "verseNum": 9, + "text": "Don’t|strong=\"G3588\"* be|strong=\"G2532\"* carried|strong=\"G3911\"* away|strong=\"G3911\"* by|strong=\"G1722\"* various|strong=\"G4164\"* and|strong=\"G2532\"* strange|strong=\"G3581\"* teachings|strong=\"G1322\"*, for|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G3588\"* good|strong=\"G2570\"* that|strong=\"G3739\"* the|strong=\"G1722\"* heart|strong=\"G2588\"* be|strong=\"G2532\"* established by|strong=\"G1722\"* grace|strong=\"G5485\"*, not|strong=\"G3756\"* by|strong=\"G1722\"* foods|strong=\"G1033\"*, through|strong=\"G1722\"* which|strong=\"G3739\"* those|strong=\"G3588\"* who|strong=\"G3739\"* were|strong=\"G3588\"* so|strong=\"G2532\"* occupied|strong=\"G4043\"* were|strong=\"G3588\"* not|strong=\"G3756\"* benefited|strong=\"G5623\"*." + }, + { + "verseNum": 10, + "text": "We|strong=\"G3739\"* have|strong=\"G2192\"* an|strong=\"G2192\"* altar|strong=\"G2379\"* from|strong=\"G1537\"* which|strong=\"G3739\"* those|strong=\"G3588\"* who|strong=\"G3739\"* serve|strong=\"G3000\"* the|strong=\"G1537\"* holy tabernacle|strong=\"G4633\"* have|strong=\"G2192\"* no|strong=\"G3756\"* right|strong=\"G1849\"* to|strong=\"G1849\"* eat|strong=\"G2068\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* the|strong=\"G1519\"* bodies|strong=\"G4983\"* of|strong=\"G4012\"* those|strong=\"G3588\"* animals|strong=\"G2226\"*, whose|strong=\"G3739\"* blood is|strong=\"G3588\"* brought|strong=\"G1533\"* into|strong=\"G1519\"* the|strong=\"G1519\"* holy place|strong=\"G3739\"* by|strong=\"G1223\"* the|strong=\"G1519\"* high priest as|strong=\"G1519\"* an|strong=\"G1519\"* offering for|strong=\"G1063\"* sin, are|strong=\"G3588\"* burned|strong=\"G2618\"* outside|strong=\"G1854\"* of|strong=\"G4012\"* the|strong=\"G1519\"* camp|strong=\"G3925\"*.+ 13:11 Leviticus 16:27*" + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"G1352\"* Jesus|strong=\"G2424\"* also|strong=\"G2532\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* sanctify the|strong=\"G2532\"* people|strong=\"G2992\"* through|strong=\"G1223\"* his|strong=\"G1223\"* own|strong=\"G2398\"* blood, suffered|strong=\"G3958\"* outside|strong=\"G1854\"* of|strong=\"G1223\"* the|strong=\"G2532\"* gate|strong=\"G4439\"*." + }, + { + "verseNum": 13, + "text": "Let’s therefore|strong=\"G5106\"* go|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G4314\"* him|strong=\"G3588\"* outside|strong=\"G1854\"* of|strong=\"G3588\"* the|strong=\"G4314\"* camp|strong=\"G3925\"*, bearing|strong=\"G5342\"* his|strong=\"G4314\"* reproach|strong=\"G3680\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* here|strong=\"G5602\"* an|strong=\"G2192\"* enduring|strong=\"G3306\"* city|strong=\"G4172\"*, but|strong=\"G1063\"* we|strong=\"G1063\"* seek|strong=\"G1934\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* to|strong=\"G3195\"* come|strong=\"G3195\"*." + }, + { + "verseNum": 15, + "text": "Through|strong=\"G1223\"* him|strong=\"G3588\"*, then|strong=\"G3767\"*, let|strong=\"G1510\"*’s offer up a|strong=\"G1510\"* sacrifice|strong=\"G2378\"* of|strong=\"G1223\"* praise to|strong=\"G2316\"* God|strong=\"G2316\"*+ 13:15 Psalms 50:23* continually|strong=\"G1223\"*, that|strong=\"G3588\"* is|strong=\"G1510\"*, the|strong=\"G3956\"* fruit|strong=\"G2590\"* of|strong=\"G1223\"* lips|strong=\"G5491\"* which|strong=\"G3588\"* proclaim allegiance to|strong=\"G2316\"* his|strong=\"G3956\"* name|strong=\"G3686\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* don’t|strong=\"G3588\"* forget|strong=\"G1950\"* to|strong=\"G2532\"* be|strong=\"G2532\"* doing|strong=\"G2140\"* good|strong=\"G2140\"* and|strong=\"G2532\"* sharing|strong=\"G2842\"*, for|strong=\"G1063\"* with|strong=\"G2532\"* such|strong=\"G5108\"* sacrifices|strong=\"G2378\"* God|strong=\"G2316\"* is|strong=\"G3588\"* well|strong=\"G2532\"* pleased|strong=\"G2100\"*." + }, + { + "verseNum": 17, + "text": "Obey|strong=\"G3982\"* your|strong=\"G2532\"* leaders|strong=\"G2233\"* and|strong=\"G2532\"* submit|strong=\"G5226\"* to|strong=\"G2443\"* them|strong=\"G3588\"*, for|strong=\"G1063\"* they|strong=\"G2532\"* watch on|strong=\"G5228\"* behalf|strong=\"G5228\"* of|strong=\"G3056\"* your|strong=\"G2532\"* souls|strong=\"G5590\"*, as|strong=\"G5613\"* those|strong=\"G3588\"* who|strong=\"G3588\"* will|strong=\"G2532\"* give|strong=\"G4160\"* account|strong=\"G3056\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* may|strong=\"G2532\"* do|strong=\"G4160\"* this|strong=\"G3778\"* with|strong=\"G3326\"* joy|strong=\"G5479\"* and|strong=\"G2532\"* not|strong=\"G3361\"* with|strong=\"G3326\"* groaning, for|strong=\"G1063\"* that|strong=\"G2443\"* would|strong=\"G2532\"* be|strong=\"G2532\"* unprofitable for|strong=\"G1063\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 18, + "text": "Pray|strong=\"G4336\"* for|strong=\"G1063\"* us|strong=\"G2249\"*, for|strong=\"G1063\"* we|strong=\"G2249\"* are|strong=\"G3956\"* persuaded|strong=\"G3982\"* that|strong=\"G3754\"* we|strong=\"G2249\"* have|strong=\"G2192\"* a|strong=\"G2192\"* good|strong=\"G2570\"* conscience|strong=\"G4893\"*, desiring|strong=\"G2309\"* to|strong=\"G2309\"* live|strong=\"G2192\"* honorably|strong=\"G2573\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"G1161\"* strongly urge|strong=\"G3870\"* you|strong=\"G5210\"* to|strong=\"G2443\"* do|strong=\"G4160\"* this|strong=\"G3778\"*, that|strong=\"G2443\"* I|strong=\"G1161\"* may|strong=\"G2443\"* be|strong=\"G2443\"* restored to|strong=\"G2443\"* you|strong=\"G5210\"* sooner|strong=\"G5032\"*." + }, + { + "verseNum": 20, + "text": "Now|strong=\"G1161\"* may|strong=\"G2316\"* the|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G1537\"* peace|strong=\"G1515\"*, who|strong=\"G3588\"* brought|strong=\"G1161\"* again|strong=\"G1537\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* the|strong=\"G1722\"* great|strong=\"G3173\"* shepherd|strong=\"G4166\"* of|strong=\"G1537\"* the|strong=\"G1722\"* sheep|strong=\"G4263\"* with|strong=\"G1722\"* the|strong=\"G1722\"* blood of|strong=\"G1537\"* an|strong=\"G1722\"* eternal covenant|strong=\"G1242\"*, our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 21, + "text": "make|strong=\"G4160\"* you|strong=\"G5210\"* complete|strong=\"G3956\"* in|strong=\"G1722\"* every|strong=\"G3956\"* good|strong=\"G3956\"* work|strong=\"G3956\"* to|strong=\"G1519\"* do|strong=\"G4160\"* his|strong=\"G3956\"* will|strong=\"G2307\"*, working|strong=\"G4160\"* in|strong=\"G1722\"* you|strong=\"G5210\"* that|strong=\"G3739\"* which|strong=\"G3739\"* is|strong=\"G3588\"* well|strong=\"G1722\"* pleasing|strong=\"G2101\"* in|strong=\"G1722\"* his|strong=\"G3956\"* sight|strong=\"G1799\"*, through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, to|strong=\"G1519\"* whom|strong=\"G3739\"* be|strong=\"G3956\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* forever|strong=\"G1519\"* and|strong=\"G1391\"* ever|strong=\"G1519\"*. Amen." + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* I|strong=\"G2532\"* exhort|strong=\"G3870\"* you|strong=\"G5210\"*, brothers, endure the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* exhortation|strong=\"G3874\"*, for|strong=\"G1063\"* I|strong=\"G2532\"* have|strong=\"G2532\"* written|strong=\"G1989\"* to|strong=\"G2532\"* you|strong=\"G5210\"* in|strong=\"G2532\"* few|strong=\"G1223\"* words|strong=\"G3056\"*." + }, + { + "verseNum": 23, + "text": "Know|strong=\"G1097\"* that|strong=\"G3739\"* our|strong=\"G3326\"* brother Timothy|strong=\"G5095\"* has|strong=\"G3739\"* been freed, with|strong=\"G3326\"* whom|strong=\"G3739\"*, if|strong=\"G1437\"* he|strong=\"G3739\"* comes|strong=\"G2064\"* shortly|strong=\"G5032\"*, I|strong=\"G1473\"* will|strong=\"G3739\"* see|strong=\"G3708\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 24, + "text": "Greet all|strong=\"G3956\"* of|strong=\"G2532\"* your|strong=\"G2532\"* leaders|strong=\"G2233\"* and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* saints. The|strong=\"G2532\"* Italians greet you|strong=\"G5210\"*." + }, + { + "verseNum": 25, + "text": "Grace|strong=\"G5485\"* be|strong=\"G3956\"* with|strong=\"G3326\"* you|strong=\"G5210\"* all|strong=\"G3956\"*. Amen." + } + ] + } + ] + }, + { + "name": "James", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "James|strong=\"G2385\"*, a|strong=\"G2532\"* servant|strong=\"G1401\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* of|strong=\"G2316\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:1 “Christ” means “Anointed One”.* to|strong=\"G2532\"* the|strong=\"G1722\"* twelve|strong=\"G1427\"* tribes|strong=\"G5443\"* which|strong=\"G3588\"* are|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Dispersion|strong=\"G1290\"*: Greetings|strong=\"G5463\"*." + }, + { + "verseNum": 2, + "text": "Count|strong=\"G2233\"* it|strong=\"G2233\"* all|strong=\"G3956\"* joy|strong=\"G5479\"*, my|strong=\"G3956\"* brothers,+ 1:2 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* when|strong=\"G3752\"* you|strong=\"G3752\"* fall into|strong=\"G4045\"* various|strong=\"G4164\"* temptations|strong=\"G3986\"*," + }, + { + "verseNum": 3, + "text": "knowing|strong=\"G1097\"* that|strong=\"G3754\"* the|strong=\"G3588\"* testing|strong=\"G1383\"* of|strong=\"G4102\"* your|strong=\"G3588\"* faith|strong=\"G4102\"* produces|strong=\"G2716\"* endurance|strong=\"G5281\"*." + }, + { + "verseNum": 4, + "text": "Let|strong=\"G1161\"* endurance|strong=\"G5281\"* have|strong=\"G2192\"* its perfect|strong=\"G5046\"* work|strong=\"G2041\"*, that|strong=\"G2443\"* you|strong=\"G1722\"* may|strong=\"G2532\"* be|strong=\"G1510\"* perfect|strong=\"G5046\"* and|strong=\"G2532\"* complete|strong=\"G3648\"*, lacking|strong=\"G3007\"* in|strong=\"G1722\"* nothing|strong=\"G3367\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* any|strong=\"G5100\"* of|strong=\"G2316\"* you|strong=\"G5210\"* lacks|strong=\"G3007\"* wisdom|strong=\"G4678\"*, let|strong=\"G1161\"* him|strong=\"G3588\"* ask of|strong=\"G2316\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* gives|strong=\"G1325\"* to|strong=\"G2532\"* all|strong=\"G3956\"* liberally and|strong=\"G2532\"* without|strong=\"G3361\"* reproach|strong=\"G3679\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* let|strong=\"G1161\"* him|strong=\"G3588\"* ask in|strong=\"G1722\"* faith|strong=\"G4102\"*, without|strong=\"G3367\"* any|strong=\"G3367\"* doubting|strong=\"G1252\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* who|strong=\"G3588\"* doubts|strong=\"G1252\"* is|strong=\"G3588\"* like|strong=\"G1503\"* a|strong=\"G2532\"* wave|strong=\"G2830\"* of|strong=\"G2532\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*, driven by|strong=\"G1722\"* the|strong=\"G1722\"* wind|strong=\"G4494\"* and|strong=\"G2532\"* tossed|strong=\"G4494\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* that|strong=\"G3754\"* man|strong=\"G5100\"* shouldn’t|strong=\"G3588\"* think|strong=\"G5100\"* that|strong=\"G3754\"* he|strong=\"G3754\"* will|strong=\"G2962\"* receive|strong=\"G2983\"* anything|strong=\"G5100\"* from|strong=\"G3844\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"G3588\"* is|strong=\"G3588\"* a|strong=\"G1722\"* double-minded|strong=\"G1374\"* man|strong=\"G3956\"*, unstable in|strong=\"G1722\"* all|strong=\"G3956\"* his|strong=\"G3956\"* ways|strong=\"G3598\"*." + }, + { + "verseNum": 9, + "text": "Let|strong=\"G1161\"* the|strong=\"G1722\"* brother in|strong=\"G1722\"* humble|strong=\"G5011\"* circumstances|strong=\"G1722\"* glory|strong=\"G2744\"* in|strong=\"G1722\"* his|strong=\"G1722\"* high|strong=\"G5311\"* position|strong=\"G5311\"*;" + }, + { + "verseNum": 10, + "text": "and|strong=\"G1161\"* the|strong=\"G1722\"* rich|strong=\"G4145\"*, in|strong=\"G1722\"* that|strong=\"G3754\"* he|strong=\"G1161\"* is|strong=\"G3588\"* made|strong=\"G1161\"* humble|strong=\"G5014\"*, because|strong=\"G3754\"* like|strong=\"G5613\"* the|strong=\"G1722\"* flower in|strong=\"G1722\"* the|strong=\"G1722\"* grass|strong=\"G5528\"*, he|strong=\"G1161\"* will|strong=\"G3748\"* pass|strong=\"G3928\"* away|strong=\"G3928\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* sun|strong=\"G2246\"* arises with|strong=\"G1722\"* the|strong=\"G1722\"* scorching|strong=\"G2742\"* wind|strong=\"G2742\"* and|strong=\"G2532\"* withers|strong=\"G3583\"* the|strong=\"G1722\"* grass|strong=\"G5528\"*; and|strong=\"G2532\"* the|strong=\"G1722\"* flower in|strong=\"G1722\"* it|strong=\"G2532\"* falls|strong=\"G1601\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* beauty|strong=\"G2143\"* of|strong=\"G2532\"* its appearance|strong=\"G4383\"* perishes. So|strong=\"G3779\"* the|strong=\"G1722\"* rich|strong=\"G4145\"* man|strong=\"G4145\"* will|strong=\"G2532\"* also|strong=\"G2532\"* fade|strong=\"G3133\"* away|strong=\"G3583\"* in|strong=\"G1722\"* his|strong=\"G1722\"* pursuits|strong=\"G4197\"*." + }, + { + "verseNum": 12, + "text": "Blessed|strong=\"G3107\"* is|strong=\"G3588\"* a|strong=\"G1096\"* person|strong=\"G3739\"* who|strong=\"G3739\"* endures|strong=\"G5278\"* temptation|strong=\"G3986\"*, for|strong=\"G3754\"* when|strong=\"G1096\"* he|strong=\"G3739\"* has|strong=\"G3739\"* been|strong=\"G1096\"* approved|strong=\"G1384\"*, he|strong=\"G3739\"* will|strong=\"G3739\"* receive|strong=\"G2983\"* the|strong=\"G3588\"* crown|strong=\"G4735\"* of|strong=\"G4735\"* life|strong=\"G2222\"* which|strong=\"G3739\"* the|strong=\"G3588\"* Lord|strong=\"G3588\"* promised|strong=\"G1861\"* to|strong=\"G1096\"* those|strong=\"G3588\"* who|strong=\"G3739\"* love him|strong=\"G3588\"*." + }, + { + "verseNum": 13, + "text": "Let|strong=\"G1161\"* no|strong=\"G3762\"* man|strong=\"G3762\"* say|strong=\"G3004\"* when|strong=\"G1161\"* he|strong=\"G1161\"* is|strong=\"G1510\"* tempted|strong=\"G3985\"*, “I|strong=\"G1161\"* am|strong=\"G1510\"* tempted|strong=\"G3985\"* by|strong=\"G3004\"* God|strong=\"G2316\"*,” for|strong=\"G1063\"* God|strong=\"G2316\"* can|strong=\"G3004\"*’t|strong=\"G3588\"* be|strong=\"G1510\"* tempted|strong=\"G3985\"* by|strong=\"G3004\"* evil|strong=\"G2556\"*, and|strong=\"G1161\"* he|strong=\"G1161\"* himself tempts|strong=\"G3985\"* no|strong=\"G3762\"* one|strong=\"G3762\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* each|strong=\"G1538\"* one|strong=\"G1538\"* is|strong=\"G3588\"* tempted|strong=\"G3985\"* when|strong=\"G1161\"* he|strong=\"G2532\"* is|strong=\"G3588\"* drawn away|strong=\"G1828\"* by|strong=\"G5259\"* his|strong=\"G2398\"* own|strong=\"G2398\"* lust|strong=\"G1939\"* and|strong=\"G2532\"* enticed|strong=\"G1185\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"G1161\"* the|strong=\"G1161\"* lust|strong=\"G1939\"*, when|strong=\"G1161\"* it|strong=\"G1161\"* has|strong=\"G2288\"* conceived|strong=\"G4815\"*, bears sin. The|strong=\"G1161\"* sin, when|strong=\"G1161\"* it|strong=\"G1161\"* is|strong=\"G3588\"* full grown, produces death|strong=\"G2288\"*." + }, + { + "verseNum": 16, + "text": "Don’t be|strong=\"G3361\"* deceived|strong=\"G4105\"*, my|strong=\"G1473\"* beloved brothers." + }, + { + "verseNum": 17, + "text": "Every|strong=\"G3956\"* good|strong=\"G3956\"* gift|strong=\"G1434\"* and|strong=\"G2532\"* every|strong=\"G3956\"* perfect|strong=\"G5046\"* gift|strong=\"G1434\"* is|strong=\"G1510\"* from|strong=\"G3844\"* above|strong=\"G3844\"*, coming|strong=\"G2597\"* down|strong=\"G2597\"* from|strong=\"G3844\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* of|strong=\"G2532\"* lights|strong=\"G5457\"*, with|strong=\"G3844\"* whom|strong=\"G3739\"* can be|strong=\"G1510\"* no|strong=\"G3756\"* variation|strong=\"G3883\"* nor|strong=\"G2532\"* turning|strong=\"G5157\"* shadow." + }, + { + "verseNum": 18, + "text": "Of|strong=\"G3056\"* his|strong=\"G1519\"* own will|strong=\"G1510\"* he|strong=\"G3588\"* gave|strong=\"G3588\"* birth to|strong=\"G1519\"* us|strong=\"G1519\"* by|strong=\"G1519\"* the|strong=\"G1519\"* word|strong=\"G3056\"* of|strong=\"G3056\"* truth, that|strong=\"G3588\"* we|strong=\"G2249\"* should|strong=\"G5100\"* be|strong=\"G1510\"* a|strong=\"G1519\"* kind|strong=\"G5100\"* of|strong=\"G3056\"* first|strong=\"G3588\"* fruits of|strong=\"G3056\"* his|strong=\"G1519\"* creatures|strong=\"G2938\"*." + }, + { + "verseNum": 19, + "text": "So|strong=\"G1161\"*, then|strong=\"G1161\"*, my|strong=\"G3956\"* beloved brothers, let|strong=\"G1161\"* every|strong=\"G3956\"* man|strong=\"G3956\"* be|strong=\"G1510\"* swift|strong=\"G5036\"* to|strong=\"G1519\"* hear, slow|strong=\"G1021\"* to|strong=\"G1519\"* speak|strong=\"G2980\"*, and|strong=\"G1161\"* slow|strong=\"G1021\"* to|strong=\"G1519\"* anger|strong=\"G3709\"*;" + }, + { + "verseNum": 20, + "text": "for|strong=\"G1063\"* the|strong=\"G1063\"* anger|strong=\"G3709\"* of|strong=\"G2316\"* man|strong=\"G3756\"* doesn’t produce the|strong=\"G1063\"* righteousness|strong=\"G1343\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 21, + "text": "Therefore|strong=\"G1352\"*, putting|strong=\"G2532\"* away all|strong=\"G3956\"* filthiness|strong=\"G4507\"* and|strong=\"G2532\"* overflowing of|strong=\"G3056\"* wickedness|strong=\"G2549\"*, receive|strong=\"G1209\"* with|strong=\"G1722\"* humility|strong=\"G4240\"* the|strong=\"G1722\"* implanted|strong=\"G1721\"* word|strong=\"G3056\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2532\"* save|strong=\"G4982\"* your|strong=\"G2532\"* souls|strong=\"G5590\"*.+ 1:21 or, preserve your life.*" + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* be|strong=\"G1096\"* doers|strong=\"G4163\"* of|strong=\"G3056\"* the|strong=\"G2532\"* word|strong=\"G3056\"*, and|strong=\"G2532\"* not|strong=\"G3361\"* only|strong=\"G3440\"* hearers, deluding your|strong=\"G2532\"* own|strong=\"G1438\"* selves|strong=\"G1438\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"G3754\"* if|strong=\"G1487\"* anyone|strong=\"G5100\"* is|strong=\"G1510\"* a|strong=\"G2532\"* hearer of|strong=\"G3056\"* the|strong=\"G1722\"* word|strong=\"G3056\"* and|strong=\"G2532\"* not|strong=\"G3756\"* a|strong=\"G2532\"* doer|strong=\"G4163\"*, he|strong=\"G2532\"* is|strong=\"G1510\"* like|strong=\"G1503\"* a|strong=\"G2532\"* man|strong=\"G5100\"* looking|strong=\"G2532\"* at|strong=\"G1722\"* his|strong=\"G1722\"* natural|strong=\"G1078\"* face|strong=\"G4383\"* in|strong=\"G1722\"* a|strong=\"G2532\"* mirror|strong=\"G2072\"*;" + }, + { + "verseNum": 24, + "text": "for|strong=\"G1063\"* he|strong=\"G2532\"* sees himself|strong=\"G1438\"*, and|strong=\"G2532\"* goes away, and|strong=\"G2532\"* immediately|strong=\"G2112\"* forgets|strong=\"G1950\"* what|strong=\"G1063\"* kind|strong=\"G3697\"* of|strong=\"G2532\"* man|strong=\"G3697\"* he|strong=\"G2532\"* was|strong=\"G1510\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* who|strong=\"G3588\"* looks|strong=\"G3879\"* into|strong=\"G1519\"* the|strong=\"G1722\"* perfect|strong=\"G5046\"* law|strong=\"G3551\"* of|strong=\"G2532\"* freedom|strong=\"G1657\"* and|strong=\"G2532\"* continues, not|strong=\"G3756\"* being|strong=\"G1510\"* a|strong=\"G1096\"* hearer who|strong=\"G3588\"* forgets but|strong=\"G1161\"* a|strong=\"G1096\"* doer|strong=\"G4163\"* of|strong=\"G2532\"* the|strong=\"G1722\"* work|strong=\"G2041\"*, this|strong=\"G3778\"* man|strong=\"G3778\"* will|strong=\"G1510\"* be|strong=\"G1096\"* blessed|strong=\"G3107\"* in|strong=\"G1722\"* what|strong=\"G3588\"* he|strong=\"G2532\"* does|strong=\"G1510\"*." + }, + { + "verseNum": 26, + "text": "If|strong=\"G1487\"* anyone|strong=\"G5100\"* among|strong=\"G3588\"* you|strong=\"G1487\"* thinks|strong=\"G1380\"* himself|strong=\"G2588\"* to|strong=\"G5100\"* be|strong=\"G1510\"* religious|strong=\"G2357\"* while|strong=\"G1510\"* he|strong=\"G3778\"* doesn’t|strong=\"G3588\"* bridle|strong=\"G5468\"* his|strong=\"G3588\"* tongue|strong=\"G1100\"*, but|strong=\"G1487\"* deceives his|strong=\"G3588\"* heart|strong=\"G2588\"*, this|strong=\"G3778\"* man|strong=\"G5100\"*’s religion|strong=\"G2356\"* is|strong=\"G1510\"* worthless|strong=\"G3152\"*." + }, + { + "verseNum": 27, + "text": "Pure|strong=\"G2513\"* religion|strong=\"G2356\"* and|strong=\"G2532\"* undefiled before|strong=\"G3844\"* our|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"* is|strong=\"G1510\"* this|strong=\"G3778\"*: to|strong=\"G2532\"* visit|strong=\"G1980\"* the|strong=\"G1722\"* fatherless|strong=\"G3737\"* and|strong=\"G2532\"* widows|strong=\"G5503\"* in|strong=\"G1722\"* their|strong=\"G1438\"* affliction|strong=\"G2347\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* keep|strong=\"G5083\"* oneself|strong=\"G1438\"* unstained by|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"G1722\"* brothers, don’t|strong=\"G3588\"* hold|strong=\"G2192\"* the|strong=\"G1722\"* faith|strong=\"G4102\"* of|strong=\"G1391\"* our|strong=\"G2424\"* glorious|strong=\"G1391\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* with|strong=\"G1722\"* partiality|strong=\"G4382\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* if|strong=\"G1437\"* a|strong=\"G2532\"* man|strong=\"G4434\"* with|strong=\"G1722\"* a|strong=\"G2532\"* gold|strong=\"G5554\"* ring|strong=\"G5554\"*, in|strong=\"G1722\"* fine|strong=\"G2986\"* clothing|strong=\"G2066\"*, comes|strong=\"G1525\"* into|strong=\"G1519\"* your|strong=\"G1437\"* synagogue|strong=\"G4864\"*,+ 2:2 or, meeting* and|strong=\"G2532\"* a|strong=\"G2532\"* poor|strong=\"G4434\"* man|strong=\"G4434\"* in|strong=\"G1722\"* filthy|strong=\"G4508\"* clothing|strong=\"G2066\"* also|strong=\"G2532\"* comes|strong=\"G1525\"* in|strong=\"G1722\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"G2532\"* you|strong=\"G4771\"* pay|strong=\"G1914\"* special|strong=\"G1914\"* attention|strong=\"G1914\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* wears the|strong=\"G2532\"* fine|strong=\"G2986\"* clothing|strong=\"G2066\"* and|strong=\"G2532\"* say|strong=\"G3004\"*, “Sit|strong=\"G2521\"* here|strong=\"G5602\"* in|strong=\"G1909\"* a|strong=\"G2532\"* good|strong=\"G2573\"* place|strong=\"G1563\"*;” and|strong=\"G2532\"* you|strong=\"G4771\"* tell|strong=\"G3004\"* the|strong=\"G2532\"* poor|strong=\"G4434\"* man|strong=\"G4434\"*, “Stand|strong=\"G2476\"* there|strong=\"G1563\"*,” or|strong=\"G2228\"* “Sit|strong=\"G2521\"* by|strong=\"G5259\"* my|strong=\"G1473\"* footstool|strong=\"G5286\"*”" + }, + { + "verseNum": 4, + "text": "haven’t you|strong=\"G1722\"* shown partiality among|strong=\"G1722\"* yourselves|strong=\"G1438\"*, and|strong=\"G2532\"* become|strong=\"G1096\"* judges|strong=\"G2923\"* with|strong=\"G1722\"* evil|strong=\"G4190\"* thoughts|strong=\"G1261\"*?" + }, + { + "verseNum": 5, + "text": "Listen, my|strong=\"G1722\"* beloved brothers. Didn’t|strong=\"G3588\"* God|strong=\"G2316\"* choose|strong=\"G1586\"* those|strong=\"G3588\"* who|strong=\"G3739\"* are|strong=\"G3588\"* poor|strong=\"G4434\"* in|strong=\"G1722\"* this|strong=\"G3588\"* world|strong=\"G2889\"* to|strong=\"G2532\"* be|strong=\"G2532\"* rich|strong=\"G4145\"* in|strong=\"G1722\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* heirs|strong=\"G2818\"* of|strong=\"G2316\"* the|strong=\"G1722\"* Kingdom which|strong=\"G3739\"* he|strong=\"G2532\"* promised|strong=\"G1861\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3739\"* love him|strong=\"G3588\"*?" + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* you|strong=\"G5210\"* have|strong=\"G2532\"* dishonored the|strong=\"G2532\"* poor|strong=\"G4434\"* man|strong=\"G4145\"*. Don’t|strong=\"G3588\"* the|strong=\"G2532\"* rich|strong=\"G4145\"* oppress|strong=\"G2616\"* you|strong=\"G5210\"* and|strong=\"G2532\"* personally drag|strong=\"G1670\"* you|strong=\"G5210\"* before|strong=\"G1519\"* the|strong=\"G2532\"* courts|strong=\"G2922\"*?" + }, + { + "verseNum": 7, + "text": "Don’t|strong=\"G3588\"* they|strong=\"G3588\"* blaspheme the|strong=\"G1909\"* honorable|strong=\"G2570\"* name|strong=\"G3686\"* by|strong=\"G1909\"* which|strong=\"G3588\"* you|strong=\"G5210\"* are|strong=\"G3588\"* called|strong=\"G1941\"*?" + }, + { + "verseNum": 8, + "text": "However|strong=\"G3305\"*, if|strong=\"G1487\"* you|strong=\"G4771\"* fulfill the|strong=\"G2596\"* royal law|strong=\"G3551\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G2596\"* Scripture|strong=\"G1124\"*, “You|strong=\"G4771\"* shall|strong=\"G4160\"* love your|strong=\"G4160\"* neighbor|strong=\"G4139\"* as|strong=\"G5613\"* yourself|strong=\"G4572\"*,”+ 2:8 Leviticus 19:18* you|strong=\"G4771\"* do|strong=\"G4160\"* well|strong=\"G2573\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* you|strong=\"G1487\"* show|strong=\"G4380\"* partiality|strong=\"G4380\"*, you|strong=\"G1487\"* commit|strong=\"G2038\"* sin, being|strong=\"G1161\"* convicted|strong=\"G1651\"* by|strong=\"G5259\"* the|strong=\"G1161\"* law|strong=\"G3551\"* as|strong=\"G5613\"* transgressors|strong=\"G3848\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* whoever|strong=\"G3748\"* keeps|strong=\"G5083\"* the|strong=\"G1722\"* whole|strong=\"G3650\"* law|strong=\"G3551\"*, and|strong=\"G1161\"* yet|strong=\"G1161\"* stumbles|strong=\"G4417\"* in|strong=\"G1722\"* one|strong=\"G1520\"* point, he|strong=\"G1161\"* has|strong=\"G1096\"* become|strong=\"G1096\"* guilty|strong=\"G1777\"* of|strong=\"G3551\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* who|strong=\"G3588\"* said|strong=\"G3004\"*, “Do|strong=\"G1096\"* not|strong=\"G3756\"* commit|strong=\"G3431\"* adultery|strong=\"G3431\"*,”+ 2:11 Exodus 20:14; Deuteronomy 5:18* also|strong=\"G2532\"* said|strong=\"G3004\"*, “Do|strong=\"G1096\"* not|strong=\"G3756\"* commit|strong=\"G3431\"* murder|strong=\"G5407\"*.”+ 2:11 Exodus 20:13; Deuteronomy 5:17 * Now|strong=\"G1161\"* if|strong=\"G1487\"* you|strong=\"G1487\"* do|strong=\"G1096\"* not|strong=\"G3756\"* commit|strong=\"G3431\"* adultery|strong=\"G3431\"* but|strong=\"G1161\"* do|strong=\"G1096\"* murder|strong=\"G5407\"*, you|strong=\"G1487\"* have|strong=\"G2532\"* become|strong=\"G1096\"* a|strong=\"G1096\"* transgressor|strong=\"G3848\"* of|strong=\"G2532\"* the|strong=\"G2532\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 12, + "text": "So|strong=\"G3779\"* speak|strong=\"G2980\"* and|strong=\"G2532\"* so|strong=\"G3779\"* do|strong=\"G4160\"* as|strong=\"G5613\"* men who|strong=\"G2532\"* are|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* judged|strong=\"G2919\"* by|strong=\"G1223\"* the|strong=\"G2532\"* law|strong=\"G3551\"* of|strong=\"G1223\"* freedom|strong=\"G1657\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* judgment|strong=\"G2920\"* is|strong=\"G3588\"* without|strong=\"G3361\"* mercy|strong=\"G1656\"* to|strong=\"G3361\"* him|strong=\"G3588\"* who|strong=\"G3588\"* has|strong=\"G2920\"* shown|strong=\"G4160\"* no|strong=\"G3361\"* mercy|strong=\"G1656\"*. Mercy|strong=\"G1656\"* triumphs|strong=\"G2620\"* over|strong=\"G2620\"* judgment|strong=\"G2920\"*." + }, + { + "verseNum": 14, + "text": "What|strong=\"G5101\"* good|strong=\"G3786\"* is|strong=\"G3588\"* it|strong=\"G1161\"*, my|strong=\"G1473\"* brothers, if|strong=\"G1437\"* a|strong=\"G2192\"* man|strong=\"G5100\"* says|strong=\"G3004\"* he|strong=\"G1161\"* has|strong=\"G2192\"* faith|strong=\"G4102\"*, but|strong=\"G1161\"* has|strong=\"G2192\"* no|strong=\"G3361\"* works|strong=\"G2041\"*? Can|strong=\"G1410\"* faith|strong=\"G4102\"* save|strong=\"G4982\"* him|strong=\"G3588\"*?" + }, + { + "verseNum": 15, + "text": "And|strong=\"G2532\"* if|strong=\"G1437\"* a|strong=\"G2532\"* brother or|strong=\"G2228\"* sister is|strong=\"G3588\"* naked|strong=\"G1131\"* and|strong=\"G2532\"* in|strong=\"G2532\"* lack|strong=\"G3007\"* of|strong=\"G2532\"* daily|strong=\"G2184\"* food|strong=\"G5160\"*," + }, + { + "verseNum": 16, + "text": "and|strong=\"G2532\"* one|strong=\"G5100\"* of|strong=\"G1537\"* you|strong=\"G5210\"* tells them|strong=\"G3588\"*, “Go|strong=\"G5217\"* in|strong=\"G1722\"* peace|strong=\"G1515\"*. Be|strong=\"G2532\"* warmed|strong=\"G2532\"* and|strong=\"G2532\"* filled|strong=\"G5526\"*;” yet|strong=\"G2532\"* you|strong=\"G5210\"* didn’t|strong=\"G3588\"* give|strong=\"G1325\"* them|strong=\"G3588\"* the|strong=\"G1722\"* things|strong=\"G3588\"* the|strong=\"G1722\"* body|strong=\"G4983\"* needs|strong=\"G2006\"*, what|strong=\"G5101\"* good|strong=\"G3786\"* is|strong=\"G3588\"* it|strong=\"G2532\"*?" + }, + { + "verseNum": 17, + "text": "Even|strong=\"G2532\"* so|strong=\"G3779\"* faith|strong=\"G4102\"*, if|strong=\"G1437\"* it|strong=\"G2532\"* has|strong=\"G2192\"* no|strong=\"G3361\"* works|strong=\"G2041\"*, is|strong=\"G1510\"* dead|strong=\"G3498\"* in|strong=\"G2596\"* itself|strong=\"G1438\"*." + }, + { + "verseNum": 18, + "text": "Yes, a|strong=\"G2192\"* man|strong=\"G5100\"* will|strong=\"G1473\"* say|strong=\"G3004\"*, “You|strong=\"G4771\"* have|strong=\"G2192\"* faith|strong=\"G4102\"*, and|strong=\"G4102\"* I|strong=\"G1473\"* have|strong=\"G2192\"* works|strong=\"G2041\"*.” Show|strong=\"G1166\"* me|strong=\"G1473\"* your|strong=\"G2192\"* faith|strong=\"G4102\"* without|strong=\"G5565\"* works|strong=\"G2041\"*, and|strong=\"G4102\"* I|strong=\"G1473\"* will|strong=\"G1473\"* show|strong=\"G1166\"* you|strong=\"G4771\"* my|strong=\"G1473\"* faith|strong=\"G4102\"* by|strong=\"G1537\"* my|strong=\"G1473\"* works|strong=\"G2041\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"G4771\"* believe|strong=\"G4100\"* that|strong=\"G3754\"* God|strong=\"G2316\"* is|strong=\"G1510\"* one|strong=\"G1520\"*. You|strong=\"G4771\"* do|strong=\"G4160\"* well|strong=\"G2573\"*. The|strong=\"G2532\"* demons|strong=\"G1140\"* also|strong=\"G2532\"* believe|strong=\"G4100\"*—and|strong=\"G2532\"* shudder|strong=\"G5425\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* do|strong=\"G1510\"* you|strong=\"G3754\"* want|strong=\"G2309\"* to|strong=\"G2309\"* know|strong=\"G1097\"*, vain|strong=\"G2756\"* man, that|strong=\"G3754\"* faith|strong=\"G4102\"* apart|strong=\"G5565\"* from|strong=\"G3588\"* works|strong=\"G2041\"* is|strong=\"G1510\"* dead?" + }, + { + "verseNum": 21, + "text": "Wasn’t|strong=\"G3588\"* Abraham our|strong=\"G1537\"* father|strong=\"G3962\"* justified|strong=\"G1344\"* by|strong=\"G1537\"* works|strong=\"G2041\"*, in|strong=\"G1909\"* that|strong=\"G3588\"* he|strong=\"G3588\"* offered up|strong=\"G1537\"* Isaac|strong=\"G2464\"* his|strong=\"G1909\"* son|strong=\"G5207\"* on|strong=\"G1909\"* the|strong=\"G1537\"* altar|strong=\"G2379\"*?" + }, + { + "verseNum": 22, + "text": "You|strong=\"G3754\"* see that|strong=\"G3754\"* faith|strong=\"G4102\"* worked|strong=\"G4903\"* with|strong=\"G1537\"* his|strong=\"G2532\"* works|strong=\"G2041\"*, and|strong=\"G2532\"* by|strong=\"G1537\"* works|strong=\"G2041\"* faith|strong=\"G4102\"* was|strong=\"G3588\"* perfected|strong=\"G5048\"*." + }, + { + "verseNum": 23, + "text": "So|strong=\"G2532\"* the|strong=\"G2532\"* Scripture|strong=\"G1124\"* was|strong=\"G3588\"* fulfilled|strong=\"G4137\"* which|strong=\"G3588\"* says|strong=\"G3004\"*, “Abraham|strong=\"G4100\"* believed|strong=\"G4100\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G3588\"* accounted|strong=\"G3049\"* to|strong=\"G1519\"* him|strong=\"G3588\"* as|strong=\"G1519\"* righteousness|strong=\"G1343\"*,”+ 2:23 Genesis 15:6* and|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3588\"* called|strong=\"G2564\"* the|strong=\"G2532\"* friend|strong=\"G5384\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"G3754\"* see|strong=\"G3708\"* then|strong=\"G2532\"* that|strong=\"G3754\"* by|strong=\"G1537\"* works|strong=\"G2041\"* a|strong=\"G2532\"* man|strong=\"G3756\"* is|strong=\"G3748\"* justified|strong=\"G1344\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* only|strong=\"G3440\"* by|strong=\"G1537\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 25, + "text": "In|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G3668\"* way|strong=\"G3598\"*, wasn’t|strong=\"G3588\"* Rahab|strong=\"G4460\"* the|strong=\"G2532\"* prostitute|strong=\"G4204\"* also|strong=\"G2532\"* justified|strong=\"G1344\"* by|strong=\"G1537\"* works|strong=\"G2041\"* when|strong=\"G1161\"* she|strong=\"G2532\"* received|strong=\"G5264\"* the|strong=\"G2532\"* messengers and|strong=\"G2532\"* sent|strong=\"G1544\"* them|strong=\"G3588\"* out|strong=\"G1537\"* another|strong=\"G2087\"* way|strong=\"G3598\"*?" + }, + { + "verseNum": 26, + "text": "For|strong=\"G1063\"* as|strong=\"G5618\"* the|strong=\"G2532\"* body|strong=\"G4983\"* apart|strong=\"G5565\"* from|strong=\"G2532\"* the|strong=\"G2532\"* spirit|strong=\"G4151\"* is|strong=\"G1510\"* dead|strong=\"G3498\"*, even|strong=\"G2532\"* so|strong=\"G3779\"* faith|strong=\"G4102\"* apart|strong=\"G5565\"* from|strong=\"G2532\"* works|strong=\"G2041\"* is|strong=\"G1510\"* dead|strong=\"G3498\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Let|strong=\"G1096\"* not|strong=\"G3361\"* many|strong=\"G4183\"* of|strong=\"G1096\"* you|strong=\"G3754\"* be|strong=\"G1096\"* teachers|strong=\"G1320\"*, my|strong=\"G1473\"* brothers, knowing|strong=\"G1492\"* that|strong=\"G3754\"* we|strong=\"G3754\"* will|strong=\"G1473\"* receive|strong=\"G2983\"* heavier judgment|strong=\"G2917\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* all|strong=\"G3650\"* stumble|strong=\"G4417\"* in|strong=\"G1722\"* many|strong=\"G4183\"* things|strong=\"G3778\"*. Anyone|strong=\"G5100\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* stumble|strong=\"G4417\"* in|strong=\"G1722\"* word|strong=\"G3056\"* is|strong=\"G3588\"* a|strong=\"G2532\"* perfect|strong=\"G5046\"* person|strong=\"G5100\"*, able|strong=\"G1415\"* to|strong=\"G2532\"* bridle|strong=\"G5468\"* the|strong=\"G1722\"* whole|strong=\"G3650\"* body|strong=\"G4983\"* also|strong=\"G2532\"*." + }, + { + "verseNum": 3, + "text": "Indeed|strong=\"G2532\"*, we|strong=\"G2249\"* put|strong=\"G3982\"* bits|strong=\"G5469\"* into|strong=\"G1519\"* the|strong=\"G2532\"* horses|strong=\"G2462\"*’ mouths|strong=\"G4750\"* so|strong=\"G2532\"* that|strong=\"G3588\"* they|strong=\"G2532\"* may|strong=\"G2532\"* obey|strong=\"G3982\"* us|strong=\"G1519\"*, and|strong=\"G2532\"* we|strong=\"G2249\"* guide their|strong=\"G1438\"* whole|strong=\"G3650\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 4, + "text": "Behold|strong=\"G2400\"*,+ 3:4 “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* the|strong=\"G2532\"* ships|strong=\"G4143\"* also|strong=\"G2532\"*, though|strong=\"G2532\"* they|strong=\"G2532\"* are|strong=\"G1510\"* so|strong=\"G2532\"* big and|strong=\"G2532\"* are|strong=\"G1510\"* driven|strong=\"G1643\"* by|strong=\"G5259\"* fierce|strong=\"G4642\"* winds, are|strong=\"G1510\"* yet|strong=\"G2532\"* guided by|strong=\"G5259\"* a|strong=\"G2532\"* very|strong=\"G2532\"* small|strong=\"G1646\"* rudder|strong=\"G4079\"*, wherever|strong=\"G3699\"* the|strong=\"G2532\"* pilot|strong=\"G2116\"* desires|strong=\"G1014\"*." + }, + { + "verseNum": 5, + "text": "So|strong=\"G3779\"* the|strong=\"G2532\"* tongue|strong=\"G1100\"* is|strong=\"G1510\"* also|strong=\"G2532\"* a|strong=\"G2532\"* little|strong=\"G3398\"* member|strong=\"G3196\"*, and|strong=\"G2532\"* boasts great|strong=\"G3173\"* things|strong=\"G3588\"*. See|strong=\"G3708\"* how|strong=\"G3779\"* a|strong=\"G2532\"* small|strong=\"G3398\"* fire|strong=\"G4442\"* can spread to|strong=\"G2532\"* a|strong=\"G2532\"* large|strong=\"G3173\"* forest|strong=\"G5208\"*!" + }, + { + "verseNum": 6, + "text": "And|strong=\"G2532\"* the|strong=\"G1722\"* tongue|strong=\"G1100\"* is|strong=\"G3588\"* a|strong=\"G2532\"* fire|strong=\"G4442\"*. The|strong=\"G1722\"* world|strong=\"G2889\"* of|strong=\"G5259\"* iniquity among|strong=\"G1722\"* our|strong=\"G2532\"* members|strong=\"G3196\"* is|strong=\"G3588\"* the|strong=\"G1722\"* tongue|strong=\"G1100\"*, which|strong=\"G3588\"* defiles|strong=\"G4695\"* the|strong=\"G1722\"* whole|strong=\"G3650\"* body|strong=\"G4983\"*, and|strong=\"G2532\"* sets|strong=\"G5394\"* on|strong=\"G1722\"* fire|strong=\"G4442\"* the|strong=\"G1722\"* course|strong=\"G5164\"* of|strong=\"G5259\"* nature|strong=\"G1078\"*, and|strong=\"G2532\"* is|strong=\"G3588\"* set|strong=\"G2525\"* on|strong=\"G1722\"* fire|strong=\"G4442\"* by|strong=\"G1722\"* Gehenna.+ 3:6 or, Hell*" + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* every|strong=\"G3956\"* kind|strong=\"G3956\"* of|strong=\"G2532\"* animal, bird|strong=\"G4071\"*, creeping|strong=\"G2532\"* thing|strong=\"G3956\"*, and|strong=\"G2532\"* sea|strong=\"G1724\"* creature|strong=\"G2342\"* is|strong=\"G3588\"* tamed|strong=\"G1150\"*, and|strong=\"G2532\"* has|strong=\"G2532\"* been|strong=\"G2532\"* tamed|strong=\"G1150\"* by|strong=\"G2532\"* mankind;" + }, + { + "verseNum": 8, + "text": "but|strong=\"G1161\"* nobody|strong=\"G3762\"* can|strong=\"G1410\"* tame|strong=\"G1150\"* the|strong=\"G1161\"* tongue|strong=\"G1100\"*. It|strong=\"G1161\"* is|strong=\"G3588\"* a|strong=\"G1161\"* restless evil|strong=\"G2556\"*, full|strong=\"G3324\"* of|strong=\"G3324\"* deadly|strong=\"G2287\"* poison|strong=\"G2447\"*." + }, + { + "verseNum": 9, + "text": "With|strong=\"G1722\"* it|strong=\"G2532\"* we|strong=\"G2532\"* bless|strong=\"G2127\"* our|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"*, and|strong=\"G2532\"* with|strong=\"G1722\"* it|strong=\"G2532\"* we|strong=\"G2532\"* curse|strong=\"G2672\"* men|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* made|strong=\"G1096\"* in|strong=\"G1722\"* the|strong=\"G1722\"* image|strong=\"G3669\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 10, + "text": "Out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* same|strong=\"G3778\"* mouth|strong=\"G4750\"* comes|strong=\"G1096\"* blessing|strong=\"G2129\"* and|strong=\"G2532\"* cursing|strong=\"G2671\"*. My|strong=\"G1473\"* brothers, these|strong=\"G3778\"* things|strong=\"G3778\"* ought|strong=\"G5534\"* not|strong=\"G3756\"* to|strong=\"G2532\"* be|strong=\"G1096\"* so|strong=\"G3779\"*." + }, + { + "verseNum": 11, + "text": "Does|strong=\"G1032\"* a|strong=\"G2532\"* spring|strong=\"G4077\"* send|strong=\"G1032\"* out|strong=\"G1537\"* from|strong=\"G1537\"* the|strong=\"G2532\"* same|strong=\"G2532\"* opening|strong=\"G3692\"* fresh|strong=\"G1099\"* and|strong=\"G2532\"* bitter|strong=\"G4089\"* water?" + }, + { + "verseNum": 12, + "text": "Can|strong=\"G1410\"* a|strong=\"G4160\"* fig|strong=\"G4808\"* tree|strong=\"G4808\"*, my|strong=\"G1473\"* brothers, yield|strong=\"G4160\"* olives|strong=\"G1636\"*, or|strong=\"G2228\"* a|strong=\"G4160\"* vine figs|strong=\"G4810\"*? Thus no|strong=\"G3361\"* spring yields both salt water|strong=\"G5204\"* and|strong=\"G4160\"* fresh|strong=\"G1099\"* water|strong=\"G5204\"*." + }, + { + "verseNum": 13, + "text": "Who|strong=\"G5101\"* is|strong=\"G3588\"* wise|strong=\"G4680\"* and|strong=\"G2532\"* understanding|strong=\"G1990\"* among|strong=\"G1722\"* you|strong=\"G5210\"*? Let|strong=\"G2532\"* him|strong=\"G3588\"* show|strong=\"G1166\"* by|strong=\"G1722\"* his|strong=\"G1722\"* good|strong=\"G2570\"* conduct|strong=\"G2041\"* that|strong=\"G3588\"* his|strong=\"G1722\"* deeds|strong=\"G2041\"* are|strong=\"G3588\"* done|strong=\"G2041\"* in|strong=\"G1722\"* gentleness|strong=\"G4240\"* of|strong=\"G1537\"* wisdom|strong=\"G4678\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* you|strong=\"G5210\"* have|strong=\"G2192\"* bitter|strong=\"G4089\"* jealousy|strong=\"G2205\"* and|strong=\"G2532\"* selfish|strong=\"G2052\"* ambition|strong=\"G2052\"* in|strong=\"G1722\"* your|strong=\"G2192\"* heart|strong=\"G2588\"*, don’t|strong=\"G3588\"* boast|strong=\"G2620\"* and|strong=\"G2532\"* don’t|strong=\"G3588\"* lie|strong=\"G5574\"* against|strong=\"G2596\"* the|strong=\"G1722\"* truth." + }, + { + "verseNum": 15, + "text": "This|strong=\"G3778\"* wisdom|strong=\"G4678\"* is|strong=\"G1510\"* not|strong=\"G3756\"* that|strong=\"G3588\"* which|strong=\"G3588\"* comes|strong=\"G1510\"* down|strong=\"G2718\"* from|strong=\"G3756\"* above, but|strong=\"G3588\"* is|strong=\"G1510\"* earthly|strong=\"G1919\"*, sensual|strong=\"G5591\"*, and|strong=\"G4678\"* demonic|strong=\"G1141\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* where|strong=\"G3699\"* jealousy|strong=\"G2205\"* and|strong=\"G2532\"* selfish|strong=\"G2052\"* ambition|strong=\"G2052\"* are|strong=\"G3956\"*, there|strong=\"G1563\"* is|strong=\"G3956\"* confusion and|strong=\"G2532\"* every|strong=\"G3956\"* evil|strong=\"G5337\"* deed|strong=\"G4229\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* wisdom|strong=\"G4678\"* that|strong=\"G3588\"* is|strong=\"G1510\"* from|strong=\"G2532\"* above|strong=\"G4412\"* is|strong=\"G1510\"* first|strong=\"G4413\"* pure, then|strong=\"G2532\"* peaceful|strong=\"G1516\"*, gentle|strong=\"G1933\"*, reasonable|strong=\"G2138\"*, full|strong=\"G3324\"* of|strong=\"G2532\"* mercy|strong=\"G1656\"* and|strong=\"G2532\"* good|strong=\"G3588\"* fruits|strong=\"G2590\"*, without|strong=\"G2532\"* partiality, and|strong=\"G2532\"* without|strong=\"G2532\"* hypocrisy." + }, + { + "verseNum": 18, + "text": "Now|strong=\"G1161\"* the|strong=\"G1722\"* fruit|strong=\"G2590\"* of|strong=\"G1722\"* righteousness|strong=\"G1343\"* is|strong=\"G3588\"* sown|strong=\"G4687\"* in|strong=\"G1722\"* peace|strong=\"G1515\"* by|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* make|strong=\"G4160\"* peace|strong=\"G1515\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Where|strong=\"G4159\"* do|strong=\"G2532\"* wars|strong=\"G4171\"* and|strong=\"G2532\"* fightings|strong=\"G3163\"* among|strong=\"G1722\"* you|strong=\"G5210\"* come|strong=\"G2532\"* from|strong=\"G1537\"*? Don’t|strong=\"G3588\"* they|strong=\"G2532\"* come|strong=\"G2532\"* from|strong=\"G1537\"* your|strong=\"G2532\"* pleasures|strong=\"G2237\"* that|strong=\"G3588\"* war|strong=\"G4171\"* in|strong=\"G1722\"* your|strong=\"G2532\"* members|strong=\"G3196\"*?" + }, + { + "verseNum": 2, + "text": "You|strong=\"G5210\"* lust|strong=\"G1937\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"*. You|strong=\"G5210\"* murder|strong=\"G5407\"* and|strong=\"G2532\"* covet|strong=\"G1937\"*, and|strong=\"G2532\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* obtain|strong=\"G2013\"*. You|strong=\"G5210\"* fight|strong=\"G3164\"* and|strong=\"G2532\"* make|strong=\"G2532\"* war|strong=\"G4170\"*. You|strong=\"G5210\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"*, because|strong=\"G1223\"* you|strong=\"G5210\"* don’t|strong=\"G3588\"* ask." + }, + { + "verseNum": 3, + "text": "You|strong=\"G5210\"* ask, and|strong=\"G2532\"* don’t|strong=\"G3588\"* receive|strong=\"G2983\"*, because|strong=\"G1360\"* you|strong=\"G5210\"* ask with|strong=\"G1722\"* wrong|strong=\"G2560\"* motives|strong=\"G2560\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* spend|strong=\"G1159\"* it|strong=\"G2532\"* on|strong=\"G1722\"* your|strong=\"G2532\"* pleasures|strong=\"G2237\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"G3739\"* adulterers|strong=\"G3428\"* and|strong=\"G2316\"* adulteresses|strong=\"G3428\"*, don’t|strong=\"G3588\"* you|strong=\"G3739\"* know|strong=\"G1492\"* that|strong=\"G3754\"* friendship|strong=\"G5373\"* with|strong=\"G2316\"* the|strong=\"G3588\"* world|strong=\"G2889\"* is|strong=\"G1510\"* hostility|strong=\"G2189\"* toward|strong=\"G2189\"* God|strong=\"G2316\"*? Whoever|strong=\"G3739\"* therefore|strong=\"G3767\"* wants to|strong=\"G1014\"* be|strong=\"G1510\"* a|strong=\"G1510\"* friend|strong=\"G5384\"* of|strong=\"G2316\"* the|strong=\"G3588\"* world|strong=\"G2889\"* makes|strong=\"G2525\"* himself an|strong=\"G1510\"* enemy|strong=\"G2190\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 5, + "text": "Or|strong=\"G2228\"* do|strong=\"G1380\"* you|strong=\"G3739\"* think|strong=\"G1380\"* that|strong=\"G3754\"* the|strong=\"G1722\"* Scripture|strong=\"G1124\"* says|strong=\"G3004\"* in|strong=\"G1722\"* vain|strong=\"G2761\"*, “The|strong=\"G1722\"* Spirit|strong=\"G4151\"* who|strong=\"G3739\"* lives|strong=\"G2730\"* in|strong=\"G1722\"* us|strong=\"G3004\"* yearns jealously|strong=\"G5355\"*”?" + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* gives|strong=\"G1325\"* more|strong=\"G3173\"* grace|strong=\"G5485\"*. Therefore|strong=\"G1352\"* it|strong=\"G1161\"* says|strong=\"G3004\"*, “God|strong=\"G2316\"* resists the|strong=\"G1161\"* proud|strong=\"G5244\"*, but|strong=\"G1161\"* gives|strong=\"G1325\"* grace|strong=\"G5485\"* to|strong=\"G3004\"* the|strong=\"G1161\"* humble|strong=\"G5011\"*.”+ 4:6 Proverbs 3:34*" + }, + { + "verseNum": 7, + "text": "Be|strong=\"G2532\"* subject|strong=\"G5293\"* therefore|strong=\"G3767\"* to|strong=\"G2532\"* God|strong=\"G2316\"*. Resist the|strong=\"G2532\"* devil|strong=\"G1228\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G2316\"* flee|strong=\"G5343\"* from|strong=\"G2532\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 8, + "text": "Draw|strong=\"G1448\"* near|strong=\"G1448\"* to|strong=\"G2532\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G2316\"* draw|strong=\"G1448\"* near|strong=\"G1448\"* to|strong=\"G2532\"* you|strong=\"G5210\"*. Cleanse|strong=\"G2511\"* your|strong=\"G2532\"* hands|strong=\"G5495\"*, you|strong=\"G5210\"* sinners. Purify|strong=\"G2511\"* your|strong=\"G2532\"* hearts|strong=\"G2588\"*, you|strong=\"G5210\"* double-minded|strong=\"G1374\"*." + }, + { + "verseNum": 9, + "text": "Lament, mourn|strong=\"G3996\"*, and|strong=\"G2532\"* weep|strong=\"G2799\"*. Let|strong=\"G2532\"* your|strong=\"G2532\"* laughter|strong=\"G1071\"* be|strong=\"G2532\"* turned|strong=\"G3344\"* to|strong=\"G1519\"* mourning|strong=\"G3997\"* and|strong=\"G2532\"* your|strong=\"G2532\"* joy|strong=\"G5479\"* to|strong=\"G1519\"* gloom|strong=\"G2726\"*." + }, + { + "verseNum": 10, + "text": "Humble|strong=\"G5013\"* yourselves|strong=\"G4771\"* in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G2532\"* exalt|strong=\"G5312\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 11, + "text": "Don’t|strong=\"G3588\"* speak|strong=\"G2635\"* against|strong=\"G2635\"* one|strong=\"G3588\"* another|strong=\"G3588\"*, brothers. He|strong=\"G2532\"* who|strong=\"G3588\"* speaks|strong=\"G2635\"* against|strong=\"G2635\"* a|strong=\"G2532\"* brother and|strong=\"G2532\"* judges|strong=\"G2919\"* his|strong=\"G2532\"* brother, speaks|strong=\"G2635\"* against|strong=\"G2635\"* the|strong=\"G2532\"* law|strong=\"G3551\"* and|strong=\"G2532\"* judges|strong=\"G2919\"* the|strong=\"G2532\"* law|strong=\"G3551\"*. But|strong=\"G1161\"* if|strong=\"G1487\"* you|strong=\"G1487\"* judge|strong=\"G2919\"* the|strong=\"G2532\"* law|strong=\"G3551\"*, you|strong=\"G1487\"* are|strong=\"G1510\"* not|strong=\"G3756\"* a|strong=\"G2532\"* doer|strong=\"G4163\"* of|strong=\"G2532\"* the|strong=\"G2532\"* law|strong=\"G3551\"* but|strong=\"G1161\"* a|strong=\"G2532\"* judge|strong=\"G2919\"*." + }, + { + "verseNum": 12, + "text": "Only|strong=\"G2532\"* one|strong=\"G1520\"* is|strong=\"G1510\"* the|strong=\"G2532\"* lawgiver|strong=\"G3550\"*, who|strong=\"G5101\"* is|strong=\"G1510\"* able|strong=\"G1410\"* to|strong=\"G2532\"* save|strong=\"G4982\"* and|strong=\"G2532\"* to|strong=\"G2532\"* destroy. But|strong=\"G1161\"* who|strong=\"G5101\"* are|strong=\"G1510\"* you|strong=\"G4771\"* to|strong=\"G2532\"* judge|strong=\"G2919\"* another|strong=\"G1520\"*?" + }, + { + "verseNum": 13, + "text": "Come|strong=\"G2532\"* now|strong=\"G3568\"*, you|strong=\"G3004\"* who|strong=\"G3588\"* say|strong=\"G3004\"*, “Today|strong=\"G4594\"* or|strong=\"G2228\"* tomorrow let|strong=\"G2532\"*’s go|strong=\"G4198\"* into|strong=\"G1519\"* this|strong=\"G3588\"* city|strong=\"G4172\"* and|strong=\"G2532\"* spend|strong=\"G4160\"* a|strong=\"G2532\"* year|strong=\"G1763\"* there|strong=\"G1563\"*, trade, and|strong=\"G2532\"* make|strong=\"G4160\"* a|strong=\"G2532\"* profit|strong=\"G2770\"*.”" + }, + { + "verseNum": 14, + "text": "Yet|strong=\"G2532\"* you|strong=\"G5210\"* don’t|strong=\"G3588\"* know|strong=\"G1987\"* what|strong=\"G4169\"* your|strong=\"G2532\"* life|strong=\"G2222\"* will|strong=\"G1510\"* be|strong=\"G1510\"* like|strong=\"G4314\"* tomorrow. For|strong=\"G1063\"* what|strong=\"G4169\"* is|strong=\"G1510\"* your|strong=\"G2532\"* life|strong=\"G2222\"*? For|strong=\"G1063\"* you|strong=\"G5210\"* are|strong=\"G1510\"* a|strong=\"G2532\"* vapor that|strong=\"G3588\"* appears|strong=\"G5316\"* for|strong=\"G1063\"* a|strong=\"G2532\"* little|strong=\"G3641\"* time|strong=\"G3641\"* and|strong=\"G2532\"* then|strong=\"G2532\"* vanishes away." + }, + { + "verseNum": 15, + "text": "For|strong=\"G2532\"* you|strong=\"G5210\"* ought to|strong=\"G2532\"* say|strong=\"G3004\"*, “If|strong=\"G1437\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* wills|strong=\"G2309\"*, we|strong=\"G1437\"* will|strong=\"G2309\"* both|strong=\"G2532\"* live|strong=\"G2198\"*, and|strong=\"G2532\"* do|strong=\"G4160\"* this|strong=\"G3778\"* or|strong=\"G2228\"* that|strong=\"G3588\"*.”" + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* you|strong=\"G5210\"* glory|strong=\"G2744\"* in|strong=\"G1722\"* your|strong=\"G3956\"* boasting|strong=\"G2746\"*. All|strong=\"G3956\"* such|strong=\"G5108\"* boasting|strong=\"G2746\"* is|strong=\"G1510\"* evil|strong=\"G4190\"*." + }, + { + "verseNum": 17, + "text": "To|strong=\"G2532\"* him|strong=\"G4160\"* therefore|strong=\"G3767\"* who|strong=\"G2532\"* knows|strong=\"G1492\"* to|strong=\"G2532\"* do|strong=\"G4160\"* good|strong=\"G2570\"* and|strong=\"G2532\"* doesn’t do|strong=\"G4160\"* it|strong=\"G2532\"*, to|strong=\"G2532\"* him|strong=\"G4160\"* it|strong=\"G2532\"* is|strong=\"G1510\"* sin." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Come|strong=\"G1904\"* now|strong=\"G3568\"*, you|strong=\"G5210\"* rich|strong=\"G4145\"*, weep|strong=\"G2799\"* and|strong=\"G2799\"* howl|strong=\"G3649\"* for|strong=\"G1909\"* your|strong=\"G1909\"* miseries|strong=\"G5004\"* that|strong=\"G3588\"* are|strong=\"G3588\"* coming|strong=\"G1904\"* on|strong=\"G1909\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 2, + "text": "Your|strong=\"G2532\"* riches|strong=\"G4149\"* are|strong=\"G3588\"* corrupted|strong=\"G4595\"* and|strong=\"G2532\"* your|strong=\"G2532\"* garments|strong=\"G2440\"* are|strong=\"G3588\"* moth-eaten|strong=\"G4598\"*." + }, + { + "verseNum": 3, + "text": "Your|strong=\"G2532\"* gold|strong=\"G5557\"* and|strong=\"G2532\"* your|strong=\"G2532\"* silver are|strong=\"G1510\"* corroded, and|strong=\"G2532\"* their|strong=\"G2532\"* corrosion will|strong=\"G1510\"* be|strong=\"G1510\"* for|strong=\"G1519\"* a|strong=\"G5613\"* testimony|strong=\"G3142\"* against|strong=\"G1519\"* you|strong=\"G5210\"* and|strong=\"G2532\"* will|strong=\"G1510\"* eat|strong=\"G2068\"* your|strong=\"G2532\"* flesh|strong=\"G4561\"* like|strong=\"G5613\"* fire|strong=\"G4442\"*. You|strong=\"G5210\"* have|strong=\"G2532\"* laid|strong=\"G2532\"* up|strong=\"G2343\"* your|strong=\"G2532\"* treasure|strong=\"G2343\"* in|strong=\"G1722\"* the|strong=\"G1722\"* last|strong=\"G2078\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 4, + "text": "Behold|strong=\"G2400\"*, the|strong=\"G2532\"* wages|strong=\"G3408\"* of|strong=\"G2532\"* the|strong=\"G2532\"* laborers|strong=\"G2040\"* who|strong=\"G3588\"* mowed your|strong=\"G2962\"* fields|strong=\"G5561\"*, which|strong=\"G3588\"* you|strong=\"G5210\"* have|strong=\"G2532\"* kept|strong=\"G2532\"* back|strong=\"G1519\"* by|strong=\"G2532\"* fraud, cry|strong=\"G2896\"* out|strong=\"G2896\"*; and|strong=\"G2532\"* the|strong=\"G2532\"* cries|strong=\"G2896\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* reaped|strong=\"G2325\"* have|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* ears|strong=\"G3775\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* of|strong=\"G2532\"* Armies.+ 5:4 Greek: Sabaoth (or Hebrew: Tze’va’ot)*" + }, + { + "verseNum": 5, + "text": "You|strong=\"G5210\"* have|strong=\"G2532\"* lived|strong=\"G2532\"* in|strong=\"G1722\"* luxury on|strong=\"G1909\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, and|strong=\"G2532\"* taken your|strong=\"G2532\"* pleasure|strong=\"G4684\"*. You|strong=\"G5210\"* have|strong=\"G2532\"* nourished|strong=\"G5142\"* your|strong=\"G2532\"* hearts|strong=\"G2588\"* as|strong=\"G1722\"* in|strong=\"G1722\"* a|strong=\"G2532\"* day|strong=\"G2250\"* of|strong=\"G2250\"* slaughter|strong=\"G4967\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"G5210\"* have|strong=\"G5210\"* condemned|strong=\"G2613\"* and|strong=\"G1342\"* you|strong=\"G5210\"* have|strong=\"G5210\"* murdered|strong=\"G5407\"* the|strong=\"G3588\"* righteous|strong=\"G1342\"* one|strong=\"G3588\"*. He|strong=\"G3588\"* doesn’t|strong=\"G3588\"* resist you|strong=\"G5210\"*." + }, + { + "verseNum": 7, + "text": "Be|strong=\"G2532\"* patient|strong=\"G3114\"* therefore|strong=\"G3767\"*, brothers, until|strong=\"G2193\"* the|strong=\"G2532\"* coming|strong=\"G3952\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*. Behold|strong=\"G2400\"*, the|strong=\"G2532\"* farmer|strong=\"G1092\"* waits|strong=\"G1551\"* for|strong=\"G1909\"* the|strong=\"G2532\"* precious|strong=\"G5093\"* fruit|strong=\"G2590\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, being|strong=\"G2532\"* patient|strong=\"G3114\"* over|strong=\"G1909\"* it|strong=\"G2532\"*, until|strong=\"G2193\"* it|strong=\"G2532\"* receives|strong=\"G2983\"* the|strong=\"G2532\"* early|strong=\"G4406\"* and|strong=\"G2532\"* late|strong=\"G3797\"* rain." + }, + { + "verseNum": 8, + "text": "You|strong=\"G5210\"* also|strong=\"G2532\"* be|strong=\"G2532\"* patient|strong=\"G3114\"*. Establish|strong=\"G4741\"* your|strong=\"G2962\"* hearts|strong=\"G2588\"*, for|strong=\"G3754\"* the|strong=\"G2532\"* coming|strong=\"G3952\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* is|strong=\"G3588\"* at|strong=\"G3588\"* hand|strong=\"G1448\"*." + }, + { + "verseNum": 9, + "text": "Don’t|strong=\"G3588\"* grumble|strong=\"G4727\"*, brothers, against|strong=\"G2596\"* one|strong=\"G3588\"* another|strong=\"G2596\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* you|strong=\"G3708\"* won’t|strong=\"G3588\"* be|strong=\"G3361\"* judged|strong=\"G2919\"*. Behold|strong=\"G2400\"*, the|strong=\"G2596\"* judge|strong=\"G2919\"* stands|strong=\"G2476\"* at|strong=\"G2596\"* the|strong=\"G2596\"* door|strong=\"G2374\"*." + }, + { + "verseNum": 10, + "text": "Take|strong=\"G2983\"*, brothers, for|strong=\"G1722\"* an|strong=\"G2532\"* example|strong=\"G5262\"* of|strong=\"G2532\"* suffering|strong=\"G1722\"* and|strong=\"G2532\"* of|strong=\"G2532\"* perseverance|strong=\"G3115\"*, the|strong=\"G1722\"* prophets|strong=\"G4396\"* who|strong=\"G3739\"* spoke|strong=\"G2980\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 11, + "text": "Behold|strong=\"G2400\"*, we|strong=\"G3754\"* call|strong=\"G2532\"* them|strong=\"G3588\"* blessed|strong=\"G3106\"* who|strong=\"G3588\"* endured|strong=\"G5278\"*. You|strong=\"G3754\"* have|strong=\"G2532\"* heard of|strong=\"G2532\"* the|strong=\"G2532\"* perseverance|strong=\"G5281\"* of|strong=\"G2532\"* Job|strong=\"G2492\"* and|strong=\"G2532\"* have|strong=\"G2532\"* seen|strong=\"G3708\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* in|strong=\"G2532\"* the|strong=\"G2532\"* outcome|strong=\"G5056\"*, and|strong=\"G2532\"* how|strong=\"G3754\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* is|strong=\"G1510\"* full|strong=\"G4184\"* of|strong=\"G2532\"* compassion|strong=\"G4184\"* and|strong=\"G2532\"* mercy|strong=\"G3629\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* above|strong=\"G4253\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, my|strong=\"G3956\"* brothers, don’t|strong=\"G3588\"* swear|strong=\"G3660\"*—not|strong=\"G3756\"* by|strong=\"G5259\"* heaven|strong=\"G3772\"*, or|strong=\"G2532\"* by|strong=\"G5259\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, or|strong=\"G2532\"* by|strong=\"G5259\"* any|strong=\"G5100\"* other|strong=\"G1161\"* oath|strong=\"G3727\"*; but|strong=\"G1161\"* let|strong=\"G1161\"* your|strong=\"G2532\"* “yes|strong=\"G3483\"*” be|strong=\"G1510\"* “yes|strong=\"G3483\"*”, and|strong=\"G2532\"* your|strong=\"G2532\"* “no|strong=\"G3756\"*”, “no|strong=\"G3756\"*”, so|strong=\"G2443\"* that|strong=\"G2443\"* you|strong=\"G5210\"* don’t|strong=\"G3588\"* fall|strong=\"G4098\"* into|strong=\"G5259\"* hypocrisy.+ 5:12 TR reads “under judgment” instead of “into hypocrisy”*" + }, + { + "verseNum": 13, + "text": "Is|strong=\"G5100\"* any|strong=\"G5100\"* among|strong=\"G1722\"* you|strong=\"G5210\"* suffering|strong=\"G2553\"*? Let him|strong=\"G1722\"* pray|strong=\"G4336\"*. Is|strong=\"G5100\"* any|strong=\"G5100\"* cheerful|strong=\"G2114\"*? Let him|strong=\"G1722\"* sing|strong=\"G5567\"* praises|strong=\"G5567\"*." + }, + { + "verseNum": 14, + "text": "Is|strong=\"G3588\"* any|strong=\"G5100\"* among|strong=\"G1722\"* you|strong=\"G5210\"* sick? Let|strong=\"G2532\"* him|strong=\"G3588\"* call|strong=\"G4341\"* for|strong=\"G1909\"* the|strong=\"G1722\"* elders|strong=\"G4245\"* of|strong=\"G2532\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"*, and|strong=\"G2532\"* let|strong=\"G2532\"* them|strong=\"G3588\"* pray|strong=\"G4336\"* over|strong=\"G1909\"* him|strong=\"G3588\"*, anointing him|strong=\"G3588\"* with|strong=\"G1722\"* oil|strong=\"G1637\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"G2532\"* the|strong=\"G2532\"* prayer|strong=\"G2171\"* of|strong=\"G2532\"* faith|strong=\"G4102\"* will|strong=\"G1510\"* heal him|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G1510\"* sick|strong=\"G2577\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* will|strong=\"G1510\"* raise|strong=\"G1453\"* him|strong=\"G3588\"* up|strong=\"G1453\"*. If|strong=\"G2579\"* he|strong=\"G2532\"* has|strong=\"G2962\"* committed|strong=\"G4160\"* sins, he|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* forgiven." + }, + { + "verseNum": 16, + "text": "Confess|strong=\"G1843\"* your|strong=\"G2532\"* sins to|strong=\"G2532\"* one|strong=\"G3588\"* another|strong=\"G3588\"* and|strong=\"G2532\"* pray|strong=\"G2172\"* for|strong=\"G5228\"* one|strong=\"G3588\"* another|strong=\"G3588\"*, that|strong=\"G3588\"* you|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G2532\"* healed|strong=\"G2390\"*. The|strong=\"G2532\"* insistent prayer|strong=\"G1162\"* of|strong=\"G2532\"* a|strong=\"G2532\"* righteous|strong=\"G1342\"* person|strong=\"G1342\"* is|strong=\"G3588\"* powerfully effective|strong=\"G1754\"*." + }, + { + "verseNum": 17, + "text": "Elijah|strong=\"G2243\"* was|strong=\"G1510\"* a|strong=\"G2532\"* man|strong=\"G3361\"* with|strong=\"G2532\"* a|strong=\"G2532\"* nature|strong=\"G3663\"* like|strong=\"G3663\"* ours|strong=\"G1473\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* prayed|strong=\"G4336\"* earnestly|strong=\"G4335\"* that|strong=\"G3588\"* it|strong=\"G2532\"* might|strong=\"G2532\"* not|strong=\"G3756\"* rain|strong=\"G1026\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* didn’t|strong=\"G3588\"* rain|strong=\"G1026\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* for|strong=\"G1909\"* three|strong=\"G5140\"* years|strong=\"G1763\"* and|strong=\"G2532\"* six|strong=\"G1803\"* months|strong=\"G3376\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"G2532\"* prayed|strong=\"G4336\"* again|strong=\"G3825\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* sky|strong=\"G3772\"* gave|strong=\"G1325\"* rain|strong=\"G5205\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* produced|strong=\"G1325\"* its|strong=\"G1325\"* fruit|strong=\"G2590\"*." + }, + { + "verseNum": 19, + "text": "Brothers, if|strong=\"G1437\"* any|strong=\"G5100\"* among|strong=\"G1722\"* you|strong=\"G5210\"* wanders|strong=\"G4105\"* from|strong=\"G2532\"* the|strong=\"G1722\"* truth and|strong=\"G2532\"* someone|strong=\"G5100\"* turns|strong=\"G1994\"* him|strong=\"G3588\"* back|strong=\"G1994\"*," + }, + { + "verseNum": 20, + "text": "let|strong=\"G1097\"* him|strong=\"G3588\"* know|strong=\"G1097\"* that|strong=\"G3754\"* he|strong=\"G2532\"* who|strong=\"G3588\"* turns|strong=\"G1994\"* a|strong=\"G2532\"* sinner from|strong=\"G1537\"* the|strong=\"G2532\"* error|strong=\"G4106\"* of|strong=\"G1537\"* his|strong=\"G2532\"* way|strong=\"G3598\"* will|strong=\"G2532\"* save|strong=\"G4982\"* a|strong=\"G2532\"* soul|strong=\"G5590\"* from|strong=\"G1537\"* death|strong=\"G2288\"* and|strong=\"G2532\"* will|strong=\"G2532\"* cover|strong=\"G2572\"* a|strong=\"G2532\"* multitude|strong=\"G4128\"* of|strong=\"G1537\"* sins." + } + ] + } + ] + }, + { + "name": "1 Peter", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Peter|strong=\"G4074\"*, an|strong=\"G2532\"* apostle of|strong=\"G2532\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:1 “Christ” means “Anointed One”.* to|strong=\"G2532\"* the|strong=\"G2532\"* chosen|strong=\"G1588\"* ones who|strong=\"G2532\"* are|strong=\"G2532\"* living as|strong=\"G2532\"* foreigners|strong=\"G3927\"* in|strong=\"G2532\"* the|strong=\"G2532\"* Dispersion|strong=\"G1290\"* in|strong=\"G2532\"* Pontus|strong=\"G4195\"*, Galatia|strong=\"G1053\"*, Cappadocia|strong=\"G2587\"*, Asia, and|strong=\"G2532\"* Bithynia," + }, + { + "verseNum": 2, + "text": "according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G1722\"* foreknowledge|strong=\"G4268\"* of|strong=\"G4151\"* God|strong=\"G2316\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*, in|strong=\"G1722\"* sanctification of|strong=\"G4151\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*, that|strong=\"G2532\"* you|strong=\"G5210\"* may|strong=\"G2532\"* obey|strong=\"G5218\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* and|strong=\"G2532\"* be|strong=\"G2532\"* sprinkled|strong=\"G4473\"* with|strong=\"G1722\"* his|strong=\"G1519\"* blood: Grace|strong=\"G5485\"* to|strong=\"G1519\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* be|strong=\"G2532\"* multiplied|strong=\"G4129\"*." + }, + { + "verseNum": 3, + "text": "Blessed|strong=\"G2128\"* be|strong=\"G2532\"* the|strong=\"G2532\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"* of|strong=\"G1537\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, who|strong=\"G3588\"* according|strong=\"G2596\"* to|strong=\"G1519\"* his|strong=\"G1223\"* great|strong=\"G4183\"* mercy|strong=\"G1656\"* caused us|strong=\"G1519\"* to|strong=\"G1519\"* be|strong=\"G2532\"* born again|strong=\"G1519\"* to|strong=\"G1519\"* a|strong=\"G2532\"* living|strong=\"G2198\"* hope|strong=\"G1680\"* through|strong=\"G1223\"* the|strong=\"G2532\"* resurrection of|strong=\"G1537\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*," + }, + { + "verseNum": 4, + "text": "to|strong=\"G1519\"* an|strong=\"G2532\"* incorruptible and|strong=\"G2532\"* undefiled inheritance|strong=\"G2817\"* that|strong=\"G2532\"* doesn’t fade away, reserved|strong=\"G5083\"* in|strong=\"G1722\"* Heaven|strong=\"G3772\"* for|strong=\"G1519\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 5, + "text": "who|strong=\"G3588\"* by|strong=\"G1223\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G1223\"* God|strong=\"G2316\"* are|strong=\"G3588\"* guarded through|strong=\"G1223\"* faith|strong=\"G4102\"* for|strong=\"G1519\"* a|strong=\"G1519\"* salvation|strong=\"G4991\"* ready|strong=\"G2092\"* to|strong=\"G1519\"* be|strong=\"G1519\"* revealed in|strong=\"G1722\"* the|strong=\"G1722\"* last|strong=\"G2078\"* time|strong=\"G2540\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"G1722\"* this|strong=\"G3739\"* you|strong=\"G3739\"* greatly rejoice, though|strong=\"G1487\"* now|strong=\"G1722\"* for|strong=\"G1722\"* a|strong=\"G1722\"* little|strong=\"G3641\"* while|strong=\"G1722\"*, if|strong=\"G1487\"* need|strong=\"G1487\"* be|strong=\"G1163\"*, you|strong=\"G3739\"* have|strong=\"G1163\"* been|strong=\"G1210\"* grieved|strong=\"G3076\"* in|strong=\"G1722\"* various|strong=\"G4164\"* trials|strong=\"G3986\"*," + }, + { + "verseNum": 7, + "text": "that|strong=\"G2443\"* the|strong=\"G1722\"* proof|strong=\"G4102\"* of|strong=\"G1223\"* your|strong=\"G1223\"* faith|strong=\"G4102\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* more|strong=\"G2532\"* precious|strong=\"G5092\"* than|strong=\"G2532\"* gold|strong=\"G5553\"* that|strong=\"G2443\"* perishes, even|strong=\"G2532\"* though|strong=\"G2532\"* it|strong=\"G2532\"* is|strong=\"G3588\"* tested|strong=\"G1381\"* by|strong=\"G1223\"* fire|strong=\"G4442\"*, may|strong=\"G2532\"* be|strong=\"G2532\"* found|strong=\"G2147\"* to|strong=\"G1519\"* result|strong=\"G1519\"* in|strong=\"G1722\"* praise|strong=\"G1868\"*, glory|strong=\"G1391\"*, and|strong=\"G2532\"* honor|strong=\"G5092\"* at|strong=\"G1722\"* the|strong=\"G1722\"* revelation of|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*—" + }, + { + "verseNum": 8, + "text": "whom|strong=\"G3739\"*, not|strong=\"G3756\"* having|strong=\"G2532\"* known, you|strong=\"G3739\"* love. In|strong=\"G1519\"* him|strong=\"G3739\"*, though|strong=\"G2532\"* now|strong=\"G1161\"* you|strong=\"G3739\"* don’t see|strong=\"G3708\"* him|strong=\"G3739\"*, yet|strong=\"G2532\"* believing|strong=\"G4100\"*, you|strong=\"G3739\"* rejoice|strong=\"G2532\"* greatly|strong=\"G5479\"* with|strong=\"G2532\"* joy|strong=\"G5479\"* that|strong=\"G3739\"* is|strong=\"G3739\"* unspeakable and|strong=\"G2532\"* full|strong=\"G1392\"* of|strong=\"G2532\"* glory|strong=\"G1392\"*," + }, + { + "verseNum": 9, + "text": "receiving|strong=\"G2865\"* the|strong=\"G3588\"* result of|strong=\"G4102\"* your|strong=\"G3588\"* faith|strong=\"G4102\"*, the|strong=\"G3588\"* salvation|strong=\"G4991\"* of|strong=\"G4102\"* your|strong=\"G3588\"* souls|strong=\"G5590\"*." + }, + { + "verseNum": 10, + "text": "Concerning|strong=\"G4012\"* this|strong=\"G3588\"* salvation|strong=\"G4991\"*, the|strong=\"G2532\"* prophets|strong=\"G4396\"* sought|strong=\"G1567\"* and|strong=\"G2532\"* searched|strong=\"G1567\"* diligently|strong=\"G1830\"*. They|strong=\"G2532\"* prophesied|strong=\"G4395\"* of|strong=\"G4012\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* that|strong=\"G3739\"* would|strong=\"G2532\"* come|strong=\"G2532\"* to|strong=\"G1519\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 11, + "text": "searching|strong=\"G2045\"* for|strong=\"G1519\"* who|strong=\"G5101\"* or|strong=\"G2228\"* what|strong=\"G5101\"* kind|strong=\"G4169\"* of|strong=\"G4151\"* time|strong=\"G2540\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* Christ|strong=\"G5547\"* which|strong=\"G3588\"* was|strong=\"G3588\"* in|strong=\"G1722\"* them|strong=\"G3588\"* pointed to|strong=\"G1519\"* when|strong=\"G2532\"* he|strong=\"G2532\"* predicted|strong=\"G4303\"* the|strong=\"G1722\"* sufferings|strong=\"G3804\"* of|strong=\"G4151\"* Christ|strong=\"G5547\"* and|strong=\"G2532\"* the|strong=\"G1722\"* glories|strong=\"G1391\"* that|strong=\"G3588\"* would|strong=\"G2532\"* follow|strong=\"G3326\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "To|strong=\"G1519\"* them|strong=\"G3588\"* it|strong=\"G3754\"* was|strong=\"G3588\"* revealed that|strong=\"G3754\"* they|strong=\"G1161\"* served|strong=\"G1247\"* not|strong=\"G3756\"* themselves|strong=\"G1438\"*, but|strong=\"G1161\"* you|strong=\"G5210\"*, in|strong=\"G1722\"* these|strong=\"G3739\"* things|strong=\"G3588\"*, which|strong=\"G3739\"* now|strong=\"G1161\"* have|strong=\"G3748\"* been|strong=\"G3568\"* announced to|strong=\"G1519\"* you|strong=\"G5210\"* through|strong=\"G1223\"* those|strong=\"G3588\"* who|strong=\"G3739\"* preached|strong=\"G2097\"* the|strong=\"G1722\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* to|strong=\"G1519\"* you|strong=\"G5210\"* by|strong=\"G1223\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* sent|strong=\"G4151\"* out|strong=\"G1438\"* from|strong=\"G3756\"* heaven|strong=\"G3772\"*; which|strong=\"G3739\"* things|strong=\"G3588\"* angels desire|strong=\"G1937\"* to|strong=\"G1519\"* look|strong=\"G3879\"* into|strong=\"G1519\"*." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"G1352\"* prepare your|strong=\"G1909\"* minds|strong=\"G1271\"* for|strong=\"G1909\"* action.+ 1:13 literally, “gird up the waist of your mind” or “put on the belt of the waist of your mind”* Be|strong=\"G3588\"* sober|strong=\"G3525\"*, and|strong=\"G2424\"* set|strong=\"G1679\"* your|strong=\"G1909\"* hope|strong=\"G1679\"* fully on|strong=\"G1909\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* that|strong=\"G3588\"* will|strong=\"G5547\"* be|strong=\"G3588\"* brought|strong=\"G5342\"* to|strong=\"G1909\"* you|strong=\"G5210\"* at|strong=\"G1722\"* the|strong=\"G1722\"* revelation of|strong=\"G5485\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*—" + }, + { + "verseNum": 14, + "text": "as|strong=\"G5613\"* children|strong=\"G5043\"* of|strong=\"G1722\"* obedience|strong=\"G5218\"*, not|strong=\"G3361\"* conforming yourselves|strong=\"G4771\"* according|strong=\"G5613\"* to|strong=\"G1722\"* your|strong=\"G1722\"* former|strong=\"G4387\"* lusts|strong=\"G1939\"* as|strong=\"G5613\"* in|strong=\"G1722\"* your|strong=\"G1722\"* ignorance," + }, + { + "verseNum": 15, + "text": "but|strong=\"G2532\"* just|strong=\"G2532\"* as|strong=\"G1722\"* he|strong=\"G2532\"* who|strong=\"G3588\"* called|strong=\"G2564\"* you|strong=\"G5210\"* is|strong=\"G3588\"* holy, you|strong=\"G5210\"* yourselves|strong=\"G4771\"* also|strong=\"G2532\"* be|strong=\"G1096\"* holy in|strong=\"G1722\"* all|strong=\"G3956\"* of|strong=\"G2532\"* your|strong=\"G2532\"* behavior," + }, + { + "verseNum": 16, + "text": "because|strong=\"G1360\"* it|strong=\"G1510\"* is|strong=\"G1510\"* written|strong=\"G1125\"*, “You|strong=\"G1510\"* shall|strong=\"G3748\"* be|strong=\"G1510\"* holy, for|strong=\"G1360\"* I|strong=\"G1473\"* am|strong=\"G1510\"* holy.”+ 1:16 Leviticus 11:44-45*" + }, + { + "verseNum": 17, + "text": "If|strong=\"G1487\"* you|strong=\"G5210\"* call|strong=\"G1941\"* on|strong=\"G1722\"* him|strong=\"G3588\"* as|strong=\"G1722\"* Father|strong=\"G3962\"*, who|strong=\"G3588\"* without|strong=\"G2532\"* respect|strong=\"G5401\"* of|strong=\"G2532\"* persons judges|strong=\"G2919\"* according|strong=\"G2596\"* to|strong=\"G2532\"* each|strong=\"G1538\"* man|strong=\"G1538\"*’s work|strong=\"G2041\"*, pass|strong=\"G2919\"* the|strong=\"G1722\"* time|strong=\"G5550\"* of|strong=\"G2532\"* your|strong=\"G2532\"* living as|strong=\"G1722\"* foreigners here|strong=\"G1722\"* in|strong=\"G1722\"* reverent fear|strong=\"G5401\"*," + }, + { + "verseNum": 18, + "text": "knowing|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G5210\"* were|strong=\"G3588\"* redeemed|strong=\"G3084\"*, not|strong=\"G3756\"* with|strong=\"G1537\"* corruptible|strong=\"G5349\"* things|strong=\"G3588\"* like|strong=\"G5349\"* silver or|strong=\"G2228\"* gold|strong=\"G5553\"*, from|strong=\"G1537\"* the|strong=\"G1537\"* useless|strong=\"G3152\"* way|strong=\"G1537\"* of|strong=\"G1537\"* life handed down|strong=\"G1537\"* from|strong=\"G1537\"* your|strong=\"G3588\"* fathers|strong=\"G3970\"*," + }, + { + "verseNum": 19, + "text": "but|strong=\"G2532\"* with|strong=\"G2532\"* precious|strong=\"G5093\"* blood, as|strong=\"G5613\"* of|strong=\"G2532\"* a|strong=\"G5613\"* lamb without|strong=\"G2532\"* blemish or|strong=\"G2532\"* spot, the|strong=\"G2532\"* blood of|strong=\"G2532\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 20, + "text": "who|strong=\"G3588\"* was|strong=\"G3588\"* foreknown|strong=\"G4267\"* indeed|strong=\"G3303\"* before|strong=\"G4253\"* the|strong=\"G1161\"* foundation|strong=\"G2602\"* of|strong=\"G1223\"* the|strong=\"G1161\"* world|strong=\"G2889\"*, but|strong=\"G1161\"* was|strong=\"G3588\"* revealed|strong=\"G5319\"* in|strong=\"G1909\"* this|strong=\"G3588\"* last|strong=\"G2078\"* age|strong=\"G2889\"* for|strong=\"G1223\"* your|strong=\"G1223\"* sake|strong=\"G1223\"*," + }, + { + "verseNum": 21, + "text": "who|strong=\"G3588\"* through|strong=\"G1223\"* him|strong=\"G3588\"* are|strong=\"G1510\"* believers|strong=\"G4103\"* in|strong=\"G1519\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* him|strong=\"G3588\"* glory|strong=\"G1391\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* your|strong=\"G1223\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* hope|strong=\"G1680\"* might|strong=\"G2532\"* be|strong=\"G1510\"* in|strong=\"G1519\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 22, + "text": "Seeing you|strong=\"G5210\"* have|strong=\"G5210\"* purified your|strong=\"G1722\"* souls|strong=\"G5590\"* in|strong=\"G1722\"* your|strong=\"G1722\"* obedience|strong=\"G5218\"* to|strong=\"G1519\"* the|strong=\"G1722\"* truth through|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G2588\"* in|strong=\"G1722\"* sincere brotherly|strong=\"G5360\"* affection, love|strong=\"G5360\"* one|strong=\"G3588\"* another|strong=\"G3588\"* from|strong=\"G1537\"* the|strong=\"G1722\"* heart|strong=\"G2588\"* fervently|strong=\"G1619\"*," + }, + { + "verseNum": 23, + "text": "having|strong=\"G2532\"* been|strong=\"G2532\"* born again|strong=\"G2532\"*, not|strong=\"G3756\"* of|strong=\"G1537\"* corruptible|strong=\"G5349\"* seed|strong=\"G4701\"*, but|strong=\"G2532\"* of|strong=\"G1537\"* incorruptible, through|strong=\"G1223\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, which|strong=\"G2532\"* lives|strong=\"G2198\"* and|strong=\"G2532\"* remains|strong=\"G3306\"* forever|strong=\"G1223\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"G1360\"*," + }, + { + "verseNum": 25, + "text": "but|strong=\"G1161\"* the|strong=\"G1519\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* word|strong=\"G4487\"* endures|strong=\"G3306\"* forever|strong=\"G1519\"*.”+ 1:25 Isaiah 40:6-8*" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Putting|strong=\"G2532\"* away therefore|strong=\"G3767\"* all|strong=\"G3956\"* wickedness|strong=\"G2549\"*, all|strong=\"G3956\"* deceit|strong=\"G1388\"*, hypocrisies|strong=\"G5272\"*, envies|strong=\"G5355\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* evil|strong=\"G2549\"* speaking," + }, + { + "verseNum": 2, + "text": "as|strong=\"G5613\"* newborn babies|strong=\"G1025\"*, long|strong=\"G1971\"* for|strong=\"G1519\"* the|strong=\"G1722\"* pure spiritual|strong=\"G3050\"* milk|strong=\"G1051\"*, that|strong=\"G2443\"* with|strong=\"G1722\"* it|strong=\"G5613\"* you|strong=\"G1722\"* may|strong=\"G2443\"* grow," + }, + { + "verseNum": 3, + "text": "if|strong=\"G1487\"* indeed you|strong=\"G1487\"* have|strong=\"G3748\"* tasted|strong=\"G1089\"* that|strong=\"G3754\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"* is|strong=\"G3588\"* gracious|strong=\"G5543\"*." + }, + { + "verseNum": 4, + "text": "Come|strong=\"G4334\"* to|strong=\"G4314\"* him|strong=\"G3739\"*, a|strong=\"G1161\"* living|strong=\"G2198\"* stone|strong=\"G3037\"*, rejected indeed|strong=\"G3303\"* by|strong=\"G5259\"* men|strong=\"G3739\"*, but|strong=\"G1161\"* chosen|strong=\"G1588\"* by|strong=\"G5259\"* God|strong=\"G2316\"*, precious|strong=\"G1784\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"G2532\"* also|strong=\"G2532\"* as|strong=\"G5613\"* living|strong=\"G2198\"* stones|strong=\"G3037\"* are|strong=\"G2532\"* built|strong=\"G3618\"* up|strong=\"G1519\"* as|strong=\"G5613\"* a|strong=\"G5613\"* spiritual|strong=\"G4152\"* house|strong=\"G3624\"*, to|strong=\"G1519\"* be|strong=\"G2532\"* a|strong=\"G5613\"* holy priesthood|strong=\"G2406\"*, to|strong=\"G1519\"* offer up|strong=\"G1519\"* spiritual|strong=\"G4152\"* sacrifices|strong=\"G2378\"*, acceptable|strong=\"G2144\"* to|strong=\"G1519\"* God|strong=\"G2316\"* through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 6, + "text": "Because|strong=\"G1360\"* it|strong=\"G2532\"* is|strong=\"G3588\"* contained|strong=\"G4023\"* in|strong=\"G1722\"* Scripture|strong=\"G1124\"*," + }, + { + "verseNum": 7, + "text": "For|strong=\"G1519\"* you|strong=\"G5210\"* who|strong=\"G3739\"* believe|strong=\"G4100\"* therefore|strong=\"G3767\"* is|strong=\"G3588\"* the|strong=\"G2532\"* honor|strong=\"G5092\"*, but|strong=\"G1161\"* for|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3739\"* are|strong=\"G3588\"* disobedient," + }, + { + "verseNum": 8, + "text": "and|strong=\"G2532\"*," + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* you|strong=\"G5210\"* are|strong=\"G3588\"* a|strong=\"G1519\"* chosen|strong=\"G1588\"* race|strong=\"G1085\"*, a|strong=\"G1519\"* royal priesthood|strong=\"G2406\"*, a|strong=\"G1519\"* holy nation|strong=\"G1484\"*, a|strong=\"G1519\"* people|strong=\"G2992\"* for|strong=\"G1519\"* God|strong=\"G1519\"*’s own possession|strong=\"G4047\"*, that|strong=\"G3588\"* you|strong=\"G5210\"* may|strong=\"G3704\"* proclaim|strong=\"G1804\"* the|strong=\"G1519\"* excellence of|strong=\"G1537\"* him|strong=\"G3588\"* who|strong=\"G3588\"* called|strong=\"G2564\"* you|strong=\"G5210\"* out|strong=\"G1537\"* of|strong=\"G1537\"* darkness|strong=\"G4655\"* into|strong=\"G1519\"* his|strong=\"G1519\"* marvelous|strong=\"G2298\"* light|strong=\"G5457\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"G2316\"* the|strong=\"G1161\"* past|strong=\"G4218\"*, you|strong=\"G3739\"* were|strong=\"G3588\"* not|strong=\"G3756\"* a|strong=\"G1161\"* people|strong=\"G2992\"*, but|strong=\"G1161\"* now|strong=\"G1161\"* are|strong=\"G3588\"* God|strong=\"G2316\"*’s people|strong=\"G2992\"*, who|strong=\"G3739\"* had|strong=\"G2316\"* not|strong=\"G3756\"* obtained|strong=\"G3568\"* mercy|strong=\"G1653\"*, but|strong=\"G1161\"* now|strong=\"G1161\"* have|strong=\"G1653\"* obtained|strong=\"G3568\"* mercy|strong=\"G1653\"*." + }, + { + "verseNum": 11, + "text": "Beloved, I|strong=\"G2532\"* beg|strong=\"G3870\"* you|strong=\"G2532\"* as|strong=\"G5613\"* foreigners|strong=\"G3941\"* and|strong=\"G2532\"* pilgrims|strong=\"G3927\"* to|strong=\"G2532\"* abstain from|strong=\"G2532\"* fleshly|strong=\"G4559\"* lusts|strong=\"G1939\"* which|strong=\"G3588\"* war|strong=\"G4754\"* against|strong=\"G2596\"* the|strong=\"G2532\"* soul|strong=\"G5590\"*," + }, + { + "verseNum": 12, + "text": "having|strong=\"G2192\"* good|strong=\"G2570\"* behavior|strong=\"G2041\"* among|strong=\"G1722\"* the|strong=\"G1722\"* nations|strong=\"G1484\"*, so|strong=\"G2443\"* in|strong=\"G1722\"* that|strong=\"G2443\"* of|strong=\"G1537\"* which|strong=\"G3739\"* they|strong=\"G3588\"* speak|strong=\"G2635\"* against|strong=\"G1722\"* you|strong=\"G5210\"* as|strong=\"G5613\"* evildoers|strong=\"G2555\"*, they|strong=\"G3588\"* may|strong=\"G2443\"* see your|strong=\"G2192\"* good|strong=\"G2570\"* works|strong=\"G2041\"* and|strong=\"G2316\"* glorify|strong=\"G1392\"* God|strong=\"G2316\"* in|strong=\"G1722\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G1537\"* visitation|strong=\"G1984\"*." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"G1223\"* subject|strong=\"G5293\"* yourselves|strong=\"G5293\"* to|strong=\"G5293\"* every|strong=\"G3956\"* ordinance|strong=\"G2937\"* of|strong=\"G1223\"* man|strong=\"G3956\"* for|strong=\"G1223\"* the|strong=\"G3956\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* sake|strong=\"G1223\"*: whether|strong=\"G1535\"* to|strong=\"G5293\"* the|strong=\"G3956\"* king|strong=\"G3588\"*, as|strong=\"G5613\"* supreme|strong=\"G5242\"*," + }, + { + "verseNum": 14, + "text": "or|strong=\"G1535\"* to|strong=\"G1519\"* governors|strong=\"G2232\"*, as|strong=\"G5613\"* sent|strong=\"G3992\"* by|strong=\"G1223\"* him|strong=\"G1519\"* for|strong=\"G1519\"* vengeance|strong=\"G1557\"* on|strong=\"G1519\"* evildoers|strong=\"G2555\"* and|strong=\"G1161\"* for|strong=\"G1519\"* praise|strong=\"G1868\"* to|strong=\"G1519\"* those|strong=\"G1161\"* who|strong=\"G3992\"* do|strong=\"G1223\"* well|strong=\"G5613\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G3754\"* this|strong=\"G3588\"* is|strong=\"G1510\"* the|strong=\"G3588\"* will|strong=\"G2307\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, that|strong=\"G3754\"* by|strong=\"G3588\"* well-doing you|strong=\"G3754\"* should|strong=\"G2316\"* put|strong=\"G5392\"* to|strong=\"G2316\"* silence|strong=\"G5392\"* the|strong=\"G3588\"* ignorance of|strong=\"G2316\"* foolish men|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "Live|strong=\"G2532\"* as|strong=\"G5613\"* free|strong=\"G1658\"* people|strong=\"G3361\"*, yet|strong=\"G2532\"* not|strong=\"G3361\"* using|strong=\"G2192\"* your|strong=\"G2192\"* freedom|strong=\"G1657\"* for|strong=\"G2532\"* a|strong=\"G2192\"* cloak of|strong=\"G2316\"* wickedness|strong=\"G2549\"*, but|strong=\"G2532\"* as|strong=\"G5613\"* bondservants of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 17, + "text": "Honor|strong=\"G5091\"* all|strong=\"G3956\"* men|strong=\"G3956\"*. Love the|strong=\"G3956\"* brotherhood. Fear|strong=\"G5399\"* God|strong=\"G2316\"*. Honor|strong=\"G5091\"* the|strong=\"G3956\"* king|strong=\"G3588\"*." + }, + { + "verseNum": 18, + "text": "Servants|strong=\"G3610\"*, be|strong=\"G2532\"* in|strong=\"G1722\"* subjection|strong=\"G5293\"* to|strong=\"G2532\"* your|strong=\"G2532\"* masters|strong=\"G1203\"* with|strong=\"G1722\"* all|strong=\"G3956\"* respect|strong=\"G3956\"*, not|strong=\"G3756\"* only|strong=\"G3440\"* to|strong=\"G2532\"* the|strong=\"G1722\"* good|strong=\"G3956\"* and|strong=\"G2532\"* gentle|strong=\"G1933\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G1722\"* wicked|strong=\"G3588\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* it|strong=\"G1063\"* is|strong=\"G2316\"* commendable if|strong=\"G1487\"* someone|strong=\"G5100\"* endures|strong=\"G5297\"* pain|strong=\"G3077\"*, suffering|strong=\"G3958\"* unjustly, because|strong=\"G1223\"* of|strong=\"G1223\"* conscience|strong=\"G4893\"* toward|strong=\"G4893\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* what|strong=\"G4169\"* glory|strong=\"G2811\"* is|strong=\"G2316\"* it|strong=\"G2532\"* if|strong=\"G1487\"*, when|strong=\"G2532\"* you|strong=\"G1487\"* sin, you|strong=\"G1487\"* patiently|strong=\"G5278\"* endure|strong=\"G5278\"* beating? But|strong=\"G2532\"* if|strong=\"G1487\"* when|strong=\"G2532\"* you|strong=\"G1487\"* do|strong=\"G2532\"* well|strong=\"G2532\"*, you|strong=\"G1487\"* patiently|strong=\"G5278\"* endure|strong=\"G5278\"* suffering|strong=\"G3958\"*, this|strong=\"G3778\"* is|strong=\"G2316\"* commendable with|strong=\"G3844\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* were|strong=\"G3588\"* called|strong=\"G2564\"* to|strong=\"G1519\"* this|strong=\"G3778\"*, because|strong=\"G3754\"* Christ|strong=\"G5547\"* also|strong=\"G2532\"* suffered|strong=\"G3958\"* for|strong=\"G1063\"* us|strong=\"G1519\"*, leaving|strong=\"G5277\"* you|strong=\"G5210\"*+ 2:21 TR reads “us” instead of “you”* an|strong=\"G2532\"* example|strong=\"G5261\"*, that|strong=\"G3754\"* you|strong=\"G5210\"* should|strong=\"G3588\"* follow|strong=\"G1872\"* his|strong=\"G1519\"* steps|strong=\"G2487\"*," + }, + { + "verseNum": 22, + "text": "who|strong=\"G3739\"* didn’t|strong=\"G3588\"* sin, “neither|strong=\"G3761\"* was|strong=\"G3588\"* deceit|strong=\"G1388\"* found|strong=\"G2147\"* in|strong=\"G1722\"* his|strong=\"G1722\"* mouth|strong=\"G4750\"*.”+ 2:22 Isaiah 53:9*" + }, + { + "verseNum": 23, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* was|strong=\"G3588\"* cursed, he|strong=\"G1161\"* didn’t|strong=\"G3588\"* curse back. When|strong=\"G1161\"* he|strong=\"G1161\"* suffered|strong=\"G3958\"*, he|strong=\"G1161\"* didn’t|strong=\"G3588\"* threaten, but|strong=\"G1161\"* committed|strong=\"G3860\"* himself to|strong=\"G3756\"* him|strong=\"G3588\"* who|strong=\"G3739\"* judges|strong=\"G2919\"* righteously|strong=\"G1346\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"G3739\"* himself bore our|strong=\"G1722\"* sins in|strong=\"G1722\"* his|strong=\"G1909\"* body|strong=\"G4983\"* on|strong=\"G1909\"* the|strong=\"G1722\"* tree|strong=\"G3586\"*, that|strong=\"G2443\"* we|strong=\"G2249\"*, having died|strong=\"G3588\"* to|strong=\"G2443\"* sins, might|strong=\"G1473\"* live|strong=\"G2198\"* to|strong=\"G2443\"* righteousness|strong=\"G1343\"*. You|strong=\"G3739\"* were|strong=\"G3588\"* healed|strong=\"G2390\"* by|strong=\"G1722\"* his|strong=\"G1909\"* wounds|strong=\"G3468\"*.+ 2:24 or, stripes*" + }, + { + "verseNum": 25, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* were|strong=\"G1510\"* going|strong=\"G2532\"* astray|strong=\"G4105\"* like|strong=\"G5613\"* sheep|strong=\"G4263\"*; but|strong=\"G2532\"* now|strong=\"G3568\"* you|strong=\"G5210\"* have|strong=\"G2532\"* returned|strong=\"G1994\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Shepherd|strong=\"G4166\"* and|strong=\"G2532\"* Overseer|strong=\"G1985\"*+ 2:25 “Overseer” is from the Greek ἐπίσκοπον, which can mean overseer, curator, guardian, or superintendent.* of|strong=\"G2532\"* your|strong=\"G2532\"* souls|strong=\"G5590\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G3668\"* way|strong=\"G3668\"*, wives|strong=\"G1135\"*, be|strong=\"G2532\"* in|strong=\"G2532\"* subjection|strong=\"G5293\"* to|strong=\"G2443\"* your|strong=\"G1223\"* own|strong=\"G2398\"* husbands, so|strong=\"G2443\"* that|strong=\"G2443\"*, even|strong=\"G2532\"* if|strong=\"G1487\"* any|strong=\"G5100\"* don’t|strong=\"G3588\"* obey|strong=\"G5100\"* the|strong=\"G2532\"* Word|strong=\"G3056\"*, they|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G2532\"* won|strong=\"G2770\"* by|strong=\"G1223\"* the|strong=\"G2532\"* behavior of|strong=\"G3056\"* their|strong=\"G2532\"* wives|strong=\"G1135\"* without|strong=\"G2532\"* a|strong=\"G2532\"* word|strong=\"G3056\"*," + }, + { + "verseNum": 2, + "text": "seeing your|strong=\"G1722\"* pure behavior in|strong=\"G1722\"* fear|strong=\"G5401\"*." + }, + { + "verseNum": 3, + "text": "Let|strong=\"G1510\"* your|strong=\"G2532\"* beauty|strong=\"G3756\"* come|strong=\"G1510\"* not|strong=\"G3756\"* from|strong=\"G2532\"* the|strong=\"G2532\"* outward|strong=\"G1855\"* adorning|strong=\"G2889\"* of|strong=\"G2532\"* braiding|strong=\"G1708\"* your|strong=\"G2532\"* hair|strong=\"G2359\"*, and|strong=\"G2532\"* of|strong=\"G2532\"* wearing|strong=\"G4025\"* gold|strong=\"G5553\"* ornaments or|strong=\"G2228\"* of|strong=\"G2532\"* putting|strong=\"G1745\"* on|strong=\"G1745\"* fine|strong=\"G2532\"* clothing|strong=\"G2440\"*," + }, + { + "verseNum": 4, + "text": "but|strong=\"G2532\"* from|strong=\"G2532\"* the|strong=\"G1722\"* hidden|strong=\"G2927\"* person|strong=\"G3739\"* of|strong=\"G4151\"* the|strong=\"G1722\"* heart|strong=\"G2588\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* incorruptible adornment of|strong=\"G4151\"* a|strong=\"G2532\"* gentle|strong=\"G4239\"* and|strong=\"G2532\"* quiet|strong=\"G2272\"* spirit|strong=\"G4151\"*, which|strong=\"G3739\"* is|strong=\"G1510\"* very|strong=\"G2532\"* precious|strong=\"G4185\"* in|strong=\"G1722\"* God|strong=\"G2316\"*’s sight|strong=\"G1799\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* this|strong=\"G3588\"* is|strong=\"G3588\"* how|strong=\"G3779\"* in|strong=\"G1519\"* the|strong=\"G2532\"* past|strong=\"G4218\"* the|strong=\"G2532\"* holy women|strong=\"G1135\"* who|strong=\"G3588\"* hoped|strong=\"G1679\"* in|strong=\"G1519\"* God|strong=\"G2316\"* also|strong=\"G2532\"* adorned|strong=\"G2885\"* themselves|strong=\"G1438\"*, being|strong=\"G2532\"* in|strong=\"G1519\"* subjection|strong=\"G5293\"* to|strong=\"G1519\"* their|strong=\"G1438\"* own|strong=\"G2398\"* husbands." + }, + { + "verseNum": 6, + "text": "So|strong=\"G2532\"* Sarah|strong=\"G4564\"* obeyed|strong=\"G5219\"* Abraham, calling|strong=\"G2564\"* him|strong=\"G3588\"* lord|strong=\"G2962\"*, whose|strong=\"G3739\"* children|strong=\"G5043\"* you|strong=\"G3739\"* now|strong=\"G2532\"* are|strong=\"G3588\"* if|strong=\"G5613\"* you|strong=\"G3739\"* do|strong=\"G1096\"* well|strong=\"G2532\"* and|strong=\"G2532\"* are|strong=\"G3588\"* not|strong=\"G3361\"* put|strong=\"G2532\"* in|strong=\"G2532\"* fear|strong=\"G5399\"* by|strong=\"G2532\"* any|strong=\"G3367\"* terror." + }, + { + "verseNum": 7, + "text": "You|strong=\"G5210\"* husbands, in|strong=\"G1519\"* the|strong=\"G2532\"* same|strong=\"G3668\"* way|strong=\"G3668\"*, live|strong=\"G2532\"* with|strong=\"G2532\"* your|strong=\"G2532\"* wives|strong=\"G5613\"* according|strong=\"G2596\"* to|strong=\"G1519\"* knowledge|strong=\"G1108\"*, giving honor|strong=\"G5092\"* to|strong=\"G1519\"* the|strong=\"G2532\"* woman|strong=\"G1134\"* as|strong=\"G5613\"* to|strong=\"G1519\"* the|strong=\"G2532\"* weaker vessel|strong=\"G4632\"*, as|strong=\"G5613\"* also|strong=\"G2532\"* being|strong=\"G2532\"* joint heirs|strong=\"G4789\"* of|strong=\"G2532\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G2532\"* life|strong=\"G2222\"*, that|strong=\"G3588\"* your|strong=\"G2532\"* prayers|strong=\"G4335\"* may|strong=\"G2532\"* not|strong=\"G3361\"* be|strong=\"G2532\"* hindered|strong=\"G1465\"*." + }, + { + "verseNum": 8, + "text": "Finally|strong=\"G5056\"*, all|strong=\"G3956\"* of|strong=\"G3956\"* you|strong=\"G3956\"* be|strong=\"G3956\"* like-minded, compassionate|strong=\"G2155\"*, loving as|strong=\"G1161\"* brothers, tenderhearted|strong=\"G2155\"*, courteous," + }, + { + "verseNum": 9, + "text": "not|strong=\"G3361\"* rendering evil|strong=\"G2556\"* for|strong=\"G3754\"* evil|strong=\"G2556\"* or|strong=\"G2228\"* insult|strong=\"G3059\"* for|strong=\"G3754\"* insult|strong=\"G3059\"*; but|strong=\"G1161\"* instead|strong=\"G1161\"* blessing|strong=\"G2129\"*, knowing that|strong=\"G3754\"* you|strong=\"G3754\"* were|strong=\"G3778\"* called|strong=\"G2564\"* to|strong=\"G1519\"* this|strong=\"G3778\"*, that|strong=\"G3754\"* you|strong=\"G3754\"* may|strong=\"G2443\"* inherit|strong=\"G2816\"* a|strong=\"G1519\"* blessing|strong=\"G2129\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"*," + }, + { + "verseNum": 11, + "text": "Let|strong=\"G1161\"* him|strong=\"G4160\"* turn|strong=\"G1578\"* away|strong=\"G1578\"* from|strong=\"G1515\"* evil|strong=\"G2556\"* and|strong=\"G2532\"* do|strong=\"G4160\"* good|strong=\"G2532\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G3754\"* the|strong=\"G2532\"* eyes|strong=\"G3788\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* are|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G2532\"* righteous|strong=\"G1342\"*," + }, + { + "verseNum": 13, + "text": "Now|strong=\"G2532\"* who|strong=\"G5101\"* will|strong=\"G5101\"* harm|strong=\"G2559\"* you|strong=\"G5210\"* if|strong=\"G1437\"* you|strong=\"G5210\"* become|strong=\"G1096\"* imitators of|strong=\"G2532\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* good|strong=\"G5101\"*?" + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* even|strong=\"G2532\"* if|strong=\"G1487\"* you|strong=\"G1487\"* should|strong=\"G3588\"* suffer|strong=\"G3958\"* for|strong=\"G1223\"* righteousness|strong=\"G1343\"*’ sake|strong=\"G1223\"*, you|strong=\"G1487\"* are|strong=\"G3588\"* blessed|strong=\"G3107\"*. “Don’t|strong=\"G3588\"* fear|strong=\"G5401\"* what|strong=\"G3588\"* they|strong=\"G2532\"* fear|strong=\"G5401\"*, neither|strong=\"G3366\"* be|strong=\"G2532\"* troubled|strong=\"G5015\"*.”+ 3:14 Isaiah 8:12*" + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* sanctify the|strong=\"G1722\"* Lord|strong=\"G2962\"* God|strong=\"G2532\"* in|strong=\"G1722\"* your|strong=\"G2962\"* hearts|strong=\"G2588\"*. Always|strong=\"G3956\"* be|strong=\"G2532\"* ready|strong=\"G2092\"* to|strong=\"G4314\"* give|strong=\"G3956\"* an|strong=\"G2532\"* answer|strong=\"G3056\"* to|strong=\"G4314\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* asks you|strong=\"G5210\"* a|strong=\"G2532\"* reason|strong=\"G3056\"* concerning|strong=\"G4012\"* the|strong=\"G1722\"* hope|strong=\"G1680\"* that|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* you|strong=\"G5210\"*, with|strong=\"G3326\"* humility|strong=\"G4240\"* and|strong=\"G2532\"* fear|strong=\"G5401\"*," + }, + { + "verseNum": 16, + "text": "having|strong=\"G2192\"* a|strong=\"G2192\"* good|strong=\"G3588\"* conscience|strong=\"G4893\"*. Thus|strong=\"G2532\"*, while|strong=\"G1722\"* you|strong=\"G5210\"* are|strong=\"G3588\"* spoken against|strong=\"G3326\"* as|strong=\"G1722\"* evildoers, they|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G2532\"* disappointed|strong=\"G2617\"* who|strong=\"G3739\"* curse|strong=\"G2617\"* your|strong=\"G2192\"* good|strong=\"G3588\"* way|strong=\"G1722\"* of|strong=\"G2532\"* life in|strong=\"G1722\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* it|strong=\"G1063\"* is|strong=\"G3588\"* better|strong=\"G2909\"*, if|strong=\"G1487\"* it|strong=\"G1063\"* is|strong=\"G3588\"* God|strong=\"G2316\"*’s will|strong=\"G2307\"*, that|strong=\"G3588\"* you|strong=\"G1487\"* suffer|strong=\"G3958\"* for|strong=\"G1063\"* doing|strong=\"G2554\"* what|strong=\"G3588\"* is|strong=\"G3588\"* right than|strong=\"G2228\"* for|strong=\"G1063\"* doing|strong=\"G2554\"* evil|strong=\"G2554\"*." + }, + { + "verseNum": 18, + "text": "Because|strong=\"G3754\"* Christ|strong=\"G5547\"* also|strong=\"G2532\"* suffered for|strong=\"G3754\"* sins once, the|strong=\"G2532\"* righteous|strong=\"G1342\"* for|strong=\"G3754\"* the|strong=\"G2532\"* unrighteous, that|strong=\"G3754\"* he|strong=\"G2532\"* might|strong=\"G2532\"* bring|strong=\"G4317\"* you|strong=\"G5210\"* to|strong=\"G2443\"* God|strong=\"G2316\"*, being|strong=\"G2532\"* put|strong=\"G2289\"* to|strong=\"G2443\"* death|strong=\"G2289\"* in|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, but|strong=\"G1161\"* made|strong=\"G2316\"* alive|strong=\"G2227\"* in|strong=\"G2532\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"*," + }, + { + "verseNum": 19, + "text": "in|strong=\"G1722\"* whom|strong=\"G3739\"* he|strong=\"G2532\"* also|strong=\"G2532\"* went|strong=\"G4198\"* and|strong=\"G2532\"* preached|strong=\"G2784\"* to|strong=\"G2532\"* the|strong=\"G1722\"* spirits|strong=\"G4151\"* in|strong=\"G1722\"* prison|strong=\"G5438\"*," + }, + { + "verseNum": 20, + "text": "who|strong=\"G3739\"* before|strong=\"G1722\"* were|strong=\"G1510\"* disobedient when|strong=\"G3753\"* God|strong=\"G2316\"* waited patiently|strong=\"G3115\"* in|strong=\"G1722\"* the|strong=\"G1722\"* days|strong=\"G2250\"* of|strong=\"G2250\"* Noah|strong=\"G3575\"* while|strong=\"G1722\"* the|strong=\"G1722\"* ship was|strong=\"G1510\"* being|strong=\"G1510\"* built|strong=\"G2680\"*. In|strong=\"G1722\"* it|strong=\"G3778\"*, few|strong=\"G3641\"*, that|strong=\"G3739\"* is|strong=\"G1510\"*, eight|strong=\"G3638\"* souls|strong=\"G5590\"*, were|strong=\"G1510\"* saved|strong=\"G1295\"* through|strong=\"G1223\"* water|strong=\"G5204\"*." + }, + { + "verseNum": 21, + "text": "This|strong=\"G3739\"* is|strong=\"G2316\"* a|strong=\"G2532\"* symbol of|strong=\"G1223\"* baptism, which|strong=\"G3739\"* now|strong=\"G3568\"* saves|strong=\"G4982\"* you|strong=\"G5210\"*—not|strong=\"G3756\"* the|strong=\"G2532\"* putting|strong=\"G2532\"* away of|strong=\"G1223\"* the|strong=\"G2532\"* filth|strong=\"G4509\"* of|strong=\"G1223\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, but|strong=\"G2532\"* the|strong=\"G2532\"* answer|strong=\"G1906\"* of|strong=\"G1223\"* a|strong=\"G2532\"* good|strong=\"G1223\"* conscience|strong=\"G4893\"* toward|strong=\"G1519\"* God|strong=\"G2316\"*—through|strong=\"G1223\"* the|strong=\"G2532\"* resurrection of|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 22, + "text": "who|strong=\"G3739\"* is|strong=\"G1510\"* at|strong=\"G1722\"* the|strong=\"G1722\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, having|strong=\"G2532\"* gone|strong=\"G4198\"* into|strong=\"G1519\"* heaven|strong=\"G3772\"*, angels and|strong=\"G2532\"* authorities|strong=\"G1849\"* and|strong=\"G2532\"* powers|strong=\"G1411\"* being|strong=\"G1510\"* made|strong=\"G2316\"* subject|strong=\"G5293\"* to|strong=\"G1519\"* him|strong=\"G3739\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G3767\"*, since|strong=\"G3754\"* Christ|strong=\"G5547\"* suffered|strong=\"G3958\"* for|strong=\"G3754\"* us in|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, arm|strong=\"G3695\"* yourselves|strong=\"G4771\"* also|strong=\"G2532\"* with|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G2532\"* mind|strong=\"G1771\"*; for|strong=\"G3754\"* he|strong=\"G2532\"* who|strong=\"G3588\"* has|strong=\"G5547\"* suffered|strong=\"G3958\"* in|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"* has|strong=\"G5547\"* ceased|strong=\"G3973\"* from|strong=\"G2532\"* sin," + }, + { + "verseNum": 2, + "text": "that|strong=\"G3588\"* you|strong=\"G1722\"* no|strong=\"G3371\"* longer|strong=\"G3371\"* should|strong=\"G2316\"* live the|strong=\"G1722\"* rest|strong=\"G1954\"* of|strong=\"G2316\"* your|strong=\"G1722\"* time|strong=\"G5550\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"* for|strong=\"G1519\"* the|strong=\"G1722\"* lusts|strong=\"G1939\"* of|strong=\"G2316\"* men|strong=\"G3588\"*, but|strong=\"G2316\"* for|strong=\"G1519\"* the|strong=\"G1722\"* will|strong=\"G2307\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* have|strong=\"G2532\"* spent enough of|strong=\"G2532\"* our|strong=\"G2532\"* past|strong=\"G3928\"* time|strong=\"G5550\"* doing|strong=\"G2716\"* the|strong=\"G1722\"* desire|strong=\"G1939\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"*, and|strong=\"G2532\"* having|strong=\"G2532\"* walked|strong=\"G4198\"* in|strong=\"G1722\"* lewdness, lusts|strong=\"G1939\"*, drunken binges, orgies, carousings, and|strong=\"G2532\"* abominable idolatries|strong=\"G1495\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"G3588\"* think it|strong=\"G3739\"* is|strong=\"G3588\"* strange|strong=\"G3579\"* that|strong=\"G3739\"* you|strong=\"G5210\"* don’t|strong=\"G3588\"* run|strong=\"G4936\"* with|strong=\"G1722\"* them|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G1722\"* same|strong=\"G3739\"* excess of|strong=\"G1722\"* riot, speaking evil of|strong=\"G1722\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"G2532\"* will|strong=\"G2532\"* give|strong=\"G2192\"* account|strong=\"G3056\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3739\"* is|strong=\"G3588\"* ready|strong=\"G2093\"* to|strong=\"G2532\"* judge|strong=\"G2919\"* the|strong=\"G2532\"* living|strong=\"G2198\"* and|strong=\"G2532\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1063\"* to|strong=\"G1519\"* this|strong=\"G3778\"* end|strong=\"G1519\"* the|strong=\"G2532\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* was|strong=\"G2532\"* preached|strong=\"G2097\"* even|strong=\"G2532\"* to|strong=\"G1519\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G2532\"* judged|strong=\"G2919\"* indeed|strong=\"G2532\"* as|strong=\"G1519\"* men|strong=\"G3778\"* in|strong=\"G1519\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, but|strong=\"G1161\"* live|strong=\"G2198\"* as|strong=\"G1519\"* to|strong=\"G1519\"* God|strong=\"G2316\"* in|strong=\"G1519\"* the|strong=\"G2532\"* spirit|strong=\"G4151\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* end|strong=\"G5056\"* of|strong=\"G2532\"* all|strong=\"G3956\"* things|strong=\"G3956\"* is|strong=\"G3588\"* near|strong=\"G1448\"*. Therefore|strong=\"G3767\"* be|strong=\"G2532\"* of|strong=\"G2532\"* sound|strong=\"G4993\"* mind|strong=\"G4993\"*, self-controlled, and|strong=\"G2532\"* sober|strong=\"G3525\"* in|strong=\"G1519\"* prayer|strong=\"G4335\"*." + }, + { + "verseNum": 8, + "text": "And|strong=\"G3956\"* above|strong=\"G4253\"* all|strong=\"G3956\"* things|strong=\"G3956\"* be|strong=\"G3956\"* earnest in|strong=\"G1519\"* your|strong=\"G2192\"* love among|strong=\"G1519\"* yourselves|strong=\"G1438\"*, for|strong=\"G3754\"* love covers|strong=\"G2572\"* a|strong=\"G2192\"* multitude|strong=\"G4128\"* of|strong=\"G3956\"* sins." + }, + { + "verseNum": 9, + "text": "Be|strong=\"G1519\"* hospitable|strong=\"G5382\"* to|strong=\"G1519\"* one|strong=\"G1519\"* another without grumbling|strong=\"G1112\"*." + }, + { + "verseNum": 10, + "text": "As|strong=\"G5613\"* each|strong=\"G1538\"* has|strong=\"G2316\"* received|strong=\"G2983\"* a|strong=\"G5613\"* gift|strong=\"G5486\"*, employ|strong=\"G1247\"* it|strong=\"G2531\"* in|strong=\"G1519\"* serving|strong=\"G1247\"* one|strong=\"G1538\"* another|strong=\"G1438\"*, as|strong=\"G5613\"* good|strong=\"G2570\"* managers|strong=\"G3623\"* of|strong=\"G2316\"* the|strong=\"G1519\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* in|strong=\"G1519\"* its various|strong=\"G4164\"* forms." + }, + { + "verseNum": 11, + "text": "If|strong=\"G1487\"* anyone|strong=\"G5100\"* speaks|strong=\"G2980\"*, let|strong=\"G1510\"* it|strong=\"G2532\"* be|strong=\"G1510\"* as|strong=\"G5613\"* it|strong=\"G2532\"* were|strong=\"G1510\"* the|strong=\"G1722\"* very|strong=\"G2532\"* words|strong=\"G2532\"* of|strong=\"G1537\"* God|strong=\"G2316\"*. If|strong=\"G1487\"* anyone|strong=\"G5100\"* serves|strong=\"G1247\"*, let|strong=\"G1510\"* it|strong=\"G2532\"* be|strong=\"G1510\"* as|strong=\"G5613\"* of|strong=\"G1537\"* the|strong=\"G1722\"* strength|strong=\"G2479\"* which|strong=\"G3739\"* God|strong=\"G2316\"* supplies|strong=\"G5524\"*, that|strong=\"G2443\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"* God|strong=\"G2316\"* may|strong=\"G2532\"* be|strong=\"G1510\"* glorified|strong=\"G1392\"* through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, to|strong=\"G1519\"* whom|strong=\"G3739\"* belong|strong=\"G1510\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* the|strong=\"G1722\"* dominion|strong=\"G2904\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*. Amen." + }, + { + "verseNum": 12, + "text": "Beloved, don’t|strong=\"G3588\"* be|strong=\"G1096\"* astonished at|strong=\"G1722\"* the|strong=\"G1722\"* fiery|strong=\"G4451\"* trial|strong=\"G3986\"* which|strong=\"G3588\"* has|strong=\"G1096\"* come|strong=\"G1096\"* upon|strong=\"G1722\"* you|strong=\"G5210\"* to|strong=\"G4314\"* test you|strong=\"G5210\"*, as|strong=\"G5613\"* though|strong=\"G5613\"* a|strong=\"G1096\"* strange|strong=\"G3581\"* thing|strong=\"G3581\"* happened|strong=\"G1096\"* to|strong=\"G4314\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G2532\"* because|strong=\"G1722\"* you|strong=\"G1722\"* are|strong=\"G3588\"* partakers|strong=\"G2841\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*’s sufferings|strong=\"G3804\"*, rejoice|strong=\"G5463\"*, that|strong=\"G2443\"* at|strong=\"G1722\"* the|strong=\"G1722\"* revelation of|strong=\"G2532\"* his|strong=\"G1722\"* glory|strong=\"G1391\"* you|strong=\"G1722\"* also|strong=\"G2532\"* may|strong=\"G2532\"* rejoice|strong=\"G5463\"* with|strong=\"G1722\"* exceeding|strong=\"G1722\"* joy|strong=\"G5463\"*." + }, + { + "verseNum": 14, + "text": "If|strong=\"G1487\"* you|strong=\"G5210\"* are|strong=\"G3588\"* insulted for|strong=\"G3754\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G4151\"* Christ|strong=\"G5547\"*, you|strong=\"G5210\"* are|strong=\"G3588\"* blessed|strong=\"G3107\"*, because|strong=\"G3754\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* of|strong=\"G4151\"* God|strong=\"G2316\"* rests on|strong=\"G1909\"* you|strong=\"G5210\"*. On|strong=\"G1909\"* their|strong=\"G2532\"* part|strong=\"G2532\"* he|strong=\"G2532\"* is|strong=\"G3588\"* blasphemed, but|strong=\"G2532\"* on|strong=\"G1909\"* your|strong=\"G2532\"* part|strong=\"G2532\"* he|strong=\"G2532\"* is|strong=\"G3588\"* glorified|strong=\"G2532\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"G3361\"* let|strong=\"G1063\"* none|strong=\"G3361\"* of|strong=\"G5100\"* you|strong=\"G5210\"* suffer|strong=\"G3958\"* as|strong=\"G5613\"* a|strong=\"G5613\"* murderer|strong=\"G5406\"*, or|strong=\"G2228\"* a|strong=\"G5613\"* thief|strong=\"G2812\"*, or|strong=\"G2228\"* an|strong=\"G2228\"* evil|strong=\"G5100\"* doer, or|strong=\"G2228\"* a|strong=\"G5613\"* meddler in|strong=\"G1063\"* other|strong=\"G5100\"* men|strong=\"G5100\"*’s matters." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* one|strong=\"G3588\"* of|strong=\"G2316\"* you|strong=\"G1487\"* suffers for|strong=\"G1161\"* being|strong=\"G1722\"* a|strong=\"G5613\"* Christian|strong=\"G5546\"*, let|strong=\"G1161\"* him|strong=\"G3588\"* not|strong=\"G3361\"* be|strong=\"G3361\"* ashamed; but|strong=\"G1161\"* let|strong=\"G1161\"* him|strong=\"G3588\"* glorify|strong=\"G1392\"* God|strong=\"G2316\"* in|strong=\"G1722\"* this|strong=\"G3778\"* matter." + }, + { + "verseNum": 17, + "text": "For|strong=\"G3754\"* the|strong=\"G1161\"* time|strong=\"G2540\"* has|strong=\"G2316\"* come for|strong=\"G3754\"* judgment|strong=\"G2917\"* to|strong=\"G1161\"* begin with|strong=\"G2316\"* the|strong=\"G1161\"* household|strong=\"G3624\"* of|strong=\"G2316\"* God|strong=\"G2316\"*. If|strong=\"G1487\"* it|strong=\"G3754\"* begins first|strong=\"G4413\"* with|strong=\"G2316\"* us|strong=\"G2249\"*, what|strong=\"G5101\"* will|strong=\"G2316\"* happen to|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G5101\"* don’t|strong=\"G3588\"* obey the|strong=\"G1161\"* Good|strong=\"G5101\"* News|strong=\"G2098\"* of|strong=\"G2316\"* God|strong=\"G2316\"*?" + }, + { + "verseNum": 18, + "text": "“If|strong=\"G1487\"* it|strong=\"G2532\"* is|strong=\"G3588\"* hard for|strong=\"G2532\"* the|strong=\"G2532\"* righteous|strong=\"G1342\"* to|strong=\"G2532\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*, what|strong=\"G3588\"* will|strong=\"G2532\"* happen to|strong=\"G2532\"* the|strong=\"G2532\"* ungodly and|strong=\"G2532\"* the|strong=\"G2532\"* sinner?”+ 4:18 Proverbs 11:31*" + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"G5620\"* let|strong=\"G3958\"* them|strong=\"G3588\"* also|strong=\"G2532\"* who|strong=\"G3588\"* suffer|strong=\"G3958\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* will|strong=\"G2307\"* of|strong=\"G2316\"* God|strong=\"G2316\"* in|strong=\"G1722\"* doing good|strong=\"G3588\"* entrust|strong=\"G3908\"* their|strong=\"G2532\"* souls|strong=\"G5590\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, as|strong=\"G1722\"* to|strong=\"G2532\"* a|strong=\"G2532\"* faithful|strong=\"G4103\"* Creator|strong=\"G2939\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G3767\"* I|strong=\"G2532\"* exhort|strong=\"G3870\"* the|strong=\"G1722\"* elders|strong=\"G4245\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, as|strong=\"G1722\"* a|strong=\"G2532\"* fellow|strong=\"G4850\"* elder|strong=\"G4245\"* and|strong=\"G2532\"* a|strong=\"G2532\"* witness|strong=\"G3144\"* of|strong=\"G2532\"* the|strong=\"G1722\"* sufferings|strong=\"G3804\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* who|strong=\"G3588\"* will|strong=\"G3195\"* also|strong=\"G2532\"* share|strong=\"G2844\"* in|strong=\"G1722\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* that|strong=\"G3588\"* will|strong=\"G3195\"* be|strong=\"G2532\"* revealed:" + }, + { + "verseNum": 2, + "text": "shepherd|strong=\"G4165\"* the|strong=\"G1722\"* flock|strong=\"G4168\"* of|strong=\"G2316\"* God|strong=\"G2316\"* which|strong=\"G3588\"* is|strong=\"G3588\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, exercising the|strong=\"G1722\"* oversight|strong=\"G1983\"*, not|strong=\"G3361\"* under|strong=\"G1722\"* compulsion, but|strong=\"G3361\"* voluntarily|strong=\"G1596\"*; not|strong=\"G3361\"* for|strong=\"G1722\"* dishonest gain, but|strong=\"G3361\"* willingly|strong=\"G1596\"*;" + }, + { + "verseNum": 3, + "text": "not|strong=\"G3366\"* as|strong=\"G5613\"* lording|strong=\"G2634\"* it|strong=\"G5613\"* over|strong=\"G2634\"* those|strong=\"G3588\"* entrusted to|strong=\"G1096\"* you|strong=\"G5613\"*, but|strong=\"G3588\"* making yourselves|strong=\"G1096\"* examples|strong=\"G5179\"* to|strong=\"G1096\"* the|strong=\"G3588\"* flock|strong=\"G4168\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* Shepherd is|strong=\"G3588\"* revealed|strong=\"G5319\"*, you|strong=\"G2532\"* will|strong=\"G2532\"* receive|strong=\"G2865\"* the|strong=\"G2532\"* crown|strong=\"G4735\"* of|strong=\"G2532\"* glory|strong=\"G1391\"* that|strong=\"G3588\"* doesn’t|strong=\"G3588\"* fade away." + }, + { + "verseNum": 5, + "text": "Likewise|strong=\"G3668\"*, you|strong=\"G3754\"* younger|strong=\"G3501\"* ones|strong=\"G3748\"*, be|strong=\"G3956\"* subject|strong=\"G5293\"* to|strong=\"G1325\"* the|strong=\"G3956\"* elder|strong=\"G4245\"*. Yes|strong=\"G1161\"*, all|strong=\"G3956\"* of|strong=\"G2316\"* you|strong=\"G3754\"* clothe|strong=\"G1463\"* yourselves|strong=\"G5293\"* with|strong=\"G2316\"* humility|strong=\"G5012\"* and|strong=\"G1161\"* subject|strong=\"G5293\"* yourselves|strong=\"G5293\"* to|strong=\"G1325\"* one|strong=\"G3956\"* another|strong=\"G3588\"*; for|strong=\"G3754\"* “God|strong=\"G2316\"* resists the|strong=\"G3956\"* proud|strong=\"G5244\"*, but|strong=\"G1161\"* gives|strong=\"G1325\"* grace|strong=\"G5485\"* to|strong=\"G1325\"* the|strong=\"G3956\"* humble|strong=\"G5011\"*.”+ 5:5 Proverbs 3:34 *" + }, + { + "verseNum": 6, + "text": "Humble|strong=\"G5013\"* yourselves|strong=\"G4771\"* therefore|strong=\"G3767\"* under|strong=\"G5259\"* the|strong=\"G1722\"* mighty|strong=\"G2900\"* hand|strong=\"G5495\"* of|strong=\"G5259\"* God|strong=\"G2316\"*, that|strong=\"G2443\"* he|strong=\"G3588\"* may|strong=\"G2443\"* exalt|strong=\"G5312\"* you|strong=\"G5210\"* in|strong=\"G1722\"* due|strong=\"G1722\"* time|strong=\"G2540\"*," + }, + { + "verseNum": 7, + "text": "casting|strong=\"G1977\"* all|strong=\"G3956\"* your|strong=\"G3956\"* worries|strong=\"G3308\"* on|strong=\"G1909\"* him|strong=\"G3588\"*, because|strong=\"G3754\"* he|strong=\"G3754\"* cares|strong=\"G3308\"* for|strong=\"G3754\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 8, + "text": "Be|strong=\"G3588\"* sober|strong=\"G3525\"* and|strong=\"G3588\"* self-controlled. Be|strong=\"G3588\"* watchful|strong=\"G1127\"*. Your|strong=\"G3588\"* adversary, the|strong=\"G3588\"* devil|strong=\"G1228\"*, walks|strong=\"G4043\"* around|strong=\"G4043\"* like|strong=\"G5613\"* a|strong=\"G5613\"* roaring|strong=\"G5612\"* lion|strong=\"G3023\"*, seeking|strong=\"G2212\"* whom|strong=\"G5101\"* he|strong=\"G3588\"* may|strong=\"G5210\"* devour|strong=\"G2666\"*." + }, + { + "verseNum": 9, + "text": "Withstand him|strong=\"G3588\"* steadfast in|strong=\"G1722\"* your|strong=\"G1722\"* faith|strong=\"G4102\"*, knowing|strong=\"G1492\"* that|strong=\"G3739\"* your|strong=\"G1722\"* brothers who|strong=\"G3739\"* are|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"* are|strong=\"G3588\"* undergoing the|strong=\"G1722\"* same|strong=\"G3739\"* sufferings|strong=\"G3804\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* may|strong=\"G5547\"* the|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G2316\"* all|strong=\"G3956\"* grace|strong=\"G5485\"*, who|strong=\"G3588\"* called|strong=\"G2564\"* you|strong=\"G5210\"* to|strong=\"G1519\"* his|strong=\"G3956\"* eternal glory|strong=\"G1391\"* by|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G4741\"*, after|strong=\"G1161\"* you|strong=\"G5210\"* have|strong=\"G5210\"* suffered|strong=\"G3958\"* a|strong=\"G1519\"* little|strong=\"G3641\"* while|strong=\"G1722\"*, perfect|strong=\"G2675\"*, establish|strong=\"G4741\"*, strengthen|strong=\"G4741\"*, and|strong=\"G1161\"* settle|strong=\"G2311\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 11, + "text": "To|strong=\"G1519\"* him|strong=\"G3588\"* be|strong=\"G1519\"* the|strong=\"G1519\"* glory and|strong=\"G3588\"* the|strong=\"G1519\"* power|strong=\"G2904\"* forever|strong=\"G1519\"* and|strong=\"G3588\"* ever|strong=\"G1519\"*. Amen." + }, + { + "verseNum": 12, + "text": "Through|strong=\"G1223\"* Silvanus|strong=\"G4610\"*, our|strong=\"G2316\"* faithful|strong=\"G4103\"* brother, as|strong=\"G5613\"* I|strong=\"G3739\"* consider|strong=\"G3049\"* him|strong=\"G3588\"*, I|strong=\"G3739\"* have|strong=\"G2532\"* written|strong=\"G1125\"* to|strong=\"G1519\"* you|strong=\"G5210\"* briefly|strong=\"G3641\"*, exhorting|strong=\"G3870\"* and|strong=\"G2532\"* testifying|strong=\"G1957\"* that|strong=\"G3739\"* this|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* true|strong=\"G4103\"* grace|strong=\"G5485\"* of|strong=\"G1223\"* God|strong=\"G2316\"* in|strong=\"G1519\"* which|strong=\"G3739\"* you|strong=\"G5210\"* stand|strong=\"G2476\"*." + }, + { + "verseNum": 13, + "text": "She|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Babylon, chosen|strong=\"G4899\"* together|strong=\"G2532\"* with|strong=\"G1722\"* you|strong=\"G5210\"*, greets you|strong=\"G5210\"*. So|strong=\"G2532\"* does|strong=\"G5207\"* Mark|strong=\"G3138\"*, my|strong=\"G1722\"* son|strong=\"G5207\"*." + }, + { + "verseNum": 14, + "text": "Greet one|strong=\"G3956\"* another|strong=\"G3588\"* with|strong=\"G1722\"* a|strong=\"G1722\"* kiss|strong=\"G5370\"* of|strong=\"G1722\"* love." + } + ] + } + ] + }, + { + "name": "2 Peter", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Simon|strong=\"G4826\"* Peter|strong=\"G4074\"*, a|strong=\"G2532\"* servant|strong=\"G1401\"* and|strong=\"G2532\"* apostle of|strong=\"G2316\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:1 “Christ” means “Anointed One”.* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2532\"* obtained|strong=\"G2975\"* a|strong=\"G2532\"* like|strong=\"G2975\"* precious|strong=\"G2472\"* faith|strong=\"G4102\"* with|strong=\"G1722\"* us|strong=\"G2249\"* in|strong=\"G1722\"* the|strong=\"G1722\"* righteousness|strong=\"G1343\"* of|strong=\"G2316\"* our|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Savior|strong=\"G4990\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*:" + }, + { + "verseNum": 2, + "text": "Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* be|strong=\"G2532\"* multiplied|strong=\"G4129\"* in|strong=\"G1722\"* the|strong=\"G1722\"* knowledge|strong=\"G1922\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* of|strong=\"G2316\"* Jesus|strong=\"G2424\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"*," + }, + { + "verseNum": 3, + "text": "seeing|strong=\"G1223\"* that|strong=\"G3588\"* his|strong=\"G3956\"* divine|strong=\"G2304\"* power|strong=\"G1411\"* has|strong=\"G2532\"* granted|strong=\"G1433\"* to|strong=\"G4314\"* us|strong=\"G2249\"* all|strong=\"G3956\"* things|strong=\"G3956\"* that|strong=\"G3588\"* pertain|strong=\"G3588\"* to|strong=\"G4314\"* life|strong=\"G2222\"* and|strong=\"G2532\"* godliness|strong=\"G2150\"*, through|strong=\"G1223\"* the|strong=\"G2532\"* knowledge|strong=\"G1922\"* of|strong=\"G1223\"* him|strong=\"G3588\"* who|strong=\"G3588\"* called|strong=\"G2564\"* us|strong=\"G2249\"* by|strong=\"G1223\"* his|strong=\"G3956\"* own|strong=\"G2398\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* virtue|strong=\"G1411\"*," + }, + { + "verseNum": 4, + "text": "by|strong=\"G1223\"* which|strong=\"G3739\"* he|strong=\"G2532\"* has|strong=\"G3739\"* granted|strong=\"G1433\"* to|strong=\"G2443\"* us|strong=\"G2249\"* his|strong=\"G1223\"* precious|strong=\"G5093\"* and|strong=\"G2532\"* exceedingly|strong=\"G3173\"* great|strong=\"G3173\"* promises|strong=\"G1862\"*; that|strong=\"G2443\"* through|strong=\"G1223\"* these|strong=\"G3778\"* you|strong=\"G3739\"* may|strong=\"G2532\"* become|strong=\"G1096\"* partakers|strong=\"G2844\"* of|strong=\"G1223\"* the|strong=\"G1722\"* divine|strong=\"G2304\"* nature|strong=\"G5449\"*, having|strong=\"G2532\"* escaped from|strong=\"G2532\"* the|strong=\"G1722\"* corruption|strong=\"G5356\"* that|strong=\"G2443\"* is|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"* by|strong=\"G1223\"* lust|strong=\"G1939\"*." + }, + { + "verseNum": 5, + "text": "Yes|strong=\"G1161\"*, and|strong=\"G2532\"* for|strong=\"G1161\"* this|strong=\"G3778\"* very|strong=\"G2532\"* cause|strong=\"G3588\"* adding on|strong=\"G1722\"* your|strong=\"G2532\"* part|strong=\"G1161\"* all|strong=\"G3956\"* diligence|strong=\"G4710\"*, in|strong=\"G1722\"* your|strong=\"G2532\"* faith|strong=\"G4102\"* supply|strong=\"G2023\"* moral excellence; and|strong=\"G2532\"* in|strong=\"G1722\"* moral excellence, knowledge|strong=\"G1108\"*;" + }, + { + "verseNum": 6, + "text": "and|strong=\"G1161\"* in|strong=\"G1722\"* knowledge|strong=\"G1108\"*, self-control|strong=\"G1466\"*; and|strong=\"G1161\"* in|strong=\"G1722\"* self-control|strong=\"G1466\"*, perseverance|strong=\"G5281\"*; and|strong=\"G1161\"* in|strong=\"G1722\"* perseverance|strong=\"G5281\"*, godliness|strong=\"G2150\"*;" + }, + { + "verseNum": 7, + "text": "and|strong=\"G1161\"* in|strong=\"G1722\"* godliness|strong=\"G2150\"*, brotherly|strong=\"G5360\"* affection; and|strong=\"G1161\"* in|strong=\"G1722\"* brotherly|strong=\"G5360\"* affection, love|strong=\"G5360\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* if|strong=\"G2532\"* these|strong=\"G3778\"* things|strong=\"G3778\"* are|strong=\"G3588\"* yours|strong=\"G4771\"* and|strong=\"G2532\"* abound|strong=\"G4121\"*, they|strong=\"G2532\"* make|strong=\"G1519\"* you|strong=\"G5210\"* to|strong=\"G1519\"* not|strong=\"G3756\"* be|strong=\"G2532\"* idle or|strong=\"G2532\"* unfruitful in|strong=\"G1519\"* the|strong=\"G2532\"* knowledge|strong=\"G1922\"* of|strong=\"G2532\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* he|strong=\"G3739\"* who|strong=\"G3739\"* lacks|strong=\"G3361\"* these|strong=\"G3778\"* things|strong=\"G3778\"* is|strong=\"G1510\"* blind|strong=\"G5185\"*, seeing only what|strong=\"G3739\"* is|strong=\"G1510\"* near, having|strong=\"G3361\"* forgotten|strong=\"G2983\"* the|strong=\"G3588\"* cleansing|strong=\"G2512\"* from|strong=\"G3588\"* his|strong=\"G2983\"* old|strong=\"G3819\"* sins." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"G1352\"*, brothers,+ 1:10 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” * be|strong=\"G2532\"* more|strong=\"G3123\"* diligent|strong=\"G4704\"* to|strong=\"G2532\"* make|strong=\"G4160\"* your|strong=\"G2532\"* calling|strong=\"G2821\"* and|strong=\"G2532\"* election|strong=\"G1589\"* sure. For|strong=\"G1063\"* if|strong=\"G2532\"* you|strong=\"G5210\"* do|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, you|strong=\"G5210\"* will|strong=\"G2532\"* never|strong=\"G3756\"* stumble|strong=\"G4417\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* thus|strong=\"G3779\"* you|strong=\"G5210\"* will|strong=\"G2532\"* be|strong=\"G2532\"* richly|strong=\"G4146\"* supplied|strong=\"G2023\"* with|strong=\"G2532\"* the|strong=\"G2532\"* entrance|strong=\"G1529\"* into|strong=\"G1519\"* the|strong=\"G2532\"* eternal Kingdom of|strong=\"G2532\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* Savior|strong=\"G4990\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"G1352\"* I|strong=\"G2532\"* will|strong=\"G3195\"* not|strong=\"G2532\"* be|strong=\"G2532\"* negligent to|strong=\"G2532\"* remind|strong=\"G5279\"* you|strong=\"G5210\"* of|strong=\"G4012\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, though|strong=\"G2539\"* you|strong=\"G5210\"* know|strong=\"G1492\"* them|strong=\"G3588\"* and|strong=\"G2532\"* are|strong=\"G3588\"* established|strong=\"G4741\"* in|strong=\"G1722\"* the|strong=\"G1722\"* present|strong=\"G3918\"* truth." + }, + { + "verseNum": 13, + "text": "I|strong=\"G1161\"* think|strong=\"G2233\"* it|strong=\"G1161\"* right|strong=\"G1342\"*, as|strong=\"G3745\"* long|strong=\"G3745\"* as|strong=\"G3745\"* I|strong=\"G1161\"* am|strong=\"G1510\"* in|strong=\"G1722\"* this|strong=\"G3778\"* tent, to|strong=\"G1909\"* stir|strong=\"G1326\"* you|strong=\"G5210\"* up|strong=\"G1326\"* by|strong=\"G1722\"* reminding you|strong=\"G5210\"*," + }, + { + "verseNum": 14, + "text": "knowing|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G2532\"* putting|strong=\"G2532\"* off of|strong=\"G2532\"* my|strong=\"G3708\"* tent comes|strong=\"G1510\"* swiftly, even|strong=\"G2532\"* as|strong=\"G2531\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* made|strong=\"G1213\"* clear|strong=\"G1213\"* to|strong=\"G2532\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 15, + "text": "Yes|strong=\"G1161\"*, I|strong=\"G2532\"* will|strong=\"G2532\"* make|strong=\"G4160\"* every|strong=\"G2532\"* effort|strong=\"G4704\"* that|strong=\"G3588\"* you|strong=\"G5210\"* may|strong=\"G2532\"* always|strong=\"G1539\"* be|strong=\"G2532\"* able|strong=\"G2192\"* to|strong=\"G2532\"* remember|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3778\"* even|strong=\"G2532\"* after|strong=\"G3326\"* my|strong=\"G1699\"* departure|strong=\"G1841\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* didn’t|strong=\"G3588\"* follow|strong=\"G1811\"* cunningly|strong=\"G1811\"* devised|strong=\"G4679\"* fables|strong=\"G3454\"* when|strong=\"G2532\"* we|strong=\"G2249\"* made|strong=\"G1096\"* known|strong=\"G1107\"* to|strong=\"G2532\"* you|strong=\"G5210\"* the|strong=\"G2532\"* power|strong=\"G1411\"* and|strong=\"G2532\"* coming|strong=\"G3952\"* of|strong=\"G2532\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, but|strong=\"G2532\"* we|strong=\"G2249\"* were|strong=\"G3588\"* eyewitnesses|strong=\"G2030\"* of|strong=\"G2532\"* his|strong=\"G2532\"* majesty|strong=\"G3168\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* received|strong=\"G2983\"* from|strong=\"G3844\"* God|strong=\"G2316\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* honor|strong=\"G5092\"* and|strong=\"G2532\"* glory|strong=\"G1391\"* when|strong=\"G2532\"* the|strong=\"G2532\"* voice|strong=\"G5456\"* came|strong=\"G2532\"* to|strong=\"G1519\"* him|strong=\"G3588\"* from|strong=\"G3844\"* the|strong=\"G2532\"* Majestic|strong=\"G3169\"* Glory|strong=\"G1391\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* my|strong=\"G1473\"* beloved Son|strong=\"G5207\"*, in|strong=\"G1519\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* am|strong=\"G1510\"* well|strong=\"G2532\"* pleased|strong=\"G2106\"*.”+ 1:17 Matthew 17:5; Mark 9:7; Luke 9:35*" + }, + { + "verseNum": 18, + "text": "We|strong=\"G2249\"* heard this|strong=\"G3778\"* voice|strong=\"G5456\"* come|strong=\"G1510\"* out|strong=\"G1537\"* of|strong=\"G1537\"* heaven|strong=\"G3772\"* when|strong=\"G2532\"* we|strong=\"G2249\"* were|strong=\"G1510\"* with|strong=\"G1722\"* him|strong=\"G3588\"* on|strong=\"G1722\"* the|strong=\"G1722\"* holy mountain|strong=\"G3735\"*." + }, + { + "verseNum": 19, + "text": "We|strong=\"G3739\"* have|strong=\"G2192\"* the|strong=\"G1722\"* more|strong=\"G2192\"* sure word|strong=\"G3056\"* of|strong=\"G3056\"* prophecy|strong=\"G4397\"*; and|strong=\"G2532\"* you|strong=\"G5210\"* do|strong=\"G4160\"* well|strong=\"G2573\"* that|strong=\"G3739\"* you|strong=\"G5210\"* heed|strong=\"G4337\"* it|strong=\"G2532\"* as|strong=\"G5613\"* to|strong=\"G2532\"* a|strong=\"G2192\"* lamp|strong=\"G3088\"* shining|strong=\"G5316\"* in|strong=\"G1722\"* a|strong=\"G2192\"* dark place|strong=\"G5117\"*, until|strong=\"G2193\"* the|strong=\"G1722\"* day|strong=\"G2250\"* dawns|strong=\"G1306\"* and|strong=\"G2532\"* the|strong=\"G1722\"* morning|strong=\"G2250\"* star|strong=\"G5459\"* arises in|strong=\"G1722\"* your|strong=\"G2192\"* hearts|strong=\"G2588\"*," + }, + { + "verseNum": 20, + "text": "knowing|strong=\"G1097\"* this|strong=\"G3778\"* first|strong=\"G4413\"*, that|strong=\"G3754\"* no|strong=\"G3756\"* prophecy|strong=\"G4394\"* of|strong=\"G3956\"* Scripture|strong=\"G1124\"* is|strong=\"G3778\"* of|strong=\"G3956\"* private|strong=\"G2398\"* interpretation|strong=\"G1955\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"G1063\"* no|strong=\"G3756\"* prophecy|strong=\"G4394\"* ever|strong=\"G4218\"* came|strong=\"G5342\"* by|strong=\"G5259\"* the|strong=\"G1063\"* will|strong=\"G2307\"* of|strong=\"G5259\"* man|strong=\"G3756\"*, but|strong=\"G1063\"* holy|strong=\"G4151\"* men of|strong=\"G5259\"* God|strong=\"G2316\"* spoke|strong=\"G2980\"*, being moved|strong=\"G5342\"* by|strong=\"G5259\"* the|strong=\"G1063\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"G1161\"* false|strong=\"G5578\"* prophets|strong=\"G5578\"* also|strong=\"G2532\"* arose|strong=\"G1096\"* among|strong=\"G1722\"* the|strong=\"G1722\"* people|strong=\"G2992\"*, as|strong=\"G5613\"* false|strong=\"G5578\"* teachers|strong=\"G5572\"* will|strong=\"G1510\"* also|strong=\"G2532\"* be|strong=\"G1096\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, who|strong=\"G3588\"* will|strong=\"G1510\"* secretly|strong=\"G3919\"* bring|strong=\"G1863\"* in|strong=\"G1722\"* destructive heresies, denying even|strong=\"G2532\"* the|strong=\"G1722\"* Master|strong=\"G1203\"* who|strong=\"G3588\"* bought them|strong=\"G3588\"*, bringing|strong=\"G1863\"* on|strong=\"G1722\"* themselves|strong=\"G1438\"* swift|strong=\"G5031\"* destruction." + }, + { + "verseNum": 2, + "text": "Many|strong=\"G4183\"* will|strong=\"G2532\"* follow|strong=\"G1811\"* their|strong=\"G2532\"* immoral+ 2:2 TR reads “destructive” instead of “immoral”* ways|strong=\"G3598\"*, and|strong=\"G2532\"* as|strong=\"G2532\"* a|strong=\"G2532\"* result, the|strong=\"G2532\"* way|strong=\"G3598\"* of|strong=\"G1223\"* the|strong=\"G2532\"* truth will|strong=\"G2532\"* be|strong=\"G2532\"* maligned." + }, + { + "verseNum": 3, + "text": "In|strong=\"G1722\"* covetousness|strong=\"G4124\"* they|strong=\"G2532\"* will|strong=\"G2532\"* exploit|strong=\"G1710\"* you|strong=\"G5210\"* with|strong=\"G1722\"* deceptive words|strong=\"G3056\"*: whose|strong=\"G3739\"* sentence|strong=\"G2917\"* now|strong=\"G2532\"* from|strong=\"G2532\"* of|strong=\"G3056\"* old|strong=\"G2532\"* doesn’t|strong=\"G3588\"* linger, and|strong=\"G2532\"* their|strong=\"G2532\"* destruction will|strong=\"G2532\"* not|strong=\"G3756\"* slumber." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* God|strong=\"G2316\"* didn’t|strong=\"G3588\"* spare|strong=\"G5339\"* angels when|strong=\"G3588\"* they|strong=\"G3588\"* sinned, but|strong=\"G1487\"* cast|strong=\"G3756\"* them|strong=\"G3588\"* down|strong=\"G3860\"* to|strong=\"G1519\"* Tartarus,+ 2:4 Tartarus is another name for Hell* and|strong=\"G2316\"* committed|strong=\"G3860\"* them|strong=\"G3588\"* to|strong=\"G1519\"* pits of|strong=\"G2316\"* darkness|strong=\"G2217\"* to|strong=\"G1519\"* be|strong=\"G3756\"* reserved|strong=\"G5083\"* for|strong=\"G1063\"* judgment|strong=\"G2920\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"G2532\"* didn’t spare|strong=\"G5339\"* the|strong=\"G2532\"* ancient world|strong=\"G2889\"*, but|strong=\"G2532\"* preserved|strong=\"G5442\"* Noah|strong=\"G3575\"* with|strong=\"G2532\"* seven|strong=\"G3590\"* others|strong=\"G3590\"*, a|strong=\"G2532\"* preacher|strong=\"G2783\"* of|strong=\"G2532\"* righteousness|strong=\"G1343\"*, when|strong=\"G2532\"* he|strong=\"G2532\"* brought|strong=\"G1863\"* a|strong=\"G2532\"* flood|strong=\"G2627\"* on|strong=\"G3756\"* the|strong=\"G2532\"* world|strong=\"G2889\"* of|strong=\"G2532\"* the|strong=\"G2532\"* ungodly," + }, + { + "verseNum": 6, + "text": "and|strong=\"G2532\"* turning|strong=\"G5077\"* the|strong=\"G2532\"* cities|strong=\"G4172\"* of|strong=\"G2532\"* Sodom|strong=\"G4670\"* and|strong=\"G2532\"* Gomorrah|strong=\"G1116\"* into|strong=\"G1116\"* ashes|strong=\"G5077\"*, condemned|strong=\"G2632\"* them|strong=\"G2532\"* to|strong=\"G2532\"* destruction|strong=\"G2692\"*, having|strong=\"G2532\"* made|strong=\"G5087\"* them|strong=\"G2532\"* an|strong=\"G2532\"* example|strong=\"G5262\"* to|strong=\"G2532\"* those|strong=\"G3195\"* who|strong=\"G2532\"* would|strong=\"G3195\"* live|strong=\"G2532\"* in|strong=\"G2532\"* an|strong=\"G2532\"* ungodly way," + }, + { + "verseNum": 7, + "text": "and|strong=\"G2532\"* delivered|strong=\"G4506\"* righteous|strong=\"G1342\"* Lot|strong=\"G3091\"*, who|strong=\"G3588\"* was|strong=\"G3588\"* very|strong=\"G2532\"* distressed by|strong=\"G1722\"* the|strong=\"G1722\"* lustful life of|strong=\"G5259\"* the|strong=\"G1722\"* wicked|strong=\"G3588\"*" + }, + { + "verseNum": 8, + "text": "(for|strong=\"G1063\"* that|strong=\"G3588\"* righteous|strong=\"G1342\"* man|strong=\"G1342\"* dwelling|strong=\"G1460\"* among|strong=\"G1722\"* them|strong=\"G3588\"* was|strong=\"G3588\"* tormented in|strong=\"G1722\"* his|strong=\"G1722\"* righteous|strong=\"G1342\"* soul|strong=\"G5590\"* from|strong=\"G1537\"* day|strong=\"G2250\"* to|strong=\"G2532\"* day|strong=\"G2250\"* with|strong=\"G1722\"* seeing and|strong=\"G2532\"* hearing lawless deeds|strong=\"G2041\"*)," + }, + { + "verseNum": 9, + "text": "then|strong=\"G1161\"* the|strong=\"G1519\"* Lord|strong=\"G2962\"* knows|strong=\"G1492\"* how|strong=\"G1492\"* to|strong=\"G1519\"* deliver|strong=\"G4506\"* the|strong=\"G1519\"* godly|strong=\"G2152\"* out|strong=\"G1537\"* of|strong=\"G1537\"* temptation|strong=\"G3986\"* and|strong=\"G1161\"* to|strong=\"G1519\"* keep|strong=\"G5083\"* the|strong=\"G1519\"* unrighteous under|strong=\"G1537\"* punishment|strong=\"G2849\"* for|strong=\"G1519\"* the|strong=\"G1519\"* day|strong=\"G2250\"* of|strong=\"G1537\"* judgment|strong=\"G2920\"*," + }, + { + "verseNum": 10, + "text": "but|strong=\"G1161\"* chiefly|strong=\"G3122\"* those|strong=\"G3588\"* who|strong=\"G3588\"* walk|strong=\"G4198\"* after|strong=\"G3694\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"* in|strong=\"G1722\"* the|strong=\"G1722\"* lust|strong=\"G1939\"* of|strong=\"G2532\"* defilement and|strong=\"G2532\"* despise|strong=\"G2706\"* authority|strong=\"G2963\"*. Daring|strong=\"G5113\"*, self-willed, they|strong=\"G2532\"* are|strong=\"G3588\"* not|strong=\"G3756\"* afraid|strong=\"G5141\"* to|strong=\"G2532\"* speak|strong=\"G1161\"* evil|strong=\"G2532\"* of|strong=\"G2532\"* dignitaries," + }, + { + "verseNum": 11, + "text": "whereas|strong=\"G3699\"* angels, though|strong=\"G2532\"* greater|strong=\"G3173\"* in|strong=\"G2596\"* might|strong=\"G2479\"* and|strong=\"G2532\"* power|strong=\"G1411\"*, don’t bring|strong=\"G5342\"* a|strong=\"G2532\"* slanderous judgment|strong=\"G2920\"* against|strong=\"G2596\"* them|strong=\"G5342\"* before|strong=\"G3844\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* these|strong=\"G3778\"*, as|strong=\"G5613\"* unreasoning creatures|strong=\"G2226\"*, born|strong=\"G1080\"* natural|strong=\"G5446\"* animals|strong=\"G2226\"* to|strong=\"G1519\"* be|strong=\"G2532\"* taken and|strong=\"G2532\"* destroyed|strong=\"G5356\"*, speaking evil|strong=\"G2532\"* in|strong=\"G1722\"* matters about|strong=\"G5613\"* which|strong=\"G3739\"* they|strong=\"G2532\"* are|strong=\"G3588\"* ignorant, will|strong=\"G2532\"* in|strong=\"G1722\"* their|strong=\"G2532\"* destroying surely be|strong=\"G2532\"* destroyed|strong=\"G5356\"*," + }, + { + "verseNum": 13, + "text": "receiving|strong=\"G2865\"* the|strong=\"G1722\"* wages|strong=\"G3408\"* of|strong=\"G2250\"* unrighteousness; people|strong=\"G3588\"* who|strong=\"G3588\"* count|strong=\"G2233\"* it|strong=\"G2532\"* pleasure|strong=\"G2237\"* to|strong=\"G2532\"* revel|strong=\"G5172\"* in|strong=\"G1722\"* the|strong=\"G1722\"* daytime|strong=\"G2250\"*, spots|strong=\"G4696\"* and|strong=\"G2532\"* defects, reveling|strong=\"G1792\"* in|strong=\"G1722\"* their|strong=\"G2532\"* deceit while|strong=\"G1722\"* they|strong=\"G2532\"* feast|strong=\"G4910\"* with|strong=\"G1722\"* you|strong=\"G5210\"*;" + }, + { + "verseNum": 14, + "text": "having|strong=\"G2192\"* eyes|strong=\"G3788\"* full|strong=\"G3324\"* of|strong=\"G2532\"* adultery|strong=\"G3428\"*, and|strong=\"G2532\"* who|strong=\"G2532\"* can’t cease from|strong=\"G2532\"* sin, enticing|strong=\"G1185\"* unsettled souls|strong=\"G5590\"*, having|strong=\"G2192\"* a|strong=\"G2192\"* heart|strong=\"G2588\"* trained|strong=\"G1128\"* in|strong=\"G2532\"* greed|strong=\"G4124\"*, accursed|strong=\"G2671\"* children|strong=\"G5043\"*!" + }, + { + "verseNum": 15, + "text": "Forsaking|strong=\"G2641\"* the|strong=\"G3588\"* right|strong=\"G2117\"* way|strong=\"G3598\"*, they|strong=\"G3588\"* went|strong=\"G3588\"* astray|strong=\"G4105\"*, having followed|strong=\"G1811\"* the|strong=\"G3588\"* way|strong=\"G3598\"* of|strong=\"G3598\"* Balaam the|strong=\"G3588\"* son of|strong=\"G3598\"* Beor, who|strong=\"G3739\"* loved the|strong=\"G3588\"* wages|strong=\"G3408\"* of|strong=\"G3598\"* wrongdoing;" + }, + { + "verseNum": 16, + "text": "but|strong=\"G1161\"* he|strong=\"G1161\"* was|strong=\"G3588\"* rebuked|strong=\"G1649\"* for|strong=\"G1161\"* his|strong=\"G1722\"* own|strong=\"G2398\"* disobedience. A|strong=\"G2192\"* speechless donkey|strong=\"G5268\"* spoke with|strong=\"G1722\"* a|strong=\"G2192\"* man’s|strong=\"G2192\"* voice|strong=\"G5456\"* and|strong=\"G1161\"* stopped the|strong=\"G1722\"* madness|strong=\"G3913\"* of|strong=\"G1722\"* the|strong=\"G1722\"* prophet|strong=\"G4396\"*." + }, + { + "verseNum": 17, + "text": "These|strong=\"G3778\"* are|strong=\"G1510\"* wells|strong=\"G4077\"* without|strong=\"G2532\"* water, clouds driven|strong=\"G1643\"* by|strong=\"G5259\"* a|strong=\"G2532\"* storm|strong=\"G2978\"*, for|strong=\"G2532\"* whom|strong=\"G3739\"* the|strong=\"G2532\"* blackness|strong=\"G2217\"* of|strong=\"G5259\"* darkness|strong=\"G4655\"* has|strong=\"G3739\"* been|strong=\"G1510\"* reserved|strong=\"G5083\"* forever." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"*, uttering great|strong=\"G5350\"* swelling|strong=\"G5246\"* words|strong=\"G3641\"* of|strong=\"G1722\"* emptiness, they|strong=\"G3588\"* entice|strong=\"G1185\"* in|strong=\"G1722\"* the|strong=\"G1722\"* lusts|strong=\"G1939\"* of|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, by|strong=\"G1722\"* licentiousness, those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* indeed|strong=\"G1063\"* escaping from|strong=\"G3588\"* those|strong=\"G3588\"* who|strong=\"G3588\"* live in|strong=\"G1722\"* error|strong=\"G4106\"*;" + }, + { + "verseNum": 19, + "text": "promising|strong=\"G1861\"* them|strong=\"G3588\"* liberty|strong=\"G1657\"*, while|strong=\"G3739\"* they|strong=\"G2532\"* themselves|strong=\"G3778\"* are|strong=\"G3588\"* bondservants of|strong=\"G2532\"* corruption|strong=\"G5356\"*; for|strong=\"G1063\"* a|strong=\"G2532\"* man|strong=\"G5100\"* is|strong=\"G3588\"* brought|strong=\"G2532\"* into|strong=\"G1401\"* bondage|strong=\"G1402\"* by|strong=\"G2532\"* whoever|strong=\"G3739\"* overcomes him|strong=\"G3588\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"*, after|strong=\"G1161\"* they|strong=\"G2532\"* have|strong=\"G2532\"* escaped the|strong=\"G1722\"* defilement of|strong=\"G2532\"* the|strong=\"G1722\"* world|strong=\"G2889\"* through|strong=\"G1722\"* the|strong=\"G1722\"* knowledge|strong=\"G1922\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* Savior|strong=\"G4990\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, they|strong=\"G2532\"* are|strong=\"G3588\"* again|strong=\"G3825\"* entangled|strong=\"G1707\"* in|strong=\"G1722\"* it|strong=\"G2532\"* and|strong=\"G2532\"* overcome|strong=\"G2274\"*, the|strong=\"G1722\"* last|strong=\"G2078\"* state has|strong=\"G2962\"* become|strong=\"G1096\"* worse|strong=\"G5501\"* for|strong=\"G1063\"* them|strong=\"G3588\"* than|strong=\"G2532\"* the|strong=\"G1722\"* first|strong=\"G4413\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"G1063\"* it|strong=\"G1063\"* would|strong=\"G1510\"* be|strong=\"G1510\"* better|strong=\"G2909\"* for|strong=\"G1063\"* them|strong=\"G3588\"* not|strong=\"G3361\"* to|strong=\"G3361\"* have|strong=\"G1510\"* known|strong=\"G1921\"* the|strong=\"G1537\"* way|strong=\"G3598\"* of|strong=\"G1537\"* righteousness|strong=\"G1343\"*, than|strong=\"G2228\"* after|strong=\"G1063\"* knowing|strong=\"G1921\"* it|strong=\"G1063\"*, to|strong=\"G3361\"* turn|strong=\"G3860\"* back|strong=\"G5290\"* from|strong=\"G1537\"* the|strong=\"G1537\"* holy commandment|strong=\"G1785\"* delivered|strong=\"G3860\"* to|strong=\"G3361\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"G2532\"* it|strong=\"G2532\"* has|strong=\"G2532\"* happened|strong=\"G4819\"* to|strong=\"G1519\"* them|strong=\"G3588\"* according|strong=\"G3588\"* to|strong=\"G1519\"* the|strong=\"G2532\"* true|strong=\"G3588\"* proverb|strong=\"G3942\"*, “The|strong=\"G2532\"* dog|strong=\"G2965\"* turns|strong=\"G1994\"* to|strong=\"G1519\"* his|strong=\"G1519\"* own|strong=\"G2398\"* vomit|strong=\"G1829\"* again|strong=\"G1994\"*,”+ 2:22 Proverbs 26:11* and|strong=\"G2532\"* “the|strong=\"G2532\"* sow|strong=\"G5300\"* that|strong=\"G3588\"* has|strong=\"G2532\"* washed|strong=\"G3068\"* to|strong=\"G1519\"* wallowing|strong=\"G2946\"* in|strong=\"G1519\"* the|strong=\"G2532\"* mire|strong=\"G1004\"*.”" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "This|strong=\"G3778\"* is|strong=\"G3588\"* now|strong=\"G2235\"*, beloved, the|strong=\"G1722\"* second|strong=\"G1208\"* letter|strong=\"G1992\"* that|strong=\"G3739\"* I|strong=\"G3739\"* have|strong=\"G5210\"* written|strong=\"G1125\"* to|strong=\"G1722\"* you|strong=\"G5210\"*; and|strong=\"G3588\"* in|strong=\"G1722\"* both|strong=\"G3588\"* of|strong=\"G1722\"* them|strong=\"G3588\"* I|strong=\"G3739\"* stir|strong=\"G1326\"* up|strong=\"G1326\"* your|strong=\"G1722\"* sincere|strong=\"G1506\"* mind|strong=\"G1271\"* by|strong=\"G1722\"* reminding you|strong=\"G5210\"*" + }, + { + "verseNum": 2, + "text": "that|strong=\"G3588\"* you|strong=\"G5210\"* should|strong=\"G3588\"* remember|strong=\"G3403\"* the|strong=\"G2532\"* words|strong=\"G4487\"* which|strong=\"G3588\"* were|strong=\"G3588\"* spoken before|strong=\"G4302\"* by|strong=\"G5259\"* the|strong=\"G2532\"* holy prophets|strong=\"G4396\"* and|strong=\"G2532\"* the|strong=\"G2532\"* commandment|strong=\"G1785\"* of|strong=\"G5259\"* us, the|strong=\"G2532\"* apostles of|strong=\"G5259\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* Savior|strong=\"G4990\"*," + }, + { + "verseNum": 3, + "text": "knowing|strong=\"G1097\"* this|strong=\"G3778\"* first|strong=\"G4413\"*, that|strong=\"G3754\"* in|strong=\"G1722\"* the|strong=\"G1722\"* last|strong=\"G2078\"* days|strong=\"G2250\"* mockers|strong=\"G1703\"* will|strong=\"G3778\"* come|strong=\"G2064\"*, walking|strong=\"G4198\"* after|strong=\"G2596\"* their|strong=\"G2596\"* own|strong=\"G2398\"* lusts|strong=\"G1939\"*" + }, + { + "verseNum": 4, + "text": "and|strong=\"G2532\"* saying|strong=\"G3004\"*, “Where|strong=\"G4226\"* is|strong=\"G1510\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* of|strong=\"G2532\"* his|strong=\"G3956\"* coming|strong=\"G3952\"*? For|strong=\"G1063\"*, from|strong=\"G2532\"* the|strong=\"G2532\"* day|strong=\"G3588\"* that|strong=\"G3739\"* the|strong=\"G2532\"* fathers|strong=\"G3962\"* fell|strong=\"G2837\"* asleep|strong=\"G2837\"*, all|strong=\"G3956\"* things|strong=\"G3956\"* continue|strong=\"G1265\"* as|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G1510\"* from|strong=\"G2532\"* the|strong=\"G2532\"* beginning of|strong=\"G2532\"* the|strong=\"G2532\"* creation|strong=\"G2937\"*.”" + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* they|strong=\"G2532\"* willfully forget that|strong=\"G3754\"* there|strong=\"G2532\"* were|strong=\"G1510\"* heavens|strong=\"G3772\"* from|strong=\"G1537\"* of|strong=\"G1537\"* old|strong=\"G2532\"*, and|strong=\"G2532\"* an|strong=\"G2532\"* earth|strong=\"G1093\"* formed|strong=\"G4921\"* out|strong=\"G1537\"* of|strong=\"G1537\"* water|strong=\"G5204\"* and|strong=\"G2532\"* amid water|strong=\"G5204\"* by|strong=\"G1223\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G1537\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 6, + "text": "by|strong=\"G1223\"* which|strong=\"G3739\"* means|strong=\"G1223\"* the|strong=\"G1223\"* world|strong=\"G2889\"* that|strong=\"G3739\"* existed then|strong=\"G5119\"*, being|strong=\"G3739\"* overflowed|strong=\"G2626\"* with|strong=\"G1223\"* water|strong=\"G5204\"*, perished." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* heavens|strong=\"G3772\"* that|strong=\"G3588\"* exist|strong=\"G1510\"* now|strong=\"G1161\"* and|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, by|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G2532\"* word|strong=\"G3056\"* have|strong=\"G2532\"* been|strong=\"G1510\"* stored|strong=\"G2343\"* up|strong=\"G2343\"* for|strong=\"G1519\"* fire|strong=\"G4442\"*, being|strong=\"G1510\"* reserved|strong=\"G5083\"* against|strong=\"G1519\"* the|strong=\"G2532\"* day|strong=\"G2250\"* of|strong=\"G3056\"* judgment|strong=\"G2920\"* and|strong=\"G2532\"* destruction of|strong=\"G3056\"* ungodly men|strong=\"G3588\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* don’t forget this|strong=\"G3778\"* one|strong=\"G1520\"* thing|strong=\"G1520\"*, beloved, that|strong=\"G3754\"* one|strong=\"G1520\"* day|strong=\"G2250\"* is|strong=\"G3778\"* with|strong=\"G3844\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* as|strong=\"G5613\"* a|strong=\"G5613\"* thousand|strong=\"G5507\"* years|strong=\"G2094\"*, and|strong=\"G2532\"* a|strong=\"G5613\"* thousand|strong=\"G5507\"* years|strong=\"G2094\"* as|strong=\"G5613\"* one|strong=\"G1520\"* day|strong=\"G2250\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"G1519\"* Lord|strong=\"G2962\"* is|strong=\"G3588\"* not|strong=\"G3756\"* slow|strong=\"G1019\"* concerning|strong=\"G1519\"* his|strong=\"G3956\"* promise|strong=\"G1860\"*, as|strong=\"G5613\"* some|strong=\"G5100\"* count|strong=\"G2233\"* slowness|strong=\"G1022\"*; but|strong=\"G3361\"* he|strong=\"G3588\"* is|strong=\"G3588\"* patient|strong=\"G3114\"* with|strong=\"G1223\"* us|strong=\"G1519\"*, not|strong=\"G3756\"* wishing|strong=\"G1014\"* that|strong=\"G3588\"* anyone|strong=\"G5100\"* should|strong=\"G5100\"* perish, but|strong=\"G3361\"* that|strong=\"G3588\"* all|strong=\"G3956\"* should|strong=\"G5100\"* come|strong=\"G5562\"* to|strong=\"G1519\"* repentance|strong=\"G3341\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G2250\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* will|strong=\"G2532\"* come|strong=\"G2240\"* as|strong=\"G5613\"* a|strong=\"G5613\"* thief|strong=\"G2812\"* in|strong=\"G1722\"* the|strong=\"G1722\"* night, in|strong=\"G1722\"* which|strong=\"G3739\"* the|strong=\"G1722\"* heavens|strong=\"G3772\"* will|strong=\"G2532\"* pass|strong=\"G3928\"* away|strong=\"G3928\"* with|strong=\"G1722\"* a|strong=\"G5613\"* great|strong=\"G2532\"* noise|strong=\"G4500\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* elements|strong=\"G4747\"* will|strong=\"G2532\"* be|strong=\"G2532\"* dissolved|strong=\"G3089\"* with|strong=\"G1722\"* fervent heat|strong=\"G2741\"*; and|strong=\"G2532\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* and|strong=\"G2532\"* the|strong=\"G1722\"* works|strong=\"G2041\"* that|strong=\"G3739\"* are|strong=\"G3588\"* in|strong=\"G1722\"* it|strong=\"G2532\"* will|strong=\"G2532\"* be|strong=\"G2532\"* burned|strong=\"G2618\"* up|strong=\"G2618\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"G3767\"*, since all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"* will|strong=\"G2532\"* be|strong=\"G2532\"* destroyed|strong=\"G3089\"* like this|strong=\"G3778\"*, what|strong=\"G4217\"* kind|strong=\"G3956\"* of|strong=\"G2532\"* people|strong=\"G3956\"* ought|strong=\"G1163\"* you|strong=\"G5210\"* to|strong=\"G2532\"* be|strong=\"G2532\"* in|strong=\"G1722\"* holy living and|strong=\"G2532\"* godliness|strong=\"G2150\"*," + }, + { + "verseNum": 12, + "text": "looking|strong=\"G4328\"* for|strong=\"G1223\"* and|strong=\"G2532\"* earnestly|strong=\"G2532\"* desiring the|strong=\"G2532\"* coming|strong=\"G3952\"* of|strong=\"G2250\"* the|strong=\"G2532\"* day|strong=\"G2250\"* of|strong=\"G2250\"* God|strong=\"G2316\"*, which|strong=\"G3739\"* will|strong=\"G2316\"* cause|strong=\"G1223\"* the|strong=\"G2532\"* burning|strong=\"G4448\"* heavens|strong=\"G3772\"* to|strong=\"G2532\"* be|strong=\"G2532\"* dissolved|strong=\"G3089\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* elements|strong=\"G4747\"* will|strong=\"G2316\"* melt|strong=\"G5080\"* with|strong=\"G1223\"* fervent heat|strong=\"G2741\"*?" + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"*, according|strong=\"G2596\"* to|strong=\"G2532\"* his|strong=\"G1722\"* promise|strong=\"G1862\"*, we|strong=\"G3739\"* look|strong=\"G4328\"* for|strong=\"G1161\"* new|strong=\"G2537\"* heavens|strong=\"G3772\"* and|strong=\"G2532\"* a|strong=\"G2532\"* new|strong=\"G2537\"* earth|strong=\"G1093\"*, in|strong=\"G1722\"* which|strong=\"G3739\"* righteousness|strong=\"G1343\"* dwells|strong=\"G2730\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"G1352\"*, beloved, seeing that|strong=\"G2532\"* you|strong=\"G1722\"* look|strong=\"G4328\"* for|strong=\"G1722\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, be|strong=\"G2532\"* diligent|strong=\"G4704\"* to|strong=\"G2532\"* be|strong=\"G2532\"* found|strong=\"G2147\"* in|strong=\"G1722\"* peace|strong=\"G1515\"*, without|strong=\"G2532\"* defect and|strong=\"G2532\"* blameless in|strong=\"G1722\"* his|strong=\"G1722\"* sight." + }, + { + "verseNum": 15, + "text": "Regard|strong=\"G2233\"* the|strong=\"G2532\"* patience|strong=\"G3115\"* of|strong=\"G2532\"* our|strong=\"G2532\"* Lord|strong=\"G2962\"* as|strong=\"G2531\"* salvation|strong=\"G4991\"*; even|strong=\"G2532\"* as|strong=\"G2531\"* our|strong=\"G2532\"* beloved brother Paul|strong=\"G3972\"* also|strong=\"G2532\"*, according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* wisdom|strong=\"G4678\"* given|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, wrote|strong=\"G1125\"* to|strong=\"G2532\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 16, + "text": "as|strong=\"G5613\"* also|strong=\"G2532\"* in|strong=\"G1722\"* all|strong=\"G3956\"* of|strong=\"G4012\"* his|strong=\"G3956\"* letters|strong=\"G1992\"*, speaking|strong=\"G2980\"* in|strong=\"G1722\"* them|strong=\"G3588\"* of|strong=\"G4012\"* these|strong=\"G3778\"* things|strong=\"G3956\"*. In|strong=\"G1722\"* those|strong=\"G3588\"*, there|strong=\"G2532\"* are|strong=\"G1510\"* some|strong=\"G5100\"* things|strong=\"G3956\"* that|strong=\"G3739\"* are|strong=\"G1510\"* hard|strong=\"G1425\"* to|strong=\"G4314\"* understand|strong=\"G1425\"*, which|strong=\"G3739\"* the|strong=\"G1722\"* ignorant and|strong=\"G2532\"* unsettled twist|strong=\"G4761\"*, as|strong=\"G5613\"* they|strong=\"G2532\"* also|strong=\"G2532\"* do|strong=\"G2532\"* to|strong=\"G4314\"* the|strong=\"G1722\"* other|strong=\"G3062\"* Scriptures|strong=\"G1124\"*, to|strong=\"G4314\"* their|strong=\"G2532\"* own|strong=\"G2398\"* destruction." + }, + { + "verseNum": 17, + "text": "You|strong=\"G5210\"* therefore|strong=\"G3767\"*, beloved, knowing|strong=\"G4267\"* these|strong=\"G3588\"* things|strong=\"G3588\"* beforehand|strong=\"G4267\"*, beware|strong=\"G5442\"*, lest|strong=\"G3361\"* being|strong=\"G2443\"* carried|strong=\"G4879\"* away|strong=\"G4879\"* with|strong=\"G3588\"* the|strong=\"G3588\"* error|strong=\"G4106\"* of|strong=\"G3588\"* the|strong=\"G3588\"* wicked|strong=\"G3588\"*, you|strong=\"G5210\"* fall|strong=\"G1601\"* from|strong=\"G3588\"* your|strong=\"G3588\"* own|strong=\"G2398\"* steadfastness|strong=\"G4740\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* grow in|strong=\"G1722\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* and|strong=\"G2532\"* knowledge|strong=\"G1108\"* of|strong=\"G2250\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* Savior|strong=\"G4990\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*. To|strong=\"G1519\"* him|strong=\"G3588\"* be|strong=\"G2532\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* both|strong=\"G2532\"* now|strong=\"G1161\"* and|strong=\"G2532\"* forever|strong=\"G1519\"*. Amen." + } + ] + } + ] + }, + { + "name": "1 John", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "That|strong=\"G3739\"* which|strong=\"G3739\"* was|strong=\"G1510\"* from|strong=\"G2532\"* the|strong=\"G2532\"* beginning, that|strong=\"G3739\"* which|strong=\"G3739\"* we|strong=\"G2249\"* have|strong=\"G2532\"* heard, that|strong=\"G3739\"* which|strong=\"G3739\"* we|strong=\"G2249\"* have|strong=\"G2532\"* seen|strong=\"G3708\"* with|strong=\"G2532\"* our|strong=\"G2532\"* eyes|strong=\"G3788\"*, that|strong=\"G3739\"* which|strong=\"G3739\"* we|strong=\"G2249\"* saw|strong=\"G3708\"*, and|strong=\"G2532\"* our|strong=\"G2532\"* hands|strong=\"G5495\"* touched|strong=\"G5584\"*, concerning|strong=\"G4012\"* the|strong=\"G2532\"* Word|strong=\"G3056\"* of|strong=\"G4012\"* life|strong=\"G2222\"*" + }, + { + "verseNum": 2, + "text": "(and|strong=\"G2532\"* the|strong=\"G2532\"* life|strong=\"G2222\"* was|strong=\"G1510\"* revealed|strong=\"G5319\"*, and|strong=\"G2532\"* we|strong=\"G2249\"* have|strong=\"G2532\"* seen|strong=\"G3708\"*, and|strong=\"G2532\"* testify|strong=\"G3140\"*, and|strong=\"G2532\"* declare to|strong=\"G4314\"* you|strong=\"G5210\"* the|strong=\"G2532\"* life|strong=\"G2222\"*, the|strong=\"G2532\"* eternal life|strong=\"G2222\"*, which|strong=\"G3588\"* was|strong=\"G1510\"* with|strong=\"G4314\"* the|strong=\"G2532\"* Father|strong=\"G3962\"*, and|strong=\"G2532\"* was|strong=\"G1510\"* revealed|strong=\"G5319\"* to|strong=\"G4314\"* us|strong=\"G2249\"*);" + }, + { + "verseNum": 3, + "text": "that|strong=\"G2443\"* which|strong=\"G3739\"* we|strong=\"G2249\"* have|strong=\"G2192\"* seen|strong=\"G3708\"* and|strong=\"G2532\"* heard we|strong=\"G2249\"* declare to|strong=\"G2443\"* you|strong=\"G5210\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* also|strong=\"G2532\"* may|strong=\"G2532\"* have|strong=\"G2192\"* fellowship|strong=\"G2842\"* with|strong=\"G3326\"* us|strong=\"G2249\"*. Yes|strong=\"G1161\"*, and|strong=\"G2532\"* our|strong=\"G2424\"* fellowship|strong=\"G2842\"* is|strong=\"G3588\"* with|strong=\"G3326\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* with|strong=\"G3326\"* his|strong=\"G3708\"* Son|strong=\"G5207\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*.+ 1:3 “Christ” means “Anointed One”.*" + }, + { + "verseNum": 4, + "text": "And|strong=\"G2532\"* we|strong=\"G2249\"* write|strong=\"G1125\"* these|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G2443\"* you|strong=\"G1510\"*, that|strong=\"G2443\"* our|strong=\"G2532\"* joy|strong=\"G5479\"* may|strong=\"G2532\"* be|strong=\"G1510\"* fulfilled|strong=\"G4137\"*." + }, + { + "verseNum": 5, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G1722\"* message which|strong=\"G3739\"* we|strong=\"G3739\"* have|strong=\"G2532\"* heard from|strong=\"G2532\"* him|strong=\"G3588\"* and|strong=\"G2532\"* announce to|strong=\"G2532\"* you|strong=\"G5210\"*, that|strong=\"G3754\"* God|strong=\"G2316\"* is|strong=\"G1510\"* light|strong=\"G5457\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* him|strong=\"G3588\"* is|strong=\"G1510\"* no|strong=\"G3756\"* darkness|strong=\"G4653\"* at|strong=\"G1722\"* all|strong=\"G2532\"*." + }, + { + "verseNum": 6, + "text": "If|strong=\"G1437\"* we|strong=\"G1437\"* say|strong=\"G3004\"* that|strong=\"G3754\"* we|strong=\"G1437\"* have|strong=\"G2192\"* fellowship|strong=\"G2842\"* with|strong=\"G3326\"* him|strong=\"G3588\"* and|strong=\"G2532\"* walk|strong=\"G4043\"* in|strong=\"G1722\"* the|strong=\"G1722\"* darkness|strong=\"G4655\"*, we|strong=\"G1437\"* lie|strong=\"G5574\"* and|strong=\"G2532\"* don’t|strong=\"G3588\"* tell|strong=\"G3004\"* the|strong=\"G1722\"* truth." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* if|strong=\"G1437\"* we|strong=\"G2249\"* walk|strong=\"G4043\"* in|strong=\"G1722\"* the|strong=\"G1722\"* light|strong=\"G5457\"* as|strong=\"G5613\"* he|strong=\"G2532\"* is|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* light|strong=\"G5457\"*, we|strong=\"G2249\"* have|strong=\"G2192\"* fellowship|strong=\"G2842\"* with|strong=\"G3326\"* one|strong=\"G3956\"* another|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* blood of|strong=\"G5207\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5613\"* his|strong=\"G3956\"* Son|strong=\"G5207\"*, cleanses|strong=\"G2511\"* us|strong=\"G2249\"* from|strong=\"G2532\"* all|strong=\"G3956\"* sin." + }, + { + "verseNum": 8, + "text": "If|strong=\"G1437\"* we|strong=\"G2249\"* say|strong=\"G3004\"* that|strong=\"G3754\"* we|strong=\"G2249\"* have|strong=\"G2192\"* no|strong=\"G3756\"* sin, we|strong=\"G2249\"* deceive|strong=\"G4105\"* ourselves|strong=\"G1438\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* truth is|strong=\"G1510\"* not|strong=\"G3756\"* in|strong=\"G1722\"* us|strong=\"G3004\"*." + }, + { + "verseNum": 9, + "text": "If|strong=\"G1437\"* we|strong=\"G2249\"* confess|strong=\"G3670\"* our|strong=\"G2532\"* sins, he|strong=\"G2532\"* is|strong=\"G1510\"* faithful|strong=\"G4103\"* and|strong=\"G2532\"* righteous|strong=\"G1342\"* to|strong=\"G2443\"* forgive us|strong=\"G2249\"* the|strong=\"G2532\"* sins and|strong=\"G2532\"* to|strong=\"G2443\"* cleanse|strong=\"G2511\"* us|strong=\"G2249\"* from|strong=\"G2532\"* all|strong=\"G3956\"* unrighteousness." + }, + { + "verseNum": 10, + "text": "If|strong=\"G1437\"* we|strong=\"G2249\"* say|strong=\"G3004\"* that|strong=\"G3754\"* we|strong=\"G2249\"* haven’t|strong=\"G3588\"* sinned, we|strong=\"G2249\"* make|strong=\"G4160\"* him|strong=\"G3588\"* a|strong=\"G2532\"* liar|strong=\"G5583\"*, and|strong=\"G2532\"* his|strong=\"G1722\"* word|strong=\"G3056\"* is|strong=\"G1510\"* not|strong=\"G3756\"* in|strong=\"G1722\"* us|strong=\"G3004\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"G1473\"* little|strong=\"G5040\"* children|strong=\"G5040\"*, I|strong=\"G1473\"* write|strong=\"G1125\"* these|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G4314\"* you|strong=\"G5210\"* so|strong=\"G2443\"* that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* not|strong=\"G3361\"* sin. If|strong=\"G1437\"* anyone|strong=\"G5100\"* sins, we|strong=\"G1437\"* have|strong=\"G2192\"* a|strong=\"G2192\"* Counselor+ 2:1 Greek παρακλητον: Counselor, Helper, Intercessor, Advocate, and Comforter.* with|strong=\"G4314\"* the|strong=\"G2532\"* Father|strong=\"G3962\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, the|strong=\"G2532\"* righteous|strong=\"G1342\"*." + }, + { + "verseNum": 2, + "text": "And|strong=\"G2532\"* he|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* atoning sacrifice+ 2:2 “atoning sacrifice” is from the Greek “ιλασμος”, an appeasing, propitiating, or the means of appeasement or propitiation—the sacrifice that turns away God’s wrath because of our sin. * for|strong=\"G4012\"* our|strong=\"G2251\"* sins, and|strong=\"G2532\"* not|strong=\"G3756\"* for|strong=\"G4012\"* ours|strong=\"G1473\"* only|strong=\"G3440\"*, but|strong=\"G1161\"* also|strong=\"G2532\"* for|strong=\"G4012\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 3, + "text": "This|strong=\"G3778\"* is|strong=\"G3588\"* how|strong=\"G3754\"* we|strong=\"G1437\"* know|strong=\"G1097\"* that|strong=\"G3754\"* we|strong=\"G1437\"* know|strong=\"G1097\"* him|strong=\"G3588\"*: if|strong=\"G1437\"* we|strong=\"G1437\"* keep|strong=\"G5083\"* his|strong=\"G1722\"* commandments|strong=\"G1785\"*." + }, + { + "verseNum": 4, + "text": "One|strong=\"G3588\"* who|strong=\"G3588\"* says|strong=\"G3004\"*, “I|strong=\"G2532\"* know|strong=\"G1097\"* him|strong=\"G3588\"*,” and|strong=\"G2532\"* doesn’t|strong=\"G3588\"* keep|strong=\"G5083\"* his|strong=\"G1722\"* commandments|strong=\"G1785\"*, is|strong=\"G1510\"* a|strong=\"G2532\"* liar|strong=\"G5583\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* truth isn’t|strong=\"G3588\"* in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* God|strong=\"G2316\"*’s love has|strong=\"G2316\"* most|strong=\"G2316\"* certainly been|strong=\"G1510\"* perfected|strong=\"G5048\"* in|strong=\"G1722\"* whoever|strong=\"G3739\"* keeps|strong=\"G5083\"* his|strong=\"G1722\"* word|strong=\"G3056\"*. This|strong=\"G3778\"* is|strong=\"G1510\"* how|strong=\"G3754\"* we|strong=\"G3739\"* know|strong=\"G1097\"* that|strong=\"G3754\"* we|strong=\"G3739\"* are|strong=\"G1510\"* in|strong=\"G1722\"* him|strong=\"G3588\"*:" + }, + { + "verseNum": 6, + "text": "he|strong=\"G2532\"* who|strong=\"G3588\"* says|strong=\"G3004\"* he|strong=\"G2532\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"* ought|strong=\"G3784\"* himself|strong=\"G1565\"* also|strong=\"G2532\"* to|strong=\"G2532\"* walk|strong=\"G4043\"* just|strong=\"G2531\"* like|strong=\"G3779\"* he|strong=\"G2532\"* walked|strong=\"G4043\"*." + }, + { + "verseNum": 7, + "text": "Brothers, I|strong=\"G3739\"* write|strong=\"G1125\"* no|strong=\"G3756\"* new|strong=\"G2537\"* commandment|strong=\"G1785\"* to|strong=\"G3756\"* you|strong=\"G5210\"*, but|strong=\"G3588\"* an|strong=\"G2192\"* old|strong=\"G3820\"* commandment|strong=\"G1785\"* which|strong=\"G3739\"* you|strong=\"G5210\"* had|strong=\"G2192\"* from|strong=\"G3756\"* the|strong=\"G3588\"* beginning. The|strong=\"G3588\"* old|strong=\"G3820\"* commandment|strong=\"G1785\"* is|strong=\"G1510\"* the|strong=\"G3588\"* word|strong=\"G3056\"* which|strong=\"G3739\"* you|strong=\"G5210\"* heard from|strong=\"G3756\"* the|strong=\"G3588\"* beginning." + }, + { + "verseNum": 8, + "text": "Again|strong=\"G3825\"*, I|strong=\"G3739\"* write|strong=\"G1125\"* a|strong=\"G2532\"* new|strong=\"G2537\"* commandment|strong=\"G1785\"* to|strong=\"G2532\"* you|strong=\"G5210\"*, which|strong=\"G3739\"* is|strong=\"G1510\"* true|strong=\"G3588\"* in|strong=\"G1722\"* him|strong=\"G3588\"* and|strong=\"G2532\"* in|strong=\"G1722\"* you|strong=\"G5210\"*, because|strong=\"G3754\"* the|strong=\"G1722\"* darkness|strong=\"G4653\"* is|strong=\"G1510\"* passing|strong=\"G3855\"* away|strong=\"G3855\"* and|strong=\"G2532\"* the|strong=\"G1722\"* true|strong=\"G3588\"* light|strong=\"G5457\"* already|strong=\"G2235\"* shines|strong=\"G5316\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* says|strong=\"G3004\"* he|strong=\"G2532\"* is|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* light|strong=\"G5457\"* and|strong=\"G2532\"* hates|strong=\"G3404\"* his|strong=\"G1722\"* brother is|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* darkness|strong=\"G4653\"* even|strong=\"G2532\"* until|strong=\"G2193\"* now|strong=\"G2532\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* loves his|strong=\"G1722\"* brother remains|strong=\"G3306\"* in|strong=\"G1722\"* the|strong=\"G1722\"* light|strong=\"G5457\"*, and|strong=\"G2532\"* there|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3756\"* occasion for|strong=\"G1722\"* stumbling|strong=\"G4625\"* in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* who|strong=\"G3588\"* hates|strong=\"G3404\"* his|strong=\"G1722\"* brother is|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* darkness|strong=\"G4653\"*, and|strong=\"G2532\"* walks|strong=\"G4043\"* in|strong=\"G1722\"* the|strong=\"G1722\"* darkness|strong=\"G4653\"*, and|strong=\"G2532\"* doesn’t|strong=\"G3588\"* know|strong=\"G1492\"* where|strong=\"G4226\"* he|strong=\"G2532\"* is|strong=\"G1510\"* going|strong=\"G5217\"*, because|strong=\"G3754\"* the|strong=\"G1722\"* darkness|strong=\"G4653\"* has|strong=\"G3748\"* blinded|strong=\"G5186\"* his|strong=\"G1722\"* eyes|strong=\"G3788\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"G3754\"* write|strong=\"G1125\"* to|strong=\"G3588\"* you|strong=\"G5210\"*, little|strong=\"G5040\"* children|strong=\"G5040\"*, because|strong=\"G3754\"* your|strong=\"G1223\"* sins are|strong=\"G3588\"* forgiven you|strong=\"G5210\"* for|strong=\"G3754\"* his|strong=\"G1223\"* name|strong=\"G3686\"*’s sake|strong=\"G1223\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"G3754\"* write|strong=\"G1125\"* to|strong=\"G3962\"* you|strong=\"G5210\"*, fathers|strong=\"G3962\"*, because|strong=\"G3754\"* you|strong=\"G5210\"* know|strong=\"G1097\"* him|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G3588\"* from|strong=\"G3588\"* the|strong=\"G3588\"* beginning." + }, + { + "verseNum": 14, + "text": "I|strong=\"G2532\"* have|strong=\"G2532\"* written|strong=\"G1125\"* to|strong=\"G2532\"* you|strong=\"G5210\"*, fathers|strong=\"G3962\"*, because|strong=\"G3754\"* you|strong=\"G5210\"* know|strong=\"G1097\"* him|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G1510\"* from|strong=\"G2532\"* the|strong=\"G1722\"* beginning." + }, + { + "verseNum": 15, + "text": "Don’t|strong=\"G3588\"* love the|strong=\"G1722\"* world|strong=\"G2889\"* or|strong=\"G3366\"* the|strong=\"G1722\"* things|strong=\"G3588\"* that|strong=\"G3588\"* are|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*. If|strong=\"G1437\"* anyone|strong=\"G5100\"* loves the|strong=\"G1722\"* world|strong=\"G2889\"*, the|strong=\"G1722\"* Father|strong=\"G3962\"*’s love isn’t|strong=\"G3588\"* in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G3754\"* all|strong=\"G3956\"* that|strong=\"G3754\"* is|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*—the|strong=\"G1722\"* lust|strong=\"G1939\"* of|strong=\"G1537\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, the|strong=\"G1722\"* lust|strong=\"G1939\"* of|strong=\"G1537\"* the|strong=\"G1722\"* eyes|strong=\"G3788\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* pride of|strong=\"G1537\"* life|strong=\"G4561\"*—isn’t|strong=\"G3588\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*’s, but|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G1722\"* world|strong=\"G2889\"*’s." + }, + { + "verseNum": 17, + "text": "The|strong=\"G2532\"* world|strong=\"G2889\"* is|strong=\"G3588\"* passing|strong=\"G3855\"* away|strong=\"G3855\"* with|strong=\"G2532\"* its lusts|strong=\"G1939\"*, but|strong=\"G1161\"* he|strong=\"G2532\"* who|strong=\"G3588\"* does|strong=\"G4160\"* God|strong=\"G2316\"*’s will|strong=\"G2307\"* remains|strong=\"G3306\"* forever|strong=\"G1519\"*." + }, + { + "verseNum": 18, + "text": "Little children|strong=\"G3813\"*, these|strong=\"G3748\"* are|strong=\"G1510\"* the|strong=\"G2532\"* end|strong=\"G2078\"* times, and|strong=\"G2532\"* as|strong=\"G2531\"* you|strong=\"G3754\"* heard|strong=\"G1097\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Antichrist is|strong=\"G1510\"* coming|strong=\"G2064\"*, even|strong=\"G2532\"* now|strong=\"G3568\"* many|strong=\"G4183\"* antichrists have|strong=\"G2532\"* arisen. By|strong=\"G2532\"* this|strong=\"G3748\"* we|strong=\"G3754\"* know|strong=\"G1097\"* that|strong=\"G3754\"* it|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* final|strong=\"G2078\"* hour|strong=\"G5610\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"G3754\"* went|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G1537\"* us|strong=\"G2249\"*, but|strong=\"G1487\"* they|strong=\"G3754\"* didn’t belong|strong=\"G1510\"* to|strong=\"G2443\"* us|strong=\"G2249\"*; for|strong=\"G1063\"* if|strong=\"G1487\"* they|strong=\"G3754\"* had|strong=\"G1510\"* belonged|strong=\"G1510\"* to|strong=\"G2443\"* us|strong=\"G2249\"*, they|strong=\"G3754\"* would|strong=\"G1510\"* have|strong=\"G1473\"* continued|strong=\"G3306\"* with|strong=\"G3326\"* us|strong=\"G2249\"*. But|strong=\"G1487\"* they|strong=\"G3754\"* left|strong=\"G1831\"*, that|strong=\"G3754\"* they|strong=\"G3754\"* might|strong=\"G3956\"* be|strong=\"G1510\"* revealed|strong=\"G5319\"* that|strong=\"G3754\"* none|strong=\"G3756\"* of|strong=\"G1537\"* them|strong=\"G3956\"* belong|strong=\"G1510\"* to|strong=\"G2443\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"G5210\"* have|strong=\"G2192\"* an|strong=\"G2192\"* anointing|strong=\"G5545\"* from|strong=\"G2532\"* the|strong=\"G2532\"* Holy One|strong=\"G3956\"*, and|strong=\"G2532\"* you|strong=\"G5210\"* all|strong=\"G3956\"* have|strong=\"G2192\"* knowledge|strong=\"G1492\"*.+ 2:20 Or, “know what is true”, or, “know all things”*" + }, + { + "verseNum": 21, + "text": "I|strong=\"G2532\"* have|strong=\"G2532\"* not|strong=\"G3756\"* written|strong=\"G1125\"* to|strong=\"G2532\"* you|strong=\"G5210\"* because|strong=\"G3754\"* you|strong=\"G5210\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* the|strong=\"G2532\"* truth, but|strong=\"G2532\"* because|strong=\"G3754\"* you|strong=\"G5210\"* know|strong=\"G1492\"* it|strong=\"G2532\"*, and|strong=\"G2532\"* because|strong=\"G3754\"* no|strong=\"G3756\"* lie|strong=\"G5579\"* is|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G2532\"* truth." + }, + { + "verseNum": 22, + "text": "Who|strong=\"G5101\"* is|strong=\"G1510\"* the|strong=\"G2532\"* liar|strong=\"G5583\"* but|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G5101\"* denies that|strong=\"G3754\"* Jesus|strong=\"G2424\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*? This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Antichrist, he|strong=\"G2532\"* who|strong=\"G5101\"* denies the|strong=\"G2532\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Son|strong=\"G5207\"*." + }, + { + "verseNum": 23, + "text": "Whoever|strong=\"G3956\"* denies the|strong=\"G2532\"* Son|strong=\"G5207\"* doesn’t|strong=\"G3588\"* have|strong=\"G2192\"* the|strong=\"G2532\"* Father|strong=\"G3962\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* confesses|strong=\"G3670\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* has|strong=\"G2192\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* also|strong=\"G2532\"*.+ 2:23 MT omits: He who confesses the Son has the Father also.*" + }, + { + "verseNum": 24, + "text": "Therefore|strong=\"G2532\"*, as|strong=\"G1722\"* for|strong=\"G1722\"* you|strong=\"G5210\"*, let|strong=\"G3306\"* that|strong=\"G3739\"* remain|strong=\"G3306\"* in|strong=\"G1722\"* you|strong=\"G5210\"* which|strong=\"G3739\"* you|strong=\"G5210\"* heard from|strong=\"G2532\"* the|strong=\"G1722\"* beginning. If|strong=\"G1437\"* that|strong=\"G3739\"* which|strong=\"G3739\"* you|strong=\"G5210\"* heard from|strong=\"G2532\"* the|strong=\"G1722\"* beginning remains|strong=\"G3306\"* in|strong=\"G1722\"* you|strong=\"G5210\"*, you|strong=\"G5210\"* also|strong=\"G2532\"* will|strong=\"G2532\"* remain|strong=\"G3306\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Son|strong=\"G5207\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*." + }, + { + "verseNum": 25, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* which|strong=\"G3739\"* he|strong=\"G2532\"* promised|strong=\"G1861\"* us|strong=\"G2249\"*, the|strong=\"G2532\"* eternal life|strong=\"G2222\"*." + }, + { + "verseNum": 26, + "text": "These|strong=\"G3778\"* things|strong=\"G3778\"* I|strong=\"G3778\"* have|strong=\"G5210\"* written|strong=\"G1125\"* to|strong=\"G3778\"* you|strong=\"G5210\"* concerning|strong=\"G4012\"* those|strong=\"G3588\"* who|strong=\"G3588\"* would lead you|strong=\"G5210\"* astray|strong=\"G4105\"*." + }, + { + "verseNum": 27, + "text": "As|strong=\"G5613\"* for|strong=\"G4012\"* you|strong=\"G5210\"*, the|strong=\"G1722\"* anointing|strong=\"G5545\"* which|strong=\"G3739\"* you|strong=\"G5210\"* received|strong=\"G2983\"* from|strong=\"G2532\"* him|strong=\"G3588\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* you|strong=\"G5210\"* don’t|strong=\"G3588\"* need|strong=\"G5532\"* for|strong=\"G4012\"* anyone|strong=\"G5100\"* to|strong=\"G2443\"* teach|strong=\"G1321\"* you|strong=\"G5210\"*. But|strong=\"G2532\"* as|strong=\"G5613\"* his|strong=\"G3956\"* anointing|strong=\"G5545\"* teaches|strong=\"G1321\"* you|strong=\"G5210\"* concerning|strong=\"G4012\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G2532\"* is|strong=\"G1510\"* true|strong=\"G3588\"*, and|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3756\"* lie|strong=\"G5579\"*, and|strong=\"G2532\"* even|strong=\"G2532\"* as|strong=\"G5613\"* it|strong=\"G2532\"* taught|strong=\"G1321\"* you|strong=\"G5210\"*, you|strong=\"G5210\"* will|strong=\"G1510\"* remain|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 28, + "text": "Now|strong=\"G3568\"*, little|strong=\"G5040\"* children|strong=\"G5040\"*, remain|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* when|strong=\"G2532\"* he|strong=\"G2532\"* appears|strong=\"G5319\"*, we|strong=\"G1437\"* may|strong=\"G2532\"* have|strong=\"G2192\"* boldness|strong=\"G3954\"* and|strong=\"G2532\"* not|strong=\"G3361\"* be|strong=\"G2532\"* ashamed before|strong=\"G1722\"* him|strong=\"G3588\"* at|strong=\"G1722\"* his|strong=\"G1722\"* coming|strong=\"G3952\"*." + }, + { + "verseNum": 29, + "text": "If|strong=\"G1437\"* you|strong=\"G1437\"* know|strong=\"G1492\"* that|strong=\"G3754\"* he|strong=\"G2532\"* is|strong=\"G1510\"* righteous|strong=\"G1342\"*, you|strong=\"G1437\"* know|strong=\"G1492\"* that|strong=\"G3754\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* practices|strong=\"G4160\"* righteousness|strong=\"G1343\"* has|strong=\"G3748\"* been|strong=\"G1510\"* born|strong=\"G1080\"* of|strong=\"G1537\"* him|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "See|strong=\"G3708\"* how|strong=\"G3754\"* great|strong=\"G2532\"* a|strong=\"G2532\"* love the|strong=\"G2532\"* Father|strong=\"G3962\"* has|strong=\"G2316\"* given|strong=\"G1325\"* to|strong=\"G2443\"* us|strong=\"G1325\"*, that|strong=\"G3754\"* we|strong=\"G2249\"* should|strong=\"G2316\"* be|strong=\"G1510\"* called|strong=\"G2564\"* children|strong=\"G5043\"* of|strong=\"G1223\"* God|strong=\"G2316\"*! For|strong=\"G3754\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* the|strong=\"G2532\"* world|strong=\"G2889\"* doesn’t|strong=\"G3588\"* know|strong=\"G1097\"* us|strong=\"G1325\"*, because|strong=\"G3754\"* it|strong=\"G2532\"* didn’t|strong=\"G3588\"* know|strong=\"G1097\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "Beloved, now|strong=\"G3568\"* we|strong=\"G1437\"* are|strong=\"G1510\"* children|strong=\"G5043\"* of|strong=\"G2316\"* God|strong=\"G2316\"*. It|strong=\"G2532\"* is|strong=\"G1510\"* not|strong=\"G1510\"* yet|strong=\"G2532\"* revealed|strong=\"G5319\"* what|strong=\"G5101\"* we|strong=\"G1437\"* will|strong=\"G2316\"* be|strong=\"G1510\"*; but|strong=\"G2532\"* we|strong=\"G1437\"* know|strong=\"G1492\"* that|strong=\"G3754\"* when|strong=\"G2532\"* he|strong=\"G2532\"* is|strong=\"G1510\"* revealed|strong=\"G5319\"*, we|strong=\"G1437\"* will|strong=\"G2316\"* be|strong=\"G1510\"* like|strong=\"G3664\"* him|strong=\"G3708\"*, for|strong=\"G3754\"* we|strong=\"G1437\"* will|strong=\"G2316\"* see|strong=\"G3708\"* him|strong=\"G3708\"* just|strong=\"G2531\"* as|strong=\"G2531\"* he|strong=\"G2532\"* is|strong=\"G1510\"*." + }, + { + "verseNum": 3, + "text": "Everyone|strong=\"G3956\"* who|strong=\"G3588\"* has|strong=\"G2192\"* this|strong=\"G3778\"* hope|strong=\"G1680\"* set|strong=\"G2532\"* on|strong=\"G1909\"* him|strong=\"G3588\"* purifies himself|strong=\"G1438\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* he|strong=\"G2532\"* is|strong=\"G1510\"* pure." + }, + { + "verseNum": 4, + "text": "Everyone|strong=\"G3956\"* who|strong=\"G3588\"* sins also|strong=\"G2532\"* commits|strong=\"G4160\"* lawlessness. Sin is|strong=\"G1510\"* lawlessness." + }, + { + "verseNum": 5, + "text": "You|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* revealed|strong=\"G5319\"* to|strong=\"G2443\"* take|strong=\"G2532\"* away our|strong=\"G2532\"* sins, and|strong=\"G2532\"* no|strong=\"G3756\"* sin is|strong=\"G1510\"* in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 6, + "text": "Whoever|strong=\"G3956\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"* doesn’t|strong=\"G3588\"* sin. Whoever|strong=\"G3956\"* sins hasn’t|strong=\"G3588\"* seen|strong=\"G3708\"* him|strong=\"G3588\"* and|strong=\"G3708\"* doesn’t|strong=\"G3588\"* know|strong=\"G1097\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 7, + "text": "Little|strong=\"G5040\"* children|strong=\"G5040\"*, let|strong=\"G1510\"* no|strong=\"G3367\"* one|strong=\"G3367\"* lead|strong=\"G1510\"* you|strong=\"G5210\"* astray|strong=\"G4105\"*. He|strong=\"G3588\"* who|strong=\"G3588\"* does|strong=\"G4160\"* righteousness|strong=\"G1343\"* is|strong=\"G1510\"* righteous|strong=\"G1342\"*, even|strong=\"G2531\"* as|strong=\"G2531\"* he|strong=\"G3588\"* is|strong=\"G1510\"* righteous|strong=\"G1342\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"G3754\"* who|strong=\"G3588\"* sins is|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G1519\"* devil|strong=\"G1228\"*, for|strong=\"G3754\"* the|strong=\"G1519\"* devil|strong=\"G1228\"* has|strong=\"G2316\"* been|strong=\"G1510\"* sinning from|strong=\"G1537\"* the|strong=\"G1519\"* beginning. To|strong=\"G1519\"* this|strong=\"G3778\"* end|strong=\"G1519\"* the|strong=\"G1519\"* Son|strong=\"G5207\"* of|strong=\"G1537\"* God|strong=\"G2316\"* was|strong=\"G1510\"* revealed|strong=\"G5319\"*: that|strong=\"G3754\"* he|strong=\"G3754\"* might|strong=\"G2316\"* destroy|strong=\"G3089\"* the|strong=\"G1519\"* works|strong=\"G2041\"* of|strong=\"G1537\"* the|strong=\"G1519\"* devil|strong=\"G1228\"*." + }, + { + "verseNum": 9, + "text": "Whoever|strong=\"G3748\"* is|strong=\"G3588\"* born|strong=\"G1080\"* of|strong=\"G1537\"* God|strong=\"G2316\"* doesn’t|strong=\"G3588\"* commit|strong=\"G4160\"* sin, because|strong=\"G3754\"* his|strong=\"G3956\"* seed|strong=\"G4690\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* sin, because|strong=\"G3754\"* he|strong=\"G2532\"* is|strong=\"G3588\"* born|strong=\"G1080\"* of|strong=\"G1537\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"G1722\"* this|strong=\"G3778\"* the|strong=\"G1722\"* children|strong=\"G5043\"* of|strong=\"G1537\"* God|strong=\"G2316\"* are|strong=\"G1510\"* revealed|strong=\"G5318\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* children|strong=\"G5043\"* of|strong=\"G1537\"* the|strong=\"G1722\"* devil|strong=\"G1228\"*. Whoever|strong=\"G3956\"* doesn’t|strong=\"G3588\"* do|strong=\"G4160\"* righteousness|strong=\"G1343\"* is|strong=\"G1510\"* not|strong=\"G3756\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, neither|strong=\"G3756\"* is|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* love his|strong=\"G3956\"* brother." + }, + { + "verseNum": 11, + "text": "For|strong=\"G3754\"* this|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G3588\"* message which|strong=\"G3739\"* you|strong=\"G3739\"* heard from|strong=\"G3588\"* the|strong=\"G3588\"* beginning, that|strong=\"G3754\"* we|strong=\"G3739\"* should|strong=\"G3588\"* love one|strong=\"G3739\"* another|strong=\"G3739\"*—" + }, + { + "verseNum": 12, + "text": "unlike Cain|strong=\"G2535\"*, who|strong=\"G5101\"* was|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G2532\"* evil|strong=\"G4190\"* one|strong=\"G3588\"* and|strong=\"G2532\"* killed his|strong=\"G2532\"* brother. Why|strong=\"G5101\"* did|strong=\"G2532\"* he|strong=\"G2532\"* kill|strong=\"G4969\"* him|strong=\"G3588\"*? Because|strong=\"G3754\"* his|strong=\"G2532\"* deeds|strong=\"G2041\"* were|strong=\"G1510\"* evil|strong=\"G4190\"*, and|strong=\"G2532\"* his|strong=\"G2532\"* brother’s righteous|strong=\"G1342\"*." + }, + { + "verseNum": 13, + "text": "Don’t|strong=\"G3588\"* be|strong=\"G2532\"* surprised|strong=\"G2296\"*, my|strong=\"G3588\"* brothers, if|strong=\"G1487\"* the|strong=\"G2532\"* world|strong=\"G2889\"* hates|strong=\"G3404\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 14, + "text": "We|strong=\"G2249\"* know|strong=\"G1492\"* that|strong=\"G3754\"* we|strong=\"G2249\"* have|strong=\"G1473\"* passed|strong=\"G3327\"* out|strong=\"G1537\"* of|strong=\"G1537\"* death|strong=\"G2288\"* into|strong=\"G1519\"* life|strong=\"G2222\"*, because|strong=\"G3754\"* we|strong=\"G2249\"* love the|strong=\"G1722\"* brothers. He|strong=\"G3754\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* love his|strong=\"G1519\"* brother remains|strong=\"G3306\"* in|strong=\"G1722\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 15, + "text": "Whoever|strong=\"G3748\"* hates|strong=\"G3404\"* his|strong=\"G1438\"* brother is|strong=\"G1510\"* a|strong=\"G2192\"* murderer, and|strong=\"G2532\"* you|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* no|strong=\"G3756\"* murderer has|strong=\"G2192\"* eternal life|strong=\"G2222\"* remaining|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "By|strong=\"G1722\"* this|strong=\"G3778\"* we|strong=\"G2249\"* know|strong=\"G1097\"* love, because|strong=\"G3754\"* he|strong=\"G2532\"* laid|strong=\"G5087\"* down|strong=\"G5087\"* his|strong=\"G1722\"* life|strong=\"G5590\"* for|strong=\"G3754\"* us|strong=\"G2249\"*. And|strong=\"G2532\"* we|strong=\"G2249\"* ought|strong=\"G3784\"* to|strong=\"G2532\"* lay|strong=\"G5087\"* down|strong=\"G5087\"* our|strong=\"G2532\"* lives|strong=\"G5590\"* for|strong=\"G3754\"* the|strong=\"G1722\"* brothers." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* whoever|strong=\"G3739\"* has|strong=\"G2192\"* the|strong=\"G1722\"* world|strong=\"G2889\"*’s|strong=\"G2192\"* goods and|strong=\"G2532\"* sees|strong=\"G2334\"* his|strong=\"G1722\"* brother in|strong=\"G1722\"* need|strong=\"G5532\"*, then|strong=\"G2532\"* closes|strong=\"G2808\"* his|strong=\"G1722\"* heart|strong=\"G4698\"* of|strong=\"G2316\"* compassion|strong=\"G4698\"* against|strong=\"G1722\"* him|strong=\"G3588\"*, how|strong=\"G4459\"* does|strong=\"G2192\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* love remain|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"*?" + }, + { + "verseNum": 18, + "text": "My|strong=\"G1722\"* little|strong=\"G5040\"* children|strong=\"G5040\"*, let|strong=\"G2532\"*’s not|strong=\"G3361\"* love in|strong=\"G1722\"* word|strong=\"G3056\"* only|strong=\"G2532\"*, or|strong=\"G2532\"* with|strong=\"G1722\"* the|strong=\"G1722\"* tongue|strong=\"G1100\"* only|strong=\"G2532\"*, but|strong=\"G2532\"* in|strong=\"G1722\"* deed|strong=\"G2041\"* and|strong=\"G2532\"* truth." + }, + { + "verseNum": 19, + "text": "And|strong=\"G2532\"* by|strong=\"G1722\"* this|strong=\"G3778\"* we|strong=\"G2249\"* know|strong=\"G1097\"* that|strong=\"G3754\"* we|strong=\"G2249\"* are|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G1722\"* truth and|strong=\"G2532\"* persuade|strong=\"G3982\"* our|strong=\"G2532\"* hearts|strong=\"G2588\"* before|strong=\"G1715\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 20, + "text": "because|strong=\"G3754\"* if|strong=\"G1437\"* our|strong=\"G2316\"* heart|strong=\"G2588\"* condemns|strong=\"G2607\"* us|strong=\"G2249\"*, God|strong=\"G2316\"* is|strong=\"G1510\"* greater|strong=\"G3173\"* than|strong=\"G3173\"* our|strong=\"G2316\"* heart|strong=\"G2588\"*, and|strong=\"G2532\"* knows|strong=\"G1097\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 21, + "text": "Beloved, if|strong=\"G1437\"* our|strong=\"G2316\"* hearts|strong=\"G2588\"* don’t|strong=\"G3588\"* condemn|strong=\"G2607\"* us|strong=\"G2249\"*, we|strong=\"G2249\"* have|strong=\"G2192\"* boldness|strong=\"G3954\"* toward|strong=\"G4314\"* God|strong=\"G2316\"*;" + }, + { + "verseNum": 22, + "text": "so|strong=\"G2532\"* whatever|strong=\"G3739\"* we|strong=\"G3739\"* ask, we|strong=\"G3739\"* receive|strong=\"G2983\"* from|strong=\"G2532\"* him|strong=\"G3588\"*, because|strong=\"G3754\"* we|strong=\"G3739\"* keep|strong=\"G5083\"* his|strong=\"G4160\"* commandments|strong=\"G1785\"* and|strong=\"G2532\"* do|strong=\"G4160\"* the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G3754\"* are|strong=\"G3588\"* pleasing in|strong=\"G2532\"* his|strong=\"G4160\"* sight|strong=\"G1799\"*." + }, + { + "verseNum": 23, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* his|strong=\"G2532\"* commandment|strong=\"G1785\"*, that|strong=\"G2443\"* we|strong=\"G2249\"* should|strong=\"G3588\"* believe|strong=\"G4100\"* in|strong=\"G2532\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G5207\"* his|strong=\"G2532\"* Son|strong=\"G5207\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* love one|strong=\"G3588\"* another|strong=\"G3588\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* he|strong=\"G2532\"* commanded|strong=\"G1785\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"G2532\"* who|strong=\"G3739\"* keeps|strong=\"G5083\"* his|strong=\"G1722\"* commandments|strong=\"G1785\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* in|strong=\"G1722\"* him|strong=\"G3588\"*. By|strong=\"G1722\"* this|strong=\"G3778\"* we|strong=\"G2249\"* know|strong=\"G1097\"* that|strong=\"G3754\"* he|strong=\"G2532\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* us|strong=\"G1325\"*, by|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* which|strong=\"G3739\"* he|strong=\"G2532\"* gave|strong=\"G1325\"* us|strong=\"G1325\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Beloved, don’t|strong=\"G3588\"* believe|strong=\"G4100\"* every|strong=\"G3956\"* spirit|strong=\"G4151\"*, but|strong=\"G1487\"* test|strong=\"G1381\"* the|strong=\"G1519\"* spirits|strong=\"G4151\"*, whether|strong=\"G1487\"* they|strong=\"G3588\"* are|strong=\"G1510\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, because|strong=\"G3754\"* many|strong=\"G4183\"* false|strong=\"G5578\"* prophets|strong=\"G5578\"* have|strong=\"G3748\"* gone|strong=\"G1831\"* out|strong=\"G1831\"* into|strong=\"G1519\"* the|strong=\"G1519\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 2, + "text": "By|strong=\"G1722\"* this|strong=\"G3778\"* you|strong=\"G3739\"* know|strong=\"G1097\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G1537\"* God|strong=\"G2316\"*: every|strong=\"G3956\"* spirit|strong=\"G4151\"* who|strong=\"G3739\"* confesses|strong=\"G3670\"* that|strong=\"G3739\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* has|strong=\"G2316\"* come|strong=\"G2064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"* is|strong=\"G1510\"* of|strong=\"G1537\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"G2532\"* every|strong=\"G3956\"* spirit|strong=\"G4151\"* who|strong=\"G3739\"* doesn’t|strong=\"G3588\"* confess|strong=\"G3670\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* Christ has|strong=\"G2316\"* come|strong=\"G2064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh is|strong=\"G1510\"* not|strong=\"G3756\"* of|strong=\"G1537\"* God|strong=\"G2316\"*; and|strong=\"G2532\"* this|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G1722\"* spirit|strong=\"G4151\"* of|strong=\"G1537\"* the|strong=\"G1722\"* Antichrist, of|strong=\"G1537\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* have|strong=\"G2532\"* heard that|strong=\"G3754\"* it|strong=\"G2532\"* comes|strong=\"G2064\"*. Now|strong=\"G3568\"* it|strong=\"G2532\"* is|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"* already|strong=\"G2235\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"G5210\"* are|strong=\"G1510\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, little|strong=\"G5040\"* children|strong=\"G5040\"*, and|strong=\"G2532\"* have|strong=\"G2532\"* overcome|strong=\"G3528\"* them|strong=\"G3588\"*, because|strong=\"G3754\"* greater|strong=\"G3173\"* is|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G1510\"* in|strong=\"G1722\"* you|strong=\"G5210\"* than|strong=\"G2228\"* he|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"G2532\"* are|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G2532\"* world|strong=\"G2889\"*. Therefore|strong=\"G1223\"* they|strong=\"G2532\"* speak|strong=\"G2980\"* of|strong=\"G1537\"* the|strong=\"G2532\"* world|strong=\"G2889\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* world|strong=\"G2889\"* hears them|strong=\"G3588\"*." + }, + { + "verseNum": 6, + "text": "We|strong=\"G2249\"* are|strong=\"G1510\"* of|strong=\"G1537\"* God|strong=\"G2316\"*. He|strong=\"G2532\"* who|strong=\"G3739\"* knows|strong=\"G1097\"* God|strong=\"G2316\"* listens to|strong=\"G2532\"* us|strong=\"G2249\"*. He|strong=\"G2532\"* who|strong=\"G3739\"* is|strong=\"G1510\"* not|strong=\"G3756\"* of|strong=\"G1537\"* God|strong=\"G2316\"* doesn’t|strong=\"G3588\"* listen to|strong=\"G2532\"* us|strong=\"G2249\"*. By|strong=\"G1537\"* this|strong=\"G3778\"* we|strong=\"G2249\"* know|strong=\"G1097\"* the|strong=\"G2532\"* spirit|strong=\"G4151\"* of|strong=\"G1537\"* truth, and|strong=\"G2532\"* the|strong=\"G2532\"* spirit|strong=\"G4151\"* of|strong=\"G1537\"* error|strong=\"G4106\"*." + }, + { + "verseNum": 7, + "text": "Beloved, let|strong=\"G1097\"*’s love one|strong=\"G3956\"* another|strong=\"G3588\"*, for|strong=\"G3754\"* love is|strong=\"G1510\"* of|strong=\"G1537\"* God|strong=\"G2316\"*; and|strong=\"G2532\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* loves has|strong=\"G2316\"* been|strong=\"G1510\"* born|strong=\"G1080\"* of|strong=\"G1537\"* God|strong=\"G2316\"* and|strong=\"G2532\"* knows|strong=\"G1097\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"G3754\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* love doesn’t|strong=\"G3588\"* know|strong=\"G1097\"* God|strong=\"G2316\"*, for|strong=\"G3754\"* God|strong=\"G2316\"* is|strong=\"G1510\"* love." + }, + { + "verseNum": 9, + "text": "By|strong=\"G1223\"* this|strong=\"G3778\"* God|strong=\"G2316\"*’s love was|strong=\"G3588\"* revealed|strong=\"G5319\"* in|strong=\"G1722\"* us|strong=\"G1519\"*, that|strong=\"G3754\"* God|strong=\"G2316\"* has|strong=\"G2316\"* sent|strong=\"G2316\"* his|strong=\"G1223\"* only|strong=\"G3439\"* born+ 4:9 The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”.* Son|strong=\"G5207\"* into|strong=\"G1519\"* the|strong=\"G1722\"* world|strong=\"G2889\"* that|strong=\"G3754\"* we|strong=\"G2249\"* might|strong=\"G2316\"* live|strong=\"G2198\"* through|strong=\"G1223\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"G1722\"* this|strong=\"G3778\"* is|strong=\"G1510\"* love, not|strong=\"G3756\"* that|strong=\"G3754\"* we|strong=\"G2249\"* loved God|strong=\"G2316\"*, but|strong=\"G2532\"* that|strong=\"G3754\"* he|strong=\"G2532\"* loved us|strong=\"G2249\"*, and|strong=\"G2532\"* sent|strong=\"G2316\"* his|strong=\"G4012\"* Son|strong=\"G5207\"* as|strong=\"G1722\"* the|strong=\"G1722\"* atoning sacrifice+ 4:10 “atoning sacrifice” is from the Greek “ιλασμος”, an appeasing, propitiating, or the means of appeasement or propitiation—the sacrifice that turns away God’s wrath because of our sin. * for|strong=\"G3754\"* our|strong=\"G2316\"* sins." + }, + { + "verseNum": 11, + "text": "Beloved, if|strong=\"G1487\"* God|strong=\"G2316\"* loved us|strong=\"G2249\"* in|strong=\"G2532\"* this|strong=\"G3588\"* way|strong=\"G3779\"*, we|strong=\"G2249\"* also|strong=\"G2532\"* ought|strong=\"G3784\"* to|strong=\"G2532\"* love one|strong=\"G3588\"* another|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "No|strong=\"G3762\"* one|strong=\"G3762\"* has|strong=\"G2316\"* seen|strong=\"G2300\"* God|strong=\"G2316\"* at|strong=\"G1722\"* any|strong=\"G3762\"* time|strong=\"G4455\"*. If|strong=\"G1437\"* we|strong=\"G2249\"* love one|strong=\"G3762\"* another|strong=\"G3588\"*, God|strong=\"G2316\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* us|strong=\"G2249\"*, and|strong=\"G2532\"* his|strong=\"G1722\"* love has|strong=\"G2316\"* been|strong=\"G1510\"* perfected|strong=\"G5048\"* in|strong=\"G1722\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 13, + "text": "By|strong=\"G1722\"* this|strong=\"G3778\"* we|strong=\"G2249\"* know|strong=\"G1097\"* that|strong=\"G3754\"* we|strong=\"G2249\"* remain|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"* and|strong=\"G2532\"* he|strong=\"G2532\"* in|strong=\"G1722\"* us|strong=\"G1325\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* has|strong=\"G3778\"* given|strong=\"G1325\"* us|strong=\"G1325\"* of|strong=\"G1537\"* his|strong=\"G1722\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 14, + "text": "We|strong=\"G2249\"* have|strong=\"G2532\"* seen|strong=\"G2300\"* and|strong=\"G2532\"* testify|strong=\"G3140\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* has|strong=\"G3962\"* sent|strong=\"G2532\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* as|strong=\"G2532\"* the|strong=\"G2532\"* Savior|strong=\"G4990\"* of|strong=\"G5207\"* the|strong=\"G2532\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 15, + "text": "Whoever|strong=\"G3739\"* confesses|strong=\"G3670\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* is|strong=\"G1510\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, God|strong=\"G2316\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* in|strong=\"G1722\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 16, + "text": "We|strong=\"G2249\"* know|strong=\"G1097\"* and|strong=\"G2532\"* have|strong=\"G2192\"* believed|strong=\"G4100\"* the|strong=\"G1722\"* love which|strong=\"G3739\"* God|strong=\"G2316\"* has|strong=\"G2192\"* for|strong=\"G1722\"* us|strong=\"G2249\"*. God|strong=\"G2316\"* is|strong=\"G1510\"* love, and|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3739\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* love remains|strong=\"G3306\"* in|strong=\"G1722\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* God|strong=\"G2316\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "In|strong=\"G1722\"* this|strong=\"G3778\"*, love has|strong=\"G2192\"* been|strong=\"G1510\"* made|strong=\"G5048\"* perfect|strong=\"G5048\"* among|strong=\"G1722\"* us|strong=\"G2249\"*, that|strong=\"G3754\"* we|strong=\"G2249\"* may|strong=\"G2532\"* have|strong=\"G2192\"* boldness|strong=\"G3954\"* in|strong=\"G1722\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G2250\"* judgment|strong=\"G2920\"*, because|strong=\"G3754\"* as|strong=\"G2531\"* he|strong=\"G2532\"* is|strong=\"G1510\"*, even|strong=\"G2532\"* so|strong=\"G2443\"* we|strong=\"G2249\"* are|strong=\"G1510\"* in|strong=\"G1722\"* this|strong=\"G3778\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 18, + "text": "There|strong=\"G1161\"* is|strong=\"G1510\"* no|strong=\"G3756\"* fear|strong=\"G5401\"* in|strong=\"G1722\"* love; but|strong=\"G1161\"* perfect|strong=\"G5046\"* love casts out|strong=\"G1854\"* fear|strong=\"G5401\"*, because|strong=\"G3754\"* fear|strong=\"G5401\"* has|strong=\"G2192\"* punishment|strong=\"G2851\"*. He|strong=\"G1161\"* who|strong=\"G3588\"* fears|strong=\"G5401\"* is|strong=\"G1510\"* not|strong=\"G3756\"* made|strong=\"G5048\"* perfect|strong=\"G5046\"* in|strong=\"G1722\"* love." + }, + { + "verseNum": 19, + "text": "We|strong=\"G2249\"* love him,+ 4:19 NU omits “him”.* because|strong=\"G3754\"* he|strong=\"G3754\"* first|strong=\"G4413\"* loved us|strong=\"G2249\"*." + }, + { + "verseNum": 20, + "text": "If|strong=\"G1437\"* a|strong=\"G2532\"* man|strong=\"G5100\"* says|strong=\"G3004\"*, “I|strong=\"G3739\"* love God|strong=\"G2316\"*,” and|strong=\"G2532\"* hates|strong=\"G3404\"* his|strong=\"G3708\"* brother, he|strong=\"G2532\"* is|strong=\"G1510\"* a|strong=\"G2532\"* liar|strong=\"G5583\"*; for|strong=\"G1063\"* he|strong=\"G2532\"* who|strong=\"G3739\"* doesn’t|strong=\"G3588\"* love his|strong=\"G3708\"* brother whom|strong=\"G3739\"* he|strong=\"G2532\"* has|strong=\"G2316\"* seen|strong=\"G3708\"*, how|strong=\"G3754\"* can|strong=\"G1410\"* he|strong=\"G2532\"* love God|strong=\"G2316\"* whom|strong=\"G3739\"* he|strong=\"G2532\"* has|strong=\"G2316\"* not|strong=\"G3756\"* seen|strong=\"G3708\"*?" + }, + { + "verseNum": 21, + "text": "This|strong=\"G3778\"* commandment|strong=\"G1785\"* we|strong=\"G2532\"* have|strong=\"G2192\"* from|strong=\"G2532\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* who|strong=\"G3588\"* loves God|strong=\"G2316\"* should|strong=\"G2316\"* also|strong=\"G2532\"* love his|strong=\"G2192\"* brother." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Whoever|strong=\"G3748\"* believes|strong=\"G4100\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"* has|strong=\"G2316\"* been|strong=\"G1510\"* born|strong=\"G1080\"* of|strong=\"G1537\"* God|strong=\"G2316\"*. Whoever|strong=\"G3748\"* loves the|strong=\"G2532\"* Father|strong=\"G1080\"* also|strong=\"G2532\"* loves the|strong=\"G2532\"* child|strong=\"G1080\"* who|strong=\"G3588\"* is|strong=\"G1510\"* born|strong=\"G1080\"* of|strong=\"G1537\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "By|strong=\"G1722\"* this|strong=\"G3778\"* we|strong=\"G3754\"* know|strong=\"G1097\"* that|strong=\"G3754\"* we|strong=\"G3754\"* love the|strong=\"G1722\"* children|strong=\"G5043\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, when|strong=\"G3752\"* we|strong=\"G3754\"* love God|strong=\"G2316\"* and|strong=\"G2532\"* keep|strong=\"G4160\"* his|strong=\"G1722\"* commandments|strong=\"G1785\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* is|strong=\"G1510\"* loving God|strong=\"G2316\"*, that|strong=\"G2443\"* we|strong=\"G1063\"* keep|strong=\"G5083\"* his|strong=\"G2532\"* commandments|strong=\"G1785\"*. His|strong=\"G2532\"* commandments|strong=\"G1785\"* are|strong=\"G1510\"* not|strong=\"G3756\"* grievous." + }, + { + "verseNum": 4, + "text": "For|strong=\"G3754\"* whatever|strong=\"G3956\"* is|strong=\"G1510\"* born|strong=\"G1080\"* of|strong=\"G1537\"* God|strong=\"G2316\"* overcomes|strong=\"G3528\"* the|strong=\"G2532\"* world|strong=\"G2889\"*. This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* victory|strong=\"G3529\"* that|strong=\"G3754\"* has|strong=\"G2316\"* overcome|strong=\"G3528\"* the|strong=\"G2532\"* world|strong=\"G2889\"*: your|strong=\"G2532\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 5, + "text": "Who|strong=\"G5101\"* is|strong=\"G1510\"* he|strong=\"G1161\"* who|strong=\"G5101\"* overcomes|strong=\"G3528\"* the|strong=\"G1161\"* world|strong=\"G2889\"*, but|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G5101\"* believes|strong=\"G4100\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* is|strong=\"G1510\"* the|strong=\"G1161\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*?" + }, + { + "verseNum": 6, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3588\"* came|strong=\"G2064\"* by|strong=\"G1223\"* water|strong=\"G5204\"* and|strong=\"G2532\"* blood, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*; not|strong=\"G3756\"* with|strong=\"G1722\"* the|strong=\"G1722\"* water|strong=\"G5204\"* only|strong=\"G3440\"*, but|strong=\"G2532\"* with|strong=\"G1722\"* the|strong=\"G1722\"* water|strong=\"G5204\"* and|strong=\"G2532\"* the|strong=\"G1722\"* blood. It|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* who|strong=\"G3588\"* testifies|strong=\"G3140\"*, because|strong=\"G3754\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* is|strong=\"G1510\"* the|strong=\"G1722\"* truth." + }, + { + "verseNum": 7, + "text": "For|strong=\"G3754\"* there|strong=\"G3754\"* are|strong=\"G1510\"* three|strong=\"G5140\"* who|strong=\"G3588\"* testify|strong=\"G3140\"*:+ 5:7 Only a few recent manuscripts add “in heaven: the Father, the Word, and the Holy Spirit; and these three are one. And there are three that testify on earth:”*" + }, + { + "verseNum": 8, + "text": "the|strong=\"G2532\"* Spirit|strong=\"G4151\"*, the|strong=\"G2532\"* water|strong=\"G5204\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* blood; and|strong=\"G2532\"* the|strong=\"G2532\"* three|strong=\"G5140\"* agree|strong=\"G1510\"* as|strong=\"G1519\"* one|strong=\"G1520\"*." + }, + { + "verseNum": 9, + "text": "If|strong=\"G1487\"* we|strong=\"G3754\"* receive|strong=\"G2983\"* the|strong=\"G3588\"* witness|strong=\"G3140\"* of|strong=\"G5207\"* men|strong=\"G3778\"*, the|strong=\"G3588\"* witness|strong=\"G3140\"* of|strong=\"G5207\"* God|strong=\"G2316\"* is|strong=\"G1510\"* greater|strong=\"G3173\"*; for|strong=\"G3754\"* this|strong=\"G3778\"* is|strong=\"G1510\"* God|strong=\"G2316\"*’s testimony|strong=\"G3141\"* which|strong=\"G3588\"* he|strong=\"G3754\"* has|strong=\"G2316\"* testified|strong=\"G3140\"* concerning|strong=\"G4012\"* his|strong=\"G4012\"* Son|strong=\"G5207\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"G3739\"* who|strong=\"G3739\"* believes|strong=\"G4100\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"* has|strong=\"G2192\"* the|strong=\"G1722\"* testimony|strong=\"G3141\"* in|strong=\"G1722\"* himself|strong=\"G1438\"*. He|strong=\"G3739\"* who|strong=\"G3739\"* doesn’t|strong=\"G3588\"* believe|strong=\"G4100\"* God|strong=\"G2316\"* has|strong=\"G2192\"* made|strong=\"G4160\"* him|strong=\"G3588\"* a|strong=\"G2192\"* liar|strong=\"G5583\"*, because|strong=\"G3754\"* he|strong=\"G3739\"* has|strong=\"G2192\"* not|strong=\"G3756\"* believed|strong=\"G4100\"* in|strong=\"G1722\"* the|strong=\"G1722\"* testimony|strong=\"G3141\"* that|strong=\"G3754\"* God|strong=\"G2316\"* has|strong=\"G2192\"* given|strong=\"G3361\"* concerning|strong=\"G4012\"* his|strong=\"G1438\"* Son|strong=\"G5207\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"G1722\"* testimony|strong=\"G3141\"* is|strong=\"G1510\"* this|strong=\"G3778\"*: that|strong=\"G3754\"* God|strong=\"G2316\"* gave|strong=\"G1325\"* to|strong=\"G2532\"* us|strong=\"G1325\"* eternal life|strong=\"G2222\"*, and|strong=\"G2532\"* this|strong=\"G3778\"* life|strong=\"G2222\"* is|strong=\"G1510\"* in|strong=\"G1722\"* his|strong=\"G1722\"* Son|strong=\"G5207\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"G3588\"* who|strong=\"G3588\"* has|strong=\"G2192\"* the|strong=\"G3588\"* Son|strong=\"G5207\"* has|strong=\"G2192\"* the|strong=\"G3588\"* life|strong=\"G2222\"*. He|strong=\"G3588\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* have|strong=\"G2192\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* Son|strong=\"G5207\"* doesn’t|strong=\"G3588\"* have|strong=\"G2192\"* the|strong=\"G3588\"* life|strong=\"G2222\"*." + }, + { + "verseNum": 13, + "text": "These|strong=\"G3778\"* things|strong=\"G3778\"* I|strong=\"G3754\"* have|strong=\"G2192\"* written|strong=\"G1125\"* to|strong=\"G1519\"* you|strong=\"G5210\"* who|strong=\"G3588\"* believe|strong=\"G4100\"* in|strong=\"G1519\"* the|strong=\"G1519\"* name|strong=\"G3686\"* of|strong=\"G5207\"* the|strong=\"G1519\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, that|strong=\"G3754\"* you|strong=\"G5210\"* may|strong=\"G2443\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G5210\"* have|strong=\"G2192\"* eternal life|strong=\"G2222\"*, and|strong=\"G2316\"* that|strong=\"G3754\"* you|strong=\"G5210\"* may|strong=\"G2443\"* continue to|strong=\"G1519\"* believe|strong=\"G4100\"* in|strong=\"G1519\"* the|strong=\"G1519\"* name|strong=\"G3686\"* of|strong=\"G5207\"* the|strong=\"G1519\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 14, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* boldness|strong=\"G3954\"* which|strong=\"G3739\"* we|strong=\"G2249\"* have|strong=\"G2192\"* toward|strong=\"G4314\"* him|strong=\"G3588\"*, that|strong=\"G3754\"* if|strong=\"G1437\"* we|strong=\"G2249\"* ask anything|strong=\"G5100\"* according|strong=\"G2596\"* to|strong=\"G4314\"* his|strong=\"G2192\"* will|strong=\"G2307\"*, he|strong=\"G2532\"* listens to|strong=\"G4314\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 15, + "text": "And|strong=\"G2532\"* if|strong=\"G1437\"* we|strong=\"G2249\"* know|strong=\"G1492\"* that|strong=\"G3754\"* he|strong=\"G2532\"* listens to|strong=\"G2532\"* us|strong=\"G2249\"*, whatever|strong=\"G3739\"* we|strong=\"G2249\"* ask, we|strong=\"G2249\"* know|strong=\"G1492\"* that|strong=\"G3754\"* we|strong=\"G2249\"* have|strong=\"G2192\"* the|strong=\"G2532\"* petitions which|strong=\"G3739\"* we|strong=\"G2249\"* have|strong=\"G2192\"* asked of|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "If|strong=\"G1437\"* anyone|strong=\"G5100\"* sees|strong=\"G3708\"* his|strong=\"G4012\"* brother sinning a|strong=\"G2532\"* sin not|strong=\"G3756\"* leading to|strong=\"G4314\"* death|strong=\"G2288\"*, he|strong=\"G2532\"* shall|strong=\"G2532\"* ask|strong=\"G2065\"*, and|strong=\"G2532\"* God|strong=\"G3004\"* will|strong=\"G1510\"* give|strong=\"G1325\"* him|strong=\"G3588\"* life|strong=\"G2222\"* for|strong=\"G4012\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sin not|strong=\"G3756\"* leading to|strong=\"G4314\"* death|strong=\"G2288\"*. There|strong=\"G2532\"* is|strong=\"G1510\"* sin leading to|strong=\"G4314\"* death|strong=\"G2288\"*. I|strong=\"G2532\"* don’t|strong=\"G3588\"* say|strong=\"G3004\"* that|strong=\"G2443\"* he|strong=\"G2532\"* should|strong=\"G5100\"* make|strong=\"G2532\"* a|strong=\"G2532\"* request|strong=\"G2065\"* concerning|strong=\"G4012\"* this|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "All|strong=\"G3956\"* unrighteousness is|strong=\"G1510\"* sin, and|strong=\"G2532\"* there|strong=\"G2532\"* is|strong=\"G1510\"* sin not|strong=\"G3756\"* leading to|strong=\"G4314\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 18, + "text": "We|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* whoever|strong=\"G3748\"* is|strong=\"G3588\"* born|strong=\"G1080\"* of|strong=\"G1537\"* God|strong=\"G2316\"* doesn’t|strong=\"G3588\"* sin, but|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* was|strong=\"G3588\"* born|strong=\"G1080\"* of|strong=\"G1537\"* God|strong=\"G2316\"* keeps|strong=\"G5083\"* himself, and|strong=\"G2532\"* the|strong=\"G2532\"* evil|strong=\"G4190\"* one|strong=\"G3956\"* doesn’t|strong=\"G3588\"* touch him|strong=\"G3588\"*." + }, + { + "verseNum": 19, + "text": "We|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* we|strong=\"G3754\"* are|strong=\"G1510\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* whole|strong=\"G3650\"* world|strong=\"G2889\"* lies|strong=\"G2749\"* in|strong=\"G1722\"* the|strong=\"G1722\"* power|strong=\"G2316\"* of|strong=\"G1537\"* the|strong=\"G1722\"* evil|strong=\"G4190\"* one|strong=\"G3588\"*." + }, + { + "verseNum": 20, + "text": "We|strong=\"G2249\"* know|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"* has|strong=\"G2316\"* come|strong=\"G2240\"* and|strong=\"G2532\"* has|strong=\"G2316\"* given|strong=\"G1325\"* us|strong=\"G1325\"* an|strong=\"G2532\"* understanding|strong=\"G1271\"*, that|strong=\"G3754\"* we|strong=\"G2249\"* know|strong=\"G1492\"* him|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G1510\"* true|strong=\"G3588\"*; and|strong=\"G2532\"* we|strong=\"G2249\"* are|strong=\"G1510\"* in|strong=\"G1722\"* him|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G1510\"* true|strong=\"G3588\"*, in|strong=\"G1722\"* his|strong=\"G1722\"* Son|strong=\"G5207\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*. This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G1722\"* true|strong=\"G3588\"* God|strong=\"G2316\"* and|strong=\"G2532\"* eternal life|strong=\"G2222\"*." + }, + { + "verseNum": 21, + "text": "Little|strong=\"G5040\"* children|strong=\"G5040\"*, keep|strong=\"G5442\"* yourselves|strong=\"G1438\"* from|strong=\"G3588\"* idols|strong=\"G1497\"*." + } + ] + } + ] + }, + { + "name": "2 John", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"G1722\"* elder|strong=\"G4245\"*, to|strong=\"G2532\"* the|strong=\"G1722\"* chosen|strong=\"G1588\"* lady|strong=\"G2959\"* and|strong=\"G2532\"* her|strong=\"G3956\"* children|strong=\"G5043\"*, whom|strong=\"G3739\"* I|strong=\"G1473\"* love in|strong=\"G1722\"* truth, and|strong=\"G2532\"* not|strong=\"G3756\"* I|strong=\"G1473\"* only|strong=\"G3441\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3739\"* know|strong=\"G1097\"* the|strong=\"G1722\"* truth," + }, + { + "verseNum": 2, + "text": "for|strong=\"G1519\"* the|strong=\"G1722\"* truth’s sake|strong=\"G1223\"*, which|strong=\"G3588\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* us|strong=\"G1519\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* with|strong=\"G3326\"* us|strong=\"G1519\"* forever|strong=\"G1519\"*:" + }, + { + "verseNum": 3, + "text": "Grace|strong=\"G5485\"*, mercy|strong=\"G1656\"*, and|strong=\"G2532\"* peace|strong=\"G1515\"* will|strong=\"G2316\"* be|strong=\"G1510\"* with|strong=\"G3326\"* us|strong=\"G2249\"*, from|strong=\"G3844\"* God|strong=\"G2316\"* the|strong=\"G1722\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* from|strong=\"G3844\"* the|strong=\"G1722\"* Lord|strong=\"G3588\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:3 “Christ” means “Anointed One”.* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*, in|strong=\"G1722\"* truth and|strong=\"G2532\"* love." + }, + { + "verseNum": 4, + "text": "I|strong=\"G3754\"* rejoice|strong=\"G5463\"* greatly|strong=\"G3029\"* that|strong=\"G3754\"* I|strong=\"G3754\"* have|strong=\"G3748\"* found|strong=\"G2147\"* some|strong=\"G3588\"* of|strong=\"G1537\"* your|strong=\"G2983\"* children|strong=\"G5043\"* walking|strong=\"G4043\"* in|strong=\"G1722\"* truth, even|strong=\"G2531\"* as|strong=\"G2531\"* we|strong=\"G3754\"* have|strong=\"G3748\"* been commanded|strong=\"G1785\"* by|strong=\"G1722\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"G3568\"* I|strong=\"G3739\"* beg|strong=\"G2065\"* you|strong=\"G4771\"*, dear lady|strong=\"G2959\"*, not|strong=\"G3756\"* as|strong=\"G5613\"* though|strong=\"G5613\"* I|strong=\"G3739\"* wrote|strong=\"G1125\"* to|strong=\"G2443\"* you|strong=\"G4771\"* a|strong=\"G5613\"* new|strong=\"G2537\"* commandment|strong=\"G1785\"*, but|strong=\"G2532\"* that|strong=\"G2443\"* which|strong=\"G3739\"* we|strong=\"G3739\"* had|strong=\"G2532\"* from|strong=\"G2532\"* the|strong=\"G2532\"* beginning, that|strong=\"G2443\"* we|strong=\"G3739\"* love one|strong=\"G3739\"* another|strong=\"G3739\"*." + }, + { + "verseNum": 6, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* love, that|strong=\"G2443\"* we|strong=\"G2532\"* should|strong=\"G3588\"* walk|strong=\"G4043\"* according|strong=\"G2596\"* to|strong=\"G2443\"* his|strong=\"G1722\"* commandments|strong=\"G1785\"*. This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G1722\"* commandment|strong=\"G1785\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* you|strong=\"G1722\"* heard from|strong=\"G2532\"* the|strong=\"G1722\"* beginning, that|strong=\"G2443\"* you|strong=\"G1722\"* should|strong=\"G3588\"* walk|strong=\"G4043\"* in|strong=\"G1722\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G3754\"* many|strong=\"G4183\"* deceivers|strong=\"G4108\"* have|strong=\"G2532\"* gone|strong=\"G1831\"* out|strong=\"G1831\"* into|strong=\"G1519\"* the|strong=\"G1722\"* world|strong=\"G2889\"*, those|strong=\"G3588\"* who|strong=\"G3588\"* don’t|strong=\"G3588\"* confess|strong=\"G3670\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* came|strong=\"G2064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*. This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G1722\"* deceiver|strong=\"G4108\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Antichrist." + }, + { + "verseNum": 8, + "text": "Watch yourselves|strong=\"G1438\"*, that|strong=\"G2443\"* we|strong=\"G3739\"* don’t lose the|strong=\"G3739\"* things|strong=\"G3739\"* which|strong=\"G3739\"* we|strong=\"G3739\"* have|strong=\"G3361\"* accomplished|strong=\"G2038\"*, but|strong=\"G3361\"* that|strong=\"G2443\"* we|strong=\"G3739\"* receive a|strong=\"G3739\"* full|strong=\"G4134\"* reward|strong=\"G3408\"*." + }, + { + "verseNum": 9, + "text": "Whoever|strong=\"G3956\"* transgresses and|strong=\"G2532\"* doesn’t|strong=\"G3588\"* remain|strong=\"G3306\"* in|strong=\"G1722\"* the|strong=\"G1722\"* teaching|strong=\"G1322\"* of|strong=\"G5207\"* Christ|strong=\"G5547\"* doesn’t|strong=\"G3588\"* have|strong=\"G2192\"* God|strong=\"G2316\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* the|strong=\"G1722\"* teaching|strong=\"G1322\"* has|strong=\"G2192\"* both|strong=\"G2532\"* the|strong=\"G1722\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Son|strong=\"G5207\"*." + }, + { + "verseNum": 10, + "text": "If|strong=\"G1487\"* anyone|strong=\"G5100\"* comes|strong=\"G2064\"* to|strong=\"G1519\"* you|strong=\"G5210\"* and|strong=\"G2532\"* doesn’t|strong=\"G3588\"* bring|strong=\"G5342\"* this|strong=\"G3778\"* teaching|strong=\"G1322\"*, don’t|strong=\"G3588\"* receive|strong=\"G2983\"* him|strong=\"G3588\"* into|strong=\"G1519\"* your|strong=\"G2532\"* house|strong=\"G3614\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* welcome him|strong=\"G3588\"*," + }, + { + "verseNum": 11, + "text": "for|strong=\"G1063\"* he|strong=\"G3588\"* who|strong=\"G3588\"* welcomes him|strong=\"G3588\"* participates|strong=\"G2841\"* in|strong=\"G3004\"* his|strong=\"G3588\"* evil|strong=\"G4190\"* deeds|strong=\"G2041\"*." + }, + { + "verseNum": 12, + "text": "Having|strong=\"G2192\"* many|strong=\"G4183\"* things|strong=\"G3588\"* to|strong=\"G4314\"* write|strong=\"G1125\"* to|strong=\"G4314\"* you|strong=\"G5210\"*, I|strong=\"G2532\"* don’t|strong=\"G3588\"* want|strong=\"G1014\"* to|strong=\"G4314\"* do|strong=\"G1096\"* so|strong=\"G2443\"* with|strong=\"G4314\"* paper|strong=\"G5489\"* and|strong=\"G2532\"* ink|strong=\"G3188\"*, but|strong=\"G2532\"* I|strong=\"G2532\"* hope|strong=\"G1679\"* to|strong=\"G4314\"* come|strong=\"G1096\"* to|strong=\"G4314\"* you|strong=\"G5210\"* and|strong=\"G2532\"* to|strong=\"G4314\"* speak|strong=\"G2980\"* face|strong=\"G4750\"* to|strong=\"G4314\"* face|strong=\"G4750\"*, that|strong=\"G2443\"* our|strong=\"G2532\"* joy|strong=\"G5479\"* may|strong=\"G2532\"* be|strong=\"G1096\"* made|strong=\"G1096\"* full|strong=\"G4137\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"G3588\"* children|strong=\"G5043\"* of|strong=\"G5043\"* your|strong=\"G3588\"* chosen|strong=\"G1588\"* sister greet you|strong=\"G4771\"*. Amen." + } + ] + } + ] + }, + { + "name": "3 John", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"G1722\"* elder|strong=\"G4245\"* to|strong=\"G1722\"* Gaius|strong=\"G1050\"* the|strong=\"G1722\"* beloved, whom|strong=\"G3739\"* I|strong=\"G1473\"* love in|strong=\"G1722\"* truth." + }, + { + "verseNum": 2, + "text": "Beloved, I|strong=\"G2532\"* pray|strong=\"G2172\"* that|strong=\"G3588\"* you|strong=\"G4771\"* may|strong=\"G2532\"* prosper|strong=\"G2137\"* in|strong=\"G2532\"* all|strong=\"G3956\"* things|strong=\"G3956\"* and|strong=\"G2532\"* be|strong=\"G2532\"* healthy, even|strong=\"G2532\"* as|strong=\"G2531\"* your|strong=\"G2532\"* soul|strong=\"G5590\"* prospers|strong=\"G2137\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* I|strong=\"G2532\"* rejoiced|strong=\"G5463\"* greatly|strong=\"G3029\"* when|strong=\"G2532\"* brothers came|strong=\"G2064\"* and|strong=\"G2532\"* testified|strong=\"G3140\"* about|strong=\"G1722\"* your|strong=\"G2532\"* truth, even|strong=\"G2532\"* as|strong=\"G2531\"* you|strong=\"G4771\"* walk|strong=\"G4043\"* in|strong=\"G1722\"* truth." + }, + { + "verseNum": 4, + "text": "I|strong=\"G3778\"* have|strong=\"G2192\"* no|strong=\"G3756\"* greater|strong=\"G3173\"* joy|strong=\"G5479\"* than|strong=\"G3173\"* this|strong=\"G3778\"*: to|strong=\"G2443\"* hear about|strong=\"G1722\"* my|strong=\"G1699\"* children|strong=\"G5043\"* walking|strong=\"G4043\"* in|strong=\"G1722\"* truth." + }, + { + "verseNum": 5, + "text": "Beloved, you|strong=\"G3739\"* do|strong=\"G4160\"* a|strong=\"G2532\"* faithful|strong=\"G4103\"* work|strong=\"G2038\"* in|strong=\"G1519\"* whatever|strong=\"G3739\"* you|strong=\"G3739\"* accomplish|strong=\"G2038\"* for|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3739\"* are|strong=\"G3588\"* brothers and|strong=\"G2532\"* strangers|strong=\"G3581\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"G3588\"* have|strong=\"G4160\"* testified|strong=\"G3140\"* about|strong=\"G4160\"* your|strong=\"G4160\"* love before|strong=\"G1799\"* the|strong=\"G3588\"* assembly|strong=\"G1577\"*. You|strong=\"G4771\"* will|strong=\"G2316\"* do|strong=\"G4160\"* well|strong=\"G2573\"* to|strong=\"G4160\"* send|strong=\"G4311\"* them|strong=\"G3588\"* forward on|strong=\"G4311\"* their|strong=\"G3588\"* journey|strong=\"G4311\"* in|strong=\"G2316\"* a|strong=\"G4160\"* way|strong=\"G4311\"* worthy of|strong=\"G2316\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 7, + "text": "because|strong=\"G1063\"* for|strong=\"G1063\"* the|strong=\"G3588\"* sake|strong=\"G5228\"* of|strong=\"G3686\"* the|strong=\"G3588\"* Name|strong=\"G3686\"* they|strong=\"G3588\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, taking|strong=\"G2983\"* nothing|strong=\"G3367\"* from|strong=\"G1831\"* the|strong=\"G3588\"* Gentiles|strong=\"G1482\"*." + }, + { + "verseNum": 8, + "text": "We|strong=\"G2249\"* therefore|strong=\"G3767\"* ought|strong=\"G3784\"* to|strong=\"G2443\"* receive such|strong=\"G5108\"*, that|strong=\"G2443\"* we|strong=\"G2249\"* may|strong=\"G2443\"* be|strong=\"G1096\"* fellow|strong=\"G4904\"* workers|strong=\"G4904\"* for|strong=\"G2443\"* the|strong=\"G3588\"* truth." + }, + { + "verseNum": 9, + "text": "I|strong=\"G1473\"* wrote|strong=\"G1125\"* to|strong=\"G3756\"* the|strong=\"G3588\"* assembly|strong=\"G1577\"*, but|strong=\"G3588\"* Diotrephes|strong=\"G1361\"*, who|strong=\"G3588\"* loves|strong=\"G5383\"* to|strong=\"G3756\"* be|strong=\"G3756\"* first|strong=\"G3588\"* among|strong=\"G5383\"* them|strong=\"G3588\"*, doesn’t|strong=\"G3588\"* accept|strong=\"G1926\"* what|strong=\"G3588\"* we|strong=\"G2249\"* say|strong=\"G1473\"*." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"G1223\"*, if|strong=\"G1437\"* I|strong=\"G1473\"* come|strong=\"G2064\"*, I|strong=\"G1473\"* will|strong=\"G2532\"* call|strong=\"G2532\"* attention|strong=\"G5279\"* to|strong=\"G2532\"* his|strong=\"G1223\"* deeds|strong=\"G2041\"* which|strong=\"G3739\"* he|strong=\"G2532\"* does|strong=\"G4160\"*, unjustly|strong=\"G5396\"* accusing|strong=\"G5396\"* us|strong=\"G4160\"* with|strong=\"G1223\"* wicked|strong=\"G4190\"* words|strong=\"G3056\"*. Not|strong=\"G3361\"* content|strong=\"G4160\"* with|strong=\"G1223\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* doesn’t|strong=\"G3588\"* receive|strong=\"G1926\"* the|strong=\"G2532\"* brothers himself, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3739\"* would|strong=\"G1014\"*, he|strong=\"G2532\"* forbids|strong=\"G2967\"* and|strong=\"G2532\"* throws|strong=\"G1544\"* out|strong=\"G1544\"* of|strong=\"G3056\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"*." + }, + { + "verseNum": 11, + "text": "Beloved, don’t|strong=\"G3588\"* imitate|strong=\"G3401\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G1510\"* evil|strong=\"G2556\"*, but|strong=\"G3361\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G1510\"* good|strong=\"G3756\"*. He|strong=\"G3588\"* who|strong=\"G3588\"* does|strong=\"G1510\"* good|strong=\"G3756\"* is|strong=\"G1510\"* of|strong=\"G1537\"* God|strong=\"G2316\"*. He|strong=\"G3588\"* who|strong=\"G3588\"* does|strong=\"G1510\"* evil|strong=\"G2556\"* hasn’t|strong=\"G3588\"* seen|strong=\"G3708\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 12, + "text": "Demetrius|strong=\"G1216\"* has|strong=\"G3748\"* the|strong=\"G2532\"* testimony|strong=\"G3141\"* of|strong=\"G5259\"* all|strong=\"G3956\"*, and|strong=\"G2532\"* of|strong=\"G5259\"* the|strong=\"G2532\"* truth itself; yes|strong=\"G1161\"*, we|strong=\"G2249\"* also|strong=\"G2532\"* testify|strong=\"G3140\"*, and|strong=\"G2532\"* you|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* our|strong=\"G2532\"* testimony|strong=\"G3141\"* is|strong=\"G1510\"* true|strong=\"G3588\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"G2532\"* had|strong=\"G2192\"* many|strong=\"G4183\"* things|strong=\"G4183\"* to|strong=\"G2532\"* write|strong=\"G1125\"* to|strong=\"G2532\"* you|strong=\"G4771\"*, but|strong=\"G2532\"* I|strong=\"G2532\"* am|strong=\"G2532\"* unwilling|strong=\"G3756\"* to|strong=\"G2532\"* write|strong=\"G1125\"* to|strong=\"G2532\"* you|strong=\"G4771\"* with|strong=\"G1223\"* ink|strong=\"G3188\"* and|strong=\"G2532\"* pen|strong=\"G2563\"*;" + }, + { + "verseNum": 14, + "text": "but|strong=\"G1161\"* I|strong=\"G2532\"* hope|strong=\"G1679\"* to|strong=\"G4314\"* see|strong=\"G3708\"* you|strong=\"G4771\"* soon. Then|strong=\"G2532\"* we|strong=\"G2532\"* will|strong=\"G2532\"* speak|strong=\"G2980\"* face|strong=\"G4750\"* to|strong=\"G4314\"* face|strong=\"G4750\"*." + } + ] + } + ] + }, + { + "name": "Jude", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Jude|strong=\"G2455\"*,+ 1:1 or, Judah* a|strong=\"G2532\"* servant|strong=\"G1401\"* of|strong=\"G2316\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:1 “Christ” means “Anointed One”.* and|strong=\"G2532\"* brother of|strong=\"G2316\"* James|strong=\"G2385\"*, to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* called|strong=\"G2822\"*, sanctified by|strong=\"G1722\"* God|strong=\"G2316\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*, and|strong=\"G2532\"* kept|strong=\"G5083\"* for|strong=\"G1161\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*:" + }, + { + "verseNum": 2, + "text": "May|strong=\"G2532\"* mercy|strong=\"G1656\"*, peace|strong=\"G1515\"*, and|strong=\"G2532\"* love be|strong=\"G2532\"* multiplied|strong=\"G4129\"* to|strong=\"G2532\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 3, + "text": "Beloved, while|strong=\"G3956\"* I|strong=\"G1473\"* was|strong=\"G3588\"* very|strong=\"G3588\"* eager|strong=\"G4710\"* to|strong=\"G4160\"* write|strong=\"G1125\"* to|strong=\"G4160\"* you|strong=\"G5210\"* about|strong=\"G4012\"* our|strong=\"G3956\"* common|strong=\"G2839\"* salvation|strong=\"G4991\"*, I|strong=\"G1473\"* was|strong=\"G3588\"* constrained to|strong=\"G4160\"* write|strong=\"G1125\"* to|strong=\"G4160\"* you|strong=\"G5210\"* exhorting|strong=\"G3870\"* you|strong=\"G5210\"* to|strong=\"G4160\"* contend|strong=\"G1864\"* earnestly|strong=\"G1864\"* for|strong=\"G4012\"* the|strong=\"G3956\"* faith|strong=\"G4102\"* which|strong=\"G3588\"* was|strong=\"G3588\"* once for|strong=\"G4012\"* all|strong=\"G3956\"* delivered|strong=\"G3860\"* to|strong=\"G4160\"* the|strong=\"G3956\"* saints." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* there|strong=\"G2532\"* are|strong=\"G3588\"* certain|strong=\"G5100\"* men|strong=\"G3778\"* who|strong=\"G3588\"* crept|strong=\"G3921\"* in|strong=\"G1519\"* secretly, even|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* long|strong=\"G3819\"* ago|strong=\"G3819\"* written|strong=\"G4270\"* about|strong=\"G1519\"* for|strong=\"G1063\"* this|strong=\"G3778\"* condemnation|strong=\"G2917\"*: ungodly men|strong=\"G3778\"*, turning|strong=\"G3346\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* our|strong=\"G2316\"* God|strong=\"G2316\"* into|strong=\"G1519\"* indecency, and|strong=\"G2532\"* denying our|strong=\"G2316\"* only|strong=\"G3441\"* Master|strong=\"G2962\"*, God|strong=\"G2316\"*, and|strong=\"G2532\"* Lord|strong=\"G2962\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"G1161\"* I|strong=\"G1161\"* desire|strong=\"G1014\"* to|strong=\"G1014\"* remind|strong=\"G5279\"* you|strong=\"G5210\"*, though|strong=\"G1161\"* you|strong=\"G5210\"* already know|strong=\"G1492\"* this|strong=\"G3588\"*, that|strong=\"G3754\"* the|strong=\"G3956\"* Lord|strong=\"G2962\"*, having|strong=\"G1492\"* saved|strong=\"G4982\"* a|strong=\"G3708\"* people|strong=\"G2992\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G3956\"* land|strong=\"G1093\"* of|strong=\"G1537\"* Egypt, afterward|strong=\"G1208\"* destroyed those|strong=\"G3588\"* who|strong=\"G3588\"* didn’t|strong=\"G3588\"* believe|strong=\"G4100\"*." + }, + { + "verseNum": 6, + "text": "Angels who|strong=\"G3588\"* didn’t|strong=\"G3588\"* keep|strong=\"G5083\"* their|strong=\"G1438\"* first|strong=\"G3588\"* domain, but|strong=\"G3361\"* deserted their|strong=\"G1438\"* own|strong=\"G2398\"* dwelling|strong=\"G3613\"* place, he|strong=\"G3588\"* has|strong=\"G2920\"* kept|strong=\"G5083\"* in|strong=\"G1519\"* everlasting bonds|strong=\"G1199\"* under|strong=\"G5259\"* darkness|strong=\"G2217\"* for|strong=\"G1519\"* the|strong=\"G1519\"* judgment|strong=\"G2920\"* of|strong=\"G5259\"* the|strong=\"G1519\"* great|strong=\"G3173\"* day|strong=\"G2250\"*." + }, + { + "verseNum": 7, + "text": "Even|strong=\"G2532\"* as|strong=\"G5613\"* Sodom|strong=\"G4670\"* and|strong=\"G2532\"* Gomorrah|strong=\"G1116\"* and|strong=\"G2532\"* the|strong=\"G2532\"* cities|strong=\"G4172\"* around|strong=\"G4012\"* them|strong=\"G3588\"*, having|strong=\"G2532\"* in|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G3778\"* way|strong=\"G5158\"* as|strong=\"G5613\"* these|strong=\"G3778\"* given themselves|strong=\"G1438\"* over|strong=\"G4012\"* to|strong=\"G2532\"* sexual immorality|strong=\"G1608\"* and|strong=\"G2532\"* gone after|strong=\"G3694\"* strange|strong=\"G2087\"* flesh|strong=\"G4561\"*, are|strong=\"G3588\"* shown as|strong=\"G5613\"* an|strong=\"G2532\"* example|strong=\"G1164\"*, suffering|strong=\"G5254\"* the|strong=\"G2532\"* punishment|strong=\"G1349\"* of|strong=\"G4012\"* eternal fire|strong=\"G4442\"*." + }, + { + "verseNum": 8, + "text": "Yet|strong=\"G2532\"* in|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G3778\"* way|strong=\"G3668\"*, these|strong=\"G3778\"* also|strong=\"G2532\"* in|strong=\"G2532\"* their|strong=\"G2532\"* dreaming|strong=\"G1797\"* defile|strong=\"G3392\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, despise authority|strong=\"G2963\"*, and|strong=\"G2532\"* slander celestial beings." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* Michael|strong=\"G3413\"*, the|strong=\"G1161\"* archangel, when|strong=\"G3753\"* contending|strong=\"G1252\"* with|strong=\"G4012\"* the|strong=\"G1161\"* devil|strong=\"G1228\"* and|strong=\"G1161\"* arguing|strong=\"G1256\"* about|strong=\"G4012\"* the|strong=\"G1161\"* body|strong=\"G4983\"* of|strong=\"G4012\"* Moses|strong=\"G3475\"*, dared|strong=\"G5111\"* not|strong=\"G3756\"* bring|strong=\"G3004\"* against|strong=\"G4012\"* him|strong=\"G3588\"* an|strong=\"G1161\"* abusive condemnation|strong=\"G2920\"*, but|strong=\"G1161\"* said|strong=\"G3004\"*, “May|strong=\"G3004\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"* rebuke|strong=\"G2008\"* you|strong=\"G4771\"*!”" + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* these|strong=\"G3778\"* speak|strong=\"G1161\"* evil of|strong=\"G1722\"* whatever|strong=\"G3745\"* things|strong=\"G3778\"* they|strong=\"G1161\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"*. They|strong=\"G1161\"* are|strong=\"G3588\"* destroyed|strong=\"G5351\"* in|strong=\"G1722\"* these|strong=\"G3778\"* things|strong=\"G3778\"* that|strong=\"G3588\"* they|strong=\"G1161\"* understand|strong=\"G1492\"* naturally|strong=\"G5447\"*, like|strong=\"G5613\"* the|strong=\"G1722\"* creatures|strong=\"G2226\"* without|strong=\"G3756\"* reason." + }, + { + "verseNum": 11, + "text": "Woe|strong=\"G3759\"* to|strong=\"G2532\"* them|strong=\"G3588\"*! For|strong=\"G3754\"* they|strong=\"G2532\"* went|strong=\"G4198\"* in|strong=\"G2532\"* the|strong=\"G2532\"* way|strong=\"G3598\"* of|strong=\"G2532\"* Cain|strong=\"G2535\"*, and|strong=\"G2532\"* ran|strong=\"G2532\"* riotously in|strong=\"G2532\"* the|strong=\"G2532\"* error|strong=\"G4106\"* of|strong=\"G2532\"* Balaam for|strong=\"G3754\"* hire|strong=\"G3408\"*, and|strong=\"G2532\"* perished in|strong=\"G2532\"* Korah|strong=\"G2879\"*’s rebellion." + }, + { + "verseNum": 12, + "text": "These|strong=\"G3778\"* are|strong=\"G1510\"* hidden|strong=\"G4694\"* rocky reefs|strong=\"G4694\"* in|strong=\"G1722\"* your|strong=\"G1722\"* love feasts when|strong=\"G1722\"* they|strong=\"G3588\"* feast|strong=\"G4910\"* with|strong=\"G1722\"* you|strong=\"G5210\"*, shepherds who|strong=\"G3588\"* without|strong=\"G1438\"* fear feed|strong=\"G4165\"* themselves|strong=\"G1438\"*; clouds|strong=\"G3507\"* without|strong=\"G1438\"* water, carried|strong=\"G3911\"* along|strong=\"G1722\"* by|strong=\"G1722\"* winds; autumn|strong=\"G5352\"* trees|strong=\"G1186\"* without|strong=\"G1438\"* fruit, twice|strong=\"G1364\"* dead, plucked up|strong=\"G1722\"* by|strong=\"G1722\"* the|strong=\"G1722\"* roots|strong=\"G1610\"*;" + }, + { + "verseNum": 13, + "text": "wild waves|strong=\"G2949\"* of|strong=\"G2281\"* the|strong=\"G1519\"* sea|strong=\"G2281\"*, foaming out|strong=\"G1438\"* their|strong=\"G1438\"* own|strong=\"G1438\"* shame; wandering|strong=\"G4107\"* stars, for|strong=\"G1519\"* whom|strong=\"G3739\"* the|strong=\"G1519\"* blackness|strong=\"G2217\"* of|strong=\"G2281\"* darkness|strong=\"G4655\"* has|strong=\"G3739\"* been reserved|strong=\"G5083\"* forever|strong=\"G1519\"*." + }, + { + "verseNum": 14, + "text": "About|strong=\"G1722\"* these|strong=\"G3778\"* also|strong=\"G2532\"* Enoch|strong=\"G1802\"*, the|strong=\"G1722\"* seventh|strong=\"G1442\"* from|strong=\"G2064\"* Adam, prophesied|strong=\"G4395\"*, saying|strong=\"G3004\"*, “Behold|strong=\"G2400\"*,+ 1:14 “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* the|strong=\"G1722\"* Lord|strong=\"G2962\"* came|strong=\"G2064\"* with|strong=\"G1722\"* ten|strong=\"G1722\"* thousands|strong=\"G3461\"* of|strong=\"G2532\"* his|strong=\"G1722\"* holy ones," + }, + { + "verseNum": 15, + "text": "to|strong=\"G2532\"* execute|strong=\"G4160\"* judgment|strong=\"G2920\"* on|strong=\"G2596\"* all|strong=\"G3956\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* convict|strong=\"G1651\"* all|strong=\"G3956\"* the|strong=\"G2532\"* ungodly of|strong=\"G4012\"* all|strong=\"G3956\"* their|strong=\"G2532\"* works|strong=\"G2041\"* of|strong=\"G4012\"* ungodliness which|strong=\"G3739\"* they|strong=\"G2532\"* have|strong=\"G2532\"* done|strong=\"G4160\"* in|strong=\"G2596\"* an|strong=\"G2532\"* ungodly way|strong=\"G2596\"*, and|strong=\"G2532\"* of|strong=\"G4012\"* all|strong=\"G3956\"* the|strong=\"G2532\"* hard|strong=\"G4642\"* things|strong=\"G3956\"* which|strong=\"G3739\"* ungodly sinners have|strong=\"G2532\"* spoken|strong=\"G2980\"* against|strong=\"G2596\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 16, + "text": "These|strong=\"G3778\"* are|strong=\"G1510\"* murmurers|strong=\"G1113\"* and|strong=\"G2532\"* complainers|strong=\"G3202\"*, walking|strong=\"G4198\"* after|strong=\"G2596\"* their|strong=\"G2532\"* lusts|strong=\"G1939\"*—and|strong=\"G2532\"* their|strong=\"G2532\"* mouth|strong=\"G4750\"* speaks|strong=\"G2980\"* proud things|strong=\"G3778\"*—showing respect of|strong=\"G2532\"* persons|strong=\"G4383\"* to|strong=\"G2532\"* gain advantage|strong=\"G5622\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* you|strong=\"G5210\"*, beloved, remember|strong=\"G3403\"* the|strong=\"G1161\"* words|strong=\"G4487\"* which|strong=\"G3588\"* have|strong=\"G1473\"* been|strong=\"G2962\"* spoken before|strong=\"G4302\"* by|strong=\"G5259\"* the|strong=\"G1161\"* apostles of|strong=\"G5259\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"G3588\"* said|strong=\"G3004\"* to|strong=\"G2596\"* you|strong=\"G5210\"*, “In|strong=\"G1909\"* the|strong=\"G1909\"* last|strong=\"G2078\"* time|strong=\"G5550\"* there|strong=\"G3754\"* will|strong=\"G1510\"* be|strong=\"G1510\"* mockers|strong=\"G1703\"*, walking|strong=\"G4198\"* after|strong=\"G2596\"* their|strong=\"G1438\"* own|strong=\"G1438\"* ungodly lusts|strong=\"G1939\"*.”" + }, + { + "verseNum": 19, + "text": "These|strong=\"G3778\"* are|strong=\"G1510\"* those|strong=\"G3588\"* who|strong=\"G3588\"* cause|strong=\"G3588\"* divisions and|strong=\"G4151\"* are|strong=\"G1510\"* sensual|strong=\"G5591\"*, not|strong=\"G3361\"* having|strong=\"G2192\"* the|strong=\"G3588\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* you|strong=\"G5210\"*, beloved, keep building|strong=\"G2026\"* up|strong=\"G2026\"* yourselves|strong=\"G1438\"* on|strong=\"G1722\"* your|strong=\"G1722\"* most holy|strong=\"G4151\"* faith|strong=\"G4102\"*, praying|strong=\"G4336\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 21, + "text": "Keep|strong=\"G5083\"* yourselves|strong=\"G1438\"* in|strong=\"G1722\"* God|strong=\"G2316\"*’s|strong=\"G2962\"* love, looking|strong=\"G4327\"* for|strong=\"G1519\"* the|strong=\"G1722\"* mercy|strong=\"G1656\"* of|strong=\"G2316\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* to|strong=\"G1519\"* eternal life|strong=\"G2222\"*." + }, + { + "verseNum": 22, + "text": "On|strong=\"G2532\"* some|strong=\"G3739\"* have|strong=\"G2532\"* compassion, making|strong=\"G2532\"* a|strong=\"G2532\"* distinction|strong=\"G1252\"*," + }, + { + "verseNum": 23, + "text": "and|strong=\"G2532\"* some|strong=\"G3739\"* save|strong=\"G4982\"*, snatching them|strong=\"G3588\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* fire|strong=\"G4442\"* with|strong=\"G1722\"* fear|strong=\"G5401\"*, hating|strong=\"G3404\"* even|strong=\"G2532\"* the|strong=\"G1722\"* clothing stained|strong=\"G4695\"* by|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*." + }, + { + "verseNum": 24, + "text": "Now|strong=\"G1161\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2532\"* keep|strong=\"G5442\"* them|strong=\"G3588\"*+ 1:24 TR and NU read “you”* from|strong=\"G2532\"* stumbling, and|strong=\"G2532\"* to|strong=\"G2532\"* present|strong=\"G2476\"* you|strong=\"G5210\"* faultless before|strong=\"G1722\"* the|strong=\"G1722\"* presence|strong=\"G2714\"* of|strong=\"G2532\"* his|strong=\"G1722\"* glory|strong=\"G1391\"* in|strong=\"G1722\"* great|strong=\"G2532\"* joy," + }, + { + "verseNum": 25, + "text": "to|strong=\"G1519\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Savior|strong=\"G4990\"*, who|strong=\"G3588\"* alone|strong=\"G3441\"* is|strong=\"G3588\"* wise, be|strong=\"G2532\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* majesty|strong=\"G3172\"*, dominion|strong=\"G2904\"* and|strong=\"G2532\"* power|strong=\"G1849\"*, both|strong=\"G2532\"* now|strong=\"G3568\"* and|strong=\"G2532\"* forever|strong=\"G1519\"*. Amen." + } + ] + } + ] + }, + { + "name": "Revelation", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "This|strong=\"G3588\"* is|strong=\"G3588\"* the|strong=\"G1722\"* Revelation of|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:1 “Christ” means “Anointed One”.* which|strong=\"G3739\"* God|strong=\"G2316\"* gave|strong=\"G1325\"* him|strong=\"G3588\"* to|strong=\"G2532\"* show|strong=\"G1166\"* to|strong=\"G2532\"* his|strong=\"G1223\"* servants|strong=\"G1401\"* the|strong=\"G1722\"* things|strong=\"G3588\"* which|strong=\"G3739\"* must|strong=\"G1163\"* happen|strong=\"G1096\"* soon|strong=\"G5034\"*, which|strong=\"G3739\"* he|strong=\"G2532\"* sent|strong=\"G2316\"* and|strong=\"G2532\"* made|strong=\"G1096\"* known by|strong=\"G1223\"* his|strong=\"G1223\"* angel+ 1:1 or, messenger (here and wherever angel is mentioned)* to|strong=\"G2532\"* his|strong=\"G1223\"* servant|strong=\"G1401\"*, John|strong=\"G2491\"*," + }, + { + "verseNum": 2, + "text": "who|strong=\"G3739\"* testified|strong=\"G3140\"* to|strong=\"G2532\"* God|strong=\"G2316\"*’s word|strong=\"G3056\"* and|strong=\"G2532\"* of|strong=\"G3056\"* the|strong=\"G2532\"* testimony|strong=\"G3141\"* of|strong=\"G3056\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, about|strong=\"G2424\"* everything|strong=\"G3745\"* that|strong=\"G3739\"* he|strong=\"G2532\"* saw|strong=\"G3708\"*." + }, + { + "verseNum": 3, + "text": "Blessed|strong=\"G3107\"* is|strong=\"G3588\"* he|strong=\"G2532\"* who|strong=\"G3588\"* reads and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* hear the|strong=\"G1722\"* words|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* prophecy|strong=\"G4394\"*, and|strong=\"G2532\"* keep|strong=\"G5083\"* the|strong=\"G1722\"* things|strong=\"G3588\"* that|strong=\"G3588\"* are|strong=\"G3588\"* written|strong=\"G1125\"* in|strong=\"G1722\"* it|strong=\"G2532\"*, for|strong=\"G1063\"* the|strong=\"G1722\"* time|strong=\"G2540\"* is|strong=\"G3588\"* near|strong=\"G1451\"*." + }, + { + "verseNum": 4, + "text": "John|strong=\"G2491\"*, to|strong=\"G2532\"* the|strong=\"G1722\"* seven|strong=\"G2033\"* assemblies|strong=\"G1577\"* that|strong=\"G3739\"* are|strong=\"G1510\"* in|strong=\"G1722\"* Asia|strong=\"G3588\"*: Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G2064\"* God|strong=\"G2532\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* and|strong=\"G2532\"* who|strong=\"G3739\"* was|strong=\"G1510\"* and|strong=\"G2532\"* who|strong=\"G3739\"* is|strong=\"G1510\"* to|strong=\"G2532\"* come|strong=\"G2064\"*; and|strong=\"G2532\"* from|strong=\"G2064\"* the|strong=\"G1722\"* seven|strong=\"G2033\"* Spirits|strong=\"G4151\"* who|strong=\"G3739\"* are|strong=\"G1510\"* before|strong=\"G1799\"* his|strong=\"G1722\"* throne|strong=\"G2362\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"G2532\"* from|strong=\"G1537\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, the|strong=\"G1722\"* faithful|strong=\"G4103\"* witness|strong=\"G3144\"*, the|strong=\"G1722\"* firstborn|strong=\"G4416\"* of|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* ruler of|strong=\"G1537\"* the|strong=\"G1722\"* kings|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*. To|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* loves us|strong=\"G2249\"*, and|strong=\"G2532\"* washed us|strong=\"G2249\"* from|strong=\"G1537\"* our|strong=\"G2424\"* sins by|strong=\"G1722\"* his|strong=\"G1722\"* blood—" + }, + { + "verseNum": 6, + "text": "and|strong=\"G2532\"* he|strong=\"G2532\"* made|strong=\"G4160\"* us|strong=\"G4160\"* to|strong=\"G1519\"* be|strong=\"G2532\"* a|strong=\"G2532\"* Kingdom, priests|strong=\"G2409\"*+ 1:6 Exodus 19:6; Isaiah 61:6 * to|strong=\"G1519\"* his|strong=\"G1519\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"*—to|strong=\"G1519\"* him|strong=\"G3588\"* be|strong=\"G2532\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* the|strong=\"G2532\"* dominion|strong=\"G2904\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*. Amen." + }, + { + "verseNum": 7, + "text": "Behold|strong=\"G2400\"*,+ 1:7 “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* he|strong=\"G2532\"* is|strong=\"G3588\"* coming|strong=\"G2064\"* with|strong=\"G3326\"* the|strong=\"G2532\"* clouds|strong=\"G3507\"*, and|strong=\"G2532\"* every|strong=\"G3956\"* eye|strong=\"G3788\"* will|strong=\"G2532\"* see|strong=\"G3708\"* him|strong=\"G3588\"*, including|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* pierced|strong=\"G1574\"* him|strong=\"G3588\"*. All|strong=\"G3956\"* the|strong=\"G2532\"* tribes|strong=\"G5443\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* will|strong=\"G2532\"* mourn|strong=\"G2875\"* over|strong=\"G1909\"* him|strong=\"G3588\"*. Even|strong=\"G2532\"* so|strong=\"G2532\"*, Amen." + }, + { + "verseNum": 8, + "text": "“\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* Alpha \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Omega|strong=\"G5598\"\\+w*,*+ 1:8 TR adds “the Beginning and the End”*”* says|strong=\"G3004\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* God|strong=\"G2316\"*,+ 1:8 TR omits “God”* “\\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w Almighty|strong=\"G3841\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "I|strong=\"G1473\"* John|strong=\"G2491\"*, your|strong=\"G1223\"* brother and|strong=\"G2532\"* partner with|strong=\"G1722\"* you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* oppression, Kingdom, and|strong=\"G2532\"* perseverance|strong=\"G5281\"* in|strong=\"G1722\"* Christ Jesus|strong=\"G2424\"*, was|strong=\"G1096\"* on|strong=\"G1722\"* the|strong=\"G1722\"* isle|strong=\"G3520\"* that|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G2564\"* Patmos|strong=\"G3963\"* because|strong=\"G1223\"* of|strong=\"G3056\"* God|strong=\"G2316\"*’s Word|strong=\"G3056\"* and|strong=\"G2532\"* the|strong=\"G1722\"* testimony|strong=\"G3141\"* of|strong=\"G3056\"* Jesus|strong=\"G2424\"* Christ." + }, + { + "verseNum": 10, + "text": "I|strong=\"G1473\"* was|strong=\"G1096\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G3588\"*’s day|strong=\"G2250\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* heard behind|strong=\"G3694\"* me|strong=\"G1473\"* a|strong=\"G1096\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, like|strong=\"G5613\"* a|strong=\"G1096\"* trumpet|strong=\"G4536\"*" + }, + { + "verseNum": 11, + "text": "saying|strong=\"G3004\"*,+ 1:11 TR adds “I am the Alpha and the Omega, the First and the Last.”* “\\+w What|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* see, \\+w write|strong=\"G1125\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w book|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w send|strong=\"G3992\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w seven|strong=\"G2033\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*:*+ 1:11 TR adds “which are in Asia”* \\+w to|strong=\"G1519\"\\+w* \\+w Ephesus|strong=\"G2181\"\\+w*, \\+w Smyrna|strong=\"G4667\"\\+w*, \\+w Pergamum|strong=\"G4010\"\\+w*, \\+w Thyatira|strong=\"G2363\"\\+w*, \\+w Sardis|strong=\"G4554\"\\+w*, \\+w Philadelphia|strong=\"G5359\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w Laodicea|strong=\"G2993\"\\+w*.”*" + }, + { + "verseNum": 12, + "text": "I|strong=\"G1473\"* turned|strong=\"G1994\"* to|strong=\"G2532\"* see|strong=\"G3708\"* the|strong=\"G2532\"* voice|strong=\"G5456\"* that|strong=\"G3588\"* spoke|strong=\"G2980\"* with|strong=\"G3326\"* me|strong=\"G1473\"*. Having|strong=\"G2532\"* turned|strong=\"G1994\"*, I|strong=\"G1473\"* saw|strong=\"G3708\"* seven|strong=\"G2033\"* golden|strong=\"G5552\"* lamp stands." + }, + { + "verseNum": 13, + "text": "And|strong=\"G2532\"* among|strong=\"G1722\"* the|strong=\"G1722\"* lamp stands was|strong=\"G3588\"* one|strong=\"G3588\"* like|strong=\"G3664\"* a|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* man|strong=\"G5207\"*,+ 1:13 Daniel 7:13 * clothed|strong=\"G1746\"* with|strong=\"G1722\"* a|strong=\"G2532\"* robe|strong=\"G4158\"* reaching|strong=\"G4158\"* down to|strong=\"G4314\"* his|strong=\"G1722\"* feet|strong=\"G4158\"*, and|strong=\"G2532\"* with|strong=\"G1722\"* a|strong=\"G2532\"* golden|strong=\"G5552\"* sash|strong=\"G2223\"* around|strong=\"G4314\"* his|strong=\"G1722\"* chest|strong=\"G3149\"*." + }, + { + "verseNum": 14, + "text": "His|strong=\"G2532\"* head|strong=\"G2776\"* and|strong=\"G2532\"* his|strong=\"G2532\"* hair|strong=\"G2359\"* were|strong=\"G3588\"* white|strong=\"G3022\"* as|strong=\"G5613\"* white|strong=\"G3022\"* wool|strong=\"G2053\"*, like|strong=\"G5613\"* snow|strong=\"G5510\"*. His|strong=\"G2532\"* eyes|strong=\"G3788\"* were|strong=\"G3588\"* like|strong=\"G5613\"* a|strong=\"G5613\"* flame|strong=\"G5395\"* of|strong=\"G2532\"* fire|strong=\"G4442\"*." + }, + { + "verseNum": 15, + "text": "His|strong=\"G1722\"* feet|strong=\"G4228\"* were|strong=\"G3588\"* like|strong=\"G5613\"* burnished|strong=\"G5474\"* brass|strong=\"G5474\"*, as|strong=\"G5613\"* if|strong=\"G5613\"* it|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G2532\"* refined|strong=\"G4448\"* in|strong=\"G1722\"* a|strong=\"G5613\"* furnace|strong=\"G2575\"*. His|strong=\"G1722\"* voice|strong=\"G5456\"* was|strong=\"G3588\"* like|strong=\"G5613\"* the|strong=\"G1722\"* voice|strong=\"G5456\"* of|strong=\"G2532\"* many|strong=\"G4183\"* waters|strong=\"G5204\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* had|strong=\"G2192\"* seven|strong=\"G2033\"* stars in|strong=\"G1722\"* his|strong=\"G1722\"* right|strong=\"G1188\"* hand|strong=\"G5495\"*. Out|strong=\"G1537\"* of|strong=\"G1537\"* his|strong=\"G1722\"* mouth|strong=\"G4750\"* proceeded|strong=\"G1607\"* a|strong=\"G2192\"* sharp|strong=\"G3691\"* two-edged|strong=\"G1366\"* sword|strong=\"G4501\"*. His|strong=\"G1722\"* face|strong=\"G4750\"* was|strong=\"G3588\"* like|strong=\"G5613\"* the|strong=\"G1722\"* sun|strong=\"G2246\"* shining|strong=\"G5316\"* at|strong=\"G1722\"* its|strong=\"G1537\"* brightest." + }, + { + "verseNum": 17, + "text": "When|strong=\"G3753\"* I|strong=\"G1473\"* saw|strong=\"G3708\"* him|strong=\"G3588\"*, I|strong=\"G1473\"* fell|strong=\"G4098\"* at|strong=\"G1909\"* his|strong=\"G1909\"* feet|strong=\"G4228\"* like|strong=\"G5613\"* a|strong=\"G5613\"* dead|strong=\"G3498\"* man|strong=\"G3361\"*." + }, + { + "verseNum": 18, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Living|strong=\"G2198\"\\+w* \\+w one|strong=\"G3588\"\\+w*. \\+w I|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w dead|strong=\"G3498\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w alive|strong=\"G2198\"\\+w* \\+w forever|strong=\"G1519\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w ever|strong=\"G1519\"\\+w*. Amen. \\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w keys|strong=\"G2807\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Death|strong=\"G2288\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G2532\"\\+w* Hades.*+ 1:18 or, Hell*" + }, + { + "verseNum": 19, + "text": "\\+w Write|strong=\"G1125\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w seen|strong=\"G3708\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w are|strong=\"G1510\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w happen|strong=\"G1096\"\\+w* \\+w hereafter|strong=\"G3326\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w mystery|strong=\"G3466\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w seven|strong=\"G2033\"\\+w* stars \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w hand|strong=\"G1188\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w seven|strong=\"G2033\"\\+w* \\+w golden|strong=\"G5552\"\\+w* lamp stands \\+w is|strong=\"G1510\"\\+w* \\+w this|strong=\"G3588\"\\+w*: \\+w The|strong=\"G2532\"\\+w* \\+w seven|strong=\"G2033\"\\+w* stars \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* angels*+ 1:20 or, messengers (here and wherever angels are mentioned)* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w seven|strong=\"G2033\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w seven|strong=\"G2033\"\\+w* lamp stands \\+w are|strong=\"G1510\"\\+w* \\+w seven|strong=\"G2033\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*.*" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "“\\+w To|strong=\"G3004\"\\+w* \\+w the|strong=\"G1722\"\\+w* angel \\+w of|strong=\"G1577\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w assembly|strong=\"G1577\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Ephesus|strong=\"G2181\"\\+w* \\+w write|strong=\"G1125\"\\+w*:*" + }, + { + "verseNum": 2, + "text": "“\\+w I|strong=\"G2532\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w works|strong=\"G2041\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w toil|strong=\"G2873\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w perseverance|strong=\"G5281\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* tolerate \\+w evil|strong=\"G2556\"\\+w* \\+w men|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w tested|strong=\"G3985\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w call|strong=\"G3004\"\\+w* \\+w themselves|strong=\"G1438\"\\+w* apostles, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w false|strong=\"G5571\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w You|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w perseverance|strong=\"G5281\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w endured|strong=\"G5281\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w name|strong=\"G3686\"\\+w*’\\+w s|strong=\"G2192\"\\+w* \\+w sake|strong=\"G1223\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* *+ 2:3 TR adds “have labored and”* \\+w not|strong=\"G3756\"\\+w* \\+w grown|strong=\"G2872\"\\+w* \\+w weary|strong=\"G2872\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w But|strong=\"G3588\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* left \\+w your|strong=\"G2192\"\\+w* \\+w first|strong=\"G4413\"\\+w* love. *" + }, + { + "verseNum": 5, + "text": "\\+w Remember|strong=\"G3421\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w where|strong=\"G4159\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w fallen|strong=\"G4098\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w repent|strong=\"G3340\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w works|strong=\"G2041\"\\+w*; \\+w or|strong=\"G2532\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G2532\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* swiftly, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w move|strong=\"G2795\"\\+w* \\+w your|strong=\"G1437\"\\+w* lamp stand \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w its|strong=\"G1537\"\\+w* \\+w place|strong=\"G5117\"\\+w*, \\+w unless|strong=\"G1437\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w repent|strong=\"G3340\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w But|strong=\"G3588\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G2192\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w hate|strong=\"G3404\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w of|strong=\"G2041\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Nicolaitans|strong=\"G3531\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w also|strong=\"G2504\"\\+w* \\+w hate|strong=\"G3404\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w He|strong=\"G3739\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w an|strong=\"G2192\"\\+w* \\+w ear|strong=\"G3775\"\\+w*, \\+w let|strong=\"G1510\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w hear|strong=\"G5101\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*. \\+w To|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w overcomes|strong=\"G3528\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w tree|strong=\"G3586\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w life|strong=\"G2222\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Paradise|strong=\"G3857\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*.*" + }, + { + "verseNum": 8, + "text": "“\\+w To|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* angel \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w assembly|strong=\"G1577\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Smyrna|strong=\"G4667\"\\+w* \\+w write|strong=\"G1125\"\\+w*:*" + }, + { + "verseNum": 9, + "text": "“\\+w I|strong=\"G2532\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w your|strong=\"G2532\"\\+w* works, oppression, \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w poverty|strong=\"G4432\"\\+w* (\\+w but|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w rich|strong=\"G4145\"\\+w*), \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* blasphemy \\+w of|strong=\"G1537\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w Jews|strong=\"G2453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w synagogue|strong=\"G4864\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Satan|strong=\"G4567\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "Don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w afraid|strong=\"G5399\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w about|strong=\"G3195\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w suffer|strong=\"G3958\"\\+w*. \\+w Behold|strong=\"G2400\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w devil|strong=\"G1228\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w about|strong=\"G3195\"\\+w* \\+w to|strong=\"G1519\"\\+w* throw \\+w some|strong=\"G3739\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w prison|strong=\"G5438\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w tested|strong=\"G3985\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w have|strong=\"G2192\"\\+w* oppression \\+w for|strong=\"G1519\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w days|strong=\"G2250\"\\+w*. \\+w Be|strong=\"G1096\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w death|strong=\"G2288\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w crown|strong=\"G4735\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w an|strong=\"G2192\"\\+w* \\+w ear|strong=\"G3775\"\\+w*, \\+w let|strong=\"G2192\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w hear|strong=\"G5101\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*. \\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w overcomes|strong=\"G3528\"\\+w* won’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G3756\"\\+w* harmed \\+w by|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w second|strong=\"G1208\"\\+w* \\+w death|strong=\"G2288\"\\+w*.*" + }, + { + "verseNum": 12, + "text": "“\\+w To|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* angel \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w assembly|strong=\"G1577\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Pergamum|strong=\"G4010\"\\+w* \\+w write|strong=\"G1125\"\\+w*:*" + }, + { + "verseNum": 13, + "text": "“\\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w your|strong=\"G2532\"\\+w* works \\+w and|strong=\"G2532\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w dwell|strong=\"G2730\"\\+w*, \\+w where|strong=\"G3699\"\\+w* \\+w Satan|strong=\"G4567\"\\+w*’s \\+w throne|strong=\"G2362\"\\+w* \\+w is|strong=\"G3588\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w hold|strong=\"G2902\"\\+w* firmly \\+w to|strong=\"G2532\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w and|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w of|strong=\"G2250\"\\+w* Antipas \\+w my|strong=\"G1722\"\\+w* \\+w witness|strong=\"G3144\"\\+w*, \\+w my|strong=\"G1722\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w one|strong=\"G3739\"\\+w*, \\+w who|strong=\"G3739\"\\+w* \\+w was|strong=\"G3588\"\\+w* killed \\+w among|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w where|strong=\"G3699\"\\+w* \\+w Satan|strong=\"G4567\"\\+w* \\+w dwells|strong=\"G2730\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w few|strong=\"G3641\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w there|strong=\"G1563\"\\+w* \\+w some|strong=\"G3739\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w hold|strong=\"G2902\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w teaching|strong=\"G1321\"\\+w* \\+w of|strong=\"G5207\"\\+w* Balaam, \\+w who|strong=\"G3739\"\\+w* \\+w taught|strong=\"G1321\"\\+w* Balak \\+w to|strong=\"G2532\"\\+w* throw \\+w a|strong=\"G2192\"\\+w* \\+w stumbling|strong=\"G4625\"\\+w* \\+w block|strong=\"G4625\"\\+w* \\+w before|strong=\"G1799\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Israel|strong=\"G2474\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w sacrificed|strong=\"G1494\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w idols|strong=\"G1494\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w commit|strong=\"G4203\"\\+w* sexual \\+w immorality|strong=\"G4203\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w So|strong=\"G3779\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w likewise|strong=\"G3668\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w some|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w hold|strong=\"G2902\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w teaching|strong=\"G1322\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Nicolaitans|strong=\"G3531\"\\+w*.*+ 2:15 TR reads “which I hate” instead of “likewise”*" + }, + { + "verseNum": 16, + "text": "\\+w Repent|strong=\"G3340\"\\+w* \\+w therefore|strong=\"G3767\"\\+w*, \\+w or|strong=\"G2532\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w quickly|strong=\"G5035\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w make|strong=\"G2532\"\\+w* \\+w war|strong=\"G4170\"\\+w* \\+w against|strong=\"G3326\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sword|strong=\"G4501\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w mouth|strong=\"G4750\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w an|strong=\"G2192\"\\+w* \\+w ear|strong=\"G3775\"\\+w*, \\+w let|strong=\"G2983\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w hear|strong=\"G5101\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*. \\+w To|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w overcomes|strong=\"G3528\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w of|strong=\"G4151\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w hidden|strong=\"G2928\"\\+w* \\+w manna|strong=\"G3131\"\\+w*, *+ 2:17 Manna is supernatural food, named after the Hebrew for “What is it?”. See Exodus 11:7-9.* \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w white|strong=\"G3022\"\\+w* \\+w stone|strong=\"G5586\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w stone|strong=\"G5586\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w knows|strong=\"G1492\"\\+w* \\+w but|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w receives|strong=\"G2983\"\\+w* \\+w it|strong=\"G2532\"\\+w*.*" + }, + { + "verseNum": 18, + "text": "“\\+w To|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* angel \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w assembly|strong=\"G1577\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Thyatira|strong=\"G2363\"\\+w* \\+w write|strong=\"G1125\"\\+w*:*" + }, + { + "verseNum": 19, + "text": "“\\+w I|strong=\"G2532\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w works|strong=\"G2041\"\\+w*, \\+w your|strong=\"G2532\"\\+w* love, \\+w faith|strong=\"G4102\"\\+w*, \\+w service|strong=\"G1248\"\\+w*, \\+w patient|strong=\"G5281\"\\+w* \\+w endurance|strong=\"G5281\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* tolerate \\+w your|strong=\"G2192\"\\+w**+ 2:20 TR, NU read “that” instead of “your”* \\+w woman|strong=\"G1135\"\\+w* \\+w Jezebel|strong=\"G2403\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w calls|strong=\"G3004\"\\+w* \\+w herself|strong=\"G1438\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w prophetess|strong=\"G4398\"\\+w*. \\+w She|strong=\"G2532\"\\+w* \\+w teaches|strong=\"G1321\"\\+w* \\+w and|strong=\"G2532\"\\+w* seduces \\+w my|strong=\"G1699\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w commit|strong=\"G4203\"\\+w* sexual \\+w immorality|strong=\"G4203\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w sacrificed|strong=\"G1494\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w idols|strong=\"G1494\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w I|strong=\"G2532\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w her|strong=\"G1325\"\\+w* \\+w time|strong=\"G5550\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w repent|strong=\"G3340\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w she|strong=\"G2532\"\\+w* refuses \\+w to|strong=\"G2443\"\\+w* \\+w repent|strong=\"G3340\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w her|strong=\"G1325\"\\+w* \\+w sexual|strong=\"G4202\"\\+w* \\+w immorality|strong=\"G4202\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* throw \\+w her|strong=\"G1437\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w commit|strong=\"G3431\"\\+w* \\+w adultery|strong=\"G3431\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w her|strong=\"G1437\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w bed|strong=\"G2825\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w great|strong=\"G3173\"\\+w* oppression, \\+w unless|strong=\"G1437\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w repent|strong=\"G3340\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w her|strong=\"G1437\"\\+w* \\+w works|strong=\"G2041\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* kill \\+w her|strong=\"G1325\"\\+w* \\+w children|strong=\"G5043\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w Death|strong=\"G2288\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w searches|strong=\"G2045\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w minds|strong=\"G2588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w hearts|strong=\"G2588\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w each|strong=\"G1538\"\\+w* \\+w one|strong=\"G1538\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w according|strong=\"G2596\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w deeds|strong=\"G2041\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w to|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w say|strong=\"G3004\"\\+w*, \\+w to|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w rest|strong=\"G3062\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Thyatira|strong=\"G2363\"\\+w*—\\+w as|strong=\"G5613\"\\+w* \\+w many|strong=\"G3745\"\\+w* \\+w as|strong=\"G5613\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w teaching|strong=\"G1322\"\\+w*, \\+w who|strong=\"G3588\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w some|strong=\"G3588\"\\+w* \\+w call|strong=\"G3004\"\\+w* ‘\\+w the|strong=\"G1722\"\\+w* deep \\+w things|strong=\"G3778\"\\+w* \\+w of|strong=\"G1909\"\\+w* \\+w Satan|strong=\"G4567\"\\+w*’—\\+w to|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w say|strong=\"G3004\"\\+w*, \\+w I|strong=\"G1161\"\\+w* \\+w am|strong=\"G2192\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w putting|strong=\"G1722\"\\+w* \\+w any|strong=\"G2192\"\\+w* \\+w other|strong=\"G3062\"\\+w* burden \\+w on|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w Nevertheless|strong=\"G4133\"\\+w*, \\+w hold|strong=\"G2902\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G2192\"\\+w* firmly until \\+w I|strong=\"G3739\"\\+w* \\+w come|strong=\"G2240\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w overcomes|strong=\"G3528\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w keeps|strong=\"G5083\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w end|strong=\"G5056\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rule|strong=\"G4165\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w rod|strong=\"G4464\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w iron|strong=\"G4603\"\\+w*, shattering \\+w them|strong=\"G3588\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w clay|strong=\"G2764\"\\+w* pots,*+ 2:27 Psalms 2:9* \\+w as|strong=\"G5613\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*; *" + }, + { + "verseNum": 28, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w morning|strong=\"G4407\"\\+w* star. *" + }, + { + "verseNum": 29, + "text": "\\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w an|strong=\"G2192\"\\+w* \\+w ear|strong=\"G3775\"\\+w*, \\+w let|strong=\"G2192\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w hear|strong=\"G5101\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*.*" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "“\\+w And|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* angel \\+w of|strong=\"G4151\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w assembly|strong=\"G1577\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Sardis|strong=\"G4554\"\\+w* \\+w write|strong=\"G1125\"\\+w*:*" + }, + { + "verseNum": 2, + "text": "\\+w Wake|strong=\"G1127\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w strengthen|strong=\"G4741\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w remain|strong=\"G1096\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w about|strong=\"G3195\"\\+w* \\+w to|strong=\"G2532\"\\+w* throw away,*+ 3:2 NU & TR read “which were about to die” instead of “which you were about to throw away”.* \\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w yours|strong=\"G4771\"\\+w* perfected \\+w before|strong=\"G1799\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w Remember|strong=\"G3421\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w heard|strong=\"G1097\"\\+w*. \\+w Keep|strong=\"G5083\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w repent|strong=\"G3340\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w you|strong=\"G4771\"\\+w* won’t \\+w watch|strong=\"G1127\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2240\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w thief|strong=\"G2812\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* won’t \\+w know|strong=\"G1097\"\\+w* \\+w what|strong=\"G4169\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2240\"\\+w* \\+w upon|strong=\"G1909\"\\+w* \\+w you|strong=\"G4771\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w Nevertheless|strong=\"G3756\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w few|strong=\"G3641\"\\+w* \\+w names|strong=\"G3686\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Sardis|strong=\"G4554\"\\+w* \\+w that|strong=\"G3754\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* defile \\+w their|strong=\"G2532\"\\+w* \\+w garments|strong=\"G2440\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w walk|strong=\"G4043\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w white|strong=\"G3022\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* worthy. *" + }, + { + "verseNum": 5, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w overcomes|strong=\"G3528\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w arrayed|strong=\"G4016\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w white|strong=\"G3022\"\\+w* \\+w garments|strong=\"G2440\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G3779\"\\+w* blot \\+w his|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w book|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w life|strong=\"G2222\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w confess|strong=\"G3670\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w before|strong=\"G1799\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w before|strong=\"G1799\"\\+w* \\+w his|strong=\"G1722\"\\+w* angels. *" + }, + { + "verseNum": 6, + "text": "\\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w an|strong=\"G2192\"\\+w* \\+w ear|strong=\"G3775\"\\+w*, \\+w let|strong=\"G2192\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w hear|strong=\"G5101\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*.*" + }, + { + "verseNum": 7, + "text": "“\\+w To|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* angel \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w assembly|strong=\"G1577\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Philadelphia|strong=\"G5359\"\\+w* \\+w write|strong=\"G1125\"\\+w*:*" + }, + { + "verseNum": 8, + "text": "“\\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w works|strong=\"G2041\"\\+w* (\\+w behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w set|strong=\"G2532\"\\+w* \\+w before|strong=\"G1799\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w an|strong=\"G2192\"\\+w* open \\+w door|strong=\"G2374\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w shut|strong=\"G2808\"\\+w*), \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w power|strong=\"G1411\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w kept|strong=\"G5083\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w and|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w name|strong=\"G3686\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w some|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w synagogue|strong=\"G4864\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Satan|strong=\"G4567\"\\+w*, \\+w of|strong=\"G1537\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w Jews|strong=\"G2453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w lie|strong=\"G5574\"\\+w*—\\+w behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w come|strong=\"G2240\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w worship|strong=\"G4352\"\\+w* \\+w before|strong=\"G1799\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w feet|strong=\"G4228\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* loved \\+w you|strong=\"G4771\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w Because|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w kept|strong=\"G5083\"\\+w* \\+w my|strong=\"G5083\"\\+w* command \\+w to|strong=\"G1909\"\\+w* endure, \\+w I|strong=\"G1473\"\\+w* \\+w also|strong=\"G2504\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w keep|strong=\"G5083\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w testing|strong=\"G3985\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w to|strong=\"G1909\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w world|strong=\"G3625\"\\+w*, \\+w to|strong=\"G1909\"\\+w* \\+w test|strong=\"G3985\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w dwell|strong=\"G2730\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w earth|strong=\"G1093\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w I|strong=\"G3739\"\\+w* \\+w am|strong=\"G2192\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w quickly|strong=\"G5035\"\\+w*! \\+w Hold|strong=\"G2902\"\\+w* firmly \\+w that|strong=\"G2443\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2192\"\\+w*, \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w no|strong=\"G3367\"\\+w* \\+w one|strong=\"G3367\"\\+w* \\+w takes|strong=\"G2983\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w crown|strong=\"G4735\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w overcomes|strong=\"G3528\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w pillar|strong=\"G4769\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w temple|strong=\"G3485\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w more|strong=\"G2089\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w write|strong=\"G1125\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w*, \\+w which|strong=\"G3588\"\\+w* \\+w comes|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G1722\"\\+w* own \\+w new|strong=\"G2537\"\\+w* \\+w name|strong=\"G3686\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w an|strong=\"G2192\"\\+w* \\+w ear|strong=\"G3775\"\\+w*, \\+w let|strong=\"G2192\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w hear|strong=\"G5101\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*.*" + }, + { + "verseNum": 14, + "text": "“\\+w To|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* angel \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w assembly|strong=\"G1577\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Laodicea|strong=\"G2993\"\\+w* \\+w write|strong=\"G1125\"\\+w*:*" + }, + { + "verseNum": 15, + "text": "“\\+w I|strong=\"G3754\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w works|strong=\"G2041\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w neither|strong=\"G3777\"\\+w* \\+w cold|strong=\"G5593\"\\+w* \\+w nor|strong=\"G3777\"\\+w* \\+w hot|strong=\"G2200\"\\+w*. \\+w I|strong=\"G3754\"\\+w* \\+w wish|strong=\"G3785\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w cold|strong=\"G5593\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w hot|strong=\"G2200\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w So|strong=\"G3779\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w lukewarm|strong=\"G5513\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w neither|strong=\"G3777\"\\+w* \\+w hot|strong=\"G2200\"\\+w* \\+w nor|strong=\"G3777\"\\+w* \\+w cold|strong=\"G5593\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w vomit|strong=\"G1692\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w mouth|strong=\"G4750\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w Because|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w rich|strong=\"G4145\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* gotten \\+w riches|strong=\"G4147\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w need|strong=\"G5532\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w nothing|strong=\"G3762\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wretched|strong=\"G5005\"\\+w* \\+w one|strong=\"G3762\"\\+w*, \\+w miserable|strong=\"G1652\"\\+w*, \\+w poor|strong=\"G4434\"\\+w*, \\+w blind|strong=\"G5185\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w naked|strong=\"G1131\"\\+w*; *" + }, + { + "verseNum": 18, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w counsel|strong=\"G4823\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G2443\"\\+w* buy \\+w from|strong=\"G1537\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w gold|strong=\"G5553\"\\+w* \\+w refined|strong=\"G4448\"\\+w* \\+w by|strong=\"G1537\"\\+w* \\+w fire|strong=\"G4442\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w become|strong=\"G4147\"\\+w* \\+w rich|strong=\"G4147\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w white|strong=\"G3022\"\\+w* \\+w garments|strong=\"G2440\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w clothe|strong=\"G4016\"\\+w* \\+w yourself|strong=\"G4771\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G2532\"\\+w* shame \\+w of|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w nakedness|strong=\"G1132\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w revealed|strong=\"G5319\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w eye|strong=\"G3788\"\\+w* \\+w salve|strong=\"G2854\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w anoint|strong=\"G1472\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w eyes|strong=\"G3788\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w may|strong=\"G2532\"\\+w* see. *" + }, + { + "verseNum": 19, + "text": "\\+w As|strong=\"G3745\"\\+w* \\+w many|strong=\"G3745\"\\+w* \\+w as|strong=\"G3745\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w love|strong=\"G5368\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w reprove|strong=\"G1651\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w chasten|strong=\"G3811\"\\+w*. \\+w Be|strong=\"G2532\"\\+w* zealous \\+w therefore|strong=\"G3767\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w repent|strong=\"G3340\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w stand|strong=\"G2476\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w door|strong=\"G2374\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w knock|strong=\"G2925\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* hears \\+w my|strong=\"G3708\"\\+w* \\+w voice|strong=\"G5456\"\\+w* \\+w and|strong=\"G2532\"\\+w* opens \\+w the|strong=\"G2532\"\\+w* \\+w door|strong=\"G2374\"\\+w*, \\+w then|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G1525\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w dine|strong=\"G1172\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w overcomes|strong=\"G3528\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w sit|strong=\"G2523\"\\+w* \\+w down|strong=\"G2523\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w throne|strong=\"G2362\"\\+w*, \\+w as|strong=\"G5613\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w overcame|strong=\"G3528\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w sat|strong=\"G2523\"\\+w* \\+w down|strong=\"G2523\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w throne|strong=\"G2362\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w an|strong=\"G2192\"\\+w* \\+w ear|strong=\"G3775\"\\+w*, \\+w let|strong=\"G2192\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w hear|strong=\"G5101\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"* I|strong=\"G1473\"* looked|strong=\"G3708\"* and|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G1096\"* door|strong=\"G2374\"* opened in|strong=\"G1722\"* heaven|strong=\"G3772\"*; and|strong=\"G2532\"* the|strong=\"G1722\"* first|strong=\"G4413\"* voice|strong=\"G5456\"* that|strong=\"G3739\"* I|strong=\"G1473\"* heard, like|strong=\"G5613\"* a|strong=\"G1096\"* trumpet|strong=\"G4536\"* speaking|strong=\"G2980\"* with|strong=\"G3326\"* me|strong=\"G1473\"*, was|strong=\"G1096\"* one|strong=\"G3739\"* saying|strong=\"G3004\"*, “Come|strong=\"G1096\"* up|strong=\"G1210\"* here|strong=\"G5602\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* will|strong=\"G2532\"* show|strong=\"G1166\"* you|strong=\"G4771\"* the|strong=\"G1722\"* things|strong=\"G3778\"* which|strong=\"G3739\"* must|strong=\"G1163\"* happen|strong=\"G1096\"* after|strong=\"G3326\"* this|strong=\"G3778\"*.”" + }, + { + "verseNum": 2, + "text": "Immediately|strong=\"G2112\"* I|strong=\"G2532\"* was|strong=\"G1096\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*. Behold|strong=\"G2400\"*, there|strong=\"G2532\"* was|strong=\"G1096\"* a|strong=\"G1096\"* throne|strong=\"G2362\"* set|strong=\"G2749\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*, and|strong=\"G2532\"* one|strong=\"G3588\"* sitting|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G1722\"* throne|strong=\"G2362\"*" + }, + { + "verseNum": 3, + "text": "that|strong=\"G3588\"* looked|strong=\"G2532\"* like|strong=\"G3664\"* a|strong=\"G2532\"* jasper|strong=\"G2393\"* stone|strong=\"G3037\"* and|strong=\"G2532\"* a|strong=\"G2532\"* sardius|strong=\"G4556\"*. There|strong=\"G2532\"* was|strong=\"G3588\"* a|strong=\"G2532\"* rainbow|strong=\"G2463\"* around|strong=\"G2943\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, like|strong=\"G3664\"* an|strong=\"G2532\"* emerald|strong=\"G4664\"* to|strong=\"G2532\"* look at|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "Around|strong=\"G1909\"* the|strong=\"G1722\"* throne|strong=\"G2362\"* were|strong=\"G3588\"* twenty-four|strong=\"G1501\"* thrones|strong=\"G2362\"*. On|strong=\"G1909\"* the|strong=\"G1722\"* thrones|strong=\"G2362\"* were|strong=\"G3588\"* twenty-four|strong=\"G1501\"* elders|strong=\"G4245\"* sitting|strong=\"G2521\"*, dressed|strong=\"G4016\"* in|strong=\"G1722\"* white|strong=\"G3022\"* garments|strong=\"G2440\"*, with|strong=\"G1722\"* crowns|strong=\"G4735\"* of|strong=\"G2532\"* gold|strong=\"G5552\"* on|strong=\"G1909\"* their|strong=\"G2532\"* heads|strong=\"G2776\"*." + }, + { + "verseNum": 5, + "text": "Out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* throne|strong=\"G2362\"* proceed|strong=\"G1607\"* lightnings, sounds|strong=\"G5456\"*, and|strong=\"G2532\"* thunders|strong=\"G1027\"*. There|strong=\"G2532\"* were|strong=\"G1510\"* seven|strong=\"G2033\"* lamps|strong=\"G2985\"* of|strong=\"G1537\"* fire|strong=\"G4442\"* burning|strong=\"G2545\"* before|strong=\"G1799\"* his|strong=\"G2532\"* throne|strong=\"G2362\"*, which|strong=\"G3739\"* are|strong=\"G1510\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* Spirits|strong=\"G4151\"* of|strong=\"G1537\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 6, + "text": "Before|strong=\"G1799\"* the|strong=\"G1722\"* throne|strong=\"G2362\"* was|strong=\"G3588\"* something|strong=\"G3788\"* like|strong=\"G5613\"* a|strong=\"G5613\"* sea|strong=\"G2281\"* of|strong=\"G2532\"* glass|strong=\"G5193\"*, similar|strong=\"G3664\"* to|strong=\"G2532\"* crystal|strong=\"G2930\"*. In|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2532\"* the|strong=\"G1722\"* throne|strong=\"G2362\"*, and|strong=\"G2532\"* around|strong=\"G2945\"* the|strong=\"G1722\"* throne|strong=\"G2362\"* were|strong=\"G3588\"* four|strong=\"G5064\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"* full|strong=\"G1073\"* of|strong=\"G2532\"* eyes|strong=\"G3788\"* before|strong=\"G1799\"* and|strong=\"G2532\"* behind|strong=\"G3693\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"G2532\"* first|strong=\"G4413\"* creature|strong=\"G2226\"* was|strong=\"G3588\"* like|strong=\"G5613\"* a|strong=\"G2192\"* lion|strong=\"G3023\"*, the|strong=\"G2532\"* second|strong=\"G1208\"* creature|strong=\"G2226\"* like|strong=\"G5613\"* a|strong=\"G2192\"* calf|strong=\"G3448\"*, the|strong=\"G2532\"* third|strong=\"G5154\"* creature|strong=\"G2226\"* had|strong=\"G2192\"* a|strong=\"G2192\"* face|strong=\"G4383\"* like|strong=\"G5613\"* a|strong=\"G2192\"* man|strong=\"G4413\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* fourth|strong=\"G5067\"* was|strong=\"G3588\"* like|strong=\"G5613\"* a|strong=\"G2192\"* flying|strong=\"G4072\"* eagle." + }, + { + "verseNum": 8, + "text": "The|strong=\"G2532\"* four|strong=\"G5064\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"*, each|strong=\"G2596\"* one|strong=\"G1520\"* of|strong=\"G2250\"* them|strong=\"G3588\"* having|strong=\"G2192\"* six|strong=\"G1803\"* wings|strong=\"G4420\"*, are|strong=\"G1510\"* full|strong=\"G1073\"* of|strong=\"G2250\"* eyes|strong=\"G3788\"* around|strong=\"G2943\"* and|strong=\"G2532\"* within|strong=\"G2081\"*. They|strong=\"G2532\"* have|strong=\"G2192\"* no|strong=\"G3756\"* rest|strong=\"G1510\"* day|strong=\"G2250\"* and|strong=\"G2532\"* night|strong=\"G3571\"*, saying|strong=\"G3004\"*, “Holy, holy, holy+ 4:8 Hodges/Farstad MT reads “holy” 9 times instead of 3.* is|strong=\"G1510\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* God|strong=\"G2316\"*, the|strong=\"G2532\"* Almighty|strong=\"G3841\"*, who|strong=\"G3588\"* was|strong=\"G1510\"* and|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G1510\"* and|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G1510\"* to|strong=\"G2532\"* come|strong=\"G2064\"*!”" + }, + { + "verseNum": 9, + "text": "When|strong=\"G3752\"* the|strong=\"G2532\"* living|strong=\"G2198\"* creatures|strong=\"G2226\"* give|strong=\"G1325\"* glory|strong=\"G1391\"*, honor|strong=\"G5092\"*, and|strong=\"G2532\"* thanks|strong=\"G2169\"* to|strong=\"G1519\"* him|strong=\"G3588\"* who|strong=\"G3588\"* sits|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, to|strong=\"G1519\"* him|strong=\"G3588\"* who|strong=\"G3588\"* lives|strong=\"G2198\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*," + }, + { + "verseNum": 10, + "text": "the|strong=\"G2532\"* twenty-four|strong=\"G1501\"* elders|strong=\"G4245\"* fall|strong=\"G4098\"* down|strong=\"G4098\"* before|strong=\"G1799\"* him|strong=\"G3588\"* who|strong=\"G3588\"* sits|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* throne|strong=\"G2362\"* and|strong=\"G2532\"* worship|strong=\"G4352\"* him|strong=\"G3588\"* who|strong=\"G3588\"* lives|strong=\"G2198\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*, and|strong=\"G2532\"* throw|strong=\"G4098\"* their|strong=\"G2532\"* crowns|strong=\"G4735\"* before|strong=\"G1799\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 11, + "text": "“Worthy are|strong=\"G1510\"* you|strong=\"G4771\"*, our|strong=\"G2316\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* God|strong=\"G2316\"*, the|strong=\"G2532\"* Holy One|strong=\"G3956\"*,+ 4:11 TR omits “and God, the Holy One,”* to|strong=\"G2532\"* receive|strong=\"G2983\"* the|strong=\"G2532\"* glory|strong=\"G1391\"*, the|strong=\"G2532\"* honor|strong=\"G5092\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* power|strong=\"G1411\"*, for|strong=\"G3754\"* you|strong=\"G4771\"* created|strong=\"G2936\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G2532\"* because|strong=\"G3754\"* of|strong=\"G1223\"* your|strong=\"G1223\"* desire|strong=\"G2307\"* they|strong=\"G2532\"* existed|strong=\"G1510\"* and|strong=\"G2532\"* were|strong=\"G1510\"* created|strong=\"G2936\"*!”" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"*, in|strong=\"G1909\"* the|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, a|strong=\"G2532\"* book|strong=\"G3588\"* written|strong=\"G1125\"* inside|strong=\"G2081\"* and|strong=\"G2532\"* outside, sealed|strong=\"G2696\"* shut with|strong=\"G2532\"* seven|strong=\"G2033\"* seals|strong=\"G4973\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G2532\"* mighty|strong=\"G2478\"* angel proclaiming|strong=\"G2784\"* with|strong=\"G1722\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, “Who|strong=\"G5101\"* is|strong=\"G3588\"* worthy to|strong=\"G2532\"* open the|strong=\"G1722\"* book|strong=\"G3588\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* break|strong=\"G3089\"* its|strong=\"G3089\"* seals|strong=\"G4973\"*?”" + }, + { + "verseNum": 3, + "text": "No|strong=\"G3762\"* one|strong=\"G3762\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"* above|strong=\"G1909\"*, or|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, or|strong=\"G2532\"* under|strong=\"G5270\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, was|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2532\"* open the|strong=\"G1722\"* book|strong=\"G3588\"* or|strong=\"G2532\"* to|strong=\"G2532\"* look in|strong=\"G1722\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"G2532\"* I|strong=\"G1473\"* wept|strong=\"G2799\"* much|strong=\"G4183\"*, because|strong=\"G3754\"* no|strong=\"G3762\"* one|strong=\"G3762\"* was|strong=\"G3588\"* found|strong=\"G2147\"* worthy to|strong=\"G2532\"* open the|strong=\"G2532\"* book|strong=\"G3588\"* or|strong=\"G2532\"* to|strong=\"G2532\"* look in|strong=\"G2532\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 5, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* said|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, “Don’t|strong=\"G3588\"* weep|strong=\"G2799\"*. Behold|strong=\"G2400\"*, the|strong=\"G2532\"* Lion|strong=\"G3023\"* who|strong=\"G3588\"* is|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G2532\"* tribe|strong=\"G5443\"* of|strong=\"G1537\"* Judah|strong=\"G2455\"*, the|strong=\"G2532\"* Root|strong=\"G4491\"* of|strong=\"G1537\"* David|strong=\"G1138\"*, has|strong=\"G3708\"* overcome|strong=\"G3528\"*: he|strong=\"G2532\"* who|strong=\"G3588\"* opens the|strong=\"G2532\"* book|strong=\"G3588\"* and|strong=\"G2532\"* its|strong=\"G1537\"* seven|strong=\"G2033\"* seals|strong=\"G4973\"*.”" + }, + { + "verseNum": 6, + "text": "I|strong=\"G3739\"* saw|strong=\"G3708\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G4151\"* the|strong=\"G1722\"* throne|strong=\"G2362\"* and|strong=\"G2532\"* of|strong=\"G4151\"* the|strong=\"G1722\"* four|strong=\"G5064\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G4151\"* the|strong=\"G1722\"* elders|strong=\"G4245\"*, a|strong=\"G2192\"* Lamb standing|strong=\"G2476\"*, as|strong=\"G5613\"* though|strong=\"G5613\"* it|strong=\"G2532\"* had|strong=\"G2192\"* been|strong=\"G1510\"* slain|strong=\"G4969\"*, having|strong=\"G2192\"* seven|strong=\"G2033\"* horns|strong=\"G2768\"* and|strong=\"G2532\"* seven|strong=\"G2033\"* eyes|strong=\"G3788\"*, which|strong=\"G3739\"* are|strong=\"G1510\"* the|strong=\"G1722\"* seven|strong=\"G2033\"* Spirits|strong=\"G4151\"* of|strong=\"G4151\"* God|strong=\"G2316\"*, sent|strong=\"G2316\"* out|strong=\"G2532\"* into|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* came|strong=\"G2064\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* took|strong=\"G2983\"* it|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G1537\"* him|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"G2532\"* when|strong=\"G3753\"* he|strong=\"G2532\"* had|strong=\"G2192\"* taken|strong=\"G2983\"* the|strong=\"G2532\"* book|strong=\"G3588\"*, the|strong=\"G2532\"* four|strong=\"G5064\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"* and|strong=\"G2532\"* the|strong=\"G2532\"* twenty-four|strong=\"G1501\"* elders|strong=\"G4245\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* before|strong=\"G1799\"* the|strong=\"G2532\"* Lamb, each|strong=\"G1538\"* one|strong=\"G1538\"* having|strong=\"G2192\"* a|strong=\"G2192\"* harp|strong=\"G2788\"*, and|strong=\"G2532\"* golden|strong=\"G5552\"* bowls|strong=\"G5357\"* full|strong=\"G1073\"* of|strong=\"G2532\"* incense|strong=\"G2368\"*, which|strong=\"G3739\"* are|strong=\"G1510\"* the|strong=\"G2532\"* prayers|strong=\"G4335\"* of|strong=\"G2532\"* the|strong=\"G2532\"* saints." + }, + { + "verseNum": 9, + "text": "They|strong=\"G2532\"* sang a|strong=\"G2532\"* new|strong=\"G2537\"* song|strong=\"G5603\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* made|strong=\"G4160\"* us|strong=\"G4160\"* kings|strong=\"G3588\"* and|strong=\"G2532\"* priests|strong=\"G2409\"* to|strong=\"G2532\"* our|strong=\"G2316\"* God|strong=\"G2316\"*;" + }, + { + "verseNum": 11, + "text": "I|strong=\"G2532\"* looked|strong=\"G3708\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* heard something|strong=\"G4183\"* like|strong=\"G5613\"* a|strong=\"G5613\"* voice|strong=\"G5456\"* of|strong=\"G2532\"* many|strong=\"G4183\"* angels around|strong=\"G2945\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, the|strong=\"G2532\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*. The|strong=\"G2532\"* number of|strong=\"G2532\"* them|strong=\"G3588\"* was|strong=\"G1510\"* ten|strong=\"G3461\"* thousands|strong=\"G3461\"* of|strong=\"G2532\"* ten|strong=\"G3461\"* thousands|strong=\"G3461\"*, and|strong=\"G2532\"* thousands|strong=\"G3461\"* of|strong=\"G2532\"* thousands|strong=\"G3461\"*," + }, + { + "verseNum": 12, + "text": "saying|strong=\"G3004\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, “Worthy is|strong=\"G1510\"* the|strong=\"G2532\"* Lamb|strong=\"G3004\"* who|strong=\"G3588\"* has|strong=\"G1510\"* been|strong=\"G1510\"* killed to|strong=\"G2532\"* receive|strong=\"G2983\"* the|strong=\"G2532\"* power|strong=\"G1411\"*, wealth|strong=\"G4149\"*, wisdom|strong=\"G4678\"*, strength|strong=\"G2479\"*, honor|strong=\"G5092\"*, glory|strong=\"G1391\"*, and|strong=\"G2532\"* blessing|strong=\"G2129\"*!”" + }, + { + "verseNum": 13, + "text": "I|strong=\"G3739\"* heard every|strong=\"G3956\"* created|strong=\"G2938\"* thing|strong=\"G3956\"* which|strong=\"G3739\"* is|strong=\"G3588\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*, on|strong=\"G1909\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, under|strong=\"G5270\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, on|strong=\"G1909\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*, and|strong=\"G2532\"* everything|strong=\"G3956\"* in|strong=\"G1722\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “To|strong=\"G1519\"* him|strong=\"G3588\"* who|strong=\"G3739\"* sits|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G1722\"* throne|strong=\"G2362\"* and|strong=\"G2532\"* to|strong=\"G1519\"* the|strong=\"G1722\"* Lamb|strong=\"G3004\"* be|strong=\"G2532\"* the|strong=\"G1722\"* blessing|strong=\"G2129\"*, the|strong=\"G1722\"* honor|strong=\"G5092\"*, the|strong=\"G1722\"* glory|strong=\"G1391\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* dominion|strong=\"G2904\"*, forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*! Amen!”+ 5:13 TR omits “Amen!”*" + }, + { + "verseNum": 14, + "text": "The|strong=\"G2532\"* four|strong=\"G5064\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"* said|strong=\"G3004\"*, “Amen!” Then|strong=\"G2532\"* the|strong=\"G2532\"*+ 5:14 TR adds “twenty-four”* elders|strong=\"G4245\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* and|strong=\"G2532\"* worshiped|strong=\"G4352\"*.+ 5:14 TR adds “the one living forever and ever”*" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* that|strong=\"G3588\"* the|strong=\"G2532\"* Lamb|strong=\"G3004\"* opened one|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* seals|strong=\"G4973\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* heard one|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G2532\"* four|strong=\"G5064\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"* saying|strong=\"G3004\"*, as|strong=\"G5613\"* with|strong=\"G1537\"* a|strong=\"G5613\"* voice|strong=\"G5456\"* of|strong=\"G1537\"* thunder|strong=\"G1027\"*, “Come|strong=\"G2064\"* and|strong=\"G2532\"* see|strong=\"G3708\"*!”" + }, + { + "verseNum": 2, + "text": "Then|strong=\"G2532\"* a|strong=\"G2192\"* white|strong=\"G3022\"* horse|strong=\"G2462\"* appeared|strong=\"G3708\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* it|strong=\"G2532\"* had|strong=\"G2192\"* a|strong=\"G2192\"* bow|strong=\"G5115\"*. A|strong=\"G2192\"* crown|strong=\"G4735\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* came|strong=\"G1831\"* out|strong=\"G1831\"* conquering|strong=\"G3528\"*, and|strong=\"G2532\"* to|strong=\"G2443\"* conquer|strong=\"G3528\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"G3753\"* he|strong=\"G2532\"* opened the|strong=\"G2532\"* second|strong=\"G1208\"* seal|strong=\"G4973\"*, I|strong=\"G2532\"* heard the|strong=\"G2532\"* second|strong=\"G1208\"* living|strong=\"G2226\"* creature|strong=\"G2226\"* saying|strong=\"G3004\"*, “Come|strong=\"G2064\"*!”" + }, + { + "verseNum": 4, + "text": "Another|strong=\"G3588\"* came|strong=\"G1831\"* out|strong=\"G1831\"*, a|strong=\"G2532\"* red|strong=\"G4450\"* horse|strong=\"G2462\"*. To|strong=\"G2443\"* him|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* it|strong=\"G2532\"* was|strong=\"G3588\"* given|strong=\"G1325\"* power|strong=\"G1325\"* to|strong=\"G2443\"* take|strong=\"G2983\"* peace|strong=\"G1515\"* from|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, and|strong=\"G2532\"* that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G3588\"* kill|strong=\"G4969\"* one|strong=\"G3588\"* another|strong=\"G3588\"*. There|strong=\"G2532\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2443\"* him|strong=\"G3588\"* a|strong=\"G2532\"* great|strong=\"G3173\"* sword|strong=\"G3162\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"G3753\"* he|strong=\"G2532\"* opened the|strong=\"G1722\"* third|strong=\"G5154\"* seal|strong=\"G4973\"*, I|strong=\"G2532\"* heard the|strong=\"G1722\"* third|strong=\"G5154\"* living|strong=\"G2226\"* creature|strong=\"G2226\"* saying|strong=\"G3004\"*, “Come|strong=\"G2064\"* and|strong=\"G2532\"* see|strong=\"G3708\"*!” And|strong=\"G2532\"* behold|strong=\"G2400\"*, a|strong=\"G2192\"* black|strong=\"G3189\"* horse|strong=\"G2462\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* it|strong=\"G2532\"* had|strong=\"G2192\"* a|strong=\"G2192\"* balance in|strong=\"G1722\"* his|strong=\"G1909\"* hand|strong=\"G5495\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"G2532\"* heard a|strong=\"G5613\"* voice|strong=\"G5456\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2532\"* the|strong=\"G1722\"* four|strong=\"G5064\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"* saying|strong=\"G3004\"*, “A|strong=\"G5613\"* choenix+ 6:6 A choenix is a dry volume measure that is a little more than a liter (a little more than a quart).* of|strong=\"G2532\"* wheat|strong=\"G4621\"* for|strong=\"G1722\"* a|strong=\"G5613\"* denarius|strong=\"G1220\"*, and|strong=\"G2532\"* three|strong=\"G5140\"* choenix of|strong=\"G2532\"* barley|strong=\"G2915\"* for|strong=\"G1722\"* a|strong=\"G5613\"* denarius|strong=\"G1220\"*! Don’t|strong=\"G3588\"* damage the|strong=\"G1722\"* oil|strong=\"G1637\"* and|strong=\"G2532\"* the|strong=\"G1722\"* wine|strong=\"G3631\"*!”" + }, + { + "verseNum": 7, + "text": "When|strong=\"G3753\"* he|strong=\"G2532\"* opened the|strong=\"G2532\"* fourth|strong=\"G5067\"* seal|strong=\"G4973\"*, I|strong=\"G2532\"* heard the|strong=\"G2532\"* fourth|strong=\"G5067\"* living|strong=\"G2226\"* creature|strong=\"G2226\"* saying|strong=\"G3004\"*, “Come|strong=\"G2064\"* and|strong=\"G2532\"* see!”" + }, + { + "verseNum": 8, + "text": "And|strong=\"G2532\"* behold|strong=\"G2400\"*, a|strong=\"G2532\"* pale|strong=\"G5515\"* horse|strong=\"G2462\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G5259\"* he|strong=\"G2532\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* it|strong=\"G2532\"* was|strong=\"G3588\"* Death|strong=\"G2288\"*. Hades+ 6:8 or, Hell* followed with|strong=\"G3326\"* him|strong=\"G3588\"*. Authority|strong=\"G1849\"* over|strong=\"G1909\"* one|strong=\"G3588\"* fourth|strong=\"G5067\"* of|strong=\"G5259\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, to|strong=\"G2532\"* kill with|strong=\"G3326\"* the|strong=\"G1722\"* sword|strong=\"G4501\"*, with|strong=\"G3326\"* famine|strong=\"G3042\"*, with|strong=\"G3326\"* death|strong=\"G2288\"*, and|strong=\"G2532\"* by|strong=\"G1722\"* the|strong=\"G1722\"* wild|strong=\"G2342\"* animals of|strong=\"G5259\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"G3753\"* he|strong=\"G2532\"* opened the|strong=\"G2532\"* fifth|strong=\"G3991\"* seal|strong=\"G4973\"*, I|strong=\"G3739\"* saw|strong=\"G3708\"* underneath|strong=\"G5270\"* the|strong=\"G2532\"* altar|strong=\"G2379\"* the|strong=\"G2532\"* souls|strong=\"G5590\"* of|strong=\"G3056\"* those|strong=\"G3588\"* who|strong=\"G3739\"* had|strong=\"G2192\"* been|strong=\"G2192\"* killed for|strong=\"G1223\"* the|strong=\"G2532\"* Word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* for|strong=\"G1223\"* the|strong=\"G2532\"* testimony|strong=\"G3141\"* of|strong=\"G3056\"* the|strong=\"G2532\"* Lamb which|strong=\"G3739\"* they|strong=\"G2532\"* had|strong=\"G2192\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"G2532\"* cried|strong=\"G2896\"* with|strong=\"G1537\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, saying|strong=\"G3004\"*, “How|strong=\"G2193\"* long|strong=\"G2193\"*, Master|strong=\"G1203\"*, the|strong=\"G2532\"* holy and|strong=\"G2532\"* true|strong=\"G3588\"*, until|strong=\"G2193\"* you|strong=\"G3004\"* judge|strong=\"G2919\"* and|strong=\"G2532\"* avenge|strong=\"G1556\"* our|strong=\"G2532\"* blood on|strong=\"G1909\"* those|strong=\"G3588\"* who|strong=\"G3588\"* dwell|strong=\"G2730\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*?”" + }, + { + "verseNum": 11, + "text": "A|strong=\"G5613\"* long|strong=\"G5550\"* white|strong=\"G3022\"* robe|strong=\"G4749\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2443\"* each|strong=\"G1538\"* of|strong=\"G2532\"* them|strong=\"G3588\"*. They|strong=\"G2532\"* were|strong=\"G3588\"* told that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G3195\"* rest yet|strong=\"G2089\"* for|strong=\"G2532\"* a|strong=\"G5613\"* while|strong=\"G5613\"*, until|strong=\"G2193\"* their|strong=\"G2532\"* fellow|strong=\"G4889\"* servants|strong=\"G4889\"* and|strong=\"G2532\"* their|strong=\"G2532\"* brothers,+ 6:11 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* who|strong=\"G3588\"* would|strong=\"G3195\"* also|strong=\"G2532\"* be|strong=\"G2532\"* killed even|strong=\"G2532\"* as|strong=\"G5613\"* they|strong=\"G2532\"* were|strong=\"G3588\"*, should|strong=\"G3195\"* complete|strong=\"G4137\"* their|strong=\"G2532\"* course." + }, + { + "verseNum": 12, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* when|strong=\"G3753\"* he|strong=\"G2532\"* opened the|strong=\"G2532\"* sixth|strong=\"G1623\"* seal|strong=\"G4973\"*, and|strong=\"G2532\"* there|strong=\"G2532\"* was|strong=\"G1096\"* a|strong=\"G1096\"* great|strong=\"G3173\"* earthquake|strong=\"G4578\"*. The|strong=\"G2532\"* sun|strong=\"G2246\"* became|strong=\"G1096\"* black|strong=\"G3189\"* as|strong=\"G5613\"* sackcloth|strong=\"G4526\"* made|strong=\"G1096\"* of|strong=\"G2532\"* hair|strong=\"G5155\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* moon|strong=\"G4582\"* became|strong=\"G1096\"* as|strong=\"G5613\"* blood." + }, + { + "verseNum": 13, + "text": "The|strong=\"G2532\"* stars of|strong=\"G5259\"* the|strong=\"G2532\"* sky|strong=\"G3772\"* fell|strong=\"G4098\"* to|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, like|strong=\"G5613\"* a|strong=\"G5613\"* fig|strong=\"G4808\"* tree|strong=\"G4808\"* dropping its|strong=\"G5259\"* unripe|strong=\"G3653\"* figs|strong=\"G3653\"* when|strong=\"G5613\"* it|strong=\"G2532\"* is|strong=\"G3588\"* shaken|strong=\"G4579\"* by|strong=\"G5259\"* a|strong=\"G5613\"* great|strong=\"G3173\"* wind." + }, + { + "verseNum": 14, + "text": "The|strong=\"G2532\"* sky|strong=\"G3772\"* was|strong=\"G3588\"* removed like|strong=\"G5613\"* a|strong=\"G5613\"* scroll when|strong=\"G5613\"* it|strong=\"G2532\"* is|strong=\"G3588\"* rolled|strong=\"G1667\"* up|strong=\"G1667\"*. Every|strong=\"G3956\"* mountain|strong=\"G3735\"* and|strong=\"G2532\"* island|strong=\"G3520\"* was|strong=\"G3588\"* moved|strong=\"G2795\"* out|strong=\"G1537\"* of|strong=\"G1537\"* its|strong=\"G3956\"* place|strong=\"G5117\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"G2532\"* kings|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, the|strong=\"G2532\"* princes, the|strong=\"G2532\"* commanding officers, the|strong=\"G2532\"* rich|strong=\"G4145\"*, the|strong=\"G2532\"* strong|strong=\"G2478\"*, and|strong=\"G2532\"* every|strong=\"G3956\"* slave|strong=\"G1401\"* and|strong=\"G2532\"* free|strong=\"G1658\"* person, hid|strong=\"G2928\"* themselves|strong=\"G1438\"* in|strong=\"G1519\"* the|strong=\"G2532\"* caves|strong=\"G4693\"* and|strong=\"G2532\"* in|strong=\"G1519\"* the|strong=\"G2532\"* rocks|strong=\"G4073\"* of|strong=\"G2532\"* the|strong=\"G2532\"* mountains|strong=\"G3735\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"G2532\"* told|strong=\"G3004\"* the|strong=\"G2532\"* mountains|strong=\"G3735\"* and|strong=\"G2532\"* the|strong=\"G2532\"* rocks|strong=\"G4073\"*, “Fall|strong=\"G4098\"* on|strong=\"G1909\"* us|strong=\"G3004\"*, and|strong=\"G2532\"* hide|strong=\"G2928\"* us|strong=\"G3004\"* from|strong=\"G2532\"* the|strong=\"G2532\"* face|strong=\"G4383\"* of|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* sits|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, and|strong=\"G2532\"* from|strong=\"G2532\"* the|strong=\"G2532\"* wrath|strong=\"G3709\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lamb|strong=\"G3004\"*," + }, + { + "verseNum": 17, + "text": "for|strong=\"G3754\"* the|strong=\"G2532\"* great|strong=\"G3173\"* day|strong=\"G2250\"* of|strong=\"G2250\"* his|strong=\"G2532\"* wrath|strong=\"G3709\"* has|strong=\"G5101\"* come|strong=\"G2064\"*, and|strong=\"G2532\"* who|strong=\"G5101\"* is|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2532\"* stand|strong=\"G2476\"*?”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* this|strong=\"G3778\"*, I|strong=\"G2532\"* saw|strong=\"G3708\"* four|strong=\"G5064\"* angels standing|strong=\"G2476\"* at|strong=\"G1909\"* the|strong=\"G2532\"* four|strong=\"G5064\"* corners|strong=\"G1137\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, holding|strong=\"G2902\"* the|strong=\"G2532\"* four|strong=\"G5064\"* winds of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* no|strong=\"G3361\"* wind|strong=\"G4154\"* would|strong=\"G2532\"* blow|strong=\"G4154\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, or|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, or|strong=\"G2532\"* on|strong=\"G1909\"* any|strong=\"G3956\"* tree|strong=\"G1186\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"G3739\"* saw|strong=\"G3708\"* another|strong=\"G3739\"* angel ascend from|strong=\"G2532\"* the|strong=\"G2532\"* sunrise, having|strong=\"G2192\"* the|strong=\"G2532\"* seal|strong=\"G4973\"* of|strong=\"G2316\"* the|strong=\"G2532\"* living|strong=\"G2198\"* God|strong=\"G2316\"*. He|strong=\"G2532\"* cried|strong=\"G2896\"* with|strong=\"G2532\"* a|strong=\"G2192\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* to|strong=\"G2532\"* the|strong=\"G2532\"* four|strong=\"G5064\"* angels to|strong=\"G2532\"* whom|strong=\"G3739\"* it|strong=\"G2532\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2532\"* harm the|strong=\"G2532\"* earth|strong=\"G1093\"* and|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*," + }, + { + "verseNum": 3, + "text": "saying|strong=\"G3004\"*, “Don’t|strong=\"G3588\"* harm the|strong=\"G1909\"* earth|strong=\"G1093\"*, the|strong=\"G1909\"* sea|strong=\"G2281\"*, or|strong=\"G3383\"* the|strong=\"G1909\"* trees|strong=\"G1186\"*, until we|strong=\"G2249\"* have|strong=\"G1473\"* sealed|strong=\"G4972\"* the|strong=\"G1909\"* bondservants of|strong=\"G2316\"* our|strong=\"G2316\"* God|strong=\"G2316\"* on|strong=\"G1909\"* their|strong=\"G3588\"* foreheads|strong=\"G3359\"*!”" + }, + { + "verseNum": 4, + "text": "I|strong=\"G2532\"* heard the|strong=\"G2532\"* number of|strong=\"G1537\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* sealed|strong=\"G4972\"*, one|strong=\"G3956\"* hundred|strong=\"G1540\"* forty-four|strong=\"G5062\"* thousand|strong=\"G5505\"*, sealed|strong=\"G4972\"* out|strong=\"G1537\"* of|strong=\"G1537\"* every|strong=\"G3956\"* tribe|strong=\"G5443\"* of|strong=\"G1537\"* the|strong=\"G2532\"* children|strong=\"G5207\"* of|strong=\"G1537\"* Israel|strong=\"G2474\"*:" + }, + { + "verseNum": 5, + "text": "of|strong=\"G1537\"* the|strong=\"G1537\"* tribe|strong=\"G5443\"* of|strong=\"G1537\"* Judah|strong=\"G2455\"* twelve|strong=\"G1427\"* thousand|strong=\"G5505\"* were sealed|strong=\"G4972\"*," + }, + { + "verseNum": 6, + "text": "of|strong=\"G1537\"* the|strong=\"G1537\"* tribe|strong=\"G5443\"* of|strong=\"G1537\"* Asher twelve|strong=\"G1427\"* thousand|strong=\"G5505\"*," + }, + { + "verseNum": 7, + "text": "of|strong=\"G1537\"* the|strong=\"G1537\"* tribe|strong=\"G5443\"* of|strong=\"G1537\"* Simeon|strong=\"G4826\"* twelve|strong=\"G1427\"* thousand|strong=\"G5505\"*," + }, + { + "verseNum": 8, + "text": "of|strong=\"G1537\"* the|strong=\"G1537\"* tribe|strong=\"G5443\"* of|strong=\"G1537\"* Zebulun|strong=\"G2194\"* twelve|strong=\"G1427\"* thousand|strong=\"G5505\"*," + }, + { + "verseNum": 9, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3956\"* I|strong=\"G3739\"* looked|strong=\"G3708\"*, and|strong=\"G2532\"* behold|strong=\"G2400\"*, a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* which|strong=\"G3739\"* no|strong=\"G3762\"* man|strong=\"G3778\"* could|strong=\"G1410\"* count, out|strong=\"G1537\"* of|strong=\"G1537\"* every|strong=\"G3956\"* nation|strong=\"G1484\"* and|strong=\"G2532\"* of|strong=\"G1537\"* all|strong=\"G3956\"* tribes|strong=\"G5443\"*, peoples|strong=\"G2992\"*, and|strong=\"G2532\"* languages|strong=\"G1100\"*, standing|strong=\"G2476\"* before|strong=\"G1799\"* the|strong=\"G1722\"* throne|strong=\"G2362\"* and|strong=\"G2532\"* before|strong=\"G1799\"* the|strong=\"G1722\"* Lamb, dressed|strong=\"G4016\"* in|strong=\"G1722\"* white|strong=\"G3022\"* robes|strong=\"G4749\"*, with|strong=\"G3326\"* palm|strong=\"G5404\"* branches|strong=\"G5404\"* in|strong=\"G1722\"* their|strong=\"G2532\"* hands|strong=\"G5495\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"G2532\"* cried|strong=\"G2896\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, saying|strong=\"G3004\"*, “Salvation|strong=\"G4991\"* be|strong=\"G2532\"* to|strong=\"G2532\"* our|strong=\"G2316\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* sits|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lamb|strong=\"G3004\"*!”" + }, + { + "verseNum": 11, + "text": "All|strong=\"G3956\"* the|strong=\"G2532\"* angels were|strong=\"G3588\"* standing|strong=\"G2476\"* around|strong=\"G1909\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, the|strong=\"G2532\"* elders|strong=\"G4245\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* four|strong=\"G5064\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* fell|strong=\"G4098\"* on|strong=\"G1909\"* their|strong=\"G2532\"* faces|strong=\"G4383\"* before|strong=\"G1799\"* his|strong=\"G3956\"* throne|strong=\"G2362\"*, and|strong=\"G2532\"* worshiped|strong=\"G4352\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 12, + "text": "saying|strong=\"G3004\"*, “Amen! Blessing|strong=\"G2129\"*, glory|strong=\"G1391\"*, wisdom|strong=\"G4678\"*, thanksgiving|strong=\"G2169\"*, honor|strong=\"G5092\"*, power|strong=\"G1411\"*, and|strong=\"G2532\"* might|strong=\"G2479\"*, be|strong=\"G2532\"* to|strong=\"G1519\"* our|strong=\"G2316\"* God|strong=\"G2316\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*! Amen.”" + }, + { + "verseNum": 13, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* answered|strong=\"G3004\"*, saying|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, “These|strong=\"G3778\"* who|strong=\"G5101\"* are|strong=\"G1510\"* arrayed|strong=\"G4016\"* in|strong=\"G2532\"* the|strong=\"G2532\"* white|strong=\"G3022\"* robes|strong=\"G4749\"*, who|strong=\"G5101\"* are|strong=\"G1510\"* they|strong=\"G2532\"*, and|strong=\"G2532\"* where|strong=\"G4159\"* did|strong=\"G2532\"* they|strong=\"G2532\"* come|strong=\"G2064\"* from|strong=\"G1537\"*?”" + }, + { + "verseNum": 14, + "text": "I|strong=\"G1473\"* told|strong=\"G3004\"* him|strong=\"G3588\"*, “My|strong=\"G1722\"* lord|strong=\"G2962\"*, you|strong=\"G4771\"* know|strong=\"G1492\"*.”" + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"G1223\"* they|strong=\"G2532\"* are|strong=\"G1510\"* before|strong=\"G1799\"* the|strong=\"G1722\"* throne|strong=\"G2362\"* of|strong=\"G2250\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* serve|strong=\"G3000\"* him|strong=\"G3588\"* day|strong=\"G2250\"* and|strong=\"G2532\"* night|strong=\"G3571\"* in|strong=\"G1722\"* his|strong=\"G1438\"* temple|strong=\"G3485\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* sits|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G1722\"* throne|strong=\"G2362\"* will|strong=\"G2316\"* spread|strong=\"G4637\"* his|strong=\"G1438\"* tabernacle|strong=\"G4637\"* over|strong=\"G1909\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"G3588\"* will|strong=\"G3956\"* never|strong=\"G3756\"* be|strong=\"G3756\"* hungry|strong=\"G3983\"* or|strong=\"G3761\"* thirsty|strong=\"G1372\"* any|strong=\"G3956\"* more|strong=\"G2089\"*. The|strong=\"G3956\"* sun|strong=\"G2246\"* won’t|strong=\"G3588\"* beat|strong=\"G4098\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, nor|strong=\"G3761\"* any|strong=\"G3956\"* heat|strong=\"G2738\"*;" + }, + { + "verseNum": 17, + "text": "for|strong=\"G3754\"* the|strong=\"G2532\"* Lamb who|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1909\"* the|strong=\"G2532\"* middle|strong=\"G3319\"* of|strong=\"G1537\"* the|strong=\"G2532\"* throne|strong=\"G2362\"* shepherds them|strong=\"G3588\"* and|strong=\"G2532\"* leads|strong=\"G3594\"* them|strong=\"G3588\"* to|strong=\"G2532\"* springs|strong=\"G4077\"* of|strong=\"G1537\"* life-giving waters|strong=\"G5204\"*. And|strong=\"G2532\"* God|strong=\"G2316\"* will|strong=\"G2316\"* wipe|strong=\"G1813\"* away|strong=\"G1813\"* every|strong=\"G3956\"* tear|strong=\"G1144\"* from|strong=\"G1537\"* their|strong=\"G1438\"* eyes|strong=\"G3788\"*.”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G3752\"* he|strong=\"G2532\"* opened the|strong=\"G1722\"* seventh|strong=\"G1442\"* seal|strong=\"G4973\"*, there|strong=\"G2532\"* was|strong=\"G1096\"* silence|strong=\"G4602\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"* for|strong=\"G1722\"* about|strong=\"G5613\"* half|strong=\"G2256\"* an|strong=\"G2532\"* hour|strong=\"G2256\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"G3739\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* angels who|strong=\"G3739\"* stand|strong=\"G2476\"* before|strong=\"G1799\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* seven|strong=\"G2033\"* trumpets|strong=\"G4536\"* were|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 3, + "text": "Another|strong=\"G3588\"* angel came|strong=\"G2064\"* and|strong=\"G2532\"* stood|strong=\"G2476\"* over|strong=\"G1909\"* the|strong=\"G2532\"* altar|strong=\"G2379\"*, having|strong=\"G2192\"* a|strong=\"G2192\"* golden|strong=\"G5552\"* censer|strong=\"G3031\"*. Much|strong=\"G4183\"* incense|strong=\"G2368\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* should|strong=\"G3588\"* add|strong=\"G1325\"* it|strong=\"G2532\"* to|strong=\"G2443\"* the|strong=\"G2532\"* prayers|strong=\"G4335\"* of|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* saints on|strong=\"G1909\"* the|strong=\"G2532\"* golden|strong=\"G5552\"* altar|strong=\"G2379\"* which|strong=\"G3588\"* was|strong=\"G3588\"* before|strong=\"G1799\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"G2532\"* smoke|strong=\"G2586\"* of|strong=\"G1537\"* the|strong=\"G2532\"* incense|strong=\"G2368\"*, with|strong=\"G1537\"* the|strong=\"G2532\"* prayers|strong=\"G4335\"* of|strong=\"G1537\"* the|strong=\"G2532\"* saints, went|strong=\"G2532\"* up|strong=\"G2532\"* before|strong=\"G1799\"* God|strong=\"G2316\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* angel’s hand|strong=\"G5495\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"G2532\"* angel took|strong=\"G2983\"* the|strong=\"G2532\"* censer|strong=\"G3031\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* filled|strong=\"G1072\"* it|strong=\"G2532\"* with|strong=\"G1537\"* the|strong=\"G2532\"* fire|strong=\"G4442\"* of|strong=\"G1537\"* the|strong=\"G2532\"* altar|strong=\"G2379\"*, then|strong=\"G2532\"* threw it|strong=\"G2532\"* on|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*. Thunders|strong=\"G1027\"*, sounds|strong=\"G5456\"*, lightnings, and|strong=\"G2532\"* an|strong=\"G2532\"* earthquake|strong=\"G4578\"* followed|strong=\"G1096\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"G2532\"* seven|strong=\"G2033\"* angels who|strong=\"G3588\"* had|strong=\"G2192\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* trumpets|strong=\"G4536\"* prepared|strong=\"G2090\"* themselves|strong=\"G1438\"* to|strong=\"G2443\"* sound|strong=\"G4537\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"G1722\"* first|strong=\"G4413\"* sounded|strong=\"G4537\"*, and|strong=\"G2532\"* there|strong=\"G2532\"* followed|strong=\"G1096\"* hail|strong=\"G5464\"* and|strong=\"G2532\"* fire|strong=\"G4442\"*, mixed|strong=\"G3396\"* with|strong=\"G1722\"* blood, and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* thrown to|strong=\"G1519\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*. One|strong=\"G3956\"* third|strong=\"G5154\"* of|strong=\"G2532\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* was|strong=\"G1096\"* burned|strong=\"G2618\"* up|strong=\"G1519\"*,+ 8:7 TR omits “One third of the earth was burned up”* and|strong=\"G2532\"* one|strong=\"G3956\"* third|strong=\"G5154\"* of|strong=\"G2532\"* the|strong=\"G1722\"* trees|strong=\"G1186\"* were|strong=\"G3588\"* burned|strong=\"G2618\"* up|strong=\"G1519\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* green|strong=\"G5515\"* grass|strong=\"G5528\"* was|strong=\"G1096\"* burned|strong=\"G2618\"* up|strong=\"G1519\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"G2532\"* second|strong=\"G1208\"* angel sounded|strong=\"G4537\"*, and|strong=\"G2532\"* something like|strong=\"G5613\"* a|strong=\"G1096\"* great|strong=\"G3173\"* burning|strong=\"G2545\"* mountain|strong=\"G3735\"* was|strong=\"G1096\"* thrown into|strong=\"G1519\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*. One|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* became|strong=\"G1096\"* blood," + }, + { + "verseNum": 9, + "text": "and|strong=\"G2532\"* one|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G2532\"* the|strong=\"G1722\"* living|strong=\"G2192\"* creatures|strong=\"G2938\"* which|strong=\"G3588\"* were|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"* died|strong=\"G3588\"*. One|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G2532\"* the|strong=\"G1722\"* ships|strong=\"G4143\"* were|strong=\"G3588\"* destroyed|strong=\"G1311\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"G2532\"* third|strong=\"G5154\"* angel sounded|strong=\"G4537\"*, and|strong=\"G2532\"* a|strong=\"G5613\"* great|strong=\"G3173\"* star fell|strong=\"G4098\"* from|strong=\"G1537\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*, burning|strong=\"G2545\"* like|strong=\"G5613\"* a|strong=\"G5613\"* torch|strong=\"G2985\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* fell|strong=\"G4098\"* on|strong=\"G1909\"* one|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G1537\"* the|strong=\"G2532\"* rivers|strong=\"G4215\"*, and|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G2532\"* springs|strong=\"G4077\"* of|strong=\"G1537\"* water|strong=\"G5204\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G1537\"* the|strong=\"G2532\"* star is|strong=\"G3588\"* “Wormwood|strong=\"G4183\"*.” One|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G1537\"* the|strong=\"G2532\"* waters|strong=\"G5204\"* became|strong=\"G1096\"* wormwood|strong=\"G4183\"*. Many|strong=\"G4183\"* people|strong=\"G3004\"* died|strong=\"G3588\"* from|strong=\"G1537\"* the|strong=\"G2532\"* waters|strong=\"G5204\"*, because|strong=\"G3754\"* they|strong=\"G2532\"* were|strong=\"G3588\"* made|strong=\"G1096\"* bitter|strong=\"G4087\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"G2532\"* fourth|strong=\"G5067\"* angel sounded|strong=\"G4537\"*, and|strong=\"G2532\"* one|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G2250\"* the|strong=\"G2532\"* sun|strong=\"G2246\"* was|strong=\"G3588\"* struck|strong=\"G4141\"*, and|strong=\"G2532\"* one|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G2250\"* the|strong=\"G2532\"* moon|strong=\"G4582\"*, and|strong=\"G2532\"* one|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G2250\"* the|strong=\"G2532\"* stars, so|strong=\"G2443\"* that|strong=\"G2443\"* one|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G2250\"* them|strong=\"G3588\"* would|strong=\"G2532\"* be|strong=\"G2532\"* darkened|strong=\"G4654\"*; and|strong=\"G2532\"* the|strong=\"G2532\"* day|strong=\"G2250\"* wouldn’t|strong=\"G3588\"* shine|strong=\"G5316\"* for|strong=\"G2532\"* one|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G2250\"* it|strong=\"G2532\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* night|strong=\"G3571\"* in|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G3668\"* way|strong=\"G3668\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* heard an|strong=\"G2532\"* eagle,+ 8:13 TR reads “angel” instead of “eagle” * flying|strong=\"G4072\"* in|strong=\"G1722\"* mid heaven|strong=\"G3321\"*, saying|strong=\"G3004\"* with|strong=\"G1722\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, “Woe|strong=\"G3759\"*! Woe|strong=\"G3759\"*! Woe|strong=\"G3759\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* dwell|strong=\"G2730\"* on|strong=\"G1909\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, because|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* other|strong=\"G3062\"* blasts|strong=\"G5456\"* of|strong=\"G1537\"* the|strong=\"G1722\"* trumpets|strong=\"G4536\"* of|strong=\"G1537\"* the|strong=\"G1722\"* three|strong=\"G5140\"* angels, who|strong=\"G3588\"* are|strong=\"G3588\"* yet|strong=\"G2532\"* to|strong=\"G2532\"* sound|strong=\"G5456\"*!”" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"G2532\"* fifth|strong=\"G3991\"* angel sounded|strong=\"G4537\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G2532\"* star from|strong=\"G1537\"* the|strong=\"G2532\"* sky|strong=\"G3772\"* which|strong=\"G3588\"* had|strong=\"G2532\"* fallen|strong=\"G4098\"* to|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*. The|strong=\"G2532\"* key|strong=\"G2807\"* to|strong=\"G1519\"* the|strong=\"G2532\"* pit|strong=\"G5421\"* of|strong=\"G1537\"* the|strong=\"G2532\"* abyss was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* opened the|strong=\"G2532\"* pit|strong=\"G5421\"* of|strong=\"G1537\"* the|strong=\"G2532\"* abyss, and|strong=\"G2532\"* smoke|strong=\"G2586\"* went|strong=\"G2532\"* up|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* pit|strong=\"G5421\"*, like|strong=\"G5613\"* the|strong=\"G2532\"* smoke|strong=\"G2586\"* from|strong=\"G1537\"* a|strong=\"G5613\"*+ 9:2 TR adds “great”* burning furnace|strong=\"G2575\"*. The|strong=\"G2532\"* sun|strong=\"G2246\"* and|strong=\"G2532\"* the|strong=\"G2532\"* air were|strong=\"G3588\"* darkened|strong=\"G4656\"* because|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* smoke|strong=\"G2586\"* from|strong=\"G1537\"* the|strong=\"G2532\"* pit|strong=\"G5421\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"G2532\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* smoke|strong=\"G2586\"* came|strong=\"G1831\"* locusts on|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, and|strong=\"G2532\"* power|strong=\"G1849\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, as|strong=\"G5613\"* the|strong=\"G2532\"* scorpions|strong=\"G4651\"* of|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* have|strong=\"G2192\"* power|strong=\"G1849\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* told that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G2316\"* not|strong=\"G3756\"* hurt the|strong=\"G2532\"* grass|strong=\"G5528\"* of|strong=\"G2316\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, neither|strong=\"G3761\"* any|strong=\"G3956\"* green|strong=\"G5515\"* thing|strong=\"G3956\"*, neither|strong=\"G3761\"* any|strong=\"G3956\"* tree|strong=\"G1186\"*, but|strong=\"G2532\"* only|strong=\"G1487\"* those|strong=\"G3588\"* people|strong=\"G3956\"* who|strong=\"G3588\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* seal|strong=\"G4973\"* on|strong=\"G1909\"* their|strong=\"G2532\"* foreheads|strong=\"G3359\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* given|strong=\"G1325\"* power|strong=\"G1325\"*, not|strong=\"G3361\"* to|strong=\"G2443\"* kill them|strong=\"G3588\"*, but|strong=\"G2532\"* to|strong=\"G2443\"* torment them|strong=\"G3588\"* for|strong=\"G2532\"* five|strong=\"G4002\"* months|strong=\"G3376\"*. Their|strong=\"G1438\"* torment was|strong=\"G3588\"* like|strong=\"G5613\"* the|strong=\"G2532\"* torment of|strong=\"G2532\"* a|strong=\"G5613\"* scorpion|strong=\"G4651\"* when|strong=\"G3752\"* it|strong=\"G2532\"* strikes a|strong=\"G5613\"* person." + }, + { + "verseNum": 6, + "text": "In|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"* people|strong=\"G3361\"* will|strong=\"G2532\"* seek|strong=\"G2212\"* death|strong=\"G2288\"*, and|strong=\"G2532\"* will|strong=\"G2532\"* in|strong=\"G1722\"* no|strong=\"G3756\"* way|strong=\"G1722\"* find|strong=\"G2147\"* it|strong=\"G2532\"*. They|strong=\"G2532\"* will|strong=\"G2532\"* desire|strong=\"G1937\"* to|strong=\"G2532\"* die|strong=\"G2288\"*, and|strong=\"G2532\"* death|strong=\"G2288\"* will|strong=\"G2532\"* flee|strong=\"G5343\"* from|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"G2532\"* shapes|strong=\"G3667\"* of|strong=\"G2532\"* the|strong=\"G2532\"* locusts were|strong=\"G3588\"* like|strong=\"G5613\"* horses|strong=\"G2462\"* prepared|strong=\"G2090\"* for|strong=\"G1519\"* war|strong=\"G4171\"*. On|strong=\"G1909\"* their|strong=\"G2532\"* heads|strong=\"G2776\"* were|strong=\"G3588\"* something like|strong=\"G5613\"* golden crowns|strong=\"G4735\"*, and|strong=\"G2532\"* their|strong=\"G2532\"* faces|strong=\"G4383\"* were|strong=\"G3588\"* like|strong=\"G5613\"* people|strong=\"G4383\"*’s faces|strong=\"G4383\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"G2532\"* had|strong=\"G2192\"* hair|strong=\"G2359\"* like|strong=\"G5613\"* women|strong=\"G1135\"*’s|strong=\"G2192\"* hair|strong=\"G2359\"*, and|strong=\"G2532\"* their|strong=\"G2532\"* teeth|strong=\"G3599\"* were|strong=\"G1510\"* like|strong=\"G5613\"* those|strong=\"G3588\"* of|strong=\"G2532\"* lions|strong=\"G3023\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"G2532\"* had|strong=\"G2192\"* breastplates|strong=\"G2382\"* like|strong=\"G5613\"* breastplates|strong=\"G2382\"* of|strong=\"G2532\"* iron|strong=\"G4603\"*. The|strong=\"G2532\"* sound|strong=\"G5456\"* of|strong=\"G2532\"* their|strong=\"G2532\"* wings|strong=\"G4420\"* was|strong=\"G3588\"* like|strong=\"G5613\"* the|strong=\"G2532\"* sound|strong=\"G5456\"* of|strong=\"G2532\"* many|strong=\"G4183\"* chariots and|strong=\"G2532\"* horses|strong=\"G2462\"* rushing|strong=\"G5143\"* to|strong=\"G1519\"* war|strong=\"G4171\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"G2532\"* have|strong=\"G2192\"* tails|strong=\"G3769\"* like|strong=\"G3664\"* those|strong=\"G3588\"* of|strong=\"G2532\"* scorpions|strong=\"G4651\"*, with|strong=\"G1722\"* stingers|strong=\"G2759\"*. In|strong=\"G1722\"* their|strong=\"G2532\"* tails|strong=\"G3769\"* they|strong=\"G2532\"* have|strong=\"G2192\"* power|strong=\"G1849\"* to|strong=\"G2532\"* harm men|strong=\"G3588\"* for|strong=\"G1722\"* five|strong=\"G4002\"* months|strong=\"G3376\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"G2532\"* have|strong=\"G2192\"* over|strong=\"G1909\"* them|strong=\"G3588\"* as|strong=\"G1722\"* king|strong=\"G3588\"* the|strong=\"G1722\"* angel of|strong=\"G2532\"* the|strong=\"G1722\"* abyss. His|strong=\"G1909\"* name|strong=\"G3686\"* in|strong=\"G1722\"* Hebrew|strong=\"G1447\"* is|strong=\"G3588\"* “Abaddon”,+ 9:11 “Abaddon” is a Hebrew word that means “ruin”, “destruction”, or “the place of destruction”* but|strong=\"G2532\"* in|strong=\"G1722\"* Greek|strong=\"G1673\"*, he|strong=\"G2532\"* has|strong=\"G2192\"* the|strong=\"G1722\"* name|strong=\"G3686\"* “Apollyon”.+ 9:11 “Apollyon” means “Destroyer”.*" + }, + { + "verseNum": 12, + "text": "The|strong=\"G3588\"* first|strong=\"G1520\"* woe|strong=\"G3759\"* is|strong=\"G3588\"* past. Behold|strong=\"G2400\"*, there|strong=\"G3778\"* are|strong=\"G3588\"* still|strong=\"G2089\"* two|strong=\"G1417\"* woes|strong=\"G3759\"* coming|strong=\"G2064\"* after|strong=\"G3326\"* this|strong=\"G3778\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"G2532\"* sixth|strong=\"G1623\"* angel sounded|strong=\"G4537\"*. I|strong=\"G2532\"* heard a|strong=\"G2532\"* voice|strong=\"G5456\"* from|strong=\"G1537\"* the|strong=\"G2532\"* horns|strong=\"G2768\"* of|strong=\"G1537\"* the|strong=\"G2532\"* golden|strong=\"G5552\"* altar|strong=\"G2379\"* which|strong=\"G3588\"* is|strong=\"G3588\"* before|strong=\"G1799\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 14, + "text": "saying|strong=\"G3004\"* to|strong=\"G1909\"* the|strong=\"G1909\"* sixth|strong=\"G1623\"* angel who|strong=\"G3588\"* had|strong=\"G2192\"* the|strong=\"G1909\"* trumpet|strong=\"G4536\"*, “Free|strong=\"G3089\"* the|strong=\"G1909\"* four|strong=\"G5064\"* angels who|strong=\"G3588\"* are|strong=\"G3588\"* bound|strong=\"G1210\"* at|strong=\"G1909\"* the|strong=\"G1909\"* great|strong=\"G3173\"* river|strong=\"G4215\"* Euphrates|strong=\"G2166\"*!”" + }, + { + "verseNum": 15, + "text": "The|strong=\"G2532\"* four|strong=\"G5064\"* angels were|strong=\"G3588\"* freed who|strong=\"G3588\"* had|strong=\"G2532\"* been|strong=\"G2532\"* prepared|strong=\"G2090\"* for|strong=\"G1519\"* that|strong=\"G2443\"* hour|strong=\"G5610\"* and|strong=\"G2532\"* day|strong=\"G2250\"* and|strong=\"G2532\"* month|strong=\"G3376\"* and|strong=\"G2532\"* year|strong=\"G1763\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* kill one|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G2250\"* mankind." + }, + { + "verseNum": 16, + "text": "The|strong=\"G2532\"* number of|strong=\"G2532\"* the|strong=\"G2532\"* armies|strong=\"G4753\"* of|strong=\"G2532\"* the|strong=\"G2532\"* horsemen|strong=\"G2461\"* was|strong=\"G3588\"* two hundred million|strong=\"G3461\"*.+ 9:16 literally, “ten thousands of ten thousands”* I|strong=\"G2532\"* heard the|strong=\"G2532\"* number of|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "Thus|strong=\"G3779\"* I|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G1722\"* horses|strong=\"G2462\"* in|strong=\"G1722\"* the|strong=\"G1722\"* vision|strong=\"G3706\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, having|strong=\"G2192\"* breastplates|strong=\"G2382\"* of|strong=\"G1537\"* fiery|strong=\"G4442\"* red, hyacinth|strong=\"G5191\"* blue, and|strong=\"G2532\"* sulfur|strong=\"G2303\"* yellow|strong=\"G5191\"*; and|strong=\"G2532\"* the|strong=\"G1722\"* horses|strong=\"G2462\"*’ heads|strong=\"G2776\"* resembled lions|strong=\"G3023\"*’ heads|strong=\"G2776\"*. Out|strong=\"G1537\"* of|strong=\"G1537\"* their|strong=\"G2532\"* mouths|strong=\"G4750\"* proceed|strong=\"G1607\"* fire|strong=\"G4442\"*, smoke|strong=\"G2586\"*, and|strong=\"G2532\"* sulfur|strong=\"G2303\"*." + }, + { + "verseNum": 18, + "text": "By|strong=\"G1537\"* these|strong=\"G3778\"* three|strong=\"G5140\"* plagues|strong=\"G4127\"*, one|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G1537\"* mankind was|strong=\"G3588\"* killed: by|strong=\"G1537\"* the|strong=\"G2532\"* fire|strong=\"G4442\"*, the|strong=\"G2532\"* smoke|strong=\"G2586\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* sulfur|strong=\"G2303\"*, which|strong=\"G3588\"* proceeded|strong=\"G1607\"* out|strong=\"G1537\"* of|strong=\"G1537\"* their|strong=\"G2532\"* mouths|strong=\"G4750\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* power|strong=\"G1849\"* of|strong=\"G2532\"* the|strong=\"G1722\"* horses|strong=\"G2462\"* is|strong=\"G1510\"* in|strong=\"G1722\"* their|strong=\"G2532\"* mouths|strong=\"G4750\"* and|strong=\"G2532\"* in|strong=\"G1722\"* their|strong=\"G2532\"* tails|strong=\"G3769\"*. For|strong=\"G1063\"* their|strong=\"G2532\"* tails|strong=\"G3769\"* are|strong=\"G1510\"* like|strong=\"G3664\"* serpents|strong=\"G3789\"*, and|strong=\"G2532\"* have|strong=\"G2192\"* heads|strong=\"G2776\"*; and|strong=\"G2532\"* with|strong=\"G1722\"* them|strong=\"G3588\"* they|strong=\"G2532\"* harm." + }, + { + "verseNum": 20, + "text": "The|strong=\"G1722\"* rest|strong=\"G3062\"* of|strong=\"G1537\"* mankind, who|strong=\"G3739\"* were|strong=\"G3588\"* not|strong=\"G3756\"* killed with|strong=\"G1722\"* these|strong=\"G3778\"* plagues|strong=\"G4127\"*, didn’t|strong=\"G3588\"* repent|strong=\"G3340\"* of|strong=\"G1537\"* the|strong=\"G1722\"* works|strong=\"G2041\"* of|strong=\"G1537\"* their|strong=\"G2532\"* hands|strong=\"G5495\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* wouldn’t|strong=\"G3588\"* worship|strong=\"G4352\"* demons|strong=\"G1140\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* idols|strong=\"G1497\"* of|strong=\"G1537\"* gold|strong=\"G5552\"*, and|strong=\"G2532\"* of|strong=\"G1537\"* silver, and|strong=\"G2532\"* of|strong=\"G1537\"* brass|strong=\"G5470\"*, and|strong=\"G2532\"* of|strong=\"G1537\"* stone|strong=\"G3035\"*, and|strong=\"G2532\"* of|strong=\"G1537\"* wood|strong=\"G3585\"*, which|strong=\"G3739\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* see, hear, or|strong=\"G2532\"* walk|strong=\"G4043\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"G2532\"* didn’t|strong=\"G3588\"* repent|strong=\"G3340\"* of|strong=\"G1537\"* their|strong=\"G2532\"* murders|strong=\"G5408\"*, their|strong=\"G2532\"* sorceries|strong=\"G5331\"*,+ 9:21 The word for “sorceries” (pharmakeia) also implies the use of potions, poisons, and drugs* their|strong=\"G2532\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*, or|strong=\"G2532\"* their|strong=\"G2532\"* thefts|strong=\"G2809\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G5613\"* mighty|strong=\"G2478\"* angel|strong=\"G2597\"* coming|strong=\"G2597\"* down|strong=\"G2597\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*, clothed|strong=\"G4016\"* with|strong=\"G1537\"* a|strong=\"G5613\"* cloud|strong=\"G3507\"*. A|strong=\"G5613\"* rainbow|strong=\"G2463\"* was|strong=\"G3588\"* on|strong=\"G1909\"* his|strong=\"G1909\"* head|strong=\"G2776\"*. His|strong=\"G1909\"* face|strong=\"G4383\"* was|strong=\"G3588\"* like|strong=\"G5613\"* the|strong=\"G2532\"* sun|strong=\"G2246\"*, and|strong=\"G2532\"* his|strong=\"G1909\"* feet|strong=\"G4228\"* like|strong=\"G5613\"* pillars|strong=\"G4769\"* of|strong=\"G1537\"* fire|strong=\"G4442\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* had|strong=\"G2192\"* in|strong=\"G1722\"* his|strong=\"G1909\"* hand|strong=\"G5495\"* a|strong=\"G2192\"* little open book|strong=\"G3588\"*. He|strong=\"G2532\"* set|strong=\"G5087\"* his|strong=\"G1909\"* right|strong=\"G1188\"* foot|strong=\"G4228\"* on|strong=\"G1909\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*, and|strong=\"G2532\"* his|strong=\"G1909\"* left|strong=\"G2176\"* on|strong=\"G1909\"* the|strong=\"G1722\"* land|strong=\"G1093\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* cried|strong=\"G2896\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, as|strong=\"G5618\"* a|strong=\"G2532\"* lion|strong=\"G3023\"* roars|strong=\"G3455\"*. When|strong=\"G3753\"* he|strong=\"G2532\"* cried|strong=\"G2896\"*, the|strong=\"G2532\"* seven|strong=\"G2033\"* thunders|strong=\"G1027\"* uttered|strong=\"G2980\"* their|strong=\"G1438\"* voices|strong=\"G5456\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"G3753\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* thunders|strong=\"G1027\"* sounded|strong=\"G2980\"*, I|strong=\"G3739\"* was|strong=\"G3588\"* about|strong=\"G3195\"* to|strong=\"G2532\"* write|strong=\"G1125\"*; but|strong=\"G2532\"* I|strong=\"G3739\"* heard a|strong=\"G2532\"* voice|strong=\"G5456\"* from|strong=\"G1537\"* the|strong=\"G2532\"* sky|strong=\"G3772\"* saying|strong=\"G3004\"*, “Seal|strong=\"G4972\"* up|strong=\"G4972\"* the|strong=\"G2532\"* things|strong=\"G3588\"* which|strong=\"G3739\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* thunders|strong=\"G1027\"* said|strong=\"G3004\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* write|strong=\"G1125\"* them|strong=\"G3588\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"G2532\"* angel whom|strong=\"G3739\"* I|strong=\"G3739\"* saw|strong=\"G3708\"* standing|strong=\"G2476\"* on|strong=\"G1909\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* and|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G2532\"* land|strong=\"G1093\"* lifted|strong=\"G2532\"* up|strong=\"G1519\"* his|strong=\"G1519\"* right|strong=\"G1188\"* hand|strong=\"G5495\"* to|strong=\"G1519\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*" + }, + { + "verseNum": 6, + "text": "and|strong=\"G2532\"* swore|strong=\"G3660\"* by|strong=\"G1722\"* him|strong=\"G3588\"* who|strong=\"G3739\"* lives|strong=\"G2198\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*, who|strong=\"G3739\"* created|strong=\"G2936\"* heaven|strong=\"G3772\"* and|strong=\"G2532\"* the|strong=\"G1722\"* things|strong=\"G3588\"* that|strong=\"G3754\"* are|strong=\"G1510\"* in|strong=\"G1722\"* it|strong=\"G2532\"*, the|strong=\"G1722\"* earth|strong=\"G1093\"* and|strong=\"G2532\"* the|strong=\"G1722\"* things|strong=\"G3588\"* that|strong=\"G3754\"* are|strong=\"G1510\"* in|strong=\"G1722\"* it|strong=\"G2532\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* sea|strong=\"G2281\"* and|strong=\"G2532\"* the|strong=\"G1722\"* things|strong=\"G3588\"* that|strong=\"G3754\"* are|strong=\"G1510\"* in|strong=\"G1722\"* it|strong=\"G2532\"*, that|strong=\"G3754\"* there|strong=\"G2532\"* will|strong=\"G1510\"* no|strong=\"G3765\"* longer|strong=\"G3765\"* be|strong=\"G1510\"* delay|strong=\"G5550\"*," + }, + { + "verseNum": 7, + "text": "but|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* days|strong=\"G2250\"* of|strong=\"G2250\"* the|strong=\"G1722\"* voice|strong=\"G5456\"* of|strong=\"G2250\"* the|strong=\"G1722\"* seventh|strong=\"G1442\"* angel, when|strong=\"G3752\"* he|strong=\"G2532\"* is|strong=\"G3588\"* about|strong=\"G5613\"* to|strong=\"G2532\"* sound|strong=\"G5456\"*, then|strong=\"G2532\"* the|strong=\"G1722\"* mystery|strong=\"G3466\"* of|strong=\"G2250\"* God|strong=\"G2316\"* is|strong=\"G3588\"* finished|strong=\"G5055\"*, as|strong=\"G5613\"* he|strong=\"G2532\"* declared|strong=\"G2097\"* to|strong=\"G2532\"* his|strong=\"G1438\"* servants|strong=\"G1401\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"G1722\"* voice|strong=\"G5456\"* which|strong=\"G3739\"* I|strong=\"G1473\"* heard from|strong=\"G1537\"* heaven|strong=\"G3772\"*, again|strong=\"G3825\"* speaking|strong=\"G2980\"* with|strong=\"G3326\"* me|strong=\"G1473\"*, said|strong=\"G3004\"*, “Go|strong=\"G5217\"*, take|strong=\"G2983\"* the|strong=\"G1722\"* book|strong=\"G3588\"* which|strong=\"G3739\"* is|strong=\"G3588\"* open in|strong=\"G1722\"* the|strong=\"G1722\"* hand|strong=\"G5495\"* of|strong=\"G1537\"* the|strong=\"G1722\"* angel who|strong=\"G3739\"* stands|strong=\"G2476\"* on|strong=\"G1909\"* the|strong=\"G1722\"* sea|strong=\"G2281\"* and|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G1722\"* land|strong=\"G1093\"*.”" + }, + { + "verseNum": 9, + "text": "I|strong=\"G1473\"* went|strong=\"G2532\"* to|strong=\"G4314\"* the|strong=\"G1722\"* angel, telling|strong=\"G3004\"* him|strong=\"G3588\"* to|strong=\"G4314\"* give|strong=\"G1325\"* me|strong=\"G1325\"* the|strong=\"G1722\"* little book|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"G1473\"* took|strong=\"G2983\"* the|strong=\"G1722\"* little book|strong=\"G3588\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* angel’s hand|strong=\"G5495\"*, and|strong=\"G2532\"* ate|strong=\"G2068\"* it|strong=\"G2532\"*. It|strong=\"G2532\"* was|strong=\"G1510\"* as|strong=\"G5613\"* sweet|strong=\"G1099\"* as|strong=\"G5613\"* honey|strong=\"G3192\"* in|strong=\"G1722\"* my|strong=\"G1722\"* mouth|strong=\"G4750\"*. When|strong=\"G3753\"* I|strong=\"G1473\"* had|strong=\"G2532\"* eaten|strong=\"G5315\"* it|strong=\"G2532\"*, my|strong=\"G1722\"* stomach|strong=\"G2836\"* was|strong=\"G1510\"* made|strong=\"G4087\"* bitter|strong=\"G4087\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"G2532\"*+ 10:11 TR reads “He” instead of “They”* told|strong=\"G3004\"* me|strong=\"G1473\"*, “You|strong=\"G4771\"* must|strong=\"G1163\"* prophesy|strong=\"G4395\"* again|strong=\"G3825\"* over|strong=\"G1909\"* many|strong=\"G4183\"* peoples|strong=\"G2992\"*, nations|strong=\"G1484\"*, languages|strong=\"G1100\"*, and|strong=\"G2532\"* kings.”" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"G2532\"* reed|strong=\"G2563\"* like|strong=\"G3664\"* a|strong=\"G2532\"* rod|strong=\"G4464\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2532\"* me|strong=\"G1325\"*. Someone said|strong=\"G3004\"*, “Rise|strong=\"G1453\"* and|strong=\"G2532\"* measure|strong=\"G3354\"* God|strong=\"G2316\"*’s temple|strong=\"G3485\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* altar|strong=\"G2379\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* worship|strong=\"G4352\"* in|strong=\"G1722\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 2, + "text": "Leave|strong=\"G1544\"* out|strong=\"G1544\"* the|strong=\"G2532\"* court which|strong=\"G3588\"* is|strong=\"G3588\"* outside|strong=\"G1855\"* of|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G3485\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* measure|strong=\"G3354\"* it|strong=\"G2532\"*, for|strong=\"G3754\"* it|strong=\"G2532\"* has|strong=\"G3748\"* been|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2532\"* the|strong=\"G2532\"* nations|strong=\"G1484\"*. They|strong=\"G2532\"* will|strong=\"G2532\"* tread|strong=\"G3961\"* the|strong=\"G2532\"* holy city|strong=\"G4172\"* under|strong=\"G3961\"* foot|strong=\"G3961\"* for|strong=\"G3754\"* forty-two months|strong=\"G3376\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"G1473\"* will|strong=\"G2532\"* give|strong=\"G1325\"* power|strong=\"G1325\"* to|strong=\"G2532\"* my|strong=\"G1325\"* two|strong=\"G1417\"* witnesses|strong=\"G3144\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* will|strong=\"G2532\"* prophesy|strong=\"G4395\"* one|strong=\"G3588\"* thousand|strong=\"G5507\"* two|strong=\"G1417\"* hundred|strong=\"G1250\"* sixty|strong=\"G1835\"* days|strong=\"G2250\"*, clothed|strong=\"G4016\"* in|strong=\"G2532\"* sackcloth|strong=\"G4526\"*.”" + }, + { + "verseNum": 4, + "text": "These|strong=\"G3778\"* are|strong=\"G1510\"* the|strong=\"G2532\"* two|strong=\"G1417\"* olive|strong=\"G1636\"* trees|strong=\"G1636\"* and|strong=\"G2532\"* the|strong=\"G2532\"* two|strong=\"G1417\"* lamp stands|strong=\"G2476\"*, standing|strong=\"G2476\"* before|strong=\"G1799\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*." + }, + { + "verseNum": 5, + "text": "If|strong=\"G1487\"* anyone|strong=\"G5100\"* desires|strong=\"G2309\"* to|strong=\"G2532\"* harm them|strong=\"G3588\"*, fire|strong=\"G4442\"* proceeds|strong=\"G1607\"* out|strong=\"G1537\"* of|strong=\"G1537\"* their|strong=\"G1438\"* mouth|strong=\"G4750\"* and|strong=\"G2532\"* devours|strong=\"G2719\"* their|strong=\"G1438\"* enemies|strong=\"G2190\"*. If|strong=\"G1487\"* anyone|strong=\"G5100\"* desires|strong=\"G2309\"* to|strong=\"G2532\"* harm them|strong=\"G3588\"*, he|strong=\"G2532\"* must|strong=\"G1163\"* be|strong=\"G2532\"* killed in|strong=\"G2532\"* this|strong=\"G3588\"* way|strong=\"G3779\"*." + }, + { + "verseNum": 6, + "text": "These|strong=\"G3778\"* have|strong=\"G2192\"* the|strong=\"G1722\"* power|strong=\"G1849\"* to|strong=\"G1519\"* shut|strong=\"G2808\"* up|strong=\"G1519\"* the|strong=\"G1722\"* sky|strong=\"G3772\"*, that|strong=\"G2443\"* it|strong=\"G2532\"* may|strong=\"G2532\"* not|strong=\"G3361\"* rain|strong=\"G5205\"* during|strong=\"G1722\"* the|strong=\"G1722\"* days|strong=\"G2250\"* of|strong=\"G2250\"* their|strong=\"G2532\"* prophecy|strong=\"G4394\"*. They|strong=\"G2532\"* have|strong=\"G2192\"* power|strong=\"G1849\"* over|strong=\"G1909\"* the|strong=\"G1722\"* waters|strong=\"G5204\"*, to|strong=\"G1519\"* turn|strong=\"G4762\"* them|strong=\"G3588\"* into|strong=\"G1519\"* blood, and|strong=\"G2532\"* to|strong=\"G1519\"* strike|strong=\"G3960\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* with|strong=\"G1722\"* every|strong=\"G3956\"* plague|strong=\"G4127\"*, as|strong=\"G1519\"* often|strong=\"G3740\"* as|strong=\"G1519\"* they|strong=\"G2532\"* desire|strong=\"G2309\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"G3752\"* they|strong=\"G2532\"* have|strong=\"G2532\"* finished|strong=\"G5055\"* their|strong=\"G1438\"* testimony|strong=\"G3141\"*, the|strong=\"G2532\"* beast|strong=\"G2342\"* that|strong=\"G3588\"* comes|strong=\"G2532\"* up|strong=\"G5055\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* abyss will|strong=\"G2532\"* make|strong=\"G4160\"* war|strong=\"G4171\"* with|strong=\"G3326\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* overcome|strong=\"G3528\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* kill them|strong=\"G3588\"*." + }, + { + "verseNum": 8, + "text": "Their|strong=\"G2532\"* dead|strong=\"G4430\"* bodies|strong=\"G4430\"* will|strong=\"G2532\"* be|strong=\"G2532\"* in|strong=\"G1909\"* the|strong=\"G2532\"* street|strong=\"G4113\"* of|strong=\"G2532\"* the|strong=\"G2532\"* great|strong=\"G3173\"* city|strong=\"G4172\"*, which|strong=\"G3588\"* spiritually|strong=\"G4153\"* is|strong=\"G3588\"* called|strong=\"G2564\"* Sodom|strong=\"G4670\"* and|strong=\"G2532\"* Egypt, where|strong=\"G3699\"* also|strong=\"G2532\"* their|strong=\"G2532\"* Lord|strong=\"G2962\"* was|strong=\"G3588\"* crucified|strong=\"G4717\"*." + }, + { + "verseNum": 9, + "text": "From|strong=\"G1537\"* among|strong=\"G1519\"* the|strong=\"G2532\"* peoples|strong=\"G2992\"*, tribes|strong=\"G5443\"*, languages|strong=\"G1100\"*, and|strong=\"G2532\"* nations|strong=\"G1484\"*, people|strong=\"G2992\"* will|strong=\"G2532\"* look at|strong=\"G1519\"* their|strong=\"G2532\"* dead|strong=\"G4430\"* bodies|strong=\"G4430\"* for|strong=\"G1519\"* three|strong=\"G5140\"* and|strong=\"G2532\"* a|strong=\"G2532\"* half|strong=\"G2255\"* days|strong=\"G2250\"*, and|strong=\"G2532\"* will|strong=\"G2532\"* not|strong=\"G3756\"* allow their|strong=\"G2532\"* dead|strong=\"G4430\"* bodies|strong=\"G4430\"* to|strong=\"G1519\"* be|strong=\"G2532\"* laid|strong=\"G5087\"* in|strong=\"G1519\"* a|strong=\"G2532\"* tomb|strong=\"G3418\"*." + }, + { + "verseNum": 10, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* dwell|strong=\"G2730\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* will|strong=\"G2532\"* rejoice|strong=\"G5463\"* over|strong=\"G1909\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* will|strong=\"G2532\"* be|strong=\"G2532\"* glad|strong=\"G5463\"*. They|strong=\"G2532\"* will|strong=\"G2532\"* give gifts|strong=\"G1435\"* to|strong=\"G2532\"* one|strong=\"G3588\"* another|strong=\"G3588\"*, because|strong=\"G3754\"* these|strong=\"G3778\"* two|strong=\"G1417\"* prophets|strong=\"G4396\"* tormented those|strong=\"G3588\"* who|strong=\"G3588\"* dwell|strong=\"G2730\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*." + }, + { + "verseNum": 11, + "text": "After|strong=\"G3326\"* the|strong=\"G1722\"* three|strong=\"G5140\"* and|strong=\"G2532\"* a|strong=\"G2532\"* half|strong=\"G2255\"* days|strong=\"G2250\"*, the|strong=\"G1722\"* breath|strong=\"G4151\"* of|strong=\"G1537\"* life|strong=\"G2222\"* from|strong=\"G1537\"* God|strong=\"G2316\"* entered|strong=\"G1525\"* into|strong=\"G1909\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* stood|strong=\"G2476\"* on|strong=\"G1909\"* their|strong=\"G1438\"* feet|strong=\"G4228\"*. Great|strong=\"G3173\"* fear|strong=\"G5401\"* fell|strong=\"G1968\"* on|strong=\"G1909\"* those|strong=\"G3588\"* who|strong=\"G3588\"* saw|strong=\"G2334\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"G2532\"* heard a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"* saying|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “Come|strong=\"G2532\"* up|strong=\"G1519\"* here|strong=\"G5602\"*!” They|strong=\"G2532\"* went|strong=\"G2532\"* up|strong=\"G1519\"* into|strong=\"G1519\"* heaven|strong=\"G3772\"* in|strong=\"G1722\"* a|strong=\"G2532\"* cloud|strong=\"G3507\"*, and|strong=\"G2532\"* their|strong=\"G1438\"* enemies|strong=\"G2190\"* saw|strong=\"G2334\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 13, + "text": "In|strong=\"G1722\"* that|strong=\"G3588\"* day|strong=\"G5610\"* there|strong=\"G2532\"* was|strong=\"G1096\"* a|strong=\"G1096\"* great|strong=\"G3173\"* earthquake|strong=\"G4578\"*, and|strong=\"G2532\"* a|strong=\"G1096\"* tenth|strong=\"G1182\"* of|strong=\"G2316\"* the|strong=\"G1722\"* city|strong=\"G4172\"* fell|strong=\"G4098\"*. Seven|strong=\"G2033\"* thousand|strong=\"G5505\"* people|strong=\"G3588\"* were|strong=\"G3588\"* killed in|strong=\"G1722\"* the|strong=\"G1722\"* earthquake|strong=\"G4578\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* rest|strong=\"G3062\"* were|strong=\"G3588\"* terrified|strong=\"G1719\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* glory|strong=\"G1391\"* to|strong=\"G2532\"* the|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G2316\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"G3588\"* second|strong=\"G1208\"* woe|strong=\"G3759\"* is|strong=\"G3588\"* past. Behold|strong=\"G2400\"*, the|strong=\"G3588\"* third|strong=\"G5154\"* woe|strong=\"G3759\"* comes|strong=\"G2064\"* quickly|strong=\"G5035\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"G1722\"* seventh|strong=\"G1442\"* angel sounded|strong=\"G4537\"*, and|strong=\"G2532\"* great|strong=\"G3173\"* voices|strong=\"G5456\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"* followed|strong=\"G1096\"*, saying|strong=\"G3004\"*, “The|strong=\"G1722\"* kingdom of|strong=\"G2532\"* the|strong=\"G1722\"* world|strong=\"G2889\"* has|strong=\"G2962\"* become|strong=\"G1096\"* the|strong=\"G1722\"* Kingdom of|strong=\"G2532\"* our|strong=\"G2532\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* of|strong=\"G2532\"* his|strong=\"G1519\"* Christ|strong=\"G5547\"*. He|strong=\"G2532\"* will|strong=\"G2532\"* reign|strong=\"G2532\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*!”" + }, + { + "verseNum": 16, + "text": "The|strong=\"G2532\"* twenty-four|strong=\"G1501\"* elders|strong=\"G4245\"*, who|strong=\"G3739\"* sit|strong=\"G2521\"* on|strong=\"G1909\"* their|strong=\"G2532\"* thrones|strong=\"G2362\"* before|strong=\"G1799\"* God|strong=\"G2316\"*’s throne|strong=\"G2362\"*, fell|strong=\"G4098\"* on|strong=\"G1909\"* their|strong=\"G2532\"* faces|strong=\"G4383\"* and|strong=\"G2532\"* worshiped|strong=\"G4352\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 17, + "text": "saying|strong=\"G3004\"*: “We|strong=\"G3754\"* give|strong=\"G2168\"* you|strong=\"G4771\"* thanks|strong=\"G2168\"*, Lord|strong=\"G2962\"* God|strong=\"G2316\"*, the|strong=\"G2532\"* Almighty|strong=\"G3841\"*, the|strong=\"G2532\"* one|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G1510\"* and|strong=\"G2532\"* who|strong=\"G3588\"* was|strong=\"G1510\"*,+ 11:17 TR adds “and who is coming”* because|strong=\"G3754\"* you|strong=\"G4771\"* have|strong=\"G2532\"* taken|strong=\"G2983\"* your|strong=\"G2962\"* great|strong=\"G3173\"* power|strong=\"G1411\"* and|strong=\"G2532\"* reigned." + }, + { + "verseNum": 18, + "text": "The|strong=\"G2532\"* nations|strong=\"G1484\"* were|strong=\"G3588\"* angry|strong=\"G3710\"*, and|strong=\"G2532\"* your|strong=\"G2532\"* wrath|strong=\"G3709\"* came|strong=\"G2064\"*, as|strong=\"G2532\"* did|strong=\"G2532\"* the|strong=\"G2532\"* time|strong=\"G2540\"* for|strong=\"G2532\"* the|strong=\"G2532\"* dead|strong=\"G3498\"* to|strong=\"G2532\"* be|strong=\"G2532\"* judged|strong=\"G2919\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* give|strong=\"G1325\"* your|strong=\"G2532\"* bondservants the|strong=\"G2532\"* prophets|strong=\"G4396\"*, their|strong=\"G2532\"* reward|strong=\"G3408\"*, as|strong=\"G2532\"* well|strong=\"G2532\"* as|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* saints and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* fear|strong=\"G5399\"* your|strong=\"G2532\"* name|strong=\"G3686\"*, to|strong=\"G2532\"* the|strong=\"G2532\"* small|strong=\"G3398\"* and|strong=\"G2532\"* the|strong=\"G2532\"* great|strong=\"G3173\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* destroy|strong=\"G1311\"* those|strong=\"G3588\"* who|strong=\"G3588\"* destroy|strong=\"G1311\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*.”" + }, + { + "verseNum": 19, + "text": "God|strong=\"G2316\"*’s temple|strong=\"G3485\"* that|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"* was|strong=\"G1096\"* opened, and|strong=\"G2532\"* the|strong=\"G1722\"* ark|strong=\"G2787\"* of|strong=\"G2316\"* the|strong=\"G1722\"* Lord|strong=\"G3588\"*’s covenant|strong=\"G1242\"* was|strong=\"G1096\"* seen|strong=\"G3708\"* in|strong=\"G1722\"* his|strong=\"G1722\"* temple|strong=\"G3485\"*. Lightnings, sounds|strong=\"G5456\"*, thunders|strong=\"G1027\"*, an|strong=\"G2532\"* earthquake|strong=\"G4578\"*, and|strong=\"G2532\"* great|strong=\"G3173\"* hail|strong=\"G5464\"* followed|strong=\"G1096\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"G2532\"* great|strong=\"G3173\"* sign|strong=\"G4592\"* was|strong=\"G3588\"* seen|strong=\"G3708\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*: a|strong=\"G2532\"* woman|strong=\"G1135\"* clothed|strong=\"G4016\"* with|strong=\"G1722\"* the|strong=\"G1722\"* sun|strong=\"G2246\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* moon|strong=\"G4582\"* under|strong=\"G5270\"* her|strong=\"G3708\"* feet|strong=\"G4228\"*, and|strong=\"G2532\"* on|strong=\"G1909\"* her|strong=\"G3708\"* head|strong=\"G2776\"* a|strong=\"G2532\"* crown|strong=\"G4735\"* of|strong=\"G2532\"* twelve|strong=\"G1427\"* stars." + }, + { + "verseNum": 2, + "text": "She|strong=\"G2532\"* was|strong=\"G2532\"* with|strong=\"G1722\"* child|strong=\"G1064\"*. She|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* in|strong=\"G1722\"* pain, laboring to|strong=\"G2532\"* give|strong=\"G5088\"* birth|strong=\"G5088\"*." + }, + { + "verseNum": 3, + "text": "Another|strong=\"G3588\"* sign|strong=\"G4592\"* was|strong=\"G3588\"* seen|strong=\"G3708\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*. Behold|strong=\"G2400\"*, a|strong=\"G2192\"* great|strong=\"G3173\"* red|strong=\"G4450\"* dragon|strong=\"G1404\"*, having|strong=\"G2192\"* seven|strong=\"G2033\"* heads|strong=\"G2776\"* and|strong=\"G2532\"* ten|strong=\"G1176\"* horns|strong=\"G2768\"*, and|strong=\"G2532\"* on|strong=\"G1909\"* his|strong=\"G1909\"* heads|strong=\"G2776\"* seven|strong=\"G2033\"* crowns|strong=\"G1238\"*." + }, + { + "verseNum": 4, + "text": "His|strong=\"G1438\"* tail|strong=\"G3769\"* drew|strong=\"G2532\"* one|strong=\"G1438\"* third|strong=\"G5154\"* of|strong=\"G2532\"* the|strong=\"G2532\"* stars of|strong=\"G2532\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*, and|strong=\"G2532\"* threw them|strong=\"G3588\"* to|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*. The|strong=\"G2532\"* dragon|strong=\"G1404\"* stood|strong=\"G2476\"* before|strong=\"G1799\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* who|strong=\"G3588\"* was|strong=\"G3588\"* about|strong=\"G3195\"* to|strong=\"G1519\"* give|strong=\"G5088\"* birth|strong=\"G5088\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* when|strong=\"G3752\"* she|strong=\"G2532\"* gave|strong=\"G5088\"* birth|strong=\"G5088\"* he|strong=\"G2532\"* might|strong=\"G2532\"* devour|strong=\"G2719\"* her|strong=\"G1438\"* child|strong=\"G5043\"*." + }, + { + "verseNum": 5, + "text": "She|strong=\"G2532\"* gave|strong=\"G5088\"* birth|strong=\"G5088\"* to|strong=\"G4314\"* a|strong=\"G2532\"* son|strong=\"G5207\"*, a|strong=\"G2532\"* male child|strong=\"G5043\"*, who|strong=\"G3739\"* is|strong=\"G3588\"* to|strong=\"G4314\"* rule|strong=\"G4165\"* all|strong=\"G3956\"* the|strong=\"G1722\"* nations|strong=\"G1484\"* with|strong=\"G1722\"* a|strong=\"G2532\"* rod|strong=\"G4464\"* of|strong=\"G5207\"* iron|strong=\"G4603\"*. Her|strong=\"G3956\"* child|strong=\"G5043\"* was|strong=\"G3588\"* caught up|strong=\"G2532\"* to|strong=\"G4314\"* God|strong=\"G2316\"* and|strong=\"G2532\"* to|strong=\"G4314\"* his|strong=\"G3956\"* throne|strong=\"G2362\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"G2532\"* woman|strong=\"G1135\"* fled|strong=\"G5343\"* into|strong=\"G1519\"* the|strong=\"G2532\"* wilderness|strong=\"G2048\"*, where|strong=\"G3699\"* she|strong=\"G2532\"* has|strong=\"G2192\"* a|strong=\"G2192\"* place|strong=\"G5117\"* prepared|strong=\"G2090\"* by|strong=\"G2532\"* God|strong=\"G2316\"*, that|strong=\"G2443\"* there|strong=\"G1563\"* they|strong=\"G2532\"* may|strong=\"G2532\"* nourish her|strong=\"G1438\"* one|strong=\"G1438\"* thousand|strong=\"G5507\"* two|strong=\"G1250\"* hundred|strong=\"G1250\"* sixty|strong=\"G1835\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 7, + "text": "There|strong=\"G2532\"* was|strong=\"G1096\"* war|strong=\"G4171\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sky|strong=\"G3772\"*. Michael|strong=\"G3413\"* and|strong=\"G2532\"* his|strong=\"G1722\"* angels made|strong=\"G1096\"* war|strong=\"G4171\"* on|strong=\"G1722\"* the|strong=\"G1722\"* dragon|strong=\"G1404\"*. The|strong=\"G1722\"* dragon|strong=\"G1404\"* and|strong=\"G2532\"* his|strong=\"G1722\"* angels made|strong=\"G1096\"* war|strong=\"G4171\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"G2532\"* didn’t|strong=\"G3588\"* prevail. No|strong=\"G3756\"* place|strong=\"G5117\"* was|strong=\"G3588\"* found|strong=\"G2147\"* for|strong=\"G1722\"* them|strong=\"G3588\"* any|strong=\"G2089\"* more|strong=\"G2089\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"G2532\"* great|strong=\"G3173\"* dragon|strong=\"G1404\"* was|strong=\"G3588\"* thrown down, the|strong=\"G2532\"* old|strong=\"G2532\"* serpent|strong=\"G3789\"*, he|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G2564\"* the|strong=\"G2532\"* devil|strong=\"G1228\"* and|strong=\"G2532\"* Satan|strong=\"G4567\"*, the|strong=\"G2532\"* deceiver of|strong=\"G2532\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* world|strong=\"G3625\"*. He|strong=\"G2532\"* was|strong=\"G3588\"* thrown down to|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, and|strong=\"G2532\"* his|strong=\"G1519\"* angels were|strong=\"G3588\"* thrown down with|strong=\"G3326\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"G1473\"* heard a|strong=\"G1096\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*, saying|strong=\"G3004\"*, “Now|strong=\"G2532\"* the|strong=\"G1722\"* salvation|strong=\"G4991\"*, the|strong=\"G1722\"* power|strong=\"G1411\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* Kingdom of|strong=\"G2250\"* our|strong=\"G2316\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* authority|strong=\"G1849\"* of|strong=\"G2250\"* his|strong=\"G1438\"* Christ|strong=\"G5547\"* has|strong=\"G2316\"* come|strong=\"G1096\"*; for|strong=\"G3754\"* the|strong=\"G1722\"* accuser|strong=\"G2725\"* of|strong=\"G2250\"* our|strong=\"G2316\"* brothers has|strong=\"G2316\"* been|strong=\"G1096\"* thrown down, who|strong=\"G3588\"* accuses|strong=\"G2723\"* them|strong=\"G3588\"* before|strong=\"G1799\"* our|strong=\"G2316\"* God|strong=\"G2316\"* day|strong=\"G2250\"* and|strong=\"G2532\"* night|strong=\"G3571\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"G2532\"* overcame|strong=\"G3528\"* him|strong=\"G3588\"* because|strong=\"G1223\"* of|strong=\"G3056\"* the|strong=\"G2532\"* Lamb’s blood, and|strong=\"G2532\"* because|strong=\"G1223\"* of|strong=\"G3056\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* their|strong=\"G2532\"* testimony|strong=\"G3141\"*. They|strong=\"G2532\"* didn’t|strong=\"G3588\"* love their|strong=\"G2532\"* life|strong=\"G5590\"*, even|strong=\"G2532\"* to|strong=\"G2532\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"G1223\"* rejoice|strong=\"G2165\"*, heavens|strong=\"G3772\"*, and|strong=\"G2532\"* you|strong=\"G5210\"* who|strong=\"G3588\"* dwell|strong=\"G4637\"* in|strong=\"G1722\"* them|strong=\"G3588\"*. Woe|strong=\"G3759\"* to|strong=\"G4314\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* and|strong=\"G2532\"* to|strong=\"G4314\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*, because|strong=\"G3754\"* the|strong=\"G1722\"* devil|strong=\"G1228\"* has|strong=\"G2192\"* gone down|strong=\"G2597\"* to|strong=\"G4314\"* you|strong=\"G5210\"*, having|strong=\"G2192\"* great|strong=\"G3173\"* wrath|strong=\"G2372\"*, knowing|strong=\"G1492\"* that|strong=\"G3754\"* he|strong=\"G2532\"* has|strong=\"G2192\"* but|strong=\"G2532\"* a|strong=\"G2192\"* short|strong=\"G3641\"* time|strong=\"G2540\"*.”" + }, + { + "verseNum": 13, + "text": "When|strong=\"G3753\"* the|strong=\"G2532\"* dragon|strong=\"G1404\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G3588\"* thrown down to|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, he|strong=\"G2532\"* persecuted|strong=\"G1377\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* who|strong=\"G3588\"* gave|strong=\"G5088\"* birth|strong=\"G5088\"* to|strong=\"G1519\"* the|strong=\"G2532\"* male child|strong=\"G5088\"*." + }, + { + "verseNum": 14, + "text": "Two|strong=\"G1417\"* wings|strong=\"G4420\"* of|strong=\"G2532\"* the|strong=\"G2532\"* great|strong=\"G3173\"* eagle were|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G1519\"* the|strong=\"G2532\"* woman|strong=\"G1135\"*, that|strong=\"G2443\"* she|strong=\"G2532\"* might|strong=\"G2532\"* fly|strong=\"G4072\"* into|strong=\"G1519\"* the|strong=\"G2532\"* wilderness|strong=\"G2048\"* to|strong=\"G1519\"* her|strong=\"G1325\"* place|strong=\"G5117\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* she|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G2532\"* nourished|strong=\"G5142\"* for|strong=\"G1519\"* a|strong=\"G2532\"* time|strong=\"G2540\"*, times|strong=\"G2540\"*, and|strong=\"G2532\"* half|strong=\"G2255\"* a|strong=\"G2532\"* time|strong=\"G2540\"*, from|strong=\"G2532\"* the|strong=\"G2532\"* face|strong=\"G4383\"* of|strong=\"G2532\"* the|strong=\"G2532\"* serpent|strong=\"G3789\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"G2532\"* serpent|strong=\"G3789\"* spewed water|strong=\"G5204\"* out|strong=\"G1537\"* of|strong=\"G1537\"* his|strong=\"G1438\"* mouth|strong=\"G4750\"* after|strong=\"G3694\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* like|strong=\"G5613\"* a|strong=\"G5613\"* river|strong=\"G4215\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* cause|strong=\"G4160\"* her|strong=\"G1438\"* to|strong=\"G2443\"* be|strong=\"G2532\"* carried|strong=\"G2532\"* away|strong=\"G4216\"* by|strong=\"G1537\"* the|strong=\"G2532\"* stream." + }, + { + "verseNum": 16, + "text": "The|strong=\"G2532\"* earth|strong=\"G1093\"* helped the|strong=\"G2532\"* woman|strong=\"G1135\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* opened its|strong=\"G1537\"* mouth|strong=\"G4750\"* and|strong=\"G2532\"* swallowed|strong=\"G2666\"* up|strong=\"G2666\"* the|strong=\"G2532\"* river|strong=\"G4215\"* which|strong=\"G3739\"* the|strong=\"G2532\"* dragon|strong=\"G1404\"* spewed out|strong=\"G1537\"* of|strong=\"G1537\"* his|strong=\"G2532\"* mouth|strong=\"G4750\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"G2532\"* dragon|strong=\"G1404\"* grew angry|strong=\"G3710\"* with|strong=\"G3326\"* the|strong=\"G2532\"* woman|strong=\"G1135\"*, and|strong=\"G2532\"* went|strong=\"G2424\"* away|strong=\"G3326\"* to|strong=\"G2532\"* make|strong=\"G4160\"* war|strong=\"G4171\"* with|strong=\"G3326\"* the|strong=\"G2532\"* rest|strong=\"G3062\"* of|strong=\"G2316\"* her|strong=\"G2192\"* offspring,+ 12:17 or, seed* who|strong=\"G3588\"* keep|strong=\"G5083\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* commandments|strong=\"G1785\"* and|strong=\"G2532\"* hold|strong=\"G2192\"* Jesus|strong=\"G2424\"*’ testimony|strong=\"G3141\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"G2532\"* I|strong=\"G2532\"* stood|strong=\"G3588\"*+ 13:1 NU reads he stood* on|strong=\"G1909\"* the|strong=\"G2532\"* sand of|strong=\"G1537\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*. I|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G2192\"* beast|strong=\"G2342\"* coming|strong=\"G2342\"* up|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, having|strong=\"G2192\"* ten|strong=\"G1176\"* horns|strong=\"G2768\"* and|strong=\"G2532\"* seven|strong=\"G2033\"* heads|strong=\"G2776\"*. On|strong=\"G1909\"* his|strong=\"G1909\"* horns|strong=\"G2768\"* were|strong=\"G3588\"* ten|strong=\"G1176\"* crowns|strong=\"G1238\"*, and|strong=\"G2532\"* on|strong=\"G1909\"* his|strong=\"G1909\"* heads|strong=\"G2776\"*, blasphemous names|strong=\"G3686\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"G2532\"* beast|strong=\"G2342\"* which|strong=\"G3739\"* I|strong=\"G3739\"* saw|strong=\"G3708\"* was|strong=\"G1510\"* like|strong=\"G5613\"* a|strong=\"G5613\"* leopard|strong=\"G3917\"*, and|strong=\"G2532\"* his|strong=\"G3708\"* feet|strong=\"G4228\"* were|strong=\"G1510\"* like|strong=\"G5613\"* those|strong=\"G3588\"* of|strong=\"G2532\"* a|strong=\"G5613\"* bear|strong=\"G2532\"*, and|strong=\"G2532\"* his|strong=\"G3708\"* mouth|strong=\"G4750\"* like|strong=\"G5613\"* the|strong=\"G2532\"* mouth|strong=\"G4750\"* of|strong=\"G2532\"* a|strong=\"G5613\"* lion|strong=\"G3023\"*. The|strong=\"G2532\"* dragon|strong=\"G1404\"* gave|strong=\"G1325\"* him|strong=\"G3588\"* his|strong=\"G3708\"* power|strong=\"G1411\"*, his|strong=\"G3708\"* throne|strong=\"G2362\"*, and|strong=\"G2532\"* great|strong=\"G3173\"* authority|strong=\"G1849\"*." + }, + { + "verseNum": 3, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* his|strong=\"G1519\"* heads|strong=\"G2776\"* looked|strong=\"G2532\"* like|strong=\"G5613\"* it|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G2532\"* wounded|strong=\"G4969\"* fatally. His|strong=\"G1519\"* fatal|strong=\"G2288\"* wound|strong=\"G4127\"* was|strong=\"G3588\"* healed|strong=\"G2323\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* earth|strong=\"G1093\"* marveled|strong=\"G2296\"* at|strong=\"G1519\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"G2532\"* worshiped|strong=\"G4352\"* the|strong=\"G2532\"* dragon|strong=\"G1404\"* because|strong=\"G3754\"* he|strong=\"G2532\"* gave|strong=\"G1325\"* his|strong=\"G2532\"* authority|strong=\"G1849\"* to|strong=\"G2532\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* worshiped|strong=\"G4352\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*, saying|strong=\"G3004\"*, “Who|strong=\"G5101\"* is|strong=\"G3588\"* like|strong=\"G3664\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*? Who|strong=\"G5101\"* is|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2532\"* make|strong=\"G2532\"* war|strong=\"G4170\"* with|strong=\"G3326\"* him|strong=\"G3588\"*?”" + }, + { + "verseNum": 5, + "text": "A|strong=\"G2532\"* mouth|strong=\"G4750\"* speaking|strong=\"G2980\"* great|strong=\"G3173\"* things|strong=\"G3173\"* and|strong=\"G2532\"* blasphemy was|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G1325\"*. Authority|strong=\"G1849\"* to|strong=\"G2532\"* make|strong=\"G4160\"* war for|strong=\"G2532\"* forty-two months|strong=\"G3376\"* was|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G1325\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* opened his|strong=\"G1519\"* mouth|strong=\"G4750\"* for|strong=\"G1519\"* blasphemy against|strong=\"G4314\"* God|strong=\"G2316\"*, to|strong=\"G1519\"* blaspheme his|strong=\"G1519\"* name|strong=\"G3686\"*, his|strong=\"G1519\"* dwelling, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* dwell|strong=\"G4637\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 7, + "text": "It|strong=\"G2532\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G2532\"* make|strong=\"G4160\"* war|strong=\"G4171\"* with|strong=\"G3326\"* the|strong=\"G2532\"* saints and|strong=\"G2532\"* to|strong=\"G2532\"* overcome|strong=\"G3528\"* them|strong=\"G3588\"*. Authority|strong=\"G1849\"* over|strong=\"G1909\"* every|strong=\"G3956\"* tribe|strong=\"G5443\"*, people|strong=\"G2992\"*, language|strong=\"G1100\"*, and|strong=\"G2532\"* nation|strong=\"G1484\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 8, + "text": "All|strong=\"G3956\"* who|strong=\"G3739\"* dwell|strong=\"G2730\"* on|strong=\"G1909\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* will|strong=\"G2532\"* worship|strong=\"G4352\"* him|strong=\"G3588\"*, everyone|strong=\"G3956\"* whose|strong=\"G3739\"* name|strong=\"G3686\"* has|strong=\"G3739\"* not|strong=\"G3756\"* been|strong=\"G2532\"* written|strong=\"G1125\"* from|strong=\"G2532\"* the|strong=\"G1722\"* foundation|strong=\"G2602\"* of|strong=\"G2532\"* the|strong=\"G1722\"* world|strong=\"G2889\"* in|strong=\"G1722\"* the|strong=\"G1722\"* book|strong=\"G3588\"* of|strong=\"G2532\"* life|strong=\"G2222\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Lamb who|strong=\"G3739\"* has|strong=\"G3739\"* been|strong=\"G2532\"* killed." + }, + { + "verseNum": 9, + "text": "If|strong=\"G1487\"* anyone|strong=\"G5100\"* has|strong=\"G2192\"* an|strong=\"G2192\"* ear|strong=\"G3775\"*, let|strong=\"G2192\"* him hear." + }, + { + "verseNum": 10, + "text": "If|strong=\"G1487\"* anyone|strong=\"G5100\"* is|strong=\"G1510\"* to|strong=\"G1519\"* go|strong=\"G5217\"* into|strong=\"G1519\"* captivity, he|strong=\"G2532\"* will|strong=\"G1510\"* go|strong=\"G5217\"* into|strong=\"G1519\"* captivity. If|strong=\"G1487\"* anyone|strong=\"G5100\"* is|strong=\"G1510\"* to|strong=\"G1519\"* be|strong=\"G1510\"* killed with|strong=\"G1722\"* the|strong=\"G1722\"* sword|strong=\"G3162\"*, he|strong=\"G2532\"* must|strong=\"G1163\"* be|strong=\"G1510\"* killed.+ 13:10 TR reads “If anyone leads into captivity, into captivity he goes. If anyone will kill with the sword, he must be killed with a sword.” instead of “If anyone is to go into captivity, he will go into captivity. If anyone is to be killed with the sword, he must be killed.” * Here|strong=\"G5602\"* is|strong=\"G1510\"* the|strong=\"G1722\"* endurance|strong=\"G5281\"* and|strong=\"G2532\"* the|strong=\"G1722\"* faith|strong=\"G4102\"* of|strong=\"G2532\"* the|strong=\"G1722\"* saints." + }, + { + "verseNum": 11, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* another|strong=\"G3588\"* beast|strong=\"G2342\"* coming|strong=\"G2342\"* up|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*. He|strong=\"G2532\"* had|strong=\"G2192\"* two|strong=\"G1417\"* horns|strong=\"G2768\"* like|strong=\"G5613\"* a|strong=\"G2192\"* lamb and|strong=\"G2532\"* it|strong=\"G2532\"* spoke|strong=\"G2980\"* like|strong=\"G5613\"* a|strong=\"G2192\"* dragon|strong=\"G1404\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"G2532\"* exercises|strong=\"G4160\"* all|strong=\"G3956\"* the|strong=\"G1722\"* authority|strong=\"G1849\"* of|strong=\"G2532\"* the|strong=\"G1722\"* first|strong=\"G4413\"* beast|strong=\"G2342\"* in|strong=\"G1722\"* his|strong=\"G3956\"* presence|strong=\"G1799\"*. He|strong=\"G2532\"* makes|strong=\"G4160\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3739\"* dwell|strong=\"G2730\"* in|strong=\"G1722\"* it|strong=\"G2532\"* to|strong=\"G2443\"* worship|strong=\"G4352\"* the|strong=\"G1722\"* first|strong=\"G4413\"* beast|strong=\"G2342\"*, whose|strong=\"G3739\"* fatal|strong=\"G2288\"* wound|strong=\"G4127\"* was|strong=\"G3588\"* healed|strong=\"G2323\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* performs|strong=\"G4160\"* great|strong=\"G3173\"* signs|strong=\"G4592\"*, even|strong=\"G2532\"* making|strong=\"G4160\"* fire|strong=\"G4442\"* come|strong=\"G2597\"* down|strong=\"G2597\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* sky|strong=\"G3772\"* to|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* in|strong=\"G1519\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G1537\"* people|strong=\"G4160\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"G2532\"* deceives|strong=\"G4105\"* my|strong=\"G1325\"* own+ 13:14 NU omits “my own”* people|strong=\"G4160\"* who|strong=\"G3739\"* dwell|strong=\"G2730\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* signs|strong=\"G4592\"* he|strong=\"G2532\"* was|strong=\"G3588\"* granted|strong=\"G1325\"* to|strong=\"G2532\"* do|strong=\"G4160\"* in|strong=\"G1909\"* front|strong=\"G1799\"* of|strong=\"G1223\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*, saying|strong=\"G3004\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3739\"* dwell|strong=\"G2730\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* that|strong=\"G3739\"* they|strong=\"G2532\"* should|strong=\"G3588\"* make|strong=\"G4160\"* an|strong=\"G2192\"* image|strong=\"G1504\"* to|strong=\"G2532\"* the|strong=\"G2532\"* beast|strong=\"G2342\"* who|strong=\"G3739\"* had|strong=\"G2192\"* the|strong=\"G2532\"* sword|strong=\"G3162\"* wound|strong=\"G4127\"* and|strong=\"G2532\"* lived|strong=\"G2730\"*." + }, + { + "verseNum": 15, + "text": "It|strong=\"G2532\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2443\"* him|strong=\"G3588\"* to|strong=\"G2443\"* give|strong=\"G1325\"* breath|strong=\"G4151\"* to|strong=\"G2443\"* the|strong=\"G2532\"* image|strong=\"G1504\"* of|strong=\"G4151\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*, that|strong=\"G2443\"* the|strong=\"G2532\"* image|strong=\"G1504\"* of|strong=\"G4151\"* the|strong=\"G2532\"* beast|strong=\"G2342\"* should|strong=\"G3588\"* both|strong=\"G2532\"* speak|strong=\"G2980\"*, and|strong=\"G2532\"* cause|strong=\"G4160\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* wouldn’t|strong=\"G3588\"* worship|strong=\"G4352\"* the|strong=\"G2532\"* image|strong=\"G1504\"* of|strong=\"G4151\"* the|strong=\"G2532\"* beast|strong=\"G2342\"* to|strong=\"G2443\"* be|strong=\"G2532\"* killed." + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* causes|strong=\"G4160\"* all|strong=\"G3956\"*, the|strong=\"G2532\"* small|strong=\"G3398\"* and|strong=\"G2532\"* the|strong=\"G2532\"* great|strong=\"G3173\"*, the|strong=\"G2532\"* rich|strong=\"G4145\"* and|strong=\"G2532\"* the|strong=\"G2532\"* poor|strong=\"G4434\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* free|strong=\"G1658\"* and|strong=\"G2532\"* the|strong=\"G2532\"* slave|strong=\"G1401\"*, to|strong=\"G2443\"* be|strong=\"G2532\"* given|strong=\"G1325\"* marks on|strong=\"G1909\"* their|strong=\"G2532\"* right|strong=\"G1188\"* hands|strong=\"G5495\"* or|strong=\"G2228\"* on|strong=\"G1909\"* their|strong=\"G2532\"* foreheads|strong=\"G3359\"*;" + }, + { + "verseNum": 17, + "text": "and|strong=\"G2532\"* that|strong=\"G2443\"* no|strong=\"G3361\"* one|strong=\"G5100\"* would|strong=\"G2532\"* be|strong=\"G2532\"* able|strong=\"G1410\"* to|strong=\"G2443\"* buy or|strong=\"G2228\"* to|strong=\"G2443\"* sell|strong=\"G4453\"* unless|strong=\"G1487\"* he|strong=\"G2532\"* has|strong=\"G2192\"* that|strong=\"G2443\"* mark|strong=\"G5480\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G2532\"* beast|strong=\"G2342\"* or|strong=\"G2228\"* the|strong=\"G2532\"* number of|strong=\"G2532\"* his|strong=\"G2192\"* name|strong=\"G3686\"*." + }, + { + "verseNum": 18, + "text": "Here|strong=\"G5602\"* is|strong=\"G1510\"* wisdom|strong=\"G4678\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* has|strong=\"G2192\"* understanding|strong=\"G3563\"*, let|strong=\"G1510\"* him|strong=\"G3588\"* calculate|strong=\"G5585\"* the|strong=\"G2532\"* number of|strong=\"G2532\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*, for|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* number of|strong=\"G2532\"* a|strong=\"G2192\"* man. His|strong=\"G2192\"* number is|strong=\"G1510\"* six|strong=\"G1803\"* hundred|strong=\"G1812\"* sixty-six|strong=\"G1835\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"*, and|strong=\"G2532\"* behold|strong=\"G2400\"*, the|strong=\"G2532\"* Lamb standing|strong=\"G2476\"* on|strong=\"G1909\"* Mount|strong=\"G3735\"* Zion|strong=\"G4622\"*, and|strong=\"G2532\"* with|strong=\"G3326\"* him|strong=\"G3588\"* a|strong=\"G2192\"* number, one|strong=\"G3588\"* hundred|strong=\"G1540\"* forty-four|strong=\"G5062\"* thousand|strong=\"G5505\"*, having|strong=\"G2192\"* his|strong=\"G1909\"* name|strong=\"G3686\"* and|strong=\"G2532\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G2532\"* his|strong=\"G1909\"* Father|strong=\"G3962\"* written|strong=\"G1125\"* on|strong=\"G1909\"* their|strong=\"G2532\"* foreheads|strong=\"G3359\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"G3739\"* heard a|strong=\"G5613\"* sound|strong=\"G5456\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"* like|strong=\"G5613\"* the|strong=\"G1722\"* sound|strong=\"G5456\"* of|strong=\"G1537\"* many|strong=\"G4183\"* waters|strong=\"G5204\"* and|strong=\"G2532\"* like|strong=\"G5613\"* the|strong=\"G1722\"* sound|strong=\"G5456\"* of|strong=\"G1537\"* a|strong=\"G5613\"* great|strong=\"G3173\"* thunder|strong=\"G1027\"*. The|strong=\"G1722\"* sound|strong=\"G5456\"* which|strong=\"G3739\"* I|strong=\"G3739\"* heard was|strong=\"G3588\"* like|strong=\"G5613\"* that|strong=\"G3739\"* of|strong=\"G1537\"* harpists|strong=\"G2790\"* playing|strong=\"G2789\"* on|strong=\"G1722\"* their|strong=\"G2532\"* harps|strong=\"G2788\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"G2532\"* sing a|strong=\"G5613\"* new|strong=\"G2537\"* song|strong=\"G5603\"* before|strong=\"G1799\"* the|strong=\"G2532\"* throne|strong=\"G2362\"* and|strong=\"G2532\"* before|strong=\"G1799\"* the|strong=\"G2532\"* four|strong=\"G5064\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"* and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*. No|strong=\"G3762\"* one|strong=\"G3762\"* could|strong=\"G1410\"* learn|strong=\"G3129\"* the|strong=\"G2532\"* song|strong=\"G5603\"* except|strong=\"G1487\"* the|strong=\"G2532\"* one|strong=\"G3762\"* hundred|strong=\"G1540\"* forty-four|strong=\"G5062\"* thousand|strong=\"G5505\"*, those|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2532\"* been|strong=\"G2532\"* redeemed out|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*." + }, + { + "verseNum": 4, + "text": "These|strong=\"G3778\"* are|strong=\"G1510\"* those|strong=\"G3588\"* who|strong=\"G3739\"* were|strong=\"G1510\"* not|strong=\"G3756\"* defiled|strong=\"G3435\"* with|strong=\"G3326\"* women|strong=\"G1135\"*, for|strong=\"G1063\"* they|strong=\"G2532\"* are|strong=\"G1510\"* virgins|strong=\"G3933\"*. These|strong=\"G3778\"* are|strong=\"G1510\"* those|strong=\"G3588\"* who|strong=\"G3739\"* follow|strong=\"G3326\"* the|strong=\"G2532\"* Lamb wherever|strong=\"G3699\"* he|strong=\"G2532\"* goes|strong=\"G5217\"*. These|strong=\"G3778\"* were|strong=\"G1510\"* redeemed by|strong=\"G2532\"* Jesus|strong=\"G1510\"* from|strong=\"G2532\"* among|strong=\"G3326\"* men|strong=\"G3778\"*, the|strong=\"G2532\"* first|strong=\"G3588\"* fruits to|strong=\"G2532\"* God|strong=\"G2316\"* and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lamb." + }, + { + "verseNum": 5, + "text": "In|strong=\"G1722\"* their|strong=\"G2532\"* mouth|strong=\"G4750\"* was|strong=\"G1510\"* found|strong=\"G2147\"* no|strong=\"G3756\"* lie|strong=\"G5579\"*, for|strong=\"G1063\"* they|strong=\"G2532\"* are|strong=\"G1510\"* blameless.+ 14:5 TR adds “before the throne of God”*" + }, + { + "verseNum": 6, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* an|strong=\"G2192\"* angel flying|strong=\"G4072\"* in|strong=\"G1722\"* mid heaven|strong=\"G3321\"*, having|strong=\"G2192\"* an|strong=\"G2192\"* eternal Good|strong=\"G2097\"* News|strong=\"G2097\"* to|strong=\"G2532\"* proclaim|strong=\"G2097\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* dwell|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*—to|strong=\"G2532\"* every|strong=\"G3956\"* nation|strong=\"G1484\"*, tribe|strong=\"G5443\"*, language|strong=\"G1100\"*, and|strong=\"G2532\"* people|strong=\"G2992\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* with|strong=\"G1722\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, “Fear|strong=\"G5399\"* the|strong=\"G1722\"* Lord|strong=\"G3588\"*, and|strong=\"G2532\"* give|strong=\"G1325\"* him|strong=\"G3588\"* glory|strong=\"G1391\"*, for|strong=\"G3754\"* the|strong=\"G1722\"* hour|strong=\"G5610\"* of|strong=\"G2316\"* his|strong=\"G1722\"* judgment|strong=\"G2920\"* has|strong=\"G2316\"* come|strong=\"G2064\"*. Worship|strong=\"G4352\"* him|strong=\"G3588\"* who|strong=\"G3588\"* made|strong=\"G4160\"* the|strong=\"G1722\"* heaven|strong=\"G3772\"*, the|strong=\"G1722\"* earth|strong=\"G1093\"*, the|strong=\"G1722\"* sea|strong=\"G2281\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* springs|strong=\"G4077\"* of|strong=\"G2316\"* waters|strong=\"G5204\"*!”" + }, + { + "verseNum": 8, + "text": "Another|strong=\"G3739\"*, a|strong=\"G2532\"* second|strong=\"G1208\"* angel, followed, saying|strong=\"G3004\"*, “Babylon the|strong=\"G2532\"* great|strong=\"G3173\"* has|strong=\"G3739\"* fallen|strong=\"G4098\"*, which|strong=\"G3739\"* has|strong=\"G3739\"* made|strong=\"G4222\"* all|strong=\"G3956\"* the|strong=\"G2532\"* nations|strong=\"G1484\"* to|strong=\"G2532\"* drink|strong=\"G4222\"* of|strong=\"G1537\"* the|strong=\"G2532\"* wine|strong=\"G3631\"* of|strong=\"G1537\"* the|strong=\"G2532\"* wrath|strong=\"G2372\"* of|strong=\"G1537\"* her|strong=\"G3956\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*.”" + }, + { + "verseNum": 9, + "text": "Another|strong=\"G5100\"* angel, a|strong=\"G2532\"* third|strong=\"G5154\"*, followed them|strong=\"G3588\"*, saying|strong=\"G3004\"* with|strong=\"G1722\"* a|strong=\"G2532\"* great|strong=\"G3173\"* voice|strong=\"G5456\"*, “If|strong=\"G1487\"* anyone|strong=\"G5100\"* worships|strong=\"G4352\"* the|strong=\"G1722\"* beast|strong=\"G2342\"* and|strong=\"G2532\"* his|strong=\"G1909\"* image|strong=\"G1504\"*, and|strong=\"G2532\"* receives|strong=\"G2983\"* a|strong=\"G2532\"* mark|strong=\"G5480\"* on|strong=\"G1909\"* his|strong=\"G1909\"* forehead|strong=\"G3359\"* or|strong=\"G2228\"* on|strong=\"G1909\"* his|strong=\"G1909\"* hand|strong=\"G5495\"*," + }, + { + "verseNum": 10, + "text": "he|strong=\"G2532\"* also|strong=\"G2532\"* will|strong=\"G2316\"* drink|strong=\"G4095\"* of|strong=\"G1537\"* the|strong=\"G1722\"* wine|strong=\"G3631\"* of|strong=\"G1537\"* the|strong=\"G1722\"* wrath|strong=\"G3709\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* prepared unmixed in|strong=\"G1722\"* the|strong=\"G1722\"* cup|strong=\"G4221\"* of|strong=\"G1537\"* his|strong=\"G1722\"* anger|strong=\"G3709\"*. He|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G2532\"* tormented with|strong=\"G1722\"* fire|strong=\"G4442\"* and|strong=\"G2532\"* sulfur|strong=\"G2303\"* in|strong=\"G1722\"* the|strong=\"G1722\"* presence|strong=\"G1799\"* of|strong=\"G1537\"* the|strong=\"G1722\"* holy angels and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* presence|strong=\"G1799\"* of|strong=\"G1537\"* the|strong=\"G1722\"* Lamb." + }, + { + "verseNum": 11, + "text": "The|strong=\"G2532\"* smoke|strong=\"G2586\"* of|strong=\"G2250\"* their|strong=\"G2532\"* torment goes up|strong=\"G1519\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G3756\"*. They|strong=\"G2532\"* have|strong=\"G2192\"* no|strong=\"G3756\"* rest|strong=\"G2192\"* day|strong=\"G2250\"* and|strong=\"G2532\"* night|strong=\"G3571\"*, those|strong=\"G3588\"* who|strong=\"G3588\"* worship|strong=\"G4352\"* the|strong=\"G2532\"* beast|strong=\"G2342\"* and|strong=\"G2532\"* his|strong=\"G1519\"* image|strong=\"G1504\"*, and|strong=\"G2532\"* whoever|strong=\"G3588\"* receives|strong=\"G2983\"* the|strong=\"G2532\"* mark|strong=\"G5480\"* of|strong=\"G2250\"* his|strong=\"G1519\"* name|strong=\"G3686\"*." + }, + { + "verseNum": 12, + "text": "Here|strong=\"G5602\"* is|strong=\"G1510\"* the|strong=\"G2532\"* perseverance|strong=\"G5281\"* of|strong=\"G2316\"* the|strong=\"G2532\"* saints, those|strong=\"G3588\"* who|strong=\"G3588\"* keep|strong=\"G5083\"* the|strong=\"G2532\"* commandments|strong=\"G1785\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* the|strong=\"G2532\"* faith|strong=\"G4102\"* of|strong=\"G2316\"* Jesus|strong=\"G2424\"*.”" + }, + { + "verseNum": 13, + "text": "I|strong=\"G2532\"* heard a|strong=\"G2532\"* voice|strong=\"G5456\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"* saying|strong=\"G3004\"*, “Write|strong=\"G1125\"*, ‘Blessed|strong=\"G3107\"* are|strong=\"G3588\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* who|strong=\"G3588\"* die in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* from|strong=\"G1537\"* now|strong=\"G2532\"* on|strong=\"G1722\"*.’”" + }, + { + "verseNum": 14, + "text": "I|strong=\"G2532\"* looked|strong=\"G3708\"*, and|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G2192\"* white|strong=\"G3022\"* cloud|strong=\"G3507\"*, and|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G1722\"* cloud|strong=\"G3507\"* one|strong=\"G3588\"* sitting|strong=\"G2521\"* like|strong=\"G3664\"* a|strong=\"G2192\"* son|strong=\"G5207\"* of|strong=\"G5207\"* man|strong=\"G5207\"*,+ 14:14 Daniel 7:13* having|strong=\"G2192\"* on|strong=\"G1909\"* his|strong=\"G1909\"* head|strong=\"G2776\"* a|strong=\"G2192\"* golden|strong=\"G5552\"* crown|strong=\"G4735\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* his|strong=\"G1909\"* hand|strong=\"G5495\"* a|strong=\"G2192\"* sharp|strong=\"G3691\"* sickle|strong=\"G1407\"*." + }, + { + "verseNum": 15, + "text": "Another|strong=\"G3588\"* angel came|strong=\"G2064\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G1722\"* temple|strong=\"G3485\"*, crying|strong=\"G2896\"* with|strong=\"G1722\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G1722\"* cloud|strong=\"G3507\"*, “Send|strong=\"G3992\"* your|strong=\"G2532\"* sickle|strong=\"G1407\"* and|strong=\"G2532\"* reap|strong=\"G2325\"*, for|strong=\"G3754\"* the|strong=\"G1722\"* hour|strong=\"G5610\"* to|strong=\"G2532\"* reap|strong=\"G2325\"* has|strong=\"G5610\"* come|strong=\"G2064\"*; for|strong=\"G3754\"* the|strong=\"G1722\"* harvest|strong=\"G2326\"* of|strong=\"G1537\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* is|strong=\"G3588\"* ripe|strong=\"G3583\"*!”" + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* cloud|strong=\"G3507\"* thrust his|strong=\"G1909\"* sickle|strong=\"G1407\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* was|strong=\"G3588\"* reaped|strong=\"G2325\"*." + }, + { + "verseNum": 17, + "text": "Another|strong=\"G3588\"* angel came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G1722\"* temple|strong=\"G3485\"* which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*. He|strong=\"G2532\"* also|strong=\"G2532\"* had|strong=\"G2192\"* a|strong=\"G2192\"* sharp|strong=\"G3691\"* sickle|strong=\"G1407\"*." + }, + { + "verseNum": 18, + "text": "Another|strong=\"G3588\"* angel came|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G1537\"* the|strong=\"G2532\"* altar|strong=\"G2379\"*, he|strong=\"G2532\"* who|strong=\"G3588\"* has|strong=\"G2192\"* power|strong=\"G1849\"* over|strong=\"G1909\"* fire|strong=\"G4442\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* called|strong=\"G3004\"* with|strong=\"G1537\"* a|strong=\"G2192\"* great|strong=\"G3173\"* voice|strong=\"G5456\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2192\"* the|strong=\"G2532\"* sharp|strong=\"G3691\"* sickle|strong=\"G1407\"*, saying|strong=\"G3004\"*, “Send|strong=\"G3992\"* your|strong=\"G2192\"* sharp|strong=\"G3691\"* sickle|strong=\"G1407\"* and|strong=\"G2532\"* gather|strong=\"G5166\"* the|strong=\"G2532\"* clusters|strong=\"G1009\"* of|strong=\"G1537\"* the|strong=\"G2532\"* vine|strong=\"G1093\"* of|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, for|strong=\"G3754\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*’s|strong=\"G2192\"* grapes|strong=\"G4718\"* are|strong=\"G3588\"* fully ripe!”" + }, + { + "verseNum": 19, + "text": "The|strong=\"G2532\"* angel thrust his|strong=\"G1519\"* sickle|strong=\"G1407\"* into|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, and|strong=\"G2532\"* gathered|strong=\"G5166\"* the|strong=\"G2532\"* vintage of|strong=\"G2316\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* and|strong=\"G2532\"* threw it|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G2532\"* great|strong=\"G3173\"* wine|strong=\"G3025\"* press|strong=\"G3025\"* of|strong=\"G2316\"* the|strong=\"G2532\"* wrath|strong=\"G2372\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"G2532\"* wine|strong=\"G3025\"* press|strong=\"G3025\"* was|strong=\"G3588\"* trodden|strong=\"G3961\"* outside|strong=\"G1855\"* of|strong=\"G1537\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, and|strong=\"G2532\"* blood came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* wine|strong=\"G3025\"* press|strong=\"G3025\"*, up|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* bridles|strong=\"G5469\"* of|strong=\"G1537\"* the|strong=\"G2532\"* horses|strong=\"G2462\"*, as|strong=\"G2532\"* far|strong=\"G3588\"* as|strong=\"G2532\"* one|strong=\"G3588\"* thousand|strong=\"G5507\"* six|strong=\"G1812\"* hundred|strong=\"G1812\"* stadia.+ 14:20 1600 stadia = 296 kilometers or 184 miles*" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* another|strong=\"G3588\"* great|strong=\"G3173\"* and|strong=\"G2532\"* marvelous|strong=\"G2298\"* sign|strong=\"G4592\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sky|strong=\"G3772\"*: seven|strong=\"G2033\"* angels having|strong=\"G2192\"* the|strong=\"G1722\"* seven|strong=\"G2033\"* last|strong=\"G2078\"* plagues|strong=\"G4127\"*, for|strong=\"G3754\"* in|strong=\"G1722\"* them|strong=\"G3588\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* wrath|strong=\"G2372\"* is|strong=\"G3588\"* finished|strong=\"G5055\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* something|strong=\"G3708\"* like|strong=\"G5613\"* a|strong=\"G2192\"* sea|strong=\"G2281\"* of|strong=\"G1537\"* glass|strong=\"G5193\"* mixed|strong=\"G3396\"* with|strong=\"G1537\"* fire|strong=\"G4442\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* overcame|strong=\"G3528\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*, his|strong=\"G1909\"* image|strong=\"G1504\"*,+ 15:2 TR adds “his mark,”* and|strong=\"G2532\"* the|strong=\"G2532\"* number of|strong=\"G1537\"* his|strong=\"G1909\"* name|strong=\"G3686\"*, standing|strong=\"G2476\"* on|strong=\"G1909\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* of|strong=\"G1537\"* glass|strong=\"G5193\"*, having|strong=\"G2192\"* harps|strong=\"G2788\"* of|strong=\"G1537\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"G2532\"* sang the|strong=\"G2532\"* song|strong=\"G5603\"* of|strong=\"G2316\"* Moses|strong=\"G3475\"*, the|strong=\"G2532\"* servant|strong=\"G1401\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* song|strong=\"G5603\"* of|strong=\"G2316\"* the|strong=\"G2532\"* Lamb|strong=\"G3004\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 4, + "text": "Who|strong=\"G5101\"* wouldn’t|strong=\"G3588\"* fear|strong=\"G5399\"* you|strong=\"G4771\"*, Lord|strong=\"G2962\"*," + }, + { + "verseNum": 5, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"* I|strong=\"G2532\"* looked|strong=\"G3708\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* temple|strong=\"G3485\"* of|strong=\"G2532\"* the|strong=\"G1722\"* tabernacle|strong=\"G4633\"* of|strong=\"G2532\"* the|strong=\"G1722\"* testimony|strong=\"G3142\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"* was|strong=\"G3588\"* opened." + }, + { + "verseNum": 6, + "text": "The|strong=\"G2532\"* seven|strong=\"G2033\"* angels who|strong=\"G3588\"* had|strong=\"G2192\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* plagues|strong=\"G4127\"* came|strong=\"G1831\"* out|strong=\"G1831\"*, clothed|strong=\"G1746\"* with|strong=\"G1537\"* pure|strong=\"G2513\"*, bright|strong=\"G2986\"* linen|strong=\"G3043\"*, and|strong=\"G2532\"* wearing|strong=\"G1746\"* golden|strong=\"G5552\"* sashes|strong=\"G2223\"* around|strong=\"G4012\"* their|strong=\"G2532\"* chests|strong=\"G4738\"*." + }, + { + "verseNum": 7, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G2532\"* four|strong=\"G5064\"* living|strong=\"G2198\"* creatures|strong=\"G2226\"* gave|strong=\"G1325\"* to|strong=\"G1519\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* angels seven|strong=\"G2033\"* golden|strong=\"G5552\"* bowls|strong=\"G5357\"* full|strong=\"G1073\"* of|strong=\"G1537\"* the|strong=\"G2532\"* wrath|strong=\"G2372\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* lives|strong=\"G2198\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"G2532\"* temple|strong=\"G3485\"* was|strong=\"G3588\"* filled|strong=\"G1072\"* with|strong=\"G1537\"* smoke|strong=\"G2586\"* from|strong=\"G1537\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G1537\"* God|strong=\"G2316\"* and|strong=\"G2532\"* from|strong=\"G1537\"* his|strong=\"G1519\"* power|strong=\"G1411\"*. No|strong=\"G3762\"* one|strong=\"G3762\"* was|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G1519\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G3485\"* until|strong=\"G1519\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* plagues|strong=\"G4127\"* of|strong=\"G1537\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* angels would|strong=\"G2316\"* be|strong=\"G2532\"* finished|strong=\"G5055\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G2532\"* heard a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* temple|strong=\"G3485\"*, saying|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* angels, “Go|strong=\"G5217\"* and|strong=\"G2532\"* pour|strong=\"G1632\"* out|strong=\"G1537\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* bowls|strong=\"G5357\"* of|strong=\"G1537\"* the|strong=\"G2532\"* wrath|strong=\"G2372\"* of|strong=\"G1537\"* God|strong=\"G2316\"* on|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*!”" + }, + { + "verseNum": 2, + "text": "The|strong=\"G2532\"* first|strong=\"G4413\"* went|strong=\"G2532\"*, and|strong=\"G2532\"* poured|strong=\"G1632\"* out|strong=\"G1632\"* his|strong=\"G1519\"* bowl|strong=\"G5357\"* into|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* became|strong=\"G1096\"* a|strong=\"G2192\"* harmful and|strong=\"G2532\"* painful|strong=\"G4190\"* sore|strong=\"G1668\"* on|strong=\"G1909\"* the|strong=\"G2532\"* people|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2192\"* the|strong=\"G2532\"* mark|strong=\"G5480\"* of|strong=\"G2532\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*, and|strong=\"G2532\"* who|strong=\"G3588\"* worshiped|strong=\"G4352\"* his|strong=\"G1519\"* image|strong=\"G1504\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"G1722\"* second|strong=\"G1208\"* angel|strong=\"G1632\"* poured|strong=\"G1632\"* out|strong=\"G1632\"* his|strong=\"G3956\"* bowl|strong=\"G5357\"* into|strong=\"G1519\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* became|strong=\"G1096\"* blood as|strong=\"G5613\"* of|strong=\"G2532\"* a|strong=\"G1096\"* dead|strong=\"G3498\"* man|strong=\"G3956\"*. Every|strong=\"G3956\"* living|strong=\"G2222\"* thing|strong=\"G3956\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"* died|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"G2532\"* third|strong=\"G5154\"* poured|strong=\"G1632\"* out|strong=\"G1632\"* his|strong=\"G1519\"* bowl|strong=\"G5357\"* into|strong=\"G1519\"* the|strong=\"G2532\"* rivers|strong=\"G4215\"* and|strong=\"G2532\"* springs|strong=\"G4077\"* of|strong=\"G2532\"* water|strong=\"G5204\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* became|strong=\"G1096\"* blood." + }, + { + "verseNum": 5, + "text": "I|strong=\"G2532\"* heard the|strong=\"G2532\"* angel of|strong=\"G2532\"* the|strong=\"G2532\"* waters|strong=\"G5204\"* saying|strong=\"G3004\"*, “You|strong=\"G3754\"* are|strong=\"G1510\"* righteous|strong=\"G1342\"*, who|strong=\"G3588\"* are|strong=\"G1510\"* and|strong=\"G2532\"* who|strong=\"G3588\"* were|strong=\"G1510\"*, O Holy|strong=\"G3741\"* One|strong=\"G3588\"*, because|strong=\"G3754\"* you|strong=\"G3754\"* have|strong=\"G2532\"* judged|strong=\"G2919\"* these|strong=\"G3778\"* things|strong=\"G3778\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G3754\"* they|strong=\"G2532\"* poured|strong=\"G1632\"* out|strong=\"G1632\"* the|strong=\"G2532\"* blood of|strong=\"G2532\"* saints and|strong=\"G2532\"* prophets|strong=\"G4396\"*, and|strong=\"G2532\"* you|strong=\"G3754\"* have|strong=\"G2532\"* given|strong=\"G1325\"* them|strong=\"G1325\"* blood to|strong=\"G2532\"* drink|strong=\"G4095\"*. They|strong=\"G2532\"* deserve this|strong=\"G3748\"*.”" + }, + { + "verseNum": 7, + "text": "I|strong=\"G2532\"* heard the|strong=\"G2532\"* altar|strong=\"G2379\"* saying|strong=\"G3004\"*, “Yes|strong=\"G3483\"*, Lord|strong=\"G2962\"* God|strong=\"G2316\"*, the|strong=\"G2532\"* Almighty|strong=\"G3841\"*, true|strong=\"G3588\"* and|strong=\"G2532\"* righteous|strong=\"G1342\"* are|strong=\"G3588\"* your|strong=\"G2962\"* judgments|strong=\"G2920\"*.”" + }, + { + "verseNum": 8, + "text": "The|strong=\"G1722\"* fourth|strong=\"G5067\"* poured|strong=\"G1632\"* out|strong=\"G1632\"* his|strong=\"G1909\"* bowl|strong=\"G5357\"* on|strong=\"G1909\"* the|strong=\"G1722\"* sun|strong=\"G2246\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G2532\"* scorch|strong=\"G2739\"* men|strong=\"G3588\"* with|strong=\"G1722\"* fire|strong=\"G4442\"*." + }, + { + "verseNum": 9, + "text": "People|strong=\"G3588\"* were|strong=\"G3588\"* scorched|strong=\"G2739\"* with|strong=\"G2532\"* great|strong=\"G3173\"* heat|strong=\"G2738\"*, and|strong=\"G2532\"* people|strong=\"G3588\"* blasphemed the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G2316\"* God|strong=\"G2316\"* who|strong=\"G3588\"* has|strong=\"G2192\"* the|strong=\"G2532\"* power|strong=\"G1849\"* over|strong=\"G1909\"* these|strong=\"G3778\"* plagues|strong=\"G4127\"*. They|strong=\"G2532\"* didn’t|strong=\"G3588\"* repent|strong=\"G3340\"* and|strong=\"G2532\"* give|strong=\"G1325\"* him|strong=\"G3588\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"G2532\"* fifth|strong=\"G3991\"* poured|strong=\"G1632\"* out|strong=\"G1537\"* his|strong=\"G1909\"* bowl|strong=\"G5357\"* on|strong=\"G1909\"* the|strong=\"G2532\"* throne|strong=\"G2362\"* of|strong=\"G1537\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*, and|strong=\"G2532\"* his|strong=\"G1909\"* kingdom was|strong=\"G1096\"* darkened|strong=\"G4656\"*. They|strong=\"G2532\"* gnawed|strong=\"G3145\"* their|strong=\"G2532\"* tongues|strong=\"G1100\"* because|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* pain|strong=\"G4192\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* blasphemed the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G1537\"* heaven|strong=\"G3772\"* because|strong=\"G1537\"* of|strong=\"G1537\"* their|strong=\"G2532\"* pains|strong=\"G4192\"* and|strong=\"G2532\"* their|strong=\"G2532\"* sores|strong=\"G1668\"*. They|strong=\"G2532\"* still didn’t|strong=\"G3588\"* repent|strong=\"G3340\"* of|strong=\"G1537\"* their|strong=\"G2532\"* works|strong=\"G2041\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"G2532\"* sixth|strong=\"G1623\"* poured|strong=\"G1632\"* out|strong=\"G1632\"* his|strong=\"G1909\"* bowl|strong=\"G5357\"* on|strong=\"G1909\"* the|strong=\"G2532\"* great|strong=\"G3173\"* river|strong=\"G4215\"*, the|strong=\"G2532\"* Euphrates|strong=\"G2166\"*. Its water|strong=\"G5204\"* was|strong=\"G3588\"* dried|strong=\"G3583\"* up|strong=\"G3583\"*, that|strong=\"G2443\"* the|strong=\"G2532\"* way|strong=\"G3598\"* might|strong=\"G2532\"* be|strong=\"G2532\"* prepared|strong=\"G2090\"* for|strong=\"G1909\"* the|strong=\"G2532\"* kings|strong=\"G3588\"* that|strong=\"G2443\"* come|strong=\"G2532\"* from|strong=\"G2532\"* the|strong=\"G2532\"* sunrise.+ 16:12 or, east*" + }, + { + "verseNum": 13, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* coming|strong=\"G2342\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* mouth|strong=\"G4750\"* of|strong=\"G1537\"* the|strong=\"G2532\"* dragon|strong=\"G1404\"*, and|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* mouth|strong=\"G4750\"* of|strong=\"G1537\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*, and|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* mouth|strong=\"G4750\"* of|strong=\"G1537\"* the|strong=\"G2532\"* false|strong=\"G5578\"* prophet|strong=\"G5578\"*, three|strong=\"G5140\"* unclean spirits|strong=\"G4151\"*, something|strong=\"G3708\"* like|strong=\"G5613\"* frogs;" + }, + { + "verseNum": 14, + "text": "for|strong=\"G1063\"* they|strong=\"G3588\"* are|strong=\"G1510\"* spirits|strong=\"G4151\"* of|strong=\"G4151\"* demons|strong=\"G1140\"*, performing|strong=\"G4160\"* signs|strong=\"G4592\"*, which|strong=\"G3739\"* go|strong=\"G1607\"* out|strong=\"G1607\"* to|strong=\"G1519\"* the|strong=\"G1519\"* kings|strong=\"G3588\"* of|strong=\"G4151\"* the|strong=\"G1519\"* whole|strong=\"G3650\"* inhabited|strong=\"G3625\"* earth|strong=\"G3625\"*, to|strong=\"G1519\"* gather|strong=\"G4863\"* them|strong=\"G3588\"* together|strong=\"G4863\"* for|strong=\"G1063\"* the|strong=\"G1519\"* war|strong=\"G4171\"* of|strong=\"G4151\"* that|strong=\"G3739\"* great|strong=\"G3173\"* day|strong=\"G2250\"* of|strong=\"G4151\"* God|strong=\"G2316\"* the|strong=\"G1519\"* Almighty|strong=\"G3841\"*." + }, + { + "verseNum": 15, + "text": "“\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w thief|strong=\"G2812\"\\+w*. \\+w Blessed|strong=\"G3107\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* watches, \\+w and|strong=\"G2532\"\\+w* \\+w keeps|strong=\"G5083\"\\+w* \\+w his|strong=\"G3708\"\\+w* \\+w clothes|strong=\"G2440\"\\+w*, \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w walk|strong=\"G4043\"\\+w* \\+w naked|strong=\"G1131\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w his|strong=\"G3708\"\\+w* shame.” *" + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* gathered|strong=\"G4863\"* them|strong=\"G3588\"* together|strong=\"G4863\"* into|strong=\"G1519\"* the|strong=\"G2532\"* place|strong=\"G5117\"* which|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G2564\"* in|strong=\"G1519\"* Hebrew|strong=\"G1447\"*, “Harmagedon”." + }, + { + "verseNum": 17, + "text": "The|strong=\"G2532\"* seventh|strong=\"G1442\"* poured|strong=\"G1632\"* out|strong=\"G1831\"* his|strong=\"G1909\"* bowl|strong=\"G5357\"* into|strong=\"G1909\"* the|strong=\"G2532\"* air. A|strong=\"G1096\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* came|strong=\"G1096\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* temple|strong=\"G3485\"* of|strong=\"G1537\"* heaven, from|strong=\"G1537\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, saying|strong=\"G3004\"*, “It|strong=\"G2532\"* is|strong=\"G3588\"* done|strong=\"G1096\"*!”" + }, + { + "verseNum": 18, + "text": "There|strong=\"G2532\"* were|strong=\"G3588\"* lightnings, sounds|strong=\"G5456\"*, and|strong=\"G2532\"* thunders|strong=\"G1027\"*; and|strong=\"G2532\"* there|strong=\"G2532\"* was|strong=\"G1096\"* a|strong=\"G1096\"* great|strong=\"G3173\"* earthquake|strong=\"G4578\"* such|strong=\"G3779\"* as|strong=\"G2532\"* has|strong=\"G3739\"* not|strong=\"G3756\"* happened|strong=\"G1096\"* since|strong=\"G1096\"* there|strong=\"G2532\"* were|strong=\"G3588\"* men|strong=\"G3588\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*—so|strong=\"G3779\"* great|strong=\"G3173\"* an|strong=\"G2532\"* earthquake|strong=\"G4578\"* and|strong=\"G2532\"* so|strong=\"G3779\"* mighty|strong=\"G3173\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"G2532\"* great|strong=\"G3173\"* city|strong=\"G4172\"* was|strong=\"G1096\"* divided|strong=\"G1096\"* into|strong=\"G1519\"* three|strong=\"G5140\"* parts|strong=\"G3313\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* cities|strong=\"G4172\"* of|strong=\"G2316\"* the|strong=\"G2532\"* nations|strong=\"G1484\"* fell|strong=\"G4098\"*. Babylon the|strong=\"G2532\"* great|strong=\"G3173\"* was|strong=\"G1096\"* remembered|strong=\"G3403\"* in|strong=\"G1519\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, to|strong=\"G1519\"* give|strong=\"G1325\"* to|strong=\"G1519\"* her|strong=\"G1325\"* the|strong=\"G2532\"* cup|strong=\"G4221\"* of|strong=\"G2316\"* the|strong=\"G2532\"* wine|strong=\"G3631\"* of|strong=\"G2316\"* the|strong=\"G2532\"* fierceness|strong=\"G2372\"* of|strong=\"G2316\"* his|strong=\"G1519\"* wrath|strong=\"G3709\"*." + }, + { + "verseNum": 20, + "text": "Every|strong=\"G3956\"* island|strong=\"G3520\"* fled|strong=\"G5343\"* away|strong=\"G5343\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* mountains|strong=\"G3735\"* were|strong=\"G2532\"* not|strong=\"G3756\"* found|strong=\"G2147\"*." + }, + { + "verseNum": 21, + "text": "Great|strong=\"G3173\"* hailstones|strong=\"G5464\"*, about|strong=\"G5613\"* the|strong=\"G2532\"* weight of|strong=\"G1537\"* a|strong=\"G5613\"* talent|strong=\"G5006\"*,+ 16:21 A talent is about 30 kilograms or 66 pounds.* came|strong=\"G2597\"* down|strong=\"G2597\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* sky|strong=\"G3772\"* on|strong=\"G1909\"* people|strong=\"G1510\"*. People|strong=\"G1510\"* blasphemed God|strong=\"G2316\"* because|strong=\"G3754\"* of|strong=\"G1537\"* the|strong=\"G2532\"* plague|strong=\"G4127\"* of|strong=\"G1537\"* the|strong=\"G2532\"* hail|strong=\"G5464\"*, for|strong=\"G3754\"* this|strong=\"G3588\"* plague|strong=\"G4127\"* was|strong=\"G1510\"* exceedingly|strong=\"G4970\"* severe|strong=\"G3173\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* angels who|strong=\"G3588\"* had|strong=\"G2192\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* bowls|strong=\"G5357\"* came|strong=\"G2064\"* and|strong=\"G2532\"* spoke|strong=\"G2980\"* with|strong=\"G3326\"* me|strong=\"G1473\"*, saying|strong=\"G3004\"*, “Come|strong=\"G2064\"* here|strong=\"G1204\"*. I|strong=\"G1473\"* will|strong=\"G2532\"* show|strong=\"G1166\"* you|strong=\"G4771\"* the|strong=\"G2532\"* judgment|strong=\"G2917\"* of|strong=\"G1537\"* the|strong=\"G2532\"* great|strong=\"G3173\"* prostitute|strong=\"G4204\"* who|strong=\"G3588\"* sits|strong=\"G2521\"* on|strong=\"G1909\"* many|strong=\"G4183\"* waters|strong=\"G5204\"*," + }, + { + "verseNum": 2, + "text": "with|strong=\"G3326\"* whom|strong=\"G3739\"* the|strong=\"G2532\"* kings|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* committed|strong=\"G4203\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*. Those|strong=\"G3588\"* who|strong=\"G3739\"* dwell|strong=\"G2730\"* in|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* were|strong=\"G3588\"* made|strong=\"G3184\"* drunken|strong=\"G3184\"* with|strong=\"G3326\"* the|strong=\"G2532\"* wine|strong=\"G3631\"* of|strong=\"G1537\"* her|strong=\"G3588\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*.”" + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* carried|strong=\"G2532\"* me|strong=\"G1473\"* away in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* into|strong=\"G1519\"* a|strong=\"G2192\"* wilderness|strong=\"G2048\"*. I|strong=\"G1473\"* saw|strong=\"G3708\"* a|strong=\"G2192\"* woman|strong=\"G1135\"* sitting|strong=\"G2521\"* on|strong=\"G1909\"* a|strong=\"G2192\"* scarlet-colored beast|strong=\"G2342\"*, full|strong=\"G1073\"* of|strong=\"G4151\"* blasphemous names|strong=\"G3686\"*, having|strong=\"G2192\"* seven|strong=\"G2033\"* heads|strong=\"G2776\"* and|strong=\"G2532\"* ten|strong=\"G1176\"* horns|strong=\"G2768\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"G1722\"* woman|strong=\"G1135\"* was|strong=\"G1510\"* dressed|strong=\"G4016\"* in|strong=\"G1722\"* purple|strong=\"G4210\"* and|strong=\"G2532\"* scarlet|strong=\"G2847\"*, and|strong=\"G2532\"* decked|strong=\"G5558\"* with|strong=\"G1722\"* gold|strong=\"G5553\"* and|strong=\"G2532\"* precious|strong=\"G5093\"* stones|strong=\"G3037\"* and|strong=\"G2532\"* pearls|strong=\"G3135\"*, having|strong=\"G2192\"* in|strong=\"G1722\"* her|strong=\"G2192\"* hand|strong=\"G5495\"* a|strong=\"G2192\"* golden|strong=\"G5552\"* cup|strong=\"G4221\"* full|strong=\"G1073\"* of|strong=\"G2532\"* abominations and|strong=\"G2532\"* the|strong=\"G1722\"* impurities of|strong=\"G2532\"* the|strong=\"G1722\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"* of|strong=\"G2532\"* the|strong=\"G1722\"* earth|strong=\"G2532\"*." + }, + { + "verseNum": 5, + "text": "And|strong=\"G2532\"* on|strong=\"G1909\"* her|strong=\"G3588\"* forehead|strong=\"G3359\"* a|strong=\"G2532\"* name|strong=\"G3686\"* was|strong=\"G3588\"* written|strong=\"G1125\"*, “MYSTERY|strong=\"G3466\"*, BABYLON THE|strong=\"G2532\"* GREAT|strong=\"G3173\"*, THE|strong=\"G2532\"* MOTHER|strong=\"G3384\"* OF|strong=\"G2532\"* THE|strong=\"G2532\"* PROSTITUTES|strong=\"G4204\"* AND|strong=\"G2532\"* OF|strong=\"G2532\"* THE|strong=\"G2532\"* ABOMINATIONS OF|strong=\"G2532\"* THE|strong=\"G2532\"* EARTH|strong=\"G1093\"*.”" + }, + { + "verseNum": 6, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* drunken|strong=\"G3184\"* with|strong=\"G1537\"* the|strong=\"G2532\"* blood of|strong=\"G1537\"* the|strong=\"G2532\"* saints and|strong=\"G2532\"* with|strong=\"G1537\"* the|strong=\"G2532\"* blood of|strong=\"G1537\"* the|strong=\"G2532\"* martyrs|strong=\"G3144\"* of|strong=\"G1537\"* Jesus|strong=\"G2424\"*. When|strong=\"G2532\"* I|strong=\"G2532\"* saw|strong=\"G3708\"* her|strong=\"G1438\"*, I|strong=\"G2532\"* wondered|strong=\"G2296\"* with|strong=\"G1537\"* great|strong=\"G3173\"* amazement|strong=\"G2296\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"G2532\"* angel said|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, “Why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G4771\"* wonder|strong=\"G2296\"*? I|strong=\"G1473\"* will|strong=\"G5101\"* tell|strong=\"G3004\"* you|strong=\"G4771\"* the|strong=\"G2532\"* mystery|strong=\"G3466\"* of|strong=\"G1223\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* and|strong=\"G2532\"* of|strong=\"G1223\"* the|strong=\"G2532\"* beast|strong=\"G2342\"* that|strong=\"G3588\"* carries her|strong=\"G1438\"*, which|strong=\"G3588\"* has|strong=\"G2192\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* heads|strong=\"G2776\"* and|strong=\"G2532\"* the|strong=\"G2532\"* ten|strong=\"G1176\"* horns|strong=\"G2768\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"G2532\"* beast|strong=\"G2342\"* that|strong=\"G3754\"* you|strong=\"G3739\"* saw|strong=\"G3708\"* was|strong=\"G1510\"*, and|strong=\"G2532\"* is|strong=\"G1510\"* not|strong=\"G3756\"*; and|strong=\"G2532\"* is|strong=\"G1510\"* about|strong=\"G3195\"* to|strong=\"G1519\"* come|strong=\"G3195\"* up|strong=\"G1519\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* abyss and|strong=\"G2532\"* to|strong=\"G1519\"* go|strong=\"G5217\"* into|strong=\"G1519\"* destruction. Those|strong=\"G3588\"* who|strong=\"G3739\"* dwell|strong=\"G2730\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* and|strong=\"G2532\"* whose|strong=\"G3739\"* names|strong=\"G3686\"* have|strong=\"G2532\"* not|strong=\"G3756\"* been|strong=\"G1510\"* written|strong=\"G1125\"* in|strong=\"G1519\"* the|strong=\"G2532\"* book|strong=\"G3588\"* of|strong=\"G1537\"* life|strong=\"G2222\"* from|strong=\"G1537\"* the|strong=\"G2532\"* foundation|strong=\"G2602\"* of|strong=\"G1537\"* the|strong=\"G2532\"* world|strong=\"G2889\"* will|strong=\"G3195\"* marvel|strong=\"G2296\"* when|strong=\"G2532\"* they|strong=\"G2532\"* see|strong=\"G3708\"* that|strong=\"G3754\"* the|strong=\"G2532\"* beast|strong=\"G2342\"* was|strong=\"G1510\"*, and|strong=\"G2532\"* is|strong=\"G1510\"* not|strong=\"G3756\"*, and|strong=\"G2532\"* shall|strong=\"G2532\"* be|strong=\"G1510\"* present|strong=\"G3918\"*.+ 17:8 TR reads “yet is” instead of “shall be present”*" + }, + { + "verseNum": 9, + "text": "Here|strong=\"G5602\"* is|strong=\"G1510\"* the|strong=\"G2532\"* mind|strong=\"G3563\"* that|strong=\"G3588\"* has|strong=\"G2192\"* wisdom|strong=\"G4678\"*. The|strong=\"G2532\"* seven|strong=\"G2033\"* heads|strong=\"G2776\"* are|strong=\"G1510\"* seven|strong=\"G2033\"* mountains|strong=\"G3735\"* on|strong=\"G1909\"* which|strong=\"G3588\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* sits|strong=\"G2521\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"G2532\"* are|strong=\"G1510\"* seven|strong=\"G2033\"* kings|strong=\"G3588\"*. Five|strong=\"G4002\"* have|strong=\"G2532\"* fallen|strong=\"G4098\"*, the|strong=\"G2532\"* one|strong=\"G1520\"* is|strong=\"G1510\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* other|strong=\"G1520\"* has|strong=\"G1510\"* not|strong=\"G1510\"* yet|strong=\"G2532\"* come|strong=\"G2064\"*. When|strong=\"G3752\"* he|strong=\"G2532\"* comes|strong=\"G2064\"*, he|strong=\"G2532\"* must|strong=\"G1163\"* continue|strong=\"G3306\"* a|strong=\"G2532\"* little|strong=\"G3641\"* while|strong=\"G1510\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"G2532\"* beast|strong=\"G2342\"* that|strong=\"G3739\"* was|strong=\"G1510\"*, and|strong=\"G2532\"* is|strong=\"G1510\"* not|strong=\"G3756\"*, is|strong=\"G1510\"* himself|strong=\"G1519\"* also|strong=\"G2532\"* an|strong=\"G2532\"* eighth|strong=\"G3590\"*, and|strong=\"G2532\"* is|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G2532\"* seven|strong=\"G2033\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* goes|strong=\"G5217\"* to|strong=\"G1519\"* destruction." + }, + { + "verseNum": 12, + "text": "The|strong=\"G2532\"* ten|strong=\"G1176\"* horns|strong=\"G2768\"* that|strong=\"G3739\"* you|strong=\"G3739\"* saw|strong=\"G3708\"* are|strong=\"G1510\"* ten|strong=\"G1176\"* kings|strong=\"G3588\"* who|strong=\"G3739\"* have|strong=\"G2532\"* received|strong=\"G2983\"* no|strong=\"G2532\"* kingdom as|strong=\"G5613\"* yet|strong=\"G2532\"*, but|strong=\"G2532\"* they|strong=\"G2532\"* receive|strong=\"G2983\"* authority|strong=\"G1849\"* as|strong=\"G5613\"* kings|strong=\"G3588\"* with|strong=\"G3326\"* the|strong=\"G2532\"* beast|strong=\"G2342\"* for|strong=\"G1520\"* one|strong=\"G1520\"* hour|strong=\"G5610\"*." + }, + { + "verseNum": 13, + "text": "These|strong=\"G3778\"* have|strong=\"G2192\"* one|strong=\"G1520\"* mind|strong=\"G1106\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* give|strong=\"G1325\"* their|strong=\"G2532\"* power|strong=\"G1411\"* and|strong=\"G2532\"* authority|strong=\"G1849\"* to|strong=\"G2532\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*." + }, + { + "verseNum": 14, + "text": "These|strong=\"G3778\"* will|strong=\"G1510\"* war|strong=\"G4170\"* against|strong=\"G3326\"* the|strong=\"G2532\"* Lamb, and|strong=\"G2532\"* the|strong=\"G2532\"* Lamb will|strong=\"G1510\"* overcome|strong=\"G3528\"* them|strong=\"G3588\"*, for|strong=\"G3754\"* he|strong=\"G2532\"* is|strong=\"G1510\"* Lord|strong=\"G2962\"* of|strong=\"G2532\"* lords|strong=\"G2962\"* and|strong=\"G2532\"* King|strong=\"G3588\"* of|strong=\"G2532\"* kings|strong=\"G3588\"*; and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G3588\"* are|strong=\"G1510\"* called|strong=\"G2822\"*, chosen|strong=\"G1588\"*, and|strong=\"G2532\"* faithful|strong=\"G4103\"*.”" + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, “The|strong=\"G2532\"* waters|strong=\"G5204\"* which|strong=\"G3739\"* you|strong=\"G3739\"* saw|strong=\"G3708\"*, where|strong=\"G3757\"* the|strong=\"G2532\"* prostitute|strong=\"G4204\"* sits|strong=\"G2521\"*, are|strong=\"G1510\"* peoples|strong=\"G2992\"*, multitudes|strong=\"G3793\"*, nations|strong=\"G1484\"*, and|strong=\"G2532\"* languages|strong=\"G1100\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"G1722\"* ten|strong=\"G1176\"* horns|strong=\"G2768\"* which|strong=\"G3739\"* you|strong=\"G3739\"* saw|strong=\"G3708\"*, they|strong=\"G2532\"* and|strong=\"G2532\"* the|strong=\"G1722\"* beast|strong=\"G2342\"* will|strong=\"G2532\"* hate|strong=\"G3404\"* the|strong=\"G1722\"* prostitute|strong=\"G4204\"*, will|strong=\"G2532\"* make|strong=\"G4160\"* her|strong=\"G1438\"* desolate|strong=\"G2049\"*, will|strong=\"G2532\"* strip her|strong=\"G1438\"* naked|strong=\"G1131\"*, will|strong=\"G2532\"* eat|strong=\"G2068\"* her|strong=\"G1438\"* flesh|strong=\"G4561\"*, and|strong=\"G2532\"* will|strong=\"G2532\"* burn|strong=\"G2618\"* her|strong=\"G1438\"* utterly with|strong=\"G1722\"* fire|strong=\"G4442\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* God|strong=\"G2316\"* has|strong=\"G2316\"* put|strong=\"G1325\"* in|strong=\"G1519\"* their|strong=\"G2532\"* hearts|strong=\"G2588\"* to|strong=\"G1519\"* do|strong=\"G4160\"* what|strong=\"G3588\"* he|strong=\"G2532\"* has|strong=\"G2316\"* in|strong=\"G1519\"* mind|strong=\"G2588\"*, to|strong=\"G1519\"* be|strong=\"G2532\"* of|strong=\"G3056\"* one|strong=\"G1520\"* mind|strong=\"G2588\"*, and|strong=\"G2532\"* to|strong=\"G1519\"* give|strong=\"G1325\"* their|strong=\"G2532\"* kingdom to|strong=\"G1519\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*, until|strong=\"G1519\"* the|strong=\"G2532\"* words|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* should|strong=\"G2316\"* be|strong=\"G2532\"* accomplished|strong=\"G5055\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"G2532\"* woman|strong=\"G1135\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* saw|strong=\"G3708\"* is|strong=\"G1510\"* the|strong=\"G2532\"* great|strong=\"G3173\"* city|strong=\"G4172\"* which|strong=\"G3739\"* reigns|strong=\"G2192\"* over|strong=\"G1909\"* the|strong=\"G2532\"* kings|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*.”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, I|strong=\"G2532\"* saw|strong=\"G3708\"* another|strong=\"G3588\"* angel|strong=\"G2597\"* coming|strong=\"G2597\"* down|strong=\"G2597\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*, having|strong=\"G2192\"* great|strong=\"G3173\"* authority|strong=\"G1849\"*. The|strong=\"G2532\"* earth|strong=\"G1093\"* was|strong=\"G3588\"* illuminated|strong=\"G5461\"* with|strong=\"G3326\"* his|strong=\"G3708\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* cried|strong=\"G2896\"* with|strong=\"G1722\"* a|strong=\"G1096\"* mighty|strong=\"G2478\"* voice|strong=\"G5456\"*, saying|strong=\"G3004\"*, “Fallen|strong=\"G4098\"*, fallen|strong=\"G4098\"* is|strong=\"G3588\"* Babylon the|strong=\"G1722\"* great|strong=\"G3173\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* has|strong=\"G1096\"* become|strong=\"G1096\"* a|strong=\"G1096\"* habitation|strong=\"G2732\"* of|strong=\"G4151\"* demons|strong=\"G1140\"*, a|strong=\"G1096\"* prison|strong=\"G5438\"* of|strong=\"G4151\"* every|strong=\"G3956\"* unclean spirit|strong=\"G4151\"*, and|strong=\"G2532\"* a|strong=\"G1096\"* prison|strong=\"G5438\"* of|strong=\"G4151\"* every|strong=\"G3956\"* unclean and|strong=\"G2532\"* hated|strong=\"G3404\"* bird|strong=\"G3732\"*!" + }, + { + "verseNum": 3, + "text": "For|strong=\"G3754\"* all|strong=\"G3956\"* the|strong=\"G2532\"* nations|strong=\"G1484\"* have|strong=\"G2532\"* drunk|strong=\"G4095\"* of|strong=\"G1537\"* the|strong=\"G2532\"* wine|strong=\"G3631\"* of|strong=\"G1537\"* the|strong=\"G2532\"* wrath|strong=\"G2372\"* of|strong=\"G1537\"* her|strong=\"G3956\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*, the|strong=\"G2532\"* kings|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* committed|strong=\"G4203\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"* with|strong=\"G3326\"* her|strong=\"G3956\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* merchants|strong=\"G1713\"* of|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* grew rich|strong=\"G4147\"* from|strong=\"G1537\"* the|strong=\"G2532\"* abundance|strong=\"G1411\"* of|strong=\"G1537\"* her|strong=\"G3956\"* luxury.”" + }, + { + "verseNum": 4, + "text": "I|strong=\"G1473\"* heard another|strong=\"G3588\"* voice|strong=\"G5456\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"*, saying|strong=\"G3004\"*, “Come|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* her|strong=\"G3588\"*, my|strong=\"G1473\"* people|strong=\"G2992\"*, that|strong=\"G2443\"* you|strong=\"G3004\"* have|strong=\"G2532\"* no|strong=\"G3361\"* participation in|strong=\"G2532\"* her|strong=\"G3588\"* sins, and|strong=\"G2532\"* that|strong=\"G2443\"* you|strong=\"G3004\"* don’t|strong=\"G3588\"* receive|strong=\"G2983\"* of|strong=\"G1537\"* her|strong=\"G3588\"* plagues|strong=\"G4127\"*," + }, + { + "verseNum": 5, + "text": "for|strong=\"G3754\"* her|strong=\"G3754\"* sins have|strong=\"G2532\"* reached to|strong=\"G2532\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*, and|strong=\"G2532\"* God|strong=\"G2316\"* has|strong=\"G2316\"* remembered|strong=\"G3421\"* her|strong=\"G3754\"* iniquities." + }, + { + "verseNum": 6, + "text": "Return to|strong=\"G2532\"* her|strong=\"G2596\"* just|strong=\"G5613\"* as|strong=\"G5613\"* she|strong=\"G2532\"* returned, and|strong=\"G2532\"* repay her|strong=\"G2596\"* double|strong=\"G1362\"* as|strong=\"G5613\"* she|strong=\"G2532\"* did|strong=\"G2532\"*, and|strong=\"G2532\"* according|strong=\"G2596\"* to|strong=\"G2532\"* her|strong=\"G2596\"* works|strong=\"G2041\"*. In|strong=\"G1722\"* the|strong=\"G1722\"* cup|strong=\"G4221\"* which|strong=\"G3739\"* she|strong=\"G2532\"* mixed|strong=\"G2767\"*, mix|strong=\"G2767\"* to|strong=\"G2532\"* her|strong=\"G2596\"* double|strong=\"G1362\"*." + }, + { + "verseNum": 7, + "text": "However much|strong=\"G5118\"* she|strong=\"G2532\"* glorified|strong=\"G1392\"* herself|strong=\"G1438\"* and|strong=\"G2532\"* grew wanton, so|strong=\"G2532\"* much|strong=\"G5118\"* give|strong=\"G1325\"* her|strong=\"G1325\"* of|strong=\"G2532\"* torment and|strong=\"G2532\"* mourning|strong=\"G3997\"*. For|strong=\"G3754\"* she|strong=\"G2532\"* says|strong=\"G3004\"* in|strong=\"G1722\"* her|strong=\"G1325\"* heart|strong=\"G2588\"*, ‘I|strong=\"G2532\"* sit|strong=\"G2521\"* a|strong=\"G2532\"* queen, and|strong=\"G2532\"* am|strong=\"G1510\"* no|strong=\"G3756\"* widow|strong=\"G5503\"*, and|strong=\"G2532\"* will|strong=\"G1510\"* in|strong=\"G1722\"* no|strong=\"G3756\"* way|strong=\"G1722\"* see|strong=\"G3708\"* mourning|strong=\"G3997\"*.’" + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G1223\"* in|strong=\"G1722\"* one|strong=\"G1520\"* day|strong=\"G2250\"* her|strong=\"G1438\"* plagues|strong=\"G4127\"* will|strong=\"G2316\"* come|strong=\"G2240\"*: death|strong=\"G2288\"*, mourning|strong=\"G3997\"*, and|strong=\"G2532\"* famine|strong=\"G3042\"*; and|strong=\"G2532\"* she|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G2532\"* utterly burned|strong=\"G2618\"* with|strong=\"G1722\"* fire|strong=\"G4442\"*, for|strong=\"G3754\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* God|strong=\"G2316\"* who|strong=\"G3588\"* has|strong=\"G2316\"* judged|strong=\"G2919\"* her|strong=\"G1438\"* is|strong=\"G3588\"* strong|strong=\"G2478\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"G2532\"* kings|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* who|strong=\"G3588\"* committed|strong=\"G4203\"* sexual immorality|strong=\"G4203\"* and|strong=\"G2532\"* lived|strong=\"G2532\"* wantonly with|strong=\"G3326\"* her|strong=\"G1438\"* will|strong=\"G2532\"* weep|strong=\"G2799\"* and|strong=\"G2532\"* wail|strong=\"G2875\"* over|strong=\"G1909\"* her|strong=\"G1438\"*, when|strong=\"G3752\"* they|strong=\"G2532\"* look at|strong=\"G1909\"* the|strong=\"G2532\"* smoke|strong=\"G2586\"* of|strong=\"G2532\"* her|strong=\"G1438\"* burning|strong=\"G4451\"*," + }, + { + "verseNum": 10, + "text": "standing|strong=\"G2476\"* far|strong=\"G3113\"* away|strong=\"G3113\"* for|strong=\"G3754\"* the|strong=\"G1223\"* fear|strong=\"G5401\"* of|strong=\"G1223\"* her|strong=\"G3754\"* torment, saying|strong=\"G3004\"*, ‘Woe|strong=\"G3759\"*, woe|strong=\"G3759\"*, the|strong=\"G1223\"* great|strong=\"G3173\"* city|strong=\"G4172\"*, Babylon, the|strong=\"G1223\"* strong|strong=\"G2478\"* city|strong=\"G4172\"*! For|strong=\"G3754\"* your|strong=\"G1223\"* judgment|strong=\"G2920\"* has|strong=\"G5610\"* come|strong=\"G2064\"* in|strong=\"G1223\"* one|strong=\"G1520\"* hour|strong=\"G5610\"*.’" + }, + { + "verseNum": 11, + "text": "The|strong=\"G2532\"* merchants|strong=\"G1713\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* weep|strong=\"G2799\"* and|strong=\"G2532\"* mourn|strong=\"G3996\"* over|strong=\"G1909\"* her|strong=\"G1438\"*, for|strong=\"G3754\"* no|strong=\"G3762\"* one|strong=\"G3762\"* buys their|strong=\"G1438\"* merchandise|strong=\"G1117\"* any|strong=\"G3762\"* more|strong=\"G3765\"*:" + }, + { + "verseNum": 12, + "text": "merchandise|strong=\"G1117\"* of|strong=\"G1537\"* gold|strong=\"G5557\"*, silver, precious|strong=\"G5093\"* stones|strong=\"G3037\"*, pearls|strong=\"G3135\"*, fine|strong=\"G1039\"* linen|strong=\"G1039\"*, purple|strong=\"G4209\"*, silk|strong=\"G4596\"*, scarlet|strong=\"G2847\"*, all|strong=\"G3956\"* expensive|strong=\"G5093\"* wood|strong=\"G3586\"*, every|strong=\"G3956\"* vessel|strong=\"G4632\"* of|strong=\"G1537\"* ivory|strong=\"G1661\"*, every|strong=\"G3956\"* vessel|strong=\"G4632\"* made|strong=\"G3956\"* of|strong=\"G1537\"* most|strong=\"G1537\"* precious|strong=\"G5093\"* wood|strong=\"G3586\"*, and|strong=\"G2532\"* of|strong=\"G1537\"* brass|strong=\"G5475\"*, and|strong=\"G2532\"* iron|strong=\"G4604\"*, and|strong=\"G2532\"* marble|strong=\"G3139\"*;" + }, + { + "verseNum": 13, + "text": "and|strong=\"G2532\"* cinnamon|strong=\"G2792\"*, incense|strong=\"G2368\"*, perfume|strong=\"G3464\"*, frankincense|strong=\"G3030\"*, wine|strong=\"G3631\"*, olive|strong=\"G1637\"* oil|strong=\"G1637\"*, fine|strong=\"G2532\"* flour|strong=\"G4585\"*, wheat|strong=\"G4621\"*, cattle|strong=\"G2934\"*, sheep|strong=\"G4263\"*, horses|strong=\"G2462\"*, chariots|strong=\"G4480\"*, and|strong=\"G2532\"* people|strong=\"G5590\"*’s bodies|strong=\"G4983\"* and|strong=\"G2532\"* souls|strong=\"G5590\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"G2532\"* fruits|strong=\"G3703\"* which|strong=\"G3588\"* your|strong=\"G2532\"* soul|strong=\"G5590\"* lusted|strong=\"G5590\"* after|strong=\"G2532\"* have|strong=\"G2532\"* been|strong=\"G2532\"* lost to|strong=\"G2532\"* you|strong=\"G4771\"*. All|strong=\"G3956\"* things|strong=\"G3956\"* that|strong=\"G3588\"* were|strong=\"G3588\"* dainty|strong=\"G3045\"* and|strong=\"G2532\"* sumptuous have|strong=\"G2532\"* perished from|strong=\"G2532\"* you|strong=\"G4771\"*, and|strong=\"G2532\"* you|strong=\"G4771\"* will|strong=\"G2532\"* find|strong=\"G2147\"* them|strong=\"G3588\"* no|strong=\"G3756\"* more|strong=\"G3765\"* at|strong=\"G3756\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"G2532\"* merchants|strong=\"G1713\"* of|strong=\"G1223\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, who|strong=\"G3588\"* were|strong=\"G3588\"* made rich|strong=\"G4147\"* by|strong=\"G1223\"* her|strong=\"G3588\"*, will|strong=\"G2532\"* stand|strong=\"G2476\"* far|strong=\"G3113\"* away|strong=\"G3113\"* for|strong=\"G1223\"* the|strong=\"G2532\"* fear|strong=\"G5401\"* of|strong=\"G1223\"* her|strong=\"G3588\"* torment, weeping|strong=\"G2799\"* and|strong=\"G2532\"* mourning|strong=\"G3996\"*," + }, + { + "verseNum": 16, + "text": "saying|strong=\"G3004\"*, ‘Woe|strong=\"G3759\"*, woe|strong=\"G3759\"*, the|strong=\"G1722\"* great|strong=\"G3173\"* city|strong=\"G4172\"*, she|strong=\"G2532\"* who|strong=\"G3588\"* was|strong=\"G3588\"* dressed|strong=\"G4016\"* in|strong=\"G1722\"* fine|strong=\"G1039\"* linen|strong=\"G1039\"*, purple|strong=\"G4210\"*, and|strong=\"G2532\"* scarlet|strong=\"G2847\"*, and|strong=\"G2532\"* decked|strong=\"G5558\"* with|strong=\"G1722\"* gold|strong=\"G5553\"* and|strong=\"G2532\"* precious|strong=\"G5093\"* stones|strong=\"G3037\"* and|strong=\"G2532\"* pearls|strong=\"G3135\"*!" + }, + { + "verseNum": 17, + "text": "For|strong=\"G1909\"* in|strong=\"G1909\"* an|strong=\"G2532\"* hour|strong=\"G5610\"* such|strong=\"G5118\"* great|strong=\"G5118\"* riches|strong=\"G4149\"* are|strong=\"G3588\"* made|strong=\"G3956\"* desolate.’ Every|strong=\"G3956\"* ship master|strong=\"G2942\"*, and|strong=\"G2532\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* sails anywhere, and|strong=\"G2532\"* mariners, and|strong=\"G2532\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* gain their|strong=\"G2532\"* living|strong=\"G2038\"* by|strong=\"G1909\"* sea|strong=\"G2281\"*, stood|strong=\"G2476\"* far|strong=\"G3113\"* away|strong=\"G3113\"*," + }, + { + "verseNum": 18, + "text": "and|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* as|strong=\"G2532\"* they|strong=\"G2532\"* looked|strong=\"G2532\"* at|strong=\"G3588\"* the|strong=\"G2532\"* smoke|strong=\"G2586\"* of|strong=\"G2532\"* her|strong=\"G3588\"* burning|strong=\"G4451\"*, saying|strong=\"G3004\"*, ‘What|strong=\"G5101\"* is|strong=\"G3588\"* like|strong=\"G3664\"* the|strong=\"G2532\"* great|strong=\"G3173\"* city|strong=\"G4172\"*?’" + }, + { + "verseNum": 19, + "text": "They|strong=\"G2532\"* cast|strong=\"G2532\"* dust|strong=\"G5522\"* on|strong=\"G1909\"* their|strong=\"G2532\"* heads|strong=\"G2776\"*, and|strong=\"G2532\"* cried|strong=\"G2896\"*, weeping|strong=\"G2799\"* and|strong=\"G2532\"* mourning|strong=\"G3996\"*, saying|strong=\"G3004\"*, ‘Woe|strong=\"G3759\"*, woe|strong=\"G3759\"*, the|strong=\"G1722\"* great|strong=\"G3173\"* city|strong=\"G4172\"*, in|strong=\"G1722\"* which|strong=\"G3739\"* all|strong=\"G3956\"* who|strong=\"G3739\"* had|strong=\"G2192\"* their|strong=\"G2532\"* ships|strong=\"G4143\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"* were|strong=\"G3588\"* made|strong=\"G3956\"* rich|strong=\"G4147\"* by|strong=\"G1722\"* reason|strong=\"G1537\"* of|strong=\"G1537\"* her|strong=\"G3956\"* great|strong=\"G3173\"* wealth|strong=\"G5094\"*!’ For|strong=\"G3754\"* she|strong=\"G2532\"* is|strong=\"G3588\"* made|strong=\"G3956\"* desolate|strong=\"G2049\"* in|strong=\"G1722\"* one|strong=\"G1520\"* hour|strong=\"G5610\"*." + }, + { + "verseNum": 20, + "text": "“Rejoice|strong=\"G2165\"* over|strong=\"G1909\"* her|strong=\"G3754\"*, O heaven|strong=\"G3772\"*, you|strong=\"G5210\"* saints, apostles, and|strong=\"G2532\"* prophets|strong=\"G4396\"*, for|strong=\"G3754\"* God|strong=\"G2316\"* has|strong=\"G2316\"* judged|strong=\"G2919\"* your|strong=\"G2532\"* judgment|strong=\"G2917\"* on|strong=\"G1909\"* her|strong=\"G3754\"*.”" + }, + { + "verseNum": 21, + "text": "A|strong=\"G5613\"* mighty|strong=\"G2478\"* angel took|strong=\"G2532\"* up|strong=\"G1519\"* a|strong=\"G5613\"* stone|strong=\"G3037\"* like|strong=\"G5613\"* a|strong=\"G5613\"* great|strong=\"G3173\"* millstone|strong=\"G3458\"* and|strong=\"G2532\"* cast|strong=\"G2532\"* it|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, saying|strong=\"G3004\"*, “Thus|strong=\"G3779\"* with|strong=\"G2532\"* violence|strong=\"G3731\"* will|strong=\"G2532\"* Babylon, the|strong=\"G2532\"* great|strong=\"G3173\"* city|strong=\"G4172\"*, be|strong=\"G2532\"* thrown down, and|strong=\"G2532\"* will|strong=\"G2532\"* be|strong=\"G2532\"* found|strong=\"G2147\"* no|strong=\"G3756\"* more|strong=\"G2089\"* at|strong=\"G1519\"* all|strong=\"G2532\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"G1722\"* voice|strong=\"G5456\"* of|strong=\"G2532\"* harpists|strong=\"G2790\"*, minstrels, flute players, and|strong=\"G2532\"* trumpeters|strong=\"G4538\"* will|strong=\"G2532\"* be|strong=\"G2532\"* heard no|strong=\"G3756\"* more|strong=\"G2089\"* at|strong=\"G1722\"* all|strong=\"G3956\"* in|strong=\"G1722\"* you|strong=\"G4771\"*. No|strong=\"G3756\"* craftsman|strong=\"G5079\"* of|strong=\"G2532\"* whatever|strong=\"G3956\"* craft|strong=\"G5078\"* will|strong=\"G2532\"* be|strong=\"G2532\"* found|strong=\"G2147\"* any|strong=\"G3956\"* more|strong=\"G2089\"* at|strong=\"G1722\"* all|strong=\"G3956\"* in|strong=\"G1722\"* you|strong=\"G4771\"*. The|strong=\"G1722\"* sound|strong=\"G5456\"* of|strong=\"G2532\"* a|strong=\"G2532\"* mill|strong=\"G3458\"* will|strong=\"G2532\"* be|strong=\"G2532\"* heard no|strong=\"G3756\"* more|strong=\"G2089\"* at|strong=\"G1722\"* all|strong=\"G3956\"* in|strong=\"G1722\"* you|strong=\"G4771\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"G1722\"* light|strong=\"G5457\"* of|strong=\"G2532\"* a|strong=\"G2532\"* lamp|strong=\"G3088\"* will|strong=\"G1510\"* shine|strong=\"G5316\"* no|strong=\"G3756\"* more|strong=\"G2089\"* at|strong=\"G1722\"* all|strong=\"G3956\"* in|strong=\"G1722\"* you|strong=\"G4771\"*. The|strong=\"G1722\"* voice|strong=\"G5456\"* of|strong=\"G2532\"* the|strong=\"G1722\"* bridegroom|strong=\"G3566\"* and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G1722\"* bride|strong=\"G3565\"* will|strong=\"G1510\"* be|strong=\"G1510\"* heard|strong=\"G1484\"* no|strong=\"G3756\"* more|strong=\"G2089\"* at|strong=\"G1722\"* all|strong=\"G3956\"* in|strong=\"G1722\"* you|strong=\"G4771\"*, for|strong=\"G3754\"* your|strong=\"G2532\"* merchants|strong=\"G1713\"* were|strong=\"G1510\"* the|strong=\"G1722\"* princes of|strong=\"G2532\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*; for|strong=\"G3754\"* with|strong=\"G1722\"* your|strong=\"G2532\"* sorcery|strong=\"G5331\"* all|strong=\"G3956\"* the|strong=\"G1722\"* nations|strong=\"G1484\"* were|strong=\"G1510\"* deceived|strong=\"G4105\"*." + }, + { + "verseNum": 24, + "text": "In|strong=\"G1722\"* her|strong=\"G3956\"* was|strong=\"G3588\"* found|strong=\"G2147\"* the|strong=\"G1722\"* blood of|strong=\"G2532\"* prophets|strong=\"G4396\"* and|strong=\"G2532\"* of|strong=\"G2532\"* saints, and|strong=\"G2532\"* of|strong=\"G2532\"* all|strong=\"G3956\"* who|strong=\"G3588\"* have|strong=\"G2532\"* been|strong=\"G2532\"* slain|strong=\"G4969\"* on|strong=\"G1909\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*.”" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"* I|strong=\"G1473\"* heard something|strong=\"G4183\"* like|strong=\"G5613\"* a|strong=\"G5613\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* of|strong=\"G2316\"* a|strong=\"G5613\"* great|strong=\"G3173\"* multitude|strong=\"G3793\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*, saying|strong=\"G3004\"*, “Hallelujah! Salvation|strong=\"G4991\"*, power|strong=\"G1411\"*, and|strong=\"G2532\"* glory|strong=\"G1391\"* belong to|strong=\"G2532\"* our|strong=\"G2316\"* God|strong=\"G2316\"*;" + }, + { + "verseNum": 2, + "text": "for|strong=\"G3754\"* his|strong=\"G1722\"* judgments|strong=\"G2920\"* are|strong=\"G3588\"* true|strong=\"G3588\"* and|strong=\"G2532\"* righteous|strong=\"G1342\"*. For|strong=\"G3754\"* he|strong=\"G2532\"* has|strong=\"G3748\"* judged|strong=\"G2919\"* the|strong=\"G1722\"* great|strong=\"G3173\"* prostitute|strong=\"G4204\"* who|strong=\"G3588\"* corrupted|strong=\"G5351\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* with|strong=\"G1722\"* her|strong=\"G3754\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* has|strong=\"G3748\"* avenged|strong=\"G1556\"* the|strong=\"G1722\"* blood of|strong=\"G1537\"* his|strong=\"G1722\"* servants|strong=\"G1401\"* at|strong=\"G1722\"* her|strong=\"G3754\"* hand|strong=\"G5495\"*.”" + }, + { + "verseNum": 3, + "text": "A|strong=\"G2532\"* second|strong=\"G1208\"* said|strong=\"G3004\"*, “Hallelujah! Her|strong=\"G1519\"* smoke|strong=\"G2586\"* goes up|strong=\"G1519\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*.”" + }, + { + "verseNum": 4, + "text": "The|strong=\"G2532\"* twenty-four|strong=\"G1501\"* elders|strong=\"G4245\"* and|strong=\"G2532\"* the|strong=\"G2532\"* four|strong=\"G5064\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* and|strong=\"G2532\"* worshiped|strong=\"G4352\"* God|strong=\"G2316\"* who|strong=\"G3588\"* sits|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, saying|strong=\"G3004\"*, “Amen! Hallelujah!”" + }, + { + "verseNum": 5, + "text": "A|strong=\"G2532\"* voice|strong=\"G5456\"* came|strong=\"G1831\"* from|strong=\"G1537\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, saying|strong=\"G3004\"*, “Give|strong=\"G3004\"* praise to|strong=\"G2532\"* our|strong=\"G2316\"* God|strong=\"G2316\"*, all|strong=\"G3956\"* you|strong=\"G3004\"* his|strong=\"G3956\"* servants|strong=\"G1401\"*, you|strong=\"G3004\"* who|strong=\"G3588\"* fear|strong=\"G5399\"* him|strong=\"G3588\"*, the|strong=\"G2532\"* small|strong=\"G3398\"* and|strong=\"G2532\"* the|strong=\"G2532\"* great|strong=\"G3173\"*!”" + }, + { + "verseNum": 6, + "text": "I|strong=\"G2532\"* heard something|strong=\"G4183\"* like|strong=\"G5613\"* the|strong=\"G2532\"* voice|strong=\"G5456\"* of|strong=\"G2316\"* a|strong=\"G5613\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"*, and|strong=\"G2532\"* like|strong=\"G5613\"* the|strong=\"G2532\"* voice|strong=\"G5456\"* of|strong=\"G2316\"* many|strong=\"G4183\"* waters|strong=\"G5204\"*, and|strong=\"G2532\"* like|strong=\"G5613\"* the|strong=\"G2532\"* voice|strong=\"G5456\"* of|strong=\"G2316\"* mighty|strong=\"G2478\"* thunders|strong=\"G1027\"*, saying|strong=\"G3004\"*, “Hallelujah! For|strong=\"G3754\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* our|strong=\"G2316\"* God|strong=\"G2316\"*, the|strong=\"G2532\"* Almighty|strong=\"G3841\"*, reigns!" + }, + { + "verseNum": 7, + "text": "Let|strong=\"G2532\"*’s rejoice|strong=\"G5463\"* and|strong=\"G2532\"* be|strong=\"G2532\"* exceedingly glad|strong=\"G5463\"*, and|strong=\"G2532\"* let|strong=\"G2532\"*’s give|strong=\"G1325\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* to|strong=\"G2532\"* him|strong=\"G3588\"*. For|strong=\"G3754\"* the|strong=\"G2532\"* wedding|strong=\"G1062\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lamb has|strong=\"G3748\"* come|strong=\"G2064\"*, and|strong=\"G2532\"* his|strong=\"G1438\"* wife|strong=\"G1135\"* has|strong=\"G3748\"* made|strong=\"G2090\"* herself|strong=\"G1438\"* ready|strong=\"G2090\"*.”" + }, + { + "verseNum": 8, + "text": "It|strong=\"G2532\"* was|strong=\"G1510\"* given|strong=\"G1325\"* to|strong=\"G2443\"* her|strong=\"G1325\"* that|strong=\"G2443\"* she|strong=\"G2532\"* would|strong=\"G2532\"* array herself in|strong=\"G2532\"* bright|strong=\"G2986\"*, pure|strong=\"G2513\"*, fine|strong=\"G1039\"* linen|strong=\"G1039\"*, for|strong=\"G1063\"* the|strong=\"G2532\"* fine|strong=\"G1039\"* linen|strong=\"G1039\"* is|strong=\"G1510\"* the|strong=\"G2532\"* righteous|strong=\"G1345\"* acts|strong=\"G1345\"* of|strong=\"G2532\"* the|strong=\"G2532\"* saints." + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* me|strong=\"G1473\"*, “Write|strong=\"G1125\"*, ‘Blessed|strong=\"G3107\"* are|strong=\"G1510\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* invited|strong=\"G2564\"* to|strong=\"G1519\"* the|strong=\"G2532\"* wedding|strong=\"G1062\"* supper|strong=\"G1173\"* of|strong=\"G3056\"* the|strong=\"G2532\"* Lamb|strong=\"G3004\"*.’” He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* me|strong=\"G1473\"*, “These|strong=\"G3778\"* are|strong=\"G1510\"* true|strong=\"G3588\"* words|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 10, + "text": "I|strong=\"G1473\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* before|strong=\"G1715\"* his|strong=\"G3708\"* feet|strong=\"G4228\"* to|strong=\"G2532\"* worship|strong=\"G4352\"* him|strong=\"G3588\"*. He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, “Look|strong=\"G3708\"*! Don’t|strong=\"G3588\"* do|strong=\"G2532\"* it|strong=\"G2532\"*! I|strong=\"G1473\"* am|strong=\"G1510\"* a|strong=\"G2192\"* fellow|strong=\"G4889\"* bondservant with|strong=\"G2532\"* you|strong=\"G4771\"* and|strong=\"G2532\"* with|strong=\"G2532\"* your|strong=\"G2192\"* brothers who|strong=\"G3588\"* hold|strong=\"G2192\"* the|strong=\"G2532\"* testimony|strong=\"G3141\"* of|strong=\"G4151\"* Jesus|strong=\"G2424\"*. Worship|strong=\"G4352\"* God|strong=\"G2316\"*, for|strong=\"G1063\"* the|strong=\"G2532\"* testimony|strong=\"G3141\"* of|strong=\"G4151\"* Jesus|strong=\"G2424\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* Prophecy|strong=\"G4394\"*.”" + }, + { + "verseNum": 11, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G1722\"* heaven|strong=\"G3772\"* opened, and|strong=\"G2532\"* behold|strong=\"G2400\"*, a|strong=\"G2532\"* white|strong=\"G3022\"* horse|strong=\"G2462\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* it|strong=\"G2532\"* is|strong=\"G3588\"* called|strong=\"G2564\"* Faithful|strong=\"G4103\"* and|strong=\"G2532\"* True|strong=\"G4103\"*. In|strong=\"G1722\"* righteousness|strong=\"G1343\"* he|strong=\"G2532\"* judges|strong=\"G2919\"* and|strong=\"G2532\"* makes war|strong=\"G4170\"*." + }, + { + "verseNum": 12, + "text": "His|strong=\"G1909\"* eyes|strong=\"G3788\"* are|strong=\"G3588\"* a|strong=\"G2192\"* flame|strong=\"G5395\"* of|strong=\"G2532\"* fire|strong=\"G4442\"*, and|strong=\"G2532\"* on|strong=\"G1909\"* his|strong=\"G1909\"* head|strong=\"G2776\"* are|strong=\"G3588\"* many|strong=\"G4183\"* crowns|strong=\"G1238\"*. He|strong=\"G2532\"* has|strong=\"G2192\"* names|strong=\"G3686\"* written|strong=\"G1125\"* and|strong=\"G2532\"* a|strong=\"G2192\"* name|strong=\"G3686\"* written|strong=\"G1125\"* which|strong=\"G3739\"* no|strong=\"G3762\"* one|strong=\"G3762\"* knows|strong=\"G1492\"* but|strong=\"G1161\"* he|strong=\"G2532\"* himself." + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* is|strong=\"G3588\"* clothed|strong=\"G4016\"* in|strong=\"G2532\"* a|strong=\"G2532\"* garment|strong=\"G2440\"* sprinkled|strong=\"G4472\"* with|strong=\"G2532\"* blood. His|strong=\"G2532\"* name|strong=\"G3686\"* is|strong=\"G3588\"* called|strong=\"G2564\"* “The|strong=\"G2532\"* Word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 14, + "text": "The|strong=\"G1722\"* armies|strong=\"G4753\"* which|strong=\"G3588\"* are|strong=\"G3588\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*, clothed|strong=\"G1746\"* in|strong=\"G1722\"* white|strong=\"G3022\"*, pure|strong=\"G2513\"*, fine|strong=\"G1039\"* linen|strong=\"G1039\"*, followed him|strong=\"G3588\"* on|strong=\"G1909\"* white|strong=\"G3022\"* horses|strong=\"G2462\"*." + }, + { + "verseNum": 15, + "text": "Out|strong=\"G1537\"* of|strong=\"G1537\"* his|strong=\"G1438\"* mouth|strong=\"G4750\"* proceeds|strong=\"G1607\"* a|strong=\"G2532\"* sharp|strong=\"G3691\"*, double-edged sword|strong=\"G4501\"* that|strong=\"G2443\"* with|strong=\"G1722\"* it|strong=\"G2532\"* he|strong=\"G2532\"* should|strong=\"G2316\"* strike|strong=\"G3960\"* the|strong=\"G1722\"* nations|strong=\"G1484\"*. He|strong=\"G2532\"* will|strong=\"G2316\"* rule|strong=\"G4165\"* them|strong=\"G3588\"* with|strong=\"G1722\"* an|strong=\"G2532\"* iron|strong=\"G4603\"* rod|strong=\"G4464\"*.+ 19:15 Psalms 2:9 * He|strong=\"G2532\"* treads|strong=\"G3961\"* the|strong=\"G1722\"* wine|strong=\"G3631\"* press|strong=\"G3025\"* of|strong=\"G1537\"* the|strong=\"G1722\"* fierceness|strong=\"G2372\"* of|strong=\"G1537\"* the|strong=\"G1722\"* wrath|strong=\"G3709\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, the|strong=\"G1722\"* Almighty|strong=\"G3841\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* has|strong=\"G2192\"* on|strong=\"G1909\"* his|strong=\"G1909\"* garment|strong=\"G2440\"* and|strong=\"G2532\"* on|strong=\"G1909\"* his|strong=\"G1909\"* thigh|strong=\"G3382\"* a|strong=\"G2192\"* name|strong=\"G3686\"* written|strong=\"G1125\"*, “KING|strong=\"G3588\"* OF|strong=\"G2532\"* KINGS|strong=\"G3588\"* AND|strong=\"G2532\"* LORD|strong=\"G2962\"* OF|strong=\"G2532\"* LORDS|strong=\"G2962\"*.”" + }, + { + "verseNum": 17, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* an|strong=\"G2532\"* angel standing|strong=\"G2476\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sun|strong=\"G2246\"*. He|strong=\"G2532\"* cried|strong=\"G2896\"* with|strong=\"G1722\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, saying|strong=\"G3004\"* to|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G1722\"* birds|strong=\"G3732\"* that|strong=\"G3588\"* fly|strong=\"G4072\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sky, “Come|strong=\"G1205\"*! Be|strong=\"G2532\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* to|strong=\"G1519\"* the|strong=\"G1722\"* great|strong=\"G3173\"* supper|strong=\"G1173\"* of|strong=\"G2316\"* God|strong=\"G2316\"*,+ 19:17 TR reads “supper of the great God” instead of “great supper of God”*" + }, + { + "verseNum": 18, + "text": "that|strong=\"G2443\"* you|strong=\"G3956\"* may|strong=\"G2532\"* eat|strong=\"G2068\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"* of|strong=\"G2532\"* kings|strong=\"G3588\"*, the|strong=\"G2532\"* flesh|strong=\"G4561\"* of|strong=\"G2532\"* captains|strong=\"G5506\"*, the|strong=\"G2532\"* flesh|strong=\"G4561\"* of|strong=\"G2532\"* mighty|strong=\"G2478\"* men|strong=\"G3956\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"* of|strong=\"G2532\"* horses|strong=\"G2462\"* and|strong=\"G2532\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sit|strong=\"G2521\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"* of|strong=\"G2532\"* all|strong=\"G3956\"* men|strong=\"G3956\"*, both|strong=\"G2532\"* free|strong=\"G1658\"* and|strong=\"G2532\"* slave|strong=\"G1401\"*, small|strong=\"G3398\"* and|strong=\"G2532\"* great|strong=\"G3173\"*.”" + }, + { + "verseNum": 19, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*, the|strong=\"G2532\"* kings|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, and|strong=\"G2532\"* their|strong=\"G2532\"* armies|strong=\"G4753\"*, gathered|strong=\"G4863\"* together|strong=\"G4863\"* to|strong=\"G2532\"* make|strong=\"G4160\"* war|strong=\"G4171\"* against|strong=\"G1909\"* him|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* horse|strong=\"G2462\"* and|strong=\"G2532\"* against|strong=\"G1909\"* his|strong=\"G1909\"* army|strong=\"G4753\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"G1722\"* beast|strong=\"G2342\"* was|strong=\"G3588\"* taken|strong=\"G2983\"*, and|strong=\"G2532\"* with|strong=\"G3326\"* him|strong=\"G3588\"* the|strong=\"G1722\"* false|strong=\"G5578\"* prophet|strong=\"G5578\"* who|strong=\"G3739\"* worked|strong=\"G4160\"* the|strong=\"G1722\"* signs|strong=\"G4592\"* in|strong=\"G1722\"* his|strong=\"G1519\"* sight|strong=\"G1799\"*, with|strong=\"G3326\"* which|strong=\"G3739\"* he|strong=\"G2532\"* deceived|strong=\"G4105\"* those|strong=\"G3588\"* who|strong=\"G3739\"* had|strong=\"G2532\"* received|strong=\"G2983\"* the|strong=\"G1722\"* mark|strong=\"G5480\"* of|strong=\"G2532\"* the|strong=\"G1722\"* beast|strong=\"G2342\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3739\"* worshiped|strong=\"G4352\"* his|strong=\"G1519\"* image|strong=\"G1504\"*. These|strong=\"G3739\"* two|strong=\"G1417\"* were|strong=\"G3588\"* thrown alive|strong=\"G2198\"* into|strong=\"G1519\"* the|strong=\"G1722\"* lake|strong=\"G3041\"* of|strong=\"G2532\"* fire|strong=\"G4442\"* that|strong=\"G3739\"* burns|strong=\"G2545\"* with|strong=\"G3326\"* sulfur|strong=\"G2303\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"G1722\"* rest|strong=\"G3062\"* were|strong=\"G3588\"* killed with|strong=\"G1722\"* the|strong=\"G1722\"* sword|strong=\"G4501\"* of|strong=\"G1537\"* him|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G1722\"* horse|strong=\"G2462\"*, the|strong=\"G1722\"* sword|strong=\"G4501\"* which|strong=\"G3588\"* came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* his|strong=\"G3956\"* mouth|strong=\"G4750\"*. So|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G1722\"* birds|strong=\"G3732\"* were|strong=\"G3588\"* filled|strong=\"G5526\"* with|strong=\"G1722\"* their|strong=\"G2532\"* flesh|strong=\"G4561\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* an|strong=\"G2192\"* angel|strong=\"G2597\"* coming|strong=\"G2597\"* down|strong=\"G2597\"* out|strong=\"G1537\"* of|strong=\"G1537\"* heaven|strong=\"G3772\"*, having|strong=\"G2192\"* the|strong=\"G2532\"* key|strong=\"G2807\"* of|strong=\"G1537\"* the|strong=\"G2532\"* abyss and|strong=\"G2532\"* a|strong=\"G2192\"* great|strong=\"G3173\"* chain in|strong=\"G1909\"* his|strong=\"G1909\"* hand|strong=\"G5495\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* seized|strong=\"G2902\"* the|strong=\"G2532\"* dragon|strong=\"G1404\"*, the|strong=\"G2532\"* old|strong=\"G2094\"* serpent|strong=\"G3789\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G2532\"* devil|strong=\"G1228\"* and|strong=\"G2532\"* Satan|strong=\"G4567\"*, who|strong=\"G3739\"* deceives the|strong=\"G2532\"* whole inhabited earth|strong=\"G2532\"*,+ 20:2 TR and NU omit “who deceives the whole inhabited earth”.* and|strong=\"G2532\"* bound|strong=\"G1210\"* him|strong=\"G3588\"* for|strong=\"G2532\"* a|strong=\"G2532\"* thousand|strong=\"G5507\"* years|strong=\"G2094\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"G2532\"* cast|strong=\"G2532\"* him|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G2532\"* abyss, and|strong=\"G2532\"* shut|strong=\"G2808\"* it|strong=\"G2532\"* and|strong=\"G2532\"* sealed|strong=\"G4972\"* it|strong=\"G2532\"* over|strong=\"G1883\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* should|strong=\"G1163\"* deceive|strong=\"G4105\"* the|strong=\"G2532\"* nations|strong=\"G1484\"* no|strong=\"G3361\"* more|strong=\"G2089\"* until|strong=\"G1519\"* the|strong=\"G2532\"* thousand|strong=\"G5507\"* years|strong=\"G2094\"* were|strong=\"G3588\"* finished|strong=\"G5055\"*. After|strong=\"G3326\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* must|strong=\"G1163\"* be|strong=\"G2532\"* freed for|strong=\"G1519\"* a|strong=\"G2532\"* short|strong=\"G3588\"* time|strong=\"G5550\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* thrones|strong=\"G2362\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* sat|strong=\"G2523\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* judgment|strong=\"G2917\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2532\"* them|strong=\"G3588\"*. I|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* souls|strong=\"G5590\"* of|strong=\"G3056\"* those|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2424\"* been|strong=\"G2532\"* beheaded|strong=\"G3990\"* for|strong=\"G1223\"* the|strong=\"G2532\"* testimony|strong=\"G3141\"* of|strong=\"G3056\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* for|strong=\"G1223\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* such|strong=\"G3588\"* as|strong=\"G2532\"* didn’t|strong=\"G3588\"* worship|strong=\"G4352\"* the|strong=\"G2532\"* beast|strong=\"G2342\"* nor|strong=\"G3761\"* his|strong=\"G1438\"* image|strong=\"G1504\"*, and|strong=\"G2532\"* didn’t|strong=\"G3588\"* receive|strong=\"G2983\"* the|strong=\"G2532\"* mark|strong=\"G5480\"* on|strong=\"G1909\"* their|strong=\"G1438\"* forehead|strong=\"G3359\"* and|strong=\"G2532\"* on|strong=\"G1909\"* their|strong=\"G1438\"* hand|strong=\"G5495\"*. They|strong=\"G2532\"* lived|strong=\"G2198\"* and|strong=\"G2532\"* reigned with|strong=\"G3326\"* Christ|strong=\"G5547\"* for|strong=\"G1223\"* a|strong=\"G2532\"* thousand|strong=\"G5507\"* years|strong=\"G2094\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"G3588\"* rest|strong=\"G3062\"* of|strong=\"G3588\"* the|strong=\"G3588\"* dead|strong=\"G3498\"* didn’t|strong=\"G3588\"* live|strong=\"G2198\"* until the|strong=\"G3588\"* thousand|strong=\"G5507\"* years|strong=\"G2094\"* were|strong=\"G3588\"* finished|strong=\"G5055\"*. This|strong=\"G3778\"* is|strong=\"G3588\"* the|strong=\"G3588\"* first|strong=\"G4413\"* resurrection." + }, + { + "verseNum": 6, + "text": "Blessed|strong=\"G3107\"* and|strong=\"G2532\"* holy is|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3588\"* has|strong=\"G2192\"* part|strong=\"G3313\"* in|strong=\"G1722\"* the|strong=\"G1722\"* first|strong=\"G4413\"* resurrection. Over|strong=\"G1909\"* these|strong=\"G3778\"*, the|strong=\"G1722\"* second|strong=\"G1208\"* death|strong=\"G2288\"* has|strong=\"G2192\"* no|strong=\"G3756\"* power|strong=\"G1849\"*, but|strong=\"G2532\"* they|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G1510\"* priests|strong=\"G2409\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* of|strong=\"G2316\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* will|strong=\"G2316\"* reign|strong=\"G2532\"* with|strong=\"G3326\"* him|strong=\"G3588\"* one|strong=\"G3588\"* thousand|strong=\"G5507\"* years|strong=\"G2094\"*." + }, + { + "verseNum": 7, + "text": "And|strong=\"G2532\"* after|strong=\"G2532\"* the|strong=\"G2532\"* thousand|strong=\"G5507\"* years|strong=\"G2094\"*, Satan|strong=\"G4567\"* will|strong=\"G2532\"* be|strong=\"G2532\"* released|strong=\"G3089\"* from|strong=\"G1537\"* his|strong=\"G2532\"* prison|strong=\"G5438\"*" + }, + { + "verseNum": 8, + "text": "and|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G2532\"* come|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G1519\"* deceive|strong=\"G4105\"* the|strong=\"G1722\"* nations|strong=\"G1484\"* which|strong=\"G3739\"* are|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* four|strong=\"G5064\"* corners|strong=\"G1137\"* of|strong=\"G2532\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, Gog|strong=\"G1136\"* and|strong=\"G2532\"* Magog|strong=\"G3098\"*, to|strong=\"G1519\"* gather|strong=\"G4863\"* them|strong=\"G3588\"* together|strong=\"G4863\"* to|strong=\"G1519\"* the|strong=\"G1722\"* war|strong=\"G4171\"*, whose|strong=\"G3739\"* number|strong=\"G1484\"* is|strong=\"G3588\"* as|strong=\"G5613\"* the|strong=\"G1722\"* sand of|strong=\"G2532\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"G2532\"* went|strong=\"G2597\"* up|strong=\"G2719\"* over|strong=\"G1909\"* the|strong=\"G2532\"* width|strong=\"G4114\"* of|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* and|strong=\"G2532\"* surrounded|strong=\"G2944\"* the|strong=\"G2532\"* camp|strong=\"G3925\"* of|strong=\"G1537\"* the|strong=\"G2532\"* saints and|strong=\"G2532\"* the|strong=\"G2532\"* beloved city|strong=\"G4172\"*. Fire|strong=\"G4442\"* came|strong=\"G2597\"* down|strong=\"G2597\"* out|strong=\"G1537\"* of|strong=\"G1537\"* heaven|strong=\"G3772\"* from|strong=\"G1537\"* God|strong=\"G2532\"* and|strong=\"G2532\"* devoured|strong=\"G2719\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"G2532\"* devil|strong=\"G1228\"* who|strong=\"G3588\"* deceived|strong=\"G4105\"* them|strong=\"G3588\"* was|strong=\"G3588\"* thrown into|strong=\"G1519\"* the|strong=\"G2532\"* lake|strong=\"G3041\"* of|strong=\"G2250\"* fire|strong=\"G4442\"* and|strong=\"G2532\"* sulfur|strong=\"G2303\"*, where|strong=\"G3699\"* the|strong=\"G2532\"* beast|strong=\"G2342\"* and|strong=\"G2532\"* the|strong=\"G2532\"* false|strong=\"G5578\"* prophet|strong=\"G5578\"* are|strong=\"G3588\"* also|strong=\"G2532\"*. They|strong=\"G2532\"* will|strong=\"G2532\"* be|strong=\"G2532\"* tormented day|strong=\"G2250\"* and|strong=\"G2532\"* night|strong=\"G3571\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"G3739\"* saw|strong=\"G3708\"* a|strong=\"G2532\"* great|strong=\"G3173\"* white|strong=\"G3022\"* throne|strong=\"G2362\"* and|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3739\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* it|strong=\"G2532\"*, from|strong=\"G2532\"* whose|strong=\"G3739\"* face|strong=\"G4383\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* and|strong=\"G2532\"* the|strong=\"G2532\"* heaven|strong=\"G3772\"* fled|strong=\"G5343\"* away|strong=\"G5343\"*. There|strong=\"G2532\"* was|strong=\"G3588\"* found|strong=\"G2147\"* no|strong=\"G3756\"* place|strong=\"G5117\"* for|strong=\"G1909\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"G3739\"* saw|strong=\"G3708\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*, the|strong=\"G1722\"* great|strong=\"G3173\"* and|strong=\"G2532\"* the|strong=\"G1722\"* small|strong=\"G3398\"*, standing|strong=\"G2476\"* before|strong=\"G1799\"* the|strong=\"G1722\"* throne|strong=\"G2362\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* opened books. Another|strong=\"G3739\"* book|strong=\"G3588\"* was|strong=\"G1510\"* opened, which|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G1722\"* book|strong=\"G3588\"* of|strong=\"G1537\"* life|strong=\"G2222\"*. The|strong=\"G1722\"* dead|strong=\"G3498\"* were|strong=\"G1510\"* judged|strong=\"G2919\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* things|strong=\"G3588\"* which|strong=\"G3739\"* were|strong=\"G1510\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* books, according|strong=\"G2596\"* to|strong=\"G2532\"* their|strong=\"G2532\"* works|strong=\"G2041\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"G1722\"* sea|strong=\"G2281\"* gave|strong=\"G1325\"* up|strong=\"G1325\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* who|strong=\"G3588\"* were|strong=\"G3588\"* in|strong=\"G1722\"* it|strong=\"G2532\"*. Death|strong=\"G2288\"* and|strong=\"G2532\"* Hades+ 20:13 or, Hell * gave|strong=\"G1325\"* up|strong=\"G1325\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* who|strong=\"G3588\"* were|strong=\"G3588\"* in|strong=\"G1722\"* them|strong=\"G3588\"*. They|strong=\"G2532\"* were|strong=\"G3588\"* judged|strong=\"G2919\"*, each|strong=\"G1538\"* one|strong=\"G1538\"* according|strong=\"G2596\"* to|strong=\"G2532\"* his|strong=\"G1722\"* works|strong=\"G2041\"*." + }, + { + "verseNum": 14, + "text": "Death|strong=\"G2288\"* and|strong=\"G2532\"* Hades+ 20:14 or, Hell* were|strong=\"G1510\"* thrown into|strong=\"G1519\"* the|strong=\"G2532\"* lake|strong=\"G3041\"* of|strong=\"G2532\"* fire|strong=\"G4442\"*. This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* second|strong=\"G1208\"* death|strong=\"G2288\"*, the|strong=\"G2532\"* lake|strong=\"G3041\"* of|strong=\"G2532\"* fire|strong=\"G4442\"*." + }, + { + "verseNum": 15, + "text": "If|strong=\"G1487\"* anyone|strong=\"G5100\"* was|strong=\"G3588\"* not|strong=\"G3756\"* found|strong=\"G2147\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* book|strong=\"G3588\"* of|strong=\"G2532\"* life|strong=\"G2222\"*, he|strong=\"G2532\"* was|strong=\"G3588\"* cast|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G1722\"* lake|strong=\"G3041\"* of|strong=\"G2532\"* fire|strong=\"G4442\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G2532\"* new|strong=\"G2537\"* heaven|strong=\"G3772\"* and|strong=\"G2532\"* a|strong=\"G2532\"* new|strong=\"G2537\"* earth|strong=\"G1093\"*, for|strong=\"G1063\"* the|strong=\"G2532\"* first|strong=\"G4413\"* heaven|strong=\"G3772\"* and|strong=\"G2532\"* the|strong=\"G2532\"* first|strong=\"G4413\"* earth|strong=\"G1093\"* have|strong=\"G2532\"* passed|strong=\"G3588\"* away, and|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* is|strong=\"G1510\"* no|strong=\"G3756\"* more|strong=\"G2089\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* holy city|strong=\"G4172\"*, New|strong=\"G2537\"* Jerusalem|strong=\"G2419\"*, coming|strong=\"G2597\"* down|strong=\"G2597\"* out|strong=\"G1537\"* of|strong=\"G1537\"* heaven|strong=\"G3772\"* from|strong=\"G1537\"* God|strong=\"G2316\"*, prepared|strong=\"G2090\"* like|strong=\"G5613\"* a|strong=\"G5613\"* bride|strong=\"G3565\"* adorned|strong=\"G2885\"* for|strong=\"G2532\"* her|strong=\"G3708\"* husband." + }, + { + "verseNum": 3, + "text": "I|strong=\"G2532\"* heard a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* out|strong=\"G1537\"* of|strong=\"G1537\"* heaven saying|strong=\"G3004\"*, “Behold|strong=\"G2400\"*, God|strong=\"G2316\"*’s dwelling is|strong=\"G1510\"* with|strong=\"G3326\"* people|strong=\"G2992\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G2316\"* dwell|strong=\"G4637\"* with|strong=\"G3326\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G1510\"* his|strong=\"G3708\"* people|strong=\"G2992\"*, and|strong=\"G2532\"* God|strong=\"G2316\"* himself will|strong=\"G2316\"* be|strong=\"G1510\"* with|strong=\"G3326\"* them|strong=\"G3588\"* as|strong=\"G2532\"* their|strong=\"G2532\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"G2532\"* will|strong=\"G1510\"* wipe|strong=\"G1813\"* away|strong=\"G1813\"* every|strong=\"G3956\"* tear|strong=\"G1144\"* from|strong=\"G1537\"* their|strong=\"G2532\"* eyes|strong=\"G3788\"*. Death|strong=\"G2288\"* will|strong=\"G1510\"* be|strong=\"G1510\"* no|strong=\"G3756\"* more|strong=\"G2089\"*; neither|strong=\"G3777\"* will|strong=\"G1510\"* there|strong=\"G2532\"* be|strong=\"G1510\"* mourning|strong=\"G3997\"*, nor|strong=\"G3777\"* crying|strong=\"G2906\"*, nor|strong=\"G3777\"* pain|strong=\"G4192\"* any|strong=\"G3956\"* more|strong=\"G2089\"*. The|strong=\"G2532\"* first|strong=\"G4413\"* things|strong=\"G3956\"* have|strong=\"G2532\"* passed|strong=\"G3588\"* away|strong=\"G1813\"*.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* sits|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* throne|strong=\"G2362\"* said|strong=\"G3004\"*, “\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w making|strong=\"G4160\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w new|strong=\"G2537\"\\+w*.”* He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Write|strong=\"G1125\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w God|strong=\"G3004\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w true|strong=\"G4103\"\\+w*.” *" + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1325\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w the|strong=\"G2532\"\\+w* Alpha \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Omega|strong=\"G5598\"\\+w*, \\+w the|strong=\"G2532\"\\+w* Beginning \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w End|strong=\"G5056\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w freely|strong=\"G1432\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w thirsty|strong=\"G1372\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w spring|strong=\"G4077\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w water|strong=\"G5204\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w overcomes|strong=\"G3528\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w give|strong=\"G1473\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w son|strong=\"G5207\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w cowardly|strong=\"G1169\"\\+w*, unbelieving, sinners,*+ 21:8 TR and NU omit “sinners”* abominable, \\+w murderers|strong=\"G5406\"\\+w*, sexually \\+w immoral|strong=\"G4205\"\\+w*, \\+w sorcerers|strong=\"G5333\"\\+w*,*+ 21:8 The word for “sorcerers” here also includes users of potions and drugs.* \\+w idolaters|strong=\"G1496\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w liars|strong=\"G5571\"\\+w*, \\+w their|strong=\"G2532\"\\+w* \\+w part|strong=\"G3313\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w lake|strong=\"G3041\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w burns|strong=\"G2545\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w fire|strong=\"G4442\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w sulfur|strong=\"G2303\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w second|strong=\"G1208\"\\+w* \\+w death|strong=\"G2288\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* angels who|strong=\"G3588\"* had|strong=\"G2192\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* bowls|strong=\"G5357\"* which|strong=\"G3588\"* were|strong=\"G3588\"* loaded with|strong=\"G3326\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* last|strong=\"G2078\"* plagues|strong=\"G4127\"* came|strong=\"G2064\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* spoke|strong=\"G2980\"* with|strong=\"G3326\"* me|strong=\"G1473\"*, saying|strong=\"G3004\"*, “Come|strong=\"G2064\"* here|strong=\"G1204\"*. I|strong=\"G1473\"* will|strong=\"G2532\"* show|strong=\"G1166\"* you|strong=\"G4771\"* the|strong=\"G2532\"* bride|strong=\"G3565\"*, the|strong=\"G2532\"* Lamb|strong=\"G3004\"*’s|strong=\"G2192\"* wife|strong=\"G1135\"*.”" + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* carried|strong=\"G2532\"* me|strong=\"G1473\"* away in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* to|strong=\"G2532\"* a|strong=\"G2532\"* great|strong=\"G3173\"* and|strong=\"G2532\"* high|strong=\"G5308\"* mountain|strong=\"G3735\"*, and|strong=\"G2532\"* showed|strong=\"G1166\"* me|strong=\"G1473\"* the|strong=\"G1722\"* holy|strong=\"G4151\"* city|strong=\"G4172\"*, Jerusalem|strong=\"G2419\"*, coming|strong=\"G2597\"* down|strong=\"G2597\"* out|strong=\"G1537\"* of|strong=\"G1537\"* heaven|strong=\"G3772\"* from|strong=\"G1537\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 11, + "text": "having|strong=\"G2192\"* the|strong=\"G3588\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* God|strong=\"G2316\"*. Her|strong=\"G2192\"* light|strong=\"G5458\"* was|strong=\"G3588\"* like|strong=\"G5613\"* a|strong=\"G2192\"* most|strong=\"G2316\"* precious|strong=\"G5093\"* stone|strong=\"G3037\"*, like|strong=\"G5613\"* a|strong=\"G2192\"* jasper|strong=\"G2393\"* stone|strong=\"G3037\"*, clear as|strong=\"G5613\"* crystal|strong=\"G2929\"*;" + }, + { + "verseNum": 12, + "text": "having|strong=\"G2192\"* a|strong=\"G2192\"* great|strong=\"G3173\"* and|strong=\"G2532\"* high|strong=\"G5308\"* wall|strong=\"G5038\"* with|strong=\"G2532\"* twelve|strong=\"G1427\"* gates|strong=\"G4440\"*, and|strong=\"G2532\"* at|strong=\"G1909\"* the|strong=\"G2532\"* gates|strong=\"G4440\"* twelve|strong=\"G1427\"* angels, and|strong=\"G2532\"* names|strong=\"G3686\"* written|strong=\"G3686\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, which|strong=\"G3739\"* are|strong=\"G1510\"* the|strong=\"G2532\"* names|strong=\"G3686\"* of|strong=\"G5207\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"* tribes|strong=\"G5443\"* of|strong=\"G5207\"* the|strong=\"G2532\"* children|strong=\"G5207\"* of|strong=\"G5207\"* Israel|strong=\"G2474\"*." + }, + { + "verseNum": 13, + "text": "On|strong=\"G2532\"* the|strong=\"G2532\"* east were|strong=\"G2532\"* three|strong=\"G5140\"* gates|strong=\"G4440\"*, and|strong=\"G2532\"* on|strong=\"G2532\"* the|strong=\"G2532\"* north|strong=\"G1005\"* three|strong=\"G5140\"* gates|strong=\"G4440\"*, and|strong=\"G2532\"* on|strong=\"G2532\"* the|strong=\"G2532\"* south|strong=\"G3558\"* three|strong=\"G5140\"* gates|strong=\"G4440\"*, and|strong=\"G2532\"* on|strong=\"G2532\"* the|strong=\"G2532\"* west|strong=\"G1424\"* three|strong=\"G5140\"* gates|strong=\"G4440\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"G2532\"* wall|strong=\"G5038\"* of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"* had|strong=\"G2192\"* twelve|strong=\"G1427\"* foundations|strong=\"G2310\"*, and|strong=\"G2532\"* on|strong=\"G1909\"* them|strong=\"G3588\"* twelve|strong=\"G1427\"* names|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"* Apostles of|strong=\"G2532\"* the|strong=\"G2532\"* Lamb." + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* spoke|strong=\"G2980\"* with|strong=\"G3326\"* me|strong=\"G1473\"* had|strong=\"G2192\"* for|strong=\"G2532\"* a|strong=\"G2192\"* measure|strong=\"G3358\"* a|strong=\"G2192\"* golden|strong=\"G5552\"* reed|strong=\"G2563\"* to|strong=\"G2443\"* measure|strong=\"G3358\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, its|strong=\"G3354\"* gates|strong=\"G4440\"*, and|strong=\"G2532\"* its|strong=\"G3354\"* walls|strong=\"G5038\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"G2532\"* city|strong=\"G4172\"* is|strong=\"G1510\"* square|strong=\"G5068\"*. Its|strong=\"G3354\"* length|strong=\"G3372\"* is|strong=\"G1510\"* as|strong=\"G3745\"* great|strong=\"G3745\"* as|strong=\"G3745\"* its|strong=\"G3354\"* width|strong=\"G4114\"*. He|strong=\"G2532\"* measured|strong=\"G3354\"* the|strong=\"G2532\"* city|strong=\"G4172\"* with|strong=\"G2532\"* the|strong=\"G2532\"* reed|strong=\"G2563\"*: twelve|strong=\"G1427\"* thousand|strong=\"G5505\"* twelve|strong=\"G1427\"* stadia.+ 21:16 12,012 stadia = 2,221 kilometers or 1,380 miles. TR reads 12,000 stadia instead of 12,012 stadia.* Its|strong=\"G3354\"* length|strong=\"G3372\"*, width|strong=\"G4114\"*, and|strong=\"G2532\"* height|strong=\"G5311\"* are|strong=\"G1510\"* equal|strong=\"G2470\"*." + }, + { + "verseNum": 17, + "text": "Its|strong=\"G3354\"* wall|strong=\"G5038\"* is|strong=\"G1510\"* one|strong=\"G3739\"* hundred|strong=\"G1540\"* forty-four|strong=\"G5062\"* cubits|strong=\"G4083\"*,+ 21:17 144 cubits is about 65.8 meters or 216 feet* by|strong=\"G2532\"* the|strong=\"G2532\"* measure|strong=\"G3358\"* of|strong=\"G2532\"* a|strong=\"G2532\"* man|strong=\"G3739\"*, that|strong=\"G3739\"* is|strong=\"G1510\"*, of|strong=\"G2532\"* an|strong=\"G2532\"* angel." + }, + { + "verseNum": 18, + "text": "The|strong=\"G2532\"* construction of|strong=\"G2532\"* its wall|strong=\"G5038\"* was|strong=\"G3588\"* jasper|strong=\"G2393\"*. The|strong=\"G2532\"* city|strong=\"G4172\"* was|strong=\"G3588\"* pure|strong=\"G2513\"* gold|strong=\"G5553\"*, like|strong=\"G3664\"* pure|strong=\"G2513\"* glass|strong=\"G5194\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"G3956\"* foundations|strong=\"G2310\"* of|strong=\"G4172\"* the|strong=\"G3956\"* city|strong=\"G4172\"*’s wall|strong=\"G5038\"* were|strong=\"G3588\"* adorned|strong=\"G2885\"* with|strong=\"G2885\"* all|strong=\"G3956\"* kinds|strong=\"G3956\"* of|strong=\"G4172\"* precious|strong=\"G5093\"* stones|strong=\"G3037\"*. The|strong=\"G3956\"* first|strong=\"G4413\"* foundation|strong=\"G2310\"* was|strong=\"G3588\"* jasper|strong=\"G2393\"*, the|strong=\"G3956\"* second|strong=\"G1208\"* sapphire|strong=\"G4552\"*,+ 21:19 or, lapis lazuli* the|strong=\"G3956\"* third|strong=\"G5154\"* chalcedony|strong=\"G5472\"*, the|strong=\"G3956\"* fourth|strong=\"G5067\"* emerald|strong=\"G4665\"*," + }, + { + "verseNum": 20, + "text": "the|strong=\"G3588\"* fifth|strong=\"G3991\"* sardonyx|strong=\"G4557\"*, the|strong=\"G3588\"* sixth|strong=\"G1623\"* sardius|strong=\"G4556\"*, the|strong=\"G3588\"* seventh|strong=\"G1442\"* chrysolite|strong=\"G5555\"*, the|strong=\"G3588\"* eighth|strong=\"G3590\"* beryl, the|strong=\"G3588\"* ninth|strong=\"G1766\"* topaz|strong=\"G5116\"*, the|strong=\"G3588\"* tenth|strong=\"G1182\"* chrysoprase|strong=\"G5556\"*, the|strong=\"G3588\"* eleventh|strong=\"G1734\"* jacinth|strong=\"G5192\"*, and|strong=\"G3588\"* the|strong=\"G3588\"* twelfth|strong=\"G1428\"* amethyst." + }, + { + "verseNum": 21, + "text": "The|strong=\"G2532\"* twelve|strong=\"G1427\"* gates|strong=\"G4440\"* were|strong=\"G1510\"* twelve|strong=\"G1427\"* pearls|strong=\"G3135\"*. Each|strong=\"G1538\"* one|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G2532\"* gates|strong=\"G4440\"* was|strong=\"G1510\"* made of|strong=\"G1537\"* one|strong=\"G1520\"* pearl|strong=\"G3135\"*. The|strong=\"G2532\"* street|strong=\"G4113\"* of|strong=\"G1537\"* the|strong=\"G2532\"* city|strong=\"G4172\"* was|strong=\"G1510\"* pure|strong=\"G2513\"* gold|strong=\"G5553\"*, like|strong=\"G5613\"* transparent|strong=\"G1306\"* glass|strong=\"G5194\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* no|strong=\"G3756\"* temple|strong=\"G3485\"* in|strong=\"G1722\"* it|strong=\"G2532\"*, for|strong=\"G1063\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* God|strong=\"G2316\"* the|strong=\"G1722\"* Almighty|strong=\"G3841\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Lamb are|strong=\"G1510\"* its temple|strong=\"G3485\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"G2532\"* city|strong=\"G4172\"* has|strong=\"G2192\"* no|strong=\"G3756\"* need|strong=\"G5532\"* for|strong=\"G1063\"* the|strong=\"G2532\"* sun|strong=\"G2246\"* or|strong=\"G2532\"* moon|strong=\"G4582\"* to|strong=\"G2443\"* shine|strong=\"G5316\"*, for|strong=\"G1063\"* the|strong=\"G2532\"* very|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* God|strong=\"G2316\"* illuminated|strong=\"G5461\"* it|strong=\"G2532\"* and|strong=\"G2532\"* its lamp|strong=\"G3088\"* is|strong=\"G3588\"* the|strong=\"G2532\"* Lamb." + }, + { + "verseNum": 24, + "text": "The|strong=\"G2532\"* nations|strong=\"G1484\"* will|strong=\"G2532\"* walk|strong=\"G4043\"* in|strong=\"G1519\"* its|strong=\"G1223\"* light|strong=\"G5457\"*. The|strong=\"G2532\"* kings|strong=\"G3588\"* of|strong=\"G1223\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* bring|strong=\"G5342\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* honor|strong=\"G1391\"* of|strong=\"G1223\"* the|strong=\"G2532\"* nations|strong=\"G1484\"* into|strong=\"G1519\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 25, + "text": "Its gates|strong=\"G4440\"* will|strong=\"G1510\"* in|strong=\"G2532\"* no|strong=\"G3756\"* way be|strong=\"G1510\"* shut|strong=\"G2808\"* by|strong=\"G2532\"* day|strong=\"G2250\"* (for|strong=\"G1063\"* there|strong=\"G1563\"* will|strong=\"G1510\"* be|strong=\"G1510\"* no|strong=\"G3756\"* night|strong=\"G3571\"* there|strong=\"G1563\"*)," + }, + { + "verseNum": 26, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* shall|strong=\"G2532\"* bring|strong=\"G5342\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* the|strong=\"G2532\"* honor|strong=\"G5092\"* of|strong=\"G2532\"* the|strong=\"G2532\"* nations|strong=\"G1484\"* into|strong=\"G1519\"* it|strong=\"G2532\"* so|strong=\"G2532\"* that|strong=\"G3588\"* they|strong=\"G2532\"* may|strong=\"G2532\"* enter|strong=\"G1519\"*." + }, + { + "verseNum": 27, + "text": "There|strong=\"G2532\"* will|strong=\"G2532\"* in|strong=\"G1722\"* no|strong=\"G3756\"* way|strong=\"G1722\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* it|strong=\"G2532\"* anything|strong=\"G3956\"* profane, or|strong=\"G2532\"* one|strong=\"G3956\"* who|strong=\"G3588\"* causes|strong=\"G4160\"* an|strong=\"G2532\"* abomination or|strong=\"G2532\"* a|strong=\"G2532\"* lie|strong=\"G5579\"*, but|strong=\"G2532\"* only|strong=\"G1487\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lamb’s book|strong=\"G3588\"* of|strong=\"G2532\"* life|strong=\"G2222\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* showed|strong=\"G1166\"* me|strong=\"G1473\"* a|strong=\"G5613\"*+ 22:1 TR adds “pure”* river|strong=\"G4215\"* of|strong=\"G1537\"* water|strong=\"G5204\"* of|strong=\"G1537\"* life|strong=\"G2222\"*, clear|strong=\"G2986\"* as|strong=\"G5613\"* crystal|strong=\"G2930\"*, proceeding|strong=\"G1607\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* throne|strong=\"G2362\"* of|strong=\"G1537\"* God|strong=\"G2316\"* and|strong=\"G2532\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Lamb," + }, + { + "verseNum": 2, + "text": "in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2532\"* its|strong=\"G3586\"* street|strong=\"G4113\"*. On|strong=\"G1722\"* this|strong=\"G3588\"* side|strong=\"G1782\"* of|strong=\"G2532\"* the|strong=\"G1722\"* river|strong=\"G4215\"* and|strong=\"G2532\"* on|strong=\"G1722\"* that|strong=\"G3588\"* was|strong=\"G3588\"* the|strong=\"G1722\"* tree|strong=\"G3586\"* of|strong=\"G2532\"* life|strong=\"G2222\"*, bearing|strong=\"G4160\"* twelve|strong=\"G1427\"* kinds|strong=\"G2590\"* of|strong=\"G2532\"* fruits|strong=\"G2590\"*, yielding|strong=\"G4160\"* its|strong=\"G3586\"* fruit|strong=\"G2590\"* every|strong=\"G2596\"* month|strong=\"G3376\"*. The|strong=\"G1722\"* leaves|strong=\"G5444\"* of|strong=\"G2532\"* the|strong=\"G1722\"* tree|strong=\"G3586\"* were|strong=\"G3588\"* for|strong=\"G1519\"* the|strong=\"G1722\"* healing|strong=\"G2322\"* of|strong=\"G2532\"* the|strong=\"G1722\"* nations|strong=\"G1484\"*." + }, + { + "verseNum": 3, + "text": "There|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G1510\"* no|strong=\"G3756\"* curse|strong=\"G2652\"* any|strong=\"G3956\"* more|strong=\"G2089\"*. The|strong=\"G1722\"* throne|strong=\"G2362\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* of|strong=\"G2316\"* the|strong=\"G1722\"* Lamb will|strong=\"G2316\"* be|strong=\"G1510\"* in|strong=\"G1722\"* it|strong=\"G2532\"*, and|strong=\"G2532\"* his|strong=\"G3956\"* servants|strong=\"G1401\"* will|strong=\"G2316\"* serve|strong=\"G3000\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"G2532\"* will|strong=\"G2532\"* see|strong=\"G3708\"* his|strong=\"G1909\"* face|strong=\"G4383\"*, and|strong=\"G2532\"* his|strong=\"G1909\"* name|strong=\"G3686\"* will|strong=\"G2532\"* be|strong=\"G2532\"* on|strong=\"G1909\"* their|strong=\"G2532\"* foreheads|strong=\"G3359\"*." + }, + { + "verseNum": 5, + "text": "There|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G1510\"* no|strong=\"G3756\"* night|strong=\"G3571\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* need|strong=\"G5532\"* no|strong=\"G3756\"* lamp|strong=\"G3088\"* light|strong=\"G5457\"* or|strong=\"G2532\"* sun|strong=\"G2246\"* light|strong=\"G5457\"*; for|strong=\"G3754\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* God|strong=\"G2316\"* will|strong=\"G2316\"* illuminate them|strong=\"G3588\"*. They|strong=\"G2532\"* will|strong=\"G2316\"* reign|strong=\"G2532\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G3756\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, “These|strong=\"G3778\"* words|strong=\"G3056\"* are|strong=\"G3588\"* faithful|strong=\"G4103\"* and|strong=\"G2532\"* true|strong=\"G4103\"*. The|strong=\"G1722\"* Lord|strong=\"G2962\"* God|strong=\"G2316\"* of|strong=\"G3056\"* the|strong=\"G1722\"* spirits|strong=\"G4151\"* of|strong=\"G3056\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"* sent|strong=\"G2316\"* his|strong=\"G1722\"* angel to|strong=\"G2532\"* show|strong=\"G1166\"* to|strong=\"G2532\"* his|strong=\"G1722\"* bondservants the|strong=\"G1722\"* things|strong=\"G3778\"* which|strong=\"G3739\"* must|strong=\"G1163\"* happen|strong=\"G1096\"* soon|strong=\"G5034\"*.”" + }, + { + "verseNum": 7, + "text": "“\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G2532\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w soon|strong=\"G5035\"\\+w*! \\+w Blessed|strong=\"G3107\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w keeps|strong=\"G5083\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophecy|strong=\"G4394\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w book|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 8, + "text": "Now|strong=\"G2532\"* I|strong=\"G1473\"*, John|strong=\"G2491\"*, am|strong=\"G1473\"* the|strong=\"G2532\"* one|strong=\"G3588\"* who|strong=\"G3588\"* heard and|strong=\"G2532\"* saw these|strong=\"G3778\"* things|strong=\"G3778\"*. When|strong=\"G3753\"* I|strong=\"G1473\"* heard and|strong=\"G2532\"* saw, I|strong=\"G1473\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* to|strong=\"G2532\"* worship|strong=\"G4352\"* before|strong=\"G1715\"* the|strong=\"G2532\"* feet|strong=\"G4228\"* of|strong=\"G2532\"* the|strong=\"G2532\"* angel who|strong=\"G3588\"* had|strong=\"G2532\"* shown|strong=\"G1166\"* me|strong=\"G1473\"* these|strong=\"G3778\"* things|strong=\"G3778\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, “You|strong=\"G4771\"* must|strong=\"G1510\"* not|strong=\"G3361\"* do|strong=\"G2532\"* that|strong=\"G3588\"*! I|strong=\"G1473\"* am|strong=\"G1510\"* a|strong=\"G2532\"* fellow|strong=\"G4889\"* bondservant with|strong=\"G2532\"* you|strong=\"G4771\"* and|strong=\"G2532\"* with|strong=\"G2532\"* your|strong=\"G2532\"* brothers, the|strong=\"G2532\"* prophets|strong=\"G4396\"*, and|strong=\"G2532\"* with|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* keep|strong=\"G5083\"* the|strong=\"G2532\"* words|strong=\"G3056\"* of|strong=\"G3056\"* this|strong=\"G3778\"* book|strong=\"G3588\"*. Worship|strong=\"G4352\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, “Don’t|strong=\"G3588\"* seal|strong=\"G4972\"* up|strong=\"G4972\"* the|strong=\"G2532\"* words|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G2532\"* prophecy|strong=\"G4394\"* of|strong=\"G3056\"* this|strong=\"G3778\"* book|strong=\"G3588\"*, for|strong=\"G1063\"* the|strong=\"G2532\"* time|strong=\"G2540\"* is|strong=\"G1510\"* at|strong=\"G3588\"* hand|strong=\"G1451\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* acts|strong=\"G4160\"* unjustly, let|strong=\"G2532\"* him|strong=\"G3588\"* act|strong=\"G4160\"* unjustly still|strong=\"G2089\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G3588\"* filthy|strong=\"G4510\"*, let|strong=\"G2532\"* him|strong=\"G3588\"* be|strong=\"G2532\"* filthy|strong=\"G4510\"* still|strong=\"G2089\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G3588\"* righteous|strong=\"G1342\"*, let|strong=\"G2532\"* him|strong=\"G3588\"* do|strong=\"G4160\"* righteousness|strong=\"G1343\"* still|strong=\"G2089\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G3588\"* holy, let|strong=\"G2532\"* him|strong=\"G3588\"* be|strong=\"G2532\"* holy still|strong=\"G2089\"*.”" + }, + { + "verseNum": 12, + "text": "“\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w soon|strong=\"G5035\"\\+w*! \\+w My|strong=\"G3708\"\\+w* \\+w reward|strong=\"G3408\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w to|strong=\"G2532\"\\+w* repay \\+w to|strong=\"G2532\"\\+w* \\+w each|strong=\"G1538\"\\+w* \\+w man|strong=\"G1538\"\\+w* \\+w according|strong=\"G1538\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w his|strong=\"G3708\"\\+w* \\+w work|strong=\"G2041\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w the|strong=\"G2532\"\\+w* Alpha \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Omega|strong=\"G5598\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w First|strong=\"G4413\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Last|strong=\"G2078\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w Beginning|strong=\"G4413\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w End|strong=\"G5056\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w his|strong=\"G1519\"\\+w* commandments,*+ 22:14 NU reads “wash their robes” instead of “do his commandments”.* \\+w that|strong=\"G2443\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w right|strong=\"G1849\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w tree|strong=\"G3586\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w life|strong=\"G2222\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w by|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w gates|strong=\"G4440\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w city|strong=\"G4172\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w Outside|strong=\"G1854\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dogs|strong=\"G2965\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w sorcerers|strong=\"G5333\"\\+w*, \\+w the|strong=\"G2532\"\\+w* sexually \\+w immoral|strong=\"G4205\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w murderers|strong=\"G5406\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w idolaters|strong=\"G1496\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w loves|strong=\"G5368\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w practices|strong=\"G4160\"\\+w* \\+w falsehood|strong=\"G5579\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w I|strong=\"G1473\"\\+w*, \\+w Jesus|strong=\"G2424\"\\+w*, \\+w have|strong=\"G2532\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w my|strong=\"G1473\"\\+w* angel \\+w to|strong=\"G2532\"\\+w* \\+w testify|strong=\"G3140\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w for|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w root|strong=\"G4491\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w offspring|strong=\"G1085\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w David|strong=\"G1138\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w Bright|strong=\"G2986\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Morning|strong=\"G4407\"\\+w* Star.”*" + }, + { + "verseNum": 17, + "text": "The|strong=\"G2532\"* Spirit|strong=\"G4151\"* and|strong=\"G2532\"* the|strong=\"G2532\"* bride|strong=\"G3565\"* say|strong=\"G3004\"*, “Come|strong=\"G2064\"*!” He|strong=\"G2532\"* who|strong=\"G3588\"* hears, let|strong=\"G2983\"* him|strong=\"G3588\"* say|strong=\"G3004\"*, “Come|strong=\"G2064\"*!” He|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G3588\"* thirsty|strong=\"G1372\"*, let|strong=\"G2983\"* him|strong=\"G3588\"* come|strong=\"G2064\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* desires|strong=\"G2309\"*, let|strong=\"G2983\"* him|strong=\"G3588\"* take|strong=\"G2983\"* the|strong=\"G2532\"* water|strong=\"G5204\"* of|strong=\"G4151\"* life|strong=\"G2222\"* freely|strong=\"G1432\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"G1473\"* testify|strong=\"G3140\"* to|strong=\"G1909\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* hears the|strong=\"G1722\"* words|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* prophecy|strong=\"G4394\"* of|strong=\"G3056\"* this|strong=\"G3778\"* book|strong=\"G3588\"*: if|strong=\"G1437\"* anyone|strong=\"G5100\"* adds|strong=\"G2007\"* to|strong=\"G1909\"* them|strong=\"G3588\"*, God|strong=\"G2316\"* will|strong=\"G2316\"* add|strong=\"G2007\"* to|strong=\"G1909\"* him|strong=\"G3588\"* the|strong=\"G1722\"* plagues|strong=\"G4127\"* which|strong=\"G3588\"* are|strong=\"G3588\"* written|strong=\"G1125\"* in|strong=\"G1722\"* this|strong=\"G3778\"* book|strong=\"G3588\"*." + }, + { + "verseNum": 19, + "text": "If|strong=\"G1437\"* anyone|strong=\"G5100\"* takes away from|strong=\"G1537\"* the|strong=\"G1722\"* words|strong=\"G3056\"* of|strong=\"G1537\"* the|strong=\"G1722\"* book|strong=\"G3588\"* of|strong=\"G1537\"* this|strong=\"G3778\"* prophecy|strong=\"G4394\"*, God|strong=\"G2316\"* will|strong=\"G2316\"* take|strong=\"G2316\"* away his|strong=\"G1722\"* part|strong=\"G3313\"* from|strong=\"G1537\"* the|strong=\"G1722\"* tree|strong=\"G3586\"*+ 22:19 TR reads “Book” instead of “tree”* of|strong=\"G1537\"* life|strong=\"G2222\"*, and|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* holy city|strong=\"G4172\"*, which|strong=\"G3588\"* are|strong=\"G3588\"* written|strong=\"G1125\"* in|strong=\"G1722\"* this|strong=\"G3778\"* book|strong=\"G3588\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"G3778\"* who|strong=\"G3588\"* testifies|strong=\"G3140\"* these|strong=\"G3778\"* things|strong=\"G3778\"* says|strong=\"G3004\"*, “\\+w Yes|strong=\"G3483\"\\+w*, \\+w I|strong=\"G3778\"\\+w* \\+w am|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w soon|strong=\"G5035\"\\+w*.” *" + }, + { + "verseNum": 21, + "text": "The|strong=\"G3956\"* grace|strong=\"G5485\"* of|strong=\"G5485\"* the|strong=\"G3956\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G2962\"* be|strong=\"G3956\"* with|strong=\"G3326\"* all|strong=\"G3956\"* the|strong=\"G3956\"* saints. Amen." + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/data/en_bible/WEB/old_testament.json b/data/en_bible/WEB/old_testament.json new file mode 100644 index 0000000..e456c2f --- /dev/null +++ b/data/en_bible/WEB/old_testament.json @@ -0,0 +1,97425 @@ +{ + "testament": "Old Testament", + "books": [ + { + "name": "Genesis", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8064\"* the|strong=\"H1254\"* beginning|strong=\"H7225\"*, God|strong=\"H8064\"*+ 1:1 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* created|strong=\"H1254\"* the|strong=\"H1254\"* heavens|strong=\"H8064\"* and|strong=\"H8064\"* the|strong=\"H1254\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H6440\"* earth was|strong=\"H1961\"* formless|strong=\"H8414\"* and|strong=\"H6440\"* empty|strong=\"H8414\"*. Darkness|strong=\"H2822\"* was|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* deep|strong=\"H8415\"* and|strong=\"H6440\"* God’s Spirit|strong=\"H7307\"* was|strong=\"H1961\"* hovering|strong=\"H7363\"* over|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 3, + "text": "God said, “Let|strong=\"H1961\"* there|strong=\"H1961\"* be|strong=\"H1961\"* light,” and|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* light." + }, + { + "verseNum": 4, + "text": "God saw|strong=\"H7200\"* the|strong=\"H7200\"* light, and|strong=\"H7200\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H2896\"* good|strong=\"H2896\"*. God divided the|strong=\"H7200\"* light from|strong=\"H7200\"* the|strong=\"H7200\"* darkness|strong=\"H2822\"*." + }, + { + "verseNum": 5, + "text": "God called|strong=\"H7121\"* the|strong=\"H3117\"* light “day|strong=\"H3117\"*”, and|strong=\"H3117\"* the|strong=\"H3117\"* darkness|strong=\"H2822\"* he|strong=\"H3117\"* called|strong=\"H7121\"* “night|strong=\"H3915\"*”. There|strong=\"H1961\"* was|strong=\"H1961\"* evening|strong=\"H6153\"* and|strong=\"H3117\"* there|strong=\"H1961\"* was|strong=\"H1961\"* morning|strong=\"H1242\"*, the|strong=\"H3117\"* first|strong=\"H3117\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 6, + "text": "God said, “Let|strong=\"H1961\"* there|strong=\"H1961\"* be|strong=\"H1961\"* an|strong=\"H1961\"* expanse|strong=\"H7549\"* in|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H4325\"* the|strong=\"H8432\"* waters|strong=\"H4325\"*, and|strong=\"H4325\"* let|strong=\"H1961\"* it|strong=\"H8432\"* divide the|strong=\"H8432\"* waters|strong=\"H4325\"* from|strong=\"H1961\"* the|strong=\"H8432\"* waters|strong=\"H4325\"*.”" + }, + { + "verseNum": 7, + "text": "God made|strong=\"H6213\"* the|strong=\"H5921\"* expanse|strong=\"H7549\"*, and|strong=\"H6213\"* divided the|strong=\"H5921\"* waters|strong=\"H4325\"* which|strong=\"H4325\"* were|strong=\"H1961\"* under|strong=\"H8478\"* the|strong=\"H5921\"* expanse|strong=\"H7549\"* from|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* which|strong=\"H4325\"* were|strong=\"H1961\"* above|strong=\"H5921\"* the|strong=\"H5921\"* expanse|strong=\"H7549\"*; and|strong=\"H6213\"* it|strong=\"H5921\"* was|strong=\"H1961\"* so|strong=\"H3651\"*." + }, + { + "verseNum": 8, + "text": "God|strong=\"H8064\"* called|strong=\"H7121\"* the|strong=\"H3117\"* expanse|strong=\"H7549\"* “sky|strong=\"H8064\"*”. There|strong=\"H1961\"* was|strong=\"H1961\"* evening|strong=\"H6153\"* and|strong=\"H3117\"* there|strong=\"H1961\"* was|strong=\"H1961\"* morning|strong=\"H1242\"*, a|strong=\"H3068\"* second|strong=\"H8145\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 9, + "text": "God|strong=\"H8064\"* said|strong=\"H3651\"*, “Let|strong=\"H3651\"* the|strong=\"H7200\"* waters|strong=\"H4325\"* under|strong=\"H8478\"* the|strong=\"H7200\"* sky|strong=\"H8064\"* be|strong=\"H1961\"* gathered|strong=\"H6960\"* together|strong=\"H6960\"* to|strong=\"H1961\"* one|strong=\"H1961\"* place|strong=\"H4725\"*, and|strong=\"H8064\"* let|strong=\"H3651\"* the|strong=\"H7200\"* dry|strong=\"H3004\"* land|strong=\"H3004\"* appear|strong=\"H7200\"*;” and|strong=\"H8064\"* it|strong=\"H3651\"* was|strong=\"H1961\"* so|strong=\"H3651\"*." + }, + { + "verseNum": 10, + "text": "God called|strong=\"H7121\"* the|strong=\"H7200\"* dry|strong=\"H3004\"* land|strong=\"H3004\"* “earth”, and|strong=\"H7200\"* the|strong=\"H7200\"* gathering|strong=\"H4723\"* together|strong=\"H7121\"* of|strong=\"H4325\"* the|strong=\"H7200\"* waters|strong=\"H4325\"* he|strong=\"H3588\"* called|strong=\"H7121\"* “seas|strong=\"H3220\"*”. God saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H7121\"* was|strong=\"H4325\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 11, + "text": "God said|strong=\"H3651\"*, “Let|strong=\"H3651\"* the|strong=\"H5921\"* earth yield|strong=\"H6213\"* grass|strong=\"H6212\"*, herbs|strong=\"H6212\"* yielding|strong=\"H2232\"* seeds|strong=\"H2233\"*, and|strong=\"H6086\"* fruit|strong=\"H6529\"* trees|strong=\"H6086\"* bearing|strong=\"H6213\"* fruit|strong=\"H6529\"* after|strong=\"H5921\"* their|strong=\"H5921\"* kind|strong=\"H4327\"*, with|strong=\"H6213\"* their|strong=\"H5921\"* seeds|strong=\"H2233\"* in|strong=\"H5921\"* it|strong=\"H5921\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* earth;” and|strong=\"H6086\"* it|strong=\"H5921\"* was|strong=\"H1961\"* so|strong=\"H3651\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H7200\"* earth yielded|strong=\"H2232\"* grass|strong=\"H6212\"*, herbs|strong=\"H6212\"* yielding|strong=\"H2232\"* seed|strong=\"H2233\"* after|strong=\"H2233\"* their|strong=\"H7200\"* kind|strong=\"H4327\"*, and|strong=\"H6086\"* trees|strong=\"H6086\"* bearing|strong=\"H6213\"* fruit|strong=\"H6529\"*, with|strong=\"H6213\"* their|strong=\"H7200\"* seeds|strong=\"H2233\"* in|strong=\"H6213\"* it|strong=\"H3588\"*, after|strong=\"H2233\"* their|strong=\"H7200\"* kind|strong=\"H4327\"*; and|strong=\"H6086\"* God saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H6086\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 13, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* evening|strong=\"H6153\"* and|strong=\"H3117\"* there|strong=\"H1961\"* was|strong=\"H1961\"* morning|strong=\"H1242\"*, a|strong=\"H3068\"* third|strong=\"H7992\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 14, + "text": "God|strong=\"H8064\"* said, “Let|strong=\"H1961\"* there|strong=\"H1961\"* be|strong=\"H1961\"* lights|strong=\"H3974\"* in|strong=\"H8141\"* the|strong=\"H3117\"* expanse|strong=\"H7549\"* of|strong=\"H3117\"* the|strong=\"H3117\"* sky|strong=\"H8064\"* to|strong=\"H1961\"* divide the|strong=\"H3117\"* day|strong=\"H3117\"* from|strong=\"H3117\"* the|strong=\"H3117\"* night|strong=\"H3915\"*; and|strong=\"H3117\"* let|strong=\"H1961\"* them|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H3117\"* signs to|strong=\"H1961\"* mark seasons|strong=\"H4150\"*, days|strong=\"H3117\"*, and|strong=\"H3117\"* years|strong=\"H8141\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"H8064\"* let|strong=\"H3651\"* them|strong=\"H5921\"* be|strong=\"H1961\"* for|strong=\"H5921\"* lights|strong=\"H3974\"* in|strong=\"H5921\"* the|strong=\"H5921\"* expanse|strong=\"H7549\"* of|strong=\"H5921\"* the|strong=\"H5921\"* sky|strong=\"H8064\"* to|strong=\"H1961\"* give|strong=\"H1961\"* light|strong=\"H3974\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth|strong=\"H8064\"*;” and|strong=\"H8064\"* it|strong=\"H5921\"* was|strong=\"H1961\"* so|strong=\"H3651\"*." + }, + { + "verseNum": 16, + "text": "God made|strong=\"H6213\"* the|strong=\"H6213\"* two|strong=\"H8147\"* great|strong=\"H1419\"* lights|strong=\"H3974\"*: the|strong=\"H6213\"* greater|strong=\"H1419\"* light|strong=\"H3974\"* to|strong=\"H6213\"* rule|strong=\"H4475\"* the|strong=\"H6213\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* the|strong=\"H6213\"* lesser|strong=\"H6996\"* light|strong=\"H3974\"* to|strong=\"H6213\"* rule|strong=\"H4475\"* the|strong=\"H6213\"* night|strong=\"H3915\"*. He|strong=\"H3117\"* also|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* stars|strong=\"H3556\"*." + }, + { + "verseNum": 17, + "text": "God|strong=\"H5414\"* set|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H5921\"* expanse|strong=\"H7549\"* of|strong=\"H5921\"* the|strong=\"H5921\"* sky|strong=\"H8064\"* to|strong=\"H5921\"* give|strong=\"H5414\"* light to|strong=\"H5921\"* the|strong=\"H5921\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 18, + "text": "and|strong=\"H3117\"* to|strong=\"H3117\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* the|strong=\"H7200\"* day|strong=\"H3117\"* and|strong=\"H3117\"* over|strong=\"H4910\"* the|strong=\"H7200\"* night|strong=\"H3915\"*, and|strong=\"H3117\"* to|strong=\"H3117\"* divide the|strong=\"H7200\"* light from|strong=\"H3117\"* the|strong=\"H7200\"* darkness|strong=\"H2822\"*. God saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3117\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 19, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* evening|strong=\"H6153\"* and|strong=\"H3117\"* there|strong=\"H1961\"* was|strong=\"H1961\"* morning|strong=\"H1242\"*, a|strong=\"H3068\"* fourth|strong=\"H7243\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 20, + "text": "God|strong=\"H8064\"* said, “Let|strong=\"H5315\"* the|strong=\"H6440\"* waters|strong=\"H4325\"* abound|strong=\"H8317\"* with|strong=\"H5921\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"*, and|strong=\"H8064\"* let|strong=\"H5315\"* birds|strong=\"H5775\"* fly|strong=\"H5774\"* above|strong=\"H5921\"* the|strong=\"H6440\"* earth|strong=\"H8064\"* in|strong=\"H5921\"* the|strong=\"H6440\"* open|strong=\"H6440\"* expanse|strong=\"H7549\"* of|strong=\"H6440\"* the|strong=\"H6440\"* sky|strong=\"H8064\"*.”" + }, + { + "verseNum": 21, + "text": "God created|strong=\"H1254\"* the|strong=\"H3605\"* large|strong=\"H1419\"* sea|strong=\"H8577\"* creatures|strong=\"H2416\"* and|strong=\"H1419\"* every|strong=\"H3605\"* living|strong=\"H2416\"* creature|strong=\"H5315\"* that|strong=\"H3588\"* moves|strong=\"H7430\"*, with|strong=\"H5315\"* which|strong=\"H4325\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* swarmed|strong=\"H8317\"*, after|strong=\"H3588\"* their|strong=\"H3605\"* kind|strong=\"H4327\"*, and|strong=\"H1419\"* every|strong=\"H3605\"* winged|strong=\"H3671\"* bird|strong=\"H5775\"* after|strong=\"H3588\"* its|strong=\"H3605\"* kind|strong=\"H4327\"*. God saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H5315\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 22, + "text": "God blessed|strong=\"H1288\"* them|strong=\"H1288\"*, saying, “Be|strong=\"H1288\"* fruitful|strong=\"H6509\"*, and|strong=\"H6509\"* multiply|strong=\"H7235\"*, and|strong=\"H6509\"* fill|strong=\"H4390\"* the|strong=\"H1288\"* waters|strong=\"H4325\"* in|strong=\"H3220\"* the|strong=\"H1288\"* seas|strong=\"H3220\"*, and|strong=\"H6509\"* let birds|strong=\"H5775\"* multiply|strong=\"H7235\"* on|strong=\"H3220\"* the|strong=\"H1288\"* earth.”" + }, + { + "verseNum": 23, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* evening|strong=\"H6153\"* and|strong=\"H3117\"* there|strong=\"H1961\"* was|strong=\"H1961\"* morning|strong=\"H1242\"*, a|strong=\"H3068\"* fifth|strong=\"H2549\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 24, + "text": "God said|strong=\"H3651\"*, “Let|strong=\"H3651\"* the|strong=\"H3318\"* earth produce|strong=\"H1961\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"* after|strong=\"H1961\"* their|strong=\"H1961\"* kind|strong=\"H4327\"*, livestock, creeping|strong=\"H7431\"* things|strong=\"H7431\"*, and|strong=\"H3318\"* animals|strong=\"H2416\"* of|strong=\"H3318\"* the|strong=\"H3318\"* earth after|strong=\"H1961\"* their|strong=\"H1961\"* kind|strong=\"H4327\"*;” and|strong=\"H3318\"* it|strong=\"H3651\"* was|strong=\"H1961\"* so|strong=\"H3651\"*." + }, + { + "verseNum": 25, + "text": "God made|strong=\"H6213\"* the|strong=\"H3605\"* animals|strong=\"H2416\"* of|strong=\"H3605\"* the|strong=\"H3605\"* earth after|strong=\"H3588\"* their|strong=\"H3605\"* kind|strong=\"H4327\"*, and|strong=\"H7200\"* the|strong=\"H3605\"* livestock after|strong=\"H3588\"* their|strong=\"H3605\"* kind|strong=\"H4327\"*, and|strong=\"H7200\"* everything|strong=\"H3605\"* that|strong=\"H3588\"* creeps|strong=\"H7431\"* on|strong=\"H7200\"* the|strong=\"H3605\"* ground after|strong=\"H3588\"* its|strong=\"H3605\"* kind|strong=\"H4327\"*. God saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3605\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 26, + "text": "God|strong=\"H8064\"* said, “Let’s make|strong=\"H6213\"* man|strong=\"H3605\"* in|strong=\"H5921\"* our|strong=\"H3605\"* image|strong=\"H6754\"*, after|strong=\"H5921\"* our|strong=\"H3605\"* likeness|strong=\"H1823\"*. Let them|strong=\"H5921\"* have|strong=\"H3605\"* dominion|strong=\"H7287\"* over|strong=\"H5921\"* the|strong=\"H3605\"* fish|strong=\"H1710\"* of|strong=\"H5921\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*, and|strong=\"H8064\"* over|strong=\"H5921\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H5921\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* over|strong=\"H5921\"* the|strong=\"H3605\"* livestock, and|strong=\"H8064\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*, and|strong=\"H8064\"* over|strong=\"H5921\"* every|strong=\"H3605\"* creeping|strong=\"H7431\"* thing|strong=\"H7431\"* that|strong=\"H3605\"* creeps|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*.”" + }, + { + "verseNum": 27, + "text": "God created|strong=\"H1254\"* man|strong=\"H2145\"* in|strong=\"H2145\"* his own image|strong=\"H6754\"*. In|strong=\"H2145\"* God’s image|strong=\"H6754\"* he|strong=\"H5347\"* created|strong=\"H1254\"* him|strong=\"H2145\"*; male|strong=\"H2145\"* and|strong=\"H2145\"* female|strong=\"H5347\"* he|strong=\"H5347\"* created|strong=\"H1254\"* them|strong=\"H1254\"*." + }, + { + "verseNum": 28, + "text": "God|strong=\"H8064\"* blessed|strong=\"H1288\"* them|strong=\"H5921\"*. God|strong=\"H8064\"* said to|strong=\"H5921\"* them|strong=\"H5921\"*, “Be|strong=\"H1288\"* fruitful|strong=\"H6509\"*, multiply|strong=\"H7235\"*, fill|strong=\"H4390\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*, and|strong=\"H8064\"* subdue|strong=\"H3533\"* it|strong=\"H5921\"*. Have|strong=\"H3605\"* dominion|strong=\"H7287\"* over|strong=\"H5921\"* the|strong=\"H3605\"* fish|strong=\"H1710\"* of|strong=\"H4390\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*, over|strong=\"H5921\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H4390\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* over|strong=\"H5921\"* every|strong=\"H3605\"* living|strong=\"H2416\"* thing|strong=\"H2416\"* that|strong=\"H3605\"* moves|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*.”" + }, + { + "verseNum": 29, + "text": "God|strong=\"H5414\"* said, “Behold|strong=\"H2009\"*,+ 1:29 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"H5414\"* have|strong=\"H1961\"* given|strong=\"H5414\"* you|strong=\"H5414\"* every|strong=\"H3605\"* herb|strong=\"H6212\"* yielding|strong=\"H2232\"* seed|strong=\"H2233\"*, which|strong=\"H6086\"* is|strong=\"H2009\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth, and|strong=\"H6086\"* every|strong=\"H3605\"* tree|strong=\"H6086\"*, which|strong=\"H6086\"* bears fruit|strong=\"H6529\"* yielding|strong=\"H2232\"* seed|strong=\"H2233\"*. It|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H3605\"* food." + }, + { + "verseNum": 30, + "text": "To|strong=\"H1961\"* every|strong=\"H3605\"* animal|strong=\"H2416\"* of|strong=\"H5921\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*, and|strong=\"H8064\"* to|strong=\"H1961\"* every|strong=\"H3605\"* bird|strong=\"H5775\"* of|strong=\"H5921\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* to|strong=\"H1961\"* everything|strong=\"H3605\"* that|strong=\"H3605\"* creeps|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*, in|strong=\"H5921\"* which|strong=\"H2416\"* there|strong=\"H1961\"* is|strong=\"H5315\"* life|strong=\"H5315\"*, I|strong=\"H5921\"* have|strong=\"H1961\"* given every|strong=\"H3605\"* green|strong=\"H3418\"* herb|strong=\"H6212\"* for|strong=\"H5921\"* food;” and|strong=\"H8064\"* it|strong=\"H5921\"* was|strong=\"H1961\"* so|strong=\"H3651\"*." + }, + { + "verseNum": 31, + "text": "God saw|strong=\"H7200\"* everything|strong=\"H3605\"* that|strong=\"H7200\"* he|strong=\"H3117\"* had|strong=\"H1961\"* made|strong=\"H6213\"*, and|strong=\"H3117\"*, behold|strong=\"H2009\"*, it|strong=\"H6213\"* was|strong=\"H1961\"* very|strong=\"H3966\"* good|strong=\"H2896\"*. There|strong=\"H2009\"* was|strong=\"H1961\"* evening|strong=\"H6153\"* and|strong=\"H3117\"* there|strong=\"H2009\"* was|strong=\"H1961\"* morning|strong=\"H1242\"*, a|strong=\"H3068\"* sixth|strong=\"H8345\"* day|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* heavens|strong=\"H8064\"*, the|strong=\"H3605\"* earth|strong=\"H8064\"*, and|strong=\"H8064\"* all|strong=\"H3605\"* their|strong=\"H3605\"* vast|strong=\"H6635\"* array|strong=\"H6635\"* were|strong=\"H8064\"* finished|strong=\"H3615\"*." + }, + { + "verseNum": 2, + "text": "On|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* God finished|strong=\"H3615\"* his|strong=\"H3605\"* work|strong=\"H4399\"* which|strong=\"H4399\"* he|strong=\"H3117\"* had|strong=\"H4399\"* done|strong=\"H6213\"*; and|strong=\"H3117\"* he|strong=\"H3117\"* rested|strong=\"H7673\"* on|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* from|strong=\"H3117\"* all|strong=\"H3605\"* his|strong=\"H3605\"* work|strong=\"H4399\"* which|strong=\"H4399\"* he|strong=\"H3117\"* had|strong=\"H4399\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 3, + "text": "God blessed|strong=\"H1288\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* made|strong=\"H6213\"* it|strong=\"H3588\"* holy|strong=\"H6942\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* rested|strong=\"H7673\"* in|strong=\"H6213\"* it|strong=\"H3588\"* from|strong=\"H3117\"* all|strong=\"H3605\"* his|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H3117\"* creation|strong=\"H1254\"* which|strong=\"H4399\"* he|strong=\"H3588\"* had|strong=\"H3588\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 4, + "text": "This|strong=\"H6213\"* is|strong=\"H3068\"* the|strong=\"H6213\"* history|strong=\"H8435\"* of|strong=\"H3068\"* the|strong=\"H6213\"* generations|strong=\"H8435\"* of|strong=\"H3068\"* the|strong=\"H6213\"* heavens|strong=\"H8064\"* and|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H6213\"* earth|strong=\"H8064\"* when|strong=\"H3117\"* they|strong=\"H3117\"* were|strong=\"H3117\"* created|strong=\"H1254\"*, in|strong=\"H3068\"* the|strong=\"H6213\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"*+ 2:4 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* God|strong=\"H3068\"* made|strong=\"H6213\"* the|strong=\"H6213\"* earth|strong=\"H8064\"* and|strong=\"H3068\"* the|strong=\"H6213\"* heavens|strong=\"H8064\"*." + }, + { + "verseNum": 5, + "text": "No|strong=\"H3808\"* plant|strong=\"H6212\"* of|strong=\"H3068\"* the|strong=\"H3605\"* field|strong=\"H7704\"* was|strong=\"H3068\"* yet|strong=\"H3588\"* in|strong=\"H5921\"* the|strong=\"H3605\"* earth, and|strong=\"H3068\"* no|strong=\"H3808\"* herb|strong=\"H6212\"* of|strong=\"H3068\"* the|strong=\"H3605\"* field|strong=\"H7704\"* had|strong=\"H3068\"* yet|strong=\"H3588\"* sprung|strong=\"H6779\"* up|strong=\"H6779\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* had|strong=\"H3068\"* not|strong=\"H3808\"* caused|strong=\"H1961\"* it|strong=\"H5921\"* to|strong=\"H3068\"* rain|strong=\"H4305\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth. There|strong=\"H1961\"* was|strong=\"H3068\"* not|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H3605\"* to|strong=\"H3068\"* till|strong=\"H5647\"* the|strong=\"H3605\"* ground|strong=\"H7704\"*," + }, + { + "verseNum": 6, + "text": "but|strong=\"H3605\"* a|strong=\"H3068\"* mist went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H4480\"* the|strong=\"H3605\"* earth|strong=\"H5927\"*, and|strong=\"H6440\"* watered|strong=\"H8248\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* ground|strong=\"H6440\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* formed|strong=\"H3335\"* man|strong=\"H5315\"* from|strong=\"H4480\"* the|strong=\"H3068\"* dust|strong=\"H6083\"* of|strong=\"H3068\"* the|strong=\"H3068\"* ground|strong=\"H6083\"*, and|strong=\"H3068\"* breathed|strong=\"H5397\"* into|strong=\"H1961\"* his|strong=\"H3068\"* nostrils the|strong=\"H3068\"* breath|strong=\"H5397\"* of|strong=\"H3068\"* life|strong=\"H5315\"*; and|strong=\"H3068\"* man|strong=\"H5315\"* became|strong=\"H1961\"* a|strong=\"H3068\"* living|strong=\"H2416\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* planted|strong=\"H5193\"* a|strong=\"H3068\"* garden|strong=\"H1588\"* eastward|strong=\"H6924\"*, in|strong=\"H3068\"* Eden|strong=\"H5731\"*, and|strong=\"H3068\"* there|strong=\"H8033\"* he|strong=\"H8033\"* put|strong=\"H7760\"* the|strong=\"H3068\"* man whom he|strong=\"H8033\"* had|strong=\"H3068\"* formed|strong=\"H3335\"*." + }, + { + "verseNum": 9, + "text": "Out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3605\"* ground Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* made|strong=\"H6779\"* every|strong=\"H3605\"* tree|strong=\"H6086\"* to|strong=\"H3068\"* grow|strong=\"H6779\"* that|strong=\"H3605\"* is|strong=\"H3068\"* pleasant|strong=\"H2896\"* to|strong=\"H3068\"* the|strong=\"H3605\"* sight|strong=\"H4758\"*, and|strong=\"H3068\"* good|strong=\"H2896\"* for|strong=\"H3068\"* food|strong=\"H3978\"*, including|strong=\"H3605\"* the|strong=\"H3605\"* tree|strong=\"H6086\"* of|strong=\"H3068\"* life|strong=\"H2416\"* in|strong=\"H3068\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H3605\"* garden|strong=\"H1588\"* and|strong=\"H3068\"* the|strong=\"H3605\"* tree|strong=\"H6086\"* of|strong=\"H3068\"* the|strong=\"H3605\"* knowledge|strong=\"H1847\"* of|strong=\"H3068\"* good|strong=\"H2896\"* and|strong=\"H3068\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 10, + "text": "A|strong=\"H3068\"* river|strong=\"H5104\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H7218\"* Eden|strong=\"H5731\"* to|strong=\"H3318\"* water|strong=\"H8248\"* the|strong=\"H3318\"* garden|strong=\"H1588\"*; and|strong=\"H7218\"* from|strong=\"H3318\"* there|strong=\"H8033\"* it|strong=\"H8033\"* was|strong=\"H1961\"* parted|strong=\"H6504\"*, and|strong=\"H7218\"* became|strong=\"H1961\"* the|strong=\"H3318\"* source of|strong=\"H7218\"* four rivers|strong=\"H5104\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H3605\"* first is|strong=\"H1931\"* Pishon|strong=\"H6376\"*: it|strong=\"H1931\"* flows|strong=\"H5437\"* through|strong=\"H3605\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* land of|strong=\"H8034\"* Havilah|strong=\"H2341\"*, where|strong=\"H8033\"* there|strong=\"H8033\"* is|strong=\"H1931\"* gold|strong=\"H2091\"*;" + }, + { + "verseNum": 12, + "text": "and|strong=\"H2091\"* the|strong=\"H8033\"* gold|strong=\"H2091\"* of|strong=\"H2091\"* that|strong=\"H1931\"* land is|strong=\"H1931\"* good|strong=\"H2896\"*. Bdellium+ 2:12 or, aromatic resin* and|strong=\"H2091\"* onyx|strong=\"H7718\"* stone are|strong=\"H2896\"* also|strong=\"H1931\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H3605\"* second|strong=\"H8145\"* river|strong=\"H5104\"* is|strong=\"H1931\"* Gihon|strong=\"H1521\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* same|strong=\"H1931\"* river|strong=\"H5104\"* that|strong=\"H3605\"* flows|strong=\"H5437\"* through|strong=\"H3605\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* land of|strong=\"H8034\"* Cush|strong=\"H3568\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H1980\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H1980\"* third|strong=\"H7992\"* river|strong=\"H5104\"* is|strong=\"H1931\"* Hiddekel|strong=\"H2313\"*. This|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H1980\"* one|strong=\"H7992\"* which|strong=\"H1931\"* flows|strong=\"H1980\"* in|strong=\"H1980\"* front of|strong=\"H8034\"* Assyria. The|strong=\"H1980\"* fourth|strong=\"H7243\"* river|strong=\"H5104\"* is|strong=\"H1931\"* the|strong=\"H1980\"* Euphrates|strong=\"H6578\"*." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* took|strong=\"H3947\"* the|strong=\"H3947\"* man|strong=\"H5647\"*, and|strong=\"H3068\"* put|strong=\"H3240\"* him|strong=\"H3947\"* into|strong=\"H3947\"* the|strong=\"H3947\"* garden|strong=\"H1588\"* of|strong=\"H3068\"* Eden|strong=\"H5731\"* to|strong=\"H3068\"* cultivate|strong=\"H5647\"* and|strong=\"H3068\"* keep|strong=\"H8104\"* it|strong=\"H3947\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* the|strong=\"H3605\"* man|strong=\"H3605\"*, saying, “You|strong=\"H6680\"* may|strong=\"H3068\"* freely eat of|strong=\"H3068\"* every|strong=\"H3605\"* tree|strong=\"H6086\"* of|strong=\"H3068\"* the|strong=\"H3605\"* garden|strong=\"H1588\"*;" + }, + { + "verseNum": 17, + "text": "but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* eat of|strong=\"H3117\"* the|strong=\"H3588\"* tree|strong=\"H6086\"* of|strong=\"H3117\"* the|strong=\"H3588\"* knowledge|strong=\"H1847\"* of|strong=\"H3117\"* good|strong=\"H2896\"* and|strong=\"H3117\"* evil|strong=\"H7451\"*; for|strong=\"H3588\"* in|strong=\"H4191\"* the|strong=\"H3588\"* day|strong=\"H3117\"* that|strong=\"H3588\"* you|strong=\"H3588\"* eat of|strong=\"H3117\"* it|strong=\"H3588\"*, you|strong=\"H3588\"* will|strong=\"H3808\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* said, “It|strong=\"H6213\"* is|strong=\"H3068\"* not|strong=\"H3808\"* good|strong=\"H2896\"* for|strong=\"H6213\"* the|strong=\"H6213\"* man|strong=\"H2896\"* to|strong=\"H3068\"* be|strong=\"H1961\"* alone|strong=\"H6213\"*. I|strong=\"H3808\"* will|strong=\"H3068\"* make|strong=\"H6213\"* him|strong=\"H6213\"* a|strong=\"H3068\"* helper|strong=\"H5828\"* comparable to|strong=\"H3068\"*+ 2:18 or, suitable for, or appropriate for.* him|strong=\"H6213\"*.”" + }, + { + "verseNum": 19, + "text": "Out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3605\"* ground|strong=\"H7704\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* formed|strong=\"H3335\"* every|strong=\"H3605\"* animal|strong=\"H2416\"* of|strong=\"H3068\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, and|strong=\"H3068\"* every|strong=\"H3605\"* bird|strong=\"H5775\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H3068\"* brought|strong=\"H3068\"* them|strong=\"H7121\"* to|strong=\"H3068\"* the|strong=\"H3605\"* man|strong=\"H5315\"* to|strong=\"H3068\"* see|strong=\"H7200\"* what|strong=\"H4100\"* he|strong=\"H1931\"* would|strong=\"H3068\"* call|strong=\"H7121\"* them|strong=\"H7121\"*. Whatever|strong=\"H3605\"* the|strong=\"H3605\"* man|strong=\"H5315\"* called|strong=\"H7121\"* every|strong=\"H3605\"* living|strong=\"H2416\"* creature|strong=\"H5315\"* became|strong=\"H7200\"* its|strong=\"H3605\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3605\"* man|strong=\"H3605\"* gave|strong=\"H7121\"* names|strong=\"H8034\"* to|strong=\"H7121\"* all|strong=\"H3605\"* livestock, and|strong=\"H8064\"* to|strong=\"H7121\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H8034\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* to|strong=\"H7121\"* every|strong=\"H3605\"* animal|strong=\"H2416\"* of|strong=\"H8034\"* the|strong=\"H3605\"* field|strong=\"H7704\"*; but|strong=\"H3808\"* for|strong=\"H7121\"* man|strong=\"H3605\"* there|strong=\"H4672\"* was|strong=\"H8034\"* not|strong=\"H3808\"* found|strong=\"H4672\"* a|strong=\"H3068\"* helper|strong=\"H5828\"* comparable to|strong=\"H7121\"* him|strong=\"H7121\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* caused|strong=\"H5307\"* the|strong=\"H5921\"* man|strong=\"H5307\"* to|strong=\"H3068\"* fall|strong=\"H5307\"* into|strong=\"H5307\"* a|strong=\"H3068\"* deep|strong=\"H8639\"* sleep|strong=\"H3462\"*. As|strong=\"H3068\"* the|strong=\"H5921\"* man|strong=\"H5307\"* slept|strong=\"H3462\"*, he|strong=\"H3068\"* took|strong=\"H3947\"* one|strong=\"H3068\"* of|strong=\"H3068\"* his|strong=\"H3068\"* ribs|strong=\"H6763\"*, and|strong=\"H3068\"* closed|strong=\"H5462\"* up|strong=\"H5462\"* the|strong=\"H5921\"* flesh|strong=\"H1320\"* in|strong=\"H5921\"* its|strong=\"H5921\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* made|strong=\"H1129\"* a|strong=\"H3068\"* woman from|strong=\"H4480\"* the|strong=\"H3947\"* rib|strong=\"H6763\"* which|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* taken|strong=\"H3947\"* from|strong=\"H4480\"* the|strong=\"H3947\"* man, and|strong=\"H3068\"* brought|strong=\"H3947\"* her|strong=\"H3947\"* to|strong=\"H3068\"* the|strong=\"H3947\"* man." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3588\"* man|strong=\"H1320\"* said|strong=\"H7121\"*, “This|strong=\"H2063\"* is|strong=\"H1320\"* now|strong=\"H6471\"* bone|strong=\"H6106\"* of|strong=\"H6106\"* my|strong=\"H3947\"* bones|strong=\"H6106\"*, and|strong=\"H3947\"* flesh|strong=\"H1320\"* of|strong=\"H6106\"* my|strong=\"H3947\"* flesh|strong=\"H1320\"*. She|strong=\"H3588\"* will|strong=\"H1320\"* be|strong=\"H1320\"* called|strong=\"H7121\"* ‘woman,’ because|strong=\"H3588\"* she|strong=\"H3588\"* was|strong=\"H1320\"* taken|strong=\"H3947\"* out|strong=\"H3947\"* of|strong=\"H6106\"* Man|strong=\"H1320\"*.”" + }, + { + "verseNum": 24, + "text": "Therefore|strong=\"H3651\"* a|strong=\"H3068\"* man|strong=\"H1320\"* will|strong=\"H1961\"* leave|strong=\"H5800\"* his|strong=\"H5921\"* father and|strong=\"H1320\"* his|strong=\"H5921\"* mother, and|strong=\"H1320\"* will|strong=\"H1961\"* join with|strong=\"H5921\"* his|strong=\"H5921\"* wife, and|strong=\"H1320\"* they|strong=\"H3651\"* will|strong=\"H1961\"* be|strong=\"H1961\"* one|strong=\"H1961\"* flesh|strong=\"H1320\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H1961\"* man and|strong=\"H8147\"* his|strong=\"H1961\"* wife were|strong=\"H1961\"* both|strong=\"H8147\"* naked|strong=\"H6174\"*, and|strong=\"H8147\"* they|strong=\"H3808\"* were|strong=\"H1961\"* not|strong=\"H3808\"* ashamed." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* the|strong=\"H3605\"* serpent|strong=\"H5175\"* was|strong=\"H3068\"* more|strong=\"H3808\"* subtle than|strong=\"H3808\"* any|strong=\"H3605\"* animal|strong=\"H2416\"* of|strong=\"H3068\"* the|strong=\"H3605\"* field|strong=\"H7704\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* had|strong=\"H3068\"* made|strong=\"H6213\"*. He|strong=\"H3588\"* said to|strong=\"H3068\"* the|strong=\"H3605\"* woman, “Has|strong=\"H3068\"* God|strong=\"H3068\"* really said, ‘You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* eat of|strong=\"H3068\"* any|strong=\"H3605\"* tree|strong=\"H6086\"* of|strong=\"H3068\"* the|strong=\"H3605\"* garden|strong=\"H1588\"*’?”" + }, + { + "verseNum": 2, + "text": "The|strong=\"H6086\"* woman said to|strong=\"H6086\"* the|strong=\"H6086\"* serpent|strong=\"H5175\"*, “We may|strong=\"H5175\"* eat fruit|strong=\"H6529\"* from|strong=\"H6086\"* the|strong=\"H6086\"* trees|strong=\"H6086\"* of|strong=\"H6086\"* the|strong=\"H6086\"* garden|strong=\"H1588\"*," + }, + { + "verseNum": 3, + "text": "but|strong=\"H3808\"* not|strong=\"H3808\"* the|strong=\"H8432\"* fruit|strong=\"H6529\"* of|strong=\"H4480\"* the|strong=\"H8432\"* tree|strong=\"H6086\"* which|strong=\"H6086\"* is|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H4480\"* the|strong=\"H8432\"* garden|strong=\"H1588\"*. God|strong=\"H3808\"* has|strong=\"H6086\"* said, ‘You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat of|strong=\"H4480\"* it|strong=\"H8432\"*. You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* touch|strong=\"H5060\"* it|strong=\"H8432\"*, lest|strong=\"H6435\"* you|strong=\"H3808\"* die|strong=\"H4191\"*.’”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H4191\"* serpent|strong=\"H5175\"* said to|strong=\"H4191\"* the|strong=\"H4191\"* woman, “You|strong=\"H3808\"* won’t really die|strong=\"H4191\"*," + }, + { + "verseNum": 5, + "text": "for|strong=\"H3588\"* God knows|strong=\"H3045\"* that|strong=\"H3588\"* in|strong=\"H3117\"* the|strong=\"H3588\"* day|strong=\"H3117\"* you|strong=\"H3588\"* eat it|strong=\"H3588\"*, your|strong=\"H3045\"* eyes|strong=\"H5869\"* will|strong=\"H1961\"* be|strong=\"H1961\"* opened|strong=\"H6491\"*, and|strong=\"H3117\"* you|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* God, knowing|strong=\"H3045\"* good|strong=\"H2896\"* and|strong=\"H3117\"* evil|strong=\"H7451\"*.”" + }, + { + "verseNum": 6, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* woman saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H7200\"* tree|strong=\"H6086\"* was|strong=\"H1931\"* good|strong=\"H2896\"* for|strong=\"H3588\"* food|strong=\"H3978\"*, and|strong=\"H6086\"* that|strong=\"H3588\"* it|strong=\"H5414\"* was|strong=\"H1931\"* a|strong=\"H3068\"* delight|strong=\"H2530\"* to|strong=\"H5414\"* the|strong=\"H7200\"* eyes|strong=\"H5869\"*, and|strong=\"H6086\"* that|strong=\"H3588\"* the|strong=\"H7200\"* tree|strong=\"H6086\"* was|strong=\"H1931\"* to|strong=\"H5414\"* be|strong=\"H1571\"* desired|strong=\"H2530\"* to|strong=\"H5414\"* make|strong=\"H5414\"* one|strong=\"H1931\"* wise|strong=\"H7919\"*, she|strong=\"H1931\"* took|strong=\"H3947\"* some of|strong=\"H5869\"* its|strong=\"H5414\"* fruit|strong=\"H6529\"*, and|strong=\"H6086\"* ate. Then|strong=\"H3947\"* she|strong=\"H1931\"* gave|strong=\"H5414\"* some to|strong=\"H5414\"* her|strong=\"H5414\"* husband with|strong=\"H5973\"* her|strong=\"H5414\"*, and|strong=\"H6086\"* he|strong=\"H1931\"* ate it|strong=\"H5414\"*, too|strong=\"H1571\"*." + }, + { + "verseNum": 7, + "text": "Their|strong=\"H1992\"* eyes|strong=\"H5869\"* were|strong=\"H5869\"* opened|strong=\"H6491\"*, and|strong=\"H5869\"* they|strong=\"H1992\"* both|strong=\"H8147\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H5869\"* naked|strong=\"H5903\"*. They|strong=\"H1992\"* sewed|strong=\"H8609\"* fig|strong=\"H8384\"* leaves|strong=\"H5929\"* together|strong=\"H8609\"*, and|strong=\"H5869\"* made|strong=\"H6213\"* coverings|strong=\"H2290\"* for|strong=\"H3588\"* themselves|strong=\"H1992\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H3117\"* heard|strong=\"H8085\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"* walking|strong=\"H1980\"* in|strong=\"H1980\"* the|strong=\"H6440\"* garden|strong=\"H1588\"* in|strong=\"H1980\"* the|strong=\"H6440\"* cool|strong=\"H7307\"* of|strong=\"H3068\"* the|strong=\"H6440\"* day|strong=\"H3117\"*, and|strong=\"H1980\"* the|strong=\"H6440\"* man|strong=\"H6440\"* and|strong=\"H1980\"* his|strong=\"H3068\"* wife hid|strong=\"H2244\"* themselves|strong=\"H2244\"* from|strong=\"H6440\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* among|strong=\"H8432\"* the|strong=\"H6440\"* trees|strong=\"H6086\"* of|strong=\"H3068\"* the|strong=\"H6440\"* garden|strong=\"H1588\"*." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* called|strong=\"H7121\"* to|strong=\"H3068\"* the|strong=\"H3068\"* man, and|strong=\"H3068\"* said|strong=\"H7121\"* to|strong=\"H3068\"* him|strong=\"H7121\"*, “Where are|strong=\"H3068\"* you|strong=\"H7121\"*?”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H8085\"* man said|strong=\"H8085\"*, “I|strong=\"H3588\"* heard|strong=\"H8085\"* your|strong=\"H8085\"* voice|strong=\"H6963\"* in|strong=\"H8085\"* the|strong=\"H8085\"* garden|strong=\"H1588\"*, and|strong=\"H6963\"* I|strong=\"H3588\"* was|strong=\"H6963\"* afraid|strong=\"H3372\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H6963\"* naked|strong=\"H5903\"*; so|strong=\"H3588\"* I|strong=\"H3588\"* hid|strong=\"H2244\"* myself|strong=\"H2244\"*.”" + }, + { + "verseNum": 11, + "text": "God|strong=\"H4310\"* said, “Who|strong=\"H4310\"* told|strong=\"H5046\"* you|strong=\"H3588\"* that|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H4480\"* naked|strong=\"H5903\"*? Have|strong=\"H3588\"* you|strong=\"H3588\"* eaten from|strong=\"H4480\"* the|strong=\"H3588\"* tree|strong=\"H6086\"* that|strong=\"H3588\"* I|strong=\"H3588\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"* not|strong=\"H1115\"* to|strong=\"H6680\"* eat from|strong=\"H4480\"*?”" + }, + { + "verseNum": 12, + "text": "The|strong=\"H5414\"* man said, “The|strong=\"H5414\"* woman whom you|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* be|strong=\"H5414\"* with|strong=\"H6086\"* me|strong=\"H5414\"*, she|strong=\"H1931\"* gave|strong=\"H5414\"* me|strong=\"H5414\"* fruit|strong=\"H6086\"* from|strong=\"H4480\"* the|strong=\"H5414\"* tree|strong=\"H6086\"*, and|strong=\"H6086\"* I|strong=\"H5414\"* ate it|strong=\"H5414\"*.”" + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* said to|strong=\"H3068\"* the|strong=\"H6213\"* woman, “What|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H6213\"* done|strong=\"H6213\"*?”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* said to|strong=\"H3068\"* the|strong=\"H3605\"* serpent|strong=\"H5175\"*," + }, + { + "verseNum": 15, + "text": "I will|strong=\"H2233\"* put|strong=\"H7896\"* hostility between you|strong=\"H2233\"* and|strong=\"H7218\"* the|strong=\"H1931\"* woman," + }, + { + "verseNum": 16, + "text": "To|strong=\"H3205\"* the|strong=\"H3205\"* woman|strong=\"H3205\"* he|strong=\"H1931\"* said," + }, + { + "verseNum": 17, + "text": "To|strong=\"H3117\"* Adam he|strong=\"H3588\"* said|strong=\"H8085\"*," + }, + { + "verseNum": 18, + "text": "It will|strong=\"H7704\"* yield thorns|strong=\"H6975\"* and|strong=\"H7704\"* thistles|strong=\"H1863\"* to|strong=\"H7704\"* you;" + }, + { + "verseNum": 19, + "text": "You|strong=\"H3588\"* will|strong=\"H5704\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* by|strong=\"H5704\"* the|strong=\"H3588\"* sweat|strong=\"H2188\"* of|strong=\"H4480\"* your|strong=\"H3947\"* face until|strong=\"H5704\"* you|strong=\"H3588\"* return|strong=\"H7725\"* to|strong=\"H5704\"* the|strong=\"H3588\"* ground|strong=\"H6083\"*," + }, + { + "verseNum": 20, + "text": "The|strong=\"H3605\"* man|strong=\"H3605\"* called|strong=\"H7121\"* his|strong=\"H3605\"* wife|strong=\"H2416\"* Eve|strong=\"H2332\"* because|strong=\"H3588\"* she|strong=\"H1931\"* would|strong=\"H3605\"* be|strong=\"H1961\"* the|strong=\"H3605\"* mother of|strong=\"H8034\"* all|strong=\"H3605\"* the|strong=\"H3605\"* living|strong=\"H2416\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* made|strong=\"H6213\"* garments|strong=\"H3801\"* of|strong=\"H3068\"* animal skins|strong=\"H5785\"* for|strong=\"H6213\"* Adam and|strong=\"H3068\"* for|strong=\"H6213\"* his|strong=\"H3068\"* wife, and|strong=\"H3068\"* clothed|strong=\"H3847\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* said, “Behold|strong=\"H2005\"*, the|strong=\"H3947\"* man|strong=\"H7451\"* has|strong=\"H3068\"* become|strong=\"H1961\"* like|strong=\"H1961\"* one|strong=\"H4480\"* of|strong=\"H3068\"* us|strong=\"H3045\"*, knowing|strong=\"H3045\"* good|strong=\"H2896\"* and|strong=\"H3068\"* evil|strong=\"H7451\"*. Now|strong=\"H6258\"*, lest|strong=\"H6435\"* he|strong=\"H3068\"* reach|strong=\"H1961\"* out|strong=\"H7971\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* also|strong=\"H1571\"* take|strong=\"H3947\"* of|strong=\"H3068\"* the|strong=\"H3947\"* tree|strong=\"H6086\"* of|strong=\"H3068\"* life|strong=\"H2416\"*, and|strong=\"H3068\"* eat, and|strong=\"H3068\"* live|strong=\"H2416\"* forever|strong=\"H5769\"*—”" + }, + { + "verseNum": 23, + "text": "Therefore|strong=\"H7971\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* sent|strong=\"H7971\"* him|strong=\"H7971\"* out|strong=\"H7971\"* from|strong=\"H7971\"* the|strong=\"H3947\"* garden|strong=\"H1588\"* of|strong=\"H3068\"* Eden|strong=\"H5731\"*, to|strong=\"H3068\"* till|strong=\"H5647\"* the|strong=\"H3947\"* ground from|strong=\"H7971\"* which|strong=\"H3068\"* he|strong=\"H8033\"* was|strong=\"H3068\"* taken|strong=\"H3947\"*." + }, + { + "verseNum": 24, + "text": "So he|strong=\"H2416\"* drove|strong=\"H1644\"* out|strong=\"H1644\"* the|strong=\"H8104\"* man|strong=\"H2416\"*; and|strong=\"H6086\"* he|strong=\"H2416\"* placed|strong=\"H7931\"* cherubim|strong=\"H3742\"*+ 3:24 cherubim are powerful angelic creatures, messengers of God with wings. See Ezekiel 10.* at|strong=\"H7931\"* the|strong=\"H8104\"* east|strong=\"H6924\"* of|strong=\"H1870\"* the|strong=\"H8104\"* garden|strong=\"H1588\"* of|strong=\"H1870\"* Eden|strong=\"H5731\"*, and|strong=\"H6086\"* a|strong=\"H3068\"* flaming|strong=\"H3858\"* sword|strong=\"H2719\"* which|strong=\"H6086\"* turned|strong=\"H2015\"* every|strong=\"H8104\"* way|strong=\"H1870\"*, to|strong=\"H8104\"* guard|strong=\"H8104\"* the|strong=\"H8104\"* way|strong=\"H1870\"* to|strong=\"H8104\"* the|strong=\"H8104\"* tree|strong=\"H6086\"* of|strong=\"H1870\"* life|strong=\"H2416\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3205\"* man|strong=\"H3045\"* knew|strong=\"H3045\"*+ 4:1 or, lay with, or, had relations with* Eve|strong=\"H2332\"* his|strong=\"H3068\"* wife. She conceived|strong=\"H2029\"*,+ 4:1 or, became pregnant* and|strong=\"H3068\"* gave|strong=\"H3205\"* birth|strong=\"H3205\"* to|strong=\"H3068\"* Cain|strong=\"H7014\"*, and|strong=\"H3068\"* said, “I|strong=\"H3045\"* have|strong=\"H3068\"* gotten|strong=\"H7069\"* a|strong=\"H3068\"* man|strong=\"H3045\"* with|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s help.”" + }, + { + "verseNum": 2, + "text": "Again|strong=\"H3254\"* she gave|strong=\"H3205\"* birth|strong=\"H3205\"*, to|strong=\"H1961\"* Cain|strong=\"H7014\"*’s brother Abel|strong=\"H1893\"*. Abel|strong=\"H1893\"* was|strong=\"H1961\"* a|strong=\"H3068\"* keeper|strong=\"H7462\"* of|strong=\"H3205\"* sheep|strong=\"H6629\"*, but|strong=\"H1961\"* Cain|strong=\"H7014\"* was|strong=\"H1961\"* a|strong=\"H3068\"* tiller|strong=\"H5647\"* of|strong=\"H3205\"* the|strong=\"H5647\"* ground." + }, + { + "verseNum": 3, + "text": "As|strong=\"H3117\"* time|strong=\"H3117\"* passed|strong=\"H3068\"*, Cain|strong=\"H7014\"* brought|strong=\"H1961\"* an|strong=\"H1961\"* offering|strong=\"H4503\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* from|strong=\"H3117\"* the|strong=\"H3068\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* the|strong=\"H3068\"* ground." + }, + { + "verseNum": 4, + "text": "Abel|strong=\"H1893\"* also|strong=\"H1571\"* brought|strong=\"H3068\"* some of|strong=\"H3068\"* the|strong=\"H3068\"* firstborn|strong=\"H1062\"* of|strong=\"H3068\"* his|strong=\"H3068\"* flock|strong=\"H6629\"* and|strong=\"H3068\"* of|strong=\"H3068\"* its fat|strong=\"H2459\"*. Yahweh|strong=\"H3068\"* respected Abel|strong=\"H1893\"* and|strong=\"H3068\"* his|strong=\"H3068\"* offering|strong=\"H4503\"*," + }, + { + "verseNum": 5, + "text": "but|strong=\"H3808\"* he|strong=\"H3808\"* didn’t respect|strong=\"H8159\"* Cain|strong=\"H7014\"* and|strong=\"H6440\"* his|strong=\"H6440\"* offering|strong=\"H4503\"*. Cain|strong=\"H7014\"* was|strong=\"H3966\"* very|strong=\"H3966\"* angry|strong=\"H2734\"*, and|strong=\"H6440\"* the|strong=\"H6440\"* expression|strong=\"H6440\"* on|strong=\"H5307\"* his|strong=\"H6440\"* face|strong=\"H6440\"* fell|strong=\"H5307\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Cain|strong=\"H7014\"*, “Why|strong=\"H4100\"* are|strong=\"H4100\"* you|strong=\"H6440\"* angry|strong=\"H2734\"*? Why|strong=\"H4100\"* has|strong=\"H3068\"* the|strong=\"H6440\"* expression|strong=\"H6440\"* of|strong=\"H3068\"* your|strong=\"H3068\"* face|strong=\"H6440\"* fallen|strong=\"H5307\"*?" + }, + { + "verseNum": 7, + "text": "If you|strong=\"H3808\"* do|strong=\"H3190\"* well|strong=\"H3190\"*, won’t it|strong=\"H3190\"* be|strong=\"H3808\"* lifted|strong=\"H7613\"* up|strong=\"H7613\"*? If you|strong=\"H3808\"* don’t do|strong=\"H3190\"* well|strong=\"H3190\"*, sin|strong=\"H2403\"* crouches at|strong=\"H3808\"* the|strong=\"H3808\"* door|strong=\"H6607\"*. Its|strong=\"H3808\"* desire|strong=\"H8669\"* is|strong=\"H2403\"* for|strong=\"H3808\"* you|strong=\"H3808\"*, but|strong=\"H3808\"* you|strong=\"H3808\"* are|strong=\"H2403\"* to|strong=\"H3808\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* it|strong=\"H3190\"*.”" + }, + { + "verseNum": 8, + "text": "Cain|strong=\"H7014\"* said to|strong=\"H1961\"* Abel|strong=\"H1893\"*, his|strong=\"H1961\"* brother, “Let|strong=\"H1961\"*’s go|strong=\"H6965\"* into|strong=\"H1961\"* the|strong=\"H6965\"* field|strong=\"H7704\"*.” While|strong=\"H1961\"* they were|strong=\"H1961\"* in|strong=\"H6965\"* the|strong=\"H6965\"* field|strong=\"H7704\"*, Cain|strong=\"H7014\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H6965\"* Abel|strong=\"H1893\"*, his|strong=\"H1961\"* brother, and|strong=\"H6965\"* killed|strong=\"H2026\"* him|strong=\"H2026\"*." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Cain|strong=\"H7014\"*, “Where|strong=\"H3808\"* is|strong=\"H3068\"* Abel|strong=\"H1893\"*, your|strong=\"H3068\"* brother?”" + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* said, “What|strong=\"H4100\"* have you|strong=\"H6213\"* done|strong=\"H6213\"*? The|strong=\"H6213\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* your|strong=\"H6213\"* brother’s blood|strong=\"H1818\"* cries|strong=\"H6963\"* to|strong=\"H6213\"* me|strong=\"H6963\"* from|strong=\"H4480\"* the|strong=\"H6213\"* ground." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H6258\"* you|strong=\"H3947\"* are|strong=\"H3027\"* cursed because|strong=\"H4480\"* of|strong=\"H3027\"* the|strong=\"H3947\"* ground, which|strong=\"H1818\"* has|strong=\"H3027\"* opened|strong=\"H6475\"* its|strong=\"H6475\"* mouth|strong=\"H6310\"* to|strong=\"H3027\"* receive|strong=\"H3947\"* your|strong=\"H3947\"* brother’s blood|strong=\"H1818\"* from|strong=\"H4480\"* your|strong=\"H3947\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 12, + "text": "From|strong=\"H1961\"* now|strong=\"H1961\"* on|strong=\"H1961\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* till|strong=\"H5647\"* the|strong=\"H3588\"* ground, it|strong=\"H5414\"* won’t yield|strong=\"H5414\"* its|strong=\"H5414\"* strength|strong=\"H3581\"* to|strong=\"H1961\"* you|strong=\"H3588\"*. You|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* fugitive|strong=\"H5128\"* and|strong=\"H3254\"* a|strong=\"H3068\"* wanderer|strong=\"H5110\"* in|strong=\"H5414\"* the|strong=\"H3588\"* earth.”" + }, + { + "verseNum": 13, + "text": "Cain|strong=\"H7014\"* said to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, “My|strong=\"H3068\"* punishment|strong=\"H5771\"* is|strong=\"H3068\"* greater|strong=\"H1419\"* than|strong=\"H1419\"* I|strong=\"H3068\"* can bear|strong=\"H5375\"*." + }, + { + "verseNum": 14, + "text": "Behold|strong=\"H2005\"*, you|strong=\"H6440\"* have|strong=\"H1961\"* driven|strong=\"H1644\"* me|strong=\"H6440\"* out|strong=\"H1644\"* today|strong=\"H3117\"* from|strong=\"H6440\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H3117\"* the|strong=\"H3605\"* ground|strong=\"H6440\"*. I|strong=\"H3117\"* will|strong=\"H1961\"* be|strong=\"H1961\"* hidden|strong=\"H5641\"* from|strong=\"H6440\"* your|strong=\"H3605\"* face|strong=\"H6440\"*, and|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* fugitive|strong=\"H5128\"* and|strong=\"H3117\"* a|strong=\"H3068\"* wanderer|strong=\"H5110\"* in|strong=\"H5921\"* the|strong=\"H3605\"* earth. Whoever|strong=\"H3605\"* finds|strong=\"H4672\"* me|strong=\"H6440\"* will|strong=\"H1961\"* kill|strong=\"H2026\"* me|strong=\"H6440\"*.”" + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H3651\"* to|strong=\"H3068\"* him|strong=\"H5221\"*, “Therefore|strong=\"H3651\"* whoever|strong=\"H3605\"* slays|strong=\"H2026\"* Cain|strong=\"H7014\"*, vengeance|strong=\"H5358\"* will|strong=\"H3068\"* be|strong=\"H3068\"* taken|strong=\"H5358\"* on|strong=\"H7760\"* him|strong=\"H5221\"* sevenfold|strong=\"H7659\"*.” Yahweh|strong=\"H3068\"* appointed|strong=\"H7760\"* a|strong=\"H3068\"* sign for|strong=\"H3068\"* Cain|strong=\"H7014\"*, so|strong=\"H3651\"* that|strong=\"H3605\"* anyone|strong=\"H3605\"* finding|strong=\"H4672\"* him|strong=\"H5221\"* would|strong=\"H3068\"* not|strong=\"H1115\"* strike|strong=\"H5221\"* him|strong=\"H5221\"*." + }, + { + "verseNum": 16, + "text": "Cain|strong=\"H7014\"* left|strong=\"H3318\"* Yahweh|strong=\"H3068\"*’s presence|strong=\"H6440\"*, and|strong=\"H3068\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H3068\"* Nod|strong=\"H5113\"*, east|strong=\"H6926\"* of|strong=\"H3068\"* Eden|strong=\"H5731\"*." + }, + { + "verseNum": 17, + "text": "Cain|strong=\"H7014\"* knew|strong=\"H3045\"* his|strong=\"H7121\"* wife. She|strong=\"H7121\"* conceived|strong=\"H2029\"*, and|strong=\"H1121\"* gave|strong=\"H3205\"* birth|strong=\"H3205\"* to|strong=\"H1961\"* Enoch|strong=\"H2585\"*. He|strong=\"H7121\"* built|strong=\"H1129\"* a|strong=\"H3068\"* city|strong=\"H5892\"*, and|strong=\"H1121\"* named|strong=\"H7121\"* the|strong=\"H3205\"* city|strong=\"H5892\"* after|strong=\"H1961\"* the|strong=\"H3205\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H7121\"* son|strong=\"H1121\"*, Enoch|strong=\"H2585\"*." + }, + { + "verseNum": 18, + "text": "Irad|strong=\"H5897\"* was|strong=\"H3205\"* born|strong=\"H3205\"* to|strong=\"H3205\"* Enoch|strong=\"H2585\"*. Irad|strong=\"H5897\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Mehujael|strong=\"H4232\"*. Mehujael|strong=\"H4232\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Methushael|strong=\"H4967\"*. Methushael|strong=\"H4967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Lamech|strong=\"H3929\"*." + }, + { + "verseNum": 19, + "text": "Lamech|strong=\"H3929\"* took|strong=\"H3947\"* two|strong=\"H8147\"* wives: the|strong=\"H3947\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H3947\"* first one|strong=\"H8147\"* was|strong=\"H8034\"* Adah|strong=\"H5711\"*, and|strong=\"H8147\"* the|strong=\"H3947\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H3947\"* second|strong=\"H8145\"* one|strong=\"H8147\"* was|strong=\"H8034\"* Zillah|strong=\"H6741\"*." + }, + { + "verseNum": 20, + "text": "Adah|strong=\"H5711\"* gave|strong=\"H3205\"* birth|strong=\"H3205\"* to|strong=\"H1961\"* Jabal|strong=\"H2989\"*, who|strong=\"H1931\"* was|strong=\"H1961\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3427\"* those|strong=\"H1931\"* who|strong=\"H1931\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* tents and|strong=\"H3427\"* have|strong=\"H1961\"* livestock|strong=\"H4735\"*." + }, + { + "verseNum": 21, + "text": "His|strong=\"H3605\"* brother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Jubal|strong=\"H3106\"*, who|strong=\"H3605\"* was|strong=\"H8034\"* the|strong=\"H3605\"* father of|strong=\"H8034\"* all|strong=\"H3605\"* who|strong=\"H3605\"* handle|strong=\"H8610\"* the|strong=\"H3605\"* harp|strong=\"H3658\"* and|strong=\"H3658\"* pipe|strong=\"H5748\"*." + }, + { + "verseNum": 22, + "text": "Zillah|strong=\"H6741\"* also|strong=\"H1571\"* gave|strong=\"H3205\"* birth|strong=\"H3205\"* to|strong=\"H3205\"* Tubal Cain, the|strong=\"H3605\"* forger|strong=\"H3913\"* of|strong=\"H3205\"* every|strong=\"H3605\"* cutting instrument of|strong=\"H3205\"* bronze|strong=\"H5178\"* and|strong=\"H5178\"* iron|strong=\"H1270\"*. Tubal Cain’s sister was|strong=\"H1931\"* Naamah|strong=\"H5279\"*." + }, + { + "verseNum": 23, + "text": "Lamech|strong=\"H3929\"* said|strong=\"H8085\"* to|strong=\"H8085\"* his|strong=\"H8085\"* wives," + }, + { + "verseNum": 24, + "text": "If|strong=\"H3588\"* Cain|strong=\"H7014\"* will|strong=\"H3588\"* be|strong=\"H3588\"* avenged|strong=\"H5358\"* seven|strong=\"H7651\"* times|strong=\"H7651\"*," + }, + { + "verseNum": 25, + "text": "Adam knew|strong=\"H3045\"* his|strong=\"H7121\"* wife again|strong=\"H5750\"*. She|strong=\"H3588\"* gave|strong=\"H3205\"* birth|strong=\"H3205\"* to|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Seth|strong=\"H8352\"*, saying, “for|strong=\"H3588\"* God has|strong=\"H3588\"* given|strong=\"H3205\"* me|strong=\"H7121\"* another|strong=\"H5750\"* child|strong=\"H1121\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* Abel|strong=\"H1893\"*, for|strong=\"H3588\"* Cain|strong=\"H7014\"* killed|strong=\"H2026\"* him|strong=\"H3205\"*.”" + }, + { + "verseNum": 26, + "text": "A|strong=\"H3068\"* son|strong=\"H1121\"* was|strong=\"H3068\"* also|strong=\"H1571\"* born|strong=\"H3205\"* to|strong=\"H3068\"* Seth|strong=\"H8352\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Enosh. At|strong=\"H3068\"* that|strong=\"H1931\"* time men|strong=\"H1121\"* began|strong=\"H2490\"* to|strong=\"H3068\"* call|strong=\"H7121\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H6213\"* book|strong=\"H5612\"* of|strong=\"H3117\"* the|strong=\"H6213\"* generations|strong=\"H8435\"* of|strong=\"H3117\"* Adam. In|strong=\"H6213\"* the|strong=\"H6213\"* day|strong=\"H3117\"* that|strong=\"H3117\"* God created|strong=\"H1254\"* man|strong=\"H2088\"*, he|strong=\"H3117\"* made|strong=\"H6213\"* him|strong=\"H6213\"* in|strong=\"H6213\"* God’s likeness|strong=\"H1823\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3117\"* created|strong=\"H1254\"* them|strong=\"H7121\"* male|strong=\"H2145\"* and|strong=\"H3117\"* female|strong=\"H5347\"*, and|strong=\"H3117\"* blessed|strong=\"H1288\"* them|strong=\"H7121\"*. On|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* they|strong=\"H3117\"* were|strong=\"H3117\"* created|strong=\"H1254\"*, he|strong=\"H3117\"* named|strong=\"H7121\"* them|strong=\"H7121\"* Adam.+ 5:2 “Adam” and “Man” are spelled with the exact same consonants in Hebrew, so this can be correctly translated either way.*" + }, + { + "verseNum": 3, + "text": "Adam lived|strong=\"H2421\"* one|strong=\"H2421\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* a|strong=\"H3068\"* son|strong=\"H3205\"* in|strong=\"H8141\"* his|strong=\"H7121\"* own likeness|strong=\"H1823\"*, after|strong=\"H7121\"* his|strong=\"H7121\"* image|strong=\"H6754\"*, and|strong=\"H3967\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Seth|strong=\"H8352\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3205\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Adam after|strong=\"H1961\"* he|strong=\"H3117\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Seth|strong=\"H8352\"* were|strong=\"H1961\"* eight|strong=\"H8083\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"*, and|strong=\"H3967\"* he|strong=\"H3117\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* other|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 5, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* that|strong=\"H3605\"* Adam lived|strong=\"H2425\"* were|strong=\"H1961\"* nine|strong=\"H8672\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"*, then|strong=\"H1961\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 6, + "text": "Seth|strong=\"H8352\"* lived|strong=\"H2421\"* one|strong=\"H2421\"* hundred|strong=\"H3967\"* five|strong=\"H2568\"* years|strong=\"H8141\"*, then became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Enosh." + }, + { + "verseNum": 7, + "text": "Seth|strong=\"H8352\"* lived|strong=\"H2421\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Enosh eight|strong=\"H8083\"* hundred|strong=\"H3967\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* other|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 8, + "text": "All|strong=\"H3605\"* of|strong=\"H3117\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Seth|strong=\"H8352\"* were|strong=\"H1961\"* nine|strong=\"H8672\"* hundred|strong=\"H3967\"* twelve|strong=\"H8147\"* years|strong=\"H8141\"*, then|strong=\"H1961\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 9, + "text": "Enosh lived|strong=\"H2421\"* ninety|strong=\"H8673\"* years|strong=\"H8141\"*, and|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Kenan|strong=\"H7018\"*." + }, + { + "verseNum": 10, + "text": "Enosh lived|strong=\"H2421\"* after|strong=\"H8141\"* he|strong=\"H2568\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Kenan|strong=\"H7018\"* eight|strong=\"H8083\"* hundred|strong=\"H3967\"* fifteen|strong=\"H2568\"* years|strong=\"H8141\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* other|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 11, + "text": "All|strong=\"H3605\"* of|strong=\"H3117\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Enosh were|strong=\"H1961\"* nine|strong=\"H8672\"* hundred|strong=\"H3967\"* five|strong=\"H2568\"* years|strong=\"H8141\"*, then|strong=\"H1961\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 12, + "text": "Kenan|strong=\"H7018\"* lived|strong=\"H2421\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"*, then became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Mahalalel|strong=\"H4111\"*." + }, + { + "verseNum": 13, + "text": "Kenan|strong=\"H7018\"* lived|strong=\"H2421\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Mahalalel|strong=\"H4111\"* eight|strong=\"H8083\"* hundred|strong=\"H3967\"* forty years|strong=\"H8141\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* other|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*" + }, + { + "verseNum": 14, + "text": "and|strong=\"H3967\"* all|strong=\"H3605\"* of|strong=\"H3117\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Kenan|strong=\"H7018\"* were|strong=\"H1961\"* nine|strong=\"H8672\"* hundred|strong=\"H3967\"* ten|strong=\"H6235\"* years|strong=\"H8141\"*, then|strong=\"H1961\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 15, + "text": "Mahalalel|strong=\"H4111\"* lived|strong=\"H2421\"* sixty-five|strong=\"H8346\"* years|strong=\"H8141\"*, then became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Jared|strong=\"H3382\"*." + }, + { + "verseNum": 16, + "text": "Mahalalel|strong=\"H4111\"* lived|strong=\"H2421\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Jared|strong=\"H3382\"* eight|strong=\"H8083\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* other|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 17, + "text": "All|strong=\"H3605\"* of|strong=\"H3117\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Mahalalel|strong=\"H4111\"* were|strong=\"H1961\"* eight|strong=\"H8083\"* hundred|strong=\"H3967\"* ninety-five|strong=\"H8673\"* years|strong=\"H8141\"*, then|strong=\"H1961\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 18, + "text": "Jared|strong=\"H3382\"* lived|strong=\"H2421\"* one|strong=\"H2421\"* hundred|strong=\"H3967\"* sixty-two|strong=\"H8346\"* years|strong=\"H8141\"*, then became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Enoch|strong=\"H2585\"*." + }, + { + "verseNum": 19, + "text": "Jared|strong=\"H3382\"* lived|strong=\"H2421\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Enoch|strong=\"H2585\"* eight|strong=\"H8083\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* other|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 20, + "text": "All|strong=\"H3605\"* of|strong=\"H3117\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Jared|strong=\"H3382\"* were|strong=\"H1961\"* nine|strong=\"H8672\"* hundred|strong=\"H3967\"* sixty-two|strong=\"H8346\"* years|strong=\"H8141\"*, then|strong=\"H1961\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 21, + "text": "Enoch|strong=\"H2585\"* lived|strong=\"H2421\"* sixty-five|strong=\"H8346\"* years|strong=\"H8141\"*, then became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Methuselah|strong=\"H4968\"*." + }, + { + "verseNum": 22, + "text": "After|strong=\"H1980\"* Methuselah|strong=\"H4968\"*’s birth|strong=\"H3205\"*, Enoch|strong=\"H2585\"* walked|strong=\"H1980\"* with|strong=\"H1980\"* God for|strong=\"H1121\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* more|strong=\"H1980\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 23, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Enoch|strong=\"H2585\"* were|strong=\"H1961\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* sixty-five|strong=\"H8346\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 24, + "text": "Enoch|strong=\"H2585\"* walked|strong=\"H1980\"* with|strong=\"H1980\"* God, and|strong=\"H1980\"* he|strong=\"H3588\"* was|strong=\"H2585\"* not|strong=\"H3588\"* found, for|strong=\"H3588\"* God took|strong=\"H3947\"* him|strong=\"H3947\"*." + }, + { + "verseNum": 25, + "text": "Methuselah|strong=\"H4968\"* lived|strong=\"H2421\"* one|strong=\"H2421\"* hundred|strong=\"H3967\"* eighty-seven|strong=\"H8084\"* years|strong=\"H8141\"*, then became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Lamech|strong=\"H3929\"*." + }, + { + "verseNum": 26, + "text": "Methuselah|strong=\"H4968\"* lived|strong=\"H2421\"* after|strong=\"H8141\"* he|strong=\"H8147\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Lamech|strong=\"H3929\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* eighty-two|strong=\"H8084\"* years|strong=\"H8141\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* other|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 27, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Methuselah|strong=\"H4968\"* were|strong=\"H1961\"* nine|strong=\"H8672\"* hundred|strong=\"H3967\"* sixty-nine|strong=\"H8346\"* years|strong=\"H8141\"*, then|strong=\"H1961\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 28, + "text": "Lamech|strong=\"H3929\"* lived|strong=\"H2421\"* one|strong=\"H2421\"* hundred|strong=\"H3967\"* eighty-two|strong=\"H8084\"* years|strong=\"H8141\"*, then|strong=\"H1121\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* a|strong=\"H3068\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 29, + "text": "He|strong=\"H3068\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Noah|strong=\"H5146\"*, saying, “This|strong=\"H2088\"* one|strong=\"H2088\"* will|strong=\"H3068\"* comfort|strong=\"H5162\"* us|strong=\"H3027\"* in|strong=\"H3068\"* our|strong=\"H3068\"* work|strong=\"H4639\"* and|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* toil|strong=\"H6093\"* of|strong=\"H3068\"* our|strong=\"H3068\"* hands|strong=\"H3027\"*, caused by|strong=\"H3027\"* the|strong=\"H3068\"* ground which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* cursed.”" + }, + { + "verseNum": 30, + "text": "Lamech|strong=\"H3929\"* lived|strong=\"H2421\"* after|strong=\"H8141\"* he|strong=\"H2568\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Noah|strong=\"H5146\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* ninety-five|strong=\"H8673\"* years|strong=\"H8141\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* other|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 31, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Lamech|strong=\"H3929\"* were|strong=\"H1961\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* seventy-seven|strong=\"H7657\"* years|strong=\"H8141\"*, then|strong=\"H1961\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 32, + "text": "Noah|strong=\"H5146\"* was|strong=\"H1961\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, then|strong=\"H1961\"* Noah|strong=\"H5146\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Shem|strong=\"H8035\"*, Ham|strong=\"H2526\"*, and|strong=\"H3967\"* Japheth|strong=\"H3315\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* men|strong=\"H2490\"* began|strong=\"H2490\"* to|strong=\"H1961\"* multiply|strong=\"H7231\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H1323\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*, and|strong=\"H6440\"* daughters|strong=\"H1323\"* were|strong=\"H1961\"* born|strong=\"H3205\"* to|strong=\"H1961\"* them|strong=\"H5921\"*," + }, + { + "verseNum": 2, + "text": "God’s sons|strong=\"H1121\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* men|strong=\"H1121\"*’s daughters|strong=\"H1323\"* were|strong=\"H1121\"* beautiful|strong=\"H2896\"*, and|strong=\"H1121\"* they|strong=\"H3588\"* took|strong=\"H3947\"* any|strong=\"H3605\"* that|strong=\"H3588\"* they|strong=\"H3588\"* wanted for|strong=\"H3588\"* themselves|strong=\"H2896\"* as|strong=\"H3588\"* wives." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* said, “My|strong=\"H3068\"* Spirit|strong=\"H7307\"* will|strong=\"H3068\"* not|strong=\"H3808\"* strive|strong=\"H1777\"* with|strong=\"H3068\"* man|strong=\"H1320\"* forever|strong=\"H5769\"*, because|strong=\"H3117\"* he|strong=\"H1931\"* also|strong=\"H1571\"* is|strong=\"H3068\"* flesh|strong=\"H1320\"*; so|strong=\"H1961\"* his|strong=\"H3068\"* days|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H1961\"* one|strong=\"H3808\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"*.”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H3205\"* Nephilim|strong=\"H5303\"*+ 6:4 or, giants* were|strong=\"H1961\"* in|strong=\"H3117\"* the|strong=\"H3205\"* earth in|strong=\"H3117\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, and|strong=\"H1121\"* also|strong=\"H1571\"* after|strong=\"H1961\"* that|strong=\"H3117\"*, when|strong=\"H1961\"* God’s sons|strong=\"H1121\"* came|strong=\"H1961\"* in|strong=\"H3117\"* to|strong=\"H1961\"* men|strong=\"H1368\"*’s daughters|strong=\"H1323\"* and|strong=\"H1121\"* had|strong=\"H1961\"* children|strong=\"H1121\"* with|strong=\"H3117\"* them|strong=\"H1992\"*. Those|strong=\"H1992\"* were|strong=\"H1961\"* the|strong=\"H3205\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* who|strong=\"H1121\"* were|strong=\"H1961\"* of|strong=\"H1121\"* old|strong=\"H1121\"*, men|strong=\"H1368\"* of|strong=\"H1121\"* renown|strong=\"H8034\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H3605\"* wickedness|strong=\"H7451\"* of|strong=\"H3068\"* man|strong=\"H7451\"* was|strong=\"H3068\"* great|strong=\"H7227\"* in|strong=\"H3068\"* the|strong=\"H3605\"* earth, and|strong=\"H3068\"* that|strong=\"H3588\"* every|strong=\"H3605\"* imagination|strong=\"H3336\"* of|strong=\"H3068\"* the|strong=\"H3605\"* thoughts|strong=\"H4284\"* of|strong=\"H3068\"* man|strong=\"H7451\"*’s heart|strong=\"H3820\"* was|strong=\"H3068\"* continually|strong=\"H3605\"* only|strong=\"H7535\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* sorry|strong=\"H5162\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3068\"* made|strong=\"H6213\"* man|strong=\"H3820\"* on|strong=\"H3068\"* the|strong=\"H3588\"* earth, and|strong=\"H3068\"* it|strong=\"H3588\"* grieved|strong=\"H6087\"* him|strong=\"H6213\"* in|strong=\"H3068\"* his|strong=\"H3068\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* said, “I|strong=\"H3588\"* will|strong=\"H3068\"* destroy|strong=\"H4229\"* man|strong=\"H6440\"* whom|strong=\"H6440\"* I|strong=\"H3588\"* have|strong=\"H3068\"* created|strong=\"H1254\"* from|strong=\"H6440\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*—man|strong=\"H6440\"*, along|strong=\"H5921\"* with|strong=\"H3068\"* animals, creeping|strong=\"H7431\"* things|strong=\"H7431\"*, and|strong=\"H3068\"* birds|strong=\"H5775\"* of|strong=\"H3068\"* the|strong=\"H6440\"* sky|strong=\"H8064\"*—for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* sorry|strong=\"H5162\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* made|strong=\"H6213\"* them|strong=\"H5921\"*.”" + }, + { + "verseNum": 8, + "text": "But|strong=\"H3068\"* Noah|strong=\"H5146\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*." + }, + { + "verseNum": 9, + "text": "This|strong=\"H1961\"* is|strong=\"H6662\"* the|strong=\"H1961\"* history|strong=\"H8435\"* of|strong=\"H8435\"* the|strong=\"H1961\"* generations|strong=\"H1755\"* of|strong=\"H8435\"* Noah|strong=\"H5146\"*: Noah|strong=\"H5146\"* was|strong=\"H1961\"* a|strong=\"H3068\"* righteous|strong=\"H6662\"* man|strong=\"H6662\"*, blameless|strong=\"H8549\"* among|strong=\"H1755\"* the|strong=\"H1961\"* people of|strong=\"H8435\"* his|strong=\"H1961\"* time|strong=\"H1755\"*. Noah|strong=\"H5146\"* walked|strong=\"H1980\"* with|strong=\"H1980\"* God." + }, + { + "verseNum": 10, + "text": "Noah|strong=\"H5146\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* three|strong=\"H7969\"* sons|strong=\"H1121\"*: Shem|strong=\"H8035\"*, Ham|strong=\"H2526\"*, and|strong=\"H1121\"* Japheth|strong=\"H3315\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H6440\"* earth was|strong=\"H6440\"* corrupt|strong=\"H7843\"* before|strong=\"H6440\"* God, and|strong=\"H6440\"* the|strong=\"H6440\"* earth was|strong=\"H6440\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* violence|strong=\"H2555\"*." + }, + { + "verseNum": 12, + "text": "God saw|strong=\"H7200\"* the|strong=\"H3605\"* earth, and|strong=\"H1870\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H5921\"* was|strong=\"H1320\"* corrupt|strong=\"H7843\"*, for|strong=\"H3588\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"* had|strong=\"H3588\"* corrupted|strong=\"H7843\"* their|strong=\"H3605\"* way|strong=\"H1870\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 13, + "text": "God said to|strong=\"H6440\"* Noah|strong=\"H5146\"*, “I|strong=\"H3588\"* will|strong=\"H1320\"* bring an|strong=\"H3588\"* end|strong=\"H7093\"* to|strong=\"H6440\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* earth is|strong=\"H3605\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* violence|strong=\"H2555\"* through|strong=\"H3605\"* them|strong=\"H6440\"*. Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H1320\"* destroy|strong=\"H7843\"* them|strong=\"H6440\"* and|strong=\"H6440\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 14, + "text": "Make|strong=\"H6213\"* a|strong=\"H3068\"* ship|strong=\"H8392\"* of|strong=\"H1004\"* gopher|strong=\"H1613\"* wood|strong=\"H6086\"*. You|strong=\"H6213\"* shall|strong=\"H1004\"* make|strong=\"H6213\"* rooms|strong=\"H7064\"* in|strong=\"H6213\"* the|strong=\"H6213\"* ship|strong=\"H8392\"*, and|strong=\"H1004\"* shall|strong=\"H1004\"* seal it|strong=\"H6213\"* inside|strong=\"H1004\"* and|strong=\"H1004\"* outside|strong=\"H2351\"* with|strong=\"H1004\"* pitch|strong=\"H3724\"*." + }, + { + "verseNum": 15, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* how|strong=\"H6213\"* you|strong=\"H6213\"* shall|strong=\"H2088\"* make|strong=\"H6213\"* it|strong=\"H6213\"*. The|strong=\"H6213\"* length|strong=\"H6967\"* of|strong=\"H7341\"* the|strong=\"H6213\"* ship|strong=\"H8392\"* shall|strong=\"H2088\"* be|strong=\"H7970\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* cubits,+ 6:15 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* its|strong=\"H6213\"* width|strong=\"H7341\"* fifty|strong=\"H2572\"* cubits, and|strong=\"H3967\"* its|strong=\"H6213\"* height|strong=\"H6967\"* thirty|strong=\"H7970\"* cubits." + }, + { + "verseNum": 16, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* roof in|strong=\"H6213\"* the|strong=\"H6213\"* ship|strong=\"H8392\"*, and|strong=\"H6213\"* you|strong=\"H6213\"* shall|strong=\"H6213\"* finish|strong=\"H3615\"* it|strong=\"H7760\"* to|strong=\"H6213\"* a|strong=\"H3068\"* cubit upward|strong=\"H4605\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* set|strong=\"H7760\"* the|strong=\"H6213\"* door|strong=\"H6607\"* of|strong=\"H3615\"* the|strong=\"H6213\"* ship|strong=\"H8392\"* in|strong=\"H6213\"* its|strong=\"H6213\"* side|strong=\"H6654\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* it|strong=\"H7760\"* with|strong=\"H6213\"* lower|strong=\"H8482\"*, second|strong=\"H8145\"*, and|strong=\"H6213\"* third|strong=\"H7992\"* levels." + }, + { + "verseNum": 17, + "text": "I|strong=\"H2009\"*, even|strong=\"H5921\"* I|strong=\"H2009\"*, will|strong=\"H8064\"* bring the|strong=\"H3605\"* flood|strong=\"H3999\"* of|strong=\"H7307\"* waters|strong=\"H4325\"* on|strong=\"H5921\"* this|strong=\"H7843\"* earth|strong=\"H8064\"*, to|strong=\"H5921\"* destroy|strong=\"H7843\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"* having the|strong=\"H3605\"* breath|strong=\"H7307\"* of|strong=\"H7307\"* life|strong=\"H2416\"* from|strong=\"H5921\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*. Everything|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H2009\"* in|strong=\"H5921\"* the|strong=\"H3605\"* earth|strong=\"H8064\"* will|strong=\"H8064\"* die|strong=\"H1478\"*." + }, + { + "verseNum": 18, + "text": "But I|strong=\"H6965\"* will|strong=\"H1121\"* establish|strong=\"H6965\"* my|strong=\"H6965\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* you|strong=\"H6965\"*. You|strong=\"H6965\"* shall|strong=\"H1121\"* come|strong=\"H6965\"* into the|strong=\"H6965\"* ship|strong=\"H8392\"*, you|strong=\"H6965\"*, your|strong=\"H6965\"* sons|strong=\"H1121\"*, your|strong=\"H6965\"* wife, and|strong=\"H1121\"* your|strong=\"H6965\"* sons|strong=\"H1121\"*’ wives with|strong=\"H1285\"* you|strong=\"H6965\"*." + }, + { + "verseNum": 19, + "text": "Of|strong=\"H3605\"* every|strong=\"H3605\"* living|strong=\"H2416\"* thing|strong=\"H2416\"* of|strong=\"H3605\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*, you|strong=\"H3605\"* shall|strong=\"H1320\"* bring|strong=\"H1961\"* two|strong=\"H8147\"* of|strong=\"H3605\"* every|strong=\"H3605\"* sort into|strong=\"H1961\"* the|strong=\"H3605\"* ship|strong=\"H8392\"*, to|strong=\"H1961\"* keep|strong=\"H2421\"* them|strong=\"H8147\"* alive|strong=\"H2416\"* with|strong=\"H1320\"* you|strong=\"H3605\"*. They|strong=\"H3605\"* shall|strong=\"H1320\"* be|strong=\"H1961\"* male|strong=\"H2145\"* and|strong=\"H8147\"* female|strong=\"H5347\"*." + }, + { + "verseNum": 20, + "text": "Of|strong=\"H4480\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* after|strong=\"H4480\"* their|strong=\"H3605\"* kind|strong=\"H4327\"*, of|strong=\"H4480\"* the|strong=\"H3605\"* livestock after|strong=\"H4480\"* their|strong=\"H3605\"* kind|strong=\"H4327\"*, of|strong=\"H4480\"* every|strong=\"H3605\"* creeping|strong=\"H7431\"* thing|strong=\"H7431\"* of|strong=\"H4480\"* the|strong=\"H3605\"* ground after|strong=\"H4480\"* its|strong=\"H3605\"* kind|strong=\"H4327\"*, two|strong=\"H8147\"* of|strong=\"H4480\"* every|strong=\"H3605\"* sort will|strong=\"H5775\"* come|strong=\"H2421\"* to|strong=\"H4480\"* you|strong=\"H3605\"*, to|strong=\"H4480\"* keep|strong=\"H2421\"* them|strong=\"H8147\"* alive|strong=\"H2421\"*." + }, + { + "verseNum": 21, + "text": "Take|strong=\"H3947\"* with|strong=\"H3605\"* you|strong=\"H3605\"* some|strong=\"H3605\"* of|strong=\"H3605\"* all|strong=\"H3605\"* food|strong=\"H3978\"* that|strong=\"H3605\"* is|strong=\"H3605\"* eaten|strong=\"H3978\"*, and|strong=\"H3947\"* gather it|strong=\"H1961\"* to|strong=\"H1961\"* yourself; and|strong=\"H3947\"* it|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H3605\"* food|strong=\"H3978\"* for|strong=\"H3605\"* you|strong=\"H3605\"*, and|strong=\"H3947\"* for|strong=\"H3605\"* them|strong=\"H3947\"*.”" + }, + { + "verseNum": 22, + "text": "Thus|strong=\"H3651\"* Noah|strong=\"H5146\"* did|strong=\"H6213\"*. He|strong=\"H3651\"* did|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* God commanded|strong=\"H6680\"* him|strong=\"H6213\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Noah|strong=\"H5146\"*, “Come with|strong=\"H1004\"* all|strong=\"H3605\"* of|strong=\"H1004\"* your|strong=\"H3068\"* household|strong=\"H1004\"* into|strong=\"H7200\"* the|strong=\"H3605\"* ship|strong=\"H8392\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* your|strong=\"H3068\"* righteousness before|strong=\"H6440\"* me|strong=\"H6440\"* in|strong=\"H3068\"* this|strong=\"H2088\"* generation|strong=\"H1755\"*." + }, + { + "verseNum": 2, + "text": "You|strong=\"H3605\"* shall|strong=\"H3808\"* take|strong=\"H3947\"* seven|strong=\"H7651\"* pairs|strong=\"H2889\"* of|strong=\"H4480\"* every|strong=\"H3605\"* clean|strong=\"H2889\"* animal with|strong=\"H3605\"* you|strong=\"H3605\"*, the|strong=\"H3605\"* male and|strong=\"H8147\"* his|strong=\"H3605\"* female|strong=\"H8147\"*. Of|strong=\"H4480\"* the|strong=\"H3605\"* animals that|strong=\"H3605\"* are|strong=\"H8147\"* not|strong=\"H3808\"* clean|strong=\"H2889\"*, take|strong=\"H3947\"* two|strong=\"H8147\"*, the|strong=\"H3605\"* male and|strong=\"H8147\"* his|strong=\"H3605\"* female|strong=\"H8147\"*." + }, + { + "verseNum": 3, + "text": "Also|strong=\"H1571\"* of|strong=\"H6440\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H6440\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, seven|strong=\"H7651\"* and|strong=\"H8064\"* seven|strong=\"H7651\"*, male|strong=\"H2145\"* and|strong=\"H8064\"* female|strong=\"H5347\"*, to|strong=\"H5921\"* keep|strong=\"H2421\"* seed|strong=\"H2233\"* alive|strong=\"H2421\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 4, + "text": "In|strong=\"H5921\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, I|strong=\"H3588\"* will|strong=\"H3117\"* cause|strong=\"H6213\"* it|strong=\"H5921\"* to|strong=\"H6213\"* rain|strong=\"H4305\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth for|strong=\"H3588\"* forty days|strong=\"H3117\"* and|strong=\"H3117\"* forty nights|strong=\"H3915\"*. I|strong=\"H3588\"* will|strong=\"H3117\"* destroy|strong=\"H4229\"* every|strong=\"H3605\"* living|strong=\"H3351\"* thing|strong=\"H3351\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3117\"* made|strong=\"H6213\"* from|strong=\"H6440\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H3117\"* the|strong=\"H3605\"* ground|strong=\"H6440\"*.”" + }, + { + "verseNum": 5, + "text": "Noah|strong=\"H5146\"* did|strong=\"H6213\"* everything|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H6213\"*." + }, + { + "verseNum": 6, + "text": "Noah|strong=\"H5146\"* was|strong=\"H1961\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* the|strong=\"H5921\"* flood|strong=\"H3999\"* of|strong=\"H1121\"* waters|strong=\"H4325\"* came|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 7, + "text": "Noah|strong=\"H5146\"* went|strong=\"H1121\"* into|strong=\"H4325\"* the|strong=\"H6440\"* ship|strong=\"H8392\"* with|strong=\"H6440\"* his|strong=\"H6440\"* sons|strong=\"H1121\"*, his|strong=\"H6440\"* wife, and|strong=\"H1121\"* his|strong=\"H6440\"* sons|strong=\"H1121\"*’ wives, because|strong=\"H6440\"* of|strong=\"H1121\"* the|strong=\"H6440\"* floodwaters|strong=\"H3999\"*." + }, + { + "verseNum": 8, + "text": "Clean|strong=\"H2889\"* animals, unclean animals, birds|strong=\"H5775\"*, and|strong=\"H5775\"* everything|strong=\"H3605\"* that|strong=\"H3605\"* creeps|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* ground" + }, + { + "verseNum": 9, + "text": "went|strong=\"H8147\"* by|strong=\"H2145\"* pairs|strong=\"H8147\"* to|strong=\"H6680\"* Noah|strong=\"H5146\"* into the|strong=\"H6680\"* ship|strong=\"H8392\"*, male|strong=\"H2145\"* and|strong=\"H8147\"* female|strong=\"H5347\"*, as|strong=\"H6680\"* God commanded|strong=\"H6680\"* Noah|strong=\"H5146\"*." + }, + { + "verseNum": 10, + "text": "After|strong=\"H5921\"* the|strong=\"H5921\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, the|strong=\"H5921\"* floodwaters|strong=\"H3999\"* came|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 11, + "text": "In|strong=\"H8141\"* the|strong=\"H3605\"* six|strong=\"H8337\"* hundredth|strong=\"H3967\"* year|strong=\"H8141\"* of|strong=\"H3117\"* Noah|strong=\"H5146\"*’s life|strong=\"H2416\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* second|strong=\"H8145\"* month|strong=\"H2320\"*, on|strong=\"H3117\"* the|strong=\"H3605\"* seventeenth|strong=\"H7651\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* month|strong=\"H2320\"*, on|strong=\"H3117\"* that|strong=\"H3605\"* day|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fountains|strong=\"H4599\"* of|strong=\"H3117\"* the|strong=\"H3605\"* great|strong=\"H7227\"* deep|strong=\"H8415\"* burst|strong=\"H1234\"* open|strong=\"H6605\"*, and|strong=\"H3967\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*’s windows opened|strong=\"H6605\"*." + }, + { + "verseNum": 12, + "text": "It|strong=\"H5921\"* rained on|strong=\"H5921\"* the|strong=\"H5921\"* earth forty days|strong=\"H3117\"* and|strong=\"H3117\"* forty nights|strong=\"H3915\"*." + }, + { + "verseNum": 13, + "text": "In|strong=\"H3117\"* the|strong=\"H3117\"* same|strong=\"H6106\"* day|strong=\"H3117\"* Noah|strong=\"H5146\"*, and|strong=\"H1121\"* Shem|strong=\"H8035\"*, Ham|strong=\"H2526\"*, and|strong=\"H1121\"* Japheth|strong=\"H3315\"*—the|strong=\"H3117\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Noah|strong=\"H5146\"*—and|strong=\"H1121\"* Noah|strong=\"H5146\"*’s wife and|strong=\"H1121\"* the|strong=\"H3117\"* three|strong=\"H7969\"* wives of|strong=\"H1121\"* his|strong=\"H3117\"* sons|strong=\"H1121\"* with|strong=\"H3117\"* them|strong=\"H1121\"*, entered into|strong=\"H2088\"* the|strong=\"H3117\"* ship|strong=\"H8392\"*—" + }, + { + "verseNum": 14, + "text": "they|strong=\"H1992\"*, and|strong=\"H5775\"* every|strong=\"H3605\"* animal|strong=\"H2416\"* after|strong=\"H5921\"* its|strong=\"H3605\"* kind|strong=\"H4327\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* livestock after|strong=\"H5921\"* their|strong=\"H3605\"* kind|strong=\"H4327\"*, every|strong=\"H3605\"* creeping|strong=\"H7431\"* thing|strong=\"H7431\"* that|strong=\"H3605\"* creeps|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth after|strong=\"H5921\"* its|strong=\"H3605\"* kind|strong=\"H4327\"*, and|strong=\"H5775\"* every|strong=\"H3605\"* bird|strong=\"H6833\"* after|strong=\"H5921\"* its|strong=\"H3605\"* kind|strong=\"H4327\"*, every|strong=\"H3605\"* bird|strong=\"H6833\"* of|strong=\"H5921\"* every|strong=\"H3605\"* sort|strong=\"H3671\"*." + }, + { + "verseNum": 15, + "text": "Pairs|strong=\"H8147\"* from|strong=\"H7307\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"* with|strong=\"H1320\"* the|strong=\"H3605\"* breath|strong=\"H7307\"* of|strong=\"H7307\"* life|strong=\"H2416\"* in|strong=\"H1320\"* them|strong=\"H8147\"* went|strong=\"H8147\"* into|strong=\"H2416\"* the|strong=\"H3605\"* ship|strong=\"H8392\"* to|strong=\"H7307\"* Noah|strong=\"H5146\"*." + }, + { + "verseNum": 16, + "text": "Those|strong=\"H3605\"* who|strong=\"H3605\"* went|strong=\"H3068\"* in|strong=\"H3068\"*, went|strong=\"H3068\"* in|strong=\"H3068\"* male|strong=\"H2145\"* and|strong=\"H3068\"* female|strong=\"H5347\"* of|strong=\"H3068\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*, as|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H6680\"*; then|strong=\"H6680\"* Yahweh|strong=\"H3068\"* shut|strong=\"H5462\"* him|strong=\"H6680\"* in|strong=\"H3068\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H5921\"* flood|strong=\"H3999\"* was|strong=\"H1961\"* forty days|strong=\"H3117\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth. The|strong=\"H5921\"* waters|strong=\"H4325\"* increased|strong=\"H7235\"*, and|strong=\"H3117\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H5921\"* ship|strong=\"H8392\"*, and|strong=\"H3117\"* it|strong=\"H5921\"* was|strong=\"H1961\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* above|strong=\"H5921\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 18, + "text": "The|strong=\"H6440\"* waters|strong=\"H4325\"* rose|strong=\"H1396\"*, and|strong=\"H3212\"* increased|strong=\"H7235\"* greatly|strong=\"H3966\"* on|strong=\"H5921\"* the|strong=\"H6440\"* earth; and|strong=\"H3212\"* the|strong=\"H6440\"* ship|strong=\"H8392\"* floated|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H3605\"* waters|strong=\"H4325\"* rose|strong=\"H1396\"* very|strong=\"H3966\"* high|strong=\"H1364\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* high|strong=\"H1364\"* mountains|strong=\"H2022\"* that|strong=\"H3605\"* were|strong=\"H4325\"* under|strong=\"H8478\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* sky|strong=\"H8064\"* were|strong=\"H4325\"* covered|strong=\"H3680\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3680\"* waters|strong=\"H4325\"* rose|strong=\"H1396\"* fifteen|strong=\"H2568\"* cubits|strong=\"H2568\"*+ 7:20 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* higher|strong=\"H4605\"*, and|strong=\"H2568\"* the|strong=\"H3680\"* mountains|strong=\"H2022\"* were|strong=\"H4325\"* covered|strong=\"H3680\"*." + }, + { + "verseNum": 21, + "text": "All|strong=\"H3605\"* flesh|strong=\"H1320\"* died|strong=\"H1478\"* that|strong=\"H3605\"* moved|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth, including|strong=\"H3605\"* birds|strong=\"H5775\"*, livestock, animals|strong=\"H2416\"*, every|strong=\"H3605\"* creeping|strong=\"H8318\"* thing|strong=\"H8318\"* that|strong=\"H3605\"* creeps|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth, and|strong=\"H1320\"* every|strong=\"H3605\"* man|strong=\"H3605\"*." + }, + { + "verseNum": 22, + "text": "All|strong=\"H3605\"* on|strong=\"H4191\"* the|strong=\"H3605\"* dry|strong=\"H2724\"* land|strong=\"H2724\"*, in|strong=\"H4191\"* whose|strong=\"H3605\"* nostrils was|strong=\"H7307\"* the|strong=\"H3605\"* breath|strong=\"H7307\"* of|strong=\"H7307\"* the|strong=\"H3605\"* spirit|strong=\"H7307\"* of|strong=\"H7307\"* life|strong=\"H2416\"*, died|strong=\"H4191\"*." + }, + { + "verseNum": 23, + "text": "Every|strong=\"H3605\"* living|strong=\"H3351\"* thing|strong=\"H7431\"* was|strong=\"H5146\"* destroyed|strong=\"H4229\"* that|strong=\"H3605\"* was|strong=\"H5146\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* ground|strong=\"H6440\"*, including|strong=\"H5704\"* man|strong=\"H3605\"*, livestock, creeping|strong=\"H7431\"* things|strong=\"H7431\"*, and|strong=\"H8064\"* birds|strong=\"H5775\"* of|strong=\"H6440\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*. They|strong=\"H5921\"* were|strong=\"H8064\"* destroyed|strong=\"H4229\"* from|strong=\"H4480\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*. Only|strong=\"H5704\"* Noah|strong=\"H5146\"* was|strong=\"H5146\"* left|strong=\"H7604\"*, and|strong=\"H8064\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H8064\"* with|strong=\"H5921\"* him|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H3605\"* ship|strong=\"H8392\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H5921\"* waters|strong=\"H4325\"* flooded the|strong=\"H5921\"* earth one|strong=\"H3967\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* days|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "God remembered|strong=\"H2142\"* Noah|strong=\"H5146\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* animals|strong=\"H2416\"*, and|strong=\"H4325\"* all|strong=\"H3605\"* the|strong=\"H3605\"* livestock that|strong=\"H3605\"* were|strong=\"H4325\"* with|strong=\"H5921\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* ship|strong=\"H8392\"*; and|strong=\"H4325\"* God made|strong=\"H5674\"* a|strong=\"H3068\"* wind|strong=\"H7307\"* to|strong=\"H5921\"* pass|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H3605\"* earth. The|strong=\"H3605\"* waters|strong=\"H4325\"* subsided|strong=\"H7918\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H4480\"* deep|strong=\"H8415\"*’s fountains|strong=\"H4599\"* and|strong=\"H8064\"* the|strong=\"H4480\"* sky|strong=\"H8064\"*’s windows were|strong=\"H8064\"* also|strong=\"H8064\"* stopped|strong=\"H5534\"*, and|strong=\"H8064\"* the|strong=\"H4480\"* rain|strong=\"H1653\"* from|strong=\"H4480\"* the|strong=\"H4480\"* sky|strong=\"H8064\"* was|strong=\"H8064\"* restrained|strong=\"H3607\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* waters|strong=\"H4325\"* continually|strong=\"H3117\"* receded|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H5921\"* earth. After|strong=\"H5921\"* the|strong=\"H5921\"* end|strong=\"H7097\"* of|strong=\"H3117\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* days|strong=\"H3117\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* receded|strong=\"H7725\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H5921\"* ship|strong=\"H8392\"* rested|strong=\"H5117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* seventeenth|strong=\"H7651\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H5921\"* month|strong=\"H2320\"*, on|strong=\"H5921\"* Ararat’s mountains|strong=\"H2022\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H7200\"* waters|strong=\"H4325\"* receded continually|strong=\"H1980\"* until|strong=\"H5704\"* the|strong=\"H7200\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"*. In|strong=\"H1980\"* the|strong=\"H7200\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"*, on|strong=\"H1980\"* the|strong=\"H7200\"* first|strong=\"H7218\"* day|strong=\"H2320\"* of|strong=\"H2022\"* the|strong=\"H7200\"* month|strong=\"H2320\"*, the|strong=\"H7200\"* tops|strong=\"H7218\"* of|strong=\"H2022\"* the|strong=\"H7200\"* mountains|strong=\"H2022\"* were|strong=\"H1961\"* visible|strong=\"H7200\"*." + }, + { + "verseNum": 6, + "text": "At|strong=\"H3117\"* the|strong=\"H6213\"* end|strong=\"H7093\"* of|strong=\"H3117\"* forty days|strong=\"H3117\"*, Noah|strong=\"H5146\"* opened|strong=\"H6605\"* the|strong=\"H6213\"* window|strong=\"H2474\"* of|strong=\"H3117\"* the|strong=\"H6213\"* ship|strong=\"H8392\"* which|strong=\"H3117\"* he|strong=\"H3117\"* had|strong=\"H1961\"* made|strong=\"H6213\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"H7971\"* he|strong=\"H5704\"* sent|strong=\"H7971\"* out|strong=\"H3318\"* a|strong=\"H3068\"* raven|strong=\"H6158\"*. It|strong=\"H5921\"* went|strong=\"H3318\"* back|strong=\"H7725\"* and|strong=\"H7971\"* forth|strong=\"H3318\"*, until|strong=\"H5704\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* were|strong=\"H4325\"* dried|strong=\"H3001\"* up|strong=\"H3001\"* from|strong=\"H7725\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 8, + "text": "He|strong=\"H5921\"* himself|strong=\"H6440\"* sent|strong=\"H7971\"* out|strong=\"H7971\"* a|strong=\"H3068\"* dove|strong=\"H3123\"* to|strong=\"H7971\"* see|strong=\"H7200\"* if|strong=\"H7200\"* the|strong=\"H6440\"* waters|strong=\"H4325\"* were|strong=\"H4325\"* abated|strong=\"H7043\"* from|strong=\"H6440\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*," + }, + { + "verseNum": 9, + "text": "but|strong=\"H3588\"* the|strong=\"H3605\"* dove|strong=\"H3123\"* found|strong=\"H4672\"* no|strong=\"H3808\"* place|strong=\"H3027\"* to|strong=\"H7725\"* rest|strong=\"H4494\"* her|strong=\"H3605\"* foot|strong=\"H7272\"*, and|strong=\"H7971\"* she|strong=\"H3588\"* returned|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H3605\"* ship|strong=\"H8392\"* to|strong=\"H7725\"* him|strong=\"H6440\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* were|strong=\"H4325\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H3027\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth. He|strong=\"H3588\"* put|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, and|strong=\"H7971\"* took|strong=\"H3947\"* her|strong=\"H3605\"*, and|strong=\"H7971\"* brought|strong=\"H7725\"* her|strong=\"H3605\"* to|strong=\"H7725\"* him|strong=\"H6440\"* into|strong=\"H7725\"* the|strong=\"H3605\"* ship|strong=\"H8392\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H3117\"* waited|strong=\"H2342\"* yet|strong=\"H5750\"* another|strong=\"H5750\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*; and|strong=\"H7971\"* again|strong=\"H5750\"* he|strong=\"H3117\"* sent|strong=\"H7971\"* the|strong=\"H4480\"* dove|strong=\"H3123\"* out|strong=\"H7971\"* of|strong=\"H3117\"* the|strong=\"H4480\"* ship|strong=\"H8392\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* dove|strong=\"H3123\"* came|strong=\"H4325\"* back|strong=\"H3045\"* to|strong=\"H5921\"* him|strong=\"H5921\"* at|strong=\"H5921\"* evening|strong=\"H6153\"* and|strong=\"H3045\"*, behold|strong=\"H2009\"*, in|strong=\"H5921\"* her|strong=\"H5921\"* mouth|strong=\"H6310\"* was|strong=\"H4325\"* a|strong=\"H3068\"* freshly|strong=\"H2965\"* plucked|strong=\"H2965\"* olive|strong=\"H2132\"* leaf|strong=\"H5929\"*. So|strong=\"H3588\"* Noah|strong=\"H5146\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* were|strong=\"H4325\"* abated|strong=\"H7043\"* from|strong=\"H5921\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 12, + "text": "He|strong=\"H3117\"* waited|strong=\"H3176\"* yet|strong=\"H5750\"* another|strong=\"H5750\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, and|strong=\"H7971\"* sent|strong=\"H7971\"* out|strong=\"H7971\"* the|strong=\"H3117\"* dove|strong=\"H3123\"*; and|strong=\"H7971\"* she|strong=\"H3808\"* didn’t return|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H7971\"* any|strong=\"H5750\"* more|strong=\"H3254\"*." + }, + { + "verseNum": 13, + "text": "In|strong=\"H8141\"* the|strong=\"H6440\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* first|strong=\"H7223\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H6440\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, the|strong=\"H6440\"* first|strong=\"H7223\"* day|strong=\"H2320\"* of|strong=\"H8141\"* the|strong=\"H6440\"* month|strong=\"H2320\"*, the|strong=\"H6440\"* waters|strong=\"H4325\"* were|strong=\"H1961\"* dried|strong=\"H2717\"* up|strong=\"H7200\"* from|strong=\"H5493\"* the|strong=\"H6440\"* earth. Noah|strong=\"H5146\"* removed|strong=\"H5493\"* the|strong=\"H6440\"* covering|strong=\"H4372\"* of|strong=\"H8141\"* the|strong=\"H6440\"* ship|strong=\"H8392\"*, and|strong=\"H3967\"* looked|strong=\"H7200\"*. He|strong=\"H5921\"* saw|strong=\"H7200\"* that|strong=\"H7200\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H8141\"* the|strong=\"H6440\"* ground|strong=\"H6440\"* was|strong=\"H1961\"* dry|strong=\"H2717\"*." + }, + { + "verseNum": 14, + "text": "In|strong=\"H3117\"* the|strong=\"H3117\"* second|strong=\"H8145\"* month|strong=\"H2320\"*, on|strong=\"H3117\"* the|strong=\"H3117\"* twenty-seventh|strong=\"H6242\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* month|strong=\"H2320\"*, the|strong=\"H3117\"* earth was|strong=\"H3117\"* dry|strong=\"H3001\"*." + }, + { + "verseNum": 15, + "text": "God spoke|strong=\"H1696\"* to|strong=\"H1696\"* Noah|strong=\"H5146\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 16, + "text": "“Go|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H4480\"* ship|strong=\"H8392\"*, you|strong=\"H4480\"*, your|strong=\"H4480\"* wife, your|strong=\"H4480\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* your|strong=\"H4480\"* sons|strong=\"H1121\"*’ wives with|strong=\"H3318\"* you|strong=\"H4480\"*." + }, + { + "verseNum": 17, + "text": "Bring|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H5921\"* you|strong=\"H3605\"* every|strong=\"H3605\"* living|strong=\"H2416\"* thing|strong=\"H7431\"* that|strong=\"H3605\"* is|strong=\"H3605\"* with|strong=\"H5921\"* you|strong=\"H3605\"* of|strong=\"H5921\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*, including|strong=\"H3605\"* birds|strong=\"H5775\"*, livestock, and|strong=\"H3318\"* every|strong=\"H3605\"* creeping|strong=\"H7431\"* thing|strong=\"H7431\"* that|strong=\"H3605\"* creeps|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth, that|strong=\"H3605\"* they|strong=\"H5921\"* may|strong=\"H2416\"* breed|strong=\"H8317\"* abundantly|strong=\"H8317\"* in|strong=\"H5921\"* the|strong=\"H3605\"* earth, and|strong=\"H3318\"* be|strong=\"H1320\"* fruitful|strong=\"H6509\"*, and|strong=\"H3318\"* multiply|strong=\"H7235\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth.”" + }, + { + "verseNum": 18, + "text": "Noah|strong=\"H5146\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, with|strong=\"H3318\"* his|strong=\"H3318\"* sons|strong=\"H1121\"*, his|strong=\"H3318\"* wife, and|strong=\"H1121\"* his|strong=\"H3318\"* sons|strong=\"H1121\"*’ wives with|strong=\"H3318\"* him|strong=\"H3318\"*." + }, + { + "verseNum": 19, + "text": "Every|strong=\"H3605\"* animal|strong=\"H2416\"*, every|strong=\"H3605\"* creeping|strong=\"H7431\"* thing|strong=\"H7431\"*, and|strong=\"H3318\"* every|strong=\"H3605\"* bird|strong=\"H5775\"*, whatever|strong=\"H3605\"* moves|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth, after|strong=\"H4480\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4480\"* the|strong=\"H3605\"* ship|strong=\"H8392\"*." + }, + { + "verseNum": 20, + "text": "Noah|strong=\"H5146\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* took|strong=\"H3947\"* of|strong=\"H3068\"* every|strong=\"H3605\"* clean|strong=\"H2889\"* animal, and|strong=\"H3068\"* of|strong=\"H3068\"* every|strong=\"H3605\"* clean|strong=\"H2889\"* bird|strong=\"H5775\"*, and|strong=\"H3068\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* on|strong=\"H3068\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* smelled|strong=\"H7306\"* the|strong=\"H3605\"* pleasant aroma|strong=\"H7381\"*. Yahweh|strong=\"H3068\"* said in|strong=\"H3068\"* his|strong=\"H3605\"* heart|strong=\"H3820\"*, “I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* again|strong=\"H5750\"* curse|strong=\"H7043\"* the|strong=\"H3605\"* ground any|strong=\"H3605\"* more|strong=\"H3254\"* for|strong=\"H3588\"* man|strong=\"H7451\"*’s sake|strong=\"H5668\"* because|strong=\"H3588\"* the|strong=\"H3605\"* imagination|strong=\"H3336\"* of|strong=\"H3068\"* man|strong=\"H7451\"*’s heart|strong=\"H3820\"* is|strong=\"H3068\"* evil|strong=\"H7451\"* from|strong=\"H3068\"* his|strong=\"H3605\"* youth|strong=\"H5271\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* never|strong=\"H3808\"* again|strong=\"H5750\"* strike|strong=\"H5221\"* every|strong=\"H3605\"* living|strong=\"H2416\"* thing|strong=\"H7043\"*, as|strong=\"H6213\"* I|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 22, + "text": "While|strong=\"H5750\"* the|strong=\"H3605\"* earth remains|strong=\"H5750\"*, seed|strong=\"H2233\"* time|strong=\"H3117\"* and|strong=\"H3117\"* harvest|strong=\"H7105\"*, and|strong=\"H3117\"* cold|strong=\"H7120\"* and|strong=\"H3117\"* heat|strong=\"H2527\"*, and|strong=\"H3117\"* summer|strong=\"H7019\"* and|strong=\"H3117\"* winter|strong=\"H2779\"*, and|strong=\"H3117\"* day|strong=\"H3117\"* and|strong=\"H3117\"* night|strong=\"H3915\"* will|strong=\"H3808\"* not|strong=\"H3808\"* cease|strong=\"H7673\"*.”" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "God blessed|strong=\"H1288\"* Noah|strong=\"H5146\"* and|strong=\"H1121\"* his|strong=\"H1288\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* said to|strong=\"H1121\"* them|strong=\"H1121\"*, “Be|strong=\"H1121\"* fruitful|strong=\"H6509\"*, multiply|strong=\"H7235\"*, and|strong=\"H1121\"* replenish|strong=\"H4390\"* the|strong=\"H1288\"* earth." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* fear|strong=\"H4172\"* of|strong=\"H3027\"* you|strong=\"H5414\"* and|strong=\"H8064\"* the|strong=\"H3605\"* dread|strong=\"H4172\"* of|strong=\"H3027\"* you|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H5921\"* every|strong=\"H3605\"* animal|strong=\"H2416\"* of|strong=\"H3027\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*, and|strong=\"H8064\"* on|strong=\"H5921\"* every|strong=\"H3605\"* bird|strong=\"H5775\"* of|strong=\"H3027\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*. Everything|strong=\"H3605\"* that|strong=\"H3605\"* moves|strong=\"H7430\"* along|strong=\"H5921\"* the|strong=\"H3605\"* ground, and|strong=\"H8064\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fish|strong=\"H1709\"* of|strong=\"H3027\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*, are|strong=\"H3027\"* delivered|strong=\"H5414\"* into|strong=\"H5921\"* your|strong=\"H3605\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 3, + "text": "Every|strong=\"H3605\"* moving|strong=\"H7431\"* thing|strong=\"H7431\"* that|strong=\"H3605\"* lives|strong=\"H2416\"* will|strong=\"H1961\"* be|strong=\"H1961\"* food for|strong=\"H3605\"* you|strong=\"H5414\"*. As|strong=\"H1961\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H3605\"* green|strong=\"H3418\"* herb|strong=\"H6212\"*, I|strong=\"H5414\"* have|strong=\"H1961\"* given|strong=\"H5414\"* everything|strong=\"H3605\"* to|strong=\"H1961\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3808\"* flesh|strong=\"H1320\"* with|strong=\"H5315\"* its|strong=\"H3808\"* life|strong=\"H5315\"*, that|strong=\"H5315\"* is|strong=\"H5315\"*, its|strong=\"H3808\"* blood|strong=\"H1818\"*, you|strong=\"H3808\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* eat." + }, + { + "verseNum": 5, + "text": "I|strong=\"H5315\"* will|strong=\"H5315\"* surely|strong=\"H1875\"* require|strong=\"H1875\"* accounting for|strong=\"H3027\"* your|strong=\"H3605\"* life|strong=\"H5315\"*’s blood|strong=\"H1818\"*. At|strong=\"H5315\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* every|strong=\"H3605\"* animal|strong=\"H2416\"* I|strong=\"H5315\"* will|strong=\"H5315\"* require|strong=\"H1875\"* it|strong=\"H1818\"*. At|strong=\"H5315\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* man|strong=\"H5315\"*, even at|strong=\"H5315\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* every|strong=\"H3605\"* man|strong=\"H5315\"*’s brother, I|strong=\"H5315\"* will|strong=\"H5315\"* require|strong=\"H1875\"* the|strong=\"H3605\"* life|strong=\"H5315\"* of|strong=\"H3027\"* man|strong=\"H5315\"*." + }, + { + "verseNum": 6, + "text": "Whoever sheds|strong=\"H8210\"* man’s blood|strong=\"H1818\"*, his|strong=\"H6213\"* blood|strong=\"H1818\"* will|strong=\"H1818\"* be|strong=\"H1818\"* shed|strong=\"H8210\"* by|strong=\"H6213\"* man, for|strong=\"H3588\"* God made|strong=\"H6213\"* man in|strong=\"H6213\"* his|strong=\"H6213\"* own image|strong=\"H6754\"*." + }, + { + "verseNum": 7, + "text": "Be fruitful|strong=\"H6509\"* and|strong=\"H6509\"* multiply|strong=\"H7235\"*. Increase|strong=\"H7235\"* abundantly|strong=\"H8317\"* in|strong=\"H7235\"* the|strong=\"H7235\"* earth, and|strong=\"H6509\"* multiply|strong=\"H7235\"* in|strong=\"H7235\"* it.”" + }, + { + "verseNum": 8, + "text": "God spoke to|strong=\"H1121\"* Noah|strong=\"H5146\"* and|strong=\"H1121\"* to|strong=\"H1121\"* his|strong=\"H1121\"* sons|strong=\"H1121\"* with|strong=\"H1121\"* him|strong=\"H1121\"*, saying," + }, + { + "verseNum": 9, + "text": "“As|strong=\"H6965\"* for|strong=\"H6965\"* me|strong=\"H6965\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* establish|strong=\"H6965\"* my|strong=\"H6965\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* you|strong=\"H6965\"*, and|strong=\"H6965\"* with|strong=\"H1285\"* your|strong=\"H6965\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* you|strong=\"H6965\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"H3318\"* with|strong=\"H3318\"* every|strong=\"H3605\"* living|strong=\"H2416\"* creature|strong=\"H5315\"* that|strong=\"H3605\"* is|strong=\"H5315\"* with|strong=\"H3318\"* you|strong=\"H3605\"*: the|strong=\"H3605\"* birds|strong=\"H5775\"*, the|strong=\"H3605\"* livestock, and|strong=\"H3318\"* every|strong=\"H3605\"* animal|strong=\"H2416\"* of|strong=\"H3605\"* the|strong=\"H3605\"* earth with|strong=\"H3318\"* you|strong=\"H3605\"*, of|strong=\"H3605\"* all|strong=\"H3605\"* that|strong=\"H3605\"* go|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3605\"* the|strong=\"H3605\"* ship|strong=\"H8392\"*, even every|strong=\"H3605\"* animal|strong=\"H2416\"* of|strong=\"H3605\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 11, + "text": "I|strong=\"H3808\"* will|strong=\"H1961\"* establish|strong=\"H6965\"* my|strong=\"H3605\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* you|strong=\"H3605\"*: All|strong=\"H3605\"* flesh|strong=\"H1320\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* any|strong=\"H3605\"* more|strong=\"H5750\"* by|strong=\"H6965\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* the|strong=\"H3605\"* flood|strong=\"H3999\"*. There|strong=\"H1961\"* will|strong=\"H1961\"* never|strong=\"H3808\"* again|strong=\"H5750\"* be|strong=\"H1961\"* a|strong=\"H3068\"* flood|strong=\"H3999\"* to|strong=\"H1961\"* destroy|strong=\"H7843\"* the|strong=\"H3605\"* earth.”" + }, + { + "verseNum": 12, + "text": "God|strong=\"H5414\"* said, “This|strong=\"H2063\"* is|strong=\"H5315\"* the|strong=\"H3605\"* token of|strong=\"H3605\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* which|strong=\"H2416\"* I|strong=\"H5414\"* make|strong=\"H5414\"* between me|strong=\"H5414\"* and|strong=\"H5769\"* you|strong=\"H5414\"* and|strong=\"H5769\"* every|strong=\"H3605\"* living|strong=\"H2416\"* creature|strong=\"H5315\"* that|strong=\"H3605\"* is|strong=\"H5315\"* with|strong=\"H1285\"* you|strong=\"H5414\"*, for|strong=\"H5315\"* perpetual|strong=\"H5769\"* generations|strong=\"H1755\"*:" + }, + { + "verseNum": 13, + "text": "I|strong=\"H5414\"* set|strong=\"H5414\"* my|strong=\"H5414\"* rainbow|strong=\"H7198\"* in|strong=\"H5414\"* the|strong=\"H5414\"* cloud|strong=\"H6051\"*, and|strong=\"H1285\"* it|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* sign of|strong=\"H1285\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* between me|strong=\"H5414\"* and|strong=\"H1285\"* the|strong=\"H5414\"* earth." + }, + { + "verseNum": 14, + "text": "When|strong=\"H1961\"* I|strong=\"H5921\"* bring|strong=\"H6049\"* a|strong=\"H3068\"* cloud|strong=\"H6051\"* over|strong=\"H5921\"* the|strong=\"H5921\"* earth, that|strong=\"H7200\"* the|strong=\"H5921\"* rainbow|strong=\"H7198\"* will|strong=\"H1961\"* be|strong=\"H1961\"* seen|strong=\"H7200\"* in|strong=\"H5921\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"*," + }, + { + "verseNum": 15, + "text": "I|strong=\"H5315\"* will|strong=\"H1961\"* remember|strong=\"H2142\"* my|strong=\"H3605\"* covenant|strong=\"H1285\"*, which|strong=\"H4325\"* is|strong=\"H5315\"* between me|strong=\"H5315\"* and|strong=\"H1285\"* you|strong=\"H3605\"* and|strong=\"H1285\"* every|strong=\"H3605\"* living|strong=\"H2416\"* creature|strong=\"H5315\"* of|strong=\"H4325\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*, and|strong=\"H1285\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* will|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* become|strong=\"H1961\"* a|strong=\"H3068\"* flood|strong=\"H3999\"* to|strong=\"H1961\"* destroy|strong=\"H7843\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* rainbow|strong=\"H7198\"* will|strong=\"H1961\"* be|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H3605\"* cloud|strong=\"H6051\"*. I|strong=\"H5921\"* will|strong=\"H1961\"* look|strong=\"H7200\"* at|strong=\"H5921\"* it|strong=\"H5921\"*, that|strong=\"H7200\"* I|strong=\"H5921\"* may|strong=\"H1961\"* remember|strong=\"H2142\"* the|strong=\"H3605\"* everlasting|strong=\"H5769\"* covenant|strong=\"H1285\"* between|strong=\"H5921\"* God and|strong=\"H5769\"* every|strong=\"H3605\"* living|strong=\"H2416\"* creature|strong=\"H5315\"* of|strong=\"H5921\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"* that|strong=\"H7200\"* is|strong=\"H5315\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth.”" + }, + { + "verseNum": 17, + "text": "God said to|strong=\"H5921\"* Noah|strong=\"H5146\"*, “This|strong=\"H2063\"* is|strong=\"H3605\"* the|strong=\"H3605\"* token of|strong=\"H5921\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* which|strong=\"H1285\"* I|strong=\"H5921\"* have|strong=\"H3605\"* established|strong=\"H6965\"* between|strong=\"H5921\"* me|strong=\"H5921\"* and|strong=\"H6965\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"* that|strong=\"H3605\"* is|strong=\"H3605\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth.”" + }, + { + "verseNum": 18, + "text": "The|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Noah|strong=\"H5146\"* who|strong=\"H1931\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H4480\"* the|strong=\"H4480\"* ship|strong=\"H8392\"* were|strong=\"H1961\"* Shem|strong=\"H8035\"*, Ham|strong=\"H2526\"*, and|strong=\"H1121\"* Japheth|strong=\"H3315\"*. Ham|strong=\"H2526\"* is|strong=\"H1931\"* the|strong=\"H4480\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 19, + "text": "These|strong=\"H3605\"* three|strong=\"H7969\"* were|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Noah|strong=\"H5146\"*, and|strong=\"H1121\"* from|strong=\"H1121\"* these|strong=\"H3605\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth was|strong=\"H1121\"* populated|strong=\"H5310\"*." + }, + { + "verseNum": 20, + "text": "Noah|strong=\"H5146\"* began|strong=\"H2490\"* to|strong=\"H2490\"* be|strong=\"H3754\"* a|strong=\"H3068\"* farmer, and|strong=\"H3754\"* planted|strong=\"H5193\"* a|strong=\"H3068\"* vineyard|strong=\"H3754\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H4480\"* drank|strong=\"H8354\"* of|strong=\"H4480\"* the|strong=\"H8432\"* wine|strong=\"H3196\"* and|strong=\"H8354\"* got drunk|strong=\"H8354\"*. He|strong=\"H4480\"* was|strong=\"H3196\"* uncovered|strong=\"H1540\"* within|strong=\"H8432\"* his|strong=\"H1540\"* tent." + }, + { + "verseNum": 22, + "text": "Ham|strong=\"H2526\"*, the|strong=\"H7200\"* father of|strong=\"H2351\"* Canaan|strong=\"H3667\"*, saw|strong=\"H7200\"* the|strong=\"H7200\"* nakedness|strong=\"H6172\"* of|strong=\"H2351\"* his|strong=\"H7200\"* father, and|strong=\"H7200\"* told|strong=\"H5046\"* his|strong=\"H7200\"* two|strong=\"H8147\"* brothers outside|strong=\"H2351\"*." + }, + { + "verseNum": 23, + "text": "Shem|strong=\"H8035\"* and|strong=\"H3212\"* Japheth|strong=\"H3315\"* took|strong=\"H3947\"* a|strong=\"H3068\"* garment|strong=\"H8071\"*, and|strong=\"H3212\"* laid|strong=\"H7760\"* it|strong=\"H7760\"* on|strong=\"H5921\"* both|strong=\"H8147\"* their|strong=\"H3947\"* shoulders|strong=\"H7926\"*, went|strong=\"H3212\"* in|strong=\"H5921\"* backwards, and|strong=\"H3212\"* covered|strong=\"H3680\"* the|strong=\"H6440\"* nakedness|strong=\"H6172\"* of|strong=\"H6440\"* their|strong=\"H3947\"* father. Their|strong=\"H3947\"* faces|strong=\"H6440\"* were|strong=\"H8147\"* backwards, and|strong=\"H3212\"* they|strong=\"H3808\"* didn’t see|strong=\"H7200\"* their|strong=\"H3947\"* father’s nakedness|strong=\"H6172\"*." + }, + { + "verseNum": 24, + "text": "Noah|strong=\"H5146\"* awoke|strong=\"H3364\"* from|strong=\"H1121\"* his|strong=\"H3045\"* wine|strong=\"H3196\"*, and|strong=\"H1121\"* knew|strong=\"H3045\"* what|strong=\"H3045\"* his|strong=\"H3045\"* youngest|strong=\"H6996\"* son|strong=\"H1121\"* had|strong=\"H3045\"* done|strong=\"H6213\"* to|strong=\"H6213\"* him|strong=\"H6213\"*." + }, + { + "verseNum": 25, + "text": "He said," + }, + { + "verseNum": 26, + "text": "He|strong=\"H3068\"* said," + }, + { + "verseNum": 27, + "text": "May|strong=\"H1961\"* God enlarge|strong=\"H6601\"* Japheth|strong=\"H3315\"*." + }, + { + "verseNum": 28, + "text": "Noah|strong=\"H5146\"* lived|strong=\"H2421\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* years|strong=\"H8141\"* after|strong=\"H8141\"* the|strong=\"H2421\"* flood|strong=\"H3999\"*." + }, + { + "verseNum": 29, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Noah|strong=\"H5146\"* were|strong=\"H1961\"* nine|strong=\"H8672\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* years|strong=\"H8141\"*, and|strong=\"H3967\"* then|strong=\"H1961\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now this|strong=\"H1121\"* is|strong=\"H1121\"* the|strong=\"H3205\"* history|strong=\"H8435\"* of|strong=\"H1121\"* the|strong=\"H3205\"* generations|strong=\"H8435\"* of|strong=\"H1121\"* the|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Noah|strong=\"H5146\"* and|strong=\"H1121\"* of|strong=\"H1121\"* Shem|strong=\"H8035\"*, Ham|strong=\"H2526\"*, and|strong=\"H1121\"* Japheth|strong=\"H3315\"*. Sons|strong=\"H1121\"* were|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H3205\"* them|strong=\"H3205\"* after the|strong=\"H3205\"* flood|strong=\"H3999\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Japheth|strong=\"H3315\"* were|strong=\"H1121\"*: Gomer|strong=\"H1586\"*, Magog|strong=\"H4031\"*, Madai|strong=\"H4074\"*, Javan|strong=\"H3120\"*, Tubal|strong=\"H8422\"*, Meshech|strong=\"H4902\"*, and|strong=\"H1121\"* Tiras|strong=\"H8494\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gomer|strong=\"H1586\"* were|strong=\"H1121\"*: Ashkenaz, Riphath|strong=\"H7384\"*, and|strong=\"H1121\"* Togarmah|strong=\"H8425\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Javan|strong=\"H3120\"* were|strong=\"H1121\"*: Elishah, Tarshish|strong=\"H8659\"*, Kittim|strong=\"H3794\"*, and|strong=\"H1121\"* Dodanim|strong=\"H1721\"*." + }, + { + "verseNum": 5, + "text": "Of|strong=\"H4940\"* these were|strong=\"H4940\"* the|strong=\"H6504\"* islands of|strong=\"H4940\"* the|strong=\"H6504\"* nations|strong=\"H1471\"* divided|strong=\"H6504\"* in|strong=\"H1471\"* their|strong=\"H1471\"* lands, everyone after his|strong=\"H1471\"* language|strong=\"H3956\"*, after their|strong=\"H1471\"* families|strong=\"H4940\"*, in|strong=\"H1471\"* their|strong=\"H1471\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ham|strong=\"H2526\"* were|strong=\"H1121\"*: Cush|strong=\"H3568\"*, Mizraim|strong=\"H4714\"*, Put|strong=\"H6316\"*, and|strong=\"H1121\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Cush|strong=\"H3568\"* were|strong=\"H1121\"*: Seba|strong=\"H5434\"*, Havilah|strong=\"H2341\"*, Sabtah|strong=\"H5454\"*, Raamah|strong=\"H7484\"*, and|strong=\"H1121\"* Sabteca|strong=\"H5455\"*. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Raamah|strong=\"H7484\"* were|strong=\"H1121\"*: Sheba|strong=\"H7614\"* and|strong=\"H1121\"* Dedan|strong=\"H1719\"*." + }, + { + "verseNum": 8, + "text": "Cush|strong=\"H3568\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Nimrod|strong=\"H5248\"*. He|strong=\"H1931\"* began|strong=\"H2490\"* to|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* mighty|strong=\"H1368\"* one|strong=\"H1931\"* in|strong=\"H1368\"* the|strong=\"H3205\"* earth." + }, + { + "verseNum": 9, + "text": "He|strong=\"H1931\"* was|strong=\"H3068\"* a|strong=\"H3068\"* mighty|strong=\"H1368\"* hunter|strong=\"H6718\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. Therefore|strong=\"H3651\"* it|strong=\"H1931\"* is|strong=\"H3068\"* said|strong=\"H3651\"*, “like|strong=\"H1961\"* Nimrod|strong=\"H5248\"*, a|strong=\"H3068\"* mighty|strong=\"H1368\"* hunter|strong=\"H6718\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*”." + }, + { + "verseNum": 10, + "text": "The|strong=\"H1961\"* beginning|strong=\"H7225\"* of|strong=\"H4467\"* his|strong=\"H1961\"* kingdom|strong=\"H4467\"* was|strong=\"H1961\"* Babel, Erech, Accad, and|strong=\"H4467\"* Calneh|strong=\"H3641\"*, in|strong=\"H1961\"* the|strong=\"H1961\"* land of|strong=\"H4467\"* Shinar|strong=\"H8152\"*." + }, + { + "verseNum": 11, + "text": "Out|strong=\"H3318\"* of|strong=\"H5892\"* that|strong=\"H1931\"* land he|strong=\"H1931\"* went|strong=\"H3318\"* into|strong=\"H3318\"* Assyria, and|strong=\"H5892\"* built|strong=\"H1129\"* Nineveh|strong=\"H5210\"*, Rehoboth|strong=\"H7344\"* Ir, Calah|strong=\"H3625\"*," + }, + { + "verseNum": 12, + "text": "and|strong=\"H1419\"* Resen|strong=\"H7449\"* between|strong=\"H7449\"* Nineveh|strong=\"H5210\"* and|strong=\"H1419\"* the|strong=\"H5892\"* great|strong=\"H1419\"* city|strong=\"H5892\"* Calah|strong=\"H3625\"*." + }, + { + "verseNum": 13, + "text": "Mizraim|strong=\"H4714\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Ludim|strong=\"H3866\"*, Anamim|strong=\"H6047\"*, Lehabim|strong=\"H3853\"*, Naphtuhim|strong=\"H5320\"*," + }, + { + "verseNum": 14, + "text": "Pathrusim|strong=\"H6625\"*, Casluhim|strong=\"H3695\"* (which|strong=\"H8033\"* the|strong=\"H3318\"* Philistines|strong=\"H6430\"* descended|strong=\"H3318\"* from|strong=\"H3318\"*), and|strong=\"H8033\"* Caphtorim|strong=\"H3732\"*." + }, + { + "verseNum": 15, + "text": "Canaan|strong=\"H3667\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Sidon|strong=\"H6721\"* (his|strong=\"H3205\"* firstborn|strong=\"H1060\"*), Heth|strong=\"H2845\"*," + }, + { + "verseNum": 16, + "text": "the|strong=\"H2983\"* Jebusites|strong=\"H2983\"*, the|strong=\"H2983\"* Amorites, the|strong=\"H2983\"* Girgashites|strong=\"H1622\"*," + }, + { + "verseNum": 17, + "text": "the|strong=\"H2340\"* Hivites|strong=\"H2340\"*, the|strong=\"H2340\"* Arkites|strong=\"H6208\"*, the|strong=\"H2340\"* Sinites|strong=\"H5513\"*," + }, + { + "verseNum": 18, + "text": "the|strong=\"H6327\"* Arvadites, the|strong=\"H6327\"* Zemarites|strong=\"H6786\"*, and|strong=\"H3669\"* the|strong=\"H6327\"* Hamathites|strong=\"H2577\"*. Afterward the|strong=\"H6327\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H6327\"* Canaanites|strong=\"H3669\"* were|strong=\"H4940\"* spread|strong=\"H6327\"* abroad|strong=\"H6327\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5704\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H5704\"* Canaanites|strong=\"H3669\"* was|strong=\"H1961\"* from|strong=\"H5704\"* Sidon|strong=\"H6721\"*—as|strong=\"H5704\"* you|strong=\"H5704\"* go|strong=\"H1961\"* toward|strong=\"H5704\"* Gerar|strong=\"H1642\"*—to|strong=\"H5704\"* Gaza|strong=\"H5804\"*—as|strong=\"H5704\"* you|strong=\"H5704\"* go|strong=\"H1961\"* toward|strong=\"H5704\"* Sodom|strong=\"H5467\"*, Gomorrah|strong=\"H6017\"*, Admah, and|strong=\"H5467\"* Zeboiim|strong=\"H6636\"*—to|strong=\"H5704\"* Lasha|strong=\"H3962\"*." + }, + { + "verseNum": 20, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ham|strong=\"H2526\"*, after their|strong=\"H1471\"* families|strong=\"H4940\"*, according to|strong=\"H1121\"* their|strong=\"H1471\"* languages|strong=\"H3956\"*, in|strong=\"H1121\"* their|strong=\"H1471\"* lands and|strong=\"H1121\"* their|strong=\"H1471\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 21, + "text": "Children|strong=\"H1121\"* were|strong=\"H1121\"* also|strong=\"H1571\"* born|strong=\"H3205\"* to|strong=\"H3205\"* Shem|strong=\"H8035\"* (the|strong=\"H3605\"* elder|strong=\"H1419\"* brother of|strong=\"H1121\"* Japheth|strong=\"H3315\"*), the|strong=\"H3605\"* father|strong=\"H3205\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Eber|strong=\"H5677\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shem|strong=\"H8035\"* were|strong=\"H1121\"*: Elam|strong=\"H5867\"*, Asshur, Arpachshad, Lud|strong=\"H3865\"*, and|strong=\"H1121\"* Aram." + }, + { + "verseNum": 23, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aram were|strong=\"H1121\"*: Uz|strong=\"H5780\"*, Hul|strong=\"H2343\"*, Gether|strong=\"H1666\"*, and|strong=\"H1121\"* Mash|strong=\"H4851\"*." + }, + { + "verseNum": 24, + "text": "Arpachshad became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Shelah|strong=\"H7974\"*. Shelah|strong=\"H7974\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Eber|strong=\"H5677\"*." + }, + { + "verseNum": 25, + "text": "To|strong=\"H3117\"* Eber|strong=\"H5677\"* were|strong=\"H1121\"* born|strong=\"H3205\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*. The|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H3588\"* one|strong=\"H1121\"* was|strong=\"H8034\"* Peleg|strong=\"H6389\"*, for|strong=\"H3588\"* in|strong=\"H3117\"* his|strong=\"H3588\"* days|strong=\"H3117\"* the|strong=\"H3588\"* earth was|strong=\"H8034\"* divided|strong=\"H6385\"*. His|strong=\"H3588\"* brother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Joktan|strong=\"H3355\"*." + }, + { + "verseNum": 26, + "text": "Joktan|strong=\"H3355\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Almodad, Sheleph|strong=\"H8026\"*, Hazarmaveth|strong=\"H2700\"*, Jerah|strong=\"H3392\"*," + }, + { + "verseNum": 27, + "text": "Hadoram|strong=\"H1913\"*, Uzal, Diklah|strong=\"H1853\"*," + }, + { + "verseNum": 28, + "text": "Obal|strong=\"H5745\"*, Abimael, Sheba|strong=\"H7614\"*," + }, + { + "verseNum": 29, + "text": "Ophir, Havilah|strong=\"H2341\"*, and|strong=\"H1121\"* Jobab|strong=\"H3103\"*. All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Joktan|strong=\"H3355\"*." + }, + { + "verseNum": 30, + "text": "Their|strong=\"H1961\"* dwelling|strong=\"H4186\"* extended|strong=\"H1961\"* from|strong=\"H1961\"* Mesha|strong=\"H4852\"*, as|strong=\"H1961\"* you|strong=\"H2022\"* go|strong=\"H1961\"* toward Sephar|strong=\"H5611\"*, the|strong=\"H1961\"* mountain|strong=\"H2022\"* of|strong=\"H2022\"* the|strong=\"H1961\"* east|strong=\"H6924\"*." + }, + { + "verseNum": 31, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shem|strong=\"H8035\"*, by|strong=\"H4940\"* their|strong=\"H1471\"* families|strong=\"H4940\"*, according to|strong=\"H1121\"* their|strong=\"H1471\"* languages|strong=\"H3956\"*, lands, and|strong=\"H1121\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 32, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Noah|strong=\"H5146\"*, by|strong=\"H4940\"* their|strong=\"H1471\"* generations|strong=\"H8435\"*, according to|strong=\"H1121\"* their|strong=\"H1471\"* nations|strong=\"H1471\"*. The|strong=\"H1121\"* nations|strong=\"H1471\"* divided|strong=\"H6504\"* from|strong=\"H1121\"* these in|strong=\"H1121\"* the|strong=\"H1121\"* earth after the|strong=\"H1121\"* flood|strong=\"H3999\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* whole|strong=\"H3605\"* earth was|strong=\"H1961\"* of|strong=\"H1697\"* one|strong=\"H3605\"* language|strong=\"H8193\"* and|strong=\"H1697\"* of|strong=\"H1697\"* one|strong=\"H3605\"* speech|strong=\"H8193\"*." + }, + { + "verseNum": 2, + "text": "As|strong=\"H1961\"* they|strong=\"H8033\"* traveled|strong=\"H5265\"* east|strong=\"H6924\"*,+ 11:2 LXX reads “from the east”.* they|strong=\"H8033\"* found|strong=\"H4672\"* a|strong=\"H3068\"* plain|strong=\"H1237\"* in|strong=\"H3427\"* the|strong=\"H1961\"* land of|strong=\"H3427\"* Shinar|strong=\"H8152\"*, and|strong=\"H8033\"* they|strong=\"H8033\"* lived|strong=\"H3427\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 3, + "text": "They said to|strong=\"H1961\"* one|strong=\"H1961\"* another|strong=\"H7453\"*, “Come|strong=\"H1961\"*, let|strong=\"H1961\"*’s make|strong=\"H3835\"* bricks|strong=\"H3843\"*, and|strong=\"H7453\"* burn|strong=\"H8313\"* them|strong=\"H8313\"* thoroughly|strong=\"H8316\"*.” They had|strong=\"H1961\"* brick|strong=\"H3843\"* for|strong=\"H1961\"* stone, and|strong=\"H7453\"* they used|strong=\"H1961\"* tar|strong=\"H2564\"* for|strong=\"H1961\"* mortar|strong=\"H2563\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H5921\"* said, “Come|strong=\"H3051\"*, let’s build|strong=\"H1129\"* ourselves|strong=\"H1129\"* a|strong=\"H3068\"* city|strong=\"H5892\"*, and|strong=\"H8064\"* a|strong=\"H3068\"* tower|strong=\"H4026\"* whose|strong=\"H8034\"* top|strong=\"H7218\"* reaches to|strong=\"H5921\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* let’s make|strong=\"H6213\"* a|strong=\"H3068\"* name|strong=\"H8034\"* for|strong=\"H5921\"* ourselves|strong=\"H1129\"*, lest|strong=\"H6435\"* we|strong=\"H3068\"* be|strong=\"H8034\"* scattered|strong=\"H6327\"* abroad|strong=\"H6327\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H5892\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth|strong=\"H8064\"*.”" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* came|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* see|strong=\"H7200\"* the|strong=\"H7200\"* city|strong=\"H5892\"* and|strong=\"H1121\"* the|strong=\"H7200\"* tower|strong=\"H4026\"*, which|strong=\"H3068\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"* built|strong=\"H1129\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* said, “Behold|strong=\"H2005\"*, they|strong=\"H1992\"* are|strong=\"H1992\"* one|strong=\"H2088\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* they|strong=\"H1992\"* all|strong=\"H3605\"* have|strong=\"H3068\"* one|strong=\"H2088\"* language|strong=\"H8193\"*, and|strong=\"H3068\"* this|strong=\"H2088\"* is|strong=\"H3068\"* what|strong=\"H2088\"* they|strong=\"H1992\"* begin|strong=\"H2490\"* to|strong=\"H3068\"* do|strong=\"H6213\"*. Now|strong=\"H6258\"* nothing|strong=\"H3808\"* will|strong=\"H3068\"* be|strong=\"H3808\"* withheld from|strong=\"H3068\"* them|strong=\"H1992\"*, which|strong=\"H3068\"* they|strong=\"H1992\"* intend to|strong=\"H3068\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 7, + "text": "Come|strong=\"H3381\"*, let|strong=\"H3381\"*’s go|strong=\"H3381\"* down|strong=\"H3381\"*, and|strong=\"H8033\"* there|strong=\"H8033\"* confuse|strong=\"H1101\"* their|strong=\"H8085\"* language|strong=\"H8193\"*, that|strong=\"H8085\"* they|strong=\"H8033\"* may|strong=\"H8193\"* not|strong=\"H3808\"* understand|strong=\"H8085\"* one|strong=\"H3808\"* another|strong=\"H7453\"*’s speech|strong=\"H8193\"*.”" + }, + { + "verseNum": 8, + "text": "So|strong=\"H5921\"* Yahweh|strong=\"H3068\"* scattered|strong=\"H6327\"* them|strong=\"H5921\"* abroad|strong=\"H6327\"* from|strong=\"H6440\"* there|strong=\"H8033\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth. They|strong=\"H8033\"* stopped|strong=\"H2308\"* building|strong=\"H1129\"* the|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H3651\"* its|strong=\"H3605\"* name|strong=\"H8034\"* was|strong=\"H3068\"* called|strong=\"H7121\"* Babel, because|strong=\"H3588\"* there|strong=\"H8033\"* Yahweh|strong=\"H3068\"* confused|strong=\"H1101\"* the|strong=\"H3605\"* language|strong=\"H8193\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth. From|strong=\"H6440\"* there|strong=\"H8033\"*, Yahweh|strong=\"H3068\"* scattered|strong=\"H6327\"* them|strong=\"H5921\"* abroad|strong=\"H6327\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 10, + "text": "This|strong=\"H1121\"* is|strong=\"H1121\"* the|strong=\"H3205\"* history|strong=\"H8435\"* of|strong=\"H1121\"* the|strong=\"H3205\"* generations|strong=\"H8435\"* of|strong=\"H1121\"* Shem|strong=\"H8035\"*: Shem|strong=\"H8035\"* was|strong=\"H1121\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Arpachshad two|strong=\"H3967\"* years|strong=\"H8141\"* after|strong=\"H8141\"* the|strong=\"H3205\"* flood|strong=\"H3999\"*." + }, + { + "verseNum": 11, + "text": "Shem|strong=\"H8035\"* lived|strong=\"H2421\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"* after|strong=\"H8141\"* he|strong=\"H2568\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Arpachshad, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* more|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 12, + "text": "Arpachshad lived|strong=\"H2421\"* thirty-five|strong=\"H7970\"* years|strong=\"H8141\"* and|strong=\"H7970\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Shelah|strong=\"H7974\"*." + }, + { + "verseNum": 13, + "text": "Arpachshad lived|strong=\"H2421\"* four|strong=\"H7969\"* hundred|strong=\"H3967\"* three|strong=\"H7969\"* years|strong=\"H8141\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Shelah|strong=\"H7974\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* more|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 14, + "text": "Shelah|strong=\"H7974\"* lived|strong=\"H2421\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"*, and|strong=\"H7970\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Eber|strong=\"H5677\"*." + }, + { + "verseNum": 15, + "text": "Shelah|strong=\"H7974\"* lived|strong=\"H2421\"* four|strong=\"H7969\"* hundred|strong=\"H3967\"* three|strong=\"H7969\"* years|strong=\"H8141\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Eber|strong=\"H5677\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* more|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 16, + "text": "Eber|strong=\"H5677\"* lived|strong=\"H2421\"* thirty-four|strong=\"H7970\"* years|strong=\"H8141\"*, and|strong=\"H7970\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Peleg|strong=\"H6389\"*." + }, + { + "verseNum": 17, + "text": "Eber|strong=\"H5677\"* lived|strong=\"H2421\"* four hundred|strong=\"H3967\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Peleg|strong=\"H6389\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* more|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 18, + "text": "Peleg|strong=\"H6389\"* lived|strong=\"H2421\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"*, and|strong=\"H7970\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Reu|strong=\"H7466\"*." + }, + { + "verseNum": 19, + "text": "Peleg|strong=\"H6389\"* lived|strong=\"H2421\"* two|strong=\"H2421\"* hundred|strong=\"H3967\"* nine|strong=\"H8672\"* years|strong=\"H8141\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Reu|strong=\"H7466\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* more|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 20, + "text": "Reu|strong=\"H7466\"* lived|strong=\"H2421\"* thirty-two|strong=\"H7970\"* years|strong=\"H8141\"*, and|strong=\"H7970\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Serug|strong=\"H8286\"*." + }, + { + "verseNum": 21, + "text": "Reu|strong=\"H7466\"* lived|strong=\"H2421\"* two|strong=\"H2421\"* hundred|strong=\"H3967\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Serug|strong=\"H8286\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* more|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 22, + "text": "Serug|strong=\"H8286\"* lived|strong=\"H2421\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"*, and|strong=\"H7970\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Nahor|strong=\"H5152\"*." + }, + { + "verseNum": 23, + "text": "Serug|strong=\"H8286\"* lived|strong=\"H2421\"* two|strong=\"H2421\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Nahor|strong=\"H5152\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* more|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 24, + "text": "Nahor|strong=\"H5152\"* lived|strong=\"H2421\"* twenty-nine|strong=\"H6242\"* years|strong=\"H8141\"*, and|strong=\"H6242\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Terah|strong=\"H8646\"*." + }, + { + "verseNum": 25, + "text": "Nahor|strong=\"H5152\"* lived|strong=\"H2421\"* one|strong=\"H2421\"* hundred|strong=\"H3967\"* nineteen|strong=\"H8672\"* years|strong=\"H8141\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Terah|strong=\"H8646\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* more|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 26, + "text": "Terah|strong=\"H8646\"* lived|strong=\"H2421\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"*, and|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Abram, Nahor|strong=\"H5152\"*, and|strong=\"H8141\"* Haran|strong=\"H2039\"*." + }, + { + "verseNum": 27, + "text": "Now this is the|strong=\"H3205\"* history|strong=\"H8435\"* of|strong=\"H3205\"* the|strong=\"H3205\"* generations|strong=\"H8435\"* of|strong=\"H3205\"* Terah|strong=\"H8646\"*. Terah|strong=\"H8646\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Abram, Nahor|strong=\"H5152\"*, and|strong=\"H3205\"* Haran|strong=\"H2039\"*. Haran|strong=\"H2039\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Lot|strong=\"H3876\"*." + }, + { + "verseNum": 28, + "text": "Haran|strong=\"H2039\"* died|strong=\"H4191\"* in|strong=\"H5921\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H6440\"* his|strong=\"H6440\"* birth|strong=\"H4138\"*, in|strong=\"H5921\"* Ur of|strong=\"H6440\"* the|strong=\"H6440\"* Chaldees|strong=\"H3778\"*, while|strong=\"H5921\"* his|strong=\"H6440\"* father Terah|strong=\"H8646\"* was|strong=\"H6440\"* still alive." + }, + { + "verseNum": 29, + "text": "Abram and|strong=\"H1323\"* Nahor|strong=\"H5152\"* married|strong=\"H3947\"* wives. The|strong=\"H3947\"* name|strong=\"H8034\"* of|strong=\"H1323\"* Abram’s wife was|strong=\"H8034\"* Sarai|strong=\"H8297\"*, and|strong=\"H1323\"* the|strong=\"H3947\"* name|strong=\"H8034\"* of|strong=\"H1323\"* Nahor|strong=\"H5152\"*’s wife was|strong=\"H8034\"* Milcah|strong=\"H4435\"*, the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Haran|strong=\"H2039\"*, who|strong=\"H1323\"* was|strong=\"H8034\"* also|strong=\"H8034\"* the|strong=\"H3947\"* father of|strong=\"H1323\"* Iscah|strong=\"H3252\"*." + }, + { + "verseNum": 30, + "text": "Sarai|strong=\"H8297\"* was|strong=\"H1961\"* barren|strong=\"H6135\"*. She had|strong=\"H1961\"* no|strong=\"H1961\"* child|strong=\"H2056\"*." + }, + { + "verseNum": 31, + "text": "Terah|strong=\"H8646\"* took|strong=\"H3947\"* Abram his|strong=\"H3947\"* son|strong=\"H1121\"*, Lot|strong=\"H3876\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Haran|strong=\"H2771\"*, his|strong=\"H3947\"* son|strong=\"H1121\"*’s son|strong=\"H1121\"*, and|strong=\"H1121\"* Sarai|strong=\"H8297\"* his|strong=\"H3947\"* daughter-in-law|strong=\"H3618\"*, his|strong=\"H3947\"* son|strong=\"H1121\"* Abram’s wife. They|strong=\"H8033\"* went|strong=\"H3212\"* from|strong=\"H3318\"* Ur of|strong=\"H1121\"* the|strong=\"H3947\"* Chaldees|strong=\"H3778\"*, to|strong=\"H5704\"* go|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H3947\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*. They|strong=\"H8033\"* came|strong=\"H3318\"* to|strong=\"H5704\"* Haran|strong=\"H2771\"* and|strong=\"H1121\"* lived|strong=\"H3427\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Terah|strong=\"H8646\"* were|strong=\"H1961\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* five|strong=\"H2568\"* years|strong=\"H8141\"*. Terah|strong=\"H8646\"* died|strong=\"H4191\"* in|strong=\"H8141\"* Haran|strong=\"H2771\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3212\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3212\"* Abram, “Leave your|strong=\"H3068\"* country, and|strong=\"H3068\"* your|strong=\"H3068\"* relatives|strong=\"H4138\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* father’s house|strong=\"H1004\"*, and|strong=\"H3068\"* go|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H7200\"* land that|strong=\"H7200\"* I|strong=\"H7200\"* will|strong=\"H3068\"* show|strong=\"H7200\"* you|strong=\"H7200\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H6213\"* will|strong=\"H1961\"* make|strong=\"H6213\"* of|strong=\"H8034\"* you|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* nation|strong=\"H1471\"*. I|strong=\"H6213\"* will|strong=\"H1961\"* bless|strong=\"H1288\"* you|strong=\"H6213\"* and|strong=\"H1419\"* make|strong=\"H6213\"* your|strong=\"H6213\"* name|strong=\"H8034\"* great|strong=\"H1419\"*. You|strong=\"H6213\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H3605\"* will|strong=\"H3605\"* bless|strong=\"H1288\"* those|strong=\"H3605\"* who|strong=\"H3605\"* bless|strong=\"H1288\"* you|strong=\"H3605\"*, and|strong=\"H3605\"* I|strong=\"H3605\"* will|strong=\"H3605\"* curse|strong=\"H7043\"* him|strong=\"H3605\"* who|strong=\"H3605\"* treats you|strong=\"H3605\"* with|strong=\"H3605\"* contempt|strong=\"H7043\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H3605\"* earth will|strong=\"H3605\"* be|strong=\"H1288\"* blessed|strong=\"H1288\"* through|strong=\"H3605\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 4, + "text": "So|strong=\"H3318\"* Abram went|strong=\"H3212\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* told|strong=\"H1696\"* him|strong=\"H3318\"*. Lot|strong=\"H3876\"* went|strong=\"H3212\"* with|strong=\"H3068\"* him|strong=\"H3318\"*. Abram was|strong=\"H3068\"* seventy-five|strong=\"H7657\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H3318\"* he|strong=\"H3068\"* departed|strong=\"H3212\"* from|strong=\"H3318\"* Haran|strong=\"H2771\"*." + }, + { + "verseNum": 5, + "text": "Abram took|strong=\"H3947\"* Sarai|strong=\"H8297\"* his|strong=\"H3605\"* wife, Lot|strong=\"H3876\"* his|strong=\"H3605\"* brother’s son|strong=\"H1121\"*, all|strong=\"H3605\"* their|strong=\"H3605\"* possessions|strong=\"H7399\"* that|strong=\"H3605\"* they|strong=\"H6213\"* had|strong=\"H1121\"* gathered|strong=\"H7408\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H1121\"* whom they|strong=\"H6213\"* had|strong=\"H1121\"* acquired|strong=\"H6213\"* in|strong=\"H6213\"* Haran|strong=\"H2771\"*, and|strong=\"H1121\"* they|strong=\"H6213\"* went|strong=\"H3212\"* to|strong=\"H3318\"* go|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*. They|strong=\"H6213\"* entered|strong=\"H3318\"* into|strong=\"H3212\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 6, + "text": "Abram passed|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5704\"* land|strong=\"H4725\"* to|strong=\"H5704\"* the|strong=\"H5704\"* place|strong=\"H4725\"* of|strong=\"H4725\"* Shechem|strong=\"H7927\"*, to|strong=\"H5704\"* the|strong=\"H5704\"* oak of|strong=\"H4725\"* Moreh|strong=\"H4176\"*. At|strong=\"H5704\"* that|strong=\"H3669\"* time|strong=\"H5704\"*, Canaanites|strong=\"H3669\"* were|strong=\"H3669\"* in|strong=\"H4725\"* the|strong=\"H5704\"* land|strong=\"H4725\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* Abram and|strong=\"H3068\"* said, “I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* this|strong=\"H2063\"* land to|strong=\"H3068\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*.”+ 12:7 or, seed*" + }, + { + "verseNum": 8, + "text": "He|strong=\"H8033\"* left|strong=\"H5186\"* from|strong=\"H3068\"* there|strong=\"H8033\"* to|strong=\"H3068\"* go|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H3068\"* mountain|strong=\"H2022\"* on|strong=\"H3068\"* the|strong=\"H3068\"* east|strong=\"H6924\"* of|strong=\"H3068\"* Bethel|strong=\"H1008\"* and|strong=\"H3068\"* pitched|strong=\"H5186\"* his|strong=\"H3068\"* tent, having Bethel|strong=\"H1008\"* on|strong=\"H3068\"* the|strong=\"H3068\"* west|strong=\"H3220\"*, and|strong=\"H3068\"* Ai|strong=\"H5857\"* on|strong=\"H3068\"* the|strong=\"H3068\"* east|strong=\"H6924\"*. There|strong=\"H8033\"* he|strong=\"H8033\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* called|strong=\"H7121\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*." + }, + { + "verseNum": 9, + "text": "Abram traveled|strong=\"H5265\"*, still|strong=\"H1980\"* going|strong=\"H1980\"* on|strong=\"H1980\"* toward|strong=\"H1980\"* the|strong=\"H1980\"* South|strong=\"H5045\"*." + }, + { + "verseNum": 10, + "text": "There|strong=\"H8033\"* was|strong=\"H1961\"* a|strong=\"H3068\"* famine|strong=\"H7458\"* in|strong=\"H1481\"* the|strong=\"H3588\"* land. Abram went|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* Egypt|strong=\"H4714\"* to|strong=\"H3381\"* live|strong=\"H1481\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner there|strong=\"H8033\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* famine|strong=\"H7458\"* was|strong=\"H1961\"* severe|strong=\"H3515\"* in|strong=\"H1481\"* the|strong=\"H3588\"* land." + }, + { + "verseNum": 11, + "text": "When|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1961\"* come|strong=\"H1961\"* near|strong=\"H7126\"* to|strong=\"H1961\"* enter Egypt|strong=\"H4714\"*, he|strong=\"H3588\"* said to|strong=\"H1961\"* Sarai|strong=\"H8297\"* his|strong=\"H3045\"* wife, “See|strong=\"H2009\"* now|strong=\"H4994\"*, I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H4714\"* a|strong=\"H3068\"* beautiful|strong=\"H3303\"* woman|strong=\"H4758\"* to|strong=\"H1961\"* look|strong=\"H2009\"* at|strong=\"H1961\"*." + }, + { + "verseNum": 12, + "text": "It|strong=\"H3588\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H3588\"* when|strong=\"H3588\"* the|strong=\"H7200\"* Egyptians|strong=\"H4713\"* see|strong=\"H7200\"* you|strong=\"H3588\"*, they|strong=\"H3588\"* will|strong=\"H1961\"* say, ‘This|strong=\"H2063\"* is|strong=\"H1961\"* his|strong=\"H7200\"* wife.’ They|strong=\"H3588\"* will|strong=\"H1961\"* kill|strong=\"H2026\"* me|strong=\"H7200\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H1961\"* save|strong=\"H2421\"* you|strong=\"H3588\"* alive|strong=\"H2421\"*." + }, + { + "verseNum": 13, + "text": "Please|strong=\"H4994\"* say that|strong=\"H5315\"* you|strong=\"H5315\"* are|strong=\"H5315\"* my|strong=\"H2421\"* sister, that|strong=\"H5315\"* it|strong=\"H3190\"* may|strong=\"H4994\"* be|strong=\"H5315\"* well|strong=\"H3190\"* with|strong=\"H5315\"* me|strong=\"H4994\"* for|strong=\"H4616\"* your|strong=\"H3190\"* sake|strong=\"H4616\"*, and|strong=\"H5315\"* that|strong=\"H5315\"* my|strong=\"H2421\"* soul|strong=\"H5315\"* may|strong=\"H4994\"* live|strong=\"H2421\"* because|strong=\"H4616\"* of|strong=\"H5315\"* you|strong=\"H5315\"*.”" + }, + { + "verseNum": 14, + "text": "When|strong=\"H3588\"* Abram had|strong=\"H1961\"* come|strong=\"H1961\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*, some Egyptians|strong=\"H4714\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H7200\"* woman was|strong=\"H1961\"* very|strong=\"H3966\"* beautiful|strong=\"H3303\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H7200\"* princes|strong=\"H8269\"* of|strong=\"H1004\"* Pharaoh|strong=\"H6547\"* saw|strong=\"H7200\"* her|strong=\"H3947\"*, and|strong=\"H1004\"* praised|strong=\"H1984\"* her|strong=\"H3947\"* to|strong=\"H1004\"* Pharaoh|strong=\"H6547\"*; and|strong=\"H1004\"* the|strong=\"H7200\"* woman|strong=\"H1004\"* was|strong=\"H1004\"* taken|strong=\"H3947\"* into|strong=\"H3947\"* Pharaoh|strong=\"H6547\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H1241\"* dealt well|strong=\"H3190\"* with|strong=\"H1241\"* Abram for|strong=\"H5650\"* her|strong=\"H3190\"* sake|strong=\"H5668\"*. He|strong=\"H1241\"* had|strong=\"H1961\"* sheep|strong=\"H6629\"*, cattle|strong=\"H1241\"*, male|strong=\"H5650\"* donkeys|strong=\"H2543\"*, male|strong=\"H5650\"* servants|strong=\"H5650\"*, female|strong=\"H8198\"* servants|strong=\"H5650\"*, female|strong=\"H8198\"* donkeys|strong=\"H2543\"*, and|strong=\"H5650\"* camels|strong=\"H1581\"*." + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* afflicted|strong=\"H5060\"* Pharaoh|strong=\"H6547\"* and|strong=\"H3068\"* his|strong=\"H3068\"* house|strong=\"H1004\"* with|strong=\"H1004\"* great|strong=\"H1419\"* plagues|strong=\"H5061\"* because|strong=\"H5921\"* of|strong=\"H1004\"* Sarai|strong=\"H8297\"*, Abram’s wife." + }, + { + "verseNum": 18, + "text": "Pharaoh|strong=\"H6547\"* called|strong=\"H7121\"* Abram and|strong=\"H6213\"* said|strong=\"H7121\"*, “What|strong=\"H4100\"* is|strong=\"H1931\"* this|strong=\"H2063\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* done|strong=\"H6213\"* to|strong=\"H6213\"* me|strong=\"H5046\"*? Why|strong=\"H4100\"* didn’t you|strong=\"H3588\"* tell|strong=\"H5046\"* me|strong=\"H5046\"* that|strong=\"H3588\"* she|strong=\"H1931\"* was|strong=\"H1931\"* your|strong=\"H6213\"* wife?" + }, + { + "verseNum": 19, + "text": "Why|strong=\"H4100\"* did|strong=\"H4100\"* you|strong=\"H3947\"* say, ‘She|strong=\"H1931\"* is|strong=\"H1931\"* my|strong=\"H3947\"* sister,’ so|strong=\"H3947\"* that|strong=\"H1931\"* I|strong=\"H2009\"* took|strong=\"H3947\"* her|strong=\"H3947\"* to|strong=\"H3212\"* be|strong=\"H6258\"* my|strong=\"H3947\"* wife? Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, see|strong=\"H2009\"* your|strong=\"H3947\"* wife, take|strong=\"H3947\"* her|strong=\"H3947\"*, and|strong=\"H3212\"* go|strong=\"H3212\"* your|strong=\"H3947\"* way|strong=\"H3212\"*.”" + }, + { + "verseNum": 20, + "text": "Pharaoh|strong=\"H6547\"* commanded|strong=\"H6680\"* men|strong=\"H3605\"* concerning|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H7971\"* they|strong=\"H5921\"* escorted|strong=\"H7971\"* him|strong=\"H5921\"* away|strong=\"H7971\"* with|strong=\"H5921\"* his|strong=\"H3605\"* wife and|strong=\"H7971\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3605\"* had|strong=\"H6547\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Abram went|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H3605\"* of|strong=\"H3605\"* Egypt|strong=\"H4714\"*—he|strong=\"H1931\"*, his|strong=\"H3605\"* wife, all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H1931\"* had|strong=\"H4714\"*, and|strong=\"H4714\"* Lot|strong=\"H3876\"* with|strong=\"H5973\"* him|strong=\"H5973\"*—into|strong=\"H5927\"* the|strong=\"H3605\"* South|strong=\"H5045\"*." + }, + { + "verseNum": 2, + "text": "Abram was|strong=\"H3966\"* very|strong=\"H3966\"* rich|strong=\"H3513\"* in|strong=\"H3701\"* livestock|strong=\"H4735\"*, in|strong=\"H3701\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* in|strong=\"H3701\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H5704\"* went|strong=\"H3212\"* on|strong=\"H1961\"* his|strong=\"H1961\"* journeys|strong=\"H4550\"* from|strong=\"H5704\"* the|strong=\"H5704\"* South|strong=\"H5045\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Bethel|strong=\"H1008\"*, to|strong=\"H5704\"* the|strong=\"H5704\"* place|strong=\"H4725\"* where|strong=\"H8033\"* his|strong=\"H1961\"* tent had|strong=\"H1961\"* been|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H5704\"* beginning|strong=\"H8462\"*, between|strong=\"H5704\"* Bethel|strong=\"H1008\"* and|strong=\"H3212\"* Ai|strong=\"H5857\"*," + }, + { + "verseNum": 4, + "text": "to|strong=\"H3068\"* the|strong=\"H6213\"* place|strong=\"H4725\"* of|strong=\"H3068\"* the|strong=\"H6213\"* altar|strong=\"H4196\"*, which|strong=\"H3068\"* he|strong=\"H8033\"* had|strong=\"H3068\"* made|strong=\"H6213\"* there|strong=\"H8033\"* at|strong=\"H3068\"* the|strong=\"H6213\"* first|strong=\"H7223\"*. There|strong=\"H8033\"* Abram called|strong=\"H7121\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*." + }, + { + "verseNum": 5, + "text": "Lot|strong=\"H3876\"* also|strong=\"H1571\"*, who|strong=\"H1980\"* went|strong=\"H1980\"* with|strong=\"H1980\"* Abram, had|strong=\"H1961\"* flocks|strong=\"H6629\"*, herds|strong=\"H1241\"*, and|strong=\"H1980\"* tents." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3588\"* land was|strong=\"H1961\"* not|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* bear|strong=\"H5375\"* them|strong=\"H5375\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* might|strong=\"H3201\"* live|strong=\"H3427\"* together|strong=\"H3162\"*; for|strong=\"H3588\"* their|strong=\"H5375\"* possessions|strong=\"H7399\"* were|strong=\"H1961\"* so|strong=\"H1961\"* great|strong=\"H7227\"* that|strong=\"H3588\"* they|strong=\"H3588\"* couldn’t live|strong=\"H3427\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 7, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* strife|strong=\"H7379\"* between|strong=\"H3427\"* the|strong=\"H1961\"* herdsmen|strong=\"H4735\"* of|strong=\"H3427\"* Abram’s livestock|strong=\"H4735\"* and|strong=\"H3427\"* the|strong=\"H1961\"* herdsmen|strong=\"H4735\"* of|strong=\"H3427\"* Lot|strong=\"H3876\"*’s livestock|strong=\"H4735\"*. The|strong=\"H1961\"* Canaanites|strong=\"H3669\"* and|strong=\"H3427\"* the|strong=\"H1961\"* Perizzites|strong=\"H6522\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H1961\"* land at|strong=\"H3427\"* that|strong=\"H3669\"* time|strong=\"H1961\"*." + }, + { + "verseNum": 8, + "text": "Abram said to|strong=\"H1961\"* Lot|strong=\"H3876\"*, “Please|strong=\"H4994\"*, let|strong=\"H4994\"* there|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H1961\"* strife|strong=\"H4808\"* between you|strong=\"H3588\"* and|strong=\"H4994\"* me|strong=\"H4994\"*, and|strong=\"H4994\"* between your|strong=\"H3588\"* herdsmen|strong=\"H7473\"* and|strong=\"H4994\"* my|strong=\"H1961\"* herdsmen|strong=\"H7473\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H1961\"* relatives." + }, + { + "verseNum": 9, + "text": "Isn’t the|strong=\"H3605\"* whole|strong=\"H3605\"* land|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*? Please|strong=\"H4994\"* separate|strong=\"H6504\"* yourself|strong=\"H3231\"* from|strong=\"H6440\"* me|strong=\"H6440\"*. If you|strong=\"H6440\"* go|strong=\"H8041\"* to|strong=\"H5921\"* the|strong=\"H3605\"* left|strong=\"H8040\"* hand|strong=\"H3225\"*, then|strong=\"H3808\"* I|strong=\"H5921\"* will|strong=\"H3808\"* go|strong=\"H8041\"* to|strong=\"H5921\"* the|strong=\"H3605\"* right|strong=\"H3225\"*. Or|strong=\"H3808\"* if you|strong=\"H6440\"* go|strong=\"H8041\"* to|strong=\"H5921\"* the|strong=\"H3605\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*, then|strong=\"H3808\"* I|strong=\"H5921\"* will|strong=\"H3808\"* go|strong=\"H8041\"* to|strong=\"H5921\"* the|strong=\"H3605\"* left|strong=\"H8040\"*.”" + }, + { + "verseNum": 10, + "text": "Lot|strong=\"H3876\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H3605\"* eyes|strong=\"H5869\"*, and|strong=\"H3068\"* saw|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* plain|strong=\"H3603\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3068\"* well-watered everywhere|strong=\"H3605\"*, before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* destroyed|strong=\"H7843\"* Sodom|strong=\"H5467\"* and|strong=\"H3068\"* Gomorrah|strong=\"H6017\"*, like|strong=\"H3068\"* the|strong=\"H3605\"* garden|strong=\"H1588\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, like|strong=\"H3068\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, as|strong=\"H3068\"* you|strong=\"H3588\"* go|strong=\"H3068\"* to|strong=\"H3068\"* Zoar|strong=\"H6820\"*." + }, + { + "verseNum": 11, + "text": "So|strong=\"H5921\"* Lot|strong=\"H3876\"* chose the|strong=\"H3605\"* Plain|strong=\"H3603\"* of|strong=\"H3603\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* for|strong=\"H5921\"* himself|strong=\"H6504\"*. Lot|strong=\"H3876\"* traveled|strong=\"H5265\"* east|strong=\"H6924\"*, and|strong=\"H5265\"* they|strong=\"H5921\"* separated|strong=\"H6504\"* themselves|strong=\"H6504\"* from|strong=\"H5265\"* one|strong=\"H3605\"* another." + }, + { + "verseNum": 12, + "text": "Abram lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5704\"* land of|strong=\"H3427\"* Canaan|strong=\"H3667\"*, and|strong=\"H5892\"* Lot|strong=\"H3876\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5704\"* cities|strong=\"H5892\"* of|strong=\"H3427\"* the|strong=\"H5704\"* plain|strong=\"H3603\"*, and|strong=\"H5892\"* moved his|strong=\"H3427\"* tent as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Sodom|strong=\"H5467\"*." + }, + { + "verseNum": 13, + "text": "Now the|strong=\"H3068\"* men|strong=\"H7451\"* of|strong=\"H3068\"* Sodom|strong=\"H5467\"* were|strong=\"H7451\"* exceedingly|strong=\"H3966\"* wicked|strong=\"H7451\"* and|strong=\"H3068\"* sinners|strong=\"H2400\"* against|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Abram, after|strong=\"H4480\"* Lot|strong=\"H3876\"* was|strong=\"H3068\"* separated|strong=\"H6504\"* from|strong=\"H4480\"* him|strong=\"H7200\"*, “Now|strong=\"H4994\"*, lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, and|strong=\"H3068\"* look|strong=\"H7200\"* from|strong=\"H4480\"* the|strong=\"H7200\"* place|strong=\"H4725\"* where|strong=\"H8033\"* you|strong=\"H5973\"* are|strong=\"H5869\"*, northward|strong=\"H6828\"* and|strong=\"H3068\"* southward|strong=\"H5045\"* and|strong=\"H3068\"* eastward|strong=\"H6924\"* and|strong=\"H3068\"* westward|strong=\"H3220\"*," + }, + { + "verseNum": 15, + "text": "for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5414\"* give|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land which|strong=\"H3588\"* you|strong=\"H3588\"* see|strong=\"H7200\"* to|strong=\"H5704\"* you|strong=\"H3588\"* and|strong=\"H5769\"* to|strong=\"H5704\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"H7760\"* will|strong=\"H1571\"* make|strong=\"H7760\"* your|strong=\"H7760\"* offspring|strong=\"H2233\"* as|strong=\"H1571\"* the|strong=\"H7760\"* dust|strong=\"H6083\"* of|strong=\"H2233\"* the|strong=\"H7760\"* earth|strong=\"H6083\"*, so|strong=\"H1571\"* that|strong=\"H1571\"* if|strong=\"H7760\"* a|strong=\"H3068\"* man can|strong=\"H3201\"* count|strong=\"H4487\"* the|strong=\"H7760\"* dust|strong=\"H6083\"* of|strong=\"H2233\"* the|strong=\"H7760\"* earth|strong=\"H6083\"*, then|strong=\"H1571\"* your|strong=\"H7760\"* offspring|strong=\"H2233\"* may|strong=\"H3201\"* also|strong=\"H1571\"* be|strong=\"H1571\"* counted|strong=\"H4487\"*." + }, + { + "verseNum": 17, + "text": "Arise|strong=\"H6965\"*, walk|strong=\"H1980\"* through|strong=\"H1980\"* the|strong=\"H3588\"* land in|strong=\"H1980\"* its|strong=\"H5414\"* length and|strong=\"H1980\"* in|strong=\"H1980\"* its|strong=\"H5414\"* width|strong=\"H7341\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5414\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H1980\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 18, + "text": "Abram moved his|strong=\"H3068\"* tent, and|strong=\"H3068\"* came|strong=\"H3068\"* and|strong=\"H3068\"* lived|strong=\"H3427\"* by|strong=\"H3068\"* the|strong=\"H3068\"* oaks of|strong=\"H3068\"* Mamre|strong=\"H4471\"*, which|strong=\"H3068\"* are|strong=\"H3068\"* in|strong=\"H3427\"* Hebron|strong=\"H2275\"*, and|strong=\"H3068\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* there|strong=\"H8033\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H4428\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Amraphel, king|strong=\"H4428\"* of|strong=\"H4428\"* Shinar|strong=\"H8152\"*; Arioch, king|strong=\"H4428\"* of|strong=\"H4428\"* Ellasar; Chedorlaomer|strong=\"H3540\"*, king|strong=\"H4428\"* of|strong=\"H4428\"* Elam|strong=\"H5867\"*; and|strong=\"H4428\"* Tidal|strong=\"H8413\"*, king|strong=\"H4428\"* of|strong=\"H4428\"* Goiim|strong=\"H1471\"*," + }, + { + "verseNum": 2, + "text": "they|strong=\"H1931\"* made|strong=\"H6213\"* war|strong=\"H4421\"* with|strong=\"H6213\"* Bera|strong=\"H1298\"*, king|strong=\"H4428\"* of|strong=\"H4428\"* Sodom|strong=\"H5467\"*; Birsha|strong=\"H1306\"*, king|strong=\"H4428\"* of|strong=\"H4428\"* Gomorrah|strong=\"H6017\"*; Shinab|strong=\"H8134\"*, king|strong=\"H4428\"* of|strong=\"H4428\"* Admah; Shemeber|strong=\"H8038\"*, king|strong=\"H4428\"* of|strong=\"H4428\"* Zeboiim|strong=\"H6636\"*; and|strong=\"H4428\"* the|strong=\"H6213\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bela|strong=\"H1106\"* (also|strong=\"H6213\"* called Zoar|strong=\"H6820\"*)." + }, + { + "verseNum": 3, + "text": "All|strong=\"H3605\"* these|strong=\"H1931\"* joined|strong=\"H2266\"* together|strong=\"H2266\"* in|strong=\"H3220\"* the|strong=\"H3605\"* valley|strong=\"H6010\"* of|strong=\"H6010\"* Siddim|strong=\"H7708\"* (also|strong=\"H1931\"* called the|strong=\"H3605\"* Salt|strong=\"H4417\"* Sea|strong=\"H3220\"*)." + }, + { + "verseNum": 4, + "text": "They|strong=\"H8141\"* served|strong=\"H5647\"* Chedorlaomer|strong=\"H3540\"* for|strong=\"H8141\"* twelve|strong=\"H8147\"* years|strong=\"H8141\"*, and|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H5647\"* thirteenth|strong=\"H7969\"* year|strong=\"H8141\"* they|strong=\"H8141\"* rebelled|strong=\"H4775\"*." + }, + { + "verseNum": 5, + "text": "In|strong=\"H8141\"* the|strong=\"H5221\"* fourteenth|strong=\"H6240\"* year|strong=\"H8141\"* Chedorlaomer|strong=\"H3540\"* and|strong=\"H4428\"* the|strong=\"H5221\"* kings|strong=\"H4428\"* who|strong=\"H4428\"* were|strong=\"H4428\"* with|strong=\"H4428\"* him|strong=\"H5221\"* came|strong=\"H4428\"* and|strong=\"H4428\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* Rephaim|strong=\"H7497\"* in|strong=\"H8141\"* Ashteroth Karnaim|strong=\"H6255\"*, the|strong=\"H5221\"* Zuzim|strong=\"H2104\"* in|strong=\"H8141\"* Ham|strong=\"H1990\"*, the|strong=\"H5221\"* Emim in|strong=\"H8141\"* Shaveh|strong=\"H7740\"* Kiriathaim|strong=\"H7156\"*," + }, + { + "verseNum": 6, + "text": "and|strong=\"H2022\"* the|strong=\"H5921\"* Horites|strong=\"H2752\"* in|strong=\"H5921\"* their|strong=\"H5921\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"*, to|strong=\"H5704\"* El Paran, which|strong=\"H2022\"* is|strong=\"H4057\"* by|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H1931\"* returned|strong=\"H7725\"*, and|strong=\"H7725\"* came|strong=\"H7725\"* to|strong=\"H7725\"* En Mishpat (also|strong=\"H1571\"* called Kadesh|strong=\"H6946\"*), and|strong=\"H7725\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* country|strong=\"H7704\"* of|strong=\"H3427\"* the|strong=\"H3605\"* Amalekites|strong=\"H6003\"*, and|strong=\"H7725\"* also|strong=\"H1571\"* the|strong=\"H3605\"* Amorites, that|strong=\"H3605\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Hazazon Tamar." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3318\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Sodom|strong=\"H5467\"*, and|strong=\"H4428\"* the|strong=\"H3318\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Gomorrah|strong=\"H6017\"*, the|strong=\"H3318\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Admah, the|strong=\"H3318\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Zeboiim|strong=\"H6636\"*, and|strong=\"H4428\"* the|strong=\"H3318\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bela|strong=\"H1106\"* (also|strong=\"H4428\"* called Zoar|strong=\"H6820\"*) went|strong=\"H3318\"* out|strong=\"H3318\"*; and|strong=\"H4428\"* they|strong=\"H1931\"* set|strong=\"H6186\"* the|strong=\"H3318\"* battle|strong=\"H4421\"* in|strong=\"H4428\"* array|strong=\"H6186\"* against|strong=\"H4421\"* them|strong=\"H3318\"* in|strong=\"H4428\"* the|strong=\"H3318\"* valley|strong=\"H6010\"* of|strong=\"H4428\"* Siddim|strong=\"H7708\"*" + }, + { + "verseNum": 9, + "text": "against|strong=\"H1471\"* Chedorlaomer|strong=\"H3540\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Elam|strong=\"H5867\"*, Tidal|strong=\"H8413\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Goiim|strong=\"H1471\"*, Amraphel king|strong=\"H4428\"* of|strong=\"H4428\"* Shinar|strong=\"H8152\"*, and|strong=\"H4428\"* Arioch king|strong=\"H4428\"* of|strong=\"H4428\"* Ellasar; four kings|strong=\"H4428\"* against|strong=\"H1471\"* the|strong=\"H1471\"* five|strong=\"H2568\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H4428\"* the|strong=\"H8033\"* valley|strong=\"H6010\"* of|strong=\"H4428\"* Siddim|strong=\"H7708\"* was|strong=\"H4428\"* full of|strong=\"H4428\"* tar|strong=\"H2564\"* pits|strong=\"H5127\"*; and|strong=\"H4428\"* the|strong=\"H8033\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Sodom|strong=\"H5467\"* and|strong=\"H4428\"* Gomorrah|strong=\"H6017\"* fled|strong=\"H5127\"*, and|strong=\"H4428\"* some|strong=\"H8033\"* fell|strong=\"H5307\"* there|strong=\"H8033\"*. Those who|strong=\"H4428\"* remained|strong=\"H7604\"* fled|strong=\"H5127\"* to|strong=\"H4428\"* the|strong=\"H8033\"* hills|strong=\"H2022\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3605\"* took|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* goods|strong=\"H7399\"* of|strong=\"H3605\"* Sodom|strong=\"H5467\"* and|strong=\"H3212\"* Gomorrah|strong=\"H6017\"*, and|strong=\"H3212\"* all|strong=\"H3605\"* their|strong=\"H3605\"* food, and|strong=\"H3212\"* went|strong=\"H3212\"* their|strong=\"H3605\"* way|strong=\"H3212\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H1931\"* took|strong=\"H3947\"* Lot|strong=\"H3876\"*, Abram’s brother’s son|strong=\"H1121\"*, who|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Sodom|strong=\"H5467\"*, and|strong=\"H1121\"* his|strong=\"H3947\"* goods|strong=\"H7399\"*, and|strong=\"H1121\"* departed|strong=\"H3212\"*." + }, + { + "verseNum": 13, + "text": "One|strong=\"H1931\"* who|strong=\"H1931\"* had|strong=\"H1167\"* escaped|strong=\"H6412\"* came and|strong=\"H1285\"* told|strong=\"H5046\"* Abram, the|strong=\"H5046\"* Hebrew|strong=\"H5680\"*. At|strong=\"H7931\"* that|strong=\"H1931\"* time, he|strong=\"H1931\"* lived|strong=\"H7931\"* by|strong=\"H1167\"* the|strong=\"H5046\"* oaks of|strong=\"H1167\"* Mamre|strong=\"H4471\"*, the|strong=\"H5046\"* Amorite, brother of|strong=\"H1167\"* Eshcol and|strong=\"H1285\"* brother of|strong=\"H1167\"* Aner|strong=\"H6063\"*. They|strong=\"H1992\"* were|strong=\"H1992\"* allies|strong=\"H1167\"* of|strong=\"H1167\"* Abram." + }, + { + "verseNum": 14, + "text": "When|strong=\"H3588\"* Abram heard|strong=\"H8085\"* that|strong=\"H3588\"* his|strong=\"H8085\"* relative was|strong=\"H1004\"* taken|strong=\"H7617\"* captive|strong=\"H7617\"*, he|strong=\"H3588\"* led|strong=\"H7617\"* out|strong=\"H7324\"* his|strong=\"H8085\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* eighteen|strong=\"H8083\"* trained|strong=\"H2593\"* men|strong=\"H2593\"*, born|strong=\"H3211\"* in|strong=\"H1004\"* his|strong=\"H8085\"* house|strong=\"H1004\"*, and|strong=\"H3967\"* pursued|strong=\"H7291\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Dan|strong=\"H1835\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H1931\"* divided|strong=\"H2505\"* himself|strong=\"H1931\"* against|strong=\"H5921\"* them|strong=\"H5921\"* by|strong=\"H5921\"* night|strong=\"H3915\"*, he|strong=\"H1931\"* and|strong=\"H5650\"* his|strong=\"H5921\"* servants|strong=\"H5650\"*, and|strong=\"H5650\"* struck|strong=\"H5221\"* them|strong=\"H5921\"*, and|strong=\"H5650\"* pursued|strong=\"H7291\"* them|strong=\"H5921\"* to|strong=\"H5704\"* Hobah|strong=\"H2327\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* on|strong=\"H5921\"* the|strong=\"H5921\"* left|strong=\"H8040\"* hand|strong=\"H8040\"* of|strong=\"H5650\"* Damascus|strong=\"H1834\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H3605\"* brought|strong=\"H7725\"* back|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* goods|strong=\"H7399\"*, and|strong=\"H7725\"* also|strong=\"H1571\"* brought|strong=\"H7725\"* back|strong=\"H7725\"* his|strong=\"H3605\"* relative Lot|strong=\"H3876\"* and|strong=\"H7725\"* his|strong=\"H3605\"* goods|strong=\"H7399\"*, and|strong=\"H7725\"* the|strong=\"H3605\"* women also|strong=\"H1571\"*, and|strong=\"H7725\"* the|strong=\"H3605\"* other|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H5221\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Sodom|strong=\"H5467\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H7725\"* meet|strong=\"H7125\"* him|strong=\"H5221\"* after|strong=\"H3318\"* his|strong=\"H7725\"* return|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H5221\"* slaughter|strong=\"H5221\"* of|strong=\"H4428\"* Chedorlaomer|strong=\"H3540\"* and|strong=\"H7725\"* the|strong=\"H5221\"* kings|strong=\"H4428\"* who|strong=\"H1931\"* were|strong=\"H4428\"* with|strong=\"H3318\"* him|strong=\"H5221\"*, at|strong=\"H4428\"* the|strong=\"H5221\"* valley|strong=\"H6010\"* of|strong=\"H4428\"* Shaveh|strong=\"H7740\"* (that|strong=\"H1931\"* is|strong=\"H1931\"*, the|strong=\"H5221\"* King|strong=\"H4428\"*’s Valley|strong=\"H6010\"*)." + }, + { + "verseNum": 18, + "text": "Melchizedek|strong=\"H4442\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Salem|strong=\"H8004\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* bread|strong=\"H3899\"* and|strong=\"H4428\"* wine|strong=\"H3196\"*. He|strong=\"H1931\"* was|strong=\"H1931\"* priest|strong=\"H3548\"* of|strong=\"H4428\"* God Most|strong=\"H5945\"* High|strong=\"H5945\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H7069\"* blessed|strong=\"H1288\"* him|strong=\"H1288\"*, and|strong=\"H8064\"* said, “Blessed|strong=\"H1288\"* be|strong=\"H1288\"* Abram of|strong=\"H8064\"* God|strong=\"H8064\"* Most|strong=\"H5945\"* High|strong=\"H5945\"*, possessor|strong=\"H7069\"* of|strong=\"H8064\"* heaven|strong=\"H8064\"* and|strong=\"H8064\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 20, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H3027\"* God|strong=\"H5414\"* Most|strong=\"H5945\"* High|strong=\"H5945\"*, who|strong=\"H3605\"* has|strong=\"H3027\"* delivered|strong=\"H5414\"* your|strong=\"H3605\"* enemies|strong=\"H6862\"* into|strong=\"H3027\"* your|strong=\"H3605\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 21, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Sodom|strong=\"H5467\"* said to|strong=\"H5414\"* Abram, “Give|strong=\"H5414\"* me|strong=\"H5414\"* the|strong=\"H5414\"* people|strong=\"H5315\"*, and|strong=\"H4428\"* take|strong=\"H3947\"* the|strong=\"H5414\"* goods|strong=\"H7399\"* for|strong=\"H4428\"* yourself|strong=\"H5315\"*.”" + }, + { + "verseNum": 22, + "text": "Abram said to|strong=\"H3068\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Sodom|strong=\"H5467\"*, “I|strong=\"H3027\"* have|strong=\"H3068\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* my|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, God|strong=\"H3068\"* Most|strong=\"H5945\"* High|strong=\"H7311\"*, possessor|strong=\"H7069\"* of|strong=\"H4428\"* heaven|strong=\"H8064\"* and|strong=\"H3068\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 23, + "text": "that|strong=\"H3605\"* I|strong=\"H5704\"* will|strong=\"H3808\"* not|strong=\"H3808\"* take|strong=\"H3947\"* a|strong=\"H3068\"* thread|strong=\"H2339\"* nor|strong=\"H3808\"* a|strong=\"H3068\"* sandal|strong=\"H5275\"* strap|strong=\"H8288\"* nor|strong=\"H3808\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* yours, lest you|strong=\"H3605\"* should say, ‘I|strong=\"H5704\"* have|strong=\"H3605\"* made|strong=\"H6238\"* Abram rich|strong=\"H6238\"*.’" + }, + { + "verseNum": 24, + "text": "I|strong=\"H5288\"* will|strong=\"H5288\"* accept|strong=\"H3947\"* nothing|strong=\"H1107\"* from|strong=\"H1980\"* you|strong=\"H3947\"* except|strong=\"H7535\"* that|strong=\"H5288\"* which|strong=\"H1992\"* the|strong=\"H3947\"* young|strong=\"H5288\"* men|strong=\"H5288\"* have|strong=\"H5288\"* eaten, and|strong=\"H1980\"* the|strong=\"H3947\"* portion|strong=\"H2506\"* of|strong=\"H2506\"* the|strong=\"H3947\"* men|strong=\"H5288\"* who|strong=\"H1992\"* went|strong=\"H1980\"* with|strong=\"H1980\"* me|strong=\"H3947\"*: Aner|strong=\"H6063\"*, Eshcol, and|strong=\"H1980\"* Mamre|strong=\"H4471\"*. Let|strong=\"H1980\"* them|strong=\"H1992\"* take|strong=\"H3947\"* their|strong=\"H3947\"* portion|strong=\"H2506\"*.”" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* these things|strong=\"H1697\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Abram in|strong=\"H3068\"* a|strong=\"H3068\"* vision|strong=\"H4236\"*, saying|strong=\"H1697\"*, “Don’t be|strong=\"H1961\"* afraid|strong=\"H3372\"*, Abram. I|strong=\"H1697\"* am|strong=\"H1961\"* your|strong=\"H3068\"* shield|strong=\"H4043\"*, your|strong=\"H3068\"* exceedingly|strong=\"H3966\"* great|strong=\"H3966\"* reward|strong=\"H7939\"*.”" + }, + { + "verseNum": 2, + "text": "Abram said, “Lord|strong=\"H3069\"*+ 15:2 The word translated “Lord” is “Adonai”.* Yahweh|strong=\"H3068\"*, what|strong=\"H4100\"* will|strong=\"H1121\"* you|strong=\"H5414\"* give|strong=\"H5414\"* me|strong=\"H5414\"*, since I|strong=\"H5414\"* go|strong=\"H1980\"* childless|strong=\"H6185\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* who|strong=\"H1931\"* will|strong=\"H1121\"* inherit my|strong=\"H5414\"* estate|strong=\"H1004\"* is|strong=\"H1931\"* Eliezer of|strong=\"H1121\"* Damascus|strong=\"H1834\"*?”" + }, + { + "verseNum": 3, + "text": "Abram said, “Behold|strong=\"H2009\"*, you|strong=\"H5414\"* have|strong=\"H1121\"* given|strong=\"H5414\"* no|strong=\"H3808\"* children|strong=\"H1121\"* to|strong=\"H5414\"* me|strong=\"H5414\"*: and|strong=\"H1121\"*, behold|strong=\"H2009\"*, one|strong=\"H3808\"* born|strong=\"H1121\"* in|strong=\"H1004\"* my|strong=\"H5414\"* house|strong=\"H1004\"* is|strong=\"H2009\"* my|strong=\"H5414\"* heir|strong=\"H3423\"*.”" + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H3318\"*, saying|strong=\"H1697\"*, “This|strong=\"H2088\"* man|strong=\"H2088\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* your|strong=\"H3068\"* heir|strong=\"H3423\"*, but|strong=\"H3588\"* he|strong=\"H1931\"* who|strong=\"H1931\"* will|strong=\"H3068\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* your|strong=\"H3068\"* own|strong=\"H4578\"* body|strong=\"H4578\"* will|strong=\"H3068\"* be|strong=\"H3808\"* your|strong=\"H3068\"* heir|strong=\"H3423\"*.”" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* brought|strong=\"H3318\"* him|strong=\"H3318\"* outside|strong=\"H2351\"*, and|strong=\"H8064\"* said|strong=\"H3318\"*, “Look|strong=\"H5027\"* now|strong=\"H4994\"* toward|strong=\"H3318\"* the|strong=\"H3541\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* count|strong=\"H5608\"* the|strong=\"H3541\"* stars|strong=\"H3556\"*, if|strong=\"H1961\"* you|strong=\"H4994\"* are|strong=\"H8064\"* able|strong=\"H3201\"* to|strong=\"H3318\"* count|strong=\"H5608\"* them|strong=\"H3318\"*.” He|strong=\"H3201\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Abram, “So|strong=\"H3541\"* your|strong=\"H4994\"* offspring|strong=\"H2233\"* will|strong=\"H1961\"* be|strong=\"H1961\"*.”" + }, + { + "verseNum": 6, + "text": "He|strong=\"H3068\"* believed in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* credited|strong=\"H2803\"* it|strong=\"H2803\"* to|strong=\"H3068\"* him|strong=\"H2803\"* for|strong=\"H3068\"* righteousness|strong=\"H6666\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3068\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Abram, “I|strong=\"H5414\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H5414\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Ur of|strong=\"H3068\"* the|strong=\"H5414\"* Chaldees|strong=\"H3778\"*, to|strong=\"H3318\"* give|strong=\"H5414\"* you|strong=\"H5414\"* this|strong=\"H2063\"* land to|strong=\"H3318\"* inherit|strong=\"H3423\"* it|strong=\"H5414\"*.”" + }, + { + "verseNum": 8, + "text": "He|strong=\"H3588\"* said, “Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, how|strong=\"H4100\"* will|strong=\"H4100\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H4100\"* inherit|strong=\"H3423\"* it|strong=\"H3588\"*?”" + }, + { + "verseNum": 9, + "text": "He|strong=\"H5795\"* said to|strong=\"H3947\"* him|strong=\"H3947\"*, “Bring|strong=\"H3947\"* me|strong=\"H3947\"* a|strong=\"H3068\"* heifer|strong=\"H5697\"* three|strong=\"H8027\"* years old|strong=\"H8027\"*, a|strong=\"H3068\"* female|strong=\"H5795\"* goat|strong=\"H5795\"* three|strong=\"H8027\"* years old|strong=\"H8027\"*, a|strong=\"H3068\"* ram three|strong=\"H8027\"* years old|strong=\"H8027\"*, a|strong=\"H3068\"* turtledove|strong=\"H8449\"*, and|strong=\"H3947\"* a|strong=\"H3068\"* young|strong=\"H1469\"* pigeon|strong=\"H1469\"*.”" + }, + { + "verseNum": 10, + "text": "He|strong=\"H3605\"* brought|strong=\"H3947\"* him|strong=\"H5414\"* all|strong=\"H3605\"* these|strong=\"H3947\"*, and|strong=\"H3947\"* divided|strong=\"H1334\"* them|strong=\"H5414\"* in|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"*, and|strong=\"H3947\"* laid|strong=\"H5414\"* each|strong=\"H3605\"* half|strong=\"H1335\"* opposite|strong=\"H7125\"* the|strong=\"H3605\"* other|strong=\"H7453\"*; but|strong=\"H3808\"* he|strong=\"H3605\"* didn’t divide|strong=\"H5414\"* the|strong=\"H3605\"* birds|strong=\"H6833\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* birds|strong=\"H5861\"* of|strong=\"H5921\"* prey|strong=\"H5861\"* came|strong=\"H3381\"* down|strong=\"H3381\"* on|strong=\"H5921\"* the|strong=\"H5921\"* carcasses|strong=\"H6297\"*, and|strong=\"H3381\"* Abram drove|strong=\"H5380\"* them|strong=\"H5921\"* away|strong=\"H5380\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"H1961\"* the|strong=\"H5921\"* sun|strong=\"H8121\"* was|strong=\"H1961\"* going|strong=\"H5307\"* down|strong=\"H5307\"*, a|strong=\"H3068\"* deep|strong=\"H8639\"* sleep|strong=\"H8639\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* Abram. Now|strong=\"H1961\"* terror and|strong=\"H1419\"* great|strong=\"H1419\"* darkness|strong=\"H2825\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3588\"* said to|strong=\"H1961\"* Abram, “Know|strong=\"H3045\"* for|strong=\"H3588\"* sure|strong=\"H3045\"* that|strong=\"H3588\"* your|strong=\"H3045\"* offspring|strong=\"H2233\"* will|strong=\"H1961\"* live|strong=\"H8141\"* as|strong=\"H1961\"* foreigners|strong=\"H1616\"* in|strong=\"H8141\"* a|strong=\"H3068\"* land that|strong=\"H3588\"* is|strong=\"H1961\"* not|strong=\"H3808\"* theirs, and|strong=\"H3967\"* will|strong=\"H1961\"* serve|strong=\"H5647\"* them|strong=\"H1961\"*. They|strong=\"H3588\"* will|strong=\"H1961\"* afflict|strong=\"H6031\"* them|strong=\"H1961\"* four hundred|strong=\"H3967\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3651\"* will|strong=\"H1471\"* also|strong=\"H1571\"* judge|strong=\"H1777\"* that|strong=\"H1471\"* nation|strong=\"H1471\"*, whom they|strong=\"H3651\"* will|strong=\"H1471\"* serve|strong=\"H5647\"*. Afterward they|strong=\"H3651\"* will|strong=\"H1471\"* come|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H3318\"* great|strong=\"H1419\"* wealth|strong=\"H7399\"*;" + }, + { + "verseNum": 15, + "text": "but you|strong=\"H2896\"* will|strong=\"H2896\"* go|strong=\"H7872\"* to|strong=\"H2896\"* your|strong=\"H6912\"* fathers in|strong=\"H6912\"* peace|strong=\"H7965\"*. You|strong=\"H2896\"* will|strong=\"H2896\"* be|strong=\"H7965\"* buried|strong=\"H6912\"* at|strong=\"H6912\"* a|strong=\"H3068\"* good|strong=\"H2896\"* old|strong=\"H7872\"* age|strong=\"H7872\"*." + }, + { + "verseNum": 16, + "text": "In|strong=\"H7725\"* the|strong=\"H3588\"* fourth|strong=\"H7243\"* generation|strong=\"H1755\"* they|strong=\"H3588\"* will|strong=\"H3808\"* come|strong=\"H7725\"* here|strong=\"H2008\"* again|strong=\"H7725\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* iniquity|strong=\"H5771\"* of|strong=\"H5771\"* the|strong=\"H3588\"* Amorite is|strong=\"H5771\"* not|strong=\"H3808\"* yet|strong=\"H3588\"* full|strong=\"H8003\"*.”" + }, + { + "verseNum": 17, + "text": "It|strong=\"H1961\"* came|strong=\"H1961\"* to|strong=\"H1961\"* pass|strong=\"H5674\"* that|strong=\"H1961\"*, when|strong=\"H1961\"* the|strong=\"H5674\"* sun|strong=\"H8121\"* went|strong=\"H5674\"* down, and|strong=\"H5674\"* it|strong=\"H1961\"* was|strong=\"H1961\"* dark|strong=\"H5939\"*, behold|strong=\"H2009\"*, a|strong=\"H3068\"* smoking|strong=\"H6227\"* furnace|strong=\"H8574\"* and|strong=\"H5674\"* a|strong=\"H3068\"* flaming torch|strong=\"H3940\"* passed|strong=\"H5674\"* between|strong=\"H5674\"* these pieces|strong=\"H1506\"*." + }, + { + "verseNum": 18, + "text": "In|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"* Yahweh|strong=\"H3068\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* Abram, saying, “I|strong=\"H3117\"* have|strong=\"H3068\"* given|strong=\"H5414\"* this|strong=\"H2063\"* land to|strong=\"H5704\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*, from|strong=\"H3772\"* the|strong=\"H5414\"* river|strong=\"H5104\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"* to|strong=\"H5704\"* the|strong=\"H5414\"* great|strong=\"H1419\"* river|strong=\"H5104\"*, the|strong=\"H5414\"* river|strong=\"H5104\"* Euphrates|strong=\"H6578\"*:" + }, + { + "verseNum": 19, + "text": "the land of the Kenites|strong=\"H7017\"*, the Kenizzites|strong=\"H7074\"*, the Kadmonites|strong=\"H6935\"*," + }, + { + "verseNum": 20, + "text": "the Hittites|strong=\"H2850\"*, the Perizzites|strong=\"H6522\"*, the Rephaim|strong=\"H7497\"*," + }, + { + "verseNum": 21, + "text": "the|strong=\"H2983\"* Amorites, the|strong=\"H2983\"* Canaanites|strong=\"H3669\"*, the|strong=\"H2983\"* Girgashites|strong=\"H1622\"*, and|strong=\"H2983\"* the|strong=\"H2983\"* Jebusites|strong=\"H2983\"*.”" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Now Sarai|strong=\"H8297\"*, Abram’s wife, bore|strong=\"H3205\"* him|strong=\"H3205\"* no|strong=\"H3808\"* children|strong=\"H3205\"*. She|strong=\"H3808\"* had|strong=\"H3205\"* a|strong=\"H3068\"* servant|strong=\"H8198\"*, an|strong=\"H3205\"* Egyptian|strong=\"H4713\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Hagar|strong=\"H1904\"*." + }, + { + "verseNum": 2, + "text": "Sarai|strong=\"H8297\"* said|strong=\"H8085\"* to|strong=\"H3068\"* Abram, “See|strong=\"H2009\"* now|strong=\"H4994\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* restrained|strong=\"H6113\"* me|strong=\"H4994\"* from|strong=\"H4480\"* bearing|strong=\"H3205\"*. Please|strong=\"H4994\"* go|strong=\"H3068\"* in|strong=\"H3068\"* to|strong=\"H3068\"* my|strong=\"H8085\"* servant|strong=\"H8198\"*. It|strong=\"H1129\"* may|strong=\"H4994\"* be|strong=\"H3068\"* that|strong=\"H8085\"* I|strong=\"H2009\"* will|strong=\"H3068\"* obtain|strong=\"H1129\"* children|strong=\"H3205\"* by|strong=\"H3068\"* her|strong=\"H1129\"*.” Abram listened|strong=\"H8085\"* to|strong=\"H3068\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* Sarai|strong=\"H8297\"*." + }, + { + "verseNum": 3, + "text": "Sarai|strong=\"H8297\"*, Abram’s wife, took|strong=\"H3947\"* Hagar|strong=\"H1904\"* the|strong=\"H5414\"* Egyptian|strong=\"H4713\"*, her|strong=\"H5414\"* servant|strong=\"H8198\"*, after|strong=\"H7093\"* Abram had|strong=\"H5414\"* lived|strong=\"H3427\"* ten|strong=\"H6235\"* years|strong=\"H8141\"* in|strong=\"H3427\"* the|strong=\"H5414\"* land of|strong=\"H8141\"* Canaan|strong=\"H3667\"*, and|strong=\"H8141\"* gave|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H5414\"* Abram her|strong=\"H5414\"* husband to|strong=\"H5414\"* be|strong=\"H5414\"* his|strong=\"H5414\"* wife." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3588\"* went|strong=\"H7200\"* in|strong=\"H5869\"* to|strong=\"H7200\"* Hagar|strong=\"H1904\"*, and|strong=\"H5869\"* she|strong=\"H3588\"* conceived|strong=\"H2029\"*. When|strong=\"H3588\"* she|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* she|strong=\"H3588\"* had|strong=\"H3588\"* conceived|strong=\"H2029\"*, her|strong=\"H7200\"* mistress|strong=\"H1404\"* was|strong=\"H1404\"* despised|strong=\"H7043\"* in|strong=\"H5869\"* her|strong=\"H7200\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 5, + "text": "Sarai|strong=\"H8297\"* said to|strong=\"H3068\"* Abram, “This|strong=\"H5414\"* wrong|strong=\"H2555\"* is|strong=\"H3068\"* your|strong=\"H3068\"* fault. I|strong=\"H3588\"* gave|strong=\"H5414\"* my|strong=\"H5414\"* servant|strong=\"H8198\"* into|strong=\"H8199\"* your|strong=\"H3068\"* bosom|strong=\"H2436\"*, and|strong=\"H3068\"* when|strong=\"H3588\"* she|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* she|strong=\"H3588\"* had|strong=\"H3068\"* conceived|strong=\"H2029\"*, she|strong=\"H3588\"* despised|strong=\"H7043\"* me|strong=\"H5414\"*. May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* judge|strong=\"H8199\"* between|strong=\"H8199\"* me|strong=\"H5414\"* and|strong=\"H3068\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 6, + "text": "But|strong=\"H2009\"* Abram said to|strong=\"H6213\"* Sarai|strong=\"H8297\"*, “Behold|strong=\"H2009\"*, your|strong=\"H6440\"* maid|strong=\"H8198\"* is|strong=\"H3027\"* in|strong=\"H6213\"* your|strong=\"H6440\"* hand|strong=\"H3027\"*. Do|strong=\"H6213\"* to|strong=\"H6213\"* her|strong=\"H6213\"* whatever|strong=\"H2896\"* is|strong=\"H3027\"* good|strong=\"H2896\"* in|strong=\"H6213\"* your|strong=\"H6440\"* eyes|strong=\"H5869\"*.” Sarai|strong=\"H8297\"* dealt|strong=\"H6213\"* harshly|strong=\"H6031\"* with|strong=\"H6213\"* her|strong=\"H6213\"*, and|strong=\"H3027\"* she|strong=\"H6440\"* fled|strong=\"H1272\"* from|strong=\"H6440\"* her|strong=\"H6213\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* found|strong=\"H4672\"* her|strong=\"H5921\"* by|strong=\"H5921\"* a|strong=\"H3068\"* fountain|strong=\"H5869\"* of|strong=\"H3068\"* water|strong=\"H4325\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*, by|strong=\"H5921\"* the|strong=\"H5921\"* fountain|strong=\"H5869\"* on|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* to|strong=\"H3068\"* Shur|strong=\"H7793\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H6440\"* said, “Hagar|strong=\"H1904\"*, Sarai|strong=\"H8297\"*’s servant|strong=\"H8198\"*, where|strong=\"H2088\"* did you|strong=\"H6440\"* come|strong=\"H3212\"* from|strong=\"H6440\"*? Where|strong=\"H2088\"* are|strong=\"H6440\"* you|strong=\"H6440\"* going|strong=\"H3212\"*?”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* said to|strong=\"H7725\"* her|strong=\"H7725\"*, “Return|strong=\"H7725\"* to|strong=\"H7725\"* your|strong=\"H3068\"* mistress|strong=\"H1404\"*, and|strong=\"H3068\"* submit|strong=\"H6031\"* yourself|strong=\"H6031\"* under|strong=\"H8478\"* her|strong=\"H7725\"* hands|strong=\"H3027\"*.”" + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* said to|strong=\"H3068\"* her|strong=\"H7235\"*, “I|strong=\"H3808\"* will|strong=\"H3068\"* greatly|strong=\"H7235\"* multiply|strong=\"H7235\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*, that|strong=\"H3068\"* they|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* counted|strong=\"H5608\"* for|strong=\"H3068\"* multitude|strong=\"H7230\"*.”" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* said|strong=\"H7121\"* to|strong=\"H3068\"* her|strong=\"H7121\"*, “Behold|strong=\"H2009\"*, you|strong=\"H3588\"* are|strong=\"H1121\"* with|strong=\"H3068\"* child|strong=\"H2030\"*, and|strong=\"H1121\"* will|strong=\"H3068\"* bear|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* call|strong=\"H7121\"* his|strong=\"H3068\"* name|strong=\"H8034\"* Ishmael|strong=\"H3458\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* heard|strong=\"H8085\"* your|strong=\"H3068\"* affliction|strong=\"H6040\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* wild|strong=\"H6501\"* donkey|strong=\"H6501\"* among|strong=\"H5921\"* men|strong=\"H3605\"*. His|strong=\"H3605\"* hand|strong=\"H3027\"* will|strong=\"H1961\"* be|strong=\"H1961\"* against|strong=\"H5921\"* every|strong=\"H3605\"* man|strong=\"H3605\"*, and|strong=\"H3027\"* every|strong=\"H3605\"* man|strong=\"H3605\"*’s hand|strong=\"H3027\"* against|strong=\"H5921\"* him|strong=\"H6440\"*. He|strong=\"H1931\"* will|strong=\"H1961\"* live|strong=\"H7931\"* opposed|strong=\"H5921\"* to|strong=\"H1961\"* all|strong=\"H3605\"* of|strong=\"H3027\"* his|strong=\"H3605\"* brothers.”" + }, + { + "verseNum": 13, + "text": "She|strong=\"H3588\"* called|strong=\"H7121\"* the|strong=\"H7200\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* her|strong=\"H7200\"*, “You|strong=\"H3588\"* are|strong=\"H3068\"* a|strong=\"H3068\"* God|strong=\"H3068\"* who|strong=\"H3068\"* sees|strong=\"H7200\"*,” for|strong=\"H3588\"* she|strong=\"H3588\"* said|strong=\"H1696\"*, “Have|strong=\"H3068\"* I|strong=\"H3588\"* even|strong=\"H1571\"* stayed alive|strong=\"H7200\"* after|strong=\"H3588\"* seeing|strong=\"H7200\"* him|strong=\"H7121\"*?”" + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5921\"* well|strong=\"H3651\"* was|strong=\"H3651\"* called|strong=\"H7121\"* Beer Lahai Roi.+ 16:14 Beer Lahai Roi means “well of the one who lives and sees me”.* Behold|strong=\"H2009\"*, it|strong=\"H7121\"* is|strong=\"H2009\"* between|strong=\"H5921\"* Kadesh|strong=\"H6946\"* and|strong=\"H7121\"* Bered|strong=\"H1260\"*." + }, + { + "verseNum": 15, + "text": "Hagar|strong=\"H1904\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"* for|strong=\"H7121\"* Abram. Abram called|strong=\"H7121\"* the|strong=\"H3205\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H7121\"* son|strong=\"H1121\"*, whom|strong=\"H7121\"* Hagar|strong=\"H1904\"* bore|strong=\"H3205\"*, Ishmael|strong=\"H3458\"*." + }, + { + "verseNum": 16, + "text": "Abram was|strong=\"H1121\"* eighty-six|strong=\"H8084\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* Hagar|strong=\"H1904\"* bore|strong=\"H3205\"* Ishmael|strong=\"H3458\"* to|strong=\"H3205\"* Abram." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* Abram was|strong=\"H3068\"* ninety-nine|strong=\"H8673\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H1980\"* Abram and|strong=\"H1121\"* said to|strong=\"H1980\"* him|strong=\"H6440\"*, “I|strong=\"H7200\"* am|strong=\"H1961\"* God|strong=\"H3068\"* Almighty|strong=\"H7706\"*. Walk|strong=\"H1980\"* before|strong=\"H6440\"* me|strong=\"H6440\"* and|strong=\"H1121\"* be|strong=\"H1961\"* blameless|strong=\"H8549\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* make|strong=\"H5414\"* my|strong=\"H5414\"* covenant|strong=\"H1285\"* between me|strong=\"H5414\"* and|strong=\"H1285\"* you|strong=\"H5414\"*, and|strong=\"H1285\"* will|strong=\"H5414\"* multiply|strong=\"H7235\"* you|strong=\"H5414\"* exceedingly|strong=\"H3966\"*.”" + }, + { + "verseNum": 3, + "text": "Abram fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H6440\"* face|strong=\"H6440\"*. God talked|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H6440\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 4, + "text": "“As|strong=\"H1961\"* for|strong=\"H1961\"* me|strong=\"H1961\"*, behold|strong=\"H2009\"*, my|strong=\"H1961\"* covenant|strong=\"H1285\"* is|strong=\"H2009\"* with|strong=\"H1285\"* you|strong=\"H1961\"*. You|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* the|strong=\"H1961\"* father of|strong=\"H1995\"* a|strong=\"H3068\"* multitude|strong=\"H1995\"* of|strong=\"H1995\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 5, + "text": "Your|strong=\"H5414\"* name|strong=\"H8034\"* will|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* be|strong=\"H1961\"* called|strong=\"H7121\"* Abram, but|strong=\"H3588\"* your|strong=\"H5414\"* name|strong=\"H8034\"* will|strong=\"H1961\"* be|strong=\"H1961\"* Abraham; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* made|strong=\"H5414\"* you|strong=\"H3588\"* the|strong=\"H3588\"* father of|strong=\"H8034\"* a|strong=\"H3068\"* multitude|strong=\"H1995\"* of|strong=\"H8034\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H5414\"* will|strong=\"H1471\"* make|strong=\"H5414\"* you|strong=\"H5414\"* exceedingly|strong=\"H3966\"* fruitful|strong=\"H6509\"*, and|strong=\"H4428\"* I|strong=\"H5414\"* will|strong=\"H1471\"* make|strong=\"H5414\"* nations|strong=\"H1471\"* of|strong=\"H4428\"* you|strong=\"H5414\"*. Kings|strong=\"H4428\"* will|strong=\"H1471\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H6965\"* will|strong=\"H1961\"* establish|strong=\"H6965\"* my|strong=\"H6965\"* covenant|strong=\"H1285\"* between me|strong=\"H1961\"* and|strong=\"H6965\"* you|strong=\"H6965\"* and|strong=\"H6965\"* your|strong=\"H1961\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* you|strong=\"H6965\"* throughout|strong=\"H1755\"* their|strong=\"H1961\"* generations|strong=\"H1755\"* for|strong=\"H1961\"* an|strong=\"H1961\"* everlasting|strong=\"H5769\"* covenant|strong=\"H1285\"*, to|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* God to|strong=\"H1961\"* you|strong=\"H6965\"* and|strong=\"H6965\"* to|strong=\"H1961\"* your|strong=\"H1961\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* you|strong=\"H6965\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5414\"* will|strong=\"H1961\"* give|strong=\"H5414\"* to|strong=\"H1961\"* you|strong=\"H5414\"*, and|strong=\"H5769\"* to|strong=\"H1961\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* you|strong=\"H5414\"*, the|strong=\"H3605\"* land where|strong=\"H4033\"* you|strong=\"H5414\"* are|strong=\"H1961\"* traveling, all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H2233\"* Canaan|strong=\"H3667\"*, for|strong=\"H3605\"* an|strong=\"H1961\"* everlasting|strong=\"H5769\"* possession|strong=\"H2233\"*. I|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H3605\"* God|strong=\"H5414\"*.”" + }, + { + "verseNum": 9, + "text": "God said to|strong=\"H8104\"* Abraham, “As|strong=\"H2233\"* for|strong=\"H2233\"* you|strong=\"H8104\"*, you|strong=\"H8104\"* shall|strong=\"H2233\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* covenant|strong=\"H1285\"*, you|strong=\"H8104\"* and|strong=\"H1285\"* your|strong=\"H8104\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* you|strong=\"H8104\"* throughout|strong=\"H1755\"* their|strong=\"H8104\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 10, + "text": "This|strong=\"H2063\"* is|strong=\"H3605\"* my|strong=\"H8104\"* covenant|strong=\"H1285\"*, which|strong=\"H1285\"* you|strong=\"H3605\"* shall|strong=\"H2233\"* keep|strong=\"H8104\"*, between me|strong=\"H8104\"* and|strong=\"H1285\"* you|strong=\"H3605\"* and|strong=\"H1285\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* you|strong=\"H3605\"*. Every|strong=\"H3605\"* male|strong=\"H2145\"* among you|strong=\"H3605\"* shall|strong=\"H2233\"* be|strong=\"H2145\"* circumcised|strong=\"H4135\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H1320\"* shall|strong=\"H1320\"* be|strong=\"H1961\"* circumcised in|strong=\"H1320\"* the|strong=\"H1961\"* flesh|strong=\"H1320\"* of|strong=\"H1285\"* your|strong=\"H1961\"* foreskin|strong=\"H6190\"*. It|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* token of|strong=\"H1285\"* the|strong=\"H1961\"* covenant|strong=\"H1285\"* between me|strong=\"H1961\"* and|strong=\"H1285\"* you|strong=\"H1320\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H1931\"* who|strong=\"H3605\"* is|strong=\"H1931\"* eight|strong=\"H8083\"* days|strong=\"H3117\"* old|strong=\"H1121\"* shall|strong=\"H1121\"* be|strong=\"H3808\"* circumcised|strong=\"H4135\"* among|strong=\"H3808\"* you|strong=\"H3605\"*, every|strong=\"H3605\"* male|strong=\"H2145\"* throughout|strong=\"H3605\"* your|strong=\"H3605\"* generations|strong=\"H1755\"*, he|strong=\"H1931\"* who|strong=\"H3605\"* is|strong=\"H1931\"* born|strong=\"H3211\"* in|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, or|strong=\"H3808\"* bought|strong=\"H4736\"* with|strong=\"H1004\"* money|strong=\"H3701\"* from|strong=\"H1121\"* any|strong=\"H3605\"* foreigner|strong=\"H1121\"* who|strong=\"H3605\"* is|strong=\"H1931\"* not|strong=\"H3808\"* of|strong=\"H1121\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1004\"* who|strong=\"H3211\"* is|strong=\"H3701\"* born|strong=\"H3211\"* in|strong=\"H1004\"* your|strong=\"H1961\"* house|strong=\"H1004\"*, and|strong=\"H3701\"* he|strong=\"H1004\"* who|strong=\"H3211\"* is|strong=\"H3701\"* bought|strong=\"H4736\"* with|strong=\"H1004\"* your|strong=\"H1961\"* money|strong=\"H3701\"*, must be|strong=\"H1961\"* circumcised|strong=\"H4135\"*. My|strong=\"H1961\"* covenant|strong=\"H1285\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* in|strong=\"H1004\"* your|strong=\"H1961\"* flesh|strong=\"H1320\"* for|strong=\"H1004\"* an|strong=\"H1961\"* everlasting|strong=\"H5769\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3772\"* uncircumcised|strong=\"H6189\"* male|strong=\"H2145\"* who|strong=\"H1931\"* is|strong=\"H1931\"* not|strong=\"H3808\"* circumcised|strong=\"H4135\"* in|strong=\"H1320\"* the|strong=\"H3772\"* flesh|strong=\"H1320\"* of|strong=\"H5971\"* his|strong=\"H3808\"* foreskin|strong=\"H6190\"*, that|strong=\"H5971\"* soul|strong=\"H5315\"* shall|strong=\"H5971\"* be|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* his|strong=\"H3808\"* people|strong=\"H5971\"*. He|strong=\"H1931\"* has|strong=\"H5315\"* broken|strong=\"H6565\"* my|strong=\"H6565\"* covenant|strong=\"H1285\"*.”" + }, + { + "verseNum": 15, + "text": "God|strong=\"H3808\"* said|strong=\"H7121\"* to|strong=\"H7121\"* Abraham, “As|strong=\"H3588\"* for|strong=\"H3588\"* Sarai|strong=\"H8297\"* your|strong=\"H3588\"* wife, you|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* call|strong=\"H7121\"* her|strong=\"H7121\"* name|strong=\"H8034\"* Sarai|strong=\"H8297\"*, but|strong=\"H3588\"* her|strong=\"H7121\"* name|strong=\"H8034\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* Sarah|strong=\"H8283\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"H5414\"* will|strong=\"H1961\"* bless|strong=\"H1288\"* her|strong=\"H5414\"*, and|strong=\"H1121\"* moreover|strong=\"H1571\"* I|strong=\"H5414\"* will|strong=\"H1961\"* give|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* son|strong=\"H1121\"* by|strong=\"H5414\"* her|strong=\"H5414\"*. Yes|strong=\"H1571\"*, I|strong=\"H5414\"* will|strong=\"H1961\"* bless|strong=\"H1288\"* her|strong=\"H5414\"*, and|strong=\"H1121\"* she|strong=\"H1571\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* mother of|strong=\"H1121\"* nations|strong=\"H1471\"*. Kings|strong=\"H4428\"* of|strong=\"H1121\"* peoples|strong=\"H5971\"* will|strong=\"H1961\"* come|strong=\"H1961\"* from|strong=\"H4480\"* her|strong=\"H5414\"*.”" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H5307\"* Abraham fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H6440\"* face|strong=\"H6440\"*, and|strong=\"H3967\"* laughed|strong=\"H6711\"*, and|strong=\"H3967\"* said in|strong=\"H8141\"* his|strong=\"H6440\"* heart|strong=\"H3820\"*, “Will|strong=\"H1121\"* a|strong=\"H3068\"* child|strong=\"H1121\"* be|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H5921\"* him|strong=\"H3205\"* who|strong=\"H1121\"* is|strong=\"H3820\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"* old|strong=\"H1121\"*? Will|strong=\"H1121\"* Sarah|strong=\"H8283\"*, who|strong=\"H1121\"* is|strong=\"H3820\"* ninety|strong=\"H8673\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, give|strong=\"H3205\"* birth|strong=\"H3205\"*?”" + }, + { + "verseNum": 18, + "text": "Abraham said to|strong=\"H6440\"* God|strong=\"H3863\"*, “Oh|strong=\"H3863\"* that|strong=\"H3863\"* Ishmael|strong=\"H3458\"* might|strong=\"H3458\"* live|strong=\"H2421\"* before|strong=\"H6440\"* you|strong=\"H6440\"*!”" + }, + { + "verseNum": 19, + "text": "God said|strong=\"H7121\"*, “No|strong=\"H6965\"*, but|strong=\"H3205\"* Sarah|strong=\"H8283\"*, your|strong=\"H6965\"* wife, will|strong=\"H1121\"* bear|strong=\"H3205\"* you|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*. You|strong=\"H3205\"* shall|strong=\"H1121\"* call|strong=\"H7121\"* his|strong=\"H7121\"* name|strong=\"H8034\"* Isaac|strong=\"H3327\"*.+ 17:19 Isaac means “he laughs”.* I|strong=\"H6965\"* will|strong=\"H1121\"* establish|strong=\"H6965\"* my|strong=\"H6965\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* him|strong=\"H3205\"* for|strong=\"H7121\"* an|strong=\"H6965\"* everlasting|strong=\"H5769\"* covenant|strong=\"H1285\"* for|strong=\"H7121\"* his|strong=\"H7121\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* him|strong=\"H3205\"*." + }, + { + "verseNum": 20, + "text": "As|strong=\"H5414\"* for|strong=\"H3205\"* Ishmael|strong=\"H3458\"*, I|strong=\"H5414\"* have|strong=\"H1471\"* heard|strong=\"H8085\"* you|strong=\"H5414\"*. Behold|strong=\"H2009\"*, I|strong=\"H5414\"* have|strong=\"H1471\"* blessed|strong=\"H1288\"* him|strong=\"H5414\"*, and|strong=\"H1419\"* will|strong=\"H1471\"* make|strong=\"H5414\"* him|strong=\"H5414\"* fruitful|strong=\"H6509\"*, and|strong=\"H1419\"* will|strong=\"H1471\"* multiply|strong=\"H7235\"* him|strong=\"H5414\"* exceedingly|strong=\"H3966\"*. He|strong=\"H5414\"* will|strong=\"H1471\"* become|strong=\"H3205\"* the|strong=\"H8085\"* father|strong=\"H3205\"* of|strong=\"H3205\"* twelve|strong=\"H8147\"* princes|strong=\"H5387\"*, and|strong=\"H1419\"* I|strong=\"H5414\"* will|strong=\"H1471\"* make|strong=\"H5414\"* him|strong=\"H5414\"* a|strong=\"H3068\"* great|strong=\"H1419\"* nation|strong=\"H1471\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"H3205\"* I|strong=\"H2088\"* will|strong=\"H2088\"* establish|strong=\"H6965\"* my|strong=\"H6965\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* Isaac|strong=\"H3327\"*, whom Sarah|strong=\"H8283\"* will|strong=\"H2088\"* bear|strong=\"H3205\"* to|strong=\"H3205\"* you|strong=\"H3205\"* at|strong=\"H6965\"* this|strong=\"H2088\"* set|strong=\"H6965\"* time|strong=\"H4150\"* next year|strong=\"H8141\"*.”" + }, + { + "verseNum": 22, + "text": "When|strong=\"H3615\"* he|strong=\"H5921\"* finished|strong=\"H3615\"* talking|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H5921\"*, God went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* Abraham." + }, + { + "verseNum": 23, + "text": "Abraham|strong=\"H3947\"* took|strong=\"H3947\"* Ishmael|strong=\"H3458\"* his|strong=\"H3605\"* son|strong=\"H1121\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* born|strong=\"H3211\"* in|strong=\"H1004\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* bought|strong=\"H4736\"* with|strong=\"H1004\"* his|strong=\"H3605\"* money|strong=\"H3701\"*: every|strong=\"H3605\"* male|strong=\"H2145\"* among the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Abraham|strong=\"H3947\"*’s house|strong=\"H1004\"*, and|strong=\"H1121\"* circumcised|strong=\"H4135\"* the|strong=\"H3605\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* their|strong=\"H3605\"* foreskin|strong=\"H6190\"* in|strong=\"H1004\"* the|strong=\"H3605\"* same|strong=\"H6106\"* day|strong=\"H3117\"*, as|strong=\"H3117\"* God had|strong=\"H1121\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H3947\"*." + }, + { + "verseNum": 24, + "text": "Abraham was|strong=\"H1121\"* ninety-nine|strong=\"H8673\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8141\"* was|strong=\"H1121\"* circumcised|strong=\"H4135\"* in|strong=\"H8141\"* the|strong=\"H1121\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* his|strong=\"H4135\"* foreskin|strong=\"H6190\"*." + }, + { + "verseNum": 25, + "text": "Ishmael|strong=\"H3458\"*, his|strong=\"H3458\"* son|strong=\"H1121\"*, was|strong=\"H1121\"* thirteen|strong=\"H7969\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8141\"* was|strong=\"H1121\"* circumcised|strong=\"H4135\"* in|strong=\"H8141\"* the|strong=\"H3458\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* his|strong=\"H3458\"* foreskin|strong=\"H6190\"*." + }, + { + "verseNum": 26, + "text": "In|strong=\"H3117\"* the|strong=\"H3117\"* same|strong=\"H6106\"* day|strong=\"H3117\"* both Abraham and|strong=\"H1121\"* Ishmael|strong=\"H3458\"*, his|strong=\"H3117\"* son|strong=\"H1121\"*, were|strong=\"H1121\"* circumcised|strong=\"H4135\"*." + }, + { + "verseNum": 27, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, those|strong=\"H3605\"* born|strong=\"H3211\"* in|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, and|strong=\"H1121\"* those|strong=\"H3605\"* bought|strong=\"H4736\"* with|strong=\"H1004\"* money|strong=\"H3701\"* from|strong=\"H1121\"* a|strong=\"H3068\"* foreigner|strong=\"H1121\"*, were|strong=\"H1121\"* circumcised|strong=\"H4135\"* with|strong=\"H1004\"* him|strong=\"H3605\"*." + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* him|strong=\"H7200\"* by|strong=\"H3117\"* the|strong=\"H7200\"* oaks of|strong=\"H3068\"* Mamre|strong=\"H4471\"*, as|strong=\"H3117\"* he|strong=\"H1931\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H7200\"* tent door|strong=\"H6607\"* in|strong=\"H3427\"* the|strong=\"H7200\"* heat|strong=\"H2527\"* of|strong=\"H3068\"* the|strong=\"H7200\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H5921\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"* and|strong=\"H5869\"* looked|strong=\"H7200\"*, and|strong=\"H5869\"* saw|strong=\"H7200\"* that|strong=\"H7200\"* three|strong=\"H7969\"* men stood|strong=\"H5324\"* near|strong=\"H5921\"* him|strong=\"H5921\"*. When|strong=\"H7200\"* he|strong=\"H5921\"* saw|strong=\"H7200\"* them|strong=\"H5921\"*, he|strong=\"H5921\"* ran|strong=\"H7323\"* to|strong=\"H5921\"* meet|strong=\"H7125\"* them|strong=\"H5921\"* from|strong=\"H5921\"* the|strong=\"H5921\"* tent door|strong=\"H6607\"*, and|strong=\"H5869\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* to|strong=\"H5921\"* the|strong=\"H5921\"* earth," + }, + { + "verseNum": 3, + "text": "and|strong=\"H5869\"* said, “My|strong=\"H5921\"* lord, if now|strong=\"H4994\"* I|strong=\"H5921\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* your|strong=\"H5921\"* sight|strong=\"H5869\"*, please|strong=\"H4994\"* don’t go|strong=\"H5674\"* away|strong=\"H5674\"* from|strong=\"H5921\"* your|strong=\"H5921\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H4994\"* let|strong=\"H4994\"* a|strong=\"H3068\"* little|strong=\"H4592\"* water|strong=\"H4325\"* be|strong=\"H4994\"* fetched|strong=\"H3947\"*, wash|strong=\"H7364\"* your|strong=\"H3947\"* feet|strong=\"H7272\"*, and|strong=\"H6086\"* rest|strong=\"H8172\"* yourselves|strong=\"H8172\"* under|strong=\"H8478\"* the|strong=\"H3947\"* tree|strong=\"H6086\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3588\"* will|strong=\"H5650\"* get|strong=\"H3947\"* a|strong=\"H3068\"* piece|strong=\"H6595\"* of|strong=\"H5650\"* bread|strong=\"H3899\"* so|strong=\"H3651\"* you|strong=\"H3588\"* can|strong=\"H5650\"* refresh|strong=\"H5582\"* your|strong=\"H5921\"* heart|strong=\"H3820\"*. After|strong=\"H5921\"* that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H6213\"* go|strong=\"H5674\"* your|strong=\"H5921\"* way|strong=\"H5674\"*, now|strong=\"H3588\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5650\"* come|strong=\"H5674\"* to|strong=\"H1696\"* your|strong=\"H5921\"* servant|strong=\"H5650\"*.”" + }, + { + "verseNum": 6, + "text": "Abraham hurried|strong=\"H4116\"* into|strong=\"H6213\"* the|strong=\"H6213\"* tent to|strong=\"H6213\"* Sarah|strong=\"H8283\"*, and|strong=\"H6213\"* said, “Quickly|strong=\"H4116\"* prepare|strong=\"H6213\"* three|strong=\"H7969\"* seahs|strong=\"H5429\"*+ 18:6 1 seah is about 7 liters or 1.9 gallons or 0.8 pecks* of|strong=\"H5429\"* fine|strong=\"H5560\"* meal|strong=\"H7058\"*, knead|strong=\"H3888\"* it|strong=\"H6213\"*, and|strong=\"H6213\"* make|strong=\"H6213\"* cakes|strong=\"H5692\"*.”" + }, + { + "verseNum": 7, + "text": "Abraham|strong=\"H3947\"* ran|strong=\"H7323\"* to|strong=\"H6213\"* the|strong=\"H5414\"* herd|strong=\"H1241\"*, and|strong=\"H1121\"* fetched|strong=\"H3947\"* a|strong=\"H3068\"* tender|strong=\"H7390\"* and|strong=\"H1121\"* good|strong=\"H2896\"* calf|strong=\"H1121\"*, and|strong=\"H1121\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H6213\"* the|strong=\"H5414\"* servant|strong=\"H5288\"*. He|strong=\"H6213\"* hurried|strong=\"H4116\"* to|strong=\"H6213\"* dress|strong=\"H6213\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H1931\"* took|strong=\"H3947\"* butter|strong=\"H2529\"*, milk|strong=\"H2461\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* calf|strong=\"H1121\"* which|strong=\"H1931\"* he|strong=\"H1931\"* had|strong=\"H5414\"* dressed|strong=\"H6213\"*, and|strong=\"H1121\"* set|strong=\"H5414\"* it|strong=\"H5414\"* before|strong=\"H6440\"* them|strong=\"H5414\"*. He|strong=\"H1931\"* stood|strong=\"H5975\"* by|strong=\"H5921\"* them|strong=\"H5414\"* under|strong=\"H8478\"* the|strong=\"H6440\"* tree|strong=\"H6086\"*, and|strong=\"H1121\"* they|strong=\"H5921\"* ate." + }, + { + "verseNum": 9, + "text": "They asked him, “Where|strong=\"H2009\"* is|strong=\"H2009\"* Sarah|strong=\"H8283\"*, your|strong=\"H8283\"* wife?”" + }, + { + "verseNum": 10, + "text": "He|strong=\"H1931\"* said|strong=\"H8085\"*, “I|strong=\"H2009\"* will|strong=\"H1121\"* certainly|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H7725\"* at|strong=\"H7725\"* about|strong=\"H8085\"* this|strong=\"H1931\"* time|strong=\"H6256\"* next|strong=\"H2416\"* year|strong=\"H6256\"*; and|strong=\"H1121\"* behold|strong=\"H2009\"*, Sarah|strong=\"H8283\"* your|strong=\"H8085\"* wife|strong=\"H2416\"* will|strong=\"H1121\"* have|strong=\"H1121\"* a|strong=\"H3068\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 11, + "text": "Now|strong=\"H1961\"* Abraham and|strong=\"H3117\"* Sarah|strong=\"H8283\"* were|strong=\"H1961\"* old|strong=\"H2205\"*, well advanced in|strong=\"H3117\"* age|strong=\"H3117\"*. Sarah|strong=\"H8283\"* had|strong=\"H1961\"* passed|strong=\"H1961\"* the|strong=\"H3117\"* age|strong=\"H3117\"* of|strong=\"H3117\"* childbearing." + }, + { + "verseNum": 12, + "text": "Sarah|strong=\"H8283\"* laughed|strong=\"H6711\"* within|strong=\"H7130\"* herself|strong=\"H7130\"*, saying, “After|strong=\"H1961\"* I|strong=\"H1961\"* have|strong=\"H1961\"* grown|strong=\"H2204\"* old|strong=\"H2204\"* will|strong=\"H1961\"* I|strong=\"H1961\"* have|strong=\"H1961\"* pleasure|strong=\"H5730\"*, my|strong=\"H1961\"* lord being|strong=\"H1961\"* old|strong=\"H2204\"* also|strong=\"H2204\"*?”" + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Abraham, “Why|strong=\"H4100\"* did|strong=\"H4100\"* Sarah|strong=\"H8283\"* laugh|strong=\"H6711\"*, saying, ‘Will|strong=\"H3068\"* I|strong=\"H2088\"* really|strong=\"H2088\"* bear|strong=\"H3205\"* a|strong=\"H3068\"* child|strong=\"H3205\"* when|strong=\"H3068\"* I|strong=\"H2088\"* am|strong=\"H2204\"* old|strong=\"H2204\"*?’" + }, + { + "verseNum": 14, + "text": "Is|strong=\"H3068\"* anything|strong=\"H1697\"* too|strong=\"H1697\"* hard|strong=\"H6381\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*? At|strong=\"H3068\"* the|strong=\"H3068\"* set|strong=\"H7725\"* time|strong=\"H6256\"* I|strong=\"H1697\"* will|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H7725\"*, when|strong=\"H6256\"* the|strong=\"H3068\"* season|strong=\"H6256\"* comes around|strong=\"H7725\"*, and|strong=\"H1121\"* Sarah|strong=\"H8283\"* will|strong=\"H3068\"* have|strong=\"H3068\"* a|strong=\"H3068\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H3588\"* Sarah|strong=\"H8283\"* denied|strong=\"H3584\"* it|strong=\"H3588\"*, saying, “I|strong=\"H3588\"* didn’t laugh|strong=\"H6711\"*,” for|strong=\"H3588\"* she|strong=\"H3588\"* was|strong=\"H3808\"* afraid|strong=\"H3372\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H6440\"* men|strong=\"H1980\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* from|strong=\"H6440\"* there|strong=\"H8033\"*, and|strong=\"H1980\"* looked|strong=\"H8259\"* toward|strong=\"H5921\"* Sodom|strong=\"H5467\"*. Abraham went|strong=\"H1980\"* with|strong=\"H5973\"* them|strong=\"H5921\"* to|strong=\"H1980\"* see them|strong=\"H5921\"* on|strong=\"H5921\"* their|strong=\"H6440\"* way|strong=\"H1980\"*." + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* said, “Will|strong=\"H3068\"* I|strong=\"H3068\"* hide|strong=\"H3680\"* from|strong=\"H3068\"* Abraham what|strong=\"H6213\"* I|strong=\"H3068\"* do|strong=\"H6213\"*," + }, + { + "verseNum": 18, + "text": "since Abraham will|strong=\"H1961\"* surely|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* great|strong=\"H1419\"* and|strong=\"H1419\"* mighty|strong=\"H6099\"* nation|strong=\"H1471\"*, and|strong=\"H1419\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* of|strong=\"H3605\"* the|strong=\"H3605\"* earth will|strong=\"H1961\"* be|strong=\"H1961\"* blessed|strong=\"H1288\"* in|strong=\"H1419\"* him|strong=\"H3605\"*?" + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* known|strong=\"H3045\"* him|strong=\"H5921\"*, to|strong=\"H1696\"* the|strong=\"H5921\"* end|strong=\"H4616\"* that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H3068\"* command|strong=\"H6680\"* his|strong=\"H8104\"* children|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8104\"* household|strong=\"H1004\"* after|strong=\"H5921\"* him|strong=\"H5921\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H3068\"* keep|strong=\"H8104\"* the|strong=\"H5921\"* way|strong=\"H1870\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, to|strong=\"H1696\"* do|strong=\"H6213\"* righteousness|strong=\"H6666\"* and|strong=\"H1121\"* justice|strong=\"H4941\"*; to|strong=\"H1696\"* the|strong=\"H5921\"* end|strong=\"H4616\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* may|strong=\"H3068\"* bring|strong=\"H6213\"* on|strong=\"H5921\"* Abraham that|strong=\"H3588\"* which|strong=\"H3068\"* he|strong=\"H3588\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* of|strong=\"H1121\"* him|strong=\"H5921\"*.”" + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* said, “Because|strong=\"H3588\"* the|strong=\"H3588\"* cry|strong=\"H2201\"* of|strong=\"H3068\"* Sodom|strong=\"H5467\"* and|strong=\"H3068\"* Gomorrah|strong=\"H6017\"* is|strong=\"H3068\"* great|strong=\"H7227\"*, and|strong=\"H3068\"* because|strong=\"H3588\"* their|strong=\"H3068\"* sin|strong=\"H2403\"* is|strong=\"H3068\"* very|strong=\"H3966\"* grievous|strong=\"H3513\"*," + }, + { + "verseNum": 21, + "text": "I|strong=\"H3045\"* will|strong=\"H3808\"* go|strong=\"H3381\"* down|strong=\"H3381\"* now|strong=\"H4994\"*, and|strong=\"H7200\"* see|strong=\"H7200\"* whether|strong=\"H7200\"* their|strong=\"H7200\"* deeds are|strong=\"H6213\"* as|strong=\"H6213\"* bad as|strong=\"H6213\"* the|strong=\"H7200\"* reports which have|strong=\"H3045\"* come|strong=\"H3381\"* to|strong=\"H3381\"* me|strong=\"H4994\"*. If|strong=\"H7200\"* not|strong=\"H3808\"*, I|strong=\"H3045\"* will|strong=\"H3808\"* know|strong=\"H3045\"*.”" + }, + { + "verseNum": 22, + "text": "The|strong=\"H6440\"* men turned|strong=\"H6437\"* from|strong=\"H6440\"* there|strong=\"H8033\"*, and|strong=\"H3068\"* went|strong=\"H3212\"* toward|strong=\"H6440\"* Sodom|strong=\"H5467\"*, but|strong=\"H6437\"* Abraham stood|strong=\"H5975\"* yet|strong=\"H5750\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 23, + "text": "Abraham came|strong=\"H5066\"* near|strong=\"H5066\"*, and|strong=\"H5066\"* said, “Will|strong=\"H6662\"* you|strong=\"H5973\"* consume|strong=\"H5595\"* the|strong=\"H5973\"* righteous|strong=\"H6662\"* with|strong=\"H5973\"* the|strong=\"H5973\"* wicked|strong=\"H7563\"*?" + }, + { + "verseNum": 24, + "text": "What if|strong=\"H3426\"* there|strong=\"H3426\"* are|strong=\"H3426\"* fifty|strong=\"H2572\"* righteous|strong=\"H6662\"* within|strong=\"H7130\"* the|strong=\"H5375\"* city|strong=\"H5892\"*? Will|strong=\"H6662\"* you|strong=\"H3808\"* consume|strong=\"H5595\"* and|strong=\"H5892\"* not|strong=\"H3808\"* spare|strong=\"H5375\"* the|strong=\"H5375\"* place|strong=\"H4725\"* for|strong=\"H4616\"* the|strong=\"H5375\"* fifty|strong=\"H2572\"* righteous|strong=\"H6662\"* who|strong=\"H6662\"* are|strong=\"H3426\"* in|strong=\"H8432\"* it|strong=\"H8432\"*?" + }, + { + "verseNum": 25, + "text": "May|strong=\"H1961\"* it|strong=\"H6213\"* be|strong=\"H1961\"* far|strong=\"H2486\"* from|strong=\"H1961\"* you|strong=\"H3605\"* to|strong=\"H4191\"* do|strong=\"H6213\"* things|strong=\"H1697\"* like|strong=\"H1961\"* that|strong=\"H3605\"*, to|strong=\"H4191\"* kill|strong=\"H4191\"* the|strong=\"H3605\"* righteous|strong=\"H6662\"* with|strong=\"H5973\"* the|strong=\"H3605\"* wicked|strong=\"H7563\"*, so|strong=\"H6213\"* that|strong=\"H3605\"* the|strong=\"H3605\"* righteous|strong=\"H6662\"* should|strong=\"H6213\"* be|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H3605\"* wicked|strong=\"H7563\"*. May|strong=\"H1961\"* that|strong=\"H3605\"* be|strong=\"H1961\"* far|strong=\"H2486\"* from|strong=\"H1961\"* you|strong=\"H3605\"*. Shouldn’t the|strong=\"H3605\"* Judge|strong=\"H8199\"* of|strong=\"H1697\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth do|strong=\"H6213\"* right|strong=\"H4941\"*?”" + }, + { + "verseNum": 26, + "text": "Yahweh|strong=\"H3068\"* said, “If I|strong=\"H4672\"* find|strong=\"H4672\"* in|strong=\"H3068\"* Sodom|strong=\"H5467\"* fifty|strong=\"H2572\"* righteous|strong=\"H6662\"* within|strong=\"H8432\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, then|strong=\"H5375\"* I|strong=\"H4672\"* will|strong=\"H3068\"* spare|strong=\"H5375\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* place|strong=\"H4725\"* for|strong=\"H3068\"* their|strong=\"H3605\"* sake|strong=\"H5668\"*.”" + }, + { + "verseNum": 27, + "text": "Abraham answered|strong=\"H6030\"*, “See|strong=\"H2009\"* now|strong=\"H4994\"*, I|strong=\"H2009\"* have|strong=\"H1696\"* taken it|strong=\"H1696\"* on|strong=\"H1696\"* myself to|strong=\"H1696\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1696\"* Lord, although I|strong=\"H2009\"* am dust|strong=\"H6083\"* and|strong=\"H6030\"* ashes|strong=\"H6083\"*." + }, + { + "verseNum": 28, + "text": "What if there|strong=\"H8033\"* will|strong=\"H6662\"* lack|strong=\"H2637\"* five|strong=\"H2568\"* of|strong=\"H5892\"* the|strong=\"H3605\"* fifty|strong=\"H2572\"* righteous|strong=\"H6662\"*? Will|strong=\"H6662\"* you|strong=\"H3605\"* destroy|strong=\"H7843\"* all|strong=\"H3605\"* the|strong=\"H3605\"* city|strong=\"H5892\"* for|strong=\"H5892\"* lack|strong=\"H2637\"* of|strong=\"H5892\"* five|strong=\"H2568\"*?”" + }, + { + "verseNum": 29, + "text": "He|strong=\"H8033\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H6213\"* yet|strong=\"H5750\"* again|strong=\"H5750\"*, and|strong=\"H8033\"* said|strong=\"H1696\"*, “What|strong=\"H6213\"* if there|strong=\"H8033\"* are|strong=\"H6213\"* forty found|strong=\"H4672\"* there|strong=\"H8033\"*?”" + }, + { + "verseNum": 30, + "text": "He|strong=\"H8033\"* said|strong=\"H1696\"*, “Oh|strong=\"H4994\"* don’t let|strong=\"H4994\"* the|strong=\"H6213\"* Lord be|strong=\"H3808\"* angry|strong=\"H2734\"*, and|strong=\"H7970\"* I|strong=\"H3808\"* will|strong=\"H3808\"* speak|strong=\"H1696\"*. What|strong=\"H6213\"* if there|strong=\"H8033\"* are|strong=\"H6213\"* thirty|strong=\"H7970\"* found|strong=\"H4672\"* there|strong=\"H8033\"*?”" + }, + { + "verseNum": 31, + "text": "He|strong=\"H8033\"* said|strong=\"H1696\"*, “See|strong=\"H2009\"* now|strong=\"H4994\"*, I|strong=\"H2009\"* have|strong=\"H4672\"* taken|strong=\"H4672\"* it|strong=\"H8033\"* on|strong=\"H1696\"* myself to|strong=\"H1696\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H7843\"* Lord. What|strong=\"H1696\"* if|strong=\"H2009\"* there|strong=\"H8033\"* are|strong=\"H8033\"* twenty|strong=\"H6242\"* found|strong=\"H4672\"* there|strong=\"H8033\"*?”" + }, + { + "verseNum": 32, + "text": "He|strong=\"H8033\"* said|strong=\"H1696\"*, “Oh|strong=\"H4994\"* don’t let|strong=\"H4994\"* the|strong=\"H7843\"* Lord be|strong=\"H3808\"* angry|strong=\"H2734\"*, and|strong=\"H8033\"* I|strong=\"H3808\"* will|strong=\"H3808\"* speak|strong=\"H1696\"* just|strong=\"H1696\"* once|strong=\"H6471\"* more|strong=\"H6471\"*. What|strong=\"H1696\"* if ten|strong=\"H6235\"* are|strong=\"H8033\"* found|strong=\"H4672\"* there|strong=\"H8033\"*?”" + }, + { + "verseNum": 33, + "text": "Yahweh|strong=\"H3068\"* went|strong=\"H3212\"* his|strong=\"H3068\"* way|strong=\"H3212\"* as|strong=\"H3068\"* soon as|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* finished|strong=\"H3615\"* communing|strong=\"H1696\"* with|strong=\"H3068\"* Abraham, and|strong=\"H3068\"* Abraham returned|strong=\"H7725\"* to|strong=\"H1696\"* his|strong=\"H3068\"* place|strong=\"H4725\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H7200\"* two|strong=\"H8147\"* angels|strong=\"H4397\"* came|strong=\"H4397\"* to|strong=\"H4397\"* Sodom|strong=\"H5467\"* at|strong=\"H3427\"* evening|strong=\"H6153\"*. Lot|strong=\"H3876\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H7200\"* gate|strong=\"H8179\"* of|strong=\"H3427\"* Sodom|strong=\"H5467\"*. Lot|strong=\"H3876\"* saw|strong=\"H7200\"* them|strong=\"H7200\"*, and|strong=\"H6965\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H4397\"* meet|strong=\"H7125\"* them|strong=\"H7200\"*. He|strong=\"H8147\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* with|strong=\"H3427\"* his|strong=\"H7200\"* face|strong=\"H7200\"* to|strong=\"H4397\"* the|strong=\"H7200\"* earth," + }, + { + "verseNum": 2, + "text": "and|strong=\"H1980\"* he|strong=\"H3588\"* said, “See|strong=\"H2009\"* now|strong=\"H4994\"*, my|strong=\"H5493\"* lords, please|strong=\"H4994\"* come|strong=\"H1980\"* into|strong=\"H1980\"* your|strong=\"H3588\"* servant|strong=\"H5650\"*’s house|strong=\"H1004\"*, stay|strong=\"H3885\"* all|strong=\"H3885\"* night|strong=\"H3885\"*, wash|strong=\"H7364\"* your|strong=\"H3588\"* feet|strong=\"H7272\"*, and|strong=\"H1980\"* you|strong=\"H3588\"* can|strong=\"H5650\"* rise|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"*, and|strong=\"H1980\"* go|strong=\"H1980\"* on|strong=\"H1980\"* your|strong=\"H3588\"* way|strong=\"H1870\"*.”" + }, + { + "verseNum": 3, + "text": "He|strong=\"H6213\"* urged|strong=\"H6484\"* them|strong=\"H6213\"* greatly|strong=\"H3966\"*, and|strong=\"H1004\"* they|strong=\"H6213\"* came in|strong=\"H6213\"* with|strong=\"H1004\"* him|strong=\"H6213\"*, and|strong=\"H1004\"* entered into|strong=\"H6213\"* his|strong=\"H5493\"* house|strong=\"H1004\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* them|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H4960\"*, and|strong=\"H1004\"* baked unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*, and|strong=\"H1004\"* they|strong=\"H6213\"* ate." + }, + { + "verseNum": 4, + "text": "But|strong=\"H5971\"* before|strong=\"H2962\"* they|strong=\"H5921\"* lay|strong=\"H7901\"* down|strong=\"H7901\"*, the|strong=\"H3605\"* men|strong=\"H5288\"* of|strong=\"H1004\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, the|strong=\"H3605\"* men|strong=\"H5288\"* of|strong=\"H1004\"* Sodom|strong=\"H5467\"*, surrounded|strong=\"H5437\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, both|strong=\"H3605\"* young|strong=\"H5288\"* and|strong=\"H1004\"* old|strong=\"H2205\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* from|strong=\"H5921\"* every|strong=\"H3605\"* quarter|strong=\"H7097\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3045\"* called|strong=\"H7121\"* to|strong=\"H3318\"* Lot|strong=\"H3876\"*, and|strong=\"H3915\"* said|strong=\"H7121\"* to|strong=\"H3318\"* him|strong=\"H7121\"*, “Where are|strong=\"H3045\"* the|strong=\"H3045\"* men|strong=\"H7121\"* who|strong=\"H3045\"* came|strong=\"H3318\"* in|strong=\"H7121\"* to|strong=\"H3318\"* you|strong=\"H3045\"* this|strong=\"H7121\"* night|strong=\"H3915\"*? Bring|strong=\"H3318\"* them|strong=\"H7121\"* out|strong=\"H3318\"* to|strong=\"H3318\"* us|strong=\"H3045\"*, that|strong=\"H3045\"* we|strong=\"H3068\"* may have|strong=\"H3045\"* sex with|strong=\"H3045\"* them|strong=\"H7121\"*.”" + }, + { + "verseNum": 6, + "text": "Lot|strong=\"H3876\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H3318\"* through|strong=\"H3318\"* the|strong=\"H3318\"* door|strong=\"H6607\"*, and|strong=\"H3318\"* shut|strong=\"H5462\"* the|strong=\"H3318\"* door|strong=\"H6607\"* after|strong=\"H3318\"* himself." + }, + { + "verseNum": 7, + "text": "He said, “Please|strong=\"H4994\"*, my|strong=\"H7489\"* brothers, don’t act|strong=\"H7489\"* so|strong=\"H7489\"* wickedly|strong=\"H7489\"*." + }, + { + "verseNum": 8, + "text": "See|strong=\"H2009\"* now|strong=\"H4994\"*, I|strong=\"H3588\"* have|strong=\"H5869\"* two|strong=\"H8147\"* virgin daughters|strong=\"H1323\"*. Please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* bring|strong=\"H3318\"* them|strong=\"H5921\"* out|strong=\"H3318\"* to|strong=\"H3318\"* you|strong=\"H3588\"*, and|strong=\"H5869\"* you|strong=\"H3588\"* may|strong=\"H4994\"* do|strong=\"H6213\"* to|strong=\"H3318\"* them|strong=\"H5921\"* what|strong=\"H1697\"* seems|strong=\"H2896\"* good|strong=\"H2896\"* to|strong=\"H3318\"* you|strong=\"H3588\"*. Only|strong=\"H7535\"* don’t do|strong=\"H6213\"* anything|strong=\"H1697\"* to|strong=\"H3318\"* these|strong=\"H6213\"* men|strong=\"H6213\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H5869\"* come|strong=\"H3318\"* under|strong=\"H5921\"* the|strong=\"H5921\"* shadow|strong=\"H6738\"* of|strong=\"H1323\"* my|strong=\"H5921\"* roof|strong=\"H6982\"*.”" + }, + { + "verseNum": 9, + "text": "They|strong=\"H1992\"* said, “Stand|strong=\"H1481\"* back|strong=\"H1973\"*!” Then|strong=\"H6258\"* they|strong=\"H1992\"* said, “This|strong=\"H6258\"* one fellow came|strong=\"H5066\"* in|strong=\"H7665\"* to|strong=\"H5066\"* live|strong=\"H1481\"* as|strong=\"H1992\"* a|strong=\"H3068\"* foreigner, and|strong=\"H5066\"* he|strong=\"H8199\"* appoints himself a|strong=\"H3068\"* judge|strong=\"H8199\"*. Now|strong=\"H6258\"* we|strong=\"H3068\"* will|strong=\"H8199\"* deal|strong=\"H3966\"* worse|strong=\"H7489\"* with|strong=\"H1481\"* you|strong=\"H7489\"* than with|strong=\"H1481\"* them|strong=\"H1992\"*!” They|strong=\"H1992\"* pressed|strong=\"H6484\"* hard|strong=\"H7489\"* on|strong=\"H6258\"* the|strong=\"H7665\"* man Lot|strong=\"H3876\"*, and|strong=\"H5066\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H5066\"* break|strong=\"H7665\"* the|strong=\"H7665\"* door|strong=\"H1817\"*." + }, + { + "verseNum": 10, + "text": "But the|strong=\"H7971\"* men reached|strong=\"H7971\"* out|strong=\"H7971\"* their|strong=\"H7971\"* hand|strong=\"H3027\"*, and|strong=\"H7971\"* brought|strong=\"H7971\"* Lot|strong=\"H3876\"* into|strong=\"H3027\"* the|strong=\"H7971\"* house|strong=\"H1004\"* to|strong=\"H7971\"* them|strong=\"H7971\"*, and|strong=\"H7971\"* shut|strong=\"H5462\"* the|strong=\"H7971\"* door|strong=\"H1817\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H5704\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* men|strong=\"H1419\"* who|strong=\"H4672\"* were|strong=\"H1419\"* at|strong=\"H1004\"* the|strong=\"H5221\"* door|strong=\"H6607\"* of|strong=\"H1004\"* the|strong=\"H5221\"* house|strong=\"H1004\"* with|strong=\"H1004\"* blindness|strong=\"H5575\"*, both small|strong=\"H6996\"* and|strong=\"H1419\"* great|strong=\"H1419\"*, so|strong=\"H4672\"* that|strong=\"H5704\"* they|strong=\"H5704\"* wearied|strong=\"H3811\"* themselves|strong=\"H3811\"* to|strong=\"H5704\"* find|strong=\"H4672\"* the|strong=\"H5221\"* door|strong=\"H6607\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3605\"* men|strong=\"H1121\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Lot|strong=\"H3876\"*, “Do|strong=\"H3318\"* you|strong=\"H3605\"* have|strong=\"H1121\"* anybody else|strong=\"H5750\"* here|strong=\"H6311\"*? Sons-in-law|strong=\"H2860\"*, your|strong=\"H3605\"* sons|strong=\"H1121\"*, your|strong=\"H3605\"* daughters|strong=\"H1323\"*, and|strong=\"H1121\"* whomever|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H1121\"* in|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, bring|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3605\"* place|strong=\"H4725\"*:" + }, + { + "verseNum": 13, + "text": "for|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H3068\"* destroy|strong=\"H7843\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, because|strong=\"H3588\"* the|strong=\"H6440\"* outcry|strong=\"H6818\"* against|strong=\"H6440\"* them|strong=\"H7971\"* has|strong=\"H3068\"* grown|strong=\"H1431\"* so|strong=\"H7971\"* great|strong=\"H1431\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* us|strong=\"H6440\"* to|strong=\"H3068\"* destroy|strong=\"H7843\"* it|strong=\"H3588\"*.”" + }, + { + "verseNum": 14, + "text": "Lot|strong=\"H3876\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H6965\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* his|strong=\"H3068\"* sons-in-law|strong=\"H2860\"*, who|strong=\"H3068\"* were|strong=\"H1961\"* pledged to|strong=\"H1696\"* marry|strong=\"H3947\"* his|strong=\"H3068\"* daughters|strong=\"H1323\"*, and|strong=\"H6965\"* said|strong=\"H1696\"*, “Get|strong=\"H3947\"* up|strong=\"H6965\"*! Get|strong=\"H3947\"* out|strong=\"H3318\"* of|strong=\"H3068\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* destroy|strong=\"H7843\"* the|strong=\"H3588\"* city|strong=\"H5892\"*!”" + }, + { + "verseNum": 15, + "text": "When|strong=\"H3644\"* the|strong=\"H3947\"* morning|strong=\"H7837\"* came|strong=\"H5927\"*, then|strong=\"H6965\"* the|strong=\"H3947\"* angels|strong=\"H4397\"* hurried Lot|strong=\"H3876\"*, saying, “Get|strong=\"H3947\"* up|strong=\"H5927\"*! Take|strong=\"H3947\"* your|strong=\"H3947\"* wife and|strong=\"H6965\"* your|strong=\"H3947\"* two|strong=\"H8147\"* daughters|strong=\"H1323\"* who|strong=\"H4397\"* are|strong=\"H5892\"* here|strong=\"H4672\"*, lest|strong=\"H6435\"* you|strong=\"H3947\"* be|strong=\"H5892\"* consumed|strong=\"H5595\"* in|strong=\"H5892\"* the|strong=\"H3947\"* iniquity|strong=\"H5771\"* of|strong=\"H1323\"* the|strong=\"H3947\"* city|strong=\"H5892\"*.”" + }, + { + "verseNum": 16, + "text": "But|strong=\"H2388\"* he|strong=\"H3068\"* lingered|strong=\"H4102\"*; and|strong=\"H3068\"* the|strong=\"H5921\"* men|strong=\"H2388\"* grabbed|strong=\"H2388\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*, his|strong=\"H3068\"* wife’s hand|strong=\"H3027\"*, and|strong=\"H3068\"* his|strong=\"H3068\"* two|strong=\"H8147\"* daughters|strong=\"H1323\"*’ hands|strong=\"H3027\"*, Yahweh|strong=\"H3068\"* being|strong=\"H3068\"* merciful|strong=\"H2551\"* to|strong=\"H3318\"* him|strong=\"H5921\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* took|strong=\"H2388\"* him|strong=\"H5921\"* out|strong=\"H3318\"*, and|strong=\"H3068\"* set|strong=\"H3240\"* him|strong=\"H5921\"* outside|strong=\"H2351\"* of|strong=\"H3068\"* the|strong=\"H5921\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 17, + "text": "It|strong=\"H5921\"* came|strong=\"H1961\"* to|strong=\"H3318\"* pass|strong=\"H1961\"*, when|strong=\"H1961\"* they|strong=\"H5921\"* had|strong=\"H1961\"* taken|strong=\"H1961\"* them|strong=\"H5921\"* out|strong=\"H3318\"*, that|strong=\"H3605\"* he|strong=\"H3605\"* said|strong=\"H3318\"*, “Escape|strong=\"H4422\"* for|strong=\"H5921\"* your|strong=\"H3605\"* life|strong=\"H5315\"*! Don’t look|strong=\"H5027\"* behind|strong=\"H5975\"* you|strong=\"H3605\"*, and|strong=\"H2022\"* don’t stay|strong=\"H5975\"* anywhere|strong=\"H3605\"* in|strong=\"H5921\"* the|strong=\"H3605\"* plain|strong=\"H3603\"*. Escape|strong=\"H4422\"* to|strong=\"H3318\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*, lest|strong=\"H6435\"* you|strong=\"H3605\"* be|strong=\"H1961\"* consumed|strong=\"H5595\"*!”" + }, + { + "verseNum": 18, + "text": "Lot|strong=\"H3876\"* said to|strong=\"H4994\"* them|strong=\"H4994\"*, “Oh|strong=\"H4994\"*, not so|strong=\"H4994\"*, my|strong=\"H4994\"* lord." + }, + { + "verseNum": 19, + "text": "See|strong=\"H2009\"* now|strong=\"H4994\"*, your|strong=\"H6213\"* servant|strong=\"H5650\"* has|strong=\"H5650\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H6213\"* your|strong=\"H6213\"* sight|strong=\"H5869\"*, and|strong=\"H5869\"* you|strong=\"H6213\"* have|strong=\"H5869\"* magnified|strong=\"H1431\"* your|strong=\"H6213\"* loving kindness|strong=\"H2617\"*, which|strong=\"H5869\"* you|strong=\"H6213\"* have|strong=\"H5869\"* shown|strong=\"H6213\"* to|strong=\"H4191\"* me|strong=\"H4994\"* in|strong=\"H6213\"* saving|strong=\"H2421\"* my|strong=\"H6213\"* life|strong=\"H5315\"*. I|strong=\"H2009\"* can|strong=\"H3201\"*’t escape|strong=\"H4422\"* to|strong=\"H4191\"* the|strong=\"H6213\"* mountain|strong=\"H2022\"*, lest|strong=\"H6435\"* evil|strong=\"H7451\"* overtake|strong=\"H4672\"* me|strong=\"H4994\"*, and|strong=\"H5869\"* I|strong=\"H2009\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 20, + "text": "See|strong=\"H2009\"* now|strong=\"H4994\"*, this|strong=\"H2063\"* city|strong=\"H5892\"* is|strong=\"H1931\"* near|strong=\"H7138\"* to|strong=\"H8033\"* flee|strong=\"H5127\"* to|strong=\"H8033\"*, and|strong=\"H5892\"* it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* little|strong=\"H4705\"* one|strong=\"H3808\"*. Oh|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* escape|strong=\"H4422\"* there|strong=\"H8033\"* (isn’t it|strong=\"H1931\"* a|strong=\"H3068\"* little|strong=\"H4705\"* one|strong=\"H3808\"*?), and|strong=\"H5892\"* my|strong=\"H3808\"* soul|strong=\"H5315\"* will|strong=\"H5315\"* live|strong=\"H2421\"*.”" + }, + { + "verseNum": 21, + "text": "He|strong=\"H1696\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H6440\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H1571\"* granted|strong=\"H5375\"* your|strong=\"H5375\"* request|strong=\"H1697\"* concerning|strong=\"H1697\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* also|strong=\"H1571\"*, that|strong=\"H1697\"* I|strong=\"H2009\"* will|strong=\"H1571\"* not|strong=\"H1115\"* overthrow|strong=\"H2015\"* the|strong=\"H6440\"* city|strong=\"H5892\"* of|strong=\"H1697\"* which|strong=\"H1697\"* you|strong=\"H6440\"* have|strong=\"H1571\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 22, + "text": "Hurry|strong=\"H4116\"*, escape|strong=\"H4422\"* there|strong=\"H8033\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* can|strong=\"H3201\"*’t do|strong=\"H6213\"* anything|strong=\"H1697\"* until|strong=\"H5704\"* you|strong=\"H3588\"* get|strong=\"H6213\"* there|strong=\"H8033\"*.” Therefore|strong=\"H3651\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H1697\"* the|strong=\"H5921\"* city|strong=\"H5892\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Zoar|strong=\"H6820\"*.+ 19:22 Zoar means “little”.*" + }, + { + "verseNum": 23, + "text": "The|strong=\"H5921\"* sun|strong=\"H8121\"* had|strong=\"H8121\"* risen|strong=\"H3318\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth|strong=\"H8121\"* when|strong=\"H3318\"* Lot|strong=\"H3876\"* came|strong=\"H3318\"* to|strong=\"H3318\"* Zoar|strong=\"H6820\"*." + }, + { + "verseNum": 24, + "text": "Then|strong=\"H3068\"* Yahweh|strong=\"H3068\"* rained|strong=\"H4305\"* on|strong=\"H5921\"* Sodom|strong=\"H5467\"* and|strong=\"H3068\"* on|strong=\"H5921\"* Gomorrah|strong=\"H6017\"* sulfur|strong=\"H1614\"* and|strong=\"H3068\"* fire from|strong=\"H4480\"* Yahweh|strong=\"H3068\"* out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H5921\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H3605\"* overthrew|strong=\"H2015\"* those|strong=\"H3605\"* cities|strong=\"H5892\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* plain|strong=\"H3603\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3605\"* cities|strong=\"H5892\"*, and|strong=\"H5892\"* that|strong=\"H3605\"* which|strong=\"H5892\"* grew|strong=\"H6780\"* on|strong=\"H3427\"* the|strong=\"H3605\"* ground." + }, + { + "verseNum": 26, + "text": "But|strong=\"H1961\"* Lot’s wife looked|strong=\"H5027\"* back|strong=\"H5027\"* from|strong=\"H1961\"* behind him|strong=\"H1961\"*, and|strong=\"H5027\"* she became|strong=\"H1961\"* a|strong=\"H3068\"* pillar|strong=\"H5333\"* of|strong=\"H5333\"* salt|strong=\"H4417\"*." + }, + { + "verseNum": 27, + "text": "Abraham went|strong=\"H3068\"* up|strong=\"H5975\"* early|strong=\"H7925\"* in|strong=\"H3068\"* the|strong=\"H6440\"* morning|strong=\"H1242\"* to|strong=\"H3068\"* the|strong=\"H6440\"* place|strong=\"H4725\"* where|strong=\"H8033\"* he|strong=\"H8033\"* had|strong=\"H3068\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H3605\"* looked|strong=\"H7200\"* toward|strong=\"H5921\"* Sodom|strong=\"H5467\"* and|strong=\"H6440\"* Gomorrah|strong=\"H6017\"*, and|strong=\"H6440\"* toward|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* plain|strong=\"H3603\"*, and|strong=\"H6440\"* saw|strong=\"H7200\"* that|strong=\"H7200\"* the|strong=\"H3605\"* smoke|strong=\"H7008\"* of|strong=\"H6440\"* the|strong=\"H3605\"* land|strong=\"H6440\"* went|strong=\"H5927\"* up|strong=\"H5927\"* as|strong=\"H5927\"* the|strong=\"H3605\"* smoke|strong=\"H7008\"* of|strong=\"H6440\"* a|strong=\"H3068\"* furnace|strong=\"H3536\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"H1961\"* God|strong=\"H7971\"* destroyed|strong=\"H7843\"* the|strong=\"H8432\"* cities|strong=\"H5892\"* of|strong=\"H3427\"* the|strong=\"H8432\"* plain|strong=\"H3603\"*, God|strong=\"H7971\"* remembered|strong=\"H2142\"* Abraham, and|strong=\"H7971\"* sent|strong=\"H7971\"* Lot|strong=\"H3876\"* out|strong=\"H7971\"* of|strong=\"H3427\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H3427\"* the|strong=\"H8432\"* overthrow|strong=\"H2015\"*, when|strong=\"H1961\"* he|strong=\"H7971\"* overthrew|strong=\"H2015\"* the|strong=\"H8432\"* cities|strong=\"H5892\"* in|strong=\"H3427\"* which|strong=\"H2004\"* Lot|strong=\"H3876\"* lived|strong=\"H3427\"*." + }, + { + "verseNum": 30, + "text": "Lot|strong=\"H3876\"* went|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H3427\"* of|strong=\"H1323\"* Zoar|strong=\"H6820\"*, and|strong=\"H2022\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3588\"* mountain|strong=\"H2022\"*, and|strong=\"H2022\"* his|strong=\"H3588\"* two|strong=\"H8147\"* daughters|strong=\"H1323\"* with|strong=\"H5973\"* him|strong=\"H5973\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* afraid|strong=\"H3372\"* to|strong=\"H5927\"* live|strong=\"H3427\"* in|strong=\"H3427\"* Zoar|strong=\"H6820\"*. He|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* cave|strong=\"H4631\"* with|strong=\"H5973\"* his|strong=\"H3588\"* two|strong=\"H8147\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H3605\"* firstborn|strong=\"H1067\"* said to|strong=\"H5921\"* the|strong=\"H3605\"* younger|strong=\"H6810\"*, “Our|strong=\"H3605\"* father is|strong=\"H1870\"* old|strong=\"H2204\"*, and|strong=\"H1870\"* there|strong=\"H3605\"* is|strong=\"H1870\"* not|strong=\"H1870\"* a|strong=\"H3068\"* man|strong=\"H3605\"* in|strong=\"H5921\"* the|strong=\"H3605\"* earth to|strong=\"H5921\"* come in|strong=\"H5921\"* to|strong=\"H5921\"* us|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H1870\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 32, + "text": "Come|strong=\"H3212\"*, let|strong=\"H3212\"*’s make|strong=\"H8248\"* our|strong=\"H8248\"* father drink|strong=\"H8248\"* wine|strong=\"H3196\"*, and|strong=\"H3212\"* we|strong=\"H3068\"* will|strong=\"H2233\"* lie|strong=\"H7901\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, that|strong=\"H3196\"* we|strong=\"H3068\"* may|strong=\"H2233\"* preserve|strong=\"H2421\"* our|strong=\"H8248\"* father’s family|strong=\"H2233\"* line|strong=\"H2233\"*.”" + }, + { + "verseNum": 33, + "text": "They|strong=\"H3808\"* made|strong=\"H3045\"* their|strong=\"H3045\"* father drink|strong=\"H8248\"* wine|strong=\"H3196\"* that|strong=\"H3045\"* night|strong=\"H3915\"*: and|strong=\"H6965\"* the|strong=\"H3045\"* firstborn|strong=\"H1067\"* went|strong=\"H6965\"* in|strong=\"H7901\"*, and|strong=\"H6965\"* lay|strong=\"H7901\"* with|strong=\"H3045\"* her|strong=\"H3045\"* father. He|strong=\"H1931\"* didn’t know|strong=\"H3045\"* when|strong=\"H7901\"* she|strong=\"H1931\"* lay|strong=\"H7901\"* down|strong=\"H7901\"*, nor|strong=\"H3808\"* when|strong=\"H7901\"* she|strong=\"H1931\"* arose|strong=\"H6965\"*." + }, + { + "verseNum": 34, + "text": "It|strong=\"H1961\"* came|strong=\"H1961\"* to|strong=\"H1961\"* pass|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H1961\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, that|strong=\"H1961\"* the|strong=\"H1961\"* firstborn|strong=\"H1067\"* said to|strong=\"H1961\"* the|strong=\"H1961\"* younger|strong=\"H6810\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* lay|strong=\"H7901\"* last night|strong=\"H3915\"* with|strong=\"H5973\"* my|strong=\"H1961\"* father. Let|strong=\"H1961\"*’s make|strong=\"H8248\"* him|strong=\"H5973\"* drink|strong=\"H8248\"* wine|strong=\"H3196\"* again|strong=\"H1961\"* tonight|strong=\"H3915\"*. You|strong=\"H5973\"* go|strong=\"H1961\"* in|strong=\"H7901\"*, and|strong=\"H3915\"* lie|strong=\"H7901\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, that|strong=\"H1961\"* we|strong=\"H3068\"* may|strong=\"H1961\"* preserve|strong=\"H2421\"* our|strong=\"H1961\"* father’s family|strong=\"H2233\"* line|strong=\"H2233\"*.”" + }, + { + "verseNum": 35, + "text": "They|strong=\"H3808\"* made|strong=\"H3045\"* their|strong=\"H3045\"* father drink|strong=\"H8248\"* wine|strong=\"H3196\"* that|strong=\"H3045\"* night|strong=\"H3915\"* also|strong=\"H1571\"*. The|strong=\"H3045\"* younger|strong=\"H6810\"* went|strong=\"H6965\"* and|strong=\"H6965\"* lay|strong=\"H7901\"* with|strong=\"H5973\"* him|strong=\"H5973\"*. He|strong=\"H1931\"* didn’t know|strong=\"H3045\"* when|strong=\"H7901\"* she|strong=\"H1931\"* lay|strong=\"H7901\"* down|strong=\"H7901\"*, nor|strong=\"H3808\"* when|strong=\"H7901\"* she|strong=\"H1931\"* got|strong=\"H6965\"* up|strong=\"H6965\"*." + }, + { + "verseNum": 36, + "text": "Thus both|strong=\"H8147\"* of|strong=\"H1323\"* Lot|strong=\"H3876\"*’s daughters|strong=\"H1323\"* were|strong=\"H1323\"* with|strong=\"H8147\"* child|strong=\"H2029\"* by|strong=\"H1323\"* their|strong=\"H8147\"* father." + }, + { + "verseNum": 37, + "text": "The|strong=\"H3205\"* firstborn|strong=\"H1067\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Moab|strong=\"H4124\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* the|strong=\"H3205\"* Moabites|strong=\"H4124\"* to|strong=\"H5704\"* this|strong=\"H1931\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 38, + "text": "The|strong=\"H3205\"* younger|strong=\"H6810\"* also|strong=\"H1571\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* called|strong=\"H7121\"* his|strong=\"H7121\"* name|strong=\"H8034\"* Ben Ammi. He|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* the|strong=\"H3205\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* to|strong=\"H5704\"* this|strong=\"H1931\"* day|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Abraham traveled|strong=\"H5265\"* from|strong=\"H5265\"* there|strong=\"H8033\"* toward the|strong=\"H8033\"* land of|strong=\"H3427\"* the|strong=\"H8033\"* South|strong=\"H5045\"*, and|strong=\"H8033\"* lived|strong=\"H3427\"* between|strong=\"H3427\"* Kadesh|strong=\"H6946\"* and|strong=\"H8033\"* Shur|strong=\"H7793\"*. He|strong=\"H8033\"* lived|strong=\"H3427\"* as|strong=\"H3427\"* a|strong=\"H3068\"* foreigner in|strong=\"H3427\"* Gerar|strong=\"H1642\"*." + }, + { + "verseNum": 2, + "text": "Abraham|strong=\"H3947\"* said about|strong=\"H4428\"* Sarah|strong=\"H8283\"* his|strong=\"H7971\"* wife, “She|strong=\"H1931\"* is|strong=\"H1931\"* my|strong=\"H3947\"* sister.” Abimelech king|strong=\"H4428\"* of|strong=\"H4428\"* Gerar|strong=\"H1642\"* sent|strong=\"H7971\"*, and|strong=\"H7971\"* took|strong=\"H3947\"* Sarah|strong=\"H8283\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"H2009\"* God came to|strong=\"H4191\"* Abimelech in|strong=\"H5921\"* a|strong=\"H3068\"* dream|strong=\"H2472\"* of|strong=\"H5921\"* the|strong=\"H5921\"* night|strong=\"H3915\"*, and|strong=\"H3915\"* said to|strong=\"H4191\"* him|strong=\"H5921\"*, “Behold|strong=\"H2009\"*, you|strong=\"H5921\"* are|strong=\"H2472\"* a|strong=\"H3068\"* dead|strong=\"H4191\"* man|strong=\"H1167\"*, because|strong=\"H5921\"* of|strong=\"H5921\"* the|strong=\"H5921\"* woman whom you|strong=\"H5921\"* have|strong=\"H3947\"* taken|strong=\"H3947\"*; for|strong=\"H5921\"* she|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* man|strong=\"H1167\"*’s wife|strong=\"H1166\"*.”" + }, + { + "verseNum": 4, + "text": "Now|strong=\"H1571\"* Abimelech had|strong=\"H1471\"* not|strong=\"H3808\"* come|strong=\"H7126\"* near|strong=\"H7126\"* her|strong=\"H1571\"*. He|strong=\"H3808\"* said, “Lord|strong=\"H6662\"*, will|strong=\"H1471\"* you|strong=\"H3808\"* kill|strong=\"H2026\"* even|strong=\"H1571\"* a|strong=\"H3068\"* righteous|strong=\"H6662\"* nation|strong=\"H1471\"*?" + }, + { + "verseNum": 5, + "text": "Didn’t he|strong=\"H1931\"* tell me|strong=\"H6213\"*, ‘She|strong=\"H1931\"* is|strong=\"H1931\"* my|strong=\"H6213\"* sister’? She|strong=\"H1931\"*, even|strong=\"H1571\"* she|strong=\"H1931\"* herself|strong=\"H1931\"*, said, ‘He|strong=\"H1931\"* is|strong=\"H1931\"* my|strong=\"H6213\"* brother.’ I|strong=\"H3808\"* have|strong=\"H1571\"* done|strong=\"H6213\"* this|strong=\"H2063\"* in|strong=\"H6213\"* the|strong=\"H6213\"* integrity|strong=\"H8537\"* of|strong=\"H3709\"* my|strong=\"H6213\"* heart|strong=\"H3824\"* and|strong=\"H6213\"* the|strong=\"H6213\"* innocence|strong=\"H5356\"* of|strong=\"H3709\"* my|strong=\"H6213\"* hands|strong=\"H3709\"*.”" + }, + { + "verseNum": 6, + "text": "God|strong=\"H5414\"* said|strong=\"H3651\"* to|strong=\"H6213\"* him|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H5921\"* dream|strong=\"H2472\"*, “Yes|strong=\"H3588\"*, I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* in|strong=\"H5921\"* the|strong=\"H5921\"* integrity|strong=\"H8537\"* of|strong=\"H5921\"* your|strong=\"H5414\"* heart|strong=\"H3824\"* you|strong=\"H3588\"* have|strong=\"H3045\"* done|strong=\"H6213\"* this|strong=\"H2063\"*, and|strong=\"H6213\"* I|strong=\"H3588\"* also|strong=\"H1571\"* withheld|strong=\"H2820\"* you|strong=\"H3588\"* from|strong=\"H5921\"* sinning|strong=\"H2398\"* against|strong=\"H5921\"* me|strong=\"H5414\"*. Therefore|strong=\"H3651\"* I|strong=\"H3588\"* didn’t allow|strong=\"H5414\"* you|strong=\"H3588\"* to|strong=\"H6213\"* touch|strong=\"H5060\"* her|strong=\"H5414\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, restore|strong=\"H7725\"* the|strong=\"H3605\"* man|strong=\"H4191\"*’s wife. For|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"*, and|strong=\"H7725\"* he|strong=\"H1931\"* will|strong=\"H1931\"* pray|strong=\"H6419\"* for|strong=\"H3588\"* you|strong=\"H3588\"*, and|strong=\"H7725\"* you|strong=\"H3588\"* will|strong=\"H1931\"* live|strong=\"H2421\"*. If|strong=\"H3588\"* you|strong=\"H3588\"* don’t restore|strong=\"H7725\"* her|strong=\"H3605\"*, know|strong=\"H3045\"* for|strong=\"H3588\"* sure|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1931\"* die|strong=\"H4191\"*, you|strong=\"H3588\"*, and|strong=\"H7725\"* all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H5030\"* yours|strong=\"H4191\"*.”" + }, + { + "verseNum": 8, + "text": "Abimelech rose|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H1696\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*, and|strong=\"H5650\"* called|strong=\"H7121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*, and|strong=\"H5650\"* told|strong=\"H1696\"* all|strong=\"H3605\"* these|strong=\"H1696\"* things|strong=\"H1697\"* in|strong=\"H1696\"* their|strong=\"H3605\"* ear. The|strong=\"H3605\"* men|strong=\"H5650\"* were|strong=\"H1697\"* very|strong=\"H3966\"* scared." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H6213\"* Abimelech called|strong=\"H7121\"* Abraham, and|strong=\"H1419\"* said|strong=\"H7121\"* to|strong=\"H6213\"* him|strong=\"H7121\"*, “What|strong=\"H4100\"* have|strong=\"H3588\"* you|strong=\"H3588\"* done|strong=\"H6213\"* to|strong=\"H6213\"* us|strong=\"H5921\"*? How|strong=\"H4100\"* have|strong=\"H3588\"* I|strong=\"H3588\"* sinned|strong=\"H2398\"* against|strong=\"H5921\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* brought|strong=\"H6213\"* on|strong=\"H5921\"* me|strong=\"H5978\"* and|strong=\"H1419\"* on|strong=\"H5921\"* my|strong=\"H5921\"* kingdom|strong=\"H4467\"* a|strong=\"H3068\"* great|strong=\"H1419\"* sin|strong=\"H2398\"*? You|strong=\"H3588\"* have|strong=\"H3588\"* done|strong=\"H6213\"* deeds|strong=\"H4639\"* to|strong=\"H6213\"* me|strong=\"H5978\"* that|strong=\"H3588\"* ought not|strong=\"H3808\"* to|strong=\"H6213\"* be|strong=\"H3808\"* done|strong=\"H6213\"*!”" + }, + { + "verseNum": 10, + "text": "Abimelech said|strong=\"H1697\"* to|strong=\"H6213\"* Abraham, “What|strong=\"H4100\"* did|strong=\"H6213\"* you|strong=\"H3588\"* see|strong=\"H7200\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H7200\"* done|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*?”" + }, + { + "verseNum": 11, + "text": "Abraham said|strong=\"H1697\"*, “Because|strong=\"H3588\"* I|strong=\"H3588\"* thought|strong=\"H1697\"*, ‘Surely|strong=\"H3588\"* the|strong=\"H5921\"* fear|strong=\"H3374\"* of|strong=\"H1697\"* God is|strong=\"H2088\"* not|strong=\"H2088\"* in|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"*. They|strong=\"H3588\"* will|strong=\"H1697\"* kill|strong=\"H2026\"* me|strong=\"H5921\"* for|strong=\"H3588\"* my|strong=\"H5921\"* wife’s sake|strong=\"H5921\"*.’" + }, + { + "verseNum": 12, + "text": "Besides|strong=\"H1571\"*, she|strong=\"H1931\"* is|strong=\"H1931\"* indeed|strong=\"H1571\"* my|strong=\"H1961\"* sister, the|strong=\"H1961\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* my|strong=\"H1961\"* father, but|strong=\"H3808\"* not|strong=\"H3808\"* the|strong=\"H1961\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* my|strong=\"H1961\"* mother; and|strong=\"H1323\"* she|strong=\"H1931\"* became|strong=\"H1961\"* my|strong=\"H1961\"* wife." + }, + { + "verseNum": 13, + "text": "When|strong=\"H1961\"* God caused|strong=\"H1961\"* me|strong=\"H5978\"* to|strong=\"H1961\"* wander|strong=\"H8582\"* from|strong=\"H1961\"* my|strong=\"H3605\"* father’s house|strong=\"H1004\"*, I|strong=\"H2088\"* said to|strong=\"H1961\"* her|strong=\"H3605\"*, ‘This|strong=\"H2088\"* is|strong=\"H2088\"* your|strong=\"H3605\"* kindness|strong=\"H2617\"* which|strong=\"H1931\"* you|strong=\"H3605\"* shall|strong=\"H1004\"* show|strong=\"H6213\"* to|strong=\"H1961\"* me|strong=\"H5978\"*. Everywhere|strong=\"H3605\"* that|strong=\"H3605\"* we|strong=\"H3068\"* go|strong=\"H1961\"*, say of|strong=\"H1004\"* me|strong=\"H5978\"*, “He|strong=\"H1931\"* is|strong=\"H2088\"* my|strong=\"H3605\"* brother.”’”" + }, + { + "verseNum": 14, + "text": "Abimelech took|strong=\"H3947\"* sheep|strong=\"H6629\"* and|strong=\"H7725\"* cattle|strong=\"H1241\"*, male|strong=\"H5650\"* servants|strong=\"H5650\"* and|strong=\"H7725\"* female|strong=\"H8198\"* servants|strong=\"H5650\"*, and|strong=\"H7725\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H7725\"* Abraham|strong=\"H3947\"*, and|strong=\"H7725\"* restored|strong=\"H7725\"* Sarah|strong=\"H8283\"*, his|strong=\"H5414\"* wife, to|strong=\"H7725\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 15, + "text": "Abimelech said, “Behold|strong=\"H2009\"*, my|strong=\"H6440\"* land|strong=\"H6440\"* is|strong=\"H2896\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. Dwell|strong=\"H3427\"* where|strong=\"H2009\"* it|strong=\"H6440\"* pleases|strong=\"H5869\"* you|strong=\"H6440\"*.”" + }, + { + "verseNum": 16, + "text": "To|strong=\"H5414\"* Sarah|strong=\"H8283\"* he|strong=\"H1931\"* said, “Behold|strong=\"H2009\"*, I|strong=\"H5414\"* have|strong=\"H5869\"* given|strong=\"H5414\"* your|strong=\"H3605\"* brother a|strong=\"H3068\"* thousand pieces of|strong=\"H5869\"* silver|strong=\"H3701\"*. Behold|strong=\"H2009\"*, it|strong=\"H5414\"* is|strong=\"H1931\"* for|strong=\"H3605\"* you|strong=\"H5414\"* a|strong=\"H3068\"* covering|strong=\"H3682\"* of|strong=\"H5869\"* the|strong=\"H3605\"* eyes|strong=\"H5869\"* to|strong=\"H5414\"* all|strong=\"H3605\"* that|strong=\"H3605\"* are|strong=\"H5869\"* with|strong=\"H3198\"* you|strong=\"H5414\"*. In|strong=\"H5414\"* front of|strong=\"H5869\"* all|strong=\"H3605\"* you|strong=\"H5414\"* are|strong=\"H5869\"* vindicated.”" + }, + { + "verseNum": 17, + "text": "Abraham prayed|strong=\"H6419\"* to|strong=\"H3205\"* God. So God healed|strong=\"H7495\"* Abimelech, his|strong=\"H3205\"* wife, and|strong=\"H6419\"* his|strong=\"H3205\"* female servants, and|strong=\"H6419\"* they|strong=\"H3205\"* bore|strong=\"H3205\"* children|strong=\"H3205\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* closed|strong=\"H6113\"* up|strong=\"H6113\"* tight all|strong=\"H3605\"* the|strong=\"H3605\"* wombs|strong=\"H7358\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Abimelech, because|strong=\"H3588\"* of|strong=\"H1004\"* Sarah|strong=\"H8283\"*, Abraham’s wife." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* visited|strong=\"H6485\"* Sarah|strong=\"H8283\"* as|strong=\"H6213\"* he|strong=\"H6213\"* had|strong=\"H3068\"* said|strong=\"H1696\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* did|strong=\"H6213\"* to|strong=\"H1696\"* Sarah|strong=\"H8283\"* as|strong=\"H6213\"* he|strong=\"H6213\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 2, + "text": "Sarah|strong=\"H8283\"* conceived|strong=\"H2029\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* Abraham a|strong=\"H3068\"* son|strong=\"H1121\"* in|strong=\"H1696\"* his|strong=\"H8283\"* old|strong=\"H1121\"* age|strong=\"H1121\"*, at|strong=\"H1121\"* the|strong=\"H3205\"* set|strong=\"H4150\"* time|strong=\"H4150\"* of|strong=\"H1121\"* which|strong=\"H4150\"* God had|strong=\"H3205\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H3205\"*." + }, + { + "verseNum": 3, + "text": "Abraham called|strong=\"H7121\"* his|strong=\"H7121\"* son|strong=\"H1121\"* who|strong=\"H1121\"* was|strong=\"H8034\"* born|strong=\"H3205\"* to|strong=\"H3205\"* him|strong=\"H3205\"*, whom|strong=\"H7121\"* Sarah|strong=\"H8283\"* bore|strong=\"H3205\"* to|strong=\"H3205\"* him|strong=\"H3205\"*, Isaac|strong=\"H3327\"*.+ 21:3 Isaac means “He laughs”.*" + }, + { + "verseNum": 4, + "text": "Abraham circumcised|strong=\"H4135\"* his|strong=\"H6680\"* son|strong=\"H1121\"*, Isaac|strong=\"H3327\"*, when|strong=\"H3117\"* he|strong=\"H3117\"* was|strong=\"H3117\"* eight|strong=\"H8083\"* days|strong=\"H3117\"* old|strong=\"H1121\"*, as|strong=\"H3117\"* God had|strong=\"H3327\"* commanded|strong=\"H6680\"* him|strong=\"H6680\"*." + }, + { + "verseNum": 5, + "text": "Abraham was|strong=\"H3327\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* his|strong=\"H3327\"* son|strong=\"H1121\"*, Isaac|strong=\"H3327\"*, was|strong=\"H3327\"* born|strong=\"H3205\"* to|strong=\"H3205\"* him|strong=\"H3205\"*." + }, + { + "verseNum": 6, + "text": "Sarah|strong=\"H8283\"* said|strong=\"H8085\"*, “God has|strong=\"H3605\"* made|strong=\"H6213\"* me|strong=\"H6213\"* laugh|strong=\"H6711\"*. Everyone|strong=\"H3605\"* who|strong=\"H3605\"* hears|strong=\"H8085\"* will|strong=\"H8085\"* laugh|strong=\"H6711\"* with|strong=\"H6213\"* me|strong=\"H6213\"*.”" + }, + { + "verseNum": 7, + "text": "She|strong=\"H3588\"* said|strong=\"H4448\"*, “Who|strong=\"H4310\"* would|strong=\"H4310\"* have|strong=\"H1121\"* said|strong=\"H4448\"* to|strong=\"H3205\"* Abraham that|strong=\"H3588\"* Sarah|strong=\"H8283\"* would|strong=\"H4310\"* nurse|strong=\"H3243\"* children|strong=\"H1121\"*? For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1121\"* borne|strong=\"H3205\"* him|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"* in|strong=\"H1121\"* his|strong=\"H3588\"* old|strong=\"H1121\"* age|strong=\"H1121\"*.”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H6213\"* child|strong=\"H3206\"* grew|strong=\"H1431\"* and|strong=\"H3117\"* was|strong=\"H3117\"* weaned|strong=\"H1580\"*. Abraham made|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* feast|strong=\"H4960\"* on|strong=\"H3117\"* the|strong=\"H6213\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Isaac|strong=\"H3327\"* was|strong=\"H3117\"* weaned|strong=\"H1580\"*." + }, + { + "verseNum": 9, + "text": "Sarah|strong=\"H8283\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hagar|strong=\"H1904\"* the|strong=\"H7200\"* Egyptian|strong=\"H4713\"*, whom she had|strong=\"H3205\"* borne|strong=\"H3205\"* to|strong=\"H3205\"* Abraham, mocking|strong=\"H6711\"*." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H3588\"* she|strong=\"H3588\"* said to|strong=\"H1121\"* Abraham, “Cast|strong=\"H3423\"* out|strong=\"H3423\"* this|strong=\"H2063\"* servant and|strong=\"H1121\"* her|strong=\"H3423\"* son|strong=\"H1121\"*! For|strong=\"H3588\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* this|strong=\"H2063\"* servant will|strong=\"H1121\"* not|strong=\"H3808\"* be|strong=\"H3808\"* heir|strong=\"H3423\"* with|strong=\"H5973\"* my|strong=\"H3588\"* son|strong=\"H1121\"*, Isaac|strong=\"H3327\"*.”" + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* thing|strong=\"H1697\"* was|strong=\"H1697\"* very|strong=\"H3966\"* grievous in|strong=\"H5921\"* Abraham’s sight|strong=\"H5869\"* on|strong=\"H5921\"* account|strong=\"H5921\"* of|strong=\"H1121\"* his|strong=\"H5921\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 12, + "text": "God said|strong=\"H7121\"* to|strong=\"H5921\"* Abraham, “Don’t let it|strong=\"H7121\"* be|strong=\"H5869\"* grievous in|strong=\"H5921\"* your|strong=\"H3605\"* sight|strong=\"H5869\"* because|strong=\"H3588\"* of|strong=\"H6963\"* the|strong=\"H3605\"* boy|strong=\"H5288\"*, and|strong=\"H6963\"* because|strong=\"H3588\"* of|strong=\"H6963\"* your|strong=\"H3605\"* servant|strong=\"H5288\"*. In|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3588\"* Sarah|strong=\"H8283\"* says to|strong=\"H5921\"* you|strong=\"H3588\"*, listen|strong=\"H8085\"* to|strong=\"H5921\"* her|strong=\"H3605\"* voice|strong=\"H6963\"*. For|strong=\"H3588\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"* will|strong=\"H5869\"* be|strong=\"H5869\"* named|strong=\"H7121\"* through|strong=\"H5921\"* Isaac|strong=\"H3327\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H3588\"* will|strong=\"H1471\"* also|strong=\"H1571\"* make|strong=\"H7760\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* of|strong=\"H1121\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3588\"* servant, because|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H7760\"* child|strong=\"H1121\"*.”" + }, + { + "verseNum": 14, + "text": "Abraham|strong=\"H3947\"* rose|strong=\"H7925\"* up|strong=\"H5414\"* early|strong=\"H7925\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*, and|strong=\"H7971\"* took|strong=\"H3947\"* bread|strong=\"H3899\"* and|strong=\"H7971\"* a|strong=\"H3068\"* container of|strong=\"H4325\"* water|strong=\"H4325\"*, and|strong=\"H7971\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3212\"* Hagar|strong=\"H1904\"*, putting|strong=\"H7760\"* it|strong=\"H5414\"* on|strong=\"H5921\"* her|strong=\"H5414\"* shoulder|strong=\"H7926\"*; and|strong=\"H7971\"* gave|strong=\"H5414\"* her|strong=\"H5414\"* the|strong=\"H5921\"* child|strong=\"H3206\"*, and|strong=\"H7971\"* sent|strong=\"H7971\"* her|strong=\"H5414\"* away|strong=\"H7971\"*. She|strong=\"H5921\"* departed|strong=\"H3212\"*, and|strong=\"H7971\"* wandered|strong=\"H8582\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"* of|strong=\"H4325\"* Beersheba." + }, + { + "verseNum": 15, + "text": "The|strong=\"H4480\"* water|strong=\"H4325\"* in|strong=\"H3615\"* the|strong=\"H4480\"* container was|strong=\"H3206\"* spent|strong=\"H3615\"*, and|strong=\"H4325\"* she put|strong=\"H3615\"* the|strong=\"H4480\"* child|strong=\"H3206\"* under|strong=\"H8478\"* one|strong=\"H4480\"* of|strong=\"H4325\"* the|strong=\"H4480\"* shrubs|strong=\"H7880\"*." + }, + { + "verseNum": 16, + "text": "She|strong=\"H3588\"* went|strong=\"H3212\"* and|strong=\"H3212\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* opposite|strong=\"H5048\"* him|strong=\"H7200\"*, a|strong=\"H3068\"* good|strong=\"H7368\"* way|strong=\"H3212\"* off|strong=\"H7368\"*, about|strong=\"H5048\"* a|strong=\"H3068\"* bow|strong=\"H7198\"* shot away|strong=\"H5375\"*. For|strong=\"H3588\"* she|strong=\"H3588\"* said, “Don’t let|strong=\"H3212\"* me|strong=\"H7200\"* see|strong=\"H7200\"* the|strong=\"H7200\"* death|strong=\"H4194\"* of|strong=\"H3427\"* the|strong=\"H7200\"* child|strong=\"H3206\"*.” She|strong=\"H3588\"* sat|strong=\"H3427\"* opposite|strong=\"H5048\"* him|strong=\"H7200\"*, and|strong=\"H3212\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* her|strong=\"H5375\"* voice|strong=\"H6963\"*, and|strong=\"H3212\"* wept|strong=\"H1058\"*." + }, + { + "verseNum": 17, + "text": "God|strong=\"H8064\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* boy|strong=\"H5288\"*." + }, + { + "verseNum": 18, + "text": "Get|strong=\"H6965\"* up|strong=\"H6965\"*, lift|strong=\"H5375\"* up|strong=\"H6965\"* the|strong=\"H3588\"* boy|strong=\"H5288\"*, and|strong=\"H6965\"* hold|strong=\"H2388\"* him|strong=\"H3027\"* with|strong=\"H3027\"* your|strong=\"H7760\"* hand|strong=\"H3027\"*. For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1471\"* make|strong=\"H7760\"* him|strong=\"H3027\"* a|strong=\"H3068\"* great|strong=\"H1419\"* nation|strong=\"H1471\"*.”" + }, + { + "verseNum": 19, + "text": "God opened|strong=\"H6491\"* her|strong=\"H7200\"* eyes|strong=\"H5869\"*, and|strong=\"H3212\"* she|strong=\"H8248\"* saw|strong=\"H7200\"* a|strong=\"H3068\"* well|strong=\"H5869\"* of|strong=\"H5869\"* water|strong=\"H4325\"*. She|strong=\"H8248\"* went|strong=\"H3212\"*, filled|strong=\"H4390\"* the|strong=\"H7200\"* container with|strong=\"H4390\"* water|strong=\"H4325\"*, and|strong=\"H3212\"* gave|strong=\"H8248\"* the|strong=\"H7200\"* boy|strong=\"H5288\"* a|strong=\"H3068\"* drink|strong=\"H8248\"*." + }, + { + "verseNum": 20, + "text": "God was|strong=\"H1961\"* with|strong=\"H3427\"* the|strong=\"H1961\"* boy|strong=\"H5288\"*, and|strong=\"H5288\"* he|strong=\"H4057\"* grew|strong=\"H1431\"*. He|strong=\"H4057\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H1961\"* wilderness|strong=\"H4057\"*, and|strong=\"H5288\"* as|strong=\"H1961\"* he|strong=\"H4057\"* grew|strong=\"H1431\"* up|strong=\"H1431\"*, he|strong=\"H4057\"* became|strong=\"H1961\"* an|strong=\"H1961\"* archer|strong=\"H7235\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H4057\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3947\"* wilderness|strong=\"H4057\"* of|strong=\"H3427\"* Paran|strong=\"H6290\"*. His|strong=\"H3947\"* mother got|strong=\"H3947\"* a|strong=\"H3068\"* wife for|strong=\"H4714\"* him|strong=\"H3947\"* out|strong=\"H3947\"* of|strong=\"H3427\"* the|strong=\"H3947\"* land of|strong=\"H3427\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 22, + "text": "At|strong=\"H6213\"* that|strong=\"H3605\"* time|strong=\"H6256\"*, Abimelech and|strong=\"H6213\"* Phicol|strong=\"H6369\"* the|strong=\"H3605\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* his|strong=\"H3605\"* army|strong=\"H6635\"* spoke to|strong=\"H1961\"* Abraham, saying, “God is|strong=\"H1931\"* with|strong=\"H5973\"* you|strong=\"H3605\"* in|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 23, + "text": "Now|strong=\"H6258\"*, therefore|strong=\"H6258\"*, swear|strong=\"H7650\"* to|strong=\"H6213\"* me|strong=\"H5978\"* here|strong=\"H2008\"* by|strong=\"H7650\"* God that|strong=\"H6213\"* you|strong=\"H6213\"* will|strong=\"H6213\"* not|strong=\"H6213\"* deal|strong=\"H6213\"* falsely|strong=\"H8266\"* with|strong=\"H5973\"* me|strong=\"H5978\"*, nor|strong=\"H5209\"* with|strong=\"H5973\"* my|strong=\"H6213\"* son|strong=\"H5209\"*, nor|strong=\"H5209\"* with|strong=\"H5973\"* my|strong=\"H6213\"* son|strong=\"H5209\"*’s son|strong=\"H5209\"*. But|strong=\"H6258\"* according to|strong=\"H6213\"* the|strong=\"H6213\"* kindness|strong=\"H2617\"* that|strong=\"H6213\"* I|strong=\"H6258\"* have|strong=\"H6258\"* done|strong=\"H6213\"* to|strong=\"H6213\"* you|strong=\"H6213\"*, you|strong=\"H6213\"* shall|strong=\"H2617\"* do|strong=\"H6213\"* to|strong=\"H6213\"* me|strong=\"H5978\"*, and|strong=\"H2617\"* to|strong=\"H6213\"* the|strong=\"H6213\"* land in|strong=\"H6213\"* which|strong=\"H2617\"* you|strong=\"H6213\"* have|strong=\"H6258\"* lived|strong=\"H1481\"* as|strong=\"H6213\"* a|strong=\"H3068\"* foreigner.”" + }, + { + "verseNum": 24, + "text": "Abraham said, “I|strong=\"H7650\"* will swear|strong=\"H7650\"*.”" + }, + { + "verseNum": 25, + "text": "Abraham complained|strong=\"H3198\"* to|strong=\"H5921\"* Abimelech because|strong=\"H5921\"* of|strong=\"H5650\"* a|strong=\"H3068\"* water|strong=\"H4325\"* well, which|strong=\"H4325\"* Abimelech’s servants|strong=\"H5650\"* had|strong=\"H4325\"* violently taken|strong=\"H1497\"* away|strong=\"H1497\"*." + }, + { + "verseNum": 26, + "text": "Abimelech said|strong=\"H1697\"*, “I|strong=\"H3117\"* don’t know|strong=\"H3045\"* who|strong=\"H4310\"* has|strong=\"H4310\"* done|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*. You|strong=\"H3117\"* didn’t tell|strong=\"H5046\"* me|strong=\"H5046\"*, and|strong=\"H3117\"* I|strong=\"H3117\"* didn’t hear|strong=\"H8085\"* of|strong=\"H3117\"* it|strong=\"H6213\"* until|strong=\"H1115\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 27, + "text": "Abraham|strong=\"H3947\"* took|strong=\"H3947\"* sheep|strong=\"H6629\"* and|strong=\"H6629\"* cattle|strong=\"H1241\"*, and|strong=\"H6629\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5414\"* Abimelech. Those two|strong=\"H8147\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 28, + "text": "Abraham set|strong=\"H5324\"* seven|strong=\"H7651\"* ewe|strong=\"H3535\"* lambs|strong=\"H3535\"* of|strong=\"H6629\"* the|strong=\"H5324\"* flock|strong=\"H6629\"* by|strong=\"H6629\"* themselves." + }, + { + "verseNum": 29, + "text": "Abimelech said to|strong=\"H5324\"* Abraham, “What|strong=\"H4100\"* do|strong=\"H4100\"* these|strong=\"H2007\"* seven|strong=\"H7651\"* ewe|strong=\"H3535\"* lambs|strong=\"H3535\"*, which|strong=\"H4100\"* you|strong=\"H4100\"* have set|strong=\"H5324\"* by|strong=\"H5324\"* themselves, mean?”" + }, + { + "verseNum": 30, + "text": "He|strong=\"H3588\"* said, “You|strong=\"H3588\"* shall|strong=\"H3027\"* take|strong=\"H3947\"* these|strong=\"H2063\"* seven|strong=\"H7651\"* ewe|strong=\"H3535\"* lambs|strong=\"H3535\"* from|strong=\"H3027\"* my|strong=\"H3947\"* hand|strong=\"H3027\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* may|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* witness|strong=\"H5713\"* to|strong=\"H1961\"* me|strong=\"H3947\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* dug|strong=\"H2658\"* this|strong=\"H2063\"* well.”" + }, + { + "verseNum": 31, + "text": "Therefore|strong=\"H3651\"* he|strong=\"H1931\"* called|strong=\"H7121\"* that|strong=\"H3588\"* place|strong=\"H4725\"* Beersheba,+ 21:31 Beersheba can mean “well of the oath” or “well of seven”.* because|strong=\"H3588\"* they|strong=\"H3588\"* both|strong=\"H8147\"* swore|strong=\"H7650\"* an|strong=\"H7650\"* oath|strong=\"H7650\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 32, + "text": "So|strong=\"H6965\"* they|strong=\"H1285\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* at|strong=\"H7725\"* Beersheba. Abimelech rose|strong=\"H6965\"* up|strong=\"H6965\"* with|strong=\"H1285\"* Phicol|strong=\"H6369\"*, the|strong=\"H7725\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* his|strong=\"H7725\"* army|strong=\"H6635\"*, and|strong=\"H6965\"* they|strong=\"H1285\"* returned|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H7725\"* land of|strong=\"H8269\"* the|strong=\"H7725\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 33, + "text": "Abraham|strong=\"H5193\"* planted|strong=\"H5193\"* a|strong=\"H3068\"* tamarisk tree in|strong=\"H3068\"* Beersheba, and|strong=\"H3068\"* there|strong=\"H8033\"* he|strong=\"H8033\"* called|strong=\"H7121\"* on|strong=\"H3068\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* Everlasting|strong=\"H5769\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 34, + "text": "Abraham lived|strong=\"H1481\"* as|strong=\"H3117\"* a|strong=\"H3068\"* foreigner in|strong=\"H3117\"* the|strong=\"H3117\"* land of|strong=\"H3117\"* the|strong=\"H3117\"* Philistines|strong=\"H6430\"* many|strong=\"H7227\"* days|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* these things|strong=\"H1697\"*, God tested|strong=\"H5254\"* Abraham, and|strong=\"H1697\"* said|strong=\"H1697\"* to|strong=\"H1961\"* him|strong=\"H1697\"*, “Abraham!”" + }, + { + "verseNum": 2, + "text": "He|strong=\"H8033\"* said, “Now|strong=\"H4994\"* take|strong=\"H3947\"* your|strong=\"H3947\"* son|strong=\"H1121\"*, your|strong=\"H3947\"* only|strong=\"H3173\"* son|strong=\"H1121\"*, Isaac|strong=\"H3327\"*, whom you|strong=\"H5921\"* love, and|strong=\"H1121\"* go|strong=\"H3212\"* into|strong=\"H5927\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Moriah|strong=\"H4179\"*. Offer|strong=\"H5927\"* him|strong=\"H5921\"* there|strong=\"H8033\"* as|strong=\"H5927\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* on|strong=\"H5921\"* one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"* which|strong=\"H8033\"* I|strong=\"H5921\"* will|strong=\"H1121\"* tell|strong=\"H4994\"* you|strong=\"H5921\"* of|strong=\"H1121\"*.”" + }, + { + "verseNum": 3, + "text": "Abraham|strong=\"H3947\"* rose|strong=\"H6965\"* early|strong=\"H7925\"* in|strong=\"H3212\"* the|strong=\"H3947\"* morning|strong=\"H1242\"*, and|strong=\"H1121\"* saddled|strong=\"H2280\"* his|strong=\"H3947\"* donkey|strong=\"H2543\"*; and|strong=\"H1121\"* took|strong=\"H3947\"* two|strong=\"H8147\"* of|strong=\"H1121\"* his|strong=\"H3947\"* young|strong=\"H5288\"* men|strong=\"H5288\"* with|strong=\"H3212\"* him|strong=\"H3947\"*, and|strong=\"H1121\"* Isaac|strong=\"H3327\"* his|strong=\"H3947\"* son|strong=\"H1121\"*. He|strong=\"H8147\"* split|strong=\"H1234\"* the|strong=\"H3947\"* wood|strong=\"H6086\"* for|strong=\"H6086\"* the|strong=\"H3947\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H1121\"* rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H1121\"* went|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3947\"* place|strong=\"H4725\"* of|strong=\"H1121\"* which|strong=\"H6086\"* God had|strong=\"H3327\"* told him|strong=\"H3947\"*." + }, + { + "verseNum": 4, + "text": "On|strong=\"H3117\"* the|strong=\"H7200\"* third|strong=\"H7992\"* day|strong=\"H3117\"* Abraham|strong=\"H5375\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"*, and|strong=\"H3117\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* place|strong=\"H4725\"* far|strong=\"H7350\"* off|strong=\"H7350\"*." + }, + { + "verseNum": 5, + "text": "Abraham said to|strong=\"H5704\"* his|strong=\"H7725\"* young|strong=\"H5288\"* men|strong=\"H5288\"*, “Stay|strong=\"H3427\"* here|strong=\"H6311\"* with|strong=\"H5973\"* the|strong=\"H3541\"* donkey|strong=\"H2543\"*. The|strong=\"H3541\"* boy|strong=\"H5288\"* and|strong=\"H7725\"* I|strong=\"H5704\"* will|strong=\"H5288\"* go|strong=\"H3212\"* over|strong=\"H3427\"* there|strong=\"H3427\"*. We|strong=\"H5704\"* will|strong=\"H5288\"* worship|strong=\"H7812\"*, and|strong=\"H7725\"* come|strong=\"H3212\"* back|strong=\"H7725\"* to|strong=\"H5704\"* you|strong=\"H5704\"*.”" + }, + { + "verseNum": 6, + "text": "Abraham|strong=\"H3947\"* took|strong=\"H3947\"* the|strong=\"H5921\"* wood|strong=\"H6086\"* of|strong=\"H1121\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H1121\"* laid|strong=\"H7760\"* it|strong=\"H7760\"* on|strong=\"H5921\"* Isaac|strong=\"H3327\"* his|strong=\"H7760\"* son|strong=\"H1121\"*. He|strong=\"H8147\"* took|strong=\"H3947\"* in|strong=\"H5921\"* his|strong=\"H7760\"* hand|strong=\"H3027\"* the|strong=\"H5921\"* fire and|strong=\"H1121\"* the|strong=\"H5921\"* knife|strong=\"H3979\"*. They|strong=\"H5921\"* both|strong=\"H8147\"* went|strong=\"H3212\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 7, + "text": "Isaac|strong=\"H3327\"* spoke to|strong=\"H1121\"* Abraham his|strong=\"H3327\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* said, “My father|strong=\"H1121\"*?”" + }, + { + "verseNum": 8, + "text": "Abraham said, “God will|strong=\"H1121\"* provide|strong=\"H7200\"* himself the|strong=\"H7200\"* lamb|strong=\"H7716\"* for|strong=\"H1121\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, my|strong=\"H7200\"* son|strong=\"H1121\"*.” So|strong=\"H7200\"* they|strong=\"H5930\"* both|strong=\"H8147\"* went|strong=\"H3212\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H8033\"* came to|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* which|strong=\"H8033\"* God had|strong=\"H3327\"* told|strong=\"H7760\"* him|strong=\"H5921\"* of|strong=\"H1121\"*. Abraham built|strong=\"H1129\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* there|strong=\"H8033\"*, and|strong=\"H1121\"* laid|strong=\"H7760\"* the|strong=\"H5921\"* wood|strong=\"H6086\"* in|strong=\"H5921\"* order|strong=\"H6186\"*, bound|strong=\"H6123\"* Isaac|strong=\"H3327\"* his|strong=\"H7760\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* laid|strong=\"H7760\"* him|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* wood|strong=\"H6086\"*." + }, + { + "verseNum": 10, + "text": "Abraham|strong=\"H3947\"* stretched|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"*, and|strong=\"H1121\"* took|strong=\"H3947\"* the|strong=\"H3947\"* knife|strong=\"H3979\"* to|strong=\"H7971\"* kill|strong=\"H7819\"* his|strong=\"H7971\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* called|strong=\"H7121\"* to|strong=\"H3068\"* him|strong=\"H7121\"* out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3068\"* sky|strong=\"H8064\"*, and|strong=\"H3068\"* said|strong=\"H7121\"*, “Abraham, Abraham!”" + }, + { + "verseNum": 12, + "text": "He|strong=\"H3588\"* said, “Don’t lay|strong=\"H7971\"* your|strong=\"H3045\"* hand|strong=\"H3027\"* on|strong=\"H3027\"* the|strong=\"H3588\"* boy|strong=\"H5288\"* or|strong=\"H3808\"* do|strong=\"H6213\"* anything|strong=\"H3972\"* to|strong=\"H7971\"* him|strong=\"H7971\"*. For|strong=\"H3588\"* now|strong=\"H6258\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* fear|strong=\"H3373\"* God|strong=\"H3808\"*, since|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3045\"* not|strong=\"H3808\"* withheld|strong=\"H2820\"* your|strong=\"H3045\"* son|strong=\"H1121\"*, your|strong=\"H3045\"* only|strong=\"H3173\"* son|strong=\"H1121\"*, from|strong=\"H4480\"* me|strong=\"H7971\"*.”" + }, + { + "verseNum": 13, + "text": "Abraham|strong=\"H3947\"* lifted|strong=\"H5375\"* up|strong=\"H5927\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"*, and|strong=\"H1121\"* looked|strong=\"H7200\"*, and|strong=\"H1121\"* saw|strong=\"H7200\"* that|strong=\"H7200\"* behind him|strong=\"H7200\"* was|strong=\"H1121\"* a|strong=\"H3068\"* ram caught|strong=\"H3947\"* in|strong=\"H3212\"* the|strong=\"H7200\"* thicket|strong=\"H5442\"* by|strong=\"H5927\"* his|strong=\"H5375\"* horns|strong=\"H7161\"*. Abraham|strong=\"H3947\"* went|strong=\"H3212\"* and|strong=\"H1121\"* took|strong=\"H3947\"* the|strong=\"H7200\"* ram, and|strong=\"H1121\"* offered|strong=\"H5927\"* him|strong=\"H7200\"* up|strong=\"H5927\"* for|strong=\"H8478\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* his|strong=\"H5375\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 14, + "text": "Abraham called|strong=\"H7121\"* the|strong=\"H7200\"* name|strong=\"H8034\"* of|strong=\"H3068\"* that|strong=\"H7200\"* place|strong=\"H4725\"* “Yahweh|strong=\"H3068\"* Will|strong=\"H3068\"* Provide|strong=\"H7200\"*”.+ 22:14 or, Yahweh-Jireh, or, Yahweh-Seeing* As|strong=\"H3117\"* it|strong=\"H1931\"* is|strong=\"H3068\"* said|strong=\"H7121\"* to|strong=\"H3068\"* this|strong=\"H1931\"* day|strong=\"H3117\"*, “On|strong=\"H3117\"* Yahweh|strong=\"H3068\"*’s mountain|strong=\"H2022\"*, it|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H3068\"* provided|strong=\"H7200\"*.”" + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* called|strong=\"H7121\"* to|strong=\"H3068\"* Abraham a|strong=\"H3068\"* second|strong=\"H8145\"* time|strong=\"H8145\"* out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3068\"* sky|strong=\"H8064\"*," + }, + { + "verseNum": 16, + "text": "and|strong=\"H1121\"* said|strong=\"H1697\"*, “‘I|strong=\"H3588\"* have|strong=\"H3068\"* sworn|strong=\"H7650\"* by|strong=\"H7650\"* myself,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, ‘because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*, and|strong=\"H1121\"* have|strong=\"H3068\"* not|strong=\"H3808\"* withheld|strong=\"H2820\"* your|strong=\"H3068\"* son|strong=\"H1121\"*, your|strong=\"H3068\"* only|strong=\"H3173\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 17, + "text": "that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H8064\"* bless|strong=\"H1288\"* you|strong=\"H3588\"* greatly|strong=\"H7235\"*, and|strong=\"H8064\"* I|strong=\"H3588\"* will|strong=\"H8064\"* multiply|strong=\"H7235\"* your|strong=\"H5921\"* offspring|strong=\"H2233\"* greatly|strong=\"H7235\"* like|strong=\"H5921\"* the|strong=\"H5921\"* stars|strong=\"H3556\"* of|strong=\"H8179\"* the|strong=\"H5921\"* heavens|strong=\"H8064\"*, and|strong=\"H8064\"* like|strong=\"H5921\"* the|strong=\"H5921\"* sand|strong=\"H2344\"* which|strong=\"H2344\"* is|strong=\"H1288\"* on|strong=\"H5921\"* the|strong=\"H5921\"* seashore|strong=\"H3220\"*. Your|strong=\"H5921\"* offspring|strong=\"H2233\"* will|strong=\"H8064\"* possess|strong=\"H3423\"* the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* his|strong=\"H5921\"* enemies." + }, + { + "verseNum": 18, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* of|strong=\"H6963\"* the|strong=\"H3605\"* earth will|strong=\"H1471\"* be|strong=\"H1471\"* blessed|strong=\"H1288\"* by|strong=\"H3605\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"*, because|strong=\"H6118\"* you|strong=\"H3605\"* have|strong=\"H1471\"* obeyed|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*.’”" + }, + { + "verseNum": 19, + "text": "So|strong=\"H6965\"* Abraham returned|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* young|strong=\"H5288\"* men|strong=\"H5288\"*, and|strong=\"H6965\"* they|strong=\"H3162\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* together|strong=\"H3162\"* to|strong=\"H7725\"* Beersheba. Abraham lived|strong=\"H3427\"* at|strong=\"H3427\"* Beersheba." + }, + { + "verseNum": 20, + "text": "After|strong=\"H1961\"* these|strong=\"H1931\"* things|strong=\"H1697\"*, Abraham was|strong=\"H1961\"* told|strong=\"H5046\"*, “Behold|strong=\"H2009\"*, Milcah|strong=\"H4435\"*, she|strong=\"H1931\"* also|strong=\"H1571\"* has|strong=\"H1961\"* borne|strong=\"H3205\"* children|strong=\"H1121\"* to|strong=\"H1961\"* your|strong=\"H1961\"* brother Nahor|strong=\"H5152\"*:" + }, + { + "verseNum": 21, + "text": "Uz|strong=\"H5780\"* his|strong=\"H5780\"* firstborn|strong=\"H1060\"*, Buz his|strong=\"H5780\"* brother, Kemuel|strong=\"H7055\"* the|strong=\"H7055\"* father of|strong=\"H1060\"* Aram," + }, + { + "verseNum": 22, + "text": "Chesed|strong=\"H3777\"*, Hazo|strong=\"H2375\"*, Pildash|strong=\"H6394\"*, Jidlaph|strong=\"H3044\"*, and|strong=\"H2375\"* Bethuel|strong=\"H1328\"*.”" + }, + { + "verseNum": 23, + "text": "Bethuel|strong=\"H1328\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Rebekah|strong=\"H7259\"*. These eight|strong=\"H8083\"* Milcah|strong=\"H4435\"* bore|strong=\"H3205\"* to|strong=\"H3205\"* Nahor|strong=\"H5152\"*, Abraham’s brother." + }, + { + "verseNum": 24, + "text": "His|strong=\"H1931\"* concubine|strong=\"H6370\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Reumah|strong=\"H7208\"*, also|strong=\"H1571\"* bore|strong=\"H3205\"* Tebah|strong=\"H2875\"*, Gaham|strong=\"H1514\"*, Tahash|strong=\"H8477\"*, and|strong=\"H8034\"* Maacah|strong=\"H4601\"*." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Sarah|strong=\"H8283\"* lived|strong=\"H2416\"* one|strong=\"H2416\"* hundred|strong=\"H3967\"* twenty-seven|strong=\"H6242\"* years|strong=\"H8141\"*. This|strong=\"H2416\"* was|strong=\"H1961\"* the|strong=\"H1961\"* length|strong=\"H8141\"* of|strong=\"H8141\"* Sarah|strong=\"H8283\"*’s life|strong=\"H2416\"*." + }, + { + "verseNum": 2, + "text": "Sarah|strong=\"H8283\"* died|strong=\"H4191\"* in|strong=\"H4191\"* Kiriath Arba (also|strong=\"H1931\"* called Hebron|strong=\"H2275\"*), in|strong=\"H4191\"* the|strong=\"H4191\"* land of|strong=\"H4191\"* Canaan|strong=\"H3667\"*. Abraham came to|strong=\"H4191\"* mourn|strong=\"H5594\"* for|strong=\"H4191\"* Sarah|strong=\"H8283\"*, and|strong=\"H4191\"* to|strong=\"H4191\"* weep|strong=\"H1058\"* for|strong=\"H4191\"* her|strong=\"H1058\"*." + }, + { + "verseNum": 3, + "text": "Abraham rose|strong=\"H6965\"* up|strong=\"H6965\"* from|strong=\"H6440\"* before|strong=\"H6440\"* his|strong=\"H6440\"* dead|strong=\"H4191\"* and|strong=\"H1121\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Heth|strong=\"H2845\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 4, + "text": "“I|strong=\"H5414\"* am a|strong=\"H3068\"* stranger|strong=\"H1616\"* and|strong=\"H6440\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"* living with|strong=\"H5973\"* you|strong=\"H5414\"*. Give|strong=\"H5414\"* me|strong=\"H5414\"* a|strong=\"H3068\"* possession of|strong=\"H6440\"* a|strong=\"H3068\"* burying-place with|strong=\"H5973\"* you|strong=\"H5414\"*, that|strong=\"H1616\"* I|strong=\"H5414\"* may|strong=\"H5414\"* bury|strong=\"H6912\"* my|strong=\"H5414\"* dead|strong=\"H4191\"* out|strong=\"H5414\"* of|strong=\"H6440\"* my|strong=\"H5414\"* sight|strong=\"H6440\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H6030\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Heth|strong=\"H2845\"* answered|strong=\"H6030\"* Abraham, saying to|strong=\"H1121\"* him|strong=\"H6030\"*," + }, + { + "verseNum": 6, + "text": "“Hear|strong=\"H8085\"* us|strong=\"H8085\"*, my|strong=\"H8085\"* lord. You|strong=\"H3808\"* are|strong=\"H6913\"* a|strong=\"H3068\"* prince|strong=\"H5387\"* of|strong=\"H4480\"* God|strong=\"H3808\"* among|strong=\"H8432\"* us|strong=\"H8085\"*. Bury|strong=\"H6912\"* your|strong=\"H8085\"* dead|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H8085\"* best of|strong=\"H4480\"* our|strong=\"H8085\"* tombs|strong=\"H6913\"*. None|strong=\"H3808\"* of|strong=\"H4480\"* us|strong=\"H8085\"* will|strong=\"H3808\"* withhold|strong=\"H3607\"* from|strong=\"H4480\"* you|strong=\"H3808\"* his|strong=\"H8085\"* tomb|strong=\"H6913\"*. Bury|strong=\"H6912\"* your|strong=\"H8085\"* dead|strong=\"H4191\"*.”" + }, + { + "verseNum": 7, + "text": "Abraham rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H1121\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* to|strong=\"H1121\"* the|strong=\"H6965\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H6965\"* land, to|strong=\"H1121\"* the|strong=\"H6965\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Heth|strong=\"H2845\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H1696\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* them|strong=\"H6440\"*, saying|strong=\"H1696\"*, “If|strong=\"H3426\"* you|strong=\"H6440\"* agree|strong=\"H8085\"* that|strong=\"H8085\"* I|strong=\"H5315\"* should bury|strong=\"H6912\"* my|strong=\"H8085\"* dead|strong=\"H4191\"* out|strong=\"H6440\"* of|strong=\"H1121\"* my|strong=\"H8085\"* sight|strong=\"H6440\"*, hear|strong=\"H8085\"* me|strong=\"H6440\"*, and|strong=\"H1121\"* entreat|strong=\"H6293\"* for|strong=\"H6440\"* me|strong=\"H6440\"* to|strong=\"H1696\"* Ephron|strong=\"H6085\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zohar|strong=\"H6714\"*," + }, + { + "verseNum": 9, + "text": "that|strong=\"H5414\"* he|strong=\"H5414\"* may|strong=\"H5414\"* sell|strong=\"H5414\"* me|strong=\"H5414\"* the|strong=\"H5414\"* cave|strong=\"H4631\"* of|strong=\"H4392\"* Machpelah|strong=\"H4375\"*, which|strong=\"H7704\"* he|strong=\"H5414\"* has|strong=\"H5414\"*, which|strong=\"H7704\"* is|strong=\"H3701\"* in|strong=\"H8432\"* the|strong=\"H5414\"* end|strong=\"H7097\"* of|strong=\"H4392\"* his|strong=\"H5414\"* field|strong=\"H7704\"*. For|strong=\"H3701\"* the|strong=\"H5414\"* full|strong=\"H4392\"* price|strong=\"H3701\"* let|strong=\"H5414\"* him|strong=\"H5414\"* sell|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* me|strong=\"H5414\"* among|strong=\"H8432\"* you|strong=\"H5414\"* as|strong=\"H5414\"* a|strong=\"H3068\"* possession for|strong=\"H3701\"* a|strong=\"H3068\"* burial|strong=\"H6913\"* place|strong=\"H5414\"*.”" + }, + { + "verseNum": 10, + "text": "Now Ephron|strong=\"H6085\"* was|strong=\"H5892\"* sitting|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Heth|strong=\"H2845\"*. Ephron|strong=\"H6085\"* the|strong=\"H3605\"* Hittite|strong=\"H2850\"* answered|strong=\"H6030\"* Abraham in|strong=\"H3427\"* the|strong=\"H3605\"* hearing of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Heth|strong=\"H2845\"*, even of|strong=\"H1121\"* all|strong=\"H3605\"* who|strong=\"H3605\"* went|strong=\"H5892\"* in|strong=\"H3427\"* at|strong=\"H3427\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* his|strong=\"H3605\"* city|strong=\"H5892\"*, saying," + }, + { + "verseNum": 11, + "text": "“No|strong=\"H3808\"*, my|strong=\"H8085\"* lord, hear|strong=\"H8085\"* me|strong=\"H5414\"*. I|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H8085\"* field|strong=\"H7704\"*, and|strong=\"H1121\"* I|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H8085\"* cave|strong=\"H4631\"* that|strong=\"H5971\"* is|strong=\"H1121\"* in|strong=\"H4191\"* it|strong=\"H5414\"*. In|strong=\"H4191\"* the|strong=\"H8085\"* presence|strong=\"H5869\"* of|strong=\"H1121\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* my|strong=\"H8085\"* people|strong=\"H5971\"* I|strong=\"H5414\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H4191\"* you|strong=\"H5414\"*. Bury|strong=\"H6912\"* your|strong=\"H5414\"* dead|strong=\"H4191\"*.”" + }, + { + "verseNum": 12, + "text": "Abraham bowed|strong=\"H7812\"* himself|strong=\"H7812\"* down|strong=\"H7812\"* before|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"* of|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H6440\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H8033\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Ephron|strong=\"H6085\"* in|strong=\"H4191\"* the|strong=\"H8085\"* audience of|strong=\"H7704\"* the|strong=\"H8085\"* people|strong=\"H5971\"* of|strong=\"H7704\"* the|strong=\"H8085\"* land|strong=\"H7704\"*, saying|strong=\"H1696\"*, “But|strong=\"H1696\"* if|strong=\"H3863\"* you|strong=\"H5414\"* will|strong=\"H5971\"*, please|strong=\"H8085\"* hear|strong=\"H8085\"* me|strong=\"H5414\"*. I|strong=\"H5414\"* will|strong=\"H5971\"* give|strong=\"H5414\"* the|strong=\"H8085\"* price|strong=\"H3701\"* of|strong=\"H7704\"* the|strong=\"H8085\"* field|strong=\"H7704\"*. Take|strong=\"H3947\"* it|strong=\"H5414\"* from|strong=\"H4480\"* me|strong=\"H5414\"*, and|strong=\"H3701\"* I|strong=\"H5414\"* will|strong=\"H5971\"* bury|strong=\"H6912\"* my|strong=\"H8085\"* dead|strong=\"H4191\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 14, + "text": "Ephron|strong=\"H6085\"* answered|strong=\"H6030\"* Abraham, saying to|strong=\"H6030\"* him|strong=\"H6030\"*," + }, + { + "verseNum": 15, + "text": "“My|strong=\"H8085\"* lord, listen|strong=\"H8085\"* to|strong=\"H4191\"* me|strong=\"H4191\"*. What|strong=\"H4100\"* is|strong=\"H1931\"* a|strong=\"H3068\"* piece of|strong=\"H8255\"* land worth four hundred|strong=\"H3967\"* shekels|strong=\"H8255\"* of|strong=\"H8255\"* silver|strong=\"H3701\"*+ 23:15 A shekel is about 10 grams, so 400 shekels would be about 4 kg. or 8.8 pounds.* between me|strong=\"H4191\"* and|strong=\"H3967\"* you|strong=\"H4100\"*? Therefore bury|strong=\"H6912\"* your|strong=\"H8085\"* dead|strong=\"H4191\"*.”" + }, + { + "verseNum": 16, + "text": "Abraham listened|strong=\"H8085\"* to|strong=\"H1696\"* Ephron|strong=\"H6085\"*. Abraham weighed|strong=\"H8254\"* to|strong=\"H1696\"* Ephron|strong=\"H6085\"* the|strong=\"H8085\"* silver|strong=\"H3701\"* which|strong=\"H8085\"* he|strong=\"H1696\"* had|strong=\"H1121\"* named|strong=\"H1696\"* in|strong=\"H8085\"* the|strong=\"H8085\"* hearing|strong=\"H8085\"* of|strong=\"H1121\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Heth|strong=\"H2845\"*, four hundred|strong=\"H3967\"* shekels|strong=\"H8255\"* of|strong=\"H1121\"* silver|strong=\"H3701\"*, according|strong=\"H3701\"* to|strong=\"H1696\"* the|strong=\"H8085\"* current|strong=\"H5674\"* merchants|strong=\"H5503\"*’ standard|strong=\"H5674\"*." + }, + { + "verseNum": 17, + "text": "So|strong=\"H6965\"* the|strong=\"H3605\"* field|strong=\"H7704\"* of|strong=\"H1366\"* Ephron|strong=\"H6085\"*, which|strong=\"H6086\"* was|strong=\"H1366\"* in|strong=\"H6440\"* Machpelah|strong=\"H4375\"*, which|strong=\"H6086\"* was|strong=\"H1366\"* before|strong=\"H6440\"* Mamre|strong=\"H4471\"*, the|strong=\"H3605\"* field|strong=\"H7704\"*, the|strong=\"H3605\"* cave|strong=\"H4631\"* which|strong=\"H6086\"* was|strong=\"H1366\"* in|strong=\"H6440\"* it|strong=\"H5439\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* trees|strong=\"H6086\"* that|strong=\"H3605\"* were|strong=\"H5439\"* in|strong=\"H6440\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, that|strong=\"H3605\"* were|strong=\"H5439\"* in|strong=\"H6440\"* all|strong=\"H3605\"* of|strong=\"H1366\"* its|strong=\"H3605\"* borders|strong=\"H1366\"*, were|strong=\"H5439\"* deeded|strong=\"H6965\"*" + }, + { + "verseNum": 18, + "text": "to|strong=\"H1121\"* Abraham for|strong=\"H1121\"* a|strong=\"H3068\"* possession|strong=\"H4736\"* in|strong=\"H5892\"* the|strong=\"H3605\"* presence|strong=\"H5869\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Heth|strong=\"H2845\"*, before|strong=\"H5869\"* all|strong=\"H3605\"* who|strong=\"H3605\"* went|strong=\"H5892\"* in|strong=\"H5892\"* at|strong=\"H5892\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* his|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 19, + "text": "After|strong=\"H5921\"* this|strong=\"H3651\"*, Abraham buried|strong=\"H6912\"* Sarah|strong=\"H8283\"* his|strong=\"H6440\"* wife in|strong=\"H5921\"* the|strong=\"H6440\"* cave|strong=\"H4631\"* of|strong=\"H6440\"* the|strong=\"H6440\"* field|strong=\"H7704\"* of|strong=\"H6440\"* Machpelah|strong=\"H4375\"* before|strong=\"H6440\"* Mamre|strong=\"H4471\"* (that|strong=\"H1931\"* is|strong=\"H1931\"*, Hebron|strong=\"H2275\"*), in|strong=\"H5921\"* the|strong=\"H6440\"* land|strong=\"H7704\"* of|strong=\"H6440\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H6965\"* field|strong=\"H7704\"*, and|strong=\"H1121\"* the|strong=\"H6965\"* cave|strong=\"H4631\"* that|strong=\"H1121\"* is|strong=\"H1121\"* in|strong=\"H1121\"* it|strong=\"H6965\"*, were|strong=\"H1121\"* deeded|strong=\"H6965\"* to|strong=\"H1121\"* Abraham by|strong=\"H6965\"* the|strong=\"H6965\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Heth|strong=\"H2845\"* as|strong=\"H1121\"* a|strong=\"H3068\"* possession for|strong=\"H1121\"* a|strong=\"H3068\"* burial|strong=\"H6913\"* place|strong=\"H6913\"*." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Abraham was|strong=\"H3068\"* old|strong=\"H2204\"*, and|strong=\"H3068\"* well advanced in|strong=\"H3068\"* age|strong=\"H3117\"*. Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* blessed|strong=\"H1288\"* Abraham in|strong=\"H3068\"* all|strong=\"H3605\"* things|strong=\"H3605\"*." + }, + { + "verseNum": 2, + "text": "Abraham said to|strong=\"H3027\"* his|strong=\"H3605\"* servant|strong=\"H5650\"*, the|strong=\"H3605\"* elder|strong=\"H2205\"* of|strong=\"H1004\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, who|strong=\"H3605\"* ruled|strong=\"H4910\"* over|strong=\"H3027\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3605\"* had|strong=\"H3027\"*, “Please|strong=\"H4994\"* put|strong=\"H7760\"* your|strong=\"H3605\"* hand|strong=\"H3027\"* under|strong=\"H8478\"* my|strong=\"H3605\"* thigh|strong=\"H3409\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H3808\"* will|strong=\"H3068\"* make|strong=\"H3427\"* you|strong=\"H3947\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3947\"* God|strong=\"H3068\"* of|strong=\"H1121\"* heaven|strong=\"H8064\"* and|strong=\"H1121\"* the|strong=\"H3947\"* God|strong=\"H3068\"* of|strong=\"H1121\"* the|strong=\"H3947\"* earth|strong=\"H8064\"*, that|strong=\"H3068\"* you|strong=\"H3947\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife for|strong=\"H3068\"* my|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3947\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* the|strong=\"H3947\"* Canaanites|strong=\"H3669\"*, among|strong=\"H7130\"* whom I|strong=\"H3808\"* live|strong=\"H3427\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* go|strong=\"H3212\"* to|strong=\"H3212\"* my|strong=\"H3947\"* country, and|strong=\"H1121\"* to|strong=\"H3212\"* my|strong=\"H3947\"* relatives|strong=\"H4138\"*, and|strong=\"H1121\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife for|strong=\"H3588\"* my|strong=\"H3947\"* son|strong=\"H1121\"* Isaac|strong=\"H3327\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H7725\"* servant|strong=\"H5650\"* said|strong=\"H3318\"* to|strong=\"H7725\"* him|strong=\"H7725\"*, “What|strong=\"H2063\"* if|strong=\"H1121\"* the|strong=\"H7725\"* woman isn’t willing to|strong=\"H7725\"* follow|strong=\"H3212\"* me|strong=\"H7725\"* to|strong=\"H7725\"* this|strong=\"H2063\"* land? Must|strong=\"H1121\"* I|strong=\"H5650\"* bring|strong=\"H3318\"* your|strong=\"H7725\"* son|strong=\"H1121\"* again|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H7725\"* land you|strong=\"H7725\"* came|strong=\"H3318\"* from|strong=\"H7725\"*?”" + }, + { + "verseNum": 6, + "text": "Abraham said to|strong=\"H7725\"* him|strong=\"H7725\"*, “Beware|strong=\"H8104\"* that|strong=\"H1121\"* you|strong=\"H7725\"* don’t bring|strong=\"H7725\"* my|strong=\"H8104\"* son|strong=\"H1121\"* there|strong=\"H8033\"* again|strong=\"H7725\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H1121\"* heaven|strong=\"H8064\"*—who|strong=\"H1931\"* took|strong=\"H3947\"* me|strong=\"H5414\"* from|strong=\"H6440\"* my|strong=\"H5414\"* father|strong=\"H1121\"*’s house|strong=\"H1004\"*, and|strong=\"H1121\"* from|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H1121\"* my|strong=\"H5414\"* birth|strong=\"H4138\"*, who|strong=\"H1931\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5414\"*, and|strong=\"H1121\"* who|strong=\"H1931\"* swore|strong=\"H7650\"* to|strong=\"H1696\"* me|strong=\"H5414\"*, saying|strong=\"H1696\"*, ‘I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* this|strong=\"H2063\"* land|strong=\"H6440\"* to|strong=\"H1696\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*—he|strong=\"H1931\"* will|strong=\"H3068\"* send|strong=\"H7971\"* his|strong=\"H5414\"* angel|strong=\"H4397\"* before|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H1121\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife|strong=\"H1696\"* for|strong=\"H6440\"* my|strong=\"H5414\"* son|strong=\"H1121\"* from|strong=\"H6440\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 8, + "text": "If|strong=\"H1121\"* the|strong=\"H7725\"* woman isn’t willing to|strong=\"H7725\"* follow|strong=\"H3212\"* you|strong=\"H7725\"*, then|strong=\"H7725\"* you|strong=\"H7725\"* shall|strong=\"H1121\"* be|strong=\"H3808\"* clear|strong=\"H5352\"* from|strong=\"H7725\"* this|strong=\"H2063\"* oath|strong=\"H7621\"* to|strong=\"H7725\"* me|strong=\"H7725\"*. Only|strong=\"H7535\"* you|strong=\"H7725\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* bring|strong=\"H7725\"* my|strong=\"H7725\"* son|strong=\"H1121\"* there|strong=\"H8033\"* again|strong=\"H7725\"*.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H5921\"* servant|strong=\"H5650\"* put|strong=\"H7760\"* his|strong=\"H7760\"* hand|strong=\"H3027\"* under|strong=\"H8478\"* the|strong=\"H5921\"* thigh|strong=\"H3409\"* of|strong=\"H3027\"* Abraham his|strong=\"H7760\"* master, and|strong=\"H3027\"* swore|strong=\"H7650\"* to|strong=\"H5921\"* him|strong=\"H5921\"* concerning|strong=\"H5921\"* this|strong=\"H2088\"* matter|strong=\"H1697\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3605\"* servant|strong=\"H5650\"* took|strong=\"H3947\"* ten|strong=\"H6235\"* of|strong=\"H3027\"* his|strong=\"H3605\"* master’s camels|strong=\"H1581\"*, and|strong=\"H6965\"* departed|strong=\"H3212\"*, having a|strong=\"H3068\"* variety|strong=\"H3605\"* of|strong=\"H3027\"* good|strong=\"H2898\"* things|strong=\"H3605\"* of|strong=\"H3027\"* his|strong=\"H3605\"* master’s with|strong=\"H3212\"* him|strong=\"H3027\"*. He|strong=\"H3605\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Mesopotamia, to|strong=\"H3212\"* the|strong=\"H3605\"* city|strong=\"H5892\"* of|strong=\"H3027\"* Nahor|strong=\"H5152\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H6256\"* made|strong=\"H1288\"* the|strong=\"H1288\"* camels|strong=\"H1581\"* kneel|strong=\"H1288\"* down|strong=\"H1288\"* outside|strong=\"H2351\"* the|strong=\"H1288\"* city|strong=\"H5892\"* by|strong=\"H3318\"* the|strong=\"H1288\"* well of|strong=\"H5892\"* water|strong=\"H4325\"* at|strong=\"H3318\"* the|strong=\"H1288\"* time|strong=\"H6256\"* of|strong=\"H5892\"* evening|strong=\"H6153\"*, the|strong=\"H1288\"* time|strong=\"H6256\"* that|strong=\"H5892\"* women go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* draw|strong=\"H7579\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H3117\"* said, “Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* my|strong=\"H3068\"* master Abraham, please|strong=\"H4994\"* give|strong=\"H4994\"* me|strong=\"H6440\"* success|strong=\"H7136\"* today|strong=\"H3117\"*, and|strong=\"H3068\"* show|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H3068\"* my|strong=\"H3068\"* master Abraham." + }, + { + "verseNum": 13, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H2009\"* am standing|strong=\"H5324\"* by|strong=\"H5921\"* the|strong=\"H5921\"* spring|strong=\"H3318\"* of|strong=\"H1323\"* water|strong=\"H4325\"*. The|strong=\"H5921\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* the|strong=\"H5921\"* men of|strong=\"H1323\"* the|strong=\"H5921\"* city|strong=\"H5892\"* are|strong=\"H5869\"* coming|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* draw|strong=\"H7579\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 14, + "text": "Let|strong=\"H4994\"* it|strong=\"H3588\"* happen|strong=\"H1961\"*, that|strong=\"H3588\"* the|strong=\"H3588\"* young|strong=\"H5291\"* lady|strong=\"H5291\"* to|strong=\"H1961\"* whom|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1961\"* say, ‘Please|strong=\"H4994\"* let|strong=\"H4994\"* down|strong=\"H5186\"* your|strong=\"H5186\"* pitcher|strong=\"H3537\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H1961\"* drink|strong=\"H8354\"*,’ then|strong=\"H1961\"* she|strong=\"H3588\"* says|strong=\"H8354\"*, ‘Drink|strong=\"H8354\"*, and|strong=\"H5650\"* I|strong=\"H3588\"* will|strong=\"H1961\"* also|strong=\"H1571\"* give|strong=\"H8248\"* your|strong=\"H5186\"* camels|strong=\"H1581\"* a|strong=\"H3068\"* drink|strong=\"H8354\"*,’—let|strong=\"H4994\"* her|strong=\"H3045\"* be|strong=\"H1961\"* the|strong=\"H3588\"* one|strong=\"H1961\"* you|strong=\"H3588\"* have|strong=\"H1961\"* appointed|strong=\"H3198\"* for|strong=\"H3588\"* your|strong=\"H5186\"* servant|strong=\"H5650\"* Isaac|strong=\"H3327\"*. By|strong=\"H1571\"* this|strong=\"H6213\"* I|strong=\"H3588\"* will|strong=\"H1961\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* shown|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H1961\"* my|strong=\"H3045\"* master.”" + }, + { + "verseNum": 15, + "text": "Before|strong=\"H2962\"* he|strong=\"H1931\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* speaking|strong=\"H1696\"*, behold|strong=\"H2009\"*, Rebekah|strong=\"H7259\"* came|strong=\"H1961\"* out|strong=\"H3318\"*, who|strong=\"H1931\"* was|strong=\"H1961\"* born|strong=\"H3205\"* to|strong=\"H1696\"* Bethuel|strong=\"H1328\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Milcah|strong=\"H4435\"*, the|strong=\"H5921\"* wife|strong=\"H1696\"* of|strong=\"H1121\"* Nahor|strong=\"H5152\"*, Abraham’s brother, with|strong=\"H1696\"* her|strong=\"H5921\"* pitcher|strong=\"H3537\"* on|strong=\"H5921\"* her|strong=\"H5921\"* shoulder|strong=\"H7926\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3045\"* young|strong=\"H5291\"* lady|strong=\"H5291\"* was|strong=\"H3966\"* very|strong=\"H3966\"* beautiful|strong=\"H2896\"* to|strong=\"H3381\"* look|strong=\"H5869\"* at|strong=\"H3808\"*, a|strong=\"H3068\"* virgin|strong=\"H1330\"*. No|strong=\"H3808\"* man|strong=\"H2896\"* had|strong=\"H3045\"* known|strong=\"H3045\"* her|strong=\"H4390\"*. She|strong=\"H3808\"* went|strong=\"H5927\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3045\"* spring|strong=\"H5927\"*, filled|strong=\"H4390\"* her|strong=\"H4390\"* pitcher|strong=\"H3537\"*, and|strong=\"H5869\"* came|strong=\"H5927\"* up|strong=\"H5927\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H5650\"* servant|strong=\"H5650\"* ran|strong=\"H7323\"* to|strong=\"H4325\"* meet|strong=\"H7125\"* her|strong=\"H7125\"*, and|strong=\"H5650\"* said, “Please|strong=\"H4994\"* give|strong=\"H4994\"* me|strong=\"H4994\"* a|strong=\"H3068\"* drink|strong=\"H1572\"*, a|strong=\"H3068\"* little|strong=\"H4592\"* water|strong=\"H4325\"* from|strong=\"H5650\"* your|strong=\"H4994\"* pitcher|strong=\"H3537\"*.”" + }, + { + "verseNum": 18, + "text": "She|strong=\"H8248\"* said, “Drink|strong=\"H8354\"*, my|strong=\"H5921\"* lord.” She|strong=\"H8248\"* hurried|strong=\"H4116\"*, and|strong=\"H3027\"* let|strong=\"H3381\"* down|strong=\"H3381\"* her|strong=\"H5921\"* pitcher|strong=\"H3537\"* on|strong=\"H5921\"* her|strong=\"H5921\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* gave|strong=\"H8248\"* him|strong=\"H5921\"* a|strong=\"H3068\"* drink|strong=\"H8354\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3615\"* she|strong=\"H8248\"* had|strong=\"H1581\"* finished|strong=\"H3615\"* giving|strong=\"H8248\"* him|strong=\"H8248\"* a|strong=\"H3068\"* drink|strong=\"H8354\"*, she|strong=\"H8248\"* said, “I|strong=\"H5704\"* will|strong=\"H1571\"* also|strong=\"H1571\"* draw|strong=\"H7579\"* for|strong=\"H5704\"* your|strong=\"H5704\"* camels|strong=\"H1581\"*, until|strong=\"H5704\"* they|strong=\"H5704\"* have|strong=\"H1571\"* finished|strong=\"H3615\"* drinking|strong=\"H8354\"*.”" + }, + { + "verseNum": 20, + "text": "She hurried|strong=\"H4116\"*, and|strong=\"H4116\"* emptied|strong=\"H6168\"* her|strong=\"H3605\"* pitcher|strong=\"H3537\"* into the|strong=\"H3605\"* trough|strong=\"H8268\"*, and|strong=\"H4116\"* ran|strong=\"H7323\"* again|strong=\"H5750\"* to|strong=\"H7323\"* the|strong=\"H3605\"* well to|strong=\"H7323\"* draw|strong=\"H7579\"*, and|strong=\"H4116\"* drew|strong=\"H7579\"* for|strong=\"H3605\"* all|strong=\"H3605\"* his|strong=\"H3605\"* camels|strong=\"H1581\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H3068\"* man|strong=\"H3045\"* looked|strong=\"H3068\"* steadfastly at|strong=\"H3068\"* her|strong=\"H3045\"*, remaining silent|strong=\"H2790\"*, to|strong=\"H3068\"* know|strong=\"H3045\"* whether|strong=\"H3045\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* made|strong=\"H3045\"* his|strong=\"H3068\"* journey|strong=\"H1870\"* prosperous|strong=\"H6743\"* or|strong=\"H3808\"* not|strong=\"H3808\"*." + }, + { + "verseNum": 22, + "text": "As|strong=\"H1961\"* the|strong=\"H5921\"* camels|strong=\"H1581\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* drinking|strong=\"H8354\"*, the|strong=\"H5921\"* man took|strong=\"H3947\"* a|strong=\"H3068\"* golden|strong=\"H2091\"* ring|strong=\"H5141\"* of|strong=\"H3027\"* half a|strong=\"H3068\"* shekel|strong=\"H1235\"*+ 24:22 A shekel is about 10 grams or about 0.35 ounces.* weight|strong=\"H4948\"*, and|strong=\"H3027\"* two|strong=\"H8147\"* bracelets|strong=\"H6781\"* for|strong=\"H5921\"* her|strong=\"H3947\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* ten|strong=\"H6235\"* shekels|strong=\"H4948\"* weight|strong=\"H4948\"* of|strong=\"H3027\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 23, + "text": "and|strong=\"H1004\"* said, “Whose|strong=\"H4310\"* daughter|strong=\"H1323\"* are|strong=\"H3426\"* you|strong=\"H5046\"*? Please|strong=\"H4994\"* tell|strong=\"H5046\"* me|strong=\"H4994\"*. Is|strong=\"H3426\"* there|strong=\"H3426\"* room|strong=\"H1004\"* in|strong=\"H1004\"* your|strong=\"H4994\"* father’s house|strong=\"H1004\"* for|strong=\"H1004\"* us|strong=\"H4994\"* to|strong=\"H1004\"* stay|strong=\"H3885\"*?”" + }, + { + "verseNum": 24, + "text": "She said to|strong=\"H3205\"* him|strong=\"H3205\"*, “I|strong=\"H1121\"* am the|strong=\"H3205\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Bethuel|strong=\"H1328\"* the|strong=\"H3205\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Milcah|strong=\"H4435\"*, whom she bore|strong=\"H3205\"* to|strong=\"H3205\"* Nahor|strong=\"H5152\"*.”" + }, + { + "verseNum": 25, + "text": "She|strong=\"H5973\"* said moreover|strong=\"H1571\"* to|strong=\"H5973\"* him|strong=\"H5973\"*, “We have|strong=\"H1571\"* both|strong=\"H1571\"* straw|strong=\"H8401\"* and|strong=\"H4725\"* feed|strong=\"H4554\"* enough|strong=\"H7227\"*, and|strong=\"H4725\"* room|strong=\"H4725\"* to|strong=\"H5973\"* lodge|strong=\"H3885\"* in|strong=\"H7227\"*.”" + }, + { + "verseNum": 26, + "text": "The|strong=\"H3068\"* man bowed|strong=\"H7812\"* his|strong=\"H3068\"* head|strong=\"H6915\"*, and|strong=\"H3068\"* worshiped|strong=\"H7812\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 27, + "text": "He|strong=\"H3068\"* said, “Blessed|strong=\"H1288\"* be|strong=\"H3808\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H1004\"* my|strong=\"H3068\"* master Abraham, who|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* forsaken|strong=\"H5800\"* his|strong=\"H3068\"* loving kindness|strong=\"H2617\"* and|strong=\"H3068\"* his|strong=\"H3068\"* truth|strong=\"H3808\"* toward|strong=\"H1870\"* my|strong=\"H3068\"* master. As|strong=\"H3068\"* for|strong=\"H3068\"* me|strong=\"H1288\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* led|strong=\"H5148\"* me|strong=\"H1288\"* on|strong=\"H1870\"* the|strong=\"H3068\"* way|strong=\"H1870\"* to|strong=\"H3068\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* my|strong=\"H3068\"* master’s relatives.”" + }, + { + "verseNum": 28, + "text": "The|strong=\"H1697\"* young|strong=\"H5291\"* lady|strong=\"H5291\"* ran|strong=\"H7323\"*, and|strong=\"H1004\"* told|strong=\"H5046\"* her|strong=\"H5046\"* mother’s house|strong=\"H1004\"* about|strong=\"H1697\"* these|strong=\"H1004\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 29, + "text": "Rebekah|strong=\"H7259\"* had|strong=\"H5869\"* a|strong=\"H3068\"* brother, and|strong=\"H5869\"* his|strong=\"H7259\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Laban|strong=\"H3837\"*. Laban|strong=\"H3837\"* ran|strong=\"H7323\"* out|strong=\"H2351\"* to|strong=\"H5869\"* the|strong=\"H2351\"* man, to|strong=\"H5869\"* the|strong=\"H2351\"* spring|strong=\"H5869\"*." + }, + { + "verseNum": 30, + "text": "When|strong=\"H1961\"* he|strong=\"H3027\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* ring|strong=\"H5141\"*, and|strong=\"H3027\"* the|strong=\"H5921\"* bracelets|strong=\"H6781\"* on|strong=\"H5921\"* his|strong=\"H8085\"* sister’s hands|strong=\"H3027\"*, and|strong=\"H3027\"* when|strong=\"H1961\"* he|strong=\"H3027\"* heard|strong=\"H8085\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H3027\"* Rebekah|strong=\"H7259\"* his|strong=\"H8085\"* sister, saying|strong=\"H1697\"*, “This|strong=\"H3541\"* is|strong=\"H3027\"* what|strong=\"H1697\"* the|strong=\"H5921\"* man|strong=\"H7200\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7200\"*,” he|strong=\"H3027\"* came|strong=\"H1961\"* to|strong=\"H1696\"* the|strong=\"H5921\"* man|strong=\"H7200\"*. Behold|strong=\"H2009\"*, he|strong=\"H3027\"* was|strong=\"H1961\"* standing|strong=\"H5975\"* by|strong=\"H3027\"* the|strong=\"H5921\"* camels|strong=\"H1581\"* at|strong=\"H5921\"* the|strong=\"H5921\"* spring|strong=\"H5869\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"H3068\"* said, “Come in|strong=\"H3068\"*, you|strong=\"H1288\"* blessed|strong=\"H1288\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*. Why|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H1288\"* stand|strong=\"H5975\"* outside|strong=\"H2351\"*? For|strong=\"H3068\"* I|strong=\"H4100\"* have|strong=\"H3068\"* prepared|strong=\"H6437\"* the|strong=\"H3068\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* room|strong=\"H1004\"* for|strong=\"H3068\"* the|strong=\"H3068\"* camels|strong=\"H1581\"*.”" + }, + { + "verseNum": 32, + "text": "The|strong=\"H5414\"* man came|strong=\"H4325\"* into|strong=\"H4325\"* the|strong=\"H5414\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* he|strong=\"H1004\"* unloaded|strong=\"H6605\"* the|strong=\"H5414\"* camels|strong=\"H1581\"*. He|strong=\"H1004\"* gave|strong=\"H5414\"* straw|strong=\"H8401\"* and|strong=\"H1004\"* feed|strong=\"H4554\"* for|strong=\"H1004\"* the|strong=\"H5414\"* camels|strong=\"H1581\"*, and|strong=\"H1004\"* water|strong=\"H4325\"* to|strong=\"H5414\"* wash|strong=\"H7364\"* his|strong=\"H5414\"* feet|strong=\"H7272\"* and|strong=\"H1004\"* the|strong=\"H5414\"* feet|strong=\"H7272\"* of|strong=\"H1004\"* the|strong=\"H5414\"* men who were|strong=\"H4325\"* with|strong=\"H1004\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 33, + "text": "Food was|strong=\"H1697\"* set before|strong=\"H6440\"* him|strong=\"H6440\"* to|strong=\"H1696\"* eat, but|strong=\"H3808\"* he|strong=\"H5704\"* said|strong=\"H1696\"*, “I|strong=\"H5704\"* will|strong=\"H1697\"* not|strong=\"H3808\"* eat until|strong=\"H5704\"* I|strong=\"H5704\"* have|strong=\"H1697\"* told|strong=\"H1696\"* my|strong=\"H1696\"* message|strong=\"H1697\"*.”" + }, + { + "verseNum": 34, + "text": "He said, “I|strong=\"H5650\"* am Abraham’s servant|strong=\"H5650\"*." + }, + { + "verseNum": 35, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* blessed|strong=\"H1288\"* my|strong=\"H5414\"* master|strong=\"H5414\"* greatly|strong=\"H3966\"*. He|strong=\"H3068\"* has|strong=\"H3068\"* become|strong=\"H1431\"* great|strong=\"H1431\"*. Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* him|strong=\"H5414\"* flocks|strong=\"H6629\"* and|strong=\"H3068\"* herds|strong=\"H1241\"*, silver|strong=\"H3701\"* and|strong=\"H3068\"* gold|strong=\"H2091\"*, male|strong=\"H5650\"* servants|strong=\"H5650\"* and|strong=\"H3068\"* female|strong=\"H8198\"* servants|strong=\"H5650\"*, and|strong=\"H3068\"* camels|strong=\"H1581\"* and|strong=\"H3068\"* donkeys|strong=\"H2543\"*." + }, + { + "verseNum": 36, + "text": "Sarah|strong=\"H8283\"*, my|strong=\"H5414\"* master|strong=\"H5414\"*’s wife, bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"* to|strong=\"H5414\"* my|strong=\"H5414\"* master|strong=\"H5414\"* when|strong=\"H1121\"* she was|strong=\"H1121\"* old|strong=\"H1121\"*. He|strong=\"H3605\"* has|strong=\"H3605\"* given|strong=\"H5414\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3605\"* has|strong=\"H3605\"* to|strong=\"H5414\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 37, + "text": "My|strong=\"H3947\"* master|strong=\"H3427\"* made|strong=\"H7650\"* me|strong=\"H3947\"* swear|strong=\"H7650\"*, saying, ‘You|strong=\"H3947\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife for|strong=\"H3427\"* my|strong=\"H3947\"* son|strong=\"H1121\"* from|strong=\"H1121\"* the|strong=\"H3947\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* the|strong=\"H3947\"* Canaanites|strong=\"H3669\"*, in|strong=\"H3427\"* whose|strong=\"H1121\"* land I|strong=\"H3808\"* live|strong=\"H3427\"*," + }, + { + "verseNum": 38, + "text": "but|strong=\"H3808\"* you|strong=\"H3947\"* shall|strong=\"H1121\"* go|strong=\"H3212\"* to|strong=\"H3212\"* my|strong=\"H3947\"* father|strong=\"H1121\"*’s house|strong=\"H1004\"*, and|strong=\"H1121\"* to|strong=\"H3212\"* my|strong=\"H3947\"* relatives|strong=\"H4940\"*, and|strong=\"H1121\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife for|strong=\"H1004\"* my|strong=\"H3947\"* son|strong=\"H1121\"*.’" + }, + { + "verseNum": 39, + "text": "I|strong=\"H3808\"* asked my|strong=\"H3808\"* master, ‘What if the|strong=\"H3808\"* woman will|strong=\"H3808\"* not|strong=\"H3808\"* follow|strong=\"H3212\"* me|strong=\"H3808\"*?’" + }, + { + "verseNum": 40, + "text": "He|strong=\"H3068\"* said to|strong=\"H1980\"* me|strong=\"H6440\"*, ‘Yahweh|strong=\"H3068\"*, before|strong=\"H6440\"* whom|strong=\"H6440\"* I|strong=\"H1980\"* walk|strong=\"H1980\"*, will|strong=\"H3068\"* send|strong=\"H7971\"* his|strong=\"H3068\"* angel|strong=\"H4397\"* with|strong=\"H1980\"* you|strong=\"H6440\"*, and|strong=\"H1121\"* prosper|strong=\"H6743\"* your|strong=\"H3068\"* way|strong=\"H1870\"*. You|strong=\"H6440\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife for|strong=\"H6440\"* my|strong=\"H3068\"* son|strong=\"H1121\"* from|strong=\"H6440\"* my|strong=\"H3068\"* relatives|strong=\"H4940\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* my|strong=\"H3068\"* father|strong=\"H1121\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 41, + "text": "Then|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* clear|strong=\"H5352\"* from|strong=\"H1961\"* my|strong=\"H5414\"* oath, when|strong=\"H3588\"* you|strong=\"H3588\"* come|strong=\"H1961\"* to|strong=\"H1961\"* my|strong=\"H5414\"* relatives|strong=\"H4940\"*. If|strong=\"H3588\"* they|strong=\"H3588\"* don’t give|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H1961\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* clear|strong=\"H5352\"* from|strong=\"H1961\"* my|strong=\"H5414\"* oath.’" + }, + { + "verseNum": 42, + "text": "I|strong=\"H3117\"* came|strong=\"H1980\"* today|strong=\"H3117\"* to|strong=\"H1980\"* the|strong=\"H5921\"* spring|strong=\"H5869\"*, and|strong=\"H1980\"* said, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* my|strong=\"H3068\"* master Abraham, if|strong=\"H3426\"* now|strong=\"H4994\"* you|strong=\"H5921\"* do|strong=\"H3068\"* prosper|strong=\"H6743\"* my|strong=\"H3068\"* way|strong=\"H1870\"* which|strong=\"H3068\"* I|strong=\"H3117\"* go|strong=\"H1980\"*—" + }, + { + "verseNum": 43, + "text": "behold|strong=\"H2009\"*, I|strong=\"H2009\"* am|strong=\"H1961\"* standing|strong=\"H5324\"* by|strong=\"H5921\"* this|strong=\"H4994\"* spring|strong=\"H3318\"* of|strong=\"H5869\"* water|strong=\"H4325\"*. Let|strong=\"H4994\"* it|strong=\"H5921\"* happen|strong=\"H1961\"*, that|strong=\"H4325\"* the|strong=\"H5921\"* maiden|strong=\"H5959\"* who|strong=\"H5959\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* draw|strong=\"H7579\"*, to|strong=\"H3318\"* whom|strong=\"H5869\"* I|strong=\"H2009\"* will|strong=\"H1961\"* say, “Please|strong=\"H4994\"* give|strong=\"H8248\"* me|strong=\"H4994\"* a|strong=\"H3068\"* little|strong=\"H4592\"* water|strong=\"H4325\"* from|strong=\"H3318\"* your|strong=\"H5921\"* pitcher|strong=\"H3537\"* to|strong=\"H3318\"* drink|strong=\"H8248\"*,”" + }, + { + "verseNum": 44, + "text": "then|strong=\"H1571\"* she|strong=\"H1931\"* tells me|strong=\"H1571\"*, “Drink|strong=\"H8354\"*, and|strong=\"H1121\"* I|strong=\"H1571\"* will|strong=\"H3068\"* also|strong=\"H1571\"* draw|strong=\"H7579\"* for|strong=\"H3068\"* your|strong=\"H3068\"* camels|strong=\"H1581\"*,”—let her|strong=\"H1571\"* be|strong=\"H3068\"* the|strong=\"H3068\"* woman whom Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* appointed|strong=\"H1121\"* for|strong=\"H3068\"* my|strong=\"H3068\"* master’s son|strong=\"H1121\"*.’" + }, + { + "verseNum": 45, + "text": "Before|strong=\"H2962\"* I|strong=\"H2009\"* had|strong=\"H5869\"* finished|strong=\"H3615\"* speaking|strong=\"H1696\"* in|strong=\"H5921\"* my|strong=\"H5921\"* heart|strong=\"H3820\"*, behold|strong=\"H2009\"*, Rebekah|strong=\"H7259\"* came|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H1696\"* her|strong=\"H5921\"* pitcher|strong=\"H3537\"* on|strong=\"H5921\"* her|strong=\"H5921\"* shoulder|strong=\"H7926\"*. She|strong=\"H8248\"* went|strong=\"H3318\"* down|strong=\"H3381\"* to|strong=\"H1696\"* the|strong=\"H5921\"* spring|strong=\"H3318\"*, and|strong=\"H5869\"* drew|strong=\"H7579\"*. I|strong=\"H2009\"* said|strong=\"H1696\"* to|strong=\"H1696\"* her|strong=\"H5921\"*, ‘Please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* drink|strong=\"H8248\"*.’" + }, + { + "verseNum": 46, + "text": "She|strong=\"H8248\"* hurried|strong=\"H4116\"* and|strong=\"H3381\"* let|strong=\"H3381\"* down|strong=\"H3381\"* her|strong=\"H5921\"* pitcher|strong=\"H3537\"* from|strong=\"H3381\"* her|strong=\"H5921\"* shoulder, and|strong=\"H3381\"* said, ‘Drink|strong=\"H8354\"*, and|strong=\"H3381\"* I|strong=\"H5921\"* will|strong=\"H1571\"* also|strong=\"H1571\"* give|strong=\"H8248\"* your|strong=\"H5921\"* camels|strong=\"H1581\"* a|strong=\"H3068\"* drink|strong=\"H8354\"*.’ So|strong=\"H1571\"* I|strong=\"H5921\"* drank|strong=\"H8354\"*, and|strong=\"H3381\"* she|strong=\"H8248\"* also|strong=\"H1571\"* gave|strong=\"H8248\"* the|strong=\"H5921\"* camels|strong=\"H1581\"* a|strong=\"H3068\"* drink|strong=\"H8354\"*." + }, + { + "verseNum": 47, + "text": "I|strong=\"H5921\"* asked|strong=\"H7592\"* her|strong=\"H5921\"*, and|strong=\"H1121\"* said, ‘Whose|strong=\"H4310\"* daughter|strong=\"H1323\"* are|strong=\"H1121\"* you|strong=\"H5921\"*?’ She|strong=\"H5921\"* said, ‘The|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Bethuel|strong=\"H1328\"*, Nahor|strong=\"H5152\"*’s son|strong=\"H1121\"*, whom|strong=\"H4310\"* Milcah|strong=\"H4435\"* bore|strong=\"H3205\"* to|strong=\"H5921\"* him|strong=\"H3205\"*.’ I|strong=\"H5921\"* put|strong=\"H7760\"* the|strong=\"H5921\"* ring|strong=\"H5141\"* on|strong=\"H5921\"* her|strong=\"H5921\"* nose, and|strong=\"H1121\"* the|strong=\"H5921\"* bracelets|strong=\"H6781\"* on|strong=\"H5921\"* her|strong=\"H5921\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 48, + "text": "I|strong=\"H1121\"* bowed|strong=\"H7812\"* my|strong=\"H3068\"* head|strong=\"H6915\"*, and|strong=\"H1121\"* worshiped|strong=\"H7812\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* blessed|strong=\"H1288\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3947\"* God|strong=\"H3068\"* of|strong=\"H1121\"* my|strong=\"H3068\"* master Abraham|strong=\"H3947\"*, who|strong=\"H3068\"* had|strong=\"H3068\"* led|strong=\"H5148\"* me|strong=\"H3947\"* in|strong=\"H3068\"* the|strong=\"H3947\"* right|strong=\"H3068\"* way|strong=\"H1870\"* to|strong=\"H3068\"* take|strong=\"H3947\"* my|strong=\"H3068\"* master’s brother’s daughter|strong=\"H1323\"* for|strong=\"H3068\"* his|strong=\"H3068\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 49, + "text": "Now|strong=\"H6258\"* if|strong=\"H3426\"* you|strong=\"H5921\"* will|strong=\"H3808\"* deal|strong=\"H6213\"* kindly|strong=\"H2617\"* and|strong=\"H6437\"* truly|strong=\"H6213\"* with|strong=\"H6213\"* my|strong=\"H5921\"* master, tell|strong=\"H5046\"* me|strong=\"H5046\"*. If|strong=\"H3426\"* not|strong=\"H3808\"*, tell|strong=\"H5046\"* me|strong=\"H5046\"*, that|strong=\"H6213\"* I|strong=\"H5921\"* may|strong=\"H6213\"* turn|strong=\"H6437\"* to|strong=\"H5921\"* the|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*, or|strong=\"H3808\"* to|strong=\"H5921\"* the|strong=\"H5921\"* left|strong=\"H8040\"*.”" + }, + { + "verseNum": 50, + "text": "Then|strong=\"H6030\"* Laban|strong=\"H3837\"* and|strong=\"H3068\"* Bethuel|strong=\"H1328\"* answered|strong=\"H6030\"*, “The|strong=\"H3068\"* thing|strong=\"H1697\"* proceeds|strong=\"H3318\"* from|strong=\"H3318\"* Yahweh|strong=\"H3068\"*. We|strong=\"H1697\"* can|strong=\"H3201\"*’t speak|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3808\"* bad|strong=\"H7451\"* or|strong=\"H3808\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 51, + "text": "Behold|strong=\"H2009\"*, Rebekah|strong=\"H7259\"* is|strong=\"H3068\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. Take|strong=\"H3947\"* her|strong=\"H3947\"*, and|strong=\"H1121\"* go|strong=\"H3212\"*, and|strong=\"H1121\"* let|strong=\"H3212\"* her|strong=\"H3947\"* be|strong=\"H1961\"* your|strong=\"H3068\"* master’s son|strong=\"H1121\"*’s wife|strong=\"H1696\"*, as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*.”" + }, + { + "verseNum": 52, + "text": "When|strong=\"H1961\"* Abraham’s servant|strong=\"H5650\"* heard|strong=\"H8085\"* their|strong=\"H3068\"* words|strong=\"H1697\"*, he|strong=\"H3068\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H3068\"* the|strong=\"H8085\"* earth to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 53, + "text": "The|strong=\"H5414\"* servant|strong=\"H5650\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* jewels|strong=\"H3627\"* of|strong=\"H3627\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* jewels|strong=\"H3627\"* of|strong=\"H3627\"* gold|strong=\"H2091\"*, and|strong=\"H3701\"* clothing|strong=\"H3627\"*, and|strong=\"H3701\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3318\"* Rebekah|strong=\"H7259\"*. He|strong=\"H5414\"* also|strong=\"H3318\"* gave|strong=\"H5414\"* precious|strong=\"H4030\"* things|strong=\"H4030\"* to|strong=\"H3318\"* her|strong=\"H5414\"* brother and|strong=\"H3701\"* her|strong=\"H5414\"* mother." + }, + { + "verseNum": 54, + "text": "They|strong=\"H1931\"* ate and|strong=\"H6965\"* drank|strong=\"H8354\"*, he|strong=\"H1931\"* and|strong=\"H6965\"* the|strong=\"H7971\"* men who|strong=\"H1931\"* were with|strong=\"H5973\"* him|strong=\"H7971\"*, and|strong=\"H6965\"* stayed|strong=\"H3885\"* all|strong=\"H3885\"* night|strong=\"H3885\"*. They|strong=\"H1931\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H3885\"* the|strong=\"H7971\"* morning|strong=\"H1242\"*, and|strong=\"H6965\"* he|strong=\"H1931\"* said, “Send|strong=\"H7971\"* me|strong=\"H7971\"* away|strong=\"H7971\"* to|strong=\"H7971\"* my|strong=\"H7971\"* master.”" + }, + { + "verseNum": 55, + "text": "Her|strong=\"H3212\"* brother and|strong=\"H3117\"* her|strong=\"H3212\"* mother said, “Let|strong=\"H3212\"* the|strong=\"H3117\"* young|strong=\"H5291\"* lady|strong=\"H5291\"* stay|strong=\"H3427\"* with|strong=\"H3427\"* us|strong=\"H3117\"* a|strong=\"H3068\"* few days|strong=\"H3117\"*, at|strong=\"H3427\"* least ten|strong=\"H6218\"*. After|strong=\"H3117\"* that|strong=\"H3117\"* she will|strong=\"H3117\"* go|strong=\"H3212\"*.”" + }, + { + "verseNum": 56, + "text": "He|strong=\"H3068\"* said to|strong=\"H3068\"* them|strong=\"H7971\"*, “Don’t hinder me|strong=\"H7971\"*, since Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* prospered|strong=\"H6743\"* my|strong=\"H3068\"* way|strong=\"H1870\"*. Send|strong=\"H7971\"* me|strong=\"H7971\"* away|strong=\"H7971\"* that|strong=\"H3068\"* I|strong=\"H3068\"* may|strong=\"H3068\"* go|strong=\"H3212\"* to|strong=\"H3068\"* my|strong=\"H3068\"* master.”" + }, + { + "verseNum": 57, + "text": "They|strong=\"H6310\"* said|strong=\"H7121\"*, “We will|strong=\"H6310\"* call|strong=\"H7121\"* the|strong=\"H7121\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*, and|strong=\"H6310\"* ask|strong=\"H7592\"* her|strong=\"H7121\"*.”" + }, + { + "verseNum": 58, + "text": "They|strong=\"H7121\"* called|strong=\"H7121\"* Rebekah|strong=\"H7259\"*, and|strong=\"H3212\"* said|strong=\"H7121\"* to|strong=\"H3212\"* her|strong=\"H7121\"*, “Will|strong=\"H2088\"* you|strong=\"H5973\"* go|strong=\"H3212\"* with|strong=\"H5973\"* this|strong=\"H2088\"* man|strong=\"H2088\"*?”" + }, + { + "verseNum": 59, + "text": "They sent|strong=\"H7971\"* away|strong=\"H7971\"* Rebekah|strong=\"H7259\"*, their|strong=\"H7971\"* sister, with|strong=\"H7971\"* her|strong=\"H7971\"* nurse|strong=\"H3243\"*, Abraham’s servant|strong=\"H5650\"*, and|strong=\"H7971\"* his|strong=\"H7971\"* men|strong=\"H5650\"*." + }, + { + "verseNum": 60, + "text": "They|strong=\"H8179\"* blessed|strong=\"H1288\"* Rebekah|strong=\"H7259\"*, and|strong=\"H8179\"* said to|strong=\"H1961\"* her|strong=\"H8130\"*, “Our|strong=\"H1288\"* sister, may|strong=\"H1961\"* you|strong=\"H1288\"* be|strong=\"H1961\"* the|strong=\"H1288\"* mother of|strong=\"H8179\"* thousands|strong=\"H7233\"* of|strong=\"H8179\"* ten|strong=\"H7233\"* thousands|strong=\"H7233\"*, and|strong=\"H8179\"* let|strong=\"H1961\"* your|strong=\"H1961\"* offspring|strong=\"H2233\"* possess|strong=\"H3423\"* the|strong=\"H1288\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* those|strong=\"H1961\"* who|strong=\"H8130\"* hate|strong=\"H8130\"* them|strong=\"H3423\"*.”" + }, + { + "verseNum": 61, + "text": "Rebekah|strong=\"H7259\"* arose|strong=\"H6965\"* with|strong=\"H5921\"* her|strong=\"H3947\"* ladies|strong=\"H5291\"*. They|strong=\"H5921\"* rode|strong=\"H7392\"* on|strong=\"H5921\"* the|strong=\"H5921\"* camels|strong=\"H1581\"*, and|strong=\"H6965\"* followed|strong=\"H3212\"* the|strong=\"H5921\"* man. The|strong=\"H5921\"* servant|strong=\"H5650\"* took|strong=\"H3947\"* Rebekah|strong=\"H7259\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* his|strong=\"H3947\"* way|strong=\"H3212\"*." + }, + { + "verseNum": 62, + "text": "Isaac|strong=\"H3327\"* came from|strong=\"H3427\"* the|strong=\"H3427\"* way of|strong=\"H3427\"* Beer Lahai Roi, for|strong=\"H3427\"* he|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* land of|strong=\"H3427\"* the|strong=\"H3427\"* South|strong=\"H5045\"*." + }, + { + "verseNum": 63, + "text": "Isaac|strong=\"H3327\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meditate|strong=\"H7742\"* in|strong=\"H7200\"* the|strong=\"H7200\"* field|strong=\"H7704\"* at|strong=\"H7200\"* the|strong=\"H7200\"* evening|strong=\"H6153\"*. He|strong=\"H3318\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"* and|strong=\"H5869\"* looked|strong=\"H7200\"*. Behold|strong=\"H2009\"*, there|strong=\"H2009\"* were|strong=\"H5869\"* camels|strong=\"H1581\"* coming|strong=\"H3318\"*." + }, + { + "verseNum": 64, + "text": "Rebekah|strong=\"H7259\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* her|strong=\"H5375\"* eyes|strong=\"H5869\"*, and|strong=\"H5869\"* when|strong=\"H7200\"* she|strong=\"H5921\"* saw|strong=\"H7200\"* Isaac|strong=\"H3327\"*, she|strong=\"H5921\"* got off|strong=\"H5921\"* the|strong=\"H5921\"* camel|strong=\"H1581\"*." + }, + { + "verseNum": 65, + "text": "She|strong=\"H1931\"* said to|strong=\"H1980\"* the|strong=\"H3947\"* servant|strong=\"H5650\"*, “Who|strong=\"H4310\"* is|strong=\"H1931\"* the|strong=\"H3947\"* man who|strong=\"H4310\"* is|strong=\"H1931\"* walking|strong=\"H1980\"* in|strong=\"H1980\"* the|strong=\"H3947\"* field|strong=\"H7704\"* to|strong=\"H1980\"* meet|strong=\"H7125\"* us|strong=\"H7704\"*?”" + }, + { + "verseNum": 66, + "text": "The|strong=\"H3605\"* servant|strong=\"H5650\"* told|strong=\"H5608\"* Isaac|strong=\"H3327\"* all|strong=\"H3605\"* the|strong=\"H3605\"* things|strong=\"H1697\"* that|strong=\"H3605\"* he|strong=\"H6213\"* had|strong=\"H3327\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 67, + "text": "Isaac|strong=\"H3327\"* brought|strong=\"H3947\"* her|strong=\"H3947\"* into|strong=\"H1961\"* his|strong=\"H3947\"* mother Sarah|strong=\"H8283\"*’s tent, and|strong=\"H3327\"* took|strong=\"H3947\"* Rebekah|strong=\"H7259\"*, and|strong=\"H3327\"* she|strong=\"H3327\"* became|strong=\"H1961\"* his|strong=\"H3947\"* wife. He|strong=\"H8283\"* loved her|strong=\"H3947\"*. So|strong=\"H3947\"* Isaac|strong=\"H3327\"* was|strong=\"H1961\"* comforted|strong=\"H5162\"* after|strong=\"H1961\"* his|strong=\"H3947\"* mother’s death." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Abraham|strong=\"H3947\"* took|strong=\"H3947\"* another|strong=\"H3254\"* wife, and|strong=\"H3947\"* her|strong=\"H3947\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Keturah|strong=\"H6989\"*." + }, + { + "verseNum": 2, + "text": "She bore|strong=\"H3205\"* him|strong=\"H3205\"* Zimran|strong=\"H2175\"*, Jokshan|strong=\"H3370\"*, Medan|strong=\"H4091\"*, Midian|strong=\"H4080\"*, Ishbak|strong=\"H3435\"*, and|strong=\"H4080\"* Shuah|strong=\"H7744\"*." + }, + { + "verseNum": 3, + "text": "Jokshan|strong=\"H3370\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Sheba|strong=\"H7614\"*, and|strong=\"H1121\"* Dedan|strong=\"H1719\"*. The|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Dedan|strong=\"H1719\"* were|strong=\"H1961\"* Asshurim, Letushim|strong=\"H3912\"*, and|strong=\"H1121\"* Leummim|strong=\"H3817\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"* were|strong=\"H1121\"* Ephah|strong=\"H5891\"*, Epher|strong=\"H6081\"*, Hanoch|strong=\"H2585\"*, Abida, and|strong=\"H1121\"* Eldaah. All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Keturah|strong=\"H6989\"*." + }, + { + "verseNum": 5, + "text": "Abraham gave|strong=\"H5414\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3605\"* had|strong=\"H5414\"* to|strong=\"H5414\"* Isaac|strong=\"H3327\"*," + }, + { + "verseNum": 6, + "text": "but|strong=\"H5750\"* Abraham gave|strong=\"H5414\"* gifts|strong=\"H4979\"* to|strong=\"H7971\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Abraham’s concubines|strong=\"H6370\"*. While|strong=\"H5750\"* he|strong=\"H5414\"* still|strong=\"H5750\"* lived|strong=\"H2416\"*, he|strong=\"H5414\"* sent|strong=\"H7971\"* them|strong=\"H5414\"* away|strong=\"H7971\"* from|strong=\"H5921\"* Isaac|strong=\"H3327\"* his|strong=\"H5414\"* son|strong=\"H1121\"*, eastward|strong=\"H6924\"*, to|strong=\"H7971\"* the|strong=\"H5921\"* east|strong=\"H6924\"* country|strong=\"H6924\"*." + }, + { + "verseNum": 7, + "text": "These|strong=\"H3117\"* are|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* years|strong=\"H8141\"* of|strong=\"H3117\"* Abraham’s life|strong=\"H2416\"* which|strong=\"H2416\"* he|strong=\"H3117\"* lived|strong=\"H2416\"*: one|strong=\"H2416\"* hundred|strong=\"H3967\"* seventy-five|strong=\"H7657\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 8, + "text": "Abraham gave up his|strong=\"H4191\"* spirit, and|strong=\"H5971\"* died|strong=\"H4191\"* at|strong=\"H4191\"* a|strong=\"H3068\"* good|strong=\"H2896\"* old|strong=\"H2205\"* age|strong=\"H7872\"*, an|strong=\"H4191\"* old|strong=\"H2205\"* man|strong=\"H2205\"*, and|strong=\"H5971\"* full|strong=\"H7649\"* of|strong=\"H2205\"* years|strong=\"H7872\"*, and|strong=\"H5971\"* was|strong=\"H2896\"* gathered to|strong=\"H4191\"* his|strong=\"H4191\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 9, + "text": "Isaac|strong=\"H3327\"* and|strong=\"H1121\"* Ishmael|strong=\"H3458\"*, his|strong=\"H6440\"* sons|strong=\"H1121\"*, buried|strong=\"H6912\"* him|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* cave|strong=\"H4631\"* of|strong=\"H1121\"* Machpelah|strong=\"H4375\"*, in|strong=\"H5921\"* the|strong=\"H6440\"* field|strong=\"H7704\"* of|strong=\"H1121\"* Ephron|strong=\"H6085\"*, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zohar|strong=\"H6714\"* the|strong=\"H6440\"* Hittite|strong=\"H2850\"*, which|strong=\"H7704\"* is|strong=\"H1121\"* near|strong=\"H6440\"* Mamre|strong=\"H4471\"*," + }, + { + "verseNum": 10, + "text": "the|strong=\"H8033\"* field|strong=\"H7704\"* which|strong=\"H8033\"* Abraham purchased|strong=\"H7069\"* from|strong=\"H1121\"* the|strong=\"H8033\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Heth|strong=\"H2845\"*. Abraham was|strong=\"H1121\"* buried|strong=\"H6912\"* there|strong=\"H8033\"* with|strong=\"H8033\"* Sarah|strong=\"H8283\"*, his|strong=\"H8283\"* wife." + }, + { + "verseNum": 11, + "text": "After|strong=\"H1961\"* the|strong=\"H1288\"* death|strong=\"H4194\"* of|strong=\"H1121\"* Abraham, God blessed|strong=\"H1288\"* Isaac|strong=\"H3327\"*, his|strong=\"H1288\"* son|strong=\"H1121\"*. Isaac|strong=\"H3327\"* lived|strong=\"H3427\"* by|strong=\"H3427\"* Beer Lahai Roi." + }, + { + "verseNum": 12, + "text": "Now this|strong=\"H1121\"* is|strong=\"H1121\"* the|strong=\"H3205\"* history|strong=\"H8435\"* of|strong=\"H1121\"* the|strong=\"H3205\"* generations|strong=\"H8435\"* of|strong=\"H1121\"* Ishmael|strong=\"H3458\"*, Abraham’s son|strong=\"H1121\"*, whom Hagar|strong=\"H1904\"* the|strong=\"H3205\"* Egyptian|strong=\"H4713\"*, Sarah|strong=\"H8283\"*’s servant|strong=\"H8198\"*, bore|strong=\"H3205\"* to|strong=\"H3205\"* Abraham." + }, + { + "verseNum": 13, + "text": "These are|strong=\"H1121\"* the|strong=\"H3458\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H3458\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ishmael|strong=\"H3458\"*, by|strong=\"H8034\"* their names|strong=\"H8034\"*, according to|strong=\"H1121\"* the|strong=\"H3458\"* order|strong=\"H8435\"* of|strong=\"H1121\"* their birth|strong=\"H8435\"*: the|strong=\"H3458\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* Ishmael|strong=\"H3458\"*, Nebaioth|strong=\"H5032\"*, then|strong=\"H1121\"* Kedar|strong=\"H6938\"*, Adbeel, Mibsam|strong=\"H4017\"*," + }, + { + "verseNum": 14, + "text": "Mishma|strong=\"H4927\"*, Dumah|strong=\"H1746\"*, Massa|strong=\"H4854\"*," + }, + { + "verseNum": 15, + "text": "Hadad|strong=\"H2301\"*, Tema|strong=\"H8485\"*, Jetur|strong=\"H3195\"*, Naphish|strong=\"H5305\"*, and|strong=\"H5305\"* Kedemah|strong=\"H6929\"*." + }, + { + "verseNum": 16, + "text": "These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H3458\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ishmael|strong=\"H3458\"*, and|strong=\"H1121\"* these|strong=\"H1992\"* are|strong=\"H1992\"* their|strong=\"H1992\"* names|strong=\"H8034\"*, by|strong=\"H8034\"* their|strong=\"H1992\"* villages|strong=\"H2691\"*, and|strong=\"H1121\"* by|strong=\"H8034\"* their|strong=\"H1992\"* encampments|strong=\"H2918\"*: twelve|strong=\"H8147\"* princes|strong=\"H5387\"*, according to|strong=\"H1121\"* their|strong=\"H1992\"* nations." + }, + { + "verseNum": 17, + "text": "These|strong=\"H5971\"* are|strong=\"H5971\"* the|strong=\"H3458\"* years|strong=\"H8141\"* of|strong=\"H8141\"* the|strong=\"H3458\"* life|strong=\"H2416\"* of|strong=\"H8141\"* Ishmael|strong=\"H3458\"*: one|strong=\"H2416\"* hundred|strong=\"H3967\"* thirty-seven|strong=\"H7970\"* years|strong=\"H8141\"*. He|strong=\"H8141\"* gave up his|strong=\"H3458\"* spirit and|strong=\"H3967\"* died|strong=\"H4191\"*, and|strong=\"H3967\"* was|strong=\"H8141\"* gathered to|strong=\"H4191\"* his|strong=\"H3458\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"H5921\"* lived|strong=\"H7931\"* from|strong=\"H6440\"* Havilah|strong=\"H2341\"* to|strong=\"H5704\"* Shur|strong=\"H7793\"* that|strong=\"H3605\"* is|strong=\"H3605\"* before|strong=\"H6440\"* Egypt|strong=\"H4714\"*, as|strong=\"H5704\"* you|strong=\"H6440\"* go|strong=\"H5307\"* toward|strong=\"H5921\"* Assyria. He|strong=\"H5704\"* lived|strong=\"H7931\"* opposite|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* relatives." + }, + { + "verseNum": 19, + "text": "This|strong=\"H1121\"* is|strong=\"H1121\"* the|strong=\"H3205\"* history|strong=\"H8435\"* of|strong=\"H1121\"* the|strong=\"H3205\"* generations|strong=\"H8435\"* of|strong=\"H1121\"* Isaac|strong=\"H3327\"*, Abraham’s son|strong=\"H1121\"*. Abraham became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Isaac|strong=\"H3327\"*." + }, + { + "verseNum": 20, + "text": "Isaac|strong=\"H3327\"* was|strong=\"H1961\"* forty years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* he|strong=\"H8141\"* took|strong=\"H3947\"* Rebekah|strong=\"H7259\"*, the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Bethuel|strong=\"H1328\"* the|strong=\"H3947\"* Syrian of|strong=\"H1121\"* Paddan|strong=\"H6307\"* Aram|strong=\"H6307\"*, the|strong=\"H3947\"* sister of|strong=\"H1121\"* Laban|strong=\"H3837\"* the|strong=\"H3947\"* Syrian, to|strong=\"H1961\"* be|strong=\"H1961\"* his|strong=\"H3947\"* wife." + }, + { + "verseNum": 21, + "text": "Isaac|strong=\"H3327\"* entreated|strong=\"H6279\"* Yahweh|strong=\"H3068\"* for|strong=\"H3588\"* his|strong=\"H3068\"* wife, because|strong=\"H3588\"* she|strong=\"H1931\"* was|strong=\"H3068\"* barren|strong=\"H6135\"*. Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* entreated|strong=\"H6279\"* by|strong=\"H3068\"* him|strong=\"H1931\"*, and|strong=\"H3068\"* Rebekah|strong=\"H7259\"* his|strong=\"H3068\"* wife conceived|strong=\"H2029\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3068\"* children|strong=\"H1121\"* struggled|strong=\"H7533\"* together|strong=\"H7533\"* within|strong=\"H7130\"* her|strong=\"H7130\"*. She|strong=\"H3651\"* said|strong=\"H3651\"*, “If|strong=\"H3651\"* it|strong=\"H3651\"* is|strong=\"H3068\"* like|strong=\"H3651\"* this|strong=\"H2088\"*, why|strong=\"H4100\"* do|strong=\"H3068\"* I|strong=\"H3651\"* live|strong=\"H7130\"*?” She|strong=\"H3651\"* went|strong=\"H3212\"* to|strong=\"H3212\"* inquire|strong=\"H1875\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* her|strong=\"H8147\"*," + }, + { + "verseNum": 24, + "text": "When|strong=\"H3117\"* her|strong=\"H4390\"* days|strong=\"H3117\"* to|strong=\"H3117\"* be|strong=\"H3117\"* delivered|strong=\"H3205\"* were|strong=\"H3117\"* fulfilled|strong=\"H4390\"*, behold|strong=\"H2009\"*, there|strong=\"H2009\"* were|strong=\"H3117\"* twins|strong=\"H8380\"* in|strong=\"H3117\"* her|strong=\"H4390\"* womb." + }, + { + "verseNum": 25, + "text": "The|strong=\"H3605\"* first|strong=\"H7223\"* came|strong=\"H3318\"* out|strong=\"H3318\"* red all|strong=\"H3605\"* over|strong=\"H3318\"*, like|strong=\"H3318\"* a|strong=\"H3068\"* hairy|strong=\"H8181\"* garment. They|strong=\"H3605\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Esau|strong=\"H6215\"*." + }, + { + "verseNum": 26, + "text": "After|strong=\"H3318\"* that|strong=\"H3651\"*, his|strong=\"H7121\"* brother came|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* his|strong=\"H7121\"* hand|strong=\"H3027\"* had|strong=\"H3205\"* hold on|strong=\"H3027\"* Esau|strong=\"H6215\"*’s heel|strong=\"H6119\"*. He|strong=\"H3651\"* was|strong=\"H8034\"* named|strong=\"H7121\"* Jacob|strong=\"H3290\"*. Isaac|strong=\"H3327\"* was|strong=\"H8034\"* sixty|strong=\"H8346\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H3318\"* she|strong=\"H7121\"* bore|strong=\"H3205\"* them|strong=\"H3027\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H3045\"* boys|strong=\"H5288\"* grew|strong=\"H1431\"*. Esau|strong=\"H6215\"* was|strong=\"H1961\"* a|strong=\"H3068\"* skillful|strong=\"H3045\"* hunter|strong=\"H6718\"*, a|strong=\"H3068\"* man|strong=\"H5288\"* of|strong=\"H3427\"* the|strong=\"H3045\"* field|strong=\"H7704\"*. Jacob|strong=\"H3290\"* was|strong=\"H1961\"* a|strong=\"H3068\"* quiet man|strong=\"H5288\"*, living|strong=\"H3427\"* in|strong=\"H3427\"* tents." + }, + { + "verseNum": 28, + "text": "Now|strong=\"H3588\"* Isaac|strong=\"H3327\"* loved Esau|strong=\"H6215\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* ate his|strong=\"H3327\"* venison|strong=\"H6718\"*. Rebekah|strong=\"H7259\"* loved Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 29, + "text": "Jacob|strong=\"H3290\"* boiled stew|strong=\"H5138\"*. Esau|strong=\"H6215\"* came in|strong=\"H4480\"* from|strong=\"H4480\"* the|strong=\"H4480\"* field|strong=\"H7704\"*, and|strong=\"H7704\"* he|strong=\"H1931\"* was|strong=\"H1931\"* famished|strong=\"H5889\"*." + }, + { + "verseNum": 30, + "text": "Esau|strong=\"H6215\"* said|strong=\"H7121\"* to|strong=\"H5921\"* Jacob|strong=\"H3290\"*, “Please|strong=\"H4994\"* feed|strong=\"H3938\"* me|strong=\"H4994\"* with|strong=\"H5921\"* some|strong=\"H4480\"* of|strong=\"H8034\"* that|strong=\"H3588\"* red stew, for|strong=\"H3588\"* I|strong=\"H3588\"* am famished|strong=\"H5889\"*.” Therefore|strong=\"H3651\"* his|strong=\"H7121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Edom.+ 25:30 “Edom” means “red”.*" + }, + { + "verseNum": 31, + "text": "Jacob|strong=\"H3290\"* said, “First|strong=\"H3117\"*, sell|strong=\"H4376\"* me|strong=\"H3117\"* your|strong=\"H4376\"* birthright|strong=\"H1062\"*.”" + }, + { + "verseNum": 32, + "text": "Esau|strong=\"H6215\"* said, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* am|strong=\"H1980\"* about|strong=\"H1980\"* to|strong=\"H1980\"* die|strong=\"H4191\"*. What|strong=\"H4100\"* good|strong=\"H4100\"* is|strong=\"H2088\"* the|strong=\"H4191\"* birthright|strong=\"H1062\"* to|strong=\"H1980\"* me|strong=\"H4191\"*?”" + }, + { + "verseNum": 33, + "text": "Jacob|strong=\"H3290\"* said, “Swear|strong=\"H7650\"* to|strong=\"H3117\"* me|strong=\"H3117\"* first|strong=\"H3117\"*.”" + }, + { + "verseNum": 34, + "text": "Jacob|strong=\"H3290\"* gave|strong=\"H5414\"* Esau|strong=\"H6215\"* bread|strong=\"H3899\"* and|strong=\"H6965\"* lentil|strong=\"H5742\"* stew|strong=\"H5138\"*. He|strong=\"H5414\"* ate and|strong=\"H6965\"* drank|strong=\"H8354\"*, rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* his|strong=\"H5414\"* way|strong=\"H3212\"*. So|strong=\"H5414\"* Esau|strong=\"H6215\"* despised his|strong=\"H5414\"* birthright|strong=\"H1062\"*." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* famine|strong=\"H7458\"* in|strong=\"H4428\"* the|strong=\"H3117\"* land, in|strong=\"H4428\"* addition to|strong=\"H3212\"* the|strong=\"H3117\"* first|strong=\"H7223\"* famine|strong=\"H7458\"* that|strong=\"H3117\"* was|strong=\"H1961\"* in|strong=\"H4428\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Abraham. Isaac|strong=\"H3327\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Abimelech king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3117\"* Philistines|strong=\"H6430\"*, to|strong=\"H3212\"* Gerar|strong=\"H1642\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3381\"* him|strong=\"H7200\"*, and|strong=\"H3068\"* said, “Don’t go|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* Egypt|strong=\"H4714\"*. Live|strong=\"H7931\"* in|strong=\"H3068\"* the|strong=\"H7200\"* land I|strong=\"H4714\"* will|strong=\"H3068\"* tell|strong=\"H7200\"* you|strong=\"H7200\"* about." + }, + { + "verseNum": 3, + "text": "Live|strong=\"H1481\"* in|strong=\"H5414\"* this|strong=\"H2063\"* land, and|strong=\"H6965\"* I|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, and|strong=\"H6965\"* will|strong=\"H1961\"* bless|strong=\"H1288\"* you|strong=\"H3588\"*. For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1961\"* give|strong=\"H5414\"* to|strong=\"H1961\"* you|strong=\"H3588\"*, and|strong=\"H6965\"* to|strong=\"H1961\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"*, all|strong=\"H3605\"* these|strong=\"H2063\"* lands, and|strong=\"H6965\"* I|strong=\"H3588\"* will|strong=\"H1961\"* establish|strong=\"H6965\"* the|strong=\"H3605\"* oath|strong=\"H7621\"* which|strong=\"H3588\"* I|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H1961\"* Abraham your|strong=\"H3605\"* father." + }, + { + "verseNum": 4, + "text": "I|strong=\"H5414\"* will|strong=\"H1471\"* multiply|strong=\"H7235\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"* as|strong=\"H5414\"* the|strong=\"H3605\"* stars|strong=\"H3556\"* of|strong=\"H2233\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* will|strong=\"H1471\"* give|strong=\"H5414\"* all|strong=\"H3605\"* these|strong=\"H3605\"* lands to|strong=\"H5414\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"*. In|strong=\"H5414\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* of|strong=\"H2233\"* the|strong=\"H3605\"* earth|strong=\"H8064\"* will|strong=\"H1471\"* be|strong=\"H1471\"* blessed|strong=\"H1288\"*," + }, + { + "verseNum": 5, + "text": "because|strong=\"H6118\"* Abraham obeyed|strong=\"H8085\"* my|strong=\"H8104\"* voice|strong=\"H6963\"*, and|strong=\"H6963\"* kept|strong=\"H8104\"* my|strong=\"H8104\"* requirements, my|strong=\"H8104\"* commandments|strong=\"H4687\"*, my|strong=\"H8104\"* statutes|strong=\"H2708\"*, and|strong=\"H6963\"* my|strong=\"H8104\"* laws|strong=\"H8451\"*.”" + }, + { + "verseNum": 6, + "text": "Isaac|strong=\"H3327\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Gerar|strong=\"H1642\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5921\"* men|strong=\"H2896\"* of|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* asked|strong=\"H7592\"* him|strong=\"H5921\"* about|strong=\"H5921\"* his|strong=\"H5921\"* wife. He|strong=\"H1931\"* said, “She|strong=\"H1931\"* is|strong=\"H1931\"* my|strong=\"H5921\"* sister,” for|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* afraid|strong=\"H3372\"* to|strong=\"H5921\"* say, “My|strong=\"H5921\"* wife”, lest|strong=\"H6435\"*, he|strong=\"H1931\"* thought, “the|strong=\"H5921\"* men|strong=\"H2896\"* of|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* might|strong=\"H6435\"* kill|strong=\"H2026\"* me|strong=\"H5921\"* for|strong=\"H3588\"* Rebekah|strong=\"H7259\"*, because|strong=\"H3588\"* she|strong=\"H1931\"* is|strong=\"H1931\"* beautiful|strong=\"H2896\"* to|strong=\"H5921\"* look at|strong=\"H5921\"*.”" + }, + { + "verseNum": 8, + "text": "When|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1961\"* been|strong=\"H1961\"* there|strong=\"H8033\"* a|strong=\"H3068\"* long|strong=\"H3117\"* time|strong=\"H3117\"*, Abimelech king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H7200\"* Philistines|strong=\"H6430\"* looked|strong=\"H7200\"* out|strong=\"H8259\"* at|strong=\"H3117\"* a|strong=\"H3068\"* window|strong=\"H2474\"*, and|strong=\"H4428\"* saw|strong=\"H7200\"*, and|strong=\"H4428\"*, behold|strong=\"H2009\"*, Isaac|strong=\"H3327\"* was|strong=\"H1961\"* caressing|strong=\"H6711\"* Rebekah|strong=\"H7259\"*, his|strong=\"H7200\"* wife." + }, + { + "verseNum": 9, + "text": "Abimelech called|strong=\"H7121\"* Isaac|strong=\"H3327\"*, and|strong=\"H3327\"* said|strong=\"H7121\"*, “Behold|strong=\"H2009\"*, surely|strong=\"H4191\"* she|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H5921\"* wife. Why|strong=\"H5921\"* did|strong=\"H3327\"* you|strong=\"H3588\"* say, ‘She|strong=\"H1931\"* is|strong=\"H1931\"* my|strong=\"H5921\"* sister’?”" + }, + { + "verseNum": 10, + "text": "Abimelech said, “What|strong=\"H4100\"* is|strong=\"H4100\"* this|strong=\"H2063\"* you|strong=\"H5921\"* have|strong=\"H5971\"* done|strong=\"H6213\"* to|strong=\"H6213\"* us|strong=\"H5921\"*? One|strong=\"H6213\"* of|strong=\"H5971\"* the|strong=\"H5921\"* people|strong=\"H5971\"* might|strong=\"H5971\"* easily|strong=\"H4592\"* have|strong=\"H5971\"* lain|strong=\"H7901\"* with|strong=\"H6213\"* your|strong=\"H5921\"* wife, and|strong=\"H5971\"* you|strong=\"H5921\"* would|strong=\"H5971\"* have|strong=\"H5971\"* brought|strong=\"H6213\"* guilt on|strong=\"H5921\"* us|strong=\"H5921\"*!”" + }, + { + "verseNum": 11, + "text": "Abimelech commanded|strong=\"H6680\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying, “He|strong=\"H3605\"* who|strong=\"H3605\"* touches|strong=\"H5060\"* this|strong=\"H2088\"* man|strong=\"H4191\"* or|strong=\"H4191\"* his|strong=\"H3605\"* wife will|strong=\"H5971\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*.”" + }, + { + "verseNum": 12, + "text": "Isaac|strong=\"H3327\"* sowed|strong=\"H2232\"* in|strong=\"H8141\"* that|strong=\"H1931\"* land, and|strong=\"H3967\"* reaped|strong=\"H4672\"* in|strong=\"H8141\"* the|strong=\"H3068\"* same|strong=\"H1931\"* year|strong=\"H8141\"* one|strong=\"H1931\"* hundred|strong=\"H3967\"* times|strong=\"H3967\"* what he|strong=\"H1931\"* planted|strong=\"H2232\"*. Yahweh|strong=\"H3068\"* blessed|strong=\"H1288\"* him|strong=\"H4672\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3588\"* man grew|strong=\"H1431\"* great|strong=\"H1431\"*, and|strong=\"H1980\"* grew|strong=\"H1431\"* more|strong=\"H3966\"* and|strong=\"H1980\"* more|strong=\"H3966\"* until|strong=\"H5704\"* he|strong=\"H3588\"* became|strong=\"H1431\"* very|strong=\"H3966\"* great|strong=\"H1431\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H1241\"* had|strong=\"H1961\"* possessions|strong=\"H4735\"* of|strong=\"H6629\"* flocks|strong=\"H6629\"*, possessions|strong=\"H4735\"* of|strong=\"H6629\"* herds|strong=\"H1241\"*, and|strong=\"H6629\"* a|strong=\"H3068\"* great|strong=\"H7227\"* household|strong=\"H5657\"*. The|strong=\"H1961\"* Philistines|strong=\"H6430\"* envied|strong=\"H7065\"* him|strong=\"H7065\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wells which|strong=\"H3117\"* his|strong=\"H3605\"* father’s servants|strong=\"H5650\"* had|strong=\"H6430\"* dug|strong=\"H2658\"* in|strong=\"H3117\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Abraham his|strong=\"H3605\"* father, the|strong=\"H3605\"* Philistines|strong=\"H6430\"* had|strong=\"H6430\"* stopped|strong=\"H5640\"*, and|strong=\"H3117\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* earth|strong=\"H6083\"*." + }, + { + "verseNum": 16, + "text": "Abimelech said to|strong=\"H3212\"* Isaac|strong=\"H3327\"*, “Go|strong=\"H3212\"* away|strong=\"H3212\"* from|strong=\"H4480\"* us|strong=\"H3588\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5973\"* much|strong=\"H3966\"* mightier|strong=\"H6105\"* than|strong=\"H4480\"* we|strong=\"H3068\"*.”" + }, + { + "verseNum": 17, + "text": "Isaac|strong=\"H3327\"* departed|strong=\"H3212\"* from|strong=\"H3212\"* there|strong=\"H8033\"*, encamped|strong=\"H2583\"* in|strong=\"H3427\"* the|strong=\"H8033\"* valley|strong=\"H5158\"* of|strong=\"H3427\"* Gerar|strong=\"H1642\"*, and|strong=\"H3212\"* lived|strong=\"H3427\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 18, + "text": "Isaac|strong=\"H3327\"* dug|strong=\"H2658\"* again|strong=\"H7725\"* the|strong=\"H7725\"* wells of|strong=\"H3117\"* water|strong=\"H4325\"*, which|strong=\"H4325\"* they|strong=\"H3117\"* had|strong=\"H6430\"* dug|strong=\"H2658\"* in|strong=\"H3117\"* the|strong=\"H7725\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Abraham his|strong=\"H7121\"* father, for|strong=\"H7121\"* the|strong=\"H7725\"* Philistines|strong=\"H6430\"* had|strong=\"H6430\"* stopped|strong=\"H5640\"* them|strong=\"H7725\"* after|strong=\"H3117\"* the|strong=\"H7725\"* death|strong=\"H4194\"* of|strong=\"H3117\"* Abraham. He|strong=\"H3117\"* called|strong=\"H7121\"* their|strong=\"H7725\"* names|strong=\"H8034\"* after|strong=\"H3117\"* the|strong=\"H7725\"* names|strong=\"H8034\"* by|strong=\"H3117\"* which|strong=\"H4325\"* his|strong=\"H7121\"* father had|strong=\"H6430\"* called|strong=\"H7121\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 19, + "text": "Isaac|strong=\"H3327\"*’s servants|strong=\"H5650\"* dug|strong=\"H2658\"* in|strong=\"H4672\"* the|strong=\"H4672\"* valley|strong=\"H5158\"*, and|strong=\"H5650\"* found|strong=\"H4672\"* there|strong=\"H8033\"* a|strong=\"H3068\"* well of|strong=\"H5650\"* flowing|strong=\"H2416\"*+ 26:19 Or, living. Or, fresh.* water|strong=\"H4325\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3588\"* herdsmen|strong=\"H7473\"* of|strong=\"H4325\"* Gerar|strong=\"H1642\"* argued with|strong=\"H5973\"* Isaac|strong=\"H3327\"*’s herdsmen|strong=\"H7473\"*, saying, “The|strong=\"H3588\"* water|strong=\"H4325\"* is|strong=\"H8034\"* ours.” So|strong=\"H7121\"* he|strong=\"H3588\"* called|strong=\"H7121\"* the|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H4325\"* the|strong=\"H3588\"* well|strong=\"H5973\"* Esek|strong=\"H6230\"*,+ 26:20 “Esek” means “contention”.* because|strong=\"H3588\"* they|strong=\"H3588\"* contended|strong=\"H7378\"* with|strong=\"H5973\"* him|strong=\"H7121\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"H5921\"* dug|strong=\"H2658\"* another|strong=\"H1571\"* well|strong=\"H1571\"*, and|strong=\"H8034\"* they|strong=\"H5921\"* argued over|strong=\"H5921\"* that|strong=\"H7121\"*, also|strong=\"H1571\"*. So|strong=\"H7121\"* he|strong=\"H5921\"* called|strong=\"H7121\"* its|strong=\"H5921\"* name|strong=\"H8034\"* Sitnah|strong=\"H7856\"*.+ 26:21 “Sitnah” means “hostility”.*" + }, + { + "verseNum": 22, + "text": "He|strong=\"H3588\"* left|strong=\"H8033\"* that|strong=\"H3588\"* place|strong=\"H8033\"*, and|strong=\"H3068\"* dug|strong=\"H2658\"* another|strong=\"H3808\"* well. They|strong=\"H3588\"* didn’t argue|strong=\"H7378\"* over|strong=\"H5921\"* that|strong=\"H3588\"* one|strong=\"H3808\"*. So|strong=\"H7121\"* he|strong=\"H3588\"* called|strong=\"H7121\"* it|strong=\"H7121\"* Rehoboth|strong=\"H7344\"*.+ 26:22 “Rehoboth” means “broad places”.* He|strong=\"H3588\"* said|strong=\"H7121\"*, “For|strong=\"H3588\"* now|strong=\"H6258\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H7337\"* room|strong=\"H7337\"* for|strong=\"H3588\"* us|strong=\"H5921\"*, and|strong=\"H3068\"* we|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3808\"* fruitful|strong=\"H6509\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land.”" + }, + { + "verseNum": 23, + "text": "He|strong=\"H8033\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* there|strong=\"H8033\"* to|strong=\"H5927\"* Beersheba." + }, + { + "verseNum": 24, + "text": "Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* him|strong=\"H7200\"* the|strong=\"H7200\"* same|strong=\"H1931\"* night|strong=\"H3915\"*, and|strong=\"H3068\"* said, “I|strong=\"H3588\"* am|strong=\"H3068\"* the|strong=\"H7200\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Abraham your|strong=\"H3068\"* father. Don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* with|strong=\"H3068\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* multiply|strong=\"H7235\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"* for|strong=\"H3588\"* my|strong=\"H3068\"* servant|strong=\"H5650\"* Abraham’s sake|strong=\"H5668\"*.”" + }, + { + "verseNum": 25, + "text": "He|strong=\"H8033\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* there|strong=\"H8033\"*, and|strong=\"H3068\"* called|strong=\"H7121\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, and|strong=\"H3068\"* pitched|strong=\"H5186\"* his|strong=\"H3068\"* tent there|strong=\"H8033\"*. There|strong=\"H8033\"* Isaac|strong=\"H3327\"*’s servants|strong=\"H5650\"* dug|strong=\"H3738\"* a|strong=\"H3068\"* well." + }, + { + "verseNum": 26, + "text": "Then|strong=\"H1980\"* Abimelech went|strong=\"H1980\"* to|strong=\"H1980\"* him|strong=\"H1980\"* from|strong=\"H1980\"* Gerar|strong=\"H1642\"* with|strong=\"H1980\"* Ahuzzath his|strong=\"H1980\"* friend, and|strong=\"H1980\"* Phicol|strong=\"H6369\"* the|strong=\"H1980\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* his|strong=\"H1980\"* army|strong=\"H6635\"*." + }, + { + "verseNum": 27, + "text": "Isaac|strong=\"H3327\"* said to|strong=\"H7971\"* them|strong=\"H7971\"*, “Why|strong=\"H4069\"* have|strong=\"H4069\"* you|strong=\"H7971\"* come|strong=\"H7971\"* to|strong=\"H7971\"* me|strong=\"H7971\"*, since you|strong=\"H7971\"* hate|strong=\"H8130\"* me|strong=\"H7971\"*, and|strong=\"H7971\"* have|strong=\"H4069\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* away|strong=\"H7971\"* from|strong=\"H7971\"* you|strong=\"H7971\"*?”" + }, + { + "verseNum": 28, + "text": "They|strong=\"H3588\"* said, “We|strong=\"H3588\"* saw|strong=\"H7200\"* plainly|strong=\"H7200\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3588\"*. We|strong=\"H3588\"* said, ‘Let|strong=\"H4994\"* there|strong=\"H1961\"* now|strong=\"H4994\"* be|strong=\"H1961\"* an|strong=\"H1961\"* oath between|strong=\"H5973\"* us|strong=\"H4994\"*, even|strong=\"H3588\"* between|strong=\"H5973\"* us|strong=\"H4994\"* and|strong=\"H3068\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* let|strong=\"H4994\"*’s make|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H5973\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 29, + "text": "that|strong=\"H3068\"* you|strong=\"H7971\"* will|strong=\"H3068\"* do|strong=\"H6213\"* us|strong=\"H6213\"* no|strong=\"H3808\"* harm|strong=\"H7451\"*, as|strong=\"H6213\"* we|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* touched|strong=\"H5060\"* you|strong=\"H7971\"*, and|strong=\"H3068\"* as|strong=\"H6213\"* we|strong=\"H3068\"* have|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3068\"* you|strong=\"H7971\"* nothing|strong=\"H3808\"* but|strong=\"H7535\"* good|strong=\"H2896\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* away|strong=\"H7971\"* in|strong=\"H3068\"* peace|strong=\"H7965\"*.’ You|strong=\"H7971\"* are|strong=\"H3068\"* now|strong=\"H6258\"* the|strong=\"H6213\"* blessed|strong=\"H1288\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 30, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* them|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H4960\"*, and|strong=\"H6213\"* they|strong=\"H6213\"* ate and|strong=\"H6213\"* drank|strong=\"H8354\"*." + }, + { + "verseNum": 31, + "text": "They|strong=\"H7965\"* rose|strong=\"H7925\"* up|strong=\"H7925\"* some time in|strong=\"H3212\"* the|strong=\"H7971\"* morning|strong=\"H1242\"*, and|strong=\"H7971\"* swore|strong=\"H7650\"* an|strong=\"H7971\"* oath|strong=\"H7650\"* to|strong=\"H3212\"* one another. Isaac|strong=\"H3327\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* away|strong=\"H7971\"*, and|strong=\"H7971\"* they|strong=\"H7965\"* departed|strong=\"H3212\"* from|strong=\"H7971\"* him|strong=\"H7971\"* in|strong=\"H3212\"* peace|strong=\"H7965\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"H5921\"* same|strong=\"H1931\"* day|strong=\"H3117\"*, Isaac|strong=\"H3327\"*’s servants|strong=\"H5650\"* came|strong=\"H1961\"*, and|strong=\"H3117\"* told|strong=\"H5046\"* him|strong=\"H5921\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* well which|strong=\"H1931\"* they|strong=\"H3117\"* had|strong=\"H1961\"* dug|strong=\"H2658\"*, and|strong=\"H3117\"* said to|strong=\"H1961\"* him|strong=\"H5921\"*, “We|strong=\"H3117\"* have|strong=\"H1961\"* found|strong=\"H4672\"* water|strong=\"H4325\"*.”" + }, + { + "verseNum": 33, + "text": "He|strong=\"H3117\"* called|strong=\"H7121\"* it|strong=\"H7121\"* “Shibah|strong=\"H7656\"*”.+ 26:33 Shibah means “oath” or “seven”.* Therefore|strong=\"H3651\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3117\"* the|strong=\"H5921\"* city|strong=\"H5892\"* is|strong=\"H2088\"* “Beersheba”+ 26:33 Beersheba means “well of the oath” or “well of the seven”* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 34, + "text": "When|strong=\"H1961\"* Esau|strong=\"H6215\"* was|strong=\"H1961\"* forty years|strong=\"H8141\"* old|strong=\"H1121\"*, he|strong=\"H8141\"* took|strong=\"H3947\"* as|strong=\"H1961\"* wife Judith|strong=\"H3067\"*, the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Beeri the|strong=\"H3947\"* Hittite|strong=\"H2850\"*, and|strong=\"H1121\"* Basemath|strong=\"H1315\"*, the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Elon the|strong=\"H3947\"* Hittite|strong=\"H2850\"*." + }, + { + "verseNum": 35, + "text": "They grieved Isaac|strong=\"H3327\"*’s and|strong=\"H3327\"* Rebekah|strong=\"H7259\"*’s spirits|strong=\"H7307\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* Isaac|strong=\"H3327\"* was|strong=\"H1961\"* old|strong=\"H1121\"*, and|strong=\"H1121\"* his|strong=\"H7121\"* eyes|strong=\"H5869\"* were|strong=\"H1961\"* dim|strong=\"H3543\"*, so|strong=\"H1961\"* that|strong=\"H3588\"* he|strong=\"H3588\"* could not|strong=\"H1961\"* see|strong=\"H7200\"*, he|strong=\"H3588\"* called|strong=\"H7121\"* Esau|strong=\"H6215\"* his|strong=\"H7121\"* elder|strong=\"H1419\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* said|strong=\"H7121\"* to|strong=\"H1961\"* him|strong=\"H7121\"*, “My|strong=\"H7200\"* son|strong=\"H1121\"*?”" + }, + { + "verseNum": 2, + "text": "He|strong=\"H3117\"* said, “See|strong=\"H2009\"* now|strong=\"H4994\"*, I|strong=\"H3117\"* am|strong=\"H2204\"* old|strong=\"H2204\"*. I|strong=\"H3117\"* don’t know|strong=\"H3045\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* my|strong=\"H3045\"* death|strong=\"H4194\"*." + }, + { + "verseNum": 3, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* take|strong=\"H5375\"* your|strong=\"H5375\"* weapons|strong=\"H3627\"*, your|strong=\"H5375\"* quiver|strong=\"H8522\"* and|strong=\"H7704\"* your|strong=\"H5375\"* bow|strong=\"H7198\"*, and|strong=\"H7704\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5375\"* field|strong=\"H7704\"*, and|strong=\"H7704\"* get|strong=\"H3318\"* me|strong=\"H4994\"* venison." + }, + { + "verseNum": 4, + "text": "Make|strong=\"H6213\"* me|strong=\"H5315\"* savory|strong=\"H4303\"* food|strong=\"H4303\"*, such|strong=\"H6213\"* as|strong=\"H6213\"* I|strong=\"H2962\"* love, and|strong=\"H6213\"* bring|strong=\"H6213\"* it|strong=\"H6213\"* to|strong=\"H4191\"* me|strong=\"H5315\"*, that|strong=\"H5315\"* I|strong=\"H2962\"* may|strong=\"H5315\"* eat, and|strong=\"H6213\"* that|strong=\"H5315\"* my|strong=\"H6213\"* soul|strong=\"H5315\"* may|strong=\"H5315\"* bless|strong=\"H1288\"* you|strong=\"H6213\"* before|strong=\"H2962\"* I|strong=\"H2962\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 5, + "text": "Rebekah|strong=\"H7259\"* heard|strong=\"H8085\"* when|strong=\"H8085\"* Isaac|strong=\"H3327\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Esau|strong=\"H6215\"* his|strong=\"H8085\"* son|strong=\"H1121\"*. Esau|strong=\"H6215\"* went|strong=\"H3212\"* to|strong=\"H1696\"* the|strong=\"H8085\"* field|strong=\"H7704\"* to|strong=\"H1696\"* hunt|strong=\"H6679\"* for|strong=\"H1121\"* venison|strong=\"H6718\"*, and|strong=\"H1121\"* to|strong=\"H1696\"* bring|strong=\"H3212\"* it|strong=\"H1696\"*." + }, + { + "verseNum": 6, + "text": "Rebekah|strong=\"H7259\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Jacob|strong=\"H3290\"* her|strong=\"H3290\"* son|strong=\"H1121\"*, saying|strong=\"H1696\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* heard|strong=\"H8085\"* your|strong=\"H8085\"* father|strong=\"H1121\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* Esau|strong=\"H6215\"* your|strong=\"H8085\"* brother, saying|strong=\"H1696\"*," + }, + { + "verseNum": 7, + "text": "‘Bring|strong=\"H6213\"* me|strong=\"H6440\"* venison|strong=\"H6718\"*, and|strong=\"H3068\"* make|strong=\"H6213\"* me|strong=\"H6440\"* savory|strong=\"H4303\"* food|strong=\"H4303\"*, that|strong=\"H3068\"* I|strong=\"H6440\"* may|strong=\"H3068\"* eat, and|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* before|strong=\"H6440\"* my|strong=\"H3068\"* death|strong=\"H4194\"*.’" + }, + { + "verseNum": 8, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, my|strong=\"H8085\"* son|strong=\"H1121\"*, obey|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"* according to|strong=\"H8085\"* that|strong=\"H8085\"* which|strong=\"H8085\"* I|strong=\"H6258\"* command|strong=\"H6680\"* you|strong=\"H6680\"*." + }, + { + "verseNum": 9, + "text": "Go|strong=\"H3212\"* now|strong=\"H4994\"* to|strong=\"H3212\"* the|strong=\"H3947\"* flock|strong=\"H6629\"* and|strong=\"H3212\"* get|strong=\"H3947\"* me|strong=\"H4994\"* two|strong=\"H8147\"* good|strong=\"H2896\"* young|strong=\"H1423\"* goats|strong=\"H5795\"* from|strong=\"H3947\"* there|strong=\"H8033\"*. I|strong=\"H3212\"* will|strong=\"H6629\"* make|strong=\"H6213\"* them|strong=\"H6213\"* savory|strong=\"H4303\"* food|strong=\"H4303\"* for|strong=\"H6213\"* your|strong=\"H3947\"* father, such|strong=\"H6213\"* as|strong=\"H6213\"* he|strong=\"H8033\"* loves." + }, + { + "verseNum": 10, + "text": "You|strong=\"H6440\"* shall|strong=\"H6440\"* bring it|strong=\"H6440\"* to|strong=\"H6440\"* your|strong=\"H6440\"* father, that|strong=\"H5668\"* he|strong=\"H6440\"* may|strong=\"H1288\"* eat, so|strong=\"H5668\"* that|strong=\"H5668\"* he|strong=\"H6440\"* may|strong=\"H1288\"* bless|strong=\"H1288\"* you|strong=\"H6440\"* before|strong=\"H6440\"* his|strong=\"H6440\"* death|strong=\"H4194\"*.”" + }, + { + "verseNum": 11, + "text": "Jacob|strong=\"H3290\"* said to|strong=\"H3290\"* Rebekah|strong=\"H7259\"* his|strong=\"H3290\"* mother, “Behold|strong=\"H2005\"*, Esau|strong=\"H6215\"* my|strong=\"H3290\"* brother is|strong=\"H6215\"* a|strong=\"H3068\"* hairy|strong=\"H8163\"* man, and|strong=\"H3290\"* I|strong=\"H2005\"* am|strong=\"H2005\"* a|strong=\"H3068\"* smooth|strong=\"H2509\"* man." + }, + { + "verseNum": 12, + "text": "What|strong=\"H5921\"* if|strong=\"H1961\"* my|strong=\"H5921\"* father touches me|strong=\"H5921\"*? I|strong=\"H5921\"* will|strong=\"H1961\"* seem|strong=\"H5869\"* to|strong=\"H1961\"* him|strong=\"H5921\"* as|strong=\"H1961\"* a|strong=\"H3068\"* deceiver|strong=\"H8591\"*, and|strong=\"H5869\"* I|strong=\"H5921\"* would bring|strong=\"H1961\"* a|strong=\"H3068\"* curse|strong=\"H7045\"* on|strong=\"H5921\"* myself, and|strong=\"H5869\"* not|strong=\"H3808\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"*.”" + }, + { + "verseNum": 13, + "text": "His|strong=\"H3947\"* mother said|strong=\"H8085\"* to|strong=\"H3212\"* him|strong=\"H5921\"*, “Let|strong=\"H3212\"* your|strong=\"H5921\"* curse|strong=\"H7045\"* be|strong=\"H1121\"* on|strong=\"H5921\"* me|strong=\"H5921\"*, my|strong=\"H8085\"* son|strong=\"H1121\"*. Only obey|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*, and|strong=\"H1121\"* go|strong=\"H3212\"* get|strong=\"H3947\"* them|strong=\"H5921\"* for|strong=\"H5921\"* me|strong=\"H5921\"*.”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H6213\"* went|strong=\"H3212\"*, and|strong=\"H3212\"* got|strong=\"H3947\"* them|strong=\"H6213\"*, and|strong=\"H3212\"* brought|strong=\"H3947\"* them|strong=\"H6213\"* to|strong=\"H3212\"* his|strong=\"H3947\"* mother. His|strong=\"H3947\"* mother made|strong=\"H6213\"* savory|strong=\"H4303\"* food|strong=\"H4303\"*, such|strong=\"H6213\"* as|strong=\"H6213\"* his|strong=\"H3947\"* father loved." + }, + { + "verseNum": 15, + "text": "Rebekah|strong=\"H7259\"* took|strong=\"H3947\"* the|strong=\"H3947\"* good clothes|strong=\"H3847\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"*, her|strong=\"H3947\"* elder|strong=\"H1419\"* son|strong=\"H1121\"*, which|strong=\"H1004\"* were|strong=\"H1121\"* with|strong=\"H1004\"* her|strong=\"H3947\"* in|strong=\"H1004\"* the|strong=\"H3947\"* house|strong=\"H1004\"*, and|strong=\"H1121\"* put|strong=\"H3847\"* them|strong=\"H3947\"* on|strong=\"H3847\"* Jacob|strong=\"H3290\"*, her|strong=\"H3947\"* younger|strong=\"H6996\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 16, + "text": "She|strong=\"H5921\"* put|strong=\"H3847\"* the|strong=\"H5921\"* skins|strong=\"H5785\"* of|strong=\"H3027\"* the|strong=\"H5921\"* young|strong=\"H1423\"* goats|strong=\"H5795\"* on|strong=\"H5921\"* his|strong=\"H5921\"* hands|strong=\"H3027\"*, and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* smooth|strong=\"H2513\"* of|strong=\"H3027\"* his|strong=\"H5921\"* neck|strong=\"H6677\"*." + }, + { + "verseNum": 17, + "text": "She|strong=\"H4303\"* gave|strong=\"H5414\"* the|strong=\"H5414\"* savory|strong=\"H4303\"* food|strong=\"H3899\"* and|strong=\"H1121\"* the|strong=\"H5414\"* bread|strong=\"H3899\"*, which|strong=\"H3899\"* she|strong=\"H4303\"* had|strong=\"H3290\"* prepared|strong=\"H6213\"*, into|strong=\"H6213\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* her|strong=\"H5414\"* son|strong=\"H1121\"* Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H4310\"* came to|strong=\"H1121\"* his|strong=\"H1121\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* said, “My father|strong=\"H1121\"*?”" + }, + { + "verseNum": 19, + "text": "Jacob|strong=\"H3290\"* said|strong=\"H1696\"* to|strong=\"H1696\"* his|strong=\"H1288\"* father, “I|strong=\"H5315\"* am Esau|strong=\"H6215\"* your|strong=\"H6213\"* firstborn|strong=\"H1060\"*. I|strong=\"H5315\"* have|strong=\"H1696\"* done|strong=\"H6213\"* what|strong=\"H6213\"* you|strong=\"H6213\"* asked|strong=\"H1696\"* me|strong=\"H4994\"* to|strong=\"H1696\"* do|strong=\"H6213\"*. Please|strong=\"H4994\"* arise|strong=\"H6965\"*, sit|strong=\"H3427\"* and|strong=\"H6965\"* eat of|strong=\"H3427\"* my|strong=\"H6965\"* venison|strong=\"H6718\"*, that|strong=\"H5315\"* your|strong=\"H6213\"* soul|strong=\"H5315\"* may|strong=\"H4994\"* bless|strong=\"H1288\"* me|strong=\"H4994\"*.”" + }, + { + "verseNum": 20, + "text": "Isaac|strong=\"H3327\"* said to|strong=\"H3068\"* his|strong=\"H3068\"* son|strong=\"H1121\"*, “How|strong=\"H4100\"* is|strong=\"H3068\"* it|strong=\"H3588\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* found|strong=\"H4672\"* it|strong=\"H3588\"* so|strong=\"H2088\"* quickly|strong=\"H4116\"*, my|strong=\"H3068\"* son|strong=\"H1121\"*?”" + }, + { + "verseNum": 21, + "text": "Isaac|strong=\"H3327\"* said to|strong=\"H1121\"* Jacob|strong=\"H3290\"*, “Please|strong=\"H4994\"* come|strong=\"H5066\"* near|strong=\"H5066\"*, that|strong=\"H1121\"* I|strong=\"H2088\"* may|strong=\"H4994\"* feel|strong=\"H4184\"* you|strong=\"H3808\"*, my|strong=\"H3290\"* son|strong=\"H1121\"*, whether you|strong=\"H3808\"* are|strong=\"H1121\"* really|strong=\"H2088\"* my|strong=\"H3290\"* son|strong=\"H1121\"* Esau|strong=\"H6215\"* or|strong=\"H3808\"* not|strong=\"H3808\"*.”" + }, + { + "verseNum": 22, + "text": "Jacob|strong=\"H3290\"* went|strong=\"H3290\"* near|strong=\"H5066\"* to|strong=\"H3027\"* Isaac|strong=\"H3327\"* his|strong=\"H3027\"* father. He|strong=\"H3027\"* felt|strong=\"H4959\"* him|strong=\"H3027\"*, and|strong=\"H3027\"* said, “The|strong=\"H3027\"* voice|strong=\"H6963\"* is|strong=\"H3027\"* Jacob|strong=\"H3290\"*’s voice|strong=\"H6963\"*, but|strong=\"H3290\"* the|strong=\"H3027\"* hands|strong=\"H3027\"* are|strong=\"H3027\"* the|strong=\"H3027\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* Esau|strong=\"H6215\"*.”" + }, + { + "verseNum": 23, + "text": "He|strong=\"H3588\"* didn’t recognize|strong=\"H5234\"* him|strong=\"H3027\"*, because|strong=\"H3588\"* his|strong=\"H3027\"* hands|strong=\"H3027\"* were|strong=\"H1961\"* hairy|strong=\"H8163\"*, like|strong=\"H1961\"* his|strong=\"H3027\"* brother Esau|strong=\"H6215\"*’s hands|strong=\"H3027\"*. So|strong=\"H1961\"* he|strong=\"H3588\"* blessed|strong=\"H1288\"* him|strong=\"H3027\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H2088\"* said, “Are|strong=\"H1121\"* you|strong=\"H2088\"* really|strong=\"H2088\"* my|strong=\"H6215\"* son|strong=\"H1121\"* Esau|strong=\"H6215\"*?”" + }, + { + "verseNum": 25, + "text": "He|strong=\"H5315\"* said, “Bring|strong=\"H5066\"* it|strong=\"H5315\"* near|strong=\"H5066\"* to|strong=\"H1121\"* me|strong=\"H5315\"*, and|strong=\"H1121\"* I|strong=\"H5315\"* will|strong=\"H5315\"* eat of|strong=\"H1121\"* my|strong=\"H8354\"* son|strong=\"H1121\"*’s venison|strong=\"H6718\"*, that|strong=\"H5315\"* my|strong=\"H8354\"* soul|strong=\"H5315\"* may|strong=\"H5315\"* bless|strong=\"H1288\"* you|strong=\"H1288\"*.”" + }, + { + "verseNum": 26, + "text": "His|strong=\"H3327\"* father|strong=\"H1121\"* Isaac|strong=\"H3327\"* said to|strong=\"H1121\"* him|strong=\"H5401\"*, “Come|strong=\"H5066\"* near|strong=\"H5066\"* now|strong=\"H4994\"*, and|strong=\"H1121\"* kiss|strong=\"H5401\"* me|strong=\"H4994\"*, my|strong=\"H5401\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 27, + "text": "He|strong=\"H3068\"* came|strong=\"H5066\"* near|strong=\"H5066\"*, and|strong=\"H1121\"* kissed|strong=\"H5401\"* him|strong=\"H7200\"*. He|strong=\"H3068\"* smelled|strong=\"H7306\"* the|strong=\"H7200\"* smell|strong=\"H7381\"* of|strong=\"H1121\"* his|strong=\"H3068\"* clothing, and|strong=\"H1121\"* blessed|strong=\"H1288\"* him|strong=\"H7200\"*, and|strong=\"H1121\"* said," + }, + { + "verseNum": 28, + "text": "God|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* of|strong=\"H7230\"* the|strong=\"H5414\"* dew|strong=\"H2919\"* of|strong=\"H7230\"* the|strong=\"H5414\"* sky|strong=\"H8064\"*," + }, + { + "verseNum": 29, + "text": "Let peoples|strong=\"H5971\"* serve|strong=\"H5647\"* you|strong=\"H1288\"*," + }, + { + "verseNum": 30, + "text": "As|strong=\"H1961\"* soon as|strong=\"H1961\"* Isaac|strong=\"H3327\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* blessing|strong=\"H1288\"* Jacob|strong=\"H3290\"*, and|strong=\"H6440\"* Jacob|strong=\"H3290\"* had|strong=\"H1961\"* just gone|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H6440\"* Isaac|strong=\"H3327\"* his|strong=\"H6440\"* father, Esau|strong=\"H6215\"* his|strong=\"H6440\"* brother came|strong=\"H1961\"* in|strong=\"H6440\"* from|strong=\"H3318\"* his|strong=\"H6440\"* hunting|strong=\"H6718\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"H1931\"* also|strong=\"H1571\"* made|strong=\"H6213\"* savory|strong=\"H4303\"* food|strong=\"H4303\"*, and|strong=\"H1121\"* brought|strong=\"H6213\"* it|strong=\"H1931\"* to|strong=\"H6213\"* his|strong=\"H1288\"* father|strong=\"H1121\"*. He|strong=\"H1931\"* said to|strong=\"H6213\"* his|strong=\"H1288\"* father|strong=\"H1121\"*, “Let|strong=\"H5315\"* my|strong=\"H6965\"* father|strong=\"H1121\"* arise|strong=\"H6965\"*, and|strong=\"H1121\"* eat of|strong=\"H1121\"* his|strong=\"H1288\"* son|strong=\"H1121\"*’s venison|strong=\"H6718\"*, that|strong=\"H1931\"* your|strong=\"H6213\"* soul|strong=\"H5315\"* may|strong=\"H5315\"* bless|strong=\"H1288\"* me|strong=\"H5315\"*.”" + }, + { + "verseNum": 32, + "text": "Isaac|strong=\"H3327\"* his|strong=\"H3327\"* father|strong=\"H1121\"* said to|strong=\"H1121\"* him|strong=\"H1121\"*, “Who|strong=\"H4310\"* are|strong=\"H1121\"* you|strong=\"H4310\"*?”" + }, + { + "verseNum": 33, + "text": "Isaac|strong=\"H3327\"* trembled|strong=\"H2729\"* violently|strong=\"H3966\"*, and|strong=\"H1419\"* said, “Who|strong=\"H4310\"*, then|strong=\"H1961\"*, is|strong=\"H1931\"* he|strong=\"H1931\"* who|strong=\"H4310\"* has|strong=\"H4310\"* taken|strong=\"H1961\"* venison|strong=\"H6718\"*, and|strong=\"H1419\"* brought|strong=\"H1961\"* it|strong=\"H1931\"* to|strong=\"H5704\"* me|strong=\"H1288\"*, and|strong=\"H1419\"* I|strong=\"H5704\"* have|strong=\"H1961\"* eaten of|strong=\"H3605\"* all|strong=\"H3605\"* before|strong=\"H2962\"* you|strong=\"H3605\"* came|strong=\"H1961\"*, and|strong=\"H1419\"* have|strong=\"H1961\"* blessed|strong=\"H1288\"* him|strong=\"H1931\"*? Yes|strong=\"H1571\"*, he|strong=\"H1931\"* will|strong=\"H4310\"* be|strong=\"H1961\"* blessed|strong=\"H1288\"*.”" + }, + { + "verseNum": 34, + "text": "When|strong=\"H8085\"* Esau|strong=\"H6215\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H1697\"* his|strong=\"H8085\"* father, he|strong=\"H5704\"* cried|strong=\"H6817\"* with|strong=\"H1697\"* an|strong=\"H1288\"* exceedingly|strong=\"H3966\"* great|strong=\"H1419\"* and|strong=\"H1419\"* bitter|strong=\"H4751\"* cry|strong=\"H6818\"*, and|strong=\"H1419\"* said|strong=\"H1697\"* to|strong=\"H5704\"* his|strong=\"H8085\"* father, “Bless|strong=\"H1288\"* me|strong=\"H1288\"*, even|strong=\"H1571\"* me|strong=\"H1288\"* also|strong=\"H1571\"*, my|strong=\"H8085\"* father.”" + }, + { + "verseNum": 35, + "text": "He|strong=\"H1293\"* said, “Your|strong=\"H3947\"* brother came with|strong=\"H3947\"* deceit|strong=\"H4820\"*, and|strong=\"H3947\"* has|strong=\"H3947\"* taken|strong=\"H3947\"* away|strong=\"H3947\"* your|strong=\"H3947\"* blessing|strong=\"H1293\"*.”" + }, + { + "verseNum": 36, + "text": "He|strong=\"H3588\"* said|strong=\"H7121\"*, “Isn’t he|strong=\"H3588\"* rightly|strong=\"H3588\"* named|strong=\"H7121\"* Jacob|strong=\"H3290\"*? For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* supplanted|strong=\"H6117\"* me|strong=\"H7121\"* these|strong=\"H2088\"* two|strong=\"H3947\"* times|strong=\"H6471\"*. He|strong=\"H3588\"* took|strong=\"H3947\"* away|strong=\"H3947\"* my|strong=\"H3947\"* birthright|strong=\"H1062\"*. See|strong=\"H2009\"*, now|strong=\"H6258\"* he|strong=\"H3588\"* has|strong=\"H3588\"* taken|strong=\"H3947\"* away|strong=\"H3947\"* my|strong=\"H3947\"* blessing|strong=\"H1293\"*.” He|strong=\"H3588\"* said|strong=\"H7121\"*, “Haven’t you|strong=\"H3588\"* reserved|strong=\"H3947\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"* for|strong=\"H3588\"* me|strong=\"H7121\"*?”" + }, + { + "verseNum": 37, + "text": "Isaac|strong=\"H3327\"* answered|strong=\"H6030\"* Esau|strong=\"H6215\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* have|strong=\"H1121\"* made|strong=\"H6213\"* him|strong=\"H5414\"* your|strong=\"H3605\"* lord|strong=\"H1376\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* brothers|strong=\"H1121\"* I|strong=\"H2005\"* have|strong=\"H1121\"* given|strong=\"H5414\"* to|strong=\"H6213\"* him|strong=\"H5414\"* for|strong=\"H6213\"* servants|strong=\"H5650\"*. I|strong=\"H2005\"* have|strong=\"H1121\"* sustained|strong=\"H5564\"* him|strong=\"H5414\"* with|strong=\"H6213\"* grain|strong=\"H1715\"* and|strong=\"H1121\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*. What|strong=\"H4100\"* then|strong=\"H6030\"* will|strong=\"H5650\"* I|strong=\"H2005\"* do|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H5414\"*, my|strong=\"H5414\"* son|strong=\"H1121\"*?”" + }, + { + "verseNum": 38, + "text": "Esau|strong=\"H6215\"* said to|strong=\"H5375\"* his|strong=\"H5375\"* father, “Do you|strong=\"H1288\"* have|strong=\"H1571\"* just|strong=\"H1571\"* one|strong=\"H1931\"* blessing|strong=\"H1293\"*, my|strong=\"H5375\"* father? Bless|strong=\"H1288\"* me|strong=\"H6963\"*, even|strong=\"H1571\"* me|strong=\"H6963\"* also|strong=\"H1571\"*, my|strong=\"H5375\"* father.” Esau|strong=\"H6215\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* voice|strong=\"H6963\"*, and|strong=\"H6963\"* wept|strong=\"H1058\"*." + }, + { + "verseNum": 39, + "text": "Isaac|strong=\"H3327\"* his|strong=\"H5921\"* father answered|strong=\"H6030\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 40, + "text": "You|strong=\"H5921\"* will|strong=\"H1961\"* live|strong=\"H2421\"* by|strong=\"H5921\"* your|strong=\"H5921\"* sword|strong=\"H2719\"*, and|strong=\"H2719\"* you|strong=\"H5921\"* will|strong=\"H1961\"* serve|strong=\"H5647\"* your|strong=\"H5921\"* brother." + }, + { + "verseNum": 41, + "text": "Esau|strong=\"H6215\"* hated|strong=\"H7852\"* Jacob|strong=\"H3290\"* because|strong=\"H5921\"* of|strong=\"H3117\"* the|strong=\"H5921\"* blessing|strong=\"H1293\"* with|strong=\"H5921\"* which|strong=\"H3117\"* his|strong=\"H5921\"* father blessed|strong=\"H1288\"* him|strong=\"H5921\"*. Esau|strong=\"H6215\"* said in|strong=\"H5921\"* his|strong=\"H5921\"* heart|strong=\"H3820\"*, “The|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H3117\"* mourning for|strong=\"H5921\"* my|strong=\"H5921\"* father are|strong=\"H3117\"* at|strong=\"H5921\"* hand|strong=\"H7126\"*. Then|strong=\"H7126\"* I|strong=\"H3117\"* will|strong=\"H3820\"* kill|strong=\"H2026\"* my|strong=\"H5921\"* brother Jacob|strong=\"H3290\"*.”" + }, + { + "verseNum": 42, + "text": "The|strong=\"H7121\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"*, her|strong=\"H7971\"* elder|strong=\"H1419\"* son|strong=\"H1121\"*, were|strong=\"H1121\"* told|strong=\"H5046\"* to|strong=\"H7971\"* Rebekah|strong=\"H7259\"*. She|strong=\"H7121\"* sent|strong=\"H7971\"* and|strong=\"H1121\"* called|strong=\"H7121\"* Jacob|strong=\"H3290\"*, her|strong=\"H7971\"* younger|strong=\"H6996\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* said|strong=\"H1697\"* to|strong=\"H7971\"* him|strong=\"H7121\"*, “Behold|strong=\"H2009\"*, your|strong=\"H7971\"* brother Esau|strong=\"H6215\"* comforts|strong=\"H5162\"* himself|strong=\"H7121\"* about|strong=\"H1697\"* you|strong=\"H7971\"* by|strong=\"H7121\"* planning to|strong=\"H7971\"* kill|strong=\"H2026\"* you|strong=\"H7971\"*." + }, + { + "verseNum": 43, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, my|strong=\"H8085\"* son|strong=\"H1121\"*, obey|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*. Arise|strong=\"H6965\"*, flee|strong=\"H1272\"* to|strong=\"H8085\"* Laban|strong=\"H3837\"*, my|strong=\"H8085\"* brother, in|strong=\"H8085\"* Haran|strong=\"H2771\"*." + }, + { + "verseNum": 44, + "text": "Stay|strong=\"H3427\"* with|strong=\"H5973\"* him|strong=\"H7725\"* a|strong=\"H3068\"* few days|strong=\"H3117\"*, until|strong=\"H5704\"* your|strong=\"H7725\"* brother’s fury|strong=\"H2534\"* turns|strong=\"H7725\"* away|strong=\"H7725\"*—" + }, + { + "verseNum": 45, + "text": "until|strong=\"H5704\"* your|strong=\"H3947\"* brother’s anger turns|strong=\"H7725\"* away|strong=\"H7971\"* from|strong=\"H4480\"* you|strong=\"H7971\"*, and|strong=\"H7971\"* he|strong=\"H3117\"* forgets|strong=\"H7911\"* what|strong=\"H4100\"* you|strong=\"H7971\"* have|strong=\"H1571\"* done|strong=\"H6213\"* to|strong=\"H5704\"* him|strong=\"H7971\"*. Then|strong=\"H3947\"* I|strong=\"H3117\"* will|strong=\"H1571\"* send|strong=\"H7971\"*, and|strong=\"H7971\"* get|strong=\"H3947\"* you|strong=\"H7971\"* from|strong=\"H4480\"* there|strong=\"H8033\"*. Why|strong=\"H4100\"* should|strong=\"H4100\"* I|strong=\"H3117\"* be|strong=\"H1571\"* bereaved|strong=\"H7921\"* of|strong=\"H3117\"* you|strong=\"H7971\"* both|strong=\"H8147\"* in|strong=\"H6213\"* one|strong=\"H4480\"* day|strong=\"H3117\"*?”" + }, + { + "verseNum": 46, + "text": "Rebekah|strong=\"H7259\"* said to|strong=\"H6440\"* Isaac|strong=\"H3327\"*, “I|strong=\"H4100\"* am weary|strong=\"H6973\"* of|strong=\"H1323\"* my|strong=\"H3947\"* life|strong=\"H2416\"* because|strong=\"H6440\"* of|strong=\"H1323\"* the|strong=\"H6440\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Heth|strong=\"H2845\"*. If Jacob|strong=\"H3290\"* takes|strong=\"H3947\"* a|strong=\"H3068\"* wife|strong=\"H2416\"* of|strong=\"H1323\"* the|strong=\"H6440\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Heth|strong=\"H2845\"*, such as|strong=\"H6440\"* these|strong=\"H3947\"*, of|strong=\"H1323\"* the|strong=\"H6440\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, what|strong=\"H4100\"* good|strong=\"H4100\"* will|strong=\"H3290\"* my|strong=\"H3947\"* life|strong=\"H2416\"* do|strong=\"H4100\"* me|strong=\"H6440\"*?”" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "Isaac|strong=\"H3327\"* called|strong=\"H7121\"* Jacob|strong=\"H3290\"*, blessed|strong=\"H1288\"* him|strong=\"H7121\"*, and|strong=\"H3290\"* commanded|strong=\"H6680\"* him|strong=\"H7121\"*, “You|strong=\"H6680\"* shall|strong=\"H1323\"* not|strong=\"H3808\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife of|strong=\"H1323\"* the|strong=\"H3947\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 2, + "text": "Arise|strong=\"H6965\"*, go|strong=\"H3212\"* to|strong=\"H3212\"* Paddan|strong=\"H6307\"* Aram|strong=\"H6307\"*, to|strong=\"H3212\"* the|strong=\"H3947\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Bethuel|strong=\"H1328\"* your|strong=\"H3947\"* mother’s father. Take|strong=\"H3947\"* a|strong=\"H3068\"* wife from|strong=\"H3947\"* there|strong=\"H8033\"* from|strong=\"H3947\"* the|strong=\"H3947\"* daughters|strong=\"H1323\"* of|strong=\"H1004\"* Laban|strong=\"H3837\"*, your|strong=\"H3947\"* mother’s brother." + }, + { + "verseNum": 3, + "text": "May|strong=\"H1961\"* God Almighty|strong=\"H7706\"* bless|strong=\"H1288\"* you|strong=\"H1288\"*, and|strong=\"H5971\"* make|strong=\"H6509\"* you|strong=\"H1288\"* fruitful|strong=\"H6509\"*, and|strong=\"H5971\"* multiply|strong=\"H7235\"* you|strong=\"H1288\"*, that|strong=\"H5971\"* you|strong=\"H1288\"* may|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* company|strong=\"H6951\"* of|strong=\"H6951\"* peoples|strong=\"H5971\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"H2233\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H5414\"* blessing|strong=\"H1293\"* of|strong=\"H2233\"* Abraham, to|strong=\"H5414\"* you|strong=\"H5414\"* and|strong=\"H2233\"* to|strong=\"H5414\"* your|strong=\"H5414\"* offspring|strong=\"H2233\"* with|strong=\"H1293\"* you|strong=\"H5414\"*, that|strong=\"H5414\"* you|strong=\"H5414\"* may|strong=\"H5414\"* inherit|strong=\"H3423\"* the|strong=\"H5414\"* land where|strong=\"H4033\"* you|strong=\"H5414\"* travel, which God|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* Abraham.”" + }, + { + "verseNum": 5, + "text": "Isaac|strong=\"H3327\"* sent|strong=\"H7971\"* Jacob|strong=\"H3290\"* away|strong=\"H7971\"*. He|strong=\"H7971\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Paddan|strong=\"H6307\"* Aram|strong=\"H6307\"* to|strong=\"H3212\"* Laban|strong=\"H3837\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* Bethuel|strong=\"H1328\"* the|strong=\"H7971\"* Syrian, the|strong=\"H7971\"* brother of|strong=\"H1121\"* Rebekah|strong=\"H7259\"*, Jacob|strong=\"H3290\"*’s and|strong=\"H1121\"* Esau|strong=\"H6215\"*’s mother." + }, + { + "verseNum": 6, + "text": "Now|strong=\"H3588\"* Esau|strong=\"H6215\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Isaac|strong=\"H3327\"* had|strong=\"H3588\"* blessed|strong=\"H1288\"* Jacob|strong=\"H3290\"* and|strong=\"H7971\"* sent|strong=\"H7971\"* him|strong=\"H5921\"* away|strong=\"H7971\"* to|strong=\"H7971\"* Paddan|strong=\"H6307\"* Aram|strong=\"H6307\"*, to|strong=\"H7971\"* take|strong=\"H3947\"* him|strong=\"H5921\"* a|strong=\"H3068\"* wife from|strong=\"H5921\"* there|strong=\"H8033\"*, and|strong=\"H7971\"* that|strong=\"H3588\"* as|strong=\"H3588\"* he|strong=\"H3588\"* blessed|strong=\"H1288\"* him|strong=\"H5921\"* he|strong=\"H3588\"* gave|strong=\"H6680\"* him|strong=\"H5921\"* a|strong=\"H3068\"* command|strong=\"H6680\"*, saying, “You|strong=\"H3588\"* shall|strong=\"H1323\"* not|strong=\"H3808\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife of|strong=\"H1323\"* the|strong=\"H5921\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Canaan|strong=\"H3667\"*;”" + }, + { + "verseNum": 7, + "text": "and|strong=\"H3212\"* that|strong=\"H8085\"* Jacob|strong=\"H3290\"* obeyed|strong=\"H8085\"* his|strong=\"H8085\"* father and|strong=\"H3212\"* his|strong=\"H8085\"* mother, and|strong=\"H3212\"* was|strong=\"H3290\"* gone|strong=\"H3212\"* to|strong=\"H3212\"* Paddan|strong=\"H6307\"* Aram|strong=\"H6307\"*." + }, + { + "verseNum": 8, + "text": "Esau|strong=\"H6215\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H7200\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Canaan|strong=\"H3667\"* didn’t please|strong=\"H7451\"* Isaac|strong=\"H3327\"*, his|strong=\"H7200\"* father." + }, + { + "verseNum": 9, + "text": "So|strong=\"H3947\"* Esau|strong=\"H6215\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Ishmael|strong=\"H3458\"*, and|strong=\"H1121\"* took|strong=\"H3947\"*, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H3212\"* the|strong=\"H5921\"* wives that|strong=\"H1121\"* he|strong=\"H5921\"* had|strong=\"H1121\"*, Mahalath|strong=\"H4258\"* the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Ishmael|strong=\"H3458\"*, Abraham|strong=\"H3947\"*’s son|strong=\"H1121\"*, the|strong=\"H5921\"* sister of|strong=\"H1121\"* Nebaioth|strong=\"H5032\"*, to|strong=\"H3212\"* be|strong=\"H1121\"* his|strong=\"H3947\"* wife." + }, + { + "verseNum": 10, + "text": "Jacob|strong=\"H3290\"* went|strong=\"H3212\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Beersheba, and|strong=\"H3212\"* went|strong=\"H3212\"* toward|strong=\"H3212\"* Haran|strong=\"H2771\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H1931\"* came|strong=\"H6293\"* to|strong=\"H8033\"* a|strong=\"H3068\"* certain place|strong=\"H4725\"*, and|strong=\"H8033\"* stayed|strong=\"H7901\"* there|strong=\"H8033\"* all|strong=\"H7901\"* night|strong=\"H3885\"*, because|strong=\"H3588\"* the|strong=\"H3588\"* sun|strong=\"H8121\"* had|strong=\"H3588\"* set|strong=\"H7760\"*. He|strong=\"H1931\"* took|strong=\"H3947\"* one|strong=\"H1931\"* of|strong=\"H4725\"* the|strong=\"H3588\"* stones of|strong=\"H4725\"* the|strong=\"H3588\"* place|strong=\"H4725\"*, and|strong=\"H8033\"* put|strong=\"H7760\"* it|strong=\"H7760\"* under his|strong=\"H7760\"* head|strong=\"H4763\"*, and|strong=\"H8033\"* lay|strong=\"H7901\"* down|strong=\"H7901\"* in|strong=\"H7901\"* that|strong=\"H3588\"* place|strong=\"H4725\"* to|strong=\"H8033\"* sleep|strong=\"H7901\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H4397\"* dreamed|strong=\"H2492\"* and|strong=\"H8064\"* saw|strong=\"H2009\"* a|strong=\"H3068\"* stairway set|strong=\"H5324\"* upon|strong=\"H5927\"* the|strong=\"H5927\"* earth|strong=\"H5927\"*, and|strong=\"H8064\"* its|strong=\"H5927\"* top|strong=\"H7218\"* reached|strong=\"H5060\"* to|strong=\"H3381\"* heaven|strong=\"H8064\"*. Behold|strong=\"H2009\"*, the|strong=\"H5927\"* angels|strong=\"H4397\"* of|strong=\"H7218\"* God|strong=\"H8064\"* were|strong=\"H8064\"* ascending|strong=\"H5927\"* and|strong=\"H8064\"* descending|strong=\"H3381\"* on|strong=\"H5927\"* it|strong=\"H3381\"*." + }, + { + "verseNum": 13, + "text": "Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* stood|strong=\"H5324\"* above|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H3068\"* said, “I|strong=\"H5414\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Abraham your|strong=\"H3068\"* father, and|strong=\"H3068\"* the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Isaac|strong=\"H3327\"*. I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* the|strong=\"H5921\"* land you|strong=\"H5414\"* lie|strong=\"H7901\"* on|strong=\"H5921\"* to|strong=\"H3068\"* you|strong=\"H5414\"* and|strong=\"H3068\"* to|strong=\"H3068\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*." + }, + { + "verseNum": 14, + "text": "Your|strong=\"H3605\"* offspring|strong=\"H2233\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H3605\"* dust|strong=\"H6083\"* of|strong=\"H2233\"* the|strong=\"H3605\"* earth|strong=\"H6083\"*, and|strong=\"H3220\"* you|strong=\"H3605\"* will|strong=\"H1961\"* spread|strong=\"H6555\"* abroad|strong=\"H6555\"* to|strong=\"H1961\"* the|strong=\"H3605\"* west|strong=\"H3220\"*, and|strong=\"H3220\"* to|strong=\"H1961\"* the|strong=\"H3605\"* east|strong=\"H6924\"*, and|strong=\"H3220\"* to|strong=\"H1961\"* the|strong=\"H3605\"* north|strong=\"H6828\"*, and|strong=\"H3220\"* to|strong=\"H1961\"* the|strong=\"H3605\"* south|strong=\"H5045\"*. In|strong=\"H3220\"* you|strong=\"H3605\"* and|strong=\"H3220\"* in|strong=\"H3220\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H2233\"* the|strong=\"H3605\"* earth|strong=\"H6083\"* will|strong=\"H1961\"* be|strong=\"H1961\"* blessed|strong=\"H1288\"*." + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H3588\"* am with|strong=\"H5973\"* you|strong=\"H3588\"*, and|strong=\"H7725\"* will|strong=\"H3808\"* keep|strong=\"H8104\"* you|strong=\"H3588\"*, wherever|strong=\"H3605\"* you|strong=\"H3588\"* go|strong=\"H3212\"*, and|strong=\"H7725\"* will|strong=\"H3808\"* bring|strong=\"H7725\"* you|strong=\"H3588\"* again|strong=\"H7725\"* into|strong=\"H7725\"* this|strong=\"H2063\"* land. For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* leave|strong=\"H5800\"* you|strong=\"H3588\"* until|strong=\"H5704\"* I|strong=\"H3588\"* have|strong=\"H3605\"* done|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3605\"* spoken|strong=\"H1696\"* of|strong=\"H3605\"* to|strong=\"H1696\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 16, + "text": "Jacob|strong=\"H3290\"* awakened|strong=\"H3364\"* out|strong=\"H3045\"* of|strong=\"H3068\"* his|strong=\"H3068\"* sleep|strong=\"H8142\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* said, “Surely|strong=\"H3426\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H3068\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, and|strong=\"H3068\"* I|strong=\"H3045\"* didn’t know|strong=\"H3045\"* it|strong=\"H3045\"*.”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H3588\"* was|strong=\"H1004\"* afraid|strong=\"H3372\"*, and|strong=\"H8064\"* said, “How|strong=\"H4100\"* awesome|strong=\"H3372\"* this|strong=\"H2088\"* place|strong=\"H4725\"* is|strong=\"H2088\"*! This|strong=\"H2088\"* is|strong=\"H2088\"* none other|strong=\"H2088\"* than|strong=\"H3588\"* God|strong=\"H8064\"*’s house|strong=\"H1004\"*, and|strong=\"H8064\"* this|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H3588\"* gate|strong=\"H8179\"* of|strong=\"H1004\"* heaven|strong=\"H8064\"*.”" + }, + { + "verseNum": 18, + "text": "Jacob|strong=\"H3290\"* rose|strong=\"H7925\"* up|strong=\"H7760\"* early|strong=\"H7925\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*, and|strong=\"H7218\"* took|strong=\"H3947\"* the|strong=\"H5921\"* stone that|strong=\"H8081\"* he|strong=\"H5921\"* had|strong=\"H3290\"* put|strong=\"H7760\"* under|strong=\"H5921\"* his|strong=\"H7760\"* head|strong=\"H7218\"*, and|strong=\"H7218\"* set|strong=\"H7760\"* it|strong=\"H7760\"* up|strong=\"H7760\"* for|strong=\"H5921\"* a|strong=\"H3068\"* pillar|strong=\"H4676\"*, and|strong=\"H7218\"* poured|strong=\"H3332\"* oil|strong=\"H8081\"* on|strong=\"H5921\"* its|strong=\"H5921\"* top|strong=\"H7218\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H1931\"* called|strong=\"H7121\"* the|strong=\"H7121\"* name|strong=\"H8034\"* of|strong=\"H5892\"* that|strong=\"H1931\"* place|strong=\"H4725\"* Bethel|strong=\"H1008\"*, but|strong=\"H1931\"* the|strong=\"H7121\"* name|strong=\"H8034\"* of|strong=\"H5892\"* the|strong=\"H7121\"* city|strong=\"H5892\"* was|strong=\"H8034\"* Luz|strong=\"H3870\"* at|strong=\"H5892\"* the|strong=\"H7121\"* first|strong=\"H7223\"*." + }, + { + "verseNum": 20, + "text": "Jacob|strong=\"H3290\"* vowed|strong=\"H5087\"* a|strong=\"H3068\"* vow|strong=\"H5088\"*, saying, “If|strong=\"H1961\"* God|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H1980\"* me|strong=\"H5414\"*, and|strong=\"H1980\"* will|strong=\"H1961\"* keep|strong=\"H8104\"* me|strong=\"H5414\"* in|strong=\"H1980\"* this|strong=\"H2088\"* way|strong=\"H1870\"* that|strong=\"H5414\"* I|strong=\"H5414\"* go|strong=\"H1980\"*, and|strong=\"H1980\"* will|strong=\"H1961\"* give|strong=\"H5414\"* me|strong=\"H5414\"* bread|strong=\"H3899\"* to|strong=\"H1980\"* eat|strong=\"H3899\"*, and|strong=\"H1980\"* clothing|strong=\"H3847\"* to|strong=\"H1980\"* put|strong=\"H5414\"* on|strong=\"H3847\"*," + }, + { + "verseNum": 21, + "text": "so|strong=\"H1961\"* that|strong=\"H3068\"* I|strong=\"H3068\"* come|strong=\"H1961\"* again|strong=\"H7725\"* to|strong=\"H7725\"* my|strong=\"H3068\"* father’s house|strong=\"H1004\"* in|strong=\"H3068\"* peace|strong=\"H7965\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* my|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 22, + "text": "then|strong=\"H1961\"* this|strong=\"H2063\"* stone, which|strong=\"H1004\"* I|strong=\"H5414\"* have|strong=\"H1961\"* set|strong=\"H7760\"* up|strong=\"H5414\"* for|strong=\"H1004\"* a|strong=\"H3068\"* pillar|strong=\"H4676\"*, will|strong=\"H1961\"* be|strong=\"H1961\"* God|strong=\"H5414\"*’s house|strong=\"H1004\"*. Of|strong=\"H1004\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H5414\"* will|strong=\"H1961\"* give|strong=\"H5414\"* me|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H1961\"* surely|strong=\"H5414\"* give|strong=\"H5414\"* a|strong=\"H3068\"* tenth|strong=\"H6237\"* to|strong=\"H1961\"* you|strong=\"H5414\"*.”" + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H5375\"* Jacob|strong=\"H3290\"* went|strong=\"H3212\"* on|strong=\"H3212\"* his|strong=\"H5375\"* journey|strong=\"H7272\"*, and|strong=\"H1121\"* came|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H5375\"* land of|strong=\"H1121\"* the|strong=\"H5375\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5375\"* east|strong=\"H6924\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H1931\"* looked|strong=\"H7200\"*, and|strong=\"H1419\"* saw|strong=\"H7200\"* a|strong=\"H3068\"* well in|strong=\"H5921\"* the|strong=\"H5921\"* field|strong=\"H7704\"*, and|strong=\"H1419\"* saw|strong=\"H7200\"* three|strong=\"H7969\"* flocks|strong=\"H6629\"* of|strong=\"H7704\"* sheep|strong=\"H6629\"* lying|strong=\"H7257\"* there|strong=\"H8033\"* by|strong=\"H5921\"* it|strong=\"H1931\"*. For|strong=\"H3588\"* out|strong=\"H4480\"* of|strong=\"H7704\"* that|strong=\"H3588\"* well they|strong=\"H3588\"* watered|strong=\"H8248\"* the|strong=\"H5921\"* flocks|strong=\"H6629\"*. The|strong=\"H5921\"* stone on|strong=\"H5921\"* the|strong=\"H5921\"* well’s mouth|strong=\"H6310\"* was|strong=\"H1931\"* large|strong=\"H1419\"*." + }, + { + "verseNum": 3, + "text": "There|strong=\"H8033\"* all|strong=\"H3605\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"* were|strong=\"H6629\"* gathered. They|strong=\"H8033\"* rolled|strong=\"H1556\"* the|strong=\"H3605\"* stone from|strong=\"H7725\"* the|strong=\"H3605\"* well’s mouth|strong=\"H6310\"*, and|strong=\"H7725\"* watered|strong=\"H8248\"* the|strong=\"H3605\"* sheep|strong=\"H6629\"*, and|strong=\"H7725\"* put|strong=\"H7725\"* the|strong=\"H3605\"* stone back|strong=\"H7725\"* on|strong=\"H5921\"* the|strong=\"H3605\"* well’s mouth|strong=\"H6310\"* in|strong=\"H5921\"* its|strong=\"H3605\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 4, + "text": "Jacob|strong=\"H3290\"* said to|strong=\"H3290\"* them, “My|strong=\"H3290\"* relatives, where are you from|strong=\"H3290\"*?”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H1121\"* said to|strong=\"H1121\"* them|strong=\"H1121\"*, “Do you|strong=\"H3045\"* know|strong=\"H3045\"* Laban|strong=\"H3837\"*, the|strong=\"H3045\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nahor|strong=\"H5152\"*?”" + }, + { + "verseNum": 6, + "text": "He|strong=\"H2009\"* said to|strong=\"H1323\"* them, “Is|strong=\"H2009\"* it|strong=\"H5973\"* well|strong=\"H7965\"* with|strong=\"H5973\"* him|strong=\"H5973\"*?”" + }, + { + "verseNum": 7, + "text": "He|strong=\"H3117\"* said, “Behold|strong=\"H2005\"*, it|strong=\"H3117\"* is|strong=\"H3117\"* still|strong=\"H5750\"* the|strong=\"H3117\"* middle of|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"*, not|strong=\"H3808\"* time|strong=\"H6256\"* to|strong=\"H3212\"* gather the|strong=\"H3117\"* livestock|strong=\"H4735\"* together. Water|strong=\"H8248\"* the|strong=\"H3117\"* sheep|strong=\"H6629\"*, and|strong=\"H3117\"* go|strong=\"H3212\"* and|strong=\"H3117\"* feed|strong=\"H7462\"* them|strong=\"H8248\"*.”" + }, + { + "verseNum": 8, + "text": "They|strong=\"H3808\"* said|strong=\"H6310\"*, “We|strong=\"H5704\"* can|strong=\"H3201\"*’t, until|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"* are|strong=\"H6310\"* gathered together|strong=\"H5921\"*, and|strong=\"H6629\"* they|strong=\"H3808\"* roll|strong=\"H1556\"* the|strong=\"H3605\"* stone from|strong=\"H5921\"* the|strong=\"H3605\"* well’s mouth|strong=\"H6310\"*. Then|strong=\"H3808\"* we|strong=\"H3068\"* will|strong=\"H3808\"* water|strong=\"H8248\"* the|strong=\"H3605\"* sheep|strong=\"H6629\"*.”" + }, + { + "verseNum": 9, + "text": "While|strong=\"H5750\"* he|strong=\"H1931\"* was|strong=\"H1931\"* yet|strong=\"H5750\"* speaking|strong=\"H1696\"* with|strong=\"H5973\"* them|strong=\"H7462\"*, Rachel|strong=\"H7354\"* came with|strong=\"H5973\"* her|strong=\"H1931\"* father’s sheep|strong=\"H6629\"*, for|strong=\"H3588\"* she|strong=\"H1931\"* kept|strong=\"H7462\"* them|strong=\"H7462\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H1961\"* Jacob|strong=\"H3290\"* saw|strong=\"H7200\"* Rachel|strong=\"H7354\"* the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Laban|strong=\"H3837\"*, his|strong=\"H5921\"* mother’s brother, and|strong=\"H6629\"* the|strong=\"H5921\"* sheep|strong=\"H6629\"* of|strong=\"H1323\"* Laban|strong=\"H3837\"*, his|strong=\"H5921\"* mother’s brother, Jacob|strong=\"H3290\"* went|strong=\"H3290\"* near|strong=\"H5066\"*, and|strong=\"H6629\"* rolled|strong=\"H1556\"* the|strong=\"H5921\"* stone from|strong=\"H5921\"* the|strong=\"H5921\"* well’s mouth|strong=\"H6310\"*, and|strong=\"H6629\"* watered|strong=\"H8248\"* the|strong=\"H5921\"* flock|strong=\"H6629\"* of|strong=\"H1323\"* Laban|strong=\"H3837\"* his|strong=\"H5921\"* mother’s brother." + }, + { + "verseNum": 11, + "text": "Jacob|strong=\"H3290\"* kissed|strong=\"H5401\"* Rachel|strong=\"H7354\"*, and|strong=\"H6963\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* voice|strong=\"H6963\"*, and|strong=\"H6963\"* wept|strong=\"H1058\"*." + }, + { + "verseNum": 12, + "text": "Jacob|strong=\"H3290\"* told|strong=\"H5046\"* Rachel|strong=\"H7354\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* her|strong=\"H5046\"* father|strong=\"H1121\"*’s relative, and|strong=\"H1121\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* Rebekah|strong=\"H7259\"*’s son|strong=\"H1121\"*. She|strong=\"H1931\"* ran|strong=\"H7323\"* and|strong=\"H1121\"* told|strong=\"H5046\"* her|strong=\"H5046\"* father|strong=\"H1121\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H1961\"* Laban|strong=\"H3837\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* news|strong=\"H8088\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*, his|strong=\"H3605\"* sister’s son|strong=\"H1121\"*, he|strong=\"H3605\"* ran|strong=\"H7323\"* to|strong=\"H1961\"* meet|strong=\"H7125\"* Jacob|strong=\"H3290\"*, and|strong=\"H1121\"* embraced|strong=\"H2263\"* him|strong=\"H3605\"*, and|strong=\"H1121\"* kissed|strong=\"H5401\"* him|strong=\"H3605\"*, and|strong=\"H1121\"* brought|strong=\"H1961\"* him|strong=\"H3605\"* to|strong=\"H1961\"* his|strong=\"H3605\"* house|strong=\"H1004\"*. Jacob|strong=\"H3290\"* told|strong=\"H5608\"* Laban|strong=\"H3837\"* all|strong=\"H3605\"* these|strong=\"H8085\"* things|strong=\"H1697\"*." + }, + { + "verseNum": 14, + "text": "Laban|strong=\"H3837\"* said to|strong=\"H3117\"* him|strong=\"H5973\"*, “Surely you|strong=\"H3117\"* are|strong=\"H3117\"* my|strong=\"H5973\"* bone|strong=\"H6106\"* and|strong=\"H3117\"* my|strong=\"H5973\"* flesh|strong=\"H1320\"*.” Jacob stayed|strong=\"H3427\"* with|strong=\"H5973\"* him|strong=\"H5973\"* for|strong=\"H3427\"* a|strong=\"H3068\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 15, + "text": "Laban|strong=\"H3837\"* said to|strong=\"H5046\"* Jacob|strong=\"H3290\"*, “Because|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H4100\"* my|strong=\"H5046\"* relative, should|strong=\"H4100\"* you|strong=\"H3588\"* therefore|strong=\"H3588\"* serve|strong=\"H5647\"* me|strong=\"H5046\"* for|strong=\"H3588\"* nothing|strong=\"H2600\"*? Tell|strong=\"H5046\"* me|strong=\"H5046\"*, what|strong=\"H4100\"* will|strong=\"H3290\"* your|strong=\"H3588\"* wages|strong=\"H4909\"* be|strong=\"H3290\"*?”" + }, + { + "verseNum": 16, + "text": "Laban|strong=\"H3837\"* had|strong=\"H7354\"* two|strong=\"H8147\"* daughters|strong=\"H1323\"*. The|strong=\"H8034\"* name|strong=\"H8034\"* of|strong=\"H1323\"* the|strong=\"H8034\"* elder|strong=\"H1419\"* was|strong=\"H8034\"* Leah|strong=\"H3812\"*, and|strong=\"H1419\"* the|strong=\"H8034\"* name|strong=\"H8034\"* of|strong=\"H1323\"* the|strong=\"H8034\"* younger|strong=\"H6996\"* was|strong=\"H8034\"* Rachel|strong=\"H7354\"*." + }, + { + "verseNum": 17, + "text": "Leah|strong=\"H3812\"*’s eyes|strong=\"H5869\"* were|strong=\"H1961\"* weak|strong=\"H7390\"*, but|strong=\"H1961\"* Rachel|strong=\"H7354\"* was|strong=\"H1961\"* beautiful|strong=\"H3303\"* in|strong=\"H5869\"* form|strong=\"H8389\"* and|strong=\"H5869\"* attractive|strong=\"H3303\"*." + }, + { + "verseNum": 18, + "text": "Jacob|strong=\"H3290\"* loved Rachel|strong=\"H7354\"*. He|strong=\"H8141\"* said, “I|strong=\"H8141\"* will|strong=\"H3290\"* serve|strong=\"H5647\"* you|strong=\"H5647\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* for|strong=\"H8141\"* Rachel|strong=\"H7354\"*, your|strong=\"H5647\"* younger|strong=\"H6996\"* daughter|strong=\"H1323\"*.”" + }, + { + "verseNum": 19, + "text": "Laban|strong=\"H3837\"* said, “It|strong=\"H5414\"* is|strong=\"H2896\"* better|strong=\"H2896\"* that|strong=\"H5414\"* I|strong=\"H5414\"* give|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H5414\"* you|strong=\"H5414\"*, than|strong=\"H2896\"* that|strong=\"H5414\"* I|strong=\"H5414\"* should give|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H5414\"* another man|strong=\"H2896\"*. Stay|strong=\"H3427\"* with|strong=\"H3427\"* me|strong=\"H5414\"*.”" + }, + { + "verseNum": 20, + "text": "Jacob|strong=\"H3290\"* served|strong=\"H5647\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* for|strong=\"H3117\"* Rachel|strong=\"H7354\"*. They|strong=\"H3117\"* seemed|strong=\"H5869\"* to|strong=\"H1961\"* him|strong=\"H5647\"* but|strong=\"H1961\"* a|strong=\"H3068\"* few days|strong=\"H3117\"*, for|strong=\"H3117\"* the|strong=\"H5647\"* love he|strong=\"H3117\"* had|strong=\"H1961\"* for|strong=\"H3117\"* her|strong=\"H3290\"*." + }, + { + "verseNum": 21, + "text": "Jacob|strong=\"H3290\"* said to|strong=\"H3117\"* Laban|strong=\"H3837\"*, “Give|strong=\"H3051\"* me|strong=\"H3051\"* my|strong=\"H3290\"* wife, for|strong=\"H3588\"* my|strong=\"H3290\"* days|strong=\"H3117\"* are|strong=\"H3117\"* fulfilled|strong=\"H4390\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H3117\"* go in|strong=\"H3117\"* to|strong=\"H3117\"* her|strong=\"H4390\"*.”" + }, + { + "verseNum": 22, + "text": "Laban|strong=\"H3837\"* gathered|strong=\"H6213\"* together all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H6213\"* of|strong=\"H4725\"* the|strong=\"H3605\"* place|strong=\"H4725\"*, and|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H4960\"*." + }, + { + "verseNum": 23, + "text": "In|strong=\"H1961\"* the|strong=\"H3947\"* evening|strong=\"H6153\"*, he|strong=\"H6153\"* took|strong=\"H3947\"* Leah|strong=\"H3812\"* his|strong=\"H3947\"* daughter|strong=\"H1323\"*, and|strong=\"H1323\"* brought|strong=\"H3947\"* her|strong=\"H3947\"* to|strong=\"H1961\"* Jacob. He|strong=\"H6153\"* went|strong=\"H3812\"* in|strong=\"H1961\"* to|strong=\"H1961\"* her|strong=\"H3947\"*." + }, + { + "verseNum": 24, + "text": "Laban|strong=\"H3837\"* gave|strong=\"H5414\"* Zilpah|strong=\"H2153\"* his|strong=\"H5414\"* servant|strong=\"H8198\"* to|strong=\"H5414\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"* Leah|strong=\"H3812\"* for|strong=\"H5414\"* a|strong=\"H3068\"* servant|strong=\"H8198\"*." + }, + { + "verseNum": 25, + "text": "In|strong=\"H6213\"* the|strong=\"H6213\"* morning|strong=\"H1242\"*, behold|strong=\"H2009\"*, it|strong=\"H1931\"* was|strong=\"H1961\"* Leah|strong=\"H3812\"*! He|strong=\"H1931\"* said to|strong=\"H1961\"* Laban|strong=\"H3837\"*, “What|strong=\"H4100\"* is|strong=\"H1931\"* this|strong=\"H2063\"* you|strong=\"H6213\"* have|strong=\"H1961\"* done|strong=\"H6213\"* to|strong=\"H1961\"* me|strong=\"H6213\"*? Didn’t I|strong=\"H2009\"* serve|strong=\"H5647\"* with|strong=\"H5973\"* you|strong=\"H6213\"* for|strong=\"H6213\"* Rachel|strong=\"H7354\"*? Why|strong=\"H4100\"* then|strong=\"H1961\"* have|strong=\"H1961\"* you|strong=\"H6213\"* deceived|strong=\"H7411\"* me|strong=\"H6213\"*?”" + }, + { + "verseNum": 26, + "text": "Laban|strong=\"H3837\"* said|strong=\"H3651\"*, “It|strong=\"H5414\"* is|strong=\"H3651\"* not|strong=\"H3808\"* done|strong=\"H6213\"* so|strong=\"H3651\"* in|strong=\"H6213\"* our|strong=\"H5414\"* place|strong=\"H4725\"*, to|strong=\"H6213\"* give|strong=\"H5414\"* the|strong=\"H6440\"* younger|strong=\"H6810\"* before|strong=\"H6440\"* the|strong=\"H6440\"* firstborn|strong=\"H1067\"*." + }, + { + "verseNum": 27, + "text": "Fulfill|strong=\"H4390\"* the|strong=\"H5414\"* week|strong=\"H7620\"* of|strong=\"H8141\"* this|strong=\"H2063\"* one|strong=\"H2063\"*, and|strong=\"H8141\"* we|strong=\"H3068\"* will|strong=\"H1571\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H5414\"* other|strong=\"H5750\"* also|strong=\"H1571\"* for|strong=\"H5414\"* the|strong=\"H5414\"* service|strong=\"H5656\"* which you|strong=\"H5414\"* will|strong=\"H1571\"* serve|strong=\"H5647\"* with|strong=\"H4390\"* me|strong=\"H5414\"* for|strong=\"H5414\"* seven|strong=\"H7651\"* more|strong=\"H5750\"* years|strong=\"H8141\"*.”" + }, + { + "verseNum": 28, + "text": "Jacob|strong=\"H3290\"* did|strong=\"H6213\"* so|strong=\"H3651\"*, and|strong=\"H6213\"* fulfilled|strong=\"H4390\"* her|strong=\"H5414\"* week|strong=\"H7620\"*. He|strong=\"H3651\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* Rachel|strong=\"H7354\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"* as|strong=\"H6213\"* wife." + }, + { + "verseNum": 29, + "text": "Laban|strong=\"H3837\"* gave|strong=\"H5414\"* Bilhah|strong=\"H1090\"*, his|strong=\"H5414\"* servant|strong=\"H8198\"*, to|strong=\"H5414\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"* Rachel|strong=\"H7354\"* to|strong=\"H5414\"* be|strong=\"H5414\"* her|strong=\"H5414\"* servant|strong=\"H8198\"*." + }, + { + "verseNum": 30, + "text": "He|strong=\"H8141\"* went|strong=\"H3812\"* in|strong=\"H8141\"* also|strong=\"H1571\"* to|strong=\"H5973\"* Rachel|strong=\"H7354\"*, and|strong=\"H8141\"* he|strong=\"H8141\"* loved also|strong=\"H1571\"* Rachel|strong=\"H7354\"* more|strong=\"H5750\"* than|strong=\"H5973\"* Leah|strong=\"H3812\"*, and|strong=\"H8141\"* served|strong=\"H5647\"* with|strong=\"H5973\"* him|strong=\"H5973\"* seven|strong=\"H7651\"* more|strong=\"H5750\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 31, + "text": "Yahweh|strong=\"H3068\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Leah|strong=\"H3812\"* was|strong=\"H3068\"* hated|strong=\"H8130\"*, and|strong=\"H3068\"* he|strong=\"H3588\"* opened|strong=\"H6605\"* her|strong=\"H7200\"* womb|strong=\"H7358\"*, but|strong=\"H3588\"* Rachel|strong=\"H7354\"* was|strong=\"H3068\"* barren|strong=\"H6135\"*." + }, + { + "verseNum": 32, + "text": "Leah|strong=\"H3812\"* conceived|strong=\"H2029\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* she|strong=\"H3588\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Reuben|strong=\"H7205\"*. For|strong=\"H3588\"* she|strong=\"H3588\"* said|strong=\"H7121\"*, “Because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* looked|strong=\"H7200\"* at|strong=\"H3068\"* my|strong=\"H3068\"* affliction|strong=\"H6040\"*; for|strong=\"H3588\"* now|strong=\"H6258\"* my|strong=\"H3068\"* husband will|strong=\"H3068\"* love me|strong=\"H7200\"*.”" + }, + { + "verseNum": 33, + "text": "She|strong=\"H3588\"* conceived|strong=\"H2029\"* again|strong=\"H5750\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* said|strong=\"H7121\"*, “Because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* hated|strong=\"H8130\"*, he|strong=\"H3588\"* has|strong=\"H3068\"* therefore|strong=\"H1571\"* given|strong=\"H5414\"* me|strong=\"H5414\"* this|strong=\"H2088\"* son|strong=\"H1121\"* also|strong=\"H1571\"*.” She|strong=\"H3588\"* named|strong=\"H7121\"* him|strong=\"H5414\"* Simeon|strong=\"H8095\"*." + }, + { + "verseNum": 34, + "text": "She|strong=\"H3588\"* conceived|strong=\"H2029\"* again|strong=\"H5750\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*. She|strong=\"H3588\"* said|strong=\"H7121\"*, “Now|strong=\"H6258\"* this|strong=\"H3651\"* time|strong=\"H6471\"* my|strong=\"H5921\"* husband will|strong=\"H1121\"* be|strong=\"H5750\"* joined|strong=\"H3867\"* to|strong=\"H5921\"* me|strong=\"H5921\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1121\"* borne|strong=\"H3205\"* him|strong=\"H3205\"* three|strong=\"H7969\"* sons|strong=\"H1121\"*.” Therefore|strong=\"H3651\"* his|strong=\"H7121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Levi|strong=\"H3878\"*." + }, + { + "verseNum": 35, + "text": "She|strong=\"H7121\"* conceived|strong=\"H2029\"* again|strong=\"H5750\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*. She|strong=\"H7121\"* said|strong=\"H7121\"*, “This|strong=\"H3651\"* time|strong=\"H6471\"* I|strong=\"H5921\"* will|strong=\"H3068\"* praise|strong=\"H3034\"* Yahweh|strong=\"H3068\"*.” Therefore|strong=\"H3651\"* she|strong=\"H7121\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Judah|strong=\"H3063\"*. Then|strong=\"H3651\"* she|strong=\"H7121\"* stopped|strong=\"H5975\"* bearing|strong=\"H3205\"*." + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* Rachel|strong=\"H7354\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* she|strong=\"H3588\"* bore|strong=\"H3205\"* Jacob|strong=\"H3290\"* no|strong=\"H3808\"* children|strong=\"H1121\"*, Rachel|strong=\"H7354\"* envied|strong=\"H7065\"* her|strong=\"H7200\"* sister. She|strong=\"H3588\"* said to|strong=\"H4191\"* Jacob|strong=\"H3290\"*, “Give|strong=\"H3051\"* me|strong=\"H7200\"* children|strong=\"H1121\"*, or|strong=\"H3808\"* else|strong=\"H3808\"* I|strong=\"H3588\"* will|strong=\"H1121\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 2, + "text": "Jacob|strong=\"H3290\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* Rachel|strong=\"H7354\"*, and|strong=\"H3290\"* he|strong=\"H4480\"* said, “Am I|strong=\"H8478\"* in|strong=\"H8478\"* God’s place|strong=\"H8478\"*, who has|strong=\"H3290\"* withheld|strong=\"H4513\"* from|strong=\"H4480\"* you|strong=\"H4480\"* the|strong=\"H4480\"* fruit|strong=\"H6529\"* of|strong=\"H4480\"* the|strong=\"H4480\"* womb?”" + }, + { + "verseNum": 3, + "text": "She|strong=\"H5921\"* said, “Behold|strong=\"H2009\"*, my|strong=\"H5921\"* maid Bilhah|strong=\"H1090\"*. Go|strong=\"H2009\"* in|strong=\"H5921\"* to|strong=\"H5921\"* her|strong=\"H5921\"*, that|strong=\"H4480\"* she|strong=\"H5921\"* may|strong=\"H1571\"* bear|strong=\"H3205\"* on|strong=\"H5921\"* my|strong=\"H5921\"* knees|strong=\"H1290\"*, and|strong=\"H1129\"* I|strong=\"H2009\"* also|strong=\"H1571\"* may|strong=\"H1571\"* obtain|strong=\"H1129\"* children|strong=\"H3205\"* by|strong=\"H5921\"* her|strong=\"H5921\"*.”" + }, + { + "verseNum": 4, + "text": "She gave|strong=\"H5414\"* him|strong=\"H5414\"* Bilhah|strong=\"H1090\"* her|strong=\"H5414\"* servant|strong=\"H8198\"* as|strong=\"H5414\"* wife, and|strong=\"H3290\"* Jacob|strong=\"H3290\"* went|strong=\"H3290\"* in|strong=\"H5414\"* to|strong=\"H5414\"* her|strong=\"H5414\"*." + }, + { + "verseNum": 5, + "text": "Bilhah|strong=\"H1090\"* conceived|strong=\"H2029\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* Jacob|strong=\"H3290\"* a|strong=\"H3068\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 6, + "text": "Rachel|strong=\"H7354\"* said|strong=\"H7121\"*, “God|strong=\"H5414\"* has|strong=\"H1571\"* judged|strong=\"H1777\"* me|strong=\"H5414\"*, and|strong=\"H1121\"* has|strong=\"H1571\"* also|strong=\"H1571\"* heard|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*, and|strong=\"H1121\"* has|strong=\"H1571\"* given|strong=\"H5414\"* me|strong=\"H5414\"* a|strong=\"H3068\"* son|strong=\"H1121\"*.” Therefore|strong=\"H3651\"* she|strong=\"H7121\"* called|strong=\"H7121\"* his|strong=\"H5414\"* name|strong=\"H8034\"* Dan|strong=\"H1835\"*." + }, + { + "verseNum": 7, + "text": "Bilhah|strong=\"H1090\"*, Rachel|strong=\"H7354\"*’s servant|strong=\"H8198\"*, conceived|strong=\"H2029\"* again|strong=\"H5750\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* Jacob|strong=\"H3290\"* a|strong=\"H3068\"* second|strong=\"H8145\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 8, + "text": "Rachel|strong=\"H7354\"* said|strong=\"H7121\"*, “I|strong=\"H3201\"* have|strong=\"H1571\"* wrestled|strong=\"H6617\"* with|strong=\"H5973\"* my|strong=\"H7121\"* sister with|strong=\"H5973\"* mighty wrestlings|strong=\"H5319\"*, and|strong=\"H8034\"* have|strong=\"H1571\"* prevailed|strong=\"H3201\"*.” She|strong=\"H7121\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Naphtali|strong=\"H5321\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"H3588\"* Leah|strong=\"H3812\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* she|strong=\"H3588\"* had|strong=\"H3205\"* finished bearing|strong=\"H3205\"*, she|strong=\"H3588\"* took|strong=\"H3947\"* Zilpah|strong=\"H2153\"*, her|strong=\"H5414\"* servant|strong=\"H8198\"*, and|strong=\"H7200\"* gave|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H5414\"* Jacob|strong=\"H3290\"* as|strong=\"H3588\"* a|strong=\"H3068\"* wife." + }, + { + "verseNum": 10, + "text": "Zilpah|strong=\"H2153\"*, Leah|strong=\"H3812\"*’s servant|strong=\"H8198\"*, bore|strong=\"H3205\"* Jacob|strong=\"H3290\"* a|strong=\"H3068\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 11, + "text": "Leah|strong=\"H3812\"* said|strong=\"H7121\"*, “How fortunate|strong=\"H1409\"*!” She|strong=\"H7121\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Gad|strong=\"H1410\"*." + }, + { + "verseNum": 12, + "text": "Zilpah|strong=\"H2153\"*, Leah|strong=\"H3812\"*’s servant|strong=\"H8198\"*, bore|strong=\"H3205\"* Jacob|strong=\"H3290\"* a|strong=\"H3068\"* second|strong=\"H8145\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 13, + "text": "Leah|strong=\"H3812\"* said|strong=\"H7121\"*, “Happy am I|strong=\"H3588\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* daughters|strong=\"H1323\"* will|strong=\"H1323\"* call|strong=\"H7121\"* me|strong=\"H7121\"* happy.” She|strong=\"H3588\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Asher." + }, + { + "verseNum": 14, + "text": "Reuben|strong=\"H7205\"* went|strong=\"H3212\"* in|strong=\"H3117\"* the|strong=\"H5414\"* days|strong=\"H3117\"* of|strong=\"H1121\"* wheat|strong=\"H2406\"* harvest|strong=\"H7105\"*, and|strong=\"H1121\"* found|strong=\"H4672\"* mandrakes|strong=\"H1736\"* in|strong=\"H3117\"* the|strong=\"H5414\"* field|strong=\"H7704\"*, and|strong=\"H1121\"* brought|strong=\"H3212\"* them|strong=\"H5414\"* to|strong=\"H3212\"* his|strong=\"H5414\"* mother, Leah|strong=\"H3812\"*. Then|strong=\"H5414\"* Rachel|strong=\"H7354\"* said to|strong=\"H3212\"* Leah|strong=\"H3812\"*, “Please|strong=\"H4994\"* give|strong=\"H5414\"* me|strong=\"H5414\"* some|strong=\"H3117\"* of|strong=\"H1121\"* your|strong=\"H5414\"* son|strong=\"H1121\"*’s mandrakes|strong=\"H1736\"*.”" + }, + { + "verseNum": 15, + "text": "Leah said|strong=\"H3651\"* to|strong=\"H1121\"* her|strong=\"H3947\"*, “Is|strong=\"H1571\"* it|strong=\"H3651\"* a|strong=\"H3068\"* small|strong=\"H4592\"* matter|strong=\"H4592\"* that|strong=\"H3651\"* you|strong=\"H3947\"* have|strong=\"H1121\"* taken|strong=\"H3947\"* away|strong=\"H3947\"* my|strong=\"H3947\"* husband? Would you|strong=\"H3947\"* take|strong=\"H3947\"* away|strong=\"H3947\"* my|strong=\"H3947\"* son|strong=\"H1121\"*’s mandrakes|strong=\"H1736\"*, also|strong=\"H1571\"*?”" + }, + { + "verseNum": 16, + "text": "Jacob|strong=\"H3290\"* came|strong=\"H3318\"* from|strong=\"H4480\"* the|strong=\"H3588\"* field|strong=\"H7704\"* in|strong=\"H1121\"* the|strong=\"H3588\"* evening|strong=\"H6153\"*, and|strong=\"H1121\"* Leah|strong=\"H3812\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* him|strong=\"H5973\"*, and|strong=\"H1121\"* said|strong=\"H3318\"*, “You|strong=\"H3588\"* must|strong=\"H1121\"* come|strong=\"H3318\"* in|strong=\"H1121\"* to|strong=\"H3318\"* me|strong=\"H4480\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1121\"* surely|strong=\"H3588\"* hired|strong=\"H7936\"* you|strong=\"H3588\"* with|strong=\"H5973\"* my|strong=\"H3318\"* son|strong=\"H1121\"*’s mandrakes|strong=\"H1736\"*.”" + }, + { + "verseNum": 17, + "text": "God listened|strong=\"H8085\"* to|strong=\"H3205\"* Leah|strong=\"H3812\"*, and|strong=\"H1121\"* she conceived|strong=\"H2029\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* Jacob|strong=\"H3290\"* a|strong=\"H3068\"* fifth|strong=\"H2549\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 18, + "text": "Leah|strong=\"H3812\"* said|strong=\"H7121\"*, “God|strong=\"H5414\"* has|strong=\"H8198\"* given|strong=\"H5414\"* me|strong=\"H5414\"* my|strong=\"H5414\"* hire|strong=\"H7939\"*, because I|strong=\"H5414\"* gave|strong=\"H5414\"* my|strong=\"H5414\"* servant|strong=\"H8198\"* to|strong=\"H5414\"* my|strong=\"H5414\"* husband.” She|strong=\"H7121\"* named|strong=\"H7121\"* him|strong=\"H5414\"* Issachar|strong=\"H3485\"*." + }, + { + "verseNum": 19, + "text": "Leah|strong=\"H3812\"* conceived|strong=\"H2029\"* again|strong=\"H5750\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* sixth|strong=\"H8345\"* son|strong=\"H1121\"* to|strong=\"H3205\"* Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 20, + "text": "Leah|strong=\"H3812\"* said|strong=\"H7121\"*, “God has|strong=\"H3588\"* endowed|strong=\"H2064\"* me|strong=\"H7121\"* with|strong=\"H2896\"* a|strong=\"H3068\"* good|strong=\"H2896\"* dowry|strong=\"H2065\"*. Now|strong=\"H6471\"* my|strong=\"H3588\"* husband will|strong=\"H1121\"* live|strong=\"H8034\"* with|strong=\"H2896\"* me|strong=\"H7121\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1121\"* borne|strong=\"H3205\"* him|strong=\"H3205\"* six|strong=\"H8337\"* sons|strong=\"H1121\"*.” She|strong=\"H3588\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Zebulun|strong=\"H2074\"*." + }, + { + "verseNum": 21, + "text": "Afterwards, she|strong=\"H7121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* daughter|strong=\"H1323\"*, and|strong=\"H1323\"* named|strong=\"H7121\"* her|strong=\"H7121\"* Dinah|strong=\"H1783\"*." + }, + { + "verseNum": 22, + "text": "God remembered|strong=\"H2142\"* Rachel|strong=\"H7354\"*, and|strong=\"H8085\"* God listened|strong=\"H8085\"* to|strong=\"H8085\"* her|strong=\"H6605\"*, and|strong=\"H8085\"* opened|strong=\"H6605\"* her|strong=\"H6605\"* womb|strong=\"H7358\"*." + }, + { + "verseNum": 23, + "text": "She conceived|strong=\"H2029\"*, bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* said, “God has|strong=\"H3205\"* taken away my reproach|strong=\"H2781\"*.”" + }, + { + "verseNum": 24, + "text": "She|strong=\"H7121\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Joseph|strong=\"H3130\"*,+ 30:24 Joseph means “may he add”.* saying, “May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* add|strong=\"H3254\"* another|strong=\"H3254\"* son|strong=\"H1121\"* to|strong=\"H3068\"* me|strong=\"H7121\"*.”" + }, + { + "verseNum": 25, + "text": "When|strong=\"H1961\"* Rachel|strong=\"H7354\"* had|strong=\"H1961\"* borne|strong=\"H3205\"* Joseph|strong=\"H3130\"*, Jacob|strong=\"H3290\"* said to|strong=\"H3212\"* Laban|strong=\"H3837\"*, “Send|strong=\"H7971\"* me|strong=\"H7971\"* away|strong=\"H7971\"*, that|strong=\"H1961\"* I|strong=\"H3212\"* may|strong=\"H1961\"* go|strong=\"H3212\"* to|strong=\"H3212\"* my|strong=\"H7971\"* own|strong=\"H1961\"* place|strong=\"H4725\"*, and|strong=\"H7971\"* to|strong=\"H3212\"* my|strong=\"H7971\"* country|strong=\"H4725\"*." + }, + { + "verseNum": 26, + "text": "Give|strong=\"H5414\"* me|strong=\"H5414\"* my|strong=\"H5414\"* wives and|strong=\"H3212\"* my|strong=\"H5414\"* children|strong=\"H3206\"* for|strong=\"H3588\"* whom|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3045\"* served|strong=\"H5647\"* you|strong=\"H3588\"*, and|strong=\"H3212\"* let|strong=\"H5414\"* me|strong=\"H5414\"* go|strong=\"H3212\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* know|strong=\"H3045\"* my|strong=\"H5414\"* service|strong=\"H5656\"* with|strong=\"H3045\"* which|strong=\"H2004\"* I|strong=\"H3588\"* have|strong=\"H3045\"* served|strong=\"H5647\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 27, + "text": "Laban|strong=\"H3837\"* said to|strong=\"H3068\"* him|strong=\"H4672\"*, “If|strong=\"H1288\"* now|strong=\"H4994\"* I|strong=\"H4672\"* have|strong=\"H3068\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H3068\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, stay here|strong=\"H4672\"*, for|strong=\"H3068\"* I|strong=\"H4672\"* have|strong=\"H3068\"* divined|strong=\"H5172\"* that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* blessed|strong=\"H1288\"* me|strong=\"H4994\"* for|strong=\"H3068\"* your|strong=\"H3068\"* sake|strong=\"H1558\"*.”" + }, + { + "verseNum": 28, + "text": "He|strong=\"H5414\"* said, “Appoint|strong=\"H5414\"* me|strong=\"H5414\"* your|strong=\"H5414\"* wages|strong=\"H7939\"*, and|strong=\"H5921\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* it|strong=\"H5414\"*.”" + }, + { + "verseNum": 29, + "text": "Jacob said to|strong=\"H1961\"* him|strong=\"H5647\"*, “You|strong=\"H3045\"* know|strong=\"H3045\"* how|strong=\"H3045\"* I|strong=\"H3045\"* have|strong=\"H1961\"* served|strong=\"H5647\"* you|strong=\"H3045\"*, and|strong=\"H3045\"* how|strong=\"H3045\"* your|strong=\"H3045\"* livestock|strong=\"H4735\"* have|strong=\"H1961\"* fared|strong=\"H1961\"* with|strong=\"H3045\"* me|strong=\"H1961\"*." + }, + { + "verseNum": 30, + "text": "For|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3068\"* little|strong=\"H4592\"* which|strong=\"H3068\"* you|strong=\"H3588\"* had|strong=\"H3068\"* before|strong=\"H6440\"* I|strong=\"H3588\"* came|strong=\"H1961\"*, and|strong=\"H3068\"* it|strong=\"H3588\"* has|strong=\"H3068\"* increased|strong=\"H6555\"* to|strong=\"H3068\"* a|strong=\"H3068\"* multitude|strong=\"H7230\"*. Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* blessed|strong=\"H1288\"* you|strong=\"H3588\"* wherever I|strong=\"H3588\"* turned|strong=\"H1961\"*. Now|strong=\"H6258\"* when|strong=\"H3588\"* will|strong=\"H3068\"* I|strong=\"H3588\"* provide|strong=\"H6213\"* for|strong=\"H3588\"* my|strong=\"H3068\"* own|strong=\"H1961\"* house|strong=\"H1004\"* also|strong=\"H1571\"*?”" + }, + { + "verseNum": 31, + "text": "Laban said|strong=\"H1697\"*, “What|strong=\"H4100\"* shall|strong=\"H3808\"* I|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"*?”" + }, + { + "verseNum": 32, + "text": "I|strong=\"H3117\"* will|strong=\"H1961\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* all|strong=\"H3605\"* your|strong=\"H3605\"* flock|strong=\"H6629\"* today|strong=\"H3117\"*, removing|strong=\"H5493\"* from|strong=\"H5493\"* there|strong=\"H8033\"* every|strong=\"H3605\"* speckled|strong=\"H5348\"* and|strong=\"H3117\"* spotted|strong=\"H2921\"* one|strong=\"H3605\"*, and|strong=\"H3117\"* every|strong=\"H3605\"* black|strong=\"H2345\"* one|strong=\"H3605\"* among|strong=\"H8033\"* the|strong=\"H3605\"* sheep|strong=\"H6629\"*, and|strong=\"H3117\"* the|strong=\"H3605\"* spotted|strong=\"H2921\"* and|strong=\"H3117\"* speckled|strong=\"H5348\"* among|strong=\"H8033\"* the|strong=\"H3605\"* goats|strong=\"H5795\"*. This|strong=\"H5674\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H3605\"* hire|strong=\"H7939\"*." + }, + { + "verseNum": 33, + "text": "So|strong=\"H3588\"* my|strong=\"H3605\"* righteousness|strong=\"H6666\"* will|strong=\"H1931\"* answer|strong=\"H6030\"* for|strong=\"H3588\"* me|strong=\"H6440\"* hereafter, when|strong=\"H3588\"* you|strong=\"H3588\"* come|strong=\"H4279\"* concerning|strong=\"H5921\"* my|strong=\"H3605\"* hire|strong=\"H7939\"* that|strong=\"H3588\"* is|strong=\"H1931\"* before|strong=\"H6440\"* you|strong=\"H3588\"*. Every|strong=\"H3605\"* one|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H1931\"* not|strong=\"H3588\"* speckled|strong=\"H5348\"* and|strong=\"H6030\"* spotted|strong=\"H2921\"* among|strong=\"H5921\"* the|strong=\"H3605\"* goats|strong=\"H5795\"*, and|strong=\"H6030\"* black|strong=\"H2345\"* among|strong=\"H5921\"* the|strong=\"H3605\"* sheep|strong=\"H3775\"*, that|strong=\"H3588\"* might be|strong=\"H3117\"* with|strong=\"H5921\"* me|strong=\"H6440\"*, will|strong=\"H1931\"* be|strong=\"H3117\"* considered stolen|strong=\"H1589\"*.”" + }, + { + "verseNum": 34, + "text": "Laban|strong=\"H3837\"* said|strong=\"H1697\"*, “Behold|strong=\"H2005\"*, let|strong=\"H1961\"* it|strong=\"H1961\"* be|strong=\"H1961\"* according to|strong=\"H1961\"* your|strong=\"H1961\"* word|strong=\"H1697\"*.”" + }, + { + "verseNum": 35, + "text": "That|strong=\"H3605\"* day|strong=\"H3117\"*, he|strong=\"H1931\"* removed|strong=\"H5493\"* the|strong=\"H3605\"* male|strong=\"H8495\"* goats|strong=\"H5795\"* that|strong=\"H3605\"* were|strong=\"H1121\"* streaked and|strong=\"H1121\"* spotted|strong=\"H2921\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* female|strong=\"H5795\"* goats|strong=\"H5795\"* that|strong=\"H3605\"* were|strong=\"H1121\"* speckled|strong=\"H5348\"* and|strong=\"H1121\"* spotted|strong=\"H2921\"*, every|strong=\"H3605\"* one|strong=\"H3605\"* that|strong=\"H3605\"* had|strong=\"H5414\"* white|strong=\"H3836\"* in|strong=\"H3117\"* it|strong=\"H5414\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* black|strong=\"H2345\"* ones|strong=\"H1121\"* among the|strong=\"H3605\"* sheep|strong=\"H3775\"*, and|strong=\"H1121\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 36, + "text": "He|strong=\"H3117\"* set|strong=\"H7760\"* three|strong=\"H7969\"* days|strong=\"H3117\"*’ journey|strong=\"H1870\"* between himself|strong=\"H3117\"* and|strong=\"H3117\"* Jacob|strong=\"H3290\"*, and|strong=\"H3117\"* Jacob|strong=\"H3290\"* fed|strong=\"H7462\"* the|strong=\"H3117\"* rest|strong=\"H3498\"* of|strong=\"H3117\"* Laban|strong=\"H3837\"*’s flocks|strong=\"H6629\"*." + }, + { + "verseNum": 37, + "text": "Jacob|strong=\"H3290\"* took|strong=\"H3947\"* to|strong=\"H5921\"* himself rods|strong=\"H4731\"* of|strong=\"H5921\"* fresh|strong=\"H3892\"* poplar|strong=\"H3839\"*, almond|strong=\"H3869\"*, and|strong=\"H3290\"* plane|strong=\"H6196\"* tree|strong=\"H6196\"*, peeled|strong=\"H6478\"* white|strong=\"H3836\"* streaks|strong=\"H6479\"* in|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H3290\"* made|strong=\"H3947\"* the|strong=\"H5921\"* white|strong=\"H3836\"* appear|strong=\"H4286\"* which|strong=\"H4286\"* was|strong=\"H3290\"* in|strong=\"H5921\"* the|strong=\"H5921\"* rods|strong=\"H4731\"*." + }, + { + "verseNum": 38, + "text": "He|strong=\"H4325\"* set|strong=\"H3322\"* the|strong=\"H8354\"* rods|strong=\"H4731\"* which|strong=\"H4325\"* he|strong=\"H4325\"* had|strong=\"H4325\"* peeled|strong=\"H6478\"* opposite|strong=\"H5227\"* the|strong=\"H8354\"* flocks|strong=\"H6629\"* in|strong=\"H6629\"* the|strong=\"H8354\"* watering|strong=\"H4325\"* troughs|strong=\"H8268\"* where the|strong=\"H8354\"* flocks|strong=\"H6629\"* came|strong=\"H4325\"* to|strong=\"H4325\"* drink|strong=\"H8354\"*. They conceived|strong=\"H3179\"* when they came|strong=\"H4325\"* to|strong=\"H4325\"* drink|strong=\"H8354\"*." + }, + { + "verseNum": 39, + "text": "The|strong=\"H3205\"* flocks|strong=\"H6629\"* conceived|strong=\"H3179\"* before the|strong=\"H3205\"* rods|strong=\"H4731\"*, and|strong=\"H6629\"* the|strong=\"H3205\"* flocks|strong=\"H6629\"* produced|strong=\"H3205\"* streaked, speckled|strong=\"H5348\"*, and|strong=\"H6629\"* spotted|strong=\"H2921\"*." + }, + { + "verseNum": 40, + "text": "Jacob|strong=\"H3290\"* separated|strong=\"H6504\"* the|strong=\"H3605\"* lambs|strong=\"H3775\"*, and|strong=\"H6629\"* set|strong=\"H5414\"* the|strong=\"H3605\"* faces|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* streaked and|strong=\"H6629\"* all|strong=\"H3605\"* the|strong=\"H3605\"* black|strong=\"H2345\"* in|strong=\"H5921\"* Laban|strong=\"H3837\"*’s flock|strong=\"H6629\"*. He|strong=\"H3605\"* put|strong=\"H5414\"* his|strong=\"H3605\"* own|strong=\"H6440\"* droves|strong=\"H5739\"* apart|strong=\"H6504\"*, and|strong=\"H6629\"* didn’t put|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5921\"* Laban|strong=\"H3837\"*’s flock|strong=\"H6629\"*." + }, + { + "verseNum": 41, + "text": "Whenever|strong=\"H3605\"* the|strong=\"H3605\"* stronger|strong=\"H7194\"* of|strong=\"H5869\"* the|strong=\"H3605\"* flock|strong=\"H6629\"* conceived|strong=\"H3179\"*, Jacob|strong=\"H3290\"* laid|strong=\"H7760\"* the|strong=\"H3605\"* rods|strong=\"H4731\"* in|strong=\"H6629\"* front of|strong=\"H5869\"* the|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H3605\"* flock|strong=\"H6629\"* in|strong=\"H6629\"* the|strong=\"H3605\"* watering troughs|strong=\"H7298\"*, that|strong=\"H3605\"* they|strong=\"H3605\"* might conceive|strong=\"H3179\"* among the|strong=\"H3605\"* rods|strong=\"H4731\"*;" + }, + { + "verseNum": 42, + "text": "but|strong=\"H3808\"* when|strong=\"H1961\"* the|strong=\"H7760\"* flock|strong=\"H6629\"* were|strong=\"H1961\"* feeble|strong=\"H5848\"*, he|strong=\"H3808\"* didn’t put|strong=\"H7760\"* them|strong=\"H7760\"* in|strong=\"H6629\"*. So|strong=\"H1961\"* the|strong=\"H7760\"* feebler|strong=\"H5848\"* were|strong=\"H1961\"* Laban|strong=\"H3837\"*’s, and|strong=\"H6629\"* the|strong=\"H7760\"* stronger|strong=\"H7194\"* Jacob|strong=\"H3290\"*’s." + }, + { + "verseNum": 43, + "text": "The|strong=\"H1961\"* man increased|strong=\"H6555\"* exceedingly|strong=\"H3966\"*, and|strong=\"H5650\"* had|strong=\"H1961\"* large|strong=\"H7227\"* flocks|strong=\"H6629\"*, female|strong=\"H8198\"* servants|strong=\"H5650\"* and|strong=\"H5650\"* male|strong=\"H5650\"* servants|strong=\"H5650\"*, and|strong=\"H5650\"* camels|strong=\"H1581\"* and|strong=\"H5650\"* donkeys|strong=\"H2543\"*." + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Jacob|strong=\"H3290\"* heard|strong=\"H8085\"* Laban|strong=\"H3837\"*’s sons|strong=\"H1121\"*’ words|strong=\"H1697\"*, saying|strong=\"H1697\"*, “Jacob|strong=\"H3290\"* has|strong=\"H1697\"* taken|strong=\"H3947\"* away|strong=\"H3947\"* all|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H1697\"* our|strong=\"H3605\"* father|strong=\"H1121\"*’s. He|strong=\"H6213\"* has|strong=\"H1697\"* obtained all|strong=\"H3605\"* this|strong=\"H2088\"* wealth|strong=\"H3519\"* from|strong=\"H8085\"* that|strong=\"H3605\"* which|strong=\"H1697\"* was|strong=\"H1697\"* our|strong=\"H3605\"* father|strong=\"H1121\"*’s.”" + }, + { + "verseNum": 2, + "text": "Jacob|strong=\"H3290\"* saw|strong=\"H7200\"* the|strong=\"H6440\"* expression|strong=\"H6440\"* on|strong=\"H7200\"* Laban|strong=\"H3837\"*’s face|strong=\"H6440\"*, and|strong=\"H6440\"*, behold|strong=\"H2009\"*, it|strong=\"H7200\"* was|strong=\"H3290\"* not|strong=\"H7200\"* toward|strong=\"H6440\"* him|strong=\"H6440\"* as|strong=\"H6440\"* before|strong=\"H6440\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H7725\"* Jacob|strong=\"H3290\"*, “Return|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* your|strong=\"H3068\"* fathers, and|strong=\"H3068\"* to|strong=\"H7725\"* your|strong=\"H3068\"* relatives|strong=\"H4138\"*, and|strong=\"H3068\"* I|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H7725\"*.”" + }, + { + "verseNum": 4, + "text": "Jacob|strong=\"H3290\"* sent|strong=\"H7971\"* and|strong=\"H7971\"* called|strong=\"H7121\"* Rachel|strong=\"H7354\"* and|strong=\"H7971\"* Leah|strong=\"H3812\"* to|strong=\"H7971\"* the|strong=\"H7121\"* field|strong=\"H7704\"* to|strong=\"H7971\"* his|strong=\"H7121\"* flock|strong=\"H6629\"*," + }, + { + "verseNum": 5, + "text": "and|strong=\"H6440\"* said to|strong=\"H1961\"* them|strong=\"H6440\"*, “I|strong=\"H3588\"* see|strong=\"H7200\"* the|strong=\"H6440\"* expression|strong=\"H6440\"* on|strong=\"H7200\"* your|strong=\"H6440\"* father’s face|strong=\"H6440\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H1961\"* not|strong=\"H1961\"* toward|strong=\"H6440\"* me|strong=\"H6440\"* as|strong=\"H1961\"* before|strong=\"H6440\"*; but|strong=\"H3588\"* the|strong=\"H6440\"* God of|strong=\"H6440\"* my|strong=\"H7200\"* father has|strong=\"H1961\"* been|strong=\"H1961\"* with|strong=\"H6440\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3045\"* served|strong=\"H5647\"* your|strong=\"H3605\"* father with|strong=\"H3045\"* all|strong=\"H3605\"* of|strong=\"H3605\"* my|strong=\"H3605\"* strength|strong=\"H3581\"*." + }, + { + "verseNum": 7, + "text": "Your|strong=\"H5414\"* father has|strong=\"H7489\"* deceived|strong=\"H2048\"* me|strong=\"H5414\"*, and|strong=\"H3808\"* changed|strong=\"H2498\"* my|strong=\"H5414\"* wages|strong=\"H4909\"* ten|strong=\"H6235\"* times|strong=\"H4489\"*, but|strong=\"H3808\"* God|strong=\"H5414\"* didn’t allow|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H5414\"* hurt|strong=\"H7489\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "If|strong=\"H1961\"* he|strong=\"H3605\"* said, ‘The|strong=\"H3605\"* speckled|strong=\"H5348\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H3605\"* wages|strong=\"H7939\"*,’ then|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* flock|strong=\"H6629\"* bore|strong=\"H3205\"* speckled|strong=\"H5348\"*. If|strong=\"H1961\"* he|strong=\"H3605\"* said, ‘The|strong=\"H3605\"* streaked will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H3605\"* wages|strong=\"H7939\"*,’ then|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* flock|strong=\"H6629\"* bore|strong=\"H3205\"* streaked." + }, + { + "verseNum": 9, + "text": "Thus God|strong=\"H5414\"* has|strong=\"H5414\"* taken|strong=\"H5337\"* away|strong=\"H5337\"* your|strong=\"H5414\"* father’s livestock|strong=\"H4735\"*, and|strong=\"H4735\"* given|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5414\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 10, + "text": "During|strong=\"H1961\"* mating|strong=\"H3179\"* season|strong=\"H6256\"*, I|strong=\"H2009\"* lifted|strong=\"H5375\"* up|strong=\"H5927\"* my|strong=\"H7200\"* eyes|strong=\"H5869\"*, and|strong=\"H5869\"* saw|strong=\"H7200\"* in|strong=\"H5921\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*, and|strong=\"H5869\"* behold|strong=\"H2009\"*, the|strong=\"H5921\"* male|strong=\"H6260\"* goats|strong=\"H6260\"* which|strong=\"H5869\"* leaped|strong=\"H5927\"* on|strong=\"H5921\"* the|strong=\"H5921\"* flock|strong=\"H6629\"* were|strong=\"H1961\"* streaked, speckled|strong=\"H5348\"*, and|strong=\"H5869\"* grizzled." + }, + { + "verseNum": 11, + "text": "The|strong=\"H2009\"* angel|strong=\"H4397\"* of|strong=\"H4397\"* God said to|strong=\"H4397\"* me|strong=\"H2472\"* in|strong=\"H3290\"* the|strong=\"H2009\"* dream|strong=\"H2472\"*, ‘Jacob|strong=\"H3290\"*,’ and|strong=\"H3290\"* I|strong=\"H2009\"* said, ‘Here|strong=\"H2009\"* I|strong=\"H2009\"* am.’" + }, + { + "verseNum": 12, + "text": "He|strong=\"H3588\"* said, ‘Now|strong=\"H4994\"* lift|strong=\"H5375\"* up|strong=\"H5927\"* your|strong=\"H3605\"* eyes|strong=\"H5869\"*, and|strong=\"H5869\"* behold|strong=\"H7200\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* male|strong=\"H6260\"* goats|strong=\"H6260\"* which|strong=\"H5869\"* leap|strong=\"H5927\"* on|strong=\"H5921\"* the|strong=\"H3605\"* flock|strong=\"H6629\"* are|strong=\"H5869\"* streaked, speckled|strong=\"H5348\"*, and|strong=\"H5869\"* grizzled, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5869\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* that|strong=\"H3588\"* Laban|strong=\"H3837\"* does|strong=\"H6213\"* to|strong=\"H5927\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H6258\"* am the|strong=\"H4480\"* God|strong=\"H1008\"* of|strong=\"H4480\"* Bethel|strong=\"H1008\"*, where|strong=\"H8033\"* you|strong=\"H7725\"* anointed|strong=\"H4886\"* a|strong=\"H3068\"* pillar|strong=\"H4676\"*, where|strong=\"H8033\"* you|strong=\"H7725\"* vowed|strong=\"H5087\"* a|strong=\"H3068\"* vow|strong=\"H5088\"* to|strong=\"H7725\"* me|strong=\"H7725\"*. Now|strong=\"H6258\"* arise|strong=\"H6965\"*, get|strong=\"H6965\"* out|strong=\"H3318\"* from|strong=\"H4480\"* this|strong=\"H2063\"* land, and|strong=\"H6965\"* return|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H4480\"* land of|strong=\"H4480\"* your|strong=\"H7725\"* birth|strong=\"H4138\"*.’”" + }, + { + "verseNum": 14, + "text": "Rachel|strong=\"H7354\"* and|strong=\"H6030\"* Leah|strong=\"H3812\"* answered|strong=\"H6030\"* him|strong=\"H6030\"*, “Is|strong=\"H1004\"* there yet|strong=\"H5750\"* any|strong=\"H5750\"* portion|strong=\"H2506\"* or|strong=\"H2506\"* inheritance|strong=\"H5159\"* for|strong=\"H1004\"* us|strong=\"H6030\"* in|strong=\"H1004\"* our|strong=\"H5750\"* father’s house|strong=\"H1004\"*?" + }, + { + "verseNum": 15, + "text": "Aren’t we|strong=\"H3068\"* considered|strong=\"H2803\"* as|strong=\"H2803\"* foreigners|strong=\"H5237\"* by|strong=\"H1571\"* him|strong=\"H2803\"*? For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* sold|strong=\"H4376\"* us|strong=\"H3588\"*, and|strong=\"H3701\"* has|strong=\"H3588\"* also|strong=\"H1571\"* used up our|strong=\"H3588\"* money|strong=\"H3701\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* riches|strong=\"H6239\"* which|strong=\"H1931\"* God has|strong=\"H3588\"* taken|strong=\"H5337\"* away|strong=\"H5337\"* from|strong=\"H1121\"* our|strong=\"H3605\"* father|strong=\"H1121\"* are|strong=\"H1121\"* ours and|strong=\"H1121\"* our|strong=\"H3605\"* children|strong=\"H1121\"*’s. Now|strong=\"H6258\"* then|strong=\"H6258\"*, whatever|strong=\"H3605\"* God has|strong=\"H3588\"* said to|strong=\"H6213\"* you|strong=\"H3588\"*, do|strong=\"H6213\"*.”" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H6965\"* Jacob|strong=\"H3290\"* rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H1121\"* set|strong=\"H6965\"* his|strong=\"H5375\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H5375\"* wives on|strong=\"H5921\"* the|strong=\"H5921\"* camels|strong=\"H1581\"*," + }, + { + "verseNum": 18, + "text": "and|strong=\"H3327\"* he|strong=\"H3605\"* took away|strong=\"H5090\"* all|strong=\"H3605\"* his|strong=\"H3605\"* livestock|strong=\"H4735\"*, and|strong=\"H3327\"* all|strong=\"H3605\"* his|strong=\"H3605\"* possessions|strong=\"H7399\"* which|strong=\"H7399\"* he|strong=\"H3605\"* had|strong=\"H3327\"* gathered|strong=\"H7408\"*, including|strong=\"H3605\"* the|strong=\"H3605\"* livestock|strong=\"H4735\"* which|strong=\"H7399\"* he|strong=\"H3605\"* had|strong=\"H3327\"* gained in|strong=\"H7408\"* Paddan|strong=\"H6307\"* Aram|strong=\"H6307\"*, to|strong=\"H3605\"* go to|strong=\"H3605\"* Isaac|strong=\"H3327\"* his|strong=\"H3605\"* father, to|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 19, + "text": "Now|strong=\"H1980\"* Laban|strong=\"H3837\"* had|strong=\"H7354\"* gone|strong=\"H1980\"* to|strong=\"H1980\"* shear|strong=\"H1494\"* his|strong=\"H1494\"* sheep|strong=\"H6629\"*; and|strong=\"H1980\"* Rachel|strong=\"H7354\"* stole|strong=\"H1589\"* the|strong=\"H1980\"* teraphim|strong=\"H8655\"*+ 31:19 teraphim were household idols that may have been associated with inheritance rights to the household property.* that|strong=\"H6629\"* were|strong=\"H6629\"* her|strong=\"H1980\"* father’s." + }, + { + "verseNum": 20, + "text": "Jacob|strong=\"H3290\"* deceived|strong=\"H1589\"* Laban|strong=\"H3837\"* the|strong=\"H5921\"* Syrian, in|strong=\"H5921\"* that|strong=\"H3588\"* he|strong=\"H1931\"* didn’t tell|strong=\"H5046\"* him|strong=\"H5921\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3820\"* running away|strong=\"H1272\"*." + }, + { + "verseNum": 21, + "text": "So|strong=\"H6965\"* he|strong=\"H1931\"* fled|strong=\"H1272\"* with|strong=\"H6440\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H1931\"* had|strong=\"H7760\"*. He|strong=\"H1931\"* rose|strong=\"H6965\"* up|strong=\"H6965\"*, passed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* River|strong=\"H5104\"*, and|strong=\"H6965\"* set|strong=\"H7760\"* his|strong=\"H3605\"* face|strong=\"H6440\"* toward|strong=\"H6440\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* of|strong=\"H2022\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 22, + "text": "Laban|strong=\"H3837\"* was|strong=\"H3117\"* told|strong=\"H5046\"* on|strong=\"H3117\"* the|strong=\"H3588\"* third|strong=\"H7992\"* day|strong=\"H3117\"* that|strong=\"H3588\"* Jacob|strong=\"H3290\"* had|strong=\"H3588\"* fled|strong=\"H1272\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H3117\"* took|strong=\"H3947\"* his|strong=\"H3947\"* relatives with|strong=\"H5973\"* him|strong=\"H5973\"*, and|strong=\"H3117\"* pursued|strong=\"H7291\"* him|strong=\"H5973\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*’ journey|strong=\"H1870\"*. He|strong=\"H3117\"* overtook|strong=\"H1692\"* him|strong=\"H5973\"* in|strong=\"H3117\"* the|strong=\"H3947\"* mountain|strong=\"H2022\"* of|strong=\"H3117\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 24, + "text": "God came|strong=\"H7451\"* to|strong=\"H1696\"* Laban|strong=\"H3837\"* the|strong=\"H8104\"* Syrian in|strong=\"H1696\"* a|strong=\"H3068\"* dream|strong=\"H2472\"* of|strong=\"H1696\"* the|strong=\"H8104\"* night|strong=\"H3915\"*, and|strong=\"H3915\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5973\"*, “Be|strong=\"H7451\"* careful|strong=\"H8104\"* that|strong=\"H7451\"* you|strong=\"H5704\"* don’t speak|strong=\"H1696\"* to|strong=\"H1696\"* Jacob|strong=\"H3290\"* either|strong=\"H3290\"* good|strong=\"H2896\"* or|strong=\"H6435\"* bad|strong=\"H7451\"*.”" + }, + { + "verseNum": 25, + "text": "Laban|strong=\"H3837\"* caught|strong=\"H5381\"* up|strong=\"H8628\"* with|strong=\"H8628\"* Jacob|strong=\"H3290\"*. Now Jacob|strong=\"H3290\"* had|strong=\"H3290\"* pitched|strong=\"H8628\"* his|strong=\"H3290\"* tent in|strong=\"H3290\"* the|strong=\"H8628\"* mountain|strong=\"H2022\"*, and|strong=\"H2022\"* Laban|strong=\"H3837\"* with|strong=\"H8628\"* his|strong=\"H3290\"* relatives encamped in|strong=\"H3290\"* the|strong=\"H8628\"* mountain|strong=\"H2022\"* of|strong=\"H2022\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 26, + "text": "Laban|strong=\"H3837\"* said to|strong=\"H6213\"* Jacob|strong=\"H3290\"*, “What|strong=\"H4100\"* have|strong=\"H1323\"* you|strong=\"H6213\"* done|strong=\"H6213\"*, that|strong=\"H6213\"* you|strong=\"H6213\"* have|strong=\"H1323\"* deceived|strong=\"H1589\"* me|strong=\"H6213\"*, and|strong=\"H2719\"* carried|strong=\"H7617\"* away|strong=\"H7617\"* my|strong=\"H6213\"* daughters|strong=\"H1323\"* like|strong=\"H6213\"* captives|strong=\"H7617\"* of|strong=\"H1323\"* the|strong=\"H6213\"* sword|strong=\"H2719\"*?" + }, + { + "verseNum": 27, + "text": "Why|strong=\"H4100\"* did|strong=\"H4100\"* you|strong=\"H7971\"* flee|strong=\"H1272\"* secretly|strong=\"H2244\"*, and|strong=\"H7971\"* deceive|strong=\"H1589\"* me|strong=\"H7971\"*, and|strong=\"H7971\"* didn’t tell|strong=\"H5046\"* me|strong=\"H7971\"*, that|strong=\"H3808\"* I|strong=\"H3808\"* might have|strong=\"H3808\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* away|strong=\"H7971\"* with|strong=\"H7971\"* mirth|strong=\"H8057\"* and|strong=\"H7971\"* with|strong=\"H7971\"* songs|strong=\"H7892\"*, with|strong=\"H7971\"* tambourine|strong=\"H8596\"* and|strong=\"H7971\"* with|strong=\"H7971\"* harp|strong=\"H3658\"*;" + }, + { + "verseNum": 28, + "text": "and|strong=\"H1121\"* didn’t allow|strong=\"H5203\"* me|strong=\"H6213\"* to|strong=\"H6213\"* kiss|strong=\"H5401\"* my|strong=\"H6213\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* my|strong=\"H6213\"* daughters|strong=\"H1323\"*? Now|strong=\"H6258\"* you|strong=\"H6213\"* have|strong=\"H1121\"* done|strong=\"H6213\"* foolishly|strong=\"H5528\"*." + }, + { + "verseNum": 29, + "text": "It|strong=\"H6213\"* is|strong=\"H3426\"* in|strong=\"H6213\"* the|strong=\"H6213\"* power|strong=\"H3027\"* of|strong=\"H3027\"* my|strong=\"H8104\"* hand|strong=\"H3027\"* to|strong=\"H1696\"* hurt|strong=\"H7451\"* you|strong=\"H5704\"*, but|strong=\"H1696\"* the|strong=\"H6213\"* God|strong=\"H3027\"* of|strong=\"H3027\"* your|strong=\"H8104\"* father spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H6213\"* last night, saying|strong=\"H1696\"*, ‘Be|strong=\"H3426\"* careful|strong=\"H8104\"* that|strong=\"H3027\"* you|strong=\"H5704\"* don’t speak|strong=\"H1696\"* to|strong=\"H1696\"* Jacob|strong=\"H3290\"* either|strong=\"H3290\"* good|strong=\"H2896\"* or|strong=\"H5704\"* bad|strong=\"H7451\"*.’" + }, + { + "verseNum": 30, + "text": "Now|strong=\"H6258\"*, you|strong=\"H3588\"* want to|strong=\"H1980\"* be|strong=\"H1004\"* gone|strong=\"H1980\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* greatly|strong=\"H3700\"* longed|strong=\"H3700\"* for|strong=\"H3588\"* your|strong=\"H3588\"* father’s house|strong=\"H1004\"*, but|strong=\"H3588\"* why|strong=\"H4100\"* have|strong=\"H6258\"* you|strong=\"H3588\"* stolen|strong=\"H1589\"* my|strong=\"H3588\"* gods|strong=\"H1980\"*?”" + }, + { + "verseNum": 31, + "text": "Jacob|strong=\"H3290\"* answered|strong=\"H6030\"* Laban|strong=\"H3837\"*, “Because|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H3290\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* said|strong=\"H6030\"*, ‘Lest|strong=\"H6435\"* you|strong=\"H3588\"* should|strong=\"H3588\"* take|strong=\"H1497\"* your|strong=\"H3588\"* daughters|strong=\"H1323\"* from|strong=\"H5973\"* me|strong=\"H5973\"* by|strong=\"H5973\"* force|strong=\"H1497\"*.’" + }, + { + "verseNum": 32, + "text": "Anyone|strong=\"H3588\"* you|strong=\"H3588\"* find|strong=\"H4672\"* your|strong=\"H3947\"* gods with|strong=\"H5973\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* live|strong=\"H2421\"*. Before|strong=\"H5048\"* our|strong=\"H3947\"* relatives, discern|strong=\"H5234\"* what|strong=\"H4100\"* is|strong=\"H4100\"* yours with|strong=\"H5973\"* me|strong=\"H5978\"*, and|strong=\"H3045\"* take|strong=\"H3947\"* it|strong=\"H3588\"*.” For|strong=\"H3588\"* Jacob|strong=\"H3290\"* didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* Rachel|strong=\"H7354\"* had|strong=\"H3588\"* stolen|strong=\"H1589\"* them|strong=\"H3947\"*." + }, + { + "verseNum": 33, + "text": "Laban|strong=\"H3837\"* went|strong=\"H3318\"* into|strong=\"H3318\"* Jacob|strong=\"H3290\"*’s tent, into|strong=\"H3318\"* Leah|strong=\"H3812\"*’s tent, and|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3318\"* tent of|strong=\"H3318\"* the|strong=\"H3318\"* two|strong=\"H8147\"* female|strong=\"H8147\"* servants; but|strong=\"H3808\"* he|strong=\"H8147\"* didn’t find|strong=\"H4672\"* them|strong=\"H3318\"*. He|strong=\"H8147\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3318\"* Leah|strong=\"H3812\"*’s tent, and|strong=\"H3318\"* entered|strong=\"H3318\"* into|strong=\"H3318\"* Rachel|strong=\"H7354\"*’s tent." + }, + { + "verseNum": 34, + "text": "Now|strong=\"H3947\"* Rachel|strong=\"H7354\"* had|strong=\"H7354\"* taken|strong=\"H3947\"* the|strong=\"H3605\"* teraphim|strong=\"H8655\"*, put|strong=\"H7760\"* them|strong=\"H5921\"* in|strong=\"H3427\"* the|strong=\"H3605\"* camel|strong=\"H1581\"*’s saddle|strong=\"H3733\"*, and|strong=\"H3427\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* them|strong=\"H5921\"*. Laban|strong=\"H3837\"* felt|strong=\"H4959\"* around|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tent, but|strong=\"H3808\"* didn’t find|strong=\"H4672\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 35, + "text": "She|strong=\"H3588\"* said to|strong=\"H3201\"* her|strong=\"H4672\"* father, “Don’t let|strong=\"H3808\"* my|strong=\"H6965\"* lord be|strong=\"H3808\"* angry|strong=\"H2734\"* that|strong=\"H3588\"* I|strong=\"H3588\"* can|strong=\"H3201\"*’t rise|strong=\"H6965\"* up|strong=\"H6965\"* before|strong=\"H6440\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* I|strong=\"H3588\"*’m having|strong=\"H3808\"* my|strong=\"H6965\"* period.” He|strong=\"H3588\"* searched|strong=\"H2664\"*, but|strong=\"H3588\"* didn’t find|strong=\"H4672\"* the|strong=\"H6440\"* teraphim|strong=\"H8655\"*." + }, + { + "verseNum": 36, + "text": "Jacob|strong=\"H3290\"* was|strong=\"H3290\"* angry|strong=\"H2734\"*, and|strong=\"H6030\"* argued with|strong=\"H7378\"* Laban|strong=\"H3837\"*. Jacob|strong=\"H3290\"* answered|strong=\"H6030\"* Laban|strong=\"H3837\"*, “What|strong=\"H4100\"* is|strong=\"H4100\"* my|strong=\"H3290\"* trespass|strong=\"H6588\"*? What|strong=\"H4100\"* is|strong=\"H4100\"* my|strong=\"H3290\"* sin|strong=\"H2403\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H2403\"* hotly|strong=\"H1814\"* pursued|strong=\"H1814\"* me|strong=\"H6030\"*?" + }, + { + "verseNum": 37, + "text": "Now|strong=\"H3588\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H4672\"* felt|strong=\"H4959\"* around in|strong=\"H1004\"* all|strong=\"H3605\"* my|strong=\"H3605\"* stuff|strong=\"H3627\"*, what|strong=\"H4100\"* have|strong=\"H4672\"* you|strong=\"H3588\"* found|strong=\"H4672\"* of|strong=\"H1004\"* all|strong=\"H3605\"* your|strong=\"H3605\"* household|strong=\"H1004\"* stuff|strong=\"H3627\"*? Set|strong=\"H7760\"* it|strong=\"H7760\"* here|strong=\"H3541\"* before|strong=\"H5048\"* my|strong=\"H3605\"* relatives and|strong=\"H1004\"* your|strong=\"H3605\"* relatives, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H1004\"* judge|strong=\"H3198\"* between us|strong=\"H7760\"* two|strong=\"H8147\"*." + }, + { + "verseNum": 38, + "text": "“These|strong=\"H2088\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* I|strong=\"H2088\"* have|strong=\"H3808\"* been|strong=\"H3808\"* with|strong=\"H5973\"* you|strong=\"H5973\"*. Your|strong=\"H3808\"* ewes|strong=\"H7353\"* and|strong=\"H6242\"* your|strong=\"H3808\"* female|strong=\"H5795\"* goats|strong=\"H5795\"* have|strong=\"H3808\"* not|strong=\"H3808\"* cast|strong=\"H7921\"* their|strong=\"H3808\"* young|strong=\"H7921\"*, and|strong=\"H6242\"* I|strong=\"H2088\"* haven’t eaten the|strong=\"H5973\"* rams of|strong=\"H8141\"* your|strong=\"H3808\"* flocks|strong=\"H6629\"*." + }, + { + "verseNum": 39, + "text": "That|strong=\"H3117\"* which|strong=\"H3117\"* was|strong=\"H3117\"* torn|strong=\"H2966\"* of|strong=\"H3117\"* animals, I|strong=\"H3117\"* didn’t bring|strong=\"H2398\"* to|strong=\"H3027\"* you|strong=\"H3117\"*. I|strong=\"H3117\"* bore|strong=\"H2398\"* its|strong=\"H3808\"* loss|strong=\"H2398\"*. Of|strong=\"H3117\"* my|strong=\"H1245\"* hand|strong=\"H3027\"* you|strong=\"H3117\"* required|strong=\"H1245\"* it|strong=\"H3915\"*, whether stolen|strong=\"H1589\"* by|strong=\"H3027\"* day|strong=\"H3117\"* or|strong=\"H3808\"* stolen|strong=\"H1589\"* by|strong=\"H3027\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 40, + "text": "This|strong=\"H3117\"* was|strong=\"H1961\"* my|strong=\"H1961\"* situation: in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* the|strong=\"H3117\"* drought|strong=\"H2721\"* consumed me|strong=\"H1961\"*, and|strong=\"H3117\"* the|strong=\"H3117\"* frost|strong=\"H7140\"* by|strong=\"H3117\"* night|strong=\"H3915\"*; and|strong=\"H3117\"* my|strong=\"H1961\"* sleep|strong=\"H8142\"* fled|strong=\"H5074\"* from|strong=\"H3117\"* my|strong=\"H1961\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 41, + "text": "These|strong=\"H2088\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* I|strong=\"H2088\"* have|strong=\"H1323\"* been|strong=\"H5647\"* in|strong=\"H8141\"* your|strong=\"H2088\"* house|strong=\"H1004\"*. I|strong=\"H2088\"* served|strong=\"H5647\"* you|strong=\"H5647\"* fourteen|strong=\"H6240\"* years|strong=\"H8141\"* for|strong=\"H1004\"* your|strong=\"H2088\"* two|strong=\"H8147\"* daughters|strong=\"H1323\"*, and|strong=\"H6242\"* six|strong=\"H8337\"* years|strong=\"H8141\"* for|strong=\"H1004\"* your|strong=\"H2088\"* flock|strong=\"H6629\"*, and|strong=\"H6242\"* you|strong=\"H5647\"* have|strong=\"H1323\"* changed|strong=\"H2498\"* my|strong=\"H2498\"* wages|strong=\"H4909\"* ten|strong=\"H6235\"* times|strong=\"H4489\"*." + }, + { + "verseNum": 42, + "text": "Unless|strong=\"H3588\"* the|strong=\"H7200\"* God|strong=\"H7971\"* of|strong=\"H3709\"* my|strong=\"H7200\"* father, the|strong=\"H7200\"* God|strong=\"H7971\"* of|strong=\"H3709\"* Abraham, and|strong=\"H7971\"* the|strong=\"H7200\"* fear|strong=\"H6343\"* of|strong=\"H3709\"* Isaac|strong=\"H3327\"*, had|strong=\"H1961\"* been|strong=\"H1961\"* with|strong=\"H3198\"* me|strong=\"H7971\"*, surely|strong=\"H3588\"* now|strong=\"H6258\"* you|strong=\"H3588\"* would have|strong=\"H1961\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* away|strong=\"H7971\"* empty|strong=\"H7387\"*. God|strong=\"H7971\"* has|strong=\"H1961\"* seen|strong=\"H7200\"* my|strong=\"H7200\"* affliction|strong=\"H6040\"* and|strong=\"H7971\"* the|strong=\"H7200\"* labor|strong=\"H3018\"* of|strong=\"H3709\"* my|strong=\"H7200\"* hands|strong=\"H3709\"*, and|strong=\"H7971\"* rebuked|strong=\"H3198\"* you|strong=\"H3588\"* last|strong=\"H3588\"* night.”" + }, + { + "verseNum": 43, + "text": "Laban|strong=\"H3837\"* answered|strong=\"H6030\"* Jacob|strong=\"H3290\"*, “The|strong=\"H3605\"* daughters|strong=\"H1323\"* are|strong=\"H3117\"* my|strong=\"H3605\"* daughters|strong=\"H1323\"*, the|strong=\"H3605\"* children|strong=\"H1121\"* are|strong=\"H3117\"* my|strong=\"H3605\"* children|strong=\"H1121\"*, the|strong=\"H3605\"* flocks|strong=\"H6629\"* are|strong=\"H3117\"* my|strong=\"H3605\"* flocks|strong=\"H6629\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* that|strong=\"H7200\"* you|strong=\"H3605\"* see|strong=\"H7200\"* is|strong=\"H1931\"* mine|strong=\"H7200\"*! What|strong=\"H4100\"* can|strong=\"H4100\"* I|strong=\"H3117\"* do|strong=\"H6213\"* today|strong=\"H3117\"* to|strong=\"H6213\"* these|strong=\"H6213\"* my|strong=\"H3605\"* daughters|strong=\"H1323\"*, or|strong=\"H3117\"* to|strong=\"H6213\"* their|strong=\"H3605\"* children|strong=\"H1121\"* whom they|strong=\"H3117\"* have|strong=\"H1121\"* borne|strong=\"H3205\"*?" + }, + { + "verseNum": 44, + "text": "Now|strong=\"H6258\"* come|strong=\"H1961\"*, let|strong=\"H6258\"*’s make|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"*, you|strong=\"H3772\"* and|strong=\"H3212\"* I|strong=\"H6258\"*. Let|strong=\"H6258\"* it|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H1961\"* a|strong=\"H3068\"* witness|strong=\"H5707\"* between me|strong=\"H1961\"* and|strong=\"H3212\"* you|strong=\"H3772\"*.”" + }, + { + "verseNum": 45, + "text": "Jacob|strong=\"H3290\"* took|strong=\"H3947\"* a|strong=\"H3068\"* stone, and|strong=\"H3290\"* set|strong=\"H7311\"* it|strong=\"H3947\"* up|strong=\"H7311\"* for|strong=\"H3947\"* a|strong=\"H3068\"* pillar|strong=\"H4676\"*." + }, + { + "verseNum": 46, + "text": "Jacob|strong=\"H3290\"* said to|strong=\"H6213\"* his|strong=\"H3947\"* relatives, “Gather|strong=\"H3950\"* stones.” They|strong=\"H8033\"* took|strong=\"H3947\"* stones, and|strong=\"H8033\"* made|strong=\"H6213\"* a|strong=\"H3068\"* heap|strong=\"H1530\"*. They|strong=\"H8033\"* ate there|strong=\"H8033\"* by|strong=\"H5921\"* the|strong=\"H5921\"* heap|strong=\"H1530\"*." + }, + { + "verseNum": 47, + "text": "Laban|strong=\"H3837\"* called|strong=\"H7121\"* it|strong=\"H7121\"* Jegar Sahadutha,+ 31:47 “Jegar Sahadutha” means “Witness Heap” in Aramaic.* but|strong=\"H3290\"* Jacob|strong=\"H3290\"* called|strong=\"H7121\"* it|strong=\"H7121\"* Galeed|strong=\"H1567\"*.+ 31:47 “Galeed” means “Witness Heap” in Hebrew.*" + }, + { + "verseNum": 48, + "text": "Laban|strong=\"H3837\"* said|strong=\"H7121\"*, “This|strong=\"H2088\"* heap|strong=\"H1530\"* is|strong=\"H2088\"* witness|strong=\"H5707\"* between|strong=\"H5921\"* me|strong=\"H5921\"* and|strong=\"H3117\"* you|strong=\"H5921\"* today|strong=\"H3117\"*.” Therefore|strong=\"H3651\"* it|strong=\"H7121\"* was|strong=\"H8034\"* named|strong=\"H7121\"* Galeed|strong=\"H1567\"*" + }, + { + "verseNum": 49, + "text": "and|strong=\"H3068\"* Mizpah|strong=\"H4709\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* said, “Yahweh|strong=\"H3068\"* watch|strong=\"H6822\"* between me|strong=\"H5641\"* and|strong=\"H3068\"* you|strong=\"H3588\"*, when|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H3068\"* absent|strong=\"H5641\"* one|strong=\"H3588\"* from|strong=\"H3068\"* another|strong=\"H7453\"*." + }, + { + "verseNum": 50, + "text": "If|strong=\"H7200\"* you|strong=\"H5921\"* afflict|strong=\"H6031\"* my|strong=\"H7200\"* daughters|strong=\"H1323\"*, or|strong=\"H7200\"* if|strong=\"H7200\"* you|strong=\"H5921\"* take|strong=\"H3947\"* wives in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H5921\"* my|strong=\"H7200\"* daughters|strong=\"H1323\"*, no|strong=\"H3947\"* man|strong=\"H7200\"* is|strong=\"H1323\"* with|strong=\"H5973\"* us|strong=\"H5921\"*; behold|strong=\"H7200\"*, God is|strong=\"H1323\"* witness|strong=\"H5707\"* between|strong=\"H5973\"* me|strong=\"H7200\"* and|strong=\"H7200\"* you|strong=\"H5921\"*.”" + }, + { + "verseNum": 51, + "text": "Laban|strong=\"H3837\"* said to|strong=\"H2088\"* Jacob|strong=\"H3290\"*, “See|strong=\"H2009\"* this|strong=\"H2088\"* heap|strong=\"H1530\"*, and|strong=\"H3290\"* see|strong=\"H2009\"* the|strong=\"H2009\"* pillar|strong=\"H4676\"*, which|strong=\"H2088\"* I|strong=\"H2009\"* have|strong=\"H1530\"* set|strong=\"H3384\"* between me and|strong=\"H3290\"* you|strong=\"H3384\"*." + }, + { + "verseNum": 52, + "text": "May|strong=\"H3808\"* this|strong=\"H2088\"* heap|strong=\"H1530\"* be|strong=\"H3808\"* a|strong=\"H3068\"* witness|strong=\"H5707\"*, and|strong=\"H2088\"* the|strong=\"H5674\"* pillar|strong=\"H4676\"* be|strong=\"H3808\"* a|strong=\"H3068\"* witness|strong=\"H5707\"*, that|strong=\"H2088\"* I|strong=\"H2088\"* will|strong=\"H3808\"* not|strong=\"H3808\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* this|strong=\"H2088\"* heap|strong=\"H1530\"* to|strong=\"H5674\"* you|strong=\"H3808\"*, and|strong=\"H2088\"* that|strong=\"H2088\"* you|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* this|strong=\"H2088\"* heap|strong=\"H1530\"* and|strong=\"H2088\"* this|strong=\"H2088\"* pillar|strong=\"H4676\"* to|strong=\"H5674\"* me|strong=\"H5674\"*, for|strong=\"H7451\"* harm|strong=\"H7451\"*." + }, + { + "verseNum": 53, + "text": "The|strong=\"H8199\"* God of|strong=\"H6343\"* Abraham, and|strong=\"H3290\"* the|strong=\"H8199\"* God of|strong=\"H6343\"* Nahor|strong=\"H5152\"*, the|strong=\"H8199\"* God of|strong=\"H6343\"* their|strong=\"H3290\"* father, judge|strong=\"H8199\"* between|strong=\"H8199\"* us|strong=\"H8199\"*.” Then Jacob|strong=\"H3290\"* swore|strong=\"H7650\"* by|strong=\"H7650\"* the|strong=\"H8199\"* fear|strong=\"H6343\"* of|strong=\"H6343\"* his|strong=\"H3327\"* father, Isaac|strong=\"H3327\"*." + }, + { + "verseNum": 54, + "text": "Jacob|strong=\"H3290\"* offered|strong=\"H2076\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* in|strong=\"H3899\"* the|strong=\"H7121\"* mountain|strong=\"H2022\"*, and|strong=\"H3899\"* called|strong=\"H7121\"* his|strong=\"H7121\"* relatives to|strong=\"H7121\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"*. They|strong=\"H7121\"* ate bread|strong=\"H3899\"*, and|strong=\"H3899\"* stayed|strong=\"H3885\"* all|strong=\"H3885\"* night|strong=\"H3885\"* in|strong=\"H3899\"* the|strong=\"H7121\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 55, + "text": "Early in the morning, Laban rose up, and kissed his sons and his daughters, and blessed them. Laban departed and returned to his place." + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "Jacob went|strong=\"H3212\"* on|strong=\"H4725\"* his|strong=\"H7725\"* way|strong=\"H3212\"*, and|strong=\"H1121\"* the|strong=\"H7725\"* angels of|strong=\"H1121\"* God met him|strong=\"H7725\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H1980\"* he|strong=\"H1980\"* saw|strong=\"H3290\"* them|strong=\"H1870\"*, Jacob|strong=\"H3290\"* said, “This|strong=\"H1870\"* is|strong=\"H1870\"* God’s army.” He|strong=\"H1980\"* called the|strong=\"H1870\"* name of|strong=\"H1870\"* that|strong=\"H4397\"* place Mahanaim.+ 32:2 “Mahanaim” means “two camps”.*" + }, + { + "verseNum": 3, + "text": "Jacob|strong=\"H3290\"* sent messengers in|strong=\"H8034\"* front of|strong=\"H8034\"* him|strong=\"H7121\"* to|strong=\"H7200\"* Esau, his|strong=\"H7121\"* brother, to|strong=\"H7200\"* the|strong=\"H7200\"* land|strong=\"H4725\"* of|strong=\"H8034\"* Seir, the|strong=\"H7200\"* field of|strong=\"H8034\"* Edom." + }, + { + "verseNum": 4, + "text": "He|strong=\"H7971\"* commanded them|strong=\"H7971\"*, saying, “This|strong=\"H6440\"* is|strong=\"H6440\"* what you|strong=\"H6440\"* shall|strong=\"H7704\"* tell my|strong=\"H7971\"* lord, Esau|strong=\"H6215\"*: ‘This|strong=\"H6440\"* is|strong=\"H6440\"* what your|strong=\"H6440\"* servant, Jacob|strong=\"H3290\"*, says. I|strong=\"H6440\"* have lived as|strong=\"H6440\"* a|strong=\"H3068\"* foreigner with|strong=\"H6440\"* Laban, and|strong=\"H7971\"* stayed until|strong=\"H7704\"* now|strong=\"H7971\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H5704\"* have|strong=\"H5650\"* cattle, donkeys, flocks, male|strong=\"H5650\"* servants|strong=\"H5650\"*, and|strong=\"H5650\"* female servants|strong=\"H5650\"*. I|strong=\"H5704\"* have|strong=\"H5650\"* sent|strong=\"H6680\"* to|strong=\"H5704\"* tell my|strong=\"H3290\"* lord, that|strong=\"H5650\"* I|strong=\"H5704\"* may|strong=\"H3541\"* find favor in|strong=\"H5650\"* your|strong=\"H6680\"* sight.’”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H7971\"* messengers|strong=\"H5650\"* returned to|strong=\"H7971\"* Jacob|strong=\"H7971\"*, saying, “We|strong=\"H4672\"* came|strong=\"H1961\"* to|strong=\"H7971\"* your|strong=\"H7971\"* brother Esau. He|strong=\"H7971\"* is|strong=\"H5650\"* coming|strong=\"H5650\"* to|strong=\"H7971\"* meet|strong=\"H4672\"* you|strong=\"H7971\"*, and|strong=\"H7971\"* four hundred men|strong=\"H5650\"* are|strong=\"H5869\"* with|strong=\"H5869\"* him|strong=\"H7971\"*.”" + }, + { + "verseNum": 7, + "text": "Then|strong=\"H1980\"* Jacob|strong=\"H3290\"* was|strong=\"H3290\"* greatly afraid and|strong=\"H3967\"* was|strong=\"H3290\"* distressed. He|strong=\"H1980\"* divided the|strong=\"H7725\"* people|strong=\"H1571\"* who|strong=\"H4397\"* were|strong=\"H3290\"* with|strong=\"H5973\"* him|strong=\"H7725\"*, along|strong=\"H1980\"* with|strong=\"H5973\"* the|strong=\"H7725\"* flocks, the|strong=\"H7725\"* herds, and|strong=\"H3967\"* the|strong=\"H7725\"* camels, into|strong=\"H1980\"* two|strong=\"H1980\"* companies." + }, + { + "verseNum": 8, + "text": "He|strong=\"H8147\"* said, “If Esau comes to|strong=\"H5971\"* the|strong=\"H3372\"* one|strong=\"H8147\"* company|strong=\"H4264\"*, and|strong=\"H5971\"* strikes it|strong=\"H4264\"*, then|strong=\"H3372\"* the|strong=\"H3372\"* company|strong=\"H4264\"* which|strong=\"H5971\"* is|strong=\"H5971\"* left will|strong=\"H5971\"* escape.”" + }, + { + "verseNum": 9, + "text": "Jacob said, “God of|strong=\"H4264\"* my|strong=\"H1961\"* father Abraham, and|strong=\"H4264\"* God of|strong=\"H4264\"* my|strong=\"H1961\"* father Isaac, Yahweh|strong=\"H3068\"*, who|strong=\"H7604\"* said to|strong=\"H1961\"* me|strong=\"H5221\"*, ‘Return to|strong=\"H1961\"* your|strong=\"H1961\"* country, and|strong=\"H4264\"* to|strong=\"H1961\"* your|strong=\"H1961\"* relatives, and|strong=\"H4264\"* I|strong=\"H6215\"* will|strong=\"H1961\"* do you|strong=\"H5221\"* good,’" + }, + { + "verseNum": 10, + "text": "I|strong=\"H3068\"* am|strong=\"H3068\"* not|strong=\"H7725\"* worthy of|strong=\"H3068\"* the|strong=\"H3068\"* least of|strong=\"H3068\"* all|strong=\"H7725\"* the|strong=\"H3068\"* loving kindnesses, and|strong=\"H3068\"* of|strong=\"H3068\"* all|strong=\"H7725\"* the|strong=\"H3068\"* truth, which|strong=\"H3068\"* you|strong=\"H7725\"* have|strong=\"H3068\"* shown|strong=\"H5973\"* to|strong=\"H7725\"* your|strong=\"H3068\"* servant; for|strong=\"H3068\"* with|strong=\"H5973\"* just my|strong=\"H3068\"* staff I|strong=\"H3068\"* crossed over|strong=\"H3068\"* this|strong=\"H7725\"* Jordan; and|strong=\"H3068\"* now|strong=\"H3327\"* I|strong=\"H3068\"* have|strong=\"H3068\"* become|strong=\"H7725\"* two companies." + }, + { + "verseNum": 11, + "text": "Please deliver me|strong=\"H6213\"* from|strong=\"H1961\"* the|strong=\"H3605\"* hand of|strong=\"H5650\"* my|strong=\"H3605\"* brother, from|strong=\"H1961\"* the|strong=\"H3605\"* hand of|strong=\"H5650\"* Esau; for|strong=\"H3588\"* I|strong=\"H3588\"* fear him|strong=\"H6213\"*, lest he|strong=\"H3588\"* come|strong=\"H1961\"* and|strong=\"H5650\"* strike me|strong=\"H6213\"* and|strong=\"H5650\"* the|strong=\"H3605\"* mothers with|strong=\"H6213\"* the|strong=\"H3605\"* children." + }, + { + "verseNum": 12, + "text": "You|strong=\"H3588\"* said, ‘I|strong=\"H3588\"* will|strong=\"H1121\"* surely|strong=\"H3588\"* do|strong=\"H4994\"* you|strong=\"H3588\"* good, and|strong=\"H1121\"* make|strong=\"H3027\"* your|strong=\"H5921\"* offspring|strong=\"H1121\"* as|strong=\"H3588\"* the|strong=\"H5921\"* sand of|strong=\"H1121\"* the|strong=\"H5921\"* sea, which|strong=\"H6215\"* can|strong=\"H1121\"*’t be|strong=\"H3027\"* counted because|strong=\"H3588\"* there are|strong=\"H1121\"* so|strong=\"H6435\"* many.’”" + }, + { + "verseNum": 13, + "text": "He|strong=\"H3808\"* stayed there|strong=\"H7230\"* that|strong=\"H3808\"* night, and|strong=\"H3220\"* took|strong=\"H7760\"* from|strong=\"H5973\"* that|strong=\"H3808\"* which|strong=\"H2344\"* he|strong=\"H3808\"* had|strong=\"H7760\"* with|strong=\"H5973\"* him|strong=\"H5973\"* a|strong=\"H3068\"* present for|strong=\"H3808\"* Esau, his|strong=\"H7760\"* brother:" + }, + { + "verseNum": 14, + "text": "two|strong=\"H3947\"* hundred female goats and|strong=\"H3027\"* twenty male goats, two|strong=\"H3947\"* hundred ewes and|strong=\"H3027\"* twenty rams," + }, + { + "verseNum": 15, + "text": "thirty milk camels and|strong=\"H3967\"* their colts, forty cows, ten bulls, twenty|strong=\"H6242\"* female|strong=\"H5795\"* donkeys and|strong=\"H3967\"* ten foals." + }, + { + "verseNum": 16, + "text": "He|strong=\"H6242\"* delivered them|strong=\"H1121\"* into the|strong=\"H1121\"* hands of|strong=\"H1121\"* his|strong=\"H1121\"* servants, every|strong=\"H1121\"* herd by|strong=\"H1121\"* itself, and|strong=\"H1121\"* said to|strong=\"H1121\"* his|strong=\"H1121\"* servants, “Pass over before me|strong=\"H1121\"*, and|strong=\"H1121\"* put a|strong=\"H3068\"* space between herd and|strong=\"H1121\"* herd.”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H5414\"* commanded the|strong=\"H6440\"* foremost, saying, “When|strong=\"H5674\"* Esau, my|strong=\"H5414\"* brother, meets you|strong=\"H5414\"*, and|strong=\"H3027\"* asks you|strong=\"H5414\"*, saying, ‘Whose|strong=\"H5650\"* are|strong=\"H3027\"* you|strong=\"H5414\"*? Where|strong=\"H3027\"* are|strong=\"H3027\"* you|strong=\"H5414\"* going|strong=\"H5674\"*? Whose|strong=\"H5650\"* are|strong=\"H3027\"* these|strong=\"H7760\"* before|strong=\"H6440\"* you|strong=\"H5414\"*?’" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H4310\"* say, ‘They|strong=\"H3588\"* are|strong=\"H4310\"* your|strong=\"H6440\"* servant, Jacob’s. It|strong=\"H3588\"* is|strong=\"H4310\"* a|strong=\"H3068\"* present sent|strong=\"H6680\"* to|strong=\"H3212\"* my|strong=\"H3588\"* lord, Esau|strong=\"H6215\"*. Behold, he|strong=\"H3588\"* also|strong=\"H3588\"* is|strong=\"H4310\"* behind us|strong=\"H6440\"*.’”" + }, + { + "verseNum": 19, + "text": "He|strong=\"H1931\"* commanded|strong=\"H1571\"* also|strong=\"H1571\"* the|strong=\"H7971\"* second, and|strong=\"H7971\"* the|strong=\"H7971\"* third, and|strong=\"H7971\"* all|strong=\"H7971\"* that|strong=\"H1931\"* followed the|strong=\"H7971\"* herds, saying, “This|strong=\"H1931\"* is|strong=\"H1931\"* how|strong=\"H2009\"* you|strong=\"H7971\"* shall|strong=\"H5650\"* speak to|strong=\"H7971\"* Esau|strong=\"H6215\"*, when|strong=\"H7971\"* you|strong=\"H7971\"* find him|strong=\"H7971\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H6680\"* shall|strong=\"H2088\"* say|strong=\"H1696\"*, ‘Not|strong=\"H2088\"* only|strong=\"H3605\"* that|strong=\"H3605\"*, but|strong=\"H1696\"* behold, your|strong=\"H3605\"* servant, Jacob, is|strong=\"H2088\"* behind|strong=\"H1980\"* us|strong=\"H4672\"*.’” For|strong=\"H3605\"*, he|strong=\"H3605\"* said|strong=\"H1696\"*, “I|strong=\"H1697\"* will|strong=\"H1571\"* appease him|strong=\"H4672\"* with|strong=\"H1980\"* the|strong=\"H3605\"* present|strong=\"H4672\"* that|strong=\"H3605\"* goes|strong=\"H1980\"* before|strong=\"H1980\"* me|strong=\"H1696\"*, and|strong=\"H1980\"* afterward I|strong=\"H1697\"* will|strong=\"H1571\"* see his|strong=\"H3605\"* face. Perhaps he|strong=\"H3605\"* will|strong=\"H1571\"* accept me|strong=\"H1696\"*.”" + }, + { + "verseNum": 21, + "text": "So|strong=\"H3651\"* the|strong=\"H6440\"* present|strong=\"H4503\"* passed|strong=\"H5650\"* over|strong=\"H6440\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H1980\"* he|strong=\"H3588\"* himself|strong=\"H6440\"* stayed that|strong=\"H3588\"* night in|strong=\"H1980\"* the|strong=\"H6440\"* camp." + }, + { + "verseNum": 22, + "text": "He|strong=\"H1931\"* rose up|strong=\"H5921\"* that|strong=\"H1931\"* night|strong=\"H3915\"*, and|strong=\"H6440\"* took|strong=\"H5674\"* his|strong=\"H6440\"* two wives, and|strong=\"H6440\"* his|strong=\"H6440\"* two servants|strong=\"H6440\"*, and|strong=\"H6440\"* his|strong=\"H6440\"* eleven sons, and|strong=\"H6440\"* crossed|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H6440\"* ford|strong=\"H5674\"* of|strong=\"H6440\"* the|strong=\"H6440\"* Jabbok." + }, + { + "verseNum": 23, + "text": "He|strong=\"H1931\"* took|strong=\"H3947\"* them|strong=\"H3947\"*, and|strong=\"H6965\"* sent|strong=\"H5674\"* them|strong=\"H3947\"* over|strong=\"H5674\"* the|strong=\"H3947\"* stream, and|strong=\"H6965\"* sent|strong=\"H5674\"* over|strong=\"H5674\"* that|strong=\"H1931\"* which|strong=\"H1931\"* he|strong=\"H1931\"* had|strong=\"H8198\"*." + }, + { + "verseNum": 24, + "text": "Jacob was left|strong=\"H5674\"* alone, and|strong=\"H3947\"* wrestled with|strong=\"H3947\"* a|strong=\"H3068\"* man|strong=\"H5674\"* there|strong=\"H5158\"* until the|strong=\"H3947\"* breaking of|strong=\"H5158\"* the|strong=\"H3947\"* day." + }, + { + "verseNum": 25, + "text": "When|strong=\"H5704\"* he|strong=\"H5704\"* saw|strong=\"H3290\"* that|strong=\"H5704\"* he|strong=\"H5704\"* didn’t prevail against|strong=\"H5973\"* him|strong=\"H5973\"*, the|strong=\"H5704\"* man touched the|strong=\"H5704\"* hollow of|strong=\"H3498\"* his|strong=\"H3290\"* thigh, and|strong=\"H5927\"* the|strong=\"H5704\"* hollow of|strong=\"H3498\"* Jacob|strong=\"H3290\"*’s thigh was|strong=\"H3290\"* strained as|strong=\"H5704\"* he|strong=\"H5704\"* wrestled." + }, + { + "verseNum": 26, + "text": "The|strong=\"H7200\"* man|strong=\"H7200\"* said, “Let|strong=\"H3808\"* me|strong=\"H7200\"* go|strong=\"H3201\"*, for|strong=\"H3588\"* the|strong=\"H7200\"* day breaks.”" + }, + { + "verseNum": 27, + "text": "He|strong=\"H3588\"* said to|strong=\"H7971\"* him|strong=\"H7971\"*, “What|strong=\"H5927\"* is|strong=\"H1288\"* your|strong=\"H3588\"* name?”" + }, + { + "verseNum": 28, + "text": "He|strong=\"H3290\"* said, “Your|strong=\"H4100\"* name|strong=\"H8034\"* will|strong=\"H3290\"* no longer be|strong=\"H8034\"* called|strong=\"H8034\"* Jacob|strong=\"H3290\"*, but|strong=\"H4100\"* Israel; for|strong=\"H8034\"* you|strong=\"H4100\"* have|strong=\"H8034\"* fought with|strong=\"H8034\"* God and|strong=\"H3290\"* with|strong=\"H8034\"* men|strong=\"H8034\"*, and|strong=\"H3290\"* have|strong=\"H8034\"* prevailed.”" + }, + { + "verseNum": 29, + "text": "Jacob|strong=\"H3290\"* asked him|strong=\"H5973\"*, “Please tell me|strong=\"H5973\"* your|strong=\"H3588\"* name|strong=\"H8034\"*.”" + }, + { + "verseNum": 30, + "text": "Jacob|strong=\"H3290\"* called|strong=\"H8034\"* the|strong=\"H1288\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H1288\"* place|strong=\"H8033\"* Peniel;+ 32:30 Peniel means “face of God”.* for|strong=\"H8034\"* he|strong=\"H8033\"* said, “I|strong=\"H2088\"* have|strong=\"H8034\"* seen God face to|strong=\"H8033\"* face, and|strong=\"H8033\"* my|strong=\"H5046\"* life is|strong=\"H2088\"* preserved.”" + }, + { + "verseNum": 31, + "text": "The|strong=\"H6440\"* sun rose|strong=\"H3290\"* on|strong=\"H7200\"* him|strong=\"H6440\"* as|strong=\"H5315\"* he|strong=\"H3588\"* passed over|strong=\"H6440\"* Peniel|strong=\"H6439\"*, and|strong=\"H6440\"* he|strong=\"H3588\"* limped because|strong=\"H3588\"* of|strong=\"H6440\"* his|strong=\"H7121\"* thigh." + }, + { + "verseNum": 32, + "text": "Therefore|strong=\"H5921\"* the|strong=\"H5921\"* children of|strong=\"H5921\"* Israel don’t eat the|strong=\"H5921\"* sinew of|strong=\"H5921\"* the|strong=\"H5921\"* hip|strong=\"H3409\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* on|strong=\"H5921\"* the|strong=\"H5921\"* hollow of|strong=\"H5921\"* the|strong=\"H5921\"* thigh|strong=\"H3409\"*, to|strong=\"H5921\"* this|strong=\"H1931\"* day, because|strong=\"H5921\"* he|strong=\"H1931\"* touched the|strong=\"H5921\"* hollow of|strong=\"H5921\"* Jacob’s thigh|strong=\"H3409\"* in|strong=\"H5921\"* the|strong=\"H5921\"* sinew of|strong=\"H5921\"* the|strong=\"H5921\"* hip|strong=\"H3409\"*." + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Jacob|strong=\"H3290\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"*, and|strong=\"H3967\"* looked|strong=\"H7200\"*, and|strong=\"H3967\"*, behold|strong=\"H2009\"*, Esau|strong=\"H6215\"* was|strong=\"H3206\"* coming|strong=\"H2009\"*, and|strong=\"H3967\"* with|strong=\"H5973\"* him|strong=\"H5921\"* four hundred|strong=\"H3967\"* men|strong=\"H3206\"*. He|strong=\"H8147\"* divided|strong=\"H2673\"* the|strong=\"H5921\"* children|strong=\"H3206\"* between|strong=\"H5973\"* Leah|strong=\"H3812\"*, Rachel|strong=\"H7354\"*, and|strong=\"H3967\"* the|strong=\"H5921\"* two|strong=\"H8147\"* servants|strong=\"H8198\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H7760\"* put|strong=\"H7760\"* the|strong=\"H7760\"* servants|strong=\"H8198\"* and|strong=\"H7223\"* their|strong=\"H7760\"* children|strong=\"H3206\"* in|strong=\"H7760\"* front|strong=\"H7223\"*, Leah|strong=\"H3812\"* and|strong=\"H7223\"* her|strong=\"H7760\"* children|strong=\"H3206\"* after, and|strong=\"H7223\"* Rachel|strong=\"H7354\"* and|strong=\"H7223\"* Joseph|strong=\"H3130\"* at the|strong=\"H7760\"* rear." + }, + { + "verseNum": 3, + "text": "He|strong=\"H1931\"* himself|strong=\"H1931\"* passed|strong=\"H5674\"* over|strong=\"H5674\"* in|strong=\"H6440\"* front|strong=\"H6440\"* of|strong=\"H6440\"* them|strong=\"H6440\"*, and|strong=\"H6440\"* bowed|strong=\"H7812\"* himself|strong=\"H1931\"* to|strong=\"H5704\"* the|strong=\"H6440\"* ground|strong=\"H6440\"* seven|strong=\"H7651\"* times|strong=\"H6471\"*, until|strong=\"H5704\"* he|strong=\"H1931\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H5704\"* his|strong=\"H6440\"* brother." + }, + { + "verseNum": 4, + "text": "Esau|strong=\"H6215\"* ran|strong=\"H7323\"* to|strong=\"H5921\"* meet|strong=\"H7125\"* him|strong=\"H5921\"*, embraced|strong=\"H2263\"* him|strong=\"H5921\"*, fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H5921\"* neck|strong=\"H6677\"*, kissed|strong=\"H5401\"* him|strong=\"H5921\"*, and|strong=\"H7323\"* they|strong=\"H5921\"* wept|strong=\"H1058\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H4310\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"*, and|strong=\"H5869\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* women and|strong=\"H5869\"* the|strong=\"H7200\"* children|strong=\"H3206\"*; and|strong=\"H5869\"* said, “Who|strong=\"H4310\"* are|strong=\"H5869\"* these with|strong=\"H5869\"* you|strong=\"H7200\"*?”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H5066\"* the|strong=\"H7812\"* servants|strong=\"H8198\"* came|strong=\"H5066\"* near|strong=\"H5066\"* with|strong=\"H5066\"* their|strong=\"H7812\"* children|strong=\"H3206\"*, and|strong=\"H5066\"* they|strong=\"H2007\"* bowed|strong=\"H7812\"* themselves|strong=\"H7812\"*." + }, + { + "verseNum": 7, + "text": "Leah|strong=\"H3812\"* also|strong=\"H1571\"* and|strong=\"H5066\"* her|strong=\"H1571\"* children|strong=\"H3206\"* came|strong=\"H5066\"* near|strong=\"H5066\"*, and|strong=\"H5066\"* bowed|strong=\"H7812\"* themselves|strong=\"H7812\"*. After them|strong=\"H5066\"*, Joseph|strong=\"H3130\"* came|strong=\"H5066\"* near|strong=\"H5066\"* with|strong=\"H1571\"* Rachel|strong=\"H7354\"*, and|strong=\"H5066\"* they|strong=\"H1571\"* bowed|strong=\"H7812\"* themselves|strong=\"H7812\"*." + }, + { + "verseNum": 8, + "text": "Esau|strong=\"H4310\"* said, “What|strong=\"H4310\"* do|strong=\"H5869\"* you|strong=\"H3605\"* mean by|strong=\"H3605\"* all|strong=\"H3605\"* this|strong=\"H2088\"* company|strong=\"H4264\"* which|strong=\"H4310\"* I|strong=\"H2088\"* met|strong=\"H6298\"*?”" + }, + { + "verseNum": 9, + "text": "Esau|strong=\"H6215\"* said, “I|strong=\"H6215\"* have|strong=\"H1961\"* enough|strong=\"H7227\"*, my|strong=\"H1961\"* brother; let|strong=\"H1961\"* that|strong=\"H3426\"* which|strong=\"H3426\"* you|strong=\"H1961\"* have|strong=\"H1961\"* be|strong=\"H1961\"* yours.”" + }, + { + "verseNum": 10, + "text": "Jacob|strong=\"H3290\"* said|strong=\"H3651\"*, “Please|strong=\"H4994\"*, no|strong=\"H4672\"*, if|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5869\"* now|strong=\"H4994\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* your|strong=\"H3947\"* sight|strong=\"H5869\"*, then|strong=\"H3947\"* receive|strong=\"H3947\"* my|strong=\"H7200\"* present|strong=\"H4503\"* at|strong=\"H5921\"* my|strong=\"H7200\"* hand|strong=\"H3027\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5869\"* seen|strong=\"H7200\"* your|strong=\"H3947\"* face|strong=\"H6440\"*, as|strong=\"H3651\"* one|strong=\"H3588\"* sees|strong=\"H7200\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H3027\"* God|strong=\"H3027\"*, and|strong=\"H3027\"* you|strong=\"H3588\"* were|strong=\"H5869\"* pleased|strong=\"H7521\"* with|strong=\"H5921\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 11, + "text": "Please|strong=\"H4994\"* take|strong=\"H3947\"* the|strong=\"H3605\"* gift|strong=\"H1293\"* that|strong=\"H3588\"* I|strong=\"H3588\"* brought|strong=\"H3947\"* to|strong=\"H3947\"* you|strong=\"H3588\"*, because|strong=\"H3588\"* God has|strong=\"H3588\"* dealt|strong=\"H2603\"* graciously|strong=\"H2603\"* with|strong=\"H3605\"* me|strong=\"H4994\"*, and|strong=\"H3947\"* because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3426\"* enough|strong=\"H3605\"*.” He|strong=\"H3588\"* urged|strong=\"H6484\"* him|strong=\"H3947\"*, and|strong=\"H3947\"* he|strong=\"H3588\"* took|strong=\"H3947\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 12, + "text": "Esau said, “Let|strong=\"H3212\"*’s take|strong=\"H3212\"* our|strong=\"H5048\"* journey|strong=\"H5265\"*, and|strong=\"H3212\"* let|strong=\"H3212\"*’s go|strong=\"H3212\"*, and|strong=\"H3212\"* I|strong=\"H3212\"* will go|strong=\"H3212\"* before|strong=\"H5048\"* you|strong=\"H3212\"*.”" + }, + { + "verseNum": 13, + "text": "Jacob said to|strong=\"H4191\"* him|strong=\"H5921\"*, “My|strong=\"H3605\"* lord knows|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3605\"* children|strong=\"H3206\"* are|strong=\"H3117\"* tender|strong=\"H7390\"*, and|strong=\"H3117\"* that|strong=\"H3588\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"* and|strong=\"H3117\"* herds|strong=\"H1241\"* with|strong=\"H5921\"* me|strong=\"H5921\"* have|strong=\"H3045\"* their|strong=\"H3605\"* young|strong=\"H1241\"*, and|strong=\"H3117\"* if|strong=\"H3588\"* they|strong=\"H3588\"* overdrive|strong=\"H1849\"* them|strong=\"H5921\"* one|strong=\"H3605\"* day|strong=\"H3117\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"* will|strong=\"H3117\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 14, + "text": "Please|strong=\"H4994\"* let|strong=\"H4994\"* my|strong=\"H5674\"* lord pass|strong=\"H5674\"* over|strong=\"H5674\"* before|strong=\"H6440\"* his|strong=\"H6440\"* servant|strong=\"H5650\"*, and|strong=\"H5650\"* I|strong=\"H5704\"* will|strong=\"H5650\"* lead|strong=\"H5095\"* on|strong=\"H5674\"* gently, according to|strong=\"H5704\"* the|strong=\"H6440\"* pace|strong=\"H7272\"* of|strong=\"H6440\"* the|strong=\"H6440\"* livestock that|strong=\"H5650\"* are|strong=\"H5650\"* before|strong=\"H6440\"* me|strong=\"H6440\"* and|strong=\"H5650\"* according to|strong=\"H5704\"* the|strong=\"H6440\"* pace|strong=\"H7272\"* of|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H3206\"*, until|strong=\"H5704\"* I|strong=\"H5704\"* come|strong=\"H5674\"* to|strong=\"H5704\"* my|strong=\"H5674\"* lord to|strong=\"H5704\"* Seir|strong=\"H8165\"*.”" + }, + { + "verseNum": 15, + "text": "Esau|strong=\"H6215\"* said, “Let|strong=\"H4994\"* me|strong=\"H4994\"* now|strong=\"H4994\"* leave|strong=\"H4480\"* with|strong=\"H5973\"* you|strong=\"H5973\"* some|strong=\"H4480\"* of|strong=\"H5869\"* the|strong=\"H4480\"* people|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* with|strong=\"H5973\"* me|strong=\"H4994\"*.”" + }, + { + "verseNum": 16, + "text": "So|strong=\"H7725\"* Esau|strong=\"H6215\"* returned|strong=\"H7725\"* that|strong=\"H3117\"* day|strong=\"H3117\"* on|strong=\"H3117\"* his|strong=\"H7725\"* way|strong=\"H1870\"* to|strong=\"H7725\"* Seir|strong=\"H8165\"*." + }, + { + "verseNum": 17, + "text": "Jacob|strong=\"H3290\"* traveled|strong=\"H5265\"* to|strong=\"H5921\"* Succoth|strong=\"H5523\"*, built|strong=\"H1129\"* himself|strong=\"H6213\"* a|strong=\"H3068\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* made|strong=\"H6213\"* shelters|strong=\"H5521\"* for|strong=\"H5921\"* his|strong=\"H7121\"* livestock|strong=\"H4735\"*. Therefore|strong=\"H3651\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H1004\"* the|strong=\"H5921\"* place|strong=\"H4725\"* is|strong=\"H8034\"* called|strong=\"H7121\"* Succoth|strong=\"H5523\"*.+ 33:17 succoth means shelters or booths.*" + }, + { + "verseNum": 18, + "text": "Jacob|strong=\"H3290\"* came in|strong=\"H2583\"* peace to|strong=\"H6440\"* the|strong=\"H6440\"* city|strong=\"H5892\"* of|strong=\"H5892\"* Shechem|strong=\"H7927\"*, which|strong=\"H5892\"* is|strong=\"H5892\"* in|strong=\"H2583\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H5892\"* Canaan|strong=\"H3667\"*, when|strong=\"H3290\"* he|strong=\"H6440\"* came from|strong=\"H6440\"* Paddan|strong=\"H6307\"* Aram|strong=\"H6307\"*; and|strong=\"H5892\"* encamped|strong=\"H2583\"* before|strong=\"H6440\"* the|strong=\"H6440\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H8033\"* bought|strong=\"H7069\"* the|strong=\"H3027\"* parcel|strong=\"H2513\"* of|strong=\"H1121\"* ground|strong=\"H7704\"* where|strong=\"H8033\"* he|strong=\"H8033\"* had|strong=\"H3027\"* spread|strong=\"H5186\"* his|strong=\"H5186\"* tent, at|strong=\"H7704\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3027\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hamor|strong=\"H2544\"*, Shechem|strong=\"H7927\"*’s father|strong=\"H1121\"*, for|strong=\"H3027\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* pieces|strong=\"H7192\"* of|strong=\"H1121\"* money|strong=\"H7192\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H8033\"* erected|strong=\"H5324\"* an|strong=\"H8033\"* altar|strong=\"H4196\"* there|strong=\"H8033\"*, and|strong=\"H3478\"* called|strong=\"H7121\"* it|strong=\"H7121\"* El Elohe Israel|strong=\"H3478\"*.+ 33:20 El Elohe Israel means “God, the God of Israel” or “The God of Israel is mighty”.*" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Dinah|strong=\"H1783\"*, the|strong=\"H7200\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Leah|strong=\"H3812\"*, whom she bore|strong=\"H3205\"* to|strong=\"H3318\"* Jacob|strong=\"H3290\"*, went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* see|strong=\"H7200\"* the|strong=\"H7200\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* the|strong=\"H7200\"* land." + }, + { + "verseNum": 2, + "text": "Shechem|strong=\"H7927\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hamor|strong=\"H2544\"* the|strong=\"H7200\"* Hivite|strong=\"H2340\"*, the|strong=\"H7200\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H7200\"* land, saw|strong=\"H7200\"* her|strong=\"H3947\"*. He|strong=\"H3947\"* took|strong=\"H3947\"* her|strong=\"H3947\"*, lay|strong=\"H7901\"* with|strong=\"H7901\"* her|strong=\"H3947\"*, and|strong=\"H1121\"* humbled|strong=\"H6031\"* her|strong=\"H3947\"*." + }, + { + "verseNum": 3, + "text": "His|strong=\"H5921\"* soul|strong=\"H5315\"* joined|strong=\"H1692\"* to|strong=\"H1696\"* Dinah|strong=\"H1783\"*, the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Jacob|strong=\"H3290\"*, and|strong=\"H3290\"* he|strong=\"H5921\"* loved the|strong=\"H5921\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*, and|strong=\"H3290\"* spoke|strong=\"H1696\"* kindly|strong=\"H3820\"* to|strong=\"H1696\"* the|strong=\"H5921\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*." + }, + { + "verseNum": 4, + "text": "Shechem|strong=\"H7927\"* spoke to|strong=\"H3947\"* his|strong=\"H3947\"* father, Hamor|strong=\"H2544\"*, saying, “Get|strong=\"H3947\"* me|strong=\"H3947\"* this|strong=\"H2063\"* young|strong=\"H3207\"* lady as|strong=\"H3947\"* a|strong=\"H3068\"* wife.”" + }, + { + "verseNum": 5, + "text": "Now|strong=\"H1961\"* Jacob|strong=\"H3290\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1961\"* defiled|strong=\"H2930\"* Dinah|strong=\"H1783\"*, his|strong=\"H8085\"* daughter|strong=\"H1323\"*; and|strong=\"H1121\"* his|strong=\"H8085\"* sons|strong=\"H1121\"* were|strong=\"H1961\"* with|strong=\"H8085\"* his|strong=\"H8085\"* livestock|strong=\"H4735\"* in|strong=\"H8085\"* the|strong=\"H8085\"* field|strong=\"H7704\"*. Jacob|strong=\"H3290\"* held|strong=\"H1961\"* his|strong=\"H8085\"* peace|strong=\"H2790\"* until|strong=\"H5704\"* they|strong=\"H3588\"* came|strong=\"H1961\"*." + }, + { + "verseNum": 6, + "text": "Hamor|strong=\"H2544\"* the|strong=\"H3318\"* father of|strong=\"H3318\"* Shechem|strong=\"H7927\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H1696\"* Jacob|strong=\"H3290\"* to|strong=\"H1696\"* talk|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H3318\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H8085\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"* came|strong=\"H3478\"* in|strong=\"H3478\"* from|strong=\"H4480\"* the|strong=\"H8085\"* field|strong=\"H7704\"* when|strong=\"H3588\"* they|strong=\"H3588\"* heard|strong=\"H8085\"* it|strong=\"H3588\"*. The|strong=\"H8085\"* men|strong=\"H1121\"* were|strong=\"H3478\"* grieved|strong=\"H6087\"*, and|strong=\"H1121\"* they|strong=\"H3588\"* were|strong=\"H3478\"* very|strong=\"H3966\"* angry|strong=\"H2734\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3478\"* done|strong=\"H6213\"* folly|strong=\"H5039\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* lying|strong=\"H7901\"* with|strong=\"H6213\"* Jacob|strong=\"H3290\"*’s daughter|strong=\"H1323\"*, a|strong=\"H3068\"* thing|strong=\"H5039\"* that|strong=\"H3588\"* ought|strong=\"H3651\"* not|strong=\"H3808\"* to|strong=\"H3478\"* be|strong=\"H3808\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 8, + "text": "Hamor|strong=\"H2544\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* them|strong=\"H5414\"*, saying|strong=\"H1696\"*, “The|strong=\"H5414\"* soul|strong=\"H5315\"* of|strong=\"H1121\"* my|strong=\"H5414\"* son|strong=\"H1121\"*, Shechem|strong=\"H7927\"*, longs|strong=\"H2836\"* for|strong=\"H1121\"* your|strong=\"H5414\"* daughter|strong=\"H1323\"*. Please|strong=\"H4994\"* give|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H1696\"* him|strong=\"H5414\"* as|strong=\"H5315\"* a|strong=\"H3068\"* wife|strong=\"H1696\"*." + }, + { + "verseNum": 9, + "text": "Make|strong=\"H5414\"* marriages|strong=\"H2859\"* with|strong=\"H2859\"* us|strong=\"H5414\"*. Give|strong=\"H5414\"* your|strong=\"H5414\"* daughters|strong=\"H1323\"* to|strong=\"H5414\"* us|strong=\"H5414\"*, and|strong=\"H1323\"* take|strong=\"H3947\"* our|strong=\"H5414\"* daughters|strong=\"H1323\"* for|strong=\"H5414\"* yourselves." + }, + { + "verseNum": 10, + "text": "You|strong=\"H6440\"* shall|strong=\"H6440\"* dwell|strong=\"H3427\"* with|strong=\"H3427\"* us|strong=\"H6440\"*, and|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H6440\"* will|strong=\"H1961\"* be|strong=\"H1961\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. Live|strong=\"H3427\"* and|strong=\"H6440\"* trade|strong=\"H5503\"* in|strong=\"H3427\"* it|strong=\"H6440\"*, and|strong=\"H6440\"* get possessions in|strong=\"H3427\"* it|strong=\"H6440\"*.”" + }, + { + "verseNum": 11, + "text": "Shechem|strong=\"H7927\"* said to|strong=\"H5414\"* her|strong=\"H5414\"* father and|strong=\"H5869\"* to|strong=\"H5414\"* her|strong=\"H5414\"* brothers, “Let|strong=\"H5414\"* me|strong=\"H5414\"* find|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H4672\"* your|strong=\"H5414\"* eyes|strong=\"H5869\"*, and|strong=\"H5869\"* whatever you|strong=\"H5414\"* will|strong=\"H5869\"* tell me|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H5869\"* give|strong=\"H5414\"*." + }, + { + "verseNum": 12, + "text": "Ask|strong=\"H7235\"* me|strong=\"H5414\"* a|strong=\"H3068\"* great|strong=\"H3966\"* amount|strong=\"H7235\"* for|strong=\"H5921\"* a|strong=\"H3068\"* dowry|strong=\"H4119\"*, and|strong=\"H3966\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* whatever you|strong=\"H5414\"* ask|strong=\"H7235\"* of|strong=\"H5921\"* me|strong=\"H5414\"*, but|strong=\"H5921\"* give|strong=\"H5414\"* me|strong=\"H5414\"* the|strong=\"H5921\"* young|strong=\"H5291\"* lady|strong=\"H5291\"* as|strong=\"H5414\"* a|strong=\"H3068\"* wife.”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H1696\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"* answered|strong=\"H6030\"* Shechem|strong=\"H7927\"* and|strong=\"H1121\"* Hamor|strong=\"H2544\"* his|strong=\"H2930\"* father|strong=\"H1121\"* with|strong=\"H1696\"* deceit|strong=\"H4820\"* when|strong=\"H1696\"* they|strong=\"H4820\"* spoke|strong=\"H1696\"*, because he|strong=\"H1696\"* had|strong=\"H3290\"* defiled|strong=\"H2930\"* Dinah|strong=\"H1783\"* their|strong=\"H3290\"* sister," + }, + { + "verseNum": 14, + "text": "and|strong=\"H6213\"* said|strong=\"H1697\"* to|strong=\"H3201\"* them|strong=\"H5414\"*, “We|strong=\"H3588\"* can|strong=\"H3201\"*’t do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*, to|strong=\"H3201\"* give|strong=\"H5414\"* our|strong=\"H5414\"* sister to|strong=\"H3201\"* one|strong=\"H2088\"* who|strong=\"H1931\"* is|strong=\"H2088\"* uncircumcised|strong=\"H6190\"*; for|strong=\"H3588\"* that|strong=\"H3588\"* is|strong=\"H2088\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* to|strong=\"H3201\"* us|strong=\"H5414\"*." + }, + { + "verseNum": 15, + "text": "Only|strong=\"H3605\"* on|strong=\"H1961\"* this|strong=\"H2063\"* condition will|strong=\"H1961\"* we|strong=\"H3068\"* consent to|strong=\"H1961\"* you|strong=\"H3605\"*. If|strong=\"H1961\"* you|strong=\"H3605\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* we|strong=\"H3068\"* are|strong=\"H1961\"*, that|strong=\"H3605\"* every|strong=\"H3605\"* male|strong=\"H2145\"* of|strong=\"H3605\"* you|strong=\"H3605\"* be|strong=\"H1961\"* circumcised|strong=\"H4135\"*," + }, + { + "verseNum": 16, + "text": "then|strong=\"H1961\"* will|strong=\"H1961\"* we|strong=\"H3068\"* give|strong=\"H5414\"* our|strong=\"H5414\"* daughters|strong=\"H1323\"* to|strong=\"H1961\"* you|strong=\"H5414\"*; and|strong=\"H5971\"* we|strong=\"H3068\"* will|strong=\"H1961\"* take|strong=\"H3947\"* your|strong=\"H5414\"* daughters|strong=\"H1323\"* to|strong=\"H1961\"* us|strong=\"H5414\"*, and|strong=\"H5971\"* we|strong=\"H3068\"* will|strong=\"H1961\"* dwell|strong=\"H3427\"* with|strong=\"H3427\"* you|strong=\"H5414\"*, and|strong=\"H5971\"* we|strong=\"H3068\"* will|strong=\"H1961\"* become|strong=\"H1961\"* one|strong=\"H1961\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H3808\"* if you|strong=\"H3947\"* will|strong=\"H3808\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H1980\"* us|strong=\"H8085\"* and|strong=\"H1980\"* be|strong=\"H3808\"* circumcised|strong=\"H4135\"*, then|strong=\"H1980\"* we|strong=\"H3068\"* will|strong=\"H3808\"* take|strong=\"H3947\"* our|strong=\"H3947\"* sister,+ 34:17 Hebrew has, literally, “daughter”* and|strong=\"H1980\"* we|strong=\"H3068\"* will|strong=\"H3808\"* be|strong=\"H3808\"* gone|strong=\"H1980\"*.”" + }, + { + "verseNum": 18, + "text": "Their words|strong=\"H1697\"* pleased|strong=\"H3190\"* Hamor|strong=\"H2544\"* and|strong=\"H1121\"* Shechem|strong=\"H7927\"*, Hamor|strong=\"H2544\"*’s son|strong=\"H1121\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H3605\"* young|strong=\"H5288\"* man|strong=\"H5288\"* didn’t wait to|strong=\"H6213\"* do|strong=\"H6213\"* this|strong=\"H6213\"* thing|strong=\"H1697\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* had|strong=\"H3588\"* delight|strong=\"H2654\"* in|strong=\"H6213\"* Jacob|strong=\"H3290\"*’s daughter|strong=\"H1323\"*, and|strong=\"H1004\"* he|strong=\"H1931\"* was|strong=\"H1931\"* honored|strong=\"H3513\"* above all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* his|strong=\"H3605\"* father." + }, + { + "verseNum": 20, + "text": "Hamor|strong=\"H2544\"* and|strong=\"H1121\"* Shechem|strong=\"H7927\"*, his|strong=\"H7927\"* son|strong=\"H1121\"*, came to|strong=\"H1696\"* the|strong=\"H1696\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* their city|strong=\"H5892\"*, and|strong=\"H1121\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* the|strong=\"H1696\"* men|strong=\"H1121\"* of|strong=\"H1121\"* their city|strong=\"H5892\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 21, + "text": "“These|strong=\"H1992\"* men|strong=\"H1992\"* are|strong=\"H1992\"* peaceful|strong=\"H3427\"* with|strong=\"H3427\"* us|strong=\"H5414\"*. Therefore|strong=\"H3947\"* let|strong=\"H5414\"* them|strong=\"H5414\"* live|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* land|strong=\"H6440\"* and|strong=\"H3027\"* trade|strong=\"H5503\"* in|strong=\"H3427\"* it|strong=\"H5414\"*. For|strong=\"H6440\"* behold|strong=\"H2009\"*, the|strong=\"H6440\"* land|strong=\"H6440\"* is|strong=\"H3027\"* large|strong=\"H7342\"* enough|strong=\"H3027\"* for|strong=\"H6440\"* them|strong=\"H5414\"*. Let|strong=\"H5414\"*’s take|strong=\"H3947\"* their|strong=\"H5414\"* daughters|strong=\"H1323\"* to|strong=\"H5414\"* us|strong=\"H5414\"* for|strong=\"H6440\"* wives, and|strong=\"H3027\"* let|strong=\"H5414\"*’s give|strong=\"H5414\"* them|strong=\"H5414\"* our|strong=\"H5414\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 22, + "text": "Only|strong=\"H3605\"* on|strong=\"H3427\"* this|strong=\"H2063\"* condition will|strong=\"H1961\"* the|strong=\"H3605\"* men|strong=\"H2145\"* consent to|strong=\"H1961\"* us|strong=\"H1961\"* to|strong=\"H1961\"* live|strong=\"H3427\"* with|strong=\"H3427\"* us|strong=\"H1961\"*, to|strong=\"H1961\"* become|strong=\"H1961\"* one|strong=\"H3605\"* people|strong=\"H5971\"*, if|strong=\"H1961\"* every|strong=\"H3605\"* male|strong=\"H2145\"* among|strong=\"H3427\"* us|strong=\"H1961\"* is|strong=\"H3605\"* circumcised|strong=\"H4135\"*, as|strong=\"H1961\"* they|strong=\"H1992\"* are|strong=\"H1992\"* circumcised|strong=\"H4135\"*." + }, + { + "verseNum": 23, + "text": "Won’t their|strong=\"H3605\"* livestock|strong=\"H4735\"* and|strong=\"H3427\"* their|strong=\"H3605\"* possessions|strong=\"H4735\"* and|strong=\"H3427\"* all|strong=\"H3605\"* their|strong=\"H3605\"* animals be|strong=\"H3808\"* ours? Only|strong=\"H3605\"* let|strong=\"H3808\"*’s give our|strong=\"H3605\"* consent to|strong=\"H3427\"* them|strong=\"H1992\"*, and|strong=\"H3427\"* they|strong=\"H1992\"* will|strong=\"H3808\"* dwell|strong=\"H3427\"* with|strong=\"H3427\"* us.”" + }, + { + "verseNum": 24, + "text": "All|strong=\"H3605\"* who|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* his|strong=\"H3605\"* city|strong=\"H5892\"* listened|strong=\"H8085\"* to|strong=\"H3318\"* Hamor|strong=\"H2544\"*, and|strong=\"H1121\"* to|strong=\"H3318\"* Shechem|strong=\"H7927\"* his|strong=\"H3605\"* son|strong=\"H1121\"*; and|strong=\"H1121\"* every|strong=\"H3605\"* male|strong=\"H2145\"* was|strong=\"H5892\"* circumcised|strong=\"H4135\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* his|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 25, + "text": "On|strong=\"H5921\"* the|strong=\"H3605\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, when|strong=\"H1961\"* they|strong=\"H3117\"* were|strong=\"H1961\"* sore|strong=\"H3510\"*, two|strong=\"H8147\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*’s sons|strong=\"H1121\"*, Simeon|strong=\"H8095\"* and|strong=\"H1121\"* Levi|strong=\"H3878\"*, Dinah|strong=\"H1783\"*’s brothers|strong=\"H1121\"*, each|strong=\"H3605\"* took|strong=\"H3947\"* his|strong=\"H3605\"* sword|strong=\"H2719\"*, came|strong=\"H1961\"* upon|strong=\"H5921\"* the|strong=\"H3605\"* unsuspecting city|strong=\"H5892\"*, and|strong=\"H1121\"* killed|strong=\"H2026\"* all|strong=\"H3605\"* the|strong=\"H3605\"* males|strong=\"H2145\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H6310\"* killed|strong=\"H2026\"* Hamor|strong=\"H2544\"* and|strong=\"H1121\"* Shechem|strong=\"H7927\"*, his|strong=\"H3947\"* son|strong=\"H1121\"*, with|strong=\"H1004\"* the|strong=\"H3947\"* edge|strong=\"H6310\"* of|strong=\"H1121\"* the|strong=\"H3947\"* sword|strong=\"H2719\"*, and|strong=\"H1121\"* took|strong=\"H3947\"* Dinah|strong=\"H1783\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Shechem|strong=\"H7927\"*’s house|strong=\"H1004\"*, and|strong=\"H1121\"* went|strong=\"H3318\"* away|strong=\"H3947\"*." + }, + { + "verseNum": 27, + "text": "Jacob|strong=\"H3290\"*’s sons|strong=\"H1121\"* came on|strong=\"H5921\"* the|strong=\"H5921\"* dead|strong=\"H2491\"*, and|strong=\"H1121\"* plundered the|strong=\"H5921\"* city|strong=\"H5892\"*, because|strong=\"H5921\"* they|strong=\"H5921\"* had|strong=\"H3290\"* defiled|strong=\"H2930\"* their|strong=\"H5921\"* sister." + }, + { + "verseNum": 28, + "text": "They|strong=\"H5892\"* took|strong=\"H3947\"* their|strong=\"H3947\"* flocks|strong=\"H6629\"*, their|strong=\"H3947\"* herds|strong=\"H1241\"*, their|strong=\"H3947\"* donkeys|strong=\"H2543\"*, that|strong=\"H5892\"* which|strong=\"H5892\"* was|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H3947\"* city|strong=\"H5892\"*, that|strong=\"H5892\"* which|strong=\"H5892\"* was|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H3947\"* field|strong=\"H7704\"*," + }, + { + "verseNum": 29, + "text": "and|strong=\"H1004\"* all|strong=\"H3605\"* their|strong=\"H3605\"* wealth|strong=\"H2428\"*. They|strong=\"H3605\"* took|strong=\"H7617\"* captive|strong=\"H7617\"* all|strong=\"H3605\"* their|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"* and|strong=\"H1004\"* their|strong=\"H3605\"* wives, and|strong=\"H1004\"* took|strong=\"H7617\"* as|strong=\"H1004\"* plunder everything|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H1004\"* in|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 30, + "text": "Jacob|strong=\"H3290\"* said to|strong=\"H5921\"* Simeon|strong=\"H8095\"* and|strong=\"H1004\"* Levi|strong=\"H3878\"*, “You|strong=\"H5921\"* have|strong=\"H1004\"* troubled|strong=\"H5916\"* me|strong=\"H5921\"*, to|strong=\"H5921\"* make|strong=\"H3427\"* me|strong=\"H5921\"* odious to|strong=\"H5921\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H1004\"* the|strong=\"H5921\"* land, among|strong=\"H5921\"* the|strong=\"H5921\"* Canaanites|strong=\"H3669\"* and|strong=\"H1004\"* the|strong=\"H5921\"* Perizzites|strong=\"H6522\"*. I|strong=\"H5921\"* am few|strong=\"H4557\"* in|strong=\"H3427\"* number|strong=\"H4557\"*. They|strong=\"H5921\"* will|strong=\"H1004\"* gather themselves|strong=\"H5921\"* together|strong=\"H5921\"* against|strong=\"H5921\"* me|strong=\"H5921\"* and|strong=\"H1004\"* strike|strong=\"H5221\"* me|strong=\"H5921\"*, and|strong=\"H1004\"* I|strong=\"H5921\"* will|strong=\"H1004\"* be|strong=\"H1004\"* destroyed|strong=\"H8045\"*, I|strong=\"H5921\"* and|strong=\"H1004\"* my|strong=\"H5921\"* house|strong=\"H1004\"*.”" + }, + { + "verseNum": 31, + "text": "They|strong=\"H6213\"* said, “Should|strong=\"H6213\"* he|strong=\"H6213\"* deal|strong=\"H6213\"* with|strong=\"H6213\"* our|strong=\"H6213\"* sister as|strong=\"H6213\"* with|strong=\"H6213\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*?”" + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "God|strong=\"H1008\"* said to|strong=\"H5927\"* Jacob|strong=\"H3290\"*, “Arise|strong=\"H6965\"*, go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Bethel|strong=\"H1008\"*, and|strong=\"H6965\"* live|strong=\"H3427\"* there|strong=\"H8033\"*. Make|strong=\"H6213\"* there|strong=\"H8033\"* an|strong=\"H6213\"* altar|strong=\"H4196\"* to|strong=\"H5927\"* God|strong=\"H1008\"*, who|strong=\"H3427\"* appeared|strong=\"H7200\"* to|strong=\"H5927\"* you|strong=\"H6440\"* when|strong=\"H7200\"* you|strong=\"H6440\"* fled|strong=\"H1272\"* from|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H3427\"* Esau|strong=\"H6215\"* your|strong=\"H6440\"* brother.”" + }, + { + "verseNum": 2, + "text": "Then|strong=\"H3605\"* Jacob|strong=\"H3290\"* said to|strong=\"H1004\"* his|strong=\"H3605\"* household|strong=\"H1004\"*, and|strong=\"H1004\"* to|strong=\"H1004\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3290\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, “Put|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H3605\"* foreign|strong=\"H5236\"* gods that|strong=\"H3605\"* are|strong=\"H1004\"* among|strong=\"H8432\"* you|strong=\"H3605\"*, purify|strong=\"H2891\"* yourselves|strong=\"H8432\"*, and|strong=\"H1004\"* change|strong=\"H2498\"* your|strong=\"H3605\"* garments|strong=\"H8071\"*." + }, + { + "verseNum": 3, + "text": "Let|strong=\"H1980\"*’s arise|strong=\"H6965\"*, and|strong=\"H1980\"* go|strong=\"H1980\"* up|strong=\"H5927\"* to|strong=\"H1980\"* Bethel|strong=\"H1008\"*. I|strong=\"H3117\"* will|strong=\"H1961\"* make|strong=\"H6213\"* there|strong=\"H8033\"* an|strong=\"H6213\"* altar|strong=\"H4196\"* to|strong=\"H1980\"* God|strong=\"H1008\"*, who|strong=\"H6213\"* answered|strong=\"H6030\"* me|strong=\"H5978\"* in|strong=\"H1980\"* the|strong=\"H6213\"* day|strong=\"H3117\"* of|strong=\"H3117\"* my|strong=\"H6965\"* distress|strong=\"H6869\"*, and|strong=\"H1980\"* was|strong=\"H1961\"* with|strong=\"H1980\"* me|strong=\"H5978\"* on|strong=\"H3117\"* the|strong=\"H6213\"* way|strong=\"H1870\"* which|strong=\"H8033\"* I|strong=\"H3117\"* went|strong=\"H1980\"*.”" + }, + { + "verseNum": 4, + "text": "They|strong=\"H3605\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* Jacob|strong=\"H3290\"* all|strong=\"H3605\"* the|strong=\"H3605\"* foreign|strong=\"H5236\"* gods which|strong=\"H5141\"* were|strong=\"H3027\"* in|strong=\"H3027\"* their|strong=\"H3605\"* hands|strong=\"H3027\"*, and|strong=\"H3027\"* the|strong=\"H3605\"* rings|strong=\"H5141\"* which|strong=\"H5141\"* were|strong=\"H3027\"* in|strong=\"H3027\"* their|strong=\"H3605\"* ears; and|strong=\"H3027\"* Jacob|strong=\"H3290\"* hid|strong=\"H2934\"* them|strong=\"H5414\"* under|strong=\"H8478\"* the|strong=\"H3605\"* oak which|strong=\"H5141\"* was|strong=\"H3290\"* by|strong=\"H3027\"* Shechem|strong=\"H7927\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3808\"* traveled|strong=\"H5265\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* terror|strong=\"H2847\"* of|strong=\"H1121\"* God|strong=\"H3808\"* was|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* that|strong=\"H5892\"* were|strong=\"H1961\"* around|strong=\"H5439\"* them|strong=\"H5921\"*, and|strong=\"H1121\"* they|strong=\"H3808\"* didn’t pursue|strong=\"H7291\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 6, + "text": "So|strong=\"H1931\"* Jacob|strong=\"H3290\"* came|strong=\"H5971\"* to|strong=\"H5971\"* Luz|strong=\"H3870\"* (that|strong=\"H5971\"* is|strong=\"H1931\"*, Bethel|strong=\"H1008\"*), which|strong=\"H1931\"* is|strong=\"H1931\"* in|strong=\"H5971\"* the|strong=\"H3605\"* land of|strong=\"H5971\"* Canaan|strong=\"H3667\"*, he|strong=\"H1931\"* and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3588\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* there|strong=\"H8033\"*, and|strong=\"H6440\"* called|strong=\"H7121\"* the|strong=\"H6440\"* place|strong=\"H4725\"* El Beth El; because|strong=\"H3588\"* there|strong=\"H8033\"* God|strong=\"H1008\"* was|strong=\"H4725\"* revealed|strong=\"H1540\"* to|strong=\"H6440\"* him|strong=\"H6440\"*, when|strong=\"H3588\"* he|strong=\"H3588\"* fled|strong=\"H1272\"* from|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* his|strong=\"H7121\"* brother." + }, + { + "verseNum": 8, + "text": "Deborah|strong=\"H1683\"*, Rebekah|strong=\"H7259\"*’s nurse|strong=\"H3243\"*, died|strong=\"H4191\"*, and|strong=\"H1008\"* she|strong=\"H7121\"* was|strong=\"H8034\"* buried|strong=\"H6912\"* below|strong=\"H8478\"* Bethel|strong=\"H1008\"* under|strong=\"H8478\"* the|strong=\"H7121\"* oak; and|strong=\"H1008\"* its|strong=\"H8478\"* name|strong=\"H8034\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Allon Bacuth." + }, + { + "verseNum": 9, + "text": "God appeared|strong=\"H7200\"* to|strong=\"H7200\"* Jacob|strong=\"H3290\"* again|strong=\"H5750\"*, when|strong=\"H7200\"* he|strong=\"H3290\"* came from|strong=\"H7200\"* Paddan|strong=\"H6307\"* Aram|strong=\"H6307\"*, and|strong=\"H7200\"* blessed|strong=\"H1288\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 10, + "text": "God|strong=\"H3808\"* said|strong=\"H7121\"* to|strong=\"H3478\"* him|strong=\"H7121\"*, “Your|strong=\"H3588\"* name|strong=\"H8034\"* is|strong=\"H8034\"* Jacob|strong=\"H3290\"*. Your|strong=\"H3588\"* name|strong=\"H8034\"* shall|strong=\"H3478\"* not|strong=\"H3808\"* be|strong=\"H1961\"* Jacob|strong=\"H3290\"* any|strong=\"H5750\"* more|strong=\"H5750\"*, but|strong=\"H3588\"* your|strong=\"H3588\"* name|strong=\"H8034\"* will|strong=\"H1961\"* be|strong=\"H1961\"* Israel|strong=\"H3478\"*.” He|strong=\"H3588\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 11, + "text": "God said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H3318\"*, “I|strong=\"H4480\"* am|strong=\"H1961\"* God Almighty|strong=\"H7706\"*. Be|strong=\"H1961\"* fruitful|strong=\"H6509\"* and|strong=\"H4428\"* multiply|strong=\"H7235\"*. A|strong=\"H3068\"* nation|strong=\"H1471\"* and|strong=\"H4428\"* a|strong=\"H3068\"* company|strong=\"H6951\"* of|strong=\"H4428\"* nations|strong=\"H1471\"* will|strong=\"H1961\"* be|strong=\"H1961\"* from|strong=\"H4480\"* you|strong=\"H4480\"*, and|strong=\"H4428\"* kings|strong=\"H4428\"* will|strong=\"H1961\"* come|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H4428\"* your|strong=\"H7235\"* body." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5414\"* land which I|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* Abraham and|strong=\"H3327\"* Isaac|strong=\"H3327\"*, I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* you|strong=\"H5414\"*, and|strong=\"H3327\"* to|strong=\"H5414\"* your|strong=\"H5414\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* you|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* the|strong=\"H5414\"* land.”" + }, + { + "verseNum": 13, + "text": "God went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* where|strong=\"H4725\"* he|strong=\"H5921\"* spoke|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "Jacob|strong=\"H3290\"* set|strong=\"H5324\"* up|strong=\"H5324\"* a|strong=\"H3068\"* pillar|strong=\"H4676\"* in|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* where|strong=\"H4725\"* he|strong=\"H5921\"* spoke|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H5921\"*, a|strong=\"H3068\"* pillar|strong=\"H4676\"* of|strong=\"H5921\"* stone. He|strong=\"H5921\"* poured|strong=\"H3332\"* out|strong=\"H5258\"* a|strong=\"H3068\"* drink|strong=\"H5262\"* offering|strong=\"H5262\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H8081\"* poured|strong=\"H3332\"* oil|strong=\"H8081\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "Jacob|strong=\"H3290\"* called|strong=\"H7121\"* the|strong=\"H7121\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H7121\"* place|strong=\"H4725\"* where|strong=\"H8033\"* God|strong=\"H1008\"* spoke|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H7121\"* “Bethel|strong=\"H1008\"*”." + }, + { + "verseNum": 16, + "text": "They|strong=\"H3205\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Bethel|strong=\"H1008\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* still|strong=\"H5750\"* some|strong=\"H3530\"* distance|strong=\"H3530\"* to|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1961\"* Ephrath, and|strong=\"H1008\"* Rachel|strong=\"H7354\"* travailed|strong=\"H3205\"*. She had|strong=\"H1961\"* hard|strong=\"H7185\"* labor|strong=\"H3205\"*." + }, + { + "verseNum": 17, + "text": "When|strong=\"H3588\"* she|strong=\"H3588\"* was|strong=\"H1961\"* in|strong=\"H1121\"* hard|strong=\"H7185\"* labor|strong=\"H3205\"*, the|strong=\"H3588\"* midwife|strong=\"H3205\"* said to|strong=\"H1961\"* her|strong=\"H3205\"*, “Don’t be|strong=\"H1961\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* now|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H1961\"* have|strong=\"H1961\"* another|strong=\"H2088\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 18, + "text": "As|strong=\"H1961\"* her|strong=\"H7121\"* soul|strong=\"H5315\"* was|strong=\"H8034\"* departing|strong=\"H3318\"* (for|strong=\"H3588\"* she|strong=\"H3588\"* died|strong=\"H4191\"*), she|strong=\"H3588\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Benoni,+ 35:18 “Benoni” means “son of my trouble”.* but|strong=\"H3588\"* his|strong=\"H7121\"* father named|strong=\"H7121\"* him|strong=\"H7121\"* Benjamin|strong=\"H1144\"*.+ 35:18 “Benjamin” means “son of my right hand”.*" + }, + { + "verseNum": 19, + "text": "Rachel|strong=\"H7354\"* died|strong=\"H4191\"*, and|strong=\"H1870\"* was|strong=\"H1931\"* buried|strong=\"H6912\"* on|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* to|strong=\"H4191\"* Ephrath (also|strong=\"H1931\"* called Bethlehem|strong=\"H1035\"*)." + }, + { + "verseNum": 20, + "text": "Jacob|strong=\"H3290\"* set|strong=\"H5324\"* up|strong=\"H5324\"* a|strong=\"H3068\"* pillar|strong=\"H4676\"* on|strong=\"H5921\"* her|strong=\"H5921\"* grave|strong=\"H6900\"*. The|strong=\"H5921\"* same|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H5921\"* Pillar|strong=\"H4676\"* of|strong=\"H3117\"* Rachel|strong=\"H7354\"*’s grave|strong=\"H6900\"* to|strong=\"H5704\"* this|strong=\"H1931\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 21, + "text": "Israel|strong=\"H3478\"* traveled|strong=\"H5265\"*, and|strong=\"H3478\"* spread|strong=\"H5186\"* his|strong=\"H5186\"* tent beyond|strong=\"H1973\"* the|strong=\"H5186\"* tower|strong=\"H4029\"* of|strong=\"H4029\"* Eder|strong=\"H4029\"*." + }, + { + "verseNum": 22, + "text": "While|strong=\"H1961\"* Israel|strong=\"H3478\"* lived|strong=\"H7931\"* in|strong=\"H3478\"* that|strong=\"H8085\"* land, Reuben|strong=\"H7205\"* went|strong=\"H3212\"* and|strong=\"H1121\"* lay|strong=\"H7901\"* with|strong=\"H7901\"* Bilhah|strong=\"H1090\"*, his|strong=\"H8085\"* father|strong=\"H1121\"*’s concubine|strong=\"H6370\"*, and|strong=\"H1121\"* Israel|strong=\"H3478\"* heard|strong=\"H8085\"* of|strong=\"H1121\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Leah|strong=\"H3812\"*: Reuben|strong=\"H7205\"* (Jacob|strong=\"H3290\"*’s firstborn|strong=\"H1060\"*), Simeon|strong=\"H8095\"*, Levi|strong=\"H3878\"*, Judah|strong=\"H3063\"*, Issachar|strong=\"H3485\"*, and|strong=\"H1121\"* Zebulun|strong=\"H2074\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Rachel|strong=\"H7354\"*: Joseph|strong=\"H3130\"* and|strong=\"H1121\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Bilhah|strong=\"H1090\"* (Rachel|strong=\"H7354\"*’s servant|strong=\"H8198\"*): Dan|strong=\"H1835\"* and|strong=\"H1121\"* Naphtali|strong=\"H5321\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zilpah|strong=\"H2153\"* (Leah|strong=\"H3812\"*’s servant|strong=\"H8198\"*): Gad|strong=\"H1410\"* and|strong=\"H1121\"* Asher. These are|strong=\"H1121\"* the|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*, who|strong=\"H1121\"* were|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H3205\"* him|strong=\"H3205\"* in|strong=\"H1121\"* Paddan|strong=\"H6307\"* Aram|strong=\"H6307\"*." + }, + { + "verseNum": 27, + "text": "Jacob|strong=\"H3290\"* came to|strong=\"H8033\"* Isaac|strong=\"H3327\"* his|strong=\"H3327\"* father, to|strong=\"H8033\"* Mamre|strong=\"H4471\"*, to|strong=\"H8033\"* Kiriath Arba (which|strong=\"H1931\"* is|strong=\"H1931\"* Hebron|strong=\"H2275\"*), where|strong=\"H8033\"* Abraham and|strong=\"H8033\"* Isaac|strong=\"H3327\"* lived|strong=\"H1481\"* as|strong=\"H1481\"* foreigners|strong=\"H1481\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Isaac|strong=\"H3327\"* were|strong=\"H1961\"* one|strong=\"H1961\"* hundred|strong=\"H3967\"* eighty|strong=\"H8084\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 29, + "text": "Isaac|strong=\"H3327\"* gave up|strong=\"H1121\"* the|strong=\"H3117\"* spirit and|strong=\"H1121\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* was|strong=\"H3117\"* gathered to|strong=\"H4191\"* his|strong=\"H3327\"* people|strong=\"H5971\"*, old|strong=\"H1121\"* and|strong=\"H1121\"* full|strong=\"H3117\"* of|strong=\"H1121\"* days|strong=\"H3117\"*. Esau|strong=\"H6215\"* and|strong=\"H1121\"* Jacob|strong=\"H3290\"*, his|strong=\"H3327\"* sons|strong=\"H1121\"*, buried|strong=\"H6912\"* him|strong=\"H4191\"*." + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "Now this|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H1931\"* history|strong=\"H8435\"* of|strong=\"H8435\"* the|strong=\"H1931\"* generations|strong=\"H8435\"* of|strong=\"H8435\"* Esau|strong=\"H6215\"* (that|strong=\"H1931\"* is|strong=\"H1931\"*, Edom)." + }, + { + "verseNum": 2, + "text": "Esau|strong=\"H6215\"* took|strong=\"H3947\"* his|strong=\"H3947\"* wives from|strong=\"H3947\"* the|strong=\"H3947\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Canaan|strong=\"H3667\"*: Adah|strong=\"H5711\"* the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Elon, the|strong=\"H3947\"* Hittite|strong=\"H2850\"*; and|strong=\"H1323\"* Oholibamah the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Anah|strong=\"H6034\"*, the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zibeon|strong=\"H6649\"*, the|strong=\"H3947\"* Hivite|strong=\"H2340\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H1323\"* Basemath|strong=\"H1315\"*, Ishmael|strong=\"H3458\"*’s daughter|strong=\"H1323\"*, sister of|strong=\"H1323\"* Nebaioth|strong=\"H5032\"*." + }, + { + "verseNum": 4, + "text": "Adah|strong=\"H5711\"* bore|strong=\"H3205\"* to|strong=\"H3205\"* Esau|strong=\"H6215\"* Eliphaz. Basemath|strong=\"H1315\"* bore|strong=\"H3205\"* Reuel|strong=\"H7467\"*." + }, + { + "verseNum": 5, + "text": "Oholibamah bore|strong=\"H3205\"* Jeush|strong=\"H3274\"*, Jalam|strong=\"H3281\"*, and|strong=\"H1121\"* Korah|strong=\"H7141\"*. These are|strong=\"H1121\"* the|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"*, who|strong=\"H1121\"* were|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H3205\"* him|strong=\"H3205\"* in|strong=\"H1121\"* the|strong=\"H3205\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 6, + "text": "Esau|strong=\"H6215\"* took|strong=\"H3947\"* his|strong=\"H3605\"* wives, his|strong=\"H3605\"* sons|strong=\"H1121\"*, his|strong=\"H3605\"* daughters|strong=\"H1323\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* members|strong=\"H1004\"* of|strong=\"H1121\"* his|strong=\"H3605\"* household|strong=\"H1004\"*, with|strong=\"H1004\"* his|strong=\"H3605\"* livestock|strong=\"H4735\"*, all|strong=\"H3605\"* his|strong=\"H3605\"* animals, and|strong=\"H1121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* possessions|strong=\"H4735\"*, which|strong=\"H1004\"* he|strong=\"H3605\"* had|strong=\"H3290\"* gathered|strong=\"H7408\"* in|strong=\"H1004\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, and|strong=\"H1121\"* went|strong=\"H3212\"* into|strong=\"H3212\"* a|strong=\"H3068\"* land|strong=\"H6440\"* away|strong=\"H3947\"* from|strong=\"H6440\"* his|strong=\"H3605\"* brother Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* their|strong=\"H5375\"* substance|strong=\"H7399\"* was|strong=\"H1961\"* too|strong=\"H3162\"* great|strong=\"H7227\"* for|strong=\"H3588\"* them|strong=\"H6440\"* to|strong=\"H3201\"* dwell|strong=\"H3427\"* together|strong=\"H3162\"*, and|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H3427\"* their|strong=\"H5375\"* travels couldn’t bear|strong=\"H5375\"* them|strong=\"H6440\"* because|strong=\"H3588\"* of|strong=\"H3427\"* their|strong=\"H5375\"* livestock|strong=\"H4735\"*." + }, + { + "verseNum": 8, + "text": "Esau|strong=\"H6215\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H3427\"* Seir|strong=\"H8165\"*. Esau|strong=\"H6215\"* is|strong=\"H1931\"* Edom." + }, + { + "verseNum": 9, + "text": "This is|strong=\"H6215\"* the|strong=\"H2022\"* history|strong=\"H8435\"* of|strong=\"H2022\"* the|strong=\"H2022\"* generations|strong=\"H8435\"* of|strong=\"H2022\"* Esau|strong=\"H6215\"* the|strong=\"H2022\"* father of|strong=\"H2022\"* the|strong=\"H2022\"* Edomites|strong=\"H8165\"* in|strong=\"H2022\"* the|strong=\"H2022\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Seir|strong=\"H8165\"*:" + }, + { + "verseNum": 10, + "text": "these are|strong=\"H1121\"* the|strong=\"H8034\"* names|strong=\"H8034\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"*’s sons|strong=\"H1121\"*: Eliphaz, the|strong=\"H8034\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Adah|strong=\"H5711\"*, the|strong=\"H8034\"* wife of|strong=\"H1121\"* Esau|strong=\"H6215\"*; and|strong=\"H1121\"* Reuel|strong=\"H7467\"*, the|strong=\"H8034\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Basemath|strong=\"H1315\"*, the|strong=\"H8034\"* wife of|strong=\"H1121\"* Esau|strong=\"H6215\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eliphaz were|strong=\"H1961\"* Teman|strong=\"H8487\"*, Omar, Zepho|strong=\"H6825\"*, and|strong=\"H1121\"* Gatam|strong=\"H1609\"*, and|strong=\"H1121\"* Kenaz|strong=\"H7073\"*." + }, + { + "verseNum": 12, + "text": "Timna|strong=\"H8555\"* was|strong=\"H1961\"* concubine|strong=\"H6370\"* to|strong=\"H1961\"* Eliphaz, Esau|strong=\"H6215\"*’s son|strong=\"H1121\"*; and|strong=\"H1121\"* she bore|strong=\"H3205\"* to|strong=\"H1961\"* Eliphaz Amalek|strong=\"H6002\"*. These are|strong=\"H1121\"* the|strong=\"H3205\"* descendants|strong=\"H1121\"* of|strong=\"H1121\"* Adah|strong=\"H5711\"*, Esau|strong=\"H6215\"*’s wife." + }, + { + "verseNum": 13, + "text": "These are|strong=\"H1121\"* the|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Reuel|strong=\"H7467\"*: Nahath|strong=\"H5184\"*, Zerah|strong=\"H2226\"*, Shammah|strong=\"H8048\"*, and|strong=\"H1121\"* Mizzah|strong=\"H4199\"*. These were|strong=\"H1961\"* the|strong=\"H1961\"* descendants|strong=\"H1121\"* of|strong=\"H1121\"* Basemath|strong=\"H1315\"*, Esau|strong=\"H6215\"*’s wife." + }, + { + "verseNum": 14, + "text": "These were|strong=\"H1961\"* the|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Oholibamah, the|strong=\"H3205\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Anah|strong=\"H6034\"*, the|strong=\"H3205\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Zibeon|strong=\"H6649\"*, Esau|strong=\"H6215\"*’s wife: she bore|strong=\"H3205\"* to|strong=\"H1961\"* Esau|strong=\"H6215\"* Jeush|strong=\"H3274\"*, Jalam|strong=\"H3281\"*, and|strong=\"H1121\"* Korah|strong=\"H7141\"*." + }, + { + "verseNum": 15, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* chiefs of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"*: the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eliphaz the|strong=\"H1121\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"*: chief Teman|strong=\"H8487\"*, chief Omar, chief Zepho|strong=\"H6825\"*, chief Kenaz|strong=\"H7073\"*," + }, + { + "verseNum": 16, + "text": "chief Korah|strong=\"H7141\"*, chief Gatam|strong=\"H1609\"*, chief Amalek|strong=\"H6002\"*. These are|strong=\"H1121\"* the|strong=\"H1121\"* chiefs who|strong=\"H1121\"* came of|strong=\"H1121\"* Eliphaz in|strong=\"H1121\"* the|strong=\"H1121\"* land of|strong=\"H1121\"* Edom. These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Adah|strong=\"H5711\"*." + }, + { + "verseNum": 17, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Reuel|strong=\"H7467\"*, Esau|strong=\"H6215\"*’s son|strong=\"H1121\"*: chief Nahath|strong=\"H5184\"*, chief Zerah|strong=\"H2226\"*, chief Shammah|strong=\"H8048\"*, chief Mizzah|strong=\"H4199\"*. These are|strong=\"H1121\"* the|strong=\"H1121\"* chiefs who|strong=\"H1121\"* came of|strong=\"H1121\"* Reuel|strong=\"H7467\"* in|strong=\"H1121\"* the|strong=\"H1121\"* land of|strong=\"H1121\"* Edom. These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Basemath|strong=\"H1315\"*, Esau|strong=\"H6215\"*’s wife." + }, + { + "verseNum": 18, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Oholibamah, Esau|strong=\"H6215\"*’s wife: chief Jeush|strong=\"H3266\"*, chief Jalam|strong=\"H3281\"*, chief Korah|strong=\"H7141\"*. These are|strong=\"H1121\"* the|strong=\"H1121\"* chiefs who|strong=\"H1121\"* came|strong=\"H1323\"* of|strong=\"H1121\"* Oholibamah the|strong=\"H1121\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Anah|strong=\"H6034\"*, Esau|strong=\"H6215\"*’s wife." + }, + { + "verseNum": 19, + "text": "These|strong=\"H1931\"* are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"* (that|strong=\"H1931\"* is|strong=\"H1931\"*, Edom), and|strong=\"H1121\"* these|strong=\"H1931\"* are|strong=\"H1121\"* their chiefs." + }, + { + "verseNum": 20, + "text": "These are|strong=\"H1121\"* the|strong=\"H3427\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Seir|strong=\"H8165\"* the|strong=\"H3427\"* Horite|strong=\"H2752\"*, the|strong=\"H3427\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* the|strong=\"H3427\"* land: Lotan|strong=\"H3877\"*, Shobal|strong=\"H7732\"*, Zibeon|strong=\"H6649\"*, Anah|strong=\"H6034\"*," + }, + { + "verseNum": 21, + "text": "Dishon|strong=\"H1787\"*, Ezer, and|strong=\"H1121\"* Dishan|strong=\"H1789\"*. These are|strong=\"H1121\"* the|strong=\"H1121\"* chiefs who|strong=\"H1121\"* came of|strong=\"H1121\"* the|strong=\"H1121\"* Horites|strong=\"H2752\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Seir|strong=\"H8165\"* in|strong=\"H1121\"* the|strong=\"H1121\"* land of|strong=\"H1121\"* Edom." + }, + { + "verseNum": 22, + "text": "The|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Lotan|strong=\"H3877\"* were|strong=\"H1961\"* Hori|strong=\"H2753\"* and|strong=\"H1121\"* Heman. Lotan|strong=\"H3877\"*’s sister was|strong=\"H1961\"* Timna|strong=\"H8555\"*." + }, + { + "verseNum": 23, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Shobal|strong=\"H7732\"*: Alvan|strong=\"H5935\"*, Manahath|strong=\"H4506\"*, Ebal|strong=\"H5858\"*, Shepho|strong=\"H8195\"*, and|strong=\"H1121\"* Onam." + }, + { + "verseNum": 24, + "text": "These|strong=\"H1931\"* are|strong=\"H1121\"* the|strong=\"H4672\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zibeon|strong=\"H6649\"*: Aiah and|strong=\"H1121\"* Anah|strong=\"H6034\"*. This|strong=\"H1931\"* is|strong=\"H1931\"* Anah|strong=\"H6034\"* who|strong=\"H1931\"* found|strong=\"H4672\"* the|strong=\"H4672\"* hot|strong=\"H3222\"* springs|strong=\"H3222\"* in|strong=\"H4672\"* the|strong=\"H4672\"* wilderness|strong=\"H4057\"*, as|strong=\"H1121\"* he|strong=\"H1931\"* fed|strong=\"H7462\"* the|strong=\"H4672\"* donkeys|strong=\"H2543\"* of|strong=\"H1121\"* Zibeon|strong=\"H6649\"* his|strong=\"H4672\"* father|strong=\"H1121\"*." + }, + { + "verseNum": 25, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Anah|strong=\"H6034\"*: Dishon|strong=\"H1787\"* and|strong=\"H1121\"* Oholibamah, the|strong=\"H1121\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Anah|strong=\"H6034\"*." + }, + { + "verseNum": 26, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dishon: Hemdan|strong=\"H2533\"*, Eshban, Ithran|strong=\"H3506\"*, and|strong=\"H1121\"* Cheran|strong=\"H3763\"*." + }, + { + "verseNum": 27, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ezer: Bilhan|strong=\"H1092\"*, Zaavan|strong=\"H2190\"*, and|strong=\"H1121\"* Akan|strong=\"H6130\"*." + }, + { + "verseNum": 28, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dishan|strong=\"H1789\"*: Uz|strong=\"H5780\"* and|strong=\"H1121\"* Aran." + }, + { + "verseNum": 29, + "text": "These are the|strong=\"H7732\"* chiefs who came of the|strong=\"H7732\"* Horites|strong=\"H2752\"*: chief Lotan|strong=\"H3877\"*, chief Shobal|strong=\"H7732\"*, chief Zibeon|strong=\"H6649\"*, chief Anah|strong=\"H6034\"*," + }, + { + "verseNum": 30, + "text": "chief Dishon|strong=\"H1787\"*, chief Ezer, and|strong=\"H2753\"* chief Dishan|strong=\"H1789\"*. These are the|strong=\"H8165\"* chiefs who came of the|strong=\"H8165\"* Horites, according to|strong=\"H8165\"* their chiefs in the|strong=\"H8165\"* land of Seir|strong=\"H8165\"*." + }, + { + "verseNum": 31, + "text": "These|strong=\"H6440\"* are|strong=\"H1121\"* the|strong=\"H6440\"* kings|strong=\"H4428\"* who|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H3478\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H1121\"* Edom, before|strong=\"H6440\"* any|strong=\"H6440\"* king|strong=\"H4428\"* reigned|strong=\"H4427\"* over|strong=\"H4427\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 32, + "text": "Bela|strong=\"H1106\"*, the|strong=\"H8034\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Beor|strong=\"H1160\"*, reigned|strong=\"H4427\"* in|strong=\"H4427\"* Edom. The|strong=\"H8034\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H4427\"* city|strong=\"H5892\"* was|strong=\"H8034\"* Dinhabah|strong=\"H1838\"*." + }, + { + "verseNum": 33, + "text": "Bela|strong=\"H1106\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* Jobab|strong=\"H3103\"*, the|strong=\"H8478\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zerah|strong=\"H2226\"* of|strong=\"H1121\"* Bozrah|strong=\"H1224\"*, reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 34, + "text": "Jobab|strong=\"H3103\"* died|strong=\"H4191\"*, and|strong=\"H4191\"* Husham|strong=\"H2367\"* of|strong=\"H8478\"* the|strong=\"H8478\"* land of|strong=\"H8478\"* the|strong=\"H8478\"* Temanites|strong=\"H8489\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 35, + "text": "Husham|strong=\"H2367\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* Hadad|strong=\"H1908\"*, the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bedad, who|strong=\"H1121\"* struck|strong=\"H5221\"* Midian|strong=\"H4080\"* in|strong=\"H4191\"* the|strong=\"H5221\"* field|strong=\"H7704\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H5221\"* place|strong=\"H8478\"*. The|strong=\"H5221\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H5221\"* city|strong=\"H5892\"* was|strong=\"H8034\"* Avith|strong=\"H5762\"*." + }, + { + "verseNum": 36, + "text": "Hadad|strong=\"H1908\"* died|strong=\"H4191\"*, and|strong=\"H4191\"* Samlah|strong=\"H8072\"* of|strong=\"H8478\"* Masrekah|strong=\"H4957\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 37, + "text": "Samlah|strong=\"H8072\"* died|strong=\"H4191\"*, and|strong=\"H7586\"* Shaul|strong=\"H7586\"* of|strong=\"H8478\"* Rehoboth|strong=\"H7344\"* by|strong=\"H4191\"* the|strong=\"H8478\"* river|strong=\"H5104\"*, reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 38, + "text": "Shaul|strong=\"H7586\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* Baal Hanan the|strong=\"H8478\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Achbor|strong=\"H5907\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 39, + "text": "Baal Hanan the|strong=\"H8478\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Achbor|strong=\"H5907\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* Hadar|strong=\"H1924\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*. The|strong=\"H8478\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H8478\"* city|strong=\"H5892\"* was|strong=\"H8034\"* Pau|strong=\"H6464\"*. His|strong=\"H8478\"* wife’s name|strong=\"H8034\"* was|strong=\"H8034\"* Mehetabel|strong=\"H4105\"*, the|strong=\"H8478\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Matred|strong=\"H4308\"*, the|strong=\"H8478\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Mezahab|strong=\"H4314\"*." + }, + { + "verseNum": 40, + "text": "These are|strong=\"H8034\"* the|strong=\"H8034\"* names|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H8034\"* chiefs who|strong=\"H6215\"* came from|strong=\"H8034\"* Esau|strong=\"H6215\"*, according to|strong=\"H4725\"* their families|strong=\"H4940\"*, after|strong=\"H8034\"* their places|strong=\"H4725\"*, and|strong=\"H4725\"* by|strong=\"H8034\"* their names|strong=\"H8034\"*: chief Timna|strong=\"H8555\"*, chief Alvah|strong=\"H5933\"*, chief Jetheth|strong=\"H3509\"*," + }, + { + "verseNum": 41, + "text": "chief Oholibamah, chief Elah, chief Pinon|strong=\"H6373\"*," + }, + { + "verseNum": 42, + "text": "chief Kenaz|strong=\"H7073\"*, chief Teman|strong=\"H8487\"*, chief Mibzar|strong=\"H4014\"*," + }, + { + "verseNum": 43, + "text": "chief Magdiel|strong=\"H4025\"*, and|strong=\"H6215\"* chief Iram|strong=\"H5902\"*. These|strong=\"H1931\"* are the|strong=\"H1931\"* chiefs of|strong=\"H4186\"* Edom, according to their habitations|strong=\"H4186\"* in|strong=\"H4186\"* the|strong=\"H1931\"* land of|strong=\"H4186\"* their possession. This|strong=\"H1931\"* is|strong=\"H1931\"* Esau|strong=\"H6215\"*, the|strong=\"H1931\"* father of|strong=\"H4186\"* the|strong=\"H1931\"* Edomites." + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "Jacob|strong=\"H3290\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* land of|strong=\"H3427\"* his|strong=\"H3290\"* father’s travels, in|strong=\"H3427\"* the|strong=\"H3427\"* land of|strong=\"H3427\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 2, + "text": "This|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H1961\"* history|strong=\"H8435\"* of|strong=\"H1121\"* the|strong=\"H1961\"* generations|strong=\"H8435\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*. Joseph|strong=\"H3130\"*, being|strong=\"H1961\"* seventeen|strong=\"H7651\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, was|strong=\"H1961\"* feeding|strong=\"H7462\"* the|strong=\"H1961\"* flock|strong=\"H6629\"* with|strong=\"H1961\"* his|strong=\"H1961\"* brothers|strong=\"H1121\"*. He|strong=\"H1931\"* was|strong=\"H1961\"* a|strong=\"H3068\"* boy|strong=\"H5288\"* with|strong=\"H1961\"* the|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Bilhah|strong=\"H1090\"* and|strong=\"H1121\"* Zilpah|strong=\"H2153\"*, his|strong=\"H1961\"* father|strong=\"H1121\"*’s wives. Joseph|strong=\"H3130\"* brought|strong=\"H1961\"* an|strong=\"H1961\"* evil|strong=\"H7451\"* report|strong=\"H1681\"* of|strong=\"H1121\"* them|strong=\"H1961\"* to|strong=\"H1961\"* their|strong=\"H1961\"* father|strong=\"H1121\"*." + }, + { + "verseNum": 3, + "text": "Now|strong=\"H3588\"* Israel|strong=\"H3478\"* loved Joseph|strong=\"H3130\"* more|strong=\"H3588\"* than|strong=\"H3588\"* all|strong=\"H3605\"* his|strong=\"H3605\"* children|strong=\"H1121\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3478\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H3605\"* old|strong=\"H1121\"* age|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* made|strong=\"H6213\"* him|strong=\"H6213\"* a|strong=\"H3068\"* tunic|strong=\"H3801\"* of|strong=\"H1121\"* many colors." + }, + { + "verseNum": 4, + "text": "His|strong=\"H3605\"* brothers saw|strong=\"H7200\"* that|strong=\"H3588\"* their|strong=\"H3605\"* father loved him|strong=\"H7200\"* more|strong=\"H3808\"* than|strong=\"H3808\"* all|strong=\"H3605\"* his|strong=\"H3605\"* brothers, and|strong=\"H7200\"* they|strong=\"H3588\"* hated|strong=\"H8130\"* him|strong=\"H7200\"*, and|strong=\"H7200\"* couldn’t speak|strong=\"H1696\"* peaceably|strong=\"H7965\"* to|strong=\"H1696\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 5, + "text": "Joseph|strong=\"H3130\"* dreamed|strong=\"H2492\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*, and|strong=\"H3254\"* he|strong=\"H3130\"* told|strong=\"H5046\"* it|strong=\"H3254\"* to|strong=\"H5046\"* his|strong=\"H5046\"* brothers, and|strong=\"H3254\"* they hated|strong=\"H8130\"* him|strong=\"H5046\"* all|strong=\"H8130\"* the|strong=\"H5046\"* more|strong=\"H3254\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H2088\"* said|strong=\"H8085\"* to|strong=\"H8085\"* them|strong=\"H8085\"*, “Please|strong=\"H4994\"* hear|strong=\"H8085\"* this|strong=\"H2088\"* dream|strong=\"H2492\"* which|strong=\"H2088\"* I|strong=\"H2088\"* have|strong=\"H2088\"* dreamed|strong=\"H2492\"*:" + }, + { + "verseNum": 7, + "text": "for|strong=\"H7704\"* behold|strong=\"H2009\"*, we|strong=\"H3068\"* were|strong=\"H1571\"* binding sheaves in|strong=\"H8432\"* the|strong=\"H8432\"* field|strong=\"H7704\"*, and|strong=\"H6965\"* behold|strong=\"H2009\"*, my|strong=\"H6965\"* sheaf arose|strong=\"H6965\"* and|strong=\"H6965\"* also|strong=\"H1571\"* stood|strong=\"H5324\"* upright|strong=\"H5324\"*; and|strong=\"H6965\"* behold|strong=\"H2009\"*, your|strong=\"H6965\"* sheaves came around|strong=\"H5437\"*, and|strong=\"H6965\"* bowed|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H6965\"* my|strong=\"H6965\"* sheaf.”" + }, + { + "verseNum": 8, + "text": "His|strong=\"H5921\"* brothers asked|strong=\"H1697\"* him|strong=\"H5921\"*, “Will|strong=\"H1697\"* you|strong=\"H5921\"* indeed|strong=\"H4910\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* us|strong=\"H5921\"*? Will|strong=\"H1697\"* you|strong=\"H5921\"* indeed|strong=\"H4910\"* have|strong=\"H1697\"* dominion|strong=\"H4910\"* over|strong=\"H5921\"* us|strong=\"H5921\"*?” They|strong=\"H5921\"* hated|strong=\"H8130\"* him|strong=\"H5921\"* all|strong=\"H1697\"* the|strong=\"H5921\"* more|strong=\"H3254\"* for|strong=\"H5921\"* his|strong=\"H5921\"* dreams|strong=\"H2472\"* and|strong=\"H1697\"* for|strong=\"H5921\"* his|strong=\"H5921\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H2009\"* dreamed|strong=\"H2492\"* yet|strong=\"H5750\"* another|strong=\"H5750\"* dream|strong=\"H2472\"*, and|strong=\"H5750\"* told|strong=\"H5608\"* it|strong=\"H7812\"* to|strong=\"H2472\"* his|strong=\"H5608\"* brothers, and|strong=\"H5750\"* said, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H2009\"* dreamed|strong=\"H2492\"* yet|strong=\"H5750\"* another|strong=\"H5750\"* dream|strong=\"H2472\"*: and|strong=\"H5750\"* behold|strong=\"H2009\"*, the|strong=\"H7812\"* sun|strong=\"H8121\"* and|strong=\"H5750\"* the|strong=\"H7812\"* moon|strong=\"H3394\"* and|strong=\"H5750\"* eleven|strong=\"H6240\"* stars|strong=\"H3556\"* bowed|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H2472\"* me|strong=\"H5608\"*.”" + }, + { + "verseNum": 10, + "text": "He|strong=\"H2088\"* told|strong=\"H5608\"* it|strong=\"H2088\"* to|strong=\"H2472\"* his|strong=\"H5608\"* father and|strong=\"H2088\"* to|strong=\"H2472\"* his|strong=\"H5608\"* brothers. His|strong=\"H5608\"* father rebuked|strong=\"H1605\"* him|strong=\"H2088\"*, and|strong=\"H2088\"* said to|strong=\"H2472\"* him|strong=\"H2088\"*, “What|strong=\"H4100\"* is|strong=\"H2088\"* this|strong=\"H2088\"* dream|strong=\"H2472\"* that|strong=\"H2088\"* you|strong=\"H4100\"* have|strong=\"H2088\"* dreamed|strong=\"H2492\"*? Will|strong=\"H4100\"* I|strong=\"H2088\"* and|strong=\"H2088\"* your|strong=\"H2088\"* mother and|strong=\"H2088\"* your|strong=\"H2088\"* brothers indeed come to|strong=\"H2472\"* bow|strong=\"H7812\"* ourselves|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H2472\"* the|strong=\"H7812\"* earth before you|strong=\"H4100\"*?”" + }, + { + "verseNum": 11, + "text": "His|strong=\"H8104\"* brothers envied|strong=\"H7065\"* him|strong=\"H7065\"*, but his|strong=\"H8104\"* father kept|strong=\"H8104\"* this|strong=\"H1697\"* saying|strong=\"H1697\"* in|strong=\"H1697\"* mind." + }, + { + "verseNum": 12, + "text": "His|strong=\"H7462\"* brothers went|strong=\"H3212\"* to|strong=\"H3212\"* feed|strong=\"H7462\"* their|strong=\"H7462\"* father’s flock|strong=\"H6629\"* in|strong=\"H3212\"* Shechem|strong=\"H7927\"*." + }, + { + "verseNum": 13, + "text": "Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Joseph|strong=\"H3130\"*, “Aren’t your|strong=\"H7971\"* brothers feeding|strong=\"H7462\"* the|strong=\"H7971\"* flock in|strong=\"H3478\"* Shechem|strong=\"H7927\"*? Come|strong=\"H3212\"*, and|strong=\"H3478\"* I|strong=\"H2009\"* will|strong=\"H3478\"* send|strong=\"H7971\"* you|strong=\"H7971\"* to|strong=\"H3478\"* them|strong=\"H7971\"*.” He|strong=\"H3808\"* said to|strong=\"H3478\"* him|strong=\"H7971\"*, “Here|strong=\"H2009\"* I|strong=\"H2009\"* am.”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H7971\"* said|strong=\"H1697\"* to|strong=\"H7725\"* him|strong=\"H7971\"*, “Go|strong=\"H3212\"* now|strong=\"H4994\"*, see|strong=\"H7200\"* whether|strong=\"H7200\"* it|strong=\"H7725\"* is|strong=\"H1697\"* well|strong=\"H7965\"* with|strong=\"H1697\"* your|strong=\"H7200\"* brothers, and|strong=\"H7971\"* well|strong=\"H7965\"* with|strong=\"H1697\"* the|strong=\"H7200\"* flock|strong=\"H6629\"*; and|strong=\"H7971\"* bring|strong=\"H7725\"* me|strong=\"H4994\"* word|strong=\"H1697\"* again|strong=\"H7725\"*.” So|strong=\"H7971\"* he|strong=\"H7971\"* sent|strong=\"H7971\"* him|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H1697\"* the|strong=\"H7200\"* valley|strong=\"H6010\"* of|strong=\"H1697\"* Hebron|strong=\"H2275\"*, and|strong=\"H7971\"* he|strong=\"H7971\"* came|strong=\"H3212\"* to|strong=\"H7725\"* Shechem|strong=\"H7927\"*." + }, + { + "verseNum": 15, + "text": "A|strong=\"H3068\"* certain man found|strong=\"H4672\"* him|strong=\"H4672\"*, and|strong=\"H7704\"* behold|strong=\"H2009\"*, he|strong=\"H4100\"* was|strong=\"H7704\"* wandering|strong=\"H8582\"* in|strong=\"H4672\"* the|strong=\"H1245\"* field|strong=\"H7704\"*. The|strong=\"H1245\"* man asked|strong=\"H7592\"* him|strong=\"H4672\"*, “What|strong=\"H4100\"* are|strong=\"H4100\"* you|strong=\"H4100\"* looking|strong=\"H1245\"* for|strong=\"H7592\"*?”" + }, + { + "verseNum": 16, + "text": "He said, “I|strong=\"H5046\"* am looking|strong=\"H1245\"* for|strong=\"H1245\"* my|strong=\"H1245\"* brothers. Tell|strong=\"H5046\"* me|strong=\"H4994\"*, please|strong=\"H4994\"*, where|strong=\"H1992\"* they|strong=\"H1992\"* are|strong=\"H1992\"* feeding|strong=\"H7462\"* the|strong=\"H1245\"* flock.”" + }, + { + "verseNum": 17, + "text": "The|strong=\"H8085\"* man|strong=\"H2088\"* said|strong=\"H8085\"*, “They|strong=\"H3588\"* have|strong=\"H4672\"* left|strong=\"H4672\"* here|strong=\"H2088\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* heard|strong=\"H8085\"* them|strong=\"H4672\"* say, ‘Let|strong=\"H3212\"*’s go|strong=\"H3212\"* to|strong=\"H3212\"* Dothan|strong=\"H1886\"*.’”" + }, + { + "verseNum": 18, + "text": "They|strong=\"H2962\"* saw|strong=\"H7200\"* him|strong=\"H7200\"* afar|strong=\"H7350\"* off|strong=\"H7350\"*, and|strong=\"H7200\"* before|strong=\"H2962\"* he|strong=\"H2962\"* came|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H4191\"* them|strong=\"H7126\"*, they|strong=\"H2962\"* conspired|strong=\"H5230\"* against him|strong=\"H7200\"* to|strong=\"H4191\"* kill|strong=\"H4191\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"H1167\"* said to|strong=\"H2472\"* one another, “Behold|strong=\"H2009\"*, this|strong=\"H1976\"* dreamer|strong=\"H1167\"* comes." + }, + { + "verseNum": 20, + "text": "Come|strong=\"H1961\"* now|strong=\"H6258\"* therefore|strong=\"H6258\"*, and|strong=\"H3212\"* let|strong=\"H6258\"*’s kill|strong=\"H2026\"* him|strong=\"H7200\"*, and|strong=\"H3212\"* cast|strong=\"H7993\"* him|strong=\"H7200\"* into|strong=\"H3212\"* one|strong=\"H2416\"* of|strong=\"H2416\"* the|strong=\"H7200\"* pits, and|strong=\"H3212\"* we|strong=\"H3068\"* will|strong=\"H1961\"* say, ‘An|strong=\"H1961\"* evil|strong=\"H7451\"* animal|strong=\"H2416\"* has|strong=\"H1961\"* devoured him|strong=\"H7200\"*.’ We|strong=\"H6258\"* will|strong=\"H1961\"* see|strong=\"H7200\"* what|strong=\"H4100\"* will|strong=\"H1961\"* become|strong=\"H1961\"* of|strong=\"H2416\"* his|strong=\"H7200\"* dreams|strong=\"H2472\"*.”" + }, + { + "verseNum": 21, + "text": "Reuben|strong=\"H7205\"* heard|strong=\"H8085\"* it|strong=\"H5221\"*, and|strong=\"H3027\"* delivered|strong=\"H5337\"* him|strong=\"H5221\"* out|strong=\"H5337\"* of|strong=\"H3027\"* their|strong=\"H8085\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* said|strong=\"H8085\"*, “Let|strong=\"H3808\"*’s not|strong=\"H3808\"* take|strong=\"H5221\"* his|strong=\"H8085\"* life|strong=\"H5315\"*.”" + }, + { + "verseNum": 22, + "text": "Reuben|strong=\"H7205\"* said to|strong=\"H7725\"* them|strong=\"H7725\"*, “Shed|strong=\"H8210\"* no|strong=\"H3808\"* blood|strong=\"H1818\"*. Throw|strong=\"H7993\"* him|strong=\"H7971\"* into|strong=\"H7725\"* this|strong=\"H2088\"* pit that|strong=\"H4616\"* is|strong=\"H2088\"* in|strong=\"H7725\"* the|strong=\"H7725\"* wilderness|strong=\"H4057\"*, but|strong=\"H3808\"* lay|strong=\"H7971\"* no|strong=\"H3808\"* hand|strong=\"H3027\"* on|strong=\"H3027\"* him|strong=\"H7971\"*”—that|strong=\"H4616\"* he|strong=\"H3027\"* might|strong=\"H4616\"* deliver|strong=\"H5337\"* him|strong=\"H7971\"* out|strong=\"H8210\"* of|strong=\"H3027\"* their|strong=\"H7725\"* hand|strong=\"H3027\"*, to|strong=\"H7725\"* restore|strong=\"H7725\"* him|strong=\"H7971\"* to|strong=\"H7725\"* his|strong=\"H7971\"* father." + }, + { + "verseNum": 23, + "text": "When|strong=\"H1961\"* Joseph|strong=\"H3130\"* came|strong=\"H1961\"* to|strong=\"H1961\"* his|strong=\"H5921\"* brothers, they|strong=\"H5921\"* stripped|strong=\"H6584\"* Joseph|strong=\"H3130\"* of|strong=\"H5921\"* his|strong=\"H5921\"* tunic|strong=\"H3801\"*, the|strong=\"H5921\"* tunic|strong=\"H3801\"* of|strong=\"H5921\"* many colors that|strong=\"H1961\"* was|strong=\"H1961\"* on|strong=\"H5921\"* him|strong=\"H5921\"*;" + }, + { + "verseNum": 24, + "text": "and|strong=\"H4325\"* they|strong=\"H3947\"* took|strong=\"H3947\"* him|strong=\"H3947\"*, and|strong=\"H4325\"* threw|strong=\"H7993\"* him|strong=\"H3947\"* into|strong=\"H7993\"* the|strong=\"H3947\"* pit. The|strong=\"H3947\"* pit was|strong=\"H4325\"* empty|strong=\"H7386\"*. There was|strong=\"H4325\"* no|strong=\"H3947\"* water|strong=\"H4325\"* in|strong=\"H3947\"* it|strong=\"H7993\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"H5375\"* sat|strong=\"H3427\"* down|strong=\"H3381\"* to|strong=\"H1980\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"*, and|strong=\"H1980\"* they|strong=\"H5375\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H5375\"* eyes|strong=\"H5869\"* and|strong=\"H1980\"* looked|strong=\"H7200\"*, and|strong=\"H1980\"* saw|strong=\"H7200\"* a|strong=\"H3068\"* caravan of|strong=\"H3427\"* Ishmaelites|strong=\"H3459\"* coming|strong=\"H3381\"* from|strong=\"H3381\"* Gilead|strong=\"H1568\"*, with|strong=\"H1980\"* their|strong=\"H5375\"* camels|strong=\"H1581\"* bearing|strong=\"H5375\"* spices|strong=\"H5219\"* and|strong=\"H1980\"* balm|strong=\"H6875\"* and|strong=\"H1980\"* myrrh|strong=\"H3910\"*, going|strong=\"H1980\"* to|strong=\"H1980\"* carry|strong=\"H5375\"* it|strong=\"H7200\"* down|strong=\"H3381\"* to|strong=\"H1980\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 26, + "text": "Judah|strong=\"H3063\"* said to|strong=\"H3063\"* his|strong=\"H3588\"* brothers, “What|strong=\"H4100\"* profit|strong=\"H1215\"* is|strong=\"H4100\"* it|strong=\"H3588\"* if|strong=\"H3588\"* we|strong=\"H3068\"* kill|strong=\"H2026\"* our|strong=\"H3588\"* brother and|strong=\"H3063\"* conceal|strong=\"H3680\"* his|strong=\"H3588\"* blood|strong=\"H1818\"*?" + }, + { + "verseNum": 27, + "text": "Come|strong=\"H1961\"*, and|strong=\"H3027\"* let|strong=\"H3212\"*’s sell|strong=\"H4376\"* him|strong=\"H3027\"* to|strong=\"H3212\"* the|strong=\"H8085\"* Ishmaelites|strong=\"H3459\"*, and|strong=\"H3027\"* not|strong=\"H1961\"* let|strong=\"H3212\"* our|strong=\"H8085\"* hand|strong=\"H3027\"* be|strong=\"H1961\"* on|strong=\"H3027\"* him|strong=\"H3027\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* our|strong=\"H8085\"* brother, our|strong=\"H8085\"* flesh|strong=\"H1320\"*.” His|strong=\"H8085\"* brothers listened|strong=\"H8085\"* to|strong=\"H3212\"* him|strong=\"H3027\"*." + }, + { + "verseNum": 28, + "text": "Midianites|strong=\"H4084\"* who|strong=\"H4376\"* were|strong=\"H4714\"* merchants|strong=\"H5503\"* passed|strong=\"H5674\"* by|strong=\"H5674\"*, and|strong=\"H6242\"* they|strong=\"H5674\"* drew|strong=\"H4900\"* and|strong=\"H6242\"* lifted|strong=\"H5927\"* up|strong=\"H5927\"* Joseph|strong=\"H3130\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* pit, and|strong=\"H6242\"* sold|strong=\"H4376\"* Joseph|strong=\"H3130\"* to|strong=\"H5927\"* the|strong=\"H4480\"* Ishmaelites|strong=\"H3459\"* for|strong=\"H4714\"* twenty|strong=\"H6242\"* pieces of|strong=\"H4480\"* silver|strong=\"H3701\"*. The|strong=\"H4480\"* merchants|strong=\"H5503\"* brought|strong=\"H5927\"* Joseph|strong=\"H3130\"* into|strong=\"H5927\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 29, + "text": "Reuben|strong=\"H7205\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H7725\"* pit, and|strong=\"H7725\"* saw|strong=\"H2009\"* that|strong=\"H7725\"* Joseph|strong=\"H3130\"* wasn’t in|strong=\"H7725\"* the|strong=\"H7725\"* pit; and|strong=\"H7725\"* he|strong=\"H7725\"* tore|strong=\"H7167\"* his|strong=\"H7725\"* clothes." + }, + { + "verseNum": 30, + "text": "He|strong=\"H7725\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* brothers, and|strong=\"H7725\"* said, “The|strong=\"H7725\"* child|strong=\"H3206\"* is|strong=\"H3206\"* no more|strong=\"H7725\"*; and|strong=\"H7725\"* I, where will|strong=\"H3206\"* I go|strong=\"H7725\"*?”" + }, + { + "verseNum": 31, + "text": "They|strong=\"H3947\"* took|strong=\"H3947\"* Joseph|strong=\"H3130\"*’s tunic|strong=\"H3801\"*, and|strong=\"H1818\"* killed|strong=\"H7819\"* a|strong=\"H3068\"* male|strong=\"H8163\"* goat|strong=\"H5795\"*, and|strong=\"H1818\"* dipped|strong=\"H2881\"* the|strong=\"H3947\"* tunic|strong=\"H3801\"* in|strong=\"H3947\"* the|strong=\"H3947\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 32, + "text": "They|strong=\"H3808\"* took|strong=\"H5234\"* the|strong=\"H7971\"* tunic|strong=\"H3801\"* of|strong=\"H1121\"* many|strong=\"H3808\"* colors, and|strong=\"H1121\"* they|strong=\"H3808\"* brought|strong=\"H7971\"* it|strong=\"H1931\"* to|strong=\"H7971\"* their|strong=\"H7971\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* said, “We|strong=\"H4994\"* have|strong=\"H1121\"* found|strong=\"H4672\"* this|strong=\"H2063\"*. Examine|strong=\"H5234\"* it|strong=\"H1931\"*, now|strong=\"H4994\"*, and|strong=\"H1121\"* see|strong=\"H5234\"* if|strong=\"H1931\"* it|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H7971\"* son|strong=\"H1121\"*’s tunic|strong=\"H3801\"* or|strong=\"H3808\"* not|strong=\"H3808\"*.”" + }, + { + "verseNum": 33, + "text": "He|strong=\"H3130\"* recognized|strong=\"H5234\"* it|strong=\"H5234\"*, and|strong=\"H1121\"* said, “It|strong=\"H5234\"* is|strong=\"H7451\"* my|strong=\"H3130\"* son|strong=\"H1121\"*’s tunic|strong=\"H3801\"*. An evil|strong=\"H7451\"* animal|strong=\"H2416\"* has|strong=\"H3130\"* devoured him|strong=\"H5234\"*. Joseph|strong=\"H3130\"* is|strong=\"H7451\"* without doubt|strong=\"H2963\"* torn|strong=\"H2963\"* in|strong=\"H1121\"* pieces|strong=\"H2963\"*.”" + }, + { + "verseNum": 34, + "text": "Jacob|strong=\"H3290\"* tore|strong=\"H7167\"* his|strong=\"H7760\"* clothes|strong=\"H8071\"*, and|strong=\"H1121\"* put|strong=\"H7760\"* sackcloth|strong=\"H8242\"* on|strong=\"H5921\"* his|strong=\"H7760\"* waist|strong=\"H4975\"*, and|strong=\"H1121\"* mourned for|strong=\"H5921\"* his|strong=\"H7760\"* son|strong=\"H1121\"* many|strong=\"H7227\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 35, + "text": "All|strong=\"H3605\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* daughters|strong=\"H1323\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H3381\"* comfort|strong=\"H5162\"* him|strong=\"H3381\"*, but|strong=\"H3588\"* he|strong=\"H3588\"* refused|strong=\"H3985\"* to|strong=\"H3381\"* be|strong=\"H1121\"* comforted|strong=\"H5162\"*. He|strong=\"H3588\"* said, “For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1121\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*+ 37:35 Sheol is the place of the dead.* to|strong=\"H3381\"* my|strong=\"H3605\"* son|strong=\"H1121\"*, mourning|strong=\"H5162\"*.” His|strong=\"H3605\"* father|strong=\"H1121\"* wept|strong=\"H1058\"* for|strong=\"H3588\"* him|strong=\"H3381\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"H4376\"* Midianites|strong=\"H4092\"* sold|strong=\"H4376\"* him into|strong=\"H4714\"* Egypt|strong=\"H4714\"* to|strong=\"H4714\"* Potiphar|strong=\"H6318\"*, an|strong=\"H4714\"* officer|strong=\"H5631\"* of|strong=\"H8269\"* Pharaoh|strong=\"H6547\"*’s, the|strong=\"H4376\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H4376\"* guard|strong=\"H2876\"*." + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"H1961\"* that|strong=\"H1931\"* time|strong=\"H6256\"*, Judah|strong=\"H3063\"* went|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H3381\"* his|strong=\"H5186\"* brothers, and|strong=\"H3063\"* visited|strong=\"H5186\"* a|strong=\"H3068\"* certain|strong=\"H6256\"* Adullamite|strong=\"H5726\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Hirah|strong=\"H2437\"*." + }, + { + "verseNum": 2, + "text": "There|strong=\"H8033\"*, Judah|strong=\"H3063\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* a|strong=\"H3068\"* certain Canaanite|strong=\"H3669\"* man|strong=\"H7200\"* named|strong=\"H8034\"* Shua|strong=\"H7770\"*. He|strong=\"H8033\"* took|strong=\"H3947\"* her|strong=\"H3947\"*, and|strong=\"H3063\"* went|strong=\"H3063\"* in|strong=\"H8034\"* to|strong=\"H3063\"* her|strong=\"H3947\"*." + }, + { + "verseNum": 3, + "text": "She|strong=\"H7121\"* conceived|strong=\"H2029\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*; and|strong=\"H1121\"* he|strong=\"H7121\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Er|strong=\"H6147\"*." + }, + { + "verseNum": 4, + "text": "She|strong=\"H7121\"* conceived|strong=\"H2029\"* again|strong=\"H5750\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*; and|strong=\"H1121\"* she|strong=\"H7121\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Onan." + }, + { + "verseNum": 5, + "text": "She|strong=\"H7121\"* yet|strong=\"H5750\"* again|strong=\"H5750\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Shelah|strong=\"H7956\"*. He|strong=\"H7121\"* was|strong=\"H8034\"* at|strong=\"H1961\"* Chezib|strong=\"H3580\"* when|strong=\"H1961\"* she|strong=\"H7121\"* bore|strong=\"H3205\"* him|strong=\"H3205\"*." + }, + { + "verseNum": 6, + "text": "Judah|strong=\"H3063\"* took|strong=\"H3947\"* a|strong=\"H3068\"* wife for|strong=\"H8034\"* Er|strong=\"H6147\"*, his|strong=\"H3947\"* firstborn|strong=\"H1060\"*, and|strong=\"H3063\"* her|strong=\"H3947\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Tamar|strong=\"H8559\"*." + }, + { + "verseNum": 7, + "text": "Er|strong=\"H6147\"*, Judah|strong=\"H3063\"*’s firstborn|strong=\"H1060\"*, was|strong=\"H3068\"* wicked|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*. So|strong=\"H1961\"* Yahweh|strong=\"H3068\"* killed|strong=\"H4191\"* him|strong=\"H4191\"*." + }, + { + "verseNum": 8, + "text": "Judah|strong=\"H3063\"* said to|strong=\"H6965\"* Onan, “Go|strong=\"H6965\"* in|strong=\"H3063\"* to|strong=\"H6965\"* your|strong=\"H6965\"* brother|strong=\"H2992\"*’s wife, and|strong=\"H3063\"* perform|strong=\"H6965\"* the|strong=\"H6965\"* duty|strong=\"H2992\"* of|strong=\"H2233\"* a|strong=\"H3068\"* husband’s brother|strong=\"H2992\"* to|strong=\"H6965\"* her|strong=\"H6965\"*, and|strong=\"H3063\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* offspring|strong=\"H2233\"* for|strong=\"H6965\"* your|strong=\"H6965\"* brother|strong=\"H2992\"*.”" + }, + { + "verseNum": 9, + "text": "Onan knew|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3588\"* offspring|strong=\"H2233\"* wouldn’t be|strong=\"H1961\"* his|strong=\"H5414\"*; and|strong=\"H3045\"* when|strong=\"H3588\"* he|strong=\"H3588\"* went|strong=\"H1961\"* in|strong=\"H5414\"* to|strong=\"H1961\"* his|strong=\"H5414\"* brother’s wife, he|strong=\"H3588\"* spilled|strong=\"H7843\"* his|strong=\"H5414\"* semen on|strong=\"H1961\"* the|strong=\"H3588\"* ground, lest|strong=\"H1115\"* he|strong=\"H3588\"* should|strong=\"H3588\"* give|strong=\"H5414\"* offspring|strong=\"H2233\"* to|strong=\"H1961\"* his|strong=\"H5414\"* brother." + }, + { + "verseNum": 10, + "text": "The|strong=\"H6213\"* thing which|strong=\"H3068\"* he|strong=\"H6213\"* did|strong=\"H6213\"* was|strong=\"H3068\"* evil|strong=\"H7489\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H3068\"* he|strong=\"H6213\"* killed|strong=\"H4191\"* him|strong=\"H6213\"* also|strong=\"H1571\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H1571\"* Judah|strong=\"H3063\"* said to|strong=\"H5704\"* Tamar|strong=\"H8559\"*, his|strong=\"H3588\"* daughter-in-law|strong=\"H3618\"*, “Remain|strong=\"H3427\"* a|strong=\"H3068\"* widow in|strong=\"H3427\"* your|strong=\"H3588\"* father|strong=\"H1121\"*’s house|strong=\"H1004\"*, until|strong=\"H5704\"* Shelah|strong=\"H7956\"*, my|strong=\"H3588\"* son|strong=\"H1121\"*, is|strong=\"H1931\"* grown|strong=\"H1431\"* up|strong=\"H1431\"*;” for|strong=\"H3588\"* he|strong=\"H1931\"* said, “Lest|strong=\"H6435\"* he|strong=\"H1931\"* also|strong=\"H1571\"* die|strong=\"H4191\"*, like|strong=\"H1004\"* his|strong=\"H3588\"* brothers|strong=\"H1121\"*.” Tamar|strong=\"H8559\"* went|strong=\"H3212\"* and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* her|strong=\"H3618\"* father|strong=\"H1121\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 12, + "text": "After|strong=\"H5921\"* many|strong=\"H7235\"* days|strong=\"H3117\"*, Shua|strong=\"H7770\"*’s daughter|strong=\"H1323\"*, the|strong=\"H5921\"* wife of|strong=\"H3117\"* Judah|strong=\"H3063\"*, died|strong=\"H4191\"*. Judah|strong=\"H3063\"* was|strong=\"H1931\"* comforted|strong=\"H5162\"*, and|strong=\"H3063\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H4191\"* his|strong=\"H5921\"* sheep|strong=\"H6629\"* shearers|strong=\"H1494\"* to|strong=\"H4191\"* Timnah|strong=\"H8553\"*, he|strong=\"H1931\"* and|strong=\"H3063\"* his|strong=\"H5921\"* friend|strong=\"H7453\"* Hirah|strong=\"H2437\"*, the|strong=\"H5921\"* Adullamite|strong=\"H5726\"*." + }, + { + "verseNum": 13, + "text": "Tamar|strong=\"H8559\"* was|strong=\"H6629\"* told|strong=\"H5046\"*, “Behold|strong=\"H2009\"*, your|strong=\"H5046\"* father-in-law|strong=\"H2524\"* is|strong=\"H2009\"* going|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Timnah|strong=\"H8553\"* to|strong=\"H5927\"* shear|strong=\"H1494\"* his|strong=\"H5046\"* sheep|strong=\"H6629\"*.”" + }, + { + "verseNum": 14, + "text": "She|strong=\"H1931\"* took|strong=\"H5493\"* off|strong=\"H5493\"* the|strong=\"H5921\"* garments of|strong=\"H3427\"* her|strong=\"H5414\"* widowhood, and|strong=\"H1870\"* covered|strong=\"H3680\"* herself|strong=\"H1931\"* with|strong=\"H5921\"* her|strong=\"H5414\"* veil|strong=\"H6809\"*, and|strong=\"H1870\"* wrapped|strong=\"H5968\"* herself|strong=\"H1931\"*, and|strong=\"H1870\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* gate|strong=\"H6607\"* of|strong=\"H3427\"* Enaim|strong=\"H5879\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* on|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* to|strong=\"H5921\"* Timnah|strong=\"H8553\"*; for|strong=\"H3588\"* she|strong=\"H1931\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Shelah|strong=\"H7956\"* was|strong=\"H1931\"* grown|strong=\"H1431\"* up|strong=\"H5414\"*, and|strong=\"H1870\"* she|strong=\"H1931\"* wasn’t given|strong=\"H5414\"* to|strong=\"H5921\"* him|strong=\"H5414\"* as|strong=\"H3588\"* a|strong=\"H3068\"* wife." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* Judah|strong=\"H3063\"* saw|strong=\"H7200\"* her|strong=\"H7200\"*, he|strong=\"H3588\"* thought|strong=\"H2803\"* that|strong=\"H3588\"* she|strong=\"H3588\"* was|strong=\"H3063\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*, for|strong=\"H3588\"* she|strong=\"H3588\"* had|strong=\"H3063\"* covered|strong=\"H3680\"* her|strong=\"H7200\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H1931\"* turned|strong=\"H5186\"* to|strong=\"H5414\"* her|strong=\"H5414\"* by|strong=\"H1870\"* the|strong=\"H3588\"* way|strong=\"H1870\"*, and|strong=\"H1870\"* said, “Please|strong=\"H4994\"* come|strong=\"H3051\"*, let|strong=\"H4994\"* me|strong=\"H5414\"* come|strong=\"H3051\"* in|strong=\"H1870\"* to|strong=\"H5414\"* you|strong=\"H3588\"*,” for|strong=\"H3588\"* he|strong=\"H1931\"* didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* she|strong=\"H1931\"* was|strong=\"H1931\"* his|strong=\"H5414\"* daughter-in-law|strong=\"H3618\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H5704\"* said, “I|strong=\"H5414\"* will|strong=\"H5414\"* send|strong=\"H7971\"* you|strong=\"H5414\"* a|strong=\"H3068\"* young|strong=\"H1423\"* goat|strong=\"H5795\"* from|strong=\"H4480\"* the|strong=\"H5414\"* flock|strong=\"H6629\"*.”" + }, + { + "verseNum": 18, + "text": "He|strong=\"H5414\"* said, “What|strong=\"H4100\"* pledge|strong=\"H6162\"* will|strong=\"H3027\"* I|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"*?”" + }, + { + "verseNum": 19, + "text": "She|strong=\"H5921\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* away|strong=\"H5493\"*, and|strong=\"H6965\"* put|strong=\"H3847\"* off|strong=\"H5493\"* her|strong=\"H5493\"* veil|strong=\"H6809\"* from|strong=\"H5493\"* her|strong=\"H5493\"*, and|strong=\"H6965\"* put|strong=\"H3847\"* on|strong=\"H5921\"* the|strong=\"H5921\"* garments of|strong=\"H5921\"* her|strong=\"H5493\"* widowhood." + }, + { + "verseNum": 20, + "text": "Judah|strong=\"H3063\"* sent|strong=\"H7971\"* the|strong=\"H3947\"* young|strong=\"H1423\"* goat|strong=\"H5795\"* by|strong=\"H3027\"* the|strong=\"H3947\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* his|strong=\"H7971\"* friend|strong=\"H7453\"*, the|strong=\"H3947\"* Adullamite|strong=\"H5726\"*, to|strong=\"H7971\"* receive|strong=\"H3947\"* the|strong=\"H3947\"* pledge|strong=\"H6162\"* from|strong=\"H3027\"* the|strong=\"H3947\"* woman’s hand|strong=\"H3027\"*, but|strong=\"H3808\"* he|strong=\"H3027\"* didn’t find|strong=\"H4672\"* her|strong=\"H7971\"*." + }, + { + "verseNum": 21, + "text": "Then|strong=\"H1961\"* he|strong=\"H1931\"* asked|strong=\"H7592\"* the|strong=\"H5921\"* men of|strong=\"H1870\"* her|strong=\"H5921\"* place|strong=\"H4725\"*, saying, “Where|strong=\"H4725\"* is|strong=\"H2088\"* the|strong=\"H5921\"* prostitute, that|strong=\"H1931\"* was|strong=\"H1961\"* at|strong=\"H5921\"* Enaim|strong=\"H5879\"* by|strong=\"H5921\"* the|strong=\"H5921\"* road|strong=\"H1870\"*?”" + }, + { + "verseNum": 22, + "text": "He|strong=\"H3808\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* said, “I|strong=\"H2088\"* haven’t found|strong=\"H4672\"* her|strong=\"H4672\"*; and|strong=\"H3063\"* also|strong=\"H1571\"* the|strong=\"H7725\"* men of|strong=\"H4725\"* the|strong=\"H7725\"* place|strong=\"H4725\"* said, ‘There|strong=\"H1961\"* has|strong=\"H1961\"* been|strong=\"H1961\"* no|strong=\"H3808\"* prostitute here|strong=\"H2088\"*.’”" + }, + { + "verseNum": 23, + "text": "Judah|strong=\"H3063\"* said, “Let|strong=\"H7971\"* her|strong=\"H7971\"* keep|strong=\"H1961\"* it|strong=\"H1961\"*, lest|strong=\"H6435\"* we|strong=\"H3068\"* be|strong=\"H1961\"* shamed. Behold|strong=\"H2009\"*, I|strong=\"H2009\"* sent|strong=\"H7971\"* this|strong=\"H2088\"* young|strong=\"H1423\"* goat|strong=\"H1423\"*, and|strong=\"H3063\"* you|strong=\"H7971\"* haven’t found|strong=\"H4672\"* her|strong=\"H7971\"*.”" + }, + { + "verseNum": 24, + "text": "About|strong=\"H1961\"* three|strong=\"H7969\"* months|strong=\"H2320\"* later|strong=\"H1961\"*, Judah|strong=\"H3063\"* was|strong=\"H1961\"* told|strong=\"H5046\"*, “Tamar|strong=\"H8559\"*, your|strong=\"H1961\"* daughter-in-law|strong=\"H3618\"*, has|strong=\"H1961\"* played|strong=\"H2181\"* the|strong=\"H3318\"* prostitute|strong=\"H2181\"*. Moreover|strong=\"H1571\"*, behold|strong=\"H2009\"*, she|strong=\"H2320\"* is|strong=\"H1571\"* with|strong=\"H8313\"* child|strong=\"H2030\"* by|strong=\"H3318\"* prostitution.”" + }, + { + "verseNum": 25, + "text": "When|strong=\"H3318\"* she|strong=\"H1931\"* was|strong=\"H1931\"* brought|strong=\"H3318\"* out|strong=\"H3318\"*, she|strong=\"H1931\"* sent|strong=\"H7971\"* to|strong=\"H3318\"* her|strong=\"H7971\"* father-in-law|strong=\"H2524\"*, saying, “I|strong=\"H3318\"* am with|strong=\"H3318\"* child|strong=\"H2030\"* by|strong=\"H3318\"* the|strong=\"H7971\"* man who|strong=\"H4310\"* owns these|strong=\"H1931\"*.” She|strong=\"H1931\"* also|strong=\"H3318\"* said|strong=\"H3318\"*, “Please|strong=\"H4994\"* discern|strong=\"H5234\"* whose|strong=\"H4310\"* these|strong=\"H1931\"* are|strong=\"H4310\"*—the|strong=\"H7971\"* signet|strong=\"H2858\"*, and|strong=\"H7971\"* the|strong=\"H7971\"* cords|strong=\"H6616\"*, and|strong=\"H7971\"* the|strong=\"H7971\"* staff|strong=\"H4294\"*.”" + }, + { + "verseNum": 26, + "text": "Judah|strong=\"H3063\"* acknowledged|strong=\"H3045\"* them|strong=\"H5414\"*, and|strong=\"H1121\"* said|strong=\"H3651\"*, “She|strong=\"H3588\"* is|strong=\"H3651\"* more|strong=\"H3254\"* righteous|strong=\"H6663\"* than|strong=\"H4480\"* I|strong=\"H3588\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* didn’t give|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H5921\"* Shelah|strong=\"H7956\"*, my|strong=\"H5414\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 27, + "text": "In|strong=\"H1961\"* the|strong=\"H3205\"* time|strong=\"H6256\"* of|strong=\"H3205\"* her|strong=\"H3205\"* travail|strong=\"H3205\"*, behold|strong=\"H2009\"*, twins|strong=\"H8380\"* were|strong=\"H1961\"* in|strong=\"H1961\"* her|strong=\"H3205\"* womb." + }, + { + "verseNum": 28, + "text": "When|strong=\"H1961\"* she|strong=\"H5921\"* travailed|strong=\"H3205\"*, one|strong=\"H2088\"* put|strong=\"H5414\"* out|strong=\"H3318\"* a|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* the|strong=\"H5921\"* midwife|strong=\"H3205\"* took|strong=\"H3947\"* and|strong=\"H3027\"* tied|strong=\"H7194\"* a|strong=\"H3068\"* scarlet|strong=\"H8144\"* thread|strong=\"H8144\"* on|strong=\"H5921\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*, saying, “This|strong=\"H2088\"* came|strong=\"H1961\"* out|strong=\"H3318\"* first|strong=\"H7223\"*.”" + }, + { + "verseNum": 29, + "text": "As|strong=\"H1961\"* he|strong=\"H3027\"* drew|strong=\"H7725\"* back|strong=\"H7725\"* his|strong=\"H7121\"* hand|strong=\"H3027\"*, behold|strong=\"H2009\"*, his|strong=\"H7121\"* brother came|strong=\"H1961\"* out|strong=\"H3318\"*, and|strong=\"H7725\"* she|strong=\"H7121\"* said|strong=\"H7121\"*, “Why|strong=\"H4100\"* have|strong=\"H1961\"* you|strong=\"H5921\"* made|strong=\"H6555\"* a|strong=\"H3068\"* breach|strong=\"H6556\"* for|strong=\"H5921\"* yourself|strong=\"H5921\"*?” Therefore|strong=\"H5921\"* his|strong=\"H7121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Perez|strong=\"H6557\"*.+ 38:29 Perez means “breaking out”.*" + }, + { + "verseNum": 30, + "text": "Afterward his|strong=\"H7121\"* brother came|strong=\"H3318\"* out|strong=\"H3318\"*, who|strong=\"H7121\"* had|strong=\"H3027\"* the|strong=\"H5921\"* scarlet|strong=\"H8144\"* thread|strong=\"H8144\"* on|strong=\"H5921\"* his|strong=\"H7121\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* his|strong=\"H7121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Zerah|strong=\"H2226\"*.+ 38:30 Zerah means “scarlet” or “brightness”.*" + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "Joseph|strong=\"H3130\"* was|strong=\"H3027\"* brought|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Egypt|strong=\"H4714\"*. Potiphar|strong=\"H6318\"*, an|strong=\"H8033\"* officer|strong=\"H5631\"* of|strong=\"H3027\"* Pharaoh|strong=\"H6547\"*’s, the|strong=\"H3027\"* captain|strong=\"H8269\"* of|strong=\"H3027\"* the|strong=\"H3027\"* guard|strong=\"H2876\"*, an|strong=\"H8033\"* Egyptian|strong=\"H4713\"*, bought|strong=\"H7069\"* him|strong=\"H3027\"* from|strong=\"H3381\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3027\"* Ishmaelites|strong=\"H3459\"* that|strong=\"H3027\"* had|strong=\"H3130\"* brought|strong=\"H3381\"* him|strong=\"H3027\"* down|strong=\"H3381\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H1004\"* Joseph|strong=\"H3130\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* was|strong=\"H3068\"* a|strong=\"H3068\"* prosperous|strong=\"H6743\"* man. He|strong=\"H3068\"* was|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* his|strong=\"H3068\"* master the|strong=\"H3068\"* Egyptian|strong=\"H4713\"*." + }, + { + "verseNum": 3, + "text": "His|strong=\"H3605\"* master saw|strong=\"H7200\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H3068\"* him|strong=\"H3027\"*, and|strong=\"H3068\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* made|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3588\"* he|strong=\"H1931\"* did|strong=\"H6213\"* prosper|strong=\"H6743\"* in|strong=\"H3068\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 4, + "text": "Joseph|strong=\"H3130\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* his|strong=\"H3605\"* sight|strong=\"H5869\"*. He|strong=\"H3605\"* ministered|strong=\"H8334\"* to|strong=\"H5921\"* him|strong=\"H5414\"*, and|strong=\"H3027\"* Potiphar|strong=\"H6485\"* made|strong=\"H5414\"* him|strong=\"H5414\"* overseer|strong=\"H6485\"* over|strong=\"H5921\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, and|strong=\"H3027\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3605\"* had|strong=\"H3130\"* he|strong=\"H3605\"* put|strong=\"H5414\"* into|strong=\"H5921\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 5, + "text": "From|strong=\"H5921\"* the|strong=\"H3605\"* time|strong=\"H1961\"* that|strong=\"H3605\"* he|strong=\"H3068\"* made|strong=\"H1961\"* him|strong=\"H5921\"* overseer|strong=\"H6485\"* in|strong=\"H5921\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* over|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3068\"* had|strong=\"H3068\"*, Yahweh|strong=\"H3068\"* blessed|strong=\"H1288\"* the|strong=\"H3605\"* Egyptian|strong=\"H4713\"*’s house|strong=\"H1004\"* for|strong=\"H5921\"* Joseph|strong=\"H3130\"*’s sake|strong=\"H5921\"*. Yahweh|strong=\"H3068\"*’s blessing|strong=\"H1293\"* was|strong=\"H3068\"* on|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3068\"* had|strong=\"H3068\"*, in|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"* and|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H3605\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H1931\"* left|strong=\"H5800\"* all|strong=\"H3605\"* that|strong=\"H3588\"* he|strong=\"H1931\"* had|strong=\"H1961\"* in|strong=\"H3899\"* Joseph|strong=\"H3130\"*’s hand|strong=\"H3027\"*. He|strong=\"H1931\"* didn’t concern|strong=\"H3045\"* himself|strong=\"H1931\"* with|strong=\"H3045\"* anything|strong=\"H3605\"*, except|strong=\"H3588\"* for|strong=\"H3588\"* the|strong=\"H3605\"* food|strong=\"H3899\"* which|strong=\"H1931\"* he|strong=\"H1931\"* ate." + }, + { + "verseNum": 7, + "text": "After|strong=\"H1961\"* these things|strong=\"H1697\"*, his|strong=\"H5375\"* master’s wife set|strong=\"H5375\"* her|strong=\"H5375\"* eyes|strong=\"H5869\"* on|strong=\"H1961\"* Joseph|strong=\"H3130\"*; and|strong=\"H5869\"* she|strong=\"H5973\"* said|strong=\"H1697\"*, “Lie|strong=\"H7901\"* with|strong=\"H5973\"* me|strong=\"H5973\"*.”" + }, + { + "verseNum": 8, + "text": "But|strong=\"H3808\"* he|strong=\"H3605\"* refused|strong=\"H3985\"*, and|strong=\"H3027\"* said to|strong=\"H5414\"* his|strong=\"H3605\"* master|strong=\"H5414\"*’s wife, “Behold|strong=\"H2005\"*, my|strong=\"H5414\"* master|strong=\"H5414\"* doesn’t know|strong=\"H3045\"* what|strong=\"H4100\"* is|strong=\"H3426\"* with|strong=\"H1004\"* me|strong=\"H5414\"* in|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, and|strong=\"H3027\"* he|strong=\"H3605\"* has|strong=\"H4100\"* put|strong=\"H5414\"* all|strong=\"H3605\"* that|strong=\"H3045\"* he|strong=\"H3605\"* has|strong=\"H4100\"* into|strong=\"H3027\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 9, + "text": "No|strong=\"H3808\"* one|strong=\"H2088\"* is|strong=\"H2088\"* greater|strong=\"H1419\"* in|strong=\"H6213\"* this|strong=\"H2088\"* house|strong=\"H1004\"* than|strong=\"H4480\"* I|strong=\"H3588\"* am, and|strong=\"H1419\"* he|strong=\"H3588\"* has|strong=\"H3588\"* not|strong=\"H3808\"* kept|strong=\"H6213\"* back|strong=\"H2820\"* anything|strong=\"H3972\"* from|strong=\"H4480\"* me|strong=\"H4480\"* but|strong=\"H3588\"* you|strong=\"H3588\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1004\"* his|strong=\"H6213\"* wife. How|strong=\"H3588\"* then|strong=\"H2088\"* can|strong=\"H6213\"* I|strong=\"H3588\"* do|strong=\"H6213\"* this|strong=\"H2088\"* great|strong=\"H1419\"* wickedness|strong=\"H7451\"*, and|strong=\"H1419\"* sin|strong=\"H2398\"* against|strong=\"H4480\"* God|strong=\"H3808\"*?”" + }, + { + "verseNum": 10, + "text": "As|strong=\"H3117\"* she|strong=\"H5973\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Joseph|strong=\"H3130\"* day|strong=\"H3117\"* by|strong=\"H3117\"* day|strong=\"H3117\"*, he|strong=\"H3117\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1696\"* her|strong=\"H7901\"*, to|strong=\"H1696\"* lie|strong=\"H7901\"* by|strong=\"H3117\"* her|strong=\"H7901\"*, or|strong=\"H3808\"* to|strong=\"H1696\"* be|strong=\"H1961\"* with|strong=\"H5973\"* her|strong=\"H7901\"*." + }, + { + "verseNum": 11, + "text": "About|strong=\"H1961\"* this|strong=\"H2088\"* time|strong=\"H3117\"*, he|strong=\"H3117\"* went|strong=\"H1004\"* into|strong=\"H6213\"* the|strong=\"H6213\"* house|strong=\"H1004\"* to|strong=\"H1961\"* do|strong=\"H6213\"* his|strong=\"H1961\"* work|strong=\"H4399\"*, and|strong=\"H3117\"* there|strong=\"H8033\"* were|strong=\"H1961\"* none of|strong=\"H1004\"* the|strong=\"H6213\"* men|strong=\"H6213\"* of|strong=\"H1004\"* the|strong=\"H6213\"* house|strong=\"H1004\"* inside|strong=\"H1004\"*." + }, + { + "verseNum": 12, + "text": "She|strong=\"H5973\"* caught|strong=\"H8610\"* him|strong=\"H3027\"* by|strong=\"H3027\"* his|strong=\"H3027\"* garment, saying, “Lie|strong=\"H7901\"* with|strong=\"H5973\"* me|strong=\"H3318\"*!”" + }, + { + "verseNum": 13, + "text": "When|strong=\"H3588\"* she|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1961\"* left|strong=\"H5800\"* his|strong=\"H7200\"* garment in|strong=\"H3027\"* her|strong=\"H7200\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* had|strong=\"H1961\"* run|strong=\"H5127\"* outside|strong=\"H2351\"*," + }, + { + "verseNum": 14, + "text": "she|strong=\"H7121\"* called|strong=\"H7121\"* to|strong=\"H1004\"* the|strong=\"H7200\"* men|strong=\"H1419\"* of|strong=\"H1004\"* her|strong=\"H7200\"* house|strong=\"H1004\"*, and|strong=\"H1419\"* spoke to|strong=\"H1004\"* them|strong=\"H7121\"*, saying|strong=\"H6963\"*, “Behold|strong=\"H7200\"*, he|strong=\"H1004\"* has|strong=\"H1004\"* brought a|strong=\"H3068\"* Hebrew|strong=\"H5680\"* in|strong=\"H1004\"* to|strong=\"H1004\"* us|strong=\"H7200\"* to|strong=\"H1004\"* mock|strong=\"H6711\"* us|strong=\"H7200\"*. He|strong=\"H1004\"* came in|strong=\"H1004\"* to|strong=\"H1004\"* me|strong=\"H7200\"* to|strong=\"H1004\"* lie|strong=\"H7901\"* with|strong=\"H5973\"* me|strong=\"H7200\"*, and|strong=\"H1419\"* I|strong=\"H7200\"* cried|strong=\"H7121\"* with|strong=\"H5973\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* he|strong=\"H3588\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* I|strong=\"H3588\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* my|strong=\"H8085\"* voice|strong=\"H6963\"* and|strong=\"H6963\"* cried|strong=\"H7121\"*, he|strong=\"H3588\"* left|strong=\"H5800\"* his|strong=\"H7121\"* garment by|strong=\"H7121\"* me|strong=\"H6963\"*, and|strong=\"H6963\"* ran|strong=\"H5127\"* outside|strong=\"H2351\"*.”" + }, + { + "verseNum": 16, + "text": "She|strong=\"H5704\"* laid|strong=\"H3240\"* up|strong=\"H3240\"* his|strong=\"H3240\"* garment by|strong=\"H5704\"* her|strong=\"H5704\"*, until|strong=\"H5704\"* his|strong=\"H3240\"* master came home|strong=\"H1004\"*." + }, + { + "verseNum": 17, + "text": "She spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H1697\"* according to|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"*, saying|strong=\"H1697\"*, “The|strong=\"H1697\"* Hebrew|strong=\"H5680\"* servant|strong=\"H5650\"*, whom you|strong=\"H1696\"* have|strong=\"H5650\"* brought|strong=\"H5650\"* to|strong=\"H1696\"* us, came|strong=\"H1697\"* in|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"* to|strong=\"H1696\"* mock|strong=\"H6711\"* me|strong=\"H1696\"*," + }, + { + "verseNum": 18, + "text": "and|strong=\"H6963\"* as|strong=\"H1961\"* I|strong=\"H6963\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* my|strong=\"H1961\"* voice|strong=\"H6963\"* and|strong=\"H6963\"* cried|strong=\"H7121\"*, he|strong=\"H7121\"* left|strong=\"H5800\"* his|strong=\"H7121\"* garment by|strong=\"H7121\"* me|strong=\"H6963\"*, and|strong=\"H6963\"* ran|strong=\"H5127\"* outside|strong=\"H2351\"*.”" + }, + { + "verseNum": 19, + "text": "When|strong=\"H1961\"* his|strong=\"H8085\"* master heard|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H1697\"* his|strong=\"H8085\"* wife|strong=\"H1696\"*, which|strong=\"H1697\"* she spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H6213\"*, saying|strong=\"H1697\"*, “This|strong=\"H6213\"* is|strong=\"H1697\"* what|strong=\"H1697\"* your|strong=\"H8085\"* servant|strong=\"H5650\"* did|strong=\"H6213\"* to|strong=\"H1696\"* me|strong=\"H6213\"*,” his|strong=\"H8085\"* wrath was|strong=\"H1961\"* kindled|strong=\"H2734\"*." + }, + { + "verseNum": 20, + "text": "Joseph|strong=\"H3130\"*’s master|strong=\"H5414\"* took|strong=\"H3947\"* him|strong=\"H5414\"*, and|strong=\"H4428\"* put|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H1961\"* the|strong=\"H5414\"* prison|strong=\"H1004\"*, the|strong=\"H5414\"* place|strong=\"H4725\"* where|strong=\"H8033\"* the|strong=\"H5414\"* king|strong=\"H4428\"*’s prisoners were|strong=\"H1961\"* bound, and|strong=\"H4428\"* he|strong=\"H8033\"* was|strong=\"H1961\"* there|strong=\"H8033\"* in|strong=\"H1004\"* custody." + }, + { + "verseNum": 21, + "text": "But|strong=\"H1961\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H1004\"* Joseph|strong=\"H3130\"*, and|strong=\"H3068\"* showed|strong=\"H5414\"* kindness|strong=\"H2617\"* to|strong=\"H3068\"* him|strong=\"H5414\"*, and|strong=\"H3068\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* favor|strong=\"H2580\"* in|strong=\"H3068\"* the|strong=\"H5414\"* sight|strong=\"H5869\"* of|strong=\"H1004\"* the|strong=\"H5414\"* keeper|strong=\"H8269\"* of|strong=\"H1004\"* the|strong=\"H5414\"* prison|strong=\"H1004\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3605\"* keeper|strong=\"H8269\"* of|strong=\"H1004\"* the|strong=\"H3605\"* prison|strong=\"H1004\"* committed|strong=\"H6213\"* to|strong=\"H1961\"* Joseph|strong=\"H3130\"*’s hand|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* prisoners who|strong=\"H3605\"* were|strong=\"H1961\"* in|strong=\"H6213\"* the|strong=\"H3605\"* prison|strong=\"H1004\"*. Whatever|strong=\"H3605\"* they|strong=\"H8033\"* did|strong=\"H6213\"* there|strong=\"H8033\"*, he|strong=\"H1931\"* was|strong=\"H1961\"* responsible|strong=\"H6213\"* for|strong=\"H6213\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3605\"* keeper|strong=\"H8269\"* of|strong=\"H1004\"* the|strong=\"H3605\"* prison|strong=\"H1004\"* didn’t look|strong=\"H7200\"* after|strong=\"H7200\"* anything|strong=\"H3605\"* that|strong=\"H7200\"* was|strong=\"H3068\"* under|strong=\"H3027\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, because|strong=\"H3027\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H1004\"* him|strong=\"H3027\"*; and|strong=\"H3068\"* that|strong=\"H7200\"* which|strong=\"H1931\"* he|strong=\"H1931\"* did|strong=\"H6213\"*, Yahweh|strong=\"H3068\"* made|strong=\"H6213\"* it|strong=\"H1931\"* prosper|strong=\"H6743\"*." + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* these|strong=\"H4428\"* things|strong=\"H1697\"*, the|strong=\"H1697\"* butler of|strong=\"H4428\"* the|strong=\"H1697\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* and|strong=\"H4428\"* his|strong=\"H1961\"* baker offended|strong=\"H2398\"* their|strong=\"H1961\"* lord, the|strong=\"H1697\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 2, + "text": "Pharaoh|strong=\"H6547\"* was|strong=\"H6547\"* angry|strong=\"H7107\"* with|strong=\"H5921\"* his|strong=\"H5921\"* two|strong=\"H8147\"* officers|strong=\"H8269\"*, the|strong=\"H5921\"* chief|strong=\"H8269\"* cup bearer and|strong=\"H6547\"* the|strong=\"H5921\"* chief|strong=\"H8269\"* baker." + }, + { + "verseNum": 3, + "text": "He|strong=\"H8033\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H1004\"* custody|strong=\"H4929\"* in|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5414\"* captain|strong=\"H8269\"* of|strong=\"H1004\"* the|strong=\"H5414\"* guard|strong=\"H2876\"*, into|strong=\"H3130\"* the|strong=\"H5414\"* prison|strong=\"H1004\"*, the|strong=\"H5414\"* place|strong=\"H4725\"* where|strong=\"H8033\"* Joseph|strong=\"H3130\"* was|strong=\"H1004\"* bound." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3117\"* captain|strong=\"H8269\"* of|strong=\"H3117\"* the|strong=\"H3117\"* guard|strong=\"H2876\"* assigned|strong=\"H6485\"* them|strong=\"H1961\"* to|strong=\"H1961\"* Joseph|strong=\"H3130\"*, and|strong=\"H3117\"* he|strong=\"H3117\"* took|strong=\"H1961\"* care|strong=\"H6485\"* of|strong=\"H3117\"* them|strong=\"H1961\"*. They|strong=\"H3117\"* stayed in|strong=\"H3117\"* prison|strong=\"H4929\"* many days|strong=\"H3117\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3915\"* both|strong=\"H8147\"* dreamed|strong=\"H2492\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*, each|strong=\"H2492\"* man his|strong=\"H4428\"* dream|strong=\"H2472\"*, in|strong=\"H1004\"* one|strong=\"H8147\"* night|strong=\"H3915\"*, each|strong=\"H2492\"* man according to|strong=\"H4714\"* the|strong=\"H1004\"* interpretation|strong=\"H6623\"* of|strong=\"H4428\"* his|strong=\"H4428\"* dream|strong=\"H2472\"*, the|strong=\"H1004\"* cup bearer and|strong=\"H4428\"* the|strong=\"H1004\"* baker of|strong=\"H4428\"* the|strong=\"H1004\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*, who|strong=\"H4428\"* were|strong=\"H4714\"* bound in|strong=\"H1004\"* the|strong=\"H1004\"* prison|strong=\"H1004\"*." + }, + { + "verseNum": 6, + "text": "Joseph|strong=\"H3130\"* came|strong=\"H3130\"* in|strong=\"H7200\"* to|strong=\"H7200\"* them|strong=\"H7200\"* in|strong=\"H7200\"* the|strong=\"H7200\"* morning|strong=\"H1242\"*, and|strong=\"H1242\"* saw|strong=\"H7200\"* them|strong=\"H7200\"*, and|strong=\"H1242\"* saw|strong=\"H7200\"* that|strong=\"H7200\"* they|strong=\"H7200\"* were|strong=\"H3130\"* sad|strong=\"H2196\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3117\"* asked|strong=\"H7592\"* Pharaoh|strong=\"H6547\"*’s officers|strong=\"H5631\"* who|strong=\"H6547\"* were|strong=\"H3117\"* with|strong=\"H1004\"* him|strong=\"H6440\"* in|strong=\"H1004\"* custody|strong=\"H4929\"* in|strong=\"H1004\"* his|strong=\"H6440\"* master’s house|strong=\"H1004\"*, saying, “Why|strong=\"H4069\"* do you|strong=\"H6440\"* look|strong=\"H6547\"* so|strong=\"H7592\"* sad|strong=\"H7451\"* today|strong=\"H3117\"*?”" + }, + { + "verseNum": 8, + "text": "They|strong=\"H3808\"* said to|strong=\"H3808\"* him|strong=\"H5608\"*, “We|strong=\"H4994\"* have|strong=\"H3808\"* dreamed|strong=\"H2492\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*, and|strong=\"H4994\"* there is|strong=\"H3130\"* no|strong=\"H3808\"* one|strong=\"H3808\"* who|strong=\"H3808\"* can|strong=\"H3808\"* interpret|strong=\"H6622\"* it|strong=\"H3808\"*.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H6440\"* chief|strong=\"H8269\"* cup bearer told|strong=\"H5608\"* his|strong=\"H6440\"* dream|strong=\"H2472\"* to|strong=\"H6440\"* Joseph|strong=\"H3130\"*, and|strong=\"H6440\"* said to|strong=\"H6440\"* him|strong=\"H6440\"*, “In|strong=\"H6440\"* my|strong=\"H5608\"* dream|strong=\"H2472\"*, behold|strong=\"H2009\"*, a|strong=\"H3068\"* vine|strong=\"H1612\"* was|strong=\"H3130\"* in|strong=\"H6440\"* front|strong=\"H6440\"* of|strong=\"H8269\"* me|strong=\"H6440\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"H5927\"* in|strong=\"H5927\"* the|strong=\"H5927\"* vine|strong=\"H1612\"* were|strong=\"H7969\"* three|strong=\"H7969\"* branches|strong=\"H8299\"*. It|strong=\"H1931\"* was|strong=\"H1931\"* as|strong=\"H5927\"* though|strong=\"H1931\"* it|strong=\"H1931\"* budded|strong=\"H6524\"*, it|strong=\"H1931\"* blossomed|strong=\"H6524\"*, and|strong=\"H5927\"* its|strong=\"H5927\"* clusters produced|strong=\"H1310\"* ripe|strong=\"H1310\"* grapes|strong=\"H6025\"*." + }, + { + "verseNum": 11, + "text": "Pharaoh|strong=\"H6547\"*’s cup|strong=\"H3563\"* was|strong=\"H3027\"* in|strong=\"H5921\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*; and|strong=\"H3027\"* I|strong=\"H5414\"* took|strong=\"H3947\"* the|strong=\"H5921\"* grapes|strong=\"H6025\"*, and|strong=\"H3027\"* pressed|strong=\"H7818\"* them|strong=\"H5414\"* into|strong=\"H5921\"* Pharaoh|strong=\"H6547\"*’s cup|strong=\"H3563\"*, and|strong=\"H3027\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* the|strong=\"H5921\"* cup|strong=\"H3563\"* into|strong=\"H5921\"* Pharaoh|strong=\"H6547\"*’s hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 12, + "text": "Joseph|strong=\"H3130\"* said to|strong=\"H3117\"* him|strong=\"H2088\"*, “This|strong=\"H2088\"* is|strong=\"H2088\"* its interpretation|strong=\"H6623\"*: the|strong=\"H3117\"* three|strong=\"H7969\"* branches|strong=\"H8299\"* are|strong=\"H3117\"* three|strong=\"H7969\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 13, + "text": "Within|strong=\"H5921\"* three|strong=\"H7969\"* more|strong=\"H5750\"* days|strong=\"H3117\"*, Pharaoh|strong=\"H6547\"* will|strong=\"H1961\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5414\"* head|strong=\"H7218\"*, and|strong=\"H7725\"* restore|strong=\"H7725\"* you|strong=\"H5414\"* to|strong=\"H7725\"* your|strong=\"H5414\"* office|strong=\"H3653\"*. You|strong=\"H5414\"* will|strong=\"H1961\"* give|strong=\"H5414\"* Pharaoh|strong=\"H6547\"*’s cup|strong=\"H3563\"* into|strong=\"H7725\"* his|strong=\"H5375\"* hand|strong=\"H3027\"*, the|strong=\"H5921\"* way|strong=\"H4941\"* you|strong=\"H5414\"* did|strong=\"H3117\"* when|strong=\"H1961\"* you|strong=\"H5414\"* were|strong=\"H1961\"* his|strong=\"H5375\"* cup|strong=\"H3563\"* bearer|strong=\"H5375\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"H3588\"* remember|strong=\"H2142\"* me|strong=\"H4994\"* when|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H2088\"* well|strong=\"H3190\"* with|strong=\"H1004\"* you|strong=\"H3588\"*. Please|strong=\"H4994\"* show|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H3318\"* me|strong=\"H4994\"*, and|strong=\"H1004\"* make|strong=\"H6213\"* mention|strong=\"H2142\"* of|strong=\"H1004\"* me|strong=\"H4994\"* to|strong=\"H3318\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H1004\"* bring|strong=\"H3318\"* me|strong=\"H4994\"* out|strong=\"H3318\"* of|strong=\"H1004\"* this|strong=\"H2088\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* indeed|strong=\"H3588\"*, I|strong=\"H3588\"* was|strong=\"H3808\"* stolen|strong=\"H1589\"* away|strong=\"H1589\"* out|strong=\"H6213\"* of|strong=\"H6213\"* the|strong=\"H3588\"* land of|strong=\"H6213\"* the|strong=\"H3588\"* Hebrews|strong=\"H5680\"*, and|strong=\"H6213\"* here|strong=\"H6311\"* also|strong=\"H1571\"* I|strong=\"H3588\"* have|strong=\"H1571\"* done|strong=\"H6213\"* nothing|strong=\"H3808\"* that|strong=\"H3588\"* they|strong=\"H3588\"* should|strong=\"H3588\"* put|strong=\"H7760\"* me|strong=\"H7760\"* into|strong=\"H6213\"* the|strong=\"H3588\"* dungeon.”" + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* the|strong=\"H5921\"* chief|strong=\"H7218\"* baker saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H5921\"* interpretation|strong=\"H6622\"* was|strong=\"H3130\"* good|strong=\"H2896\"*, he|strong=\"H3588\"* said to|strong=\"H5921\"* Joseph|strong=\"H3130\"*, “I|strong=\"H3588\"* also|strong=\"H8269\"* was|strong=\"H3130\"* in|strong=\"H5921\"* my|strong=\"H7200\"* dream|strong=\"H2472\"*, and|strong=\"H7218\"* behold|strong=\"H2009\"*, three|strong=\"H7969\"* baskets|strong=\"H5536\"* of|strong=\"H8269\"* white|strong=\"H2751\"* bread|strong=\"H2751\"* were|strong=\"H8269\"* on|strong=\"H5921\"* my|strong=\"H7200\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 17, + "text": "In|strong=\"H5921\"* the|strong=\"H3605\"* uppermost|strong=\"H5945\"* basket|strong=\"H5536\"* there|strong=\"H4480\"* were|strong=\"H7218\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H7218\"* baked food|strong=\"H3978\"* for|strong=\"H5921\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H7218\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* ate them|strong=\"H5921\"* out|strong=\"H4480\"* of|strong=\"H7218\"* the|strong=\"H3605\"* basket|strong=\"H5536\"* on|strong=\"H5921\"* my|strong=\"H3605\"* head|strong=\"H7218\"*.”" + }, + { + "verseNum": 18, + "text": "Joseph|strong=\"H3130\"* answered|strong=\"H6030\"*, “This|strong=\"H2088\"* is|strong=\"H2088\"* its interpretation|strong=\"H6623\"*. The|strong=\"H3117\"* three|strong=\"H7969\"* baskets|strong=\"H5536\"* are|strong=\"H3117\"* three|strong=\"H7969\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 19, + "text": "Within|strong=\"H5921\"* three|strong=\"H7969\"* more|strong=\"H5750\"* days|strong=\"H3117\"*, Pharaoh|strong=\"H6547\"* will|strong=\"H1320\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5921\"* head|strong=\"H7218\"* from|strong=\"H5921\"* off|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H3117\"* will|strong=\"H1320\"* hang|strong=\"H8518\"* you|strong=\"H5921\"* on|strong=\"H5921\"* a|strong=\"H3068\"* tree|strong=\"H6086\"*; and|strong=\"H3117\"* the|strong=\"H5921\"* birds|strong=\"H5775\"* will|strong=\"H1320\"* eat your|strong=\"H5921\"* flesh|strong=\"H1320\"* from|strong=\"H5921\"* off|strong=\"H5921\"* you|strong=\"H5921\"*.”" + }, + { + "verseNum": 20, + "text": "On|strong=\"H3117\"* the|strong=\"H3605\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, which|strong=\"H8269\"* was|strong=\"H1961\"* Pharaoh|strong=\"H6547\"*’s birthday|strong=\"H3205\"*, he|strong=\"H3117\"* made|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H4960\"* for|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*, and|strong=\"H3117\"* he|strong=\"H3117\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H3117\"* the|strong=\"H3605\"* chief|strong=\"H7218\"* cup bearer|strong=\"H5375\"* and|strong=\"H3117\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H3117\"* the|strong=\"H3605\"* chief|strong=\"H7218\"* baker among|strong=\"H8432\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H5414\"* restored|strong=\"H7725\"* the|strong=\"H5921\"* chief|strong=\"H8269\"* cup|strong=\"H3563\"* bearer to|strong=\"H7725\"* his|strong=\"H5414\"* position again|strong=\"H7725\"*, and|strong=\"H7725\"* he|strong=\"H5414\"* gave|strong=\"H5414\"* the|strong=\"H5921\"* cup|strong=\"H3563\"* into|strong=\"H7725\"* Pharaoh|strong=\"H6547\"*’s hand|strong=\"H3709\"*;" + }, + { + "verseNum": 22, + "text": "but he|strong=\"H3130\"* hanged|strong=\"H8518\"* the|strong=\"H8518\"* chief|strong=\"H8269\"* baker, as Joseph|strong=\"H3130\"* had|strong=\"H3130\"* interpreted|strong=\"H6622\"* to|strong=\"H3130\"* them|strong=\"H8518\"*." + }, + { + "verseNum": 23, + "text": "Yet|strong=\"H3808\"* the|strong=\"H2142\"* chief|strong=\"H8269\"* cup bearer didn’t remember|strong=\"H2142\"* Joseph|strong=\"H3130\"*, but|strong=\"H3808\"* forgot|strong=\"H7911\"* him|strong=\"H2142\"*." + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"H5921\"* the|strong=\"H5921\"* end|strong=\"H7093\"* of|strong=\"H3117\"* two full|strong=\"H3117\"* years|strong=\"H8141\"*, Pharaoh|strong=\"H6547\"* dreamed|strong=\"H2492\"*, and|strong=\"H3117\"* behold|strong=\"H2009\"*, he|strong=\"H3117\"* stood|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H5921\"* river|strong=\"H2975\"*." + }, + { + "verseNum": 2, + "text": "Behold|strong=\"H2009\"*, seven|strong=\"H7651\"* cattle came|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* river|strong=\"H2975\"*. They|strong=\"H5927\"* were|strong=\"H2009\"* sleek|strong=\"H3303\"* and|strong=\"H5927\"* fat|strong=\"H1277\"*, and|strong=\"H5927\"* they|strong=\"H5927\"* fed|strong=\"H7462\"* in|strong=\"H1320\"* the|strong=\"H4480\"* marsh grass." + }, + { + "verseNum": 3, + "text": "Behold|strong=\"H2009\"*, seven|strong=\"H7651\"* other|strong=\"H8193\"* cattle came|strong=\"H5927\"* up|strong=\"H5927\"* after|strong=\"H4480\"* them|strong=\"H5921\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5921\"* river|strong=\"H2975\"*, ugly|strong=\"H7451\"* and|strong=\"H5975\"* thin|strong=\"H1851\"*, and|strong=\"H5975\"* stood|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H8193\"* cattle on|strong=\"H5921\"* the|strong=\"H5921\"* brink|strong=\"H8193\"* of|strong=\"H4480\"* the|strong=\"H5921\"* river|strong=\"H2975\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H7451\"* ugly|strong=\"H7451\"* and|strong=\"H6547\"* thin|strong=\"H1851\"* cattle ate up the|strong=\"H7451\"* seven|strong=\"H7651\"* sleek|strong=\"H3303\"* and|strong=\"H6547\"* fat|strong=\"H1277\"* cattle. So Pharaoh|strong=\"H6547\"* awoke|strong=\"H3364\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H2009\"* slept|strong=\"H3462\"* and|strong=\"H5927\"* dreamed|strong=\"H2492\"* a|strong=\"H3068\"* second|strong=\"H8145\"* time|strong=\"H8145\"*; and|strong=\"H5927\"* behold|strong=\"H2009\"*, seven|strong=\"H7651\"* heads|strong=\"H7641\"* of|strong=\"H2896\"* grain|strong=\"H7641\"* came|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H5927\"* one|strong=\"H2896\"* stalk|strong=\"H7070\"*, healthy|strong=\"H1277\"* and|strong=\"H5927\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 6, + "text": "Behold|strong=\"H2009\"*, seven|strong=\"H7651\"* heads|strong=\"H7641\"* of|strong=\"H7641\"* grain|strong=\"H7641\"*, thin|strong=\"H1851\"* and|strong=\"H7651\"* blasted|strong=\"H7710\"* with the|strong=\"H2009\"* east|strong=\"H6921\"* wind|strong=\"H6921\"*, sprung|strong=\"H6779\"* up|strong=\"H6779\"* after|strong=\"H6779\"* them." + }, + { + "verseNum": 7, + "text": "The|strong=\"H2009\"* thin|strong=\"H1851\"* heads|strong=\"H7641\"* of|strong=\"H4392\"* grain|strong=\"H7641\"* swallowed|strong=\"H1104\"* up|strong=\"H1104\"* the|strong=\"H2009\"* seven|strong=\"H7651\"* healthy|strong=\"H1277\"* and|strong=\"H6547\"* full|strong=\"H4392\"* ears|strong=\"H7641\"*. Pharaoh|strong=\"H6547\"* awoke|strong=\"H3364\"*, and|strong=\"H6547\"* behold|strong=\"H2009\"*, it|strong=\"H2009\"* was|strong=\"H6547\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*." + }, + { + "verseNum": 8, + "text": "In|strong=\"H7121\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*, his|strong=\"H3605\"* spirit|strong=\"H7307\"* was|strong=\"H1961\"* troubled|strong=\"H6470\"*, and|strong=\"H7971\"* he|strong=\"H3605\"* sent|strong=\"H7971\"* and|strong=\"H7971\"* called|strong=\"H7121\"* for|strong=\"H7121\"* all|strong=\"H3605\"* of|strong=\"H7307\"* Egypt|strong=\"H4714\"*’s magicians|strong=\"H2748\"* and|strong=\"H7971\"* wise|strong=\"H2450\"* men|strong=\"H2450\"*. Pharaoh|strong=\"H6547\"* told|strong=\"H5608\"* them|strong=\"H7971\"* his|strong=\"H3605\"* dreams|strong=\"H2472\"*, but|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3605\"* one|strong=\"H3605\"* who|strong=\"H3605\"* could interpret|strong=\"H6622\"* them|strong=\"H7971\"* to|strong=\"H7971\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H1696\"* the|strong=\"H3117\"* chief|strong=\"H8269\"* cup bearer spoke|strong=\"H1696\"* to|strong=\"H1696\"* Pharaoh|strong=\"H6547\"*, saying|strong=\"H1696\"*, “I|strong=\"H3117\"* remember|strong=\"H2142\"* my|strong=\"H2142\"* faults|strong=\"H2399\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 10, + "text": "Pharaoh|strong=\"H6547\"* was|strong=\"H1004\"* angry|strong=\"H7107\"* with|strong=\"H1004\"* his|strong=\"H5414\"* servants|strong=\"H5650\"*, and|strong=\"H1004\"* put|strong=\"H5414\"* me|strong=\"H5414\"* in|strong=\"H5921\"* custody|strong=\"H4929\"* in|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5921\"* captain|strong=\"H8269\"* of|strong=\"H1004\"* the|strong=\"H5921\"* guard|strong=\"H2876\"*, with|strong=\"H1004\"* the|strong=\"H5921\"* chief|strong=\"H8269\"* baker." + }, + { + "verseNum": 11, + "text": "We dreamed|strong=\"H2492\"* a|strong=\"H3068\"* dream|strong=\"H2472\"* in|strong=\"H2472\"* one|strong=\"H1931\"* night|strong=\"H3915\"*, he|strong=\"H1931\"* and|strong=\"H3915\"* I. Each|strong=\"H2492\"* man dreamed|strong=\"H2492\"* according to|strong=\"H3915\"* the|strong=\"H3915\"* interpretation|strong=\"H6623\"* of|strong=\"H2492\"* his|strong=\"H1931\"* dream|strong=\"H2472\"*." + }, + { + "verseNum": 12, + "text": "There|strong=\"H8033\"* was|strong=\"H5288\"* with|strong=\"H8033\"* us|strong=\"H5608\"* there|strong=\"H8033\"* a|strong=\"H3068\"* young|strong=\"H5288\"* man|strong=\"H5288\"*, a|strong=\"H3068\"* Hebrew|strong=\"H5680\"*, servant|strong=\"H5650\"* to|strong=\"H5650\"* the|strong=\"H5650\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H5650\"* guard|strong=\"H2876\"*, and|strong=\"H5650\"* we|strong=\"H3068\"* told|strong=\"H5608\"* him|strong=\"H5608\"*, and|strong=\"H5650\"* he|strong=\"H8033\"* interpreted|strong=\"H6622\"* to|strong=\"H5650\"* us|strong=\"H5608\"* our|strong=\"H5650\"* dreams|strong=\"H2472\"*. He|strong=\"H8033\"* interpreted|strong=\"H6622\"* to|strong=\"H5650\"* each man|strong=\"H5288\"* according to|strong=\"H5650\"* his|strong=\"H5608\"* dream|strong=\"H2472\"*." + }, + { + "verseNum": 13, + "text": "As|strong=\"H1961\"* he|strong=\"H3651\"* interpreted|strong=\"H6622\"* to|strong=\"H7725\"* us|strong=\"H7725\"*, so|strong=\"H3651\"* it|strong=\"H5921\"* was|strong=\"H1961\"*. He|strong=\"H3651\"* restored|strong=\"H7725\"* me|strong=\"H7725\"* to|strong=\"H7725\"* my|strong=\"H5921\"* office|strong=\"H3653\"*, and|strong=\"H7725\"* he|strong=\"H3651\"* hanged|strong=\"H8518\"* him|strong=\"H5921\"*.”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H7971\"* Pharaoh|strong=\"H6547\"* sent|strong=\"H7971\"* and|strong=\"H7971\"* called|strong=\"H7121\"* Joseph|strong=\"H3130\"*, and|strong=\"H7971\"* they|strong=\"H7323\"* brought|strong=\"H7323\"* him|strong=\"H7121\"* hastily|strong=\"H7323\"* out|strong=\"H7971\"* of|strong=\"H4480\"* the|strong=\"H4480\"* dungeon. He|strong=\"H4480\"* shaved|strong=\"H1548\"* himself|strong=\"H7121\"*, changed|strong=\"H2498\"* his|strong=\"H7121\"* clothing|strong=\"H8071\"*, and|strong=\"H7971\"* came|strong=\"H3130\"* in|strong=\"H7121\"* to|strong=\"H7971\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 15, + "text": "Pharaoh|strong=\"H6547\"* said|strong=\"H8085\"* to|strong=\"H5921\"* Joseph|strong=\"H3130\"*, “I|strong=\"H5921\"* have|strong=\"H5921\"* dreamed|strong=\"H2492\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*, and|strong=\"H8085\"* there is|strong=\"H3130\"* no one|strong=\"H8085\"* who|strong=\"H6547\"* can interpret|strong=\"H6622\"* it|strong=\"H5921\"*. I|strong=\"H5921\"* have|strong=\"H5921\"* heard|strong=\"H8085\"* it|strong=\"H5921\"* said|strong=\"H8085\"* of|strong=\"H5921\"* you|strong=\"H5921\"*, that|strong=\"H8085\"* when|strong=\"H8085\"* you|strong=\"H5921\"* hear|strong=\"H8085\"* a|strong=\"H3068\"* dream|strong=\"H2472\"* you|strong=\"H5921\"* can interpret|strong=\"H6622\"* it|strong=\"H5921\"*.”" + }, + { + "verseNum": 16, + "text": "Joseph|strong=\"H3130\"* answered|strong=\"H6030\"* Pharaoh|strong=\"H6547\"*, saying, “It|strong=\"H7965\"* isn’t in|strong=\"H6547\"* me|strong=\"H6030\"*. God will|strong=\"H6547\"* give|strong=\"H6030\"* Pharaoh|strong=\"H6547\"* an|strong=\"H6030\"* answer|strong=\"H6030\"* of|strong=\"H7965\"* peace|strong=\"H7965\"*.”" + }, + { + "verseNum": 17, + "text": "Pharaoh|strong=\"H6547\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Joseph|strong=\"H3130\"*, “In|strong=\"H5921\"* my|strong=\"H5921\"* dream|strong=\"H2472\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* the|strong=\"H5921\"* brink|strong=\"H8193\"* of|strong=\"H5921\"* the|strong=\"H5921\"* river|strong=\"H2975\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H5927\"* behold|strong=\"H2009\"*, seven|strong=\"H7651\"* fat|strong=\"H1277\"* and|strong=\"H5927\"* sleek|strong=\"H3303\"* cattle came|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* river|strong=\"H2975\"*. They|strong=\"H5927\"* fed|strong=\"H7462\"* in|strong=\"H1320\"* the|strong=\"H4480\"* marsh grass;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H4714\"* behold|strong=\"H2009\"*, seven|strong=\"H7651\"* other|strong=\"H3605\"* cattle came|strong=\"H5927\"* up|strong=\"H5927\"* after|strong=\"H5927\"* them|strong=\"H7200\"*, poor|strong=\"H1803\"* and|strong=\"H4714\"* very|strong=\"H3966\"* ugly|strong=\"H7451\"* and|strong=\"H4714\"* thin|strong=\"H7534\"*, such|strong=\"H2007\"* as|strong=\"H5927\"* I|strong=\"H2009\"* never|strong=\"H3808\"* saw|strong=\"H7200\"* in|strong=\"H1320\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Egypt|strong=\"H4714\"* for|strong=\"H4714\"* ugliness|strong=\"H7455\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H7534\"* thin|strong=\"H7534\"* and|strong=\"H7223\"* ugly|strong=\"H7451\"* cattle ate up the|strong=\"H7534\"* first|strong=\"H7223\"* seven|strong=\"H7651\"* fat|strong=\"H1277\"* cattle;" + }, + { + "verseNum": 21, + "text": "and|strong=\"H3045\"* when|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3588\"* eaten them|strong=\"H3588\"* up, it|strong=\"H3588\"* couldn’t be|strong=\"H3808\"* known|strong=\"H3045\"* that|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3588\"* eaten them|strong=\"H3588\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H7451\"* still|strong=\"H4758\"* ugly|strong=\"H7451\"*, as|strong=\"H3588\"* at|strong=\"H3808\"* the|strong=\"H3588\"* beginning|strong=\"H8462\"*. So|strong=\"H3808\"* I|strong=\"H3588\"* awoke|strong=\"H3364\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"H2009\"* saw|strong=\"H7200\"* in|strong=\"H5927\"* my|strong=\"H7200\"* dream|strong=\"H2472\"*, and|strong=\"H7200\"* behold|strong=\"H2009\"*, seven|strong=\"H7651\"* heads|strong=\"H7641\"* of|strong=\"H4392\"* grain|strong=\"H7641\"* came|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H7200\"* one|strong=\"H2896\"* stalk|strong=\"H7070\"*, full|strong=\"H4392\"* and|strong=\"H7200\"* good|strong=\"H2896\"*;" + }, + { + "verseNum": 23, + "text": "and|strong=\"H7651\"* behold|strong=\"H2009\"*, seven|strong=\"H7651\"* heads|strong=\"H7641\"* of|strong=\"H7641\"* grain|strong=\"H7641\"*, withered|strong=\"H6798\"*, thin|strong=\"H1851\"*, and|strong=\"H7651\"* blasted|strong=\"H7710\"* with the|strong=\"H2009\"* east|strong=\"H6921\"* wind|strong=\"H6921\"*, sprung|strong=\"H6779\"* up|strong=\"H6779\"* after|strong=\"H6779\"* them." + }, + { + "verseNum": 24, + "text": "The|strong=\"H5046\"* thin|strong=\"H1851\"* heads|strong=\"H7641\"* of|strong=\"H2748\"* grain|strong=\"H7641\"* swallowed|strong=\"H1104\"* up|strong=\"H1104\"* the|strong=\"H5046\"* seven|strong=\"H7651\"* good|strong=\"H2896\"* heads|strong=\"H7641\"* of|strong=\"H2748\"* grain|strong=\"H7641\"*. I|strong=\"H5046\"* told|strong=\"H5046\"* it|strong=\"H2896\"* to|strong=\"H5046\"* the|strong=\"H5046\"* magicians|strong=\"H2748\"*, but|strong=\"H1104\"* there was|strong=\"H2896\"* no one|strong=\"H2896\"* who|strong=\"H2896\"* could explain|strong=\"H5046\"* it|strong=\"H2896\"* to|strong=\"H5046\"* me|strong=\"H5046\"*.”" + }, + { + "verseNum": 25, + "text": "Joseph|strong=\"H3130\"* said to|strong=\"H6213\"* Pharaoh|strong=\"H6547\"*, “The|strong=\"H6213\"* dream|strong=\"H2472\"* of|strong=\"H6213\"* Pharaoh|strong=\"H6547\"* is|strong=\"H1931\"* one|strong=\"H1931\"*. What|strong=\"H6213\"* God is|strong=\"H1931\"* about|strong=\"H6213\"* to|strong=\"H6213\"* do|strong=\"H6213\"* he|strong=\"H1931\"* has|strong=\"H6213\"* declared|strong=\"H5046\"* to|strong=\"H6213\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H8141\"* seven|strong=\"H7651\"* good|strong=\"H2896\"* cattle are|strong=\"H8141\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*; and|strong=\"H8141\"* the|strong=\"H8141\"* seven|strong=\"H7651\"* good|strong=\"H2896\"* heads|strong=\"H7641\"* of|strong=\"H8141\"* grain|strong=\"H7641\"* are|strong=\"H8141\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*. The|strong=\"H8141\"* dream|strong=\"H2472\"* is|strong=\"H1931\"* one|strong=\"H1931\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H5927\"* seven|strong=\"H7651\"* thin|strong=\"H7534\"* and|strong=\"H8141\"* ugly|strong=\"H7451\"* cattle that|strong=\"H8141\"* came|strong=\"H1961\"* up|strong=\"H5927\"* after|strong=\"H1961\"* them|strong=\"H2007\"* are|strong=\"H8141\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*, and|strong=\"H8141\"* also the|strong=\"H5927\"* seven|strong=\"H7651\"* empty|strong=\"H7386\"* heads|strong=\"H7641\"* of|strong=\"H8141\"* grain|strong=\"H7641\"* blasted|strong=\"H7710\"* with|strong=\"H5927\"* the|strong=\"H5927\"* east|strong=\"H6921\"* wind|strong=\"H6921\"*; they|strong=\"H2007\"* will|strong=\"H1961\"* be|strong=\"H1961\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* of|strong=\"H8141\"* famine|strong=\"H7458\"*." + }, + { + "verseNum": 28, + "text": "That|strong=\"H7200\"* is|strong=\"H1931\"* the|strong=\"H7200\"* thing|strong=\"H1697\"* which|strong=\"H1931\"* I|strong=\"H1697\"* have|strong=\"H7200\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* Pharaoh|strong=\"H6547\"*. God has|strong=\"H1697\"* shown|strong=\"H7200\"* Pharaoh|strong=\"H6547\"* what|strong=\"H1697\"* he|strong=\"H1931\"* is|strong=\"H1931\"* about|strong=\"H1697\"* to|strong=\"H1696\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 29, + "text": "Behold|strong=\"H2009\"*, seven|strong=\"H7651\"* years|strong=\"H8141\"* of|strong=\"H8141\"* great|strong=\"H1419\"* plenty|strong=\"H7647\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H8141\"* Egypt|strong=\"H4714\"* are|strong=\"H8141\"* coming|strong=\"H2009\"*." + }, + { + "verseNum": 30, + "text": "Seven|strong=\"H7651\"* years|strong=\"H8141\"* of|strong=\"H8141\"* famine|strong=\"H7458\"* will|strong=\"H4714\"* arise|strong=\"H6965\"* after|strong=\"H6965\"* them|strong=\"H3615\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* plenty|strong=\"H7647\"* will|strong=\"H4714\"* be|strong=\"H8141\"* forgotten|strong=\"H7911\"* in|strong=\"H8141\"* the|strong=\"H3605\"* land of|strong=\"H8141\"* Egypt|strong=\"H4714\"*. The|strong=\"H3605\"* famine|strong=\"H7458\"* will|strong=\"H4714\"* consume|strong=\"H3615\"* the|strong=\"H3605\"* land," + }, + { + "verseNum": 31, + "text": "and|strong=\"H6440\"* the|strong=\"H6440\"* plenty|strong=\"H7647\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* known|strong=\"H3045\"* in|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H6440\"* by|strong=\"H3808\"* reason|strong=\"H6440\"* of|strong=\"H6440\"* that|strong=\"H3588\"* famine|strong=\"H7458\"* which|strong=\"H1931\"* follows|strong=\"H3651\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* will|strong=\"H3808\"* be|strong=\"H3808\"* very|strong=\"H3966\"* grievous|strong=\"H3515\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"H5921\"* dream|strong=\"H2472\"* was|strong=\"H1697\"* doubled|strong=\"H8138\"* to|strong=\"H5921\"* Pharaoh|strong=\"H6547\"*, because|strong=\"H3588\"* the|strong=\"H5921\"* thing|strong=\"H1697\"* is|strong=\"H1697\"* established|strong=\"H3559\"* by|strong=\"H5921\"* God, and|strong=\"H6213\"* God will|strong=\"H1697\"* shortly|strong=\"H4116\"* bring|strong=\"H6213\"* it|strong=\"H5921\"* to|strong=\"H5921\"* pass|strong=\"H6213\"*." + }, + { + "verseNum": 33, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H5921\"* let|strong=\"H6258\"* Pharaoh|strong=\"H6547\"* look|strong=\"H7200\"* for|strong=\"H5921\"* a|strong=\"H3068\"* discreet and|strong=\"H4714\"* wise|strong=\"H2450\"* man|strong=\"H2450\"*, and|strong=\"H4714\"* set|strong=\"H7896\"* him|strong=\"H5921\"* over|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H5921\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 34, + "text": "Let|strong=\"H6485\"* Pharaoh|strong=\"H6547\"* do|strong=\"H6213\"* this|strong=\"H6213\"*, and|strong=\"H4714\"* let|strong=\"H6485\"* him|strong=\"H5921\"* appoint|strong=\"H6485\"* overseers|strong=\"H6496\"* over|strong=\"H5921\"* the|strong=\"H5921\"* land, and|strong=\"H4714\"* take|strong=\"H6213\"* up|strong=\"H5921\"* the|strong=\"H5921\"* fifth|strong=\"H2567\"* part|strong=\"H2567\"* of|strong=\"H8141\"* the|strong=\"H5921\"* land of|strong=\"H8141\"* Egypt|strong=\"H4714\"*’s produce|strong=\"H6213\"* in|strong=\"H8141\"* the|strong=\"H5921\"* seven|strong=\"H7651\"* plenteous|strong=\"H7647\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 35, + "text": "Let them|strong=\"H3027\"* gather|strong=\"H6908\"* all|strong=\"H3605\"* the|strong=\"H3605\"* food of|strong=\"H3027\"* these|strong=\"H3605\"* good|strong=\"H2896\"* years|strong=\"H8141\"* that|strong=\"H3605\"* come|strong=\"H5892\"*, and|strong=\"H3027\"* store|strong=\"H6651\"* grain|strong=\"H1250\"* under|strong=\"H8478\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* Pharaoh|strong=\"H6547\"* for|strong=\"H8478\"* food in|strong=\"H8141\"* the|strong=\"H3605\"* cities|strong=\"H5892\"*, and|strong=\"H3027\"* let them|strong=\"H3027\"* keep|strong=\"H8104\"* it|strong=\"H8104\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"H3772\"* food will|strong=\"H1961\"* be|strong=\"H1961\"* to|strong=\"H1961\"* supply the|strong=\"H3772\"* land against|strong=\"H4714\"* the|strong=\"H3772\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* of|strong=\"H8141\"* famine|strong=\"H7458\"*, which will|strong=\"H1961\"* be|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H3772\"* land of|strong=\"H8141\"* Egypt|strong=\"H4714\"*; so|strong=\"H1961\"* that|strong=\"H8141\"* the|strong=\"H3772\"* land will|strong=\"H1961\"* not|strong=\"H3808\"* perish|strong=\"H3772\"* through the|strong=\"H3772\"* famine|strong=\"H7458\"*.”" + }, + { + "verseNum": 37, + "text": "The|strong=\"H3605\"* thing|strong=\"H1697\"* was|strong=\"H1697\"* good|strong=\"H3190\"* in|strong=\"H5650\"* the|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H1697\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H5869\"* in|strong=\"H5650\"* the|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H1697\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 38, + "text": "Pharaoh|strong=\"H6547\"* said to|strong=\"H5650\"* his|strong=\"H4672\"* servants|strong=\"H5650\"*, “Can|strong=\"H5650\"* we|strong=\"H3068\"* find|strong=\"H4672\"* such|strong=\"H2088\"* a|strong=\"H3068\"* one|strong=\"H2088\"* as|strong=\"H5650\"* this|strong=\"H2088\"*, a|strong=\"H3068\"* man|strong=\"H2088\"* in|strong=\"H4672\"* whom is|strong=\"H2088\"* the|strong=\"H4672\"* Spirit|strong=\"H7307\"* of|strong=\"H7307\"* God?”" + }, + { + "verseNum": 39, + "text": "Pharaoh|strong=\"H6547\"* said to|strong=\"H3045\"* Joseph|strong=\"H3130\"*, “Because|strong=\"H3605\"* God has|strong=\"H3045\"* shown|strong=\"H3045\"* you|strong=\"H3605\"* all|strong=\"H3605\"* of|strong=\"H3605\"* this|strong=\"H2063\"*, there|strong=\"H3605\"* is|strong=\"H3605\"* no|strong=\"H3605\"* one|strong=\"H3605\"* so|strong=\"H2063\"* discreet and|strong=\"H6547\"* wise|strong=\"H2450\"* as|strong=\"H3644\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 40, + "text": "You|strong=\"H3605\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* over|strong=\"H5921\"* my|strong=\"H3605\"* house|strong=\"H1004\"*. All|strong=\"H3605\"* my|strong=\"H3605\"* people|strong=\"H5971\"* will|strong=\"H1961\"* be|strong=\"H1961\"* ruled|strong=\"H5401\"* according|strong=\"H5921\"* to|strong=\"H1961\"* your|strong=\"H3605\"* word|strong=\"H6310\"*. Only|strong=\"H7535\"* in|strong=\"H5921\"* the|strong=\"H3605\"* throne|strong=\"H3678\"* I|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* greater|strong=\"H1431\"* than|strong=\"H4480\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 41, + "text": "Pharaoh|strong=\"H6547\"* said to|strong=\"H5921\"* Joseph|strong=\"H3130\"*, “Behold|strong=\"H7200\"*, I|strong=\"H5414\"* have|strong=\"H7200\"* set|strong=\"H5414\"* you|strong=\"H5414\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H5921\"* Egypt|strong=\"H4714\"*.”" + }, + { + "verseNum": 42, + "text": "Pharaoh|strong=\"H6547\"* took|strong=\"H5493\"* off|strong=\"H5493\"* his|strong=\"H5414\"* signet|strong=\"H2885\"* ring|strong=\"H2885\"* from|strong=\"H5493\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* Joseph|strong=\"H3130\"*’s hand|strong=\"H3027\"*, and|strong=\"H3027\"* arrayed|strong=\"H3847\"* him|strong=\"H5414\"* in|strong=\"H5921\"* robes of|strong=\"H3027\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"*, and|strong=\"H3027\"* put|strong=\"H5414\"* a|strong=\"H3068\"* gold|strong=\"H2091\"* chain|strong=\"H7242\"* about|strong=\"H5921\"* his|strong=\"H5414\"* neck|strong=\"H6677\"*." + }, + { + "verseNum": 43, + "text": "He|strong=\"H3605\"* made|strong=\"H5414\"* him|strong=\"H5414\"* ride|strong=\"H7392\"* in|strong=\"H5921\"* the|strong=\"H3605\"* second|strong=\"H4932\"* chariot|strong=\"H4818\"* which|strong=\"H3605\"* he|strong=\"H3605\"* had|strong=\"H5414\"*. They|strong=\"H5921\"* cried|strong=\"H7121\"* before|strong=\"H6440\"* him|strong=\"H5414\"*, “Bow the|strong=\"H3605\"* knee!” He|strong=\"H3605\"* set|strong=\"H5414\"* him|strong=\"H5414\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H6440\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 44, + "text": "Pharaoh|strong=\"H6547\"* said to|strong=\"H3027\"* Joseph|strong=\"H3130\"*, “I|strong=\"H4714\"* am Pharaoh|strong=\"H6547\"*. Without|strong=\"H3808\"* you|strong=\"H3605\"*, no|strong=\"H3808\"* man|strong=\"H3605\"* shall|strong=\"H4714\"* lift|strong=\"H7311\"* up|strong=\"H7311\"* his|strong=\"H3605\"* hand|strong=\"H3027\"* or|strong=\"H3808\"* his|strong=\"H3605\"* foot|strong=\"H7272\"* in|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3027\"* Egypt|strong=\"H4714\"*.”" + }, + { + "verseNum": 45, + "text": "Pharaoh|strong=\"H6547\"* called|strong=\"H7121\"* Joseph|strong=\"H3130\"*’s name|strong=\"H8034\"* Zaphenath-Paneah|strong=\"H6847\"*. He|strong=\"H5414\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* Asenath, the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Potiphera|strong=\"H6319\"* priest|strong=\"H3548\"* of|strong=\"H1323\"* On|strong=\"H5921\"* as|strong=\"H3318\"* a|strong=\"H3068\"* wife. Joseph|strong=\"H3130\"* went|strong=\"H3318\"* out|strong=\"H3318\"* over|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1323\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 46, + "text": "Joseph|strong=\"H3130\"* was|strong=\"H4428\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H3318\"* he|strong=\"H3605\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*. Joseph|strong=\"H3130\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3605\"* presence|strong=\"H6440\"* of|strong=\"H1121\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H1121\"* went|strong=\"H3318\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 47, + "text": "In|strong=\"H8141\"* the|strong=\"H6213\"* seven|strong=\"H7651\"* plenteous|strong=\"H7647\"* years|strong=\"H8141\"* the|strong=\"H6213\"* earth produced|strong=\"H6213\"* abundantly|strong=\"H7062\"*." + }, + { + "verseNum": 48, + "text": "He|strong=\"H3605\"* gathered|strong=\"H6908\"* up|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* food of|strong=\"H8141\"* the|strong=\"H3605\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* which|strong=\"H5892\"* were|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H3605\"* land|strong=\"H7704\"* of|strong=\"H8141\"* Egypt|strong=\"H4714\"*, and|strong=\"H5892\"* laid|strong=\"H5414\"* up|strong=\"H5414\"* the|strong=\"H3605\"* food in|strong=\"H8141\"* the|strong=\"H3605\"* cities|strong=\"H5892\"*. He|strong=\"H3605\"* stored|strong=\"H5414\"* food in|strong=\"H8141\"* each|strong=\"H3605\"* city|strong=\"H5892\"* from|strong=\"H1961\"* the|strong=\"H3605\"* fields|strong=\"H7704\"* around|strong=\"H5439\"* that|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 49, + "text": "Joseph|strong=\"H3130\"* laid up|strong=\"H6651\"* grain|strong=\"H1250\"* as|strong=\"H5704\"* the|strong=\"H3588\"* sand|strong=\"H2344\"* of|strong=\"H4557\"* the|strong=\"H3588\"* sea|strong=\"H3220\"*, very|strong=\"H3966\"* much|strong=\"H7235\"*, until|strong=\"H5704\"* he|strong=\"H3588\"* stopped|strong=\"H2308\"* counting|strong=\"H4557\"*, for|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3130\"* without|strong=\"H3588\"* number|strong=\"H4557\"*." + }, + { + "verseNum": 50, + "text": "To|strong=\"H3205\"* Joseph|strong=\"H3130\"* were|strong=\"H1121\"* born|strong=\"H3205\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* before|strong=\"H2962\"* the|strong=\"H3205\"* year|strong=\"H8141\"* of|strong=\"H1121\"* famine|strong=\"H7458\"* came|strong=\"H1323\"*, whom Asenath, the|strong=\"H3205\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Potiphera|strong=\"H6319\"* priest|strong=\"H3548\"* of|strong=\"H1121\"* On|strong=\"H3205\"*, bore|strong=\"H3205\"* to|strong=\"H3205\"* him|strong=\"H3205\"*." + }, + { + "verseNum": 51, + "text": "Joseph|strong=\"H3130\"* called|strong=\"H7121\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H1004\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* Manasseh|strong=\"H4519\"*,+ 41:51 “Manasseh” sounds like the Hebrew for “forget”.* “For|strong=\"H3588\"*”, he|strong=\"H3588\"* said|strong=\"H7121\"*, “God has|strong=\"H3588\"* made|strong=\"H3130\"* me|strong=\"H7121\"* forget|strong=\"H5382\"* all|strong=\"H3605\"* my|strong=\"H3605\"* toil|strong=\"H5999\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* my|strong=\"H3605\"* father’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 52, + "text": "The|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H3588\"* second|strong=\"H8145\"*, he|strong=\"H3588\"* called|strong=\"H7121\"* Ephraim|strong=\"H8034\"*:+ 41:52 “Ephraim” sounds like the Hebrew for “twice fruitful”.* “For|strong=\"H3588\"* God has|strong=\"H3588\"* made|strong=\"H7121\"* me|strong=\"H7121\"* fruitful|strong=\"H6509\"* in|strong=\"H8034\"* the|strong=\"H3588\"* land of|strong=\"H8034\"* my|strong=\"H3588\"* affliction|strong=\"H6040\"*.”" + }, + { + "verseNum": 53, + "text": "The|strong=\"H1961\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* of|strong=\"H8141\"* plenty|strong=\"H7647\"*, that|strong=\"H8141\"* were|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H1961\"* land of|strong=\"H8141\"* Egypt|strong=\"H4714\"*, came|strong=\"H1961\"* to|strong=\"H1961\"* an|strong=\"H1961\"* end|strong=\"H3615\"*." + }, + { + "verseNum": 54, + "text": "The|strong=\"H3605\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* of|strong=\"H8141\"* famine|strong=\"H7458\"* began|strong=\"H2490\"* to|strong=\"H1961\"* come|strong=\"H1961\"*, just|strong=\"H3605\"* as|strong=\"H1961\"* Joseph|strong=\"H3130\"* had|strong=\"H1961\"* said. There|strong=\"H1961\"* was|strong=\"H1961\"* famine|strong=\"H7458\"* in|strong=\"H8141\"* all|strong=\"H3605\"* lands, but|strong=\"H1961\"* in|strong=\"H8141\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H8141\"* Egypt|strong=\"H4714\"* there|strong=\"H1961\"* was|strong=\"H1961\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 55, + "text": "When|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H5971\"* Egypt|strong=\"H4714\"* was|strong=\"H6547\"* famished|strong=\"H7456\"*, the|strong=\"H3605\"* people|strong=\"H5971\"* cried|strong=\"H6817\"* to|strong=\"H3212\"* Pharaoh|strong=\"H6547\"* for|strong=\"H6213\"* bread|strong=\"H3899\"*, and|strong=\"H3212\"* Pharaoh|strong=\"H6547\"* said to|strong=\"H3212\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"*, “Go|strong=\"H3212\"* to|strong=\"H3212\"* Joseph|strong=\"H3130\"*. What|strong=\"H6213\"* he|strong=\"H6213\"* says to|strong=\"H3212\"* you|strong=\"H3605\"*, do|strong=\"H6213\"*.”" + }, + { + "verseNum": 56, + "text": "The|strong=\"H3605\"* famine|strong=\"H7458\"* was|strong=\"H1961\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* earth. Joseph|strong=\"H3130\"* opened|strong=\"H6605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* store houses, and|strong=\"H4714\"* sold|strong=\"H7666\"* to|strong=\"H1961\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"*. The|strong=\"H3605\"* famine|strong=\"H7458\"* was|strong=\"H1961\"* severe|strong=\"H2388\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H6440\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 57, + "text": "All|strong=\"H3605\"* countries came|strong=\"H4714\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*, to|strong=\"H4714\"* Joseph|strong=\"H3130\"*, to|strong=\"H4714\"* buy|strong=\"H7666\"* grain|strong=\"H3605\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* famine|strong=\"H7458\"* was|strong=\"H7458\"* severe|strong=\"H2388\"* in|strong=\"H7458\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth." + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3588\"* Jacob|strong=\"H3290\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* there|strong=\"H3426\"* was|strong=\"H1121\"* grain|strong=\"H7668\"* in|strong=\"H1121\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* Jacob|strong=\"H3290\"* said to|strong=\"H4714\"* his|strong=\"H7200\"* sons|strong=\"H1121\"*, “Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3588\"* look|strong=\"H7200\"* at|strong=\"H7200\"* one|strong=\"H1121\"* another|strong=\"H7200\"*?”" + }, + { + "verseNum": 2, + "text": "He|strong=\"H3588\"* said|strong=\"H8085\"*, “Behold|strong=\"H2009\"*, I|strong=\"H3588\"* have|strong=\"H3426\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* there|strong=\"H8033\"* is|strong=\"H3426\"* grain|strong=\"H7668\"* in|strong=\"H4191\"* Egypt|strong=\"H4714\"*. Go|strong=\"H3381\"* down|strong=\"H3381\"* there|strong=\"H8033\"*, and|strong=\"H4714\"* buy|strong=\"H7666\"* for|strong=\"H3588\"* us|strong=\"H3588\"* from|strong=\"H3381\"* there|strong=\"H8033\"*, so|strong=\"H3808\"* that|strong=\"H3588\"* we|strong=\"H3068\"* may|strong=\"H4714\"* live|strong=\"H2421\"*, and|strong=\"H4714\"* not|strong=\"H3808\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 3, + "text": "Joseph|strong=\"H3130\"*’s ten|strong=\"H6235\"* brothers went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* buy|strong=\"H7666\"* grain|strong=\"H1250\"* from|strong=\"H3381\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3588\"* Jacob|strong=\"H3290\"* didn’t send|strong=\"H7971\"* Benjamin|strong=\"H1144\"*, Joseph|strong=\"H3130\"*’s brother, with|strong=\"H7971\"* his|strong=\"H7971\"* brothers; for|strong=\"H3588\"* he|strong=\"H3588\"* said, “Lest|strong=\"H6435\"* perhaps|strong=\"H3588\"* harm|strong=\"H7971\"* happen|strong=\"H7122\"* to|strong=\"H7971\"* him|strong=\"H7971\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* came|strong=\"H1961\"* to|strong=\"H3478\"* buy|strong=\"H7666\"* among|strong=\"H8432\"* those|strong=\"H1121\"* who|strong=\"H1121\"* came|strong=\"H1961\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* famine|strong=\"H7458\"* was|strong=\"H1961\"* in|strong=\"H3478\"* the|strong=\"H3588\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 6, + "text": "Joseph|strong=\"H3130\"* was|strong=\"H1931\"* the|strong=\"H3605\"* governor|strong=\"H7989\"* over|strong=\"H5921\"* the|strong=\"H3605\"* land. It|strong=\"H1931\"* was|strong=\"H1931\"* he|strong=\"H1931\"* who|strong=\"H3605\"* sold|strong=\"H7666\"* to|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H5971\"* the|strong=\"H3605\"* land. Joseph|strong=\"H3130\"*’s brothers came|strong=\"H5971\"*, and|strong=\"H5971\"* bowed|strong=\"H7812\"* themselves|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H5921\"* him|strong=\"H5921\"* with|strong=\"H5921\"* their|strong=\"H3605\"* faces|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 7, + "text": "Joseph|strong=\"H3130\"* saw|strong=\"H7200\"* his|strong=\"H7200\"* brothers, and|strong=\"H7200\"* he|strong=\"H1696\"* recognized|strong=\"H5234\"* them|strong=\"H7200\"*, but|strong=\"H7200\"* acted like a|strong=\"H3068\"* stranger to|strong=\"H1696\"* them|strong=\"H7200\"*, and|strong=\"H7200\"* spoke|strong=\"H1696\"* roughly|strong=\"H7186\"* with|strong=\"H1696\"* them|strong=\"H7200\"*. He|strong=\"H1696\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H7200\"*, “Where did|strong=\"H7200\"* you|strong=\"H7200\"* come from|strong=\"H7200\"*?”" + }, + { + "verseNum": 8, + "text": "Joseph|strong=\"H3130\"* recognized|strong=\"H5234\"* his|strong=\"H3808\"* brothers, but|strong=\"H3808\"* they|strong=\"H1992\"* didn’t recognize|strong=\"H5234\"* him|strong=\"H3130\"*." + }, + { + "verseNum": 9, + "text": "Joseph|strong=\"H3130\"* remembered|strong=\"H2142\"* the|strong=\"H7200\"* dreams|strong=\"H2472\"* which he|strong=\"H3130\"* dreamed|strong=\"H2492\"* about|strong=\"H3130\"* them|strong=\"H7200\"*, and|strong=\"H7200\"* said to|strong=\"H7200\"* them|strong=\"H7200\"*, “You|strong=\"H7200\"* are|strong=\"H2472\"* spies|strong=\"H7270\"*! You|strong=\"H7200\"* have|strong=\"H7200\"* come|strong=\"H2142\"* to|strong=\"H7200\"* see|strong=\"H7200\"* the|strong=\"H7200\"* nakedness|strong=\"H6172\"* of|strong=\"H7200\"* the|strong=\"H7200\"* land.”" + }, + { + "verseNum": 10, + "text": "They|strong=\"H3808\"* said to|strong=\"H5650\"* him, “No|strong=\"H3808\"*, my|strong=\"H5650\"* lord, but|strong=\"H3808\"* your|strong=\"H3808\"* servants|strong=\"H5650\"* have|strong=\"H5650\"* come to|strong=\"H5650\"* buy|strong=\"H7666\"* food." + }, + { + "verseNum": 11, + "text": "We|strong=\"H5168\"* are|strong=\"H1121\"* all|strong=\"H3605\"* one|strong=\"H3605\"* man|strong=\"H1121\"*’s sons|strong=\"H1121\"*; we|strong=\"H3068\"* are|strong=\"H1121\"* honest men|strong=\"H1121\"*. Your|strong=\"H3605\"* servants|strong=\"H5650\"* are|strong=\"H1121\"* not|strong=\"H3808\"* spies|strong=\"H7270\"*.”" + }, + { + "verseNum": 12, + "text": "He|strong=\"H3588\"* said to|strong=\"H7200\"* them|strong=\"H7200\"*, “No|strong=\"H3808\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H7200\"* come to|strong=\"H7200\"* see|strong=\"H7200\"* the|strong=\"H7200\"* nakedness|strong=\"H6172\"* of|strong=\"H3808\"* the|strong=\"H7200\"* land!”" + }, + { + "verseNum": 13, + "text": "They|strong=\"H3117\"* said, “We|strong=\"H3117\"*, your|strong=\"H3117\"* servants|strong=\"H5650\"*, are|strong=\"H3117\"* twelve|strong=\"H8147\"* brothers|strong=\"H1121\"*, the|strong=\"H3117\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* one|strong=\"H1121\"* man|strong=\"H1121\"* in|strong=\"H3117\"* the|strong=\"H3117\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*; and|strong=\"H1121\"* behold|strong=\"H2009\"*, the|strong=\"H3117\"* youngest|strong=\"H6996\"* is|strong=\"H3117\"* today|strong=\"H3117\"* with|strong=\"H3117\"* our|strong=\"H5650\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* one|strong=\"H1121\"* is|strong=\"H3117\"* no more.”" + }, + { + "verseNum": 14, + "text": "Joseph|strong=\"H3130\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H1931\"*, “It|strong=\"H1931\"* is|strong=\"H1931\"* like I told|strong=\"H1696\"* you|strong=\"H1696\"*, saying|strong=\"H1696\"*, ‘You|strong=\"H1696\"* are|strong=\"H3130\"* spies|strong=\"H7270\"*!’" + }, + { + "verseNum": 15, + "text": "By|strong=\"H3318\"* this|strong=\"H2088\"* you|strong=\"H3588\"* shall|strong=\"H6547\"* be|strong=\"H2416\"* tested. By|strong=\"H3318\"* the|strong=\"H3588\"* life|strong=\"H2416\"* of|strong=\"H3318\"* Pharaoh|strong=\"H6547\"*, you|strong=\"H3588\"* shall|strong=\"H6547\"* not|strong=\"H2088\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* here|strong=\"H2088\"*, unless|strong=\"H3588\"* your|strong=\"H3588\"* youngest|strong=\"H6996\"* brother comes|strong=\"H3318\"* here|strong=\"H2088\"*." + }, + { + "verseNum": 16, + "text": "Send|strong=\"H7971\"* one|strong=\"H3808\"* of|strong=\"H1697\"* you|strong=\"H3588\"*, and|strong=\"H7971\"* let|strong=\"H7971\"* him|strong=\"H7971\"* get|strong=\"H3947\"* your|strong=\"H3947\"* brother, and|strong=\"H7971\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* bound, that|strong=\"H3588\"* your|strong=\"H3947\"* words|strong=\"H1697\"* may|strong=\"H2416\"* be|strong=\"H3808\"* tested, whether|strong=\"H4480\"* there|strong=\"H4480\"* is|strong=\"H1697\"* truth|strong=\"H3808\"* in|strong=\"H1697\"* you|strong=\"H3588\"*, or|strong=\"H3808\"* else|strong=\"H3808\"* by|strong=\"H7971\"* the|strong=\"H3588\"* life|strong=\"H2416\"* of|strong=\"H1697\"* Pharaoh|strong=\"H6547\"* surely|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1697\"* spies|strong=\"H7270\"*.”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H3117\"* put them|strong=\"H3117\"* all|strong=\"H3117\"* together into custody|strong=\"H4929\"* for|strong=\"H3117\"* three|strong=\"H7969\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 18, + "text": "Joseph|strong=\"H3130\"* said to|strong=\"H6213\"* them|strong=\"H6213\"* the|strong=\"H6213\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, “Do|strong=\"H6213\"* this|strong=\"H2063\"*, and|strong=\"H3117\"* live|strong=\"H2421\"*, for|strong=\"H6213\"* I|strong=\"H3117\"* fear|strong=\"H3372\"* God." + }, + { + "verseNum": 19, + "text": "If|strong=\"H3651\"* you|strong=\"H3651\"* are|strong=\"H1004\"* honest men, then|strong=\"H3651\"* let|strong=\"H3651\"* one|strong=\"H3651\"* of|strong=\"H1004\"* your|strong=\"H3651\"* brothers be|strong=\"H1004\"* bound in|strong=\"H1004\"* your|strong=\"H3651\"* prison|strong=\"H1004\"*; but|strong=\"H3651\"* you|strong=\"H3651\"* go|strong=\"H3212\"*, carry|strong=\"H3212\"* grain|strong=\"H7668\"* for|strong=\"H1004\"* the|strong=\"H3651\"* famine|strong=\"H7459\"* of|strong=\"H1004\"* your|strong=\"H3651\"* houses|strong=\"H1004\"*." + }, + { + "verseNum": 20, + "text": "Bring|strong=\"H6213\"* your|strong=\"H6213\"* youngest|strong=\"H6996\"* brother to|strong=\"H4191\"* me|strong=\"H6213\"*; so|strong=\"H3651\"* will|strong=\"H1697\"* your|strong=\"H6213\"* words|strong=\"H1697\"* be|strong=\"H4191\"* verified, and|strong=\"H6213\"* you|strong=\"H6213\"* won’t die|strong=\"H4191\"*.”" + }, + { + "verseNum": 21, + "text": "They|strong=\"H3651\"* said|strong=\"H8085\"* to|strong=\"H5921\"* one|strong=\"H3808\"* another|strong=\"H7200\"*, “We|strong=\"H8085\"* are|strong=\"H6869\"* certainly|strong=\"H3808\"* guilty concerning|strong=\"H5921\"* our|strong=\"H7200\"* brother, in|strong=\"H5921\"* that|strong=\"H7200\"* we|strong=\"H3068\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* distress|strong=\"H6869\"* of|strong=\"H5921\"* his|strong=\"H8085\"* soul|strong=\"H5315\"*, when|strong=\"H7200\"* he|strong=\"H3651\"* begged|strong=\"H2603\"* us|strong=\"H5921\"*, and|strong=\"H8085\"* we|strong=\"H3068\"* wouldn’t listen|strong=\"H8085\"*. Therefore|strong=\"H3651\"* this|strong=\"H2063\"* distress|strong=\"H6869\"* has|strong=\"H5315\"* come upon|strong=\"H5921\"* us|strong=\"H5921\"*.”" + }, + { + "verseNum": 22, + "text": "Reuben|strong=\"H7205\"* answered|strong=\"H6030\"* them|strong=\"H6030\"*, saying, “Didn’t I|strong=\"H2009\"* tell|strong=\"H8085\"* you|strong=\"H3808\"*, saying, ‘Don’t sin|strong=\"H2398\"* against|strong=\"H2398\"* the|strong=\"H8085\"* child|strong=\"H3206\"*,’ and|strong=\"H6030\"* you|strong=\"H3808\"* wouldn’t listen|strong=\"H8085\"*? Therefore|strong=\"H1571\"* also|strong=\"H1571\"*, behold|strong=\"H2009\"*, his|strong=\"H8085\"* blood|strong=\"H1818\"* is|strong=\"H1571\"* required|strong=\"H1875\"*.”" + }, + { + "verseNum": 23, + "text": "They|strong=\"H1992\"* didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* Joseph|strong=\"H3130\"* understood|strong=\"H3045\"* them|strong=\"H1992\"*; for|strong=\"H3588\"* there|strong=\"H1992\"* was|strong=\"H3130\"* an|strong=\"H3588\"* interpreter|strong=\"H3887\"* between|strong=\"H3045\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H5921\"* turned|strong=\"H7725\"* himself away|strong=\"H7725\"* from|strong=\"H7725\"* them|strong=\"H5921\"*, and|strong=\"H7725\"* wept|strong=\"H1058\"*. Then|strong=\"H1696\"* he|strong=\"H5921\"* returned|strong=\"H7725\"* to|strong=\"H1696\"* them|strong=\"H5921\"*, and|strong=\"H7725\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5921\"*, and|strong=\"H7725\"* took|strong=\"H3947\"* Simeon|strong=\"H8095\"* from|strong=\"H7725\"* among|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H7725\"* bound him|strong=\"H5921\"* before|strong=\"H5869\"* their|strong=\"H3947\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 25, + "text": "Then|strong=\"H3651\"* Joseph|strong=\"H3130\"* gave|strong=\"H5414\"* a|strong=\"H3068\"* command|strong=\"H6680\"* to|strong=\"H7725\"* fill|strong=\"H4390\"* their|strong=\"H5414\"* bags|strong=\"H3627\"* with|strong=\"H4390\"* grain|strong=\"H1250\"*, and|strong=\"H3701\"* to|strong=\"H7725\"* restore|strong=\"H7725\"* each|strong=\"H5414\"* man’s money|strong=\"H3701\"* into|strong=\"H7725\"* his|strong=\"H5414\"* sack|strong=\"H8242\"*, and|strong=\"H3701\"* to|strong=\"H7725\"* give|strong=\"H5414\"* them|strong=\"H5414\"* food|strong=\"H6720\"* for|strong=\"H6213\"* the|strong=\"H5414\"* way|strong=\"H1870\"*. So|strong=\"H3651\"* it|strong=\"H5414\"* was|strong=\"H3130\"* done|strong=\"H6213\"* to|strong=\"H7725\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H8033\"* loaded|strong=\"H5375\"* their|strong=\"H5375\"* donkeys|strong=\"H2543\"* with|strong=\"H5921\"* their|strong=\"H5375\"* grain|strong=\"H7668\"*, and|strong=\"H3212\"* departed|strong=\"H3212\"* from|strong=\"H5921\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 27, + "text": "As|strong=\"H5414\"* one|strong=\"H1931\"* of|strong=\"H6310\"* them|strong=\"H5414\"* opened|strong=\"H6605\"* his|strong=\"H5414\"* sack|strong=\"H8242\"* to|strong=\"H5414\"* give|strong=\"H5414\"* his|strong=\"H5414\"* donkey|strong=\"H2543\"* food|strong=\"H4554\"* in|strong=\"H5414\"* the|strong=\"H7200\"* lodging|strong=\"H4411\"* place|strong=\"H5414\"*, he|strong=\"H1931\"* saw|strong=\"H7200\"* his|strong=\"H5414\"* money|strong=\"H3701\"*. Behold|strong=\"H2009\"*, it|strong=\"H5414\"* was|strong=\"H1931\"* in|strong=\"H5414\"* the|strong=\"H7200\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* his|strong=\"H5414\"* sack|strong=\"H8242\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H6213\"* said|strong=\"H3318\"* to|strong=\"H7725\"* his|strong=\"H7725\"* brothers, “My|strong=\"H7725\"* money|strong=\"H3701\"* is|strong=\"H3820\"* restored|strong=\"H7725\"*! Behold|strong=\"H2009\"*, it|strong=\"H6213\"* is|strong=\"H3820\"* in|strong=\"H6213\"* my|strong=\"H7725\"* sack!” Their|strong=\"H7725\"* hearts|strong=\"H3820\"* failed|strong=\"H3318\"* them|strong=\"H7725\"*, and|strong=\"H3701\"* they|strong=\"H4100\"* turned|strong=\"H7725\"* trembling|strong=\"H2729\"* to|strong=\"H7725\"* one|strong=\"H6213\"* another|strong=\"H1571\"*, saying, “What|strong=\"H4100\"* is|strong=\"H3820\"* this|strong=\"H2063\"* that|strong=\"H6213\"* God has|strong=\"H3820\"* done|strong=\"H6213\"* to|strong=\"H7725\"* us|strong=\"H7725\"*?”" + }, + { + "verseNum": 29, + "text": "They|strong=\"H3605\"* came to|strong=\"H5046\"* Jacob|strong=\"H3290\"* their|strong=\"H3605\"* father, to|strong=\"H5046\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Canaan|strong=\"H3667\"*, and|strong=\"H3290\"* told|strong=\"H5046\"* him|strong=\"H5046\"* all|strong=\"H3605\"* that|strong=\"H3605\"* had|strong=\"H3290\"* happened|strong=\"H7136\"* to|strong=\"H5046\"* them|strong=\"H5046\"*, saying," + }, + { + "verseNum": 30, + "text": "“The|strong=\"H5414\"* man, the|strong=\"H5414\"* lord of|strong=\"H1696\"* the|strong=\"H5414\"* land, spoke|strong=\"H1696\"* roughly|strong=\"H7186\"* with|strong=\"H1696\"* us|strong=\"H5414\"*, and|strong=\"H1696\"* took|strong=\"H5414\"* us|strong=\"H5414\"* for|strong=\"H5414\"* spies|strong=\"H7270\"* of|strong=\"H1696\"* the|strong=\"H5414\"* country." + }, + { + "verseNum": 31, + "text": "We said|strong=\"H3651\"* to|strong=\"H1961\"* him|strong=\"H1961\"*, ‘We are|strong=\"H1961\"* honest men. We are|strong=\"H1961\"* no|strong=\"H3808\"* spies|strong=\"H7270\"*." + }, + { + "verseNum": 32, + "text": "We|strong=\"H3117\"* are|strong=\"H3117\"* twelve|strong=\"H8147\"* brothers|strong=\"H1121\"*, sons|strong=\"H1121\"* of|strong=\"H1121\"* our father|strong=\"H1121\"*; one|strong=\"H1121\"* is|strong=\"H3117\"* no more, and|strong=\"H1121\"* the|strong=\"H3117\"* youngest|strong=\"H6996\"* is|strong=\"H3117\"* today|strong=\"H3117\"* with|strong=\"H3117\"* our father|strong=\"H1121\"* in|strong=\"H3117\"* the|strong=\"H3117\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*.’" + }, + { + "verseNum": 33, + "text": "The|strong=\"H3588\"* man|strong=\"H3045\"*, the|strong=\"H3588\"* lord of|strong=\"H1004\"* the|strong=\"H3588\"* land, said|strong=\"H3651\"* to|strong=\"H3212\"* us|strong=\"H3045\"*, ‘By|strong=\"H3212\"* this|strong=\"H2063\"* I|strong=\"H3588\"* will|strong=\"H1004\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1004\"* honest men|strong=\"H3947\"*: leave|strong=\"H3240\"* one|strong=\"H3588\"* of|strong=\"H1004\"* your|strong=\"H3947\"* brothers with|strong=\"H1004\"* me|strong=\"H3947\"*, and|strong=\"H3212\"* take|strong=\"H3947\"* grain|strong=\"H7459\"* for|strong=\"H3588\"* the|strong=\"H3588\"* famine|strong=\"H7459\"* of|strong=\"H1004\"* your|strong=\"H3947\"* houses|strong=\"H1004\"*, and|strong=\"H3212\"* go|strong=\"H3212\"* your|strong=\"H3947\"* way|strong=\"H3212\"*." + }, + { + "verseNum": 34, + "text": "Bring|strong=\"H5414\"* your|strong=\"H5414\"* youngest|strong=\"H6996\"* brother to|strong=\"H5414\"* me|strong=\"H5414\"*. Then|strong=\"H3651\"* I|strong=\"H3588\"* will|strong=\"H5414\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3045\"* not|strong=\"H3808\"* spies|strong=\"H7270\"*, but|strong=\"H3588\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3045\"* honest men. So|strong=\"H3651\"* I|strong=\"H3588\"* will|strong=\"H5414\"* deliver|strong=\"H5414\"* your|strong=\"H5414\"* brother to|strong=\"H5414\"* you|strong=\"H3588\"*, and|strong=\"H3045\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* trade|strong=\"H5503\"* in|strong=\"H5414\"* the|strong=\"H3588\"* land.’”" + }, + { + "verseNum": 35, + "text": "As|strong=\"H1961\"* they|strong=\"H1992\"* emptied|strong=\"H7324\"* their|strong=\"H1992\"* sacks|strong=\"H8242\"*, behold|strong=\"H2009\"*, each man|strong=\"H7200\"*’s bundle|strong=\"H6872\"* of|strong=\"H3372\"* money|strong=\"H3701\"* was|strong=\"H1961\"* in|strong=\"H3701\"* his|strong=\"H7200\"* sack|strong=\"H8242\"*. When|strong=\"H1961\"* they|strong=\"H1992\"* and|strong=\"H3701\"* their|strong=\"H1992\"* father saw|strong=\"H7200\"* their|strong=\"H1992\"* bundles|strong=\"H6872\"* of|strong=\"H3372\"* money|strong=\"H3701\"*, they|strong=\"H1992\"* were|strong=\"H1961\"* afraid|strong=\"H3372\"*." + }, + { + "verseNum": 36, + "text": "Jacob|strong=\"H3290\"*, their|strong=\"H3605\"* father, said to|strong=\"H1961\"* them|strong=\"H5921\"*, “You|strong=\"H3605\"* have|strong=\"H1961\"* bereaved|strong=\"H7921\"* me|strong=\"H5921\"* of|strong=\"H5921\"* my|strong=\"H3605\"* children|strong=\"H7921\"*! Joseph|strong=\"H3130\"* is|strong=\"H3605\"* no|strong=\"H3605\"* more|strong=\"H5921\"*, Simeon|strong=\"H8095\"* is|strong=\"H3605\"* no|strong=\"H3605\"* more|strong=\"H5921\"*, and|strong=\"H3290\"* you|strong=\"H3605\"* want to|strong=\"H1961\"* take|strong=\"H3947\"* Benjamin|strong=\"H1144\"* away|strong=\"H3947\"*. All|strong=\"H3605\"* these|strong=\"H3947\"* things|strong=\"H3605\"* are|strong=\"H1961\"* against|strong=\"H5921\"* me|strong=\"H5921\"*.”" + }, + { + "verseNum": 37, + "text": "Reuben|strong=\"H7205\"* spoke to|strong=\"H7725\"* his|strong=\"H5414\"* father|strong=\"H1121\"*, saying, “Kill|strong=\"H4191\"* my|strong=\"H5414\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*, if|strong=\"H1121\"* I|strong=\"H5414\"* don’t bring|strong=\"H7725\"* him|strong=\"H5414\"* to|strong=\"H7725\"* you|strong=\"H5414\"*. Entrust|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H7725\"* my|strong=\"H5414\"* care|strong=\"H3027\"*, and|strong=\"H1121\"* I|strong=\"H5414\"* will|strong=\"H1121\"* bring|strong=\"H7725\"* him|strong=\"H5414\"* to|strong=\"H7725\"* you|strong=\"H5414\"* again|strong=\"H7725\"*.”" + }, + { + "verseNum": 38, + "text": "He|strong=\"H1931\"* said, “My|strong=\"H3588\"* son|strong=\"H1121\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* go|strong=\"H3212\"* down|strong=\"H3381\"* with|strong=\"H5973\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* his|strong=\"H3588\"* brother is|strong=\"H1931\"* dead|strong=\"H4191\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* only|strong=\"H3588\"* is|strong=\"H1931\"* left|strong=\"H7604\"*. If|strong=\"H3588\"* harm happens to|strong=\"H3381\"* him|strong=\"H5973\"* along|strong=\"H5973\"* the|strong=\"H3588\"* way|strong=\"H1870\"* in|strong=\"H4191\"* which|strong=\"H1931\"* you|strong=\"H3588\"* go|strong=\"H3212\"*, then|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1121\"* bring|strong=\"H3381\"* down|strong=\"H3381\"* my|strong=\"H3588\"* gray|strong=\"H7872\"* hairs|strong=\"H7872\"* with|strong=\"H5973\"* sorrow|strong=\"H3015\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*.”+ 42:38 Sheol is the place of the dead.*" + } + ] + }, + { + "chapterNum": 43, + "verses": [ + { + "verseNum": 1, + "text": "The famine|strong=\"H7458\"* was|strong=\"H7458\"* severe|strong=\"H3515\"* in|strong=\"H7458\"* the land." + }, + { + "verseNum": 2, + "text": "When|strong=\"H1961\"* they had|strong=\"H1961\"* eaten up|strong=\"H3615\"* the|strong=\"H7725\"* grain|strong=\"H7668\"* which they had|strong=\"H1961\"* brought|strong=\"H7725\"* out|strong=\"H7725\"* of|strong=\"H3615\"* Egypt|strong=\"H4714\"*, their|strong=\"H7725\"* father said to|strong=\"H7725\"* them|strong=\"H7725\"*, “Go|strong=\"H7725\"* again|strong=\"H7725\"*, buy|strong=\"H7666\"* us|strong=\"H7725\"* a|strong=\"H3068\"* little|strong=\"H4592\"* more|strong=\"H7725\"* food.”" + }, + { + "verseNum": 3, + "text": "Judah|strong=\"H3063\"* spoke to|strong=\"H6440\"* him|strong=\"H6440\"*, saying, “The|strong=\"H6440\"* man|strong=\"H6440\"* solemnly|strong=\"H5749\"* warned|strong=\"H5749\"* us|strong=\"H6440\"*, saying, ‘You|strong=\"H6440\"* shall|strong=\"H3063\"* not|strong=\"H3808\"* see|strong=\"H7200\"* my|strong=\"H7200\"* face|strong=\"H6440\"*, unless|strong=\"H1115\"* your|strong=\"H6440\"* brother is|strong=\"H6440\"* with|strong=\"H6440\"* you|strong=\"H6440\"*.’" + }, + { + "verseNum": 4, + "text": "If|strong=\"H3426\"* you|strong=\"H7971\"*’ll send|strong=\"H7971\"* our|strong=\"H7971\"* brother with|strong=\"H3381\"* us|strong=\"H7971\"*, we|strong=\"H3068\"*’ll go|strong=\"H7971\"* down|strong=\"H3381\"* and|strong=\"H7971\"* buy|strong=\"H7666\"* you|strong=\"H7971\"* food;" + }, + { + "verseNum": 5, + "text": "but|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* don’t send|strong=\"H7971\"* him|strong=\"H6440\"*, we|strong=\"H3068\"* won’t go|strong=\"H7971\"* down|strong=\"H3381\"*, for|strong=\"H3588\"* the|strong=\"H6440\"* man|strong=\"H6440\"* said to|strong=\"H3381\"* us|strong=\"H6440\"*, ‘You|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* see|strong=\"H7200\"* my|strong=\"H7200\"* face|strong=\"H6440\"*, unless|strong=\"H3588\"* your|strong=\"H6440\"* brother is|strong=\"H6440\"* with|strong=\"H3381\"* you|strong=\"H3588\"*.’”" + }, + { + "verseNum": 6, + "text": "Israel|strong=\"H3478\"* said, “Why|strong=\"H4100\"* did|strong=\"H4100\"* you|strong=\"H5046\"* treat|strong=\"H7489\"* me|strong=\"H5046\"* so|strong=\"H7489\"* badly|strong=\"H7489\"*, telling|strong=\"H5046\"* the|strong=\"H5046\"* man that|strong=\"H3478\"* you|strong=\"H5046\"* had|strong=\"H3478\"* another|strong=\"H5750\"* brother?”" + }, + { + "verseNum": 7, + "text": "They|strong=\"H3588\"* said|strong=\"H1697\"*, “The|strong=\"H5921\"* man|strong=\"H3045\"* asked|strong=\"H7592\"* directly concerning|strong=\"H5921\"* ourselves|strong=\"H4138\"*, and|strong=\"H1697\"* concerning|strong=\"H5921\"* our|strong=\"H5921\"* relatives|strong=\"H4138\"*, saying|strong=\"H1697\"*, ‘Is|strong=\"H3426\"* your|strong=\"H5921\"* father still|strong=\"H5750\"* alive|strong=\"H2416\"*? Have|strong=\"H3426\"* you|strong=\"H3588\"* another|strong=\"H5750\"* brother?’ We|strong=\"H3588\"* just|strong=\"H1697\"* answered|strong=\"H5046\"* his|strong=\"H5921\"* questions|strong=\"H1697\"*. Is|strong=\"H3426\"* there|strong=\"H3426\"* any|strong=\"H5750\"* way|strong=\"H1697\"* we|strong=\"H3068\"* could|strong=\"H3045\"* know|strong=\"H3045\"* that|strong=\"H3588\"* he|strong=\"H3588\"* would|strong=\"H1697\"* say|strong=\"H6310\"*, ‘Bring|strong=\"H3381\"* your|strong=\"H5921\"* brother down|strong=\"H3381\"*’?”" + }, + { + "verseNum": 8, + "text": "Judah|strong=\"H3063\"* said to|strong=\"H3478\"* Israel|strong=\"H3478\"*, his|strong=\"H7971\"* father, “Send|strong=\"H7971\"* the|strong=\"H7971\"* boy|strong=\"H5288\"* with|strong=\"H3212\"* me|strong=\"H7971\"*, and|strong=\"H3063\"* we|strong=\"H3068\"*’ll get|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H3063\"* go|strong=\"H3212\"*, so|strong=\"H7971\"* that|strong=\"H3478\"* we|strong=\"H3068\"* may|strong=\"H3478\"* live|strong=\"H2421\"*, and|strong=\"H3063\"* not|strong=\"H3808\"* die|strong=\"H4191\"*, both|strong=\"H1571\"* we|strong=\"H3068\"*, and|strong=\"H3063\"* you|strong=\"H7971\"*, and|strong=\"H3063\"* also|strong=\"H1571\"* our|strong=\"H7971\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H3117\"*’ll be|strong=\"H3808\"* collateral|strong=\"H6148\"* for|strong=\"H6440\"* him|strong=\"H6440\"*. From|strong=\"H6440\"* my|strong=\"H3605\"* hand|strong=\"H3027\"* will|strong=\"H3027\"* you|strong=\"H6440\"* require|strong=\"H1245\"* him|strong=\"H6440\"*. If|strong=\"H2398\"* I|strong=\"H3117\"* don’t bring|strong=\"H2398\"* him|strong=\"H6440\"* to|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H3117\"* set|strong=\"H3322\"* him|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, then|strong=\"H3808\"* let|strong=\"H3808\"* me|strong=\"H6440\"* bear|strong=\"H2398\"* the|strong=\"H3605\"* blame|strong=\"H2398\"* forever|strong=\"H3605\"*;" + }, + { + "verseNum": 10, + "text": "for|strong=\"H3588\"* if|strong=\"H3588\"* we|strong=\"H3068\"* hadn’t delayed|strong=\"H4102\"*, surely|strong=\"H3588\"* we|strong=\"H3068\"* would have|strong=\"H6258\"* returned|strong=\"H7725\"* a|strong=\"H3068\"* second time|strong=\"H6471\"* by|strong=\"H7725\"* now|strong=\"H6258\"*.”" + }, + { + "verseNum": 11, + "text": "Their|strong=\"H3947\"* father, Israel|strong=\"H3478\"*, said|strong=\"H3651\"* to|strong=\"H3381\"* them|strong=\"H6213\"*, “If|strong=\"H3651\"* it|strong=\"H6213\"* must|strong=\"H3947\"* be|strong=\"H3478\"* so|strong=\"H3651\"*, then|strong=\"H3947\"* do|strong=\"H6213\"* this|strong=\"H2063\"*: Take|strong=\"H3947\"* from|strong=\"H3381\"* the|strong=\"H3947\"* choice fruits|strong=\"H2173\"* of|strong=\"H3627\"* the|strong=\"H3947\"* land in|strong=\"H3478\"* your|strong=\"H3947\"* bags|strong=\"H3627\"*, and|strong=\"H3478\"* carry|strong=\"H6213\"* down|strong=\"H3381\"* a|strong=\"H3068\"* present|strong=\"H4503\"* for|strong=\"H6213\"* the|strong=\"H3947\"* man, a|strong=\"H3068\"* little|strong=\"H4592\"* balm|strong=\"H6875\"*, a|strong=\"H3068\"* little|strong=\"H4592\"* honey|strong=\"H1706\"*, spices|strong=\"H5219\"* and|strong=\"H3478\"* myrrh|strong=\"H3910\"*, nuts, and|strong=\"H3478\"* almonds|strong=\"H8247\"*;" + }, + { + "verseNum": 12, + "text": "and|strong=\"H3701\"* take|strong=\"H3947\"* double|strong=\"H4932\"* money|strong=\"H3701\"* in|strong=\"H7725\"* your|strong=\"H3947\"* hand|strong=\"H3027\"*, and|strong=\"H3701\"* take|strong=\"H3947\"* back|strong=\"H7725\"* the|strong=\"H3947\"* money|strong=\"H3701\"* that|strong=\"H1931\"* was|strong=\"H1931\"* returned|strong=\"H7725\"* in|strong=\"H7725\"* the|strong=\"H3947\"* mouth|strong=\"H6310\"* of|strong=\"H3027\"* your|strong=\"H3947\"* sacks. Perhaps it|strong=\"H1931\"* was|strong=\"H1931\"* an|strong=\"H3947\"* oversight|strong=\"H4870\"*." + }, + { + "verseNum": 13, + "text": "Take|strong=\"H3947\"* your|strong=\"H3947\"* brother also, get|strong=\"H3947\"* up|strong=\"H6965\"*, and|strong=\"H6965\"* return|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3947\"* man." + }, + { + "verseNum": 14, + "text": "May|strong=\"H5414\"* God|strong=\"H5414\"* Almighty|strong=\"H7706\"* give|strong=\"H5414\"* you|strong=\"H5414\"* mercy|strong=\"H7356\"* before|strong=\"H6440\"* the|strong=\"H6440\"* man|strong=\"H6440\"*, that|strong=\"H5414\"* he|strong=\"H5414\"* may|strong=\"H5414\"* release|strong=\"H7971\"* to|strong=\"H7971\"* you|strong=\"H5414\"* your|strong=\"H5414\"* other brother and|strong=\"H7971\"* Benjamin|strong=\"H1144\"*. If I|strong=\"H5414\"* am bereaved|strong=\"H7921\"* of|strong=\"H6440\"* my|strong=\"H5414\"* children|strong=\"H7921\"*, I|strong=\"H5414\"* am bereaved|strong=\"H7921\"*.”" + }, + { + "verseNum": 15, + "text": "The|strong=\"H6440\"* men|strong=\"H3947\"* took|strong=\"H3947\"* that|strong=\"H3027\"* present|strong=\"H4503\"*, and|strong=\"H6965\"* they|strong=\"H6440\"* took|strong=\"H3947\"* double|strong=\"H4932\"* money|strong=\"H3701\"* in|strong=\"H6440\"* their|strong=\"H3947\"* hand|strong=\"H3027\"*, and|strong=\"H6965\"* Benjamin|strong=\"H1144\"*; and|strong=\"H6965\"* got|strong=\"H6965\"* up|strong=\"H6965\"*, went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Egypt|strong=\"H4714\"*, and|strong=\"H6965\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Joseph|strong=\"H3130\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* Joseph|strong=\"H3130\"* saw|strong=\"H7200\"* Benjamin|strong=\"H1144\"* with|strong=\"H1004\"* them|strong=\"H5921\"*, he|strong=\"H3588\"* said to|strong=\"H5921\"* the|strong=\"H5921\"* steward|strong=\"H1004\"* of|strong=\"H1004\"* his|strong=\"H5921\"* house|strong=\"H1004\"*, “Bring the|strong=\"H5921\"* men into|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* butcher an|strong=\"H7200\"* animal|strong=\"H2874\"*, and|strong=\"H1004\"* prepare|strong=\"H3559\"*; for|strong=\"H3588\"* the|strong=\"H5921\"* men will|strong=\"H1004\"* dine with|strong=\"H1004\"* me|strong=\"H7200\"* at|strong=\"H5921\"* noon|strong=\"H6672\"*.”" + }, + { + "verseNum": 17, + "text": "The|strong=\"H6213\"* man did|strong=\"H6213\"* as|strong=\"H6213\"* Joseph|strong=\"H3130\"* commanded, and|strong=\"H1004\"* the|strong=\"H6213\"* man brought|strong=\"H6213\"* the|strong=\"H6213\"* men|strong=\"H6213\"* to|strong=\"H6213\"* Joseph|strong=\"H3130\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5921\"* men|strong=\"H5650\"* were|strong=\"H1697\"* afraid|strong=\"H3372\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H1697\"* brought|strong=\"H7725\"* to|strong=\"H7725\"* Joseph|strong=\"H3130\"*’s house|strong=\"H1004\"*; and|strong=\"H3701\"* they|strong=\"H3588\"* said|strong=\"H1697\"*, “Because|strong=\"H3588\"* of|strong=\"H1004\"* the|strong=\"H5921\"* money|strong=\"H3701\"* that|strong=\"H3588\"* was|strong=\"H1697\"* returned|strong=\"H7725\"* in|strong=\"H5921\"* our|strong=\"H5921\"* sacks the|strong=\"H5921\"* first|strong=\"H8462\"* time|strong=\"H8462\"*, we|strong=\"H3068\"*’re brought|strong=\"H7725\"* in|strong=\"H5921\"*; that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H7725\"* seek|strong=\"H1556\"* occasion|strong=\"H1556\"* against|strong=\"H5921\"* us|strong=\"H7725\"*, attack us|strong=\"H7725\"*, and|strong=\"H3701\"* seize|strong=\"H3947\"* us|strong=\"H7725\"* as|strong=\"H1697\"* slaves|strong=\"H5650\"*, along|strong=\"H5921\"* with|strong=\"H1004\"* our|strong=\"H5921\"* donkeys|strong=\"H2543\"*.”" + }, + { + "verseNum": 19, + "text": "They|strong=\"H5921\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H1696\"* the|strong=\"H5921\"* steward|strong=\"H1004\"* of|strong=\"H1004\"* Joseph|strong=\"H3130\"*’s house|strong=\"H1004\"*, and|strong=\"H1004\"* they|strong=\"H5921\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"* at|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 20, + "text": "and|strong=\"H3381\"* said, “Oh, my|strong=\"H3381\"* lord, we|strong=\"H3068\"* indeed|strong=\"H3381\"* came|strong=\"H3381\"* down|strong=\"H3381\"* the|strong=\"H3381\"* first|strong=\"H8462\"* time|strong=\"H8462\"* to|strong=\"H3381\"* buy|strong=\"H7666\"* food." + }, + { + "verseNum": 21, + "text": "When|strong=\"H3588\"* we|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H7725\"* the|strong=\"H3588\"* lodging|strong=\"H4411\"* place|strong=\"H3027\"*, we|strong=\"H3068\"* opened|strong=\"H6605\"* our|strong=\"H1961\"* sacks, and|strong=\"H3701\"* behold|strong=\"H2009\"*, each man’s money|strong=\"H3701\"* was|strong=\"H1961\"* in|strong=\"H7725\"* the|strong=\"H3588\"* mouth|strong=\"H6310\"* of|strong=\"H3027\"* his|strong=\"H7725\"* sack, our|strong=\"H1961\"* money|strong=\"H3701\"* in|strong=\"H7725\"* full|strong=\"H7725\"* weight|strong=\"H4948\"*. We|strong=\"H3588\"* have|strong=\"H1961\"* brought|strong=\"H7725\"* it|strong=\"H3588\"* back|strong=\"H7725\"* in|strong=\"H7725\"* our|strong=\"H1961\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 22, + "text": "We have|strong=\"H3045\"* brought|strong=\"H3381\"* down|strong=\"H3381\"* other money|strong=\"H3701\"* in|strong=\"H3027\"* our|strong=\"H7760\"* hand|strong=\"H3027\"* to|strong=\"H3381\"* buy|strong=\"H7666\"* food. We don’t know|strong=\"H3045\"* who|strong=\"H4310\"* put|strong=\"H7760\"* our|strong=\"H7760\"* money|strong=\"H3701\"* in|strong=\"H3027\"* our|strong=\"H7760\"* sacks.”" + }, + { + "verseNum": 23, + "text": "He|strong=\"H5414\"* said|strong=\"H3318\"*, “Peace|strong=\"H7965\"* be|strong=\"H5414\"* to|strong=\"H3318\"* you|strong=\"H5414\"*. Don’t be|strong=\"H5414\"* afraid|strong=\"H3372\"*. Your|strong=\"H5414\"* God|strong=\"H5414\"*, and|strong=\"H3701\"* the|strong=\"H5414\"* God|strong=\"H5414\"* of|strong=\"H3318\"* your|strong=\"H5414\"* father, has|strong=\"H3318\"* given|strong=\"H5414\"* you|strong=\"H5414\"* treasure|strong=\"H4301\"* in|strong=\"H5414\"* your|strong=\"H5414\"* sacks. I|strong=\"H5414\"* received your|strong=\"H5414\"* money|strong=\"H3701\"*.” He|strong=\"H5414\"* brought|strong=\"H3318\"* Simeon|strong=\"H8095\"* out|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H5414\"* man brought|strong=\"H5414\"* the|strong=\"H5414\"* men into|strong=\"H3130\"* Joseph|strong=\"H3130\"*’s house|strong=\"H1004\"*, and|strong=\"H1004\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* water|strong=\"H4325\"*, and|strong=\"H1004\"* they|strong=\"H7272\"* washed|strong=\"H7364\"* their|strong=\"H5414\"* feet|strong=\"H7272\"*. He|strong=\"H1004\"* gave|strong=\"H5414\"* their|strong=\"H5414\"* donkeys|strong=\"H2543\"* fodder|strong=\"H4554\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"H3588\"* prepared|strong=\"H3559\"* the|strong=\"H8085\"* present|strong=\"H4503\"* for|strong=\"H3588\"* Joseph|strong=\"H3130\"*’s coming at|strong=\"H8033\"* noon|strong=\"H6672\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* they|strong=\"H3588\"* should|strong=\"H3588\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"H3027\"* Joseph|strong=\"H3130\"* came|strong=\"H3130\"* home|strong=\"H1004\"*, they|strong=\"H3027\"* brought|strong=\"H3130\"* him|strong=\"H3027\"* the|strong=\"H7812\"* present|strong=\"H4503\"* which|strong=\"H1004\"* was|strong=\"H1004\"* in|strong=\"H1004\"* their|strong=\"H3027\"* hand|strong=\"H3027\"* into|strong=\"H3027\"* the|strong=\"H7812\"* house|strong=\"H1004\"*, and|strong=\"H3027\"* bowed|strong=\"H7812\"* themselves|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H3027\"* the|strong=\"H7812\"* earth before him|strong=\"H3027\"*." + }, + { + "verseNum": 27, + "text": "He|strong=\"H2416\"* asked|strong=\"H7592\"* them|strong=\"H7592\"* of|strong=\"H2205\"* their|strong=\"H7592\"* welfare|strong=\"H7965\"*, and|strong=\"H2205\"* said, “Is|strong=\"H2416\"* your|strong=\"H7592\"* father well|strong=\"H7965\"*, the|strong=\"H7592\"* old|strong=\"H2205\"* man|strong=\"H2205\"* of|strong=\"H2205\"* whom you|strong=\"H7592\"* spoke? Is|strong=\"H2416\"* he|strong=\"H2416\"* yet|strong=\"H5750\"* alive|strong=\"H2416\"*?”" + }, + { + "verseNum": 28, + "text": "They|strong=\"H7965\"* said, “Your|strong=\"H7965\"* servant|strong=\"H5650\"*, our|strong=\"H5650\"* father, is|strong=\"H5650\"* well|strong=\"H7965\"*. He|strong=\"H2416\"* is|strong=\"H5650\"* still|strong=\"H5750\"* alive|strong=\"H2416\"*.” They|strong=\"H7965\"* bowed|strong=\"H7812\"* down|strong=\"H7812\"* humbly|strong=\"H7812\"*." + }, + { + "verseNum": 29, + "text": "He|strong=\"H1144\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"*, and|strong=\"H1121\"* saw|strong=\"H7200\"* Benjamin|strong=\"H1144\"*, his|strong=\"H5375\"* brother, his|strong=\"H5375\"* mother’s son|strong=\"H1121\"*, and|strong=\"H1121\"* said, “Is|strong=\"H2088\"* this|strong=\"H2088\"* your|strong=\"H5375\"* youngest|strong=\"H6996\"* brother, of|strong=\"H1121\"* whom|strong=\"H5869\"* you|strong=\"H7200\"* spoke to|strong=\"H1121\"* me|strong=\"H7200\"*?” He|strong=\"H1144\"* said, “God be|strong=\"H1121\"* gracious|strong=\"H2603\"* to|strong=\"H1121\"* you|strong=\"H7200\"*, my|strong=\"H7200\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 30, + "text": "Joseph|strong=\"H3130\"* hurried|strong=\"H4116\"*, for|strong=\"H3588\"* his|strong=\"H3588\"* heart yearned|strong=\"H3648\"* over|strong=\"H1058\"* his|strong=\"H3588\"* brother; and|strong=\"H8033\"* he|strong=\"H3588\"* sought|strong=\"H1245\"* a|strong=\"H3068\"* place|strong=\"H8033\"* to|strong=\"H1245\"* weep|strong=\"H1058\"*. He|strong=\"H3588\"* entered into|strong=\"H3130\"* his|strong=\"H3588\"* room|strong=\"H2315\"*, and|strong=\"H8033\"* wept|strong=\"H1058\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"H3318\"* washed|strong=\"H7364\"* his|strong=\"H7760\"* face|strong=\"H6440\"*, and|strong=\"H3899\"* came|strong=\"H3318\"* out|strong=\"H3318\"*. He|strong=\"H3318\"* controlled himself|strong=\"H6440\"*, and|strong=\"H3899\"* said|strong=\"H3318\"*, “Serve|strong=\"H6440\"* the|strong=\"H6440\"* meal|strong=\"H3899\"*.”" + }, + { + "verseNum": 32, + "text": "They|strong=\"H3588\"* served|strong=\"H7760\"* him|strong=\"H7760\"* by|strong=\"H3808\"* himself|strong=\"H1931\"*, and|strong=\"H3899\"* them|strong=\"H7760\"* by|strong=\"H3808\"* themselves|strong=\"H7760\"*, and|strong=\"H3899\"* the|strong=\"H3588\"* Egyptians|strong=\"H4713\"* who|strong=\"H1931\"* ate with|strong=\"H3899\"* him|strong=\"H7760\"* by|strong=\"H3808\"* themselves|strong=\"H7760\"*, because|strong=\"H3588\"* the|strong=\"H3588\"* Egyptians|strong=\"H4713\"* don’t eat|strong=\"H3899\"* with|strong=\"H3899\"* the|strong=\"H3588\"* Hebrews|strong=\"H5680\"*, for|strong=\"H3588\"* that|strong=\"H3588\"* is|strong=\"H1931\"* an|strong=\"H7760\"* abomination|strong=\"H8441\"* to|strong=\"H3201\"* the|strong=\"H3588\"* Egyptians|strong=\"H4713\"*." + }, + { + "verseNum": 33, + "text": "They|strong=\"H6440\"* sat|strong=\"H3427\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, the|strong=\"H6440\"* firstborn|strong=\"H1060\"* according to|strong=\"H6440\"* his|strong=\"H6440\"* birthright|strong=\"H1062\"*, and|strong=\"H6440\"* the|strong=\"H6440\"* youngest|strong=\"H6810\"* according to|strong=\"H6440\"* his|strong=\"H6440\"* youth|strong=\"H6812\"*, and|strong=\"H6440\"* the|strong=\"H6440\"* men marveled with|strong=\"H3427\"* one|strong=\"H6810\"* another|strong=\"H7453\"*." + }, + { + "verseNum": 34, + "text": "He|strong=\"H2568\"* sent|strong=\"H3027\"* portions|strong=\"H4864\"* to|strong=\"H6440\"* them|strong=\"H6440\"* from|strong=\"H6440\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, but|strong=\"H3605\"* Benjamin|strong=\"H1144\"*’s portion|strong=\"H4864\"* was|strong=\"H3027\"* five|strong=\"H2568\"* times|strong=\"H3027\"* as|strong=\"H6440\"* much|strong=\"H7235\"* as|strong=\"H6440\"* any|strong=\"H3605\"* of|strong=\"H3027\"* theirs. They|strong=\"H3605\"* drank|strong=\"H8354\"*, and|strong=\"H3027\"* were|strong=\"H3027\"* merry|strong=\"H7937\"* with|strong=\"H5973\"* him|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H1004\"* commanded|strong=\"H6680\"* the|strong=\"H5921\"* steward|strong=\"H1004\"* of|strong=\"H1004\"* his|strong=\"H5375\"* house|strong=\"H1004\"*, saying|strong=\"H6310\"*, “Fill|strong=\"H4390\"* the|strong=\"H5921\"* men’s sacks with|strong=\"H4390\"* food|strong=\"H1004\"*, as|strong=\"H1004\"* much|strong=\"H6310\"* as|strong=\"H1004\"* they|strong=\"H5921\"* can|strong=\"H3201\"* carry|strong=\"H5375\"*, and|strong=\"H3701\"* put|strong=\"H7760\"* each man|strong=\"H5375\"*’s money|strong=\"H3701\"* in|strong=\"H5921\"* his|strong=\"H5375\"* sack’s mouth|strong=\"H6310\"*." + }, + { + "verseNum": 2, + "text": "Put|strong=\"H7760\"* my|strong=\"H7760\"* cup|strong=\"H1375\"*, the|strong=\"H6213\"* silver|strong=\"H3701\"* cup|strong=\"H1375\"*, in|strong=\"H6213\"* the|strong=\"H6213\"* sack’s mouth|strong=\"H6310\"* of|strong=\"H1697\"* the|strong=\"H6213\"* youngest|strong=\"H6996\"*, with|strong=\"H6213\"* his|strong=\"H7760\"* grain|strong=\"H7668\"* money|strong=\"H3701\"*.” He|strong=\"H6213\"* did|strong=\"H6213\"* according|strong=\"H6310\"* to|strong=\"H1696\"* the|strong=\"H6213\"* word|strong=\"H1697\"* that|strong=\"H1697\"* Joseph|strong=\"H3130\"* had|strong=\"H3130\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 3, + "text": "As|strong=\"H1992\"* soon|strong=\"H1242\"* as|strong=\"H1992\"* the|strong=\"H7971\"* morning|strong=\"H1242\"* was|strong=\"H1992\"* light, the|strong=\"H7971\"* men|strong=\"H1992\"* were|strong=\"H1992\"* sent|strong=\"H7971\"* away|strong=\"H7971\"*, they|strong=\"H1992\"* and|strong=\"H7971\"* their|strong=\"H1992\"* donkeys|strong=\"H2543\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"H3318\"* they|strong=\"H1992\"* had|strong=\"H3130\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, and|strong=\"H6965\"* were|strong=\"H1992\"* not|strong=\"H3808\"* yet|strong=\"H3808\"* far|strong=\"H7368\"* off|strong=\"H5921\"*, Joseph|strong=\"H3130\"* said|strong=\"H3318\"* to|strong=\"H3318\"* his|strong=\"H5921\"* steward|strong=\"H1004\"*, “Up|strong=\"H6965\"*, follow|strong=\"H7291\"* after|strong=\"H5921\"* the|strong=\"H5921\"* men|strong=\"H7451\"*. When|strong=\"H3318\"* you|strong=\"H5921\"* overtake|strong=\"H5381\"* them|strong=\"H1992\"*, ask them|strong=\"H1992\"*, ‘Why|strong=\"H4100\"* have|strong=\"H5892\"* you|strong=\"H5921\"* rewarded|strong=\"H7999\"* evil|strong=\"H7451\"* for|strong=\"H5921\"* good|strong=\"H2896\"*?" + }, + { + "verseNum": 5, + "text": "Isn’t this|strong=\"H2088\"* that|strong=\"H1931\"* from|strong=\"H6213\"* which|strong=\"H1931\"* my|strong=\"H6213\"* lord drinks|strong=\"H8354\"*, and|strong=\"H6213\"* by|strong=\"H3808\"* which|strong=\"H1931\"* he|strong=\"H1931\"* indeed|strong=\"H5172\"* divines? You|strong=\"H6213\"* have|strong=\"H3808\"* done|strong=\"H6213\"* evil|strong=\"H7489\"* in|strong=\"H6213\"* so|strong=\"H6213\"* doing|strong=\"H6213\"*.’”" + }, + { + "verseNum": 6, + "text": "He|strong=\"H1696\"* overtook|strong=\"H5381\"* them|strong=\"H5381\"*, and|strong=\"H1697\"* he|strong=\"H1696\"* spoke|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* them|strong=\"H5381\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H4100\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H6213\"*, “Why|strong=\"H4100\"* does|strong=\"H6213\"* my|strong=\"H6213\"* lord speak|strong=\"H1696\"* such|strong=\"H2088\"* words|strong=\"H1697\"* as|strong=\"H1697\"* these|strong=\"H2088\"*? Far|strong=\"H2486\"* be|strong=\"H1697\"* it|strong=\"H6213\"* from|strong=\"H5650\"* your|strong=\"H6213\"* servants|strong=\"H5650\"* that|strong=\"H1697\"* they|strong=\"H4100\"* should|strong=\"H4100\"* do|strong=\"H6213\"* such|strong=\"H2088\"* a|strong=\"H3068\"* thing|strong=\"H1697\"*!" + }, + { + "verseNum": 8, + "text": "Behold|strong=\"H2005\"*, the|strong=\"H7725\"* money|strong=\"H3701\"*, which|strong=\"H1004\"* we|strong=\"H3068\"* found|strong=\"H4672\"* in|strong=\"H1004\"* our|strong=\"H7725\"* sacks’ mouths|strong=\"H6310\"*, we|strong=\"H3068\"* brought|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H7725\"* out|strong=\"H4672\"* of|strong=\"H1004\"* the|strong=\"H7725\"* land of|strong=\"H1004\"* Canaan|strong=\"H3667\"*. How then|strong=\"H7725\"* should we|strong=\"H3068\"* steal|strong=\"H1589\"* silver|strong=\"H3701\"* or|strong=\"H3701\"* gold|strong=\"H2091\"* out|strong=\"H4672\"* of|strong=\"H1004\"* your|strong=\"H7725\"* lord’s house|strong=\"H1004\"*?" + }, + { + "verseNum": 9, + "text": "With|strong=\"H4191\"* whomever of|strong=\"H5650\"* your|strong=\"H1961\"* servants|strong=\"H5650\"* it|strong=\"H1961\"* is|strong=\"H1571\"* found|strong=\"H4672\"*, let|strong=\"H1961\"* him|strong=\"H4672\"* die|strong=\"H4191\"*, and|strong=\"H5650\"* we|strong=\"H3068\"* also|strong=\"H1571\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H1961\"* lord’s slaves|strong=\"H5650\"*.”" + }, + { + "verseNum": 10, + "text": "He|strong=\"H1931\"* said|strong=\"H1697\"*, “Now|strong=\"H6258\"* also|strong=\"H1571\"* let|strong=\"H6258\"* it|strong=\"H1931\"* be|strong=\"H1961\"* according to|strong=\"H1961\"* your|strong=\"H1961\"* words|strong=\"H1697\"*. He|strong=\"H1931\"* with|strong=\"H1697\"* whom it|strong=\"H1931\"* is|strong=\"H1931\"* found|strong=\"H4672\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H1961\"* slave|strong=\"H5650\"*; and|strong=\"H5650\"* you|strong=\"H3651\"* will|strong=\"H1961\"* be|strong=\"H1961\"* blameless|strong=\"H5355\"*.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H3381\"* they hurried|strong=\"H4116\"*, and|strong=\"H3381\"* each man took|strong=\"H3381\"* his|strong=\"H6605\"* sack down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H6605\"* ground, and|strong=\"H3381\"* each man opened|strong=\"H6605\"* his|strong=\"H6605\"* sack." + }, + { + "verseNum": 12, + "text": "He|strong=\"H1144\"* searched|strong=\"H2664\"*, beginning|strong=\"H2490\"* with|strong=\"H3615\"* the|strong=\"H4672\"* oldest|strong=\"H1419\"*, and|strong=\"H1419\"* ending|strong=\"H3615\"* at|strong=\"H4672\"* the|strong=\"H4672\"* youngest|strong=\"H6996\"*. The|strong=\"H4672\"* cup|strong=\"H1375\"* was|strong=\"H1144\"* found|strong=\"H4672\"* in|strong=\"H4672\"* Benjamin|strong=\"H1144\"*’s sack." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H7725\"* they|strong=\"H5921\"* tore|strong=\"H7167\"* their|strong=\"H7725\"* clothes|strong=\"H8071\"*, and|strong=\"H7725\"* each|strong=\"H5892\"* man loaded|strong=\"H6006\"* his|strong=\"H7725\"* donkey|strong=\"H2543\"*, and|strong=\"H7725\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H5921\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 14, + "text": "Judah|strong=\"H3063\"* and|strong=\"H3063\"* his|strong=\"H6440\"* brothers came|strong=\"H3063\"* to|strong=\"H6440\"* Joseph|strong=\"H3130\"*’s house|strong=\"H1004\"*, and|strong=\"H3063\"* he|strong=\"H1931\"* was|strong=\"H1931\"* still|strong=\"H5750\"* there|strong=\"H8033\"*. They|strong=\"H8033\"* fell|strong=\"H5307\"* on|strong=\"H5307\"* the|strong=\"H6440\"* ground|strong=\"H6440\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 15, + "text": "Joseph|strong=\"H3130\"* said to|strong=\"H6213\"* them|strong=\"H6213\"*, “What|strong=\"H4100\"* deed|strong=\"H4639\"* is|strong=\"H2088\"* this|strong=\"H2088\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3045\"* done|strong=\"H6213\"*? Don’t you|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* such|strong=\"H2088\"* a|strong=\"H3068\"* man|strong=\"H2088\"* as|strong=\"H3644\"* I|strong=\"H3588\"* can|strong=\"H4100\"* indeed|strong=\"H3588\"* do|strong=\"H6213\"* divination|strong=\"H5172\"*?”" + }, + { + "verseNum": 16, + "text": "Judah|strong=\"H3063\"* said|strong=\"H1696\"*, “What|strong=\"H4100\"* will|strong=\"H5650\"* we|strong=\"H3068\"* tell|strong=\"H1696\"* my|strong=\"H1696\"* lord? What|strong=\"H4100\"* will|strong=\"H5650\"* we|strong=\"H3068\"* speak|strong=\"H1696\"*? How|strong=\"H4100\"* will|strong=\"H5650\"* we|strong=\"H3068\"* clear ourselves|strong=\"H6663\"*? God|strong=\"H3027\"* has|strong=\"H3063\"* found|strong=\"H4672\"* out|strong=\"H4672\"* the|strong=\"H3027\"* iniquity|strong=\"H5771\"* of|strong=\"H3027\"* your|strong=\"H3027\"* servants|strong=\"H5650\"*. Behold|strong=\"H2005\"*, we|strong=\"H3068\"* are|strong=\"H3027\"* my|strong=\"H1696\"* lord’s slaves|strong=\"H5650\"*, both|strong=\"H1571\"* we|strong=\"H3068\"* and|strong=\"H3063\"* he|strong=\"H3027\"* also|strong=\"H1571\"* in|strong=\"H1696\"* whose|strong=\"H5650\"* hand|strong=\"H3027\"* the|strong=\"H3027\"* cup|strong=\"H1375\"* is|strong=\"H4100\"* found|strong=\"H4672\"*.”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H1931\"* said, “Far|strong=\"H2486\"* be|strong=\"H1961\"* it|strong=\"H1931\"* from|strong=\"H5927\"* me|strong=\"H6213\"* that|strong=\"H1931\"* I|strong=\"H5650\"* should|strong=\"H6213\"* do|strong=\"H6213\"* so|strong=\"H6213\"*. The|strong=\"H6213\"* man in|strong=\"H6213\"* whose|strong=\"H5650\"* hand|strong=\"H3027\"* the|strong=\"H6213\"* cup|strong=\"H1375\"* is|strong=\"H1931\"* found|strong=\"H4672\"*, he|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H1961\"* slave|strong=\"H5650\"*; but|strong=\"H1961\"* as|strong=\"H1961\"* for|strong=\"H6213\"* you|strong=\"H6213\"*, go|strong=\"H5927\"* up|strong=\"H5927\"* in|strong=\"H6213\"* peace|strong=\"H7965\"* to|strong=\"H5927\"* your|strong=\"H6213\"* father.”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H1696\"* Judah|strong=\"H3063\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H1696\"* him|strong=\"H3644\"*, and|strong=\"H3063\"* said|strong=\"H1696\"*, “Oh|strong=\"H4994\"*, my|strong=\"H1696\"* lord, please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H3588\"* servant|strong=\"H5650\"* speak|strong=\"H1696\"* a|strong=\"H3068\"* word|strong=\"H1697\"* in|strong=\"H1696\"* my|strong=\"H1696\"* lord’s ears, and|strong=\"H3063\"* don’t let|strong=\"H4994\"* your|strong=\"H3588\"* anger burn|strong=\"H2734\"* against|strong=\"H2734\"* your|strong=\"H3588\"* servant|strong=\"H5650\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1697\"* even|strong=\"H3588\"* as|strong=\"H1697\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 19, + "text": "My|strong=\"H5650\"* lord asked|strong=\"H7592\"* his|strong=\"H7592\"* servants|strong=\"H5650\"*, saying, ‘Have|strong=\"H3426\"* you|strong=\"H7592\"* a|strong=\"H3068\"* father, or|strong=\"H5650\"* a|strong=\"H3068\"* brother?’" + }, + { + "verseNum": 20, + "text": "We|strong=\"H4191\"* said to|strong=\"H4191\"* my|strong=\"H4191\"* lord, ‘We|strong=\"H4191\"* have|strong=\"H3426\"* a|strong=\"H3068\"* father, an|strong=\"H3426\"* old|strong=\"H2205\"* man|strong=\"H2205\"*, and|strong=\"H2205\"* a|strong=\"H3068\"* child|strong=\"H3206\"* of|strong=\"H2205\"* his|strong=\"H4191\"* old|strong=\"H2205\"* age|strong=\"H2208\"*, a|strong=\"H3068\"* little|strong=\"H6996\"* one|strong=\"H1931\"*; and|strong=\"H2205\"* his|strong=\"H4191\"* brother is|strong=\"H3426\"* dead|strong=\"H4191\"*, and|strong=\"H2205\"* he|strong=\"H1931\"* alone|strong=\"H1931\"* is|strong=\"H3426\"* left|strong=\"H3498\"* of|strong=\"H2205\"* his|strong=\"H4191\"* mother; and|strong=\"H2205\"* his|strong=\"H4191\"* father loves him|strong=\"H4191\"*.’" + }, + { + "verseNum": 21, + "text": "You|strong=\"H5921\"* said to|strong=\"H3381\"* your|strong=\"H5921\"* servants|strong=\"H5650\"*, ‘Bring|strong=\"H3381\"* him|strong=\"H5921\"* down|strong=\"H3381\"* to|strong=\"H3381\"* me|strong=\"H5921\"*, that|strong=\"H5650\"* I|strong=\"H5921\"* may|strong=\"H5869\"* set|strong=\"H7760\"* my|strong=\"H7760\"* eyes|strong=\"H5869\"* on|strong=\"H5921\"* him|strong=\"H5921\"*.’" + }, + { + "verseNum": 22, + "text": "We|strong=\"H3201\"* said to|strong=\"H4191\"* my|strong=\"H5800\"* lord, ‘The|strong=\"H5800\"* boy|strong=\"H5288\"* can|strong=\"H3201\"*’t leave|strong=\"H5800\"* his|strong=\"H5800\"* father, for|strong=\"H4191\"* if he|strong=\"H3808\"* should leave|strong=\"H5800\"* his|strong=\"H5800\"* father, his|strong=\"H5800\"* father would|strong=\"H5288\"* die|strong=\"H4191\"*.’" + }, + { + "verseNum": 23, + "text": "You|strong=\"H6440\"* said to|strong=\"H3381\"* your|strong=\"H6440\"* servants|strong=\"H5650\"*, ‘Unless|strong=\"H3808\"* your|strong=\"H6440\"* youngest|strong=\"H6996\"* brother comes|strong=\"H3381\"* down|strong=\"H3381\"* with|strong=\"H3381\"* you|strong=\"H6440\"*, you|strong=\"H6440\"* will|strong=\"H5650\"* see|strong=\"H7200\"* my|strong=\"H7200\"* face|strong=\"H6440\"* no|strong=\"H3808\"* more|strong=\"H3254\"*.’" + }, + { + "verseNum": 24, + "text": "When|strong=\"H3588\"* we|strong=\"H3068\"* came|strong=\"H1961\"* up|strong=\"H5927\"* to|strong=\"H5927\"* your|strong=\"H3588\"* servant|strong=\"H5650\"* my|strong=\"H1961\"* father, we|strong=\"H3068\"* told|strong=\"H5046\"* him|strong=\"H5046\"* the|strong=\"H3588\"* words|strong=\"H1697\"* of|strong=\"H1697\"* my|strong=\"H1961\"* lord." + }, + { + "verseNum": 25, + "text": "Our|strong=\"H7725\"* father said, ‘Go|strong=\"H7725\"* again|strong=\"H7725\"* and|strong=\"H7725\"* buy|strong=\"H7666\"* us|strong=\"H7725\"* a|strong=\"H3068\"* little|strong=\"H4592\"* food.’" + }, + { + "verseNum": 26, + "text": "We|strong=\"H3588\"* said, ‘We|strong=\"H3588\"* can|strong=\"H3201\"*’t go|strong=\"H3381\"* down|strong=\"H3381\"*. If|strong=\"H3588\"* our|strong=\"H7200\"* youngest|strong=\"H6996\"* brother is|strong=\"H3426\"* with|strong=\"H3381\"* us|strong=\"H6440\"*, then|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H3808\"* go|strong=\"H3381\"* down|strong=\"H3381\"*: for|strong=\"H3588\"* we|strong=\"H3068\"* may|strong=\"H3201\"* not|strong=\"H3808\"* see|strong=\"H7200\"* the|strong=\"H6440\"* man|strong=\"H6440\"*’s face|strong=\"H6440\"*, unless|strong=\"H3588\"* our|strong=\"H7200\"* youngest|strong=\"H6996\"* brother is|strong=\"H3426\"* with|strong=\"H3381\"* us|strong=\"H6440\"*.’" + }, + { + "verseNum": 27, + "text": "Your|strong=\"H3045\"* servant|strong=\"H5650\"*, my|strong=\"H3045\"* father|strong=\"H3205\"*, said to|strong=\"H3205\"* us|strong=\"H3045\"*, ‘You|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* my|strong=\"H3045\"* wife bore|strong=\"H3205\"* me|strong=\"H3205\"* two|strong=\"H8147\"* sons|strong=\"H3205\"*." + }, + { + "verseNum": 28, + "text": "One|strong=\"H3808\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* me|strong=\"H7200\"*, and|strong=\"H7200\"* I|strong=\"H5704\"* said|strong=\"H3318\"*, “Surely|strong=\"H3318\"* he|strong=\"H5704\"* is|strong=\"H3808\"* torn|strong=\"H2963\"* in|strong=\"H7200\"* pieces|strong=\"H2963\"*;” and|strong=\"H7200\"* I|strong=\"H5704\"* haven’t seen|strong=\"H7200\"* him|strong=\"H7200\"* since|strong=\"H2008\"*." + }, + { + "verseNum": 29, + "text": "If you|strong=\"H6440\"* take|strong=\"H3947\"* this|strong=\"H2088\"* one|strong=\"H2088\"* also|strong=\"H1571\"* from|strong=\"H6440\"* me|strong=\"H6440\"*, and|strong=\"H6440\"* harm|strong=\"H7451\"* happens|strong=\"H7136\"* to|strong=\"H3381\"* him|strong=\"H6440\"*, you|strong=\"H6440\"* will|strong=\"H1571\"* bring|strong=\"H3947\"* down|strong=\"H3381\"* my|strong=\"H3947\"* gray|strong=\"H7872\"* hairs|strong=\"H7872\"* with|strong=\"H5973\"* sorrow|strong=\"H7451\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*.’+ 44:29 Sheol is the place of the dead.*" + }, + { + "verseNum": 30, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* when I|strong=\"H6258\"* come|strong=\"H5288\"* to|strong=\"H5650\"* your|strong=\"H6258\"* servant|strong=\"H5650\"* my|strong=\"H5650\"* father, and|strong=\"H5650\"* the|strong=\"H5650\"* boy|strong=\"H5288\"* is|strong=\"H5315\"* not|strong=\"H5315\"* with|strong=\"H5315\"* us|strong=\"H5315\"*; since|strong=\"H6258\"* his|strong=\"H5650\"* life|strong=\"H5315\"* is|strong=\"H5315\"* bound|strong=\"H7194\"* up|strong=\"H7194\"* in|strong=\"H5315\"* the|strong=\"H5650\"* boy|strong=\"H5288\"*’s life|strong=\"H5315\"*;" + }, + { + "verseNum": 31, + "text": "it|strong=\"H3588\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, when|strong=\"H3588\"* he|strong=\"H3588\"* sees|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H7200\"* boy|strong=\"H5288\"* is|strong=\"H5650\"* no|strong=\"H7200\"* more|strong=\"H3588\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H1961\"* die|strong=\"H4191\"*. Your|strong=\"H7200\"* servants|strong=\"H5650\"* will|strong=\"H1961\"* bring|strong=\"H3381\"* down|strong=\"H3381\"* the|strong=\"H7200\"* gray|strong=\"H7872\"* hairs|strong=\"H7872\"* of|strong=\"H5650\"* your|strong=\"H7200\"* servant|strong=\"H5650\"*, our|strong=\"H7200\"* father, with|strong=\"H3381\"* sorrow|strong=\"H3015\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*.+ 44:31 Sheol is the place of the dead.*" + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* your|strong=\"H3605\"* servant|strong=\"H5650\"* became|strong=\"H5650\"* collateral|strong=\"H6148\"* for|strong=\"H3588\"* the|strong=\"H3605\"* boy|strong=\"H5288\"* to|strong=\"H3117\"* my|strong=\"H3605\"* father, saying, ‘If|strong=\"H3588\"* I|strong=\"H3588\"* don’t bring|strong=\"H2398\"* him|strong=\"H5973\"* to|strong=\"H3117\"* you|strong=\"H3588\"*, then|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5650\"* bear|strong=\"H2398\"* the|strong=\"H3605\"* blame|strong=\"H2398\"* to|strong=\"H3117\"* my|strong=\"H3605\"* father forever|strong=\"H3605\"*.’" + }, + { + "verseNum": 33, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H4994\"* servant|strong=\"H5650\"* stay|strong=\"H3427\"* instead|strong=\"H8478\"* of|strong=\"H3427\"* the|strong=\"H8478\"* boy|strong=\"H5288\"*, my|strong=\"H5927\"* lord’s slave|strong=\"H5650\"*; and|strong=\"H5650\"* let|strong=\"H4994\"* the|strong=\"H8478\"* boy|strong=\"H5288\"* go|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* his|strong=\"H8478\"* brothers." + }, + { + "verseNum": 34, + "text": "For|strong=\"H3588\"* how|strong=\"H3588\"* will|strong=\"H5288\"* I|strong=\"H3588\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* my|strong=\"H7200\"* father, if|strong=\"H3588\"* the|strong=\"H7200\"* boy|strong=\"H5288\"* isn’t with|strong=\"H5927\"* me|strong=\"H7200\"*?—lest|strong=\"H6435\"* I|strong=\"H3588\"* see|strong=\"H7200\"* the|strong=\"H7200\"* evil|strong=\"H7451\"* that|strong=\"H3588\"* will|strong=\"H5288\"* come|strong=\"H5927\"* on|strong=\"H7200\"* my|strong=\"H7200\"* father.”" + } + ] + }, + { + "chapterNum": 45, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3318\"* Joseph|strong=\"H3130\"* couldn’t control himself|strong=\"H3045\"* before|strong=\"H5921\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* stood|strong=\"H5975\"* before|strong=\"H5921\"* him|strong=\"H7121\"*, and|strong=\"H5975\"* he|strong=\"H3605\"* called|strong=\"H7121\"* out|strong=\"H3318\"*, “Cause|strong=\"H3318\"* everyone|strong=\"H3605\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* me|strong=\"H5921\"*!” No|strong=\"H3808\"* one|strong=\"H3605\"* else|strong=\"H3808\"* stood|strong=\"H5975\"* with|strong=\"H5921\"* him|strong=\"H7121\"*, while|strong=\"H5921\"* Joseph|strong=\"H3130\"* made|strong=\"H3045\"* himself|strong=\"H3045\"* known|strong=\"H3045\"* to|strong=\"H3318\"* his|strong=\"H3605\"* brothers." + }, + { + "verseNum": 2, + "text": "He|strong=\"H1004\"* wept|strong=\"H5414\"* aloud|strong=\"H6963\"*. The|strong=\"H8085\"* Egyptians|strong=\"H4713\"* heard|strong=\"H8085\"*, and|strong=\"H1004\"* the|strong=\"H8085\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Pharaoh|strong=\"H6547\"* heard|strong=\"H8085\"*." + }, + { + "verseNum": 3, + "text": "Joseph|strong=\"H3130\"* said|strong=\"H6030\"* to|strong=\"H3201\"* his|strong=\"H6440\"* brothers, “I|strong=\"H3588\"* am Joseph|strong=\"H3130\"*! Does|strong=\"H3808\"* my|strong=\"H3588\"* father still|strong=\"H5750\"* live|strong=\"H2416\"*?”" + }, + { + "verseNum": 4, + "text": "Joseph|strong=\"H3130\"* said to|strong=\"H4714\"* his|strong=\"H4376\"* brothers, “Come|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H4714\"* me|strong=\"H4994\"*, please|strong=\"H4994\"*.”" + }, + { + "verseNum": 5, + "text": "Now|strong=\"H6258\"* don’t be|strong=\"H5869\"* grieved|strong=\"H6087\"*, nor|strong=\"H3588\"* angry|strong=\"H2734\"* with|strong=\"H6440\"* yourselves|strong=\"H5869\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* sold|strong=\"H4376\"* me|strong=\"H6440\"* here|strong=\"H2008\"*, for|strong=\"H3588\"* God|strong=\"H7971\"* sent|strong=\"H7971\"* me|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H3588\"* to|strong=\"H7971\"* preserve|strong=\"H4241\"* life|strong=\"H4241\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* these|strong=\"H2088\"* two|strong=\"H2088\"* years|strong=\"H8141\"* the|strong=\"H3588\"* famine|strong=\"H7458\"* has|strong=\"H3588\"* been in|strong=\"H8141\"* the|strong=\"H3588\"* land|strong=\"H7130\"*, and|strong=\"H2568\"* there|strong=\"H2088\"* are|strong=\"H8141\"* yet|strong=\"H5750\"* five|strong=\"H2568\"* years|strong=\"H8141\"*, in|strong=\"H8141\"* which|strong=\"H2088\"* there|strong=\"H2088\"* will|strong=\"H5750\"* be|strong=\"H5750\"* no plowing|strong=\"H2758\"* and|strong=\"H2568\"* no harvest|strong=\"H7105\"*." + }, + { + "verseNum": 7, + "text": "God|strong=\"H7971\"* sent|strong=\"H7971\"* me|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"* to|strong=\"H7971\"* preserve|strong=\"H2421\"* for|strong=\"H6440\"* you|strong=\"H6440\"* a|strong=\"H3068\"* remnant|strong=\"H7611\"* in|strong=\"H6440\"* the|strong=\"H6440\"* earth, and|strong=\"H7971\"* to|strong=\"H7971\"* save|strong=\"H2421\"* you|strong=\"H6440\"* alive|strong=\"H2421\"* by|strong=\"H7971\"* a|strong=\"H3068\"* great|strong=\"H1419\"* deliverance|strong=\"H6413\"*." + }, + { + "verseNum": 8, + "text": "So|strong=\"H7971\"* now|strong=\"H6258\"* it|strong=\"H7760\"* wasn’t you|strong=\"H3588\"* who|strong=\"H3605\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* here|strong=\"H2008\"*, but|strong=\"H3588\"* God|strong=\"H3808\"*, and|strong=\"H7971\"* he|strong=\"H3588\"* has|strong=\"H3588\"* made|strong=\"H7760\"* me|strong=\"H7971\"* a|strong=\"H3068\"* father to|strong=\"H7971\"* Pharaoh|strong=\"H6547\"*, lord of|strong=\"H1004\"* all|strong=\"H3605\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, and|strong=\"H7971\"* ruler|strong=\"H4910\"* over|strong=\"H4910\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 9, + "text": "Hurry|strong=\"H4116\"*, and|strong=\"H1121\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3381\"* my|strong=\"H3605\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* tell|strong=\"H3605\"* him|strong=\"H7760\"*, ‘This|strong=\"H3541\"* is|strong=\"H3605\"* what|strong=\"H3541\"* your|strong=\"H3605\"* son|strong=\"H1121\"* Joseph|strong=\"H3130\"* says|strong=\"H3541\"*, “God has|strong=\"H3605\"* made|strong=\"H7760\"* me|strong=\"H7760\"* lord of|strong=\"H1121\"* all|strong=\"H3605\"* Egypt|strong=\"H4714\"*. Come|strong=\"H5927\"* down|strong=\"H3381\"* to|strong=\"H3381\"* me|strong=\"H7760\"*. Don’t wait|strong=\"H5975\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3605\"* shall|strong=\"H1121\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Goshen|strong=\"H1657\"*, and|strong=\"H1121\"* you|strong=\"H3605\"* will|strong=\"H1961\"* be|strong=\"H1961\"* near|strong=\"H7138\"* to|strong=\"H1961\"* me|strong=\"H1961\"*, you|strong=\"H3605\"*, your|strong=\"H3605\"* children|strong=\"H1121\"*, your|strong=\"H3605\"* children|strong=\"H1121\"*’s children|strong=\"H1121\"*, your|strong=\"H3605\"* flocks|strong=\"H6629\"*, your|strong=\"H3605\"* herds|strong=\"H1241\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H1961\"*." + }, + { + "verseNum": 11, + "text": "There|strong=\"H8033\"* I|strong=\"H3588\"* will|strong=\"H1004\"* provide|strong=\"H3557\"* for|strong=\"H3588\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* there|strong=\"H8033\"* are|strong=\"H8141\"* yet|strong=\"H5750\"* five|strong=\"H2568\"* years|strong=\"H8141\"* of|strong=\"H1004\"* famine|strong=\"H7458\"*; lest|strong=\"H6435\"* you|strong=\"H3588\"* come|strong=\"H3423\"* to|strong=\"H1004\"* poverty|strong=\"H3423\"*, you|strong=\"H3588\"*, and|strong=\"H1004\"* your|strong=\"H3605\"* household|strong=\"H1004\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3605\"*.”’" + }, + { + "verseNum": 12, + "text": "Behold|strong=\"H2009\"*, your|strong=\"H7200\"* eyes|strong=\"H5869\"* see|strong=\"H7200\"*, and|strong=\"H5869\"* the|strong=\"H7200\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* my|strong=\"H7200\"* brother Benjamin|strong=\"H1144\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H2009\"* my|strong=\"H7200\"* mouth|strong=\"H6310\"* that|strong=\"H3588\"* speaks|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H3605\"* shall|strong=\"H4714\"* tell|strong=\"H5046\"* my|strong=\"H3605\"* father of|strong=\"H3605\"* all|strong=\"H3605\"* my|strong=\"H3605\"* glory|strong=\"H3519\"* in|strong=\"H7200\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* of|strong=\"H3605\"* all|strong=\"H3605\"* that|strong=\"H7200\"* you|strong=\"H3605\"* have|strong=\"H7200\"* seen|strong=\"H7200\"*. You|strong=\"H3605\"* shall|strong=\"H4714\"* hurry|strong=\"H4116\"* and|strong=\"H4714\"* bring|strong=\"H3381\"* my|strong=\"H3605\"* father down|strong=\"H3381\"* here|strong=\"H2008\"*.”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H5921\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H5921\"* brother Benjamin|strong=\"H1144\"*’s neck|strong=\"H6677\"* and|strong=\"H1144\"* wept|strong=\"H1058\"*, and|strong=\"H1144\"* Benjamin|strong=\"H1144\"* wept|strong=\"H1058\"* on|strong=\"H5921\"* his|strong=\"H5921\"* neck|strong=\"H6677\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3651\"* kissed|strong=\"H5401\"* all|strong=\"H3605\"* his|strong=\"H3605\"* brothers, and|strong=\"H1696\"* wept|strong=\"H1058\"* on|strong=\"H5921\"* them|strong=\"H5921\"*. After|strong=\"H5921\"* that|strong=\"H3605\"* his|strong=\"H3605\"* brothers talked|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H8085\"* report|strong=\"H6963\"* of|strong=\"H1004\"* it|strong=\"H3190\"* was|strong=\"H1004\"* heard|strong=\"H8085\"* in|strong=\"H1004\"* Pharaoh|strong=\"H6547\"*’s house|strong=\"H1004\"*, saying|strong=\"H6963\"*, “Joseph|strong=\"H3130\"*’s brothers have|strong=\"H5869\"* come.” It|strong=\"H3190\"* pleased|strong=\"H3190\"* Pharaoh|strong=\"H6547\"* well|strong=\"H3190\"*, and|strong=\"H1004\"* his|strong=\"H8085\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 17, + "text": "Pharaoh|strong=\"H6547\"* said to|strong=\"H3212\"* Joseph|strong=\"H3130\"*, “Tell your|strong=\"H6213\"* brothers, ‘Do|strong=\"H6213\"* this|strong=\"H2063\"*: Load|strong=\"H2943\"* your|strong=\"H6213\"* animals, and|strong=\"H3212\"* go|strong=\"H3212\"*, travel to|strong=\"H3212\"* the|strong=\"H6213\"* land of|strong=\"H6213\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 18, + "text": "Take|strong=\"H3947\"* your|strong=\"H5414\"* father and|strong=\"H1004\"* your|strong=\"H5414\"* households|strong=\"H1004\"*, and|strong=\"H1004\"* come to|strong=\"H5414\"* me|strong=\"H5414\"*, and|strong=\"H1004\"* I|strong=\"H5414\"* will|strong=\"H4714\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H5414\"* good|strong=\"H2898\"* of|strong=\"H1004\"* the|strong=\"H5414\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, and|strong=\"H1004\"* you|strong=\"H5414\"* will|strong=\"H4714\"* eat the|strong=\"H5414\"* fat|strong=\"H2459\"* of|strong=\"H1004\"* the|strong=\"H5414\"* land.’" + }, + { + "verseNum": 19, + "text": "Now|strong=\"H3947\"* you|strong=\"H6680\"* are|strong=\"H4714\"* commanded|strong=\"H6680\"* to|strong=\"H6213\"* do|strong=\"H6213\"* this|strong=\"H2063\"*: Take|strong=\"H3947\"* wagons|strong=\"H5699\"* out|strong=\"H3947\"* of|strong=\"H6213\"* the|strong=\"H3947\"* land of|strong=\"H6213\"* Egypt|strong=\"H4714\"* for|strong=\"H6213\"* your|strong=\"H3947\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, and|strong=\"H4714\"* for|strong=\"H6213\"* your|strong=\"H3947\"* wives, and|strong=\"H4714\"* bring|strong=\"H3947\"* your|strong=\"H3947\"* father, and|strong=\"H4714\"* come." + }, + { + "verseNum": 20, + "text": "Also|strong=\"H5869\"*, don’t concern|strong=\"H2347\"* yourselves|strong=\"H5869\"* about|strong=\"H5921\"* your|strong=\"H3605\"* belongings, for|strong=\"H3588\"* the|strong=\"H3605\"* good|strong=\"H2898\"* of|strong=\"H3627\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3627\"* Egypt|strong=\"H4714\"* is|strong=\"H1931\"* yours.”" + }, + { + "verseNum": 21, + "text": "The|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* so|strong=\"H3651\"*. Joseph|strong=\"H3130\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* wagons|strong=\"H5699\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H1121\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* provision|strong=\"H6720\"* for|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H2568\"* gave|strong=\"H5414\"* each|strong=\"H3605\"* one|strong=\"H3605\"* of|strong=\"H3605\"* them|strong=\"H5414\"* changes|strong=\"H2487\"* of|strong=\"H3605\"* clothing|strong=\"H8071\"*, but|strong=\"H3605\"* to|strong=\"H5414\"* Benjamin|strong=\"H1144\"* he|strong=\"H2568\"* gave|strong=\"H5414\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* pieces of|strong=\"H3605\"* silver|strong=\"H3701\"* and|strong=\"H3967\"* five|strong=\"H2568\"* changes|strong=\"H2487\"* of|strong=\"H3605\"* clothing|strong=\"H8071\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H7971\"* sent|strong=\"H7971\"* the|strong=\"H5375\"* following|strong=\"H1870\"* to|strong=\"H7971\"* his|strong=\"H5375\"* father: ten|strong=\"H6235\"* donkeys|strong=\"H2543\"* loaded|strong=\"H5375\"* with|strong=\"H4714\"* the|strong=\"H5375\"* good|strong=\"H2898\"* things|strong=\"H2898\"* of|strong=\"H1870\"* Egypt|strong=\"H4714\"*, and|strong=\"H7971\"* ten|strong=\"H6235\"* female donkeys|strong=\"H2543\"* loaded|strong=\"H5375\"* with|strong=\"H4714\"* grain|strong=\"H1250\"* and|strong=\"H7971\"* bread|strong=\"H3899\"* and|strong=\"H7971\"* provision|strong=\"H3899\"* for|strong=\"H7971\"* his|strong=\"H5375\"* father by|strong=\"H1870\"* the|strong=\"H5375\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 24, + "text": "So|strong=\"H7971\"* he|strong=\"H7971\"* sent|strong=\"H7971\"* his|strong=\"H7971\"* brothers away|strong=\"H7971\"*, and|strong=\"H7971\"* they|strong=\"H1870\"* departed|strong=\"H3212\"*. He|strong=\"H7971\"* said to|strong=\"H3212\"* them|strong=\"H7971\"*, “See that|strong=\"H3212\"* you|strong=\"H7971\"* don’t quarrel|strong=\"H7264\"* on|strong=\"H1870\"* the|strong=\"H7971\"* way|strong=\"H1870\"*.”" + }, + { + "verseNum": 25, + "text": "They|strong=\"H3667\"* went|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H5927\"* of|strong=\"H5927\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* came|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H5927\"* land of|strong=\"H5927\"* Canaan|strong=\"H3667\"*, to|strong=\"H5927\"* Jacob|strong=\"H3290\"* their|strong=\"H3290\"* father." + }, + { + "verseNum": 26, + "text": "They|strong=\"H3588\"* told|strong=\"H5046\"* him|strong=\"H5046\"*, saying, “Joseph|strong=\"H3130\"* is|strong=\"H1931\"* still|strong=\"H5750\"* alive|strong=\"H2416\"*, and|strong=\"H4714\"* he|strong=\"H1931\"* is|strong=\"H1931\"* ruler|strong=\"H4910\"* over|strong=\"H4910\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3820\"* Egypt|strong=\"H4714\"*.” His|strong=\"H3605\"* heart|strong=\"H3820\"* fainted|strong=\"H6313\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* didn’t believe them|strong=\"H5046\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"H1697\"* told|strong=\"H1696\"* him|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1697\"* Joseph|strong=\"H3130\"*, which|strong=\"H1697\"* he|strong=\"H3605\"* had|strong=\"H3130\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H7971\"*. When|strong=\"H7200\"* he|strong=\"H3605\"* saw|strong=\"H7200\"* the|strong=\"H3605\"* wagons|strong=\"H5699\"* which|strong=\"H1697\"* Joseph|strong=\"H3130\"* had|strong=\"H3130\"* sent|strong=\"H7971\"* to|strong=\"H1696\"* carry|strong=\"H5375\"* him|strong=\"H7971\"*, the|strong=\"H3605\"* spirit|strong=\"H7307\"* of|strong=\"H1697\"* Jacob|strong=\"H3290\"*, their|strong=\"H3605\"* father, revived|strong=\"H2421\"*." + }, + { + "verseNum": 28, + "text": "Israel|strong=\"H3478\"* said, “It|strong=\"H7200\"* is|strong=\"H3478\"* enough|strong=\"H7227\"*. Joseph|strong=\"H3130\"* my|strong=\"H7200\"* son|strong=\"H1121\"* is|strong=\"H3478\"* still|strong=\"H5750\"* alive|strong=\"H2416\"*. I|strong=\"H2962\"* will|strong=\"H3478\"* go|strong=\"H3212\"* and|strong=\"H1121\"* see|strong=\"H7200\"* him|strong=\"H7200\"* before|strong=\"H2962\"* I|strong=\"H2962\"* die|strong=\"H4191\"*.”" + } + ] + }, + { + "chapterNum": 46, + "verses": [ + { + "verseNum": 1, + "text": "Israel|strong=\"H3478\"* traveled|strong=\"H5265\"* with|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3605\"* had|strong=\"H3478\"*, and|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* Beersheba, and|strong=\"H3478\"* offered|strong=\"H2076\"* sacrifices|strong=\"H2077\"* to|strong=\"H3478\"* the|strong=\"H3605\"* God of|strong=\"H2077\"* his|strong=\"H3605\"* father, Isaac|strong=\"H3327\"*." + }, + { + "verseNum": 2, + "text": "God spoke to|strong=\"H3478\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H2009\"* visions|strong=\"H4759\"* of|strong=\"H4759\"* the|strong=\"H2009\"* night|strong=\"H3915\"*, and|strong=\"H3478\"* said, “Jacob|strong=\"H3290\"*, Jacob|strong=\"H3290\"*!”" + }, + { + "verseNum": 3, + "text": "He|strong=\"H3588\"* said, “I|strong=\"H3588\"* am God, the|strong=\"H3588\"* God of|strong=\"H3372\"* your|strong=\"H7760\"* father. Don’t be|strong=\"H1471\"* afraid|strong=\"H3372\"* to|strong=\"H3381\"* go|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* Egypt|strong=\"H4714\"*, for|strong=\"H3588\"* there|strong=\"H8033\"* I|strong=\"H3588\"* will|strong=\"H1471\"* make|strong=\"H7760\"* of|strong=\"H3372\"* you|strong=\"H3588\"* a|strong=\"H3068\"* great|strong=\"H1419\"* nation|strong=\"H1471\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H5921\"* will|strong=\"H1571\"* go|strong=\"H5927\"* down|strong=\"H3381\"* with|strong=\"H5973\"* you|strong=\"H5921\"* into|strong=\"H3381\"* Egypt|strong=\"H4714\"*. I|strong=\"H5921\"* will|strong=\"H1571\"* also|strong=\"H1571\"* surely|strong=\"H5927\"* bring|strong=\"H5927\"* you|strong=\"H5921\"* up|strong=\"H5927\"* again|strong=\"H1571\"*. Joseph|strong=\"H3130\"*’s hand|strong=\"H3027\"* will|strong=\"H1571\"* close|strong=\"H7896\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"*.”" + }, + { + "verseNum": 5, + "text": "Jacob|strong=\"H3290\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* from|strong=\"H3478\"* Beersheba, and|strong=\"H1121\"* the|strong=\"H5375\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* carried|strong=\"H5375\"* Jacob|strong=\"H3290\"*, their|strong=\"H5375\"* father|strong=\"H1121\"*, their|strong=\"H5375\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, and|strong=\"H1121\"* their|strong=\"H5375\"* wives, in|strong=\"H3478\"* the|strong=\"H5375\"* wagons|strong=\"H5699\"* which|strong=\"H3478\"* Pharaoh|strong=\"H6547\"* had|strong=\"H3478\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* carry|strong=\"H5375\"* him|strong=\"H7971\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H3605\"* took|strong=\"H3947\"* their|strong=\"H3605\"* livestock|strong=\"H4735\"*, and|strong=\"H4714\"* their|strong=\"H3605\"* goods|strong=\"H7399\"*, which|strong=\"H7399\"* they|strong=\"H3605\"* had|strong=\"H3290\"* gotten|strong=\"H7408\"* in|strong=\"H2233\"* the|strong=\"H3605\"* land of|strong=\"H2233\"* Canaan|strong=\"H3667\"*, and|strong=\"H4714\"* came|strong=\"H4714\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*—Jacob|strong=\"H3290\"*, and|strong=\"H4714\"* all|strong=\"H3605\"* his|strong=\"H3605\"* offspring|strong=\"H2233\"* with|strong=\"H4714\"* him|strong=\"H3947\"*," + }, + { + "verseNum": 7, + "text": "his|strong=\"H3605\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*’ sons|strong=\"H1121\"* with|strong=\"H4714\"* him|strong=\"H3605\"*, his|strong=\"H3605\"* daughters|strong=\"H1323\"*, and|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*’ daughters|strong=\"H1323\"*, and|strong=\"H1121\"* he|strong=\"H3605\"* brought|strong=\"H2233\"* all|strong=\"H3605\"* his|strong=\"H3605\"* offspring|strong=\"H2233\"* with|strong=\"H4714\"* him|strong=\"H3605\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 8, + "text": "These are|strong=\"H1121\"* the|strong=\"H8034\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H8034\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, who|strong=\"H1121\"* came|strong=\"H3478\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*, Jacob|strong=\"H3290\"* and|strong=\"H1121\"* his|strong=\"H3478\"* sons|strong=\"H1121\"*: Reuben|strong=\"H7205\"*, Jacob|strong=\"H3290\"*’s firstborn|strong=\"H1060\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*: Hanoch|strong=\"H2585\"*, Pallu|strong=\"H6396\"*, Hezron|strong=\"H2696\"*, and|strong=\"H1121\"* Carmi|strong=\"H3756\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*: Jemuel|strong=\"H3223\"*, Jamin|strong=\"H3226\"*, Ohad, Jachin|strong=\"H3199\"*, Zohar|strong=\"H6714\"*, and|strong=\"H1121\"* Shaul|strong=\"H7586\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* Canaanite|strong=\"H3669\"* woman|strong=\"H3669\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*: Gershon|strong=\"H1648\"*, Kohath|strong=\"H6955\"*, and|strong=\"H1121\"* Merari|strong=\"H4847\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*: Er|strong=\"H6147\"*, Onan, Shelah|strong=\"H7956\"*, Perez|strong=\"H6557\"*, and|strong=\"H1121\"* Zerah|strong=\"H2226\"*; but|strong=\"H1961\"* Er|strong=\"H6147\"* and|strong=\"H1121\"* Onan died|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H1961\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*. The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Perez|strong=\"H6557\"* were|strong=\"H1961\"* Hezron|strong=\"H2696\"* and|strong=\"H1121\"* Hamul|strong=\"H2538\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"*: Tola|strong=\"H8439\"*, Puvah|strong=\"H6312\"*, Iob|strong=\"H3102\"*, and|strong=\"H1121\"* Shimron|strong=\"H8110\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*: Sered|strong=\"H5624\"*, Elon, and|strong=\"H1121\"* Jahleel|strong=\"H3177\"*." + }, + { + "verseNum": 15, + "text": "These|strong=\"H3605\"* are|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Leah|strong=\"H3812\"*, whom she bore|strong=\"H3205\"* to|strong=\"H3205\"* Jacob|strong=\"H3290\"* in|strong=\"H5315\"* Paddan|strong=\"H6307\"* Aram|strong=\"H6307\"*, with|strong=\"H5315\"* his|strong=\"H3605\"* daughter|strong=\"H1323\"* Dinah|strong=\"H1783\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* of|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H3605\"* daughters|strong=\"H1323\"* were|strong=\"H1121\"* thirty-three|strong=\"H7970\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*: Ziphion|strong=\"H6837\"*, Haggi|strong=\"H2291\"*, Shuni|strong=\"H7764\"*, Ezbon, Eri|strong=\"H6179\"*, Arodi, and|strong=\"H1121\"* Areli." + }, + { + "verseNum": 17, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asher: Imnah|strong=\"H3232\"*, Ishvah|strong=\"H3438\"*, Ishvi|strong=\"H3440\"*, Beriah|strong=\"H1283\"*, and|strong=\"H1121\"* Serah|strong=\"H8294\"* their|strong=\"H8294\"* sister. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Beriah|strong=\"H1283\"*: Heber|strong=\"H2268\"* and|strong=\"H1121\"* Malchiel|strong=\"H4439\"*." + }, + { + "verseNum": 18, + "text": "These are|strong=\"H1121\"* the|strong=\"H5414\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zilpah|strong=\"H2153\"*, whom Laban|strong=\"H3837\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* Leah|strong=\"H3812\"*, his|strong=\"H5414\"* daughter|strong=\"H1323\"*, and|strong=\"H1121\"* these she bore|strong=\"H3205\"* to|strong=\"H5414\"* Jacob|strong=\"H3290\"*, even sixteen|strong=\"H8337\"* souls|strong=\"H5315\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Rachel|strong=\"H7354\"*, Jacob|strong=\"H3290\"*’s wife: Joseph|strong=\"H3130\"* and|strong=\"H1121\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 20, + "text": "To|strong=\"H3205\"* Joseph|strong=\"H3130\"* in|strong=\"H4519\"* the|strong=\"H3205\"* land of|strong=\"H1323\"* Egypt|strong=\"H4714\"* were|strong=\"H4714\"* born|strong=\"H3205\"* Manasseh|strong=\"H4519\"* and|strong=\"H3548\"* Ephraim, whom Asenath, the|strong=\"H3205\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Potiphera|strong=\"H6319\"*, priest|strong=\"H3548\"* of|strong=\"H1323\"* On|strong=\"H3205\"*, bore|strong=\"H3205\"* to|strong=\"H3205\"* him|strong=\"H3205\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*: Bela|strong=\"H1106\"*, Becher|strong=\"H1071\"*, Ashbel, Gera|strong=\"H1617\"*, Naaman|strong=\"H5283\"*, Ehi, Rosh|strong=\"H7220\"*, Muppim|strong=\"H4649\"*, Huppim|strong=\"H2650\"*, and|strong=\"H1121\"* Ard." + }, + { + "verseNum": 22, + "text": "These|strong=\"H3605\"* are|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Rachel|strong=\"H7354\"*, who|strong=\"H3605\"* were|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H3205\"* Jacob|strong=\"H3290\"*: all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* were|strong=\"H1121\"* fourteen|strong=\"H6240\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*: Hushim|strong=\"H2366\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*: Jahzeel|strong=\"H3183\"*, Guni|strong=\"H1476\"*, Jezer|strong=\"H3337\"*, and|strong=\"H1121\"* Shillem|strong=\"H8006\"*." + }, + { + "verseNum": 25, + "text": "These|strong=\"H3605\"* are|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Bilhah|strong=\"H1090\"*, whom Laban|strong=\"H3837\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* Rachel|strong=\"H7354\"*, his|strong=\"H3605\"* daughter|strong=\"H1323\"*, and|strong=\"H1121\"* these|strong=\"H3605\"* she bore|strong=\"H3205\"* to|strong=\"H5414\"* Jacob|strong=\"H3290\"*: all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* were|strong=\"H1121\"* seven|strong=\"H7651\"*." + }, + { + "verseNum": 26, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* who|strong=\"H3605\"* came|strong=\"H3318\"* with|strong=\"H3318\"* Jacob|strong=\"H3290\"* into|strong=\"H3318\"* Egypt|strong=\"H4714\"*, who|strong=\"H3605\"* were|strong=\"H1121\"* his|strong=\"H3605\"* direct|strong=\"H3409\"* offspring|strong=\"H1121\"*, in|strong=\"H5315\"* addition to|strong=\"H3318\"* Jacob|strong=\"H3290\"*’s sons|strong=\"H1121\"*’ wives, all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* were|strong=\"H1121\"* sixty-six|strong=\"H8346\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*, who|strong=\"H3605\"* were|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H4714\"* him|strong=\"H3205\"* in|strong=\"H1004\"* Egypt|strong=\"H4714\"*, were|strong=\"H1121\"* two|strong=\"H8147\"* souls|strong=\"H5315\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* of|strong=\"H1121\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*, who|strong=\"H3605\"* came|strong=\"H4714\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*, were|strong=\"H1121\"* seventy|strong=\"H7657\"*." + }, + { + "verseNum": 28, + "text": "Jacob|strong=\"H7971\"* sent|strong=\"H7971\"* Judah|strong=\"H3063\"* before|strong=\"H6440\"* him|strong=\"H6440\"* to|strong=\"H7971\"* Joseph|strong=\"H3130\"*, to|strong=\"H7971\"* show the|strong=\"H6440\"* way|strong=\"H7971\"* before|strong=\"H6440\"* him|strong=\"H6440\"* to|strong=\"H7971\"* Goshen|strong=\"H1657\"*, and|strong=\"H3063\"* they|strong=\"H6440\"* came|strong=\"H3063\"* into|strong=\"H3063\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H6440\"* Goshen|strong=\"H1657\"*." + }, + { + "verseNum": 29, + "text": "Joseph|strong=\"H3130\"* prepared his|strong=\"H5921\"* chariot|strong=\"H4818\"*, and|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* meet|strong=\"H7125\"* Israel|strong=\"H3478\"*, his|strong=\"H5921\"* father, in|strong=\"H5921\"* Goshen|strong=\"H1657\"*. He|strong=\"H5921\"* presented|strong=\"H7200\"* himself|strong=\"H5307\"* to|strong=\"H3478\"* him|strong=\"H5921\"*, and|strong=\"H3478\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H5921\"* neck|strong=\"H6677\"*, and|strong=\"H3478\"* wept|strong=\"H1058\"* on|strong=\"H5921\"* his|strong=\"H5921\"* neck|strong=\"H6677\"* a|strong=\"H3068\"* good while|strong=\"H5750\"*." + }, + { + "verseNum": 30, + "text": "Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Joseph|strong=\"H3130\"*, “Now|strong=\"H6471\"* let|strong=\"H6471\"* me|strong=\"H6440\"* die|strong=\"H4191\"*, since|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3478\"* seen|strong=\"H7200\"* your|strong=\"H6440\"* face|strong=\"H6440\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3478\"* still|strong=\"H5750\"* alive|strong=\"H2416\"*.”" + }, + { + "verseNum": 31, + "text": "Joseph|strong=\"H3130\"* said to|strong=\"H5927\"* his|strong=\"H5046\"* brothers, and|strong=\"H1004\"* to|strong=\"H5927\"* his|strong=\"H5046\"* father’s house|strong=\"H1004\"*, “I|strong=\"H1004\"* will|strong=\"H1004\"* go|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H1004\"* speak with|strong=\"H1004\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H1004\"* will|strong=\"H1004\"* tell|strong=\"H5046\"* him|strong=\"H5046\"*, ‘My|strong=\"H5046\"* brothers, and|strong=\"H1004\"* my|strong=\"H5046\"* father’s house|strong=\"H1004\"*, who|strong=\"H6547\"* were|strong=\"H3130\"* in|strong=\"H1004\"* the|strong=\"H5927\"* land of|strong=\"H1004\"* Canaan|strong=\"H3667\"*, have|strong=\"H1004\"* come|strong=\"H5927\"* to|strong=\"H5927\"* me|strong=\"H5046\"*." + }, + { + "verseNum": 32, + "text": "These|strong=\"H3605\"* men|strong=\"H3605\"* are|strong=\"H1961\"* shepherds|strong=\"H7462\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1961\"* been|strong=\"H1961\"* keepers of|strong=\"H3605\"* livestock|strong=\"H4735\"*, and|strong=\"H6629\"* they|strong=\"H3588\"* have|strong=\"H1961\"* brought|strong=\"H1961\"* their|strong=\"H3605\"* flocks|strong=\"H6629\"*, and|strong=\"H6629\"* their|strong=\"H3605\"* herds|strong=\"H1241\"*, and|strong=\"H6629\"* all|strong=\"H3605\"* that|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1961\"*.’" + }, + { + "verseNum": 33, + "text": "It|strong=\"H7121\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, when|strong=\"H3588\"* Pharaoh|strong=\"H6547\"* summons|strong=\"H7121\"* you|strong=\"H3588\"*, and|strong=\"H6547\"* will|strong=\"H1961\"* say, ‘What|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H3588\"* occupation|strong=\"H4639\"*?’" + }, + { + "verseNum": 34, + "text": "that|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H5650\"* say, ‘Your|strong=\"H3605\"* servants|strong=\"H5650\"* have|strong=\"H1961\"* been|strong=\"H1961\"* keepers of|strong=\"H3427\"* livestock|strong=\"H4735\"* from|strong=\"H5704\"* our|strong=\"H3605\"* youth|strong=\"H5271\"* even|strong=\"H1571\"* until|strong=\"H5704\"* now|strong=\"H6258\"*, both|strong=\"H1571\"* we|strong=\"H3068\"*, and|strong=\"H5650\"* our|strong=\"H3605\"* fathers:’ that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H1961\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H3427\"* Goshen|strong=\"H1657\"*; for|strong=\"H3588\"* every|strong=\"H3605\"* shepherd|strong=\"H7462\"* is|strong=\"H1571\"* an|strong=\"H1961\"* abomination|strong=\"H8441\"* to|strong=\"H5704\"* the|strong=\"H3605\"* Egyptians|strong=\"H4713\"*.”" + } + ] + }, + { + "chapterNum": 47, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3130\"* Joseph|strong=\"H3130\"* went|strong=\"H3130\"* in|strong=\"H6629\"* and|strong=\"H6629\"* told|strong=\"H5046\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H6629\"* said, “My|strong=\"H3605\"* father and|strong=\"H6629\"* my|strong=\"H3605\"* brothers, with|strong=\"H3605\"* their|strong=\"H3605\"* flocks|strong=\"H6629\"*, their|strong=\"H3605\"* herds|strong=\"H1241\"*, and|strong=\"H6629\"* all|strong=\"H3605\"* that|strong=\"H3605\"* they|strong=\"H3605\"* own, have|strong=\"H3605\"* come out|strong=\"H3605\"* of|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Canaan|strong=\"H3667\"*; and|strong=\"H6629\"* behold|strong=\"H2005\"*, they|strong=\"H3605\"* are|strong=\"H1241\"* in|strong=\"H6629\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Goshen|strong=\"H1657\"*.”" + }, + { + "verseNum": 2, + "text": "From|strong=\"H6440\"* among|strong=\"H7097\"* his|strong=\"H3947\"* brothers he|strong=\"H2568\"* took|strong=\"H3947\"* five|strong=\"H2568\"* men|strong=\"H3947\"*, and|strong=\"H2568\"* presented|strong=\"H3322\"* them|strong=\"H6440\"* to|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 3, + "text": "Pharaoh|strong=\"H6547\"* said to|strong=\"H5650\"* his|strong=\"H7462\"* brothers, “What|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H1571\"* occupation|strong=\"H4639\"*?”" + }, + { + "verseNum": 4, + "text": "They|strong=\"H3588\"* also|strong=\"H3588\"* said to|strong=\"H5650\"* Pharaoh|strong=\"H6547\"*, “We|strong=\"H3588\"* have|strong=\"H5650\"* come|strong=\"H4994\"* to|strong=\"H5650\"* live|strong=\"H3427\"* as|strong=\"H3588\"* foreigners|strong=\"H1481\"* in|strong=\"H3427\"* the|strong=\"H3588\"* land, for|strong=\"H3588\"* there|strong=\"H3427\"* is|strong=\"H5650\"* no pasture|strong=\"H4829\"* for|strong=\"H3588\"* your|strong=\"H3588\"* servants|strong=\"H5650\"*’ flocks|strong=\"H6629\"*. For|strong=\"H3588\"* the|strong=\"H3588\"* famine|strong=\"H7458\"* is|strong=\"H5650\"* severe|strong=\"H3515\"* in|strong=\"H3427\"* the|strong=\"H3588\"* land of|strong=\"H3427\"* Canaan|strong=\"H3667\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H3588\"* servants|strong=\"H5650\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3588\"* land of|strong=\"H3427\"* Goshen|strong=\"H1657\"*.”" + }, + { + "verseNum": 5, + "text": "Pharaoh|strong=\"H6547\"* spoke to|strong=\"H6547\"* Joseph|strong=\"H3130\"*, saying, “Your|strong=\"H3130\"* father and|strong=\"H6547\"* your|strong=\"H3130\"* brothers have come to|strong=\"H6547\"* you." + }, + { + "verseNum": 6, + "text": "The|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H3427\"* Egypt|strong=\"H4714\"* is|strong=\"H3426\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. Make|strong=\"H7760\"* your|strong=\"H5921\"* father and|strong=\"H4714\"* your|strong=\"H5921\"* brothers dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* best|strong=\"H4315\"* of|strong=\"H3427\"* the|strong=\"H6440\"* land|strong=\"H6440\"*. Let|strong=\"H7760\"* them|strong=\"H5921\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H3427\"* Goshen|strong=\"H1657\"*. If|strong=\"H3426\"* you|strong=\"H6440\"* know|strong=\"H3045\"* any|strong=\"H3426\"* able|strong=\"H2428\"* men|strong=\"H2428\"* among|strong=\"H5921\"* them|strong=\"H5921\"*, then|strong=\"H3045\"* put|strong=\"H7760\"* them|strong=\"H5921\"* in|strong=\"H3427\"* charge|strong=\"H5921\"* of|strong=\"H3427\"* my|strong=\"H7760\"* livestock|strong=\"H4735\"*.”" + }, + { + "verseNum": 7, + "text": "Joseph|strong=\"H3130\"* brought|strong=\"H3130\"* in|strong=\"H6440\"* Jacob|strong=\"H3290\"*, his|strong=\"H6440\"* father, and|strong=\"H6440\"* set|strong=\"H5975\"* him|strong=\"H6440\"* before|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*; and|strong=\"H6440\"* Jacob|strong=\"H3290\"* blessed|strong=\"H1288\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 8, + "text": "Pharaoh|strong=\"H6547\"* said to|strong=\"H3117\"* Jacob|strong=\"H3290\"*, “How|strong=\"H4100\"* old|strong=\"H8141\"* are|strong=\"H3117\"* you|strong=\"H3117\"*?”" + }, + { + "verseNum": 9, + "text": "Jacob|strong=\"H3290\"* said to|strong=\"H1961\"* Pharaoh|strong=\"H6547\"*, “The|strong=\"H3117\"* years|strong=\"H8141\"* of|strong=\"H3117\"* my|strong=\"H1961\"* pilgrimage|strong=\"H4033\"* are|strong=\"H3117\"* one|strong=\"H3808\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"*. The|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* years|strong=\"H8141\"* of|strong=\"H3117\"* my|strong=\"H1961\"* life|strong=\"H2416\"* have|strong=\"H1961\"* been|strong=\"H1961\"* few|strong=\"H4592\"* and|strong=\"H3967\"* evil|strong=\"H7451\"*. They|strong=\"H3117\"* have|strong=\"H1961\"* not|strong=\"H3808\"* attained|strong=\"H5381\"* to|strong=\"H1961\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* years|strong=\"H8141\"* of|strong=\"H3117\"* the|strong=\"H3117\"* life|strong=\"H2416\"* of|strong=\"H3117\"* my|strong=\"H1961\"* fathers in|strong=\"H8141\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* their|strong=\"H1961\"* pilgrimage|strong=\"H4033\"*.”" + }, + { + "verseNum": 10, + "text": "Jacob|strong=\"H3290\"* blessed|strong=\"H1288\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H6440\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 11, + "text": "Joseph|strong=\"H3130\"* placed|strong=\"H5414\"* his|strong=\"H5414\"* father and|strong=\"H4714\"* his|strong=\"H5414\"* brothers, and|strong=\"H4714\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* a|strong=\"H3068\"* possession in|strong=\"H3427\"* the|strong=\"H5414\"* land of|strong=\"H3427\"* Egypt|strong=\"H4714\"*, in|strong=\"H3427\"* the|strong=\"H5414\"* best|strong=\"H4315\"* of|strong=\"H3427\"* the|strong=\"H5414\"* land, in|strong=\"H3427\"* the|strong=\"H5414\"* land of|strong=\"H3427\"* Rameses|strong=\"H7486\"*, as|strong=\"H3427\"* Pharaoh|strong=\"H6547\"* had|strong=\"H3130\"* commanded|strong=\"H6680\"*." + }, + { + "verseNum": 12, + "text": "Joseph|strong=\"H3130\"* provided|strong=\"H3557\"* his|strong=\"H3605\"* father, his|strong=\"H3605\"* brothers, and|strong=\"H1004\"* all|strong=\"H3605\"* of|strong=\"H1004\"* his|strong=\"H3605\"* father’s household|strong=\"H1004\"* with|strong=\"H1004\"* bread|strong=\"H3899\"*, according|strong=\"H6310\"* to|strong=\"H1004\"* the|strong=\"H3605\"* sizes of|strong=\"H1004\"* their|strong=\"H3605\"* families|strong=\"H1004\"*." + }, + { + "verseNum": 13, + "text": "There|strong=\"H3605\"* was|strong=\"H7458\"* no|strong=\"H3605\"* bread|strong=\"H3899\"* in|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* famine|strong=\"H7458\"* was|strong=\"H7458\"* very|strong=\"H3966\"* severe|strong=\"H3515\"*, so|strong=\"H3966\"* that|strong=\"H3588\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H6440\"* Egypt|strong=\"H4714\"* and|strong=\"H3899\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H6440\"* Canaan|strong=\"H3667\"* fainted|strong=\"H3856\"* by|strong=\"H6440\"* reason|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*." + }, + { + "verseNum": 14, + "text": "Joseph|strong=\"H3130\"* gathered|strong=\"H3950\"* up|strong=\"H3950\"* all|strong=\"H3605\"* the|strong=\"H3605\"* money|strong=\"H3701\"* that|strong=\"H3605\"* was|strong=\"H1004\"* found|strong=\"H4672\"* in|strong=\"H1004\"* the|strong=\"H3605\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, and|strong=\"H3701\"* in|strong=\"H1004\"* the|strong=\"H3605\"* land of|strong=\"H1004\"* Canaan|strong=\"H3667\"*, for|strong=\"H4714\"* the|strong=\"H3605\"* grain|strong=\"H7668\"* which|strong=\"H1992\"* they|strong=\"H1992\"* bought|strong=\"H7666\"*: and|strong=\"H3701\"* Joseph|strong=\"H3130\"* brought|strong=\"H3130\"* the|strong=\"H3605\"* money|strong=\"H3701\"* into|strong=\"H4714\"* Pharaoh|strong=\"H6547\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* the|strong=\"H3605\"* money|strong=\"H3701\"* was|strong=\"H3130\"* all|strong=\"H3605\"* spent|strong=\"H8552\"* in|strong=\"H4191\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Egypt|strong=\"H4714\"*, and|strong=\"H3701\"* in|strong=\"H4191\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Canaan|strong=\"H3667\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"* came|strong=\"H4714\"* to|strong=\"H4191\"* Joseph|strong=\"H3130\"*, and|strong=\"H3701\"* said, “Give|strong=\"H3051\"* us|strong=\"H3051\"* bread|strong=\"H3899\"*, for|strong=\"H3588\"* why|strong=\"H4100\"* should|strong=\"H4100\"* we|strong=\"H3068\"* die|strong=\"H4191\"* in|strong=\"H4191\"* your|strong=\"H3605\"* presence|strong=\"H5048\"*? For|strong=\"H3588\"* our|strong=\"H3605\"* money|strong=\"H3701\"* fails.”" + }, + { + "verseNum": 16, + "text": "Joseph|strong=\"H3130\"* said, “Give|strong=\"H5414\"* me|strong=\"H5414\"* your|strong=\"H5414\"* livestock|strong=\"H4735\"*; and|strong=\"H3701\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* food for|strong=\"H3701\"* your|strong=\"H5414\"* livestock|strong=\"H4735\"*, if your|strong=\"H5414\"* money|strong=\"H3701\"* is|strong=\"H3701\"* gone.”" + }, + { + "verseNum": 17, + "text": "They|strong=\"H8141\"* brought|strong=\"H5414\"* their|strong=\"H3605\"* livestock|strong=\"H4735\"* to|strong=\"H5414\"* Joseph|strong=\"H3130\"*, and|strong=\"H3899\"* Joseph|strong=\"H3130\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* bread|strong=\"H3899\"* in|strong=\"H8141\"* exchange|strong=\"H5414\"* for|strong=\"H3605\"* the|strong=\"H3605\"* horses|strong=\"H5483\"*, and|strong=\"H3899\"* for|strong=\"H3605\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"*, and|strong=\"H3899\"* for|strong=\"H3605\"* the|strong=\"H3605\"* herds|strong=\"H1241\"*, and|strong=\"H3899\"* for|strong=\"H3605\"* the|strong=\"H3605\"* donkeys|strong=\"H2543\"*: and|strong=\"H3899\"* he|strong=\"H1931\"* fed|strong=\"H5095\"* them|strong=\"H5414\"* with|strong=\"H3899\"* bread|strong=\"H3899\"* in|strong=\"H8141\"* exchange|strong=\"H5414\"* for|strong=\"H3605\"* all|strong=\"H3605\"* their|strong=\"H3605\"* livestock|strong=\"H4735\"* for|strong=\"H3605\"* that|strong=\"H3605\"* year|strong=\"H8141\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H3588\"* that|strong=\"H3588\"* year|strong=\"H8141\"* was|strong=\"H1931\"* ended|strong=\"H8552\"*, they|strong=\"H3588\"* came|strong=\"H8141\"* to|strong=\"H6440\"* him|strong=\"H6440\"* the|strong=\"H6440\"* second|strong=\"H8145\"* year|strong=\"H8141\"*, and|strong=\"H3701\"* said to|strong=\"H6440\"* him|strong=\"H6440\"*, “We|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* hide|strong=\"H3582\"* from|strong=\"H6440\"* my|strong=\"H3588\"* lord how|strong=\"H3588\"* our|strong=\"H3588\"* money|strong=\"H3701\"* is|strong=\"H1931\"* all|strong=\"H8552\"* spent|strong=\"H8552\"*, and|strong=\"H3701\"* the|strong=\"H6440\"* herds|strong=\"H4735\"* of|strong=\"H8141\"* livestock|strong=\"H4735\"* are|strong=\"H8141\"* my|strong=\"H3588\"* lord’s. There|strong=\"H7604\"* is|strong=\"H1931\"* nothing|strong=\"H3808\"* left|strong=\"H7604\"* in|strong=\"H8141\"* the|strong=\"H6440\"* sight|strong=\"H6440\"* of|strong=\"H8141\"* my|strong=\"H3588\"* lord, but|strong=\"H3588\"* our|strong=\"H3588\"* bodies|strong=\"H1472\"*, and|strong=\"H3701\"* our|strong=\"H3588\"* lands." + }, + { + "verseNum": 19, + "text": "Why|strong=\"H4100\"* should|strong=\"H4100\"* we|strong=\"H3068\"* die|strong=\"H4191\"* before|strong=\"H5869\"* your|strong=\"H5414\"* eyes|strong=\"H5869\"*, both|strong=\"H1571\"* we|strong=\"H3068\"* and|strong=\"H3899\"* our|strong=\"H5414\"* land? Buy|strong=\"H7069\"* us|strong=\"H5414\"* and|strong=\"H3899\"* our|strong=\"H5414\"* land for|strong=\"H5650\"* bread|strong=\"H3899\"*, and|strong=\"H3899\"* we|strong=\"H3068\"* and|strong=\"H3899\"* our|strong=\"H5414\"* land will|strong=\"H1961\"* be|strong=\"H1961\"* servants|strong=\"H5650\"* to|strong=\"H4191\"* Pharaoh|strong=\"H6547\"*. Give|strong=\"H5414\"* us|strong=\"H5414\"* seed|strong=\"H2233\"*, that|strong=\"H5414\"* we|strong=\"H3068\"* may|strong=\"H1961\"* live|strong=\"H2421\"*, and|strong=\"H3899\"* not|strong=\"H3808\"* die|strong=\"H4191\"*, and|strong=\"H3899\"* that|strong=\"H5414\"* the|strong=\"H5414\"* land won’t be|strong=\"H1961\"* desolate|strong=\"H3456\"*.”" + }, + { + "verseNum": 20, + "text": "So|strong=\"H1961\"* Joseph|strong=\"H3130\"* bought|strong=\"H7069\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H7704\"* of|strong=\"H7704\"* Egypt|strong=\"H4714\"* for|strong=\"H3588\"* Pharaoh|strong=\"H6547\"*, for|strong=\"H3588\"* every|strong=\"H3605\"* man|strong=\"H3605\"* of|strong=\"H7704\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"* sold|strong=\"H4376\"* his|strong=\"H3605\"* field|strong=\"H7704\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* famine|strong=\"H7458\"* was|strong=\"H1961\"* severe|strong=\"H2388\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H4714\"* the|strong=\"H3605\"* land|strong=\"H7704\"* became|strong=\"H1961\"* Pharaoh|strong=\"H6547\"*’s." + }, + { + "verseNum": 21, + "text": "As|strong=\"H5704\"* for|strong=\"H5704\"* the|strong=\"H5704\"* people|strong=\"H5971\"*, he|strong=\"H5704\"* moved them|strong=\"H5674\"* to|strong=\"H5704\"* the|strong=\"H5704\"* cities|strong=\"H5892\"* from|strong=\"H5704\"* one|strong=\"H5892\"* end|strong=\"H7097\"* of|strong=\"H5892\"* the|strong=\"H5704\"* border|strong=\"H1366\"* of|strong=\"H5892\"* Egypt|strong=\"H4714\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* other|strong=\"H7097\"* end|strong=\"H7097\"* of|strong=\"H5892\"* it|strong=\"H5704\"*." + }, + { + "verseNum": 22, + "text": "Only|strong=\"H7535\"* he|strong=\"H3588\"* didn’t buy|strong=\"H7069\"* the|strong=\"H5921\"* land of|strong=\"H5921\"* the|strong=\"H5921\"* priests|strong=\"H3548\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* had|strong=\"H3588\"* a|strong=\"H3068\"* portion|strong=\"H2706\"* from|strong=\"H5921\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H3548\"* ate their|strong=\"H5414\"* portion|strong=\"H2706\"* which|strong=\"H3548\"* Pharaoh|strong=\"H6547\"* gave|strong=\"H5414\"* them|strong=\"H5414\"*. That|strong=\"H3588\"* is|strong=\"H3651\"* why|strong=\"H5921\"* they|strong=\"H3588\"* didn’t sell|strong=\"H4376\"* their|strong=\"H5414\"* land." + }, + { + "verseNum": 23, + "text": "Then|strong=\"H3117\"* Joseph|strong=\"H3130\"* said to|strong=\"H3117\"* the|strong=\"H3117\"* people|strong=\"H5971\"*, “Behold|strong=\"H2005\"*, I|strong=\"H3117\"* have|strong=\"H5971\"* bought|strong=\"H7069\"* you|strong=\"H3117\"* and|strong=\"H3117\"* your|strong=\"H2232\"* land today|strong=\"H3117\"* for|strong=\"H3117\"* Pharaoh|strong=\"H6547\"*. Behold|strong=\"H2005\"*, here|strong=\"H2005\"* is|strong=\"H3117\"* seed|strong=\"H2233\"* for|strong=\"H3117\"* you|strong=\"H3117\"*, and|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H5971\"* sow|strong=\"H2232\"* the|strong=\"H3117\"* land." + }, + { + "verseNum": 24, + "text": "It|strong=\"H5414\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* at|strong=\"H1004\"* the|strong=\"H5414\"* harvests|strong=\"H8393\"*, that|strong=\"H5414\"* you|strong=\"H5414\"* shall|strong=\"H1004\"* give|strong=\"H5414\"* a|strong=\"H3068\"* fifth|strong=\"H2549\"* to|strong=\"H1961\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H3027\"* four parts|strong=\"H3027\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H5414\"* own|strong=\"H1961\"*, for|strong=\"H3027\"* seed|strong=\"H2233\"* of|strong=\"H1004\"* the|strong=\"H5414\"* field|strong=\"H7704\"*, for|strong=\"H3027\"* your|strong=\"H5414\"* food|strong=\"H1004\"*, for|strong=\"H3027\"* them|strong=\"H5414\"* of|strong=\"H1004\"* your|strong=\"H5414\"* households|strong=\"H1004\"*, and|strong=\"H3027\"* for|strong=\"H3027\"* food|strong=\"H1004\"* for|strong=\"H3027\"* your|strong=\"H5414\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*.”" + }, + { + "verseNum": 25, + "text": "They said, “You|strong=\"H4672\"* have|strong=\"H1961\"* saved|strong=\"H2421\"* our|strong=\"H5650\"* lives|strong=\"H2421\"*! Let|strong=\"H1961\"* us|strong=\"H1961\"* find|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H4672\"* the|strong=\"H1961\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* my|strong=\"H1961\"* lord, and|strong=\"H5869\"* we|strong=\"H3068\"* will|strong=\"H1961\"* be|strong=\"H1961\"* Pharaoh|strong=\"H6547\"*’s servants|strong=\"H5650\"*.”" + }, + { + "verseNum": 26, + "text": "Joseph|strong=\"H3130\"* made|strong=\"H7760\"* it|strong=\"H7760\"* a|strong=\"H3068\"* statute|strong=\"H2706\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, that|strong=\"H3117\"* Pharaoh|strong=\"H6547\"* should|strong=\"H3117\"* have|strong=\"H1961\"* the|strong=\"H5921\"* fifth|strong=\"H2569\"*. Only|strong=\"H7535\"* the|strong=\"H5921\"* land of|strong=\"H3117\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* alone didn’t become|strong=\"H1961\"* Pharaoh|strong=\"H6547\"*’s." + }, + { + "verseNum": 27, + "text": "Israel|strong=\"H3478\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* land of|strong=\"H3427\"* Egypt|strong=\"H4714\"*, in|strong=\"H3427\"* the|strong=\"H3427\"* land of|strong=\"H3427\"* Goshen|strong=\"H1657\"*; and|strong=\"H3478\"* they|strong=\"H3478\"* got themselves possessions therein|strong=\"H3427\"*, and|strong=\"H3478\"* were|strong=\"H3478\"* fruitful|strong=\"H6509\"*, and|strong=\"H3478\"* multiplied|strong=\"H7235\"* exceedingly|strong=\"H3966\"*." + }, + { + "verseNum": 28, + "text": "Jacob|strong=\"H3290\"* lived|strong=\"H2421\"* in|strong=\"H8141\"* the|strong=\"H3117\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"* seventeen|strong=\"H7651\"* years|strong=\"H8141\"*. So|strong=\"H1961\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Jacob|strong=\"H3290\"*, the|strong=\"H3117\"* years|strong=\"H8141\"* of|strong=\"H3117\"* his|strong=\"H1961\"* life|strong=\"H2416\"*, were|strong=\"H1961\"* one|strong=\"H2421\"* hundred|strong=\"H3967\"* forty-seven years|strong=\"H8141\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H6213\"* time|strong=\"H3117\"* came|strong=\"H7126\"* near|strong=\"H7126\"* that|strong=\"H3117\"* Israel|strong=\"H3478\"* must|strong=\"H4191\"* die|strong=\"H4191\"*, and|strong=\"H1121\"* he|strong=\"H3117\"* called|strong=\"H7121\"* his|strong=\"H7760\"* son|strong=\"H1121\"* Joseph|strong=\"H3130\"*, and|strong=\"H1121\"* said|strong=\"H7121\"* to|strong=\"H3478\"* him|strong=\"H7121\"*, “If|strong=\"H1121\"* now|strong=\"H4994\"* I|strong=\"H3117\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H3478\"* your|strong=\"H7760\"* sight|strong=\"H5869\"*, please|strong=\"H4994\"* put|strong=\"H7760\"* your|strong=\"H7760\"* hand|strong=\"H3027\"* under|strong=\"H8478\"* my|strong=\"H7760\"* thigh|strong=\"H3409\"*, and|strong=\"H1121\"* deal|strong=\"H6213\"* kindly|strong=\"H2617\"* and|strong=\"H1121\"* truly|strong=\"H6213\"* with|strong=\"H6213\"* me|strong=\"H4994\"*. Please|strong=\"H4994\"* don’t bury|strong=\"H6912\"* me|strong=\"H4994\"* in|strong=\"H3478\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 30, + "text": "but|strong=\"H5973\"* when|strong=\"H6213\"* I|strong=\"H1697\"* sleep|strong=\"H7901\"* with|strong=\"H5973\"* my|strong=\"H5375\"* fathers, you|strong=\"H6213\"* shall|strong=\"H4714\"* carry|strong=\"H5375\"* me|strong=\"H6213\"* out|strong=\"H6213\"* of|strong=\"H1697\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* bury|strong=\"H6912\"* me|strong=\"H6213\"* in|strong=\"H6213\"* their|strong=\"H5375\"* burying|strong=\"H6912\"* place|strong=\"H6900\"*.”" + }, + { + "verseNum": 31, + "text": "Israel|strong=\"H3478\"* said, “Swear|strong=\"H7650\"* to|strong=\"H3478\"* me|strong=\"H5921\"*,” and|strong=\"H3478\"* he|strong=\"H5921\"* swore|strong=\"H7650\"* to|strong=\"H3478\"* him|strong=\"H5921\"*. Then|strong=\"H7218\"* Israel|strong=\"H3478\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bed|strong=\"H4296\"*’s head|strong=\"H7218\"*." + } + ] + }, + { + "chapterNum": 48, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* these|strong=\"H3947\"* things|strong=\"H1697\"*, someone said|strong=\"H1697\"* to|strong=\"H1961\"* Joseph|strong=\"H3130\"*, “Behold|strong=\"H2009\"*, your|strong=\"H3947\"* father|strong=\"H1121\"* is|strong=\"H1697\"* sick|strong=\"H2470\"*.” He|strong=\"H8147\"* took|strong=\"H3947\"* with|strong=\"H5973\"* him|strong=\"H5973\"* his|strong=\"H3947\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*, Manasseh|strong=\"H4519\"* and|strong=\"H1121\"* Ephraim." + }, + { + "verseNum": 2, + "text": "Someone told|strong=\"H5046\"* Jacob|strong=\"H3290\"*, and|strong=\"H1121\"* said, “Behold|strong=\"H2009\"*, your|strong=\"H5921\"* son|strong=\"H1121\"* Joseph|strong=\"H3130\"* comes to|strong=\"H3478\"* you|strong=\"H5921\"*,” and|strong=\"H1121\"* Israel|strong=\"H3478\"* strengthened|strong=\"H2388\"* himself|strong=\"H2388\"*, and|strong=\"H1121\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bed|strong=\"H4296\"*." + }, + { + "verseNum": 3, + "text": "Jacob|strong=\"H3290\"* said to|strong=\"H7200\"* Joseph|strong=\"H3130\"*, “God Almighty|strong=\"H7706\"* appeared|strong=\"H7200\"* to|strong=\"H7200\"* me|strong=\"H7200\"* at|strong=\"H7200\"* Luz|strong=\"H3870\"* in|strong=\"H7200\"* the|strong=\"H7200\"* land of|strong=\"H7200\"* Canaan|strong=\"H3667\"*, and|strong=\"H7200\"* blessed|strong=\"H1288\"* me|strong=\"H7200\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"H5971\"* said to|strong=\"H5414\"* me|strong=\"H5414\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H5971\"* make|strong=\"H5414\"* you|strong=\"H5414\"* fruitful|strong=\"H6509\"*, and|strong=\"H5971\"* multiply|strong=\"H7235\"* you|strong=\"H5414\"*, and|strong=\"H5971\"* I|strong=\"H2005\"* will|strong=\"H5971\"* make|strong=\"H5414\"* of|strong=\"H2233\"* you|strong=\"H5414\"* a|strong=\"H3068\"* company|strong=\"H6951\"* of|strong=\"H2233\"* peoples|strong=\"H5971\"*, and|strong=\"H5971\"* will|strong=\"H5971\"* give|strong=\"H5414\"* this|strong=\"H2063\"* land to|strong=\"H5414\"* your|strong=\"H5414\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* you|strong=\"H5414\"* for|strong=\"H5414\"* an|strong=\"H5414\"* everlasting|strong=\"H5769\"* possession|strong=\"H2233\"*.’" + }, + { + "verseNum": 5, + "text": "Now|strong=\"H6258\"* your|strong=\"H1961\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*, who|strong=\"H1121\"* were|strong=\"H1961\"* born|strong=\"H3205\"* to|strong=\"H5704\"* you|strong=\"H5704\"* in|strong=\"H1121\"* the|strong=\"H3205\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"* before|strong=\"H5704\"* I|strong=\"H5704\"* came|strong=\"H1961\"* to|strong=\"H5704\"* you|strong=\"H5704\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*, are|strong=\"H1992\"* mine; Ephraim and|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, even|strong=\"H5704\"* as|strong=\"H5704\"* Reuben|strong=\"H7205\"* and|strong=\"H1121\"* Simeon|strong=\"H8095\"*, will|strong=\"H1961\"* be|strong=\"H1961\"* mine." + }, + { + "verseNum": 6, + "text": "Your|strong=\"H5921\"* offspring|strong=\"H4138\"*, whom|strong=\"H7121\"* you|strong=\"H5921\"* become|strong=\"H1961\"* the|strong=\"H5921\"* father|strong=\"H3205\"* of|strong=\"H3205\"* after|strong=\"H5921\"* them|strong=\"H5921\"*, will|strong=\"H1961\"* be|strong=\"H1961\"* yours. They|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* called|strong=\"H7121\"* after|strong=\"H5921\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3205\"* their|strong=\"H5921\"* brothers in|strong=\"H5921\"* their|strong=\"H5921\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 7, + "text": "As|strong=\"H8033\"* for|strong=\"H5921\"* me|strong=\"H5921\"*, when|strong=\"H5921\"* I|strong=\"H5921\"* came from|strong=\"H5921\"* Paddan|strong=\"H6307\"*, Rachel|strong=\"H7354\"* died|strong=\"H4191\"* beside|strong=\"H5921\"* me|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1870\"* Canaan|strong=\"H3667\"* on|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"*, when|strong=\"H5921\"* there|strong=\"H8033\"* was|strong=\"H1931\"* still|strong=\"H5750\"* some|strong=\"H3530\"* distance|strong=\"H3530\"* to|strong=\"H4191\"* come|strong=\"H5750\"* to|strong=\"H4191\"* Ephrath, and|strong=\"H1870\"* I|strong=\"H5921\"* buried|strong=\"H6912\"* her|strong=\"H5921\"* there|strong=\"H8033\"* on|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* to|strong=\"H4191\"* Ephrath (also|strong=\"H5750\"* called|strong=\"H8033\"* Bethlehem|strong=\"H1035\"*).”" + }, + { + "verseNum": 8, + "text": "Israel|strong=\"H3478\"* saw|strong=\"H7200\"* Joseph|strong=\"H3130\"*’s sons|strong=\"H1121\"*, and|strong=\"H1121\"* said, “Who|strong=\"H4310\"* are|strong=\"H1121\"* these?”" + }, + { + "verseNum": 9, + "text": "Joseph|strong=\"H3130\"* said to|strong=\"H5414\"* his|strong=\"H5414\"* father|strong=\"H1121\"*, “They|strong=\"H1992\"* are|strong=\"H1992\"* my|strong=\"H5414\"* sons|strong=\"H1121\"*, whom|strong=\"H1992\"* God|strong=\"H5414\"* has|strong=\"H2088\"* given|strong=\"H5414\"* me|strong=\"H5414\"* here|strong=\"H2088\"*.”" + }, + { + "verseNum": 10, + "text": "Now|strong=\"H3478\"* the|strong=\"H7200\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* dim|strong=\"H3513\"* for|strong=\"H3478\"* age|strong=\"H2207\"*, so|strong=\"H3808\"* that|strong=\"H7200\"* he|strong=\"H3808\"* couldn’t see|strong=\"H7200\"* well|strong=\"H5869\"*. Joseph|strong=\"H3808\"* brought|strong=\"H5066\"* them|strong=\"H7200\"* near|strong=\"H5066\"* to|strong=\"H3478\"* him|strong=\"H7200\"*; and|strong=\"H3478\"* he|strong=\"H3808\"* kissed|strong=\"H5401\"* them|strong=\"H7200\"*, and|strong=\"H3478\"* embraced|strong=\"H2263\"* them|strong=\"H7200\"*." + }, + { + "verseNum": 11, + "text": "Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Joseph|strong=\"H3130\"*, “I|strong=\"H2009\"* didn’t think|strong=\"H7200\"* I|strong=\"H2009\"* would|strong=\"H3478\"* see|strong=\"H7200\"* your|strong=\"H6440\"* face|strong=\"H6440\"*, and|strong=\"H3478\"* behold|strong=\"H2009\"*, God|strong=\"H3808\"* has|strong=\"H3478\"* let|strong=\"H3808\"* me|strong=\"H6440\"* see|strong=\"H7200\"* your|strong=\"H6440\"* offspring|strong=\"H2233\"* also|strong=\"H1571\"*.”" + }, + { + "verseNum": 12, + "text": "Joseph|strong=\"H3130\"* brought|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* between|strong=\"H5973\"* his|strong=\"H3318\"* knees|strong=\"H1290\"*, and|strong=\"H3318\"* he|strong=\"H3318\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* with|strong=\"H5973\"* his|strong=\"H3318\"* face to|strong=\"H3318\"* the|strong=\"H3318\"* earth." + }, + { + "verseNum": 13, + "text": "Joseph|strong=\"H3130\"* took|strong=\"H3947\"* them|strong=\"H3947\"* both|strong=\"H8147\"*, Ephraim in|strong=\"H3478\"* his|strong=\"H3947\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* toward|strong=\"H3225\"* Israel|strong=\"H3478\"*’s left|strong=\"H8040\"* hand|strong=\"H3225\"*, and|strong=\"H3478\"* Manasseh|strong=\"H4519\"* in|strong=\"H3478\"* his|strong=\"H3947\"* left|strong=\"H8040\"* hand|strong=\"H3225\"* toward|strong=\"H3225\"* Israel|strong=\"H3478\"*’s right|strong=\"H3225\"* hand|strong=\"H3225\"*, and|strong=\"H3478\"* brought|strong=\"H3947\"* them|strong=\"H3947\"* near|strong=\"H5066\"* to|strong=\"H3478\"* him|strong=\"H3947\"*." + }, + { + "verseNum": 14, + "text": "Israel|strong=\"H3478\"* stretched|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* right|strong=\"H3225\"* hand|strong=\"H3027\"*, and|strong=\"H3478\"* laid|strong=\"H7896\"* it|strong=\"H1931\"* on|strong=\"H5921\"* Ephraim’s head|strong=\"H7218\"*, who|strong=\"H1931\"* was|strong=\"H3478\"* the|strong=\"H5921\"* younger|strong=\"H6810\"*, and|strong=\"H3478\"* his|strong=\"H7971\"* left|strong=\"H8040\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* Manasseh|strong=\"H4519\"*’s head|strong=\"H7218\"*, guiding|strong=\"H7919\"* his|strong=\"H7971\"* hands|strong=\"H3027\"* knowingly, for|strong=\"H3588\"* Manasseh|strong=\"H4519\"* was|strong=\"H3478\"* the|strong=\"H5921\"* firstborn|strong=\"H1060\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3117\"* blessed|strong=\"H1288\"* Joseph|strong=\"H3130\"*, and|strong=\"H1980\"* said," + }, + { + "verseNum": 16, + "text": "the|strong=\"H3605\"* angel|strong=\"H4397\"* who|strong=\"H3605\"* has|strong=\"H3605\"* redeemed|strong=\"H1350\"* me|strong=\"H7121\"* from|strong=\"H7451\"* all|strong=\"H3605\"* evil|strong=\"H7451\"*, bless|strong=\"H1288\"* the|strong=\"H3605\"* lads|strong=\"H5288\"*," + }, + { + "verseNum": 17, + "text": "When|strong=\"H3588\"* Joseph|strong=\"H3130\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* his|strong=\"H5921\"* father laid|strong=\"H7896\"* his|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H3027\"* Ephraim, it|strong=\"H5921\"* displeased|strong=\"H7489\"* him|strong=\"H5921\"*. He|strong=\"H3588\"* held|strong=\"H8551\"* up|strong=\"H7200\"* his|strong=\"H5921\"* father’s hand|strong=\"H3027\"*, to|strong=\"H5921\"* remove|strong=\"H5493\"* it|strong=\"H5921\"* from|strong=\"H5493\"* Ephraim’s head|strong=\"H7218\"* to|strong=\"H5921\"* Manasseh|strong=\"H4519\"*’s head|strong=\"H7218\"*." + }, + { + "verseNum": 18, + "text": "Joseph|strong=\"H3130\"* said|strong=\"H3651\"* to|strong=\"H5921\"* his|strong=\"H7760\"* father, “Not|strong=\"H3808\"* so|strong=\"H3651\"*, my|strong=\"H7760\"* father, for|strong=\"H3588\"* this|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H5921\"* firstborn|strong=\"H1060\"*. Put|strong=\"H7760\"* your|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* on|strong=\"H5921\"* his|strong=\"H7760\"* head|strong=\"H7218\"*.”" + }, + { + "verseNum": 19, + "text": "His|strong=\"H3045\"* father|strong=\"H1121\"* refused|strong=\"H3985\"*, and|strong=\"H1121\"* said, “I|strong=\"H3045\"* know|strong=\"H3045\"*, my|strong=\"H3045\"* son|strong=\"H1121\"*, I|strong=\"H3045\"* know|strong=\"H3045\"*. He|strong=\"H1931\"* also|strong=\"H1571\"* will|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* people|strong=\"H5971\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* also|strong=\"H1571\"* will|strong=\"H1961\"* be|strong=\"H1961\"* great|strong=\"H1431\"*. However|strong=\"H1571\"*, his|strong=\"H3045\"* younger|strong=\"H6996\"* brother will|strong=\"H1961\"* be|strong=\"H1961\"* greater|strong=\"H1431\"* than|strong=\"H4480\"* he|strong=\"H1931\"*, and|strong=\"H1121\"* his|strong=\"H3045\"* offspring|strong=\"H2233\"* will|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* multitude|strong=\"H4393\"* of|strong=\"H1121\"* nations|strong=\"H1471\"*.”" + }, + { + "verseNum": 20, + "text": "He|strong=\"H1931\"* blessed|strong=\"H1288\"* them|strong=\"H6440\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, saying, “Israel|strong=\"H3478\"* will|strong=\"H3478\"* bless|strong=\"H1288\"* in|strong=\"H3478\"* your|strong=\"H7760\"* name, saying, ‘God make|strong=\"H7760\"* you|strong=\"H6440\"* as|strong=\"H3117\"* Ephraim and|strong=\"H3478\"* as|strong=\"H3117\"* Manasseh|strong=\"H4519\"*’” He|strong=\"H1931\"* set|strong=\"H7760\"* Ephraim before|strong=\"H6440\"* Manasseh|strong=\"H4519\"*." + }, + { + "verseNum": 21, + "text": "Israel|strong=\"H3478\"* said to|strong=\"H7725\"* Joseph|strong=\"H3130\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* am|strong=\"H1961\"* dying|strong=\"H4191\"*, but|strong=\"H1961\"* God will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H7725\"*, and|strong=\"H3478\"* bring|strong=\"H7725\"* you|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H7725\"* land of|strong=\"H4191\"* your|strong=\"H7725\"* fathers." + }, + { + "verseNum": 22, + "text": "Moreover I|strong=\"H5414\"* have|strong=\"H3027\"* given|strong=\"H5414\"* to|strong=\"H5921\"* you|strong=\"H5414\"* one|strong=\"H3027\"* portion|strong=\"H7926\"* above|strong=\"H5921\"* your|strong=\"H5414\"* brothers, which|strong=\"H2719\"* I|strong=\"H5414\"* took|strong=\"H3947\"* out|strong=\"H5414\"* of|strong=\"H3027\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* Amorite with|strong=\"H5921\"* my|strong=\"H5414\"* sword|strong=\"H2719\"* and|strong=\"H3027\"* with|strong=\"H5921\"* my|strong=\"H5414\"* bow|strong=\"H7198\"*.”" + } + ] + }, + { + "chapterNum": 49, + "verses": [ + { + "verseNum": 1, + "text": "Jacob|strong=\"H3290\"* called|strong=\"H7121\"* to|strong=\"H3117\"* his|strong=\"H7121\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* said|strong=\"H7121\"*: “Gather yourselves together|strong=\"H7121\"*, that|strong=\"H3117\"* I|strong=\"H3117\"* may|strong=\"H1121\"* tell|strong=\"H5046\"* you|strong=\"H3117\"* that|strong=\"H3117\"* which|strong=\"H3117\"* will|strong=\"H1121\"* happen|strong=\"H7122\"* to|strong=\"H3117\"* you|strong=\"H3117\"* in|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* to|strong=\"H3117\"* come|strong=\"H7122\"*." + }, + { + "verseNum": 2, + "text": "Assemble|strong=\"H6908\"* yourselves|strong=\"H6908\"*, and|strong=\"H1121\"* hear|strong=\"H8085\"*, you|strong=\"H8085\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 3, + "text": "“Reuben|strong=\"H7205\"*, you|strong=\"H3581\"* are|strong=\"H5794\"* my|strong=\"H3581\"* firstborn|strong=\"H1060\"*, my|strong=\"H3581\"* might|strong=\"H3581\"*, and|strong=\"H7205\"* the|strong=\"H7205\"* beginning|strong=\"H7225\"* of|strong=\"H1060\"* my|strong=\"H3581\"* strength|strong=\"H3581\"*," + }, + { + "verseNum": 4, + "text": "Boiling over|strong=\"H3498\"* like|strong=\"H5927\"* water|strong=\"H4325\"*, you|strong=\"H3588\"* shall|strong=\"H4325\"* not|strong=\"H3588\"* excel|strong=\"H3498\"*," + }, + { + "verseNum": 5, + "text": "“Simeon|strong=\"H8095\"* and|strong=\"H2555\"* Levi|strong=\"H3878\"* are|strong=\"H3627\"* brothers." + }, + { + "verseNum": 6, + "text": "My|strong=\"H3588\"* soul|strong=\"H5315\"*, don’t come into|strong=\"H3519\"* their|strong=\"H3588\"* council|strong=\"H5475\"*." + }, + { + "verseNum": 7, + "text": "Cursed be|strong=\"H3478\"* their|strong=\"H3588\"* anger|strong=\"H5678\"*, for|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3478\"* fierce|strong=\"H5794\"*;" + }, + { + "verseNum": 8, + "text": "“Judah|strong=\"H3063\"*, your|strong=\"H3027\"* brothers|strong=\"H1121\"* will|strong=\"H1121\"* praise|strong=\"H3034\"* you|strong=\"H3034\"*." + }, + { + "verseNum": 9, + "text": "Judah|strong=\"H3063\"* is|strong=\"H4310\"* a|strong=\"H3068\"* lion|strong=\"H3833\"*’s cub|strong=\"H1482\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3588\"* scepter|strong=\"H7626\"* will|strong=\"H5971\"* not|strong=\"H3808\"* depart|strong=\"H5493\"* from|strong=\"H5493\"* Judah|strong=\"H3063\"*," + }, + { + "verseNum": 11, + "text": "Binding his|strong=\"H3526\"* foal|strong=\"H5895\"* to|strong=\"H1121\"* the|strong=\"H1121\"* vine|strong=\"H1612\"*," + }, + { + "verseNum": 12, + "text": "His|strong=\"H5869\"* eyes|strong=\"H5869\"* will|strong=\"H5869\"* be|strong=\"H5869\"* red|strong=\"H2447\"* with|strong=\"H5869\"* wine|strong=\"H3196\"*," + }, + { + "verseNum": 13, + "text": "“Zebulun|strong=\"H2074\"* will|strong=\"H1931\"* dwell|strong=\"H7931\"* at|strong=\"H5921\"* the|strong=\"H5921\"* haven|strong=\"H2348\"* of|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 14, + "text": "“Issachar|strong=\"H3485\"* is|strong=\"H3485\"* a|strong=\"H3068\"* strong|strong=\"H1634\"* donkey|strong=\"H2543\"*," + }, + { + "verseNum": 15, + "text": "He|strong=\"H3588\"* saw|strong=\"H7200\"* a|strong=\"H3068\"* resting|strong=\"H4496\"* place|strong=\"H4496\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H1961\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 16, + "text": "“Dan|strong=\"H1835\"* will|strong=\"H5971\"* judge|strong=\"H1777\"* his|strong=\"H3478\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 17, + "text": "Dan|strong=\"H1835\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* serpent|strong=\"H5175\"* on|strong=\"H5921\"* the|strong=\"H5921\"* trail|strong=\"H6119\"*," + }, + { + "verseNum": 18, + "text": "I|strong=\"H3068\"* have|strong=\"H3068\"* waited|strong=\"H6960\"* for|strong=\"H3068\"* your|strong=\"H3068\"* salvation|strong=\"H3444\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "“A|strong=\"H3068\"* troop|strong=\"H1416\"* will|strong=\"H1931\"* press on Gad|strong=\"H1410\"*," + }, + { + "verseNum": 20, + "text": "“Asher’s food|strong=\"H3899\"* will|strong=\"H4428\"* be|strong=\"H5414\"* rich|strong=\"H8082\"*." + }, + { + "verseNum": 21, + "text": "“Naphtali|strong=\"H5321\"* is|strong=\"H7971\"* a|strong=\"H3068\"* doe set|strong=\"H5414\"* free|strong=\"H7971\"*," + }, + { + "verseNum": 22, + "text": "“Joseph|strong=\"H3130\"* is|strong=\"H1121\"* a|strong=\"H3068\"* fruitful|strong=\"H6509\"* vine," + }, + { + "verseNum": 23, + "text": "The archers|strong=\"H1167\"* have|strong=\"H2671\"* severely grieved|strong=\"H4843\"* him|strong=\"H7852\"*," + }, + { + "verseNum": 24, + "text": "But|strong=\"H3290\"* his|strong=\"H3027\"* bow|strong=\"H7198\"* remained|strong=\"H3427\"* strong|strong=\"H6339\"*." + }, + { + "verseNum": 25, + "text": "even|strong=\"H5921\"* by|strong=\"H5921\"* the|strong=\"H5921\"* God|strong=\"H8064\"* of|strong=\"H5921\"* your|strong=\"H5921\"* father, who|strong=\"H7706\"* will|strong=\"H8064\"* help|strong=\"H5826\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 26, + "text": "The|strong=\"H5921\"* blessings|strong=\"H1293\"* of|strong=\"H7218\"* your|strong=\"H5921\"* father have|strong=\"H1961\"* prevailed|strong=\"H1396\"* above|strong=\"H5921\"* the|strong=\"H5921\"* blessings|strong=\"H1293\"* of|strong=\"H7218\"* my|strong=\"H5921\"* ancestors|strong=\"H2029\"*," + }, + { + "verseNum": 27, + "text": "“Benjamin|strong=\"H1144\"* is|strong=\"H7998\"* a|strong=\"H3068\"* ravenous|strong=\"H2963\"* wolf|strong=\"H2061\"*." + }, + { + "verseNum": 28, + "text": "All|strong=\"H3605\"* these|strong=\"H1696\"* are|strong=\"H3478\"* the|strong=\"H3605\"* twelve|strong=\"H8147\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* this|strong=\"H2063\"* is|strong=\"H3478\"* what|strong=\"H2063\"* their|strong=\"H3605\"* father spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H8147\"*, and|strong=\"H3478\"* blessed|strong=\"H1288\"* them|strong=\"H8147\"*. He|strong=\"H3605\"* blessed|strong=\"H1288\"* everyone|strong=\"H3605\"* according to|strong=\"H1696\"* his|strong=\"H3605\"* own blessing|strong=\"H1293\"*." + }, + { + "verseNum": 29, + "text": "He|strong=\"H5971\"* instructed|strong=\"H6680\"* them|strong=\"H6680\"*, and|strong=\"H5971\"* said to|strong=\"H6680\"* them|strong=\"H6680\"*, “I|strong=\"H6680\"* am to|strong=\"H6680\"* be|strong=\"H5971\"* gathered to|strong=\"H6680\"* my|strong=\"H6912\"* people|strong=\"H5971\"*. Bury|strong=\"H6912\"* me|strong=\"H6680\"* with|strong=\"H5971\"* my|strong=\"H6912\"* fathers in|strong=\"H6912\"* the|strong=\"H6680\"* cave|strong=\"H4631\"* that|strong=\"H5971\"* is|strong=\"H2850\"* in|strong=\"H6912\"* the|strong=\"H6680\"* field|strong=\"H7704\"* of|strong=\"H7704\"* Ephron|strong=\"H6085\"* the|strong=\"H6680\"* Hittite|strong=\"H2850\"*," + }, + { + "verseNum": 30, + "text": "in|strong=\"H5921\"* the|strong=\"H6440\"* cave|strong=\"H4631\"* that|strong=\"H4631\"* is|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* field|strong=\"H7704\"* of|strong=\"H6440\"* Machpelah|strong=\"H4375\"*, which|strong=\"H7704\"* is|strong=\"H6440\"* before|strong=\"H6440\"* Mamre|strong=\"H4471\"*, in|strong=\"H5921\"* the|strong=\"H6440\"* land|strong=\"H7704\"* of|strong=\"H6440\"* Canaan|strong=\"H3667\"*, which|strong=\"H7704\"* Abraham bought|strong=\"H7069\"* with|strong=\"H5921\"* the|strong=\"H6440\"* field|strong=\"H7704\"* from|strong=\"H6440\"* Ephron|strong=\"H6085\"* the|strong=\"H6440\"* Hittite|strong=\"H2850\"* as|strong=\"H6440\"* a|strong=\"H3068\"* burial|strong=\"H6913\"* place|strong=\"H6913\"*." + }, + { + "verseNum": 31, + "text": "There|strong=\"H8033\"* they|strong=\"H8033\"* buried|strong=\"H6912\"* Abraham and|strong=\"H8033\"* Sarah|strong=\"H8283\"*, his|strong=\"H3327\"* wife. There|strong=\"H8033\"* they|strong=\"H8033\"* buried|strong=\"H6912\"* Isaac|strong=\"H3327\"* and|strong=\"H8033\"* Rebekah|strong=\"H7259\"*, his|strong=\"H3327\"* wife, and|strong=\"H8033\"* there|strong=\"H8033\"* I|strong=\"H3327\"* buried|strong=\"H6912\"* Leah|strong=\"H3812\"*:" + }, + { + "verseNum": 32, + "text": "the|strong=\"H1121\"* field|strong=\"H7704\"* and|strong=\"H1121\"* the|strong=\"H1121\"* cave|strong=\"H4631\"* that|strong=\"H1121\"* is|strong=\"H1121\"* therein, which|strong=\"H7704\"* was|strong=\"H1121\"* purchased|strong=\"H4735\"* from|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Heth|strong=\"H2845\"*.”" + }, + { + "verseNum": 33, + "text": "When|strong=\"H3615\"* Jacob|strong=\"H3290\"* finished|strong=\"H3615\"* charging|strong=\"H6680\"* his|strong=\"H6680\"* sons|strong=\"H1121\"*, he|strong=\"H7272\"* gathered up|strong=\"H1121\"* his|strong=\"H6680\"* feet|strong=\"H7272\"* into|strong=\"H3290\"* the|strong=\"H6680\"* bed|strong=\"H4296\"*, breathed|strong=\"H1478\"* his|strong=\"H6680\"* last|strong=\"H1478\"* breath, and|strong=\"H1121\"* was|strong=\"H1121\"* gathered to|strong=\"H1121\"* his|strong=\"H6680\"* people|strong=\"H5971\"*." + } + ] + }, + { + "chapterNum": 50, + "verses": [ + { + "verseNum": 1, + "text": "Joseph|strong=\"H3130\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H6440\"* father’s face|strong=\"H6440\"*, wept|strong=\"H1058\"* on|strong=\"H5921\"* him|strong=\"H6440\"*, and|strong=\"H6440\"* kissed|strong=\"H5401\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 2, + "text": "Joseph|strong=\"H3130\"* commanded|strong=\"H6680\"* his|strong=\"H6680\"* servants|strong=\"H5650\"*, the|strong=\"H6680\"* physicians|strong=\"H7495\"*, to|strong=\"H3478\"* embalm|strong=\"H2590\"* his|strong=\"H6680\"* father; and|strong=\"H3478\"* the|strong=\"H6680\"* physicians|strong=\"H7495\"* embalmed|strong=\"H2590\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 3, + "text": "Forty days|strong=\"H3117\"* were|strong=\"H3117\"* used for|strong=\"H3588\"* him|strong=\"H4390\"*, for|strong=\"H3588\"* that|strong=\"H3588\"* is|strong=\"H3117\"* how|strong=\"H3588\"* many days|strong=\"H3117\"* it|strong=\"H3588\"* takes to|strong=\"H3117\"* embalm|strong=\"H2590\"*. The|strong=\"H3588\"* Egyptians|strong=\"H4713\"* wept|strong=\"H1058\"* for|strong=\"H3588\"* Israel for|strong=\"H3588\"* seventy|strong=\"H7657\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H1004\"* weeping for|strong=\"H1004\"* him|strong=\"H4672\"* were|strong=\"H3117\"* past|strong=\"H5674\"*, Joseph|strong=\"H3130\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Pharaoh|strong=\"H6547\"*’s staff, saying|strong=\"H1696\"*, “If now|strong=\"H4994\"* I|strong=\"H3117\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H1004\"* your|strong=\"H4994\"* eyes|strong=\"H5869\"*, please|strong=\"H4994\"* speak|strong=\"H1696\"* in|strong=\"H1004\"* the|strong=\"H3117\"* ears of|strong=\"H1004\"* Pharaoh|strong=\"H6547\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 5, + "text": "‘My|strong=\"H7725\"* father made|strong=\"H7650\"* me|strong=\"H4994\"* swear|strong=\"H7650\"*, saying, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* am dying|strong=\"H4191\"*. Bury|strong=\"H6912\"* me|strong=\"H4994\"* in|strong=\"H4191\"* my|strong=\"H7725\"* grave|strong=\"H6913\"* which|strong=\"H8033\"* I|strong=\"H2009\"* have|strong=\"H6258\"* dug|strong=\"H3738\"* for|strong=\"H4191\"* myself in|strong=\"H4191\"* the|strong=\"H7725\"* land of|strong=\"H6913\"* Canaan|strong=\"H3667\"*.” Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H7725\"* bury|strong=\"H6912\"* my|strong=\"H7725\"* father, and|strong=\"H7725\"* I|strong=\"H2009\"* will|strong=\"H8033\"* come|strong=\"H5927\"* again|strong=\"H7725\"*.’”" + }, + { + "verseNum": 6, + "text": "Pharaoh|strong=\"H6547\"* said, “Go|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H5927\"* bury|strong=\"H6912\"* your|strong=\"H6912\"* father, just like|strong=\"H5927\"* he|strong=\"H7650\"* made|strong=\"H7650\"* you|strong=\"H5927\"* swear|strong=\"H7650\"*.”" + }, + { + "verseNum": 7, + "text": "Joseph|strong=\"H3130\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* bury|strong=\"H6912\"* his|strong=\"H3605\"* father; and|strong=\"H1004\"* with|strong=\"H1004\"* him|strong=\"H6912\"* went|strong=\"H5927\"* up|strong=\"H5927\"* all|strong=\"H3605\"* the|strong=\"H3605\"* servants|strong=\"H5650\"* of|strong=\"H1004\"* Pharaoh|strong=\"H6547\"*, the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1004\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1004\"* the|strong=\"H3605\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 8, + "text": "all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Joseph|strong=\"H3130\"*, his|strong=\"H3605\"* brothers, and|strong=\"H1004\"* his|strong=\"H3605\"* father’s house|strong=\"H1004\"*. Only|strong=\"H7535\"* their|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, their|strong=\"H3605\"* flocks|strong=\"H6629\"*, and|strong=\"H1004\"* their|strong=\"H3605\"* herds|strong=\"H1241\"*, they|strong=\"H3605\"* left|strong=\"H5800\"* in|strong=\"H1004\"* the|strong=\"H3605\"* land of|strong=\"H1004\"* Goshen|strong=\"H1657\"*." + }, + { + "verseNum": 9, + "text": "Both|strong=\"H1571\"* chariots|strong=\"H7393\"* and|strong=\"H7393\"* horsemen|strong=\"H6571\"* went|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* him|strong=\"H5973\"*. It|strong=\"H5927\"* was|strong=\"H1961\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H3966\"* company|strong=\"H4264\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H3117\"* came to|strong=\"H5704\"* the|strong=\"H6213\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* of|strong=\"H3117\"* Atad, which|strong=\"H8033\"* is|strong=\"H3117\"* beyond|strong=\"H5676\"* the|strong=\"H6213\"* Jordan|strong=\"H3383\"*, and|strong=\"H3117\"* there|strong=\"H8033\"* they|strong=\"H3117\"* lamented|strong=\"H5594\"* with|strong=\"H6213\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* and|strong=\"H3117\"* severe|strong=\"H3515\"* lamentation|strong=\"H4553\"*. He|strong=\"H3117\"* mourned|strong=\"H5594\"* for|strong=\"H5704\"* his|strong=\"H6213\"* father seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H7200\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H5921\"* land|strong=\"H5676\"*, the|strong=\"H5921\"* Canaanites|strong=\"H3669\"*, saw|strong=\"H7200\"* the|strong=\"H5921\"* mourning in|strong=\"H3427\"* the|strong=\"H5921\"* floor|strong=\"H1637\"* of|strong=\"H3427\"* Atad, they|strong=\"H3651\"* said|strong=\"H7121\"*, “This|strong=\"H2088\"* is|strong=\"H2088\"* a|strong=\"H3068\"* grievous|strong=\"H3515\"* mourning by|strong=\"H5921\"* the|strong=\"H5921\"* Egyptians|strong=\"H4713\"*.” Therefore|strong=\"H3651\"* its|strong=\"H5921\"* name|strong=\"H8034\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Abel Mizraim, which|strong=\"H2088\"* is|strong=\"H2088\"* beyond|strong=\"H5676\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 12, + "text": "His|strong=\"H6680\"* sons|strong=\"H1121\"* did|strong=\"H6213\"* to|strong=\"H6213\"* him|strong=\"H6213\"* just|strong=\"H6213\"* as|strong=\"H6213\"* he|strong=\"H6213\"* commanded|strong=\"H6680\"* them|strong=\"H6213\"*," + }, + { + "verseNum": 13, + "text": "for|strong=\"H5921\"* his|strong=\"H5375\"* sons|strong=\"H1121\"* carried|strong=\"H5375\"* him|strong=\"H6440\"* into|strong=\"H5921\"* the|strong=\"H6440\"* land|strong=\"H7704\"* of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, and|strong=\"H1121\"* buried|strong=\"H6912\"* him|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* cave|strong=\"H4631\"* of|strong=\"H1121\"* the|strong=\"H6440\"* field|strong=\"H7704\"* of|strong=\"H1121\"* Machpelah|strong=\"H4375\"*, which|strong=\"H7704\"* Abraham|strong=\"H5375\"* bought|strong=\"H7069\"* with|strong=\"H5921\"* the|strong=\"H6440\"* field|strong=\"H7704\"*, as|strong=\"H6440\"* a|strong=\"H3068\"* possession for|strong=\"H5921\"* a|strong=\"H3068\"* burial|strong=\"H6913\"* site, from|strong=\"H6440\"* Ephron|strong=\"H6085\"* the|strong=\"H6440\"* Hittite|strong=\"H2850\"*, near|strong=\"H6440\"* Mamre|strong=\"H4471\"*." + }, + { + "verseNum": 14, + "text": "Joseph|strong=\"H3130\"* returned|strong=\"H7725\"* into|strong=\"H7725\"* Egypt|strong=\"H4714\"*—he|strong=\"H1931\"*, and|strong=\"H7725\"* his|strong=\"H3605\"* brothers, and|strong=\"H7725\"* all|strong=\"H3605\"* that|strong=\"H3605\"* went|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H4714\"* him|strong=\"H7725\"* to|strong=\"H7725\"* bury|strong=\"H6912\"* his|strong=\"H3605\"* father, after|strong=\"H5927\"* he|strong=\"H1931\"* had|strong=\"H3130\"* buried|strong=\"H6912\"* his|strong=\"H3605\"* father." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* Joseph|strong=\"H3130\"*’s brothers saw|strong=\"H7200\"* that|strong=\"H3588\"* their|strong=\"H3605\"* father was|strong=\"H3130\"* dead|strong=\"H4191\"*, they|strong=\"H3588\"* said, “It|strong=\"H3588\"* may|strong=\"H7725\"* be|strong=\"H4191\"* that|strong=\"H3588\"* Joseph|strong=\"H3130\"* will|strong=\"H3130\"* hate|strong=\"H3863\"* us|strong=\"H7725\"*, and|strong=\"H7725\"* will|strong=\"H3130\"* fully pay|strong=\"H7725\"* us|strong=\"H7725\"* back|strong=\"H7725\"* for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* which|strong=\"H7451\"* we|strong=\"H3068\"* did|strong=\"H1580\"* to|strong=\"H7725\"* him|strong=\"H7725\"*.”" + }, + { + "verseNum": 16, + "text": "They|strong=\"H6440\"* sent|strong=\"H6680\"* a|strong=\"H3068\"* message to|strong=\"H6440\"* Joseph|strong=\"H3130\"*, saying, “Your|strong=\"H6440\"* father commanded|strong=\"H6680\"* before|strong=\"H6440\"* he|strong=\"H6440\"* died|strong=\"H4194\"*, saying," + }, + { + "verseNum": 17, + "text": "‘You|strong=\"H3588\"* shall|strong=\"H5650\"* tell|strong=\"H1696\"* Joseph|strong=\"H3130\"*, “Now|strong=\"H6258\"* please|strong=\"H4994\"* forgive|strong=\"H5375\"* the|strong=\"H3588\"* disobedience of|strong=\"H5650\"* your|strong=\"H5375\"* brothers, and|strong=\"H5650\"* their|strong=\"H5375\"* sin|strong=\"H2403\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* did|strong=\"H1580\"* evil|strong=\"H7451\"* to|strong=\"H1696\"* you|strong=\"H3588\"*.”’ Now|strong=\"H6258\"*, please|strong=\"H4994\"* forgive|strong=\"H5375\"* the|strong=\"H3588\"* disobedience of|strong=\"H5650\"* the|strong=\"H3588\"* servants|strong=\"H5650\"* of|strong=\"H5650\"* the|strong=\"H3588\"* God of|strong=\"H5650\"* your|strong=\"H5375\"* father.” Joseph|strong=\"H3130\"* wept|strong=\"H1058\"* when|strong=\"H3588\"* they|strong=\"H3588\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5375\"*." + }, + { + "verseNum": 18, + "text": "His|strong=\"H6440\"* brothers also|strong=\"H1571\"* went|strong=\"H3212\"* and|strong=\"H3212\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* before|strong=\"H6440\"* his|strong=\"H6440\"* face|strong=\"H6440\"*; and|strong=\"H3212\"* they|strong=\"H6440\"* said, “Behold|strong=\"H2009\"*, we|strong=\"H3068\"* are|strong=\"H5650\"* your|strong=\"H6440\"* servants|strong=\"H5650\"*.”" + }, + { + "verseNum": 19, + "text": "Joseph|strong=\"H3130\"* said to|strong=\"H3372\"* them|strong=\"H8478\"*, “Don’t be|strong=\"H3372\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* am I|strong=\"H3588\"* in|strong=\"H3372\"* the|strong=\"H3588\"* place|strong=\"H8478\"* of|strong=\"H8478\"* God?" + }, + { + "verseNum": 20, + "text": "As|strong=\"H3117\"* for|strong=\"H5921\"* you|strong=\"H5921\"*, you|strong=\"H5921\"* meant|strong=\"H2803\"* evil|strong=\"H7451\"* against|strong=\"H5921\"* me|strong=\"H5921\"*, but|strong=\"H5971\"* God meant|strong=\"H2803\"* it|strong=\"H5921\"* for|strong=\"H5921\"* good|strong=\"H2896\"*, to|strong=\"H5921\"* save|strong=\"H2421\"* many|strong=\"H7227\"* people|strong=\"H5971\"* alive|strong=\"H2421\"*, as|strong=\"H3117\"* is|strong=\"H2088\"* happening today|strong=\"H3117\"*." + }, + { + "verseNum": 21, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* don’t be|strong=\"H3820\"* afraid|strong=\"H3372\"*. I|strong=\"H5921\"* will|strong=\"H3820\"* provide|strong=\"H3557\"* for|strong=\"H5921\"* you|strong=\"H5921\"* and|strong=\"H3372\"* your|strong=\"H5921\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*.” He|strong=\"H5921\"* comforted|strong=\"H5162\"* them|strong=\"H5921\"*, and|strong=\"H3372\"* spoke|strong=\"H1696\"* kindly|strong=\"H3820\"* to|strong=\"H1696\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 22, + "text": "Joseph|strong=\"H3130\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Egypt|strong=\"H4714\"*, he|strong=\"H1931\"*, and|strong=\"H3967\"* his|strong=\"H1931\"* father’s house|strong=\"H1004\"*. Joseph|strong=\"H3130\"* lived|strong=\"H3427\"* one|strong=\"H2421\"* hundred|strong=\"H3967\"* ten|strong=\"H6235\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 23, + "text": "Joseph|strong=\"H3130\"* saw|strong=\"H7200\"* Ephraim’s children|strong=\"H1121\"* to|strong=\"H5921\"* the|strong=\"H5921\"* third|strong=\"H8029\"* generation|strong=\"H8029\"*. The|strong=\"H5921\"* children|strong=\"H1121\"* also|strong=\"H1571\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, were|strong=\"H1121\"* born|strong=\"H3205\"* on|strong=\"H5921\"* Joseph|strong=\"H3130\"*’s knees|strong=\"H1290\"*." + }, + { + "verseNum": 24, + "text": "Joseph|strong=\"H3130\"* said to|strong=\"H4191\"* his|strong=\"H3327\"* brothers, “I|strong=\"H4480\"* am|strong=\"H6485\"* dying|strong=\"H4191\"*, but|strong=\"H4191\"* God will|strong=\"H3290\"* surely|strong=\"H4191\"* visit|strong=\"H6485\"* you|strong=\"H4480\"*, and|strong=\"H5927\"* bring|strong=\"H5927\"* you|strong=\"H4480\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H4480\"* this|strong=\"H2063\"* land to|strong=\"H4191\"* the|strong=\"H4480\"* land which|strong=\"H6485\"* he|strong=\"H4480\"* swore|strong=\"H7650\"* to|strong=\"H4191\"* Abraham, to|strong=\"H4191\"* Isaac|strong=\"H3327\"*, and|strong=\"H5927\"* to|strong=\"H4191\"* Jacob|strong=\"H3290\"*.”" + }, + { + "verseNum": 25, + "text": "Joseph|strong=\"H3130\"* took|strong=\"H5927\"* an|strong=\"H7650\"* oath|strong=\"H7650\"* from|strong=\"H5927\"* the|strong=\"H6485\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying, “God will|strong=\"H3478\"* surely|strong=\"H6485\"* visit|strong=\"H6485\"* you|strong=\"H6485\"*, and|strong=\"H1121\"* you|strong=\"H6485\"* shall|strong=\"H1121\"* carry|strong=\"H5927\"* up|strong=\"H5927\"* my|strong=\"H5927\"* bones|strong=\"H6106\"* from|strong=\"H5927\"* here|strong=\"H2088\"*.”" + }, + { + "verseNum": 26, + "text": "So|strong=\"H4191\"* Joseph|strong=\"H3130\"* died|strong=\"H4191\"*, being|strong=\"H1121\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* ten|strong=\"H6235\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, and|strong=\"H3967\"* they|strong=\"H8141\"* embalmed|strong=\"H2590\"* him|strong=\"H4191\"*, and|strong=\"H3967\"* he|strong=\"H8141\"* was|strong=\"H1121\"* put|strong=\"H4191\"* in|strong=\"H8141\"* a|strong=\"H3068\"* coffin in|strong=\"H8141\"* Egypt|strong=\"H4714\"*." + } + ] + } + ] + }, + { + "name": "Exodus", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* these|strong=\"H1004\"* are|strong=\"H1121\"* the|strong=\"H8034\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H8034\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, who|strong=\"H1121\"* came|strong=\"H3478\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"* (every|strong=\"H3478\"* man|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H3478\"* household|strong=\"H1004\"* came|strong=\"H3478\"* with|strong=\"H1004\"* Jacob|strong=\"H3290\"*):" + }, + { + "verseNum": 2, + "text": "Reuben|strong=\"H7205\"*, Simeon|strong=\"H8095\"*, Levi|strong=\"H3878\"*, and|strong=\"H3063\"* Judah|strong=\"H3063\"*," + }, + { + "verseNum": 3, + "text": "Issachar|strong=\"H3485\"*, Zebulun|strong=\"H2074\"*, and|strong=\"H1144\"* Benjamin|strong=\"H1144\"*," + }, + { + "verseNum": 4, + "text": "Dan|strong=\"H1835\"* and|strong=\"H1410\"* Naphtali|strong=\"H5321\"*, Gad|strong=\"H1410\"* and|strong=\"H1410\"* Asher." + }, + { + "verseNum": 5, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* who|strong=\"H3605\"* came|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H3605\"* Jacob|strong=\"H3290\"*’s body|strong=\"H5315\"* were|strong=\"H1961\"* seventy|strong=\"H7657\"* souls|strong=\"H5315\"*, and|strong=\"H4714\"* Joseph|strong=\"H3130\"* was|strong=\"H1961\"* in|strong=\"H5315\"* Egypt|strong=\"H4714\"* already." + }, + { + "verseNum": 6, + "text": "Joseph|strong=\"H3130\"* died|strong=\"H4191\"*, as|strong=\"H3605\"* did all|strong=\"H3605\"* his|strong=\"H3605\"* brothers, and|strong=\"H4191\"* all|strong=\"H3605\"* that|strong=\"H3605\"* generation|strong=\"H1755\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H4390\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* fruitful|strong=\"H6509\"*, and|strong=\"H1121\"* increased|strong=\"H7235\"* abundantly|strong=\"H8317\"*, and|strong=\"H1121\"* multiplied|strong=\"H7235\"*, and|strong=\"H1121\"* grew|strong=\"H6509\"* exceedingly|strong=\"H3966\"* mighty|strong=\"H6105\"*; and|strong=\"H1121\"* the|strong=\"H4390\"* land was|strong=\"H3478\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* them|strong=\"H1121\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H4428\"* there|strong=\"H3045\"* arose|strong=\"H6965\"* a|strong=\"H3068\"* new|strong=\"H2319\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Egypt|strong=\"H4714\"*, who|strong=\"H4428\"* didn’t know|strong=\"H3045\"* Joseph|strong=\"H3130\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H4480\"* said to|strong=\"H3478\"* his|strong=\"H3478\"* people|strong=\"H5971\"*, “Behold|strong=\"H2009\"*,+ 1:9 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* the|strong=\"H4480\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* are|strong=\"H5971\"* more|strong=\"H4480\"* and|strong=\"H1121\"* mightier|strong=\"H6099\"* than|strong=\"H4480\"* we|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "Come|strong=\"H5927\"*, let|strong=\"H1961\"*’s deal|strong=\"H7235\"* wisely|strong=\"H2449\"* with|strong=\"H5921\"* them|strong=\"H5921\"*, lest|strong=\"H6435\"* they|strong=\"H3588\"* multiply|strong=\"H7235\"*, and|strong=\"H5927\"* it|strong=\"H1931\"* happen|strong=\"H1961\"* that|strong=\"H3588\"* when|strong=\"H3588\"* any|strong=\"H4480\"* war|strong=\"H4421\"* breaks|strong=\"H7122\"* out|strong=\"H4480\"*, they|strong=\"H3588\"* also|strong=\"H1571\"* join|strong=\"H3254\"* themselves|strong=\"H5921\"* to|strong=\"H5927\"* our|strong=\"H5921\"* enemies|strong=\"H8130\"* and|strong=\"H5927\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* us|strong=\"H3051\"*, and|strong=\"H5927\"* escape out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5921\"* land.”" + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H5921\"* they|strong=\"H5921\"* set|strong=\"H7760\"* taskmasters|strong=\"H8269\"* over|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H5921\"* afflict|strong=\"H6031\"* them|strong=\"H5921\"* with|strong=\"H5921\"* their|strong=\"H7760\"* burdens|strong=\"H5450\"*. They|strong=\"H5921\"* built|strong=\"H1129\"* storage|strong=\"H4543\"* cities|strong=\"H5892\"* for|strong=\"H5921\"* Pharaoh|strong=\"H6547\"*: Pithom|strong=\"H6619\"* and|strong=\"H5892\"* Raamses|strong=\"H7486\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H3651\"* the|strong=\"H6440\"* more|strong=\"H7235\"* they|strong=\"H3651\"* afflicted|strong=\"H6031\"* them|strong=\"H6440\"*, the|strong=\"H6440\"* more|strong=\"H7235\"* they|strong=\"H3651\"* multiplied|strong=\"H7235\"* and|strong=\"H1121\"* the|strong=\"H6440\"* more|strong=\"H7235\"* they|strong=\"H3651\"* spread|strong=\"H6555\"* out|strong=\"H6555\"*. They|strong=\"H3651\"* started to|strong=\"H3478\"* dread|strong=\"H6973\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5647\"* Egyptians|strong=\"H4713\"* ruthlessly made|strong=\"H5647\"* the|strong=\"H5647\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* serve|strong=\"H5647\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H7704\"* they|strong=\"H3605\"* made|strong=\"H5647\"* their|strong=\"H3605\"* lives|strong=\"H2416\"* bitter|strong=\"H4843\"* with|strong=\"H5647\"* hard|strong=\"H7186\"* service|strong=\"H5656\"* in|strong=\"H5656\"* mortar|strong=\"H2563\"* and|strong=\"H7704\"* in|strong=\"H5656\"* brick|strong=\"H3843\"*, and|strong=\"H7704\"* in|strong=\"H5656\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H7704\"* service|strong=\"H5656\"* in|strong=\"H5656\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, all|strong=\"H3605\"* their|strong=\"H3605\"* service|strong=\"H5656\"*, in|strong=\"H5656\"* which|strong=\"H7704\"* they|strong=\"H3605\"* ruthlessly made|strong=\"H5647\"* them|strong=\"H5647\"* serve|strong=\"H5647\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3205\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* spoke to|strong=\"H4714\"* the|strong=\"H3205\"* Hebrew|strong=\"H5680\"* midwives|strong=\"H3205\"*, of|strong=\"H4428\"* whom the|strong=\"H3205\"* name|strong=\"H8034\"* of|strong=\"H4428\"* the|strong=\"H3205\"* one|strong=\"H8034\"* was|strong=\"H8034\"* Shiphrah|strong=\"H8236\"*, and|strong=\"H4428\"* the|strong=\"H3205\"* name|strong=\"H8034\"* of|strong=\"H4428\"* the|strong=\"H3205\"* other|strong=\"H8145\"* Puah|strong=\"H6326\"*," + }, + { + "verseNum": 16, + "text": "and|strong=\"H1121\"* he|strong=\"H1931\"* said, “When|strong=\"H7200\"* you|strong=\"H5921\"* perform the|strong=\"H5921\"* duty|strong=\"H5921\"* of|strong=\"H1121\"* a|strong=\"H3068\"* midwife|strong=\"H3205\"* to|strong=\"H4191\"* the|strong=\"H5921\"* Hebrew|strong=\"H5680\"* women|strong=\"H1323\"*, and|strong=\"H1121\"* see|strong=\"H7200\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* birth|strong=\"H3205\"* stool, if|strong=\"H7200\"* it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, then|strong=\"H7200\"* you|strong=\"H5921\"* shall|strong=\"H1121\"* kill|strong=\"H4191\"* him|strong=\"H3205\"*; but|strong=\"H7200\"* if|strong=\"H7200\"* it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* daughter|strong=\"H1323\"*, then|strong=\"H7200\"* she|strong=\"H1931\"* shall|strong=\"H1121\"* live|strong=\"H2425\"*.”" + }, + { + "verseNum": 17, + "text": "But|strong=\"H3808\"* the|strong=\"H6213\"* midwives|strong=\"H3205\"* feared|strong=\"H3372\"* God|strong=\"H3808\"*,+ 1:17 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* and|strong=\"H4428\"* didn’t do|strong=\"H6213\"* what|strong=\"H6213\"* the|strong=\"H6213\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* commanded|strong=\"H1696\"* them|strong=\"H6213\"*, but|strong=\"H3808\"* saved|strong=\"H2421\"* the|strong=\"H6213\"* baby boys|strong=\"H3206\"* alive|strong=\"H2421\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H6213\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* called|strong=\"H7121\"* for|strong=\"H7121\"* the|strong=\"H6213\"* midwives|strong=\"H3205\"*, and|strong=\"H4428\"* said|strong=\"H1697\"* to|strong=\"H6213\"* them|strong=\"H6213\"*, “Why|strong=\"H4069\"* have|strong=\"H1697\"* you|strong=\"H6213\"* done|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* and|strong=\"H4428\"* saved|strong=\"H2421\"* the|strong=\"H6213\"* boys|strong=\"H3206\"* alive|strong=\"H2421\"*?”" + }, + { + "verseNum": 19, + "text": "The|strong=\"H3588\"* midwives|strong=\"H3205\"* said to|strong=\"H3205\"* Pharaoh|strong=\"H6547\"*, “Because|strong=\"H3588\"* the|strong=\"H3588\"* Hebrew|strong=\"H5680\"* women|strong=\"H5680\"* aren’t like|strong=\"H3808\"* the|strong=\"H3588\"* Egyptian|strong=\"H4713\"* women|strong=\"H5680\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H2007\"* vigorous|strong=\"H2422\"* and|strong=\"H6547\"* give|strong=\"H3205\"* birth|strong=\"H3205\"* before|strong=\"H2962\"* the|strong=\"H3588\"* midwife|strong=\"H3205\"* comes to|strong=\"H3205\"* them|strong=\"H2007\"*.”" + }, + { + "verseNum": 20, + "text": "God|strong=\"H3190\"* dealt well|strong=\"H3190\"* with|strong=\"H5971\"* the|strong=\"H3205\"* midwives|strong=\"H3205\"*, and|strong=\"H5971\"* the|strong=\"H3205\"* people|strong=\"H5971\"* multiplied|strong=\"H7235\"*, and|strong=\"H5971\"* grew|strong=\"H7235\"* very|strong=\"H3966\"* mighty|strong=\"H6105\"*." + }, + { + "verseNum": 21, + "text": "Because|strong=\"H3588\"* the|strong=\"H3588\"* midwives|strong=\"H3205\"* feared|strong=\"H3372\"* God, he|strong=\"H3588\"* gave|strong=\"H3205\"* them|strong=\"H6213\"* families|strong=\"H1004\"*." + }, + { + "verseNum": 22, + "text": "Pharaoh|strong=\"H6547\"* commanded|strong=\"H6680\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, saying, “You|strong=\"H6680\"* shall|strong=\"H1121\"* cast|strong=\"H7993\"* every|strong=\"H3605\"* son|strong=\"H1121\"* who|strong=\"H3605\"* is|strong=\"H3605\"* born|strong=\"H3209\"* into|strong=\"H1323\"* the|strong=\"H3605\"* river|strong=\"H2975\"*, and|strong=\"H1121\"* every|strong=\"H3605\"* daughter|strong=\"H1323\"* you|strong=\"H6680\"* shall|strong=\"H1121\"* save|strong=\"H2421\"* alive|strong=\"H2421\"*.”" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* man of|strong=\"H1004\"* the|strong=\"H3947\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Levi|strong=\"H3878\"* went|strong=\"H3212\"* and|strong=\"H1004\"* took|strong=\"H3947\"* a|strong=\"H3068\"* daughter|strong=\"H1323\"* of|strong=\"H1004\"* Levi|strong=\"H3878\"* as|strong=\"H1004\"* his|strong=\"H3947\"* wife." + }, + { + "verseNum": 2, + "text": "The|strong=\"H7200\"* woman|strong=\"H3205\"* conceived|strong=\"H2029\"* and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*. When|strong=\"H3588\"* she|strong=\"H1931\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* a|strong=\"H3068\"* fine|strong=\"H2896\"* child|strong=\"H1121\"*, she|strong=\"H1931\"* hid|strong=\"H6845\"* him|strong=\"H3205\"* three|strong=\"H7969\"* months|strong=\"H3391\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"H5921\"* she|strong=\"H8193\"* could|strong=\"H3201\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* hide|strong=\"H6845\"* him|strong=\"H5921\"*, she|strong=\"H8193\"* took|strong=\"H3947\"* a|strong=\"H3068\"* papyrus|strong=\"H1573\"* basket|strong=\"H8392\"* for|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3947\"* coated it|strong=\"H7760\"* with|strong=\"H5921\"* tar|strong=\"H2564\"* and|strong=\"H3947\"* with|strong=\"H5921\"* pitch|strong=\"H2203\"*. She|strong=\"H8193\"* put|strong=\"H7760\"* the|strong=\"H5921\"* child|strong=\"H3206\"* in|strong=\"H5921\"* it|strong=\"H7760\"*, and|strong=\"H3947\"* laid|strong=\"H7760\"* it|strong=\"H7760\"* in|strong=\"H5921\"* the|strong=\"H5921\"* reeds|strong=\"H5488\"* by|strong=\"H5921\"* the|strong=\"H5921\"* river|strong=\"H2975\"*’s bank|strong=\"H8193\"*." + }, + { + "verseNum": 4, + "text": "His|strong=\"H3045\"* sister stood|strong=\"H3320\"* far|strong=\"H7350\"* off|strong=\"H7350\"*, to|strong=\"H6213\"* see|strong=\"H3045\"* what|strong=\"H4100\"* would|strong=\"H6213\"* be done|strong=\"H6213\"* to|strong=\"H6213\"* him|strong=\"H6213\"*." + }, + { + "verseNum": 5, + "text": "Pharaoh|strong=\"H6547\"*’s daughter|strong=\"H1323\"* came|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H1980\"* bathe|strong=\"H7364\"* at|strong=\"H5921\"* the|strong=\"H5921\"* river|strong=\"H2975\"*. Her|strong=\"H7971\"* maidens|strong=\"H5291\"* walked|strong=\"H1980\"* along|strong=\"H5921\"* by|strong=\"H3027\"* the|strong=\"H5921\"* riverside. She|strong=\"H5921\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* basket|strong=\"H8392\"* among|strong=\"H8432\"* the|strong=\"H5921\"* reeds|strong=\"H5488\"*, and|strong=\"H1980\"* sent|strong=\"H7971\"* her|strong=\"H7971\"* servant to|strong=\"H1980\"* get|strong=\"H3947\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "She|strong=\"H5921\"* opened|strong=\"H6605\"* it|strong=\"H5921\"*, and|strong=\"H7200\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* child|strong=\"H3206\"*, and|strong=\"H7200\"* behold|strong=\"H2009\"*, the|strong=\"H5921\"* baby cried|strong=\"H1058\"*. She|strong=\"H5921\"* had|strong=\"H2550\"* compassion|strong=\"H2550\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H7200\"* said, “This|strong=\"H2088\"* is|strong=\"H2088\"* one|strong=\"H2088\"* of|strong=\"H5921\"* the|strong=\"H5921\"* Hebrews|strong=\"H5680\"*’ children|strong=\"H3206\"*.”" + }, + { + "verseNum": 7, + "text": "Then|strong=\"H7121\"* his|strong=\"H7121\"* sister said|strong=\"H7121\"* to|strong=\"H3212\"* Pharaoh|strong=\"H6547\"*’s daughter|strong=\"H1323\"*, “Should|strong=\"H1323\"* I|strong=\"H4480\"* go|strong=\"H3212\"* and|strong=\"H3212\"* call|strong=\"H7121\"* a|strong=\"H3068\"* nurse|strong=\"H3243\"* for|strong=\"H7121\"* you|strong=\"H4480\"* from|strong=\"H4480\"* the|strong=\"H4480\"* Hebrew|strong=\"H5680\"* women|strong=\"H1323\"*, that|strong=\"H7121\"* she|strong=\"H7121\"* may|strong=\"H3206\"* nurse|strong=\"H3243\"* the|strong=\"H4480\"* child|strong=\"H3206\"* for|strong=\"H7121\"* you|strong=\"H4480\"*?”" + }, + { + "verseNum": 8, + "text": "Pharaoh|strong=\"H6547\"*’s daughter|strong=\"H1323\"* said|strong=\"H7121\"* to|strong=\"H3212\"* her|strong=\"H7121\"*, “Go|strong=\"H3212\"*.”" + }, + { + "verseNum": 9, + "text": "Pharaoh|strong=\"H6547\"*’s daughter|strong=\"H1323\"* said to|strong=\"H3212\"* her|strong=\"H5414\"*, “Take|strong=\"H3947\"* this|strong=\"H2088\"* child|strong=\"H3206\"* away|strong=\"H3947\"*, and|strong=\"H3212\"* nurse|strong=\"H3243\"* him|strong=\"H5414\"* for|strong=\"H5414\"* me|strong=\"H5414\"*, and|strong=\"H3212\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* your|strong=\"H5414\"* wages|strong=\"H7939\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H3588\"* child|strong=\"H3206\"* grew|strong=\"H1431\"*, and|strong=\"H1121\"* she|strong=\"H3588\"* brought|strong=\"H4872\"* him|strong=\"H7121\"* to|strong=\"H1961\"* Pharaoh|strong=\"H6547\"*’s daughter|strong=\"H1323\"*, and|strong=\"H1121\"* he|strong=\"H3588\"* became|strong=\"H1961\"* her|strong=\"H7121\"* son|strong=\"H1121\"*. She|strong=\"H3588\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Moses|strong=\"H4872\"*,+ 2:10 “Moses” sounds like the Hebrew for “draw out”.* and|strong=\"H1121\"* said|strong=\"H7121\"*, “Because|strong=\"H3588\"* I|strong=\"H3588\"* drew|strong=\"H4871\"* him|strong=\"H7121\"* out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H3588\"* water|strong=\"H4325\"*.”" + }, + { + "verseNum": 11, + "text": "In|strong=\"H3117\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, when|strong=\"H1961\"* Moses|strong=\"H4872\"* had|strong=\"H1961\"* grown|strong=\"H1431\"* up|strong=\"H1431\"*, he|strong=\"H3117\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* his|strong=\"H7200\"* brothers and|strong=\"H4872\"* saw|strong=\"H7200\"* their|strong=\"H1992\"* burdens|strong=\"H5450\"*. He|strong=\"H3117\"* saw|strong=\"H7200\"* an|strong=\"H1961\"* Egyptian|strong=\"H4713\"* striking|strong=\"H5221\"* a|strong=\"H3068\"* Hebrew|strong=\"H5680\"*, one|strong=\"H1961\"* of|strong=\"H3117\"* his|strong=\"H7200\"* brothers." + }, + { + "verseNum": 12, + "text": "He|strong=\"H3588\"* looked|strong=\"H7200\"* this|strong=\"H3541\"* way|strong=\"H3541\"* and|strong=\"H7200\"* that|strong=\"H3588\"* way|strong=\"H3541\"*, and|strong=\"H7200\"* when|strong=\"H3588\"* he|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* there|strong=\"H3541\"* was|strong=\"H5221\"* no|strong=\"H7200\"* one|strong=\"H3588\"*, he|strong=\"H3588\"* killed|strong=\"H5221\"* the|strong=\"H7200\"* Egyptian|strong=\"H4713\"*, and|strong=\"H7200\"* hid|strong=\"H2934\"* him|strong=\"H5221\"* in|strong=\"H7200\"* the|strong=\"H7200\"* sand|strong=\"H2344\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3117\"* went|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H5221\"* second|strong=\"H8145\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* behold|strong=\"H2009\"*, two|strong=\"H8147\"* men|strong=\"H7563\"* of|strong=\"H3117\"* the|strong=\"H5221\"* Hebrews|strong=\"H5680\"* were|strong=\"H3117\"* fighting|strong=\"H5327\"* with|strong=\"H3117\"* each|strong=\"H3117\"* other|strong=\"H8145\"*. He|strong=\"H3117\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H5221\"* who|strong=\"H7563\"* did|strong=\"H4100\"* the|strong=\"H5221\"* wrong|strong=\"H7563\"*, “Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3117\"* strike|strong=\"H5221\"* your|strong=\"H3318\"* fellow|strong=\"H7453\"*?”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H5921\"* said|strong=\"H1697\"*, “Who|strong=\"H4310\"* made|strong=\"H7760\"* you|strong=\"H5921\"* a|strong=\"H3068\"* prince|strong=\"H8269\"* and|strong=\"H4872\"* a|strong=\"H3068\"* judge|strong=\"H8199\"* over|strong=\"H5921\"* us|strong=\"H5921\"*? Do|strong=\"H1697\"* you|strong=\"H5921\"* plan|strong=\"H1697\"* to|strong=\"H5921\"* kill|strong=\"H2026\"* me|strong=\"H5921\"*, as|strong=\"H1697\"* you|strong=\"H5921\"* killed|strong=\"H2026\"* the|strong=\"H5921\"* Egyptian|strong=\"H4713\"*?”" + }, + { + "verseNum": 15, + "text": "Now|strong=\"H2088\"* when|strong=\"H8085\"* Pharaoh|strong=\"H6547\"* heard|strong=\"H8085\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*, he|strong=\"H5921\"* sought|strong=\"H1245\"* to|strong=\"H5921\"* kill|strong=\"H2026\"* Moses|strong=\"H4872\"*. But|strong=\"H8085\"* Moses|strong=\"H4872\"* fled|strong=\"H1272\"* from|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H1697\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H4872\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H1697\"* Midian|strong=\"H4080\"*, and|strong=\"H4872\"* he|strong=\"H5921\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* by|strong=\"H5921\"* a|strong=\"H3068\"* well." + }, + { + "verseNum": 16, + "text": "Now the|strong=\"H4390\"* priest|strong=\"H3548\"* of|strong=\"H1323\"* Midian|strong=\"H4080\"* had|strong=\"H3548\"* seven|strong=\"H7651\"* daughters|strong=\"H1323\"*. They|strong=\"H3548\"* came|strong=\"H1323\"* and|strong=\"H3548\"* drew|strong=\"H1802\"* water|strong=\"H8248\"*, and|strong=\"H3548\"* filled|strong=\"H4390\"* the|strong=\"H4390\"* troughs|strong=\"H7298\"* to|strong=\"H1323\"* water|strong=\"H8248\"* their|strong=\"H4390\"* father’s flock|strong=\"H6629\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H6965\"* shepherds|strong=\"H7462\"* came|strong=\"H4872\"* and|strong=\"H6965\"* drove|strong=\"H1644\"* them|strong=\"H1644\"* away|strong=\"H1644\"*; but Moses|strong=\"H4872\"* stood|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* helped|strong=\"H3467\"* them|strong=\"H1644\"*, and|strong=\"H6965\"* watered|strong=\"H8248\"* their|strong=\"H8248\"* flock|strong=\"H6629\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H3117\"* they|strong=\"H3117\"* came to|strong=\"H3117\"* Reuel|strong=\"H7467\"*, their|strong=\"H3117\"* father, he|strong=\"H3117\"* said, “How|strong=\"H4069\"* is|strong=\"H3117\"* it|strong=\"H3117\"* that|strong=\"H3117\"* you|strong=\"H3117\"* have|strong=\"H3117\"* returned so|strong=\"H4116\"* early today|strong=\"H3117\"*?”" + }, + { + "verseNum": 19, + "text": "They|strong=\"H1571\"* said, “An|strong=\"H1571\"* Egyptian|strong=\"H4713\"* delivered|strong=\"H5337\"* us|strong=\"H5337\"* out|strong=\"H5337\"* of|strong=\"H3027\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3027\"* shepherds|strong=\"H7462\"*, and|strong=\"H3027\"* moreover|strong=\"H1571\"* he|strong=\"H3027\"* drew|strong=\"H1802\"* water|strong=\"H8248\"* for|strong=\"H3027\"* us|strong=\"H5337\"*, and|strong=\"H3027\"* watered|strong=\"H8248\"* the|strong=\"H3027\"* flock|strong=\"H6629\"*.”" + }, + { + "verseNum": 20, + "text": "He|strong=\"H7121\"* said|strong=\"H7121\"* to|strong=\"H7121\"* his|strong=\"H7121\"* daughters|strong=\"H1323\"*, “Where|strong=\"H4100\"* is|strong=\"H2088\"* he|strong=\"H7121\"*? Why|strong=\"H4100\"* is|strong=\"H2088\"* it|strong=\"H7121\"* that|strong=\"H7121\"* you|strong=\"H4100\"* have|strong=\"H1323\"* left|strong=\"H5800\"* the|strong=\"H7121\"* man|strong=\"H2088\"*? Call|strong=\"H7121\"* him|strong=\"H7121\"*, that|strong=\"H7121\"* he|strong=\"H7121\"* may eat|strong=\"H3899\"* bread|strong=\"H3899\"*.”" + }, + { + "verseNum": 21, + "text": "Moses|strong=\"H4872\"* was|strong=\"H4872\"* content|strong=\"H2974\"* to|strong=\"H5414\"* dwell|strong=\"H3427\"* with|strong=\"H3427\"* the|strong=\"H5414\"* man. He|strong=\"H5414\"* gave|strong=\"H5414\"* Moses|strong=\"H4872\"* Zipporah|strong=\"H6855\"*, his|strong=\"H5414\"* daughter|strong=\"H1323\"*." + }, + { + "verseNum": 22, + "text": "She|strong=\"H3588\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H3588\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Gershom|strong=\"H1647\"*,+ 2:22 “Gershom” sounds like the Hebrew for “an alien there”.* for|strong=\"H3588\"* he|strong=\"H3588\"* said|strong=\"H7121\"*, “I|strong=\"H3588\"* have|strong=\"H1961\"* lived|strong=\"H1961\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner|strong=\"H5237\"* in|strong=\"H1121\"* a|strong=\"H3068\"* foreign|strong=\"H5237\"* land.”" + }, + { + "verseNum": 23, + "text": "In|strong=\"H3478\"* the|strong=\"H4480\"* course|strong=\"H4480\"* of|strong=\"H1121\"* those|strong=\"H1992\"* many|strong=\"H7227\"* days|strong=\"H3117\"*, the|strong=\"H4480\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* sighed because|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* bondage|strong=\"H5656\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* cried|strong=\"H2199\"*, and|strong=\"H1121\"* their|strong=\"H1992\"* cry|strong=\"H2199\"* came|strong=\"H1961\"* up|strong=\"H5927\"* to|strong=\"H3478\"* God because|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* bondage|strong=\"H5656\"*." + }, + { + "verseNum": 24, + "text": "God heard|strong=\"H8085\"* their|strong=\"H8085\"* groaning|strong=\"H5009\"*, and|strong=\"H8085\"* God remembered|strong=\"H2142\"* his|strong=\"H8085\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* Abraham, with|strong=\"H1285\"* Isaac|strong=\"H3327\"*, and|strong=\"H8085\"* with|strong=\"H1285\"* Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 25, + "text": "God saw|strong=\"H7200\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* God understood|strong=\"H3045\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* Moses|strong=\"H4872\"* was|strong=\"H1961\"* keeping|strong=\"H7462\"* the|strong=\"H4872\"* flock|strong=\"H6629\"* of|strong=\"H2022\"* Jethro|strong=\"H3503\"*, his|strong=\"H1961\"* father-in-law|strong=\"H2859\"*, the|strong=\"H4872\"* priest|strong=\"H3548\"* of|strong=\"H2022\"* Midian|strong=\"H4080\"*, and|strong=\"H4872\"* he|strong=\"H4872\"* led|strong=\"H5090\"* the|strong=\"H4872\"* flock|strong=\"H6629\"* to|strong=\"H1961\"* the|strong=\"H4872\"* back of|strong=\"H2022\"* the|strong=\"H4872\"* wilderness|strong=\"H4057\"*, and|strong=\"H4872\"* came|strong=\"H1961\"* to|strong=\"H1961\"* God’s mountain|strong=\"H2022\"*, to|strong=\"H1961\"* Horeb|strong=\"H2722\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"*’s+ 3:2 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* angel|strong=\"H4397\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* him|strong=\"H7200\"* in|strong=\"H3068\"* a|strong=\"H3068\"* flame|strong=\"H3827\"* of|strong=\"H3068\"* fire out|strong=\"H7200\"* of|strong=\"H3068\"* the|strong=\"H7200\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* a|strong=\"H3068\"* bush|strong=\"H5572\"*. He|strong=\"H3068\"* looked|strong=\"H7200\"*, and|strong=\"H3068\"* behold|strong=\"H2009\"*, the|strong=\"H7200\"* bush|strong=\"H5572\"* burned|strong=\"H1197\"* with|strong=\"H3068\"* fire, and|strong=\"H3068\"* the|strong=\"H7200\"* bush|strong=\"H5572\"* was|strong=\"H3068\"* not|strong=\"H7200\"* consumed|strong=\"H1197\"*." + }, + { + "verseNum": 3, + "text": "Moses|strong=\"H4872\"* said, “I|strong=\"H7200\"* will|strong=\"H3808\"* go|strong=\"H5493\"* now|strong=\"H4994\"*, and|strong=\"H4872\"* see|strong=\"H7200\"* this|strong=\"H2088\"* great|strong=\"H1419\"* sight|strong=\"H4758\"*, why|strong=\"H4069\"* the|strong=\"H7200\"* bush|strong=\"H5572\"* is|strong=\"H2088\"* not|strong=\"H3808\"* burned|strong=\"H1197\"*.”" + }, + { + "verseNum": 4, + "text": "When|strong=\"H3588\"* Yahweh|strong=\"H3068\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* he|strong=\"H3588\"* came|strong=\"H3068\"* over|strong=\"H3068\"* to|strong=\"H3068\"* see|strong=\"H7200\"*, God|strong=\"H3068\"* called|strong=\"H7121\"* to|strong=\"H3068\"* him|strong=\"H7121\"* out|strong=\"H7200\"* of|strong=\"H3068\"* the|strong=\"H7200\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H7200\"* bush|strong=\"H5572\"*, and|strong=\"H4872\"* said|strong=\"H7121\"*, “Moses|strong=\"H4872\"*! Moses|strong=\"H4872\"*!”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H1931\"* said, “Don’t come|strong=\"H7126\"* close|strong=\"H7126\"*. Take|strong=\"H5975\"* off|strong=\"H5921\"* your|strong=\"H5921\"* sandals|strong=\"H5275\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* place|strong=\"H4725\"* you|strong=\"H3588\"* are|strong=\"H7272\"* standing|strong=\"H5975\"* on|strong=\"H5921\"* is|strong=\"H1931\"* holy|strong=\"H6944\"* ground|strong=\"H4725\"*.”" + }, + { + "verseNum": 6, + "text": "Moreover|strong=\"H3588\"* he|strong=\"H3588\"* said, “I|strong=\"H3588\"* am the|strong=\"H6440\"* God of|strong=\"H6440\"* your|strong=\"H6440\"* father, the|strong=\"H6440\"* God of|strong=\"H6440\"* Abraham, the|strong=\"H6440\"* God of|strong=\"H6440\"* Isaac|strong=\"H3327\"*, and|strong=\"H4872\"* the|strong=\"H6440\"* God of|strong=\"H6440\"* Jacob|strong=\"H3290\"*.”" + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H8085\"*, “I|strong=\"H3588\"* have|strong=\"H3068\"* surely|strong=\"H3588\"* seen|strong=\"H7200\"* the|strong=\"H6440\"* affliction|strong=\"H6040\"* of|strong=\"H3068\"* my|strong=\"H8085\"* people|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* in|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* their|strong=\"H3068\"* cry|strong=\"H6818\"* because|strong=\"H3588\"* of|strong=\"H3068\"* their|strong=\"H3068\"* taskmasters|strong=\"H5065\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* their|strong=\"H3068\"* sorrows|strong=\"H4341\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H3027\"* have|strong=\"H3027\"* come|strong=\"H5927\"* down|strong=\"H3381\"* to|strong=\"H3381\"* deliver|strong=\"H5337\"* them|strong=\"H3027\"* out|strong=\"H4480\"* of|strong=\"H3027\"* the|strong=\"H4480\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H4480\"* Egyptians|strong=\"H4713\"*, and|strong=\"H3027\"* to|strong=\"H3381\"* bring|strong=\"H5927\"* them|strong=\"H3027\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H3027\"* that|strong=\"H1931\"* land|strong=\"H4725\"* to|strong=\"H3381\"* a|strong=\"H3068\"* good|strong=\"H2896\"* and|strong=\"H3027\"* large|strong=\"H7342\"* land|strong=\"H4725\"*, to|strong=\"H3381\"* a|strong=\"H3068\"* land|strong=\"H4725\"* flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H3027\"* honey|strong=\"H1706\"*; to|strong=\"H3381\"* the|strong=\"H4480\"* place|strong=\"H4725\"* of|strong=\"H3027\"* the|strong=\"H4480\"* Canaanite|strong=\"H3669\"*, the|strong=\"H4480\"* Hittite|strong=\"H2850\"*, the|strong=\"H4480\"* Amorite, the|strong=\"H4480\"* Perizzite|strong=\"H6522\"*, the|strong=\"H4480\"* Hivite|strong=\"H2340\"*, and|strong=\"H3027\"* the|strong=\"H4480\"* Jebusite|strong=\"H2983\"*." + }, + { + "verseNum": 9, + "text": "Now|strong=\"H6258\"*, behold|strong=\"H2009\"*, the|strong=\"H7200\"* cry|strong=\"H6818\"* of|strong=\"H1121\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* has|strong=\"H3478\"* come|strong=\"H3478\"* to|strong=\"H3478\"* me|strong=\"H7200\"*. Moreover|strong=\"H1571\"* I|strong=\"H2009\"* have|strong=\"H1121\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* oppression|strong=\"H3906\"* with|strong=\"H3478\"* which|strong=\"H3478\"* the|strong=\"H7200\"* Egyptians|strong=\"H4713\"* oppress|strong=\"H3905\"* them|strong=\"H7200\"*." + }, + { + "verseNum": 10, + "text": "Come|strong=\"H3318\"* now|strong=\"H6258\"* therefore|strong=\"H6258\"*, and|strong=\"H1121\"* I|strong=\"H6258\"* will|strong=\"H5971\"* send|strong=\"H7971\"* you|strong=\"H7971\"* to|strong=\"H3318\"* Pharaoh|strong=\"H6547\"*, that|strong=\"H5971\"* you|strong=\"H7971\"* may|strong=\"H5971\"* bring|strong=\"H3318\"* my|strong=\"H7971\"* people|strong=\"H5971\"*, the|strong=\"H7971\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, out|strong=\"H3318\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*.”" + }, + { + "verseNum": 11, + "text": "Moses|strong=\"H4872\"* said|strong=\"H3318\"* to|strong=\"H3318\"* God|strong=\"H4310\"*, “Who|strong=\"H4310\"* am I|strong=\"H3588\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* go|strong=\"H3212\"* to|strong=\"H3318\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H1121\"* that|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* bring|strong=\"H3318\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*?”" + }, + { + "verseNum": 12, + "text": "He|strong=\"H3588\"* said|strong=\"H3318\"*, “Certainly|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3588\"*. This|strong=\"H2088\"* will|strong=\"H1961\"* be|strong=\"H1961\"* the|strong=\"H5921\"* token to|strong=\"H3318\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* sent|strong=\"H7971\"* you|strong=\"H3588\"*: when|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* brought|strong=\"H3318\"* the|strong=\"H5921\"* people|strong=\"H5971\"* out|strong=\"H3318\"* of|strong=\"H2022\"* Egypt|strong=\"H4714\"*, you|strong=\"H3588\"* shall|strong=\"H5971\"* serve|strong=\"H5647\"* God|strong=\"H7971\"* on|strong=\"H5921\"* this|strong=\"H2088\"* mountain|strong=\"H2022\"*.”" + }, + { + "verseNum": 13, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3478\"* God|strong=\"H7971\"*, “Behold|strong=\"H2009\"*, when|strong=\"H7971\"* I|strong=\"H2009\"* come|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H7971\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell them|strong=\"H7971\"*, ‘The|strong=\"H7971\"* God|strong=\"H7971\"* of|strong=\"H1121\"* your|strong=\"H7971\"* fathers has|strong=\"H3478\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H3478\"* you|strong=\"H7971\"*,’ and|strong=\"H1121\"* they|strong=\"H4100\"* ask me|strong=\"H7971\"*, ‘What|strong=\"H4100\"* is|strong=\"H4100\"* his|strong=\"H7971\"* name|strong=\"H8034\"*?’ what|strong=\"H4100\"* should|strong=\"H4100\"* I|strong=\"H2009\"* tell them|strong=\"H7971\"*?”" + }, + { + "verseNum": 14, + "text": "God|strong=\"H7971\"* said to|strong=\"H3478\"* Moses|strong=\"H4872\"*, “I|strong=\"H3541\"* AM|strong=\"H1961\"* WHO|strong=\"H1121\"* I|strong=\"H3541\"* AM|strong=\"H1961\"*,” and|strong=\"H1121\"* he|strong=\"H7971\"* said, “You|strong=\"H7971\"* shall|strong=\"H1121\"* tell the|strong=\"H3541\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* this|strong=\"H3541\"*: ‘I|strong=\"H3541\"* AM|strong=\"H1961\"* has|strong=\"H1961\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H3478\"* you|strong=\"H7971\"*.’”" + }, + { + "verseNum": 15, + "text": "God|strong=\"H3068\"* said moreover|strong=\"H3541\"* to|strong=\"H3478\"* Moses|strong=\"H4872\"*, “You|strong=\"H7971\"* shall|strong=\"H3068\"* tell the|strong=\"H3541\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* this|strong=\"H2088\"*, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H1121\"* your|strong=\"H3068\"* fathers, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Abraham, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Isaac|strong=\"H3327\"*, and|strong=\"H1121\"* the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*, has|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H3478\"* you|strong=\"H7971\"*.’ This|strong=\"H2088\"* is|strong=\"H3068\"* my|strong=\"H3068\"* name|strong=\"H8034\"* forever|strong=\"H5769\"*, and|strong=\"H1121\"* this|strong=\"H2088\"* is|strong=\"H3068\"* my|strong=\"H3068\"* memorial|strong=\"H2143\"* to|strong=\"H3478\"* all|strong=\"H1755\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 16, + "text": "Go|strong=\"H3212\"* and|strong=\"H3478\"* gather|strong=\"H6213\"* the|strong=\"H7200\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* together, and|strong=\"H3478\"* tell|strong=\"H7200\"* them|strong=\"H6213\"*, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H7200\"* God|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers, the|strong=\"H7200\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Abraham, of|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H3478\"* of|strong=\"H3068\"* Jacob|strong=\"H3290\"*, has|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3478\"* me|strong=\"H7200\"*, saying, “I|strong=\"H4714\"* have|strong=\"H3068\"* surely|strong=\"H6485\"* visited|strong=\"H6485\"* you|strong=\"H6213\"*, and|strong=\"H3478\"* seen|strong=\"H7200\"* that|strong=\"H7200\"* which|strong=\"H3068\"* is|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3478\"* you|strong=\"H6213\"* in|strong=\"H3478\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H4714\"* have|strong=\"H4714\"* said, I|strong=\"H4714\"* will|strong=\"H4714\"* bring|strong=\"H5927\"* you|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H2100\"* of|strong=\"H5927\"* the|strong=\"H5927\"* affliction|strong=\"H6040\"* of|strong=\"H5927\"* Egypt|strong=\"H4714\"* to|strong=\"H5927\"* the|strong=\"H5927\"* land of|strong=\"H5927\"* the|strong=\"H5927\"* Canaanite|strong=\"H3669\"*, the|strong=\"H5927\"* Hittite|strong=\"H2850\"*, the|strong=\"H5927\"* Amorite, the|strong=\"H5927\"* Perizzite|strong=\"H6522\"*, the|strong=\"H5927\"* Hivite|strong=\"H2340\"*, and|strong=\"H2461\"* the|strong=\"H5927\"* Jebusite|strong=\"H2983\"*, to|strong=\"H5927\"* a|strong=\"H3068\"* land flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H2461\"* honey|strong=\"H1706\"*.”’" + }, + { + "verseNum": 18, + "text": "They|strong=\"H3117\"* will|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* your|strong=\"H3068\"* voice|strong=\"H6963\"*. You|strong=\"H5921\"* shall|strong=\"H3068\"* come|strong=\"H3212\"*, you|strong=\"H5921\"* and|strong=\"H3478\"* the|strong=\"H5921\"* elders|strong=\"H2205\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*, and|strong=\"H3478\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* tell|strong=\"H8085\"* him|strong=\"H5921\"*, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H4428\"* the|strong=\"H5921\"* Hebrews|strong=\"H5680\"*, has|strong=\"H3068\"* met|strong=\"H7136\"* with|strong=\"H3068\"* us|strong=\"H4994\"*. Now|strong=\"H6258\"* please|strong=\"H4994\"* let|strong=\"H4994\"* us|strong=\"H4994\"* go|strong=\"H3212\"* three|strong=\"H7969\"* days|strong=\"H3117\"*’ journey|strong=\"H1870\"* into|strong=\"H3212\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*, that|strong=\"H3117\"* we|strong=\"H3068\"* may|strong=\"H4994\"* sacrifice|strong=\"H2076\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, our|strong=\"H3068\"* God|strong=\"H3068\"*.’" + }, + { + "verseNum": 19, + "text": "I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* won’t give|strong=\"H5414\"* you|strong=\"H3588\"* permission to|strong=\"H1980\"* go|strong=\"H1980\"*, no|strong=\"H3808\"*, not|strong=\"H3808\"* by|strong=\"H3027\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 20, + "text": "I|strong=\"H3651\"* will|strong=\"H3027\"* reach|strong=\"H7971\"* out|strong=\"H7971\"* my|strong=\"H3605\"* hand|strong=\"H3027\"* and|strong=\"H7971\"* strike|strong=\"H5221\"* Egypt|strong=\"H4713\"* with|strong=\"H6213\"* all|strong=\"H3605\"* my|strong=\"H3605\"* wonders|strong=\"H6381\"* which|strong=\"H3605\"* I|strong=\"H3651\"* will|strong=\"H3027\"* do|strong=\"H6213\"* among|strong=\"H7130\"* them|strong=\"H7971\"*, and|strong=\"H7971\"* after|strong=\"H7971\"* that|strong=\"H3605\"* he|strong=\"H3651\"* will|strong=\"H3027\"* let|strong=\"H7971\"* you|strong=\"H3605\"* go|strong=\"H7971\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"H3588\"* will|strong=\"H1961\"* give|strong=\"H5414\"* this|strong=\"H2088\"* people|strong=\"H5971\"* favor|strong=\"H2580\"* in|strong=\"H3212\"* the|strong=\"H3588\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H3588\"* Egyptians|strong=\"H4713\"*, and|strong=\"H3212\"* it|strong=\"H5414\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H3588\"* when|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H3212\"*, you|strong=\"H3588\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* go|strong=\"H3212\"* empty-handed|strong=\"H7387\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H5921\"* every|strong=\"H7760\"* woman|strong=\"H1323\"* shall|strong=\"H1121\"* ask|strong=\"H7592\"* of|strong=\"H1121\"* her|strong=\"H5921\"* neighbor|strong=\"H7934\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* her|strong=\"H5921\"* who|strong=\"H1121\"* visits her|strong=\"H5921\"* house|strong=\"H1004\"*, jewels|strong=\"H3627\"* of|strong=\"H1121\"* silver|strong=\"H3701\"*, jewels|strong=\"H3627\"* of|strong=\"H1121\"* gold|strong=\"H2091\"*, and|strong=\"H1121\"* clothing|strong=\"H8071\"*. You|strong=\"H5921\"* shall|strong=\"H1121\"* put|strong=\"H7760\"* them|strong=\"H5921\"* on|strong=\"H5921\"* your|strong=\"H5921\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* on|strong=\"H5921\"* your|strong=\"H5921\"* daughters|strong=\"H1323\"*. You|strong=\"H5921\"* shall|strong=\"H1121\"* plunder|strong=\"H5337\"* the|strong=\"H5921\"* Egyptians|strong=\"H4713\"*.”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Moses|strong=\"H4872\"* answered|strong=\"H6030\"*, “But|strong=\"H3588\"*, behold|strong=\"H2005\"*, they|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* believe me|strong=\"H7200\"*, nor|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* say|strong=\"H6963\"*, ‘Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* you|strong=\"H3588\"*.’”" + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H3027\"*, “What|strong=\"H2088\"* is|strong=\"H3068\"* that|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*?”" + }, + { + "verseNum": 3, + "text": "He|strong=\"H6440\"* said, “Throw|strong=\"H7993\"* it|strong=\"H6440\"* on|strong=\"H1961\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*.”" + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Stretch|strong=\"H7971\"* out|strong=\"H7971\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H4872\"* take|strong=\"H2388\"* it|strong=\"H1961\"* by|strong=\"H3027\"* the|strong=\"H3068\"* tail|strong=\"H2180\"*.”" + }, + { + "verseNum": 5, + "text": "“This|strong=\"H7200\"* is|strong=\"H3068\"* so|strong=\"H4616\"* that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H3068\"* believe that|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H7200\"* God|strong=\"H3068\"* of|strong=\"H3068\"* their|strong=\"H3068\"* fathers, the|strong=\"H7200\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Abraham, the|strong=\"H7200\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H3068\"* the|strong=\"H7200\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Jacob|strong=\"H3290\"*, has|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H3318\"* furthermore|strong=\"H5750\"* to|strong=\"H3318\"* him|strong=\"H3027\"*, “Now|strong=\"H4994\"* put|strong=\"H3318\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* inside|strong=\"H3027\"* your|strong=\"H3068\"* cloak.”" + }, + { + "verseNum": 7, + "text": "He|strong=\"H3027\"* said|strong=\"H3318\"*, “Put|strong=\"H7725\"* your|strong=\"H7725\"* hand|strong=\"H3027\"* inside|strong=\"H3027\"* your|strong=\"H7725\"* cloak again|strong=\"H7725\"*.”" + }, + { + "verseNum": 8, + "text": "“It|strong=\"H1961\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, if|strong=\"H1961\"* they|strong=\"H3808\"* will|strong=\"H1961\"* not|strong=\"H3808\"* believe you|strong=\"H3808\"* or|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H1961\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* first|strong=\"H7223\"* sign, that|strong=\"H8085\"* they|strong=\"H3808\"* will|strong=\"H1961\"* believe the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* latter sign." + }, + { + "verseNum": 9, + "text": "It|strong=\"H1961\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, if|strong=\"H1961\"* they|strong=\"H3808\"* will|strong=\"H1961\"* not|strong=\"H3808\"* believe even|strong=\"H1571\"* these|strong=\"H8085\"* two|strong=\"H8147\"* signs or|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H1961\"* your|strong=\"H3947\"* voice|strong=\"H6963\"*, that|strong=\"H8085\"* you|strong=\"H3947\"* shall|strong=\"H3808\"* take|strong=\"H3947\"* of|strong=\"H6963\"* the|strong=\"H8085\"* water|strong=\"H4325\"* of|strong=\"H6963\"* the|strong=\"H8085\"* river|strong=\"H2975\"*, and|strong=\"H6963\"* pour|strong=\"H8210\"* it|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H8085\"* dry|strong=\"H3004\"* land|strong=\"H3004\"*. The|strong=\"H8085\"* water|strong=\"H4325\"* which|strong=\"H4325\"* you|strong=\"H3947\"* take|strong=\"H3947\"* out|strong=\"H8210\"* of|strong=\"H6963\"* the|strong=\"H8085\"* river|strong=\"H2975\"* will|strong=\"H1961\"* become|strong=\"H1961\"* blood|strong=\"H1818\"* on|strong=\"H1961\"* the|strong=\"H8085\"* dry|strong=\"H3004\"* land|strong=\"H3004\"*.”" + }, + { + "verseNum": 10, + "text": "Moses|strong=\"H4872\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*, “O|strong=\"H3068\"* Lord|strong=\"H3068\"*,+ 4:10 The word translated “Lord” is “Adonai”.* I|strong=\"H3588\"* am|strong=\"H3068\"* not|strong=\"H3808\"* eloquent|strong=\"H1697\"*, neither|strong=\"H3808\"* before|strong=\"H3808\"* now|strong=\"H3588\"*, nor|strong=\"H3808\"* since|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* slow|strong=\"H3515\"* of|strong=\"H3068\"* speech|strong=\"H1697\"*, and|strong=\"H4872\"* of|strong=\"H3068\"* a|strong=\"H3068\"* slow|strong=\"H3515\"* tongue|strong=\"H3956\"*.”" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H6310\"* to|strong=\"H3068\"* him|strong=\"H7760\"*, “Who|strong=\"H4310\"* made|strong=\"H7760\"* man|strong=\"H2795\"*’s mouth|strong=\"H6310\"*? Or|strong=\"H3808\"* who|strong=\"H4310\"* makes|strong=\"H7760\"* one|strong=\"H3808\"* mute, or|strong=\"H3808\"* deaf|strong=\"H2795\"*, or|strong=\"H3808\"* seeing|strong=\"H6493\"*, or|strong=\"H3808\"* blind|strong=\"H5787\"*? Isn’t it|strong=\"H7760\"* I|strong=\"H7760\"*, Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 12, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* go|strong=\"H3212\"*, and|strong=\"H3212\"* I|strong=\"H6258\"* will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H5973\"* your|strong=\"H1961\"* mouth|strong=\"H6310\"*, and|strong=\"H3212\"* teach|strong=\"H3384\"* you|strong=\"H5973\"* what|strong=\"H6310\"* you|strong=\"H5973\"* shall|strong=\"H6310\"* speak|strong=\"H1696\"*.”" + }, + { + "verseNum": 13, + "text": "Moses said, “Oh|strong=\"H4994\"*, Lord, please|strong=\"H4994\"* send|strong=\"H7971\"* someone else|strong=\"H3027\"*.”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H7125\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* he|strong=\"H1931\"* said|strong=\"H1696\"*, “What|strong=\"H3045\"* about|strong=\"H3045\"* Aaron, your|strong=\"H3068\"* brother, the|strong=\"H7200\"* Levite|strong=\"H3881\"*? I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* he|strong=\"H1931\"* can|strong=\"H7200\"* speak|strong=\"H1696\"* well|strong=\"H1571\"*. Also|strong=\"H1571\"*, behold|strong=\"H2009\"*, he|strong=\"H1931\"* is|strong=\"H3068\"* coming|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H1696\"* meet|strong=\"H7125\"* you|strong=\"H3588\"*. When|strong=\"H3588\"* he|strong=\"H1931\"* sees|strong=\"H7200\"* you|strong=\"H3588\"*, he|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H3808\"* glad|strong=\"H8055\"* in|strong=\"H3068\"* his|strong=\"H3068\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H6213\"* shall|strong=\"H6310\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H6213\"*, and|strong=\"H6213\"* put|strong=\"H7760\"* the|strong=\"H6213\"* words|strong=\"H1697\"* in|strong=\"H6213\"* his|strong=\"H7760\"* mouth|strong=\"H6310\"*. I|strong=\"H7760\"* will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H5973\"* your|strong=\"H7760\"* mouth|strong=\"H6310\"*, and|strong=\"H6213\"* with|strong=\"H5973\"* his|strong=\"H7760\"* mouth|strong=\"H6310\"*, and|strong=\"H6213\"* will|strong=\"H1961\"* teach|strong=\"H3384\"* you|strong=\"H6213\"* what|strong=\"H1697\"* you|strong=\"H6213\"* shall|strong=\"H6310\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H1961\"* spokesman|strong=\"H6310\"* to|strong=\"H1696\"* the|strong=\"H1961\"* people|strong=\"H5971\"*. It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H5971\"* he|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* to|strong=\"H1696\"* you|strong=\"H1696\"* a|strong=\"H3068\"* mouth|strong=\"H6310\"*, and|strong=\"H5971\"* you|strong=\"H1696\"* will|strong=\"H1961\"* be|strong=\"H1961\"* to|strong=\"H1696\"* him|strong=\"H1931\"* as|strong=\"H1961\"* God." + }, + { + "verseNum": 17, + "text": "You|strong=\"H3947\"* shall|strong=\"H3027\"* take|strong=\"H3947\"* this|strong=\"H2088\"* rod|strong=\"H4294\"* in|strong=\"H6213\"* your|strong=\"H3947\"* hand|strong=\"H3027\"*, with|strong=\"H6213\"* which|strong=\"H2088\"* you|strong=\"H3947\"* shall|strong=\"H3027\"* do|strong=\"H6213\"* the|strong=\"H3947\"* signs.”" + }, + { + "verseNum": 18, + "text": "Moses|strong=\"H4872\"* went|strong=\"H3212\"* and|strong=\"H4872\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Jethro|strong=\"H3503\"* his|strong=\"H7725\"* father-in-law|strong=\"H2859\"*, and|strong=\"H4872\"* said to|strong=\"H7725\"* him|strong=\"H7725\"*, “Please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* go|strong=\"H3212\"* and|strong=\"H4872\"* return|strong=\"H7725\"* to|strong=\"H7725\"* my|strong=\"H7200\"* brothers who|strong=\"H2416\"* are|strong=\"H4714\"* in|strong=\"H3212\"* Egypt|strong=\"H4714\"*, and|strong=\"H4872\"* see|strong=\"H7200\"* whether|strong=\"H7200\"* they|strong=\"H7965\"* are|strong=\"H4714\"* still|strong=\"H5750\"* alive|strong=\"H2416\"*.”" + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H7725\"* Moses|strong=\"H4872\"* in|strong=\"H3068\"* Midian|strong=\"H4080\"*, “Go|strong=\"H3212\"*, return|strong=\"H7725\"* into|strong=\"H7725\"* Egypt|strong=\"H4714\"*; for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* who|strong=\"H3605\"* sought|strong=\"H1245\"* your|strong=\"H3068\"* life|strong=\"H5315\"* are|strong=\"H3068\"* dead|strong=\"H4191\"*.”" + }, + { + "verseNum": 20, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* his|strong=\"H3947\"* wife and|strong=\"H1121\"* his|strong=\"H3947\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* set|strong=\"H7392\"* them|strong=\"H5921\"* on|strong=\"H5921\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"*, and|strong=\"H1121\"* he|strong=\"H3027\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*. Moses|strong=\"H4872\"* took|strong=\"H3947\"* God|strong=\"H3027\"*’s rod|strong=\"H4294\"* in|strong=\"H5921\"* his|strong=\"H3947\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H7725\"* Moses|strong=\"H4872\"*, “When|strong=\"H7200\"* you|strong=\"H6440\"* go|strong=\"H3212\"* back|strong=\"H7725\"* into|strong=\"H7725\"* Egypt|strong=\"H4714\"*, see|strong=\"H7200\"* that|strong=\"H5971\"* you|strong=\"H6440\"* do|strong=\"H6213\"* before|strong=\"H6440\"* Pharaoh|strong=\"H6547\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wonders|strong=\"H4159\"* which|strong=\"H3068\"* I|strong=\"H7760\"* have|strong=\"H3068\"* put|strong=\"H7760\"* in|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, but|strong=\"H3808\"* I|strong=\"H7760\"* will|strong=\"H3068\"* harden|strong=\"H2388\"* his|strong=\"H3605\"* heart|strong=\"H3820\"* and|strong=\"H4872\"* he|strong=\"H6213\"* will|strong=\"H3068\"* not|strong=\"H3808\"* let|strong=\"H7971\"* the|strong=\"H3605\"* people|strong=\"H5971\"* go|strong=\"H3212\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H3478\"* shall|strong=\"H3068\"* tell Pharaoh|strong=\"H6547\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, Israel|strong=\"H3478\"* is|strong=\"H3068\"* my|strong=\"H3068\"* son|strong=\"H1121\"*, my|strong=\"H3068\"* firstborn|strong=\"H1060\"*," + }, + { + "verseNum": 23, + "text": "and|strong=\"H1121\"* I|strong=\"H2009\"* have|strong=\"H1121\"* said to|strong=\"H7971\"* you|strong=\"H7971\"*, “Let|strong=\"H7971\"* my|strong=\"H7971\"* son|strong=\"H1121\"* go|strong=\"H7971\"*, that|strong=\"H1121\"* he|strong=\"H7971\"* may|strong=\"H1121\"* serve|strong=\"H5647\"* me|strong=\"H7971\"*;” and|strong=\"H1121\"* you|strong=\"H7971\"* have|strong=\"H1121\"* refused|strong=\"H3985\"* to|strong=\"H7971\"* let|strong=\"H7971\"* him|strong=\"H7971\"* go|strong=\"H7971\"*. Behold|strong=\"H2009\"*, I|strong=\"H2009\"* will|strong=\"H1121\"* kill|strong=\"H2026\"* your|strong=\"H7971\"* firstborn|strong=\"H1060\"* son|strong=\"H1121\"*.’”" + }, + { + "verseNum": 24, + "text": "On|strong=\"H1870\"* the|strong=\"H3068\"* way|strong=\"H1870\"* at|strong=\"H3068\"* a|strong=\"H3068\"* lodging|strong=\"H4411\"* place|strong=\"H4411\"*, Yahweh|strong=\"H3068\"* met|strong=\"H6298\"* Moses and|strong=\"H3068\"* wanted|strong=\"H1245\"* to|strong=\"H4191\"* kill|strong=\"H4191\"* him|strong=\"H4191\"*." + }, + { + "verseNum": 25, + "text": "Then|strong=\"H3947\"* Zipporah|strong=\"H6855\"* took|strong=\"H3947\"* a|strong=\"H3068\"* flint|strong=\"H6864\"*, and|strong=\"H1121\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H3588\"* foreskin|strong=\"H6190\"* of|strong=\"H1121\"* her|strong=\"H3947\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* cast|strong=\"H5060\"* it|strong=\"H3588\"* at|strong=\"H1121\"* his|strong=\"H3947\"* feet|strong=\"H7272\"*; and|strong=\"H1121\"* she|strong=\"H3588\"* said, “Surely|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1121\"* a|strong=\"H3068\"* bridegroom|strong=\"H2860\"* of|strong=\"H1121\"* blood|strong=\"H1818\"* to|strong=\"H1121\"* me|strong=\"H3947\"*.”" + }, + { + "verseNum": 26, + "text": "So|strong=\"H4480\"* he|strong=\"H4480\"* let|strong=\"H7503\"* him|strong=\"H7503\"* alone|strong=\"H7503\"*. Then she said, “You|strong=\"H4480\"* are|strong=\"H1818\"* a|strong=\"H3068\"* bridegroom|strong=\"H2860\"* of|strong=\"H4480\"* blood|strong=\"H1818\"*,” because|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* circumcision|strong=\"H4139\"*." + }, + { + "verseNum": 27, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3212\"* Aaron, “Go|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"* to|strong=\"H3212\"* meet|strong=\"H7125\"* Moses|strong=\"H4872\"*.”" + }, + { + "verseNum": 28, + "text": "Moses|strong=\"H4872\"* told|strong=\"H5046\"* Aaron all|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"* with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* sent|strong=\"H7971\"* him|strong=\"H7971\"*, and|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* signs with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* instructed|strong=\"H6680\"* him|strong=\"H7971\"*." + }, + { + "verseNum": 29, + "text": "Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron went|strong=\"H3212\"* and|strong=\"H1121\"* gathered|strong=\"H3478\"* together all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 30, + "text": "Aaron spoke|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* did|strong=\"H6213\"* the|strong=\"H3605\"* signs in|strong=\"H3068\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H8085\"* people|strong=\"H5971\"* believed, and|strong=\"H1121\"* when|strong=\"H3588\"* they|strong=\"H3588\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* visited|strong=\"H6485\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3068\"* seen|strong=\"H7200\"* their|strong=\"H3068\"* affliction|strong=\"H6040\"*, then|strong=\"H8085\"* they|strong=\"H3588\"* bowed|strong=\"H7812\"* their|strong=\"H3068\"* heads|strong=\"H6915\"* and|strong=\"H1121\"* worshiped|strong=\"H7812\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Afterward Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron came|strong=\"H3478\"*, and|strong=\"H4872\"* said to|strong=\"H3478\"* Pharaoh|strong=\"H6547\"*, “This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘Let|strong=\"H7971\"* my|strong=\"H3068\"* people|strong=\"H5971\"* go|strong=\"H7971\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* may|strong=\"H3068\"* hold a|strong=\"H3068\"* feast|strong=\"H2287\"* to|strong=\"H3478\"* me|strong=\"H7971\"* in|strong=\"H3478\"* the|strong=\"H3541\"* wilderness|strong=\"H4057\"*.’”" + }, + { + "verseNum": 2, + "text": "Pharaoh|strong=\"H6547\"* said|strong=\"H8085\"*, “Who|strong=\"H4310\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3045\"* I|strong=\"H3045\"* should|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* his|strong=\"H3068\"* voice|strong=\"H6963\"* to|strong=\"H3478\"* let|strong=\"H7971\"* Israel|strong=\"H3478\"* go|strong=\"H7971\"*? I|strong=\"H3045\"* don’t know|strong=\"H3045\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3478\"* moreover|strong=\"H1571\"* I|strong=\"H3045\"* will|strong=\"H3068\"* not|strong=\"H3808\"* let|strong=\"H7971\"* Israel|strong=\"H3478\"* go|strong=\"H7971\"*.”" + }, + { + "verseNum": 3, + "text": "They|strong=\"H3117\"* said, “The|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Hebrews|strong=\"H5680\"* has|strong=\"H3068\"* met|strong=\"H7122\"* with|strong=\"H3068\"* us|strong=\"H4994\"*. Please|strong=\"H4994\"* let|strong=\"H4994\"* us|strong=\"H4994\"* go|strong=\"H3212\"* three|strong=\"H7969\"* days|strong=\"H3117\"*’ journey|strong=\"H1870\"* into|strong=\"H3212\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*, and|strong=\"H3068\"* sacrifice|strong=\"H2076\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, our|strong=\"H3068\"* God|strong=\"H3068\"*, lest|strong=\"H6435\"* he|strong=\"H3117\"* fall|strong=\"H6293\"* on|strong=\"H5921\"* us|strong=\"H4994\"* with|strong=\"H3068\"* pestilence|strong=\"H1698\"*, or|strong=\"H6435\"* with|strong=\"H3068\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*.”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H4872\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* said to|strong=\"H3212\"* them, “Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H4100\"*, Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron, take|strong=\"H3212\"* the|strong=\"H4872\"* people|strong=\"H5971\"* from|strong=\"H3212\"* their|strong=\"H4714\"* work|strong=\"H4639\"*? Get|strong=\"H3212\"* back|strong=\"H6544\"* to|strong=\"H3212\"* your|strong=\"H4100\"* burdens|strong=\"H5450\"*!”" + }, + { + "verseNum": 5, + "text": "Pharaoh|strong=\"H6547\"* said, “Behold|strong=\"H2005\"*, the|strong=\"H6258\"* people|strong=\"H5971\"* of|strong=\"H5971\"* the|strong=\"H6258\"* land are|strong=\"H5971\"* now|strong=\"H6258\"* many|strong=\"H7227\"*, and|strong=\"H5971\"* you|strong=\"H5971\"* make|strong=\"H7673\"* them rest|strong=\"H7673\"* from|strong=\"H7673\"* their|strong=\"H6258\"* burdens|strong=\"H5450\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H3117\"* same|strong=\"H1931\"* day|strong=\"H3117\"* Pharaoh|strong=\"H6547\"* commanded|strong=\"H6680\"* the|strong=\"H3117\"* taskmasters|strong=\"H5065\"* of|strong=\"H3117\"* the|strong=\"H3117\"* people|strong=\"H5971\"* and|strong=\"H3117\"* their|strong=\"H3117\"* officers|strong=\"H7860\"*, saying," + }, + { + "verseNum": 7, + "text": "“You|strong=\"H5414\"* shall|strong=\"H5971\"* no|strong=\"H3808\"* longer|strong=\"H3254\"* give|strong=\"H5414\"* the|strong=\"H5414\"* people|strong=\"H5971\"* straw|strong=\"H8401\"* to|strong=\"H3212\"* make|strong=\"H5414\"* brick|strong=\"H3843\"*, as|strong=\"H5971\"* before|strong=\"H3808\"*. Let|strong=\"H5414\"* them|strong=\"H5414\"* go|strong=\"H3212\"* and|strong=\"H3212\"* gather|strong=\"H7197\"* straw|strong=\"H8401\"* for|strong=\"H5414\"* themselves|strong=\"H1992\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H3588\"* shall|strong=\"H3808\"* require from|strong=\"H4480\"* them|strong=\"H1992\"* the|strong=\"H5921\"* number of|strong=\"H4480\"* the|strong=\"H5921\"* bricks|strong=\"H3843\"* which|strong=\"H1992\"* they|strong=\"H1992\"* made|strong=\"H6213\"* before|strong=\"H4480\"*. You|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* diminish|strong=\"H1639\"* anything|strong=\"H1992\"* of|strong=\"H4480\"* it|strong=\"H7760\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* idle|strong=\"H7503\"*. Therefore|strong=\"H3651\"* they|strong=\"H1992\"* cry|strong=\"H6817\"*, saying, ‘Let|strong=\"H7503\"*’s go|strong=\"H3212\"* and|strong=\"H3212\"* sacrifice|strong=\"H2076\"* to|strong=\"H3212\"* our|strong=\"H5921\"* God|strong=\"H3808\"*.’" + }, + { + "verseNum": 9, + "text": "Let heavier|strong=\"H3513\"* work|strong=\"H5656\"* be|strong=\"H1697\"* laid|strong=\"H3513\"* on|strong=\"H5921\"* the|strong=\"H5921\"* men|strong=\"H6213\"*, that|strong=\"H1697\"* they|strong=\"H5921\"* may|strong=\"H6213\"* labor|strong=\"H5656\"* in|strong=\"H5921\"* it|strong=\"H5921\"*. Don’t let them|strong=\"H5921\"* pay|strong=\"H8159\"* any|strong=\"H6213\"* attention|strong=\"H8159\"* to|strong=\"H5921\"* lying|strong=\"H8267\"* words|strong=\"H1697\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H5414\"* taskmasters|strong=\"H5065\"* of|strong=\"H5971\"* the|strong=\"H5414\"* people|strong=\"H5971\"* went|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H3318\"* their|strong=\"H5414\"* officers|strong=\"H7860\"*, and|strong=\"H5971\"* they|strong=\"H5971\"* spoke to|strong=\"H3318\"* the|strong=\"H5414\"* people|strong=\"H5971\"*, saying, “This|strong=\"H3541\"* is|strong=\"H5971\"* what|strong=\"H3541\"* Pharaoh|strong=\"H6547\"* says|strong=\"H3541\"*: ‘I|strong=\"H5414\"* will|strong=\"H5971\"* not|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* straw|strong=\"H8401\"*." + }, + { + "verseNum": 11, + "text": "Go|strong=\"H3212\"* yourselves, get|strong=\"H3947\"* straw|strong=\"H8401\"* where you|strong=\"H3588\"* can|strong=\"H3947\"* find|strong=\"H4672\"* it|strong=\"H3588\"*, for|strong=\"H3588\"* nothing|strong=\"H1697\"* of|strong=\"H1697\"* your|strong=\"H3947\"* work|strong=\"H5656\"* shall|strong=\"H1697\"* be|strong=\"H1697\"* diminished|strong=\"H1639\"*.’”" + }, + { + "verseNum": 12, + "text": "So|strong=\"H6327\"* the|strong=\"H3605\"* people|strong=\"H5971\"* were|strong=\"H5971\"* scattered|strong=\"H6327\"* abroad|strong=\"H6327\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H5971\"* Egypt|strong=\"H4714\"* to|strong=\"H4714\"* gather|strong=\"H7197\"* stubble|strong=\"H7179\"* for|strong=\"H4714\"* straw|strong=\"H8401\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3117\"* taskmasters|strong=\"H5065\"* were|strong=\"H1961\"* urgent saying|strong=\"H1697\"*, “Fulfill|strong=\"H3615\"* your|strong=\"H1961\"* work|strong=\"H4639\"* quota|strong=\"H4639\"* daily|strong=\"H3117\"*, as|strong=\"H1697\"* when|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* straw|strong=\"H8401\"*!”" + }, + { + "verseNum": 14, + "text": "The|strong=\"H5921\"* officers|strong=\"H7860\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, whom Pharaoh|strong=\"H6547\"*’s taskmasters|strong=\"H5065\"* had|strong=\"H3478\"* set|strong=\"H7760\"* over|strong=\"H5921\"* them|strong=\"H5921\"*, were|strong=\"H3478\"* beaten|strong=\"H5221\"*, and|strong=\"H1121\"* were|strong=\"H3478\"* asked, “Why|strong=\"H4069\"* haven’t you|strong=\"H5921\"* fulfilled|strong=\"H3615\"* your|strong=\"H5921\"* quota both|strong=\"H1571\"* yesterday|strong=\"H8543\"* and|strong=\"H1121\"* today|strong=\"H3117\"*, in|strong=\"H5921\"* making|strong=\"H3835\"* brick|strong=\"H3835\"* as|strong=\"H3117\"* before|strong=\"H5921\"*?”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H6213\"* the|strong=\"H3541\"* officers|strong=\"H7860\"* of|strong=\"H1121\"* the|strong=\"H3541\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"* and|strong=\"H1121\"* cried|strong=\"H6817\"* to|strong=\"H3478\"* Pharaoh|strong=\"H6547\"*, saying, “Why|strong=\"H4100\"* do|strong=\"H6213\"* you|strong=\"H6213\"* deal|strong=\"H6213\"* this|strong=\"H6213\"* way|strong=\"H3541\"* with|strong=\"H6213\"* your|strong=\"H6213\"* servants|strong=\"H5650\"*?" + }, + { + "verseNum": 16, + "text": "No|strong=\"H6213\"* straw|strong=\"H8401\"* is|strong=\"H2009\"* given|strong=\"H5414\"* to|strong=\"H6213\"* your|strong=\"H5414\"* servants|strong=\"H5650\"*, and|strong=\"H5971\"* they|strong=\"H6213\"* tell us|strong=\"H5414\"*, ‘Make|strong=\"H6213\"* brick|strong=\"H3843\"*!’ and|strong=\"H5971\"* behold|strong=\"H2009\"*, your|strong=\"H5414\"* servants|strong=\"H5650\"* are|strong=\"H5971\"* beaten|strong=\"H5221\"*; but|strong=\"H2009\"* the|strong=\"H5414\"* fault|strong=\"H2398\"* is|strong=\"H2009\"* in|strong=\"H6213\"* your|strong=\"H5414\"* own|strong=\"H5971\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 17, + "text": "But|strong=\"H3651\"* Pharaoh said|strong=\"H3651\"*, “You|strong=\"H5921\"* are|strong=\"H3068\"* idle|strong=\"H7503\"*! You|strong=\"H5921\"* are|strong=\"H3068\"* idle|strong=\"H7503\"*! Therefore|strong=\"H3651\"* you|strong=\"H5921\"* say, ‘Let|strong=\"H7503\"*’s go|strong=\"H3212\"* and|strong=\"H3068\"* sacrifice|strong=\"H2076\"* to|strong=\"H3212\"* Yahweh|strong=\"H3068\"*.’" + }, + { + "verseNum": 18, + "text": "Go|strong=\"H3212\"* therefore|strong=\"H6258\"* now|strong=\"H6258\"*, and|strong=\"H3212\"* work|strong=\"H5647\"*; for|strong=\"H5414\"* no|strong=\"H3808\"* straw|strong=\"H8401\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* given|strong=\"H5414\"* to|strong=\"H3212\"* you|strong=\"H5414\"*; yet|strong=\"H6258\"* you|strong=\"H5414\"* shall|strong=\"H3808\"* deliver|strong=\"H5414\"* the|strong=\"H5414\"* same number of|strong=\"H5647\"* bricks|strong=\"H3843\"*!”" + }, + { + "verseNum": 19, + "text": "The|strong=\"H7200\"* officers|strong=\"H7860\"* of|strong=\"H1121\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* saw|strong=\"H7200\"* that|strong=\"H7200\"* they|strong=\"H3117\"* were|strong=\"H3478\"* in|strong=\"H3478\"* trouble|strong=\"H7451\"* when|strong=\"H3117\"* it|strong=\"H7200\"* was|strong=\"H3478\"* said|strong=\"H1697\"*, “You|strong=\"H3117\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* diminish|strong=\"H1639\"* anything|strong=\"H1697\"* from|strong=\"H3478\"* your|strong=\"H7200\"* daily|strong=\"H3117\"* quota of|strong=\"H1121\"* bricks|strong=\"H3843\"*!”" + }, + { + "verseNum": 20, + "text": "They|strong=\"H3318\"* met|strong=\"H6293\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron, who|strong=\"H6547\"* stood|strong=\"H5324\"* along the|strong=\"H3318\"* way|strong=\"H7125\"*, as|strong=\"H3318\"* they|strong=\"H3318\"* came|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"H3068\"* said to|strong=\"H3068\"* them|strong=\"H5414\"*, “May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* look|strong=\"H7200\"* at|strong=\"H5921\"* you|strong=\"H5414\"* and|strong=\"H3068\"* judge|strong=\"H8199\"*, because|strong=\"H5921\"* you|strong=\"H5414\"* have|strong=\"H3068\"* made|strong=\"H5414\"* us|strong=\"H5414\"* a|strong=\"H3068\"* stench to|strong=\"H3068\"* be|strong=\"H3027\"* abhorred in|strong=\"H5921\"* the|strong=\"H5921\"* eyes|strong=\"H5869\"* of|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* eyes|strong=\"H5869\"* of|strong=\"H3068\"* his|strong=\"H5414\"* servants|strong=\"H5650\"*, to|strong=\"H3068\"* put|strong=\"H5414\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* in|strong=\"H5921\"* their|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H3068\"* kill|strong=\"H2026\"* us|strong=\"H5414\"*!”" + }, + { + "verseNum": 22, + "text": "Moses|strong=\"H4872\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, and|strong=\"H4872\"* said, “Lord|strong=\"H3068\"*, why|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H7971\"* brought|strong=\"H7725\"* trouble|strong=\"H2088\"* on|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"*? Why|strong=\"H4100\"* is|strong=\"H3068\"* it|strong=\"H7725\"* that|strong=\"H5971\"* you|strong=\"H7971\"* have|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"*?" + }, + { + "verseNum": 23, + "text": "For|strong=\"H8034\"* since I|strong=\"H2088\"* came|strong=\"H5971\"* to|strong=\"H1696\"* Pharaoh|strong=\"H6547\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* in|strong=\"H1696\"* your|strong=\"H3808\"* name|strong=\"H8034\"*, he|strong=\"H3808\"* has|strong=\"H2088\"* brought|strong=\"H7489\"* trouble|strong=\"H2088\"* on|strong=\"H1696\"* this|strong=\"H2088\"* people|strong=\"H5971\"*. You|strong=\"H3808\"* have|strong=\"H5971\"* not|strong=\"H3808\"* rescued|strong=\"H5337\"* your|strong=\"H3808\"* people|strong=\"H5971\"* at|strong=\"H3808\"* all|strong=\"H5337\"*!”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Now|strong=\"H6258\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* see|strong=\"H7200\"* what|strong=\"H6213\"* I|strong=\"H3588\"* will|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, for|strong=\"H3588\"* by|strong=\"H3027\"* a|strong=\"H3068\"* strong|strong=\"H2389\"* hand|strong=\"H3027\"* he|strong=\"H3588\"* shall|strong=\"H3068\"* let|strong=\"H7971\"* them|strong=\"H7971\"* go|strong=\"H7971\"*, and|strong=\"H4872\"* by|strong=\"H3027\"* a|strong=\"H3068\"* strong|strong=\"H2389\"* hand|strong=\"H3027\"* he|strong=\"H3588\"* shall|strong=\"H3068\"* drive|strong=\"H1644\"* them|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H3068\"* his|strong=\"H3068\"* land.”" + }, + { + "verseNum": 2, + "text": "God|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H4872\"*, “I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H3045\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* Abraham, to|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* Jacob|strong=\"H3290\"*, as|strong=\"H3068\"* God|strong=\"H3068\"* Almighty|strong=\"H7706\"*; but|strong=\"H3808\"* by|strong=\"H3068\"* my|strong=\"H3068\"* name|strong=\"H8034\"* Yahweh|strong=\"H3068\"* I|strong=\"H3045\"* was|strong=\"H3068\"* not|strong=\"H3808\"* known|strong=\"H3045\"* to|strong=\"H3068\"* them|strong=\"H7200\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H5414\"* have|strong=\"H1571\"* also|strong=\"H1571\"* established|strong=\"H6965\"* my|strong=\"H5414\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* them|strong=\"H5414\"*, to|strong=\"H5414\"* give|strong=\"H5414\"* them|strong=\"H5414\"* the|strong=\"H5414\"* land of|strong=\"H1285\"* Canaan|strong=\"H3667\"*, the|strong=\"H5414\"* land of|strong=\"H1285\"* their|strong=\"H5414\"* travels, in|strong=\"H5414\"* which|strong=\"H1285\"* they|strong=\"H1571\"* lived|strong=\"H1481\"* as|strong=\"H1571\"* aliens|strong=\"H1481\"*." + }, + { + "verseNum": 5, + "text": "Moreover|strong=\"H1571\"* I|strong=\"H4714\"* have|strong=\"H1121\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* groaning|strong=\"H5009\"* of|strong=\"H1121\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, whom the|strong=\"H8085\"* Egyptians|strong=\"H4714\"* keep|strong=\"H5647\"* in|strong=\"H3478\"* bondage|strong=\"H5647\"*, and|strong=\"H1121\"* I|strong=\"H4714\"* have|strong=\"H1121\"* remembered|strong=\"H2142\"* my|strong=\"H8085\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3651\"* tell the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, ‘I|strong=\"H3651\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* I|strong=\"H3651\"* will|strong=\"H3068\"* bring|strong=\"H3318\"* you|strong=\"H3651\"* out|strong=\"H3318\"* from|strong=\"H3318\"* under|strong=\"H8478\"* the|strong=\"H3068\"* burdens|strong=\"H5450\"* of|strong=\"H1121\"* the|strong=\"H3068\"* Egyptians|strong=\"H4714\"*, and|strong=\"H1121\"* I|strong=\"H3651\"* will|strong=\"H3068\"* rid|strong=\"H5337\"* you|strong=\"H3651\"* out|strong=\"H3318\"* of|strong=\"H1121\"* their|strong=\"H3068\"* bondage|strong=\"H5656\"*, and|strong=\"H1121\"* I|strong=\"H3651\"* will|strong=\"H3068\"* redeem|strong=\"H1350\"* you|strong=\"H3651\"* with|strong=\"H3068\"* an|strong=\"H3318\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*, and|strong=\"H1121\"* with|strong=\"H3068\"* great|strong=\"H1419\"* judgments|strong=\"H8201\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* take|strong=\"H3947\"* you|strong=\"H3588\"* to|strong=\"H3318\"* myself|strong=\"H3045\"* for|strong=\"H3588\"* a|strong=\"H3068\"* people|strong=\"H5971\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* your|strong=\"H3068\"* God|strong=\"H3068\"*; and|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H5971\"* brings|strong=\"H3318\"* you|strong=\"H3588\"* out|strong=\"H3318\"* from|strong=\"H3318\"* under|strong=\"H8478\"* the|strong=\"H3588\"* burdens|strong=\"H5450\"* of|strong=\"H3068\"* the|strong=\"H3588\"* Egyptians|strong=\"H4714\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5414\"* will|strong=\"H3068\"* bring|strong=\"H5375\"* you|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* land which|strong=\"H3068\"* I|strong=\"H5414\"* swore|strong=\"H5375\"* to|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* Abraham|strong=\"H5375\"*, to|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* Jacob|strong=\"H3290\"*; and|strong=\"H3068\"* I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* you|strong=\"H5414\"* for|strong=\"H3027\"* a|strong=\"H3068\"* heritage|strong=\"H4181\"*: I|strong=\"H5414\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* so|strong=\"H3651\"* to|strong=\"H1696\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, but|strong=\"H3808\"* they|strong=\"H3651\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* for|strong=\"H1121\"* anguish|strong=\"H7115\"* of|strong=\"H1121\"* spirit|strong=\"H7307\"*, and|strong=\"H1121\"* for|strong=\"H1121\"* cruel|strong=\"H7186\"* bondage|strong=\"H5656\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 11, + "text": "“Go|strong=\"H7971\"* in|strong=\"H3478\"*, speak|strong=\"H1696\"* to|strong=\"H1696\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, that|strong=\"H3478\"* he|strong=\"H7971\"* let|strong=\"H7971\"* the|strong=\"H7971\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* go|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H1121\"* his|strong=\"H7971\"* land.”" + }, + { + "verseNum": 12, + "text": "Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1696\"*, “Behold|strong=\"H2005\"*, the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* haven’t listened|strong=\"H8085\"* to|strong=\"H1696\"* me|strong=\"H6440\"*. How|strong=\"H8085\"* then|strong=\"H1696\"* shall|strong=\"H3068\"* Pharaoh|strong=\"H6547\"* listen|strong=\"H8085\"* to|strong=\"H1696\"* me|strong=\"H6440\"*, when|strong=\"H8085\"* I|strong=\"H2005\"* have|strong=\"H3068\"* uncircumcised|strong=\"H6189\"* lips|strong=\"H8193\"*?”" + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* to|strong=\"H1696\"* Aaron, and|strong=\"H1121\"* gave|strong=\"H6680\"* them|strong=\"H6680\"* a|strong=\"H3068\"* command|strong=\"H6680\"* to|strong=\"H1696\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* to|strong=\"H1696\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, to|strong=\"H1696\"* bring|strong=\"H3318\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3068\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 14, + "text": "These|strong=\"H1004\"* are|strong=\"H1121\"* the|strong=\"H1121\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* their fathers’ houses|strong=\"H1004\"*. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* the|strong=\"H1121\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*: Hanoch|strong=\"H2585\"*, and|strong=\"H1121\"* Pallu|strong=\"H6396\"*, Hezron|strong=\"H2696\"*, and|strong=\"H1121\"* Carmi|strong=\"H3756\"*; these|strong=\"H1004\"* are|strong=\"H1121\"* the|strong=\"H1121\"* families|strong=\"H4940\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*: Jemuel|strong=\"H3223\"*, and|strong=\"H1121\"* Jamin|strong=\"H3226\"*, and|strong=\"H1121\"* Ohad, and|strong=\"H1121\"* Jachin|strong=\"H3199\"*, and|strong=\"H1121\"* Zohar|strong=\"H6714\"*, and|strong=\"H1121\"* Shaul|strong=\"H7586\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* Canaanite|strong=\"H3669\"* woman|strong=\"H3669\"*; these are|strong=\"H1121\"* the|strong=\"H1121\"* families|strong=\"H4940\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*." + }, + { + "verseNum": 16, + "text": "These are|strong=\"H1121\"* the|strong=\"H8034\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H8034\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"* according to|strong=\"H1121\"* their|strong=\"H4847\"* generations|strong=\"H8435\"*: Gershon|strong=\"H1648\"*, and|strong=\"H3967\"* Kohath|strong=\"H6955\"*, and|strong=\"H3967\"* Merari|strong=\"H4847\"*; and|strong=\"H3967\"* the|strong=\"H8034\"* years|strong=\"H8141\"* of|strong=\"H1121\"* the|strong=\"H8034\"* life|strong=\"H2416\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"* were|strong=\"H1121\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* thirty-seven|strong=\"H7970\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershon|strong=\"H1648\"*: Libni|strong=\"H3845\"* and|strong=\"H1121\"* Shimei|strong=\"H8096\"*, according to|strong=\"H1121\"* their families|strong=\"H4940\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"*: Amram|strong=\"H6019\"*, and|strong=\"H3967\"* Izhar|strong=\"H3324\"*, and|strong=\"H3967\"* Hebron|strong=\"H2275\"*, and|strong=\"H3967\"* Uzziel|strong=\"H5816\"*; and|strong=\"H3967\"* the|strong=\"H1121\"* years|strong=\"H8141\"* of|strong=\"H1121\"* the|strong=\"H1121\"* life|strong=\"H2416\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"* were|strong=\"H1121\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* thirty-three|strong=\"H7970\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*: Mahli|strong=\"H4249\"* and|strong=\"H1121\"* Mushi|strong=\"H4187\"*. These are|strong=\"H1121\"* the|strong=\"H1121\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Levites|strong=\"H3878\"* according to|strong=\"H1121\"* their|strong=\"H4847\"* generations|strong=\"H8435\"*." + }, + { + "verseNum": 20, + "text": "Amram|strong=\"H6019\"* took|strong=\"H3947\"* Jochebed|strong=\"H3115\"* his|strong=\"H3947\"* father|strong=\"H3205\"*’s sister|strong=\"H1733\"* to|strong=\"H3205\"* himself as|strong=\"H8141\"* wife|strong=\"H2416\"*; and|strong=\"H3967\"* she|strong=\"H3967\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* Aaron and|strong=\"H3967\"* Moses|strong=\"H4872\"*. The|strong=\"H3947\"* years|strong=\"H8141\"* of|strong=\"H8141\"* the|strong=\"H3947\"* life|strong=\"H2416\"* of|strong=\"H8141\"* Amram|strong=\"H6019\"* were|strong=\"H3205\"* one|strong=\"H2416\"* hundred|strong=\"H3967\"* thirty-seven|strong=\"H7970\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Izhar|strong=\"H3324\"*: Korah|strong=\"H7141\"*, and|strong=\"H1121\"* Nepheg|strong=\"H5298\"*, and|strong=\"H1121\"* Zichri|strong=\"H2147\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Uzziel|strong=\"H5816\"*: Mishael|strong=\"H4332\"*, Elzaphan, and|strong=\"H1121\"* Sithri|strong=\"H5644\"*." + }, + { + "verseNum": 23, + "text": "Aaron took|strong=\"H3947\"* Elisheba, the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Amminadab|strong=\"H5992\"*, the|strong=\"H3947\"* sister of|strong=\"H1323\"* Nahshon|strong=\"H5177\"*, as|strong=\"H1323\"* his|strong=\"H3947\"* wife; and|strong=\"H5070\"* she bore|strong=\"H3205\"* him|strong=\"H3205\"* Nadab|strong=\"H5070\"* and|strong=\"H5070\"* Abihu, Eleazar and|strong=\"H5070\"* Ithamar." + }, + { + "verseNum": 24, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Korah|strong=\"H7141\"*: Assir, Elkanah, and|strong=\"H1121\"* Abiasaph; these are|strong=\"H1121\"* the|strong=\"H1121\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Korahites|strong=\"H7145\"*." + }, + { + "verseNum": 25, + "text": "Eleazar Aaron’s son|strong=\"H1121\"* took|strong=\"H3947\"* one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3947\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* Putiel|strong=\"H6317\"* as|strong=\"H1121\"* his|strong=\"H3947\"* wife; and|strong=\"H1121\"* she bore|strong=\"H3205\"* him|strong=\"H3205\"* Phinehas|strong=\"H6372\"*. These|strong=\"H3947\"* are|strong=\"H1121\"* the|strong=\"H3947\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3947\"* fathers|strong=\"H3205\"*’ houses of|strong=\"H1121\"* the|strong=\"H3947\"* Levites|strong=\"H3881\"* according to|strong=\"H3205\"* their|strong=\"H3947\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 26, + "text": "These|strong=\"H1931\"* are|strong=\"H1121\"* that|strong=\"H1931\"* Aaron and|strong=\"H1121\"* Moses|strong=\"H4872\"* to|strong=\"H3318\"* whom Yahweh|strong=\"H3068\"* said|strong=\"H3318\"*, “Bring|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* from|strong=\"H3318\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"* according|strong=\"H5921\"* to|strong=\"H3318\"* their|strong=\"H3068\"* armies|strong=\"H6635\"*.”" + }, + { + "verseNum": 27, + "text": "These|strong=\"H1992\"* are|strong=\"H1992\"* those|strong=\"H1992\"* who|strong=\"H1931\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, to|strong=\"H1696\"* bring|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* from|strong=\"H3318\"* Egypt|strong=\"H4714\"*. These|strong=\"H1992\"* are|strong=\"H1992\"* that|strong=\"H1931\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron." + }, + { + "verseNum": 28, + "text": "On|strong=\"H3117\"* the|strong=\"H3068\"* day|strong=\"H3117\"* when|strong=\"H1961\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* in|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 29, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “I|strong=\"H4714\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Tell|strong=\"H1696\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H4714\"* tell|strong=\"H1696\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 30, + "text": "Moses|strong=\"H4872\"* said|strong=\"H8085\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H3068\"* of|strong=\"H3068\"* uncircumcised|strong=\"H6189\"* lips|strong=\"H8193\"*, and|strong=\"H4872\"* how|strong=\"H8085\"* shall|strong=\"H3068\"* Pharaoh|strong=\"H6547\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* me|strong=\"H6440\"*?”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Behold|strong=\"H7200\"*, I|strong=\"H5414\"* have|strong=\"H1961\"* made|strong=\"H5414\"* you|strong=\"H5414\"* as|strong=\"H1961\"* God|strong=\"H3068\"* to|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*; and|strong=\"H4872\"* Aaron your|strong=\"H3068\"* brother shall|strong=\"H3068\"* be|strong=\"H1961\"* your|strong=\"H3068\"* prophet|strong=\"H5030\"*." + }, + { + "verseNum": 2, + "text": "You|strong=\"H6680\"* shall|strong=\"H1121\"* speak|strong=\"H1696\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H6680\"* command|strong=\"H6680\"* you|strong=\"H6680\"*; and|strong=\"H1121\"* Aaron your|strong=\"H3605\"* brother shall|strong=\"H1121\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* Pharaoh|strong=\"H6547\"*, that|strong=\"H3605\"* he|strong=\"H3605\"* let|strong=\"H7971\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* go|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H1121\"* his|strong=\"H3605\"* land." + }, + { + "verseNum": 3, + "text": "I|strong=\"H4714\"* will|strong=\"H4714\"* harden|strong=\"H7185\"* Pharaoh|strong=\"H6547\"*’s heart|strong=\"H3820\"*, and|strong=\"H4714\"* multiply|strong=\"H7235\"* my|strong=\"H7235\"* signs and|strong=\"H4714\"* my|strong=\"H7235\"* wonders|strong=\"H4159\"* in|strong=\"H4714\"* the|strong=\"H7235\"* land of|strong=\"H3820\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3808\"* Pharaoh|strong=\"H6547\"* will|strong=\"H5971\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3318\"* you|strong=\"H5414\"*, so|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H5971\"* lay|strong=\"H5414\"* my|strong=\"H8085\"* hand|strong=\"H3027\"* on|strong=\"H3027\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* bring|strong=\"H3318\"* out|strong=\"H3318\"* my|strong=\"H8085\"* armies|strong=\"H6635\"*, my|strong=\"H8085\"* people|strong=\"H5971\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H8085\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"* by|strong=\"H3027\"* great|strong=\"H1419\"* judgments|strong=\"H8201\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5921\"* Egyptians|strong=\"H4714\"* shall|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* when|strong=\"H3588\"* I|strong=\"H3588\"* stretch|strong=\"H5186\"* out|strong=\"H3318\"* my|strong=\"H3068\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* bring|strong=\"H3318\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* out|strong=\"H3318\"* from|strong=\"H3318\"* among|strong=\"H8432\"* them|strong=\"H5921\"*.”" + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron did|strong=\"H6213\"* so|strong=\"H3651\"*. As|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* them|strong=\"H6213\"*, so|strong=\"H3651\"* they|strong=\"H3651\"* did|strong=\"H6213\"*." + }, + { + "verseNum": 7, + "text": "Moses|strong=\"H4872\"* was|strong=\"H4872\"* eighty|strong=\"H8084\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, and|strong=\"H1121\"* Aaron eighty-three|strong=\"H8084\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, when|strong=\"H1696\"* they|strong=\"H8141\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H3068\"* Aaron, saying," + }, + { + "verseNum": 9, + "text": "“When|strong=\"H3588\"* Pharaoh|strong=\"H6547\"* speaks|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"*, saying|strong=\"H1696\"*, ‘Perform|strong=\"H5414\"* a|strong=\"H3068\"* miracle|strong=\"H4159\"*!’ then|strong=\"H1961\"* you|strong=\"H3588\"* shall|strong=\"H6547\"* tell|strong=\"H1696\"* Aaron, ‘Take|strong=\"H3947\"* your|strong=\"H5414\"* rod|strong=\"H4294\"*, and|strong=\"H6440\"* cast|strong=\"H7993\"* it|strong=\"H5414\"* down|strong=\"H7993\"* before|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H6440\"* it|strong=\"H5414\"* will|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* serpent|strong=\"H8577\"*.’”" + }, + { + "verseNum": 10, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron went|strong=\"H4872\"* in|strong=\"H3068\"* to|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H4872\"* they|strong=\"H3651\"* did|strong=\"H6213\"* so|strong=\"H3651\"*, as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"*. Aaron cast|strong=\"H7993\"* down|strong=\"H7993\"* his|strong=\"H3068\"* rod|strong=\"H4294\"* before|strong=\"H6440\"* Pharaoh|strong=\"H6547\"* and|strong=\"H4872\"* before|strong=\"H6440\"* his|strong=\"H3068\"* servants|strong=\"H5650\"*, and|strong=\"H4872\"* it|strong=\"H6213\"* became|strong=\"H1961\"* a|strong=\"H3068\"* serpent|strong=\"H8577\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H3651\"* Pharaoh|strong=\"H6547\"* also|strong=\"H1571\"* called|strong=\"H7121\"* for|strong=\"H7121\"* the|strong=\"H6213\"* wise|strong=\"H2450\"* men|strong=\"H2450\"* and|strong=\"H4714\"* the|strong=\"H6213\"* sorcerers|strong=\"H3784\"*. They|strong=\"H1992\"* also|strong=\"H1571\"*, the|strong=\"H6213\"* magicians|strong=\"H2748\"* of|strong=\"H6213\"* Egypt|strong=\"H4714\"*, did|strong=\"H6213\"* the|strong=\"H6213\"* same|strong=\"H3651\"* thing|strong=\"H3651\"* with|strong=\"H6213\"* their|strong=\"H1992\"* enchantments|strong=\"H3858\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H1961\"* they each cast|strong=\"H7993\"* down|strong=\"H7993\"* their|strong=\"H1961\"* rods|strong=\"H4294\"*, and|strong=\"H4294\"* they became|strong=\"H1961\"* serpents|strong=\"H8577\"*; but|strong=\"H1961\"* Aaron’s rod|strong=\"H4294\"* swallowed|strong=\"H1104\"* up|strong=\"H1104\"* their|strong=\"H1961\"* rods|strong=\"H4294\"*." + }, + { + "verseNum": 13, + "text": "Pharaoh|strong=\"H6547\"*’s heart|strong=\"H3820\"* was|strong=\"H3068\"* hardened|strong=\"H2388\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1696\"* them|strong=\"H2388\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Pharaoh|strong=\"H6547\"*’s heart|strong=\"H3820\"* is|strong=\"H3068\"* stubborn|strong=\"H3515\"*. He|strong=\"H3068\"* refuses|strong=\"H3985\"* to|strong=\"H3068\"* let|strong=\"H7971\"* the|strong=\"H3068\"* people|strong=\"H5971\"* go|strong=\"H7971\"*." + }, + { + "verseNum": 15, + "text": "Go|strong=\"H3212\"* to|strong=\"H3318\"* Pharaoh|strong=\"H6547\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*. Behold|strong=\"H2009\"*, he|strong=\"H3027\"* is|strong=\"H3027\"* going|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5921\"* water|strong=\"H4325\"*. You|strong=\"H5921\"* shall|strong=\"H3027\"* stand|strong=\"H5324\"* by|strong=\"H3027\"* the|strong=\"H5921\"* river|strong=\"H2975\"*’s bank|strong=\"H8193\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* him|strong=\"H5921\"*. You|strong=\"H5921\"* shall|strong=\"H3027\"* take|strong=\"H3947\"* the|strong=\"H5921\"* rod|strong=\"H4294\"* which|strong=\"H4325\"* was|strong=\"H3027\"* turned|strong=\"H2015\"* to|strong=\"H3318\"* a|strong=\"H3068\"* serpent|strong=\"H5175\"* in|strong=\"H5921\"* your|strong=\"H5921\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 16, + "text": "You|strong=\"H7971\"* shall|strong=\"H3068\"* tell|strong=\"H8085\"* him|strong=\"H7971\"*, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H8085\"* Hebrews|strong=\"H5680\"*, has|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H5704\"* you|strong=\"H7971\"*, saying, “Let|strong=\"H7971\"* my|strong=\"H8085\"* people|strong=\"H5971\"* go|strong=\"H7971\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* may|strong=\"H3068\"* serve|strong=\"H5647\"* me|strong=\"H7971\"* in|strong=\"H3068\"* the|strong=\"H8085\"* wilderness|strong=\"H4057\"*. Behold|strong=\"H2009\"*, until|strong=\"H5704\"* now|strong=\"H2009\"* you|strong=\"H7971\"* haven’t listened|strong=\"H8085\"*.”" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “In|strong=\"H5921\"* this|strong=\"H2063\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Behold|strong=\"H2009\"*: I|strong=\"H3588\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* with|strong=\"H3068\"* the|strong=\"H5921\"* rod|strong=\"H4294\"* that|strong=\"H3588\"* is|strong=\"H3068\"* in|strong=\"H5921\"* my|strong=\"H3068\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* which|strong=\"H3068\"* are|strong=\"H3027\"* in|strong=\"H5921\"* the|strong=\"H5921\"* river|strong=\"H2975\"*, and|strong=\"H3068\"* they|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H3027\"* turned|strong=\"H2015\"* to|strong=\"H3068\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H4480\"* fish|strong=\"H1710\"* that|strong=\"H4325\"* are|strong=\"H4325\"* in|strong=\"H4191\"* the|strong=\"H4480\"* river|strong=\"H2975\"* will|strong=\"H4325\"* die|strong=\"H4191\"* and|strong=\"H4325\"* the|strong=\"H4480\"* river|strong=\"H2975\"* will|strong=\"H4325\"* become|strong=\"H3811\"* foul. The|strong=\"H4480\"* Egyptians|strong=\"H4713\"* will|strong=\"H4325\"* loathe to|strong=\"H4191\"* drink|strong=\"H8354\"* water|strong=\"H4325\"* from|strong=\"H4480\"* the|strong=\"H4480\"* river|strong=\"H2975\"*.”’”" + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Tell|strong=\"H3605\"* Aaron, ‘Take|strong=\"H3947\"* your|strong=\"H3068\"* rod|strong=\"H4294\"*, and|strong=\"H4872\"* stretch|strong=\"H5186\"* out|strong=\"H5186\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* over|strong=\"H5921\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, over|strong=\"H5921\"* their|strong=\"H3605\"* rivers|strong=\"H5104\"*, over|strong=\"H5921\"* their|strong=\"H3605\"* streams|strong=\"H5104\"*, and|strong=\"H4872\"* over|strong=\"H5921\"* their|strong=\"H3605\"* pools|strong=\"H4723\"*, and|strong=\"H4872\"* over|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* ponds of|strong=\"H3068\"* water|strong=\"H4325\"*, that|strong=\"H3605\"* they|strong=\"H3068\"* may|strong=\"H1961\"* become|strong=\"H1961\"* blood|strong=\"H1818\"*. There|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* blood|strong=\"H1818\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, both|strong=\"H3605\"* in|strong=\"H5921\"* vessels of|strong=\"H3068\"* wood|strong=\"H6086\"* and|strong=\"H4872\"* in|strong=\"H5921\"* vessels of|strong=\"H3068\"* stone.’”" + }, + { + "verseNum": 20, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron did|strong=\"H6213\"* so|strong=\"H3651\"*, as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"*; and|strong=\"H4872\"* he|strong=\"H3651\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* the|strong=\"H3605\"* rod|strong=\"H4294\"*, and|strong=\"H4872\"* struck|strong=\"H5221\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* that|strong=\"H3605\"* were|strong=\"H4325\"* in|strong=\"H3068\"* the|strong=\"H3605\"* river|strong=\"H2975\"*, in|strong=\"H3068\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H4872\"* in|strong=\"H3068\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*; and|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* that|strong=\"H3605\"* were|strong=\"H4325\"* in|strong=\"H3068\"* the|strong=\"H3605\"* river|strong=\"H2975\"* were|strong=\"H4325\"* turned|strong=\"H2015\"* to|strong=\"H3068\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H3605\"* fish|strong=\"H1710\"* that|strong=\"H3605\"* were|strong=\"H1961\"* in|strong=\"H4191\"* the|strong=\"H3605\"* river|strong=\"H2975\"* died|strong=\"H4191\"*. The|strong=\"H3605\"* river|strong=\"H2975\"* became|strong=\"H1961\"* foul. The|strong=\"H3605\"* Egyptians|strong=\"H4714\"* couldn’t drink|strong=\"H8354\"* water|strong=\"H4325\"* from|strong=\"H4480\"* the|strong=\"H3605\"* river|strong=\"H2975\"*. The|strong=\"H3605\"* blood|strong=\"H1818\"* was|strong=\"H1961\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H4325\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H8085\"* magicians|strong=\"H2748\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"* did|strong=\"H6213\"* the|strong=\"H8085\"* same|strong=\"H3651\"* thing|strong=\"H3651\"* with|strong=\"H3068\"* their|strong=\"H3068\"* enchantments|strong=\"H3909\"*. So|strong=\"H3651\"* Pharaoh|strong=\"H6547\"*’s heart|strong=\"H3820\"* was|strong=\"H3068\"* hardened|strong=\"H2388\"*, and|strong=\"H3068\"* he|strong=\"H3651\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1696\"* them|strong=\"H6213\"*, as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 23, + "text": "Pharaoh|strong=\"H6547\"* turned|strong=\"H6437\"* and|strong=\"H1004\"* went|strong=\"H1004\"* into|strong=\"H6547\"* his|strong=\"H7896\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* he|strong=\"H1004\"* didn’t even|strong=\"H1571\"* take|strong=\"H7896\"* this|strong=\"H2063\"* to|strong=\"H3820\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 24, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* Egyptians|strong=\"H4713\"* dug|strong=\"H2658\"* around|strong=\"H5439\"* the|strong=\"H3605\"* river|strong=\"H2975\"* for|strong=\"H3588\"* water|strong=\"H4325\"* to|strong=\"H3201\"* drink|strong=\"H8354\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* couldn’t drink|strong=\"H8354\"* the|strong=\"H3605\"* river|strong=\"H2975\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 25, + "text": "Seven|strong=\"H7651\"* days|strong=\"H3117\"* were|strong=\"H3117\"* fulfilled|strong=\"H4390\"*, after|strong=\"H3117\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* river|strong=\"H2975\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Go|strong=\"H5927\"* in|strong=\"H5921\"* to|strong=\"H3068\"* Pharaoh, and|strong=\"H4872\"* tell him|strong=\"H5921\"*, ‘This|strong=\"H3068\"* is|strong=\"H3068\"* what|strong=\"H5927\"* Yahweh|strong=\"H3068\"* says, “Let|strong=\"H5186\"* my|strong=\"H3068\"* people go|strong=\"H5927\"*, that|strong=\"H3068\"* they|strong=\"H3068\"* may|strong=\"H3068\"* serve|strong=\"H3027\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "If you|strong=\"H5921\"* refuse to|strong=\"H5927\"* let|strong=\"H5186\"* them|strong=\"H5921\"* go|strong=\"H5927\"*, behold, I|strong=\"H5921\"* will|strong=\"H4714\"* plague all|strong=\"H5921\"* your|strong=\"H5921\"* borders|strong=\"H3027\"* with|strong=\"H5921\"* frogs|strong=\"H6854\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* river will|strong=\"H4714\"* swarm with|strong=\"H6213\"* frogs|strong=\"H6854\"*, which|strong=\"H6854\"* will|strong=\"H4714\"* go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H4714\"* come|strong=\"H5927\"* into|strong=\"H5927\"* your|strong=\"H5921\"* house, and|strong=\"H4714\"* into|strong=\"H5927\"* your|strong=\"H5921\"* bedroom, and|strong=\"H4714\"* on|strong=\"H5921\"* your|strong=\"H5921\"* bed, and|strong=\"H4714\"* into|strong=\"H5927\"* the|strong=\"H5921\"* house of|strong=\"H5921\"* your|strong=\"H5921\"* servants, and|strong=\"H4714\"* on|strong=\"H5921\"* your|strong=\"H5921\"* people, and|strong=\"H4714\"* into|strong=\"H5927\"* your|strong=\"H5921\"* ovens, and|strong=\"H4714\"* into|strong=\"H5927\"* your|strong=\"H5921\"* kneading troughs." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3068\"* frogs|strong=\"H6854\"* shall|strong=\"H3068\"* come|strong=\"H5971\"* up|strong=\"H4480\"* both|strong=\"H4480\"* on|strong=\"H3068\"* you|strong=\"H7971\"*, and|strong=\"H4872\"* on|strong=\"H3068\"* your|strong=\"H3068\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* on|strong=\"H3068\"* all|strong=\"H4480\"* your|strong=\"H3068\"* servants.”’”" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H5921\"* Moses|strong=\"H4872\"*, “Tell Aaron, ‘Stretch out|strong=\"H4480\"* your|strong=\"H5921\"* hand with|strong=\"H1004\"* your|strong=\"H5921\"* rod over|strong=\"H5921\"* the|strong=\"H5921\"* rivers|strong=\"H2975\"*, over|strong=\"H5921\"* the|strong=\"H5921\"* streams|strong=\"H2975\"*, and|strong=\"H4872\"* over|strong=\"H5921\"* the|strong=\"H5921\"* pools, and|strong=\"H4872\"* cause|strong=\"H5971\"* frogs|strong=\"H6854\"* to|strong=\"H5921\"* come|strong=\"H5971\"* up|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1004\"* Egypt.’”" + }, + { + "verseNum": 6, + "text": "Aaron stretched out|strong=\"H3045\"* his|strong=\"H3068\"* hand over|strong=\"H3068\"* the|strong=\"H3588\"* waters of|strong=\"H3068\"* Egypt; and|strong=\"H3068\"* the|strong=\"H3588\"* frogs came|strong=\"H3068\"* up, and|strong=\"H3068\"* covered the|strong=\"H3588\"* land of|strong=\"H3068\"* Egypt." + }, + { + "verseNum": 7, + "text": "The|strong=\"H4480\"* magicians did|strong=\"H5971\"* the|strong=\"H4480\"* same|strong=\"H4480\"* thing with|strong=\"H1004\"* their|strong=\"H5493\"* enchantments, and|strong=\"H1004\"* brought|strong=\"H5493\"* up|strong=\"H4480\"* frogs|strong=\"H6854\"* on|strong=\"H1004\"* the|strong=\"H4480\"* land of|strong=\"H1004\"* Egypt." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H3318\"* Pharaoh|strong=\"H6547\"* called|strong=\"H6817\"* for|strong=\"H5921\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron, and|strong=\"H4872\"* said|strong=\"H1697\"*, “Entreat Yahweh|strong=\"H3068\"*, that|strong=\"H3068\"* he|strong=\"H3068\"* take|strong=\"H7760\"* away|strong=\"H3318\"* the|strong=\"H5921\"* frogs|strong=\"H6854\"* from|strong=\"H3318\"* me|strong=\"H5921\"* and|strong=\"H4872\"* from|strong=\"H3318\"* my|strong=\"H3068\"* people; and|strong=\"H4872\"* I|strong=\"H5921\"* will|strong=\"H3068\"* let|strong=\"H7760\"* the|strong=\"H5921\"* people go|strong=\"H3318\"*, that|strong=\"H3068\"* they|strong=\"H3068\"* may|strong=\"H3068\"* sacrifice to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* said|strong=\"H1697\"* to|strong=\"H4191\"* Pharaoh, “I|strong=\"H1697\"* give|strong=\"H7704\"* you|strong=\"H6213\"* the|strong=\"H6213\"* honor of|strong=\"H1004\"* setting the|strong=\"H6213\"* time that|strong=\"H3068\"* I|strong=\"H1697\"* should|strong=\"H3068\"* pray for|strong=\"H6213\"* you|strong=\"H6213\"*, and|strong=\"H4872\"* for|strong=\"H6213\"* your|strong=\"H3068\"* servants, and|strong=\"H4872\"* for|strong=\"H6213\"* your|strong=\"H3068\"* people, that|strong=\"H3068\"* the|strong=\"H6213\"* frogs|strong=\"H6854\"* be|strong=\"H4191\"* destroyed from|strong=\"H4480\"* you|strong=\"H6213\"* and|strong=\"H4872\"* your|strong=\"H3068\"* houses|strong=\"H1004\"*, and|strong=\"H4872\"* remain in|strong=\"H3068\"* the|strong=\"H6213\"* river only.”" + }, + { + "verseNum": 10, + "text": "Pharaoh said, “Tomorrow.”" + }, + { + "verseNum": 11, + "text": "The|strong=\"H8085\"* frogs shall|strong=\"H3068\"* depart from|strong=\"H8085\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* from|strong=\"H8085\"* your|strong=\"H3068\"* houses, and|strong=\"H3068\"* from|strong=\"H8085\"* your|strong=\"H3068\"* servants, and|strong=\"H3068\"* from|strong=\"H8085\"* your|strong=\"H3068\"* people|strong=\"H3808\"*. They|strong=\"H3588\"* shall|strong=\"H3068\"* remain|strong=\"H1961\"* in|strong=\"H3068\"* the|strong=\"H8085\"* river|strong=\"H3588\"* only|strong=\"H3588\"*.”" + }, + { + "verseNum": 12, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron went|strong=\"H4872\"* out|strong=\"H5186\"* from|strong=\"H3068\"* Pharaoh, and|strong=\"H4872\"* Moses|strong=\"H4872\"* cried to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* concerning|strong=\"H3068\"* the|strong=\"H3605\"* frogs which|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* brought|strong=\"H4872\"* on|strong=\"H3068\"* Pharaoh." + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* did|strong=\"H6213\"* according|strong=\"H3027\"* to|strong=\"H1961\"* the|strong=\"H3605\"* word of|strong=\"H3027\"* Moses, and|strong=\"H3027\"* the|strong=\"H3605\"* frogs died out|strong=\"H5186\"* of|strong=\"H3027\"* the|strong=\"H3605\"* houses, out|strong=\"H5186\"* of|strong=\"H3027\"* the|strong=\"H3605\"* courts, and|strong=\"H3027\"* out|strong=\"H5186\"* of|strong=\"H3027\"* the|strong=\"H3605\"* fields." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3651\"* gathered|strong=\"H6213\"* them|strong=\"H6213\"* together in|strong=\"H6213\"* heaps, and|strong=\"H6213\"* the|strong=\"H6213\"* land stank." + }, + { + "verseNum": 15, + "text": "But|strong=\"H3808\"* when|strong=\"H8085\"* Pharaoh|strong=\"H6547\"* saw that|strong=\"H8085\"* there|strong=\"H3068\"* was|strong=\"H3068\"* a|strong=\"H3068\"* respite, he|strong=\"H1931\"* hardened|strong=\"H2388\"* his|strong=\"H3068\"* heart|strong=\"H3820\"*, and|strong=\"H3068\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1696\"* them|strong=\"H2388\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Moses|strong=\"H4872\"*, “Tell Aaron, ‘Stretch|strong=\"H7971\"* out|strong=\"H3318\"* your|strong=\"H3068\"* rod, and|strong=\"H4872\"* strike the|strong=\"H6440\"* dust of|strong=\"H3068\"* the|strong=\"H6440\"* earth, that|strong=\"H5971\"* it|strong=\"H1242\"* may|strong=\"H3068\"* become|strong=\"H3318\"* lice throughout|strong=\"H6440\"* all|strong=\"H7971\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H3068\"* Egypt.’”" + }, + { + "verseNum": 17, + "text": "They|strong=\"H1992\"* did|strong=\"H5971\"* so|strong=\"H7971\"*; and|strong=\"H7971\"* Aaron stretched|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* hand with|strong=\"H4390\"* his|strong=\"H7971\"* rod, and|strong=\"H7971\"* struck the|strong=\"H5921\"* dust of|strong=\"H1004\"* the|strong=\"H5921\"* earth, and|strong=\"H7971\"* there|strong=\"H1992\"* were|strong=\"H5971\"* lice on|strong=\"H5921\"* man, and|strong=\"H7971\"* on|strong=\"H5921\"* animal; all|strong=\"H5921\"* the|strong=\"H5921\"* dust of|strong=\"H1004\"* the|strong=\"H5921\"* earth became|strong=\"H5650\"* lice throughout|strong=\"H5921\"* all|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1004\"* Egypt|strong=\"H4713\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5921\"* magicians tried with|strong=\"H3068\"* their|strong=\"H3068\"* enchantments to|strong=\"H3068\"* produce|strong=\"H1961\"* lice, but|strong=\"H3588\"* they|strong=\"H3588\"* couldn’t. There|strong=\"H8033\"* were|strong=\"H1961\"* lice on|strong=\"H5921\"* man|strong=\"H3045\"*, and|strong=\"H3068\"* on|strong=\"H5921\"* animal|strong=\"H1961\"*." + }, + { + "verseNum": 19, + "text": "Then|strong=\"H1961\"* the|strong=\"H7760\"* magicians said to|strong=\"H1961\"* Pharaoh, “This|strong=\"H2088\"* is|strong=\"H2088\"* God’s finger;” but|strong=\"H1961\"* Pharaoh’s heart was|strong=\"H1961\"* hardened, and|strong=\"H5971\"* he|strong=\"H5971\"* didn’t listen to|strong=\"H1961\"* them|strong=\"H7760\"*, as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* had|strong=\"H1961\"* spoken." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H3651\"* to|strong=\"H3068\"* Moses, “Rise up|strong=\"H6213\"* early in|strong=\"H3068\"* the|strong=\"H3605\"* morning, and|strong=\"H3068\"* stand before|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*; behold, he|strong=\"H3651\"* comes|strong=\"H6440\"* out|strong=\"H6213\"* to|strong=\"H3068\"* the|strong=\"H3605\"* water; and|strong=\"H3068\"* tell|strong=\"H3605\"* him|strong=\"H6440\"*, ‘This|strong=\"H3651\"* is|strong=\"H3068\"* what|strong=\"H6213\"* Yahweh|strong=\"H3068\"* says, “Let|strong=\"H3651\"* my|strong=\"H3605\"* people go|strong=\"H3068\"*, that|strong=\"H3605\"* they|strong=\"H3651\"* may|strong=\"H3068\"* serve|strong=\"H6440\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 21, + "text": "Else, if you|strong=\"H7121\"* will|strong=\"H6547\"* not|strong=\"H3212\"* let|strong=\"H3212\"* my|strong=\"H7121\"* people go|strong=\"H3212\"*, behold, I|strong=\"H3212\"* will|strong=\"H6547\"* send swarms of|strong=\"H7121\"* flies on|strong=\"H3212\"* you|strong=\"H7121\"*, and|strong=\"H4872\"* on|strong=\"H3212\"* your|strong=\"H7121\"* servants, and|strong=\"H4872\"* on|strong=\"H3212\"* your|strong=\"H7121\"* people, and|strong=\"H4872\"* into|strong=\"H3212\"* your|strong=\"H7121\"* houses. The|strong=\"H7121\"* houses of|strong=\"H7121\"* the|strong=\"H7121\"* Egyptians shall|strong=\"H6547\"* be full of|strong=\"H7121\"* swarms of|strong=\"H7121\"* flies, and|strong=\"H4872\"* also|strong=\"H4872\"* the|strong=\"H7121\"* ground they|strong=\"H7121\"* are on|strong=\"H3212\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* set|strong=\"H3559\"* apart in|strong=\"H3068\"* that|strong=\"H3588\"* day|strong=\"H4872\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* Goshen, in|strong=\"H3068\"* which|strong=\"H3068\"* my|strong=\"H3068\"* people|strong=\"H3808\"* dwell, that|strong=\"H3588\"* no|strong=\"H3808\"* swarms of|strong=\"H3068\"* flies shall|strong=\"H3068\"* be|strong=\"H3808\"* there|strong=\"H3068\"*, to|strong=\"H3068\"* the|strong=\"H3588\"* end you|strong=\"H3588\"* may|strong=\"H3068\"* know that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* on|strong=\"H3068\"* the|strong=\"H3588\"* earth." + }, + { + "verseNum": 23, + "text": "I|strong=\"H3117\"* will|strong=\"H3068\"* put|strong=\"H3068\"* a|strong=\"H3068\"* division between my|strong=\"H3068\"* people and|strong=\"H3068\"* your|strong=\"H3068\"* people. This|strong=\"H3068\"* sign shall|strong=\"H3068\"* happen by|strong=\"H3117\"* tomorrow.”’”" + }, + { + "verseNum": 24, + "text": "Yahweh|strong=\"H3068\"* did|strong=\"H3068\"* so|strong=\"H7971\"*; and|strong=\"H3068\"* there|strong=\"H3068\"* came|strong=\"H3068\"* grievous swarms of|strong=\"H3068\"* flies into|strong=\"H3212\"* the|strong=\"H3068\"* house of|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H3068\"* into|strong=\"H3212\"* his|strong=\"H3068\"* servants’ houses. In|strong=\"H3068\"* all|strong=\"H3212\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt the|strong=\"H3068\"* land was|strong=\"H3068\"* corrupted by|strong=\"H3068\"* reason of|strong=\"H3068\"* the|strong=\"H3068\"* swarms of|strong=\"H3068\"* flies." + }, + { + "verseNum": 25, + "text": "Pharaoh|strong=\"H6547\"* called for|strong=\"H7971\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* for|strong=\"H7971\"* Aaron, and|strong=\"H4872\"* said|strong=\"H3318\"*, “Go|strong=\"H3318\"*, sacrifice|strong=\"H2076\"* to|strong=\"H3318\"* your|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* land!”" + }, + { + "verseNum": 26, + "text": "Moses|strong=\"H4872\"* said|strong=\"H3318\"*, “It|strong=\"H3068\"* isn’t appropriate to|strong=\"H3318\"* do|strong=\"H3068\"* so|strong=\"H3318\"*; for|strong=\"H3068\"* we|strong=\"H3068\"* shall|strong=\"H3068\"* sacrifice the|strong=\"H3068\"* abomination of|strong=\"H3068\"* the|strong=\"H3068\"* Egyptians to|strong=\"H3318\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*. Behold, if we|strong=\"H3068\"* sacrifice the|strong=\"H3068\"* abomination of|strong=\"H3068\"* the|strong=\"H3068\"* Egyptians before|strong=\"H5973\"* their|strong=\"H3068\"* eyes, won’t they|strong=\"H3068\"* stone us?" + }, + { + "verseNum": 27, + "text": "We|strong=\"H6213\"* will|strong=\"H3068\"* go|strong=\"H5971\"* three days’ journey into|strong=\"H6213\"* the|strong=\"H6213\"* wilderness, and|strong=\"H4872\"* sacrifice|strong=\"H6213\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, as|strong=\"H1697\"* he|strong=\"H6213\"* shall|strong=\"H3068\"* command|strong=\"H1697\"* us|strong=\"H6213\"*.”" + }, + { + "verseNum": 28, + "text": "Pharaoh|strong=\"H6547\"* said, “I|strong=\"H3808\"* will|strong=\"H5971\"* let|strong=\"H7971\"* you|strong=\"H7971\"* go|strong=\"H7971\"*, that|strong=\"H5971\"* you|strong=\"H7971\"* may|strong=\"H5971\"* sacrifice to|strong=\"H7971\"* Yahweh|strong=\"H3068\"* your|strong=\"H3513\"* God|strong=\"H3808\"* in|strong=\"H5971\"* the|strong=\"H7971\"* wilderness, only|strong=\"H1571\"* you|strong=\"H7971\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* go|strong=\"H7971\"* very|strong=\"H1571\"* far away|strong=\"H7971\"*. Pray for|strong=\"H7971\"* me|strong=\"H7971\"*.”" + }, + { + "verseNum": 29, + "text": "Moses said, “Behold, I am going out from you. I will pray to Yahweh|strong=\"H3068\"* that the swarms of flies may depart from Pharaoh, from his servants, and from his people, tomorrow; only don’t let Pharaoh deal deceitfully any more in not letting the people go to sacrifice to Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 30, + "text": "Moses went out from Pharaoh, and prayed to Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 31, + "text": "Yahweh|strong=\"H3068\"* did according to the word of Moses, and he removed the swarms of flies from Pharaoh, from his servants, and from his people. There remained not one." + }, + { + "verseNum": 32, + "text": "Pharaoh hardened his heart this time also, and he didn’t let the people go." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H1696\"* Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “Go|strong=\"H7971\"* in|strong=\"H3068\"* to|strong=\"H1696\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H4872\"* tell|strong=\"H1696\"* him|strong=\"H7971\"*, ‘This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H3541\"* Hebrews|strong=\"H5680\"*, says|strong=\"H3541\"*: “Let|strong=\"H7971\"* my|strong=\"H3068\"* people|strong=\"H5971\"* go|strong=\"H7971\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* may|strong=\"H3068\"* serve|strong=\"H5647\"* me|strong=\"H7971\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* refuse|strong=\"H3986\"* to|strong=\"H7971\"* let|strong=\"H7971\"* them|strong=\"H7971\"* go|strong=\"H7971\"*, and|strong=\"H7971\"* hold|strong=\"H2388\"* them|strong=\"H7971\"* still|strong=\"H5750\"*," + }, + { + "verseNum": 3, + "text": "behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* is|strong=\"H3068\"* on|strong=\"H3027\"* your|strong=\"H3068\"* livestock|strong=\"H4735\"* which|strong=\"H3068\"* are|strong=\"H3027\"* in|strong=\"H3068\"* the|strong=\"H3068\"* field|strong=\"H7704\"*, on|strong=\"H3027\"* the|strong=\"H3068\"* horses|strong=\"H5483\"*, on|strong=\"H3027\"* the|strong=\"H3068\"* donkeys|strong=\"H2543\"*, on|strong=\"H3027\"* the|strong=\"H3068\"* camels|strong=\"H1581\"*, on|strong=\"H3027\"* the|strong=\"H3068\"* herds|strong=\"H1241\"*, and|strong=\"H3068\"* on|strong=\"H3027\"* the|strong=\"H3068\"* flocks|strong=\"H6629\"* with|strong=\"H3068\"* a|strong=\"H3068\"* very|strong=\"H3966\"* grievous|strong=\"H3515\"* pestilence|strong=\"H1698\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* make|strong=\"H6395\"* a|strong=\"H3068\"* distinction|strong=\"H6395\"* between the|strong=\"H3605\"* livestock|strong=\"H4735\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* the|strong=\"H3605\"* livestock|strong=\"H4735\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*; and|strong=\"H1121\"* nothing|strong=\"H3808\"* shall|strong=\"H3068\"* die|strong=\"H4191\"* of|strong=\"H1121\"* all|strong=\"H3605\"* that|strong=\"H3605\"* belongs to|strong=\"H3478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”’”" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* appointed|strong=\"H4150\"* a|strong=\"H3068\"* set|strong=\"H7760\"* time|strong=\"H4150\"*, saying|strong=\"H1697\"*, “Tomorrow|strong=\"H4279\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* in|strong=\"H3068\"* the|strong=\"H6213\"* land.”" + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* did|strong=\"H6213\"* that|strong=\"H3605\"* thing|strong=\"H1697\"* on|strong=\"H3068\"* the|strong=\"H3605\"* next|strong=\"H4283\"* day|strong=\"H4283\"*; and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* livestock|strong=\"H4735\"* of|strong=\"H1121\"* Egypt|strong=\"H4713\"* died|strong=\"H4191\"*, but|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H3605\"* livestock|strong=\"H4735\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, not|strong=\"H3808\"* one|strong=\"H2088\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 7, + "text": "Pharaoh|strong=\"H6547\"* sent|strong=\"H7971\"*, and|strong=\"H3478\"*, behold|strong=\"H2009\"*, there|strong=\"H2009\"* was|strong=\"H3478\"* not|strong=\"H3808\"* so|strong=\"H7971\"* much as|strong=\"H5704\"* one|strong=\"H3808\"* of|strong=\"H5971\"* the|strong=\"H5704\"* livestock|strong=\"H4735\"* of|strong=\"H5971\"* the|strong=\"H5704\"* Israelites|strong=\"H3478\"* dead|strong=\"H4191\"*. But|strong=\"H3808\"* the|strong=\"H5704\"* heart|strong=\"H3820\"* of|strong=\"H5971\"* Pharaoh|strong=\"H6547\"* was|strong=\"H3478\"* stubborn, and|strong=\"H3478\"* he|strong=\"H5704\"* didn’t let|strong=\"H7971\"* the|strong=\"H5704\"* people|strong=\"H5971\"* go|strong=\"H7971\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H3068\"* Aaron, “Take|strong=\"H3947\"* handfuls|strong=\"H4393\"* of|strong=\"H3068\"* ashes|strong=\"H6368\"* of|strong=\"H3068\"* the|strong=\"H3947\"* furnace|strong=\"H3536\"*, and|strong=\"H4872\"* let Moses|strong=\"H4872\"* sprinkle|strong=\"H2236\"* it|strong=\"H4393\"* toward|strong=\"H3068\"* the|strong=\"H3947\"* sky|strong=\"H8064\"* in|strong=\"H3068\"* the|strong=\"H3947\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 9, + "text": "It|strong=\"H5921\"* shall|strong=\"H4714\"* become|strong=\"H1961\"* small dust over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H5921\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* shall|strong=\"H4714\"* be|strong=\"H1961\"* boils|strong=\"H7822\"* and|strong=\"H4714\"* blisters breaking|strong=\"H6524\"* out|strong=\"H5921\"* on|strong=\"H5921\"* man|strong=\"H3605\"* and|strong=\"H4714\"* on|strong=\"H5921\"* animal|strong=\"H1961\"*, throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H5921\"* Egypt|strong=\"H4714\"*.”" + }, + { + "verseNum": 10, + "text": "They|strong=\"H6440\"* took|strong=\"H3947\"* ashes|strong=\"H6368\"* of|strong=\"H6440\"* the|strong=\"H6440\"* furnace|strong=\"H3536\"*, and|strong=\"H4872\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* sprinkled|strong=\"H2236\"* it|strong=\"H6440\"* up|strong=\"H5975\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* sky|strong=\"H8064\"*; and|strong=\"H4872\"* it|strong=\"H6440\"* became|strong=\"H1961\"* boils|strong=\"H7822\"* and|strong=\"H4872\"* blisters breaking|strong=\"H6524\"* out|strong=\"H3947\"* on|strong=\"H5975\"* man|strong=\"H6440\"* and|strong=\"H4872\"* on|strong=\"H5975\"* animal|strong=\"H1961\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H3605\"* magicians|strong=\"H2748\"* couldn’t stand|strong=\"H5975\"* before|strong=\"H6440\"* Moses|strong=\"H4872\"* because|strong=\"H3588\"* of|strong=\"H6440\"* the|strong=\"H3605\"* boils|strong=\"H7822\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* boils|strong=\"H7822\"* were|strong=\"H1961\"* on|strong=\"H5975\"* the|strong=\"H3605\"* magicians|strong=\"H2748\"* and|strong=\"H4872\"* on|strong=\"H5975\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Egyptians|strong=\"H4713\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* hardened|strong=\"H2388\"* the|strong=\"H8085\"* heart|strong=\"H3820\"* of|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H4872\"* he|strong=\"H3068\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1696\"* them|strong=\"H2388\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Rise|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3068\"* the|strong=\"H6440\"* morning|strong=\"H1242\"*, and|strong=\"H4872\"* stand|strong=\"H3320\"* before|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H4872\"* tell him|strong=\"H6440\"*, ‘This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Hebrews|strong=\"H5680\"*, says|strong=\"H3541\"*: “Let|strong=\"H7971\"* my|strong=\"H3068\"* people|strong=\"H5971\"* go|strong=\"H7971\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* may|strong=\"H3068\"* serve|strong=\"H5647\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* this|strong=\"H2063\"* time|strong=\"H6471\"* I|strong=\"H3588\"* will|strong=\"H5971\"* send|strong=\"H7971\"* all|strong=\"H3605\"* my|strong=\"H3605\"* plagues|strong=\"H4046\"* against|strong=\"H2063\"* your|strong=\"H3605\"* heart|strong=\"H3820\"*, against|strong=\"H2063\"* your|strong=\"H3605\"* officials|strong=\"H5650\"*, and|strong=\"H7971\"* against|strong=\"H2063\"* your|strong=\"H3605\"* people|strong=\"H5971\"*; that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H5971\"* know|strong=\"H3045\"* that|strong=\"H3588\"* there|strong=\"H3605\"* is|strong=\"H3820\"* no|strong=\"H3605\"* one|strong=\"H3605\"* like|strong=\"H3644\"* me|strong=\"H7971\"* in|strong=\"H5650\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* now|strong=\"H6258\"* I|strong=\"H3588\"* would|strong=\"H5971\"* have|strong=\"H5971\"* stretched|strong=\"H7971\"* out|strong=\"H7971\"* my|strong=\"H7971\"* hand|strong=\"H3027\"*, and|strong=\"H7971\"* struck|strong=\"H5221\"* you|strong=\"H3588\"* and|strong=\"H7971\"* your|strong=\"H3588\"* people|strong=\"H5971\"* with|strong=\"H5971\"* pestilence|strong=\"H1698\"*, and|strong=\"H7971\"* you|strong=\"H3588\"* would|strong=\"H5971\"* have|strong=\"H5971\"* been|strong=\"H5971\"* cut|strong=\"H3582\"* off|strong=\"H3582\"* from|strong=\"H4480\"* the|strong=\"H3588\"* earth;" + }, + { + "verseNum": 16, + "text": "but|strong=\"H7200\"* indeed|strong=\"H7200\"* for|strong=\"H8034\"* this|strong=\"H2063\"* cause I|strong=\"H7200\"* have|strong=\"H7200\"* made|strong=\"H5975\"* you|strong=\"H3605\"* stand|strong=\"H5975\"*: to|strong=\"H4616\"* show|strong=\"H7200\"* you|strong=\"H3605\"* my|strong=\"H3605\"* power|strong=\"H3581\"*, and|strong=\"H7200\"* that|strong=\"H7200\"* my|strong=\"H3605\"* name|strong=\"H8034\"* may|strong=\"H8034\"* be|strong=\"H8034\"* declared|strong=\"H5608\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth," + }, + { + "verseNum": 17, + "text": "because|strong=\"H1115\"* you|strong=\"H7971\"* still|strong=\"H5750\"* exalt|strong=\"H5549\"* yourself against|strong=\"H7971\"* my|strong=\"H7971\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* you|strong=\"H7971\"* won’t let|strong=\"H7971\"* them|strong=\"H7971\"* go|strong=\"H7971\"*." + }, + { + "verseNum": 18, + "text": "Behold|strong=\"H2005\"*, tomorrow|strong=\"H4279\"* about|strong=\"H1961\"* this|strong=\"H6258\"* time|strong=\"H6256\"* I|strong=\"H3117\"* will|strong=\"H1961\"* cause|strong=\"H1961\"* it|strong=\"H1961\"* to|strong=\"H5704\"* rain|strong=\"H4305\"* a|strong=\"H3068\"* very|strong=\"H3966\"* grievous|strong=\"H3515\"* hail|strong=\"H1259\"*, such|strong=\"H3644\"* as|strong=\"H5704\"* has|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"* in|strong=\"H3117\"* Egypt|strong=\"H4714\"* since|strong=\"H4480\"* the|strong=\"H4480\"* day|strong=\"H3117\"* it|strong=\"H1961\"* was|strong=\"H1961\"* founded|strong=\"H3245\"* even|strong=\"H5704\"* until|strong=\"H5704\"* now|strong=\"H6258\"*." + }, + { + "verseNum": 19, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* command|strong=\"H5921\"* that|strong=\"H3605\"* all|strong=\"H3605\"* of|strong=\"H1004\"* your|strong=\"H3605\"* livestock|strong=\"H4735\"* and|strong=\"H7971\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H4672\"* in|strong=\"H5921\"* the|strong=\"H3605\"* field|strong=\"H7704\"* be|strong=\"H4191\"* brought|strong=\"H3381\"* into|strong=\"H3381\"* shelter|strong=\"H1004\"*. The|strong=\"H3605\"* hail|strong=\"H1259\"* will|strong=\"H1004\"* come|strong=\"H3381\"* down|strong=\"H3381\"* on|strong=\"H5921\"* every|strong=\"H3605\"* man|strong=\"H4191\"* and|strong=\"H7971\"* animal that|strong=\"H3605\"* is|strong=\"H3605\"* found|strong=\"H4672\"* in|strong=\"H5921\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, and|strong=\"H7971\"* isn’t brought|strong=\"H3381\"* home|strong=\"H1004\"*, and|strong=\"H7971\"* they|strong=\"H3808\"* will|strong=\"H1004\"* die|strong=\"H4191\"*.”’”" + }, + { + "verseNum": 20, + "text": "Those|strong=\"H6547\"* who|strong=\"H3068\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* among the|strong=\"H3068\"* servants|strong=\"H5650\"* of|strong=\"H1004\"* Pharaoh|strong=\"H6547\"* made|strong=\"H3068\"* their|strong=\"H3068\"* servants|strong=\"H5650\"* and|strong=\"H3068\"* their|strong=\"H3068\"* livestock|strong=\"H4735\"* flee|strong=\"H5127\"* into|strong=\"H5127\"* the|strong=\"H3068\"* houses|strong=\"H1004\"*." + }, + { + "verseNum": 21, + "text": "Whoever didn’t respect|strong=\"H7760\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* left|strong=\"H5800\"* his|strong=\"H7760\"* servants|strong=\"H5650\"* and|strong=\"H3068\"* his|strong=\"H7760\"* livestock|strong=\"H4735\"* in|strong=\"H3068\"* the|strong=\"H3068\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Stretch|strong=\"H5186\"* out|strong=\"H5186\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, that|strong=\"H3605\"* there|strong=\"H1961\"* may|strong=\"H1961\"* be|strong=\"H1961\"* hail|strong=\"H1259\"* in|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H7704\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, on|strong=\"H5921\"* man|strong=\"H3605\"*, and|strong=\"H4872\"* on|strong=\"H5921\"* animal|strong=\"H1961\"*, and|strong=\"H4872\"* on|strong=\"H5921\"* every|strong=\"H3605\"* herb|strong=\"H6212\"* of|strong=\"H3068\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, throughout|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H7704\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*.”" + }, + { + "verseNum": 23, + "text": "Moses|strong=\"H4872\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* his|strong=\"H5414\"* rod|strong=\"H4294\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* heavens|strong=\"H8064\"*, and|strong=\"H1980\"* Yahweh|strong=\"H3068\"* sent|strong=\"H5414\"* thunder|strong=\"H6963\"* and|strong=\"H1980\"* hail|strong=\"H1259\"*; and|strong=\"H1980\"* lightning flashed|strong=\"H1980\"* down|strong=\"H5186\"* to|strong=\"H1980\"* the|strong=\"H5921\"* earth|strong=\"H8064\"*. Yahweh|strong=\"H3068\"* rained|strong=\"H4305\"* hail|strong=\"H1259\"* on|strong=\"H5921\"* the|strong=\"H5921\"* land|strong=\"H8064\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 24, + "text": "So|strong=\"H3947\"* there|strong=\"H1961\"* was|strong=\"H1961\"* very|strong=\"H3966\"* severe|strong=\"H3515\"* hail|strong=\"H1259\"*, and|strong=\"H4714\"* lightning mixed with|strong=\"H4714\"* the|strong=\"H3605\"* hail|strong=\"H1259\"*, such|strong=\"H3644\"* as|strong=\"H1961\"* had|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"* in|strong=\"H8432\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H8432\"* Egypt|strong=\"H4714\"* since it|strong=\"H8432\"* became|strong=\"H1961\"* a|strong=\"H3068\"* nation|strong=\"H1471\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H3605\"* hail|strong=\"H1259\"* struck|strong=\"H5221\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H7704\"* of|strong=\"H7704\"* Egypt|strong=\"H4714\"* all|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H4714\"* in|strong=\"H7665\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, both|strong=\"H3605\"* man|strong=\"H3605\"* and|strong=\"H6086\"* animal; and|strong=\"H6086\"* the|strong=\"H3605\"* hail|strong=\"H1259\"* struck|strong=\"H5221\"* every|strong=\"H3605\"* herb|strong=\"H6212\"* of|strong=\"H7704\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, and|strong=\"H6086\"* broke|strong=\"H7665\"* every|strong=\"H3605\"* tree|strong=\"H6086\"* of|strong=\"H7704\"* the|strong=\"H3605\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 26, + "text": "Only|strong=\"H7535\"* in|strong=\"H3478\"* the|strong=\"H1961\"* land of|strong=\"H1121\"* Goshen|strong=\"H1657\"*, where|strong=\"H8033\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"*, there|strong=\"H8033\"* was|strong=\"H1961\"* no|strong=\"H3808\"* hail|strong=\"H1259\"*." + }, + { + "verseNum": 27, + "text": "Pharaoh|strong=\"H6547\"* sent|strong=\"H7971\"* and|strong=\"H4872\"* called|strong=\"H7121\"* for|strong=\"H7121\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron, and|strong=\"H4872\"* said|strong=\"H7121\"* to|strong=\"H3068\"* them|strong=\"H7971\"*, “I|strong=\"H6471\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* this|strong=\"H6471\"* time|strong=\"H6471\"*. Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* righteous|strong=\"H6662\"*, and|strong=\"H4872\"* I|strong=\"H6471\"* and|strong=\"H4872\"* my|strong=\"H3068\"* people|strong=\"H5971\"* are|strong=\"H5971\"* wicked|strong=\"H7563\"*." + }, + { + "verseNum": 28, + "text": "Pray|strong=\"H6279\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; for|strong=\"H7971\"* there|strong=\"H1961\"* has|strong=\"H3068\"* been|strong=\"H1961\"* enough|strong=\"H7227\"* of|strong=\"H3068\"* mighty|strong=\"H7227\"* thunderings|strong=\"H6963\"* and|strong=\"H3068\"* hail|strong=\"H1259\"*. I|strong=\"H3808\"* will|strong=\"H3068\"* let|strong=\"H7971\"* you|strong=\"H7971\"* go|strong=\"H7971\"*, and|strong=\"H3068\"* you|strong=\"H7971\"* shall|strong=\"H3068\"* stay|strong=\"H5975\"* no|strong=\"H3808\"* longer|strong=\"H3254\"*.”" + }, + { + "verseNum": 29, + "text": "Moses|strong=\"H4872\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H6963\"*, “As|strong=\"H1961\"* soon|strong=\"H5750\"* as|strong=\"H1961\"* I|strong=\"H3588\"* have|strong=\"H1961\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3588\"* city|strong=\"H5892\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* spread|strong=\"H6566\"* out|strong=\"H3318\"* my|strong=\"H3068\"* hands|strong=\"H3709\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*. The|strong=\"H3588\"* thunders|strong=\"H6963\"* shall|strong=\"H3068\"* cease|strong=\"H2308\"*, and|strong=\"H4872\"* there|strong=\"H1961\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* any|strong=\"H5750\"* more|strong=\"H5750\"* hail|strong=\"H1259\"*; that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H1961\"* know|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3588\"* earth is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s." + }, + { + "verseNum": 30, + "text": "But|strong=\"H3588\"* as|strong=\"H3068\"* for|strong=\"H3588\"* you|strong=\"H3588\"* and|strong=\"H3068\"* your|strong=\"H3068\"* servants|strong=\"H5650\"*, I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* don’t yet|strong=\"H3588\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*.”" + }, + { + "verseNum": 31, + "text": "The|strong=\"H3588\"* flax|strong=\"H6594\"* and|strong=\"H5221\"* the|strong=\"H3588\"* barley|strong=\"H8184\"* were|strong=\"H8184\"* struck|strong=\"H5221\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* barley|strong=\"H8184\"* had|strong=\"H3588\"* ripened and|strong=\"H5221\"* the|strong=\"H3588\"* flax|strong=\"H6594\"* was|strong=\"H5221\"* blooming." + }, + { + "verseNum": 32, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* wheat|strong=\"H2406\"* and|strong=\"H5221\"* the|strong=\"H3588\"* spelt|strong=\"H3698\"* were|strong=\"H2007\"* not|strong=\"H3808\"* struck|strong=\"H5221\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3588\"* not|strong=\"H3808\"* grown up." + }, + { + "verseNum": 33, + "text": "Moses|strong=\"H4872\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3068\"* city|strong=\"H5892\"* from|strong=\"H3318\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H4872\"* spread|strong=\"H6566\"* out|strong=\"H3318\"* his|strong=\"H3068\"* hands|strong=\"H3709\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*; and|strong=\"H4872\"* the|strong=\"H3068\"* thunders|strong=\"H6963\"* and|strong=\"H4872\"* hail|strong=\"H1259\"* ceased|strong=\"H2308\"*, and|strong=\"H4872\"* the|strong=\"H3068\"* rain|strong=\"H4306\"* was|strong=\"H3068\"* not|strong=\"H3808\"* poured|strong=\"H5413\"* on|strong=\"H3068\"* the|strong=\"H3068\"* earth." + }, + { + "verseNum": 34, + "text": "When|strong=\"H3588\"* Pharaoh|strong=\"H6547\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H7200\"* rain|strong=\"H4306\"* and|strong=\"H6963\"* the|strong=\"H7200\"* hail|strong=\"H1259\"* and|strong=\"H6963\"* the|strong=\"H7200\"* thunders|strong=\"H6963\"* had|strong=\"H3588\"* ceased|strong=\"H2308\"*, he|strong=\"H1931\"* sinned|strong=\"H2398\"* yet|strong=\"H3588\"* more|strong=\"H3254\"*, and|strong=\"H6963\"* hardened|strong=\"H3513\"* his|strong=\"H7200\"* heart|strong=\"H3820\"*, he|strong=\"H1931\"* and|strong=\"H6963\"* his|strong=\"H7200\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H3068\"* heart|strong=\"H3820\"* of|strong=\"H1121\"* Pharaoh|strong=\"H6547\"* was|strong=\"H3068\"* hardened|strong=\"H2388\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* didn’t let|strong=\"H7971\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* go|strong=\"H7971\"*, just|strong=\"H1696\"* as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"* through|strong=\"H3027\"* Moses|strong=\"H4872\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Go|strong=\"H3068\"* in|strong=\"H3068\"* to|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* hardened|strong=\"H3513\"* his|strong=\"H3068\"* heart|strong=\"H3820\"* and|strong=\"H4872\"* the|strong=\"H3588\"* heart|strong=\"H3820\"* of|strong=\"H3068\"* his|strong=\"H3068\"* servants|strong=\"H5650\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H3068\"* show these my|strong=\"H3068\"* signs among|strong=\"H7130\"* them|strong=\"H7896\"*;" + }, + { + "verseNum": 2, + "text": "and|strong=\"H1121\"* that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3068\"* tell|strong=\"H5608\"* in|strong=\"H3068\"* the|strong=\"H3588\"* hearing of|strong=\"H1121\"* your|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H3068\"* son|strong=\"H1121\"*’s son|strong=\"H1121\"*, what|strong=\"H3045\"* things I|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H5953\"* to|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* my|strong=\"H3068\"* signs which|strong=\"H3068\"* I|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H5953\"* among them|strong=\"H7760\"*; that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 3, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron went|strong=\"H4872\"* in|strong=\"H3068\"* to|strong=\"H5704\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H4872\"* said to|strong=\"H5704\"* him|strong=\"H6440\"*, “This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Hebrews|strong=\"H5680\"*, says|strong=\"H3541\"*: ‘How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H3068\"* you|strong=\"H6440\"* refuse|strong=\"H3985\"* to|strong=\"H5704\"* humble|strong=\"H6031\"* yourself|strong=\"H6031\"* before|strong=\"H6440\"* me|strong=\"H6440\"*? Let|strong=\"H7971\"* my|strong=\"H3068\"* people|strong=\"H5971\"* go|strong=\"H7971\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* may|strong=\"H3068\"* serve|strong=\"H5647\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 4, + "text": "Or|strong=\"H3588\"* else|strong=\"H3588\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* refuse|strong=\"H3986\"* to|strong=\"H7971\"* let|strong=\"H7971\"* my|strong=\"H7971\"* people|strong=\"H5971\"* go|strong=\"H7971\"*, behold|strong=\"H2005\"*, tomorrow|strong=\"H4279\"* I|strong=\"H3588\"* will|strong=\"H5971\"* bring locusts into your|strong=\"H3588\"* country," + }, + { + "verseNum": 5, + "text": "and|strong=\"H6086\"* they|strong=\"H3808\"* shall|strong=\"H5869\"* cover|strong=\"H3680\"* the|strong=\"H3605\"* surface|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H3605\"* earth, so|strong=\"H4480\"* that|strong=\"H7200\"* one|strong=\"H3605\"* won’t be|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* see|strong=\"H7200\"* the|strong=\"H3605\"* earth. They|strong=\"H3808\"* shall|strong=\"H5869\"* eat the|strong=\"H3605\"* residue|strong=\"H3499\"* of|strong=\"H5869\"* that|strong=\"H7200\"* which|strong=\"H5869\"* has|strong=\"H5869\"* escaped|strong=\"H6413\"*, which|strong=\"H5869\"* remains|strong=\"H7604\"* to|strong=\"H3201\"* you|strong=\"H3605\"* from|strong=\"H4480\"* the|strong=\"H3605\"* hail|strong=\"H1259\"*, and|strong=\"H6086\"* shall|strong=\"H5869\"* eat every|strong=\"H3605\"* tree|strong=\"H6086\"* which|strong=\"H5869\"* grows|strong=\"H6779\"* for|strong=\"H6086\"* you|strong=\"H3605\"* out|strong=\"H4480\"* of|strong=\"H5869\"* the|strong=\"H3605\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 6, + "text": "Your|strong=\"H3605\"* houses|strong=\"H1004\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* filled|strong=\"H4390\"*, and|strong=\"H3117\"* the|strong=\"H3605\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* all|strong=\"H3605\"* your|strong=\"H3605\"* servants|strong=\"H5650\"*, and|strong=\"H3117\"* the|strong=\"H3605\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Egyptians|strong=\"H4713\"*, as|strong=\"H5704\"* neither|strong=\"H3808\"* your|strong=\"H3605\"* fathers nor|strong=\"H3808\"* your|strong=\"H3605\"* fathers’ fathers have|strong=\"H1961\"* seen|strong=\"H7200\"*, since|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H7200\"* they|strong=\"H3117\"* were|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*.’” He|strong=\"H3117\"* turned|strong=\"H6437\"*, and|strong=\"H3117\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 7, + "text": "Pharaoh|strong=\"H6547\"*’s servants|strong=\"H5650\"* said to|strong=\"H5704\"* him|strong=\"H7971\"*, “How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H3068\"* this|strong=\"H2088\"* man|strong=\"H2088\"* be|strong=\"H1961\"* a|strong=\"H3068\"* snare|strong=\"H4170\"* to|strong=\"H5704\"* us|strong=\"H3045\"*? Let|strong=\"H7971\"* the|strong=\"H3588\"* men|strong=\"H5650\"* go|strong=\"H7971\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H1961\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*, their|strong=\"H3068\"* God|strong=\"H3068\"*. Don’t you|strong=\"H3588\"* yet|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Egypt|strong=\"H4714\"* is|strong=\"H3068\"* destroyed?”" + }, + { + "verseNum": 8, + "text": "Moses|strong=\"H4872\"* and|strong=\"H1980\"* Aaron were|strong=\"H3068\"* brought|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H1980\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H1980\"* he|strong=\"H3068\"* said to|strong=\"H1980\"* them|strong=\"H7725\"*, “Go|strong=\"H1980\"*, serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*; but|strong=\"H7725\"* who|strong=\"H4310\"* are|strong=\"H3068\"* those|strong=\"H6547\"* who|strong=\"H4310\"* will|strong=\"H3068\"* go|strong=\"H1980\"*?”" + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* said, “We|strong=\"H3588\"* will|strong=\"H3068\"* go|strong=\"H3212\"* with|strong=\"H3068\"* our|strong=\"H3068\"* young|strong=\"H5288\"* and|strong=\"H1121\"* with|strong=\"H3068\"* our|strong=\"H3068\"* old|strong=\"H1121\"*. We|strong=\"H3588\"* will|strong=\"H3068\"* go|strong=\"H3212\"* with|strong=\"H3068\"* our|strong=\"H3068\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* with|strong=\"H3068\"* our|strong=\"H3068\"* daughters|strong=\"H1323\"*, with|strong=\"H3068\"* our|strong=\"H3068\"* flocks|strong=\"H6629\"* and|strong=\"H1121\"* with|strong=\"H3068\"* our|strong=\"H3068\"* herds|strong=\"H1241\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* must|strong=\"H1121\"* hold a|strong=\"H3068\"* feast|strong=\"H2282\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 10, + "text": "He|strong=\"H3588\"* said|strong=\"H3651\"* to|strong=\"H3068\"* them|strong=\"H7971\"*, “Yahweh|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3588\"* if|strong=\"H3588\"* I|strong=\"H3588\"* let|strong=\"H7971\"* you|strong=\"H3588\"* go|strong=\"H7971\"* with|strong=\"H5973\"* your|strong=\"H3068\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*! See|strong=\"H7200\"*, evil|strong=\"H7451\"* is|strong=\"H3068\"* clearly before|strong=\"H6440\"* your|strong=\"H3068\"* faces|strong=\"H6440\"*." + }, + { + "verseNum": 11, + "text": "Not|strong=\"H3808\"* so|strong=\"H3651\"*! Go|strong=\"H3212\"* now|strong=\"H4994\"* you|strong=\"H3588\"* who|strong=\"H3068\"* are|strong=\"H3068\"* men|strong=\"H1397\"*, and|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* that|strong=\"H3588\"* is|strong=\"H3068\"* what|strong=\"H3651\"* you|strong=\"H3588\"* desire|strong=\"H1245\"*!” Then|strong=\"H3651\"* they|strong=\"H3588\"* were|strong=\"H3068\"* driven|strong=\"H1644\"* out|strong=\"H1644\"* from|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*’s presence|strong=\"H6440\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Stretch|strong=\"H5186\"* out|strong=\"H5186\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* over|strong=\"H5921\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"* for|strong=\"H5921\"* the|strong=\"H3605\"* locusts, that|strong=\"H3605\"* they|strong=\"H3068\"* may|strong=\"H3068\"* come|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H5921\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H4872\"* eat every|strong=\"H3605\"* herb|strong=\"H6212\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land, even|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* the|strong=\"H3605\"* hail|strong=\"H1259\"* has|strong=\"H3068\"* left|strong=\"H7604\"*.”" + }, + { + "verseNum": 13, + "text": "Moses|strong=\"H4872\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* his|strong=\"H3605\"* rod|strong=\"H4294\"* over|strong=\"H5921\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H4872\"* Yahweh|strong=\"H3068\"* brought|strong=\"H5375\"* an|strong=\"H1961\"* east|strong=\"H6921\"* wind|strong=\"H7307\"* on|strong=\"H5921\"* the|strong=\"H3605\"* land all|strong=\"H3605\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, and|strong=\"H4872\"* all|strong=\"H3605\"* night|strong=\"H3915\"*; and|strong=\"H4872\"* when|strong=\"H1961\"* it|strong=\"H1931\"* was|strong=\"H3068\"* morning|strong=\"H1242\"*, the|strong=\"H3605\"* east|strong=\"H6921\"* wind|strong=\"H7307\"* brought|strong=\"H5375\"* the|strong=\"H3605\"* locusts." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3605\"* locusts went|strong=\"H5927\"* up|strong=\"H5927\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H1366\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* rested|strong=\"H5117\"* in|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H1366\"* Egypt|strong=\"H4714\"*. They|strong=\"H3651\"* were|strong=\"H1961\"* very|strong=\"H3966\"* grievous|strong=\"H3515\"*. Before|strong=\"H6440\"* them|strong=\"H5921\"* there|strong=\"H1961\"* were|strong=\"H1961\"* no|strong=\"H3808\"* such|strong=\"H3651\"* locusts as|strong=\"H1961\"* they|strong=\"H3651\"*, nor|strong=\"H3808\"* will|strong=\"H1961\"* there|strong=\"H1961\"* ever|strong=\"H3808\"* be|strong=\"H1961\"* again|strong=\"H6440\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H4714\"* they|strong=\"H3808\"* covered|strong=\"H3680\"* the|strong=\"H3605\"* surface|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth, so|strong=\"H3808\"* that|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H7704\"* was|strong=\"H4714\"* darkened|strong=\"H2821\"*, and|strong=\"H6086\"* they|strong=\"H3808\"* ate every|strong=\"H3605\"* herb|strong=\"H6212\"* of|strong=\"H5869\"* the|strong=\"H3605\"* land|strong=\"H7704\"*, and|strong=\"H6086\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H5869\"* the|strong=\"H3605\"* trees|strong=\"H6086\"* which|strong=\"H5869\"* the|strong=\"H3605\"* hail|strong=\"H1259\"* had|strong=\"H5869\"* left|strong=\"H3498\"*. There|strong=\"H3605\"* remained|strong=\"H3498\"* nothing|strong=\"H3808\"* green|strong=\"H3418\"*, either|strong=\"H3808\"* tree|strong=\"H6086\"* or|strong=\"H3808\"* herb|strong=\"H6212\"* of|strong=\"H5869\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, through|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H7704\"* of|strong=\"H5869\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H4872\"* Pharaoh|strong=\"H6547\"* called|strong=\"H7121\"* for|strong=\"H7121\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron in|strong=\"H3068\"* haste|strong=\"H4116\"*, and|strong=\"H4872\"* he|strong=\"H3068\"* said|strong=\"H7121\"*, “I|strong=\"H3068\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H4872\"* against|strong=\"H2398\"* you|strong=\"H7121\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* please|strong=\"H4994\"* forgive|strong=\"H5375\"* my|strong=\"H3068\"* sin|strong=\"H2403\"* again, and|strong=\"H3068\"* pray|strong=\"H4994\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, that|strong=\"H3068\"* he|strong=\"H3068\"* may|strong=\"H4994\"* also|strong=\"H3068\"* take|strong=\"H5375\"* away|strong=\"H5493\"* from|strong=\"H5493\"* me|strong=\"H4994\"* this|strong=\"H2088\"* death|strong=\"H4194\"*.”" + }, + { + "verseNum": 18, + "text": "Moses|strong=\"H3318\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H3068\"* prayed|strong=\"H6279\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* sent|strong=\"H3068\"* an|strong=\"H5375\"* exceedingly|strong=\"H3966\"* strong|strong=\"H2389\"* west|strong=\"H3220\"* wind|strong=\"H7307\"*, which|strong=\"H3068\"* took|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H3605\"* locusts, and|strong=\"H3068\"* drove|strong=\"H8628\"* them|strong=\"H5375\"* into|strong=\"H2015\"* the|strong=\"H3605\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*.+ 10:19 “Red Sea” is the translation for the Hebrew “Yam Suf”, which could be more literally translated “Sea of Reeds” or “Sea of Cattails”. It refers to the body of water currently known as the Red Sea, or possibly to one of the bodies of water connected to it or near it.* There|strong=\"H3605\"* remained|strong=\"H7604\"* not|strong=\"H3808\"* one|strong=\"H3605\"* locust in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H3808\"* Yahweh|strong=\"H3068\"* hardened|strong=\"H2388\"* Pharaoh|strong=\"H6547\"*’s heart|strong=\"H3820\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* didn’t let|strong=\"H7971\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* go|strong=\"H7971\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Stretch|strong=\"H5186\"* out|strong=\"H5186\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* sky|strong=\"H8064\"*, that|strong=\"H3068\"* there|strong=\"H1961\"* may|strong=\"H1961\"* be|strong=\"H1961\"* darkness|strong=\"H2822\"* over|strong=\"H5921\"* the|strong=\"H5921\"* land|strong=\"H8064\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, even|strong=\"H3068\"* darkness|strong=\"H2822\"* which|strong=\"H3068\"* may|strong=\"H1961\"* be|strong=\"H1961\"* felt|strong=\"H4959\"*.”" + }, + { + "verseNum": 22, + "text": "Moses|strong=\"H4872\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* his|strong=\"H3605\"* hand|strong=\"H3027\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H4872\"* there|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* thick darkness|strong=\"H2822\"* in|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H8064\"* of|strong=\"H3117\"* Egypt|strong=\"H4714\"* for|strong=\"H5921\"* three|strong=\"H7969\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H3117\"* didn’t see|strong=\"H7200\"* one|strong=\"H3605\"* another|strong=\"H7200\"*, and|strong=\"H1121\"* nobody|strong=\"H3808\"* rose|strong=\"H6965\"* from|strong=\"H3478\"* his|strong=\"H3605\"* place|strong=\"H8478\"* for|strong=\"H8478\"* three|strong=\"H7969\"* days|strong=\"H3117\"*; but|strong=\"H3808\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H1961\"* light in|strong=\"H3478\"* their|strong=\"H3605\"* dwellings|strong=\"H4186\"*." + }, + { + "verseNum": 24, + "text": "Pharaoh|strong=\"H6547\"* called|strong=\"H7121\"* to|strong=\"H3212\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* said|strong=\"H7121\"*, “Go|strong=\"H3212\"*, serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*. Only|strong=\"H7535\"* let|strong=\"H3212\"* your|strong=\"H3068\"* flocks|strong=\"H6629\"* and|strong=\"H4872\"* your|strong=\"H3068\"* herds|strong=\"H1241\"* stay behind. Let|strong=\"H3212\"* your|strong=\"H3068\"* little|strong=\"H2945\"* ones|strong=\"H2945\"* also|strong=\"H1571\"* go|strong=\"H3212\"* with|strong=\"H5973\"* you|strong=\"H5973\"*.”" + }, + { + "verseNum": 25, + "text": "Moses|strong=\"H4872\"* said, “You|strong=\"H5414\"* must|strong=\"H1571\"* also|strong=\"H1571\"* give|strong=\"H5414\"* into|strong=\"H6213\"* our|strong=\"H3068\"* hand|strong=\"H3027\"* sacrifices|strong=\"H2077\"* and|strong=\"H4872\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*, that|strong=\"H3068\"* we|strong=\"H3068\"* may|strong=\"H3068\"* sacrifice|strong=\"H2077\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 26, + "text": "Our|strong=\"H3068\"* livestock|strong=\"H4735\"* also|strong=\"H1571\"* shall|strong=\"H3068\"* go|strong=\"H3212\"* with|strong=\"H5973\"* us|strong=\"H3045\"*. Not|strong=\"H3808\"* a|strong=\"H3068\"* hoof|strong=\"H6541\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* left|strong=\"H7604\"* behind|strong=\"H4480\"*, for|strong=\"H3588\"* of|strong=\"H3068\"* it|strong=\"H3588\"* we|strong=\"H3068\"* must|strong=\"H1571\"* take|strong=\"H3947\"* to|strong=\"H5704\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*; and|strong=\"H3068\"* we|strong=\"H3068\"* don’t know|strong=\"H3045\"* with|strong=\"H5973\"* what|strong=\"H4100\"* we|strong=\"H3068\"* must|strong=\"H1571\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*, until|strong=\"H5704\"* we|strong=\"H3068\"* come|strong=\"H3212\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 27, + "text": "But|strong=\"H3808\"* Yahweh|strong=\"H3068\"* hardened|strong=\"H2388\"* Pharaoh|strong=\"H6547\"*’s heart|strong=\"H3820\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* wouldn’t let|strong=\"H7971\"* them|strong=\"H7971\"* go|strong=\"H7971\"*." + }, + { + "verseNum": 28, + "text": "Pharaoh|strong=\"H6547\"* said to|strong=\"H4191\"* him|strong=\"H6440\"*, “Get|strong=\"H3212\"* away|strong=\"H3212\"* from|strong=\"H6440\"* me|strong=\"H6440\"*! Be|strong=\"H4191\"* careful|strong=\"H8104\"* to|strong=\"H4191\"* see|strong=\"H7200\"* my|strong=\"H8104\"* face|strong=\"H6440\"* no|strong=\"H7200\"* more|strong=\"H3254\"*; for|strong=\"H3588\"* in|strong=\"H5921\"* the|strong=\"H6440\"* day|strong=\"H3117\"* you|strong=\"H3588\"* see|strong=\"H7200\"* my|strong=\"H8104\"* face|strong=\"H6440\"* you|strong=\"H3588\"* shall|strong=\"H3117\"* die|strong=\"H4191\"*!”" + }, + { + "verseNum": 29, + "text": "Moses|strong=\"H4872\"* said|strong=\"H1696\"*, “You|strong=\"H6440\"* have|strong=\"H7200\"* spoken|strong=\"H1696\"* well|strong=\"H3651\"*. I|strong=\"H3651\"* will|strong=\"H3808\"* see|strong=\"H7200\"* your|strong=\"H6440\"* face|strong=\"H6440\"* again|strong=\"H5750\"* no|strong=\"H3808\"* more|strong=\"H3254\"*.”" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H3651\"* to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “I|strong=\"H5921\"* will|strong=\"H3068\"* bring yet|strong=\"H5750\"* one|strong=\"H2088\"* more|strong=\"H5750\"* plague|strong=\"H5061\"* on|strong=\"H5921\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H4872\"* on|strong=\"H5921\"* Egypt|strong=\"H4714\"*; afterwards he|strong=\"H3651\"* will|strong=\"H3068\"* let|strong=\"H7971\"* you|strong=\"H7971\"* go|strong=\"H7971\"*. When|strong=\"H7971\"* he|strong=\"H3651\"* lets|strong=\"H7971\"* you|strong=\"H7971\"* go|strong=\"H7971\"*, he|strong=\"H3651\"* will|strong=\"H3068\"* surely|strong=\"H3651\"* thrust|strong=\"H7971\"* you|strong=\"H7971\"* out|strong=\"H7971\"* altogether|strong=\"H3617\"*." + }, + { + "verseNum": 2, + "text": "Speak|strong=\"H1696\"* now|strong=\"H4994\"* in|strong=\"H1696\"* the|strong=\"H1696\"* ears of|strong=\"H3627\"* the|strong=\"H1696\"* people|strong=\"H5971\"*, and|strong=\"H3701\"* let|strong=\"H4994\"* every|strong=\"H5971\"* man ask|strong=\"H7592\"* of|strong=\"H3627\"* his|strong=\"H7592\"* neighbor|strong=\"H7453\"*, and|strong=\"H3701\"* every|strong=\"H5971\"* woman of|strong=\"H3627\"* her|strong=\"H7592\"* neighbor|strong=\"H7453\"*, jewels|strong=\"H3627\"* of|strong=\"H3627\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* jewels|strong=\"H3627\"* of|strong=\"H3627\"* gold|strong=\"H2091\"*.”" + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* the|strong=\"H5414\"* people|strong=\"H5971\"* favor|strong=\"H2580\"* in|strong=\"H3068\"* the|strong=\"H5414\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* the|strong=\"H5414\"* Egyptians|strong=\"H4714\"*. Moreover|strong=\"H1571\"*, the|strong=\"H5414\"* man|strong=\"H1419\"* Moses|strong=\"H4872\"* was|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* in|strong=\"H3068\"* the|strong=\"H5414\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, in|strong=\"H3068\"* the|strong=\"H5414\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*’s servants|strong=\"H5650\"*, and|strong=\"H4872\"* in|strong=\"H3068\"* the|strong=\"H5414\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* the|strong=\"H5414\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 4, + "text": "Moses|strong=\"H4872\"* said|strong=\"H3318\"*, “This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘About|strong=\"H3541\"* midnight|strong=\"H2676\"* I|strong=\"H3541\"* will|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H8432\"* the|strong=\"H3541\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 5, + "text": "and|strong=\"H4714\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H3427\"* Egypt|strong=\"H4714\"* shall|strong=\"H4714\"* die|strong=\"H4191\"*, from|strong=\"H5921\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H3427\"* Pharaoh|strong=\"H6547\"* who|strong=\"H3605\"* sits|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H3605\"* throne|strong=\"H3678\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H3427\"* the|strong=\"H3605\"* female|strong=\"H8198\"* servant|strong=\"H8198\"* who|strong=\"H3605\"* is|strong=\"H3605\"* behind|strong=\"H5921\"* the|strong=\"H3605\"* mill|strong=\"H7347\"*, and|strong=\"H4714\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H3427\"* livestock." + }, + { + "verseNum": 6, + "text": "There|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* great|strong=\"H1419\"* cry|strong=\"H6818\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Egypt|strong=\"H4714\"*, such|strong=\"H3644\"* as|strong=\"H1961\"* there|strong=\"H1961\"* has|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"*, nor|strong=\"H3808\"* will|strong=\"H1961\"* be|strong=\"H1961\"* any|strong=\"H3605\"* more|strong=\"H3254\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"H3808\"* against|strong=\"H4714\"* any|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* a|strong=\"H3068\"* dog|strong=\"H3611\"* won’t even|strong=\"H5704\"* bark|strong=\"H2782\"* or|strong=\"H3808\"* move|strong=\"H2782\"* its|strong=\"H3605\"* tongue|strong=\"H3956\"*, against|strong=\"H4714\"* man|strong=\"H1121\"* or|strong=\"H3808\"* animal, that|strong=\"H3045\"* you|strong=\"H3605\"* may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3045\"* Yahweh|strong=\"H3068\"* makes|strong=\"H6395\"* a|strong=\"H3068\"* distinction|strong=\"H6395\"* between|strong=\"H3045\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"* and|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* servants|strong=\"H5650\"* of|strong=\"H5650\"* yours|strong=\"H5650\"* will|strong=\"H5971\"* come|strong=\"H3318\"* down|strong=\"H3381\"* to|strong=\"H3381\"* me|strong=\"H3318\"*, and|strong=\"H5971\"* bow|strong=\"H7812\"* down|strong=\"H3381\"* themselves|strong=\"H7812\"* to|strong=\"H3381\"* me|strong=\"H3318\"*, saying, “Get|strong=\"H3318\"* out|strong=\"H3318\"*, with|strong=\"H5973\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* follow|strong=\"H7272\"* you|strong=\"H3605\"*;” and|strong=\"H5971\"* after|strong=\"H7272\"* that|strong=\"H5971\"* I|strong=\"H3651\"* will|strong=\"H5971\"* go|strong=\"H3318\"* out|strong=\"H3318\"*.’” He|strong=\"H3651\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Pharaoh|strong=\"H6547\"* in|strong=\"H5650\"* hot|strong=\"H2750\"* anger." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H8085\"* to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Pharaoh|strong=\"H6547\"* won’t listen|strong=\"H8085\"* to|strong=\"H3068\"* you|strong=\"H3808\"*, that|strong=\"H8085\"* my|strong=\"H8085\"* wonders|strong=\"H4159\"* may|strong=\"H3068\"* be|strong=\"H3808\"* multiplied|strong=\"H7235\"* in|strong=\"H3068\"* the|strong=\"H8085\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*.”" + }, + { + "verseNum": 10, + "text": "Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron did|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* wonders|strong=\"H4159\"* before|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*, but|strong=\"H3808\"* Yahweh|strong=\"H3068\"* hardened|strong=\"H2388\"* Pharaoh|strong=\"H6547\"*’s heart|strong=\"H3820\"*, and|strong=\"H1121\"* he|strong=\"H6213\"* didn’t let|strong=\"H7971\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* go|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H1121\"* his|strong=\"H3605\"* land|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron in|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, saying," + }, + { + "verseNum": 2, + "text": "“This|strong=\"H2088\"* month|strong=\"H2320\"* shall|strong=\"H1931\"* be|strong=\"H8141\"* to|strong=\"H7223\"* you|strong=\"H8141\"* the|strong=\"H8141\"* beginning|strong=\"H7218\"* of|strong=\"H8141\"* months|strong=\"H2320\"*. It|strong=\"H1931\"* shall|strong=\"H1931\"* be|strong=\"H8141\"* the|strong=\"H8141\"* first|strong=\"H7223\"* month|strong=\"H2320\"* of|strong=\"H8141\"* the|strong=\"H8141\"* year|strong=\"H8141\"* to|strong=\"H7223\"* you|strong=\"H8141\"*." + }, + { + "verseNum": 3, + "text": "Speak|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘On|strong=\"H1696\"* the|strong=\"H3605\"* tenth|strong=\"H6218\"* day|strong=\"H2320\"* of|strong=\"H1004\"* this|strong=\"H2088\"* month|strong=\"H2320\"*, they|strong=\"H2320\"* shall|strong=\"H3478\"* take|strong=\"H3947\"* to|strong=\"H1696\"* them|strong=\"H3947\"* every|strong=\"H3605\"* man|strong=\"H3605\"* a|strong=\"H3068\"* lamb|strong=\"H7716\"*, according to|strong=\"H1696\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, a|strong=\"H3068\"* lamb|strong=\"H7716\"* for|strong=\"H1004\"* a|strong=\"H3068\"* household|strong=\"H1004\"*;" + }, + { + "verseNum": 4, + "text": "and|strong=\"H1004\"* if|strong=\"H1961\"* the|strong=\"H5921\"* household|strong=\"H1004\"* is|strong=\"H1931\"* too|strong=\"H5921\"* little|strong=\"H4591\"* for|strong=\"H5921\"* a|strong=\"H3068\"* lamb|strong=\"H7716\"*, then|strong=\"H1961\"* he|strong=\"H1931\"* and|strong=\"H1004\"* his|strong=\"H3947\"* neighbor|strong=\"H7934\"* next|strong=\"H5921\"* to|strong=\"H1961\"* his|strong=\"H3947\"* house|strong=\"H1004\"* shall|strong=\"H1004\"* take|strong=\"H3947\"* one|strong=\"H1931\"* according|strong=\"H5921\"* to|strong=\"H1961\"* the|strong=\"H5921\"* number|strong=\"H4373\"* of|strong=\"H1004\"* the|strong=\"H5921\"* souls|strong=\"H5315\"*. You|strong=\"H5921\"* shall|strong=\"H1004\"* make|strong=\"H3947\"* your|strong=\"H3947\"* count|strong=\"H3699\"* for|strong=\"H5921\"* the|strong=\"H5921\"* lamb|strong=\"H7716\"* according|strong=\"H5921\"* to|strong=\"H1961\"* what|strong=\"H6310\"* everyone can|strong=\"H3947\"* eat|strong=\"H6310\"*." + }, + { + "verseNum": 5, + "text": "Your|strong=\"H3947\"* lamb|strong=\"H3532\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*, a|strong=\"H3068\"* male|strong=\"H2145\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. You|strong=\"H3947\"* shall|strong=\"H1121\"* take|strong=\"H3947\"* it|strong=\"H1961\"* from|strong=\"H4480\"* the|strong=\"H3947\"* sheep|strong=\"H7716\"* or|strong=\"H1121\"* from|strong=\"H4480\"* the|strong=\"H3947\"* goats|strong=\"H5795\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3605\"* shall|strong=\"H3478\"* keep|strong=\"H4931\"* it|strong=\"H7819\"* until|strong=\"H5704\"* the|strong=\"H3605\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* same|strong=\"H2088\"* month|strong=\"H2320\"*; and|strong=\"H3478\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H3117\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"* shall|strong=\"H3478\"* kill|strong=\"H7819\"* it|strong=\"H7819\"* at|strong=\"H3478\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H5921\"* shall|strong=\"H1004\"* take|strong=\"H3947\"* some|strong=\"H4480\"* of|strong=\"H1004\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*, and|strong=\"H1004\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* door|strong=\"H4201\"* posts|strong=\"H4201\"* and|strong=\"H1004\"* on|strong=\"H5921\"* the|strong=\"H5921\"* lintel|strong=\"H4947\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* houses|strong=\"H1004\"* in|strong=\"H5921\"* which|strong=\"H1004\"* they|strong=\"H5921\"* shall|strong=\"H1004\"* eat it|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H5921\"* shall|strong=\"H1320\"* eat the|strong=\"H5921\"* meat|strong=\"H1320\"* in|strong=\"H5921\"* that|strong=\"H2088\"* night|strong=\"H3915\"*, roasted|strong=\"H6748\"* with|strong=\"H5921\"* fire, with|strong=\"H5921\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*. They|strong=\"H5921\"* shall|strong=\"H1320\"* eat it|strong=\"H5921\"* with|strong=\"H5921\"* bitter|strong=\"H4844\"* herbs|strong=\"H4844\"*." + }, + { + "verseNum": 9, + "text": "Don’t eat it|strong=\"H5921\"* raw|strong=\"H4995\"*, nor|strong=\"H4480\"* boiled|strong=\"H1310\"* at|strong=\"H5921\"* all|strong=\"H5921\"* with|strong=\"H5921\"* water|strong=\"H4325\"*, but|strong=\"H3588\"* roasted|strong=\"H6748\"* with|strong=\"H5921\"* fire; with|strong=\"H5921\"* its|strong=\"H5921\"* head|strong=\"H7218\"*, its|strong=\"H5921\"* legs|strong=\"H3767\"* and|strong=\"H7218\"* its|strong=\"H5921\"* inner|strong=\"H7130\"* parts|strong=\"H7130\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H5704\"* shall|strong=\"H3808\"* let|strong=\"H3808\"* nothing|strong=\"H3808\"* of|strong=\"H4480\"* it|strong=\"H1242\"* remain|strong=\"H3498\"* until|strong=\"H5704\"* the|strong=\"H4480\"* morning|strong=\"H1242\"*; but|strong=\"H3808\"* that|strong=\"H4480\"* which remains|strong=\"H3498\"* of|strong=\"H4480\"* it|strong=\"H1242\"* until|strong=\"H5704\"* the|strong=\"H4480\"* morning|strong=\"H1242\"* you|strong=\"H5704\"* shall|strong=\"H3808\"* burn|strong=\"H8313\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 11, + "text": "This|strong=\"H1931\"* is|strong=\"H3068\"* how you|strong=\"H3027\"* shall|strong=\"H3068\"* eat it|strong=\"H1931\"*: with|strong=\"H3068\"* your|strong=\"H3068\"* belt on|strong=\"H2296\"* your|strong=\"H3068\"* waist|strong=\"H4975\"*, your|strong=\"H3068\"* sandals|strong=\"H5275\"* on|strong=\"H2296\"* your|strong=\"H3068\"* feet|strong=\"H7272\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* staff|strong=\"H4731\"* in|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*; and|strong=\"H3068\"* you|strong=\"H3027\"* shall|strong=\"H3068\"* eat it|strong=\"H1931\"* in|strong=\"H3068\"* haste|strong=\"H2649\"*: it|strong=\"H1931\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s Passover|strong=\"H6453\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H5704\"* I|strong=\"H5704\"* will|strong=\"H3068\"* go|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"* in|strong=\"H3068\"* that|strong=\"H3605\"* night|strong=\"H3915\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* in|strong=\"H3068\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, both|strong=\"H3605\"* man|strong=\"H3605\"* and|strong=\"H3068\"* animal. I|strong=\"H5704\"* will|strong=\"H3068\"* execute|strong=\"H6213\"* judgments|strong=\"H8201\"* against|strong=\"H4714\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gods of|strong=\"H3068\"* Egypt|strong=\"H4714\"*. I|strong=\"H5704\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5921\"* blood|strong=\"H1818\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* to|strong=\"H1961\"* you|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* token on|strong=\"H5921\"* the|strong=\"H5921\"* houses|strong=\"H1004\"* where|strong=\"H8033\"* you|strong=\"H5921\"* are|strong=\"H1004\"*. When|strong=\"H1961\"* I|strong=\"H5921\"* see|strong=\"H7200\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*, I|strong=\"H5921\"* will|strong=\"H1961\"* pass|strong=\"H1961\"* over|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H1004\"* no|strong=\"H3808\"* plague|strong=\"H5063\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H5921\"* you|strong=\"H5921\"* to|strong=\"H1961\"* destroy|strong=\"H4889\"* you|strong=\"H5921\"* when|strong=\"H1961\"* I|strong=\"H5921\"* strike|strong=\"H5221\"* the|strong=\"H5921\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 14, + "text": "This|strong=\"H2088\"* day|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* memorial|strong=\"H2146\"* for|strong=\"H2708\"* you|strong=\"H3117\"*. You|strong=\"H3117\"* shall|strong=\"H3068\"* keep|strong=\"H2287\"* it|strong=\"H1961\"* as|strong=\"H3117\"* a|strong=\"H3068\"* feast|strong=\"H2282\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. You|strong=\"H3117\"* shall|strong=\"H3068\"* keep|strong=\"H2287\"* it|strong=\"H1961\"* as|strong=\"H3117\"* a|strong=\"H3068\"* feast|strong=\"H2282\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"* by|strong=\"H3117\"* an|strong=\"H1961\"* ordinance|strong=\"H2708\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 15, + "text": "“‘Seven|strong=\"H7651\"* days|strong=\"H3117\"* you|strong=\"H3588\"* shall|strong=\"H3478\"* eat unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*; even|strong=\"H5704\"* the|strong=\"H3605\"* first|strong=\"H7223\"* day|strong=\"H3117\"* you|strong=\"H3588\"* shall|strong=\"H3478\"* put|strong=\"H7673\"* away|strong=\"H7673\"* yeast|strong=\"H7603\"* out|strong=\"H3605\"* of|strong=\"H1004\"* your|strong=\"H3605\"* houses|strong=\"H1004\"*, for|strong=\"H3588\"* whoever|strong=\"H3605\"* eats leavened|strong=\"H2557\"* bread|strong=\"H4682\"* from|strong=\"H3772\"* the|strong=\"H3605\"* first|strong=\"H7223\"* day|strong=\"H3117\"* until|strong=\"H5704\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, that|strong=\"H3588\"* soul|strong=\"H5315\"* shall|strong=\"H3478\"* be|strong=\"H3478\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 16, + "text": "In|strong=\"H6213\"* the|strong=\"H3605\"* first|strong=\"H7223\"* day|strong=\"H3117\"* there|strong=\"H1961\"* shall|strong=\"H5315\"* be|strong=\"H1961\"* to|strong=\"H1961\"* you|strong=\"H3605\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*, and|strong=\"H3117\"* in|strong=\"H6213\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*; no|strong=\"H3808\"* kind of|strong=\"H3117\"* work|strong=\"H4399\"* shall|strong=\"H5315\"* be|strong=\"H1961\"* done|strong=\"H6213\"* in|strong=\"H6213\"* them|strong=\"H6213\"*, except|strong=\"H3808\"* that|strong=\"H3605\"* which|strong=\"H1931\"* every|strong=\"H3605\"* man|strong=\"H5315\"* must|strong=\"H5315\"* eat, only|strong=\"H3605\"* that|strong=\"H3605\"* may|strong=\"H1961\"* be|strong=\"H1961\"* done|strong=\"H6213\"* by|strong=\"H3117\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H3588\"* shall|strong=\"H3117\"* observe|strong=\"H8104\"* the|strong=\"H3588\"* feast of|strong=\"H3117\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*; for|strong=\"H3588\"* in|strong=\"H3117\"* this|strong=\"H2088\"* same|strong=\"H6106\"* day|strong=\"H3117\"* I|strong=\"H3588\"* have|strong=\"H3117\"* brought|strong=\"H3318\"* your|strong=\"H8104\"* armies|strong=\"H6635\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H3588\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"*. Therefore|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3117\"* observe|strong=\"H8104\"* this|strong=\"H2088\"* day|strong=\"H3117\"* throughout|strong=\"H1755\"* your|strong=\"H8104\"* generations|strong=\"H1755\"* by|strong=\"H3117\"* an|strong=\"H3588\"* ordinance|strong=\"H2708\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 18, + "text": "In|strong=\"H3117\"* the|strong=\"H3117\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, on|strong=\"H3117\"* the|strong=\"H3117\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* month|strong=\"H2320\"* at|strong=\"H2320\"* evening|strong=\"H6153\"*, you|strong=\"H3117\"* shall|strong=\"H3117\"* eat unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*, until|strong=\"H5704\"* the|strong=\"H3117\"* twenty|strong=\"H6242\"* first|strong=\"H7223\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* month|strong=\"H2320\"* at|strong=\"H2320\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 19, + "text": "There|strong=\"H4672\"* shall|strong=\"H3478\"* be|strong=\"H3808\"* no|strong=\"H3808\"* yeast|strong=\"H7603\"* found|strong=\"H4672\"* in|strong=\"H3478\"* your|strong=\"H3605\"* houses|strong=\"H1004\"* for|strong=\"H3588\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, for|strong=\"H3588\"* whoever|strong=\"H3605\"* eats that|strong=\"H3588\"* which|strong=\"H1931\"* is|strong=\"H1931\"* leavened|strong=\"H2557\"*, that|strong=\"H3588\"* soul|strong=\"H5315\"* shall|strong=\"H3478\"* be|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, whether he|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"*, or|strong=\"H3808\"* one|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H1931\"* born|strong=\"H3808\"* in|strong=\"H3478\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 20, + "text": "You|strong=\"H3605\"* shall|strong=\"H3808\"* eat nothing|strong=\"H3808\"* leavened|strong=\"H2557\"*. In|strong=\"H3808\"* all|strong=\"H3605\"* your|strong=\"H3605\"* habitations|strong=\"H4186\"* you|strong=\"H3605\"* shall|strong=\"H3808\"* eat unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*.’”" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H3947\"* Moses|strong=\"H4872\"* called|strong=\"H7121\"* for|strong=\"H7121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H2205\"* Israel|strong=\"H3478\"*, and|strong=\"H4872\"* said|strong=\"H7121\"* to|strong=\"H3478\"* them|strong=\"H7121\"*, “Draw|strong=\"H4900\"* out|strong=\"H3947\"*, and|strong=\"H4872\"* take|strong=\"H3947\"* lambs|strong=\"H6629\"* according to|strong=\"H3478\"* your|strong=\"H3605\"* families|strong=\"H4940\"*, and|strong=\"H4872\"* kill|strong=\"H7819\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H5704\"* shall|strong=\"H1004\"* take|strong=\"H3947\"* a|strong=\"H3068\"* bunch of|strong=\"H1004\"* hyssop, and|strong=\"H1004\"* dip|strong=\"H2881\"* it|strong=\"H1242\"* in|strong=\"H1004\"* the|strong=\"H3947\"* blood|strong=\"H1818\"* that|strong=\"H4480\"* is|strong=\"H1004\"* in|strong=\"H1004\"* the|strong=\"H3947\"* basin|strong=\"H5592\"*, and|strong=\"H1004\"* strike|strong=\"H5060\"* the|strong=\"H3947\"* lintel|strong=\"H4947\"* and|strong=\"H1004\"* the|strong=\"H3947\"* two|strong=\"H8147\"* door|strong=\"H6607\"* posts|strong=\"H4201\"* with|strong=\"H1004\"* the|strong=\"H3947\"* blood|strong=\"H1818\"* that|strong=\"H4480\"* is|strong=\"H1004\"* in|strong=\"H1004\"* the|strong=\"H3947\"* basin|strong=\"H5592\"*. None|strong=\"H3808\"* of|strong=\"H1004\"* you|strong=\"H5704\"* shall|strong=\"H1004\"* go|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3947\"* door|strong=\"H6607\"* of|strong=\"H1004\"* his|strong=\"H3947\"* house|strong=\"H1004\"* until|strong=\"H5704\"* the|strong=\"H3947\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"H5921\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* to|strong=\"H3068\"* strike|strong=\"H5062\"* the|strong=\"H5921\"* Egyptians|strong=\"H4714\"*; and|strong=\"H3068\"* when|strong=\"H7200\"* he|strong=\"H3068\"* sees|strong=\"H7200\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* the|strong=\"H5921\"* lintel|strong=\"H4947\"*, and|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* door|strong=\"H6607\"* posts|strong=\"H4201\"*, Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* pass|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* allow|strong=\"H5414\"* the|strong=\"H5921\"* destroyer|strong=\"H7843\"* to|strong=\"H3068\"* come|strong=\"H5674\"* in|strong=\"H5921\"* to|strong=\"H3068\"* your|strong=\"H3068\"* houses|strong=\"H1004\"* to|strong=\"H3068\"* strike|strong=\"H5062\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H5704\"* shall|strong=\"H1121\"* observe|strong=\"H8104\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* for|strong=\"H5704\"* an|strong=\"H2088\"* ordinance|strong=\"H2706\"* to|strong=\"H5704\"* you|strong=\"H5704\"* and|strong=\"H1121\"* to|strong=\"H5704\"* your|strong=\"H8104\"* sons|strong=\"H1121\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 25, + "text": "It|strong=\"H5414\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"* when|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1696\"* the|strong=\"H3588\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"*, as|strong=\"H1961\"* he|strong=\"H3588\"* has|strong=\"H3068\"* promised|strong=\"H1696\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* this|strong=\"H2063\"* service|strong=\"H5656\"*." + }, + { + "verseNum": 26, + "text": "It|strong=\"H3588\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, when|strong=\"H3588\"* your|strong=\"H3588\"* children|strong=\"H1121\"* ask you|strong=\"H3588\"*, ‘What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3588\"* mean by|strong=\"H1961\"* this|strong=\"H2063\"* service|strong=\"H5656\"*?’" + }, + { + "verseNum": 27, + "text": "that|strong=\"H5971\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* say|strong=\"H3478\"*, ‘It|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H5921\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s Passover|strong=\"H6453\"*, who|strong=\"H1931\"* passed|strong=\"H5971\"* over|strong=\"H5921\"* the|strong=\"H5921\"* houses|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* Egypt|strong=\"H4714\"*, when|strong=\"H3068\"* he|strong=\"H1931\"* struck|strong=\"H5062\"* the|strong=\"H5921\"* Egyptians|strong=\"H4714\"*, and|strong=\"H1121\"* spared|strong=\"H5337\"* our|strong=\"H3068\"* houses|strong=\"H1004\"*.’”" + }, + { + "verseNum": 28, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H3212\"* and|strong=\"H1121\"* did|strong=\"H6213\"* so|strong=\"H3651\"*; as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron, so|strong=\"H3651\"* they|strong=\"H3651\"* did|strong=\"H6213\"*." + }, + { + "verseNum": 29, + "text": "At|strong=\"H3427\"* midnight|strong=\"H2677\"*, Yahweh|strong=\"H3068\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, from|strong=\"H5921\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1004\"* Pharaoh|strong=\"H6547\"* who|strong=\"H3605\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H3605\"* throne|strong=\"H3678\"* to|strong=\"H5704\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1004\"* the|strong=\"H3605\"* captive|strong=\"H7628\"* who|strong=\"H3605\"* was|strong=\"H3068\"* in|strong=\"H3427\"* the|strong=\"H3605\"* dungeon|strong=\"H1004\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1004\"* livestock." + }, + { + "verseNum": 30, + "text": "Pharaoh|strong=\"H6547\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H1004\"* the|strong=\"H3605\"* night|strong=\"H3915\"*, he|strong=\"H1931\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"*; and|strong=\"H6965\"* there|strong=\"H8033\"* was|strong=\"H1961\"* a|strong=\"H3068\"* great|strong=\"H1419\"* cry|strong=\"H6818\"* in|strong=\"H1004\"* Egypt|strong=\"H4714\"*, for|strong=\"H3588\"* there|strong=\"H8033\"* was|strong=\"H1961\"* not|strong=\"H1961\"* a|strong=\"H3068\"* house|strong=\"H1004\"* where|strong=\"H8033\"* there|strong=\"H8033\"* was|strong=\"H1961\"* not|strong=\"H1961\"* one|strong=\"H3605\"* dead|strong=\"H4191\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"H3068\"* called|strong=\"H7121\"* for|strong=\"H7121\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron by|strong=\"H3068\"* night|strong=\"H3915\"*, and|strong=\"H1121\"* said|strong=\"H1696\"*, “Rise|strong=\"H6965\"* up|strong=\"H6965\"*, get|strong=\"H6965\"* out|strong=\"H3318\"* from|strong=\"H3318\"* among|strong=\"H8432\"* my|strong=\"H3068\"* people|strong=\"H5971\"*, both|strong=\"H1571\"* you|strong=\"H8432\"* and|strong=\"H1121\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* go|strong=\"H3212\"*, serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*, as|strong=\"H1571\"* you|strong=\"H8432\"* have|strong=\"H3068\"* said|strong=\"H1696\"*!" + }, + { + "verseNum": 32, + "text": "Take|strong=\"H3947\"* both|strong=\"H1571\"* your|strong=\"H3947\"* flocks|strong=\"H6629\"* and|strong=\"H3212\"* your|strong=\"H3947\"* herds|strong=\"H1241\"*, as|strong=\"H1571\"* you|strong=\"H3947\"* have|strong=\"H1571\"* said|strong=\"H1696\"*, and|strong=\"H3212\"* be|strong=\"H1571\"* gone|strong=\"H3212\"*; and|strong=\"H3212\"* bless|strong=\"H1288\"* me|strong=\"H3947\"* also|strong=\"H1571\"*!”" + }, + { + "verseNum": 33, + "text": "The|strong=\"H3605\"* Egyptians|strong=\"H4713\"* were|strong=\"H5971\"* urgent|strong=\"H2388\"* with|strong=\"H5921\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, to|strong=\"H4191\"* send|strong=\"H7971\"* them|strong=\"H5921\"* out|strong=\"H7971\"* of|strong=\"H4480\"* the|strong=\"H3605\"* land in|strong=\"H5921\"* haste|strong=\"H4116\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* said, “We|strong=\"H3588\"* are|strong=\"H5971\"* all|strong=\"H3605\"* dead|strong=\"H4191\"* men|strong=\"H5971\"*.”" + }, + { + "verseNum": 34, + "text": "The|strong=\"H5921\"* people|strong=\"H5971\"* took|strong=\"H5375\"* their|strong=\"H5375\"* dough|strong=\"H1217\"* before|strong=\"H2962\"* it|strong=\"H5921\"* was|strong=\"H5971\"* leavened|strong=\"H2556\"*, their|strong=\"H5375\"* kneading|strong=\"H4863\"* troughs being|strong=\"H5971\"* bound|strong=\"H6887\"* up|strong=\"H5375\"* in|strong=\"H5921\"* their|strong=\"H5375\"* clothes|strong=\"H8071\"* on|strong=\"H5921\"* their|strong=\"H5375\"* shoulders|strong=\"H7926\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* according|strong=\"H3701\"* to|strong=\"H3478\"* the|strong=\"H6213\"* word|strong=\"H1697\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*; and|strong=\"H1121\"* they|strong=\"H6213\"* asked|strong=\"H7592\"* of|strong=\"H1121\"* the|strong=\"H6213\"* Egyptians|strong=\"H4714\"* jewels|strong=\"H3627\"* of|strong=\"H1121\"* silver|strong=\"H3701\"*, and|strong=\"H1121\"* jewels|strong=\"H3627\"* of|strong=\"H1121\"* gold|strong=\"H2091\"*, and|strong=\"H1121\"* clothing|strong=\"H8071\"*." + }, + { + "verseNum": 36, + "text": "Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* the|strong=\"H5414\"* people|strong=\"H5971\"* favor|strong=\"H2580\"* in|strong=\"H3068\"* the|strong=\"H5414\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* the|strong=\"H5414\"* Egyptians|strong=\"H4714\"*, so|strong=\"H5414\"* that|strong=\"H5971\"* they|strong=\"H3068\"* let|strong=\"H5414\"* them|strong=\"H5414\"* have|strong=\"H3068\"* what they|strong=\"H3068\"* asked|strong=\"H7592\"*. They|strong=\"H3068\"* plundered|strong=\"H5337\"* the|strong=\"H5414\"* Egyptians|strong=\"H4714\"*." + }, + { + "verseNum": 37, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Rameses|strong=\"H7486\"* to|strong=\"H3478\"* Succoth|strong=\"H5523\"*, about|strong=\"H3478\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* thousand on|strong=\"H3478\"* foot|strong=\"H7273\"* who|strong=\"H1121\"* were|strong=\"H3478\"* men|strong=\"H1121\"*, in|strong=\"H3478\"* addition to|strong=\"H3478\"* children|strong=\"H1121\"*." + }, + { + "verseNum": 38, + "text": "A|strong=\"H3068\"* mixed|strong=\"H6154\"* multitude|strong=\"H7227\"* went|strong=\"H5927\"* up|strong=\"H5927\"* also|strong=\"H1571\"* with|strong=\"H5927\"* them|strong=\"H5927\"*, with|strong=\"H5927\"* flocks|strong=\"H6629\"*, herds|strong=\"H1241\"*, and|strong=\"H6629\"* even|strong=\"H1571\"* very|strong=\"H3966\"* much|strong=\"H7227\"* livestock|strong=\"H4735\"*." + }, + { + "verseNum": 39, + "text": "They|strong=\"H3588\"* baked unleavened|strong=\"H4682\"* cakes|strong=\"H5692\"* of|strong=\"H3318\"* the|strong=\"H3588\"* dough|strong=\"H1217\"* which|strong=\"H3588\"* they|strong=\"H3588\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3318\"* Egypt|strong=\"H4714\"*; for|strong=\"H3588\"* it|strong=\"H3588\"* wasn’t leavened|strong=\"H2556\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H4714\"* thrust out|strong=\"H3318\"* of|strong=\"H3318\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* couldn’t wait|strong=\"H4102\"*, and|strong=\"H4714\"* they|strong=\"H3588\"* had|strong=\"H3588\"* not|strong=\"H3808\"* prepared|strong=\"H6213\"* any|strong=\"H6213\"* food|strong=\"H6720\"* for|strong=\"H3588\"* themselves|strong=\"H6213\"*." + }, + { + "verseNum": 40, + "text": "Now|strong=\"H3478\"* the|strong=\"H3427\"* time|strong=\"H4186\"* that|strong=\"H3478\"* the|strong=\"H3427\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Egypt|strong=\"H4714\"* was|strong=\"H3478\"* four hundred|strong=\"H3967\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 41, + "text": "At|strong=\"H3068\"* the|strong=\"H3605\"* end|strong=\"H7093\"* of|strong=\"H3068\"* four hundred|strong=\"H3967\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"*, to|strong=\"H3318\"* the|strong=\"H3605\"* day|strong=\"H3117\"*, all|strong=\"H3605\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s armies|strong=\"H6635\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 42, + "text": "It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* night|strong=\"H3915\"* to|strong=\"H3318\"* be|strong=\"H3068\"* much|strong=\"H3605\"* observed|strong=\"H8107\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"* for|strong=\"H4714\"* bringing|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*. This|strong=\"H2088\"* is|strong=\"H3068\"* that|strong=\"H3605\"* night|strong=\"H3915\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3318\"* be|strong=\"H3068\"* much|strong=\"H3605\"* observed|strong=\"H8107\"* by|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* throughout|strong=\"H3605\"* their|strong=\"H3605\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 43, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron, “This|strong=\"H2063\"* is|strong=\"H3068\"* the|strong=\"H3605\"* ordinance|strong=\"H2708\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"*. No|strong=\"H3808\"* foreigner|strong=\"H1121\"* shall|strong=\"H3068\"* eat of|strong=\"H1121\"* it|strong=\"H2063\"*," + }, + { + "verseNum": 44, + "text": "but|strong=\"H3605\"* every|strong=\"H3605\"* man|strong=\"H3605\"*’s servant|strong=\"H5650\"* who|strong=\"H3605\"* is|strong=\"H3701\"* bought|strong=\"H4736\"* for|strong=\"H5650\"* money|strong=\"H3701\"*, when|strong=\"H4135\"* you|strong=\"H3605\"* have|strong=\"H5650\"* circumcised|strong=\"H4135\"* him|strong=\"H3605\"*, then|strong=\"H3605\"* shall|strong=\"H5650\"* he|strong=\"H3605\"* eat of|strong=\"H5650\"* it|strong=\"H5650\"*." + }, + { + "verseNum": 45, + "text": "A|strong=\"H3068\"* foreigner|strong=\"H8453\"* and|strong=\"H3808\"* a|strong=\"H3068\"* hired|strong=\"H7916\"* servant|strong=\"H7916\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat of|strong=\"H3808\"* it|strong=\"H3808\"*." + }, + { + "verseNum": 46, + "text": "It|strong=\"H3808\"* must|strong=\"H2351\"* be|strong=\"H3808\"* eaten in|strong=\"H1004\"* one|strong=\"H3808\"* house|strong=\"H1004\"*. You|strong=\"H3808\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* carry|strong=\"H3318\"* any|strong=\"H4480\"* of|strong=\"H1004\"* the|strong=\"H4480\"* meat|strong=\"H1320\"* outside|strong=\"H2351\"* of|strong=\"H1004\"* the|strong=\"H4480\"* house|strong=\"H1004\"*. Do|strong=\"H3318\"* not|strong=\"H3808\"* break|strong=\"H7665\"* any|strong=\"H4480\"* of|strong=\"H1004\"* its|strong=\"H3318\"* bones|strong=\"H6106\"*." + }, + { + "verseNum": 47, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H5712\"* Israel|strong=\"H3478\"* shall|strong=\"H3478\"* keep|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 48, + "text": "When|strong=\"H3588\"* a|strong=\"H3068\"* stranger|strong=\"H1616\"* lives|strong=\"H1481\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"* with|strong=\"H3068\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* would|strong=\"H3068\"* like|strong=\"H1961\"* to|strong=\"H3068\"* keep|strong=\"H6213\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, let|strong=\"H3808\"* all|strong=\"H3605\"* his|strong=\"H3605\"* males|strong=\"H2145\"* be|strong=\"H1961\"* circumcised|strong=\"H4135\"*, and|strong=\"H3068\"* then|strong=\"H1961\"* let|strong=\"H3808\"* him|strong=\"H6213\"* come|strong=\"H1961\"* near|strong=\"H7126\"* and|strong=\"H3068\"* keep|strong=\"H6213\"* it|strong=\"H7126\"*. He|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* as|strong=\"H1961\"* one|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3068\"* born|strong=\"H3808\"* in|strong=\"H3068\"* the|strong=\"H3605\"* land; but|strong=\"H3588\"* no|strong=\"H3808\"* uncircumcised|strong=\"H6189\"* person|strong=\"H7126\"* shall|strong=\"H3068\"* eat of|strong=\"H3068\"* it|strong=\"H7126\"*." + }, + { + "verseNum": 49, + "text": "One|strong=\"H1961\"* law|strong=\"H8451\"* shall|strong=\"H8451\"* be|strong=\"H1961\"* to|strong=\"H1961\"* him|strong=\"H8432\"* who|strong=\"H1616\"* is|strong=\"H1961\"* born at|strong=\"H1961\"* home|strong=\"H8432\"*, and|strong=\"H8451\"* to|strong=\"H1961\"* the|strong=\"H8432\"* stranger|strong=\"H1616\"* who|strong=\"H1616\"* lives|strong=\"H1481\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"* among|strong=\"H8432\"* you|strong=\"H8432\"*.”" + }, + { + "verseNum": 50, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* so|strong=\"H3651\"*. As|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron, so|strong=\"H3651\"* they|strong=\"H3651\"* did|strong=\"H6213\"*." + }, + { + "verseNum": 51, + "text": "That|strong=\"H3117\"* same|strong=\"H6106\"* day|strong=\"H3117\"*, Yahweh|strong=\"H3068\"* brought|strong=\"H3318\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"* by|strong=\"H5921\"* their|strong=\"H3068\"* armies|strong=\"H6635\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Sanctify|strong=\"H6942\"* to|strong=\"H3478\"* me|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"*, whatever|strong=\"H3605\"* opens the|strong=\"H3605\"* womb|strong=\"H7358\"* among|strong=\"H1060\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, both|strong=\"H3605\"* of|strong=\"H1121\"* man|strong=\"H1121\"* and|strong=\"H1121\"* of|strong=\"H1121\"* animal. It|strong=\"H1931\"* is|strong=\"H1931\"* mine|strong=\"H3478\"*.”" + }, + { + "verseNum": 3, + "text": "Moses|strong=\"H4872\"* said|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3588\"* people|strong=\"H5971\"*, “Remember|strong=\"H2142\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, in|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H3588\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* bondage|strong=\"H5650\"*; for|strong=\"H3588\"* by|strong=\"H3027\"* strength|strong=\"H3027\"* of|strong=\"H1004\"* hand|strong=\"H3027\"* Yahweh|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3588\"* out|strong=\"H3318\"* from|strong=\"H3318\"* this|strong=\"H2088\"* place|strong=\"H3027\"*. No|strong=\"H3808\"* leavened|strong=\"H2557\"* bread|strong=\"H2557\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* eaten." + }, + { + "verseNum": 4, + "text": "Today|strong=\"H3117\"* you|strong=\"H3117\"* go|strong=\"H3318\"* out|strong=\"H3318\"* in|strong=\"H3117\"* the|strong=\"H3117\"* month|strong=\"H2320\"* Abib." + }, + { + "verseNum": 5, + "text": "It|strong=\"H5414\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* Yahweh|strong=\"H3068\"* brings|strong=\"H5414\"* you|strong=\"H3588\"* into|strong=\"H1961\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* the|strong=\"H3588\"* Canaanite|strong=\"H3669\"*, and|strong=\"H3068\"* the|strong=\"H3588\"* Hittite|strong=\"H2850\"*, and|strong=\"H3068\"* the|strong=\"H3588\"* Amorite, and|strong=\"H3068\"* the|strong=\"H3588\"* Hivite|strong=\"H2340\"*, and|strong=\"H3068\"* the|strong=\"H3588\"* Jebusite|strong=\"H2983\"*, which|strong=\"H3068\"* he|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers to|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"*, a|strong=\"H3068\"* land flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H3068\"* honey|strong=\"H1706\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* keep|strong=\"H5647\"* this|strong=\"H2088\"* service|strong=\"H5656\"* in|strong=\"H3068\"* this|strong=\"H2088\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 6, + "text": "Seven|strong=\"H7651\"* days|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H3068\"* eat unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* a|strong=\"H3068\"* feast|strong=\"H2282\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "Unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* shall|strong=\"H3117\"* be|strong=\"H3808\"* eaten throughout|strong=\"H3605\"* the|strong=\"H3605\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*; and|strong=\"H3117\"* no|strong=\"H3808\"* leavened|strong=\"H2557\"* bread|strong=\"H4682\"* shall|strong=\"H3117\"* be|strong=\"H3808\"* seen|strong=\"H7200\"* with|strong=\"H3117\"* you|strong=\"H3605\"*. No|strong=\"H3808\"* yeast|strong=\"H7603\"* shall|strong=\"H3117\"* be|strong=\"H3808\"* seen|strong=\"H7200\"* with|strong=\"H3117\"* you|strong=\"H3605\"*, within all|strong=\"H3605\"* your|strong=\"H3605\"* borders|strong=\"H1366\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H3117\"* shall|strong=\"H3068\"* tell|strong=\"H5046\"* your|strong=\"H3068\"* son|strong=\"H1121\"* in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, saying, ‘It|strong=\"H1931\"* is|strong=\"H3068\"* because|strong=\"H5668\"* of|strong=\"H1121\"* that|strong=\"H3117\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* did|strong=\"H6213\"* for|strong=\"H6213\"* me|strong=\"H5046\"* when|strong=\"H3117\"* I|strong=\"H3117\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*.’" + }, + { + "verseNum": 9, + "text": "It|strong=\"H5921\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* for|strong=\"H3588\"* a|strong=\"H3068\"* sign|strong=\"H2146\"* to|strong=\"H3318\"* you|strong=\"H3588\"* on|strong=\"H5921\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* for|strong=\"H3588\"* a|strong=\"H3068\"* memorial|strong=\"H2146\"* between|strong=\"H5921\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, that|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"* may|strong=\"H1961\"* be|strong=\"H1961\"* in|strong=\"H5921\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"*; for|strong=\"H3588\"* with|strong=\"H3068\"* a|strong=\"H3068\"* strong|strong=\"H2389\"* hand|strong=\"H3027\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3588\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3117\"* shall|strong=\"H3117\"* therefore|strong=\"H2063\"* keep|strong=\"H8104\"* this|strong=\"H2063\"* ordinance|strong=\"H2708\"* in|strong=\"H3117\"* its|strong=\"H8104\"* season|strong=\"H4150\"* from|strong=\"H3117\"* year|strong=\"H3117\"* to|strong=\"H8104\"* year|strong=\"H3117\"*." + }, + { + "verseNum": 11, + "text": "“It|strong=\"H5414\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* Yahweh|strong=\"H3068\"* brings|strong=\"H5414\"* you|strong=\"H3588\"* into|strong=\"H1961\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* the|strong=\"H3588\"* Canaanite|strong=\"H3669\"*, as|strong=\"H1961\"* he|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* you|strong=\"H3588\"* and|strong=\"H3068\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers, and|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 12, + "text": "that|strong=\"H3605\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* set apart|strong=\"H5674\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* opens the|strong=\"H3605\"* womb|strong=\"H7358\"*, and|strong=\"H3068\"* every|strong=\"H3605\"* firstborn|strong=\"H6363\"* that|strong=\"H3605\"* comes|strong=\"H1961\"* from|strong=\"H3068\"* an|strong=\"H1961\"* animal|strong=\"H1961\"* which|strong=\"H3068\"* you|strong=\"H3605\"* have|strong=\"H1961\"*. The|strong=\"H3605\"* males|strong=\"H2145\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s." + }, + { + "verseNum": 13, + "text": "Every|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"* you|strong=\"H3605\"* shall|strong=\"H1121\"* redeem|strong=\"H6299\"* with|strong=\"H3605\"* a|strong=\"H3068\"* lamb|strong=\"H7716\"*; and|strong=\"H1121\"* if|strong=\"H1121\"* you|strong=\"H3605\"* will|strong=\"H1121\"* not|strong=\"H3808\"* redeem|strong=\"H6299\"* it|strong=\"H3808\"*, then|strong=\"H3808\"* you|strong=\"H3605\"* shall|strong=\"H1121\"* break|strong=\"H6202\"* its|strong=\"H3605\"* neck|strong=\"H6202\"*; and|strong=\"H1121\"* you|strong=\"H3605\"* shall|strong=\"H1121\"* redeem|strong=\"H6299\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* man|strong=\"H1121\"* among|strong=\"H3808\"* your|strong=\"H3605\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 14, + "text": "It|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* your|strong=\"H3068\"* son|strong=\"H1121\"* asks|strong=\"H7592\"* you|strong=\"H3588\"* in|strong=\"H3068\"* time|strong=\"H4279\"* to|strong=\"H3318\"* come|strong=\"H1961\"*, saying, ‘What|strong=\"H4100\"* is|strong=\"H3068\"* this|strong=\"H2063\"*?’ that|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* tell him|strong=\"H3027\"*, ‘By|strong=\"H3027\"* strength|strong=\"H3027\"* of|strong=\"H1121\"* hand|strong=\"H3027\"* Yahweh|strong=\"H3068\"* brought|strong=\"H3318\"* us|strong=\"H3588\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Egypt|strong=\"H4714\"*, from|strong=\"H3318\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1121\"* bondage|strong=\"H5650\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* Pharaoh|strong=\"H6547\"* stubbornly|strong=\"H7185\"* refused|strong=\"H7971\"* to|strong=\"H5704\"* let|strong=\"H7971\"* us|strong=\"H5921\"* go|strong=\"H7971\"*, Yahweh|strong=\"H3068\"* killed|strong=\"H2026\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, both|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* livestock. Therefore|strong=\"H3651\"* I|strong=\"H3588\"* sacrifice|strong=\"H2076\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3588\"* opens the|strong=\"H3605\"* womb|strong=\"H7358\"*, being|strong=\"H1961\"* males|strong=\"H2145\"*; but|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* my|strong=\"H3605\"* sons|strong=\"H1121\"* I|strong=\"H3588\"* redeem|strong=\"H6299\"*.’" + }, + { + "verseNum": 16, + "text": "It|strong=\"H5921\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* for|strong=\"H3588\"* a|strong=\"H3068\"* sign on|strong=\"H5921\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* for|strong=\"H3588\"* symbols|strong=\"H2903\"* between|strong=\"H5921\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*; for|strong=\"H3588\"* by|strong=\"H3027\"* strength|strong=\"H3027\"* of|strong=\"H3068\"* hand|strong=\"H3027\"* Yahweh|strong=\"H3068\"* brought|strong=\"H3318\"* us|strong=\"H5921\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*.”" + }, + { + "verseNum": 17, + "text": "When|strong=\"H3588\"* Pharaoh|strong=\"H6547\"* had|strong=\"H1961\"* let|strong=\"H7971\"* the|strong=\"H7200\"* people|strong=\"H5971\"* go|strong=\"H7971\"*, God|strong=\"H3808\"* didn’t lead|strong=\"H5148\"* them|strong=\"H7725\"* by|strong=\"H1870\"* the|strong=\"H7200\"* way|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H7200\"* land of|strong=\"H1870\"* the|strong=\"H7200\"* Philistines|strong=\"H6430\"*, although|strong=\"H3588\"* that|strong=\"H3588\"* was|strong=\"H1961\"* near|strong=\"H7138\"*; for|strong=\"H3588\"* God|strong=\"H3808\"* said, “Lest|strong=\"H6435\"* perhaps|strong=\"H3588\"* the|strong=\"H7200\"* people|strong=\"H5971\"* change|strong=\"H5162\"* their|strong=\"H7725\"* minds|strong=\"H5162\"* when|strong=\"H3588\"* they|strong=\"H3588\"* see|strong=\"H7200\"* war|strong=\"H4421\"*, and|strong=\"H7971\"* they|strong=\"H3588\"* return|strong=\"H7725\"* to|strong=\"H7725\"* Egypt|strong=\"H4714\"*”;" + }, + { + "verseNum": 18, + "text": "but|strong=\"H1870\"* God led|strong=\"H5437\"* the|strong=\"H5927\"* people|strong=\"H5971\"* around|strong=\"H5437\"* by|strong=\"H1870\"* the|strong=\"H5927\"* way|strong=\"H1870\"* of|strong=\"H1121\"* the|strong=\"H5927\"* wilderness|strong=\"H4057\"* by|strong=\"H1870\"* the|strong=\"H5927\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*; and|strong=\"H1121\"* the|strong=\"H5927\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"* armed|strong=\"H2571\"* out|strong=\"H5437\"* of|strong=\"H1121\"* the|strong=\"H5927\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 19, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* the|strong=\"H3588\"* bones|strong=\"H6106\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3478\"* made|strong=\"H7650\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* swear|strong=\"H7650\"*, saying, “God will|strong=\"H3478\"* surely|strong=\"H3588\"* visit|strong=\"H6485\"* you|strong=\"H3588\"*, and|strong=\"H1121\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* carry|strong=\"H5927\"* up|strong=\"H5927\"* my|strong=\"H3947\"* bones|strong=\"H6106\"* away|strong=\"H3947\"* from|strong=\"H5927\"* here|strong=\"H2088\"* with|strong=\"H5973\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 20, + "text": "They took|strong=\"H5265\"* their|strong=\"H5265\"* journey|strong=\"H5265\"* from|strong=\"H5265\"* Succoth|strong=\"H5523\"*, and|strong=\"H4057\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Etham, in|strong=\"H2583\"* the|strong=\"H2583\"* edge|strong=\"H7097\"* of|strong=\"H4057\"* the|strong=\"H2583\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* went|strong=\"H1980\"* before|strong=\"H6440\"* them|strong=\"H6440\"* by|strong=\"H3068\"* day|strong=\"H3119\"* in|strong=\"H1980\"* a|strong=\"H3068\"* pillar|strong=\"H5982\"* of|strong=\"H3068\"* cloud|strong=\"H6051\"*, to|strong=\"H1980\"* lead|strong=\"H5148\"* them|strong=\"H6440\"* on|strong=\"H1980\"* their|strong=\"H3068\"* way|strong=\"H1870\"*, and|strong=\"H1980\"* by|strong=\"H3068\"* night|strong=\"H3915\"* in|strong=\"H1980\"* a|strong=\"H3068\"* pillar|strong=\"H5982\"* of|strong=\"H3068\"* fire, to|strong=\"H1980\"* give them|strong=\"H6440\"* light, that|strong=\"H3068\"* they|strong=\"H3068\"* might|strong=\"H3068\"* go|strong=\"H1980\"* by|strong=\"H3068\"* day|strong=\"H3119\"* and|strong=\"H1980\"* by|strong=\"H3068\"* night|strong=\"H3915\"*:" + }, + { + "verseNum": 22, + "text": "the|strong=\"H6440\"* pillar|strong=\"H5982\"* of|strong=\"H6440\"* cloud|strong=\"H6051\"* by|strong=\"H6051\"* day|strong=\"H3119\"*, and|strong=\"H5971\"* the|strong=\"H6440\"* pillar|strong=\"H5982\"* of|strong=\"H6440\"* fire by|strong=\"H6051\"* night|strong=\"H3915\"*, didn’t depart|strong=\"H4185\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H3478\"* they|strong=\"H5921\"* turn|strong=\"H7725\"* back|strong=\"H7725\"* and|strong=\"H1121\"* encamp|strong=\"H2583\"* before|strong=\"H6440\"* Pihahiroth, between|strong=\"H2583\"* Migdol|strong=\"H4024\"* and|strong=\"H1121\"* the|strong=\"H6440\"* sea|strong=\"H3220\"*, before|strong=\"H6440\"* Baal Zephon. You|strong=\"H6440\"* shall|strong=\"H1121\"* encamp|strong=\"H2583\"* opposite|strong=\"H5921\"* it|strong=\"H5921\"* by|strong=\"H5921\"* the|strong=\"H6440\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 3, + "text": "Pharaoh|strong=\"H6547\"* will|strong=\"H3478\"* say|strong=\"H3478\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, ‘They|strong=\"H1992\"* are|strong=\"H1992\"* entangled in|strong=\"H5921\"* the|strong=\"H5921\"* land. The|strong=\"H5921\"* wilderness|strong=\"H4057\"* has|strong=\"H3478\"* shut|strong=\"H5462\"* them|strong=\"H1992\"* in|strong=\"H5921\"*.’" + }, + { + "verseNum": 4, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* harden|strong=\"H2388\"* Pharaoh|strong=\"H6547\"*’s heart|strong=\"H3820\"*, and|strong=\"H3068\"* he|strong=\"H3588\"* will|strong=\"H3068\"* follow|strong=\"H7291\"* after|strong=\"H7291\"* them|strong=\"H6213\"*; and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* get|strong=\"H6213\"* honor|strong=\"H3513\"* over|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H3068\"* over|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* armies|strong=\"H2428\"*; and|strong=\"H3068\"* the|strong=\"H3605\"* Egyptians|strong=\"H4713\"* shall|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.” They|strong=\"H3588\"* did|strong=\"H6213\"* so|strong=\"H3651\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* was|strong=\"H3478\"* told|strong=\"H5046\"* that|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* had|strong=\"H3478\"* fled|strong=\"H1272\"*; and|strong=\"H3478\"* the|strong=\"H3588\"* heart|strong=\"H3824\"* of|strong=\"H4428\"* Pharaoh|strong=\"H6547\"* and|strong=\"H3478\"* of|strong=\"H4428\"* his|strong=\"H7971\"* servants|strong=\"H5650\"* was|strong=\"H3478\"* changed|strong=\"H2015\"* toward|strong=\"H6213\"* the|strong=\"H3588\"* people|strong=\"H5971\"*, and|strong=\"H3478\"* they|strong=\"H3588\"* said, “What|strong=\"H4100\"* is|strong=\"H4100\"* this|strong=\"H2063\"* we|strong=\"H3068\"* have|strong=\"H5971\"* done|strong=\"H6213\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H5971\"* let|strong=\"H7971\"* Israel|strong=\"H3478\"* go|strong=\"H7971\"* from|strong=\"H3478\"* serving|strong=\"H5647\"* us|strong=\"H5046\"*?”" + }, + { + "verseNum": 6, + "text": "He|strong=\"H5971\"* prepared his|strong=\"H3947\"* chariot|strong=\"H7393\"*, and|strong=\"H5971\"* took|strong=\"H3947\"* his|strong=\"H3947\"* army|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H5973\"*;" + }, + { + "verseNum": 7, + "text": "and|strong=\"H3967\"* he|strong=\"H3605\"* took|strong=\"H3947\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* chosen|strong=\"H3947\"* chariots|strong=\"H7393\"*, and|strong=\"H3967\"* all|strong=\"H3605\"* the|strong=\"H3605\"* chariots|strong=\"H7393\"* of|strong=\"H5921\"* Egypt|strong=\"H4714\"*, with|strong=\"H5921\"* captains|strong=\"H7991\"* over|strong=\"H5921\"* all|strong=\"H3605\"* of|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* hardened|strong=\"H2388\"* the|strong=\"H3068\"* heart|strong=\"H3820\"* of|strong=\"H1121\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* pursued|strong=\"H7291\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; for|strong=\"H3027\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H3068\"* a|strong=\"H3068\"* high|strong=\"H7311\"* hand|strong=\"H3027\"*.+ 14:8 or, defiantly.*" + }, + { + "verseNum": 9, + "text": "The|strong=\"H3605\"* Egyptians|strong=\"H4713\"* pursued|strong=\"H7291\"* them|strong=\"H5921\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* horses|strong=\"H5483\"* and|strong=\"H7393\"* chariots|strong=\"H7393\"* of|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*, his|strong=\"H3605\"* horsemen|strong=\"H6571\"*, and|strong=\"H7393\"* his|strong=\"H3605\"* army|strong=\"H2428\"* overtook|strong=\"H5381\"* them|strong=\"H5921\"* encamping|strong=\"H2583\"* by|strong=\"H5921\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*, beside|strong=\"H5921\"* Pihahiroth, before|strong=\"H6440\"* Baal Zephon." + }, + { + "verseNum": 10, + "text": "When|strong=\"H3068\"* Pharaoh|strong=\"H6547\"* came|strong=\"H7126\"* near|strong=\"H7126\"*, the|strong=\"H5375\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H3068\"* eyes|strong=\"H5869\"*, and|strong=\"H1121\"* behold|strong=\"H2009\"*, the|strong=\"H5375\"* Egyptians|strong=\"H4713\"* were|strong=\"H3478\"* marching|strong=\"H5265\"* after|strong=\"H2009\"* them|strong=\"H7126\"*; and|strong=\"H1121\"* they|strong=\"H3068\"* were|strong=\"H3478\"* very|strong=\"H3966\"* afraid|strong=\"H3372\"*. The|strong=\"H5375\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* cried|strong=\"H6817\"* out|strong=\"H5265\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H4100\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Moses|strong=\"H4872\"*, “Because|strong=\"H1097\"* there|strong=\"H1097\"* were|strong=\"H4714\"* no|strong=\"H6213\"* graves|strong=\"H6913\"* in|strong=\"H6213\"* Egypt|strong=\"H4714\"*, have|strong=\"H4057\"* you|strong=\"H3947\"* taken|strong=\"H3947\"* us|strong=\"H6213\"* away|strong=\"H3947\"* to|strong=\"H3318\"* die|strong=\"H4191\"* in|strong=\"H6213\"* the|strong=\"H3947\"* wilderness|strong=\"H4057\"*? Why|strong=\"H4100\"* have|strong=\"H4057\"* you|strong=\"H3947\"* treated|strong=\"H6213\"* us|strong=\"H6213\"* this|strong=\"H2063\"* way|strong=\"H2063\"*, to|strong=\"H3318\"* bring|strong=\"H3318\"* us|strong=\"H6213\"* out|strong=\"H3318\"* of|strong=\"H4057\"* Egypt|strong=\"H4714\"*?" + }, + { + "verseNum": 12, + "text": "Isn’t this|strong=\"H2088\"* the|strong=\"H3588\"* word|strong=\"H1697\"* that|strong=\"H3588\"* we|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"* in|strong=\"H4191\"* Egypt|strong=\"H4714\"*, saying|strong=\"H1697\"*, ‘Leave|strong=\"H2308\"* us|strong=\"H3588\"* alone|strong=\"H2308\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* may|strong=\"H4057\"* serve|strong=\"H5647\"* the|strong=\"H3588\"* Egyptians|strong=\"H4714\"*’? For|strong=\"H3588\"* it|strong=\"H3588\"* would|strong=\"H1697\"* have|strong=\"H1697\"* been|strong=\"H5647\"* better|strong=\"H2896\"* for|strong=\"H3588\"* us|strong=\"H3588\"* to|strong=\"H1696\"* serve|strong=\"H5647\"* the|strong=\"H3588\"* Egyptians|strong=\"H4714\"* than|strong=\"H4480\"* to|strong=\"H1696\"* die|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"*.”" + }, + { + "verseNum": 13, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H5704\"* the|strong=\"H7200\"* people|strong=\"H5971\"*, “Don’t be|strong=\"H3808\"* afraid|strong=\"H3372\"*. Stand|strong=\"H3320\"* still|strong=\"H5750\"*, and|strong=\"H4872\"* see|strong=\"H7200\"* the|strong=\"H7200\"* salvation|strong=\"H3444\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, which|strong=\"H3068\"* he|strong=\"H3588\"* will|strong=\"H3068\"* work|strong=\"H6213\"* for|strong=\"H3588\"* you|strong=\"H3588\"* today|strong=\"H3117\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* never|strong=\"H3808\"* again|strong=\"H5750\"* see|strong=\"H7200\"* the|strong=\"H7200\"* Egyptians|strong=\"H4713\"* whom|strong=\"H5971\"* you|strong=\"H3588\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* fight|strong=\"H3898\"* for|strong=\"H3068\"* you|strong=\"H3898\"*, and|strong=\"H3068\"* you|strong=\"H3898\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* still|strong=\"H2790\"*.”" + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “Why|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H4100\"* cry|strong=\"H6817\"* to|strong=\"H1696\"* me|strong=\"H1696\"*? Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H3068\"* they|strong=\"H3068\"* go|strong=\"H3068\"* forward|strong=\"H5265\"*." + }, + { + "verseNum": 16, + "text": "Lift|strong=\"H7311\"* up|strong=\"H7311\"* your|strong=\"H5921\"* rod|strong=\"H4294\"*, and|strong=\"H1121\"* stretch|strong=\"H5186\"* out|strong=\"H5186\"* your|strong=\"H5921\"* hand|strong=\"H3027\"* over|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* and|strong=\"H1121\"* divide|strong=\"H1234\"* it|strong=\"H5921\"*. Then|strong=\"H7311\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H1121\"* go|strong=\"H3478\"* into|strong=\"H8432\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* on|strong=\"H5921\"* dry|strong=\"H3004\"* ground|strong=\"H3004\"*." + }, + { + "verseNum": 17, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* myself|strong=\"H3820\"* will|strong=\"H3820\"* harden|strong=\"H2388\"* the|strong=\"H3605\"* hearts|strong=\"H3820\"* of|strong=\"H3820\"* the|strong=\"H3605\"* Egyptians|strong=\"H4713\"*, and|strong=\"H7393\"* they|strong=\"H3605\"* will|strong=\"H3820\"* go in|strong=\"H2388\"* after them|strong=\"H2388\"*. I|strong=\"H2005\"* will|strong=\"H3820\"* get myself|strong=\"H3820\"* honor|strong=\"H3513\"* over|strong=\"H2388\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H7393\"* over|strong=\"H2388\"* all|strong=\"H3605\"* his|strong=\"H3605\"* armies|strong=\"H2428\"*, over|strong=\"H2388\"* his|strong=\"H3605\"* chariots|strong=\"H7393\"*, and|strong=\"H7393\"* over|strong=\"H2388\"* his|strong=\"H3605\"* horsemen|strong=\"H6571\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3588\"* Egyptians|strong=\"H4713\"* shall|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* when|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* gotten myself|strong=\"H3045\"* honor|strong=\"H3513\"* over|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, over|strong=\"H3068\"* his|strong=\"H3068\"* chariots|strong=\"H7393\"*, and|strong=\"H3068\"* over|strong=\"H3068\"* his|strong=\"H3068\"* horsemen|strong=\"H6571\"*.”" + }, + { + "verseNum": 19, + "text": "The|strong=\"H6440\"* angel|strong=\"H4397\"* of|strong=\"H6440\"* God, who|strong=\"H3478\"* went|strong=\"H1980\"* before|strong=\"H6440\"* the|strong=\"H6440\"* camp|strong=\"H4264\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"*, moved|strong=\"H1980\"* and|strong=\"H1980\"* went|strong=\"H1980\"* behind|strong=\"H5975\"* them|strong=\"H6440\"*; and|strong=\"H1980\"* the|strong=\"H6440\"* pillar|strong=\"H5982\"* of|strong=\"H6440\"* cloud|strong=\"H6051\"* moved|strong=\"H1980\"* from|strong=\"H5265\"* before|strong=\"H6440\"* them|strong=\"H6440\"*, and|strong=\"H1980\"* stood|strong=\"H5975\"* behind|strong=\"H5975\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 20, + "text": "It|strong=\"H7126\"* came|strong=\"H1961\"* between the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H4264\"* Egypt|strong=\"H4714\"* and|strong=\"H3478\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H4264\"* Israel|strong=\"H3478\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* the|strong=\"H3605\"* cloud|strong=\"H6051\"* and|strong=\"H3478\"* the|strong=\"H3605\"* darkness|strong=\"H2822\"*, yet|strong=\"H3808\"* it|strong=\"H7126\"* gave|strong=\"H1961\"* light by|strong=\"H6051\"* night|strong=\"H3915\"*. One|strong=\"H2088\"* didn’t come|strong=\"H1961\"* near|strong=\"H7126\"* the|strong=\"H3605\"* other|strong=\"H2088\"* all|strong=\"H3605\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 21, + "text": "Moses|strong=\"H4872\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* his|strong=\"H3605\"* hand|strong=\"H3027\"* over|strong=\"H5921\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*, and|strong=\"H4872\"* Yahweh|strong=\"H3068\"* caused the|strong=\"H3605\"* sea|strong=\"H3220\"* to|strong=\"H3068\"* go|strong=\"H3212\"* back|strong=\"H5186\"* by|strong=\"H3027\"* a|strong=\"H3068\"* strong|strong=\"H5794\"* east|strong=\"H6921\"* wind|strong=\"H7307\"* all|strong=\"H3605\"* night|strong=\"H3915\"*, and|strong=\"H4872\"* made|strong=\"H7760\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* dry|strong=\"H2724\"* land|strong=\"H2724\"*, and|strong=\"H4872\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* were|strong=\"H4325\"* divided|strong=\"H1234\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H3478\"* into|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H8432\"* sea|strong=\"H3220\"* on|strong=\"H3220\"* the|strong=\"H8432\"* dry|strong=\"H3004\"* ground|strong=\"H3004\"*; and|strong=\"H1121\"* the|strong=\"H8432\"* waters|strong=\"H4325\"* were|strong=\"H3478\"* a|strong=\"H3068\"* wall|strong=\"H2346\"* to|strong=\"H3478\"* them|strong=\"H8432\"* on|strong=\"H3220\"* their|strong=\"H8432\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H1121\"* on|strong=\"H3220\"* their|strong=\"H8432\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3605\"* Egyptians|strong=\"H4713\"* pursued|strong=\"H7291\"*, and|strong=\"H7393\"* went|strong=\"H7291\"* in|strong=\"H8432\"* after|strong=\"H7291\"* them|strong=\"H7291\"* into|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*: all|strong=\"H3605\"* of|strong=\"H8432\"* Pharaoh|strong=\"H6547\"*’s horses|strong=\"H5483\"*, his|strong=\"H3605\"* chariots|strong=\"H7393\"*, and|strong=\"H7393\"* his|strong=\"H3605\"* horsemen|strong=\"H6571\"*." + }, + { + "verseNum": 24, + "text": "In|strong=\"H3068\"* the|strong=\"H3068\"* morning|strong=\"H1242\"* watch, Yahweh|strong=\"H3068\"* looked|strong=\"H8259\"* out|strong=\"H8259\"* on|strong=\"H3068\"* the|strong=\"H3068\"* Egyptian|strong=\"H4713\"* army|strong=\"H4264\"* through the|strong=\"H3068\"* pillar|strong=\"H5982\"* of|strong=\"H3068\"* fire and|strong=\"H3068\"* of|strong=\"H3068\"* cloud|strong=\"H6051\"*, and|strong=\"H3068\"* confused|strong=\"H2000\"* the|strong=\"H3068\"* Egyptian|strong=\"H4713\"* army|strong=\"H4264\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H3588\"* took|strong=\"H5493\"* off|strong=\"H5493\"* their|strong=\"H3068\"* chariot|strong=\"H4818\"* wheels, and|strong=\"H3478\"* they|strong=\"H3588\"* drove|strong=\"H5090\"* them|strong=\"H6440\"* heavily|strong=\"H3517\"*; so|strong=\"H5493\"* that|strong=\"H3588\"* the|strong=\"H6440\"* Egyptians|strong=\"H4714\"* said, “Let’s flee|strong=\"H5127\"* from|strong=\"H5493\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* fights|strong=\"H3898\"* for|strong=\"H3588\"* them|strong=\"H6440\"* against|strong=\"H3898\"* the|strong=\"H6440\"* Egyptians|strong=\"H4714\"*!”" + }, + { + "verseNum": 26, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H7725\"* Moses|strong=\"H4872\"*, “Stretch|strong=\"H5186\"* out|strong=\"H5186\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* over|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*, that|strong=\"H3068\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* may|strong=\"H3068\"* come|strong=\"H7725\"* again|strong=\"H7725\"* on|strong=\"H5921\"* the|strong=\"H5921\"* Egyptians|strong=\"H4714\"*, on|strong=\"H5921\"* their|strong=\"H3068\"* chariots|strong=\"H7393\"*, and|strong=\"H4872\"* on|strong=\"H5921\"* their|strong=\"H3068\"* horsemen|strong=\"H6571\"*.”" + }, + { + "verseNum": 27, + "text": "Moses|strong=\"H4872\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* over|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*, and|strong=\"H4872\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* its|strong=\"H5921\"* strength|strong=\"H3027\"* when|strong=\"H7725\"* the|strong=\"H5921\"* morning|strong=\"H1242\"* appeared|strong=\"H6437\"*; and|strong=\"H4872\"* the|strong=\"H5921\"* Egyptians|strong=\"H4714\"* fled|strong=\"H5127\"* against|strong=\"H5921\"* it|strong=\"H5921\"*. Yahweh|strong=\"H3068\"* overthrew|strong=\"H5287\"* the|strong=\"H5921\"* Egyptians|strong=\"H4714\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H3605\"* waters|strong=\"H4325\"* returned|strong=\"H7725\"*, and|strong=\"H7725\"* covered|strong=\"H3680\"* the|strong=\"H3605\"* chariots|strong=\"H7393\"* and|strong=\"H7725\"* the|strong=\"H3605\"* horsemen|strong=\"H6571\"*, even|strong=\"H5704\"* all|strong=\"H3605\"* Pharaoh|strong=\"H6547\"*’s army|strong=\"H2428\"* that|strong=\"H3605\"* went|strong=\"H7725\"* in|strong=\"H7604\"* after|strong=\"H5704\"* them|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*. There|strong=\"H3605\"* remained|strong=\"H7604\"* not|strong=\"H3808\"* so|strong=\"H3808\"* much|strong=\"H3605\"* as|strong=\"H5704\"* one|strong=\"H3605\"* of|strong=\"H4325\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 29, + "text": "But|strong=\"H3225\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* walked|strong=\"H1980\"* on|strong=\"H1980\"* dry|strong=\"H3004\"* land|strong=\"H3004\"* in|strong=\"H1980\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H8432\"* sea|strong=\"H3220\"*, and|strong=\"H1121\"* the|strong=\"H8432\"* waters|strong=\"H4325\"* were|strong=\"H3478\"* a|strong=\"H3068\"* wall|strong=\"H2346\"* to|strong=\"H1980\"* them|strong=\"H8432\"* on|strong=\"H1980\"* their|strong=\"H8432\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H1121\"* on|strong=\"H1980\"* their|strong=\"H8432\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 30, + "text": "Thus|strong=\"H4191\"* Yahweh|strong=\"H3068\"* saved|strong=\"H3467\"* Israel|strong=\"H3478\"* that|strong=\"H7200\"* day|strong=\"H3117\"* out|strong=\"H7200\"* of|strong=\"H3068\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Egyptians|strong=\"H4714\"*; and|strong=\"H3478\"* Israel|strong=\"H3478\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* Egyptians|strong=\"H4714\"* dead|strong=\"H4191\"* on|strong=\"H5921\"* the|strong=\"H5921\"* seashore|strong=\"H3220\"*." + }, + { + "verseNum": 31, + "text": "Israel|strong=\"H3478\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* great|strong=\"H1419\"* work|strong=\"H6213\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* did|strong=\"H6213\"* to|strong=\"H3478\"* the|strong=\"H7200\"* Egyptians|strong=\"H4714\"*, and|strong=\"H4872\"* the|strong=\"H7200\"* people|strong=\"H5971\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"*; and|strong=\"H4872\"* they|strong=\"H3068\"* believed in|strong=\"H3478\"* Yahweh|strong=\"H3068\"* and|strong=\"H4872\"* in|strong=\"H3478\"* his|strong=\"H3068\"* servant|strong=\"H5650\"* Moses|strong=\"H4872\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H4872\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* sang|strong=\"H7891\"* this|strong=\"H2063\"* song|strong=\"H7892\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* said," + }, + { + "verseNum": 2, + "text": "Yah|strong=\"H3068\"* is|strong=\"H2088\"* my|strong=\"H1961\"* strength|strong=\"H5797\"* and|strong=\"H5797\"* song|strong=\"H2176\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* man of|strong=\"H3068\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3220\"* has|strong=\"H3220\"* cast|strong=\"H3384\"* Pharaoh|strong=\"H6547\"*’s chariots|strong=\"H4818\"* and|strong=\"H6547\"* his|strong=\"H3384\"* army|strong=\"H2428\"* into|strong=\"H3220\"* the|strong=\"H3384\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3680\"* deeps|strong=\"H8415\"* cover|strong=\"H3680\"* them|strong=\"H3381\"*." + }, + { + "verseNum": 6, + "text": "Your|strong=\"H3068\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*, Yahweh|strong=\"H3068\"*, is|strong=\"H3068\"* glorious in|strong=\"H3068\"* power|strong=\"H3581\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H6965\"* the|strong=\"H7971\"* greatness|strong=\"H7230\"* of|strong=\"H7230\"* your|strong=\"H7971\"* excellency|strong=\"H1347\"*, you|strong=\"H7971\"* overthrow|strong=\"H2040\"* those who rise|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H6965\"* you|strong=\"H7971\"*." + }, + { + "verseNum": 8, + "text": "With|strong=\"H4325\"* the|strong=\"H5324\"* blast|strong=\"H7307\"* of|strong=\"H7307\"* your nostrils, the|strong=\"H5324\"* waters|strong=\"H4325\"* were|strong=\"H4325\"* piled|strong=\"H6192\"* up|strong=\"H5324\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3423\"* enemy said, ‘I|strong=\"H5315\"* will|strong=\"H2719\"* pursue|strong=\"H7291\"*. I|strong=\"H5315\"* will|strong=\"H2719\"* overtake|strong=\"H5381\"*. I|strong=\"H5315\"* will|strong=\"H2719\"* divide|strong=\"H2505\"* the|strong=\"H3423\"* plunder|strong=\"H7998\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H4325\"* blew|strong=\"H5398\"* with|strong=\"H3680\"* your|strong=\"H3680\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 11, + "text": "Who|strong=\"H4310\"* is|strong=\"H3068\"* like|strong=\"H3644\"* you|strong=\"H6213\"*, Yahweh|strong=\"H3068\"*, among|strong=\"H4310\"* the|strong=\"H6213\"* gods?" + }, + { + "verseNum": 12, + "text": "You|strong=\"H5186\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* your|strong=\"H5186\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*." + }, + { + "verseNum": 13, + "text": "“You|strong=\"H5971\"*, in|strong=\"H5971\"* your|strong=\"H1350\"* loving kindness|strong=\"H2617\"*, have|strong=\"H5971\"* led|strong=\"H5148\"* the|strong=\"H5971\"* people|strong=\"H5971\"* that|strong=\"H5971\"* you|strong=\"H5971\"* have|strong=\"H5971\"* redeemed|strong=\"H1350\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H8085\"* peoples|strong=\"H5971\"* have|strong=\"H5971\"* heard|strong=\"H8085\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H3605\"* the|strong=\"H3605\"* chiefs of|strong=\"H3427\"* Edom were|strong=\"H3427\"* dismayed." + }, + { + "verseNum": 16, + "text": "Terror|strong=\"H6343\"* and|strong=\"H3068\"* dread|strong=\"H6343\"* falls|strong=\"H5307\"* on|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H3027\"* will|strong=\"H3068\"* bring them|strong=\"H3027\"* in|strong=\"H3427\"*, and|strong=\"H3068\"* plant|strong=\"H5193\"* them|strong=\"H3027\"* in|strong=\"H3427\"* the|strong=\"H3068\"* mountain|strong=\"H2022\"* of|strong=\"H3068\"* your|strong=\"H3068\"* inheritance|strong=\"H5159\"*," + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* reign|strong=\"H4427\"* forever|strong=\"H5769\"* and|strong=\"H3068\"* ever|strong=\"H5769\"*.”" + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* horses|strong=\"H5483\"* of|strong=\"H1121\"* Pharaoh|strong=\"H6547\"* went|strong=\"H1980\"* in|strong=\"H5921\"* with|strong=\"H1980\"* his|strong=\"H3068\"* chariots|strong=\"H7393\"* and|strong=\"H1121\"* with|strong=\"H1980\"* his|strong=\"H3068\"* horsemen|strong=\"H6571\"* into|strong=\"H1980\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*, and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* brought|strong=\"H7725\"* back|strong=\"H7725\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* on|strong=\"H5921\"* them|strong=\"H5921\"*; but|strong=\"H3588\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* walked|strong=\"H1980\"* on|strong=\"H5921\"* dry|strong=\"H3004\"* land|strong=\"H3004\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 20, + "text": "Miriam|strong=\"H4813\"* the|strong=\"H3605\"* prophetess|strong=\"H5031\"*, the|strong=\"H3605\"* sister of|strong=\"H3027\"* Aaron, took|strong=\"H3947\"* a|strong=\"H3068\"* tambourine|strong=\"H8596\"* in|strong=\"H3027\"* her|strong=\"H3605\"* hand|strong=\"H3027\"*; and|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* women went|strong=\"H3318\"* out|strong=\"H3318\"* after|strong=\"H3318\"* her|strong=\"H3605\"* with|strong=\"H3318\"* tambourines|strong=\"H8596\"* and|strong=\"H3027\"* with|strong=\"H3318\"* dances|strong=\"H4246\"*." + }, + { + "verseNum": 21, + "text": "Miriam|strong=\"H4813\"* answered|strong=\"H6030\"* them|strong=\"H6030\"*," + }, + { + "verseNum": 22, + "text": "Moses|strong=\"H4872\"* led|strong=\"H3212\"* Israel|strong=\"H3478\"* onward|strong=\"H5265\"* from|strong=\"H5265\"* the|strong=\"H3117\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*, and|strong=\"H4872\"* they|strong=\"H3117\"* went|strong=\"H3212\"* out|strong=\"H3318\"* into|strong=\"H3212\"* the|strong=\"H3117\"* wilderness|strong=\"H4057\"* of|strong=\"H3117\"* Shur|strong=\"H7793\"*; and|strong=\"H4872\"* they|strong=\"H3117\"* went|strong=\"H3212\"* three|strong=\"H7969\"* days|strong=\"H3117\"* in|strong=\"H3478\"* the|strong=\"H3117\"* wilderness|strong=\"H4057\"*, and|strong=\"H4872\"* found|strong=\"H4672\"* no|strong=\"H3808\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"H3588\"* they|strong=\"H1992\"* came|strong=\"H4325\"* to|strong=\"H3201\"* Marah|strong=\"H4785\"*, they|strong=\"H1992\"* couldn’t drink|strong=\"H8354\"* from|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* Marah|strong=\"H4785\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H4325\"* bitter|strong=\"H4751\"*. Therefore|strong=\"H3651\"* its|strong=\"H5921\"* name|strong=\"H8034\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Marah|strong=\"H4785\"*.+ 15:23 Marah means bitter.*" + }, + { + "verseNum": 24, + "text": "The|strong=\"H5921\"* people|strong=\"H5971\"* murmured|strong=\"H3885\"* against|strong=\"H5921\"* Moses|strong=\"H4872\"*, saying, “What|strong=\"H4100\"* shall|strong=\"H5971\"* we|strong=\"H3068\"* drink|strong=\"H8354\"*?”" + }, + { + "verseNum": 25, + "text": "Then|strong=\"H7760\"* he|strong=\"H8033\"* cried|strong=\"H6817\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Yahweh|strong=\"H3068\"* showed|strong=\"H3384\"* him|strong=\"H7760\"* a|strong=\"H3068\"* tree|strong=\"H6086\"*, and|strong=\"H3068\"* he|strong=\"H8033\"* threw|strong=\"H7993\"* it|strong=\"H7760\"* into|strong=\"H4941\"* the|strong=\"H3068\"* waters|strong=\"H4325\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* waters|strong=\"H4325\"* were|strong=\"H4325\"* made|strong=\"H7760\"* sweet|strong=\"H4985\"*. There|strong=\"H8033\"* he|strong=\"H8033\"* made|strong=\"H7760\"* a|strong=\"H3068\"* statute|strong=\"H2706\"* and|strong=\"H3068\"* an|strong=\"H7760\"* ordinance|strong=\"H4941\"* for|strong=\"H3068\"* them|strong=\"H7760\"*, and|strong=\"H3068\"* there|strong=\"H8033\"* he|strong=\"H8033\"* tested|strong=\"H5254\"* them|strong=\"H7760\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"H3588\"* said|strong=\"H8085\"*, “If|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* diligently|strong=\"H8085\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H5921\"* his|strong=\"H3605\"* eyes|strong=\"H5869\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* pay|strong=\"H7760\"* attention|strong=\"H8085\"* to|strong=\"H3068\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"*, and|strong=\"H3068\"* keep|strong=\"H8104\"* all|strong=\"H3605\"* his|strong=\"H3605\"* statutes|strong=\"H2706\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* put|strong=\"H7760\"* none|strong=\"H3808\"* of|strong=\"H3068\"* the|strong=\"H3605\"* diseases|strong=\"H4245\"* on|strong=\"H5921\"* you|strong=\"H3588\"* which|strong=\"H3068\"* I|strong=\"H3588\"* have|strong=\"H3068\"* put|strong=\"H7760\"* on|strong=\"H5921\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H3605\"* heals|strong=\"H7495\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 27, + "text": "They|strong=\"H8033\"* came|strong=\"H4325\"* to|strong=\"H5921\"* Elim, where|strong=\"H8033\"* there|strong=\"H8033\"* were|strong=\"H4325\"* twelve|strong=\"H8147\"* springs of|strong=\"H5869\"* water|strong=\"H4325\"* and|strong=\"H5869\"* seventy|strong=\"H7657\"* palm|strong=\"H8558\"* trees|strong=\"H8558\"*. They|strong=\"H8033\"* encamped|strong=\"H2583\"* there|strong=\"H8033\"* by|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "They|strong=\"H3117\"* took|strong=\"H3318\"* their|strong=\"H3605\"* journey|strong=\"H5265\"* from|strong=\"H5265\"* Elim, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* came|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Sin|strong=\"H5512\"*, which|strong=\"H3478\"* is|strong=\"H3117\"* between Elim and|strong=\"H1121\"* Sinai|strong=\"H5514\"*, on|strong=\"H3117\"* the|strong=\"H3605\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H3605\"* second|strong=\"H8145\"* month|strong=\"H2320\"* after|strong=\"H3117\"* their|strong=\"H3605\"* departing|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* murmured|strong=\"H3885\"* against|strong=\"H5921\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* against|strong=\"H5921\"* Aaron in|strong=\"H5921\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H5414\"*, “We|strong=\"H3588\"* wish|strong=\"H4310\"* that|strong=\"H3588\"* we|strong=\"H3068\"* had|strong=\"H3068\"* died|strong=\"H4191\"* by|strong=\"H3027\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, when|strong=\"H3588\"* we|strong=\"H3068\"* sat|strong=\"H3427\"* by|strong=\"H3027\"* the|strong=\"H3605\"* meat|strong=\"H1320\"* pots|strong=\"H5518\"*, when|strong=\"H3588\"* we|strong=\"H3068\"* ate our|strong=\"H3068\"* fill|strong=\"H7648\"* of|strong=\"H1121\"* bread|strong=\"H3899\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* brought|strong=\"H3318\"* us|strong=\"H5414\"* out|strong=\"H3318\"* into|strong=\"H5921\"* this|strong=\"H2088\"* wilderness|strong=\"H4057\"* to|strong=\"H3318\"* kill|strong=\"H4191\"* this|strong=\"H2088\"* whole|strong=\"H3605\"* assembly|strong=\"H6951\"* with|strong=\"H3068\"* hunger|strong=\"H7458\"*.”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H3318\"* Yahweh|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3318\"* Moses|strong=\"H4872\"*, “Behold|strong=\"H2005\"*, I|strong=\"H3117\"* will|strong=\"H3068\"* rain|strong=\"H4305\"* bread|strong=\"H3899\"* from|strong=\"H4480\"* the|strong=\"H3068\"* sky|strong=\"H8064\"* for|strong=\"H3068\"* you|strong=\"H3117\"*, and|strong=\"H4872\"* the|strong=\"H3068\"* people|strong=\"H5971\"* shall|strong=\"H3068\"* go|strong=\"H3212\"* out|strong=\"H3318\"* and|strong=\"H4872\"* gather|strong=\"H3950\"* a|strong=\"H3068\"* day|strong=\"H3117\"*’s portion|strong=\"H1697\"* every|strong=\"H3212\"* day|strong=\"H3117\"*, that|strong=\"H5971\"* I|strong=\"H3117\"* may|strong=\"H3068\"* test|strong=\"H5254\"* them|strong=\"H3318\"*, whether|strong=\"H4480\"* they|strong=\"H3117\"* will|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* my|strong=\"H3068\"* law|strong=\"H8451\"* or|strong=\"H3808\"* not|strong=\"H3808\"*." + }, + { + "verseNum": 5, + "text": "It|strong=\"H5921\"* shall|strong=\"H3117\"* come|strong=\"H1961\"* to|strong=\"H1961\"* pass|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* sixth|strong=\"H8345\"* day|strong=\"H3117\"*, that|strong=\"H3117\"* they|strong=\"H3117\"* shall|strong=\"H3117\"* prepare|strong=\"H3559\"* that|strong=\"H3117\"* which|strong=\"H3117\"* they|strong=\"H3117\"* bring|strong=\"H1961\"* in|strong=\"H5921\"*, and|strong=\"H3117\"* it|strong=\"H5921\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* twice|strong=\"H4932\"* as|strong=\"H3117\"* much|strong=\"H4932\"* as|strong=\"H3117\"* they|strong=\"H3117\"* gather|strong=\"H3950\"* daily|strong=\"H3117\"*.”" + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron said|strong=\"H3318\"* to|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “At|strong=\"H3478\"* evening|strong=\"H6153\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3588\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* see|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"*; because|strong=\"H3588\"* he|strong=\"H3588\"* hears|strong=\"H8085\"* your|strong=\"H3068\"* murmurings|strong=\"H8519\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*. Who|strong=\"H3068\"* are|strong=\"H4100\"* we|strong=\"H3068\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* murmur|strong=\"H3885\"* against|strong=\"H5921\"* us|strong=\"H5921\"*?”" + }, + { + "verseNum": 8, + "text": "Moses|strong=\"H4872\"* said|strong=\"H8085\"*, “Now|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"* meat|strong=\"H1320\"* to|strong=\"H3068\"* eat|strong=\"H3899\"* in|strong=\"H5921\"* the|strong=\"H5921\"* evening|strong=\"H6153\"*, and|strong=\"H4872\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"* bread|strong=\"H3899\"* to|strong=\"H3068\"* satisfy|strong=\"H7646\"* you|strong=\"H3588\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* hears|strong=\"H8085\"* your|strong=\"H3068\"* murmurings|strong=\"H8519\"* which|strong=\"H3068\"* you|strong=\"H3588\"* murmur against|strong=\"H5921\"* him|strong=\"H5414\"*. And|strong=\"H4872\"* who|strong=\"H3068\"* are|strong=\"H4100\"* we|strong=\"H3068\"*? Your|strong=\"H3068\"* murmurings|strong=\"H8519\"* are|strong=\"H4100\"* not|strong=\"H3808\"* against|strong=\"H5921\"* us|strong=\"H5414\"*, but|strong=\"H3588\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* said|strong=\"H8085\"* to|strong=\"H3478\"* Aaron, “Tell|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, ‘Come|strong=\"H7126\"* close|strong=\"H7126\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* heard|strong=\"H8085\"* your|strong=\"H3068\"* murmurings|strong=\"H8519\"*.’”" + }, + { + "verseNum": 10, + "text": "As|strong=\"H1961\"* Aaron spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, they|strong=\"H3068\"* looked|strong=\"H7200\"* toward|strong=\"H6437\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*, and|strong=\"H1121\"* behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* appeared|strong=\"H7200\"* in|strong=\"H3478\"* the|strong=\"H3605\"* cloud|strong=\"H6051\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 12, + "text": "“I|strong=\"H3588\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* murmurings|strong=\"H8519\"* of|strong=\"H1121\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Speak|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H8085\"*, saying|strong=\"H1696\"*, ‘At|strong=\"H3478\"* evening|strong=\"H6153\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* eat|strong=\"H3899\"* meat|strong=\"H1320\"*, and|strong=\"H1121\"* in|strong=\"H3478\"* the|strong=\"H8085\"* morning|strong=\"H1242\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* filled|strong=\"H7646\"* with|strong=\"H7646\"* bread|strong=\"H3899\"*. Then|strong=\"H1696\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.’”" + }, + { + "verseNum": 13, + "text": "In|strong=\"H5927\"* the|strong=\"H3680\"* evening|strong=\"H6153\"*, quail|strong=\"H7958\"* came|strong=\"H1961\"* up|strong=\"H5927\"* and|strong=\"H1242\"* covered|strong=\"H3680\"* the|strong=\"H3680\"* camp|strong=\"H4264\"*; and|strong=\"H1242\"* in|strong=\"H5927\"* the|strong=\"H3680\"* morning|strong=\"H1242\"* the|strong=\"H3680\"* dew|strong=\"H2919\"* lay|strong=\"H7902\"* around|strong=\"H5439\"* the|strong=\"H3680\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H5927\"* the|strong=\"H6440\"* dew|strong=\"H2919\"* that|strong=\"H5927\"* lay|strong=\"H7902\"* had gone|strong=\"H5927\"*, behold|strong=\"H2009\"*, on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"* was|strong=\"H6440\"* a|strong=\"H3068\"* small|strong=\"H1851\"* round|strong=\"H7902\"* thing|strong=\"H2636\"*, small|strong=\"H1851\"* as|strong=\"H5927\"* the|strong=\"H6440\"* frost|strong=\"H3713\"* on|strong=\"H5921\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* saw|strong=\"H7200\"* it|strong=\"H5414\"*, they|strong=\"H3588\"* said to|strong=\"H3478\"* one|strong=\"H3808\"* another|strong=\"H7200\"*, “What|strong=\"H4100\"* is|strong=\"H3068\"* it|strong=\"H5414\"*?” For|strong=\"H3588\"* they|strong=\"H3588\"* didn’t know|strong=\"H3045\"* what|strong=\"H4100\"* it|strong=\"H5414\"* was|strong=\"H3068\"*. Moses|strong=\"H4872\"* said to|strong=\"H3478\"* them|strong=\"H5414\"*, “It|strong=\"H5414\"* is|strong=\"H3068\"* the|strong=\"H7200\"* bread|strong=\"H3899\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H3588\"* to|strong=\"H3478\"* eat|strong=\"H3899\"*." + }, + { + "verseNum": 16, + "text": "This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3947\"* thing|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"*: ‘Gather|strong=\"H3950\"* of|strong=\"H3068\"* it|strong=\"H3947\"* everyone according|strong=\"H6310\"* to|strong=\"H3068\"* his|strong=\"H3068\"* eating; an|strong=\"H3947\"* omer|strong=\"H6016\"*+ 16:16 An omer is about 2.2 liters or about 2.3 quarts* a|strong=\"H3068\"* head|strong=\"H1538\"*, according|strong=\"H6310\"* to|strong=\"H3068\"* the|strong=\"H3947\"* number|strong=\"H4557\"* of|strong=\"H3068\"* your|strong=\"H3068\"* persons|strong=\"H5315\"*, you|strong=\"H6680\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* it|strong=\"H3947\"*, every|strong=\"H3947\"* man|strong=\"H5315\"* for|strong=\"H3068\"* those|strong=\"H4480\"* who|strong=\"H3068\"* are|strong=\"H1697\"* in|strong=\"H3068\"* his|strong=\"H3068\"* tent.’”" + }, + { + "verseNum": 17, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* so|strong=\"H3651\"*, and|strong=\"H1121\"* some gathered|strong=\"H3950\"* more|strong=\"H7235\"*, some less|strong=\"H4591\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H7235\"* they|strong=\"H3808\"* measured|strong=\"H4058\"* it|strong=\"H4058\"* with|strong=\"H6310\"* an omer|strong=\"H6016\"*, he|strong=\"H3808\"* who|strong=\"H3808\"* gathered|strong=\"H3950\"* much|strong=\"H7235\"* had|strong=\"H7235\"* nothing|strong=\"H3808\"* over|strong=\"H5736\"*, and|strong=\"H6310\"* he|strong=\"H3808\"* who|strong=\"H3808\"* gathered|strong=\"H3950\"* little|strong=\"H4591\"* had|strong=\"H7235\"* no|strong=\"H3808\"* lack|strong=\"H2637\"*. They|strong=\"H3808\"* each|strong=\"H4058\"* gathered|strong=\"H3950\"* according|strong=\"H6310\"* to|strong=\"H6310\"* his|strong=\"H3808\"* eating." + }, + { + "verseNum": 19, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H5704\"* them|strong=\"H5704\"*, “Let|strong=\"H3498\"* no|strong=\"H4480\"* one|strong=\"H4480\"* leave|strong=\"H3498\"* of|strong=\"H4480\"* it|strong=\"H1242\"* until|strong=\"H5704\"* the|strong=\"H4480\"* morning|strong=\"H1242\"*.”" + }, + { + "verseNum": 20, + "text": "Notwithstanding they|strong=\"H3808\"* didn’t listen|strong=\"H8085\"* to|strong=\"H5704\"* Moses|strong=\"H4872\"*, but|strong=\"H3808\"* some|strong=\"H4480\"* of|strong=\"H4480\"* them|strong=\"H5921\"* left|strong=\"H3498\"* of|strong=\"H4480\"* it|strong=\"H5921\"* until|strong=\"H5704\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*, so|strong=\"H4480\"* it|strong=\"H5921\"* bred|strong=\"H7311\"* worms|strong=\"H8438\"* and|strong=\"H4872\"* became|strong=\"H7107\"* foul; and|strong=\"H4872\"* Moses|strong=\"H4872\"* was|strong=\"H4872\"* angry|strong=\"H7107\"* with|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"H6310\"* gathered|strong=\"H3950\"* it|strong=\"H1242\"* morning|strong=\"H1242\"* by|strong=\"H1242\"* morning|strong=\"H1242\"*, everyone according|strong=\"H6310\"* to|strong=\"H6310\"* his|strong=\"H6310\"* eating. When|strong=\"H6310\"* the|strong=\"H1242\"* sun|strong=\"H8121\"* grew|strong=\"H2552\"* hot|strong=\"H2552\"*, it|strong=\"H1242\"* melted|strong=\"H4549\"*." + }, + { + "verseNum": 22, + "text": "On|strong=\"H3117\"* the|strong=\"H3605\"* sixth|strong=\"H8345\"* day|strong=\"H3117\"*, they|strong=\"H3117\"* gathered|strong=\"H3950\"* twice|strong=\"H8147\"* as|strong=\"H3117\"* much|strong=\"H4932\"* bread|strong=\"H3899\"*, two|strong=\"H8147\"* omers|strong=\"H6016\"* for|strong=\"H3117\"* each|strong=\"H3605\"* one|strong=\"H3605\"*; and|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* rulers|strong=\"H5387\"* of|strong=\"H3117\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* came|strong=\"H1961\"* and|strong=\"H4872\"* told|strong=\"H5046\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H1931\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5704\"*, “This|strong=\"H1931\"* is|strong=\"H3068\"* that|strong=\"H3605\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*, ‘Tomorrow|strong=\"H4279\"* is|strong=\"H3068\"* a|strong=\"H3068\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"*, a|strong=\"H3068\"* holy|strong=\"H6944\"* Sabbath|strong=\"H7676\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*. Bake|strong=\"H1310\"* that|strong=\"H3605\"* which|strong=\"H1931\"* you|strong=\"H3605\"* want to|strong=\"H1696\"* bake|strong=\"H1310\"*, and|strong=\"H3068\"* boil|strong=\"H1310\"* that|strong=\"H3605\"* which|strong=\"H1931\"* you|strong=\"H3605\"* want to|strong=\"H1696\"* boil|strong=\"H1310\"*; and|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* remains over|strong=\"H5736\"* lay|strong=\"H3240\"* up|strong=\"H3240\"* for|strong=\"H5704\"* yourselves|strong=\"H3605\"* to|strong=\"H1696\"* be|strong=\"H3068\"* kept|strong=\"H4931\"* until|strong=\"H5704\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*.’”" + }, + { + "verseNum": 24, + "text": "They|strong=\"H3808\"* laid|strong=\"H3240\"* it|strong=\"H1242\"* up|strong=\"H3240\"* until|strong=\"H5704\"* the|strong=\"H5704\"* morning|strong=\"H1242\"*, as|strong=\"H5704\"* Moses|strong=\"H4872\"* ordered|strong=\"H6680\"*, and|strong=\"H4872\"* it|strong=\"H1242\"* didn’t become|strong=\"H1961\"* foul, and|strong=\"H4872\"* there|strong=\"H1961\"* were|strong=\"H1961\"* no|strong=\"H3808\"* worms|strong=\"H7415\"* in|strong=\"H4872\"* it|strong=\"H1242\"*." + }, + { + "verseNum": 25, + "text": "Moses|strong=\"H4872\"* said, “Eat that|strong=\"H3588\"* today|strong=\"H3117\"*, for|strong=\"H3588\"* today|strong=\"H3117\"* is|strong=\"H3068\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Today|strong=\"H3117\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* find|strong=\"H4672\"* it|strong=\"H3588\"* in|strong=\"H3068\"* the|strong=\"H3588\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 26, + "text": "Six|strong=\"H8337\"* days|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* gather|strong=\"H3950\"* it|strong=\"H1961\"*, but|strong=\"H3808\"* on|strong=\"H3117\"* the|strong=\"H3117\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* is|strong=\"H3117\"* the|strong=\"H3117\"* Sabbath|strong=\"H7676\"*. In|strong=\"H3117\"* it|strong=\"H1961\"* there|strong=\"H1961\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* none|strong=\"H3808\"*.”" + }, + { + "verseNum": 27, + "text": "On|strong=\"H3117\"* the|strong=\"H4480\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, some|strong=\"H4480\"* of|strong=\"H3117\"* the|strong=\"H4480\"* people|strong=\"H5971\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* gather|strong=\"H3950\"*, and|strong=\"H3117\"* they|strong=\"H3117\"* found|strong=\"H4672\"* none|strong=\"H3808\"*." + }, + { + "verseNum": 28, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H5704\"* Moses|strong=\"H4872\"*, “How|strong=\"H5704\"* long|strong=\"H5704\"* do|strong=\"H3068\"* you|strong=\"H5704\"* refuse|strong=\"H3985\"* to|strong=\"H5704\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"* and|strong=\"H4872\"* my|strong=\"H8104\"* laws|strong=\"H8451\"*?" + }, + { + "verseNum": 29, + "text": "Behold|strong=\"H7200\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H3588\"* the|strong=\"H5921\"* Sabbath|strong=\"H7676\"*, therefore|strong=\"H3651\"* he|strong=\"H1931\"* gives|strong=\"H5414\"* you|strong=\"H3588\"* on|strong=\"H5921\"* the|strong=\"H5921\"* sixth|strong=\"H8345\"* day|strong=\"H3117\"* the|strong=\"H5921\"* bread|strong=\"H3899\"* of|strong=\"H3068\"* two|strong=\"H3427\"* days|strong=\"H3117\"*. Everyone stay|strong=\"H3427\"* in|strong=\"H3427\"* his|strong=\"H5414\"* place|strong=\"H4725\"*. Let|strong=\"H5414\"* no|strong=\"H5414\"* one|strong=\"H1931\"* go|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* his|strong=\"H5414\"* place|strong=\"H4725\"* on|strong=\"H5921\"* the|strong=\"H5921\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*.”" + }, + { + "verseNum": 30, + "text": "So|strong=\"H7673\"* the|strong=\"H3117\"* people|strong=\"H5971\"* rested|strong=\"H7673\"* on|strong=\"H3117\"* the|strong=\"H3117\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H7121\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* called|strong=\"H7121\"* its name|strong=\"H8034\"* “Manna|strong=\"H4478\"*”,+ 16:31 “Manna” means “What is it?”* and|strong=\"H3478\"* it|strong=\"H1931\"* was|strong=\"H8034\"* like|strong=\"H1004\"* coriander|strong=\"H1407\"* seed|strong=\"H2233\"*, white|strong=\"H3836\"*; and|strong=\"H3478\"* its taste|strong=\"H2940\"* was|strong=\"H8034\"* like|strong=\"H1004\"* wafers|strong=\"H6838\"* with|strong=\"H1004\"* honey|strong=\"H1706\"*." + }, + { + "verseNum": 32, + "text": "Moses|strong=\"H4872\"* said|strong=\"H1697\"*, “This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H7200\"* thing|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"*, ‘Let an|strong=\"H7200\"* omer-full of|strong=\"H3068\"* it|strong=\"H4393\"* be|strong=\"H1697\"* kept|strong=\"H4931\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*, that|strong=\"H7200\"* they|strong=\"H3068\"* may|strong=\"H3068\"* see|strong=\"H7200\"* the|strong=\"H7200\"* bread|strong=\"H3899\"* with|strong=\"H3068\"* which|strong=\"H3068\"* I|strong=\"H1697\"* fed you|strong=\"H6680\"* in|strong=\"H3068\"* the|strong=\"H7200\"* wilderness|strong=\"H4057\"*, when|strong=\"H7200\"* I|strong=\"H1697\"* brought|strong=\"H3318\"* you|strong=\"H6680\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H7200\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*.’”" + }, + { + "verseNum": 33, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3068\"* Aaron, “Take|strong=\"H3947\"* a|strong=\"H3068\"* pot|strong=\"H6803\"*, and|strong=\"H4872\"* put|strong=\"H5414\"* an|strong=\"H5414\"* omer-full of|strong=\"H3068\"* manna|strong=\"H4478\"* in|strong=\"H3068\"* it|strong=\"H5414\"*, and|strong=\"H4872\"* lay|strong=\"H5414\"* it|strong=\"H5414\"* up|strong=\"H5414\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* be|strong=\"H3068\"* kept|strong=\"H4931\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*.”" + }, + { + "verseNum": 34, + "text": "As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*, so|strong=\"H6680\"* Aaron laid|strong=\"H3240\"* it|strong=\"H6440\"* up|strong=\"H3240\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Testimony|strong=\"H5715\"*, to|strong=\"H3068\"* be|strong=\"H3068\"* kept|strong=\"H4931\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H5704\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* ate the|strong=\"H5704\"* manna|strong=\"H4478\"* forty years|strong=\"H8141\"*, until|strong=\"H5704\"* they|strong=\"H8141\"* came|strong=\"H3478\"* to|strong=\"H5704\"* an|strong=\"H3427\"* inhabited|strong=\"H3427\"* land. They|strong=\"H8141\"* ate the|strong=\"H5704\"* manna|strong=\"H4478\"* until|strong=\"H5704\"* they|strong=\"H8141\"* came|strong=\"H3478\"* to|strong=\"H5704\"* the|strong=\"H5704\"* borders|strong=\"H7097\"* of|strong=\"H1121\"* the|strong=\"H5704\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 36, + "text": "Now an omer|strong=\"H6016\"* is|strong=\"H1931\"* one|strong=\"H1931\"* tenth|strong=\"H6224\"* of|strong=\"H1931\"* an ephah.+ 16:36 1 ephah is about 22 liters or about 2/3 of a bushel*" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Sin|strong=\"H5512\"*, starting according|strong=\"H5921\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s commandment|strong=\"H6310\"*, and|strong=\"H1121\"* encamped|strong=\"H2583\"* in|strong=\"H5921\"* Rephidim|strong=\"H7508\"*; but|strong=\"H5971\"* there|strong=\"H3605\"* was|strong=\"H3068\"* no|strong=\"H3605\"* water|strong=\"H4325\"* for|strong=\"H5921\"* the|strong=\"H3605\"* people|strong=\"H5971\"* to|strong=\"H3478\"* drink|strong=\"H8354\"*." + }, + { + "verseNum": 2, + "text": "Therefore|strong=\"H4872\"* the|strong=\"H5414\"* people|strong=\"H5971\"* quarreled|strong=\"H7378\"* with|strong=\"H5973\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* said, “Give|strong=\"H5414\"* us|strong=\"H5414\"* water|strong=\"H4325\"* to|strong=\"H3068\"* drink|strong=\"H8354\"*.”" + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* people|strong=\"H5971\"* were|strong=\"H5971\"* thirsty|strong=\"H6770\"* for|strong=\"H5921\"* water|strong=\"H4325\"* there|strong=\"H8033\"*; so|strong=\"H5927\"* the|strong=\"H5921\"* people|strong=\"H5971\"* murmured|strong=\"H3885\"* against|strong=\"H5921\"* Moses|strong=\"H4872\"*, and|strong=\"H1121\"* said, “Why|strong=\"H4100\"* have|strong=\"H5971\"* you|strong=\"H5921\"* brought|strong=\"H5927\"* us|strong=\"H5921\"* up|strong=\"H5927\"* out|strong=\"H5921\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, to|strong=\"H4191\"* kill|strong=\"H4191\"* us|strong=\"H5921\"*, our|strong=\"H5921\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* our|strong=\"H5921\"* livestock|strong=\"H4735\"* with|strong=\"H5921\"* thirst|strong=\"H6772\"*?”" + }, + { + "verseNum": 4, + "text": "Moses|strong=\"H4872\"* cried|strong=\"H6817\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying, “What|strong=\"H4100\"* shall|strong=\"H3068\"* I|strong=\"H2088\"* do|strong=\"H6213\"* with|strong=\"H3068\"* these|strong=\"H2088\"* people|strong=\"H5971\"*? They|strong=\"H3068\"* are|strong=\"H5971\"* almost|strong=\"H4592\"* ready|strong=\"H6213\"* to|strong=\"H3068\"* stone|strong=\"H5619\"* me|strong=\"H6213\"*.”" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H1980\"* Moses|strong=\"H4872\"*, “Walk|strong=\"H1980\"* on|strong=\"H1980\"* before|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, and|strong=\"H1980\"* take|strong=\"H3947\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* with|strong=\"H1980\"* you|strong=\"H6440\"*, and|strong=\"H1980\"* take|strong=\"H3947\"* the|strong=\"H6440\"* rod|strong=\"H4294\"* in|strong=\"H1980\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* with|strong=\"H1980\"* which|strong=\"H3068\"* you|strong=\"H6440\"* struck|strong=\"H5221\"* the|strong=\"H6440\"* Nile|strong=\"H2975\"*, and|strong=\"H1980\"* go|strong=\"H1980\"*." + }, + { + "verseNum": 6, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H5971\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* you|strong=\"H6440\"* there|strong=\"H8033\"* on|strong=\"H5921\"* the|strong=\"H6440\"* rock|strong=\"H6697\"* in|strong=\"H5921\"* Horeb|strong=\"H2722\"*. You|strong=\"H6440\"* shall|strong=\"H5971\"* strike|strong=\"H5221\"* the|strong=\"H6440\"* rock|strong=\"H6697\"*, and|strong=\"H4872\"* water|strong=\"H4325\"* will|strong=\"H5971\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H6440\"* it|strong=\"H5921\"*, that|strong=\"H5971\"* the|strong=\"H6440\"* people|strong=\"H5971\"* may|strong=\"H5971\"* drink|strong=\"H8354\"*.” Moses|strong=\"H4872\"* did|strong=\"H6213\"* so|strong=\"H3651\"* in|strong=\"H5921\"* the|strong=\"H6440\"* sight|strong=\"H5869\"* of|strong=\"H6440\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3068\"* called|strong=\"H7121\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H5921\"* place|strong=\"H4725\"* Massah|strong=\"H4532\"*,+ 17:7 Massah means testing. * and|strong=\"H1121\"* Meribah|strong=\"H4809\"*,+ 17:7 Meribah means quarreling.* because|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* quarreled, and|strong=\"H1121\"* because|strong=\"H5921\"* they|strong=\"H3068\"* tested|strong=\"H5254\"* Yahweh|strong=\"H3068\"*, saying, “Is|strong=\"H3068\"* Yahweh|strong=\"H3068\"* among|strong=\"H7130\"* us|strong=\"H5921\"*, or|strong=\"H1121\"* not|strong=\"H1121\"*?”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H3478\"* Amalek|strong=\"H6002\"* came|strong=\"H3478\"* and|strong=\"H3478\"* fought|strong=\"H3898\"* with|strong=\"H5973\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* Rephidim|strong=\"H7508\"*." + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Joshua|strong=\"H3091\"*, “Choose men|strong=\"H7218\"* for|strong=\"H5921\"* us|strong=\"H5921\"*, and|strong=\"H4872\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* fight|strong=\"H3898\"* with|strong=\"H5921\"* Amalek|strong=\"H6002\"*. Tomorrow|strong=\"H4279\"* I|strong=\"H5921\"* will|strong=\"H3027\"* stand|strong=\"H5324\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H5921\"* hill|strong=\"H1389\"* with|strong=\"H5921\"* God|strong=\"H3027\"*’s rod|strong=\"H4294\"* in|strong=\"H5921\"* my|strong=\"H5921\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 10, + "text": "So|strong=\"H6213\"* Joshua|strong=\"H3091\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Moses|strong=\"H4872\"* had|strong=\"H4872\"* told|strong=\"H6213\"* him|strong=\"H6213\"*, and|strong=\"H4872\"* fought|strong=\"H3898\"* with|strong=\"H6213\"* Amalek|strong=\"H6002\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"*, Aaron, and|strong=\"H4872\"* Hur|strong=\"H2354\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H6213\"* top|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H6213\"* hill|strong=\"H1389\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H1961\"* Moses|strong=\"H4872\"* held|strong=\"H4872\"* up|strong=\"H7311\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*, Israel|strong=\"H3478\"* prevailed|strong=\"H1396\"*. When|strong=\"H1961\"* he|strong=\"H3027\"* let|strong=\"H5117\"* down|strong=\"H5117\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*, Amalek|strong=\"H6002\"* prevailed|strong=\"H1396\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H1961\"* Moses|strong=\"H4872\"*’ hands|strong=\"H3027\"* were|strong=\"H1961\"* heavy|strong=\"H3515\"*; so|strong=\"H3947\"* they|strong=\"H5921\"* took|strong=\"H3947\"* a|strong=\"H3068\"* stone, and|strong=\"H4872\"* put|strong=\"H7760\"* it|strong=\"H7760\"* under|strong=\"H8478\"* him|strong=\"H5921\"*, and|strong=\"H4872\"* he|strong=\"H5704\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* it|strong=\"H7760\"*. Aaron and|strong=\"H4872\"* Hur|strong=\"H2354\"* held|strong=\"H8551\"* up|strong=\"H7760\"* his|strong=\"H7760\"* hands|strong=\"H3027\"*, the|strong=\"H5921\"* one|strong=\"H2088\"* on|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H2088\"* side|strong=\"H2088\"*, and|strong=\"H4872\"* the|strong=\"H5921\"* other|strong=\"H2088\"* on|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H2088\"* side|strong=\"H2088\"*. His|strong=\"H7760\"* hands|strong=\"H3027\"* were|strong=\"H1961\"* steady until|strong=\"H5704\"* sunset|strong=\"H8121\"*." + }, + { + "verseNum": 13, + "text": "Joshua|strong=\"H3091\"* defeated Amalek|strong=\"H6002\"* and|strong=\"H5971\"* his|strong=\"H6310\"* people|strong=\"H5971\"* with|strong=\"H5971\"* the|strong=\"H3091\"* edge|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H3091\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Write|strong=\"H3789\"* this|strong=\"H2063\"* for|strong=\"H3588\"* a|strong=\"H3068\"* memorial|strong=\"H2146\"* in|strong=\"H3068\"* a|strong=\"H3068\"* book|strong=\"H5612\"*, and|strong=\"H4872\"* rehearse|strong=\"H7760\"* it|strong=\"H7760\"* in|strong=\"H3068\"* the|strong=\"H3588\"* ears of|strong=\"H3068\"* Joshua|strong=\"H3091\"*: that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* utterly|strong=\"H4229\"* blot|strong=\"H4229\"* out|strong=\"H4229\"* the|strong=\"H3588\"* memory|strong=\"H2143\"* of|strong=\"H3068\"* Amalek|strong=\"H6002\"* from|strong=\"H8478\"* under|strong=\"H8478\"* the|strong=\"H3588\"* sky|strong=\"H8064\"*.”" + }, + { + "verseNum": 15, + "text": "Moses|strong=\"H4872\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"*, and|strong=\"H4872\"* called|strong=\"H7121\"* its name|strong=\"H8034\"* “Yahweh|strong=\"H3068\"* our Banner”.+ 17:15 Hebrew, Yahweh Nissi*" + }, + { + "verseNum": 16, + "text": "He|strong=\"H3588\"* said, “Yah|strong=\"H3068\"* has|strong=\"H3068\"* sworn|strong=\"H3027\"*: ‘Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* have|strong=\"H3068\"* war|strong=\"H4421\"* with|strong=\"H3068\"* Amalek|strong=\"H6002\"* from|strong=\"H5921\"* generation|strong=\"H1755\"* to|strong=\"H3068\"* generation|strong=\"H1755\"*.’”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3588\"* Jethro|strong=\"H3503\"*, the|strong=\"H3605\"* priest|strong=\"H3548\"* of|strong=\"H3068\"* Midian|strong=\"H4080\"*, Moses|strong=\"H4872\"*’ father-in-law|strong=\"H2859\"*, heard|strong=\"H8085\"* of|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3588\"* God|strong=\"H3068\"* had|strong=\"H3068\"* done|strong=\"H6213\"* for|strong=\"H3588\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* for|strong=\"H3588\"* Israel|strong=\"H3478\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, how|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* brought|strong=\"H3318\"* Israel|strong=\"H3478\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 2, + "text": "Jethro|strong=\"H3503\"*, Moses|strong=\"H4872\"*’ father-in-law|strong=\"H2859\"*, received|strong=\"H3947\"* Zipporah|strong=\"H6855\"*, Moses|strong=\"H4872\"*’ wife, after he|strong=\"H4872\"* had|strong=\"H4872\"* sent|strong=\"H3947\"* her|strong=\"H3947\"* away|strong=\"H3947\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H1121\"* her|strong=\"H1961\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*. The|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H1121\"* one|strong=\"H1121\"* son|strong=\"H1121\"* was|strong=\"H8034\"* Gershom|strong=\"H1647\"*,+ 18:3 “Gershom” sounds like the Hebrew for “an alien there”.* for|strong=\"H3588\"* Moses|strong=\"H8034\"* said, “I|strong=\"H3588\"* have|strong=\"H1961\"* lived|strong=\"H1961\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner|strong=\"H5237\"* in|strong=\"H1121\"* a|strong=\"H3068\"* foreign|strong=\"H5237\"* land”." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H3588\"* other was|strong=\"H8034\"* Eliezer,+ 18:4 Eliezer means “God is my helper”. * for|strong=\"H3588\"* he|strong=\"H3588\"* said, “My|strong=\"H5337\"* father’s God was|strong=\"H8034\"* my|strong=\"H5337\"* help|strong=\"H5828\"* and|strong=\"H2719\"* delivered|strong=\"H5337\"* me|strong=\"H5337\"* from|strong=\"H5337\"* Pharaoh|strong=\"H6547\"*’s sword|strong=\"H2719\"*.”" + }, + { + "verseNum": 5, + "text": "Jethro|strong=\"H3503\"*, Moses|strong=\"H4872\"*’ father-in-law|strong=\"H2859\"*, came|strong=\"H4872\"* with|strong=\"H2859\"* Moses|strong=\"H4872\"*’ sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H4872\"* wife to|strong=\"H1121\"* Moses|strong=\"H4872\"* into the|strong=\"H4872\"* wilderness|strong=\"H4057\"* where|strong=\"H8033\"* he|strong=\"H1931\"* was|strong=\"H1931\"* encamped|strong=\"H2583\"*, at|strong=\"H2583\"* the|strong=\"H4872\"* Mountain|strong=\"H2022\"* of|strong=\"H1121\"* God." + }, + { + "verseNum": 6, + "text": "He|strong=\"H8147\"* said to|strong=\"H1121\"* Moses|strong=\"H4872\"*, “I|strong=\"H1121\"*, your|strong=\"H5973\"* father-in-law|strong=\"H2859\"* Jethro|strong=\"H3503\"*, have|strong=\"H1121\"* come to|strong=\"H1121\"* you|strong=\"H5973\"* with|strong=\"H5973\"* your|strong=\"H5973\"* wife, and|strong=\"H1121\"* her|strong=\"H8147\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* with|strong=\"H5973\"* her|strong=\"H8147\"*.”" + }, + { + "verseNum": 7, + "text": "Moses|strong=\"H4872\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* his|strong=\"H4872\"* father-in-law|strong=\"H2859\"*, and|strong=\"H4872\"* bowed|strong=\"H7812\"* and|strong=\"H4872\"* kissed|strong=\"H5401\"* him|strong=\"H3318\"*. They|strong=\"H7965\"* asked|strong=\"H7592\"* each other|strong=\"H7453\"* of|strong=\"H3318\"* their|strong=\"H3318\"* welfare|strong=\"H7965\"*, and|strong=\"H4872\"* they|strong=\"H7965\"* came|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3318\"* tent." + }, + { + "verseNum": 8, + "text": "Moses|strong=\"H4872\"* told|strong=\"H5608\"* his|strong=\"H3605\"* father-in-law|strong=\"H2859\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3478\"* Pharaoh|strong=\"H6547\"* and|strong=\"H4872\"* to|strong=\"H3478\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"* for|strong=\"H5921\"* Israel|strong=\"H3478\"*’s sake|strong=\"H5921\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* hardships that|strong=\"H3605\"* had|strong=\"H3068\"* come|strong=\"H4672\"* on|strong=\"H5921\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"*, and|strong=\"H4872\"* how|strong=\"H1870\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5337\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "Jethro|strong=\"H3503\"* rejoiced|strong=\"H2302\"* for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* goodness|strong=\"H2896\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"*, in|strong=\"H5921\"* that|strong=\"H3605\"* he|strong=\"H6213\"* had|strong=\"H3068\"* delivered|strong=\"H5337\"* them|strong=\"H5921\"* out|strong=\"H5921\"* of|strong=\"H3068\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"*." + }, + { + "verseNum": 10, + "text": "Jethro|strong=\"H3503\"* said, “Blessed|strong=\"H1288\"* be|strong=\"H3027\"* Yahweh|strong=\"H3068\"*, who|strong=\"H5971\"* has|strong=\"H3068\"* delivered|strong=\"H5337\"* you|strong=\"H1288\"* out|strong=\"H5337\"* of|strong=\"H3068\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H3068\"* Egyptians|strong=\"H4714\"*, and|strong=\"H3068\"* out|strong=\"H5337\"* of|strong=\"H3068\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*; who|strong=\"H5971\"* has|strong=\"H3068\"* delivered|strong=\"H5337\"* the|strong=\"H3068\"* people|strong=\"H5971\"* from|strong=\"H3027\"* under|strong=\"H8478\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H3068\"* Egyptians|strong=\"H4714\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H6258\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* greater|strong=\"H1419\"* than|strong=\"H5921\"* all|strong=\"H3605\"* gods because|strong=\"H3588\"* of|strong=\"H3068\"* the|strong=\"H3605\"* way|strong=\"H1697\"* that|strong=\"H3588\"* they|strong=\"H3588\"* treated people|strong=\"H3045\"* arrogantly|strong=\"H2102\"*.”" + }, + { + "verseNum": 12, + "text": "Jethro|strong=\"H3503\"*, Moses|strong=\"H4872\"*’ father-in-law|strong=\"H2859\"*, took|strong=\"H3947\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H4872\"* sacrifices|strong=\"H2077\"* for|strong=\"H6440\"* God. Aaron came|strong=\"H3478\"* with|strong=\"H5973\"* all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* with|strong=\"H5973\"* Moses|strong=\"H4872\"*’ father-in-law|strong=\"H2859\"* before|strong=\"H6440\"* God." + }, + { + "verseNum": 13, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, Moses|strong=\"H4872\"* sat|strong=\"H3427\"* to|strong=\"H5704\"* judge|strong=\"H8199\"* the|strong=\"H5921\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* the|strong=\"H5921\"* people|strong=\"H5971\"* stood|strong=\"H5975\"* around|strong=\"H5921\"* Moses|strong=\"H4872\"* from|strong=\"H4480\"* the|strong=\"H5921\"* morning|strong=\"H1242\"* to|strong=\"H5704\"* the|strong=\"H5921\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H7200\"* Moses|strong=\"H4872\"*’ father-in-law|strong=\"H2859\"* saw|strong=\"H7200\"* all|strong=\"H3605\"* that|strong=\"H5971\"* he|strong=\"H1931\"* did|strong=\"H6213\"* to|strong=\"H5704\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, he|strong=\"H1931\"* said|strong=\"H1697\"*, “What|strong=\"H4100\"* is|strong=\"H2088\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* that|strong=\"H5971\"* you|strong=\"H3605\"* do|strong=\"H6213\"* for|strong=\"H5704\"* the|strong=\"H3605\"* people|strong=\"H5971\"*? Why|strong=\"H4100\"* do|strong=\"H6213\"* you|strong=\"H3605\"* sit|strong=\"H3427\"* alone|strong=\"H4480\"*, and|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* stand|strong=\"H5324\"* around|strong=\"H5921\"* you|strong=\"H3605\"* from|strong=\"H4480\"* morning|strong=\"H1242\"* to|strong=\"H5704\"* evening|strong=\"H6153\"*?”" + }, + { + "verseNum": 15, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H5971\"* his|strong=\"H3588\"* father-in-law|strong=\"H2859\"*, “Because|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* come|strong=\"H5971\"* to|strong=\"H5971\"* me|strong=\"H1875\"* to|strong=\"H5971\"* inquire|strong=\"H1875\"* of|strong=\"H5971\"* God." + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1961\"* a|strong=\"H3068\"* matter|strong=\"H1697\"*, they|strong=\"H3588\"* come|strong=\"H1961\"* to|strong=\"H1961\"* me|strong=\"H1961\"*, and|strong=\"H2706\"* I|strong=\"H3588\"* judge|strong=\"H8199\"* between|strong=\"H8199\"* a|strong=\"H3068\"* man|strong=\"H3045\"* and|strong=\"H2706\"* his|strong=\"H3045\"* neighbor|strong=\"H7453\"*, and|strong=\"H2706\"* I|strong=\"H3588\"* make|strong=\"H3045\"* them|strong=\"H1961\"* know|strong=\"H3045\"* the|strong=\"H3588\"* statutes|strong=\"H2706\"* of|strong=\"H1697\"* God, and|strong=\"H2706\"* his|strong=\"H3045\"* laws|strong=\"H8451\"*.”" + }, + { + "verseNum": 17, + "text": "Moses|strong=\"H4872\"*’ father-in-law|strong=\"H2859\"* said|strong=\"H1697\"* to|strong=\"H6213\"* him|strong=\"H6213\"*, “The|strong=\"H6213\"* thing|strong=\"H1697\"* that|strong=\"H1697\"* you|strong=\"H6213\"* do|strong=\"H6213\"* is|strong=\"H1697\"* not|strong=\"H3808\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H3588\"* will|strong=\"H5971\"* surely|strong=\"H3588\"* wear|strong=\"H5034\"* away|strong=\"H5034\"*, both|strong=\"H1571\"* you|strong=\"H3588\"*, and|strong=\"H5971\"* this|strong=\"H2088\"* people|strong=\"H5971\"* that|strong=\"H3588\"* is|strong=\"H2088\"* with|strong=\"H5973\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* thing|strong=\"H1697\"* is|strong=\"H2088\"* too|strong=\"H4480\"* heavy|strong=\"H3515\"* for|strong=\"H3588\"* you|strong=\"H3588\"*. You|strong=\"H3588\"* are|strong=\"H5971\"* not|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* perform|strong=\"H6213\"* it|strong=\"H3588\"* yourself|strong=\"H6213\"* alone|strong=\"H4480\"*." + }, + { + "verseNum": 19, + "text": "Listen|strong=\"H8085\"* now|strong=\"H6258\"* to|strong=\"H1961\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*. I|strong=\"H1697\"* will|strong=\"H1961\"* give|strong=\"H3289\"* you|strong=\"H5973\"* counsel|strong=\"H3289\"*, and|strong=\"H5971\"* God be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H5973\"*. You|strong=\"H5973\"* represent the|strong=\"H8085\"* people|strong=\"H5971\"* before|strong=\"H5973\"* God, and|strong=\"H5971\"* bring|strong=\"H1961\"* the|strong=\"H8085\"* causes|strong=\"H1697\"* to|strong=\"H1961\"* God." + }, + { + "verseNum": 20, + "text": "You|strong=\"H6213\"* shall|strong=\"H8451\"* teach|strong=\"H3045\"* them|strong=\"H6213\"* the|strong=\"H6213\"* statutes|strong=\"H2706\"* and|strong=\"H3212\"* the|strong=\"H6213\"* laws|strong=\"H8451\"*, and|strong=\"H3212\"* shall|strong=\"H8451\"* show|strong=\"H6213\"* them|strong=\"H6213\"* the|strong=\"H6213\"* way|strong=\"H1870\"* in|strong=\"H6213\"* which|strong=\"H8451\"* they|strong=\"H6213\"* must walk|strong=\"H3212\"*, and|strong=\"H3212\"* the|strong=\"H6213\"* work|strong=\"H4639\"* that|strong=\"H3045\"* they|strong=\"H6213\"* must do|strong=\"H6213\"*." + }, + { + "verseNum": 21, + "text": "Moreover you|strong=\"H3605\"* shall|strong=\"H5971\"* provide|strong=\"H2372\"* out|strong=\"H5921\"* of|strong=\"H8269\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* able|strong=\"H2428\"* men|strong=\"H5971\"* which|strong=\"H5971\"* fear|strong=\"H3373\"* God: men|strong=\"H5971\"* of|strong=\"H8269\"* truth, hating|strong=\"H8130\"* unjust|strong=\"H1215\"* gain|strong=\"H1215\"*; and|strong=\"H3967\"* place|strong=\"H7760\"* such|strong=\"H3605\"* over|strong=\"H5921\"* them|strong=\"H5921\"*, to|strong=\"H5921\"* be|strong=\"H5971\"* rulers|strong=\"H8269\"* of|strong=\"H8269\"* thousands, rulers|strong=\"H8269\"* of|strong=\"H8269\"* hundreds|strong=\"H3967\"*, rulers|strong=\"H8269\"* of|strong=\"H8269\"* fifties|strong=\"H2572\"*, and|strong=\"H3967\"* rulers|strong=\"H8269\"* of|strong=\"H8269\"* tens|strong=\"H6235\"*." + }, + { + "verseNum": 22, + "text": "Let|strong=\"H6256\"* them|strong=\"H1992\"* judge|strong=\"H8199\"* the|strong=\"H3605\"* people|strong=\"H5971\"* at|strong=\"H5921\"* all|strong=\"H3605\"* times|strong=\"H6256\"*. It|strong=\"H5921\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* that|strong=\"H5971\"* every|strong=\"H3605\"* great|strong=\"H1419\"* matter|strong=\"H1697\"* they|strong=\"H1992\"* shall|strong=\"H5971\"* bring|strong=\"H5375\"* to|strong=\"H1961\"* you|strong=\"H3605\"*, but|strong=\"H1961\"* every|strong=\"H3605\"* small|strong=\"H6996\"* matter|strong=\"H1697\"* they|strong=\"H1992\"* shall|strong=\"H5971\"* judge|strong=\"H8199\"* themselves|strong=\"H1992\"*. So|strong=\"H1961\"* shall|strong=\"H5971\"* it|strong=\"H5921\"* be|strong=\"H1961\"* easier|strong=\"H7043\"* for|strong=\"H5921\"* you|strong=\"H3605\"*, and|strong=\"H1419\"* they|strong=\"H1992\"* shall|strong=\"H5971\"* share the|strong=\"H3605\"* load|strong=\"H5375\"* with|strong=\"H5921\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 23, + "text": "If you|strong=\"H6680\"* will|strong=\"H5971\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*, and|strong=\"H5971\"* God commands|strong=\"H6680\"* you|strong=\"H6680\"* so|strong=\"H6213\"*, then|strong=\"H2088\"* you|strong=\"H6680\"* will|strong=\"H5971\"* be|strong=\"H1697\"* able|strong=\"H3201\"* to|strong=\"H3201\"* endure|strong=\"H5975\"*, and|strong=\"H5971\"* all|strong=\"H3605\"* these|strong=\"H2088\"* people|strong=\"H5971\"* also|strong=\"H1571\"* will|strong=\"H5971\"* go|strong=\"H5971\"* to|strong=\"H3201\"* their|strong=\"H3605\"* place|strong=\"H4725\"* in|strong=\"H5921\"* peace|strong=\"H7965\"*.”" + }, + { + "verseNum": 24, + "text": "So|strong=\"H6213\"* Moses|strong=\"H4872\"* listened|strong=\"H8085\"* to|strong=\"H6213\"* the|strong=\"H3605\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* his|strong=\"H3605\"* father-in-law|strong=\"H2859\"*, and|strong=\"H4872\"* did|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H6213\"* had|strong=\"H4872\"* said|strong=\"H8085\"*." + }, + { + "verseNum": 25, + "text": "Moses|strong=\"H4872\"* chose able|strong=\"H2428\"* men|strong=\"H7218\"* out|strong=\"H5414\"* of|strong=\"H8269\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, and|strong=\"H3967\"* made|strong=\"H5414\"* them|strong=\"H5414\"* heads|strong=\"H7218\"* over|strong=\"H5921\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, rulers|strong=\"H8269\"* of|strong=\"H8269\"* thousands, rulers|strong=\"H8269\"* of|strong=\"H8269\"* hundreds|strong=\"H3967\"*, rulers|strong=\"H8269\"* of|strong=\"H8269\"* fifties|strong=\"H2572\"*, and|strong=\"H3967\"* rulers|strong=\"H8269\"* of|strong=\"H8269\"* tens|strong=\"H6235\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H1992\"* judged|strong=\"H8199\"* the|strong=\"H3605\"* people|strong=\"H5971\"* at|strong=\"H5971\"* all|strong=\"H3605\"* times|strong=\"H6256\"*. They|strong=\"H1992\"* brought|strong=\"H4872\"* the|strong=\"H3605\"* hard|strong=\"H7186\"* cases|strong=\"H1697\"* to|strong=\"H6256\"* Moses|strong=\"H4872\"*, but|strong=\"H1992\"* every|strong=\"H3605\"* small|strong=\"H6996\"* matter|strong=\"H1697\"* they|strong=\"H1992\"* judged|strong=\"H8199\"* themselves|strong=\"H1992\"*." + }, + { + "verseNum": 27, + "text": "Moses|strong=\"H4872\"* let|strong=\"H7971\"* his|strong=\"H7971\"* father-in-law|strong=\"H2859\"* depart|strong=\"H3212\"*, and|strong=\"H4872\"* he|strong=\"H7971\"* went|strong=\"H3212\"* his|strong=\"H7971\"* way|strong=\"H3212\"* into|strong=\"H3212\"* his|strong=\"H7971\"* own land." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3478\"* the|strong=\"H3117\"* third|strong=\"H7992\"* month|strong=\"H2320\"* after|strong=\"H3117\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3117\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, on|strong=\"H3117\"* that|strong=\"H3117\"* same|strong=\"H2088\"* day|strong=\"H3117\"* they|strong=\"H3117\"* came|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3117\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Sinai|strong=\"H5514\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H5265\"* they|strong=\"H8033\"* had|strong=\"H3478\"* departed|strong=\"H5265\"* from|strong=\"H5265\"* Rephidim|strong=\"H7508\"*, and|strong=\"H3478\"* had|strong=\"H3478\"* come|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H8033\"* wilderness|strong=\"H4057\"* of|strong=\"H2022\"* Sinai|strong=\"H5514\"*, they|strong=\"H8033\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H8033\"* wilderness|strong=\"H4057\"*; and|strong=\"H3478\"* there|strong=\"H8033\"* Israel|strong=\"H3478\"* encamped|strong=\"H2583\"* before|strong=\"H5048\"* the|strong=\"H8033\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 3, + "text": "Moses|strong=\"H4872\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* God|strong=\"H3068\"*, and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* called|strong=\"H7121\"* to|strong=\"H3478\"* him|strong=\"H7121\"* out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H3541\"* mountain|strong=\"H2022\"*, saying, “This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* you|strong=\"H5046\"* shall|strong=\"H3068\"* tell|strong=\"H5046\"* the|strong=\"H3541\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*, and|strong=\"H1121\"* tell|strong=\"H5046\"* the|strong=\"H3541\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*:" + }, + { + "verseNum": 4, + "text": "‘You|strong=\"H5921\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* what|strong=\"H6213\"* I|strong=\"H5921\"* did|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H5921\"* Egyptians|strong=\"H4714\"*, and|strong=\"H4714\"* how|strong=\"H6213\"* I|strong=\"H5921\"* bore|strong=\"H5375\"* you|strong=\"H5921\"* on|strong=\"H5921\"* eagles|strong=\"H5404\"*’ wings|strong=\"H3671\"*, and|strong=\"H4714\"* brought|strong=\"H5375\"* you|strong=\"H5921\"* to|strong=\"H6213\"* myself." + }, + { + "verseNum": 5, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1961\"* indeed|strong=\"H3588\"* obey|strong=\"H8085\"* my|strong=\"H8104\"* voice|strong=\"H6963\"* and|strong=\"H5971\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* covenant|strong=\"H1285\"*, then|strong=\"H1961\"* you|strong=\"H3588\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* my|strong=\"H8104\"* own|strong=\"H1961\"* possession|strong=\"H5459\"* from|strong=\"H8085\"* among|strong=\"H5971\"* all|strong=\"H3605\"* peoples|strong=\"H5971\"*; for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth is|strong=\"H3605\"* mine|strong=\"H8104\"*;" + }, + { + "verseNum": 6, + "text": "and|strong=\"H1121\"* you|strong=\"H1696\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* to|strong=\"H1696\"* me|strong=\"H1696\"* a|strong=\"H3068\"* kingdom|strong=\"H4467\"* of|strong=\"H1121\"* priests|strong=\"H3548\"* and|strong=\"H1121\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* nation|strong=\"H1471\"*.’ These|strong=\"H1696\"* are|strong=\"H1121\"* the|strong=\"H1697\"* words|strong=\"H1697\"* which|strong=\"H1471\"* you|strong=\"H1696\"* shall|strong=\"H3548\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1697\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 7, + "text": "Moses|strong=\"H4872\"* came|strong=\"H3068\"* and|strong=\"H4872\"* called|strong=\"H7121\"* for|strong=\"H7121\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* set|strong=\"H7760\"* before|strong=\"H6440\"* them|strong=\"H6440\"* all|strong=\"H3605\"* these|strong=\"H7121\"* words|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* answered|strong=\"H6030\"* together|strong=\"H3162\"*, and|strong=\"H4872\"* said|strong=\"H1696\"*, “All|strong=\"H3605\"* that|strong=\"H5971\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* we|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* come|strong=\"H5971\"* to|strong=\"H1696\"* you|strong=\"H5046\"* in|strong=\"H3068\"* a|strong=\"H3068\"* thick|strong=\"H5645\"* cloud|strong=\"H6051\"*, that|strong=\"H5971\"* the|strong=\"H8085\"* people|strong=\"H5971\"* may|strong=\"H3068\"* hear|strong=\"H8085\"* when|strong=\"H8085\"* I|strong=\"H2009\"* speak|strong=\"H1696\"* with|strong=\"H5973\"* you|strong=\"H5046\"*, and|strong=\"H4872\"* may|strong=\"H3068\"* also|strong=\"H1571\"* believe you|strong=\"H5046\"* forever|strong=\"H5769\"*.” Moses|strong=\"H4872\"* told|strong=\"H5046\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H3068\"* the|strong=\"H8085\"* people|strong=\"H5971\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Go|strong=\"H3212\"* to|strong=\"H3068\"* the|strong=\"H3068\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* sanctify|strong=\"H6942\"* them|strong=\"H6942\"* today|strong=\"H3117\"* and|strong=\"H4872\"* tomorrow|strong=\"H4279\"*, and|strong=\"H4872\"* let|strong=\"H3212\"* them|strong=\"H6942\"* wash|strong=\"H3526\"* their|strong=\"H3068\"* garments|strong=\"H8071\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H3068\"* be|strong=\"H1961\"* ready|strong=\"H3559\"* for|strong=\"H3588\"* the|strong=\"H3605\"* third|strong=\"H7992\"* day|strong=\"H3117\"*; for|strong=\"H3588\"* on|strong=\"H5921\"* the|strong=\"H3605\"* third|strong=\"H7992\"* day|strong=\"H3117\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* come|strong=\"H1961\"* down|strong=\"H3381\"* in|strong=\"H5921\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H3605\"* shall|strong=\"H5971\"* set|strong=\"H1379\"* bounds|strong=\"H1379\"* to|strong=\"H4191\"* the|strong=\"H3605\"* people|strong=\"H5971\"* all|strong=\"H3605\"* around|strong=\"H5439\"*, saying, ‘Be|strong=\"H4191\"* careful|strong=\"H8104\"* that|strong=\"H5971\"* you|strong=\"H3605\"* don’t go|strong=\"H5927\"* up|strong=\"H5927\"* onto the|strong=\"H3605\"* mountain|strong=\"H2022\"*, or|strong=\"H4191\"* touch|strong=\"H5060\"* its|strong=\"H3605\"* border|strong=\"H7097\"*. Whoever|strong=\"H3605\"* touches|strong=\"H5060\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* shall|strong=\"H5971\"* be|strong=\"H4191\"* surely|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 13, + "text": "No|strong=\"H3808\"* hand|strong=\"H3027\"* shall|strong=\"H3027\"* touch|strong=\"H5060\"* him|strong=\"H3027\"*, but|strong=\"H3588\"* he|strong=\"H3588\"* shall|strong=\"H3027\"* surely|strong=\"H3588\"* be|strong=\"H3808\"* stoned|strong=\"H5619\"* or|strong=\"H3808\"* shot|strong=\"H3384\"* through|strong=\"H3027\"*; whether it|strong=\"H3588\"* is|strong=\"H3027\"* animal or|strong=\"H3808\"* man, he|strong=\"H3588\"* shall|strong=\"H3027\"* not|strong=\"H3808\"* live|strong=\"H2421\"*.’ When|strong=\"H3588\"* the|strong=\"H3588\"* trumpet|strong=\"H3104\"* sounds|strong=\"H4900\"* long|strong=\"H4900\"*, they|strong=\"H1992\"* shall|strong=\"H3027\"* come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H3588\"* mountain|strong=\"H2022\"*.”" + }, + { + "verseNum": 14, + "text": "Moses|strong=\"H4872\"* went|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H4480\"* mountain|strong=\"H2022\"* to|strong=\"H3381\"* the|strong=\"H4480\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* sanctified|strong=\"H6942\"* the|strong=\"H4480\"* people|strong=\"H5971\"*; and|strong=\"H4872\"* they|strong=\"H5971\"* washed|strong=\"H3526\"* their|strong=\"H3526\"* clothes|strong=\"H8071\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3117\"* said to|strong=\"H1961\"* the|strong=\"H3117\"* people|strong=\"H5971\"*, “Be|strong=\"H1961\"* ready|strong=\"H3559\"* by|strong=\"H3117\"* the|strong=\"H3117\"* third|strong=\"H7969\"* day|strong=\"H3117\"*. Don’t have|strong=\"H1961\"* sexual relations with|strong=\"H3117\"* a|strong=\"H3068\"* woman.”" + }, + { + "verseNum": 16, + "text": "On|strong=\"H5921\"* the|strong=\"H3605\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, when|strong=\"H1961\"* it|strong=\"H5921\"* was|strong=\"H1961\"* morning|strong=\"H1242\"*, there|strong=\"H1961\"* were|strong=\"H1961\"* thunders|strong=\"H6963\"* and|strong=\"H3117\"* lightnings|strong=\"H1300\"*, and|strong=\"H3117\"* a|strong=\"H3068\"* thick|strong=\"H3515\"* cloud|strong=\"H6051\"* on|strong=\"H5921\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"*, and|strong=\"H3117\"* the|strong=\"H3605\"* sound|strong=\"H6963\"* of|strong=\"H3117\"* an|strong=\"H1961\"* exceedingly|strong=\"H3966\"* loud|strong=\"H2389\"* trumpet|strong=\"H7782\"*; and|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* trembled|strong=\"H2729\"*." + }, + { + "verseNum": 17, + "text": "Moses|strong=\"H4872\"* led|strong=\"H3318\"* the|strong=\"H4480\"* people|strong=\"H5971\"* out|strong=\"H3318\"* of|strong=\"H2022\"* the|strong=\"H4480\"* camp|strong=\"H4264\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* God; and|strong=\"H4872\"* they|strong=\"H5971\"* stood|strong=\"H3320\"* at|strong=\"H4264\"* the|strong=\"H4480\"* lower|strong=\"H8482\"* part|strong=\"H4480\"* of|strong=\"H2022\"* the|strong=\"H4480\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 18, + "text": "All|strong=\"H3605\"* of|strong=\"H3068\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"* smoked, because|strong=\"H5921\"* Yahweh|strong=\"H3068\"* descended|strong=\"H3381\"* on|strong=\"H5921\"* it|strong=\"H5921\"* in|strong=\"H5921\"* fire; and|strong=\"H3068\"* its|strong=\"H3605\"* smoke|strong=\"H6227\"* ascended|strong=\"H5927\"* like|strong=\"H3381\"* the|strong=\"H3605\"* smoke|strong=\"H6227\"* of|strong=\"H3068\"* a|strong=\"H3068\"* furnace|strong=\"H3536\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* mountain|strong=\"H2022\"* quaked|strong=\"H2729\"* greatly|strong=\"H3966\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H1961\"* the|strong=\"H4872\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H4872\"* trumpet|strong=\"H7782\"* grew|strong=\"H1980\"* louder|strong=\"H3966\"* and|strong=\"H1980\"* louder|strong=\"H3966\"*, Moses|strong=\"H4872\"* spoke|strong=\"H1696\"*, and|strong=\"H1980\"* God answered|strong=\"H6030\"* him|strong=\"H6963\"* by|strong=\"H1980\"* a|strong=\"H3068\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* came|strong=\"H5927\"* down|strong=\"H3381\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*, to|strong=\"H3381\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"*. Yahweh|strong=\"H3068\"* called|strong=\"H7121\"* Moses|strong=\"H4872\"* to|strong=\"H3381\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"*, and|strong=\"H4872\"* Moses|strong=\"H4872\"* went|strong=\"H5927\"* up|strong=\"H5927\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3381\"* Moses|strong=\"H4872\"*, “Go|strong=\"H3381\"* down|strong=\"H3381\"*, warn|strong=\"H5749\"* the|strong=\"H7200\"* people|strong=\"H5971\"*, lest|strong=\"H6435\"* they|strong=\"H3068\"* break|strong=\"H2040\"* through|strong=\"H4480\"* to|strong=\"H3381\"* Yahweh|strong=\"H3068\"* to|strong=\"H3381\"* gaze|strong=\"H7200\"*, and|strong=\"H4872\"* many|strong=\"H7227\"* of|strong=\"H3068\"* them|strong=\"H3381\"* perish|strong=\"H5307\"*." + }, + { + "verseNum": 22, + "text": "Let the|strong=\"H3068\"* priests|strong=\"H3548\"* also|strong=\"H1571\"*, who|strong=\"H3068\"* come|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, sanctify|strong=\"H6942\"* themselves|strong=\"H6942\"*, lest|strong=\"H6435\"* Yahweh|strong=\"H3068\"* break|strong=\"H6555\"* out|strong=\"H6555\"* on|strong=\"H3068\"* them|strong=\"H6942\"*.”" + }, + { + "verseNum": 23, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3201\"* Yahweh|strong=\"H3068\"*, “The|strong=\"H3588\"* people|strong=\"H5971\"* can|strong=\"H3201\"*’t come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3201\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* warned|strong=\"H5749\"* us|strong=\"H3588\"*, saying, ‘Set|strong=\"H6942\"* bounds|strong=\"H1379\"* around|strong=\"H5749\"* the|strong=\"H3588\"* mountain|strong=\"H2022\"*, and|strong=\"H4872\"* sanctify|strong=\"H6942\"* it|strong=\"H3588\"*.’”" + }, + { + "verseNum": 24, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3381\"* him|strong=\"H5973\"*, “Go|strong=\"H3212\"* down|strong=\"H3381\"*! You|strong=\"H5973\"* shall|strong=\"H3548\"* bring|strong=\"H5927\"* Aaron up|strong=\"H5927\"* with|strong=\"H5973\"* you|strong=\"H5973\"*, but|strong=\"H5971\"* don’t let|strong=\"H3381\"* the|strong=\"H3068\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H3068\"* people|strong=\"H5971\"* break|strong=\"H2040\"* through|strong=\"H6555\"* to|strong=\"H3381\"* come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3381\"* Yahweh|strong=\"H3068\"*, lest|strong=\"H6435\"* he|strong=\"H3068\"* break|strong=\"H2040\"* out|strong=\"H6555\"* against|strong=\"H5973\"* them|strong=\"H3381\"*.”" + }, + { + "verseNum": 25, + "text": "So|strong=\"H3381\"* Moses|strong=\"H4872\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H4872\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* told them|strong=\"H3381\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "God+ 20:1 After “God”, the Hebrew has the two letters “Aleph Tav” (the first and last letters of the Hebrew alphabet), not as a word, but as a grammatical marker.* spoke|strong=\"H1696\"* all|strong=\"H3605\"* these|strong=\"H1696\"* words|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“I|strong=\"H4714\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H4714\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3068\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* bondage|strong=\"H5650\"*." + }, + { + "verseNum": 3, + "text": "“You|strong=\"H6440\"* shall|strong=\"H3808\"* have|strong=\"H1961\"* no|strong=\"H3808\"* other gods before|strong=\"H6440\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 4, + "text": "“You|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* make|strong=\"H6213\"* for|strong=\"H6213\"* yourselves|strong=\"H3605\"* an|strong=\"H6213\"* idol|strong=\"H6459\"*, nor|strong=\"H3808\"* any|strong=\"H3605\"* image|strong=\"H6459\"* of|strong=\"H4325\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H6213\"* the|strong=\"H3605\"* heavens|strong=\"H8064\"* above|strong=\"H4605\"*, or|strong=\"H3808\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H6213\"* the|strong=\"H3605\"* earth|strong=\"H8064\"* beneath|strong=\"H8478\"*, or|strong=\"H3808\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H6213\"* the|strong=\"H3605\"* water|strong=\"H4325\"* under|strong=\"H8478\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*:" + }, + { + "verseNum": 5, + "text": "you|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* bow|strong=\"H7812\"* yourself|strong=\"H5921\"* down|strong=\"H7812\"* to|strong=\"H3068\"* them|strong=\"H5921\"*, nor|strong=\"H3808\"* serve|strong=\"H5647\"* them|strong=\"H5921\"*, for|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, am|strong=\"H3068\"* a|strong=\"H3068\"* jealous|strong=\"H7067\"* God|strong=\"H3068\"*, visiting|strong=\"H6485\"* the|strong=\"H5921\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H5921\"* fathers on|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* third|strong=\"H8029\"* and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fourth|strong=\"H7256\"* generation|strong=\"H8029\"* of|strong=\"H1121\"* those|strong=\"H5921\"* who|strong=\"H3068\"* hate|strong=\"H8130\"* me|strong=\"H8130\"*," + }, + { + "verseNum": 6, + "text": "and|strong=\"H2617\"* showing|strong=\"H6213\"* loving kindness|strong=\"H2617\"* to|strong=\"H6213\"* thousands of|strong=\"H4687\"* those|strong=\"H6213\"* who|strong=\"H8104\"* love|strong=\"H2617\"* me|strong=\"H6213\"* and|strong=\"H2617\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"*." + }, + { + "verseNum": 7, + "text": "“You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* misuse the|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*,+ 20:7 or, You shall not take the name of Yahweh your God in vain* for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* hold him|strong=\"H5375\"* guiltless|strong=\"H5352\"* who|strong=\"H3068\"* misuses his|strong=\"H5375\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 8, + "text": "“Remember|strong=\"H2142\"* the|strong=\"H3117\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*, to|strong=\"H3117\"* keep|strong=\"H6942\"* it|strong=\"H6942\"* holy|strong=\"H6942\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3605\"* shall|strong=\"H3117\"* labor|strong=\"H5647\"* six|strong=\"H8337\"* days|strong=\"H3117\"*, and|strong=\"H3117\"* do|strong=\"H6213\"* all|strong=\"H3605\"* your|strong=\"H3605\"* work|strong=\"H4399\"*," + }, + { + "verseNum": 10, + "text": "but|strong=\"H3808\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* is|strong=\"H3068\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. You|strong=\"H3605\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* do|strong=\"H6213\"* any|strong=\"H3605\"* work|strong=\"H4399\"* in|strong=\"H3068\"* it|strong=\"H6213\"*, you|strong=\"H3605\"*, nor|strong=\"H3808\"* your|strong=\"H3068\"* son|strong=\"H1121\"*, nor|strong=\"H3808\"* your|strong=\"H3068\"* daughter|strong=\"H1323\"*, your|strong=\"H3068\"* male|strong=\"H5650\"* servant|strong=\"H5650\"*, nor|strong=\"H3808\"* your|strong=\"H3068\"* female|strong=\"H1323\"* servant|strong=\"H5650\"*, nor|strong=\"H3808\"* your|strong=\"H3068\"* livestock, nor|strong=\"H3808\"* your|strong=\"H3068\"* stranger|strong=\"H1616\"* who|strong=\"H3605\"* is|strong=\"H3068\"* within your|strong=\"H3068\"* gates|strong=\"H8179\"*;" + }, + { + "verseNum": 11, + "text": "for|strong=\"H3588\"* in|strong=\"H5921\"* six|strong=\"H8337\"* days|strong=\"H3117\"* Yahweh|strong=\"H3068\"* made|strong=\"H6213\"* heaven|strong=\"H8064\"* and|strong=\"H3068\"* earth|strong=\"H8064\"*, the|strong=\"H3605\"* sea|strong=\"H3220\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H3068\"* in|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* rested|strong=\"H5117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*; therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* blessed|strong=\"H1288\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*, and|strong=\"H3068\"* made|strong=\"H6213\"* it|strong=\"H5921\"* holy|strong=\"H6942\"*." + }, + { + "verseNum": 12, + "text": "“Honor|strong=\"H3513\"* your|strong=\"H3068\"* father and|strong=\"H3068\"* your|strong=\"H3068\"* mother, that|strong=\"H3117\"* your|strong=\"H3068\"* days|strong=\"H3117\"* may|strong=\"H3068\"* be|strong=\"H3068\"* long|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "“You|strong=\"H3808\"* shall|strong=\"H7523\"* not|strong=\"H3808\"* murder|strong=\"H7523\"*." + }, + { + "verseNum": 14, + "text": "“You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* commit|strong=\"H5003\"* adultery|strong=\"H5003\"*." + }, + { + "verseNum": 15, + "text": "“You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* steal|strong=\"H1589\"*." + }, + { + "verseNum": 16, + "text": "“You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* give|strong=\"H6030\"* false|strong=\"H8267\"* testimony|strong=\"H5707\"* against|strong=\"H7453\"* your|strong=\"H3808\"* neighbor|strong=\"H7453\"*." + }, + { + "verseNum": 17, + "text": "“You|strong=\"H3605\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* covet|strong=\"H2530\"* your|strong=\"H3605\"* neighbor|strong=\"H7453\"*’s house|strong=\"H1004\"*. You|strong=\"H3605\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* covet|strong=\"H2530\"* your|strong=\"H3605\"* neighbor|strong=\"H7453\"*’s wife, nor|strong=\"H3808\"* his|strong=\"H3605\"* male|strong=\"H5650\"* servant|strong=\"H5650\"*, nor|strong=\"H3808\"* his|strong=\"H3605\"* female servant|strong=\"H5650\"*, nor|strong=\"H3808\"* his|strong=\"H3605\"* ox|strong=\"H7794\"*, nor|strong=\"H3808\"* his|strong=\"H3605\"* donkey|strong=\"H2543\"*, nor|strong=\"H3808\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* your|strong=\"H3605\"* neighbor|strong=\"H7453\"*’s.”" + }, + { + "verseNum": 18, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* perceived|strong=\"H7200\"* the|strong=\"H3605\"* thunderings|strong=\"H6963\"*, the|strong=\"H3605\"* lightnings|strong=\"H3940\"*, the|strong=\"H3605\"* sound|strong=\"H6963\"* of|strong=\"H2022\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"*, and|strong=\"H5971\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* smoking|strong=\"H6226\"*. When|strong=\"H7200\"* the|strong=\"H3605\"* people|strong=\"H5971\"* saw|strong=\"H7200\"* it|strong=\"H7200\"*, they|strong=\"H5971\"* trembled|strong=\"H5128\"*, and|strong=\"H5971\"* stayed|strong=\"H5975\"* at|strong=\"H5975\"* a|strong=\"H3068\"* distance|strong=\"H7350\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"H8085\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “Speak|strong=\"H1696\"* with|strong=\"H5973\"* us|strong=\"H6435\"* yourself|strong=\"H5973\"*, and|strong=\"H4872\"* we|strong=\"H3068\"* will|strong=\"H8085\"* listen|strong=\"H8085\"*; but|strong=\"H1696\"* don’t let God speak|strong=\"H1696\"* with|strong=\"H5973\"* us|strong=\"H6435\"*, lest|strong=\"H6435\"* we|strong=\"H3068\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 20, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H1961\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, “Don’t be|strong=\"H1961\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* God has|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1961\"* test|strong=\"H5254\"* you|strong=\"H3588\"*, and|strong=\"H4872\"* that|strong=\"H3588\"* his|strong=\"H6440\"* fear|strong=\"H3372\"* may|strong=\"H1961\"* be|strong=\"H1961\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* won’t sin|strong=\"H2398\"*.”" + }, + { + "verseNum": 21, + "text": "The|strong=\"H4872\"* people|strong=\"H5971\"* stayed|strong=\"H5975\"* at|strong=\"H5975\"* a|strong=\"H3068\"* distance|strong=\"H7350\"*, and|strong=\"H4872\"* Moses|strong=\"H4872\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H8033\"* the|strong=\"H4872\"* thick|strong=\"H6205\"* darkness|strong=\"H6205\"* where|strong=\"H8033\"* God was|strong=\"H4872\"*." + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* tell|strong=\"H1696\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*: ‘You|strong=\"H3588\"* yourselves|strong=\"H3068\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* talked|strong=\"H1696\"* with|strong=\"H5973\"* you|strong=\"H3588\"* from|strong=\"H4480\"* heaven|strong=\"H8064\"*." + }, + { + "verseNum": 23, + "text": "You|strong=\"H6213\"* shall|strong=\"H3808\"* most certainly|strong=\"H6213\"* not|strong=\"H3808\"* make|strong=\"H6213\"* gods of|strong=\"H6213\"* silver|strong=\"H3701\"* or|strong=\"H3808\"* gods of|strong=\"H6213\"* gold|strong=\"H2091\"* for|strong=\"H6213\"* yourselves to|strong=\"H6213\"* be|strong=\"H3808\"* alongside me|strong=\"H6213\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H3605\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* an|strong=\"H6213\"* altar|strong=\"H4196\"* of|strong=\"H8034\"* earth for|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H6629\"* shall|strong=\"H6213\"* sacrifice|strong=\"H2076\"* on|strong=\"H5921\"* it|strong=\"H5921\"* your|strong=\"H3605\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H6629\"* your|strong=\"H3605\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, your|strong=\"H3605\"* sheep|strong=\"H6629\"* and|strong=\"H6629\"* your|strong=\"H3605\"* cattle|strong=\"H1241\"*. In|strong=\"H5921\"* every|strong=\"H3605\"* place|strong=\"H4725\"* where|strong=\"H4725\"* I|strong=\"H5921\"* record|strong=\"H2142\"* my|strong=\"H3605\"* name|strong=\"H8034\"* I|strong=\"H5921\"* will|strong=\"H6629\"* come|strong=\"H2142\"* to|strong=\"H6213\"* you|strong=\"H3605\"* and|strong=\"H6629\"* I|strong=\"H5921\"* will|strong=\"H6629\"* bless|strong=\"H1288\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 25, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* make|strong=\"H6213\"* me|strong=\"H5921\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* stone|strong=\"H1496\"*, you|strong=\"H3588\"* shall|strong=\"H2719\"* not|strong=\"H3808\"* build|strong=\"H1129\"* it|strong=\"H5921\"* of|strong=\"H4196\"* cut|strong=\"H1496\"* stones|strong=\"H1496\"*; for|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* lift up|strong=\"H1129\"* your|strong=\"H5921\"* tool|strong=\"H2719\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, you|strong=\"H3588\"* have|strong=\"H1129\"* polluted|strong=\"H2490\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 26, + "text": "You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* go|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H5921\"* steps|strong=\"H4609\"* to|strong=\"H5927\"* my|strong=\"H5921\"* altar|strong=\"H4196\"*, that|strong=\"H4196\"* your|strong=\"H5921\"* nakedness|strong=\"H6172\"* may|strong=\"H4196\"* not|strong=\"H3808\"* be|strong=\"H3808\"* exposed|strong=\"H1540\"* to|strong=\"H5927\"* it|strong=\"H5921\"*.’" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "“Now|strong=\"H7760\"* these|strong=\"H7760\"* are|strong=\"H4941\"* the|strong=\"H6440\"* ordinances|strong=\"H4941\"* which you|strong=\"H6440\"* shall|strong=\"H6440\"* set|strong=\"H7760\"* before|strong=\"H6440\"* them|strong=\"H6440\"*:" + }, + { + "verseNum": 2, + "text": "“If|strong=\"H3588\"* you|strong=\"H3588\"* buy|strong=\"H7069\"* a|strong=\"H3068\"* Hebrew|strong=\"H5680\"* servant|strong=\"H5650\"*, he|strong=\"H3588\"* shall|strong=\"H5650\"* serve|strong=\"H5647\"* six|strong=\"H8337\"* years|strong=\"H8141\"*, and|strong=\"H5650\"* in|strong=\"H8141\"* the|strong=\"H3588\"* seventh|strong=\"H7637\"* he|strong=\"H3588\"* shall|strong=\"H5650\"* go|strong=\"H3318\"* out|strong=\"H3318\"* free|strong=\"H2670\"* without|strong=\"H2600\"* paying|strong=\"H2600\"* anything." + }, + { + "verseNum": 3, + "text": "If|strong=\"H1931\"* he|strong=\"H1931\"* comes|strong=\"H3318\"* in|strong=\"H3318\"* by|strong=\"H3318\"* himself|strong=\"H1931\"*, he|strong=\"H1931\"* shall|strong=\"H1931\"* go|strong=\"H3318\"* out|strong=\"H3318\"* by|strong=\"H3318\"* himself|strong=\"H1931\"*. If|strong=\"H1931\"* he|strong=\"H1931\"* is|strong=\"H1931\"* married|strong=\"H1167\"*, then|strong=\"H3318\"* his|strong=\"H3318\"* wife shall|strong=\"H1931\"* go|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 4, + "text": "If|strong=\"H1961\"* his|strong=\"H5414\"* master|strong=\"H5414\"* gives|strong=\"H5414\"* him|strong=\"H5414\"* a|strong=\"H3068\"* wife and|strong=\"H1121\"* she|strong=\"H1931\"* bears|strong=\"H3205\"* him|strong=\"H5414\"* sons|strong=\"H1121\"* or|strong=\"H1121\"* daughters|strong=\"H1323\"*, the|strong=\"H5414\"* wife and|strong=\"H1121\"* her|strong=\"H5414\"* children|strong=\"H1121\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* her|strong=\"H5414\"* master|strong=\"H5414\"*’s, and|strong=\"H1121\"* he|strong=\"H1931\"* shall|strong=\"H1121\"* go|strong=\"H3318\"* out|strong=\"H3318\"* by|strong=\"H3318\"* himself|strong=\"H1931\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H3808\"* if|strong=\"H1121\"* the|strong=\"H3318\"* servant|strong=\"H5650\"* shall|strong=\"H1121\"* plainly say, ‘I|strong=\"H5650\"* love my|strong=\"H3318\"* master, my|strong=\"H3318\"* wife, and|strong=\"H1121\"* my|strong=\"H3318\"* children|strong=\"H1121\"*. I|strong=\"H5650\"* will|strong=\"H5650\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"* free|strong=\"H2670\"*;’" + }, + { + "verseNum": 6, + "text": "then|strong=\"H5066\"* his|strong=\"H5647\"* master shall bring|strong=\"H5066\"* him|strong=\"H5647\"* to|strong=\"H5066\"* God, and|strong=\"H5769\"* shall bring|strong=\"H5066\"* him|strong=\"H5647\"* to|strong=\"H5066\"* the|strong=\"H5647\"* door|strong=\"H1817\"* or|strong=\"H1817\"* to|strong=\"H5066\"* the|strong=\"H5647\"* doorpost|strong=\"H4201\"*, and|strong=\"H5769\"* his|strong=\"H5647\"* master shall bore|strong=\"H7527\"* his|strong=\"H5647\"* ear|strong=\"H5647\"* through with|strong=\"H5647\"* an|strong=\"H5066\"* awl|strong=\"H4836\"*, and|strong=\"H5769\"* he shall serve|strong=\"H5647\"* him|strong=\"H5647\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 7, + "text": "“If|strong=\"H3588\"* a|strong=\"H3068\"* man sells|strong=\"H4376\"* his|strong=\"H3588\"* daughter|strong=\"H1323\"* to|strong=\"H3318\"* be|strong=\"H3808\"* a|strong=\"H3068\"* female|strong=\"H1323\"* servant|strong=\"H5650\"*, she|strong=\"H3588\"* shall|strong=\"H5650\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"* as|strong=\"H3588\"* the|strong=\"H3588\"* male|strong=\"H5650\"* servants|strong=\"H5650\"* do|strong=\"H3318\"*." + }, + { + "verseNum": 8, + "text": "If she|strong=\"H3808\"* doesn’t please|strong=\"H7451\"* her|strong=\"H6299\"* master|strong=\"H4910\"*, who|strong=\"H5971\"* has|strong=\"H5869\"* married her|strong=\"H6299\"* to|strong=\"H5971\"* himself|strong=\"H3808\"*, then|strong=\"H3808\"* he|strong=\"H3808\"* shall|strong=\"H5971\"* let|strong=\"H3808\"* her|strong=\"H6299\"* be|strong=\"H3808\"* redeemed|strong=\"H6299\"*. He|strong=\"H3808\"* shall|strong=\"H5971\"* have|strong=\"H5869\"* no|strong=\"H3808\"* right|strong=\"H5869\"* to|strong=\"H5971\"* sell|strong=\"H4376\"* her|strong=\"H6299\"* to|strong=\"H5971\"* a|strong=\"H3068\"* foreign|strong=\"H5237\"* people|strong=\"H5971\"*, since he|strong=\"H3808\"* has|strong=\"H5869\"* dealt deceitfully with|strong=\"H5971\"* her|strong=\"H6299\"*." + }, + { + "verseNum": 9, + "text": "If|strong=\"H1121\"* he|strong=\"H6213\"* marries her|strong=\"H6213\"* to|strong=\"H6213\"* his|strong=\"H6213\"* son|strong=\"H1121\"*, he|strong=\"H6213\"* shall|strong=\"H1121\"* deal|strong=\"H6213\"* with|strong=\"H6213\"* her|strong=\"H6213\"* as|strong=\"H6213\"* a|strong=\"H3068\"* daughter|strong=\"H1323\"*." + }, + { + "verseNum": 10, + "text": "If he|strong=\"H3808\"* takes|strong=\"H3947\"* another|strong=\"H3808\"* wife to|strong=\"H3808\"* himself|strong=\"H7607\"*, he|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* diminish|strong=\"H1639\"* her|strong=\"H3947\"* food|strong=\"H7607\"*, her|strong=\"H3947\"* clothing|strong=\"H3682\"*, and|strong=\"H3947\"* her|strong=\"H3947\"* marital rights|strong=\"H5772\"*." + }, + { + "verseNum": 11, + "text": "If he|strong=\"H6213\"* doesn’t do|strong=\"H6213\"* these|strong=\"H6213\"* three|strong=\"H7969\"* things|strong=\"H7969\"* for|strong=\"H6213\"* her|strong=\"H3318\"*, she|strong=\"H3808\"* may|strong=\"H6213\"* go|strong=\"H3318\"* free|strong=\"H3318\"* without|strong=\"H3808\"* paying|strong=\"H2600\"* any|strong=\"H6213\"* money|strong=\"H3701\"*." + }, + { + "verseNum": 12, + "text": "“One who|strong=\"H5221\"* strikes|strong=\"H5221\"* a|strong=\"H3068\"* man|strong=\"H4191\"* so|strong=\"H4191\"* that|strong=\"H4191\"* he|strong=\"H5221\"* dies|strong=\"H4191\"* shall|strong=\"H4191\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*," + }, + { + "verseNum": 13, + "text": "but|strong=\"H3808\"* not|strong=\"H3808\"* if|strong=\"H7760\"* it|strong=\"H7760\"* is|strong=\"H3027\"* unintentional, but|strong=\"H3808\"* God|strong=\"H3808\"* allows it|strong=\"H7760\"* to|strong=\"H3027\"* happen; then|strong=\"H7760\"* I|strong=\"H7760\"* will|strong=\"H3027\"* appoint|strong=\"H7760\"* you|strong=\"H7760\"* a|strong=\"H3068\"* place|strong=\"H4725\"* where|strong=\"H8033\"* he|strong=\"H8033\"* shall|strong=\"H3027\"* flee|strong=\"H5127\"*." + }, + { + "verseNum": 14, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H4191\"* schemes and|strong=\"H4196\"* comes|strong=\"H5973\"* presumptuously|strong=\"H2102\"* on|strong=\"H5921\"* his|strong=\"H3947\"* neighbor|strong=\"H7453\"* to|strong=\"H4191\"* kill|strong=\"H2026\"* him|strong=\"H5921\"*, you|strong=\"H3588\"* shall|strong=\"H7453\"* take|strong=\"H3947\"* him|strong=\"H5921\"* from|strong=\"H5921\"* my|strong=\"H3947\"* altar|strong=\"H4196\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H4196\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 15, + "text": "“Anyone who|strong=\"H5221\"* attacks|strong=\"H5221\"* his|strong=\"H5221\"* father or|strong=\"H4191\"* his|strong=\"H5221\"* mother shall|strong=\"H4191\"* be|strong=\"H4191\"* surely|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 16, + "text": "“Anyone who|strong=\"H4672\"* kidnaps|strong=\"H1589\"* someone|strong=\"H4191\"* and|strong=\"H3027\"* sells|strong=\"H4376\"* him|strong=\"H3027\"*, or|strong=\"H4376\"* if he|strong=\"H3027\"* is|strong=\"H3027\"* found|strong=\"H4672\"* in|strong=\"H4191\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*, he|strong=\"H3027\"* shall|strong=\"H3027\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 17, + "text": "“Anyone who curses|strong=\"H7043\"* his|strong=\"H7043\"* father or|strong=\"H4191\"* his|strong=\"H7043\"* mother shall|strong=\"H4191\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 18, + "text": "“If|strong=\"H3588\"* men quarrel|strong=\"H7378\"* and|strong=\"H4191\"* one|strong=\"H3808\"* strikes|strong=\"H5221\"* the|strong=\"H3588\"* other|strong=\"H7453\"* with|strong=\"H7378\"* a|strong=\"H3068\"* stone, or|strong=\"H3808\"* with|strong=\"H7378\"* his|strong=\"H5221\"* fist, and|strong=\"H4191\"* he|strong=\"H3588\"* doesn’t die|strong=\"H4191\"*, but|strong=\"H3588\"* is|strong=\"H4191\"* confined to|strong=\"H4191\"* bed|strong=\"H4904\"*;" + }, + { + "verseNum": 19, + "text": "if he|strong=\"H5414\"* rises|strong=\"H6965\"* again|strong=\"H6965\"* and|strong=\"H1980\"* walks|strong=\"H1980\"* around|strong=\"H5921\"* with|strong=\"H1980\"* his|strong=\"H5414\"* staff|strong=\"H4938\"*, then|strong=\"H1980\"* he|strong=\"H5414\"* who|strong=\"H5221\"* struck|strong=\"H5221\"* him|strong=\"H5414\"* shall|strong=\"H5352\"* be|strong=\"H5414\"* cleared; only|strong=\"H7535\"* he|strong=\"H5414\"* shall|strong=\"H5352\"* pay|strong=\"H5414\"* for|strong=\"H5921\"* the|strong=\"H5921\"* loss|strong=\"H7674\"* of|strong=\"H5921\"* his|strong=\"H5414\"* time|strong=\"H7674\"*, and|strong=\"H1980\"* shall|strong=\"H5352\"* provide|strong=\"H5414\"* for|strong=\"H5921\"* his|strong=\"H5414\"* healing|strong=\"H7495\"* until|strong=\"H5921\"* he|strong=\"H5414\"* is thoroughly|strong=\"H7495\"* healed|strong=\"H7495\"*." + }, + { + "verseNum": 20, + "text": "“If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H4191\"* strikes|strong=\"H5221\"* his|strong=\"H5221\"* servant|strong=\"H5650\"* or|strong=\"H4191\"* his|strong=\"H5221\"* maid with|strong=\"H3027\"* a|strong=\"H3068\"* rod|strong=\"H7626\"*, and|strong=\"H3027\"* he|strong=\"H3588\"* dies|strong=\"H4191\"* under|strong=\"H8478\"* his|strong=\"H5221\"* hand|strong=\"H3027\"*, the|strong=\"H3588\"* man|strong=\"H4191\"* shall|strong=\"H5650\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* punished|strong=\"H5358\"*." + }, + { + "verseNum": 21, + "text": "Notwithstanding, if|strong=\"H3588\"* his|strong=\"H3588\"* servant gets up|strong=\"H5975\"* after|strong=\"H3117\"* a|strong=\"H3068\"* day|strong=\"H3117\"* or|strong=\"H3808\"* two|strong=\"H3808\"*, he|strong=\"H1931\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* be|strong=\"H3808\"* punished|strong=\"H5358\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* servant is|strong=\"H1931\"* his|strong=\"H3588\"* property|strong=\"H3701\"*." + }, + { + "verseNum": 22, + "text": "“If|strong=\"H3588\"* men|strong=\"H1167\"* fight|strong=\"H5327\"* and|strong=\"H3318\"* hurt|strong=\"H5062\"* a|strong=\"H3068\"* pregnant|strong=\"H2030\"* woman|strong=\"H2030\"* so|strong=\"H1961\"* that|strong=\"H3588\"* she|strong=\"H3588\"* gives|strong=\"H5414\"* birth|strong=\"H3808\"* prematurely|strong=\"H3318\"*, and|strong=\"H3318\"* yet|strong=\"H3588\"* no|strong=\"H3808\"* harm follows, he|strong=\"H3588\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* surely|strong=\"H3588\"* fined|strong=\"H6064\"* as|strong=\"H1961\"* much|strong=\"H5921\"* as|strong=\"H1961\"* the|strong=\"H5921\"* woman|strong=\"H2030\"*’s husband|strong=\"H1167\"* demands|strong=\"H5414\"* and|strong=\"H3318\"* the|strong=\"H5921\"* judges|strong=\"H6414\"* allow|strong=\"H5414\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"H1961\"* if|strong=\"H1961\"* any|strong=\"H5315\"* harm|strong=\"H5315\"* follows, then|strong=\"H1961\"* you|strong=\"H5414\"* must|strong=\"H5315\"* take|strong=\"H1961\"* life|strong=\"H5315\"* for|strong=\"H8478\"* life|strong=\"H5315\"*," + }, + { + "verseNum": 24, + "text": "eye|strong=\"H5869\"* for|strong=\"H8478\"* eye|strong=\"H5869\"*, tooth|strong=\"H8127\"* for|strong=\"H8478\"* tooth|strong=\"H8127\"*, hand|strong=\"H3027\"* for|strong=\"H8478\"* hand|strong=\"H3027\"*, foot|strong=\"H7272\"* for|strong=\"H8478\"* foot|strong=\"H7272\"*," + }, + { + "verseNum": 25, + "text": "burning|strong=\"H3555\"* for|strong=\"H8478\"* burning|strong=\"H3555\"*, wound|strong=\"H6482\"* for|strong=\"H8478\"* wound|strong=\"H6482\"*, and|strong=\"H8478\"* bruise|strong=\"H2250\"* for|strong=\"H8478\"* bruise|strong=\"H2250\"*." + }, + { + "verseNum": 26, + "text": "“If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H2670\"* strikes|strong=\"H5221\"* his|strong=\"H7971\"* servant|strong=\"H5650\"*’s eye|strong=\"H5869\"*, or|strong=\"H5650\"* his|strong=\"H7971\"* maid’s eye|strong=\"H5869\"*, and|strong=\"H7971\"* destroys|strong=\"H7843\"* it|strong=\"H3588\"*, he|strong=\"H3588\"* shall|strong=\"H5869\"* let|strong=\"H7971\"* him|strong=\"H5221\"* go|strong=\"H7971\"* free|strong=\"H2670\"* for|strong=\"H3588\"* his|strong=\"H7971\"* eye|strong=\"H5869\"*’s sake." + }, + { + "verseNum": 27, + "text": "If he|strong=\"H7971\"* strikes out|strong=\"H7971\"* his|strong=\"H7971\"* male|strong=\"H5650\"* servant|strong=\"H5650\"*’s tooth|strong=\"H8127\"*, or|strong=\"H5650\"* his|strong=\"H7971\"* female servant|strong=\"H5650\"*’s tooth|strong=\"H8127\"*, he|strong=\"H7971\"* shall|strong=\"H5650\"* let|strong=\"H7971\"* the|strong=\"H8478\"* servant|strong=\"H5650\"* go|strong=\"H7971\"* free|strong=\"H2670\"* for|strong=\"H8478\"* his|strong=\"H7971\"* tooth|strong=\"H8127\"*’s sake." + }, + { + "verseNum": 28, + "text": "“If|strong=\"H3588\"* a|strong=\"H3068\"* bull|strong=\"H7794\"* gores|strong=\"H5055\"* a|strong=\"H3068\"* man|strong=\"H1167\"* or|strong=\"H3808\"* a|strong=\"H3068\"* woman to|strong=\"H4191\"* death|strong=\"H4191\"*, the|strong=\"H3588\"* bull|strong=\"H7794\"* shall|strong=\"H3808\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* stoned|strong=\"H5619\"*, and|strong=\"H4191\"* its|strong=\"H3588\"* meat|strong=\"H1320\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H4191\"* eaten; but|strong=\"H3588\"* the|strong=\"H3588\"* owner|strong=\"H1167\"* of|strong=\"H1167\"* the|strong=\"H3588\"* bull|strong=\"H7794\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H4191\"* held responsible." + }, + { + "verseNum": 29, + "text": "But|strong=\"H3808\"* if|strong=\"H1931\"* the|strong=\"H8104\"* bull|strong=\"H7794\"* had|strong=\"H1167\"* a|strong=\"H3068\"* habit|strong=\"H5056\"* of|strong=\"H1167\"* goring|strong=\"H5056\"* in|strong=\"H4191\"* the|strong=\"H8104\"* past|strong=\"H8032\"*, and|strong=\"H8104\"* this|strong=\"H1931\"* has|strong=\"H1571\"* been|strong=\"H3808\"* testified|strong=\"H5749\"* to|strong=\"H4191\"* its|strong=\"H8104\"* owner|strong=\"H1167\"*, and|strong=\"H8104\"* he|strong=\"H1931\"* has|strong=\"H1571\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* it|strong=\"H1931\"* in|strong=\"H4191\"*, but|strong=\"H3808\"* it|strong=\"H1931\"* has|strong=\"H1571\"* killed|strong=\"H4191\"* a|strong=\"H3068\"* man|strong=\"H1167\"* or|strong=\"H3808\"* a|strong=\"H3068\"* woman, the|strong=\"H8104\"* bull|strong=\"H7794\"* shall|strong=\"H3808\"* be|strong=\"H4191\"* stoned|strong=\"H5619\"*, and|strong=\"H8104\"* its|strong=\"H8104\"* owner|strong=\"H1167\"* shall|strong=\"H3808\"* also|strong=\"H1571\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 30, + "text": "If a|strong=\"H3068\"* ransom|strong=\"H3724\"* is|strong=\"H5315\"* imposed|strong=\"H5414\"* on|strong=\"H5921\"* him|strong=\"H5414\"*, then|strong=\"H5414\"* he|strong=\"H3605\"* shall|strong=\"H5315\"* give|strong=\"H5414\"* for|strong=\"H5921\"* the|strong=\"H3605\"* redemption|strong=\"H6306\"* of|strong=\"H5921\"* his|strong=\"H3605\"* life|strong=\"H5315\"* whatever|strong=\"H3605\"* is|strong=\"H5315\"* imposed|strong=\"H5414\"*." + }, + { + "verseNum": 31, + "text": "Whether it|strong=\"H6213\"* has|strong=\"H2088\"* gored|strong=\"H5055\"* a|strong=\"H3068\"* son|strong=\"H1121\"* or|strong=\"H1121\"* has|strong=\"H2088\"* gored|strong=\"H5055\"* a|strong=\"H3068\"* daughter|strong=\"H1323\"*, according|strong=\"H4941\"* to|strong=\"H6213\"* this|strong=\"H2088\"* judgment|strong=\"H4941\"* it|strong=\"H6213\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* done|strong=\"H6213\"* to|strong=\"H6213\"* him|strong=\"H6213\"*." + }, + { + "verseNum": 32, + "text": "If the|strong=\"H5414\"* bull|strong=\"H7794\"* gores|strong=\"H5055\"* a|strong=\"H3068\"* male|strong=\"H5650\"* servant|strong=\"H5650\"* or|strong=\"H3701\"* a|strong=\"H3068\"* female servant|strong=\"H5650\"*, thirty|strong=\"H7970\"* shekels|strong=\"H8255\"*+ 21:32 A shekel is about 10 grams or about 0.35 ounces, so 30 shekels is about 300 grams or about 10.6 ounces.* of|strong=\"H5650\"* silver|strong=\"H3701\"* shall|strong=\"H5650\"* be|strong=\"H5414\"* given|strong=\"H5414\"* to|strong=\"H5414\"* their|strong=\"H5414\"* master|strong=\"H5414\"*, and|strong=\"H3701\"* the|strong=\"H5414\"* ox|strong=\"H7794\"* shall|strong=\"H5650\"* be|strong=\"H5414\"* stoned|strong=\"H5619\"*." + }, + { + "verseNum": 33, + "text": "“If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H5307\"* opens|strong=\"H6605\"* a|strong=\"H3068\"* pit, or|strong=\"H3808\"* if|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H5307\"* digs|strong=\"H3738\"* a|strong=\"H3068\"* pit and|strong=\"H8033\"* doesn’t cover|strong=\"H3680\"* it|strong=\"H3588\"*, and|strong=\"H8033\"* a|strong=\"H3068\"* bull|strong=\"H7794\"* or|strong=\"H3808\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"* falls|strong=\"H5307\"* into|strong=\"H5307\"* it|strong=\"H3588\"*," + }, + { + "verseNum": 34, + "text": "the|strong=\"H7725\"* owner|strong=\"H1167\"* of|strong=\"H1167\"* the|strong=\"H7725\"* pit shall|strong=\"H3701\"* make|strong=\"H7999\"* it|strong=\"H7725\"* good|strong=\"H7999\"*. He|strong=\"H7725\"* shall|strong=\"H3701\"* give|strong=\"H7725\"* money|strong=\"H3701\"* to|strong=\"H7725\"* its|strong=\"H7725\"* owner|strong=\"H1167\"*, and|strong=\"H3701\"* the|strong=\"H7725\"* dead|strong=\"H4191\"* animal|strong=\"H1961\"* shall|strong=\"H3701\"* be|strong=\"H1961\"* his|strong=\"H7725\"*." + }, + { + "verseNum": 35, + "text": "“If|strong=\"H3588\"* one|strong=\"H2416\"* man|strong=\"H4191\"*’s bull|strong=\"H7794\"* injures|strong=\"H5062\"* another|strong=\"H7453\"*’s, so|strong=\"H1571\"* that|strong=\"H3588\"* it|strong=\"H3588\"* dies|strong=\"H4191\"*, then|strong=\"H1571\"* they|strong=\"H3588\"* shall|strong=\"H2416\"* sell|strong=\"H4376\"* the|strong=\"H3588\"* live|strong=\"H2416\"* bull|strong=\"H7794\"*, and|strong=\"H3701\"* divide|strong=\"H2673\"* its|strong=\"H3588\"* price|strong=\"H3701\"*; and|strong=\"H3701\"* they|strong=\"H3588\"* shall|strong=\"H2416\"* also|strong=\"H1571\"* divide|strong=\"H2673\"* the|strong=\"H3588\"* dead|strong=\"H4191\"* animal|strong=\"H2416\"*." + }, + { + "verseNum": 36, + "text": "Or|strong=\"H3808\"* if|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* known|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3588\"* bull|strong=\"H7794\"* was|strong=\"H1961\"* in|strong=\"H4191\"* the|strong=\"H3588\"* habit|strong=\"H5056\"* of|strong=\"H1167\"* goring|strong=\"H5056\"* in|strong=\"H4191\"* the|strong=\"H3588\"* past|strong=\"H8032\"*, and|strong=\"H3045\"* its|strong=\"H8478\"* owner|strong=\"H1167\"* has|strong=\"H1961\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* it|strong=\"H1931\"* in|strong=\"H4191\"*, he|strong=\"H1931\"* shall|strong=\"H3808\"* surely|strong=\"H4191\"* pay|strong=\"H7999\"* bull|strong=\"H7794\"* for|strong=\"H3588\"* bull|strong=\"H7794\"*, and|strong=\"H3045\"* the|strong=\"H3588\"* dead|strong=\"H4191\"* animal|strong=\"H1961\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* his|strong=\"H8104\"* own|strong=\"H1961\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "“If a|strong=\"H3068\"* man|strong=\"H4191\"* steals an|strong=\"H5221\"* ox or|strong=\"H4191\"* a|strong=\"H3068\"* sheep, and|strong=\"H1818\"* kills|strong=\"H5221\"* it|strong=\"H5221\"* or|strong=\"H4191\"* sells it|strong=\"H5221\"*, he|strong=\"H5221\"* shall|strong=\"H1818\"* pay five oxen for|strong=\"H4191\"* an|strong=\"H5221\"* ox, and|strong=\"H1818\"* four sheep for|strong=\"H4191\"* a|strong=\"H3068\"* sheep." + }, + { + "verseNum": 2, + "text": "If the|strong=\"H5921\"* thief is|strong=\"H8121\"* found breaking in|strong=\"H5921\"*, and|strong=\"H1818\"* is|strong=\"H8121\"* struck so|strong=\"H5921\"* that|strong=\"H1818\"* he|strong=\"H5921\"* dies, there shall|strong=\"H1818\"* be|strong=\"H8121\"* no guilt|strong=\"H1818\"* of|strong=\"H5921\"* bloodshed|strong=\"H1818\"* for|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "If the|strong=\"H5704\"* sun has|strong=\"H3027\"* risen on|strong=\"H3027\"* him|strong=\"H3027\"*, he|strong=\"H5704\"* is|strong=\"H3027\"* guilty of|strong=\"H3027\"* bloodshed. He|strong=\"H5704\"* shall|strong=\"H3027\"* make|strong=\"H7999\"* restitution|strong=\"H7999\"*. If he|strong=\"H5704\"* has|strong=\"H3027\"* nothing, then he|strong=\"H5704\"* shall|strong=\"H3027\"* be|strong=\"H3027\"* sold for|strong=\"H5704\"* his|strong=\"H3027\"* theft|strong=\"H1591\"*." + }, + { + "verseNum": 4, + "text": "If|strong=\"H3588\"* the|strong=\"H3588\"* stolen property is|strong=\"H7704\"* found in|strong=\"H7971\"* his|strong=\"H7971\"* hand alive, whether it|strong=\"H3588\"* is|strong=\"H7704\"* ox, donkey, or|strong=\"H7704\"* sheep, he|strong=\"H3588\"* shall|strong=\"H7704\"* pay|strong=\"H7999\"* double." + }, + { + "verseNum": 5, + "text": "“If|strong=\"H3588\"* a|strong=\"H3068\"* man causes|strong=\"H3318\"* a|strong=\"H3068\"* field|strong=\"H7704\"* or|strong=\"H7704\"* vineyard to|strong=\"H3318\"* be|strong=\"H3318\"* eaten|strong=\"H1197\"* by|strong=\"H3318\"* letting his|strong=\"H3588\"* animal loose, and|strong=\"H7704\"* it|strong=\"H3588\"* grazes|strong=\"H1197\"* in|strong=\"H4672\"* another man’s field|strong=\"H7704\"*, he|strong=\"H3588\"* shall|strong=\"H7704\"* make|strong=\"H7999\"* restitution|strong=\"H7999\"* from|strong=\"H3318\"* the|strong=\"H3588\"* best of|strong=\"H7704\"* his|strong=\"H3588\"* own field|strong=\"H7704\"*, and|strong=\"H7704\"* from|strong=\"H3318\"* the|strong=\"H3588\"* best of|strong=\"H7704\"* his|strong=\"H3588\"* own vineyard." + }, + { + "verseNum": 6, + "text": "“If|strong=\"H3588\"* fire breaks out|strong=\"H4672\"*, and|strong=\"H3701\"* catches in|strong=\"H1004\"* thorns so|strong=\"H5414\"* that|strong=\"H3588\"* the|strong=\"H3588\"* shocks of|strong=\"H1004\"* grain, or|strong=\"H3701\"* the|strong=\"H3588\"* standing|strong=\"H7453\"* grain, or|strong=\"H3701\"* the|strong=\"H3588\"* field are|strong=\"H1004\"* consumed; he|strong=\"H3588\"* who|strong=\"H8104\"* kindled the|strong=\"H3588\"* fire shall|strong=\"H1004\"* surely|strong=\"H3588\"* make|strong=\"H5414\"* restitution|strong=\"H7999\"*." + }, + { + "verseNum": 7, + "text": "“If a|strong=\"H3068\"* man|strong=\"H1167\"* delivers to|strong=\"H7971\"* his|strong=\"H7971\"* neighbor|strong=\"H7453\"* money or|strong=\"H3808\"* stuff|strong=\"H4399\"* to|strong=\"H7971\"* keep|strong=\"H7126\"*, and|strong=\"H7971\"* it|strong=\"H7126\"* is|strong=\"H3027\"* stolen out|strong=\"H7971\"* of|strong=\"H1004\"* the|strong=\"H7971\"* man|strong=\"H1167\"*’s house|strong=\"H1004\"*, if the|strong=\"H7971\"* thief|strong=\"H1590\"* is|strong=\"H3027\"* found|strong=\"H4672\"*, he|strong=\"H1004\"* shall|strong=\"H1004\"* pay double." + }, + { + "verseNum": 8, + "text": "If|strong=\"H3588\"* the|strong=\"H3605\"* thief isn’t found, then|strong=\"H2088\"* the|strong=\"H3605\"* master of|strong=\"H1697\"* the|strong=\"H3605\"* house shall|strong=\"H1931\"* come near|strong=\"H5921\"* to|strong=\"H5704\"* God|strong=\"H7999\"*, to|strong=\"H5704\"* find out|strong=\"H5921\"* whether or|strong=\"H5704\"* not|strong=\"H2088\"* he|strong=\"H1931\"* has|strong=\"H3588\"* put|strong=\"H8147\"* his|strong=\"H3605\"* hand on|strong=\"H5921\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"*’s goods." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* every|strong=\"H3605\"* matter of|strong=\"H3605\"* trespass, whether|strong=\"H7200\"* it|strong=\"H5414\"* is|strong=\"H3605\"* for|strong=\"H3588\"* ox|strong=\"H7794\"*, for|strong=\"H3588\"* donkey|strong=\"H2543\"*, for|strong=\"H3588\"* sheep|strong=\"H7716\"*, for|strong=\"H3588\"* clothing, or|strong=\"H7794\"* for|strong=\"H3588\"* any|strong=\"H3605\"* kind|strong=\"H7453\"* of|strong=\"H3605\"* lost thing|strong=\"H3588\"*, about|strong=\"H3605\"* which|strong=\"H3588\"* one|strong=\"H3605\"* says, ‘This|strong=\"H5414\"* is|strong=\"H3605\"* mine|strong=\"H8104\"*,’ the|strong=\"H3605\"* cause|strong=\"H5414\"* of|strong=\"H3605\"* both|strong=\"H3605\"* parties shall|strong=\"H7794\"* come before|strong=\"H7200\"* God|strong=\"H5414\"*. He|strong=\"H3588\"* whom|strong=\"H3588\"* God|strong=\"H5414\"* condemns shall|strong=\"H7794\"* pay|strong=\"H5414\"* double to|strong=\"H4191\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"*." + }, + { + "verseNum": 10, + "text": "“If|strong=\"H1961\"* a|strong=\"H3068\"* man|strong=\"H1167\"* delivers to|strong=\"H3068\"* his|strong=\"H3068\"* neighbor|strong=\"H7453\"* a|strong=\"H3068\"* donkey, an|strong=\"H1961\"* ox, a|strong=\"H3068\"* sheep, or|strong=\"H3808\"* any|strong=\"H1961\"* animal|strong=\"H1961\"* to|strong=\"H3068\"* keep|strong=\"H1961\"*, and|strong=\"H3068\"* it|strong=\"H1961\"* dies or|strong=\"H3808\"* is|strong=\"H3068\"* injured, or|strong=\"H3808\"* driven away|strong=\"H7971\"*, no|strong=\"H3808\"* man|strong=\"H1167\"* seeing it|strong=\"H1961\"*;" + }, + { + "verseNum": 11, + "text": "the|strong=\"H5973\"* oath of|strong=\"H1167\"* Yahweh|strong=\"H3068\"* shall|strong=\"H1167\"* be between|strong=\"H5973\"* them both, he has|strong=\"H1167\"* not put his|strong=\"H5973\"* hand on|strong=\"H5973\"* his|strong=\"H5973\"* neighbor’s goods; and|strong=\"H5973\"* its|strong=\"H1167\"* owner|strong=\"H1167\"* shall|strong=\"H1167\"* accept it|strong=\"H7999\"*, and|strong=\"H5973\"* he shall|strong=\"H1167\"* not make|strong=\"H7999\"* restitution|strong=\"H7999\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H3808\"* if it|strong=\"H3808\"* is|strong=\"H3808\"* stolen from|strong=\"H3808\"* him|strong=\"H7999\"*, the|strong=\"H3808\"* one|strong=\"H3808\"* who|strong=\"H3808\"* stole shall|strong=\"H3808\"* make|strong=\"H7999\"* restitution|strong=\"H7999\"* to|strong=\"H3808\"* its|strong=\"H3808\"* owner." + }, + { + "verseNum": 13, + "text": "If|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H1167\"* torn|strong=\"H7665\"* in|strong=\"H4191\"* pieces|strong=\"H7665\"*, let him|strong=\"H5973\"* bring|strong=\"H4191\"* it|strong=\"H3588\"* for|strong=\"H3588\"* evidence. He|strong=\"H3588\"* shall|strong=\"H7453\"* not|strong=\"H3588\"* make|strong=\"H7999\"* good|strong=\"H7999\"* that|strong=\"H3588\"* which|strong=\"H3588\"* was|strong=\"H7592\"* torn|strong=\"H7665\"*." + }, + { + "verseNum": 14, + "text": "“If|strong=\"H1931\"* a|strong=\"H3068\"* man|strong=\"H7916\"* borrows anything|strong=\"H3808\"* of|strong=\"H1167\"* his|strong=\"H3808\"* neighbor’s, and|strong=\"H5973\"* it|strong=\"H1931\"* is|strong=\"H1931\"* injured, or|strong=\"H3808\"* dies, its|strong=\"H1167\"* owner|strong=\"H1167\"* not|strong=\"H3808\"* being with|strong=\"H5973\"* it|strong=\"H1931\"*, he|strong=\"H1931\"* shall|strong=\"H3808\"* surely|strong=\"H7999\"* make|strong=\"H7999\"* restitution|strong=\"H7999\"*." + }, + { + "verseNum": 15, + "text": "If|strong=\"H3588\"* its|strong=\"H3588\"* owner is|strong=\"H3808\"* with|strong=\"H5973\"* it|strong=\"H3588\"*, he|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* make|strong=\"H7901\"* it|strong=\"H3588\"* good. If|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3808\"* a|strong=\"H3068\"* leased thing|strong=\"H3588\"*, it|strong=\"H3588\"* came for|strong=\"H3588\"* its|strong=\"H3588\"* lease." + }, + { + "verseNum": 16, + "text": "“If a|strong=\"H3068\"* man entices a|strong=\"H3068\"* virgin|strong=\"H1330\"* who isn’t pledged|strong=\"H5414\"* to|strong=\"H5414\"* be|strong=\"H5414\"* married, and|strong=\"H3701\"* lies|strong=\"H5414\"* with|strong=\"H3701\"* her|strong=\"H5414\"*, he|strong=\"H5414\"* shall|strong=\"H3701\"* surely|strong=\"H5414\"* pay|strong=\"H5414\"* a|strong=\"H3068\"* dowry|strong=\"H4119\"* for|strong=\"H3701\"* her|strong=\"H5414\"* to|strong=\"H5414\"* be|strong=\"H5414\"* his|strong=\"H5414\"* wife." + }, + { + "verseNum": 17, + "text": "If her father utterly refuses to|strong=\"H2421\"* give|strong=\"H2421\"* her to|strong=\"H2421\"* him|strong=\"H2421\"*, he|strong=\"H3808\"* shall|strong=\"H3808\"* pay money according to|strong=\"H2421\"* the|strong=\"H3808\"* dowry of|strong=\"H3808\"* virgins." + }, + { + "verseNum": 18, + "text": "“You|strong=\"H3605\"* shall|strong=\"H4191\"* not|strong=\"H4191\"* allow a|strong=\"H3068\"* sorceress to|strong=\"H4191\"* live." + }, + { + "verseNum": 19, + "text": "“Whoever has|strong=\"H3068\"* sex with|strong=\"H3068\"* an|strong=\"H3068\"* animal shall|strong=\"H3068\"* surely be|strong=\"H3068\"* put|strong=\"H3068\"* to|strong=\"H3068\"* death." + }, + { + "verseNum": 20, + "text": "“He|strong=\"H3588\"* who|strong=\"H1616\"* sacrifices to|strong=\"H1961\"* any|strong=\"H1961\"* god|strong=\"H3808\"*, except|strong=\"H3588\"* to|strong=\"H1961\"* Yahweh|strong=\"H3068\"* only|strong=\"H3588\"*, shall|strong=\"H4714\"* be|strong=\"H1961\"* utterly destroyed." + }, + { + "verseNum": 21, + "text": "“You|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* wrong an alien or|strong=\"H3808\"* oppress|strong=\"H6031\"* him|strong=\"H3605\"*, for|strong=\"H3605\"* you|strong=\"H3605\"* were|strong=\"H3605\"* aliens in|strong=\"H3808\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Egypt." + }, + { + "verseNum": 22, + "text": "“You|strong=\"H3588\"* shall|strong=\"H8085\"* not|strong=\"H3588\"* take advantage of|strong=\"H8085\"* any|strong=\"H3588\"* widow or|strong=\"H8085\"* fatherless child." + }, + { + "verseNum": 23, + "text": "If|strong=\"H1961\"* you|strong=\"H1961\"* take|strong=\"H1961\"* advantage of|strong=\"H1121\"* them|strong=\"H2026\"* at|strong=\"H1961\"* all|strong=\"H2026\"*, and|strong=\"H1121\"* they|strong=\"H2719\"* cry at|strong=\"H1961\"* all|strong=\"H2026\"* to|strong=\"H1961\"* me|strong=\"H2026\"*, I|strong=\"H1121\"* will|strong=\"H1961\"* surely|strong=\"H1961\"* hear their|strong=\"H1961\"* cry;" + }, + { + "verseNum": 24, + "text": "and|strong=\"H3701\"* my|strong=\"H7760\"* wrath will|strong=\"H1961\"* grow hot, and|strong=\"H3701\"* I|strong=\"H5921\"* will|strong=\"H1961\"* kill you|strong=\"H5921\"* with|strong=\"H5973\"* the|strong=\"H5921\"* sword; and|strong=\"H3701\"* your|strong=\"H5921\"* wives shall|strong=\"H5971\"* be|strong=\"H1961\"* widows|strong=\"H5971\"*, and|strong=\"H3701\"* your|strong=\"H5921\"* children fatherless." + }, + { + "verseNum": 25, + "text": "“If you|strong=\"H5704\"* lend money to|strong=\"H5704\"* any of|strong=\"H7725\"* my|strong=\"H7725\"* people with|strong=\"H7725\"* you|strong=\"H5704\"* who is|strong=\"H8121\"* poor, you|strong=\"H5704\"* shall|strong=\"H7453\"* not|strong=\"H7725\"* be|strong=\"H8121\"* to|strong=\"H5704\"* him|strong=\"H7725\"* as|strong=\"H5704\"* a|strong=\"H3068\"* creditor. You|strong=\"H5704\"* shall|strong=\"H7453\"* not|strong=\"H7725\"* charge him|strong=\"H7725\"* interest." + }, + { + "verseNum": 26, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* take|strong=\"H1961\"* your|strong=\"H8085\"* neighbor’s garment|strong=\"H8071\"* as|strong=\"H1961\"* collateral, you|strong=\"H3588\"* shall|strong=\"H1931\"* restore it|strong=\"H1931\"* to|strong=\"H1961\"* him|strong=\"H1931\"* before|strong=\"H3682\"* the|strong=\"H8085\"* sun goes down|strong=\"H7901\"*," + }, + { + "verseNum": 27, + "text": "for|strong=\"H5971\"* that|strong=\"H5971\"* is|strong=\"H5971\"* his|strong=\"H7043\"* only covering, it|strong=\"H7043\"* is|strong=\"H5971\"* his|strong=\"H7043\"* garment for|strong=\"H5971\"* his|strong=\"H7043\"* skin. What would|strong=\"H5971\"* he|strong=\"H3808\"* sleep in|strong=\"H5971\"*? It|strong=\"H7043\"* will|strong=\"H5971\"* happen, when he|strong=\"H3808\"* cries to|strong=\"H5971\"* me|strong=\"H3808\"*, that|strong=\"H5971\"* I|strong=\"H3808\"* will|strong=\"H5971\"* hear, for|strong=\"H5971\"* I|strong=\"H3808\"* am gracious." + }, + { + "verseNum": 28, + "text": "“You|strong=\"H5414\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* blaspheme God|strong=\"H5414\"*, nor|strong=\"H3808\"* curse a|strong=\"H3068\"* ruler of|strong=\"H1121\"* your|strong=\"H5414\"* people|strong=\"H1121\"*." + }, + { + "verseNum": 29, + "text": "“You|strong=\"H5414\"* shall|strong=\"H3117\"* not|strong=\"H6213\"* delay to|strong=\"H1961\"* offer|strong=\"H6213\"* from|strong=\"H3117\"* your|strong=\"H5414\"* harvest and|strong=\"H3117\"* from|strong=\"H3117\"* the|strong=\"H5414\"* outflow of|strong=\"H3117\"* your|strong=\"H5414\"* presses." + }, + { + "verseNum": 30, + "text": "You|strong=\"H3808\"* shall|strong=\"H7704\"* do likewise with|strong=\"H1320\"* your|strong=\"H3808\"* cattle and|strong=\"H7704\"* with|strong=\"H1320\"* your|strong=\"H3808\"* sheep. It|strong=\"H1961\"* shall|strong=\"H7704\"* be|strong=\"H1961\"* with|strong=\"H1320\"* its|strong=\"H1961\"* mother seven days, then|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H1961\"* eighth day|strong=\"H6944\"* you|strong=\"H3808\"* shall|strong=\"H7704\"* give|strong=\"H7704\"* it|strong=\"H1961\"* to|strong=\"H1961\"* me|strong=\"H7993\"*." + }, + { + "verseNum": 31, + "text": "“You shall be holy men to me, therefore you shall not eat any meat that is torn by animals in the field. You shall cast it to the dogs." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "“You|strong=\"H5973\"* shall|strong=\"H7563\"* not|strong=\"H3808\"* spread|strong=\"H5375\"* a|strong=\"H3068\"* false|strong=\"H7723\"* report|strong=\"H8088\"*. Don’t join|strong=\"H5973\"* your|strong=\"H5375\"* hand|strong=\"H3027\"* with|strong=\"H5973\"* the|strong=\"H5375\"* wicked|strong=\"H7563\"* to|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* malicious|strong=\"H2555\"* witness|strong=\"H5707\"*." + }, + { + "verseNum": 2, + "text": "“You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* follow|strong=\"H1961\"* a|strong=\"H3068\"* crowd to|strong=\"H1961\"* do evil|strong=\"H7451\"*. You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* testify|strong=\"H6030\"* in|strong=\"H5921\"* court to|strong=\"H1961\"* side with|strong=\"H5921\"* a|strong=\"H3068\"* multitude|strong=\"H7227\"* to|strong=\"H1961\"* pervert|strong=\"H5186\"* justice." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* favor a|strong=\"H3068\"* poor|strong=\"H1800\"* man|strong=\"H1800\"* in|strong=\"H3808\"* his|strong=\"H3808\"* cause|strong=\"H7379\"*." + }, + { + "verseNum": 4, + "text": "“If|strong=\"H3588\"* you|strong=\"H3588\"* meet|strong=\"H6293\"* your|strong=\"H7725\"* enemy’s ox|strong=\"H7794\"* or|strong=\"H7794\"* his|strong=\"H7725\"* donkey|strong=\"H2543\"* going|strong=\"H2543\"* astray|strong=\"H8582\"*, you|strong=\"H3588\"* shall|strong=\"H7794\"* surely|strong=\"H3588\"* bring|strong=\"H7725\"* it|strong=\"H3588\"* back|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H7725\"* again|strong=\"H7725\"*." + }, + { + "verseNum": 5, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* see|strong=\"H7200\"* the|strong=\"H7200\"* donkey|strong=\"H2543\"* of|strong=\"H8478\"* him|strong=\"H7200\"* who|strong=\"H3588\"* hates|strong=\"H8130\"* you|strong=\"H3588\"* fallen down|strong=\"H7257\"* under|strong=\"H8478\"* his|strong=\"H7200\"* burden|strong=\"H4853\"*, don’t leave|strong=\"H5800\"* him|strong=\"H7200\"*. You|strong=\"H3588\"* shall|strong=\"H8478\"* surely|strong=\"H3588\"* help|strong=\"H5800\"* him|strong=\"H7200\"* with|strong=\"H5973\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 6, + "text": "“You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* deny justice|strong=\"H4941\"* to|strong=\"H4941\"* your|strong=\"H5186\"* poor people|strong=\"H3808\"* in|strong=\"H3808\"* their|strong=\"H5186\"* lawsuits." + }, + { + "verseNum": 7, + "text": "“Keep|strong=\"H7368\"* far|strong=\"H7368\"* from|strong=\"H7368\"* a|strong=\"H3068\"* false|strong=\"H8267\"* charge|strong=\"H1697\"*, and|strong=\"H1697\"* don’t kill|strong=\"H2026\"* the|strong=\"H3588\"* innocent|strong=\"H5355\"* and|strong=\"H1697\"* righteous|strong=\"H6662\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H6662\"* not|strong=\"H3808\"* justify|strong=\"H6663\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"*." + }, + { + "verseNum": 8, + "text": "“You|strong=\"H3588\"* shall|strong=\"H6662\"* take|strong=\"H3947\"* no|strong=\"H3808\"* bribe|strong=\"H7810\"*, for|strong=\"H3588\"* a|strong=\"H3068\"* bribe|strong=\"H7810\"* blinds|strong=\"H5786\"* those|strong=\"H3588\"* who|strong=\"H6662\"* have|strong=\"H1697\"* sight and|strong=\"H1697\"* perverts|strong=\"H5557\"* the|strong=\"H3588\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H3588\"* righteous|strong=\"H6662\"*." + }, + { + "verseNum": 9, + "text": "“You|strong=\"H3588\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* oppress|strong=\"H3905\"* an|strong=\"H1961\"* alien|strong=\"H1616\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* know|strong=\"H3045\"* the|strong=\"H3588\"* heart|strong=\"H5315\"* of|strong=\"H5315\"* an|strong=\"H1961\"* alien|strong=\"H1616\"*, since|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H1961\"* aliens|strong=\"H1616\"* in|strong=\"H5315\"* the|strong=\"H3588\"* land of|strong=\"H5315\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 10, + "text": "“For|strong=\"H8141\"* six|strong=\"H8337\"* years|strong=\"H8141\"* you|strong=\"H8141\"* shall|strong=\"H8141\"* sow|strong=\"H2232\"* your|strong=\"H2232\"* land, and|strong=\"H8141\"* shall|strong=\"H8141\"* gather in|strong=\"H8141\"* its increase|strong=\"H8393\"*," + }, + { + "verseNum": 11, + "text": "but|strong=\"H3651\"* the|strong=\"H6213\"* seventh|strong=\"H7637\"* year|strong=\"H2416\"* you|strong=\"H6213\"* shall|strong=\"H5971\"* let|strong=\"H8058\"* it|strong=\"H6213\"* rest|strong=\"H3499\"* and|strong=\"H5971\"* lie|strong=\"H5203\"* fallow|strong=\"H5203\"*, that|strong=\"H5971\"* the|strong=\"H6213\"* poor of|strong=\"H7704\"* your|strong=\"H6213\"* people|strong=\"H5971\"* may|strong=\"H5971\"* eat; and|strong=\"H5971\"* what|strong=\"H6213\"* they|strong=\"H3651\"* leave|strong=\"H5203\"* the|strong=\"H6213\"* animal|strong=\"H2416\"* of|strong=\"H7704\"* the|strong=\"H6213\"* field|strong=\"H7704\"* shall|strong=\"H5971\"* eat. In|strong=\"H6213\"* the|strong=\"H6213\"* same|strong=\"H3651\"* way|strong=\"H3651\"*, you|strong=\"H6213\"* shall|strong=\"H5971\"* deal|strong=\"H6213\"* with|strong=\"H6213\"* your|strong=\"H6213\"* vineyard|strong=\"H3754\"* and|strong=\"H5971\"* with|strong=\"H6213\"* your|strong=\"H6213\"* olive|strong=\"H2132\"* grove|strong=\"H2132\"*." + }, + { + "verseNum": 12, + "text": "“Six|strong=\"H8337\"* days|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H1121\"* do|strong=\"H6213\"* your|strong=\"H6213\"* work|strong=\"H4639\"*, and|strong=\"H1121\"* on|strong=\"H3117\"* the|strong=\"H6213\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H1121\"* rest|strong=\"H5117\"*, that|strong=\"H3117\"* your|strong=\"H6213\"* ox|strong=\"H7794\"* and|strong=\"H1121\"* your|strong=\"H6213\"* donkey|strong=\"H2543\"* may|strong=\"H6213\"* have|strong=\"H1121\"* rest|strong=\"H5117\"*, and|strong=\"H1121\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H6213\"* servant, and|strong=\"H1121\"* the|strong=\"H6213\"* alien|strong=\"H1616\"* may|strong=\"H6213\"* be|strong=\"H1121\"* refreshed|strong=\"H5314\"*." + }, + { + "verseNum": 13, + "text": "“Be|strong=\"H3808\"* careful|strong=\"H8104\"* to|strong=\"H5921\"* do|strong=\"H8104\"* all|strong=\"H3605\"* things|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H5921\"* have|strong=\"H3605\"* said|strong=\"H8085\"* to|strong=\"H5921\"* you|strong=\"H3605\"*; and|strong=\"H8085\"* don’t invoke|strong=\"H2142\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H8034\"* other|strong=\"H3605\"* gods or|strong=\"H3808\"* even|strong=\"H3808\"* let|strong=\"H3808\"* them|strong=\"H5921\"* be|strong=\"H3808\"* heard|strong=\"H8085\"* out|strong=\"H5921\"* of|strong=\"H8034\"* your|strong=\"H3605\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 14, + "text": "“You|strong=\"H8141\"* shall|strong=\"H7272\"* observe|strong=\"H2287\"* a|strong=\"H3068\"* feast|strong=\"H2287\"* to|strong=\"H8141\"* me three|strong=\"H7969\"* times|strong=\"H7272\"* a|strong=\"H3068\"* year|strong=\"H8141\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H3588\"* shall|strong=\"H3117\"* observe|strong=\"H8104\"* the|strong=\"H6440\"* feast|strong=\"H2282\"* of|strong=\"H3117\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*. Seven|strong=\"H7651\"* days|strong=\"H3117\"* you|strong=\"H3588\"* shall|strong=\"H3117\"* eat unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*, as|strong=\"H3117\"* I|strong=\"H3588\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*, at|strong=\"H2320\"* the|strong=\"H6440\"* time|strong=\"H3117\"* appointed|strong=\"H4150\"* in|strong=\"H3117\"* the|strong=\"H6440\"* month|strong=\"H2320\"* Abib (for|strong=\"H3588\"* in|strong=\"H3117\"* it|strong=\"H3588\"* you|strong=\"H3588\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* Egypt|strong=\"H4714\"*), and|strong=\"H3117\"* no|strong=\"H3808\"* one|strong=\"H3808\"* shall|strong=\"H3117\"* appear|strong=\"H7200\"* before|strong=\"H6440\"* me|strong=\"H6440\"* empty|strong=\"H7387\"*." + }, + { + "verseNum": 16, + "text": "And|strong=\"H7704\"* the|strong=\"H4480\"* feast|strong=\"H2282\"* of|strong=\"H8141\"* harvest|strong=\"H7105\"*, the|strong=\"H4480\"* first|strong=\"H1061\"* fruits|strong=\"H1061\"* of|strong=\"H8141\"* your|strong=\"H4480\"* labors|strong=\"H4639\"*, which|strong=\"H7704\"* you|strong=\"H4480\"* sow|strong=\"H2232\"* in|strong=\"H8141\"* the|strong=\"H4480\"* field|strong=\"H7704\"*; and|strong=\"H7704\"* the|strong=\"H4480\"* feast|strong=\"H2282\"* of|strong=\"H8141\"* ingathering, at|strong=\"H3318\"* the|strong=\"H4480\"* end|strong=\"H3318\"* of|strong=\"H8141\"* the|strong=\"H4480\"* year|strong=\"H8141\"*, when|strong=\"H3318\"* you|strong=\"H4480\"* gather in|strong=\"H8141\"* your|strong=\"H4480\"* labors|strong=\"H4639\"* out|strong=\"H3318\"* of|strong=\"H8141\"* the|strong=\"H4480\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 17, + "text": "Three|strong=\"H7969\"* times|strong=\"H6471\"* in|strong=\"H8141\"* the|strong=\"H3605\"* year|strong=\"H8141\"* all|strong=\"H3605\"* your|strong=\"H3068\"* males|strong=\"H2138\"* shall|strong=\"H3068\"* appear|strong=\"H7200\"* before|strong=\"H6440\"* the|strong=\"H3605\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "“You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* offer|strong=\"H2076\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H2077\"* my|strong=\"H5921\"* sacrifice|strong=\"H2077\"* with|strong=\"H5921\"* leavened|strong=\"H2557\"* bread|strong=\"H2557\"*. The|strong=\"H5921\"* fat|strong=\"H2459\"* of|strong=\"H2077\"* my|strong=\"H5921\"* feast|strong=\"H2282\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* remain|strong=\"H3885\"* all|strong=\"H5704\"* night|strong=\"H3885\"* until|strong=\"H5704\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H3808\"* shall|strong=\"H3068\"* bring the|strong=\"H3068\"* first|strong=\"H7225\"* of|strong=\"H1004\"* the|strong=\"H3068\"* first|strong=\"H7225\"* fruits|strong=\"H1061\"* of|strong=\"H1004\"* your|strong=\"H3068\"* ground into the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 20, + "text": "“Behold|strong=\"H2009\"*, I|strong=\"H2009\"* send|strong=\"H7971\"* an|strong=\"H7971\"* angel|strong=\"H4397\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, to|strong=\"H7971\"* keep|strong=\"H8104\"* you|strong=\"H6440\"* by|strong=\"H1870\"* the|strong=\"H6440\"* way|strong=\"H1870\"*, and|strong=\"H7971\"* to|strong=\"H7971\"* bring you|strong=\"H6440\"* into|strong=\"H4397\"* the|strong=\"H6440\"* place|strong=\"H4725\"* which|strong=\"H4725\"* I|strong=\"H2009\"* have|strong=\"H8104\"* prepared|strong=\"H3559\"*." + }, + { + "verseNum": 21, + "text": "Pay|strong=\"H8104\"* attention|strong=\"H8085\"* to|strong=\"H8104\"* him|strong=\"H6440\"*, and|strong=\"H6963\"* listen|strong=\"H8085\"* to|strong=\"H8104\"* his|strong=\"H5375\"* voice|strong=\"H6963\"*. Don’t provoke|strong=\"H4843\"* him|strong=\"H6440\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* pardon|strong=\"H5375\"* your|strong=\"H5375\"* disobedience, for|strong=\"H3588\"* my|strong=\"H8104\"* name|strong=\"H8034\"* is|strong=\"H8034\"* in|strong=\"H8085\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* indeed|strong=\"H3588\"* listen|strong=\"H8085\"* to|strong=\"H1696\"* his|strong=\"H3605\"* voice|strong=\"H6963\"*, and|strong=\"H6963\"* do|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3588\"* I|strong=\"H3588\"* speak|strong=\"H1696\"*, then|strong=\"H1696\"* I|strong=\"H3588\"* will|strong=\"H8085\"* be|strong=\"H6963\"* an|strong=\"H6213\"* enemy|strong=\"H6887\"* to|strong=\"H1696\"* your|strong=\"H3605\"* enemies|strong=\"H6887\"*, and|strong=\"H6963\"* an|strong=\"H6213\"* adversary|strong=\"H6887\"* to|strong=\"H1696\"* your|strong=\"H3605\"* adversaries|strong=\"H6887\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* my|strong=\"H3588\"* angel|strong=\"H4397\"* shall|strong=\"H6440\"* go|strong=\"H3212\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, and|strong=\"H3212\"* bring|strong=\"H3212\"* you|strong=\"H3588\"* in|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H6440\"* Amorite, the|strong=\"H6440\"* Hittite|strong=\"H2850\"*, the|strong=\"H6440\"* Perizzite|strong=\"H6522\"*, the|strong=\"H6440\"* Canaanite|strong=\"H3669\"*, the|strong=\"H6440\"* Hivite|strong=\"H2340\"*, and|strong=\"H3212\"* the|strong=\"H6440\"* Jebusite|strong=\"H2983\"*; and|strong=\"H3212\"* I|strong=\"H3588\"* will|strong=\"H4397\"* cut|strong=\"H3582\"* them|strong=\"H6440\"* off|strong=\"H3582\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* bow|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H6213\"* their|strong=\"H5647\"* gods, nor|strong=\"H3808\"* serve|strong=\"H5647\"* them|strong=\"H6213\"*, nor|strong=\"H3808\"* follow|strong=\"H6213\"* their|strong=\"H5647\"* practices|strong=\"H6213\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* utterly|strong=\"H2040\"* overthrow|strong=\"H2040\"* them|strong=\"H6213\"* and|strong=\"H6213\"* demolish their|strong=\"H5647\"* pillars|strong=\"H4676\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"H1288\"* shall|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* your|strong=\"H3068\"* bread|strong=\"H3899\"* and|strong=\"H3068\"* your|strong=\"H3068\"* water|strong=\"H4325\"*, and|strong=\"H3068\"* I|strong=\"H3068\"* will|strong=\"H3068\"* take|strong=\"H5493\"* sickness|strong=\"H4245\"* away|strong=\"H5493\"* from|strong=\"H5493\"* among|strong=\"H7130\"* you|strong=\"H1288\"*." + }, + { + "verseNum": 26, + "text": "No|strong=\"H3808\"* one|strong=\"H3808\"* will|strong=\"H1961\"* miscarry|strong=\"H7921\"* or|strong=\"H3808\"* be|strong=\"H1961\"* barren|strong=\"H6135\"* in|strong=\"H3117\"* your|strong=\"H1961\"* land. I|strong=\"H3117\"* will|strong=\"H1961\"* fulfill|strong=\"H4390\"* the|strong=\"H3117\"* number|strong=\"H4557\"* of|strong=\"H3117\"* your|strong=\"H1961\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 27, + "text": "I|strong=\"H5414\"* will|strong=\"H5971\"* send|strong=\"H7971\"* my|strong=\"H5414\"* terror before|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H7971\"* will|strong=\"H5971\"* confuse|strong=\"H2000\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* to|strong=\"H7971\"* whom|strong=\"H6440\"* you|strong=\"H5414\"* come|strong=\"H5971\"*, and|strong=\"H7971\"* I|strong=\"H5414\"* will|strong=\"H5971\"* make|strong=\"H5414\"* all|strong=\"H3605\"* your|strong=\"H3605\"* enemies turn|strong=\"H5414\"* their|strong=\"H3605\"* backs|strong=\"H6203\"* to|strong=\"H7971\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 28, + "text": "I|strong=\"H6440\"* will|strong=\"H7971\"* send|strong=\"H7971\"* the|strong=\"H6440\"* hornet|strong=\"H6880\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, which|strong=\"H3669\"* will|strong=\"H7971\"* drive|strong=\"H1644\"* out|strong=\"H7971\"* the|strong=\"H6440\"* Hivite|strong=\"H2340\"*, the|strong=\"H6440\"* Canaanite|strong=\"H3669\"*, and|strong=\"H7971\"* the|strong=\"H6440\"* Hittite|strong=\"H2850\"*, from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 29, + "text": "I|strong=\"H5921\"* will|strong=\"H1961\"* not|strong=\"H3808\"* drive|strong=\"H1644\"* them|strong=\"H5921\"* out|strong=\"H1644\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"* in|strong=\"H8141\"* one|strong=\"H3808\"* year|strong=\"H8141\"*, lest|strong=\"H6435\"* the|strong=\"H6440\"* land|strong=\"H7704\"* become|strong=\"H1961\"* desolate|strong=\"H8077\"*, and|strong=\"H6440\"* the|strong=\"H6440\"* animals|strong=\"H2416\"* of|strong=\"H8141\"* the|strong=\"H6440\"* field|strong=\"H7704\"* multiply|strong=\"H7227\"* against|strong=\"H5921\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 30, + "text": "Little|strong=\"H4592\"* by|strong=\"H5704\"* little|strong=\"H4592\"* I|strong=\"H5704\"* will|strong=\"H5704\"* drive|strong=\"H1644\"* them|strong=\"H6440\"* out|strong=\"H1644\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, until|strong=\"H5704\"* you|strong=\"H6440\"* have|strong=\"H5157\"* increased|strong=\"H6509\"* and|strong=\"H6440\"* inherit|strong=\"H5157\"* the|strong=\"H6440\"* land|strong=\"H6440\"*." + }, + { + "verseNum": 31, + "text": "I|strong=\"H3588\"* will|strong=\"H3027\"* set|strong=\"H5414\"* your|strong=\"H5414\"* border|strong=\"H1366\"* from|strong=\"H6440\"* the|strong=\"H6440\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H6440\"* sea|strong=\"H3220\"* of|strong=\"H3027\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*, and|strong=\"H3027\"* from|strong=\"H6440\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"* to|strong=\"H5704\"* the|strong=\"H6440\"* River|strong=\"H5104\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3027\"* deliver|strong=\"H5414\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H3027\"* the|strong=\"H6440\"* land|strong=\"H6440\"* into|strong=\"H3220\"* your|strong=\"H5414\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* you|strong=\"H3588\"* shall|strong=\"H3027\"* drive|strong=\"H1644\"* them|strong=\"H5414\"* out|strong=\"H1644\"* before|strong=\"H6440\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 32, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* make|strong=\"H3772\"* no|strong=\"H3808\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* them|strong=\"H3772\"*, nor|strong=\"H3808\"* with|strong=\"H1285\"* their|strong=\"H3772\"* gods." + }, + { + "verseNum": 33, + "text": "They|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* your|strong=\"H3588\"* land, lest|strong=\"H6435\"* they|strong=\"H3588\"* make|strong=\"H5647\"* you|strong=\"H3588\"* sin|strong=\"H2398\"* against|strong=\"H2398\"* me|strong=\"H1961\"*, for|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* serve|strong=\"H5647\"* their|strong=\"H5647\"* gods, it|strong=\"H3588\"* will|strong=\"H1961\"* surely|strong=\"H3588\"* be|strong=\"H1961\"* a|strong=\"H3068\"* snare|strong=\"H4170\"* to|strong=\"H1961\"* you|strong=\"H3588\"*.”" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H3068\"* said to|strong=\"H3478\"* Moses|strong=\"H4872\"*, “Come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, you|strong=\"H5927\"*, and|strong=\"H4872\"* Aaron, Nadab|strong=\"H5070\"*, and|strong=\"H4872\"* Abihu, and|strong=\"H4872\"* seventy|strong=\"H7657\"* of|strong=\"H3068\"* the|strong=\"H3068\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*; and|strong=\"H4872\"* worship|strong=\"H7812\"* from|strong=\"H5927\"* a|strong=\"H3068\"* distance|strong=\"H7350\"*." + }, + { + "verseNum": 2, + "text": "Moses|strong=\"H4872\"* alone shall|strong=\"H3068\"* come|strong=\"H5927\"* near|strong=\"H5066\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, but|strong=\"H3808\"* they|strong=\"H1992\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H5927\"* near|strong=\"H5066\"*. The|strong=\"H3068\"* people|strong=\"H5971\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* him|strong=\"H5973\"*.”" + }, + { + "verseNum": 3, + "text": "Moses|strong=\"H4872\"* came|strong=\"H3068\"* and|strong=\"H4872\"* told|strong=\"H1696\"* the|strong=\"H3605\"* people|strong=\"H5971\"* all|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"*, and|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ordinances|strong=\"H4941\"*; and|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* answered|strong=\"H6030\"* with|strong=\"H3068\"* one|strong=\"H3605\"* voice|strong=\"H6963\"*, and|strong=\"H4872\"* said|strong=\"H1696\"*, “All|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* will|strong=\"H3068\"* we|strong=\"H3068\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 4, + "text": "Moses|strong=\"H4872\"* wrote|strong=\"H3789\"* all|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"*, then|strong=\"H4872\"* rose|strong=\"H7925\"* up|strong=\"H1129\"* early|strong=\"H7925\"* in|strong=\"H3478\"* the|strong=\"H3605\"* morning|strong=\"H1242\"* and|strong=\"H4872\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* at|strong=\"H3478\"* the|strong=\"H3605\"* base of|strong=\"H3068\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"*, with|strong=\"H3068\"* twelve|strong=\"H8147\"* pillars|strong=\"H4676\"* for|strong=\"H8478\"* the|strong=\"H3605\"* twelve|strong=\"H8147\"* tribes|strong=\"H7626\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3068\"* sent|strong=\"H7971\"* young|strong=\"H5288\"* men|strong=\"H5288\"* of|strong=\"H1121\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, who|strong=\"H3068\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H1121\"* sacrificed|strong=\"H2076\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* of|strong=\"H1121\"* cattle to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* half|strong=\"H2677\"* of|strong=\"H4196\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* and|strong=\"H4872\"* put|strong=\"H7760\"* it|strong=\"H7760\"* in|strong=\"H5921\"* basins, and|strong=\"H4872\"* half|strong=\"H2677\"* of|strong=\"H4196\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* he|strong=\"H5921\"* sprinkled|strong=\"H2236\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H6213\"* took|strong=\"H3947\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H3068\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* and|strong=\"H3068\"* read|strong=\"H7121\"* it|strong=\"H7121\"* in|strong=\"H3068\"* the|strong=\"H3605\"* hearing|strong=\"H8085\"* of|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* said|strong=\"H1696\"*, “We|strong=\"H8085\"* will|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H5971\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* said|strong=\"H1696\"*, and|strong=\"H3068\"* be|strong=\"H3068\"* obedient|strong=\"H8085\"*.”" + }, + { + "verseNum": 8, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* the|strong=\"H3605\"* blood|strong=\"H1818\"*, and|strong=\"H4872\"* sprinkled|strong=\"H2236\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* said|strong=\"H1697\"*, “Look|strong=\"H2009\"*, this|strong=\"H1697\"* is|strong=\"H3068\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H3068\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H3772\"* with|strong=\"H5973\"* you|strong=\"H3605\"* concerning|strong=\"H5921\"* all|strong=\"H3605\"* these|strong=\"H3947\"* words|strong=\"H1697\"*.”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H4872\"* Moses|strong=\"H4872\"*, Aaron, Nadab|strong=\"H5070\"*, Abihu, and|strong=\"H4872\"* seventy|strong=\"H7657\"* of|strong=\"H2205\"* the|strong=\"H5927\"* elders|strong=\"H2205\"* of|strong=\"H2205\"* Israel|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H3478\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* God|strong=\"H8064\"* of|strong=\"H8478\"* Israel|strong=\"H3478\"*. Under|strong=\"H8478\"* his|strong=\"H7200\"* feet|strong=\"H7272\"* was|strong=\"H3478\"* like|strong=\"H7272\"* a|strong=\"H3068\"* paved|strong=\"H3840\"* work|strong=\"H4639\"* of|strong=\"H8478\"* sapphire|strong=\"H5601\"*+ 24:10 or, lapis lazuli* stone|strong=\"H5601\"*, like|strong=\"H7272\"* the|strong=\"H7200\"* skies for|strong=\"H8478\"* clearness|strong=\"H2892\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3027\"* didn’t lay|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"* on|strong=\"H3027\"* the|strong=\"H7971\"* nobles of|strong=\"H1121\"* the|strong=\"H7971\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. They|strong=\"H3808\"* saw|strong=\"H2372\"* God|strong=\"H3808\"*, and|strong=\"H1121\"* ate and|strong=\"H1121\"* drank|strong=\"H8354\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* me|strong=\"H5414\"* on|strong=\"H3068\"* the|strong=\"H5414\"* mountain|strong=\"H2022\"*, and|strong=\"H4872\"* stay here|strong=\"H8033\"*, and|strong=\"H4872\"* I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H5414\"* stone tablets|strong=\"H3871\"* with|strong=\"H3068\"* the|strong=\"H5414\"* law|strong=\"H8451\"* and|strong=\"H4872\"* the|strong=\"H5414\"* commands|strong=\"H4687\"* that|strong=\"H3068\"* I|strong=\"H5414\"* have|strong=\"H1961\"* written|strong=\"H3789\"*, that|strong=\"H3068\"* you|strong=\"H5414\"* may|strong=\"H1961\"* teach|strong=\"H3384\"* them|strong=\"H5414\"*.”" + }, + { + "verseNum": 13, + "text": "Moses|strong=\"H4872\"* rose|strong=\"H6965\"* up|strong=\"H5927\"* with|strong=\"H5927\"* Joshua|strong=\"H3091\"*, his|strong=\"H6965\"* servant|strong=\"H8334\"*, and|strong=\"H6965\"* Moses|strong=\"H4872\"* went|strong=\"H5927\"* up|strong=\"H5927\"* onto God’s Mountain|strong=\"H2022\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H5704\"* said|strong=\"H1697\"* to|strong=\"H5704\"* the|strong=\"H7725\"* elders|strong=\"H2205\"*, “Wait|strong=\"H3427\"* here|strong=\"H2009\"* for|strong=\"H5704\"* us|strong=\"H7725\"*, until|strong=\"H5704\"* we|strong=\"H3068\"* come|strong=\"H5066\"* again|strong=\"H7725\"* to|strong=\"H5704\"* you|strong=\"H5704\"*. Behold|strong=\"H2009\"*, Aaron and|strong=\"H7725\"* Hur|strong=\"H2354\"* are|strong=\"H1697\"* with|strong=\"H5973\"* you|strong=\"H5704\"*. Whoever|strong=\"H4310\"* is|strong=\"H2088\"* involved in|strong=\"H3427\"* a|strong=\"H3068\"* dispute|strong=\"H1697\"* can|strong=\"H4310\"* go|strong=\"H7725\"* to|strong=\"H5704\"* them|strong=\"H7725\"*.”" + }, + { + "verseNum": 15, + "text": "Moses|strong=\"H4872\"* went|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H5927\"* the|strong=\"H3680\"* mountain|strong=\"H2022\"*, and|strong=\"H4872\"* the|strong=\"H3680\"* cloud|strong=\"H6051\"* covered|strong=\"H3680\"* the|strong=\"H3680\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* settled|strong=\"H7931\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*, and|strong=\"H4872\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"* covered|strong=\"H3680\"* it|strong=\"H7121\"* six|strong=\"H8337\"* days|strong=\"H3117\"*. The|strong=\"H5921\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* he|strong=\"H3117\"* called|strong=\"H7121\"* to|strong=\"H3068\"* Moses|strong=\"H4872\"* out|strong=\"H5921\"* of|strong=\"H3068\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3068\"* appearance|strong=\"H4758\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* was|strong=\"H3068\"* like|strong=\"H4758\"* devouring fire on|strong=\"H3068\"* the|strong=\"H3068\"* top|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3068\"* mountain|strong=\"H2022\"* in|strong=\"H3478\"* the|strong=\"H3068\"* eyes|strong=\"H5869\"* of|strong=\"H1121\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 18, + "text": "Moses|strong=\"H4872\"* entered|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H3117\"* the|strong=\"H8432\"* cloud|strong=\"H6051\"*, and|strong=\"H4872\"* went|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H3117\"* the|strong=\"H8432\"* mountain|strong=\"H2022\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* was|strong=\"H1961\"* on|strong=\"H3117\"* the|strong=\"H8432\"* mountain|strong=\"H2022\"* forty days|strong=\"H3117\"* and|strong=\"H4872\"* forty nights|strong=\"H3915\"*." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H3605\"* they|strong=\"H3478\"* take|strong=\"H3947\"* an|strong=\"H3947\"* offering|strong=\"H8641\"* for|strong=\"H1121\"* me|strong=\"H3947\"*. From|strong=\"H3478\"* everyone|strong=\"H3605\"* whose|strong=\"H1121\"* heart|strong=\"H3820\"* makes|strong=\"H1696\"* him|strong=\"H3947\"* willing|strong=\"H5068\"* you|strong=\"H3605\"* shall|strong=\"H1121\"* take|strong=\"H3947\"* my|strong=\"H3605\"* offering|strong=\"H8641\"*." + }, + { + "verseNum": 3, + "text": "This|strong=\"H2063\"* is|strong=\"H3701\"* the|strong=\"H3947\"* offering|strong=\"H8641\"* which|strong=\"H2091\"* you|strong=\"H3947\"* shall|strong=\"H3701\"* take|strong=\"H3947\"* from|strong=\"H3947\"* them|strong=\"H3947\"*: gold|strong=\"H2091\"*, silver|strong=\"H3701\"*, bronze|strong=\"H5178\"*," + }, + { + "verseNum": 4, + "text": "blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, fine|strong=\"H8336\"* linen|strong=\"H8336\"*, goats|strong=\"H5795\"*’ hair," + }, + { + "verseNum": 5, + "text": "rams’ skins|strong=\"H5785\"* dyed|strong=\"H5785\"* red, sea cow hides|strong=\"H5785\"*,+ 25:5 or, fine leather* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*," + }, + { + "verseNum": 6, + "text": "oil|strong=\"H8081\"* for|strong=\"H8081\"* the light|strong=\"H3974\"*, spices|strong=\"H1314\"* for|strong=\"H8081\"* the anointing|strong=\"H4888\"* oil|strong=\"H8081\"* and|strong=\"H8081\"* for|strong=\"H8081\"* the sweet|strong=\"H5561\"* incense|strong=\"H7004\"*," + }, + { + "verseNum": 7, + "text": "onyx|strong=\"H7718\"* stones, and|strong=\"H4394\"* stones to be set|strong=\"H4394\"* for|strong=\"H4394\"* the|strong=\"H2833\"* ephod and|strong=\"H4394\"* for|strong=\"H4394\"* the|strong=\"H2833\"* breastplate|strong=\"H2833\"*." + }, + { + "verseNum": 8, + "text": "Let them|strong=\"H6213\"* make|strong=\"H6213\"* me|strong=\"H6213\"* a|strong=\"H3068\"* sanctuary|strong=\"H4720\"*, that|strong=\"H6213\"* I|strong=\"H8432\"* may|strong=\"H6213\"* dwell|strong=\"H7931\"* among|strong=\"H8432\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 9, + "text": "According to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H7200\"* I|strong=\"H3651\"* show|strong=\"H7200\"* you|strong=\"H3605\"*, the|strong=\"H3605\"* pattern|strong=\"H8403\"* of|strong=\"H3627\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*, and|strong=\"H7200\"* the|strong=\"H3605\"* pattern|strong=\"H8403\"* of|strong=\"H3627\"* all|strong=\"H3605\"* of|strong=\"H3627\"* its|strong=\"H3605\"* furniture|strong=\"H3627\"*, even|strong=\"H3651\"* so|strong=\"H3651\"* you|strong=\"H3605\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 10, + "text": "“They|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* an|strong=\"H6213\"* ark of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*. Its|strong=\"H6213\"* length|strong=\"H6967\"* shall|strong=\"H6213\"* be|strong=\"H6086\"* two|strong=\"H6213\"* and|strong=\"H6086\"* a|strong=\"H3068\"* half|strong=\"H2677\"* cubits,+ 25:10 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* its|strong=\"H6213\"* width|strong=\"H7341\"* a|strong=\"H3068\"* cubit and|strong=\"H6086\"* a|strong=\"H3068\"* half|strong=\"H2677\"*, and|strong=\"H6086\"* a|strong=\"H3068\"* cubit and|strong=\"H6086\"* a|strong=\"H3068\"* half|strong=\"H2677\"* its|strong=\"H6213\"* height|strong=\"H6967\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H5921\"* shall|strong=\"H1004\"* overlay|strong=\"H6823\"* it|strong=\"H5921\"* with|strong=\"H1004\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*. You|strong=\"H5921\"* shall|strong=\"H1004\"* overlay|strong=\"H6823\"* it|strong=\"H5921\"* inside|strong=\"H1004\"* and|strong=\"H1004\"* outside|strong=\"H2351\"*, and|strong=\"H1004\"* you|strong=\"H5921\"* shall|strong=\"H1004\"* make|strong=\"H6213\"* a|strong=\"H3068\"* gold|strong=\"H2091\"* molding|strong=\"H2213\"* around|strong=\"H5439\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H5414\"* shall|strong=\"H8147\"* cast|strong=\"H3332\"* four rings|strong=\"H2885\"* of|strong=\"H5921\"* gold|strong=\"H2091\"* for|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H2091\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H5921\"* its|strong=\"H5414\"* four feet|strong=\"H6471\"*. Two|strong=\"H8147\"* rings|strong=\"H2885\"* shall|strong=\"H8147\"* be|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H8147\"* side|strong=\"H6763\"* of|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H2091\"* two|strong=\"H8147\"* rings|strong=\"H2885\"* on|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H8145\"* side|strong=\"H6763\"* of|strong=\"H5921\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* poles of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, and|strong=\"H6086\"* overlay|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H6213\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H5921\"* shall put|strong=\"H5375\"* the|strong=\"H5921\"* poles into|strong=\"H5921\"* the|strong=\"H5921\"* rings|strong=\"H2885\"* on|strong=\"H5921\"* the|strong=\"H5921\"* sides|strong=\"H6763\"* of|strong=\"H5921\"* the|strong=\"H5921\"* ark to|strong=\"H5921\"* carry|strong=\"H5375\"* the|strong=\"H5921\"* ark." + }, + { + "verseNum": 15, + "text": "The|strong=\"H4480\"* poles shall|strong=\"H3808\"* be|strong=\"H1961\"* in|strong=\"H5493\"* the|strong=\"H4480\"* rings|strong=\"H2885\"* of|strong=\"H4480\"* the|strong=\"H4480\"* ark. They|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H1961\"* taken|strong=\"H5493\"* from|strong=\"H4480\"* it|strong=\"H1961\"*." + }, + { + "verseNum": 16, + "text": "You|strong=\"H5414\"* shall put|strong=\"H5414\"* the|strong=\"H5414\"* covenant which I|strong=\"H5414\"* shall give|strong=\"H5414\"* you|strong=\"H5414\"* into|strong=\"H5414\"* the|strong=\"H5414\"* ark." + }, + { + "verseNum": 17, + "text": "You|strong=\"H6213\"* shall|strong=\"H2889\"* make|strong=\"H6213\"* a|strong=\"H3068\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* of|strong=\"H2677\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*. Two|strong=\"H6213\"* and|strong=\"H2091\"* a|strong=\"H3068\"* half|strong=\"H2677\"* cubits shall|strong=\"H2889\"* be its|strong=\"H6213\"* length, and|strong=\"H2091\"* a|strong=\"H3068\"* cubit and|strong=\"H2091\"* a|strong=\"H3068\"* half|strong=\"H2677\"* its|strong=\"H6213\"* width|strong=\"H7341\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* two|strong=\"H8147\"* cherubim|strong=\"H3742\"* of|strong=\"H8147\"* hammered|strong=\"H4749\"* gold|strong=\"H2091\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* them|strong=\"H6213\"* at|strong=\"H6213\"* the|strong=\"H6213\"* two|strong=\"H8147\"* ends|strong=\"H7098\"* of|strong=\"H8147\"* the|strong=\"H6213\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"*." + }, + { + "verseNum": 19, + "text": "Make|strong=\"H6213\"* one|strong=\"H2088\"* cherub|strong=\"H3742\"* at|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H2088\"* end|strong=\"H7098\"*, and|strong=\"H6213\"* one|strong=\"H2088\"* cherub|strong=\"H3742\"* at|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H2088\"* end|strong=\"H7098\"*. You|strong=\"H5921\"* shall|strong=\"H2088\"* make|strong=\"H6213\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* on|strong=\"H5921\"* its|strong=\"H5921\"* two|strong=\"H8147\"* ends|strong=\"H7098\"* of|strong=\"H4480\"* one|strong=\"H2088\"* piece with|strong=\"H6213\"* the|strong=\"H5921\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H6440\"* cherubim|strong=\"H3742\"* shall|strong=\"H6440\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* their|strong=\"H6440\"* wings|strong=\"H3671\"* upward|strong=\"H4605\"*, covering|strong=\"H5526\"* the|strong=\"H6440\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* with|strong=\"H5921\"* their|strong=\"H6440\"* wings|strong=\"H3671\"*, with|strong=\"H5921\"* their|strong=\"H6440\"* faces|strong=\"H6440\"* toward|strong=\"H5921\"* one|strong=\"H1961\"* another|strong=\"H3671\"*. The|strong=\"H6440\"* faces|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* cherubim|strong=\"H3742\"* shall|strong=\"H6440\"* be|strong=\"H1961\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"H5414\"* shall put|strong=\"H5414\"* the|strong=\"H5921\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* on|strong=\"H5921\"* top|strong=\"H4605\"* of|strong=\"H5921\"* the|strong=\"H5921\"* ark, and|strong=\"H4605\"* in|strong=\"H5921\"* the|strong=\"H5921\"* ark you|strong=\"H5414\"* shall put|strong=\"H5414\"* the|strong=\"H5921\"* covenant that|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 22, + "text": "There|strong=\"H8033\"* I|strong=\"H5921\"* will|strong=\"H3478\"* meet|strong=\"H3259\"* with|strong=\"H1696\"* you|strong=\"H6680\"*, and|strong=\"H1121\"* I|strong=\"H5921\"* will|strong=\"H3478\"* tell|strong=\"H1696\"* you|strong=\"H6680\"* from|strong=\"H5921\"* above|strong=\"H5921\"* the|strong=\"H3605\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"*, from|strong=\"H5921\"* between|strong=\"H5921\"* the|strong=\"H3605\"* two|strong=\"H8147\"* cherubim|strong=\"H3742\"* which|strong=\"H8033\"* are|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H3605\"* ark of|strong=\"H1121\"* the|strong=\"H3605\"* covenant, all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H5921\"* command|strong=\"H6680\"* you|strong=\"H6680\"* for|strong=\"H5921\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 23, + "text": "“You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* table|strong=\"H7979\"* of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*. Its|strong=\"H6213\"* length|strong=\"H6967\"* shall|strong=\"H6213\"* be|strong=\"H6086\"* two|strong=\"H6213\"* cubits, and|strong=\"H6086\"* its|strong=\"H6213\"* width|strong=\"H7341\"* a|strong=\"H3068\"* cubit, and|strong=\"H6086\"* its|strong=\"H6213\"* height|strong=\"H6967\"* one|strong=\"H6213\"* and|strong=\"H6086\"* a|strong=\"H3068\"* half|strong=\"H2677\"* cubits." + }, + { + "verseNum": 24, + "text": "You|strong=\"H6213\"* shall|strong=\"H2889\"* overlay|strong=\"H6823\"* it|strong=\"H6213\"* with|strong=\"H6213\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* make|strong=\"H6213\"* a|strong=\"H3068\"* gold|strong=\"H2091\"* molding|strong=\"H2213\"* around|strong=\"H5439\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* rim|strong=\"H4526\"* of|strong=\"H6213\"* a|strong=\"H3068\"* hand|strong=\"H2948\"* width around|strong=\"H5439\"* it|strong=\"H6213\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* golden|strong=\"H2091\"* molding|strong=\"H2213\"* on|strong=\"H2091\"* its|strong=\"H6213\"* rim|strong=\"H4526\"* around|strong=\"H5439\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 26, + "text": "You|strong=\"H5414\"* shall|strong=\"H7272\"* make|strong=\"H6213\"* four rings|strong=\"H2885\"* of|strong=\"H5921\"* gold|strong=\"H2091\"* for|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H2091\"* put|strong=\"H5414\"* the|strong=\"H5921\"* rings|strong=\"H2885\"* in|strong=\"H5921\"* the|strong=\"H5921\"* four corners|strong=\"H6285\"* that|strong=\"H5414\"* are|strong=\"H7272\"* on|strong=\"H5921\"* its|strong=\"H5414\"* four feet|strong=\"H7272\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H5375\"* rings|strong=\"H2885\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* close|strong=\"H5980\"* to|strong=\"H1961\"* the|strong=\"H5375\"* rim|strong=\"H4526\"*, for|strong=\"H1004\"* places|strong=\"H1004\"* for|strong=\"H1004\"* the|strong=\"H5375\"* poles to|strong=\"H1961\"* carry|strong=\"H5375\"* the|strong=\"H5375\"* table|strong=\"H7979\"*." + }, + { + "verseNum": 28, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* the|strong=\"H5375\"* poles of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, and|strong=\"H6086\"* overlay|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H6213\"* gold|strong=\"H2091\"*, that|strong=\"H6213\"* the|strong=\"H5375\"* table|strong=\"H7979\"* may|strong=\"H6213\"* be|strong=\"H6086\"* carried|strong=\"H5375\"* with|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 29, + "text": "You|strong=\"H6213\"* shall|strong=\"H2889\"* make|strong=\"H6213\"* its|strong=\"H6213\"* dishes|strong=\"H7086\"*, its|strong=\"H6213\"* spoons|strong=\"H3709\"*, its|strong=\"H6213\"* ladles|strong=\"H3709\"*, and|strong=\"H2091\"* its|strong=\"H6213\"* bowls|strong=\"H4518\"* with|strong=\"H6213\"* which|strong=\"H2004\"* to|strong=\"H6213\"* pour|strong=\"H5258\"* out|strong=\"H5258\"* offerings|strong=\"H5258\"*. You|strong=\"H6213\"* shall|strong=\"H2889\"* make|strong=\"H6213\"* them|strong=\"H6213\"* of|strong=\"H3709\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 30, + "text": "You|strong=\"H5414\"* shall|strong=\"H6440\"* set|strong=\"H5414\"* bread|strong=\"H3899\"* of|strong=\"H6440\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* on|strong=\"H5921\"* the|strong=\"H6440\"* table|strong=\"H7979\"* before|strong=\"H6440\"* me|strong=\"H5414\"* always|strong=\"H8548\"*." + }, + { + "verseNum": 31, + "text": "“You|strong=\"H6213\"* shall|strong=\"H2889\"* make|strong=\"H6213\"* a|strong=\"H3068\"* lamp stand of|strong=\"H4480\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*. The|strong=\"H6213\"* lamp stand shall|strong=\"H2889\"* be|strong=\"H1961\"* made|strong=\"H6213\"* of|strong=\"H4480\"* hammered|strong=\"H4749\"* work|strong=\"H6213\"*. Its|strong=\"H6213\"* base|strong=\"H3409\"*, its|strong=\"H6213\"* shaft|strong=\"H3409\"*, its|strong=\"H6213\"* cups|strong=\"H1375\"*, its|strong=\"H6213\"* buds|strong=\"H6525\"*, and|strong=\"H2091\"* its|strong=\"H6213\"* flowers|strong=\"H6525\"* shall|strong=\"H2889\"* be|strong=\"H1961\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece|strong=\"H4749\"* with|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 32, + "text": "There shall|strong=\"H7070\"* be|strong=\"H3318\"* six|strong=\"H8337\"* branches|strong=\"H7070\"* going|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3318\"* its|strong=\"H3318\"* sides|strong=\"H6654\"*: three|strong=\"H7969\"* branches|strong=\"H7070\"* of|strong=\"H3318\"* the|strong=\"H3318\"* lamp stand out|strong=\"H3318\"* of|strong=\"H3318\"* its|strong=\"H3318\"* one|strong=\"H8145\"* side|strong=\"H6654\"*, and|strong=\"H3318\"* three|strong=\"H7969\"* branches|strong=\"H7070\"* of|strong=\"H3318\"* the|strong=\"H3318\"* lamp stand out|strong=\"H3318\"* of|strong=\"H3318\"* its|strong=\"H3318\"* other|strong=\"H8145\"* side|strong=\"H6654\"*;" + }, + { + "verseNum": 33, + "text": "three|strong=\"H7969\"* cups|strong=\"H1375\"* made like|strong=\"H3651\"* almond|strong=\"H8246\"* blossoms|strong=\"H6525\"* in|strong=\"H3318\"* one|strong=\"H4480\"* branch|strong=\"H7070\"*, a|strong=\"H3068\"* bud|strong=\"H6525\"* and|strong=\"H3318\"* a|strong=\"H3068\"* flower|strong=\"H6525\"*; and|strong=\"H3318\"* three|strong=\"H7969\"* cups|strong=\"H1375\"* made like|strong=\"H3651\"* almond|strong=\"H8246\"* blossoms|strong=\"H6525\"* in|strong=\"H3318\"* the|strong=\"H4480\"* other branch|strong=\"H7070\"*, a|strong=\"H3068\"* bud|strong=\"H6525\"* and|strong=\"H3318\"* a|strong=\"H3068\"* flower|strong=\"H6525\"*, so|strong=\"H3651\"* for|strong=\"H3318\"* the|strong=\"H4480\"* six|strong=\"H8337\"* branches|strong=\"H7070\"* going|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4480\"* the|strong=\"H4480\"* lamp stand;" + }, + { + "verseNum": 34, + "text": "and|strong=\"H6525\"* in|strong=\"H6525\"* the lamp stand four cups|strong=\"H1375\"* made like|strong=\"H8246\"* almond|strong=\"H8246\"* blossoms|strong=\"H6525\"*, its buds|strong=\"H6525\"* and|strong=\"H6525\"* its flowers|strong=\"H6525\"*;" + }, + { + "verseNum": 35, + "text": "and|strong=\"H3318\"* a|strong=\"H3068\"* bud under|strong=\"H8478\"* two|strong=\"H8147\"* branches|strong=\"H7070\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece with|strong=\"H3318\"* it|strong=\"H3318\"*, and|strong=\"H3318\"* a|strong=\"H3068\"* bud under|strong=\"H8478\"* two|strong=\"H8147\"* branches|strong=\"H7070\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece with|strong=\"H3318\"* it|strong=\"H3318\"*, and|strong=\"H3318\"* a|strong=\"H3068\"* bud under|strong=\"H8478\"* two|strong=\"H8147\"* branches|strong=\"H7070\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece with|strong=\"H3318\"* it|strong=\"H3318\"*, for|strong=\"H8478\"* the|strong=\"H4480\"* six|strong=\"H8337\"* branches|strong=\"H7070\"* going|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4480\"* the|strong=\"H4480\"* lamp stand|strong=\"H8478\"*." + }, + { + "verseNum": 36, + "text": "Their|strong=\"H3605\"* buds and|strong=\"H2091\"* their|strong=\"H3605\"* branches|strong=\"H7070\"* shall|strong=\"H2889\"* be|strong=\"H1961\"* of|strong=\"H4480\"* one|strong=\"H3605\"* piece|strong=\"H4749\"* with|strong=\"H3605\"* it|strong=\"H1961\"*, all|strong=\"H3605\"* of|strong=\"H4480\"* it|strong=\"H1961\"* one|strong=\"H3605\"* beaten|strong=\"H4749\"* work|strong=\"H4749\"* of|strong=\"H4480\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 37, + "text": "You|strong=\"H6440\"* shall|strong=\"H6440\"* make|strong=\"H6213\"* its|strong=\"H5921\"* lamps|strong=\"H5216\"* seven|strong=\"H7651\"*, and|strong=\"H6440\"* they|strong=\"H5921\"* shall|strong=\"H6440\"* light|strong=\"H5216\"* its|strong=\"H5921\"* lamps|strong=\"H5216\"* to|strong=\"H5927\"* give|strong=\"H6213\"* light|strong=\"H5216\"* to|strong=\"H5927\"* the|strong=\"H6440\"* space|strong=\"H5676\"* in|strong=\"H5921\"* front|strong=\"H6440\"* of|strong=\"H6440\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 38, + "text": "Its snuffers|strong=\"H4457\"* and|strong=\"H2091\"* its snuff dishes shall|strong=\"H2889\"* be of|strong=\"H2091\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 39, + "text": "It|strong=\"H6213\"* shall|strong=\"H2889\"* be|strong=\"H3605\"* made|strong=\"H6213\"* of|strong=\"H3627\"* a|strong=\"H3068\"* talent|strong=\"H3603\"*+ 25:39 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces* of|strong=\"H3627\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*, with|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* accessories." + }, + { + "verseNum": 40, + "text": "See|strong=\"H7200\"* that|strong=\"H7200\"* you|strong=\"H6213\"* make|strong=\"H6213\"* them|strong=\"H6213\"* after|strong=\"H7200\"* their|strong=\"H7200\"* pattern|strong=\"H8403\"*, which|strong=\"H2022\"* has|strong=\"H6213\"* been shown|strong=\"H7200\"* to|strong=\"H6213\"* you|strong=\"H6213\"* on|strong=\"H7200\"* the|strong=\"H7200\"* mountain|strong=\"H2022\"*." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "“Moreover you|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"* with|strong=\"H6213\"* ten|strong=\"H6235\"* curtains|strong=\"H3407\"* of|strong=\"H4639\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, and|strong=\"H8504\"* blue|strong=\"H8504\"*, and|strong=\"H8504\"* purple|strong=\"H8504\"*, and|strong=\"H8504\"* scarlet|strong=\"H8144\"*, with|strong=\"H6213\"* cherubim|strong=\"H3742\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* them|strong=\"H6213\"* with|strong=\"H6213\"* the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* a|strong=\"H3068\"* skillful|strong=\"H2803\"* workman|strong=\"H2803\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* length of|strong=\"H3605\"* each|strong=\"H3605\"* curtain|strong=\"H3407\"* shall be|strong=\"H3605\"* twenty-eight|strong=\"H6242\"* cubits,+ 26:2 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H6242\"* the|strong=\"H3605\"* width|strong=\"H7341\"* of|strong=\"H3605\"* each|strong=\"H3605\"* curtain|strong=\"H3407\"* four cubits: all|strong=\"H3605\"* the|strong=\"H3605\"* curtains|strong=\"H3407\"* shall have|strong=\"H3605\"* one|strong=\"H3605\"* measure|strong=\"H4060\"*." + }, + { + "verseNum": 3, + "text": "Five|strong=\"H2568\"* curtains|strong=\"H3407\"* shall be|strong=\"H1961\"* coupled|strong=\"H2266\"* together|strong=\"H2266\"* to|strong=\"H1961\"* one|strong=\"H1961\"* another, and|strong=\"H2568\"* the|strong=\"H1961\"* other five|strong=\"H2568\"* curtains|strong=\"H3407\"* shall be|strong=\"H1961\"* coupled|strong=\"H2266\"* to|strong=\"H1961\"* one|strong=\"H1961\"* another." + }, + { + "verseNum": 4, + "text": "You|strong=\"H5921\"* shall|strong=\"H8193\"* make|strong=\"H6213\"* loops|strong=\"H3924\"* of|strong=\"H5921\"* blue|strong=\"H8504\"* on|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* of|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H6213\"* curtain|strong=\"H3407\"* from|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* in|strong=\"H5921\"* the|strong=\"H5921\"* coupling|strong=\"H4225\"*, and|strong=\"H8504\"* you|strong=\"H5921\"* shall|strong=\"H8193\"* do|strong=\"H6213\"* likewise|strong=\"H3651\"* on|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* of|strong=\"H5921\"* the|strong=\"H5921\"* curtain|strong=\"H3407\"* that|strong=\"H3651\"* is|strong=\"H3651\"* outermost|strong=\"H7020\"* in|strong=\"H5921\"* the|strong=\"H5921\"* second|strong=\"H8145\"* coupling|strong=\"H4225\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* fifty|strong=\"H2572\"* loops|strong=\"H3924\"* in|strong=\"H6213\"* the|strong=\"H6213\"* one|strong=\"H6213\"* curtain|strong=\"H3407\"*, and|strong=\"H2572\"* you|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* fifty|strong=\"H2572\"* loops|strong=\"H3924\"* in|strong=\"H6213\"* the|strong=\"H6213\"* edge|strong=\"H7097\"* of|strong=\"H7097\"* the|strong=\"H6213\"* curtain|strong=\"H3407\"* that|strong=\"H6213\"* is|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H6213\"* second|strong=\"H8145\"* coupling|strong=\"H4225\"*. The|strong=\"H6213\"* loops|strong=\"H3924\"* shall|strong=\"H6213\"* be opposite|strong=\"H6901\"* one|strong=\"H6213\"* another|strong=\"H8145\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* fifty|strong=\"H2572\"* clasps|strong=\"H7165\"* of|strong=\"H4908\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* couple|strong=\"H2266\"* the|strong=\"H6213\"* curtains|strong=\"H3407\"* to|strong=\"H1961\"* one|strong=\"H1961\"* another with|strong=\"H6213\"* the|strong=\"H6213\"* clasps|strong=\"H7165\"*. The|strong=\"H6213\"* tabernacle|strong=\"H4908\"* shall|strong=\"H6213\"* be|strong=\"H1961\"* a|strong=\"H3068\"* unit." + }, + { + "verseNum": 7, + "text": "“You|strong=\"H5921\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* curtains|strong=\"H3407\"* of|strong=\"H5921\"* goats|strong=\"H5795\"*’ hair for|strong=\"H5921\"* a|strong=\"H3068\"* covering over|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*. You|strong=\"H5921\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* eleven|strong=\"H6249\"* curtains|strong=\"H3407\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H4060\"* length of|strong=\"H7341\"* each curtain|strong=\"H3407\"* shall be|strong=\"H7970\"* thirty|strong=\"H7970\"* cubits, and|strong=\"H7970\"* the|strong=\"H4060\"* width|strong=\"H7341\"* of|strong=\"H7341\"* each curtain|strong=\"H3407\"* four cubits: the|strong=\"H4060\"* eleven|strong=\"H6249\"* curtains|strong=\"H3407\"* shall have one|strong=\"H7341\"* measure|strong=\"H4060\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H6440\"* shall|strong=\"H6440\"* couple|strong=\"H2266\"* five|strong=\"H2568\"* curtains|strong=\"H3407\"* by|strong=\"H6440\"* themselves|strong=\"H6440\"*, and|strong=\"H2568\"* six|strong=\"H8337\"* curtains|strong=\"H3407\"* by|strong=\"H6440\"* themselves|strong=\"H6440\"*, and|strong=\"H2568\"* shall|strong=\"H6440\"* double|strong=\"H3717\"* over|strong=\"H6440\"* the|strong=\"H6440\"* sixth|strong=\"H8345\"* curtain|strong=\"H3407\"* in|strong=\"H6440\"* the|strong=\"H6440\"* forefront|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* tent|strong=\"H3407\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H5921\"* shall|strong=\"H8193\"* make|strong=\"H6213\"* fifty|strong=\"H2572\"* loops|strong=\"H3924\"* on|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* of|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H6213\"* curtain|strong=\"H3407\"* that|strong=\"H6213\"* is|strong=\"H6213\"* outermost|strong=\"H7020\"* in|strong=\"H5921\"* the|strong=\"H5921\"* coupling|strong=\"H2279\"*, and|strong=\"H2572\"* fifty|strong=\"H2572\"* loops|strong=\"H3924\"* on|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* of|strong=\"H5921\"* the|strong=\"H5921\"* curtain|strong=\"H3407\"* which|strong=\"H3407\"* is|strong=\"H6213\"* outermost|strong=\"H7020\"* in|strong=\"H5921\"* the|strong=\"H5921\"* second|strong=\"H8145\"* coupling|strong=\"H2279\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* fifty|strong=\"H2572\"* clasps|strong=\"H7165\"* of|strong=\"H6213\"* bronze|strong=\"H5178\"*, and|strong=\"H2572\"* put|strong=\"H6213\"* the|strong=\"H6213\"* clasps|strong=\"H7165\"* into|strong=\"H6213\"* the|strong=\"H6213\"* loops|strong=\"H3924\"*, and|strong=\"H2572\"* couple|strong=\"H2266\"* the|strong=\"H6213\"* tent together|strong=\"H2266\"*, that|strong=\"H6213\"* it|strong=\"H6213\"* may|strong=\"H1961\"* be|strong=\"H1961\"* one|strong=\"H1961\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* overhanging part|strong=\"H2677\"* that|strong=\"H3407\"* remains of|strong=\"H5921\"* the|strong=\"H5921\"* curtains|strong=\"H3407\"* of|strong=\"H5921\"* the|strong=\"H5921\"* tent|strong=\"H3407\"*—the|strong=\"H5921\"* half|strong=\"H2677\"* curtain|strong=\"H3407\"* that|strong=\"H3407\"* remains—shall hang|strong=\"H5628\"* over|strong=\"H5921\"* the|strong=\"H5921\"* back of|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5921\"* cubit on|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H2088\"* side|strong=\"H6654\"* and|strong=\"H2088\"* the|strong=\"H5921\"* cubit on|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H2088\"* side|strong=\"H6654\"*, of|strong=\"H5921\"* that|strong=\"H2088\"* which|strong=\"H3407\"* remains|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* length|strong=\"H5921\"* of|strong=\"H5921\"* the|strong=\"H5921\"* curtains|strong=\"H3407\"* of|strong=\"H5921\"* the|strong=\"H5921\"* tent|strong=\"H3407\"*, shall|strong=\"H2088\"* hang|strong=\"H5628\"* over|strong=\"H5921\"* the|strong=\"H5921\"* sides|strong=\"H6654\"* of|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"* on|strong=\"H5921\"* this|strong=\"H2088\"* side|strong=\"H6654\"* and|strong=\"H2088\"* on|strong=\"H5921\"* that|strong=\"H2088\"* side|strong=\"H6654\"*, to|strong=\"H1961\"* cover|strong=\"H3680\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* covering|strong=\"H4372\"* for|strong=\"H6213\"* the|strong=\"H6213\"* tent of|strong=\"H4372\"* rams’ skins|strong=\"H5785\"* dyed|strong=\"H5785\"* red, and|strong=\"H6213\"* a|strong=\"H3068\"* covering|strong=\"H4372\"* of|strong=\"H4372\"* sea cow hides|strong=\"H5785\"* above|strong=\"H4605\"*." + }, + { + "verseNum": 15, + "text": "“You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* the|strong=\"H6213\"* boards|strong=\"H7175\"* for|strong=\"H6213\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"* of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, standing|strong=\"H5975\"* upright|strong=\"H5975\"*." + }, + { + "verseNum": 16, + "text": "Ten|strong=\"H6235\"* cubits shall|strong=\"H7175\"* be the|strong=\"H2677\"* length of|strong=\"H2677\"* a|strong=\"H3068\"* board|strong=\"H7175\"*, and|strong=\"H7341\"* one|strong=\"H7341\"* and|strong=\"H7341\"* a|strong=\"H3068\"* half|strong=\"H2677\"* cubits the|strong=\"H2677\"* width|strong=\"H7341\"* of|strong=\"H2677\"* each|strong=\"H7175\"* board|strong=\"H7175\"*." + }, + { + "verseNum": 17, + "text": "There|strong=\"H3605\"* shall|strong=\"H3027\"* be|strong=\"H3027\"* two|strong=\"H8147\"* tenons|strong=\"H3027\"* in|strong=\"H6213\"* each|strong=\"H3605\"* board|strong=\"H7175\"*, joined to|strong=\"H6213\"* one|strong=\"H3605\"* another: thus|strong=\"H3651\"* you|strong=\"H3605\"* shall|strong=\"H3027\"* make|strong=\"H6213\"* for|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* boards|strong=\"H7175\"* of|strong=\"H3027\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H6213\"* shall|strong=\"H5045\"* make|strong=\"H6213\"* twenty|strong=\"H6242\"* boards|strong=\"H7175\"* for|strong=\"H6213\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"*, for|strong=\"H6213\"* the|strong=\"H6213\"* south|strong=\"H5045\"* side|strong=\"H6285\"* southward|strong=\"H5045\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H6213\"* shall|strong=\"H3027\"* make|strong=\"H6213\"* forty sockets of|strong=\"H3027\"* silver|strong=\"H3701\"* under|strong=\"H8478\"* the|strong=\"H6213\"* twenty|strong=\"H6242\"* boards|strong=\"H7175\"*; two|strong=\"H8147\"* sockets under|strong=\"H8478\"* one|strong=\"H6213\"* board|strong=\"H7175\"* for|strong=\"H6213\"* its|strong=\"H6213\"* two|strong=\"H8147\"* tenons|strong=\"H3027\"*, and|strong=\"H6242\"* two|strong=\"H8147\"* sockets under|strong=\"H8478\"* another board|strong=\"H7175\"* for|strong=\"H6213\"* its|strong=\"H6213\"* two|strong=\"H8147\"* tenons|strong=\"H3027\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"H4908\"* the|strong=\"H8145\"* second|strong=\"H8145\"* side|strong=\"H6285\"* of|strong=\"H4908\"* the|strong=\"H8145\"* tabernacle|strong=\"H4908\"*, on|strong=\"H6285\"* the|strong=\"H8145\"* north|strong=\"H6828\"* side|strong=\"H6285\"*, twenty|strong=\"H6242\"* boards|strong=\"H7175\"*," + }, + { + "verseNum": 21, + "text": "and|strong=\"H3701\"* their|strong=\"H8478\"* forty sockets of|strong=\"H8478\"* silver|strong=\"H3701\"*; two|strong=\"H8147\"* sockets under|strong=\"H8478\"* one|strong=\"H8147\"* board|strong=\"H7175\"*, and|strong=\"H3701\"* two|strong=\"H8147\"* sockets under|strong=\"H8478\"* another board|strong=\"H7175\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"H6213\"* the|strong=\"H6213\"* far|strong=\"H3411\"* side|strong=\"H3220\"* of|strong=\"H3220\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"* westward|strong=\"H3220\"* you|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* six|strong=\"H8337\"* boards|strong=\"H7175\"*." + }, + { + "verseNum": 23, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* two|strong=\"H8147\"* boards|strong=\"H7175\"* for|strong=\"H6213\"* the|strong=\"H6213\"* corners|strong=\"H4742\"* of|strong=\"H8147\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"* in|strong=\"H6213\"* the|strong=\"H6213\"* far|strong=\"H3411\"* side|strong=\"H8147\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H3651\"* shall|strong=\"H8147\"* be|strong=\"H1961\"* double|strong=\"H8147\"* beneath|strong=\"H4295\"*, and|strong=\"H7218\"* in|strong=\"H5921\"* the|strong=\"H5921\"* same|strong=\"H3651\"* way|strong=\"H3651\"* they|strong=\"H3651\"* shall|strong=\"H8147\"* be|strong=\"H1961\"* whole to|strong=\"H1961\"* its|strong=\"H5921\"* top|strong=\"H7218\"* to|strong=\"H1961\"* one|strong=\"H1961\"* ring|strong=\"H2885\"*: thus|strong=\"H3651\"* shall|strong=\"H8147\"* it|strong=\"H5921\"* be|strong=\"H1961\"* for|strong=\"H5921\"* them|strong=\"H5921\"* both|strong=\"H8147\"*; they|strong=\"H3651\"* shall|strong=\"H8147\"* be|strong=\"H1961\"* for|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* corners|strong=\"H4740\"*." + }, + { + "verseNum": 25, + "text": "There|strong=\"H1961\"* shall|strong=\"H8478\"* be|strong=\"H1961\"* eight|strong=\"H8083\"* boards|strong=\"H7175\"*, and|strong=\"H3701\"* their|strong=\"H1961\"* sockets of|strong=\"H8478\"* silver|strong=\"H3701\"*, sixteen|strong=\"H8337\"* sockets; two|strong=\"H8147\"* sockets under|strong=\"H8478\"* one|strong=\"H1961\"* board|strong=\"H7175\"*, and|strong=\"H3701\"* two|strong=\"H8147\"* sockets under|strong=\"H8478\"* another board|strong=\"H7175\"*." + }, + { + "verseNum": 26, + "text": "“You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* bars|strong=\"H1280\"* of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*: five|strong=\"H2568\"* for|strong=\"H6213\"* the|strong=\"H6213\"* boards|strong=\"H7175\"* of|strong=\"H6086\"* the|strong=\"H6213\"* one|strong=\"H6213\"* side|strong=\"H6763\"* of|strong=\"H6086\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"*," + }, + { + "verseNum": 27, + "text": "and|strong=\"H2568\"* five|strong=\"H2568\"* bars|strong=\"H1280\"* for|strong=\"H4908\"* the|strong=\"H8145\"* boards|strong=\"H7175\"* of|strong=\"H3220\"* the|strong=\"H8145\"* other|strong=\"H8145\"* side|strong=\"H6763\"* of|strong=\"H3220\"* the|strong=\"H8145\"* tabernacle|strong=\"H4908\"*, and|strong=\"H2568\"* five|strong=\"H2568\"* bars|strong=\"H1280\"* for|strong=\"H4908\"* the|strong=\"H8145\"* boards|strong=\"H7175\"* of|strong=\"H3220\"* the|strong=\"H8145\"* side|strong=\"H6763\"* of|strong=\"H3220\"* the|strong=\"H8145\"* tabernacle|strong=\"H4908\"*, for|strong=\"H4908\"* the|strong=\"H8145\"* far|strong=\"H3411\"* side|strong=\"H6763\"* westward|strong=\"H3220\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H8432\"* middle|strong=\"H8432\"* bar|strong=\"H1280\"* in|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H4480\"* the|strong=\"H8432\"* boards|strong=\"H7175\"* shall|strong=\"H7175\"* pass|strong=\"H1272\"* through|strong=\"H4480\"* from|strong=\"H4480\"* end|strong=\"H7097\"* to|strong=\"H1272\"* end|strong=\"H7097\"*." + }, + { + "verseNum": 29, + "text": "You|strong=\"H6213\"* shall|strong=\"H1004\"* overlay|strong=\"H6823\"* the|strong=\"H6213\"* boards|strong=\"H7175\"* with|strong=\"H1004\"* gold|strong=\"H2091\"*, and|strong=\"H1004\"* make|strong=\"H6213\"* their|strong=\"H6213\"* rings|strong=\"H2885\"* of|strong=\"H1004\"* gold|strong=\"H2091\"* for|strong=\"H6213\"* places|strong=\"H1004\"* for|strong=\"H6213\"* the|strong=\"H6213\"* bars|strong=\"H1280\"*. You|strong=\"H6213\"* shall|strong=\"H1004\"* overlay|strong=\"H6823\"* the|strong=\"H6213\"* bars|strong=\"H1280\"* with|strong=\"H1004\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 30, + "text": "You|strong=\"H7200\"* shall|strong=\"H2022\"* set|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H7200\"* tabernacle|strong=\"H4908\"* according|strong=\"H4941\"* to|strong=\"H6965\"* the|strong=\"H7200\"* way|strong=\"H4941\"* that|strong=\"H7200\"* it|strong=\"H7200\"* was|strong=\"H4908\"* shown|strong=\"H7200\"* to|strong=\"H6965\"* you|strong=\"H7200\"* on|strong=\"H7200\"* the|strong=\"H7200\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 31, + "text": "“You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* veil|strong=\"H6532\"* of|strong=\"H4639\"* blue|strong=\"H8504\"*, and|strong=\"H8504\"* purple|strong=\"H8504\"*, and|strong=\"H8504\"* scarlet|strong=\"H8144\"*, and|strong=\"H8504\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, with|strong=\"H6213\"* cherubim|strong=\"H3742\"*. It|strong=\"H6213\"* shall|strong=\"H6213\"* be the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* a|strong=\"H3068\"* skillful|strong=\"H2803\"* workman|strong=\"H2803\"*." + }, + { + "verseNum": 32, + "text": "You|strong=\"H5414\"* shall|strong=\"H3701\"* hang|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* four pillars|strong=\"H5982\"* of|strong=\"H5982\"* acacia|strong=\"H7848\"* overlaid|strong=\"H6823\"* with|strong=\"H5921\"* gold|strong=\"H2091\"*; their|strong=\"H5414\"* hooks|strong=\"H2053\"* shall|strong=\"H3701\"* be|strong=\"H5414\"* of|strong=\"H5982\"* gold|strong=\"H2091\"*, on|strong=\"H5921\"* four sockets of|strong=\"H5982\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 33, + "text": "You|strong=\"H5414\"* shall|strong=\"H1004\"* hang|strong=\"H5414\"* up|strong=\"H5414\"* the|strong=\"H5414\"* veil|strong=\"H6532\"* under|strong=\"H8478\"* the|strong=\"H5414\"* clasps|strong=\"H7165\"*, and|strong=\"H1004\"* shall|strong=\"H1004\"* bring|strong=\"H5414\"* the|strong=\"H5414\"* ark of|strong=\"H1004\"* the|strong=\"H5414\"* covenant in|strong=\"H1004\"* there|strong=\"H8033\"* within|strong=\"H1004\"* the|strong=\"H5414\"* veil|strong=\"H6532\"*. The|strong=\"H5414\"* veil|strong=\"H6532\"* shall|strong=\"H1004\"* separate the|strong=\"H5414\"* holy|strong=\"H6944\"* place|strong=\"H8478\"* from|strong=\"H8478\"* the|strong=\"H5414\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* for|strong=\"H8478\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 34, + "text": "You|strong=\"H5414\"* shall put|strong=\"H5414\"* the|strong=\"H5921\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* on|strong=\"H5921\"* the|strong=\"H5921\"* ark of|strong=\"H5921\"* the|strong=\"H5921\"* covenant in|strong=\"H5921\"* the|strong=\"H5921\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* place|strong=\"H5414\"*." + }, + { + "verseNum": 35, + "text": "You|strong=\"H5414\"* shall|strong=\"H6828\"* set|strong=\"H7760\"* the|strong=\"H5921\"* table|strong=\"H7979\"* outside|strong=\"H2351\"* the|strong=\"H5921\"* veil|strong=\"H6532\"*, and|strong=\"H4908\"* the|strong=\"H5921\"* lamp stand opposite|strong=\"H5227\"* the|strong=\"H5921\"* table|strong=\"H7979\"* on|strong=\"H5921\"* the|strong=\"H5921\"* side|strong=\"H6763\"* of|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* south|strong=\"H8486\"*. You|strong=\"H5414\"* shall|strong=\"H6828\"* put|strong=\"H5414\"* the|strong=\"H5921\"* table|strong=\"H7979\"* on|strong=\"H5921\"* the|strong=\"H5921\"* north|strong=\"H6828\"* side|strong=\"H6763\"*." + }, + { + "verseNum": 36, + "text": "“You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* screen|strong=\"H4539\"* for|strong=\"H6213\"* the|strong=\"H6213\"* door|strong=\"H6607\"* of|strong=\"H4639\"* the|strong=\"H6213\"* Tent, of|strong=\"H4639\"* blue|strong=\"H8504\"*, and|strong=\"H8504\"* purple|strong=\"H8504\"*, and|strong=\"H8504\"* scarlet|strong=\"H8144\"*, and|strong=\"H8504\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* the|strong=\"H6213\"* embroiderer|strong=\"H7551\"*." + }, + { + "verseNum": 37, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* for|strong=\"H6213\"* the|strong=\"H6213\"* screen|strong=\"H4539\"* five|strong=\"H2568\"* pillars|strong=\"H5982\"* of|strong=\"H5982\"* acacia|strong=\"H7848\"*, and|strong=\"H2091\"* overlay|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H6213\"* gold|strong=\"H2091\"*. Their|strong=\"H6213\"* hooks|strong=\"H2053\"* shall|strong=\"H6213\"* be of|strong=\"H5982\"* gold|strong=\"H2091\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* cast|strong=\"H3332\"* five|strong=\"H2568\"* sockets of|strong=\"H5982\"* bronze|strong=\"H5178\"* for|strong=\"H6213\"* them|strong=\"H6213\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "“You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* the|strong=\"H6213\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, five|strong=\"H2568\"* cubits|strong=\"H2568\"*+ 27:1 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* long, and|strong=\"H6086\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"* wide|strong=\"H7341\"*. The|strong=\"H6213\"* altar|strong=\"H4196\"* shall|strong=\"H6213\"* be|strong=\"H1961\"* square|strong=\"H7251\"*. Its|strong=\"H6213\"* height|strong=\"H6967\"* shall|strong=\"H6213\"* be|strong=\"H1961\"* three|strong=\"H7969\"* cubits|strong=\"H2568\"*.+ 27:1 The altar was to be about 2.3×2.3×1.4 meters or about 7½×7½×4½ feet.*" + }, + { + "verseNum": 2, + "text": "You|strong=\"H5921\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* its|strong=\"H5921\"* horns|strong=\"H7161\"* on|strong=\"H5921\"* its|strong=\"H5921\"* four corners|strong=\"H6438\"*. Its|strong=\"H5921\"* horns|strong=\"H7161\"* shall|strong=\"H6213\"* be|strong=\"H1961\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece with|strong=\"H6213\"* it|strong=\"H5921\"*. You|strong=\"H5921\"* shall|strong=\"H6213\"* overlay|strong=\"H6823\"* it|strong=\"H5921\"* with|strong=\"H6213\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3605\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* its|strong=\"H3605\"* pots|strong=\"H5518\"* to|strong=\"H6213\"* take|strong=\"H6213\"* away|strong=\"H3605\"* its|strong=\"H3605\"* ashes|strong=\"H1878\"*; and|strong=\"H6213\"* its|strong=\"H3605\"* shovels|strong=\"H3257\"*, its|strong=\"H3605\"* basins|strong=\"H4219\"*, its|strong=\"H3605\"* meat hooks|strong=\"H4207\"*, and|strong=\"H6213\"* its|strong=\"H3605\"* fire pans|strong=\"H5518\"*. You|strong=\"H3605\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H5921\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* grating|strong=\"H4345\"* for|strong=\"H5921\"* it|strong=\"H5921\"* of|strong=\"H5921\"* network|strong=\"H7568\"* of|strong=\"H5921\"* bronze|strong=\"H5178\"*. On|strong=\"H5921\"* the|strong=\"H5921\"* net|strong=\"H7568\"* you|strong=\"H5921\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* four bronze|strong=\"H5178\"* rings|strong=\"H2885\"* in|strong=\"H5921\"* its|strong=\"H5921\"* four corners|strong=\"H7098\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H5414\"* shall|strong=\"H8478\"* put|strong=\"H5414\"* it|strong=\"H5414\"* under|strong=\"H8478\"* the|strong=\"H5414\"* ledge|strong=\"H3749\"* around the|strong=\"H5414\"* altar|strong=\"H4196\"* beneath|strong=\"H8478\"*, that|strong=\"H5414\"* the|strong=\"H5414\"* net|strong=\"H7568\"* may|strong=\"H1961\"* reach|strong=\"H1961\"* halfway|strong=\"H2677\"* up|strong=\"H5414\"* the|strong=\"H5414\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* poles for|strong=\"H6213\"* the|strong=\"H6213\"* altar|strong=\"H4196\"*, poles of|strong=\"H4196\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, and|strong=\"H6086\"* overlay|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H6213\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 7, + "text": "Its|strong=\"H5921\"* poles shall|strong=\"H8147\"* be|strong=\"H1961\"* put|strong=\"H8147\"* into|strong=\"H5921\"* the|strong=\"H5921\"* rings|strong=\"H2885\"*, and|strong=\"H4196\"* the|strong=\"H5921\"* poles shall|strong=\"H8147\"* be|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* sides|strong=\"H6763\"* of|strong=\"H4196\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* when|strong=\"H1961\"* carrying|strong=\"H5375\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H6213\"* shall|strong=\"H2022\"* make|strong=\"H6213\"* it|strong=\"H6213\"* hollow|strong=\"H5014\"* with|strong=\"H6213\"* planks|strong=\"H3871\"*. They|strong=\"H3651\"* shall|strong=\"H2022\"* make|strong=\"H6213\"* it|strong=\"H6213\"* as|strong=\"H6213\"* it|strong=\"H6213\"* has|strong=\"H6213\"* been shown|strong=\"H7200\"* you|strong=\"H6213\"* on|strong=\"H7200\"* the|strong=\"H7200\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 9, + "text": "“You|strong=\"H6213\"* shall|strong=\"H5045\"* make|strong=\"H6213\"* the|strong=\"H6213\"* court|strong=\"H2691\"* of|strong=\"H5045\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"*: for|strong=\"H6213\"* the|strong=\"H6213\"* south|strong=\"H5045\"* side|strong=\"H6285\"* southward|strong=\"H5045\"* there shall|strong=\"H5045\"* be hangings|strong=\"H7050\"* for|strong=\"H6213\"* the|strong=\"H6213\"* court|strong=\"H2691\"* of|strong=\"H5045\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"* one|strong=\"H6213\"* hundred|strong=\"H3967\"* cubits long for|strong=\"H6213\"* one|strong=\"H6213\"* side|strong=\"H6285\"*." + }, + { + "verseNum": 10, + "text": "Its pillars|strong=\"H5982\"* shall|strong=\"H3701\"* be|strong=\"H3701\"* twenty|strong=\"H6242\"*, and|strong=\"H6242\"* their sockets twenty|strong=\"H6242\"*, of|strong=\"H5982\"* bronze|strong=\"H5178\"*. The hooks|strong=\"H2053\"* of|strong=\"H5982\"* the pillars|strong=\"H5982\"* and|strong=\"H6242\"* their fillets|strong=\"H2838\"* shall|strong=\"H3701\"* be|strong=\"H3701\"* of|strong=\"H5982\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 11, + "text": "Likewise|strong=\"H3651\"* for|strong=\"H3701\"* the|strong=\"H3651\"* length of|strong=\"H5982\"* the|strong=\"H3651\"* north|strong=\"H6828\"* side|strong=\"H6285\"*, there shall|strong=\"H6828\"* be|strong=\"H3701\"* hangings|strong=\"H7050\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits long, and|strong=\"H3967\"* its pillars|strong=\"H5982\"* twenty|strong=\"H6242\"*, and|strong=\"H3967\"* their|strong=\"H3651\"* sockets twenty|strong=\"H6242\"*, of|strong=\"H5982\"* bronze|strong=\"H5178\"*; the|strong=\"H3651\"* hooks|strong=\"H2053\"* of|strong=\"H5982\"* the|strong=\"H3651\"* pillars|strong=\"H5982\"*, and|strong=\"H3967\"* their|strong=\"H3651\"* fillets|strong=\"H2838\"*, of|strong=\"H5982\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3220\"* the|strong=\"H3220\"* width|strong=\"H7341\"* of|strong=\"H5982\"* the|strong=\"H3220\"* court|strong=\"H2691\"* on|strong=\"H6285\"* the|strong=\"H3220\"* west|strong=\"H3220\"* side|strong=\"H6285\"* shall|strong=\"H6285\"* be|strong=\"H3220\"* hangings|strong=\"H7050\"* of|strong=\"H5982\"* fifty|strong=\"H2572\"* cubits; their pillars|strong=\"H5982\"* ten|strong=\"H6235\"*, and|strong=\"H2572\"* their sockets ten|strong=\"H6235\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H6924\"* width|strong=\"H7341\"* of|strong=\"H7341\"* the|strong=\"H6924\"* court|strong=\"H2691\"* on|strong=\"H6285\"* the|strong=\"H6924\"* east|strong=\"H4217\"* side|strong=\"H6285\"* eastward|strong=\"H6924\"* shall|strong=\"H6285\"* be fifty|strong=\"H2572\"* cubits." + }, + { + "verseNum": 14, + "text": "The|strong=\"H7969\"* hangings|strong=\"H7050\"* for|strong=\"H7969\"* the|strong=\"H7969\"* one|strong=\"H7050\"* side|strong=\"H3802\"* of|strong=\"H5982\"* the|strong=\"H7969\"* gate shall be fifteen|strong=\"H2568\"* cubits|strong=\"H2568\"*; their pillars|strong=\"H5982\"* three|strong=\"H7969\"*, and|strong=\"H2568\"* their sockets three|strong=\"H7969\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H8145\"* the|strong=\"H8145\"* other|strong=\"H8145\"* side|strong=\"H3802\"* shall be hangings|strong=\"H7050\"* of|strong=\"H5982\"* fifteen|strong=\"H2568\"* cubits|strong=\"H2568\"*; their pillars|strong=\"H5982\"* three|strong=\"H7969\"*, and|strong=\"H2568\"* their sockets three|strong=\"H7969\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H4639\"* the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* the|strong=\"H8179\"* court|strong=\"H2691\"* shall|strong=\"H4639\"* be a|strong=\"H3068\"* screen|strong=\"H4539\"* of|strong=\"H8179\"* twenty|strong=\"H6242\"* cubits, of|strong=\"H8179\"* blue|strong=\"H8504\"*, and|strong=\"H6242\"* purple|strong=\"H8504\"*, and|strong=\"H6242\"* scarlet|strong=\"H8144\"*, and|strong=\"H6242\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, the|strong=\"H8179\"* work|strong=\"H4639\"* of|strong=\"H8179\"* the|strong=\"H8179\"* embroiderer|strong=\"H7551\"*; their pillars|strong=\"H5982\"* four, and|strong=\"H6242\"* their sockets four." + }, + { + "verseNum": 17, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* pillars|strong=\"H5982\"* of|strong=\"H5982\"* the|strong=\"H3605\"* court|strong=\"H2691\"* around|strong=\"H5439\"* shall|strong=\"H3701\"* be|strong=\"H3701\"* filleted|strong=\"H2836\"* with|strong=\"H3605\"* silver|strong=\"H3701\"*; their|strong=\"H3605\"* hooks|strong=\"H2053\"* of|strong=\"H5982\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* their|strong=\"H3605\"* sockets of|strong=\"H5982\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3967\"* length|strong=\"H6967\"* of|strong=\"H7341\"* the|strong=\"H3967\"* court|strong=\"H2691\"* shall|strong=\"H3967\"* be one|strong=\"H8336\"* hundred|strong=\"H3967\"* cubits|strong=\"H2568\"*, and|strong=\"H3967\"* the|strong=\"H3967\"* width|strong=\"H7341\"* fifty|strong=\"H2572\"* throughout|strong=\"H7341\"*, and|strong=\"H3967\"* the|strong=\"H3967\"* height|strong=\"H6967\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*, of|strong=\"H7341\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, and|strong=\"H3967\"* their sockets of|strong=\"H7341\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 19, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* instruments|strong=\"H3627\"* of|strong=\"H3627\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* in|strong=\"H3627\"* all|strong=\"H3605\"* its|strong=\"H3605\"* service|strong=\"H5656\"*, and|strong=\"H5178\"* all|strong=\"H3605\"* its|strong=\"H3605\"* pins|strong=\"H3489\"*, and|strong=\"H5178\"* all|strong=\"H3605\"* the|strong=\"H3605\"* pins|strong=\"H3489\"* of|strong=\"H3627\"* the|strong=\"H3605\"* court|strong=\"H2691\"*, shall|strong=\"H3627\"* be|strong=\"H5656\"* of|strong=\"H3627\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 20, + "text": "“You|strong=\"H6680\"* shall|strong=\"H1121\"* command|strong=\"H6680\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H3478\"* they|strong=\"H3478\"* bring|strong=\"H5927\"* to|strong=\"H3478\"* you|strong=\"H6680\"* pure|strong=\"H2134\"* olive|strong=\"H2132\"* oil|strong=\"H8081\"* beaten|strong=\"H3795\"* for|strong=\"H1121\"* the|strong=\"H3947\"* light|strong=\"H3974\"*, to|strong=\"H3478\"* cause a|strong=\"H3068\"* lamp|strong=\"H5216\"* to|strong=\"H3478\"* burn|strong=\"H5927\"* continually|strong=\"H8548\"*." + }, + { + "verseNum": 21, + "text": "In|strong=\"H5921\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, outside|strong=\"H2351\"* the|strong=\"H6440\"* veil|strong=\"H6532\"* which|strong=\"H3068\"* is|strong=\"H3068\"* before|strong=\"H6440\"* the|strong=\"H6440\"* covenant, Aaron|strong=\"H6186\"* and|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"* shall|strong=\"H3068\"* keep|strong=\"H6186\"* it|strong=\"H5921\"* in|strong=\"H5921\"* order|strong=\"H6186\"* from|strong=\"H6440\"* evening|strong=\"H6153\"* to|strong=\"H5704\"* morning|strong=\"H1242\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*: it|strong=\"H5921\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* throughout|strong=\"H1755\"* their|strong=\"H3068\"* generations|strong=\"H1755\"* on|strong=\"H5921\"* the|strong=\"H6440\"* behalf|strong=\"H5921\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "“Bring|strong=\"H7126\"* Aaron your|strong=\"H7126\"* brother, and|strong=\"H1121\"* his|strong=\"H7126\"* sons|strong=\"H1121\"* with|strong=\"H3478\"* him|strong=\"H7126\"*, near|strong=\"H7126\"* to|strong=\"H3478\"* you|strong=\"H8432\"* from|strong=\"H3478\"* among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H3478\"* he|strong=\"H3478\"* may|strong=\"H3478\"* minister|strong=\"H3547\"* to|strong=\"H3478\"* me|strong=\"H1121\"* in|strong=\"H3478\"* the|strong=\"H8432\"* priest|strong=\"H3547\"*’s office: Aaron, with|strong=\"H3478\"* Nadab|strong=\"H5070\"*, Abihu, Eleazar, and|strong=\"H1121\"* Ithamar, Aaron’s sons|strong=\"H1121\"*." + }, + { + "verseNum": 2, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* holy|strong=\"H6944\"* garments for|strong=\"H6213\"* Aaron your|strong=\"H6213\"* brother, for|strong=\"H6213\"* glory|strong=\"H3519\"* and|strong=\"H6213\"* for|strong=\"H6213\"* beauty|strong=\"H8597\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3605\"* shall|strong=\"H3820\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H2450\"* wise-hearted, whom I|strong=\"H3605\"* have|strong=\"H3605\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* the|strong=\"H3605\"* spirit|strong=\"H7307\"* of|strong=\"H7307\"* wisdom|strong=\"H2451\"*, that|strong=\"H3605\"* they|strong=\"H6213\"* make|strong=\"H6213\"* Aaron’s garments to|strong=\"H1696\"* sanctify|strong=\"H6942\"* him|strong=\"H6213\"*, that|strong=\"H3605\"* he|strong=\"H6213\"* may|strong=\"H6213\"* minister|strong=\"H3547\"* to|strong=\"H1696\"* me|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H3605\"* priest|strong=\"H3547\"*’s office." + }, + { + "verseNum": 4, + "text": "These|strong=\"H6213\"* are|strong=\"H1121\"* the|strong=\"H6213\"* garments|strong=\"H3801\"* which they|strong=\"H6213\"* shall|strong=\"H1121\"* make|strong=\"H6213\"*: a|strong=\"H3068\"* breastplate|strong=\"H2833\"*, an|strong=\"H6213\"* ephod, a|strong=\"H3068\"* robe|strong=\"H4598\"*, a|strong=\"H3068\"* fitted tunic|strong=\"H3801\"*, a|strong=\"H3068\"* turban|strong=\"H4701\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* sash. They|strong=\"H6213\"* shall|strong=\"H1121\"* make|strong=\"H6213\"* holy|strong=\"H6944\"* garments|strong=\"H3801\"* for|strong=\"H6213\"* Aaron your|strong=\"H6213\"* brother and|strong=\"H1121\"* his|strong=\"H6213\"* sons|strong=\"H1121\"*, that|strong=\"H1121\"* he|strong=\"H6213\"* may|strong=\"H6213\"* minister|strong=\"H3547\"* to|strong=\"H6213\"* me|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H6213\"* priest|strong=\"H3547\"*’s office." + }, + { + "verseNum": 5, + "text": "They|strong=\"H1992\"* shall|strong=\"H8438\"* use|strong=\"H3947\"* the|strong=\"H3947\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* the|strong=\"H3947\"* blue|strong=\"H8504\"*, and|strong=\"H2091\"* the|strong=\"H3947\"* purple|strong=\"H8504\"*, and|strong=\"H2091\"* the|strong=\"H3947\"* scarlet|strong=\"H8144\"*, and|strong=\"H2091\"* the|strong=\"H3947\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"*." + }, + { + "verseNum": 6, + "text": "“They|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* the|strong=\"H6213\"* ephod of|strong=\"H4639\"* gold|strong=\"H2091\"*, blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, and|strong=\"H2091\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* the|strong=\"H6213\"* skillful|strong=\"H2803\"* workman|strong=\"H2803\"*." + }, + { + "verseNum": 7, + "text": "It|strong=\"H1961\"* shall|strong=\"H8147\"* have|strong=\"H1961\"* two|strong=\"H8147\"* shoulder|strong=\"H3802\"* straps joined|strong=\"H2266\"* to|strong=\"H1961\"* the|strong=\"H1961\"* two|strong=\"H8147\"* ends|strong=\"H7098\"* of|strong=\"H8147\"* it|strong=\"H1961\"*, that|strong=\"H1961\"* it|strong=\"H1961\"* may|strong=\"H1961\"* be|strong=\"H1961\"* joined|strong=\"H2266\"* together|strong=\"H2266\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* skillfully|strong=\"H2805\"* woven|strong=\"H2805\"* band|strong=\"H2805\"*, which|strong=\"H2091\"* is|strong=\"H1961\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, shall|strong=\"H4639\"* be|strong=\"H1961\"* like|strong=\"H1961\"* its|strong=\"H5921\"* work|strong=\"H4639\"* and|strong=\"H2091\"* of|strong=\"H4480\"* the|strong=\"H5921\"* same|strong=\"H4480\"* piece; of|strong=\"H4480\"* gold|strong=\"H2091\"*, blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, and|strong=\"H2091\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H5921\"* shall|strong=\"H1121\"* take|strong=\"H3947\"* two|strong=\"H8147\"* onyx|strong=\"H7718\"* stones, and|strong=\"H1121\"* engrave|strong=\"H6605\"* on|strong=\"H5921\"* them|strong=\"H5921\"* the|strong=\"H5921\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 10, + "text": "Six|strong=\"H8337\"* of|strong=\"H8034\"* their|strong=\"H5921\"* names|strong=\"H8034\"* on|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H8034\"* stone, and|strong=\"H8034\"* the|strong=\"H5921\"* names|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H5921\"* six|strong=\"H8337\"* that|strong=\"H5921\"* remain|strong=\"H3498\"* on|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H8145\"* stone, in|strong=\"H5921\"* the|strong=\"H5921\"* order|strong=\"H8435\"* of|strong=\"H8034\"* their|strong=\"H5921\"* birth|strong=\"H8435\"*." + }, + { + "verseNum": 11, + "text": "With|strong=\"H6213\"* the|strong=\"H5921\"* work|strong=\"H4639\"* of|strong=\"H1121\"* an|strong=\"H6213\"* engraver|strong=\"H2796\"* in|strong=\"H5921\"* stone, like|strong=\"H3478\"* the|strong=\"H5921\"* engravings|strong=\"H6603\"* of|strong=\"H1121\"* a|strong=\"H3068\"* signet|strong=\"H2368\"*, you|strong=\"H5921\"* shall|strong=\"H1121\"* engrave|strong=\"H6605\"* the|strong=\"H5921\"* two|strong=\"H8147\"* stones, according|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H5921\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. You|strong=\"H5921\"* shall|strong=\"H1121\"* make|strong=\"H6213\"* them|strong=\"H5921\"* to|strong=\"H3478\"* be|strong=\"H1121\"* enclosed in|strong=\"H5921\"* settings|strong=\"H4142\"* of|strong=\"H1121\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* put|strong=\"H7760\"* the|strong=\"H6440\"* two|strong=\"H8147\"* stones on|strong=\"H5921\"* the|strong=\"H6440\"* shoulder|strong=\"H3802\"* straps of|strong=\"H1121\"* the|strong=\"H6440\"* ephod, to|strong=\"H3478\"* be|strong=\"H3068\"* stones of|strong=\"H1121\"* memorial|strong=\"H2146\"* for|strong=\"H5921\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Aaron shall|strong=\"H3068\"* bear|strong=\"H5375\"* their|strong=\"H3068\"* names|strong=\"H8034\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* on|strong=\"H5921\"* his|strong=\"H5375\"* two|strong=\"H8147\"* shoulders|strong=\"H3802\"* for|strong=\"H5921\"* a|strong=\"H3068\"* memorial|strong=\"H2146\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* settings|strong=\"H4865\"* of|strong=\"H6213\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H2091\"* two|strong=\"H8147\"* chains|strong=\"H8333\"* of|strong=\"H5921\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*; you|strong=\"H5414\"* shall|strong=\"H2889\"* make|strong=\"H6213\"* them|strong=\"H5414\"* like|strong=\"H6213\"* cords|strong=\"H5688\"* of|strong=\"H5921\"* braided|strong=\"H4639\"* work|strong=\"H4639\"*. You|strong=\"H5414\"* shall|strong=\"H2889\"* put|strong=\"H5414\"* the|strong=\"H5921\"* braided|strong=\"H4639\"* chains|strong=\"H8333\"* on|strong=\"H5921\"* the|strong=\"H5921\"* settings|strong=\"H4865\"*." + }, + { + "verseNum": 15, + "text": "“You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* breastplate|strong=\"H2833\"* of|strong=\"H4639\"* judgment|strong=\"H4941\"*, the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* the|strong=\"H6213\"* skillful|strong=\"H2803\"* workman|strong=\"H2803\"*; like|strong=\"H2803\"* the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* the|strong=\"H6213\"* ephod you|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* it|strong=\"H6213\"*; of|strong=\"H4639\"* gold|strong=\"H2091\"*, of|strong=\"H4639\"* blue|strong=\"H8504\"*, and|strong=\"H4941\"* purple|strong=\"H8504\"*, and|strong=\"H4941\"* scarlet|strong=\"H8144\"*, and|strong=\"H4941\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, you|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 16, + "text": "It|strong=\"H1961\"* shall be|strong=\"H1961\"* square|strong=\"H7251\"* and|strong=\"H7341\"* folded|strong=\"H3717\"* double|strong=\"H3717\"*; a|strong=\"H3068\"* span|strong=\"H2239\"*+ 28:16 A span is the length from the tip of a man’s thumb to the tip of his little finger when his hand is stretched out (about half a cubit, or 9 inches, or 22.8 cm.)* shall be|strong=\"H1961\"* its|strong=\"H1961\"* length, and|strong=\"H7341\"* a|strong=\"H3068\"* span|strong=\"H2239\"* its|strong=\"H1961\"* width|strong=\"H7341\"*." + }, + { + "verseNum": 17, + "text": "You shall set|strong=\"H4390\"* in it settings|strong=\"H4390\"* of|strong=\"H4390\"* stones, four rows|strong=\"H2905\"* of|strong=\"H4390\"* stones: a|strong=\"H3068\"* row|strong=\"H2905\"* of|strong=\"H4390\"* ruby, topaz|strong=\"H6357\"*, and|strong=\"H6357\"* beryl shall be the|strong=\"H4390\"* first row|strong=\"H2905\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H8145\"* the|strong=\"H8145\"* second|strong=\"H8145\"* row|strong=\"H2905\"* a|strong=\"H3068\"* turquoise|strong=\"H5306\"*, a|strong=\"H3068\"* sapphire|strong=\"H5601\"*,+ 28:18 or, lapis lazuli * and|strong=\"H8145\"* an emerald|strong=\"H5306\"*;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H7992\"* the|strong=\"H7992\"* third|strong=\"H7992\"* row|strong=\"H2905\"* a|strong=\"H3068\"* jacinth|strong=\"H3958\"*, an agate|strong=\"H7618\"*, and|strong=\"H7992\"* an amethyst;" + }, + { + "verseNum": 20, + "text": "and|strong=\"H2091\"* the|strong=\"H1961\"* fourth|strong=\"H7243\"* row|strong=\"H2905\"* a|strong=\"H3068\"* chrysolite, an|strong=\"H1961\"* onyx|strong=\"H7718\"*, and|strong=\"H2091\"* a|strong=\"H3068\"* jasper|strong=\"H3471\"*. They|strong=\"H7243\"* shall be|strong=\"H1961\"* enclosed|strong=\"H7660\"* in|strong=\"H1961\"* gold|strong=\"H2091\"* in|strong=\"H1961\"* their|strong=\"H1961\"* settings|strong=\"H4396\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H5921\"* stones shall|strong=\"H1121\"* be|strong=\"H1961\"* according|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H5921\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, twelve|strong=\"H8147\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* their|strong=\"H5921\"* names|strong=\"H8034\"*; like|strong=\"H1961\"* the|strong=\"H5921\"* engravings|strong=\"H6603\"* of|strong=\"H1121\"* a|strong=\"H3068\"* signet|strong=\"H2368\"*, everyone according|strong=\"H5921\"* to|strong=\"H3478\"* his|strong=\"H5921\"* name|strong=\"H8034\"*, they|strong=\"H5921\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* for|strong=\"H5921\"* the|strong=\"H5921\"* twelve|strong=\"H8147\"* tribes|strong=\"H7626\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H5921\"* shall|strong=\"H2889\"* make|strong=\"H6213\"* on|strong=\"H5921\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"* chains|strong=\"H5688\"* like|strong=\"H6213\"* cords|strong=\"H5688\"*, of|strong=\"H5921\"* braided|strong=\"H4639\"* work|strong=\"H4639\"* of|strong=\"H5921\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 23, + "text": "You|strong=\"H5414\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* on|strong=\"H5921\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"* two|strong=\"H8147\"* rings|strong=\"H2885\"* of|strong=\"H5921\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* shall|strong=\"H6213\"* put|strong=\"H5414\"* the|strong=\"H5921\"* two|strong=\"H8147\"* rings|strong=\"H2885\"* on|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* ends|strong=\"H7098\"* of|strong=\"H5921\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H5414\"* shall|strong=\"H8147\"* put|strong=\"H5414\"* the|strong=\"H5921\"* two|strong=\"H8147\"* braided chains|strong=\"H5688\"* of|strong=\"H5921\"* gold|strong=\"H2091\"* in|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* rings|strong=\"H2885\"* at|strong=\"H5921\"* the|strong=\"H5921\"* ends|strong=\"H7098\"* of|strong=\"H5921\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H6440\"* other|strong=\"H8147\"* two|strong=\"H8147\"* ends|strong=\"H7098\"* of|strong=\"H6440\"* the|strong=\"H6440\"* two|strong=\"H8147\"* braided chains|strong=\"H5688\"* you|strong=\"H5414\"* shall|strong=\"H6440\"* put|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H6440\"* two|strong=\"H8147\"* settings|strong=\"H4865\"*, and|strong=\"H6440\"* put|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H6440\"* shoulder|strong=\"H3802\"* straps of|strong=\"H6440\"* the|strong=\"H6440\"* ephod in|strong=\"H5921\"* its|strong=\"H5414\"* forepart|strong=\"H6440\"*." + }, + { + "verseNum": 26, + "text": "You|strong=\"H5921\"* shall|strong=\"H1004\"* make|strong=\"H6213\"* two|strong=\"H8147\"* rings|strong=\"H2885\"* of|strong=\"H1004\"* gold|strong=\"H2091\"*, and|strong=\"H1004\"* you|strong=\"H5921\"* shall|strong=\"H1004\"* put|strong=\"H7760\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* ends|strong=\"H7098\"* of|strong=\"H1004\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"*, on|strong=\"H5921\"* its|strong=\"H5921\"* edge|strong=\"H8193\"*, which|strong=\"H1004\"* is|strong=\"H1004\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* side|strong=\"H5676\"* of|strong=\"H1004\"* the|strong=\"H5921\"* ephod inward|strong=\"H1004\"*." + }, + { + "verseNum": 27, + "text": "You|strong=\"H5414\"* shall|strong=\"H6440\"* make|strong=\"H6213\"* two|strong=\"H8147\"* rings|strong=\"H2885\"* of|strong=\"H6440\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* shall|strong=\"H6440\"* put|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H6440\"* two|strong=\"H8147\"* shoulder|strong=\"H3802\"* straps of|strong=\"H6440\"* the|strong=\"H6440\"* ephod underneath|strong=\"H4295\"*, in|strong=\"H5921\"* its|strong=\"H5414\"* forepart|strong=\"H6440\"*, close|strong=\"H5980\"* by|strong=\"H5921\"* its|strong=\"H5414\"* coupling|strong=\"H4225\"*, above|strong=\"H4605\"* the|strong=\"H6440\"* skillfully|strong=\"H2805\"* woven|strong=\"H2805\"* band|strong=\"H2805\"* of|strong=\"H6440\"* the|strong=\"H6440\"* ephod." + }, + { + "verseNum": 28, + "text": "They|strong=\"H3808\"* shall|strong=\"H3808\"* bind|strong=\"H7405\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"* by|strong=\"H5921\"* its|strong=\"H5921\"* rings|strong=\"H2885\"* to|strong=\"H1961\"* the|strong=\"H5921\"* rings|strong=\"H2885\"* of|strong=\"H5921\"* the|strong=\"H5921\"* ephod with|strong=\"H5921\"* a|strong=\"H3068\"* lace|strong=\"H6616\"* of|strong=\"H5921\"* blue|strong=\"H8504\"*, that|strong=\"H3808\"* it|strong=\"H5921\"* may|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* skillfully|strong=\"H2805\"* woven|strong=\"H2805\"* band|strong=\"H2805\"* of|strong=\"H5921\"* the|strong=\"H5921\"* ephod, and|strong=\"H8504\"* that|strong=\"H3808\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"* may|strong=\"H1961\"* not|strong=\"H3808\"* swing out|strong=\"H5921\"* from|strong=\"H5921\"* the|strong=\"H5921\"* ephod." + }, + { + "verseNum": 29, + "text": "Aaron shall|strong=\"H3068\"* bear|strong=\"H5375\"* the|strong=\"H6440\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* the|strong=\"H6440\"* breastplate|strong=\"H2833\"* of|strong=\"H1121\"* judgment|strong=\"H4941\"* on|strong=\"H5921\"* his|strong=\"H5375\"* heart|strong=\"H3820\"*, when|strong=\"H3068\"* he|strong=\"H3068\"* goes|strong=\"H6440\"* in|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H6440\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*, for|strong=\"H5921\"* a|strong=\"H3068\"* memorial|strong=\"H2146\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* continually|strong=\"H8548\"*." + }, + { + "verseNum": 30, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* put|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H6440\"* breastplate|strong=\"H2833\"* of|strong=\"H1121\"* judgment|strong=\"H4941\"* the|strong=\"H6440\"* Urim and|strong=\"H1121\"* the|strong=\"H6440\"* Thummim|strong=\"H8550\"*; and|strong=\"H1121\"* they|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* on|strong=\"H5921\"* Aaron’s heart|strong=\"H3820\"*, when|strong=\"H1961\"* he|strong=\"H3068\"* goes|strong=\"H6440\"* in|strong=\"H5921\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. Aaron shall|strong=\"H3068\"* bear|strong=\"H5375\"* the|strong=\"H6440\"* judgment|strong=\"H4941\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* on|strong=\"H5921\"* his|strong=\"H5375\"* heart|strong=\"H3820\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* continually|strong=\"H8548\"*." + }, + { + "verseNum": 31, + "text": "“You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* the|strong=\"H6213\"* robe|strong=\"H4598\"* of|strong=\"H6213\"* the|strong=\"H6213\"* ephod all|strong=\"H6213\"* of|strong=\"H6213\"* blue|strong=\"H8504\"*." + }, + { + "verseNum": 32, + "text": "It|strong=\"H8432\"* shall|strong=\"H3808\"* have|strong=\"H1961\"* a|strong=\"H3068\"* hole|strong=\"H6310\"* for|strong=\"H1961\"* the|strong=\"H8432\"* head|strong=\"H7218\"* in|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H7218\"* it|strong=\"H8432\"*. It|strong=\"H8432\"* shall|strong=\"H3808\"* have|strong=\"H1961\"* a|strong=\"H3068\"* binding|strong=\"H8193\"* of|strong=\"H7218\"* woven work|strong=\"H4639\"* around|strong=\"H5439\"* its|strong=\"H5439\"* hole|strong=\"H6310\"*, as|strong=\"H1961\"* it|strong=\"H8432\"* were|strong=\"H1961\"* the|strong=\"H8432\"* hole|strong=\"H6310\"* of|strong=\"H7218\"* a|strong=\"H3068\"* coat|strong=\"H8473\"* of|strong=\"H7218\"* mail|strong=\"H8473\"*, that|strong=\"H3808\"* it|strong=\"H8432\"* not|strong=\"H3808\"* be|strong=\"H1961\"* torn|strong=\"H7167\"*." + }, + { + "verseNum": 33, + "text": "On|strong=\"H5921\"* its|strong=\"H5921\"* hem|strong=\"H7757\"* you|strong=\"H5921\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* pomegranates|strong=\"H7416\"* of|strong=\"H8432\"* blue|strong=\"H8504\"*, and|strong=\"H2091\"* of|strong=\"H8432\"* purple|strong=\"H8504\"*, and|strong=\"H2091\"* of|strong=\"H8432\"* scarlet|strong=\"H8144\"*, all|strong=\"H5439\"* around|strong=\"H5439\"* its|strong=\"H5921\"* hem|strong=\"H7757\"*; with|strong=\"H6213\"* bells|strong=\"H6472\"* of|strong=\"H8432\"* gold|strong=\"H2091\"* between|strong=\"H8432\"* and|strong=\"H2091\"* around|strong=\"H5439\"* them|strong=\"H5921\"*:" + }, + { + "verseNum": 34, + "text": "a|strong=\"H3068\"* golden|strong=\"H2091\"* bell|strong=\"H6472\"* and|strong=\"H2091\"* a|strong=\"H3068\"* pomegranate|strong=\"H7416\"*, a|strong=\"H3068\"* golden|strong=\"H2091\"* bell|strong=\"H6472\"* and|strong=\"H2091\"* a|strong=\"H3068\"* pomegranate|strong=\"H7416\"*, around|strong=\"H5439\"* the|strong=\"H5921\"* hem|strong=\"H7757\"* of|strong=\"H5921\"* the|strong=\"H5921\"* robe|strong=\"H4598\"*." + }, + { + "verseNum": 35, + "text": "It|strong=\"H5921\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* on|strong=\"H5921\"* Aaron to|strong=\"H3318\"* minister|strong=\"H8334\"*: and|strong=\"H3068\"* its|strong=\"H5921\"* sound|strong=\"H6963\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* heard|strong=\"H8085\"* when|strong=\"H1961\"* he|strong=\"H3068\"* goes|strong=\"H3318\"* in|strong=\"H5921\"* to|strong=\"H3318\"* the|strong=\"H6440\"* holy|strong=\"H6944\"* place|strong=\"H6944\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* when|strong=\"H1961\"* he|strong=\"H3068\"* comes|strong=\"H3318\"* out|strong=\"H3318\"*, that|strong=\"H8085\"* he|strong=\"H3068\"* not|strong=\"H3808\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 36, + "text": "“You|strong=\"H5921\"* shall|strong=\"H3068\"* make|strong=\"H6213\"* a|strong=\"H3068\"* plate|strong=\"H6731\"* of|strong=\"H3068\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*, and|strong=\"H3068\"* engrave|strong=\"H6605\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, like|strong=\"H6213\"* the|strong=\"H5921\"* engravings|strong=\"H6603\"* of|strong=\"H3068\"* a|strong=\"H3068\"* signet|strong=\"H2368\"*, ‘HOLY|strong=\"H6944\"* TO|strong=\"H3068\"* YAHWEH|strong=\"H3068\"*.’" + }, + { + "verseNum": 37, + "text": "You|strong=\"H6440\"* shall|strong=\"H6440\"* put|strong=\"H7760\"* it|strong=\"H7760\"* on|strong=\"H5921\"* a|strong=\"H3068\"* lace|strong=\"H6616\"* of|strong=\"H6440\"* blue|strong=\"H8504\"*, and|strong=\"H6440\"* it|strong=\"H7760\"* shall|strong=\"H6440\"* be|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H6440\"* sash. It|strong=\"H7760\"* shall|strong=\"H6440\"* be|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H6440\"* front|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* sash." + }, + { + "verseNum": 38, + "text": "It|strong=\"H5921\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* on|strong=\"H5921\"* Aaron’s forehead|strong=\"H4696\"*, and|strong=\"H1121\"* Aaron shall|strong=\"H3068\"* bear|strong=\"H5375\"* the|strong=\"H3605\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*, which|strong=\"H3068\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H3068\"* make|strong=\"H5375\"* holy|strong=\"H6944\"* in|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* holy|strong=\"H6944\"* gifts|strong=\"H4979\"*; and|strong=\"H1121\"* it|strong=\"H5921\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* always|strong=\"H3605\"* on|strong=\"H5921\"* his|strong=\"H3605\"* forehead|strong=\"H4696\"*, that|strong=\"H3605\"* they|strong=\"H3068\"* may|strong=\"H1961\"* be|strong=\"H1961\"* accepted|strong=\"H7522\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 39, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* weave|strong=\"H7660\"* the|strong=\"H6213\"* tunic|strong=\"H3801\"* with|strong=\"H6213\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* turban|strong=\"H4701\"* of|strong=\"H4639\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* sash, the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* the|strong=\"H6213\"* embroiderer|strong=\"H7551\"*." + }, + { + "verseNum": 40, + "text": "“You|strong=\"H6213\"* shall|strong=\"H1121\"* make|strong=\"H6213\"* tunics|strong=\"H3801\"* for|strong=\"H6213\"* Aaron’s sons|strong=\"H1121\"*. You|strong=\"H6213\"* shall|strong=\"H1121\"* make|strong=\"H6213\"* sashes for|strong=\"H6213\"* them|strong=\"H6213\"*. You|strong=\"H6213\"* shall|strong=\"H1121\"* make|strong=\"H6213\"* headbands|strong=\"H4021\"* for|strong=\"H6213\"* them|strong=\"H6213\"*, for|strong=\"H6213\"* glory|strong=\"H3519\"* and|strong=\"H1121\"* for|strong=\"H6213\"* beauty|strong=\"H8597\"*." + }, + { + "verseNum": 41, + "text": "You|strong=\"H4886\"* shall|strong=\"H1121\"* put|strong=\"H3847\"* them|strong=\"H3027\"* on|strong=\"H3847\"* Aaron your|strong=\"H3027\"* brother, and|strong=\"H1121\"* on|strong=\"H3847\"* his|strong=\"H3027\"* sons|strong=\"H1121\"* with|strong=\"H4390\"* him|strong=\"H3027\"*, and|strong=\"H1121\"* shall|strong=\"H1121\"* anoint|strong=\"H4886\"* them|strong=\"H3027\"*, and|strong=\"H1121\"* consecrate|strong=\"H6942\"* them|strong=\"H3027\"*, and|strong=\"H1121\"* sanctify|strong=\"H6942\"* them|strong=\"H3027\"*, that|strong=\"H1121\"* they|strong=\"H6942\"* may|strong=\"H1121\"* minister|strong=\"H3547\"* to|strong=\"H3027\"* me|strong=\"H4886\"* in|strong=\"H3847\"* the|strong=\"H4390\"* priest|strong=\"H3547\"*’s office." + }, + { + "verseNum": 42, + "text": "You|strong=\"H5704\"* shall|strong=\"H1320\"* make|strong=\"H6213\"* them|strong=\"H6213\"* linen pants to|strong=\"H5704\"* cover|strong=\"H3680\"* their|strong=\"H1961\"* naked flesh|strong=\"H1320\"*. They|strong=\"H5704\"* shall|strong=\"H1320\"* reach|strong=\"H1961\"* from|strong=\"H5704\"* the|strong=\"H6213\"* waist|strong=\"H4975\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H6213\"* thighs|strong=\"H3409\"*." + }, + { + "verseNum": 43, + "text": "They|strong=\"H3808\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* on|strong=\"H5921\"* Aaron and|strong=\"H1121\"* on|strong=\"H5921\"* his|strong=\"H5375\"* sons|strong=\"H1121\"*, when|strong=\"H1961\"* they|strong=\"H3808\"* go|strong=\"H5066\"* in|strong=\"H5921\"* to|strong=\"H4191\"* the|strong=\"H5921\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, or|strong=\"H3808\"* when|strong=\"H1961\"* they|strong=\"H3808\"* come|strong=\"H1961\"* near|strong=\"H5066\"* to|strong=\"H4191\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* to|strong=\"H4191\"* minister|strong=\"H8334\"* in|strong=\"H5921\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*, that|strong=\"H4196\"* they|strong=\"H3808\"* don’t bear|strong=\"H5375\"* iniquity|strong=\"H5771\"*, and|strong=\"H1121\"* die|strong=\"H4191\"*. This|strong=\"H4191\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* to|strong=\"H4191\"* him|strong=\"H5921\"* and|strong=\"H1121\"* to|strong=\"H4191\"* his|strong=\"H5375\"* offspring|strong=\"H2233\"* after|strong=\"H5921\"* him|strong=\"H5921\"*." + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "“This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H3947\"* thing|strong=\"H1697\"* that|strong=\"H1697\"* you|strong=\"H3947\"* shall|strong=\"H1121\"* do|strong=\"H6213\"* to|strong=\"H6213\"* them|strong=\"H6213\"* to|strong=\"H6213\"* make|strong=\"H6213\"* them|strong=\"H6213\"* holy|strong=\"H6942\"*, to|strong=\"H6213\"* minister|strong=\"H3547\"* to|strong=\"H6213\"* me|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H3947\"* priest|strong=\"H3547\"*’s office: take|strong=\"H3947\"* one|strong=\"H2088\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* and|strong=\"H1121\"* two|strong=\"H8147\"* rams without|strong=\"H8549\"* defect|strong=\"H8549\"*," + }, + { + "verseNum": 2, + "text": "unleavened|strong=\"H4682\"* bread|strong=\"H3899\"*, unleavened|strong=\"H4682\"* cakes|strong=\"H2471\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, and|strong=\"H3899\"* unleavened|strong=\"H4682\"* wafers|strong=\"H7550\"* anointed|strong=\"H4886\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* them|strong=\"H6213\"* of|strong=\"H3899\"* fine|strong=\"H5560\"* wheat|strong=\"H2406\"* flour|strong=\"H5560\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H5414\"* shall|strong=\"H8147\"* put|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5921\"* one|strong=\"H8147\"* basket|strong=\"H5536\"*, and|strong=\"H6499\"* bring|strong=\"H7126\"* them|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H5921\"* basket|strong=\"H5536\"*, with|strong=\"H5921\"* the|strong=\"H5921\"* bull|strong=\"H6499\"* and|strong=\"H6499\"* the|strong=\"H5921\"* two|strong=\"H8147\"* rams." + }, + { + "verseNum": 4, + "text": "You|strong=\"H7126\"* shall|strong=\"H1121\"* bring|strong=\"H7126\"* Aaron and|strong=\"H1121\"* his|strong=\"H7364\"* sons|strong=\"H1121\"* to|strong=\"H1121\"* the|strong=\"H7126\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H7126\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, and|strong=\"H1121\"* shall|strong=\"H1121\"* wash|strong=\"H7364\"* them|strong=\"H7126\"* with|strong=\"H7364\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H3947\"* shall take|strong=\"H3947\"* the|strong=\"H3947\"* garments|strong=\"H3801\"*, and|strong=\"H3947\"* put|strong=\"H3847\"* on|strong=\"H3847\"* Aaron the|strong=\"H3947\"* tunic|strong=\"H3801\"*, the|strong=\"H3947\"* robe|strong=\"H4598\"* of|strong=\"H3801\"* the|strong=\"H3947\"* ephod, the|strong=\"H3947\"* ephod, and|strong=\"H3947\"* the|strong=\"H3947\"* breastplate|strong=\"H2833\"*, and|strong=\"H3947\"* clothe|strong=\"H3847\"* him|strong=\"H3947\"* with|strong=\"H3847\"* the|strong=\"H3947\"* skillfully|strong=\"H2805\"* woven|strong=\"H2805\"* band|strong=\"H2805\"* of|strong=\"H3801\"* the|strong=\"H3947\"* ephod." + }, + { + "verseNum": 6, + "text": "You|strong=\"H5414\"* shall|strong=\"H5145\"* set|strong=\"H7760\"* the|strong=\"H5921\"* turban|strong=\"H4701\"* on|strong=\"H5921\"* his|strong=\"H5414\"* head|strong=\"H7218\"*, and|strong=\"H7218\"* put|strong=\"H5414\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* crown|strong=\"H5145\"* on|strong=\"H5921\"* the|strong=\"H5921\"* turban|strong=\"H4701\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H3947\"* you|strong=\"H5921\"* shall|strong=\"H7218\"* take|strong=\"H3947\"* the|strong=\"H5921\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, and|strong=\"H7218\"* pour|strong=\"H3332\"* it|strong=\"H5921\"* on|strong=\"H5921\"* his|strong=\"H3947\"* head|strong=\"H7218\"*, and|strong=\"H7218\"* anoint|strong=\"H4886\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H7126\"* shall|strong=\"H1121\"* bring|strong=\"H7126\"* his|strong=\"H7126\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* put|strong=\"H3847\"* tunics|strong=\"H3801\"* on|strong=\"H3847\"* them|strong=\"H7126\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3027\"* shall|strong=\"H1121\"* clothe them|strong=\"H1992\"* with|strong=\"H4390\"* belts, Aaron and|strong=\"H1121\"* his|strong=\"H3027\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* bind|strong=\"H2280\"* headbands|strong=\"H4021\"* on|strong=\"H2296\"* them|strong=\"H1992\"*. They|strong=\"H1992\"* shall|strong=\"H1121\"* have|strong=\"H1961\"* the|strong=\"H4390\"* priesthood|strong=\"H3550\"* by|strong=\"H3027\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* statute|strong=\"H2708\"*. You|strong=\"H3027\"* shall|strong=\"H1121\"* consecrate|strong=\"H4390\"* Aaron and|strong=\"H1121\"* his|strong=\"H3027\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 10, + "text": "“You|strong=\"H6440\"* shall|strong=\"H1121\"* bring|strong=\"H7126\"* the|strong=\"H6440\"* bull|strong=\"H6499\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*; and|strong=\"H1121\"* Aaron and|strong=\"H1121\"* his|strong=\"H6440\"* sons|strong=\"H1121\"* shall|strong=\"H1121\"* lay|strong=\"H5564\"* their|strong=\"H5564\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H6440\"* head|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H6440\"* bull|strong=\"H6499\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* kill|strong=\"H7819\"* the|strong=\"H6440\"* bull|strong=\"H6499\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* at|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H5414\"* shall|strong=\"H1818\"* take|strong=\"H3947\"* of|strong=\"H4196\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H4196\"* the|strong=\"H3605\"* bull|strong=\"H6499\"*, and|strong=\"H4196\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H3605\"* horns|strong=\"H7161\"* of|strong=\"H4196\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* with|strong=\"H5921\"* your|strong=\"H3605\"* finger; and|strong=\"H4196\"* you|strong=\"H5414\"* shall|strong=\"H1818\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* all|strong=\"H3605\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* at|strong=\"H5921\"* the|strong=\"H3605\"* base|strong=\"H3247\"* of|strong=\"H4196\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H3605\"* shall|strong=\"H8147\"* take|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* covers|strong=\"H3680\"* the|strong=\"H3605\"* innards, the|strong=\"H3605\"* cover|strong=\"H3680\"* of|strong=\"H4196\"* the|strong=\"H3605\"* liver|strong=\"H3516\"*, the|strong=\"H3605\"* two|strong=\"H8147\"* kidneys|strong=\"H3629\"*, and|strong=\"H4196\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* is|strong=\"H3605\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H4196\"* burn|strong=\"H6999\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"H1931\"* the|strong=\"H2351\"* meat|strong=\"H1320\"* of|strong=\"H4264\"* the|strong=\"H2351\"* bull|strong=\"H6499\"*, and|strong=\"H6499\"* its skin|strong=\"H5785\"*, and|strong=\"H6499\"* its dung|strong=\"H6569\"*, you|strong=\"H1320\"* shall|strong=\"H1320\"* burn|strong=\"H8313\"* with|strong=\"H8313\"* fire outside|strong=\"H2351\"* of|strong=\"H4264\"* the|strong=\"H2351\"* camp|strong=\"H4264\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 15, + "text": "“You|strong=\"H5921\"* shall|strong=\"H1121\"* also|strong=\"H3027\"* take|strong=\"H3947\"* the|strong=\"H5921\"* one|strong=\"H1121\"* ram, and|strong=\"H1121\"* Aaron and|strong=\"H1121\"* his|strong=\"H3947\"* sons|strong=\"H1121\"* shall|strong=\"H1121\"* lay|strong=\"H5564\"* their|strong=\"H3947\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5921\"* ram." + }, + { + "verseNum": 16, + "text": "You|strong=\"H5921\"* shall|strong=\"H1818\"* kill|strong=\"H7819\"* the|strong=\"H5921\"* ram, and|strong=\"H4196\"* you|strong=\"H5921\"* shall|strong=\"H1818\"* take|strong=\"H3947\"* its|strong=\"H5921\"* blood|strong=\"H1818\"*, and|strong=\"H4196\"* sprinkle|strong=\"H2236\"* it|strong=\"H5921\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H5414\"* shall|strong=\"H7218\"* cut|strong=\"H5408\"* the|strong=\"H5921\"* ram into|strong=\"H5921\"* its|strong=\"H5414\"* pieces|strong=\"H5409\"*, and|strong=\"H7218\"* wash|strong=\"H7364\"* its|strong=\"H5414\"* innards, and|strong=\"H7218\"* its|strong=\"H5414\"* legs|strong=\"H3767\"*, and|strong=\"H7218\"* put|strong=\"H5414\"* them|strong=\"H5414\"* with|strong=\"H5921\"* its|strong=\"H5414\"* pieces|strong=\"H5409\"*, and|strong=\"H7218\"* with|strong=\"H5921\"* its|strong=\"H5414\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H3605\"* shall|strong=\"H3068\"* burn|strong=\"H6999\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* ram on|strong=\"H3068\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*: it|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; it|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*, an|strong=\"H3068\"* offering|strong=\"H5930\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "“You|strong=\"H5921\"* shall|strong=\"H1121\"* take|strong=\"H3947\"* the|strong=\"H5921\"* other|strong=\"H8145\"* ram, and|strong=\"H1121\"* Aaron and|strong=\"H1121\"* his|strong=\"H3947\"* sons|strong=\"H1121\"* shall|strong=\"H1121\"* lay|strong=\"H5564\"* their|strong=\"H3947\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5921\"* ram." + }, + { + "verseNum": 20, + "text": "Then|strong=\"H3947\"* you|strong=\"H5414\"* shall|strong=\"H1121\"* kill|strong=\"H7819\"* the|strong=\"H5921\"* ram, and|strong=\"H1121\"* take|strong=\"H3947\"* some|strong=\"H3027\"* of|strong=\"H1121\"* its|strong=\"H5414\"* blood|strong=\"H1818\"*, and|strong=\"H1121\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tip|strong=\"H8571\"* of|strong=\"H1121\"* the|strong=\"H5921\"* right|strong=\"H3233\"* ear of|strong=\"H1121\"* Aaron, and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tip|strong=\"H8571\"* of|strong=\"H1121\"* the|strong=\"H5921\"* right|strong=\"H3233\"* ear of|strong=\"H1121\"* his|strong=\"H5414\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* thumb of|strong=\"H1121\"* their|strong=\"H5414\"* right|strong=\"H3233\"* hand|strong=\"H3027\"*, and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* big toe of|strong=\"H1121\"* their|strong=\"H5414\"* right|strong=\"H3233\"* foot|strong=\"H7272\"*; and|strong=\"H1121\"* sprinkle|strong=\"H2236\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"H5921\"* shall|strong=\"H1121\"* take|strong=\"H3947\"* of|strong=\"H1121\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* that|strong=\"H1931\"* is|strong=\"H1931\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, and|strong=\"H1121\"* sprinkle|strong=\"H5137\"* it|strong=\"H1931\"* on|strong=\"H5921\"* Aaron, and|strong=\"H1121\"* on|strong=\"H5921\"* his|strong=\"H3947\"* garments, and|strong=\"H1121\"* on|strong=\"H5921\"* his|strong=\"H3947\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* garments of|strong=\"H1121\"* his|strong=\"H3947\"* sons|strong=\"H1121\"* with|strong=\"H5921\"* him|strong=\"H5921\"*: and|strong=\"H1121\"* he|strong=\"H1931\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* made|strong=\"H6942\"* holy|strong=\"H6942\"*, and|strong=\"H1121\"* his|strong=\"H3947\"* garments, and|strong=\"H1121\"* his|strong=\"H3947\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* his|strong=\"H3947\"* sons|strong=\"H1121\"*’ garments with|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 22, + "text": "Also|strong=\"H3629\"* you|strong=\"H3588\"* shall|strong=\"H3225\"* take|strong=\"H3947\"* some|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5921\"* ram’s fat|strong=\"H2459\"*, the|strong=\"H5921\"* fat|strong=\"H2459\"* tail, the|strong=\"H5921\"* fat|strong=\"H2459\"* that|strong=\"H3588\"* covers|strong=\"H3680\"* the|strong=\"H5921\"* innards, the|strong=\"H5921\"* cover|strong=\"H3680\"* of|strong=\"H4480\"* the|strong=\"H5921\"* liver|strong=\"H3516\"*, the|strong=\"H5921\"* two|strong=\"H8147\"* kidneys|strong=\"H3629\"*, the|strong=\"H5921\"* fat|strong=\"H2459\"* that|strong=\"H3588\"* is|strong=\"H1931\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* right|strong=\"H3225\"* thigh|strong=\"H7785\"* (for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* ram of|strong=\"H4480\"* consecration|strong=\"H4394\"*)," + }, + { + "verseNum": 23, + "text": "and|strong=\"H3068\"* one|strong=\"H3068\"* loaf|strong=\"H3603\"* of|strong=\"H3068\"* bread|strong=\"H3899\"*, one|strong=\"H3068\"* cake|strong=\"H2471\"* of|strong=\"H3068\"* oiled|strong=\"H8081\"* bread|strong=\"H3899\"*, and|strong=\"H3068\"* one|strong=\"H3068\"* wafer|strong=\"H7550\"* out|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* basket|strong=\"H5536\"* of|strong=\"H3068\"* unleavened|strong=\"H4682\"* bread|strong=\"H3899\"* that|strong=\"H3068\"* is|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* put|strong=\"H7760\"* all|strong=\"H3605\"* of|strong=\"H1121\"* this|strong=\"H6440\"* in|strong=\"H5921\"* Aaron’s hands|strong=\"H3709\"*, and|strong=\"H1121\"* in|strong=\"H5921\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*’ hands|strong=\"H3709\"*, and|strong=\"H1121\"* shall|strong=\"H3068\"* wave|strong=\"H8573\"* them|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* them|strong=\"H5921\"* from|strong=\"H6440\"* their|strong=\"H3068\"* hands|strong=\"H3027\"*, and|strong=\"H3068\"* burn|strong=\"H6999\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* on|strong=\"H5921\"* the|strong=\"H6440\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, for|strong=\"H5921\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*: it|strong=\"H1931\"* is|strong=\"H3068\"* an|strong=\"H3947\"* offering|strong=\"H5930\"* made|strong=\"H3068\"* by|strong=\"H3027\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 26, + "text": "“You|strong=\"H6440\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* the|strong=\"H6440\"* breast|strong=\"H2373\"* of|strong=\"H3068\"* Aaron’s ram of|strong=\"H3068\"* consecration|strong=\"H4394\"*, and|strong=\"H3068\"* wave|strong=\"H8573\"* it|strong=\"H6440\"* for|strong=\"H6440\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. It|strong=\"H6440\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* your|strong=\"H3068\"* portion|strong=\"H4490\"*." + }, + { + "verseNum": 27, + "text": "You shall|strong=\"H1121\"* sanctify|strong=\"H6942\"* the|strong=\"H6942\"* breast|strong=\"H2373\"* of|strong=\"H1121\"* the|strong=\"H6942\"* wave|strong=\"H8573\"* offering|strong=\"H8641\"* and|strong=\"H1121\"* the|strong=\"H6942\"* thigh|strong=\"H7785\"* of|strong=\"H1121\"* the|strong=\"H6942\"* wave|strong=\"H8573\"* offering|strong=\"H8641\"*, which is|strong=\"H1121\"* waved|strong=\"H5130\"*, and|strong=\"H1121\"* which is|strong=\"H1121\"* raised|strong=\"H7311\"* up|strong=\"H7311\"*, of|strong=\"H1121\"* the|strong=\"H6942\"* ram of|strong=\"H1121\"* consecration|strong=\"H4394\"*, even of|strong=\"H1121\"* that|strong=\"H1121\"* which is|strong=\"H1121\"* for|strong=\"H1121\"* Aaron, and|strong=\"H1121\"* of|strong=\"H1121\"* that|strong=\"H1121\"* which is|strong=\"H1121\"* for|strong=\"H1121\"* his|strong=\"H6942\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 28, + "text": "It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* for|strong=\"H3588\"* Aaron and|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"* as|strong=\"H1961\"* their|strong=\"H3068\"* portion|strong=\"H2706\"* forever|strong=\"H5769\"* from|strong=\"H3478\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* wave offering|strong=\"H8641\"*. It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* wave offering|strong=\"H8641\"* from|strong=\"H3478\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* of|strong=\"H1121\"* the|strong=\"H3588\"* sacrifices|strong=\"H2077\"* of|strong=\"H1121\"* their|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, even|strong=\"H3588\"* their|strong=\"H3068\"* wave offering|strong=\"H8641\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 29, + "text": "“The|strong=\"H4390\"* holy|strong=\"H6944\"* garments of|strong=\"H1121\"* Aaron shall|strong=\"H1121\"* be|strong=\"H1961\"* for|strong=\"H3027\"* his|strong=\"H3027\"* sons|strong=\"H1121\"* after|strong=\"H1961\"* him|strong=\"H3027\"*, to|strong=\"H1961\"* be|strong=\"H1961\"* anointed|strong=\"H1121\"* in|strong=\"H1121\"* them|strong=\"H3027\"*, and|strong=\"H1121\"* to|strong=\"H1961\"* be|strong=\"H1961\"* consecrated|strong=\"H6944\"* in|strong=\"H1121\"* them|strong=\"H3027\"*." + }, + { + "verseNum": 30, + "text": "Seven|strong=\"H7651\"* days|strong=\"H3117\"* shall|strong=\"H3548\"* the|strong=\"H3117\"* son|strong=\"H1121\"* who|strong=\"H3548\"* is|strong=\"H3117\"* priest|strong=\"H3548\"* in|strong=\"H3117\"* his|strong=\"H8478\"* place|strong=\"H8478\"* put|strong=\"H3847\"* them|strong=\"H8478\"* on|strong=\"H3117\"*, when|strong=\"H3117\"* he|strong=\"H3117\"* comes|strong=\"H3117\"* into the|strong=\"H3117\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"* to|strong=\"H3117\"* minister|strong=\"H8334\"* in|strong=\"H3117\"* the|strong=\"H3117\"* holy|strong=\"H6944\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 31, + "text": "“You|strong=\"H3947\"* shall|strong=\"H1320\"* take|strong=\"H3947\"* the|strong=\"H3947\"* ram of|strong=\"H6918\"* consecration|strong=\"H4394\"* and|strong=\"H3947\"* boil|strong=\"H1310\"* its|strong=\"H1310\"* meat|strong=\"H1320\"* in|strong=\"H1320\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 32, + "text": "Aaron and|strong=\"H1121\"* his|strong=\"H1320\"* sons|strong=\"H1121\"* shall|strong=\"H1121\"* eat|strong=\"H3899\"* the|strong=\"H1121\"* meat|strong=\"H1320\"* of|strong=\"H1121\"* the|strong=\"H1121\"* ram, and|strong=\"H1121\"* the|strong=\"H1121\"* bread|strong=\"H3899\"* that|strong=\"H1121\"* is|strong=\"H1320\"* in|strong=\"H1320\"* the|strong=\"H1121\"* basket|strong=\"H5536\"*, at|strong=\"H1121\"* the|strong=\"H1121\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 33, + "text": "They|strong=\"H1992\"* shall|strong=\"H3027\"* eat those|strong=\"H1992\"* things|strong=\"H6944\"* with|strong=\"H4390\"* which|strong=\"H1992\"* atonement|strong=\"H3722\"* was|strong=\"H3027\"* made|strong=\"H3722\"*, to|strong=\"H3027\"* consecrate|strong=\"H6942\"* and|strong=\"H3027\"* sanctify|strong=\"H6942\"* them|strong=\"H1992\"*; but|strong=\"H3588\"* a|strong=\"H3068\"* stranger|strong=\"H2114\"* shall|strong=\"H3027\"* not|strong=\"H3808\"* eat of|strong=\"H3027\"* it|strong=\"H3588\"*, because|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 34, + "text": "If|strong=\"H3588\"* anything|strong=\"H3899\"* of|strong=\"H4480\"* the|strong=\"H3588\"* meat|strong=\"H1320\"* of|strong=\"H4480\"* the|strong=\"H3588\"* consecration|strong=\"H4394\"*, or|strong=\"H3808\"* of|strong=\"H4480\"* the|strong=\"H3588\"* bread|strong=\"H3899\"*, remains|strong=\"H3498\"* to|strong=\"H5704\"* the|strong=\"H3588\"* morning|strong=\"H1242\"*, then|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* burn|strong=\"H8313\"* the|strong=\"H3588\"* remainder|strong=\"H3498\"* with|strong=\"H8313\"* fire. It|strong=\"H1931\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* eaten, because|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 35, + "text": "“You|strong=\"H6680\"* shall|strong=\"H1121\"* do|strong=\"H6213\"* so|strong=\"H6213\"* to|strong=\"H6213\"* Aaron and|strong=\"H1121\"* to|strong=\"H6213\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*, according|strong=\"H3602\"* to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H3117\"* have|strong=\"H1121\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*. You|strong=\"H6680\"* shall|strong=\"H1121\"* consecrate|strong=\"H4390\"* them|strong=\"H3027\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 36, + "text": "Every|strong=\"H3117\"* day|strong=\"H3117\"* you|strong=\"H5921\"* shall|strong=\"H3117\"* offer|strong=\"H6213\"* the|strong=\"H5921\"* bull|strong=\"H6499\"* of|strong=\"H3117\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* for|strong=\"H5921\"* atonement|strong=\"H3722\"*. You|strong=\"H5921\"* shall|strong=\"H3117\"* cleanse|strong=\"H2398\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* when|strong=\"H3117\"* you|strong=\"H5921\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* it|strong=\"H5921\"*. You|strong=\"H5921\"* shall|strong=\"H3117\"* anoint|strong=\"H4886\"* it|strong=\"H5921\"*, to|strong=\"H6213\"* sanctify|strong=\"H6942\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 37, + "text": "Seven|strong=\"H7651\"* days|strong=\"H3117\"* you|strong=\"H3605\"* shall|strong=\"H3117\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, and|strong=\"H3117\"* sanctify|strong=\"H6942\"* it|strong=\"H5921\"*; and|strong=\"H3117\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*. Whatever|strong=\"H3605\"* touches|strong=\"H5060\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 38, + "text": "“Now|strong=\"H3117\"* this|strong=\"H2088\"* is|strong=\"H2088\"* that|strong=\"H3117\"* which|strong=\"H4196\"* you|strong=\"H5921\"* shall|strong=\"H1121\"* offer|strong=\"H6213\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*: two|strong=\"H8147\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* day|strong=\"H3117\"* by|strong=\"H5921\"* day|strong=\"H3117\"* continually|strong=\"H8548\"*." + }, + { + "verseNum": 39, + "text": "The|strong=\"H6213\"* one|strong=\"H3532\"* lamb|strong=\"H3532\"* you|strong=\"H6213\"* shall|strong=\"H6213\"* offer|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H6213\"* morning|strong=\"H1242\"*; and|strong=\"H1242\"* the|strong=\"H6213\"* other|strong=\"H8145\"* lamb|strong=\"H3532\"* you|strong=\"H6213\"* shall|strong=\"H6213\"* offer|strong=\"H6213\"* at|strong=\"H6213\"* evening|strong=\"H6153\"*;" + }, + { + "verseNum": 40, + "text": "and|strong=\"H8081\"* with|strong=\"H1101\"* the|strong=\"H1101\"* one|strong=\"H3532\"* lamb|strong=\"H3532\"* a|strong=\"H3068\"* tenth|strong=\"H6241\"* part|strong=\"H7253\"* of|strong=\"H1969\"* an ephah+ 29:40 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H1969\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* the|strong=\"H1101\"* fourth|strong=\"H7253\"* part|strong=\"H7253\"* of|strong=\"H1969\"* a|strong=\"H3068\"* hin|strong=\"H1969\"*+ 29:40 A hin is about 6.5 liters or 1.7 gallons, so a fourth of a hin is about 1.6 liters.* of|strong=\"H1969\"* beaten|strong=\"H3795\"* oil|strong=\"H8081\"*, and|strong=\"H8081\"* the|strong=\"H1101\"* fourth|strong=\"H7253\"* part|strong=\"H7253\"* of|strong=\"H1969\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* of|strong=\"H1969\"* wine|strong=\"H3196\"* for|strong=\"H6241\"* a|strong=\"H3068\"* drink|strong=\"H5262\"* offering|strong=\"H5262\"*." + }, + { + "verseNum": 41, + "text": "The|strong=\"H6213\"* other|strong=\"H8145\"* lamb|strong=\"H3532\"* you|strong=\"H6213\"* shall|strong=\"H3068\"* offer|strong=\"H6213\"* at|strong=\"H3068\"* evening|strong=\"H6153\"*, and|strong=\"H3068\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3068\"* it|strong=\"H6213\"* according to|strong=\"H3068\"* the|strong=\"H6213\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* the|strong=\"H6213\"* morning|strong=\"H1242\"* and|strong=\"H3068\"* according to|strong=\"H3068\"* its|strong=\"H6213\"* drink|strong=\"H5262\"* offering|strong=\"H4503\"*, for|strong=\"H6213\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*, an|strong=\"H6213\"* offering|strong=\"H4503\"* made|strong=\"H6213\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 42, + "text": "It|strong=\"H8033\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* a|strong=\"H3068\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"* at|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, where|strong=\"H8033\"* I|strong=\"H6440\"* will|strong=\"H3068\"* meet|strong=\"H3259\"* with|strong=\"H3068\"* you|strong=\"H6440\"*, to|strong=\"H1696\"* speak|strong=\"H1696\"* there|strong=\"H8033\"* to|strong=\"H1696\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 43, + "text": "There|strong=\"H8033\"* I|strong=\"H1121\"* will|strong=\"H3478\"* meet|strong=\"H3259\"* with|strong=\"H3478\"* the|strong=\"H6942\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* the|strong=\"H6942\"* place|strong=\"H8033\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* sanctified|strong=\"H6942\"* by|strong=\"H3478\"* my|strong=\"H6942\"* glory|strong=\"H3519\"*." + }, + { + "verseNum": 44, + "text": "I|strong=\"H1121\"* will|strong=\"H1121\"* sanctify|strong=\"H6942\"* the|strong=\"H6942\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"* and|strong=\"H1121\"* the|strong=\"H6942\"* altar|strong=\"H4196\"*. I|strong=\"H1121\"* will|strong=\"H1121\"* also|strong=\"H1121\"* sanctify|strong=\"H6942\"* Aaron and|strong=\"H1121\"* his|strong=\"H6942\"* sons|strong=\"H1121\"* to|strong=\"H1121\"* minister|strong=\"H3547\"* to|strong=\"H1121\"* me|strong=\"H1121\"* in|strong=\"H1121\"* the|strong=\"H6942\"* priest|strong=\"H3547\"*’s office." + }, + { + "verseNum": 45, + "text": "I|strong=\"H1121\"* will|strong=\"H1961\"* dwell|strong=\"H7931\"* among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* will|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H8432\"* God." + }, + { + "verseNum": 46, + "text": "They|strong=\"H3588\"* shall|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* might|strong=\"H3068\"* dwell|strong=\"H7931\"* among|strong=\"H8432\"* them|strong=\"H3318\"*: I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "“You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* an|strong=\"H6213\"* altar|strong=\"H4196\"* to|strong=\"H6213\"* burn|strong=\"H4729\"* incense|strong=\"H7004\"* on|strong=\"H6213\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* it|strong=\"H6213\"* of|strong=\"H4196\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*." + }, + { + "verseNum": 2, + "text": "Its|strong=\"H1961\"* length|strong=\"H6967\"* shall be|strong=\"H1961\"* a|strong=\"H3068\"* cubit,+ 30:2 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H7341\"* its|strong=\"H1961\"* width|strong=\"H7341\"* a|strong=\"H3068\"* cubit. It|strong=\"H1961\"* shall be|strong=\"H1961\"* square|strong=\"H7251\"*, and|strong=\"H7341\"* its|strong=\"H1961\"* height|strong=\"H6967\"* shall be|strong=\"H1961\"* two|strong=\"H4480\"* cubits. Its|strong=\"H1961\"* horns|strong=\"H7161\"* shall be|strong=\"H1961\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece with|strong=\"H7161\"* it|strong=\"H1961\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H6213\"* shall|strong=\"H2889\"* overlay|strong=\"H6823\"* it|strong=\"H6213\"* with|strong=\"H6213\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*, its|strong=\"H6213\"* top|strong=\"H1406\"*, its|strong=\"H6213\"* sides|strong=\"H5439\"* around|strong=\"H5439\"* it|strong=\"H6213\"*, and|strong=\"H2091\"* its|strong=\"H6213\"* horns|strong=\"H7161\"*; and|strong=\"H2091\"* you|strong=\"H6213\"* shall|strong=\"H2889\"* make|strong=\"H6213\"* a|strong=\"H3068\"* gold|strong=\"H2091\"* molding|strong=\"H2213\"* around|strong=\"H5439\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H5921\"* shall|strong=\"H1004\"* make|strong=\"H6213\"* two|strong=\"H8147\"* golden|strong=\"H2091\"* rings|strong=\"H2885\"* for|strong=\"H5921\"* it|strong=\"H5921\"* under|strong=\"H8478\"* its|strong=\"H5921\"* molding|strong=\"H2213\"*; on|strong=\"H5921\"* its|strong=\"H5921\"* two|strong=\"H8147\"* ribs|strong=\"H6763\"*, on|strong=\"H5921\"* its|strong=\"H5921\"* two|strong=\"H8147\"* sides|strong=\"H6654\"* you|strong=\"H5921\"* shall|strong=\"H1004\"* make|strong=\"H6213\"* them|strong=\"H1992\"*; and|strong=\"H1004\"* they|strong=\"H1992\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* for|strong=\"H5921\"* places|strong=\"H1004\"* for|strong=\"H5921\"* poles with|strong=\"H1004\"* which|strong=\"H1992\"* to|strong=\"H1961\"* bear|strong=\"H5375\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* the|strong=\"H6213\"* poles of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, and|strong=\"H6086\"* overlay|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H6213\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H5414\"* shall|strong=\"H6440\"* put|strong=\"H5414\"* it|strong=\"H5414\"* before|strong=\"H6440\"* the|strong=\"H6440\"* veil|strong=\"H6532\"* that|strong=\"H5414\"* is|strong=\"H8033\"* by|strong=\"H5921\"* the|strong=\"H6440\"* ark of|strong=\"H6440\"* the|strong=\"H6440\"* covenant, before|strong=\"H6440\"* the|strong=\"H6440\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* that|strong=\"H5414\"* is|strong=\"H8033\"* over|strong=\"H5921\"* the|strong=\"H6440\"* covenant, where|strong=\"H8033\"* I|strong=\"H5414\"* will|strong=\"H5414\"* meet|strong=\"H3259\"* with|strong=\"H5921\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 7, + "text": "Aaron shall burn|strong=\"H6999\"* incense|strong=\"H7004\"* of|strong=\"H5921\"* sweet|strong=\"H5561\"* spices|strong=\"H5561\"* on|strong=\"H5921\"* it|strong=\"H5921\"* every|strong=\"H1242\"* morning|strong=\"H1242\"*. When|strong=\"H5921\"* he|strong=\"H5921\"* tends the|strong=\"H5921\"* lamps|strong=\"H5216\"*, he|strong=\"H5921\"* shall burn|strong=\"H6999\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H3068\"* Aaron lights the|strong=\"H6440\"* lamps|strong=\"H5216\"* at|strong=\"H3068\"* evening|strong=\"H6153\"*, he|strong=\"H3068\"* shall|strong=\"H3068\"* burn|strong=\"H6999\"* it|strong=\"H6440\"*, a|strong=\"H3068\"* perpetual|strong=\"H8548\"* incense|strong=\"H7004\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H5921\"* shall|strong=\"H3808\"* offer|strong=\"H5927\"* no|strong=\"H3808\"* strange|strong=\"H2114\"* incense|strong=\"H7004\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, nor|strong=\"H3808\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, nor|strong=\"H3808\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*; and|strong=\"H5930\"* you|strong=\"H5921\"* shall|strong=\"H3808\"* pour|strong=\"H5258\"* no|strong=\"H3808\"* drink|strong=\"H5262\"* offering|strong=\"H4503\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "Aaron shall|strong=\"H3068\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* on|strong=\"H5921\"* its|strong=\"H5921\"* horns|strong=\"H7161\"* once in|strong=\"H8141\"* the|strong=\"H5921\"* year|strong=\"H8141\"*; with|strong=\"H3068\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H3068\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* of|strong=\"H3068\"* atonement|strong=\"H3722\"* once in|strong=\"H8141\"* the|strong=\"H5921\"* year|strong=\"H8141\"* he|strong=\"H1931\"* shall|strong=\"H3068\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* it|strong=\"H1931\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*. It|strong=\"H1931\"* is|strong=\"H3068\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 12, + "text": "“When|strong=\"H3588\"* you|strong=\"H3588\"* take|strong=\"H5375\"* a|strong=\"H3068\"* census|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, according to|strong=\"H3478\"* those|strong=\"H1121\"* who|strong=\"H3068\"* are|strong=\"H1121\"* counted|strong=\"H6485\"* among|strong=\"H7218\"* them|strong=\"H5414\"*, then|strong=\"H1961\"* each|strong=\"H5414\"* man|strong=\"H1121\"* shall|strong=\"H3068\"* give|strong=\"H5414\"* a|strong=\"H3068\"* ransom|strong=\"H3724\"* for|strong=\"H3588\"* his|strong=\"H5375\"* soul|strong=\"H5315\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* when|strong=\"H3588\"* you|strong=\"H3588\"* count|strong=\"H5375\"* them|strong=\"H5414\"*, that|strong=\"H3588\"* there|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3808\"* plague|strong=\"H5063\"* among|strong=\"H7218\"* them|strong=\"H5414\"* when|strong=\"H3588\"* you|strong=\"H3588\"* count|strong=\"H5375\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"H3068\"* shall|strong=\"H3068\"* give|strong=\"H5414\"* this|strong=\"H2088\"*, everyone|strong=\"H3605\"* who|strong=\"H3605\"* passes|strong=\"H5674\"* over|strong=\"H5921\"* to|strong=\"H3068\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H3068\"* counted|strong=\"H6485\"*, half|strong=\"H4276\"* a|strong=\"H3068\"* shekel|strong=\"H8255\"* according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H3605\"* shekel|strong=\"H8255\"*+ 30:13 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H3068\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"* (the|strong=\"H3605\"* shekel|strong=\"H8255\"* is|strong=\"H3068\"* twenty|strong=\"H6242\"* gerahs|strong=\"H1626\"*+ 30:13 a gerah is about 0.5 grams or about 7.7 grains*); half|strong=\"H4276\"* a|strong=\"H3068\"* shekel|strong=\"H8255\"* for|strong=\"H5921\"* an|strong=\"H5414\"* offering|strong=\"H8641\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "Everyone|strong=\"H3605\"* who|strong=\"H3605\"* passes|strong=\"H5674\"* over|strong=\"H5921\"* to|strong=\"H3068\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1121\"* counted|strong=\"H6485\"*, from|strong=\"H5921\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, shall|strong=\"H3068\"* give|strong=\"H5414\"* the|strong=\"H3605\"* offering|strong=\"H8641\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* rich|strong=\"H6223\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* give|strong=\"H5414\"* more|strong=\"H7235\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* poor|strong=\"H1800\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* give|strong=\"H5414\"* less|strong=\"H4591\"*, than|strong=\"H7235\"* the|strong=\"H5921\"* half|strong=\"H4276\"* shekel|strong=\"H8255\"*,+ 30:15 A shekel is about 10 grams or about 0.35 ounces.* when|strong=\"H3068\"* they|strong=\"H3068\"* give|strong=\"H5414\"* the|strong=\"H5921\"* offering|strong=\"H8641\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* your|strong=\"H3068\"* souls|strong=\"H5315\"*." + }, + { + "verseNum": 16, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* the|strong=\"H6440\"* atonement|strong=\"H3722\"* money|strong=\"H3701\"* from|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* shall|strong=\"H3068\"* appoint|strong=\"H5414\"* it|strong=\"H5414\"* for|strong=\"H5921\"* the|strong=\"H6440\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*; that|strong=\"H5315\"* it|strong=\"H5414\"* may|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* memorial|strong=\"H2146\"* for|strong=\"H5921\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3478\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* your|strong=\"H3068\"* souls|strong=\"H5315\"*.”" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 18, + "text": "“You|strong=\"H5414\"* shall|strong=\"H4325\"* also|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* basin|strong=\"H3595\"* of|strong=\"H4325\"* bronze|strong=\"H5178\"*, and|strong=\"H4196\"* its|strong=\"H5414\"* base|strong=\"H3653\"* of|strong=\"H4325\"* bronze|strong=\"H5178\"*, in|strong=\"H6213\"* which|strong=\"H8033\"* to|strong=\"H6213\"* wash|strong=\"H7364\"*. You|strong=\"H5414\"* shall|strong=\"H4325\"* put|strong=\"H5414\"* it|strong=\"H5414\"* between the|strong=\"H5414\"* Tent of|strong=\"H4325\"* Meeting|strong=\"H4150\"* and|strong=\"H4196\"* the|strong=\"H5414\"* altar|strong=\"H4196\"*, and|strong=\"H4196\"* you|strong=\"H5414\"* shall|strong=\"H4325\"* put|strong=\"H5414\"* water|strong=\"H4325\"* in|strong=\"H6213\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 19, + "text": "Aaron and|strong=\"H1121\"* his|strong=\"H7364\"* sons|strong=\"H1121\"* shall|strong=\"H1121\"* wash|strong=\"H7364\"* their|strong=\"H7364\"* hands|strong=\"H3027\"* and|strong=\"H1121\"* their|strong=\"H7364\"* feet|strong=\"H7272\"* in|strong=\"H7364\"* it|strong=\"H1121\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"H3068\"* they|strong=\"H3068\"* go|strong=\"H5066\"* into|strong=\"H4325\"* the|strong=\"H3068\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, they|strong=\"H3068\"* shall|strong=\"H3068\"* wash|strong=\"H7364\"* with|strong=\"H3068\"* water|strong=\"H4325\"*, that|strong=\"H3068\"* they|strong=\"H3068\"* don’t die|strong=\"H4191\"*; or|strong=\"H3808\"* when|strong=\"H3068\"* they|strong=\"H3068\"* come|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H4191\"* the|strong=\"H3068\"* altar|strong=\"H4196\"* to|strong=\"H4191\"* minister|strong=\"H8334\"*, to|strong=\"H4191\"* burn|strong=\"H6999\"* an|strong=\"H3068\"* offering|strong=\"H6999\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire to|strong=\"H4191\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 21, + "text": "So|strong=\"H1961\"* they|strong=\"H3808\"* shall|strong=\"H2233\"* wash|strong=\"H7364\"* their|strong=\"H7364\"* hands|strong=\"H3027\"* and|strong=\"H3027\"* their|strong=\"H7364\"* feet|strong=\"H7272\"*, that|strong=\"H3027\"* they|strong=\"H3808\"* not|strong=\"H3808\"* die|strong=\"H4191\"*. This|strong=\"H4191\"* shall|strong=\"H2233\"* be|strong=\"H1961\"* a|strong=\"H3068\"* statute|strong=\"H2706\"* forever|strong=\"H5769\"* to|strong=\"H4191\"* them|strong=\"H3027\"*, even|strong=\"H3808\"* to|strong=\"H4191\"* him|strong=\"H3027\"* and|strong=\"H3027\"* to|strong=\"H4191\"* his|strong=\"H7364\"* descendants|strong=\"H2233\"* throughout|strong=\"H1755\"* their|strong=\"H7364\"* generations|strong=\"H1755\"*.”" + }, + { + "verseNum": 22, + "text": "Moreover|strong=\"H1696\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 23, + "text": "“Also take|strong=\"H3947\"* fine|strong=\"H3947\"* spices|strong=\"H1314\"*: of|strong=\"H7218\"* liquid myrrh|strong=\"H4753\"*, five|strong=\"H2568\"* hundred|strong=\"H3967\"* shekels;+ 30:23 A shekel is about 10 grams or about 0.35 ounces, so 500 shekels is about 5 kilograms or about 11 pounds.* and|strong=\"H3967\"* of|strong=\"H7218\"* fragrant|strong=\"H1314\"* cinnamon|strong=\"H7076\"* half|strong=\"H4276\"* as|strong=\"H3947\"* much|strong=\"H4276\"*, even two|strong=\"H3947\"* hundred|strong=\"H3967\"* and|strong=\"H3967\"* fifty|strong=\"H2572\"*; and|strong=\"H3967\"* of|strong=\"H7218\"* fragrant|strong=\"H1314\"* cane|strong=\"H7070\"*, two|strong=\"H3947\"* hundred|strong=\"H3967\"* and|strong=\"H3967\"* fifty|strong=\"H2572\"*;" + }, + { + "verseNum": 24, + "text": "and|strong=\"H3967\"* of|strong=\"H8255\"* cassia|strong=\"H6916\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"*, according to|strong=\"H2568\"* the|strong=\"H3967\"* shekel|strong=\"H8255\"* of|strong=\"H8255\"* the|strong=\"H3967\"* sanctuary|strong=\"H6944\"*; and|strong=\"H3967\"* a|strong=\"H3068\"* hin|strong=\"H1969\"*+ 30:24 A hin is about 6.5 liters or 1.7 gallons.* of|strong=\"H8255\"* olive|strong=\"H2132\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* it|strong=\"H6213\"* into|strong=\"H6213\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, a|strong=\"H3068\"* perfume|strong=\"H7545\"* compounded after|strong=\"H1961\"* the|strong=\"H6213\"* art|strong=\"H4639\"* of|strong=\"H4639\"* the|strong=\"H6213\"* perfumer|strong=\"H7543\"*: it|strong=\"H6213\"* shall|strong=\"H6213\"* be|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 26, + "text": "You|strong=\"H4886\"* shall|strong=\"H4150\"* use it to|strong=\"H4150\"* anoint|strong=\"H4886\"* the|strong=\"H4886\"* Tent of|strong=\"H4150\"* Meeting|strong=\"H4150\"*, the|strong=\"H4886\"* ark of|strong=\"H4150\"* the|strong=\"H4886\"* covenant," + }, + { + "verseNum": 27, + "text": "the|strong=\"H3605\"* table|strong=\"H7979\"* and|strong=\"H4196\"* all|strong=\"H3605\"* its|strong=\"H3605\"* articles|strong=\"H3627\"*, the|strong=\"H3605\"* lamp stand and|strong=\"H4196\"* its|strong=\"H3605\"* accessories, the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H3627\"* incense|strong=\"H7004\"*," + }, + { + "verseNum": 28, + "text": "the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H3627\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* with|strong=\"H3627\"* all|strong=\"H3605\"* its|strong=\"H3605\"* utensils|strong=\"H3627\"*, and|strong=\"H4196\"* the|strong=\"H3605\"* basin|strong=\"H3595\"* with|strong=\"H3627\"* its|strong=\"H3605\"* base|strong=\"H3653\"*." + }, + { + "verseNum": 29, + "text": "You|strong=\"H3605\"* shall sanctify|strong=\"H6942\"* them|strong=\"H1961\"*, that|strong=\"H3605\"* they|strong=\"H6942\"* may|strong=\"H1961\"* be|strong=\"H1961\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*. Whatever|strong=\"H3605\"* touches|strong=\"H5060\"* them|strong=\"H1961\"* shall be|strong=\"H1961\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 30, + "text": "You|strong=\"H4886\"* shall|strong=\"H1121\"* anoint|strong=\"H4886\"* Aaron and|strong=\"H1121\"* his|strong=\"H6942\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* sanctify|strong=\"H6942\"* them|strong=\"H6942\"*, that|strong=\"H1121\"* they|strong=\"H6942\"* may|strong=\"H1121\"* minister|strong=\"H3547\"* to|strong=\"H1121\"* me|strong=\"H4886\"* in|strong=\"H1121\"* the|strong=\"H6942\"* priest|strong=\"H3547\"*’s office." + }, + { + "verseNum": 31, + "text": "You|strong=\"H1696\"* shall|strong=\"H1121\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘This|strong=\"H2088\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"* to|strong=\"H1696\"* me|strong=\"H1696\"* throughout|strong=\"H1755\"* your|strong=\"H1961\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 32, + "text": "It|strong=\"H1931\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H1961\"* poured|strong=\"H3251\"* on|strong=\"H5921\"* man|strong=\"H1320\"*’s flesh|strong=\"H1320\"*, and|strong=\"H6213\"* do|strong=\"H6213\"* not|strong=\"H3808\"* make|strong=\"H6213\"* any|strong=\"H6213\"* like|strong=\"H3644\"* it|strong=\"H1931\"*, according|strong=\"H5921\"* to|strong=\"H1961\"* its|strong=\"H5921\"* composition|strong=\"H4971\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* holy|strong=\"H6944\"*. It|strong=\"H1931\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* holy|strong=\"H6944\"* to|strong=\"H1961\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 33, + "text": "Whoever compounds any|strong=\"H4480\"* like|strong=\"H3644\"* it|strong=\"H5414\"*, or|strong=\"H4480\"* whoever puts|strong=\"H5414\"* any|strong=\"H4480\"* of|strong=\"H4480\"* it|strong=\"H5414\"* on|strong=\"H5921\"* a|strong=\"H3068\"* stranger|strong=\"H2114\"*, he|strong=\"H5414\"* shall|strong=\"H5971\"* be|strong=\"H5414\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H4480\"* his|strong=\"H5414\"* people|strong=\"H5971\"*.’”" + }, + { + "verseNum": 34, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Take|strong=\"H3947\"* to|strong=\"H3068\"* yourself sweet|strong=\"H5561\"* spices|strong=\"H5561\"*, gum|strong=\"H5198\"* resin, onycha|strong=\"H7827\"*, and|strong=\"H4872\"* galbanum|strong=\"H2464\"*: sweet|strong=\"H5561\"* spices|strong=\"H5561\"* with|strong=\"H3068\"* pure|strong=\"H2134\"* frankincense|strong=\"H3828\"*. There|strong=\"H1961\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* an|strong=\"H1961\"* equal weight of|strong=\"H3068\"* each|strong=\"H3947\"*." + }, + { + "verseNum": 35, + "text": "You|strong=\"H6213\"* shall|strong=\"H2889\"* make|strong=\"H6213\"* incense|strong=\"H7004\"* of|strong=\"H4639\"* it|strong=\"H6213\"*, a|strong=\"H3068\"* perfume|strong=\"H7004\"* after the|strong=\"H6213\"* art|strong=\"H4639\"* of|strong=\"H4639\"* the|strong=\"H6213\"* perfumer|strong=\"H7543\"*, seasoned with|strong=\"H6213\"* salt|strong=\"H4414\"*, pure|strong=\"H2889\"* and|strong=\"H6213\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 36, + "text": "You|strong=\"H5414\"* shall|strong=\"H6440\"* beat|strong=\"H7833\"* some|strong=\"H4480\"* of|strong=\"H6440\"* it|strong=\"H5414\"* very|strong=\"H1854\"* small|strong=\"H1854\"*, and|strong=\"H6440\"* put|strong=\"H5414\"* some|strong=\"H4480\"* of|strong=\"H6440\"* it|strong=\"H5414\"* before|strong=\"H6440\"* the|strong=\"H6440\"* covenant in|strong=\"H6440\"* the|strong=\"H6440\"* Tent of|strong=\"H6440\"* Meeting|strong=\"H4150\"*, where|strong=\"H8033\"* I|strong=\"H5414\"* will|strong=\"H1961\"* meet|strong=\"H3259\"* with|strong=\"H6440\"* you|strong=\"H5414\"*. It|strong=\"H5414\"* shall|strong=\"H6440\"* be|strong=\"H1961\"* to|strong=\"H1961\"* you|strong=\"H5414\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 37, + "text": "You|strong=\"H6213\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* make|strong=\"H6213\"* this|strong=\"H6213\"* incense|strong=\"H7004\"*, according to|strong=\"H3068\"* its|strong=\"H6213\"* composition|strong=\"H4971\"*, for|strong=\"H6213\"* yourselves|strong=\"H3068\"*: it|strong=\"H6213\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* to|strong=\"H3068\"* you|strong=\"H6213\"* holy|strong=\"H6944\"* for|strong=\"H6213\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 38, + "text": "Whoever shall|strong=\"H5971\"* make|strong=\"H6213\"* any|strong=\"H6213\"* like|strong=\"H3644\"* that|strong=\"H5971\"*, to|strong=\"H6213\"* smell|strong=\"H7306\"* of|strong=\"H5971\"* it|strong=\"H6213\"*, he|strong=\"H6213\"* shall|strong=\"H5971\"* be|strong=\"H5971\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* his|strong=\"H6213\"* people|strong=\"H5971\"*.”" + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Behold|strong=\"H7200\"*, I|strong=\"H7200\"* have|strong=\"H1121\"* called|strong=\"H7121\"* by|strong=\"H7121\"* name|strong=\"H8034\"* Bezalel|strong=\"H1212\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uri, the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hur|strong=\"H2354\"*, of|strong=\"H1121\"* the|strong=\"H7200\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H3605\"* have|strong=\"H3605\"* filled|strong=\"H4390\"* him|strong=\"H3605\"* with|strong=\"H4390\"* the|strong=\"H3605\"* Spirit|strong=\"H7307\"* of|strong=\"H7307\"* God|strong=\"H2451\"*, in|strong=\"H4399\"* wisdom|strong=\"H2451\"*, and|strong=\"H2451\"* in|strong=\"H4399\"* understanding|strong=\"H8394\"*, and|strong=\"H2451\"* in|strong=\"H4399\"* knowledge|strong=\"H1847\"*, and|strong=\"H2451\"* in|strong=\"H4399\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H7307\"* workmanship|strong=\"H4399\"*," + }, + { + "verseNum": 4, + "text": "to|strong=\"H6213\"* devise|strong=\"H2803\"* skillful|strong=\"H2803\"* works|strong=\"H6213\"*, to|strong=\"H6213\"* work|strong=\"H6213\"* in|strong=\"H6213\"* gold|strong=\"H2091\"*, and|strong=\"H3701\"* in|strong=\"H6213\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* in|strong=\"H6213\"* bronze|strong=\"H5178\"*," + }, + { + "verseNum": 5, + "text": "and|strong=\"H6086\"* in|strong=\"H6213\"* cutting|strong=\"H2799\"* of|strong=\"H4390\"* stones for|strong=\"H6213\"* setting, and|strong=\"H6086\"* in|strong=\"H6213\"* carving|strong=\"H2799\"* of|strong=\"H4390\"* wood|strong=\"H6086\"*, to|strong=\"H6213\"* work|strong=\"H4399\"* in|strong=\"H6213\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H4390\"* workmanship|strong=\"H4399\"*." + }, + { + "verseNum": 6, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H5414\"* myself|strong=\"H3820\"* have|strong=\"H1121\"* appointed|strong=\"H5414\"* with|strong=\"H6213\"* him|strong=\"H5414\"* Oholiab, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahisamach, of|strong=\"H1121\"* the|strong=\"H3605\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*; and|strong=\"H1121\"* in|strong=\"H6213\"* the|strong=\"H3605\"* heart|strong=\"H3820\"* of|strong=\"H1121\"* all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1121\"* wise-hearted I|strong=\"H5414\"* have|strong=\"H1121\"* put|strong=\"H5414\"* wisdom|strong=\"H2451\"*, that|strong=\"H3605\"* they|strong=\"H6213\"* may|strong=\"H6213\"* make|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H5414\"* have|strong=\"H1121\"* commanded|strong=\"H6680\"* you|strong=\"H5414\"*:" + }, + { + "verseNum": 7, + "text": "the|strong=\"H3605\"* Tent of|strong=\"H3627\"* Meeting|strong=\"H4150\"*, the|strong=\"H3605\"* ark of|strong=\"H3627\"* the|strong=\"H3605\"* covenant, the|strong=\"H3605\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* that|strong=\"H3605\"* is|strong=\"H3605\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* furniture|strong=\"H3627\"* of|strong=\"H3627\"* the|strong=\"H3605\"* Tent," + }, + { + "verseNum": 8, + "text": "the|strong=\"H3605\"* table|strong=\"H7979\"* and|strong=\"H4196\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, the|strong=\"H3605\"* pure|strong=\"H2889\"* lamp stand with|strong=\"H3627\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H3627\"* incense|strong=\"H7004\"*," + }, + { + "verseNum": 9, + "text": "the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H3627\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* with|strong=\"H3627\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, the|strong=\"H3605\"* basin|strong=\"H3595\"* and|strong=\"H4196\"* its|strong=\"H3605\"* base|strong=\"H3653\"*," + }, + { + "verseNum": 10, + "text": "the|strong=\"H3548\"* finely|strong=\"H8278\"* worked garments—the|strong=\"H3548\"* holy|strong=\"H6944\"* garments for|strong=\"H1121\"* Aaron the|strong=\"H3548\"* priest|strong=\"H3548\"*, the|strong=\"H3548\"* garments of|strong=\"H1121\"* his|strong=\"H3548\"* sons|strong=\"H1121\"* to|strong=\"H1121\"* minister|strong=\"H3547\"* in|strong=\"H1121\"* the|strong=\"H3548\"* priest|strong=\"H3548\"*’s office—" + }, + { + "verseNum": 11, + "text": "the|strong=\"H3605\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, and|strong=\"H8081\"* the|strong=\"H3605\"* incense|strong=\"H7004\"* of|strong=\"H3605\"* sweet|strong=\"H5561\"* spices|strong=\"H5561\"* for|strong=\"H6213\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*: according to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H6680\"* have|strong=\"H3605\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"* they|strong=\"H6213\"* shall|strong=\"H6213\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"*, saying," + }, + { + "verseNum": 13, + "text": "“Speak|strong=\"H1696\"* also|strong=\"H3068\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘Most|strong=\"H3068\"* certainly|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* Sabbaths|strong=\"H7676\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* sign between|strong=\"H3045\"* me|strong=\"H8104\"* and|strong=\"H1121\"* you|strong=\"H3588\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H1931\"* sanctifies|strong=\"H6942\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H3588\"* shall|strong=\"H5971\"* keep|strong=\"H8104\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* therefore|strong=\"H3588\"*, for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* holy|strong=\"H6944\"* to|strong=\"H4191\"* you|strong=\"H3588\"*. Everyone|strong=\"H3605\"* who|strong=\"H3605\"* profanes|strong=\"H2490\"* it|strong=\"H1931\"* shall|strong=\"H5971\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*; for|strong=\"H3588\"* whoever|strong=\"H3605\"* does|strong=\"H6213\"* any|strong=\"H3605\"* work|strong=\"H4399\"* therein|strong=\"H7130\"*, that|strong=\"H3588\"* soul|strong=\"H5315\"* shall|strong=\"H5971\"* be|strong=\"H4191\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* among|strong=\"H7130\"* his|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 15, + "text": "Six|strong=\"H8337\"* days|strong=\"H3117\"* shall|strong=\"H3068\"* work|strong=\"H4399\"* be|strong=\"H4191\"* done|strong=\"H6213\"*, but|strong=\"H3605\"* on|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* is|strong=\"H3068\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* of|strong=\"H3068\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"*, holy|strong=\"H6944\"* to|strong=\"H4191\"* Yahweh|strong=\"H3068\"*. Whoever|strong=\"H3605\"* does|strong=\"H6213\"* any|strong=\"H3605\"* work|strong=\"H4399\"* on|strong=\"H3117\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"* shall|strong=\"H3068\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 16, + "text": "Therefore|strong=\"H6213\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H1121\"* keep|strong=\"H8104\"* the|strong=\"H6213\"* Sabbath|strong=\"H7676\"*, to|strong=\"H3478\"* observe|strong=\"H8104\"* the|strong=\"H6213\"* Sabbath|strong=\"H7676\"* throughout|strong=\"H1755\"* their|strong=\"H6213\"* generations|strong=\"H1755\"*, for|strong=\"H6213\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 17, + "text": "It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* sign between me|strong=\"H6213\"* and|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* forever|strong=\"H5769\"*; for|strong=\"H3588\"* in|strong=\"H3478\"* six|strong=\"H8337\"* days|strong=\"H3117\"* Yahweh|strong=\"H3068\"* made|strong=\"H6213\"* heaven|strong=\"H8064\"* and|strong=\"H1121\"* earth|strong=\"H8064\"*, and|strong=\"H1121\"* on|strong=\"H3117\"* the|strong=\"H3588\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* he|strong=\"H1931\"* rested|strong=\"H7673\"*, and|strong=\"H1121\"* was|strong=\"H3068\"* refreshed|strong=\"H5314\"*.’”" + }, + { + "verseNum": 18, + "text": "When|strong=\"H3615\"* he|strong=\"H5414\"* finished|strong=\"H3615\"* speaking|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H5414\"* on|strong=\"H1696\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*, he|strong=\"H5414\"* gave|strong=\"H5414\"* Moses|strong=\"H4872\"* the|strong=\"H5414\"* two|strong=\"H8147\"* tablets|strong=\"H3871\"* of|strong=\"H2022\"* the|strong=\"H5414\"* covenant, stone tablets|strong=\"H3871\"*, written|strong=\"H3789\"* with|strong=\"H1696\"* God|strong=\"H5414\"*’s finger." + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* the|strong=\"H6440\"* people|strong=\"H5971\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Moses|strong=\"H4872\"* delayed coming|strong=\"H5927\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"*, the|strong=\"H6440\"* people|strong=\"H5971\"* gathered|strong=\"H6950\"* themselves|strong=\"H6213\"* together|strong=\"H6950\"* to|strong=\"H3381\"* Aaron, and|strong=\"H6965\"* said to|strong=\"H3381\"* him|strong=\"H6440\"*, “Come|strong=\"H5927\"*, make|strong=\"H6213\"* us|strong=\"H5921\"* gods, which|strong=\"H5971\"* shall|strong=\"H5971\"* go|strong=\"H3212\"* before|strong=\"H6440\"* us|strong=\"H5921\"*; for|strong=\"H3588\"* as|strong=\"H1961\"* for|strong=\"H3588\"* this|strong=\"H2088\"* Moses|strong=\"H4872\"*, the|strong=\"H6440\"* man|strong=\"H2088\"* who|strong=\"H5971\"* brought|strong=\"H5927\"* us|strong=\"H5921\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H2022\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H2022\"* Egypt|strong=\"H4714\"*, we|strong=\"H3068\"* don’t know|strong=\"H3045\"* what|strong=\"H4100\"* has|strong=\"H1961\"* become|strong=\"H1961\"* of|strong=\"H2022\"* him|strong=\"H6440\"*.”" + }, + { + "verseNum": 2, + "text": "Aaron said to|strong=\"H1121\"* them|strong=\"H1121\"*, “Take|strong=\"H1121\"* off|strong=\"H6561\"* the|strong=\"H1121\"* golden|strong=\"H2091\"* rings|strong=\"H5141\"*, which|strong=\"H2091\"* are|strong=\"H1121\"* in|strong=\"H1121\"* the|strong=\"H1121\"* ears of|strong=\"H1121\"* your|strong=\"H1121\"* wives, of|strong=\"H1121\"* your|strong=\"H1121\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H1121\"* daughters|strong=\"H1323\"*, and|strong=\"H1121\"* bring|strong=\"H1323\"* them|strong=\"H1121\"* to|strong=\"H1121\"* me|strong=\"H6561\"*.”" + }, + { + "verseNum": 3, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* took|strong=\"H5971\"* off|strong=\"H6561\"* the|strong=\"H3605\"* golden|strong=\"H2091\"* rings|strong=\"H5141\"* which|strong=\"H5971\"* were|strong=\"H5971\"* in|strong=\"H5971\"* their|strong=\"H3605\"* ears, and|strong=\"H2091\"* brought them to|strong=\"H5971\"* Aaron." + }, + { + "verseNum": 4, + "text": "He|strong=\"H6213\"* received|strong=\"H3947\"* what|strong=\"H6213\"* they|strong=\"H6213\"* handed|strong=\"H3027\"* him|strong=\"H3027\"*, fashioned|strong=\"H3335\"* it|strong=\"H6213\"* with|strong=\"H6213\"* an|strong=\"H6213\"* engraving tool|strong=\"H2747\"*, and|strong=\"H3478\"* made|strong=\"H6213\"* it|strong=\"H6213\"* a|strong=\"H3068\"* molded calf|strong=\"H5695\"*. Then|strong=\"H3947\"* they|strong=\"H6213\"* said, “These|strong=\"H6213\"* are|strong=\"H3478\"* your|strong=\"H3947\"* gods, Israel|strong=\"H3478\"*, which|strong=\"H3478\"* brought|strong=\"H5927\"* you|strong=\"H3947\"* up|strong=\"H5927\"* out|strong=\"H3947\"* of|strong=\"H3027\"* the|strong=\"H3947\"* land of|strong=\"H3027\"* Egypt|strong=\"H4714\"*.”" + }, + { + "verseNum": 5, + "text": "When|strong=\"H7200\"* Aaron saw|strong=\"H7200\"* this|strong=\"H7200\"*, he|strong=\"H3068\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* before|strong=\"H6440\"* it|strong=\"H7121\"*; and|strong=\"H3068\"* Aaron made|strong=\"H1129\"* a|strong=\"H3068\"* proclamation|strong=\"H7121\"*, and|strong=\"H3068\"* said|strong=\"H7121\"*, “Tomorrow|strong=\"H4279\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* a|strong=\"H3068\"* feast|strong=\"H2282\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 6, + "text": "They|strong=\"H5971\"* rose|strong=\"H6965\"* up|strong=\"H5927\"* early|strong=\"H7925\"* on|strong=\"H3427\"* the|strong=\"H5927\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, and|strong=\"H6965\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"*, and|strong=\"H6965\"* brought|strong=\"H5927\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*; and|strong=\"H6965\"* the|strong=\"H5927\"* people|strong=\"H5971\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* to|strong=\"H5927\"* eat and|strong=\"H6965\"* to|strong=\"H5927\"* drink|strong=\"H8354\"*, and|strong=\"H6965\"* rose|strong=\"H6965\"* up|strong=\"H5927\"* to|strong=\"H5927\"* play|strong=\"H6711\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “Go|strong=\"H3212\"*, get|strong=\"H3212\"* down|strong=\"H3381\"*; for|strong=\"H3588\"* your|strong=\"H3068\"* people|strong=\"H5971\"*, whom|strong=\"H5971\"* you|strong=\"H3588\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H3212\"* of|strong=\"H3068\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, have|strong=\"H3068\"* corrupted|strong=\"H7843\"* themselves|strong=\"H1696\"*!" + }, + { + "verseNum": 8, + "text": "They|strong=\"H6213\"* have|strong=\"H3478\"* turned|strong=\"H5493\"* away|strong=\"H5493\"* quickly|strong=\"H4118\"* out|strong=\"H4480\"* of|strong=\"H1870\"* the|strong=\"H6213\"* way|strong=\"H1870\"* which|strong=\"H3478\"* I|strong=\"H6680\"* commanded|strong=\"H6680\"* them|strong=\"H6213\"*. They|strong=\"H6213\"* have|strong=\"H3478\"* made|strong=\"H6213\"* themselves|strong=\"H7812\"* a|strong=\"H3068\"* molded calf|strong=\"H5695\"*, and|strong=\"H3478\"* have|strong=\"H3478\"* worshiped|strong=\"H7812\"* it|strong=\"H6213\"*, and|strong=\"H3478\"* have|strong=\"H3478\"* sacrificed|strong=\"H2076\"* to|strong=\"H3478\"* it|strong=\"H6213\"*, and|strong=\"H3478\"* said, ‘These|strong=\"H6213\"* are|strong=\"H3478\"* your|strong=\"H6213\"* gods, Israel|strong=\"H3478\"*, which|strong=\"H3478\"* brought|strong=\"H5927\"* you|strong=\"H6680\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H1870\"* the|strong=\"H6213\"* land of|strong=\"H1870\"* Egypt|strong=\"H4714\"*.’”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “I|strong=\"H2009\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* these|strong=\"H2088\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* behold|strong=\"H2009\"*, they|strong=\"H3068\"* are|strong=\"H5971\"* a|strong=\"H3068\"* stiff-necked people|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* leave|strong=\"H3240\"* me|strong=\"H6213\"* alone|strong=\"H3240\"*, that|strong=\"H1471\"* my|strong=\"H3615\"* wrath may|strong=\"H1471\"* burn|strong=\"H2734\"* hot|strong=\"H2734\"* against|strong=\"H2734\"* them|strong=\"H6213\"*, and|strong=\"H1419\"* that|strong=\"H1471\"* I|strong=\"H6258\"* may|strong=\"H1471\"* consume|strong=\"H3615\"* them|strong=\"H6213\"*; and|strong=\"H1419\"* I|strong=\"H6258\"* will|strong=\"H1471\"* make|strong=\"H6213\"* of|strong=\"H3615\"* you|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* nation|strong=\"H1471\"*.”" + }, + { + "verseNum": 11, + "text": "Moses|strong=\"H4872\"* begged Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H4872\"* said|strong=\"H3318\"*, “Yahweh|strong=\"H3068\"*, why|strong=\"H4100\"* does|strong=\"H4100\"* your|strong=\"H3068\"* wrath burn|strong=\"H2734\"* hot|strong=\"H2734\"* against|strong=\"H2734\"* your|strong=\"H3068\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* you|strong=\"H6440\"* have|strong=\"H3068\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"* with|strong=\"H3068\"* great|strong=\"H1419\"* power|strong=\"H3027\"* and|strong=\"H4872\"* with|strong=\"H3068\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*?" + }, + { + "verseNum": 12, + "text": "Why|strong=\"H4100\"* should|strong=\"H4100\"* the|strong=\"H6440\"* Egyptians|strong=\"H4713\"* talk, saying, ‘He|strong=\"H5921\"* brought|strong=\"H3318\"* them|strong=\"H5921\"* out|strong=\"H3318\"* for|strong=\"H5921\"* evil|strong=\"H7451\"*, to|strong=\"H7725\"* kill|strong=\"H2026\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H6440\"* mountains|strong=\"H2022\"*, and|strong=\"H7725\"* to|strong=\"H7725\"* consume|strong=\"H3615\"* them|strong=\"H5921\"* from|strong=\"H7725\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H2022\"* the|strong=\"H6440\"* earth’? Turn|strong=\"H7725\"* from|strong=\"H7725\"* your|strong=\"H5921\"* fierce|strong=\"H2740\"* wrath|strong=\"H2740\"*, and|strong=\"H7725\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* this|strong=\"H6440\"* evil|strong=\"H7451\"* against|strong=\"H5921\"* your|strong=\"H5921\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 13, + "text": "Remember|strong=\"H2142\"* Abraham, Isaac|strong=\"H3327\"*, and|strong=\"H3478\"* Israel|strong=\"H3478\"*, your|strong=\"H3605\"* servants|strong=\"H5650\"*, to|strong=\"H1696\"* whom you|strong=\"H5414\"* swore|strong=\"H7650\"* by|strong=\"H7650\"* your|strong=\"H3605\"* own|strong=\"H5769\"* self, and|strong=\"H3478\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5414\"*, ‘I|strong=\"H5414\"* will|strong=\"H3478\"* multiply|strong=\"H7235\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"*+ 32:13 or, seed* as|strong=\"H5414\"* the|strong=\"H3605\"* stars|strong=\"H3556\"* of|strong=\"H5650\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* this|strong=\"H2063\"* land|strong=\"H8064\"* that|strong=\"H3605\"* I|strong=\"H5414\"* have|strong=\"H5650\"* spoken|strong=\"H1696\"* of|strong=\"H5650\"* I|strong=\"H5414\"* will|strong=\"H3478\"* give|strong=\"H5414\"* to|strong=\"H1696\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"*, and|strong=\"H3478\"* they|strong=\"H3478\"* shall|strong=\"H3478\"* inherit|strong=\"H5157\"* it|strong=\"H5414\"* forever|strong=\"H5769\"*.’”" + }, + { + "verseNum": 14, + "text": "So|strong=\"H6213\"* Yahweh|strong=\"H3068\"* turned|strong=\"H3068\"* away|strong=\"H7451\"* from|strong=\"H5921\"* the|strong=\"H5921\"* evil|strong=\"H7451\"* which|strong=\"H3068\"* he|strong=\"H6213\"* said|strong=\"H1696\"* he|strong=\"H6213\"* would|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H1696\"* his|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 15, + "text": "Moses|strong=\"H4872\"* turned|strong=\"H6437\"*, and|strong=\"H4872\"* went|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H4480\"* mountain|strong=\"H2022\"*, with|strong=\"H3381\"* the|strong=\"H4480\"* two|strong=\"H8147\"* tablets|strong=\"H3871\"* of|strong=\"H3027\"* the|strong=\"H4480\"* covenant in|strong=\"H3789\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*; tablets|strong=\"H3871\"* that|strong=\"H4480\"* were|strong=\"H1992\"* written|strong=\"H3789\"* on|strong=\"H3027\"* both|strong=\"H8147\"* their|strong=\"H1992\"* sides|strong=\"H5676\"*. They|strong=\"H1992\"* were|strong=\"H1992\"* written|strong=\"H3789\"* on|strong=\"H3027\"* one|strong=\"H2088\"* side|strong=\"H5676\"* and|strong=\"H4872\"* on|strong=\"H3027\"* the|strong=\"H4480\"* other|strong=\"H2088\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H5921\"* tablets|strong=\"H3871\"* were|strong=\"H1992\"* the|strong=\"H5921\"* work|strong=\"H4639\"* of|strong=\"H5921\"* God, and|strong=\"H4639\"* the|strong=\"H5921\"* writing|strong=\"H4385\"* was|strong=\"H1931\"* the|strong=\"H5921\"* writing|strong=\"H4385\"* of|strong=\"H5921\"* God, engraved|strong=\"H2801\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tablets|strong=\"H3871\"*." + }, + { + "verseNum": 17, + "text": "When|strong=\"H8085\"* Joshua|strong=\"H3091\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* people|strong=\"H5971\"* as|strong=\"H5971\"* they|strong=\"H5971\"* shouted|strong=\"H7452\"*, he|strong=\"H4872\"* said|strong=\"H8085\"* to|strong=\"H8085\"* Moses|strong=\"H4872\"*, “There is|strong=\"H6963\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* war|strong=\"H4421\"* in|strong=\"H8085\"* the|strong=\"H8085\"* camp|strong=\"H4264\"*.”" + }, + { + "verseNum": 18, + "text": "He said|strong=\"H6030\"*, “It isn’t the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* those|strong=\"H8085\"* who shout|strong=\"H6963\"* for|strong=\"H1369\"* victory. It is|strong=\"H6963\"* not|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* those|strong=\"H8085\"* who cry|strong=\"H6963\"* for|strong=\"H1369\"* being overcome|strong=\"H2476\"*; but|strong=\"H6030\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* those|strong=\"H8085\"* who sing|strong=\"H6030\"* that|strong=\"H8085\"* I|strong=\"H8085\"* hear|strong=\"H8085\"*.”" + }, + { + "verseNum": 19, + "text": "As|strong=\"H1961\"* soon|strong=\"H7126\"* as|strong=\"H1961\"* he|strong=\"H3027\"* came|strong=\"H1961\"* near|strong=\"H7126\"* to|strong=\"H1961\"* the|strong=\"H7200\"* camp|strong=\"H4264\"*, he|strong=\"H3027\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* calf|strong=\"H5695\"* and|strong=\"H4872\"* the|strong=\"H7200\"* dancing|strong=\"H4246\"*. Then|strong=\"H1961\"* Moses|strong=\"H4872\"*’ anger grew hot|strong=\"H2734\"*, and|strong=\"H4872\"* he|strong=\"H3027\"* threw|strong=\"H7993\"* the|strong=\"H7200\"* tablets|strong=\"H3871\"* out|strong=\"H7993\"* of|strong=\"H3027\"* his|strong=\"H7200\"* hands|strong=\"H3027\"*, and|strong=\"H4872\"* broke|strong=\"H7665\"* them|strong=\"H3027\"* beneath|strong=\"H8478\"* the|strong=\"H7200\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H5704\"* took|strong=\"H3947\"* the|strong=\"H6440\"* calf|strong=\"H5695\"* which|strong=\"H4325\"* they|strong=\"H5921\"* had|strong=\"H3478\"* made|strong=\"H6213\"*, and|strong=\"H1121\"* burned|strong=\"H8313\"* it|strong=\"H5921\"* with|strong=\"H8313\"* fire, ground|strong=\"H2912\"* it|strong=\"H5921\"* to|strong=\"H5704\"* powder|strong=\"H1854\"*, and|strong=\"H1121\"* scattered|strong=\"H2219\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H6440\"* water|strong=\"H4325\"*, and|strong=\"H1121\"* made|strong=\"H6213\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* drink|strong=\"H8248\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H5921\"* Aaron, “What|strong=\"H4100\"* did|strong=\"H6213\"* these|strong=\"H2088\"* people|strong=\"H5971\"* do|strong=\"H6213\"* to|strong=\"H5921\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5971\"* brought|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* sin|strong=\"H2401\"* on|strong=\"H5921\"* them|strong=\"H5921\"*?”" + }, + { + "verseNum": 22, + "text": "Aaron said, “Don’t let the|strong=\"H3588\"* anger of|strong=\"H5971\"* my|strong=\"H3045\"* lord grow hot|strong=\"H2734\"*. You|strong=\"H3588\"* know|strong=\"H3045\"* the|strong=\"H3588\"* people|strong=\"H5971\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H5971\"* set on|strong=\"H7451\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* said to|strong=\"H3212\"* me|strong=\"H6440\"*, ‘Make|strong=\"H6213\"* us|strong=\"H6213\"* gods, which|strong=\"H4100\"* shall|strong=\"H4714\"* go|strong=\"H3212\"* before|strong=\"H6440\"* us|strong=\"H6213\"*. As|strong=\"H1961\"* for|strong=\"H3588\"* this|strong=\"H2088\"* Moses|strong=\"H4872\"*, the|strong=\"H6440\"* man|strong=\"H2088\"* who|strong=\"H2088\"* brought|strong=\"H5927\"* us|strong=\"H6213\"* up|strong=\"H5927\"* out|strong=\"H6213\"* of|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H6440\"* Egypt|strong=\"H4714\"*, we|strong=\"H3068\"* don’t know|strong=\"H3045\"* what|strong=\"H4100\"* has|strong=\"H1961\"* become|strong=\"H1961\"* of|strong=\"H6440\"* him|strong=\"H6440\"*.’" + }, + { + "verseNum": 24, + "text": "I|strong=\"H5414\"* said|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H5414\"*, ‘Whoever|strong=\"H4310\"* has|strong=\"H4310\"* any|strong=\"H5414\"* gold|strong=\"H2091\"*, let|strong=\"H5414\"* them|strong=\"H5414\"* take|strong=\"H3318\"* it|strong=\"H5414\"* off|strong=\"H6561\"*.’ So|strong=\"H5414\"* they|strong=\"H5414\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3318\"* me|strong=\"H5414\"*; and|strong=\"H2091\"* I|strong=\"H5414\"* threw|strong=\"H7993\"* it|strong=\"H5414\"* into|strong=\"H3318\"* the|strong=\"H5414\"* fire, and|strong=\"H2091\"* out|strong=\"H3318\"* came|strong=\"H3318\"* this|strong=\"H2088\"* calf|strong=\"H5695\"*.”" + }, + { + "verseNum": 25, + "text": "When|strong=\"H3588\"* Moses|strong=\"H4872\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H7200\"* people|strong=\"H5971\"* were|strong=\"H5971\"* out|strong=\"H7200\"* of|strong=\"H5971\"* control|strong=\"H6544\"*, (for|strong=\"H3588\"* Aaron had|strong=\"H4872\"* let|strong=\"H6544\"* them|strong=\"H7200\"* lose control|strong=\"H6544\"*, causing derision|strong=\"H8103\"* among|strong=\"H5971\"* their|strong=\"H7200\"* enemies|strong=\"H6965\"*)," + }, + { + "verseNum": 26, + "text": "then|strong=\"H4872\"* Moses|strong=\"H4872\"* stood|strong=\"H5975\"* in|strong=\"H3068\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*, and|strong=\"H1121\"* said, “Whoever|strong=\"H3605\"* is|strong=\"H3068\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s side, come to|strong=\"H3068\"* me|strong=\"H5975\"*!”" + }, + { + "verseNum": 27, + "text": "He|strong=\"H3068\"* said to|strong=\"H7725\"* them|strong=\"H5921\"*, “Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘Every|strong=\"H7725\"* man|strong=\"H5674\"* put|strong=\"H7760\"* his|strong=\"H7760\"* sword|strong=\"H2719\"* on|strong=\"H5921\"* his|strong=\"H7760\"* thigh|strong=\"H3409\"*, and|strong=\"H3478\"* go|strong=\"H5674\"* back|strong=\"H7725\"* and|strong=\"H3478\"* forth|strong=\"H5674\"* from|strong=\"H7725\"* gate|strong=\"H8179\"* to|strong=\"H7725\"* gate|strong=\"H8179\"* throughout|strong=\"H5921\"* the|strong=\"H5921\"* camp|strong=\"H4264\"*, and|strong=\"H3478\"* every|strong=\"H7725\"* man|strong=\"H5674\"* kill|strong=\"H2026\"* his|strong=\"H7760\"* brother|strong=\"H7453\"*, and|strong=\"H3478\"* every|strong=\"H7725\"* man|strong=\"H5674\"* his|strong=\"H7760\"* companion|strong=\"H7453\"*, and|strong=\"H3478\"* every|strong=\"H7725\"* man|strong=\"H5674\"* his|strong=\"H7760\"* neighbor|strong=\"H7453\"*.’”" + }, + { + "verseNum": 28, + "text": "The|strong=\"H6213\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"* did|strong=\"H6213\"* according|strong=\"H4480\"* to|strong=\"H6213\"* the|strong=\"H6213\"* word|strong=\"H1697\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*. About|strong=\"H1697\"* three|strong=\"H7969\"* thousand men|strong=\"H1121\"* fell|strong=\"H5307\"* of|strong=\"H1121\"* the|strong=\"H6213\"* people|strong=\"H5971\"* that|strong=\"H5971\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 29, + "text": "Moses|strong=\"H4872\"* said, “Consecrate|strong=\"H4390\"* yourselves|strong=\"H3027\"* today|strong=\"H3117\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* every|strong=\"H3117\"* man|strong=\"H1121\"* was|strong=\"H3068\"* against|strong=\"H5921\"* his|strong=\"H5414\"* son|strong=\"H1121\"* and|strong=\"H1121\"* against|strong=\"H5921\"* his|strong=\"H5414\"* brother, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 30, + "text": "On|strong=\"H3068\"* the|strong=\"H3068\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, Moses|strong=\"H4872\"* said to|strong=\"H3068\"* the|strong=\"H3068\"* people|strong=\"H5971\"*, “You|strong=\"H5971\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"* a|strong=\"H3068\"* great|strong=\"H1419\"* sin|strong=\"H2403\"*. Now|strong=\"H6258\"* I|strong=\"H6258\"* will|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Perhaps I|strong=\"H6258\"* shall|strong=\"H3068\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H1157\"* your|strong=\"H3068\"* sin|strong=\"H2403\"*.”" + }, + { + "verseNum": 31, + "text": "Moses|strong=\"H4872\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, and|strong=\"H4872\"* said, “Oh, this|strong=\"H2088\"* people|strong=\"H5971\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* a|strong=\"H3068\"* great|strong=\"H1419\"* sin|strong=\"H2398\"*, and|strong=\"H4872\"* have|strong=\"H3068\"* made|strong=\"H6213\"* themselves|strong=\"H6213\"* gods of|strong=\"H3068\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 32, + "text": "Yet|strong=\"H6258\"* now|strong=\"H6258\"*, if you|strong=\"H5375\"* will|strong=\"H2403\"*, forgive|strong=\"H5375\"* their|strong=\"H5375\"* sin|strong=\"H2403\"*—and|strong=\"H2403\"* if not|strong=\"H5375\"*, please|strong=\"H4994\"* blot|strong=\"H4229\"* me|strong=\"H4994\"* out|strong=\"H4229\"* of|strong=\"H5612\"* your|strong=\"H5375\"* book|strong=\"H5612\"* which|strong=\"H5612\"* you|strong=\"H5375\"* have|strong=\"H2403\"* written|strong=\"H3789\"*.”" + }, + { + "verseNum": 33, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Whoever|strong=\"H4310\"* has|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* me|strong=\"H2398\"*, I|strong=\"H3068\"* will|strong=\"H3068\"* blot|strong=\"H4229\"* him|strong=\"H4872\"* out|strong=\"H4229\"* of|strong=\"H3068\"* my|strong=\"H3068\"* book|strong=\"H5612\"*." + }, + { + "verseNum": 34, + "text": "Now|strong=\"H6258\"* go|strong=\"H3212\"*, lead|strong=\"H5148\"* the|strong=\"H6440\"* people|strong=\"H5971\"* to|strong=\"H1696\"* the|strong=\"H6440\"* place of|strong=\"H3117\"* which|strong=\"H5971\"* I|strong=\"H3117\"* have|strong=\"H5971\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H6440\"*. Behold|strong=\"H2009\"*, my|strong=\"H5921\"* angel|strong=\"H4397\"* shall|strong=\"H5971\"* go|strong=\"H3212\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. Nevertheless|strong=\"H2009\"*, in|strong=\"H5921\"* the|strong=\"H6440\"* day|strong=\"H3117\"* when|strong=\"H3117\"* I|strong=\"H3117\"* punish|strong=\"H6485\"*, I|strong=\"H3117\"* will|strong=\"H5971\"* punish|strong=\"H6485\"* them|strong=\"H5921\"* for|strong=\"H5921\"* their|strong=\"H6440\"* sin|strong=\"H2403\"*.”" + }, + { + "verseNum": 35, + "text": "Yahweh|strong=\"H3068\"* struck|strong=\"H5062\"* the|strong=\"H5921\"* people|strong=\"H5971\"*, because|strong=\"H5921\"* of|strong=\"H3068\"* what|strong=\"H6213\"* they|strong=\"H3068\"* did|strong=\"H6213\"* with|strong=\"H3068\"* the|strong=\"H5921\"* calf|strong=\"H5695\"*, which|strong=\"H3068\"* Aaron made|strong=\"H6213\"*." + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “Depart|strong=\"H3212\"*, go|strong=\"H3212\"* up|strong=\"H5927\"* from|strong=\"H5927\"* here|strong=\"H2088\"*, you|strong=\"H5414\"* and|strong=\"H4872\"* the|strong=\"H5414\"* people|strong=\"H5971\"* that|strong=\"H5971\"* you|strong=\"H5414\"* have|strong=\"H3068\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H5414\"* of|strong=\"H3068\"* the|strong=\"H5414\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, to|strong=\"H1696\"* the|strong=\"H5414\"* land of|strong=\"H3068\"* which|strong=\"H3068\"* I|strong=\"H5414\"* swore|strong=\"H7650\"* to|strong=\"H1696\"* Abraham, to|strong=\"H1696\"* Isaac|strong=\"H3327\"*, and|strong=\"H4872\"* to|strong=\"H1696\"* Jacob|strong=\"H3290\"*, saying|strong=\"H1696\"*, ‘I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H1696\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*.’" + }, + { + "verseNum": 2, + "text": "I|strong=\"H6440\"* will|strong=\"H4397\"* send|strong=\"H7971\"* an|strong=\"H7971\"* angel|strong=\"H4397\"* before|strong=\"H6440\"* you|strong=\"H6440\"*; and|strong=\"H7971\"* I|strong=\"H6440\"* will|strong=\"H4397\"* drive|strong=\"H1644\"* out|strong=\"H7971\"* the|strong=\"H6440\"* Canaanite|strong=\"H3669\"*, the|strong=\"H6440\"* Amorite, and|strong=\"H7971\"* the|strong=\"H6440\"* Hittite|strong=\"H2850\"*, and|strong=\"H7971\"* the|strong=\"H6440\"* Perizzite|strong=\"H6522\"*, the|strong=\"H6440\"* Hivite|strong=\"H2340\"*, and|strong=\"H7971\"* the|strong=\"H6440\"* Jebusite|strong=\"H2983\"*." + }, + { + "verseNum": 3, + "text": "Go|strong=\"H5927\"* to|strong=\"H5927\"* a|strong=\"H3068\"* land|strong=\"H7130\"* flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H5971\"* honey|strong=\"H1706\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5971\"* not|strong=\"H3808\"* go|strong=\"H5927\"* up|strong=\"H5927\"* among|strong=\"H7130\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* a|strong=\"H3068\"* stiff-necked people|strong=\"H5971\"*, lest|strong=\"H6435\"* I|strong=\"H3588\"* consume|strong=\"H3615\"* you|strong=\"H3588\"* on|strong=\"H1870\"* the|strong=\"H3588\"* way|strong=\"H1870\"*.”" + }, + { + "verseNum": 4, + "text": "When|strong=\"H8085\"* the|strong=\"H5921\"* people|strong=\"H5971\"* heard|strong=\"H8085\"* this|strong=\"H2088\"* evil|strong=\"H7451\"* news, they|strong=\"H3808\"* mourned; and|strong=\"H5971\"* no|strong=\"H3808\"* one|strong=\"H2088\"* put|strong=\"H7896\"* on|strong=\"H5921\"* his|strong=\"H8085\"* jewelry|strong=\"H5716\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* said to|strong=\"H3381\"* Moses|strong=\"H4872\"*, “Tell|strong=\"H3045\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, ‘You|strong=\"H5921\"* are|strong=\"H5971\"* a|strong=\"H3068\"* stiff-necked people|strong=\"H5971\"*. If|strong=\"H1121\"* I|strong=\"H5921\"* were|strong=\"H3478\"* to|strong=\"H3381\"* go|strong=\"H5927\"* up|strong=\"H5927\"* among|strong=\"H7130\"* you|strong=\"H5921\"* for|strong=\"H5921\"* one|strong=\"H1121\"* moment|strong=\"H7281\"*, I|strong=\"H5921\"* would|strong=\"H3068\"* consume|strong=\"H3615\"* you|strong=\"H5921\"*. Therefore|strong=\"H5921\"* now|strong=\"H6258\"* take|strong=\"H6213\"* off|strong=\"H5921\"* your|strong=\"H3068\"* jewelry|strong=\"H5716\"* from|strong=\"H3381\"* you|strong=\"H5921\"*, that|strong=\"H3045\"* I|strong=\"H5921\"* may|strong=\"H3068\"* know|strong=\"H3045\"* what|strong=\"H4100\"* to|strong=\"H3381\"* do|strong=\"H6213\"* to|strong=\"H3381\"* you|strong=\"H5921\"*.’”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H5337\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* stripped|strong=\"H5337\"* themselves of|strong=\"H1121\"* their|strong=\"H5337\"* jewelry|strong=\"H5716\"* from|strong=\"H3478\"* Mount|strong=\"H2022\"* Horeb|strong=\"H2722\"* onward." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H1961\"* Moses|strong=\"H4872\"* used|strong=\"H1961\"* to|strong=\"H3318\"* take|strong=\"H3947\"* the|strong=\"H3605\"* tent and|strong=\"H4872\"* pitch|strong=\"H5186\"* it|strong=\"H7121\"* outside|strong=\"H2351\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*, far|strong=\"H7368\"* away|strong=\"H3947\"* from|strong=\"H4480\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*, and|strong=\"H4872\"* he|strong=\"H3068\"* called|strong=\"H7121\"* it|strong=\"H7121\"* “The|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*.” Everyone|strong=\"H3605\"* who|strong=\"H3605\"* sought|strong=\"H1245\"* Yahweh|strong=\"H3068\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, which|strong=\"H3068\"* was|strong=\"H3068\"* outside|strong=\"H2351\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H1961\"* Moses|strong=\"H4872\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H5704\"* the|strong=\"H3605\"* Tent, all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H6965\"* stood|strong=\"H5324\"*, everyone|strong=\"H3605\"* at|strong=\"H1961\"* their|strong=\"H3605\"* tent door|strong=\"H6607\"*, and|strong=\"H6965\"* watched Moses|strong=\"H4872\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H1961\"* gone|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3605\"* Tent." + }, + { + "verseNum": 9, + "text": "When|strong=\"H1961\"* Moses|strong=\"H4872\"* entered|strong=\"H5975\"* into|strong=\"H3381\"* the|strong=\"H4872\"* Tent, the|strong=\"H4872\"* pillar|strong=\"H5982\"* of|strong=\"H5982\"* cloud|strong=\"H6051\"* descended|strong=\"H3381\"*, stood|strong=\"H5975\"* at|strong=\"H5975\"* the|strong=\"H4872\"* door|strong=\"H6607\"* of|strong=\"H5982\"* the|strong=\"H4872\"* Tent, and|strong=\"H4872\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* with|strong=\"H5973\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* saw|strong=\"H7200\"* the|strong=\"H3605\"* pillar|strong=\"H5982\"* of|strong=\"H5971\"* cloud|strong=\"H6051\"* stand|strong=\"H5975\"* at|strong=\"H5975\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H5971\"* the|strong=\"H3605\"* Tent, and|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* worshiped|strong=\"H7812\"*, everyone|strong=\"H3605\"* at|strong=\"H5975\"* their|strong=\"H3605\"* tent door|strong=\"H6607\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* face|strong=\"H6440\"* to|strong=\"H1696\"* face|strong=\"H6440\"*, as|strong=\"H3068\"* a|strong=\"H3068\"* man|strong=\"H5288\"* speaks|strong=\"H1696\"* to|strong=\"H1696\"* his|strong=\"H3068\"* friend|strong=\"H7453\"*. He|strong=\"H3068\"* turned|strong=\"H7725\"* again|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H6440\"* camp|strong=\"H4264\"*, but|strong=\"H3808\"* his|strong=\"H3068\"* servant|strong=\"H5288\"* Joshua|strong=\"H3091\"*, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, a|strong=\"H3068\"* young|strong=\"H5288\"* man|strong=\"H5288\"*, didn’t depart|strong=\"H4185\"* from|strong=\"H7725\"* the|strong=\"H6440\"* Tent." + }, + { + "verseNum": 12, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, “Behold|strong=\"H7200\"*, you|strong=\"H7971\"* tell|strong=\"H3045\"* me|strong=\"H7971\"*, ‘Bring|strong=\"H5927\"* up|strong=\"H5927\"* this|strong=\"H2088\"* people|strong=\"H5971\"*;’ and|strong=\"H4872\"* you|strong=\"H7971\"* haven’t let|strong=\"H7971\"* me|strong=\"H7971\"* know|strong=\"H3045\"* whom|strong=\"H5971\"* you|strong=\"H7971\"* will|strong=\"H3068\"* send|strong=\"H7971\"* with|strong=\"H5973\"* me|strong=\"H7971\"*. Yet|strong=\"H1571\"* you|strong=\"H7971\"* have|strong=\"H3068\"* said, ‘I|strong=\"H3045\"* know|strong=\"H3045\"* you|strong=\"H7971\"* by|strong=\"H3068\"* name|strong=\"H8034\"*, and|strong=\"H4872\"* you|strong=\"H7971\"* have|strong=\"H3068\"* also|strong=\"H1571\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H3068\"* my|strong=\"H3068\"* sight|strong=\"H5869\"*.’" + }, + { + "verseNum": 13, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, if|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H4672\"* your|strong=\"H7200\"* sight|strong=\"H5869\"*, please|strong=\"H4994\"* show|strong=\"H7200\"* me|strong=\"H4994\"* your|strong=\"H7200\"* way|strong=\"H1870\"*, now|strong=\"H6258\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H4994\"* know|strong=\"H3045\"* you|strong=\"H3588\"*, so|strong=\"H4616\"* that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H4994\"* find|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H4672\"* your|strong=\"H7200\"* sight|strong=\"H5869\"*; and|strong=\"H5971\"* consider|strong=\"H7200\"* that|strong=\"H3588\"* this|strong=\"H2088\"* nation|strong=\"H1471\"* is|strong=\"H2088\"* your|strong=\"H7200\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H6440\"* said, “My|strong=\"H5117\"* presence|strong=\"H6440\"* will|strong=\"H6440\"* go|strong=\"H3212\"* with|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H3212\"* I|strong=\"H6440\"* will|strong=\"H6440\"* give|strong=\"H5117\"* you|strong=\"H6440\"* rest|strong=\"H5117\"*.”" + }, + { + "verseNum": 15, + "text": "Moses said to|strong=\"H1980\"* him|strong=\"H6440\"*, “If your|strong=\"H6440\"* presence|strong=\"H6440\"* doesn’t go|strong=\"H1980\"* with|strong=\"H1980\"* me|strong=\"H6440\"*, don’t carry|strong=\"H5927\"* us|strong=\"H6440\"* up|strong=\"H5927\"* from|strong=\"H6440\"* here|strong=\"H2088\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* how|strong=\"H4100\"* would|strong=\"H5971\"* people|strong=\"H5971\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* your|strong=\"H3605\"* sight|strong=\"H5869\"*, I|strong=\"H3588\"* and|strong=\"H3212\"* your|strong=\"H3605\"* people|strong=\"H5971\"*? Isn’t it|strong=\"H5921\"* that|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H3212\"* with|strong=\"H5973\"* us|strong=\"H5921\"*, so|strong=\"H3808\"* that|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H5971\"* separated|strong=\"H6395\"*, I|strong=\"H3588\"* and|strong=\"H3212\"* your|strong=\"H3605\"* people|strong=\"H5971\"*, from|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H5971\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* earth?”" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “I|strong=\"H3588\"* will|strong=\"H3068\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* also|strong=\"H1571\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H3068\"* my|strong=\"H3068\"* sight|strong=\"H5869\"*, and|strong=\"H4872\"* I|strong=\"H3588\"* know|strong=\"H3045\"* you|strong=\"H3588\"* by|strong=\"H3068\"* name|strong=\"H8034\"*.”" + }, + { + "verseNum": 18, + "text": "Moses said, “Please|strong=\"H4994\"* show|strong=\"H7200\"* me|strong=\"H4994\"* your|strong=\"H7200\"* glory|strong=\"H3519\"*.”" + }, + { + "verseNum": 19, + "text": "He|strong=\"H3068\"* said|strong=\"H7121\"*, “I|strong=\"H5921\"* will|strong=\"H3068\"* make|strong=\"H2603\"* all|strong=\"H3605\"* my|strong=\"H3605\"* goodness|strong=\"H2898\"* pass|strong=\"H5674\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* proclaim|strong=\"H7121\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. I|strong=\"H5921\"* will|strong=\"H3068\"* be|strong=\"H3068\"* gracious|strong=\"H2603\"* to|strong=\"H3068\"* whom|strong=\"H6440\"* I|strong=\"H5921\"* will|strong=\"H3068\"* be|strong=\"H3068\"* gracious|strong=\"H2603\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* show|strong=\"H7355\"* mercy|strong=\"H7355\"* on|strong=\"H5921\"* whom|strong=\"H6440\"* I|strong=\"H5921\"* will|strong=\"H3068\"* show|strong=\"H7355\"* mercy|strong=\"H7355\"*.”" + }, + { + "verseNum": 20, + "text": "He|strong=\"H3588\"* said, “You|strong=\"H3588\"* cannot|strong=\"H3808\"* see|strong=\"H7200\"* my|strong=\"H7200\"* face|strong=\"H6440\"*, for|strong=\"H3588\"* man|strong=\"H6440\"* may|strong=\"H3201\"* not|strong=\"H3808\"* see|strong=\"H7200\"* me|strong=\"H6440\"* and|strong=\"H6440\"* live|strong=\"H2425\"*.”" + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* also|strong=\"H3068\"* said, “Behold|strong=\"H2009\"*, there|strong=\"H2009\"* is|strong=\"H3068\"* a|strong=\"H3068\"* place|strong=\"H4725\"* by|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H3068\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* stand|strong=\"H5324\"* on|strong=\"H5921\"* the|strong=\"H5921\"* rock|strong=\"H6697\"*." + }, + { + "verseNum": 22, + "text": "It|strong=\"H7760\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, while|strong=\"H5704\"* my|strong=\"H7760\"* glory|strong=\"H3519\"* passes|strong=\"H5674\"* by|strong=\"H5921\"*, that|strong=\"H5704\"* I|strong=\"H5704\"* will|strong=\"H1961\"* put|strong=\"H7760\"* you|strong=\"H5921\"* in|strong=\"H5921\"* a|strong=\"H3068\"* cleft|strong=\"H5366\"* of|strong=\"H3709\"* the|strong=\"H5921\"* rock|strong=\"H6697\"*, and|strong=\"H3709\"* will|strong=\"H1961\"* cover|strong=\"H5526\"* you|strong=\"H5921\"* with|strong=\"H5921\"* my|strong=\"H7760\"* hand|strong=\"H3709\"* until|strong=\"H5704\"* I|strong=\"H5704\"* have|strong=\"H1961\"* passed|strong=\"H5674\"* by|strong=\"H5921\"*;" + }, + { + "verseNum": 23, + "text": "then|strong=\"H7200\"* I|strong=\"H7200\"* will|strong=\"H3808\"* take|strong=\"H5493\"* away|strong=\"H5493\"* my|strong=\"H7200\"* hand|strong=\"H3709\"*, and|strong=\"H6440\"* you|strong=\"H6440\"* will|strong=\"H3808\"* see|strong=\"H7200\"* my|strong=\"H7200\"* back|strong=\"H5493\"*; but|strong=\"H3808\"* my|strong=\"H7200\"* face|strong=\"H6440\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* seen|strong=\"H7200\"*.”" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Chisel two|strong=\"H8147\"* stone tablets|strong=\"H3871\"* like|strong=\"H1961\"* the|strong=\"H5921\"* first|strong=\"H7223\"*. I|strong=\"H5921\"* will|strong=\"H3068\"* write|strong=\"H3789\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tablets|strong=\"H3871\"* the|strong=\"H5921\"* words|strong=\"H1697\"* that|strong=\"H3068\"* were|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* first|strong=\"H7223\"* tablets|strong=\"H3871\"*, which|strong=\"H3068\"* you|strong=\"H5921\"* broke|strong=\"H7665\"*." + }, + { + "verseNum": 2, + "text": "Be|strong=\"H1961\"* ready|strong=\"H3559\"* by|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*, and|strong=\"H7218\"* come|strong=\"H5927\"* up|strong=\"H5927\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"* to|strong=\"H5927\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*, and|strong=\"H7218\"* present|strong=\"H5324\"* yourself|strong=\"H5324\"* there|strong=\"H8033\"* to|strong=\"H5927\"* me|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H2022\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 3, + "text": "No|strong=\"H3808\"* one|strong=\"H3605\"* shall|strong=\"H3808\"* come|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* you|strong=\"H3605\"* or|strong=\"H3808\"* be|strong=\"H3808\"* seen|strong=\"H7200\"* anywhere|strong=\"H3605\"* on|strong=\"H7200\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"*. Do|strong=\"H3605\"* not|strong=\"H3808\"* let|strong=\"H3808\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"* or|strong=\"H3808\"* herds|strong=\"H1241\"* graze|strong=\"H7462\"* in|strong=\"H6629\"* front|strong=\"H4136\"* of|strong=\"H2022\"* that|strong=\"H7200\"* mountain|strong=\"H2022\"*.”" + }, + { + "verseNum": 4, + "text": "He|strong=\"H3068\"* chiseled two|strong=\"H8147\"* tablets|strong=\"H3871\"* of|strong=\"H3068\"* stone like|strong=\"H2022\"* the|strong=\"H3947\"* first|strong=\"H7223\"*; then|strong=\"H3947\"* Moses|strong=\"H4872\"* rose|strong=\"H7925\"* up|strong=\"H5927\"* early|strong=\"H7925\"* in|strong=\"H3068\"* the|strong=\"H3947\"* morning|strong=\"H1242\"*, and|strong=\"H4872\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H3027\"*, and|strong=\"H4872\"* took|strong=\"H3947\"* in|strong=\"H3068\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* two|strong=\"H8147\"* stone tablets|strong=\"H3871\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* descended|strong=\"H3381\"* in|strong=\"H3068\"* the|strong=\"H3068\"* cloud|strong=\"H6051\"*, and|strong=\"H3068\"* stood|strong=\"H3320\"* with|strong=\"H5973\"* him|strong=\"H7121\"* there|strong=\"H8033\"*, and|strong=\"H3068\"* proclaimed|strong=\"H7121\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* passed|strong=\"H5674\"* by|strong=\"H5921\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H3068\"* proclaimed|strong=\"H7121\"*, “Yahweh|strong=\"H3068\"*! Yahweh|strong=\"H3068\"*, a|strong=\"H3068\"* merciful|strong=\"H7349\"* and|strong=\"H3068\"* gracious|strong=\"H2587\"* God|strong=\"H3068\"*, slow to|strong=\"H3068\"* anger|strong=\"H6440\"*, and|strong=\"H3068\"* abundant|strong=\"H7227\"* in|strong=\"H5921\"* loving kindness|strong=\"H2617\"* and|strong=\"H3068\"* truth," + }, + { + "verseNum": 7, + "text": "keeping|strong=\"H5341\"* loving kindness|strong=\"H2617\"* for|strong=\"H5921\"* thousands, forgiving|strong=\"H5375\"* iniquity|strong=\"H5771\"* and|strong=\"H1121\"* disobedience and|strong=\"H1121\"* sin|strong=\"H2403\"*; and|strong=\"H1121\"* who|strong=\"H1121\"* will|strong=\"H1121\"* by|strong=\"H5921\"* no|strong=\"H3808\"* means|strong=\"H5352\"* clear|strong=\"H5352\"* the|strong=\"H5921\"* guilty|strong=\"H5771\"*, visiting|strong=\"H6485\"* the|strong=\"H5921\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H5921\"* fathers on|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"*’s children|strong=\"H1121\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* third|strong=\"H8029\"* and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fourth|strong=\"H7256\"* generation|strong=\"H8029\"*.”" + }, + { + "verseNum": 8, + "text": "Moses|strong=\"H4872\"* hurried|strong=\"H4116\"* and|strong=\"H4872\"* bowed|strong=\"H7812\"* his|strong=\"H4872\"* head|strong=\"H6915\"* toward the|strong=\"H4872\"* earth, and|strong=\"H4872\"* worshiped|strong=\"H7812\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H1931\"* said, “If|strong=\"H3588\"* now|strong=\"H4994\"* I|strong=\"H3588\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H3212\"* your|strong=\"H3588\"* sight|strong=\"H5869\"*, Lord, please|strong=\"H4994\"* let|strong=\"H4994\"* the|strong=\"H3588\"* Lord go|strong=\"H3212\"* among|strong=\"H7130\"* us|strong=\"H4994\"*, even|strong=\"H3588\"* though|strong=\"H3588\"* this|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* stiff-necked people|strong=\"H5971\"*; pardon|strong=\"H5545\"* our|strong=\"H3588\"* iniquity|strong=\"H5771\"* and|strong=\"H3212\"* our|strong=\"H3588\"* sin|strong=\"H2403\"*, and|strong=\"H3212\"* take|strong=\"H5157\"* us|strong=\"H4994\"* for|strong=\"H3588\"* your|strong=\"H3588\"* inheritance|strong=\"H5157\"*.”" + }, + { + "verseNum": 10, + "text": "He|strong=\"H1931\"* said, “Behold|strong=\"H2009\"*, I|strong=\"H3588\"* make|strong=\"H6213\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"*: before|strong=\"H5048\"* all|strong=\"H3605\"* your|strong=\"H3068\"* people|strong=\"H5971\"* I|strong=\"H3588\"* will|strong=\"H3068\"* do|strong=\"H6213\"* marvels|strong=\"H6381\"*, such|strong=\"H1931\"* as|strong=\"H6213\"* have|strong=\"H3068\"* not|strong=\"H3808\"* been|strong=\"H1254\"* worked|strong=\"H6213\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth, nor|strong=\"H3808\"* in|strong=\"H3068\"* any|strong=\"H3605\"* nation|strong=\"H1471\"*; and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* among|strong=\"H7130\"* whom|strong=\"H5971\"* you|strong=\"H3588\"* are|strong=\"H5971\"* shall|strong=\"H3068\"* see|strong=\"H7200\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* an|strong=\"H6213\"* awesome|strong=\"H3372\"* thing|strong=\"H3588\"* that|strong=\"H3588\"* I|strong=\"H3588\"* do|strong=\"H6213\"* with|strong=\"H5973\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 11, + "text": "Observe|strong=\"H8104\"* that|strong=\"H3117\"* which|strong=\"H3117\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6440\"* today|strong=\"H3117\"*. Behold|strong=\"H2005\"*, I|strong=\"H3117\"* will|strong=\"H3117\"* drive|strong=\"H1644\"* out|strong=\"H1644\"* before|strong=\"H6440\"* you|strong=\"H6440\"* the|strong=\"H6440\"* Amorite, the|strong=\"H6440\"* Canaanite|strong=\"H3669\"*, the|strong=\"H6440\"* Hittite|strong=\"H2850\"*, the|strong=\"H6440\"* Perizzite|strong=\"H6522\"*, the|strong=\"H6440\"* Hivite|strong=\"H2340\"*, and|strong=\"H3117\"* the|strong=\"H6440\"* Jebusite|strong=\"H2983\"*." + }, + { + "verseNum": 12, + "text": "Be|strong=\"H1961\"* careful|strong=\"H8104\"*, lest|strong=\"H6435\"* you|strong=\"H5921\"* make|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H5921\"* land|strong=\"H7130\"* where|strong=\"H5921\"* you|strong=\"H5921\"* are|strong=\"H1961\"* going, lest|strong=\"H6435\"* it|strong=\"H5921\"* be|strong=\"H1961\"* for|strong=\"H5921\"* a|strong=\"H3068\"* snare|strong=\"H4170\"* among|strong=\"H7130\"* you|strong=\"H5921\"*;" + }, + { + "verseNum": 13, + "text": "but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3772\"* break|strong=\"H7665\"* down|strong=\"H5422\"* their|strong=\"H3588\"* altars|strong=\"H4196\"*, and|strong=\"H4196\"* dash in|strong=\"H4196\"* pieces|strong=\"H7665\"* their|strong=\"H3588\"* pillars|strong=\"H4676\"*, and|strong=\"H4196\"* you|strong=\"H3588\"* shall|strong=\"H3772\"* cut|strong=\"H3772\"* down|strong=\"H5422\"* their|strong=\"H3588\"* Asherah poles;" + }, + { + "verseNum": 14, + "text": "for|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* worship|strong=\"H7812\"* no|strong=\"H3808\"* other god|strong=\"H3068\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* is|strong=\"H3068\"* Jealous|strong=\"H7067\"*, is|strong=\"H3068\"* a|strong=\"H3068\"* jealous|strong=\"H7067\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "“Don’t make|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* the|strong=\"H7121\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H7121\"* land, lest|strong=\"H6435\"* they|strong=\"H1285\"* play|strong=\"H2181\"* the|strong=\"H7121\"* prostitute|strong=\"H2181\"* after|strong=\"H7121\"* their|strong=\"H3772\"* gods, and|strong=\"H1285\"* sacrifice|strong=\"H2077\"* to|strong=\"H7121\"* their|strong=\"H3772\"* gods, and|strong=\"H1285\"* one call|strong=\"H7121\"* you|strong=\"H6435\"* and|strong=\"H1285\"* you|strong=\"H6435\"* eat of|strong=\"H3427\"* his|strong=\"H7121\"* sacrifice|strong=\"H2077\"*;" + }, + { + "verseNum": 16, + "text": "and|strong=\"H1121\"* you|strong=\"H3947\"* take|strong=\"H3947\"* of|strong=\"H1121\"* their|strong=\"H3947\"* daughters|strong=\"H1323\"* to|strong=\"H1121\"* your|strong=\"H3947\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* their|strong=\"H3947\"* daughters|strong=\"H1323\"* play|strong=\"H2181\"* the|strong=\"H3947\"* prostitute|strong=\"H2181\"* after their|strong=\"H3947\"* gods, and|strong=\"H1121\"* make|strong=\"H3947\"* your|strong=\"H3947\"* sons|strong=\"H1121\"* play|strong=\"H2181\"* the|strong=\"H3947\"* prostitute|strong=\"H2181\"* after their|strong=\"H3947\"* gods." + }, + { + "verseNum": 17, + "text": "“You|strong=\"H6213\"* shall|strong=\"H3808\"* make|strong=\"H6213\"* no|strong=\"H3808\"* cast idols for|strong=\"H6213\"* yourselves." + }, + { + "verseNum": 18, + "text": "“You|strong=\"H3588\"* shall|strong=\"H3117\"* keep|strong=\"H8104\"* the|strong=\"H3588\"* feast|strong=\"H2282\"* of|strong=\"H3117\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*. Seven|strong=\"H7651\"* days|strong=\"H3117\"* you|strong=\"H3588\"* shall|strong=\"H3117\"* eat unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*, as|strong=\"H3117\"* I|strong=\"H3588\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*, at|strong=\"H2320\"* the|strong=\"H3588\"* time|strong=\"H3117\"* appointed|strong=\"H4150\"* in|strong=\"H3117\"* the|strong=\"H3588\"* month|strong=\"H2320\"* Abib; for|strong=\"H3588\"* in|strong=\"H3117\"* the|strong=\"H3588\"* month|strong=\"H2320\"* Abib you|strong=\"H3588\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 19, + "text": "“All|strong=\"H3605\"* that|strong=\"H3605\"* opens the|strong=\"H3605\"* womb|strong=\"H7358\"* is|strong=\"H3605\"* mine|strong=\"H2142\"*; and|strong=\"H4735\"* all|strong=\"H3605\"* your|strong=\"H3605\"* livestock|strong=\"H4735\"* that|strong=\"H3605\"* is|strong=\"H3605\"* male, the|strong=\"H3605\"* firstborn|strong=\"H6363\"* of|strong=\"H3605\"* cow|strong=\"H7794\"* and|strong=\"H4735\"* sheep|strong=\"H7716\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H6440\"* shall|strong=\"H1121\"* redeem|strong=\"H6299\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"* with|strong=\"H6440\"* a|strong=\"H3068\"* lamb|strong=\"H7716\"*. If|strong=\"H7200\"* you|strong=\"H6440\"* will|strong=\"H1121\"* not|strong=\"H3808\"* redeem|strong=\"H6299\"* it|strong=\"H7200\"*, then|strong=\"H7200\"* you|strong=\"H6440\"* shall|strong=\"H1121\"* break|strong=\"H6202\"* its|strong=\"H3605\"* neck|strong=\"H6202\"*. You|strong=\"H6440\"* shall|strong=\"H1121\"* redeem|strong=\"H6299\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* your|strong=\"H3605\"* sons|strong=\"H1121\"*. No|strong=\"H3808\"* one|strong=\"H3605\"* shall|strong=\"H1121\"* appear|strong=\"H7200\"* before|strong=\"H6440\"* me|strong=\"H6440\"* empty|strong=\"H7387\"*." + }, + { + "verseNum": 21, + "text": "“Six|strong=\"H8337\"* days|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* work|strong=\"H5647\"*, but|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H5647\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* rest|strong=\"H7673\"*: in|strong=\"H3117\"* plowing|strong=\"H2758\"* time|strong=\"H3117\"* and|strong=\"H3117\"* in|strong=\"H3117\"* harvest|strong=\"H7105\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* rest|strong=\"H7673\"*." + }, + { + "verseNum": 22, + "text": "“You|strong=\"H6213\"* shall|strong=\"H8141\"* observe|strong=\"H6213\"* the|strong=\"H6213\"* feast|strong=\"H2282\"* of|strong=\"H8141\"* weeks|strong=\"H7620\"* with|strong=\"H6213\"* the|strong=\"H6213\"* first|strong=\"H1061\"* fruits|strong=\"H1061\"* of|strong=\"H8141\"* wheat|strong=\"H2406\"* harvest|strong=\"H7105\"*, and|strong=\"H6213\"* the|strong=\"H6213\"* feast|strong=\"H2282\"* of|strong=\"H8141\"* harvest|strong=\"H7105\"* at|strong=\"H6213\"* the|strong=\"H6213\"* year|strong=\"H8141\"*’s end|strong=\"H8622\"*." + }, + { + "verseNum": 23, + "text": "Three|strong=\"H7969\"* times|strong=\"H6471\"* in|strong=\"H8141\"* the|strong=\"H3605\"* year|strong=\"H8141\"* all|strong=\"H3605\"* your|strong=\"H3068\"* males|strong=\"H2138\"* shall|strong=\"H3068\"* appear|strong=\"H7200\"* before|strong=\"H6440\"* the|strong=\"H3605\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* drive|strong=\"H3423\"* out|strong=\"H3423\"* nations|strong=\"H1471\"* before|strong=\"H6440\"* you|strong=\"H3588\"* and|strong=\"H3068\"* enlarge|strong=\"H7337\"* your|strong=\"H3068\"* borders|strong=\"H1366\"*; neither|strong=\"H3808\"* shall|strong=\"H3068\"* any|strong=\"H6440\"* man|strong=\"H6440\"* desire|strong=\"H2530\"* your|strong=\"H3068\"* land|strong=\"H6440\"* when|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* appear|strong=\"H7200\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, your|strong=\"H3068\"* God|strong=\"H3068\"*, three|strong=\"H7969\"* times|strong=\"H6471\"* in|strong=\"H8141\"* the|strong=\"H6440\"* year|strong=\"H8141\"*." + }, + { + "verseNum": 25, + "text": "“You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* offer|strong=\"H7819\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H2077\"* my|strong=\"H5921\"* sacrifice|strong=\"H2077\"* with|strong=\"H5921\"* leavened|strong=\"H2557\"* bread|strong=\"H2557\"*. The|strong=\"H5921\"* sacrifice|strong=\"H2077\"* of|strong=\"H2077\"* the|strong=\"H5921\"* feast|strong=\"H2282\"* of|strong=\"H2077\"* the|strong=\"H5921\"* Passover|strong=\"H6453\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* left|strong=\"H3885\"* to|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 26, + "text": "“You|strong=\"H3808\"* shall|strong=\"H3068\"* bring the|strong=\"H3068\"* first|strong=\"H7225\"* of|strong=\"H1004\"* the|strong=\"H3068\"* first|strong=\"H7225\"* fruits|strong=\"H1061\"* of|strong=\"H1004\"* your|strong=\"H3068\"* ground to|strong=\"H3068\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 27, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3478\"* Moses|strong=\"H4872\"*, “Write|strong=\"H3789\"* these|strong=\"H3789\"* words|strong=\"H1697\"*; for|strong=\"H3588\"* in|strong=\"H5921\"* accordance|strong=\"H5921\"* with|strong=\"H3068\"* these|strong=\"H3789\"* words|strong=\"H1697\"* I|strong=\"H3588\"* have|strong=\"H3068\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* you|strong=\"H3588\"* and|strong=\"H4872\"* with|strong=\"H3068\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 28, + "text": "He|strong=\"H3117\"* was|strong=\"H3068\"* there|strong=\"H8033\"* with|strong=\"H5973\"* Yahweh|strong=\"H3068\"* forty days|strong=\"H3117\"* and|strong=\"H3068\"* forty nights|strong=\"H3915\"*; he|strong=\"H3117\"* neither|strong=\"H3808\"* ate bread|strong=\"H3899\"*, nor|strong=\"H3808\"* drank|strong=\"H8354\"* water|strong=\"H4325\"*. He|strong=\"H3117\"* wrote|strong=\"H3789\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tablets|strong=\"H3871\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H3068\"* the|strong=\"H5921\"* covenant|strong=\"H1285\"*, the|strong=\"H5921\"* ten|strong=\"H6235\"* commandments|strong=\"H1697\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"H3588\"* Moses|strong=\"H4872\"* came|strong=\"H1961\"* down|strong=\"H3381\"* from|strong=\"H4480\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"* with|strong=\"H1696\"* the|strong=\"H6440\"* two|strong=\"H8147\"* tablets|strong=\"H3871\"* of|strong=\"H3027\"* the|strong=\"H6440\"* covenant in|strong=\"H1696\"* Moses|strong=\"H4872\"*’ hand|strong=\"H3027\"*, when|strong=\"H3588\"* he|strong=\"H3588\"* came|strong=\"H1961\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"*, Moses|strong=\"H4872\"* didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H6440\"* skin|strong=\"H5785\"* of|strong=\"H3027\"* his|strong=\"H6440\"* face|strong=\"H6440\"* shone|strong=\"H7160\"* by|strong=\"H3027\"* reason|strong=\"H6440\"* of|strong=\"H3027\"* his|strong=\"H6440\"* speaking|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 30, + "text": "When|strong=\"H7200\"* Aaron and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* saw|strong=\"H7200\"* Moses|strong=\"H4872\"*, behold|strong=\"H2009\"*, the|strong=\"H3605\"* skin|strong=\"H5785\"* of|strong=\"H1121\"* his|strong=\"H3605\"* face|strong=\"H6440\"* shone|strong=\"H7160\"*; and|strong=\"H1121\"* they|strong=\"H3478\"* were|strong=\"H3478\"* afraid|strong=\"H3372\"* to|strong=\"H3478\"* come|strong=\"H5066\"* near|strong=\"H5066\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 31, + "text": "Moses|strong=\"H4872\"* called|strong=\"H7121\"* to|strong=\"H1696\"* them|strong=\"H7725\"*, and|strong=\"H4872\"* Aaron and|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* rulers|strong=\"H5387\"* of|strong=\"H5712\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* returned|strong=\"H7725\"* to|strong=\"H1696\"* him|strong=\"H7121\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 32, + "text": "Afterward all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* came|strong=\"H5066\"* near|strong=\"H5066\"*, and|strong=\"H1121\"* he|strong=\"H3651\"* gave|strong=\"H6680\"* them|strong=\"H6680\"* all|strong=\"H3605\"* the|strong=\"H3605\"* commandments that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"* with|strong=\"H3068\"* him|strong=\"H6680\"* on|strong=\"H3068\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*." + }, + { + "verseNum": 33, + "text": "When|strong=\"H3615\"* Moses|strong=\"H4872\"* was|strong=\"H4872\"* done|strong=\"H3615\"* speaking|strong=\"H1696\"* with|strong=\"H1696\"* them|strong=\"H5414\"*, he|strong=\"H5414\"* put|strong=\"H5414\"* a|strong=\"H3068\"* veil|strong=\"H4533\"* on|strong=\"H5921\"* his|strong=\"H5414\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 34, + "text": "But|strong=\"H1696\"* when|strong=\"H3318\"* Moses|strong=\"H4872\"* went|strong=\"H3318\"* in|strong=\"H3478\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* with|strong=\"H3068\"* him|strong=\"H6440\"*, he|strong=\"H5704\"* took|strong=\"H5493\"* the|strong=\"H6440\"* veil|strong=\"H4533\"* off|strong=\"H5493\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* came|strong=\"H3318\"* out|strong=\"H3318\"*; and|strong=\"H1121\"* he|strong=\"H5704\"* came|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* that|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H5704\"* was|strong=\"H3068\"* commanded|strong=\"H6680\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* saw|strong=\"H7200\"* Moses|strong=\"H4872\"*’ face|strong=\"H6440\"*, that|strong=\"H3588\"* the|strong=\"H6440\"* skin|strong=\"H5785\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*’ face|strong=\"H6440\"* shone|strong=\"H7160\"*; so|strong=\"H7725\"* Moses|strong=\"H4872\"* put|strong=\"H7725\"* the|strong=\"H6440\"* veil|strong=\"H4533\"* on|strong=\"H5921\"* his|strong=\"H7725\"* face|strong=\"H6440\"* again|strong=\"H7725\"*, until|strong=\"H5704\"* he|strong=\"H3588\"* went|strong=\"H3478\"* in|strong=\"H5921\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "Moses|strong=\"H4872\"* assembled|strong=\"H6950\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* said|strong=\"H1697\"* to|strong=\"H3478\"* them|strong=\"H6213\"*, “These|strong=\"H6213\"* are|strong=\"H1121\"* the|strong=\"H3605\"* words|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"*, that|strong=\"H3605\"* you|strong=\"H6680\"* should|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 2, + "text": "‘Six|strong=\"H8337\"* days|strong=\"H3117\"* shall|strong=\"H3068\"* work|strong=\"H4399\"* be|strong=\"H1961\"* done|strong=\"H6213\"*, but|strong=\"H1961\"* on|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* there|strong=\"H1961\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* day|strong=\"H3117\"* for|strong=\"H6213\"* you|strong=\"H3605\"*, a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* of|strong=\"H3068\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"* to|strong=\"H4191\"* Yahweh|strong=\"H3068\"*: whoever|strong=\"H3605\"* does|strong=\"H6213\"* any|strong=\"H3605\"* work|strong=\"H4399\"* in|strong=\"H3068\"* it|strong=\"H6213\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3605\"* shall|strong=\"H3117\"* kindle|strong=\"H1197\"* no|strong=\"H3808\"* fire throughout|strong=\"H3605\"* your|strong=\"H3605\"* habitations|strong=\"H4186\"* on|strong=\"H3117\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*.’”" + }, + { + "verseNum": 4, + "text": "Moses|strong=\"H4872\"* spoke|strong=\"H1697\"* to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1697\"*, “This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3605\"* thing|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 5, + "text": "‘Take|strong=\"H3947\"* from|strong=\"H3947\"* among you|strong=\"H3605\"* an|strong=\"H3947\"* offering|strong=\"H8641\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Whoever|strong=\"H3605\"* is|strong=\"H3068\"* of|strong=\"H3068\"* a|strong=\"H3068\"* willing|strong=\"H5081\"* heart|strong=\"H3820\"*, let him|strong=\"H3947\"* bring|strong=\"H3947\"* it|strong=\"H3947\"* as|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s offering|strong=\"H8641\"*: gold|strong=\"H2091\"*, silver|strong=\"H3701\"*, bronze|strong=\"H5178\"*," + }, + { + "verseNum": 6, + "text": "blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, fine|strong=\"H8336\"* linen|strong=\"H8336\"*, goats|strong=\"H5795\"*’ hair," + }, + { + "verseNum": 7, + "text": "rams’ skins|strong=\"H5785\"* dyed|strong=\"H5785\"* red, sea cow hides|strong=\"H5785\"*, acacia|strong=\"H7848\"* wood|strong=\"H6086\"*," + }, + { + "verseNum": 8, + "text": "oil|strong=\"H8081\"* for|strong=\"H8081\"* the light|strong=\"H3974\"*, spices|strong=\"H1314\"* for|strong=\"H8081\"* the anointing|strong=\"H4888\"* oil|strong=\"H8081\"* and|strong=\"H8081\"* for|strong=\"H8081\"* the sweet|strong=\"H5561\"* incense|strong=\"H7004\"*," + }, + { + "verseNum": 9, + "text": "onyx|strong=\"H7718\"* stones, and|strong=\"H4394\"* stones to be set|strong=\"H4394\"* for|strong=\"H4394\"* the|strong=\"H2833\"* ephod and|strong=\"H4394\"* for|strong=\"H4394\"* the|strong=\"H2833\"* breastplate|strong=\"H2833\"*." + }, + { + "verseNum": 10, + "text": "“‘Let every|strong=\"H3605\"* wise-hearted man|strong=\"H2450\"* among you|strong=\"H6680\"* come, and|strong=\"H3068\"* make|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"*:" + }, + { + "verseNum": 11, + "text": "the|strong=\"H4908\"* tabernacle|strong=\"H4908\"*, its outer covering|strong=\"H4372\"*, its roof, its clasps|strong=\"H7165\"*, its boards|strong=\"H7175\"*, its bars|strong=\"H1280\"*, its pillars|strong=\"H5982\"*, and|strong=\"H4908\"* its sockets;" + }, + { + "verseNum": 12, + "text": "the|strong=\"H6532\"* ark, and|strong=\"H4539\"* its poles, the|strong=\"H6532\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"*, the|strong=\"H6532\"* veil|strong=\"H6532\"* of|strong=\"H6532\"* the|strong=\"H6532\"* screen|strong=\"H4539\"*;" + }, + { + "verseNum": 13, + "text": "the|strong=\"H3605\"* table|strong=\"H7979\"* with|strong=\"H6440\"* its|strong=\"H3605\"* poles and|strong=\"H3899\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, and|strong=\"H3899\"* the|strong=\"H3605\"* show bread|strong=\"H3899\"*;" + }, + { + "verseNum": 14, + "text": "the lamp|strong=\"H5216\"* stand also for|strong=\"H3627\"* the light|strong=\"H3974\"*, with|strong=\"H3627\"* its|strong=\"H3627\"* vessels|strong=\"H3627\"*, its|strong=\"H3627\"* lamps|strong=\"H5216\"*, and|strong=\"H8081\"* the oil|strong=\"H8081\"* for|strong=\"H3627\"* the light|strong=\"H3974\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"H4196\"* the|strong=\"H4908\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* incense|strong=\"H7004\"* with|strong=\"H4908\"* its poles, the|strong=\"H4908\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, the|strong=\"H4908\"* sweet|strong=\"H5561\"* incense|strong=\"H7004\"*, the|strong=\"H4908\"* screen|strong=\"H4539\"* for|strong=\"H4196\"* the|strong=\"H4908\"* door|strong=\"H6607\"*, at|strong=\"H6607\"* the|strong=\"H4908\"* door|strong=\"H6607\"* of|strong=\"H4196\"* the|strong=\"H4908\"* tabernacle|strong=\"H4908\"*;" + }, + { + "verseNum": 16, + "text": "the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H3627\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, with|strong=\"H3627\"* its|strong=\"H3605\"* grating|strong=\"H4345\"* of|strong=\"H3627\"* bronze|strong=\"H5178\"*, its|strong=\"H3605\"* poles, and|strong=\"H4196\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, the|strong=\"H3605\"* basin|strong=\"H3595\"* and|strong=\"H4196\"* its|strong=\"H3605\"* base|strong=\"H3653\"*;" + }, + { + "verseNum": 17, + "text": "the|strong=\"H8179\"* hangings|strong=\"H7050\"* of|strong=\"H8179\"* the|strong=\"H8179\"* court|strong=\"H2691\"*, its pillars|strong=\"H5982\"*, their sockets, and|strong=\"H8179\"* the|strong=\"H8179\"* screen|strong=\"H4539\"* for the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* the|strong=\"H8179\"* court|strong=\"H2691\"*;" + }, + { + "verseNum": 18, + "text": "the|strong=\"H4908\"* pins|strong=\"H3489\"* of|strong=\"H4908\"* the|strong=\"H4908\"* tabernacle|strong=\"H4908\"*, the|strong=\"H4908\"* pins|strong=\"H3489\"* of|strong=\"H4908\"* the|strong=\"H4908\"* court|strong=\"H2691\"*, and|strong=\"H4908\"* their cords|strong=\"H4340\"*;" + }, + { + "verseNum": 19, + "text": "the|strong=\"H3548\"* finely|strong=\"H8278\"* worked garments for|strong=\"H1121\"* ministering|strong=\"H8334\"* in|strong=\"H1121\"* the|strong=\"H3548\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*—the|strong=\"H3548\"* holy|strong=\"H6944\"* garments for|strong=\"H1121\"* Aaron the|strong=\"H3548\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* the|strong=\"H3548\"* garments of|strong=\"H1121\"* his|strong=\"H8334\"* sons|strong=\"H1121\"*—to|strong=\"H1121\"* minister|strong=\"H8334\"* in|strong=\"H1121\"* the|strong=\"H3548\"* priest|strong=\"H3548\"*’s office.’”" + }, + { + "verseNum": 20, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* departed|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3605\"* presence|strong=\"H6440\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"H3068\"* came|strong=\"H3068\"*, everyone|strong=\"H3605\"* whose|strong=\"H3605\"* heart|strong=\"H3820\"* stirred|strong=\"H5375\"* him|strong=\"H3605\"* up|strong=\"H5375\"*, and|strong=\"H3068\"* everyone|strong=\"H3605\"* whom his|strong=\"H3605\"* spirit|strong=\"H7307\"* made|strong=\"H4399\"* willing|strong=\"H5068\"*, and|strong=\"H3068\"* brought|strong=\"H5375\"* Yahweh|strong=\"H3068\"*’s offering|strong=\"H8641\"* for|strong=\"H3068\"* the|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, and|strong=\"H3068\"* for|strong=\"H3068\"* all|strong=\"H3605\"* of|strong=\"H3068\"* its|strong=\"H3605\"* service|strong=\"H5656\"*, and|strong=\"H3068\"* for|strong=\"H3068\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* garments." + }, + { + "verseNum": 22, + "text": "They|strong=\"H3068\"* came|strong=\"H3068\"*, both|strong=\"H3605\"* men|strong=\"H3605\"* and|strong=\"H3068\"* women, as|strong=\"H3068\"* many as|strong=\"H3068\"* were|strong=\"H3627\"* willing-hearted, and|strong=\"H3068\"* brought|strong=\"H3068\"* brooches|strong=\"H2397\"*, earrings|strong=\"H5141\"*, signet|strong=\"H2885\"* rings|strong=\"H2885\"*, and|strong=\"H3068\"* armlets, all|strong=\"H3605\"* jewels|strong=\"H3627\"* of|strong=\"H3068\"* gold|strong=\"H2091\"*; even|strong=\"H3068\"* every|strong=\"H3605\"* man|strong=\"H5081\"* who|strong=\"H3605\"* offered|strong=\"H5130\"* an|strong=\"H5130\"* offering|strong=\"H8573\"* of|strong=\"H3068\"* gold|strong=\"H2091\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 23, + "text": "Everyone|strong=\"H3605\"* with|strong=\"H3605\"* whom was|strong=\"H3605\"* found|strong=\"H4672\"* blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, fine|strong=\"H8336\"* linen|strong=\"H8336\"*, goats|strong=\"H5795\"*’ hair, rams’ skins|strong=\"H5785\"* dyed|strong=\"H5785\"* red|strong=\"H8144\"*, and|strong=\"H8504\"* sea cow hides|strong=\"H5785\"*, brought them|strong=\"H4672\"*." + }, + { + "verseNum": 24, + "text": "Everyone|strong=\"H3605\"* who|strong=\"H3605\"* offered|strong=\"H7311\"* an|strong=\"H4672\"* offering|strong=\"H8641\"* of|strong=\"H3068\"* silver|strong=\"H3701\"* and|strong=\"H3068\"* bronze|strong=\"H5178\"* brought|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s offering|strong=\"H8641\"*; and|strong=\"H3068\"* everyone|strong=\"H3605\"* with|strong=\"H3068\"* whom was|strong=\"H3068\"* found|strong=\"H4672\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"* for|strong=\"H3068\"* any|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H3068\"* the|strong=\"H3605\"* service|strong=\"H5656\"*, brought|strong=\"H3068\"* it|strong=\"H4672\"*." + }, + { + "verseNum": 25, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* women|strong=\"H2450\"* who|strong=\"H3605\"* were|strong=\"H3027\"* wise-hearted spun|strong=\"H2901\"* with|strong=\"H3027\"* their|strong=\"H3605\"* hands|strong=\"H3027\"*, and|strong=\"H3027\"* brought|strong=\"H3027\"* that|strong=\"H3605\"* which|strong=\"H3605\"* they|strong=\"H3605\"* had|strong=\"H3027\"* spun|strong=\"H2901\"*: the|strong=\"H3605\"* blue|strong=\"H8504\"*, the|strong=\"H3605\"* purple|strong=\"H8504\"*, the|strong=\"H3605\"* scarlet|strong=\"H8144\"*, and|strong=\"H3027\"* the|strong=\"H3605\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"*." + }, + { + "verseNum": 26, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* women whose|strong=\"H3605\"* heart|strong=\"H3820\"* stirred|strong=\"H5375\"* them|strong=\"H5375\"* up|strong=\"H5375\"* in|strong=\"H3820\"* wisdom|strong=\"H2451\"* spun|strong=\"H2901\"* the|strong=\"H3605\"* goats|strong=\"H5795\"*’ hair." + }, + { + "verseNum": 27, + "text": "The|strong=\"H2833\"* rulers|strong=\"H5387\"* brought the|strong=\"H2833\"* onyx|strong=\"H7718\"* stones and|strong=\"H5387\"* the|strong=\"H2833\"* stones to|strong=\"H5387\"* be set|strong=\"H4394\"* for|strong=\"H4394\"* the|strong=\"H2833\"* ephod and|strong=\"H5387\"* for|strong=\"H4394\"* the|strong=\"H2833\"* breastplate|strong=\"H2833\"*;" + }, + { + "verseNum": 28, + "text": "with|strong=\"H5561\"* the spice|strong=\"H1314\"* and|strong=\"H8081\"* the oil|strong=\"H8081\"* for|strong=\"H8081\"* the light|strong=\"H3974\"*, for|strong=\"H8081\"* the anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, and|strong=\"H8081\"* for|strong=\"H8081\"* the sweet|strong=\"H5561\"* incense|strong=\"H7004\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* brought|strong=\"H6213\"* a|strong=\"H3068\"* free will|strong=\"H3068\"* offering|strong=\"H5071\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*; every|strong=\"H3605\"* man|strong=\"H1121\"* and|strong=\"H1121\"* woman whose|strong=\"H1121\"* heart|strong=\"H3820\"* made|strong=\"H6213\"* them|strong=\"H3027\"* willing|strong=\"H5068\"* to|strong=\"H3478\"* bring|strong=\"H6213\"* for|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* to|strong=\"H3478\"* be|strong=\"H3027\"* made|strong=\"H6213\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 30, + "text": "Moses|strong=\"H4872\"* said|strong=\"H7121\"* to|strong=\"H3478\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “Behold|strong=\"H7200\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* called|strong=\"H7121\"* by|strong=\"H3068\"* name|strong=\"H8034\"* Bezalel|strong=\"H1212\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uri, the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hur|strong=\"H2354\"*, of|strong=\"H1121\"* the|strong=\"H7200\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"H3605\"* has|strong=\"H7307\"* filled|strong=\"H4390\"* him|strong=\"H3605\"* with|strong=\"H4390\"* the|strong=\"H3605\"* Spirit|strong=\"H7307\"* of|strong=\"H7307\"* God|strong=\"H2451\"*, in|strong=\"H4399\"* wisdom|strong=\"H2451\"*, in|strong=\"H4399\"* understanding|strong=\"H8394\"*, in|strong=\"H4399\"* knowledge|strong=\"H1847\"*, and|strong=\"H2451\"* in|strong=\"H4399\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H7307\"* workmanship|strong=\"H4399\"*;" + }, + { + "verseNum": 32, + "text": "and|strong=\"H3701\"* to|strong=\"H6213\"* make|strong=\"H6213\"* skillful|strong=\"H2803\"* works|strong=\"H6213\"*, to|strong=\"H6213\"* work|strong=\"H6213\"* in|strong=\"H6213\"* gold|strong=\"H2091\"*, in|strong=\"H6213\"* silver|strong=\"H3701\"*, in|strong=\"H6213\"* bronze|strong=\"H5178\"*," + }, + { + "verseNum": 33, + "text": "in|strong=\"H6213\"* cutting|strong=\"H2799\"* of|strong=\"H4390\"* stones for|strong=\"H6213\"* setting, and|strong=\"H6086\"* in|strong=\"H6213\"* carving|strong=\"H2799\"* of|strong=\"H4390\"* wood|strong=\"H6086\"*, to|strong=\"H6213\"* work|strong=\"H4399\"* in|strong=\"H6213\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H4390\"* skillful workmanship|strong=\"H4399\"*." + }, + { + "verseNum": 34, + "text": "He|strong=\"H1931\"* has|strong=\"H3820\"* put|strong=\"H5414\"* in|strong=\"H1121\"* his|strong=\"H5414\"* heart|strong=\"H3820\"* that|strong=\"H1931\"* he|strong=\"H1931\"* may|strong=\"H1121\"* teach|strong=\"H3384\"*, both|strong=\"H3384\"* he|strong=\"H1931\"* and|strong=\"H1121\"* Oholiab, the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahisamach, of|strong=\"H1121\"* the|strong=\"H5414\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*." + }, + { + "verseNum": 35, + "text": "He|strong=\"H6213\"* has|strong=\"H3820\"* filled|strong=\"H4390\"* them|strong=\"H6213\"* with|strong=\"H4390\"* wisdom|strong=\"H2451\"* of|strong=\"H4390\"* heart|strong=\"H3820\"* to|strong=\"H6213\"* work|strong=\"H4399\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H4390\"* workmanship|strong=\"H4399\"*, of|strong=\"H4390\"* the|strong=\"H3605\"* engraver|strong=\"H2796\"*, of|strong=\"H4390\"* the|strong=\"H3605\"* skillful|strong=\"H2803\"* workman|strong=\"H2803\"*, and|strong=\"H2451\"* of|strong=\"H4390\"* the|strong=\"H3605\"* embroiderer|strong=\"H7551\"*, in|strong=\"H6213\"* blue|strong=\"H8504\"*, in|strong=\"H6213\"* purple|strong=\"H8504\"*, in|strong=\"H6213\"* scarlet|strong=\"H8144\"*, and|strong=\"H2451\"* in|strong=\"H6213\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"*, and|strong=\"H2451\"* of|strong=\"H4390\"* the|strong=\"H3605\"* weaver|strong=\"H7551\"*, even|strong=\"H6213\"* of|strong=\"H4390\"* those|strong=\"H3605\"* who|strong=\"H3605\"* do|strong=\"H6213\"* any|strong=\"H3605\"* workmanship|strong=\"H4399\"*, and|strong=\"H2451\"* of|strong=\"H4390\"* those|strong=\"H3605\"* who|strong=\"H3605\"* make|strong=\"H6213\"* skillful|strong=\"H2803\"* works|strong=\"H6213\"*." + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "“Bezalel|strong=\"H1212\"* and|strong=\"H3068\"* Oholiab shall|strong=\"H3068\"* work|strong=\"H4399\"* with|strong=\"H3068\"* every|strong=\"H3605\"* wise-hearted man|strong=\"H2450\"*, in|strong=\"H3068\"* whom|strong=\"H1992\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* put|strong=\"H5414\"* wisdom|strong=\"H2451\"* and|strong=\"H3068\"* understanding|strong=\"H8394\"* to|strong=\"H3068\"* know|strong=\"H3045\"* how|strong=\"H3045\"* to|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"* for|strong=\"H6213\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3045\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"*.”" + }, + { + "verseNum": 2, + "text": "Moses|strong=\"H4872\"* called|strong=\"H7121\"* Bezalel|strong=\"H1212\"* and|strong=\"H4872\"* Oholiab, and|strong=\"H4872\"* every|strong=\"H3605\"* wise-hearted man|strong=\"H2450\"*, in|strong=\"H3068\"* whose|strong=\"H3605\"* heart|strong=\"H3820\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* put|strong=\"H5414\"* wisdom|strong=\"H2451\"*, even|strong=\"H6213\"* everyone|strong=\"H3605\"* whose|strong=\"H3605\"* heart|strong=\"H3820\"* stirred|strong=\"H5375\"* him|strong=\"H5414\"* up|strong=\"H5375\"* to|strong=\"H3068\"* come|strong=\"H7126\"* to|strong=\"H3068\"* the|strong=\"H3605\"* work|strong=\"H4399\"* to|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H1992\"* received|strong=\"H3947\"* from|strong=\"H6440\"* Moses|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* offering|strong=\"H8641\"* which|strong=\"H1992\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* brought|strong=\"H3947\"* for|strong=\"H6213\"* the|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H1121\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, with|strong=\"H6213\"* which|strong=\"H1992\"* to|strong=\"H3478\"* make|strong=\"H6213\"* it|strong=\"H6213\"*. They|strong=\"H1992\"* kept|strong=\"H6213\"* bringing free will|strong=\"H3478\"* offerings|strong=\"H5071\"* to|strong=\"H3478\"* him|strong=\"H6440\"* every|strong=\"H3605\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 4, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* wise|strong=\"H2450\"* men|strong=\"H2450\"*, who|strong=\"H3605\"* performed|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H3605\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, each|strong=\"H3605\"* came from|strong=\"H3605\"* his|strong=\"H3605\"* work|strong=\"H4399\"* which|strong=\"H1992\"* he|strong=\"H6213\"* did|strong=\"H6213\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"*, saying, “The|strong=\"H6213\"* people|strong=\"H5971\"* have|strong=\"H3068\"* brought|strong=\"H6213\"* much|strong=\"H7235\"* more|strong=\"H7235\"* than|strong=\"H7235\"* enough|strong=\"H1767\"* for|strong=\"H6213\"* the|strong=\"H6213\"* service|strong=\"H5656\"* of|strong=\"H3068\"* the|strong=\"H6213\"* work|strong=\"H4399\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* to|strong=\"H3068\"* make|strong=\"H6213\"*.”" + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* gave|strong=\"H6680\"* a|strong=\"H3068\"* commandment|strong=\"H6680\"*, and|strong=\"H4872\"* they|strong=\"H6213\"* caused|strong=\"H5674\"* it|strong=\"H6213\"* to|strong=\"H6213\"* be|strong=\"H5750\"* proclaimed|strong=\"H6963\"* throughout|strong=\"H5674\"* the|strong=\"H6213\"* camp|strong=\"H4264\"*, saying|strong=\"H6963\"*, “Let neither man|strong=\"H5674\"* nor|strong=\"H5674\"* woman make|strong=\"H6213\"* anything|strong=\"H4399\"* else|strong=\"H5750\"* for|strong=\"H6213\"* the|strong=\"H6213\"* offering|strong=\"H8641\"* for|strong=\"H6213\"* the|strong=\"H6213\"* sanctuary|strong=\"H6944\"*.” So|strong=\"H6213\"* the|strong=\"H6213\"* people|strong=\"H5971\"* were|strong=\"H5971\"* restrained|strong=\"H3607\"* from|strong=\"H5674\"* bringing." + }, + { + "verseNum": 7, + "text": "For|strong=\"H6213\"* the|strong=\"H3605\"* stuff|strong=\"H4399\"* they|strong=\"H6213\"* had|strong=\"H1961\"* was|strong=\"H1961\"* sufficient|strong=\"H1767\"* to|strong=\"H1961\"* do|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"*, and|strong=\"H6213\"* too|strong=\"H1961\"* much|strong=\"H3498\"*." + }, + { + "verseNum": 8, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* wise-hearted men|strong=\"H2450\"* among those|strong=\"H3605\"* who|strong=\"H3605\"* did|strong=\"H6213\"* the|strong=\"H3605\"* work|strong=\"H4399\"* made|strong=\"H6213\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* with|strong=\"H6213\"* ten|strong=\"H6235\"* curtains|strong=\"H3407\"* of|strong=\"H3820\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, and|strong=\"H8504\"* scarlet|strong=\"H8144\"*. They|strong=\"H6213\"* made|strong=\"H6213\"* them|strong=\"H6213\"* with|strong=\"H6213\"* cherubim|strong=\"H3742\"*, the|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H3820\"* a|strong=\"H3068\"* skillful|strong=\"H2803\"* workman|strong=\"H2803\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3605\"* length of|strong=\"H3605\"* each|strong=\"H3605\"* curtain|strong=\"H3407\"* was|strong=\"H3605\"* twenty-eight|strong=\"H6242\"* cubits,+ 36:9 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H6242\"* the|strong=\"H3605\"* width|strong=\"H7341\"* of|strong=\"H3605\"* each|strong=\"H3605\"* curtain|strong=\"H3407\"* four cubits. All|strong=\"H3605\"* the|strong=\"H3605\"* curtains|strong=\"H3407\"* had|strong=\"H3407\"* one|strong=\"H3605\"* measure|strong=\"H4060\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H2568\"* coupled|strong=\"H2266\"* five|strong=\"H2568\"* curtains|strong=\"H3407\"* to|strong=\"H2266\"* one|strong=\"H2266\"* another, and|strong=\"H2568\"* the|strong=\"H2266\"* other five|strong=\"H2568\"* curtains|strong=\"H3407\"* he|strong=\"H2568\"* coupled|strong=\"H2266\"* to|strong=\"H2266\"* one|strong=\"H2266\"* another." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3651\"* made|strong=\"H6213\"* loops|strong=\"H3924\"* of|strong=\"H5921\"* blue|strong=\"H8504\"* on|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* of|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H6213\"* curtain|strong=\"H3407\"* from|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* in|strong=\"H5921\"* the|strong=\"H5921\"* coupling|strong=\"H4225\"*. Likewise|strong=\"H3651\"* he|strong=\"H3651\"* made|strong=\"H6213\"* in|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* of|strong=\"H5921\"* the|strong=\"H5921\"* curtain|strong=\"H3407\"* that|strong=\"H3651\"* was|strong=\"H8193\"* outermost|strong=\"H7020\"* in|strong=\"H5921\"* the|strong=\"H5921\"* second|strong=\"H8145\"* coupling|strong=\"H4225\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* fifty|strong=\"H2572\"* loops|strong=\"H3924\"* in|strong=\"H6213\"* the|strong=\"H6213\"* one|strong=\"H6213\"* curtain|strong=\"H3407\"*, and|strong=\"H2572\"* he|strong=\"H6213\"* made|strong=\"H6213\"* fifty|strong=\"H2572\"* loops|strong=\"H3924\"* in|strong=\"H6213\"* the|strong=\"H6213\"* edge|strong=\"H7097\"* of|strong=\"H7097\"* the|strong=\"H6213\"* curtain|strong=\"H3407\"* that|strong=\"H6213\"* was|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H6213\"* second|strong=\"H8145\"* coupling|strong=\"H4225\"*. The|strong=\"H6213\"* loops|strong=\"H3924\"* were opposite|strong=\"H6901\"* to|strong=\"H6213\"* one|strong=\"H6213\"* another|strong=\"H8145\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* fifty|strong=\"H2572\"* clasps|strong=\"H7165\"* of|strong=\"H4908\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* coupled|strong=\"H2266\"* the|strong=\"H6213\"* curtains|strong=\"H3407\"* to|strong=\"H1961\"* one|strong=\"H1961\"* another with|strong=\"H6213\"* the|strong=\"H6213\"* clasps|strong=\"H7165\"*: so|strong=\"H6213\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"* was|strong=\"H1961\"* a|strong=\"H3068\"* unit." + }, + { + "verseNum": 14, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* curtains|strong=\"H3407\"* of|strong=\"H5921\"* goats|strong=\"H5795\"*’ hair for|strong=\"H5921\"* a|strong=\"H3068\"* covering over|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* them|strong=\"H5921\"* eleven|strong=\"H6249\"* curtains|strong=\"H3407\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H4060\"* length of|strong=\"H7341\"* each curtain|strong=\"H3407\"* was|strong=\"H3407\"* thirty|strong=\"H7970\"* cubits, and|strong=\"H7970\"* four cubits the|strong=\"H4060\"* width|strong=\"H7341\"* of|strong=\"H7341\"* each curtain|strong=\"H3407\"*. The|strong=\"H4060\"* eleven|strong=\"H6249\"* curtains|strong=\"H3407\"* had|strong=\"H3407\"* one|strong=\"H7341\"* measure|strong=\"H4060\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H2568\"* coupled|strong=\"H2266\"* five|strong=\"H2568\"* curtains|strong=\"H3407\"* by|strong=\"H3407\"* themselves, and|strong=\"H2568\"* six|strong=\"H8337\"* curtains|strong=\"H3407\"* by|strong=\"H3407\"* themselves." + }, + { + "verseNum": 17, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* fifty|strong=\"H2572\"* loops|strong=\"H3924\"* on|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* of|strong=\"H5921\"* the|strong=\"H5921\"* curtain|strong=\"H3407\"* that|strong=\"H6213\"* was|strong=\"H8193\"* outermost|strong=\"H7020\"* in|strong=\"H5921\"* the|strong=\"H5921\"* coupling|strong=\"H4225\"*, and|strong=\"H2572\"* he|strong=\"H6213\"* made|strong=\"H6213\"* fifty|strong=\"H2572\"* loops|strong=\"H3924\"* on|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* of|strong=\"H5921\"* the|strong=\"H5921\"* curtain|strong=\"H3407\"* which|strong=\"H3407\"* was|strong=\"H8193\"* outermost|strong=\"H7020\"* in|strong=\"H5921\"* the|strong=\"H5921\"* second|strong=\"H8145\"* coupling|strong=\"H4225\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* fifty|strong=\"H2572\"* clasps|strong=\"H7165\"* of|strong=\"H6213\"* bronze|strong=\"H5178\"* to|strong=\"H1961\"* couple|strong=\"H2266\"* the|strong=\"H6213\"* tent together|strong=\"H2266\"*, that|strong=\"H6213\"* it|strong=\"H6213\"* might be|strong=\"H1961\"* a|strong=\"H3068\"* unit." + }, + { + "verseNum": 19, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* covering|strong=\"H4372\"* for|strong=\"H6213\"* the|strong=\"H6213\"* tent of|strong=\"H4372\"* rams’ skins|strong=\"H5785\"* dyed|strong=\"H5785\"* red, and|strong=\"H6213\"* a|strong=\"H3068\"* covering|strong=\"H4372\"* of|strong=\"H4372\"* sea cow hides|strong=\"H5785\"* above|strong=\"H4605\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* boards|strong=\"H7175\"* for|strong=\"H6213\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"* of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, standing|strong=\"H5975\"* up|strong=\"H5975\"*." + }, + { + "verseNum": 21, + "text": "Ten|strong=\"H6235\"* cubits was the|strong=\"H2677\"* length of|strong=\"H2677\"* a|strong=\"H3068\"* board|strong=\"H7175\"*, and|strong=\"H7341\"* a|strong=\"H3068\"* cubit and|strong=\"H7341\"* a|strong=\"H3068\"* half|strong=\"H2677\"* the|strong=\"H2677\"* width|strong=\"H7341\"* of|strong=\"H2677\"* each|strong=\"H7175\"* board|strong=\"H7175\"*." + }, + { + "verseNum": 22, + "text": "Each|strong=\"H3605\"* board|strong=\"H7175\"* had|strong=\"H3027\"* two|strong=\"H8147\"* tenons|strong=\"H3027\"*, joined to|strong=\"H6213\"* one|strong=\"H3605\"* another. He|strong=\"H3651\"* made|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* boards|strong=\"H7175\"* of|strong=\"H3027\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* this|strong=\"H3651\"* way|strong=\"H3651\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* boards|strong=\"H7175\"* for|strong=\"H6213\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"*, twenty|strong=\"H6242\"* boards|strong=\"H7175\"* for|strong=\"H6213\"* the|strong=\"H6213\"* south|strong=\"H5045\"* side|strong=\"H6285\"* southward|strong=\"H5045\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* forty sockets of|strong=\"H3027\"* silver|strong=\"H3701\"* under|strong=\"H8478\"* the|strong=\"H6213\"* twenty|strong=\"H6242\"* boards|strong=\"H7175\"*: two|strong=\"H8147\"* sockets under|strong=\"H8478\"* one|strong=\"H6213\"* board|strong=\"H7175\"* for|strong=\"H6213\"* its|strong=\"H6213\"* two|strong=\"H8147\"* tenons|strong=\"H3027\"*, and|strong=\"H6242\"* two|strong=\"H8147\"* sockets under|strong=\"H8478\"* another board|strong=\"H7175\"* for|strong=\"H6213\"* its|strong=\"H6213\"* two|strong=\"H8147\"* tenons|strong=\"H3027\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"H6213\"* the|strong=\"H6213\"* second|strong=\"H8145\"* side|strong=\"H6285\"* of|strong=\"H4908\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"*, on|strong=\"H6213\"* the|strong=\"H6213\"* north|strong=\"H6828\"* side|strong=\"H6285\"*, he|strong=\"H6213\"* made|strong=\"H6213\"* twenty|strong=\"H6242\"* boards|strong=\"H7175\"*" + }, + { + "verseNum": 26, + "text": "and|strong=\"H3701\"* their|strong=\"H8478\"* forty sockets of|strong=\"H8478\"* silver|strong=\"H3701\"*: two|strong=\"H8147\"* sockets under|strong=\"H8478\"* one|strong=\"H8147\"* board|strong=\"H7175\"*, and|strong=\"H3701\"* two|strong=\"H8147\"* sockets under|strong=\"H8478\"* another board|strong=\"H7175\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"H6213\"* the|strong=\"H6213\"* far|strong=\"H3411\"* part|strong=\"H3411\"* of|strong=\"H3220\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"* westward|strong=\"H3220\"* he|strong=\"H6213\"* made|strong=\"H6213\"* six|strong=\"H8337\"* boards|strong=\"H7175\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* two|strong=\"H8147\"* boards|strong=\"H7175\"* for|strong=\"H6213\"* the|strong=\"H6213\"* corners|strong=\"H4742\"* of|strong=\"H8147\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"* in|strong=\"H6213\"* the|strong=\"H6213\"* far|strong=\"H3411\"* part|strong=\"H3411\"*." + }, + { + "verseNum": 29, + "text": "They|strong=\"H3651\"* were|strong=\"H1961\"* double|strong=\"H8147\"* beneath|strong=\"H4295\"*, and|strong=\"H7218\"* in|strong=\"H6213\"* the|strong=\"H6213\"* same|strong=\"H3651\"* way|strong=\"H3651\"* they|strong=\"H3651\"* were|strong=\"H1961\"* all|strong=\"H3162\"* the|strong=\"H6213\"* way|strong=\"H3651\"* to|strong=\"H1961\"* its|strong=\"H6213\"* top|strong=\"H7218\"* to|strong=\"H1961\"* one|strong=\"H1961\"* ring|strong=\"H2885\"*. He|strong=\"H3651\"* did|strong=\"H6213\"* this|strong=\"H3651\"* to|strong=\"H1961\"* both|strong=\"H8147\"* of|strong=\"H7218\"* them|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H6213\"* two|strong=\"H8147\"* corners|strong=\"H4740\"*." + }, + { + "verseNum": 30, + "text": "There|strong=\"H1961\"* were|strong=\"H1961\"* eight|strong=\"H8083\"* boards|strong=\"H7175\"* and|strong=\"H3701\"* their|strong=\"H1961\"* sockets of|strong=\"H8478\"* silver|strong=\"H3701\"*, sixteen|strong=\"H8337\"* sockets—under|strong=\"H8478\"* every|strong=\"H8478\"* board|strong=\"H7175\"* two|strong=\"H8147\"* sockets." + }, + { + "verseNum": 31, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* bars|strong=\"H1280\"* of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*: five|strong=\"H2568\"* for|strong=\"H6213\"* the|strong=\"H6213\"* boards|strong=\"H7175\"* of|strong=\"H6086\"* the|strong=\"H6213\"* one|strong=\"H6213\"* side|strong=\"H6763\"* of|strong=\"H6086\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"*," + }, + { + "verseNum": 32, + "text": "and|strong=\"H2568\"* five|strong=\"H2568\"* bars|strong=\"H1280\"* for|strong=\"H4908\"* the|strong=\"H8145\"* boards|strong=\"H7175\"* of|strong=\"H3220\"* the|strong=\"H8145\"* other|strong=\"H8145\"* side|strong=\"H6763\"* of|strong=\"H3220\"* the|strong=\"H8145\"* tabernacle|strong=\"H4908\"*, and|strong=\"H2568\"* five|strong=\"H2568\"* bars|strong=\"H1280\"* for|strong=\"H4908\"* the|strong=\"H8145\"* boards|strong=\"H7175\"* of|strong=\"H3220\"* the|strong=\"H8145\"* tabernacle|strong=\"H4908\"* for|strong=\"H4908\"* the|strong=\"H8145\"* hinder part|strong=\"H3411\"* westward|strong=\"H3220\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* middle|strong=\"H8432\"* bar|strong=\"H1280\"* to|strong=\"H6213\"* pass|strong=\"H6213\"* through|strong=\"H4480\"* in|strong=\"H6213\"* the|strong=\"H6213\"* middle|strong=\"H8432\"* of|strong=\"H4480\"* the|strong=\"H6213\"* boards|strong=\"H7175\"* from|strong=\"H4480\"* the|strong=\"H6213\"* one|strong=\"H4480\"* end|strong=\"H7097\"* to|strong=\"H6213\"* the|strong=\"H6213\"* other|strong=\"H7097\"*." + }, + { + "verseNum": 34, + "text": "He|strong=\"H6213\"* overlaid|strong=\"H6823\"* the|strong=\"H6213\"* boards|strong=\"H7175\"* with|strong=\"H1004\"* gold|strong=\"H2091\"*, and|strong=\"H1004\"* made|strong=\"H6213\"* their|strong=\"H6213\"* rings|strong=\"H2885\"* of|strong=\"H1004\"* gold|strong=\"H2091\"* as|strong=\"H6213\"* places|strong=\"H1004\"* for|strong=\"H6213\"* the|strong=\"H6213\"* bars|strong=\"H1280\"*, and|strong=\"H1004\"* overlaid|strong=\"H6823\"* the|strong=\"H6213\"* bars|strong=\"H1280\"* with|strong=\"H1004\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 35, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* veil|strong=\"H6532\"* of|strong=\"H4639\"* blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, and|strong=\"H8504\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, with|strong=\"H6213\"* cherubim|strong=\"H3742\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* it|strong=\"H6213\"* the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* a|strong=\"H3068\"* skillful|strong=\"H2803\"* workman|strong=\"H2803\"*." + }, + { + "verseNum": 36, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* four pillars|strong=\"H5982\"* of|strong=\"H5982\"* acacia|strong=\"H7848\"* for|strong=\"H6213\"* it|strong=\"H6213\"*, and|strong=\"H3701\"* overlaid|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H6213\"* gold|strong=\"H2091\"*. Their|strong=\"H6213\"* hooks|strong=\"H2053\"* were|strong=\"H3701\"* of|strong=\"H5982\"* gold|strong=\"H2091\"*. He|strong=\"H6213\"* cast|strong=\"H3332\"* four sockets of|strong=\"H5982\"* silver|strong=\"H3701\"* for|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 37, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* screen|strong=\"H4539\"* for|strong=\"H6213\"* the|strong=\"H6213\"* door|strong=\"H6607\"* of|strong=\"H4639\"* the|strong=\"H6213\"* tent, of|strong=\"H4639\"* blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, and|strong=\"H8504\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* an|strong=\"H6213\"* embroiderer|strong=\"H7551\"*;" + }, + { + "verseNum": 38, + "text": "and|strong=\"H2091\"* the|strong=\"H6823\"* five|strong=\"H2568\"* pillars|strong=\"H5982\"* of|strong=\"H7218\"* it|strong=\"H7218\"* with|strong=\"H6823\"* their|strong=\"H6823\"* hooks|strong=\"H2053\"*. He|strong=\"H2568\"* overlaid|strong=\"H6823\"* their|strong=\"H6823\"* capitals and|strong=\"H2091\"* their|strong=\"H6823\"* fillets|strong=\"H2838\"* with|strong=\"H6823\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* their|strong=\"H6823\"* five|strong=\"H2568\"* sockets were|strong=\"H7218\"* of|strong=\"H7218\"* bronze|strong=\"H5178\"*." + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "Bezalel|strong=\"H1212\"* made|strong=\"H6213\"* the|strong=\"H6213\"* ark of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*. Its|strong=\"H6213\"* length|strong=\"H6967\"* was|strong=\"H6967\"* two|strong=\"H6213\"* and|strong=\"H6086\"* a|strong=\"H3068\"* half|strong=\"H2677\"* cubits,+ 37:1 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H6086\"* its|strong=\"H6213\"* width|strong=\"H7341\"* a|strong=\"H3068\"* cubit and|strong=\"H6086\"* a|strong=\"H3068\"* half|strong=\"H2677\"*, and|strong=\"H6086\"* a|strong=\"H3068\"* cubit and|strong=\"H6086\"* a|strong=\"H3068\"* half|strong=\"H2677\"* its|strong=\"H6213\"* height|strong=\"H6967\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* overlaid|strong=\"H6823\"* it|strong=\"H6213\"* with|strong=\"H1004\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"* inside|strong=\"H1004\"* and|strong=\"H1004\"* outside|strong=\"H2351\"*, and|strong=\"H1004\"* made|strong=\"H6213\"* a|strong=\"H3068\"* molding|strong=\"H2213\"* of|strong=\"H1004\"* gold|strong=\"H2091\"* for|strong=\"H6213\"* it|strong=\"H6213\"* around|strong=\"H5439\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H8147\"* cast|strong=\"H3332\"* four rings|strong=\"H2885\"* of|strong=\"H5921\"* gold|strong=\"H2091\"* for|strong=\"H5921\"* it|strong=\"H5921\"* in|strong=\"H5921\"* its|strong=\"H5921\"* four feet|strong=\"H6471\"*—two|strong=\"H8147\"* rings|strong=\"H2885\"* on|strong=\"H5921\"* its|strong=\"H5921\"* one|strong=\"H8147\"* side|strong=\"H6763\"*, and|strong=\"H2091\"* two|strong=\"H8147\"* rings|strong=\"H2885\"* on|strong=\"H5921\"* its|strong=\"H5921\"* other|strong=\"H8145\"* side|strong=\"H6763\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* poles of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"* and|strong=\"H6086\"* overlaid|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H6213\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H5921\"* put|strong=\"H5375\"* the|strong=\"H5921\"* poles into|strong=\"H5921\"* the|strong=\"H5921\"* rings|strong=\"H2885\"* on|strong=\"H5921\"* the|strong=\"H5921\"* sides|strong=\"H6763\"* of|strong=\"H5921\"* the|strong=\"H5921\"* ark, to|strong=\"H5921\"* bear|strong=\"H5375\"* the|strong=\"H5921\"* ark." + }, + { + "verseNum": 6, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* of|strong=\"H2677\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*. Its|strong=\"H6213\"* length was|strong=\"H6213\"* two|strong=\"H6213\"* and|strong=\"H2091\"* a|strong=\"H3068\"* half|strong=\"H2677\"* cubits, and|strong=\"H2091\"* a|strong=\"H3068\"* cubit and|strong=\"H2091\"* a|strong=\"H3068\"* half|strong=\"H2677\"* its|strong=\"H6213\"* width|strong=\"H7341\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* two|strong=\"H8147\"* cherubim|strong=\"H3742\"* of|strong=\"H8147\"* gold|strong=\"H2091\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* them|strong=\"H6213\"* of|strong=\"H8147\"* beaten|strong=\"H4749\"* work|strong=\"H6213\"*, at|strong=\"H6213\"* the|strong=\"H6213\"* two|strong=\"H8147\"* ends|strong=\"H7098\"* of|strong=\"H8147\"* the|strong=\"H6213\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"*:" + }, + { + "verseNum": 8, + "text": "one|strong=\"H2088\"* cherub|strong=\"H3742\"* at|strong=\"H6213\"* the|strong=\"H6213\"* one|strong=\"H2088\"* end|strong=\"H7098\"*, and|strong=\"H6213\"* one|strong=\"H2088\"* cherub|strong=\"H3742\"* at|strong=\"H6213\"* the|strong=\"H6213\"* other|strong=\"H2088\"* end|strong=\"H7098\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* cherubim|strong=\"H3742\"* of|strong=\"H4480\"* one|strong=\"H2088\"* piece with|strong=\"H6213\"* the|strong=\"H6213\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* at|strong=\"H6213\"* its|strong=\"H6213\"* two|strong=\"H8147\"* ends|strong=\"H7098\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H6440\"* cherubim|strong=\"H3742\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* their|strong=\"H6440\"* wings|strong=\"H3671\"* above|strong=\"H4605\"*, covering|strong=\"H5526\"* the|strong=\"H6440\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* with|strong=\"H5921\"* their|strong=\"H6440\"* wings|strong=\"H3671\"*, with|strong=\"H5921\"* their|strong=\"H6440\"* faces|strong=\"H6440\"* toward|strong=\"H5921\"* one|strong=\"H1961\"* another|strong=\"H3671\"*. The|strong=\"H6440\"* faces|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* cherubim|strong=\"H3742\"* were|strong=\"H1961\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* table|strong=\"H7979\"* of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*. Its|strong=\"H6213\"* length|strong=\"H6967\"* was|strong=\"H6967\"* two|strong=\"H6213\"* cubits, and|strong=\"H6086\"* its|strong=\"H6213\"* width|strong=\"H7341\"* was|strong=\"H6967\"* a|strong=\"H3068\"* cubit, and|strong=\"H6086\"* its|strong=\"H6213\"* height|strong=\"H6967\"* was|strong=\"H6967\"* a|strong=\"H3068\"* cubit and|strong=\"H6086\"* a|strong=\"H3068\"* half|strong=\"H2677\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H6213\"* overlaid|strong=\"H6823\"* it|strong=\"H6213\"* with|strong=\"H6213\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* made|strong=\"H6213\"* a|strong=\"H3068\"* gold|strong=\"H2091\"* molding|strong=\"H2213\"* around|strong=\"H5439\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* border|strong=\"H2213\"* of|strong=\"H6213\"* a|strong=\"H3068\"* hand|strong=\"H2948\"*’s width around|strong=\"H5439\"* it|strong=\"H6213\"*, and|strong=\"H2091\"* made|strong=\"H6213\"* a|strong=\"H3068\"* golden|strong=\"H2091\"* molding|strong=\"H2213\"* on|strong=\"H2091\"* its|strong=\"H6213\"* border|strong=\"H2213\"* around|strong=\"H5439\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H5414\"* cast|strong=\"H3332\"* four rings|strong=\"H2885\"* of|strong=\"H5921\"* gold|strong=\"H2091\"* for|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H2091\"* put|strong=\"H5414\"* the|strong=\"H5921\"* rings|strong=\"H2885\"* in|strong=\"H5921\"* the|strong=\"H5921\"* four corners|strong=\"H6285\"* that|strong=\"H5414\"* were|strong=\"H7272\"* on|strong=\"H5921\"* its|strong=\"H5414\"* four feet|strong=\"H7272\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H5375\"* rings|strong=\"H2885\"* were|strong=\"H1961\"* close|strong=\"H5980\"* by|strong=\"H1961\"* the|strong=\"H5375\"* border|strong=\"H4526\"*, the|strong=\"H5375\"* places|strong=\"H1004\"* for|strong=\"H1004\"* the|strong=\"H5375\"* poles to|strong=\"H1961\"* carry|strong=\"H5375\"* the|strong=\"H5375\"* table|strong=\"H7979\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H5375\"* poles of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, and|strong=\"H6086\"* overlaid|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H6213\"* gold|strong=\"H2091\"*, to|strong=\"H6213\"* carry|strong=\"H5375\"* the|strong=\"H5375\"* table|strong=\"H7979\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H5921\"* vessels|strong=\"H3627\"* which|strong=\"H2004\"* were|strong=\"H3709\"* on|strong=\"H5921\"* the|strong=\"H5921\"* table|strong=\"H7979\"*, its|strong=\"H5921\"* dishes|strong=\"H7086\"*, its|strong=\"H5921\"* spoons|strong=\"H3709\"*, its|strong=\"H5921\"* bowls|strong=\"H4518\"*, and|strong=\"H2091\"* its|strong=\"H5921\"* pitchers|strong=\"H7184\"* with|strong=\"H6213\"* which|strong=\"H2004\"* to|strong=\"H6213\"* pour|strong=\"H5258\"* out|strong=\"H5258\"*, of|strong=\"H3627\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* lamp stand of|strong=\"H4480\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* lamp stand of|strong=\"H4480\"* beaten|strong=\"H4749\"* work|strong=\"H6213\"*. Its|strong=\"H6213\"* base|strong=\"H3409\"*, its|strong=\"H6213\"* shaft|strong=\"H3409\"*, its|strong=\"H6213\"* cups|strong=\"H1375\"*, its|strong=\"H6213\"* buds|strong=\"H6525\"*, and|strong=\"H2091\"* its|strong=\"H6213\"* flowers|strong=\"H6525\"* were|strong=\"H1961\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece|strong=\"H4749\"* with|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 18, + "text": "There were|strong=\"H7969\"* six|strong=\"H8337\"* branches|strong=\"H7070\"* going|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3318\"* its|strong=\"H3318\"* sides|strong=\"H6654\"*: three|strong=\"H7969\"* branches|strong=\"H7070\"* of|strong=\"H3318\"* the|strong=\"H3318\"* lamp stand out|strong=\"H3318\"* of|strong=\"H3318\"* its|strong=\"H3318\"* one|strong=\"H8145\"* side|strong=\"H6654\"*, and|strong=\"H3318\"* three|strong=\"H7969\"* branches|strong=\"H7070\"* of|strong=\"H3318\"* the|strong=\"H3318\"* lamp stand out|strong=\"H3318\"* of|strong=\"H3318\"* its|strong=\"H3318\"* other|strong=\"H8145\"* side|strong=\"H6654\"*:" + }, + { + "verseNum": 19, + "text": "three|strong=\"H7969\"* cups|strong=\"H1375\"* made like|strong=\"H3651\"* almond|strong=\"H8246\"* blossoms|strong=\"H6525\"* in|strong=\"H3318\"* one|strong=\"H4480\"* branch|strong=\"H7070\"*, a|strong=\"H3068\"* bud|strong=\"H6525\"* and|strong=\"H3318\"* a|strong=\"H3068\"* flower|strong=\"H6525\"*, and|strong=\"H3318\"* three|strong=\"H7969\"* cups|strong=\"H1375\"* made like|strong=\"H3651\"* almond|strong=\"H8246\"* blossoms|strong=\"H6525\"* in|strong=\"H3318\"* the|strong=\"H4480\"* other branch|strong=\"H7070\"*, a|strong=\"H3068\"* bud|strong=\"H6525\"* and|strong=\"H3318\"* a|strong=\"H3068\"* flower|strong=\"H6525\"*; so|strong=\"H3651\"* for|strong=\"H3318\"* the|strong=\"H4480\"* six|strong=\"H8337\"* branches|strong=\"H7070\"* going|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4480\"* the|strong=\"H4480\"* lamp stand." + }, + { + "verseNum": 20, + "text": "In|strong=\"H6525\"* the lamp stand were|strong=\"H6525\"* four cups|strong=\"H1375\"* made like|strong=\"H8246\"* almond|strong=\"H8246\"* blossoms|strong=\"H6525\"*, its buds|strong=\"H6525\"* and|strong=\"H6525\"* its flowers|strong=\"H6525\"*;" + }, + { + "verseNum": 21, + "text": "and|strong=\"H3318\"* a|strong=\"H3068\"* bud under|strong=\"H8478\"* two|strong=\"H8147\"* branches|strong=\"H7070\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece with|strong=\"H3318\"* it|strong=\"H3318\"*, and|strong=\"H3318\"* a|strong=\"H3068\"* bud under|strong=\"H8478\"* two|strong=\"H8147\"* branches|strong=\"H7070\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece with|strong=\"H3318\"* it|strong=\"H3318\"*, and|strong=\"H3318\"* a|strong=\"H3068\"* bud under|strong=\"H8478\"* two|strong=\"H8147\"* branches|strong=\"H7070\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece with|strong=\"H3318\"* it|strong=\"H3318\"*, for|strong=\"H8478\"* the|strong=\"H4480\"* six|strong=\"H8337\"* branches|strong=\"H7070\"* going|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4480\"* it|strong=\"H3318\"*." + }, + { + "verseNum": 22, + "text": "Their|strong=\"H3605\"* buds and|strong=\"H2091\"* their|strong=\"H3605\"* branches|strong=\"H7070\"* were|strong=\"H1961\"* of|strong=\"H4480\"* one|strong=\"H3605\"* piece|strong=\"H4749\"* with|strong=\"H3605\"* it|strong=\"H1961\"*. The|strong=\"H3605\"* whole|strong=\"H3605\"* thing|strong=\"H3605\"* was|strong=\"H1961\"* one|strong=\"H3605\"* beaten|strong=\"H4749\"* work|strong=\"H4749\"* of|strong=\"H4480\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* its|strong=\"H6213\"* seven|strong=\"H7651\"* lamps|strong=\"H5216\"*, and|strong=\"H2091\"* its|strong=\"H6213\"* snuffers|strong=\"H4457\"*, and|strong=\"H2091\"* its|strong=\"H6213\"* snuff dishes, of|strong=\"H6213\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* it|strong=\"H6213\"* of|strong=\"H3627\"* a|strong=\"H3068\"* talent|strong=\"H3603\"*+ 37:24 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces* of|strong=\"H3627\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*, with|strong=\"H6213\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* incense|strong=\"H7004\"* of|strong=\"H4196\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*. It|strong=\"H6213\"* was|strong=\"H1961\"* square|strong=\"H7251\"*: its|strong=\"H6213\"* length|strong=\"H6967\"* was|strong=\"H1961\"* a|strong=\"H3068\"* cubit, and|strong=\"H6086\"* its|strong=\"H6213\"* width|strong=\"H7341\"* a|strong=\"H3068\"* cubit. Its|strong=\"H6213\"* height|strong=\"H6967\"* was|strong=\"H1961\"* two|strong=\"H4480\"* cubits. Its|strong=\"H6213\"* horns|strong=\"H7161\"* were|strong=\"H1961\"* of|strong=\"H4196\"* one|strong=\"H4480\"* piece with|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"H6213\"* overlaid|strong=\"H6823\"* it|strong=\"H6213\"* with|strong=\"H6213\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*: its|strong=\"H6213\"* top|strong=\"H1406\"*, its|strong=\"H6213\"* sides|strong=\"H5439\"* around|strong=\"H5439\"* it|strong=\"H6213\"*, and|strong=\"H2091\"* its|strong=\"H6213\"* horns|strong=\"H7161\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* gold|strong=\"H2091\"* molding|strong=\"H2213\"* around|strong=\"H5439\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 27, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* two|strong=\"H8147\"* golden|strong=\"H2091\"* rings|strong=\"H2885\"* for|strong=\"H5921\"* it|strong=\"H5921\"* under|strong=\"H8478\"* its|strong=\"H5921\"* molding|strong=\"H2213\"* crown|strong=\"H2213\"*, on|strong=\"H5921\"* its|strong=\"H5921\"* two|strong=\"H8147\"* ribs|strong=\"H6763\"*, on|strong=\"H5921\"* its|strong=\"H5921\"* two|strong=\"H8147\"* sides|strong=\"H6654\"*, for|strong=\"H5921\"* places|strong=\"H1004\"* for|strong=\"H5921\"* poles with|strong=\"H1004\"* which|strong=\"H1004\"* to|strong=\"H6213\"* carry|strong=\"H5375\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* poles of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, and|strong=\"H6086\"* overlaid|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H6213\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 29, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* holy|strong=\"H6944\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"* and|strong=\"H8081\"* the|strong=\"H6213\"* pure|strong=\"H2889\"* incense|strong=\"H7004\"* of|strong=\"H4639\"* sweet|strong=\"H5561\"* spices|strong=\"H5561\"*, after the|strong=\"H6213\"* art|strong=\"H4639\"* of|strong=\"H4639\"* the|strong=\"H6213\"* perfumer|strong=\"H7543\"*." + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* of|strong=\"H4196\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*. It|strong=\"H6213\"* was|strong=\"H6967\"* square|strong=\"H7251\"*. Its|strong=\"H6213\"* length|strong=\"H6967\"* was|strong=\"H6967\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*,+ 38:1 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* its|strong=\"H6213\"* width|strong=\"H7341\"* was|strong=\"H6967\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*, and|strong=\"H6086\"* its|strong=\"H6213\"* height|strong=\"H6967\"* was|strong=\"H6967\"* three|strong=\"H7969\"* cubits|strong=\"H2568\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* its|strong=\"H5921\"* horns|strong=\"H7161\"* on|strong=\"H5921\"* its|strong=\"H5921\"* four corners|strong=\"H6438\"*. Its|strong=\"H5921\"* horns|strong=\"H7161\"* were|strong=\"H1961\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece with|strong=\"H6213\"* it|strong=\"H5921\"*, and|strong=\"H6213\"* he|strong=\"H6213\"* overlaid|strong=\"H6823\"* it|strong=\"H5921\"* with|strong=\"H6213\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*: the|strong=\"H3605\"* pots|strong=\"H5518\"*, the|strong=\"H3605\"* shovels|strong=\"H3257\"*, the|strong=\"H3605\"* basins|strong=\"H4219\"*, the|strong=\"H3605\"* forks|strong=\"H4207\"*, and|strong=\"H4196\"* the|strong=\"H3605\"* fire pans|strong=\"H5518\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H5704\"* made|strong=\"H6213\"* for|strong=\"H5704\"* the|strong=\"H6213\"* altar|strong=\"H4196\"* a|strong=\"H3068\"* grating|strong=\"H4345\"* of|strong=\"H4196\"* a|strong=\"H3068\"* network|strong=\"H7568\"* of|strong=\"H4196\"* bronze|strong=\"H5178\"*, under|strong=\"H8478\"* the|strong=\"H6213\"* ledge|strong=\"H3749\"* around it|strong=\"H6213\"* beneath|strong=\"H8478\"*, reaching|strong=\"H5704\"* halfway|strong=\"H2677\"* up|strong=\"H5704\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H1004\"* cast|strong=\"H3332\"* four rings|strong=\"H2885\"* for|strong=\"H1004\"* the|strong=\"H1004\"* four corners of|strong=\"H1004\"* bronze|strong=\"H5178\"* grating|strong=\"H4345\"*, to|strong=\"H1004\"* be|strong=\"H1004\"* places|strong=\"H1004\"* for|strong=\"H1004\"* the|strong=\"H1004\"* poles." + }, + { + "verseNum": 6, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* poles of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, and|strong=\"H6086\"* overlaid|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H6213\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H6213\"* put|strong=\"H6213\"* the|strong=\"H5921\"* poles into|strong=\"H5921\"* the|strong=\"H5921\"* rings|strong=\"H2885\"* on|strong=\"H5921\"* the|strong=\"H5921\"* sides|strong=\"H6763\"* of|strong=\"H4196\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, with|strong=\"H6213\"* which|strong=\"H4196\"* to|strong=\"H6213\"* carry|strong=\"H5375\"* it|strong=\"H5921\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* it|strong=\"H5921\"* hollow|strong=\"H5014\"* with|strong=\"H6213\"* planks|strong=\"H3871\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* basin|strong=\"H3595\"* of|strong=\"H6213\"* bronze|strong=\"H5178\"*, and|strong=\"H6213\"* its|strong=\"H6213\"* base|strong=\"H3653\"* of|strong=\"H6213\"* bronze|strong=\"H5178\"*, out|strong=\"H6213\"* of|strong=\"H6213\"* the|strong=\"H6213\"* mirrors|strong=\"H4759\"* of|strong=\"H6213\"* the|strong=\"H6213\"* ministering women|strong=\"H6633\"* who|strong=\"H6213\"* ministered at|strong=\"H6213\"* the|strong=\"H6213\"* door|strong=\"H6607\"* of|strong=\"H6213\"* the|strong=\"H6213\"* Tent of|strong=\"H6213\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* court|strong=\"H2691\"*: for|strong=\"H6213\"* the|strong=\"H6213\"* south|strong=\"H5045\"* side|strong=\"H6285\"* southward|strong=\"H5045\"* the|strong=\"H6213\"* hangings|strong=\"H7050\"* of|strong=\"H5045\"* the|strong=\"H6213\"* court|strong=\"H2691\"* were|strong=\"H5045\"* of|strong=\"H5045\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, one|strong=\"H6213\"* hundred|strong=\"H3967\"* cubits;" + }, + { + "verseNum": 10, + "text": "their pillars|strong=\"H5982\"* were|strong=\"H3701\"* twenty|strong=\"H6242\"*, and|strong=\"H6242\"* their sockets twenty|strong=\"H6242\"*, of|strong=\"H5982\"* bronze|strong=\"H5178\"*; the hooks|strong=\"H2053\"* of|strong=\"H5982\"* the pillars|strong=\"H5982\"* and|strong=\"H6242\"* their fillets|strong=\"H2838\"* were|strong=\"H3701\"* of|strong=\"H5982\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3701\"* the|strong=\"H3967\"* north|strong=\"H6828\"* side|strong=\"H6285\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits, their pillars|strong=\"H5982\"* twenty|strong=\"H6242\"*, and|strong=\"H3967\"* their sockets twenty|strong=\"H6242\"*, of|strong=\"H5982\"* bronze|strong=\"H5178\"*; the|strong=\"H3967\"* hooks|strong=\"H2053\"* of|strong=\"H5982\"* the|strong=\"H3967\"* pillars|strong=\"H5982\"*, and|strong=\"H3967\"* their fillets|strong=\"H2838\"*, of|strong=\"H5982\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3701\"* the|strong=\"H3220\"* west|strong=\"H3220\"* side|strong=\"H6285\"* were|strong=\"H3701\"* hangings|strong=\"H7050\"* of|strong=\"H5982\"* fifty|strong=\"H2572\"* cubits, their pillars|strong=\"H5982\"* ten|strong=\"H6235\"*, and|strong=\"H3701\"* their sockets ten|strong=\"H6235\"*; the|strong=\"H3220\"* hooks|strong=\"H2053\"* of|strong=\"H5982\"* the|strong=\"H3220\"* pillars|strong=\"H5982\"*, and|strong=\"H3701\"* their fillets|strong=\"H2838\"*, of|strong=\"H5982\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 13, + "text": "For the|strong=\"H6924\"* east|strong=\"H4217\"* side|strong=\"H6285\"* eastward|strong=\"H6924\"* fifty|strong=\"H2572\"* cubits," + }, + { + "verseNum": 14, + "text": "the|strong=\"H7969\"* hangings|strong=\"H7050\"* for|strong=\"H2568\"* the|strong=\"H7969\"* one|strong=\"H7050\"* side|strong=\"H3802\"* were|strong=\"H7969\"* fifteen|strong=\"H2568\"* cubits|strong=\"H2568\"*; their pillars|strong=\"H5982\"* three|strong=\"H7969\"*, and|strong=\"H2568\"* their sockets three|strong=\"H7969\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"H2568\"* so|strong=\"H2088\"* for|strong=\"H2088\"* the|strong=\"H2088\"* other|strong=\"H8145\"* side|strong=\"H3802\"*: on|strong=\"H7969\"* this|strong=\"H2088\"* hand and|strong=\"H2568\"* that|strong=\"H2088\"* hand by|strong=\"H8179\"* the|strong=\"H2088\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* the|strong=\"H2088\"* court|strong=\"H2691\"* were|strong=\"H7969\"* hangings|strong=\"H7050\"* of|strong=\"H8179\"* fifteen|strong=\"H2568\"* cubits|strong=\"H2568\"*; their|strong=\"H2088\"* pillars|strong=\"H5982\"* three|strong=\"H7969\"*, and|strong=\"H2568\"* their|strong=\"H2088\"* sockets three|strong=\"H7969\"*." + }, + { + "verseNum": 16, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* hangings|strong=\"H7050\"* around|strong=\"H5439\"* the|strong=\"H3605\"* court|strong=\"H2691\"* were|strong=\"H5439\"* of|strong=\"H3605\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* sockets for|strong=\"H3605\"* the|strong=\"H3605\"* pillars|strong=\"H5982\"* were|strong=\"H1992\"* of|strong=\"H7218\"* bronze|strong=\"H5178\"*. The|strong=\"H3605\"* hooks|strong=\"H2053\"* of|strong=\"H7218\"* the|strong=\"H3605\"* pillars|strong=\"H5982\"* and|strong=\"H3701\"* their|strong=\"H3605\"* fillets|strong=\"H2838\"* were|strong=\"H1992\"* of|strong=\"H7218\"* silver|strong=\"H3701\"*. Their|strong=\"H3605\"* capitals were|strong=\"H1992\"* overlaid|strong=\"H6826\"* with|strong=\"H3605\"* silver|strong=\"H3701\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* pillars|strong=\"H5982\"* of|strong=\"H7218\"* the|strong=\"H3605\"* court|strong=\"H2691\"* had silver|strong=\"H3701\"* bands|strong=\"H2838\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5980\"* screen|strong=\"H4539\"* for|strong=\"H4639\"* the|strong=\"H5980\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* the|strong=\"H5980\"* court|strong=\"H2691\"* was|strong=\"H6967\"* the|strong=\"H5980\"* work|strong=\"H4639\"* of|strong=\"H8179\"* the|strong=\"H5980\"* embroiderer|strong=\"H7551\"*, of|strong=\"H8179\"* blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, and|strong=\"H6242\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*. Twenty|strong=\"H6242\"* cubits|strong=\"H2568\"* was|strong=\"H6967\"* the|strong=\"H5980\"* length|strong=\"H6967\"*, and|strong=\"H6242\"* the|strong=\"H5980\"* height|strong=\"H6967\"* along|strong=\"H5980\"* the|strong=\"H5980\"* width|strong=\"H7341\"* was|strong=\"H6967\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*, like|strong=\"H5980\"* the|strong=\"H5980\"* hangings|strong=\"H7050\"* of|strong=\"H8179\"* the|strong=\"H5980\"* court|strong=\"H2691\"*." + }, + { + "verseNum": 19, + "text": "Their pillars|strong=\"H5982\"* were|strong=\"H7218\"* four, and|strong=\"H3701\"* their sockets four, of|strong=\"H7218\"* bronze|strong=\"H5178\"*; their hooks|strong=\"H2053\"* of|strong=\"H7218\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* the|strong=\"H7218\"* overlaying|strong=\"H6826\"* of|strong=\"H7218\"* their capitals, and|strong=\"H3701\"* their fillets|strong=\"H2838\"*, of|strong=\"H7218\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 20, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* pins|strong=\"H3489\"* of|strong=\"H3605\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*, and|strong=\"H5178\"* around|strong=\"H5439\"* the|strong=\"H3605\"* court|strong=\"H2691\"*, were|strong=\"H5439\"* of|strong=\"H3605\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 21, + "text": "These|strong=\"H3881\"* are|strong=\"H1121\"* the|strong=\"H5921\"* amounts of|strong=\"H1121\"* materials used for|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*, even|strong=\"H5921\"* the|strong=\"H5921\"* Tabernacle|strong=\"H4908\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Testimony|strong=\"H5715\"*, as|strong=\"H1121\"* they|strong=\"H5921\"* were|strong=\"H1121\"* counted|strong=\"H6485\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*, for|strong=\"H5921\"* the|strong=\"H5921\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*, by|strong=\"H3027\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Ithamar, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H5921\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 22, + "text": "Bezalel|strong=\"H1212\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uri, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hur|strong=\"H2354\"*, of|strong=\"H1121\"* the|strong=\"H3605\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, made|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 23, + "text": "With|strong=\"H1121\"* him|strong=\"H2803\"* was|strong=\"H1121\"* Oholiab, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahisamach, of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*, an|strong=\"H2803\"* engraver|strong=\"H2796\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* skillful|strong=\"H2803\"* workman|strong=\"H2803\"*, and|strong=\"H1121\"* an|strong=\"H2803\"* embroiderer|strong=\"H7551\"* in|strong=\"H1121\"* blue|strong=\"H8504\"*, in|strong=\"H1121\"* purple|strong=\"H8504\"*, in|strong=\"H1121\"* scarlet|strong=\"H8144\"*, and|strong=\"H1121\"* in|strong=\"H1121\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"*." + }, + { + "verseNum": 24, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* gold|strong=\"H2091\"* that|strong=\"H3605\"* was|strong=\"H1961\"* used|strong=\"H6213\"* for|strong=\"H6213\"* the|strong=\"H3605\"* work|strong=\"H4399\"* in|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H3603\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, even|strong=\"H6213\"* the|strong=\"H3605\"* gold|strong=\"H2091\"* of|strong=\"H3603\"* the|strong=\"H3605\"* offering|strong=\"H8573\"*, was|strong=\"H1961\"* twenty-nine|strong=\"H6242\"* talents|strong=\"H3603\"*+ 38:24 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces.* and|strong=\"H3967\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"* shekels|strong=\"H8255\"*, according to|strong=\"H1961\"* the|strong=\"H3605\"* shekel|strong=\"H8255\"*+ 38:24 A shekel is about 10 grams or about 0.32 Troy ounces.* of|strong=\"H3603\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H6485\"* silver|strong=\"H3701\"* of|strong=\"H3603\"* those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H3603\"* the|strong=\"H6485\"* congregation|strong=\"H5712\"* was|strong=\"H5712\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"*+ 38:25 A talent is about 30 kilograms or 66 pounds* and|strong=\"H3967\"* one|strong=\"H3967\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* seventy-five|strong=\"H7657\"* shekels|strong=\"H8255\"*,+ 38:25 A shekel is about 10 grams or about 0.35 ounces.* according|strong=\"H3701\"* to|strong=\"H3701\"* the|strong=\"H6485\"* shekel|strong=\"H8255\"* of|strong=\"H3603\"* the|strong=\"H6485\"* sanctuary|strong=\"H6944\"*:" + }, + { + "verseNum": 26, + "text": "a|strong=\"H3068\"* beka|strong=\"H1235\"*+ 38:26 a beka is about 5 grams or about 0.175 ounces* a|strong=\"H3068\"* head|strong=\"H1538\"*, that|strong=\"H3605\"* is|strong=\"H3605\"*, half|strong=\"H4276\"* a|strong=\"H3068\"* shekel|strong=\"H8255\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H3605\"* shekel|strong=\"H8255\"*+ 38:26 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H1121\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, for|strong=\"H5921\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* passed|strong=\"H5674\"* over|strong=\"H5921\"* to|strong=\"H5921\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* counted|strong=\"H6485\"*, from|strong=\"H5921\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H3967\"* upward|strong=\"H4605\"*, for|strong=\"H5921\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* three|strong=\"H7969\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* men|strong=\"H1121\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H1961\"* one|strong=\"H1961\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"*+ 38:27 A talent is about 30 kilograms or 66 pounds.* of|strong=\"H3603\"* silver|strong=\"H3701\"* were|strong=\"H1961\"* for|strong=\"H3701\"* casting|strong=\"H3332\"* the|strong=\"H1961\"* sockets of|strong=\"H3603\"* the|strong=\"H1961\"* sanctuary|strong=\"H6944\"* and|strong=\"H3967\"* the|strong=\"H1961\"* sockets of|strong=\"H3603\"* the|strong=\"H1961\"* veil|strong=\"H6532\"*: one|strong=\"H1961\"* hundred|strong=\"H3967\"* sockets for|strong=\"H3701\"* the|strong=\"H1961\"* one|strong=\"H1961\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"*, one|strong=\"H1961\"* talent|strong=\"H3603\"* per socket." + }, + { + "verseNum": 28, + "text": "From|strong=\"H3967\"* the|strong=\"H6213\"* one|strong=\"H6213\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* seventy-five|strong=\"H7657\"* shekels+ 38:28 A shekel is about 10 grams or about 0.35 ounces, so 1775 shekels is about 17.75 kilograms or about 39 pounds.* he|strong=\"H6213\"* made|strong=\"H6213\"* hooks|strong=\"H2053\"* for|strong=\"H6213\"* the|strong=\"H6213\"* pillars|strong=\"H5982\"*, overlaid|strong=\"H6823\"* their|strong=\"H6213\"* capitals, and|strong=\"H3967\"* made|strong=\"H6213\"* fillets for|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3967\"* bronze|strong=\"H5178\"* of|strong=\"H3603\"* the|strong=\"H3967\"* offering|strong=\"H8573\"* was|strong=\"H3603\"* seventy|strong=\"H7657\"* talents|strong=\"H3603\"*+ 38:29 A talent is about 30 kilograms or 66 pounds* and|strong=\"H3967\"* two|strong=\"H3967\"* thousand four hundred|strong=\"H3967\"* shekels|strong=\"H8255\"*.+ 38:29 70 talents + 2400 shekels is about 2124 kilograms, or 2.124 metric tons.*" + }, + { + "verseNum": 30, + "text": "With|strong=\"H6213\"* this|strong=\"H6213\"* he|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H3605\"* sockets to|strong=\"H6213\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H3627\"* the|strong=\"H3605\"* Tent of|strong=\"H3627\"* Meeting|strong=\"H4150\"*, the|strong=\"H3605\"* bronze|strong=\"H5178\"* altar|strong=\"H4196\"*, the|strong=\"H3605\"* bronze|strong=\"H5178\"* grating|strong=\"H4345\"* for|strong=\"H6213\"* it|strong=\"H6213\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*," + }, + { + "verseNum": 31, + "text": "the|strong=\"H3605\"* sockets around|strong=\"H5439\"* the|strong=\"H3605\"* court|strong=\"H2691\"*, the|strong=\"H3605\"* sockets of|strong=\"H8179\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* the|strong=\"H3605\"* court|strong=\"H2691\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* pins|strong=\"H3489\"* of|strong=\"H8179\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*, and|strong=\"H4908\"* all|strong=\"H3605\"* the|strong=\"H3605\"* pins|strong=\"H3489\"* around|strong=\"H5439\"* the|strong=\"H3605\"* court|strong=\"H2691\"*." + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "Of|strong=\"H3068\"* the|strong=\"H6213\"* blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, and|strong=\"H4872\"* scarlet|strong=\"H8144\"*, they|strong=\"H3068\"* made|strong=\"H6213\"* finely|strong=\"H8278\"* worked|strong=\"H6213\"* garments for|strong=\"H6213\"* ministering|strong=\"H8334\"* in|strong=\"H3068\"* the|strong=\"H6213\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*, and|strong=\"H4872\"* made|strong=\"H6213\"* the|strong=\"H6213\"* holy|strong=\"H6944\"* garments for|strong=\"H6213\"* Aaron, as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* ephod of|strong=\"H6213\"* gold|strong=\"H2091\"*, blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, and|strong=\"H2091\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H6213\"* beat|strong=\"H7554\"* the|strong=\"H6213\"* gold|strong=\"H2091\"* into|strong=\"H8432\"* thin plates|strong=\"H7554\"*, and|strong=\"H2091\"* cut|strong=\"H7112\"* it|strong=\"H6213\"* into|strong=\"H8432\"* wires|strong=\"H6616\"*, to|strong=\"H6213\"* work|strong=\"H4639\"* it|strong=\"H6213\"* in|strong=\"H6213\"* with|strong=\"H6213\"* the|strong=\"H6213\"* blue|strong=\"H8504\"*, the|strong=\"H6213\"* purple|strong=\"H8504\"*, the|strong=\"H6213\"* scarlet|strong=\"H8144\"*, and|strong=\"H2091\"* the|strong=\"H6213\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"*, the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H8432\"* the|strong=\"H6213\"* skillful|strong=\"H2803\"* workman|strong=\"H2803\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H5921\"* made|strong=\"H6213\"* shoulder|strong=\"H3802\"* straps for|strong=\"H5921\"* it|strong=\"H5921\"*, joined|strong=\"H2266\"* together|strong=\"H2266\"*. It|strong=\"H5921\"* was|strong=\"H6213\"* joined|strong=\"H2266\"* together|strong=\"H2266\"* at|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* ends|strong=\"H7117\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5921\"* skillfully|strong=\"H2805\"* woven|strong=\"H2805\"* band|strong=\"H2805\"* that|strong=\"H1931\"* was|strong=\"H3068\"* on|strong=\"H5921\"* it|strong=\"H1931\"*, with|strong=\"H3068\"* which|strong=\"H1931\"* to|strong=\"H3068\"* fasten it|strong=\"H1931\"* on|strong=\"H5921\"*, was|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H5921\"* same|strong=\"H1931\"* piece, like|strong=\"H5921\"* its|strong=\"H5921\"* work|strong=\"H4639\"*: of|strong=\"H3068\"* gold|strong=\"H2091\"*, of|strong=\"H3068\"* blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, and|strong=\"H4872\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H5921\"* worked|strong=\"H6213\"* the|strong=\"H5921\"* onyx|strong=\"H7718\"* stones, enclosed in|strong=\"H5921\"* settings|strong=\"H4142\"* of|strong=\"H1121\"* gold|strong=\"H2091\"*, engraved|strong=\"H6605\"* with|strong=\"H6213\"* the|strong=\"H5921\"* engravings|strong=\"H6603\"* of|strong=\"H1121\"* a|strong=\"H3068\"* signet|strong=\"H2368\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H5921\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3068\"* put|strong=\"H7760\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* shoulder|strong=\"H3802\"* straps of|strong=\"H1121\"* the|strong=\"H5921\"* ephod, to|strong=\"H3478\"* be|strong=\"H3068\"* stones of|strong=\"H1121\"* memorial|strong=\"H2146\"* for|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* breastplate|strong=\"H2833\"*, the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* a|strong=\"H3068\"* skillful|strong=\"H2803\"* workman|strong=\"H2803\"*, like|strong=\"H2803\"* the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* the|strong=\"H6213\"* ephod: of|strong=\"H4639\"* gold|strong=\"H2091\"*, of|strong=\"H4639\"* blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, and|strong=\"H2091\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*." + }, + { + "verseNum": 9, + "text": "It|strong=\"H6213\"* was|strong=\"H1961\"* square|strong=\"H7251\"*. They|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* breastplate|strong=\"H2833\"* double|strong=\"H3717\"*. Its|strong=\"H6213\"* length was|strong=\"H1961\"* a|strong=\"H3068\"* span|strong=\"H2239\"*,+ 39:9 A span is the length from the tip of a man’s thumb to the tip of his little finger when his hand is stretched out (about half a cubit, or 9 inches, or 22.8 cm.)* and|strong=\"H6213\"* its|strong=\"H6213\"* width|strong=\"H7341\"* a|strong=\"H3068\"* span|strong=\"H2239\"*, being|strong=\"H1961\"* double|strong=\"H3717\"*." + }, + { + "verseNum": 10, + "text": "They set|strong=\"H4390\"* in it four rows|strong=\"H2905\"* of|strong=\"H4390\"* stones. A|strong=\"H3068\"* row|strong=\"H2905\"* of|strong=\"H4390\"* ruby, topaz|strong=\"H6357\"*, and|strong=\"H6357\"* beryl was the|strong=\"H4390\"* first row|strong=\"H2905\"*;" + }, + { + "verseNum": 11, + "text": "and|strong=\"H8145\"* the|strong=\"H8145\"* second|strong=\"H8145\"* row|strong=\"H2905\"*, a|strong=\"H3068\"* turquoise|strong=\"H5306\"*, a|strong=\"H3068\"* sapphire|strong=\"H5601\"*,+ 39:11 or, lapis lazuli * and|strong=\"H8145\"* an emerald|strong=\"H5306\"*;" + }, + { + "verseNum": 12, + "text": "and|strong=\"H7992\"* the|strong=\"H7992\"* third|strong=\"H7992\"* row|strong=\"H2905\"*, a|strong=\"H3068\"* jacinth|strong=\"H3958\"*, an agate|strong=\"H7618\"*, and|strong=\"H7992\"* an amethyst;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H2091\"* the|strong=\"H7243\"* fourth|strong=\"H7243\"* row|strong=\"H2905\"*, a|strong=\"H3068\"* chrysolite, an|strong=\"H2091\"* onyx|strong=\"H7718\"*, and|strong=\"H2091\"* a|strong=\"H3068\"* jasper|strong=\"H3471\"*. They|strong=\"H7243\"* were enclosed in|strong=\"H2091\"* gold|strong=\"H2091\"* settings|strong=\"H4142\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H5921\"* stones were|strong=\"H3478\"* according|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H5921\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, twelve|strong=\"H8147\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* their|strong=\"H5921\"* names|strong=\"H8034\"*; like|strong=\"H3478\"* the|strong=\"H5921\"* engravings|strong=\"H6603\"* of|strong=\"H1121\"* a|strong=\"H3068\"* signet|strong=\"H2368\"*, everyone according|strong=\"H5921\"* to|strong=\"H3478\"* his|strong=\"H5921\"* name|strong=\"H8034\"*, for|strong=\"H5921\"* the|strong=\"H5921\"* twelve|strong=\"H8147\"* tribes|strong=\"H7626\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"H5921\"* made|strong=\"H6213\"* on|strong=\"H5921\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"* chains|strong=\"H8333\"* like|strong=\"H6213\"* cords|strong=\"H5688\"*, of|strong=\"H5921\"* braided|strong=\"H4639\"* work|strong=\"H4639\"* of|strong=\"H5921\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"H5921\"* made|strong=\"H6213\"* two|strong=\"H8147\"* settings|strong=\"H4865\"* of|strong=\"H5921\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* two|strong=\"H8147\"* gold|strong=\"H2091\"* rings|strong=\"H2885\"*, and|strong=\"H2091\"* put|strong=\"H5414\"* the|strong=\"H5921\"* two|strong=\"H8147\"* rings|strong=\"H2885\"* on|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* ends|strong=\"H7098\"* of|strong=\"H5921\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H5921\"* put|strong=\"H5414\"* the|strong=\"H5921\"* two|strong=\"H8147\"* braided chains|strong=\"H5688\"* of|strong=\"H5921\"* gold|strong=\"H2091\"* in|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* rings|strong=\"H2885\"* at|strong=\"H5921\"* the|strong=\"H5921\"* ends|strong=\"H7098\"* of|strong=\"H5921\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H6440\"* other|strong=\"H8147\"* two|strong=\"H8147\"* ends|strong=\"H7098\"* of|strong=\"H6440\"* the|strong=\"H6440\"* two|strong=\"H8147\"* braided chains|strong=\"H5688\"* they|strong=\"H5921\"* put|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H6440\"* two|strong=\"H8147\"* settings|strong=\"H4865\"*, and|strong=\"H6440\"* put|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H6440\"* shoulder|strong=\"H3802\"* straps of|strong=\"H6440\"* the|strong=\"H6440\"* ephod, in|strong=\"H5921\"* its|strong=\"H5414\"* front|strong=\"H6440\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"H5921\"* made|strong=\"H6213\"* two|strong=\"H8147\"* rings|strong=\"H2885\"* of|strong=\"H1004\"* gold|strong=\"H2091\"*, and|strong=\"H1004\"* put|strong=\"H7760\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* ends|strong=\"H7098\"* of|strong=\"H1004\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"*, on|strong=\"H5921\"* its|strong=\"H5921\"* edge|strong=\"H8193\"*, which|strong=\"H1004\"* was|strong=\"H1004\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* side|strong=\"H5676\"* of|strong=\"H1004\"* the|strong=\"H5921\"* ephod inward|strong=\"H1004\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H5921\"* made|strong=\"H6213\"* two|strong=\"H8147\"* more|strong=\"H2091\"* rings|strong=\"H2885\"* of|strong=\"H6440\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* put|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H6440\"* two|strong=\"H8147\"* shoulder|strong=\"H3802\"* straps of|strong=\"H6440\"* the|strong=\"H6440\"* ephod underneath|strong=\"H4295\"*, in|strong=\"H5921\"* its|strong=\"H5414\"* front|strong=\"H6440\"*, close|strong=\"H5980\"* by|strong=\"H5921\"* its|strong=\"H5414\"* coupling|strong=\"H4225\"*, above|strong=\"H4605\"* the|strong=\"H6440\"* skillfully|strong=\"H2805\"* woven|strong=\"H2805\"* band|strong=\"H2805\"* of|strong=\"H6440\"* the|strong=\"H6440\"* ephod." + }, + { + "verseNum": 21, + "text": "They|strong=\"H3068\"* bound|strong=\"H7405\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"* by|strong=\"H5921\"* its|strong=\"H5921\"* rings|strong=\"H2885\"* to|strong=\"H3068\"* the|strong=\"H5921\"* rings|strong=\"H2885\"* of|strong=\"H3068\"* the|strong=\"H5921\"* ephod with|strong=\"H3068\"* a|strong=\"H3068\"* lace|strong=\"H6616\"* of|strong=\"H3068\"* blue|strong=\"H8504\"*, that|strong=\"H3068\"* it|strong=\"H5921\"* might|strong=\"H3068\"* be|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* skillfully|strong=\"H2805\"* woven|strong=\"H2805\"* band|strong=\"H2805\"* of|strong=\"H3068\"* the|strong=\"H5921\"* ephod, and|strong=\"H4872\"* that|strong=\"H3068\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"* might|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H1961\"* loose|strong=\"H2118\"* from|strong=\"H5921\"* the|strong=\"H5921\"* ephod, as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* robe|strong=\"H4598\"* of|strong=\"H4639\"* the|strong=\"H6213\"* ephod of|strong=\"H4639\"* woven|strong=\"H6213\"* work|strong=\"H4639\"*, all|strong=\"H6213\"* of|strong=\"H4639\"* blue|strong=\"H8504\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H8432\"* opening|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H8432\"* robe|strong=\"H4598\"* in|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H6310\"* it|strong=\"H8432\"* was|strong=\"H6310\"* like|strong=\"H3808\"* the|strong=\"H8432\"* opening|strong=\"H6310\"* of|strong=\"H6310\"* a|strong=\"H3068\"* coat|strong=\"H8473\"* of|strong=\"H6310\"* mail|strong=\"H8473\"*, with|strong=\"H6310\"* a|strong=\"H3068\"* binding|strong=\"H8193\"* around|strong=\"H5439\"* its|strong=\"H5439\"* opening|strong=\"H6310\"*, that|strong=\"H3808\"* it|strong=\"H8432\"* should|strong=\"H8193\"* not|strong=\"H3808\"* be|strong=\"H3808\"* torn|strong=\"H7167\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H5921\"* made|strong=\"H6213\"* on|strong=\"H5921\"* the|strong=\"H5921\"* skirts|strong=\"H7757\"* of|strong=\"H5921\"* the|strong=\"H5921\"* robe|strong=\"H4598\"* pomegranates|strong=\"H7416\"* of|strong=\"H5921\"* blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, and|strong=\"H8504\"* twined|strong=\"H7806\"* linen." + }, + { + "verseNum": 25, + "text": "They|strong=\"H5921\"* made|strong=\"H6213\"* bells|strong=\"H6472\"* of|strong=\"H8432\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* put|strong=\"H5414\"* the|strong=\"H5921\"* bells|strong=\"H6472\"* between|strong=\"H8432\"* the|strong=\"H5921\"* pomegranates|strong=\"H7416\"* around|strong=\"H5439\"* the|strong=\"H5921\"* skirts|strong=\"H7757\"* of|strong=\"H8432\"* the|strong=\"H5921\"* robe|strong=\"H4598\"*, between|strong=\"H8432\"* the|strong=\"H5921\"* pomegranates|strong=\"H7416\"*;" + }, + { + "verseNum": 26, + "text": "a|strong=\"H3068\"* bell|strong=\"H6472\"* and|strong=\"H4872\"* a|strong=\"H3068\"* pomegranate|strong=\"H7416\"*, a|strong=\"H3068\"* bell|strong=\"H6472\"* and|strong=\"H4872\"* a|strong=\"H3068\"* pomegranate|strong=\"H7416\"*, around|strong=\"H5439\"* the|strong=\"H5921\"* skirts|strong=\"H7757\"* of|strong=\"H3068\"* the|strong=\"H5921\"* robe|strong=\"H4598\"*, to|strong=\"H3068\"* minister|strong=\"H8334\"* in|strong=\"H5921\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* tunics|strong=\"H3801\"* of|strong=\"H1121\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"* of|strong=\"H1121\"* woven|strong=\"H6213\"* work|strong=\"H4639\"* for|strong=\"H6213\"* Aaron and|strong=\"H1121\"* for|strong=\"H6213\"* his|strong=\"H6213\"* sons|strong=\"H1121\"*," + }, + { + "verseNum": 28, + "text": "the|strong=\"H6287\"* turban|strong=\"H4701\"* of|strong=\"H4701\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"*, the|strong=\"H6287\"* linen|strong=\"H8336\"* headbands|strong=\"H4021\"* of|strong=\"H4701\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"*, the|strong=\"H6287\"* linen|strong=\"H8336\"* trousers of|strong=\"H4701\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*," + }, + { + "verseNum": 29, + "text": "the|strong=\"H3068\"* sash of|strong=\"H3068\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, and|strong=\"H4872\"* scarlet|strong=\"H8144\"*, the|strong=\"H3068\"* work|strong=\"H4639\"* of|strong=\"H3068\"* the|strong=\"H3068\"* embroiderer|strong=\"H7551\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 30, + "text": "They|strong=\"H3068\"* made|strong=\"H6213\"* the|strong=\"H5921\"* plate|strong=\"H6731\"* of|strong=\"H3068\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* crown|strong=\"H5145\"* of|strong=\"H3068\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*, and|strong=\"H3068\"* wrote|strong=\"H3789\"* on|strong=\"H5921\"* it|strong=\"H5921\"* an|strong=\"H6213\"* inscription|strong=\"H6603\"*, like|strong=\"H6213\"* the|strong=\"H5921\"* engravings|strong=\"H6603\"* of|strong=\"H3068\"* a|strong=\"H3068\"* signet|strong=\"H2368\"*: “HOLY|strong=\"H6944\"* TO|strong=\"H3068\"* YAHWEH|strong=\"H3068\"*”." + }, + { + "verseNum": 31, + "text": "They|strong=\"H3068\"* tied|strong=\"H6616\"* to|strong=\"H3068\"* it|strong=\"H5414\"* a|strong=\"H3068\"* lace|strong=\"H6616\"* of|strong=\"H3068\"* blue|strong=\"H8504\"*, to|strong=\"H3068\"* fasten|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* turban|strong=\"H4701\"* above|strong=\"H4605\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 32, + "text": "Thus|strong=\"H3651\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"* was|strong=\"H3068\"* finished|strong=\"H3615\"*. The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* according to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*; so|strong=\"H3651\"* they|strong=\"H3651\"* did|strong=\"H6213\"*." + }, + { + "verseNum": 33, + "text": "They|strong=\"H3605\"* brought|strong=\"H4872\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* to|strong=\"H4872\"* Moses|strong=\"H4872\"*: the|strong=\"H3605\"* tent, with|strong=\"H3627\"* all|strong=\"H3605\"* its|strong=\"H3605\"* furniture|strong=\"H3627\"*, its|strong=\"H3605\"* clasps|strong=\"H7165\"*, its|strong=\"H3605\"* boards|strong=\"H7175\"*, its|strong=\"H3605\"* bars|strong=\"H1280\"*, its|strong=\"H3605\"* pillars|strong=\"H5982\"*, its|strong=\"H3605\"* sockets," + }, + { + "verseNum": 34, + "text": "the|strong=\"H6532\"* covering|strong=\"H4372\"* of|strong=\"H4372\"* rams’ skins|strong=\"H5785\"* dyed|strong=\"H5785\"* red, the|strong=\"H6532\"* covering|strong=\"H4372\"* of|strong=\"H4372\"* sea cow hides|strong=\"H5785\"*, the|strong=\"H6532\"* veil|strong=\"H6532\"* of|strong=\"H4372\"* the|strong=\"H6532\"* screen|strong=\"H4539\"*," + }, + { + "verseNum": 35, + "text": "the ark of|strong=\"H3727\"* the covenant with|strong=\"H5715\"* its poles, the mercy|strong=\"H3727\"* seat|strong=\"H3727\"*," + }, + { + "verseNum": 36, + "text": "the|strong=\"H3605\"* table|strong=\"H7979\"*, all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, the|strong=\"H3605\"* show bread|strong=\"H3899\"*," + }, + { + "verseNum": 37, + "text": "the|strong=\"H3605\"* pure|strong=\"H2889\"* lamp|strong=\"H5216\"* stand, its|strong=\"H3605\"* lamps|strong=\"H5216\"*, even the|strong=\"H3605\"* lamps|strong=\"H5216\"* to|strong=\"H3627\"* be|strong=\"H8081\"* set in|strong=\"H3627\"* order|strong=\"H4634\"*, all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, the|strong=\"H3605\"* oil|strong=\"H8081\"* for|strong=\"H3627\"* the|strong=\"H3605\"* light|strong=\"H3974\"*," + }, + { + "verseNum": 38, + "text": "the|strong=\"H4196\"* golden|strong=\"H2091\"* altar|strong=\"H4196\"*, the|strong=\"H4196\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, the|strong=\"H4196\"* sweet|strong=\"H5561\"* incense|strong=\"H7004\"*, the|strong=\"H4196\"* screen|strong=\"H4539\"* for|strong=\"H4196\"* the|strong=\"H4196\"* door|strong=\"H6607\"* of|strong=\"H4196\"* the|strong=\"H4196\"* Tent," + }, + { + "verseNum": 39, + "text": "the|strong=\"H3605\"* bronze|strong=\"H5178\"* altar|strong=\"H4196\"*, its|strong=\"H3605\"* grating|strong=\"H4345\"* of|strong=\"H3627\"* bronze|strong=\"H5178\"*, its|strong=\"H3605\"* poles, all|strong=\"H3605\"* of|strong=\"H3627\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, the|strong=\"H3605\"* basin|strong=\"H3595\"* and|strong=\"H4196\"* its|strong=\"H3605\"* base|strong=\"H3653\"*," + }, + { + "verseNum": 40, + "text": "the|strong=\"H3605\"* hangings|strong=\"H7050\"* of|strong=\"H3627\"* the|strong=\"H3605\"* court|strong=\"H2691\"*, its|strong=\"H3605\"* pillars|strong=\"H5982\"*, its|strong=\"H3605\"* sockets, the|strong=\"H3605\"* screen|strong=\"H4539\"* for|strong=\"H3627\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H3627\"* the|strong=\"H3605\"* court|strong=\"H2691\"*, its|strong=\"H3605\"* cords|strong=\"H4340\"*, its|strong=\"H3605\"* pins|strong=\"H3489\"*, and|strong=\"H3627\"* all|strong=\"H3605\"* the|strong=\"H3605\"* instruments|strong=\"H3627\"* of|strong=\"H3627\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H3627\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*, for|strong=\"H3627\"* the|strong=\"H3605\"* Tent|strong=\"H3489\"* of|strong=\"H3627\"* Meeting|strong=\"H4150\"*," + }, + { + "verseNum": 41, + "text": "the|strong=\"H3548\"* finely|strong=\"H8278\"* worked garments for|strong=\"H1121\"* ministering|strong=\"H8334\"* in|strong=\"H1121\"* the|strong=\"H3548\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*, the|strong=\"H3548\"* holy|strong=\"H6944\"* garments for|strong=\"H1121\"* Aaron the|strong=\"H3548\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* the|strong=\"H3548\"* garments of|strong=\"H1121\"* his|strong=\"H8334\"* sons|strong=\"H1121\"*, to|strong=\"H1121\"* minister|strong=\"H8334\"* in|strong=\"H1121\"* the|strong=\"H3548\"* priest|strong=\"H3548\"*’s office." + }, + { + "verseNum": 42, + "text": "According to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*, so|strong=\"H3651\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H5656\"*." + }, + { + "verseNum": 43, + "text": "Moses|strong=\"H4872\"* saw|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"*, and|strong=\"H4872\"* behold|strong=\"H2009\"*, they|strong=\"H3651\"* had|strong=\"H3068\"* done|strong=\"H6213\"* it|strong=\"H6213\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"*. They|strong=\"H3651\"* had|strong=\"H3068\"* done|strong=\"H6213\"* so|strong=\"H3651\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* blessed|strong=\"H1288\"* them|strong=\"H6213\"*." + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“On|strong=\"H3117\"* the|strong=\"H3117\"* first|strong=\"H7223\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* first|strong=\"H7223\"* month|strong=\"H2320\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H3117\"* tabernacle|strong=\"H4908\"* of|strong=\"H3117\"* the|strong=\"H3117\"* Tent of|strong=\"H3117\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H5921\"* shall|strong=\"H6532\"* put|strong=\"H7760\"* the|strong=\"H5921\"* ark of|strong=\"H5921\"* the|strong=\"H5921\"* covenant in|strong=\"H5921\"* it|strong=\"H7760\"*, and|strong=\"H8033\"* you|strong=\"H5921\"* shall|strong=\"H6532\"* screen|strong=\"H5526\"* the|strong=\"H5921\"* ark with|strong=\"H5921\"* the|strong=\"H5921\"* veil|strong=\"H6532\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H5927\"* shall bring|strong=\"H5927\"* in|strong=\"H5927\"* the|strong=\"H5927\"* table|strong=\"H7979\"*, and|strong=\"H5927\"* set|strong=\"H6186\"* in|strong=\"H5927\"* order|strong=\"H6186\"* the|strong=\"H5927\"* things that|strong=\"H5927\"* are|strong=\"H7979\"* on|strong=\"H5927\"* it|strong=\"H5927\"*. You|strong=\"H5927\"* shall bring|strong=\"H5927\"* in|strong=\"H5927\"* the|strong=\"H5927\"* lamp|strong=\"H5216\"* stand, and|strong=\"H5927\"* light|strong=\"H5216\"* its|strong=\"H5927\"* lamps|strong=\"H5216\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H5414\"* shall|strong=\"H6440\"* set|strong=\"H7760\"* the|strong=\"H6440\"* golden|strong=\"H2091\"* altar|strong=\"H4196\"* for|strong=\"H6440\"* incense|strong=\"H7004\"* before|strong=\"H6440\"* the|strong=\"H6440\"* ark of|strong=\"H6440\"* the|strong=\"H6440\"* covenant, and|strong=\"H2091\"* put|strong=\"H5414\"* the|strong=\"H6440\"* screen|strong=\"H4539\"* of|strong=\"H6440\"* the|strong=\"H6440\"* door|strong=\"H6607\"* to|strong=\"H5414\"* the|strong=\"H6440\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 6, + "text": "“You|strong=\"H5414\"* shall|strong=\"H6440\"* set|strong=\"H5414\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* of|strong=\"H6440\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* before|strong=\"H6440\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H6440\"* the|strong=\"H6440\"* tabernacle|strong=\"H4908\"* of|strong=\"H6440\"* the|strong=\"H6440\"* Tent of|strong=\"H6440\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H5414\"* shall|strong=\"H4325\"* set|strong=\"H5414\"* the|strong=\"H5414\"* basin|strong=\"H3595\"* between the|strong=\"H5414\"* Tent of|strong=\"H4325\"* Meeting|strong=\"H4150\"* and|strong=\"H4196\"* the|strong=\"H5414\"* altar|strong=\"H4196\"*, and|strong=\"H4196\"* shall|strong=\"H4325\"* put|strong=\"H5414\"* water|strong=\"H4325\"* therein|strong=\"H8033\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H5414\"* shall|strong=\"H8179\"* set|strong=\"H7760\"* up|strong=\"H5414\"* the|strong=\"H5414\"* court|strong=\"H2691\"* around|strong=\"H5439\"* it|strong=\"H5414\"*, and|strong=\"H8179\"* hang|strong=\"H5414\"* up|strong=\"H5414\"* the|strong=\"H5414\"* screen|strong=\"H4539\"* of|strong=\"H8179\"* the|strong=\"H5414\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* the|strong=\"H5414\"* court|strong=\"H2691\"*." + }, + { + "verseNum": 9, + "text": "“You|strong=\"H3605\"* shall|strong=\"H3627\"* take|strong=\"H3947\"* the|strong=\"H3605\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, and|strong=\"H8081\"* anoint|strong=\"H4886\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* and|strong=\"H8081\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H1961\"* it|strong=\"H1961\"*, and|strong=\"H8081\"* shall|strong=\"H3627\"* make|strong=\"H3947\"* it|strong=\"H1961\"* holy|strong=\"H6944\"*, and|strong=\"H8081\"* all|strong=\"H3605\"* its|strong=\"H3605\"* furniture|strong=\"H3627\"*, and|strong=\"H8081\"* it|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3605\"* shall|strong=\"H3627\"* anoint|strong=\"H4886\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H3627\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, with|strong=\"H4886\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, and|strong=\"H4196\"* sanctify|strong=\"H6942\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, and|strong=\"H4196\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* will|strong=\"H1961\"* be|strong=\"H1961\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H4886\"* shall anoint|strong=\"H4886\"* the|strong=\"H6942\"* basin|strong=\"H3595\"* and|strong=\"H6942\"* its base|strong=\"H3653\"*, and|strong=\"H6942\"* sanctify|strong=\"H6942\"* it|strong=\"H6942\"*." + }, + { + "verseNum": 12, + "text": "“You|strong=\"H7126\"* shall|strong=\"H1121\"* bring|strong=\"H7126\"* Aaron and|strong=\"H1121\"* his|strong=\"H7364\"* sons|strong=\"H1121\"* to|strong=\"H1121\"* the|strong=\"H7126\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H7126\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, and|strong=\"H1121\"* shall|strong=\"H1121\"* wash|strong=\"H7364\"* them|strong=\"H7126\"* with|strong=\"H7364\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H4886\"* shall put|strong=\"H3847\"* on|strong=\"H3847\"* Aaron the|strong=\"H6942\"* holy|strong=\"H6944\"* garments; and|strong=\"H6944\"* you|strong=\"H4886\"* shall anoint|strong=\"H4886\"* him|strong=\"H4886\"*, and|strong=\"H6944\"* sanctify|strong=\"H6942\"* him|strong=\"H4886\"*, that|strong=\"H6944\"* he may minister|strong=\"H3547\"* to|strong=\"H6944\"* me|strong=\"H4886\"* in|strong=\"H3847\"* the|strong=\"H6942\"* priest|strong=\"H3547\"*’s office." + }, + { + "verseNum": 14, + "text": "You|strong=\"H7126\"* shall|strong=\"H1121\"* bring|strong=\"H7126\"* his|strong=\"H7126\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* put|strong=\"H3847\"* tunics|strong=\"H3801\"* on|strong=\"H3847\"* them|strong=\"H7126\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H4886\"* shall|strong=\"H1755\"* anoint|strong=\"H4886\"* them|strong=\"H1961\"*, as|strong=\"H3547\"* you|strong=\"H4886\"* anointed|strong=\"H4886\"* their|strong=\"H1961\"* father, that|strong=\"H1961\"* they may|strong=\"H1961\"* minister|strong=\"H3547\"* to|strong=\"H1961\"* me|strong=\"H4886\"* in|strong=\"H1755\"* the|strong=\"H1961\"* priest|strong=\"H3547\"*’s office. Their|strong=\"H1961\"* anointing|strong=\"H4888\"* shall|strong=\"H1755\"* be|strong=\"H1961\"* to|strong=\"H1961\"* them|strong=\"H1961\"* for|strong=\"H1961\"* an|strong=\"H1961\"* everlasting|strong=\"H5769\"* priesthood|strong=\"H3550\"* throughout|strong=\"H1755\"* their|strong=\"H1961\"* generations|strong=\"H1755\"*.”" + }, + { + "verseNum": 16, + "text": "Moses|strong=\"H4872\"* did|strong=\"H6213\"* so|strong=\"H3651\"*. According to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H6213\"*, so|strong=\"H3651\"* he|strong=\"H6213\"* did|strong=\"H6213\"*." + }, + { + "verseNum": 17, + "text": "In|strong=\"H8141\"* the|strong=\"H6965\"* first|strong=\"H7223\"* month|strong=\"H2320\"* in|strong=\"H8141\"* the|strong=\"H6965\"* second|strong=\"H8145\"* year|strong=\"H8141\"*, on|strong=\"H1961\"* the|strong=\"H6965\"* first|strong=\"H7223\"* day|strong=\"H2320\"* of|strong=\"H8141\"* the|strong=\"H6965\"* month|strong=\"H2320\"*, the|strong=\"H6965\"* tabernacle|strong=\"H4908\"* was|strong=\"H1961\"* raised|strong=\"H6965\"* up|strong=\"H6965\"*." + }, + { + "verseNum": 18, + "text": "Moses|strong=\"H4872\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H5414\"* tabernacle|strong=\"H4908\"*, and|strong=\"H6965\"* laid|strong=\"H7760\"* its|strong=\"H5414\"* sockets, and|strong=\"H6965\"* set|strong=\"H7760\"* up|strong=\"H6965\"* its|strong=\"H5414\"* boards|strong=\"H7175\"*, and|strong=\"H6965\"* put|strong=\"H5414\"* in|strong=\"H5414\"* its|strong=\"H5414\"* bars|strong=\"H1280\"*, and|strong=\"H6965\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* its|strong=\"H5414\"* pillars|strong=\"H5982\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3068\"* spread|strong=\"H6566\"* the|strong=\"H5921\"* covering|strong=\"H4372\"* over|strong=\"H5921\"* the|strong=\"H5921\"* tent, and|strong=\"H4872\"* put|strong=\"H7760\"* the|strong=\"H5921\"* roof of|strong=\"H3068\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"* above|strong=\"H4605\"* on|strong=\"H5921\"* it|strong=\"H7760\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H5414\"* took|strong=\"H3947\"* and|strong=\"H3947\"* put|strong=\"H5414\"* the|strong=\"H5921\"* covenant into|strong=\"H5921\"* the|strong=\"H5921\"* ark, and|strong=\"H3947\"* set|strong=\"H7760\"* the|strong=\"H5921\"* poles on|strong=\"H5921\"* the|strong=\"H5921\"* ark, and|strong=\"H3947\"* put|strong=\"H5414\"* the|strong=\"H5921\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* above|strong=\"H4605\"* on|strong=\"H5921\"* the|strong=\"H5921\"* ark." + }, + { + "verseNum": 21, + "text": "He|strong=\"H3068\"* brought|strong=\"H7760\"* the|strong=\"H5921\"* ark into|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*, and|strong=\"H4872\"* set|strong=\"H7760\"* up|strong=\"H7760\"* the|strong=\"H5921\"* veil|strong=\"H6532\"* of|strong=\"H3068\"* the|strong=\"H5921\"* screen|strong=\"H4539\"*, and|strong=\"H4872\"* screened|strong=\"H5526\"* the|strong=\"H5921\"* ark of|strong=\"H3068\"* the|strong=\"H5921\"* covenant, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H5414\"* put|strong=\"H5414\"* the|strong=\"H5921\"* table|strong=\"H7979\"* in|strong=\"H5921\"* the|strong=\"H5921\"* Tent of|strong=\"H5921\"* Meeting|strong=\"H4150\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* north|strong=\"H6828\"* side|strong=\"H3409\"* of|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*, outside|strong=\"H2351\"* of|strong=\"H5921\"* the|strong=\"H5921\"* veil|strong=\"H6532\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H3068\"* set|strong=\"H6186\"* the|strong=\"H6440\"* bread|strong=\"H3899\"* in|strong=\"H5921\"* order|strong=\"H6186\"* on|strong=\"H5921\"* it|strong=\"H5921\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H5921\"* put|strong=\"H7760\"* the|strong=\"H5921\"* lamp stand in|strong=\"H5921\"* the|strong=\"H5921\"* Tent of|strong=\"H5921\"* Meeting|strong=\"H4150\"*, opposite|strong=\"H5227\"* the|strong=\"H5921\"* table|strong=\"H7979\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* south|strong=\"H5045\"* side|strong=\"H3409\"* of|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H3068\"* lit the|strong=\"H6440\"* lamps|strong=\"H5216\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"H6440\"* put|strong=\"H7760\"* the|strong=\"H6440\"* golden|strong=\"H2091\"* altar|strong=\"H4196\"* in|strong=\"H6440\"* the|strong=\"H6440\"* Tent of|strong=\"H6440\"* Meeting|strong=\"H4150\"* before|strong=\"H6440\"* the|strong=\"H6440\"* veil|strong=\"H6532\"*;" + }, + { + "verseNum": 27, + "text": "and|strong=\"H4872\"* he|strong=\"H3068\"* burned|strong=\"H6999\"* incense|strong=\"H7004\"* of|strong=\"H3068\"* sweet|strong=\"H5561\"* spices|strong=\"H5561\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H7760\"* put|strong=\"H7760\"* up|strong=\"H7760\"* the|strong=\"H7760\"* screen|strong=\"H4539\"* of|strong=\"H4908\"* the|strong=\"H7760\"* door|strong=\"H6607\"* to|strong=\"H6607\"* the|strong=\"H7760\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 29, + "text": "He|strong=\"H3068\"* set|strong=\"H7760\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* at|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, and|strong=\"H4872\"* offered|strong=\"H5927\"* on|strong=\"H5921\"* it|strong=\"H7760\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* and|strong=\"H4872\"* the|strong=\"H5921\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 30, + "text": "He|strong=\"H8033\"* set|strong=\"H7760\"* the|strong=\"H5414\"* basin|strong=\"H3595\"* between the|strong=\"H5414\"* Tent of|strong=\"H4325\"* Meeting|strong=\"H4150\"* and|strong=\"H4196\"* the|strong=\"H5414\"* altar|strong=\"H4196\"*, and|strong=\"H4196\"* put|strong=\"H5414\"* water|strong=\"H4325\"* therein|strong=\"H8033\"*, with|strong=\"H7364\"* which|strong=\"H8033\"* to|strong=\"H5414\"* wash|strong=\"H7364\"*." + }, + { + "verseNum": 31, + "text": "Moses|strong=\"H4872\"*, Aaron, and|strong=\"H1121\"* his|strong=\"H7364\"* sons|strong=\"H1121\"* washed|strong=\"H7364\"* their|strong=\"H7364\"* hands|strong=\"H3027\"* and|strong=\"H1121\"* their|strong=\"H7364\"* feet|strong=\"H7272\"* there|strong=\"H4480\"*." + }, + { + "verseNum": 32, + "text": "When|strong=\"H3068\"* they|strong=\"H3068\"* went|strong=\"H4872\"* into the|strong=\"H3068\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, and|strong=\"H4872\"* when|strong=\"H3068\"* they|strong=\"H3068\"* came|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H3068\"* the|strong=\"H3068\"* altar|strong=\"H4196\"*, they|strong=\"H3068\"* washed|strong=\"H7364\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H5414\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H5414\"* court|strong=\"H2691\"* around|strong=\"H5439\"* the|strong=\"H5414\"* tabernacle|strong=\"H4908\"* and|strong=\"H6965\"* the|strong=\"H5414\"* altar|strong=\"H4196\"*, and|strong=\"H6965\"* set|strong=\"H5414\"* up|strong=\"H6965\"* the|strong=\"H5414\"* screen|strong=\"H4539\"* of|strong=\"H8179\"* the|strong=\"H5414\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* the|strong=\"H5414\"* court|strong=\"H2691\"*. So|strong=\"H5414\"* Moses|strong=\"H4872\"* finished|strong=\"H3615\"* the|strong=\"H5414\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 34, + "text": "Then|strong=\"H3068\"* the|strong=\"H3068\"* cloud|strong=\"H6051\"* covered|strong=\"H3680\"* the|strong=\"H3068\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* filled|strong=\"H4390\"* the|strong=\"H3068\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 35, + "text": "Moses|strong=\"H4872\"* wasn’t able|strong=\"H3201\"* to|strong=\"H3201\"* enter into|strong=\"H5921\"* the|strong=\"H5921\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, because|strong=\"H3588\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"* stayed on|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H4872\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* filled|strong=\"H4390\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 36, + "text": "When|strong=\"H1121\"* the|strong=\"H3605\"* cloud|strong=\"H6051\"* was|strong=\"H3478\"* taken|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5265\"* over|strong=\"H5921\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*, the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H5927\"* onward|strong=\"H5265\"*, throughout|strong=\"H3605\"* all|strong=\"H3605\"* their|strong=\"H3605\"* journeys|strong=\"H4550\"*;" + }, + { + "verseNum": 37, + "text": "but|strong=\"H3808\"* if the|strong=\"H3117\"* cloud|strong=\"H6051\"* wasn’t taken|strong=\"H5927\"* up|strong=\"H5927\"*, then|strong=\"H5927\"* they|strong=\"H3117\"* didn’t travel until|strong=\"H5704\"* the|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* it|strong=\"H5927\"* was|strong=\"H3117\"* taken|strong=\"H5927\"* up|strong=\"H5927\"*." + }, + { + "verseNum": 38, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* cloud|strong=\"H6051\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* by|strong=\"H5921\"* day|strong=\"H3119\"*, and|strong=\"H3478\"* there|strong=\"H1961\"* was|strong=\"H3068\"* fire in|strong=\"H5921\"* the|strong=\"H3605\"* cloud|strong=\"H6051\"* by|strong=\"H5921\"* night|strong=\"H3915\"*, in|strong=\"H5921\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, throughout|strong=\"H3605\"* all|strong=\"H3605\"* their|strong=\"H3605\"* journeys|strong=\"H4550\"*." + } + ] + } + ] + }, + { + "name": "Leviticus", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* called|strong=\"H7121\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7121\"* from|strong=\"H3068\"* the|strong=\"H3068\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H7126\"*, ‘When|strong=\"H3588\"* anyone|strong=\"H3588\"* of|strong=\"H1121\"* you|strong=\"H3588\"* offers|strong=\"H7126\"* an|strong=\"H7126\"* offering|strong=\"H7133\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* your|strong=\"H3068\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* the|strong=\"H3588\"* livestock, from|strong=\"H4480\"* the|strong=\"H3588\"* herd|strong=\"H1241\"* and|strong=\"H1121\"* from|strong=\"H4480\"* the|strong=\"H3588\"* flock|strong=\"H6629\"*." + }, + { + "verseNum": 3, + "text": "“‘If his|strong=\"H3068\"* offering|strong=\"H5930\"* is|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* from|strong=\"H4480\"* the|strong=\"H6440\"* herd|strong=\"H1241\"*, he|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* male|strong=\"H2145\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*. He|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* it|strong=\"H7126\"* at|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, that|strong=\"H3068\"* he|strong=\"H3068\"* may|strong=\"H3068\"* be|strong=\"H3068\"* accepted|strong=\"H7522\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3027\"* shall|strong=\"H3027\"* lay|strong=\"H5564\"* his|strong=\"H5921\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H3027\"* it|strong=\"H5921\"* shall|strong=\"H3027\"* be|strong=\"H3027\"* accepted|strong=\"H7521\"* for|strong=\"H5921\"* him|strong=\"H5921\"* to|strong=\"H5921\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3068\"* shall|strong=\"H3548\"* kill|strong=\"H7819\"* the|strong=\"H6440\"* bull|strong=\"H1241\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. Aaron’s sons|strong=\"H1121\"*, the|strong=\"H6440\"* priests|strong=\"H3548\"*, shall|strong=\"H3548\"* present|strong=\"H7126\"* the|strong=\"H6440\"* blood|strong=\"H1818\"* and|strong=\"H1121\"* sprinkle|strong=\"H2236\"* the|strong=\"H6440\"* blood|strong=\"H1818\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* that|strong=\"H3068\"* is|strong=\"H3068\"* at|strong=\"H5921\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H5408\"* shall skin|strong=\"H6584\"* the|strong=\"H6584\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H5930\"* cut|strong=\"H5408\"* it into pieces|strong=\"H5409\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron|strong=\"H6186\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* put|strong=\"H5414\"* fire on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H1121\"* lay|strong=\"H5414\"* wood|strong=\"H6086\"* in|strong=\"H5921\"* order|strong=\"H6186\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fire;" + }, + { + "verseNum": 8, + "text": "and|strong=\"H1121\"* Aaron|strong=\"H6186\"*’s sons|strong=\"H1121\"*, the|strong=\"H5921\"* priests|strong=\"H3548\"*, shall|strong=\"H3548\"* lay|strong=\"H1121\"* the|strong=\"H5921\"* pieces|strong=\"H5409\"*, the|strong=\"H5921\"* head|strong=\"H7218\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* fat|strong=\"H6309\"* in|strong=\"H5921\"* order|strong=\"H6186\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wood|strong=\"H6086\"* that|strong=\"H3548\"* is|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fire which|strong=\"H4196\"* is|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*;" + }, + { + "verseNum": 9, + "text": "but|strong=\"H3605\"* he|strong=\"H3068\"* shall|strong=\"H3548\"* wash|strong=\"H7364\"* its|strong=\"H3605\"* innards and|strong=\"H3068\"* its|strong=\"H3605\"* legs|strong=\"H3767\"* with|strong=\"H3068\"* water|strong=\"H4325\"*. The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* all|strong=\"H3605\"* of|strong=\"H3068\"* it|strong=\"H7130\"* on|strong=\"H3068\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, for|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, an|strong=\"H3068\"* offering|strong=\"H5930\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire, of|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "“‘If his|strong=\"H7126\"* offering|strong=\"H5930\"* is|strong=\"H7133\"* from|strong=\"H4480\"* the|strong=\"H4480\"* flock|strong=\"H6629\"*, from|strong=\"H4480\"* the|strong=\"H4480\"* sheep|strong=\"H6629\"* or|strong=\"H4480\"* from|strong=\"H4480\"* the|strong=\"H4480\"* goats|strong=\"H5795\"*, for|strong=\"H4480\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, he|strong=\"H4480\"* shall|strong=\"H8549\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* male|strong=\"H2145\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3068\"* shall|strong=\"H3548\"* kill|strong=\"H7819\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H6440\"* north|strong=\"H6828\"* side|strong=\"H5439\"* of|strong=\"H1121\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. Aaron’s sons|strong=\"H1121\"*, the|strong=\"H6440\"* priests|strong=\"H3548\"*, shall|strong=\"H3548\"* sprinkle|strong=\"H2236\"* its|strong=\"H5921\"* blood|strong=\"H1818\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H5921\"* shall|strong=\"H3548\"* cut|strong=\"H5408\"* it|strong=\"H5921\"* into|strong=\"H5921\"* its|strong=\"H5921\"* pieces|strong=\"H5409\"*, with|strong=\"H5921\"* its|strong=\"H5921\"* head|strong=\"H7218\"* and|strong=\"H6086\"* its|strong=\"H5921\"* fat|strong=\"H6309\"*. The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* lay|strong=\"H6186\"* them|strong=\"H5921\"* in|strong=\"H5921\"* order|strong=\"H6186\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wood|strong=\"H6086\"* that|strong=\"H3548\"* is|strong=\"H7218\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fire which|strong=\"H4196\"* is|strong=\"H7218\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*," + }, + { + "verseNum": 13, + "text": "but|strong=\"H1931\"* the|strong=\"H3605\"* innards and|strong=\"H3068\"* the|strong=\"H3605\"* legs|strong=\"H3767\"* he|strong=\"H1931\"* shall|strong=\"H3548\"* wash|strong=\"H7364\"* with|strong=\"H3068\"* water|strong=\"H4325\"*. The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* offer|strong=\"H7126\"* the|strong=\"H3605\"* whole|strong=\"H3605\"*, and|strong=\"H3068\"* burn|strong=\"H6999\"* it|strong=\"H1931\"* on|strong=\"H3068\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*. It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, an|strong=\"H7126\"* offering|strong=\"H5930\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire, of|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "“‘If|strong=\"H1121\"* his|strong=\"H3068\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* of|strong=\"H1121\"* birds|strong=\"H5775\"*, then|strong=\"H7126\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* his|strong=\"H3068\"* offering|strong=\"H5930\"* from|strong=\"H4480\"* turtledoves|strong=\"H8449\"* or|strong=\"H1121\"* of|strong=\"H1121\"* young|strong=\"H1121\"* pigeons|strong=\"H3123\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* bring|strong=\"H7126\"* it|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H3548\"* wring|strong=\"H4454\"* off|strong=\"H5921\"* its|strong=\"H5921\"* head|strong=\"H7218\"*, and|strong=\"H3548\"* burn|strong=\"H6999\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*; and|strong=\"H3548\"* its|strong=\"H5921\"* blood|strong=\"H1818\"* shall|strong=\"H3548\"* be|strong=\"H1818\"* drained|strong=\"H4680\"* out|strong=\"H4680\"* on|strong=\"H5921\"* the|strong=\"H5921\"* side|strong=\"H7023\"* of|strong=\"H7218\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*;" + }, + { + "verseNum": 16, + "text": "and|strong=\"H4196\"* he|strong=\"H4196\"* shall|strong=\"H6924\"* take|strong=\"H5493\"* away|strong=\"H5493\"* its|strong=\"H5493\"* crop|strong=\"H4760\"* and|strong=\"H4196\"* its|strong=\"H5493\"* feathers|strong=\"H5133\"*, and|strong=\"H4196\"* cast|strong=\"H7993\"* it|strong=\"H7993\"* beside the|strong=\"H5493\"* altar|strong=\"H4196\"* on|strong=\"H4725\"* the|strong=\"H5493\"* east|strong=\"H6924\"* part|strong=\"H6924\"*, in|strong=\"H5493\"* the|strong=\"H5493\"* place|strong=\"H4725\"* of|strong=\"H4196\"* the|strong=\"H5493\"* ashes|strong=\"H1880\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H1931\"* shall|strong=\"H3548\"* tear|strong=\"H8156\"* it|strong=\"H1931\"* by|strong=\"H5921\"* its|strong=\"H5921\"* wings|strong=\"H3671\"*, but|strong=\"H3808\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* divide it|strong=\"H1931\"* apart. The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* it|strong=\"H1931\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* wood|strong=\"H6086\"* that|strong=\"H1931\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fire. It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, an|strong=\"H3068\"* offering|strong=\"H5930\"* made|strong=\"H3068\"* by|strong=\"H5921\"* fire, of|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "“‘When|strong=\"H3588\"* anyone|strong=\"H5315\"* offers|strong=\"H7126\"* an|strong=\"H7126\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, his|strong=\"H5414\"* offering|strong=\"H4503\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* of|strong=\"H3068\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"*. He|strong=\"H3588\"* shall|strong=\"H3068\"* pour|strong=\"H3332\"* oil|strong=\"H8081\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H3068\"* put|strong=\"H5414\"* frankincense|strong=\"H3828\"* on|strong=\"H5921\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H8033\"* shall|strong=\"H3548\"* bring it|strong=\"H5921\"* to|strong=\"H3068\"* Aaron’s sons|strong=\"H1121\"*, the|strong=\"H3605\"* priests|strong=\"H3548\"*. He|strong=\"H8033\"* shall|strong=\"H3548\"* take|strong=\"H7061\"* his|strong=\"H3605\"* handful|strong=\"H7062\"* of|strong=\"H1121\"* its|strong=\"H3605\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* its|strong=\"H3605\"* oil|strong=\"H8081\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* its|strong=\"H3605\"* frankincense|strong=\"H3828\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* its|strong=\"H3605\"* memorial on|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, an|strong=\"H8033\"* offering|strong=\"H6999\"* made|strong=\"H3068\"* by|strong=\"H5921\"* fire, of|strong=\"H1121\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "That|strong=\"H3068\"* which|strong=\"H3068\"* is|strong=\"H3068\"* left|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* Aaron’s and|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"*’. It|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* part|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H3068\"* offerings|strong=\"H4503\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire." + }, + { + "verseNum": 4, + "text": "“‘When|strong=\"H3588\"* you|strong=\"H3588\"* offer|strong=\"H7126\"* an|strong=\"H7126\"* offering|strong=\"H4503\"* of|strong=\"H4503\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* baked|strong=\"H3989\"* in|strong=\"H4503\"* the|strong=\"H3588\"* oven|strong=\"H8574\"*, it|strong=\"H7126\"* shall|strong=\"H7133\"* be|strong=\"H8081\"* unleavened|strong=\"H4682\"* cakes|strong=\"H2471\"* of|strong=\"H4503\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, or|strong=\"H4682\"* unleavened|strong=\"H4682\"* wafers|strong=\"H7550\"* anointed|strong=\"H4886\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 5, + "text": "If|strong=\"H1961\"* your|strong=\"H5921\"* offering|strong=\"H4503\"* is|strong=\"H1961\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* made|strong=\"H1961\"* on|strong=\"H5921\"* a|strong=\"H3068\"* griddle|strong=\"H4227\"*, it|strong=\"H5921\"* shall|strong=\"H7133\"* be|strong=\"H1961\"* of|strong=\"H5921\"* unleavened|strong=\"H4682\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"*, mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H5921\"* shall|strong=\"H1931\"* cut it|strong=\"H1931\"* in|strong=\"H5921\"* pieces|strong=\"H6595\"*, and|strong=\"H8081\"* pour|strong=\"H3332\"* oil|strong=\"H8081\"* on|strong=\"H5921\"* it|strong=\"H1931\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 7, + "text": "If your|strong=\"H6213\"* offering|strong=\"H4503\"* is|strong=\"H8081\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H4503\"* the|strong=\"H6213\"* pan|strong=\"H4802\"*, it|strong=\"H6213\"* shall|strong=\"H6213\"* be|strong=\"H8081\"* made|strong=\"H6213\"* of|strong=\"H4503\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* with|strong=\"H6213\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H6213\"* shall|strong=\"H3548\"* bring|strong=\"H7126\"* the|strong=\"H6213\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* that|strong=\"H3068\"* is|strong=\"H3068\"* made|strong=\"H6213\"* of|strong=\"H3068\"* these|strong=\"H6213\"* things to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. It|strong=\"H7126\"* shall|strong=\"H3548\"* be|strong=\"H3068\"* presented|strong=\"H7126\"* to|strong=\"H3068\"* the|strong=\"H6213\"* priest|strong=\"H3548\"*, and|strong=\"H3068\"* he|strong=\"H6213\"* shall|strong=\"H3548\"* bring|strong=\"H7126\"* it|strong=\"H7126\"* to|strong=\"H3068\"* the|strong=\"H6213\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3068\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H7311\"* from|strong=\"H4480\"* the|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* its|strong=\"H4480\"* memorial, and|strong=\"H3068\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* it|strong=\"H3068\"* on|strong=\"H3068\"* the|strong=\"H3068\"* altar|strong=\"H4196\"*, an|strong=\"H4480\"* offering|strong=\"H4503\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire, of|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "That|strong=\"H3068\"* which|strong=\"H3068\"* is|strong=\"H3068\"* left|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* Aaron’s and|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"*’. It|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* part|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H3068\"* offerings|strong=\"H4503\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire." + }, + { + "verseNum": 11, + "text": "“‘No|strong=\"H3808\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* which|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* made|strong=\"H6213\"* with|strong=\"H3068\"* yeast|strong=\"H7603\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* burn|strong=\"H6999\"* no|strong=\"H3808\"* yeast|strong=\"H7603\"*, nor|strong=\"H3808\"* any|strong=\"H3605\"* honey|strong=\"H1706\"*, as|strong=\"H6213\"* an|strong=\"H6213\"* offering|strong=\"H4503\"* made|strong=\"H6213\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "As|strong=\"H3068\"* an|strong=\"H7126\"* offering|strong=\"H7133\"* of|strong=\"H3068\"* first|strong=\"H7225\"* fruits|strong=\"H7225\"* you|strong=\"H3808\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* them|strong=\"H7126\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, but|strong=\"H3808\"* they|strong=\"H3068\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* rise|strong=\"H5927\"* up|strong=\"H5927\"* as|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* on|strong=\"H3068\"* the|strong=\"H3068\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 13, + "text": "Every|strong=\"H3605\"* offering|strong=\"H4503\"* of|strong=\"H5921\"* your|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* you|strong=\"H3605\"* shall|strong=\"H3808\"* season|strong=\"H4414\"* with|strong=\"H1285\"* salt|strong=\"H4417\"*. You|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* allow|strong=\"H4414\"* the|strong=\"H3605\"* salt|strong=\"H4417\"* of|strong=\"H5921\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* of|strong=\"H5921\"* your|strong=\"H3605\"* God|strong=\"H3808\"*+ 2:13 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* to|strong=\"H5921\"* be|strong=\"H3808\"* lacking|strong=\"H7673\"* from|strong=\"H5921\"* your|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*. With|strong=\"H1285\"* all|strong=\"H3605\"* your|strong=\"H3605\"* offerings|strong=\"H4503\"* you|strong=\"H3605\"* shall|strong=\"H3808\"* offer|strong=\"H7126\"* salt|strong=\"H4417\"*." + }, + { + "verseNum": 14, + "text": "“‘If you|strong=\"H7126\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* first|strong=\"H1061\"* fruits|strong=\"H1061\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, you|strong=\"H7126\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* for|strong=\"H3068\"* the|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* your|strong=\"H3068\"* first|strong=\"H1061\"* fruits|strong=\"H1061\"* fresh|strong=\"H3759\"* heads of|strong=\"H3068\"* grain|strong=\"H3759\"* parched|strong=\"H7033\"* with|strong=\"H3068\"* fire and|strong=\"H3068\"* crushed." + }, + { + "verseNum": 15, + "text": "You|strong=\"H5414\"* shall|strong=\"H1931\"* put|strong=\"H5414\"* oil|strong=\"H8081\"* on|strong=\"H5921\"* it|strong=\"H5414\"* and|strong=\"H8081\"* lay|strong=\"H5414\"* frankincense|strong=\"H3828\"* on|strong=\"H5921\"* it|strong=\"H5414\"*. It|strong=\"H5414\"* is|strong=\"H1931\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* as|strong=\"H3068\"* its|strong=\"H3605\"* memorial part|strong=\"H5921\"* of|strong=\"H3068\"* its|strong=\"H3605\"* crushed grain|strong=\"H3605\"* and|strong=\"H3068\"* part|strong=\"H5921\"* of|strong=\"H3068\"* its|strong=\"H3605\"* oil|strong=\"H8081\"*, along|strong=\"H5921\"* with|strong=\"H3068\"* all|strong=\"H3605\"* its|strong=\"H3605\"* frankincense|strong=\"H3828\"*. It|strong=\"H5921\"* is|strong=\"H3068\"* an|strong=\"H3068\"* offering|strong=\"H6999\"* made|strong=\"H3068\"* by|strong=\"H5921\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "“‘If|strong=\"H1931\"* his|strong=\"H3068\"* offering|strong=\"H7133\"* is|strong=\"H3068\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, if|strong=\"H1931\"* he|strong=\"H1931\"* offers|strong=\"H7126\"* it|strong=\"H1931\"* from|strong=\"H4480\"* the|strong=\"H6440\"* herd|strong=\"H1241\"*, whether|strong=\"H4480\"* male|strong=\"H2145\"* or|strong=\"H4480\"* female|strong=\"H5347\"*, he|strong=\"H1931\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* it|strong=\"H1931\"* without|strong=\"H8549\"* defect|strong=\"H8549\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3027\"* shall|strong=\"H3548\"* lay|strong=\"H5564\"* his|strong=\"H5921\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H1121\"* his|strong=\"H5921\"* offering|strong=\"H7133\"*, and|strong=\"H1121\"* kill|strong=\"H7819\"* it|strong=\"H5921\"* at|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*. Aaron’s sons|strong=\"H1121\"*, the|strong=\"H5921\"* priests|strong=\"H3548\"*, shall|strong=\"H3548\"* sprinkle|strong=\"H2236\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* an|strong=\"H7126\"* offering|strong=\"H8002\"* made|strong=\"H3068\"* by|strong=\"H5921\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. The|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* covers|strong=\"H3680\"* the|strong=\"H3605\"* innards, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H3605\"* innards," + }, + { + "verseNum": 4, + "text": "and|strong=\"H8147\"* the|strong=\"H5921\"* two|strong=\"H8147\"* kidneys|strong=\"H3629\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* fat|strong=\"H2459\"* that|strong=\"H2459\"* is|strong=\"H3516\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, which is|strong=\"H3516\"* by|strong=\"H5921\"* the|strong=\"H5921\"* loins|strong=\"H3689\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* cover on|strong=\"H5921\"* the|strong=\"H5921\"* liver|strong=\"H3516\"*, with|strong=\"H5921\"* the|strong=\"H5921\"* kidneys|strong=\"H3629\"*, he|strong=\"H8147\"* shall|strong=\"H8147\"* take|strong=\"H5493\"* away|strong=\"H5493\"*." + }, + { + "verseNum": 5, + "text": "Aaron’s sons|strong=\"H1121\"* shall|strong=\"H3068\"* burn|strong=\"H6999\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* on|strong=\"H5921\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wood|strong=\"H6086\"* that|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fire: it|strong=\"H5921\"* is|strong=\"H3068\"* an|strong=\"H3068\"* offering|strong=\"H5930\"* made|strong=\"H3068\"* by|strong=\"H5921\"* fire, of|strong=\"H1121\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "“‘If his|strong=\"H3068\"* offering|strong=\"H7133\"* for|strong=\"H3068\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* from|strong=\"H4480\"* the|strong=\"H3068\"* flock|strong=\"H6629\"*, either|strong=\"H4480\"* male|strong=\"H2145\"* or|strong=\"H4480\"* female|strong=\"H5347\"*, he|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* it|strong=\"H7126\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*." + }, + { + "verseNum": 7, + "text": "If|strong=\"H1931\"* he|strong=\"H1931\"* offers|strong=\"H7126\"* a|strong=\"H3068\"* lamb|strong=\"H3775\"* for|strong=\"H6440\"* his|strong=\"H3068\"* offering|strong=\"H7133\"*, then|strong=\"H7126\"* he|strong=\"H1931\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* it|strong=\"H1931\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 8, + "text": "and|strong=\"H1121\"* he|strong=\"H3027\"* shall|strong=\"H1121\"* lay|strong=\"H5564\"* his|strong=\"H6440\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H6440\"* head|strong=\"H7218\"* of|strong=\"H1121\"* his|strong=\"H6440\"* offering|strong=\"H7133\"*, and|strong=\"H1121\"* kill|strong=\"H7819\"* it|strong=\"H5921\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*. Aaron’s sons|strong=\"H1121\"* shall|strong=\"H1121\"* sprinkle|strong=\"H2236\"* its|strong=\"H5921\"* blood|strong=\"H1818\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* from|strong=\"H5493\"* the|strong=\"H3605\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* an|strong=\"H7126\"* offering|strong=\"H8002\"* made|strong=\"H3068\"* by|strong=\"H5921\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; its|strong=\"H3605\"* fat|strong=\"H2459\"*, the|strong=\"H3605\"* entire|strong=\"H3605\"* tail fat|strong=\"H2459\"*, he|strong=\"H3068\"* shall|strong=\"H3068\"* take|strong=\"H5493\"* away|strong=\"H5493\"* close|strong=\"H5980\"* to|strong=\"H3068\"* the|strong=\"H3605\"* backbone|strong=\"H6096\"*; and|strong=\"H3068\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* covers|strong=\"H3680\"* the|strong=\"H3605\"* entrails|strong=\"H7130\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H3605\"* entrails|strong=\"H7130\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"H8147\"* the|strong=\"H5921\"* two|strong=\"H8147\"* kidneys|strong=\"H3629\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* fat|strong=\"H2459\"* that|strong=\"H2459\"* is|strong=\"H3516\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, which is|strong=\"H3516\"* by|strong=\"H5921\"* the|strong=\"H5921\"* loins|strong=\"H3689\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* cover on|strong=\"H5921\"* the|strong=\"H5921\"* liver|strong=\"H3516\"*, with|strong=\"H5921\"* the|strong=\"H5921\"* kidneys|strong=\"H3629\"*, he|strong=\"H8147\"* shall|strong=\"H8147\"* take|strong=\"H5493\"* away|strong=\"H5493\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H3068\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* it|strong=\"H3068\"* on|strong=\"H3068\"* the|strong=\"H3068\"* altar|strong=\"H4196\"*: it|strong=\"H3068\"* is|strong=\"H3068\"* the|strong=\"H3068\"* food|strong=\"H3899\"* of|strong=\"H3068\"* the|strong=\"H3068\"* offering|strong=\"H6999\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "“‘If his|strong=\"H3068\"* offering|strong=\"H7133\"* is|strong=\"H3068\"* a|strong=\"H3068\"* goat|strong=\"H5795\"*, then|strong=\"H7126\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* it|strong=\"H7126\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3027\"* shall|strong=\"H1121\"* lay|strong=\"H5564\"* his|strong=\"H6440\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* its|strong=\"H5921\"* head|strong=\"H7218\"*, and|strong=\"H1121\"* kill|strong=\"H7819\"* it|strong=\"H5921\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*; and|strong=\"H1121\"* the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron shall|strong=\"H1121\"* sprinkle|strong=\"H2236\"* its|strong=\"H5921\"* blood|strong=\"H1818\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* from|strong=\"H4480\"* it|strong=\"H5921\"* as|strong=\"H3068\"* his|strong=\"H3605\"* offering|strong=\"H7133\"*, an|strong=\"H7126\"* offering|strong=\"H7133\"* made|strong=\"H3068\"* by|strong=\"H5921\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* covers|strong=\"H3680\"* the|strong=\"H3605\"* innards, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H3605\"* innards," + }, + { + "verseNum": 15, + "text": "and|strong=\"H8147\"* the|strong=\"H5921\"* two|strong=\"H8147\"* kidneys|strong=\"H3629\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* fat|strong=\"H2459\"* that|strong=\"H2459\"* is|strong=\"H3516\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, which is|strong=\"H3516\"* by|strong=\"H5921\"* the|strong=\"H5921\"* loins|strong=\"H3689\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* cover on|strong=\"H5921\"* the|strong=\"H5921\"* liver|strong=\"H3516\"*, with|strong=\"H5921\"* the|strong=\"H5921\"* kidneys|strong=\"H3629\"*, he|strong=\"H8147\"* shall|strong=\"H8147\"* take|strong=\"H5493\"* away|strong=\"H5493\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* them|strong=\"H4196\"* on|strong=\"H3068\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*: it|strong=\"H3068\"* is|strong=\"H3068\"* the|strong=\"H3605\"* food|strong=\"H3899\"* of|strong=\"H3068\"* the|strong=\"H3605\"* offering|strong=\"H6999\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire, for|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*; all|strong=\"H3605\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s." + }, + { + "verseNum": 17, + "text": "“‘It|strong=\"H3808\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* statute|strong=\"H2708\"* throughout|strong=\"H3605\"* your|strong=\"H3605\"* generations|strong=\"H1755\"* in|strong=\"H3808\"* all|strong=\"H3605\"* your|strong=\"H3605\"* dwellings|strong=\"H4186\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* shall|strong=\"H3808\"* eat neither|strong=\"H3808\"* fat|strong=\"H2459\"* nor|strong=\"H3808\"* blood|strong=\"H1818\"*.’”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘If|strong=\"H3588\"* anyone|strong=\"H3605\"* sins|strong=\"H2398\"* unintentionally|strong=\"H7684\"*, in|strong=\"H3478\"* any|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* things|strong=\"H3605\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H4687\"* not|strong=\"H3808\"* to|strong=\"H1696\"* be|strong=\"H3808\"* done|strong=\"H6213\"*, and|strong=\"H1121\"* does|strong=\"H6213\"* any|strong=\"H3605\"* one|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H6213\"*," + }, + { + "verseNum": 3, + "text": "if|strong=\"H2398\"* the|strong=\"H5921\"* anointed|strong=\"H4899\"* priest|strong=\"H3548\"* sins|strong=\"H2403\"* so|strong=\"H7126\"* as|strong=\"H3068\"* to|strong=\"H3068\"* bring|strong=\"H7126\"* guilt on|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"*, then|strong=\"H7126\"* let him|strong=\"H5921\"* offer|strong=\"H7126\"* for|strong=\"H5921\"* his|strong=\"H3068\"* sin|strong=\"H2403\"* which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* sinned|strong=\"H2398\"* a|strong=\"H3068\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* without|strong=\"H8549\"* defect|strong=\"H8549\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* bring the|strong=\"H6440\"* bull|strong=\"H6499\"* to|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* lay|strong=\"H5564\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H6440\"* head|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H6440\"* bull|strong=\"H6499\"*, and|strong=\"H3068\"* kill|strong=\"H7819\"* the|strong=\"H6440\"* bull|strong=\"H6499\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3947\"* anointed|strong=\"H4899\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* some of|strong=\"H1818\"* the|strong=\"H3947\"* blood|strong=\"H1818\"* of|strong=\"H1818\"* the|strong=\"H3947\"* bull|strong=\"H6499\"*, and|strong=\"H3548\"* bring|strong=\"H3947\"* it|strong=\"H3947\"* to|strong=\"H4150\"* the|strong=\"H3947\"* Tent of|strong=\"H1818\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* dip|strong=\"H2881\"* his|strong=\"H3068\"* finger in|strong=\"H3068\"* the|strong=\"H6440\"* blood|strong=\"H1818\"*, and|strong=\"H3068\"* sprinkle|strong=\"H5137\"* some|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H6440\"* blood|strong=\"H1818\"* seven|strong=\"H7651\"* times|strong=\"H6471\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, before|strong=\"H6440\"* the|strong=\"H6440\"* veil|strong=\"H6532\"* of|strong=\"H3068\"* the|strong=\"H6440\"* sanctuary|strong=\"H6944\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* put|strong=\"H5414\"* some|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* the|strong=\"H3605\"* horns|strong=\"H7161\"* of|strong=\"H3068\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* sweet|strong=\"H5561\"* incense|strong=\"H7004\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* shall|strong=\"H3548\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* the|strong=\"H3605\"* rest of|strong=\"H3068\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H3068\"* the|strong=\"H3605\"* bull|strong=\"H6499\"* at|strong=\"H5921\"* the|strong=\"H3605\"* base|strong=\"H3247\"* of|strong=\"H3068\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* at|strong=\"H5921\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3605\"* shall take|strong=\"H7311\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* of|strong=\"H4480\"* the|strong=\"H3605\"* bull|strong=\"H6499\"* of|strong=\"H4480\"* the|strong=\"H3605\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* from|strong=\"H4480\"* it|strong=\"H5921\"*: the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* covers|strong=\"H3680\"* the|strong=\"H3605\"* innards, and|strong=\"H6499\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* is|strong=\"H3605\"* on|strong=\"H5921\"* the|strong=\"H3605\"* innards," + }, + { + "verseNum": 9, + "text": "and|strong=\"H8147\"* the|strong=\"H5921\"* two|strong=\"H8147\"* kidneys|strong=\"H3629\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* fat|strong=\"H2459\"* that|strong=\"H2459\"* is|strong=\"H3516\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, which is|strong=\"H3516\"* by|strong=\"H5921\"* the|strong=\"H5921\"* loins|strong=\"H3689\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* cover on|strong=\"H5921\"* the|strong=\"H5921\"* liver|strong=\"H3516\"*, with|strong=\"H5921\"* the|strong=\"H5921\"* kidneys|strong=\"H3629\"*, he|strong=\"H8147\"* shall|strong=\"H8147\"* remove|strong=\"H5493\"*," + }, + { + "verseNum": 10, + "text": "as|strong=\"H4196\"* it|strong=\"H5921\"* is|strong=\"H3548\"* removed|strong=\"H7311\"* from|strong=\"H5921\"* the|strong=\"H5921\"* bull|strong=\"H7794\"* of|strong=\"H4196\"* the|strong=\"H5921\"* sacrifice|strong=\"H2077\"* of|strong=\"H4196\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*. The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3605\"* shall|strong=\"H1320\"* carry the|strong=\"H3605\"* bull|strong=\"H6499\"*’s skin|strong=\"H5785\"*, all|strong=\"H3605\"* its|strong=\"H3605\"* meat|strong=\"H1320\"*, with|strong=\"H5921\"* its|strong=\"H3605\"* head|strong=\"H7218\"*, and|strong=\"H7218\"* with|strong=\"H5921\"* its|strong=\"H3605\"* legs|strong=\"H3767\"*, its|strong=\"H3605\"* innards, and|strong=\"H7218\"* its|strong=\"H3605\"* dung|strong=\"H6569\"*" + }, + { + "verseNum": 12, + "text": "—all|strong=\"H3605\"* the|strong=\"H3605\"* rest of|strong=\"H4264\"* the|strong=\"H3605\"* bull|strong=\"H6499\"*—outside|strong=\"H2351\"* of|strong=\"H4264\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* to|strong=\"H3318\"* a|strong=\"H3068\"* clean|strong=\"H2889\"* place|strong=\"H4725\"* where|strong=\"H4725\"* the|strong=\"H3605\"* ashes|strong=\"H1880\"* are|strong=\"H1880\"* poured|strong=\"H8211\"* out|strong=\"H3318\"*, and|strong=\"H6086\"* burn|strong=\"H8313\"* it|strong=\"H5921\"* on|strong=\"H5921\"* wood|strong=\"H6086\"* with|strong=\"H8313\"* fire. It|strong=\"H5921\"* shall|strong=\"H2889\"* be|strong=\"H6086\"* burned|strong=\"H8313\"* where|strong=\"H4725\"* the|strong=\"H3605\"* ashes|strong=\"H1880\"* are|strong=\"H1880\"* poured|strong=\"H8211\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 13, + "text": "“‘If the|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* sins, and|strong=\"H3478\"* the|strong=\"H3605\"* thing|strong=\"H1697\"* is|strong=\"H3068\"* hidden|strong=\"H5956\"* from|strong=\"H3478\"* the|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H3068\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*, and|strong=\"H3478\"* they|strong=\"H3068\"* have|strong=\"H3068\"* done|strong=\"H6213\"* any|strong=\"H3605\"* of|strong=\"H3068\"* the|strong=\"H3605\"* things|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H4687\"* not|strong=\"H3808\"* to|strong=\"H3478\"* be|strong=\"H3808\"* done|strong=\"H6213\"*, and|strong=\"H3478\"* are|strong=\"H3478\"* guilty;" + }, + { + "verseNum": 14, + "text": "when|strong=\"H1121\"* the|strong=\"H6440\"* sin|strong=\"H2403\"* in|strong=\"H5921\"* which|strong=\"H6951\"* they|strong=\"H5921\"* have|strong=\"H3045\"* sinned|strong=\"H2398\"* is|strong=\"H1121\"* known|strong=\"H3045\"*, then|strong=\"H7126\"* the|strong=\"H6440\"* assembly|strong=\"H6951\"* shall|strong=\"H1121\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, and|strong=\"H1121\"* bring|strong=\"H7126\"* it|strong=\"H5921\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* the|strong=\"H6440\"* congregation|strong=\"H5712\"* shall|strong=\"H3068\"* lay|strong=\"H5564\"* their|strong=\"H3068\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H6440\"* head|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H6440\"* bull|strong=\"H6499\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* the|strong=\"H6440\"* bull|strong=\"H6499\"* shall|strong=\"H3068\"* be|strong=\"H3027\"* killed|strong=\"H7819\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3548\"* anointed|strong=\"H4899\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* bring some of|strong=\"H1818\"* the|strong=\"H3548\"* blood|strong=\"H1818\"* of|strong=\"H1818\"* the|strong=\"H3548\"* bull|strong=\"H6499\"* to|strong=\"H4150\"* the|strong=\"H3548\"* Tent of|strong=\"H1818\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* dip|strong=\"H2881\"* his|strong=\"H3068\"* finger in|strong=\"H3068\"* the|strong=\"H6440\"* blood|strong=\"H1818\"* and|strong=\"H3068\"* sprinkle|strong=\"H5137\"* it|strong=\"H6440\"* seven|strong=\"H7651\"* times|strong=\"H6471\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, before|strong=\"H6440\"* the|strong=\"H6440\"* veil|strong=\"H6532\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* put|strong=\"H5414\"* some|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* the|strong=\"H3605\"* horns|strong=\"H7161\"* of|strong=\"H3068\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* which|strong=\"H3068\"* is|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3605\"* is|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*; and|strong=\"H3068\"* the|strong=\"H3605\"* rest of|strong=\"H3068\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* at|strong=\"H5921\"* the|strong=\"H3605\"* base|strong=\"H3247\"* of|strong=\"H3068\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* at|strong=\"H5921\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 19, + "text": "All|strong=\"H3605\"* its|strong=\"H3605\"* fat|strong=\"H2459\"* he|strong=\"H3605\"* shall take|strong=\"H7311\"* from|strong=\"H4480\"* it|strong=\"H7311\"*, and|strong=\"H4196\"* burn|strong=\"H6999\"* it|strong=\"H7311\"* on|strong=\"H3605\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H3651\"* shall|strong=\"H3548\"* do|strong=\"H6213\"* this|strong=\"H3651\"* with|strong=\"H6213\"* the|strong=\"H5921\"* bull|strong=\"H6499\"*; as|strong=\"H6213\"* he|strong=\"H3651\"* did|strong=\"H6213\"* with|strong=\"H6213\"* the|strong=\"H5921\"* bull|strong=\"H6499\"* of|strong=\"H5921\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, so|strong=\"H3651\"* he|strong=\"H3651\"* shall|strong=\"H3548\"* do|strong=\"H6213\"* with|strong=\"H6213\"* this|strong=\"H3651\"*; and|strong=\"H3548\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* them|strong=\"H1992\"*, and|strong=\"H3548\"* they|strong=\"H1992\"* shall|strong=\"H3548\"* be|strong=\"H3548\"* forgiven|strong=\"H5545\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H1931\"* shall|strong=\"H6951\"* carry|strong=\"H3318\"* the|strong=\"H3318\"* bull|strong=\"H6499\"* outside|strong=\"H2351\"* the|strong=\"H3318\"* camp|strong=\"H4264\"*, and|strong=\"H6499\"* burn|strong=\"H8313\"* it|strong=\"H1931\"* as|strong=\"H3318\"* he|strong=\"H1931\"* burned|strong=\"H8313\"* the|strong=\"H3318\"* first|strong=\"H7223\"* bull|strong=\"H6499\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3318\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* for|strong=\"H3318\"* the|strong=\"H3318\"* assembly|strong=\"H6951\"*." + }, + { + "verseNum": 22, + "text": "“‘When|strong=\"H6213\"* a|strong=\"H3068\"* ruler|strong=\"H5387\"* sins|strong=\"H2398\"*, and|strong=\"H3068\"* unwittingly|strong=\"H7684\"* does|strong=\"H6213\"* any|strong=\"H3605\"* one|strong=\"H3605\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* things|strong=\"H3605\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* his|strong=\"H3605\"* God|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H4687\"* not|strong=\"H3808\"* to|strong=\"H3068\"* be|strong=\"H3808\"* done|strong=\"H6213\"*, and|strong=\"H3068\"* is|strong=\"H3068\"* guilty," + }, + { + "verseNum": 23, + "text": "if|strong=\"H2398\"* his|strong=\"H3045\"* sin|strong=\"H2403\"* in|strong=\"H8549\"* which|strong=\"H2403\"* he|strong=\"H5795\"* has|strong=\"H3045\"* sinned|strong=\"H2398\"* is|strong=\"H2403\"* made|strong=\"H3045\"* known|strong=\"H3045\"* to|strong=\"H3045\"* him|strong=\"H3045\"*, he|strong=\"H5795\"* shall|strong=\"H8163\"* bring|strong=\"H2398\"* as|strong=\"H2403\"* his|strong=\"H3045\"* offering|strong=\"H2403\"* a|strong=\"H3068\"* goat|strong=\"H5795\"*, a|strong=\"H3068\"* male|strong=\"H2145\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H1931\"* shall|strong=\"H3068\"* lay|strong=\"H5564\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H6440\"* head|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H6440\"* goat|strong=\"H8163\"*, and|strong=\"H3068\"* kill|strong=\"H7819\"* it|strong=\"H1931\"* in|strong=\"H5921\"* the|strong=\"H6440\"* place|strong=\"H4725\"* where|strong=\"H4725\"* they|strong=\"H3068\"* kill|strong=\"H7819\"* the|strong=\"H6440\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* some of|strong=\"H4196\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H4196\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* with|strong=\"H5921\"* his|strong=\"H5414\"* finger, and|strong=\"H3548\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* horns|strong=\"H7161\"* of|strong=\"H4196\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*. He|strong=\"H5414\"* shall|strong=\"H3548\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* the|strong=\"H5921\"* rest of|strong=\"H4196\"* its|strong=\"H5414\"* blood|strong=\"H1818\"* at|strong=\"H5921\"* the|strong=\"H5921\"* base|strong=\"H3247\"* of|strong=\"H4196\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 26, + "text": "All|strong=\"H3605\"* its|strong=\"H3605\"* fat|strong=\"H2459\"* he|strong=\"H3605\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* on|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, like|strong=\"H5921\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* of|strong=\"H4196\"* the|strong=\"H3605\"* sacrifice|strong=\"H2077\"* of|strong=\"H4196\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*; and|strong=\"H3548\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"* concerning|strong=\"H5921\"* his|strong=\"H3605\"* sin|strong=\"H2403\"*, and|strong=\"H3548\"* he|strong=\"H3605\"* will|strong=\"H2403\"* be|strong=\"H3548\"* forgiven|strong=\"H5545\"*." + }, + { + "verseNum": 27, + "text": "“‘If|strong=\"H2398\"* anyone|strong=\"H5315\"* of|strong=\"H3068\"* the|strong=\"H6213\"* common people|strong=\"H5971\"* sins|strong=\"H2398\"* unwittingly|strong=\"H7684\"*, in|strong=\"H3068\"* doing|strong=\"H6213\"* any|strong=\"H6213\"* of|strong=\"H3068\"* the|strong=\"H6213\"* things|strong=\"H4687\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H4687\"* not|strong=\"H3808\"* to|strong=\"H3068\"* be|strong=\"H3808\"* done|strong=\"H6213\"*, and|strong=\"H3068\"* is|strong=\"H3068\"* guilty," + }, + { + "verseNum": 28, + "text": "if|strong=\"H2398\"* his|strong=\"H5921\"* sin|strong=\"H2403\"* which|strong=\"H2403\"* he|strong=\"H5921\"* has|strong=\"H3045\"* sinned|strong=\"H2398\"* is|strong=\"H2403\"* made|strong=\"H3045\"* known|strong=\"H3045\"* to|strong=\"H5921\"* him|strong=\"H5921\"*, then|strong=\"H3045\"* he|strong=\"H5921\"* shall|strong=\"H2398\"* bring|strong=\"H2398\"* for|strong=\"H5921\"* his|strong=\"H5921\"* offering|strong=\"H2403\"* a|strong=\"H3068\"* goat|strong=\"H5795\"*, a|strong=\"H3068\"* female|strong=\"H5347\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*, for|strong=\"H5921\"* his|strong=\"H5921\"* sin|strong=\"H2403\"* which|strong=\"H2403\"* he|strong=\"H5921\"* has|strong=\"H3045\"* sinned|strong=\"H2398\"*." + }, + { + "verseNum": 29, + "text": "He|strong=\"H3027\"* shall|strong=\"H3027\"* lay|strong=\"H5564\"* his|strong=\"H5921\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H3027\"* kill|strong=\"H7819\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* in|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* of|strong=\"H3027\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* some|strong=\"H3605\"* of|strong=\"H4196\"* its|strong=\"H3605\"* blood|strong=\"H1818\"* with|strong=\"H5921\"* his|strong=\"H3605\"* finger, and|strong=\"H3548\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H3605\"* horns|strong=\"H7161\"* of|strong=\"H4196\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*; and|strong=\"H3548\"* the|strong=\"H3605\"* rest of|strong=\"H4196\"* its|strong=\"H3605\"* blood|strong=\"H1818\"* he|strong=\"H3605\"* shall|strong=\"H3548\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* at|strong=\"H5921\"* the|strong=\"H3605\"* base|strong=\"H3247\"* of|strong=\"H4196\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 31, + "text": "All|strong=\"H3605\"* its|strong=\"H3605\"* fat|strong=\"H2459\"* he|strong=\"H3068\"* shall|strong=\"H3548\"* take|strong=\"H5493\"* away|strong=\"H5493\"*, like|strong=\"H5921\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* is|strong=\"H3068\"* taken|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* the|strong=\"H3605\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*; and|strong=\"H3068\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* for|strong=\"H5921\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* forgiven|strong=\"H5545\"*." + }, + { + "verseNum": 32, + "text": "“‘If he|strong=\"H5347\"* brings a|strong=\"H3068\"* lamb|strong=\"H3532\"* as|strong=\"H3532\"* his offering|strong=\"H2403\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, he|strong=\"H5347\"* shall|strong=\"H8549\"* bring a|strong=\"H3068\"* female|strong=\"H5347\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H3027\"* shall|strong=\"H3027\"* lay|strong=\"H5564\"* his|strong=\"H5921\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H3027\"* kill|strong=\"H7819\"* it|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* in|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* where|strong=\"H4725\"* they|strong=\"H5921\"* kill|strong=\"H7819\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* some|strong=\"H3605\"* of|strong=\"H4196\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H4196\"* the|strong=\"H3605\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* with|strong=\"H5921\"* his|strong=\"H3605\"* finger, and|strong=\"H3548\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H3605\"* horns|strong=\"H7161\"* of|strong=\"H4196\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*; and|strong=\"H3548\"* all|strong=\"H3605\"* the|strong=\"H3605\"* rest of|strong=\"H4196\"* its|strong=\"H3605\"* blood|strong=\"H1818\"* he|strong=\"H3605\"* shall|strong=\"H3548\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* at|strong=\"H5921\"* the|strong=\"H3605\"* base|strong=\"H3247\"* of|strong=\"H4196\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 35, + "text": "He|strong=\"H3068\"* shall|strong=\"H3548\"* remove|strong=\"H5493\"* all|strong=\"H3605\"* its|strong=\"H3605\"* fat|strong=\"H2459\"*, like|strong=\"H5921\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* of|strong=\"H3068\"* the|strong=\"H3605\"* lamb|strong=\"H3775\"* is|strong=\"H3068\"* removed|strong=\"H5493\"* from|strong=\"H5493\"* the|strong=\"H3605\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*. The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* offerings|strong=\"H8002\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* made|strong=\"H3722\"* by|strong=\"H5921\"* fire. The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"* concerning|strong=\"H5921\"* his|strong=\"H3605\"* sin|strong=\"H2403\"* that|strong=\"H3605\"* he|strong=\"H3068\"* has|strong=\"H3068\"* sinned|strong=\"H2398\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* forgiven|strong=\"H5545\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "“‘If|strong=\"H3588\"* anyone|strong=\"H5315\"* sins|strong=\"H2398\"*, in|strong=\"H8085\"* that|strong=\"H3588\"* he|strong=\"H1931\"* hears|strong=\"H8085\"* a|strong=\"H3068\"* public|strong=\"H6963\"* adjuration to|strong=\"H8085\"* testify, he|strong=\"H1931\"* being|strong=\"H5315\"* a|strong=\"H3068\"* witness|strong=\"H5707\"*, whether|strong=\"H7200\"* he|strong=\"H1931\"* has|strong=\"H3588\"* seen|strong=\"H7200\"* or|strong=\"H3808\"* known|strong=\"H3045\"*, if|strong=\"H3588\"* he|strong=\"H1931\"* doesn’t report|strong=\"H5046\"* it|strong=\"H1931\"*, then|strong=\"H5375\"* he|strong=\"H1931\"* shall|strong=\"H5315\"* bear|strong=\"H5375\"* his|strong=\"H5375\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 2, + "text": "“‘Or|strong=\"H4480\"* if|strong=\"H1931\"* anyone|strong=\"H3605\"* touches|strong=\"H5060\"* any|strong=\"H3605\"* unclean|strong=\"H2931\"* thing|strong=\"H1697\"*, whether|strong=\"H4480\"* it|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* carcass|strong=\"H5038\"* of|strong=\"H1697\"* an|strong=\"H4480\"* unclean|strong=\"H2931\"* animal|strong=\"H2416\"*, or|strong=\"H4480\"* the|strong=\"H3605\"* carcass|strong=\"H5038\"* of|strong=\"H1697\"* unclean|strong=\"H2931\"* livestock, or|strong=\"H4480\"* the|strong=\"H3605\"* carcass|strong=\"H5038\"* of|strong=\"H1697\"* unclean|strong=\"H2931\"* creeping|strong=\"H2931\"* things|strong=\"H1697\"*, and|strong=\"H1697\"* it|strong=\"H1931\"* is|strong=\"H1931\"* hidden|strong=\"H5956\"* from|strong=\"H4480\"* him|strong=\"H1931\"*, and|strong=\"H1697\"* he|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"*, then|strong=\"H3605\"* he|strong=\"H1931\"* shall|strong=\"H5315\"* be|strong=\"H1697\"* guilty." + }, + { + "verseNum": 3, + "text": "“‘Or|strong=\"H4480\"* if|strong=\"H3588\"* he|strong=\"H1931\"* touches|strong=\"H5060\"* the|strong=\"H3605\"* uncleanness|strong=\"H2932\"* of|strong=\"H4480\"* man|strong=\"H3605\"*, whatever|strong=\"H3605\"* his|strong=\"H3605\"* uncleanness|strong=\"H2932\"* is|strong=\"H1931\"* with|strong=\"H3045\"* which|strong=\"H1931\"* he|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2930\"*, and|strong=\"H3045\"* it|strong=\"H1931\"* is|strong=\"H1931\"* hidden|strong=\"H5956\"* from|strong=\"H4480\"* him|strong=\"H2930\"*; when|strong=\"H3588\"* he|strong=\"H1931\"* knows|strong=\"H3045\"* of|strong=\"H4480\"* it|strong=\"H1931\"*, then|strong=\"H3588\"* he|strong=\"H1931\"* shall|strong=\"H1931\"* be|strong=\"H4480\"* guilty." + }, + { + "verseNum": 4, + "text": "“‘Or|strong=\"H4480\"* if|strong=\"H3588\"* anyone|strong=\"H3605\"* swears|strong=\"H7650\"* rashly|strong=\"H8193\"* with|strong=\"H3045\"* his|strong=\"H3605\"* lips|strong=\"H8193\"* to|strong=\"H7650\"* do|strong=\"H3190\"* evil|strong=\"H7489\"* or|strong=\"H4480\"* to|strong=\"H7650\"* do|strong=\"H3190\"* good|strong=\"H3190\"*—whatever|strong=\"H3605\"* it|strong=\"H1931\"* is|strong=\"H1931\"* that|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H5315\"* might utter|strong=\"H3605\"* rashly|strong=\"H8193\"* with|strong=\"H3045\"* an|strong=\"H7650\"* oath|strong=\"H7621\"*, and|strong=\"H3045\"* it|strong=\"H1931\"* is|strong=\"H1931\"* hidden|strong=\"H5956\"* from|strong=\"H4480\"* him|strong=\"H1931\"*—when|strong=\"H3588\"* he|strong=\"H1931\"* knows|strong=\"H3045\"* of|strong=\"H4480\"* it|strong=\"H1931\"*, then|strong=\"H3588\"* he|strong=\"H1931\"* will|strong=\"H5315\"* be|strong=\"H5315\"* guilty of|strong=\"H4480\"* one|strong=\"H3605\"* of|strong=\"H4480\"* these|strong=\"H1931\"*." + }, + { + "verseNum": 5, + "text": "It|strong=\"H5921\"* shall|strong=\"H2398\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H1961\"* guilty of|strong=\"H5921\"* one|strong=\"H1961\"* of|strong=\"H5921\"* these, he|strong=\"H3588\"* shall|strong=\"H2398\"* confess|strong=\"H3034\"* that|strong=\"H3588\"* in|strong=\"H5921\"* which|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H1961\"* sinned|strong=\"H2398\"*;" + }, + { + "verseNum": 6, + "text": "and|strong=\"H3068\"* he|strong=\"H3068\"* shall|strong=\"H3548\"* bring|strong=\"H2398\"* his|strong=\"H3068\"* trespass|strong=\"H2398\"* offering|strong=\"H2403\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* for|strong=\"H5921\"* his|strong=\"H3068\"* sin|strong=\"H2403\"* which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* sinned|strong=\"H2398\"*: a|strong=\"H3068\"* female|strong=\"H5347\"* from|strong=\"H4480\"* the|strong=\"H5921\"* flock|strong=\"H6629\"*, a|strong=\"H3068\"* lamb|strong=\"H3776\"* or|strong=\"H4480\"* a|strong=\"H3068\"* goat|strong=\"H5795\"*, for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*; and|strong=\"H3068\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"* concerning|strong=\"H5921\"* his|strong=\"H3068\"* sin|strong=\"H2403\"*." + }, + { + "verseNum": 7, + "text": "“‘If|strong=\"H2398\"* he|strong=\"H3068\"* can|strong=\"H3808\"*’t afford|strong=\"H3027\"* a|strong=\"H3068\"* lamb|strong=\"H7716\"*, then|strong=\"H3068\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* bring|strong=\"H5060\"* his|strong=\"H3068\"* trespass|strong=\"H2398\"* offering|strong=\"H5930\"* for|strong=\"H3027\"* that|strong=\"H3068\"* in|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* sinned|strong=\"H2398\"*, two|strong=\"H8147\"* turtledoves|strong=\"H8449\"*, or|strong=\"H3808\"* two|strong=\"H8147\"* young|strong=\"H1121\"* pigeons|strong=\"H3123\"*, to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; one|strong=\"H3808\"* for|strong=\"H3027\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H1121\"* the|strong=\"H3068\"* other|strong=\"H8147\"* for|strong=\"H3027\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3808\"* shall|strong=\"H3548\"* bring|strong=\"H7126\"* them|strong=\"H7126\"* to|strong=\"H7126\"* the|strong=\"H7126\"* priest|strong=\"H3548\"*, who|strong=\"H3548\"* shall|strong=\"H3548\"* first|strong=\"H7223\"* offer|strong=\"H7126\"* the|strong=\"H7126\"* one|strong=\"H3808\"* which|strong=\"H3548\"* is|strong=\"H7218\"* for|strong=\"H3808\"* the|strong=\"H7126\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*. He|strong=\"H3808\"* shall|strong=\"H3548\"* wring|strong=\"H4454\"* off|strong=\"H4454\"* its|strong=\"H4454\"* head|strong=\"H7218\"* from|strong=\"H2403\"* its|strong=\"H4454\"* neck|strong=\"H6203\"*, but|strong=\"H3808\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* sever it|strong=\"H7126\"* completely." + }, + { + "verseNum": 9, + "text": "He|strong=\"H1931\"* shall|strong=\"H1931\"* sprinkle|strong=\"H5137\"* some of|strong=\"H4196\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H4196\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* on|strong=\"H5921\"* the|strong=\"H5921\"* side|strong=\"H7023\"* of|strong=\"H4196\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*; and|strong=\"H4196\"* the|strong=\"H5921\"* rest|strong=\"H7604\"* of|strong=\"H4196\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* shall|strong=\"H1931\"* be|strong=\"H1818\"* drained|strong=\"H4680\"* out|strong=\"H4680\"* at|strong=\"H5921\"* the|strong=\"H5921\"* base|strong=\"H3247\"* of|strong=\"H4196\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H6213\"* shall|strong=\"H3548\"* offer|strong=\"H6213\"* the|strong=\"H5921\"* second|strong=\"H8145\"* for|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, according|strong=\"H5921\"* to|strong=\"H6213\"* the|strong=\"H5921\"* ordinance|strong=\"H4941\"*; and|strong=\"H4941\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"* concerning|strong=\"H5921\"* his|strong=\"H5921\"* sin|strong=\"H2403\"* which|strong=\"H3548\"* he|strong=\"H6213\"* has|strong=\"H6213\"* sinned|strong=\"H2398\"*, and|strong=\"H4941\"* he|strong=\"H6213\"* shall|strong=\"H3548\"* be|strong=\"H3548\"* forgiven|strong=\"H5545\"*." + }, + { + "verseNum": 11, + "text": "“‘But|strong=\"H3588\"* if|strong=\"H3588\"* he|strong=\"H1931\"* can|strong=\"H3808\"*’t afford|strong=\"H3027\"* two|strong=\"H8147\"* turtledoves|strong=\"H8449\"* or|strong=\"H3808\"* two|strong=\"H8147\"* young|strong=\"H1121\"* pigeons|strong=\"H3123\"*, then|strong=\"H5414\"* he|strong=\"H1931\"* shall|strong=\"H1121\"* bring|strong=\"H5414\"* as|strong=\"H3588\"* his|strong=\"H5414\"* offering|strong=\"H2403\"* for|strong=\"H3588\"* that|strong=\"H3588\"* in|strong=\"H5921\"* which|strong=\"H1931\"* he|strong=\"H1931\"* has|strong=\"H3588\"* sinned|strong=\"H2398\"*, one|strong=\"H3808\"* tenth|strong=\"H6224\"* of|strong=\"H1121\"* an|strong=\"H5414\"* ephah+ 5:11 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H1121\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* for|strong=\"H3588\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*. He|strong=\"H1931\"* shall|strong=\"H1121\"* put|strong=\"H5414\"* no|strong=\"H3808\"* oil|strong=\"H8081\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* put|strong=\"H5414\"* any|strong=\"H5414\"* frankincense|strong=\"H3828\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, for|strong=\"H3588\"* it|strong=\"H5414\"* is|strong=\"H1931\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H1931\"* shall|strong=\"H3548\"* bring it|strong=\"H1931\"* to|strong=\"H3068\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H7061\"* his|strong=\"H3068\"* handful|strong=\"H7062\"* of|strong=\"H3068\"* it|strong=\"H1931\"* as|strong=\"H3068\"* the|strong=\"H5921\"* memorial portion|strong=\"H6999\"*, and|strong=\"H3068\"* burn|strong=\"H6999\"* it|strong=\"H1931\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* offerings|strong=\"H2403\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* made|strong=\"H3068\"* by|strong=\"H5921\"* fire. It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"* concerning|strong=\"H5921\"* his|strong=\"H5921\"* sin|strong=\"H2403\"* that|strong=\"H3548\"* he|strong=\"H5921\"* has|strong=\"H1961\"* sinned|strong=\"H2398\"* in|strong=\"H5921\"* any|strong=\"H1961\"* of|strong=\"H5921\"* these things|strong=\"H1961\"*, and|strong=\"H3548\"* he|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* forgiven|strong=\"H5545\"*; and|strong=\"H3548\"* the|strong=\"H5921\"* rest|strong=\"H1961\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*’s, as|strong=\"H1961\"* the|strong=\"H5921\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*.’”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 15, + "text": "“If|strong=\"H3588\"* anyone|strong=\"H5315\"* commits|strong=\"H4603\"* a|strong=\"H3068\"* trespass|strong=\"H4604\"*, and|strong=\"H3068\"* sins|strong=\"H2398\"* unwittingly|strong=\"H7684\"* regarding Yahweh|strong=\"H3068\"*’s holy|strong=\"H6944\"* things|strong=\"H6944\"*, then|strong=\"H3588\"* he|strong=\"H3588\"* shall|strong=\"H3068\"* bring|strong=\"H2398\"* his|strong=\"H3068\"* trespass|strong=\"H4604\"* offering|strong=\"H3068\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*: a|strong=\"H3068\"* ram without|strong=\"H8549\"* defect|strong=\"H8549\"* from|strong=\"H4480\"* the|strong=\"H3588\"* flock|strong=\"H6629\"*, according|strong=\"H3701\"* to|strong=\"H3068\"* your|strong=\"H3068\"* estimation|strong=\"H6187\"* in|strong=\"H3068\"* silver|strong=\"H3701\"* by|strong=\"H3068\"* shekels|strong=\"H8255\"*, according|strong=\"H3701\"* to|strong=\"H3068\"* the|strong=\"H3588\"* shekel|strong=\"H8255\"*+ 5:15 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H3068\"* the|strong=\"H3588\"* sanctuary|strong=\"H6944\"*, for|strong=\"H3588\"* a|strong=\"H3068\"* trespass|strong=\"H4604\"* offering|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H5414\"* shall|strong=\"H3548\"* make|strong=\"H5414\"* restitution|strong=\"H7999\"* for|strong=\"H5921\"* that|strong=\"H5414\"* which|strong=\"H3548\"* he|strong=\"H5414\"* has|strong=\"H3548\"* done|strong=\"H2398\"* wrong|strong=\"H2398\"* regarding|strong=\"H5921\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* thing|strong=\"H6944\"*, and|strong=\"H3548\"* shall|strong=\"H3548\"* add|strong=\"H3254\"* a|strong=\"H3068\"* fifth|strong=\"H2549\"* part|strong=\"H2549\"* to|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H3548\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5921\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*; and|strong=\"H3548\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5414\"* with|strong=\"H5921\"* the|strong=\"H5921\"* ram of|strong=\"H4480\"* the|strong=\"H5921\"* trespass|strong=\"H2398\"* offering|strong=\"H4480\"*, and|strong=\"H3548\"* he|strong=\"H5414\"* will|strong=\"H5414\"* be|strong=\"H3254\"* forgiven|strong=\"H5545\"*." + }, + { + "verseNum": 17, + "text": "“If|strong=\"H3588\"* anyone|strong=\"H3605\"* sins|strong=\"H2398\"*, doing|strong=\"H6213\"* any|strong=\"H3605\"* of|strong=\"H3068\"* the|strong=\"H3605\"* things|strong=\"H3605\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H4687\"* not|strong=\"H3808\"* to|strong=\"H3068\"* be|strong=\"H3808\"* done|strong=\"H6213\"*, though|strong=\"H3588\"* he|strong=\"H3588\"* didn’t know|strong=\"H3045\"* it|strong=\"H3588\"*, he|strong=\"H3588\"* is|strong=\"H3068\"* still|strong=\"H3588\"* guilty|strong=\"H5771\"*, and|strong=\"H3068\"* shall|strong=\"H3068\"* bear|strong=\"H5375\"* his|strong=\"H3605\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H1931\"* shall|strong=\"H3548\"* bring|strong=\"H3045\"* a|strong=\"H3068\"* ram without|strong=\"H3808\"* defect|strong=\"H8549\"* from|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5921\"* flock|strong=\"H6629\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* your|strong=\"H5921\"* estimation|strong=\"H6187\"*, for|strong=\"H5921\"* a|strong=\"H3068\"* trespass offering|strong=\"H4480\"*, to|strong=\"H5921\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*; and|strong=\"H3548\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* thing|strong=\"H1931\"* in|strong=\"H5921\"* which|strong=\"H1931\"* he|strong=\"H1931\"* sinned|strong=\"H7683\"* and|strong=\"H3548\"* didn’t know|strong=\"H3045\"* it|strong=\"H1931\"*, and|strong=\"H3548\"* he|strong=\"H1931\"* will|strong=\"H3808\"* be|strong=\"H3808\"* forgiven|strong=\"H5545\"*." + }, + { + "verseNum": 19, + "text": "It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* trespass offering|strong=\"H3068\"*. He|strong=\"H1931\"* is|strong=\"H3068\"* certainly guilty before Yahweh|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“If|strong=\"H1931\"* anyone|strong=\"H3605\"* sins, and|strong=\"H1121\"* commits a|strong=\"H3068\"* trespass against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* deals falsely with|strong=\"H5921\"* his|strong=\"H3605\"* neighbor in|strong=\"H5921\"* a|strong=\"H3068\"* matter of|strong=\"H1121\"* deposit, or|strong=\"H5704\"* of|strong=\"H1121\"* bargain, or|strong=\"H5704\"* of|strong=\"H1121\"* robbery, or|strong=\"H5704\"* has|strong=\"H3605\"* oppressed his|strong=\"H3605\"* neighbor," + }, + { + "verseNum": 3, + "text": "or|strong=\"H5930\"* has|strong=\"H3548\"* found that|strong=\"H3548\"* which|strong=\"H4196\"* was|strong=\"H1320\"* lost, and|strong=\"H3548\"* lied about|strong=\"H5921\"* it|strong=\"H7760\"*, and|strong=\"H3548\"* swearing to|strong=\"H5921\"* a|strong=\"H3068\"* lie—in|strong=\"H5921\"* any|strong=\"H7760\"* of|strong=\"H4196\"* these|strong=\"H7760\"* things that|strong=\"H3548\"* a|strong=\"H3068\"* man|strong=\"H1320\"* sins in|strong=\"H5921\"* his|strong=\"H7760\"* actions—" + }, + { + "verseNum": 4, + "text": "then|strong=\"H3318\"* it|strong=\"H3318\"* shall|strong=\"H2889\"* be|strong=\"H4725\"*, if he|strong=\"H3318\"* has|strong=\"H3318\"* sinned, and|strong=\"H3318\"* is|strong=\"H4725\"* guilty, he|strong=\"H3318\"* shall|strong=\"H2889\"* restore that|strong=\"H4725\"* which|strong=\"H4725\"* he|strong=\"H3318\"* took|strong=\"H3318\"* by|strong=\"H3318\"* robbery, or the|strong=\"H3318\"* thing which|strong=\"H4725\"* he|strong=\"H3318\"* has|strong=\"H3318\"* gotten by|strong=\"H3318\"* oppression, or the|strong=\"H3318\"* deposit which|strong=\"H4725\"* was|strong=\"H4725\"* committed to|strong=\"H3318\"* him|strong=\"H3318\"*, or the|strong=\"H3318\"* lost thing which|strong=\"H4725\"* he|strong=\"H3318\"* found," + }, + { + "verseNum": 5, + "text": "or|strong=\"H3808\"* any|strong=\"H3808\"* thing about|strong=\"H5921\"* which|strong=\"H4196\"* he|strong=\"H3808\"* has|strong=\"H3548\"* sworn falsely: he|strong=\"H3808\"* shall|strong=\"H3548\"* restore it|strong=\"H5921\"* in|strong=\"H5921\"* full, and|strong=\"H6086\"* shall|strong=\"H3548\"* add a|strong=\"H3068\"* fifth part|strong=\"H5921\"* more|strong=\"H3808\"* to|strong=\"H5921\"* it|strong=\"H5921\"*. He|strong=\"H3808\"* shall|strong=\"H3548\"* return it|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"* to|strong=\"H5921\"* whom it|strong=\"H5921\"* belongs in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H1242\"* of|strong=\"H4196\"* his|strong=\"H5921\"* being found guilty." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3808\"* shall|strong=\"H3808\"* bring his|strong=\"H5921\"* trespass offering to|strong=\"H5921\"* Yahweh|strong=\"H3068\"*: a|strong=\"H3068\"* ram without|strong=\"H3808\"* defect from|strong=\"H5921\"* the|strong=\"H5921\"* flock, according|strong=\"H5921\"* to|strong=\"H5921\"* your|strong=\"H5921\"* estimation, for|strong=\"H5921\"* a|strong=\"H3068\"* trespass offering, to|strong=\"H5921\"* the|strong=\"H5921\"* priest." + }, + { + "verseNum": 7, + "text": "The|strong=\"H6440\"* priest shall|strong=\"H3068\"* make atonement for|strong=\"H6440\"* him|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* forgiven concerning|strong=\"H3068\"* whatever he|strong=\"H3068\"* does|strong=\"H3068\"* to|strong=\"H3068\"* become guilty.”" + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses, saying," + }, + { + "verseNum": 9, + "text": "“Command Aaron and|strong=\"H1121\"* his|strong=\"H4480\"* sons|strong=\"H1121\"*, saying, ‘This|strong=\"H1121\"* is|strong=\"H1121\"* the|strong=\"H4480\"* law of|strong=\"H1121\"* the|strong=\"H4480\"* burnt offering|strong=\"H4480\"*: the|strong=\"H4480\"* burnt offering|strong=\"H4480\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* on|strong=\"H4725\"* the|strong=\"H4480\"* hearth on|strong=\"H4725\"* the|strong=\"H4480\"* altar all|strong=\"H4480\"* night|strong=\"H1121\"* until the|strong=\"H4480\"* morning; and|strong=\"H1121\"* the|strong=\"H4480\"* fire of|strong=\"H1121\"* the|strong=\"H4480\"* altar shall|strong=\"H1121\"* be|strong=\"H1121\"* kept burning on|strong=\"H4725\"* it|strong=\"H4725\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5414\"* priest shall|strong=\"H3808\"* put|strong=\"H5414\"* on|strong=\"H5414\"* his|strong=\"H5414\"* linen garment, and|strong=\"H2403\"* he|strong=\"H1931\"* shall|strong=\"H3808\"* put|strong=\"H5414\"* on|strong=\"H5414\"* his|strong=\"H5414\"* linen trousers upon|strong=\"H5414\"* his|strong=\"H5414\"* body; and|strong=\"H2403\"* he|strong=\"H1931\"* shall|strong=\"H3808\"* remove the|strong=\"H5414\"* ashes from|strong=\"H5414\"* where|strong=\"H3808\"* the|strong=\"H5414\"* fire has|strong=\"H5414\"* consumed the|strong=\"H5414\"* burnt offering|strong=\"H2403\"* on|strong=\"H5414\"* the|strong=\"H5414\"* altar, and|strong=\"H2403\"* he|strong=\"H1931\"* shall|strong=\"H3808\"* put|strong=\"H5414\"* them|strong=\"H5414\"* beside the|strong=\"H5414\"* altar." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* take|strong=\"H1121\"* off his|strong=\"H3605\"* garments, and|strong=\"H1121\"* put|strong=\"H3068\"* on|strong=\"H3068\"* other|strong=\"H3605\"* garments, and|strong=\"H1121\"* carry the|strong=\"H3605\"* ashes outside the|strong=\"H3605\"* camp to|strong=\"H3068\"* a|strong=\"H3068\"* clean place|strong=\"H3605\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3068\"* fire on|strong=\"H3068\"* the|strong=\"H3068\"* altar shall|strong=\"H3068\"* be|strong=\"H3068\"* kept burning on|strong=\"H3068\"* it|strong=\"H1696\"*, it|strong=\"H1696\"* shall|strong=\"H3068\"* not|strong=\"H1696\"* go|strong=\"H3068\"* out|strong=\"H1696\"*; and|strong=\"H4872\"* the|strong=\"H3068\"* priest shall|strong=\"H3068\"* burn wood on|strong=\"H3068\"* it|strong=\"H1696\"* every|strong=\"H3068\"* morning. He|strong=\"H3068\"* shall|strong=\"H3068\"* lay the|strong=\"H3068\"* burnt offering|strong=\"H3068\"* in|strong=\"H3068\"* order upon it|strong=\"H1696\"*, and|strong=\"H4872\"* shall|strong=\"H3068\"* burn on|strong=\"H3068\"* it|strong=\"H1696\"* the|strong=\"H3068\"* fat of|strong=\"H3068\"* the|strong=\"H3068\"* peace offerings|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "Fire shall|strong=\"H3068\"* be|strong=\"H3068\"* kept burning on|strong=\"H3117\"* the|strong=\"H3068\"* altar continually|strong=\"H8548\"*; it|strong=\"H7126\"* shall|strong=\"H3068\"* not|strong=\"H2088\"* go|strong=\"H7126\"* out." + }, + { + "verseNum": 14, + "text": "“‘This|strong=\"H6213\"* is|strong=\"H3068\"* the|strong=\"H5921\"* law of|strong=\"H3068\"* the|strong=\"H5921\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*: the|strong=\"H5921\"* sons of|strong=\"H3068\"* Aaron shall|strong=\"H3068\"* offer|strong=\"H7126\"* it|strong=\"H5921\"* before|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, before|strong=\"H5921\"* the|strong=\"H5921\"* altar." + }, + { + "verseNum": 15, + "text": "He|strong=\"H6213\"* shall|strong=\"H3548\"* take|strong=\"H6213\"* from|strong=\"H1121\"* there|strong=\"H8478\"* his|strong=\"H3068\"* handful of|strong=\"H1121\"* the|strong=\"H6213\"* fine|strong=\"H6213\"* flour of|strong=\"H1121\"* the|strong=\"H6213\"* meal offering|strong=\"H6999\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* its|strong=\"H6213\"* oil, and|strong=\"H1121\"* all|strong=\"H6213\"* the|strong=\"H6213\"* frankincense which|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H3068\"* the|strong=\"H6213\"* meal offering|strong=\"H6999\"*, and|strong=\"H1121\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* it|strong=\"H6213\"* on|strong=\"H3068\"* the|strong=\"H6213\"* altar for|strong=\"H6213\"* a|strong=\"H3068\"* pleasant aroma, as|strong=\"H6213\"* its|strong=\"H6213\"* memorial portion|strong=\"H2706\"*, to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "That|strong=\"H3605\"* which|strong=\"H3548\"* is|strong=\"H3605\"* left|strong=\"H3548\"* of|strong=\"H3605\"* it|strong=\"H1961\"* Aaron and|strong=\"H3548\"* his|strong=\"H3605\"* sons shall|strong=\"H3548\"* eat. It|strong=\"H1961\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* eaten without|strong=\"H3808\"* yeast in|strong=\"H3808\"* a|strong=\"H3068\"* holy place|strong=\"H1961\"*. They|strong=\"H3808\"* shall|strong=\"H3548\"* eat it|strong=\"H1961\"* in|strong=\"H3808\"* the|strong=\"H3605\"* court of|strong=\"H3605\"* the|strong=\"H3605\"* Tent of|strong=\"H3605\"* Meeting." + }, + { + "verseNum": 17, + "text": "It|strong=\"H1696\"* shall|strong=\"H3068\"* not|strong=\"H1696\"* be|strong=\"H3068\"* baked with|strong=\"H3068\"* yeast. I|strong=\"H3068\"* have|strong=\"H3068\"* given it|strong=\"H1696\"* as|strong=\"H3068\"* their|strong=\"H3068\"* portion of|strong=\"H3068\"* my|strong=\"H3068\"* offerings|strong=\"H3068\"* made|strong=\"H1696\"* by|strong=\"H3068\"* fire. It|strong=\"H1696\"* is|strong=\"H3068\"* most|strong=\"H3068\"* holy, as|strong=\"H3068\"* are|strong=\"H3068\"* the|strong=\"H3068\"* sin offering|strong=\"H3068\"* and|strong=\"H4872\"* the|strong=\"H3068\"* trespass offering|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "Every|strong=\"H3068\"* male|strong=\"H1121\"* among|strong=\"H8451\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Aaron shall|strong=\"H3068\"* eat of|strong=\"H1121\"* it|strong=\"H1931\"*, as|strong=\"H3068\"* their|strong=\"H3068\"* portion|strong=\"H6944\"* forever throughout|strong=\"H6440\"* your|strong=\"H3068\"* generations, from|strong=\"H6440\"* the|strong=\"H6440\"* offerings|strong=\"H5930\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* made|strong=\"H1696\"* by|strong=\"H3068\"* fire. Whoever touches them|strong=\"H6440\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* holy|strong=\"H6944\"*.’”" + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H4725\"* Moses, saying," + }, + { + "verseNum": 20, + "text": "“This|strong=\"H6942\"* is|strong=\"H3605\"* the|strong=\"H3605\"* offering of|strong=\"H6918\"* Aaron and|strong=\"H1818\"* of|strong=\"H6918\"* his|strong=\"H3605\"* sons, which|strong=\"H4725\"* they|strong=\"H5921\"* shall|strong=\"H1320\"* offer to|strong=\"H5921\"* Yahweh|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H3605\"* day when|strong=\"H5060\"* he|strong=\"H3605\"* is|strong=\"H3605\"* anointed: one|strong=\"H6918\"* tenth of|strong=\"H6918\"* an|strong=\"H5921\"* ephah+ 6:20 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H6918\"* fine flour for|strong=\"H5921\"* a|strong=\"H3068\"* meal offering perpetually|strong=\"H3605\"*, half of|strong=\"H6918\"* it|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* morning, and|strong=\"H1818\"* half of|strong=\"H6918\"* it|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* evening." + }, + { + "verseNum": 21, + "text": "It|strong=\"H7665\"* shall|strong=\"H4325\"* be|strong=\"H4325\"* made|strong=\"H3627\"* with|strong=\"H3627\"* oil in|strong=\"H7665\"* a|strong=\"H3068\"* griddle. When|strong=\"H7665\"* it|strong=\"H7665\"* is|strong=\"H4325\"* soaked, you|strong=\"H4325\"* shall|strong=\"H4325\"* bring|strong=\"H7665\"* it|strong=\"H7665\"* in|strong=\"H7665\"*. You|strong=\"H4325\"* shall|strong=\"H4325\"* offer the|strong=\"H7665\"* meal offering in|strong=\"H7665\"* baked|strong=\"H1310\"* pieces|strong=\"H7665\"* for|strong=\"H4325\"* a|strong=\"H3068\"* pleasant aroma to|strong=\"H4325\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3605\"* anointed priest|strong=\"H3548\"* that|strong=\"H3605\"* will|strong=\"H1931\"* be|strong=\"H2145\"* in|strong=\"H2145\"* his|strong=\"H3605\"* place|strong=\"H6944\"* from|strong=\"H2145\"* among his|strong=\"H3605\"* sons shall|strong=\"H3548\"* offer it|strong=\"H1931\"*. By|strong=\"H3605\"* a|strong=\"H3068\"* statute forever|strong=\"H3605\"*, it|strong=\"H1931\"* shall|strong=\"H3548\"* be|strong=\"H2145\"* wholly|strong=\"H3605\"* burned to|strong=\"H3605\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 23, + "text": "Every|strong=\"H3605\"* meal offering|strong=\"H2403\"* of|strong=\"H1818\"* a|strong=\"H3068\"* priest shall|strong=\"H3808\"* be|strong=\"H3808\"* wholly|strong=\"H3605\"* burned|strong=\"H8313\"*. It|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* eaten.”" + }, + { + "verseNum": 24, + "text": "Yahweh|strong=\"H3068\"* spoke to Moses, saying," + }, + { + "verseNum": 25, + "text": "“Speak to Aaron and to his sons, saying, ‘This is the law of the sin offering: in the place where the burnt offering is killed, the sin offering shall be killed before Yahweh|strong=\"H3068\"*. It is most holy." + }, + { + "verseNum": 26, + "text": "The priest who offers it for sin shall eat it. It shall be eaten in a|strong=\"H3068\"* holy place, in the court of the Tent of Meeting." + }, + { + "verseNum": 27, + "text": "Whatever shall touch its flesh shall be holy. When there is any of its blood sprinkled on a|strong=\"H3068\"* garment, you shall wash that on which it was sprinkled in a|strong=\"H3068\"* holy place." + }, + { + "verseNum": 28, + "text": "But the earthen vessel in which it is boiled shall be broken; and if it is boiled in a|strong=\"H3068\"* bronze vessel, it shall be scoured, and rinsed in water." + }, + { + "verseNum": 29, + "text": "Every male among the priests shall eat of it. It is most holy." + }, + { + "verseNum": 30, + "text": "No sin offering, of which any of the blood is brought into the Tent of Meeting to make atonement in the Holy Place, shall be eaten. It shall be burned with fire." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "“‘This|strong=\"H2063\"* is|strong=\"H1931\"* the|strong=\"H1931\"* law|strong=\"H8451\"* of|strong=\"H8451\"* the|strong=\"H1931\"* trespass offering: It|strong=\"H1931\"* is|strong=\"H1931\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 2, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* where|strong=\"H4725\"* they|strong=\"H5921\"* kill|strong=\"H7819\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, he|strong=\"H5921\"* shall|strong=\"H1818\"* kill|strong=\"H7819\"* the|strong=\"H5921\"* trespass offering|strong=\"H5930\"*; and|strong=\"H4196\"* its|strong=\"H5921\"* blood|strong=\"H1818\"* he|strong=\"H5921\"* shall|strong=\"H1818\"* sprinkle|strong=\"H2236\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3605\"* shall offer|strong=\"H7126\"* all|strong=\"H3605\"* of|strong=\"H4480\"* its|strong=\"H3605\"* fat|strong=\"H2459\"*: the|strong=\"H3605\"* fat|strong=\"H2459\"* tail, and|strong=\"H7126\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* covers|strong=\"H3680\"* the|strong=\"H3605\"* innards," + }, + { + "verseNum": 4, + "text": "and|strong=\"H8147\"* he|strong=\"H8147\"* shall|strong=\"H8147\"* take|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H5921\"* two|strong=\"H8147\"* kidneys|strong=\"H3629\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* fat|strong=\"H2459\"* that|strong=\"H2459\"* is|strong=\"H3516\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, which is|strong=\"H3516\"* by|strong=\"H5921\"* the|strong=\"H5921\"* loins|strong=\"H3689\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* cover on|strong=\"H5921\"* the|strong=\"H5921\"* liver|strong=\"H3516\"*, with|strong=\"H5921\"* the|strong=\"H5921\"* kidneys|strong=\"H3629\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"H3068\"* the|strong=\"H3068\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* them|strong=\"H4196\"* on|strong=\"H3068\"* the|strong=\"H3068\"* altar|strong=\"H4196\"* for|strong=\"H3068\"* an|strong=\"H3068\"* offering|strong=\"H6999\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*: it|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* trespass offering|strong=\"H6999\"*." + }, + { + "verseNum": 6, + "text": "Every|strong=\"H3605\"* male|strong=\"H2145\"* among the|strong=\"H3605\"* priests|strong=\"H3548\"* may|strong=\"H3548\"* eat of|strong=\"H6918\"* it|strong=\"H1931\"*. It|strong=\"H1931\"* shall|strong=\"H3548\"* be|strong=\"H2145\"* eaten in|strong=\"H4725\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* place|strong=\"H4725\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 7, + "text": "“‘As|strong=\"H1961\"* is|strong=\"H1961\"* the|strong=\"H1961\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, so|strong=\"H1961\"* is|strong=\"H1961\"* the|strong=\"H1961\"* trespass offering|strong=\"H2403\"*; there|strong=\"H1961\"* is|strong=\"H1961\"* one|strong=\"H1961\"* law|strong=\"H8451\"* for|strong=\"H3722\"* them|strong=\"H1961\"*. The|strong=\"H1961\"* priest|strong=\"H3548\"* who|strong=\"H3548\"* makes|strong=\"H3722\"* atonement|strong=\"H3722\"* with|strong=\"H3548\"* them|strong=\"H1961\"* shall|strong=\"H3548\"* have|strong=\"H1961\"* it|strong=\"H1961\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H7126\"* priest|strong=\"H3548\"* who|strong=\"H3548\"* offers|strong=\"H7126\"* any|strong=\"H1961\"* man’s burnt|strong=\"H5930\"* offering|strong=\"H5930\"* shall|strong=\"H3548\"* have|strong=\"H1961\"* for|strong=\"H1961\"* himself the|strong=\"H7126\"* skin|strong=\"H5785\"* of|strong=\"H3548\"* the|strong=\"H7126\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* which|strong=\"H3548\"* he|strong=\"H7126\"* has|strong=\"H1961\"* offered|strong=\"H7126\"*." + }, + { + "verseNum": 9, + "text": "Every|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* that|strong=\"H3605\"* is|strong=\"H3605\"* baked in|strong=\"H5921\"* the|strong=\"H3605\"* oven|strong=\"H8574\"*, and|strong=\"H3548\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* prepared|strong=\"H6213\"* in|strong=\"H5921\"* the|strong=\"H3605\"* pan|strong=\"H4227\"* and|strong=\"H3548\"* on|strong=\"H5921\"* the|strong=\"H3605\"* griddle|strong=\"H4227\"*, shall|strong=\"H3548\"* be|strong=\"H1961\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*’s who|strong=\"H3605\"* offers|strong=\"H7126\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "Every|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"* or|strong=\"H1121\"* dry|strong=\"H2720\"*, belongs|strong=\"H1961\"* to|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, one|strong=\"H3605\"* as|strong=\"H1961\"* well as|strong=\"H1961\"* another." + }, + { + "verseNum": 11, + "text": "“‘This|strong=\"H2063\"* is|strong=\"H3068\"* the|strong=\"H3068\"* law|strong=\"H8451\"* of|strong=\"H3068\"* the|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, which|strong=\"H3068\"* one|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*:" + }, + { + "verseNum": 12, + "text": "If he|strong=\"H5921\"* offers|strong=\"H7126\"* it|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* thanksgiving|strong=\"H8426\"*, then|strong=\"H7126\"* he|strong=\"H5921\"* shall offer|strong=\"H7126\"* with|strong=\"H1101\"* the|strong=\"H5921\"* sacrifice|strong=\"H2077\"* of|strong=\"H2077\"* thanksgiving|strong=\"H8426\"* unleavened|strong=\"H4682\"* cakes|strong=\"H2471\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, and|strong=\"H8081\"* unleavened|strong=\"H4682\"* wafers|strong=\"H7550\"* anointed|strong=\"H4886\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, and|strong=\"H8081\"* cakes|strong=\"H2471\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H5921\"* shall|strong=\"H7133\"* offer|strong=\"H7126\"* his|strong=\"H5921\"* offering|strong=\"H7133\"* with|strong=\"H5921\"* the|strong=\"H5921\"* sacrifice|strong=\"H2077\"* of|strong=\"H2077\"* his|strong=\"H5921\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* for|strong=\"H5921\"* thanksgiving|strong=\"H8426\"* with|strong=\"H5921\"* cakes|strong=\"H2471\"* of|strong=\"H2077\"* leavened|strong=\"H2557\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 14, + "text": "Of|strong=\"H3068\"* it|strong=\"H7126\"* he|strong=\"H3068\"* shall|strong=\"H3548\"* offer|strong=\"H7126\"* one|strong=\"H3605\"* out|strong=\"H4480\"* of|strong=\"H3068\"* each|strong=\"H3605\"* offering|strong=\"H7133\"* for|strong=\"H3068\"* a|strong=\"H3068\"* heave|strong=\"H8641\"* offering|strong=\"H7133\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. It|strong=\"H7126\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*’s who|strong=\"H3605\"* sprinkles|strong=\"H2236\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H3068\"* the|strong=\"H3605\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H4480\"* flesh|strong=\"H1320\"* of|strong=\"H3117\"* the|strong=\"H4480\"* sacrifice|strong=\"H2077\"* of|strong=\"H3117\"* his|strong=\"H4480\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* for|strong=\"H5704\"* thanksgiving|strong=\"H8426\"* shall|strong=\"H3117\"* be|strong=\"H3808\"* eaten on|strong=\"H3117\"* the|strong=\"H4480\"* day|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H4480\"* offering|strong=\"H7133\"*. He|strong=\"H3117\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* leave|strong=\"H3240\"* any|strong=\"H4480\"* of|strong=\"H3117\"* it|strong=\"H1242\"* until|strong=\"H5704\"* the|strong=\"H4480\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 16, + "text": "“‘But|strong=\"H3498\"* if the|strong=\"H4480\"* sacrifice|strong=\"H2077\"* of|strong=\"H3117\"* his|strong=\"H7126\"* offering|strong=\"H7133\"* is|strong=\"H3117\"* a|strong=\"H3068\"* vow|strong=\"H5088\"*, or|strong=\"H3117\"* a|strong=\"H3068\"* free will|strong=\"H3117\"* offering|strong=\"H7133\"*, it|strong=\"H7126\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* eaten on|strong=\"H3117\"* the|strong=\"H4480\"* day|strong=\"H3117\"* that|strong=\"H3117\"* he|strong=\"H3117\"* offers|strong=\"H7126\"* his|strong=\"H7126\"* sacrifice|strong=\"H2077\"*. On|strong=\"H3117\"* the|strong=\"H4480\"* next|strong=\"H4283\"* day|strong=\"H3117\"* what remains|strong=\"H3498\"* of|strong=\"H3117\"* it|strong=\"H7126\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* eaten," + }, + { + "verseNum": 17, + "text": "but|strong=\"H3498\"* what remains|strong=\"H3498\"* of|strong=\"H3117\"* the|strong=\"H3117\"* meat|strong=\"H1320\"* of|strong=\"H3117\"* the|strong=\"H3117\"* sacrifice|strong=\"H2077\"* on|strong=\"H3117\"* the|strong=\"H3117\"* third|strong=\"H7992\"* day|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 18, + "text": "If|strong=\"H1961\"* any|strong=\"H4480\"* of|strong=\"H3117\"* the|strong=\"H5375\"* meat|strong=\"H1320\"* of|strong=\"H3117\"* the|strong=\"H5375\"* sacrifice|strong=\"H2077\"* of|strong=\"H3117\"* his|strong=\"H5375\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* is|strong=\"H5315\"* eaten on|strong=\"H3117\"* the|strong=\"H5375\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, it|strong=\"H7126\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* accepted|strong=\"H7521\"*, and|strong=\"H3117\"* it|strong=\"H7126\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* be|strong=\"H1961\"* credited|strong=\"H2803\"* to|strong=\"H1961\"* him|strong=\"H5315\"* who|strong=\"H5315\"* offers|strong=\"H7126\"* it|strong=\"H7126\"*. It|strong=\"H7126\"* will|strong=\"H1961\"* be|strong=\"H1961\"* an|strong=\"H7126\"* abomination|strong=\"H6292\"*, and|strong=\"H3117\"* the|strong=\"H5375\"* soul|strong=\"H5315\"* who|strong=\"H5315\"* eats any|strong=\"H4480\"* of|strong=\"H3117\"* it|strong=\"H7126\"* will|strong=\"H1961\"* bear|strong=\"H5375\"* his|strong=\"H5375\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 19, + "text": "“‘The|strong=\"H3605\"* meat|strong=\"H1320\"* that|strong=\"H3605\"* touches|strong=\"H5060\"* any|strong=\"H3605\"* unclean|strong=\"H2931\"* thing|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* eaten. It|strong=\"H3808\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire. As|strong=\"H3605\"* for|strong=\"H3605\"* the|strong=\"H3605\"* meat|strong=\"H1320\"*, everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3605\"* clean|strong=\"H2889\"* may|strong=\"H2889\"* eat it|strong=\"H3808\"*;" + }, + { + "verseNum": 20, + "text": "but|strong=\"H1931\"* the|strong=\"H5921\"* soul|strong=\"H5315\"* who|strong=\"H1931\"* eats of|strong=\"H3068\"* the|strong=\"H5921\"* meat|strong=\"H1320\"* of|strong=\"H3068\"* the|strong=\"H5921\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* that|strong=\"H5971\"* belongs to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, having|strong=\"H5315\"* his|strong=\"H3068\"* uncleanness|strong=\"H2932\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, that|strong=\"H5971\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* his|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H3588\"* anyone|strong=\"H3605\"* touches|strong=\"H5060\"* any|strong=\"H3605\"* unclean|strong=\"H2931\"* thing|strong=\"H2932\"*, the|strong=\"H3605\"* uncleanness|strong=\"H2932\"* of|strong=\"H3068\"* man|strong=\"H5315\"*, or|strong=\"H3068\"* an|strong=\"H3772\"* unclean|strong=\"H2931\"* animal, or|strong=\"H3068\"* any|strong=\"H3605\"* unclean|strong=\"H2931\"* abomination|strong=\"H8263\"*, and|strong=\"H3068\"* eats some|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H3605\"* meat|strong=\"H1320\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* which|strong=\"H1931\"* belong to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3588\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* his|strong=\"H3605\"* people|strong=\"H5971\"*.’”" + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 23, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘You|strong=\"H3605\"* shall|strong=\"H1121\"* eat no|strong=\"H3808\"* fat|strong=\"H2459\"*, of|strong=\"H1121\"* bull|strong=\"H7794\"*, or|strong=\"H3808\"* sheep|strong=\"H3775\"*, or|strong=\"H3808\"* goat|strong=\"H5795\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H3605\"* fat|strong=\"H2459\"* of|strong=\"H3605\"* that|strong=\"H3605\"* which|strong=\"H5038\"* dies|strong=\"H5038\"* of|strong=\"H3605\"* itself|strong=\"H5038\"*, and|strong=\"H6213\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* of|strong=\"H3605\"* that|strong=\"H3605\"* which|strong=\"H5038\"* is|strong=\"H3605\"* torn|strong=\"H2966\"* of|strong=\"H3605\"* animals, may|strong=\"H6213\"* be|strong=\"H3808\"* used|strong=\"H6213\"* for|strong=\"H6213\"* any|strong=\"H3605\"* other|strong=\"H3605\"* service|strong=\"H4399\"*, but|strong=\"H3808\"* you|strong=\"H3605\"* shall|strong=\"H3808\"* in|strong=\"H6213\"* no|strong=\"H3808\"* way|strong=\"H3605\"* eat of|strong=\"H3605\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"H3588\"* whoever|strong=\"H3605\"* eats the|strong=\"H3605\"* fat|strong=\"H2459\"* of|strong=\"H3068\"* the|strong=\"H3605\"* animal which|strong=\"H3068\"* men|strong=\"H5971\"* offer|strong=\"H7126\"* as|strong=\"H5315\"* an|strong=\"H7126\"* offering|strong=\"H7126\"* made|strong=\"H3772\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, even|strong=\"H3588\"* the|strong=\"H3605\"* soul|strong=\"H5315\"* who|strong=\"H3605\"* eats it|strong=\"H7126\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H4480\"* his|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 26, + "text": "You|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat any|strong=\"H3605\"* blood|strong=\"H1818\"*, whether it|strong=\"H3808\"* is|strong=\"H3605\"* of|strong=\"H1818\"* bird|strong=\"H5775\"* or|strong=\"H3808\"* of|strong=\"H1818\"* animal, in|strong=\"H4186\"* any|strong=\"H3605\"* of|strong=\"H1818\"* your|strong=\"H3605\"* dwellings|strong=\"H4186\"*." + }, + { + "verseNum": 27, + "text": "Whoever|strong=\"H3605\"* it|strong=\"H1931\"* is|strong=\"H1931\"* who|strong=\"H3605\"* eats any|strong=\"H3605\"* blood|strong=\"H1818\"*, that|strong=\"H5971\"* soul|strong=\"H5315\"* shall|strong=\"H5971\"* be|strong=\"H5315\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* his|strong=\"H3605\"* people|strong=\"H5971\"*.’”" + }, + { + "verseNum": 28, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 29, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘He|strong=\"H3068\"* who|strong=\"H3068\"* offers|strong=\"H7126\"* the|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* his|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* bring|strong=\"H7126\"* his|strong=\"H3068\"* offering|strong=\"H7133\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"* out|strong=\"H1696\"* of|strong=\"H1121\"* the|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* his|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*." + }, + { + "verseNum": 30, + "text": "With|strong=\"H3068\"* his|strong=\"H3068\"* own|strong=\"H3027\"* hands|strong=\"H3027\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* bring the|strong=\"H6440\"* offerings|strong=\"H8573\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* made|strong=\"H3068\"* by|strong=\"H3027\"* fire. He|strong=\"H3068\"* shall|strong=\"H3068\"* bring the|strong=\"H6440\"* fat|strong=\"H2459\"* with|strong=\"H3068\"* the|strong=\"H6440\"* breast|strong=\"H2373\"*, that|strong=\"H2459\"* the|strong=\"H6440\"* breast|strong=\"H2373\"* may|strong=\"H3068\"* be|strong=\"H3027\"* waved|strong=\"H5130\"* for|strong=\"H5921\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H1961\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* the|strong=\"H1961\"* fat|strong=\"H2459\"* on|strong=\"H1961\"* the|strong=\"H1961\"* altar|strong=\"H4196\"*, but|strong=\"H1961\"* the|strong=\"H1961\"* breast|strong=\"H2373\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* Aaron’s and|strong=\"H1121\"* his|strong=\"H1961\"* sons|strong=\"H1121\"*’." + }, + { + "verseNum": 32, + "text": "The|strong=\"H5414\"* right|strong=\"H3225\"* thigh|strong=\"H7785\"* you|strong=\"H5414\"* shall|strong=\"H3548\"* give|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* priest|strong=\"H3548\"* for|strong=\"H5414\"* a|strong=\"H3068\"* heave|strong=\"H8641\"* offering|strong=\"H8641\"* out|strong=\"H5414\"* of|strong=\"H2077\"* the|strong=\"H5414\"* sacrifices|strong=\"H2077\"* of|strong=\"H2077\"* your|strong=\"H5414\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H7126\"* among the|strong=\"H7126\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron who|strong=\"H1121\"* offers|strong=\"H7126\"* the|strong=\"H7126\"* blood|strong=\"H1818\"* of|strong=\"H1121\"* the|strong=\"H7126\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, and|strong=\"H1121\"* the|strong=\"H7126\"* fat|strong=\"H2459\"*, shall|strong=\"H1121\"* have|strong=\"H1961\"* the|strong=\"H7126\"* right|strong=\"H3225\"* thigh|strong=\"H7785\"* for|strong=\"H1121\"* a|strong=\"H3068\"* portion|strong=\"H4490\"*." + }, + { + "verseNum": 34, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* waved|strong=\"H8573\"* breast|strong=\"H2373\"* and|strong=\"H1121\"* the|strong=\"H3588\"* heaved thigh|strong=\"H7785\"* I|strong=\"H3588\"* have|strong=\"H1121\"* taken|strong=\"H3947\"* from|strong=\"H3478\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* out|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H3588\"* sacrifices|strong=\"H2077\"* of|strong=\"H1121\"* their|strong=\"H5414\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, and|strong=\"H1121\"* have|strong=\"H1121\"* given|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3478\"* Aaron the|strong=\"H3588\"* priest|strong=\"H3548\"* and|strong=\"H1121\"* to|strong=\"H3478\"* his|strong=\"H5414\"* sons|strong=\"H1121\"* as|strong=\"H3588\"* their|strong=\"H5414\"* portion|strong=\"H2706\"* forever|strong=\"H5769\"* from|strong=\"H3478\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.’”" + }, + { + "verseNum": 35, + "text": "This|strong=\"H2063\"* is|strong=\"H3068\"* the|strong=\"H3068\"* consecrated|strong=\"H4888\"* portion|strong=\"H4888\"* of|strong=\"H1121\"* Aaron, and|strong=\"H1121\"* the|strong=\"H3068\"* consecrated|strong=\"H4888\"* portion|strong=\"H4888\"* of|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"*, out of|strong=\"H1121\"* the|strong=\"H3068\"* offerings|strong=\"H3068\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* made|strong=\"H3068\"* by|strong=\"H3117\"* fire, in|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* when|strong=\"H3117\"* he|strong=\"H3117\"* presented|strong=\"H7126\"* them|strong=\"H7126\"* to|strong=\"H3068\"* minister|strong=\"H3547\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* priest|strong=\"H3547\"*’s office;" + }, + { + "verseNum": 36, + "text": "which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* to|strong=\"H3478\"* be|strong=\"H3068\"* given|strong=\"H5414\"* them|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, in|strong=\"H3478\"* the|strong=\"H5414\"* day|strong=\"H3117\"* that|strong=\"H3117\"* he|strong=\"H3117\"* anointed|strong=\"H4886\"* them|strong=\"H5414\"*. It|strong=\"H5414\"* is|strong=\"H3068\"* their|strong=\"H3068\"* portion forever|strong=\"H5769\"* throughout|strong=\"H1755\"* their|strong=\"H3068\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 37, + "text": "This|strong=\"H2063\"* is|strong=\"H8451\"* the|strong=\"H8451\"* law|strong=\"H8451\"* of|strong=\"H2077\"* the|strong=\"H8451\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, the|strong=\"H8451\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, the|strong=\"H8451\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, the|strong=\"H8451\"* trespass offering|strong=\"H4503\"*, the|strong=\"H8451\"* consecration|strong=\"H4394\"*, and|strong=\"H5930\"* the|strong=\"H8451\"* sacrifice|strong=\"H2077\"* of|strong=\"H2077\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*" + }, + { + "verseNum": 38, + "text": "which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"* in|strong=\"H3478\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"* in|strong=\"H3478\"* the|strong=\"H3068\"* day|strong=\"H3117\"* that|strong=\"H3117\"* he|strong=\"H3117\"* commanded|strong=\"H6680\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* offer|strong=\"H7126\"* their|strong=\"H3068\"* offerings|strong=\"H7133\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, in|strong=\"H3478\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Sinai|strong=\"H5514\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Take|strong=\"H3947\"* Aaron and|strong=\"H1121\"* his|strong=\"H3947\"* sons|strong=\"H1121\"* with|strong=\"H3947\"* him|strong=\"H3947\"*, and|strong=\"H1121\"* the|strong=\"H3947\"* garments, and|strong=\"H1121\"* the|strong=\"H3947\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, and|strong=\"H1121\"* the|strong=\"H3947\"* bull|strong=\"H6499\"* of|strong=\"H1121\"* the|strong=\"H3947\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, and|strong=\"H1121\"* the|strong=\"H3947\"* two|strong=\"H8147\"* rams, and|strong=\"H1121\"* the|strong=\"H3947\"* basket|strong=\"H5536\"* of|strong=\"H1121\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H4150\"* assemble|strong=\"H6950\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* at|strong=\"H6950\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H5712\"* the|strong=\"H3605\"* Tent of|strong=\"H5712\"* Meeting|strong=\"H4150\"*.”" + }, + { + "verseNum": 4, + "text": "Moses|strong=\"H4872\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H6213\"*; and|strong=\"H4872\"* the|strong=\"H6213\"* congregation|strong=\"H5712\"* was|strong=\"H3068\"* assembled|strong=\"H6950\"* at|strong=\"H3068\"* the|strong=\"H6213\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6213\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 5, + "text": "Moses|strong=\"H4872\"* said|strong=\"H1697\"* to|strong=\"H3068\"* the|strong=\"H6213\"* congregation|strong=\"H5712\"*, “This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H6213\"* thing|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* to|strong=\"H3068\"* be|strong=\"H1697\"* done|strong=\"H6213\"*.”" + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* brought|strong=\"H7126\"* Aaron and|strong=\"H1121\"* his|strong=\"H7364\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* washed|strong=\"H7364\"* them|strong=\"H7126\"* with|strong=\"H7364\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H5414\"* put|strong=\"H5414\"* the|strong=\"H5921\"* tunic|strong=\"H3801\"* on|strong=\"H5921\"* him|strong=\"H5414\"*, tied|strong=\"H5414\"* the|strong=\"H5921\"* sash on|strong=\"H5921\"* him|strong=\"H5414\"*, clothed|strong=\"H3847\"* him|strong=\"H5414\"* with|strong=\"H3847\"* the|strong=\"H5921\"* robe|strong=\"H4598\"*, put|strong=\"H5414\"* the|strong=\"H5921\"* ephod on|strong=\"H5921\"* him|strong=\"H5414\"*, and|strong=\"H4598\"* he|strong=\"H5414\"* tied|strong=\"H5414\"* the|strong=\"H5921\"* skillfully|strong=\"H2805\"* woven|strong=\"H2805\"* band|strong=\"H2805\"* of|strong=\"H5921\"* the|strong=\"H5921\"* ephod on|strong=\"H5921\"* him|strong=\"H5414\"* and|strong=\"H4598\"* fastened|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5921\"* him|strong=\"H5414\"* with|strong=\"H3847\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H5414\"* placed|strong=\"H5414\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"* on|strong=\"H5921\"* him|strong=\"H5414\"*. He|strong=\"H5414\"* put|strong=\"H5414\"* the|strong=\"H5921\"* Urim and|strong=\"H5921\"* Thummim|strong=\"H8550\"* in|strong=\"H5921\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H3068\"* set|strong=\"H7760\"* the|strong=\"H6440\"* turban|strong=\"H4701\"* on|strong=\"H5921\"* his|strong=\"H7760\"* head|strong=\"H7218\"*. He|strong=\"H3068\"* set|strong=\"H7760\"* the|strong=\"H6440\"* golden|strong=\"H2091\"* plate|strong=\"H6731\"*, the|strong=\"H6440\"* holy|strong=\"H6944\"* crown|strong=\"H5145\"*, on|strong=\"H5921\"* the|strong=\"H6440\"* front|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* turban|strong=\"H4701\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 10, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* the|strong=\"H3605\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, and|strong=\"H4872\"* anointed|strong=\"H4886\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* and|strong=\"H4872\"* all|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H4872\"* in|strong=\"H4872\"* it|strong=\"H6942\"*, and|strong=\"H4872\"* sanctified|strong=\"H6942\"* them|strong=\"H3947\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3605\"* sprinkled|strong=\"H5137\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* seven|strong=\"H7651\"* times|strong=\"H6471\"*, and|strong=\"H4196\"* anointed|strong=\"H4886\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* and|strong=\"H4196\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, and|strong=\"H4196\"* the|strong=\"H3605\"* basin|strong=\"H3595\"* and|strong=\"H4196\"* its|strong=\"H3605\"* base|strong=\"H3653\"*, to|strong=\"H5921\"* sanctify|strong=\"H6942\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H5921\"* poured|strong=\"H3332\"* some of|strong=\"H7218\"* the|strong=\"H5921\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"* on|strong=\"H5921\"* Aaron’s head|strong=\"H7218\"*, and|strong=\"H7218\"* anointed|strong=\"H4886\"* him|strong=\"H5921\"*, to|strong=\"H5921\"* sanctify|strong=\"H6942\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "Moses|strong=\"H4872\"* brought|strong=\"H7126\"* Aaron’s sons|strong=\"H1121\"*, and|strong=\"H1121\"* clothed|strong=\"H3847\"* them|strong=\"H6680\"* with|strong=\"H3847\"* tunics|strong=\"H3801\"*, and|strong=\"H1121\"* tied sashes on|strong=\"H3847\"* them|strong=\"H6680\"*, and|strong=\"H1121\"* put|strong=\"H3847\"* headbands|strong=\"H4021\"* on|strong=\"H3847\"* them|strong=\"H6680\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3027\"* brought|strong=\"H5066\"* the|strong=\"H5921\"* bull|strong=\"H6499\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, and|strong=\"H1121\"* Aaron and|strong=\"H1121\"* his|strong=\"H5921\"* sons|strong=\"H1121\"* laid|strong=\"H5564\"* their|strong=\"H5564\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5921\"* bull|strong=\"H6499\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H5414\"* killed|strong=\"H7819\"* it|strong=\"H5414\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* took|strong=\"H3947\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*, and|strong=\"H4872\"* put|strong=\"H5414\"* it|strong=\"H5414\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H5921\"* horns|strong=\"H7161\"* of|strong=\"H4196\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* with|strong=\"H5921\"* his|strong=\"H5414\"* finger, and|strong=\"H4872\"* purified|strong=\"H2398\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H4872\"* poured|strong=\"H3332\"* out|strong=\"H3332\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* at|strong=\"H5921\"* the|strong=\"H5921\"* base|strong=\"H3247\"* of|strong=\"H4196\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H4872\"* sanctified|strong=\"H6942\"* it|strong=\"H5414\"*, to|strong=\"H5921\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H3605\"* took|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* was|strong=\"H4872\"* on|strong=\"H5921\"* the|strong=\"H3605\"* innards, and|strong=\"H4872\"* the|strong=\"H3605\"* cover of|strong=\"H4196\"* the|strong=\"H3605\"* liver|strong=\"H3516\"*, and|strong=\"H4872\"* the|strong=\"H3605\"* two|strong=\"H8147\"* kidneys|strong=\"H3629\"*, and|strong=\"H4872\"* their|strong=\"H3605\"* fat|strong=\"H2459\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* burned|strong=\"H6999\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H3068\"* the|strong=\"H3068\"* bull|strong=\"H6499\"*, and|strong=\"H4872\"* its skin|strong=\"H5785\"*, and|strong=\"H4872\"* its meat|strong=\"H1320\"*, and|strong=\"H4872\"* its dung|strong=\"H6569\"*, he|strong=\"H3068\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire outside|strong=\"H2351\"* the|strong=\"H3068\"* camp|strong=\"H4264\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H3027\"* presented|strong=\"H7126\"* the|strong=\"H5921\"* ram of|strong=\"H1121\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*. Aaron and|strong=\"H1121\"* his|strong=\"H5921\"* sons|strong=\"H1121\"* laid|strong=\"H5564\"* their|strong=\"H5564\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5921\"* ram." + }, + { + "verseNum": 19, + "text": "He|strong=\"H5921\"* killed|strong=\"H7819\"* it|strong=\"H5921\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* sprinkled|strong=\"H2236\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H4872\"* cut|strong=\"H5408\"* the|strong=\"H4872\"* ram into its pieces|strong=\"H5409\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* burned|strong=\"H6999\"* the|strong=\"H4872\"* head|strong=\"H7218\"*, and|strong=\"H4872\"* the|strong=\"H4872\"* pieces|strong=\"H5409\"*, and|strong=\"H4872\"* the|strong=\"H4872\"* fat|strong=\"H6309\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H1931\"* washed|strong=\"H7364\"* the|strong=\"H3605\"* innards and|strong=\"H4872\"* the|strong=\"H3605\"* legs|strong=\"H3767\"* with|strong=\"H3068\"* water|strong=\"H4325\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* burned|strong=\"H6999\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* ram on|strong=\"H3068\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*. It|strong=\"H1931\"* was|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* for|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*. It|strong=\"H1931\"* was|strong=\"H3068\"* an|strong=\"H3068\"* offering|strong=\"H5930\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H3027\"* presented|strong=\"H7126\"* the|strong=\"H5921\"* other|strong=\"H8145\"* ram, the|strong=\"H5921\"* ram of|strong=\"H1121\"* consecration|strong=\"H4394\"*. Aaron and|strong=\"H1121\"* his|strong=\"H5921\"* sons|strong=\"H1121\"* laid|strong=\"H5564\"* their|strong=\"H5564\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5921\"* ram." + }, + { + "verseNum": 23, + "text": "He|strong=\"H5414\"* killed|strong=\"H7819\"* it|strong=\"H5414\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* took|strong=\"H3947\"* some|strong=\"H3027\"* of|strong=\"H3027\"* its|strong=\"H5414\"* blood|strong=\"H1818\"*, and|strong=\"H4872\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tip|strong=\"H8571\"* of|strong=\"H3027\"* Aaron’s right|strong=\"H3233\"* ear, and|strong=\"H4872\"* on|strong=\"H5921\"* the|strong=\"H5921\"* thumb of|strong=\"H3027\"* his|strong=\"H5414\"* right|strong=\"H3233\"* hand|strong=\"H3027\"*, and|strong=\"H4872\"* on|strong=\"H5921\"* the|strong=\"H5921\"* great toe of|strong=\"H3027\"* his|strong=\"H5414\"* right|strong=\"H3233\"* foot|strong=\"H7272\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H5414\"* brought|strong=\"H7126\"* Aaron’s sons|strong=\"H1121\"*; and|strong=\"H1121\"* Moses|strong=\"H4872\"* put|strong=\"H5414\"* some|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tip|strong=\"H8571\"* of|strong=\"H1121\"* their|strong=\"H5414\"* right|strong=\"H3233\"* ear, and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* thumb of|strong=\"H1121\"* their|strong=\"H5414\"* right|strong=\"H3233\"* hand|strong=\"H3027\"*, and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* great toe of|strong=\"H1121\"* their|strong=\"H5414\"* right|strong=\"H3233\"* foot|strong=\"H7272\"*; and|strong=\"H1121\"* Moses|strong=\"H4872\"* sprinkled|strong=\"H2236\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H3605\"* took|strong=\"H3947\"* the|strong=\"H3605\"* fat|strong=\"H2459\"*, the|strong=\"H3605\"* fat|strong=\"H2459\"* tail, all|strong=\"H3605\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* was|strong=\"H3605\"* on|strong=\"H5921\"* the|strong=\"H3605\"* innards, the|strong=\"H3605\"* cover of|strong=\"H5921\"* the|strong=\"H3605\"* liver|strong=\"H3516\"*, the|strong=\"H3605\"* two|strong=\"H8147\"* kidneys|strong=\"H3629\"* and|strong=\"H8147\"* their|strong=\"H3605\"* fat|strong=\"H2459\"*, and|strong=\"H8147\"* the|strong=\"H3605\"* right|strong=\"H3225\"* thigh|strong=\"H7785\"*;" + }, + { + "verseNum": 26, + "text": "and|strong=\"H3068\"* out|strong=\"H3947\"* of|strong=\"H3068\"* the|strong=\"H6440\"* basket|strong=\"H5536\"* of|strong=\"H3068\"* unleavened|strong=\"H4682\"* bread|strong=\"H3899\"* that|strong=\"H2459\"* was|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, he|strong=\"H3068\"* took|strong=\"H3947\"* one|strong=\"H3068\"* unleavened|strong=\"H4682\"* cake|strong=\"H2471\"*, one|strong=\"H3068\"* cake|strong=\"H2471\"* of|strong=\"H3068\"* oiled|strong=\"H8081\"* bread|strong=\"H3899\"*, and|strong=\"H3068\"* one|strong=\"H3068\"* wafer|strong=\"H7550\"*, and|strong=\"H3068\"* placed|strong=\"H7760\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H6440\"* fat|strong=\"H2459\"* and|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H6440\"* right|strong=\"H3225\"* thigh|strong=\"H7785\"*." + }, + { + "verseNum": 27, + "text": "He|strong=\"H3068\"* put|strong=\"H5414\"* all|strong=\"H3605\"* these|strong=\"H3605\"* in|strong=\"H5921\"* Aaron’s hands|strong=\"H3709\"* and|strong=\"H1121\"* in|strong=\"H5921\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*’ hands|strong=\"H3709\"*, and|strong=\"H1121\"* waved|strong=\"H5130\"* them|strong=\"H5414\"* for|strong=\"H5921\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 28, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* them|strong=\"H1992\"* from|strong=\"H5921\"* their|strong=\"H3068\"* hands|strong=\"H3709\"*, and|strong=\"H4872\"* burned|strong=\"H6999\"* them|strong=\"H1992\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* on|strong=\"H5921\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*. They|strong=\"H1992\"* were|strong=\"H1992\"* a|strong=\"H3068\"* consecration|strong=\"H4394\"* offering|strong=\"H5930\"* for|strong=\"H5921\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*. It|strong=\"H1931\"* was|strong=\"H3068\"* an|strong=\"H3947\"* offering|strong=\"H5930\"* made|strong=\"H3068\"* by|strong=\"H5921\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 29, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* the|strong=\"H6440\"* breast|strong=\"H2373\"*, and|strong=\"H4872\"* waved|strong=\"H5130\"* it|strong=\"H6440\"* for|strong=\"H6440\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. It|strong=\"H6440\"* was|strong=\"H3068\"* Moses|strong=\"H4872\"*’ portion|strong=\"H4490\"* of|strong=\"H3068\"* the|strong=\"H6440\"* ram of|strong=\"H3068\"* consecration|strong=\"H4394\"*, as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 30, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* some|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H5921\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, and|strong=\"H1121\"* some|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* which|strong=\"H4196\"* was|strong=\"H4872\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H1121\"* sprinkled|strong=\"H5137\"* it|strong=\"H5921\"* on|strong=\"H5921\"* Aaron, on|strong=\"H5921\"* his|strong=\"H3947\"* garments, and|strong=\"H1121\"* on|strong=\"H5921\"* his|strong=\"H3947\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* on|strong=\"H5921\"* his|strong=\"H3947\"* sons|strong=\"H1121\"*’ garments with|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* sanctified|strong=\"H6942\"* Aaron, his|strong=\"H3947\"* garments, and|strong=\"H1121\"* his|strong=\"H3947\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* his|strong=\"H3947\"* sons|strong=\"H1121\"*’ garments with|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 31, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H1121\"* Aaron and|strong=\"H1121\"* to|strong=\"H1121\"* his|strong=\"H6680\"* sons|strong=\"H1121\"*, “Boil|strong=\"H1310\"* the|strong=\"H6680\"* meat|strong=\"H1320\"* at|strong=\"H1121\"* the|strong=\"H6680\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H6680\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, and|strong=\"H1121\"* there|strong=\"H8033\"* eat|strong=\"H3899\"* it|strong=\"H8033\"* and|strong=\"H1121\"* the|strong=\"H6680\"* bread|strong=\"H3899\"* that|strong=\"H1121\"* is|strong=\"H1320\"* in|strong=\"H1320\"* the|strong=\"H6680\"* basket|strong=\"H5536\"* of|strong=\"H1121\"* consecration|strong=\"H4394\"*, as|strong=\"H1121\"* I|strong=\"H6680\"* commanded|strong=\"H6680\"*, saying, ‘Aaron and|strong=\"H1121\"* his|strong=\"H6680\"* sons|strong=\"H1121\"* shall|strong=\"H1121\"* eat|strong=\"H3899\"* it|strong=\"H8033\"*.’" + }, + { + "verseNum": 32, + "text": "What remains|strong=\"H3498\"* of|strong=\"H3899\"* the|strong=\"H8313\"* meat|strong=\"H1320\"* and|strong=\"H3899\"* of|strong=\"H3899\"* the|strong=\"H8313\"* bread|strong=\"H3899\"* you|strong=\"H1320\"* shall|strong=\"H1320\"* burn|strong=\"H8313\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 33, + "text": "You|strong=\"H3588\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3588\"* door|strong=\"H6607\"* of|strong=\"H3117\"* the|strong=\"H3588\"* Tent of|strong=\"H3117\"* Meeting|strong=\"H4150\"* for|strong=\"H3588\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, until|strong=\"H5704\"* the|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H3588\"* consecration|strong=\"H4394\"* are|strong=\"H3117\"* fulfilled|strong=\"H4390\"*: for|strong=\"H3588\"* he|strong=\"H3588\"* shall|strong=\"H3117\"* consecrate|strong=\"H4390\"* you|strong=\"H3588\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 34, + "text": "What|strong=\"H2088\"* has|strong=\"H3068\"* been|strong=\"H3068\"* done|strong=\"H6213\"* today|strong=\"H3117\"*, so|strong=\"H6213\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* to|strong=\"H3068\"* do|strong=\"H6213\"*, to|strong=\"H3068\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* you|strong=\"H6680\"*." + }, + { + "verseNum": 35, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* stay|strong=\"H3427\"* at|strong=\"H3427\"* the|strong=\"H3588\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H3588\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"* day|strong=\"H3117\"* and|strong=\"H3068\"* night|strong=\"H3915\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, and|strong=\"H3068\"* keep|strong=\"H8104\"* Yahweh|strong=\"H3068\"*’s command|strong=\"H6680\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* don’t die|strong=\"H4191\"*: for|strong=\"H3588\"* so|strong=\"H3651\"* I|strong=\"H3588\"* am|strong=\"H3068\"* commanded|strong=\"H6680\"*.”" + }, + { + "verseNum": 36, + "text": "Aaron and|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* did|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* things|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"*, Moses|strong=\"H4872\"* called|strong=\"H7121\"* Aaron and|strong=\"H1121\"* his|strong=\"H7121\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* the|strong=\"H3117\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*;" + }, + { + "verseNum": 2, + "text": "and|strong=\"H1121\"* he|strong=\"H3068\"* said to|strong=\"H3068\"* Aaron, “Take|strong=\"H3947\"* a|strong=\"H3068\"* calf|strong=\"H5695\"* from|strong=\"H6440\"* the|strong=\"H6440\"* herd|strong=\"H1241\"* for|strong=\"H6440\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* ram for|strong=\"H6440\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, without|strong=\"H8549\"* defect|strong=\"H8549\"*, and|strong=\"H1121\"* offer|strong=\"H7126\"* them|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3947\"* shall|strong=\"H1121\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘Take|strong=\"H3947\"* a|strong=\"H3068\"* male|strong=\"H3532\"* goat|strong=\"H5795\"* for|strong=\"H1121\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*; and|strong=\"H1121\"* a|strong=\"H3068\"* calf|strong=\"H5695\"* and|strong=\"H1121\"* a|strong=\"H3068\"* lamb|strong=\"H3532\"*, both a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*, without|strong=\"H8549\"* defect|strong=\"H8549\"*, for|strong=\"H1121\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*;" + }, + { + "verseNum": 4, + "text": "and|strong=\"H3068\"* a|strong=\"H3068\"* bull|strong=\"H7794\"* and|strong=\"H3068\"* a|strong=\"H3068\"* ram for|strong=\"H3588\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, to|strong=\"H3068\"* sacrifice|strong=\"H2076\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*: for|strong=\"H3588\"* today|strong=\"H3117\"* Yahweh|strong=\"H3068\"* appears|strong=\"H7200\"* to|strong=\"H3068\"* you|strong=\"H3588\"*.’”" + }, + { + "verseNum": 5, + "text": "They|strong=\"H3068\"* brought|strong=\"H7126\"* what Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* before|strong=\"H6440\"* the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* came|strong=\"H7126\"* near|strong=\"H7126\"* and|strong=\"H4872\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* said|strong=\"H1697\"*, “This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H7200\"* thing|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* that|strong=\"H7200\"* you|strong=\"H6680\"* should|strong=\"H3068\"* do|strong=\"H6213\"*; and|strong=\"H4872\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* shall|strong=\"H3068\"* appear|strong=\"H7200\"* to|strong=\"H3068\"* you|strong=\"H6680\"*.”" + }, + { + "verseNum": 7, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3068\"* Aaron, “Draw|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H3068\"* the|strong=\"H6213\"* altar|strong=\"H4196\"*, and|strong=\"H4872\"* offer|strong=\"H7126\"* your|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H4872\"* your|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H4872\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H6213\"* yourself|strong=\"H6213\"*, and|strong=\"H4872\"* for|strong=\"H6213\"* the|strong=\"H6213\"* people|strong=\"H5971\"*; and|strong=\"H4872\"* offer|strong=\"H7126\"* the|strong=\"H6213\"* offering|strong=\"H5930\"* of|strong=\"H3068\"* the|strong=\"H6213\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H6213\"* them|strong=\"H6213\"*, as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"*.”" + }, + { + "verseNum": 8, + "text": "So|strong=\"H7126\"* Aaron came|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H7126\"* the|strong=\"H7126\"* altar|strong=\"H4196\"*, and|strong=\"H4196\"* killed|strong=\"H7819\"* the|strong=\"H7126\"* calf|strong=\"H5695\"* of|strong=\"H4196\"* the|strong=\"H7126\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, which|strong=\"H4196\"* was for|strong=\"H4196\"* himself." + }, + { + "verseNum": 9, + "text": "The|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron presented|strong=\"H7126\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* to|strong=\"H5921\"* him|strong=\"H5414\"*; and|strong=\"H1121\"* he|strong=\"H5414\"* dipped|strong=\"H2881\"* his|strong=\"H5414\"* finger in|strong=\"H5921\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*, and|strong=\"H1121\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* horns|strong=\"H7161\"* of|strong=\"H1121\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H1121\"* poured|strong=\"H3332\"* out|strong=\"H3332\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* at|strong=\"H5921\"* the|strong=\"H5921\"* base|strong=\"H3247\"* of|strong=\"H1121\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*;" + }, + { + "verseNum": 10, + "text": "but|strong=\"H3068\"* the|strong=\"H3068\"* fat|strong=\"H2459\"*, and|strong=\"H4872\"* the|strong=\"H3068\"* kidneys|strong=\"H3629\"*, and|strong=\"H4872\"* the|strong=\"H3068\"* cover from|strong=\"H4480\"* the|strong=\"H3068\"* liver|strong=\"H3516\"* of|strong=\"H3068\"* the|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, he|strong=\"H3068\"* burned|strong=\"H6999\"* upon the|strong=\"H3068\"* altar|strong=\"H4196\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H2351\"* meat|strong=\"H1320\"* and|strong=\"H4264\"* the|strong=\"H2351\"* skin|strong=\"H5785\"* he|strong=\"H5785\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire outside|strong=\"H2351\"* the|strong=\"H2351\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H5921\"* killed|strong=\"H7819\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*; and|strong=\"H1121\"* Aaron’s sons|strong=\"H1121\"* delivered|strong=\"H4672\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* to|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* he|strong=\"H5921\"* sprinkled|strong=\"H2236\"* it|strong=\"H5921\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"H5921\"* delivered|strong=\"H4672\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H5921\"* him|strong=\"H5921\"*, piece|strong=\"H5409\"* by|strong=\"H5921\"* piece|strong=\"H5409\"*, and|strong=\"H7218\"* the|strong=\"H5921\"* head|strong=\"H7218\"*. He|strong=\"H5921\"* burned|strong=\"H6999\"* them|strong=\"H5921\"* upon|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H5921\"* washed|strong=\"H7364\"* the|strong=\"H5921\"* innards and|strong=\"H4196\"* the|strong=\"H5921\"* legs|strong=\"H3767\"*, and|strong=\"H4196\"* burned|strong=\"H6999\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H5971\"* presented|strong=\"H7126\"* the|strong=\"H3947\"* people|strong=\"H5971\"*’s offering|strong=\"H2403\"*, and|strong=\"H5971\"* took|strong=\"H3947\"* the|strong=\"H3947\"* goat|strong=\"H8163\"* of|strong=\"H5971\"* the|strong=\"H3947\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* which|strong=\"H5971\"* was|strong=\"H5971\"* for|strong=\"H5971\"* the|strong=\"H3947\"* people|strong=\"H5971\"*, and|strong=\"H5971\"* killed|strong=\"H7819\"* it|strong=\"H7126\"*, and|strong=\"H5971\"* offered|strong=\"H7126\"* it|strong=\"H7126\"* for|strong=\"H5971\"* sin|strong=\"H2403\"*, like|strong=\"H2403\"* the|strong=\"H3947\"* first|strong=\"H7223\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H6213\"* presented|strong=\"H7126\"* the|strong=\"H6213\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H4941\"* offered|strong=\"H7126\"* it|strong=\"H7126\"* according|strong=\"H4941\"* to|strong=\"H6213\"* the|strong=\"H6213\"* ordinance|strong=\"H4941\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H4480\"* presented|strong=\"H7126\"* the|strong=\"H5921\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H1242\"* filled|strong=\"H4390\"* his|strong=\"H5921\"* hand|strong=\"H3709\"* from|strong=\"H4480\"* there|strong=\"H4480\"*, and|strong=\"H1242\"* burned|strong=\"H6999\"* it|strong=\"H5921\"* upon|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* of|strong=\"H4196\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H5921\"* also|strong=\"H1121\"* killed|strong=\"H7819\"* the|strong=\"H5921\"* bull|strong=\"H7794\"* and|strong=\"H1121\"* the|strong=\"H5921\"* ram, the|strong=\"H5921\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, which|strong=\"H5971\"* was|strong=\"H1121\"* for|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"*. Aaron’s sons|strong=\"H1121\"* delivered|strong=\"H4672\"* to|strong=\"H5921\"* him|strong=\"H5921\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*, which|strong=\"H5971\"* he|strong=\"H5921\"* sprinkled|strong=\"H2236\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H7794\"* the|strong=\"H4480\"* fat|strong=\"H2459\"* of|strong=\"H4480\"* the|strong=\"H4480\"* bull|strong=\"H7794\"* and|strong=\"H7794\"* of|strong=\"H4480\"* the|strong=\"H4480\"* ram, the|strong=\"H4480\"* fat|strong=\"H2459\"* tail, and|strong=\"H7794\"* that|strong=\"H2459\"* which covers the|strong=\"H4480\"* innards, and|strong=\"H7794\"* the|strong=\"H4480\"* kidneys|strong=\"H3629\"*, and|strong=\"H7794\"* the|strong=\"H4480\"* cover|strong=\"H4374\"* of|strong=\"H4480\"* the|strong=\"H4480\"* liver|strong=\"H3516\"*;" + }, + { + "verseNum": 20, + "text": "and|strong=\"H4196\"* they|strong=\"H5921\"* put|strong=\"H7760\"* the|strong=\"H5921\"* fat|strong=\"H2459\"* upon|strong=\"H5921\"* the|strong=\"H5921\"* breasts|strong=\"H2373\"*, and|strong=\"H4196\"* he|strong=\"H5921\"* burned|strong=\"H6999\"* the|strong=\"H5921\"* fat|strong=\"H2459\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 21, + "text": "Aaron waved|strong=\"H5130\"* the|strong=\"H6440\"* breasts|strong=\"H2373\"* and|strong=\"H4872\"* the|strong=\"H6440\"* right|strong=\"H3225\"* thigh|strong=\"H7785\"* for|strong=\"H6440\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, as|strong=\"H3068\"* Moses|strong=\"H4872\"* commanded|strong=\"H6680\"*." + }, + { + "verseNum": 22, + "text": "Aaron lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* hands|strong=\"H3027\"* toward|strong=\"H3027\"* the|strong=\"H5375\"* people|strong=\"H5971\"*, and|strong=\"H3027\"* blessed|strong=\"H1288\"* them|strong=\"H3027\"*; and|strong=\"H3027\"* he|strong=\"H6213\"* came|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H3381\"* offering|strong=\"H5930\"* the|strong=\"H5375\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H3027\"* the|strong=\"H5375\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H3027\"* the|strong=\"H5375\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*." + }, + { + "verseNum": 23, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron went|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, and|strong=\"H4872\"* came|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H4872\"* blessed|strong=\"H1288\"* the|strong=\"H3605\"* people|strong=\"H5971\"*; and|strong=\"H4872\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* appeared|strong=\"H7200\"* to|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 24, + "text": "Fire came|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* consumed the|strong=\"H3605\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H3068\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* upon|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*. When|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* saw|strong=\"H7200\"* it|strong=\"H5921\"*, they|strong=\"H3068\"* shouted|strong=\"H7442\"*, and|strong=\"H3068\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* their|strong=\"H3605\"* faces|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Nadab|strong=\"H5070\"* and|strong=\"H1121\"* Abihu, the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, each|strong=\"H5414\"* took|strong=\"H3947\"* his|strong=\"H5414\"* censer|strong=\"H4289\"*, and|strong=\"H1121\"* put|strong=\"H5414\"* fire in|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H1121\"* laid|strong=\"H7760\"* incense|strong=\"H7004\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H1121\"* offered|strong=\"H7126\"* strange|strong=\"H2114\"* fire before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* not|strong=\"H3808\"* commanded|strong=\"H6680\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 2, + "text": "Fire came|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* devoured them|strong=\"H6440\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* died|strong=\"H4191\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H1696\"* Moses|strong=\"H4872\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Aaron, “This|strong=\"H1931\"* is|strong=\"H3068\"* what|strong=\"H1696\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* of|strong=\"H3068\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 4, + "text": "Moses|strong=\"H4872\"* called|strong=\"H7121\"* Mishael|strong=\"H4332\"* and|strong=\"H1121\"* Elzaphan, the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Uzziel|strong=\"H5816\"* the|strong=\"H6440\"* uncle|strong=\"H1730\"* of|strong=\"H1121\"* Aaron, and|strong=\"H1121\"* said|strong=\"H7121\"* to|strong=\"H6440\"* them|strong=\"H6440\"*, “Draw|strong=\"H7126\"* near|strong=\"H7126\"*, carry|strong=\"H5375\"* your|strong=\"H5375\"* brothers|strong=\"H1121\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* sanctuary|strong=\"H6944\"* out|strong=\"H2351\"* of|strong=\"H1121\"* the|strong=\"H6440\"* camp|strong=\"H4264\"*.”" + }, + { + "verseNum": 5, + "text": "So|strong=\"H5375\"* they|strong=\"H5375\"* came|strong=\"H7126\"* near|strong=\"H7126\"*, and|strong=\"H4872\"* carried|strong=\"H5375\"* them|strong=\"H7126\"* in|strong=\"H1696\"* their|strong=\"H5375\"* tunics|strong=\"H3801\"* out|strong=\"H2351\"* of|strong=\"H4264\"* the|strong=\"H5375\"* camp|strong=\"H4264\"*, as|strong=\"H1696\"* Moses|strong=\"H4872\"* had|strong=\"H4872\"* said|strong=\"H1696\"*." + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3478\"* Aaron, and|strong=\"H1121\"* to|strong=\"H3478\"* Eleazar and|strong=\"H1121\"* to|strong=\"H3478\"* Ithamar, his|strong=\"H3605\"* sons|strong=\"H1121\"*, “Don’t let|strong=\"H3808\"* the|strong=\"H3605\"* hair|strong=\"H7218\"* of|strong=\"H1121\"* your|strong=\"H3068\"* heads|strong=\"H7218\"* go|strong=\"H3068\"* loose|strong=\"H5921\"*, and|strong=\"H1121\"* don’t tear|strong=\"H6533\"* your|strong=\"H3068\"* clothes, so|strong=\"H3808\"* that|strong=\"H3605\"* you|strong=\"H3605\"* don’t die|strong=\"H4191\"*, and|strong=\"H1121\"* so|strong=\"H3808\"* that|strong=\"H3605\"* he|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H4191\"* angry|strong=\"H7107\"* with|strong=\"H8313\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*; but|strong=\"H3808\"* let|strong=\"H3808\"* your|strong=\"H3068\"* brothers|strong=\"H1121\"*, the|strong=\"H3605\"* whole|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, bewail|strong=\"H1058\"* the|strong=\"H3605\"* burning|strong=\"H8316\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* kindled|strong=\"H8313\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, lest|strong=\"H6435\"* you|strong=\"H3588\"* die|strong=\"H4191\"*; for|strong=\"H3588\"* the|strong=\"H5921\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H5921\"* you|strong=\"H3588\"*.” They|strong=\"H3588\"* did|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H3318\"* the|strong=\"H5921\"* word|strong=\"H1697\"* of|strong=\"H3068\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H1696\"* Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Aaron," + }, + { + "verseNum": 9, + "text": "“You|strong=\"H3808\"* and|strong=\"H1121\"* your|strong=\"H3808\"* sons|strong=\"H1121\"* are|strong=\"H1121\"* not|strong=\"H3808\"* to|strong=\"H4191\"* drink|strong=\"H8354\"* wine|strong=\"H3196\"* or|strong=\"H3808\"* strong|strong=\"H7941\"* drink|strong=\"H8354\"* whenever you|strong=\"H3808\"* go into the|strong=\"H4191\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, or|strong=\"H3808\"* you|strong=\"H3808\"* will|strong=\"H1121\"* die|strong=\"H4191\"*. This|strong=\"H4191\"* shall|strong=\"H1121\"* be|strong=\"H4191\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* throughout|strong=\"H1755\"* your|strong=\"H3808\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 10, + "text": "You are|strong=\"H6944\"* to|strong=\"H6944\"* make a|strong=\"H3068\"* distinction between the|strong=\"H2455\"* holy|strong=\"H6944\"* and|strong=\"H6944\"* the|strong=\"H2455\"* common|strong=\"H2455\"*, and|strong=\"H6944\"* between the|strong=\"H2455\"* unclean|strong=\"H2931\"* and|strong=\"H6944\"* the|strong=\"H2455\"* clean|strong=\"H2889\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H3605\"* are|strong=\"H1121\"* to|strong=\"H1696\"* teach|strong=\"H3384\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* statutes|strong=\"H2706\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H3027\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*.”" + }, + { + "verseNum": 12, + "text": "Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Aaron, and|strong=\"H1121\"* to|strong=\"H1696\"* Eleazar and|strong=\"H1121\"* to|strong=\"H1696\"* Ithamar, his|strong=\"H3068\"* sons|strong=\"H1121\"* who|strong=\"H1931\"* were|strong=\"H1121\"* left|strong=\"H3498\"*, “Take|strong=\"H3947\"* the|strong=\"H3588\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* that|strong=\"H3588\"* remains|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H3588\"* offerings|strong=\"H4503\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* made|strong=\"H1696\"* by|strong=\"H3068\"* fire, and|strong=\"H1121\"* eat it|strong=\"H1931\"* without|strong=\"H3588\"* yeast beside the|strong=\"H3588\"* altar|strong=\"H4196\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H1121\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* eat it|strong=\"H1931\"* in|strong=\"H3068\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* place|strong=\"H4725\"*, because|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* your|strong=\"H3068\"* portion|strong=\"H2706\"*, and|strong=\"H1121\"* your|strong=\"H3068\"* sons|strong=\"H1121\"*’ portion|strong=\"H2706\"*, of|strong=\"H1121\"* the|strong=\"H3588\"* offerings|strong=\"H3588\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire; for|strong=\"H3588\"* so|strong=\"H3651\"* I|strong=\"H3588\"* am|strong=\"H3068\"* commanded|strong=\"H6680\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3588\"* waved|strong=\"H8573\"* breast|strong=\"H2373\"* and|strong=\"H1121\"* the|strong=\"H3588\"* heaved thigh|strong=\"H7785\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* eat in|strong=\"H3478\"* a|strong=\"H3068\"* clean|strong=\"H2889\"* place|strong=\"H4725\"*, you|strong=\"H3588\"*, and|strong=\"H1121\"* your|strong=\"H5414\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* your|strong=\"H5414\"* daughters|strong=\"H1323\"* with|strong=\"H3478\"* you|strong=\"H3588\"*: for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H1121\"* given|strong=\"H5414\"* as|strong=\"H3588\"* your|strong=\"H5414\"* portion|strong=\"H2706\"*, and|strong=\"H1121\"* your|strong=\"H5414\"* sons|strong=\"H1121\"*’ portion|strong=\"H2706\"*, out|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H3588\"* sacrifices|strong=\"H2077\"* of|strong=\"H1121\"* the|strong=\"H3588\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"H3068\"* shall|strong=\"H3068\"* bring|strong=\"H2706\"* the|strong=\"H6440\"* heaved thigh|strong=\"H7785\"* and|strong=\"H1121\"* the|strong=\"H6440\"* waved|strong=\"H5130\"* breast|strong=\"H2373\"* with|strong=\"H3068\"* the|strong=\"H6440\"* offerings|strong=\"H8641\"* made|strong=\"H1961\"* by|strong=\"H5921\"* fire of|strong=\"H1121\"* the|strong=\"H6440\"* fat|strong=\"H2459\"*, to|strong=\"H3068\"* wave|strong=\"H8573\"* it|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8641\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. It|strong=\"H5921\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* yours, and|strong=\"H1121\"* your|strong=\"H3068\"* sons|strong=\"H1121\"*’ with|strong=\"H3068\"* you|strong=\"H6440\"*, as|strong=\"H1961\"* a|strong=\"H3068\"* portion|strong=\"H2706\"* forever|strong=\"H5769\"*, as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"*.”" + }, + { + "verseNum": 16, + "text": "Moses|strong=\"H4872\"* diligently|strong=\"H1875\"* inquired|strong=\"H1875\"* about|strong=\"H5921\"* the|strong=\"H5921\"* goat|strong=\"H8163\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, and|strong=\"H1121\"*, behold|strong=\"H2009\"*,+ 10:16 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* it|strong=\"H5921\"* was|strong=\"H4872\"* burned|strong=\"H8313\"*. He|strong=\"H5921\"* was|strong=\"H4872\"* angry|strong=\"H7107\"* with|strong=\"H8313\"* Eleazar and|strong=\"H1121\"* with|strong=\"H8313\"* Ithamar, the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron who|strong=\"H1121\"* were|strong=\"H1121\"* left|strong=\"H3498\"*, saying," + }, + { + "verseNum": 17, + "text": "“Why|strong=\"H4069\"* haven’t you|strong=\"H3588\"* eaten the|strong=\"H6440\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* in|strong=\"H5921\"* the|strong=\"H6440\"* place|strong=\"H4725\"* of|strong=\"H3068\"* the|strong=\"H6440\"* sanctuary|strong=\"H6944\"*, since|strong=\"H3588\"* it|strong=\"H5414\"* is|strong=\"H3068\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*, and|strong=\"H3068\"* he|strong=\"H1931\"* has|strong=\"H3068\"* given|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* you|strong=\"H3588\"* to|strong=\"H3068\"* bear|strong=\"H5375\"* the|strong=\"H6440\"* iniquity|strong=\"H5771\"* of|strong=\"H3068\"* the|strong=\"H6440\"* congregation|strong=\"H5712\"*, to|strong=\"H3068\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H3588\"* them|strong=\"H5414\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 18, + "text": "Behold|strong=\"H2005\"*, its|strong=\"H3808\"* blood|strong=\"H1818\"* was|strong=\"H3808\"* not|strong=\"H3808\"* brought into the|strong=\"H6680\"* inner|strong=\"H6441\"* part|strong=\"H6441\"* of|strong=\"H1818\"* the|strong=\"H6680\"* sanctuary|strong=\"H6944\"*. You|strong=\"H6680\"* certainly|strong=\"H3808\"* should have|strong=\"H3808\"* eaten it|strong=\"H3808\"* in|strong=\"H3808\"* the|strong=\"H6680\"* sanctuary|strong=\"H6944\"*, as|strong=\"H6680\"* I|strong=\"H2005\"* commanded|strong=\"H6680\"*.”" + }, + { + "verseNum": 19, + "text": "Aaron spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “Behold|strong=\"H2005\"*, today|strong=\"H3117\"* they|strong=\"H3117\"* have|strong=\"H3068\"* offered|strong=\"H7126\"* their|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* and|strong=\"H4872\"* their|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; and|strong=\"H4872\"* such|strong=\"H1696\"* things as|strong=\"H3117\"* these|strong=\"H1696\"* have|strong=\"H3068\"* happened|strong=\"H7122\"* to|strong=\"H1696\"* me|strong=\"H6440\"*. If|strong=\"H2005\"* I|strong=\"H3117\"* had|strong=\"H3068\"* eaten the|strong=\"H6440\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* today|strong=\"H3117\"*, would|strong=\"H3068\"* it|strong=\"H7126\"* have|strong=\"H3068\"* been|strong=\"H3068\"* pleasing|strong=\"H3190\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*?”" + }, + { + "verseNum": 20, + "text": "When|strong=\"H8085\"* Moses|strong=\"H4872\"* heard|strong=\"H8085\"* that|strong=\"H8085\"*, it|strong=\"H3190\"* was|strong=\"H4872\"* pleasing|strong=\"H3190\"* in|strong=\"H8085\"* his|strong=\"H8085\"* sight|strong=\"H5869\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H1696\"* Aaron, saying|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H3068\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘These|strong=\"H1696\"* are|strong=\"H1121\"* the|strong=\"H3605\"* living|strong=\"H2416\"* things|strong=\"H3605\"* which|strong=\"H3478\"* you|strong=\"H3605\"* may|strong=\"H3478\"* eat among|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* animals|strong=\"H2416\"* that|strong=\"H3605\"* are|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 3, + "text": "Whatever|strong=\"H3605\"* parts|strong=\"H6541\"* the|strong=\"H3605\"* hoof|strong=\"H6541\"*, and|strong=\"H5927\"* is|strong=\"H3605\"* cloven-footed, and|strong=\"H5927\"* chews|strong=\"H5927\"* the|strong=\"H3605\"* cud|strong=\"H1625\"* among the|strong=\"H3605\"* animals, that|strong=\"H3605\"* you|strong=\"H3605\"* may eat." + }, + { + "verseNum": 4, + "text": "“‘Nevertheless|strong=\"H3588\"* these|strong=\"H2088\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat of|strong=\"H3808\"* those|strong=\"H1931\"* that|strong=\"H3588\"* chew|strong=\"H5927\"* the|strong=\"H3588\"* cud|strong=\"H1625\"*, or|strong=\"H3808\"* of|strong=\"H3808\"* those|strong=\"H1931\"* who|strong=\"H1931\"* part|strong=\"H1931\"* the|strong=\"H3588\"* hoof|strong=\"H6541\"*: the|strong=\"H3588\"* camel|strong=\"H1581\"*, because|strong=\"H3588\"* it|strong=\"H1931\"* chews|strong=\"H5927\"* the|strong=\"H3588\"* cud|strong=\"H1625\"* but|strong=\"H3588\"* doesn’t have|strong=\"H3588\"* a|strong=\"H3068\"* parted hoof|strong=\"H6541\"*, is|strong=\"H2088\"* unclean|strong=\"H2931\"* to|strong=\"H5927\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3588\"* hyrax,+ 11:5 or rock badger, or cony* because|strong=\"H3588\"* it|strong=\"H1931\"* chews|strong=\"H5927\"* the|strong=\"H3588\"* cud|strong=\"H1625\"* but|strong=\"H3588\"* doesn’t have|strong=\"H3588\"* a|strong=\"H3068\"* parted hoof|strong=\"H6541\"*, is|strong=\"H1931\"* unclean|strong=\"H2931\"* to|strong=\"H5927\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3588\"* hare, because|strong=\"H3588\"* it|strong=\"H1931\"* chews|strong=\"H5927\"* the|strong=\"H3588\"* cud|strong=\"H1625\"* but|strong=\"H3588\"* doesn’t have|strong=\"H3588\"* a|strong=\"H3068\"* parted hoof|strong=\"H6541\"*, is|strong=\"H1931\"* unclean|strong=\"H2931\"* to|strong=\"H5927\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3588\"* pig|strong=\"H2386\"*, because|strong=\"H3588\"* it|strong=\"H1931\"* has|strong=\"H3588\"* a|strong=\"H3068\"* split|strong=\"H8156\"* hoof|strong=\"H6541\"*, and|strong=\"H3808\"* is|strong=\"H1931\"* cloven-footed, but|strong=\"H3588\"* doesn’t chew|strong=\"H1641\"* the|strong=\"H3588\"* cud|strong=\"H1625\"*, is|strong=\"H1931\"* unclean|strong=\"H2931\"* to|strong=\"H3808\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat their|strong=\"H1992\"* meat|strong=\"H1320\"*. You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* touch|strong=\"H5060\"* their|strong=\"H1992\"* carcasses|strong=\"H5038\"*. They|strong=\"H1992\"* are|strong=\"H1992\"* unclean|strong=\"H2931\"* to|strong=\"H1320\"* you|strong=\"H3808\"*." + }, + { + "verseNum": 9, + "text": "“‘You|strong=\"H3605\"* may|strong=\"H4325\"* eat of|strong=\"H4325\"* all|strong=\"H3605\"* these|strong=\"H2088\"* that|strong=\"H3605\"* are|strong=\"H4325\"* in|strong=\"H3220\"* the|strong=\"H3605\"* waters|strong=\"H4325\"*: whatever|strong=\"H3605\"* has|strong=\"H2088\"* fins|strong=\"H5579\"* and|strong=\"H4325\"* scales|strong=\"H7193\"* in|strong=\"H3220\"* the|strong=\"H3605\"* waters|strong=\"H4325\"*, in|strong=\"H3220\"* the|strong=\"H3605\"* seas|strong=\"H3220\"*, and|strong=\"H4325\"* in|strong=\"H3220\"* the|strong=\"H3605\"* rivers|strong=\"H5158\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H4325\"* eat." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* that|strong=\"H3605\"* don’t have|strong=\"H3605\"* fins|strong=\"H5579\"* and|strong=\"H4325\"* scales|strong=\"H7193\"* in|strong=\"H5315\"* the|strong=\"H3605\"* seas|strong=\"H3220\"* and|strong=\"H4325\"* rivers|strong=\"H5158\"*, all|strong=\"H3605\"* that|strong=\"H3605\"* move|strong=\"H8318\"* in|strong=\"H5315\"* the|strong=\"H3605\"* waters|strong=\"H4325\"*, and|strong=\"H4325\"* all|strong=\"H3605\"* the|strong=\"H3605\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"* that|strong=\"H3605\"* are|strong=\"H1992\"* in|strong=\"H5315\"* the|strong=\"H3605\"* waters|strong=\"H4325\"*, they|strong=\"H1992\"* are|strong=\"H1992\"* an abomination|strong=\"H8263\"* to|strong=\"H4325\"* you|strong=\"H3605\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H1320\"* you|strong=\"H3808\"* shall|strong=\"H3808\"* detest|strong=\"H8262\"* them|strong=\"H1961\"*. You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat of|strong=\"H1320\"* their|strong=\"H1961\"* meat|strong=\"H1320\"*, and|strong=\"H1320\"* you|strong=\"H3808\"* shall|strong=\"H3808\"* detest|strong=\"H8262\"* their|strong=\"H1961\"* carcasses|strong=\"H5038\"*." + }, + { + "verseNum": 12, + "text": "Whatever|strong=\"H3605\"* has|strong=\"H3605\"* no|strong=\"H3605\"* fins|strong=\"H5579\"* nor|strong=\"H5579\"* scales|strong=\"H7193\"* in|strong=\"H4325\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* is|strong=\"H1931\"* an abomination|strong=\"H8263\"* to|strong=\"H4325\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 13, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3808\"* detest|strong=\"H8262\"* these|strong=\"H1992\"* among|strong=\"H4480\"* the|strong=\"H4480\"* birds|strong=\"H5775\"*; they|strong=\"H1992\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* eaten because|strong=\"H4480\"* they|strong=\"H1992\"* are|strong=\"H1992\"* an|strong=\"H4480\"* abomination|strong=\"H8263\"*: the|strong=\"H4480\"* eagle|strong=\"H5404\"*, the|strong=\"H4480\"* vulture|strong=\"H6538\"*, the|strong=\"H4480\"* black vulture|strong=\"H6538\"*," + }, + { + "verseNum": 14, + "text": "the red kite|strong=\"H1676\"*, any kind|strong=\"H4327\"* of black kite|strong=\"H1676\"*," + }, + { + "verseNum": 15, + "text": "any|strong=\"H3605\"* kind|strong=\"H4327\"* of|strong=\"H3605\"* raven|strong=\"H6158\"*," + }, + { + "verseNum": 16, + "text": "the|strong=\"H1323\"* horned owl|strong=\"H8464\"*, the|strong=\"H1323\"* screech owl|strong=\"H8464\"*, the|strong=\"H1323\"* gull|strong=\"H7828\"*, any kind|strong=\"H4327\"* of|strong=\"H1323\"* hawk|strong=\"H5322\"*," + }, + { + "verseNum": 17, + "text": "the|strong=\"H3563\"* little|strong=\"H3563\"* owl|strong=\"H3244\"*, the|strong=\"H3563\"* cormorant|strong=\"H7994\"*, the|strong=\"H3563\"* great|strong=\"H3244\"* owl|strong=\"H3244\"*," + }, + { + "verseNum": 18, + "text": "the white|strong=\"H8580\"* owl|strong=\"H8580\"*, the desert owl|strong=\"H8580\"*, the osprey," + }, + { + "verseNum": 19, + "text": "the stork|strong=\"H2624\"*, any kind|strong=\"H4327\"* of heron, the hoopoe|strong=\"H1744\"*, and the bat|strong=\"H5847\"*." + }, + { + "verseNum": 20, + "text": "“‘All|strong=\"H3605\"* flying|strong=\"H5775\"* insects|strong=\"H8318\"* that|strong=\"H3605\"* walk|strong=\"H1980\"* on|strong=\"H5921\"* all|strong=\"H3605\"* fours are|strong=\"H5775\"* an|strong=\"H5921\"* abomination|strong=\"H8263\"* to|strong=\"H1980\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 21, + "text": "Yet|strong=\"H3808\"* you|strong=\"H3605\"* may|strong=\"H7272\"* eat these|strong=\"H2088\"*: of|strong=\"H5921\"* all|strong=\"H3605\"* winged|strong=\"H5775\"* creeping|strong=\"H8318\"* things|strong=\"H3605\"* that|strong=\"H3605\"* go|strong=\"H1980\"* on|strong=\"H5921\"* all|strong=\"H3605\"* fours, which|strong=\"H2004\"* have|strong=\"H3605\"* long|strong=\"H3605\"*, jointed|strong=\"H7272\"* legs|strong=\"H3767\"* for|strong=\"H5921\"* hopping on|strong=\"H5921\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 22, + "text": "Even of|strong=\"H1992\"* these|strong=\"H1992\"* you may|strong=\"H1992\"* eat: any kind|strong=\"H4327\"* of|strong=\"H1992\"* locust|strong=\"H5556\"*, any kind|strong=\"H4327\"* of|strong=\"H1992\"* katydid, any kind|strong=\"H4327\"* of|strong=\"H1992\"* cricket|strong=\"H2728\"*, and|strong=\"H1992\"* any kind|strong=\"H4327\"* of|strong=\"H1992\"* grasshopper|strong=\"H2284\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"H1931\"* all|strong=\"H3605\"* winged|strong=\"H5775\"* creeping|strong=\"H8318\"* things|strong=\"H3605\"* which|strong=\"H1931\"* have|strong=\"H3605\"* four feet|strong=\"H7272\"* are|strong=\"H7272\"* an abomination|strong=\"H8263\"* to|strong=\"H7272\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 24, + "text": "“‘By|strong=\"H5704\"* these|strong=\"H3605\"* you|strong=\"H3605\"* will|strong=\"H5704\"* become|strong=\"H2930\"* unclean|strong=\"H2930\"*: whoever|strong=\"H3605\"* touches|strong=\"H5060\"* their|strong=\"H3605\"* carcass|strong=\"H5038\"* shall|strong=\"H5038\"* be|strong=\"H3605\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 25, + "text": "Whoever|strong=\"H3605\"* carries|strong=\"H5375\"* any|strong=\"H3605\"* part of|strong=\"H3605\"* their|strong=\"H3605\"* carcass|strong=\"H5038\"* shall|strong=\"H5038\"* wash|strong=\"H3526\"* his|strong=\"H3605\"* clothes, and|strong=\"H3605\"* be|strong=\"H5375\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 26, + "text": "“‘Every|strong=\"H3605\"* animal which|strong=\"H1931\"* has|strong=\"H3605\"* a|strong=\"H3068\"* split|strong=\"H8156\"* hoof|strong=\"H6541\"* that|strong=\"H3605\"* isn’t completely|strong=\"H3605\"* divided|strong=\"H6536\"*, or doesn’t chew|strong=\"H5927\"* the|strong=\"H3605\"* cud|strong=\"H1625\"*, is|strong=\"H1931\"* unclean|strong=\"H2931\"* to|strong=\"H5927\"* you|strong=\"H3605\"*. Everyone|strong=\"H3605\"* who|strong=\"H3605\"* touches|strong=\"H5060\"* them|strong=\"H1992\"* shall|strong=\"H1931\"* be|strong=\"H1931\"* unclean|strong=\"H2931\"*." + }, + { + "verseNum": 27, + "text": "Whatever|strong=\"H3605\"* goes|strong=\"H1980\"* on|strong=\"H5921\"* its|strong=\"H3605\"* paws|strong=\"H3709\"*, among|strong=\"H5921\"* all|strong=\"H3605\"* animals|strong=\"H2416\"* that|strong=\"H3605\"* go|strong=\"H1980\"* on|strong=\"H5921\"* all|strong=\"H3605\"* fours, they|strong=\"H1992\"* are|strong=\"H1992\"* unclean|strong=\"H2931\"* to|strong=\"H5704\"* you|strong=\"H3605\"*. Whoever|strong=\"H3605\"* touches|strong=\"H5060\"* their|strong=\"H3605\"* carcass|strong=\"H5038\"* shall|strong=\"H5038\"* be|strong=\"H2416\"* unclean|strong=\"H2931\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H5704\"* who|strong=\"H1992\"* carries|strong=\"H5375\"* their|strong=\"H5375\"* carcass|strong=\"H5038\"* shall|strong=\"H5038\"* wash|strong=\"H3526\"* his|strong=\"H5375\"* clothes, and|strong=\"H5704\"* be|strong=\"H5375\"* unclean|strong=\"H2931\"* until|strong=\"H5704\"* the|strong=\"H5375\"* evening|strong=\"H6153\"*. They|strong=\"H1992\"* are|strong=\"H1992\"* unclean|strong=\"H2931\"* to|strong=\"H5704\"* you|strong=\"H5704\"*." + }, + { + "verseNum": 29, + "text": "“‘These|strong=\"H2088\"* are they|strong=\"H5921\"* which|strong=\"H2088\"* are unclean|strong=\"H2931\"* to|strong=\"H5921\"* you|strong=\"H5921\"* among|strong=\"H5921\"* the|strong=\"H5921\"* creeping|strong=\"H2931\"* things|strong=\"H8318\"* that|strong=\"H8318\"* creep|strong=\"H8318\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth: the|strong=\"H5921\"* weasel|strong=\"H2467\"*, the|strong=\"H5921\"* rat, any kind|strong=\"H4327\"* of|strong=\"H5921\"* great|strong=\"H6632\"* lizard|strong=\"H6632\"*," + }, + { + "verseNum": 30, + "text": "the|strong=\"H3581\"* gecko, and|strong=\"H3581\"* the|strong=\"H3581\"* monitor lizard|strong=\"H3911\"*, the|strong=\"H3581\"* wall lizard|strong=\"H3911\"*, the|strong=\"H3581\"* skink, and|strong=\"H3581\"* the|strong=\"H3581\"* chameleon|strong=\"H8580\"*." + }, + { + "verseNum": 31, + "text": "These|strong=\"H3605\"* are|strong=\"H4194\"* they|strong=\"H5704\"* which|strong=\"H8318\"* are|strong=\"H4194\"* unclean|strong=\"H2931\"* to|strong=\"H5704\"* you|strong=\"H3605\"* among|strong=\"H2931\"* all|strong=\"H3605\"* that|strong=\"H3605\"* creep|strong=\"H8318\"*. Whoever|strong=\"H3605\"* touches|strong=\"H5060\"* them|strong=\"H5704\"* when|strong=\"H5704\"* they|strong=\"H5704\"* are|strong=\"H4194\"* dead|strong=\"H4194\"* shall|strong=\"H4194\"* be|strong=\"H3605\"* unclean|strong=\"H2931\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 32, + "text": "Anything|strong=\"H3605\"* they|strong=\"H1992\"* fall|strong=\"H5307\"* on|strong=\"H5921\"* when|strong=\"H5704\"* they|strong=\"H1992\"* are|strong=\"H1992\"* dead|strong=\"H4194\"* shall|strong=\"H4325\"* be|strong=\"H6086\"* unclean|strong=\"H2930\"*; whether it|strong=\"H5921\"* is|strong=\"H3605\"* any|strong=\"H3605\"* vessel|strong=\"H3627\"* of|strong=\"H3627\"* wood|strong=\"H6086\"*, or|strong=\"H5704\"* clothing|strong=\"H3627\"*, or|strong=\"H5704\"* skin|strong=\"H5785\"*, or|strong=\"H5704\"* sack|strong=\"H8242\"*, whatever|strong=\"H3605\"* vessel|strong=\"H3627\"* it|strong=\"H5921\"* is|strong=\"H3605\"*, with|strong=\"H6213\"* which|strong=\"H1992\"* any|strong=\"H3605\"* work|strong=\"H4399\"* is|strong=\"H3605\"* done|strong=\"H6213\"*, it|strong=\"H5921\"* must be|strong=\"H6086\"* put|strong=\"H6213\"* into|strong=\"H5307\"* water|strong=\"H4325\"*, and|strong=\"H6086\"* it|strong=\"H5921\"* shall|strong=\"H4325\"* be|strong=\"H6086\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*. Then|strong=\"H5307\"* it|strong=\"H5921\"* will|strong=\"H4325\"* be|strong=\"H6086\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 33, + "text": "Every|strong=\"H3605\"* earthen|strong=\"H2789\"* vessel|strong=\"H3627\"* into|strong=\"H8432\"* which|strong=\"H1992\"* any|strong=\"H3605\"* of|strong=\"H3627\"* them|strong=\"H1992\"* falls|strong=\"H5307\"* and|strong=\"H5307\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H8432\"* it|strong=\"H8432\"* shall|strong=\"H3627\"* be|strong=\"H3605\"* unclean|strong=\"H2930\"*. You|strong=\"H3605\"* shall|strong=\"H3627\"* break|strong=\"H7665\"* it|strong=\"H8432\"*." + }, + { + "verseNum": 34, + "text": "All|strong=\"H3605\"* food which|strong=\"H4325\"* may|strong=\"H4325\"* be|strong=\"H4325\"* eaten which|strong=\"H4325\"* is|strong=\"H3605\"* soaked in|strong=\"H5921\"* water|strong=\"H4325\"* shall|strong=\"H4325\"* be|strong=\"H4325\"* unclean|strong=\"H2930\"*. All|strong=\"H3605\"* drink|strong=\"H8354\"* that|strong=\"H3605\"* may|strong=\"H4325\"* be|strong=\"H4325\"* drunk|strong=\"H8354\"* in|strong=\"H5921\"* every|strong=\"H3605\"* such|strong=\"H3605\"* vessel|strong=\"H3627\"* shall|strong=\"H4325\"* be|strong=\"H4325\"* unclean|strong=\"H2930\"*." + }, + { + "verseNum": 35, + "text": "Everything|strong=\"H3605\"* whereupon part|strong=\"H1992\"* of|strong=\"H5921\"* their|strong=\"H3605\"* carcass|strong=\"H5038\"* falls|strong=\"H5307\"* shall|strong=\"H5038\"* be|strong=\"H1961\"* unclean|strong=\"H2931\"*; whether oven|strong=\"H8574\"*, or range for|strong=\"H5921\"* pots, it|strong=\"H5921\"* shall|strong=\"H5038\"* be|strong=\"H1961\"* broken|strong=\"H5422\"* in|strong=\"H5921\"* pieces. They|strong=\"H1992\"* are|strong=\"H1992\"* unclean|strong=\"H2931\"*, and|strong=\"H5307\"* shall|strong=\"H5038\"* be|strong=\"H1961\"* unclean|strong=\"H2931\"* to|strong=\"H1961\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 36, + "text": "Nevertheless a|strong=\"H3068\"* spring|strong=\"H4599\"* or|strong=\"H4599\"* a|strong=\"H3068\"* cistern in|strong=\"H1961\"* which|strong=\"H4325\"* water|strong=\"H4325\"* is|strong=\"H1961\"* gathered shall|strong=\"H4325\"* be|strong=\"H1961\"* clean|strong=\"H2889\"*, but|strong=\"H1961\"* that|strong=\"H4325\"* which|strong=\"H4325\"* touches|strong=\"H5060\"* their|strong=\"H1961\"* carcass|strong=\"H5038\"* shall|strong=\"H4325\"* be|strong=\"H1961\"* unclean|strong=\"H2930\"*." + }, + { + "verseNum": 37, + "text": "If|strong=\"H3588\"* part|strong=\"H1931\"* of|strong=\"H2233\"* their|strong=\"H3605\"* carcass|strong=\"H5038\"* falls|strong=\"H5307\"* on|strong=\"H5921\"* any|strong=\"H3605\"* sowing|strong=\"H2221\"* seed|strong=\"H2233\"* which|strong=\"H1931\"* is|strong=\"H1931\"* to|strong=\"H5921\"* be|strong=\"H3588\"* sown|strong=\"H2232\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* clean|strong=\"H2889\"*." + }, + { + "verseNum": 38, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* water|strong=\"H4325\"* is|strong=\"H1931\"* put|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* seed|strong=\"H2233\"*, and|strong=\"H4325\"* part|strong=\"H1931\"* of|strong=\"H4325\"* their|strong=\"H5414\"* carcass|strong=\"H5038\"* falls|strong=\"H5307\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, it|strong=\"H5414\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"* to|strong=\"H5921\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 39, + "text": "“‘If|strong=\"H3588\"* any|strong=\"H4480\"* animal of|strong=\"H4480\"* which|strong=\"H1931\"* you|strong=\"H3588\"* may|strong=\"H5038\"* eat dies|strong=\"H4191\"*, he|strong=\"H1931\"* who|strong=\"H1931\"* touches|strong=\"H5060\"* its|strong=\"H3588\"* carcass|strong=\"H5038\"* shall|strong=\"H5038\"* be|strong=\"H4191\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3588\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 40, + "text": "He|strong=\"H5704\"* who eats of|strong=\"H5038\"* its|strong=\"H5375\"* carcass|strong=\"H5038\"* shall|strong=\"H5038\"* wash|strong=\"H3526\"* his|strong=\"H5375\"* clothes, and|strong=\"H5704\"* be|strong=\"H5375\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H5375\"* evening|strong=\"H6153\"*. He|strong=\"H5704\"* also who carries|strong=\"H5375\"* its|strong=\"H5375\"* carcass|strong=\"H5038\"* shall|strong=\"H5038\"* wash|strong=\"H3526\"* his|strong=\"H5375\"* clothes, and|strong=\"H5704\"* be|strong=\"H5375\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H5375\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 41, + "text": "“‘Every|strong=\"H3605\"* creeping|strong=\"H8318\"* thing|strong=\"H8318\"* that|strong=\"H3605\"* creeps on|strong=\"H5921\"* the|strong=\"H3605\"* earth is|strong=\"H1931\"* an|strong=\"H5921\"* abomination|strong=\"H8263\"*. It|strong=\"H1931\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* eaten." + }, + { + "verseNum": 42, + "text": "Whatever|strong=\"H3605\"* goes|strong=\"H1980\"* on|strong=\"H5921\"* its|strong=\"H3605\"* belly, and|strong=\"H1980\"* whatever|strong=\"H3605\"* goes|strong=\"H1980\"* on|strong=\"H5921\"* all|strong=\"H3605\"* fours, or|strong=\"H3808\"* whatever|strong=\"H3605\"* has|strong=\"H3588\"* many|strong=\"H7235\"* feet|strong=\"H7272\"*, even|strong=\"H5704\"* all|strong=\"H3605\"* creeping|strong=\"H8318\"* things|strong=\"H3605\"* that|strong=\"H3588\"* creep|strong=\"H8318\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth, them|strong=\"H1992\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat; for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* an|strong=\"H3588\"* abomination|strong=\"H8263\"*." + }, + { + "verseNum": 43, + "text": "You|strong=\"H3605\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* make|strong=\"H2930\"* yourselves|strong=\"H5315\"* abominable|strong=\"H8262\"* with|strong=\"H5315\"* any|strong=\"H3605\"* creeping|strong=\"H8318\"* thing|strong=\"H8318\"* that|strong=\"H3605\"* creeps. You|strong=\"H3605\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* make|strong=\"H2930\"* yourselves|strong=\"H5315\"* unclean|strong=\"H2930\"* with|strong=\"H5315\"* them|strong=\"H2930\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* should be|strong=\"H3808\"* defiled|strong=\"H2930\"* by|strong=\"H3808\"* them|strong=\"H2930\"*." + }, + { + "verseNum": 44, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. Sanctify|strong=\"H6942\"* yourselves|strong=\"H5315\"* therefore|strong=\"H5921\"*, and|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6918\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* holy|strong=\"H6918\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* defile|strong=\"H2930\"* yourselves|strong=\"H5315\"* with|strong=\"H3068\"* any|strong=\"H3605\"* kind of|strong=\"H3068\"* creeping|strong=\"H8318\"* thing|strong=\"H8318\"* that|strong=\"H3588\"* moves|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 45, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* brought|strong=\"H5927\"* you|strong=\"H3588\"* up|strong=\"H5927\"* out|strong=\"H5927\"* of|strong=\"H3068\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, to|strong=\"H3068\"* be|strong=\"H1961\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* therefore|strong=\"H3588\"* be|strong=\"H1961\"* holy|strong=\"H6918\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* holy|strong=\"H6918\"*." + }, + { + "verseNum": 46, + "text": "“‘This|strong=\"H2063\"* is|strong=\"H5315\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H4325\"* the|strong=\"H3605\"* animal|strong=\"H2416\"*, and|strong=\"H4325\"* of|strong=\"H4325\"* the|strong=\"H3605\"* bird|strong=\"H5775\"*, and|strong=\"H4325\"* of|strong=\"H4325\"* every|strong=\"H3605\"* living|strong=\"H2416\"* creature|strong=\"H5315\"* that|strong=\"H3605\"* moves|strong=\"H7430\"* in|strong=\"H5921\"* the|strong=\"H3605\"* waters|strong=\"H4325\"*, and|strong=\"H4325\"* of|strong=\"H4325\"* every|strong=\"H3605\"* creature|strong=\"H5315\"* that|strong=\"H3605\"* creeps|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth," + }, + { + "verseNum": 47, + "text": "to|strong=\"H3808\"* make a|strong=\"H3068\"* distinction between the|strong=\"H3808\"* unclean|strong=\"H2931\"* and|strong=\"H2416\"* the|strong=\"H3808\"* clean|strong=\"H2889\"*, and|strong=\"H2416\"* between the|strong=\"H3808\"* living|strong=\"H2416\"* thing|strong=\"H2416\"* that|strong=\"H2416\"* may|strong=\"H2889\"* be|strong=\"H3808\"* eaten and|strong=\"H2416\"* the|strong=\"H3808\"* living|strong=\"H2416\"* thing|strong=\"H2416\"* that|strong=\"H2416\"* may|strong=\"H2889\"* not|strong=\"H3808\"* be|strong=\"H3808\"* eaten.’”" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘If|strong=\"H3588\"* a|strong=\"H3068\"* woman|strong=\"H3205\"* conceives, and|strong=\"H1121\"* bears|strong=\"H3205\"* a|strong=\"H3068\"* male|strong=\"H2145\"* child|strong=\"H1121\"*, then|strong=\"H1696\"* she|strong=\"H3588\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* unclean|strong=\"H2930\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*; as|strong=\"H3117\"* in|strong=\"H3478\"* the|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H1121\"* her|strong=\"H3205\"* monthly period|strong=\"H3117\"* she|strong=\"H3588\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* unclean|strong=\"H2930\"*." + }, + { + "verseNum": 3, + "text": "In|strong=\"H3117\"* the|strong=\"H3117\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* the|strong=\"H3117\"* flesh|strong=\"H1320\"* of|strong=\"H3117\"* his|strong=\"H3117\"* foreskin|strong=\"H6190\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* circumcised|strong=\"H4135\"*." + }, + { + "verseNum": 4, + "text": "She|strong=\"H5704\"* shall|strong=\"H3117\"* continue|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H3117\"* purification|strong=\"H2893\"* thirty-three|strong=\"H7970\"* days|strong=\"H3117\"*. She|strong=\"H5704\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* touch|strong=\"H5060\"* any|strong=\"H3605\"* holy|strong=\"H6944\"* thing|strong=\"H6944\"*, nor|strong=\"H3808\"* come|strong=\"H5060\"* into|strong=\"H5704\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, until|strong=\"H5704\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* her|strong=\"H3605\"* purifying|strong=\"H2893\"* are|strong=\"H3117\"* completed|strong=\"H4390\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H3117\"* if she|strong=\"H5921\"* bears|strong=\"H3205\"* a|strong=\"H3068\"* female|strong=\"H5347\"* child|strong=\"H3205\"*, then|strong=\"H3117\"* she|strong=\"H5921\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* unclean|strong=\"H2930\"* two|strong=\"H3427\"* weeks|strong=\"H7620\"*, as|strong=\"H3117\"* in|strong=\"H3427\"* her|strong=\"H5921\"* period|strong=\"H3117\"*; and|strong=\"H3117\"* she|strong=\"H5921\"* shall|strong=\"H3117\"* continue|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H3117\"* purification|strong=\"H2893\"* sixty-six|strong=\"H8346\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 6, + "text": "“‘When|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H1121\"* her|strong=\"H4390\"* purification|strong=\"H2893\"* are|strong=\"H3117\"* completed|strong=\"H4390\"* for|strong=\"H3117\"* a|strong=\"H3068\"* son|strong=\"H1121\"* or|strong=\"H3117\"* for|strong=\"H3117\"* a|strong=\"H3068\"* daughter|strong=\"H1323\"*, she shall|strong=\"H3548\"* bring|strong=\"H1323\"* to|strong=\"H3117\"* the|strong=\"H3117\"* priest|strong=\"H3548\"* at|strong=\"H3117\"* the|strong=\"H3117\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H3117\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* lamb|strong=\"H3532\"* for|strong=\"H3117\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* young|strong=\"H1121\"* pigeon|strong=\"H3123\"* or|strong=\"H3117\"* a|strong=\"H3068\"* turtledove|strong=\"H8449\"*, for|strong=\"H3117\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* it|strong=\"H5921\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* her|strong=\"H5921\"*; then|strong=\"H7126\"* she|strong=\"H2063\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* cleansed|strong=\"H2891\"* from|strong=\"H6440\"* the|strong=\"H6440\"* fountain|strong=\"H4726\"* of|strong=\"H3068\"* her|strong=\"H5921\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 8, + "text": "If|strong=\"H1121\"* she|strong=\"H5921\"* cannot|strong=\"H3808\"* afford|strong=\"H3027\"* a|strong=\"H3068\"* lamb|strong=\"H7716\"*, then|strong=\"H3947\"* she|strong=\"H5921\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* two|strong=\"H8147\"* turtledoves|strong=\"H8449\"* or|strong=\"H3808\"* two|strong=\"H8147\"* young|strong=\"H1121\"* pigeons|strong=\"H3123\"*: the|strong=\"H5921\"* one|strong=\"H3808\"* for|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* other|strong=\"H8147\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*. The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* her|strong=\"H3947\"*, and|strong=\"H1121\"* she|strong=\"H5921\"* shall|strong=\"H3548\"* be|strong=\"H3808\"* clean|strong=\"H2891\"*.’”" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H1696\"* Aaron, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“When|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1121\"* shall|strong=\"H3548\"* have|strong=\"H1961\"* a|strong=\"H3068\"* swelling|strong=\"H7613\"* in|strong=\"H1320\"* his|strong=\"H1961\"* body|strong=\"H1320\"*’s skin|strong=\"H5785\"*, or|strong=\"H1121\"* a|strong=\"H3068\"* scab|strong=\"H5597\"*, or|strong=\"H1121\"* a|strong=\"H3068\"* bright|strong=\"H1320\"* spot, and|strong=\"H1121\"* it|strong=\"H3588\"* becomes|strong=\"H1961\"* in|strong=\"H1320\"* the|strong=\"H3588\"* skin|strong=\"H5785\"* of|strong=\"H1121\"* his|strong=\"H1961\"* body|strong=\"H1320\"* the|strong=\"H3588\"* plague|strong=\"H5061\"* of|strong=\"H1121\"* leprosy|strong=\"H6883\"*, then|strong=\"H1961\"* he|strong=\"H3588\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* brought|strong=\"H3548\"* to|strong=\"H1961\"* Aaron the|strong=\"H3588\"* priest|strong=\"H3548\"* or|strong=\"H1121\"* to|strong=\"H1961\"* one|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H1961\"* sons|strong=\"H1121\"*, the|strong=\"H3588\"* priests|strong=\"H3548\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine the|strong=\"H7200\"* plague|strong=\"H5061\"* in|strong=\"H1320\"* the|strong=\"H7200\"* skin|strong=\"H5785\"* of|strong=\"H5061\"* the|strong=\"H7200\"* body|strong=\"H1320\"*. If|strong=\"H7200\"* the|strong=\"H7200\"* hair|strong=\"H8181\"* in|strong=\"H1320\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* has|strong=\"H5061\"* turned|strong=\"H2015\"* white|strong=\"H3836\"*, and|strong=\"H3548\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H5061\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* is|strong=\"H1931\"* deeper|strong=\"H6013\"* than|strong=\"H6013\"* the|strong=\"H7200\"* body|strong=\"H1320\"*’s skin|strong=\"H5785\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* of|strong=\"H5061\"* leprosy|strong=\"H6883\"*; so|strong=\"H7200\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine him|strong=\"H7200\"* and|strong=\"H3548\"* pronounce|strong=\"H2930\"* him|strong=\"H7200\"* unclean|strong=\"H2930\"*." + }, + { + "verseNum": 4, + "text": "If|strong=\"H1931\"* the|strong=\"H4480\"* bright|strong=\"H3836\"* spot is|strong=\"H1931\"* white|strong=\"H3836\"* in|strong=\"H3117\"* the|strong=\"H4480\"* skin|strong=\"H5785\"* of|strong=\"H3117\"* his|strong=\"H4480\"* body|strong=\"H1320\"*, and|strong=\"H3117\"* its|strong=\"H2015\"* appearance|strong=\"H4758\"* isn’t deeper|strong=\"H6013\"* than|strong=\"H4480\"* the|strong=\"H4480\"* skin|strong=\"H5785\"*, and|strong=\"H3117\"* its|strong=\"H2015\"* hair|strong=\"H8181\"* hasn’t turned|strong=\"H2015\"* white|strong=\"H3836\"*, then|strong=\"H3808\"* the|strong=\"H4480\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* isolate|strong=\"H5462\"* the|strong=\"H4480\"* infected person|strong=\"H1320\"* for|strong=\"H3117\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine him|strong=\"H7200\"* on|strong=\"H3117\"* the|strong=\"H7200\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*. Behold|strong=\"H2009\"*, if|strong=\"H2009\"* in|strong=\"H3117\"* his|strong=\"H7200\"* eyes|strong=\"H5869\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* is|strong=\"H3117\"* arrested and|strong=\"H3117\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* hasn’t spread|strong=\"H6581\"* in|strong=\"H3117\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* isolate|strong=\"H5462\"* him|strong=\"H7200\"* for|strong=\"H3117\"* seven|strong=\"H7651\"* more|strong=\"H8145\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine him|strong=\"H7200\"* again|strong=\"H8145\"* on|strong=\"H3117\"* the|strong=\"H7200\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*. Behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* has|strong=\"H5061\"* faded|strong=\"H3544\"* and|strong=\"H3117\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* hasn’t spread|strong=\"H6581\"* in|strong=\"H3117\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2891\"* him|strong=\"H7200\"* clean|strong=\"H2891\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* scab|strong=\"H4556\"*. He|strong=\"H1931\"* shall|strong=\"H3548\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes, and|strong=\"H3117\"* be|strong=\"H3808\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"H7200\"* if|strong=\"H7200\"* the|strong=\"H7200\"* scab|strong=\"H4556\"* spreads|strong=\"H6581\"* on|strong=\"H7200\"* the|strong=\"H7200\"* skin|strong=\"H5785\"* after|strong=\"H8145\"* he|strong=\"H5785\"* has|strong=\"H3548\"* shown|strong=\"H7200\"* himself to|strong=\"H7200\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* for|strong=\"H5785\"* his|strong=\"H7200\"* cleansing|strong=\"H2893\"*, he|strong=\"H5785\"* shall|strong=\"H3548\"* show|strong=\"H7200\"* himself to|strong=\"H7200\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* again|strong=\"H8145\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine him|strong=\"H7200\"*; and|strong=\"H3548\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* scab|strong=\"H4556\"* has|strong=\"H2009\"* spread|strong=\"H6581\"* on|strong=\"H7200\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2930\"* him|strong=\"H7200\"* unclean|strong=\"H2930\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* leprosy|strong=\"H6883\"*." + }, + { + "verseNum": 9, + "text": "“When|strong=\"H3588\"* the|strong=\"H3588\"* plague|strong=\"H5061\"* of|strong=\"H5061\"* leprosy|strong=\"H6883\"* is|strong=\"H1961\"* in|strong=\"H1961\"* a|strong=\"H3068\"* man, then|strong=\"H1961\"* he|strong=\"H3588\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* brought|strong=\"H3548\"* to|strong=\"H1961\"* the|strong=\"H3588\"* priest|strong=\"H3548\"*;" + }, + { + "verseNum": 10, + "text": "and|strong=\"H3548\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine him|strong=\"H7200\"*. Behold|strong=\"H2009\"*, if|strong=\"H2009\"* there|strong=\"H2009\"* is|strong=\"H1931\"* a|strong=\"H3068\"* white|strong=\"H3836\"* swelling|strong=\"H7613\"* in|strong=\"H1320\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, and|strong=\"H3548\"* it|strong=\"H1931\"* has|strong=\"H2009\"* turned|strong=\"H2015\"* the|strong=\"H7200\"* hair|strong=\"H8181\"* white|strong=\"H3836\"*, and|strong=\"H3548\"* there|strong=\"H2009\"* is|strong=\"H1931\"* raw|strong=\"H2416\"* flesh|strong=\"H1320\"* in|strong=\"H1320\"* the|strong=\"H7200\"* swelling|strong=\"H7613\"*," + }, + { + "verseNum": 11, + "text": "it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* chronic|strong=\"H3462\"* leprosy|strong=\"H6883\"* in|strong=\"H1320\"* the|strong=\"H3588\"* skin|strong=\"H5785\"* of|strong=\"H3548\"* his|strong=\"H3588\"* body|strong=\"H1320\"*, and|strong=\"H3548\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2930\"* him|strong=\"H2930\"* unclean|strong=\"H2931\"*. He|strong=\"H1931\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* isolate|strong=\"H5462\"* him|strong=\"H2930\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* already unclean|strong=\"H2931\"*." + }, + { + "verseNum": 12, + "text": "“If the|strong=\"H3605\"* leprosy|strong=\"H6883\"* breaks|strong=\"H6524\"* out|strong=\"H3605\"* all|strong=\"H3605\"* over|strong=\"H7218\"* the|strong=\"H3605\"* skin|strong=\"H5785\"*, and|strong=\"H3548\"* the|strong=\"H3605\"* leprosy|strong=\"H6883\"* covers|strong=\"H3680\"* all|strong=\"H3605\"* the|strong=\"H3605\"* skin|strong=\"H5785\"* of|strong=\"H7218\"* the|strong=\"H3605\"* infected person|strong=\"H5869\"* from|strong=\"H5704\"* his|strong=\"H3605\"* head|strong=\"H7218\"* even|strong=\"H5704\"* to|strong=\"H5704\"* his|strong=\"H3605\"* feet|strong=\"H7272\"*, as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* it|strong=\"H3680\"* appears|strong=\"H4758\"* to|strong=\"H5704\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*," + }, + { + "verseNum": 13, + "text": "then|strong=\"H2009\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine him|strong=\"H7200\"*. Behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H3605\"* leprosy|strong=\"H6883\"* has|strong=\"H5061\"* covered|strong=\"H3680\"* all|strong=\"H3605\"* his|strong=\"H3605\"* flesh|strong=\"H1320\"*, he|strong=\"H1931\"* shall|strong=\"H3548\"* pronounce|strong=\"H2891\"* him|strong=\"H7200\"* clean|strong=\"H2889\"* of|strong=\"H3605\"* the|strong=\"H3605\"* plague|strong=\"H5061\"*. It|strong=\"H1931\"* has|strong=\"H5061\"* all|strong=\"H3605\"* turned|strong=\"H2015\"* white|strong=\"H3836\"*: he|strong=\"H1931\"* is|strong=\"H1931\"* clean|strong=\"H2889\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"H7200\"* whenever|strong=\"H3117\"* raw|strong=\"H2416\"* flesh|strong=\"H1320\"* appears|strong=\"H7200\"* in|strong=\"H3117\"* him|strong=\"H7200\"*, he|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* unclean|strong=\"H2930\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine the|strong=\"H7200\"* raw|strong=\"H2416\"* flesh|strong=\"H1320\"*, and|strong=\"H3548\"* pronounce|strong=\"H2930\"* him|strong=\"H7200\"* unclean|strong=\"H2931\"*: the|strong=\"H7200\"* raw|strong=\"H2416\"* flesh|strong=\"H1320\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* leprosy|strong=\"H6883\"*." + }, + { + "verseNum": 16, + "text": "Or|strong=\"H1320\"* if|strong=\"H3588\"* the|strong=\"H3588\"* raw|strong=\"H2416\"* flesh|strong=\"H1320\"* turns|strong=\"H7725\"* again|strong=\"H7725\"*, and|strong=\"H7725\"* is|strong=\"H1320\"* changed|strong=\"H2015\"* to|strong=\"H7725\"* white|strong=\"H3836\"*, then|strong=\"H7725\"* he|strong=\"H3588\"* shall|strong=\"H3548\"* come|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3588\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine him|strong=\"H7200\"*. Behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* has|strong=\"H5061\"* turned|strong=\"H2015\"* white|strong=\"H3836\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2891\"* him|strong=\"H7200\"* clean|strong=\"H2889\"* of|strong=\"H5061\"* the|strong=\"H7200\"* plague|strong=\"H5061\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* clean|strong=\"H2889\"*." + }, + { + "verseNum": 18, + "text": "“When|strong=\"H3588\"* the|strong=\"H3588\"* body|strong=\"H1320\"* has|strong=\"H1961\"* a|strong=\"H3068\"* boil|strong=\"H7822\"* on|strong=\"H1961\"* its|strong=\"H3588\"* skin|strong=\"H5785\"*, and|strong=\"H1320\"* it|strong=\"H3588\"* has|strong=\"H1961\"* healed|strong=\"H7495\"*," + }, + { + "verseNum": 19, + "text": "and|strong=\"H3548\"* in|strong=\"H4725\"* the|strong=\"H7200\"* place|strong=\"H4725\"* of|strong=\"H4725\"* the|strong=\"H7200\"* boil|strong=\"H7822\"* there|strong=\"H1961\"* is|strong=\"H1961\"* a|strong=\"H3068\"* white|strong=\"H3836\"* swelling|strong=\"H7613\"*, or|strong=\"H7200\"* a|strong=\"H3068\"* bright|strong=\"H3836\"* spot, reddish-white, then|strong=\"H1961\"* it|strong=\"H7200\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* shown|strong=\"H7200\"* to|strong=\"H1961\"* the|strong=\"H7200\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine it|strong=\"H1931\"*. Behold|strong=\"H2009\"*, if|strong=\"H2009\"* its|strong=\"H2015\"* appearance|strong=\"H4758\"* is|strong=\"H1931\"* deeper|strong=\"H8217\"* than|strong=\"H4480\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, and|strong=\"H3548\"* its|strong=\"H2015\"* hair|strong=\"H8181\"* has|strong=\"H5061\"* turned|strong=\"H2015\"* white|strong=\"H3836\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2930\"* him|strong=\"H7200\"* unclean|strong=\"H2930\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* of|strong=\"H4480\"* leprosy|strong=\"H6883\"*. It|strong=\"H1931\"* has|strong=\"H5061\"* broken|strong=\"H6524\"* out|strong=\"H4480\"* in|strong=\"H7200\"* the|strong=\"H7200\"* boil|strong=\"H7822\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"H7200\"* if|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* examines|strong=\"H7200\"* it|strong=\"H1931\"*, and|strong=\"H3117\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* are|strong=\"H3117\"* no|strong=\"H4480\"* white|strong=\"H3836\"* hairs|strong=\"H8181\"* in|strong=\"H3117\"* it|strong=\"H1931\"*, and|strong=\"H3117\"* it|strong=\"H1931\"* isn’t deeper|strong=\"H8217\"* than|strong=\"H4480\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, but|strong=\"H7200\"* is|strong=\"H1931\"* dim|strong=\"H3544\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* isolate|strong=\"H5462\"* him|strong=\"H7200\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 22, + "text": "If|strong=\"H1931\"* it|strong=\"H1931\"* spreads|strong=\"H6581\"* in|strong=\"H3548\"* the|strong=\"H3548\"* skin|strong=\"H5785\"*, then|strong=\"H3548\"* the|strong=\"H3548\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2930\"* him|strong=\"H2930\"* unclean|strong=\"H2930\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* plague|strong=\"H5061\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"H3808\"* if|strong=\"H1931\"* the|strong=\"H8478\"* bright spot|strong=\"H8478\"* stays|strong=\"H5975\"* in|strong=\"H5975\"* its|strong=\"H5975\"* place|strong=\"H8478\"*, and|strong=\"H3548\"* hasn’t spread|strong=\"H6581\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H8478\"* scar|strong=\"H6867\"* from|strong=\"H8478\"* the|strong=\"H8478\"* boil|strong=\"H7822\"*; and|strong=\"H3548\"* the|strong=\"H8478\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2891\"* him|strong=\"H2891\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 24, + "text": "“Or|strong=\"H1320\"* when|strong=\"H3588\"* the|strong=\"H3588\"* body|strong=\"H1320\"* has|strong=\"H1961\"* a|strong=\"H3068\"* burn|strong=\"H4348\"* from|strong=\"H1961\"* fire on|strong=\"H1961\"* its|strong=\"H3588\"* skin|strong=\"H5785\"*, and|strong=\"H1320\"* the|strong=\"H3588\"* raw|strong=\"H4241\"* flesh|strong=\"H1320\"* of|strong=\"H1320\"* the|strong=\"H3588\"* burn|strong=\"H4348\"* becomes|strong=\"H1961\"* a|strong=\"H3068\"* bright|strong=\"H3836\"* spot, reddish-white, or|strong=\"H1320\"* white|strong=\"H3836\"*," + }, + { + "verseNum": 25, + "text": "then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine it|strong=\"H1931\"*; and|strong=\"H3548\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* hair|strong=\"H8181\"* in|strong=\"H7200\"* the|strong=\"H7200\"* bright|strong=\"H3836\"* spot has|strong=\"H5061\"* turned|strong=\"H2015\"* white|strong=\"H3836\"*, and|strong=\"H3548\"* its|strong=\"H2015\"* appearance|strong=\"H4758\"* is|strong=\"H1931\"* deeper|strong=\"H6013\"* than|strong=\"H4480\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* leprosy|strong=\"H6883\"*. It|strong=\"H1931\"* has|strong=\"H5061\"* broken|strong=\"H6524\"* out|strong=\"H4480\"* in|strong=\"H7200\"* the|strong=\"H7200\"* burning|strong=\"H4348\"*, and|strong=\"H3548\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2930\"* him|strong=\"H7200\"* unclean|strong=\"H2930\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* of|strong=\"H4480\"* leprosy|strong=\"H6883\"*." + }, + { + "verseNum": 26, + "text": "But|strong=\"H7200\"* if|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* examines|strong=\"H7200\"* it|strong=\"H1931\"*, and|strong=\"H3117\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* is|strong=\"H1931\"* no|strong=\"H4480\"* white|strong=\"H3836\"* hair|strong=\"H8181\"* in|strong=\"H3117\"* the|strong=\"H7200\"* bright|strong=\"H3836\"* spot, and|strong=\"H3117\"* it|strong=\"H1931\"* isn’t deeper|strong=\"H8217\"* than|strong=\"H4480\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, but|strong=\"H7200\"* has|strong=\"H3117\"* faded|strong=\"H3544\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* isolate|strong=\"H5462\"* him|strong=\"H7200\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine him|strong=\"H7200\"* on|strong=\"H3117\"* the|strong=\"H7200\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*. If|strong=\"H7200\"* it|strong=\"H1931\"* has|strong=\"H5061\"* spread|strong=\"H6581\"* in|strong=\"H3117\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, then|strong=\"H7200\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2930\"* him|strong=\"H7200\"* unclean|strong=\"H2930\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* of|strong=\"H3117\"* leprosy|strong=\"H6883\"*." + }, + { + "verseNum": 28, + "text": "If|strong=\"H3588\"* the|strong=\"H3588\"* bright spot|strong=\"H8478\"* stays|strong=\"H5975\"* in|strong=\"H5975\"* its|strong=\"H5975\"* place|strong=\"H8478\"*, and|strong=\"H3548\"* hasn’t spread|strong=\"H6581\"* in|strong=\"H5975\"* the|strong=\"H3588\"* skin|strong=\"H5785\"*, but|strong=\"H3588\"* is|strong=\"H1931\"* faded|strong=\"H3544\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3588\"* swelling|strong=\"H7613\"* from|strong=\"H8478\"* the|strong=\"H3588\"* burn|strong=\"H4348\"*, and|strong=\"H3548\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2891\"* him|strong=\"H2891\"* clean|strong=\"H2891\"*, for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3588\"* scar|strong=\"H6867\"* from|strong=\"H8478\"* the|strong=\"H3588\"* burn|strong=\"H4348\"*." + }, + { + "verseNum": 29, + "text": "“When|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H7218\"* or|strong=\"H7218\"* woman has|strong=\"H1961\"* a|strong=\"H3068\"* plague|strong=\"H5061\"* on|strong=\"H1961\"* the|strong=\"H3588\"* head|strong=\"H7218\"* or|strong=\"H7218\"* on|strong=\"H1961\"* the|strong=\"H3588\"* beard|strong=\"H2206\"*," + }, + { + "verseNum": 30, + "text": "then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine the|strong=\"H7200\"* plague|strong=\"H5061\"*; and|strong=\"H3548\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* its|strong=\"H4480\"* appearance|strong=\"H4758\"* is|strong=\"H1931\"* deeper|strong=\"H6013\"* than|strong=\"H4480\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, and|strong=\"H3548\"* the|strong=\"H7200\"* hair|strong=\"H8181\"* in|strong=\"H7200\"* it|strong=\"H1931\"* is|strong=\"H1931\"* yellow|strong=\"H6669\"* and|strong=\"H3548\"* thin|strong=\"H1851\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2930\"* him|strong=\"H7200\"* unclean|strong=\"H2930\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* an|strong=\"H7200\"* itch. It|strong=\"H1931\"* is|strong=\"H1931\"* leprosy|strong=\"H6883\"* of|strong=\"H7218\"* the|strong=\"H7200\"* head|strong=\"H7218\"* or|strong=\"H4480\"* of|strong=\"H7218\"* the|strong=\"H7200\"* beard|strong=\"H2206\"*." + }, + { + "verseNum": 31, + "text": "If|strong=\"H3588\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* examines|strong=\"H7200\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* of|strong=\"H3117\"* itching, and|strong=\"H3117\"* behold|strong=\"H2009\"*, its|strong=\"H3588\"* appearance|strong=\"H4758\"* isn’t deeper|strong=\"H6013\"* than|strong=\"H4480\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, and|strong=\"H3117\"* there|strong=\"H2009\"* is|strong=\"H3117\"* no|strong=\"H4480\"* black|strong=\"H7838\"* hair|strong=\"H8181\"* in|strong=\"H3117\"* it|strong=\"H3588\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* isolate|strong=\"H5462\"* the|strong=\"H7200\"* person|strong=\"H7200\"* infected with|strong=\"H3117\"* itching seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 32, + "text": "On|strong=\"H3117\"* the|strong=\"H7200\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine the|strong=\"H7200\"* plague|strong=\"H5061\"*; and|strong=\"H3117\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* itch hasn’t spread|strong=\"H6581\"*, and|strong=\"H3117\"* there|strong=\"H2009\"* is|strong=\"H3117\"* no|strong=\"H3808\"* yellow|strong=\"H6669\"* hair|strong=\"H8181\"* in|strong=\"H3117\"* it|strong=\"H7200\"*, and|strong=\"H3117\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H3117\"* the|strong=\"H7200\"* itch isn’t deeper|strong=\"H6013\"* than|strong=\"H4480\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*," + }, + { + "verseNum": 33, + "text": "then|strong=\"H3808\"* he|strong=\"H3117\"* shall|strong=\"H3548\"* be|strong=\"H3808\"* shaved|strong=\"H1548\"*, but|strong=\"H3808\"* he|strong=\"H3117\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* shave|strong=\"H1548\"* the|strong=\"H3117\"* itch. Then|strong=\"H3808\"* the|strong=\"H3117\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* isolate|strong=\"H5462\"* the|strong=\"H3117\"* one|strong=\"H3808\"* who|strong=\"H3548\"* has|strong=\"H3117\"* the|strong=\"H3117\"* itch seven|strong=\"H7651\"* more|strong=\"H8145\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 34, + "text": "On|strong=\"H3117\"* the|strong=\"H7200\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine the|strong=\"H7200\"* itch; and|strong=\"H3117\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* itch hasn’t spread|strong=\"H6581\"* in|strong=\"H3117\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, and|strong=\"H3117\"* its|strong=\"H4480\"* appearance|strong=\"H4758\"* isn’t deeper|strong=\"H6013\"* than|strong=\"H4480\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2891\"* him|strong=\"H7200\"* clean|strong=\"H2891\"*. He|strong=\"H3117\"* shall|strong=\"H3548\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes and|strong=\"H3117\"* be|strong=\"H3808\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 35, + "text": "But if the itch spreads|strong=\"H6581\"* in|strong=\"H5785\"* the skin|strong=\"H5785\"* after his cleansing|strong=\"H2893\"*," + }, + { + "verseNum": 36, + "text": "then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine|strong=\"H1239\"* him|strong=\"H7200\"*; and|strong=\"H3548\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* itch has|strong=\"H2009\"* spread|strong=\"H6581\"* in|strong=\"H3808\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* look|strong=\"H7200\"* for|strong=\"H3808\"* the|strong=\"H7200\"* yellow|strong=\"H6669\"* hair|strong=\"H8181\"*; he|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"*." + }, + { + "verseNum": 37, + "text": "But|strong=\"H1931\"* if|strong=\"H1931\"* in|strong=\"H5975\"* his|strong=\"H5975\"* eyes|strong=\"H5869\"* the|strong=\"H5975\"* itch is|strong=\"H1931\"* arrested and|strong=\"H3548\"* black|strong=\"H7838\"* hair|strong=\"H8181\"* has|strong=\"H5869\"* grown|strong=\"H6779\"* in|strong=\"H5975\"* it|strong=\"H1931\"*, then|strong=\"H5975\"* the|strong=\"H5975\"* itch is|strong=\"H1931\"* healed|strong=\"H7495\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* clean|strong=\"H2889\"*. The|strong=\"H5975\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2891\"* him|strong=\"H2891\"* clean|strong=\"H2889\"*." + }, + { + "verseNum": 38, + "text": "“When|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1320\"* or|strong=\"H1320\"* a|strong=\"H3068\"* woman has|strong=\"H1961\"* bright|strong=\"H3836\"* spots in|strong=\"H1320\"* the|strong=\"H3588\"* skin|strong=\"H5785\"* of|strong=\"H1320\"* the|strong=\"H3588\"* body|strong=\"H1320\"*, even|strong=\"H3588\"* white|strong=\"H3836\"* bright|strong=\"H3836\"* spots," + }, + { + "verseNum": 39, + "text": "then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine them|strong=\"H7200\"*. Behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* bright|strong=\"H3836\"* spots on|strong=\"H7200\"* the|strong=\"H7200\"* skin|strong=\"H5785\"* of|strong=\"H3548\"* their|strong=\"H7200\"* body|strong=\"H1320\"* are|strong=\"H3548\"* a|strong=\"H3068\"* dull white|strong=\"H3836\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* harmless rash. It|strong=\"H1931\"* has|strong=\"H2009\"* broken|strong=\"H6524\"* out|strong=\"H7200\"* in|strong=\"H1320\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* clean|strong=\"H2889\"*." + }, + { + "verseNum": 40, + "text": "“If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H7218\"*’s hair|strong=\"H7218\"* has|strong=\"H3588\"* fallen|strong=\"H4803\"* from|strong=\"H7218\"* his|strong=\"H3588\"* head|strong=\"H7218\"*, he|strong=\"H1931\"* is|strong=\"H1931\"* bald|strong=\"H7142\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* clean|strong=\"H2889\"*." + }, + { + "verseNum": 41, + "text": "If|strong=\"H1931\"* his|strong=\"H6440\"* hair|strong=\"H7218\"* has|strong=\"H1931\"* fallen|strong=\"H4803\"* off|strong=\"H4803\"* from|strong=\"H6440\"* the|strong=\"H6440\"* front|strong=\"H6440\"* part|strong=\"H7218\"* of|strong=\"H7218\"* his|strong=\"H6440\"* head|strong=\"H7218\"*, his|strong=\"H6440\"* forehead|strong=\"H6285\"* is|strong=\"H1931\"* bald|strong=\"H1371\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* clean|strong=\"H2889\"*." + }, + { + "verseNum": 42, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* a|strong=\"H3068\"* reddish-white plague|strong=\"H5061\"* is|strong=\"H1931\"* in|strong=\"H1961\"* the|strong=\"H3588\"* bald|strong=\"H1372\"* head|strong=\"H7146\"* or|strong=\"H5061\"* the|strong=\"H3588\"* bald|strong=\"H1372\"* forehead|strong=\"H1372\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* leprosy|strong=\"H6883\"* breaking|strong=\"H6524\"* out|strong=\"H6524\"* in|strong=\"H1961\"* his|strong=\"H1961\"* bald|strong=\"H1372\"* head|strong=\"H7146\"* or|strong=\"H5061\"* his|strong=\"H1961\"* bald|strong=\"H1372\"* forehead|strong=\"H1372\"*." + }, + { + "verseNum": 43, + "text": "Then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine him|strong=\"H7200\"*. Behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* swelling|strong=\"H7613\"* of|strong=\"H5061\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* is|strong=\"H2009\"* reddish-white in|strong=\"H1320\"* his|strong=\"H7200\"* bald|strong=\"H1372\"* head|strong=\"H7146\"*, or|strong=\"H7200\"* in|strong=\"H1320\"* his|strong=\"H7200\"* bald|strong=\"H1372\"* forehead|strong=\"H1372\"*, like|strong=\"H4758\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H5061\"* leprosy|strong=\"H6883\"* in|strong=\"H1320\"* the|strong=\"H7200\"* skin|strong=\"H5785\"* of|strong=\"H5061\"* the|strong=\"H7200\"* body|strong=\"H1320\"*," + }, + { + "verseNum": 44, + "text": "he|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* leprous|strong=\"H6879\"* man|strong=\"H7218\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"*. The|strong=\"H3548\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* surely|strong=\"H2930\"* pronounce|strong=\"H2930\"* him|strong=\"H2930\"* unclean|strong=\"H2931\"*. His|strong=\"H2930\"* plague|strong=\"H5061\"* is|strong=\"H1931\"* on|strong=\"H7218\"* his|strong=\"H2930\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 45, + "text": "“The|strong=\"H5921\"* leper|strong=\"H6879\"* in|strong=\"H5921\"* whom|strong=\"H7121\"* the|strong=\"H5921\"* plague|strong=\"H5061\"* is|strong=\"H1961\"* shall|strong=\"H7218\"* wear|strong=\"H1961\"* torn|strong=\"H6533\"* clothes, and|strong=\"H7218\"* the|strong=\"H5921\"* hair|strong=\"H7218\"* of|strong=\"H7218\"* his|strong=\"H7121\"* head|strong=\"H7218\"* shall|strong=\"H7218\"* hang loose|strong=\"H5921\"*. He|strong=\"H5921\"* shall|strong=\"H7218\"* cover|strong=\"H5844\"* his|strong=\"H7121\"* upper lip|strong=\"H8222\"*, and|strong=\"H7218\"* shall|strong=\"H7218\"* cry|strong=\"H7121\"*, ‘Unclean|strong=\"H2931\"*! Unclean|strong=\"H2931\"*!’" + }, + { + "verseNum": 46, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* in|strong=\"H3427\"* which|strong=\"H1931\"* the|strong=\"H3605\"* plague|strong=\"H5061\"* is|strong=\"H1931\"* in|strong=\"H3427\"* him|strong=\"H2930\"* he|strong=\"H1931\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* unclean|strong=\"H2931\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"*. He|strong=\"H1931\"* shall|strong=\"H3117\"* dwell|strong=\"H3427\"* alone|strong=\"H1931\"*. His|strong=\"H3605\"* dwelling|strong=\"H3427\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* outside|strong=\"H2351\"* of|strong=\"H3117\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 47, + "text": "“The|strong=\"H3588\"* garment also|strong=\"H3588\"* that|strong=\"H3588\"* the|strong=\"H3588\"* plague|strong=\"H5061\"* of|strong=\"H5061\"* leprosy|strong=\"H6883\"* is|strong=\"H1961\"* in|strong=\"H1961\"*, whether it|strong=\"H3588\"* is|strong=\"H1961\"* a|strong=\"H3068\"* woolen garment, or|strong=\"H5061\"* a|strong=\"H3068\"* linen|strong=\"H6593\"* garment;" + }, + { + "verseNum": 48, + "text": "whether it|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H4399\"* warp|strong=\"H8359\"* or|strong=\"H6785\"* woof|strong=\"H6154\"*;+ 13:48 warp and woof are the vertical and horizontal threads in woven cloth* of|strong=\"H3605\"* linen|strong=\"H6593\"* or|strong=\"H6785\"* of|strong=\"H3605\"* wool|strong=\"H6785\"*; whether in|strong=\"H4399\"* leather|strong=\"H5785\"*, or|strong=\"H6785\"* in|strong=\"H4399\"* anything|strong=\"H3605\"* made|strong=\"H4399\"* of|strong=\"H3605\"* leather|strong=\"H5785\"*;" + }, + { + "verseNum": 49, + "text": "if|strong=\"H7200\"* the|strong=\"H3605\"* plague|strong=\"H5061\"* is|strong=\"H1931\"* greenish|strong=\"H3422\"* or|strong=\"H7200\"* reddish in|strong=\"H7200\"* the|strong=\"H3605\"* garment, or|strong=\"H7200\"* in|strong=\"H7200\"* the|strong=\"H3605\"* leather|strong=\"H5785\"*, or|strong=\"H7200\"* in|strong=\"H7200\"* the|strong=\"H3605\"* warp|strong=\"H8359\"*, or|strong=\"H7200\"* in|strong=\"H7200\"* the|strong=\"H3605\"* woof|strong=\"H6154\"*, or|strong=\"H7200\"* in|strong=\"H7200\"* anything|strong=\"H3605\"* made|strong=\"H1961\"* of|strong=\"H3627\"* leather|strong=\"H5785\"*; it|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* plague|strong=\"H5061\"* of|strong=\"H3627\"* leprosy|strong=\"H6883\"*, and|strong=\"H3548\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* shown|strong=\"H7200\"* to|strong=\"H1961\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 50, + "text": "The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine the|strong=\"H7200\"* plague|strong=\"H5061\"*, and|strong=\"H3117\"* isolate|strong=\"H5462\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 51, + "text": "He|strong=\"H1931\"* shall|strong=\"H3117\"* examine the|strong=\"H3605\"* plague|strong=\"H5061\"* on|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*. If|strong=\"H3588\"* the|strong=\"H3605\"* plague|strong=\"H5061\"* has|strong=\"H5061\"* spread|strong=\"H6581\"* in|strong=\"H6213\"* the|strong=\"H3605\"* garment, either|strong=\"H3588\"* in|strong=\"H6213\"* the|strong=\"H3605\"* warp|strong=\"H8359\"*, or|strong=\"H3117\"* in|strong=\"H6213\"* the|strong=\"H3605\"* woof|strong=\"H6154\"*, or|strong=\"H3117\"* in|strong=\"H6213\"* the|strong=\"H3605\"* skin|strong=\"H5785\"*, whatever|strong=\"H3605\"* use|strong=\"H4399\"* the|strong=\"H3605\"* skin|strong=\"H5785\"* is|strong=\"H1931\"* used|strong=\"H6213\"* for|strong=\"H3588\"*, the|strong=\"H3605\"* plague|strong=\"H5061\"* is|strong=\"H1931\"* a|strong=\"H3068\"* destructive mildew. It|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"*." + }, + { + "verseNum": 52, + "text": "He|strong=\"H1931\"* shall|strong=\"H1931\"* burn|strong=\"H8313\"* the|strong=\"H3605\"* garment, whether the|strong=\"H3605\"* warp|strong=\"H8359\"* or|strong=\"H5061\"* the|strong=\"H3605\"* woof|strong=\"H6154\"*, in|strong=\"H1961\"* wool|strong=\"H6785\"* or|strong=\"H5061\"* in|strong=\"H1961\"* linen|strong=\"H6593\"*, or|strong=\"H5061\"* anything|strong=\"H3605\"* of|strong=\"H3627\"* leather|strong=\"H5785\"*, in|strong=\"H1961\"* which|strong=\"H1931\"* the|strong=\"H3605\"* plague|strong=\"H5061\"* is|strong=\"H1931\"*, for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* destructive mildew. It|strong=\"H1931\"* shall|strong=\"H1931\"* be|strong=\"H1961\"* burned|strong=\"H8313\"* in|strong=\"H1961\"* the|strong=\"H3605\"* fire." + }, + { + "verseNum": 53, + "text": "“If|strong=\"H2009\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* examines|strong=\"H7200\"* it|strong=\"H7200\"*, and|strong=\"H3548\"* behold|strong=\"H2009\"*, the|strong=\"H3605\"* plague|strong=\"H5061\"* hasn’t spread|strong=\"H6581\"* in|strong=\"H3808\"* the|strong=\"H3605\"* garment, either|strong=\"H3808\"* in|strong=\"H3808\"* the|strong=\"H3605\"* warp|strong=\"H8359\"*, or|strong=\"H3808\"* in|strong=\"H3808\"* the|strong=\"H3605\"* woof|strong=\"H6154\"*, or|strong=\"H3808\"* in|strong=\"H3808\"* anything|strong=\"H3605\"* of|strong=\"H3627\"* skin|strong=\"H5785\"*;" + }, + { + "verseNum": 54, + "text": "then|strong=\"H6680\"* the|strong=\"H3117\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* command|strong=\"H6680\"* that|strong=\"H3117\"* they|strong=\"H3117\"* wash|strong=\"H3526\"* the|strong=\"H3117\"* thing|strong=\"H8145\"* that|strong=\"H3117\"* the|strong=\"H3117\"* plague|strong=\"H5061\"* is|strong=\"H3117\"* in|strong=\"H3117\"*, and|strong=\"H3117\"* he|strong=\"H3117\"* shall|strong=\"H3548\"* isolate|strong=\"H5462\"* it|strong=\"H3117\"* seven|strong=\"H7651\"* more|strong=\"H8145\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 55, + "text": "Then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine it|strong=\"H1931\"*, after|strong=\"H7200\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* is|strong=\"H1931\"* washed|strong=\"H3526\"*; and|strong=\"H3548\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* hasn’t changed|strong=\"H2015\"* its|strong=\"H2015\"* color, and|strong=\"H3548\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* hasn’t spread|strong=\"H6581\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"*; you|strong=\"H3808\"* shall|strong=\"H3548\"* burn|strong=\"H8313\"* it|strong=\"H1931\"* in|strong=\"H3808\"* the|strong=\"H7200\"* fire. It|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* mildewed spot, whether|strong=\"H7200\"* the|strong=\"H7200\"* bareness|strong=\"H7146\"* is|strong=\"H1931\"* inside or|strong=\"H3808\"* outside." + }, + { + "verseNum": 56, + "text": "If|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* looks|strong=\"H7200\"*, and|strong=\"H3548\"* behold|strong=\"H2009\"*, the|strong=\"H7200\"* plague|strong=\"H5061\"* has|strong=\"H5061\"* faded|strong=\"H3544\"* after|strong=\"H4480\"* it|strong=\"H7200\"* is|strong=\"H2009\"* washed|strong=\"H3526\"*, then|strong=\"H2009\"* he|strong=\"H4480\"* shall|strong=\"H3548\"* tear|strong=\"H7167\"* it|strong=\"H7200\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H7200\"* garment, or|strong=\"H4480\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, or|strong=\"H4480\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H7200\"* warp|strong=\"H8359\"*, or|strong=\"H4480\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H7200\"* woof|strong=\"H6154\"*;" + }, + { + "verseNum": 57, + "text": "and|strong=\"H7200\"* if|strong=\"H7200\"* it|strong=\"H1931\"* appears|strong=\"H7200\"* again|strong=\"H5750\"* in|strong=\"H5750\"* the|strong=\"H3605\"* garment, either in|strong=\"H5750\"* the|strong=\"H3605\"* warp|strong=\"H8359\"*, or|strong=\"H7200\"* in|strong=\"H5750\"* the|strong=\"H3605\"* woof|strong=\"H6154\"*, or|strong=\"H7200\"* in|strong=\"H5750\"* anything|strong=\"H3605\"* of|strong=\"H3627\"* skin|strong=\"H5785\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* spreading|strong=\"H6524\"*. You|strong=\"H3605\"* shall|strong=\"H1931\"* burn|strong=\"H8313\"* what|strong=\"H7200\"* the|strong=\"H3605\"* plague|strong=\"H5061\"* is|strong=\"H1931\"* in|strong=\"H5750\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 58, + "text": "The|strong=\"H3605\"* garment, either|strong=\"H8145\"* the|strong=\"H3605\"* warp|strong=\"H8359\"*, or|strong=\"H5061\"* the|strong=\"H3605\"* woof|strong=\"H6154\"*, or|strong=\"H5061\"* whatever|strong=\"H3605\"* thing|strong=\"H3627\"* of|strong=\"H3627\"* skin|strong=\"H5785\"* it|strong=\"H3627\"* is|strong=\"H3605\"*, which|strong=\"H1992\"* you|strong=\"H3605\"* shall|strong=\"H2891\"* wash|strong=\"H3526\"*, if the|strong=\"H3605\"* plague|strong=\"H5061\"* has|strong=\"H5061\"* departed|strong=\"H5493\"* from|strong=\"H5493\"* them|strong=\"H1992\"*, then|strong=\"H3605\"* it|strong=\"H3627\"* shall|strong=\"H2891\"* be|strong=\"H5061\"* washed|strong=\"H3526\"* the|strong=\"H3605\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, and|strong=\"H3627\"* it|strong=\"H3627\"* will|strong=\"H1992\"* be|strong=\"H5061\"* clean|strong=\"H2891\"*.”" + }, + { + "verseNum": 59, + "text": "This|strong=\"H2063\"* is|strong=\"H3605\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H3627\"* the|strong=\"H3605\"* plague|strong=\"H5061\"* of|strong=\"H3627\"* mildew in|strong=\"H3627\"* a|strong=\"H3068\"* garment of|strong=\"H3627\"* wool|strong=\"H6785\"* or|strong=\"H5061\"* linen|strong=\"H6593\"*, either in|strong=\"H3627\"* the|strong=\"H3605\"* warp|strong=\"H8359\"*, or|strong=\"H5061\"* the|strong=\"H3605\"* woof|strong=\"H6154\"*, or|strong=\"H5061\"* in|strong=\"H3627\"* anything|strong=\"H3605\"* of|strong=\"H3627\"* skin|strong=\"H5785\"*, to|strong=\"H3627\"* pronounce|strong=\"H2930\"* it|strong=\"H2930\"* clean|strong=\"H2891\"*, or|strong=\"H5061\"* to|strong=\"H3627\"* pronounce|strong=\"H2930\"* it|strong=\"H2930\"* unclean|strong=\"H2930\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“This|strong=\"H2063\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* the|strong=\"H3117\"* law|strong=\"H8451\"* of|strong=\"H3117\"* the|strong=\"H3117\"* leper|strong=\"H6879\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H1961\"* cleansing|strong=\"H2893\"*: He|strong=\"H3117\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* brought|strong=\"H3548\"* to|strong=\"H1961\"* the|strong=\"H3117\"* priest|strong=\"H3548\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H3548\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* go|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4480\"* the|strong=\"H7200\"* camp|strong=\"H4264\"*. The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine him|strong=\"H7200\"*. Behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* of|strong=\"H4480\"* leprosy|strong=\"H6883\"* is|strong=\"H2009\"* healed|strong=\"H7495\"* in|strong=\"H7200\"* the|strong=\"H7200\"* leper|strong=\"H6879\"*," + }, + { + "verseNum": 4, + "text": "then|strong=\"H3947\"* the|strong=\"H3947\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* command|strong=\"H6680\"* them|strong=\"H6680\"* to|strong=\"H6680\"* take|strong=\"H3947\"* for|strong=\"H6086\"* him|strong=\"H3947\"* who|strong=\"H3548\"* is|strong=\"H2416\"* to|strong=\"H6680\"* be|strong=\"H6086\"* cleansed|strong=\"H2891\"* two|strong=\"H8147\"* living|strong=\"H2416\"* clean|strong=\"H2889\"* birds|strong=\"H6833\"*, cedar wood|strong=\"H6086\"*, scarlet|strong=\"H8144\"*, and|strong=\"H6086\"* hyssop." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* command|strong=\"H6680\"* them|strong=\"H5921\"* to|strong=\"H5921\"* kill|strong=\"H7819\"* one|strong=\"H2416\"* of|strong=\"H3627\"* the|strong=\"H5921\"* birds|strong=\"H6833\"* in|strong=\"H5921\"* an|strong=\"H7819\"* earthen|strong=\"H2789\"* vessel|strong=\"H3627\"* over|strong=\"H5921\"* running|strong=\"H2416\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 6, + "text": "As|strong=\"H4325\"* for|strong=\"H5921\"* the|strong=\"H5921\"* living|strong=\"H2416\"* bird|strong=\"H6833\"*, he|strong=\"H5921\"* shall|strong=\"H4325\"* take|strong=\"H3947\"* it|strong=\"H5921\"*, the|strong=\"H5921\"* cedar wood|strong=\"H6086\"*, the|strong=\"H5921\"* scarlet|strong=\"H8144\"*, and|strong=\"H6086\"* the|strong=\"H5921\"* hyssop, and|strong=\"H6086\"* shall|strong=\"H4325\"* dip|strong=\"H2881\"* them|strong=\"H5921\"* and|strong=\"H6086\"* the|strong=\"H5921\"* living|strong=\"H2416\"* bird|strong=\"H6833\"* in|strong=\"H5921\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H4325\"* the|strong=\"H5921\"* bird|strong=\"H6833\"* that|strong=\"H4325\"* was|strong=\"H4325\"* killed|strong=\"H7819\"* over|strong=\"H5921\"* the|strong=\"H5921\"* running|strong=\"H2416\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H4480\"* shall|strong=\"H7704\"* sprinkle|strong=\"H5137\"* on|strong=\"H5921\"* him|strong=\"H6440\"* who|strong=\"H2416\"* is|strong=\"H6440\"* to|strong=\"H7971\"* be|strong=\"H6440\"* cleansed|strong=\"H2891\"* from|strong=\"H4480\"* the|strong=\"H6440\"* leprosy|strong=\"H6883\"* seven|strong=\"H7651\"* times|strong=\"H6471\"*, and|strong=\"H7971\"* shall|strong=\"H7704\"* pronounce|strong=\"H2891\"* him|strong=\"H6440\"* clean|strong=\"H2891\"*, and|strong=\"H7971\"* shall|strong=\"H7704\"* let|strong=\"H7971\"* the|strong=\"H6440\"* living|strong=\"H2416\"* bird|strong=\"H6833\"* go|strong=\"H7971\"* into|strong=\"H5921\"* the|strong=\"H6440\"* open|strong=\"H6440\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 8, + "text": "“He|strong=\"H3117\"* who|strong=\"H3605\"* is|strong=\"H3117\"* to|strong=\"H3117\"* be|strong=\"H3117\"* cleansed|strong=\"H2891\"* shall|strong=\"H3117\"* wash|strong=\"H3526\"* his|strong=\"H3605\"* clothes, and|strong=\"H3117\"* shave|strong=\"H1548\"* off|strong=\"H1548\"* all|strong=\"H3605\"* his|strong=\"H3605\"* hair|strong=\"H8181\"*, and|strong=\"H3117\"* bathe|strong=\"H7364\"* himself|strong=\"H3427\"* in|strong=\"H3427\"* water|strong=\"H4325\"*; and|strong=\"H3117\"* he|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* clean|strong=\"H2891\"*. After|strong=\"H3117\"* that|strong=\"H3605\"* he|strong=\"H3117\"* shall|strong=\"H3117\"* come into|strong=\"H4325\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*, but|strong=\"H3605\"* shall|strong=\"H3117\"* dwell|strong=\"H3427\"* outside|strong=\"H2351\"* his|strong=\"H3605\"* tent seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 9, + "text": "It|strong=\"H1961\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* on|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, that|strong=\"H3605\"* he|strong=\"H3117\"* shall|strong=\"H3117\"* shave|strong=\"H1548\"* all|strong=\"H3605\"* his|strong=\"H3605\"* hair|strong=\"H8181\"* off|strong=\"H1548\"* his|strong=\"H3605\"* head|strong=\"H7218\"* and|strong=\"H3117\"* his|strong=\"H3605\"* beard|strong=\"H2206\"* and|strong=\"H3117\"* his|strong=\"H3605\"* eyebrows|strong=\"H5869\"*. He|strong=\"H3117\"* shall|strong=\"H3117\"* shave|strong=\"H1548\"* off|strong=\"H1548\"* all|strong=\"H3605\"* his|strong=\"H3605\"* hair|strong=\"H8181\"*. He|strong=\"H3117\"* shall|strong=\"H3117\"* wash|strong=\"H3526\"* his|strong=\"H3605\"* clothes, and|strong=\"H3117\"* he|strong=\"H3117\"* shall|strong=\"H3117\"* bathe|strong=\"H7364\"* his|strong=\"H3605\"* body|strong=\"H1320\"* in|strong=\"H3117\"* water|strong=\"H4325\"*. Then|strong=\"H1961\"* he|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 10, + "text": "“On|strong=\"H3117\"* the|strong=\"H3947\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* he|strong=\"H3117\"* shall|strong=\"H3117\"* take|strong=\"H3947\"* two|strong=\"H8147\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*, one|strong=\"H3532\"* ewe|strong=\"H3535\"* lamb|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1323\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*, three|strong=\"H7969\"* tenths of|strong=\"H3117\"* an|strong=\"H3947\"* ephah+ 14:10 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H3117\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* for|strong=\"H3117\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, and|strong=\"H3117\"* one|strong=\"H3532\"* log|strong=\"H3849\"*+ 14:10 a log is a liquid measure of about 300 ml or 10 ounces* of|strong=\"H3117\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* who|strong=\"H3068\"* cleanses him|strong=\"H6440\"* shall|strong=\"H3548\"* set|strong=\"H5975\"* the|strong=\"H6440\"* man|strong=\"H6440\"* who|strong=\"H3068\"* is|strong=\"H3068\"* to|strong=\"H3068\"* be|strong=\"H3068\"* cleansed|strong=\"H2891\"*, and|strong=\"H3068\"* those things, before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, at|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 12, + "text": "“The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* one|strong=\"H3532\"* of|strong=\"H3068\"* the|strong=\"H6440\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"*, and|strong=\"H3068\"* offer|strong=\"H7126\"* him|strong=\"H6440\"* for|strong=\"H6440\"* a|strong=\"H3068\"* trespass offering|strong=\"H8573\"*, with|strong=\"H3068\"* the|strong=\"H6440\"* log|strong=\"H3849\"* of|strong=\"H3068\"* oil|strong=\"H8081\"*, and|strong=\"H3068\"* wave|strong=\"H8573\"* them|strong=\"H6440\"* for|strong=\"H6440\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1931\"* shall|strong=\"H3548\"* kill|strong=\"H7819\"* the|strong=\"H3588\"* male|strong=\"H3532\"* lamb|strong=\"H3532\"* in|strong=\"H4725\"* the|strong=\"H3588\"* place|strong=\"H4725\"* where|strong=\"H4725\"* they|strong=\"H3588\"* kill|strong=\"H7819\"* the|strong=\"H3588\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* and|strong=\"H3548\"* the|strong=\"H3588\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, in|strong=\"H4725\"* the|strong=\"H3588\"* place|strong=\"H4725\"* of|strong=\"H4725\"* the|strong=\"H3588\"* sanctuary|strong=\"H6944\"*; for|strong=\"H3588\"* as|strong=\"H3588\"* the|strong=\"H3588\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* is|strong=\"H1931\"* the|strong=\"H3588\"* priest|strong=\"H3548\"*’s, so|strong=\"H3588\"* is|strong=\"H1931\"* the|strong=\"H3588\"* trespass offering|strong=\"H5930\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* some|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H3027\"* the|strong=\"H5921\"* trespass offering|strong=\"H3548\"*, and|strong=\"H3027\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tip|strong=\"H8571\"* of|strong=\"H3027\"* the|strong=\"H5921\"* right|strong=\"H3233\"* ear of|strong=\"H3027\"* him|strong=\"H5414\"* who|strong=\"H3548\"* is|strong=\"H3027\"* to|strong=\"H5921\"* be|strong=\"H3027\"* cleansed|strong=\"H2891\"*, and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* thumb of|strong=\"H3027\"* his|strong=\"H5414\"* right|strong=\"H3233\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* big toe of|strong=\"H3027\"* his|strong=\"H5414\"* right|strong=\"H3233\"* foot|strong=\"H7272\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* some of|strong=\"H3709\"* the|strong=\"H5921\"* log|strong=\"H3849\"* of|strong=\"H3709\"* oil|strong=\"H8081\"*, and|strong=\"H3548\"* pour|strong=\"H3332\"* it|strong=\"H5921\"* into|strong=\"H5921\"* the|strong=\"H5921\"* palm|strong=\"H3709\"* of|strong=\"H3709\"* his|strong=\"H3947\"* own|strong=\"H3548\"* left|strong=\"H8042\"* hand|strong=\"H3709\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* dip|strong=\"H2881\"* his|strong=\"H3068\"* right|strong=\"H3233\"* finger in|strong=\"H5921\"* the|strong=\"H6440\"* oil|strong=\"H8081\"* that|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H5921\"* his|strong=\"H3068\"* left|strong=\"H8042\"* hand|strong=\"H3709\"*, and|strong=\"H3068\"* shall|strong=\"H3548\"* sprinkle|strong=\"H5137\"* some|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H6440\"* oil|strong=\"H8081\"* with|strong=\"H3068\"* his|strong=\"H3068\"* finger seven|strong=\"H7651\"* times|strong=\"H6471\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* put|strong=\"H5414\"* some|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H3027\"* the|strong=\"H5921\"* oil|strong=\"H8081\"* that|strong=\"H5414\"* is|strong=\"H3027\"* in|strong=\"H5921\"* his|strong=\"H5414\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tip|strong=\"H8571\"* of|strong=\"H3027\"* the|strong=\"H5921\"* right|strong=\"H3233\"* ear of|strong=\"H3027\"* him|strong=\"H5414\"* who|strong=\"H3548\"* is|strong=\"H3027\"* to|strong=\"H5921\"* be|strong=\"H3027\"* cleansed|strong=\"H2891\"*, and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* thumb of|strong=\"H3027\"* his|strong=\"H5414\"* right|strong=\"H3233\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* big toe of|strong=\"H3027\"* his|strong=\"H5414\"* right|strong=\"H3233\"* foot|strong=\"H7272\"*, upon|strong=\"H5921\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H3027\"* the|strong=\"H5921\"* trespass offering|strong=\"H3548\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H6440\"* rest|strong=\"H3498\"* of|strong=\"H3068\"* the|strong=\"H6440\"* oil|strong=\"H8081\"* that|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*’s hand|strong=\"H3709\"* he|strong=\"H3068\"* shall|strong=\"H3548\"* put|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H6440\"* head|strong=\"H7218\"* of|strong=\"H3068\"* him|strong=\"H5414\"* who|strong=\"H3068\"* is|strong=\"H3068\"* to|strong=\"H3068\"* be|strong=\"H3068\"* cleansed|strong=\"H2891\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5414\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "“The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* offer|strong=\"H6213\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H3548\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"* who|strong=\"H3548\"* is|strong=\"H2403\"* to|strong=\"H5921\"* be|strong=\"H3548\"* cleansed|strong=\"H2891\"* because|strong=\"H5921\"* of|strong=\"H5921\"* his|strong=\"H5921\"* uncleanness|strong=\"H2932\"*. Afterward he|strong=\"H6213\"* shall|strong=\"H3548\"* kill|strong=\"H7819\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*;" + }, + { + "verseNum": 20, + "text": "then|strong=\"H5927\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* offer|strong=\"H5927\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* and|strong=\"H3548\"* the|strong=\"H5921\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*. The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3548\"* he|strong=\"H5921\"* shall|strong=\"H3548\"* be|strong=\"H3548\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 21, + "text": "“If|strong=\"H5381\"* he|strong=\"H1931\"* is|strong=\"H1931\"* poor|strong=\"H1800\"*, and|strong=\"H3027\"* can|strong=\"H3947\"*’t afford|strong=\"H3027\"* so|strong=\"H3947\"* much|strong=\"H3027\"*, then|strong=\"H3947\"* he|strong=\"H1931\"* shall|strong=\"H3027\"* take|strong=\"H3947\"* one|strong=\"H3532\"* male|strong=\"H3532\"* lamb|strong=\"H3532\"* for|strong=\"H5921\"* a|strong=\"H3068\"* trespass offering|strong=\"H4503\"* to|strong=\"H5921\"* be|strong=\"H3027\"* waved|strong=\"H8573\"*, to|strong=\"H5921\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3027\"* one|strong=\"H3532\"* tenth|strong=\"H6241\"* of|strong=\"H3027\"* an|strong=\"H3947\"* ephah+ 14:21 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H3027\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"* for|strong=\"H5921\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H3027\"* a|strong=\"H3068\"* log|strong=\"H3849\"*+ 14:21 a log is a liquid measure of about 300 ml or 10 ounces* of|strong=\"H3027\"* oil|strong=\"H8081\"*;" + }, + { + "verseNum": 22, + "text": "and|strong=\"H1121\"* two|strong=\"H8147\"* turtledoves|strong=\"H8449\"*, or|strong=\"H1121\"* two|strong=\"H8147\"* young|strong=\"H1121\"* pigeons|strong=\"H3123\"*, such|strong=\"H1961\"* as|strong=\"H1961\"* he|strong=\"H8147\"* is|strong=\"H3027\"* able|strong=\"H3027\"* to|strong=\"H1961\"* afford|strong=\"H3027\"*; and|strong=\"H1121\"* the|strong=\"H3027\"* one|strong=\"H1121\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H1121\"* the|strong=\"H3027\"* other|strong=\"H8147\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 23, + "text": "“On|strong=\"H3117\"* the|strong=\"H6440\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* he|strong=\"H3117\"* shall|strong=\"H3548\"* bring them|strong=\"H6440\"* for|strong=\"H6440\"* his|strong=\"H3068\"* cleansing|strong=\"H2893\"* to|strong=\"H3068\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*, to|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* the|strong=\"H6440\"* lamb|strong=\"H3532\"* of|strong=\"H3068\"* the|strong=\"H6440\"* trespass offering|strong=\"H8573\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* log|strong=\"H3849\"* of|strong=\"H3068\"* oil|strong=\"H8081\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* wave|strong=\"H8573\"* them|strong=\"H6440\"* for|strong=\"H6440\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H5414\"* shall|strong=\"H3548\"* kill|strong=\"H7819\"* the|strong=\"H5921\"* lamb|strong=\"H3532\"* of|strong=\"H3027\"* the|strong=\"H5921\"* trespass offering|strong=\"H3548\"*. The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* some|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H3027\"* the|strong=\"H5921\"* trespass offering|strong=\"H3548\"* and|strong=\"H3027\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tip|strong=\"H8571\"* of|strong=\"H3027\"* the|strong=\"H5921\"* right|strong=\"H3233\"* ear of|strong=\"H3027\"* him|strong=\"H5414\"* who|strong=\"H3548\"* is|strong=\"H3027\"* to|strong=\"H5921\"* be|strong=\"H3027\"* cleansed|strong=\"H2891\"*, and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* thumb of|strong=\"H3027\"* his|strong=\"H5414\"* right|strong=\"H3233\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* big toe of|strong=\"H3027\"* his|strong=\"H5414\"* right|strong=\"H3233\"* foot|strong=\"H7272\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pour|strong=\"H3332\"* some|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5921\"* oil|strong=\"H8081\"* into|strong=\"H5921\"* the|strong=\"H5921\"* palm|strong=\"H3709\"* of|strong=\"H4480\"* his|strong=\"H5921\"* own|strong=\"H3548\"* left|strong=\"H8042\"* hand|strong=\"H3709\"*;" + }, + { + "verseNum": 27, + "text": "and|strong=\"H3068\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* sprinkle|strong=\"H5137\"* with|strong=\"H3068\"* his|strong=\"H3068\"* right|strong=\"H3233\"* finger some|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H6440\"* oil|strong=\"H8081\"* that|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H5921\"* his|strong=\"H3068\"* left|strong=\"H8042\"* hand|strong=\"H3709\"* seven|strong=\"H7651\"* times|strong=\"H6471\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 28, + "text": "Then|strong=\"H5414\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* put|strong=\"H5414\"* some|strong=\"H4480\"* of|strong=\"H3027\"* the|strong=\"H5921\"* oil|strong=\"H8081\"* that|strong=\"H5414\"* is|strong=\"H3027\"* in|strong=\"H5921\"* his|strong=\"H5414\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tip|strong=\"H8571\"* of|strong=\"H3027\"* the|strong=\"H5921\"* right|strong=\"H3233\"* ear of|strong=\"H3027\"* him|strong=\"H5414\"* who|strong=\"H3548\"* is|strong=\"H3027\"* to|strong=\"H5921\"* be|strong=\"H3027\"* cleansed|strong=\"H2891\"*, and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* thumb of|strong=\"H3027\"* his|strong=\"H5414\"* right|strong=\"H3233\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* big toe of|strong=\"H3027\"* his|strong=\"H5414\"* right|strong=\"H3233\"* foot|strong=\"H7272\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* of|strong=\"H3027\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H3027\"* the|strong=\"H5921\"* trespass offering|strong=\"H4480\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H6440\"* rest|strong=\"H3498\"* of|strong=\"H3068\"* the|strong=\"H6440\"* oil|strong=\"H8081\"* that|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*’s hand|strong=\"H3709\"* he|strong=\"H3068\"* shall|strong=\"H3548\"* put|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H6440\"* head|strong=\"H7218\"* of|strong=\"H3068\"* him|strong=\"H5414\"* who|strong=\"H3068\"* is|strong=\"H3068\"* to|strong=\"H3068\"* be|strong=\"H3068\"* cleansed|strong=\"H2891\"*, to|strong=\"H3068\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5414\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 30, + "text": "He|strong=\"H6213\"* shall|strong=\"H1121\"* offer|strong=\"H6213\"* one|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H6213\"* turtledoves|strong=\"H8449\"*, or|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6213\"* young|strong=\"H1121\"* pigeons|strong=\"H3123\"*, which ever|strong=\"H4480\"* he|strong=\"H6213\"* is|strong=\"H3027\"* able|strong=\"H3027\"* to|strong=\"H6213\"* afford|strong=\"H3027\"*," + }, + { + "verseNum": 31, + "text": "of|strong=\"H3068\"* the|strong=\"H6440\"* kind he|strong=\"H3068\"* is|strong=\"H3068\"* able|strong=\"H3027\"* to|strong=\"H3068\"* afford|strong=\"H3027\"*, the|strong=\"H6440\"* one|strong=\"H3068\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* other for|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, with|strong=\"H3068\"* the|strong=\"H6440\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*. The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H6440\"* who|strong=\"H3068\"* is|strong=\"H3068\"* to|strong=\"H3068\"* be|strong=\"H3027\"* cleansed|strong=\"H2891\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 32, + "text": "This|strong=\"H2063\"* is|strong=\"H3027\"* the|strong=\"H3027\"* law|strong=\"H8451\"* for|strong=\"H3027\"* him|strong=\"H3027\"* in|strong=\"H3027\"* whom is|strong=\"H3027\"* the|strong=\"H3027\"* plague|strong=\"H5061\"* of|strong=\"H3027\"* leprosy|strong=\"H6883\"*, who|strong=\"H3808\"* is|strong=\"H3027\"* not|strong=\"H3808\"* able|strong=\"H3027\"* to|strong=\"H3027\"* afford|strong=\"H3027\"* the|strong=\"H3027\"* sacrifice for|strong=\"H3027\"* his|strong=\"H3027\"* cleansing|strong=\"H2893\"*." + }, + { + "verseNum": 33, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H1696\"* Aaron, saying|strong=\"H1696\"*," + }, + { + "verseNum": 34, + "text": "“When|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5414\"* come|strong=\"H5061\"* into|strong=\"H5414\"* the|strong=\"H3588\"* land of|strong=\"H1004\"* Canaan|strong=\"H3667\"*, which|strong=\"H1004\"* I|strong=\"H3588\"* give|strong=\"H5414\"* to|strong=\"H5414\"* you|strong=\"H3588\"* for|strong=\"H3588\"* a|strong=\"H3068\"* possession, and|strong=\"H1004\"* I|strong=\"H3588\"* put|strong=\"H5414\"* a|strong=\"H3068\"* spreading mildew in|strong=\"H1004\"* a|strong=\"H3068\"* house|strong=\"H1004\"* in|strong=\"H1004\"* the|strong=\"H3588\"* land of|strong=\"H1004\"* your|strong=\"H5414\"* possession," + }, + { + "verseNum": 35, + "text": "then|strong=\"H7200\"* he|strong=\"H1004\"* who|strong=\"H3548\"* owns the|strong=\"H7200\"* house|strong=\"H1004\"* shall|strong=\"H3548\"* come|strong=\"H5061\"* and|strong=\"H1004\"* tell|strong=\"H5046\"* the|strong=\"H7200\"* priest|strong=\"H3548\"*, saying, ‘There|strong=\"H7200\"* seems to|strong=\"H1004\"* me|strong=\"H7200\"* to|strong=\"H1004\"* be|strong=\"H5061\"* some sort of|strong=\"H1004\"* plague|strong=\"H5061\"* in|strong=\"H1004\"* the|strong=\"H7200\"* house|strong=\"H1004\"*.’" + }, + { + "verseNum": 36, + "text": "The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* command|strong=\"H6680\"* that|strong=\"H7200\"* they|strong=\"H3651\"* empty|strong=\"H6437\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, before|strong=\"H2962\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* goes in|strong=\"H1004\"* to|strong=\"H1004\"* examine the|strong=\"H3605\"* plague|strong=\"H5061\"*, that|strong=\"H7200\"* all|strong=\"H3605\"* that|strong=\"H7200\"* is|strong=\"H3651\"* in|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* not|strong=\"H3808\"* be|strong=\"H3808\"* made|strong=\"H2930\"* unclean|strong=\"H2930\"*. Afterward the|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* go|strong=\"H3548\"* in|strong=\"H1004\"* to|strong=\"H1004\"* inspect the|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 37, + "text": "He|strong=\"H1004\"* shall|strong=\"H1004\"* examine the|strong=\"H7200\"* plague|strong=\"H5061\"*; and|strong=\"H1004\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* is|strong=\"H2009\"* in|strong=\"H1004\"* the|strong=\"H7200\"* walls|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H7200\"* house|strong=\"H1004\"* with|strong=\"H1004\"* hollow streaks, greenish|strong=\"H3422\"* or|strong=\"H4480\"* reddish, and|strong=\"H1004\"* it|strong=\"H7200\"* appears|strong=\"H4758\"* to|strong=\"H1004\"* be|strong=\"H5061\"* deeper|strong=\"H8217\"* than|strong=\"H4480\"* the|strong=\"H7200\"* wall|strong=\"H7023\"*," + }, + { + "verseNum": 38, + "text": "then|strong=\"H3318\"* the|strong=\"H4480\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* go|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H4480\"* house|strong=\"H1004\"* to|strong=\"H3318\"* the|strong=\"H4480\"* door|strong=\"H6607\"* of|strong=\"H1004\"* the|strong=\"H4480\"* house|strong=\"H1004\"*, and|strong=\"H3117\"* shut|strong=\"H5462\"* up|strong=\"H5462\"* the|strong=\"H4480\"* house|strong=\"H1004\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 39, + "text": "The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* come|strong=\"H7725\"* again|strong=\"H7725\"* on|strong=\"H3117\"* the|strong=\"H7200\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, and|strong=\"H7725\"* look|strong=\"H7200\"*. If|strong=\"H2009\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* has|strong=\"H5061\"* spread|strong=\"H6581\"* in|strong=\"H1004\"* the|strong=\"H7200\"* walls|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H7200\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 40, + "text": "then|strong=\"H6680\"* the|strong=\"H6680\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* command|strong=\"H6680\"* that|strong=\"H3548\"* they|strong=\"H5892\"* take|strong=\"H2502\"* out|strong=\"H2351\"* the|strong=\"H6680\"* stones in|strong=\"H5892\"* which|strong=\"H5892\"* is|strong=\"H5892\"* the|strong=\"H6680\"* plague|strong=\"H5061\"*, and|strong=\"H3548\"* cast|strong=\"H7993\"* them|strong=\"H6680\"* into|strong=\"H7993\"* an|strong=\"H7993\"* unclean|strong=\"H2931\"* place|strong=\"H4725\"* outside|strong=\"H2351\"* of|strong=\"H5892\"* the|strong=\"H6680\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 41, + "text": "He|strong=\"H1004\"* shall|strong=\"H1004\"* cause the|strong=\"H5439\"* inside|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5439\"* house|strong=\"H1004\"* to|strong=\"H1004\"* be|strong=\"H5892\"* scraped|strong=\"H7096\"* all|strong=\"H5439\"* over|strong=\"H2351\"*. They|strong=\"H5892\"* shall|strong=\"H1004\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* the|strong=\"H5439\"* mortar that|strong=\"H5892\"* they|strong=\"H5892\"* scraped|strong=\"H7096\"* off|strong=\"H7096\"* outside|strong=\"H2351\"* of|strong=\"H1004\"* the|strong=\"H5439\"* city|strong=\"H5892\"* into|strong=\"H5892\"* an|strong=\"H5892\"* unclean|strong=\"H2931\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 42, + "text": "They|strong=\"H3947\"* shall|strong=\"H1004\"* take|strong=\"H3947\"* other stones, and|strong=\"H1004\"* put|strong=\"H3947\"* them|strong=\"H3947\"* in|strong=\"H1004\"* the|strong=\"H3947\"* place|strong=\"H8478\"* of|strong=\"H1004\"* those stones; and|strong=\"H1004\"* he|strong=\"H1004\"* shall|strong=\"H1004\"* take|strong=\"H3947\"* other mortar, and|strong=\"H1004\"* shall|strong=\"H1004\"* plaster|strong=\"H6083\"* the|strong=\"H3947\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 43, + "text": "“If the|strong=\"H7725\"* plague|strong=\"H5061\"* comes again|strong=\"H7725\"*, and|strong=\"H7725\"* breaks|strong=\"H6524\"* out|strong=\"H7725\"* in|strong=\"H1004\"* the|strong=\"H7725\"* house|strong=\"H1004\"* after|strong=\"H1004\"* he|strong=\"H1004\"* has|strong=\"H5061\"* taken|strong=\"H2502\"* out|strong=\"H7725\"* the|strong=\"H7725\"* stones, and|strong=\"H7725\"* after|strong=\"H1004\"* he|strong=\"H1004\"* has|strong=\"H5061\"* scraped|strong=\"H7096\"* the|strong=\"H7725\"* house|strong=\"H1004\"*, and|strong=\"H7725\"* after|strong=\"H1004\"* it|strong=\"H7725\"* was|strong=\"H1004\"* plastered|strong=\"H2902\"*," + }, + { + "verseNum": 44, + "text": "then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* come|strong=\"H5061\"* in|strong=\"H1004\"* and|strong=\"H1004\"* look|strong=\"H7200\"*; and|strong=\"H1004\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* has|strong=\"H5061\"* spread|strong=\"H6581\"* in|strong=\"H1004\"* the|strong=\"H7200\"* house|strong=\"H1004\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* destructive mildew in|strong=\"H1004\"* the|strong=\"H7200\"* house|strong=\"H1004\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"*." + }, + { + "verseNum": 45, + "text": "He|strong=\"H3605\"* shall|strong=\"H1004\"* break|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, its|strong=\"H3605\"* stones, and|strong=\"H1004\"* its|strong=\"H3605\"* timber|strong=\"H6086\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"*’s mortar. He|strong=\"H3605\"* shall|strong=\"H1004\"* carry|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3605\"* city|strong=\"H5892\"* into|strong=\"H3318\"* an|strong=\"H3318\"* unclean|strong=\"H2931\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 46, + "text": "“Moreover he|strong=\"H3117\"* who|strong=\"H3605\"* goes into|strong=\"H5704\"* the|strong=\"H3605\"* house|strong=\"H1004\"* while|strong=\"H5704\"* it|strong=\"H2930\"* is|strong=\"H3117\"* shut|strong=\"H5462\"* up|strong=\"H5462\"* shall|strong=\"H1004\"* be|strong=\"H3117\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 47, + "text": "He|strong=\"H1004\"* who lies|strong=\"H7901\"* down|strong=\"H7901\"* in|strong=\"H1004\"* the|strong=\"H1004\"* house|strong=\"H1004\"* shall|strong=\"H1004\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes; and|strong=\"H1004\"* he|strong=\"H1004\"* who eats in|strong=\"H1004\"* the|strong=\"H1004\"* house|strong=\"H1004\"* shall|strong=\"H1004\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes." + }, + { + "verseNum": 48, + "text": "“If|strong=\"H3588\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* come|strong=\"H5061\"* in|strong=\"H1004\"*, and|strong=\"H1004\"* examine it|strong=\"H3588\"*, and|strong=\"H1004\"* behold|strong=\"H2009\"*, the|strong=\"H7200\"* plague|strong=\"H5061\"* hasn’t spread|strong=\"H6581\"* in|strong=\"H1004\"* the|strong=\"H7200\"* house|strong=\"H1004\"*, after|strong=\"H3588\"* the|strong=\"H7200\"* house|strong=\"H1004\"* was|strong=\"H1004\"* plastered|strong=\"H2902\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2891\"* the|strong=\"H7200\"* house|strong=\"H1004\"* clean|strong=\"H2891\"*, because|strong=\"H3588\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* is|strong=\"H2009\"* healed|strong=\"H7495\"*." + }, + { + "verseNum": 49, + "text": "To|strong=\"H1004\"* cleanse|strong=\"H2398\"* the|strong=\"H3947\"* house|strong=\"H1004\"* he|strong=\"H1004\"* shall|strong=\"H1004\"* take|strong=\"H3947\"* two|strong=\"H8147\"* birds|strong=\"H6833\"*, cedar wood|strong=\"H6086\"*, scarlet|strong=\"H8144\"*, and|strong=\"H1004\"* hyssop." + }, + { + "verseNum": 50, + "text": "He|strong=\"H5921\"* shall|strong=\"H4325\"* kill|strong=\"H7819\"* one|strong=\"H2416\"* of|strong=\"H3627\"* the|strong=\"H5921\"* birds|strong=\"H6833\"* in|strong=\"H5921\"* an|strong=\"H7819\"* earthen|strong=\"H2789\"* vessel|strong=\"H3627\"* over|strong=\"H5921\"* running|strong=\"H2416\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 51, + "text": "He|strong=\"H1004\"* shall|strong=\"H1004\"* take|strong=\"H3947\"* the|strong=\"H3947\"* cedar wood|strong=\"H6086\"*, the|strong=\"H3947\"* hyssop, the|strong=\"H3947\"* scarlet|strong=\"H8144\"*, and|strong=\"H1004\"* the|strong=\"H3947\"* living|strong=\"H2416\"* bird|strong=\"H6833\"*, and|strong=\"H1004\"* dip|strong=\"H2881\"* them|strong=\"H3947\"* in|strong=\"H1004\"* the|strong=\"H3947\"* blood|strong=\"H1818\"* of|strong=\"H1004\"* the|strong=\"H3947\"* slain|strong=\"H7819\"* bird|strong=\"H6833\"*, and|strong=\"H1004\"* in|strong=\"H1004\"* the|strong=\"H3947\"* running|strong=\"H2416\"* water|strong=\"H4325\"*, and|strong=\"H1004\"* sprinkle|strong=\"H5137\"* the|strong=\"H3947\"* house|strong=\"H1004\"* seven|strong=\"H7651\"* times|strong=\"H6471\"*." + }, + { + "verseNum": 52, + "text": "He|strong=\"H1004\"* shall|strong=\"H1004\"* cleanse|strong=\"H2398\"* the|strong=\"H2398\"* house|strong=\"H1004\"* with|strong=\"H1004\"* the|strong=\"H2398\"* blood|strong=\"H1818\"* of|strong=\"H1004\"* the|strong=\"H2398\"* bird|strong=\"H6833\"*, and|strong=\"H1004\"* with|strong=\"H1004\"* the|strong=\"H2398\"* running|strong=\"H2416\"* water|strong=\"H4325\"*, with|strong=\"H1004\"* the|strong=\"H2398\"* living|strong=\"H2416\"* bird|strong=\"H6833\"*, with|strong=\"H1004\"* the|strong=\"H2398\"* cedar wood|strong=\"H6086\"*, with|strong=\"H1004\"* the|strong=\"H2398\"* hyssop, and|strong=\"H1004\"* with|strong=\"H1004\"* the|strong=\"H2398\"* scarlet|strong=\"H8144\"*;" + }, + { + "verseNum": 53, + "text": "but|strong=\"H5921\"* he|strong=\"H1004\"* shall|strong=\"H1004\"* let|strong=\"H7971\"* the|strong=\"H6440\"* living|strong=\"H2416\"* bird|strong=\"H6833\"* go|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H1004\"* the|strong=\"H6440\"* city|strong=\"H5892\"* into|strong=\"H5921\"* the|strong=\"H6440\"* open|strong=\"H6440\"* field|strong=\"H7704\"*. So|strong=\"H7971\"* shall|strong=\"H1004\"* he|strong=\"H1004\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H6440\"* house|strong=\"H1004\"*; and|strong=\"H7971\"* it|strong=\"H5921\"* shall|strong=\"H1004\"* be|strong=\"H5892\"* clean|strong=\"H2891\"*.”" + }, + { + "verseNum": 54, + "text": "This|strong=\"H2063\"* is|strong=\"H3605\"* the|strong=\"H3605\"* law|strong=\"H8451\"* for|strong=\"H3605\"* any|strong=\"H3605\"* plague|strong=\"H5061\"* of|strong=\"H8451\"* leprosy|strong=\"H6883\"*, and|strong=\"H8451\"* for|strong=\"H3605\"* an itch," + }, + { + "verseNum": 55, + "text": "and|strong=\"H1004\"* for|strong=\"H1004\"* the|strong=\"H1004\"* destructive mildew of|strong=\"H1004\"* a|strong=\"H3068\"* garment, and|strong=\"H1004\"* for|strong=\"H1004\"* a|strong=\"H3068\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 56, + "text": "and|strong=\"H7613\"* for a|strong=\"H3068\"* swelling|strong=\"H7613\"*, and|strong=\"H7613\"* for a|strong=\"H3068\"* scab|strong=\"H5597\"*, and|strong=\"H7613\"* for a|strong=\"H3068\"* bright spot;" + }, + { + "verseNum": 57, + "text": "to|strong=\"H3117\"* teach|strong=\"H3384\"* when|strong=\"H3117\"* it|strong=\"H2063\"* is|strong=\"H3117\"* unclean|strong=\"H2931\"*, and|strong=\"H3117\"* when|strong=\"H3117\"* it|strong=\"H2063\"* is|strong=\"H3117\"* clean|strong=\"H2889\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H1696\"* Aaron, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H1961\"*, ‘When|strong=\"H3588\"* any|strong=\"H1961\"* man|strong=\"H1121\"* has|strong=\"H1961\"* a|strong=\"H3068\"* discharge|strong=\"H2100\"* from|strong=\"H3478\"* his|strong=\"H3478\"* body|strong=\"H1320\"*, because|strong=\"H3588\"* of|strong=\"H1121\"* his|strong=\"H3478\"* discharge|strong=\"H2100\"* he|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"*." + }, + { + "verseNum": 3, + "text": "This|strong=\"H2063\"* shall|strong=\"H1320\"* be|strong=\"H1961\"* his|strong=\"H1961\"* uncleanness|strong=\"H2932\"* in|strong=\"H1320\"* his|strong=\"H1961\"* discharge|strong=\"H2101\"*: whether his|strong=\"H1961\"* body|strong=\"H1320\"* runs with|strong=\"H1320\"* his|strong=\"H1961\"* discharge|strong=\"H2101\"*, or|strong=\"H1320\"* his|strong=\"H1961\"* body|strong=\"H1320\"* has|strong=\"H1961\"* stopped|strong=\"H2856\"* from|strong=\"H1961\"* his|strong=\"H1961\"* discharge|strong=\"H2101\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* his|strong=\"H1961\"* uncleanness|strong=\"H2932\"*." + }, + { + "verseNum": 4, + "text": "“‘Every|strong=\"H3605\"* bed|strong=\"H4904\"* on|strong=\"H5921\"* which|strong=\"H3627\"* he|strong=\"H3605\"* who|strong=\"H3605\"* has|strong=\"H3605\"* the|strong=\"H3605\"* discharge|strong=\"H2100\"* lies|strong=\"H7901\"* shall|strong=\"H4904\"* be|strong=\"H3605\"* unclean|strong=\"H2930\"*; and|strong=\"H3427\"* everything|strong=\"H3605\"* he|strong=\"H3605\"* sits|strong=\"H3427\"* on|strong=\"H5921\"* shall|strong=\"H4904\"* be|strong=\"H3605\"* unclean|strong=\"H2930\"*." + }, + { + "verseNum": 5, + "text": "Whoever touches|strong=\"H5060\"* his|strong=\"H3526\"* bed|strong=\"H4904\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes, and|strong=\"H4325\"* bathe|strong=\"H7364\"* himself|strong=\"H2930\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* be|strong=\"H4325\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H5704\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H5704\"* who|strong=\"H3427\"* sits|strong=\"H3427\"* on|strong=\"H5921\"* anything|strong=\"H3627\"* on|strong=\"H5921\"* which|strong=\"H4325\"* the|strong=\"H5921\"* man who|strong=\"H3427\"* has|strong=\"H2100\"* the|strong=\"H5921\"* discharge|strong=\"H2100\"* sat|strong=\"H3427\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes, and|strong=\"H3427\"* bathe|strong=\"H7364\"* himself|strong=\"H2930\"* in|strong=\"H3427\"* water|strong=\"H4325\"*, and|strong=\"H3427\"* be|strong=\"H4325\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H5921\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 7, + "text": "“‘He|strong=\"H5704\"* who touches|strong=\"H5060\"* the|strong=\"H5704\"* body|strong=\"H1320\"* of|strong=\"H4325\"* him|strong=\"H2930\"* who has|strong=\"H2100\"* the|strong=\"H5704\"* discharge|strong=\"H2100\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes, and|strong=\"H4325\"* bathe|strong=\"H7364\"* himself|strong=\"H2930\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* be|strong=\"H1320\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H5704\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 8, + "text": "“‘If|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H3588\"* has|strong=\"H3588\"* the|strong=\"H3588\"* discharge|strong=\"H2100\"* spits|strong=\"H7556\"* on|strong=\"H4325\"* him|strong=\"H2930\"* who|strong=\"H3588\"* is|strong=\"H4325\"* clean|strong=\"H2889\"*, then|strong=\"H3588\"* he|strong=\"H3588\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes, and|strong=\"H4325\"* bathe|strong=\"H7364\"* himself|strong=\"H2930\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* be|strong=\"H4325\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3588\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 9, + "text": "“‘Whatever|strong=\"H3605\"* saddle|strong=\"H4817\"* he|strong=\"H3605\"* who|strong=\"H3605\"* has|strong=\"H3605\"* the|strong=\"H3605\"* discharge|strong=\"H2100\"* rides|strong=\"H7392\"* on|strong=\"H5921\"* shall|strong=\"H2100\"* be|strong=\"H3605\"* unclean|strong=\"H2930\"*." + }, + { + "verseNum": 10, + "text": "Whoever|strong=\"H3605\"* touches|strong=\"H5060\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H1961\"* under|strong=\"H8478\"* him|strong=\"H2930\"* shall|strong=\"H4325\"* be|strong=\"H1961\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*. He|strong=\"H5704\"* who|strong=\"H3605\"* carries|strong=\"H5375\"* those|strong=\"H3605\"* things|strong=\"H3605\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3605\"* clothes, and|strong=\"H4325\"* bathe|strong=\"H7364\"* himself|strong=\"H2930\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* be|strong=\"H1961\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 11, + "text": "“‘Whomever|strong=\"H3605\"* he|strong=\"H5704\"* who|strong=\"H3605\"* has|strong=\"H3027\"* the|strong=\"H3605\"* discharge|strong=\"H2100\"* touches|strong=\"H5060\"*, without|strong=\"H3808\"* having|strong=\"H3808\"* rinsed|strong=\"H7857\"* his|strong=\"H3605\"* hands|strong=\"H3027\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, he|strong=\"H5704\"* shall|strong=\"H3027\"* wash|strong=\"H3526\"* his|strong=\"H3605\"* clothes, and|strong=\"H3027\"* bathe|strong=\"H7364\"* himself|strong=\"H3027\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H3027\"* be|strong=\"H3808\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 12, + "text": "“‘The|strong=\"H3605\"* earthen|strong=\"H2789\"* vessel|strong=\"H3627\"*, which|strong=\"H6086\"* he|strong=\"H3605\"* who|strong=\"H3605\"* has|strong=\"H3605\"* the|strong=\"H3605\"* discharge|strong=\"H2100\"* touches|strong=\"H5060\"*, shall|strong=\"H4325\"* be|strong=\"H6086\"* broken|strong=\"H7665\"*; and|strong=\"H6086\"* every|strong=\"H3605\"* vessel|strong=\"H3627\"* of|strong=\"H3627\"* wood|strong=\"H6086\"* shall|strong=\"H4325\"* be|strong=\"H6086\"* rinsed|strong=\"H7857\"* in|strong=\"H7665\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 13, + "text": "“‘When|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H3588\"* has|strong=\"H3117\"* a|strong=\"H3068\"* discharge|strong=\"H2100\"* is|strong=\"H3117\"* cleansed|strong=\"H2891\"* of|strong=\"H3117\"* his|strong=\"H3526\"* discharge|strong=\"H2100\"*, then|strong=\"H3588\"* he|strong=\"H3588\"* shall|strong=\"H3117\"* count|strong=\"H5608\"* to|strong=\"H3117\"* himself|strong=\"H4325\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* for|strong=\"H3588\"* his|strong=\"H3526\"* cleansing|strong=\"H2893\"*, and|strong=\"H3117\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes; and|strong=\"H3117\"* he|strong=\"H3588\"* shall|strong=\"H3117\"* bathe|strong=\"H7364\"* his|strong=\"H3526\"* flesh|strong=\"H1320\"* in|strong=\"H3117\"* running|strong=\"H2416\"* water|strong=\"H4325\"*, and|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 14, + "text": "“‘On|strong=\"H3117\"* the|strong=\"H6440\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* he|strong=\"H3117\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* two|strong=\"H8147\"* turtledoves|strong=\"H8449\"*, or|strong=\"H3117\"* two|strong=\"H8147\"* young|strong=\"H1121\"* pigeons|strong=\"H3123\"*, and|strong=\"H1121\"* come before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, and|strong=\"H1121\"* give|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3068\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* offer|strong=\"H6213\"* them|strong=\"H5921\"*, the|strong=\"H6440\"* one|strong=\"H6213\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* other for|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*. The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* for|strong=\"H5921\"* his|strong=\"H3068\"* discharge|strong=\"H2101\"*." + }, + { + "verseNum": 16, + "text": "“‘If|strong=\"H3588\"* any|strong=\"H3605\"* man|strong=\"H3605\"* has|strong=\"H3588\"* an|strong=\"H4480\"* emission|strong=\"H7902\"* of|strong=\"H4325\"* semen, then|strong=\"H3318\"* he|strong=\"H3588\"* shall|strong=\"H2233\"* bathe|strong=\"H7364\"* all|strong=\"H3605\"* his|strong=\"H3605\"* flesh|strong=\"H1320\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H3318\"* be|strong=\"H1320\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 17, + "text": "Every|strong=\"H3605\"* garment and|strong=\"H4325\"* every|strong=\"H3605\"* skin|strong=\"H5785\"* which|strong=\"H4325\"* the|strong=\"H3605\"* semen is|strong=\"H3605\"* on|strong=\"H5921\"* shall|strong=\"H2233\"* be|strong=\"H1961\"* washed|strong=\"H3526\"* with|strong=\"H5921\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* be|strong=\"H1961\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 18, + "text": "If a|strong=\"H3068\"* man lies|strong=\"H7901\"* with|strong=\"H7901\"* a|strong=\"H3068\"* woman and|strong=\"H4325\"* there|strong=\"H5704\"* is|strong=\"H4325\"* an|strong=\"H5704\"* emission|strong=\"H7902\"* of|strong=\"H4325\"* semen, they|strong=\"H5704\"* shall|strong=\"H2233\"* both bathe|strong=\"H7364\"* themselves|strong=\"H7364\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* be|strong=\"H4325\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H5704\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 19, + "text": "“‘If|strong=\"H3588\"* a|strong=\"H3068\"* woman|strong=\"H5079\"* has|strong=\"H1961\"* a|strong=\"H3068\"* discharge|strong=\"H2100\"*, and|strong=\"H3117\"* her|strong=\"H3605\"* discharge|strong=\"H2100\"* in|strong=\"H3117\"* her|strong=\"H3605\"* flesh|strong=\"H1320\"* is|strong=\"H3117\"* blood|strong=\"H1818\"*, she|strong=\"H3588\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* in|strong=\"H3117\"* her|strong=\"H3605\"* impurity|strong=\"H5079\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*. Whoever|strong=\"H3605\"* touches|strong=\"H5060\"* her|strong=\"H3605\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 20, + "text": "“‘Everything|strong=\"H3605\"* that|strong=\"H3605\"* she|strong=\"H5921\"* lies|strong=\"H7901\"* on|strong=\"H5921\"* in|strong=\"H3427\"* her|strong=\"H3605\"* impurity|strong=\"H5079\"* shall|strong=\"H5079\"* be|strong=\"H3605\"* unclean|strong=\"H2930\"*. Everything|strong=\"H3605\"* also that|strong=\"H3605\"* she|strong=\"H5921\"* sits|strong=\"H3427\"* on|strong=\"H5921\"* shall|strong=\"H5079\"* be|strong=\"H3605\"* unclean|strong=\"H2930\"*." + }, + { + "verseNum": 21, + "text": "Whoever|strong=\"H3605\"* touches|strong=\"H5060\"* her|strong=\"H3605\"* bed|strong=\"H4904\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3605\"* clothes, and|strong=\"H4325\"* bathe|strong=\"H7364\"* himself|strong=\"H2930\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* be|strong=\"H4325\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 22, + "text": "Whoever|strong=\"H3605\"* touches|strong=\"H5060\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* she|strong=\"H5921\"* sits|strong=\"H3427\"* on|strong=\"H5921\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3605\"* clothes, and|strong=\"H3427\"* bathe|strong=\"H7364\"* himself|strong=\"H2930\"* in|strong=\"H3427\"* water|strong=\"H4325\"*, and|strong=\"H3427\"* be|strong=\"H4325\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 23, + "text": "If|strong=\"H1931\"* it|strong=\"H1931\"* is|strong=\"H1931\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bed|strong=\"H4904\"*, or|strong=\"H5704\"* on|strong=\"H5921\"* anything|strong=\"H3627\"* she|strong=\"H1931\"* sits|strong=\"H3427\"* on|strong=\"H5921\"*, when|strong=\"H5704\"* he|strong=\"H1931\"* touches|strong=\"H5060\"* it|strong=\"H1931\"*, he|strong=\"H1931\"* shall|strong=\"H4904\"* be|strong=\"H1931\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H5921\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 24, + "text": "“‘If|strong=\"H1961\"* any|strong=\"H3605\"* man|strong=\"H3605\"* lies|strong=\"H7901\"* with|strong=\"H5921\"* her|strong=\"H3605\"*, and|strong=\"H3117\"* her|strong=\"H3605\"* monthly flow is|strong=\"H3117\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, he|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* unclean|strong=\"H2930\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*; and|strong=\"H3117\"* every|strong=\"H3605\"* bed|strong=\"H4904\"* he|strong=\"H3117\"* lies|strong=\"H7901\"* on|strong=\"H5921\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* unclean|strong=\"H2930\"*." + }, + { + "verseNum": 25, + "text": "“‘If|strong=\"H3588\"* a|strong=\"H3068\"* woman|strong=\"H5079\"* has|strong=\"H1961\"* a|strong=\"H3068\"* discharge|strong=\"H2100\"* of|strong=\"H3117\"* her|strong=\"H3605\"* blood|strong=\"H1818\"* many|strong=\"H7227\"* days|strong=\"H3117\"* not|strong=\"H3808\"* in|strong=\"H5921\"* the|strong=\"H3605\"* time|strong=\"H6256\"* of|strong=\"H3117\"* her|strong=\"H3605\"* period|strong=\"H3117\"*, or|strong=\"H3808\"* if|strong=\"H3588\"* she|strong=\"H1931\"* has|strong=\"H1961\"* a|strong=\"H3068\"* discharge|strong=\"H2100\"* beyond|strong=\"H5921\"* the|strong=\"H3605\"* time|strong=\"H6256\"* of|strong=\"H3117\"* her|strong=\"H3605\"* period|strong=\"H3117\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* discharge|strong=\"H2100\"* of|strong=\"H3117\"* her|strong=\"H3605\"* uncleanness|strong=\"H2932\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* as|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* her|strong=\"H3605\"* period|strong=\"H3117\"*. She|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"*." + }, + { + "verseNum": 26, + "text": "Every|strong=\"H3605\"* bed|strong=\"H4904\"* she|strong=\"H5921\"* lies|strong=\"H7901\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* her|strong=\"H3605\"* discharge|strong=\"H2101\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* to|strong=\"H1961\"* her|strong=\"H3605\"* as|strong=\"H3117\"* the|strong=\"H3605\"* bed|strong=\"H4904\"* of|strong=\"H3117\"* her|strong=\"H3605\"* period|strong=\"H3117\"*. Everything|strong=\"H3605\"* she|strong=\"H5921\"* sits|strong=\"H3427\"* on|strong=\"H5921\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* unclean|strong=\"H2931\"*, as|strong=\"H3117\"* the|strong=\"H3605\"* uncleanness|strong=\"H2932\"* of|strong=\"H3117\"* her|strong=\"H3605\"* period|strong=\"H3117\"*." + }, + { + "verseNum": 27, + "text": "Whoever|strong=\"H3605\"* touches|strong=\"H5060\"* these|strong=\"H3605\"* things|strong=\"H3605\"* shall|strong=\"H4325\"* be|strong=\"H4325\"* unclean|strong=\"H2930\"*, and|strong=\"H4325\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3605\"* clothes and|strong=\"H4325\"* bathe|strong=\"H7364\"* himself|strong=\"H2930\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* be|strong=\"H4325\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 28, + "text": "“‘But|strong=\"H3117\"* if she is|strong=\"H3117\"* cleansed|strong=\"H2891\"* of|strong=\"H3117\"* her|strong=\"H5608\"* discharge|strong=\"H2101\"*, then|strong=\"H3117\"* she shall|strong=\"H3117\"* count|strong=\"H5608\"* to|strong=\"H3117\"* herself seven|strong=\"H7651\"* days|strong=\"H3117\"*, and|strong=\"H3117\"* after|strong=\"H3117\"* that|strong=\"H3117\"* she shall|strong=\"H3117\"* be|strong=\"H3117\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 29, + "text": "On|strong=\"H3117\"* the|strong=\"H3947\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* she|strong=\"H8147\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* two|strong=\"H8147\"* turtledoves|strong=\"H8449\"*, or|strong=\"H3117\"* two|strong=\"H8147\"* young|strong=\"H1121\"* pigeons|strong=\"H3123\"*, and|strong=\"H1121\"* bring|strong=\"H3947\"* them|strong=\"H3947\"* to|strong=\"H3117\"* the|strong=\"H3947\"* priest|strong=\"H3548\"*, to|strong=\"H3117\"* the|strong=\"H3947\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H3947\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* offer|strong=\"H6213\"* the|strong=\"H6440\"* one|strong=\"H6213\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* other for|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*; and|strong=\"H3068\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* her|strong=\"H5921\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* for|strong=\"H5921\"* the|strong=\"H6440\"* uncleanness|strong=\"H2932\"* of|strong=\"H3068\"* her|strong=\"H5921\"* discharge|strong=\"H2101\"*." + }, + { + "verseNum": 31, + "text": "“‘Thus|strong=\"H3808\"* you|strong=\"H3808\"* shall|strong=\"H1121\"* separate|strong=\"H5144\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* their|strong=\"H8432\"* uncleanness|strong=\"H2932\"*, so|strong=\"H3808\"* they|strong=\"H3808\"* will|strong=\"H3478\"* not|strong=\"H3808\"* die|strong=\"H4191\"* in|strong=\"H3478\"* their|strong=\"H8432\"* uncleanness|strong=\"H2932\"* when|strong=\"H1121\"* they|strong=\"H3808\"* defile|strong=\"H2930\"* my|strong=\"H2930\"* tabernacle|strong=\"H4908\"* that|strong=\"H3478\"* is|strong=\"H3478\"* among|strong=\"H8432\"* them|strong=\"H8432\"*.’”" + }, + { + "verseNum": 32, + "text": "This|strong=\"H2063\"* is|strong=\"H8451\"* the|strong=\"H4480\"* law|strong=\"H8451\"* of|strong=\"H2233\"* him|strong=\"H2930\"* who has|strong=\"H3318\"* a|strong=\"H3068\"* discharge|strong=\"H2100\"*, and|strong=\"H3318\"* of|strong=\"H2233\"* him|strong=\"H2930\"* who has|strong=\"H3318\"* an|strong=\"H4480\"* emission|strong=\"H7902\"* of|strong=\"H2233\"* semen, so|strong=\"H4480\"* that|strong=\"H4480\"* he|strong=\"H4480\"* is|strong=\"H8451\"* unclean|strong=\"H2930\"* by|strong=\"H3318\"* it|strong=\"H2930\"*;" + }, + { + "verseNum": 33, + "text": "and|strong=\"H2145\"* of|strong=\"H5973\"* her|strong=\"H7901\"* who|strong=\"H1739\"* has|strong=\"H2100\"* her|strong=\"H7901\"* period|strong=\"H5079\"*, and|strong=\"H2145\"* of|strong=\"H5973\"* a|strong=\"H3068\"* man|strong=\"H2145\"* or|strong=\"H2145\"* woman|strong=\"H5347\"* who|strong=\"H1739\"* has|strong=\"H2100\"* a|strong=\"H3068\"* discharge|strong=\"H2100\"*, and|strong=\"H2145\"* of|strong=\"H5973\"* him|strong=\"H5973\"* who|strong=\"H1739\"* lies|strong=\"H7901\"* with|strong=\"H5973\"* her|strong=\"H7901\"* who|strong=\"H1739\"* is|strong=\"H2100\"* unclean|strong=\"H2931\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* after the|strong=\"H6440\"* death|strong=\"H4194\"* of|strong=\"H1121\"* the|strong=\"H6440\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, when|strong=\"H1696\"* they|strong=\"H3068\"* came|strong=\"H7126\"* near|strong=\"H7126\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* died|strong=\"H4191\"*;" + }, + { + "verseNum": 2, + "text": "and|strong=\"H4872\"* Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “Tell|strong=\"H1696\"* Aaron your|strong=\"H3068\"* brother not|strong=\"H3808\"* to|strong=\"H1696\"* come at|strong=\"H5921\"* just|strong=\"H3605\"* any|strong=\"H3605\"* time|strong=\"H6256\"* into|strong=\"H5921\"* the|strong=\"H3605\"* Most|strong=\"H6944\"* Holy|strong=\"H6944\"* Place|strong=\"H6944\"* within|strong=\"H1004\"* the|strong=\"H3605\"* veil|strong=\"H6532\"*, before|strong=\"H6440\"* the|strong=\"H3605\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* which|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H3605\"* ark; lest he|strong=\"H3588\"* die|strong=\"H4191\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* appear|strong=\"H7200\"* in|strong=\"H5921\"* the|strong=\"H3605\"* cloud|strong=\"H6051\"* on|strong=\"H5921\"* the|strong=\"H3605\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"*." + }, + { + "verseNum": 3, + "text": "“Aaron shall|strong=\"H1121\"* come into the|strong=\"H1121\"* sanctuary|strong=\"H6944\"* with|strong=\"H1241\"* a|strong=\"H3068\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* for|strong=\"H1121\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* ram for|strong=\"H1121\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H5921\"* shall|strong=\"H4325\"* put|strong=\"H3847\"* on|strong=\"H5921\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* linen tunic|strong=\"H3801\"*. He|strong=\"H5921\"* shall|strong=\"H4325\"* have|strong=\"H1961\"* the|strong=\"H5921\"* linen trousers on|strong=\"H5921\"* his|strong=\"H5921\"* body|strong=\"H1320\"*, and|strong=\"H4325\"* shall|strong=\"H4325\"* put|strong=\"H3847\"* on|strong=\"H5921\"* the|strong=\"H5921\"* linen sash, and|strong=\"H4325\"* he|strong=\"H5921\"* shall|strong=\"H4325\"* be|strong=\"H1961\"* clothed|strong=\"H3847\"* with|strong=\"H3847\"* the|strong=\"H5921\"* linen turban|strong=\"H4701\"*. They|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* garments|strong=\"H3801\"*. He|strong=\"H5921\"* shall|strong=\"H4325\"* bathe|strong=\"H7364\"* his|strong=\"H5921\"* body|strong=\"H1320\"* in|strong=\"H5921\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* put|strong=\"H3847\"* them|strong=\"H1992\"* on|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H8147\"* shall|strong=\"H1121\"* take|strong=\"H3947\"* from|strong=\"H3478\"* the|strong=\"H3947\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* two|strong=\"H8147\"* male|strong=\"H8163\"* goats|strong=\"H5795\"* for|strong=\"H1121\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H1121\"* one|strong=\"H1121\"* ram for|strong=\"H1121\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 6, + "text": "“Aaron shall|strong=\"H1004\"* offer|strong=\"H7126\"* the|strong=\"H7126\"* bull|strong=\"H6499\"* of|strong=\"H1004\"* the|strong=\"H7126\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, which|strong=\"H1004\"* is|strong=\"H1004\"* for|strong=\"H1157\"* himself|strong=\"H1157\"*, and|strong=\"H1004\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H1157\"* himself|strong=\"H1157\"* and|strong=\"H1004\"* for|strong=\"H1157\"* his|strong=\"H7126\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* the|strong=\"H6440\"* two|strong=\"H8147\"* goats|strong=\"H8163\"*, and|strong=\"H3068\"* set|strong=\"H5975\"* them|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* at|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 8, + "text": "Aaron shall|strong=\"H3068\"* cast|strong=\"H5414\"* lots|strong=\"H1486\"* for|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* goats|strong=\"H8163\"*: one|strong=\"H8147\"* lot|strong=\"H1486\"* for|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* other|strong=\"H8147\"* lot|strong=\"H1486\"* for|strong=\"H5921\"* the|strong=\"H5921\"* scapegoat|strong=\"H5799\"*." + }, + { + "verseNum": 9, + "text": "Aaron shall|strong=\"H3068\"* present|strong=\"H7126\"* the|strong=\"H5921\"* goat|strong=\"H8163\"* on|strong=\"H5921\"* which|strong=\"H3068\"* the|strong=\"H5921\"* lot|strong=\"H1486\"* fell|strong=\"H5927\"* for|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* offer|strong=\"H7126\"* him|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"H3068\"* the|strong=\"H6440\"* goat|strong=\"H8163\"* on|strong=\"H5921\"* which|strong=\"H3068\"* the|strong=\"H6440\"* lot|strong=\"H1486\"* fell|strong=\"H5927\"* for|strong=\"H5921\"* the|strong=\"H6440\"* scapegoat|strong=\"H5799\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* presented|strong=\"H5975\"* alive|strong=\"H2416\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H6440\"*, to|strong=\"H3068\"* send|strong=\"H7971\"* him|strong=\"H6440\"* away|strong=\"H7971\"* as|strong=\"H3068\"* the|strong=\"H6440\"* scapegoat|strong=\"H5799\"* into|strong=\"H5927\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 11, + "text": "“Aaron shall|strong=\"H1004\"* present|strong=\"H7126\"* the|strong=\"H7126\"* bull|strong=\"H6499\"* of|strong=\"H1004\"* the|strong=\"H7126\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, which|strong=\"H1004\"* is|strong=\"H1004\"* for|strong=\"H1157\"* himself|strong=\"H1157\"*, and|strong=\"H1004\"* shall|strong=\"H1004\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H1157\"* himself|strong=\"H1157\"* and|strong=\"H1004\"* for|strong=\"H1157\"* his|strong=\"H7126\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* shall|strong=\"H1004\"* kill|strong=\"H7819\"* the|strong=\"H7126\"* bull|strong=\"H6499\"* of|strong=\"H1004\"* the|strong=\"H7126\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* which|strong=\"H1004\"* is|strong=\"H1004\"* for|strong=\"H1157\"* himself|strong=\"H1157\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* a|strong=\"H3068\"* censer|strong=\"H4289\"* full|strong=\"H4393\"* of|strong=\"H1004\"* coals|strong=\"H1513\"* of|strong=\"H1004\"* fire|strong=\"H1513\"* from|strong=\"H6440\"* off|strong=\"H5921\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* two|strong=\"H3947\"* handfuls|strong=\"H4393\"* of|strong=\"H1004\"* sweet|strong=\"H5561\"* incense|strong=\"H7004\"* beaten|strong=\"H7004\"* small|strong=\"H1851\"*, and|strong=\"H3068\"* bring|strong=\"H3947\"* it|strong=\"H5921\"* within|strong=\"H1004\"* the|strong=\"H6440\"* veil|strong=\"H6532\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* put|strong=\"H5414\"* the|strong=\"H6440\"* incense|strong=\"H7004\"* on|strong=\"H5921\"* the|strong=\"H6440\"* fire before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3068\"* the|strong=\"H6440\"* cloud|strong=\"H6051\"* of|strong=\"H3068\"* the|strong=\"H6440\"* incense|strong=\"H7004\"* may|strong=\"H3068\"* cover|strong=\"H3680\"* the|strong=\"H6440\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* that|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H6440\"* covenant, so|strong=\"H5414\"* that|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H4480\"* shall|strong=\"H6440\"* take|strong=\"H3947\"* some|strong=\"H4480\"* of|strong=\"H6440\"* the|strong=\"H6440\"* blood|strong=\"H1818\"* of|strong=\"H6440\"* the|strong=\"H6440\"* bull|strong=\"H6499\"*, and|strong=\"H6440\"* sprinkle|strong=\"H5137\"* it|strong=\"H5921\"* with|strong=\"H5921\"* his|strong=\"H3947\"* finger on|strong=\"H5921\"* the|strong=\"H6440\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* on|strong=\"H5921\"* the|strong=\"H6440\"* east|strong=\"H6924\"*; and|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* he|strong=\"H4480\"* shall|strong=\"H6440\"* sprinkle|strong=\"H5137\"* some|strong=\"H4480\"* of|strong=\"H6440\"* the|strong=\"H6440\"* blood|strong=\"H1818\"* with|strong=\"H5921\"* his|strong=\"H3947\"* finger seven|strong=\"H7651\"* times|strong=\"H6471\"*." + }, + { + "verseNum": 15, + "text": "“Then|strong=\"H6213\"* he|strong=\"H6213\"* shall|strong=\"H5971\"* kill|strong=\"H7819\"* the|strong=\"H6440\"* goat|strong=\"H8163\"* of|strong=\"H1004\"* the|strong=\"H6440\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* that|strong=\"H5971\"* is|strong=\"H1004\"* for|strong=\"H5921\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, and|strong=\"H1004\"* bring|strong=\"H6213\"* his|strong=\"H6440\"* blood|strong=\"H1818\"* within|strong=\"H1004\"* the|strong=\"H6440\"* veil|strong=\"H6532\"*, and|strong=\"H1004\"* do|strong=\"H6213\"* with|strong=\"H1004\"* his|strong=\"H6440\"* blood|strong=\"H1818\"* as|strong=\"H6213\"* he|strong=\"H6213\"* did|strong=\"H6213\"* with|strong=\"H1004\"* the|strong=\"H6440\"* blood|strong=\"H1818\"* of|strong=\"H1004\"* the|strong=\"H6440\"* bull|strong=\"H6499\"*, and|strong=\"H1004\"* sprinkle|strong=\"H5137\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H6440\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* and|strong=\"H1004\"* before|strong=\"H6440\"* the|strong=\"H6440\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H3651\"* shall|strong=\"H1121\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H3605\"* Holy|strong=\"H6944\"* Place|strong=\"H6944\"*, because|strong=\"H5921\"* of|strong=\"H1121\"* the|strong=\"H3605\"* uncleanness|strong=\"H2932\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* because|strong=\"H5921\"* of|strong=\"H1121\"* their|strong=\"H3605\"* transgressions|strong=\"H6588\"*, even|strong=\"H3651\"* all|strong=\"H3605\"* their|strong=\"H3605\"* sins|strong=\"H2403\"*; and|strong=\"H1121\"* so|strong=\"H3651\"* he|strong=\"H3651\"* shall|strong=\"H1121\"* do|strong=\"H6213\"* for|strong=\"H5921\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"* that|strong=\"H3605\"* dwells|strong=\"H7931\"* with|strong=\"H6213\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* their|strong=\"H3605\"* uncleanness|strong=\"H2932\"*." + }, + { + "verseNum": 17, + "text": "No|strong=\"H3808\"* one|strong=\"H3605\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* in|strong=\"H3478\"* the|strong=\"H3605\"* Tent of|strong=\"H1004\"* Meeting|strong=\"H4150\"* when|strong=\"H1961\"* he|strong=\"H5704\"* enters to|strong=\"H5704\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* in|strong=\"H3478\"* the|strong=\"H3605\"* Holy|strong=\"H6944\"* Place|strong=\"H6944\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* comes|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H3478\"* has|strong=\"H1961\"* made|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5704\"* himself|strong=\"H1157\"* and|strong=\"H3478\"* for|strong=\"H5704\"* his|strong=\"H3605\"* household|strong=\"H1004\"*, and|strong=\"H3478\"* for|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 18, + "text": "“He|strong=\"H3068\"* shall|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* that|strong=\"H3068\"* is|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H3068\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* some of|strong=\"H3068\"* the|strong=\"H6440\"* bull|strong=\"H6499\"*’s blood|strong=\"H1818\"*, and|strong=\"H3068\"* some of|strong=\"H3068\"* the|strong=\"H6440\"* goat|strong=\"H8163\"*’s blood|strong=\"H1818\"*, and|strong=\"H3068\"* put|strong=\"H5414\"* it|strong=\"H5414\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H6440\"* horns|strong=\"H7161\"* of|strong=\"H3068\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H4480\"* shall|strong=\"H1121\"* sprinkle|strong=\"H5137\"* some|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* it|strong=\"H5921\"* with|strong=\"H5921\"* his|strong=\"H5921\"* finger seven|strong=\"H7651\"* times|strong=\"H6471\"*, and|strong=\"H1121\"* cleanse|strong=\"H2891\"* it|strong=\"H5921\"*, and|strong=\"H1121\"* make it|strong=\"H5921\"* holy|strong=\"H6942\"* from|strong=\"H4480\"* the|strong=\"H5921\"* uncleanness|strong=\"H2932\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 20, + "text": "“When|strong=\"H3615\"* he|strong=\"H7126\"* has|strong=\"H4150\"* finished|strong=\"H3615\"* atoning|strong=\"H3722\"* for|strong=\"H4196\"* the|strong=\"H7126\"* Holy|strong=\"H6944\"* Place|strong=\"H6944\"*, the|strong=\"H7126\"* Tent of|strong=\"H4196\"* Meeting|strong=\"H4150\"*, and|strong=\"H4196\"* the|strong=\"H7126\"* altar|strong=\"H4196\"*, he|strong=\"H7126\"* shall|strong=\"H8163\"* present|strong=\"H7126\"* the|strong=\"H7126\"* live|strong=\"H2416\"* goat|strong=\"H8163\"*." + }, + { + "verseNum": 21, + "text": "Aaron shall|strong=\"H1121\"* lay|strong=\"H5414\"* both|strong=\"H8147\"* his|strong=\"H3605\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3605\"* live|strong=\"H2416\"* goat|strong=\"H8163\"*, and|strong=\"H1121\"* confess|strong=\"H3034\"* over|strong=\"H5921\"* him|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* iniquities|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* their|strong=\"H3605\"* transgressions|strong=\"H6588\"*, even|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* sins|strong=\"H2403\"*; and|strong=\"H1121\"* he|strong=\"H3605\"* shall|strong=\"H1121\"* put|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3605\"* goat|strong=\"H8163\"*, and|strong=\"H1121\"* shall|strong=\"H1121\"* send|strong=\"H7971\"* him|strong=\"H5414\"* away|strong=\"H7971\"* into|strong=\"H5921\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* by|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* a|strong=\"H3068\"* man|strong=\"H1121\"* who|strong=\"H3605\"* is|strong=\"H3027\"* ready." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3605\"* goat|strong=\"H8163\"* shall|strong=\"H8163\"* carry|strong=\"H5375\"* all|strong=\"H3605\"* their|strong=\"H3605\"* iniquities|strong=\"H5771\"* on|strong=\"H5921\"* himself to|strong=\"H7971\"* a|strong=\"H3068\"* solitary|strong=\"H1509\"* land, and|strong=\"H7971\"* he|strong=\"H3605\"* shall|strong=\"H8163\"* release|strong=\"H7971\"* the|strong=\"H3605\"* goat|strong=\"H8163\"* in|strong=\"H5921\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 23, + "text": "“Aaron shall|strong=\"H4150\"* come into the|strong=\"H8033\"* Tent of|strong=\"H6944\"* Meeting|strong=\"H4150\"*, and|strong=\"H8033\"* shall|strong=\"H4150\"* take|strong=\"H6584\"* off|strong=\"H6584\"* the|strong=\"H8033\"* linen garments which|strong=\"H8033\"* he|strong=\"H8033\"* put|strong=\"H3847\"* on|strong=\"H3847\"* when he|strong=\"H8033\"* went into the|strong=\"H8033\"* Holy|strong=\"H6944\"* Place|strong=\"H6944\"*, and|strong=\"H8033\"* shall|strong=\"H4150\"* leave|strong=\"H3240\"* them|strong=\"H3847\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 24, + "text": "Then|strong=\"H3318\"* he|strong=\"H6213\"* shall|strong=\"H5971\"* bathe|strong=\"H7364\"* himself|strong=\"H6213\"* in|strong=\"H6213\"* water|strong=\"H4325\"* in|strong=\"H6213\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* place|strong=\"H4725\"*, put|strong=\"H3847\"* on|strong=\"H3847\"* his|strong=\"H7364\"* garments, and|strong=\"H5971\"* come|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H5971\"* offer|strong=\"H6213\"* his|strong=\"H7364\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H5971\"* the|strong=\"H6213\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* of|strong=\"H4325\"* the|strong=\"H6213\"* people|strong=\"H5971\"*, and|strong=\"H5971\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H6213\"* himself|strong=\"H6213\"* and|strong=\"H5971\"* for|strong=\"H6213\"* the|strong=\"H6213\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H6999\"* fat|strong=\"H2459\"* of|strong=\"H4196\"* the|strong=\"H6999\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* he|strong=\"H4196\"* shall burn|strong=\"H6999\"* on|strong=\"H6999\"* the|strong=\"H6999\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 26, + "text": "“He|strong=\"H3651\"* who lets|strong=\"H7971\"* the|strong=\"H7971\"* goat|strong=\"H8163\"* go|strong=\"H7971\"* as|strong=\"H3651\"* the|strong=\"H7971\"* scapegoat|strong=\"H5799\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes, and|strong=\"H7971\"* bathe|strong=\"H7364\"* his|strong=\"H3526\"* flesh|strong=\"H1320\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H7971\"* afterward he|strong=\"H3651\"* shall|strong=\"H4325\"* come|strong=\"H7971\"* into|strong=\"H4325\"* the|strong=\"H7971\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H3318\"* bull|strong=\"H6499\"* for|strong=\"H3722\"* the|strong=\"H3318\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, and|strong=\"H6499\"* the|strong=\"H3318\"* goat|strong=\"H8163\"* for|strong=\"H3722\"* the|strong=\"H3318\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, whose blood|strong=\"H1818\"* was|strong=\"H1320\"* brought|strong=\"H3318\"* in|strong=\"H1320\"* to|strong=\"H3318\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* in|strong=\"H1320\"* the|strong=\"H3318\"* Holy|strong=\"H6944\"* Place|strong=\"H6944\"*, shall|strong=\"H1320\"* be|strong=\"H1818\"* carried|strong=\"H3318\"* outside|strong=\"H2351\"* the|strong=\"H3318\"* camp|strong=\"H4264\"*; and|strong=\"H6499\"* they|strong=\"H2351\"* shall|strong=\"H1320\"* burn|strong=\"H8313\"* their|strong=\"H8313\"* skins|strong=\"H5785\"*, their|strong=\"H8313\"* flesh|strong=\"H1320\"*, and|strong=\"H6499\"* their|strong=\"H8313\"* dung|strong=\"H6569\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 28, + "text": "He|strong=\"H3651\"* who burns|strong=\"H8313\"* them|strong=\"H8313\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes, and|strong=\"H4325\"* bathe|strong=\"H7364\"* his|strong=\"H3526\"* flesh|strong=\"H1320\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* afterward he|strong=\"H3651\"* shall|strong=\"H4325\"* come into|strong=\"H4325\"* the|strong=\"H3651\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 29, + "text": "“It|strong=\"H6213\"* shall|strong=\"H5315\"* be|strong=\"H1961\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* to|strong=\"H1961\"* you|strong=\"H3605\"* forever|strong=\"H5769\"*: in|strong=\"H6213\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*, on|strong=\"H1961\"* the|strong=\"H3605\"* tenth|strong=\"H6218\"* day|strong=\"H2320\"* of|strong=\"H8432\"* the|strong=\"H3605\"* month|strong=\"H2320\"*, you|strong=\"H3605\"* shall|strong=\"H5315\"* afflict|strong=\"H6031\"* your|strong=\"H3605\"* souls|strong=\"H5315\"*, and|strong=\"H5769\"* shall|strong=\"H5315\"* do|strong=\"H6213\"* no|strong=\"H3808\"* kind of|strong=\"H8432\"* work|strong=\"H4399\"*, whether native-born or|strong=\"H3808\"* a|strong=\"H3068\"* stranger|strong=\"H1616\"* who|strong=\"H3605\"* lives|strong=\"H5315\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"* among|strong=\"H8432\"* you|strong=\"H3605\"*;" + }, + { + "verseNum": 30, + "text": "for|strong=\"H3588\"* on|strong=\"H5921\"* this|strong=\"H2088\"* day|strong=\"H3117\"* shall|strong=\"H3068\"* atonement|strong=\"H3722\"* be|strong=\"H3068\"* made|strong=\"H3722\"* for|strong=\"H3588\"* you|strong=\"H3588\"*, to|strong=\"H3068\"* cleanse|strong=\"H2891\"* you|strong=\"H3588\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* clean|strong=\"H2891\"* from|strong=\"H6440\"* all|strong=\"H3605\"* your|strong=\"H3068\"* sins|strong=\"H2403\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 31, + "text": "It|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* of|strong=\"H5315\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"* to|strong=\"H5315\"* you|strong=\"H5315\"*, and|strong=\"H5769\"* you|strong=\"H5315\"* shall|strong=\"H5315\"* afflict|strong=\"H6031\"* your|strong=\"H6031\"* souls|strong=\"H5315\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"H8478\"* priest|strong=\"H3548\"*, who|strong=\"H3548\"* is|strong=\"H3027\"* anointed|strong=\"H4886\"* and|strong=\"H3027\"* who|strong=\"H3548\"* is|strong=\"H3027\"* consecrated|strong=\"H6944\"* to|strong=\"H3027\"* be|strong=\"H3027\"* priest|strong=\"H3548\"* in|strong=\"H3847\"* his|strong=\"H3027\"* father’s place|strong=\"H8478\"*, shall|strong=\"H3548\"* make|strong=\"H3722\"* the|strong=\"H8478\"* atonement|strong=\"H3722\"*, and|strong=\"H3027\"* shall|strong=\"H3548\"* put|strong=\"H3847\"* on|strong=\"H3847\"* the|strong=\"H8478\"* linen garments, even the|strong=\"H8478\"* holy|strong=\"H6944\"* garments." + }, + { + "verseNum": 33, + "text": "Then|strong=\"H3548\"* he|strong=\"H3605\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H3605\"* Holy|strong=\"H6944\"* Sanctuary|strong=\"H6944\"*; and|strong=\"H3548\"* he|strong=\"H3605\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H3605\"* Tent of|strong=\"H4196\"* Meeting|strong=\"H4150\"* and|strong=\"H3548\"* for|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*; and|strong=\"H3548\"* he|strong=\"H3605\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3548\"* for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4196\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*." + }, + { + "verseNum": 34, + "text": "“This|strong=\"H2063\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* an|strong=\"H6213\"* everlasting|strong=\"H5769\"* statute|strong=\"H2708\"* for|strong=\"H5921\"* you|strong=\"H6680\"*, to|strong=\"H3478\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* once|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H3605\"* year|strong=\"H8141\"* because|strong=\"H5921\"* of|strong=\"H1121\"* all|strong=\"H3605\"* their|strong=\"H3605\"* sins|strong=\"H2403\"*.”" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* Aaron, and|strong=\"H1121\"* to|strong=\"H1696\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* say|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H6680\"*, ‘This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3605\"* thing|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"*:" + }, + { + "verseNum": 3, + "text": "Whatever man there is|strong=\"H3478\"* of|strong=\"H1004\"* the|strong=\"H7819\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* who|strong=\"H3478\"* kills|strong=\"H7819\"* a|strong=\"H3068\"* bull|strong=\"H7794\"*, or|strong=\"H1004\"* lamb|strong=\"H3775\"*, or|strong=\"H1004\"* goat|strong=\"H5795\"* in|strong=\"H3478\"* the|strong=\"H7819\"* camp|strong=\"H4264\"*, or|strong=\"H1004\"* who|strong=\"H3478\"* kills|strong=\"H7819\"* it|strong=\"H7819\"* outside|strong=\"H2351\"* the|strong=\"H7819\"* camp|strong=\"H4264\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"H3068\"* hasn’t brought|strong=\"H7126\"* it|strong=\"H1931\"* to|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"* to|strong=\"H3068\"* offer|strong=\"H7126\"* it|strong=\"H1931\"* as|strong=\"H2803\"* an|strong=\"H7126\"* offering|strong=\"H7133\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s tabernacle|strong=\"H4908\"*: blood|strong=\"H1818\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* imputed|strong=\"H2803\"* to|strong=\"H3068\"* that|strong=\"H5971\"* man|strong=\"H6440\"*. He|strong=\"H1931\"* has|strong=\"H3068\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"*. That|strong=\"H5971\"* man|strong=\"H6440\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H6440\"* among|strong=\"H7130\"* his|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 5, + "text": "This|strong=\"H6440\"* is|strong=\"H3068\"* to|strong=\"H3478\"* the|strong=\"H6440\"* end|strong=\"H4616\"* that|strong=\"H3068\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* may|strong=\"H3068\"* bring their|strong=\"H3068\"* sacrifices|strong=\"H2077\"*, which|strong=\"H3068\"* they|strong=\"H1992\"* sacrifice|strong=\"H2077\"* in|strong=\"H5921\"* the|strong=\"H6440\"* open|strong=\"H6440\"* field|strong=\"H7704\"*, that|strong=\"H3068\"* they|strong=\"H1992\"* may|strong=\"H3068\"* bring them|strong=\"H1992\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3478\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, to|strong=\"H3478\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* sacrifice|strong=\"H2077\"* them|strong=\"H1992\"* for|strong=\"H5921\"* sacrifices|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* sprinkle|strong=\"H2236\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"* at|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, and|strong=\"H3068\"* burn|strong=\"H6999\"* the|strong=\"H5921\"* fat|strong=\"H2459\"* for|strong=\"H5921\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H1992\"* shall|strong=\"H3808\"* no|strong=\"H3808\"* more|strong=\"H5750\"* sacrifice|strong=\"H2077\"* their|strong=\"H1992\"* sacrifices|strong=\"H2077\"* to|strong=\"H1961\"* the|strong=\"H1961\"* goat|strong=\"H8163\"* idols, after|strong=\"H1961\"* which|strong=\"H1992\"* they|strong=\"H1992\"* play|strong=\"H2181\"* the|strong=\"H1961\"* prostitute|strong=\"H2181\"*. This|strong=\"H2063\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* to|strong=\"H1961\"* them|strong=\"H1992\"* throughout|strong=\"H1755\"* their|strong=\"H1992\"* generations|strong=\"H1755\"*.’" + }, + { + "verseNum": 8, + "text": "“You|strong=\"H4480\"* shall|strong=\"H3478\"* say|strong=\"H3478\"* to|strong=\"H3478\"* them|strong=\"H8432\"*, ‘Any|strong=\"H4480\"* man there|strong=\"H5927\"* is|strong=\"H3478\"* of|strong=\"H1004\"* the|strong=\"H8432\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, or|strong=\"H4480\"* of|strong=\"H1004\"* the|strong=\"H8432\"* strangers|strong=\"H1616\"* who|strong=\"H1616\"* live|strong=\"H1481\"* as|strong=\"H5927\"* foreigners|strong=\"H1616\"* among|strong=\"H8432\"* them|strong=\"H8432\"*, who|strong=\"H1616\"* offers|strong=\"H5927\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* or|strong=\"H4480\"* sacrifice|strong=\"H2077\"*," + }, + { + "verseNum": 9, + "text": "and|strong=\"H3068\"* doesn’t bring|strong=\"H6213\"* it|strong=\"H1931\"* to|strong=\"H3068\"* the|strong=\"H6213\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6213\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"* to|strong=\"H3068\"* sacrifice|strong=\"H6213\"* it|strong=\"H1931\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, that|strong=\"H5971\"* man shall|strong=\"H3068\"* be|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* his|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "“‘Any|strong=\"H3605\"* man|strong=\"H5315\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, or|strong=\"H4480\"* of|strong=\"H1004\"* the|strong=\"H3605\"* strangers|strong=\"H1616\"* who|strong=\"H3605\"* live|strong=\"H1481\"* as|strong=\"H5315\"* foreigners|strong=\"H1616\"* among|strong=\"H8432\"* them|strong=\"H5414\"*, who|strong=\"H3605\"* eats any|strong=\"H3605\"* kind of|strong=\"H1004\"* blood|strong=\"H1818\"*, I|strong=\"H5414\"* will|strong=\"H5971\"* set|strong=\"H5414\"* my|strong=\"H5414\"* face|strong=\"H6440\"* against|strong=\"H6440\"* that|strong=\"H5971\"* soul|strong=\"H5315\"* who|strong=\"H3605\"* eats blood|strong=\"H1818\"*, and|strong=\"H3478\"* will|strong=\"H5971\"* cut|strong=\"H3772\"* him|strong=\"H5414\"* off|strong=\"H3772\"* from|strong=\"H4480\"* among|strong=\"H8432\"* his|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* life|strong=\"H5315\"* of|strong=\"H4196\"* the|strong=\"H5921\"* flesh|strong=\"H1320\"* is|strong=\"H1931\"* in|strong=\"H5921\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*. I|strong=\"H3588\"* have|strong=\"H5414\"* given|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5921\"* you|strong=\"H3588\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* to|strong=\"H5921\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H3588\"* your|strong=\"H5414\"* souls|strong=\"H5315\"*; for|strong=\"H3588\"* it|strong=\"H5414\"* is|strong=\"H1931\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* that|strong=\"H3588\"* makes|strong=\"H5414\"* atonement|strong=\"H3722\"* by|strong=\"H5921\"* reason|strong=\"H5921\"* of|strong=\"H4196\"* the|strong=\"H5921\"* life|strong=\"H5315\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* have|strong=\"H1121\"* said|strong=\"H3651\"* to|strong=\"H3478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “No|strong=\"H3808\"* person|strong=\"H5315\"* among|strong=\"H8432\"* you|strong=\"H3605\"* may|strong=\"H3478\"* eat blood|strong=\"H1818\"*, nor|strong=\"H3808\"* may|strong=\"H3478\"* any|strong=\"H3605\"* stranger|strong=\"H1616\"* who|strong=\"H3605\"* lives|strong=\"H5315\"* as|strong=\"H5315\"* a|strong=\"H3068\"* foreigner|strong=\"H1121\"* among|strong=\"H8432\"* you|strong=\"H3605\"* eat blood|strong=\"H1818\"*.”" + }, + { + "verseNum": 13, + "text": "“‘Whatever man|strong=\"H1121\"* there|strong=\"H4480\"* is|strong=\"H3478\"* of|strong=\"H1121\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, or|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H8432\"* strangers|strong=\"H1616\"* who|strong=\"H1616\"* live|strong=\"H2416\"* as|strong=\"H1121\"* foreigners|strong=\"H1121\"* among|strong=\"H8432\"* them|strong=\"H8432\"*, who|strong=\"H1616\"* takes in|strong=\"H3478\"* hunting|strong=\"H6718\"* any|strong=\"H4480\"* animal|strong=\"H2416\"* or|strong=\"H1121\"* bird|strong=\"H5775\"* that|strong=\"H1616\"* may|strong=\"H3478\"* be|strong=\"H1121\"* eaten, he|strong=\"H4480\"* shall|strong=\"H1121\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* its|strong=\"H3680\"* blood|strong=\"H1818\"*, and|strong=\"H1121\"* cover|strong=\"H3680\"* it|strong=\"H8432\"* with|strong=\"H3680\"* dust|strong=\"H6083\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* as|strong=\"H5315\"* to|strong=\"H3478\"* the|strong=\"H3605\"* life|strong=\"H5315\"* of|strong=\"H1121\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*, its|strong=\"H3605\"* blood|strong=\"H1818\"* is|strong=\"H1931\"* with|strong=\"H3772\"* its|strong=\"H3605\"* life|strong=\"H5315\"*. Therefore|strong=\"H3588\"* I|strong=\"H3588\"* said to|strong=\"H3478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “You|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* eat the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H1121\"* any|strong=\"H3605\"* kind of|strong=\"H1121\"* flesh|strong=\"H1320\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* life|strong=\"H5315\"* of|strong=\"H1121\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"* is|strong=\"H1931\"* its|strong=\"H3605\"* blood|strong=\"H1818\"*. Whoever|strong=\"H3605\"* eats it|strong=\"H1931\"* shall|strong=\"H1121\"* be|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*.”" + }, + { + "verseNum": 15, + "text": "“‘Every|strong=\"H3605\"* person|strong=\"H5315\"* that|strong=\"H3605\"* eats what|strong=\"H2966\"* dies|strong=\"H5038\"* of|strong=\"H4325\"* itself|strong=\"H5038\"*, or|strong=\"H5704\"* that|strong=\"H3605\"* which|strong=\"H4325\"* is|strong=\"H5315\"* torn|strong=\"H2966\"* by|strong=\"H5704\"* animals, whether he|strong=\"H5704\"* is|strong=\"H5315\"* native-born or|strong=\"H5704\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"*, shall|strong=\"H5315\"* wash|strong=\"H3526\"* his|strong=\"H3605\"* clothes, and|strong=\"H4325\"* bathe|strong=\"H7364\"* himself|strong=\"H5315\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* be|strong=\"H5315\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*. Then|strong=\"H3605\"* he|strong=\"H5704\"* shall|strong=\"H5315\"* be|strong=\"H5315\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"H3808\"* if he|strong=\"H3808\"* doesn’t wash|strong=\"H3526\"* them|strong=\"H5375\"*, or|strong=\"H3808\"* bathe|strong=\"H7364\"* his|strong=\"H5375\"* flesh|strong=\"H1320\"*, then|strong=\"H5375\"* he|strong=\"H3808\"* shall|strong=\"H3808\"* bear|strong=\"H5375\"* his|strong=\"H5375\"* iniquity|strong=\"H5771\"*.’”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* say|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H1121\"*, ‘I|strong=\"H1121\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H6213\"* shall|strong=\"H4714\"* not|strong=\"H3808\"* do|strong=\"H6213\"* as|strong=\"H6213\"* they|strong=\"H8033\"* do|strong=\"H6213\"* in|strong=\"H3427\"* the|strong=\"H6213\"* land of|strong=\"H3427\"* Egypt|strong=\"H4714\"*, where|strong=\"H8033\"* you|strong=\"H6213\"* lived|strong=\"H3427\"*. You|strong=\"H6213\"* shall|strong=\"H4714\"* not|strong=\"H3808\"* do|strong=\"H6213\"* as|strong=\"H6213\"* they|strong=\"H8033\"* do|strong=\"H6213\"* in|strong=\"H3427\"* the|strong=\"H6213\"* land of|strong=\"H3427\"* Canaan|strong=\"H3667\"*, where|strong=\"H8033\"* I|strong=\"H4714\"* am bringing you|strong=\"H6213\"*. You|strong=\"H6213\"* shall|strong=\"H4714\"* not|strong=\"H3808\"* follow|strong=\"H3212\"* their|strong=\"H6213\"* statutes|strong=\"H2708\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H6213\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*. You|strong=\"H6213\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"* and|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* them|strong=\"H6213\"*. I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H6213\"* shall|strong=\"H3068\"* therefore|strong=\"H3068\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"* and|strong=\"H3068\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*, which|strong=\"H3068\"* if a|strong=\"H3068\"* man does|strong=\"H6213\"*, he|strong=\"H6213\"* shall|strong=\"H3068\"* live|strong=\"H2425\"* in|strong=\"H3068\"* them|strong=\"H6213\"*. I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "“‘None|strong=\"H3808\"* of|strong=\"H3068\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* approach|strong=\"H7126\"* any|strong=\"H3605\"* close|strong=\"H7126\"* relatives|strong=\"H7607\"*, to|strong=\"H3068\"* uncover|strong=\"H1540\"* their|strong=\"H3605\"* nakedness|strong=\"H6172\"*: I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H1540\"* nakedness|strong=\"H6172\"* of|strong=\"H3808\"* your|strong=\"H3808\"* father, nor|strong=\"H3808\"* the|strong=\"H1540\"* nakedness|strong=\"H6172\"* of|strong=\"H3808\"* your|strong=\"H3808\"* mother: she|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H3808\"* mother. You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* her|strong=\"H1540\"* nakedness|strong=\"H6172\"*." + }, + { + "verseNum": 8, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H1540\"* nakedness|strong=\"H6172\"* of|strong=\"H3808\"* your|strong=\"H3808\"* father’s wife. It|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H3808\"* father’s nakedness|strong=\"H6172\"*." + }, + { + "verseNum": 9, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H2351\"* nakedness|strong=\"H6172\"* of|strong=\"H1004\"* your|strong=\"H3808\"* sister, the|strong=\"H2351\"* daughter|strong=\"H1323\"* of|strong=\"H1004\"* your|strong=\"H3808\"* father, or|strong=\"H3808\"* the|strong=\"H2351\"* daughter|strong=\"H1323\"* of|strong=\"H1004\"* your|strong=\"H3808\"* mother, whether born|strong=\"H4138\"* at|strong=\"H1004\"* home|strong=\"H1004\"* or|strong=\"H3808\"* born|strong=\"H4138\"* abroad|strong=\"H2351\"*." + }, + { + "verseNum": 10, + "text": "“‘You|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H3588\"* nakedness|strong=\"H6172\"* of|strong=\"H1121\"* your|strong=\"H3588\"* son|strong=\"H1121\"*’s daughter|strong=\"H1323\"*, or|strong=\"H3808\"* of|strong=\"H1121\"* your|strong=\"H3588\"* daughter|strong=\"H1323\"*’s daughter|strong=\"H1323\"*, even|strong=\"H3588\"* their|strong=\"H3588\"* nakedness|strong=\"H6172\"*; for|strong=\"H3588\"* theirs|strong=\"H2007\"* is|strong=\"H1121\"* your|strong=\"H3588\"* own nakedness|strong=\"H6172\"*." + }, + { + "verseNum": 11, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H1323\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H1540\"* nakedness|strong=\"H6172\"* of|strong=\"H1323\"* your|strong=\"H3808\"* father’s wife’s daughter|strong=\"H1323\"*, conceived by|strong=\"H3808\"* your|strong=\"H3808\"* father, since she|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H3808\"* sister." + }, + { + "verseNum": 12, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H1540\"* nakedness|strong=\"H6172\"* of|strong=\"H3808\"* your|strong=\"H3808\"* father’s sister. She|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H3808\"* father’s near|strong=\"H7607\"* kinswoman|strong=\"H7607\"*." + }, + { + "verseNum": 13, + "text": "“‘You|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H3588\"* nakedness|strong=\"H6172\"* of|strong=\"H3808\"* your|strong=\"H3588\"* mother’s sister, for|strong=\"H3588\"* she|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H3588\"* mother’s near|strong=\"H7607\"* kinswoman|strong=\"H7607\"*." + }, + { + "verseNum": 14, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H7126\"* nakedness|strong=\"H6172\"* of|strong=\"H3808\"* your|strong=\"H3808\"* father’s brother. You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* approach|strong=\"H7126\"* his|strong=\"H7126\"* wife|strong=\"H1733\"*. She|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H3808\"* aunt|strong=\"H1733\"*." + }, + { + "verseNum": 15, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H1540\"* nakedness|strong=\"H6172\"* of|strong=\"H1121\"* your|strong=\"H3808\"* daughter-in-law|strong=\"H3618\"*. She|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H3808\"* son|strong=\"H1121\"*’s wife. You|strong=\"H3808\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* her|strong=\"H1540\"* nakedness|strong=\"H6172\"*." + }, + { + "verseNum": 16, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H1540\"* nakedness|strong=\"H6172\"* of|strong=\"H3808\"* your|strong=\"H3808\"* brother’s wife. It|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H3808\"* brother’s nakedness|strong=\"H6172\"*." + }, + { + "verseNum": 17, + "text": "“‘You|strong=\"H3947\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H3947\"* nakedness|strong=\"H6172\"* of|strong=\"H1121\"* a|strong=\"H3068\"* woman|strong=\"H1323\"* and|strong=\"H1121\"* her|strong=\"H1540\"* daughter|strong=\"H1323\"*. You|strong=\"H3947\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* take|strong=\"H3947\"* her|strong=\"H1540\"* son|strong=\"H1121\"*’s daughter|strong=\"H1323\"*, or|strong=\"H3808\"* her|strong=\"H1540\"* daughter|strong=\"H1323\"*’s daughter|strong=\"H1323\"*, to|strong=\"H1121\"* uncover|strong=\"H1540\"* her|strong=\"H1540\"* nakedness|strong=\"H6172\"*. They|strong=\"H3808\"* are|strong=\"H1121\"* near|strong=\"H3808\"* kinswomen|strong=\"H7608\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* wickedness|strong=\"H2154\"*." + }, + { + "verseNum": 18, + "text": "“‘You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife|strong=\"H2416\"* in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H5921\"* her|strong=\"H1540\"* sister, to|strong=\"H5921\"* be|strong=\"H3808\"* a|strong=\"H3068\"* rival|strong=\"H6887\"*, to|strong=\"H5921\"* uncover|strong=\"H1540\"* her|strong=\"H1540\"* nakedness|strong=\"H6172\"*, while|strong=\"H5921\"* her|strong=\"H1540\"* sister is|strong=\"H3808\"* still alive|strong=\"H2416\"*." + }, + { + "verseNum": 19, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* approach|strong=\"H7126\"* a|strong=\"H3068\"* woman|strong=\"H5079\"* to|strong=\"H1540\"* uncover|strong=\"H1540\"* her|strong=\"H1540\"* nakedness|strong=\"H6172\"*, as|strong=\"H1540\"* long as|strong=\"H1540\"* she|strong=\"H3808\"* is|strong=\"H2932\"* impure|strong=\"H2932\"* by|strong=\"H3808\"* her|strong=\"H1540\"* uncleanness|strong=\"H2932\"*." + }, + { + "verseNum": 20, + "text": "“‘You|strong=\"H5414\"* shall|strong=\"H2233\"* not|strong=\"H3808\"* lie|strong=\"H7903\"* carnally|strong=\"H2233\"* with|strong=\"H7903\"* your|strong=\"H5414\"* neighbor|strong=\"H5997\"*’s wife, and|strong=\"H2233\"* defile|strong=\"H2930\"* yourself|strong=\"H5414\"* with|strong=\"H7903\"* her|strong=\"H5414\"*." + }, + { + "verseNum": 21, + "text": "“‘You|strong=\"H5414\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* give|strong=\"H5414\"* any|strong=\"H5414\"* of|strong=\"H3068\"* your|strong=\"H3068\"* children|strong=\"H2233\"* as|strong=\"H3068\"* a|strong=\"H3068\"* sacrifice to|strong=\"H3068\"* Molech|strong=\"H4432\"*. You|strong=\"H5414\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* profane|strong=\"H2490\"* the|strong=\"H5414\"* name|strong=\"H8034\"* of|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. I|strong=\"H5414\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* lie|strong=\"H7901\"* with|strong=\"H7901\"* a|strong=\"H3068\"* man|strong=\"H2145\"* as|strong=\"H2145\"* with|strong=\"H7901\"* a|strong=\"H3068\"* woman. That|strong=\"H1931\"* is|strong=\"H1931\"* detestable|strong=\"H8441\"*." + }, + { + "verseNum": 23, + "text": "“‘You|strong=\"H5414\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* lie|strong=\"H7903\"* with|strong=\"H6440\"* any|strong=\"H3605\"* animal to|strong=\"H5414\"* defile|strong=\"H2930\"* yourself|strong=\"H5414\"* with|strong=\"H6440\"* it|strong=\"H5414\"*. No|strong=\"H3808\"* woman may|strong=\"H5414\"* give|strong=\"H5414\"* herself|strong=\"H1931\"* to|strong=\"H5414\"* an|strong=\"H5414\"* animal, to|strong=\"H5414\"* lie|strong=\"H7903\"* down|strong=\"H7250\"* with|strong=\"H6440\"* it|strong=\"H5414\"*: it|strong=\"H5414\"* is|strong=\"H1931\"* a|strong=\"H3068\"* perversion|strong=\"H8397\"*." + }, + { + "verseNum": 24, + "text": "“‘Don’t defile|strong=\"H2930\"* yourselves|strong=\"H2930\"* in|strong=\"H6440\"* any|strong=\"H3605\"* of|strong=\"H6440\"* these|strong=\"H3605\"* things|strong=\"H3605\"*; for|strong=\"H3588\"* in|strong=\"H6440\"* all|strong=\"H3605\"* these|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* which|strong=\"H1471\"* I|strong=\"H3588\"* am casting|strong=\"H7971\"* out|strong=\"H7971\"* before|strong=\"H6440\"* you|strong=\"H3588\"* were|strong=\"H1471\"* defiled|strong=\"H2930\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H5921\"* land was|strong=\"H3427\"* defiled|strong=\"H2930\"*. Therefore|strong=\"H5921\"* I|strong=\"H5921\"* punished|strong=\"H6485\"* its|strong=\"H5921\"* iniquity|strong=\"H5771\"*, and|strong=\"H3427\"* the|strong=\"H5921\"* land vomited out|strong=\"H6958\"* her|strong=\"H5921\"* inhabitants|strong=\"H3427\"*." + }, + { + "verseNum": 26, + "text": "You|strong=\"H3605\"* therefore|strong=\"H6213\"* shall|strong=\"H3808\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"* and|strong=\"H4941\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*, and|strong=\"H4941\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* do|strong=\"H6213\"* any|strong=\"H3605\"* of|strong=\"H8432\"* these|strong=\"H6213\"* abominations|strong=\"H8441\"*; neither|strong=\"H3808\"* the|strong=\"H3605\"* native-born, nor|strong=\"H3808\"* the|strong=\"H3605\"* stranger|strong=\"H1616\"* who|strong=\"H3605\"* lives|strong=\"H1481\"* as|strong=\"H6213\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"* among|strong=\"H8432\"* you|strong=\"H3605\"*" + }, + { + "verseNum": 27, + "text": "(for|strong=\"H3588\"* the|strong=\"H3605\"* men|strong=\"H6213\"* of|strong=\"H6440\"* the|strong=\"H3605\"* land|strong=\"H6440\"* that|strong=\"H3588\"* were|strong=\"H3605\"* before|strong=\"H6440\"* you|strong=\"H3588\"* had|strong=\"H3588\"* done|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* abominations|strong=\"H8441\"*, and|strong=\"H6440\"* the|strong=\"H3605\"* land|strong=\"H6440\"* became|strong=\"H2930\"* defiled|strong=\"H2930\"*)," + }, + { + "verseNum": 28, + "text": "that|strong=\"H1471\"* the|strong=\"H6440\"* land|strong=\"H6440\"* not|strong=\"H3808\"* vomit|strong=\"H6958\"* you|strong=\"H6440\"* out|strong=\"H6958\"* also|strong=\"H1471\"*, when you|strong=\"H6440\"* defile|strong=\"H2930\"* it|strong=\"H6440\"*, as|strong=\"H6440\"* it|strong=\"H6440\"* vomited out|strong=\"H6958\"* the|strong=\"H6440\"* nation|strong=\"H1471\"* that|strong=\"H1471\"* was|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 29, + "text": "“‘For|strong=\"H3588\"* whoever|strong=\"H3605\"* shall|strong=\"H5971\"* do|strong=\"H6213\"* any|strong=\"H3605\"* of|strong=\"H5971\"* these|strong=\"H6213\"* abominations|strong=\"H8441\"*, even|strong=\"H3588\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* that|strong=\"H3588\"* do|strong=\"H6213\"* them|strong=\"H6213\"* shall|strong=\"H5971\"* be|strong=\"H5315\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* among|strong=\"H7130\"* their|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 30, + "text": "Therefore|strong=\"H3068\"* you|strong=\"H6440\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* requirements, that|strong=\"H3068\"* you|strong=\"H6440\"* do|strong=\"H6213\"* not|strong=\"H3808\"* practice|strong=\"H6213\"* any|strong=\"H6213\"* of|strong=\"H3068\"* these|strong=\"H6213\"* abominable|strong=\"H8441\"* customs|strong=\"H2708\"* which|strong=\"H3068\"* were|strong=\"H3068\"* practiced|strong=\"H6213\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H3068\"* that|strong=\"H3068\"* you|strong=\"H6440\"* do|strong=\"H6213\"* not|strong=\"H3808\"* defile|strong=\"H2930\"* yourselves|strong=\"H2930\"* with|strong=\"H3068\"* them|strong=\"H6440\"*. I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H1961\"*, ‘You|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6918\"*; for|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, am|strong=\"H1961\"* holy|strong=\"H6918\"*." + }, + { + "verseNum": 3, + "text": "“‘Each one|strong=\"H3068\"* of|strong=\"H3068\"* you|strong=\"H3372\"* shall|strong=\"H3068\"* respect his|strong=\"H8104\"* mother and|strong=\"H3068\"* his|strong=\"H8104\"* father. You|strong=\"H3372\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* Sabbaths|strong=\"H7676\"*. I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "“‘Don’t turn|strong=\"H6437\"* to|strong=\"H3068\"* idols, nor|strong=\"H3808\"* make|strong=\"H6213\"* molten|strong=\"H4541\"* gods for|strong=\"H6213\"* yourselves|strong=\"H3068\"*. I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "“‘When|strong=\"H3588\"* you|strong=\"H3588\"* offer|strong=\"H2076\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* offer|strong=\"H2076\"* it|strong=\"H3588\"* so|strong=\"H3588\"* that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3068\"* be|strong=\"H3068\"* accepted|strong=\"H7522\"*." + }, + { + "verseNum": 6, + "text": "It|strong=\"H5704\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* eaten the|strong=\"H3117\"* same day|strong=\"H3117\"* you|strong=\"H3117\"* offer|strong=\"H2077\"* it|strong=\"H5704\"*, and|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H3117\"* next|strong=\"H4283\"* day|strong=\"H3117\"*. If anything remains|strong=\"H3498\"* until|strong=\"H5704\"* the|strong=\"H3117\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, it|strong=\"H5704\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 7, + "text": "If|strong=\"H1931\"* it|strong=\"H1931\"* is|strong=\"H1931\"* eaten at|strong=\"H3117\"* all|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H3117\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* an|strong=\"H7521\"* abomination|strong=\"H6292\"*. It|strong=\"H1931\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* accepted|strong=\"H7521\"*;" + }, + { + "verseNum": 8, + "text": "but|strong=\"H3588\"* everyone who|strong=\"H1931\"* eats it|strong=\"H1931\"* shall|strong=\"H3068\"* bear|strong=\"H5375\"* his|strong=\"H5375\"* iniquity|strong=\"H5771\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* has|strong=\"H3068\"* profaned|strong=\"H2490\"* the|strong=\"H3588\"* holy|strong=\"H6944\"* thing|strong=\"H6944\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* that|strong=\"H3588\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* his|strong=\"H5375\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 9, + "text": "“‘When|strong=\"H3615\"* you|strong=\"H3808\"* reap|strong=\"H7114\"* the|strong=\"H3615\"* harvest|strong=\"H7105\"* of|strong=\"H7704\"* your|strong=\"H3808\"* land|strong=\"H7704\"*, you|strong=\"H3808\"* shall|strong=\"H7704\"* not|strong=\"H3808\"* wholly reap|strong=\"H7114\"* the|strong=\"H3615\"* corners|strong=\"H6285\"* of|strong=\"H7704\"* your|strong=\"H3808\"* field|strong=\"H7704\"*, neither|strong=\"H3808\"* shall|strong=\"H7704\"* you|strong=\"H3808\"* gather|strong=\"H3950\"* the|strong=\"H3615\"* gleanings|strong=\"H3951\"* of|strong=\"H7704\"* your|strong=\"H3808\"* harvest|strong=\"H7105\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* glean|strong=\"H3950\"* your|strong=\"H3068\"* vineyard|strong=\"H3754\"*, neither|strong=\"H3808\"* shall|strong=\"H3068\"* you|strong=\"H3808\"* gather|strong=\"H3950\"* the|strong=\"H3068\"* fallen|strong=\"H6528\"* grapes of|strong=\"H3068\"* your|strong=\"H3068\"* vineyard|strong=\"H3754\"*. You|strong=\"H3808\"* shall|strong=\"H3068\"* leave|strong=\"H5800\"* them|strong=\"H5800\"* for|strong=\"H3068\"* the|strong=\"H3068\"* poor|strong=\"H6041\"* and|strong=\"H3068\"* for|strong=\"H3068\"* the|strong=\"H3068\"* foreigner|strong=\"H1616\"*. I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* steal|strong=\"H1589\"*." + }, + { + "verseNum": 12, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* my|strong=\"H3068\"* name|strong=\"H8034\"* falsely|strong=\"H8267\"*, and|strong=\"H3068\"* profane|strong=\"H2490\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "“‘You|strong=\"H5704\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* oppress|strong=\"H6231\"* your|strong=\"H3808\"* neighbor|strong=\"H7453\"*, nor|strong=\"H3808\"* rob|strong=\"H1497\"* him|strong=\"H5704\"*." + }, + { + "verseNum": 14, + "text": "“‘You|strong=\"H5414\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* curse|strong=\"H7043\"* the|strong=\"H6440\"* deaf|strong=\"H2795\"*, nor|strong=\"H3808\"* put|strong=\"H5414\"* a|strong=\"H3068\"* stumbling|strong=\"H4383\"* block|strong=\"H4383\"* before|strong=\"H6440\"* the|strong=\"H6440\"* blind|strong=\"H5787\"*; but|strong=\"H3808\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* fear|strong=\"H3372\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. I|strong=\"H5414\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "“‘You|strong=\"H6440\"* shall|strong=\"H3808\"* do|strong=\"H6213\"* no|strong=\"H3808\"* injustice|strong=\"H5766\"* in|strong=\"H6213\"* judgment|strong=\"H4941\"*. You|strong=\"H6440\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* partial|strong=\"H5375\"* to|strong=\"H6213\"* the|strong=\"H6440\"* poor|strong=\"H1800\"*, nor|strong=\"H3808\"* show|strong=\"H6213\"* favoritism to|strong=\"H6213\"* the|strong=\"H6440\"* great|strong=\"H1419\"*; but|strong=\"H3808\"* you|strong=\"H6440\"* shall|strong=\"H3808\"* judge|strong=\"H8199\"* your|strong=\"H5375\"* neighbor|strong=\"H5997\"* in|strong=\"H6213\"* righteousness|strong=\"H6664\"*." + }, + { + "verseNum": 16, + "text": "“‘You|strong=\"H5921\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3212\"* around|strong=\"H5921\"* as|strong=\"H3068\"* a|strong=\"H3068\"* slanderer|strong=\"H7400\"* among|strong=\"H5921\"* your|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 17, + "text": "“‘You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* hate|strong=\"H8130\"* your|strong=\"H5921\"* brother in|strong=\"H5921\"* your|strong=\"H5921\"* heart|strong=\"H3824\"*. You|strong=\"H5921\"* shall|strong=\"H3808\"* surely|strong=\"H3198\"* rebuke|strong=\"H3198\"* your|strong=\"H5921\"* neighbor|strong=\"H5997\"*, and|strong=\"H3824\"* not|strong=\"H3808\"* bear|strong=\"H5375\"* sin|strong=\"H2399\"* because|strong=\"H5921\"* of|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 18, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* take|strong=\"H5358\"* vengeance|strong=\"H5358\"*, nor|strong=\"H3808\"* bear|strong=\"H5201\"* any|strong=\"H5201\"* grudge|strong=\"H5201\"* against|strong=\"H3068\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H3068\"* people|strong=\"H5971\"*; but|strong=\"H3808\"* you|strong=\"H3808\"* shall|strong=\"H3068\"* love your|strong=\"H3068\"* neighbor|strong=\"H7453\"* as|strong=\"H3644\"* yourself. I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "“‘You|strong=\"H5921\"* shall|strong=\"H7704\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*." + }, + { + "verseNum": 20, + "text": "“‘If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H4191\"* lies|strong=\"H7901\"* carnally|strong=\"H2233\"* with|strong=\"H7901\"* a|strong=\"H3068\"* woman who|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* slave|strong=\"H8198\"* girl|strong=\"H8198\"*, pledged|strong=\"H5414\"* to|strong=\"H4191\"* be|strong=\"H1961\"* married to|strong=\"H4191\"* another|strong=\"H3808\"* man|strong=\"H4191\"*, and|strong=\"H4191\"* not|strong=\"H3808\"* ransomed|strong=\"H6299\"* or|strong=\"H3808\"* given|strong=\"H5414\"* her|strong=\"H5414\"* freedom|strong=\"H2668\"*; they|strong=\"H3588\"* shall|strong=\"H2233\"* be|strong=\"H1961\"* punished. They|strong=\"H3588\"* shall|strong=\"H2233\"* not|strong=\"H3808\"* be|strong=\"H1961\"* put|strong=\"H5414\"* to|strong=\"H4191\"* death|strong=\"H4191\"*, because|strong=\"H3588\"* she|strong=\"H1931\"* was|strong=\"H1961\"* not|strong=\"H3808\"* free|strong=\"H2666\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* bring his|strong=\"H3068\"* trespass offering|strong=\"H3068\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* the|strong=\"H3068\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H3068\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, even|strong=\"H3068\"* a|strong=\"H3068\"* ram for|strong=\"H3068\"* a|strong=\"H3068\"* trespass offering|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H6440\"* with|strong=\"H3068\"* the|strong=\"H6440\"* ram of|strong=\"H3068\"* the|strong=\"H6440\"* trespass|strong=\"H2398\"* offering|strong=\"H2403\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* for|strong=\"H5921\"* his|strong=\"H3068\"* sin|strong=\"H2403\"* which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* committed|strong=\"H2398\"*; and|strong=\"H3068\"* the|strong=\"H6440\"* sin|strong=\"H2403\"* which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* committed|strong=\"H2398\"* shall|strong=\"H3548\"* be|strong=\"H3068\"* forgiven|strong=\"H5545\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 23, + "text": "“‘When|strong=\"H3588\"* you|strong=\"H3588\"* come|strong=\"H1961\"* into|strong=\"H1961\"* the|strong=\"H3605\"* land, and|strong=\"H6086\"* have|strong=\"H1961\"* planted|strong=\"H5193\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H8141\"* trees|strong=\"H6086\"* for|strong=\"H3588\"* food|strong=\"H3978\"*, then|strong=\"H1961\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* count|strong=\"H8141\"* their|strong=\"H3605\"* fruit|strong=\"H6529\"* as|strong=\"H1961\"* forbidden|strong=\"H6189\"*.+ 19:23 literally, “uncircumcised”* For|strong=\"H3588\"* three|strong=\"H7969\"* years|strong=\"H8141\"* it|strong=\"H3588\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* forbidden|strong=\"H6189\"* to|strong=\"H1961\"* you|strong=\"H3588\"*. It|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H1961\"* eaten|strong=\"H3978\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H3605\"* fourth|strong=\"H7243\"* year|strong=\"H8141\"* all|strong=\"H3605\"* its|strong=\"H3605\"* fruit|strong=\"H6529\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6944\"*, for|strong=\"H3068\"* giving praise|strong=\"H1974\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 25, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* fifth|strong=\"H2549\"* year|strong=\"H8141\"* you|strong=\"H8141\"* shall|strong=\"H3068\"* eat its|strong=\"H6529\"* fruit|strong=\"H6529\"*, that|strong=\"H3068\"* it|strong=\"H3254\"* may|strong=\"H3068\"* yield|strong=\"H8393\"* its|strong=\"H6529\"* increase|strong=\"H8393\"* to|strong=\"H3068\"* you|strong=\"H8141\"*. I|strong=\"H8141\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 26, + "text": "“‘You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat any|strong=\"H3808\"* meat with|strong=\"H5921\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* still|strong=\"H6049\"* in|strong=\"H5921\"* it|strong=\"H5921\"*. You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* use enchantments|strong=\"H5172\"*, nor|strong=\"H3808\"* practice|strong=\"H5172\"* sorcery." + }, + { + "verseNum": 27, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* cut|strong=\"H2206\"* the|strong=\"H7843\"* hair|strong=\"H7218\"* on|strong=\"H6285\"* the|strong=\"H7843\"* sides|strong=\"H6285\"* of|strong=\"H7218\"* your|strong=\"H3808\"* head|strong=\"H7218\"* or|strong=\"H3808\"* clip off|strong=\"H7843\"* the|strong=\"H7843\"* edge of|strong=\"H7218\"* your|strong=\"H3808\"* beard|strong=\"H2206\"*." + }, + { + "verseNum": 28, + "text": "“‘You|strong=\"H5414\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* make|strong=\"H5414\"* any|strong=\"H5315\"* cuttings|strong=\"H8296\"* in|strong=\"H3068\"* your|strong=\"H3068\"* flesh|strong=\"H1320\"* for|strong=\"H3068\"* the|strong=\"H5414\"* dead|strong=\"H5315\"*, nor|strong=\"H3808\"* tattoo|strong=\"H3793\"* any|strong=\"H5315\"* marks|strong=\"H3793\"* on|strong=\"H3068\"* you|strong=\"H5414\"*. I|strong=\"H5414\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 29, + "text": "“‘Don’t profane|strong=\"H2490\"* your|strong=\"H3808\"* daughter|strong=\"H1323\"*, to|strong=\"H2490\"* make|strong=\"H2181\"* her|strong=\"H4390\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*; lest the|strong=\"H4390\"* land fall|strong=\"H2181\"* to|strong=\"H2490\"* prostitution, and|strong=\"H1323\"* the|strong=\"H4390\"* land become|strong=\"H2181\"* full|strong=\"H4390\"* of|strong=\"H1323\"* wickedness|strong=\"H2154\"*." + }, + { + "verseNum": 30, + "text": "“‘You|strong=\"H3372\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* Sabbaths|strong=\"H7676\"*, and|strong=\"H3068\"* reverence|strong=\"H3372\"* my|strong=\"H8104\"* sanctuary|strong=\"H4720\"*; I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 31, + "text": "“‘Don’t turn|strong=\"H6437\"* to|strong=\"H3068\"* those who|strong=\"H3068\"* are|strong=\"H3068\"* mediums, nor to|strong=\"H3068\"* the|strong=\"H3068\"* wizards|strong=\"H3049\"*. Don’t seek|strong=\"H1245\"* them|strong=\"H3068\"* out|strong=\"H1245\"*, to|strong=\"H3068\"* be|strong=\"H3068\"* defiled|strong=\"H2930\"* by|strong=\"H3068\"* them|strong=\"H3068\"*. I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 32, + "text": "“‘You|strong=\"H6440\"* shall|strong=\"H3068\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* before|strong=\"H6440\"* the|strong=\"H6440\"* gray|strong=\"H7872\"* head|strong=\"H7872\"* and|strong=\"H6965\"* honor|strong=\"H1921\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* elderly; and|strong=\"H6965\"* you|strong=\"H6440\"* shall|strong=\"H3068\"* fear|strong=\"H3372\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. I|strong=\"H6440\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 33, + "text": "“‘If|strong=\"H3588\"* a|strong=\"H3068\"* stranger|strong=\"H1616\"* lives|strong=\"H1481\"* as|strong=\"H3588\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"* with|strong=\"H1481\"* you|strong=\"H3588\"* in|strong=\"H1481\"* your|strong=\"H3588\"* land, you|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* do|strong=\"H3238\"* him|strong=\"H3588\"* wrong|strong=\"H3238\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"H3588\"* stranger|strong=\"H1616\"* who|strong=\"H3068\"* lives|strong=\"H1481\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"* with|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* to|strong=\"H3068\"* you|strong=\"H3588\"* as|strong=\"H1961\"* the|strong=\"H3588\"* native-born among|strong=\"H4480\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* love him|strong=\"H4480\"* as|strong=\"H1961\"* yourself; for|strong=\"H3588\"* you|strong=\"H3588\"* lived|strong=\"H1481\"* as|strong=\"H1961\"* foreigners|strong=\"H1616\"* in|strong=\"H3068\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*. I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 35, + "text": "“‘You|strong=\"H6213\"* shall|strong=\"H3808\"* do|strong=\"H6213\"* no|strong=\"H3808\"* unrighteousness|strong=\"H5766\"* in|strong=\"H6213\"* judgment|strong=\"H4941\"*, in|strong=\"H6213\"* measures|strong=\"H4060\"* of|strong=\"H4941\"* length, of|strong=\"H4941\"* weight|strong=\"H4948\"*, or|strong=\"H3808\"* of|strong=\"H4941\"* quantity." + }, + { + "verseNum": 36, + "text": "You|strong=\"H3318\"* shall|strong=\"H3068\"* have|strong=\"H1961\"* just|strong=\"H6664\"* balances|strong=\"H3976\"*, just|strong=\"H6664\"* weights, a|strong=\"H3068\"* just|strong=\"H6664\"* ephah,+ 19:36 1 ephah is about 22 liters or about 2/3 of a bushel* and|strong=\"H3068\"* a|strong=\"H3068\"* just|strong=\"H6664\"* hin|strong=\"H1969\"*.+ 19:36 A hin is about 6.5 liters or 1.7 gallons.* I|strong=\"H4714\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 37, + "text": "“‘You|strong=\"H3605\"* shall|strong=\"H3068\"* observe|strong=\"H8104\"* all|strong=\"H3605\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"* and|strong=\"H3068\"* all|strong=\"H3605\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"*. I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Moreover, you|strong=\"H5414\"* shall|strong=\"H1121\"* tell the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, ‘Anyone of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, or|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5414\"* strangers|strong=\"H1616\"* who|strong=\"H5971\"* live|strong=\"H1481\"* as|strong=\"H5971\"* foreigners|strong=\"H1121\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, who|strong=\"H5971\"* gives|strong=\"H5414\"* any|strong=\"H4480\"* of|strong=\"H1121\"* his|strong=\"H5414\"* offspring|strong=\"H2233\"*+ 20:2 or, seed* to|strong=\"H3478\"* Molech|strong=\"H4432\"* shall|strong=\"H1121\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H5414\"* to|strong=\"H3478\"* death|strong=\"H4191\"*. The|strong=\"H5414\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H5414\"* land shall|strong=\"H1121\"* stone|strong=\"H7275\"* that|strong=\"H5971\"* person with|strong=\"H5971\"* stones." + }, + { + "verseNum": 3, + "text": "I|strong=\"H3588\"* also|strong=\"H8034\"* will|strong=\"H5971\"* set|strong=\"H5414\"* my|strong=\"H5414\"* face|strong=\"H6440\"* against|strong=\"H6440\"* that|strong=\"H3588\"* person|strong=\"H6440\"*, and|strong=\"H5971\"* will|strong=\"H5971\"* cut|strong=\"H3772\"* him|strong=\"H5414\"* off|strong=\"H3772\"* from|strong=\"H6440\"* among|strong=\"H7130\"* his|strong=\"H5414\"* people|strong=\"H5971\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* has|strong=\"H3588\"* given|strong=\"H5414\"* of|strong=\"H6440\"* his|strong=\"H5414\"* offspring|strong=\"H2233\"* to|strong=\"H5414\"* Molech|strong=\"H4432\"*, to|strong=\"H5414\"* defile|strong=\"H2930\"* my|strong=\"H5414\"* sanctuary|strong=\"H6944\"*, and|strong=\"H5971\"* to|strong=\"H5414\"* profane|strong=\"H2490\"* my|strong=\"H5414\"* holy|strong=\"H6944\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 4, + "text": "If|strong=\"H1931\"* the|strong=\"H5414\"* people|strong=\"H5971\"* of|strong=\"H5869\"* the|strong=\"H5414\"* land all|strong=\"H5414\"* hide|strong=\"H5956\"* their|strong=\"H5414\"* eyes|strong=\"H5869\"* from|strong=\"H4480\"* that|strong=\"H5971\"* person|strong=\"H5869\"* when|strong=\"H4480\"* he|strong=\"H1931\"* gives|strong=\"H5414\"* of|strong=\"H5869\"* his|strong=\"H5414\"* offspring|strong=\"H2233\"* to|strong=\"H4191\"* Molech|strong=\"H4432\"*, and|strong=\"H5971\"* don’t put|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H4191\"* death|strong=\"H4191\"*," + }, + { + "verseNum": 5, + "text": "then|strong=\"H7760\"* I|strong=\"H7760\"* will|strong=\"H5971\"* set|strong=\"H7760\"* my|strong=\"H3605\"* face|strong=\"H6440\"* against|strong=\"H6440\"* that|strong=\"H5971\"* man|strong=\"H3605\"* and|strong=\"H5971\"* against|strong=\"H6440\"* his|strong=\"H3605\"* family|strong=\"H4940\"*, and|strong=\"H5971\"* will|strong=\"H5971\"* cut|strong=\"H3772\"* him|strong=\"H6440\"* off|strong=\"H3772\"*, and|strong=\"H5971\"* all|strong=\"H3605\"* who|strong=\"H3605\"* play|strong=\"H2181\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"* after him|strong=\"H6440\"* to|strong=\"H6440\"* play|strong=\"H2181\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"* with|strong=\"H6440\"* Molech|strong=\"H4432\"*, from|strong=\"H6440\"* among|strong=\"H7130\"* their|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 6, + "text": "“‘The|strong=\"H6440\"* person|strong=\"H5315\"* that|strong=\"H5971\"* turns|strong=\"H6437\"* to|strong=\"H5414\"* those|strong=\"H1931\"* who|strong=\"H1931\"* are|strong=\"H5971\"* mediums and|strong=\"H5971\"* wizards|strong=\"H3049\"*, to|strong=\"H5414\"* play|strong=\"H2181\"* the|strong=\"H6440\"* prostitute|strong=\"H2181\"* after|strong=\"H5315\"* them|strong=\"H5414\"*, I|strong=\"H5414\"* will|strong=\"H5971\"* even set|strong=\"H5414\"* my|strong=\"H5414\"* face|strong=\"H6440\"* against|strong=\"H6440\"* that|strong=\"H5971\"* person|strong=\"H5315\"*, and|strong=\"H5971\"* will|strong=\"H5971\"* cut|strong=\"H3772\"* him|strong=\"H5414\"* off|strong=\"H3772\"* from|strong=\"H6440\"* among|strong=\"H7130\"* his|strong=\"H5414\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 7, + "text": "“‘Sanctify|strong=\"H6942\"* yourselves|strong=\"H6942\"* therefore|strong=\"H3588\"*, and|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6918\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H6213\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"*. I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* sanctifies|strong=\"H6942\"* you|strong=\"H6213\"*." + }, + { + "verseNum": 9, + "text": "“‘For|strong=\"H3588\"* everyone who|strong=\"H3588\"* curses|strong=\"H7043\"* his|strong=\"H3588\"* father or|strong=\"H4191\"* his|strong=\"H3588\"* mother shall|strong=\"H1818\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. He|strong=\"H3588\"* has|strong=\"H3588\"* cursed|strong=\"H7043\"* his|strong=\"H3588\"* father or|strong=\"H4191\"* his|strong=\"H3588\"* mother. His|strong=\"H3588\"* blood|strong=\"H1818\"* shall|strong=\"H1818\"* be|strong=\"H4191\"* upon himself." + }, + { + "verseNum": 10, + "text": "“‘The|strong=\"H4191\"* man|strong=\"H4191\"* who commits|strong=\"H5003\"* adultery|strong=\"H5003\"* with|strong=\"H4191\"* another|strong=\"H7453\"* man|strong=\"H4191\"*’s wife, even|strong=\"H7453\"* he who commits|strong=\"H5003\"* adultery|strong=\"H5003\"* with|strong=\"H4191\"* his|strong=\"H4191\"* neighbor|strong=\"H7453\"*’s wife, the|strong=\"H4191\"* adulterer|strong=\"H5003\"* and|strong=\"H4191\"* the|strong=\"H4191\"* adulteress|strong=\"H5003\"* shall|strong=\"H7453\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 11, + "text": "“‘The|strong=\"H4191\"* man|strong=\"H4191\"* who lies|strong=\"H7901\"* with|strong=\"H7901\"* his|strong=\"H1540\"* father’s wife has|strong=\"H7901\"* uncovered|strong=\"H1540\"* his|strong=\"H1540\"* father’s nakedness|strong=\"H6172\"*. Both|strong=\"H8147\"* of|strong=\"H1818\"* them|strong=\"H8147\"* shall|strong=\"H1818\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. Their|strong=\"H1540\"* blood|strong=\"H1818\"* shall|strong=\"H1818\"* be|strong=\"H4191\"* upon|strong=\"H7901\"* themselves." + }, + { + "verseNum": 12, + "text": "“‘If a|strong=\"H3068\"* man|strong=\"H4191\"* lies|strong=\"H7901\"* with|strong=\"H6213\"* his|strong=\"H6213\"* daughter-in-law|strong=\"H3618\"*, both|strong=\"H8147\"* of|strong=\"H1818\"* them|strong=\"H6213\"* shall|strong=\"H1818\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. They|strong=\"H6213\"* have|strong=\"H8147\"* committed|strong=\"H6213\"* a|strong=\"H3068\"* perversion|strong=\"H8397\"*. Their|strong=\"H6213\"* blood|strong=\"H1818\"* shall|strong=\"H1818\"* be|strong=\"H4191\"* upon|strong=\"H6213\"* themselves|strong=\"H6213\"*." + }, + { + "verseNum": 13, + "text": "“‘If a|strong=\"H3068\"* man|strong=\"H2145\"* lies|strong=\"H7901\"* with|strong=\"H6213\"* a|strong=\"H3068\"* male|strong=\"H2145\"*, as|strong=\"H6213\"* with|strong=\"H6213\"* a|strong=\"H3068\"* woman, both|strong=\"H8147\"* of|strong=\"H1818\"* them|strong=\"H6213\"* have|strong=\"H8147\"* committed|strong=\"H6213\"* an|strong=\"H6213\"* abomination|strong=\"H8441\"*. They|strong=\"H6213\"* shall|strong=\"H4904\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. Their|strong=\"H6213\"* blood|strong=\"H1818\"* shall|strong=\"H4904\"* be|strong=\"H4191\"* upon|strong=\"H6213\"* themselves|strong=\"H6213\"*." + }, + { + "verseNum": 14, + "text": "“‘If|strong=\"H1961\"* a|strong=\"H3068\"* man takes|strong=\"H3947\"* a|strong=\"H3068\"* wife and|strong=\"H3947\"* her|strong=\"H3947\"* mother, it|strong=\"H1931\"* is|strong=\"H1931\"* wickedness|strong=\"H2154\"*. They|strong=\"H3808\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire, both he|strong=\"H1931\"* and|strong=\"H3947\"* they|strong=\"H3808\"*, that|strong=\"H1931\"* there|strong=\"H1961\"* may|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3808\"* wickedness|strong=\"H2154\"* among|strong=\"H8432\"* you|strong=\"H3947\"*." + }, + { + "verseNum": 15, + "text": "“‘If a|strong=\"H3068\"* man|strong=\"H4191\"* lies|strong=\"H5414\"* with|strong=\"H4191\"* an|strong=\"H5414\"* animal, he|strong=\"H5414\"* shall|strong=\"H4191\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H5414\"* to|strong=\"H4191\"* death|strong=\"H4191\"*; and|strong=\"H4191\"* you|strong=\"H5414\"* shall|strong=\"H4191\"* kill|strong=\"H2026\"* the|strong=\"H5414\"* animal." + }, + { + "verseNum": 16, + "text": "“‘If a|strong=\"H3068\"* woman approaches|strong=\"H7126\"* any|strong=\"H3605\"* animal and|strong=\"H1818\"* lies with|strong=\"H3605\"* it|strong=\"H7126\"*, you|strong=\"H3605\"* shall|strong=\"H1818\"* kill|strong=\"H2026\"* the|strong=\"H3605\"* woman and|strong=\"H1818\"* the|strong=\"H3605\"* animal. They|strong=\"H3605\"* shall|strong=\"H1818\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. Their|strong=\"H3605\"* blood|strong=\"H1818\"* shall|strong=\"H1818\"* be|strong=\"H4191\"* upon them|strong=\"H7126\"*." + }, + { + "verseNum": 17, + "text": "“‘If|strong=\"H7200\"* a|strong=\"H3068\"* man|strong=\"H1121\"* takes|strong=\"H3947\"* his|strong=\"H5375\"* sister—his|strong=\"H5375\"* father|strong=\"H1121\"*’s daughter|strong=\"H1323\"*, or|strong=\"H1121\"* his|strong=\"H5375\"* mother’s daughter|strong=\"H1323\"*—and|strong=\"H1121\"* sees|strong=\"H7200\"* her|strong=\"H1540\"* nakedness|strong=\"H6172\"*, and|strong=\"H1121\"* she|strong=\"H1931\"* sees|strong=\"H7200\"* his|strong=\"H5375\"* nakedness|strong=\"H6172\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* shameful thing|strong=\"H2617\"*. They|strong=\"H1931\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* in|strong=\"H1121\"* the|strong=\"H7200\"* sight|strong=\"H5869\"* of|strong=\"H1121\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* their|strong=\"H5375\"* people|strong=\"H5971\"*. He|strong=\"H1931\"* has|strong=\"H5869\"* uncovered|strong=\"H1540\"* his|strong=\"H5375\"* sister’s nakedness|strong=\"H6172\"*. He|strong=\"H1931\"* shall|strong=\"H1121\"* bear|strong=\"H5375\"* his|strong=\"H5375\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 18, + "text": "“‘If|strong=\"H1931\"* a|strong=\"H3068\"* man lies|strong=\"H7901\"* with|strong=\"H7901\"* a|strong=\"H3068\"* woman|strong=\"H1739\"* having her|strong=\"H1540\"* monthly period, and|strong=\"H5971\"* uncovers|strong=\"H1540\"* her|strong=\"H1540\"* nakedness|strong=\"H6172\"*, he|strong=\"H1931\"* has|strong=\"H7901\"* made|strong=\"H3772\"* her|strong=\"H1540\"* fountain|strong=\"H4726\"* naked|strong=\"H6168\"*, and|strong=\"H5971\"* she|strong=\"H1931\"* has|strong=\"H7901\"* uncovered|strong=\"H1540\"* the|strong=\"H3772\"* fountain|strong=\"H4726\"* of|strong=\"H5971\"* her|strong=\"H1540\"* blood|strong=\"H1818\"*. Both|strong=\"H8147\"* of|strong=\"H5971\"* them|strong=\"H8147\"* shall|strong=\"H5971\"* be|strong=\"H5971\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* among|strong=\"H7130\"* their|strong=\"H7130\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 19, + "text": "“‘You|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H3588\"* nakedness|strong=\"H6172\"* of|strong=\"H5771\"* your|strong=\"H5375\"* mother’s sister, nor|strong=\"H3808\"* of|strong=\"H5771\"* your|strong=\"H5375\"* father’s sister, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* made|strong=\"H6168\"* his|strong=\"H5375\"* close relative|strong=\"H7607\"* naked|strong=\"H6168\"*. They|strong=\"H3588\"* shall|strong=\"H3808\"* bear|strong=\"H5375\"* their|strong=\"H5375\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 20, + "text": "If a|strong=\"H3068\"* man|strong=\"H4191\"* lies|strong=\"H7901\"* with|strong=\"H7901\"* his|strong=\"H5375\"* uncle|strong=\"H1730\"*’s wife|strong=\"H1733\"*, he has|strong=\"H7901\"* uncovered|strong=\"H1540\"* his|strong=\"H5375\"* uncle|strong=\"H1730\"*’s nakedness|strong=\"H6172\"*. They|strong=\"H1540\"* shall|strong=\"H4191\"* bear|strong=\"H5375\"* their|strong=\"H5375\"* sin|strong=\"H2399\"*. They|strong=\"H1540\"* shall|strong=\"H4191\"* die|strong=\"H4191\"* childless|strong=\"H6185\"*." + }, + { + "verseNum": 21, + "text": "“‘If|strong=\"H1961\"* a|strong=\"H3068\"* man takes|strong=\"H3947\"* his|strong=\"H3947\"* brother’s wife, it|strong=\"H1931\"* is|strong=\"H1931\"* an|strong=\"H1961\"* impurity|strong=\"H5079\"*. He|strong=\"H1931\"* has|strong=\"H1961\"* uncovered|strong=\"H1540\"* his|strong=\"H3947\"* brother’s nakedness|strong=\"H6172\"*. They|strong=\"H1931\"* shall|strong=\"H1931\"* be|strong=\"H1961\"* childless|strong=\"H6185\"*." + }, + { + "verseNum": 22, + "text": "“‘You|strong=\"H3605\"* shall|strong=\"H3808\"* therefore|strong=\"H6213\"* keep|strong=\"H8104\"* all|strong=\"H3605\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"* and|strong=\"H4941\"* all|strong=\"H3605\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*, and|strong=\"H4941\"* do|strong=\"H6213\"* them|strong=\"H6213\"*, that|strong=\"H3605\"* the|strong=\"H3605\"* land where|strong=\"H8033\"* I|strong=\"H3808\"* am bringing you|strong=\"H3605\"* to|strong=\"H6213\"* dwell|strong=\"H3427\"* may|strong=\"H6213\"* not|strong=\"H3808\"* vomit|strong=\"H6958\"* you|strong=\"H3605\"* out|strong=\"H6958\"*." + }, + { + "verseNum": 23, + "text": "You|strong=\"H3588\"* shall|strong=\"H1471\"* not|strong=\"H3808\"* walk|strong=\"H3212\"* in|strong=\"H6213\"* the|strong=\"H3605\"* customs|strong=\"H2708\"* of|strong=\"H6440\"* the|strong=\"H3605\"* nation|strong=\"H1471\"* which|strong=\"H1471\"* I|strong=\"H3588\"* am casting|strong=\"H7971\"* out|strong=\"H7971\"* before|strong=\"H6440\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* did|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* things|strong=\"H3605\"*, and|strong=\"H7971\"* therefore|strong=\"H3588\"* I|strong=\"H3588\"* abhorred|strong=\"H6973\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"H5971\"* I|strong=\"H5414\"* have|strong=\"H3068\"* said to|strong=\"H3068\"* you|strong=\"H5414\"*, “You|strong=\"H5414\"* shall|strong=\"H3068\"* inherit|strong=\"H3423\"* their|strong=\"H3068\"* land, and|strong=\"H3068\"* I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* you|strong=\"H5414\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H5414\"*, a|strong=\"H3068\"* land flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H3068\"* honey|strong=\"H1706\"*.” I|strong=\"H5414\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H5971\"* has|strong=\"H3068\"* separated you|strong=\"H5414\"* from|strong=\"H4480\"* the|strong=\"H5414\"* peoples|strong=\"H5971\"*." + }, + { + "verseNum": 25, + "text": "“‘You|strong=\"H3605\"* shall|strong=\"H5315\"* therefore make|strong=\"H2930\"* a|strong=\"H3068\"* distinction between the|strong=\"H3605\"* clean|strong=\"H2889\"* animal and|strong=\"H5315\"* the|strong=\"H3605\"* unclean|strong=\"H2931\"*, and|strong=\"H5315\"* between the|strong=\"H3605\"* unclean|strong=\"H2931\"* fowl|strong=\"H5775\"* and|strong=\"H5315\"* the|strong=\"H3605\"* clean|strong=\"H2889\"*. You|strong=\"H3605\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* make|strong=\"H2930\"* yourselves|strong=\"H5315\"* abominable|strong=\"H8262\"* by|strong=\"H3808\"* animal, or|strong=\"H3808\"* by|strong=\"H3808\"* bird|strong=\"H5775\"*, or|strong=\"H3808\"* by|strong=\"H3808\"* anything|strong=\"H3605\"* with|strong=\"H5315\"* which|strong=\"H5315\"* the|strong=\"H3605\"* ground teems, which|strong=\"H5315\"* I|strong=\"H5315\"* have|strong=\"H3605\"* separated from|strong=\"H5315\"* you|strong=\"H3605\"* as|strong=\"H5315\"* unclean|strong=\"H2931\"* for|strong=\"H5315\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 26, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6918\"* to|strong=\"H3068\"* me|strong=\"H4480\"*, for|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, am|strong=\"H1961\"* holy|strong=\"H6918\"*, and|strong=\"H3068\"* have|strong=\"H1961\"* set you|strong=\"H3588\"* apart from|strong=\"H4480\"* the|strong=\"H3588\"* peoples|strong=\"H5971\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H3068\"* be|strong=\"H1961\"* mine|strong=\"H4480\"*." + }, + { + "verseNum": 27, + "text": "“‘A|strong=\"H3068\"* man|strong=\"H4191\"* or|strong=\"H4191\"* a|strong=\"H3068\"* woman that|strong=\"H3588\"* is|strong=\"H1961\"* a|strong=\"H3068\"* medium or|strong=\"H4191\"* is|strong=\"H1961\"* a|strong=\"H3068\"* wizard|strong=\"H3049\"* shall|strong=\"H1818\"* surely|strong=\"H4191\"* be|strong=\"H1961\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. They|strong=\"H3588\"* shall|strong=\"H1818\"* be|strong=\"H1961\"* stoned|strong=\"H7275\"* with|strong=\"H4191\"* stones. Their|strong=\"H3588\"* blood|strong=\"H1818\"* shall|strong=\"H1818\"* be|strong=\"H1961\"* upon|strong=\"H1961\"* themselves.’”" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Speak to|strong=\"H3068\"* the|strong=\"H3068\"* priests|strong=\"H3548\"*, the|strong=\"H3068\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, and|strong=\"H1121\"* say to|strong=\"H3068\"* them|strong=\"H1121\"*, ‘A|strong=\"H3068\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* defile|strong=\"H2930\"* himself|strong=\"H5315\"* for|strong=\"H3068\"* the|strong=\"H3068\"* dead|strong=\"H5315\"* among|strong=\"H5971\"* his|strong=\"H3068\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 2, + "text": "except|strong=\"H3588\"* for|strong=\"H3588\"* his|strong=\"H3588\"* relatives|strong=\"H7607\"* that|strong=\"H3588\"* are|strong=\"H1121\"* near|strong=\"H7138\"* to|strong=\"H1121\"* him|strong=\"H3588\"*: for|strong=\"H3588\"* his|strong=\"H3588\"* mother, for|strong=\"H3588\"* his|strong=\"H3588\"* father|strong=\"H1121\"*, for|strong=\"H3588\"* his|strong=\"H3588\"* son|strong=\"H1121\"*, for|strong=\"H3588\"* his|strong=\"H3588\"* daughter|strong=\"H1323\"*, for|strong=\"H3588\"* his|strong=\"H3588\"* brother," + }, + { + "verseNum": 3, + "text": "and|strong=\"H1961\"* for|strong=\"H1961\"* his|strong=\"H1961\"* virgin|strong=\"H1330\"* sister who|strong=\"H7138\"* is|strong=\"H1961\"* near|strong=\"H7138\"* to|strong=\"H1961\"* him|strong=\"H2930\"*, who|strong=\"H7138\"* has|strong=\"H1961\"* had|strong=\"H1961\"* no|strong=\"H3808\"* husband; for|strong=\"H1961\"* her|strong=\"H1961\"* he|strong=\"H3808\"* may|strong=\"H1961\"* defile|strong=\"H2930\"* himself|strong=\"H2930\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3808\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* defile|strong=\"H2930\"* himself|strong=\"H2930\"*, being|strong=\"H5971\"* a|strong=\"H3068\"* chief man|strong=\"H1167\"* among|strong=\"H5971\"* his|strong=\"H2930\"* people|strong=\"H5971\"*, to|strong=\"H2490\"* profane|strong=\"H2490\"* himself|strong=\"H2930\"*." + }, + { + "verseNum": 5, + "text": "“‘They|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* shave|strong=\"H1548\"* their|strong=\"H3808\"* heads|strong=\"H7218\"* or|strong=\"H3808\"* shave|strong=\"H1548\"* off|strong=\"H1548\"* the|strong=\"H3808\"* corners|strong=\"H6285\"* of|strong=\"H7218\"* their|strong=\"H3808\"* beards|strong=\"H2206\"* or|strong=\"H3808\"* make|strong=\"H7139\"* any|strong=\"H8295\"* cuttings|strong=\"H8296\"* in|strong=\"H1320\"* their|strong=\"H3808\"* flesh|strong=\"H1320\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H1992\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* not|strong=\"H3808\"* profane|strong=\"H2490\"* the|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* offer|strong=\"H7126\"* the|strong=\"H3588\"* offerings|strong=\"H3588\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* made|strong=\"H1961\"* by|strong=\"H3068\"* fire, the|strong=\"H3588\"* bread|strong=\"H3899\"* of|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*. Therefore|strong=\"H3588\"* they|strong=\"H1992\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 7, + "text": "“‘They|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* marry|strong=\"H3947\"* a|strong=\"H3068\"* woman|strong=\"H1644\"* who|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*, or|strong=\"H3808\"* profane|strong=\"H2491\"*. A|strong=\"H3068\"* priest shall|strong=\"H3808\"* not|strong=\"H3808\"* marry|strong=\"H3947\"* a|strong=\"H3068\"* woman|strong=\"H1644\"* divorced|strong=\"H1644\"* from|strong=\"H3947\"* her|strong=\"H3947\"* husband; for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* holy|strong=\"H6918\"* to|strong=\"H3808\"* his|strong=\"H3947\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* sanctify|strong=\"H6942\"* him|strong=\"H1931\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* offers|strong=\"H7126\"* the|strong=\"H3588\"* bread|strong=\"H3899\"* of|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. He|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6918\"* to|strong=\"H3068\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, who|strong=\"H1931\"* sanctify|strong=\"H6942\"* you|strong=\"H3588\"*, am|strong=\"H1961\"* holy|strong=\"H6918\"*." + }, + { + "verseNum": 9, + "text": "“‘The|strong=\"H3588\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* any|strong=\"H3588\"* priest|strong=\"H3548\"*, if|strong=\"H3588\"* she|strong=\"H1931\"* profanes|strong=\"H2490\"* herself|strong=\"H1931\"* by|strong=\"H3588\"* playing|strong=\"H2181\"* the|strong=\"H3588\"* prostitute|strong=\"H2181\"*, she|strong=\"H1931\"* profanes|strong=\"H2490\"* her|strong=\"H1931\"* father. She|strong=\"H1931\"* shall|strong=\"H3548\"* be|strong=\"H3548\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 10, + "text": "“‘He|strong=\"H3027\"* who|strong=\"H3548\"* is|strong=\"H3027\"* the|strong=\"H5921\"* high|strong=\"H1419\"* priest|strong=\"H3548\"* among|strong=\"H5921\"* his|strong=\"H5921\"* brothers, upon|strong=\"H5921\"* whose head|strong=\"H7218\"* the|strong=\"H5921\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"* is|strong=\"H3027\"* poured|strong=\"H3332\"*, and|strong=\"H1419\"* who|strong=\"H3548\"* is|strong=\"H3027\"* consecrated|strong=\"H4390\"* to|strong=\"H5921\"* put|strong=\"H3847\"* on|strong=\"H5921\"* the|strong=\"H5921\"* garments, shall|strong=\"H3548\"* not|strong=\"H3808\"* let|strong=\"H3808\"* the|strong=\"H5921\"* hair|strong=\"H7218\"* of|strong=\"H3027\"* his|strong=\"H5921\"* head|strong=\"H7218\"* hang loose|strong=\"H5921\"*, or|strong=\"H3808\"* tear|strong=\"H6533\"* his|strong=\"H5921\"* clothes|strong=\"H3847\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3605\"* must|strong=\"H4191\"* not|strong=\"H3808\"* go in|strong=\"H5921\"* to|strong=\"H4191\"* any|strong=\"H3605\"* dead|strong=\"H4191\"* body|strong=\"H5315\"*, or|strong=\"H3808\"* defile|strong=\"H2930\"* himself|strong=\"H5315\"* for|strong=\"H5921\"* his|strong=\"H3605\"* father or|strong=\"H3808\"* for|strong=\"H5921\"* his|strong=\"H3605\"* mother." + }, + { + "verseNum": 12, + "text": "He|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H5921\"* sanctuary|strong=\"H4720\"*, nor|strong=\"H3808\"* profane|strong=\"H2490\"* the|strong=\"H5921\"* sanctuary|strong=\"H4720\"* of|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*; for|strong=\"H3588\"* the|strong=\"H5921\"* crown|strong=\"H5145\"* of|strong=\"H3068\"* the|strong=\"H5921\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"* of|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"* is|strong=\"H3068\"* upon|strong=\"H5921\"* him|strong=\"H5921\"*. I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "“‘He|strong=\"H1931\"* shall|strong=\"H1931\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife in|strong=\"H3947\"* her|strong=\"H3947\"* virginity|strong=\"H1331\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3588\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* marry|strong=\"H3947\"* a|strong=\"H3068\"* widow, or|strong=\"H3808\"* one|strong=\"H3808\"* divorced|strong=\"H1644\"*, or|strong=\"H3808\"* a|strong=\"H3068\"* woman|strong=\"H1644\"* who|strong=\"H5971\"* has|strong=\"H3588\"* been|strong=\"H5971\"* defiled, or|strong=\"H3808\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*. He|strong=\"H3588\"* shall|strong=\"H5971\"* take|strong=\"H3947\"* a|strong=\"H3068\"* virgin|strong=\"H1330\"* of|strong=\"H5971\"* his|strong=\"H3947\"* own|strong=\"H5971\"* people|strong=\"H5971\"* as|strong=\"H3588\"* a|strong=\"H3068\"* wife." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* profane|strong=\"H2490\"* his|strong=\"H3068\"* offspring|strong=\"H2233\"* among|strong=\"H5971\"* his|strong=\"H3068\"* people|strong=\"H5971\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H5971\"* sanctifies|strong=\"H6942\"* him|strong=\"H3588\"*.’”" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 17, + "text": "“Say|strong=\"H1696\"* to|strong=\"H1696\"* Aaron, ‘None|strong=\"H3808\"* of|strong=\"H2233\"* your|strong=\"H1961\"* offspring|strong=\"H2233\"* throughout|strong=\"H1755\"* their|strong=\"H7126\"* generations|strong=\"H1755\"* who|strong=\"H3808\"* has|strong=\"H1961\"* a|strong=\"H3068\"* defect|strong=\"H3971\"* may|strong=\"H1961\"* approach|strong=\"H7126\"* to|strong=\"H1696\"* offer|strong=\"H7126\"* the|strong=\"H7126\"* bread|strong=\"H3899\"* of|strong=\"H2233\"* his|strong=\"H7126\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* whatever|strong=\"H3605\"* man|strong=\"H3605\"* he|strong=\"H3588\"* is|strong=\"H3605\"* that|strong=\"H3588\"* has|strong=\"H3588\"* a|strong=\"H3068\"* defect|strong=\"H3971\"*, he|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* draw|strong=\"H7126\"* near|strong=\"H7126\"*: a|strong=\"H3068\"* blind|strong=\"H5787\"* man|strong=\"H3605\"*, or|strong=\"H3808\"* a|strong=\"H3068\"* lame|strong=\"H6455\"*, or|strong=\"H3808\"* he|strong=\"H3588\"* who|strong=\"H3605\"* has|strong=\"H3588\"* a|strong=\"H3068\"* flat nose|strong=\"H2763\"*, or|strong=\"H3808\"* any|strong=\"H3605\"* deformity," + }, + { + "verseNum": 19, + "text": "or|strong=\"H3027\"* a|strong=\"H3068\"* man who has|strong=\"H1961\"* an|strong=\"H1961\"* injured foot|strong=\"H7272\"*, or|strong=\"H3027\"* an|strong=\"H1961\"* injured hand|strong=\"H3027\"*," + }, + { + "verseNum": 20, + "text": "or hunchbacked, or a|strong=\"H3068\"* dwarf|strong=\"H1851\"*, or one who has|strong=\"H5869\"* a|strong=\"H3068\"* defect|strong=\"H8400\"* in|strong=\"H5869\"* his|strong=\"H5869\"* eye|strong=\"H5869\"*, or an itching disease, or scabs|strong=\"H3217\"*, or who has|strong=\"H5869\"* damaged testicles." + }, + { + "verseNum": 21, + "text": "No|strong=\"H3808\"* man|strong=\"H3605\"* of|strong=\"H3068\"* the|strong=\"H3605\"* offspring|strong=\"H2233\"* of|strong=\"H3068\"* Aaron the|strong=\"H3605\"* priest|strong=\"H3548\"* who|strong=\"H3605\"* has|strong=\"H3068\"* a|strong=\"H3068\"* defect|strong=\"H3971\"* shall|strong=\"H3548\"* come|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H3068\"* offer|strong=\"H7126\"* the|strong=\"H3605\"* offerings|strong=\"H3068\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire. Since he|strong=\"H3068\"* has|strong=\"H3068\"* a|strong=\"H3068\"* defect|strong=\"H3971\"*, he|strong=\"H3068\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* come|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H3068\"* offer|strong=\"H7126\"* the|strong=\"H3605\"* bread|strong=\"H3899\"* of|strong=\"H3068\"* his|strong=\"H3605\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H4480\"* shall eat|strong=\"H3899\"* the|strong=\"H4480\"* bread|strong=\"H3899\"* of|strong=\"H4480\"* his|strong=\"H4480\"* God, both|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*, and|strong=\"H3899\"* of|strong=\"H4480\"* the|strong=\"H4480\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3068\"* the|strong=\"H3588\"* veil|strong=\"H6532\"*, nor|strong=\"H3808\"* come|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3068\"* the|strong=\"H3588\"* altar|strong=\"H4196\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* a|strong=\"H3068\"* defect|strong=\"H3971\"*; that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H3068\"* not|strong=\"H3808\"* profane|strong=\"H2490\"* my|strong=\"H3068\"* sanctuaries|strong=\"H4720\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* sanctifies|strong=\"H6942\"* them|strong=\"H6942\"*.’”" + }, + { + "verseNum": 24, + "text": "So|strong=\"H1696\"* Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Aaron, and|strong=\"H1121\"* to|strong=\"H1696\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Tell|strong=\"H1696\"* Aaron and|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"* to|strong=\"H1696\"* separate|strong=\"H5144\"* themselves|strong=\"H1992\"* from|strong=\"H3478\"* the|strong=\"H3068\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* of|strong=\"H1121\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, which|strong=\"H3068\"* they|strong=\"H1992\"* make|strong=\"H8034\"* holy|strong=\"H6944\"* to|strong=\"H1696\"* me|strong=\"H1696\"*, and|strong=\"H1121\"* that|strong=\"H3068\"* they|strong=\"H1992\"* not|strong=\"H3808\"* profane|strong=\"H2490\"* my|strong=\"H3068\"* holy|strong=\"H6944\"* name|strong=\"H8034\"*. I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "“Tell|strong=\"H3605\"* them|strong=\"H5921\"*, ‘If|strong=\"H1931\"* anyone|strong=\"H3605\"* of|strong=\"H1121\"* all|strong=\"H3605\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"* throughout|strong=\"H3605\"* your|strong=\"H3068\"* generations|strong=\"H1755\"* approaches|strong=\"H7126\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* which|strong=\"H1931\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* make|strong=\"H3772\"* holy|strong=\"H6944\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, having|strong=\"H5315\"* his|strong=\"H3605\"* uncleanness|strong=\"H2932\"* on|strong=\"H5921\"* him|strong=\"H6440\"*, that|strong=\"H3605\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H6440\"* before|strong=\"H6440\"* me|strong=\"H6440\"*. I|strong=\"H5921\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "“‘Whoever|strong=\"H3605\"* of|strong=\"H2233\"* the|strong=\"H3605\"* offspring|strong=\"H2233\"* of|strong=\"H2233\"* Aaron is|strong=\"H1931\"* a|strong=\"H3068\"* leper|strong=\"H6879\"* or|strong=\"H3808\"* has|strong=\"H3318\"* a|strong=\"H3068\"* discharge|strong=\"H2100\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* eat of|strong=\"H2233\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* until|strong=\"H5704\"* he|strong=\"H1931\"* is|strong=\"H1931\"* clean|strong=\"H2891\"*. Whoever|strong=\"H3605\"* touches|strong=\"H5060\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"* by|strong=\"H3318\"* the|strong=\"H3605\"* dead|strong=\"H5315\"*, or|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H5315\"* who|strong=\"H3605\"* has|strong=\"H3318\"* a|strong=\"H3068\"* seminal|strong=\"H2233\"* emission|strong=\"H7902\"*," + }, + { + "verseNum": 5, + "text": "or whoever|strong=\"H3605\"* touches|strong=\"H5060\"* any|strong=\"H3605\"* creeping|strong=\"H8318\"* thing|strong=\"H8318\"* by|strong=\"H3605\"* which|strong=\"H8318\"* he|strong=\"H3605\"* may be|strong=\"H3605\"* made|strong=\"H2930\"* unclean|strong=\"H2930\"*, or a|strong=\"H3068\"* man|strong=\"H3605\"* from|strong=\"H3605\"* whom he|strong=\"H3605\"* may become|strong=\"H2930\"* unclean|strong=\"H2930\"*, whatever|strong=\"H3605\"* uncleanness|strong=\"H2932\"* he|strong=\"H3605\"* has|strong=\"H3605\"*—" + }, + { + "verseNum": 6, + "text": "the|strong=\"H3588\"* person|strong=\"H5315\"* that|strong=\"H3588\"* touches|strong=\"H5060\"* any|strong=\"H4480\"* such|strong=\"H3808\"* shall|strong=\"H5315\"* be|strong=\"H3808\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3588\"* evening|strong=\"H6153\"*, and|strong=\"H4325\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* eat of|strong=\"H4325\"* the|strong=\"H3588\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* unless|strong=\"H3588\"* he|strong=\"H3588\"* bathes his|strong=\"H7364\"* body|strong=\"H1320\"* in|strong=\"H7364\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H3588\"* the|strong=\"H3588\"* sun|strong=\"H8121\"* is|strong=\"H1931\"* down|strong=\"H3588\"*, he|strong=\"H1931\"* shall|strong=\"H1931\"* be|strong=\"H8121\"* clean|strong=\"H2891\"*; and|strong=\"H3899\"* afterward he|strong=\"H1931\"* shall|strong=\"H1931\"* eat|strong=\"H3899\"* of|strong=\"H4480\"* the|strong=\"H3588\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*, because|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* his|strong=\"H3588\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* eat that|strong=\"H3068\"* which|strong=\"H3068\"* dies|strong=\"H5038\"* of|strong=\"H3068\"* itself|strong=\"H5038\"* or|strong=\"H3808\"* is|strong=\"H3068\"* torn|strong=\"H2966\"* by|strong=\"H3068\"* animals, defiling|strong=\"H2930\"* himself|strong=\"H2930\"* by|strong=\"H3068\"* it|strong=\"H5038\"*. I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "“‘They|strong=\"H3588\"* shall|strong=\"H3068\"* therefore|strong=\"H5921\"* follow|strong=\"H3068\"* my|strong=\"H8104\"* commandment, lest they|strong=\"H3588\"* bear|strong=\"H5375\"* sin|strong=\"H2399\"* for|strong=\"H3588\"* it|strong=\"H5921\"* and|strong=\"H3068\"* die|strong=\"H4191\"* in|strong=\"H5921\"* it|strong=\"H5921\"*, if|strong=\"H3588\"* they|strong=\"H3588\"* profane|strong=\"H2490\"* it|strong=\"H5921\"*. I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* sanctifies|strong=\"H6942\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "“‘No|strong=\"H3808\"* stranger|strong=\"H2114\"* shall|strong=\"H3548\"* eat of|strong=\"H3605\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* thing|strong=\"H6944\"*: a|strong=\"H3068\"* foreigner|strong=\"H2114\"* living|strong=\"H3605\"* with|strong=\"H3548\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, or|strong=\"H3808\"* a|strong=\"H3068\"* hired|strong=\"H7916\"* servant|strong=\"H7916\"*, shall|strong=\"H3548\"* not|strong=\"H3808\"* eat of|strong=\"H3605\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* thing|strong=\"H6944\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* a|strong=\"H3068\"* priest|strong=\"H3548\"* buys|strong=\"H7069\"* a|strong=\"H3068\"* slave|strong=\"H5315\"*, purchased|strong=\"H7069\"* by|strong=\"H3701\"* his|strong=\"H3588\"* money|strong=\"H3701\"*, he|strong=\"H1931\"* shall|strong=\"H3548\"* eat|strong=\"H3899\"* of|strong=\"H1004\"* it|strong=\"H1931\"*; and|strong=\"H3701\"* those|strong=\"H1992\"* who|strong=\"H1931\"* are|strong=\"H1992\"* born|strong=\"H3211\"* in|strong=\"H1004\"* his|strong=\"H3588\"* house|strong=\"H1004\"* shall|strong=\"H3548\"* eat|strong=\"H3899\"* of|strong=\"H1004\"* his|strong=\"H3588\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 12, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* priest|strong=\"H3548\"*’s daughter|strong=\"H1323\"* is|strong=\"H1931\"* married to|strong=\"H1961\"* an|strong=\"H1961\"* outsider|strong=\"H2114\"*, she|strong=\"H1931\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* eat of|strong=\"H1323\"* the|strong=\"H3588\"* heave|strong=\"H8641\"* offering|strong=\"H8641\"* of|strong=\"H1323\"* the|strong=\"H3588\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* a|strong=\"H3068\"* priest|strong=\"H3548\"*’s daughter|strong=\"H1323\"* is|strong=\"H3605\"* a|strong=\"H3068\"* widow, or|strong=\"H3808\"* divorced|strong=\"H1644\"*, and|strong=\"H7725\"* has|strong=\"H1961\"* no|strong=\"H3808\"* child|strong=\"H2233\"*, and|strong=\"H7725\"* has|strong=\"H1961\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* her|strong=\"H3605\"* father’s house|strong=\"H1004\"* as|strong=\"H1961\"* in|strong=\"H1004\"* her|strong=\"H3605\"* youth|strong=\"H5271\"*, she|strong=\"H3588\"* may|strong=\"H1961\"* eat|strong=\"H3899\"* of|strong=\"H1004\"* her|strong=\"H3605\"* father’s bread|strong=\"H3899\"*; but|strong=\"H3588\"* no|strong=\"H3808\"* stranger|strong=\"H2114\"* shall|strong=\"H3548\"* eat|strong=\"H3899\"* any|strong=\"H3605\"* of|strong=\"H1004\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 14, + "text": "“‘If|strong=\"H3588\"* a|strong=\"H3068\"* man eats something holy|strong=\"H6944\"* unwittingly|strong=\"H7684\"*, then|strong=\"H3254\"* he|strong=\"H3588\"* shall|strong=\"H3548\"* add|strong=\"H3254\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* part|strong=\"H2549\"* of|strong=\"H5921\"* its|strong=\"H5414\"* value to|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H3548\"* shall|strong=\"H3548\"* give|strong=\"H5414\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* thing|strong=\"H6944\"* to|strong=\"H5921\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3068\"* priests|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* profane|strong=\"H2490\"* the|strong=\"H3068\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* of|strong=\"H1121\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, which|strong=\"H3068\"* they|strong=\"H3068\"* offer|strong=\"H7311\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 16, + "text": "and|strong=\"H3068\"* so|strong=\"H5375\"* cause them|strong=\"H5375\"* to|strong=\"H3068\"* bear|strong=\"H5375\"* the|strong=\"H3588\"* iniquity|strong=\"H5771\"* that|strong=\"H3588\"* brings guilt|strong=\"H5771\"* when|strong=\"H3588\"* they|strong=\"H3588\"* eat their|strong=\"H3068\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* sanctifies|strong=\"H6942\"* them|strong=\"H5375\"*.’”" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 18, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* Aaron, and|strong=\"H1121\"* to|strong=\"H1696\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* say|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H7126\"*, ‘Whoever|strong=\"H3605\"* is|strong=\"H3068\"* of|strong=\"H1121\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, or|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* foreigners|strong=\"H1121\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, who|strong=\"H3605\"* offers|strong=\"H7126\"* his|strong=\"H3605\"* offering|strong=\"H5930\"*, whether|strong=\"H4480\"* it|strong=\"H7126\"* is|strong=\"H3068\"* any|strong=\"H3605\"* of|strong=\"H1121\"* their|strong=\"H3605\"* vows|strong=\"H5088\"* or|strong=\"H1121\"* any|strong=\"H3605\"* of|strong=\"H1121\"* their|strong=\"H3605\"* free will|strong=\"H3068\"* offerings|strong=\"H5930\"*, which|strong=\"H3068\"* they|strong=\"H3068\"* offer|strong=\"H7126\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"* for|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*:" + }, + { + "verseNum": 19, + "text": "that|strong=\"H1241\"* you|strong=\"H8549\"* may be|strong=\"H1241\"* accepted|strong=\"H7522\"*, you|strong=\"H8549\"* shall|strong=\"H2145\"* offer a|strong=\"H3068\"* male|strong=\"H2145\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*, of|strong=\"H7522\"* the|strong=\"H1241\"* bulls|strong=\"H1241\"*, of|strong=\"H7522\"* the|strong=\"H1241\"* sheep|strong=\"H3775\"*, or|strong=\"H1241\"* of|strong=\"H7522\"* the|strong=\"H1241\"* goats|strong=\"H5795\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* offer|strong=\"H7126\"* whatever|strong=\"H3605\"* has|strong=\"H1961\"* a|strong=\"H3068\"* defect|strong=\"H3971\"*, for|strong=\"H3588\"* it|strong=\"H7126\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H1961\"* acceptable|strong=\"H7522\"* for|strong=\"H3588\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 21, + "text": "Whoever|strong=\"H3605\"* offers|strong=\"H7126\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* accomplish|strong=\"H6381\"* a|strong=\"H3068\"* vow|strong=\"H5088\"*, or|strong=\"H3808\"* for|strong=\"H3588\"* a|strong=\"H3068\"* free will|strong=\"H3068\"* offering|strong=\"H5071\"* of|strong=\"H3068\"* the|strong=\"H3605\"* herd|strong=\"H1241\"* or|strong=\"H3808\"* of|strong=\"H3068\"* the|strong=\"H3605\"* flock|strong=\"H6629\"*, it|strong=\"H7126\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* perfect|strong=\"H8549\"* to|strong=\"H3068\"* be|strong=\"H1961\"* accepted|strong=\"H7522\"*. It|strong=\"H7126\"* shall|strong=\"H3068\"* have|strong=\"H1961\"* no|strong=\"H3808\"* defect|strong=\"H8549\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* offer|strong=\"H7126\"* what|strong=\"H5921\"* is|strong=\"H3068\"* blind|strong=\"H5788\"*, is|strong=\"H3068\"* injured|strong=\"H7665\"*, is|strong=\"H3068\"* maimed|strong=\"H2782\"*, has|strong=\"H3068\"* a|strong=\"H3068\"* wart, is|strong=\"H3068\"* festering, or|strong=\"H3808\"* has|strong=\"H3068\"* a|strong=\"H3068\"* running|strong=\"H2990\"* sore|strong=\"H2990\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, nor|strong=\"H3808\"* make|strong=\"H5414\"* an|strong=\"H7126\"* offering|strong=\"H7126\"* by|strong=\"H5921\"* fire of|strong=\"H3068\"* them|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 23, + "text": "Either|strong=\"H3808\"* a|strong=\"H3068\"* bull|strong=\"H7794\"* or|strong=\"H3808\"* a|strong=\"H3068\"* lamb|strong=\"H7716\"* that|strong=\"H6213\"* has|strong=\"H6213\"* any|strong=\"H6213\"* deformity or|strong=\"H3808\"* lacking in|strong=\"H6213\"* his|strong=\"H6213\"* parts|strong=\"H7038\"*, that|strong=\"H6213\"* you|strong=\"H6213\"* may|strong=\"H6213\"* offer|strong=\"H6213\"* for|strong=\"H6213\"* a|strong=\"H3068\"* free will|strong=\"H3808\"* offering|strong=\"H5071\"*; but|strong=\"H3808\"* for|strong=\"H6213\"* a|strong=\"H3068\"* vow|strong=\"H5088\"* it|strong=\"H6213\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* accepted|strong=\"H7521\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H6213\"* must|strong=\"H3808\"* not|strong=\"H3808\"* offer|strong=\"H7126\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* that|strong=\"H3068\"* which|strong=\"H3068\"* has|strong=\"H3068\"* its|strong=\"H6213\"* testicles bruised|strong=\"H4600\"*, crushed|strong=\"H3807\"*, broken|strong=\"H5423\"*, or|strong=\"H3808\"* cut|strong=\"H3772\"*. You|strong=\"H6213\"* must|strong=\"H3808\"* not|strong=\"H3808\"* do|strong=\"H6213\"* this|strong=\"H6213\"* in|strong=\"H3068\"* your|strong=\"H3068\"* land." + }, + { + "verseNum": 25, + "text": "You|strong=\"H3588\"* must|strong=\"H1121\"* not|strong=\"H3808\"* offer|strong=\"H7126\"* any|strong=\"H3605\"* of|strong=\"H1121\"* these|strong=\"H3605\"* as|strong=\"H3588\"* the|strong=\"H3605\"* bread|strong=\"H3899\"* of|strong=\"H1121\"* your|strong=\"H3605\"* God|strong=\"H3808\"* from|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* a|strong=\"H3068\"* foreigner|strong=\"H1121\"*, because|strong=\"H3588\"* their|strong=\"H3605\"* corruption|strong=\"H4893\"* is|strong=\"H3027\"* in|strong=\"H1121\"* them|strong=\"H3027\"*. There|strong=\"H3605\"* is|strong=\"H3027\"* a|strong=\"H3068\"* defect|strong=\"H3971\"* in|strong=\"H1121\"* them|strong=\"H3027\"*. They|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* be|strong=\"H3808\"* accepted|strong=\"H7521\"* for|strong=\"H3588\"* you|strong=\"H3588\"*.’”" + }, + { + "verseNum": 26, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 27, + "text": "“When|strong=\"H3588\"* a|strong=\"H3068\"* bull|strong=\"H7794\"*, a|strong=\"H3068\"* sheep|strong=\"H3775\"*, or|strong=\"H3117\"* a|strong=\"H3068\"* goat|strong=\"H5795\"* is|strong=\"H3068\"* born|strong=\"H3205\"*, it|strong=\"H3588\"* shall|strong=\"H3068\"* remain|strong=\"H1961\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* with|strong=\"H3068\"* its|strong=\"H8478\"* mother. From|strong=\"H3117\"* the|strong=\"H3588\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* on|strong=\"H3117\"* it|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* accepted|strong=\"H7521\"* for|strong=\"H3588\"* the|strong=\"H3588\"* offering|strong=\"H7133\"* of|strong=\"H3068\"* an|strong=\"H1961\"* offering|strong=\"H7133\"* made|strong=\"H1961\"* by|strong=\"H3117\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 28, + "text": "Whether it|strong=\"H7819\"* is|strong=\"H3117\"* a|strong=\"H3068\"* cow|strong=\"H7794\"* or|strong=\"H3808\"* ewe|strong=\"H7716\"*, you|strong=\"H3117\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* kill|strong=\"H7819\"* it|strong=\"H7819\"* and|strong=\"H1121\"* its|strong=\"H3808\"* young|strong=\"H1121\"* both in|strong=\"H3117\"* one|strong=\"H3808\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 29, + "text": "“When|strong=\"H3588\"* you|strong=\"H3588\"* sacrifice|strong=\"H2077\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* thanksgiving|strong=\"H8426\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* sacrifice|strong=\"H2077\"* it|strong=\"H3588\"* so|strong=\"H3588\"* that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3068\"* be|strong=\"H3068\"* accepted|strong=\"H7522\"*." + }, + { + "verseNum": 30, + "text": "It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* eaten on|strong=\"H3117\"* the|strong=\"H3068\"* same|strong=\"H1931\"* day|strong=\"H3117\"*; you|strong=\"H3117\"* shall|strong=\"H3068\"* leave|strong=\"H3498\"* none|strong=\"H3808\"* of|strong=\"H3068\"* it|strong=\"H1931\"* until|strong=\"H5704\"* the|strong=\"H3068\"* morning|strong=\"H1242\"*. I|strong=\"H3117\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 31, + "text": "“Therefore|strong=\"H3068\"* you|strong=\"H6213\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"*. I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 32, + "text": "You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* profane|strong=\"H2490\"* my|strong=\"H3068\"* holy|strong=\"H6944\"* name|strong=\"H8034\"*, but|strong=\"H3808\"* I|strong=\"H3808\"* will|strong=\"H3068\"* be|strong=\"H3808\"* made|strong=\"H6942\"* holy|strong=\"H6944\"* among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* makes|strong=\"H3068\"* you|strong=\"H3808\"* holy|strong=\"H6944\"*," + }, + { + "verseNum": 33, + "text": "who|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H4714\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, to|strong=\"H3318\"* be|strong=\"H1961\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. I|strong=\"H4714\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H1992\"*, ‘The|strong=\"H3068\"* set|strong=\"H3478\"* feasts|strong=\"H4150\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, which|strong=\"H3068\"* you|strong=\"H1696\"* shall|strong=\"H3068\"* proclaim|strong=\"H7121\"* to|strong=\"H1696\"* be|strong=\"H3068\"* holy|strong=\"H6944\"* convocations|strong=\"H4744\"*, even|strong=\"H3068\"* these|strong=\"H1992\"* are|strong=\"H1992\"* my|strong=\"H3068\"* set|strong=\"H3478\"* feasts|strong=\"H4150\"*." + }, + { + "verseNum": 3, + "text": "“‘Six|strong=\"H8337\"* days|strong=\"H3117\"* shall|strong=\"H3068\"* work|strong=\"H4399\"* be|strong=\"H3808\"* done|strong=\"H6213\"*, but|strong=\"H3808\"* on|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* is|strong=\"H3068\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* of|strong=\"H3068\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"*, a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*; you|strong=\"H3605\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* no|strong=\"H3808\"* kind of|strong=\"H3068\"* work|strong=\"H4399\"*. It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* dwellings|strong=\"H4186\"*." + }, + { + "verseNum": 4, + "text": "“‘These|strong=\"H7121\"* are|strong=\"H3068\"* the|strong=\"H3068\"* set|strong=\"H6944\"* feasts|strong=\"H4150\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, even|strong=\"H3068\"* holy|strong=\"H6944\"* convocations|strong=\"H4744\"*, which|strong=\"H3068\"* you|strong=\"H7121\"* shall|strong=\"H3068\"* proclaim|strong=\"H7121\"* in|strong=\"H3068\"* their|strong=\"H3068\"* appointed|strong=\"H4150\"* season|strong=\"H4150\"*." + }, + { + "verseNum": 5, + "text": "In|strong=\"H3068\"* the|strong=\"H3068\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, on|strong=\"H3068\"* the|strong=\"H3068\"* fourteenth|strong=\"H6240\"* day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"* in|strong=\"H3068\"* the|strong=\"H3068\"* evening|strong=\"H6153\"*, is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s Passover|strong=\"H6453\"*." + }, + { + "verseNum": 6, + "text": "On|strong=\"H3117\"* the|strong=\"H3068\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3068\"* same|strong=\"H2088\"* month|strong=\"H2320\"* is|strong=\"H3068\"* the|strong=\"H3068\"* feast|strong=\"H2282\"* of|strong=\"H3068\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Seven|strong=\"H7651\"* days|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H3068\"* eat unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H6213\"* the|strong=\"H3605\"* first|strong=\"H7223\"* day|strong=\"H3117\"* you|strong=\"H3605\"* shall|strong=\"H3117\"* have|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*. You|strong=\"H3605\"* shall|strong=\"H3117\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H3808\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* an|strong=\"H6213\"* offering|strong=\"H7126\"* made|strong=\"H6213\"* by|strong=\"H3117\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*. In|strong=\"H3068\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* is|strong=\"H3068\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*. You|strong=\"H3605\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*.’”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 10, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H5414\"*, ‘When|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1121\"* come|strong=\"H3478\"* into|strong=\"H5414\"* the|strong=\"H3588\"* land which|strong=\"H3478\"* I|strong=\"H3588\"* give|strong=\"H5414\"* to|strong=\"H1696\"* you|strong=\"H3588\"*, and|strong=\"H1121\"* shall|strong=\"H3548\"* reap|strong=\"H7114\"* its|strong=\"H5414\"* harvest|strong=\"H7105\"*, then|strong=\"H1696\"* you|strong=\"H3588\"* shall|strong=\"H3548\"* bring|strong=\"H5414\"* the|strong=\"H3588\"* sheaf|strong=\"H6016\"* of|strong=\"H1121\"* the|strong=\"H3588\"* first|strong=\"H1121\"* fruits|strong=\"H7225\"* of|strong=\"H1121\"* your|strong=\"H5414\"* harvest|strong=\"H7105\"* to|strong=\"H1696\"* the|strong=\"H3588\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3068\"* shall|strong=\"H3548\"* wave|strong=\"H5130\"* the|strong=\"H6440\"* sheaf|strong=\"H6016\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* be|strong=\"H3068\"* accepted|strong=\"H7522\"* for|strong=\"H6440\"* you|strong=\"H6440\"*. On|strong=\"H3068\"* the|strong=\"H6440\"* next|strong=\"H4283\"* day|strong=\"H4283\"* after|strong=\"H4283\"* the|strong=\"H6440\"* Sabbath|strong=\"H7676\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* wave|strong=\"H5130\"* it|strong=\"H6440\"*." + }, + { + "verseNum": 12, + "text": "On|strong=\"H3117\"* the|strong=\"H6213\"* day|strong=\"H3117\"* when|strong=\"H3117\"* you|strong=\"H3117\"* wave|strong=\"H5130\"* the|strong=\"H6213\"* sheaf|strong=\"H6016\"*, you|strong=\"H3117\"* shall|strong=\"H3068\"* offer|strong=\"H6213\"* a|strong=\"H3068\"* male|strong=\"H3532\"* lamb|strong=\"H3532\"* without|strong=\"H8549\"* defect|strong=\"H8549\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* for|strong=\"H6213\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* with|strong=\"H1101\"* it|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* two|strong=\"H8147\"* tenths of|strong=\"H3068\"* an|strong=\"H3068\"* ephah+ 23:13 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H3068\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, an|strong=\"H3068\"* offering|strong=\"H4503\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* for|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*; and|strong=\"H3068\"* the|strong=\"H3068\"* drink|strong=\"H5262\"* offering|strong=\"H4503\"* with|strong=\"H1101\"* it|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* of|strong=\"H3068\"* wine|strong=\"H3196\"*, the|strong=\"H3068\"* fourth|strong=\"H7243\"* part|strong=\"H7243\"* of|strong=\"H3068\"* a|strong=\"H3068\"* hin|strong=\"H1969\"*.+ 23:13 A hin is about 6.5 liters or 1.7 gallons.*" + }, + { + "verseNum": 14, + "text": "You|strong=\"H3605\"* must|strong=\"H3808\"* not|strong=\"H3808\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"*, or|strong=\"H3808\"* roasted|strong=\"H7039\"* grain|strong=\"H3605\"*, or|strong=\"H3808\"* fresh|strong=\"H3759\"* grain|strong=\"H3605\"*, until|strong=\"H5704\"* this|strong=\"H2088\"* same|strong=\"H6106\"* day|strong=\"H3117\"*, until|strong=\"H5704\"* you|strong=\"H3605\"* have|strong=\"H3117\"* brought the|strong=\"H3605\"* offering|strong=\"H7133\"* of|strong=\"H3117\"* your|strong=\"H3605\"* God|strong=\"H3808\"*. This|strong=\"H2088\"* is|strong=\"H2088\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* throughout|strong=\"H3605\"* your|strong=\"H3605\"* generations|strong=\"H1755\"* in|strong=\"H3117\"* all|strong=\"H3605\"* your|strong=\"H3605\"* dwellings|strong=\"H4186\"*." + }, + { + "verseNum": 15, + "text": "“‘You|strong=\"H3117\"* shall|strong=\"H3117\"* count|strong=\"H5608\"* from|strong=\"H3117\"* the|strong=\"H3117\"* next|strong=\"H4283\"* day|strong=\"H3117\"* after|strong=\"H4283\"* the|strong=\"H3117\"* Sabbath|strong=\"H7676\"*, from|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* you|strong=\"H3117\"* brought|strong=\"H1961\"* the|strong=\"H3117\"* sheaf|strong=\"H6016\"* of|strong=\"H3117\"* the|strong=\"H3117\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"*: seven|strong=\"H7651\"* Sabbaths|strong=\"H7676\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* completed." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3068\"* next|strong=\"H4283\"* day|strong=\"H3117\"* after|strong=\"H4283\"* the|strong=\"H3068\"* seventh|strong=\"H7637\"* Sabbath|strong=\"H7676\"* you|strong=\"H3117\"* shall|strong=\"H3068\"* count|strong=\"H5608\"* fifty|strong=\"H2572\"* days|strong=\"H3117\"*; and|strong=\"H3068\"* you|strong=\"H3117\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* new|strong=\"H2319\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H1961\"* shall|strong=\"H3068\"* bring|strong=\"H1961\"* out|strong=\"H8147\"* of|strong=\"H3068\"* your|strong=\"H3068\"* habitations|strong=\"H4186\"* two|strong=\"H8147\"* loaves|strong=\"H3899\"* of|strong=\"H3068\"* bread|strong=\"H3899\"* for|strong=\"H3068\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* made|strong=\"H1961\"* of|strong=\"H3068\"* two|strong=\"H8147\"* tenths of|strong=\"H3068\"* an|strong=\"H1961\"* ephah+ 23:17 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H3068\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"*. They|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* baked with|strong=\"H3068\"* yeast, for|strong=\"H3068\"* first|strong=\"H1061\"* fruits|strong=\"H1061\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H5921\"* shall|strong=\"H3068\"* present|strong=\"H7126\"* with|strong=\"H3068\"* the|strong=\"H5921\"* bread|strong=\"H3899\"* seven|strong=\"H7651\"* lambs|strong=\"H3532\"* without|strong=\"H8549\"* defect|strong=\"H8549\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*, one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*, and|strong=\"H1121\"* two|strong=\"H8147\"* rams. They|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, with|strong=\"H3068\"* their|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H1121\"* their|strong=\"H3068\"* drink|strong=\"H5262\"* offerings|strong=\"H5930\"*, even|strong=\"H3068\"* an|strong=\"H7126\"* offering|strong=\"H4503\"* made|strong=\"H1961\"* by|strong=\"H5921\"* fire, of|strong=\"H1121\"* a|strong=\"H3068\"* sweet|strong=\"H5207\"* aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H6213\"* shall|strong=\"H1121\"* offer|strong=\"H6213\"* one|strong=\"H3532\"* male|strong=\"H3532\"* goat|strong=\"H5795\"* for|strong=\"H6213\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, and|strong=\"H1121\"* two|strong=\"H8147\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* for|strong=\"H6213\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* wave|strong=\"H8573\"* them|strong=\"H5921\"* with|strong=\"H3068\"* the|strong=\"H6440\"* bread|strong=\"H3899\"* of|strong=\"H3068\"* the|strong=\"H6440\"* first|strong=\"H1061\"* fruits|strong=\"H1061\"* for|strong=\"H5921\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, with|strong=\"H3068\"* the|strong=\"H6440\"* two|strong=\"H8147\"* lambs|strong=\"H3532\"*. They|strong=\"H3068\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* for|strong=\"H5921\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"H3605\"* shall|strong=\"H3117\"* make|strong=\"H6213\"* proclamation|strong=\"H7121\"* on|strong=\"H3117\"* the|strong=\"H3605\"* same|strong=\"H6106\"* day|strong=\"H3117\"* that|strong=\"H3605\"* there|strong=\"H1961\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"* to|strong=\"H1961\"* you|strong=\"H3605\"*. You|strong=\"H3605\"* shall|strong=\"H3117\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*. This|strong=\"H2088\"* is|strong=\"H2088\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* in|strong=\"H6213\"* all|strong=\"H3605\"* your|strong=\"H3605\"* dwellings|strong=\"H4186\"* throughout|strong=\"H3605\"* your|strong=\"H3605\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 22, + "text": "“‘When|strong=\"H3615\"* you|strong=\"H3808\"* reap|strong=\"H7114\"* the|strong=\"H3068\"* harvest|strong=\"H7105\"* of|strong=\"H3068\"* your|strong=\"H3068\"* land|strong=\"H7704\"*, you|strong=\"H3808\"* must|strong=\"H3808\"* not|strong=\"H3808\"* wholly reap|strong=\"H7114\"* into the|strong=\"H3068\"* corners|strong=\"H6285\"* of|strong=\"H3068\"* your|strong=\"H3068\"* field|strong=\"H7704\"*. You|strong=\"H3808\"* must|strong=\"H3808\"* not|strong=\"H3808\"* gather|strong=\"H3950\"* the|strong=\"H3068\"* gleanings|strong=\"H3951\"* of|strong=\"H3068\"* your|strong=\"H3068\"* harvest|strong=\"H7105\"*. You|strong=\"H3808\"* must|strong=\"H3808\"* leave|strong=\"H5800\"* them|strong=\"H3615\"* for|strong=\"H3068\"* the|strong=\"H3068\"* poor|strong=\"H6041\"* and|strong=\"H3068\"* for|strong=\"H3068\"* the|strong=\"H3068\"* foreigner|strong=\"H1616\"*. I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.’”" + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 24, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘In|strong=\"H3478\"* the|strong=\"H1961\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*, on|strong=\"H1961\"* the|strong=\"H1961\"* first|strong=\"H1121\"* day|strong=\"H2320\"* of|strong=\"H1121\"* the|strong=\"H1961\"* month|strong=\"H2320\"*, there|strong=\"H1961\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* a|strong=\"H3068\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"* for|strong=\"H1121\"* you|strong=\"H1696\"*, a|strong=\"H3068\"* memorial|strong=\"H2146\"* of|strong=\"H1121\"* blowing|strong=\"H8643\"* of|strong=\"H1121\"* trumpets|strong=\"H8643\"*, a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"H3605\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*. You|strong=\"H3605\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* an|strong=\"H6213\"* offering|strong=\"H7126\"* made|strong=\"H6213\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 26, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 27, + "text": "“However on|strong=\"H3117\"* the|strong=\"H3068\"* tenth|strong=\"H6218\"* day|strong=\"H3117\"* of|strong=\"H3068\"* this|strong=\"H2088\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"* is|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* atonement|strong=\"H3725\"*. It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"* to|strong=\"H3068\"* you|strong=\"H3117\"*. You|strong=\"H3117\"* shall|strong=\"H3068\"* afflict|strong=\"H6031\"* yourselves|strong=\"H5315\"* and|strong=\"H3068\"* you|strong=\"H3117\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* an|strong=\"H7126\"* offering|strong=\"H7126\"* made|strong=\"H1961\"* by|strong=\"H3117\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 28, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* no|strong=\"H3808\"* kind of|strong=\"H3068\"* work|strong=\"H4399\"* in|strong=\"H5921\"* that|strong=\"H3588\"* same|strong=\"H1931\"* day|strong=\"H3117\"*, for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* atonement|strong=\"H3722\"*, to|strong=\"H3068\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H3588\"* you|strong=\"H3588\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 29, + "text": "For|strong=\"H3588\"* whoever|strong=\"H3605\"* it|strong=\"H3588\"* is|strong=\"H2088\"* who|strong=\"H3605\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* deny himself|strong=\"H5315\"* in|strong=\"H3117\"* that|strong=\"H3588\"* same|strong=\"H6106\"* day|strong=\"H3117\"* shall|strong=\"H5971\"* be|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* his|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 30, + "text": "Whoever|strong=\"H3605\"* does|strong=\"H6213\"* any|strong=\"H3605\"* kind of|strong=\"H3117\"* work|strong=\"H4399\"* in|strong=\"H6213\"* that|strong=\"H5971\"* same|strong=\"H1931\"* day|strong=\"H3117\"*, I|strong=\"H3117\"* will|strong=\"H5971\"* destroy|strong=\"H6213\"* that|strong=\"H5971\"* person|strong=\"H5315\"* from|strong=\"H5315\"* among|strong=\"H7130\"* his|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 31, + "text": "You|strong=\"H3605\"* shall|strong=\"H3808\"* do|strong=\"H6213\"* no|strong=\"H3808\"* kind|strong=\"H1755\"* of|strong=\"H3605\"* work|strong=\"H4399\"*: it|strong=\"H6213\"* is|strong=\"H3605\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* throughout|strong=\"H3605\"* your|strong=\"H3605\"* generations|strong=\"H1755\"* in|strong=\"H6213\"* all|strong=\"H3605\"* your|strong=\"H3605\"* dwellings|strong=\"H4186\"*." + }, + { + "verseNum": 32, + "text": "It|strong=\"H1931\"* shall|strong=\"H5315\"* be|strong=\"H5315\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* of|strong=\"H5315\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"* for|strong=\"H5704\"* you|strong=\"H5704\"*, and|strong=\"H5315\"* you|strong=\"H5704\"* shall|strong=\"H5315\"* deny yourselves|strong=\"H5315\"*. In|strong=\"H5315\"* the|strong=\"H5704\"* ninth|strong=\"H8672\"* day|strong=\"H2320\"* of|strong=\"H5315\"* the|strong=\"H5704\"* month|strong=\"H2320\"* at|strong=\"H2320\"* evening|strong=\"H6153\"*, from|strong=\"H5315\"* evening|strong=\"H6153\"* to|strong=\"H5704\"* evening|strong=\"H6153\"*, you|strong=\"H5704\"* shall|strong=\"H5315\"* keep|strong=\"H7673\"* your|strong=\"H5704\"* Sabbath|strong=\"H7676\"*.”" + }, + { + "verseNum": 33, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 34, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* say|strong=\"H1696\"*, ‘On|strong=\"H3117\"* the|strong=\"H3068\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* of|strong=\"H1121\"* this|strong=\"H2088\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"* is|strong=\"H3068\"* the|strong=\"H3068\"* feast|strong=\"H2282\"* of|strong=\"H1121\"* booths|strong=\"H5521\"*+ 23:34 or, feast of tents, or Succoth* for|strong=\"H3068\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 35, + "text": "On|strong=\"H3117\"* the|strong=\"H3605\"* first|strong=\"H7223\"* day|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H3808\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*. You|strong=\"H3605\"* shall|strong=\"H3117\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 36, + "text": "Seven|strong=\"H7651\"* days|strong=\"H3117\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* an|strong=\"H6213\"* offering|strong=\"H7126\"* made|strong=\"H6213\"* by|strong=\"H3117\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. On|strong=\"H3117\"* the|strong=\"H3605\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"* to|strong=\"H3068\"* you|strong=\"H3605\"*. You|strong=\"H3605\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* an|strong=\"H6213\"* offering|strong=\"H7126\"* made|strong=\"H6213\"* by|strong=\"H3117\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* solemn|strong=\"H6116\"* assembly|strong=\"H6116\"*; you|strong=\"H3605\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 37, + "text": "“‘These|strong=\"H7121\"* are|strong=\"H3117\"* the|strong=\"H3068\"* appointed|strong=\"H4150\"* feasts|strong=\"H4150\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H3117\"* shall|strong=\"H3068\"* proclaim|strong=\"H7121\"* to|strong=\"H3068\"* be|strong=\"H1697\"* holy|strong=\"H6944\"* convocations|strong=\"H4744\"*, to|strong=\"H3068\"* offer|strong=\"H7126\"* an|strong=\"H7126\"* offering|strong=\"H4503\"* made|strong=\"H7121\"* by|strong=\"H3117\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, a|strong=\"H3068\"* sacrifice|strong=\"H2077\"*, and|strong=\"H3068\"* drink|strong=\"H5262\"* offerings|strong=\"H5930\"*, each|strong=\"H3117\"* on|strong=\"H3117\"* its own day|strong=\"H3117\"*—" + }, + { + "verseNum": 38, + "text": "in|strong=\"H3068\"* addition to|strong=\"H3068\"* the|strong=\"H3605\"* Sabbaths|strong=\"H7676\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* addition to|strong=\"H3068\"* your|strong=\"H3068\"* gifts|strong=\"H4979\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* addition to|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* vows|strong=\"H5088\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* addition to|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* free will|strong=\"H3068\"* offerings|strong=\"H5071\"*, which|strong=\"H3068\"* you|strong=\"H5414\"* give|strong=\"H5414\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 39, + "text": "“‘So on|strong=\"H3117\"* the|strong=\"H3068\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3068\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*, when|strong=\"H3117\"* you|strong=\"H3117\"* have|strong=\"H3068\"* gathered in|strong=\"H3068\"* the|strong=\"H3068\"* fruits|strong=\"H8393\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land, you|strong=\"H3117\"* shall|strong=\"H3068\"* keep|strong=\"H2287\"* the|strong=\"H3068\"* feast|strong=\"H2282\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*. On|strong=\"H3117\"* the|strong=\"H3068\"* first|strong=\"H7223\"* day|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* a|strong=\"H3068\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"*, and|strong=\"H3068\"* on|strong=\"H3117\"* the|strong=\"H3068\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* a|strong=\"H3068\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"*." + }, + { + "verseNum": 40, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* on|strong=\"H3117\"* the|strong=\"H6440\"* first|strong=\"H7223\"* day|strong=\"H3117\"* the|strong=\"H6440\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* majestic|strong=\"H1926\"* trees|strong=\"H6086\"*, branches|strong=\"H6057\"* of|strong=\"H3068\"* palm|strong=\"H8558\"* trees|strong=\"H6086\"*, and|strong=\"H3068\"* boughs|strong=\"H6057\"* of|strong=\"H3068\"* thick|strong=\"H5687\"* trees|strong=\"H6086\"*, and|strong=\"H3068\"* willows|strong=\"H6155\"* of|strong=\"H3068\"* the|strong=\"H6440\"* brook|strong=\"H5158\"*; and|strong=\"H3068\"* you|strong=\"H6440\"* shall|strong=\"H3068\"* rejoice|strong=\"H8055\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 41, + "text": "You|strong=\"H3117\"* shall|strong=\"H3068\"* keep|strong=\"H2287\"* it|strong=\"H2287\"* as|strong=\"H3117\"* a|strong=\"H3068\"* feast|strong=\"H2282\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* in|strong=\"H8141\"* the|strong=\"H3068\"* year|strong=\"H8141\"*. It|strong=\"H2287\"* is|strong=\"H3068\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*. You|strong=\"H3117\"* shall|strong=\"H3068\"* keep|strong=\"H2287\"* it|strong=\"H2287\"* in|strong=\"H8141\"* the|strong=\"H3068\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 42, + "text": "You|strong=\"H3605\"* shall|strong=\"H3478\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* temporary|strong=\"H5521\"* shelters|strong=\"H5521\"*+ 23:42 or, booths* for|strong=\"H3427\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*. All|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H3117\"* native-born in|strong=\"H3427\"* Israel|strong=\"H3478\"* shall|strong=\"H3478\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* temporary|strong=\"H5521\"* shelters|strong=\"H5521\"*,+ 23:42 or, booths*" + }, + { + "verseNum": 43, + "text": "that|strong=\"H3588\"* your|strong=\"H3068\"* generations|strong=\"H1755\"* may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* made|strong=\"H3045\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H3318\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* temporary|strong=\"H5521\"* shelters|strong=\"H5521\"*+ 23:43 or, booths* when|strong=\"H3588\"* I|strong=\"H3588\"* brought|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3588\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*. I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.’”" + }, + { + "verseNum": 44, + "text": "So|strong=\"H1696\"* Moses|strong=\"H4872\"* declared|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* the|strong=\"H3068\"* appointed|strong=\"H4150\"* feasts|strong=\"H4150\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Command|strong=\"H6680\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H3478\"* they|strong=\"H3478\"* bring|strong=\"H5927\"* to|strong=\"H3478\"* you|strong=\"H6680\"* pure|strong=\"H2134\"* olive|strong=\"H2132\"* oil|strong=\"H8081\"* beaten|strong=\"H3795\"* for|strong=\"H1121\"* the|strong=\"H3947\"* light|strong=\"H3974\"*, to|strong=\"H3478\"* cause a|strong=\"H3068\"* lamp|strong=\"H5216\"* to|strong=\"H3478\"* burn|strong=\"H5927\"* continually|strong=\"H8548\"*." + }, + { + "verseNum": 3, + "text": "Outside|strong=\"H2351\"* of|strong=\"H3068\"* the|strong=\"H6440\"* veil|strong=\"H6532\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Testimony|strong=\"H5715\"*, in|strong=\"H3068\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, Aaron|strong=\"H6186\"* shall|strong=\"H3068\"* keep|strong=\"H6186\"* it|strong=\"H1242\"* in|strong=\"H3068\"* order|strong=\"H6186\"* from|strong=\"H6440\"* evening|strong=\"H6153\"* to|strong=\"H5704\"* morning|strong=\"H1242\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* continually|strong=\"H8548\"*. It|strong=\"H1242\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* keep|strong=\"H6186\"* in|strong=\"H5921\"* order|strong=\"H6186\"* the|strong=\"H6440\"* lamps|strong=\"H5216\"* on|strong=\"H5921\"* the|strong=\"H6440\"* pure|strong=\"H2889\"* gold lamp|strong=\"H5216\"* stand before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* continually|strong=\"H8548\"*." + }, + { + "verseNum": 5, + "text": "“You|strong=\"H3947\"* shall|strong=\"H8147\"* take|strong=\"H3947\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"*, and|strong=\"H8147\"* bake twelve|strong=\"H8147\"* cakes|strong=\"H2471\"* of|strong=\"H8147\"* it|strong=\"H1961\"*: two|strong=\"H8147\"* tenths of|strong=\"H8147\"* an|strong=\"H1961\"* ephah+ 24:5 1 ephah is about 22 liters or about 2/3 of a bushel* shall|strong=\"H8147\"* be|strong=\"H1961\"* in|strong=\"H1961\"* one|strong=\"H1961\"* cake|strong=\"H2471\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* set|strong=\"H7760\"* them|strong=\"H5921\"* in|strong=\"H5921\"* two|strong=\"H8147\"* rows|strong=\"H4634\"*, six|strong=\"H8337\"* on|strong=\"H5921\"* a|strong=\"H3068\"* row|strong=\"H4635\"*, on|strong=\"H5921\"* the|strong=\"H6440\"* pure|strong=\"H2889\"* gold table|strong=\"H7979\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* put|strong=\"H5414\"* pure|strong=\"H2134\"* frankincense|strong=\"H3828\"* on|strong=\"H5921\"* each|strong=\"H5414\"* row|strong=\"H4635\"*, that|strong=\"H3068\"* it|strong=\"H5414\"* may|strong=\"H1961\"* be|strong=\"H1961\"* to|strong=\"H3068\"* the|strong=\"H5921\"* bread|strong=\"H3899\"* for|strong=\"H5921\"* a|strong=\"H3068\"* memorial, even|strong=\"H3068\"* an|strong=\"H1961\"* offering|strong=\"H3068\"* made|strong=\"H5414\"* by|strong=\"H5921\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "Every|strong=\"H3117\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"* he|strong=\"H3117\"* shall|strong=\"H3068\"* set|strong=\"H6186\"* it|strong=\"H6440\"* in|strong=\"H3478\"* order|strong=\"H6186\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* continually|strong=\"H8548\"*. It|strong=\"H6440\"* is|strong=\"H3068\"* an|strong=\"H6440\"* everlasting|strong=\"H5769\"* covenant|strong=\"H1285\"* on|strong=\"H3117\"* the|strong=\"H6440\"* behalf of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 9, + "text": "It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* for|strong=\"H3588\"* Aaron and|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"*. They|strong=\"H3588\"* shall|strong=\"H3068\"* eat it|strong=\"H1931\"* in|strong=\"H3068\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* place|strong=\"H4725\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* him|strong=\"H1931\"* of|strong=\"H1121\"* the|strong=\"H3588\"* offerings|strong=\"H3588\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* made|strong=\"H1961\"* by|strong=\"H3068\"* fire by|strong=\"H3068\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* statute|strong=\"H2706\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H8432\"* son|strong=\"H1121\"* of|strong=\"H1121\"* an|strong=\"H3318\"* Israelite|strong=\"H3478\"* woman, whose|strong=\"H1121\"* father|strong=\"H1121\"* was|strong=\"H3478\"* an|strong=\"H3318\"* Egyptian|strong=\"H4713\"*, went|strong=\"H3318\"* out|strong=\"H3318\"* among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* the|strong=\"H8432\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H8432\"* Israelite|strong=\"H3478\"* woman and|strong=\"H1121\"* a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* strove|strong=\"H5327\"* together|strong=\"H5327\"* in|strong=\"H3478\"* the|strong=\"H8432\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H4872\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4872\"* Israelite|strong=\"H3482\"* woman|strong=\"H1323\"* blasphemed|strong=\"H5344\"* the|strong=\"H4872\"* Name|strong=\"H8034\"*, and|strong=\"H1121\"* cursed|strong=\"H7043\"*; and|strong=\"H1121\"* they|strong=\"H8034\"* brought|strong=\"H4872\"* him|strong=\"H4872\"* to|strong=\"H1121\"* Moses|strong=\"H4872\"*. His|strong=\"H7043\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Shelomith|strong=\"H8019\"*, the|strong=\"H4872\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Dibri|strong=\"H1704\"*, of|strong=\"H1121\"* the|strong=\"H4872\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H1992\"* put|strong=\"H3240\"* him|strong=\"H5921\"* in|strong=\"H5921\"* custody|strong=\"H4929\"* until|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s will|strong=\"H3068\"* should|strong=\"H3068\"* be|strong=\"H3068\"* declared|strong=\"H6567\"* to|strong=\"H3068\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 14, + "text": "“Bring|strong=\"H3318\"* him|strong=\"H5921\"* who|strong=\"H3605\"* cursed|strong=\"H7043\"* out|strong=\"H3318\"* of|strong=\"H3027\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*; and|strong=\"H3027\"* let all|strong=\"H3605\"* who|strong=\"H3605\"* heard|strong=\"H8085\"* him|strong=\"H5921\"* lay|strong=\"H5564\"* their|strong=\"H3605\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* his|strong=\"H3605\"* head|strong=\"H7218\"*, and|strong=\"H3027\"* let all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* stone|strong=\"H7275\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H3588\"* shall|strong=\"H1121\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘Whoever curses|strong=\"H7043\"* his|strong=\"H5375\"* God shall|strong=\"H1121\"* bear|strong=\"H5375\"* his|strong=\"H5375\"* sin|strong=\"H2399\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H3068\"* who|strong=\"H3605\"* blasphemes|strong=\"H5344\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, he|strong=\"H3068\"* shall|strong=\"H3068\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* shall|strong=\"H3068\"* certainly|strong=\"H7275\"* stone|strong=\"H7275\"* him|strong=\"H4191\"*. The|strong=\"H3605\"* foreigner|strong=\"H1616\"* as|strong=\"H3068\"* well as|strong=\"H3068\"* the|strong=\"H3605\"* native-born shall|strong=\"H3068\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"* when|strong=\"H3068\"* he|strong=\"H3068\"* blasphemes|strong=\"H5344\"* the|strong=\"H3605\"* Name|strong=\"H8034\"*." + }, + { + "verseNum": 17, + "text": "“‘He|strong=\"H3588\"* who|strong=\"H3605\"* strikes|strong=\"H5221\"* any|strong=\"H3605\"* man|strong=\"H5315\"* mortally|strong=\"H4191\"* shall|strong=\"H5315\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H5221\"* who|strong=\"H5315\"* strikes|strong=\"H5221\"* an|strong=\"H5221\"* animal mortally|strong=\"H5315\"* shall|strong=\"H5315\"* make|strong=\"H7999\"* it|strong=\"H5221\"* good|strong=\"H7999\"*, life|strong=\"H5315\"* for|strong=\"H8478\"* life|strong=\"H5315\"*." + }, + { + "verseNum": 19, + "text": "If|strong=\"H3588\"* anyone|strong=\"H3588\"* injures|strong=\"H5414\"* his|strong=\"H5414\"* neighbor|strong=\"H5997\"*, it|strong=\"H5414\"* shall|strong=\"H6213\"* be|strong=\"H5414\"* done|strong=\"H6213\"* to|strong=\"H6213\"* him|strong=\"H5414\"* as|strong=\"H6213\"* he|strong=\"H3588\"* has|strong=\"H3588\"* done|strong=\"H6213\"*:" + }, + { + "verseNum": 20, + "text": "fracture|strong=\"H7667\"* for|strong=\"H8478\"* fracture|strong=\"H7667\"*, eye|strong=\"H5869\"* for|strong=\"H8478\"* eye|strong=\"H5869\"*, tooth|strong=\"H8127\"* for|strong=\"H8478\"* tooth|strong=\"H8127\"*. It|strong=\"H5414\"* shall|strong=\"H5869\"* be|strong=\"H5414\"* done|strong=\"H5414\"* to|strong=\"H5414\"* him|strong=\"H5414\"* as|strong=\"H3651\"* he|strong=\"H3651\"* has|strong=\"H5869\"* injured|strong=\"H5414\"* someone|strong=\"H5414\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H5221\"* who|strong=\"H5221\"* kills|strong=\"H5221\"* an|strong=\"H5221\"* animal shall|strong=\"H4191\"* make|strong=\"H7999\"* it|strong=\"H5221\"* good|strong=\"H7999\"*; and|strong=\"H4191\"* he|strong=\"H5221\"* who|strong=\"H5221\"* kills|strong=\"H5221\"* a|strong=\"H3068\"* man|strong=\"H4191\"* shall|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* have|strong=\"H1961\"* one|strong=\"H1961\"* kind|strong=\"H4941\"* of|strong=\"H3068\"* law|strong=\"H4941\"* for|strong=\"H3588\"* the|strong=\"H3588\"* foreigner|strong=\"H1616\"* as|strong=\"H1961\"* well as|strong=\"H1961\"* the|strong=\"H3588\"* native-born; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.’”" + }, + { + "verseNum": 23, + "text": "Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* they|strong=\"H3068\"* brought|strong=\"H3318\"* him|strong=\"H6213\"* who|strong=\"H3068\"* had|strong=\"H3068\"* cursed|strong=\"H7043\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H6213\"* camp|strong=\"H4264\"*, and|strong=\"H1121\"* stoned|strong=\"H7275\"* him|strong=\"H6213\"* with|strong=\"H3068\"* stones. The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* on|strong=\"H3068\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H5414\"*, ‘When|strong=\"H3588\"* you|strong=\"H3588\"* come|strong=\"H3478\"* into|strong=\"H5414\"* the|strong=\"H3588\"* land which|strong=\"H3068\"* I|strong=\"H3588\"* give|strong=\"H5414\"* you|strong=\"H3588\"*, then|strong=\"H1696\"* the|strong=\"H3588\"* land shall|strong=\"H3068\"* keep|strong=\"H7673\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H8141\"* shall|strong=\"H7704\"* sow|strong=\"H2232\"* your|strong=\"H2232\"* field|strong=\"H7704\"* six|strong=\"H8337\"* years|strong=\"H8141\"*, and|strong=\"H8141\"* you|strong=\"H8141\"* shall|strong=\"H7704\"* prune|strong=\"H2168\"* your|strong=\"H2232\"* vineyard|strong=\"H3754\"* six|strong=\"H8337\"* years|strong=\"H8141\"*, and|strong=\"H8141\"* gather in|strong=\"H8141\"* its fruits|strong=\"H8393\"*;" + }, + { + "verseNum": 4, + "text": "but|strong=\"H3808\"* in|strong=\"H8141\"* the|strong=\"H3068\"* seventh|strong=\"H7637\"* year|strong=\"H8141\"* there|strong=\"H1961\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* of|strong=\"H3068\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"* for|strong=\"H3068\"* the|strong=\"H3068\"* land|strong=\"H7704\"*, a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* sow|strong=\"H2232\"* your|strong=\"H3068\"* field|strong=\"H7704\"* or|strong=\"H3808\"* prune|strong=\"H2168\"* your|strong=\"H3068\"* vineyard|strong=\"H3754\"*." + }, + { + "verseNum": 5, + "text": "What|strong=\"H5599\"* grows|strong=\"H5599\"* of|strong=\"H8141\"* itself in|strong=\"H8141\"* your|strong=\"H3808\"* harvest|strong=\"H7105\"* you|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* reap|strong=\"H7114\"*, and|strong=\"H8141\"* you|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* gather|strong=\"H1219\"* the|strong=\"H1961\"* grapes|strong=\"H6025\"* of|strong=\"H8141\"* your|strong=\"H3808\"* undressed|strong=\"H5139\"* vine. It|strong=\"H1961\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* a|strong=\"H3068\"* year|strong=\"H8141\"* of|strong=\"H8141\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"* for|strong=\"H1961\"* the|strong=\"H1961\"* land." + }, + { + "verseNum": 6, + "text": "The|strong=\"H1961\"* Sabbath|strong=\"H7676\"* of|strong=\"H5650\"* the|strong=\"H1961\"* land shall|strong=\"H5650\"* be|strong=\"H1961\"* for|strong=\"H5650\"* food for|strong=\"H5650\"* you|strong=\"H5973\"*; for|strong=\"H5650\"* yourself|strong=\"H5973\"*, for|strong=\"H5650\"* your|strong=\"H1961\"* servant|strong=\"H5650\"*, for|strong=\"H5650\"* your|strong=\"H1961\"* maid, for|strong=\"H5650\"* your|strong=\"H1961\"* hired|strong=\"H7916\"* servant|strong=\"H5650\"*, and|strong=\"H5650\"* for|strong=\"H5650\"* your|strong=\"H1961\"* stranger|strong=\"H8453\"*, who|strong=\"H5650\"* lives|strong=\"H1481\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner|strong=\"H8453\"* with|strong=\"H5973\"* you|strong=\"H5973\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3605\"* your|strong=\"H3605\"* livestock also, and|strong=\"H2416\"* for|strong=\"H3605\"* the|strong=\"H3605\"* animals|strong=\"H2416\"* that|strong=\"H3605\"* are|strong=\"H1961\"* in|strong=\"H1961\"* your|strong=\"H3605\"* land, shall|strong=\"H2416\"* all|strong=\"H3605\"* its|strong=\"H3605\"* increase|strong=\"H8393\"* be|strong=\"H1961\"* for|strong=\"H3605\"* food." + }, + { + "verseNum": 8, + "text": "“‘You|strong=\"H3117\"* shall|strong=\"H3117\"* count|strong=\"H5608\"* off|strong=\"H7651\"* seven|strong=\"H7651\"* Sabbaths|strong=\"H7676\"* of|strong=\"H3117\"* years|strong=\"H8141\"*, seven|strong=\"H7651\"* times|strong=\"H6471\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*; and|strong=\"H3117\"* there|strong=\"H1961\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* to|strong=\"H1961\"* you|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* seven|strong=\"H7651\"* Sabbaths|strong=\"H7676\"* of|strong=\"H3117\"* years|strong=\"H8141\"*, even|strong=\"H7651\"* forty-nine years|strong=\"H8141\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H5674\"* you|strong=\"H3605\"* shall|strong=\"H3117\"* sound|strong=\"H5674\"* the|strong=\"H3605\"* loud trumpet|strong=\"H7782\"* on|strong=\"H3117\"* the|strong=\"H3605\"* tenth|strong=\"H6218\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*. On|strong=\"H3117\"* the|strong=\"H3605\"* Day|strong=\"H3117\"* of|strong=\"H3117\"* Atonement|strong=\"H3725\"* you|strong=\"H3605\"* shall|strong=\"H3117\"* sound|strong=\"H5674\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3605\"* land." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3605\"* shall|strong=\"H1931\"* make|strong=\"H7725\"* the|strong=\"H3605\"* fiftieth|strong=\"H2572\"* year|strong=\"H8141\"* holy|strong=\"H6942\"*, and|strong=\"H7725\"* proclaim|strong=\"H7121\"* liberty|strong=\"H1865\"* throughout|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H4940\"* to|strong=\"H7725\"* all|strong=\"H3605\"* its|strong=\"H3605\"* inhabitants|strong=\"H3427\"*. It|strong=\"H1931\"* shall|strong=\"H1931\"* be|strong=\"H1961\"* a|strong=\"H3068\"* jubilee|strong=\"H3104\"* to|strong=\"H7725\"* you|strong=\"H3605\"*; and|strong=\"H7725\"* each|strong=\"H3605\"* of|strong=\"H8141\"* you|strong=\"H3605\"* shall|strong=\"H1931\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H3605\"* own|strong=\"H1961\"* property, and|strong=\"H7725\"* each|strong=\"H3605\"* of|strong=\"H8141\"* you|strong=\"H3605\"* shall|strong=\"H1931\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H3605\"* family|strong=\"H4940\"*." + }, + { + "verseNum": 11, + "text": "That|strong=\"H1931\"* fiftieth|strong=\"H2572\"* year|strong=\"H8141\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* a|strong=\"H3068\"* jubilee|strong=\"H3104\"* to|strong=\"H1961\"* you|strong=\"H3808\"*. In|strong=\"H8141\"* it|strong=\"H1931\"* you|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* sow|strong=\"H2232\"*, neither|strong=\"H3808\"* reap|strong=\"H7114\"* that|strong=\"H1931\"* which|strong=\"H1931\"* grows|strong=\"H5599\"* of|strong=\"H8141\"* itself|strong=\"H1931\"*, nor|strong=\"H3808\"* gather|strong=\"H1219\"* from|strong=\"H1961\"* the|strong=\"H1961\"* undressed|strong=\"H5139\"* vines|strong=\"H5139\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* jubilee|strong=\"H3104\"*; it|strong=\"H1931\"* shall|strong=\"H7704\"* be|strong=\"H1961\"* holy|strong=\"H6944\"* to|strong=\"H1961\"* you|strong=\"H3588\"*. You|strong=\"H3588\"* shall|strong=\"H7704\"* eat of|strong=\"H7704\"* its|strong=\"H3588\"* increase|strong=\"H8393\"* out|strong=\"H4480\"* of|strong=\"H7704\"* the|strong=\"H3588\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 13, + "text": "“‘In|strong=\"H8141\"* this|strong=\"H2063\"* Year|strong=\"H8141\"* of|strong=\"H8141\"* Jubilee|strong=\"H3104\"* each of|strong=\"H8141\"* you|strong=\"H7725\"* shall|strong=\"H8141\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* property." + }, + { + "verseNum": 14, + "text": "“‘If|strong=\"H3588\"* you|strong=\"H3588\"* sell|strong=\"H4376\"* anything to|strong=\"H3027\"* your|strong=\"H3588\"* neighbor|strong=\"H5997\"*, or|strong=\"H4376\"* buy|strong=\"H7069\"* from|strong=\"H3027\"* your|strong=\"H3588\"* neighbor|strong=\"H5997\"*, you|strong=\"H3588\"* shall|strong=\"H3027\"* not|strong=\"H3588\"* wrong|strong=\"H3238\"* one|strong=\"H3588\"* another|strong=\"H5997\"*." + }, + { + "verseNum": 15, + "text": "According to|strong=\"H8141\"* the|strong=\"H7069\"* number|strong=\"H4557\"* of|strong=\"H8141\"* years|strong=\"H8141\"* after|strong=\"H8141\"* the|strong=\"H7069\"* Jubilee|strong=\"H3104\"* you|strong=\"H8141\"* shall|strong=\"H8141\"* buy|strong=\"H7069\"* from|strong=\"H4557\"* your|strong=\"H4376\"* neighbor|strong=\"H5997\"*. According to|strong=\"H8141\"* the|strong=\"H7069\"* number|strong=\"H4557\"* of|strong=\"H8141\"* years|strong=\"H8141\"* of|strong=\"H8141\"* the|strong=\"H7069\"* crops|strong=\"H8393\"* he|strong=\"H8141\"* shall|strong=\"H8141\"* sell|strong=\"H4376\"* to|strong=\"H8141\"* you|strong=\"H8141\"*." + }, + { + "verseNum": 16, + "text": "According|strong=\"H6310\"* to|strong=\"H6310\"* the|strong=\"H3588\"* length|strong=\"H8141\"* of|strong=\"H8141\"* the|strong=\"H3588\"* years|strong=\"H8141\"* you|strong=\"H3588\"* shall|strong=\"H6310\"* increase|strong=\"H8393\"* its|strong=\"H3588\"* price|strong=\"H4736\"*, and|strong=\"H8141\"* according|strong=\"H6310\"* to|strong=\"H6310\"* the|strong=\"H3588\"* shortness of|strong=\"H8141\"* the|strong=\"H3588\"* years|strong=\"H8141\"* you|strong=\"H3588\"* shall|strong=\"H6310\"* diminish|strong=\"H4591\"* its|strong=\"H3588\"* price|strong=\"H4736\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* selling|strong=\"H4376\"* the|strong=\"H3588\"* number|strong=\"H4557\"* of|strong=\"H8141\"* the|strong=\"H3588\"* crops|strong=\"H8393\"* to|strong=\"H6310\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* wrong|strong=\"H3238\"* one|strong=\"H3808\"* another|strong=\"H5997\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* fear|strong=\"H3372\"* your|strong=\"H3068\"* God|strong=\"H3068\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "“‘Therefore|strong=\"H5921\"* you|strong=\"H5921\"* shall|strong=\"H6213\"* do|strong=\"H6213\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, and|strong=\"H4941\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"* and|strong=\"H4941\"* do|strong=\"H6213\"* them|strong=\"H5921\"*; and|strong=\"H4941\"* you|strong=\"H5921\"* shall|strong=\"H6213\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* land in|strong=\"H3427\"* safety." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5921\"* land shall|strong=\"H3427\"* yield|strong=\"H5414\"* its|strong=\"H5414\"* fruit|strong=\"H6529\"*, and|strong=\"H3427\"* you|strong=\"H5414\"* shall|strong=\"H3427\"* eat your|strong=\"H5414\"* fill|strong=\"H7648\"*, and|strong=\"H3427\"* dwell|strong=\"H3427\"* therein|strong=\"H3427\"* in|strong=\"H3427\"* safety." + }, + { + "verseNum": 20, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* said, “What|strong=\"H4100\"* shall|strong=\"H3808\"* we|strong=\"H3068\"* eat the|strong=\"H3588\"* seventh|strong=\"H7637\"* year|strong=\"H8141\"*? Behold|strong=\"H2005\"*, we|strong=\"H3068\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* sow|strong=\"H2232\"*, nor|strong=\"H3808\"* gather in|strong=\"H8141\"* our|strong=\"H3588\"* increase|strong=\"H8393\"*;”" + }, + { + "verseNum": 21, + "text": "then|strong=\"H6213\"* I|strong=\"H6680\"* will|strong=\"H1293\"* command|strong=\"H6680\"* my|strong=\"H6213\"* blessing|strong=\"H1293\"* on|strong=\"H6213\"* you|strong=\"H6680\"* in|strong=\"H8141\"* the|strong=\"H6213\"* sixth|strong=\"H8345\"* year|strong=\"H8141\"*, and|strong=\"H6213\"* it|strong=\"H6213\"* shall|strong=\"H1293\"* bear|strong=\"H6213\"* fruit|strong=\"H8393\"* for|strong=\"H6213\"* the|strong=\"H6213\"* three|strong=\"H7969\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H5704\"* shall|strong=\"H8141\"* sow|strong=\"H2232\"* the|strong=\"H4480\"* eighth|strong=\"H8066\"* year|strong=\"H8141\"*, and|strong=\"H8141\"* eat of|strong=\"H8141\"* the|strong=\"H4480\"* fruits|strong=\"H8393\"* from|strong=\"H4480\"* the|strong=\"H4480\"* old|strong=\"H3465\"* store until|strong=\"H5704\"* the|strong=\"H4480\"* ninth|strong=\"H8671\"* year|strong=\"H8141\"*. Until|strong=\"H5704\"* its|strong=\"H5704\"* fruits|strong=\"H8393\"* come|strong=\"H8393\"* in|strong=\"H8141\"*, you|strong=\"H5704\"* shall|strong=\"H8141\"* eat the|strong=\"H4480\"* old|strong=\"H3465\"* store." + }, + { + "verseNum": 23, + "text": "“‘The|strong=\"H3588\"* land shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* sold|strong=\"H4376\"* in|strong=\"H3808\"* perpetuity, for|strong=\"H3588\"* the|strong=\"H3588\"* land is|strong=\"H3808\"* mine|strong=\"H5978\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3808\"* strangers|strong=\"H1616\"* and|strong=\"H3808\"* live as|strong=\"H3588\"* foreigners|strong=\"H1616\"* with|strong=\"H5978\"* me|strong=\"H5978\"*." + }, + { + "verseNum": 24, + "text": "In|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* your|strong=\"H3605\"* possession you|strong=\"H5414\"* shall grant|strong=\"H5414\"* a|strong=\"H3068\"* redemption|strong=\"H1353\"* for|strong=\"H3605\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 25, + "text": "“‘If|strong=\"H3588\"* your|strong=\"H3588\"* brother becomes|strong=\"H4134\"* poor|strong=\"H4134\"*, and|strong=\"H7138\"* sells|strong=\"H4376\"* some of|strong=\"H1350\"* his|strong=\"H3588\"* possessions, then|strong=\"H3588\"* his|strong=\"H3588\"* kinsman|strong=\"H1350\"* who|strong=\"H7138\"* is|strong=\"H1350\"* next|strong=\"H7138\"* to|strong=\"H7138\"* him|strong=\"H3588\"* shall|strong=\"H1350\"* come, and|strong=\"H7138\"* redeem|strong=\"H1350\"* that|strong=\"H3588\"* which|strong=\"H3588\"* his|strong=\"H3588\"* brother has|strong=\"H3588\"* sold|strong=\"H4376\"*." + }, + { + "verseNum": 26, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* man has|strong=\"H1961\"* no|strong=\"H3808\"* one|strong=\"H3808\"* to|strong=\"H1961\"* redeem|strong=\"H1350\"* it|strong=\"H3588\"*, and|strong=\"H3027\"* he|strong=\"H3588\"* becomes|strong=\"H1961\"* prosperous and|strong=\"H3027\"* finds|strong=\"H4672\"* sufficient|strong=\"H1767\"* means|strong=\"H3027\"* to|strong=\"H1961\"* redeem|strong=\"H1350\"* it|strong=\"H3588\"*," + }, + { + "verseNum": 27, + "text": "then|strong=\"H7725\"* let|strong=\"H7725\"* him|strong=\"H7725\"* reckon|strong=\"H2803\"* the|strong=\"H7725\"* years|strong=\"H8141\"* since its|strong=\"H7725\"* sale|strong=\"H4465\"*, and|strong=\"H7725\"* restore|strong=\"H7725\"* the|strong=\"H7725\"* surplus to|strong=\"H7725\"* the|strong=\"H7725\"* man to|strong=\"H7725\"* whom he|strong=\"H8141\"* sold|strong=\"H4376\"* it|strong=\"H7725\"*; and|strong=\"H7725\"* he|strong=\"H8141\"* shall|strong=\"H8141\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* property." + }, + { + "verseNum": 28, + "text": "But|strong=\"H3808\"* if|strong=\"H1961\"* he|strong=\"H5704\"* isn’t able|strong=\"H3027\"* to|strong=\"H5704\"* get|strong=\"H7069\"* it|strong=\"H7725\"* back|strong=\"H7725\"* for|strong=\"H5704\"* himself|strong=\"H3027\"*, then|strong=\"H1961\"* what|strong=\"H4465\"* he|strong=\"H5704\"* has|strong=\"H1961\"* sold|strong=\"H4465\"* shall|strong=\"H3027\"* remain|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H7725\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* him|strong=\"H3027\"* who|strong=\"H4672\"* has|strong=\"H1961\"* bought|strong=\"H7069\"* it|strong=\"H7725\"* until|strong=\"H5704\"* the|strong=\"H7725\"* Year|strong=\"H8141\"* of|strong=\"H3027\"* Jubilee|strong=\"H3104\"*. In|strong=\"H8141\"* the|strong=\"H7725\"* Jubilee|strong=\"H3104\"* it|strong=\"H7725\"* shall|strong=\"H3027\"* be|strong=\"H1961\"* released|strong=\"H3318\"*, and|strong=\"H7725\"* he|strong=\"H5704\"* shall|strong=\"H3027\"* return|strong=\"H7725\"* to|strong=\"H5704\"* his|strong=\"H7725\"* property|strong=\"H5704\"*." + }, + { + "verseNum": 29, + "text": "“‘If|strong=\"H3588\"* a|strong=\"H3068\"* man sells|strong=\"H4376\"* a|strong=\"H3068\"* dwelling|strong=\"H4186\"* house|strong=\"H1004\"* in|strong=\"H8141\"* a|strong=\"H3068\"* walled|strong=\"H2346\"* city|strong=\"H5892\"*, then|strong=\"H1961\"* he|strong=\"H3588\"* may|strong=\"H1961\"* redeem|strong=\"H1353\"* it|strong=\"H3588\"* within|strong=\"H1004\"* a|strong=\"H3068\"* whole|strong=\"H3117\"* year|strong=\"H8141\"* after|strong=\"H1961\"* it|strong=\"H3588\"* has|strong=\"H1961\"* been|strong=\"H1961\"* sold|strong=\"H4376\"*. For|strong=\"H3588\"* a|strong=\"H3068\"* full|strong=\"H3117\"* year|strong=\"H8141\"* he|strong=\"H3588\"* shall|strong=\"H1004\"* have|strong=\"H1961\"* the|strong=\"H3588\"* right|strong=\"H1353\"* of|strong=\"H1004\"* redemption|strong=\"H1353\"*." + }, + { + "verseNum": 30, + "text": "If it|strong=\"H5704\"* isn’t redeemed|strong=\"H1350\"* within|strong=\"H1004\"* the|strong=\"H5704\"* space|strong=\"H4390\"* of|strong=\"H1004\"* a|strong=\"H3068\"* full|strong=\"H4390\"* year|strong=\"H8141\"*, then|strong=\"H6965\"* the|strong=\"H5704\"* house|strong=\"H1004\"* that|strong=\"H5892\"* is|strong=\"H5892\"* in|strong=\"H8141\"* the|strong=\"H5704\"* walled|strong=\"H2346\"* city|strong=\"H5892\"* shall|strong=\"H1004\"* be|strong=\"H3808\"* made|strong=\"H8141\"* sure|strong=\"H6965\"* in|strong=\"H8141\"* perpetuity to|strong=\"H5704\"* him|strong=\"H3318\"* who|strong=\"H3808\"* bought|strong=\"H7069\"* it|strong=\"H5704\"*, throughout|strong=\"H1755\"* his|strong=\"H6965\"* generations|strong=\"H1755\"*. It|strong=\"H5704\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* be|strong=\"H3808\"* released|strong=\"H3318\"* in|strong=\"H8141\"* the|strong=\"H5704\"* Jubilee|strong=\"H3104\"*." + }, + { + "verseNum": 31, + "text": "But|strong=\"H1961\"* the|strong=\"H5921\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5921\"* villages|strong=\"H2691\"* which|strong=\"H1992\"* have|strong=\"H1961\"* no|strong=\"H1961\"* wall|strong=\"H2346\"* around|strong=\"H5439\"* them|strong=\"H1992\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* accounted|strong=\"H2803\"* for|strong=\"H5921\"* with|strong=\"H1004\"* the|strong=\"H5921\"* fields|strong=\"H7704\"* of|strong=\"H1004\"* the|strong=\"H5921\"* country|strong=\"H7704\"*: they|strong=\"H1992\"* may|strong=\"H1961\"* be|strong=\"H1961\"* redeemed|strong=\"H1353\"*, and|strong=\"H1004\"* they|strong=\"H1992\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* released|strong=\"H3318\"* in|strong=\"H5921\"* the|strong=\"H5921\"* Jubilee|strong=\"H3104\"*." + }, + { + "verseNum": 32, + "text": "“‘Nevertheless, in|strong=\"H1004\"* the|strong=\"H1961\"* cities|strong=\"H5892\"* of|strong=\"H1004\"* the|strong=\"H1961\"* Levites|strong=\"H3881\"*, the|strong=\"H1961\"* Levites|strong=\"H3881\"* may|strong=\"H1961\"* redeem|strong=\"H1353\"* the|strong=\"H1961\"* houses|strong=\"H1004\"* in|strong=\"H1004\"* the|strong=\"H1961\"* cities|strong=\"H5892\"* of|strong=\"H1004\"* their|strong=\"H1961\"* possession at|strong=\"H1004\"* any|strong=\"H1961\"* time|strong=\"H5769\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H3588\"* Levites|strong=\"H3881\"* may|strong=\"H3478\"* redeem|strong=\"H1350\"* the|strong=\"H3588\"* house|strong=\"H1004\"* that|strong=\"H3588\"* was|strong=\"H3478\"* sold|strong=\"H4465\"*, and|strong=\"H1121\"* the|strong=\"H3588\"* city|strong=\"H5892\"* of|strong=\"H1121\"* his|strong=\"H3478\"* possession, and|strong=\"H1121\"* it|strong=\"H1931\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* released|strong=\"H3318\"* in|strong=\"H3478\"* the|strong=\"H3588\"* Jubilee|strong=\"H3104\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* houses|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H3588\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"* are|strong=\"H1121\"* their|strong=\"H3588\"* possession among|strong=\"H8432\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 34, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* field|strong=\"H7704\"* of|strong=\"H5892\"* the|strong=\"H3588\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* of|strong=\"H5892\"* their|strong=\"H3588\"* cities|strong=\"H5892\"* may|strong=\"H1931\"* not|strong=\"H3808\"* be|strong=\"H3808\"* sold|strong=\"H4376\"*, for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* their|strong=\"H3588\"* perpetual|strong=\"H5769\"* possession." + }, + { + "verseNum": 35, + "text": "“‘If|strong=\"H3588\"* your|strong=\"H3588\"* brother has|strong=\"H3588\"* become|strong=\"H3027\"* poor|strong=\"H4134\"*, and|strong=\"H3027\"* his|strong=\"H3027\"* hand|strong=\"H3027\"* can’t support|strong=\"H2388\"* himself|strong=\"H3027\"* among|strong=\"H5973\"* you|strong=\"H3588\"*, then|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3027\"* uphold him|strong=\"H3027\"*. He|strong=\"H3588\"* shall|strong=\"H3027\"* live|strong=\"H2421\"* with|strong=\"H5973\"* you|strong=\"H3588\"* like|strong=\"H5973\"* an|strong=\"H2421\"* alien|strong=\"H1616\"* and|strong=\"H3027\"* a|strong=\"H3068\"* temporary resident|strong=\"H8453\"*." + }, + { + "verseNum": 36, + "text": "Take|strong=\"H3947\"* no|strong=\"H3947\"* interest|strong=\"H5392\"* from|strong=\"H3947\"* him|strong=\"H5973\"* or|strong=\"H5392\"* profit; but|strong=\"H3947\"* fear|strong=\"H3372\"* your|strong=\"H3947\"* God, that|strong=\"H2421\"* your|strong=\"H3947\"* brother may|strong=\"H2421\"* live|strong=\"H2421\"* among|strong=\"H5973\"* you|strong=\"H3947\"*." + }, + { + "verseNum": 37, + "text": "You|strong=\"H5414\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* lend|strong=\"H5414\"* him|strong=\"H5414\"* your|strong=\"H5414\"* money|strong=\"H3701\"* at|strong=\"H3808\"* interest|strong=\"H5392\"*, nor|strong=\"H3808\"* give|strong=\"H5414\"* him|strong=\"H5414\"* your|strong=\"H5414\"* food for|strong=\"H3701\"* profit." + }, + { + "verseNum": 38, + "text": "I|strong=\"H5414\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H5414\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H5414\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, to|strong=\"H3318\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H5414\"* land of|strong=\"H3068\"* Canaan|strong=\"H3667\"*, and|strong=\"H3068\"* to|strong=\"H3318\"* be|strong=\"H1961\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 39, + "text": "“‘If|strong=\"H3588\"* your|strong=\"H3588\"* brother has|strong=\"H5650\"* grown poor|strong=\"H4134\"* among|strong=\"H5973\"* you|strong=\"H3588\"*, and|strong=\"H5650\"* sells|strong=\"H4376\"* himself|strong=\"H3808\"* to|strong=\"H5650\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* shall|strong=\"H5650\"* not|strong=\"H3808\"* make|strong=\"H5647\"* him|strong=\"H5973\"* to|strong=\"H5650\"* serve|strong=\"H5647\"* as|strong=\"H3588\"* a|strong=\"H3068\"* slave|strong=\"H5650\"*." + }, + { + "verseNum": 40, + "text": "As|strong=\"H5704\"* a|strong=\"H3068\"* hired|strong=\"H7916\"* servant|strong=\"H7916\"*, and|strong=\"H8141\"* as|strong=\"H5704\"* a|strong=\"H3068\"* temporary resident|strong=\"H8453\"*, he|strong=\"H5704\"* shall|strong=\"H8141\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H5704\"*; he|strong=\"H5704\"* shall|strong=\"H8141\"* serve|strong=\"H5647\"* with|strong=\"H5973\"* you|strong=\"H5704\"* until|strong=\"H5704\"* the|strong=\"H5647\"* Year|strong=\"H8141\"* of|strong=\"H8141\"* Jubilee|strong=\"H3104\"*." + }, + { + "verseNum": 41, + "text": "Then|strong=\"H3318\"* he|strong=\"H1931\"* shall|strong=\"H1121\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H7725\"* you|strong=\"H7725\"*, he|strong=\"H1931\"* and|strong=\"H1121\"* his|strong=\"H7725\"* children|strong=\"H1121\"* with|strong=\"H5973\"* him|strong=\"H7725\"*, and|strong=\"H1121\"* shall|strong=\"H1121\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* own|strong=\"H5973\"* family|strong=\"H4940\"*, and|strong=\"H1121\"* to|strong=\"H7725\"* the|strong=\"H7725\"* possession of|strong=\"H1121\"* his|strong=\"H7725\"* fathers." + }, + { + "verseNum": 42, + "text": "For|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* my|strong=\"H3318\"* servants|strong=\"H5650\"*, whom|strong=\"H1992\"* I|strong=\"H3588\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H5650\"* the|strong=\"H3588\"* land of|strong=\"H5650\"* Egypt|strong=\"H4714\"*. They|strong=\"H1992\"* shall|strong=\"H4714\"* not|strong=\"H3808\"* be|strong=\"H3808\"* sold|strong=\"H4376\"* as|strong=\"H3588\"* slaves|strong=\"H5650\"*." + }, + { + "verseNum": 43, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* rule|strong=\"H7287\"* over|strong=\"H7287\"* him|strong=\"H3372\"* with|strong=\"H7287\"* harshness, but|strong=\"H3808\"* shall|strong=\"H3808\"* fear|strong=\"H3372\"* your|strong=\"H3808\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 44, + "text": "“‘As|strong=\"H1961\"* for|strong=\"H5650\"* your|strong=\"H1961\"* male|strong=\"H5650\"* and|strong=\"H5650\"* your|strong=\"H1961\"* female slaves|strong=\"H5650\"*, whom|strong=\"H1992\"* you|strong=\"H1471\"* may|strong=\"H1961\"* have|strong=\"H1961\"* from|strong=\"H1471\"* the|strong=\"H5439\"* nations|strong=\"H1471\"* that|strong=\"H1471\"* are|strong=\"H1992\"* around|strong=\"H5439\"* you|strong=\"H1471\"*, from|strong=\"H1471\"* them|strong=\"H1992\"* you|strong=\"H1471\"* may|strong=\"H1961\"* buy|strong=\"H7069\"* male|strong=\"H5650\"* and|strong=\"H5650\"* female slaves|strong=\"H5650\"*." + }, + { + "verseNum": 45, + "text": "Moreover|strong=\"H1571\"*, of|strong=\"H1121\"* the|strong=\"H3205\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3205\"* aliens|strong=\"H1481\"* who|strong=\"H1121\"* live|strong=\"H1481\"* among|strong=\"H5973\"* you|strong=\"H5973\"*, of|strong=\"H1121\"* them|strong=\"H1992\"* you|strong=\"H5973\"* may|strong=\"H1961\"* buy|strong=\"H7069\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* their|strong=\"H1992\"* families|strong=\"H4940\"* who|strong=\"H1121\"* are|strong=\"H1992\"* with|strong=\"H5973\"* you|strong=\"H5973\"*, which|strong=\"H1992\"* they|strong=\"H1992\"* have|strong=\"H1961\"* conceived in|strong=\"H1121\"* your|strong=\"H1961\"* land|strong=\"H4940\"*; and|strong=\"H1121\"* they|strong=\"H1992\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H1961\"* property." + }, + { + "verseNum": 46, + "text": "You|strong=\"H3808\"* may|strong=\"H3478\"* make|strong=\"H5647\"* them|strong=\"H3423\"* an|strong=\"H5157\"* inheritance|strong=\"H5157\"* for|strong=\"H1121\"* your|strong=\"H3808\"* children|strong=\"H1121\"* after you|strong=\"H3808\"*, to|strong=\"H3478\"* hold for|strong=\"H1121\"* a|strong=\"H3068\"* possession|strong=\"H3423\"*. Of|strong=\"H1121\"* them|strong=\"H3423\"* you|strong=\"H3808\"* may|strong=\"H3478\"* take|strong=\"H3423\"* your|strong=\"H3808\"* slaves|strong=\"H5647\"* forever|strong=\"H5769\"*, but|strong=\"H3808\"* over|strong=\"H7287\"* your|strong=\"H3808\"* brothers|strong=\"H1121\"* the|strong=\"H5647\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* you|strong=\"H3808\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* rule|strong=\"H7287\"*, one|strong=\"H3808\"* over|strong=\"H7287\"* another|strong=\"H3808\"*, with|strong=\"H3478\"* harshness." + }, + { + "verseNum": 47, + "text": "“‘If|strong=\"H3588\"* an|strong=\"H3588\"* alien|strong=\"H1616\"* or|strong=\"H4376\"* temporary resident|strong=\"H8453\"* with|strong=\"H5973\"* you|strong=\"H3588\"* becomes|strong=\"H4134\"* rich|strong=\"H5381\"*, and|strong=\"H3027\"* your|strong=\"H3588\"* brother beside|strong=\"H3027\"* him|strong=\"H3027\"* has|strong=\"H3588\"* grown poor|strong=\"H4134\"*, and|strong=\"H3027\"* sells|strong=\"H4376\"* himself|strong=\"H3027\"* to|strong=\"H3027\"* the|strong=\"H3588\"* stranger|strong=\"H1616\"* or|strong=\"H4376\"* foreigner|strong=\"H1616\"* living among|strong=\"H5973\"* you|strong=\"H3588\"*, or|strong=\"H4376\"* to|strong=\"H3027\"* a|strong=\"H3068\"* member of|strong=\"H3027\"* the|strong=\"H3588\"* stranger|strong=\"H1616\"*’s family|strong=\"H4940\"*," + }, + { + "verseNum": 48, + "text": "after|strong=\"H1961\"* he is|strong=\"H1961\"* sold|strong=\"H4376\"* he may|strong=\"H1961\"* be|strong=\"H1961\"* redeemed|strong=\"H1350\"*. One|strong=\"H1961\"* of|strong=\"H1350\"* his|strong=\"H1961\"* brothers may|strong=\"H1961\"* redeem|strong=\"H1350\"* him|strong=\"H1961\"*;" + }, + { + "verseNum": 49, + "text": "or|strong=\"H1121\"* his|strong=\"H3027\"* uncle|strong=\"H1730\"*, or|strong=\"H1121\"* his|strong=\"H3027\"* uncle|strong=\"H1730\"*’s son|strong=\"H1121\"*, may|strong=\"H1121\"* redeem|strong=\"H1350\"* him|strong=\"H3027\"*, or|strong=\"H1121\"* any who|strong=\"H1121\"* is|strong=\"H3027\"* a|strong=\"H3068\"* close|strong=\"H1350\"* relative|strong=\"H1350\"* to|strong=\"H3027\"* him|strong=\"H3027\"* of|strong=\"H1121\"* his|strong=\"H3027\"* family|strong=\"H4940\"* may|strong=\"H1121\"* redeem|strong=\"H1350\"* him|strong=\"H3027\"*; or|strong=\"H1121\"* if|strong=\"H5381\"* he|strong=\"H3027\"* has|strong=\"H3027\"* grown rich|strong=\"H5381\"*, he|strong=\"H3027\"* may|strong=\"H1121\"* redeem|strong=\"H1350\"* himself|strong=\"H3027\"*." + }, + { + "verseNum": 50, + "text": "He|strong=\"H3117\"* shall|strong=\"H3117\"* reckon|strong=\"H2803\"* with|strong=\"H5973\"* him|strong=\"H5973\"* who|strong=\"H4376\"* bought|strong=\"H7069\"* him|strong=\"H5973\"* from|strong=\"H3117\"* the|strong=\"H3117\"* year|strong=\"H8141\"* that|strong=\"H3117\"* he|strong=\"H3117\"* sold|strong=\"H4376\"* himself|strong=\"H3117\"* to|strong=\"H5704\"* him|strong=\"H5973\"* to|strong=\"H5704\"* the|strong=\"H3117\"* Year|strong=\"H8141\"* of|strong=\"H3117\"* Jubilee|strong=\"H3104\"*. The|strong=\"H3117\"* price|strong=\"H3701\"* of|strong=\"H3117\"* his|strong=\"H1961\"* sale|strong=\"H4465\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* according|strong=\"H3701\"* to|strong=\"H5704\"* the|strong=\"H3117\"* number|strong=\"H4557\"* of|strong=\"H3117\"* years|strong=\"H8141\"*; he|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* with|strong=\"H5973\"* him|strong=\"H5973\"* according|strong=\"H3701\"* to|strong=\"H5704\"* the|strong=\"H3117\"* time|strong=\"H3117\"* of|strong=\"H3117\"* a|strong=\"H3068\"* hired|strong=\"H7916\"* servant|strong=\"H7916\"*." + }, + { + "verseNum": 51, + "text": "If there|strong=\"H7725\"* are|strong=\"H8141\"* yet|strong=\"H5750\"* many|strong=\"H7227\"* years|strong=\"H8141\"*, according|strong=\"H6310\"* to|strong=\"H7725\"* them|strong=\"H7725\"* he|strong=\"H8141\"* shall|strong=\"H6310\"* give|strong=\"H7725\"* back|strong=\"H7725\"* the|strong=\"H7725\"* price|strong=\"H3701\"* of|strong=\"H8141\"* his|strong=\"H7725\"* redemption|strong=\"H1353\"* out|strong=\"H7725\"* of|strong=\"H8141\"* the|strong=\"H7725\"* money|strong=\"H3701\"* that|strong=\"H8141\"* he|strong=\"H8141\"* was|strong=\"H8141\"* bought|strong=\"H4736\"* for|strong=\"H3701\"*." + }, + { + "verseNum": 52, + "text": "If there|strong=\"H7725\"* remain|strong=\"H7604\"* but|strong=\"H7725\"* a|strong=\"H3068\"* few|strong=\"H4592\"* years|strong=\"H8141\"* to|strong=\"H5704\"* the|strong=\"H7725\"* year|strong=\"H8141\"* of|strong=\"H8141\"* jubilee|strong=\"H3104\"*, then|strong=\"H7725\"* he|strong=\"H5704\"* shall|strong=\"H6310\"* reckon|strong=\"H2803\"* with|strong=\"H7725\"* him|strong=\"H7725\"*; according|strong=\"H6310\"* to|strong=\"H5704\"* his|strong=\"H7725\"* years|strong=\"H8141\"* of|strong=\"H8141\"* service he|strong=\"H5704\"* shall|strong=\"H6310\"* give|strong=\"H7725\"* back|strong=\"H7725\"* the|strong=\"H7725\"* price of|strong=\"H8141\"* his|strong=\"H7725\"* redemption|strong=\"H1353\"*." + }, + { + "verseNum": 53, + "text": "As|strong=\"H1961\"* a|strong=\"H3068\"* servant|strong=\"H7916\"* hired|strong=\"H7916\"* year|strong=\"H8141\"* by|strong=\"H8141\"* year|strong=\"H8141\"* shall|strong=\"H5869\"* he|strong=\"H3808\"* be|strong=\"H1961\"* with|strong=\"H5973\"* him|strong=\"H5973\"*. He|strong=\"H3808\"* shall|strong=\"H5869\"* not|strong=\"H3808\"* rule|strong=\"H7287\"* with|strong=\"H5973\"* harshness over|strong=\"H8141\"* him|strong=\"H5973\"* in|strong=\"H8141\"* your|strong=\"H1961\"* sight|strong=\"H5869\"*." + }, + { + "verseNum": 54, + "text": "If|strong=\"H1931\"* he|strong=\"H1931\"* isn’t redeemed|strong=\"H1350\"* by|strong=\"H8141\"* these|strong=\"H1931\"* means, then|strong=\"H3318\"* he|strong=\"H1931\"* shall|strong=\"H1121\"* be|strong=\"H3808\"* released|strong=\"H3318\"* in|strong=\"H8141\"* the|strong=\"H3318\"* Year|strong=\"H8141\"* of|strong=\"H1121\"* Jubilee|strong=\"H3104\"*: he|strong=\"H1931\"* and|strong=\"H1121\"* his|strong=\"H3808\"* children|strong=\"H1121\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 55, + "text": "For|strong=\"H3588\"* to|strong=\"H3318\"* me|strong=\"H3318\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* are|strong=\"H1992\"* servants|strong=\"H5650\"*; they|strong=\"H1992\"* are|strong=\"H1992\"* my|strong=\"H3068\"* servants|strong=\"H5650\"* whom|strong=\"H1992\"* I|strong=\"H3588\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3588\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*. I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "“‘You|strong=\"H3588\"* shall|strong=\"H3068\"* make|strong=\"H6213\"* for|strong=\"H3588\"* yourselves|strong=\"H3068\"* no|strong=\"H3808\"* idols|strong=\"H6459\"*, and|strong=\"H6965\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* a|strong=\"H3068\"* carved|strong=\"H6213\"* image|strong=\"H6459\"* or|strong=\"H3808\"* a|strong=\"H3068\"* pillar|strong=\"H4676\"*, and|strong=\"H6965\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* place|strong=\"H5414\"* any|strong=\"H6213\"* figured|strong=\"H4906\"* stone in|strong=\"H5921\"* your|strong=\"H3068\"* land, to|strong=\"H3068\"* bow|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H3068\"* it|strong=\"H5414\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "“‘You|strong=\"H3372\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* Sabbaths|strong=\"H7676\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* reverence|strong=\"H3372\"* for|strong=\"H3068\"* my|strong=\"H8104\"* sanctuary|strong=\"H4720\"*. I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "“‘If you|strong=\"H6213\"* walk|strong=\"H3212\"* in|strong=\"H6213\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"* and|strong=\"H3212\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"*, and|strong=\"H3212\"* do|strong=\"H6213\"* them|strong=\"H6213\"*," + }, + { + "verseNum": 4, + "text": "then|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* your|strong=\"H5414\"* rains|strong=\"H1653\"* in|strong=\"H6086\"* their|strong=\"H5414\"* season|strong=\"H6256\"*, and|strong=\"H6086\"* the|strong=\"H5414\"* land|strong=\"H7704\"* shall|strong=\"H7704\"* yield|strong=\"H5414\"* its|strong=\"H5414\"* increase|strong=\"H2981\"*, and|strong=\"H6086\"* the|strong=\"H5414\"* trees|strong=\"H6086\"* of|strong=\"H7704\"* the|strong=\"H5414\"* field|strong=\"H7704\"* shall|strong=\"H7704\"* yield|strong=\"H5414\"* their|strong=\"H5414\"* fruit|strong=\"H6529\"*." + }, + { + "verseNum": 5, + "text": "Your|strong=\"H2233\"* threshing|strong=\"H1786\"* shall|strong=\"H2233\"* continue|strong=\"H3427\"* until|strong=\"H5381\"* the|strong=\"H3427\"* vintage|strong=\"H1210\"*, and|strong=\"H3899\"* the|strong=\"H3427\"* vintage|strong=\"H1210\"* shall|strong=\"H2233\"* continue|strong=\"H3427\"* until|strong=\"H5381\"* the|strong=\"H3427\"* sowing|strong=\"H2233\"* time|strong=\"H2233\"*. You|strong=\"H5381\"* shall|strong=\"H2233\"* eat|strong=\"H3899\"* your|strong=\"H2233\"* bread|strong=\"H3899\"* to|strong=\"H3427\"* the|strong=\"H3427\"* full|strong=\"H7648\"*, and|strong=\"H3899\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* your|strong=\"H2233\"* land safely." + }, + { + "verseNum": 6, + "text": "“‘I|strong=\"H5414\"* will|strong=\"H2719\"* give|strong=\"H5414\"* peace|strong=\"H7965\"* in|strong=\"H7901\"* the|strong=\"H5414\"* land, and|strong=\"H2719\"* you|strong=\"H5414\"* shall|strong=\"H2719\"* lie|strong=\"H7901\"* down|strong=\"H7901\"*, and|strong=\"H2719\"* no|strong=\"H3808\"* one|strong=\"H3808\"* will|strong=\"H2719\"* make|strong=\"H5414\"* you|strong=\"H5414\"* afraid|strong=\"H2729\"*. I|strong=\"H5414\"* will|strong=\"H2719\"* remove|strong=\"H5674\"* evil|strong=\"H7451\"* animals|strong=\"H2416\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5414\"* land, neither|strong=\"H3808\"* shall|strong=\"H2719\"* the|strong=\"H5414\"* sword|strong=\"H2719\"* go|strong=\"H5674\"* through|strong=\"H5674\"* your|strong=\"H5414\"* land." + }, + { + "verseNum": 7, + "text": "You|strong=\"H6440\"* shall|strong=\"H2719\"* chase|strong=\"H7291\"* your|strong=\"H6440\"* enemies, and|strong=\"H2719\"* they|strong=\"H6440\"* shall|strong=\"H2719\"* fall|strong=\"H5307\"* before|strong=\"H6440\"* you|strong=\"H6440\"* by|strong=\"H6440\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 8, + "text": "Five|strong=\"H2568\"* of|strong=\"H6440\"* you|strong=\"H6440\"* shall|strong=\"H2719\"* chase|strong=\"H7291\"* a|strong=\"H3068\"* hundred|strong=\"H3967\"*, and|strong=\"H3967\"* a|strong=\"H3068\"* hundred|strong=\"H3967\"* of|strong=\"H6440\"* you|strong=\"H6440\"* shall|strong=\"H2719\"* chase|strong=\"H7291\"* ten|strong=\"H7233\"* thousand|strong=\"H7233\"*; and|strong=\"H3967\"* your|strong=\"H6440\"* enemies shall|strong=\"H2719\"* fall|strong=\"H5307\"* before|strong=\"H6440\"* you|strong=\"H6440\"* by|strong=\"H6440\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 9, + "text": "“‘I|strong=\"H6965\"* will|strong=\"H1285\"* have|strong=\"H6437\"* respect|strong=\"H6437\"* for|strong=\"H6965\"* you|strong=\"H6509\"*, make|strong=\"H6509\"* you|strong=\"H6509\"* fruitful|strong=\"H6509\"*, multiply|strong=\"H7235\"* you|strong=\"H6509\"*, and|strong=\"H6965\"* will|strong=\"H1285\"* establish|strong=\"H6965\"* my|strong=\"H6965\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* you|strong=\"H6509\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H6440\"* shall|strong=\"H6440\"* eat old|strong=\"H3465\"* supplies long|strong=\"H6440\"* kept, and|strong=\"H6440\"* you|strong=\"H6440\"* shall|strong=\"H6440\"* move out|strong=\"H3318\"* the|strong=\"H6440\"* old|strong=\"H3465\"* because|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* new|strong=\"H2319\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H5414\"* will|strong=\"H5315\"* set|strong=\"H5414\"* my|strong=\"H5414\"* tent among|strong=\"H8432\"* you|strong=\"H5414\"*, and|strong=\"H5315\"* my|strong=\"H5414\"* soul|strong=\"H5315\"* won’t abhor|strong=\"H1602\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H1980\"* will|strong=\"H1961\"* walk|strong=\"H1980\"* among|strong=\"H8432\"* you|strong=\"H8432\"*, and|strong=\"H1980\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H1961\"* God, and|strong=\"H1980\"* you|strong=\"H8432\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H1961\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H4714\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3212\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, that|strong=\"H3068\"* you|strong=\"H3212\"* should|strong=\"H3068\"* not|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H3068\"* slaves|strong=\"H5650\"*. I|strong=\"H4714\"* have|strong=\"H1961\"* broken|strong=\"H7665\"* the|strong=\"H3068\"* bars|strong=\"H4133\"* of|strong=\"H3068\"* your|strong=\"H3068\"* yoke|strong=\"H5923\"*, and|strong=\"H3068\"* made|strong=\"H1961\"* you|strong=\"H3212\"* walk|strong=\"H3212\"* upright|strong=\"H6968\"*." + }, + { + "verseNum": 14, + "text": "“‘But|strong=\"H3808\"* if you|strong=\"H3605\"* will|strong=\"H3808\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H6213\"* me|strong=\"H6213\"*, and|strong=\"H8085\"* will|strong=\"H3808\"* not|strong=\"H3808\"* do|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* commandments|strong=\"H4687\"*," + }, + { + "verseNum": 15, + "text": "and|strong=\"H4941\"* if you|strong=\"H3605\"* shall|strong=\"H5315\"* reject|strong=\"H3988\"* my|strong=\"H3605\"* statutes|strong=\"H2708\"*, and|strong=\"H4941\"* if your|strong=\"H3605\"* soul|strong=\"H5315\"* abhors|strong=\"H1602\"* my|strong=\"H3605\"* ordinances|strong=\"H4941\"*, so|strong=\"H6213\"* that|strong=\"H3605\"* you|strong=\"H3605\"* will|strong=\"H5315\"* not|strong=\"H1115\"* do|strong=\"H6213\"* all|strong=\"H3605\"* my|strong=\"H3605\"* commandments|strong=\"H4687\"*, but|strong=\"H3605\"* break|strong=\"H6565\"* my|strong=\"H3605\"* covenant|strong=\"H1285\"*," + }, + { + "verseNum": 16, + "text": "I|strong=\"H5921\"* also|strong=\"H6213\"* will|strong=\"H5869\"* do|strong=\"H6213\"* this|strong=\"H2063\"* to|strong=\"H5921\"* you|strong=\"H5921\"*: I|strong=\"H5921\"* will|strong=\"H5869\"* appoint|strong=\"H6485\"* terror over|strong=\"H5921\"* you|strong=\"H5921\"*, even|strong=\"H6213\"* consumption|strong=\"H7829\"* and|strong=\"H5869\"* fever|strong=\"H6920\"*, that|strong=\"H5315\"* shall|strong=\"H5315\"* consume|strong=\"H3615\"* the|strong=\"H5921\"* eyes|strong=\"H5869\"*, and|strong=\"H5869\"* make|strong=\"H6213\"* the|strong=\"H5921\"* soul|strong=\"H5315\"* to|strong=\"H5921\"* pine|strong=\"H1727\"* away|strong=\"H3615\"*. You|strong=\"H5921\"* will|strong=\"H5869\"* sow|strong=\"H2232\"* your|strong=\"H5921\"* seed|strong=\"H2233\"* in|strong=\"H5921\"* vain|strong=\"H7385\"*, for|strong=\"H5921\"* your|strong=\"H5921\"* enemies will|strong=\"H5869\"* eat it|strong=\"H5921\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* set|strong=\"H5414\"* my|strong=\"H5414\"* face|strong=\"H6440\"* against|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H6440\"* you|strong=\"H5414\"* will|strong=\"H5414\"* be|strong=\"H5414\"* struck|strong=\"H5062\"* before|strong=\"H6440\"* your|strong=\"H5414\"* enemies|strong=\"H8130\"*. Those|strong=\"H8130\"* who|strong=\"H8130\"* hate|strong=\"H8130\"* you|strong=\"H5414\"* will|strong=\"H5414\"* rule|strong=\"H7287\"* over|strong=\"H5414\"* you|strong=\"H5414\"*; and|strong=\"H6440\"* you|strong=\"H5414\"* will|strong=\"H5414\"* flee|strong=\"H5127\"* when|strong=\"H5127\"* no|strong=\"H5414\"* one pursues|strong=\"H7291\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 18, + "text": "“‘If you|strong=\"H5921\"* in|strong=\"H5921\"* spite|strong=\"H5921\"* of|strong=\"H5921\"* these|strong=\"H8085\"* things|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H5704\"* me|strong=\"H5921\"*, then|strong=\"H3254\"* I|strong=\"H5704\"* will|strong=\"H3808\"* chastise|strong=\"H3256\"* you|strong=\"H5921\"* seven|strong=\"H7651\"* times|strong=\"H7651\"* more|strong=\"H3254\"* for|strong=\"H5704\"* your|strong=\"H5921\"* sins|strong=\"H2403\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"H5414\"* will|strong=\"H8064\"* break|strong=\"H7665\"* the|strong=\"H5414\"* pride|strong=\"H1347\"* of|strong=\"H1347\"* your|strong=\"H5414\"* power|strong=\"H5797\"*, and|strong=\"H8064\"* I|strong=\"H5414\"* will|strong=\"H8064\"* make|strong=\"H5414\"* your|strong=\"H5414\"* sky|strong=\"H8064\"* like|strong=\"H8064\"* iron|strong=\"H1270\"*, and|strong=\"H8064\"* your|strong=\"H5414\"* soil like|strong=\"H8064\"* bronze|strong=\"H5154\"*." + }, + { + "verseNum": 20, + "text": "Your|strong=\"H5414\"* strength|strong=\"H3581\"* will|strong=\"H5414\"* be|strong=\"H3808\"* spent|strong=\"H8552\"* in|strong=\"H6086\"* vain|strong=\"H7385\"*; for|strong=\"H6086\"* your|strong=\"H5414\"* land won’t yield|strong=\"H5414\"* its|strong=\"H5414\"* increase|strong=\"H2981\"*, neither|strong=\"H3808\"* will|strong=\"H5414\"* the|strong=\"H5414\"* trees|strong=\"H6086\"* of|strong=\"H6086\"* the|strong=\"H5414\"* land yield|strong=\"H5414\"* their|strong=\"H5414\"* fruit|strong=\"H6529\"*." + }, + { + "verseNum": 21, + "text": "“‘If you|strong=\"H5921\"* walk|strong=\"H3212\"* contrary|strong=\"H7147\"* to|strong=\"H3212\"* me|strong=\"H5921\"*, and|strong=\"H3212\"* won’t listen|strong=\"H8085\"* to|strong=\"H3212\"* me|strong=\"H5921\"*, then|strong=\"H3254\"* I|strong=\"H5921\"* will|strong=\"H3808\"* bring|strong=\"H3212\"* seven|strong=\"H7651\"* times|strong=\"H7651\"* more|strong=\"H3254\"* plagues|strong=\"H4347\"* on|strong=\"H5921\"* you|strong=\"H5921\"* according|strong=\"H5921\"* to|strong=\"H3212\"* your|strong=\"H5921\"* sins|strong=\"H2403\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"H3772\"* will|strong=\"H7704\"* send|strong=\"H7971\"* the|strong=\"H7971\"* wild|strong=\"H7704\"* animals|strong=\"H2416\"* among|strong=\"H7921\"* you|strong=\"H7971\"*, which|strong=\"H7704\"* will|strong=\"H7704\"* rob you|strong=\"H7971\"* of|strong=\"H1870\"* your|strong=\"H7971\"* children|strong=\"H7921\"*, destroy|strong=\"H3772\"* your|strong=\"H7971\"* livestock, and|strong=\"H7971\"* make|strong=\"H3772\"* you|strong=\"H7971\"* few|strong=\"H4591\"* in|strong=\"H1870\"* number|strong=\"H4591\"*. Your|strong=\"H7971\"* roads|strong=\"H1870\"* will|strong=\"H7704\"* become|strong=\"H8074\"* desolate|strong=\"H8074\"*." + }, + { + "verseNum": 23, + "text": "“‘If by|strong=\"H1980\"* these things|strong=\"H5973\"* you|strong=\"H5973\"* won’t be|strong=\"H3808\"* turned|strong=\"H3256\"* back|strong=\"H1980\"* to|strong=\"H1980\"* me|strong=\"H5973\"*, but|strong=\"H3808\"* will|strong=\"H3808\"* walk|strong=\"H1980\"* contrary|strong=\"H7147\"* to|strong=\"H1980\"* me|strong=\"H5973\"*," + }, + { + "verseNum": 24, + "text": "then|strong=\"H1980\"* I|strong=\"H5921\"* will|strong=\"H1571\"* also|strong=\"H1571\"* walk|strong=\"H1980\"* contrary|strong=\"H7147\"* to|strong=\"H1980\"* you|strong=\"H5921\"*; and|strong=\"H1980\"* I|strong=\"H5921\"* will|strong=\"H1571\"* strike|strong=\"H5221\"* you|strong=\"H5921\"*, even|strong=\"H1571\"* I|strong=\"H5921\"*, seven|strong=\"H7651\"* times|strong=\"H7651\"* for|strong=\"H5921\"* your|strong=\"H5921\"* sins|strong=\"H2403\"*." + }, + { + "verseNum": 25, + "text": "I|strong=\"H5414\"* will|strong=\"H2719\"* bring|strong=\"H5414\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* upon|strong=\"H5921\"* you|strong=\"H5414\"* that|strong=\"H5414\"* will|strong=\"H2719\"* execute|strong=\"H5414\"* the|strong=\"H5921\"* vengeance|strong=\"H5359\"* of|strong=\"H3027\"* the|strong=\"H5921\"* covenant|strong=\"H1285\"*. You|strong=\"H5414\"* will|strong=\"H2719\"* be|strong=\"H3027\"* gathered|strong=\"H5414\"* together|strong=\"H5921\"* within|strong=\"H8432\"* your|strong=\"H5414\"* cities|strong=\"H5892\"*, and|strong=\"H7971\"* I|strong=\"H5414\"* will|strong=\"H2719\"* send|strong=\"H7971\"* the|strong=\"H5921\"* pestilence|strong=\"H1698\"* among|strong=\"H8432\"* you|strong=\"H5414\"*. You|strong=\"H5414\"* will|strong=\"H2719\"* be|strong=\"H3027\"* delivered|strong=\"H5414\"* into|strong=\"H8432\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* enemy." + }, + { + "verseNum": 26, + "text": "When|strong=\"H7725\"* I|strong=\"H3808\"* break|strong=\"H7665\"* your|strong=\"H7725\"* staff|strong=\"H4294\"* of|strong=\"H4294\"* bread|strong=\"H3899\"*, ten|strong=\"H6235\"* women shall|strong=\"H3808\"* bake your|strong=\"H7725\"* bread|strong=\"H3899\"* in|strong=\"H3899\"* one|strong=\"H3808\"* oven|strong=\"H8574\"*, and|strong=\"H7725\"* they|strong=\"H3808\"* shall|strong=\"H3808\"* deliver|strong=\"H7725\"* your|strong=\"H7725\"* bread|strong=\"H3899\"* again|strong=\"H7725\"* by|strong=\"H3808\"* weight|strong=\"H4948\"*. You|strong=\"H7725\"* shall|strong=\"H3808\"* eat|strong=\"H3899\"*, and|strong=\"H7725\"* not|strong=\"H3808\"* be|strong=\"H3808\"* satisfied|strong=\"H7646\"*." + }, + { + "verseNum": 27, + "text": "“‘If you|strong=\"H5973\"* in|strong=\"H1980\"* spite of|strong=\"H8085\"* this|strong=\"H2063\"* won’t listen|strong=\"H8085\"* to|strong=\"H1980\"* me|strong=\"H5973\"*, but|strong=\"H3808\"* walk|strong=\"H1980\"* contrary|strong=\"H7147\"* to|strong=\"H1980\"* me|strong=\"H5973\"*," + }, + { + "verseNum": 28, + "text": "then|strong=\"H1980\"* I|strong=\"H5921\"* will|strong=\"H2534\"* walk|strong=\"H1980\"* contrary|strong=\"H7147\"* to|strong=\"H1980\"* you|strong=\"H5921\"* in|strong=\"H5921\"* wrath|strong=\"H2534\"*. I|strong=\"H5921\"* will|strong=\"H2534\"* also chastise|strong=\"H3256\"* you|strong=\"H5921\"* seven|strong=\"H7651\"* times|strong=\"H7651\"* for|strong=\"H5921\"* your|strong=\"H5921\"* sins|strong=\"H2403\"*." + }, + { + "verseNum": 29, + "text": "You|strong=\"H1320\"* will|strong=\"H1121\"* eat the|strong=\"H1121\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* your|strong=\"H1121\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* you|strong=\"H1320\"* will|strong=\"H1121\"* eat the|strong=\"H1121\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* your|strong=\"H1121\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 30, + "text": "I|strong=\"H5414\"* will|strong=\"H5315\"* destroy|strong=\"H8045\"* your|strong=\"H5414\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, and|strong=\"H5315\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* your|strong=\"H5414\"* incense|strong=\"H2553\"* altars|strong=\"H2553\"*, and|strong=\"H5315\"* cast|strong=\"H5414\"* your|strong=\"H5414\"* dead|strong=\"H5315\"* bodies|strong=\"H6297\"* upon|strong=\"H5921\"* the|strong=\"H5921\"* bodies|strong=\"H6297\"* of|strong=\"H5921\"* your|strong=\"H5414\"* idols|strong=\"H1544\"*; and|strong=\"H5315\"* my|strong=\"H5414\"* soul|strong=\"H5315\"* will|strong=\"H5315\"* abhor|strong=\"H1602\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 31, + "text": "I|strong=\"H5414\"* will|strong=\"H5892\"* lay|strong=\"H5414\"* your|strong=\"H5414\"* cities|strong=\"H5892\"* waste|strong=\"H2723\"*, and|strong=\"H5892\"* will|strong=\"H5892\"* bring|strong=\"H5414\"* your|strong=\"H5414\"* sanctuaries|strong=\"H4720\"* to|strong=\"H5414\"* desolation|strong=\"H2723\"*. I|strong=\"H5414\"* will|strong=\"H5892\"* not|strong=\"H3808\"* take|strong=\"H5414\"* delight|strong=\"H7381\"* in|strong=\"H5892\"* the|strong=\"H5414\"* sweet|strong=\"H5207\"* fragrance|strong=\"H7381\"* of|strong=\"H5892\"* your|strong=\"H5414\"* offerings." + }, + { + "verseNum": 32, + "text": "I|strong=\"H5921\"* will|strong=\"H3427\"* bring|strong=\"H8074\"* the|strong=\"H5921\"* land into|strong=\"H5921\"* desolation|strong=\"H8074\"*, and|strong=\"H3427\"* your|strong=\"H5921\"* enemies who|strong=\"H3427\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H5921\"* will|strong=\"H3427\"* be astonished|strong=\"H8074\"* at|strong=\"H3427\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 33, + "text": "I|strong=\"H5892\"* will|strong=\"H1961\"* scatter|strong=\"H2219\"* you|strong=\"H1471\"* among|strong=\"H2719\"* the|strong=\"H1961\"* nations|strong=\"H1471\"*, and|strong=\"H5892\"* I|strong=\"H5892\"* will|strong=\"H1961\"* draw|strong=\"H7324\"* out|strong=\"H7324\"* the|strong=\"H1961\"* sword|strong=\"H2719\"* after|strong=\"H1961\"* you|strong=\"H1471\"*. Your|strong=\"H1961\"* land will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*, and|strong=\"H5892\"* your|strong=\"H1961\"* cities|strong=\"H5892\"* shall|strong=\"H1471\"* be|strong=\"H1961\"* a|strong=\"H3068\"* waste|strong=\"H2723\"*." + }, + { + "verseNum": 34, + "text": "Then|strong=\"H3117\"* the|strong=\"H3605\"* land will|strong=\"H3117\"* enjoy|strong=\"H7521\"* its|strong=\"H3605\"* Sabbaths|strong=\"H7676\"* as|strong=\"H3117\"* long|strong=\"H3117\"* as|strong=\"H3117\"* it|strong=\"H3117\"* lies|strong=\"H8074\"* desolate|strong=\"H8074\"* and|strong=\"H3117\"* you|strong=\"H3605\"* are|strong=\"H3117\"* in|strong=\"H3117\"* your|strong=\"H3605\"* enemies’ land. Even then|strong=\"H3117\"* the|strong=\"H3605\"* land will|strong=\"H3117\"* rest|strong=\"H7673\"* and|strong=\"H3117\"* enjoy|strong=\"H7521\"* its|strong=\"H3605\"* Sabbaths|strong=\"H7676\"*." + }, + { + "verseNum": 35, + "text": "As|strong=\"H3117\"* long|strong=\"H3117\"* as|strong=\"H3117\"* it|strong=\"H5921\"* lies|strong=\"H8074\"* desolate|strong=\"H8074\"* it|strong=\"H5921\"* shall|strong=\"H3117\"* have|strong=\"H3117\"* rest|strong=\"H7673\"*, even|strong=\"H3808\"* the|strong=\"H3605\"* rest|strong=\"H7673\"* which|strong=\"H3117\"* it|strong=\"H5921\"* didn’t have|strong=\"H3117\"* in|strong=\"H3427\"* your|strong=\"H3605\"* Sabbaths|strong=\"H7676\"* when|strong=\"H3117\"* you|strong=\"H3605\"* lived|strong=\"H3427\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 36, + "text": "“‘As|strong=\"H3824\"* for|strong=\"H5127\"* those|strong=\"H7291\"* of|strong=\"H6963\"* you|strong=\"H7291\"* who|strong=\"H7604\"* are|strong=\"H3824\"* left|strong=\"H7604\"*, I|strong=\"H6963\"* will|strong=\"H2719\"* send a|strong=\"H3068\"* faintness|strong=\"H4816\"* into|strong=\"H5307\"* their|strong=\"H5307\"* hearts|strong=\"H3824\"* in|strong=\"H7604\"* the|strong=\"H7291\"* lands of|strong=\"H6963\"* their|strong=\"H5307\"* enemies. The|strong=\"H7291\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* a|strong=\"H3068\"* driven|strong=\"H5086\"* leaf|strong=\"H5929\"* will|strong=\"H2719\"* put|strong=\"H5127\"* them|strong=\"H7291\"* to|strong=\"H3824\"* flight|strong=\"H5127\"*; and|strong=\"H6963\"* they|strong=\"H2719\"* shall|strong=\"H2719\"* flee|strong=\"H5127\"*, as|strong=\"H3824\"* one|strong=\"H6963\"* flees|strong=\"H5127\"* from|strong=\"H5127\"* the|strong=\"H7291\"* sword|strong=\"H2719\"*. They|strong=\"H2719\"* will|strong=\"H2719\"* fall|strong=\"H5307\"* when|strong=\"H5307\"* no|strong=\"H7604\"* one|strong=\"H6963\"* pursues|strong=\"H7291\"*." + }, + { + "verseNum": 37, + "text": "They|strong=\"H3808\"* will|strong=\"H1961\"* stumble|strong=\"H3782\"* over|strong=\"H3782\"* one|strong=\"H3808\"* another|strong=\"H3808\"*, as|strong=\"H1961\"* it|strong=\"H6440\"* were|strong=\"H1961\"* before|strong=\"H6440\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*, when|strong=\"H1961\"* no|strong=\"H3808\"* one|strong=\"H3808\"* pursues|strong=\"H7291\"*. You|strong=\"H6440\"* will|strong=\"H1961\"* have|strong=\"H1961\"* no|strong=\"H3808\"* power to|strong=\"H1961\"* stand|strong=\"H8617\"* before|strong=\"H6440\"* your|strong=\"H6440\"* enemies." + }, + { + "verseNum": 38, + "text": "You|strong=\"H1471\"* will|strong=\"H1471\"* perish among the|strong=\"H1471\"* nations|strong=\"H1471\"*. The|strong=\"H1471\"* land of|strong=\"H1471\"* your|strong=\"H1471\"* enemies will|strong=\"H1471\"* eat you|strong=\"H1471\"* up." + }, + { + "verseNum": 39, + "text": "Those of|strong=\"H5771\"* you|strong=\"H5771\"* who|strong=\"H7604\"* are|strong=\"H5771\"* left|strong=\"H7604\"* will|strong=\"H5771\"* pine away|strong=\"H4743\"* in|strong=\"H7604\"* their|strong=\"H5771\"* iniquity|strong=\"H5771\"* in|strong=\"H7604\"* your enemies’ lands; and|strong=\"H5771\"* also in|strong=\"H7604\"* the|strong=\"H7604\"* iniquities|strong=\"H5771\"* of|strong=\"H5771\"* their|strong=\"H5771\"* fathers they shall|strong=\"H5771\"* pine away|strong=\"H4743\"* with|strong=\"H5771\"* them." + }, + { + "verseNum": 40, + "text": "“‘If they confess|strong=\"H3034\"* their|strong=\"H3034\"* iniquity|strong=\"H5771\"* and|strong=\"H1980\"* the|strong=\"H5973\"* iniquity|strong=\"H5771\"* of|strong=\"H5771\"* their|strong=\"H3034\"* fathers, in|strong=\"H1980\"* their|strong=\"H3034\"* trespass|strong=\"H4604\"* which they trespassed|strong=\"H4603\"* against|strong=\"H5973\"* me|strong=\"H5973\"*; and|strong=\"H1980\"* also that|strong=\"H1980\"* because|strong=\"H5973\"* they walked|strong=\"H1980\"* contrary|strong=\"H7147\"* to|strong=\"H1980\"* me|strong=\"H5973\"*," + }, + { + "verseNum": 41, + "text": "I|strong=\"H3212\"* also walked|strong=\"H3212\"* contrary|strong=\"H7147\"* to|strong=\"H3212\"* them|strong=\"H3665\"*, and|strong=\"H3212\"* brought|strong=\"H3212\"* them|strong=\"H3665\"* into|strong=\"H3212\"* the|strong=\"H5973\"* land of|strong=\"H5771\"* their|strong=\"H3665\"* enemies; if then their|strong=\"H3665\"* uncircumcised|strong=\"H6189\"* heart|strong=\"H3824\"* is|strong=\"H5771\"* humbled|strong=\"H3665\"*, and|strong=\"H3212\"* they|strong=\"H3824\"* then accept|strong=\"H7521\"* the|strong=\"H5973\"* punishment|strong=\"H5771\"* of|strong=\"H5771\"* their|strong=\"H3665\"* iniquity|strong=\"H5771\"*," + }, + { + "verseNum": 42, + "text": "then I|strong=\"H2142\"* will|strong=\"H3290\"* remember|strong=\"H2142\"* my|strong=\"H2142\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* Jacob|strong=\"H3290\"*, my|strong=\"H2142\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* Isaac|strong=\"H3327\"*, and|strong=\"H1285\"* also my|strong=\"H2142\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* Abraham; and|strong=\"H1285\"* I|strong=\"H2142\"* will|strong=\"H3290\"* remember|strong=\"H2142\"* the|strong=\"H2142\"* land." + }, + { + "verseNum": 43, + "text": "The|strong=\"H5800\"* land also|strong=\"H5315\"* will|strong=\"H5315\"* be|strong=\"H5315\"* left|strong=\"H5800\"* by|strong=\"H5771\"* them|strong=\"H1992\"*, and|strong=\"H4941\"* will|strong=\"H5315\"* enjoy|strong=\"H7521\"* its|strong=\"H7521\"* Sabbaths|strong=\"H7676\"* while|strong=\"H4941\"* it|strong=\"H4941\"* lies|strong=\"H8074\"* desolate|strong=\"H8074\"* without them|strong=\"H1992\"*; and|strong=\"H4941\"* they|strong=\"H1992\"* will|strong=\"H5315\"* accept|strong=\"H7521\"* the|strong=\"H5800\"* punishment|strong=\"H5771\"* of|strong=\"H4941\"* their|strong=\"H1992\"* iniquity|strong=\"H5771\"* because|strong=\"H3282\"* they|strong=\"H1992\"* rejected|strong=\"H3988\"* my|strong=\"H5800\"* ordinances|strong=\"H4941\"*, and|strong=\"H4941\"* their|strong=\"H1992\"* soul|strong=\"H5315\"* abhorred|strong=\"H3988\"* my|strong=\"H5800\"* statutes|strong=\"H2708\"*." + }, + { + "verseNum": 44, + "text": "Yet|strong=\"H3588\"* for|strong=\"H3588\"* all|strong=\"H1571\"* that|strong=\"H3588\"*, when|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* their|strong=\"H3068\"* enemies, I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* reject|strong=\"H3988\"* them|strong=\"H3615\"*, neither|strong=\"H3808\"* will|strong=\"H3068\"* I|strong=\"H3588\"* abhor|strong=\"H1602\"* them|strong=\"H3615\"*, to|strong=\"H3068\"* destroy|strong=\"H3615\"* them|strong=\"H3615\"* utterly|strong=\"H3988\"* and|strong=\"H3068\"* to|strong=\"H3068\"* break|strong=\"H6565\"* my|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* them|strong=\"H3615\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 45, + "text": "But|strong=\"H1961\"* I|strong=\"H4714\"* will|strong=\"H3068\"* for|strong=\"H4714\"* their|strong=\"H3068\"* sake remember|strong=\"H2142\"* the|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* their|strong=\"H3068\"* ancestors|strong=\"H7223\"*, whom|strong=\"H5869\"* I|strong=\"H4714\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"* in|strong=\"H3068\"* the|strong=\"H3068\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* the|strong=\"H3068\"* nations|strong=\"H1471\"*, that|strong=\"H3068\"* I|strong=\"H4714\"* might|strong=\"H3068\"* be|strong=\"H1961\"* their|strong=\"H3068\"* God|strong=\"H3068\"*. I|strong=\"H4714\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 46, + "text": "These are|strong=\"H1121\"* the|strong=\"H5414\"* statutes|strong=\"H2706\"*, ordinances|strong=\"H4941\"*, and|strong=\"H1121\"* laws|strong=\"H8451\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* made|strong=\"H5414\"* between|strong=\"H4941\"* him|strong=\"H5414\"* and|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* say|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H1121\"*, ‘When|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1121\"* consecrates a|strong=\"H3068\"* person|strong=\"H5315\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"* in|strong=\"H3478\"* a|strong=\"H3068\"* vow|strong=\"H5088\"*, according to|strong=\"H1696\"* your|strong=\"H3068\"* valuation|strong=\"H6187\"*," + }, + { + "verseNum": 3, + "text": "your|strong=\"H1961\"* valuation|strong=\"H6187\"* of|strong=\"H1121\"* a|strong=\"H3068\"* male|strong=\"H2145\"* from|strong=\"H1121\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* to|strong=\"H5704\"* sixty|strong=\"H8346\"* years|strong=\"H8141\"* old|strong=\"H1121\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* fifty|strong=\"H2572\"* shekels|strong=\"H8255\"* of|strong=\"H1121\"* silver|strong=\"H3701\"*, according|strong=\"H3701\"* to|strong=\"H5704\"* the|strong=\"H5704\"* shekel|strong=\"H8255\"*+ 27:3 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H1121\"* the|strong=\"H5704\"* sanctuary|strong=\"H6944\"*." + }, + { + "verseNum": 4, + "text": "If|strong=\"H1961\"* she|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* female|strong=\"H5347\"*, then|strong=\"H1961\"* your|strong=\"H1961\"* valuation|strong=\"H6187\"* shall|strong=\"H1931\"* be|strong=\"H1961\"* thirty|strong=\"H7970\"* shekels|strong=\"H8255\"*." + }, + { + "verseNum": 5, + "text": "If|strong=\"H1961\"* the|strong=\"H5704\"* person is|strong=\"H1121\"* from|strong=\"H1121\"* five|strong=\"H2568\"* years|strong=\"H8141\"* old|strong=\"H1121\"* to|strong=\"H5704\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, then|strong=\"H1961\"* your|strong=\"H1961\"* valuation|strong=\"H6187\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* for|strong=\"H5704\"* a|strong=\"H3068\"* male|strong=\"H2145\"* twenty|strong=\"H6242\"* shekels|strong=\"H8255\"*, and|strong=\"H1121\"* for|strong=\"H5704\"* a|strong=\"H3068\"* female|strong=\"H5347\"* ten|strong=\"H6235\"* shekels|strong=\"H8255\"*." + }, + { + "verseNum": 6, + "text": "If|strong=\"H1961\"* the|strong=\"H5704\"* person is|strong=\"H3701\"* from|strong=\"H1121\"* a|strong=\"H3068\"* month|strong=\"H2320\"* old|strong=\"H1121\"* to|strong=\"H5704\"* five|strong=\"H2568\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, then|strong=\"H1961\"* your|strong=\"H1961\"* valuation|strong=\"H6187\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* for|strong=\"H5704\"* a|strong=\"H3068\"* male|strong=\"H2145\"* five|strong=\"H2568\"* shekels|strong=\"H8255\"* of|strong=\"H1121\"* silver|strong=\"H3701\"*, and|strong=\"H1121\"* for|strong=\"H5704\"* a|strong=\"H3068\"* female|strong=\"H5347\"* your|strong=\"H1961\"* valuation|strong=\"H6187\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* three|strong=\"H7969\"* shekels|strong=\"H8255\"* of|strong=\"H1121\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 7, + "text": "If|strong=\"H1961\"* the|strong=\"H1961\"* person is|strong=\"H1121\"* from|strong=\"H1121\"* sixty|strong=\"H8346\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*; if|strong=\"H1961\"* he|strong=\"H2568\"* is|strong=\"H1121\"* a|strong=\"H3068\"* male|strong=\"H2145\"*, then|strong=\"H1961\"* your|strong=\"H1961\"* valuation|strong=\"H6187\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* fifteen|strong=\"H2568\"* shekels|strong=\"H8255\"*, and|strong=\"H1121\"* for|strong=\"H1121\"* a|strong=\"H3068\"* female|strong=\"H5347\"* ten|strong=\"H6235\"* shekels|strong=\"H8255\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H1931\"* if|strong=\"H5381\"* he|strong=\"H1931\"* is|strong=\"H1931\"* poorer|strong=\"H4134\"* than|strong=\"H5921\"* your|strong=\"H5921\"* valuation|strong=\"H6187\"*, then|strong=\"H5975\"* he|strong=\"H1931\"* shall|strong=\"H3548\"* be|strong=\"H3027\"* set|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*, and|strong=\"H3027\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* assign a|strong=\"H3068\"* value|strong=\"H6186\"* to|strong=\"H5921\"* him|strong=\"H6440\"*. The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* assign a|strong=\"H3068\"* value|strong=\"H6186\"* according|strong=\"H5921\"* to|strong=\"H5921\"* his|strong=\"H6440\"* ability|strong=\"H3027\"* to|strong=\"H5921\"* pay." + }, + { + "verseNum": 9, + "text": "“‘If|strong=\"H1961\"* it|strong=\"H5414\"* is|strong=\"H3068\"* an|strong=\"H7126\"* animal|strong=\"H1961\"* of|strong=\"H3068\"* which|strong=\"H3068\"* men|strong=\"H3605\"* offer|strong=\"H7126\"* an|strong=\"H7126\"* offering|strong=\"H7133\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, all|strong=\"H3605\"* that|strong=\"H3605\"* any|strong=\"H3605\"* man|strong=\"H3605\"* gives|strong=\"H5414\"* of|strong=\"H3068\"* such|strong=\"H1961\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* becomes|strong=\"H1961\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H1931\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* alter|strong=\"H2498\"* it|strong=\"H1931\"*, nor|strong=\"H3808\"* exchange|strong=\"H4171\"* it|strong=\"H1931\"*, a|strong=\"H3068\"* good|strong=\"H2896\"* for|strong=\"H7451\"* a|strong=\"H3068\"* bad|strong=\"H7451\"*, or|strong=\"H3808\"* a|strong=\"H3068\"* bad|strong=\"H7451\"* for|strong=\"H7451\"* a|strong=\"H3068\"* good|strong=\"H2896\"*. If|strong=\"H1961\"* he|strong=\"H1931\"* shall|strong=\"H3808\"* at|strong=\"H1961\"* all|strong=\"H4171\"* exchange|strong=\"H4171\"* animal|strong=\"H1961\"* for|strong=\"H7451\"* animal|strong=\"H1961\"*, then|strong=\"H1961\"* both it|strong=\"H1931\"* and|strong=\"H2896\"* that|strong=\"H1931\"* for|strong=\"H7451\"* which|strong=\"H1931\"* it|strong=\"H1931\"* is|strong=\"H1931\"* exchanged|strong=\"H8545\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 11, + "text": "If it|strong=\"H7126\"* is|strong=\"H3068\"* any|strong=\"H3605\"* unclean|strong=\"H2931\"* animal, of|strong=\"H3068\"* which|strong=\"H3068\"* they|strong=\"H3068\"* do|strong=\"H3068\"* not|strong=\"H3808\"* offer|strong=\"H7126\"* as|strong=\"H3068\"* an|strong=\"H7126\"* offering|strong=\"H7133\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, then|strong=\"H7126\"* he|strong=\"H3068\"* shall|strong=\"H3548\"* set|strong=\"H5975\"* the|strong=\"H3605\"* animal before|strong=\"H6440\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*;" + }, + { + "verseNum": 12, + "text": "and|strong=\"H3548\"* the|strong=\"H1961\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* evaluate it|strong=\"H3651\"*, whether it|strong=\"H3651\"* is|strong=\"H2896\"* good|strong=\"H2896\"* or|strong=\"H2896\"* bad|strong=\"H7451\"*. As|strong=\"H1961\"* the|strong=\"H1961\"* priest|strong=\"H3548\"* evaluates it|strong=\"H3651\"*, so|strong=\"H3651\"* it|strong=\"H3651\"* shall|strong=\"H3548\"* be|strong=\"H1961\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"H1350\"* if he|strong=\"H5921\"* will|strong=\"H1350\"* indeed redeem|strong=\"H1350\"* it|strong=\"H5921\"*, then|strong=\"H3254\"* he|strong=\"H5921\"* shall|strong=\"H1350\"* add|strong=\"H3254\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* part|strong=\"H2549\"* of|strong=\"H5921\"* it|strong=\"H5921\"* to|strong=\"H5921\"* its|strong=\"H5921\"* valuation|strong=\"H6187\"*." + }, + { + "verseNum": 14, + "text": "“‘When|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H7451\"* dedicates his|strong=\"H3068\"* house|strong=\"H1004\"* to|strong=\"H3068\"* be|strong=\"H3068\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, then|strong=\"H6965\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* evaluate it|strong=\"H3588\"*, whether it|strong=\"H3588\"* is|strong=\"H3068\"* good|strong=\"H2896\"* or|strong=\"H2896\"* bad|strong=\"H7451\"*. As|strong=\"H3651\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* evaluates it|strong=\"H3588\"*, so|strong=\"H3651\"* it|strong=\"H3588\"* shall|strong=\"H3548\"* stand|strong=\"H6965\"*." + }, + { + "verseNum": 15, + "text": "If|strong=\"H1961\"* he|strong=\"H1004\"* who dedicates it|strong=\"H5921\"* will|strong=\"H1961\"* redeem|strong=\"H1350\"* his|strong=\"H5921\"* house|strong=\"H1004\"*, then|strong=\"H1961\"* he|strong=\"H1004\"* shall|strong=\"H1004\"* add|strong=\"H3254\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* part|strong=\"H2549\"* of|strong=\"H1004\"* the|strong=\"H5921\"* money|strong=\"H3701\"* of|strong=\"H1004\"* your|strong=\"H5921\"* valuation|strong=\"H6187\"* to|strong=\"H1961\"* it|strong=\"H5921\"*, and|strong=\"H3701\"* it|strong=\"H5921\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* his|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "“‘If|strong=\"H1961\"* a|strong=\"H3068\"* man dedicates to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* part of|strong=\"H3068\"* the|strong=\"H3068\"* field|strong=\"H7704\"* of|strong=\"H3068\"* his|strong=\"H3068\"* possession|strong=\"H2233\"*, then|strong=\"H1961\"* your|strong=\"H3068\"* valuation|strong=\"H6187\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* according|strong=\"H6310\"* to|strong=\"H3068\"* the|strong=\"H3068\"* seed|strong=\"H2233\"* for|strong=\"H3068\"* it|strong=\"H1961\"*. The|strong=\"H3068\"* sowing|strong=\"H2233\"* of|strong=\"H3068\"* a|strong=\"H3068\"* homer|strong=\"H2563\"*+ 27:16 1 homer is about 220 liters or 6 bushels* of|strong=\"H3068\"* barley|strong=\"H8184\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* valued at|strong=\"H3068\"* fifty|strong=\"H2572\"* shekels|strong=\"H8255\"*+ 27:16 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H3068\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 17, + "text": "If he|strong=\"H8141\"* dedicates his|strong=\"H6965\"* field|strong=\"H7704\"* from|strong=\"H6965\"* the|strong=\"H6965\"* Year|strong=\"H8141\"* of|strong=\"H8141\"* Jubilee|strong=\"H3104\"*, according to|strong=\"H6965\"* your|strong=\"H6965\"* valuation|strong=\"H6187\"* it|strong=\"H6942\"* shall|strong=\"H7704\"* stand|strong=\"H6965\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H3498\"* if he|strong=\"H5704\"* dedicates his|strong=\"H5921\"* field|strong=\"H7704\"* after|strong=\"H5921\"* the|strong=\"H5921\"* Jubilee|strong=\"H3104\"*, then|strong=\"H3548\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* reckon|strong=\"H2803\"* to|strong=\"H5704\"* him|strong=\"H5921\"* the|strong=\"H5921\"* money|strong=\"H3701\"* according|strong=\"H5921\"* to|strong=\"H5704\"* the|strong=\"H5921\"* years|strong=\"H8141\"* that|strong=\"H3548\"* remain|strong=\"H3498\"* to|strong=\"H5704\"* the|strong=\"H5921\"* Year|strong=\"H8141\"* of|strong=\"H8141\"* Jubilee|strong=\"H3104\"*; and|strong=\"H3701\"* an|strong=\"H2803\"* abatement shall|strong=\"H3548\"* be|strong=\"H6310\"* made|strong=\"H8141\"* from|strong=\"H5921\"* your|strong=\"H5921\"* valuation|strong=\"H6187\"*." + }, + { + "verseNum": 19, + "text": "If he|strong=\"H5921\"* who dedicated|strong=\"H6942\"* the|strong=\"H5921\"* field|strong=\"H7704\"* will|strong=\"H7704\"* indeed redeem|strong=\"H1350\"* it|strong=\"H5921\"*, then|strong=\"H6965\"* he|strong=\"H5921\"* shall|strong=\"H7704\"* add|strong=\"H3254\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* part|strong=\"H2549\"* of|strong=\"H7704\"* the|strong=\"H5921\"* money|strong=\"H3701\"* of|strong=\"H7704\"* your|strong=\"H5921\"* valuation|strong=\"H6187\"* to|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H6965\"* it|strong=\"H5921\"* shall|strong=\"H7704\"* remain|strong=\"H6965\"* his|strong=\"H5921\"*." + }, + { + "verseNum": 20, + "text": "If he|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* redeem|strong=\"H1350\"* the|strong=\"H3808\"* field|strong=\"H7704\"*, or|strong=\"H3808\"* if he|strong=\"H3808\"* has|strong=\"H7704\"* sold|strong=\"H4376\"* the|strong=\"H3808\"* field|strong=\"H7704\"* to|strong=\"H7704\"* another|strong=\"H5750\"* man, it|strong=\"H3808\"* shall|strong=\"H7704\"* not|strong=\"H3808\"* be|strong=\"H3808\"* redeemed|strong=\"H1350\"* any|strong=\"H5750\"* more|strong=\"H5750\"*;" + }, + { + "verseNum": 21, + "text": "but|strong=\"H1961\"* the|strong=\"H3068\"* field|strong=\"H7704\"*, when|strong=\"H1961\"* it|strong=\"H1961\"* goes|strong=\"H3318\"* out|strong=\"H3318\"* in|strong=\"H3068\"* the|strong=\"H3068\"* Jubilee|strong=\"H3104\"*, shall|strong=\"H3548\"* be|strong=\"H1961\"* holy|strong=\"H6944\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*, as|strong=\"H1961\"* a|strong=\"H3068\"* devoted|strong=\"H2764\"* field|strong=\"H7704\"*. It|strong=\"H1961\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* owned by|strong=\"H3068\"* the|strong=\"H3068\"* priests|strong=\"H3548\"*." + }, + { + "verseNum": 22, + "text": "“‘If he|strong=\"H3068\"* dedicates a|strong=\"H3068\"* field|strong=\"H7704\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* bought|strong=\"H4736\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* not|strong=\"H3808\"* of|strong=\"H3068\"* the|strong=\"H3068\"* field|strong=\"H7704\"* of|strong=\"H3068\"* his|strong=\"H3068\"* possession|strong=\"H4736\"*," + }, + { + "verseNum": 23, + "text": "then|strong=\"H5414\"* the|strong=\"H5414\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* reckon|strong=\"H2803\"* to|strong=\"H5704\"* him|strong=\"H5414\"* the|strong=\"H5414\"* worth|strong=\"H4373\"* of|strong=\"H3068\"* your|strong=\"H3068\"* valuation|strong=\"H6187\"* up|strong=\"H5414\"* to|strong=\"H5704\"* the|strong=\"H5414\"* Year|strong=\"H8141\"* of|strong=\"H3068\"* Jubilee|strong=\"H3104\"*; and|strong=\"H3068\"* he|strong=\"H1931\"* shall|strong=\"H3548\"* give|strong=\"H5414\"* your|strong=\"H3068\"* valuation|strong=\"H6187\"* on|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, as|strong=\"H5704\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* thing|strong=\"H6944\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 24, + "text": "In|strong=\"H8141\"* the|strong=\"H7725\"* Year|strong=\"H8141\"* of|strong=\"H8141\"* Jubilee|strong=\"H3104\"* the|strong=\"H7725\"* field|strong=\"H7704\"* shall|strong=\"H7704\"* return|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H7725\"* from|strong=\"H7725\"* whom it|strong=\"H7725\"* was|strong=\"H8141\"* bought|strong=\"H7069\"*, even to|strong=\"H7725\"* him|strong=\"H7725\"* to|strong=\"H7725\"* whom the|strong=\"H7725\"* possession of|strong=\"H8141\"* the|strong=\"H7725\"* land|strong=\"H7704\"* belongs." + }, + { + "verseNum": 25, + "text": "All|strong=\"H3605\"* your|strong=\"H3605\"* valuations shall be|strong=\"H1961\"* according to|strong=\"H1961\"* the|strong=\"H3605\"* shekel|strong=\"H8255\"* of|strong=\"H8255\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*: twenty|strong=\"H6242\"* gerahs|strong=\"H1626\"*+ 27:25 A gerah is about 0.5 grams or about 7.7 grains.* to|strong=\"H1961\"* the|strong=\"H3605\"* shekel|strong=\"H8255\"*.+ 27:25 A shekel is about 10 grams or about 0.35 ounces.*" + }, + { + "verseNum": 26, + "text": "“‘However the|strong=\"H3068\"* firstborn|strong=\"H1060\"* among|strong=\"H3808\"* animals, which|strong=\"H1931\"* belongs to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* as|strong=\"H3068\"* a|strong=\"H3068\"* firstborn|strong=\"H1060\"*, no|strong=\"H3808\"* man may|strong=\"H3068\"* dedicate|strong=\"H6942\"*, whether an|strong=\"H3068\"* ox|strong=\"H7794\"* or|strong=\"H3808\"* a|strong=\"H3068\"* sheep|strong=\"H7716\"*. It|strong=\"H1931\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s." + }, + { + "verseNum": 27, + "text": "If it|strong=\"H5921\"* is|strong=\"H1350\"* an|strong=\"H5921\"* unclean|strong=\"H2931\"* animal, then|strong=\"H3254\"* he|strong=\"H3808\"* shall|strong=\"H3808\"* buy|strong=\"H1350\"* it|strong=\"H5921\"* back|strong=\"H1350\"* according|strong=\"H5921\"* to|strong=\"H5921\"* your|strong=\"H5921\"* valuation|strong=\"H6187\"*, and|strong=\"H3254\"* shall|strong=\"H3808\"* add|strong=\"H3254\"* to|strong=\"H5921\"* it|strong=\"H5921\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* part|strong=\"H2549\"* of|strong=\"H5921\"* it|strong=\"H5921\"*; or|strong=\"H3808\"* if it|strong=\"H5921\"* isn’t redeemed|strong=\"H1350\"*, then|strong=\"H3254\"* it|strong=\"H5921\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* sold|strong=\"H4376\"* according|strong=\"H5921\"* to|strong=\"H5921\"* your|strong=\"H5921\"* valuation|strong=\"H6187\"*." + }, + { + "verseNum": 28, + "text": "“‘Notwithstanding, no|strong=\"H3808\"* devoted|strong=\"H2764\"* thing|strong=\"H2764\"* that|strong=\"H3605\"* a|strong=\"H3068\"* man|strong=\"H3605\"* devotes to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H1931\"* has|strong=\"H3068\"*, whether of|strong=\"H3068\"* man|strong=\"H3605\"* or|strong=\"H3808\"* animal, or|strong=\"H3808\"* of|strong=\"H3068\"* the|strong=\"H3605\"* field|strong=\"H7704\"* of|strong=\"H3068\"* his|strong=\"H3605\"* possession, shall|strong=\"H3068\"* be|strong=\"H3808\"* sold|strong=\"H4376\"* or|strong=\"H3808\"* redeemed|strong=\"H1350\"*. Everything|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3068\"* permanently devoted|strong=\"H2764\"* is|strong=\"H3068\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 29, + "text": "“‘No|strong=\"H3808\"* one|strong=\"H3605\"* devoted|strong=\"H2764\"* to|strong=\"H4191\"* destruction|strong=\"H2764\"*, who|strong=\"H3605\"* shall|strong=\"H3808\"* be|strong=\"H4191\"* devoted|strong=\"H2764\"* from|strong=\"H4480\"* among|strong=\"H4480\"* men|strong=\"H3605\"*, shall|strong=\"H3808\"* be|strong=\"H4191\"* ransomed|strong=\"H6299\"*. He|strong=\"H3605\"* shall|strong=\"H3808\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 30, + "text": "“‘All|strong=\"H3605\"* the|strong=\"H3605\"* tithe|strong=\"H4643\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land, whether of|strong=\"H3068\"* the|strong=\"H3605\"* seed|strong=\"H2233\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land or|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* the|strong=\"H3605\"* trees|strong=\"H6086\"*, is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s. It|strong=\"H1931\"* is|strong=\"H3068\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 31, + "text": "If a|strong=\"H3068\"* man redeems|strong=\"H1350\"* anything of|strong=\"H5921\"* his|strong=\"H5921\"* tithe|strong=\"H4643\"*, he|strong=\"H5921\"* shall|strong=\"H1350\"* add|strong=\"H3254\"* a|strong=\"H3068\"* fifth|strong=\"H2549\"* part|strong=\"H2549\"* to|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 32, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* tithe|strong=\"H4643\"* of|strong=\"H3068\"* the|strong=\"H3605\"* herds|strong=\"H1241\"* or|strong=\"H1241\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"*, whatever|strong=\"H3605\"* passes|strong=\"H5674\"* under|strong=\"H8478\"* the|strong=\"H3605\"* rod|strong=\"H7626\"*, the|strong=\"H3605\"* tenth|strong=\"H6224\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H1931\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* examine|strong=\"H1239\"* whether it|strong=\"H1931\"* is|strong=\"H1931\"* good|strong=\"H2896\"* or|strong=\"H3808\"* bad|strong=\"H7451\"*, neither|strong=\"H3808\"* shall|strong=\"H3808\"* he|strong=\"H1931\"* exchange|strong=\"H4171\"* it|strong=\"H1931\"*. If|strong=\"H1961\"* he|strong=\"H1931\"* exchanges|strong=\"H4171\"* it|strong=\"H1931\"* at|strong=\"H1961\"* all|strong=\"H1350\"*, then|strong=\"H1961\"* both it|strong=\"H1931\"* and|strong=\"H2896\"* that|strong=\"H1931\"* for|strong=\"H7451\"* which|strong=\"H1931\"* it|strong=\"H1931\"* is|strong=\"H1931\"* exchanged|strong=\"H8545\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* holy|strong=\"H6944\"*. It|strong=\"H1931\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H1961\"* redeemed|strong=\"H1350\"*.’”" + }, + { + "verseNum": 34, + "text": "These are|strong=\"H1121\"* the|strong=\"H3068\"* commandments|strong=\"H4687\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"* for|strong=\"H3068\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* on|strong=\"H3068\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*." + } + ] + } + ] + }, + { + "name": "Numbers", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* in|strong=\"H8141\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"* of|strong=\"H3068\"* Sinai|strong=\"H5514\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, on|strong=\"H3068\"* the|strong=\"H3068\"* first day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* second|strong=\"H8145\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* second|strong=\"H8145\"* year|strong=\"H8141\"* after|strong=\"H3318\"* they|strong=\"H3068\"* had|strong=\"H3068\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Take|strong=\"H5375\"* a|strong=\"H3068\"* census|strong=\"H7218\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, by|strong=\"H3478\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H3478\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3478\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, every|strong=\"H3605\"* male|strong=\"H2145\"*, one|strong=\"H3605\"* by|strong=\"H3478\"* one|strong=\"H3605\"*," + }, + { + "verseNum": 3, + "text": "from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"* in|strong=\"H8141\"* Israel|strong=\"H3478\"*. You|strong=\"H3605\"* and|strong=\"H1121\"* Aaron shall|strong=\"H1121\"* count|strong=\"H8141\"* them|strong=\"H3318\"* by|strong=\"H8141\"* their|strong=\"H3605\"* divisions." + }, + { + "verseNum": 4, + "text": "With|strong=\"H1004\"* you|strong=\"H1004\"* there|strong=\"H1961\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* a|strong=\"H3068\"* man|strong=\"H7218\"* of|strong=\"H1004\"* every|strong=\"H7218\"* tribe|strong=\"H4294\"*, each one|strong=\"H1931\"* head|strong=\"H7218\"* of|strong=\"H1004\"* his|strong=\"H1961\"* fathers’ house|strong=\"H1004\"*." + }, + { + "verseNum": 5, + "text": "These are|strong=\"H1121\"* the|strong=\"H5975\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H5975\"* men|strong=\"H1121\"* who|strong=\"H1121\"* shall|strong=\"H1121\"* stand|strong=\"H5975\"* with|strong=\"H5975\"* you:" + }, + { + "verseNum": 6, + "text": "Of|strong=\"H1121\"* Simeon|strong=\"H8095\"*: Shelumiel|strong=\"H8017\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zurishaddai|strong=\"H6701\"*." + }, + { + "verseNum": 7, + "text": "Of|strong=\"H1121\"* Judah|strong=\"H3063\"*: Nahshon|strong=\"H5177\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amminadab|strong=\"H5992\"*." + }, + { + "verseNum": 8, + "text": "Of|strong=\"H1121\"* Issachar|strong=\"H3485\"*: Nethanel|strong=\"H5417\"* the|strong=\"H5417\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zuar|strong=\"H6686\"*." + }, + { + "verseNum": 9, + "text": "Of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*: Eliab the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Helon|strong=\"H2497\"*." + }, + { + "verseNum": 10, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*: of|strong=\"H1121\"* Ephraim: Elishama the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammihud|strong=\"H5989\"*; of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*: Gamaliel|strong=\"H1583\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pedahzur|strong=\"H6301\"*." + }, + { + "verseNum": 11, + "text": "Of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*: Abidan the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gideoni|strong=\"H1441\"*." + }, + { + "verseNum": 12, + "text": "Of|strong=\"H1121\"* Dan|strong=\"H1835\"*: Ahiezer the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammishaddai|strong=\"H5996\"*." + }, + { + "verseNum": 13, + "text": "Of|strong=\"H1121\"* Asher: Pagiel|strong=\"H6295\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ochran|strong=\"H5918\"*." + }, + { + "verseNum": 14, + "text": "Of|strong=\"H1121\"* Gad|strong=\"H1410\"*: Eliasaph the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Deuel|strong=\"H1845\"*." + }, + { + "verseNum": 15, + "text": "Of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*: Ahira the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Enan|strong=\"H5881\"*.”" + }, + { + "verseNum": 16, + "text": "These|strong=\"H1992\"* are|strong=\"H1992\"* those|strong=\"H1992\"* who|strong=\"H3478\"* were|strong=\"H3478\"* called|strong=\"H7148\"* of|strong=\"H4294\"* the|strong=\"H3478\"* congregation|strong=\"H5712\"*, the|strong=\"H3478\"* princes|strong=\"H5387\"*+ 1:16 or, chiefs, or, leaders* of|strong=\"H4294\"* the|strong=\"H3478\"* tribes|strong=\"H4294\"* of|strong=\"H4294\"* their|strong=\"H1992\"* fathers; they|strong=\"H1992\"* were|strong=\"H3478\"* the|strong=\"H3478\"* heads|strong=\"H7218\"* of|strong=\"H4294\"* the|strong=\"H3478\"* thousands of|strong=\"H4294\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 17, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron took|strong=\"H3947\"* these|strong=\"H3947\"* men|strong=\"H8034\"* who are|strong=\"H8034\"* mentioned by|strong=\"H5344\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"H5921\"* assembled|strong=\"H6950\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* together|strong=\"H6950\"* on|strong=\"H5921\"* the|strong=\"H3605\"* first|strong=\"H1121\"* day|strong=\"H2320\"* of|strong=\"H1121\"* the|strong=\"H3605\"* second|strong=\"H8145\"* month|strong=\"H2320\"*; and|strong=\"H1121\"* they|strong=\"H5921\"* declared their|strong=\"H3605\"* ancestry|strong=\"H3205\"* by|strong=\"H5921\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H5921\"* their|strong=\"H3605\"* fathers|strong=\"H3205\"*’ houses|strong=\"H1004\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H5921\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, one|strong=\"H3605\"* by|strong=\"H5921\"* one|strong=\"H3605\"*." + }, + { + "verseNum": 19, + "text": "As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*, so|strong=\"H6485\"* he|strong=\"H3068\"* counted|strong=\"H6485\"* them|strong=\"H6680\"* in|strong=\"H3068\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"* of|strong=\"H3068\"* Sinai|strong=\"H5514\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, Israel|strong=\"H3478\"*’s firstborn|strong=\"H1060\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, one|strong=\"H3605\"* by|strong=\"H8141\"* one|strong=\"H3605\"*, every|strong=\"H3605\"* male|strong=\"H2145\"* from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3478\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 21, + "text": "those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H6485\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Reuben|strong=\"H7205\"*, were|strong=\"H6485\"* forty-six thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 22, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* it|strong=\"H8034\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, one|strong=\"H3605\"* by|strong=\"H8141\"* one|strong=\"H3605\"*, every|strong=\"H3605\"* male|strong=\"H2145\"* from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 23, + "text": "those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H6485\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Simeon|strong=\"H8095\"*, were|strong=\"H6485\"* fifty-nine thousand three|strong=\"H7969\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 24, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 25, + "text": "those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H6485\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Gad|strong=\"H1410\"*, were|strong=\"H6485\"* forty-five thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*." + }, + { + "verseNum": 26, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 27, + "text": "those who|strong=\"H3063\"* were|strong=\"H3063\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H6485\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Judah|strong=\"H3063\"*, were|strong=\"H3063\"* seventy-four thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 28, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 29, + "text": "those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H6485\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Issachar|strong=\"H3485\"*, were|strong=\"H6485\"* fifty-four thousand four hundred|strong=\"H3967\"*." + }, + { + "verseNum": 30, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 31, + "text": "those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H6485\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Zebulun|strong=\"H2074\"*, were|strong=\"H6485\"* fifty-seven thousand four hundred|strong=\"H3967\"*." + }, + { + "verseNum": 32, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*: of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim|strong=\"H8034\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 33, + "text": "those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H6485\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Ephraim, were|strong=\"H6485\"* forty thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 34, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 35, + "text": "those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H8147\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Manasseh|strong=\"H4519\"*, were|strong=\"H6485\"* thirty-two|strong=\"H7970\"* thousand two|strong=\"H8147\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 36, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 37, + "text": "those who|strong=\"H1144\"* were|strong=\"H1144\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H6485\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Benjamin|strong=\"H1144\"*, were|strong=\"H1144\"* thirty-five|strong=\"H7970\"* thousand four hundred|strong=\"H3967\"*." + }, + { + "verseNum": 38, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 39, + "text": "those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H8147\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Dan|strong=\"H1835\"*, were|strong=\"H6485\"* sixty-two|strong=\"H8346\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 40, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asher, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 41, + "text": "those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H6485\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Asher, were|strong=\"H6485\"* forty-one thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 42, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 43, + "text": "those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H6485\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Naphtali|strong=\"H5321\"*, were|strong=\"H6485\"* fifty-three thousand four|strong=\"H7969\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 44, + "text": "These|strong=\"H8147\"* are|strong=\"H3478\"* those|strong=\"H1961\"* who|strong=\"H3478\"* were|strong=\"H3478\"* counted|strong=\"H6485\"*, whom Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron counted|strong=\"H6485\"*, and|strong=\"H4872\"* the|strong=\"H6485\"* twelve|strong=\"H8147\"* men|strong=\"H6485\"* who|strong=\"H3478\"* were|strong=\"H3478\"* princes|strong=\"H5387\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, each|strong=\"H8147\"* one|strong=\"H1961\"* for|strong=\"H1004\"* his|strong=\"H3478\"* fathers’ house|strong=\"H1004\"*." + }, + { + "verseNum": 45, + "text": "So|strong=\"H1961\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3478\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3478\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"* in|strong=\"H8141\"* Israel|strong=\"H3478\"*—" + }, + { + "verseNum": 46, + "text": "all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1961\"* counted|strong=\"H6485\"* were|strong=\"H1961\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* three|strong=\"H7969\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*." + }, + { + "verseNum": 47, + "text": "But|strong=\"H3808\"* the|strong=\"H8432\"* Levites|strong=\"H3881\"* after the|strong=\"H8432\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* their|strong=\"H8432\"* fathers were|strong=\"H3881\"* not|strong=\"H3808\"* counted|strong=\"H6485\"* among|strong=\"H8432\"* them|strong=\"H8432\"*." + }, + { + "verseNum": 48, + "text": "For|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 49, + "text": "“Only the|strong=\"H5375\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Levi|strong=\"H3881\"* you|strong=\"H3808\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* count|strong=\"H5375\"*, neither|strong=\"H3808\"* shall|strong=\"H1121\"* you|strong=\"H3808\"* take|strong=\"H5375\"* a|strong=\"H3068\"* census|strong=\"H7218\"* of|strong=\"H1121\"* them|strong=\"H5375\"* among|strong=\"H8432\"* the|strong=\"H5375\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*;" + }, + { + "verseNum": 50, + "text": "but|strong=\"H1992\"* appoint|strong=\"H6485\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* over|strong=\"H5921\"* the|strong=\"H3605\"* Tabernacle|strong=\"H4908\"* of|strong=\"H3627\"* the|strong=\"H3605\"* Testimony|strong=\"H5715\"*, and|strong=\"H3881\"* over|strong=\"H5921\"* all|strong=\"H3605\"* its|strong=\"H3605\"* furnishings|strong=\"H3627\"*, and|strong=\"H3881\"* over|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3605\"* belongs to|strong=\"H5921\"* it|strong=\"H5921\"*. They|strong=\"H1992\"* shall|strong=\"H3881\"* carry|strong=\"H5375\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* and|strong=\"H3881\"* all|strong=\"H3605\"* its|strong=\"H3605\"* furnishings|strong=\"H3627\"*; and|strong=\"H3881\"* they|strong=\"H1992\"* shall|strong=\"H3881\"* take|strong=\"H5375\"* care|strong=\"H6485\"* of|strong=\"H3627\"* it|strong=\"H5921\"*, and|strong=\"H3881\"* shall|strong=\"H3881\"* encamp|strong=\"H2583\"* around|strong=\"H5439\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 51, + "text": "When|strong=\"H5265\"* the|strong=\"H7126\"* tabernacle|strong=\"H4908\"* is|strong=\"H4191\"* to|strong=\"H3381\"* move|strong=\"H5265\"*, the|strong=\"H7126\"* Levites|strong=\"H3881\"* shall|strong=\"H3881\"* take|strong=\"H3381\"* it|strong=\"H7126\"* down|strong=\"H3381\"*; and|strong=\"H6965\"* when|strong=\"H5265\"* the|strong=\"H7126\"* tabernacle|strong=\"H4908\"* is|strong=\"H4191\"* to|strong=\"H3381\"* be|strong=\"H4191\"* set|strong=\"H5265\"* up|strong=\"H6965\"*, the|strong=\"H7126\"* Levites|strong=\"H3881\"* shall|strong=\"H3881\"* set|strong=\"H5265\"* it|strong=\"H7126\"* up|strong=\"H6965\"*. The|strong=\"H7126\"* stranger|strong=\"H2114\"* who|strong=\"H3881\"* comes|strong=\"H3381\"* near|strong=\"H7126\"* shall|strong=\"H3881\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H3381\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 52, + "text": "The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H1121\"* pitch|strong=\"H2583\"* their|strong=\"H5921\"* tents|strong=\"H4264\"*, every|strong=\"H4264\"* man|strong=\"H1121\"* by|strong=\"H5921\"* his|strong=\"H5921\"* own camp|strong=\"H4264\"*, and|strong=\"H1121\"* every|strong=\"H4264\"* man|strong=\"H1121\"* by|strong=\"H5921\"* his|strong=\"H5921\"* own standard|strong=\"H1714\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* their|strong=\"H5921\"* divisions." + }, + { + "verseNum": 53, + "text": "But|strong=\"H3808\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* shall|strong=\"H1121\"* encamp|strong=\"H2583\"* around|strong=\"H5439\"* the|strong=\"H5921\"* Tabernacle|strong=\"H4908\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Testimony|strong=\"H5715\"*, that|strong=\"H3478\"* there|strong=\"H1961\"* may|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3808\"* wrath|strong=\"H7110\"* on|strong=\"H5921\"* the|strong=\"H5921\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. The|strong=\"H5921\"* Levites|strong=\"H3881\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* responsible for|strong=\"H5921\"* the|strong=\"H5921\"* Tabernacle|strong=\"H4908\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Testimony|strong=\"H5715\"*.”" + }, + { + "verseNum": 54, + "text": "Thus|strong=\"H3651\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"*. According to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*, so|strong=\"H3651\"* they|strong=\"H3651\"* did|strong=\"H6213\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H1696\"* Aaron, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H1121\"* encamp|strong=\"H2583\"* every|strong=\"H5439\"* man|strong=\"H1121\"* by|strong=\"H5921\"* his|strong=\"H5921\"* own standard|strong=\"H1714\"*, with|strong=\"H1004\"* the|strong=\"H5921\"* banners of|strong=\"H1121\"* their|strong=\"H5921\"* fathers’ houses|strong=\"H1004\"*. They|strong=\"H5921\"* shall|strong=\"H1121\"* encamp|strong=\"H2583\"* around|strong=\"H5439\"* the|strong=\"H5921\"* Tent|strong=\"H2583\"* of|strong=\"H1121\"* Meeting|strong=\"H4150\"* at|strong=\"H2583\"* a|strong=\"H3068\"* distance from|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "“Those|strong=\"H2583\"* who|strong=\"H1121\"* encamp|strong=\"H2583\"* on|strong=\"H2583\"* the|strong=\"H1121\"* east|strong=\"H4217\"* side|strong=\"H4217\"* toward the|strong=\"H1121\"* sunrise|strong=\"H4217\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* standard|strong=\"H1714\"* of|strong=\"H1121\"* the|strong=\"H1121\"* camp|strong=\"H4264\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, according to|strong=\"H1121\"* their|strong=\"H6635\"* divisions. The|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Nahshon|strong=\"H5177\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amminadab|strong=\"H5992\"*." + }, + { + "verseNum": 4, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* them|strong=\"H6485\"*, were|strong=\"H6485\"* seventy-four thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 5, + "text": "“Those|strong=\"H5921\"* who|strong=\"H1121\"* encamp|strong=\"H2583\"* next|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"*. The|strong=\"H5921\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Nethanel|strong=\"H5417\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zuar|strong=\"H6686\"*." + }, + { + "verseNum": 6, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* it, were|strong=\"H6485\"* fifty-four thousand four hundred|strong=\"H3967\"*." + }, + { + "verseNum": 7, + "text": "“The|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*: the|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Eliab the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Helon|strong=\"H2497\"*." + }, + { + "verseNum": 8, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* it, were|strong=\"H6485\"* fifty-seven thousand four hundred|strong=\"H3967\"*." + }, + { + "verseNum": 9, + "text": "“All|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3063\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H6635\"* Judah|strong=\"H3063\"* were|strong=\"H3063\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* eighty-six|strong=\"H8084\"* thousand four hundred|strong=\"H3967\"*, according to|strong=\"H3063\"* their|strong=\"H3605\"* divisions. They|strong=\"H3605\"* shall|strong=\"H3063\"* set|strong=\"H5265\"* out|strong=\"H5265\"* first|strong=\"H7223\"*." + }, + { + "verseNum": 10, + "text": "“On|strong=\"H6635\"* the|strong=\"H1121\"* south|strong=\"H8486\"* side|strong=\"H8486\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* the|strong=\"H1121\"* standard|strong=\"H1714\"* of|strong=\"H1121\"* the|strong=\"H1121\"* camp|strong=\"H4264\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* according to|strong=\"H1121\"* their|strong=\"H6635\"* divisions. The|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Elizur the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shedeur|strong=\"H7707\"*." + }, + { + "verseNum": 11, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* it, were|strong=\"H6485\"* forty-six thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 12, + "text": "“Those|strong=\"H5921\"* who|strong=\"H1121\"* encamp|strong=\"H2583\"* next|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*. The|strong=\"H5921\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Shelumiel|strong=\"H8017\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zurishaddai|strong=\"H6701\"*." + }, + { + "verseNum": 13, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* them|strong=\"H6485\"*, were|strong=\"H6485\"* fifty-nine thousand three|strong=\"H7969\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 14, + "text": "“The|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*: the|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Eliasaph the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Reuel|strong=\"H7467\"*." + }, + { + "verseNum": 15, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* them|strong=\"H6485\"*, were|strong=\"H6485\"* forty-five thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*." + }, + { + "verseNum": 16, + "text": "“All|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H6635\"* Reuben|strong=\"H7205\"* were|strong=\"H6485\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* fifty-one thousand four hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*, according to|strong=\"H4264\"* their|strong=\"H3605\"* armies|strong=\"H6635\"*. They|strong=\"H3605\"* shall|strong=\"H6635\"* set|strong=\"H5265\"* out|strong=\"H5265\"* second|strong=\"H8145\"*." + }, + { + "verseNum": 17, + "text": "“Then|strong=\"H3651\"* the|strong=\"H5921\"* Tent|strong=\"H2583\"* of|strong=\"H3027\"* Meeting|strong=\"H4150\"* shall|strong=\"H3881\"* set|strong=\"H5265\"* out|strong=\"H5265\"*, with|strong=\"H5921\"* the|strong=\"H5921\"* camp|strong=\"H4264\"* of|strong=\"H3027\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H3027\"* the|strong=\"H5921\"* camps|strong=\"H4264\"*. As|strong=\"H3651\"* they|strong=\"H3651\"* encamp|strong=\"H2583\"*, so|strong=\"H3651\"* shall|strong=\"H3881\"* they|strong=\"H3651\"* set|strong=\"H5265\"* out|strong=\"H5265\"*, every|strong=\"H4264\"* man in|strong=\"H5921\"* his|strong=\"H5921\"* place|strong=\"H3027\"*, by|strong=\"H3027\"* their|strong=\"H5921\"* standards|strong=\"H1714\"*." + }, + { + "verseNum": 18, + "text": "“On|strong=\"H3220\"* the|strong=\"H1121\"* west|strong=\"H3220\"* side|strong=\"H3220\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* the|strong=\"H1121\"* standard|strong=\"H1714\"* of|strong=\"H1121\"* the|strong=\"H1121\"* camp|strong=\"H4264\"* of|strong=\"H1121\"* Ephraim according to|strong=\"H1121\"* their|strong=\"H6635\"* divisions. The|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim shall|strong=\"H1121\"* be|strong=\"H1121\"* Elishama the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammihud|strong=\"H5989\"*." + }, + { + "verseNum": 19, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* them|strong=\"H6485\"*, were|strong=\"H6485\"* forty thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 20, + "text": "“Next|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*. The|strong=\"H5921\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Gamaliel|strong=\"H1583\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pedahzur|strong=\"H6301\"*." + }, + { + "verseNum": 21, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* them|strong=\"H8147\"*, were|strong=\"H6485\"* thirty-two|strong=\"H7970\"* thousand two|strong=\"H8147\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 22, + "text": "“The|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*: the|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Abidan the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gideoni|strong=\"H1441\"*." + }, + { + "verseNum": 23, + "text": "His|strong=\"H6485\"* army|strong=\"H6635\"*, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* them|strong=\"H6485\"*, were|strong=\"H6485\"* thirty-five|strong=\"H7970\"* thousand four hundred|strong=\"H3967\"*." + }, + { + "verseNum": 24, + "text": "“All|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H6635\"* Ephraim were|strong=\"H6485\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* eight|strong=\"H8083\"* thousand one|strong=\"H3605\"* hundred|strong=\"H3967\"*, according to|strong=\"H4264\"* their|strong=\"H3605\"* divisions. They|strong=\"H3605\"* shall|strong=\"H6635\"* set|strong=\"H5265\"* out|strong=\"H5265\"* third|strong=\"H7992\"*." + }, + { + "verseNum": 25, + "text": "“On|strong=\"H6635\"* the|strong=\"H1121\"* north|strong=\"H6828\"* side|strong=\"H6828\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* the|strong=\"H1121\"* standard|strong=\"H1714\"* of|strong=\"H1121\"* the|strong=\"H1121\"* camp|strong=\"H4264\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* according to|strong=\"H1121\"* their|strong=\"H1835\"* divisions. The|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Ahiezer the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammishaddai|strong=\"H5996\"*." + }, + { + "verseNum": 26, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* them|strong=\"H8147\"*, were|strong=\"H6485\"* sixty-two|strong=\"H8346\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 27, + "text": "“Those|strong=\"H5921\"* who|strong=\"H1121\"* encamp|strong=\"H2583\"* next|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Asher. The|strong=\"H5921\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asher shall|strong=\"H1121\"* be|strong=\"H1121\"* Pagiel|strong=\"H6295\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ochran|strong=\"H5918\"*." + }, + { + "verseNum": 28, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* them|strong=\"H6485\"*, were|strong=\"H6485\"* forty-one thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 29, + "text": "“The|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*: the|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Ahira the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Enan|strong=\"H5881\"*." + }, + { + "verseNum": 30, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* them|strong=\"H6485\"*, were|strong=\"H6485\"* fifty-three thousand four|strong=\"H7969\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 31, + "text": "“All|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4264\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H4264\"* Dan|strong=\"H1835\"* were|strong=\"H6485\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* fifty-seven thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"*. They|strong=\"H3605\"* shall|strong=\"H1835\"* set|strong=\"H5265\"* out|strong=\"H5265\"* last by|strong=\"H6485\"* their|strong=\"H3605\"* standards|strong=\"H1714\"*.”" + }, + { + "verseNum": 32, + "text": "These|strong=\"H3605\"* are|strong=\"H1121\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3478\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* by|strong=\"H3478\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*. All|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3478\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* the|strong=\"H3605\"* camps|strong=\"H4264\"* according to|strong=\"H3478\"* their|strong=\"H3605\"* armies|strong=\"H6635\"* were|strong=\"H3478\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* three|strong=\"H7969\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*." + }, + { + "verseNum": 33, + "text": "But|strong=\"H3808\"* the|strong=\"H8432\"* Levites|strong=\"H3881\"* were|strong=\"H3478\"* not|strong=\"H3808\"* counted|strong=\"H6485\"* among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 34, + "text": "Thus|strong=\"H3651\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"*. According|strong=\"H5921\"* to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*, so|strong=\"H3651\"* they|strong=\"H3651\"* encamped|strong=\"H2583\"* by|strong=\"H5921\"* their|strong=\"H3605\"* standards|strong=\"H1714\"*, and|strong=\"H1121\"* so|strong=\"H3651\"* they|strong=\"H3651\"* set|strong=\"H5265\"* out|strong=\"H5265\"*, everyone|strong=\"H3605\"* by|strong=\"H5921\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3117\"* this|strong=\"H1696\"* is|strong=\"H3068\"* the|strong=\"H3068\"* history|strong=\"H8435\"* of|strong=\"H3068\"* the|strong=\"H3068\"* generations|strong=\"H8435\"* of|strong=\"H3068\"* Aaron and|strong=\"H4872\"* Moses|strong=\"H4872\"* in|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* with|strong=\"H3068\"* Moses|strong=\"H4872\"* in|strong=\"H3068\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*." + }, + { + "verseNum": 2, + "text": "These are|strong=\"H1121\"* the|strong=\"H8034\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H8034\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron: Nadab|strong=\"H5070\"* the|strong=\"H8034\"* firstborn|strong=\"H1060\"*, and|strong=\"H1121\"* Abihu, Eleazar, and|strong=\"H1121\"* Ithamar." + }, + { + "verseNum": 3, + "text": "These are|strong=\"H1121\"* the|strong=\"H4390\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H4390\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, the|strong=\"H4390\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* were|strong=\"H1121\"* anointed|strong=\"H4886\"*, whom he|strong=\"H3027\"* consecrated|strong=\"H4390\"* to|strong=\"H3027\"* minister|strong=\"H3547\"* in|strong=\"H1121\"* the|strong=\"H4390\"* priest|strong=\"H3548\"*’s office." + }, + { + "verseNum": 4, + "text": "Nadab|strong=\"H5070\"* and|strong=\"H1121\"* Abihu died|strong=\"H4191\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* when|strong=\"H1961\"* they|strong=\"H3068\"* offered|strong=\"H7126\"* strange|strong=\"H2114\"* fire before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Sinai|strong=\"H5514\"*, and|strong=\"H1121\"* they|strong=\"H3068\"* had|strong=\"H3068\"* no|strong=\"H3808\"* children|strong=\"H1121\"*. Eleazar and|strong=\"H1121\"* Ithamar ministered|strong=\"H3547\"* in|strong=\"H5921\"* the|strong=\"H6440\"* priest|strong=\"H3547\"*’s office in|strong=\"H5921\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H1121\"* Aaron their|strong=\"H3068\"* father|strong=\"H1121\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 6, + "text": "“Bring|strong=\"H7126\"* the|strong=\"H6440\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Levi|strong=\"H3881\"* near|strong=\"H7126\"*, and|strong=\"H3548\"* set|strong=\"H5975\"* them|strong=\"H6440\"* before|strong=\"H6440\"* Aaron the|strong=\"H6440\"* priest|strong=\"H3548\"*, that|strong=\"H3548\"* they|strong=\"H6440\"* may|strong=\"H3548\"* minister|strong=\"H8334\"* to|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3605\"* shall|strong=\"H5712\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* requirements, and|strong=\"H6440\"* the|strong=\"H3605\"* requirements of|strong=\"H6440\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* before|strong=\"H6440\"* the|strong=\"H3605\"* Tent of|strong=\"H6440\"* Meeting|strong=\"H4150\"*, to|strong=\"H8104\"* do|strong=\"H5647\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H6440\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H3478\"* shall|strong=\"H1121\"* keep|strong=\"H8104\"* all|strong=\"H3605\"* the|strong=\"H3605\"* furnishings|strong=\"H3627\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* obligations|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* do|strong=\"H5647\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H5414\"* shall|strong=\"H1121\"* give|strong=\"H5414\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"* to|strong=\"H3478\"* Aaron and|strong=\"H1121\"* to|strong=\"H3478\"* his|strong=\"H5414\"* sons|strong=\"H1121\"*. They|strong=\"H1992\"* are|strong=\"H1992\"* wholly|strong=\"H5414\"* given|strong=\"H5414\"* to|strong=\"H3478\"* him|strong=\"H5414\"* on|strong=\"H5414\"* the|strong=\"H5414\"* behalf of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H6485\"* shall|strong=\"H1121\"* appoint|strong=\"H6485\"* Aaron and|strong=\"H1121\"* his|strong=\"H8104\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* they shall|strong=\"H1121\"* keep|strong=\"H8104\"* their|strong=\"H7126\"* priesthood|strong=\"H3550\"*, but|strong=\"H4191\"* the|strong=\"H8104\"* stranger|strong=\"H2114\"* who|strong=\"H1121\"* comes|strong=\"H7126\"* near|strong=\"H7126\"* shall|strong=\"H1121\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*.”" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 12, + "text": "“Behold|strong=\"H2009\"*,+ 3:12 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"H2009\"* have|strong=\"H1961\"* taken|strong=\"H3947\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* from|strong=\"H3478\"* among|strong=\"H8432\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* who|strong=\"H3605\"* open|strong=\"H6363\"* the|strong=\"H3605\"* womb|strong=\"H7358\"* among|strong=\"H8432\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* mine|strong=\"H3478\"*," + }, + { + "verseNum": 13, + "text": "for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* are|strong=\"H3117\"* mine|strong=\"H3478\"*. On|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3588\"* I|strong=\"H3588\"* struck|strong=\"H5221\"* down|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* in|strong=\"H3478\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"* I|strong=\"H3588\"* made|strong=\"H1961\"* holy|strong=\"H6942\"* to|strong=\"H5704\"* me|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, both|strong=\"H3605\"* man|strong=\"H3605\"* and|strong=\"H3478\"* animal|strong=\"H1961\"*. They|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* mine|strong=\"H3478\"*. I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* in|strong=\"H3068\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"* of|strong=\"H3068\"* Sinai|strong=\"H5514\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 15, + "text": "“Count the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3881\"* by|strong=\"H6485\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, by|strong=\"H6485\"* their|strong=\"H3605\"* families|strong=\"H4940\"*. You|strong=\"H3605\"* shall|strong=\"H1121\"* count every|strong=\"H3605\"* male|strong=\"H2145\"* from|strong=\"H1121\"* a|strong=\"H3068\"* month|strong=\"H2320\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*.”" + }, + { + "verseNum": 16, + "text": "Moses|strong=\"H4872\"* counted|strong=\"H6485\"* them|strong=\"H5921\"* according|strong=\"H5921\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H6310\"*, as|strong=\"H3068\"* he|strong=\"H3068\"* was|strong=\"H3068\"* commanded|strong=\"H6680\"*." + }, + { + "verseNum": 17, + "text": "These|strong=\"H3881\"* were|strong=\"H1961\"* the|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3881\"* by|strong=\"H8034\"* their|strong=\"H1961\"* names|strong=\"H8034\"*: Gershon|strong=\"H1648\"*, Kohath|strong=\"H6955\"*, and|strong=\"H1121\"* Merari|strong=\"H4847\"*." + }, + { + "verseNum": 18, + "text": "These are|strong=\"H1121\"* the|strong=\"H8034\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H8034\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershon|strong=\"H1648\"* by|strong=\"H8034\"* their families|strong=\"H4940\"*: Libni|strong=\"H3845\"* and|strong=\"H1121\"* Shimei|strong=\"H8096\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"* by|strong=\"H4940\"* their families|strong=\"H4940\"*: Amram|strong=\"H6019\"*, Izhar|strong=\"H3324\"*, Hebron|strong=\"H2275\"*, and|strong=\"H1121\"* Uzziel|strong=\"H5816\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"* by|strong=\"H4940\"* their|strong=\"H1992\"* families|strong=\"H4940\"*: Mahli|strong=\"H4249\"* and|strong=\"H1121\"* Mushi|strong=\"H4187\"*." + }, + { + "verseNum": 21, + "text": "Of|strong=\"H4940\"* Gershon|strong=\"H1648\"* was|strong=\"H4940\"* the|strong=\"H1992\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H1992\"* Libnites|strong=\"H3846\"*, and|strong=\"H1648\"* the|strong=\"H1992\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H1992\"* Shimeites|strong=\"H8097\"*. These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H1992\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H1992\"* Gershonites|strong=\"H1649\"*." + }, + { + "verseNum": 22, + "text": "Those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* them|strong=\"H6485\"*, according to|strong=\"H1121\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* males|strong=\"H2145\"* from|strong=\"H1121\"* a|strong=\"H3068\"* month|strong=\"H2320\"* old|strong=\"H1121\"* and|strong=\"H3967\"* upward|strong=\"H4605\"*, even|strong=\"H7651\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* them|strong=\"H6485\"* were|strong=\"H1121\"* seven|strong=\"H7651\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H4940\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Gershonites|strong=\"H1649\"* shall|strong=\"H3220\"* encamp|strong=\"H2583\"* behind the|strong=\"H4940\"* tabernacle|strong=\"H4908\"* westward|strong=\"H3220\"*." + }, + { + "verseNum": 24, + "text": "Eliasaph the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Lael|strong=\"H3815\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* the|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1121\"* fathers’ house|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Gershonites|strong=\"H1649\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H1121\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershon|strong=\"H1648\"* in|strong=\"H1121\"* the|strong=\"H1121\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* the|strong=\"H1121\"* tabernacle|strong=\"H4908\"*, the|strong=\"H1121\"* tent, its covering|strong=\"H4372\"*, the|strong=\"H1121\"* screen|strong=\"H4539\"* for|strong=\"H1121\"* the|strong=\"H1121\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*," + }, + { + "verseNum": 26, + "text": "the|strong=\"H3605\"* hangings|strong=\"H7050\"* of|strong=\"H4196\"* the|strong=\"H3605\"* court|strong=\"H2691\"*, the|strong=\"H3605\"* screen|strong=\"H4539\"* for|strong=\"H5921\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H4196\"* the|strong=\"H3605\"* court|strong=\"H2691\"* which|strong=\"H4196\"* is|strong=\"H3605\"* by|strong=\"H5921\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* and|strong=\"H4196\"* around|strong=\"H5439\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, and|strong=\"H4196\"* its|strong=\"H3605\"* cords|strong=\"H4340\"* for|strong=\"H5921\"* all|strong=\"H3605\"* of|strong=\"H4196\"* its|strong=\"H3605\"* service|strong=\"H5656\"*." + }, + { + "verseNum": 27, + "text": "Of|strong=\"H4940\"* Kohath|strong=\"H6955\"* was|strong=\"H4940\"* the|strong=\"H1992\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H1992\"* Amramites|strong=\"H6020\"*, the|strong=\"H1992\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H1992\"* Izharites|strong=\"H3325\"*, the|strong=\"H1992\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H1992\"* Hebronites|strong=\"H2276\"*, and|strong=\"H6955\"* the|strong=\"H1992\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H1992\"* Uzzielites|strong=\"H5817\"*. These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H1992\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H1992\"* Kohathites|strong=\"H6956\"*." + }, + { + "verseNum": 28, + "text": "According to|strong=\"H8104\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* males|strong=\"H2145\"* from|strong=\"H1121\"* a|strong=\"H3068\"* month|strong=\"H2320\"* old|strong=\"H1121\"* and|strong=\"H3967\"* upward|strong=\"H4605\"*, there|strong=\"H3605\"* were|strong=\"H1121\"* eight|strong=\"H8083\"* thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"* keeping|strong=\"H8104\"* the|strong=\"H3605\"* requirements of|strong=\"H1121\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H5921\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"* shall|strong=\"H1121\"* encamp|strong=\"H2583\"* on|strong=\"H5921\"* the|strong=\"H5921\"* south|strong=\"H8486\"* side|strong=\"H3409\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1121\"* fathers’ house|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H1121\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Kohathites|strong=\"H6956\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Elizaphan the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uzziel|strong=\"H5816\"*." + }, + { + "verseNum": 31, + "text": "Their|strong=\"H3605\"* duty|strong=\"H4931\"* shall|strong=\"H3627\"* be|strong=\"H5656\"* the|strong=\"H3605\"* ark, the|strong=\"H3605\"* table|strong=\"H7979\"*, the|strong=\"H3605\"* lamp stand, the|strong=\"H3605\"* altars|strong=\"H4196\"*, the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"* with|strong=\"H3627\"* which|strong=\"H4196\"* they|strong=\"H3605\"* minister|strong=\"H8334\"*, the|strong=\"H3605\"* screen|strong=\"H4539\"*, and|strong=\"H4196\"* all|strong=\"H3605\"* its|strong=\"H3605\"* service|strong=\"H5656\"*." + }, + { + "verseNum": 32, + "text": "Eleazar the|strong=\"H8104\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H8104\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* be|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H8104\"* princes|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H8104\"* Levites|strong=\"H3881\"*, with|strong=\"H3548\"* the|strong=\"H8104\"* oversight|strong=\"H6486\"* of|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H3548\"* keep|strong=\"H8104\"* the|strong=\"H8104\"* requirements of|strong=\"H1121\"* the|strong=\"H8104\"* sanctuary|strong=\"H6944\"*." + }, + { + "verseNum": 33, + "text": "Of|strong=\"H4940\"* Merari|strong=\"H4847\"* was|strong=\"H4940\"* the|strong=\"H1992\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H1992\"* Mahlites|strong=\"H4250\"* and|strong=\"H1992\"* the|strong=\"H1992\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H1992\"* Mushites|strong=\"H4188\"*. These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H1992\"* families|strong=\"H4940\"* of|strong=\"H4940\"* Merari|strong=\"H4847\"*." + }, + { + "verseNum": 34, + "text": "Those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* them|strong=\"H6485\"*, according to|strong=\"H1121\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* males|strong=\"H2145\"* from|strong=\"H1121\"* a|strong=\"H3068\"* month|strong=\"H2320\"* old|strong=\"H1121\"* and|strong=\"H3967\"* upward|strong=\"H4605\"*, were|strong=\"H1121\"* six|strong=\"H8337\"* thousand two|strong=\"H3967\"* hundred|strong=\"H3967\"*.+ 3:34 + 22,000 is the sum rounded to 2 significant digits. The sum of the Gershonites, Kohathites, and Merarites given above is 22,300, but the traditional Hebrew text has the number rounded to 2 significant digits, not 3 significant digits.*" + }, + { + "verseNum": 35, + "text": "The|strong=\"H5921\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H5921\"* fathers’ house|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H5921\"* families|strong=\"H4940\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"* was|strong=\"H1004\"* Zuriel|strong=\"H6700\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abihail. They|strong=\"H5921\"* shall|strong=\"H1121\"* encamp|strong=\"H2583\"* on|strong=\"H5921\"* the|strong=\"H5921\"* north|strong=\"H6828\"* side|strong=\"H3409\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"H3605\"* appointed|strong=\"H1121\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*’s boards|strong=\"H7175\"*, its|strong=\"H3605\"* bars|strong=\"H1280\"*, its|strong=\"H3605\"* pillars|strong=\"H5982\"*, its|strong=\"H3605\"* sockets, all|strong=\"H3605\"* its|strong=\"H3605\"* instruments|strong=\"H3627\"*, all|strong=\"H3605\"* its|strong=\"H3605\"* service|strong=\"H5656\"*," + }, + { + "verseNum": 37, + "text": "the|strong=\"H5439\"* pillars|strong=\"H5982\"* of|strong=\"H5982\"* the|strong=\"H5439\"* court|strong=\"H2691\"* around|strong=\"H5439\"* it|strong=\"H5439\"*, their|strong=\"H5439\"* sockets, their|strong=\"H5439\"* pins|strong=\"H3489\"*, and|strong=\"H5439\"* their|strong=\"H5439\"* cords|strong=\"H4340\"*." + }, + { + "verseNum": 38, + "text": "Those|strong=\"H2583\"* who|strong=\"H1121\"* encamp|strong=\"H2583\"* before|strong=\"H6440\"* the|strong=\"H6440\"* tabernacle|strong=\"H4908\"* eastward|strong=\"H6924\"*, in|strong=\"H2583\"* front|strong=\"H6440\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Tent|strong=\"H2583\"* of|strong=\"H1121\"* Meeting|strong=\"H4150\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* sunrise|strong=\"H4217\"*, shall|strong=\"H1121\"* be|strong=\"H4191\"* Moses|strong=\"H4872\"*, with|strong=\"H6440\"* Aaron and|strong=\"H1121\"* his|strong=\"H8104\"* sons|strong=\"H1121\"*, keeping|strong=\"H8104\"* the|strong=\"H6440\"* requirements of|strong=\"H1121\"* the|strong=\"H6440\"* sanctuary|strong=\"H4720\"* for|strong=\"H6440\"* the|strong=\"H6440\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. The|strong=\"H6440\"* outsider|strong=\"H2114\"* who|strong=\"H1121\"* comes|strong=\"H6440\"* near|strong=\"H7126\"* shall|strong=\"H1121\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H3478\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 39, + "text": "All|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, whom Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron counted|strong=\"H6485\"* at|strong=\"H5921\"* the|strong=\"H3605\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, by|strong=\"H5921\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* males|strong=\"H2145\"* from|strong=\"H5921\"* a|strong=\"H3068\"* month|strong=\"H2320\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, were|strong=\"H1121\"* twenty-two|strong=\"H6242\"* thousand." + }, + { + "verseNum": 40, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* Moses|strong=\"H4872\"*, “Count|strong=\"H4557\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* males|strong=\"H2145\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* a|strong=\"H3068\"* month|strong=\"H2320\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, and|strong=\"H1121\"* take|strong=\"H5375\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* their|strong=\"H3605\"* names|strong=\"H8034\"*." + }, + { + "verseNum": 41, + "text": "You|strong=\"H3605\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* for|strong=\"H8478\"* me|strong=\"H3947\"*—I|strong=\"H1121\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*—instead|strong=\"H8478\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* among|strong=\"H8478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* the|strong=\"H3605\"* livestock of|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* among|strong=\"H8478\"* the|strong=\"H3605\"* livestock of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 42, + "text": "Moses|strong=\"H4872\"* counted|strong=\"H6485\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H6680\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* among|strong=\"H1060\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 43, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* males|strong=\"H2145\"* according to|strong=\"H1961\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* names|strong=\"H8034\"* from|strong=\"H1121\"* a|strong=\"H3068\"* month|strong=\"H2320\"* old|strong=\"H1121\"* and|strong=\"H3967\"* upward|strong=\"H4605\"*, of|strong=\"H1121\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1961\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* them|strong=\"H8147\"*, were|strong=\"H1961\"* twenty-two|strong=\"H6242\"* thousand two|strong=\"H8147\"* hundred|strong=\"H3967\"* seventy-three." + }, + { + "verseNum": 44, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 45, + "text": "“Take|strong=\"H3947\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* among|strong=\"H8478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* livestock of|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* their|strong=\"H3605\"* livestock; and|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* mine|strong=\"H3478\"*. I|strong=\"H1121\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 46, + "text": "For|strong=\"H5921\"* the|strong=\"H5921\"* redemption of|strong=\"H1121\"* the|strong=\"H5921\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* seventy-three of|strong=\"H1121\"* the|strong=\"H5921\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H1121\"* exceed|strong=\"H5921\"* the|strong=\"H5921\"* number|strong=\"H5736\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*," + }, + { + "verseNum": 47, + "text": "you|strong=\"H3947\"* shall take|strong=\"H3947\"* five|strong=\"H2568\"* shekels|strong=\"H8255\"* apiece|strong=\"H1538\"* for|strong=\"H3947\"* each|strong=\"H3947\"* one; according to|strong=\"H6242\"* the|strong=\"H3947\"* shekel|strong=\"H8255\"*+ 3:47 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H8255\"* the|strong=\"H3947\"* sanctuary|strong=\"H6944\"* you|strong=\"H3947\"* shall take|strong=\"H3947\"* them|strong=\"H3947\"* (the|strong=\"H3947\"* shekel|strong=\"H8255\"* is|strong=\"H8255\"* twenty|strong=\"H6242\"* gerahs|strong=\"H1626\"*+ 3:47 A gerah is about 0.5 grams or about 7.7 grains.*);" + }, + { + "verseNum": 48, + "text": "and|strong=\"H1121\"* you|strong=\"H5414\"* shall|strong=\"H1121\"* give|strong=\"H5414\"* the|strong=\"H5414\"* money|strong=\"H3701\"*, with|strong=\"H1121\"* which their|strong=\"H5414\"* remainder is|strong=\"H3701\"* redeemed|strong=\"H6302\"*, to|strong=\"H5414\"* Aaron and|strong=\"H1121\"* to|strong=\"H5414\"* his|strong=\"H5414\"* sons|strong=\"H1121\"*.”" + }, + { + "verseNum": 49, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* the|strong=\"H5921\"* redemption|strong=\"H6306\"* money|strong=\"H3701\"* from|strong=\"H5921\"* those|strong=\"H5921\"* who|strong=\"H3881\"* exceeded the|strong=\"H5921\"* number|strong=\"H5736\"* of|strong=\"H5921\"* those|strong=\"H5921\"* who|strong=\"H3881\"* were|strong=\"H3881\"* redeemed|strong=\"H6302\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*;" + }, + { + "verseNum": 50, + "text": "from|strong=\"H3478\"* the|strong=\"H3947\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* he|strong=\"H2568\"* took|strong=\"H3947\"* the|strong=\"H3947\"* money|strong=\"H3701\"*, one|strong=\"H1121\"* thousand three|strong=\"H7969\"* hundred|strong=\"H3967\"* sixty-five|strong=\"H8346\"* shekels|strong=\"H8255\"*,+ 3:50 A shekel is about 10 grams or about 0.35 ounces, so 1365 shekels is about 13.65 kilograms or about 30 pounds.* according|strong=\"H3701\"* to|strong=\"H3478\"* the|strong=\"H3947\"* shekel|strong=\"H8255\"* of|strong=\"H1121\"* the|strong=\"H3947\"* sanctuary|strong=\"H6944\"*;" + }, + { + "verseNum": 51, + "text": "and|strong=\"H1121\"* Moses|strong=\"H4872\"* gave|strong=\"H5414\"* the|strong=\"H5921\"* redemption money|strong=\"H3701\"* to|strong=\"H3068\"* Aaron and|strong=\"H1121\"* to|strong=\"H3068\"* his|strong=\"H5414\"* sons|strong=\"H1121\"*, according|strong=\"H5921\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H6310\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H1696\"* Aaron, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Take|strong=\"H5375\"* a|strong=\"H3068\"* census|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5375\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"* from|strong=\"H1121\"* among|strong=\"H8432\"* the|strong=\"H5375\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3881\"*, by|strong=\"H4940\"* their|strong=\"H5375\"* families|strong=\"H4940\"*, by|strong=\"H4940\"* their|strong=\"H5375\"* fathers’ houses|strong=\"H1004\"*," + }, + { + "verseNum": 3, + "text": "from|strong=\"H1121\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"* even|strong=\"H5704\"* until|strong=\"H5704\"* fifty|strong=\"H2572\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* enter into|strong=\"H6213\"* the|strong=\"H3605\"* service|strong=\"H6635\"* to|strong=\"H5704\"* do|strong=\"H6213\"* the|strong=\"H3605\"* work|strong=\"H4399\"* in|strong=\"H8141\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 4, + "text": "“This|strong=\"H2063\"* is|strong=\"H1121\"* the|strong=\"H1121\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"* in|strong=\"H1121\"* the|strong=\"H1121\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, regarding the|strong=\"H1121\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H1121\"* the|strong=\"H3680\"* camp|strong=\"H4264\"* moves forward|strong=\"H5265\"*, Aaron shall|strong=\"H1121\"* go|strong=\"H3381\"* in|strong=\"H1121\"* with|strong=\"H3381\"* his|strong=\"H3680\"* sons|strong=\"H1121\"*; and|strong=\"H1121\"* they shall|strong=\"H1121\"* take|strong=\"H1121\"* down|strong=\"H3381\"* the|strong=\"H3680\"* veil|strong=\"H6532\"* of|strong=\"H1121\"* the|strong=\"H3680\"* screen|strong=\"H4539\"*, cover|strong=\"H3680\"* the|strong=\"H3680\"* ark of|strong=\"H1121\"* the|strong=\"H3680\"* Testimony|strong=\"H5715\"* with|strong=\"H3381\"* it|strong=\"H3381\"*," + }, + { + "verseNum": 6, + "text": "put|strong=\"H5414\"* a|strong=\"H3068\"* covering|strong=\"H3681\"* of|strong=\"H5921\"* sealskin on|strong=\"H5921\"* it|strong=\"H5414\"*, spread|strong=\"H6566\"* a|strong=\"H3068\"* blue|strong=\"H8504\"* cloth over|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H8504\"* put|strong=\"H5414\"* in|strong=\"H5921\"* its|strong=\"H5414\"* poles." + }, + { + "verseNum": 7, + "text": "“On|strong=\"H5921\"* the|strong=\"H6440\"* table|strong=\"H7979\"* of|strong=\"H6440\"* show|strong=\"H5414\"* bread|strong=\"H3899\"* they|strong=\"H5921\"* shall|strong=\"H6440\"* spread|strong=\"H6566\"* a|strong=\"H3068\"* blue|strong=\"H8504\"* cloth, and|strong=\"H3899\"* put|strong=\"H5414\"* on|strong=\"H5921\"* it|strong=\"H5414\"* the|strong=\"H6440\"* dishes|strong=\"H7086\"*, the|strong=\"H6440\"* spoons|strong=\"H3709\"*, the|strong=\"H6440\"* bowls|strong=\"H4518\"*, and|strong=\"H3899\"* the|strong=\"H6440\"* cups|strong=\"H7184\"* with|strong=\"H5921\"* which|strong=\"H3899\"* to|strong=\"H1961\"* pour|strong=\"H5414\"* out|strong=\"H6566\"*; and|strong=\"H3899\"* the|strong=\"H6440\"* continual|strong=\"H8548\"* bread|strong=\"H3899\"* shall|strong=\"H6440\"* be|strong=\"H1961\"* on|strong=\"H5921\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H5921\"* shall|strong=\"H8438\"* spread|strong=\"H6566\"* on|strong=\"H5921\"* them|strong=\"H5921\"* a|strong=\"H3068\"* scarlet|strong=\"H8144\"* cloth, and|strong=\"H5785\"* cover|strong=\"H3680\"* it|strong=\"H7760\"* with|strong=\"H5921\"* a|strong=\"H3068\"* covering|strong=\"H4372\"* of|strong=\"H5921\"* sealskin, and|strong=\"H5785\"* shall|strong=\"H8438\"* put|strong=\"H7760\"* in|strong=\"H5921\"* its|strong=\"H5921\"* poles." + }, + { + "verseNum": 9, + "text": "“They|strong=\"H3605\"* shall|strong=\"H3627\"* take|strong=\"H3947\"* a|strong=\"H3068\"* blue|strong=\"H8504\"* cloth and|strong=\"H8504\"* cover|strong=\"H3680\"* the|strong=\"H3605\"* lamp|strong=\"H5216\"* stand of|strong=\"H3627\"* the|strong=\"H3605\"* light|strong=\"H3974\"*, its|strong=\"H3605\"* lamps|strong=\"H5216\"*, its|strong=\"H3605\"* snuffers|strong=\"H4457\"*, its|strong=\"H3605\"* snuff dishes, and|strong=\"H8504\"* all|strong=\"H3605\"* its|strong=\"H3605\"* oil|strong=\"H8081\"* vessels|strong=\"H3627\"*, with|strong=\"H3680\"* which|strong=\"H3627\"* they|strong=\"H3605\"* minister|strong=\"H8334\"* to|strong=\"H3947\"* it|strong=\"H3680\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H5921\"* shall|strong=\"H3627\"* put|strong=\"H5414\"* it|strong=\"H5414\"* and|strong=\"H3627\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"* within|strong=\"H5921\"* a|strong=\"H3068\"* covering|strong=\"H4372\"* of|strong=\"H3627\"* sealskin, and|strong=\"H3627\"* shall|strong=\"H3627\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H3605\"* frame|strong=\"H5414\"*." + }, + { + "verseNum": 11, + "text": "“On|strong=\"H5921\"* the|strong=\"H5921\"* golden|strong=\"H2091\"* altar|strong=\"H4196\"* they|strong=\"H5921\"* shall spread|strong=\"H6566\"* a|strong=\"H3068\"* blue|strong=\"H8504\"* cloth, and|strong=\"H2091\"* cover|strong=\"H3680\"* it|strong=\"H7760\"* with|strong=\"H5921\"* a|strong=\"H3068\"* covering|strong=\"H4372\"* of|strong=\"H4196\"* sealskin, and|strong=\"H2091\"* shall put|strong=\"H7760\"* in|strong=\"H5921\"* its|strong=\"H5921\"* poles." + }, + { + "verseNum": 12, + "text": "“They|strong=\"H5921\"* shall|strong=\"H3627\"* take|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* ministry|strong=\"H8335\"* with|strong=\"H5921\"* which|strong=\"H3627\"* they|strong=\"H5921\"* minister|strong=\"H8334\"* in|strong=\"H5921\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, and|strong=\"H8504\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H5921\"* a|strong=\"H3068\"* blue|strong=\"H8504\"* cloth, cover|strong=\"H3680\"* them|strong=\"H5414\"* with|strong=\"H5921\"* a|strong=\"H3068\"* covering|strong=\"H4372\"* of|strong=\"H3627\"* sealskin, and|strong=\"H8504\"* shall|strong=\"H3627\"* put|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H3605\"* frame|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "“They|strong=\"H5921\"* shall take|strong=\"H1878\"* away|strong=\"H1878\"* the|strong=\"H5921\"* ashes|strong=\"H1878\"* from|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H4196\"* spread|strong=\"H6566\"* a|strong=\"H3068\"* purple cloth on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H5921\"* shall|strong=\"H3627\"* put|strong=\"H5414\"* on|strong=\"H5921\"* it|strong=\"H5414\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"* with|strong=\"H5921\"* which|strong=\"H4196\"* they|strong=\"H5921\"* minister|strong=\"H8334\"* about|strong=\"H5921\"* it|strong=\"H5414\"*, the|strong=\"H3605\"* fire pans, the|strong=\"H3605\"* meat hooks|strong=\"H4207\"*, the|strong=\"H3605\"* shovels|strong=\"H3257\"*, and|strong=\"H4196\"* the|strong=\"H3605\"* basins|strong=\"H4219\"*—all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*; and|strong=\"H4196\"* they|strong=\"H5921\"* shall|strong=\"H3627\"* spread|strong=\"H6566\"* on|strong=\"H5921\"* it|strong=\"H5414\"* a|strong=\"H3068\"* covering|strong=\"H3681\"* of|strong=\"H3627\"* sealskin, and|strong=\"H4196\"* put|strong=\"H5414\"* in|strong=\"H5921\"* its|strong=\"H3605\"* poles." + }, + { + "verseNum": 15, + "text": "“When|strong=\"H3615\"* Aaron and|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* have|strong=\"H1121\"* finished|strong=\"H3615\"* covering|strong=\"H3680\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* furniture|strong=\"H3627\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, as|strong=\"H3651\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* moves forward|strong=\"H5265\"*; after that|strong=\"H3605\"*, the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"* shall|strong=\"H1121\"* come|strong=\"H5060\"* to|strong=\"H4191\"* carry|strong=\"H5375\"* it|strong=\"H3651\"*; but|strong=\"H3808\"* they|strong=\"H3651\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* touch|strong=\"H5060\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, lest they|strong=\"H3651\"* die|strong=\"H4191\"*. The|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"* shall|strong=\"H1121\"* carry|strong=\"H5375\"* these|strong=\"H3605\"* things|strong=\"H6944\"* belonging to|strong=\"H4191\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 16, + "text": "“The|strong=\"H3605\"* duty of|strong=\"H1121\"* Eleazar the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* be|strong=\"H1121\"* the|strong=\"H3605\"* oil|strong=\"H8081\"* for|strong=\"H1121\"* the|strong=\"H3605\"* light|strong=\"H3974\"*, the|strong=\"H3605\"* sweet|strong=\"H5561\"* incense|strong=\"H7004\"*, the|strong=\"H3605\"* continual|strong=\"H8548\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, the|strong=\"H3605\"* requirements of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H1121\"* it|strong=\"H3627\"*, the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, and|strong=\"H1121\"* its|strong=\"H3605\"* furnishings|strong=\"H3627\"*.”" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H1696\"* Aaron, saying|strong=\"H1696\"*," + }, + { + "verseNum": 18, + "text": "“Don’t cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H8432\"* tribe|strong=\"H7626\"* of|strong=\"H7626\"* the|strong=\"H8432\"* families|strong=\"H4940\"* of|strong=\"H7626\"* the|strong=\"H8432\"* Kohathites|strong=\"H6956\"* from|strong=\"H3772\"* among|strong=\"H8432\"* the|strong=\"H8432\"* Levites|strong=\"H3881\"*;" + }, + { + "verseNum": 19, + "text": "but|strong=\"H3808\"* do|strong=\"H6213\"* this|strong=\"H2063\"* to|strong=\"H4191\"* them|strong=\"H5921\"*, that|strong=\"H1121\"* they|strong=\"H3808\"* may|strong=\"H6213\"* live|strong=\"H2421\"*, and|strong=\"H1121\"* not|strong=\"H3808\"* die|strong=\"H4191\"*, when|strong=\"H2421\"* they|strong=\"H3808\"* approach|strong=\"H5066\"* the|strong=\"H5921\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*: Aaron and|strong=\"H1121\"* his|strong=\"H7760\"* sons|strong=\"H1121\"* shall|strong=\"H1121\"* go|strong=\"H5066\"* in|strong=\"H5921\"* and|strong=\"H1121\"* appoint|strong=\"H7760\"* everyone to|strong=\"H4191\"* his|strong=\"H7760\"* service|strong=\"H5656\"* and|strong=\"H1121\"* to|strong=\"H4191\"* his|strong=\"H7760\"* burden|strong=\"H4853\"*;" + }, + { + "verseNum": 20, + "text": "but|strong=\"H3808\"* they|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* go in|strong=\"H4191\"* to|strong=\"H4191\"* see|strong=\"H7200\"* the|strong=\"H7200\"* sanctuary|strong=\"H6944\"* even|strong=\"H3808\"* for|strong=\"H4191\"* a|strong=\"H3068\"* moment|strong=\"H1104\"*, lest they|strong=\"H3808\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 22, + "text": "“Take|strong=\"H5375\"* a|strong=\"H3068\"* census|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5375\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershon|strong=\"H1648\"* also|strong=\"H1571\"*, by|strong=\"H1571\"* their|strong=\"H5375\"* fathers’ houses|strong=\"H1004\"*, by|strong=\"H1571\"* their|strong=\"H5375\"* families|strong=\"H4940\"*;" + }, + { + "verseNum": 23, + "text": "you|strong=\"H3605\"* shall|strong=\"H1121\"* count|strong=\"H8141\"* them|strong=\"H6485\"* from|strong=\"H1121\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"* until|strong=\"H5704\"* fifty|strong=\"H2572\"* years|strong=\"H8141\"* old|strong=\"H1121\"*: all|strong=\"H3605\"* who|strong=\"H3605\"* enter in|strong=\"H8141\"* to|strong=\"H5704\"* wait|strong=\"H6633\"* on|strong=\"H3605\"* the|strong=\"H3605\"* service|strong=\"H5656\"*, to|strong=\"H5704\"* do|strong=\"H5647\"* the|strong=\"H3605\"* work|strong=\"H5656\"* in|strong=\"H8141\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 24, + "text": "“This|strong=\"H2063\"* is|strong=\"H4940\"* the|strong=\"H5647\"* service|strong=\"H5656\"* of|strong=\"H4940\"* the|strong=\"H5647\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H5647\"* Gershonites|strong=\"H1649\"*, in|strong=\"H4940\"* serving|strong=\"H5647\"* and|strong=\"H5647\"* in|strong=\"H4940\"* bearing burdens|strong=\"H4853\"*:" + }, + { + "verseNum": 25, + "text": "they|strong=\"H5921\"* shall|strong=\"H4150\"* carry|strong=\"H5375\"* the|strong=\"H5921\"* curtains|strong=\"H3407\"* of|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"* and|strong=\"H4150\"* the|strong=\"H5921\"* Tent|strong=\"H3407\"* of|strong=\"H5921\"* Meeting|strong=\"H4150\"*, its|strong=\"H5921\"* covering|strong=\"H4372\"*, the|strong=\"H5921\"* covering|strong=\"H4372\"* of|strong=\"H5921\"* sealskin that|strong=\"H3407\"* is on|strong=\"H5921\"* it|strong=\"H5921\"*, the|strong=\"H5921\"* screen|strong=\"H4539\"* for|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H5921\"* the|strong=\"H5921\"* Tent|strong=\"H3407\"* of|strong=\"H5921\"* Meeting|strong=\"H4150\"*," + }, + { + "verseNum": 26, + "text": "the|strong=\"H3605\"* hangings|strong=\"H7050\"* of|strong=\"H3627\"* the|strong=\"H3605\"* court|strong=\"H2691\"*, the|strong=\"H3605\"* screen|strong=\"H4539\"* for|strong=\"H5921\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H3627\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H3627\"* the|strong=\"H3605\"* court|strong=\"H2691\"* which|strong=\"H4196\"* is|strong=\"H3605\"* by|strong=\"H5921\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* and|strong=\"H4196\"* around|strong=\"H5439\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, their|strong=\"H3605\"* cords|strong=\"H4340\"*, and|strong=\"H4196\"* all|strong=\"H3605\"* the|strong=\"H3605\"* instruments|strong=\"H3627\"* of|strong=\"H3627\"* their|strong=\"H3605\"* service|strong=\"H5656\"*, and|strong=\"H4196\"* whatever|strong=\"H3605\"* shall|strong=\"H6213\"* be|strong=\"H5656\"* done|strong=\"H6213\"* with|strong=\"H6213\"* them|strong=\"H5921\"*. They|strong=\"H5921\"* shall|strong=\"H6213\"* serve|strong=\"H5647\"* in|strong=\"H5921\"* there|strong=\"H3605\"*." + }, + { + "verseNum": 27, + "text": "At|strong=\"H5921\"* the|strong=\"H3605\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Aaron and|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Gershonites|strong=\"H1649\"*, in|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* burden|strong=\"H4853\"* and|strong=\"H1121\"* in|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* service|strong=\"H5656\"*; and|strong=\"H1121\"* you|strong=\"H3605\"* shall|strong=\"H1121\"* appoint|strong=\"H6485\"* their|strong=\"H3605\"* duty|strong=\"H4931\"* to|strong=\"H1961\"* them|strong=\"H5921\"* in|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* responsibilities|strong=\"H4931\"*." + }, + { + "verseNum": 28, + "text": "This|strong=\"H2063\"* is|strong=\"H3027\"* the|strong=\"H3027\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H3027\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3027\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3027\"* Gershonites|strong=\"H1649\"* in|strong=\"H1121\"* the|strong=\"H3027\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*. Their|strong=\"H3548\"* duty|strong=\"H4931\"* shall|strong=\"H3548\"* be|strong=\"H3027\"* under|strong=\"H3027\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Ithamar the|strong=\"H3027\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H3027\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 29, + "text": "“As|strong=\"H1121\"* for|strong=\"H1004\"* the|strong=\"H6485\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, you|strong=\"H6485\"* shall|strong=\"H1121\"* count them|strong=\"H6485\"* by|strong=\"H6485\"* their|strong=\"H6485\"* families|strong=\"H4940\"*, by|strong=\"H6485\"* their|strong=\"H6485\"* fathers’ houses|strong=\"H1004\"*;" + }, + { + "verseNum": 30, + "text": "you|strong=\"H3605\"* shall|strong=\"H1121\"* count|strong=\"H8141\"* them|strong=\"H6485\"* from|strong=\"H1121\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"* even|strong=\"H5704\"* to|strong=\"H5704\"* fifty|strong=\"H2572\"* years|strong=\"H8141\"* old|strong=\"H1121\"*—everyone|strong=\"H3605\"* who|strong=\"H3605\"* enters on|strong=\"H3605\"* the|strong=\"H3605\"* service|strong=\"H5656\"*, to|strong=\"H5704\"* do|strong=\"H5647\"* the|strong=\"H3605\"* work|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 31, + "text": "This|strong=\"H2063\"* is|strong=\"H3605\"* the|strong=\"H3605\"* duty|strong=\"H4931\"* of|strong=\"H5982\"* their|strong=\"H3605\"* burden|strong=\"H4853\"*, according to|strong=\"H4150\"* all|strong=\"H3605\"* their|strong=\"H3605\"* service|strong=\"H5656\"* in|strong=\"H5656\"* the|strong=\"H3605\"* Tent of|strong=\"H5982\"* Meeting|strong=\"H4150\"*: the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*’s boards|strong=\"H7175\"*, its|strong=\"H3605\"* bars|strong=\"H1280\"*, its|strong=\"H3605\"* pillars|strong=\"H5982\"*, its|strong=\"H3605\"* sockets," + }, + { + "verseNum": 32, + "text": "the|strong=\"H3605\"* pillars|strong=\"H5982\"* of|strong=\"H3627\"* the|strong=\"H3605\"* court|strong=\"H2691\"* around|strong=\"H5439\"* it|strong=\"H5439\"*, their|strong=\"H3605\"* sockets, their|strong=\"H3605\"* pins|strong=\"H3489\"*, their|strong=\"H3605\"* cords|strong=\"H4340\"*, with|strong=\"H3627\"* all|strong=\"H3605\"* their|strong=\"H3605\"* instruments|strong=\"H3627\"*, and|strong=\"H3627\"* with|strong=\"H3627\"* all|strong=\"H3605\"* their|strong=\"H3605\"* service|strong=\"H5656\"*. You|strong=\"H3605\"* shall|strong=\"H8034\"* appoint|strong=\"H6485\"* the|strong=\"H3605\"* instruments|strong=\"H3627\"* of|strong=\"H3627\"* the|strong=\"H3605\"* duty|strong=\"H4931\"* of|strong=\"H3627\"* their|strong=\"H3605\"* burden|strong=\"H4853\"* to|strong=\"H8034\"* them|strong=\"H5439\"* by|strong=\"H8034\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 33, + "text": "This|strong=\"H2063\"* is|strong=\"H3027\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, according|strong=\"H3027\"* to|strong=\"H3027\"* all|strong=\"H3605\"* their|strong=\"H3605\"* service|strong=\"H5656\"* in|strong=\"H1121\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, under|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Ithamar the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H3605\"* priest|strong=\"H3548\"*.”" + }, + { + "verseNum": 34, + "text": "Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron and|strong=\"H1121\"* the|strong=\"H6485\"* princes|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H6485\"* congregation|strong=\"H5712\"* counted|strong=\"H6485\"* the|strong=\"H6485\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6485\"* Kohathites|strong=\"H6956\"* by|strong=\"H6485\"* their|strong=\"H6485\"* families|strong=\"H4940\"*, and|strong=\"H1121\"* by|strong=\"H6485\"* their|strong=\"H6485\"* fathers’ houses|strong=\"H1004\"*," + }, + { + "verseNum": 35, + "text": "from|strong=\"H1121\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"* even|strong=\"H5704\"* to|strong=\"H5704\"* fifty|strong=\"H2572\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, everyone|strong=\"H3605\"* who|strong=\"H3605\"* entered|strong=\"H5704\"* into|strong=\"H6635\"* the|strong=\"H3605\"* service|strong=\"H5656\"* for|strong=\"H5704\"* work|strong=\"H5656\"* in|strong=\"H8141\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 36, + "text": "Those|strong=\"H1961\"* who|strong=\"H6485\"* were|strong=\"H1961\"* counted|strong=\"H6485\"* of|strong=\"H4940\"* them|strong=\"H6485\"* by|strong=\"H6485\"* their|strong=\"H1961\"* families|strong=\"H4940\"* were|strong=\"H1961\"* two|strong=\"H3967\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*." + }, + { + "verseNum": 37, + "text": "These|strong=\"H3605\"* are|strong=\"H3027\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3027\"* counted|strong=\"H6485\"* of|strong=\"H3068\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Kohathites|strong=\"H6956\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* served|strong=\"H5647\"* in|strong=\"H5921\"* the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, whom Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron counted|strong=\"H6485\"* according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H3605\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 38, + "text": "Those|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* the|strong=\"H6485\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershon|strong=\"H1648\"*, by|strong=\"H6485\"* their|strong=\"H6485\"* families|strong=\"H4940\"*, and|strong=\"H1121\"* by|strong=\"H6485\"* their|strong=\"H6485\"* fathers’ houses|strong=\"H1004\"*," + }, + { + "verseNum": 39, + "text": "from|strong=\"H1121\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"* even|strong=\"H5704\"* to|strong=\"H5704\"* fifty|strong=\"H2572\"* years|strong=\"H8141\"* old|strong=\"H1121\"*—everyone|strong=\"H3605\"* who|strong=\"H3605\"* entered|strong=\"H5704\"* into|strong=\"H6635\"* the|strong=\"H3605\"* service|strong=\"H5656\"* for|strong=\"H5704\"* work|strong=\"H5656\"* in|strong=\"H8141\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*," + }, + { + "verseNum": 40, + "text": "even those|strong=\"H1961\"* who|strong=\"H6485\"* were|strong=\"H1961\"* counted|strong=\"H6485\"* of|strong=\"H1004\"* them|strong=\"H6485\"*, by|strong=\"H6485\"* their|strong=\"H1961\"* families|strong=\"H4940\"*, by|strong=\"H6485\"* their|strong=\"H1961\"* fathers’ houses|strong=\"H1004\"*, were|strong=\"H1961\"* two|strong=\"H1004\"* thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"*." + }, + { + "verseNum": 41, + "text": "These|strong=\"H3605\"* are|strong=\"H1121\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershon|strong=\"H1648\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* served|strong=\"H5647\"* in|strong=\"H5921\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, whom Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron counted|strong=\"H6485\"* according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H3605\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 42, + "text": "Those|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* the|strong=\"H6485\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H6485\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, by|strong=\"H6485\"* their|strong=\"H6485\"* families|strong=\"H4940\"*, by|strong=\"H6485\"* their|strong=\"H6485\"* fathers’ houses|strong=\"H1004\"*," + }, + { + "verseNum": 43, + "text": "from|strong=\"H1121\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"* even|strong=\"H5704\"* to|strong=\"H5704\"* fifty|strong=\"H2572\"* years|strong=\"H8141\"* old|strong=\"H1121\"*—everyone|strong=\"H3605\"* who|strong=\"H3605\"* entered|strong=\"H5704\"* into|strong=\"H6635\"* the|strong=\"H3605\"* service|strong=\"H5656\"* for|strong=\"H5704\"* work|strong=\"H5656\"* in|strong=\"H8141\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*," + }, + { + "verseNum": 44, + "text": "even those|strong=\"H1961\"* who|strong=\"H6485\"* were|strong=\"H1961\"* counted|strong=\"H6485\"* of|strong=\"H4940\"* them|strong=\"H6485\"* by|strong=\"H6485\"* their|strong=\"H1961\"* families|strong=\"H4940\"*, were|strong=\"H1961\"* three|strong=\"H7969\"* thousand two|strong=\"H3967\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 45, + "text": "These are|strong=\"H1121\"* those|strong=\"H5921\"* who|strong=\"H3068\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* the|strong=\"H5921\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, whom Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron counted|strong=\"H6485\"* according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 46, + "text": "All|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3478\"* counted|strong=\"H6485\"* of|strong=\"H1004\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* whom Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron and|strong=\"H4872\"* the|strong=\"H3605\"* princes|strong=\"H5387\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* counted|strong=\"H6485\"*, by|strong=\"H3478\"* their|strong=\"H3605\"* families|strong=\"H4940\"* and|strong=\"H4872\"* by|strong=\"H3478\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*," + }, + { + "verseNum": 47, + "text": "from|strong=\"H1121\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"* even|strong=\"H5704\"* to|strong=\"H5704\"* fifty|strong=\"H2572\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, everyone|strong=\"H3605\"* who|strong=\"H3605\"* entered|strong=\"H5704\"* in|strong=\"H8141\"* to|strong=\"H5704\"* do|strong=\"H5647\"* the|strong=\"H3605\"* work|strong=\"H5656\"* of|strong=\"H1121\"* service|strong=\"H5656\"* and|strong=\"H1121\"* the|strong=\"H3605\"* work|strong=\"H5656\"* of|strong=\"H1121\"* bearing burdens|strong=\"H4853\"* in|strong=\"H8141\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*," + }, + { + "verseNum": 48, + "text": "even those|strong=\"H1961\"* who|strong=\"H6485\"* were|strong=\"H1961\"* counted|strong=\"H6485\"* of|strong=\"H6485\"* them|strong=\"H6485\"*, were|strong=\"H1961\"* eight|strong=\"H8083\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* eighty|strong=\"H8084\"*." + }, + { + "verseNum": 49, + "text": "According|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* they|strong=\"H3068\"* were|strong=\"H3027\"* counted|strong=\"H6485\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*, everyone according|strong=\"H5921\"* to|strong=\"H3068\"* his|strong=\"H3068\"* service|strong=\"H5656\"* and|strong=\"H4872\"* according|strong=\"H5921\"* to|strong=\"H3068\"* his|strong=\"H3068\"* burden|strong=\"H4853\"*. Thus they|strong=\"H3068\"* were|strong=\"H3027\"* counted|strong=\"H6485\"* by|strong=\"H3027\"* him|strong=\"H5921\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Command|strong=\"H6680\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* that|strong=\"H3605\"* they|strong=\"H5315\"* put|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H1121\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* every|strong=\"H3605\"* leper|strong=\"H6879\"*, everyone|strong=\"H3605\"* who|strong=\"H3605\"* has|strong=\"H3478\"* a|strong=\"H3068\"* discharge|strong=\"H2100\"*, and|strong=\"H1121\"* whoever|strong=\"H3605\"* is|strong=\"H5315\"* unclean|strong=\"H2931\"* by|strong=\"H3478\"* a|strong=\"H3068\"* corpse|strong=\"H5315\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H7971\"* shall|strong=\"H3808\"* put|strong=\"H7971\"* both male|strong=\"H2145\"* and|strong=\"H7971\"* female|strong=\"H5347\"* outside|strong=\"H2351\"* of|strong=\"H8432\"* the|strong=\"H8432\"* camp|strong=\"H4264\"* so|strong=\"H7971\"* that|strong=\"H5704\"* they|strong=\"H3808\"* don’t defile|strong=\"H2930\"* their|strong=\"H7971\"* camp|strong=\"H4264\"*, in|strong=\"H7931\"* the|strong=\"H8432\"* midst|strong=\"H8432\"* of|strong=\"H8432\"* which I|strong=\"H5704\"* dwell|strong=\"H7931\"*.”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* so|strong=\"H3651\"*, and|strong=\"H1121\"* put|strong=\"H7971\"* them|strong=\"H7971\"* outside|strong=\"H2351\"* of|strong=\"H1121\"* the|strong=\"H6213\"* camp|strong=\"H4264\"*; as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, so|strong=\"H3651\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 6, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*: ‘When|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1121\"* or|strong=\"H1121\"* woman commits|strong=\"H6213\"* any|strong=\"H3605\"* sin|strong=\"H2403\"* that|strong=\"H3588\"* men|strong=\"H1121\"* commit|strong=\"H6213\"*, so|strong=\"H6213\"* as|strong=\"H6213\"* to|strong=\"H1696\"* trespass|strong=\"H4604\"* against|strong=\"H1696\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* that|strong=\"H3588\"* soul|strong=\"H5315\"* is|strong=\"H3068\"* guilty," + }, + { + "verseNum": 7, + "text": "then|strong=\"H3254\"* he|strong=\"H6213\"* shall|strong=\"H6213\"* confess|strong=\"H3034\"* his|strong=\"H5414\"* sin|strong=\"H2403\"* which|strong=\"H2403\"* he|strong=\"H6213\"* has|strong=\"H6213\"* done|strong=\"H6213\"*; and|strong=\"H7725\"* he|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* restitution|strong=\"H7725\"* for|strong=\"H5921\"* his|strong=\"H5414\"* guilt in|strong=\"H5921\"* full|strong=\"H7218\"*, add|strong=\"H3254\"* to|strong=\"H7725\"* it|strong=\"H5414\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* part|strong=\"H2549\"* of|strong=\"H7218\"* it|strong=\"H5414\"*, and|strong=\"H7725\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H7725\"* him|strong=\"H5414\"* in|strong=\"H5921\"* respect|strong=\"H5921\"* of|strong=\"H7218\"* whom he|strong=\"H6213\"* has|strong=\"H6213\"* been guilty." + }, + { + "verseNum": 8, + "text": "But|strong=\"H7725\"* if the|strong=\"H5921\"* man has|strong=\"H3068\"* no kinsman|strong=\"H1350\"* to|strong=\"H7725\"* whom restitution|strong=\"H7725\"* may|strong=\"H3068\"* be|strong=\"H3068\"* made|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H5921\"* guilt, the|strong=\"H5921\"* restitution|strong=\"H7725\"* for|strong=\"H5921\"* guilt which|strong=\"H3068\"* is|strong=\"H3068\"* made|strong=\"H3722\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3548\"* be|strong=\"H3068\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*’s, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H7725\"* the|strong=\"H5921\"* ram of|strong=\"H3068\"* the|strong=\"H5921\"* atonement|strong=\"H3722\"*, by|strong=\"H5921\"* which|strong=\"H3068\"* atonement|strong=\"H3722\"* shall|strong=\"H3548\"* be|strong=\"H3068\"* made|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "Every|strong=\"H3605\"* heave|strong=\"H8641\"* offering|strong=\"H8641\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, which|strong=\"H3478\"* they|strong=\"H3478\"* present|strong=\"H7126\"* to|strong=\"H3478\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*, shall|strong=\"H3548\"* be|strong=\"H1961\"* his|strong=\"H3605\"*." + }, + { + "verseNum": 10, + "text": "Every|strong=\"H5414\"* man’s holy|strong=\"H6944\"* things|strong=\"H6944\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* his|strong=\"H5414\"*; whatever any|strong=\"H5414\"* man gives|strong=\"H5414\"* the|strong=\"H5414\"* priest|strong=\"H3548\"*, it|strong=\"H5414\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* his|strong=\"H5414\"*.’”" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 12, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H1121\"*: ‘If|strong=\"H3588\"* any|strong=\"H3588\"* man|strong=\"H1121\"*’s wife|strong=\"H1696\"* goes|strong=\"H7847\"* astray|strong=\"H7847\"* and|strong=\"H1121\"* is|strong=\"H3478\"* unfaithful|strong=\"H4603\"* to|strong=\"H1696\"* him|strong=\"H3588\"*," + }, + { + "verseNum": 13, + "text": "and|strong=\"H5869\"* a|strong=\"H3068\"* man lies|strong=\"H7901\"* with|strong=\"H7901\"* her|strong=\"H1931\"* carnally|strong=\"H2233\"*, and|strong=\"H5869\"* it|strong=\"H1931\"* is|strong=\"H1931\"* hidden|strong=\"H5641\"* from|strong=\"H5869\"* the|strong=\"H8610\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* her|strong=\"H1931\"* husband and|strong=\"H5869\"* this|strong=\"H1931\"* is|strong=\"H1931\"* kept concealed|strong=\"H5641\"*, and|strong=\"H5869\"* she|strong=\"H1931\"* is|strong=\"H1931\"* defiled|strong=\"H2930\"*, there is|strong=\"H1931\"* no|strong=\"H3808\"* witness|strong=\"H5707\"* against|strong=\"H5869\"* her|strong=\"H1931\"*, and|strong=\"H5869\"* she|strong=\"H1931\"* isn’t taken|strong=\"H8610\"* in|strong=\"H7901\"* the|strong=\"H8610\"* act;" + }, + { + "verseNum": 14, + "text": "and|strong=\"H5674\"* the|strong=\"H5921\"* spirit|strong=\"H7307\"* of|strong=\"H7307\"* jealousy|strong=\"H7068\"* comes|strong=\"H5674\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H5674\"* he|strong=\"H1931\"* is|strong=\"H1931\"* jealous|strong=\"H7065\"* of|strong=\"H7307\"* his|strong=\"H5921\"* wife and|strong=\"H5674\"* she|strong=\"H1931\"* is|strong=\"H1931\"* defiled|strong=\"H2930\"*; or|strong=\"H3808\"* if|strong=\"H7068\"* the|strong=\"H5921\"* spirit|strong=\"H7307\"* of|strong=\"H7307\"* jealousy|strong=\"H7068\"* comes|strong=\"H5674\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H5674\"* he|strong=\"H1931\"* is|strong=\"H1931\"* jealous|strong=\"H7065\"* of|strong=\"H7307\"* his|strong=\"H5921\"* wife and|strong=\"H5674\"* she|strong=\"H1931\"* isn’t defiled|strong=\"H2930\"*;" + }, + { + "verseNum": 15, + "text": "then|strong=\"H5414\"* the|strong=\"H5921\"* man shall|strong=\"H3548\"* bring|strong=\"H5414\"* his|strong=\"H5414\"* wife to|strong=\"H5921\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*, and|strong=\"H3548\"* shall|strong=\"H3548\"* bring|strong=\"H5414\"* her|strong=\"H5414\"* offering|strong=\"H4503\"* for|strong=\"H3588\"* her|strong=\"H5414\"*: one|strong=\"H3808\"* tenth|strong=\"H6224\"* of|strong=\"H5921\"* an|strong=\"H5414\"* ephah+ 5:15 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H5921\"* barley|strong=\"H8184\"* meal|strong=\"H7058\"*. He|strong=\"H1931\"* shall|strong=\"H3548\"* pour|strong=\"H3332\"* no|strong=\"H3808\"* oil|strong=\"H8081\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, nor|strong=\"H3808\"* put|strong=\"H5414\"* frankincense|strong=\"H3828\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, for|strong=\"H3588\"* it|strong=\"H5414\"* is|strong=\"H1931\"* a|strong=\"H3068\"* meal|strong=\"H7058\"* offering|strong=\"H4503\"* of|strong=\"H5921\"* jealousy|strong=\"H7068\"*, a|strong=\"H3068\"* meal|strong=\"H7058\"* offering|strong=\"H4503\"* of|strong=\"H5921\"* memorial|strong=\"H2146\"*, bringing|strong=\"H2142\"* iniquity|strong=\"H5771\"* to|strong=\"H5921\"* memory." + }, + { + "verseNum": 16, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* bring|strong=\"H7126\"* her|strong=\"H6440\"* near|strong=\"H7126\"*, and|strong=\"H3068\"* set|strong=\"H5975\"* her|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H5414\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* holy|strong=\"H6918\"* water|strong=\"H4325\"* in|strong=\"H5414\"* an|strong=\"H1961\"* earthen|strong=\"H2789\"* vessel|strong=\"H3627\"*; and|strong=\"H3548\"* the|strong=\"H5414\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* some|strong=\"H4480\"* of|strong=\"H3627\"* the|strong=\"H5414\"* dust|strong=\"H6083\"* that|strong=\"H5414\"* is|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H5414\"* floor|strong=\"H7172\"* of|strong=\"H3627\"* the|strong=\"H5414\"* tabernacle|strong=\"H4908\"* and|strong=\"H3548\"* put|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H1961\"* the|strong=\"H5414\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* set|strong=\"H5414\"* the|strong=\"H6440\"* woman before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* let|strong=\"H5414\"* the|strong=\"H6440\"* hair|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H6440\"* woman’s head|strong=\"H7218\"* go|strong=\"H1961\"* loose|strong=\"H5921\"*, and|strong=\"H3068\"* put|strong=\"H5414\"* the|strong=\"H6440\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* memorial|strong=\"H2146\"* in|strong=\"H5921\"* her|strong=\"H5414\"* hands|strong=\"H3027\"*, which|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H6440\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* jealousy|strong=\"H7068\"*. The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* have|strong=\"H1961\"* in|strong=\"H5921\"* his|strong=\"H5414\"* hand|strong=\"H3027\"* the|strong=\"H6440\"* water|strong=\"H4325\"* of|strong=\"H3068\"* bitterness|strong=\"H4751\"* that|strong=\"H1931\"* brings|strong=\"H5414\"* a|strong=\"H3068\"* curse." + }, + { + "verseNum": 19, + "text": "The|strong=\"H8478\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* cause her|strong=\"H7901\"* to|strong=\"H4325\"* take|strong=\"H7650\"* an|strong=\"H7650\"* oath|strong=\"H7650\"* and|strong=\"H3548\"* shall|strong=\"H3548\"* tell the|strong=\"H8478\"* woman, “If no|strong=\"H3808\"* man has|strong=\"H7901\"* lain|strong=\"H7901\"* with|strong=\"H7901\"* you|strong=\"H3808\"*, and|strong=\"H3548\"* if you|strong=\"H3808\"* haven’t gone|strong=\"H7847\"* aside|strong=\"H7847\"* to|strong=\"H4325\"* uncleanness|strong=\"H2932\"*, being under|strong=\"H8478\"* your|strong=\"H3808\"* husband’s authority, be|strong=\"H3808\"* free|strong=\"H5352\"* from|strong=\"H8478\"* this water|strong=\"H4325\"* of|strong=\"H4325\"* bitterness|strong=\"H4751\"* that|strong=\"H3548\"* brings a|strong=\"H3068\"* curse|strong=\"H7650\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5414\"* gone|strong=\"H7847\"* astray|strong=\"H7847\"*, being under|strong=\"H8478\"* your|strong=\"H5414\"* husband’s authority, and|strong=\"H8478\"* if|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H8478\"* defiled|strong=\"H2930\"*, and|strong=\"H8478\"* some man has|strong=\"H3588\"* lain|strong=\"H7903\"* with|strong=\"H8478\"* you|strong=\"H3588\"* besides|strong=\"H1107\"* your|strong=\"H5414\"* husband—”" + }, + { + "verseNum": 21, + "text": "then|strong=\"H5307\"* the|strong=\"H5414\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* cause|strong=\"H5414\"* the|strong=\"H5414\"* woman to|strong=\"H3068\"* swear|strong=\"H7650\"* with|strong=\"H3068\"* the|strong=\"H5414\"* oath|strong=\"H7621\"* of|strong=\"H3068\"* cursing, and|strong=\"H3068\"* the|strong=\"H5414\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* tell the|strong=\"H5414\"* woman, “May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* make|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* curse|strong=\"H7621\"* and|strong=\"H3068\"* an|strong=\"H5414\"* oath|strong=\"H7621\"* among|strong=\"H8432\"* your|strong=\"H3068\"* people|strong=\"H5971\"*, when|strong=\"H3068\"* Yahweh|strong=\"H3068\"* allows your|strong=\"H3068\"* thigh|strong=\"H3409\"* to|strong=\"H3068\"* fall|strong=\"H5307\"* away|strong=\"H5307\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* body|strong=\"H3409\"* to|strong=\"H3068\"* swell|strong=\"H6639\"*;" + }, + { + "verseNum": 22, + "text": "and|strong=\"H4325\"* this|strong=\"H5307\"* water|strong=\"H4325\"* that|strong=\"H4325\"* brings a|strong=\"H3068\"* curse will|strong=\"H4325\"* go|strong=\"H5307\"* into|strong=\"H5307\"* your|strong=\"H5307\"* bowels|strong=\"H4578\"*, and|strong=\"H4325\"* make your|strong=\"H5307\"* body|strong=\"H4578\"* swell|strong=\"H6638\"*, and|strong=\"H4325\"* your|strong=\"H5307\"* thigh|strong=\"H3409\"* fall|strong=\"H5307\"* away|strong=\"H5307\"*.” The|strong=\"H5307\"* woman shall|strong=\"H4325\"* say, “Amen, Amen.”" + }, + { + "verseNum": 23, + "text": "“‘The|strong=\"H3548\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* write|strong=\"H3789\"* these|strong=\"H3789\"* curses in|strong=\"H3789\"* a|strong=\"H3068\"* book|strong=\"H5612\"*, and|strong=\"H3548\"* he|strong=\"H4325\"* shall|strong=\"H3548\"* wipe|strong=\"H4229\"* them|strong=\"H3789\"* into|strong=\"H4325\"* the|strong=\"H3548\"* water|strong=\"H4325\"* of|strong=\"H4325\"* bitterness|strong=\"H4751\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H4325\"* shall|strong=\"H4325\"* make|strong=\"H8248\"* the|strong=\"H8248\"* woman drink|strong=\"H8248\"* the|strong=\"H8248\"* water|strong=\"H4325\"* of|strong=\"H4325\"* bitterness|strong=\"H4751\"* that|strong=\"H4325\"* causes the|strong=\"H8248\"* curse; and|strong=\"H4325\"* the|strong=\"H8248\"* water|strong=\"H4325\"* that|strong=\"H4325\"* causes the|strong=\"H8248\"* curse shall|strong=\"H4325\"* enter into|strong=\"H4325\"* her and|strong=\"H4325\"* become bitter|strong=\"H4751\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* the|strong=\"H6440\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* jealousy|strong=\"H7068\"* out|strong=\"H3947\"* of|strong=\"H3068\"* the|strong=\"H6440\"* woman’s hand|strong=\"H3027\"*, and|strong=\"H3068\"* shall|strong=\"H3548\"* wave|strong=\"H5130\"* the|strong=\"H6440\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* bring|strong=\"H7126\"* it|strong=\"H7126\"* to|strong=\"H3068\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H4480\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H7061\"* a|strong=\"H3068\"* handful|strong=\"H7061\"* of|strong=\"H4325\"* the|strong=\"H4480\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, as|strong=\"H4325\"* its|strong=\"H4480\"* memorial portion|strong=\"H6999\"*, and|strong=\"H3548\"* burn|strong=\"H6999\"* it|strong=\"H4325\"* on|strong=\"H4480\"* the|strong=\"H4480\"* altar|strong=\"H4196\"*, and|strong=\"H3548\"* afterward shall|strong=\"H3548\"* make|strong=\"H8248\"* the|strong=\"H4480\"* woman drink|strong=\"H8248\"* the|strong=\"H4480\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"H1961\"* he|strong=\"H5971\"* has|strong=\"H1961\"* made|strong=\"H8248\"* her|strong=\"H7130\"* drink|strong=\"H8248\"* the|strong=\"H1961\"* water|strong=\"H4325\"*, then|strong=\"H1961\"* it|strong=\"H1961\"* shall|strong=\"H5971\"* happen|strong=\"H1961\"*, if|strong=\"H1961\"* she|strong=\"H8248\"* is|strong=\"H1961\"* defiled|strong=\"H2930\"* and|strong=\"H5971\"* has|strong=\"H1961\"* committed|strong=\"H4603\"* a|strong=\"H3068\"* trespass|strong=\"H4604\"* against|strong=\"H4604\"* her|strong=\"H7130\"* husband, that|strong=\"H5971\"* the|strong=\"H1961\"* water|strong=\"H4325\"* that|strong=\"H5971\"* causes the|strong=\"H1961\"* curse will|strong=\"H1961\"* enter into|strong=\"H5307\"* her|strong=\"H7130\"* and|strong=\"H5971\"* become|strong=\"H1961\"* bitter|strong=\"H4751\"*, and|strong=\"H5971\"* her|strong=\"H7130\"* body|strong=\"H3409\"* will|strong=\"H1961\"* swell|strong=\"H6638\"*, and|strong=\"H5971\"* her|strong=\"H7130\"* thigh|strong=\"H3409\"* will|strong=\"H1961\"* fall|strong=\"H5307\"* away|strong=\"H5307\"*; and|strong=\"H5971\"* the|strong=\"H1961\"* woman will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* curse among|strong=\"H7130\"* her|strong=\"H7130\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 28, + "text": "If|strong=\"H1931\"* the|strong=\"H3808\"* woman isn’t defiled|strong=\"H2930\"*, but|strong=\"H3808\"* is|strong=\"H1931\"* clean|strong=\"H2889\"*; then|strong=\"H3808\"* she|strong=\"H1931\"* shall|strong=\"H2233\"* be|strong=\"H3808\"* free|strong=\"H5352\"*, and|strong=\"H2233\"* shall|strong=\"H2233\"* conceive|strong=\"H2232\"* offspring|strong=\"H2233\"*.+ 5:28 or, seed*" + }, + { + "verseNum": 29, + "text": "“‘This|strong=\"H2063\"* is|strong=\"H8451\"* the|strong=\"H8478\"* law|strong=\"H8451\"* of|strong=\"H8451\"* jealousy|strong=\"H7068\"*, when|strong=\"H7068\"* a|strong=\"H3068\"* wife, being under|strong=\"H8478\"* her|strong=\"H2063\"* husband, goes|strong=\"H7847\"* astray|strong=\"H7847\"*, and|strong=\"H8451\"* is|strong=\"H8451\"* defiled|strong=\"H2930\"*," + }, + { + "verseNum": 30, + "text": "or|strong=\"H3068\"* when|strong=\"H6213\"* the|strong=\"H3605\"* spirit|strong=\"H7307\"* of|strong=\"H3068\"* jealousy|strong=\"H7068\"* comes|strong=\"H5674\"* on|strong=\"H5921\"* a|strong=\"H3068\"* man|strong=\"H3605\"*, and|strong=\"H3068\"* he|strong=\"H6213\"* is|strong=\"H3068\"* jealous|strong=\"H7065\"* of|strong=\"H3068\"* his|strong=\"H3605\"* wife; then|strong=\"H6213\"* he|strong=\"H6213\"* shall|strong=\"H3548\"* set|strong=\"H5975\"* the|strong=\"H3605\"* woman before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* execute|strong=\"H6213\"* on|strong=\"H5921\"* her|strong=\"H3605\"* all|strong=\"H3605\"* this|strong=\"H2063\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H5375\"* man|strong=\"H5375\"* shall|strong=\"H1931\"* be|strong=\"H5375\"* free|strong=\"H5352\"* from|strong=\"H5352\"* iniquity|strong=\"H5771\"*, and|strong=\"H5771\"* that|strong=\"H1931\"* woman shall|strong=\"H1931\"* bear|strong=\"H5375\"* her|strong=\"H5375\"* iniquity|strong=\"H5771\"*.’”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H1121\"*: ‘When|strong=\"H3588\"* either|strong=\"H3588\"* man|strong=\"H1121\"* or|strong=\"H1121\"* woman shall|strong=\"H3068\"* make|strong=\"H5087\"* a|strong=\"H3068\"* special|strong=\"H6381\"* vow|strong=\"H5088\"*, the|strong=\"H3588\"* vow|strong=\"H5088\"* of|strong=\"H1121\"* a|strong=\"H3068\"* Nazirite|strong=\"H5139\"*, to|strong=\"H1696\"* separate|strong=\"H5144\"* himself|strong=\"H3068\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 3, + "text": "he|strong=\"H3605\"* shall|strong=\"H3808\"* separate|strong=\"H5144\"* himself|strong=\"H8354\"* from|strong=\"H5144\"* wine|strong=\"H3196\"* and|strong=\"H8354\"* strong|strong=\"H7941\"* drink|strong=\"H8354\"*. He|strong=\"H3605\"* shall|strong=\"H3808\"* drink|strong=\"H8354\"* no|strong=\"H3808\"* vinegar|strong=\"H2558\"* of|strong=\"H3605\"* wine|strong=\"H3196\"*, or|strong=\"H3808\"* vinegar|strong=\"H2558\"* of|strong=\"H3605\"* fermented drink|strong=\"H8354\"*, neither|strong=\"H3808\"* shall|strong=\"H3808\"* he|strong=\"H3605\"* drink|strong=\"H8354\"* any|strong=\"H3605\"* juice|strong=\"H4952\"* of|strong=\"H3605\"* grapes|strong=\"H6025\"*, nor|strong=\"H3808\"* eat fresh|strong=\"H3892\"* grapes|strong=\"H6025\"* or|strong=\"H3808\"* dried|strong=\"H3002\"*." + }, + { + "verseNum": 4, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H3605\"* separation|strong=\"H5145\"* he|strong=\"H3117\"* shall|strong=\"H3117\"* eat nothing|strong=\"H3808\"* that|strong=\"H3605\"* is|strong=\"H3117\"* made|strong=\"H6213\"* of|strong=\"H3117\"* the|strong=\"H3605\"* grapevine, from|strong=\"H3117\"* the|strong=\"H3605\"* seeds|strong=\"H2785\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* skins." + }, + { + "verseNum": 5, + "text": "“‘All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* his|strong=\"H3605\"* vow|strong=\"H5088\"* of|strong=\"H3068\"* separation|strong=\"H5145\"* no|strong=\"H3808\"* razor|strong=\"H8593\"* shall|strong=\"H3068\"* come|strong=\"H1961\"* on|strong=\"H5921\"* his|strong=\"H3605\"* head|strong=\"H7218\"*, until|strong=\"H5704\"* the|strong=\"H3605\"* days|strong=\"H3117\"* are|strong=\"H3117\"* fulfilled|strong=\"H4390\"* in|strong=\"H5921\"* which|strong=\"H3068\"* he|strong=\"H3117\"* separates|strong=\"H5144\"* himself|strong=\"H1431\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*. He|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6918\"*. He|strong=\"H3117\"* shall|strong=\"H3068\"* let|strong=\"H3808\"* the|strong=\"H3605\"* locks|strong=\"H6545\"* of|strong=\"H3068\"* the|strong=\"H3605\"* hair|strong=\"H8181\"* of|strong=\"H3068\"* his|strong=\"H3605\"* head|strong=\"H7218\"* grow|strong=\"H1431\"* long|strong=\"H5704\"*." + }, + { + "verseNum": 6, + "text": "“‘All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* that|strong=\"H3605\"* he|strong=\"H3117\"* separates|strong=\"H5144\"* himself|strong=\"H5315\"* to|strong=\"H4191\"* Yahweh|strong=\"H3068\"* he|strong=\"H3117\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3068\"* near|strong=\"H5921\"* a|strong=\"H3068\"* dead|strong=\"H4191\"* body|strong=\"H5315\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* make|strong=\"H2930\"* himself|strong=\"H2930\"* unclean|strong=\"H2930\"* for|strong=\"H3588\"* his|strong=\"H5921\"* father, or|strong=\"H3808\"* for|strong=\"H3588\"* his|strong=\"H5921\"* mother, for|strong=\"H3588\"* his|strong=\"H5921\"* brother, or|strong=\"H3808\"* for|strong=\"H3588\"* his|strong=\"H5921\"* sister, when|strong=\"H3588\"* they|strong=\"H3588\"* die|strong=\"H4194\"*, because|strong=\"H3588\"* his|strong=\"H5921\"* separation|strong=\"H5145\"* to|strong=\"H5921\"* God|strong=\"H3808\"*+ 6:7 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* is|strong=\"H7218\"* on|strong=\"H5921\"* his|strong=\"H5921\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 8, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* his|strong=\"H3605\"* separation|strong=\"H5145\"* he|strong=\"H1931\"* is|strong=\"H3068\"* holy|strong=\"H6918\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "“‘If|strong=\"H3588\"* any|strong=\"H3588\"* man|strong=\"H4191\"* dies|strong=\"H4191\"* very|strong=\"H6621\"* suddenly|strong=\"H6597\"* beside|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3117\"* he|strong=\"H3588\"* defiles|strong=\"H2930\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H3117\"* his|strong=\"H5921\"* separation|strong=\"H5145\"*, then|strong=\"H3588\"* he|strong=\"H3588\"* shall|strong=\"H3117\"* shave|strong=\"H1548\"* his|strong=\"H5921\"* head|strong=\"H7218\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H5921\"* cleansing|strong=\"H2893\"*. On|strong=\"H5921\"* the|strong=\"H5921\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* he|strong=\"H3588\"* shall|strong=\"H3117\"* shave|strong=\"H1548\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* he|strong=\"H3117\"* shall|strong=\"H3548\"* bring two|strong=\"H8147\"* turtledoves|strong=\"H8449\"* or|strong=\"H3117\"* two|strong=\"H8147\"* young|strong=\"H1121\"* pigeons|strong=\"H3123\"* to|strong=\"H3117\"* the|strong=\"H3117\"* priest|strong=\"H3548\"*, to|strong=\"H3117\"* the|strong=\"H3117\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H3117\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* offer|strong=\"H6213\"* one|strong=\"H1931\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H3117\"* the|strong=\"H5921\"* other for|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H3117\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"*, because|strong=\"H5921\"* he|strong=\"H1931\"* sinned|strong=\"H2398\"* by|strong=\"H5921\"* reason|strong=\"H5921\"* of|strong=\"H3117\"* the|strong=\"H5921\"* dead|strong=\"H5315\"*, and|strong=\"H3117\"* shall|strong=\"H3548\"* make|strong=\"H6213\"* his|strong=\"H5921\"* head|strong=\"H7218\"* holy|strong=\"H6942\"* that|strong=\"H3117\"* same|strong=\"H1931\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H3588\"* shall|strong=\"H3068\"* separate|strong=\"H5144\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* the|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H1121\"* his|strong=\"H3068\"* separation|strong=\"H5145\"*, and|strong=\"H1121\"* shall|strong=\"H3068\"* bring|strong=\"H5307\"* a|strong=\"H3068\"* male|strong=\"H3532\"* lamb|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* for|strong=\"H3588\"* a|strong=\"H3068\"* trespass offering|strong=\"H3068\"*; but|strong=\"H3588\"* the|strong=\"H3588\"* former|strong=\"H7223\"* days|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* void|strong=\"H5307\"*, because|strong=\"H3588\"* his|strong=\"H3068\"* separation|strong=\"H5145\"* was|strong=\"H3068\"* defiled|strong=\"H2930\"*." + }, + { + "verseNum": 13, + "text": "“‘This|strong=\"H2063\"* is|strong=\"H3117\"* the|strong=\"H3117\"* law|strong=\"H8451\"* of|strong=\"H3117\"* the|strong=\"H3117\"* Nazirite|strong=\"H5139\"*: when|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H4390\"* separation|strong=\"H5145\"* are|strong=\"H3117\"* fulfilled|strong=\"H4390\"*, he|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* brought to|strong=\"H3117\"* the|strong=\"H3117\"* door|strong=\"H6607\"* of|strong=\"H3117\"* the|strong=\"H3117\"* Tent of|strong=\"H3117\"* Meeting|strong=\"H4150\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H1121\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* his|strong=\"H3068\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*: one|strong=\"H3532\"* male|strong=\"H3532\"* lamb|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"* for|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, one|strong=\"H3532\"* ewe|strong=\"H3535\"* lamb|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"* for|strong=\"H3068\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, one|strong=\"H3532\"* ram without|strong=\"H8549\"* defect|strong=\"H8549\"* for|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*," + }, + { + "verseNum": 15, + "text": "a|strong=\"H3068\"* basket|strong=\"H5536\"* of|strong=\"H4503\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*, cakes|strong=\"H2471\"* of|strong=\"H4503\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, and|strong=\"H8081\"* unleavened|strong=\"H4682\"* wafers|strong=\"H7550\"* anointed|strong=\"H4886\"* with|strong=\"H1101\"* oil|strong=\"H8081\"* with|strong=\"H1101\"* their|strong=\"H4886\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H8081\"* their|strong=\"H4886\"* drink|strong=\"H5262\"* offerings|strong=\"H4503\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* present|strong=\"H7126\"* them|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* shall|strong=\"H3548\"* offer|strong=\"H7126\"* his|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* and|strong=\"H3068\"* his|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H6213\"* shall|strong=\"H3548\"* offer|strong=\"H6213\"* the|strong=\"H5921\"* ram for|strong=\"H5921\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, with|strong=\"H3068\"* the|strong=\"H5921\"* basket|strong=\"H5536\"* of|strong=\"H3068\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*. The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* offer|strong=\"H6213\"* also|strong=\"H3068\"* its|strong=\"H5921\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H3068\"* its|strong=\"H5921\"* drink|strong=\"H5262\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5921\"* Nazirite|strong=\"H5139\"* shall|strong=\"H8478\"* shave|strong=\"H1548\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H7218\"* his|strong=\"H5414\"* separation|strong=\"H5145\"* at|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H7218\"* the|strong=\"H5921\"* Tent of|strong=\"H7218\"* Meeting|strong=\"H4150\"*, take|strong=\"H3947\"* the|strong=\"H5921\"* hair|strong=\"H8181\"* of|strong=\"H7218\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H7218\"* his|strong=\"H5414\"* separation|strong=\"H5145\"*, and|strong=\"H7218\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fire which|strong=\"H4150\"* is|strong=\"H7218\"* under|strong=\"H8478\"* the|strong=\"H5921\"* sacrifice|strong=\"H2077\"* of|strong=\"H7218\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* the|strong=\"H5921\"* boiled|strong=\"H1311\"* shoulder|strong=\"H2220\"* of|strong=\"H4480\"* the|strong=\"H5921\"* ram, one|strong=\"H4480\"* unleavened|strong=\"H4682\"* cake|strong=\"H2471\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5921\"* basket|strong=\"H5536\"*, and|strong=\"H3548\"* one|strong=\"H4480\"* unleavened|strong=\"H4682\"* wafer|strong=\"H7550\"*, and|strong=\"H3548\"* shall|strong=\"H3548\"* put|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* hands|strong=\"H3709\"* of|strong=\"H4480\"* the|strong=\"H5921\"* Nazirite|strong=\"H5139\"* after|strong=\"H4480\"* he|strong=\"H5414\"* has|strong=\"H3548\"* shaved|strong=\"H1548\"* the|strong=\"H5921\"* head of|strong=\"H4480\"* his|strong=\"H5414\"* separation|strong=\"H5145\"*;" + }, + { + "verseNum": 20, + "text": "and|strong=\"H3068\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* wave|strong=\"H8573\"* them|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8641\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. They|strong=\"H3068\"* are|strong=\"H3068\"* holy|strong=\"H6944\"* for|strong=\"H5921\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*, together|strong=\"H5921\"* with|strong=\"H3068\"* the|strong=\"H6440\"* breast|strong=\"H2373\"* that|strong=\"H1931\"* is|strong=\"H3068\"* waved|strong=\"H5130\"* and|strong=\"H3068\"* the|strong=\"H6440\"* thigh|strong=\"H7785\"* that|strong=\"H1931\"* is|strong=\"H3068\"* offered|strong=\"H8641\"*. After|strong=\"H5921\"* that|strong=\"H1931\"* the|strong=\"H6440\"* Nazirite|strong=\"H5139\"* may|strong=\"H3068\"* drink|strong=\"H8354\"* wine|strong=\"H3196\"*." + }, + { + "verseNum": 21, + "text": "“‘This|strong=\"H2063\"* is|strong=\"H3068\"* the|strong=\"H5921\"* law|strong=\"H8451\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Nazirite|strong=\"H5139\"* who|strong=\"H3068\"* vows|strong=\"H5088\"* and|strong=\"H3068\"* of|strong=\"H3068\"* his|strong=\"H3068\"* offering|strong=\"H7133\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* for|strong=\"H5921\"* his|strong=\"H3068\"* separation|strong=\"H5145\"*, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H3068\"* that|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3651\"* is|strong=\"H3068\"* able|strong=\"H3027\"* to|strong=\"H3068\"* afford|strong=\"H3027\"*. According|strong=\"H5921\"* to|strong=\"H3068\"* his|strong=\"H3068\"* vow|strong=\"H5088\"* which|strong=\"H3068\"* he|strong=\"H3651\"* vows|strong=\"H5088\"*, so|strong=\"H3651\"* he|strong=\"H3651\"* must do|strong=\"H6213\"* after|strong=\"H5921\"* the|strong=\"H5921\"* law|strong=\"H8451\"* of|strong=\"H3068\"* his|strong=\"H3068\"* separation|strong=\"H5145\"*.’”" + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 23, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* Aaron and|strong=\"H1121\"* to|strong=\"H1696\"* his|strong=\"H1288\"* sons|strong=\"H1121\"*, saying|strong=\"H1696\"*, ‘This|strong=\"H3541\"* is|strong=\"H3478\"* how you|strong=\"H1288\"* shall|strong=\"H1121\"* bless|strong=\"H1288\"* the|strong=\"H3541\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.’ You|strong=\"H1288\"* shall|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H1121\"*," + }, + { + "verseNum": 24, + "text": "‘Yahweh|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H1288\"*, and|strong=\"H3068\"* keep|strong=\"H8104\"* you|strong=\"H1288\"*." + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* make|strong=\"H2603\"* his|strong=\"H3068\"* face|strong=\"H6440\"* to|strong=\"H3068\"* shine on|strong=\"H3068\"* you|strong=\"H6440\"*," + }, + { + "verseNum": 26, + "text": "Yahweh|strong=\"H3068\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* face|strong=\"H6440\"* toward|strong=\"H6440\"* you|strong=\"H6440\"*," + }, + { + "verseNum": 27, + "text": "“So|strong=\"H7760\"* they|strong=\"H5921\"* shall|strong=\"H1121\"* put|strong=\"H7760\"* my|strong=\"H7760\"* name|strong=\"H8034\"* on|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* I|strong=\"H5921\"* will|strong=\"H3478\"* bless|strong=\"H1288\"* them|strong=\"H5921\"*.”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "On|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3605\"* Moses|strong=\"H4872\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* setting|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*, and|strong=\"H6965\"* had|strong=\"H1961\"* anointed|strong=\"H4886\"* it|strong=\"H1961\"* and|strong=\"H6965\"* sanctified|strong=\"H6942\"* it|strong=\"H1961\"* with|strong=\"H3117\"* all|strong=\"H3605\"* its|strong=\"H3605\"* furniture|strong=\"H3627\"*, and|strong=\"H6965\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* with|strong=\"H3117\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, and|strong=\"H6965\"* had|strong=\"H1961\"* anointed|strong=\"H4886\"* and|strong=\"H6965\"* sanctified|strong=\"H6942\"* them|strong=\"H3615\"*;" + }, + { + "verseNum": 2, + "text": "the|strong=\"H5921\"* princes|strong=\"H5387\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, the|strong=\"H5921\"* heads|strong=\"H7218\"* of|strong=\"H1004\"* their|strong=\"H1992\"* fathers’ houses|strong=\"H1004\"*, gave|strong=\"H6485\"* offerings|strong=\"H3478\"*. These|strong=\"H1992\"* were|strong=\"H3478\"* the|strong=\"H5921\"* princes|strong=\"H5387\"* of|strong=\"H1004\"* the|strong=\"H5921\"* tribes|strong=\"H4294\"*. These|strong=\"H1992\"* are|strong=\"H1992\"* they|strong=\"H1992\"* who|strong=\"H3478\"* were|strong=\"H3478\"* over|strong=\"H5921\"* those|strong=\"H1992\"* who|strong=\"H3478\"* were|strong=\"H3478\"* counted|strong=\"H6485\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H3068\"* they|strong=\"H3068\"* brought|strong=\"H7126\"* their|strong=\"H3068\"* offering|strong=\"H7133\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, six|strong=\"H8337\"* covered|strong=\"H6632\"* wagons|strong=\"H5699\"* and|strong=\"H3068\"* twelve|strong=\"H8147\"* oxen|strong=\"H1241\"*; a|strong=\"H3068\"* wagon|strong=\"H5699\"* for|strong=\"H5921\"* every|strong=\"H3068\"* two|strong=\"H8147\"* of|strong=\"H3068\"* the|strong=\"H6440\"* princes|strong=\"H5387\"*, and|strong=\"H3068\"* for|strong=\"H5921\"* each|strong=\"H8147\"* one|strong=\"H8147\"* an|strong=\"H7126\"* ox|strong=\"H7794\"*. They|strong=\"H3068\"* presented|strong=\"H7126\"* them|strong=\"H5921\"* before|strong=\"H6440\"* the|strong=\"H6440\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"*, saying," + }, + { + "verseNum": 5, + "text": "“Accept|strong=\"H3947\"* these|strong=\"H3947\"* from|strong=\"H3947\"* them|strong=\"H5414\"*, that|strong=\"H5414\"* they|strong=\"H6310\"* may|strong=\"H1961\"* be|strong=\"H1961\"* used|strong=\"H1961\"* in|strong=\"H5414\"* doing the|strong=\"H5414\"* service|strong=\"H5656\"* of|strong=\"H6310\"* the|strong=\"H5414\"* Tent of|strong=\"H6310\"* Meeting|strong=\"H4150\"*; and|strong=\"H6310\"* you|strong=\"H5414\"* shall|strong=\"H3881\"* give|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H1961\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"*, to|strong=\"H1961\"* every|strong=\"H3947\"* man|strong=\"H5647\"* according|strong=\"H6310\"* to|strong=\"H1961\"* his|strong=\"H5414\"* service|strong=\"H5656\"*.”" + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* the|strong=\"H5414\"* wagons|strong=\"H5699\"* and|strong=\"H4872\"* the|strong=\"H5414\"* oxen|strong=\"H1241\"*, and|strong=\"H4872\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H5414\"* gave|strong=\"H5414\"* two|strong=\"H8147\"* wagons|strong=\"H5699\"* and|strong=\"H1121\"* four oxen|strong=\"H1241\"* to|strong=\"H5414\"* the|strong=\"H5414\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershon|strong=\"H1648\"*, according|strong=\"H6310\"* to|strong=\"H5414\"* their|strong=\"H5414\"* service|strong=\"H5656\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H5414\"* gave|strong=\"H5414\"* four wagons|strong=\"H5699\"* and|strong=\"H1121\"* eight|strong=\"H8083\"* oxen|strong=\"H1241\"* to|strong=\"H5414\"* the|strong=\"H5414\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, according|strong=\"H6310\"* to|strong=\"H5414\"* their|strong=\"H5414\"* service|strong=\"H5656\"*, under|strong=\"H3027\"* the|strong=\"H5414\"* direction|strong=\"H3027\"* of|strong=\"H1121\"* Ithamar the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H5414\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H3588\"* to|strong=\"H5921\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"* he|strong=\"H3588\"* gave|strong=\"H5414\"* none|strong=\"H3808\"*, because|strong=\"H3588\"* the|strong=\"H5921\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sanctuary|strong=\"H6944\"* belonged to|strong=\"H5921\"* them|strong=\"H5414\"*; they|strong=\"H3588\"* carried|strong=\"H5375\"* it|strong=\"H5414\"* on|strong=\"H5921\"* their|strong=\"H5375\"* shoulders|strong=\"H3802\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H6440\"* princes|strong=\"H5387\"* gave offerings|strong=\"H7133\"* for|strong=\"H6440\"* the|strong=\"H6440\"* dedication|strong=\"H2598\"* of|strong=\"H3117\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* in|strong=\"H3117\"* the|strong=\"H6440\"* day|strong=\"H3117\"* that|strong=\"H3117\"* it|strong=\"H7126\"* was|strong=\"H3117\"* anointed|strong=\"H4886\"*. The|strong=\"H6440\"* princes|strong=\"H5387\"* gave their|strong=\"H6440\"* offerings|strong=\"H7133\"* before|strong=\"H6440\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “They|strong=\"H3117\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* their|strong=\"H3068\"* offering|strong=\"H7133\"*, each|strong=\"H3117\"* prince|strong=\"H5387\"* on|strong=\"H3117\"* his|strong=\"H3068\"* day|strong=\"H3117\"*, for|strong=\"H3068\"* the|strong=\"H3068\"* dedication|strong=\"H2598\"* of|strong=\"H3068\"* the|strong=\"H3068\"* altar|strong=\"H4196\"*.”" + }, + { + "verseNum": 12, + "text": "He|strong=\"H3117\"* who|strong=\"H1121\"* offered|strong=\"H7126\"* his|strong=\"H7126\"* offering|strong=\"H7133\"* the|strong=\"H3117\"* first|strong=\"H7223\"* day|strong=\"H3117\"* was|strong=\"H1961\"* Nahshon|strong=\"H5177\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amminadab|strong=\"H5992\"*, of|strong=\"H1121\"* the|strong=\"H3117\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*," + }, + { + "verseNum": 13, + "text": "and|strong=\"H3967\"* his|strong=\"H8147\"* offering|strong=\"H4503\"* was|strong=\"H4948\"*:" + }, + { + "verseNum": 14, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 15, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 16, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 17, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Nahshon|strong=\"H5177\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amminadab|strong=\"H5992\"*." + }, + { + "verseNum": 18, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* second|strong=\"H8145\"* day|strong=\"H3117\"* Nethanel|strong=\"H5417\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zuar|strong=\"H6686\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"*, gave his|strong=\"H7126\"* offering|strong=\"H7126\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H8147\"* offered|strong=\"H7126\"* for|strong=\"H3701\"* his|strong=\"H7126\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 20, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 21, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 22, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 23, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Nethanel|strong=\"H5417\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zuar|strong=\"H6686\"*." + }, + { + "verseNum": 24, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* third|strong=\"H7992\"* day|strong=\"H3117\"* Eliab the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Helon|strong=\"H2497\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*," + }, + { + "verseNum": 25, + "text": "gave|strong=\"H1101\"* his|strong=\"H8147\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 26, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 27, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 28, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 29, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Eliab the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Helon|strong=\"H2497\"*." + }, + { + "verseNum": 30, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* fourth|strong=\"H7243\"* day|strong=\"H3117\"* Elizur the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shedeur|strong=\"H7707\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*," + }, + { + "verseNum": 31, + "text": "gave|strong=\"H1101\"* his|strong=\"H8147\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 32, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 33, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 34, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 35, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Elizur the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shedeur|strong=\"H7707\"*." + }, + { + "verseNum": 36, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* fifth|strong=\"H2549\"* day|strong=\"H3117\"* Shelumiel|strong=\"H8017\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zurishaddai|strong=\"H6701\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*," + }, + { + "verseNum": 37, + "text": "gave|strong=\"H1101\"* his|strong=\"H8147\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 38, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 39, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 40, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 41, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*: this|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Shelumiel|strong=\"H8017\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zurishaddai|strong=\"H6701\"*." + }, + { + "verseNum": 42, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* sixth|strong=\"H8345\"* day|strong=\"H3117\"*, Eliasaph the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Deuel|strong=\"H1845\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*," + }, + { + "verseNum": 43, + "text": "gave|strong=\"H1101\"* his|strong=\"H8147\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 44, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 45, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 46, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 47, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Eliasaph the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Deuel|strong=\"H1845\"*." + }, + { + "verseNum": 48, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* Elishama the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammihud|strong=\"H5989\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim," + }, + { + "verseNum": 49, + "text": "gave|strong=\"H1101\"* his|strong=\"H8147\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 50, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 51, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 52, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 53, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Elishama the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammihud|strong=\"H5989\"*." + }, + { + "verseNum": 54, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* Gamaliel|strong=\"H1583\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pedahzur|strong=\"H6301\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*," + }, + { + "verseNum": 55, + "text": "gave|strong=\"H1101\"* his|strong=\"H8147\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 56, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 57, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 58, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 59, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Gamaliel|strong=\"H1583\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pedahzur|strong=\"H6301\"*." + }, + { + "verseNum": 60, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* ninth|strong=\"H8671\"* day|strong=\"H3117\"* Abidan the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gideoni|strong=\"H1441\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*," + }, + { + "verseNum": 61, + "text": "gave|strong=\"H1101\"* his|strong=\"H8147\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 62, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 63, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 64, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 65, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Abidan the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gideoni|strong=\"H1441\"*." + }, + { + "verseNum": 66, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* tenth|strong=\"H6224\"* day|strong=\"H3117\"* Ahiezer the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammishaddai|strong=\"H5996\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*," + }, + { + "verseNum": 67, + "text": "gave|strong=\"H1101\"* his|strong=\"H8147\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 68, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 69, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 70, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 71, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Ahiezer the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammishaddai|strong=\"H5996\"*." + }, + { + "verseNum": 72, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* eleventh|strong=\"H6249\"* day|strong=\"H3117\"* Pagiel|strong=\"H6295\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ochran|strong=\"H5918\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asher," + }, + { + "verseNum": 73, + "text": "gave|strong=\"H1101\"* his|strong=\"H8147\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 74, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 75, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 76, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 77, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Pagiel|strong=\"H6295\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ochran|strong=\"H5918\"*." + }, + { + "verseNum": 78, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* twelfth|strong=\"H8147\"* day|strong=\"H3117\"* Ahira the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Enan|strong=\"H5881\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*," + }, + { + "verseNum": 79, + "text": "gave|strong=\"H1101\"* his|strong=\"H8147\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 80, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 81, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 82, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 83, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Ahira the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Enan|strong=\"H5881\"*." + }, + { + "verseNum": 84, + "text": "This|strong=\"H2063\"* was|strong=\"H3478\"* the|strong=\"H3117\"* dedication|strong=\"H2598\"* offering of|strong=\"H3117\"* the|strong=\"H3117\"* altar|strong=\"H4196\"*, on|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* when|strong=\"H3117\"* it|strong=\"H2063\"* was|strong=\"H3478\"* anointed|strong=\"H4886\"*, by|strong=\"H3117\"* the|strong=\"H3117\"* princes|strong=\"H5387\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*: twelve|strong=\"H8147\"* silver|strong=\"H3701\"* platters|strong=\"H7086\"*, twelve|strong=\"H8147\"* silver|strong=\"H3701\"* bowls|strong=\"H4219\"*, twelve|strong=\"H8147\"* golden|strong=\"H2091\"* ladles|strong=\"H3709\"*;" + }, + { + "verseNum": 85, + "text": "each|strong=\"H3605\"* silver|strong=\"H3701\"* platter|strong=\"H7086\"* weighing one|strong=\"H3605\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"* shekels|strong=\"H8255\"*, and|strong=\"H3967\"* each|strong=\"H3605\"* bowl|strong=\"H4219\"* seventy|strong=\"H7657\"*; all|strong=\"H3605\"* the|strong=\"H3605\"* silver|strong=\"H3701\"* of|strong=\"H3627\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* two|strong=\"H3967\"* thousand four hundred|strong=\"H3967\"* shekels|strong=\"H8255\"*, according|strong=\"H3701\"* to|strong=\"H3701\"* the|strong=\"H3605\"* shekel|strong=\"H8255\"* of|strong=\"H3627\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*;" + }, + { + "verseNum": 86, + "text": "the|strong=\"H3605\"* twelve|strong=\"H8147\"* golden|strong=\"H2091\"* ladles|strong=\"H3709\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*, weighing|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H8255\"* apiece|strong=\"H6235\"*, according to|strong=\"H6242\"* the|strong=\"H3605\"* shekel|strong=\"H8255\"* of|strong=\"H4392\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*; all|strong=\"H3605\"* the|strong=\"H3605\"* gold|strong=\"H2091\"* of|strong=\"H4392\"* the|strong=\"H3605\"* ladles|strong=\"H3709\"* weighed one|strong=\"H3605\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* shekels|strong=\"H8255\"*;" + }, + { + "verseNum": 87, + "text": "all|strong=\"H3605\"* the|strong=\"H3605\"* cattle|strong=\"H1241\"* for|strong=\"H1121\"* the|strong=\"H3605\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* twelve|strong=\"H8147\"* bulls|strong=\"H6499\"*, the|strong=\"H3605\"* rams twelve|strong=\"H8147\"*, the|strong=\"H3605\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* twelve|strong=\"H8147\"*, and|strong=\"H1121\"* their|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*; and|strong=\"H1121\"* twelve|strong=\"H8147\"* male|strong=\"H3532\"* goats|strong=\"H5795\"* for|strong=\"H1121\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*;" + }, + { + "verseNum": 88, + "text": "and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cattle|strong=\"H1241\"* for|strong=\"H4196\"* the|strong=\"H3605\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*: twenty-four|strong=\"H6242\"* bulls|strong=\"H6499\"*, sixty|strong=\"H8346\"* rams|strong=\"H6260\"*, sixty|strong=\"H8346\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* sixty|strong=\"H8346\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2063\"* was|strong=\"H1121\"* the|strong=\"H3605\"* dedication|strong=\"H2598\"* offering|strong=\"H8002\"* of|strong=\"H1121\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, after|strong=\"H8141\"* it|strong=\"H2063\"* was|strong=\"H1121\"* anointed|strong=\"H4886\"*." + }, + { + "verseNum": 89, + "text": "When|strong=\"H8085\"* Moses|strong=\"H4872\"* went|strong=\"H4872\"* into|strong=\"H5921\"* the|strong=\"H5921\"* Tent of|strong=\"H6963\"* Meeting|strong=\"H4150\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* with|strong=\"H1696\"* Yahweh|strong=\"H3068\"*, he|strong=\"H8147\"* heard|strong=\"H8085\"* his|strong=\"H8085\"* voice|strong=\"H6963\"* speaking|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"* from|strong=\"H5921\"* above|strong=\"H5921\"* the|strong=\"H5921\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* that|strong=\"H8085\"* was|strong=\"H4872\"* on|strong=\"H5921\"* the|strong=\"H5921\"* ark of|strong=\"H6963\"* the|strong=\"H5921\"* Testimony|strong=\"H5715\"*, from|strong=\"H5921\"* between|strong=\"H6963\"* the|strong=\"H5921\"* two|strong=\"H8147\"* cherubim|strong=\"H3742\"*; and|strong=\"H4872\"* he|strong=\"H8147\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* Aaron, and|strong=\"H6440\"* tell|strong=\"H1696\"* him|strong=\"H6440\"*, ‘When|strong=\"H1696\"* you|strong=\"H6440\"* light|strong=\"H5216\"* the|strong=\"H6440\"* lamps|strong=\"H5216\"*, the|strong=\"H6440\"* seven|strong=\"H7651\"* lamps|strong=\"H5216\"* shall|strong=\"H6440\"* give|strong=\"H1696\"* light|strong=\"H5216\"* in|strong=\"H1696\"* front|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* lamp|strong=\"H5216\"* stand.’”" + }, + { + "verseNum": 3, + "text": "Aaron did|strong=\"H6213\"* so|strong=\"H3651\"*. He|strong=\"H3651\"* lit its|strong=\"H6213\"* lamps|strong=\"H5216\"* to|strong=\"H3068\"* light|strong=\"H5216\"* the|strong=\"H6440\"* area in|strong=\"H3068\"* front|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* lamp|strong=\"H5216\"* stand, as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 4, + "text": "This|strong=\"H2088\"* was|strong=\"H3068\"* the|strong=\"H7200\"* workmanship|strong=\"H4639\"* of|strong=\"H3068\"* the|strong=\"H7200\"* lamp stand, beaten|strong=\"H4749\"* work|strong=\"H4639\"* of|strong=\"H3068\"* gold|strong=\"H2091\"*. From|strong=\"H5704\"* its|strong=\"H6213\"* base|strong=\"H3409\"* to|strong=\"H5704\"* its|strong=\"H6213\"* flowers|strong=\"H6525\"*, it|strong=\"H1931\"* was|strong=\"H3068\"* beaten|strong=\"H4749\"* work|strong=\"H4639\"*. He|strong=\"H1931\"* made|strong=\"H6213\"* the|strong=\"H7200\"* lamp stand according to|strong=\"H5704\"* the|strong=\"H7200\"* pattern|strong=\"H4758\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* shown|strong=\"H7200\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 6, + "text": "“Take|strong=\"H3947\"* the|strong=\"H3947\"* Levites|strong=\"H3881\"* from|strong=\"H3478\"* among|strong=\"H8432\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* cleanse|strong=\"H2891\"* them|strong=\"H3947\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H3605\"* shall|strong=\"H4325\"* do|strong=\"H6213\"* this|strong=\"H6213\"* to|strong=\"H6213\"* them|strong=\"H5921\"* to|strong=\"H6213\"* cleanse|strong=\"H2891\"* them|strong=\"H5921\"*: sprinkle|strong=\"H5137\"* the|strong=\"H3605\"* water|strong=\"H4325\"* of|strong=\"H4325\"* cleansing|strong=\"H2891\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, let them|strong=\"H5921\"* shave|strong=\"H8593\"* their|strong=\"H3605\"* whole|strong=\"H3605\"* bodies|strong=\"H1320\"* with|strong=\"H6213\"* a|strong=\"H3068\"* razor|strong=\"H8593\"*, let them|strong=\"H5921\"* wash|strong=\"H3526\"* their|strong=\"H3605\"* clothes, and|strong=\"H6213\"* cleanse|strong=\"H2891\"* themselves|strong=\"H6213\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H3947\"* let them|strong=\"H3947\"* take|strong=\"H3947\"* a|strong=\"H3068\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* and|strong=\"H1121\"* its|strong=\"H3947\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*; and|strong=\"H1121\"* another|strong=\"H8145\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* you|strong=\"H3947\"* shall|strong=\"H1121\"* take|strong=\"H3947\"* for|strong=\"H1121\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H6440\"* shall|strong=\"H1121\"* present|strong=\"H7126\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* before|strong=\"H6440\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*. You|strong=\"H6440\"* shall|strong=\"H1121\"* assemble|strong=\"H6950\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* present|strong=\"H7126\"* the|strong=\"H6440\"* Levites|strong=\"H3881\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. The|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H3068\"* lay|strong=\"H5564\"* their|strong=\"H3068\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H6440\"* Levites|strong=\"H3881\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H1121\"* Aaron shall|strong=\"H3068\"* offer|strong=\"H5130\"* the|strong=\"H6440\"* Levites|strong=\"H3881\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* for|strong=\"H6440\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* on|strong=\"H3068\"* the|strong=\"H6440\"* behalf of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H3068\"* it|strong=\"H6440\"* may|strong=\"H1961\"* be|strong=\"H1961\"* theirs to|strong=\"H3478\"* do|strong=\"H5647\"* the|strong=\"H6440\"* service|strong=\"H5656\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "“The|strong=\"H5921\"* Levites|strong=\"H3881\"* shall|strong=\"H3068\"* lay|strong=\"H5564\"* their|strong=\"H3068\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* heads|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H5921\"* bulls|strong=\"H6499\"*, and|strong=\"H3068\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* offer|strong=\"H6213\"* the|strong=\"H5921\"* one|strong=\"H6213\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* and|strong=\"H3068\"* the|strong=\"H5921\"* other for|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* set|strong=\"H5975\"* the|strong=\"H6440\"* Levites|strong=\"H3881\"* before|strong=\"H6440\"* Aaron and|strong=\"H1121\"* before|strong=\"H6440\"* his|strong=\"H3068\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* offer|strong=\"H5130\"* them|strong=\"H6440\"* as|strong=\"H3068\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "Thus|strong=\"H1961\"* you|strong=\"H8432\"* shall|strong=\"H1121\"* separate the|strong=\"H8432\"* Levites|strong=\"H3881\"* from|strong=\"H3478\"* among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* the|strong=\"H8432\"* Levites|strong=\"H3881\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* mine|strong=\"H3478\"*." + }, + { + "verseNum": 15, + "text": "“After that|strong=\"H3651\"*, the|strong=\"H5647\"* Levites|strong=\"H3881\"* shall|strong=\"H3881\"* go|strong=\"H3881\"* in|strong=\"H3881\"* to|strong=\"H4150\"* do|strong=\"H5647\"* the|strong=\"H5647\"* service|strong=\"H5647\"* of|strong=\"H5647\"* the|strong=\"H5647\"* Tent of|strong=\"H5647\"* Meeting|strong=\"H4150\"*. You|strong=\"H3651\"* shall|strong=\"H3881\"* cleanse|strong=\"H2891\"* them|strong=\"H5130\"*, and|strong=\"H3881\"* offer|strong=\"H5130\"* them|strong=\"H5130\"* as|strong=\"H3651\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* wholly|strong=\"H5414\"* given|strong=\"H5414\"* to|strong=\"H3478\"* me|strong=\"H5414\"* from|strong=\"H3478\"* among|strong=\"H8432\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; instead|strong=\"H8478\"* of|strong=\"H1121\"* all|strong=\"H3605\"* who|strong=\"H3605\"* open|strong=\"H6363\"* the|strong=\"H3605\"* womb|strong=\"H7358\"*, even|strong=\"H3588\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, I|strong=\"H3588\"* have|strong=\"H1121\"* taken|strong=\"H3947\"* them|strong=\"H5414\"* to|strong=\"H3478\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* among|strong=\"H1060\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* are|strong=\"H3117\"* mine|strong=\"H3478\"*, both|strong=\"H3605\"* man|strong=\"H1121\"* and|strong=\"H1121\"* animal. On|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3588\"* I|strong=\"H3588\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* in|strong=\"H3478\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, I|strong=\"H3588\"* sanctified|strong=\"H6942\"* them|strong=\"H5221\"* for|strong=\"H3588\"* myself|strong=\"H6942\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H1121\"* have|strong=\"H1121\"* taken|strong=\"H3947\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* among|strong=\"H8478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"H5414\"* have|strong=\"H1961\"* given|strong=\"H5414\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* as|strong=\"H1961\"* a|strong=\"H3068\"* gift|strong=\"H5414\"* to|strong=\"H3478\"* Aaron and|strong=\"H1121\"* to|strong=\"H3478\"* his|strong=\"H5414\"* sons|strong=\"H1121\"* from|strong=\"H5921\"* among|strong=\"H8432\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* do|strong=\"H5647\"* the|strong=\"H5921\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* the|strong=\"H5921\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, so|strong=\"H1961\"* that|strong=\"H3478\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3808\"* plague|strong=\"H5063\"* among|strong=\"H8432\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* when|strong=\"H1961\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* come|strong=\"H1961\"* near|strong=\"H5066\"* to|strong=\"H3478\"* the|strong=\"H5921\"* sanctuary|strong=\"H6944\"*.”" + }, + { + "verseNum": 20, + "text": "Moses|strong=\"H4872\"*, and|strong=\"H1121\"* Aaron, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* so|strong=\"H3651\"* to|strong=\"H3478\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*. According to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"* concerning|strong=\"H3068\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, so|strong=\"H3651\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* to|strong=\"H3478\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H6440\"* Levites|strong=\"H3881\"* purified|strong=\"H2891\"* themselves|strong=\"H2891\"* from|strong=\"H6440\"* sin|strong=\"H2398\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* washed|strong=\"H3526\"* their|strong=\"H3068\"* clothes; and|strong=\"H3068\"* Aaron offered|strong=\"H5130\"* them|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* Aaron made|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H3068\"* cleanse|strong=\"H2891\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 22, + "text": "After|strong=\"H5921\"* that|strong=\"H3068\"*, the|strong=\"H6440\"* Levites|strong=\"H3881\"* went|strong=\"H4872\"* in|strong=\"H5921\"* to|strong=\"H3068\"* do|strong=\"H6213\"* their|strong=\"H3068\"* service|strong=\"H5656\"* in|strong=\"H5921\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"* before|strong=\"H6440\"* Aaron and|strong=\"H1121\"* before|strong=\"H6440\"* his|strong=\"H3068\"* sons|strong=\"H1121\"*: as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"* concerning|strong=\"H5921\"* the|strong=\"H6440\"* Levites|strong=\"H3881\"*, so|strong=\"H3651\"* they|strong=\"H3651\"* did|strong=\"H6213\"* to|strong=\"H3068\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 24, + "text": "“This|strong=\"H2063\"* is|strong=\"H1121\"* what|strong=\"H2063\"* is|strong=\"H1121\"* assigned|strong=\"H5656\"* to|strong=\"H1121\"* the|strong=\"H1121\"* Levites|strong=\"H3881\"*: from|strong=\"H1121\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"* they|strong=\"H8141\"* shall|strong=\"H1121\"* go|strong=\"H3881\"* in|strong=\"H8141\"* to|strong=\"H1121\"* wait|strong=\"H6633\"* on|strong=\"H6635\"* the|strong=\"H1121\"* service|strong=\"H5656\"* in|strong=\"H8141\"* the|strong=\"H1121\"* work|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*;" + }, + { + "verseNum": 25, + "text": "and|strong=\"H1121\"* from|strong=\"H7725\"* the|strong=\"H5647\"* age|strong=\"H1121\"* of|strong=\"H1121\"* fifty|strong=\"H2572\"* years|strong=\"H8141\"* they|strong=\"H3808\"* shall|strong=\"H1121\"* retire|strong=\"H7725\"* from|strong=\"H7725\"* doing the|strong=\"H5647\"* work|strong=\"H5656\"*, and|strong=\"H1121\"* shall|strong=\"H1121\"* serve|strong=\"H5647\"* no|strong=\"H3808\"* more|strong=\"H5750\"*," + }, + { + "verseNum": 26, + "text": "but|strong=\"H3808\"* shall|strong=\"H3881\"* assist|strong=\"H8334\"* their|strong=\"H5647\"* brothers in|strong=\"H6213\"* the|strong=\"H6213\"* Tent of|strong=\"H6213\"* Meeting|strong=\"H4150\"*, to|strong=\"H6213\"* perform|strong=\"H6213\"* the|strong=\"H6213\"* duty|strong=\"H4931\"*, and|strong=\"H6213\"* shall|strong=\"H3881\"* perform|strong=\"H6213\"* no|strong=\"H3808\"* service|strong=\"H5656\"*. This|strong=\"H6213\"* is|strong=\"H6213\"* how|strong=\"H6213\"* you|strong=\"H6213\"* shall|strong=\"H3881\"* have|strong=\"H3808\"* the|strong=\"H6213\"* Levites|strong=\"H3881\"* do|strong=\"H6213\"* their|strong=\"H5647\"* duties|strong=\"H4931\"*.”" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* in|strong=\"H8141\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"* of|strong=\"H3068\"* Sinai|strong=\"H5514\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* first|strong=\"H7223\"* month|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* second|strong=\"H8145\"* year|strong=\"H8141\"* after|strong=\"H3318\"* they|strong=\"H3068\"* had|strong=\"H3068\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Let the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* keep|strong=\"H6213\"* the|strong=\"H6213\"* Passover|strong=\"H6453\"* in|strong=\"H3478\"* its|strong=\"H6213\"* appointed|strong=\"H4150\"* season|strong=\"H4150\"*." + }, + { + "verseNum": 3, + "text": "On|strong=\"H3117\"* the|strong=\"H3605\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* of|strong=\"H3117\"* this|strong=\"H2088\"* month|strong=\"H2320\"*, at|strong=\"H2320\"* evening|strong=\"H6153\"*, you|strong=\"H3605\"* shall|strong=\"H3117\"* keep|strong=\"H6213\"* it|strong=\"H6213\"* in|strong=\"H6213\"* its|strong=\"H3605\"* appointed|strong=\"H4150\"* season|strong=\"H4150\"*. You|strong=\"H3605\"* shall|strong=\"H3117\"* keep|strong=\"H6213\"* it|strong=\"H6213\"* according|strong=\"H4941\"* to|strong=\"H6213\"* all|strong=\"H3605\"* its|strong=\"H3605\"* statutes|strong=\"H2708\"* and|strong=\"H3117\"* according|strong=\"H4941\"* to|strong=\"H6213\"* all|strong=\"H3605\"* its|strong=\"H3605\"* ordinances|strong=\"H4941\"*.”" + }, + { + "verseNum": 4, + "text": "Moses|strong=\"H4872\"* told|strong=\"H1696\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* that|strong=\"H3478\"* they|strong=\"H6213\"* should|strong=\"H3478\"* keep|strong=\"H6213\"* the|strong=\"H6213\"* Passover|strong=\"H6453\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3117\"* kept|strong=\"H6213\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"* in|strong=\"H3478\"* the|strong=\"H3605\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, on|strong=\"H3117\"* the|strong=\"H3605\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H3605\"* month|strong=\"H2320\"* at|strong=\"H3478\"* evening|strong=\"H6153\"*, in|strong=\"H3478\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Sinai|strong=\"H5514\"*. According to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*, so|strong=\"H3651\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"*." + }, + { + "verseNum": 6, + "text": "There|strong=\"H1961\"* were|strong=\"H1961\"* certain men|strong=\"H6213\"* who|strong=\"H1931\"* were|strong=\"H1961\"* unclean|strong=\"H2931\"* because|strong=\"H6440\"* of|strong=\"H3117\"* the|strong=\"H6440\"* dead|strong=\"H5315\"* body|strong=\"H5315\"* of|strong=\"H3117\"* a|strong=\"H3068\"* man|strong=\"H5315\"*, so|strong=\"H6213\"* that|strong=\"H3117\"* they|strong=\"H3117\"* could|strong=\"H3201\"* not|strong=\"H3808\"* keep|strong=\"H6213\"* the|strong=\"H6440\"* Passover|strong=\"H6453\"* on|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, and|strong=\"H4872\"* they|strong=\"H3117\"* came|strong=\"H1961\"* before|strong=\"H6440\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron on|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 7, + "text": "Those|strong=\"H1992\"* men|strong=\"H1121\"* said to|strong=\"H3478\"* him|strong=\"H5315\"*, “We|strong=\"H5315\"* are|strong=\"H1992\"* unclean|strong=\"H2931\"* because|strong=\"H1115\"* of|strong=\"H1121\"* the|strong=\"H8432\"* dead|strong=\"H5315\"* body|strong=\"H5315\"* of|strong=\"H1121\"* a|strong=\"H3068\"* man|strong=\"H1121\"*. Why|strong=\"H4100\"* are|strong=\"H1992\"* we|strong=\"H3068\"* kept back|strong=\"H1639\"*, that|strong=\"H5315\"* we|strong=\"H3068\"* may|strong=\"H3068\"* not|strong=\"H1115\"* offer|strong=\"H7126\"* the|strong=\"H8432\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* in|strong=\"H3478\"* its appointed|strong=\"H4150\"* season|strong=\"H4150\"* among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*?”" + }, + { + "verseNum": 8, + "text": "Moses|strong=\"H4872\"* answered|strong=\"H8085\"* them|strong=\"H5975\"*, “Wait|strong=\"H5975\"*, that|strong=\"H8085\"* I|strong=\"H6680\"* may|strong=\"H3068\"* hear|strong=\"H8085\"* what|strong=\"H4100\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* command|strong=\"H6680\"* concerning|strong=\"H3068\"* you|strong=\"H6680\"*.”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 10, + "text": "“Say|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, ‘If|strong=\"H3588\"* any|strong=\"H6213\"* man|strong=\"H1121\"* of|strong=\"H1121\"* you|strong=\"H3588\"* or|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H3068\"* generations|strong=\"H1755\"* is|strong=\"H3068\"* unclean|strong=\"H2931\"* by|strong=\"H3068\"* reason of|strong=\"H1121\"* a|strong=\"H3068\"* dead|strong=\"H5315\"* body|strong=\"H5315\"*, or|strong=\"H1121\"* is|strong=\"H3068\"* on|strong=\"H1870\"* a|strong=\"H3068\"* journey|strong=\"H1870\"* far|strong=\"H7350\"* away|strong=\"H1870\"*, he|strong=\"H3588\"* shall|strong=\"H3068\"* still|strong=\"H3588\"* keep|strong=\"H6213\"* the|strong=\"H3588\"* Passover|strong=\"H6453\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* second|strong=\"H8145\"* month|strong=\"H2320\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* at|strong=\"H5921\"* evening|strong=\"H6153\"* they|strong=\"H3117\"* shall|strong=\"H3117\"* keep|strong=\"H6213\"* it|strong=\"H5921\"*; they|strong=\"H3117\"* shall|strong=\"H3117\"* eat it|strong=\"H5921\"* with|strong=\"H6213\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* and|strong=\"H3117\"* bitter|strong=\"H4844\"* herbs|strong=\"H4844\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3808\"* shall|strong=\"H3808\"* leave|strong=\"H7604\"* none|strong=\"H3808\"* of|strong=\"H4480\"* it|strong=\"H6213\"* until|strong=\"H5704\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*, nor|strong=\"H3808\"* break|strong=\"H7665\"* a|strong=\"H3068\"* bone|strong=\"H6106\"* of|strong=\"H4480\"* it|strong=\"H6213\"*. According|strong=\"H4480\"* to|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* statute|strong=\"H2708\"* of|strong=\"H4480\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"* they|strong=\"H3808\"* shall|strong=\"H3808\"* keep|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* man|strong=\"H5315\"* who|strong=\"H1931\"* is|strong=\"H3068\"* clean|strong=\"H2889\"*, and|strong=\"H3068\"* is|strong=\"H3068\"* not|strong=\"H3808\"* on|strong=\"H1870\"* a|strong=\"H3068\"* journey|strong=\"H1870\"*, and|strong=\"H3068\"* fails to|strong=\"H3068\"* keep|strong=\"H6213\"* the|strong=\"H3588\"* Passover|strong=\"H6453\"*, that|strong=\"H3588\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* his|strong=\"H5375\"* people|strong=\"H5971\"*. Because|strong=\"H3588\"* he|strong=\"H1931\"* didn’t offer|strong=\"H7126\"* the|strong=\"H3588\"* offering|strong=\"H7133\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* its|strong=\"H6213\"* appointed|strong=\"H4150\"* season|strong=\"H4150\"*, that|strong=\"H3588\"* man|strong=\"H5315\"* shall|strong=\"H3068\"* bear|strong=\"H5375\"* his|strong=\"H5375\"* sin|strong=\"H2399\"*." + }, + { + "verseNum": 14, + "text": "“‘If|strong=\"H3588\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"* lives|strong=\"H1481\"* among you|strong=\"H3588\"* and|strong=\"H3068\"* desires to|strong=\"H3068\"* keep|strong=\"H6213\"* the|strong=\"H3588\"* Passover|strong=\"H6453\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, then|strong=\"H1961\"* he|strong=\"H3588\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* so|strong=\"H3651\"* according|strong=\"H4941\"* to|strong=\"H3068\"* the|strong=\"H3588\"* statute|strong=\"H2708\"* of|strong=\"H3068\"* the|strong=\"H3588\"* Passover|strong=\"H6453\"*, and|strong=\"H3068\"* according|strong=\"H4941\"* to|strong=\"H3068\"* its|strong=\"H6213\"* ordinance|strong=\"H4941\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* have|strong=\"H1961\"* one|strong=\"H1961\"* statute|strong=\"H2708\"*, both for|strong=\"H3588\"* the|strong=\"H3588\"* foreigner|strong=\"H1616\"* and|strong=\"H3068\"* for|strong=\"H3588\"* him|strong=\"H6213\"* who|strong=\"H3068\"* is|strong=\"H3068\"* born in|strong=\"H3068\"* the|strong=\"H3588\"* land.’”" + }, + { + "verseNum": 15, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* that|strong=\"H3117\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"* was|strong=\"H1961\"* raised|strong=\"H6965\"* up|strong=\"H6965\"*, the|strong=\"H5921\"* cloud|strong=\"H6051\"* covered|strong=\"H3680\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*, even|strong=\"H6153\"* the|strong=\"H5921\"* Tent of|strong=\"H3117\"* the|strong=\"H5921\"* Testimony|strong=\"H5715\"*. At|strong=\"H5921\"* evening|strong=\"H6153\"* it|strong=\"H5921\"* was|strong=\"H1961\"* over|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*, as|strong=\"H5704\"* it|strong=\"H5921\"* were|strong=\"H1961\"* the|strong=\"H5921\"* appearance|strong=\"H4758\"* of|strong=\"H3117\"* fire, until|strong=\"H5704\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 16, + "text": "So|strong=\"H3651\"* it|strong=\"H3651\"* was|strong=\"H1961\"* continually|strong=\"H8548\"*. The|strong=\"H3680\"* cloud|strong=\"H6051\"* covered|strong=\"H3680\"* it|strong=\"H3651\"*, and|strong=\"H3915\"* the|strong=\"H3680\"* appearance|strong=\"H4758\"* of|strong=\"H4758\"* fire by|strong=\"H6051\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 17, + "text": "Whenever|strong=\"H6310\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"* was|strong=\"H3478\"* taken|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5265\"* over|strong=\"H5921\"* the|strong=\"H5921\"* Tent|strong=\"H2583\"*, then|strong=\"H3651\"* after|strong=\"H5921\"* that|strong=\"H3651\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* traveled|strong=\"H5265\"*; and|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* where|strong=\"H8033\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"* remained|strong=\"H2583\"*, there|strong=\"H8033\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* encamped|strong=\"H2583\"*." + }, + { + "verseNum": 18, + "text": "At|strong=\"H2583\"* the|strong=\"H3605\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* traveled|strong=\"H5265\"*, and|strong=\"H1121\"* at|strong=\"H2583\"* the|strong=\"H3605\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* they|strong=\"H3117\"* encamped|strong=\"H2583\"*. As|strong=\"H3117\"* long|strong=\"H3117\"* as|strong=\"H3117\"* the|strong=\"H3605\"* cloud|strong=\"H6051\"* remained|strong=\"H2583\"* on|strong=\"H5921\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* they|strong=\"H3117\"* remained|strong=\"H2583\"* encamped|strong=\"H2583\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3117\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"* stayed|strong=\"H3478\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"* many|strong=\"H7227\"* days|strong=\"H3117\"*, then|strong=\"H3068\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* kept|strong=\"H8104\"* Yahweh|strong=\"H3068\"*’s command|strong=\"H5921\"*, and|strong=\"H1121\"* didn’t travel." + }, + { + "verseNum": 20, + "text": "Sometimes|strong=\"H3426\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"* was|strong=\"H3068\"* a|strong=\"H3068\"* few|strong=\"H4557\"* days|strong=\"H3117\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*; then|strong=\"H1961\"* according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* they|strong=\"H3117\"* remained|strong=\"H1961\"* encamped|strong=\"H2583\"*, and|strong=\"H3068\"* according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* they|strong=\"H3117\"* traveled|strong=\"H5265\"*." + }, + { + "verseNum": 21, + "text": "Sometimes|strong=\"H3426\"* the|strong=\"H5704\"* cloud|strong=\"H6051\"* was|strong=\"H1961\"* from|strong=\"H5265\"* evening|strong=\"H6153\"* until|strong=\"H5704\"* morning|strong=\"H1242\"*; and|strong=\"H3119\"* when|strong=\"H1961\"* the|strong=\"H5704\"* cloud|strong=\"H6051\"* was|strong=\"H1961\"* taken|strong=\"H5927\"* up|strong=\"H5927\"* in|strong=\"H5927\"* the|strong=\"H5704\"* morning|strong=\"H1242\"*, they|strong=\"H5704\"* traveled|strong=\"H5265\"*; or|strong=\"H5704\"* by|strong=\"H6051\"* day|strong=\"H3119\"* and|strong=\"H3119\"* by|strong=\"H6051\"* night|strong=\"H3915\"*, when|strong=\"H1961\"* the|strong=\"H5704\"* cloud|strong=\"H6051\"* was|strong=\"H1961\"* taken|strong=\"H5927\"* up|strong=\"H5927\"*, they|strong=\"H5704\"* traveled|strong=\"H5265\"*." + }, + { + "verseNum": 22, + "text": "Whether it|strong=\"H5921\"* was|strong=\"H3478\"* two|strong=\"H3808\"* days|strong=\"H3117\"*, or|strong=\"H3808\"* a|strong=\"H3068\"* month|strong=\"H2320\"*, or|strong=\"H3808\"* a|strong=\"H3068\"* year|strong=\"H3117\"* that|strong=\"H3117\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"* stayed|strong=\"H3478\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*, remaining|strong=\"H7931\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* remained|strong=\"H2583\"* encamped|strong=\"H2583\"*, and|strong=\"H1121\"* didn’t travel; but|strong=\"H3808\"* when|strong=\"H3117\"* it|strong=\"H5921\"* was|strong=\"H3478\"* taken|strong=\"H5927\"* up|strong=\"H5927\"*, they|strong=\"H3117\"* traveled|strong=\"H5265\"*." + }, + { + "verseNum": 23, + "text": "At|strong=\"H2583\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* they|strong=\"H3068\"* encamped|strong=\"H2583\"*, and|strong=\"H4872\"* at|strong=\"H2583\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* they|strong=\"H3068\"* traveled|strong=\"H5265\"*. They|strong=\"H3068\"* kept|strong=\"H8104\"* Yahweh|strong=\"H3068\"*’s command|strong=\"H6310\"*, at|strong=\"H2583\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Make|strong=\"H6213\"* two|strong=\"H8147\"* trumpets|strong=\"H2689\"* of|strong=\"H4264\"* silver|strong=\"H3701\"*. You|strong=\"H6213\"* shall|strong=\"H5712\"* make|strong=\"H6213\"* them|strong=\"H6213\"* of|strong=\"H4264\"* beaten|strong=\"H4749\"* work|strong=\"H6213\"*. You|strong=\"H6213\"* shall|strong=\"H5712\"* use|strong=\"H1961\"* them|strong=\"H6213\"* for|strong=\"H6213\"* the|strong=\"H6213\"* calling|strong=\"H4744\"* of|strong=\"H4264\"* the|strong=\"H6213\"* congregation|strong=\"H5712\"* and|strong=\"H3701\"* for|strong=\"H6213\"* the|strong=\"H6213\"* journeying|strong=\"H4550\"* of|strong=\"H4264\"* the|strong=\"H6213\"* camps|strong=\"H4264\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"H8628\"* they|strong=\"H3605\"* blow|strong=\"H8628\"* them, all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* shall|strong=\"H5712\"* gather|strong=\"H3259\"* themselves|strong=\"H6607\"* to|strong=\"H4150\"* you|strong=\"H3605\"* at|strong=\"H6607\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H5712\"* the|strong=\"H3605\"* Tent of|strong=\"H5712\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 4, + "text": "If they|strong=\"H3478\"* blow|strong=\"H8628\"* just one, then|strong=\"H7218\"* the|strong=\"H8628\"* princes|strong=\"H5387\"*, the|strong=\"H8628\"* heads|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H8628\"* thousands of|strong=\"H7218\"* Israel|strong=\"H3478\"*, shall|strong=\"H3478\"* gather|strong=\"H3259\"* themselves|strong=\"H7218\"* to|strong=\"H3478\"* you|strong=\"H3478\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H5265\"* you blow|strong=\"H8628\"* an|strong=\"H8628\"* alarm|strong=\"H8643\"*, the|strong=\"H8628\"* camps|strong=\"H4264\"* that|strong=\"H4264\"* lie|strong=\"H2583\"* on|strong=\"H2583\"* the|strong=\"H8628\"* east|strong=\"H6924\"* side|strong=\"H6924\"* shall|strong=\"H6924\"* go|strong=\"H5265\"* forward|strong=\"H5265\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"H5265\"* you|strong=\"H8145\"* blow|strong=\"H8628\"* an|strong=\"H8628\"* alarm|strong=\"H8643\"* the|strong=\"H8628\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, the|strong=\"H8628\"* camps|strong=\"H4264\"* that|strong=\"H4264\"* lie|strong=\"H2583\"* on|strong=\"H2583\"* the|strong=\"H8628\"* south|strong=\"H8486\"* side|strong=\"H8486\"* shall|strong=\"H8486\"* go|strong=\"H5265\"* forward|strong=\"H5265\"*. They shall|strong=\"H8486\"* blow|strong=\"H8628\"* an|strong=\"H8628\"* alarm|strong=\"H8643\"* for|strong=\"H4264\"* their|strong=\"H5265\"* journeys|strong=\"H4550\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"H3808\"* when|strong=\"H8628\"* the|strong=\"H8628\"* assembly|strong=\"H6951\"* is|strong=\"H8628\"* to|strong=\"H3808\"* be|strong=\"H3808\"* gathered|strong=\"H6950\"* together|strong=\"H6950\"*, you|strong=\"H3808\"* shall|strong=\"H3808\"* blow|strong=\"H8628\"*, but|strong=\"H3808\"* you|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* sound|strong=\"H7321\"* an|strong=\"H8628\"* alarm|strong=\"H7321\"*." + }, + { + "verseNum": 8, + "text": "“The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, the|strong=\"H1961\"* priests|strong=\"H3548\"*, shall|strong=\"H3548\"* blow|strong=\"H8628\"* the|strong=\"H1961\"* trumpets|strong=\"H2689\"*. This|strong=\"H2708\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* to|strong=\"H1961\"* you|strong=\"H5769\"* for|strong=\"H2708\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* throughout|strong=\"H1755\"* your|strong=\"H1961\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H3068\"* to|strong=\"H3068\"* war|strong=\"H4421\"* in|strong=\"H5921\"* your|strong=\"H3068\"* land|strong=\"H6440\"* against|strong=\"H5921\"* the|strong=\"H6440\"* adversary|strong=\"H6862\"* who|strong=\"H3068\"* oppresses you|strong=\"H3588\"*, then|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* sound|strong=\"H7321\"* an|strong=\"H3588\"* alarm|strong=\"H7321\"* with|strong=\"H3068\"* the|strong=\"H6440\"* trumpets|strong=\"H2689\"*. Then|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* remembered|strong=\"H2142\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* saved|strong=\"H3467\"* from|strong=\"H6440\"* your|strong=\"H3068\"* enemies|strong=\"H6862\"*." + }, + { + "verseNum": 10, + "text": "“Also|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H6440\"* day|strong=\"H3117\"* of|strong=\"H3068\"* your|strong=\"H3068\"* gladness|strong=\"H8057\"*, and|strong=\"H3068\"* in|strong=\"H5921\"* your|strong=\"H3068\"* set|strong=\"H4150\"* feasts|strong=\"H4150\"*, and|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H6440\"* beginnings|strong=\"H7218\"* of|strong=\"H3068\"* your|strong=\"H3068\"* months|strong=\"H2320\"*, you|strong=\"H6440\"* shall|strong=\"H3068\"* blow|strong=\"H8628\"* the|strong=\"H6440\"* trumpets|strong=\"H2689\"* over|strong=\"H5921\"* your|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"*, and|strong=\"H3068\"* over|strong=\"H5921\"* the|strong=\"H6440\"* sacrifices|strong=\"H2077\"* of|strong=\"H3068\"* your|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*; and|strong=\"H3068\"* they|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* to|strong=\"H3068\"* you|strong=\"H6440\"* for|strong=\"H5921\"* a|strong=\"H3068\"* memorial|strong=\"H2146\"* before|strong=\"H6440\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. I|strong=\"H3117\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.”" + }, + { + "verseNum": 11, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* second|strong=\"H8145\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* second|strong=\"H8145\"* month|strong=\"H2320\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* twentieth|strong=\"H6242\"* day|strong=\"H2320\"* of|strong=\"H8141\"* the|strong=\"H5921\"* month|strong=\"H2320\"*, the|strong=\"H5921\"* cloud|strong=\"H6051\"* was|strong=\"H1961\"* taken|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* over|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"* of|strong=\"H8141\"* the|strong=\"H5921\"* covenant." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H3478\"* forward|strong=\"H5265\"* on|strong=\"H7931\"* their|strong=\"H5265\"* journeys|strong=\"H4550\"* out|strong=\"H5265\"* of|strong=\"H1121\"* the|strong=\"H1121\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Sinai|strong=\"H5514\"*; and|strong=\"H1121\"* the|strong=\"H1121\"* cloud|strong=\"H6051\"* stayed|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H1121\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Paran|strong=\"H6290\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"H3068\"* first|strong=\"H7223\"* went|strong=\"H4872\"* forward|strong=\"H5265\"* according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 14, + "text": "First|strong=\"H7223\"*, the|strong=\"H5921\"* standard|strong=\"H1714\"* of|strong=\"H1121\"* the|strong=\"H5921\"* camp|strong=\"H4264\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* went|strong=\"H5265\"* forward|strong=\"H5265\"* according|strong=\"H5921\"* to|strong=\"H5921\"* their|strong=\"H5921\"* armies|strong=\"H6635\"*. Nahshon|strong=\"H5177\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amminadab|strong=\"H5992\"* was|strong=\"H3063\"* over|strong=\"H5921\"* his|strong=\"H5921\"* army|strong=\"H6635\"*." + }, + { + "verseNum": 15, + "text": "Nethanel|strong=\"H5417\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zuar|strong=\"H6686\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"*." + }, + { + "verseNum": 16, + "text": "Eliab the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Helon|strong=\"H2497\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H5375\"* tabernacle|strong=\"H4908\"* was|strong=\"H1121\"* taken|strong=\"H5375\"* down|strong=\"H3381\"*; and|strong=\"H1121\"* the|strong=\"H5375\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershon|strong=\"H1648\"* and|strong=\"H1121\"* the|strong=\"H5375\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, who|strong=\"H1121\"* bore|strong=\"H5375\"* the|strong=\"H5375\"* tabernacle|strong=\"H4908\"*, went|strong=\"H3381\"* forward|strong=\"H5265\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5921\"* standard|strong=\"H1714\"* of|strong=\"H1121\"* the|strong=\"H5921\"* camp|strong=\"H4264\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* went|strong=\"H5265\"* forward|strong=\"H5265\"* according|strong=\"H5921\"* to|strong=\"H5921\"* their|strong=\"H5921\"* armies|strong=\"H6635\"*. Elizur the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shedeur|strong=\"H7707\"* was|strong=\"H1121\"* over|strong=\"H5921\"* his|strong=\"H5921\"* army|strong=\"H6635\"*." + }, + { + "verseNum": 19, + "text": "Shelumiel|strong=\"H8017\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zurishaddai|strong=\"H6701\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*." + }, + { + "verseNum": 20, + "text": "Eliasaph the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Deuel|strong=\"H1845\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H5375\"* Kohathites|strong=\"H6956\"* set|strong=\"H5265\"* forward|strong=\"H5265\"*, bearing|strong=\"H5375\"* the|strong=\"H5375\"* sanctuary|strong=\"H4720\"*. The|strong=\"H5375\"* others set|strong=\"H5265\"* up|strong=\"H6965\"* the|strong=\"H5375\"* tabernacle|strong=\"H4908\"* before|strong=\"H5704\"* they|strong=\"H5704\"* arrived." + }, + { + "verseNum": 22, + "text": "The|strong=\"H5921\"* standard|strong=\"H1714\"* of|strong=\"H1121\"* the|strong=\"H5921\"* camp|strong=\"H4264\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim set|strong=\"H5265\"* forward|strong=\"H5265\"* according|strong=\"H5921\"* to|strong=\"H5921\"* their|strong=\"H5921\"* armies|strong=\"H6635\"*. Elishama the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammihud|strong=\"H5989\"* was|strong=\"H1121\"* over|strong=\"H5921\"* his|strong=\"H5921\"* army|strong=\"H6635\"*." + }, + { + "verseNum": 23, + "text": "Gamaliel|strong=\"H1583\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pedahzur|strong=\"H6301\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*." + }, + { + "verseNum": 24, + "text": "Abidan the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gideoni|strong=\"H1441\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H3605\"* standard|strong=\"H1714\"* of|strong=\"H1121\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*, which|strong=\"H6635\"* was|strong=\"H1121\"* the|strong=\"H3605\"* rear guard of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* camps|strong=\"H4264\"*, set|strong=\"H5265\"* forward|strong=\"H5265\"* according|strong=\"H5921\"* to|strong=\"H5921\"* their|strong=\"H3605\"* armies|strong=\"H6635\"*. Ahiezer the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammishaddai|strong=\"H5996\"* was|strong=\"H1121\"* over|strong=\"H5921\"* his|strong=\"H3605\"* army|strong=\"H6635\"*." + }, + { + "verseNum": 26, + "text": "Pagiel|strong=\"H6295\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ochran|strong=\"H5918\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asher." + }, + { + "verseNum": 27, + "text": "Ahira the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Enan|strong=\"H5881\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*." + }, + { + "verseNum": 28, + "text": "Thus were|strong=\"H3478\"* the|strong=\"H1121\"* travels of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* according to|strong=\"H3478\"* their|strong=\"H5265\"* armies|strong=\"H6635\"*; and|strong=\"H1121\"* they|strong=\"H3478\"* went|strong=\"H3478\"* forward|strong=\"H5265\"*." + }, + { + "verseNum": 29, + "text": "Moses|strong=\"H4872\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Hobab|strong=\"H2246\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Reuel|strong=\"H7467\"* the|strong=\"H5921\"* Midianite|strong=\"H4084\"*, Moses|strong=\"H4872\"*’ father-in-law|strong=\"H2859\"*, “We|strong=\"H3588\"* are|strong=\"H1121\"* journeying|strong=\"H5265\"* to|strong=\"H1696\"* the|strong=\"H5921\"* place|strong=\"H4725\"* of|strong=\"H1121\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* said|strong=\"H1696\"*, ‘I|strong=\"H3588\"* will|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H1696\"* you|strong=\"H3588\"*.’ Come|strong=\"H3212\"* with|strong=\"H3068\"* us|strong=\"H5414\"*, and|strong=\"H1121\"* we|strong=\"H3068\"* will|strong=\"H3068\"* treat|strong=\"H3190\"* you|strong=\"H3588\"* well|strong=\"H3190\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* good|strong=\"H2896\"* concerning|strong=\"H5921\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 30, + "text": "He|strong=\"H3588\"* said to|strong=\"H3212\"* him|strong=\"H3588\"*, “I|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* go|strong=\"H3212\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3808\"* depart|strong=\"H3212\"* to|strong=\"H3212\"* my|strong=\"H3588\"* own land, and|strong=\"H3212\"* to|strong=\"H3212\"* my|strong=\"H3588\"* relatives|strong=\"H4138\"*.”" + }, + { + "verseNum": 31, + "text": "Moses|strong=\"H3588\"* said|strong=\"H3651\"*, “Don’t leave|strong=\"H5800\"* us|strong=\"H4994\"*, please|strong=\"H4994\"*; because|strong=\"H3588\"* you|strong=\"H3588\"* know|strong=\"H3045\"* how|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H5869\"* to|strong=\"H1961\"* encamp|strong=\"H2583\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*, and|strong=\"H5869\"* you|strong=\"H3588\"* can|strong=\"H3045\"* be|strong=\"H1961\"* our|strong=\"H5921\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 32, + "text": "It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H3212\"* with|strong=\"H5973\"* us|strong=\"H3588\"*—yes|strong=\"H3588\"*, it|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*—that|strong=\"H3588\"* whatever|strong=\"H2896\"* good|strong=\"H2896\"* Yahweh|strong=\"H3068\"* does|strong=\"H3190\"* to|strong=\"H3212\"* us|strong=\"H3588\"*, we|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H3190\"* the|strong=\"H3588\"* same|strong=\"H1931\"* to|strong=\"H3212\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 33, + "text": "They|strong=\"H3117\"* set|strong=\"H5265\"* forward|strong=\"H5265\"* from|strong=\"H5265\"* the|strong=\"H6440\"* Mount|strong=\"H2022\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* three|strong=\"H7969\"* days|strong=\"H3117\"*’ journey|strong=\"H1870\"*. The|strong=\"H6440\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* went|strong=\"H5265\"* before|strong=\"H6440\"* them|strong=\"H6440\"* three|strong=\"H7969\"* days|strong=\"H3117\"*’ journey|strong=\"H1870\"*, to|strong=\"H3068\"* seek|strong=\"H8446\"* out|strong=\"H5265\"* a|strong=\"H3068\"* resting|strong=\"H4496\"* place|strong=\"H4496\"* for|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"H5921\"* cloud|strong=\"H6051\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* over|strong=\"H5921\"* them|strong=\"H5921\"* by|strong=\"H5921\"* day|strong=\"H3119\"*, when|strong=\"H3068\"* they|strong=\"H3068\"* set|strong=\"H5265\"* forward|strong=\"H5265\"* from|strong=\"H4480\"* the|strong=\"H5921\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 35, + "text": "When|strong=\"H1961\"* the|strong=\"H6440\"* ark went|strong=\"H4872\"* forward|strong=\"H5265\"*, Moses|strong=\"H4872\"* said, “Rise|strong=\"H6965\"* up|strong=\"H6965\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H6965\"* let|strong=\"H1961\"* your|strong=\"H3068\"* enemies|strong=\"H8130\"* be|strong=\"H1961\"* scattered|strong=\"H6327\"*! Let|strong=\"H1961\"* those|strong=\"H1961\"* who|strong=\"H3068\"* hate|strong=\"H8130\"* you|strong=\"H6440\"* flee|strong=\"H5127\"* before|strong=\"H6440\"* you|strong=\"H6440\"*!”" + }, + { + "verseNum": 36, + "text": "When|strong=\"H7725\"* it|strong=\"H7725\"* rested|strong=\"H5117\"*, he|strong=\"H3068\"* said, “Return|strong=\"H7725\"*, Yahweh|strong=\"H3068\"*, to|strong=\"H7725\"* the|strong=\"H3068\"* ten|strong=\"H7233\"* thousands|strong=\"H7233\"* of|strong=\"H3068\"* the|strong=\"H3068\"* thousands|strong=\"H7233\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*.”" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H8085\"* people|strong=\"H5971\"* were|strong=\"H1961\"* complaining in|strong=\"H3068\"* the|strong=\"H8085\"* ears of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. When|strong=\"H1961\"* Yahweh|strong=\"H3068\"* heard|strong=\"H8085\"* it|strong=\"H1961\"*, his|strong=\"H3068\"* anger burned|strong=\"H2734\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s fire burned|strong=\"H2734\"* among|strong=\"H5971\"* them|strong=\"H1961\"*, and|strong=\"H3068\"* consumed|strong=\"H1197\"* some|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H8085\"* outskirts|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H8085\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3068\"* people|strong=\"H5971\"* cried|strong=\"H6817\"* to|strong=\"H3068\"* Moses|strong=\"H4872\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* prayed|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H4872\"* the|strong=\"H3068\"* fire abated." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H3068\"* that|strong=\"H3588\"* place|strong=\"H4725\"* was|strong=\"H3068\"* called|strong=\"H7121\"* Taberah|strong=\"H8404\"*,+ 11:3 Taberah means “burning” * because|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s fire burned|strong=\"H1197\"* among|strong=\"H8034\"* them|strong=\"H7121\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H7725\"* mixed multitude that|strong=\"H3478\"* was|strong=\"H3478\"* among|strong=\"H7130\"* them|strong=\"H7725\"* lusted exceedingly|strong=\"H8378\"*; and|strong=\"H1121\"* the|strong=\"H7725\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* also|strong=\"H1571\"* wept|strong=\"H1058\"* again|strong=\"H7725\"*, and|strong=\"H1121\"* said, “Who|strong=\"H4310\"* will|strong=\"H4310\"* give|strong=\"H7725\"* us|strong=\"H7725\"* meat|strong=\"H1320\"* to|strong=\"H7725\"* eat?" + }, + { + "verseNum": 5, + "text": "We remember|strong=\"H2142\"* the|strong=\"H2142\"* fish|strong=\"H1710\"*, which|strong=\"H2600\"* we|strong=\"H3068\"* ate in|strong=\"H4714\"* Egypt|strong=\"H4714\"* for|strong=\"H4714\"* nothing|strong=\"H2600\"*; the|strong=\"H2142\"* cucumbers|strong=\"H7180\"*, and|strong=\"H4714\"* the|strong=\"H2142\"* melons, and|strong=\"H4714\"* the|strong=\"H2142\"* leeks|strong=\"H2682\"*, and|strong=\"H4714\"* the|strong=\"H2142\"* onions|strong=\"H1211\"*, and|strong=\"H4714\"* the|strong=\"H2142\"* garlic|strong=\"H7762\"*;" + }, + { + "verseNum": 6, + "text": "but|strong=\"H6258\"* now|strong=\"H6258\"* we|strong=\"H3068\"* have|strong=\"H5869\"* lost our|strong=\"H3605\"* appetite|strong=\"H5315\"*. There|strong=\"H3605\"* is|strong=\"H5315\"* nothing|strong=\"H1115\"* at|strong=\"H5869\"* all|strong=\"H3605\"* except|strong=\"H1115\"* this|strong=\"H6258\"* manna|strong=\"H4478\"* to|strong=\"H5315\"* look|strong=\"H5869\"* at|strong=\"H5869\"*.”" + }, + { + "verseNum": 7, + "text": "The|strong=\"H5869\"* manna|strong=\"H4478\"* was|strong=\"H1931\"* like|strong=\"H5869\"* coriander|strong=\"H1407\"* seed|strong=\"H2233\"*, and|strong=\"H5869\"* it|strong=\"H1931\"* looked|strong=\"H5869\"* like|strong=\"H5869\"* bdellium.+ 11:7 Bdellium is a resin extracted from certain African trees.*" + }, + { + "verseNum": 8, + "text": "The|strong=\"H6213\"* people|strong=\"H5971\"* went|strong=\"H5971\"* around, gathered|strong=\"H3950\"* it|strong=\"H6213\"*, and|strong=\"H5971\"* ground|strong=\"H2912\"* it|strong=\"H6213\"* in|strong=\"H6213\"* mills|strong=\"H7347\"*, or|strong=\"H6213\"* beat|strong=\"H1743\"* it|strong=\"H6213\"* in|strong=\"H6213\"* mortars, and|strong=\"H5971\"* boiled|strong=\"H1310\"* it|strong=\"H6213\"* in|strong=\"H6213\"* pots, and|strong=\"H5971\"* made|strong=\"H6213\"* cakes|strong=\"H5692\"* of|strong=\"H5971\"* it|strong=\"H6213\"*. Its|strong=\"H6213\"* taste|strong=\"H2940\"* was|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H6213\"* taste|strong=\"H2940\"* of|strong=\"H5971\"* fresh|strong=\"H3955\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"H5921\"* the|strong=\"H5921\"* dew|strong=\"H2919\"* fell|strong=\"H3381\"* on|strong=\"H5921\"* the|strong=\"H5921\"* camp|strong=\"H4264\"* in|strong=\"H5921\"* the|strong=\"H5921\"* night|strong=\"H3915\"*, the|strong=\"H5921\"* manna|strong=\"H4478\"* fell|strong=\"H3381\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "Moses|strong=\"H4872\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* people|strong=\"H5971\"* weeping|strong=\"H1058\"* throughout|strong=\"H8085\"* their|strong=\"H3068\"* families|strong=\"H4940\"*, every|strong=\"H4940\"* man at|strong=\"H3068\"* the|strong=\"H8085\"* door|strong=\"H6607\"* of|strong=\"H3068\"* his|strong=\"H3068\"* tent; and|strong=\"H4872\"* Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* greatly|strong=\"H3966\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* was|strong=\"H3068\"* displeased|strong=\"H7489\"*." + }, + { + "verseNum": 11, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, “Why|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H3605\"* treated|strong=\"H7489\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* so|strong=\"H3808\"* badly|strong=\"H7489\"*? Why|strong=\"H4100\"* haven’t I|strong=\"H5921\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* your|strong=\"H3068\"* sight|strong=\"H5869\"*, that|strong=\"H5971\"* you|strong=\"H3605\"* lay|strong=\"H7760\"* the|strong=\"H3605\"* burden|strong=\"H4853\"* of|strong=\"H3068\"* all|strong=\"H3605\"* this|strong=\"H2088\"* people|strong=\"H5971\"* on|strong=\"H5921\"* me|strong=\"H5921\"*?" + }, + { + "verseNum": 12, + "text": "Have|strong=\"H5971\"* I|strong=\"H3588\"* conceived|strong=\"H2029\"* all|strong=\"H3605\"* this|strong=\"H2088\"* people|strong=\"H5971\"*? Have|strong=\"H5971\"* I|strong=\"H3588\"* brought|strong=\"H5375\"* them|strong=\"H5921\"* out|strong=\"H5921\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H3588\"* tell|strong=\"H3605\"* me|strong=\"H5921\"*, ‘Carry|strong=\"H5375\"* them|strong=\"H5921\"* in|strong=\"H5921\"* your|strong=\"H3605\"* bosom|strong=\"H2436\"*, as|strong=\"H3588\"* a|strong=\"H3068\"* nurse|strong=\"H3243\"* carries|strong=\"H5375\"* a|strong=\"H3068\"* nursing|strong=\"H3243\"* infant|strong=\"H3243\"*, to|strong=\"H5921\"* the|strong=\"H3605\"* land which|strong=\"H5971\"* you|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H5921\"* their|strong=\"H3605\"* fathers|strong=\"H3205\"*’?" + }, + { + "verseNum": 13, + "text": "Where|strong=\"H5921\"* could|strong=\"H2088\"* I|strong=\"H3588\"* get meat|strong=\"H1320\"* to|strong=\"H5921\"* give|strong=\"H5414\"* all|strong=\"H3605\"* these|strong=\"H2088\"* people|strong=\"H5971\"*? For|strong=\"H3588\"* they|strong=\"H3588\"* weep|strong=\"H1058\"* before|strong=\"H5921\"* me|strong=\"H5414\"*, saying, ‘Give|strong=\"H5414\"* us|strong=\"H5414\"* meat|strong=\"H1320\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* may|strong=\"H5971\"* eat.’" + }, + { + "verseNum": 14, + "text": "I|strong=\"H3588\"* am not|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* bear|strong=\"H5375\"* all|strong=\"H3605\"* this|strong=\"H2088\"* people|strong=\"H5971\"* alone|strong=\"H4480\"*, because|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H2088\"* too|strong=\"H4480\"* heavy|strong=\"H3515\"* for|strong=\"H3588\"* me|strong=\"H4480\"*." + }, + { + "verseNum": 15, + "text": "If|strong=\"H7200\"* you|strong=\"H6213\"* treat|strong=\"H6213\"* me|strong=\"H4994\"* this|strong=\"H6213\"* way, please|strong=\"H4994\"* kill|strong=\"H2026\"* me|strong=\"H4994\"* right|strong=\"H5869\"* now|strong=\"H4994\"*, if|strong=\"H7200\"* I|strong=\"H7200\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H6213\"* your|strong=\"H7200\"* sight|strong=\"H5869\"*; and|strong=\"H5869\"* don’t let|strong=\"H4994\"* me|strong=\"H4994\"* see|strong=\"H7200\"* my|strong=\"H7200\"* wretchedness|strong=\"H7451\"*.”" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* Moses|strong=\"H4872\"*, “Gather to|strong=\"H3478\"* me|strong=\"H3947\"* seventy|strong=\"H7657\"* men|strong=\"H2205\"* of|strong=\"H3068\"* the|strong=\"H3588\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, whom|strong=\"H1992\"* you|strong=\"H3588\"* know|strong=\"H3045\"* to|strong=\"H3478\"* be|strong=\"H3068\"* the|strong=\"H3588\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* the|strong=\"H3588\"* people|strong=\"H5971\"* and|strong=\"H4872\"* officers|strong=\"H7860\"* over|strong=\"H3068\"* them|strong=\"H1992\"*; and|strong=\"H4872\"* bring|strong=\"H3947\"* them|strong=\"H1992\"* to|strong=\"H3478\"* the|strong=\"H3588\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, that|strong=\"H3588\"* they|strong=\"H1992\"* may|strong=\"H3068\"* stand|strong=\"H3320\"* there|strong=\"H8033\"* with|strong=\"H5973\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H5921\"* will|strong=\"H5971\"* come|strong=\"H3381\"* down|strong=\"H3381\"* and|strong=\"H5971\"* talk|strong=\"H1696\"* with|strong=\"H5973\"* you|strong=\"H5921\"* there|strong=\"H8033\"*. I|strong=\"H5921\"* will|strong=\"H5971\"* take|strong=\"H5375\"* of|strong=\"H7307\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"* which|strong=\"H5971\"* is|strong=\"H7307\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H5971\"* will|strong=\"H5971\"* put|strong=\"H7760\"* it|strong=\"H7760\"* on|strong=\"H5921\"* them|strong=\"H5921\"*; and|strong=\"H5971\"* they|strong=\"H8033\"* shall|strong=\"H5971\"* bear|strong=\"H5375\"* the|strong=\"H5921\"* burden|strong=\"H4853\"* of|strong=\"H7307\"* the|strong=\"H5921\"* people|strong=\"H5971\"* with|strong=\"H5973\"* you|strong=\"H5921\"*, that|strong=\"H5971\"* you|strong=\"H5921\"* don’t bear|strong=\"H5375\"* it|strong=\"H7760\"* yourself|strong=\"H5921\"* alone|strong=\"H4480\"*." + }, + { + "verseNum": 18, + "text": "“Say to|strong=\"H3068\"* the|strong=\"H3588\"* people|strong=\"H5971\"*, ‘Sanctify|strong=\"H6942\"* yourselves|strong=\"H6942\"* in|strong=\"H3068\"* preparation for|strong=\"H3588\"* tomorrow|strong=\"H4279\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* eat meat|strong=\"H1320\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* wept|strong=\"H1058\"* in|strong=\"H3068\"* the|strong=\"H3588\"* ears of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying, “Who|strong=\"H4310\"* will|strong=\"H3068\"* give|strong=\"H5414\"* us|strong=\"H5414\"* meat|strong=\"H1320\"* to|strong=\"H3068\"* eat? For|strong=\"H3588\"* it|strong=\"H5414\"* was|strong=\"H3068\"* well|strong=\"H2895\"* with|strong=\"H3068\"* us|strong=\"H5414\"* in|strong=\"H3068\"* Egypt|strong=\"H4714\"*.” Therefore|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"* meat|strong=\"H1320\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* eat." + }, + { + "verseNum": 19, + "text": "You|strong=\"H3117\"* will|strong=\"H3808\"* not|strong=\"H3808\"* eat just one|strong=\"H3808\"* day|strong=\"H3117\"*, or|strong=\"H3808\"* two|strong=\"H3808\"* days|strong=\"H3117\"*, or|strong=\"H3808\"* five|strong=\"H2568\"* days|strong=\"H3117\"*, or|strong=\"H3808\"* ten|strong=\"H6235\"* days|strong=\"H3117\"*, or|strong=\"H3808\"* twenty|strong=\"H6242\"* days|strong=\"H3117\"*," + }, + { + "verseNum": 20, + "text": "but|strong=\"H3588\"* a|strong=\"H3068\"* whole|strong=\"H3117\"* month|strong=\"H2320\"*, until|strong=\"H5704\"* it|strong=\"H3588\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* at|strong=\"H3068\"* your|strong=\"H3068\"* nostrils, and|strong=\"H3068\"* it|strong=\"H3588\"* is|strong=\"H3068\"* loathsome|strong=\"H2214\"* to|strong=\"H5704\"* you|strong=\"H3588\"*; because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* rejected|strong=\"H3988\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* is|strong=\"H3068\"* among|strong=\"H7130\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* have|strong=\"H1961\"* wept|strong=\"H1058\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, saying, “Why|strong=\"H4100\"* did|strong=\"H4100\"* we|strong=\"H3068\"* come|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*?”’”" + }, + { + "verseNum": 21, + "text": "Moses|strong=\"H4872\"* said, “The|strong=\"H5414\"* people|strong=\"H5971\"*, among|strong=\"H7130\"* whom|strong=\"H5971\"* I|strong=\"H3117\"* am, are|strong=\"H3117\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* thousand men|strong=\"H5971\"* on|strong=\"H3117\"* foot|strong=\"H7273\"*; and|strong=\"H3967\"* you|strong=\"H5414\"* have|strong=\"H5971\"* said, ‘I|strong=\"H3117\"* will|strong=\"H5971\"* give|strong=\"H5414\"* them|strong=\"H5414\"* meat|strong=\"H1320\"*, that|strong=\"H5971\"* they|strong=\"H3117\"* may|strong=\"H5971\"* eat a|strong=\"H3068\"* whole|strong=\"H3117\"* month|strong=\"H2320\"*.’" + }, + { + "verseNum": 22, + "text": "Shall|strong=\"H3220\"* flocks|strong=\"H6629\"* and|strong=\"H6629\"* herds|strong=\"H1241\"* be|strong=\"H1241\"* slaughtered|strong=\"H7819\"* for|strong=\"H3605\"* them|strong=\"H4672\"*, to|strong=\"H3220\"* be|strong=\"H1241\"* sufficient|strong=\"H4672\"* for|strong=\"H3605\"* them|strong=\"H4672\"*? Shall|strong=\"H3220\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fish|strong=\"H1709\"* of|strong=\"H3605\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* be|strong=\"H1241\"* gathered together|strong=\"H3220\"* for|strong=\"H3605\"* them|strong=\"H4672\"*, to|strong=\"H3220\"* be|strong=\"H1241\"* sufficient|strong=\"H4672\"* for|strong=\"H3605\"* them|strong=\"H4672\"*?”" + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Has|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* grown short|strong=\"H7114\"*? Now|strong=\"H6258\"* you|strong=\"H3808\"* will|strong=\"H3068\"* see|strong=\"H7200\"* whether|strong=\"H7200\"* my|strong=\"H3068\"* word|strong=\"H1697\"* will|strong=\"H3068\"* happen|strong=\"H7136\"* to|strong=\"H3068\"* you|strong=\"H3808\"* or|strong=\"H3808\"* not|strong=\"H3808\"*.”" + }, + { + "verseNum": 24, + "text": "Moses|strong=\"H4872\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H4872\"* told|strong=\"H1696\"* the|strong=\"H3068\"* people|strong=\"H5971\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"*; and|strong=\"H4872\"* he|strong=\"H3068\"* gathered seventy|strong=\"H7657\"* men|strong=\"H2205\"* of|strong=\"H3068\"* the|strong=\"H3068\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* the|strong=\"H3068\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* set|strong=\"H5975\"* them|strong=\"H5975\"* around|strong=\"H5439\"* the|strong=\"H3068\"* Tent." + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* came|strong=\"H1961\"* down|strong=\"H3381\"* in|strong=\"H5921\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"*, and|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5414\"*, and|strong=\"H3068\"* took|strong=\"H3381\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"* that|strong=\"H3068\"* was|strong=\"H3068\"* on|strong=\"H5921\"* him|strong=\"H5414\"*, and|strong=\"H3068\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* seventy|strong=\"H7657\"* elders|strong=\"H2205\"*. When|strong=\"H1961\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"* rested|strong=\"H5117\"* on|strong=\"H5921\"* them|strong=\"H5414\"*, they|strong=\"H3068\"* prophesied|strong=\"H5012\"*, but|strong=\"H3808\"* they|strong=\"H3068\"* did|strong=\"H3068\"* so|strong=\"H4480\"* no|strong=\"H3808\"* more|strong=\"H3254\"*." + }, + { + "verseNum": 26, + "text": "But|strong=\"H3808\"* two|strong=\"H8147\"* men|strong=\"H8034\"* remained|strong=\"H7604\"* in|strong=\"H5921\"* the|strong=\"H5921\"* camp|strong=\"H4264\"*. The|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H7307\"* one|strong=\"H3808\"* was|strong=\"H8034\"* Eldad, and|strong=\"H3318\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H7307\"* the|strong=\"H5921\"* other|strong=\"H8145\"* Medad|strong=\"H4312\"*; and|strong=\"H3318\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"* rested|strong=\"H5117\"* on|strong=\"H5921\"* them|strong=\"H1992\"*. They|strong=\"H1992\"* were|strong=\"H1992\"* of|strong=\"H7307\"* those|strong=\"H1992\"* who|strong=\"H1992\"* were|strong=\"H1992\"* written|strong=\"H3789\"*, but|strong=\"H3808\"* had|strong=\"H4264\"* not|strong=\"H3808\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5921\"* Tent; and|strong=\"H3318\"* they|strong=\"H1992\"* prophesied|strong=\"H5012\"* in|strong=\"H5921\"* the|strong=\"H5921\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 27, + "text": "A|strong=\"H3068\"* young|strong=\"H5288\"* man|strong=\"H5288\"* ran|strong=\"H7323\"*, and|strong=\"H4872\"* told|strong=\"H5046\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* said, “Eldad and|strong=\"H4872\"* Medad|strong=\"H4312\"* are|strong=\"H5288\"* prophesying|strong=\"H5012\"* in|strong=\"H4872\"* the|strong=\"H4872\"* camp|strong=\"H4264\"*!”" + }, + { + "verseNum": 28, + "text": "Joshua|strong=\"H3091\"* the|strong=\"H3091\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, the|strong=\"H3091\"* servant|strong=\"H8334\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*, one|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H4872\"* chosen men|strong=\"H1121\"*, answered|strong=\"H6030\"*, “My|strong=\"H3607\"* lord Moses|strong=\"H4872\"*, forbid|strong=\"H3607\"* them|strong=\"H6030\"*!”" + }, + { + "verseNum": 29, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3068\"* him|strong=\"H5414\"*, “Are|strong=\"H5971\"* you|strong=\"H3588\"* jealous|strong=\"H7065\"* for|strong=\"H3588\"* my|strong=\"H5414\"* sake|strong=\"H5921\"*? I|strong=\"H3588\"* wish|strong=\"H4310\"* that|strong=\"H3588\"* all|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s people|strong=\"H5971\"* were|strong=\"H5971\"* prophets|strong=\"H5030\"*, that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* would|strong=\"H4310\"* put|strong=\"H5414\"* his|strong=\"H3605\"* Spirit|strong=\"H7307\"* on|strong=\"H5921\"* them|strong=\"H5414\"*!”" + }, + { + "verseNum": 30, + "text": "Moses|strong=\"H4872\"* went|strong=\"H3478\"* into|strong=\"H4264\"* the|strong=\"H4872\"* camp|strong=\"H4264\"*, he|strong=\"H1931\"* and|strong=\"H4872\"* the|strong=\"H4872\"* elders|strong=\"H2205\"* of|strong=\"H2205\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 31, + "text": "A|strong=\"H3068\"* wind|strong=\"H7307\"* from|strong=\"H4480\"* Yahweh|strong=\"H3068\"* went|strong=\"H5265\"* out|strong=\"H4480\"* and|strong=\"H3068\"* brought|strong=\"H5265\"* quails|strong=\"H7958\"* from|strong=\"H4480\"* the|strong=\"H6440\"* sea|strong=\"H3220\"*, and|strong=\"H3068\"* let them|strong=\"H5921\"* fall|strong=\"H5203\"* by|strong=\"H5921\"* the|strong=\"H6440\"* camp|strong=\"H4264\"*, about|strong=\"H5439\"* a|strong=\"H3068\"* day|strong=\"H3117\"*’s journey|strong=\"H1870\"* on|strong=\"H5921\"* this|strong=\"H3541\"* side|strong=\"H5439\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* day|strong=\"H3117\"*’s journey|strong=\"H1870\"* on|strong=\"H5921\"* the|strong=\"H6440\"* other|strong=\"H3541\"* side|strong=\"H5439\"*, around|strong=\"H5439\"* the|strong=\"H6440\"* camp|strong=\"H4264\"*, and|strong=\"H3068\"* about|strong=\"H5439\"* two|strong=\"H4480\"* cubits+ 11:31 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* above|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* earth." + }, + { + "verseNum": 32, + "text": "The|strong=\"H3605\"* people|strong=\"H5971\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* all|strong=\"H3605\"* that|strong=\"H5971\"* day|strong=\"H3117\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* of|strong=\"H3117\"* that|strong=\"H5971\"* night|strong=\"H3915\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* next|strong=\"H4283\"* day|strong=\"H3117\"*, and|strong=\"H6965\"* gathered|strong=\"H4591\"* the|strong=\"H3605\"* quails|strong=\"H7958\"*. He|strong=\"H1931\"* who|strong=\"H3605\"* gathered|strong=\"H4591\"* least|strong=\"H4591\"* gathered|strong=\"H4591\"* ten|strong=\"H6235\"* homers|strong=\"H2563\"*;+ 11:32 1 homer is about 220 liters or 6 bushels* and|strong=\"H6965\"* they|strong=\"H3117\"* spread|strong=\"H7849\"* them|strong=\"H5439\"* all|strong=\"H3605\"* out|strong=\"H3605\"* for|strong=\"H3117\"* themselves around|strong=\"H5439\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 33, + "text": "While|strong=\"H5750\"* the|strong=\"H5221\"* meat|strong=\"H1320\"* was|strong=\"H3068\"* still|strong=\"H5750\"* between their|strong=\"H3068\"* teeth|strong=\"H8127\"*, before|strong=\"H2962\"* it|strong=\"H5221\"* was|strong=\"H3068\"* chewed|strong=\"H3772\"*, Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* the|strong=\"H5221\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* people|strong=\"H5971\"* with|strong=\"H3068\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H7227\"* plague|strong=\"H4347\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H8034\"* that|strong=\"H3588\"* place|strong=\"H4725\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Kibroth Hattaavah,+ 11:34 Kibroth Hattaavah means “graves of lust”* because|strong=\"H3588\"* there|strong=\"H8033\"* they|strong=\"H3588\"* buried|strong=\"H6912\"* the|strong=\"H3588\"* people|strong=\"H5971\"* who|strong=\"H1931\"* lusted." + }, + { + "verseNum": 35, + "text": "From|strong=\"H5265\"* Kibroth Hattaavah the|strong=\"H1961\"* people|strong=\"H5971\"* traveled|strong=\"H5265\"* to|strong=\"H1961\"* Hazeroth|strong=\"H2698\"*; and|strong=\"H5971\"* they|strong=\"H5971\"* stayed at|strong=\"H1961\"* Hazeroth|strong=\"H2698\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Miriam|strong=\"H4813\"* and|strong=\"H4872\"* Aaron spoke|strong=\"H1696\"* against|strong=\"H5921\"* Moses|strong=\"H4872\"* because|strong=\"H3588\"* of|strong=\"H5921\"* the|strong=\"H5921\"* Cushite|strong=\"H3571\"* woman whom|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H4872\"* married|strong=\"H3947\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H4872\"* married|strong=\"H3947\"* a|strong=\"H3068\"* Cushite|strong=\"H3571\"* woman." + }, + { + "verseNum": 2, + "text": "They|strong=\"H3068\"* said|strong=\"H1696\"*, “Has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* indeed|strong=\"H1571\"* spoken|strong=\"H1696\"* only|strong=\"H7535\"* with|strong=\"H3068\"* Moses|strong=\"H4872\"*? Hasn’t he|strong=\"H3068\"* spoken|strong=\"H1696\"* also|strong=\"H1571\"* with|strong=\"H3068\"* us|strong=\"H8085\"*?” And|strong=\"H4872\"* Yahweh|strong=\"H3068\"* heard|strong=\"H8085\"* it|strong=\"H1696\"*." + }, + { + "verseNum": 3, + "text": "Now|strong=\"H5921\"* the|strong=\"H3605\"* man|strong=\"H3605\"* Moses|strong=\"H4872\"* was|strong=\"H4872\"* very|strong=\"H3966\"* humble|strong=\"H6035\"*, more|strong=\"H3966\"* than|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* spoke suddenly|strong=\"H6597\"* to|strong=\"H3318\"* Moses|strong=\"H4872\"*, to|strong=\"H3318\"* Aaron, and|strong=\"H4872\"* to|strong=\"H3318\"* Miriam|strong=\"H4813\"*, “You|strong=\"H3318\"* three|strong=\"H7969\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3068\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*!”" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* came|strong=\"H3318\"* down|strong=\"H3381\"* in|strong=\"H3068\"* a|strong=\"H3068\"* pillar|strong=\"H5982\"* of|strong=\"H3068\"* cloud|strong=\"H6051\"*, and|strong=\"H3068\"* stood|strong=\"H5975\"* at|strong=\"H3068\"* the|strong=\"H3068\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H3068\"* Tent, and|strong=\"H3068\"* called|strong=\"H7121\"* Aaron and|strong=\"H3068\"* Miriam|strong=\"H4813\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* both|strong=\"H8147\"* came|strong=\"H3318\"* forward|strong=\"H3318\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3068\"* said|strong=\"H1696\"*, “Now|strong=\"H4994\"* hear|strong=\"H8085\"* my|strong=\"H8085\"* words|strong=\"H1697\"*. If|strong=\"H1961\"* there|strong=\"H1961\"* is|strong=\"H3068\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* among you|strong=\"H3045\"*, I|strong=\"H1697\"*, Yahweh|strong=\"H3068\"*, will|strong=\"H3068\"* make|strong=\"H3045\"* myself|strong=\"H3045\"* known|strong=\"H3045\"* to|strong=\"H1696\"* him|strong=\"H8085\"* in|strong=\"H3068\"* a|strong=\"H3068\"* vision|strong=\"H4759\"*. I|strong=\"H1697\"* will|strong=\"H3068\"* speak|strong=\"H1696\"* with|strong=\"H3068\"* him|strong=\"H8085\"* in|strong=\"H3068\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*." + }, + { + "verseNum": 7, + "text": "My|strong=\"H3605\"* servant|strong=\"H5650\"* Moses|strong=\"H4872\"* is|strong=\"H1931\"* not|strong=\"H3808\"* so|strong=\"H3651\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* faithful in|strong=\"H1004\"* all|strong=\"H3605\"* my|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 8, + "text": "With|strong=\"H3068\"* him|strong=\"H4872\"*, I|strong=\"H5650\"* will|strong=\"H3068\"* speak|strong=\"H1696\"* mouth|strong=\"H6310\"* to|strong=\"H1696\"* mouth|strong=\"H6310\"*, even|strong=\"H3808\"* plainly, and|strong=\"H4872\"* not|strong=\"H3808\"* in|strong=\"H3068\"* riddles|strong=\"H2420\"*; and|strong=\"H4872\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* see|strong=\"H5027\"* Yahweh|strong=\"H3068\"*’s form|strong=\"H8544\"*. Why|strong=\"H4069\"* then|strong=\"H1696\"* were|strong=\"H5650\"* you|strong=\"H3808\"* not|strong=\"H3808\"* afraid|strong=\"H3372\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* against|strong=\"H1696\"* my|strong=\"H3068\"* servant|strong=\"H5650\"*, against|strong=\"H1696\"* Moses|strong=\"H4872\"*?”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* them|strong=\"H3068\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* departed|strong=\"H3212\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5921\"* cloud|strong=\"H6051\"* departed|strong=\"H5493\"* from|strong=\"H5493\"* over|strong=\"H5921\"* the|strong=\"H5921\"* Tent; and|strong=\"H6437\"* behold|strong=\"H2009\"*, Miriam|strong=\"H4813\"* was|strong=\"H6051\"* leprous|strong=\"H6879\"*, as|strong=\"H6051\"* white as|strong=\"H6051\"* snow|strong=\"H7950\"*. Aaron looked|strong=\"H6437\"* at|strong=\"H5921\"* Miriam|strong=\"H4813\"*, and|strong=\"H6437\"* behold|strong=\"H2009\"*, she|strong=\"H5921\"* was|strong=\"H6051\"* leprous|strong=\"H6879\"*." + }, + { + "verseNum": 11, + "text": "Aaron said to|strong=\"H5921\"* Moses|strong=\"H4872\"*, “Oh|strong=\"H4994\"*, my|strong=\"H5921\"* lord, please|strong=\"H4994\"* don’t count this|strong=\"H4994\"* sin|strong=\"H2403\"* against|strong=\"H5921\"* us|strong=\"H4994\"*, in|strong=\"H5921\"* which|strong=\"H2403\"* we|strong=\"H3068\"* have|strong=\"H2403\"* done|strong=\"H2398\"* foolishly|strong=\"H2973\"*, and|strong=\"H4872\"* in|strong=\"H5921\"* which|strong=\"H2403\"* we|strong=\"H3068\"* have|strong=\"H2403\"* sinned|strong=\"H2398\"*." + }, + { + "verseNum": 12, + "text": "Let|strong=\"H4994\"* her|strong=\"H3318\"* not|strong=\"H1961\"*, I|strong=\"H7358\"* pray|strong=\"H4994\"*, be|strong=\"H1961\"* as|strong=\"H1961\"* one|strong=\"H1961\"* dead|strong=\"H4191\"*, of|strong=\"H3318\"* whom the|strong=\"H3318\"* flesh|strong=\"H1320\"* is|strong=\"H1320\"* half|strong=\"H2677\"* consumed when|strong=\"H1961\"* he|strong=\"H3318\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3318\"* his|strong=\"H1961\"* mother|strong=\"H7358\"*’s womb|strong=\"H7358\"*.”" + }, + { + "verseNum": 13, + "text": "Moses|strong=\"H4872\"* cried|strong=\"H6817\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying, “Heal|strong=\"H7495\"* her, God|strong=\"H3068\"*, I|strong=\"H3068\"* beg|strong=\"H4994\"* you|strong=\"H4994\"*!”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “If her|strong=\"H5462\"* father had|strong=\"H3068\"* but|strong=\"H3808\"* spit|strong=\"H3417\"* in|strong=\"H3068\"* her|strong=\"H5462\"* face|strong=\"H6440\"*, shouldn’t she|strong=\"H6440\"* be|strong=\"H3808\"* ashamed|strong=\"H3637\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*? Let|strong=\"H3808\"* her|strong=\"H5462\"* be|strong=\"H3808\"* shut|strong=\"H5462\"* up|strong=\"H5462\"* outside|strong=\"H2351\"* of|strong=\"H3068\"* the|strong=\"H6440\"* camp|strong=\"H4264\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, and|strong=\"H4872\"* after|strong=\"H3117\"* that|strong=\"H3117\"* she|strong=\"H6440\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* brought|strong=\"H4872\"* in|strong=\"H3068\"* again|strong=\"H6440\"*.”" + }, + { + "verseNum": 15, + "text": "Miriam|strong=\"H4813\"* was|strong=\"H3117\"* shut|strong=\"H5462\"* up|strong=\"H5462\"* outside|strong=\"H2351\"* of|strong=\"H3117\"* the|strong=\"H3117\"* camp|strong=\"H4264\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, and|strong=\"H3117\"* the|strong=\"H3117\"* people|strong=\"H5971\"* didn’t travel until|strong=\"H5704\"* Miriam|strong=\"H4813\"* was|strong=\"H3117\"* brought|strong=\"H5265\"* in|strong=\"H3117\"* again." + }, + { + "verseNum": 16, + "text": "Afterward the|strong=\"H5971\"* people|strong=\"H5971\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Hazeroth|strong=\"H2698\"*, and|strong=\"H5971\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H5971\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* Paran|strong=\"H6290\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Send|strong=\"H7971\"* men|strong=\"H1121\"*, that|strong=\"H3605\"* they|strong=\"H3478\"* may|strong=\"H3478\"* spy|strong=\"H8446\"* out|strong=\"H7971\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, which|strong=\"H3478\"* I|strong=\"H5414\"* give|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Of|strong=\"H1121\"* every|strong=\"H3605\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* their|strong=\"H3605\"* fathers, you|strong=\"H5414\"* shall|strong=\"H1121\"* send|strong=\"H7971\"* a|strong=\"H3068\"* man|strong=\"H1121\"*, every|strong=\"H3605\"* one|strong=\"H3605\"* a|strong=\"H3068\"* prince|strong=\"H5387\"* among|strong=\"H5387\"* them|strong=\"H5414\"*.”" + }, + { + "verseNum": 3, + "text": "Moses|strong=\"H4872\"* sent|strong=\"H7971\"* them|strong=\"H1992\"* from|strong=\"H5921\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Paran|strong=\"H6290\"* according|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H3605\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*. All|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H1992\"* were|strong=\"H3478\"* men|strong=\"H1121\"* who|strong=\"H3605\"* were|strong=\"H3478\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "These were|strong=\"H1121\"* their names|strong=\"H8034\"*:" + }, + { + "verseNum": 5, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*, Shaphat|strong=\"H8202\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hori|strong=\"H2753\"*." + }, + { + "verseNum": 6, + "text": "Of|strong=\"H1121\"* the|strong=\"H3612\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Caleb|strong=\"H3612\"* the|strong=\"H3612\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"*." + }, + { + "verseNum": 7, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"*, Igal|strong=\"H3008\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*." + }, + { + "verseNum": 8, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Ephraim, Hoshea|strong=\"H1954\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*." + }, + { + "verseNum": 9, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, Palti|strong=\"H6406\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Raphu|strong=\"H7505\"*." + }, + { + "verseNum": 10, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*, Gaddiel|strong=\"H1427\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Sodi|strong=\"H5476\"*." + }, + { + "verseNum": 11, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*, of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, Gaddi|strong=\"H1426\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Susi|strong=\"H5485\"*." + }, + { + "verseNum": 12, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*, Ammiel|strong=\"H5988\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gemalli|strong=\"H1582\"*." + }, + { + "verseNum": 13, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Asher, Sethur|strong=\"H5639\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Michael|strong=\"H4317\"*." + }, + { + "verseNum": 14, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*, Nahbi|strong=\"H5147\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Vophsi|strong=\"H2058\"*." + }, + { + "verseNum": 15, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, Geuel|strong=\"H1345\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Machi|strong=\"H4352\"*." + }, + { + "verseNum": 16, + "text": "These|strong=\"H7121\"* are|strong=\"H1121\"* the|strong=\"H7121\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H7121\"* men|strong=\"H1121\"* who|strong=\"H1121\"* Moses|strong=\"H4872\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* spy|strong=\"H8446\"* out|strong=\"H7971\"* the|strong=\"H7121\"* land. Moses|strong=\"H4872\"* called|strong=\"H7121\"* Hoshea|strong=\"H1954\"* the|strong=\"H7121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"* Joshua|strong=\"H3091\"*." + }, + { + "verseNum": 17, + "text": "Moses|strong=\"H4872\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* to|strong=\"H7971\"* spy|strong=\"H8446\"* out|strong=\"H7971\"* the|strong=\"H7971\"* land of|strong=\"H2022\"* Canaan|strong=\"H3667\"*, and|strong=\"H4872\"* said to|strong=\"H7971\"* them|strong=\"H7971\"*, “Go|strong=\"H5927\"* up|strong=\"H5927\"* this|strong=\"H2088\"* way|strong=\"H7971\"* by|strong=\"H7971\"* the|strong=\"H7971\"* South|strong=\"H5045\"*, and|strong=\"H4872\"* go|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H7971\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*." + }, + { + "verseNum": 18, + "text": "See|strong=\"H7200\"* the|strong=\"H5921\"* land, what|strong=\"H4100\"* it|strong=\"H1931\"* is|strong=\"H1931\"*; and|strong=\"H5971\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H1931\"* dwell|strong=\"H3427\"* therein|strong=\"H3427\"*, whether|strong=\"H7200\"* they|strong=\"H5921\"* are|strong=\"H5971\"* strong|strong=\"H2389\"* or|strong=\"H7200\"* weak|strong=\"H7504\"*, whether|strong=\"H7200\"* they|strong=\"H5921\"* are|strong=\"H5971\"* few|strong=\"H4592\"* or|strong=\"H7200\"* many|strong=\"H7227\"*;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H5892\"* what|strong=\"H4100\"* the|strong=\"H3427\"* land is|strong=\"H1931\"* that|strong=\"H1931\"* they|strong=\"H2007\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"*, whether it|strong=\"H1931\"* is|strong=\"H1931\"* good|strong=\"H2896\"* or|strong=\"H2896\"* bad|strong=\"H7451\"*; and|strong=\"H5892\"* what|strong=\"H4100\"* cities|strong=\"H5892\"* they|strong=\"H2007\"* are|strong=\"H4100\"* that|strong=\"H1931\"* they|strong=\"H2007\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"*, whether in|strong=\"H3427\"* camps|strong=\"H4264\"*, or|strong=\"H2896\"* in|strong=\"H3427\"* strongholds|strong=\"H4013\"*;" + }, + { + "verseNum": 20, + "text": "and|strong=\"H3117\"* what|strong=\"H4100\"* the|strong=\"H3947\"* land is|strong=\"H3426\"*, whether it|strong=\"H1931\"* is|strong=\"H3426\"* fertile|strong=\"H8082\"* or|strong=\"H3117\"* poor|strong=\"H7330\"*, whether there|strong=\"H3426\"* is|strong=\"H3426\"* wood|strong=\"H6086\"* therein, or|strong=\"H3117\"* not|strong=\"H3947\"*. Be|strong=\"H3426\"* courageous|strong=\"H2388\"*, and|strong=\"H3117\"* bring|strong=\"H3947\"* some|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3947\"* fruit|strong=\"H6529\"* of|strong=\"H3117\"* the|strong=\"H3947\"* land.” Now|strong=\"H3117\"* the|strong=\"H3947\"* time|strong=\"H3117\"* was|strong=\"H1931\"* the|strong=\"H3947\"* time|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3947\"* first-ripe grapes|strong=\"H6025\"*." + }, + { + "verseNum": 21, + "text": "So|strong=\"H5927\"* they|strong=\"H5704\"* went|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H5927\"* spied|strong=\"H8446\"* out|strong=\"H8446\"* the|strong=\"H5704\"* land from|strong=\"H5927\"* the|strong=\"H5704\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* Zin|strong=\"H6790\"* to|strong=\"H5704\"* Rehob|strong=\"H7340\"*, to|strong=\"H5704\"* the|strong=\"H5704\"* entrance of|strong=\"H4057\"* Hamath|strong=\"H2574\"*." + }, + { + "verseNum": 22, + "text": "They|strong=\"H8033\"* went|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H8141\"* the|strong=\"H6440\"* South|strong=\"H5045\"*, and|strong=\"H4714\"* came|strong=\"H5927\"* to|strong=\"H5704\"* Hebron|strong=\"H2275\"*; and|strong=\"H4714\"* Ahiman, Sheshai|strong=\"H8344\"*, and|strong=\"H4714\"* Talmai|strong=\"H8526\"*, the|strong=\"H6440\"* children|strong=\"H3211\"* of|strong=\"H8141\"* Anak|strong=\"H6061\"*, were|strong=\"H4714\"* there|strong=\"H8033\"*. (Now|strong=\"H4714\"* Hebron|strong=\"H2275\"* was|strong=\"H8141\"* built|strong=\"H1129\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* before|strong=\"H6440\"* Zoan|strong=\"H6814\"* in|strong=\"H8141\"* Egypt|strong=\"H4714\"*.)" + }, + { + "verseNum": 23, + "text": "They|strong=\"H8033\"* came|strong=\"H8147\"* to|strong=\"H5704\"* the|strong=\"H5375\"* valley|strong=\"H5158\"* of|strong=\"H4480\"* Eshcol, and|strong=\"H8033\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* from|strong=\"H4480\"* there|strong=\"H8033\"* a|strong=\"H3068\"* branch|strong=\"H2156\"* with|strong=\"H3772\"* one|strong=\"H4480\"* cluster of|strong=\"H4480\"* grapes|strong=\"H6025\"*, and|strong=\"H8033\"* they|strong=\"H8033\"* bore|strong=\"H5375\"* it|strong=\"H5375\"* on|strong=\"H5375\"* a|strong=\"H3068\"* staff|strong=\"H4132\"* between|strong=\"H5704\"* two|strong=\"H8147\"*. They|strong=\"H8033\"* also brought|strong=\"H5375\"* some|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5375\"* pomegranates|strong=\"H7416\"* and|strong=\"H8033\"* figs|strong=\"H8384\"*." + }, + { + "verseNum": 24, + "text": "That|strong=\"H1931\"* place|strong=\"H4725\"* was|strong=\"H3478\"* called|strong=\"H7121\"* the|strong=\"H5921\"* valley|strong=\"H5158\"* of|strong=\"H1121\"* Eshcol, because|strong=\"H5921\"* of|strong=\"H1121\"* the|strong=\"H5921\"* cluster which|strong=\"H1931\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* from|strong=\"H3772\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"H3117\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* spying|strong=\"H8446\"* out|strong=\"H8446\"* the|strong=\"H7725\"* land at|strong=\"H3117\"* the|strong=\"H7725\"* end|strong=\"H7093\"* of|strong=\"H3117\"* forty days|strong=\"H3117\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H1697\"* went|strong=\"H3212\"* and|strong=\"H1121\"* came|strong=\"H3478\"* to|strong=\"H7725\"* Moses|strong=\"H4872\"*, to|strong=\"H7725\"* Aaron, and|strong=\"H1121\"* to|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H7725\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Paran|strong=\"H6290\"*, to|strong=\"H7725\"* Kadesh|strong=\"H6946\"*; and|strong=\"H1121\"* brought|strong=\"H7725\"* back|strong=\"H7725\"* word|strong=\"H1697\"* to|strong=\"H7725\"* them|strong=\"H7725\"* and|strong=\"H1121\"* to|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*. They|strong=\"H1697\"* showed|strong=\"H7200\"* them|strong=\"H7725\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 27, + "text": "They|strong=\"H1931\"* told|strong=\"H5608\"* him|strong=\"H7971\"*, and|strong=\"H7971\"* said, “We came to|strong=\"H7971\"* the|strong=\"H7971\"* land where|strong=\"H2088\"* you|strong=\"H7971\"* sent|strong=\"H7971\"* us|strong=\"H5608\"*. Surely|strong=\"H1571\"* it|strong=\"H1931\"* flows|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H7971\"* honey|strong=\"H1706\"*, and|strong=\"H7971\"* this|strong=\"H2088\"* is|strong=\"H2088\"* its|strong=\"H6529\"* fruit|strong=\"H6529\"*." + }, + { + "verseNum": 28, + "text": "However|strong=\"H1571\"*, the|strong=\"H7200\"* people|strong=\"H5971\"* who|strong=\"H5971\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H7200\"* land are|strong=\"H5971\"* strong|strong=\"H5794\"*, and|strong=\"H1419\"* the|strong=\"H7200\"* cities|strong=\"H5892\"* are|strong=\"H5971\"* fortified|strong=\"H1219\"* and|strong=\"H1419\"* very|strong=\"H3966\"* large|strong=\"H1419\"*. Moreover|strong=\"H1571\"*, we|strong=\"H3068\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* children|strong=\"H3211\"* of|strong=\"H3427\"* Anak|strong=\"H6061\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 29, + "text": "Amalek|strong=\"H6002\"* dwells|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* land of|strong=\"H3027\"* the|strong=\"H5921\"* South|strong=\"H5045\"*. The|strong=\"H5921\"* Hittite|strong=\"H2850\"*, the|strong=\"H5921\"* Jebusite|strong=\"H2983\"*, and|strong=\"H3027\"* the|strong=\"H5921\"* Amorite dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*. The|strong=\"H5921\"* Canaanite|strong=\"H3669\"* dwells|strong=\"H3427\"* by|strong=\"H3027\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*, and|strong=\"H3027\"* along|strong=\"H5921\"* the|strong=\"H5921\"* side|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*.”" + }, + { + "verseNum": 30, + "text": "Caleb|strong=\"H3612\"* stilled|strong=\"H2013\"* the|strong=\"H3588\"* people|strong=\"H5971\"* before|strong=\"H5971\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* said, “Let’s go|strong=\"H5927\"* up|strong=\"H5927\"* at|strong=\"H5927\"* once|strong=\"H5927\"*, and|strong=\"H4872\"* possess|strong=\"H3423\"* it|strong=\"H3588\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H5971\"* well able|strong=\"H3201\"* to|strong=\"H3201\"* overcome|strong=\"H3201\"* it|strong=\"H3588\"*!”" + }, + { + "verseNum": 31, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* men|strong=\"H5971\"* who|strong=\"H1931\"* went|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* him|strong=\"H5973\"* said, “We|strong=\"H3588\"* aren’t able|strong=\"H3201\"* to|strong=\"H3201\"* go|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5973\"* the|strong=\"H3588\"* people|strong=\"H5971\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H5971\"* stronger|strong=\"H2389\"* than|strong=\"H4480\"* we|strong=\"H3068\"*.”" + }, + { + "verseNum": 32, + "text": "They|strong=\"H1931\"* brought|strong=\"H3318\"* up|strong=\"H7200\"* an|strong=\"H7200\"* evil|strong=\"H1681\"* report|strong=\"H1681\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land which|strong=\"H1931\"* they|strong=\"H1931\"* had|strong=\"H3478\"* spied|strong=\"H8446\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying, “The|strong=\"H3605\"* land, through|strong=\"H5674\"* which|strong=\"H1931\"* we|strong=\"H3068\"* have|strong=\"H5971\"* gone|strong=\"H3318\"* to|strong=\"H3318\"* spy|strong=\"H8446\"* it|strong=\"H1931\"* out|strong=\"H3318\"*, is|strong=\"H1931\"* a|strong=\"H3068\"* land that|strong=\"H5971\"* eats up|strong=\"H7200\"* its|strong=\"H3605\"* inhabitants|strong=\"H3427\"*; and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* we|strong=\"H3068\"* saw|strong=\"H7200\"* in|strong=\"H3427\"* it|strong=\"H1931\"* are|strong=\"H5971\"* men|strong=\"H1121\"* of|strong=\"H1121\"* great stature|strong=\"H4060\"*." + }, + { + "verseNum": 33, + "text": "There|strong=\"H8033\"* we|strong=\"H3068\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* Nephilim|strong=\"H5303\"*,+ 13:33 or, giants* the|strong=\"H7200\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Anak|strong=\"H6061\"*, who|strong=\"H1121\"* come|strong=\"H1961\"* from|strong=\"H4480\"* the|strong=\"H7200\"* Nephilim|strong=\"H5303\"*.+ 13:33 or, giants* We|strong=\"H8033\"* were|strong=\"H1961\"* in|strong=\"H1121\"* our|strong=\"H7200\"* own|strong=\"H1961\"* sight|strong=\"H5869\"* as|strong=\"H1961\"* grasshoppers|strong=\"H2284\"*, and|strong=\"H1121\"* so|strong=\"H3651\"* we|strong=\"H3068\"* were|strong=\"H1961\"* in|strong=\"H1121\"* their|strong=\"H7200\"* sight|strong=\"H5869\"*.”" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H3605\"* voice|strong=\"H6963\"*, and|strong=\"H5971\"* cried|strong=\"H5414\"*; and|strong=\"H5971\"* the|strong=\"H3605\"* people|strong=\"H5971\"* wept|strong=\"H1058\"* that|strong=\"H5971\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 2, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* murmured|strong=\"H3885\"* against|strong=\"H5921\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* against|strong=\"H5921\"* Aaron. The|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* said to|strong=\"H3478\"* them|strong=\"H5921\"*, “We|strong=\"H3605\"* wish that|strong=\"H3605\"* we|strong=\"H3068\"* had|strong=\"H3478\"* died|strong=\"H4191\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, or|strong=\"H1121\"* that|strong=\"H3605\"* we|strong=\"H3068\"* had|strong=\"H3478\"* died|strong=\"H4191\"* in|strong=\"H5921\"* this|strong=\"H2088\"* wilderness|strong=\"H4057\"*!" + }, + { + "verseNum": 3, + "text": "Why|strong=\"H4100\"* does|strong=\"H4100\"* Yahweh|strong=\"H3068\"* bring|strong=\"H7725\"* us|strong=\"H7725\"* to|strong=\"H7725\"* this|strong=\"H2063\"* land, to|strong=\"H7725\"* fall|strong=\"H5307\"* by|strong=\"H3068\"* the|strong=\"H3068\"* sword|strong=\"H2719\"*? Our|strong=\"H3068\"* wives and|strong=\"H3068\"* our|strong=\"H3068\"* little|strong=\"H2945\"* ones|strong=\"H2945\"* will|strong=\"H3068\"* be|strong=\"H1961\"* captured or|strong=\"H3808\"* killed|strong=\"H2719\"*! Wouldn’t it|strong=\"H7725\"* be|strong=\"H1961\"* better|strong=\"H2896\"* for|strong=\"H4714\"* us|strong=\"H7725\"* to|strong=\"H7725\"* return|strong=\"H7725\"* into|strong=\"H7725\"* Egypt|strong=\"H4714\"*?”" + }, + { + "verseNum": 4, + "text": "They|strong=\"H5414\"* said to|strong=\"H7725\"* one another, “Let|strong=\"H5414\"*’s choose a|strong=\"H3068\"* leader|strong=\"H7218\"*, and|strong=\"H7725\"* let|strong=\"H5414\"*’s return|strong=\"H7725\"* into|strong=\"H7725\"* Egypt|strong=\"H4714\"*.”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H5307\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron fell|strong=\"H5307\"* on|strong=\"H5921\"* their|strong=\"H3605\"* faces|strong=\"H6440\"* before|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H1121\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 6, + "text": "Joshua|strong=\"H3091\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"* and|strong=\"H1121\"* Caleb|strong=\"H3612\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"*, who|strong=\"H1121\"* were|strong=\"H1121\"* of|strong=\"H1121\"* those|strong=\"H4480\"* who|strong=\"H1121\"* spied|strong=\"H8446\"* out|strong=\"H4480\"* the|strong=\"H4480\"* land, tore|strong=\"H7167\"* their|strong=\"H7167\"* clothes." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3478\"* spoke to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying, “The|strong=\"H3605\"* land, which|strong=\"H3478\"* we|strong=\"H3068\"* passed|strong=\"H5674\"* through|strong=\"H5674\"* to|strong=\"H3478\"* spy|strong=\"H8446\"* it|strong=\"H5674\"* out|strong=\"H8446\"*, is|strong=\"H2896\"* an|strong=\"H3478\"* exceedingly|strong=\"H3966\"* good|strong=\"H2896\"* land." + }, + { + "verseNum": 8, + "text": "If|strong=\"H1931\"* Yahweh|strong=\"H3068\"* delights|strong=\"H2654\"* in|strong=\"H3068\"* us|strong=\"H5414\"*, then|strong=\"H5414\"* he|strong=\"H1931\"* will|strong=\"H3068\"* bring|strong=\"H5414\"* us|strong=\"H5414\"* into|strong=\"H5414\"* this|strong=\"H2063\"* land, and|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* us|strong=\"H5414\"*: a|strong=\"H3068\"* land which|strong=\"H1931\"* flows|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H3068\"* honey|strong=\"H1706\"*." + }, + { + "verseNum": 9, + "text": "Only|strong=\"H3588\"* don’t rebel|strong=\"H4775\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, neither fear|strong=\"H3372\"* the|strong=\"H5921\"* people|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H5921\"* land; for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* bread|strong=\"H3899\"* for|strong=\"H3588\"* us|strong=\"H5921\"*. Their|strong=\"H3068\"* defense is|strong=\"H3068\"* removed|strong=\"H5493\"* from|strong=\"H5493\"* over|strong=\"H5921\"* them|strong=\"H1992\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H3068\"* us|strong=\"H5921\"*. Don’t fear|strong=\"H3372\"* them|strong=\"H1992\"*.”" + }, + { + "verseNum": 10, + "text": "But|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* threatened|strong=\"H7275\"* to|strong=\"H3478\"* stone|strong=\"H7275\"* them|strong=\"H7200\"* with|strong=\"H3068\"* stones." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H5704\"* Moses|strong=\"H4872\"*, “How|strong=\"H5704\"* long|strong=\"H5704\"* will|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"* despise|strong=\"H5006\"* me|strong=\"H6213\"*? How|strong=\"H5704\"* long|strong=\"H5704\"* will|strong=\"H3068\"* they|strong=\"H3068\"* not|strong=\"H3808\"* believe in|strong=\"H3068\"* me|strong=\"H6213\"*, for|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* signs which|strong=\"H3068\"* I|strong=\"H5704\"* have|strong=\"H3068\"* worked|strong=\"H6213\"* among|strong=\"H7130\"* them|strong=\"H6213\"*?" + }, + { + "verseNum": 12, + "text": "I|strong=\"H4480\"* will|strong=\"H1471\"* strike|strong=\"H5221\"* them|strong=\"H5221\"* with|strong=\"H6213\"* the|strong=\"H5221\"* pestilence|strong=\"H1698\"*, and|strong=\"H1419\"* disinherit|strong=\"H3423\"* them|strong=\"H5221\"*, and|strong=\"H1419\"* will|strong=\"H1471\"* make|strong=\"H6213\"* of|strong=\"H4480\"* you|strong=\"H6213\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* greater|strong=\"H1419\"* and|strong=\"H1419\"* mightier|strong=\"H6099\"* than|strong=\"H4480\"* they|strong=\"H6213\"*.”" + }, + { + "verseNum": 13, + "text": "Moses|strong=\"H4872\"* said|strong=\"H8085\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, “Then|strong=\"H2088\"* the|strong=\"H8085\"* Egyptians|strong=\"H4713\"* will|strong=\"H3068\"* hear|strong=\"H8085\"* it|strong=\"H3588\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* this|strong=\"H2088\"* people|strong=\"H5971\"* in|strong=\"H3068\"* your|strong=\"H3068\"* might|strong=\"H3581\"* from|strong=\"H5927\"* among|strong=\"H7130\"* them|strong=\"H5927\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* tell|strong=\"H8085\"* it|strong=\"H5921\"* to|strong=\"H1980\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* this|strong=\"H2088\"* land|strong=\"H7130\"*. They|strong=\"H3588\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* you|strong=\"H3588\"* Yahweh|strong=\"H3068\"* are|strong=\"H5971\"* among|strong=\"H7130\"* this|strong=\"H2088\"* people|strong=\"H5971\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* Yahweh|strong=\"H3068\"* are|strong=\"H5971\"* seen|strong=\"H7200\"* face|strong=\"H6440\"* to|strong=\"H1980\"* face|strong=\"H6440\"*, and|strong=\"H1980\"* your|strong=\"H3068\"* cloud|strong=\"H6051\"* stands|strong=\"H5975\"* over|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H1980\"* you|strong=\"H3588\"* go|strong=\"H1980\"* before|strong=\"H6440\"* them|strong=\"H5921\"*, in|strong=\"H3427\"* a|strong=\"H3068\"* pillar|strong=\"H5982\"* of|strong=\"H3068\"* cloud|strong=\"H6051\"* by|strong=\"H5921\"* day|strong=\"H3119\"*, and|strong=\"H1980\"* in|strong=\"H3427\"* a|strong=\"H3068\"* pillar|strong=\"H5982\"* of|strong=\"H3068\"* fire by|strong=\"H5921\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H2088\"* if you|strong=\"H5971\"* killed|strong=\"H4191\"* this|strong=\"H2088\"* people|strong=\"H5971\"* as|strong=\"H5971\"* one|strong=\"H2088\"* man|strong=\"H4191\"*, then|strong=\"H2088\"* the|strong=\"H8085\"* nations|strong=\"H1471\"* which|strong=\"H1471\"* have|strong=\"H5971\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* fame|strong=\"H8088\"* of|strong=\"H5971\"* you|strong=\"H5971\"* will|strong=\"H1471\"* speak, saying," + }, + { + "verseNum": 16, + "text": "‘Because|strong=\"H1115\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* not|strong=\"H3201\"* able|strong=\"H3201\"* to|strong=\"H3201\"* bring this|strong=\"H2088\"* people|strong=\"H5971\"* into|strong=\"H2088\"* the|strong=\"H3068\"* land which|strong=\"H3068\"* he|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3201\"* them|strong=\"H7819\"*, therefore|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* slain|strong=\"H7819\"* them|strong=\"H7819\"* in|strong=\"H3068\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"*.’" + }, + { + "verseNum": 17, + "text": "Now|strong=\"H6258\"* please|strong=\"H4994\"* let|strong=\"H4994\"* the|strong=\"H1696\"* power|strong=\"H3581\"* of|strong=\"H1696\"* the|strong=\"H1696\"* Lord+ 14:17 The word translated “Lord” is “Adonai.”* be|strong=\"H4994\"* great|strong=\"H1431\"*, according as|strong=\"H1696\"* you|strong=\"H1696\"* have|strong=\"H1696\"* spoken|strong=\"H1696\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 18, + "text": "‘Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* slow to|strong=\"H3068\"* anger|strong=\"H5375\"*, and|strong=\"H1121\"* abundant|strong=\"H7227\"* in|strong=\"H5921\"* loving kindness|strong=\"H2617\"*, forgiving|strong=\"H5375\"* iniquity|strong=\"H5771\"* and|strong=\"H1121\"* disobedience; and|strong=\"H1121\"* he|strong=\"H3068\"* will|strong=\"H3068\"* by|strong=\"H5921\"* no|strong=\"H3808\"* means|strong=\"H5352\"* clear|strong=\"H5352\"* the|strong=\"H5921\"* guilty|strong=\"H5771\"*, visiting|strong=\"H6485\"* the|strong=\"H5921\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H5921\"* fathers on|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* third|strong=\"H8029\"* and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fourth|strong=\"H7256\"* generation|strong=\"H8029\"*.’" + }, + { + "verseNum": 19, + "text": "Please|strong=\"H4994\"* pardon|strong=\"H5545\"* the|strong=\"H5375\"* iniquity|strong=\"H5771\"* of|strong=\"H5971\"* this|strong=\"H2088\"* people|strong=\"H5971\"* according to|strong=\"H5704\"* the|strong=\"H5375\"* greatness|strong=\"H1433\"* of|strong=\"H5971\"* your|strong=\"H5375\"* loving kindness|strong=\"H2617\"*, and|strong=\"H5971\"* just|strong=\"H2088\"* as|strong=\"H5704\"* you|strong=\"H5704\"* have|strong=\"H5971\"* forgiven|strong=\"H5545\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, from|strong=\"H5704\"* Egypt|strong=\"H4714\"* even|strong=\"H5704\"* until|strong=\"H5704\"* now|strong=\"H4994\"*.”" + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1697\"*, “I|strong=\"H1697\"* have|strong=\"H3068\"* pardoned|strong=\"H5545\"* according to|strong=\"H3068\"* your|strong=\"H3068\"* word|strong=\"H1697\"*;" + }, + { + "verseNum": 21, + "text": "but|strong=\"H3605\"* in|strong=\"H3068\"* very deed—as|strong=\"H3068\"* I|strong=\"H3068\"* live|strong=\"H2416\"*, and|strong=\"H3068\"* as|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth shall|strong=\"H3068\"* be|strong=\"H3068\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"*—" + }, + { + "verseNum": 22, + "text": "because|strong=\"H3588\"* all|strong=\"H3605\"* those|strong=\"H3605\"* men|strong=\"H6213\"* who|strong=\"H3605\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* my|strong=\"H8085\"* glory|strong=\"H3519\"* and|strong=\"H6963\"* my|strong=\"H8085\"* signs, which|strong=\"H2088\"* I|strong=\"H3588\"* worked|strong=\"H6213\"* in|strong=\"H6213\"* Egypt|strong=\"H4714\"* and|strong=\"H6963\"* in|strong=\"H6213\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*, yet|strong=\"H3588\"* have|strong=\"H7200\"* tempted|strong=\"H5254\"* me|strong=\"H7200\"* these|strong=\"H2088\"* ten|strong=\"H6235\"* times|strong=\"H6471\"*, and|strong=\"H6963\"* have|strong=\"H7200\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H6213\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*;" + }, + { + "verseNum": 23, + "text": "surely|strong=\"H7200\"* they|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* see|strong=\"H7200\"* the|strong=\"H3605\"* land which|strong=\"H3605\"* I|strong=\"H7200\"* swore|strong=\"H7650\"* to|strong=\"H7200\"* their|strong=\"H3605\"* fathers, neither|strong=\"H3808\"* shall|strong=\"H3808\"* any|strong=\"H3605\"* of|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* despised|strong=\"H5006\"* me|strong=\"H7200\"* see|strong=\"H7200\"* it|strong=\"H7200\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"H1961\"* my|strong=\"H1961\"* servant|strong=\"H5650\"* Caleb|strong=\"H3612\"*, because|strong=\"H6118\"* he|strong=\"H8033\"* had|strong=\"H1961\"* another spirit|strong=\"H7307\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, and|strong=\"H5650\"* has|strong=\"H1961\"* followed|strong=\"H1961\"* me|strong=\"H5973\"* fully|strong=\"H4390\"*, him|strong=\"H5973\"* I|strong=\"H5650\"* will|strong=\"H1961\"* bring|strong=\"H1961\"* into|strong=\"H1961\"* the|strong=\"H3423\"* land into|strong=\"H1961\"* which|strong=\"H8033\"* he|strong=\"H8033\"* went|strong=\"H1961\"*. His|strong=\"H1961\"* offspring|strong=\"H2233\"* shall|strong=\"H5650\"* possess|strong=\"H3423\"* it|strong=\"H8033\"*." + }, + { + "verseNum": 25, + "text": "Since the|strong=\"H1870\"* Amalekite|strong=\"H6003\"* and|strong=\"H1870\"* the|strong=\"H1870\"* Canaanite|strong=\"H3669\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H1870\"* valley|strong=\"H6010\"*, tomorrow|strong=\"H4279\"* turn|strong=\"H6437\"* and|strong=\"H1870\"* go|strong=\"H5265\"* into|strong=\"H3220\"* the|strong=\"H1870\"* wilderness|strong=\"H4057\"* by|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* to|strong=\"H1870\"* the|strong=\"H1870\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*.”" + }, + { + "verseNum": 26, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H1696\"* Aaron, saying|strong=\"H1696\"*," + }, + { + "verseNum": 27, + "text": "“How|strong=\"H4970\"* long|strong=\"H5704\"* shall|strong=\"H1121\"* I|strong=\"H5704\"* bear with|strong=\"H5921\"* this|strong=\"H2063\"* evil|strong=\"H7451\"* congregation|strong=\"H5712\"* that|strong=\"H8085\"* complain against|strong=\"H5921\"* me|strong=\"H5921\"*? I|strong=\"H5704\"* have|strong=\"H1121\"* heard|strong=\"H8085\"* the|strong=\"H5921\"* complaints|strong=\"H8519\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, which|strong=\"H1992\"* they|strong=\"H1992\"* complain against|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 28, + "text": "Tell|strong=\"H1696\"* them|strong=\"H6213\"*, ‘As|strong=\"H6213\"* I|strong=\"H3651\"* live|strong=\"H2416\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, surely|strong=\"H6213\"* as|strong=\"H6213\"* you|strong=\"H6213\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* in|strong=\"H3068\"* my|strong=\"H3068\"* ears, so|strong=\"H3651\"* I|strong=\"H3651\"* will|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H1696\"* you|strong=\"H6213\"*." + }, + { + "verseNum": 29, + "text": "Your|strong=\"H3605\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* shall|strong=\"H1121\"* fall|strong=\"H5307\"* in|strong=\"H8141\"* this|strong=\"H2088\"* wilderness|strong=\"H4057\"*; and|strong=\"H1121\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* you|strong=\"H3605\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* your|strong=\"H3605\"* whole|strong=\"H3605\"* number|strong=\"H4557\"*, from|strong=\"H5921\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, who|strong=\"H3605\"* have|strong=\"H1121\"* complained against|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 30, + "text": "surely|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H3588\"* come into|strong=\"H3027\"* the|strong=\"H3588\"* land concerning which|strong=\"H3588\"* I|strong=\"H3588\"* swore|strong=\"H5375\"* that|strong=\"H3588\"* I|strong=\"H3588\"* would make|strong=\"H3027\"* you|strong=\"H3588\"* dwell|strong=\"H7931\"* therein, except|strong=\"H3588\"* Caleb|strong=\"H3612\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"*, and|strong=\"H1121\"* Joshua|strong=\"H3091\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*." + }, + { + "verseNum": 31, + "text": "But|strong=\"H1961\"* I|strong=\"H3045\"* will|strong=\"H1961\"* bring|strong=\"H3045\"* in|strong=\"H3045\"* your|strong=\"H3045\"* little|strong=\"H2945\"* ones|strong=\"H2945\"* that|strong=\"H3045\"* you|strong=\"H3045\"* said should be|strong=\"H1961\"* captured or|strong=\"H3045\"* killed, and|strong=\"H3045\"* they|strong=\"H3045\"* shall|strong=\"H3045\"* know|strong=\"H3045\"* the|strong=\"H3045\"* land which|strong=\"H3988\"* you|strong=\"H3045\"* have|strong=\"H1961\"* rejected|strong=\"H3988\"*." + }, + { + "verseNum": 32, + "text": "But as|strong=\"H4057\"* for|strong=\"H2088\"* you|strong=\"H2088\"*, your|strong=\"H2088\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* shall|strong=\"H2088\"* fall|strong=\"H5307\"* in|strong=\"H5307\"* this|strong=\"H2088\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 33, + "text": "Your|strong=\"H5375\"* children|strong=\"H1121\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* wanderers in|strong=\"H8141\"* the|strong=\"H5375\"* wilderness|strong=\"H4057\"* forty years|strong=\"H8141\"*, and|strong=\"H1121\"* shall|strong=\"H1121\"* bear|strong=\"H5375\"* your|strong=\"H5375\"* prostitution|strong=\"H2184\"*, until|strong=\"H5704\"* your|strong=\"H5375\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* are|strong=\"H1121\"* consumed|strong=\"H8552\"* in|strong=\"H8141\"* the|strong=\"H5375\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 34, + "text": "After|strong=\"H3117\"* the|strong=\"H5375\"* number|strong=\"H4557\"* of|strong=\"H3117\"* the|strong=\"H5375\"* days|strong=\"H3117\"* in|strong=\"H8141\"* which|strong=\"H3117\"* you|strong=\"H3117\"* spied|strong=\"H8446\"* out|strong=\"H8446\"* the|strong=\"H5375\"* land, even forty days|strong=\"H3117\"*, for|strong=\"H3117\"* every|strong=\"H3117\"* day|strong=\"H3117\"* a|strong=\"H3068\"* year|strong=\"H8141\"*, you|strong=\"H3117\"* will|strong=\"H3117\"* bear|strong=\"H5375\"* your|strong=\"H5375\"* iniquities|strong=\"H5771\"*, even forty years|strong=\"H8141\"*, and|strong=\"H3117\"* you|strong=\"H3117\"* will|strong=\"H3117\"* know|strong=\"H3045\"* my|strong=\"H3045\"* alienation.’" + }, + { + "verseNum": 35, + "text": "I|strong=\"H5921\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* spoken|strong=\"H1696\"*. I|strong=\"H5921\"* will|strong=\"H3068\"* surely|strong=\"H4191\"* do|strong=\"H6213\"* this|strong=\"H2088\"* to|strong=\"H1696\"* all|strong=\"H3605\"* this|strong=\"H2088\"* evil|strong=\"H7451\"* congregation|strong=\"H5712\"* who|strong=\"H3605\"* are|strong=\"H3068\"* gathered|strong=\"H3259\"* together|strong=\"H3259\"* against|strong=\"H5921\"* me|strong=\"H5921\"*. In|strong=\"H5921\"* this|strong=\"H2088\"* wilderness|strong=\"H4057\"* they|strong=\"H8033\"* shall|strong=\"H3068\"* be|strong=\"H4191\"* consumed|strong=\"H8552\"*, and|strong=\"H3068\"* there|strong=\"H8033\"* they|strong=\"H8033\"* shall|strong=\"H3068\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 36, + "text": "The|strong=\"H3605\"* men|strong=\"H3605\"* whom Moses|strong=\"H4872\"* sent|strong=\"H7971\"* to|strong=\"H7725\"* spy|strong=\"H8446\"* out|strong=\"H3318\"* the|strong=\"H3605\"* land, who|strong=\"H3605\"* returned|strong=\"H7725\"* and|strong=\"H4872\"* made|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* to|strong=\"H7725\"* murmur|strong=\"H3885\"* against|strong=\"H5921\"* him|strong=\"H5921\"* by|strong=\"H5921\"* bringing|strong=\"H3318\"* up|strong=\"H5921\"* an|strong=\"H7971\"* evil|strong=\"H1681\"* report|strong=\"H1681\"* against|strong=\"H5921\"* the|strong=\"H3605\"* land," + }, + { + "verseNum": 37, + "text": "even|strong=\"H3068\"* those|strong=\"H3318\"* men|strong=\"H7451\"* who|strong=\"H3068\"* brought|strong=\"H3318\"* up|strong=\"H3318\"* an|strong=\"H6440\"* evil|strong=\"H7451\"* report|strong=\"H1681\"* of|strong=\"H3068\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, died|strong=\"H4191\"* by|strong=\"H3068\"* the|strong=\"H6440\"* plague|strong=\"H4046\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 38, + "text": "But|strong=\"H1992\"* Joshua|strong=\"H3091\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"* and|strong=\"H1121\"* Caleb|strong=\"H3612\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"* remained|strong=\"H2421\"* alive|strong=\"H2421\"* of|strong=\"H1121\"* those|strong=\"H1992\"* men|strong=\"H1121\"* who|strong=\"H1121\"* went|strong=\"H1980\"* to|strong=\"H1980\"* spy|strong=\"H8446\"* out|strong=\"H4480\"* the|strong=\"H4480\"* land." + }, + { + "verseNum": 39, + "text": "Moses|strong=\"H4872\"* told|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"* mourned greatly|strong=\"H3966\"*." + }, + { + "verseNum": 40, + "text": "They|strong=\"H3588\"* rose|strong=\"H7925\"* up|strong=\"H5927\"* early|strong=\"H7925\"* in|strong=\"H3068\"* the|strong=\"H3588\"* morning|strong=\"H1242\"* and|strong=\"H3068\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* the|strong=\"H3588\"* top|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H3588\"* mountain|strong=\"H2022\"*, saying, “Behold|strong=\"H2005\"*, we|strong=\"H3068\"* are|strong=\"H3068\"* here|strong=\"H2005\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* the|strong=\"H3588\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* promised|strong=\"H3068\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"*.”" + }, + { + "verseNum": 41, + "text": "Moses|strong=\"H4872\"* said|strong=\"H6310\"*, “Why|strong=\"H4100\"* now|strong=\"H2088\"* do|strong=\"H3068\"* you|strong=\"H3808\"* disobey the|strong=\"H3068\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, since|strong=\"H6310\"* it|strong=\"H1931\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* prosper|strong=\"H6743\"*?" + }, + { + "verseNum": 42, + "text": "Don’t go|strong=\"H5927\"* up|strong=\"H5927\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* isn’t among|strong=\"H7130\"* you|strong=\"H3588\"*; that|strong=\"H3588\"* way|strong=\"H6440\"* you|strong=\"H3588\"* won’t be|strong=\"H3808\"* struck|strong=\"H5062\"* down|strong=\"H5062\"* before|strong=\"H6440\"* your|strong=\"H3068\"* enemies." + }, + { + "verseNum": 43, + "text": "For|strong=\"H3588\"* there|strong=\"H8033\"* the|strong=\"H6440\"* Amalekite|strong=\"H6003\"* and|strong=\"H3068\"* the|strong=\"H6440\"* Canaanite|strong=\"H3669\"* are|strong=\"H3068\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* fall|strong=\"H5307\"* by|strong=\"H5921\"* the|strong=\"H6440\"* sword|strong=\"H2719\"* because|strong=\"H3588\"* you|strong=\"H3588\"* turned|strong=\"H7725\"* back|strong=\"H7725\"* from|strong=\"H7725\"* following Yahweh|strong=\"H3068\"*; therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 44, + "text": "But|strong=\"H3808\"* they|strong=\"H3068\"* presumed|strong=\"H6075\"* to|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* the|strong=\"H3068\"* top|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H3068\"* mountain|strong=\"H2022\"*. Nevertheless, the|strong=\"H3068\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* and|strong=\"H4872\"* Moses|strong=\"H4872\"* didn’t depart|strong=\"H4185\"* out|strong=\"H7130\"* of|strong=\"H3068\"* the|strong=\"H3068\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 45, + "text": "Then|strong=\"H3381\"* the|strong=\"H5221\"* Amalekites|strong=\"H6003\"* came|strong=\"H3381\"* down|strong=\"H3381\"*, and|strong=\"H2022\"* the|strong=\"H5221\"* Canaanites|strong=\"H3669\"* who|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* that|strong=\"H1931\"* mountain|strong=\"H2022\"*, and|strong=\"H2022\"* struck|strong=\"H5221\"* them|strong=\"H5221\"* and|strong=\"H2022\"* beat|strong=\"H5221\"* them|strong=\"H5221\"* down|strong=\"H3381\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Hormah|strong=\"H2767\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H5414\"*, ‘When|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1121\"* come|strong=\"H3478\"* into|strong=\"H5414\"* the|strong=\"H3588\"* land of|strong=\"H1121\"* your|strong=\"H5414\"* habitations|strong=\"H4186\"*, which|strong=\"H3478\"* I|strong=\"H3588\"* give|strong=\"H5414\"* to|strong=\"H1696\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H3068\"* will|strong=\"H3068\"* make|strong=\"H6213\"* an|strong=\"H6213\"* offering|strong=\"H5930\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*—a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, or|strong=\"H4480\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"*, to|strong=\"H3068\"* accomplish|strong=\"H6213\"* a|strong=\"H3068\"* vow|strong=\"H5088\"*, or|strong=\"H4480\"* as|strong=\"H6213\"* a|strong=\"H3068\"* free will|strong=\"H3068\"* offering|strong=\"H5930\"*, or|strong=\"H4480\"* in|strong=\"H3068\"* your|strong=\"H3068\"* set|strong=\"H6213\"* feasts|strong=\"H4150\"*, to|strong=\"H3068\"* make|strong=\"H6213\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, of|strong=\"H3068\"* the|strong=\"H6213\"* herd|strong=\"H1241\"*, or|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H6213\"* flock|strong=\"H6629\"*—" + }, + { + "verseNum": 4, + "text": "then|strong=\"H7126\"* he|strong=\"H3068\"* who|strong=\"H3068\"* offers|strong=\"H7126\"* his|strong=\"H3068\"* offering|strong=\"H4503\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* one|strong=\"H3068\"* tenth|strong=\"H6241\"* of|strong=\"H3068\"* an|strong=\"H7126\"* ephah+ 15:4 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H3068\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* one|strong=\"H3068\"* fourth|strong=\"H7243\"* of|strong=\"H3068\"* a|strong=\"H3068\"* hin|strong=\"H1969\"*+ 15:4 A hin is about 6.5 liters or 1.7 gallons.* of|strong=\"H3068\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H5921\"* shall|strong=\"H6213\"* prepare|strong=\"H6213\"* wine|strong=\"H3196\"* for|strong=\"H5921\"* the|strong=\"H5921\"* drink|strong=\"H5262\"* offering|strong=\"H5930\"*, one|strong=\"H3532\"* fourth|strong=\"H7243\"* of|strong=\"H2077\"* a|strong=\"H3068\"* hin|strong=\"H1969\"*, with|strong=\"H6213\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* or|strong=\"H3196\"* for|strong=\"H5921\"* the|strong=\"H5921\"* sacrifice|strong=\"H2077\"*, for|strong=\"H5921\"* each|strong=\"H3532\"* lamb|strong=\"H3532\"*." + }, + { + "verseNum": 6, + "text": "“‘For|strong=\"H6213\"* a|strong=\"H3068\"* ram, you|strong=\"H6213\"* shall|strong=\"H6213\"* prepare|strong=\"H6213\"* for|strong=\"H6213\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* two|strong=\"H8147\"* tenths of|strong=\"H1969\"* an|strong=\"H6213\"* ephah+ 15:6 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H1969\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* the|strong=\"H6213\"* third|strong=\"H7992\"* part|strong=\"H7992\"* of|strong=\"H1969\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* of|strong=\"H1969\"* oil|strong=\"H8081\"*;" + }, + { + "verseNum": 7, + "text": "and|strong=\"H3068\"* for|strong=\"H3068\"* the|strong=\"H3068\"* drink|strong=\"H5262\"* offering|strong=\"H5262\"* you|strong=\"H7126\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* the|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* of|strong=\"H3068\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* of|strong=\"H3068\"* wine|strong=\"H3196\"*, of|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* prepare|strong=\"H6213\"* a|strong=\"H3068\"* bull|strong=\"H1241\"* for|strong=\"H3588\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* or|strong=\"H1121\"* for|strong=\"H3588\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"*, to|strong=\"H3068\"* accomplish|strong=\"H6213\"* a|strong=\"H3068\"* vow|strong=\"H5088\"*, or|strong=\"H1121\"* for|strong=\"H3588\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 9, + "text": "then|strong=\"H7126\"* he|strong=\"H5921\"* shall|strong=\"H1121\"* offer|strong=\"H7126\"* with|strong=\"H1101\"* the|strong=\"H5921\"* bull|strong=\"H1241\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H1121\"* three|strong=\"H7969\"* tenths of|strong=\"H1121\"* an|strong=\"H7126\"* ephah+ 15:9 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H1121\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* half|strong=\"H2677\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* of|strong=\"H1121\"* oil|strong=\"H8081\"*;" + }, + { + "verseNum": 10, + "text": "and|strong=\"H3068\"* you|strong=\"H7126\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* for|strong=\"H3068\"* the|strong=\"H3068\"* drink|strong=\"H5262\"* offering|strong=\"H5262\"* half|strong=\"H2677\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* of|strong=\"H3068\"* wine|strong=\"H3196\"*, for|strong=\"H3068\"* an|strong=\"H7126\"* offering|strong=\"H5262\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire, of|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "Thus|strong=\"H3602\"* it|strong=\"H6213\"* shall|strong=\"H7794\"* be done|strong=\"H6213\"* for|strong=\"H6213\"* each|strong=\"H3532\"* bull|strong=\"H7794\"*, for|strong=\"H6213\"* each|strong=\"H3532\"* ram, for|strong=\"H6213\"* each|strong=\"H3532\"* of|strong=\"H6213\"* the|strong=\"H6213\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"*, or|strong=\"H7794\"* of|strong=\"H6213\"* the|strong=\"H6213\"* young goats|strong=\"H5795\"*." + }, + { + "verseNum": 12, + "text": "According|strong=\"H3602\"* to|strong=\"H6213\"* the|strong=\"H6213\"* number|strong=\"H4557\"* that|strong=\"H6213\"* you|strong=\"H6213\"* shall|strong=\"H6213\"* prepare|strong=\"H6213\"*, so|strong=\"H6213\"* you|strong=\"H6213\"* shall|strong=\"H6213\"* do|strong=\"H6213\"* to|strong=\"H6213\"* everyone according|strong=\"H3602\"* to|strong=\"H6213\"* their|strong=\"H6213\"* number|strong=\"H4557\"*." + }, + { + "verseNum": 13, + "text": "“‘All|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H3068\"* native-born shall|strong=\"H3068\"* do|strong=\"H6213\"* these|strong=\"H6213\"* things|strong=\"H3605\"* in|strong=\"H3068\"* this|strong=\"H6213\"* way|strong=\"H3605\"*, in|strong=\"H3068\"* offering|strong=\"H7126\"* an|strong=\"H6213\"* offering|strong=\"H7126\"* made|strong=\"H6213\"* by|strong=\"H3068\"* fire, of|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* stranger|strong=\"H1616\"* lives|strong=\"H1481\"* as|strong=\"H6213\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"* with|strong=\"H3068\"* you|strong=\"H3588\"*, or|strong=\"H3068\"* whoever may|strong=\"H3068\"* be|strong=\"H3068\"* among|strong=\"H8432\"* you|strong=\"H3588\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* offer|strong=\"H6213\"* an|strong=\"H6213\"* offering|strong=\"H3068\"* made|strong=\"H6213\"* by|strong=\"H3068\"* fire, of|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, as|strong=\"H6213\"* you|strong=\"H3588\"* do|strong=\"H6213\"*, so|strong=\"H3651\"* he|strong=\"H3588\"* shall|strong=\"H3068\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H2708\"* the|strong=\"H6440\"* assembly|strong=\"H6951\"*, there|strong=\"H1961\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* one|strong=\"H1961\"* statute|strong=\"H2708\"* for|strong=\"H2708\"* you|strong=\"H6440\"* and|strong=\"H3068\"* for|strong=\"H2708\"* the|strong=\"H6440\"* stranger|strong=\"H1616\"* who|strong=\"H3068\"* lives|strong=\"H1481\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"*, a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*. As|strong=\"H1961\"* you|strong=\"H6440\"* are|strong=\"H3068\"*, so|strong=\"H1961\"* the|strong=\"H6440\"* foreigner|strong=\"H1616\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "One|strong=\"H1961\"* law|strong=\"H8451\"* and|strong=\"H4941\"* one|strong=\"H1961\"* ordinance|strong=\"H4941\"* shall|strong=\"H8451\"* be|strong=\"H1961\"* for|strong=\"H4941\"* you|strong=\"H1961\"* and|strong=\"H4941\"* for|strong=\"H4941\"* the|strong=\"H1961\"* stranger|strong=\"H1616\"* who|strong=\"H1616\"* lives|strong=\"H1481\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"* with|strong=\"H4941\"* you|strong=\"H1961\"*.’”" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 18, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1696\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H1121\"*, ‘When|strong=\"H1696\"* you|strong=\"H1696\"* come|strong=\"H3478\"* into the|strong=\"H1696\"* land where|strong=\"H8033\"* I|strong=\"H1121\"* bring you|strong=\"H1696\"*," + }, + { + "verseNum": 19, + "text": "then|strong=\"H1961\"* it|strong=\"H1961\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* that|strong=\"H3068\"* when|strong=\"H1961\"* you|strong=\"H1961\"* eat|strong=\"H3899\"* of|strong=\"H3068\"* the|strong=\"H3068\"* bread|strong=\"H3899\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land, you|strong=\"H1961\"* shall|strong=\"H3068\"* offer|strong=\"H7311\"* up|strong=\"H7311\"* a|strong=\"H3068\"* wave offering|strong=\"H8641\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 20, + "text": "Of|strong=\"H1637\"* the|strong=\"H3651\"* first|strong=\"H7225\"* of|strong=\"H1637\"* your|strong=\"H7311\"* dough|strong=\"H6182\"* you|strong=\"H3651\"* shall offer|strong=\"H7311\"* up|strong=\"H7311\"* a|strong=\"H3068\"* cake|strong=\"H2471\"* for|strong=\"H3651\"* a|strong=\"H3068\"* wave offering|strong=\"H8641\"*. As|strong=\"H3651\"* the|strong=\"H3651\"* wave offering|strong=\"H8641\"* of|strong=\"H1637\"* the|strong=\"H3651\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*, so|strong=\"H3651\"* you|strong=\"H3651\"* shall heave|strong=\"H8641\"* it|strong=\"H3651\"*." + }, + { + "verseNum": 21, + "text": "Of|strong=\"H3068\"* the|strong=\"H5414\"* first|strong=\"H7225\"* of|strong=\"H3068\"* your|strong=\"H3068\"* dough|strong=\"H6182\"*, you|strong=\"H5414\"* shall|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* a|strong=\"H3068\"* wave offering|strong=\"H8641\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 22, + "text": "“‘When|strong=\"H3588\"* you|strong=\"H3588\"* err|strong=\"H7686\"*, and|strong=\"H4872\"* don’t observe|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H1696\"* commandments|strong=\"H4687\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*—" + }, + { + "verseNum": 23, + "text": "even|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*, from|strong=\"H4480\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* gave|strong=\"H6680\"* commandment|strong=\"H6680\"* and|strong=\"H4872\"* onward|strong=\"H1973\"* throughout|strong=\"H3605\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*—" + }, + { + "verseNum": 24, + "text": "then|strong=\"H1961\"* it|strong=\"H6213\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, if|strong=\"H1961\"* it|strong=\"H6213\"* was|strong=\"H3068\"* done|strong=\"H6213\"* unwittingly|strong=\"H7684\"*, without|strong=\"H6499\"* the|strong=\"H3605\"* knowledge|strong=\"H5869\"* of|strong=\"H1121\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*, that|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* shall|strong=\"H3068\"* offer|strong=\"H6213\"* one|strong=\"H3605\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* for|strong=\"H6213\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, for|strong=\"H6213\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, with|strong=\"H3068\"* its|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H1121\"* its|strong=\"H3605\"* drink|strong=\"H5262\"* offering|strong=\"H4503\"*, according|strong=\"H4941\"* to|strong=\"H3068\"* the|strong=\"H3605\"* ordinance|strong=\"H4941\"*, and|strong=\"H1121\"* one|strong=\"H3605\"* male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H6213\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* shall|strong=\"H3548\"* be|strong=\"H3068\"* forgiven|strong=\"H5545\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* was|strong=\"H3068\"* an|strong=\"H3588\"* error|strong=\"H7684\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* have|strong=\"H3068\"* brought|strong=\"H3548\"* their|strong=\"H3605\"* offering|strong=\"H2403\"*, an|strong=\"H3588\"* offering|strong=\"H2403\"* made|strong=\"H3722\"* by|strong=\"H5921\"* fire to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* their|strong=\"H3605\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* their|strong=\"H3605\"* error|strong=\"H7684\"*." + }, + { + "verseNum": 26, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* forgiven|strong=\"H5545\"*, as|strong=\"H3588\"* well as|strong=\"H3588\"* the|strong=\"H3605\"* stranger|strong=\"H1616\"* who|strong=\"H3605\"* lives|strong=\"H1481\"* as|strong=\"H3588\"* a|strong=\"H3068\"* foreigner|strong=\"H1121\"* among|strong=\"H8432\"* them|strong=\"H8432\"*; for|strong=\"H3588\"* with|strong=\"H5971\"* regard to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, it|strong=\"H3588\"* was|strong=\"H3478\"* done|strong=\"H3478\"* unwittingly|strong=\"H7684\"*." + }, + { + "verseNum": 27, + "text": "“‘If|strong=\"H2398\"* a|strong=\"H3068\"* person|strong=\"H5315\"* sins|strong=\"H2403\"* unwittingly|strong=\"H7684\"*, then|strong=\"H7126\"* he|strong=\"H8141\"* shall|strong=\"H5315\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* female|strong=\"H5795\"* goat|strong=\"H5795\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1323\"* for|strong=\"H5315\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H6440\"* soul|strong=\"H5315\"* who|strong=\"H3068\"* errs|strong=\"H2398\"* when|strong=\"H3068\"* he|strong=\"H3068\"* sins|strong=\"H2398\"* unwittingly|strong=\"H7684\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. He|strong=\"H3068\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H6440\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* shall|strong=\"H3548\"* be|strong=\"H3068\"* forgiven|strong=\"H5545\"*." + }, + { + "verseNum": 29, + "text": "You|strong=\"H6213\"* shall|strong=\"H1121\"* have|strong=\"H1961\"* one|strong=\"H1121\"* law|strong=\"H8451\"* for|strong=\"H6213\"* him|strong=\"H6213\"* who|strong=\"H1616\"* does|strong=\"H6213\"* anything|strong=\"H6213\"* unwittingly|strong=\"H7684\"*, for|strong=\"H6213\"* him|strong=\"H6213\"* who|strong=\"H1616\"* is|strong=\"H3478\"* native-born among|strong=\"H8432\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* for|strong=\"H6213\"* the|strong=\"H6213\"* stranger|strong=\"H1616\"* who|strong=\"H1616\"* lives|strong=\"H1481\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner|strong=\"H1121\"* among|strong=\"H8432\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 30, + "text": "“‘But|strong=\"H1931\"* the|strong=\"H6213\"* soul|strong=\"H5315\"* who|strong=\"H1931\"* does|strong=\"H6213\"* anything|strong=\"H4480\"* with|strong=\"H3068\"* a|strong=\"H3068\"* high|strong=\"H6213\"* hand|strong=\"H3027\"*, whether|strong=\"H4480\"* he|strong=\"H1931\"* is|strong=\"H3068\"* native-born or|strong=\"H4480\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"*, blasphemes Yahweh|strong=\"H3068\"*. That|strong=\"H5971\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* be|strong=\"H3027\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H4480\"* among|strong=\"H7130\"* his|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 31, + "text": "Because|strong=\"H3588\"* he|strong=\"H1931\"* has|strong=\"H3068\"* despised Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, and|strong=\"H3068\"* has|strong=\"H3068\"* broken|strong=\"H6565\"* his|strong=\"H3068\"* commandment|strong=\"H4687\"*, that|strong=\"H3588\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* be|strong=\"H1697\"* utterly|strong=\"H6565\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*. His|strong=\"H3068\"* iniquity|strong=\"H5771\"* shall|strong=\"H3068\"* be|strong=\"H1697\"* on|strong=\"H3068\"* him|strong=\"H1931\"*.’”" + }, + { + "verseNum": 32, + "text": "While|strong=\"H1961\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3117\"* wilderness|strong=\"H4057\"*, they|strong=\"H3117\"* found|strong=\"H4672\"* a|strong=\"H3068\"* man|strong=\"H1121\"* gathering|strong=\"H7197\"* sticks|strong=\"H6086\"* on|strong=\"H3117\"* the|strong=\"H3117\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 33, + "text": "Those|strong=\"H3605\"* who|strong=\"H3605\"* found|strong=\"H4672\"* him|strong=\"H4672\"* gathering|strong=\"H7197\"* sticks|strong=\"H6086\"* brought|strong=\"H7126\"* him|strong=\"H4672\"* to|strong=\"H7126\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron, and|strong=\"H4872\"* to|strong=\"H7126\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*." + }, + { + "verseNum": 34, + "text": "They|strong=\"H3588\"* put|strong=\"H3240\"* him|strong=\"H6213\"* in|strong=\"H6213\"* custody|strong=\"H4929\"*, because|strong=\"H3588\"* it|strong=\"H3588\"* had|strong=\"H3588\"* not|strong=\"H3808\"* been|strong=\"H3808\"* declared|strong=\"H6567\"* what|strong=\"H4100\"* should|strong=\"H4100\"* be|strong=\"H3808\"* done|strong=\"H6213\"* to|strong=\"H6213\"* him|strong=\"H6213\"*." + }, + { + "verseNum": 35, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H4191\"* Moses|strong=\"H4872\"*, “The|strong=\"H3605\"* man|strong=\"H4191\"* shall|strong=\"H3068\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* shall|strong=\"H3068\"* stone|strong=\"H7275\"* him|strong=\"H4191\"* with|strong=\"H3068\"* stones outside|strong=\"H2351\"* of|strong=\"H3068\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*.”" + }, + { + "verseNum": 36, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* brought|strong=\"H3318\"* him|strong=\"H6680\"* outside|strong=\"H2351\"* of|strong=\"H3068\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*, and|strong=\"H4872\"* stoned|strong=\"H7275\"* him|strong=\"H6680\"* to|strong=\"H3318\"* death|strong=\"H4191\"* with|strong=\"H3068\"* stones, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 37, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"*, saying," + }, + { + "verseNum": 38, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H5414\"* that|strong=\"H3478\"* they|strong=\"H5921\"* should|strong=\"H3478\"* make|strong=\"H6213\"* themselves|strong=\"H6213\"* fringes|strong=\"H6734\"*+ 15:38 or, tassels (Hebrew צִיצִ֛ת)* on|strong=\"H5921\"* the|strong=\"H5921\"* borders|strong=\"H3671\"* of|strong=\"H1121\"* their|strong=\"H5414\"* garments throughout|strong=\"H1755\"* their|strong=\"H5414\"* generations|strong=\"H1755\"*, and|strong=\"H1121\"* that|strong=\"H3478\"* they|strong=\"H5921\"* put|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fringe|strong=\"H6734\"*+ 15:38 or, tassel* of|strong=\"H1121\"* each|strong=\"H5414\"* border a|strong=\"H3068\"* cord|strong=\"H6616\"* of|strong=\"H1121\"* blue|strong=\"H8504\"*." + }, + { + "verseNum": 39, + "text": "It|strong=\"H6213\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* to|strong=\"H3068\"* you|strong=\"H3605\"* for|strong=\"H6213\"* a|strong=\"H3068\"* fringe|strong=\"H6734\"*,+ 15:39 or, tassel* that|strong=\"H7200\"* you|strong=\"H3605\"* may|strong=\"H1961\"* see|strong=\"H7200\"* it|strong=\"H6213\"*, and|strong=\"H3068\"* remember|strong=\"H2142\"* all|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s commandments|strong=\"H4687\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"*; and|strong=\"H3068\"* that|strong=\"H7200\"* you|strong=\"H3605\"* don’t follow|strong=\"H8446\"* your|strong=\"H3068\"* own|strong=\"H1961\"* heart|strong=\"H3824\"* and|strong=\"H3068\"* your|strong=\"H3068\"* own|strong=\"H1961\"* eyes|strong=\"H5869\"*, after|strong=\"H1961\"* which|strong=\"H3068\"* you|strong=\"H3605\"* used|strong=\"H6213\"* to|strong=\"H3068\"* play|strong=\"H2181\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"*;" + }, + { + "verseNum": 40, + "text": "so|strong=\"H4616\"* that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H1961\"* remember|strong=\"H2142\"* and|strong=\"H6213\"* do|strong=\"H6213\"* all|strong=\"H3605\"* my|strong=\"H3605\"* commandments|strong=\"H4687\"*, and|strong=\"H6213\"* be|strong=\"H1961\"* holy|strong=\"H6918\"* to|strong=\"H1961\"* your|strong=\"H3605\"* God." + }, + { + "verseNum": 41, + "text": "I|strong=\"H4714\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, to|strong=\"H3318\"* be|strong=\"H1961\"* your|strong=\"H3068\"* God|strong=\"H3068\"*: I|strong=\"H4714\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3947\"* Korah|strong=\"H7141\"*, the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Izhar|strong=\"H3324\"*, the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"*, the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*, with|strong=\"H3947\"* Dathan|strong=\"H1885\"* and|strong=\"H1121\"* Abiram, the|strong=\"H3947\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eliab, and|strong=\"H1121\"* On, the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Peleth|strong=\"H6431\"*, sons|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, took|strong=\"H3947\"* some men|strong=\"H1121\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H3478\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* before|strong=\"H6440\"* Moses|strong=\"H4872\"*, with|strong=\"H6440\"* some of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, two|strong=\"H3967\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* princes|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H6440\"* congregation|strong=\"H5712\"*, called|strong=\"H8034\"* to|strong=\"H3478\"* the|strong=\"H6440\"* assembly|strong=\"H5712\"*, men|strong=\"H1121\"* of|strong=\"H1121\"* renown|strong=\"H8034\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H3588\"* assembled|strong=\"H6950\"* themselves|strong=\"H5921\"* together|strong=\"H6950\"* against|strong=\"H5921\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* against|strong=\"H5921\"* Aaron, and|strong=\"H4872\"* said to|strong=\"H3068\"* them|strong=\"H5921\"*, “You|strong=\"H3588\"* take|strong=\"H5375\"* too|strong=\"H5921\"* much|strong=\"H7227\"* on|strong=\"H5921\"* yourself|strong=\"H5921\"*, since|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* are|strong=\"H3068\"* holy|strong=\"H6918\"*, everyone|strong=\"H3605\"* of|strong=\"H3068\"* them|strong=\"H5921\"*, and|strong=\"H4872\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* among|strong=\"H8432\"* them|strong=\"H5921\"*! Why|strong=\"H4069\"* do|strong=\"H3068\"* you|strong=\"H3588\"* lift|strong=\"H5375\"* yourselves|strong=\"H8432\"* up|strong=\"H5375\"* above|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s assembly|strong=\"H6951\"*?”" + }, + { + "verseNum": 4, + "text": "When|strong=\"H8085\"* Moses|strong=\"H4872\"* heard|strong=\"H8085\"* it|strong=\"H5921\"*, he|strong=\"H5921\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H8085\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Korah|strong=\"H7141\"* and|strong=\"H3068\"* to|strong=\"H1696\"* all|strong=\"H3605\"* his|strong=\"H3605\"* company|strong=\"H5712\"*, “In|strong=\"H3068\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*, Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* show|strong=\"H3045\"* who|strong=\"H3605\"* are|strong=\"H3068\"* his|strong=\"H3605\"*, and|strong=\"H3068\"* who|strong=\"H3605\"* is|strong=\"H3068\"* holy|strong=\"H6918\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* cause him|strong=\"H3605\"* to|strong=\"H1696\"* come|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H1696\"* him|strong=\"H3605\"*. Even|strong=\"H3068\"* him|strong=\"H3605\"* whom he|strong=\"H3068\"* shall|strong=\"H3068\"* choose, he|strong=\"H3068\"* will|strong=\"H3068\"* cause to|strong=\"H1696\"* come|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H1696\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 6, + "text": "Do|strong=\"H6213\"* this|strong=\"H2063\"*: have|strong=\"H3605\"* Korah|strong=\"H7141\"* and|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* company|strong=\"H5712\"* take|strong=\"H3947\"* censers|strong=\"H4289\"*," + }, + { + "verseNum": 7, + "text": "put|strong=\"H5414\"* fire in|strong=\"H5921\"* them|strong=\"H5414\"*, and|strong=\"H1121\"* put|strong=\"H5414\"* incense|strong=\"H7004\"* on|strong=\"H5921\"* them|strong=\"H5414\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* tomorrow|strong=\"H4279\"*. It|strong=\"H5414\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* that|strong=\"H1931\"* the|strong=\"H6440\"* man|strong=\"H1121\"* whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* chooses, he|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6918\"*. You|strong=\"H5414\"* have|strong=\"H1961\"* gone|strong=\"H3068\"* too|strong=\"H5921\"* far|strong=\"H5921\"*, you|strong=\"H5414\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*!”" + }, + { + "verseNum": 8, + "text": "Moses|strong=\"H4872\"* said|strong=\"H8085\"* to|strong=\"H8085\"* Korah|strong=\"H7141\"*, “Hear|strong=\"H8085\"* now|strong=\"H4994\"*, you|strong=\"H4994\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*!" + }, + { + "verseNum": 9, + "text": "Is|strong=\"H3068\"* it|strong=\"H7126\"* a|strong=\"H3068\"* small|strong=\"H4592\"* thing|strong=\"H4592\"* to|strong=\"H3478\"* you|strong=\"H3588\"* that|strong=\"H3588\"* the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* has|strong=\"H3068\"* separated you|strong=\"H3588\"* from|strong=\"H4480\"* the|strong=\"H6440\"* congregation|strong=\"H5712\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* bring|strong=\"H7126\"* you|strong=\"H3588\"* near|strong=\"H7126\"* to|strong=\"H3478\"* himself|strong=\"H6440\"*, to|strong=\"H3478\"* do|strong=\"H5647\"* the|strong=\"H6440\"* service|strong=\"H5656\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s tabernacle|strong=\"H4908\"*, and|strong=\"H3478\"* to|strong=\"H3478\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* congregation|strong=\"H5712\"* to|strong=\"H3478\"* minister|strong=\"H8334\"* to|strong=\"H3478\"* them|strong=\"H6440\"*;" + }, + { + "verseNum": 10, + "text": "and|strong=\"H1121\"* that|strong=\"H3605\"* he|strong=\"H3605\"* has|strong=\"H1571\"* brought|strong=\"H7126\"* you|strong=\"H3605\"* near|strong=\"H7126\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* your|strong=\"H3605\"* brothers|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"* with|strong=\"H3605\"* you|strong=\"H3605\"*? Do|strong=\"H3605\"* you|strong=\"H3605\"* seek|strong=\"H1245\"* the|strong=\"H3605\"* priesthood|strong=\"H3550\"* also|strong=\"H1571\"*?" + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H3651\"* you|strong=\"H3588\"* and|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* company|strong=\"H5712\"* have|strong=\"H3068\"* gathered|strong=\"H3259\"* together|strong=\"H3259\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*! What|strong=\"H4100\"* is|strong=\"H3068\"* Aaron that|strong=\"H3588\"* you|strong=\"H3588\"* complain against|strong=\"H5921\"* him|strong=\"H5921\"*?”" + }, + { + "verseNum": 12, + "text": "Moses|strong=\"H4872\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* call|strong=\"H7121\"* Dathan|strong=\"H1885\"* and|strong=\"H1121\"* Abiram, the|strong=\"H7121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eliab; and|strong=\"H1121\"* they|strong=\"H3808\"* said|strong=\"H7121\"*, “We won’t come|strong=\"H5927\"* up|strong=\"H5927\"*!" + }, + { + "verseNum": 13, + "text": "Is|strong=\"H1571\"* it|strong=\"H5921\"* a|strong=\"H3068\"* small|strong=\"H4592\"* thing|strong=\"H4592\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1571\"* brought|strong=\"H5927\"* us|strong=\"H5921\"* up|strong=\"H5927\"* out|strong=\"H5921\"* of|strong=\"H4057\"* a|strong=\"H3068\"* land flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H2461\"* honey|strong=\"H1706\"*, to|strong=\"H4191\"* kill|strong=\"H4191\"* us|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* must|strong=\"H4191\"* also|strong=\"H1571\"* make|strong=\"H8323\"* yourself|strong=\"H5921\"* a|strong=\"H3068\"* prince|strong=\"H8323\"* over|strong=\"H5921\"* us|strong=\"H5921\"*?" + }, + { + "verseNum": 14, + "text": "Moreover you|strong=\"H5414\"* haven’t brought|strong=\"H5927\"* us|strong=\"H5414\"* into|strong=\"H5927\"* a|strong=\"H3068\"* land|strong=\"H7704\"* flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H5869\"* honey|strong=\"H1706\"*, nor|strong=\"H3808\"* given|strong=\"H5414\"* us|strong=\"H5414\"* inheritance|strong=\"H5159\"* of|strong=\"H5869\"* fields|strong=\"H7704\"* and|strong=\"H5869\"* vineyards|strong=\"H3754\"*. Will|strong=\"H5869\"* you|strong=\"H5414\"* put|strong=\"H5414\"* out|strong=\"H5414\"* the|strong=\"H5414\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* these|strong=\"H1992\"* men|strong=\"H1992\"*? We won’t come|strong=\"H5927\"* up|strong=\"H5927\"*.”" + }, + { + "verseNum": 15, + "text": "Moses|strong=\"H4872\"* was|strong=\"H3068\"* very|strong=\"H3966\"* angry|strong=\"H2734\"*, and|strong=\"H4872\"* said to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, “Don’t respect|strong=\"H6437\"* their|strong=\"H3068\"* offering|strong=\"H4503\"*. I|strong=\"H3808\"* have|strong=\"H3068\"* not|strong=\"H3808\"* taken|strong=\"H5375\"* one|strong=\"H3808\"* donkey|strong=\"H2543\"* from|strong=\"H3068\"* them|strong=\"H1992\"*, neither|strong=\"H3808\"* have|strong=\"H3068\"* I|strong=\"H3808\"* hurt|strong=\"H7489\"* one|strong=\"H3808\"* of|strong=\"H3068\"* them|strong=\"H1992\"*.”" + }, + { + "verseNum": 16, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3068\"* Korah|strong=\"H7141\"*, “You|strong=\"H6440\"* and|strong=\"H4872\"* all|strong=\"H3605\"* your|strong=\"H3068\"* company|strong=\"H5712\"* go|strong=\"H1961\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, you|strong=\"H6440\"*, and|strong=\"H4872\"* they|strong=\"H1992\"*, and|strong=\"H4872\"* Aaron, tomorrow|strong=\"H4279\"*." + }, + { + "verseNum": 17, + "text": "Each|strong=\"H5414\"* man|strong=\"H6440\"* take|strong=\"H3947\"* his|strong=\"H5414\"* censer|strong=\"H4289\"* and|strong=\"H3967\"* put|strong=\"H5414\"* incense|strong=\"H7004\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H3967\"* each|strong=\"H5414\"* man|strong=\"H6440\"* bring|strong=\"H7126\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* his|strong=\"H5414\"* censer|strong=\"H4289\"*, two|strong=\"H3947\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* censers|strong=\"H4289\"*; you|strong=\"H5414\"* also|strong=\"H3068\"*, and|strong=\"H3967\"* Aaron, each|strong=\"H5414\"* with|strong=\"H3068\"* his|strong=\"H5414\"* censer|strong=\"H4289\"*.”" + }, + { + "verseNum": 18, + "text": "They|strong=\"H5921\"* each|strong=\"H5414\"* took|strong=\"H3947\"* his|strong=\"H5414\"* censer|strong=\"H4289\"*, and|strong=\"H4872\"* put|strong=\"H5414\"* fire in|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H4872\"* laid|strong=\"H7760\"* incense|strong=\"H7004\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H4872\"* stood|strong=\"H5975\"* at|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H5921\"* the|strong=\"H5921\"* Tent of|strong=\"H5921\"* Meeting|strong=\"H4150\"* with|strong=\"H5921\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron." + }, + { + "verseNum": 19, + "text": "Korah|strong=\"H7141\"* assembled|strong=\"H6950\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* opposite|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H1696\"* Aaron, saying|strong=\"H1696\"*," + }, + { + "verseNum": 21, + "text": "“Separate yourselves|strong=\"H8432\"* from|strong=\"H8432\"* among|strong=\"H8432\"* this|strong=\"H2063\"* congregation|strong=\"H5712\"*, that|strong=\"H2063\"* I|strong=\"H8432\"* may consume|strong=\"H3615\"* them|strong=\"H3615\"* in|strong=\"H8432\"* a|strong=\"H3068\"* moment|strong=\"H7281\"*!”" + }, + { + "verseNum": 22, + "text": "They|strong=\"H5921\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* their|strong=\"H3605\"* faces|strong=\"H6440\"*, and|strong=\"H6440\"* said, “God, the|strong=\"H3605\"* God of|strong=\"H6440\"* the|strong=\"H3605\"* spirits|strong=\"H7307\"* of|strong=\"H6440\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*, shall|strong=\"H5712\"* one|strong=\"H3605\"* man|strong=\"H3605\"* sin|strong=\"H2398\"*, and|strong=\"H6440\"* will|strong=\"H7307\"* you|strong=\"H6440\"* be|strong=\"H7307\"* angry|strong=\"H7107\"* with|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*?”" + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 24, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5927\"* congregation|strong=\"H5712\"*, saying|strong=\"H1696\"*, ‘Get|strong=\"H5927\"* away|strong=\"H5927\"* from|strong=\"H5927\"* around|strong=\"H5439\"* the|strong=\"H5927\"* tent of|strong=\"H5712\"* Korah|strong=\"H7141\"*, Dathan|strong=\"H1885\"*, and|strong=\"H5927\"* Abiram!’”" + }, + { + "verseNum": 25, + "text": "Moses|strong=\"H4872\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3478\"* Dathan|strong=\"H1885\"* and|strong=\"H6965\"* Abiram; and|strong=\"H6965\"* the|strong=\"H6965\"* elders|strong=\"H2205\"* of|strong=\"H2205\"* Israel|strong=\"H3478\"* followed|strong=\"H3212\"* him|strong=\"H4872\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"H3605\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*, saying|strong=\"H1696\"*, “Depart|strong=\"H5493\"*, please|strong=\"H4994\"*, from|strong=\"H5493\"* the|strong=\"H3605\"* tents of|strong=\"H5921\"* these|strong=\"H1696\"* wicked|strong=\"H7563\"* men|strong=\"H7563\"*, and|strong=\"H2403\"* touch|strong=\"H5060\"* nothing|strong=\"H3605\"* of|strong=\"H5921\"* theirs|strong=\"H5921\"*, lest|strong=\"H6435\"* you|strong=\"H3605\"* be|strong=\"H7563\"* consumed|strong=\"H5595\"* in|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* sins|strong=\"H2403\"*!”" + }, + { + "verseNum": 27, + "text": "So|strong=\"H5927\"* they|strong=\"H5921\"* went|strong=\"H3318\"* away|strong=\"H5927\"* from|strong=\"H3318\"* the|strong=\"H5921\"* tent of|strong=\"H1121\"* Korah|strong=\"H7141\"*, Dathan|strong=\"H1885\"*, and|strong=\"H1121\"* Abiram, on|strong=\"H5921\"* every|strong=\"H5439\"* side|strong=\"H5439\"*. Dathan|strong=\"H1885\"* and|strong=\"H1121\"* Abiram came|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* stood|strong=\"H5324\"* at|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H1121\"* their|strong=\"H5921\"* tents|strong=\"H4908\"* with|strong=\"H5921\"* their|strong=\"H5921\"* wives, their|strong=\"H5921\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* their|strong=\"H5921\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*." + }, + { + "verseNum": 28, + "text": "Moses|strong=\"H4872\"* said, “Hereby|strong=\"H2063\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H2063\"* works|strong=\"H4639\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H3068\"* not|strong=\"H3808\"* from|strong=\"H7971\"* my|strong=\"H3605\"* own mind|strong=\"H3820\"*." + }, + { + "verseNum": 29, + "text": "If these|strong=\"H3605\"* men|strong=\"H3605\"* die|strong=\"H4191\"* the|strong=\"H3605\"* common death|strong=\"H4194\"* of|strong=\"H3068\"* all|strong=\"H3605\"* men|strong=\"H3605\"*, or|strong=\"H3808\"* if they|strong=\"H3068\"* experience what|strong=\"H5921\"* all|strong=\"H3605\"* men|strong=\"H3605\"* experience, then|strong=\"H7971\"* Yahweh|strong=\"H3068\"* hasn’t sent|strong=\"H7971\"* me|strong=\"H7971\"*." + }, + { + "verseNum": 30, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* Yahweh|strong=\"H3068\"* makes|strong=\"H3068\"* a|strong=\"H3068\"* new|strong=\"H1278\"* thing|strong=\"H2416\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* ground opens|strong=\"H6475\"* its|strong=\"H3605\"* mouth|strong=\"H6310\"*, and|strong=\"H3068\"* swallows|strong=\"H1104\"* them|strong=\"H3381\"* up|strong=\"H1104\"* with|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3588\"* belong to|strong=\"H3381\"* them|strong=\"H3381\"*, and|strong=\"H3068\"* they|strong=\"H3588\"* go|strong=\"H3381\"* down|strong=\"H3381\"* alive|strong=\"H2416\"* into|strong=\"H3381\"* Sheol|strong=\"H7585\"*,+ 16:30 Sheol is the place of the dead.* then|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* understand|strong=\"H3045\"* that|strong=\"H3588\"* these|strong=\"H3605\"* men|strong=\"H3605\"* have|strong=\"H3068\"* despised|strong=\"H5006\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 31, + "text": "As|strong=\"H1697\"* he|strong=\"H3605\"* finished|strong=\"H3615\"* speaking|strong=\"H1696\"* all|strong=\"H3605\"* these|strong=\"H1696\"* words|strong=\"H1697\"*, the|strong=\"H3605\"* ground that|strong=\"H3605\"* was|strong=\"H1961\"* under|strong=\"H8478\"* them|strong=\"H3615\"* split|strong=\"H1234\"* apart." + }, + { + "verseNum": 32, + "text": "The|strong=\"H3605\"* earth opened|strong=\"H6605\"* its|strong=\"H3605\"* mouth|strong=\"H6310\"* and|strong=\"H1004\"* swallowed|strong=\"H1104\"* them|strong=\"H1104\"* up|strong=\"H1104\"* with|strong=\"H1004\"* their|strong=\"H3605\"* households|strong=\"H1004\"*, all|strong=\"H3605\"* of|strong=\"H1004\"* Korah|strong=\"H7141\"*’s men|strong=\"H3605\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* their|strong=\"H3605\"* goods|strong=\"H7399\"*." + }, + { + "verseNum": 33, + "text": "So|strong=\"H3381\"* they|strong=\"H1992\"*, and|strong=\"H3381\"* all|strong=\"H3605\"* that|strong=\"H3605\"* belonged to|strong=\"H3381\"* them|strong=\"H1992\"* went|strong=\"H3381\"* down|strong=\"H3381\"* alive|strong=\"H2416\"* into|strong=\"H3381\"* Sheol|strong=\"H7585\"*.+ 16:33 Sheol is the place of the dead.* The|strong=\"H3605\"* earth closed|strong=\"H3680\"* on|strong=\"H5921\"* them|strong=\"H1992\"*, and|strong=\"H3381\"* they|strong=\"H1992\"* perished from|strong=\"H3381\"* among|strong=\"H8432\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*." + }, + { + "verseNum": 34, + "text": "All|strong=\"H3605\"* Israel|strong=\"H3478\"* that|strong=\"H3588\"* were|strong=\"H3478\"* around|strong=\"H5439\"* them|strong=\"H5439\"* fled|strong=\"H5127\"* at|strong=\"H3478\"* their|strong=\"H3605\"* cry|strong=\"H6963\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* said, “Lest|strong=\"H6435\"* the|strong=\"H3605\"* earth swallow|strong=\"H1104\"* us|strong=\"H5439\"* up|strong=\"H1104\"*!”" + }, + { + "verseNum": 35, + "text": "Fire came|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3967\"* devoured the|strong=\"H3068\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* men who|strong=\"H3068\"* offered|strong=\"H7126\"* the|strong=\"H3068\"* incense|strong=\"H7004\"*." + }, + { + "verseNum": 36, + "text": "Yahweh|strong=\"H3068\"* spoke to Moses, saying," + }, + { + "verseNum": 37, + "text": "“Speak to Eleazar the son of Aaron the priest, that he take up the censers out of the burning, and scatter the fire away from the camp; for they are holy," + }, + { + "verseNum": 38, + "text": "even the censers of those who sinned against their own lives. Let them be beaten into plates for a|strong=\"H3068\"* covering of the altar, for they offered them before Yahweh|strong=\"H3068\"*. Therefore they are holy. They shall be a|strong=\"H3068\"* sign to the children of Israel.”" + }, + { + "verseNum": 39, + "text": "Eleazar the priest took the bronze censers which those who were burned had offered; and they beat them out for a|strong=\"H3068\"* covering of the altar," + }, + { + "verseNum": 40, + "text": "to be a|strong=\"H3068\"* memorial to the children of Israel, to the end that no stranger who isn’t of the offspring of Aaron, would come near to burn incense before Yahweh|strong=\"H3068\"*, that he not be as Korah and as his company; as Yahweh|strong=\"H3068\"* spoke to him by Moses." + }, + { + "verseNum": 41, + "text": "But on the next day all the congregation of the children of Israel complained against Moses and against Aaron, saying, “You have killed Yahweh|strong=\"H3068\"*’s people!”" + }, + { + "verseNum": 42, + "text": "When the congregation was assembled against Moses and against Aaron, they looked toward the Tent of Meeting. Behold, the cloud covered it, and Yahweh|strong=\"H3068\"*’s glory appeared." + }, + { + "verseNum": 43, + "text": "Moses and Aaron came to the front of the Tent of Meeting." + }, + { + "verseNum": 44, + "text": "Yahweh|strong=\"H3068\"* spoke to Moses, saying," + }, + { + "verseNum": 45, + "text": "“Get away from among this congregation, that I may consume them in a|strong=\"H3068\"* moment!” They fell on their faces." + }, + { + "verseNum": 46, + "text": "Moses said to Aaron, “Take your censer, put fire from the altar in it, lay incense on it, carry it quickly to the congregation, and make atonement for them; for wrath has gone out from Yahweh|strong=\"H3068\"*! The plague has begun.”" + }, + { + "verseNum": 47, + "text": "Aaron did as Moses said, and ran into the middle of the assembly. The plague had already begun among the people. He put on the incense, and made atonement for the people." + }, + { + "verseNum": 48, + "text": "He stood between the dead and the living; and the plague was stayed." + }, + { + "verseNum": 49, + "text": "Now those who died by the plague were fourteen thousand seven hundred, in addition to those who died about the matter of Korah." + }, + { + "verseNum": 50, + "text": "Aaron returned to Moses to the door of the Tent of Meeting, and the plague was stopped." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak to|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel, and|strong=\"H1121\"* take|strong=\"H7311\"* rods from|strong=\"H1121\"* them|strong=\"H6942\"*, one|strong=\"H1121\"* for|strong=\"H3588\"* each fathers’ house, of|strong=\"H1121\"* all|strong=\"H2219\"* their|strong=\"H3588\"* princes|strong=\"H3548\"* according to|strong=\"H1121\"* their|strong=\"H3588\"* fathers’ houses, twelve rods. Write each man|strong=\"H1121\"*’s name on|strong=\"H1973\"* his|strong=\"H3588\"* rod." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* write Aaron’s name on|strong=\"H3068\"* Levi’s rod. There|strong=\"H1961\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* one|strong=\"H1121\"* rod for|strong=\"H3588\"* each head|strong=\"H6440\"* of|strong=\"H1121\"* their|strong=\"H3068\"* fathers’ houses." + }, + { + "verseNum": 4, + "text": "You|strong=\"H3947\"* shall|strong=\"H3548\"* lay|strong=\"H7126\"* them|strong=\"H7126\"* up|strong=\"H8313\"* in|strong=\"H4196\"* the|strong=\"H3947\"* Tent of|strong=\"H4196\"* Meeting before the|strong=\"H3947\"* covenant, where I|strong=\"H7126\"* meet with|strong=\"H8313\"* you|strong=\"H3947\"*." + }, + { + "verseNum": 5, + "text": "It|strong=\"H1931\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H1931\"* the|strong=\"H6440\"* rod of|strong=\"H1121\"* the|strong=\"H6440\"* man|strong=\"H1121\"* whom|strong=\"H6440\"* I|strong=\"H3808\"* shall|strong=\"H3068\"* choose shall|strong=\"H3068\"* bud. I|strong=\"H3808\"* will|strong=\"H3068\"* make|strong=\"H3027\"* the|strong=\"H6440\"* murmurings of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, which|strong=\"H1931\"* they|strong=\"H3068\"* murmur against|strong=\"H6440\"* you|strong=\"H6440\"*, cease from|strong=\"H6440\"* me|strong=\"H6440\"*.”" + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* spoke to|strong=\"H3478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* all|strong=\"H3605\"* their|strong=\"H3605\"* princes gave|strong=\"H4872\"* him|strong=\"H5921\"* rods, for|strong=\"H5921\"* each|strong=\"H3605\"* prince one|strong=\"H3605\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* their|strong=\"H3605\"* fathers’ houses, a|strong=\"H3068\"* total|strong=\"H3605\"* of|strong=\"H1121\"* twelve rods. Aaron’s rod was|strong=\"H3068\"* among|strong=\"H5921\"* their|strong=\"H3605\"* rods." + }, + { + "verseNum": 7, + "text": "Moses|strong=\"H4872\"* laid|strong=\"H4872\"* up|strong=\"H7200\"* the|strong=\"H5921\"* rods before|strong=\"H5921\"* Yahweh|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* Tent of|strong=\"H3068\"* the|strong=\"H5921\"* Testimony." + }, + { + "verseNum": 8, + "text": "On|strong=\"H6440\"* the|strong=\"H6440\"* next day|strong=\"H4872\"*, Moses|strong=\"H4872\"* went|strong=\"H4872\"* into the|strong=\"H6440\"* Tent of|strong=\"H6440\"* the|strong=\"H6440\"* Testimony; and|strong=\"H4872\"* behold, Aaron’s rod for|strong=\"H6440\"* the|strong=\"H6440\"* house of|strong=\"H6440\"* Levi had|strong=\"H4872\"* sprouted, budded, produced blossoms, and|strong=\"H4872\"* bore ripe almonds." + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* brought|strong=\"H4872\"* out|strong=\"H1696\"* all|strong=\"H3068\"* the|strong=\"H3068\"* rods from|strong=\"H3068\"* before Yahweh|strong=\"H3068\"* to|strong=\"H1696\"* all|strong=\"H3068\"* the|strong=\"H3068\"* children of|strong=\"H3068\"* Israel. They|strong=\"H3068\"* looked|strong=\"H3068\"*, and|strong=\"H4872\"* each man took his|strong=\"H3068\"* rod." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H5921\"* Moses, “Put|strong=\"H3615\"* back the|strong=\"H6440\"* rod of|strong=\"H6440\"* Aaron before|strong=\"H6440\"* the|strong=\"H6440\"* covenant, to|strong=\"H5921\"* be|strong=\"H6440\"* kept for|strong=\"H5921\"* a|strong=\"H3068\"* token against|strong=\"H5921\"* the|strong=\"H6440\"* children of|strong=\"H6440\"* rebellion; that|strong=\"H5307\"* you|strong=\"H6440\"* may|strong=\"H5307\"* make|strong=\"H3615\"* an|strong=\"H6440\"* end|strong=\"H3615\"* of|strong=\"H6440\"* their|strong=\"H6440\"* complaining against|strong=\"H5921\"* me|strong=\"H6440\"*, that|strong=\"H5307\"* they|strong=\"H5921\"* not|strong=\"H6440\"* die|strong=\"H5307\"*.”" + }, + { + "verseNum": 11, + "text": "Moses|strong=\"H4872\"* did|strong=\"H3068\"* so|strong=\"H3947\"*. As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded him|strong=\"H5414\"*, so|strong=\"H3947\"* he|strong=\"H3588\"* did|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* children of|strong=\"H8432\"* Israel|strong=\"H5971\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*, “Behold|strong=\"H2009\"*, we|strong=\"H3068\"* perish! We|strong=\"H2009\"* are|strong=\"H5971\"* undone! We|strong=\"H2009\"* are|strong=\"H5971\"* all|strong=\"H5414\"* undone!" + }, + { + "verseNum": 13, + "text": "Everyone who|strong=\"H5975\"* keeps approaching Yahweh|strong=\"H3068\"*’s tabernacle, dies|strong=\"H4191\"*! Will|strong=\"H2416\"* we|strong=\"H3068\"* all|strong=\"H4191\"* perish?”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Aaron, “You|strong=\"H5375\"* and|strong=\"H1121\"* your|strong=\"H3068\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H3068\"* fathers’ house|strong=\"H1004\"* with|strong=\"H1004\"* you|strong=\"H5375\"* shall|strong=\"H3068\"* bear|strong=\"H5375\"* the|strong=\"H5375\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H5375\"* sanctuary|strong=\"H4720\"*; and|strong=\"H1121\"* you|strong=\"H5375\"* and|strong=\"H1121\"* your|strong=\"H3068\"* sons|strong=\"H1121\"* with|strong=\"H1004\"* you|strong=\"H5375\"* shall|strong=\"H3068\"* bear|strong=\"H5375\"* the|strong=\"H5375\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* your|strong=\"H3068\"* priesthood|strong=\"H3550\"*." + }, + { + "verseNum": 2, + "text": "Bring|strong=\"H7126\"* your|strong=\"H5921\"* brothers|strong=\"H1121\"* also|strong=\"H1571\"*, the|strong=\"H6440\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*, the|strong=\"H6440\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* your|strong=\"H5921\"* father|strong=\"H1121\"*, near|strong=\"H7126\"* with|strong=\"H5921\"* you|strong=\"H6440\"*, that|strong=\"H1121\"* they|strong=\"H5921\"* may|strong=\"H1121\"* be|strong=\"H1121\"* joined|strong=\"H3867\"* to|strong=\"H5921\"* you|strong=\"H6440\"*, and|strong=\"H1121\"* minister|strong=\"H8334\"* to|strong=\"H5921\"* you|strong=\"H6440\"*; but|strong=\"H1571\"* you|strong=\"H6440\"* and|strong=\"H1121\"* your|strong=\"H5921\"* sons|strong=\"H1121\"* with|strong=\"H5921\"* you|strong=\"H6440\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* the|strong=\"H6440\"* Testimony|strong=\"H5715\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H1992\"* shall|strong=\"H3808\"* keep|strong=\"H8104\"* your|strong=\"H3605\"* commands and|strong=\"H4196\"* the|strong=\"H3605\"* duty|strong=\"H4931\"* of|strong=\"H3627\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* Tent; only|strong=\"H3605\"* they|strong=\"H1992\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* come|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H4191\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"* and|strong=\"H4196\"* to|strong=\"H4191\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, that|strong=\"H3605\"* they|strong=\"H1992\"* not|strong=\"H3808\"* die|strong=\"H4191\"*, neither|strong=\"H3808\"* they|strong=\"H1992\"* nor|strong=\"H3808\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H3808\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* joined|strong=\"H3867\"* to|strong=\"H5921\"* you|strong=\"H3605\"* and|strong=\"H7126\"* keep|strong=\"H8104\"* the|strong=\"H3605\"* responsibility|strong=\"H5921\"* of|strong=\"H5921\"* the|strong=\"H3605\"* Tent of|strong=\"H5921\"* Meeting|strong=\"H4150\"*, for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H5921\"* the|strong=\"H3605\"* Tent. A|strong=\"H3068\"* stranger|strong=\"H2114\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* come|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H5921\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 5, + "text": "“You|strong=\"H5921\"* shall|strong=\"H1121\"* perform|strong=\"H8104\"* the|strong=\"H5921\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sanctuary|strong=\"H6944\"* and|strong=\"H1121\"* the|strong=\"H5921\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, that|strong=\"H3478\"* there|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* wrath|strong=\"H7110\"* on|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 6, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H5414\"* myself have|strong=\"H3068\"* taken|strong=\"H3947\"* your|strong=\"H3068\"* brothers|strong=\"H1121\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"* from|strong=\"H3478\"* among|strong=\"H8432\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. They|strong=\"H3068\"* are|strong=\"H1121\"* a|strong=\"H3068\"* gift|strong=\"H4979\"* to|strong=\"H3478\"* you|strong=\"H5414\"*, dedicated|strong=\"H5414\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3478\"* do|strong=\"H5647\"* the|strong=\"H5414\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H5414\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H5414\"* and|strong=\"H1121\"* your|strong=\"H3605\"* sons|strong=\"H1121\"* with|strong=\"H1004\"* you|strong=\"H5414\"* shall|strong=\"H1121\"* keep|strong=\"H8104\"* your|strong=\"H3605\"* priesthood|strong=\"H3550\"* for|strong=\"H1004\"* everything|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, and|strong=\"H1121\"* for|strong=\"H1004\"* that|strong=\"H3605\"* within|strong=\"H1004\"* the|strong=\"H3605\"* veil|strong=\"H6532\"*. You|strong=\"H5414\"* shall|strong=\"H1121\"* serve|strong=\"H5647\"*. I|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H3605\"* priesthood|strong=\"H3550\"* as|strong=\"H1697\"* a|strong=\"H3068\"* gift|strong=\"H4979\"*. The|strong=\"H3605\"* stranger|strong=\"H2114\"* who|strong=\"H3605\"* comes|strong=\"H7126\"* near|strong=\"H7126\"* shall|strong=\"H1121\"* be|strong=\"H4191\"* put|strong=\"H5414\"* to|strong=\"H4191\"* death|strong=\"H4191\"*.”" + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Aaron, “Behold|strong=\"H2009\"*, I|strong=\"H5414\"* myself have|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H3605\"* command of|strong=\"H1121\"* my|strong=\"H5414\"* wave offerings|strong=\"H8641\"*, even|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* holy|strong=\"H6918\"* things|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. I|strong=\"H5414\"* have|strong=\"H3068\"* given|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H1696\"* you|strong=\"H5414\"* by|strong=\"H3068\"* reason of|strong=\"H1121\"* the|strong=\"H3605\"* anointing|strong=\"H4888\"*, and|strong=\"H1121\"* to|strong=\"H1696\"* your|strong=\"H3068\"* sons|strong=\"H1121\"*, as|strong=\"H3068\"* a|strong=\"H3068\"* portion|strong=\"H2706\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 9, + "text": "This|strong=\"H2088\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* yours of|strong=\"H1121\"* the|strong=\"H3605\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* from|strong=\"H4480\"* the|strong=\"H3605\"* fire: every|strong=\"H3605\"* offering|strong=\"H4503\"* of|strong=\"H1121\"* theirs|strong=\"H4480\"*, even every|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H1121\"* theirs|strong=\"H4480\"*, and|strong=\"H1121\"* every|strong=\"H3605\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"* of|strong=\"H1121\"* theirs|strong=\"H4480\"*, and|strong=\"H1121\"* every|strong=\"H3605\"* trespass offering|strong=\"H4503\"* of|strong=\"H1121\"* theirs|strong=\"H4480\"*, which|strong=\"H1931\"* they|strong=\"H1931\"* shall|strong=\"H1121\"* give|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H7725\"*, shall|strong=\"H1121\"* be|strong=\"H1961\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* for|strong=\"H1121\"* you|strong=\"H3605\"* and|strong=\"H1121\"* for|strong=\"H1121\"* your|strong=\"H3605\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3605\"* shall|strong=\"H2145\"* eat of|strong=\"H3605\"* it|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H3605\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*. Every|strong=\"H3605\"* male|strong=\"H2145\"* shall|strong=\"H2145\"* eat of|strong=\"H3605\"* it|strong=\"H1961\"*. It|strong=\"H1961\"* shall|strong=\"H2145\"* be|strong=\"H1961\"* holy|strong=\"H6944\"* to|strong=\"H1961\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 11, + "text": "“This|strong=\"H2088\"* is|strong=\"H2088\"* yours|strong=\"H5414\"*, too: the|strong=\"H3605\"* wave|strong=\"H8573\"* offering|strong=\"H8641\"* of|strong=\"H1121\"* their|strong=\"H3605\"* gift|strong=\"H4976\"*, even all|strong=\"H3605\"* the|strong=\"H3605\"* wave|strong=\"H8573\"* offerings|strong=\"H8641\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. I|strong=\"H5414\"* have|strong=\"H1121\"* given|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3478\"* you|strong=\"H5414\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* your|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* to|strong=\"H3478\"* your|strong=\"H3605\"* daughters|strong=\"H1323\"* with|strong=\"H1004\"* you|strong=\"H5414\"*, as|strong=\"H1121\"* a|strong=\"H3068\"* portion|strong=\"H2706\"* forever|strong=\"H5769\"*. Everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H2088\"* clean|strong=\"H2889\"* in|strong=\"H3478\"* your|strong=\"H3605\"* house|strong=\"H1004\"* shall|strong=\"H1121\"* eat of|strong=\"H1121\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 12, + "text": "“I|strong=\"H5414\"* have|strong=\"H3068\"* given|strong=\"H5414\"* to|strong=\"H3068\"* you|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* best|strong=\"H2459\"* of|strong=\"H3068\"* the|strong=\"H3605\"* oil|strong=\"H3323\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* best|strong=\"H2459\"* of|strong=\"H3068\"* the|strong=\"H3605\"* vintage, and|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H3605\"* grain|strong=\"H1715\"*, the|strong=\"H3605\"* first|strong=\"H7225\"* fruits|strong=\"H7225\"* of|strong=\"H3068\"* them|strong=\"H5414\"* which|strong=\"H3068\"* they|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3605\"* first-ripe fruits|strong=\"H1061\"* of|strong=\"H1004\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3068\"* in|strong=\"H3068\"* their|strong=\"H3605\"* land, which|strong=\"H3068\"* they|strong=\"H3068\"* bring|strong=\"H1961\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, shall|strong=\"H3068\"* be|strong=\"H1961\"* yours. Everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3068\"* clean|strong=\"H2889\"* in|strong=\"H3068\"* your|strong=\"H3068\"* house|strong=\"H1004\"* shall|strong=\"H3068\"* eat of|strong=\"H1004\"* it|strong=\"H1961\"*." + }, + { + "verseNum": 14, + "text": "“Everything|strong=\"H3605\"* devoted|strong=\"H2764\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* yours." + }, + { + "verseNum": 15, + "text": "Everything|strong=\"H3605\"* that|strong=\"H3605\"* opens the|strong=\"H3605\"* womb|strong=\"H7358\"*, of|strong=\"H3068\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"* which|strong=\"H3068\"* they|strong=\"H3068\"* offer|strong=\"H7126\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, both|strong=\"H3605\"* of|strong=\"H3068\"* man|strong=\"H3605\"* and|strong=\"H3068\"* animal|strong=\"H1961\"*, shall|strong=\"H3068\"* be|strong=\"H1961\"* yours. Nevertheless, you|strong=\"H3605\"* shall|strong=\"H3068\"* surely|strong=\"H1961\"* redeem|strong=\"H6299\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H3068\"* man|strong=\"H3605\"*, and|strong=\"H3068\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* redeem|strong=\"H6299\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H3068\"* unclean|strong=\"H2931\"* animals|strong=\"H1961\"*." + }, + { + "verseNum": 16, + "text": "You shall|strong=\"H1121\"* redeem|strong=\"H6299\"* those|strong=\"H1121\"* who|strong=\"H1931\"* are|strong=\"H1121\"* to|strong=\"H1121\"* be|strong=\"H1121\"* redeemed|strong=\"H6299\"* of|strong=\"H1121\"* them|strong=\"H1121\"* from|strong=\"H1121\"* a|strong=\"H3068\"* month|strong=\"H2320\"* old|strong=\"H1121\"*, according|strong=\"H3701\"* to|strong=\"H1121\"* your|strong=\"H3701\"* estimation|strong=\"H6187\"*, for|strong=\"H1121\"* five|strong=\"H2568\"* shekels|strong=\"H8255\"* of|strong=\"H1121\"* money|strong=\"H3701\"*, according|strong=\"H3701\"* to|strong=\"H1121\"* the|strong=\"H1121\"* shekel|strong=\"H8255\"*+ 18:16 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H1121\"* the|strong=\"H1121\"* sanctuary|strong=\"H6944\"*, which|strong=\"H1931\"* weighs twenty|strong=\"H6242\"* gerahs|strong=\"H1626\"*.+ 18:16 A gerah is about 0.5 grams or about 7.7 grains.*" + }, + { + "verseNum": 17, + "text": "“But|strong=\"H3808\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* redeem|strong=\"H6299\"* the|strong=\"H5921\"* firstborn|strong=\"H1060\"* of|strong=\"H3068\"* a|strong=\"H3068\"* cow|strong=\"H7794\"*, or|strong=\"H3808\"* the|strong=\"H5921\"* firstborn|strong=\"H1060\"* of|strong=\"H3068\"* a|strong=\"H3068\"* sheep|strong=\"H3775\"*, or|strong=\"H3808\"* the|strong=\"H5921\"* firstborn|strong=\"H1060\"* of|strong=\"H3068\"* a|strong=\"H3068\"* goat|strong=\"H5795\"*. They|strong=\"H1992\"* are|strong=\"H1992\"* holy|strong=\"H6944\"*. You|strong=\"H5921\"* shall|strong=\"H3068\"* sprinkle|strong=\"H2236\"* their|strong=\"H3068\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H3068\"* shall|strong=\"H3068\"* burn|strong=\"H6999\"* their|strong=\"H3068\"* fat|strong=\"H2459\"* for|strong=\"H5921\"* an|strong=\"H3068\"* offering|strong=\"H6999\"* made|strong=\"H3068\"* by|strong=\"H5921\"* fire, for|strong=\"H5921\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "Their|strong=\"H1961\"* meat|strong=\"H1320\"* shall|strong=\"H1320\"* be|strong=\"H1961\"* yours, as|strong=\"H1961\"* the|strong=\"H1961\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* breast|strong=\"H2373\"* and|strong=\"H3225\"* as|strong=\"H1961\"* the|strong=\"H1961\"* right|strong=\"H3225\"* thigh|strong=\"H7785\"*, it|strong=\"H1961\"* shall|strong=\"H1320\"* be|strong=\"H1961\"* yours." + }, + { + "verseNum": 19, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* wave offerings|strong=\"H8641\"* of|strong=\"H1121\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* which|strong=\"H1931\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* offer|strong=\"H7311\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, I|strong=\"H5414\"* have|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"* and|strong=\"H1121\"* your|strong=\"H3068\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H3068\"* daughters|strong=\"H1323\"* with|strong=\"H3068\"* you|strong=\"H5414\"*, as|strong=\"H3068\"* a|strong=\"H3068\"* portion|strong=\"H2706\"* forever|strong=\"H5769\"*. It|strong=\"H5414\"* is|strong=\"H3068\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H1121\"* salt|strong=\"H4417\"* forever|strong=\"H5769\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* to|strong=\"H3478\"* you|strong=\"H5414\"* and|strong=\"H1121\"* to|strong=\"H3478\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"* with|strong=\"H3068\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* Aaron, “You|strong=\"H3808\"* shall|strong=\"H3068\"* have|strong=\"H1961\"* no|strong=\"H3808\"* inheritance|strong=\"H5159\"* in|strong=\"H3478\"* their|strong=\"H3068\"* land|strong=\"H5159\"*, neither|strong=\"H3808\"* shall|strong=\"H3068\"* you|strong=\"H3808\"* have|strong=\"H1961\"* any|strong=\"H1961\"* portion|strong=\"H2506\"* among|strong=\"H8432\"* them|strong=\"H8432\"*. I|strong=\"H3808\"* am|strong=\"H1961\"* your|strong=\"H3068\"* portion|strong=\"H2506\"* and|strong=\"H1121\"* your|strong=\"H3068\"* inheritance|strong=\"H5159\"* among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 21, + "text": "“To|strong=\"H3478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*, behold|strong=\"H2009\"*, I|strong=\"H5414\"* have|strong=\"H1121\"* given|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tithe|strong=\"H4643\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* for|strong=\"H1121\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*, in|strong=\"H3478\"* return|strong=\"H2500\"* for|strong=\"H1121\"* their|strong=\"H3605\"* service|strong=\"H5656\"* which|strong=\"H1992\"* they|strong=\"H1992\"* serve|strong=\"H5647\"*, even the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 22, + "text": "Henceforth|strong=\"H5750\"* the|strong=\"H5375\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* come|strong=\"H7126\"* near|strong=\"H7126\"* the|strong=\"H5375\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, lest they|strong=\"H3808\"* bear|strong=\"H5375\"* sin|strong=\"H2399\"*, and|strong=\"H1121\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"H3808\"* the|strong=\"H5375\"* Levites|strong=\"H3881\"* shall|strong=\"H1121\"* do|strong=\"H5647\"* the|strong=\"H5375\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H5375\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* shall|strong=\"H1121\"* bear|strong=\"H5375\"* their|strong=\"H5375\"* iniquity|strong=\"H5771\"*. It|strong=\"H1931\"* shall|strong=\"H1121\"* be|strong=\"H3808\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* throughout|strong=\"H1755\"* your|strong=\"H5375\"* generations|strong=\"H1755\"*. Among|strong=\"H8432\"* the|strong=\"H5375\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, they|strong=\"H1992\"* shall|strong=\"H1121\"* have|strong=\"H1121\"* no|strong=\"H3808\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* tithe|strong=\"H4643\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, which|strong=\"H3068\"* they|strong=\"H1992\"* offer|strong=\"H7311\"* as|strong=\"H3651\"* a|strong=\"H3068\"* wave offering|strong=\"H8641\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, I|strong=\"H3588\"* have|strong=\"H3068\"* given|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* for|strong=\"H3588\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*. Therefore|strong=\"H3651\"* I|strong=\"H3588\"* have|strong=\"H3068\"* said|strong=\"H3651\"* to|strong=\"H3478\"* them|strong=\"H5414\"*, ‘Among|strong=\"H8432\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* they|strong=\"H1992\"* shall|strong=\"H3068\"* have|strong=\"H3068\"* no|strong=\"H3808\"* inheritance|strong=\"H5159\"*.’”" + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 26, + "text": "“Moreover|strong=\"H1696\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H5414\"*, ‘When|strong=\"H3588\"* you|strong=\"H3588\"* take|strong=\"H3947\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* the|strong=\"H3588\"* tithe|strong=\"H4643\"* which|strong=\"H3068\"* I|strong=\"H3588\"* have|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H3588\"* from|strong=\"H4480\"* them|strong=\"H5414\"* for|strong=\"H3588\"* your|strong=\"H3068\"* inheritance|strong=\"H5159\"*, then|strong=\"H1696\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* offer|strong=\"H7311\"* up|strong=\"H7311\"* a|strong=\"H3068\"* wave offering|strong=\"H8641\"* of|strong=\"H1121\"* it|strong=\"H5414\"* for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, a|strong=\"H3068\"* tithe|strong=\"H4643\"* of|strong=\"H1121\"* the|strong=\"H3588\"* tithe|strong=\"H4643\"*." + }, + { + "verseNum": 27, + "text": "Your|strong=\"H4480\"* wave offering|strong=\"H8641\"* shall|strong=\"H3342\"* be|strong=\"H4480\"* credited|strong=\"H2803\"* to|strong=\"H2803\"* you|strong=\"H4480\"*, as|strong=\"H2803\"* though it|strong=\"H2803\"* were|strong=\"H4480\"* the|strong=\"H4480\"* grain|strong=\"H1715\"* of|strong=\"H4480\"* the|strong=\"H4480\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*, and|strong=\"H1715\"* as|strong=\"H2803\"* the|strong=\"H4480\"* fullness of|strong=\"H4480\"* the|strong=\"H4480\"* wine|strong=\"H3342\"* press|strong=\"H3342\"*." + }, + { + "verseNum": 28, + "text": "Thus|strong=\"H3651\"* you|strong=\"H5414\"* also|strong=\"H1571\"* shall|strong=\"H3548\"* offer|strong=\"H7311\"* a|strong=\"H3068\"* wave offering|strong=\"H8641\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* all|strong=\"H3605\"* your|strong=\"H3068\"* tithes|strong=\"H4643\"*, which|strong=\"H3068\"* you|strong=\"H5414\"* receive|strong=\"H3947\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* of|strong=\"H1121\"* it|strong=\"H5414\"* you|strong=\"H5414\"* shall|strong=\"H3548\"* give|strong=\"H5414\"* Yahweh|strong=\"H3068\"*’s wave offering|strong=\"H8641\"* to|strong=\"H3478\"* Aaron the|strong=\"H3605\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 29, + "text": "Out|strong=\"H4480\"* of|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* gifts|strong=\"H4979\"*, you|strong=\"H3605\"* shall|strong=\"H3068\"* offer|strong=\"H7311\"* every|strong=\"H3605\"* wave offering|strong=\"H8641\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, of|strong=\"H3068\"* all|strong=\"H3605\"* its|strong=\"H3605\"* best|strong=\"H2459\"* parts, even|strong=\"H3068\"* the|strong=\"H3605\"* holy|strong=\"H4720\"* part|strong=\"H4480\"* of|strong=\"H3068\"* it|strong=\"H3068\"*.’" + }, + { + "verseNum": 30, + "text": "“Therefore you|strong=\"H4480\"* shall|strong=\"H3881\"* tell them|strong=\"H4480\"*, ‘When|strong=\"H4480\"* you|strong=\"H4480\"* heave|strong=\"H7311\"* its|strong=\"H4480\"* best|strong=\"H2459\"* from|strong=\"H4480\"* it|strong=\"H2803\"*, then|strong=\"H7311\"* it|strong=\"H2803\"* shall|strong=\"H3881\"* be|strong=\"H7311\"* credited|strong=\"H2803\"* to|strong=\"H2803\"* the|strong=\"H4480\"* Levites|strong=\"H3881\"* as|strong=\"H2803\"* the|strong=\"H4480\"* increase|strong=\"H8393\"* of|strong=\"H4480\"* the|strong=\"H4480\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*, and|strong=\"H3881\"* as|strong=\"H2803\"* the|strong=\"H4480\"* increase|strong=\"H8393\"* of|strong=\"H4480\"* the|strong=\"H4480\"* wine|strong=\"H3342\"* press|strong=\"H3342\"*." + }, + { + "verseNum": 31, + "text": "You|strong=\"H3588\"* may|strong=\"H1004\"* eat it|strong=\"H1931\"* anywhere|strong=\"H3605\"*, you|strong=\"H3588\"* and|strong=\"H1004\"* your|strong=\"H3605\"* households|strong=\"H1004\"*, for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H3605\"* reward|strong=\"H7939\"* in|strong=\"H1004\"* return|strong=\"H2500\"* for|strong=\"H3588\"* your|strong=\"H3605\"* service|strong=\"H5656\"* in|strong=\"H1004\"* the|strong=\"H3605\"* Tent of|strong=\"H1004\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 32, + "text": "You|strong=\"H5921\"* shall|strong=\"H1121\"* bear|strong=\"H5375\"* no|strong=\"H3808\"* sin|strong=\"H2399\"* by|strong=\"H5921\"* reason|strong=\"H5921\"* of|strong=\"H1121\"* it|strong=\"H5921\"*, when|strong=\"H1121\"* you|strong=\"H5921\"* have|strong=\"H1121\"* heaved|strong=\"H7311\"* from|strong=\"H4480\"* it|strong=\"H5921\"* its|strong=\"H5921\"* best|strong=\"H2459\"*. You|strong=\"H5921\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* profane|strong=\"H2490\"* the|strong=\"H5921\"* holy|strong=\"H6918\"* things|strong=\"H2490\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H2459\"* you|strong=\"H5921\"* not|strong=\"H3808\"* die|strong=\"H4191\"*.’”" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H1696\"* Aaron, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“This|strong=\"H2063\"* is|strong=\"H3068\"* the|strong=\"H5921\"* statute|strong=\"H2708\"* of|strong=\"H1121\"* the|strong=\"H5921\"* law|strong=\"H8451\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"*. Tell|strong=\"H1696\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H1696\"* bring|strong=\"H5927\"* you|strong=\"H6680\"* a|strong=\"H3068\"* red heifer|strong=\"H6510\"* without|strong=\"H3808\"* spot|strong=\"H8549\"*, in|strong=\"H5921\"* which|strong=\"H3068\"* is|strong=\"H3068\"* no|strong=\"H3808\"* defect|strong=\"H8549\"*, and|strong=\"H1121\"* which|strong=\"H3068\"* was|strong=\"H3068\"* never|strong=\"H3808\"* yoked." + }, + { + "verseNum": 3, + "text": "You|strong=\"H5414\"* shall|strong=\"H3548\"* give|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H3318\"* Eleazar the|strong=\"H6440\"* priest|strong=\"H3548\"*, and|strong=\"H3548\"* he|strong=\"H5414\"* shall|strong=\"H3548\"* bring|strong=\"H3318\"* her|strong=\"H5414\"* outside|strong=\"H2351\"* of|strong=\"H6440\"* the|strong=\"H6440\"* camp|strong=\"H4264\"*, and|strong=\"H3548\"* one shall|strong=\"H3548\"* kill|strong=\"H7819\"* her|strong=\"H5414\"* before|strong=\"H6440\"* his|strong=\"H5414\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 4, + "text": "Eleazar the|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* some of|strong=\"H6440\"* her|strong=\"H3947\"* blood|strong=\"H1818\"* with|strong=\"H6440\"* his|strong=\"H3947\"* finger, and|strong=\"H3548\"* sprinkle|strong=\"H5137\"* her|strong=\"H3947\"* blood|strong=\"H1818\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* front|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* Tent of|strong=\"H6440\"* Meeting|strong=\"H4150\"* seven|strong=\"H7651\"* times|strong=\"H6471\"*." + }, + { + "verseNum": 5, + "text": "One|strong=\"H1320\"* shall|strong=\"H5869\"* burn|strong=\"H8313\"* the|strong=\"H5921\"* heifer|strong=\"H6510\"* in|strong=\"H5921\"* his|strong=\"H5921\"* sight|strong=\"H5869\"*; her|strong=\"H5921\"* skin|strong=\"H5785\"*, and|strong=\"H5869\"* her|strong=\"H5921\"* meat|strong=\"H1320\"*, and|strong=\"H5869\"* her|strong=\"H5921\"* blood|strong=\"H1818\"*, with|strong=\"H8313\"* her|strong=\"H5921\"* dung|strong=\"H6569\"*, shall|strong=\"H5869\"* he|strong=\"H5921\"* burn|strong=\"H8313\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3947\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* cedar wood|strong=\"H6086\"*, hyssop, and|strong=\"H6086\"* scarlet|strong=\"H8144\"*, and|strong=\"H6086\"* cast|strong=\"H7993\"* it|strong=\"H8432\"* into|strong=\"H8432\"* the|strong=\"H3947\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H3947\"* burning|strong=\"H8316\"* of|strong=\"H8432\"* the|strong=\"H3947\"* heifer|strong=\"H6510\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H3548\"* the|strong=\"H5704\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes, and|strong=\"H3548\"* he|strong=\"H5704\"* shall|strong=\"H3548\"* bathe|strong=\"H7364\"* his|strong=\"H3526\"* flesh|strong=\"H1320\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H3548\"* afterward he|strong=\"H5704\"* shall|strong=\"H3548\"* come into|strong=\"H4325\"* the|strong=\"H5704\"* camp|strong=\"H4264\"*, and|strong=\"H3548\"* the|strong=\"H5704\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* be|strong=\"H1320\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H5704\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H5704\"* who burns|strong=\"H8313\"* her|strong=\"H5704\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* bathe|strong=\"H7364\"* his|strong=\"H3526\"* flesh|strong=\"H1320\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* shall|strong=\"H4325\"* be|strong=\"H1320\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H5704\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 9, + "text": "“A|strong=\"H3068\"* man|strong=\"H1121\"* who|strong=\"H1931\"* is|strong=\"H1931\"* clean|strong=\"H2889\"* shall|strong=\"H1121\"* gather up|strong=\"H3240\"* the|strong=\"H1961\"* ashes of|strong=\"H1121\"* the|strong=\"H1961\"* heifer|strong=\"H6510\"*, and|strong=\"H1121\"* lay|strong=\"H3240\"* them|strong=\"H1961\"* up|strong=\"H3240\"* outside|strong=\"H2351\"* of|strong=\"H1121\"* the|strong=\"H1961\"* camp|strong=\"H4264\"* in|strong=\"H3478\"* a|strong=\"H3068\"* clean|strong=\"H2889\"* place|strong=\"H4725\"*; and|strong=\"H1121\"* it|strong=\"H1931\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* kept|strong=\"H4931\"* for|strong=\"H4325\"* the|strong=\"H1961\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* for|strong=\"H4325\"* use|strong=\"H1961\"* in|strong=\"H3478\"* water|strong=\"H4325\"* for|strong=\"H4325\"* cleansing impurity|strong=\"H5079\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H5704\"* who|strong=\"H1616\"* gathers the|strong=\"H8432\"* ashes of|strong=\"H1121\"* the|strong=\"H8432\"* heifer|strong=\"H6510\"* shall|strong=\"H1121\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes, and|strong=\"H1121\"* be|strong=\"H1961\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H8432\"* evening|strong=\"H6153\"*. It|strong=\"H8432\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* to|strong=\"H5704\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* to|strong=\"H5704\"* the|strong=\"H8432\"* stranger|strong=\"H1616\"* who|strong=\"H1616\"* lives|strong=\"H1481\"* as|strong=\"H5704\"* a|strong=\"H3068\"* foreigner|strong=\"H1121\"* among|strong=\"H8432\"* them|strong=\"H8432\"*, for|strong=\"H5704\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 11, + "text": "“He|strong=\"H3117\"* who|strong=\"H3605\"* touches|strong=\"H5060\"* the|strong=\"H3605\"* dead|strong=\"H4191\"* body|strong=\"H5315\"* of|strong=\"H3117\"* any|strong=\"H3605\"* man|strong=\"H5315\"* shall|strong=\"H5315\"* be|strong=\"H4191\"* unclean|strong=\"H2930\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H1931\"* shall|strong=\"H3117\"* purify|strong=\"H2398\"* himself|strong=\"H1931\"* with|strong=\"H3117\"* water on|strong=\"H3117\"* the|strong=\"H3117\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H3117\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* he|strong=\"H1931\"* shall|strong=\"H3117\"* be|strong=\"H3808\"* clean|strong=\"H2891\"*; but|strong=\"H3808\"* if|strong=\"H1931\"* he|strong=\"H1931\"* doesn’t purify|strong=\"H2398\"* himself|strong=\"H1931\"* the|strong=\"H3117\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, then|strong=\"H3808\"* the|strong=\"H3117\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* he|strong=\"H1931\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* be|strong=\"H3808\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 13, + "text": "Whoever|strong=\"H3605\"* touches|strong=\"H5060\"* a|strong=\"H3068\"* dead|strong=\"H4191\"* person|strong=\"H5315\"*, the|strong=\"H3605\"* body|strong=\"H5315\"* of|strong=\"H3068\"* a|strong=\"H3068\"* man|strong=\"H5315\"* who|strong=\"H3605\"* has|strong=\"H3068\"* died|strong=\"H4191\"*, and|strong=\"H3478\"* doesn’t purify|strong=\"H2398\"* himself|strong=\"H5315\"*, defiles|strong=\"H2930\"* Yahweh|strong=\"H3068\"*’s tabernacle|strong=\"H4908\"*; and|strong=\"H3478\"* that|strong=\"H3588\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* Israel|strong=\"H3478\"*; because|strong=\"H3588\"* the|strong=\"H3605\"* water|strong=\"H4325\"* for|strong=\"H3588\"* impurity|strong=\"H5079\"* was|strong=\"H3068\"* not|strong=\"H3808\"* sprinkled|strong=\"H2236\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, he|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* unclean|strong=\"H2931\"*. His|strong=\"H3605\"* uncleanness|strong=\"H2932\"* is|strong=\"H3068\"* yet|strong=\"H5750\"* on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "“This|strong=\"H2063\"* is|strong=\"H3117\"* the|strong=\"H3605\"* law|strong=\"H8451\"* when|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H4191\"* dies|strong=\"H4191\"* in|strong=\"H4191\"* a|strong=\"H3068\"* tent: everyone|strong=\"H3605\"* who|strong=\"H3605\"* comes|strong=\"H3117\"* into the|strong=\"H3605\"* tent, and|strong=\"H3117\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3117\"* in|strong=\"H4191\"* the|strong=\"H3605\"* tent, shall|strong=\"H3117\"* be|strong=\"H4191\"* unclean|strong=\"H2930\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 15, + "text": "Every|strong=\"H3605\"* open|strong=\"H6605\"* vessel|strong=\"H3627\"*, which|strong=\"H1931\"* has|strong=\"H3605\"* no|strong=\"H3605\"* covering|strong=\"H6781\"* bound|strong=\"H6616\"* on|strong=\"H5921\"* it|strong=\"H1931\"*, is|strong=\"H1931\"* unclean|strong=\"H2931\"*." + }, + { + "verseNum": 16, + "text": "“Whoever|strong=\"H3605\"* in|strong=\"H5921\"* the|strong=\"H3605\"* open|strong=\"H6440\"* field|strong=\"H7704\"* touches|strong=\"H5060\"* one|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3117\"* slain|strong=\"H2491\"* with|strong=\"H5921\"* a|strong=\"H3068\"* sword|strong=\"H2719\"*, or|strong=\"H3117\"* a|strong=\"H3068\"* dead|strong=\"H4191\"* body|strong=\"H6106\"*, or|strong=\"H3117\"* a|strong=\"H3068\"* bone|strong=\"H6106\"* of|strong=\"H3117\"* a|strong=\"H3068\"* man|strong=\"H4191\"*, or|strong=\"H3117\"* a|strong=\"H3068\"* grave|strong=\"H6913\"*, shall|strong=\"H3117\"* be|strong=\"H4191\"* unclean|strong=\"H2930\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 17, + "text": "“For|strong=\"H5921\"* the|strong=\"H5921\"* unclean|strong=\"H2931\"*, they|strong=\"H5921\"* shall|strong=\"H4325\"* take|strong=\"H3947\"* of|strong=\"H3627\"* the|strong=\"H5921\"* ashes|strong=\"H6083\"* of|strong=\"H3627\"* the|strong=\"H5921\"* burning|strong=\"H8316\"* of|strong=\"H3627\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*; and|strong=\"H4325\"* running|strong=\"H2416\"* water|strong=\"H4325\"* shall|strong=\"H4325\"* be|strong=\"H5414\"* poured on|strong=\"H5921\"* them|strong=\"H5414\"* in|strong=\"H5921\"* a|strong=\"H3068\"* vessel|strong=\"H3627\"*." + }, + { + "verseNum": 18, + "text": "A|strong=\"H3068\"* clean|strong=\"H2889\"* person|strong=\"H5315\"* shall|strong=\"H5315\"* take|strong=\"H3947\"* hyssop, dip|strong=\"H2881\"* it|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* water|strong=\"H4325\"*, and|strong=\"H8033\"* sprinkle|strong=\"H5137\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* tent, on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* persons|strong=\"H5315\"* who|strong=\"H3605\"* were|strong=\"H1961\"* there|strong=\"H8033\"*, and|strong=\"H8033\"* on|strong=\"H5921\"* him|strong=\"H5921\"* who|strong=\"H3605\"* touched|strong=\"H5060\"* the|strong=\"H3605\"* bone|strong=\"H6106\"*, or|strong=\"H4191\"* the|strong=\"H3605\"* slain|strong=\"H2491\"*, or|strong=\"H4191\"* the|strong=\"H3605\"* dead|strong=\"H4191\"*, or|strong=\"H4191\"* the|strong=\"H3605\"* grave|strong=\"H6913\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5921\"* clean|strong=\"H2889\"* person shall|strong=\"H3117\"* sprinkle|strong=\"H5137\"* on|strong=\"H5921\"* the|strong=\"H5921\"* unclean|strong=\"H2931\"* on|strong=\"H5921\"* the|strong=\"H5921\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* on|strong=\"H5921\"* the|strong=\"H5921\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*. On|strong=\"H5921\"* the|strong=\"H5921\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, he|strong=\"H3117\"* shall|strong=\"H3117\"* purify|strong=\"H2398\"* him|strong=\"H5921\"*. He|strong=\"H3117\"* shall|strong=\"H3117\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes and|strong=\"H3117\"* bathe|strong=\"H7364\"* himself|strong=\"H4325\"* in|strong=\"H5921\"* water|strong=\"H4325\"*, and|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* clean|strong=\"H2889\"* at|strong=\"H5921\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H3588\"* the|strong=\"H5921\"* man|strong=\"H5315\"* who|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* unclean|strong=\"H2931\"*, and|strong=\"H3068\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* purify|strong=\"H2398\"* himself|strong=\"H5315\"*, that|strong=\"H3588\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* among|strong=\"H8432\"* the|strong=\"H5921\"* assembly|strong=\"H6951\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* has|strong=\"H3068\"* defiled|strong=\"H2930\"* the|strong=\"H5921\"* sanctuary|strong=\"H4720\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. The|strong=\"H5921\"* water|strong=\"H4325\"* for|strong=\"H3588\"* impurity|strong=\"H5079\"* has|strong=\"H3068\"* not|strong=\"H3808\"* been|strong=\"H2930\"* sprinkled|strong=\"H2236\"* on|strong=\"H5921\"* him|strong=\"H5921\"*. He|strong=\"H1931\"* is|strong=\"H3068\"* unclean|strong=\"H2931\"*." + }, + { + "verseNum": 21, + "text": "It|strong=\"H1961\"* shall|strong=\"H4325\"* be|strong=\"H1961\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* statute|strong=\"H2708\"* to|strong=\"H5704\"* them|strong=\"H1961\"*. He|strong=\"H5704\"* who sprinkles|strong=\"H5137\"* the|strong=\"H5704\"* water|strong=\"H4325\"* for|strong=\"H5704\"* impurity|strong=\"H5079\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes, and|strong=\"H5769\"* he|strong=\"H5704\"* who touches|strong=\"H5060\"* the|strong=\"H5704\"* water|strong=\"H4325\"* for|strong=\"H5704\"* impurity|strong=\"H5079\"* shall|strong=\"H4325\"* be|strong=\"H1961\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 22, + "text": "“Whatever|strong=\"H3605\"* the|strong=\"H3605\"* unclean|strong=\"H2931\"* person|strong=\"H5315\"* touches|strong=\"H5060\"* shall|strong=\"H5315\"* be|strong=\"H5315\"* unclean|strong=\"H2931\"*; and|strong=\"H5315\"* the|strong=\"H3605\"* soul|strong=\"H5315\"* that|strong=\"H3605\"* touches|strong=\"H5060\"* it|strong=\"H2930\"* shall|strong=\"H5315\"* be|strong=\"H5315\"* unclean|strong=\"H2931\"* until|strong=\"H5704\"* evening|strong=\"H6153\"*.”" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, even the|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"*, came|strong=\"H3478\"* into|strong=\"H7223\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Zin|strong=\"H6790\"* in|strong=\"H3427\"* the|strong=\"H3605\"* first|strong=\"H7223\"* month|strong=\"H2320\"*. The|strong=\"H3605\"* people|strong=\"H5971\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* Kadesh|strong=\"H6946\"*. Miriam|strong=\"H4813\"* died|strong=\"H4191\"* there|strong=\"H8033\"*, and|strong=\"H1121\"* was|strong=\"H3478\"* buried|strong=\"H6912\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 2, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* water|strong=\"H4325\"* for|strong=\"H5921\"* the|strong=\"H5921\"* congregation|strong=\"H5712\"*; and|strong=\"H4872\"* they|strong=\"H3808\"* assembled|strong=\"H6950\"* themselves|strong=\"H5921\"* together|strong=\"H6950\"* against|strong=\"H5921\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* against|strong=\"H5921\"* Aaron." + }, + { + "verseNum": 3, + "text": "The|strong=\"H6440\"* people|strong=\"H5971\"* quarreled|strong=\"H7378\"* with|strong=\"H5973\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* spoke, saying, “We|strong=\"H1478\"* wish that|strong=\"H5971\"* we|strong=\"H3068\"* had|strong=\"H3068\"* died|strong=\"H1478\"* when|strong=\"H3068\"* our|strong=\"H3068\"* brothers died|strong=\"H1478\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 4, + "text": "Why|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H4100\"* brought|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s assembly|strong=\"H6951\"* into|strong=\"H6951\"* this|strong=\"H2088\"* wilderness|strong=\"H4057\"*, that|strong=\"H3068\"* we|strong=\"H3068\"* should|strong=\"H3068\"* die|strong=\"H4191\"* there|strong=\"H8033\"*, we|strong=\"H3068\"* and|strong=\"H3068\"* our|strong=\"H3068\"* animals?" + }, + { + "verseNum": 5, + "text": "Why|strong=\"H4100\"* have|strong=\"H4714\"* you|strong=\"H3808\"* made|strong=\"H4714\"* us|strong=\"H7451\"* to|strong=\"H5927\"* come|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H4100\"* of|strong=\"H4325\"* Egypt|strong=\"H4714\"*, to|strong=\"H5927\"* bring|strong=\"H5927\"* us|strong=\"H7451\"* in|strong=\"H4725\"* to|strong=\"H5927\"* this|strong=\"H2088\"* evil|strong=\"H7451\"* place|strong=\"H4725\"*? It|strong=\"H5927\"* is|strong=\"H2088\"* no|strong=\"H3808\"* place|strong=\"H4725\"* of|strong=\"H4325\"* seed|strong=\"H2233\"*, or|strong=\"H3808\"* of|strong=\"H4325\"* figs|strong=\"H8384\"*, or|strong=\"H3808\"* of|strong=\"H4325\"* vines|strong=\"H1612\"*, or|strong=\"H3808\"* of|strong=\"H4325\"* pomegranates|strong=\"H7416\"*; neither|strong=\"H3808\"* is|strong=\"H2088\"* there|strong=\"H2088\"* any|strong=\"H5927\"* water|strong=\"H4325\"* to|strong=\"H5927\"* drink|strong=\"H8354\"*.”" + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron went|strong=\"H4872\"* from|strong=\"H6440\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* assembly|strong=\"H6951\"* to|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, and|strong=\"H4872\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* their|strong=\"H3068\"* faces|strong=\"H6440\"*. Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 8, + "text": "“Take|strong=\"H3947\"* the|strong=\"H5414\"* rod|strong=\"H4294\"*, and|strong=\"H5869\"* assemble|strong=\"H6950\"* the|strong=\"H5414\"* congregation|strong=\"H5712\"*, you|strong=\"H5414\"*, and|strong=\"H5869\"* Aaron your|strong=\"H5414\"* brother, and|strong=\"H5869\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5414\"* rock|strong=\"H5553\"* before|strong=\"H4480\"* their|strong=\"H5414\"* eyes|strong=\"H5869\"*, that|strong=\"H5414\"* it|strong=\"H5414\"* pour|strong=\"H5414\"* out|strong=\"H3318\"* its|strong=\"H5414\"* water|strong=\"H4325\"*. You|strong=\"H5414\"* shall|strong=\"H5712\"* bring|strong=\"H3318\"* water|strong=\"H4325\"* to|strong=\"H1696\"* them|strong=\"H5414\"* out|strong=\"H3318\"* of|strong=\"H4294\"* the|strong=\"H5414\"* rock|strong=\"H5553\"*; so|strong=\"H4480\"* you|strong=\"H5414\"* shall|strong=\"H5712\"* give|strong=\"H5414\"* the|strong=\"H5414\"* congregation|strong=\"H5712\"* and|strong=\"H5869\"* their|strong=\"H5414\"* livestock drink|strong=\"H8248\"*.”" + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* the|strong=\"H6440\"* rod|strong=\"H4294\"* from|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, as|strong=\"H3068\"* he|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron gathered|strong=\"H6950\"* the|strong=\"H6440\"* assembly|strong=\"H6951\"* together|strong=\"H6950\"* before|strong=\"H6440\"* the|strong=\"H6440\"* rock|strong=\"H5553\"*, and|strong=\"H4872\"* he|strong=\"H4480\"* said|strong=\"H8085\"* to|strong=\"H3318\"* them|strong=\"H6440\"*, “Hear|strong=\"H8085\"* now|strong=\"H4994\"*, you|strong=\"H6440\"* rebels|strong=\"H4784\"*! Shall|strong=\"H4325\"* we|strong=\"H3068\"* bring|strong=\"H3318\"* water|strong=\"H4325\"* out|strong=\"H3318\"* of|strong=\"H6440\"* this|strong=\"H2088\"* rock|strong=\"H5553\"* for|strong=\"H6440\"* you|strong=\"H6440\"*?”" + }, + { + "verseNum": 11, + "text": "Moses|strong=\"H4872\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* his|strong=\"H5221\"* hand|strong=\"H3027\"*, and|strong=\"H4872\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* rock|strong=\"H5553\"* with|strong=\"H3318\"* his|strong=\"H5221\"* rod|strong=\"H4294\"* twice|strong=\"H6471\"*, and|strong=\"H4872\"* water|strong=\"H4325\"* came|strong=\"H3318\"* out|strong=\"H3318\"* abundantly|strong=\"H7227\"*. The|strong=\"H5221\"* congregation|strong=\"H5712\"* and|strong=\"H4872\"* their|strong=\"H3318\"* livestock drank|strong=\"H8354\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H3651\"* to|strong=\"H3478\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron, “Because|strong=\"H3282\"* you|strong=\"H5414\"* didn’t believe in|strong=\"H3478\"* me|strong=\"H5414\"*, to|strong=\"H3478\"* sanctify|strong=\"H6942\"* me|strong=\"H5414\"* in|strong=\"H3478\"* the|strong=\"H5414\"* eyes|strong=\"H5869\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, therefore|strong=\"H3651\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* bring|strong=\"H5414\"* this|strong=\"H2088\"* assembly|strong=\"H6951\"* into|strong=\"H5414\"* the|strong=\"H5414\"* land which|strong=\"H3068\"* I|strong=\"H5414\"* have|strong=\"H3068\"* given|strong=\"H5414\"* them|strong=\"H5414\"*.”" + }, + { + "verseNum": 13, + "text": "These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H3068\"* waters|strong=\"H4325\"* of|strong=\"H1121\"* Meribah|strong=\"H4809\"*;+ 20:13 “Meribah” means “quarreling”.* because|strong=\"H3068\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* strove|strong=\"H7378\"* with|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* was|strong=\"H3068\"* sanctified|strong=\"H6942\"* in|strong=\"H3478\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 14, + "text": "Moses|strong=\"H4872\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* from|strong=\"H3478\"* Kadesh|strong=\"H6946\"* to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Edom, saying:" + }, + { + "verseNum": 15, + "text": "how our fathers went|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* Egypt|strong=\"H4714\"*, and|strong=\"H3117\"* we|strong=\"H3068\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Egypt|strong=\"H4714\"* a|strong=\"H3068\"* long|strong=\"H3117\"* time|strong=\"H3117\"*. The|strong=\"H3117\"* Egyptians|strong=\"H4714\"* mistreated us|strong=\"H3117\"* and|strong=\"H3117\"* our fathers." + }, + { + "verseNum": 16, + "text": "When|strong=\"H8085\"* we|strong=\"H3068\"* cried|strong=\"H6817\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*, he|strong=\"H3068\"* heard|strong=\"H8085\"* our|strong=\"H3068\"* voice|strong=\"H6963\"*, sent|strong=\"H7971\"* an|strong=\"H7971\"* angel|strong=\"H4397\"*, and|strong=\"H3068\"* brought|strong=\"H3318\"* us|strong=\"H8085\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*. Behold|strong=\"H2009\"*, we|strong=\"H3068\"* are|strong=\"H3068\"* in|strong=\"H3068\"* Kadesh|strong=\"H6946\"*, a|strong=\"H3068\"* city|strong=\"H5892\"* in|strong=\"H3068\"* the|strong=\"H8085\"* edge|strong=\"H7097\"* of|strong=\"H3068\"* your|strong=\"H3068\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 17, + "text": "“Please|strong=\"H4994\"* let|strong=\"H4994\"* us|strong=\"H4994\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* your|strong=\"H5186\"* land|strong=\"H7704\"*. We|strong=\"H5704\"* will|strong=\"H4428\"* not|strong=\"H3808\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* field|strong=\"H7704\"* or|strong=\"H3808\"* through|strong=\"H5674\"* vineyard|strong=\"H3754\"*, neither|strong=\"H3808\"* will|strong=\"H4428\"* we|strong=\"H3068\"* drink|strong=\"H8354\"* from|strong=\"H5704\"* the|strong=\"H5704\"* water|strong=\"H4325\"* of|strong=\"H4428\"* the|strong=\"H5704\"* wells. We|strong=\"H5704\"* will|strong=\"H4428\"* go|strong=\"H3212\"* along|strong=\"H5674\"* the|strong=\"H5704\"* king|strong=\"H4428\"*’s highway|strong=\"H1870\"*. We|strong=\"H5704\"* will|strong=\"H4428\"* not|strong=\"H3808\"* turn|strong=\"H5186\"* away|strong=\"H5674\"* to|strong=\"H5704\"* the|strong=\"H5704\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* nor|strong=\"H3808\"* to|strong=\"H5704\"* the|strong=\"H5704\"* left|strong=\"H8040\"*, until|strong=\"H5704\"* we|strong=\"H3068\"* have|strong=\"H4428\"* passed|strong=\"H5674\"* your|strong=\"H5186\"* border|strong=\"H1366\"*.”" + }, + { + "verseNum": 18, + "text": "Edom said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H3318\"*, “You|strong=\"H3808\"* shall|strong=\"H2719\"* not|strong=\"H3808\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* me|strong=\"H5674\"*, lest|strong=\"H6435\"* I|strong=\"H3808\"* come|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H3318\"* the|strong=\"H5674\"* sword|strong=\"H2719\"* against|strong=\"H7125\"* you|strong=\"H3808\"*.”" + }, + { + "verseNum": 19, + "text": "The|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said|strong=\"H1697\"* to|strong=\"H3478\"* him|strong=\"H5414\"*, “We|strong=\"H1697\"* will|strong=\"H3478\"* go|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H5674\"* the|strong=\"H5414\"* highway|strong=\"H4546\"*; and|strong=\"H1121\"* if|strong=\"H1121\"* we|strong=\"H3068\"* drink|strong=\"H8354\"* your|strong=\"H5414\"* water|strong=\"H4325\"*, I|strong=\"H5414\"* and|strong=\"H1121\"* my|strong=\"H5414\"* livestock|strong=\"H4735\"*, then|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H3478\"* give|strong=\"H5414\"* its|strong=\"H5414\"* price|strong=\"H4377\"*. Only|strong=\"H7535\"* let|strong=\"H5414\"* me|strong=\"H5414\"*, without doing|strong=\"H8354\"* anything|strong=\"H1697\"* else, pass|strong=\"H5674\"* through|strong=\"H5674\"* on|strong=\"H5674\"* my|strong=\"H5414\"* feet|strong=\"H7272\"*.”" + }, + { + "verseNum": 20, + "text": "He|strong=\"H3027\"* said|strong=\"H3318\"*, “You|strong=\"H3808\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* pass|strong=\"H5674\"* through|strong=\"H3027\"*.” Edom came|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H7125\"* him|strong=\"H3027\"* with|strong=\"H3318\"* many|strong=\"H3808\"* people|strong=\"H5971\"*, and|strong=\"H3027\"* with|strong=\"H3318\"* a|strong=\"H3068\"* strong|strong=\"H2389\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 21, + "text": "Thus Edom refused|strong=\"H3985\"* to|strong=\"H3478\"* give|strong=\"H5414\"* Israel|strong=\"H3478\"* passage|strong=\"H5674\"* through|strong=\"H5674\"* his|strong=\"H5414\"* border|strong=\"H1366\"*, so|strong=\"H5414\"* Israel|strong=\"H3478\"* turned|strong=\"H5186\"* away|strong=\"H5674\"* from|strong=\"H5921\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 22, + "text": "They|strong=\"H3605\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Kadesh|strong=\"H6946\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, even the|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"*, came|strong=\"H3478\"* to|strong=\"H3478\"* Mount|strong=\"H2022\"* Hor|strong=\"H2023\"*." + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron in|strong=\"H5921\"* Mount|strong=\"H2022\"* Hor|strong=\"H2023\"*, by|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H3068\"* the|strong=\"H5921\"* land|strong=\"H1366\"* of|strong=\"H3068\"* Edom, saying," + }, + { + "verseNum": 24, + "text": "“Aaron shall|strong=\"H1121\"* be|strong=\"H3808\"* gathered|strong=\"H3478\"* to|strong=\"H3478\"* his|strong=\"H5414\"* people|strong=\"H5971\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* enter into|strong=\"H5921\"* the|strong=\"H5921\"* land which|strong=\"H5971\"* I|strong=\"H3588\"* have|strong=\"H5971\"* given|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* rebelled|strong=\"H4784\"* against|strong=\"H5921\"* my|strong=\"H5414\"* word|strong=\"H6310\"* at|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* of|strong=\"H1121\"* Meribah|strong=\"H4809\"*." + }, + { + "verseNum": 25, + "text": "Take|strong=\"H3947\"* Aaron and|strong=\"H1121\"* Eleazar his|strong=\"H3947\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* bring|strong=\"H5927\"* them|strong=\"H3947\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Mount|strong=\"H2022\"* Hor|strong=\"H2023\"*;" + }, + { + "verseNum": 26, + "text": "and|strong=\"H1121\"* strip|strong=\"H6584\"* Aaron of|strong=\"H1121\"* his|strong=\"H6584\"* garments, and|strong=\"H1121\"* put|strong=\"H4191\"* them|strong=\"H1121\"* on|strong=\"H3847\"* Eleazar his|strong=\"H6584\"* son|strong=\"H1121\"*. Aaron shall|strong=\"H1121\"* be|strong=\"H4191\"* gathered, and|strong=\"H1121\"* shall|strong=\"H1121\"* die|strong=\"H4191\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 27, + "text": "Moses|strong=\"H4872\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"*. They|strong=\"H3068\"* went|strong=\"H5927\"* up|strong=\"H5927\"* onto Mount|strong=\"H2022\"* Hor|strong=\"H2023\"* in|strong=\"H3068\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*." + }, + { + "verseNum": 28, + "text": "Moses|strong=\"H4872\"* stripped|strong=\"H6584\"* Aaron of|strong=\"H1121\"* his|strong=\"H4480\"* garments, and|strong=\"H1121\"* put|strong=\"H4191\"* them|strong=\"H3381\"* on|strong=\"H3847\"* Eleazar his|strong=\"H4480\"* son|strong=\"H1121\"*. Aaron died|strong=\"H4191\"* there|strong=\"H8033\"* on|strong=\"H3847\"* the|strong=\"H4480\"* top|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H4480\"* mountain|strong=\"H2022\"*, and|strong=\"H1121\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Eleazar came|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H4480\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Aaron was|strong=\"H3478\"* dead|strong=\"H1478\"*, they|strong=\"H3588\"* wept|strong=\"H1058\"* for|strong=\"H3588\"* Aaron thirty|strong=\"H7970\"* days|strong=\"H3117\"*, even|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H8085\"* Canaanite|strong=\"H3669\"*, the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Arad|strong=\"H6166\"*, who|strong=\"H3478\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H8085\"* South|strong=\"H5045\"*, heard|strong=\"H8085\"* that|strong=\"H3588\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"* by|strong=\"H1870\"* the|strong=\"H8085\"* way|strong=\"H1870\"* of|strong=\"H4428\"* Atharim. He|strong=\"H3588\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* took|strong=\"H7617\"* some|strong=\"H4480\"* of|strong=\"H4428\"* them|strong=\"H7617\"* captive|strong=\"H7617\"*." + }, + { + "verseNum": 2, + "text": "Israel|strong=\"H3478\"* vowed|strong=\"H5087\"* a|strong=\"H3068\"* vow|strong=\"H5088\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3478\"* said, “If you|strong=\"H5414\"* will|strong=\"H3068\"* indeed|strong=\"H5414\"* deliver|strong=\"H5414\"* this|strong=\"H2088\"* people|strong=\"H5971\"* into|strong=\"H3027\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*, then|strong=\"H2088\"* I|strong=\"H5414\"* will|strong=\"H3068\"* utterly|strong=\"H2763\"* destroy|strong=\"H2763\"* their|strong=\"H3068\"* cities|strong=\"H5892\"*.”" + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* listened|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* delivered|strong=\"H5414\"* up|strong=\"H5414\"* the|strong=\"H8085\"* Canaanites|strong=\"H3669\"*; and|strong=\"H3478\"* they|strong=\"H3068\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* them|strong=\"H5414\"* and|strong=\"H3478\"* their|strong=\"H3068\"* cities|strong=\"H5892\"*. The|strong=\"H8085\"* name|strong=\"H8034\"* of|strong=\"H3068\"* the|strong=\"H8085\"* place|strong=\"H4725\"* was|strong=\"H3068\"* called|strong=\"H7121\"* Hormah|strong=\"H2767\"*.+ 21:3 “Hormah” means “destruction”.*" + }, + { + "verseNum": 4, + "text": "They|strong=\"H5971\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Mount|strong=\"H2022\"* Hor|strong=\"H2023\"* by|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* to|strong=\"H1870\"* the|strong=\"H1870\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*, to|strong=\"H1870\"* go|strong=\"H5437\"* around|strong=\"H5437\"* the|strong=\"H1870\"* land of|strong=\"H2022\"* Edom. The|strong=\"H1870\"* soul|strong=\"H5315\"* of|strong=\"H2022\"* the|strong=\"H1870\"* people|strong=\"H5971\"* was|strong=\"H5315\"* very discouraged|strong=\"H7114\"* because|strong=\"H1870\"* of|strong=\"H2022\"* the|strong=\"H1870\"* journey|strong=\"H1870\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3588\"* people|strong=\"H5971\"* spoke|strong=\"H1696\"* against|strong=\"H5927\"* God and|strong=\"H4872\"* against|strong=\"H5927\"* Moses|strong=\"H4872\"*: “Why|strong=\"H4100\"* have|strong=\"H5971\"* you|strong=\"H3588\"* brought|strong=\"H5927\"* us|strong=\"H3588\"* up|strong=\"H5927\"* out|strong=\"H4100\"* of|strong=\"H4325\"* Egypt|strong=\"H4714\"* to|strong=\"H1696\"* die|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"*? For|strong=\"H3588\"* there|strong=\"H5927\"* is|strong=\"H4100\"* no|strong=\"H5927\"* bread|strong=\"H3899\"*, there|strong=\"H5927\"* is|strong=\"H4100\"* no|strong=\"H5927\"* water|strong=\"H4325\"*, and|strong=\"H4872\"* our|strong=\"H3588\"* soul|strong=\"H5315\"* loathes this|strong=\"H1696\"* disgusting food|strong=\"H3899\"*!”" + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* venomous snakes|strong=\"H5175\"* among|strong=\"H5971\"* the|strong=\"H3068\"* people|strong=\"H5971\"*, and|strong=\"H3478\"* they|strong=\"H3068\"* bit|strong=\"H5391\"* the|strong=\"H3068\"* people|strong=\"H5971\"*. Many|strong=\"H7227\"* people|strong=\"H5971\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5921\"* people|strong=\"H5971\"* came|strong=\"H3068\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* said|strong=\"H1696\"*, “We|strong=\"H3588\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"*, because|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"* and|strong=\"H4872\"* against|strong=\"H5921\"* you|strong=\"H3588\"*. Pray|strong=\"H6419\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* take|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H5921\"* serpents|strong=\"H5175\"* from|strong=\"H5493\"* us|strong=\"H5921\"*.” Moses|strong=\"H4872\"* prayed|strong=\"H6419\"* for|strong=\"H3588\"* the|strong=\"H5921\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Make|strong=\"H6213\"* a|strong=\"H3068\"* venomous snake, and|strong=\"H4872\"* set|strong=\"H7760\"* it|strong=\"H7760\"* on|strong=\"H5921\"* a|strong=\"H3068\"* pole|strong=\"H5251\"*. It|strong=\"H7760\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H7200\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3068\"* bitten|strong=\"H5391\"*, when|strong=\"H1961\"* he|strong=\"H6213\"* sees|strong=\"H7200\"* it|strong=\"H7760\"*, shall|strong=\"H3068\"* live|strong=\"H2425\"*.”" + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* made|strong=\"H6213\"* a|strong=\"H3068\"* serpent|strong=\"H5175\"* of|strong=\"H5921\"* bronze|strong=\"H5178\"*, and|strong=\"H4872\"* set|strong=\"H7760\"* it|strong=\"H7760\"* on|strong=\"H5921\"* the|strong=\"H5921\"* pole|strong=\"H5251\"*. If|strong=\"H1961\"* a|strong=\"H3068\"* serpent|strong=\"H5175\"* had|strong=\"H1961\"* bitten|strong=\"H5391\"* any|strong=\"H6213\"* man, when|strong=\"H1961\"* he|strong=\"H6213\"* looked|strong=\"H5027\"* at|strong=\"H5921\"* the|strong=\"H5921\"* serpent|strong=\"H5175\"* of|strong=\"H5921\"* bronze|strong=\"H5178\"*, he|strong=\"H6213\"* lived|strong=\"H2425\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* traveled|strong=\"H5265\"*, and|strong=\"H1121\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Oboth." + }, + { + "verseNum": 11, + "text": "They|strong=\"H5921\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Oboth, and|strong=\"H6440\"* encamped|strong=\"H2583\"* at|strong=\"H2583\"* Iyeabarim, in|strong=\"H5921\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"* which|strong=\"H4057\"* is|strong=\"H4124\"* before|strong=\"H6440\"* Moab|strong=\"H4124\"*, toward|strong=\"H5921\"* the|strong=\"H6440\"* sunrise|strong=\"H4217\"*." + }, + { + "verseNum": 12, + "text": "From|strong=\"H5265\"* there|strong=\"H8033\"* they|strong=\"H8033\"* traveled|strong=\"H5265\"*, and|strong=\"H8033\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H8033\"* valley|strong=\"H5158\"* of|strong=\"H5158\"* Zered|strong=\"H2218\"*." + }, + { + "verseNum": 13, + "text": "From|strong=\"H5265\"* there|strong=\"H8033\"* they|strong=\"H3588\"* traveled|strong=\"H5265\"*, and|strong=\"H8033\"* encamped|strong=\"H2583\"* on|strong=\"H3318\"* the|strong=\"H3588\"* other|strong=\"H5676\"* side|strong=\"H5676\"* of|strong=\"H1366\"* the|strong=\"H3588\"* Arnon, which|strong=\"H8033\"* is|strong=\"H4124\"* in|strong=\"H2583\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"* that|strong=\"H3588\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1366\"* the|strong=\"H3588\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H3588\"* Amorites; for|strong=\"H3588\"* the|strong=\"H3588\"* Arnon is|strong=\"H4124\"* the|strong=\"H3588\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Moab|strong=\"H4124\"*, between|strong=\"H2583\"* Moab|strong=\"H4124\"* and|strong=\"H8033\"* the|strong=\"H3588\"* Amorites." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H3651\"* it|strong=\"H5921\"* is|strong=\"H3068\"* said|strong=\"H3651\"* in|strong=\"H5921\"* \\+w The|strong=\"H5921\"\\+w* \\+w Book|strong=\"H5612\"\\+w* \\+w of|strong=\"H3068\"\\+w* \\+w the|strong=\"H5921\"\\+w* \\+w Wars|strong=\"H4421\"\\+w* \\+w of|strong=\"H3068\"\\+w* \\+w Yahweh|strong=\"H3068\"\\+w**, “Vaheb in|strong=\"H5921\"* Suphah|strong=\"H5492\"*, the|strong=\"H5921\"* valleys|strong=\"H5158\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Arnon," + }, + { + "verseNum": 15, + "text": "the|strong=\"H5186\"* slope of|strong=\"H3427\"* the|strong=\"H5186\"* valleys|strong=\"H5158\"* that|strong=\"H5158\"* incline|strong=\"H5186\"* toward the|strong=\"H5186\"* dwelling|strong=\"H3427\"* of|strong=\"H3427\"* Ar|strong=\"H6144\"*, leans|strong=\"H8172\"* on|strong=\"H3427\"* the|strong=\"H5186\"* border|strong=\"H1366\"* of|strong=\"H3427\"* Moab|strong=\"H4124\"*.”" + }, + { + "verseNum": 16, + "text": "From|strong=\"H3068\"* there|strong=\"H8033\"* they|strong=\"H8033\"* traveled to|strong=\"H3068\"* Beer; that|strong=\"H5971\"* is|strong=\"H3068\"* the|strong=\"H5414\"* well of|strong=\"H3068\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Gather the|strong=\"H5414\"* people|strong=\"H5971\"* together|strong=\"H5971\"*, and|strong=\"H4872\"* I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* them|strong=\"H5414\"* water|strong=\"H4325\"*.”" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H6030\"* Israel|strong=\"H3478\"* sang|strong=\"H7891\"* this|strong=\"H2063\"* song|strong=\"H7892\"*:" + }, + { + "verseNum": 18, + "text": "the|strong=\"H5971\"* well, which|strong=\"H5971\"* the|strong=\"H5971\"* princes|strong=\"H8269\"* dug|strong=\"H2658\"*," + }, + { + "verseNum": 19, + "text": "and|strong=\"H1120\"* from Mattanah|strong=\"H4980\"* to|strong=\"H5160\"* Nahaliel|strong=\"H5160\"*; and|strong=\"H1120\"* from Nahaliel|strong=\"H5160\"* to|strong=\"H5160\"* Bamoth|strong=\"H1120\"*;" + }, + { + "verseNum": 20, + "text": "and|strong=\"H7218\"* from|strong=\"H6440\"* Bamoth|strong=\"H1120\"* to|strong=\"H5921\"* the|strong=\"H6440\"* valley|strong=\"H1516\"* that|strong=\"H7218\"* is|strong=\"H4124\"* in|strong=\"H5921\"* the|strong=\"H6440\"* field|strong=\"H7704\"* of|strong=\"H7218\"* Moab|strong=\"H4124\"*, to|strong=\"H5921\"* the|strong=\"H6440\"* top|strong=\"H7218\"* of|strong=\"H7218\"* Pisgah|strong=\"H6449\"*, which|strong=\"H7704\"* looks|strong=\"H8259\"* down|strong=\"H8259\"* on|strong=\"H5921\"* the|strong=\"H6440\"* desert|strong=\"H3452\"*." + }, + { + "verseNum": 21, + "text": "Israel|strong=\"H3478\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H3478\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H7971\"* Amorites, saying," + }, + { + "verseNum": 22, + "text": "“Let|strong=\"H5186\"* me|strong=\"H5674\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* your|strong=\"H5186\"* land|strong=\"H7704\"*. We|strong=\"H5704\"* will|strong=\"H4428\"* not|strong=\"H3808\"* turn|strong=\"H5186\"* away|strong=\"H5674\"* into|strong=\"H3212\"* field|strong=\"H7704\"* or|strong=\"H3808\"* vineyard|strong=\"H3754\"*. We|strong=\"H5704\"* will|strong=\"H4428\"* not|strong=\"H3808\"* drink|strong=\"H8354\"* of|strong=\"H4428\"* the|strong=\"H5704\"* water|strong=\"H4325\"* of|strong=\"H4428\"* the|strong=\"H5704\"* wells. We|strong=\"H5704\"* will|strong=\"H4428\"* go|strong=\"H3212\"* by|strong=\"H5674\"* the|strong=\"H5704\"* king|strong=\"H4428\"*’s highway|strong=\"H1870\"*, until|strong=\"H5704\"* we|strong=\"H3068\"* have|strong=\"H4428\"* passed|strong=\"H5674\"* your|strong=\"H5186\"* border|strong=\"H1366\"*.”" + }, + { + "verseNum": 23, + "text": "Sihon|strong=\"H5511\"* would|strong=\"H3478\"* not|strong=\"H3808\"* allow|strong=\"H5414\"* Israel|strong=\"H3478\"* to|strong=\"H3318\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* his|strong=\"H3605\"* border|strong=\"H1366\"*, but|strong=\"H3808\"* Sihon|strong=\"H5511\"* gathered|strong=\"H3478\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"* together|strong=\"H5971\"*, and|strong=\"H3478\"* went|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H7125\"* Israel|strong=\"H3478\"* into|strong=\"H3318\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*, and|strong=\"H3478\"* came|strong=\"H3318\"* to|strong=\"H3318\"* Jahaz|strong=\"H3096\"*. He|strong=\"H3605\"* fought|strong=\"H3898\"* against|strong=\"H7125\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 24, + "text": "Israel|strong=\"H3478\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H3478\"* the|strong=\"H3588\"* edge|strong=\"H6310\"* of|strong=\"H1121\"* the|strong=\"H3588\"* sword|strong=\"H2719\"*, and|strong=\"H1121\"* possessed|strong=\"H3423\"* his|strong=\"H5221\"* land|strong=\"H1366\"* from|strong=\"H3478\"* the|strong=\"H3588\"* Arnon to|strong=\"H5704\"* the|strong=\"H3588\"* Jabbok|strong=\"H2999\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* border|strong=\"H1366\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* was|strong=\"H3478\"* fortified." + }, + { + "verseNum": 25, + "text": "Israel|strong=\"H3478\"* took|strong=\"H3947\"* all|strong=\"H3605\"* these|strong=\"H3947\"* cities|strong=\"H5892\"*. Israel|strong=\"H3478\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1323\"* the|strong=\"H3605\"* Amorites, in|strong=\"H3427\"* Heshbon|strong=\"H2809\"*, and|strong=\"H3478\"* in|strong=\"H3427\"* all|strong=\"H3605\"* its|strong=\"H3605\"* villages|strong=\"H1323\"*." + }, + { + "verseNum": 26, + "text": "For|strong=\"H3588\"* Heshbon|strong=\"H2809\"* was|strong=\"H1931\"* the|strong=\"H3605\"* city|strong=\"H5892\"* of|strong=\"H4428\"* Sihon|strong=\"H5511\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Amorites, who|strong=\"H3605\"* had|strong=\"H4428\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* the|strong=\"H3605\"* former|strong=\"H7223\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"*, and|strong=\"H4428\"* taken|strong=\"H3947\"* all|strong=\"H3605\"* his|strong=\"H3605\"* land out|strong=\"H3947\"* of|strong=\"H4428\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* Arnon." + }, + { + "verseNum": 27, + "text": "Therefore|strong=\"H3651\"* those|strong=\"H5921\"* who|strong=\"H1129\"* speak|strong=\"H4911\"* in|strong=\"H5921\"* proverbs|strong=\"H4911\"* say," + }, + { + "verseNum": 28, + "text": "for|strong=\"H3588\"* a|strong=\"H3068\"* fire has|strong=\"H3588\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1167\"* Heshbon|strong=\"H2809\"*," + }, + { + "verseNum": 29, + "text": "Woe to|strong=\"H5414\"* you|strong=\"H5414\"*, Moab|strong=\"H4124\"*!" + }, + { + "verseNum": 30, + "text": "We|strong=\"H5704\"* have|strong=\"H2809\"* shot|strong=\"H3384\"* at|strong=\"H8074\"* them|strong=\"H5704\"*." + }, + { + "verseNum": 31, + "text": "Thus Israel|strong=\"H3478\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* land of|strong=\"H3427\"* the|strong=\"H3427\"* Amorites." + }, + { + "verseNum": 32, + "text": "Moses|strong=\"H4872\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* spy|strong=\"H7270\"* out|strong=\"H3423\"* Jazer|strong=\"H3270\"*. They|strong=\"H8033\"* took|strong=\"H3920\"* its|strong=\"H3920\"* villages|strong=\"H1323\"*, and|strong=\"H4872\"* drove|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3423\"* Amorites who|strong=\"H1323\"* were|strong=\"H1323\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 33, + "text": "They|strong=\"H1931\"* turned|strong=\"H6437\"* and|strong=\"H4428\"* went|strong=\"H3318\"* up|strong=\"H5927\"* by|strong=\"H1870\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"*. Og|strong=\"H5747\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"* went|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H7125\"* them|strong=\"H3318\"*, he|strong=\"H1931\"* and|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, to|strong=\"H3318\"* battle|strong=\"H4421\"* at|strong=\"H4421\"* Edrei." + }, + { + "verseNum": 34, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Don’t fear|strong=\"H3372\"* him|strong=\"H5414\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* delivered|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H6213\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* his|strong=\"H3605\"* land. You|strong=\"H3588\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3068\"* him|strong=\"H5414\"* as|strong=\"H6213\"* you|strong=\"H3588\"* did|strong=\"H6213\"* to|strong=\"H3068\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Amorites, who|strong=\"H3605\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Heshbon|strong=\"H2809\"*.”" + }, + { + "verseNum": 35, + "text": "So|strong=\"H1115\"* they|strong=\"H5704\"* struck|strong=\"H5221\"* him|strong=\"H5221\"*, with|strong=\"H5971\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, until|strong=\"H5704\"* there|strong=\"H3605\"* were|strong=\"H5971\"* no|strong=\"H1115\"* survivors|strong=\"H8300\"*; and|strong=\"H1121\"* they|strong=\"H5704\"* possessed|strong=\"H3423\"* his|strong=\"H3605\"* land." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5676\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* traveled|strong=\"H5265\"*, and|strong=\"H1121\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H5676\"* plains|strong=\"H6160\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"* beyond|strong=\"H5676\"* the|strong=\"H5676\"* Jordan|strong=\"H3383\"* at|strong=\"H2583\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 2, + "text": "Balak|strong=\"H1111\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zippor|strong=\"H6834\"* saw|strong=\"H7200\"* all|strong=\"H3605\"* that|strong=\"H7200\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* done|strong=\"H6213\"* to|strong=\"H3478\"* the|strong=\"H3605\"* Amorites." + }, + { + "verseNum": 3, + "text": "Moab|strong=\"H4124\"* was|strong=\"H3478\"* very|strong=\"H3966\"* afraid|strong=\"H1481\"* of|strong=\"H1121\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H3478\"* many|strong=\"H7227\"*. Moab|strong=\"H4124\"* was|strong=\"H3478\"* distressed|strong=\"H6973\"* because|strong=\"H3588\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "Moab|strong=\"H4124\"* said to|strong=\"H6256\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"*, “Now|strong=\"H6258\"* this|strong=\"H1931\"* multitude|strong=\"H6951\"* will|strong=\"H4428\"* lick|strong=\"H3897\"* up|strong=\"H3897\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H1931\"* around|strong=\"H5439\"* us|strong=\"H5439\"*, as|strong=\"H1121\"* the|strong=\"H3605\"* ox|strong=\"H7794\"* licks|strong=\"H3897\"* up|strong=\"H3897\"* the|strong=\"H3605\"* grass|strong=\"H3418\"* of|strong=\"H1121\"* the|strong=\"H3605\"* field|strong=\"H7704\"*.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H1931\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H3318\"* Balaam|strong=\"H1109\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Beor|strong=\"H1160\"*, to|strong=\"H3318\"* Pethor|strong=\"H6604\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* by|strong=\"H5921\"* the|strong=\"H5921\"* River|strong=\"H5104\"*, to|strong=\"H3318\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H7121\"* people|strong=\"H5971\"*, to|strong=\"H3318\"* call|strong=\"H7121\"* him|strong=\"H7121\"*, saying, “Behold|strong=\"H2009\"*, there|strong=\"H2009\"* is|strong=\"H1931\"* a|strong=\"H3068\"* people|strong=\"H5971\"* who|strong=\"H1931\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*. Behold|strong=\"H2009\"*, they|strong=\"H5921\"* cover|strong=\"H3680\"* the|strong=\"H5921\"* surface|strong=\"H5869\"* of|strong=\"H1121\"* the|strong=\"H5921\"* earth, and|strong=\"H1121\"* they|strong=\"H5921\"* are|strong=\"H5971\"* staying|strong=\"H3427\"* opposite|strong=\"H4136\"* me|strong=\"H7971\"*." + }, + { + "verseNum": 6, + "text": "Please|strong=\"H4994\"* come|strong=\"H3212\"* now|strong=\"H6258\"* therefore|strong=\"H6258\"*, and|strong=\"H3212\"* curse|strong=\"H1288\"* this|strong=\"H2088\"* people|strong=\"H5971\"* for|strong=\"H3588\"* me|strong=\"H4994\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H5971\"* too|strong=\"H4480\"* mighty|strong=\"H6099\"* for|strong=\"H3588\"* me|strong=\"H4994\"*. Perhaps|strong=\"H3588\"* I|strong=\"H3588\"* shall|strong=\"H5971\"* prevail|strong=\"H3201\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* may|strong=\"H3201\"* strike|strong=\"H5221\"* them|strong=\"H5221\"*, and|strong=\"H3212\"* that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H3201\"* drive|strong=\"H1644\"* them|strong=\"H5221\"* out|strong=\"H1644\"* of|strong=\"H4480\"* the|strong=\"H3588\"* land; for|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* he|strong=\"H1931\"* whom|strong=\"H5971\"* you|strong=\"H3588\"* bless|strong=\"H1288\"* is|strong=\"H2088\"* blessed|strong=\"H1288\"*, and|strong=\"H3212\"* he|strong=\"H1931\"* whom|strong=\"H5971\"* you|strong=\"H3588\"* curse|strong=\"H1288\"* is|strong=\"H2088\"* cursed|strong=\"H1288\"*.”" + }, + { + "verseNum": 7, + "text": "The|strong=\"H1697\"* elders|strong=\"H2205\"* of|strong=\"H3027\"* Moab|strong=\"H4124\"* and|strong=\"H3027\"* the|strong=\"H1697\"* elders|strong=\"H2205\"* of|strong=\"H3027\"* Midian|strong=\"H4080\"* departed|strong=\"H3212\"* with|strong=\"H1696\"* the|strong=\"H1697\"* rewards of|strong=\"H3027\"* divination|strong=\"H7081\"* in|strong=\"H3212\"* their|strong=\"H3027\"* hand|strong=\"H3027\"*. They|strong=\"H1697\"* came|strong=\"H3212\"* to|strong=\"H1696\"* Balaam|strong=\"H1109\"*, and|strong=\"H3027\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H3027\"* the|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H3027\"* Balak|strong=\"H1111\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H7725\"*, “Lodge|strong=\"H3885\"* here|strong=\"H6311\"* this|strong=\"H1696\"* night|strong=\"H3915\"*, and|strong=\"H3068\"* I|strong=\"H1697\"* will|strong=\"H3068\"* bring|strong=\"H7725\"* you|strong=\"H7725\"* word|strong=\"H1697\"* again|strong=\"H7725\"*, as|strong=\"H1697\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7725\"*.” The|strong=\"H3068\"* princes|strong=\"H8269\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"* stayed|strong=\"H3427\"* with|strong=\"H5973\"* Balaam|strong=\"H1109\"*." + }, + { + "verseNum": 9, + "text": "God|strong=\"H4310\"* came to|strong=\"H5973\"* Balaam|strong=\"H1109\"*, and|strong=\"H1109\"* said, “Who|strong=\"H4310\"* are|strong=\"H4310\"* these men with|strong=\"H5973\"* you|strong=\"H5973\"*?”" + }, + { + "verseNum": 10, + "text": "Balaam|strong=\"H1109\"* said to|strong=\"H7971\"* God|strong=\"H7971\"*, “Balak|strong=\"H1111\"* the|strong=\"H7971\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zippor|strong=\"H6834\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, has|strong=\"H4428\"* said to|strong=\"H7971\"* me|strong=\"H7971\"*," + }, + { + "verseNum": 11, + "text": "‘Behold|strong=\"H2009\"*, the|strong=\"H3680\"* people|strong=\"H5971\"* that|strong=\"H5971\"* has|strong=\"H5869\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H5869\"* Egypt|strong=\"H4714\"* covers|strong=\"H3680\"* the|strong=\"H3680\"* surface|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H3680\"* earth. Now|strong=\"H6258\"*, come|strong=\"H3318\"* curse|strong=\"H6895\"* them|strong=\"H3318\"* for|strong=\"H4714\"* me|strong=\"H3318\"*. Perhaps I|strong=\"H2009\"* shall|strong=\"H5971\"* be|strong=\"H3201\"* able|strong=\"H3201\"* to|strong=\"H3318\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* them|strong=\"H3318\"*, and|strong=\"H3212\"* shall|strong=\"H5971\"* drive|strong=\"H1644\"* them|strong=\"H3318\"* out|strong=\"H3318\"*.’”" + }, + { + "verseNum": 12, + "text": "God|strong=\"H3808\"* said to|strong=\"H3212\"* Balaam|strong=\"H1109\"*, “You|strong=\"H3588\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* go|strong=\"H3212\"* with|strong=\"H5973\"* them|strong=\"H3588\"*. You|strong=\"H3588\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* curse|strong=\"H1288\"* the|strong=\"H3588\"* people|strong=\"H5971\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H5971\"* blessed|strong=\"H1288\"*.”" + }, + { + "verseNum": 13, + "text": "Balaam|strong=\"H1109\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H1980\"* the|strong=\"H3588\"* morning|strong=\"H1242\"*, and|strong=\"H1980\"* said to|strong=\"H1980\"* the|strong=\"H3588\"* princes|strong=\"H8269\"* of|strong=\"H3068\"* Balak|strong=\"H1111\"*, “Go|strong=\"H1980\"* to|strong=\"H1980\"* your|strong=\"H3068\"* land; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* refuses|strong=\"H3985\"* to|strong=\"H1980\"* permit|strong=\"H5414\"* me|strong=\"H5414\"* to|strong=\"H1980\"* go|strong=\"H1980\"* with|strong=\"H5973\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 14, + "text": "The|strong=\"H6965\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Moab|strong=\"H4124\"* rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H1980\"* they went|strong=\"H1980\"* to|strong=\"H1980\"* Balak|strong=\"H1111\"*, and|strong=\"H1980\"* said, “Balaam|strong=\"H1109\"* refuses|strong=\"H3985\"* to|strong=\"H1980\"* come|strong=\"H1980\"* with|strong=\"H5973\"* us|strong=\"H1980\"*.”" + }, + { + "verseNum": 15, + "text": "Balak|strong=\"H1111\"* again|strong=\"H5750\"* sent|strong=\"H7971\"* princes|strong=\"H8269\"*, more|strong=\"H3254\"*, and|strong=\"H7971\"* more|strong=\"H3254\"* honorable|strong=\"H3513\"* than|strong=\"H7227\"* they." + }, + { + "verseNum": 16, + "text": "They|strong=\"H3541\"* came|strong=\"H1980\"* to|strong=\"H1980\"* Balaam|strong=\"H1109\"*, and|strong=\"H1121\"* said to|strong=\"H1980\"* him|strong=\"H1980\"*, “Balak|strong=\"H1111\"* the|strong=\"H3541\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zippor|strong=\"H6834\"* says|strong=\"H3541\"*, ‘Please|strong=\"H4994\"* let|strong=\"H4994\"* nothing hinder|strong=\"H4513\"* you|strong=\"H4994\"* from|strong=\"H1980\"* coming|strong=\"H1980\"* to|strong=\"H1980\"* me|strong=\"H4994\"*," + }, + { + "verseNum": 17, + "text": "for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5971\"* promote|strong=\"H6213\"* you|strong=\"H3588\"* to|strong=\"H3212\"* very|strong=\"H3966\"* great|strong=\"H3966\"* honor|strong=\"H3513\"*, and|strong=\"H3212\"* whatever|strong=\"H3605\"* you|strong=\"H3588\"* say to|strong=\"H3212\"* me|strong=\"H4994\"* I|strong=\"H3588\"* will|strong=\"H5971\"* do|strong=\"H6213\"*. Please|strong=\"H4994\"* come|strong=\"H3212\"* therefore|strong=\"H3588\"*, and|strong=\"H3212\"* curse|strong=\"H6895\"* this|strong=\"H2088\"* people|strong=\"H5971\"* for|strong=\"H3588\"* me|strong=\"H4994\"*.’”" + }, + { + "verseNum": 18, + "text": "Balaam|strong=\"H1109\"* answered|strong=\"H6030\"* the|strong=\"H5414\"* servants|strong=\"H5650\"* of|strong=\"H1004\"* Balak|strong=\"H1111\"*, “If Balak|strong=\"H1111\"* would|strong=\"H3068\"* give|strong=\"H5414\"* me|strong=\"H5414\"* his|strong=\"H5414\"* house|strong=\"H1004\"* full|strong=\"H4393\"* of|strong=\"H1004\"* silver|strong=\"H3701\"* and|strong=\"H3068\"* gold|strong=\"H2091\"*, I|strong=\"H5414\"* can|strong=\"H3201\"*’t go|strong=\"H5674\"* beyond|strong=\"H5674\"* the|strong=\"H5414\"* word|strong=\"H6310\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* my|strong=\"H5414\"* God|strong=\"H3068\"*, to|strong=\"H3201\"* do|strong=\"H6213\"* less|strong=\"H6996\"* or|strong=\"H3808\"* more|strong=\"H1419\"*." + }, + { + "verseNum": 19, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* please|strong=\"H4994\"* stay|strong=\"H3427\"* here|strong=\"H2088\"* tonight|strong=\"H3915\"* as|strong=\"H1571\"* well|strong=\"H1571\"*, that|strong=\"H3045\"* I|strong=\"H6258\"* may|strong=\"H4994\"* know|strong=\"H3045\"* what|strong=\"H4100\"* else|strong=\"H3254\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H4994\"*.”" + }, + { + "verseNum": 20, + "text": "God came|strong=\"H3212\"* to|strong=\"H1696\"* Balaam|strong=\"H1109\"* at|strong=\"H6213\"* night|strong=\"H3915\"*, and|strong=\"H6965\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7121\"*, “If the|strong=\"H6213\"* men|strong=\"H6213\"* have|strong=\"H1697\"* come|strong=\"H3212\"* to|strong=\"H1696\"* call|strong=\"H7121\"* you|strong=\"H6213\"*, rise|strong=\"H6965\"* up|strong=\"H6965\"*, go|strong=\"H3212\"* with|strong=\"H6213\"* them|strong=\"H6213\"*; but|strong=\"H1696\"* only the|strong=\"H6213\"* word|strong=\"H1697\"* which|strong=\"H1697\"* I|strong=\"H1697\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H6213\"*, that|strong=\"H1697\"* you|strong=\"H6213\"* shall|strong=\"H1697\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 21, + "text": "Balaam|strong=\"H1109\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H3212\"* the|strong=\"H6965\"* morning|strong=\"H1242\"*, and|strong=\"H6965\"* saddled|strong=\"H2280\"* his|strong=\"H6965\"* donkey, and|strong=\"H6965\"* went|strong=\"H3212\"* with|strong=\"H5973\"* the|strong=\"H6965\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 22, + "text": "God|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* because|strong=\"H3588\"* he|strong=\"H1931\"* went|strong=\"H1980\"*; and|strong=\"H1980\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* placed|strong=\"H7392\"* himself|strong=\"H1931\"* in|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* as|strong=\"H3068\"* an|strong=\"H3588\"* adversary|strong=\"H7854\"* against|strong=\"H5921\"* him|strong=\"H5921\"*. Now|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3068\"* riding|strong=\"H7392\"* on|strong=\"H5921\"* his|strong=\"H3068\"* donkey, and|strong=\"H1980\"* his|strong=\"H3068\"* two|strong=\"H8147\"* servants|strong=\"H5288\"* were|strong=\"H5288\"* with|strong=\"H5973\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H7200\"* donkey saw|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* standing|strong=\"H5324\"* in|strong=\"H3068\"* the|strong=\"H7200\"* way|strong=\"H1870\"*, with|strong=\"H3068\"* his|strong=\"H3068\"* sword|strong=\"H2719\"* drawn|strong=\"H8025\"* in|strong=\"H3068\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*; and|strong=\"H3068\"* the|strong=\"H7200\"* donkey turned|strong=\"H5186\"* out|strong=\"H5186\"* of|strong=\"H3068\"* the|strong=\"H7200\"* path|strong=\"H1870\"*, and|strong=\"H3068\"* went|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H7200\"* field|strong=\"H7704\"*. Balaam|strong=\"H1109\"* struck|strong=\"H5221\"* the|strong=\"H7200\"* donkey, to|strong=\"H3068\"* turn|strong=\"H5186\"* her|strong=\"H7200\"* into|strong=\"H3212\"* the|strong=\"H7200\"* path|strong=\"H1870\"*." + }, + { + "verseNum": 24, + "text": "Then|strong=\"H2088\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* stood|strong=\"H5975\"* in|strong=\"H3068\"* a|strong=\"H3068\"* narrow|strong=\"H4934\"* path|strong=\"H4934\"* between the|strong=\"H3068\"* vineyards|strong=\"H3754\"*, a|strong=\"H3068\"* wall|strong=\"H1447\"* being|strong=\"H3068\"* on|strong=\"H3068\"* this|strong=\"H2088\"* side|strong=\"H2088\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* wall|strong=\"H1447\"* on|strong=\"H3068\"* that|strong=\"H3068\"* side|strong=\"H2088\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H7200\"* donkey saw|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*, and|strong=\"H3068\"* she thrust|strong=\"H5221\"* herself to|strong=\"H3068\"* the|strong=\"H7200\"* wall|strong=\"H7023\"*, and|strong=\"H3068\"* crushed|strong=\"H3905\"* Balaam|strong=\"H1109\"*’s foot|strong=\"H7272\"* against|strong=\"H3068\"* the|strong=\"H7200\"* wall|strong=\"H7023\"*. He|strong=\"H3068\"* struck|strong=\"H5221\"* her|strong=\"H7200\"* again|strong=\"H3254\"*." + }, + { + "verseNum": 26, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* went|strong=\"H5674\"* further|strong=\"H3254\"*, and|strong=\"H3068\"* stood|strong=\"H5975\"* in|strong=\"H3068\"* a|strong=\"H3068\"* narrow|strong=\"H6862\"* place|strong=\"H4725\"*, where|strong=\"H4725\"* there|strong=\"H5975\"* was|strong=\"H3068\"* no|strong=\"H5975\"* way|strong=\"H1870\"* to|strong=\"H3068\"* turn|strong=\"H5186\"* either to|strong=\"H3068\"* the|strong=\"H3068\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* or|strong=\"H3225\"* to|strong=\"H3068\"* the|strong=\"H3068\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H7200\"* donkey saw|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*, and|strong=\"H3068\"* she lay|strong=\"H7257\"* down|strong=\"H5221\"* under|strong=\"H8478\"* Balaam|strong=\"H1109\"*. Balaam|strong=\"H1109\"*’s anger burned|strong=\"H2734\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* struck|strong=\"H5221\"* the|strong=\"H7200\"* donkey with|strong=\"H3068\"* his|strong=\"H3068\"* staff|strong=\"H4731\"*." + }, + { + "verseNum": 28, + "text": "Yahweh|strong=\"H3068\"* opened|strong=\"H6605\"* the|strong=\"H3588\"* mouth|strong=\"H6310\"* of|strong=\"H3068\"* the|strong=\"H3588\"* donkey, and|strong=\"H3068\"* she|strong=\"H3588\"* said|strong=\"H6310\"* to|strong=\"H3068\"* Balaam|strong=\"H1109\"*, “What|strong=\"H4100\"* have|strong=\"H3068\"* I|strong=\"H3588\"* done|strong=\"H6213\"* to|strong=\"H3068\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* struck|strong=\"H5221\"* me|strong=\"H6213\"* these|strong=\"H2088\"* three|strong=\"H7969\"* times|strong=\"H7272\"*?”" + }, + { + "verseNum": 29, + "text": "Balaam|strong=\"H1109\"* said to|strong=\"H3027\"* the|strong=\"H3588\"* donkey, “Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3426\"* mocked|strong=\"H5953\"* me|strong=\"H2026\"*, I|strong=\"H3588\"* wish there|strong=\"H3426\"* were|strong=\"H3027\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* in|strong=\"H3027\"* my|strong=\"H3588\"* hand|strong=\"H3027\"*, for|strong=\"H3588\"* now|strong=\"H6258\"* I|strong=\"H3588\"* would|strong=\"H3863\"* have|strong=\"H3426\"* killed|strong=\"H2026\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 30, + "text": "The|strong=\"H5921\"* donkey said to|strong=\"H5704\"* Balaam|strong=\"H1109\"*, “Am I|strong=\"H3117\"* not|strong=\"H3808\"* your|strong=\"H5921\"* donkey, on|strong=\"H5921\"* which|strong=\"H2088\"* you|strong=\"H5921\"* have|strong=\"H3117\"* ridden|strong=\"H7392\"* all|strong=\"H5704\"* your|strong=\"H5921\"* life|strong=\"H3117\"* long|strong=\"H5704\"* until|strong=\"H5704\"* today|strong=\"H3117\"*? Was|strong=\"H3117\"* I|strong=\"H3117\"* ever|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* habit of|strong=\"H3117\"* doing|strong=\"H6213\"* so|strong=\"H6213\"* to|strong=\"H5704\"* you|strong=\"H5921\"*?”" + }, + { + "verseNum": 31, + "text": "Then|strong=\"H7200\"* Yahweh|strong=\"H3068\"* opened|strong=\"H1540\"* the|strong=\"H7200\"* eyes|strong=\"H5869\"* of|strong=\"H3068\"* Balaam|strong=\"H1109\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* saw|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* standing|strong=\"H5324\"* in|strong=\"H3068\"* the|strong=\"H7200\"* way|strong=\"H1870\"*, with|strong=\"H3068\"* his|strong=\"H3068\"* sword|strong=\"H2719\"* drawn|strong=\"H8025\"* in|strong=\"H3068\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* bowed|strong=\"H7812\"* his|strong=\"H3068\"* head|strong=\"H6915\"*, and|strong=\"H3068\"* fell on|strong=\"H1870\"* his|strong=\"H3068\"* face|strong=\"H5869\"*." + }, + { + "verseNum": 32, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H5921\"*, “Why|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H3588\"* struck|strong=\"H5221\"* your|strong=\"H3068\"* donkey these|strong=\"H2088\"* three|strong=\"H7969\"* times|strong=\"H7272\"*? Behold|strong=\"H2009\"*, I|strong=\"H3588\"* have|strong=\"H3068\"* come|strong=\"H3318\"* out|strong=\"H3318\"* as|strong=\"H3068\"* an|strong=\"H5221\"* adversary|strong=\"H7854\"*, because|strong=\"H3588\"* your|strong=\"H3068\"* way|strong=\"H1870\"* is|strong=\"H3068\"* perverse|strong=\"H3399\"* before|strong=\"H5048\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H6440\"* donkey saw|strong=\"H7200\"* me|strong=\"H6440\"*, and|strong=\"H6440\"* turned|strong=\"H5186\"* away|strong=\"H5186\"* before|strong=\"H6440\"* me|strong=\"H6440\"* these|strong=\"H2088\"* three|strong=\"H7969\"* times|strong=\"H7272\"*. Unless|strong=\"H3588\"* she|strong=\"H3588\"* had|strong=\"H3588\"* turned|strong=\"H5186\"* away|strong=\"H5186\"* from|strong=\"H6440\"* me|strong=\"H6440\"*, surely|strong=\"H3588\"* now|strong=\"H6258\"* I|strong=\"H3588\"* would|strong=\"H2421\"* have|strong=\"H1571\"* killed|strong=\"H2026\"* you|strong=\"H3588\"*, and|strong=\"H6440\"* saved|strong=\"H2421\"* her|strong=\"H7200\"* alive|strong=\"H2421\"*.”" + }, + { + "verseNum": 34, + "text": "Balaam|strong=\"H1109\"* said to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*, “I|strong=\"H3588\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* stood|strong=\"H5324\"* in|strong=\"H3068\"* the|strong=\"H3588\"* way|strong=\"H1870\"* against|strong=\"H7125\"* me|strong=\"H7725\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, if|strong=\"H3588\"* it|strong=\"H3588\"* displeases|strong=\"H5869\"* you|strong=\"H3588\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* go|strong=\"H7725\"* back|strong=\"H7725\"* again|strong=\"H7725\"*.”" + }, + { + "verseNum": 35, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Balaam|strong=\"H1109\"*, “Go|strong=\"H3212\"* with|strong=\"H5973\"* the|strong=\"H3068\"* men|strong=\"H8269\"*; but|strong=\"H1696\"* you|strong=\"H5973\"* shall|strong=\"H3068\"* only speak|strong=\"H1696\"* the|strong=\"H3068\"* word|strong=\"H1697\"* that|strong=\"H3068\"* I|strong=\"H1697\"* shall|strong=\"H3068\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5973\"*.”" + }, + { + "verseNum": 36, + "text": "When|strong=\"H3588\"* Balak|strong=\"H1111\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* Balaam|strong=\"H1109\"* had|strong=\"H3588\"* come|strong=\"H3318\"*, he|strong=\"H3588\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* him|strong=\"H5921\"* to|strong=\"H3318\"* the|strong=\"H5921\"* City|strong=\"H5892\"* of|strong=\"H5892\"* Moab|strong=\"H4124\"*, which|strong=\"H5892\"* is|strong=\"H5892\"* on|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H5892\"* the|strong=\"H5921\"* Arnon, which|strong=\"H5892\"* is|strong=\"H5892\"* in|strong=\"H5921\"* the|strong=\"H5921\"* utmost|strong=\"H7097\"* part|strong=\"H7097\"* of|strong=\"H5892\"* the|strong=\"H5921\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 37, + "text": "Balak|strong=\"H1111\"* said|strong=\"H7121\"* to|strong=\"H1980\"* Balaam|strong=\"H1109\"*, “Didn’t I|strong=\"H3201\"* earnestly|strong=\"H7971\"* send|strong=\"H7971\"* for|strong=\"H7121\"* you|strong=\"H7971\"* to|strong=\"H1980\"* summon|strong=\"H7121\"* you|strong=\"H7971\"*? Why|strong=\"H4100\"* didn’t you|strong=\"H7971\"* come|strong=\"H1980\"* to|strong=\"H1980\"* me|strong=\"H7971\"*? Am|strong=\"H1980\"* I|strong=\"H3201\"* not|strong=\"H3808\"* able|strong=\"H3201\"* indeed|strong=\"H3808\"* to|strong=\"H1980\"* promote|strong=\"H3513\"* you|strong=\"H7971\"* to|strong=\"H1980\"* honor|strong=\"H3513\"*?”" + }, + { + "verseNum": 38, + "text": "Balaam|strong=\"H1109\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Balak|strong=\"H1111\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H1697\"* come|strong=\"H3201\"* to|strong=\"H1696\"* you|strong=\"H7760\"*. Have|strong=\"H1697\"* I|strong=\"H2009\"* now|strong=\"H6258\"* any|strong=\"H3972\"* power|strong=\"H3201\"* at|strong=\"H3201\"* all|strong=\"H1697\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* anything|strong=\"H1697\"*? I|strong=\"H2009\"* will|strong=\"H1697\"* speak|strong=\"H1696\"* the|strong=\"H7760\"* word|strong=\"H1697\"* that|strong=\"H1697\"* God puts|strong=\"H7760\"* in|strong=\"H1696\"* my|strong=\"H7760\"* mouth|strong=\"H6310\"*.”" + }, + { + "verseNum": 39, + "text": "Balaam|strong=\"H1109\"* went|strong=\"H3212\"* with|strong=\"H5973\"* Balak|strong=\"H1111\"*, and|strong=\"H3212\"* they came|strong=\"H3212\"* to|strong=\"H3212\"* Kiriath Huzoth." + }, + { + "verseNum": 40, + "text": "Balak|strong=\"H1111\"* sacrificed|strong=\"H2076\"* cattle|strong=\"H1241\"* and|strong=\"H7971\"* sheep|strong=\"H6629\"*, and|strong=\"H7971\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* Balaam|strong=\"H1109\"*, and|strong=\"H7971\"* to|strong=\"H7971\"* the|strong=\"H7971\"* princes|strong=\"H8269\"* who|strong=\"H8269\"* were|strong=\"H8269\"* with|strong=\"H1241\"* him|strong=\"H7971\"*." + }, + { + "verseNum": 41, + "text": "In|strong=\"H5971\"* the|strong=\"H7200\"* morning|strong=\"H1242\"*, Balak|strong=\"H1111\"* took|strong=\"H3947\"* Balaam|strong=\"H1109\"*, and|strong=\"H5971\"* brought|strong=\"H5927\"* him|strong=\"H7200\"* up|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H7200\"* high places of|strong=\"H5971\"* Baal|strong=\"H1120\"*; and|strong=\"H5971\"* he|strong=\"H8033\"* saw|strong=\"H7200\"* from|strong=\"H5927\"* there|strong=\"H8033\"* part|strong=\"H7097\"* of|strong=\"H5971\"* the|strong=\"H7200\"* people|strong=\"H5971\"*." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Balaam|strong=\"H1109\"* said to|strong=\"H3559\"* Balak|strong=\"H1111\"*, “Build|strong=\"H1129\"* here|strong=\"H2088\"* seven|strong=\"H7651\"* altars|strong=\"H4196\"* for|strong=\"H4196\"* me|strong=\"H3559\"*, and|strong=\"H4196\"* prepare|strong=\"H3559\"* here|strong=\"H2088\"* seven|strong=\"H7651\"* bulls|strong=\"H6499\"* and|strong=\"H4196\"* seven|strong=\"H7651\"* rams for|strong=\"H4196\"* me|strong=\"H3559\"*.”" + }, + { + "verseNum": 2, + "text": "Balak|strong=\"H1111\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Balaam|strong=\"H1109\"* had|strong=\"H1109\"* spoken|strong=\"H1696\"*; and|strong=\"H4196\"* Balak|strong=\"H1111\"* and|strong=\"H4196\"* Balaam|strong=\"H1109\"* offered|strong=\"H5927\"* on|strong=\"H5927\"* every|strong=\"H6213\"* altar|strong=\"H4196\"* a|strong=\"H3068\"* bull|strong=\"H6499\"* and|strong=\"H4196\"* a|strong=\"H3068\"* ram." + }, + { + "verseNum": 3, + "text": "Balaam|strong=\"H1109\"* said|strong=\"H1697\"* to|strong=\"H3212\"* Balak|strong=\"H1111\"*, “Stand|strong=\"H3320\"* by|strong=\"H5921\"* your|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H3068\"* I|strong=\"H5921\"* will|strong=\"H3068\"* go|strong=\"H3212\"*. Perhaps Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* come|strong=\"H3212\"* to|strong=\"H3212\"* meet|strong=\"H7125\"* me|strong=\"H7200\"*. Whatever|strong=\"H4100\"* he|strong=\"H3068\"* shows|strong=\"H7200\"* me|strong=\"H7200\"* I|strong=\"H5921\"* will|strong=\"H3068\"* tell|strong=\"H5046\"* you|strong=\"H5921\"*.”" + }, + { + "verseNum": 4, + "text": "God met|strong=\"H7136\"* Balaam|strong=\"H1109\"*, and|strong=\"H4196\"* he|strong=\"H4196\"* said to|strong=\"H5927\"* him|strong=\"H5927\"*, “I have|strong=\"H6499\"* prepared|strong=\"H6186\"* the|strong=\"H5927\"* seven|strong=\"H7651\"* altars|strong=\"H4196\"*, and|strong=\"H4196\"* I have|strong=\"H6499\"* offered|strong=\"H5927\"* up|strong=\"H5927\"* a|strong=\"H3068\"* bull|strong=\"H6499\"* and|strong=\"H4196\"* a|strong=\"H3068\"* ram on|strong=\"H5927\"* every|strong=\"H5927\"* altar|strong=\"H4196\"*.”" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* put|strong=\"H7760\"* a|strong=\"H3068\"* word|strong=\"H1697\"* in|strong=\"H3068\"* Balaam|strong=\"H1109\"*’s mouth|strong=\"H6310\"*, and|strong=\"H3068\"* said|strong=\"H1696\"*, “Return|strong=\"H7725\"* to|strong=\"H1696\"* Balak|strong=\"H1111\"*, and|strong=\"H3068\"* thus|strong=\"H3541\"* you|strong=\"H7725\"* shall|strong=\"H3068\"* speak|strong=\"H1696\"*.”" + }, + { + "verseNum": 6, + "text": "He|strong=\"H1931\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H5921\"*, and|strong=\"H7725\"* behold|strong=\"H2009\"*, he|strong=\"H1931\"* was|strong=\"H1931\"* standing|strong=\"H5324\"* by|strong=\"H5921\"* his|strong=\"H3605\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, he|strong=\"H1931\"*, and|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H4480\"* took|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* parable|strong=\"H4912\"*, and|strong=\"H3478\"* said," + }, + { + "verseNum": 8, + "text": "How|strong=\"H4100\"* shall|strong=\"H3068\"* I|strong=\"H3808\"* curse|strong=\"H6895\"* whom|strong=\"H6895\"* God|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* cursed|strong=\"H6895\"*?" + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* from|strong=\"H1471\"* the|strong=\"H7200\"* top|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H7200\"* rocks|strong=\"H6697\"* I|strong=\"H3588\"* see|strong=\"H7200\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 10, + "text": "Who|strong=\"H4310\"* can|strong=\"H4310\"* count|strong=\"H4487\"* the|strong=\"H1961\"* dust|strong=\"H6083\"* of|strong=\"H4557\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 11, + "text": "Balak|strong=\"H1111\"* said to|strong=\"H6213\"* Balaam|strong=\"H1109\"*, “What|strong=\"H4100\"* have|strong=\"H3947\"* you|strong=\"H3947\"* done|strong=\"H6213\"* to|strong=\"H6213\"* me|strong=\"H6213\"*? I|strong=\"H2009\"* took|strong=\"H3947\"* you|strong=\"H3947\"* to|strong=\"H6213\"* curse|strong=\"H6895\"* my|strong=\"H3947\"* enemies, and|strong=\"H6213\"* behold|strong=\"H2009\"*, you|strong=\"H3947\"* have|strong=\"H3947\"* blessed|strong=\"H1288\"* them|strong=\"H6213\"* altogether|strong=\"H1288\"*.”" + }, + { + "verseNum": 12, + "text": "He|strong=\"H3068\"* answered|strong=\"H6030\"* and|strong=\"H3068\"* said|strong=\"H1696\"*, “Must|strong=\"H3808\"* I|strong=\"H7760\"* not|strong=\"H3808\"* take|strong=\"H8104\"* heed|strong=\"H8104\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* that|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* puts|strong=\"H7760\"* in|strong=\"H3068\"* my|strong=\"H8104\"* mouth|strong=\"H6310\"*?”" + }, + { + "verseNum": 13, + "text": "Balak|strong=\"H1111\"* said to|strong=\"H3212\"* him|strong=\"H7200\"*, “Please come|strong=\"H3212\"* with|strong=\"H3212\"* me|strong=\"H7200\"* to|strong=\"H3212\"* another|strong=\"H7200\"* place|strong=\"H4725\"*, where|strong=\"H8033\"* you|strong=\"H3605\"* may|strong=\"H3808\"* see|strong=\"H7200\"* them|strong=\"H7200\"*. You|strong=\"H3605\"* shall|strong=\"H3808\"* see|strong=\"H7200\"* just|strong=\"H3605\"* part|strong=\"H7097\"* of|strong=\"H4725\"* them|strong=\"H7200\"*, and|strong=\"H3212\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* see|strong=\"H7200\"* them|strong=\"H7200\"* all|strong=\"H3605\"*. Curse|strong=\"H6895\"* them|strong=\"H7200\"* from|strong=\"H3212\"* there|strong=\"H8033\"* for|strong=\"H3605\"* me|strong=\"H7200\"*.”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H3947\"* took|strong=\"H3947\"* him|strong=\"H3947\"* into|strong=\"H5927\"* the|strong=\"H3947\"* field|strong=\"H7704\"* of|strong=\"H7218\"* Zophim|strong=\"H6839\"*, to|strong=\"H5927\"* the|strong=\"H3947\"* top|strong=\"H7218\"* of|strong=\"H7218\"* Pisgah|strong=\"H6449\"*, and|strong=\"H7218\"* built|strong=\"H1129\"* seven|strong=\"H7651\"* altars|strong=\"H4196\"*, and|strong=\"H7218\"* offered|strong=\"H5927\"* up|strong=\"H5927\"* a|strong=\"H3068\"* bull|strong=\"H6499\"* and|strong=\"H7218\"* a|strong=\"H3068\"* ram on|strong=\"H5927\"* every|strong=\"H3947\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H5921\"* said to|strong=\"H5921\"* Balak|strong=\"H1111\"*, “Stand|strong=\"H3320\"* here|strong=\"H3541\"* by|strong=\"H5921\"* your|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, while|strong=\"H3541\"* I|strong=\"H3541\"* meet|strong=\"H7136\"* God over|strong=\"H5921\"* there|strong=\"H3541\"*.”" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* met|strong=\"H7136\"* Balaam|strong=\"H1109\"*, and|strong=\"H3068\"* put|strong=\"H7760\"* a|strong=\"H3068\"* word|strong=\"H1697\"* in|strong=\"H3068\"* his|strong=\"H7760\"* mouth|strong=\"H6310\"*, and|strong=\"H3068\"* said|strong=\"H1696\"*, “Return|strong=\"H7725\"* to|strong=\"H1696\"* Balak|strong=\"H1111\"*, and|strong=\"H3068\"* say|strong=\"H1696\"* this|strong=\"H3541\"*.”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H3068\"* came|strong=\"H3068\"* to|strong=\"H1696\"* him|strong=\"H5921\"*, and|strong=\"H3068\"* behold|strong=\"H2009\"*, he|strong=\"H3068\"* was|strong=\"H3068\"* standing|strong=\"H5324\"* by|strong=\"H5921\"* his|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* princes|strong=\"H8269\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"* with|strong=\"H3068\"* him|strong=\"H5921\"*. Balak|strong=\"H1111\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*, “What|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoken|strong=\"H1696\"*?”" + }, + { + "verseNum": 18, + "text": "He|strong=\"H5704\"* took|strong=\"H5375\"* up|strong=\"H6965\"* his|strong=\"H5375\"* parable|strong=\"H4912\"*, and|strong=\"H1121\"* said|strong=\"H8085\"*," + }, + { + "verseNum": 19, + "text": "God|strong=\"H3808\"* is|strong=\"H1931\"* not|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H1121\"*, that|strong=\"H1931\"* he|strong=\"H1931\"* should|strong=\"H6213\"* lie|strong=\"H3576\"*," + }, + { + "verseNum": 20, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H3808\"* received|strong=\"H3947\"* a|strong=\"H3068\"* command to|strong=\"H7725\"* bless|strong=\"H1288\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* seen|strong=\"H7200\"* iniquity|strong=\"H5999\"* in|strong=\"H3478\"* Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 22, + "text": "God brings|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3318\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 23, + "text": "Surely|strong=\"H3588\"* there is|strong=\"H4100\"* no|strong=\"H3808\"* enchantment|strong=\"H5173\"* with|strong=\"H3478\"* Jacob|strong=\"H3290\"*;" + }, + { + "verseNum": 24, + "text": "Behold|strong=\"H2005\"*, a|strong=\"H3068\"* people|strong=\"H5971\"* rises|strong=\"H6965\"* up|strong=\"H6965\"* as|strong=\"H5704\"* a|strong=\"H3068\"* lioness|strong=\"H3833\"*." + }, + { + "verseNum": 25, + "text": "Balak|strong=\"H1111\"* said to|strong=\"H3808\"* Balaam|strong=\"H1109\"*, “Neither|strong=\"H3808\"* curse|strong=\"H6895\"* them|strong=\"H1288\"* at|strong=\"H3808\"* all|strong=\"H1288\"*, nor|strong=\"H3808\"* bless|strong=\"H1288\"* them|strong=\"H1288\"* at|strong=\"H3808\"* all|strong=\"H1288\"*.”" + }, + { + "verseNum": 26, + "text": "But|strong=\"H3808\"* Balaam|strong=\"H1109\"* answered|strong=\"H6030\"* Balak|strong=\"H1111\"*, “Didn’t I|strong=\"H3808\"* tell|strong=\"H1696\"* you|strong=\"H3605\"*, saying|strong=\"H1696\"*, ‘All|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* speaks|strong=\"H1696\"*, that|strong=\"H3605\"* I|strong=\"H3808\"* must|strong=\"H3808\"* do|strong=\"H6213\"*’?”" + }, + { + "verseNum": 27, + "text": "Balak|strong=\"H1111\"* said to|strong=\"H3212\"* Balaam|strong=\"H1109\"*, “Come|strong=\"H3212\"* now|strong=\"H4994\"*, I|strong=\"H3212\"* will|strong=\"H5869\"* take|strong=\"H3947\"* you|strong=\"H3947\"* to|strong=\"H3212\"* another place|strong=\"H4725\"*; perhaps it|strong=\"H8033\"* will|strong=\"H5869\"* please|strong=\"H4994\"* God that|strong=\"H5869\"* you|strong=\"H3947\"* may|strong=\"H4994\"* curse|strong=\"H6895\"* them|strong=\"H3947\"* for|strong=\"H5869\"* me|strong=\"H4994\"* from|strong=\"H3947\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 28, + "text": "Balak|strong=\"H1111\"* took|strong=\"H3947\"* Balaam|strong=\"H1109\"* to|strong=\"H5921\"* the|strong=\"H6440\"* top|strong=\"H7218\"* of|strong=\"H7218\"* Peor|strong=\"H6465\"*, that|strong=\"H7218\"* looks|strong=\"H8259\"* down|strong=\"H8259\"* on|strong=\"H5921\"* the|strong=\"H6440\"* desert|strong=\"H3452\"*." + }, + { + "verseNum": 29, + "text": "Balaam|strong=\"H1109\"* said to|strong=\"H3559\"* Balak|strong=\"H1111\"*, “Build|strong=\"H1129\"* seven|strong=\"H7651\"* altars|strong=\"H4196\"* for|strong=\"H4196\"* me|strong=\"H3559\"* here|strong=\"H2088\"*, and|strong=\"H4196\"* prepare|strong=\"H3559\"* seven|strong=\"H7651\"* bulls|strong=\"H6499\"* and|strong=\"H4196\"* seven|strong=\"H7651\"* rams for|strong=\"H4196\"* me|strong=\"H3559\"* here|strong=\"H2088\"*.”" + }, + { + "verseNum": 30, + "text": "Balak|strong=\"H1111\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Balaam|strong=\"H1109\"* had|strong=\"H1109\"* said, and|strong=\"H4196\"* offered|strong=\"H5927\"* up|strong=\"H5927\"* a|strong=\"H3068\"* bull|strong=\"H6499\"* and|strong=\"H4196\"* a|strong=\"H3068\"* ram on|strong=\"H5927\"* every|strong=\"H6213\"* altar|strong=\"H4196\"*." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* Balaam|strong=\"H1109\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H3588\"* pleased|strong=\"H5869\"* Yahweh|strong=\"H3068\"* to|strong=\"H1980\"* bless|strong=\"H1288\"* Israel|strong=\"H3478\"*, he|strong=\"H3588\"* didn’t go|strong=\"H1980\"*, as|strong=\"H3068\"* at|strong=\"H3478\"* the|strong=\"H6440\"* other|strong=\"H6471\"* times|strong=\"H6471\"*, to|strong=\"H1980\"* use divination, but|strong=\"H3588\"* he|strong=\"H3588\"* set|strong=\"H7896\"* his|strong=\"H3068\"* face|strong=\"H6440\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 2, + "text": "Balaam|strong=\"H1109\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"*, and|strong=\"H3478\"* he|strong=\"H5921\"* saw|strong=\"H7200\"* Israel|strong=\"H3478\"* dwelling|strong=\"H7931\"* according|strong=\"H5921\"* to|strong=\"H3478\"* their|strong=\"H5375\"* tribes|strong=\"H7626\"*; and|strong=\"H3478\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"* of|strong=\"H7626\"* God came|strong=\"H1961\"* on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H1121\"* took|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* parable|strong=\"H4912\"*, and|strong=\"H1121\"* said|strong=\"H5002\"*," + }, + { + "verseNum": 4, + "text": "he says|strong=\"H5002\"*, who|strong=\"H7706\"* hears|strong=\"H8085\"* the|strong=\"H5002\"* words of|strong=\"H5869\"* God," + }, + { + "verseNum": 5, + "text": "How|strong=\"H4100\"* goodly|strong=\"H2895\"* are|strong=\"H3478\"* your|strong=\"H3478\"* tents|strong=\"H4908\"*, Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 6, + "text": "As|strong=\"H3068\"* valleys|strong=\"H5158\"* they|strong=\"H3068\"* are|strong=\"H3068\"* spread|strong=\"H5186\"* out|strong=\"H5186\"*," + }, + { + "verseNum": 7, + "text": "Water|strong=\"H4325\"* shall|strong=\"H4428\"* flow|strong=\"H5140\"* from|strong=\"H4325\"* his|strong=\"H5375\"* buckets|strong=\"H1805\"*." + }, + { + "verseNum": 8, + "text": "God brings|strong=\"H3318\"* him|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3318\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H1288\"* couched|strong=\"H3766\"*, he|strong=\"H1288\"* lay|strong=\"H7901\"* down|strong=\"H7901\"* as|strong=\"H6965\"* a|strong=\"H3068\"* lion|strong=\"H3833\"*," + }, + { + "verseNum": 10, + "text": "Balak|strong=\"H1111\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* Balaam|strong=\"H1109\"*, and|strong=\"H2088\"* he|strong=\"H7121\"* struck|strong=\"H5606\"* his|strong=\"H7121\"* hands|strong=\"H3709\"* together|strong=\"H5606\"*. Balak|strong=\"H1111\"* said|strong=\"H7121\"* to|strong=\"H7121\"* Balaam|strong=\"H1109\"*, “I|strong=\"H2009\"* called|strong=\"H7121\"* you|strong=\"H1288\"* to|strong=\"H7121\"* curse|strong=\"H6895\"* my|strong=\"H7121\"* enemies, and|strong=\"H2088\"*, behold|strong=\"H2009\"*, you|strong=\"H1288\"* have|strong=\"H2009\"* altogether|strong=\"H1288\"* blessed|strong=\"H1288\"* them|strong=\"H7121\"* these|strong=\"H2088\"* three|strong=\"H7969\"* times|strong=\"H6471\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H6258\"*, flee|strong=\"H1272\"* to|strong=\"H3068\"* your|strong=\"H3068\"* place|strong=\"H4725\"*, now|strong=\"H6258\"*! I|strong=\"H2009\"* thought to|strong=\"H3068\"* promote|strong=\"H3513\"* you|strong=\"H3513\"* to|strong=\"H3068\"* great|strong=\"H3513\"* honor|strong=\"H3519\"*; but|strong=\"H2009\"*, behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* kept|strong=\"H4513\"* you|strong=\"H3513\"* back|strong=\"H4513\"* from|strong=\"H3068\"* honor|strong=\"H3519\"*.”" + }, + { + "verseNum": 12, + "text": "Balaam|strong=\"H1109\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Balak|strong=\"H1111\"*, “Didn’t I|strong=\"H3808\"* also|strong=\"H1571\"* tell|strong=\"H1696\"* your|strong=\"H7971\"* messengers|strong=\"H4397\"* whom you|strong=\"H7971\"* sent|strong=\"H7971\"* to|strong=\"H1696\"* me|strong=\"H7971\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 13, + "text": "‘If Balak|strong=\"H1111\"* would|strong=\"H3068\"* give|strong=\"H5414\"* me|strong=\"H5414\"* his|strong=\"H5414\"* house|strong=\"H1004\"* full|strong=\"H4393\"* of|strong=\"H1004\"* silver|strong=\"H3701\"* and|strong=\"H3068\"* gold|strong=\"H2091\"*, I|strong=\"H5414\"* can|strong=\"H3201\"*’t go|strong=\"H5674\"* beyond|strong=\"H5674\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H6310\"*, to|strong=\"H1696\"* do|strong=\"H6213\"* either|strong=\"H3808\"* good|strong=\"H2896\"* or|strong=\"H3808\"* bad|strong=\"H7451\"* from|strong=\"H3068\"* my|strong=\"H5414\"* own mind|strong=\"H3820\"*. I|strong=\"H5414\"* will|strong=\"H3068\"* say|strong=\"H1696\"* what|strong=\"H2896\"* Yahweh|strong=\"H3068\"* says|strong=\"H1696\"*’?" + }, + { + "verseNum": 14, + "text": "Now|strong=\"H6258\"*, behold|strong=\"H2005\"*, I|strong=\"H3117\"* go|strong=\"H1980\"* to|strong=\"H1980\"* my|strong=\"H6213\"* people|strong=\"H5971\"*. Come|strong=\"H1980\"*, I|strong=\"H3117\"* will|strong=\"H5971\"* inform you|strong=\"H3117\"* what|strong=\"H2088\"* this|strong=\"H2088\"* people|strong=\"H5971\"* shall|strong=\"H5971\"* do|strong=\"H6213\"* to|strong=\"H1980\"* your|strong=\"H6213\"* people|strong=\"H5971\"* in|strong=\"H1980\"* the|strong=\"H6213\"* latter days|strong=\"H3117\"*.”" + }, + { + "verseNum": 15, + "text": "He|strong=\"H1121\"* took|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* parable|strong=\"H4912\"*, and|strong=\"H1121\"* said|strong=\"H5002\"*," + }, + { + "verseNum": 16, + "text": "he|strong=\"H3045\"* says|strong=\"H5002\"*, who|strong=\"H3045\"* hears|strong=\"H8085\"* the|strong=\"H5002\"* words of|strong=\"H5869\"* God," + }, + { + "verseNum": 17, + "text": "I|strong=\"H6258\"* see|strong=\"H7200\"* him|strong=\"H7200\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* now|strong=\"H6258\"*." + }, + { + "verseNum": 18, + "text": "Edom shall|strong=\"H3478\"* be|strong=\"H1961\"* a|strong=\"H3068\"* possession|strong=\"H3424\"*." + }, + { + "verseNum": 19, + "text": "Out of|strong=\"H5892\"* Jacob|strong=\"H3290\"* shall|strong=\"H5892\"* one|strong=\"H5892\"* have|strong=\"H5892\"* dominion|strong=\"H7287\"*," + }, + { + "verseNum": 20, + "text": "He|strong=\"H7200\"* looked|strong=\"H7200\"* at|strong=\"H7200\"* Amalek|strong=\"H6002\"*, and|strong=\"H7200\"* took|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* parable|strong=\"H4912\"*, and|strong=\"H7200\"* said," + }, + { + "verseNum": 21, + "text": "He|strong=\"H7760\"* looked|strong=\"H7200\"* at|strong=\"H7200\"* the|strong=\"H7200\"* Kenite|strong=\"H7017\"*, and|strong=\"H7200\"* took|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* parable|strong=\"H4912\"*, and|strong=\"H7200\"* said," + }, + { + "verseNum": 22, + "text": "Nevertheless|strong=\"H3588\"* Kain|strong=\"H7014\"* shall|strong=\"H4100\"* be|strong=\"H1961\"* wasted|strong=\"H1197\"*," + }, + { + "verseNum": 23, + "text": "He|strong=\"H7760\"* took|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* parable|strong=\"H4912\"*, and|strong=\"H2421\"* said," + }, + { + "verseNum": 24, + "text": "But|strong=\"H1571\"* ships|strong=\"H6716\"* shall|strong=\"H3027\"* come from|strong=\"H3027\"* the|strong=\"H3027\"* coast|strong=\"H3027\"* of|strong=\"H3027\"* Kittim|strong=\"H3794\"*." + }, + { + "verseNum": 25, + "text": "Balaam|strong=\"H1109\"* rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H1980\"* went|strong=\"H1980\"* and|strong=\"H1980\"* returned|strong=\"H7725\"* to|strong=\"H1980\"* his|strong=\"H7725\"* place|strong=\"H4725\"*; and|strong=\"H1980\"* Balak|strong=\"H1111\"* also|strong=\"H1571\"* went|strong=\"H1980\"* his|strong=\"H7725\"* way|strong=\"H1870\"*." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Israel|strong=\"H3478\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* Shittim|strong=\"H7851\"*; and|strong=\"H3478\"* the|strong=\"H2181\"* people|strong=\"H5971\"* began|strong=\"H2490\"* to|strong=\"H3478\"* play|strong=\"H2181\"* the|strong=\"H2181\"* prostitute|strong=\"H2181\"* with|strong=\"H3427\"* the|strong=\"H2181\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Moab|strong=\"H4124\"*;" + }, + { + "verseNum": 2, + "text": "for|strong=\"H7121\"* they|strong=\"H5971\"* called|strong=\"H7121\"* the|strong=\"H7121\"* people|strong=\"H5971\"* to|strong=\"H7121\"* the|strong=\"H7121\"* sacrifices|strong=\"H2077\"* of|strong=\"H2077\"* their|strong=\"H7121\"* gods. The|strong=\"H7121\"* people|strong=\"H5971\"* ate and|strong=\"H5971\"* bowed|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H7121\"* their|strong=\"H7121\"* gods." + }, + { + "verseNum": 3, + "text": "Israel|strong=\"H3478\"* joined|strong=\"H6775\"* himself|strong=\"H3068\"* to|strong=\"H3478\"* Baal|strong=\"H1187\"* Peor|strong=\"H1187\"*, and|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H7725\"* Moses|strong=\"H4872\"*, “Take|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* chiefs|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* hang|strong=\"H3363\"* them|strong=\"H7725\"* up|strong=\"H3363\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* before|strong=\"H5048\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*, that|strong=\"H5971\"* the|strong=\"H3605\"* fierce|strong=\"H2740\"* anger|strong=\"H2740\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* may|strong=\"H3068\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 5, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3478\"* the|strong=\"H4872\"* judges|strong=\"H8199\"* of|strong=\"H8199\"* Israel|strong=\"H3478\"*, “Everyone kill|strong=\"H2026\"* his|strong=\"H3478\"* men|strong=\"H3478\"* who|strong=\"H3478\"* have|strong=\"H3478\"* joined|strong=\"H6775\"* themselves to|strong=\"H3478\"* Baal|strong=\"H1187\"* Peor|strong=\"H1187\"*.”" + }, + { + "verseNum": 6, + "text": "Behold|strong=\"H2009\"*, one|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* came|strong=\"H7126\"* and|strong=\"H1121\"* brought|strong=\"H7126\"* to|strong=\"H3478\"* his|strong=\"H3605\"* brothers|strong=\"H1121\"* a|strong=\"H3068\"* Midianite|strong=\"H4084\"* woman|strong=\"H4084\"* in|strong=\"H3478\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*, and|strong=\"H1121\"* in|strong=\"H3478\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, while|strong=\"H2009\"* they|strong=\"H1992\"* were|strong=\"H3478\"* weeping|strong=\"H1058\"* at|strong=\"H3478\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H7200\"* Phinehas|strong=\"H6372\"*, the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar, the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H7200\"* priest|strong=\"H3548\"*, saw|strong=\"H7200\"* it|strong=\"H8432\"*, he|strong=\"H3027\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* from|strong=\"H3027\"* the|strong=\"H7200\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H7200\"* congregation|strong=\"H5712\"*, and|strong=\"H1121\"* took|strong=\"H3947\"* a|strong=\"H3068\"* spear|strong=\"H7420\"* in|strong=\"H8432\"* his|strong=\"H3947\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H8147\"* went|strong=\"H3478\"* after|strong=\"H5921\"* the|strong=\"H5921\"* man|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* into|strong=\"H5921\"* the|strong=\"H5921\"* pavilion, and|strong=\"H1121\"* thrust|strong=\"H1856\"* both|strong=\"H8147\"* of|strong=\"H1121\"* them|strong=\"H5921\"* through|strong=\"H1856\"*, the|strong=\"H5921\"* man|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* woman through|strong=\"H1856\"* her|strong=\"H5921\"* body. So|strong=\"H1856\"* the|strong=\"H5921\"* plague|strong=\"H4046\"* was|strong=\"H3478\"* stopped|strong=\"H6113\"* among|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 9, + "text": "Those|strong=\"H1961\"* who died|strong=\"H4191\"* by|strong=\"H4191\"* the|strong=\"H1961\"* plague|strong=\"H4046\"* were|strong=\"H1961\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 11, + "text": "“Phinehas|strong=\"H6372\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H5921\"* priest|strong=\"H3548\"*, has|strong=\"H3478\"* turned|strong=\"H7725\"* my|strong=\"H5921\"* wrath|strong=\"H2534\"* away|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, in|strong=\"H5921\"* that|strong=\"H3478\"* he|strong=\"H3808\"* was|strong=\"H3478\"* jealous|strong=\"H7065\"* with|strong=\"H5921\"* my|strong=\"H5921\"* jealousy|strong=\"H7068\"* among|strong=\"H8432\"* them|strong=\"H5921\"*, so|strong=\"H3808\"* that|strong=\"H3478\"* I|strong=\"H5921\"* didn’t consume|strong=\"H3615\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* my|strong=\"H5921\"* jealousy|strong=\"H7068\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H3651\"* say, ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* give|strong=\"H5414\"* to|strong=\"H5414\"* him|strong=\"H5414\"* my|strong=\"H5414\"* covenant|strong=\"H1285\"* of|strong=\"H1285\"* peace|strong=\"H7965\"*." + }, + { + "verseNum": 13, + "text": "It|strong=\"H5921\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* to|strong=\"H3478\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* his|strong=\"H5921\"* offspring|strong=\"H2233\"* after|strong=\"H5921\"* him|strong=\"H5921\"*, the|strong=\"H5921\"* covenant|strong=\"H1285\"* of|strong=\"H1121\"* an|strong=\"H1961\"* everlasting|strong=\"H5769\"* priesthood|strong=\"H3550\"*, because|strong=\"H5921\"* he|strong=\"H5921\"* was|strong=\"H1961\"* jealous|strong=\"H7065\"* for|strong=\"H5921\"* his|strong=\"H5921\"* God, and|strong=\"H1121\"* made|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.’”" + }, + { + "verseNum": 14, + "text": "Now|strong=\"H3478\"* the|strong=\"H5221\"* name|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H5221\"* man|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* that|strong=\"H3478\"* was|strong=\"H8034\"* slain|strong=\"H5221\"*, who|strong=\"H1121\"* was|strong=\"H8034\"* slain|strong=\"H5221\"* with|strong=\"H1004\"* the|strong=\"H5221\"* Midianite|strong=\"H4084\"* woman|strong=\"H4084\"*, was|strong=\"H8034\"* Zimri|strong=\"H2174\"*, the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Salu|strong=\"H5543\"*, a|strong=\"H3068\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* a|strong=\"H3068\"* fathers’ house|strong=\"H1004\"* among|strong=\"H8034\"* the|strong=\"H5221\"* Simeonites|strong=\"H8099\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5221\"* name|strong=\"H8034\"* of|strong=\"H1004\"* the|strong=\"H5221\"* Midianite|strong=\"H4084\"* woman|strong=\"H1323\"* who|strong=\"H1931\"* was|strong=\"H8034\"* slain|strong=\"H5221\"* was|strong=\"H8034\"* Cozbi|strong=\"H3579\"*, the|strong=\"H5221\"* daughter|strong=\"H1323\"* of|strong=\"H1004\"* Zur|strong=\"H6698\"*. He|strong=\"H1931\"* was|strong=\"H8034\"* head|strong=\"H7218\"* of|strong=\"H1004\"* the|strong=\"H5221\"* people|strong=\"H1931\"* of|strong=\"H1004\"* a|strong=\"H3068\"* fathers’ house|strong=\"H1004\"* in|strong=\"H1004\"* Midian|strong=\"H4080\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 17, + "text": "“Harass|strong=\"H6887\"* the|strong=\"H5221\"* Midianites|strong=\"H4084\"*, and|strong=\"H5221\"* strike|strong=\"H5221\"* them|strong=\"H5221\"*;" + }, + { + "verseNum": 18, + "text": "for|strong=\"H3588\"* they|strong=\"H1992\"* harassed you|strong=\"H3588\"* with|strong=\"H5921\"* their|strong=\"H1992\"* wiles|strong=\"H5231\"*, wherein|strong=\"H3117\"* they|strong=\"H1992\"* have|strong=\"H1323\"* deceived|strong=\"H5230\"* you|strong=\"H3588\"* in|strong=\"H5921\"* the|strong=\"H5921\"* matter|strong=\"H1697\"* of|strong=\"H3117\"* Peor|strong=\"H6465\"*, and|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* incident regarding|strong=\"H5921\"* Cozbi|strong=\"H3579\"*, the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H3117\"* the|strong=\"H5921\"* prince|strong=\"H5387\"* of|strong=\"H3117\"* Midian|strong=\"H4080\"*, their|strong=\"H1992\"* sister, who|strong=\"H1992\"* was|strong=\"H1697\"* slain|strong=\"H5221\"* on|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H5921\"* plague|strong=\"H4046\"* in|strong=\"H5921\"* the|strong=\"H5921\"* matter|strong=\"H1697\"* of|strong=\"H3117\"* Peor|strong=\"H6465\"*.”" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "After the|strong=\"H3068\"* plague, Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* to|strong=\"H3068\"* Eleazar the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H3068\"* priest|strong=\"H3548\"*, saying," + }, + { + "verseNum": 2, + "text": "“Take|strong=\"H5375\"* a|strong=\"H3068\"* census|strong=\"H7218\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"* in|strong=\"H8141\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 3, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Eleazar the|strong=\"H5921\"* priest|strong=\"H3548\"* spoke|strong=\"H1696\"* with|strong=\"H1696\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* plains|strong=\"H6160\"* of|strong=\"H5921\"* Moab|strong=\"H4124\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* at|strong=\"H5921\"* Jericho|strong=\"H3405\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 4, + "text": "“Take|strong=\"H3318\"* a|strong=\"H3068\"* census, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 5, + "text": "Reuben|strong=\"H7205\"*, the|strong=\"H1121\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*: of|strong=\"H1121\"* Hanoch|strong=\"H2585\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Hanochites|strong=\"H2599\"*; of|strong=\"H1121\"* Pallu|strong=\"H6396\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Palluites|strong=\"H6384\"*;" + }, + { + "verseNum": 6, + "text": "of|strong=\"H4940\"* Hezron|strong=\"H2696\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Hezronites|strong=\"H2697\"*; of|strong=\"H4940\"* Carmi|strong=\"H3756\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Carmites|strong=\"H3757\"*." + }, + { + "verseNum": 7, + "text": "These are|strong=\"H1961\"* the|strong=\"H6485\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H6485\"* Reubenites|strong=\"H7206\"*; and|strong=\"H3967\"* those|strong=\"H1961\"* who|strong=\"H6485\"* were|strong=\"H1961\"* counted|strong=\"H6485\"* of|strong=\"H4940\"* them|strong=\"H1961\"* were|strong=\"H1961\"* forty-three thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pallu|strong=\"H6396\"*: Eliab." + }, + { + "verseNum": 9, + "text": "The|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eliab: Nemuel|strong=\"H5241\"*, Dathan|strong=\"H1885\"*, and|strong=\"H1121\"* Abiram. These|strong=\"H7121\"* are|strong=\"H1121\"* that|strong=\"H1931\"* Dathan|strong=\"H1885\"* and|strong=\"H1121\"* Abiram who|strong=\"H1931\"* were|strong=\"H1121\"* called|strong=\"H7121\"* by|strong=\"H5921\"* the|strong=\"H5921\"* congregation|strong=\"H5712\"*, who|strong=\"H1931\"* rebelled|strong=\"H5327\"* against|strong=\"H5921\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* against|strong=\"H5921\"* Aaron in|strong=\"H5921\"* the|strong=\"H5921\"* company|strong=\"H5712\"* of|strong=\"H1121\"* Korah|strong=\"H7141\"* when|strong=\"H3068\"* they|strong=\"H3068\"* rebelled|strong=\"H5327\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 10, + "text": "and|strong=\"H3967\"* the|strong=\"H1961\"* earth opened|strong=\"H6605\"* its|strong=\"H1961\"* mouth|strong=\"H6310\"*, and|strong=\"H3967\"* swallowed|strong=\"H1104\"* them|strong=\"H1961\"* up|strong=\"H1104\"* together with|strong=\"H6310\"* Korah|strong=\"H7141\"* when|strong=\"H1961\"* that|strong=\"H1961\"* company|strong=\"H5712\"* died|strong=\"H4194\"*; at|strong=\"H1961\"* the|strong=\"H1961\"* time|strong=\"H1961\"* the|strong=\"H1961\"* fire devoured|strong=\"H1104\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* men, and|strong=\"H3967\"* they|strong=\"H6310\"* became|strong=\"H1961\"* a|strong=\"H3068\"* sign|strong=\"H5251\"*." + }, + { + "verseNum": 11, + "text": "Notwithstanding, the|strong=\"H4191\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Korah|strong=\"H7141\"* didn’t die|strong=\"H4191\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"* after their families|strong=\"H4940\"*: of|strong=\"H1121\"* Nemuel|strong=\"H5241\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Nemuelites|strong=\"H5242\"*; of|strong=\"H1121\"* Jamin|strong=\"H3226\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Jaminites|strong=\"H3228\"*; of|strong=\"H1121\"* Jachin|strong=\"H3199\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Jachinites|strong=\"H3200\"*;" + }, + { + "verseNum": 13, + "text": "of|strong=\"H4940\"* Zerah|strong=\"H2226\"*, the|strong=\"H7586\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H7586\"* Zerahites|strong=\"H2227\"*; of|strong=\"H4940\"* Shaul|strong=\"H7586\"*, the|strong=\"H7586\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H7586\"* Shaulites|strong=\"H7587\"*." + }, + { + "verseNum": 14, + "text": "These|strong=\"H8147\"* are|strong=\"H8147\"* the|strong=\"H8147\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H8147\"* Simeonites|strong=\"H8099\"*, twenty-two|strong=\"H6242\"* thousand two|strong=\"H8147\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* after their families|strong=\"H4940\"*: of|strong=\"H1121\"* Zephon|strong=\"H6827\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Zephonites|strong=\"H6831\"*; of|strong=\"H1121\"* Haggi|strong=\"H2291\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Haggites|strong=\"H2291\"*; of|strong=\"H1121\"* Shuni|strong=\"H7764\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Shunites|strong=\"H7765\"*;" + }, + { + "verseNum": 16, + "text": "of|strong=\"H4940\"* Ozni, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Oznites; of|strong=\"H4940\"* Eri|strong=\"H6179\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Erites|strong=\"H6180\"*;" + }, + { + "verseNum": 17, + "text": "of|strong=\"H4940\"* Arod, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Arodites; of|strong=\"H4940\"* Areli, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Arelites." + }, + { + "verseNum": 18, + "text": "These are|strong=\"H1121\"* the|strong=\"H6485\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H6485\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* according to|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* them|strong=\"H6485\"*, forty thousand and|strong=\"H3967\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H4191\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*: Er|strong=\"H6147\"* and|strong=\"H1121\"* Onan. Er|strong=\"H6147\"* and|strong=\"H1121\"* Onan died|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H4191\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* after|strong=\"H1961\"* their|strong=\"H1961\"* families|strong=\"H4940\"* were|strong=\"H1961\"*: of|strong=\"H1121\"* Shelah|strong=\"H7956\"*, the|strong=\"H1961\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1961\"* Shelanites|strong=\"H8024\"*; of|strong=\"H1121\"* Perez|strong=\"H6557\"*, the|strong=\"H1961\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1961\"* Perezites|strong=\"H6558\"*; of|strong=\"H1121\"* Zerah|strong=\"H2226\"*, the|strong=\"H1961\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1961\"* Zerahites|strong=\"H2227\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Perez|strong=\"H6557\"* were|strong=\"H1961\"*: of|strong=\"H1121\"* Hezron|strong=\"H2696\"*, the|strong=\"H1961\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1961\"* Hezronites|strong=\"H2697\"*; of|strong=\"H1121\"* Hamul|strong=\"H2538\"*, the|strong=\"H1961\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1961\"* Hamulites|strong=\"H2539\"*." + }, + { + "verseNum": 22, + "text": "These are|strong=\"H3063\"* the|strong=\"H6485\"* families|strong=\"H4940\"* of|strong=\"H4940\"* Judah|strong=\"H3063\"* according to|strong=\"H3063\"* those who|strong=\"H3063\"* were|strong=\"H3063\"* counted|strong=\"H6485\"* of|strong=\"H4940\"* them|strong=\"H6485\"*, seventy-six thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"* after their families|strong=\"H4940\"*: of|strong=\"H1121\"* Tola|strong=\"H8439\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Tolaites|strong=\"H8440\"*; of|strong=\"H1121\"* Puvah|strong=\"H6312\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Punites|strong=\"H6324\"*;" + }, + { + "verseNum": 24, + "text": "of|strong=\"H4940\"* Jashub|strong=\"H3437\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Jashubites|strong=\"H3432\"*; of|strong=\"H4940\"* Shimron|strong=\"H8110\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Shimronites|strong=\"H8117\"*." + }, + { + "verseNum": 25, + "text": "These are the|strong=\"H6485\"* families|strong=\"H4940\"* of|strong=\"H4940\"* Issachar|strong=\"H3485\"* according to|strong=\"H7969\"* those who|strong=\"H6485\"* were|strong=\"H4940\"* counted|strong=\"H6485\"* of|strong=\"H4940\"* them|strong=\"H6485\"*, sixty-four thousand three|strong=\"H7969\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"* after their families|strong=\"H4940\"*: of|strong=\"H1121\"* Sered|strong=\"H5624\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Seredites|strong=\"H5625\"*; of|strong=\"H1121\"* Elon, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Elonites; of|strong=\"H1121\"* Jahleel|strong=\"H3177\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Jahleelites|strong=\"H3178\"*." + }, + { + "verseNum": 27, + "text": "These are the|strong=\"H6485\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H6485\"* Zebulunites|strong=\"H2075\"* according to|strong=\"H2568\"* those who|strong=\"H6485\"* were|strong=\"H4940\"* counted|strong=\"H6485\"* of|strong=\"H4940\"* them|strong=\"H6485\"*, sixty|strong=\"H8346\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* after their families|strong=\"H4940\"*: Manasseh|strong=\"H4519\"* and|strong=\"H1121\"* Ephraim." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*: of|strong=\"H1121\"* Machir|strong=\"H4353\"*, the|strong=\"H3205\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3205\"* Machirites|strong=\"H4354\"*; and|strong=\"H1121\"* Machir|strong=\"H4353\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*; of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, the|strong=\"H3205\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3205\"* Gileadites|strong=\"H1568\"*." + }, + { + "verseNum": 30, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*: of|strong=\"H1121\"* Iezer, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Iezerites; of|strong=\"H1121\"* Helek|strong=\"H2507\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Helekites|strong=\"H2516\"*;" + }, + { + "verseNum": 31, + "text": "and|strong=\"H7928\"* Asriel, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Asrielites; and|strong=\"H7928\"* Shechem|strong=\"H7928\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Shechemites|strong=\"H7930\"*;" + }, + { + "verseNum": 32, + "text": "and|strong=\"H4940\"* Shemida|strong=\"H8061\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Shemidaites|strong=\"H8062\"*; and|strong=\"H4940\"* Hepher|strong=\"H2660\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Hepherites|strong=\"H2662\"*." + }, + { + "verseNum": 33, + "text": "Zelophehad|strong=\"H6765\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hepher|strong=\"H2660\"* had|strong=\"H1961\"* no|strong=\"H3808\"* sons|strong=\"H1121\"*, but|strong=\"H3588\"* daughters|strong=\"H1323\"*: and|strong=\"H1121\"* the|strong=\"H3588\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H3588\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* Zelophehad|strong=\"H6765\"* were|strong=\"H1961\"* Mahlah|strong=\"H4244\"*, Noah|strong=\"H5270\"*, Hoglah|strong=\"H2295\"*, Milcah|strong=\"H4435\"*, and|strong=\"H1121\"* Tirzah|strong=\"H8656\"*." + }, + { + "verseNum": 34, + "text": "These|strong=\"H8147\"* are|strong=\"H8147\"* the|strong=\"H6485\"* families|strong=\"H4940\"* of|strong=\"H4940\"* Manasseh|strong=\"H4519\"*. Those who|strong=\"H6485\"* were|strong=\"H4940\"* counted|strong=\"H6485\"* of|strong=\"H4940\"* them|strong=\"H8147\"* were|strong=\"H4940\"* fifty-two|strong=\"H2572\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 35, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim after their families|strong=\"H4940\"*: of|strong=\"H1121\"* Shuthelah|strong=\"H7803\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Shuthelahites|strong=\"H8364\"*; of|strong=\"H1121\"* Becher|strong=\"H1071\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Becherites|strong=\"H1076\"*; of|strong=\"H1121\"* Tahan|strong=\"H8465\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Tahanites|strong=\"H8470\"*." + }, + { + "verseNum": 36, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shuthelah|strong=\"H7803\"*: of|strong=\"H1121\"* Eran|strong=\"H6197\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Eranites|strong=\"H6198\"*." + }, + { + "verseNum": 37, + "text": "These|strong=\"H8147\"* are|strong=\"H1121\"* the|strong=\"H6485\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H6485\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim according to|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* them|strong=\"H8147\"*, thirty-two|strong=\"H7970\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*. These|strong=\"H8147\"* are|strong=\"H1121\"* the|strong=\"H6485\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* after their|strong=\"H6485\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 38, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* after their|strong=\"H1144\"* families|strong=\"H4940\"*: of|strong=\"H1121\"* Bela|strong=\"H1106\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Belaites|strong=\"H1108\"*; of|strong=\"H1121\"* Ashbel, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Ashbelites; of|strong=\"H1121\"* Ahiram, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Ahiramites;" + }, + { + "verseNum": 39, + "text": "of|strong=\"H4940\"* Shephupham|strong=\"H8197\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Shuphamites|strong=\"H7781\"*; of|strong=\"H4940\"* Hupham|strong=\"H2349\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Huphamites|strong=\"H2350\"*." + }, + { + "verseNum": 40, + "text": "The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Bela|strong=\"H1106\"* were|strong=\"H1961\"* Ard and|strong=\"H1121\"* Naaman|strong=\"H5283\"*: the|strong=\"H1961\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1961\"* Ardites; and|strong=\"H1121\"* of|strong=\"H1121\"* Naaman|strong=\"H5283\"*, the|strong=\"H1961\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1961\"* Naamites|strong=\"H5280\"*." + }, + { + "verseNum": 41, + "text": "These are|strong=\"H1121\"* the|strong=\"H6485\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* after their|strong=\"H6485\"* families|strong=\"H4940\"*; and|strong=\"H3967\"* those|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* them|strong=\"H6485\"* were|strong=\"H1121\"* forty-five thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 42, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* after their|strong=\"H1835\"* families|strong=\"H4940\"*: of|strong=\"H1121\"* Shuham|strong=\"H7748\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Shuhamites|strong=\"H7749\"*. These are|strong=\"H1121\"* the|strong=\"H1121\"* families|strong=\"H4940\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* after their|strong=\"H1835\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 43, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H3605\"* Shuhamites|strong=\"H7749\"*, according to|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H4940\"* counted|strong=\"H6485\"* of|strong=\"H4940\"* them|strong=\"H6485\"*, were|strong=\"H4940\"* sixty-four thousand four hundred|strong=\"H3967\"*." + }, + { + "verseNum": 44, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asher after their families|strong=\"H4940\"*: of|strong=\"H1121\"* Imnah|strong=\"H3232\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Imnites|strong=\"H3232\"*; of|strong=\"H1121\"* Ishvi|strong=\"H3440\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Ishvites|strong=\"H3441\"*; of|strong=\"H1121\"* Beriah|strong=\"H1283\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Berites." + }, + { + "verseNum": 45, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Beriah|strong=\"H1283\"*: of|strong=\"H1121\"* Heber|strong=\"H2268\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Heberites|strong=\"H2277\"*; of|strong=\"H1121\"* Malchiel|strong=\"H4439\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Malchielites|strong=\"H4440\"*." + }, + { + "verseNum": 46, + "text": "The|strong=\"H8034\"* name|strong=\"H8034\"* of|strong=\"H1323\"* the|strong=\"H8034\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Asher was|strong=\"H8034\"* Serah|strong=\"H8294\"*." + }, + { + "verseNum": 47, + "text": "These are|strong=\"H1121\"* the|strong=\"H6485\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H6485\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asher according to|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* them|strong=\"H6485\"*, fifty-three thousand four|strong=\"H7969\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 48, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"* after their families|strong=\"H4940\"*: of|strong=\"H1121\"* Jahzeel|strong=\"H3183\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Jahzeelites|strong=\"H3184\"*; of|strong=\"H1121\"* Guni|strong=\"H1476\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Gunites|strong=\"H1477\"*;" + }, + { + "verseNum": 49, + "text": "of|strong=\"H4940\"* Jezer|strong=\"H3337\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Jezerites|strong=\"H3340\"*; of|strong=\"H4940\"* Shillem|strong=\"H8006\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Shillemites|strong=\"H8016\"*." + }, + { + "verseNum": 50, + "text": "These are the|strong=\"H6485\"* families|strong=\"H4940\"* of|strong=\"H4940\"* Naphtali|strong=\"H5321\"* according to|strong=\"H2568\"* their|strong=\"H6485\"* families|strong=\"H4940\"*; and|strong=\"H3967\"* those who|strong=\"H6485\"* were|strong=\"H4940\"* counted|strong=\"H6485\"* of|strong=\"H4940\"* them|strong=\"H6485\"* were|strong=\"H4940\"* forty-five thousand four hundred|strong=\"H3967\"*." + }, + { + "verseNum": 51, + "text": "These are|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H3478\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* the|strong=\"H6485\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, six|strong=\"H8337\"* hundred|strong=\"H3967\"* one|strong=\"H1121\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"*." + }, + { + "verseNum": 52, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 53, + "text": "“To|strong=\"H5159\"* these the|strong=\"H8034\"* land|strong=\"H5159\"* shall|strong=\"H8034\"* be|strong=\"H8034\"* divided|strong=\"H2505\"* for|strong=\"H8034\"* an|strong=\"H5159\"* inheritance|strong=\"H5159\"* according to|strong=\"H5159\"* the|strong=\"H8034\"* number|strong=\"H4557\"* of|strong=\"H8034\"* names|strong=\"H8034\"*." + }, + { + "verseNum": 54, + "text": "To|strong=\"H5414\"* the|strong=\"H5414\"* more|strong=\"H7235\"* you|strong=\"H5414\"* shall|strong=\"H6310\"* give|strong=\"H5414\"* the|strong=\"H5414\"* more|strong=\"H7235\"* inheritance|strong=\"H5159\"*, and|strong=\"H6310\"* to|strong=\"H5414\"* the|strong=\"H5414\"* fewer|strong=\"H4592\"* you|strong=\"H5414\"* shall|strong=\"H6310\"* give|strong=\"H5414\"* the|strong=\"H5414\"* less|strong=\"H4591\"* inheritance|strong=\"H5159\"*. To|strong=\"H5414\"* everyone according|strong=\"H6310\"* to|strong=\"H5414\"* those who|strong=\"H7227\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6310\"* him|strong=\"H5414\"* shall|strong=\"H6310\"* his|strong=\"H5414\"* inheritance|strong=\"H5159\"* be|strong=\"H5414\"* given|strong=\"H5414\"*." + }, + { + "verseNum": 55, + "text": "Notwithstanding, the|strong=\"H5157\"* land|strong=\"H1486\"* shall|strong=\"H8034\"* be|strong=\"H8034\"* divided|strong=\"H2505\"* by|strong=\"H8034\"* lot|strong=\"H1486\"*. According to|strong=\"H8034\"* the|strong=\"H5157\"* names|strong=\"H8034\"* of|strong=\"H4294\"* the|strong=\"H5157\"* tribes|strong=\"H4294\"* of|strong=\"H4294\"* their|strong=\"H5157\"* fathers they|strong=\"H8034\"* shall|strong=\"H8034\"* inherit|strong=\"H5157\"*." + }, + { + "verseNum": 56, + "text": "According|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* lot|strong=\"H1486\"* shall|strong=\"H6310\"* their|strong=\"H5921\"* inheritance|strong=\"H5159\"* be|strong=\"H5159\"* divided|strong=\"H2505\"* between|strong=\"H5921\"* the|strong=\"H5921\"* more|strong=\"H7227\"* and|strong=\"H6310\"* the|strong=\"H5921\"* fewer|strong=\"H4592\"*.”" + }, + { + "verseNum": 57, + "text": "These|strong=\"H3881\"* are those who|strong=\"H3881\"* were|strong=\"H3881\"* counted|strong=\"H6485\"* of|strong=\"H4940\"* the|strong=\"H6485\"* Levites|strong=\"H3881\"* after their|strong=\"H6485\"* families|strong=\"H4940\"*: of|strong=\"H4940\"* Gershon|strong=\"H1648\"*, the|strong=\"H6485\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H6485\"* Gershonites|strong=\"H1649\"*; of|strong=\"H4940\"* Kohath|strong=\"H6955\"*, the|strong=\"H6485\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H6485\"* Kohathites|strong=\"H6956\"*; of|strong=\"H4940\"* Merari|strong=\"H4847\"*, the|strong=\"H6485\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H6485\"* Merarites|strong=\"H4848\"*." + }, + { + "verseNum": 58, + "text": "These|strong=\"H3881\"* are the|strong=\"H3205\"* families|strong=\"H4940\"* of|strong=\"H3205\"* Levi|strong=\"H3881\"*: the|strong=\"H3205\"* family|strong=\"H4940\"* of|strong=\"H3205\"* the|strong=\"H3205\"* Libnites|strong=\"H3846\"*, the|strong=\"H3205\"* family|strong=\"H4940\"* of|strong=\"H3205\"* the|strong=\"H3205\"* Hebronites|strong=\"H2276\"*, the|strong=\"H3205\"* family|strong=\"H4940\"* of|strong=\"H3205\"* the|strong=\"H3205\"* Mahlites|strong=\"H4250\"*, the|strong=\"H3205\"* family|strong=\"H4940\"* of|strong=\"H3205\"* the|strong=\"H3205\"* Mushites|strong=\"H4188\"*, and|strong=\"H3881\"* the|strong=\"H3205\"* family|strong=\"H4940\"* of|strong=\"H3205\"* the|strong=\"H3205\"* Korahites|strong=\"H7145\"*. Kohath|strong=\"H6955\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Amram|strong=\"H6019\"*." + }, + { + "verseNum": 59, + "text": "The|strong=\"H3205\"* name|strong=\"H8034\"* of|strong=\"H1323\"* Amram|strong=\"H6019\"*’s wife was|strong=\"H8034\"* Jochebed|strong=\"H3115\"*, the|strong=\"H3205\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Levi|strong=\"H3878\"*, who|strong=\"H3205\"* was|strong=\"H8034\"* born|strong=\"H3205\"* to|strong=\"H3205\"* Levi|strong=\"H3878\"* in|strong=\"H8034\"* Egypt|strong=\"H4714\"*. She bore|strong=\"H3205\"* to|strong=\"H3205\"* Amram|strong=\"H6019\"* Aaron and|strong=\"H4872\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* Miriam|strong=\"H4813\"* their|strong=\"H4714\"* sister." + }, + { + "verseNum": 60, + "text": "To|strong=\"H3205\"* Aaron were|strong=\"H3205\"* born|strong=\"H3205\"* Nadab|strong=\"H5070\"* and|strong=\"H5070\"* Abihu, Eleazar and|strong=\"H5070\"* Ithamar." + }, + { + "verseNum": 61, + "text": "Nadab|strong=\"H5070\"* and|strong=\"H3068\"* Abihu died|strong=\"H4191\"* when|strong=\"H3068\"* they|strong=\"H3068\"* offered|strong=\"H7126\"* strange|strong=\"H2114\"* fire before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 62, + "text": "Those|strong=\"H1992\"* who|strong=\"H3605\"* were|strong=\"H3478\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* them|strong=\"H5414\"* were|strong=\"H3478\"* twenty-three|strong=\"H6242\"* thousand, every|strong=\"H3605\"* male|strong=\"H2145\"* from|strong=\"H3478\"* a|strong=\"H3068\"* month|strong=\"H2320\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*; for|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H3478\"* not|strong=\"H3808\"* counted|strong=\"H6485\"* among|strong=\"H8432\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, because|strong=\"H3588\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* inheritance|strong=\"H5159\"* given|strong=\"H5414\"* them|strong=\"H5414\"* among|strong=\"H8432\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 63, + "text": "These are|strong=\"H1121\"* those|strong=\"H5921\"* who|strong=\"H3548\"* were|strong=\"H3478\"* counted|strong=\"H6485\"* by|strong=\"H5921\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Eleazar the|strong=\"H5921\"* priest|strong=\"H3548\"*, who|strong=\"H3548\"* counted|strong=\"H6485\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* the|strong=\"H5921\"* plains|strong=\"H6160\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* at|strong=\"H5921\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 64, + "text": "But|strong=\"H3808\"* among|strong=\"H3808\"* these there|strong=\"H1961\"* was|strong=\"H1961\"* not|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* them|strong=\"H1961\"* who|strong=\"H3548\"* were|strong=\"H3478\"* counted|strong=\"H6485\"* by|strong=\"H3478\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron the|strong=\"H6485\"* priest|strong=\"H3548\"*, who|strong=\"H3548\"* counted|strong=\"H6485\"* the|strong=\"H6485\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H6485\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Sinai|strong=\"H5514\"*." + }, + { + "verseNum": 65, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* said of|strong=\"H1121\"* them|strong=\"H1992\"*, “They|strong=\"H1992\"* shall|strong=\"H3068\"* surely|strong=\"H4191\"* die|strong=\"H4191\"* in|strong=\"H3068\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"*.” There|strong=\"H1992\"* was|strong=\"H3068\"* not|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H1121\"* left|strong=\"H3498\"* of|strong=\"H1121\"* them|strong=\"H1992\"*, except|strong=\"H3588\"* Caleb|strong=\"H3612\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"*, and|strong=\"H1121\"* Joshua|strong=\"H3091\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H7126\"* the|strong=\"H7126\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* Zelophehad|strong=\"H6765\"*, the|strong=\"H7126\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hepher|strong=\"H2660\"*, the|strong=\"H7126\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, the|strong=\"H7126\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"*, the|strong=\"H7126\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, of|strong=\"H1121\"* the|strong=\"H7126\"* families|strong=\"H4940\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* the|strong=\"H7126\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* came|strong=\"H7126\"* near|strong=\"H7126\"*. These are|strong=\"H1121\"* the|strong=\"H7126\"* names|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H7126\"* daughters|strong=\"H1323\"*: Mahlah|strong=\"H4244\"*, Noah|strong=\"H5270\"*, Hoglah|strong=\"H2295\"*, Milcah|strong=\"H4435\"*, and|strong=\"H1121\"* Tirzah|strong=\"H8656\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H3605\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Moses|strong=\"H4872\"*, before|strong=\"H6440\"* Eleazar the|strong=\"H3605\"* priest|strong=\"H3548\"*, and|strong=\"H4872\"* before|strong=\"H6440\"* the|strong=\"H3605\"* princes|strong=\"H5387\"* and|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*, at|strong=\"H5975\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H6440\"* the|strong=\"H3605\"* Tent of|strong=\"H6440\"* Meeting|strong=\"H4150\"*, saying," + }, + { + "verseNum": 3, + "text": "“Our|strong=\"H3068\"* father|strong=\"H1121\"* died|strong=\"H4191\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*. He|strong=\"H1931\"* was|strong=\"H3068\"* not|strong=\"H3808\"* among|strong=\"H8432\"* the|strong=\"H5921\"* company|strong=\"H5712\"* of|strong=\"H1121\"* those|strong=\"H5921\"* who|strong=\"H1931\"* gathered|strong=\"H3259\"* themselves|strong=\"H5921\"* together|strong=\"H3259\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* company|strong=\"H5712\"* of|strong=\"H1121\"* Korah|strong=\"H7141\"*, but|strong=\"H3588\"* he|strong=\"H1931\"* died|strong=\"H4191\"* in|strong=\"H5921\"* his|strong=\"H3068\"* own|strong=\"H1961\"* sin|strong=\"H2399\"*. He|strong=\"H1931\"* had|strong=\"H3068\"* no|strong=\"H3808\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 4, + "text": "Why|strong=\"H4100\"* should|strong=\"H4100\"* the|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H1121\"* our|strong=\"H5414\"* father|strong=\"H1121\"* be|strong=\"H1121\"* taken|strong=\"H1639\"* away|strong=\"H1639\"* from|strong=\"H1121\"* among|strong=\"H8432\"* his|strong=\"H5414\"* family|strong=\"H4940\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3588\"* no|strong=\"H5414\"* son|strong=\"H1121\"*? Give|strong=\"H5414\"* to|strong=\"H5414\"* us|strong=\"H5414\"* a|strong=\"H3068\"* possession among|strong=\"H8432\"* the|strong=\"H3588\"* brothers|strong=\"H1121\"* of|strong=\"H1121\"* our|strong=\"H5414\"* father|strong=\"H1121\"*.”" + }, + { + "verseNum": 5, + "text": "Moses|strong=\"H4872\"* brought|strong=\"H7126\"* their|strong=\"H3068\"* cause before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"*, saying," + }, + { + "verseNum": 7, + "text": "“The|strong=\"H5414\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Zelophehad|strong=\"H6765\"* speak|strong=\"H1696\"* right|strong=\"H3651\"*. You|strong=\"H5414\"* shall|strong=\"H1323\"* surely|strong=\"H5414\"* give|strong=\"H5414\"* them|strong=\"H5414\"* a|strong=\"H3068\"* possession|strong=\"H5159\"* of|strong=\"H1323\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"* among|strong=\"H8432\"* their|strong=\"H5414\"* father’s brothers. You|strong=\"H5414\"* shall|strong=\"H1323\"* cause|strong=\"H5414\"* the|strong=\"H5414\"* inheritance|strong=\"H5159\"* of|strong=\"H1323\"* their|strong=\"H5414\"* father to|strong=\"H1696\"* pass|strong=\"H5674\"* to|strong=\"H1696\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H3588\"* shall|strong=\"H1121\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1121\"* dies|strong=\"H4191\"*, and|strong=\"H1121\"* has|strong=\"H3478\"* no|strong=\"H1696\"* son|strong=\"H1121\"*, then|strong=\"H1696\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* cause his|strong=\"H3478\"* inheritance|strong=\"H5159\"* to|strong=\"H1696\"* pass|strong=\"H5674\"* to|strong=\"H1696\"* his|strong=\"H3478\"* daughter|strong=\"H1323\"*." + }, + { + "verseNum": 9, + "text": "If he|strong=\"H5414\"* has|strong=\"H5159\"* no|strong=\"H5414\"* daughter|strong=\"H1323\"*, then|strong=\"H5414\"* you|strong=\"H5414\"* shall|strong=\"H1323\"* give|strong=\"H5414\"* his|strong=\"H5414\"* inheritance|strong=\"H5159\"* to|strong=\"H5414\"* his|strong=\"H5414\"* brothers." + }, + { + "verseNum": 10, + "text": "If he|strong=\"H5414\"* has|strong=\"H5159\"* no|strong=\"H5414\"* brothers, then|strong=\"H5414\"* you|strong=\"H5414\"* shall|strong=\"H5159\"* give|strong=\"H5414\"* his|strong=\"H5414\"* inheritance|strong=\"H5159\"* to|strong=\"H5414\"* his|strong=\"H5414\"* father’s brothers." + }, + { + "verseNum": 11, + "text": "If|strong=\"H1961\"* his|strong=\"H5414\"* father|strong=\"H1121\"* has|strong=\"H3068\"* no|strong=\"H5414\"* brothers|strong=\"H1121\"*, then|strong=\"H1961\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* give|strong=\"H5414\"* his|strong=\"H5414\"* inheritance|strong=\"H5159\"* to|strong=\"H3478\"* his|strong=\"H5414\"* kinsman|strong=\"H7607\"* who|strong=\"H3068\"* is|strong=\"H3068\"* next|strong=\"H7138\"* to|strong=\"H3478\"* him|strong=\"H5414\"* of|strong=\"H1121\"* his|strong=\"H5414\"* family|strong=\"H4940\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H5414\"*. This|strong=\"H5414\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* and|strong=\"H1121\"* ordinance|strong=\"H4941\"* for|strong=\"H2708\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*.’”" + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* Moses|strong=\"H4872\"*, “Go|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* this|strong=\"H2088\"* mountain|strong=\"H2022\"* of|strong=\"H1121\"* Abarim|strong=\"H5682\"*, and|strong=\"H1121\"* see|strong=\"H7200\"* the|strong=\"H7200\"* land which|strong=\"H3068\"* I|strong=\"H5414\"* have|strong=\"H3068\"* given|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H7200\"* you|strong=\"H7200\"* have|strong=\"H5971\"* seen|strong=\"H7200\"* it|strong=\"H7200\"*, you|strong=\"H7200\"* also|strong=\"H1571\"* shall|strong=\"H5971\"* be|strong=\"H1571\"* gathered to|strong=\"H7200\"* your|strong=\"H7200\"* people|strong=\"H5971\"*, as|strong=\"H1571\"* Aaron your|strong=\"H7200\"* brother was|strong=\"H1571\"* gathered;" + }, + { + "verseNum": 14, + "text": "because in|strong=\"H6310\"* the|strong=\"H6942\"* strife|strong=\"H4808\"* of|strong=\"H5869\"* the|strong=\"H6942\"* congregation|strong=\"H5712\"*, you|strong=\"H5869\"* rebelled|strong=\"H4784\"* against|strong=\"H4784\"* my|strong=\"H6942\"* word|strong=\"H6310\"* in|strong=\"H6310\"* the|strong=\"H6942\"* wilderness|strong=\"H4057\"* of|strong=\"H5869\"* Zin|strong=\"H6790\"*, to|strong=\"H4325\"* honor me|strong=\"H5869\"* as|strong=\"H5869\"* holy|strong=\"H6942\"* at|strong=\"H5869\"* the|strong=\"H6942\"* waters|strong=\"H4325\"* before|strong=\"H5869\"* their|strong=\"H1992\"* eyes|strong=\"H5869\"*.” (These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H6942\"* waters|strong=\"H4325\"* of|strong=\"H5869\"* Meribah|strong=\"H4809\"* of|strong=\"H5869\"* Kadesh|strong=\"H6946\"* in|strong=\"H6310\"* the|strong=\"H6942\"* wilderness|strong=\"H4057\"* of|strong=\"H5869\"* Zin|strong=\"H6790\"*.)" + }, + { + "verseNum": 15, + "text": "Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 16, + "text": "“Let|strong=\"H6485\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H3605\"* spirits|strong=\"H7307\"* of|strong=\"H3068\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*, appoint|strong=\"H6485\"* a|strong=\"H3068\"* man|strong=\"H3605\"* over|strong=\"H5921\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*," + }, + { + "verseNum": 17, + "text": "who|strong=\"H3068\"* may|strong=\"H1961\"* go|strong=\"H3318\"* out|strong=\"H3318\"* before|strong=\"H6440\"* them|strong=\"H6440\"*, and|strong=\"H3068\"* who|strong=\"H3068\"* may|strong=\"H1961\"* come|strong=\"H1961\"* in|strong=\"H3068\"* before|strong=\"H6440\"* them|strong=\"H6440\"*, and|strong=\"H3068\"* who|strong=\"H3068\"* may|strong=\"H1961\"* lead|strong=\"H3318\"* them|strong=\"H6440\"* out|strong=\"H3318\"*, and|strong=\"H3068\"* who|strong=\"H3068\"* may|strong=\"H1961\"* bring|strong=\"H3318\"* them|strong=\"H6440\"* in|strong=\"H3068\"*, that|strong=\"H3068\"* the|strong=\"H6440\"* congregation|strong=\"H5712\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* may|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* as|strong=\"H1961\"* sheep|strong=\"H6629\"* which|strong=\"H3068\"* have|strong=\"H1961\"* no|strong=\"H3808\"* shepherd|strong=\"H7462\"*.”" + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Take|strong=\"H3947\"* Joshua|strong=\"H3091\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, a|strong=\"H3068\"* man|strong=\"H1121\"* in|strong=\"H5921\"* whom is|strong=\"H3068\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"*, and|strong=\"H1121\"* lay|strong=\"H5564\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "Set|strong=\"H5975\"* him|strong=\"H6440\"* before|strong=\"H6440\"* Eleazar the|strong=\"H3605\"* priest|strong=\"H3548\"*, and|strong=\"H3548\"* before|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*; and|strong=\"H3548\"* commission|strong=\"H6680\"* him|strong=\"H6440\"* in|strong=\"H6440\"* their|strong=\"H3605\"* sight|strong=\"H5869\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H5414\"* shall|strong=\"H1121\"* give|strong=\"H5414\"* authority|strong=\"H1935\"* to|strong=\"H3478\"* him|strong=\"H5414\"*, that|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* may|strong=\"H3478\"* obey|strong=\"H8085\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H1931\"* shall|strong=\"H3548\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* Eleazar the|strong=\"H3605\"* priest|strong=\"H3548\"*, who|strong=\"H3605\"* shall|strong=\"H3548\"* inquire|strong=\"H7592\"* for|strong=\"H5921\"* him|strong=\"H6440\"* by|strong=\"H5921\"* the|strong=\"H3605\"* judgment|strong=\"H4941\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Urim before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. At|strong=\"H5921\"* his|strong=\"H3605\"* word|strong=\"H6310\"* they|strong=\"H3068\"* shall|strong=\"H3548\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* at|strong=\"H5921\"* his|strong=\"H3605\"* word|strong=\"H6310\"* they|strong=\"H3068\"* shall|strong=\"H3548\"* come|strong=\"H3318\"* in|strong=\"H5921\"*, both|strong=\"H3605\"* he|strong=\"H1931\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* with|strong=\"H3068\"* him|strong=\"H6440\"*, even|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*.”" + }, + { + "verseNum": 22, + "text": "Moses|strong=\"H4872\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H6440\"*. He|strong=\"H6213\"* took|strong=\"H3947\"* Joshua|strong=\"H3091\"*, and|strong=\"H4872\"* set|strong=\"H5975\"* him|strong=\"H6440\"* before|strong=\"H6440\"* Eleazar the|strong=\"H3605\"* priest|strong=\"H3548\"* and|strong=\"H4872\"* before|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H3068\"* laid|strong=\"H5564\"* his|strong=\"H3068\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* him|strong=\"H5921\"* and|strong=\"H4872\"* commissioned|strong=\"H6680\"* him|strong=\"H5921\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Command|strong=\"H6680\"* the|strong=\"H8104\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell them|strong=\"H6680\"*, ‘See that|strong=\"H3478\"* you|strong=\"H6680\"* present|strong=\"H7126\"* my|strong=\"H8104\"* offering|strong=\"H7133\"*, my|strong=\"H8104\"* food|strong=\"H3899\"* for|strong=\"H1121\"* my|strong=\"H8104\"* offerings|strong=\"H7133\"* made|strong=\"H3478\"* by|strong=\"H3478\"* fire, as|strong=\"H1121\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3478\"* me|strong=\"H8104\"*, in|strong=\"H3478\"* their|strong=\"H7126\"* due season|strong=\"H4150\"*.’" + }, + { + "verseNum": 3, + "text": "You|strong=\"H3117\"* shall|strong=\"H3068\"* tell them|strong=\"H7126\"*, ‘This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3068\"* offering|strong=\"H5930\"* made|strong=\"H8141\"* by|strong=\"H8141\"* fire which|strong=\"H3068\"* you|strong=\"H3117\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*: male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*, two|strong=\"H8147\"* day|strong=\"H3117\"* by|strong=\"H8141\"* day|strong=\"H3117\"*, for|strong=\"H3068\"* a|strong=\"H3068\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* offer|strong=\"H6213\"* the|strong=\"H6213\"* one|strong=\"H3532\"* lamb|strong=\"H3532\"* in|strong=\"H6213\"* the|strong=\"H6213\"* morning|strong=\"H1242\"*, and|strong=\"H1242\"* you|strong=\"H6213\"* shall|strong=\"H6213\"* offer|strong=\"H6213\"* the|strong=\"H6213\"* other|strong=\"H8145\"* lamb|strong=\"H3532\"* at|strong=\"H6213\"* evening|strong=\"H6153\"*," + }, + { + "verseNum": 5, + "text": "with|strong=\"H1101\"* one tenth|strong=\"H6224\"* of|strong=\"H1969\"* an|strong=\"H4503\"* ephah+ 28:5 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H1969\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* for|strong=\"H8081\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, mixed|strong=\"H1101\"* with|strong=\"H1101\"* the|strong=\"H7243\"* fourth|strong=\"H7243\"* part|strong=\"H7243\"* of|strong=\"H1969\"* a|strong=\"H3068\"* hin|strong=\"H1969\"*+ 28:5 A hin is about 6.5 liters or 1.7 gallons.* of|strong=\"H1969\"* beaten|strong=\"H3795\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 6, + "text": "It|strong=\"H6213\"* is|strong=\"H3068\"* a|strong=\"H3068\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* which|strong=\"H3068\"* was|strong=\"H3068\"* ordained|strong=\"H6213\"* in|strong=\"H3068\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"* for|strong=\"H6213\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*, an|strong=\"H6213\"* offering|strong=\"H5930\"* made|strong=\"H6213\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "Its drink|strong=\"H5262\"* offering|strong=\"H5262\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* the|strong=\"H3068\"* fourth|strong=\"H7243\"* part|strong=\"H7243\"* of|strong=\"H3068\"* a|strong=\"H3068\"* hin|strong=\"H1969\"*+ 28:7 One hin is about 6.5 liters, so 1/4 hin is about 1.6 liters or 1.7 quarts.* for|strong=\"H3068\"* each|strong=\"H3532\"* lamb|strong=\"H3532\"*. You shall|strong=\"H3068\"* pour|strong=\"H5258\"* out|strong=\"H5258\"* a|strong=\"H3068\"* drink|strong=\"H5262\"* offering|strong=\"H5262\"* of|strong=\"H3068\"* strong|strong=\"H7941\"* drink|strong=\"H5262\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H6213\"* other|strong=\"H8145\"* lamb|strong=\"H3532\"* you|strong=\"H6213\"* shall|strong=\"H3068\"* offer|strong=\"H6213\"* at|strong=\"H3068\"* evening|strong=\"H6153\"*. As|strong=\"H6213\"* the|strong=\"H6213\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* the|strong=\"H6213\"* morning|strong=\"H1242\"*, and|strong=\"H3068\"* as|strong=\"H6213\"* its|strong=\"H6213\"* drink|strong=\"H5262\"* offering|strong=\"H4503\"*, you|strong=\"H6213\"* shall|strong=\"H3068\"* offer|strong=\"H6213\"* it|strong=\"H6213\"*, an|strong=\"H6213\"* offering|strong=\"H4503\"* made|strong=\"H6213\"* by|strong=\"H3068\"* fire, for|strong=\"H6213\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "“‘On|strong=\"H3117\"* the|strong=\"H3117\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*, you|strong=\"H3117\"* shall|strong=\"H1121\"* offer two|strong=\"H8147\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*, and|strong=\"H1121\"* two|strong=\"H8147\"* tenths of|strong=\"H1121\"* an|strong=\"H8141\"* ephah+ 28:9 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H1121\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* for|strong=\"H3117\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, and|strong=\"H1121\"* its drink|strong=\"H5262\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 10, + "text": "this is|strong=\"H5930\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* of|strong=\"H5921\"* every|strong=\"H8548\"* Sabbath|strong=\"H7676\"*, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H5930\"* its|strong=\"H5921\"* drink|strong=\"H5262\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 11, + "text": "“‘In|strong=\"H8141\"* the|strong=\"H3068\"* beginnings|strong=\"H7218\"* of|strong=\"H1121\"* your|strong=\"H3068\"* months|strong=\"H2320\"*, you|strong=\"H7126\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*: two|strong=\"H8147\"* young|strong=\"H1121\"* bulls|strong=\"H6499\"*, one|strong=\"H3532\"* ram, seven|strong=\"H7651\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*," + }, + { + "verseNum": 12, + "text": "and|strong=\"H6499\"* three|strong=\"H7969\"* tenths of|strong=\"H8147\"* an|strong=\"H4503\"* ephah+ 28:12 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H8147\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* for|strong=\"H6241\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, for|strong=\"H6241\"* each|strong=\"H8147\"* bull|strong=\"H6499\"*; and|strong=\"H6499\"* two|strong=\"H8147\"* tenth|strong=\"H8147\"* parts of|strong=\"H8147\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* for|strong=\"H6241\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, for|strong=\"H6241\"* the|strong=\"H8147\"* one|strong=\"H8147\"* ram;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H3068\"* one|strong=\"H3532\"* tenth|strong=\"H6241\"* part of|strong=\"H3068\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"* for|strong=\"H3068\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* to|strong=\"H3068\"* every|strong=\"H3068\"* lamb|strong=\"H3532\"*, as|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*, an|strong=\"H3068\"* offering|strong=\"H4503\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "Their|strong=\"H1961\"* drink|strong=\"H5262\"* offerings|strong=\"H5930\"* shall|strong=\"H8141\"* be|strong=\"H1961\"* half|strong=\"H2677\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* of|strong=\"H8141\"* wine|strong=\"H3196\"* for|strong=\"H1961\"* a|strong=\"H3068\"* bull|strong=\"H6499\"*, the|strong=\"H1961\"* third|strong=\"H7992\"* part|strong=\"H7992\"* of|strong=\"H8141\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* for|strong=\"H1961\"* the|strong=\"H1961\"* ram, and|strong=\"H6499\"* the|strong=\"H1961\"* fourth|strong=\"H7243\"* part|strong=\"H7992\"* of|strong=\"H8141\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* for|strong=\"H1961\"* a|strong=\"H3068\"* lamb|strong=\"H3532\"*. This|strong=\"H2063\"* is|strong=\"H1961\"* the|strong=\"H1961\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* of|strong=\"H8141\"* every|strong=\"H8141\"* month|strong=\"H2320\"* throughout|strong=\"H2320\"* the|strong=\"H1961\"* months|strong=\"H2320\"* of|strong=\"H8141\"* the|strong=\"H1961\"* year|strong=\"H8141\"*." + }, + { + "verseNum": 15, + "text": "Also|strong=\"H3068\"*, one|strong=\"H6213\"* male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* offered|strong=\"H6213\"* in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H5921\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H3068\"* its|strong=\"H5921\"* drink|strong=\"H5262\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 16, + "text": "“‘In|strong=\"H3068\"* the|strong=\"H3068\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, on|strong=\"H3117\"* the|strong=\"H3068\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s Passover|strong=\"H6453\"*." + }, + { + "verseNum": 17, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* of|strong=\"H3117\"* this|strong=\"H2088\"* month|strong=\"H2320\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* a|strong=\"H3068\"* feast|strong=\"H2282\"*. Unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* eaten for|strong=\"H3117\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 18, + "text": "In|strong=\"H6213\"* the|strong=\"H3605\"* first|strong=\"H7223\"* day|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H3808\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*. You|strong=\"H3605\"* shall|strong=\"H3117\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*," + }, + { + "verseNum": 19, + "text": "but|strong=\"H1961\"* you|strong=\"H7126\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* an|strong=\"H7126\"* offering|strong=\"H5930\"* made|strong=\"H1961\"* by|strong=\"H8141\"* fire, a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*: two|strong=\"H8147\"* young|strong=\"H1121\"* bulls|strong=\"H6499\"*, one|strong=\"H3532\"* ram, and|strong=\"H1121\"* seven|strong=\"H7651\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. They|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*," + }, + { + "verseNum": 20, + "text": "with|strong=\"H1101\"* their|strong=\"H6213\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* offer|strong=\"H6213\"* three|strong=\"H7969\"* tenths for|strong=\"H6213\"* a|strong=\"H3068\"* bull|strong=\"H6499\"*, and|strong=\"H6499\"* two|strong=\"H8147\"* tenths for|strong=\"H6213\"* the|strong=\"H6213\"* ram." + }, + { + "verseNum": 21, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* offer|strong=\"H6213\"* one|strong=\"H3532\"* tenth|strong=\"H6241\"* for|strong=\"H6213\"* every|strong=\"H6213\"* lamb|strong=\"H3532\"* of|strong=\"H6213\"* the|strong=\"H6213\"* seven|strong=\"H7651\"* lambs|strong=\"H3532\"*;" + }, + { + "verseNum": 22, + "text": "and|strong=\"H2403\"* one male|strong=\"H8163\"* goat|strong=\"H8163\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, to|strong=\"H5921\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 23, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* offer|strong=\"H6213\"* these|strong=\"H6213\"* in|strong=\"H6213\"* addition to|strong=\"H6213\"* the|strong=\"H6213\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* of|strong=\"H6213\"* the|strong=\"H6213\"* morning|strong=\"H1242\"*, which is|strong=\"H6213\"* for|strong=\"H6213\"* a|strong=\"H3068\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 24, + "text": "In|strong=\"H5921\"* this|strong=\"H6213\"* way|strong=\"H5921\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* offer|strong=\"H6213\"* daily|strong=\"H3117\"*, for|strong=\"H5921\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, the|strong=\"H5921\"* food|strong=\"H3899\"* of|strong=\"H3068\"* the|strong=\"H5921\"* offering|strong=\"H5930\"* made|strong=\"H6213\"* by|strong=\"H5921\"* fire, of|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. It|strong=\"H5921\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* offered|strong=\"H6213\"* in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H5921\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H3068\"* its|strong=\"H5921\"* drink|strong=\"H5262\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 25, + "text": "On|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* you|strong=\"H3605\"* shall|strong=\"H3117\"* have|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*. You|strong=\"H3605\"* shall|strong=\"H3117\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 26, + "text": "“‘Also|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3605\"* first|strong=\"H1061\"* fruits|strong=\"H1061\"*, when|strong=\"H1961\"* you|strong=\"H3605\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* new|strong=\"H2319\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* feast of|strong=\"H3068\"* weeks|strong=\"H7620\"*, you|strong=\"H3605\"* shall|strong=\"H3068\"* have|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*. You|strong=\"H3605\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*;" + }, + { + "verseNum": 27, + "text": "but|strong=\"H3068\"* you|strong=\"H7126\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* for|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*: two|strong=\"H8147\"* young|strong=\"H1121\"* bulls|strong=\"H6499\"*, one|strong=\"H3532\"* ram, seven|strong=\"H7651\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*;" + }, + { + "verseNum": 28, + "text": "and|strong=\"H6499\"* their|strong=\"H8147\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, three|strong=\"H7969\"* tenths for|strong=\"H6241\"* each|strong=\"H8147\"* bull|strong=\"H6499\"*, two|strong=\"H8147\"* tenths for|strong=\"H6241\"* the|strong=\"H8147\"* one|strong=\"H8147\"* ram," + }, + { + "verseNum": 29, + "text": "one|strong=\"H3532\"* tenth|strong=\"H6241\"* for|strong=\"H6241\"* every lamb|strong=\"H3532\"* of|strong=\"H6241\"* the seven|strong=\"H7651\"* lambs|strong=\"H3532\"*;" + }, + { + "verseNum": 30, + "text": "and|strong=\"H5795\"* one male|strong=\"H8163\"* goat|strong=\"H5795\"*, to|strong=\"H5921\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 31, + "text": "Besides the|strong=\"H6213\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* and|strong=\"H5930\"* its|strong=\"H6213\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, you|strong=\"H6213\"* shall|strong=\"H8549\"* offer|strong=\"H6213\"* them|strong=\"H6213\"* and|strong=\"H5930\"* their|strong=\"H1961\"* drink|strong=\"H5262\"* offerings|strong=\"H5930\"*. See that|strong=\"H6213\"* they|strong=\"H6213\"* are|strong=\"H5262\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*." + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "“‘In|strong=\"H6213\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*, on|strong=\"H3117\"* the|strong=\"H3605\"* first|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* month|strong=\"H2320\"*, you|strong=\"H3605\"* shall|strong=\"H3117\"* have|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*; you|strong=\"H3605\"* shall|strong=\"H3117\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*. It|strong=\"H6213\"* is|strong=\"H3117\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* blowing|strong=\"H8643\"* of|strong=\"H3117\"* trumpets|strong=\"H8643\"* to|strong=\"H1961\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 2, + "text": "You|strong=\"H6213\"* shall|strong=\"H3068\"* offer|strong=\"H6213\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* for|strong=\"H6213\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*: one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*, one|strong=\"H3532\"* ram, seven|strong=\"H7651\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H6499\"* their|strong=\"H8147\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*: three|strong=\"H7969\"* tenths for|strong=\"H6241\"* the|strong=\"H8147\"* bull|strong=\"H6499\"*, two|strong=\"H8147\"* tenths for|strong=\"H6241\"* the|strong=\"H8147\"* ram," + }, + { + "verseNum": 4, + "text": "and|strong=\"H7651\"* one|strong=\"H3532\"* tenth|strong=\"H6241\"* for|strong=\"H6241\"* every lamb|strong=\"H3532\"* of|strong=\"H6241\"* the seven|strong=\"H7651\"* lambs|strong=\"H3532\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"H2403\"* one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, to|strong=\"H5921\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* you|strong=\"H5921\"*;" + }, + { + "verseNum": 6, + "text": "in|strong=\"H3068\"* addition to|strong=\"H3068\"* the|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* the|strong=\"H3068\"* new|strong=\"H2320\"* moon|strong=\"H2320\"* with|strong=\"H3068\"* its meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* with|strong=\"H3068\"* its meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H3068\"* their|strong=\"H3068\"* drink|strong=\"H5262\"* offerings|strong=\"H5930\"*, according|strong=\"H4941\"* to|strong=\"H3068\"* their|strong=\"H3068\"* ordinance|strong=\"H4941\"*, for|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*, an|strong=\"H3068\"* offering|strong=\"H4503\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "“‘On|strong=\"H1961\"* the|strong=\"H3605\"* tenth|strong=\"H6218\"* day|strong=\"H2320\"* of|strong=\"H3605\"* this|strong=\"H2088\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"* you|strong=\"H3605\"* shall|strong=\"H5315\"* have|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*. You|strong=\"H3605\"* shall|strong=\"H5315\"* afflict|strong=\"H6031\"* your|strong=\"H3605\"* souls|strong=\"H5315\"*. You|strong=\"H3605\"* shall|strong=\"H5315\"* do|strong=\"H6213\"* no|strong=\"H3808\"* kind of|strong=\"H3605\"* work|strong=\"H4399\"*;" + }, + { + "verseNum": 8, + "text": "but|strong=\"H1961\"* you|strong=\"H7126\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* for|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*: one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*, one|strong=\"H3532\"* ram, seven|strong=\"H7651\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*, all|strong=\"H3068\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 9, + "text": "and|strong=\"H6499\"* their|strong=\"H8147\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*: three|strong=\"H7969\"* tenths for|strong=\"H6241\"* the|strong=\"H8147\"* bull|strong=\"H6499\"*, two|strong=\"H8147\"* tenths for|strong=\"H6241\"* the|strong=\"H8147\"* one|strong=\"H8147\"* ram," + }, + { + "verseNum": 10, + "text": "one|strong=\"H3532\"* tenth|strong=\"H6241\"* for|strong=\"H6241\"* every lamb|strong=\"H3532\"* of|strong=\"H6241\"* the seven|strong=\"H7651\"* lambs|strong=\"H3532\"*;" + }, + { + "verseNum": 11, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, in|strong=\"H4503\"* addition to|strong=\"H4503\"* the sin|strong=\"H2403\"* offering|strong=\"H4503\"* of|strong=\"H2403\"* atonement|strong=\"H3725\"*, and|strong=\"H5930\"* the continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* its meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* their drink|strong=\"H5262\"* offerings|strong=\"H5930\"*." + }, + { + "verseNum": 12, + "text": "“‘On|strong=\"H3117\"* the|strong=\"H3605\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* have|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*. You|strong=\"H3605\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*. You|strong=\"H3605\"* shall|strong=\"H3068\"* keep|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H2282\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H7126\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, an|strong=\"H7126\"* offering|strong=\"H5930\"* made|strong=\"H1961\"* by|strong=\"H8141\"* fire, of|strong=\"H1121\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*: thirteen|strong=\"H7969\"* young|strong=\"H1121\"* bulls|strong=\"H6499\"*, two|strong=\"H8147\"* rams, fourteen|strong=\"H6240\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*, all|strong=\"H3068\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 14, + "text": "and|strong=\"H6499\"* their|strong=\"H8147\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*: three|strong=\"H7969\"* tenths for|strong=\"H6241\"* every bull|strong=\"H6499\"* of|strong=\"H8147\"* the|strong=\"H8147\"* thirteen|strong=\"H7969\"* bulls|strong=\"H6499\"*, two|strong=\"H8147\"* tenths for|strong=\"H6241\"* each|strong=\"H8147\"* ram of|strong=\"H8147\"* the|strong=\"H8147\"* two|strong=\"H8147\"* rams," + }, + { + "verseNum": 15, + "text": "and|strong=\"H3532\"* one|strong=\"H3532\"* tenth|strong=\"H6241\"* for|strong=\"H6241\"* every lamb|strong=\"H3532\"* of|strong=\"H6241\"* the|strong=\"H6240\"* fourteen|strong=\"H6240\"* lambs|strong=\"H3532\"*;" + }, + { + "verseNum": 16, + "text": "and|strong=\"H5930\"* one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, in|strong=\"H4503\"* addition to|strong=\"H4503\"* the continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, its meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* its drink|strong=\"H5262\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 17, + "text": "“‘On|strong=\"H3117\"* the|strong=\"H3117\"* second|strong=\"H8145\"* day|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H1121\"* offer twelve|strong=\"H8147\"* young|strong=\"H1121\"* bulls|strong=\"H6499\"*, two|strong=\"H8147\"* rams, and|strong=\"H1121\"* fourteen|strong=\"H6240\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H4941\"* their meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H4941\"* their drink|strong=\"H5262\"* offerings|strong=\"H4503\"* for|strong=\"H4941\"* the|strong=\"H4941\"* bulls|strong=\"H6499\"*, for|strong=\"H4941\"* the|strong=\"H4941\"* rams, and|strong=\"H4941\"* for|strong=\"H4941\"* the|strong=\"H4941\"* lambs|strong=\"H3532\"*, according|strong=\"H4941\"* to|strong=\"H4941\"* their number|strong=\"H4557\"*, after the|strong=\"H4941\"* ordinance|strong=\"H4941\"*;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H5930\"* one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, in|strong=\"H4503\"* addition to|strong=\"H4503\"* the continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, with|strong=\"H5930\"* its meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H5930\"* their drink|strong=\"H5262\"* offerings|strong=\"H5930\"*." + }, + { + "verseNum": 20, + "text": "“‘On|strong=\"H3117\"* the|strong=\"H3117\"* third|strong=\"H7992\"* day|strong=\"H3117\"*: eleven|strong=\"H6249\"* bulls|strong=\"H6499\"*, two|strong=\"H8147\"* rams, fourteen|strong=\"H6240\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 21, + "text": "and|strong=\"H4941\"* their meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H4941\"* their drink|strong=\"H5262\"* offerings|strong=\"H4503\"* for|strong=\"H4941\"* the|strong=\"H4941\"* bulls|strong=\"H6499\"*, for|strong=\"H4941\"* the|strong=\"H4941\"* rams, and|strong=\"H4941\"* for|strong=\"H4941\"* the|strong=\"H4941\"* lambs|strong=\"H3532\"*, according|strong=\"H4941\"* to|strong=\"H4941\"* their number|strong=\"H4557\"*, after the|strong=\"H4941\"* ordinance|strong=\"H4941\"*;" + }, + { + "verseNum": 22, + "text": "and|strong=\"H5930\"* one male|strong=\"H8163\"* goat|strong=\"H8163\"* for|strong=\"H4503\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, in|strong=\"H4503\"* addition to|strong=\"H4503\"* the continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* its meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* its drink|strong=\"H5262\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 23, + "text": "“‘On|strong=\"H3117\"* the|strong=\"H3117\"* fourth|strong=\"H7243\"* day|strong=\"H3117\"* ten|strong=\"H6235\"* bulls|strong=\"H6499\"*, two|strong=\"H8147\"* rams, fourteen|strong=\"H6240\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 24, + "text": "their meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H4941\"* their drink|strong=\"H5262\"* offerings|strong=\"H4503\"* for|strong=\"H4941\"* the|strong=\"H4941\"* bulls|strong=\"H6499\"*, for|strong=\"H4941\"* the|strong=\"H4941\"* rams, and|strong=\"H4941\"* for|strong=\"H4941\"* the|strong=\"H4941\"* lambs|strong=\"H3532\"*, according|strong=\"H4941\"* to|strong=\"H4941\"* their number|strong=\"H4557\"*, after the|strong=\"H4941\"* ordinance|strong=\"H4941\"*;" + }, + { + "verseNum": 25, + "text": "and|strong=\"H5930\"* one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*; in|strong=\"H4503\"* addition to|strong=\"H4503\"* the continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, its meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* its drink|strong=\"H5262\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 26, + "text": "“‘On|strong=\"H3117\"* the|strong=\"H3117\"* fifth|strong=\"H2549\"* day|strong=\"H3117\"*: nine|strong=\"H8672\"* bulls|strong=\"H6499\"*, two|strong=\"H8147\"* rams, fourteen|strong=\"H6240\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 27, + "text": "and|strong=\"H4941\"* their meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H4941\"* their drink|strong=\"H5262\"* offerings|strong=\"H4503\"* for|strong=\"H4941\"* the|strong=\"H4941\"* bulls|strong=\"H6499\"*, for|strong=\"H4941\"* the|strong=\"H4941\"* rams, and|strong=\"H4941\"* for|strong=\"H4941\"* the|strong=\"H4941\"* lambs|strong=\"H3532\"*, according|strong=\"H4941\"* to|strong=\"H4941\"* their number|strong=\"H4557\"*, after the|strong=\"H4941\"* ordinance|strong=\"H4941\"*," + }, + { + "verseNum": 28, + "text": "and|strong=\"H5930\"* one male|strong=\"H8163\"* goat|strong=\"H8163\"* for|strong=\"H4503\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, in|strong=\"H4503\"* addition to|strong=\"H4503\"* the continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* its meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* its drink|strong=\"H5262\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 29, + "text": "“‘On|strong=\"H3117\"* the|strong=\"H3117\"* sixth|strong=\"H8345\"* day|strong=\"H3117\"*: eight|strong=\"H8083\"* bulls|strong=\"H6499\"*, two|strong=\"H8147\"* rams, fourteen|strong=\"H6240\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 30, + "text": "and|strong=\"H4941\"* their meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H4941\"* their drink|strong=\"H5262\"* offerings|strong=\"H4503\"* for|strong=\"H4941\"* the|strong=\"H4941\"* bulls|strong=\"H6499\"*, for|strong=\"H4941\"* the|strong=\"H4941\"* rams, and|strong=\"H4941\"* for|strong=\"H4941\"* the|strong=\"H4941\"* lambs|strong=\"H3532\"*, according|strong=\"H4941\"* to|strong=\"H4941\"* their number|strong=\"H4557\"*, after the|strong=\"H4941\"* ordinance|strong=\"H4941\"*," + }, + { + "verseNum": 31, + "text": "and|strong=\"H5930\"* one male|strong=\"H8163\"* goat|strong=\"H8163\"* for|strong=\"H4503\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*; in|strong=\"H4503\"* addition to|strong=\"H4503\"* the continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, its meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* the drink|strong=\"H5262\"* offerings|strong=\"H5930\"* of|strong=\"H2403\"* it." + }, + { + "verseNum": 32, + "text": "“‘On|strong=\"H3117\"* the|strong=\"H3117\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*: seven|strong=\"H7651\"* bulls|strong=\"H6499\"*, two|strong=\"H8147\"* rams, fourteen|strong=\"H6240\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 33, + "text": "and|strong=\"H4941\"* their meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H4941\"* their drink|strong=\"H5262\"* offerings|strong=\"H4503\"* for|strong=\"H4941\"* the|strong=\"H4941\"* bulls|strong=\"H6499\"*, for|strong=\"H4941\"* the|strong=\"H4941\"* rams, and|strong=\"H4941\"* for|strong=\"H4941\"* the|strong=\"H4941\"* lambs|strong=\"H3532\"*, according|strong=\"H4941\"* to|strong=\"H4941\"* their number|strong=\"H4557\"*, after the|strong=\"H4941\"* ordinance|strong=\"H4941\"*," + }, + { + "verseNum": 34, + "text": "and|strong=\"H5930\"* one male|strong=\"H8163\"* goat|strong=\"H8163\"* for|strong=\"H4503\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*; in|strong=\"H4503\"* addition to|strong=\"H4503\"* the continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, its meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* its drink|strong=\"H5262\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 35, + "text": "“‘On|strong=\"H3117\"* the|strong=\"H3605\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* you|strong=\"H3605\"* shall|strong=\"H3117\"* have|strong=\"H1961\"* a|strong=\"H3068\"* solemn|strong=\"H6116\"* assembly|strong=\"H6116\"*. You|strong=\"H3605\"* shall|strong=\"H3117\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*;" + }, + { + "verseNum": 36, + "text": "but|strong=\"H3068\"* you|strong=\"H7126\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, an|strong=\"H7126\"* offering|strong=\"H5930\"* made|strong=\"H8141\"* by|strong=\"H8141\"* fire, a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*: one|strong=\"H3532\"* bull|strong=\"H6499\"*, one|strong=\"H3532\"* ram, seven|strong=\"H7651\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 37, + "text": "their meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H4941\"* their drink|strong=\"H5262\"* offerings|strong=\"H4503\"* for|strong=\"H4941\"* the|strong=\"H4941\"* bull|strong=\"H6499\"*, for|strong=\"H4941\"* the|strong=\"H4941\"* ram, and|strong=\"H4941\"* for|strong=\"H4941\"* the|strong=\"H4941\"* lambs|strong=\"H3532\"*, shall|strong=\"H4941\"* be according|strong=\"H4941\"* to|strong=\"H4941\"* their number|strong=\"H4557\"*, after the|strong=\"H4941\"* ordinance|strong=\"H4941\"*," + }, + { + "verseNum": 38, + "text": "and|strong=\"H5930\"* one male|strong=\"H8163\"* goat|strong=\"H8163\"* for|strong=\"H4503\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, in|strong=\"H4503\"* addition to|strong=\"H4503\"* the continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, with|strong=\"H5930\"* its meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* its drink|strong=\"H5262\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 39, + "text": "“‘You|strong=\"H6213\"* shall|strong=\"H3068\"* offer|strong=\"H6213\"* these|strong=\"H6213\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* set|strong=\"H6213\"* feasts|strong=\"H4150\"*—in|strong=\"H3068\"* addition to|strong=\"H3068\"* your|strong=\"H3068\"* vows|strong=\"H5088\"* and|strong=\"H3068\"* your|strong=\"H3068\"* free will|strong=\"H3068\"* offerings|strong=\"H8002\"*—for|strong=\"H6213\"* your|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"*, your|strong=\"H3068\"* meal|strong=\"H4503\"* offerings|strong=\"H8002\"*, your|strong=\"H3068\"* drink|strong=\"H5262\"* offerings|strong=\"H8002\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*.’”" + }, + { + "verseNum": 40, + "text": "Moses told the children of Israel according to all that Yahweh|strong=\"H3068\"* commanded Moses." + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "Moses|strong=\"H4872\"* spoke to|strong=\"H3478\"* the|strong=\"H3605\"* heads of|strong=\"H1121\"* the|strong=\"H3605\"* tribes of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying, “This|strong=\"H3068\"* is|strong=\"H3068\"* the|strong=\"H3605\"* thing|strong=\"H3605\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H1696\"* a|strong=\"H3068\"* man|strong=\"H1121\"* vows a|strong=\"H3068\"* vow to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*, or|strong=\"H1121\"* swears an|strong=\"H2088\"* oath|strong=\"H1697\"* to|strong=\"H1696\"* bind his|strong=\"H3068\"* soul with|strong=\"H3068\"* a|strong=\"H3068\"* bond, he|strong=\"H3068\"* shall|strong=\"H3068\"* not|strong=\"H2088\"* break|strong=\"H3068\"* his|strong=\"H3068\"* word|strong=\"H1697\"*. He|strong=\"H3068\"* shall|strong=\"H3068\"* do|strong=\"H3068\"* according to|strong=\"H1696\"* all|strong=\"H1697\"* that|strong=\"H3068\"* proceeds out|strong=\"H1696\"* of|strong=\"H1121\"* his|strong=\"H3068\"* mouth." + }, + { + "verseNum": 3, + "text": "“Also|strong=\"H3068\"*, when|strong=\"H3588\"* a|strong=\"H3068\"* woman vows|strong=\"H5088\"* a|strong=\"H3068\"* vow|strong=\"H5088\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* binds herself|strong=\"H5315\"* by|strong=\"H5921\"* a|strong=\"H3068\"* pledge, being|strong=\"H5315\"* in|strong=\"H5921\"* her|strong=\"H3605\"* father’s house, in|strong=\"H5921\"* her|strong=\"H3605\"* youth," + }, + { + "verseNum": 4, + "text": "and|strong=\"H3068\"* her|strong=\"H3588\"* father hears her|strong=\"H3588\"* vow|strong=\"H5088\"* and|strong=\"H3068\"* her|strong=\"H3588\"* pledge with|strong=\"H1004\"* which|strong=\"H3068\"* she|strong=\"H3588\"* has|strong=\"H3068\"* bound her|strong=\"H3588\"* soul, and|strong=\"H3068\"* her|strong=\"H3588\"* father says nothing to|strong=\"H3068\"* her|strong=\"H3588\"*, then|strong=\"H3588\"* all|strong=\"H3068\"* her|strong=\"H3588\"* vows|strong=\"H5088\"* shall|strong=\"H3068\"* stand, and|strong=\"H3068\"* every|strong=\"H3068\"* pledge with|strong=\"H1004\"* which|strong=\"H3068\"* she|strong=\"H3588\"* has|strong=\"H3068\"* bound her|strong=\"H3588\"* soul shall|strong=\"H3068\"* stand." + }, + { + "verseNum": 5, + "text": "But|strong=\"H8085\"* if her|strong=\"H3605\"* father forbids her|strong=\"H3605\"* in|strong=\"H5921\"* the|strong=\"H3605\"* day that|strong=\"H3605\"* he|strong=\"H3605\"* hears|strong=\"H8085\"*, none|strong=\"H3605\"* of|strong=\"H5921\"* her|strong=\"H3605\"* vows|strong=\"H5088\"* or|strong=\"H8085\"* of|strong=\"H5921\"* her|strong=\"H3605\"* pledges with|strong=\"H5921\"* which|strong=\"H8085\"* she|strong=\"H5921\"* has|strong=\"H5315\"* bound her|strong=\"H3605\"* soul|strong=\"H5315\"*, shall|strong=\"H5315\"* stand|strong=\"H6965\"*. Yahweh|strong=\"H3068\"* will|strong=\"H5315\"* forgive her|strong=\"H3605\"*, because|strong=\"H5921\"* her|strong=\"H3605\"* father has|strong=\"H5315\"* forbidden her|strong=\"H3605\"*." + }, + { + "verseNum": 6, + "text": "“If|strong=\"H3588\"* she|strong=\"H3588\"* has|strong=\"H3068\"* a|strong=\"H3068\"* husband, while|strong=\"H3117\"* her|strong=\"H3605\"* vows|strong=\"H5088\"* are|strong=\"H3117\"* on|strong=\"H5921\"* her|strong=\"H3605\"*, or|strong=\"H3808\"* the|strong=\"H3605\"* rash utterance of|strong=\"H3068\"* her|strong=\"H3605\"* lips with|strong=\"H3068\"* which|strong=\"H3068\"* she|strong=\"H3588\"* has|strong=\"H3068\"* bound her|strong=\"H3605\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"H5315\"* her|strong=\"H5921\"* husband hears it|strong=\"H5921\"*, and|strong=\"H5315\"* says nothing to|strong=\"H1961\"* her|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day that|strong=\"H5315\"* he|strong=\"H5921\"* hears it|strong=\"H5921\"*; then|strong=\"H1961\"* her|strong=\"H5921\"* vows|strong=\"H5088\"* shall|strong=\"H5315\"* stand, and|strong=\"H5315\"* her|strong=\"H5921\"* pledges with|strong=\"H5921\"* which|strong=\"H5315\"* she|strong=\"H8193\"* has|strong=\"H1961\"* bound her|strong=\"H5921\"* soul|strong=\"H5315\"* shall|strong=\"H5315\"* stand." + }, + { + "verseNum": 8, + "text": "But|strong=\"H8085\"* if her|strong=\"H5921\"* husband forbids her|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* that|strong=\"H3117\"* he|strong=\"H3117\"* hears|strong=\"H8085\"* it|strong=\"H5921\"*, then|strong=\"H6965\"* he|strong=\"H3117\"* makes void her|strong=\"H5921\"* vow|strong=\"H5088\"* which|strong=\"H3117\"* is|strong=\"H5315\"* on|strong=\"H5921\"* her|strong=\"H5921\"* and|strong=\"H6965\"* the|strong=\"H5921\"* rash utterance of|strong=\"H3117\"* her|strong=\"H5921\"* lips, with|strong=\"H5921\"* which|strong=\"H3117\"* she|strong=\"H5921\"* has|strong=\"H3117\"* bound her|strong=\"H5921\"* soul|strong=\"H5315\"*. Yahweh|strong=\"H3068\"* will|strong=\"H5315\"* forgive her|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "“But|strong=\"H8085\"* the|strong=\"H5921\"* vow|strong=\"H5088\"* of|strong=\"H3068\"* a|strong=\"H3068\"* widow, or|strong=\"H8085\"* of|strong=\"H3068\"* her|strong=\"H5921\"* who|strong=\"H3068\"* is|strong=\"H3068\"* divorced, everything with|strong=\"H3068\"* which|strong=\"H3068\"* she|strong=\"H8193\"* has|strong=\"H3068\"* bound her|strong=\"H5921\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* stand against|strong=\"H5921\"* her|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "“If she|strong=\"H5921\"* vowed|strong=\"H5088\"* in|strong=\"H5921\"* her|strong=\"H3605\"* husband’s house or|strong=\"H5088\"* bound her|strong=\"H3605\"* soul|strong=\"H5315\"* by|strong=\"H5921\"* a|strong=\"H3068\"* bond with|strong=\"H5921\"* an|strong=\"H6965\"* oath," + }, + { + "verseNum": 11, + "text": "and|strong=\"H1004\"* her|strong=\"H5921\"* husband heard it|strong=\"H5921\"*, and|strong=\"H1004\"* held his|strong=\"H5921\"* peace at|strong=\"H5921\"* her|strong=\"H5921\"* and|strong=\"H1004\"* didn’t disallow her|strong=\"H5921\"*, then all|strong=\"H5921\"* her|strong=\"H5921\"* vows|strong=\"H5087\"* shall|strong=\"H1004\"* stand, and|strong=\"H1004\"* every pledge with|strong=\"H1004\"* which|strong=\"H1004\"* she|strong=\"H5921\"* bound her|strong=\"H5921\"* soul|strong=\"H5315\"* shall|strong=\"H1004\"* stand." + }, + { + "verseNum": 12, + "text": "But|strong=\"H3808\"* if her|strong=\"H3605\"* husband made|strong=\"H3605\"* them|strong=\"H5921\"* null and|strong=\"H6965\"* void in|strong=\"H5921\"* the|strong=\"H3605\"* day that|strong=\"H3605\"* he|strong=\"H3605\"* heard|strong=\"H8085\"* them|strong=\"H5921\"*, then|strong=\"H6965\"* whatever|strong=\"H3605\"* proceeded out|strong=\"H5921\"* of|strong=\"H5921\"* her|strong=\"H3605\"* lips concerning|strong=\"H5921\"* her|strong=\"H3605\"* vows|strong=\"H5088\"*, or|strong=\"H3808\"* concerning|strong=\"H5921\"* the|strong=\"H3605\"* bond of|strong=\"H5921\"* her|strong=\"H3605\"* soul|strong=\"H5315\"*, shall|strong=\"H5315\"* not|strong=\"H3808\"* stand|strong=\"H6965\"*. Her|strong=\"H3605\"* husband has|strong=\"H5315\"* made|strong=\"H3605\"* them|strong=\"H5921\"* void. Yahweh|strong=\"H3068\"* will|strong=\"H5315\"* forgive her|strong=\"H3605\"*." + }, + { + "verseNum": 13, + "text": "Every|strong=\"H3605\"* vow|strong=\"H5088\"*, and|strong=\"H6965\"* every|strong=\"H3605\"* binding|strong=\"H8193\"* oath to|strong=\"H3068\"* afflict the|strong=\"H3605\"* soul|strong=\"H5315\"*, her|strong=\"H3605\"* husband may|strong=\"H3068\"* establish|strong=\"H6965\"* it|strong=\"H3117\"*, or|strong=\"H3808\"* her|strong=\"H3605\"* husband may|strong=\"H3068\"* make|strong=\"H8085\"* it|strong=\"H3117\"* void|strong=\"H6565\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"H3605\"* if her|strong=\"H3605\"* husband says nothing|strong=\"H3605\"* to|strong=\"H6965\"* her|strong=\"H3605\"* from|strong=\"H5315\"* day to|strong=\"H6965\"* day, then|strong=\"H6965\"* he|strong=\"H3605\"* establishes all|strong=\"H3605\"* her|strong=\"H3605\"* vows|strong=\"H5088\"* or|strong=\"H5088\"* all|strong=\"H3605\"* her|strong=\"H3605\"* pledges which|strong=\"H5315\"* are|strong=\"H5315\"* on|strong=\"H6965\"* her|strong=\"H3605\"*. He|strong=\"H3605\"* has|strong=\"H5315\"* established|strong=\"H6965\"* them|strong=\"H6031\"*, because|strong=\"H3605\"* he|strong=\"H3605\"* said nothing|strong=\"H3605\"* to|strong=\"H6965\"* her|strong=\"H3605\"* in|strong=\"H5315\"* the|strong=\"H3605\"* day that|strong=\"H3605\"* he|strong=\"H3605\"* heard them|strong=\"H6031\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* he|strong=\"H3588\"* makes them|strong=\"H5921\"* null and|strong=\"H6965\"* void after|strong=\"H5921\"* he|strong=\"H3588\"* has|strong=\"H3117\"* heard|strong=\"H8085\"* them|strong=\"H5921\"*, then|strong=\"H6965\"* he|strong=\"H3588\"* shall|strong=\"H3117\"* bear her|strong=\"H3605\"* iniquity.”" + }, + { + "verseNum": 16, + "text": "These|strong=\"H8085\"* are|strong=\"H5771\"* the|strong=\"H8085\"* statutes which|strong=\"H8085\"* Yahweh|strong=\"H3068\"* commanded Moses, between a|strong=\"H3068\"* man|strong=\"H5375\"* and|strong=\"H8085\"* his|strong=\"H5375\"* wife, between a|strong=\"H3068\"* father and|strong=\"H8085\"* his|strong=\"H5375\"* daughter, being in|strong=\"H8085\"* her|strong=\"H5375\"* youth, in|strong=\"H8085\"* her|strong=\"H5375\"* father’s house." + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Avenge|strong=\"H5358\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* on|strong=\"H5360\"* the|strong=\"H1121\"* Midianites|strong=\"H4084\"*. Afterward you|strong=\"H5971\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* gathered|strong=\"H3478\"* to|strong=\"H3478\"* your|strong=\"H3478\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 3, + "text": "Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5921\"* people|strong=\"H5971\"*, saying|strong=\"H1696\"*, “Arm|strong=\"H2502\"* men|strong=\"H5971\"* from|strong=\"H5921\"* among|strong=\"H5921\"* you|strong=\"H5414\"* for|strong=\"H5921\"* war|strong=\"H6635\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* may|strong=\"H1961\"* go|strong=\"H5971\"* against|strong=\"H5921\"* Midian|strong=\"H4080\"*, to|strong=\"H1696\"* execute|strong=\"H5414\"* Yahweh|strong=\"H3068\"*’s vengeance|strong=\"H5360\"* on|strong=\"H5921\"* Midian|strong=\"H4080\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H3605\"* shall|strong=\"H3478\"* send|strong=\"H7971\"* one|strong=\"H3605\"* thousand out|strong=\"H7971\"* of|strong=\"H4294\"* every|strong=\"H3605\"* tribe|strong=\"H4294\"*, throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H4294\"* of|strong=\"H4294\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* the|strong=\"H3605\"* war|strong=\"H6635\"*.”" + }, + { + "verseNum": 5, + "text": "So there were|strong=\"H3478\"* delivered|strong=\"H2502\"*, out|strong=\"H2502\"* of|strong=\"H4294\"* the|strong=\"H8147\"* thousands of|strong=\"H4294\"* Israel|strong=\"H3478\"*, a|strong=\"H3068\"* thousand from|strong=\"H3478\"* every|strong=\"H3478\"* tribe|strong=\"H4294\"*, twelve|strong=\"H8147\"* thousand armed|strong=\"H2502\"* for|strong=\"H3478\"* war|strong=\"H6635\"*." + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* sent|strong=\"H7971\"* them|strong=\"H7971\"*, one|strong=\"H1121\"* thousand of|strong=\"H1121\"* every|strong=\"H7971\"* tribe|strong=\"H4294\"*, to|strong=\"H7971\"* the|strong=\"H7971\"* war|strong=\"H6635\"* with|strong=\"H3027\"* Phinehas|strong=\"H6372\"* the|strong=\"H7971\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar the|strong=\"H7971\"* priest|strong=\"H3548\"*, to|strong=\"H7971\"* the|strong=\"H7971\"* war|strong=\"H6635\"*, with|strong=\"H3027\"* the|strong=\"H7971\"* vessels|strong=\"H3627\"* of|strong=\"H1121\"* the|strong=\"H7971\"* sanctuary|strong=\"H6944\"* and|strong=\"H1121\"* the|strong=\"H7971\"* trumpets|strong=\"H2689\"* for|strong=\"H3027\"* the|strong=\"H7971\"* alarm|strong=\"H8643\"* in|strong=\"H1121\"* his|strong=\"H7971\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3068\"* fought|strong=\"H6633\"* against|strong=\"H5921\"* Midian|strong=\"H4080\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*. They|strong=\"H3068\"* killed|strong=\"H2026\"* every|strong=\"H3605\"* male|strong=\"H2145\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H5921\"* killed|strong=\"H2026\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"* with|strong=\"H5921\"* the|strong=\"H5921\"* rest of|strong=\"H1121\"* their|strong=\"H5921\"* slain|strong=\"H2491\"*: Evi, Rekem|strong=\"H7552\"*, Zur|strong=\"H6698\"*, Hur|strong=\"H2354\"*, and|strong=\"H1121\"* Reba|strong=\"H7254\"*, the|strong=\"H5921\"* five|strong=\"H2568\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"*. They|strong=\"H5921\"* also|strong=\"H4428\"* killed|strong=\"H2026\"* Balaam|strong=\"H1109\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Beor|strong=\"H1160\"* with|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* took|strong=\"H7617\"* the|strong=\"H3605\"* women of|strong=\"H1121\"* Midian|strong=\"H4080\"* captive|strong=\"H7617\"* with|strong=\"H3478\"* their|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*; and|strong=\"H1121\"* all|strong=\"H3605\"* their|strong=\"H3605\"* livestock|strong=\"H4735\"*, all|strong=\"H3605\"* their|strong=\"H3605\"* flocks|strong=\"H4735\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* their|strong=\"H3605\"* goods|strong=\"H2428\"*, they|strong=\"H3478\"* took|strong=\"H7617\"* as|strong=\"H1121\"* plunder." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* their|strong=\"H3605\"* cities|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H3605\"* places|strong=\"H4186\"* in|strong=\"H5892\"* which|strong=\"H5892\"* they|strong=\"H3605\"* lived|strong=\"H4186\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* their|strong=\"H3605\"* encampments|strong=\"H2918\"*, they|strong=\"H3605\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3605\"* took|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captives, and|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* plunder|strong=\"H7998\"*, both|strong=\"H3605\"* of|strong=\"H3605\"* man|strong=\"H3605\"* and|strong=\"H3947\"* of|strong=\"H3605\"* animal." + }, + { + "verseNum": 12, + "text": "They|strong=\"H5921\"* brought|strong=\"H3548\"* the|strong=\"H5921\"* captives|strong=\"H7628\"* with|strong=\"H5921\"* the|strong=\"H5921\"* prey|strong=\"H7998\"* and|strong=\"H1121\"* the|strong=\"H5921\"* plunder|strong=\"H7998\"*, to|strong=\"H3478\"* Moses|strong=\"H4872\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* Eleazar the|strong=\"H5921\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* the|strong=\"H5921\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* the|strong=\"H5921\"* camp|strong=\"H4264\"* at|strong=\"H5921\"* the|strong=\"H5921\"* plains|strong=\"H6160\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, which|strong=\"H3478\"* are|strong=\"H1121\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* at|strong=\"H5921\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 13, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Eleazar the|strong=\"H3605\"* priest|strong=\"H3548\"*, with|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H5387\"* of|strong=\"H4264\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*, went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* them|strong=\"H3318\"* outside|strong=\"H2351\"* of|strong=\"H4264\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 14, + "text": "Moses|strong=\"H4872\"* was|strong=\"H4872\"* angry|strong=\"H7107\"* with|strong=\"H5921\"* the|strong=\"H5921\"* officers|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H5921\"* army|strong=\"H2428\"*, the|strong=\"H5921\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* thousands and|strong=\"H3967\"* the|strong=\"H5921\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* hundreds|strong=\"H3967\"*, who|strong=\"H6635\"* came|strong=\"H6635\"* from|strong=\"H5921\"* the|strong=\"H5921\"* service|strong=\"H6635\"* of|strong=\"H8269\"* the|strong=\"H5921\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 15, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H4872\"* them|strong=\"H2421\"*, “Have|strong=\"H3605\"* you|strong=\"H3605\"* saved|strong=\"H2421\"* all|strong=\"H3605\"* the|strong=\"H3605\"* women|strong=\"H5347\"* alive|strong=\"H2421\"*?" + }, + { + "verseNum": 16, + "text": "Behold|strong=\"H2005\"*, these|strong=\"H2007\"* caused|strong=\"H1961\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, through|strong=\"H5921\"* the|strong=\"H5921\"* counsel|strong=\"H1697\"* of|strong=\"H1121\"* Balaam|strong=\"H1109\"*, to|strong=\"H3478\"* commit|strong=\"H4560\"* trespass|strong=\"H4604\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* matter|strong=\"H1697\"* of|strong=\"H1121\"* Peor|strong=\"H6465\"*, and|strong=\"H1121\"* so|strong=\"H1961\"* the|strong=\"H5921\"* plague|strong=\"H4046\"* was|strong=\"H3068\"* among|strong=\"H5921\"* the|strong=\"H5921\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* kill|strong=\"H2026\"* every|strong=\"H3605\"* male|strong=\"H2145\"* among the|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, and|strong=\"H3045\"* kill|strong=\"H2026\"* every|strong=\"H3605\"* woman who|strong=\"H3605\"* has|strong=\"H3045\"* known|strong=\"H3045\"* man|strong=\"H2145\"* by|strong=\"H3605\"* lying|strong=\"H4904\"* with|strong=\"H3045\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H3808\"* all|strong=\"H3605\"* the|strong=\"H3605\"* girls|strong=\"H2945\"*, who|strong=\"H3605\"* have|strong=\"H3045\"* not|strong=\"H3808\"* known|strong=\"H3045\"* man|strong=\"H2145\"* by|strong=\"H3808\"* lying|strong=\"H4904\"* with|strong=\"H3045\"* him|strong=\"H3605\"*, keep|strong=\"H2421\"* alive|strong=\"H2421\"* for|strong=\"H3605\"* yourselves|strong=\"H3605\"*." + }, + { + "verseNum": 19, + "text": "“Encamp|strong=\"H2583\"* outside|strong=\"H2351\"* of|strong=\"H3117\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* for|strong=\"H3117\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*. Whoever|strong=\"H3605\"* has|strong=\"H3117\"* killed|strong=\"H2026\"* any|strong=\"H3605\"* person|strong=\"H5315\"*, and|strong=\"H3117\"* whoever|strong=\"H3605\"* has|strong=\"H3117\"* touched|strong=\"H5060\"* any|strong=\"H3605\"* slain|strong=\"H2491\"*, purify|strong=\"H2398\"* yourselves|strong=\"H5315\"* on|strong=\"H3117\"* the|strong=\"H3605\"* third|strong=\"H7992\"* day|strong=\"H3117\"* and|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, you|strong=\"H3605\"* and|strong=\"H3117\"* your|strong=\"H3605\"* captives|strong=\"H7628\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H3605\"* shall|strong=\"H2398\"* purify|strong=\"H2398\"* every|strong=\"H3605\"* garment, and|strong=\"H6086\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* made|strong=\"H4639\"* of|strong=\"H3627\"* skin|strong=\"H5785\"*, and|strong=\"H6086\"* all|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3627\"* goats|strong=\"H5795\"*’ hair, and|strong=\"H6086\"* all|strong=\"H3605\"* things|strong=\"H3605\"* made|strong=\"H4639\"* of|strong=\"H3627\"* wood|strong=\"H6086\"*.”" + }, + { + "verseNum": 21, + "text": "Eleazar the|strong=\"H3068\"* priest|strong=\"H3548\"* said to|strong=\"H3068\"* the|strong=\"H3068\"* men|strong=\"H6635\"* of|strong=\"H3068\"* war|strong=\"H4421\"* who|strong=\"H3068\"* went|strong=\"H4872\"* to|strong=\"H3068\"* the|strong=\"H3068\"* battle|strong=\"H4421\"*, “This|strong=\"H2063\"* is|strong=\"H3068\"* the|strong=\"H3068\"* statute|strong=\"H2708\"* of|strong=\"H3068\"* the|strong=\"H3068\"* law|strong=\"H8451\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 22, + "text": "However the gold|strong=\"H2091\"*, and|strong=\"H3701\"* the silver|strong=\"H3701\"*, the bronze|strong=\"H5178\"*, the iron|strong=\"H1270\"*, the tin, and|strong=\"H3701\"* the lead|strong=\"H5777\"*," + }, + { + "verseNum": 23, + "text": "everything|strong=\"H3605\"* that|strong=\"H3605\"* may|strong=\"H4325\"* withstand the|strong=\"H3605\"* fire, you|strong=\"H3605\"* shall|strong=\"H3808\"* make to|strong=\"H4325\"* go|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3605\"* fire, and|strong=\"H1697\"* it|strong=\"H3808\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* clean|strong=\"H2891\"*; nevertheless it|strong=\"H3808\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* purified|strong=\"H2891\"* with|strong=\"H1697\"* the|strong=\"H3605\"* water|strong=\"H4325\"* for|strong=\"H4325\"* impurity|strong=\"H5079\"*. All|strong=\"H3605\"* that|strong=\"H3605\"* doesn’t withstand the|strong=\"H3605\"* fire you|strong=\"H3605\"* shall|strong=\"H3808\"* make to|strong=\"H4325\"* go|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3605\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H3117\"* shall|strong=\"H3117\"* wash|strong=\"H3526\"* your|strong=\"H3117\"* clothes on|strong=\"H3117\"* the|strong=\"H3117\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* clean|strong=\"H2891\"*. Afterward you|strong=\"H3117\"* shall|strong=\"H3117\"* come into|strong=\"H4264\"* the|strong=\"H3117\"* camp|strong=\"H4264\"*.”" + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"*, saying," + }, + { + "verseNum": 26, + "text": "“Count|strong=\"H5375\"* the|strong=\"H5375\"* plunder|strong=\"H4455\"* that|strong=\"H3548\"* was|strong=\"H7218\"* taken|strong=\"H5375\"*, both of|strong=\"H7218\"* man|strong=\"H5375\"* and|strong=\"H3548\"* of|strong=\"H7218\"* animal, you|strong=\"H5375\"*, and|strong=\"H3548\"* Eleazar the|strong=\"H5375\"* priest|strong=\"H3548\"*, and|strong=\"H3548\"* the|strong=\"H5375\"* heads|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5375\"* fathers’ households of|strong=\"H7218\"* the|strong=\"H5375\"* congregation|strong=\"H5712\"*;" + }, + { + "verseNum": 27, + "text": "and|strong=\"H3318\"* divide|strong=\"H2673\"* the|strong=\"H3605\"* plunder|strong=\"H4455\"* into|strong=\"H3318\"* two parts|strong=\"H2673\"*: between|strong=\"H4421\"* the|strong=\"H3605\"* men|strong=\"H3605\"* skilled in|strong=\"H4421\"* war|strong=\"H4421\"*, who|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* battle|strong=\"H4421\"*, and|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*." + }, + { + "verseNum": 28, + "text": "Levy|strong=\"H4371\"* a|strong=\"H3068\"* tribute|strong=\"H4371\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H3068\"* men|strong=\"H5315\"* of|strong=\"H3068\"* war|strong=\"H4421\"* who|strong=\"H3068\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* battle|strong=\"H4421\"*: one|strong=\"H4480\"* soul|strong=\"H5315\"* of|strong=\"H3068\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"*; of|strong=\"H3068\"* the|strong=\"H3068\"* persons|strong=\"H5315\"*, of|strong=\"H3068\"* the|strong=\"H3068\"* cattle|strong=\"H1241\"*, of|strong=\"H3068\"* the|strong=\"H3068\"* donkeys|strong=\"H2543\"*, and|strong=\"H3967\"* of|strong=\"H3068\"* the|strong=\"H3068\"* flocks|strong=\"H6629\"*." + }, + { + "verseNum": 29, + "text": "Take|strong=\"H3947\"* it|strong=\"H5414\"* from|strong=\"H3947\"* their|strong=\"H3068\"* half|strong=\"H4276\"*, and|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* Eleazar the|strong=\"H5414\"* priest|strong=\"H3548\"*, for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s wave offering|strong=\"H8641\"*." + }, + { + "verseNum": 30, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*’s half|strong=\"H4276\"*, you|strong=\"H5414\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* one|strong=\"H3605\"* drawn|strong=\"H3947\"* out|strong=\"H4480\"* of|strong=\"H1121\"* every|strong=\"H3605\"* fifty|strong=\"H2572\"*, of|strong=\"H1121\"* the|strong=\"H3605\"* persons, of|strong=\"H1121\"* the|strong=\"H3605\"* cattle|strong=\"H1241\"*, of|strong=\"H1121\"* the|strong=\"H3605\"* donkeys|strong=\"H2543\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"*, of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* livestock, and|strong=\"H1121\"* give|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, who|strong=\"H3605\"* perform|strong=\"H8104\"* the|strong=\"H3605\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s tabernacle|strong=\"H4908\"*.”" + }, + { + "verseNum": 31, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Eleazar the|strong=\"H6213\"* priest|strong=\"H3548\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 32, + "text": "Now|strong=\"H1961\"* the|strong=\"H1961\"* plunder|strong=\"H4455\"*, over and|strong=\"H3967\"* above the|strong=\"H1961\"* booty|strong=\"H4455\"* which|strong=\"H5971\"* the|strong=\"H1961\"* men|strong=\"H5971\"* of|strong=\"H6635\"* war|strong=\"H6635\"* took|strong=\"H1961\"*, was|strong=\"H1961\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* seventy-five|strong=\"H7657\"* thousand sheep|strong=\"H6629\"*," + }, + { + "verseNum": 33, + "text": "seventy-two thousand head of|strong=\"H8147\"* cattle|strong=\"H1241\"*," + }, + { + "verseNum": 34, + "text": "sixty-one thousand donkeys|strong=\"H2543\"*," + }, + { + "verseNum": 35, + "text": "and|strong=\"H7970\"* thirty-two|strong=\"H7970\"* thousand persons|strong=\"H5315\"* in|strong=\"H5315\"* all|strong=\"H3605\"*, of|strong=\"H4480\"* the|strong=\"H3605\"* women who|strong=\"H3605\"* had|strong=\"H3045\"* not|strong=\"H3808\"* known|strong=\"H3045\"* man|strong=\"H2145\"* by|strong=\"H3808\"* lying|strong=\"H4904\"* with|strong=\"H3045\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"H3318\"* half|strong=\"H4275\"*, which|strong=\"H6635\"* was|strong=\"H1961\"* the|strong=\"H3318\"* portion|strong=\"H2506\"* of|strong=\"H6635\"* those|strong=\"H3318\"* who|strong=\"H6635\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*, was|strong=\"H1961\"* in|strong=\"H6635\"* number|strong=\"H4557\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* thirty-seven|strong=\"H7970\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* sheep|strong=\"H6629\"*;" + }, + { + "verseNum": 37, + "text": "and|strong=\"H3967\"* Yahweh|strong=\"H3068\"*’s tribute|strong=\"H4371\"* of|strong=\"H3068\"* the|strong=\"H3068\"* sheep|strong=\"H6629\"* was|strong=\"H3068\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* seventy-five|strong=\"H7657\"*." + }, + { + "verseNum": 38, + "text": "The|strong=\"H3068\"* cattle|strong=\"H1241\"* were|strong=\"H1241\"* thirty-six|strong=\"H7970\"* thousand, of|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s tribute|strong=\"H4371\"* was|strong=\"H3068\"* seventy-two." + }, + { + "verseNum": 39, + "text": "The|strong=\"H3068\"* donkeys|strong=\"H2543\"* were|strong=\"H3068\"* thirty|strong=\"H7970\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*, of|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s tribute|strong=\"H4371\"* was|strong=\"H3068\"* sixty-one." + }, + { + "verseNum": 40, + "text": "The|strong=\"H3068\"* persons|strong=\"H5315\"* were|strong=\"H5315\"* sixteen|strong=\"H8337\"* thousand, of|strong=\"H3068\"* whom Yahweh|strong=\"H3068\"*’s tribute|strong=\"H4371\"* was|strong=\"H3068\"* thirty-two|strong=\"H7970\"* persons|strong=\"H5315\"*." + }, + { + "verseNum": 41, + "text": "Moses|strong=\"H4872\"* gave|strong=\"H5414\"* the|strong=\"H5414\"* tribute|strong=\"H4371\"*, which|strong=\"H3068\"* was|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s wave offering|strong=\"H8641\"*, to|strong=\"H3068\"* Eleazar the|strong=\"H5414\"* priest|strong=\"H3548\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 42, + "text": "Of|strong=\"H1121\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*’s half|strong=\"H4276\"*, which|strong=\"H3478\"* Moses|strong=\"H4872\"* divided|strong=\"H2673\"* off|strong=\"H4480\"* from|strong=\"H4480\"* the|strong=\"H4480\"* men|strong=\"H1121\"* who|strong=\"H1121\"* fought|strong=\"H6633\"*" + }, + { + "verseNum": 43, + "text": "(now|strong=\"H1961\"* the|strong=\"H4480\"* congregation|strong=\"H5712\"*’s half|strong=\"H4275\"* was|strong=\"H1961\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* thirty-seven|strong=\"H7970\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* sheep|strong=\"H6629\"*," + }, + { + "verseNum": 44, + "text": "thirty-six|strong=\"H7970\"* thousand head of|strong=\"H7970\"* cattle|strong=\"H1241\"*," + }, + { + "verseNum": 45, + "text": "thirty|strong=\"H7970\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* donkeys|strong=\"H2543\"*," + }, + { + "verseNum": 46, + "text": "and|strong=\"H5315\"* sixteen|strong=\"H8337\"* thousand persons|strong=\"H5315\"*)," + }, + { + "verseNum": 47, + "text": "even|strong=\"H3068\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*’s half|strong=\"H4276\"*, Moses|strong=\"H4872\"* took|strong=\"H3947\"* one|strong=\"H4480\"* drawn|strong=\"H3947\"* out|strong=\"H4480\"* of|strong=\"H1121\"* every|strong=\"H3947\"* fifty|strong=\"H2572\"*, both|strong=\"H4480\"* of|strong=\"H1121\"* man|strong=\"H1121\"* and|strong=\"H1121\"* of|strong=\"H1121\"* animal, and|strong=\"H1121\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"*, who|strong=\"H3068\"* performed|strong=\"H8104\"* the|strong=\"H5414\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s tabernacle|strong=\"H4908\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 48, + "text": "The|strong=\"H6485\"* officers|strong=\"H8269\"* who|strong=\"H6635\"* were|strong=\"H8269\"* over|strong=\"H8269\"* the|strong=\"H6485\"* thousands of|strong=\"H8269\"* the|strong=\"H6485\"* army|strong=\"H6635\"*, the|strong=\"H6485\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* thousands, and|strong=\"H3967\"* the|strong=\"H6485\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* hundreds|strong=\"H3967\"*, came|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H7126\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 49, + "text": "They|strong=\"H3808\"* said to|strong=\"H3027\"* Moses|strong=\"H4872\"*, “Your|strong=\"H5375\"* servants|strong=\"H5650\"* have|strong=\"H5650\"* taken|strong=\"H5375\"* the|strong=\"H5375\"* sum|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H5375\"* men|strong=\"H7218\"* of|strong=\"H3027\"* war|strong=\"H4421\"* who|strong=\"H5650\"* are|strong=\"H3027\"* under|strong=\"H4480\"* our|strong=\"H5650\"* command|strong=\"H3027\"*, and|strong=\"H4872\"* there|strong=\"H4480\"* lacks not|strong=\"H3808\"* one|strong=\"H3808\"* man|strong=\"H5375\"* of|strong=\"H3027\"* us|strong=\"H3027\"*." + }, + { + "verseNum": 50, + "text": "We|strong=\"H5315\"* have|strong=\"H3068\"* brought|strong=\"H7126\"* Yahweh|strong=\"H3068\"*’s offering|strong=\"H7133\"*, what|strong=\"H5921\"* every|strong=\"H3068\"* man|strong=\"H5315\"* found|strong=\"H4672\"*: gold|strong=\"H2091\"* ornaments|strong=\"H3627\"*, armlets, bracelets|strong=\"H6781\"*, signet|strong=\"H2885\"* rings|strong=\"H2885\"*, earrings|strong=\"H5694\"*, and|strong=\"H3068\"* necklaces|strong=\"H3558\"*, to|strong=\"H3068\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* our|strong=\"H3068\"* souls|strong=\"H5315\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 51, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Eleazar the|strong=\"H3605\"* priest|strong=\"H3548\"* took|strong=\"H3947\"* their|strong=\"H3605\"* gold|strong=\"H2091\"*, even all|strong=\"H3605\"* worked jewels|strong=\"H3627\"*." + }, + { + "verseNum": 52, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* gold|strong=\"H2091\"* of|strong=\"H3068\"* the|strong=\"H3605\"* wave offering|strong=\"H8641\"* that|strong=\"H3605\"* they|strong=\"H3068\"* offered|strong=\"H7311\"* up|strong=\"H7311\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, of|strong=\"H3068\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H3068\"* thousands, and|strong=\"H3967\"* of|strong=\"H3068\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H3068\"* hundreds|strong=\"H3967\"*, was|strong=\"H3068\"* sixteen|strong=\"H8337\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* shekels|strong=\"H8255\"*.+ 31:52 A shekel is about 10 grams or about 0.35 ounces, so 16,750 shekels is about 167.5 kilograms or about 368.5 pounds.*" + }, + { + "verseNum": 53, + "text": "The|strong=\"H6635\"* men|strong=\"H6635\"* of|strong=\"H6635\"* war|strong=\"H6635\"* had|strong=\"H6635\"* taken booty, every man for|strong=\"H6635\"* himself." + }, + { + "verseNum": 54, + "text": "Moses|strong=\"H4872\"* and|strong=\"H3967\"* Eleazar the|strong=\"H6440\"* priest|strong=\"H3548\"* took|strong=\"H3947\"* the|strong=\"H6440\"* gold|strong=\"H2091\"* of|strong=\"H1121\"* the|strong=\"H6440\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* thousands and|strong=\"H3967\"* of|strong=\"H1121\"* hundreds|strong=\"H3967\"*, and|strong=\"H3967\"* brought|strong=\"H3947\"* it|strong=\"H6440\"* into|strong=\"H3947\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"* for|strong=\"H6440\"* a|strong=\"H3068\"* memorial|strong=\"H2146\"* for|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* and|strong=\"H1121\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* had|strong=\"H1961\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H7227\"* multitude|strong=\"H7227\"* of|strong=\"H1121\"* livestock|strong=\"H4735\"*. They|strong=\"H7200\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* land|strong=\"H4725\"* of|strong=\"H1121\"* Jazer|strong=\"H3270\"*, and|strong=\"H1121\"* the|strong=\"H7200\"* land|strong=\"H4725\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*. Behold|strong=\"H2009\"*, the|strong=\"H7200\"* place|strong=\"H4725\"* was|strong=\"H1961\"* a|strong=\"H3068\"* place|strong=\"H4725\"* for|strong=\"H1121\"* livestock|strong=\"H4735\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H4872\"* the|strong=\"H4872\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* and|strong=\"H1121\"* the|strong=\"H4872\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* came|strong=\"H3548\"* and|strong=\"H1121\"* spoke to|strong=\"H1121\"* Moses|strong=\"H4872\"*, and|strong=\"H1121\"* to|strong=\"H1121\"* Eleazar the|strong=\"H4872\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* to|strong=\"H1121\"* the|strong=\"H4872\"* princes|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H4872\"* congregation|strong=\"H5712\"*, saying," + }, + { + "verseNum": 3, + "text": "“Ataroth|strong=\"H5852\"*, Dibon|strong=\"H1769\"*, Jazer|strong=\"H3270\"*, Nimrah|strong=\"H5247\"*, Heshbon|strong=\"H2809\"*, Elealeh, Sebam|strong=\"H7643\"*, Nebo|strong=\"H5015\"*, and|strong=\"H5015\"* Beon|strong=\"H1194\"*," + }, + { + "verseNum": 4, + "text": "the|strong=\"H6440\"* land|strong=\"H6440\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* struck|strong=\"H5221\"* before|strong=\"H6440\"* the|strong=\"H6440\"* congregation|strong=\"H5712\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, is|strong=\"H3068\"* a|strong=\"H3068\"* land|strong=\"H6440\"* for|strong=\"H6440\"* livestock|strong=\"H4735\"*; and|strong=\"H3478\"* your|strong=\"H3068\"* servants|strong=\"H5650\"* have|strong=\"H3068\"* livestock|strong=\"H4735\"*.”" + }, + { + "verseNum": 5, + "text": "They|strong=\"H5414\"* said, “If we|strong=\"H3068\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H4672\"* your|strong=\"H5414\"* sight|strong=\"H5869\"*, let|strong=\"H5414\"* this|strong=\"H2063\"* land be|strong=\"H5414\"* given|strong=\"H5414\"* to|strong=\"H5414\"* your|strong=\"H5414\"* servants|strong=\"H5650\"* for|strong=\"H5650\"* a|strong=\"H3068\"* possession. Don’t bring|strong=\"H5414\"* us|strong=\"H5414\"* over|strong=\"H5674\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"*.”" + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H1121\"* the|strong=\"H4872\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, and|strong=\"H1121\"* to|strong=\"H1121\"* the|strong=\"H4872\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, “Shall|strong=\"H1121\"* your|strong=\"H1121\"* brothers|strong=\"H1121\"* go to|strong=\"H1121\"* war|strong=\"H4421\"* while|strong=\"H3427\"* you|strong=\"H3427\"* sit|strong=\"H3427\"* here|strong=\"H6311\"*?" + }, + { + "verseNum": 7, + "text": "Why|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H5414\"* discourage the|strong=\"H5414\"* heart|strong=\"H3820\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* going|strong=\"H5674\"* over|strong=\"H5674\"* into|strong=\"H5414\"* the|strong=\"H5414\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* them|strong=\"H5414\"*?" + }, + { + "verseNum": 8, + "text": "Your|strong=\"H7200\"* fathers did|strong=\"H6213\"* so|strong=\"H6213\"* when|strong=\"H7200\"* I|strong=\"H3541\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* from|strong=\"H7971\"* Kadesh Barnea to|strong=\"H7971\"* see|strong=\"H7200\"* the|strong=\"H7200\"* land." + }, + { + "verseNum": 9, + "text": "For|strong=\"H5704\"* when|strong=\"H7200\"* they|strong=\"H3068\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5704\"* the|strong=\"H7200\"* valley|strong=\"H5158\"* of|strong=\"H1121\"* Eshcol, and|strong=\"H1121\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* land, they|strong=\"H3068\"* discouraged|strong=\"H5106\"* the|strong=\"H7200\"* heart|strong=\"H3820\"* of|strong=\"H1121\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H7200\"* they|strong=\"H3068\"* should|strong=\"H3068\"* not|strong=\"H1115\"* go|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H7200\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* given|strong=\"H5414\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, and|strong=\"H3068\"* he|strong=\"H1931\"* swore|strong=\"H7650\"*, saying," + }, + { + "verseNum": 11, + "text": "‘Surely|strong=\"H3588\"* none|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H7200\"* men|strong=\"H1121\"* who|strong=\"H1121\"* came|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H7200\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, from|strong=\"H5927\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, shall|strong=\"H1121\"* see|strong=\"H7200\"* the|strong=\"H7200\"* land which|strong=\"H3588\"* I|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H5927\"* Abraham, to|strong=\"H5927\"* Isaac|strong=\"H3327\"*, and|strong=\"H1121\"* to|strong=\"H5927\"* Jacob|strong=\"H3290\"*; because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1121\"* not|strong=\"H3808\"* wholly|strong=\"H4390\"* followed|strong=\"H5927\"* me|strong=\"H7200\"*," + }, + { + "verseNum": 12, + "text": "except|strong=\"H3588\"* Caleb|strong=\"H3612\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"* the|strong=\"H3588\"* Kenizzite|strong=\"H7074\"*, and|strong=\"H1121\"* Joshua|strong=\"H3091\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3068\"* followed Yahweh|strong=\"H3068\"* completely.’" + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* he|strong=\"H5704\"* made|strong=\"H6213\"* them|strong=\"H6213\"* wander|strong=\"H5128\"* back and|strong=\"H3478\"* forth|strong=\"H6213\"* in|strong=\"H8141\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* forty years|strong=\"H8141\"*, until|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* generation|strong=\"H1755\"* who|strong=\"H3605\"* had|strong=\"H3068\"* done|strong=\"H6213\"* evil|strong=\"H7451\"* in|strong=\"H8141\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"* was|strong=\"H3068\"* consumed|strong=\"H8552\"*." + }, + { + "verseNum": 14, + "text": "“Behold|strong=\"H2009\"*, you|strong=\"H5921\"* have|strong=\"H3068\"* risen|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H5921\"* your|strong=\"H3068\"* fathers’ place|strong=\"H8478\"*, an|strong=\"H6965\"* increase|strong=\"H8635\"* of|strong=\"H3068\"* sinful|strong=\"H2400\"* men|strong=\"H2400\"*, to|strong=\"H3478\"* increase|strong=\"H8635\"* the|strong=\"H5921\"* fierce|strong=\"H2740\"* anger|strong=\"H2740\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* toward|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* after|strong=\"H3588\"* him|strong=\"H7725\"*, he|strong=\"H3588\"* will|strong=\"H5971\"* yet|strong=\"H5750\"* again|strong=\"H7725\"* leave|strong=\"H3240\"* them|strong=\"H7725\"* in|strong=\"H7725\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*; and|strong=\"H7725\"* you|strong=\"H3588\"* will|strong=\"H5971\"* destroy|strong=\"H7843\"* all|strong=\"H3605\"* these|strong=\"H2088\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 16, + "text": "They|strong=\"H5892\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H5066\"* him, and|strong=\"H5892\"* said, “We|strong=\"H5892\"* will|strong=\"H5892\"* build|strong=\"H1129\"* sheepfolds|strong=\"H1448\"* here|strong=\"H6311\"* for|strong=\"H5892\"* our livestock|strong=\"H4735\"*, and|strong=\"H5892\"* cities|strong=\"H5892\"* for|strong=\"H5892\"* our little|strong=\"H2945\"* ones|strong=\"H2945\"*;" + }, + { + "verseNum": 17, + "text": "but we|strong=\"H3068\"* ourselves will|strong=\"H3478\"* be|strong=\"H1121\"* ready|strong=\"H2363\"* armed|strong=\"H2502\"* to|strong=\"H5704\"* go|strong=\"H3478\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, until|strong=\"H5704\"* we|strong=\"H3068\"* have|strong=\"H1121\"* brought|strong=\"H3478\"* them|strong=\"H6440\"* to|strong=\"H5704\"* their|strong=\"H6440\"* place|strong=\"H4725\"*. Our|strong=\"H6440\"* little|strong=\"H2945\"* ones|strong=\"H2945\"* shall|strong=\"H1121\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* fortified|strong=\"H4013\"* cities|strong=\"H5892\"* because|strong=\"H6440\"* of|strong=\"H1121\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* the|strong=\"H6440\"* land|strong=\"H4725\"*." + }, + { + "verseNum": 18, + "text": "We|strong=\"H5704\"* will|strong=\"H3478\"* not|strong=\"H3808\"* return|strong=\"H7725\"* to|strong=\"H5704\"* our|strong=\"H7725\"* houses|strong=\"H1004\"* until|strong=\"H5704\"* the|strong=\"H7725\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* have|strong=\"H1121\"* all|strong=\"H5704\"* received|strong=\"H5157\"* their|strong=\"H7725\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H3808\"* not|strong=\"H3808\"* inherit|strong=\"H5157\"* with|strong=\"H5159\"* them|strong=\"H3588\"* on|strong=\"H5676\"* the|strong=\"H3588\"* other|strong=\"H5676\"* side|strong=\"H5676\"* of|strong=\"H5159\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"* and|strong=\"H3383\"* beyond|strong=\"H5676\"*, because|strong=\"H3588\"* our|strong=\"H3588\"* inheritance|strong=\"H5159\"* has|strong=\"H3588\"* come to|strong=\"H5159\"* us|strong=\"H3588\"* on|strong=\"H5676\"* this|strong=\"H3588\"* side|strong=\"H5676\"* of|strong=\"H5159\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"* eastward|strong=\"H4217\"*.”" + }, + { + "verseNum": 20, + "text": "Moses|strong=\"H4872\"* said|strong=\"H1697\"* to|strong=\"H3068\"* them|strong=\"H6440\"*: “If you|strong=\"H6440\"* will|strong=\"H3068\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*, if you|strong=\"H6440\"* will|strong=\"H3068\"* arm|strong=\"H2502\"* yourselves|strong=\"H3068\"* to|strong=\"H3068\"* go|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H6440\"* war|strong=\"H4421\"*," + }, + { + "verseNum": 21, + "text": "and|strong=\"H3068\"* every|strong=\"H3605\"* one|strong=\"H3605\"* of|strong=\"H3068\"* your|strong=\"H3068\"* armed|strong=\"H2502\"* men|strong=\"H2502\"* will|strong=\"H3068\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* until|strong=\"H5704\"* he|strong=\"H5704\"* has|strong=\"H3068\"* driven|strong=\"H3423\"* out|strong=\"H3423\"* his|strong=\"H3605\"* enemies from|strong=\"H6440\"* before|strong=\"H6440\"* him|strong=\"H6440\"*," + }, + { + "verseNum": 22, + "text": "and|strong=\"H3478\"* the|strong=\"H6440\"* land|strong=\"H6440\"* is|strong=\"H3068\"* subdued|strong=\"H3533\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; then|strong=\"H1961\"* afterward you|strong=\"H6440\"* shall|strong=\"H3068\"* return|strong=\"H7725\"*, and|strong=\"H3478\"* be|strong=\"H1961\"* clear|strong=\"H5355\"* of|strong=\"H3068\"* obligation|strong=\"H5355\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* and|strong=\"H3478\"* to|strong=\"H7725\"* Israel|strong=\"H3478\"*. Then|strong=\"H1961\"* this|strong=\"H2063\"* land|strong=\"H6440\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* your|strong=\"H3068\"* possession before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 23, + "text": "“But|strong=\"H3808\"* if|strong=\"H2009\"* you|strong=\"H6213\"* will|strong=\"H3068\"* not|strong=\"H3808\"* do|strong=\"H6213\"* so|strong=\"H3651\"*, behold|strong=\"H2009\"*, you|strong=\"H6213\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* be|strong=\"H3808\"* sure|strong=\"H3045\"* your|strong=\"H3068\"* sin|strong=\"H2403\"* will|strong=\"H3068\"* find|strong=\"H4672\"* you|strong=\"H6213\"* out|strong=\"H4672\"*." + }, + { + "verseNum": 24, + "text": "Build|strong=\"H1129\"* cities|strong=\"H5892\"* for|strong=\"H6213\"* your|strong=\"H6213\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, and|strong=\"H5892\"* folds|strong=\"H1448\"* for|strong=\"H6213\"* your|strong=\"H6213\"* sheep|strong=\"H6792\"*; and|strong=\"H5892\"* do|strong=\"H6213\"* that|strong=\"H5892\"* which|strong=\"H5892\"* has|strong=\"H3318\"* proceeded|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H5892\"* your|strong=\"H6213\"* mouth|strong=\"H6310\"*.”" + }, + { + "verseNum": 25, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* and|strong=\"H1121\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* spoke to|strong=\"H6213\"* Moses|strong=\"H4872\"*, saying, “Your|strong=\"H6213\"* servants|strong=\"H5650\"* will|strong=\"H5650\"* do|strong=\"H6213\"* as|strong=\"H6213\"* my|strong=\"H6213\"* lord commands|strong=\"H6680\"*." + }, + { + "verseNum": 26, + "text": "Our|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, our|strong=\"H3605\"* wives, our|strong=\"H3605\"* flocks|strong=\"H4735\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* our|strong=\"H3605\"* livestock|strong=\"H4735\"* shall|strong=\"H5892\"* be|strong=\"H1961\"* there|strong=\"H8033\"* in|strong=\"H5892\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Gilead|strong=\"H1568\"*;" + }, + { + "verseNum": 27, + "text": "but|strong=\"H1696\"* your|strong=\"H3068\"* servants|strong=\"H5650\"* will|strong=\"H3068\"* pass|strong=\"H5674\"* over|strong=\"H5674\"*, every|strong=\"H3605\"* man|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3068\"* armed|strong=\"H2502\"* for|strong=\"H6440\"* war|strong=\"H4421\"*, before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* to|strong=\"H1696\"* battle|strong=\"H4421\"*, as|strong=\"H3068\"* my|strong=\"H3605\"* lord|strong=\"H3068\"* says|strong=\"H1696\"*.”" + }, + { + "verseNum": 28, + "text": "So|strong=\"H6680\"* Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* concerning|strong=\"H6680\"* them|strong=\"H6680\"* to|strong=\"H3478\"* Eleazar the|strong=\"H6680\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* Joshua|strong=\"H3091\"* the|strong=\"H6680\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* the|strong=\"H6680\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H6680\"* fathers’ households of|strong=\"H1121\"* the|strong=\"H6680\"* tribes|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H6680\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 29, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3068\"* them|strong=\"H5414\"*, “If|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* and|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* will|strong=\"H3068\"* pass|strong=\"H5674\"* with|strong=\"H3068\"* you|strong=\"H5414\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, every|strong=\"H3605\"* man|strong=\"H1121\"* who|strong=\"H3605\"* is|strong=\"H3068\"* armed|strong=\"H2502\"* to|strong=\"H3068\"* battle|strong=\"H4421\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* land|strong=\"H6440\"* is|strong=\"H3068\"* subdued|strong=\"H3533\"* before|strong=\"H6440\"* you|strong=\"H5414\"*, then|strong=\"H5414\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* give|strong=\"H5414\"* them|strong=\"H5414\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"* for|strong=\"H6440\"* a|strong=\"H3068\"* possession;" + }, + { + "verseNum": 30, + "text": "but|strong=\"H3808\"* if they|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* with|strong=\"H5674\"* you|strong=\"H3808\"* armed|strong=\"H2502\"*, they|strong=\"H3808\"* shall|strong=\"H3808\"* have|strong=\"H3808\"* possessions among|strong=\"H8432\"* you|strong=\"H3808\"* in|strong=\"H8432\"* the|strong=\"H8432\"* land of|strong=\"H8432\"* Canaan|strong=\"H3667\"*.”" + }, + { + "verseNum": 31, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* and|strong=\"H1121\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* answered|strong=\"H6030\"*, saying|strong=\"H1696\"*, “As|strong=\"H6213\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* your|strong=\"H3068\"* servants|strong=\"H5650\"*, so|strong=\"H3651\"* will|strong=\"H3068\"* we|strong=\"H3068\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 32, + "text": "We|strong=\"H5168\"* will|strong=\"H3068\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* armed|strong=\"H2502\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* into|strong=\"H5674\"* the|strong=\"H6440\"* land|strong=\"H5159\"* of|strong=\"H3068\"* Canaan|strong=\"H3667\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* possession|strong=\"H5159\"* of|strong=\"H3068\"* our|strong=\"H3068\"* inheritance|strong=\"H5159\"* shall|strong=\"H3068\"* remain with|strong=\"H3068\"* us|strong=\"H6440\"* beyond|strong=\"H5676\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"*.”" + }, + { + "verseNum": 33, + "text": "Moses|strong=\"H4872\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* them|strong=\"H5414\"*, even|strong=\"H4519\"* to|strong=\"H5414\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, and|strong=\"H1121\"* to|strong=\"H5414\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, and|strong=\"H1121\"* to|strong=\"H5414\"* the|strong=\"H5414\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*, the|strong=\"H5414\"* kingdom|strong=\"H4467\"* of|strong=\"H1121\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H5414\"* Amorites, and|strong=\"H1121\"* the|strong=\"H5414\"* kingdom|strong=\"H4467\"* of|strong=\"H1121\"* Og|strong=\"H5747\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Bashan|strong=\"H1316\"*; the|strong=\"H5414\"* land, according to|strong=\"H5414\"* its|strong=\"H5414\"* cities|strong=\"H5892\"* and|strong=\"H1121\"* borders|strong=\"H1367\"*, even|strong=\"H4519\"* the|strong=\"H5414\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H5414\"* surrounding|strong=\"H5439\"* land." + }, + { + "verseNum": 34, + "text": "The|strong=\"H1129\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* built|strong=\"H1129\"* Dibon|strong=\"H1769\"*, Ataroth|strong=\"H5852\"*, Aroer|strong=\"H6177\"*," + }, + { + "verseNum": 35, + "text": "Atroth-shophan|strong=\"H5855\"*, Jazer|strong=\"H3270\"*, Jogbehah|strong=\"H3011\"*," + }, + { + "verseNum": 36, + "text": "Beth Nimrah, and|strong=\"H5892\"* Beth Haran: fortified|strong=\"H4013\"* cities|strong=\"H5892\"* and|strong=\"H5892\"* folds|strong=\"H1448\"* for|strong=\"H5892\"* sheep|strong=\"H6629\"*." + }, + { + "verseNum": 37, + "text": "The|strong=\"H1129\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* built|strong=\"H1129\"* Heshbon|strong=\"H2809\"*, Elealeh, Kiriathaim|strong=\"H7156\"*," + }, + { + "verseNum": 38, + "text": "Nebo|strong=\"H5015\"*, and|strong=\"H5892\"* Baal Meon, (their|strong=\"H5437\"* names|strong=\"H8034\"* being|strong=\"H8034\"* changed|strong=\"H5437\"*), and|strong=\"H5892\"* Sibmah|strong=\"H7643\"*. They|strong=\"H5892\"* gave|strong=\"H7121\"* other|strong=\"H7121\"* names|strong=\"H8034\"* to|strong=\"H7121\"* the|strong=\"H1129\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* they|strong=\"H5892\"* built|strong=\"H1129\"*." + }, + { + "verseNum": 39, + "text": "The|strong=\"H3423\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"* the|strong=\"H3423\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Gilead|strong=\"H1568\"*, took|strong=\"H3920\"* it|strong=\"H3423\"*, and|strong=\"H1121\"* dispossessed|strong=\"H3423\"* the|strong=\"H3423\"* Amorites who|strong=\"H1121\"* were|strong=\"H1121\"* therein." + }, + { + "verseNum": 40, + "text": "Moses|strong=\"H4872\"* gave|strong=\"H5414\"* Gilead|strong=\"H1568\"* to|strong=\"H5414\"* Machir|strong=\"H4353\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*; and|strong=\"H1121\"* he|strong=\"H5414\"* lived|strong=\"H3427\"* therein|strong=\"H3427\"*." + }, + { + "verseNum": 41, + "text": "Jair|strong=\"H2971\"* the|strong=\"H7121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* went|strong=\"H1980\"* and|strong=\"H1121\"* took|strong=\"H3920\"* its|strong=\"H3920\"* villages, and|strong=\"H1121\"* called|strong=\"H7121\"* them|strong=\"H7121\"* Havvoth Jair|strong=\"H2971\"*." + }, + { + "verseNum": 42, + "text": "Nobah|strong=\"H5025\"* went|strong=\"H1980\"* and|strong=\"H1980\"* took|strong=\"H3920\"* Kenath|strong=\"H7079\"* and|strong=\"H1980\"* its|strong=\"H3920\"* villages|strong=\"H1323\"*, and|strong=\"H1980\"* called|strong=\"H7121\"* it|strong=\"H7121\"* Nobah|strong=\"H5025\"*, after|strong=\"H7121\"* his|strong=\"H7121\"* own name|strong=\"H8034\"*." + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "These are|strong=\"H1121\"* the|strong=\"H3318\"* journeys|strong=\"H4550\"* of|strong=\"H1121\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, when|strong=\"H3318\"* they|strong=\"H3478\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3318\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"* by|strong=\"H3027\"* their|strong=\"H3318\"* armies|strong=\"H6635\"* under|strong=\"H3027\"* the|strong=\"H3318\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron." + }, + { + "verseNum": 2, + "text": "Moses|strong=\"H4872\"* wrote|strong=\"H3789\"* the|strong=\"H5921\"* starting|strong=\"H4161\"* points of|strong=\"H3068\"* their|strong=\"H3068\"* journeys|strong=\"H4550\"* by|strong=\"H5921\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. These|strong=\"H3789\"* are|strong=\"H3068\"* their|strong=\"H3068\"* journeys|strong=\"H4550\"* according|strong=\"H5921\"* to|strong=\"H3068\"* their|strong=\"H3068\"* starting|strong=\"H4161\"* points." + }, + { + "verseNum": 3, + "text": "They|strong=\"H3117\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Rameses|strong=\"H7486\"* in|strong=\"H3478\"* the|strong=\"H3605\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, on|strong=\"H3117\"* the|strong=\"H3605\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H3605\"* first|strong=\"H7223\"* month|strong=\"H2320\"*; on|strong=\"H3117\"* the|strong=\"H3605\"* next|strong=\"H4283\"* day|strong=\"H3117\"* after|strong=\"H4283\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"*, the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H3318\"* a|strong=\"H3068\"* high|strong=\"H7311\"* hand|strong=\"H3027\"* in|strong=\"H3478\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Egyptians|strong=\"H4713\"*," + }, + { + "verseNum": 4, + "text": "while the|strong=\"H3605\"* Egyptians|strong=\"H4713\"* were|strong=\"H3068\"* burying|strong=\"H6912\"* all|strong=\"H3605\"* their|strong=\"H3605\"* firstborn|strong=\"H1060\"*, whom Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* struck|strong=\"H5221\"* among|strong=\"H1060\"* them|strong=\"H5221\"*. Yahweh|strong=\"H3068\"* also|strong=\"H3068\"* executed|strong=\"H6213\"* judgments|strong=\"H8201\"* on|strong=\"H3068\"* their|strong=\"H3605\"* gods." + }, + { + "verseNum": 5, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Rameses|strong=\"H7486\"*, and|strong=\"H1121\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Succoth|strong=\"H5523\"*." + }, + { + "verseNum": 6, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Succoth|strong=\"H5523\"*, and|strong=\"H4057\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Etham, which|strong=\"H4057\"* is|strong=\"H4057\"* in|strong=\"H2583\"* the|strong=\"H2583\"* edge|strong=\"H7097\"* of|strong=\"H4057\"* the|strong=\"H2583\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H5921\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Etham, and|strong=\"H7725\"* turned|strong=\"H7725\"* back|strong=\"H7725\"* to|strong=\"H7725\"* Pihahiroth, which is|strong=\"H6440\"* before|strong=\"H6440\"* Baal Zephon, and|strong=\"H7725\"* they|strong=\"H5921\"* encamped|strong=\"H2583\"* before|strong=\"H6440\"* Migdol|strong=\"H4024\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H3117\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* before|strong=\"H6440\"* Hahiroth|strong=\"H6367\"*, and|strong=\"H3117\"* crossed|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H3117\"* the|strong=\"H6440\"* sea|strong=\"H3220\"* into|strong=\"H8432\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"*. They|strong=\"H3117\"* went|strong=\"H3212\"* three|strong=\"H7969\"* days|strong=\"H3117\"*’ journey|strong=\"H1870\"* in|strong=\"H2583\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"* of|strong=\"H3117\"* Etham, and|strong=\"H3117\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Marah|strong=\"H4785\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H8033\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Marah|strong=\"H4785\"*, and|strong=\"H5869\"* came|strong=\"H4325\"* to|strong=\"H4325\"* Elim. In|strong=\"H2583\"* Elim, there|strong=\"H8033\"* were|strong=\"H4325\"* twelve|strong=\"H8147\"* springs of|strong=\"H5869\"* water|strong=\"H4325\"* and|strong=\"H5869\"* seventy|strong=\"H7657\"* palm|strong=\"H8558\"* trees|strong=\"H8558\"*, and|strong=\"H5869\"* they|strong=\"H8033\"* encamped|strong=\"H2583\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H5921\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Elim, and|strong=\"H3220\"* encamped|strong=\"H2583\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*." + }, + { + "verseNum": 11, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* the|strong=\"H3220\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*, and|strong=\"H3220\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H3220\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* Sin|strong=\"H5512\"*." + }, + { + "verseNum": 12, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* the|strong=\"H4057\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* Sin|strong=\"H5512\"*, and|strong=\"H4057\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Dophkah|strong=\"H1850\"*." + }, + { + "verseNum": 13, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Dophkah|strong=\"H1850\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Alush." + }, + { + "verseNum": 14, + "text": "They|strong=\"H8033\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Alush, and|strong=\"H5971\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Rephidim|strong=\"H7508\"*, where|strong=\"H8033\"* there|strong=\"H8033\"* was|strong=\"H1961\"* no|strong=\"H3808\"* water|strong=\"H4325\"* for|strong=\"H4325\"* the|strong=\"H1961\"* people|strong=\"H5971\"* to|strong=\"H1961\"* drink|strong=\"H8354\"*." + }, + { + "verseNum": 15, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Rephidim|strong=\"H7508\"*, and|strong=\"H4057\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H2583\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* Sinai|strong=\"H5514\"*." + }, + { + "verseNum": 16, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* the|strong=\"H4057\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* Sinai|strong=\"H5514\"*, and|strong=\"H4057\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Kibroth Hattaavah." + }, + { + "verseNum": 17, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Kibroth Hattaavah, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Hazeroth|strong=\"H2698\"*." + }, + { + "verseNum": 18, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Hazeroth|strong=\"H2698\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Rithmah|strong=\"H7575\"*." + }, + { + "verseNum": 19, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Rithmah|strong=\"H7575\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Rimmon Perez." + }, + { + "verseNum": 20, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Rimmon Perez, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Libnah|strong=\"H3841\"*." + }, + { + "verseNum": 21, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Libnah|strong=\"H3841\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Rissah|strong=\"H7446\"*." + }, + { + "verseNum": 22, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Rissah|strong=\"H7446\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Kehelathah|strong=\"H6954\"*." + }, + { + "verseNum": 23, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Kehelathah|strong=\"H6954\"*, and|strong=\"H2022\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Mount|strong=\"H2022\"* Shepher|strong=\"H8234\"*." + }, + { + "verseNum": 24, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Mount|strong=\"H2022\"* Shepher|strong=\"H8234\"*, and|strong=\"H2022\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Haradah|strong=\"H2732\"*." + }, + { + "verseNum": 25, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Haradah|strong=\"H2732\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Makheloth|strong=\"H4722\"*." + }, + { + "verseNum": 26, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Makheloth|strong=\"H4722\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Tahath|strong=\"H8480\"*." + }, + { + "verseNum": 27, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Tahath|strong=\"H8480\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Terah|strong=\"H8646\"*." + }, + { + "verseNum": 28, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Terah|strong=\"H8646\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Mithkah|strong=\"H4989\"*." + }, + { + "verseNum": 29, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Mithkah|strong=\"H4989\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Hashmonah|strong=\"H2832\"*." + }, + { + "verseNum": 30, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Hashmonah|strong=\"H2832\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Moseroth|strong=\"H4149\"*." + }, + { + "verseNum": 31, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Moseroth|strong=\"H4149\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Bene Jaakan." + }, + { + "verseNum": 32, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Bene Jaakan, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Hor Haggidgad." + }, + { + "verseNum": 33, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Hor Haggidgad, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Jotbathah|strong=\"H3193\"*." + }, + { + "verseNum": 34, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Jotbathah|strong=\"H3193\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Abronah|strong=\"H5684\"*." + }, + { + "verseNum": 35, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Abronah|strong=\"H5684\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Ezion Geber." + }, + { + "verseNum": 36, + "text": "They|strong=\"H1931\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Ezion Geber, and|strong=\"H4057\"* encamped|strong=\"H2583\"* at|strong=\"H2583\"* Kadesh|strong=\"H6946\"* in|strong=\"H2583\"* the|strong=\"H1931\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* Zin|strong=\"H6790\"*." + }, + { + "verseNum": 37, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Kadesh|strong=\"H6946\"*, and|strong=\"H2022\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Mount|strong=\"H2022\"* Hor|strong=\"H2023\"*, in|strong=\"H2583\"* the|strong=\"H2022\"* edge|strong=\"H7097\"* of|strong=\"H2022\"* the|strong=\"H2022\"* land of|strong=\"H2022\"* Edom." + }, + { + "verseNum": 38, + "text": "Aaron the|strong=\"H5921\"* priest|strong=\"H3548\"* went|strong=\"H3318\"* up|strong=\"H5927\"* into|strong=\"H5927\"* Mount|strong=\"H2022\"* Hor|strong=\"H2023\"* at|strong=\"H5921\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* and|strong=\"H1121\"* died|strong=\"H4191\"* there|strong=\"H8033\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* fortieth year|strong=\"H8141\"* after|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H3068\"* come|strong=\"H5927\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* month|strong=\"H2320\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* first|strong=\"H1121\"* day|strong=\"H2320\"* of|strong=\"H1121\"* the|strong=\"H5921\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 39, + "text": "Aaron was|strong=\"H1121\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* twenty-three|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8141\"* died|strong=\"H4194\"* in|strong=\"H8141\"* Mount|strong=\"H2022\"* Hor|strong=\"H2023\"*." + }, + { + "verseNum": 40, + "text": "The|strong=\"H8085\"* Canaanite|strong=\"H3669\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Arad|strong=\"H6166\"*, who|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H8085\"* South|strong=\"H5045\"* in|strong=\"H3427\"* the|strong=\"H8085\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, heard|strong=\"H8085\"* of|strong=\"H1121\"* the|strong=\"H8085\"* coming of|strong=\"H1121\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 41, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Mount|strong=\"H2022\"* Hor|strong=\"H2023\"*, and|strong=\"H2022\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Zalmonah|strong=\"H6758\"*." + }, + { + "verseNum": 42, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Zalmonah|strong=\"H6758\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Punon|strong=\"H6325\"*." + }, + { + "verseNum": 43, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Punon|strong=\"H6325\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Oboth." + }, + { + "verseNum": 44, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Oboth, and|strong=\"H4124\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Iye Abarim, in|strong=\"H2583\"* the|strong=\"H2583\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 45, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Iyim|strong=\"H5864\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Dibon|strong=\"H1769\"* Gad|strong=\"H1410\"*." + }, + { + "verseNum": 46, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Dibon|strong=\"H1769\"* Gad|strong=\"H1410\"*, and|strong=\"H1410\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Almon Diblathaim." + }, + { + "verseNum": 47, + "text": "They|strong=\"H6440\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Almon Diblathaim, and|strong=\"H6440\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H6440\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* Abarim|strong=\"H5682\"*, before|strong=\"H6440\"* Nebo|strong=\"H5015\"*." + }, + { + "verseNum": 48, + "text": "They|strong=\"H5921\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* Abarim|strong=\"H5682\"*, and|strong=\"H2022\"* encamped|strong=\"H2583\"* in|strong=\"H5921\"* the|strong=\"H5921\"* plains|strong=\"H6160\"* of|strong=\"H2022\"* Moab|strong=\"H4124\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* at|strong=\"H2583\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 49, + "text": "They|strong=\"H5921\"* encamped|strong=\"H2583\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*, from|strong=\"H5921\"* Beth Jeshimoth even|strong=\"H5704\"* to|strong=\"H5704\"* Abel Shittim in|strong=\"H5921\"* the|strong=\"H5921\"* plains|strong=\"H6160\"* of|strong=\"H5921\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 50, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* in|strong=\"H5921\"* the|strong=\"H5921\"* plains|strong=\"H6160\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* at|strong=\"H5921\"* Jericho|strong=\"H3405\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 51, + "text": "Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H5674\"*, “When|strong=\"H3588\"* you|strong=\"H3588\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"* into|strong=\"H5674\"* the|strong=\"H3588\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*," + }, + { + "verseNum": 52, + "text": "then|strong=\"H3605\"* you|strong=\"H6440\"* shall|strong=\"H6440\"* drive|strong=\"H3423\"* out|strong=\"H3423\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3605\"* land|strong=\"H6440\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, destroy|strong=\"H8045\"* all|strong=\"H3605\"* their|strong=\"H3605\"* stone idols, destroy|strong=\"H8045\"* all|strong=\"H3605\"* their|strong=\"H3605\"* molten|strong=\"H4541\"* images|strong=\"H6754\"*, and|strong=\"H6440\"* demolish|strong=\"H8045\"* all|strong=\"H3605\"* their|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"*." + }, + { + "verseNum": 53, + "text": "You|strong=\"H3588\"* shall|strong=\"H3427\"* take|strong=\"H3423\"* possession|strong=\"H3423\"* of|strong=\"H3427\"* the|strong=\"H3588\"* land, and|strong=\"H3427\"* dwell|strong=\"H3427\"* therein|strong=\"H3427\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5414\"* given|strong=\"H5414\"* the|strong=\"H3588\"* land to|strong=\"H5414\"* you|strong=\"H3588\"* to|strong=\"H5414\"* possess|strong=\"H3423\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 54, + "text": "You|strong=\"H5159\"* shall|strong=\"H7227\"* inherit|strong=\"H5157\"* the|strong=\"H3318\"* land|strong=\"H5159\"* by|strong=\"H3318\"* lot|strong=\"H1486\"* according to|strong=\"H3318\"* your|strong=\"H7235\"* families|strong=\"H4940\"*; to|strong=\"H3318\"* the|strong=\"H3318\"* larger|strong=\"H7227\"* groups you|strong=\"H5159\"* shall|strong=\"H7227\"* give|strong=\"H5157\"* a|strong=\"H3068\"* larger|strong=\"H7227\"* inheritance|strong=\"H5159\"*, and|strong=\"H8033\"* to|strong=\"H3318\"* the|strong=\"H3318\"* smaller|strong=\"H4592\"* you|strong=\"H5159\"* shall|strong=\"H7227\"* give|strong=\"H5157\"* a|strong=\"H3068\"* smaller|strong=\"H4592\"* inheritance|strong=\"H5159\"*. Wherever|strong=\"H8033\"* the|strong=\"H3318\"* lot|strong=\"H1486\"* falls|strong=\"H3318\"* to|strong=\"H3318\"* any|strong=\"H1961\"* man, that|strong=\"H4940\"* shall|strong=\"H7227\"* be|strong=\"H1961\"* his|strong=\"H1961\"*. You|strong=\"H5159\"* shall|strong=\"H7227\"* inherit|strong=\"H5157\"* according to|strong=\"H3318\"* the|strong=\"H3318\"* tribes|strong=\"H4294\"* of|strong=\"H4294\"* your|strong=\"H7235\"* fathers." + }, + { + "verseNum": 55, + "text": "“But|strong=\"H3808\"* if|strong=\"H1961\"* you|strong=\"H6440\"* do|strong=\"H5869\"* not|strong=\"H3808\"* drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H6440\"* land|strong=\"H6440\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, then|strong=\"H1961\"* those|strong=\"H1992\"* you|strong=\"H6440\"* let|strong=\"H3808\"* remain|strong=\"H3427\"* of|strong=\"H3427\"* them|strong=\"H1992\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* pricks|strong=\"H7899\"* in|strong=\"H3427\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"* and|strong=\"H5869\"* thorns|strong=\"H6796\"* in|strong=\"H3427\"* your|strong=\"H5921\"* sides|strong=\"H6654\"*. They|strong=\"H1992\"* will|strong=\"H1961\"* harass|strong=\"H6887\"* you|strong=\"H6440\"* in|strong=\"H3427\"* the|strong=\"H6440\"* land|strong=\"H6440\"* in|strong=\"H3427\"* which|strong=\"H1992\"* you|strong=\"H6440\"* dwell|strong=\"H3427\"*." + }, + { + "verseNum": 56, + "text": "It|strong=\"H6213\"* shall|strong=\"H6213\"* happen|strong=\"H1961\"* that|strong=\"H6213\"* as|strong=\"H1961\"* I|strong=\"H6213\"* thought|strong=\"H1819\"* to|strong=\"H1961\"* do|strong=\"H6213\"* to|strong=\"H1961\"* them|strong=\"H6213\"*, so|strong=\"H6213\"* I|strong=\"H6213\"* will|strong=\"H1961\"* do|strong=\"H6213\"* to|strong=\"H1961\"* you|strong=\"H6213\"*.”" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Command|strong=\"H6680\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell them|strong=\"H6680\"*, ‘When|strong=\"H3588\"* you|strong=\"H3588\"* come|strong=\"H5307\"* into|strong=\"H5307\"* the|strong=\"H3588\"* land|strong=\"H5159\"* of|strong=\"H1121\"* Canaan|strong=\"H3667\"* (this|strong=\"H2063\"* is|strong=\"H3478\"* the|strong=\"H3588\"* land|strong=\"H5159\"* that|strong=\"H3588\"* shall|strong=\"H1121\"* fall|strong=\"H5307\"* to|strong=\"H3478\"* you|strong=\"H3588\"* for|strong=\"H3588\"* an|strong=\"H3588\"* inheritance|strong=\"H5159\"*, even|strong=\"H3588\"* the|strong=\"H3588\"* land|strong=\"H5159\"* of|strong=\"H1121\"* Canaan|strong=\"H3667\"* according to|strong=\"H3478\"* its|strong=\"H3588\"* borders|strong=\"H1367\"*)," + }, + { + "verseNum": 3, + "text": "then|strong=\"H1961\"* your|strong=\"H5921\"* south|strong=\"H5045\"* quarter|strong=\"H6285\"* shall|strong=\"H3027\"* be|strong=\"H1961\"* from|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"* of|strong=\"H3027\"* Zin|strong=\"H6790\"* along|strong=\"H5921\"* by|strong=\"H3027\"* the|strong=\"H5921\"* side|strong=\"H6285\"* of|strong=\"H3027\"* Edom, and|strong=\"H3027\"* your|strong=\"H5921\"* south|strong=\"H5045\"* border|strong=\"H1366\"* shall|strong=\"H3027\"* be|strong=\"H1961\"* from|strong=\"H5921\"* the|strong=\"H5921\"* end|strong=\"H7097\"* of|strong=\"H3027\"* the|strong=\"H5921\"* Salt|strong=\"H4417\"* Sea|strong=\"H3220\"* eastward|strong=\"H6924\"*." + }, + { + "verseNum": 4, + "text": "Your|strong=\"H1961\"* border|strong=\"H1366\"* shall|strong=\"H1366\"* turn|strong=\"H5437\"* about|strong=\"H5437\"* southward|strong=\"H5045\"* of|strong=\"H1366\"* the|strong=\"H5674\"* ascent|strong=\"H4610\"* of|strong=\"H1366\"* Akrabbim|strong=\"H4610\"*, and|strong=\"H3318\"* pass|strong=\"H5674\"* along|strong=\"H5674\"* to|strong=\"H3318\"* Zin|strong=\"H6790\"*; and|strong=\"H3318\"* it|strong=\"H1961\"* shall|strong=\"H1366\"* pass|strong=\"H5674\"* southward|strong=\"H5045\"* of|strong=\"H1366\"* Kadesh Barnea; and|strong=\"H3318\"* it|strong=\"H1961\"* shall|strong=\"H1366\"* go|strong=\"H3318\"* from|strong=\"H3318\"* there|strong=\"H1961\"* to|strong=\"H3318\"* Hazar Addar, and|strong=\"H3318\"* pass|strong=\"H5674\"* along|strong=\"H5674\"* to|strong=\"H3318\"* Azmon|strong=\"H6111\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5437\"* border|strong=\"H1366\"* shall|strong=\"H4714\"* turn|strong=\"H5437\"* about|strong=\"H5437\"* from|strong=\"H5437\"* Azmon|strong=\"H6111\"* to|strong=\"H1961\"* the|strong=\"H5437\"* brook|strong=\"H5158\"* of|strong=\"H1366\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* it|strong=\"H1961\"* shall|strong=\"H4714\"* end at|strong=\"H1961\"* the|strong=\"H5437\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 6, + "text": "“‘For|strong=\"H1961\"* the|strong=\"H1961\"* western|strong=\"H3220\"* border|strong=\"H1366\"*, you|strong=\"H2088\"* shall|strong=\"H1366\"* have|strong=\"H1961\"* the|strong=\"H1961\"* great|strong=\"H1419\"* sea|strong=\"H3220\"* and|strong=\"H1419\"* its|strong=\"H3220\"* border|strong=\"H1366\"*. This|strong=\"H2088\"* shall|strong=\"H1366\"* be|strong=\"H1961\"* your|strong=\"H1961\"* west|strong=\"H3220\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 7, + "text": "“‘This|strong=\"H2088\"* shall|strong=\"H1366\"* be|strong=\"H1961\"* your|strong=\"H4480\"* north|strong=\"H6828\"* border|strong=\"H1366\"*: from|strong=\"H4480\"* the|strong=\"H4480\"* great|strong=\"H1419\"* sea|strong=\"H3220\"* you|strong=\"H4480\"* shall|strong=\"H1366\"* mark out|strong=\"H4480\"* for|strong=\"H1961\"* yourselves Mount|strong=\"H2022\"* Hor|strong=\"H2023\"*." + }, + { + "verseNum": 8, + "text": "From|strong=\"H1961\"* Mount|strong=\"H2022\"* Hor|strong=\"H2023\"* you|strong=\"H2022\"* shall|strong=\"H1366\"* mark out|strong=\"H8444\"* to|strong=\"H1961\"* the|strong=\"H1961\"* entrance of|strong=\"H2022\"* Hamath|strong=\"H2574\"*; and|strong=\"H2022\"* the|strong=\"H1961\"* border|strong=\"H1366\"* shall|strong=\"H1366\"* pass|strong=\"H1961\"* by|strong=\"H1961\"* Zedad|strong=\"H6657\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H1961\"* the|strong=\"H3318\"* border|strong=\"H1366\"* shall|strong=\"H1366\"* go|strong=\"H3318\"* to|strong=\"H3318\"* Ziphron|strong=\"H2202\"*, and|strong=\"H3318\"* it|strong=\"H1961\"* shall|strong=\"H1366\"* end|strong=\"H3318\"* at|strong=\"H1961\"* Hazar Enan. This|strong=\"H2088\"* shall|strong=\"H1366\"* be|strong=\"H1961\"* your|strong=\"H1961\"* north|strong=\"H6828\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 10, + "text": "“‘You shall|strong=\"H1366\"* mark out|strong=\"H1366\"* your east|strong=\"H6924\"* border|strong=\"H1366\"* from|strong=\"H1366\"* Hazar Enan to|strong=\"H2704\"* Shepham|strong=\"H8221\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* border|strong=\"H1366\"* shall|strong=\"H1366\"* go|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H3381\"* Shepham|strong=\"H8221\"* to|strong=\"H3381\"* Riblah|strong=\"H7247\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6924\"* side|strong=\"H3802\"* of|strong=\"H1366\"* Ain|strong=\"H5871\"*. The|strong=\"H5921\"* border|strong=\"H1366\"* shall|strong=\"H1366\"* go|strong=\"H3381\"* down|strong=\"H3381\"*, and|strong=\"H3381\"* shall|strong=\"H1366\"* reach|strong=\"H4229\"* to|strong=\"H3381\"* the|strong=\"H5921\"* side|strong=\"H3802\"* of|strong=\"H1366\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* of|strong=\"H1366\"* Chinnereth|strong=\"H3672\"* eastward|strong=\"H6924\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5439\"* border|strong=\"H1366\"* shall|strong=\"H1366\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H5439\"* Jordan|strong=\"H3383\"*, and|strong=\"H3381\"* end at|strong=\"H1961\"* the|strong=\"H5439\"* Salt|strong=\"H4417\"* Sea|strong=\"H3220\"*. This|strong=\"H2063\"* shall|strong=\"H1366\"* be|strong=\"H1961\"* your|strong=\"H1961\"* land|strong=\"H1366\"* according to|strong=\"H3381\"* its|strong=\"H5439\"* borders|strong=\"H1366\"* around|strong=\"H5439\"* it|strong=\"H3381\"*.’”" + }, + { + "verseNum": 13, + "text": "Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying, “This|strong=\"H2063\"* is|strong=\"H3068\"* the|strong=\"H5414\"* land|strong=\"H1486\"* which|strong=\"H3068\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* inherit|strong=\"H5157\"* by|strong=\"H3068\"* lot|strong=\"H1486\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* to|strong=\"H3478\"* give|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H5414\"* nine|strong=\"H8672\"* tribes|strong=\"H4294\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* the|strong=\"H5414\"* half-tribe|strong=\"H2677\"*;" + }, + { + "verseNum": 14, + "text": "for|strong=\"H3588\"* the|strong=\"H3588\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7206\"* according to|strong=\"H1121\"* their|strong=\"H3947\"* fathers’ houses|strong=\"H1004\"*, the|strong=\"H3588\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1425\"* according to|strong=\"H1121\"* their|strong=\"H3947\"* fathers’ houses|strong=\"H1004\"*, and|strong=\"H1121\"* the|strong=\"H3588\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* have|strong=\"H1121\"* received|strong=\"H3947\"* their|strong=\"H3947\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3947\"* two|strong=\"H8147\"* tribes|strong=\"H4294\"* and|strong=\"H8147\"* the|strong=\"H3947\"* half-tribe|strong=\"H2677\"* have|strong=\"H4294\"* received|strong=\"H3947\"* their|strong=\"H3947\"* inheritance|strong=\"H5159\"* beyond|strong=\"H5676\"* the|strong=\"H3947\"* Jordan|strong=\"H3383\"* at|strong=\"H3383\"* Jericho|strong=\"H3405\"* eastward|strong=\"H6924\"*, toward|strong=\"H4294\"* the|strong=\"H3947\"* sunrise|strong=\"H4217\"*.”" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 17, + "text": "“These are|strong=\"H1121\"* the|strong=\"H3091\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H3091\"* men|strong=\"H1121\"* who|strong=\"H3548\"* shall|strong=\"H3548\"* divide|strong=\"H5157\"* the|strong=\"H3091\"* land to|strong=\"H1121\"* you for|strong=\"H8034\"* inheritance|strong=\"H5157\"*: Eleazar the|strong=\"H3091\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* Joshua|strong=\"H3091\"* the|strong=\"H3091\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H3947\"* shall|strong=\"H5387\"* take|strong=\"H3947\"* one prince|strong=\"H5387\"* of|strong=\"H4294\"* every|strong=\"H3947\"* tribe|strong=\"H4294\"*, to|strong=\"H4294\"* divide|strong=\"H5157\"* the|strong=\"H3947\"* land for|strong=\"H3947\"* inheritance|strong=\"H5157\"*." + }, + { + "verseNum": 19, + "text": "These are|strong=\"H1121\"* the|strong=\"H3612\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H3612\"* men|strong=\"H1121\"*: Of|strong=\"H1121\"* the|strong=\"H3612\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Caleb|strong=\"H3612\"* the|strong=\"H3612\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"*." + }, + { + "verseNum": 20, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*, Shemuel|strong=\"H8050\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammihud|strong=\"H5989\"*." + }, + { + "verseNum": 21, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, Elidad the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Chislon|strong=\"H3692\"*." + }, + { + "verseNum": 22, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* a|strong=\"H3068\"* prince|strong=\"H5387\"*, Bukki|strong=\"H1231\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jogli|strong=\"H3020\"*." + }, + { + "verseNum": 23, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*: of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* a|strong=\"H3068\"* prince|strong=\"H5387\"*, Hanniel|strong=\"H2592\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ephod." + }, + { + "verseNum": 24, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim a|strong=\"H3068\"* prince|strong=\"H5387\"*, Kemuel|strong=\"H7055\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shiphtan|strong=\"H8204\"*." + }, + { + "verseNum": 25, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"* a|strong=\"H3068\"* prince|strong=\"H5387\"*, Elizaphan the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Parnach|strong=\"H6535\"*." + }, + { + "verseNum": 26, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"* a|strong=\"H3068\"* prince|strong=\"H5387\"*, Paltiel|strong=\"H6409\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azzan|strong=\"H5821\"*." + }, + { + "verseNum": 27, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asher a|strong=\"H3068\"* prince|strong=\"H5387\"*, Ahihud the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shelomi|strong=\"H8015\"*." + }, + { + "verseNum": 28, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"* a|strong=\"H3068\"* prince|strong=\"H5387\"*, Pedahel|strong=\"H6300\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammihud|strong=\"H5989\"*.”" + }, + { + "verseNum": 29, + "text": "These are|strong=\"H1121\"* they|strong=\"H3068\"* whom Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* to|strong=\"H3478\"* divide|strong=\"H5157\"* the|strong=\"H3068\"* inheritance|strong=\"H5157\"* to|strong=\"H3478\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3068\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*." + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* in|strong=\"H5921\"* the|strong=\"H5921\"* plains|strong=\"H6160\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* at|strong=\"H5921\"* Jericho|strong=\"H3405\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Command|strong=\"H6680\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* give|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"* cities|strong=\"H5892\"* to|strong=\"H3478\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* out|strong=\"H5414\"* of|strong=\"H1121\"* their|strong=\"H5414\"* inheritance|strong=\"H5159\"*. You|strong=\"H5414\"* shall|strong=\"H1121\"* give|strong=\"H5414\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* for|strong=\"H3427\"* the|strong=\"H5414\"* cities|strong=\"H5892\"* around|strong=\"H5439\"* them|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H3605\"* shall|strong=\"H5892\"* have|strong=\"H1961\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* to|strong=\"H1961\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"*. Their|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* shall|strong=\"H5892\"* be|strong=\"H1961\"* for|strong=\"H3427\"* their|strong=\"H3605\"* livestock, and|strong=\"H5892\"* for|strong=\"H3427\"* their|strong=\"H3605\"* possessions|strong=\"H7399\"*, and|strong=\"H5892\"* for|strong=\"H3427\"* all|strong=\"H3605\"* their|strong=\"H3605\"* animals|strong=\"H2416\"*." + }, + { + "verseNum": 4, + "text": "“The|strong=\"H5414\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* of|strong=\"H5892\"* the|strong=\"H5414\"* cities|strong=\"H5892\"*, which|strong=\"H5892\"* you|strong=\"H5414\"* shall|strong=\"H5892\"* give|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"*, shall|strong=\"H5892\"* be|strong=\"H5414\"* from|strong=\"H3881\"* the|strong=\"H5414\"* wall|strong=\"H7023\"* of|strong=\"H5892\"* the|strong=\"H5414\"* city|strong=\"H5892\"* and|strong=\"H5892\"* outward|strong=\"H2351\"* one|strong=\"H5892\"* thousand cubits+ 35:4 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* around|strong=\"H5439\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H8432\"* shall|strong=\"H5892\"* measure|strong=\"H4058\"* outside|strong=\"H2351\"* of|strong=\"H5892\"* the|strong=\"H8432\"* city|strong=\"H5892\"* for|strong=\"H5892\"* the|strong=\"H8432\"* east|strong=\"H6924\"* side|strong=\"H6285\"* two|strong=\"H6285\"* thousand cubits, and|strong=\"H5892\"* for|strong=\"H5892\"* the|strong=\"H8432\"* south|strong=\"H5045\"* side|strong=\"H6285\"* two|strong=\"H6285\"* thousand cubits, and|strong=\"H5892\"* for|strong=\"H5892\"* the|strong=\"H8432\"* west|strong=\"H3220\"* side|strong=\"H6285\"* two|strong=\"H6285\"* thousand cubits, and|strong=\"H5892\"* for|strong=\"H5892\"* the|strong=\"H8432\"* north|strong=\"H6828\"* side|strong=\"H6285\"* two|strong=\"H6285\"* thousand cubits, the|strong=\"H8432\"* city|strong=\"H5892\"* being|strong=\"H1961\"* in|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"*. This|strong=\"H2088\"* shall|strong=\"H5892\"* be|strong=\"H1961\"* the|strong=\"H8432\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* of|strong=\"H5892\"* their|strong=\"H8432\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 6, + "text": "“The|strong=\"H5921\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* you|strong=\"H5414\"* shall|strong=\"H5892\"* give|strong=\"H5414\"* to|strong=\"H5921\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*, they|strong=\"H8033\"* shall|strong=\"H5892\"* be|strong=\"H5414\"* the|strong=\"H5921\"* six|strong=\"H8337\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* refuge|strong=\"H4733\"*, which|strong=\"H5892\"* you|strong=\"H5414\"* shall|strong=\"H5892\"* give|strong=\"H5414\"* for|strong=\"H5921\"* the|strong=\"H5921\"* man slayer|strong=\"H7523\"* to|strong=\"H5921\"* flee|strong=\"H5127\"* to|strong=\"H5921\"*. Besides|strong=\"H5921\"* them|strong=\"H5414\"* you|strong=\"H5414\"* shall|strong=\"H5892\"* give|strong=\"H5414\"* forty-two|strong=\"H8147\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 7, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* you|strong=\"H5414\"* shall|strong=\"H5892\"* give|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* shall|strong=\"H5892\"* be|strong=\"H5414\"* forty-eight|strong=\"H8083\"* cities|strong=\"H5892\"* together with|strong=\"H5892\"* their|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*." + }, + { + "verseNum": 8, + "text": "Concerning|strong=\"H3478\"* the|strong=\"H5414\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* you|strong=\"H5414\"* shall|strong=\"H1121\"* give|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H5414\"* possession|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, from|strong=\"H3478\"* the|strong=\"H5414\"* many|strong=\"H7227\"* you|strong=\"H5414\"* shall|strong=\"H1121\"* take|strong=\"H1121\"* many|strong=\"H7227\"*, and|strong=\"H1121\"* from|strong=\"H3478\"* the|strong=\"H5414\"* few|strong=\"H4592\"* you|strong=\"H5414\"* shall|strong=\"H1121\"* take|strong=\"H1121\"* few|strong=\"H4592\"*. Everyone according|strong=\"H6310\"* to|strong=\"H3478\"* his|strong=\"H5414\"* inheritance|strong=\"H5159\"* which|strong=\"H5892\"* he|strong=\"H5414\"* inherits|strong=\"H5157\"* shall|strong=\"H1121\"* give|strong=\"H5414\"* some|strong=\"H4592\"* of|strong=\"H1121\"* his|strong=\"H5414\"* cities|strong=\"H5892\"* to|strong=\"H3478\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"*.”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 10, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H5674\"*, ‘When|strong=\"H3588\"* you|strong=\"H3588\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"* into|strong=\"H5674\"* the|strong=\"H3588\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*," + }, + { + "verseNum": 11, + "text": "then|strong=\"H1961\"* you|strong=\"H5221\"* shall|strong=\"H5315\"* appoint|strong=\"H7136\"* for|strong=\"H5892\"* yourselves|strong=\"H5315\"* cities|strong=\"H5892\"* to|strong=\"H1961\"* be|strong=\"H1961\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* refuge|strong=\"H4733\"* for|strong=\"H5892\"* you|strong=\"H5221\"*, that|strong=\"H5315\"* the|strong=\"H5221\"* man|strong=\"H5315\"* slayer|strong=\"H7523\"* who|strong=\"H5315\"* kills|strong=\"H5221\"* any|strong=\"H5221\"* person|strong=\"H5315\"* unwittingly|strong=\"H7684\"* may|strong=\"H1961\"* flee|strong=\"H5127\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H6440\"* cities|strong=\"H5892\"* shall|strong=\"H5712\"* be|strong=\"H1961\"* for|strong=\"H5704\"* your|strong=\"H6440\"* refuge|strong=\"H4733\"* from|strong=\"H6440\"* the|strong=\"H6440\"* avenger|strong=\"H1350\"*, that|strong=\"H5892\"* the|strong=\"H6440\"* man|strong=\"H4191\"* slayer|strong=\"H7523\"* not|strong=\"H3808\"* die|strong=\"H4191\"* until|strong=\"H5704\"* he|strong=\"H5704\"* stands|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* congregation|strong=\"H5712\"* for|strong=\"H5704\"* judgment|strong=\"H4941\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5414\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* you|strong=\"H5414\"* shall|strong=\"H5892\"* give|strong=\"H5414\"* shall|strong=\"H5892\"* be|strong=\"H1961\"* for|strong=\"H5892\"* you|strong=\"H5414\"* six|strong=\"H8337\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* refuge|strong=\"H4733\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H5414\"* shall|strong=\"H5892\"* give|strong=\"H5414\"* three|strong=\"H7969\"* cities|strong=\"H5892\"* beyond|strong=\"H5676\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"*, and|strong=\"H5892\"* you|strong=\"H5414\"* shall|strong=\"H5892\"* give|strong=\"H5414\"* three|strong=\"H7969\"* cities|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H5414\"* land|strong=\"H5676\"* of|strong=\"H5892\"* Canaan|strong=\"H3667\"*. They|strong=\"H5414\"* shall|strong=\"H5892\"* be|strong=\"H1961\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* refuge|strong=\"H4733\"*." + }, + { + "verseNum": 15, + "text": "These|strong=\"H3605\"* six|strong=\"H8337\"* cities|strong=\"H5892\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* refuge|strong=\"H4733\"* for|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, for|strong=\"H1121\"* the|strong=\"H3605\"* stranger|strong=\"H1616\"*, and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H3605\"* foreigner|strong=\"H1121\"* living|strong=\"H5315\"* among|strong=\"H8432\"* them|strong=\"H5221\"*, that|strong=\"H3605\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* kills|strong=\"H5221\"* any|strong=\"H3605\"* person|strong=\"H5315\"* unwittingly|strong=\"H7684\"* may|strong=\"H1961\"* flee|strong=\"H5127\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 16, + "text": "“‘But|strong=\"H5221\"* if|strong=\"H1931\"* he|strong=\"H1931\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H3627\"* an|strong=\"H5221\"* instrument|strong=\"H3627\"* of|strong=\"H3627\"* iron|strong=\"H1270\"*, so|strong=\"H4191\"* that|strong=\"H1931\"* he|strong=\"H1931\"* died|strong=\"H4191\"*, he|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* murderer|strong=\"H7523\"*. The|strong=\"H5221\"* murderer|strong=\"H7523\"* shall|strong=\"H7523\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 17, + "text": "If|strong=\"H1931\"* he|strong=\"H1931\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H3027\"* a|strong=\"H3068\"* stone in|strong=\"H4191\"* the|strong=\"H5221\"* hand|strong=\"H3027\"*, by|strong=\"H3027\"* which|strong=\"H1931\"* a|strong=\"H3068\"* man|strong=\"H4191\"* may|strong=\"H7523\"* die|strong=\"H4191\"*, and|strong=\"H3027\"* he|strong=\"H1931\"* died|strong=\"H4191\"*, he|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* murderer|strong=\"H7523\"*. The|strong=\"H5221\"* murderer|strong=\"H7523\"* shall|strong=\"H3027\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 18, + "text": "Or|strong=\"H4191\"* if|strong=\"H1931\"* he|strong=\"H1931\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H3027\"* a|strong=\"H3068\"* weapon|strong=\"H3627\"* of|strong=\"H3027\"* wood|strong=\"H6086\"* in|strong=\"H4191\"* the|strong=\"H5221\"* hand|strong=\"H3027\"*, by|strong=\"H3027\"* which|strong=\"H1931\"* a|strong=\"H3068\"* man|strong=\"H4191\"* may|strong=\"H7523\"* die|strong=\"H4191\"*, and|strong=\"H3027\"* he|strong=\"H1931\"* died|strong=\"H4191\"*, he|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* murderer|strong=\"H7523\"*. The|strong=\"H5221\"* murderer|strong=\"H7523\"* shall|strong=\"H3027\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H4191\"* avenger|strong=\"H1350\"* of|strong=\"H1818\"* blood|strong=\"H1818\"* shall|strong=\"H7523\"* himself|strong=\"H1931\"* put|strong=\"H4191\"* the|strong=\"H4191\"* murderer|strong=\"H7523\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. When he|strong=\"H1931\"* meets|strong=\"H6293\"* him|strong=\"H4191\"*, he|strong=\"H1931\"* shall|strong=\"H7523\"* put|strong=\"H4191\"* him|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 20, + "text": "If he|strong=\"H5921\"* shoved him|strong=\"H5921\"* out|strong=\"H7993\"* of|strong=\"H5921\"* hatred|strong=\"H8135\"*, or|strong=\"H4191\"* hurled|strong=\"H7993\"* something at|strong=\"H5921\"* him|strong=\"H5921\"* while|strong=\"H5921\"* lying|strong=\"H7993\"* in|strong=\"H5921\"* wait|strong=\"H6660\"*, so|strong=\"H4191\"* that|strong=\"H5921\"* he|strong=\"H5921\"* died|strong=\"H4191\"*," + }, + { + "verseNum": 21, + "text": "or|strong=\"H4191\"* in|strong=\"H4191\"* hostility struck|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H3027\"* his|strong=\"H5221\"* hand|strong=\"H3027\"*, so|strong=\"H4191\"* that|strong=\"H1931\"* he|strong=\"H1931\"* died|strong=\"H4191\"*, he|strong=\"H1931\"* who|strong=\"H1931\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* shall|strong=\"H3027\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* murderer|strong=\"H7523\"*. The|strong=\"H5221\"* avenger|strong=\"H1350\"* of|strong=\"H3027\"* blood|strong=\"H1818\"* shall|strong=\"H3027\"* put|strong=\"H4191\"* the|strong=\"H5221\"* murderer|strong=\"H7523\"* to|strong=\"H4191\"* death|strong=\"H4191\"* when|strong=\"H3027\"* he|strong=\"H1931\"* meets|strong=\"H6293\"* him|strong=\"H5221\"*." + }, + { + "verseNum": 22, + "text": "“‘But|strong=\"H3808\"* if he|strong=\"H3605\"* shoved him|strong=\"H5921\"* suddenly|strong=\"H6621\"* without|strong=\"H3808\"* hostility, or|strong=\"H3808\"* hurled|strong=\"H7993\"* on|strong=\"H5921\"* him|strong=\"H5921\"* anything|strong=\"H3605\"* without|strong=\"H3808\"* lying|strong=\"H7993\"* in|strong=\"H5921\"* wait|strong=\"H6660\"*," + }, + { + "verseNum": 23, + "text": "or|strong=\"H3808\"* with|strong=\"H5921\"* any|strong=\"H3605\"* stone, by|strong=\"H5921\"* which|strong=\"H1931\"* a|strong=\"H3068\"* man|strong=\"H4191\"* may|strong=\"H1931\"* die|strong=\"H4191\"*, not|strong=\"H3808\"* seeing|strong=\"H7200\"* him|strong=\"H5921\"*, and|strong=\"H7200\"* cast|strong=\"H5307\"* it|strong=\"H1931\"* on|strong=\"H5921\"* him|strong=\"H5921\"* so|strong=\"H3808\"* that|strong=\"H7200\"* he|strong=\"H1931\"* died|strong=\"H4191\"*, and|strong=\"H7200\"* he|strong=\"H1931\"* was|strong=\"H1931\"* not|strong=\"H3808\"* his|strong=\"H3605\"* enemy and|strong=\"H7200\"* not|strong=\"H3808\"* seeking|strong=\"H1245\"* his|strong=\"H3605\"* harm|strong=\"H7451\"*," + }, + { + "verseNum": 24, + "text": "then|strong=\"H5221\"* the|strong=\"H5921\"* congregation|strong=\"H5712\"* shall|strong=\"H5712\"* judge|strong=\"H8199\"* between|strong=\"H8199\"* the|strong=\"H5921\"* striker and|strong=\"H4941\"* the|strong=\"H5921\"* avenger|strong=\"H1350\"* of|strong=\"H5921\"* blood|strong=\"H1818\"* according|strong=\"H5921\"* to|strong=\"H5921\"* these|strong=\"H5221\"* ordinances|strong=\"H4941\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H7725\"* congregation|strong=\"H5712\"* shall|strong=\"H3548\"* deliver|strong=\"H5337\"* the|strong=\"H7725\"* man|strong=\"H1419\"* slayer|strong=\"H7523\"* out|strong=\"H5337\"* of|strong=\"H3027\"* the|strong=\"H7725\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H7725\"* avenger|strong=\"H1350\"* of|strong=\"H3027\"* blood|strong=\"H1818\"*, and|strong=\"H7725\"* the|strong=\"H7725\"* congregation|strong=\"H5712\"* shall|strong=\"H3548\"* restore|strong=\"H7725\"* him|strong=\"H3027\"* to|strong=\"H5704\"* his|strong=\"H7725\"* city|strong=\"H5892\"* of|strong=\"H3027\"* refuge|strong=\"H4733\"*, where|strong=\"H8033\"* he|strong=\"H5704\"* had|strong=\"H3548\"* fled|strong=\"H5127\"*. He|strong=\"H5704\"* shall|strong=\"H3548\"* dwell|strong=\"H3427\"* therein|strong=\"H8033\"* until|strong=\"H5704\"* the|strong=\"H7725\"* death|strong=\"H4194\"* of|strong=\"H3027\"* the|strong=\"H7725\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*, who|strong=\"H3548\"* was|strong=\"H5892\"* anointed|strong=\"H4886\"* with|strong=\"H3427\"* the|strong=\"H7725\"* holy|strong=\"H6944\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 26, + "text": "“‘But|strong=\"H5127\"* if the|strong=\"H3318\"* man slayer|strong=\"H7523\"* shall|strong=\"H5892\"* at|strong=\"H3318\"* any|strong=\"H3318\"* time|strong=\"H3318\"* go|strong=\"H3318\"* beyond|strong=\"H3318\"* the|strong=\"H3318\"* border|strong=\"H1366\"* of|strong=\"H5892\"* his|strong=\"H3318\"* city|strong=\"H5892\"* of|strong=\"H5892\"* refuge|strong=\"H4733\"* where|strong=\"H8033\"* he|strong=\"H8033\"* flees|strong=\"H5127\"*," + }, + { + "verseNum": 27, + "text": "and|strong=\"H5892\"* the|strong=\"H2351\"* avenger|strong=\"H1350\"* of|strong=\"H5892\"* blood|strong=\"H1818\"* finds|strong=\"H4672\"* him|strong=\"H4672\"* outside|strong=\"H2351\"* of|strong=\"H5892\"* the|strong=\"H2351\"* border|strong=\"H1366\"* of|strong=\"H5892\"* his|strong=\"H4672\"* city|strong=\"H5892\"* of|strong=\"H5892\"* refuge|strong=\"H4733\"*, and|strong=\"H5892\"* the|strong=\"H2351\"* avenger|strong=\"H1350\"* of|strong=\"H5892\"* blood|strong=\"H1818\"* kills|strong=\"H7523\"* the|strong=\"H2351\"* man slayer|strong=\"H7523\"*, he|strong=\"H1818\"* shall|strong=\"H5892\"* not|strong=\"H5892\"* be|strong=\"H5892\"* guilty of|strong=\"H5892\"* blood|strong=\"H1818\"*," + }, + { + "verseNum": 28, + "text": "because|strong=\"H3588\"* he|strong=\"H3588\"* should|strong=\"H3588\"* have|strong=\"H3548\"* remained|strong=\"H3427\"* in|strong=\"H3427\"* his|strong=\"H7725\"* city|strong=\"H5892\"* of|strong=\"H3427\"* refuge|strong=\"H4733\"* until|strong=\"H5704\"* the|strong=\"H3588\"* death|strong=\"H4194\"* of|strong=\"H3427\"* the|strong=\"H3588\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*. But|strong=\"H3588\"* after|strong=\"H3588\"* the|strong=\"H3588\"* death|strong=\"H4194\"* of|strong=\"H3427\"* the|strong=\"H3588\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*, the|strong=\"H3588\"* man|strong=\"H1419\"* slayer|strong=\"H7523\"* shall|strong=\"H3548\"* return|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H3588\"* land of|strong=\"H3427\"* his|strong=\"H7725\"* possession." + }, + { + "verseNum": 29, + "text": "“‘These|strong=\"H3605\"* things|strong=\"H3605\"* shall|strong=\"H4941\"* be|strong=\"H1961\"* for|strong=\"H2708\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* and|strong=\"H4941\"* ordinance|strong=\"H4941\"* to|strong=\"H1961\"* you|strong=\"H3605\"* throughout|strong=\"H3605\"* your|strong=\"H3605\"* generations|strong=\"H1755\"* in|strong=\"H1755\"* all|strong=\"H3605\"* your|strong=\"H3605\"* dwellings|strong=\"H4186\"*." + }, + { + "verseNum": 30, + "text": "“‘Whoever|strong=\"H3605\"* kills|strong=\"H5221\"* any|strong=\"H3605\"* person|strong=\"H5315\"*, the|strong=\"H3605\"* murderer|strong=\"H7523\"* shall|strong=\"H5315\"* be|strong=\"H4191\"* slain|strong=\"H5221\"* based on|strong=\"H4191\"* the|strong=\"H3605\"* testimony|strong=\"H5707\"* of|strong=\"H6310\"* witnesses|strong=\"H5707\"*; but|strong=\"H3808\"* one|strong=\"H3605\"* witness|strong=\"H5707\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* testify|strong=\"H6030\"* alone against|strong=\"H3605\"* any|strong=\"H3605\"* person|strong=\"H5315\"* so|strong=\"H3808\"* that|strong=\"H3605\"* he|strong=\"H3605\"* dies|strong=\"H4191\"*." + }, + { + "verseNum": 31, + "text": "“‘Moreover|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H5315\"* take|strong=\"H3947\"* no|strong=\"H3808\"* ransom|strong=\"H3724\"* for|strong=\"H3588\"* the|strong=\"H3588\"* life|strong=\"H5315\"* of|strong=\"H5315\"* a|strong=\"H3068\"* murderer|strong=\"H7523\"* who|strong=\"H1931\"* is|strong=\"H1931\"* guilty|strong=\"H7563\"* of|strong=\"H5315\"* death|strong=\"H4191\"*. He|strong=\"H1931\"* shall|strong=\"H5315\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 32, + "text": "“‘You|strong=\"H5704\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* no|strong=\"H3808\"* ransom|strong=\"H3724\"* for|strong=\"H5704\"* him|strong=\"H7725\"* who|strong=\"H3548\"* has|strong=\"H3548\"* fled|strong=\"H5127\"* to|strong=\"H5704\"* his|strong=\"H3947\"* city|strong=\"H5892\"* of|strong=\"H3427\"* refuge|strong=\"H4733\"*, that|strong=\"H3548\"* he|strong=\"H5704\"* may|strong=\"H7725\"* come|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H5704\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3947\"* land before|strong=\"H5704\"* the|strong=\"H3947\"* death|strong=\"H4194\"* of|strong=\"H3427\"* the|strong=\"H3947\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 33, + "text": "“‘So|strong=\"H3808\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* pollute|strong=\"H2610\"* the|strong=\"H3588\"* land where|strong=\"H3808\"* you|strong=\"H3588\"* live; for|strong=\"H3588\"* blood|strong=\"H1818\"* pollutes|strong=\"H2610\"* the|strong=\"H3588\"* land. No|strong=\"H3808\"* atonement|strong=\"H3722\"* can|strong=\"H3808\"* be|strong=\"H3808\"* made|strong=\"H3722\"* for|strong=\"H3588\"* the|strong=\"H3588\"* land for|strong=\"H3588\"* the|strong=\"H3588\"* blood|strong=\"H1818\"* that|strong=\"H3588\"* is|strong=\"H1931\"* shed|strong=\"H8210\"* in|strong=\"H3808\"* it|strong=\"H1931\"*, but|strong=\"H3588\"* by|strong=\"H3808\"* the|strong=\"H3588\"* blood|strong=\"H1818\"* of|strong=\"H1818\"* him|strong=\"H1931\"* who|strong=\"H1931\"* shed|strong=\"H8210\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 34, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* defile|strong=\"H2930\"* the|strong=\"H3588\"* land which|strong=\"H3068\"* you|strong=\"H3588\"* inhabit|strong=\"H3427\"*, where|strong=\"H7931\"* I|strong=\"H3588\"* dwell|strong=\"H3427\"*; for|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, dwell|strong=\"H3427\"* among|strong=\"H8432\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.’”" + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H6440\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H6440\"* fathers’ households of|strong=\"H1121\"* the|strong=\"H6440\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"*, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, of|strong=\"H1121\"* the|strong=\"H6440\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*, came|strong=\"H7126\"* near|strong=\"H7126\"* and|strong=\"H1121\"* spoke|strong=\"H1696\"* before|strong=\"H6440\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* before|strong=\"H6440\"* the|strong=\"H6440\"* princes|strong=\"H5387\"*, the|strong=\"H6440\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H6440\"* fathers’ households of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H3068\"* said, “Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* my|strong=\"H5414\"* lord|strong=\"H3068\"* to|strong=\"H3478\"* give|strong=\"H5414\"* the|strong=\"H5414\"* land|strong=\"H5159\"* for|strong=\"H3068\"* inheritance|strong=\"H5159\"* by|strong=\"H3068\"* lot|strong=\"H1486\"* to|strong=\"H3478\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. My|strong=\"H5414\"* lord|strong=\"H3068\"* was|strong=\"H3068\"* commanded|strong=\"H6680\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"* to|strong=\"H3478\"* give|strong=\"H5414\"* the|strong=\"H5414\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* Zelophehad|strong=\"H6765\"* our|strong=\"H3068\"* brother to|strong=\"H3478\"* his|strong=\"H5414\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 3, + "text": "If|strong=\"H1961\"* they|strong=\"H5921\"* are|strong=\"H1121\"* married to|strong=\"H3478\"* any|strong=\"H1961\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* other tribes|strong=\"H7626\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, then|strong=\"H1961\"* their|strong=\"H5921\"* inheritance|strong=\"H5159\"* will|strong=\"H1961\"* be|strong=\"H1961\"* taken|strong=\"H1639\"* away|strong=\"H1639\"* from|strong=\"H5921\"* the|strong=\"H5921\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* our|strong=\"H5921\"* fathers, and|strong=\"H1121\"* will|strong=\"H1961\"* be|strong=\"H1961\"* added|strong=\"H3254\"* to|strong=\"H3478\"* the|strong=\"H5921\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* to|strong=\"H3478\"* which|strong=\"H3478\"* they|strong=\"H5921\"* shall|strong=\"H1121\"* belong|strong=\"H1961\"*. So|strong=\"H1961\"* it|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* taken|strong=\"H1639\"* away|strong=\"H1639\"* from|strong=\"H5921\"* the|strong=\"H5921\"* lot|strong=\"H1486\"* of|strong=\"H1121\"* our|strong=\"H5921\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"H1961\"* the|strong=\"H5921\"* jubilee|strong=\"H3104\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* comes|strong=\"H1961\"*, then|strong=\"H1961\"* their|strong=\"H5921\"* inheritance|strong=\"H5159\"* will|strong=\"H1961\"* be|strong=\"H1961\"* added|strong=\"H3254\"* to|strong=\"H3478\"* the|strong=\"H5921\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* to|strong=\"H3478\"* which|strong=\"H3478\"* they|strong=\"H5921\"* shall|strong=\"H1121\"* belong|strong=\"H1961\"*. So|strong=\"H1961\"* their|strong=\"H5921\"* inheritance|strong=\"H5159\"* will|strong=\"H1961\"* be|strong=\"H1961\"* taken|strong=\"H1639\"* away|strong=\"H1639\"* from|strong=\"H5921\"* the|strong=\"H5921\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* our|strong=\"H5921\"* fathers.”" + }, + { + "verseNum": 5, + "text": "Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* according|strong=\"H5921\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H6310\"*, saying|strong=\"H1696\"*, “The|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* speak|strong=\"H1696\"* what|strong=\"H6310\"* is|strong=\"H3068\"* right|strong=\"H3651\"*." + }, + { + "verseNum": 6, + "text": "This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3068\"* thing|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commands|strong=\"H6680\"* concerning|strong=\"H1697\"* the|strong=\"H3068\"* daughters|strong=\"H1323\"* of|strong=\"H3068\"* Zelophehad|strong=\"H6765\"*, saying|strong=\"H1697\"*, ‘Let|strong=\"H1961\"* them|strong=\"H6680\"* be|strong=\"H1961\"* married to|strong=\"H3068\"* whom|strong=\"H5869\"* they|strong=\"H3068\"* think|strong=\"H5869\"* best|strong=\"H2896\"*, only they|strong=\"H3068\"* shall|strong=\"H3068\"* marry|strong=\"H1961\"* into|strong=\"H1323\"* the|strong=\"H3068\"* family|strong=\"H4940\"* of|strong=\"H3068\"* the|strong=\"H3068\"* tribe|strong=\"H4294\"* of|strong=\"H3068\"* their|strong=\"H3068\"* father." + }, + { + "verseNum": 7, + "text": "So|strong=\"H3808\"* shall|strong=\"H1121\"* no|strong=\"H3808\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* move|strong=\"H5437\"* from|strong=\"H3478\"* tribe|strong=\"H4294\"* to|strong=\"H3478\"* tribe|strong=\"H4294\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H1121\"* all|strong=\"H5437\"* keep|strong=\"H1692\"* the|strong=\"H3588\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H3588\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* his|strong=\"H3478\"* fathers." + }, + { + "verseNum": 8, + "text": "Every|strong=\"H3605\"* daughter|strong=\"H1323\"* who|strong=\"H3605\"* possesses an|strong=\"H1961\"* inheritance|strong=\"H5159\"* in|strong=\"H3478\"* any|strong=\"H3605\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* wife to|strong=\"H3478\"* one|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3605\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* her|strong=\"H3605\"* father|strong=\"H1121\"*, that|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* may|strong=\"H1961\"* each|strong=\"H3605\"* possess|strong=\"H3423\"* the|strong=\"H3605\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* his|strong=\"H3605\"* fathers." + }, + { + "verseNum": 9, + "text": "So|strong=\"H3808\"* shall|strong=\"H1121\"* no|strong=\"H3808\"* inheritance|strong=\"H5159\"* move|strong=\"H5437\"* from|strong=\"H3478\"* one|strong=\"H3808\"* tribe|strong=\"H4294\"* to|strong=\"H3478\"* another|strong=\"H3808\"* tribe|strong=\"H4294\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* tribes|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H1121\"* each keep|strong=\"H1692\"* his|strong=\"H3478\"* own inheritance|strong=\"H5159\"*.’”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H6213\"* daughters|strong=\"H1323\"* of|strong=\"H3068\"* Zelophehad|strong=\"H6765\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*:" + }, + { + "verseNum": 11, + "text": "for|strong=\"H1121\"* Mahlah|strong=\"H4244\"*, Tirzah|strong=\"H8656\"*, Hoglah|strong=\"H2295\"*, Milcah|strong=\"H4435\"*, and|strong=\"H1121\"* Noah|strong=\"H5270\"*, the|strong=\"H1961\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* Zelophehad|strong=\"H6765\"*, were|strong=\"H1961\"* married to|strong=\"H1961\"* their|strong=\"H1961\"* father|strong=\"H1121\"*’s brothers|strong=\"H1121\"*’ sons|strong=\"H1121\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H5921\"* were|strong=\"H1961\"* married into|strong=\"H5921\"* the|strong=\"H5921\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*. Their|strong=\"H5921\"* inheritance|strong=\"H5159\"* remained|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5921\"* family|strong=\"H4940\"* of|strong=\"H1121\"* their|strong=\"H5921\"* father|strong=\"H1121\"*." + }, + { + "verseNum": 13, + "text": "These are|strong=\"H1121\"* the|strong=\"H5921\"* commandments|strong=\"H4687\"* and|strong=\"H1121\"* the|strong=\"H5921\"* ordinances|strong=\"H4941\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"* to|strong=\"H3478\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* the|strong=\"H5921\"* plains|strong=\"H6160\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"* by|strong=\"H3027\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* at|strong=\"H5921\"* Jericho|strong=\"H3405\"*." + } + ] + } + ] + }, + { + "name": "Deuteronomy", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "These|strong=\"H1696\"* are|strong=\"H3478\"* the|strong=\"H3605\"* words|strong=\"H1697\"* which|strong=\"H1697\"* Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* in|strong=\"H3478\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*, in|strong=\"H3478\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"* opposite|strong=\"H4136\"* Suf, between Paran|strong=\"H6290\"*, Tophel|strong=\"H8603\"*, Laban|strong=\"H3837\"*, Hazeroth|strong=\"H2698\"*, and|strong=\"H4872\"* Dizahab|strong=\"H1774\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H5704\"* is|strong=\"H3117\"* eleven|strong=\"H6240\"* days|strong=\"H3117\"*’ journey|strong=\"H1870\"* from|strong=\"H3117\"* Horeb|strong=\"H2722\"* by|strong=\"H3117\"* the|strong=\"H3117\"* way|strong=\"H1870\"* of|strong=\"H3117\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"* to|strong=\"H5704\"* Kadesh Barnea." + }, + { + "verseNum": 3, + "text": "In|strong=\"H8141\"* the|strong=\"H3605\"* fortieth year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* eleventh|strong=\"H6249\"* month|strong=\"H2320\"*, on|strong=\"H3068\"* the|strong=\"H3605\"* first|strong=\"H1121\"* day|strong=\"H2320\"* of|strong=\"H1121\"* the|strong=\"H3605\"* month|strong=\"H2320\"*, Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* according to|strong=\"H1696\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"*+ 1:3 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* had|strong=\"H3068\"* given|strong=\"H6680\"* him|strong=\"H6680\"* in|strong=\"H8141\"* commandment|strong=\"H6680\"* to|strong=\"H1696\"* them|strong=\"H6680\"*," + }, + { + "verseNum": 4, + "text": "after he|strong=\"H5221\"* had|strong=\"H4428\"* struck|strong=\"H5221\"* Sihon|strong=\"H5511\"* the|strong=\"H5221\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5221\"* Amorites who|strong=\"H3427\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Heshbon|strong=\"H2809\"*, and|strong=\"H4428\"* Og|strong=\"H5747\"* the|strong=\"H5221\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"* who|strong=\"H3427\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Ashtaroth|strong=\"H6252\"*, at|strong=\"H3427\"* Edrei." + }, + { + "verseNum": 5, + "text": "Beyond|strong=\"H5676\"* the|strong=\"H4872\"* Jordan|strong=\"H3383\"*, in|strong=\"H4872\"* the|strong=\"H4872\"* land|strong=\"H5676\"* of|strong=\"H8451\"* Moab|strong=\"H4124\"*, Moses|strong=\"H4872\"* began|strong=\"H2974\"* to|strong=\"H2974\"* declare this|strong=\"H2063\"* law|strong=\"H8451\"*, saying," + }, + { + "verseNum": 6, + "text": "“Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*+ 1:6 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* spoke|strong=\"H1696\"* to|strong=\"H1696\"* us in|strong=\"H3427\"* Horeb|strong=\"H2722\"*, saying|strong=\"H1696\"*, ‘You|strong=\"H1696\"* have|strong=\"H3068\"* lived|strong=\"H3427\"* long|strong=\"H7227\"* enough|strong=\"H7227\"* at|strong=\"H3427\"* this|strong=\"H2088\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 7, + "text": "Turn|strong=\"H6437\"*, and|strong=\"H1419\"* take|strong=\"H5265\"* your|strong=\"H3605\"* journey|strong=\"H5265\"*, and|strong=\"H1419\"* go|strong=\"H5265\"* to|strong=\"H5704\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* the|strong=\"H3605\"* Amorites and|strong=\"H1419\"* to|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* places|strong=\"H3605\"* near|strong=\"H5704\"* there|strong=\"H2022\"*: in|strong=\"H1419\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"*, in|strong=\"H1419\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, in|strong=\"H1419\"* the|strong=\"H3605\"* lowland|strong=\"H8219\"*, in|strong=\"H1419\"* the|strong=\"H3605\"* South|strong=\"H5045\"*, by|strong=\"H5704\"* the|strong=\"H3605\"* seashore|strong=\"H3220\"*, in|strong=\"H1419\"* the|strong=\"H3605\"* land of|strong=\"H2022\"* the|strong=\"H3605\"* Canaanites|strong=\"H3669\"*, and|strong=\"H1419\"* in|strong=\"H1419\"* Lebanon|strong=\"H3844\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* the|strong=\"H3605\"* great|strong=\"H1419\"* river|strong=\"H5104\"*, the|strong=\"H3605\"* river|strong=\"H5104\"* Euphrates|strong=\"H6578\"*." + }, + { + "verseNum": 8, + "text": "Behold|strong=\"H7200\"*,+ 1:8 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"H5414\"* have|strong=\"H3068\"* set|strong=\"H5414\"* the|strong=\"H6440\"* land|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H5414\"*. Go|strong=\"H3068\"* in|strong=\"H3068\"* and|strong=\"H3068\"* possess|strong=\"H3423\"* the|strong=\"H6440\"* land|strong=\"H6440\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers—to|strong=\"H3068\"* Abraham, to|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* Jacob|strong=\"H3290\"*—to|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* them|strong=\"H5414\"* and|strong=\"H3068\"* to|strong=\"H3068\"* their|strong=\"H3068\"* offspring|strong=\"H2233\"*+ 1:8 or, seed* after|strong=\"H2233\"* them|strong=\"H5414\"*.’”" + }, + { + "verseNum": 9, + "text": "I|strong=\"H3201\"* spoke to|strong=\"H3201\"* you|strong=\"H3808\"* at|strong=\"H3808\"* that|strong=\"H1931\"* time|strong=\"H6256\"*, saying, “I|strong=\"H3201\"* am not|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* bear|strong=\"H5375\"* you|strong=\"H3808\"* myself alone|strong=\"H1931\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* multiplied|strong=\"H7235\"* you|strong=\"H3117\"*, and|strong=\"H3068\"* behold|strong=\"H2009\"*, you|strong=\"H3117\"* are|strong=\"H3117\"* today|strong=\"H3117\"* as|strong=\"H3117\"* the|strong=\"H3068\"* stars|strong=\"H3556\"* of|strong=\"H3068\"* the|strong=\"H3068\"* sky|strong=\"H8064\"* for|strong=\"H3068\"* multitude|strong=\"H7230\"*." + }, + { + "verseNum": 11, + "text": "May|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers, make|strong=\"H3254\"* you|strong=\"H5921\"* a|strong=\"H3068\"* thousand times|strong=\"H6471\"* as|strong=\"H3068\"* many as|strong=\"H3068\"* you|strong=\"H5921\"* are|strong=\"H3068\"* and|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H5921\"*, as|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* promised|strong=\"H1696\"* you|strong=\"H5921\"*!" + }, + { + "verseNum": 12, + "text": "How can I myself alone bear|strong=\"H5375\"* your|strong=\"H5375\"* problems, your|strong=\"H5375\"* burdens|strong=\"H4853\"*, and|strong=\"H7379\"* your|strong=\"H5375\"* strife|strong=\"H7379\"*?" + }, + { + "verseNum": 13, + "text": "Take|strong=\"H7760\"* wise|strong=\"H2450\"* men|strong=\"H2450\"* of|strong=\"H7626\"* understanding who|strong=\"H3045\"* are|strong=\"H2450\"* respected among|strong=\"H7218\"* your|strong=\"H7760\"* tribes|strong=\"H7626\"*, and|strong=\"H7218\"* I|strong=\"H7760\"* will|strong=\"H2450\"* make|strong=\"H7760\"* them|strong=\"H7760\"* heads|strong=\"H7218\"* over|strong=\"H7218\"* you|strong=\"H3045\"*.”" + }, + { + "verseNum": 14, + "text": "You|strong=\"H6213\"* answered|strong=\"H6030\"* me|strong=\"H6213\"*, and|strong=\"H6030\"* said|strong=\"H1696\"*, “The|strong=\"H6213\"* thing|strong=\"H1697\"* which|strong=\"H1697\"* you|strong=\"H6213\"* have|strong=\"H1697\"* spoken|strong=\"H1696\"* is|strong=\"H1697\"* good|strong=\"H2896\"* to|strong=\"H1696\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 15, + "text": "So|strong=\"H3947\"* I|strong=\"H5414\"* took|strong=\"H3947\"* the|strong=\"H5921\"* heads|strong=\"H7218\"* of|strong=\"H8269\"* your|strong=\"H5414\"* tribes|strong=\"H7626\"*, wise|strong=\"H2450\"* and|strong=\"H3967\"* respected men|strong=\"H2450\"*, and|strong=\"H3967\"* made|strong=\"H5414\"* them|strong=\"H5414\"* heads|strong=\"H7218\"* over|strong=\"H5921\"* you|strong=\"H5414\"*, captains|strong=\"H8269\"* of|strong=\"H8269\"* thousands, captains|strong=\"H8269\"* of|strong=\"H8269\"* hundreds|strong=\"H3967\"*, captains|strong=\"H8269\"* of|strong=\"H8269\"* fifties|strong=\"H2572\"*, captains|strong=\"H8269\"* of|strong=\"H8269\"* tens|strong=\"H6235\"*, and|strong=\"H3967\"* officers|strong=\"H7860\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* your|strong=\"H5414\"* tribes|strong=\"H7626\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"H6680\"* commanded|strong=\"H6680\"* your|strong=\"H8085\"* judges|strong=\"H8199\"* at|strong=\"H6680\"* that|strong=\"H8085\"* time|strong=\"H6256\"*, saying, “Hear|strong=\"H8085\"* cases between|strong=\"H8199\"* your|strong=\"H8085\"* brothers and|strong=\"H8085\"* judge|strong=\"H8199\"* righteously|strong=\"H6664\"* between|strong=\"H8199\"* a|strong=\"H3068\"* man and|strong=\"H8085\"* his|strong=\"H8085\"* brother, and|strong=\"H8085\"* the|strong=\"H8085\"* foreigner|strong=\"H1616\"* who|strong=\"H1931\"* is|strong=\"H1931\"* living with|strong=\"H8085\"* him|strong=\"H6680\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* show|strong=\"H5234\"* partiality|strong=\"H5234\"* in|strong=\"H8085\"* judgment|strong=\"H4941\"*; you|strong=\"H3588\"* shall|strong=\"H3808\"* hear|strong=\"H8085\"* the|strong=\"H6440\"* small|strong=\"H6996\"* and|strong=\"H1419\"* the|strong=\"H6440\"* great|strong=\"H1419\"* alike|strong=\"H6440\"*. You|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* afraid|strong=\"H1481\"* of|strong=\"H1697\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H1697\"* man|strong=\"H1419\"*, for|strong=\"H3588\"* the|strong=\"H6440\"* judgment|strong=\"H4941\"* is|strong=\"H1931\"* God|strong=\"H3808\"*’s. The|strong=\"H6440\"* case|strong=\"H1697\"* that|strong=\"H3588\"* is|strong=\"H1931\"* too|strong=\"H4480\"* hard|strong=\"H7185\"* for|strong=\"H3588\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* shall|strong=\"H3808\"* bring|strong=\"H7126\"* to|strong=\"H6440\"* me|strong=\"H6440\"*, and|strong=\"H1419\"* I|strong=\"H3588\"* will|strong=\"H1697\"* hear|strong=\"H8085\"* it|strong=\"H1931\"*.”" + }, + { + "verseNum": 18, + "text": "I|strong=\"H1697\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"* at|strong=\"H6213\"* that|strong=\"H3605\"* time|strong=\"H6256\"* all|strong=\"H3605\"* the|strong=\"H3605\"* things|strong=\"H1697\"* which|strong=\"H1931\"* you|strong=\"H6680\"* should|strong=\"H6213\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 19, + "text": "We|strong=\"H5704\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Horeb|strong=\"H2722\"* and|strong=\"H3068\"* went|strong=\"H3212\"* through|strong=\"H3212\"* all|strong=\"H3605\"* that|strong=\"H7200\"* great|strong=\"H1419\"* and|strong=\"H3068\"* terrible|strong=\"H3372\"* wilderness|strong=\"H4057\"* which|strong=\"H1931\"* you|strong=\"H6680\"* saw|strong=\"H7200\"*, by|strong=\"H3068\"* the|strong=\"H3605\"* way|strong=\"H1870\"* to|strong=\"H5704\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Amorites, as|strong=\"H5704\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* us|strong=\"H7200\"*; and|strong=\"H3068\"* we|strong=\"H3068\"* came|strong=\"H3068\"* to|strong=\"H5704\"* Kadesh Barnea." + }, + { + "verseNum": 20, + "text": "I|strong=\"H5414\"* said to|strong=\"H5704\"* you|strong=\"H5414\"*, “You|strong=\"H5414\"* have|strong=\"H3068\"* come to|strong=\"H5704\"* the|strong=\"H5414\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H3068\"* the|strong=\"H5414\"* Amorites, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* to|strong=\"H5704\"* us|strong=\"H5414\"*." + }, + { + "verseNum": 21, + "text": "Behold|strong=\"H7200\"*, Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* set|strong=\"H5414\"* the|strong=\"H6440\"* land|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H5414\"*. Go|strong=\"H5927\"* up|strong=\"H5927\"*, take|strong=\"H3423\"* possession|strong=\"H3423\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers has|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5414\"*. Don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"*, neither be|strong=\"H3068\"* dismayed|strong=\"H2865\"*.”" + }, + { + "verseNum": 22, + "text": "You|strong=\"H6440\"* came|strong=\"H5927\"* near|strong=\"H7126\"* to|strong=\"H7725\"* me|strong=\"H6440\"*, everyone|strong=\"H3605\"* of|strong=\"H1697\"* you|strong=\"H6440\"*, and|strong=\"H7971\"* said|strong=\"H1697\"*, “Let|strong=\"H7971\"*’s send|strong=\"H7971\"* men|strong=\"H3605\"* before|strong=\"H6440\"* us|strong=\"H7725\"*, that|strong=\"H3605\"* they|strong=\"H1697\"* may|strong=\"H7725\"* search|strong=\"H2658\"* the|strong=\"H3605\"* land|strong=\"H6440\"* for|strong=\"H6440\"* us|strong=\"H7725\"*, and|strong=\"H7971\"* bring|strong=\"H7725\"* back|strong=\"H7725\"* to|strong=\"H7725\"* us|strong=\"H7725\"* word|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H3605\"* way|strong=\"H1870\"* by|strong=\"H1870\"* which|strong=\"H1697\"* we|strong=\"H3068\"* must go|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H7971\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* to|strong=\"H7725\"* which|strong=\"H1697\"* we|strong=\"H3068\"* shall|strong=\"H5892\"* come|strong=\"H5927\"*.”" + }, + { + "verseNum": 23, + "text": "The|strong=\"H3947\"* thing|strong=\"H1697\"* pleased|strong=\"H3190\"* me|strong=\"H4480\"* well|strong=\"H3190\"*. I|strong=\"H1697\"* took|strong=\"H3947\"* twelve|strong=\"H8147\"* of|strong=\"H1697\"* your|strong=\"H3947\"* men|strong=\"H8147\"*, one|strong=\"H4480\"* man for|strong=\"H5869\"* every|strong=\"H3947\"* tribe|strong=\"H7626\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H5704\"* turned|strong=\"H6437\"* and|strong=\"H6437\"* went|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H5704\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, and|strong=\"H6437\"* came|strong=\"H5927\"* to|strong=\"H5704\"* the|strong=\"H5704\"* valley|strong=\"H5158\"* of|strong=\"H2022\"* Eshcol, and|strong=\"H6437\"* spied|strong=\"H7270\"* it|strong=\"H5927\"* out|strong=\"H7270\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"H3068\"* took|strong=\"H3947\"* some|strong=\"H1697\"* of|strong=\"H3068\"* the|strong=\"H5414\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* the|strong=\"H5414\"* land in|strong=\"H3068\"* their|strong=\"H3068\"* hands|strong=\"H3027\"* and|strong=\"H3068\"* brought|strong=\"H7725\"* it|strong=\"H5414\"* down|strong=\"H3381\"* to|strong=\"H7725\"* us|strong=\"H5414\"*, and|strong=\"H3068\"* brought|strong=\"H7725\"* us|strong=\"H5414\"* word|strong=\"H1697\"* again|strong=\"H7725\"*, and|strong=\"H3068\"* said|strong=\"H1697\"*, “It|strong=\"H5414\"* is|strong=\"H3068\"* a|strong=\"H3068\"* good|strong=\"H2896\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* to|strong=\"H7725\"* us|strong=\"H5414\"*.”" + }, + { + "verseNum": 26, + "text": "Yet|strong=\"H3068\"* you|strong=\"H3808\"* wouldn’t go|strong=\"H5927\"* up|strong=\"H5927\"*, but|strong=\"H3808\"* rebelled|strong=\"H4784\"* against|strong=\"H5927\"* the|strong=\"H3068\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 27, + "text": "You|strong=\"H5414\"* murmured|strong=\"H7279\"* in|strong=\"H3068\"* your|strong=\"H3068\"* tents, and|strong=\"H3068\"* said|strong=\"H3318\"*, “Because|strong=\"H3027\"* Yahweh|strong=\"H3068\"* hated|strong=\"H8135\"* us|strong=\"H5414\"*, he|strong=\"H3068\"* has|strong=\"H3068\"* brought|strong=\"H3318\"* us|strong=\"H5414\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H5414\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, to|strong=\"H3318\"* deliver|strong=\"H5414\"* us|strong=\"H5414\"* into|strong=\"H3318\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H5414\"* Amorites to|strong=\"H3318\"* destroy|strong=\"H8045\"* us|strong=\"H5414\"*." + }, + { + "verseNum": 28, + "text": "Where|strong=\"H8033\"* are|strong=\"H5971\"* we|strong=\"H3068\"* going|strong=\"H5927\"* up|strong=\"H5927\"*? Our|strong=\"H7200\"* brothers|strong=\"H1121\"* have|strong=\"H5971\"* made|strong=\"H7311\"* our|strong=\"H7200\"* heart|strong=\"H3824\"* melt|strong=\"H4549\"*, saying, ‘The|strong=\"H7200\"* people|strong=\"H5971\"* are|strong=\"H5971\"* greater|strong=\"H1419\"* and|strong=\"H1121\"* taller|strong=\"H7311\"* than|strong=\"H4480\"* we|strong=\"H3068\"*. The|strong=\"H7200\"* cities|strong=\"H5892\"* are|strong=\"H5971\"* great|strong=\"H1419\"* and|strong=\"H1121\"* fortified|strong=\"H1219\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H7200\"* sky|strong=\"H8064\"*. Moreover|strong=\"H1571\"* we|strong=\"H3068\"* have|strong=\"H5971\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H7200\"* Anakim|strong=\"H6062\"* there|strong=\"H8033\"*!’”" + }, + { + "verseNum": 29, + "text": "Then|strong=\"H3372\"* I|strong=\"H3808\"* said to|strong=\"H3372\"* you|strong=\"H3808\"*, “Don’t be|strong=\"H3808\"* terrified|strong=\"H6206\"*. Don’t be|strong=\"H3808\"* afraid|strong=\"H3372\"* of|strong=\"H3372\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 30, + "text": "Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3605\"* goes|strong=\"H1980\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, he|strong=\"H1931\"* will|strong=\"H3068\"* fight|strong=\"H3898\"* for|strong=\"H6213\"* you|strong=\"H6440\"*, according to|strong=\"H1980\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H1931\"* did|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H6440\"* in|strong=\"H1980\"* Egypt|strong=\"H4714\"* before|strong=\"H6440\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 31, + "text": "and|strong=\"H1121\"* in|strong=\"H1980\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* where|strong=\"H4725\"* you|strong=\"H3605\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* how|strong=\"H5704\"* that|strong=\"H7200\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* carried|strong=\"H5375\"* you|strong=\"H3605\"*, as|strong=\"H5704\"* a|strong=\"H3068\"* man|strong=\"H1121\"* carries|strong=\"H5375\"* his|strong=\"H3605\"* son|strong=\"H1121\"*, in|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* way|strong=\"H1870\"* that|strong=\"H7200\"* you|strong=\"H3605\"* went|strong=\"H1980\"*, until|strong=\"H5704\"* you|strong=\"H3605\"* came|strong=\"H1980\"* to|strong=\"H5704\"* this|strong=\"H2088\"* place|strong=\"H4725\"*.”" + }, + { + "verseNum": 32, + "text": "Yet|strong=\"H3068\"* in|strong=\"H3068\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* you|strong=\"H2088\"* didn’t believe Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 33, + "text": "who|strong=\"H1980\"* went|strong=\"H1980\"* before|strong=\"H6440\"* you|strong=\"H6440\"* on|strong=\"H1980\"* the|strong=\"H6440\"* way|strong=\"H1870\"*, to|strong=\"H1980\"* seek|strong=\"H8446\"* out|strong=\"H8446\"* a|strong=\"H3068\"* place|strong=\"H4725\"* for|strong=\"H6440\"* you|strong=\"H6440\"* to|strong=\"H1980\"* pitch|strong=\"H2583\"* your|strong=\"H6440\"* tents|strong=\"H2583\"* in|strong=\"H2583\"*: in|strong=\"H2583\"* fire by|strong=\"H1870\"* night|strong=\"H3915\"*, to|strong=\"H1980\"* show|strong=\"H7200\"* you|strong=\"H6440\"* by|strong=\"H1870\"* what|strong=\"H7200\"* way|strong=\"H1870\"* you|strong=\"H6440\"* should|strong=\"H1980\"* go|strong=\"H1980\"*, and|strong=\"H1980\"* in|strong=\"H2583\"* the|strong=\"H6440\"* cloud|strong=\"H6051\"* by|strong=\"H1870\"* day|strong=\"H3119\"*." + }, + { + "verseNum": 34, + "text": "Yahweh|strong=\"H3068\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* your|strong=\"H3068\"* words|strong=\"H1697\"* and|strong=\"H3068\"* was|strong=\"H3068\"* angry|strong=\"H7107\"*, and|strong=\"H3068\"* swore|strong=\"H7650\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 35, + "text": "“Surely|strong=\"H5414\"* not|strong=\"H5414\"* one|strong=\"H2088\"* of|strong=\"H7451\"* these|strong=\"H2088\"* men|strong=\"H7451\"* of|strong=\"H7451\"* this|strong=\"H2088\"* evil|strong=\"H7451\"* generation|strong=\"H1755\"* shall|strong=\"H7451\"* see|strong=\"H7200\"* the|strong=\"H7200\"* good|strong=\"H2896\"* land which|strong=\"H7451\"* I|strong=\"H5414\"* swore|strong=\"H7650\"* to|strong=\"H5414\"* give|strong=\"H5414\"* to|strong=\"H5414\"* your|strong=\"H5414\"* fathers," + }, + { + "verseNum": 36, + "text": "except|strong=\"H2108\"* Caleb|strong=\"H3612\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"*. He|strong=\"H1931\"* shall|strong=\"H3068\"* see|strong=\"H7200\"* it|strong=\"H5414\"*. I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* the|strong=\"H7200\"* land that|strong=\"H7200\"* he|strong=\"H1931\"* has|strong=\"H3068\"* trodden|strong=\"H1869\"* on|strong=\"H7200\"* to|strong=\"H3068\"* him|strong=\"H5414\"* and|strong=\"H1121\"* to|strong=\"H3068\"* his|strong=\"H5414\"* children|strong=\"H1121\"*, because|strong=\"H3282\"* he|strong=\"H1931\"* has|strong=\"H3068\"* wholly|strong=\"H4390\"* followed Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 37, + "text": "Also|strong=\"H1571\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* angry with|strong=\"H3068\"* me|strong=\"H3808\"* for|strong=\"H3068\"* your|strong=\"H3068\"* sakes|strong=\"H1558\"*, saying, “You|strong=\"H3808\"* also|strong=\"H1571\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3068\"* in|strong=\"H3068\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 38, + "text": "Joshua|strong=\"H3091\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, who|strong=\"H1931\"* stands|strong=\"H5975\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, shall|strong=\"H1121\"* go|strong=\"H3478\"* in|strong=\"H3478\"* there|strong=\"H8033\"*. Encourage|strong=\"H2388\"* him|strong=\"H6440\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* shall|strong=\"H1121\"* cause Israel|strong=\"H3478\"* to|strong=\"H3478\"* inherit|strong=\"H5157\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 39, + "text": "Moreover|strong=\"H1961\"* your|strong=\"H5414\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, whom|strong=\"H1992\"* you|strong=\"H5414\"* said would|strong=\"H7451\"* be|strong=\"H1961\"* captured or|strong=\"H3808\"* killed, your|strong=\"H5414\"* children|strong=\"H1121\"*, who|strong=\"H1121\"* today|strong=\"H3117\"* have|strong=\"H1961\"* no|strong=\"H3808\"* knowledge|strong=\"H3045\"* of|strong=\"H1121\"* good|strong=\"H2896\"* or|strong=\"H3808\"* evil|strong=\"H7451\"*, shall|strong=\"H1121\"* go|strong=\"H1961\"* in|strong=\"H3117\"* there|strong=\"H8033\"*. I|strong=\"H3117\"* will|strong=\"H1961\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H1961\"* them|strong=\"H5414\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* shall|strong=\"H1121\"* possess|strong=\"H3423\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 40, + "text": "But|strong=\"H6437\"* as|strong=\"H4057\"* for|strong=\"H6437\"* you|strong=\"H1870\"*, turn|strong=\"H6437\"*, and|strong=\"H1870\"* take|strong=\"H5265\"* your|strong=\"H5265\"* journey|strong=\"H1870\"* into|strong=\"H3220\"* the|strong=\"H1870\"* wilderness|strong=\"H4057\"* by|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* to|strong=\"H1870\"* the|strong=\"H1870\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*.”" + }, + { + "verseNum": 41, + "text": "Then|strong=\"H6030\"* you|strong=\"H6680\"* answered|strong=\"H6030\"* and|strong=\"H3068\"* said|strong=\"H6030\"* to|strong=\"H3068\"* me|strong=\"H6030\"*, “We|strong=\"H3605\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H3898\"* Yahweh|strong=\"H3068\"*. We|strong=\"H3605\"* will|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H3068\"* fight|strong=\"H3898\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* us|strong=\"H3898\"*.” Every|strong=\"H3605\"* man|strong=\"H3605\"* of|strong=\"H3068\"* you|strong=\"H6680\"* put|strong=\"H5927\"* on|strong=\"H2296\"* his|strong=\"H3605\"* weapons|strong=\"H3627\"* of|strong=\"H3068\"* war|strong=\"H4421\"*, and|strong=\"H3068\"* presumed to|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*." + }, + { + "verseNum": 42, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H6440\"*, “Tell them|strong=\"H6440\"*, ‘Don’t go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H3068\"* don’t fight|strong=\"H3898\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* not|strong=\"H3808\"* among|strong=\"H7130\"* you|strong=\"H3588\"*, lest you|strong=\"H3588\"* be|strong=\"H3808\"* struck|strong=\"H5062\"* before|strong=\"H6440\"* your|strong=\"H3068\"* enemies.’”" + }, + { + "verseNum": 43, + "text": "So|strong=\"H5927\"* I|strong=\"H3808\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3808\"*, and|strong=\"H3068\"* you|strong=\"H3808\"* didn’t listen|strong=\"H8085\"*; but|strong=\"H3808\"* you|strong=\"H3808\"* rebelled|strong=\"H4784\"* against|strong=\"H5927\"* the|strong=\"H8085\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* were|strong=\"H2022\"* presumptuous, and|strong=\"H3068\"* went|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H8085\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*." + }, + { + "verseNum": 44, + "text": "The|strong=\"H6213\"* Amorites, who|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* that|strong=\"H1931\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, came|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H7125\"* you|strong=\"H5704\"* and|strong=\"H2022\"* chased|strong=\"H7291\"* you|strong=\"H5704\"* as|strong=\"H5704\"* bees|strong=\"H1682\"* do|strong=\"H6213\"*, and|strong=\"H2022\"* beat|strong=\"H3807\"* you|strong=\"H5704\"* down|strong=\"H3427\"* in|strong=\"H3427\"* Seir|strong=\"H8165\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* Hormah|strong=\"H2767\"*." + }, + { + "verseNum": 45, + "text": "You|strong=\"H6440\"* returned|strong=\"H7725\"* and|strong=\"H3068\"* wept|strong=\"H1058\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, but|strong=\"H3808\"* Yahweh|strong=\"H3068\"* didn’t listen|strong=\"H8085\"* to|strong=\"H7725\"* your|strong=\"H3068\"* voice|strong=\"H6963\"*, nor|strong=\"H3808\"* turn|strong=\"H7725\"* his|strong=\"H3068\"* ear|strong=\"H8085\"* to|strong=\"H7725\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 46, + "text": "So|strong=\"H3427\"* you|strong=\"H3117\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* Kadesh|strong=\"H6946\"* many|strong=\"H7227\"* days|strong=\"H3117\"*, according to|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* that|strong=\"H3117\"* you|strong=\"H3117\"* remained|strong=\"H3427\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H1696\"* we|strong=\"H3068\"* turned|strong=\"H6437\"*, and|strong=\"H3068\"* took|strong=\"H5265\"* our|strong=\"H3068\"* journey|strong=\"H1870\"* into|strong=\"H3220\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"* by|strong=\"H3117\"* the|strong=\"H3068\"* way|strong=\"H1870\"* to|strong=\"H1696\"* the|strong=\"H3068\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*, as|strong=\"H3117\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5437\"*; and|strong=\"H3068\"* we|strong=\"H3068\"* encircled|strong=\"H5437\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"* many|strong=\"H7227\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* me, saying," + }, + { + "verseNum": 3, + "text": "“You|strong=\"H2022\"* have|strong=\"H6437\"* encircled|strong=\"H5437\"* this|strong=\"H2088\"* mountain|strong=\"H2022\"* long|strong=\"H7227\"* enough|strong=\"H7227\"*. Turn|strong=\"H6437\"* northward|strong=\"H6828\"*." + }, + { + "verseNum": 4, + "text": "Command|strong=\"H6680\"* the|strong=\"H8104\"* people|strong=\"H5971\"*, saying, ‘You|strong=\"H6680\"* are|strong=\"H5971\"* to|strong=\"H8104\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H8104\"* border|strong=\"H1366\"* of|strong=\"H1121\"* your|strong=\"H8104\"* brothers|strong=\"H1121\"*, the|strong=\"H8104\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"*, who|strong=\"H5971\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Seir|strong=\"H8165\"*; and|strong=\"H1121\"* they|strong=\"H5971\"* will|strong=\"H5971\"* be|strong=\"H1121\"* afraid|strong=\"H3372\"* of|strong=\"H1121\"* you|strong=\"H6680\"*. Therefore|strong=\"H5971\"* be|strong=\"H1121\"* careful|strong=\"H8104\"*." + }, + { + "verseNum": 5, + "text": "Don’t contend|strong=\"H1624\"* with|strong=\"H2022\"* them|strong=\"H5414\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5414\"* not|strong=\"H3808\"* give|strong=\"H5414\"* you|strong=\"H3588\"* any|strong=\"H5414\"* of|strong=\"H2022\"* their|strong=\"H5414\"* land, no|strong=\"H3808\"*, not|strong=\"H3808\"* so|strong=\"H5414\"* much as|strong=\"H5704\"* for|strong=\"H3588\"* the|strong=\"H3588\"* sole|strong=\"H3709\"* of|strong=\"H2022\"* the|strong=\"H3588\"* foot|strong=\"H7272\"* to|strong=\"H5704\"* tread on|strong=\"H2022\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5414\"* given|strong=\"H5414\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"* to|strong=\"H5704\"* Esau|strong=\"H6215\"* for|strong=\"H3588\"* a|strong=\"H3068\"* possession|strong=\"H3425\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H1571\"* shall|strong=\"H4325\"* purchase|strong=\"H3701\"* food from|strong=\"H1571\"* them for|strong=\"H4325\"* money|strong=\"H3701\"*, that|strong=\"H4325\"* you|strong=\"H1571\"* may|strong=\"H1571\"* eat. You|strong=\"H1571\"* shall|strong=\"H4325\"* also|strong=\"H1571\"* buy|strong=\"H7666\"* water|strong=\"H4325\"* from|strong=\"H1571\"* them for|strong=\"H4325\"* money|strong=\"H3701\"*, that|strong=\"H4325\"* you|strong=\"H1571\"* may|strong=\"H1571\"* drink|strong=\"H8354\"*.’”" + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* blessed|strong=\"H1288\"* you|strong=\"H3588\"* in|strong=\"H8141\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hands|strong=\"H3027\"*. He|strong=\"H3588\"* has|strong=\"H3068\"* known|strong=\"H3045\"* your|strong=\"H3068\"* walking|strong=\"H3212\"* through|strong=\"H3027\"* this|strong=\"H2088\"* great|strong=\"H1419\"* wilderness|strong=\"H4057\"*. These|strong=\"H2088\"* forty years|strong=\"H8141\"*, Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* been|strong=\"H3808\"* with|strong=\"H5973\"* you|strong=\"H3588\"*. You|strong=\"H3588\"* have|strong=\"H3068\"* lacked|strong=\"H2637\"* nothing|strong=\"H3808\"*." + }, + { + "verseNum": 8, + "text": "So|strong=\"H5674\"* we|strong=\"H3068\"* passed|strong=\"H5674\"* by|strong=\"H5674\"* from|strong=\"H1121\"* our|strong=\"H5674\"* brothers|strong=\"H1121\"*, the|strong=\"H5674\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"*, who|strong=\"H1121\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Seir|strong=\"H8165\"*, from|strong=\"H1121\"* the|strong=\"H5674\"* way|strong=\"H1870\"* of|strong=\"H1121\"* the|strong=\"H5674\"* Arabah|strong=\"H6160\"* from|strong=\"H1121\"* Elath and|strong=\"H1121\"* from|strong=\"H1121\"* Ezion Geber. We turned|strong=\"H6437\"* and|strong=\"H1121\"* passed|strong=\"H5674\"* by|strong=\"H5674\"* the|strong=\"H5674\"* way|strong=\"H1870\"* of|strong=\"H1121\"* the|strong=\"H5674\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H5414\"*, “Don’t bother Moab|strong=\"H4124\"*, neither|strong=\"H3808\"* contend|strong=\"H1624\"* with|strong=\"H3068\"* them|strong=\"H5414\"* in|strong=\"H3068\"* battle|strong=\"H4421\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* give|strong=\"H5414\"* you|strong=\"H3588\"* any|strong=\"H5414\"* of|strong=\"H1121\"* his|strong=\"H5414\"* land for|strong=\"H3588\"* a|strong=\"H3068\"* possession|strong=\"H3425\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* given|strong=\"H5414\"* Ar|strong=\"H6144\"* to|strong=\"H3068\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Lot|strong=\"H3876\"* for|strong=\"H3588\"* a|strong=\"H3068\"* possession|strong=\"H3425\"*.”" + }, + { + "verseNum": 10, + "text": "(The|strong=\"H6440\"* Emim lived|strong=\"H3427\"* there|strong=\"H3427\"* before|strong=\"H6440\"*, a|strong=\"H3068\"* great|strong=\"H1419\"* and|strong=\"H1419\"* numerous|strong=\"H7227\"* people|strong=\"H5971\"*, and|strong=\"H1419\"* tall|strong=\"H7311\"* as|strong=\"H5971\"* the|strong=\"H6440\"* Anakim|strong=\"H6062\"*." + }, + { + "verseNum": 11, + "text": "These|strong=\"H1992\"* also|strong=\"H1992\"* are|strong=\"H1992\"* considered|strong=\"H2803\"* to|strong=\"H7121\"* be Rephaim|strong=\"H7497\"*, as|strong=\"H2803\"* the|strong=\"H7121\"* Anakim|strong=\"H6062\"*; but|strong=\"H1992\"* the|strong=\"H7121\"* Moabites|strong=\"H4125\"* call|strong=\"H7121\"* them|strong=\"H1992\"* Emim." + }, + { + "verseNum": 12, + "text": "The|strong=\"H6440\"* Horites|strong=\"H2752\"* also|strong=\"H3068\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Seir|strong=\"H8165\"* in|strong=\"H3427\"* the|strong=\"H6440\"* past|strong=\"H6440\"*, but|strong=\"H3068\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"* succeeded|strong=\"H8478\"* them|strong=\"H5414\"*. They|strong=\"H3068\"* destroyed|strong=\"H8045\"* them|strong=\"H5414\"* from|strong=\"H6440\"* before|strong=\"H6440\"* them|strong=\"H5414\"*, and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3068\"* place|strong=\"H8478\"*, as|strong=\"H6213\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* to|strong=\"H3478\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H1121\"* his|strong=\"H5414\"* possession|strong=\"H3423\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* to|strong=\"H3478\"* them|strong=\"H5414\"*.)" + }, + { + "verseNum": 13, + "text": "“Now|strong=\"H6258\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* cross|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H5674\"* brook|strong=\"H5158\"* Zered|strong=\"H2218\"*.” We|strong=\"H6258\"* went|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H5674\"* brook|strong=\"H5158\"* Zered|strong=\"H2218\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3605\"* days|strong=\"H3117\"* in|strong=\"H8141\"* which|strong=\"H3068\"* we|strong=\"H3068\"* came|strong=\"H1980\"* from|strong=\"H1980\"* Kadesh Barnea until|strong=\"H5704\"* we|strong=\"H3068\"* had|strong=\"H3068\"* come|strong=\"H1980\"* over|strong=\"H5674\"* the|strong=\"H3605\"* brook|strong=\"H5158\"* Zered|strong=\"H2218\"* were|strong=\"H3117\"* thirty-eight|strong=\"H7970\"* years|strong=\"H8141\"*, until|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* generation|strong=\"H1755\"* of|strong=\"H3068\"* the|strong=\"H3605\"* men|strong=\"H1980\"* of|strong=\"H3068\"* war|strong=\"H4421\"* were|strong=\"H3117\"* consumed|strong=\"H8552\"* from|strong=\"H1980\"* the|strong=\"H3605\"* middle|strong=\"H7130\"* of|strong=\"H3068\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*, as|strong=\"H5704\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H5704\"* them|strong=\"H5674\"*." + }, + { + "verseNum": 15, + "text": "Moreover|strong=\"H1571\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* against|strong=\"H3027\"* them|strong=\"H3027\"*, to|strong=\"H5704\"* destroy|strong=\"H2000\"* them|strong=\"H3027\"* from|strong=\"H3027\"* the|strong=\"H3068\"* middle|strong=\"H7130\"* of|strong=\"H3068\"* the|strong=\"H3068\"* camp|strong=\"H4264\"*, until|strong=\"H5704\"* they|strong=\"H3068\"* were|strong=\"H1961\"* consumed|strong=\"H8552\"*." + }, + { + "verseNum": 16, + "text": "So|strong=\"H1961\"*, when|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H5971\"* war|strong=\"H4421\"* were|strong=\"H1961\"* consumed|strong=\"H8552\"* and|strong=\"H5971\"* dead|strong=\"H4191\"* from|strong=\"H1961\"* among|strong=\"H7130\"* the|strong=\"H3605\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 18, + "text": "“You|strong=\"H3117\"* are|strong=\"H3117\"* to|strong=\"H3117\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* Ar|strong=\"H6144\"*, the|strong=\"H3117\"* border|strong=\"H1366\"* of|strong=\"H3117\"* Moab|strong=\"H4124\"*, today|strong=\"H3117\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* come|strong=\"H7126\"* near|strong=\"H7126\"* the|strong=\"H3588\"* border of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, don’t bother them|strong=\"H5414\"*, nor|strong=\"H3808\"* contend|strong=\"H1624\"* with|strong=\"H1121\"* them|strong=\"H5414\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1121\"* not|strong=\"H3808\"* give|strong=\"H5414\"* you|strong=\"H3588\"* any|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H3588\"* land of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* for|strong=\"H3588\"* a|strong=\"H3068\"* possession|strong=\"H3425\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1121\"* given|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Lot|strong=\"H3876\"* for|strong=\"H3588\"* a|strong=\"H3068\"* possession|strong=\"H3425\"*.”" + }, + { + "verseNum": 20, + "text": "(That|strong=\"H1931\"* also|strong=\"H5984\"* is|strong=\"H1931\"* considered|strong=\"H2803\"* a|strong=\"H3068\"* land|strong=\"H6440\"* of|strong=\"H3427\"* Rephaim|strong=\"H7497\"*. Rephaim|strong=\"H7497\"* lived|strong=\"H3427\"* there|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* past|strong=\"H6440\"*, but|strong=\"H1931\"* the|strong=\"H6440\"* Ammonites|strong=\"H5984\"* call|strong=\"H7121\"* them|strong=\"H6440\"* Zamzummim," + }, + { + "verseNum": 21, + "text": "a|strong=\"H3068\"* great|strong=\"H1419\"* people|strong=\"H5971\"*, many|strong=\"H7227\"*, and|strong=\"H3068\"* tall|strong=\"H7311\"*, as|strong=\"H3068\"* the|strong=\"H6440\"* Anakim|strong=\"H6062\"*; but|strong=\"H5971\"* Yahweh|strong=\"H3068\"* destroyed|strong=\"H8045\"* them|strong=\"H6440\"* from|strong=\"H6440\"* before|strong=\"H6440\"* Israel|strong=\"H5971\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* succeeded|strong=\"H8478\"* them|strong=\"H6440\"*, and|strong=\"H3068\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3068\"* place|strong=\"H8478\"*," + }, + { + "verseNum": 22, + "text": "as|strong=\"H5704\"* he|strong=\"H3117\"* did|strong=\"H6213\"* for|strong=\"H5704\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"* who|strong=\"H1121\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Seir|strong=\"H8165\"*, when|strong=\"H3117\"* he|strong=\"H3117\"* destroyed|strong=\"H8045\"* the|strong=\"H6440\"* Horites|strong=\"H2752\"* from|strong=\"H6440\"* before|strong=\"H6440\"* them|strong=\"H6440\"*; and|strong=\"H1121\"* they|strong=\"H3117\"* succeeded|strong=\"H8478\"* them|strong=\"H6440\"*, and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H6440\"* place|strong=\"H8478\"* even|strong=\"H5704\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 23, + "text": "Then|strong=\"H3318\"* the|strong=\"H5704\"* Avvim|strong=\"H5761\"*, who|strong=\"H3427\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* villages as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Gaza|strong=\"H5804\"*: the|strong=\"H5704\"* Caphtorim|strong=\"H3732\"*, who|strong=\"H3427\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3427\"* Caphtor|strong=\"H3731\"*, destroyed|strong=\"H8045\"* them|strong=\"H3318\"* and|strong=\"H3318\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H8478\"* place|strong=\"H8478\"*.)" + }, + { + "verseNum": 24, + "text": "“Rise|strong=\"H6965\"* up|strong=\"H6965\"*, take|strong=\"H3423\"* your|strong=\"H5414\"* journey|strong=\"H5265\"*, and|strong=\"H6965\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H7200\"* valley|strong=\"H5158\"* of|strong=\"H4428\"* the|strong=\"H7200\"* Arnon. Behold|strong=\"H7200\"*, I|strong=\"H5414\"* have|strong=\"H3027\"* given|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H5414\"* hand|strong=\"H3027\"* Sihon|strong=\"H5511\"* the|strong=\"H7200\"* Amorite, king|strong=\"H4428\"* of|strong=\"H4428\"* Heshbon|strong=\"H2809\"*, and|strong=\"H6965\"* his|strong=\"H5414\"* land; begin|strong=\"H2490\"* to|strong=\"H5414\"* possess|strong=\"H3423\"* it|strong=\"H5414\"*, and|strong=\"H6965\"* contend|strong=\"H1624\"* with|strong=\"H3027\"* him|strong=\"H5414\"* in|strong=\"H4428\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 25, + "text": "Today|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H5971\"* begin|strong=\"H2490\"* to|strong=\"H5921\"* put|strong=\"H5414\"* the|strong=\"H3605\"* dread|strong=\"H6343\"* of|strong=\"H3117\"* you|strong=\"H5414\"* and|strong=\"H3117\"* the|strong=\"H3605\"* fear|strong=\"H3374\"* of|strong=\"H3117\"* you|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H3117\"* under|strong=\"H8478\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* sky|strong=\"H8064\"*, who|strong=\"H3605\"* shall|strong=\"H5971\"* hear|strong=\"H8085\"* the|strong=\"H3605\"* report|strong=\"H8088\"* of|strong=\"H3117\"* you|strong=\"H5414\"*, and|strong=\"H3117\"* shall|strong=\"H5971\"* tremble|strong=\"H7264\"* and|strong=\"H3117\"* be|strong=\"H3117\"* in|strong=\"H5921\"* anguish|strong=\"H2342\"* because|strong=\"H5921\"* of|strong=\"H3117\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 26, + "text": "I|strong=\"H1697\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* out|strong=\"H7971\"* of|strong=\"H4428\"* the|strong=\"H7971\"* wilderness|strong=\"H4057\"* of|strong=\"H4428\"* Kedemoth|strong=\"H6932\"* to|strong=\"H7971\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Heshbon|strong=\"H2809\"* with|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H4428\"* peace|strong=\"H7965\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 27, + "text": "“Let|strong=\"H3808\"* me|strong=\"H5674\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* your|strong=\"H3808\"* land. I|strong=\"H3808\"* will|strong=\"H3808\"* go|strong=\"H3212\"* along|strong=\"H5674\"* by|strong=\"H5674\"* the|strong=\"H5674\"* highway|strong=\"H1870\"*. I|strong=\"H3808\"* will|strong=\"H3808\"* turn|strong=\"H5493\"* neither|strong=\"H3808\"* to|strong=\"H3212\"* the|strong=\"H5674\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* nor|strong=\"H3808\"* to|strong=\"H3212\"* the|strong=\"H5674\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 28, + "text": "You|strong=\"H5414\"* shall|strong=\"H4325\"* sell|strong=\"H7666\"* me|strong=\"H5414\"* food for|strong=\"H4325\"* money|strong=\"H3701\"*, that|strong=\"H5414\"* I|strong=\"H5414\"* may|strong=\"H7272\"* eat; and|strong=\"H3701\"* give|strong=\"H5414\"* me|strong=\"H5414\"* water|strong=\"H4325\"* for|strong=\"H4325\"* money|strong=\"H3701\"*, that|strong=\"H5414\"* I|strong=\"H5414\"* may|strong=\"H7272\"* drink|strong=\"H8354\"*. Just let|strong=\"H5414\"* me|strong=\"H5414\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* on|strong=\"H5674\"* my|strong=\"H5414\"* feet|strong=\"H7272\"*," + }, + { + "verseNum": 29, + "text": "as|strong=\"H5704\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"* who|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Seir|strong=\"H8165\"*, and|strong=\"H1121\"* the|strong=\"H5414\"* Moabites|strong=\"H4125\"* who|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Ar|strong=\"H6144\"*, did|strong=\"H6213\"* to|strong=\"H5704\"* me|strong=\"H5414\"*, until|strong=\"H5704\"* I|strong=\"H5414\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"* into|strong=\"H6213\"* the|strong=\"H5414\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* us|strong=\"H5414\"*.”" + }, + { + "verseNum": 30, + "text": "But|strong=\"H3588\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Heshbon|strong=\"H2809\"* would|strong=\"H3068\"* not|strong=\"H3808\"* let|strong=\"H5414\"* us|strong=\"H5414\"* pass|strong=\"H5674\"* by|strong=\"H3027\"* him|strong=\"H5414\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* hardened|strong=\"H7185\"* his|strong=\"H5414\"* spirit|strong=\"H7307\"* and|strong=\"H3068\"* made|strong=\"H5414\"* his|strong=\"H5414\"* heart|strong=\"H3824\"* obstinate, that|strong=\"H3588\"* he|strong=\"H3588\"* might|strong=\"H3068\"* deliver|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, as|strong=\"H3117\"* it|strong=\"H5414\"* is|strong=\"H3068\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 31, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H5414\"*, “Behold|strong=\"H7200\"*, I|strong=\"H5414\"* have|strong=\"H3068\"* begun|strong=\"H2490\"* to|strong=\"H3068\"* deliver|strong=\"H5414\"* up|strong=\"H5414\"* Sihon|strong=\"H5511\"* and|strong=\"H3068\"* his|strong=\"H5414\"* land|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H5414\"*. Begin|strong=\"H2490\"* to|strong=\"H3068\"* possess|strong=\"H3423\"*, that|strong=\"H7200\"* you|strong=\"H5414\"* may|strong=\"H3068\"* inherit|strong=\"H3423\"* his|strong=\"H5414\"* land|strong=\"H6440\"*.”" + }, + { + "verseNum": 32, + "text": "Then|strong=\"H3318\"* Sihon|strong=\"H5511\"* came|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H7125\"* us|strong=\"H7125\"*, he|strong=\"H1931\"* and|strong=\"H5971\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, to|strong=\"H3318\"* battle|strong=\"H4421\"* at|strong=\"H4421\"* Jahaz|strong=\"H3096\"*." + }, + { + "verseNum": 33, + "text": "Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* delivered|strong=\"H5414\"* him|strong=\"H5414\"* up|strong=\"H5414\"* before|strong=\"H6440\"* us|strong=\"H5414\"*; and|strong=\"H1121\"* we|strong=\"H3068\"* struck|strong=\"H5221\"* him|strong=\"H5414\"*, his|strong=\"H3605\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 34, + "text": "We|strong=\"H5892\"* took|strong=\"H3920\"* all|strong=\"H3605\"* his|strong=\"H3605\"* cities|strong=\"H5892\"* at|strong=\"H3808\"* that|strong=\"H3605\"* time|strong=\"H6256\"*, and|strong=\"H5892\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* every|strong=\"H3605\"* inhabited city|strong=\"H5892\"*, with|strong=\"H5892\"* the|strong=\"H3605\"* women and|strong=\"H5892\"* the|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*. We|strong=\"H5892\"* left|strong=\"H7604\"* no|strong=\"H3808\"* one|strong=\"H3605\"* remaining|strong=\"H8300\"*." + }, + { + "verseNum": 35, + "text": "Only|strong=\"H7535\"* the|strong=\"H3920\"* livestock we|strong=\"H3068\"* took|strong=\"H3920\"* for|strong=\"H5892\"* plunder|strong=\"H7998\"* for|strong=\"H5892\"* ourselves, with|strong=\"H5892\"* the|strong=\"H3920\"* plunder|strong=\"H7998\"* of|strong=\"H5892\"* the|strong=\"H3920\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* we|strong=\"H3068\"* had taken|strong=\"H3920\"*." + }, + { + "verseNum": 36, + "text": "From|strong=\"H4480\"* Aroer|strong=\"H6177\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H3605\"* edge|strong=\"H8193\"* of|strong=\"H3068\"* the|strong=\"H3605\"* valley|strong=\"H5158\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Arnon, and|strong=\"H3068\"* the|strong=\"H3605\"* city|strong=\"H5892\"* that|strong=\"H3605\"* is|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H3605\"* valley|strong=\"H5158\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* Gilead|strong=\"H1568\"*, there|strong=\"H1961\"* was|strong=\"H3068\"* not|strong=\"H3808\"* a|strong=\"H3068\"* city|strong=\"H5892\"* too|strong=\"H4480\"* high|strong=\"H7682\"* for|strong=\"H5704\"* us|strong=\"H5414\"*. Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* delivered|strong=\"H5414\"* up|strong=\"H5414\"* all|strong=\"H3605\"* before|strong=\"H6440\"* us|strong=\"H5414\"*." + }, + { + "verseNum": 37, + "text": "Only|strong=\"H7535\"* to|strong=\"H3068\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* you|strong=\"H6680\"* didn’t come|strong=\"H7126\"* near|strong=\"H7126\"*: all|strong=\"H3605\"* the|strong=\"H3605\"* banks|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3605\"* river|strong=\"H5158\"* Jabbok|strong=\"H2999\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, and|strong=\"H1121\"* wherever|strong=\"H3605\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* forbade us|strong=\"H3027\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3318\"* we|strong=\"H3068\"* turned|strong=\"H6437\"*, and|strong=\"H4428\"* went|strong=\"H3318\"* up|strong=\"H5927\"* the|strong=\"H3605\"* way|strong=\"H1870\"* to|strong=\"H3318\"* Bashan|strong=\"H1316\"*. Og|strong=\"H5747\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"* came|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H7125\"* us|strong=\"H7125\"*, he|strong=\"H1931\"* and|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, to|strong=\"H3318\"* battle|strong=\"H4421\"* at|strong=\"H4421\"* Edrei." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H5414\"*, “Don’t fear|strong=\"H3372\"* him|strong=\"H5414\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* delivered|strong=\"H5414\"* him|strong=\"H5414\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"* and|strong=\"H3068\"* his|strong=\"H3605\"* land, into|strong=\"H6213\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3068\"* him|strong=\"H5414\"* as|strong=\"H6213\"* you|strong=\"H3588\"* did|strong=\"H6213\"* to|strong=\"H3068\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Amorites, who|strong=\"H3605\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Heshbon|strong=\"H2809\"*.”" + }, + { + "verseNum": 3, + "text": "So|strong=\"H5414\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* also|strong=\"H1571\"* delivered|strong=\"H5414\"* into|strong=\"H3027\"* our|strong=\"H3068\"* hand|strong=\"H3027\"* Og|strong=\"H5747\"*, the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*. We|strong=\"H5704\"* struck|strong=\"H5221\"* him|strong=\"H5414\"* until|strong=\"H5704\"* no|strong=\"H1115\"* one|strong=\"H3605\"* was|strong=\"H3068\"* left|strong=\"H7604\"* to|strong=\"H5704\"* him|strong=\"H5414\"* remaining|strong=\"H8300\"*." + }, + { + "verseNum": 4, + "text": "We|strong=\"H5892\"* took|strong=\"H3947\"* all|strong=\"H3605\"* his|strong=\"H3605\"* cities|strong=\"H5892\"* at|strong=\"H1961\"* that|strong=\"H3605\"* time|strong=\"H6256\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* not|strong=\"H3808\"* a|strong=\"H3068\"* city|strong=\"H5892\"* which|strong=\"H1931\"* we|strong=\"H3068\"* didn’t take|strong=\"H3947\"* from|strong=\"H3947\"* them|strong=\"H3947\"*: sixty|strong=\"H8346\"* cities|strong=\"H5892\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* region|strong=\"H2256\"* of|strong=\"H5892\"* Argob, the|strong=\"H3605\"* kingdom|strong=\"H4467\"* of|strong=\"H5892\"* Og|strong=\"H5747\"* in|strong=\"H5892\"* Bashan|strong=\"H1316\"*." + }, + { + "verseNum": 5, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H5892\"* cities|strong=\"H5892\"* fortified|strong=\"H1219\"* with|strong=\"H5892\"* high|strong=\"H1364\"* walls|strong=\"H2346\"*, gates|strong=\"H1817\"*, and|strong=\"H5892\"* bars|strong=\"H1280\"*, in|strong=\"H5892\"* addition to|strong=\"H5892\"* a|strong=\"H3068\"* great|strong=\"H3966\"* many|strong=\"H7235\"* villages|strong=\"H6521\"* without walls|strong=\"H2346\"*." + }, + { + "verseNum": 6, + "text": "We|strong=\"H6213\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* them|strong=\"H6213\"*, as|strong=\"H6213\"* we|strong=\"H3068\"* did|strong=\"H6213\"* to|strong=\"H6213\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Heshbon|strong=\"H2809\"*, utterly|strong=\"H2763\"* destroying|strong=\"H2763\"* every|strong=\"H3605\"* inhabited city|strong=\"H5892\"*, with|strong=\"H6213\"* the|strong=\"H3605\"* women and|strong=\"H4428\"* the|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* livestock, and|strong=\"H5892\"* the|strong=\"H3605\"* plunder|strong=\"H7998\"* of|strong=\"H5892\"* the|strong=\"H3605\"* cities|strong=\"H5892\"*, we|strong=\"H3068\"* took for|strong=\"H5892\"* plunder|strong=\"H7998\"* for|strong=\"H5892\"* ourselves." + }, + { + "verseNum": 8, + "text": "We|strong=\"H5704\"* took|strong=\"H3947\"* the|strong=\"H3947\"* land|strong=\"H5676\"* at|strong=\"H4428\"* that|strong=\"H1931\"* time|strong=\"H6256\"* out|strong=\"H3947\"* of|strong=\"H4428\"* the|strong=\"H3947\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3947\"* two|strong=\"H8147\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3947\"* Amorites who|strong=\"H1931\"* were|strong=\"H2022\"* beyond|strong=\"H5676\"* the|strong=\"H3947\"* Jordan|strong=\"H3383\"*, from|strong=\"H3027\"* the|strong=\"H3947\"* valley|strong=\"H5158\"* of|strong=\"H4428\"* the|strong=\"H3947\"* Arnon to|strong=\"H5704\"* Mount|strong=\"H2022\"* Hermon|strong=\"H2768\"*." + }, + { + "verseNum": 9, + "text": "(The|strong=\"H7121\"* Sidonians|strong=\"H6722\"* call|strong=\"H7121\"* Hermon|strong=\"H2768\"* Sirion|strong=\"H8303\"*, and|strong=\"H7121\"* the|strong=\"H7121\"* Amorites call|strong=\"H7121\"* it|strong=\"H7121\"* Senir|strong=\"H8149\"*.)" + }, + { + "verseNum": 10, + "text": "We|strong=\"H5704\"* took all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H3605\"* plain|strong=\"H4334\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* Gilead|strong=\"H1568\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* Bashan|strong=\"H1316\"*, to|strong=\"H5704\"* Salecah|strong=\"H5548\"* and|strong=\"H5892\"* Edrei, cities|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H3605\"* kingdom|strong=\"H4467\"* of|strong=\"H5892\"* Og|strong=\"H5747\"* in|strong=\"H5892\"* Bashan|strong=\"H1316\"*." + }, + { + "verseNum": 11, + "text": "(For|strong=\"H3588\"* only|strong=\"H7535\"* Og|strong=\"H5747\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Bashan|strong=\"H1316\"* remained|strong=\"H7604\"* of|strong=\"H1121\"* the|strong=\"H3588\"* remnant|strong=\"H3499\"* of|strong=\"H1121\"* the|strong=\"H3588\"* Rephaim|strong=\"H7497\"*. Behold|strong=\"H2009\"*, his|strong=\"H3588\"* bedstead|strong=\"H6210\"* was|strong=\"H1931\"* a|strong=\"H3068\"* bedstead|strong=\"H6210\"* of|strong=\"H1121\"* iron|strong=\"H1270\"*. Isn’t it|strong=\"H1931\"* in|strong=\"H4428\"* Rabbah|strong=\"H7237\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*? Nine|strong=\"H8672\"* cubits+ 3:11 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* was|strong=\"H1931\"* its|strong=\"H3588\"* length, and|strong=\"H1121\"* four cubits its|strong=\"H3588\"* width|strong=\"H7341\"*, after|strong=\"H3588\"* the|strong=\"H3588\"* cubit of|strong=\"H1121\"* a|strong=\"H3068\"* man|strong=\"H1121\"*.)" + }, + { + "verseNum": 12, + "text": "This|strong=\"H2063\"* land we|strong=\"H3068\"* took|strong=\"H3423\"* in|strong=\"H5921\"* possession|strong=\"H3423\"* at|strong=\"H5921\"* that|strong=\"H1931\"* time|strong=\"H6256\"*: from|strong=\"H5921\"* Aroer|strong=\"H6177\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* by|strong=\"H5921\"* the|strong=\"H5921\"* valley|strong=\"H5158\"* of|strong=\"H5892\"* the|strong=\"H5921\"* Arnon, and|strong=\"H5892\"* half|strong=\"H2677\"* the|strong=\"H5921\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H5892\"* Gilead|strong=\"H1568\"* with|strong=\"H5921\"* its|strong=\"H5414\"* cities|strong=\"H5892\"*, I|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5921\"* the|strong=\"H5921\"* Reubenites|strong=\"H7206\"* and|strong=\"H5892\"* to|strong=\"H5921\"* the|strong=\"H5921\"* Gadites|strong=\"H1425\"*;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H4519\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H7626\"* Gilead|strong=\"H1568\"*, and|strong=\"H4519\"* all|strong=\"H3605\"* Bashan|strong=\"H1316\"*, the|strong=\"H3605\"* kingdom|strong=\"H4467\"* of|strong=\"H7626\"* Og|strong=\"H5747\"*, I|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H3605\"* half-tribe|strong=\"H2677\"* of|strong=\"H7626\"* Manasseh|strong=\"H4519\"*—all|strong=\"H3605\"* the|strong=\"H3605\"* region|strong=\"H2256\"* of|strong=\"H7626\"* Argob, even|strong=\"H4519\"* all|strong=\"H3605\"* Bashan|strong=\"H1316\"*. (The|strong=\"H3605\"* same|strong=\"H1931\"* is|strong=\"H1931\"* called|strong=\"H7121\"* the|strong=\"H3605\"* land of|strong=\"H7626\"* Rephaim|strong=\"H7497\"*." + }, + { + "verseNum": 14, + "text": "Jair|strong=\"H2971\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* took|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* region|strong=\"H2256\"* of|strong=\"H1121\"* Argob, to|strong=\"H5704\"* the|strong=\"H3605\"* border|strong=\"H1366\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Geshurites|strong=\"H1651\"* and|strong=\"H1121\"* the|strong=\"H3605\"* Maacathites|strong=\"H4602\"*, and|strong=\"H1121\"* called|strong=\"H7121\"* them|strong=\"H5921\"*, even|strong=\"H5704\"* Bashan|strong=\"H1316\"*, after|strong=\"H5921\"* his|strong=\"H3605\"* own name|strong=\"H8034\"*, Havvoth Jair|strong=\"H2971\"*, to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*.)" + }, + { + "verseNum": 15, + "text": "I|strong=\"H5414\"* gave|strong=\"H5414\"* Gilead|strong=\"H1568\"* to|strong=\"H5414\"* Machir|strong=\"H4353\"*." + }, + { + "verseNum": 16, + "text": "To|strong=\"H5704\"* the|strong=\"H5414\"* Reubenites|strong=\"H7206\"* and|strong=\"H1121\"* to|strong=\"H5704\"* the|strong=\"H5414\"* Gadites|strong=\"H1425\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* from|strong=\"H4480\"* Gilead|strong=\"H1568\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5414\"* valley|strong=\"H5158\"* of|strong=\"H1121\"* the|strong=\"H5414\"* Arnon, the|strong=\"H5414\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H5414\"* valley|strong=\"H5158\"*, and|strong=\"H1121\"* its|strong=\"H5414\"* border|strong=\"H1366\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5414\"* river|strong=\"H5158\"* Jabbok|strong=\"H2999\"*, which|strong=\"H5158\"* is|strong=\"H1121\"* the|strong=\"H5414\"* border|strong=\"H1366\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*;" + }, + { + "verseNum": 17, + "text": "the|strong=\"H5704\"* Arabah|strong=\"H6160\"* also|strong=\"H1366\"*, and|strong=\"H3220\"* the|strong=\"H5704\"* Jordan|strong=\"H3383\"* and|strong=\"H3220\"* its|strong=\"H8478\"* border|strong=\"H1366\"*, from|strong=\"H5704\"* Chinnereth|strong=\"H3672\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* sea|strong=\"H3220\"* of|strong=\"H1366\"* the|strong=\"H5704\"* Arabah|strong=\"H6160\"*, the|strong=\"H5704\"* Salt|strong=\"H4417\"* Sea|strong=\"H3220\"*, under|strong=\"H8478\"* the|strong=\"H5704\"* slopes of|strong=\"H1366\"* Pisgah|strong=\"H6449\"* eastward|strong=\"H4217\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H5414\"* commanded|strong=\"H6680\"* you|strong=\"H5414\"* at|strong=\"H3478\"* that|strong=\"H3605\"* time|strong=\"H6256\"*, saying, “Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"* this|strong=\"H2063\"* land|strong=\"H6440\"* to|strong=\"H3478\"* possess|strong=\"H3423\"* it|strong=\"H5414\"*. All|strong=\"H3605\"* of|strong=\"H1121\"* you|strong=\"H5414\"* men|strong=\"H1121\"* of|strong=\"H1121\"* valor|strong=\"H2428\"* shall|strong=\"H3068\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* armed|strong=\"H2502\"* before|strong=\"H6440\"* your|strong=\"H3068\"* brothers|strong=\"H1121\"*, the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"H3588\"* your|strong=\"H5414\"* wives, and|strong=\"H5892\"* your|strong=\"H5414\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, and|strong=\"H5892\"* your|strong=\"H5414\"* livestock|strong=\"H4735\"*, (I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3045\"* much|strong=\"H7227\"* livestock|strong=\"H4735\"*), shall|strong=\"H5892\"* live|strong=\"H3427\"* in|strong=\"H3427\"* your|strong=\"H5414\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* I|strong=\"H3588\"* have|strong=\"H3045\"* given|strong=\"H5414\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 20, + "text": "until|strong=\"H5704\"* Yahweh|strong=\"H3068\"* gives|strong=\"H5414\"* rest|strong=\"H5117\"* to|strong=\"H5704\"* your|strong=\"H3068\"* brothers, as|strong=\"H5704\"* to|strong=\"H5704\"* you|strong=\"H5414\"*, and|strong=\"H3068\"* they|strong=\"H1992\"* also|strong=\"H1571\"* possess|strong=\"H3423\"* the|strong=\"H5414\"* land|strong=\"H5676\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* them|strong=\"H5414\"* beyond|strong=\"H5676\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"*. Then|strong=\"H1571\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* each|strong=\"H5414\"* return|strong=\"H7725\"* to|strong=\"H5704\"* his|strong=\"H5414\"* own|strong=\"H3425\"* possession|strong=\"H3423\"*, which|strong=\"H3068\"* I|strong=\"H5414\"* have|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 21, + "text": "I|strong=\"H3651\"* commanded|strong=\"H6680\"* Joshua|strong=\"H3091\"* at|strong=\"H3068\"* that|strong=\"H7200\"* time|strong=\"H6256\"*, saying, “Your|strong=\"H3068\"* eyes|strong=\"H5869\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* that|strong=\"H7200\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3068\"* these|strong=\"H6213\"* two|strong=\"H8147\"* kings|strong=\"H4428\"*. So|strong=\"H3651\"* shall|strong=\"H3068\"* Yahweh|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* where|strong=\"H8033\"* you|strong=\"H6680\"* go|strong=\"H5674\"* over|strong=\"H5674\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* fear|strong=\"H3372\"* them|strong=\"H3588\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* himself|strong=\"H1931\"* fights|strong=\"H3898\"* for|strong=\"H3588\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 23, + "text": "I|strong=\"H6256\"* begged|strong=\"H2603\"* Yahweh|strong=\"H3068\"* at|strong=\"H3068\"* that|strong=\"H1931\"* time|strong=\"H6256\"*, saying," + }, + { + "verseNum": 24, + "text": "“Lord|strong=\"H3069\"*+ 3:24 The word translated “Lord” is “Adonai.”* Yahweh|strong=\"H3068\"*, you|strong=\"H6213\"* have|strong=\"H5650\"* begun|strong=\"H2490\"* to|strong=\"H6213\"* show|strong=\"H7200\"* your|strong=\"H7200\"* servant|strong=\"H5650\"* your|strong=\"H7200\"* greatness|strong=\"H1433\"*, and|strong=\"H8064\"* your|strong=\"H7200\"* strong|strong=\"H2389\"* hand|strong=\"H3027\"*. For|strong=\"H6213\"* what|strong=\"H4310\"* god|strong=\"H3069\"* is|strong=\"H4310\"* there|strong=\"H7200\"* in|strong=\"H6213\"* heaven|strong=\"H8064\"* or|strong=\"H7200\"* in|strong=\"H6213\"* earth|strong=\"H8064\"* that|strong=\"H7200\"* can|strong=\"H4310\"* do|strong=\"H6213\"* works|strong=\"H4639\"* like|strong=\"H6213\"* yours|strong=\"H5650\"*, and|strong=\"H8064\"* mighty|strong=\"H2389\"* acts|strong=\"H1369\"* like|strong=\"H6213\"* yours|strong=\"H5650\"*?" + }, + { + "verseNum": 25, + "text": "Please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* go|strong=\"H5674\"* over|strong=\"H5674\"* and|strong=\"H7200\"* see|strong=\"H7200\"* the|strong=\"H7200\"* good|strong=\"H2896\"* land|strong=\"H5676\"* that|strong=\"H7200\"* is|strong=\"H2088\"* beyond|strong=\"H5676\"* the|strong=\"H7200\"* Jordan|strong=\"H3383\"*, that|strong=\"H7200\"* fine|strong=\"H2896\"* mountain|strong=\"H2022\"*, and|strong=\"H7200\"* Lebanon|strong=\"H3844\"*.”" + }, + { + "verseNum": 26, + "text": "But|strong=\"H3808\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* angry|strong=\"H5674\"* with|strong=\"H3068\"* me|strong=\"H5674\"* because|strong=\"H4616\"* of|strong=\"H3068\"* you|strong=\"H3808\"*, and|strong=\"H3068\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1696\"* me|strong=\"H5674\"*. Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5674\"*, “That|strong=\"H8085\"* is|strong=\"H3068\"* enough|strong=\"H7227\"*! Speak|strong=\"H1696\"* no|strong=\"H3808\"* more|strong=\"H3254\"* to|strong=\"H1696\"* me|strong=\"H5674\"* of|strong=\"H3068\"* this|strong=\"H2088\"* matter|strong=\"H1697\"*." + }, + { + "verseNum": 27, + "text": "Go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H7200\"* top|strong=\"H7218\"* of|strong=\"H7218\"* Pisgah|strong=\"H6449\"*, and|strong=\"H5869\"* lift|strong=\"H5375\"* up|strong=\"H5927\"* your|strong=\"H5375\"* eyes|strong=\"H5869\"* westward|strong=\"H3220\"*, and|strong=\"H5869\"* northward|strong=\"H6828\"*, and|strong=\"H5869\"* southward|strong=\"H8486\"*, and|strong=\"H5869\"* eastward|strong=\"H4217\"*, and|strong=\"H5869\"* see|strong=\"H7200\"* with|strong=\"H5927\"* your|strong=\"H5375\"* eyes|strong=\"H5869\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H5869\"* not|strong=\"H3808\"* go|strong=\"H5927\"* over|strong=\"H5674\"* this|strong=\"H2088\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 28, + "text": "But|strong=\"H3588\"* commission|strong=\"H6680\"* Joshua|strong=\"H3091\"*, and|strong=\"H5971\"* encourage|strong=\"H2388\"* him|strong=\"H6440\"*, and|strong=\"H5971\"* strengthen|strong=\"H2388\"* him|strong=\"H6440\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* shall|strong=\"H5971\"* go|strong=\"H5674\"* over|strong=\"H5674\"* before|strong=\"H6440\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, and|strong=\"H5971\"* he|strong=\"H1931\"* shall|strong=\"H5971\"* cause|strong=\"H5971\"* them|strong=\"H6440\"* to|strong=\"H6440\"* inherit|strong=\"H5157\"* the|strong=\"H6440\"* land|strong=\"H6440\"* which|strong=\"H1931\"* you|strong=\"H3588\"* shall|strong=\"H5971\"* see|strong=\"H7200\"*.”" + }, + { + "verseNum": 29, + "text": "So|strong=\"H3427\"* we|strong=\"H3068\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* valley|strong=\"H1516\"* near Beth Peor." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H6258\"*, Israel|strong=\"H3478\"*, listen|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H8085\"* statutes|strong=\"H2706\"* and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H8085\"* ordinances|strong=\"H4941\"* which|strong=\"H3068\"* I|strong=\"H5414\"* teach|strong=\"H3925\"* you|strong=\"H5414\"*, to|strong=\"H3478\"* do|strong=\"H6213\"* them|strong=\"H5414\"*, that|strong=\"H8085\"* you|strong=\"H5414\"* may|strong=\"H3068\"* live|strong=\"H2421\"* and|strong=\"H3478\"* go|strong=\"H3068\"* in|strong=\"H3478\"* and|strong=\"H3478\"* possess|strong=\"H3423\"* the|strong=\"H8085\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers, gives|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 2, + "text": "You|strong=\"H6680\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* add|strong=\"H3254\"* to|strong=\"H3068\"* the|strong=\"H5921\"* word|strong=\"H1697\"* which|strong=\"H3068\"* I|strong=\"H5921\"* command|strong=\"H6680\"* you|strong=\"H6680\"*, neither|strong=\"H3808\"* shall|strong=\"H3068\"* you|strong=\"H6680\"* take|strong=\"H8104\"* away|strong=\"H4480\"* from|strong=\"H4480\"* it|strong=\"H5921\"*, that|strong=\"H3068\"* you|strong=\"H6680\"* may|strong=\"H3068\"* keep|strong=\"H8104\"* the|strong=\"H5921\"* commandments|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* which|strong=\"H3068\"* I|strong=\"H5921\"* command|strong=\"H6680\"* you|strong=\"H6680\"*." + }, + { + "verseNum": 3, + "text": "Your|strong=\"H3068\"* eyes|strong=\"H5869\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* what|strong=\"H6213\"* Yahweh|strong=\"H3068\"* did|strong=\"H6213\"* because|strong=\"H3588\"* of|strong=\"H3068\"* Baal|strong=\"H1187\"* Peor|strong=\"H1187\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* destroyed|strong=\"H8045\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1980\"* who|strong=\"H3605\"* followed|strong=\"H1980\"* Baal|strong=\"H1187\"* Peor|strong=\"H1187\"* from|strong=\"H1980\"* among|strong=\"H7130\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3605\"* you|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3117\"* faithful to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* are|strong=\"H3117\"* all|strong=\"H3605\"* alive|strong=\"H2416\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 5, + "text": "Behold|strong=\"H7200\"*, I|strong=\"H3651\"* have|strong=\"H3068\"* taught|strong=\"H3925\"* you|strong=\"H6680\"* statutes|strong=\"H2706\"* and|strong=\"H3068\"* ordinances|strong=\"H4941\"*, even|strong=\"H3651\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* me|strong=\"H7200\"*, that|strong=\"H7200\"* you|strong=\"H6680\"* should|strong=\"H3068\"* do|strong=\"H6213\"* so|strong=\"H3651\"* in|strong=\"H3068\"* the|strong=\"H7200\"* middle|strong=\"H7130\"* of|strong=\"H3068\"* the|strong=\"H7200\"* land|strong=\"H7130\"* where|strong=\"H8033\"* you|strong=\"H6680\"* go|strong=\"H3068\"* in|strong=\"H3068\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 6, + "text": "Keep|strong=\"H8104\"* therefore|strong=\"H3588\"* and|strong=\"H1419\"* do|strong=\"H6213\"* them|strong=\"H6213\"*; for|strong=\"H3588\"* this|strong=\"H2088\"* is|strong=\"H2088\"* your|strong=\"H3605\"* wisdom|strong=\"H2451\"* and|strong=\"H1419\"* your|strong=\"H3605\"* understanding|strong=\"H8085\"* in|strong=\"H6213\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* who|strong=\"H3605\"* shall|strong=\"H5971\"* hear|strong=\"H8085\"* all|strong=\"H3605\"* these|strong=\"H2088\"* statutes|strong=\"H2706\"* and|strong=\"H1419\"* say, “Surely|strong=\"H3588\"* this|strong=\"H2088\"* great|strong=\"H1419\"* nation|strong=\"H1471\"* is|strong=\"H2088\"* a|strong=\"H3068\"* wise|strong=\"H2450\"* and|strong=\"H1419\"* understanding|strong=\"H8085\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* what|strong=\"H4310\"* great|strong=\"H1419\"* nation|strong=\"H1471\"* is|strong=\"H3068\"* there|strong=\"H3605\"* that|strong=\"H3588\"* has|strong=\"H3068\"* a|strong=\"H3068\"* god|strong=\"H3068\"* so|strong=\"H7121\"* near|strong=\"H7138\"* to|strong=\"H3068\"* them|strong=\"H7121\"* as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* is|strong=\"H3068\"* whenever|strong=\"H3605\"* we|strong=\"H3068\"* call|strong=\"H7121\"* on|strong=\"H3068\"* him|strong=\"H7121\"*?" + }, + { + "verseNum": 8, + "text": "What|strong=\"H4310\"* great|strong=\"H1419\"* nation|strong=\"H1471\"* is|strong=\"H4310\"* there|strong=\"H3117\"* that|strong=\"H3605\"* has|strong=\"H4310\"* statutes|strong=\"H2706\"* and|strong=\"H3117\"* ordinances|strong=\"H4941\"* so|strong=\"H5414\"* righteous|strong=\"H6662\"* as|strong=\"H3117\"* all|strong=\"H3605\"* this|strong=\"H2063\"* law|strong=\"H8451\"* which|strong=\"H4310\"* I|strong=\"H3117\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"* today|strong=\"H3117\"*?" + }, + { + "verseNum": 9, + "text": "Only|strong=\"H7535\"* be|strong=\"H1697\"* careful|strong=\"H8104\"*, and|strong=\"H1121\"* keep|strong=\"H8104\"* your|strong=\"H3605\"* soul|strong=\"H5315\"* diligently|strong=\"H3966\"*, lest|strong=\"H6435\"* you|strong=\"H3605\"* forget|strong=\"H7911\"* the|strong=\"H3605\"* things|strong=\"H1697\"* which|strong=\"H1697\"* your|strong=\"H3605\"* eyes|strong=\"H5869\"* saw|strong=\"H7200\"*, and|strong=\"H1121\"* lest|strong=\"H6435\"* they|strong=\"H3117\"* depart|strong=\"H5493\"* from|strong=\"H5493\"* your|strong=\"H3605\"* heart|strong=\"H3824\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H1121\"* your|strong=\"H3605\"* life|strong=\"H5315\"*; but|strong=\"H7535\"* make|strong=\"H3045\"* them|strong=\"H7200\"* known|strong=\"H3045\"* to|strong=\"H8104\"* your|strong=\"H3605\"* children|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H3605\"* children|strong=\"H1121\"*’s children|strong=\"H1121\"*—" + }, + { + "verseNum": 10, + "text": "the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H5971\"* you|strong=\"H6440\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H5921\"* Horeb|strong=\"H2722\"*, when|strong=\"H3117\"* Yahweh|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3068\"* me|strong=\"H6440\"*, “Assemble|strong=\"H6950\"* the|strong=\"H3605\"* people|strong=\"H5971\"* to|strong=\"H3068\"* me|strong=\"H6440\"*, and|strong=\"H1121\"* I|strong=\"H3117\"* will|strong=\"H3068\"* make|strong=\"H8085\"* them|strong=\"H1992\"* hear|strong=\"H8085\"* my|strong=\"H8085\"* words|strong=\"H1697\"*, that|strong=\"H5971\"* they|strong=\"H1992\"* may|strong=\"H3068\"* learn|strong=\"H3925\"* to|strong=\"H3068\"* fear|strong=\"H3372\"* me|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* that|strong=\"H5971\"* they|strong=\"H1992\"* live|strong=\"H2416\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth, and|strong=\"H1121\"* that|strong=\"H5971\"* they|strong=\"H1992\"* may|strong=\"H3068\"* teach|strong=\"H3925\"* their|strong=\"H3605\"* children|strong=\"H1121\"*.”" + }, + { + "verseNum": 11, + "text": "You|strong=\"H5704\"* came|strong=\"H7126\"* near|strong=\"H7126\"* and|strong=\"H8064\"* stood|strong=\"H5975\"* under|strong=\"H8478\"* the|strong=\"H5704\"* mountain|strong=\"H2022\"*. The|strong=\"H5704\"* mountain|strong=\"H2022\"* burned|strong=\"H1197\"* with|strong=\"H1197\"* fire to|strong=\"H5704\"* the|strong=\"H5704\"* heart|strong=\"H3820\"* of|strong=\"H2022\"* the|strong=\"H5704\"* sky|strong=\"H8064\"*, with|strong=\"H1197\"* darkness|strong=\"H2822\"*, cloud|strong=\"H6051\"*, and|strong=\"H8064\"* thick|strong=\"H6205\"* darkness|strong=\"H2822\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H8432\"* out|strong=\"H7200\"* of|strong=\"H3068\"* the|strong=\"H8085\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H8085\"* fire: you|strong=\"H8432\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* words|strong=\"H1697\"*, but|strong=\"H7200\"* you|strong=\"H8432\"* saw|strong=\"H7200\"* no|strong=\"H7200\"* form|strong=\"H8544\"*; you|strong=\"H8432\"* only|strong=\"H2108\"* heard|strong=\"H8085\"* a|strong=\"H3068\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H6213\"* declared|strong=\"H5046\"* to|strong=\"H6213\"* you|strong=\"H6680\"* his|strong=\"H5921\"* covenant|strong=\"H1285\"*, which|strong=\"H1697\"* he|strong=\"H6213\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"* to|strong=\"H6213\"* perform|strong=\"H6213\"*, even|strong=\"H6213\"* the|strong=\"H5921\"* ten|strong=\"H6235\"* commandments|strong=\"H1697\"*. He|strong=\"H6213\"* wrote|strong=\"H3789\"* them|strong=\"H5921\"* on|strong=\"H5921\"* two|strong=\"H8147\"* stone tablets|strong=\"H3871\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* me|strong=\"H6213\"* at|strong=\"H3068\"* that|strong=\"H1931\"* time|strong=\"H6256\"* to|strong=\"H3068\"* teach|strong=\"H3925\"* you|strong=\"H6680\"* statutes|strong=\"H2706\"* and|strong=\"H3068\"* ordinances|strong=\"H4941\"*, that|strong=\"H1931\"* you|strong=\"H6680\"* might|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"* in|strong=\"H3068\"* the|strong=\"H6213\"* land where|strong=\"H8033\"* you|strong=\"H6680\"* go|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 15, + "text": "Be|strong=\"H3808\"* very|strong=\"H3966\"* careful|strong=\"H8104\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* saw|strong=\"H7200\"* no|strong=\"H3808\"* kind of|strong=\"H3068\"* form|strong=\"H8544\"* on|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"* in|strong=\"H3068\"* Horeb|strong=\"H2722\"* out|strong=\"H7200\"* of|strong=\"H3068\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H3605\"* fire," + }, + { + "verseNum": 16, + "text": "lest|strong=\"H6435\"* you|strong=\"H3605\"* corrupt|strong=\"H7843\"* yourselves|strong=\"H7843\"*, and|strong=\"H6213\"* make|strong=\"H6213\"* yourself|strong=\"H6213\"* a|strong=\"H3068\"* carved|strong=\"H6213\"* image|strong=\"H6459\"* in|strong=\"H6213\"* the|strong=\"H3605\"* form|strong=\"H8544\"* of|strong=\"H3605\"* any|strong=\"H3605\"* figure|strong=\"H5566\"*, the|strong=\"H3605\"* likeness|strong=\"H8403\"* of|strong=\"H3605\"* male|strong=\"H2145\"* or|strong=\"H6435\"* female|strong=\"H5347\"*," + }, + { + "verseNum": 17, + "text": "the|strong=\"H3605\"* likeness|strong=\"H8403\"* of|strong=\"H3605\"* any|strong=\"H3605\"* animal that|strong=\"H3605\"* is|strong=\"H3605\"* on|strong=\"H3605\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*, the|strong=\"H3605\"* likeness|strong=\"H8403\"* of|strong=\"H3605\"* any|strong=\"H3605\"* winged|strong=\"H3671\"* bird|strong=\"H6833\"* that|strong=\"H3605\"* flies|strong=\"H5774\"* in|strong=\"H8064\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*," + }, + { + "verseNum": 18, + "text": "the|strong=\"H3605\"* likeness|strong=\"H8403\"* of|strong=\"H4325\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* creeps|strong=\"H7430\"* on|strong=\"H8478\"* the|strong=\"H3605\"* ground, the|strong=\"H3605\"* likeness|strong=\"H8403\"* of|strong=\"H4325\"* any|strong=\"H3605\"* fish|strong=\"H1710\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H8478\"* the|strong=\"H3605\"* water|strong=\"H4325\"* under|strong=\"H8478\"* the|strong=\"H3605\"* earth;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H3068\"* lest|strong=\"H6435\"* you|strong=\"H3605\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"* to|strong=\"H3068\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H3068\"* when|strong=\"H7200\"* you|strong=\"H3605\"* see|strong=\"H7200\"* the|strong=\"H3605\"* sun|strong=\"H8121\"* and|strong=\"H3068\"* the|strong=\"H3605\"* moon|strong=\"H3394\"* and|strong=\"H3068\"* the|strong=\"H3605\"* stars|strong=\"H3556\"*, even|strong=\"H5869\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, you|strong=\"H3605\"* are|strong=\"H5971\"* drawn|strong=\"H5080\"* away|strong=\"H5375\"* and|strong=\"H3068\"* worship|strong=\"H7812\"* them|strong=\"H7200\"*, and|strong=\"H3068\"* serve|strong=\"H5647\"* them|strong=\"H7200\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* allotted|strong=\"H2505\"* to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* under|strong=\"H8478\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H1961\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* taken|strong=\"H3947\"* you|strong=\"H3117\"*, and|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3117\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3947\"* iron|strong=\"H1270\"* furnace|strong=\"H3564\"*, out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, to|strong=\"H3318\"* be|strong=\"H1961\"* to|strong=\"H3318\"* him|strong=\"H3947\"* a|strong=\"H3068\"* people|strong=\"H5971\"* of|strong=\"H3068\"* inheritance|strong=\"H5159\"*, as|strong=\"H3117\"* it|strong=\"H1961\"* is|strong=\"H3068\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 21, + "text": "Furthermore Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* angry|strong=\"H5674\"* with|strong=\"H3068\"* me|strong=\"H5414\"* for|strong=\"H5921\"* your|strong=\"H3068\"* sakes|strong=\"H5921\"*, and|strong=\"H3068\"* swore|strong=\"H7650\"* that|strong=\"H3068\"* I|strong=\"H5414\"* should|strong=\"H3068\"* not|strong=\"H1115\"* go|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*, and|strong=\"H3068\"* that|strong=\"H3068\"* I|strong=\"H5414\"* should|strong=\"H3068\"* not|strong=\"H1115\"* go|strong=\"H5674\"* in|strong=\"H5921\"* to|strong=\"H3068\"* that|strong=\"H3068\"* good|strong=\"H2896\"* land|strong=\"H5159\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"* for|strong=\"H5921\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*;" + }, + { + "verseNum": 22, + "text": "but|strong=\"H3588\"* I|strong=\"H3588\"* must|strong=\"H4191\"* die|strong=\"H4191\"* in|strong=\"H4191\"* this|strong=\"H2063\"* land. I|strong=\"H3588\"* must|strong=\"H4191\"* not|strong=\"H3588\"* go|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H2063\"* go|strong=\"H5674\"* over|strong=\"H5674\"* and|strong=\"H2896\"* possess|strong=\"H3423\"* that|strong=\"H3588\"* good|strong=\"H2896\"* land." + }, + { + "verseNum": 23, + "text": "Be|strong=\"H3068\"* careful|strong=\"H8104\"*, lest|strong=\"H6435\"* you|strong=\"H6680\"* forget|strong=\"H7911\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, which|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* with|strong=\"H5973\"* you|strong=\"H6680\"*, and|strong=\"H3068\"* make|strong=\"H6213\"* yourselves|strong=\"H3605\"* a|strong=\"H3068\"* carved|strong=\"H6213\"* image|strong=\"H6459\"* in|strong=\"H3068\"* the|strong=\"H3605\"* form|strong=\"H8544\"* of|strong=\"H3068\"* anything|strong=\"H3605\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* forbidden|strong=\"H6680\"* you|strong=\"H6680\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* devouring fire, a|strong=\"H3068\"* jealous|strong=\"H7067\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 25, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* father|strong=\"H3205\"* children|strong=\"H1121\"* and|strong=\"H1121\"* children|strong=\"H1121\"*’s children|strong=\"H1121\"*, and|strong=\"H1121\"* you|strong=\"H3588\"* have|strong=\"H3068\"* been|strong=\"H3605\"* long|strong=\"H3605\"* in|strong=\"H3068\"* the|strong=\"H3605\"* land, and|strong=\"H1121\"* then|strong=\"H6213\"* corrupt|strong=\"H7843\"* yourselves|strong=\"H5869\"*, and|strong=\"H1121\"* make|strong=\"H6213\"* a|strong=\"H3068\"* carved|strong=\"H6213\"* image|strong=\"H6459\"* in|strong=\"H3068\"* the|strong=\"H3605\"* form|strong=\"H8544\"* of|strong=\"H1121\"* anything|strong=\"H3605\"*, and|strong=\"H1121\"* do|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s sight|strong=\"H5869\"* to|strong=\"H3068\"* provoke|strong=\"H3707\"* him|strong=\"H3205\"* to|strong=\"H3068\"* anger|strong=\"H3707\"*," + }, + { + "verseNum": 26, + "text": "I|strong=\"H3588\"* call|strong=\"H5749\"* heaven|strong=\"H8064\"* and|strong=\"H3117\"* earth|strong=\"H8064\"* to|strong=\"H5921\"* witness|strong=\"H5749\"* against|strong=\"H5921\"* you|strong=\"H3588\"* today|strong=\"H3117\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H8064\"* soon|strong=\"H4118\"* utterly|strong=\"H8045\"* perish|strong=\"H5674\"* from|strong=\"H5921\"* off|strong=\"H5921\"* the|strong=\"H5921\"* land|strong=\"H8064\"* which|strong=\"H8033\"* you|strong=\"H3588\"* go|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* to|strong=\"H5921\"* possess|strong=\"H3423\"* it|strong=\"H5921\"*. You|strong=\"H3588\"* will|strong=\"H8064\"* not|strong=\"H3808\"* prolong your|strong=\"H5921\"* days|strong=\"H3117\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, but|strong=\"H3588\"* will|strong=\"H8064\"* utterly|strong=\"H8045\"* be|strong=\"H3808\"* destroyed|strong=\"H8045\"*." + }, + { + "verseNum": 27, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* scatter|strong=\"H6327\"* you|strong=\"H5971\"* among|strong=\"H5971\"* the|strong=\"H3068\"* peoples|strong=\"H5971\"*, and|strong=\"H3068\"* you|strong=\"H5971\"* will|strong=\"H3068\"* be|strong=\"H3068\"* left|strong=\"H7604\"* few|strong=\"H4557\"* in|strong=\"H3068\"* number|strong=\"H4557\"* among|strong=\"H5971\"* the|strong=\"H3068\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* lead|strong=\"H5090\"* you|strong=\"H5971\"* away|strong=\"H5090\"*." + }, + { + "verseNum": 28, + "text": "There|strong=\"H8033\"* you|strong=\"H3808\"* will|strong=\"H3027\"* serve|strong=\"H5647\"* gods, the|strong=\"H8085\"* work|strong=\"H4639\"* of|strong=\"H3027\"* men’s hands|strong=\"H3027\"*, wood|strong=\"H6086\"* and|strong=\"H3027\"* stone, which|strong=\"H8033\"* neither|strong=\"H3808\"* see|strong=\"H7200\"*, nor|strong=\"H3808\"* hear|strong=\"H8085\"*, nor|strong=\"H3808\"* eat, nor|strong=\"H3808\"* smell|strong=\"H7306\"*." + }, + { + "verseNum": 29, + "text": "But|strong=\"H3588\"* from|strong=\"H5315\"* there|strong=\"H8033\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* seek|strong=\"H1245\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* find|strong=\"H4672\"* him|strong=\"H4672\"* when|strong=\"H3588\"* you|strong=\"H3588\"* search|strong=\"H1875\"* after|strong=\"H3588\"* him|strong=\"H4672\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* and|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 30, + "text": "When|strong=\"H3117\"* you|strong=\"H3605\"* are|strong=\"H3117\"* in|strong=\"H3068\"* oppression, and|strong=\"H3068\"* all|strong=\"H3605\"* these|strong=\"H8085\"* things|strong=\"H1697\"* have|strong=\"H3068\"* come|strong=\"H4672\"* on|strong=\"H3117\"* you|strong=\"H3605\"*, in|strong=\"H3068\"* the|strong=\"H3605\"* latter days|strong=\"H3117\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* and|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H5704\"* his|strong=\"H3605\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* merciful|strong=\"H7349\"* God|strong=\"H3068\"*. He|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* fail|strong=\"H7503\"* you|strong=\"H3588\"* nor|strong=\"H3808\"* destroy|strong=\"H7843\"* you|strong=\"H3588\"*, nor|strong=\"H3808\"* forget|strong=\"H7911\"* the|strong=\"H3588\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers which|strong=\"H3068\"* he|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* them|strong=\"H7843\"*." + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* ask|strong=\"H7592\"* now|strong=\"H4994\"* of|strong=\"H3117\"* the|strong=\"H6440\"* days|strong=\"H3117\"* that|strong=\"H3588\"* are|strong=\"H3117\"* past|strong=\"H7223\"*, which|strong=\"H1697\"* were|strong=\"H1961\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, since|strong=\"H3588\"* the|strong=\"H6440\"* day|strong=\"H3117\"* that|strong=\"H3588\"* God|strong=\"H8064\"* created|strong=\"H1254\"* man|strong=\"H1419\"* on|strong=\"H5921\"* the|strong=\"H6440\"* earth|strong=\"H8064\"*, and|strong=\"H3117\"* from|strong=\"H4480\"* the|strong=\"H6440\"* one|strong=\"H2088\"* end|strong=\"H7097\"* of|strong=\"H3117\"* the|strong=\"H6440\"* sky|strong=\"H8064\"* to|strong=\"H5704\"* the|strong=\"H6440\"* other|strong=\"H2088\"*, whether|strong=\"H4480\"* there|strong=\"H1961\"* has|strong=\"H1961\"* been|strong=\"H1961\"* anything|strong=\"H1697\"* as|strong=\"H5704\"* great|strong=\"H1419\"* as|strong=\"H5704\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* is|strong=\"H2088\"*, or|strong=\"H5704\"* has|strong=\"H1961\"* been|strong=\"H1961\"* heard|strong=\"H8085\"* like|strong=\"H3644\"* it|strong=\"H5921\"*?" + }, + { + "verseNum": 33, + "text": "Did|strong=\"H5971\"* a|strong=\"H3068\"* people|strong=\"H5971\"* ever hear|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* God speaking|strong=\"H1696\"* out|strong=\"H8432\"* of|strong=\"H6963\"* the|strong=\"H8085\"* middle|strong=\"H8432\"* of|strong=\"H6963\"* the|strong=\"H8085\"* fire, as|strong=\"H5971\"* you|strong=\"H8432\"* have|strong=\"H5971\"* heard|strong=\"H8085\"*, and|strong=\"H5971\"* live|strong=\"H2421\"*?" + }, + { + "verseNum": 34, + "text": "Or|strong=\"H1471\"* has|strong=\"H3068\"* God|strong=\"H3068\"* tried|strong=\"H5254\"* to|strong=\"H3068\"* go|strong=\"H3068\"* and|strong=\"H3068\"* take|strong=\"H3947\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* for|strong=\"H6213\"* himself|strong=\"H3027\"* from|strong=\"H3027\"* among|strong=\"H7130\"* another nation|strong=\"H1471\"*, by|strong=\"H3027\"* trials|strong=\"H4531\"*, by|strong=\"H3027\"* signs, by|strong=\"H3027\"* wonders|strong=\"H4159\"*, by|strong=\"H3027\"* war|strong=\"H4421\"*, by|strong=\"H3027\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*, by|strong=\"H3027\"* an|strong=\"H6213\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*, and|strong=\"H3068\"* by|strong=\"H3027\"* great|strong=\"H1419\"* terrors|strong=\"H4172\"*, according|strong=\"H3027\"* to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* did|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H3605\"* in|strong=\"H3068\"* Egypt|strong=\"H4714\"* before|strong=\"H5869\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*?" + }, + { + "verseNum": 35, + "text": "It|strong=\"H1931\"* was|strong=\"H3068\"* shown|strong=\"H7200\"* to|strong=\"H3068\"* you|strong=\"H3588\"* so|strong=\"H3588\"* that|strong=\"H3588\"* you|strong=\"H3588\"* might|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* God|strong=\"H3068\"*. There|strong=\"H3045\"* is|strong=\"H3068\"* no|strong=\"H7200\"* one|strong=\"H1931\"* else|strong=\"H5750\"* besides|strong=\"H5750\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 36, + "text": "Out|strong=\"H4480\"* of|strong=\"H1697\"* heaven|strong=\"H8064\"* he|strong=\"H4480\"* made|strong=\"H8085\"* you|strong=\"H5921\"* to|strong=\"H5921\"* hear|strong=\"H8085\"* his|strong=\"H8085\"* voice|strong=\"H6963\"*, that|strong=\"H7200\"* he|strong=\"H4480\"* might instruct|strong=\"H3256\"* you|strong=\"H5921\"*. On|strong=\"H5921\"* earth|strong=\"H8064\"* he|strong=\"H4480\"* made|strong=\"H8085\"* you|strong=\"H5921\"* to|strong=\"H5921\"* see|strong=\"H7200\"* his|strong=\"H8085\"* great|strong=\"H1419\"* fire; and|strong=\"H8064\"* you|strong=\"H5921\"* heard|strong=\"H8085\"* his|strong=\"H8085\"* words|strong=\"H1697\"* out|strong=\"H4480\"* of|strong=\"H1697\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H1697\"* the|strong=\"H5921\"* fire." + }, + { + "verseNum": 37, + "text": "Because|strong=\"H3588\"* he|strong=\"H3588\"* loved your|strong=\"H6440\"* fathers, therefore|strong=\"H3588\"* he|strong=\"H3588\"* chose their|strong=\"H6440\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* them|strong=\"H6440\"*, and|strong=\"H1419\"* brought|strong=\"H3318\"* you|strong=\"H3588\"* out|strong=\"H3318\"* with|strong=\"H6440\"* his|strong=\"H6440\"* presence|strong=\"H6440\"*, with|strong=\"H6440\"* his|strong=\"H6440\"* great|strong=\"H1419\"* power|strong=\"H3581\"*, out|strong=\"H3318\"* of|strong=\"H6440\"* Egypt|strong=\"H4714\"*;" + }, + { + "verseNum": 38, + "text": "to|strong=\"H5414\"* drive|strong=\"H3423\"* out|strong=\"H3423\"* nations|strong=\"H1471\"* from|strong=\"H4480\"* before|strong=\"H6440\"* you|strong=\"H5414\"* greater|strong=\"H1419\"* and|strong=\"H3117\"* mightier|strong=\"H6099\"* than|strong=\"H4480\"* you|strong=\"H5414\"*, to|strong=\"H5414\"* bring|strong=\"H5414\"* you|strong=\"H5414\"* in|strong=\"H3117\"*, to|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* their|strong=\"H5414\"* land|strong=\"H5159\"* for|strong=\"H6440\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*, as|strong=\"H3117\"* it|strong=\"H5414\"* is|strong=\"H2088\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 39, + "text": "Know|strong=\"H3045\"* therefore|strong=\"H5921\"* today|strong=\"H3117\"*, and|strong=\"H3068\"* take|strong=\"H7725\"* it|strong=\"H1931\"* to|strong=\"H7725\"* heart|strong=\"H3824\"*, that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* himself|strong=\"H1931\"* is|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H5921\"* heaven|strong=\"H8064\"* above|strong=\"H4605\"* and|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth|strong=\"H8064\"* beneath|strong=\"H8478\"*. There|strong=\"H3117\"* is|strong=\"H3068\"* no|strong=\"H3045\"* one|strong=\"H1931\"* else|strong=\"H5750\"*." + }, + { + "verseNum": 40, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* statutes|strong=\"H2706\"* and|strong=\"H1121\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"* which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H5414\"* today|strong=\"H3117\"*, that|strong=\"H3605\"* it|strong=\"H5414\"* may|strong=\"H3068\"* go|strong=\"H3190\"* well|strong=\"H3190\"* with|strong=\"H3068\"* you|strong=\"H5414\"* and|strong=\"H1121\"* with|strong=\"H3068\"* your|strong=\"H3068\"* children|strong=\"H1121\"* after|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H1121\"* that|strong=\"H3605\"* you|strong=\"H5414\"* may|strong=\"H3068\"* prolong your|strong=\"H3068\"* days|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"* for|strong=\"H5921\"* all|strong=\"H3605\"* time|strong=\"H3117\"*." + }, + { + "verseNum": 41, + "text": "Then|strong=\"H4872\"* Moses|strong=\"H4872\"* set apart three|strong=\"H7969\"* cities|strong=\"H5892\"* beyond|strong=\"H5676\"* the|strong=\"H4872\"* Jordan|strong=\"H3383\"* toward|strong=\"H3383\"* the|strong=\"H4872\"* sunrise|strong=\"H4217\"*," + }, + { + "verseNum": 42, + "text": "that|strong=\"H1931\"* the|strong=\"H4480\"* man slayer|strong=\"H7523\"* might|strong=\"H7523\"* flee|strong=\"H5127\"* there|strong=\"H8033\"*, who|strong=\"H1931\"* kills|strong=\"H7523\"* his|strong=\"H4480\"* neighbor|strong=\"H7453\"* unintentionally|strong=\"H1847\"* and|strong=\"H5892\"* didn’t hate|strong=\"H8130\"* him|strong=\"H8130\"* in|strong=\"H5892\"* time|strong=\"H8543\"* past|strong=\"H8032\"*, and|strong=\"H5892\"* that|strong=\"H1931\"* fleeing|strong=\"H5127\"* to|strong=\"H8033\"* one|strong=\"H3808\"* of|strong=\"H5892\"* these|strong=\"H1931\"* cities|strong=\"H5892\"* he|strong=\"H1931\"* might|strong=\"H7523\"* live|strong=\"H2425\"*:" + }, + { + "verseNum": 43, + "text": "Bezer|strong=\"H1221\"* in|strong=\"H1474\"* the|strong=\"H1568\"* wilderness|strong=\"H4057\"*, in|strong=\"H1474\"* the|strong=\"H1568\"* plain|strong=\"H4334\"* country, for|strong=\"H4057\"* the|strong=\"H1568\"* Reubenites|strong=\"H7206\"*; and|strong=\"H1568\"* Ramoth|strong=\"H7216\"* in|strong=\"H1474\"* Gilead|strong=\"H1568\"* for|strong=\"H4057\"* the|strong=\"H1568\"* Gadites|strong=\"H1425\"*; and|strong=\"H1568\"* Golan|strong=\"H1474\"* in|strong=\"H1474\"* Bashan|strong=\"H1316\"* for|strong=\"H4057\"* the|strong=\"H1568\"* Manassites|strong=\"H4520\"*." + }, + { + "verseNum": 44, + "text": "This|strong=\"H2063\"* is|strong=\"H3478\"* the|strong=\"H6440\"* law|strong=\"H8451\"* which|strong=\"H3478\"* Moses|strong=\"H4872\"* set|strong=\"H7760\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 45, + "text": "These|strong=\"H1696\"* are|strong=\"H1121\"* the|strong=\"H3318\"* testimonies|strong=\"H5713\"*, and|strong=\"H1121\"* the|strong=\"H3318\"* statutes|strong=\"H2706\"*, and|strong=\"H1121\"* the|strong=\"H3318\"* ordinances|strong=\"H4941\"* which|strong=\"H3478\"* Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* when|strong=\"H3318\"* they|strong=\"H3478\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 46, + "text": "beyond|strong=\"H5676\"* the|strong=\"H5221\"* Jordan|strong=\"H3383\"*, in|strong=\"H3427\"* the|strong=\"H5221\"* valley|strong=\"H1516\"* opposite|strong=\"H4136\"* Beth Peor, in|strong=\"H3427\"* the|strong=\"H5221\"* land|strong=\"H5676\"* of|strong=\"H1121\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H5221\"* Amorites, who|strong=\"H1121\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Heshbon|strong=\"H2809\"*, whom Moses|strong=\"H4872\"* and|strong=\"H1121\"* the|strong=\"H5221\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* struck|strong=\"H5221\"* when|strong=\"H3318\"* they|strong=\"H3478\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 47, + "text": "They|strong=\"H4428\"* took|strong=\"H3423\"* possession|strong=\"H3423\"* of|strong=\"H4428\"* his|strong=\"H3423\"* land|strong=\"H5676\"* and|strong=\"H4428\"* the|strong=\"H3423\"* land|strong=\"H5676\"* of|strong=\"H4428\"* Og|strong=\"H5747\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"*, the|strong=\"H3423\"* two|strong=\"H8147\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3423\"* Amorites, who|strong=\"H4428\"* were|strong=\"H4428\"* beyond|strong=\"H5676\"* the|strong=\"H3423\"* Jordan|strong=\"H3383\"* toward|strong=\"H3383\"* the|strong=\"H3423\"* sunrise|strong=\"H4217\"*;" + }, + { + "verseNum": 48, + "text": "from|strong=\"H5921\"* Aroer|strong=\"H6177\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* on|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* of|strong=\"H2022\"* the|strong=\"H5921\"* valley|strong=\"H5158\"* of|strong=\"H2022\"* the|strong=\"H5921\"* Arnon, even|strong=\"H5704\"* to|strong=\"H5704\"* Mount|strong=\"H2022\"* Siyon|strong=\"H7865\"* (also|strong=\"H1931\"* called Hermon|strong=\"H2768\"*)," + }, + { + "verseNum": 49, + "text": "and|strong=\"H3220\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* eastward|strong=\"H4217\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* of|strong=\"H8478\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"*, under|strong=\"H8478\"* the|strong=\"H3605\"* slopes of|strong=\"H8478\"* Pisgah|strong=\"H6449\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Moses|strong=\"H4872\"* called|strong=\"H7121\"* to|strong=\"H1696\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, and|strong=\"H4872\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H6213\"*, “Hear|strong=\"H8085\"*, Israel|strong=\"H3478\"*, the|strong=\"H3605\"* statutes|strong=\"H2706\"* and|strong=\"H4872\"* the|strong=\"H3605\"* ordinances|strong=\"H4941\"* which|strong=\"H3478\"* I|strong=\"H3117\"* speak|strong=\"H1696\"* in|strong=\"H3478\"* your|strong=\"H3605\"* ears today|strong=\"H3117\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H3478\"* learn|strong=\"H3925\"* them|strong=\"H6213\"*, and|strong=\"H4872\"* observe|strong=\"H8104\"* to|strong=\"H1696\"* do|strong=\"H6213\"* them|strong=\"H6213\"*.”" + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H5973\"* us in|strong=\"H3068\"* Horeb|strong=\"H2722\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* didn’t make|strong=\"H3772\"* this|strong=\"H2063\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* our|strong=\"H3068\"* fathers, but|strong=\"H3588\"* with|strong=\"H3068\"* us|strong=\"H3588\"*, even|strong=\"H3588\"* us|strong=\"H3588\"*, who|strong=\"H3605\"* are|strong=\"H3117\"* all|strong=\"H3605\"* of|strong=\"H3068\"* us|strong=\"H3588\"* here|strong=\"H6311\"* alive|strong=\"H2416\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* with|strong=\"H5973\"* you|strong=\"H6440\"* face|strong=\"H6440\"* to|strong=\"H1696\"* face|strong=\"H6440\"* on|strong=\"H3068\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"* out|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H6440\"* fire," + }, + { + "verseNum": 5, + "text": "(I|strong=\"H3588\"* stood|strong=\"H5975\"* between Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* you|strong=\"H3588\"* at|strong=\"H3068\"* that|strong=\"H3588\"* time|strong=\"H6256\"*, to|strong=\"H3068\"* show|strong=\"H5046\"* you|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H1697\"* afraid|strong=\"H3372\"* because|strong=\"H3588\"* of|strong=\"H3068\"* the|strong=\"H6440\"* fire, and|strong=\"H3068\"* didn’t go|strong=\"H5927\"* up|strong=\"H5927\"* onto the|strong=\"H6440\"* mountain|strong=\"H2022\"*) saying|strong=\"H1697\"*," + }, + { + "verseNum": 6, + "text": "“I|strong=\"H4714\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H4714\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3068\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* bondage|strong=\"H5650\"*." + }, + { + "verseNum": 7, + "text": "“You|strong=\"H6440\"* shall|strong=\"H3808\"* have|strong=\"H1961\"* no|strong=\"H3808\"* other gods before|strong=\"H6440\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "“You|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* make|strong=\"H6213\"* a|strong=\"H3068\"* carved|strong=\"H6213\"* image|strong=\"H6459\"* for|strong=\"H6213\"* yourself|strong=\"H6213\"*—any|strong=\"H3605\"* likeness|strong=\"H8544\"* of|strong=\"H4325\"* what|strong=\"H6213\"* is|strong=\"H3605\"* in|strong=\"H6213\"* heaven|strong=\"H8064\"* above|strong=\"H4605\"*, or|strong=\"H3808\"* what|strong=\"H6213\"* is|strong=\"H3605\"* in|strong=\"H6213\"* the|strong=\"H3605\"* earth|strong=\"H8064\"* beneath|strong=\"H8478\"*, or|strong=\"H3808\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H6213\"* the|strong=\"H3605\"* water|strong=\"H4325\"* under|strong=\"H8478\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* bow|strong=\"H7812\"* yourself|strong=\"H5921\"* down|strong=\"H7812\"* to|strong=\"H3068\"* them|strong=\"H5921\"*, nor|strong=\"H3808\"* serve|strong=\"H5647\"* them|strong=\"H5921\"*, for|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, am|strong=\"H3068\"* a|strong=\"H3068\"* jealous|strong=\"H7067\"* God|strong=\"H3068\"*, visiting|strong=\"H6485\"* the|strong=\"H5921\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H5921\"* fathers on|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* third|strong=\"H8029\"* and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fourth|strong=\"H7256\"* generation|strong=\"H8029\"* of|strong=\"H1121\"* those|strong=\"H5921\"* who|strong=\"H3068\"* hate|strong=\"H8130\"* me|strong=\"H8130\"*" + }, + { + "verseNum": 10, + "text": "and|strong=\"H2617\"* showing|strong=\"H6213\"* loving kindness|strong=\"H2617\"* to|strong=\"H6213\"* thousands of|strong=\"H4687\"* those|strong=\"H6213\"* who|strong=\"H8104\"* love|strong=\"H2617\"* me|strong=\"H6213\"* and|strong=\"H2617\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"*." + }, + { + "verseNum": 11, + "text": "“You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* misuse the|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*;+ 5:11 or, You shall not take the name of Yahweh your God in vain;* for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* hold him|strong=\"H5375\"* guiltless|strong=\"H5352\"* who|strong=\"H3068\"* misuses his|strong=\"H5375\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 12, + "text": "“Observe|strong=\"H8104\"* the|strong=\"H8104\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*, to|strong=\"H3068\"* keep|strong=\"H8104\"* it|strong=\"H6942\"* holy|strong=\"H6942\"*, as|strong=\"H3117\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H3605\"* shall|strong=\"H3117\"* labor|strong=\"H5647\"* six|strong=\"H8337\"* days|strong=\"H3117\"*, and|strong=\"H3117\"* do|strong=\"H6213\"* all|strong=\"H3605\"* your|strong=\"H3605\"* work|strong=\"H4399\"*;" + }, + { + "verseNum": 14, + "text": "but|strong=\"H3808\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* is|strong=\"H3068\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, in|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* do|strong=\"H6213\"* any|strong=\"H3605\"* work|strong=\"H4399\"*—neither|strong=\"H3808\"* you|strong=\"H3605\"*, nor|strong=\"H3808\"* your|strong=\"H3068\"* son|strong=\"H1121\"*, nor|strong=\"H3808\"* your|strong=\"H3068\"* daughter|strong=\"H1323\"*, nor|strong=\"H3808\"* your|strong=\"H3068\"* male|strong=\"H5650\"* servant|strong=\"H5650\"*, nor|strong=\"H3808\"* your|strong=\"H3068\"* female|strong=\"H1323\"* servant|strong=\"H5650\"*, nor|strong=\"H3808\"* your|strong=\"H3068\"* ox|strong=\"H7794\"*, nor|strong=\"H3808\"* your|strong=\"H3068\"* donkey|strong=\"H2543\"*, nor|strong=\"H3808\"* any|strong=\"H3605\"* of|strong=\"H1121\"* your|strong=\"H3068\"* livestock, nor|strong=\"H3808\"* your|strong=\"H3068\"* stranger|strong=\"H1616\"* who|strong=\"H3605\"* is|strong=\"H3068\"* within your|strong=\"H3068\"* gates|strong=\"H8179\"*; that|strong=\"H3605\"* your|strong=\"H3068\"* male|strong=\"H5650\"* servant|strong=\"H5650\"* and|strong=\"H1121\"* your|strong=\"H3068\"* female|strong=\"H1323\"* servant|strong=\"H5650\"* may|strong=\"H3068\"* rest|strong=\"H5117\"* as|strong=\"H3117\"* well as|strong=\"H3117\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* remember|strong=\"H2142\"* that|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H1961\"* a|strong=\"H3068\"* servant|strong=\"H5650\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3588\"* out|strong=\"H3318\"* of|strong=\"H3068\"* there|strong=\"H8033\"* by|strong=\"H3027\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"* and|strong=\"H3068\"* by|strong=\"H3027\"* an|strong=\"H6213\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*. Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"* to|strong=\"H3318\"* keep|strong=\"H6213\"* the|strong=\"H5921\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 16, + "text": "“Honor|strong=\"H3513\"* your|strong=\"H3068\"* father and|strong=\"H3068\"* your|strong=\"H3068\"* mother, as|strong=\"H3117\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H5414\"*, that|strong=\"H3117\"* your|strong=\"H3068\"* days|strong=\"H3117\"* may|strong=\"H3068\"* be|strong=\"H3068\"* long|strong=\"H3117\"* and|strong=\"H3068\"* that|strong=\"H3117\"* it|strong=\"H5414\"* may|strong=\"H3068\"* go|strong=\"H3190\"* well|strong=\"H3190\"* with|strong=\"H3068\"* you|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 17, + "text": "“You|strong=\"H3808\"* shall|strong=\"H7523\"* not|strong=\"H3808\"* murder|strong=\"H7523\"*." + }, + { + "verseNum": 18, + "text": "“You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* commit|strong=\"H5003\"* adultery|strong=\"H5003\"*." + }, + { + "verseNum": 19, + "text": "“You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* steal|strong=\"H1589\"*." + }, + { + "verseNum": 20, + "text": "“You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* give|strong=\"H6030\"* false|strong=\"H7723\"* testimony|strong=\"H5707\"* against|strong=\"H7453\"* your|strong=\"H3808\"* neighbor|strong=\"H7453\"*." + }, + { + "verseNum": 21, + "text": "“You|strong=\"H3605\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* covet|strong=\"H2530\"* your|strong=\"H3605\"* neighbor|strong=\"H7453\"*’s wife. Neither|strong=\"H3808\"* shall|strong=\"H1004\"* you|strong=\"H3605\"* desire|strong=\"H2530\"* your|strong=\"H3605\"* neighbor|strong=\"H7453\"*’s house|strong=\"H1004\"*, his|strong=\"H3605\"* field|strong=\"H7704\"*, or|strong=\"H3808\"* his|strong=\"H3605\"* male|strong=\"H5650\"* servant|strong=\"H5650\"*, or|strong=\"H3808\"* his|strong=\"H3605\"* female servant|strong=\"H5650\"*, his|strong=\"H3605\"* ox|strong=\"H7794\"*, or|strong=\"H3808\"* his|strong=\"H3605\"* donkey|strong=\"H2543\"*, or|strong=\"H3808\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* your|strong=\"H3605\"* neighbor|strong=\"H7453\"*’s.”" + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* all|strong=\"H3605\"* your|strong=\"H3068\"* assembly|strong=\"H6951\"* on|strong=\"H5921\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* out|strong=\"H5414\"* of|strong=\"H3068\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H3605\"* fire, of|strong=\"H3068\"* the|strong=\"H3605\"* cloud|strong=\"H6051\"*, and|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H3605\"* thick|strong=\"H6205\"* darkness|strong=\"H6205\"*, with|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* voice|strong=\"H6963\"*. He|strong=\"H3068\"* added|strong=\"H3254\"* no|strong=\"H3808\"* more|strong=\"H3254\"*. He|strong=\"H3068\"* wrote|strong=\"H3789\"* them|strong=\"H5414\"* on|strong=\"H5921\"* two|strong=\"H8147\"* stone tablets|strong=\"H3871\"*, and|strong=\"H3068\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H1696\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"H1961\"* you|strong=\"H3605\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* voice|strong=\"H6963\"* out|strong=\"H8432\"* of|strong=\"H7626\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H7626\"* the|strong=\"H3605\"* darkness|strong=\"H2822\"*, while|strong=\"H1961\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* was|strong=\"H1961\"* burning|strong=\"H1197\"* with|strong=\"H1197\"* fire, you|strong=\"H3605\"* came|strong=\"H1961\"* near|strong=\"H7126\"* to|strong=\"H1961\"* me|strong=\"H6963\"*, even all|strong=\"H3605\"* the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H7626\"* your|strong=\"H3605\"* tribes|strong=\"H7626\"*, and|strong=\"H6963\"* your|strong=\"H3605\"* elders|strong=\"H2205\"*;" + }, + { + "verseNum": 24, + "text": "and|strong=\"H3068\"* you|strong=\"H3588\"* said|strong=\"H1696\"*, “Behold|strong=\"H2005\"*, Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* shown|strong=\"H7200\"* us|strong=\"H7200\"* his|strong=\"H3068\"* glory|strong=\"H3519\"* and|strong=\"H3068\"* his|strong=\"H3068\"* greatness|strong=\"H1433\"*, and|strong=\"H3068\"* we|strong=\"H3068\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* his|strong=\"H3068\"* voice|strong=\"H6963\"* out|strong=\"H7200\"* of|strong=\"H3068\"* the|strong=\"H8085\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H8085\"* fire. We|strong=\"H3588\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* today|strong=\"H3117\"* that|strong=\"H3588\"* God|strong=\"H3068\"* does|strong=\"H3068\"* speak|strong=\"H1696\"* with|strong=\"H3068\"* man|strong=\"H2088\"*, and|strong=\"H3068\"* he|strong=\"H3588\"* lives|strong=\"H2425\"*." + }, + { + "verseNum": 25, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, why|strong=\"H4100\"* should|strong=\"H3068\"* we|strong=\"H3068\"* die|strong=\"H4191\"*? For|strong=\"H3588\"* this|strong=\"H2063\"* great|strong=\"H1419\"* fire will|strong=\"H3068\"* consume us|strong=\"H3588\"*. If|strong=\"H3588\"* we|strong=\"H3068\"* hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"* any|strong=\"H5750\"* more|strong=\"H3254\"*, then|strong=\"H6258\"* we|strong=\"H3068\"* shall|strong=\"H3068\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 26, + "text": "For|strong=\"H3588\"* who|strong=\"H4310\"* is|strong=\"H4310\"* there|strong=\"H3605\"* of|strong=\"H6963\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"* who|strong=\"H4310\"* has|strong=\"H4310\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H3605\"* living|strong=\"H2416\"* God|strong=\"H4310\"* speaking|strong=\"H1696\"* out|strong=\"H8432\"* of|strong=\"H6963\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H6963\"* the|strong=\"H3605\"* fire, as|strong=\"H3644\"* we|strong=\"H3068\"* have|strong=\"H3605\"*, and|strong=\"H6963\"* lived|strong=\"H2421\"*?" + }, + { + "verseNum": 27, + "text": "Go|strong=\"H7126\"* near|strong=\"H7126\"*, and|strong=\"H3068\"* hear|strong=\"H8085\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* say|strong=\"H1696\"*, and|strong=\"H3068\"* tell|strong=\"H1696\"* us|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* tells|strong=\"H1696\"* you|strong=\"H3605\"*; and|strong=\"H3068\"* we|strong=\"H3068\"* will|strong=\"H3068\"* hear|strong=\"H8085\"* it|strong=\"H7126\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H7126\"*.”" + }, + { + "verseNum": 28, + "text": "Yahweh|strong=\"H3068\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* your|strong=\"H3068\"* words|strong=\"H1697\"* when|strong=\"H8085\"* you|strong=\"H3605\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H6963\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H6963\"*, “I|strong=\"H1697\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"* which|strong=\"H3068\"* they|strong=\"H3068\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3605\"*. They|strong=\"H3068\"* have|strong=\"H3068\"* well|strong=\"H3190\"* said|strong=\"H1696\"* all|strong=\"H3605\"* that|strong=\"H5971\"* they|strong=\"H3068\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 29, + "text": "Oh|strong=\"H4310\"* that|strong=\"H3605\"* there|strong=\"H1961\"* were|strong=\"H1961\"* such|strong=\"H2088\"* a|strong=\"H3068\"* heart|strong=\"H3824\"* in|strong=\"H3117\"* them|strong=\"H5414\"* that|strong=\"H3605\"* they|strong=\"H3117\"* would|strong=\"H4310\"* fear|strong=\"H3372\"* me|strong=\"H5414\"* and|strong=\"H1121\"* keep|strong=\"H8104\"* all|strong=\"H3605\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"* always|strong=\"H3605\"*, that|strong=\"H3605\"* it|strong=\"H5414\"* might|strong=\"H4616\"* be|strong=\"H1961\"* well|strong=\"H3190\"* with|strong=\"H3117\"* them|strong=\"H5414\"* and|strong=\"H1121\"* with|strong=\"H3117\"* their|strong=\"H3605\"* children|strong=\"H1121\"* forever|strong=\"H5769\"*!" + }, + { + "verseNum": 30, + "text": "“Go|strong=\"H3212\"* tell them|strong=\"H7725\"*, ‘Return|strong=\"H7725\"* to|strong=\"H7725\"* your|strong=\"H7725\"* tents.’" + }, + { + "verseNum": 31, + "text": "But|strong=\"H1696\"* as|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H5414\"*, stand|strong=\"H5975\"* here|strong=\"H6311\"* by|strong=\"H5975\"* me|strong=\"H5414\"*, and|strong=\"H4941\"* I|strong=\"H5414\"* will|strong=\"H5414\"* tell|strong=\"H1696\"* you|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* commandments|strong=\"H4687\"*, and|strong=\"H4941\"* the|strong=\"H3605\"* statutes|strong=\"H2706\"*, and|strong=\"H4941\"* the|strong=\"H3605\"* ordinances|strong=\"H4941\"*, which|strong=\"H3605\"* you|strong=\"H5414\"* shall|strong=\"H6213\"* teach|strong=\"H3925\"* them|strong=\"H5414\"*, that|strong=\"H3605\"* they|strong=\"H6213\"* may|strong=\"H6213\"* do|strong=\"H6213\"* them|strong=\"H5414\"* in|strong=\"H6213\"* the|strong=\"H3605\"* land which|strong=\"H3605\"* I|strong=\"H5414\"* give|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H1696\"* possess|strong=\"H3423\"*.”" + }, + { + "verseNum": 32, + "text": "You|strong=\"H6680\"* shall|strong=\"H3068\"* observe|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* therefore|strong=\"H3068\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*. You|strong=\"H6680\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* turn|strong=\"H5493\"* away|strong=\"H5493\"* to|strong=\"H3068\"* the|strong=\"H6213\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* or|strong=\"H3808\"* to|strong=\"H3068\"* the|strong=\"H6213\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 33, + "text": "You|strong=\"H6680\"* shall|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* way|strong=\"H1870\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*, that|strong=\"H3605\"* you|strong=\"H6680\"* may|strong=\"H3068\"* live|strong=\"H2421\"* and|strong=\"H3068\"* that|strong=\"H3605\"* it|strong=\"H3423\"* may|strong=\"H3068\"* be|strong=\"H3068\"* well|strong=\"H2895\"* with|strong=\"H3068\"* you|strong=\"H6680\"*, and|strong=\"H3068\"* that|strong=\"H3605\"* you|strong=\"H6680\"* may|strong=\"H3068\"* prolong your|strong=\"H3068\"* days|strong=\"H3117\"* in|strong=\"H3068\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* you|strong=\"H6680\"* shall|strong=\"H3068\"* possess|strong=\"H3423\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Now these|strong=\"H2063\"* are|strong=\"H3068\"* the|strong=\"H6213\"* commandments|strong=\"H4687\"*, the|strong=\"H6213\"* statutes|strong=\"H2706\"*, and|strong=\"H3068\"* the|strong=\"H6213\"* ordinances|strong=\"H4941\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* to|strong=\"H3068\"* teach|strong=\"H3925\"* you|strong=\"H6680\"*, that|strong=\"H3068\"* you|strong=\"H6680\"* might|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"* in|strong=\"H3068\"* the|strong=\"H6213\"* land that|strong=\"H3068\"* you|strong=\"H6680\"* go|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H3068\"* possess|strong=\"H3423\"*;" + }, + { + "verseNum": 2, + "text": "that|strong=\"H3605\"* you|strong=\"H6680\"* might|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* keep|strong=\"H8104\"* all|strong=\"H3605\"* his|strong=\"H3605\"* statutes|strong=\"H2708\"* and|strong=\"H1121\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"*, which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"*—you|strong=\"H6680\"*, your|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* your|strong=\"H3068\"* son|strong=\"H1121\"*’s son|strong=\"H1121\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H1121\"* your|strong=\"H3068\"* life|strong=\"H2416\"*; and|strong=\"H1121\"* that|strong=\"H3605\"* your|strong=\"H3068\"* days|strong=\"H3117\"* may|strong=\"H3068\"* be|strong=\"H3068\"* prolonged." + }, + { + "verseNum": 3, + "text": "Hear|strong=\"H8085\"* therefore|strong=\"H3068\"*, Israel|strong=\"H3478\"*, and|strong=\"H3478\"* observe|strong=\"H8104\"* to|strong=\"H1696\"* do|strong=\"H6213\"* it|strong=\"H6213\"*, that|strong=\"H8085\"* it|strong=\"H6213\"* may|strong=\"H3068\"* be|strong=\"H3068\"* well|strong=\"H3190\"* with|strong=\"H2100\"* you|strong=\"H6213\"*, and|strong=\"H3478\"* that|strong=\"H8085\"* you|strong=\"H6213\"* may|strong=\"H3068\"* increase|strong=\"H7235\"* mightily|strong=\"H3966\"*, as|strong=\"H6213\"* Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers, has|strong=\"H3068\"* promised|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H6213\"*, in|strong=\"H3478\"* a|strong=\"H3068\"* land flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H3478\"* honey|strong=\"H1706\"*." + }, + { + "verseNum": 4, + "text": "Hear, Israel|strong=\"H3478\"*: Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*. Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* one|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H3605\"* shall|strong=\"H3068\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*, and|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* might|strong=\"H3966\"*." + }, + { + "verseNum": 6, + "text": "These|strong=\"H3117\"* words|strong=\"H1697\"*, which|strong=\"H1697\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, shall|strong=\"H3117\"* be|strong=\"H1961\"* on|strong=\"H5921\"* your|strong=\"H5921\"* heart|strong=\"H3824\"*;" + }, + { + "verseNum": 7, + "text": "and|strong=\"H1121\"* you|strong=\"H1696\"* shall|strong=\"H1121\"* teach|strong=\"H8150\"* them|strong=\"H1121\"* diligently|strong=\"H8150\"* to|strong=\"H1696\"* your|strong=\"H6965\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* shall|strong=\"H1121\"* talk|strong=\"H1696\"* of|strong=\"H1121\"* them|strong=\"H1121\"* when|strong=\"H1696\"* you|strong=\"H1696\"* sit|strong=\"H3427\"* in|strong=\"H3427\"* your|strong=\"H6965\"* house|strong=\"H1004\"*, and|strong=\"H1121\"* when|strong=\"H1696\"* you|strong=\"H1696\"* walk|strong=\"H3212\"* by|strong=\"H1870\"* the|strong=\"H6965\"* way|strong=\"H1870\"*, and|strong=\"H1121\"* when|strong=\"H1696\"* you|strong=\"H1696\"* lie|strong=\"H7901\"* down|strong=\"H7901\"*, and|strong=\"H1121\"* when|strong=\"H1696\"* you|strong=\"H1696\"* rise|strong=\"H6965\"* up|strong=\"H6965\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H5921\"* shall|strong=\"H5869\"* bind|strong=\"H7194\"* them|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sign on|strong=\"H5921\"* your|strong=\"H5921\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* they|strong=\"H5921\"* shall|strong=\"H5869\"* be|strong=\"H1961\"* for|strong=\"H5921\"* frontlets|strong=\"H2903\"* between|strong=\"H5921\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H5921\"* shall|strong=\"H1004\"* write|strong=\"H3789\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H4201\"* posts|strong=\"H4201\"* of|strong=\"H1004\"* your|strong=\"H5921\"* house|strong=\"H1004\"* and|strong=\"H1004\"* on|strong=\"H5921\"* your|strong=\"H5921\"* gates|strong=\"H8179\"*." + }, + { + "verseNum": 10, + "text": "It|strong=\"H5414\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* brings|strong=\"H5414\"* you|strong=\"H3588\"* into|strong=\"H1961\"* the|strong=\"H3588\"* land which|strong=\"H3068\"* he|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers, to|strong=\"H3068\"* Abraham, to|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* Jacob|strong=\"H3290\"*, to|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"*, great|strong=\"H1419\"* and|strong=\"H3068\"* goodly|strong=\"H2896\"* cities|strong=\"H5892\"* which|strong=\"H3068\"* you|strong=\"H3588\"* didn’t build|strong=\"H1129\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H1004\"* houses|strong=\"H1004\"* full|strong=\"H4392\"* of|strong=\"H1004\"* all|strong=\"H3605\"* good|strong=\"H2898\"* things|strong=\"H3605\"* which|strong=\"H1004\"* you|strong=\"H3605\"* didn’t fill|strong=\"H4390\"*, and|strong=\"H1004\"* cisterns dug out|strong=\"H2672\"* which|strong=\"H1004\"* you|strong=\"H3605\"* didn’t dig|strong=\"H2672\"*, vineyards|strong=\"H3754\"* and|strong=\"H1004\"* olive|strong=\"H2132\"* trees|strong=\"H2132\"* which|strong=\"H1004\"* you|strong=\"H3605\"* didn’t plant|strong=\"H5193\"*, and|strong=\"H1004\"* you|strong=\"H3605\"* shall|strong=\"H1004\"* eat and|strong=\"H1004\"* be|strong=\"H3808\"* full|strong=\"H4392\"*;" + }, + { + "verseNum": 12, + "text": "then|strong=\"H3318\"* beware|strong=\"H8104\"* lest|strong=\"H6435\"* you|strong=\"H6435\"* forget|strong=\"H7911\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H6435\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H8104\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H8104\"* house|strong=\"H1004\"* of|strong=\"H1004\"* bondage|strong=\"H5650\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H5647\"* shall|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*; and|strong=\"H3068\"* you|strong=\"H5647\"* shall|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H5647\"*, and|strong=\"H3068\"* shall|strong=\"H3068\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* his|strong=\"H3068\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H3808\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* go|strong=\"H3212\"* after other gods, of|strong=\"H5971\"* the|strong=\"H5439\"* gods of|strong=\"H5971\"* the|strong=\"H5439\"* peoples|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* around|strong=\"H5439\"* you|strong=\"H3808\"*," + }, + { + "verseNum": 15, + "text": "for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* among|strong=\"H7130\"* you|strong=\"H3588\"* is|strong=\"H3068\"* a|strong=\"H3068\"* jealous|strong=\"H7067\"* God|strong=\"H3068\"*, lest|strong=\"H6435\"* the|strong=\"H6440\"* anger|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* be|strong=\"H3068\"* kindled|strong=\"H2734\"* against|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* he|strong=\"H3588\"* destroy|strong=\"H8045\"* you|strong=\"H3588\"* from|strong=\"H6440\"* off|strong=\"H5921\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* earth." + }, + { + "verseNum": 16, + "text": "You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* tempt|strong=\"H5254\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, as|strong=\"H3068\"* you|strong=\"H3808\"* tempted|strong=\"H5254\"* him|strong=\"H3068\"* in|strong=\"H3068\"* Massah|strong=\"H4532\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H6680\"* shall|strong=\"H3068\"* diligently|strong=\"H8104\"* keep|strong=\"H8104\"* the|strong=\"H8104\"* commandments|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* his|strong=\"H8104\"* testimonies|strong=\"H5713\"*, and|strong=\"H3068\"* his|strong=\"H8104\"* statutes|strong=\"H2706\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H6213\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* is|strong=\"H3068\"* right|strong=\"H3477\"* and|strong=\"H3068\"* good|strong=\"H2896\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, that|strong=\"H3068\"* it|strong=\"H6213\"* may|strong=\"H3068\"* be|strong=\"H3068\"* well|strong=\"H3190\"* with|strong=\"H3068\"* you|strong=\"H6213\"* and|strong=\"H3068\"* that|strong=\"H3068\"* you|strong=\"H6213\"* may|strong=\"H3068\"* go|strong=\"H3190\"* in|strong=\"H3068\"* and|strong=\"H3068\"* possess|strong=\"H3423\"* the|strong=\"H6213\"* good|strong=\"H2896\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers," + }, + { + "verseNum": 19, + "text": "to|strong=\"H1696\"* thrust|strong=\"H1920\"* out|strong=\"H6440\"* all|strong=\"H3605\"* your|strong=\"H3068\"* enemies from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"H3588\"* your|strong=\"H3068\"* son|strong=\"H1121\"* asks|strong=\"H7592\"* you|strong=\"H3588\"* in|strong=\"H3068\"* time|strong=\"H4279\"* to|strong=\"H3068\"* come|strong=\"H4279\"*, saying, “What|strong=\"H4100\"* do|strong=\"H3068\"* the|strong=\"H3588\"* testimonies|strong=\"H5713\"*, the|strong=\"H3588\"* statutes|strong=\"H2706\"*, and|strong=\"H1121\"* the|strong=\"H3588\"* ordinances|strong=\"H4941\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"* mean?”" + }, + { + "verseNum": 21, + "text": "then|strong=\"H1961\"* you|strong=\"H3027\"* shall|strong=\"H3068\"* tell your|strong=\"H3068\"* son|strong=\"H1121\"*, “We were|strong=\"H1961\"* Pharaoh|strong=\"H6547\"*’s slaves|strong=\"H5650\"* in|strong=\"H3068\"* Egypt|strong=\"H4714\"*. Yahweh|strong=\"H3068\"* brought|strong=\"H3318\"* us|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"* with|strong=\"H3068\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*;" + }, + { + "verseNum": 22, + "text": "and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* showed|strong=\"H5414\"* great|strong=\"H1419\"* and|strong=\"H3068\"* awesome|strong=\"H1419\"* signs and|strong=\"H3068\"* wonders|strong=\"H4159\"* on|strong=\"H3068\"* Egypt|strong=\"H4714\"*, on|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H3068\"* on|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, before|strong=\"H5869\"* our|strong=\"H3068\"* eyes|strong=\"H5869\"*;" + }, + { + "verseNum": 23, + "text": "and|strong=\"H8033\"* he|strong=\"H8033\"* brought|strong=\"H3318\"* us|strong=\"H5414\"* out|strong=\"H3318\"* from|strong=\"H3318\"* there|strong=\"H8033\"*, that|strong=\"H4616\"* he|strong=\"H8033\"* might|strong=\"H4616\"* bring|strong=\"H3318\"* us|strong=\"H5414\"* in|strong=\"H5414\"*, to|strong=\"H3318\"* give|strong=\"H5414\"* us|strong=\"H5414\"* the|strong=\"H5414\"* land which|strong=\"H8033\"* he|strong=\"H8033\"* swore|strong=\"H7650\"* to|strong=\"H3318\"* our|strong=\"H5414\"* fathers." + }, + { + "verseNum": 24, + "text": "Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* us|strong=\"H6213\"* to|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H2088\"* statutes|strong=\"H2706\"*, to|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, for|strong=\"H6213\"* our|strong=\"H3068\"* good|strong=\"H2896\"* always|strong=\"H3605\"*, that|strong=\"H3605\"* he|strong=\"H3117\"* might|strong=\"H3068\"* preserve|strong=\"H2421\"* us|strong=\"H6213\"* alive|strong=\"H2421\"*, as|strong=\"H3117\"* we|strong=\"H3068\"* are|strong=\"H3117\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 25, + "text": "It|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* righteousness|strong=\"H6666\"* to|strong=\"H3068\"* us|strong=\"H6213\"*, if|strong=\"H3588\"* we|strong=\"H3068\"* observe|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H2063\"* commandments|strong=\"H4687\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, as|strong=\"H1961\"* he|strong=\"H3588\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* us|strong=\"H6213\"*.”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* brings you|strong=\"H3588\"* into|strong=\"H4480\"* the|strong=\"H6440\"* land|strong=\"H6440\"* where|strong=\"H8033\"* you|strong=\"H3588\"* go|strong=\"H3068\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H3588\"*, and|strong=\"H3068\"* casts out|strong=\"H3423\"* many|strong=\"H7227\"* nations|strong=\"H1471\"* before|strong=\"H6440\"* you|strong=\"H3588\"*—the|strong=\"H6440\"* Hittite|strong=\"H2850\"*, the|strong=\"H6440\"* Girgashite|strong=\"H1622\"*, the|strong=\"H6440\"* Amorite, the|strong=\"H6440\"* Canaanite|strong=\"H3669\"*, the|strong=\"H6440\"* Perizzite|strong=\"H6522\"*, the|strong=\"H6440\"* Hivite|strong=\"H2340\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* Jebusite|strong=\"H2983\"*—seven|strong=\"H7651\"* nations|strong=\"H1471\"* greater|strong=\"H7227\"* and|strong=\"H3068\"* mightier|strong=\"H6099\"* than|strong=\"H4480\"* you|strong=\"H3588\"*;" + }, + { + "verseNum": 2, + "text": "and|strong=\"H3068\"* when|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* delivers|strong=\"H5414\"* them|strong=\"H5414\"* up|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H3068\"* you|strong=\"H5414\"* strike|strong=\"H5221\"* them|strong=\"H5414\"*, then|strong=\"H5414\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* utterly|strong=\"H2763\"* destroy|strong=\"H2763\"* them|strong=\"H5414\"*. You|strong=\"H5414\"* shall|strong=\"H3068\"* make|strong=\"H5414\"* no|strong=\"H3808\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* them|strong=\"H5414\"*, nor|strong=\"H3808\"* show|strong=\"H5414\"* mercy|strong=\"H2603\"* to|strong=\"H3068\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H5414\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* make|strong=\"H5414\"* marriages|strong=\"H2859\"* with|strong=\"H3947\"* them|strong=\"H5414\"*. You|strong=\"H5414\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* give|strong=\"H5414\"* your|strong=\"H5414\"* daughter|strong=\"H1323\"* to|strong=\"H5414\"* his|strong=\"H5414\"* son|strong=\"H1121\"*, nor|strong=\"H3808\"* shall|strong=\"H1121\"* you|strong=\"H5414\"* take|strong=\"H3947\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"* for|strong=\"H1121\"* your|strong=\"H5414\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* that|strong=\"H3588\"* would|strong=\"H3068\"* turn|strong=\"H5493\"* away|strong=\"H5493\"* your|strong=\"H3068\"* sons|strong=\"H1121\"* from|strong=\"H5493\"* following me|strong=\"H5493\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H3068\"* serve|strong=\"H5647\"* other gods. So|strong=\"H5493\"* Yahweh|strong=\"H3068\"*’s anger would|strong=\"H3068\"* be|strong=\"H3068\"* kindled|strong=\"H2734\"* against|strong=\"H2734\"* you|strong=\"H3588\"*, and|strong=\"H1121\"* he|strong=\"H3588\"* would|strong=\"H3068\"* destroy|strong=\"H8045\"* you|strong=\"H3588\"* quickly|strong=\"H4118\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H6213\"* deal|strong=\"H6213\"* with|strong=\"H8313\"* them|strong=\"H1992\"* like|strong=\"H3541\"* this|strong=\"H6213\"*: you|strong=\"H3588\"* shall|strong=\"H6213\"* break|strong=\"H7665\"* down|strong=\"H5422\"* their|strong=\"H1992\"* altars|strong=\"H4196\"*, dash their|strong=\"H1992\"* pillars|strong=\"H4676\"* in|strong=\"H6213\"* pieces|strong=\"H7665\"*, cut|strong=\"H1438\"* down|strong=\"H5422\"* their|strong=\"H1992\"* Asherah poles, and|strong=\"H4196\"* burn|strong=\"H8313\"* their|strong=\"H1992\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* people|strong=\"H5971\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* chosen you|strong=\"H3588\"* to|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* people|strong=\"H5971\"* for|strong=\"H3588\"* his|strong=\"H3605\"* own|strong=\"H1961\"* possession|strong=\"H5459\"*, above|strong=\"H5921\"* all|strong=\"H3605\"* peoples|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H5971\"* on|strong=\"H5921\"* the|strong=\"H3605\"* face|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* didn’t set|strong=\"H2836\"* his|strong=\"H3605\"* love|strong=\"H2836\"* on|strong=\"H3068\"* you|strong=\"H3588\"* nor|strong=\"H3808\"* choose you|strong=\"H3588\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H5971\"* more|strong=\"H7230\"* in|strong=\"H3068\"* number|strong=\"H7230\"* than|strong=\"H3808\"* any|strong=\"H3605\"* people|strong=\"H5971\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H5971\"* the|strong=\"H3605\"* fewest|strong=\"H4592\"* of|strong=\"H3068\"* all|strong=\"H3605\"* peoples|strong=\"H5971\"*;" + }, + { + "verseNum": 8, + "text": "but|strong=\"H3588\"* because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* loves you|strong=\"H3588\"*, and|strong=\"H3068\"* because|strong=\"H3588\"* he|strong=\"H3588\"* desires to|strong=\"H3318\"* keep|strong=\"H8104\"* the|strong=\"H3588\"* oath|strong=\"H7621\"* which|strong=\"H3068\"* he|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H3318\"* your|strong=\"H3068\"* fathers, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3588\"* out|strong=\"H3318\"* with|strong=\"H1004\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"* and|strong=\"H3068\"* redeemed|strong=\"H6299\"* you|strong=\"H3588\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H4428\"* bondage|strong=\"H5650\"*, from|strong=\"H3318\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 9, + "text": "Know|strong=\"H3045\"* therefore|strong=\"H3588\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* himself|strong=\"H1931\"* is|strong=\"H3068\"* God|strong=\"H3068\"*, the|strong=\"H3588\"* faithful|strong=\"H2617\"* God|strong=\"H3068\"*, who|strong=\"H1931\"* keeps|strong=\"H8104\"* covenant|strong=\"H1285\"* and|strong=\"H3068\"* loving kindness|strong=\"H2617\"* to|strong=\"H3068\"* a|strong=\"H3068\"* thousand generations|strong=\"H1755\"* with|strong=\"H3068\"* those|strong=\"H1931\"* who|strong=\"H1931\"* love|strong=\"H2617\"* him|strong=\"H1931\"* and|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H8104\"* commandments|strong=\"H4687\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"H6440\"* repays|strong=\"H7999\"* those|strong=\"H8130\"* who|strong=\"H8130\"* hate|strong=\"H8130\"* him|strong=\"H6440\"* to|strong=\"H6440\"* their|strong=\"H6440\"* face|strong=\"H6440\"*, to|strong=\"H6440\"* destroy them|strong=\"H6440\"*. He|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* slack to|strong=\"H6440\"* him|strong=\"H6440\"* who|strong=\"H8130\"* hates|strong=\"H8130\"* him|strong=\"H6440\"*. He|strong=\"H3808\"* will|strong=\"H3808\"* repay|strong=\"H7999\"* him|strong=\"H6440\"* to|strong=\"H6440\"* his|strong=\"H6440\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H6680\"* shall|strong=\"H3117\"* therefore|strong=\"H6213\"* keep|strong=\"H8104\"* the|strong=\"H6213\"* commandments|strong=\"H4687\"*, the|strong=\"H6213\"* statutes|strong=\"H2706\"*, and|strong=\"H3117\"* the|strong=\"H6213\"* ordinances|strong=\"H4941\"* which|strong=\"H3117\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, to|strong=\"H6213\"* do|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 12, + "text": "It|strong=\"H6213\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"*, because|strong=\"H6118\"* you|strong=\"H6213\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* these|strong=\"H6213\"* ordinances|strong=\"H4941\"* and|strong=\"H3068\"* keep|strong=\"H8104\"* and|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"*, that|strong=\"H8085\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* keep|strong=\"H8104\"* with|strong=\"H3068\"* you|strong=\"H6213\"* the|strong=\"H8085\"* covenant|strong=\"H1285\"* and|strong=\"H3068\"* the|strong=\"H8085\"* loving kindness|strong=\"H2617\"* which|strong=\"H3068\"* he|strong=\"H6213\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers." + }, + { + "verseNum": 13, + "text": "He|strong=\"H5414\"* will|strong=\"H5414\"* love you|strong=\"H5414\"*, bless|strong=\"H1288\"* you|strong=\"H5414\"*, and|strong=\"H6629\"* multiply|strong=\"H7235\"* you|strong=\"H5414\"*. He|strong=\"H5414\"* will|strong=\"H5414\"* also bless|strong=\"H1288\"* the|strong=\"H5921\"* fruit|strong=\"H6529\"* of|strong=\"H5921\"* your|strong=\"H5414\"* body and|strong=\"H6629\"* the|strong=\"H5921\"* fruit|strong=\"H6529\"* of|strong=\"H5921\"* your|strong=\"H5414\"* ground, your|strong=\"H5414\"* grain|strong=\"H1715\"* and|strong=\"H6629\"* your|strong=\"H5414\"* new|strong=\"H8492\"* wine|strong=\"H8492\"* and|strong=\"H6629\"* your|strong=\"H5414\"* oil|strong=\"H3323\"*, the|strong=\"H5921\"* increase|strong=\"H7235\"* of|strong=\"H5921\"* your|strong=\"H5414\"* livestock and|strong=\"H6629\"* the|strong=\"H5921\"* young|strong=\"H6251\"* of|strong=\"H5921\"* your|strong=\"H5414\"* flock|strong=\"H6629\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* land which he|strong=\"H5414\"* swore|strong=\"H7650\"* to|strong=\"H5921\"* your|strong=\"H5414\"* fathers to|strong=\"H5921\"* give|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H3605\"* will|strong=\"H1961\"* be|strong=\"H1961\"* blessed|strong=\"H1288\"* above|strong=\"H1288\"* all|strong=\"H3605\"* peoples|strong=\"H5971\"*. There|strong=\"H1961\"* won’t be|strong=\"H1961\"* male|strong=\"H6135\"* or|strong=\"H3808\"* female barren|strong=\"H6135\"* among|strong=\"H5971\"* you|strong=\"H3605\"*, or|strong=\"H3808\"* among|strong=\"H5971\"* your|strong=\"H3605\"* livestock." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* take|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* you|strong=\"H5414\"* all|strong=\"H3605\"* sickness|strong=\"H2483\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* put|strong=\"H5414\"* none|strong=\"H3808\"* of|strong=\"H3068\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* diseases|strong=\"H4064\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, which|strong=\"H3068\"* you|strong=\"H5414\"* know|strong=\"H3045\"*, on|strong=\"H7760\"* you|strong=\"H5414\"*, but|strong=\"H3808\"* will|strong=\"H3068\"* lay|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H7760\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* hate|strong=\"H8130\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 16, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* consume all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* whom|strong=\"H5971\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* deliver|strong=\"H5414\"* to|strong=\"H3068\"* you|strong=\"H3588\"*. Your|strong=\"H3068\"* eye|strong=\"H5869\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* pity|strong=\"H2347\"* them|strong=\"H5414\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* serve|strong=\"H5647\"* their|strong=\"H3605\"* gods; for|strong=\"H3588\"* that|strong=\"H3588\"* would|strong=\"H3068\"* be|strong=\"H3808\"* a|strong=\"H3068\"* snare|strong=\"H4170\"* to|strong=\"H3068\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 17, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H1471\"* say in|strong=\"H7227\"* your|strong=\"H3588\"* heart|strong=\"H3824\"*, “These nations|strong=\"H1471\"* are|strong=\"H1471\"* more|strong=\"H4480\"* than|strong=\"H4480\"* I|strong=\"H3588\"*; how|strong=\"H3588\"* can|strong=\"H3201\"* I|strong=\"H3588\"* dispossess|strong=\"H3423\"* them|strong=\"H3423\"*?”" + }, + { + "verseNum": 18, + "text": "you|strong=\"H3605\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* afraid|strong=\"H3372\"* of|strong=\"H3068\"* them|strong=\"H1992\"*. You|strong=\"H3605\"* shall|strong=\"H3068\"* remember|strong=\"H2142\"* well|strong=\"H2142\"* what|strong=\"H6213\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* did|strong=\"H6213\"* to|strong=\"H3068\"* Pharaoh|strong=\"H6547\"* and|strong=\"H3068\"* to|strong=\"H3068\"* all|strong=\"H3605\"* Egypt|strong=\"H4714\"*:" + }, + { + "verseNum": 19, + "text": "the|strong=\"H3605\"* great|strong=\"H1419\"* trials|strong=\"H4531\"* which|strong=\"H3068\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"* saw|strong=\"H7200\"*, the|strong=\"H3605\"* signs, the|strong=\"H3605\"* wonders|strong=\"H4159\"*, the|strong=\"H3605\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*, by|strong=\"H3027\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H6440\"* out|strong=\"H3318\"*. So|strong=\"H3651\"* shall|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H3068\"* whom|strong=\"H6440\"* you|strong=\"H6440\"* are|strong=\"H5971\"* afraid|strong=\"H3373\"*." + }, + { + "verseNum": 20, + "text": "Moreover|strong=\"H1571\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* send|strong=\"H7971\"* the|strong=\"H6440\"* hornet|strong=\"H6880\"* among them|strong=\"H7971\"*, until|strong=\"H5704\"* those who|strong=\"H3068\"* are|strong=\"H3068\"* left|strong=\"H7604\"*, and|strong=\"H3068\"* hide|strong=\"H5641\"* themselves|strong=\"H5641\"*, perish from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* scared of|strong=\"H3068\"* them|strong=\"H6440\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* is|strong=\"H3068\"* among|strong=\"H7130\"* you|strong=\"H3588\"*, a|strong=\"H3068\"* great|strong=\"H1419\"* and|strong=\"H3068\"* awesome|strong=\"H3372\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* cast|strong=\"H3068\"* out|strong=\"H5921\"* those|strong=\"H5921\"* nations|strong=\"H1471\"* before|strong=\"H6440\"* you|strong=\"H6440\"* little|strong=\"H4592\"* by|strong=\"H5921\"* little|strong=\"H4592\"*. You|strong=\"H6440\"* may|strong=\"H3201\"* not|strong=\"H3808\"* consume|strong=\"H3615\"* them|strong=\"H5921\"* at|strong=\"H5921\"* once|strong=\"H4118\"*, lest|strong=\"H6435\"* the|strong=\"H6440\"* animals|strong=\"H2416\"* of|strong=\"H3068\"* the|strong=\"H6440\"* field|strong=\"H7704\"* increase|strong=\"H7235\"* on|strong=\"H5921\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* up|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* confuse|strong=\"H2000\"* them|strong=\"H5414\"* with|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* confusion|strong=\"H4103\"*, until|strong=\"H5704\"* they|strong=\"H3068\"* are|strong=\"H3068\"* destroyed|strong=\"H8045\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H5704\"* will|strong=\"H4428\"* deliver|strong=\"H5414\"* their|strong=\"H5414\"* kings|strong=\"H4428\"* into|strong=\"H3027\"* your|strong=\"H5414\"* hand|strong=\"H3027\"*, and|strong=\"H4428\"* you|strong=\"H5414\"* shall|strong=\"H4428\"* make|strong=\"H5414\"* their|strong=\"H5414\"* name|strong=\"H8034\"* perish from|strong=\"H6440\"* under|strong=\"H8478\"* the|strong=\"H6440\"* sky|strong=\"H8064\"*. No|strong=\"H3808\"* one|strong=\"H3808\"* will|strong=\"H4428\"* be|strong=\"H3808\"* able|strong=\"H3027\"* to|strong=\"H5704\"* stand|strong=\"H3320\"* before|strong=\"H6440\"* you|strong=\"H5414\"* until|strong=\"H5704\"* you|strong=\"H5414\"* have|strong=\"H3027\"* destroyed|strong=\"H8045\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* burn|strong=\"H8313\"* the|strong=\"H5921\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"* of|strong=\"H3068\"* their|strong=\"H3068\"* gods with|strong=\"H8313\"* fire. You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* covet|strong=\"H2530\"* the|strong=\"H5921\"* silver|strong=\"H3701\"* or|strong=\"H3808\"* the|strong=\"H5921\"* gold|strong=\"H2091\"* that|strong=\"H3588\"* is|strong=\"H3068\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, nor|strong=\"H3808\"* take|strong=\"H3947\"* it|strong=\"H1931\"* for|strong=\"H3588\"* yourself|strong=\"H5921\"*, lest|strong=\"H6435\"* you|strong=\"H3588\"* be|strong=\"H3808\"* snared|strong=\"H3369\"* in|strong=\"H5921\"* it|strong=\"H1931\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* an|strong=\"H3947\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 26, + "text": "You|strong=\"H3588\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* bring|strong=\"H1961\"* an|strong=\"H1961\"* abomination|strong=\"H8441\"* into|strong=\"H1961\"* your|strong=\"H3588\"* house|strong=\"H1004\"* and|strong=\"H1004\"* become|strong=\"H1961\"* a|strong=\"H3068\"* devoted|strong=\"H2764\"* thing|strong=\"H2764\"* like|strong=\"H3644\"* it|strong=\"H1931\"*. You|strong=\"H3588\"* shall|strong=\"H1004\"* utterly|strong=\"H8581\"* detest|strong=\"H8262\"* it|strong=\"H1931\"*. You|strong=\"H3588\"* shall|strong=\"H1004\"* utterly|strong=\"H8581\"* abhor|strong=\"H8581\"* it|strong=\"H1931\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* devoted|strong=\"H2764\"* thing|strong=\"H2764\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "You|strong=\"H6680\"* shall|strong=\"H3068\"* observe|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* commandments|strong=\"H4687\"* which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, that|strong=\"H3605\"* you|strong=\"H6680\"* may|strong=\"H3068\"* live|strong=\"H2421\"*, and|strong=\"H3068\"* multiply|strong=\"H7235\"*, and|strong=\"H3068\"* go|strong=\"H3068\"* in|strong=\"H3068\"* and|strong=\"H3068\"* possess|strong=\"H3423\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers." + }, + { + "verseNum": 2, + "text": "You|strong=\"H3605\"* shall|strong=\"H3068\"* remember|strong=\"H2142\"* all|strong=\"H3605\"* the|strong=\"H3605\"* way|strong=\"H1870\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* led|strong=\"H3212\"* you|strong=\"H3605\"* these|strong=\"H2088\"* forty years|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*, that|strong=\"H3045\"* he|strong=\"H3068\"* might|strong=\"H3068\"* humble|strong=\"H6031\"* you|strong=\"H3605\"*, to|strong=\"H3068\"* test|strong=\"H5254\"* you|strong=\"H3605\"*, to|strong=\"H3068\"* know|strong=\"H3045\"* what|strong=\"H2088\"* was|strong=\"H3068\"* in|strong=\"H8141\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*, whether|strong=\"H3045\"* you|strong=\"H3605\"* would|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"* or|strong=\"H3808\"* not|strong=\"H3808\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3588\"* humbled|strong=\"H6031\"* you|strong=\"H3588\"*, allowed|strong=\"H3068\"* you|strong=\"H3588\"* to|strong=\"H3068\"* be|strong=\"H3808\"* hungry|strong=\"H7456\"*, and|strong=\"H3068\"* fed you|strong=\"H3588\"* with|strong=\"H3068\"* manna|strong=\"H4478\"*, which|strong=\"H3068\"* you|strong=\"H3588\"* didn’t know|strong=\"H3045\"*, neither|strong=\"H3808\"* did|strong=\"H3068\"* your|strong=\"H3068\"* fathers know|strong=\"H3045\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* might|strong=\"H3068\"* teach|strong=\"H3045\"* you|strong=\"H3588\"* that|strong=\"H3588\"* man|strong=\"H3605\"* does|strong=\"H3808\"* not|strong=\"H3808\"* live|strong=\"H2421\"* by|strong=\"H5921\"* bread|strong=\"H3899\"* only|strong=\"H3588\"*, but|strong=\"H3588\"* man|strong=\"H3605\"* lives|strong=\"H2421\"* by|strong=\"H5921\"* every|strong=\"H3605\"* word|strong=\"H6310\"* that|strong=\"H3588\"* proceeds|strong=\"H4161\"* out|strong=\"H4161\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s mouth|strong=\"H6310\"*." + }, + { + "verseNum": 4, + "text": "Your|strong=\"H5921\"* clothing|strong=\"H8071\"* didn’t grow old|strong=\"H1086\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, neither|strong=\"H3808\"* did|strong=\"H3808\"* your|strong=\"H5921\"* foot|strong=\"H7272\"* swell|strong=\"H1216\"*, these|strong=\"H2088\"* forty years|strong=\"H8141\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* consider|strong=\"H3045\"* in|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* that|strong=\"H3588\"* as|strong=\"H3824\"* a|strong=\"H3068\"* man|strong=\"H1121\"* disciplines|strong=\"H3256\"* his|strong=\"H3068\"* son|strong=\"H1121\"*, so|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* disciplines|strong=\"H3256\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3372\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* the|strong=\"H8104\"* commandments|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* his|strong=\"H8104\"* ways|strong=\"H1870\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* fear|strong=\"H3372\"* him|strong=\"H8104\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* brings|strong=\"H3318\"* you|strong=\"H3588\"* into|strong=\"H3318\"* a|strong=\"H3068\"* good|strong=\"H2896\"* land, a|strong=\"H3068\"* land of|strong=\"H3068\"* brooks|strong=\"H5158\"* of|strong=\"H3068\"* water|strong=\"H4325\"*, of|strong=\"H3068\"* springs|strong=\"H8415\"*, and|strong=\"H3068\"* underground|strong=\"H8415\"* water|strong=\"H4325\"* flowing|strong=\"H3318\"* into|strong=\"H3318\"* valleys|strong=\"H1237\"* and|strong=\"H3068\"* hills|strong=\"H2022\"*;" + }, + { + "verseNum": 8, + "text": "a|strong=\"H3068\"* land of|strong=\"H1612\"* wheat|strong=\"H2406\"*, barley|strong=\"H8184\"*, vines|strong=\"H1612\"*, fig|strong=\"H8384\"* trees|strong=\"H2132\"*, and|strong=\"H8081\"* pomegranates|strong=\"H7416\"*; a|strong=\"H3068\"* land of|strong=\"H1612\"* olive|strong=\"H2132\"* trees|strong=\"H2132\"* and|strong=\"H8081\"* honey|strong=\"H1706\"*;" + }, + { + "verseNum": 9, + "text": "a|strong=\"H3068\"* land in|strong=\"H3899\"* which|strong=\"H3899\"* you|strong=\"H3605\"* shall|strong=\"H3808\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* without|strong=\"H3808\"* scarcity|strong=\"H4544\"*, you|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* lack|strong=\"H2637\"* anything|strong=\"H3605\"* in|strong=\"H3899\"* it|strong=\"H3808\"*; a|strong=\"H3068\"* land whose|strong=\"H3605\"* stones are|strong=\"H1270\"* iron|strong=\"H1270\"*, and|strong=\"H3899\"* out|strong=\"H2672\"* of|strong=\"H3605\"* whose|strong=\"H3605\"* hills|strong=\"H2042\"* you|strong=\"H3605\"* may|strong=\"H5178\"* dig|strong=\"H2672\"* copper|strong=\"H5178\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* eat and|strong=\"H3068\"* be|strong=\"H3068\"* full|strong=\"H7646\"*, and|strong=\"H3068\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* bless|strong=\"H1288\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* for|strong=\"H5921\"* the|strong=\"H5921\"* good|strong=\"H2896\"* land which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 11, + "text": "Beware|strong=\"H8104\"* lest|strong=\"H6435\"* you|strong=\"H6680\"* forget|strong=\"H7911\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, in|strong=\"H3068\"* not|strong=\"H1115\"* keeping|strong=\"H8104\"* his|strong=\"H8104\"* commandments|strong=\"H4687\"*, his|strong=\"H8104\"* ordinances|strong=\"H4941\"*, and|strong=\"H3068\"* his|strong=\"H8104\"* statutes|strong=\"H2708\"*, which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*;" + }, + { + "verseNum": 12, + "text": "lest|strong=\"H6435\"*, when|strong=\"H3427\"* you|strong=\"H6435\"* have|strong=\"H7646\"* eaten and|strong=\"H1004\"* are|strong=\"H1004\"* full|strong=\"H7646\"*, and|strong=\"H1004\"* have|strong=\"H7646\"* built|strong=\"H1129\"* fine|strong=\"H2896\"* houses|strong=\"H1004\"* and|strong=\"H1004\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* them|strong=\"H3427\"*;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H3701\"* when|strong=\"H7235\"* your|strong=\"H3605\"* herds|strong=\"H1241\"* and|strong=\"H3701\"* your|strong=\"H3605\"* flocks|strong=\"H6629\"* multiply|strong=\"H7235\"*, and|strong=\"H3701\"* your|strong=\"H3605\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* your|strong=\"H3605\"* gold|strong=\"H2091\"* is|strong=\"H3701\"* multiplied|strong=\"H7235\"*, and|strong=\"H3701\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H3605\"* is|strong=\"H3701\"* multiplied|strong=\"H7235\"*;" + }, + { + "verseNum": 14, + "text": "then|strong=\"H3318\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* might|strong=\"H3068\"* be|strong=\"H3068\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"*, and|strong=\"H3068\"* you|strong=\"H3824\"* forget|strong=\"H7911\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3824\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3068\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* bondage|strong=\"H5650\"*;" + }, + { + "verseNum": 15, + "text": "who|strong=\"H6697\"* led|strong=\"H3212\"* you|strong=\"H3372\"* through|strong=\"H3212\"* the|strong=\"H3318\"* great|strong=\"H1419\"* and|strong=\"H1419\"* terrible|strong=\"H3372\"* wilderness|strong=\"H4057\"*, with|strong=\"H3318\"* venomous snakes|strong=\"H5175\"* and|strong=\"H1419\"* scorpions|strong=\"H6137\"*, and|strong=\"H1419\"* thirsty|strong=\"H6774\"* ground|strong=\"H6774\"* where there was|strong=\"H4325\"* no|strong=\"H3372\"* water|strong=\"H4325\"*; who|strong=\"H6697\"* poured water|strong=\"H4325\"* for|strong=\"H4325\"* you|strong=\"H3372\"* out|strong=\"H3318\"* of|strong=\"H4325\"* the|strong=\"H3318\"* rock|strong=\"H6697\"* of|strong=\"H4325\"* flint|strong=\"H2496\"*;" + }, + { + "verseNum": 16, + "text": "who|strong=\"H3045\"* fed you|strong=\"H3045\"* in|strong=\"H3808\"* the|strong=\"H3045\"* wilderness|strong=\"H4057\"* with|strong=\"H3045\"* manna|strong=\"H4478\"*, which|strong=\"H4057\"* your|strong=\"H3045\"* fathers didn’t know|strong=\"H3045\"*, that|strong=\"H3045\"* he|strong=\"H3808\"* might|strong=\"H4616\"* humble|strong=\"H6031\"* you|strong=\"H3045\"*, and|strong=\"H3045\"* that|strong=\"H3045\"* he|strong=\"H3808\"* might|strong=\"H4616\"* prove|strong=\"H5254\"* you|strong=\"H3045\"*, to|strong=\"H4616\"* do|strong=\"H3190\"* you|strong=\"H3045\"* good|strong=\"H3190\"* at|strong=\"H3808\"* your|strong=\"H3045\"* latter end|strong=\"H4616\"*;" + }, + { + "verseNum": 17, + "text": "and|strong=\"H3027\"* lest you|strong=\"H6213\"* say in|strong=\"H6213\"* your|strong=\"H6213\"* heart|strong=\"H3824\"*, “My|strong=\"H6213\"* power|strong=\"H3027\"* and|strong=\"H3027\"* the|strong=\"H6213\"* might|strong=\"H3581\"* of|strong=\"H3027\"* my|strong=\"H6213\"* hand|strong=\"H3027\"* has|strong=\"H3027\"* gotten|strong=\"H6213\"* me|strong=\"H6213\"* this|strong=\"H2088\"* wealth|strong=\"H2428\"*.”" + }, + { + "verseNum": 18, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* remember|strong=\"H2142\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, for|strong=\"H3588\"* it|strong=\"H5414\"* is|strong=\"H3068\"* he|strong=\"H1931\"* who|strong=\"H1931\"* gives|strong=\"H5414\"* you|strong=\"H3588\"* power|strong=\"H3581\"* to|strong=\"H3068\"* get|strong=\"H6965\"* wealth|strong=\"H2428\"*, that|strong=\"H3588\"* he|strong=\"H1931\"* may|strong=\"H3068\"* establish|strong=\"H6965\"* his|strong=\"H5414\"* covenant|strong=\"H1285\"* which|strong=\"H1931\"* he|strong=\"H1931\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers, as|strong=\"H3117\"* it|strong=\"H5414\"* is|strong=\"H3068\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 19, + "text": "It|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* forget|strong=\"H7911\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H1980\"* walk|strong=\"H1980\"* after|strong=\"H1961\"* other gods|strong=\"H1980\"*, and|strong=\"H1980\"* serve|strong=\"H5647\"* them|strong=\"H1961\"* and|strong=\"H1980\"* worship|strong=\"H7812\"* them|strong=\"H1961\"*, I|strong=\"H3588\"* testify|strong=\"H5749\"* against|strong=\"H5749\"* you|strong=\"H3588\"* today|strong=\"H3117\"* that|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* surely|strong=\"H3588\"* perish." + }, + { + "verseNum": 20, + "text": "As|strong=\"H3651\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* that|strong=\"H8085\"* Yahweh|strong=\"H3068\"* makes|strong=\"H6440\"* to|strong=\"H3068\"* perish before|strong=\"H6440\"* you|strong=\"H6440\"*, so|strong=\"H3651\"* you|strong=\"H6440\"* shall|strong=\"H3068\"* perish, because|strong=\"H6440\"* you|strong=\"H6440\"* wouldn’t listen|strong=\"H8085\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Hear|strong=\"H8085\"*, Israel|strong=\"H3478\"*! You|strong=\"H3117\"* are|strong=\"H3117\"* to|strong=\"H3478\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H8085\"* Jordan|strong=\"H3383\"* today|strong=\"H3117\"*, to|strong=\"H3478\"* go|strong=\"H5674\"* in|strong=\"H3478\"* to|strong=\"H3478\"* dispossess|strong=\"H3423\"* nations|strong=\"H1471\"* greater|strong=\"H1419\"* and|strong=\"H3478\"* mightier|strong=\"H6099\"* than|strong=\"H4480\"* yourself, cities|strong=\"H5892\"* great|strong=\"H1419\"* and|strong=\"H3478\"* fortified|strong=\"H1219\"* up|strong=\"H1219\"* to|strong=\"H3478\"* the|strong=\"H8085\"* sky|strong=\"H8064\"*," + }, + { + "verseNum": 2, + "text": "a|strong=\"H3068\"* people|strong=\"H5971\"* great|strong=\"H1419\"* and|strong=\"H1121\"* tall|strong=\"H7311\"*, the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Anakim|strong=\"H6062\"*, whom|strong=\"H4310\"* you|strong=\"H6440\"* know|strong=\"H3045\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* whom|strong=\"H4310\"* you|strong=\"H6440\"* have|strong=\"H5971\"* heard|strong=\"H8085\"* say, “Who|strong=\"H4310\"* can|strong=\"H4310\"* stand|strong=\"H3320\"* before|strong=\"H6440\"* the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Anak|strong=\"H6061\"*?”" + }, + { + "verseNum": 3, + "text": "Know|strong=\"H3045\"* therefore|strong=\"H3588\"* today|strong=\"H3117\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* is|strong=\"H3068\"* he|strong=\"H1931\"* who|strong=\"H1931\"* goes|strong=\"H6440\"* over|strong=\"H5674\"* before|strong=\"H6440\"* you|strong=\"H3588\"* as|strong=\"H3117\"* a|strong=\"H3068\"* devouring fire. He|strong=\"H1931\"* will|strong=\"H3068\"* destroy|strong=\"H8045\"* them|strong=\"H6440\"* and|strong=\"H3068\"* he|strong=\"H1931\"* will|strong=\"H3068\"* bring|strong=\"H5674\"* them|strong=\"H6440\"* down|strong=\"H3665\"* before|strong=\"H6440\"* you|strong=\"H3588\"*. So|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* drive|strong=\"H3423\"* them|strong=\"H6440\"* out|strong=\"H3423\"* and|strong=\"H3068\"* make|strong=\"H3045\"* them|strong=\"H6440\"* perish|strong=\"H5674\"* quickly|strong=\"H4118\"*, as|strong=\"H3117\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 4, + "text": "Don’t say in|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*, after Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* thrust|strong=\"H1920\"* them|strong=\"H6440\"* out|strong=\"H3423\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, “For|strong=\"H6440\"* my|strong=\"H3068\"* righteousness|strong=\"H6666\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* brought|strong=\"H3068\"* me|strong=\"H6440\"* in|strong=\"H3068\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* this|strong=\"H2063\"* land|strong=\"H6440\"*;” because|strong=\"H6440\"* Yahweh|strong=\"H3068\"* drives them|strong=\"H6440\"* out|strong=\"H3423\"* before|strong=\"H6440\"* you|strong=\"H6440\"* because|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* wickedness|strong=\"H7564\"* of|strong=\"H3068\"* these|strong=\"H2063\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 5, + "text": "Not|strong=\"H3808\"* for|strong=\"H3588\"* your|strong=\"H3068\"* righteousness|strong=\"H6666\"* or|strong=\"H3808\"* for|strong=\"H3588\"* the|strong=\"H6440\"* uprightness|strong=\"H3476\"* of|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* do|strong=\"H3068\"* you|strong=\"H3588\"* go|strong=\"H6965\"* in|strong=\"H3068\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* their|strong=\"H3068\"* land|strong=\"H6440\"*; but|strong=\"H3588\"* for|strong=\"H3588\"* the|strong=\"H6440\"* wickedness|strong=\"H7564\"* of|strong=\"H3068\"* these|strong=\"H6965\"* nations|strong=\"H1471\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* does|strong=\"H3808\"* drive|strong=\"H3423\"* them|strong=\"H6440\"* out|strong=\"H3423\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, and|strong=\"H6965\"* that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H3068\"* establish|strong=\"H6965\"* the|strong=\"H6440\"* word|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers, to|strong=\"H3068\"* Abraham, to|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H6965\"* to|strong=\"H3068\"* Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 6, + "text": "Know|strong=\"H3045\"* therefore|strong=\"H3588\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* doesn’t give|strong=\"H5414\"* you|strong=\"H3588\"* this|strong=\"H2063\"* good|strong=\"H2896\"* land to|strong=\"H3068\"* possess|strong=\"H3423\"* for|strong=\"H3588\"* your|strong=\"H3068\"* righteousness|strong=\"H6666\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* a|strong=\"H3068\"* stiff-necked people|strong=\"H5971\"*." + }, + { + "verseNum": 7, + "text": "Remember|strong=\"H2142\"*, and|strong=\"H3068\"* don’t forget|strong=\"H7911\"*, how|strong=\"H5704\"* you|strong=\"H3117\"* provoked|strong=\"H7107\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* to|strong=\"H5704\"* wrath|strong=\"H7107\"* in|strong=\"H3068\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"*. From|strong=\"H4480\"* the|strong=\"H3068\"* day|strong=\"H3117\"* that|strong=\"H3117\"* you|strong=\"H3117\"* left|strong=\"H3318\"* the|strong=\"H3068\"* land|strong=\"H4725\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"* until|strong=\"H5704\"* you|strong=\"H3117\"* came|strong=\"H1961\"* to|strong=\"H5704\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, you|strong=\"H3117\"* have|strong=\"H1961\"* been|strong=\"H1961\"* rebellious|strong=\"H4784\"* against|strong=\"H5973\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "Also|strong=\"H3068\"* in|strong=\"H3068\"* Horeb|strong=\"H2722\"* you|strong=\"H8045\"* provoked|strong=\"H7107\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* wrath|strong=\"H7107\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* angry|strong=\"H7107\"* with|strong=\"H3068\"* you|strong=\"H8045\"* to|strong=\"H3068\"* destroy|strong=\"H8045\"* you|strong=\"H8045\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"H3117\"* I|strong=\"H3117\"* had|strong=\"H3068\"* gone|strong=\"H5927\"* up|strong=\"H5927\"* onto the|strong=\"H3947\"* mountain|strong=\"H2022\"* to|strong=\"H3068\"* receive|strong=\"H3947\"* the|strong=\"H3947\"* stone tablets|strong=\"H3871\"*, even|strong=\"H3808\"* the|strong=\"H3947\"* tablets|strong=\"H3871\"* of|strong=\"H3068\"* the|strong=\"H3947\"* covenant|strong=\"H1285\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* made|strong=\"H3772\"* with|strong=\"H5973\"* you|strong=\"H3117\"*, then|strong=\"H3947\"* I|strong=\"H3117\"* stayed|strong=\"H3427\"* on|strong=\"H3117\"* the|strong=\"H3947\"* mountain|strong=\"H2022\"* forty days|strong=\"H3117\"* and|strong=\"H3068\"* forty nights|strong=\"H3915\"*. I|strong=\"H3117\"* neither|strong=\"H3808\"* ate bread|strong=\"H3899\"* nor|strong=\"H3808\"* drank|strong=\"H8354\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* to|strong=\"H1696\"* me|strong=\"H5414\"* the|strong=\"H3605\"* two|strong=\"H8147\"* stone tablets|strong=\"H3871\"* written|strong=\"H3789\"* with|strong=\"H5973\"* God|strong=\"H3068\"*’s finger. On|strong=\"H5921\"* them|strong=\"H5414\"* were|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* with|strong=\"H5973\"* you|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* out|strong=\"H5414\"* of|strong=\"H3068\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H3605\"* fire in|strong=\"H5921\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*." + }, + { + "verseNum": 11, + "text": "It|strong=\"H5414\"* came|strong=\"H1961\"* to|strong=\"H3068\"* pass|strong=\"H1961\"* at|strong=\"H3068\"* the|strong=\"H5414\"* end|strong=\"H7093\"* of|strong=\"H3068\"* forty days|strong=\"H3117\"* and|strong=\"H3068\"* forty nights|strong=\"H3915\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* me|strong=\"H5414\"* the|strong=\"H5414\"* two|strong=\"H8147\"* stone tablets|strong=\"H3871\"*, even|strong=\"H3068\"* the|strong=\"H5414\"* tablets|strong=\"H3871\"* of|strong=\"H3068\"* the|strong=\"H5414\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H3318\"* to|strong=\"H3381\"* me|strong=\"H4480\"*, “Arise|strong=\"H6965\"*, get|strong=\"H6965\"* down|strong=\"H3381\"* quickly|strong=\"H4118\"* from|strong=\"H4480\"* here|strong=\"H2088\"*; for|strong=\"H3588\"* your|strong=\"H3068\"* people|strong=\"H5971\"* whom|strong=\"H5971\"* you|strong=\"H3588\"* have|strong=\"H3068\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"* have|strong=\"H3068\"* corrupted|strong=\"H7843\"* themselves|strong=\"H6213\"*. They|strong=\"H3588\"* have|strong=\"H3068\"* quickly|strong=\"H4118\"* turned|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* the|strong=\"H3588\"* way|strong=\"H1870\"* which|strong=\"H3068\"* I|strong=\"H3588\"* commanded|strong=\"H6680\"* them|strong=\"H6213\"*. They|strong=\"H3588\"* have|strong=\"H3068\"* made|strong=\"H6213\"* a|strong=\"H3068\"* molten|strong=\"H4541\"* image|strong=\"H4541\"* for|strong=\"H3588\"* themselves|strong=\"H6213\"*!”" + }, + { + "verseNum": 13, + "text": "Furthermore|strong=\"H2009\"* Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* me|strong=\"H7200\"*, saying, “I|strong=\"H2009\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* these|strong=\"H2088\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* behold|strong=\"H2009\"*, they|strong=\"H3068\"* are|strong=\"H5971\"* a|strong=\"H3068\"* stiff-necked people|strong=\"H5971\"*." + }, + { + "verseNum": 14, + "text": "Leave|strong=\"H4480\"* me|strong=\"H4480\"* alone|strong=\"H7503\"*, that|strong=\"H1471\"* I|strong=\"H8478\"* may|strong=\"H1471\"* destroy|strong=\"H8045\"* them|strong=\"H6213\"*, and|strong=\"H8064\"* blot|strong=\"H4229\"* out|strong=\"H4229\"* their|strong=\"H6213\"* name|strong=\"H8034\"* from|strong=\"H4480\"* under|strong=\"H8478\"* the|strong=\"H6213\"* sky|strong=\"H8064\"*; and|strong=\"H8064\"* I|strong=\"H8478\"* will|strong=\"H1471\"* make|strong=\"H6213\"* of|strong=\"H8034\"* you|strong=\"H6213\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* mightier|strong=\"H6099\"* and|strong=\"H8064\"* greater|strong=\"H7227\"* than|strong=\"H4480\"* they|strong=\"H6213\"*.”" + }, + { + "verseNum": 15, + "text": "So|strong=\"H4480\"* I|strong=\"H5921\"* turned|strong=\"H6437\"* and|strong=\"H3027\"* came|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"*, and|strong=\"H3027\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"* was|strong=\"H3027\"* burning|strong=\"H1197\"* with|strong=\"H1285\"* fire. The|strong=\"H5921\"* two|strong=\"H8147\"* tablets|strong=\"H3871\"* of|strong=\"H3027\"* the|strong=\"H5921\"* covenant|strong=\"H1285\"* were|strong=\"H2022\"* in|strong=\"H5921\"* my|strong=\"H5921\"* two|strong=\"H8147\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"H2009\"* looked|strong=\"H7200\"*, and|strong=\"H3068\"* behold|strong=\"H2009\"*, you|strong=\"H6680\"* had|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H4480\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. You|strong=\"H6680\"* had|strong=\"H3068\"* made|strong=\"H6213\"* yourselves|strong=\"H3068\"* a|strong=\"H3068\"* molded calf|strong=\"H5695\"*. You|strong=\"H6680\"* had|strong=\"H3068\"* quickly|strong=\"H4118\"* turned|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* the|strong=\"H7200\"* way|strong=\"H1870\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H5921\"* took|strong=\"H8610\"* hold|strong=\"H8610\"* of|strong=\"H3027\"* the|strong=\"H5921\"* two|strong=\"H8147\"* tablets|strong=\"H3871\"*, and|strong=\"H3027\"* threw|strong=\"H7993\"* them|strong=\"H5921\"* out|strong=\"H7993\"* of|strong=\"H3027\"* my|strong=\"H5921\"* two|strong=\"H8147\"* hands|strong=\"H3027\"*, and|strong=\"H3027\"* broke|strong=\"H7665\"* them|strong=\"H5921\"* before|strong=\"H5869\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H3117\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, as|strong=\"H3117\"* at|strong=\"H5921\"* the|strong=\"H3605\"* first|strong=\"H7223\"*, forty days|strong=\"H3117\"* and|strong=\"H3068\"* forty nights|strong=\"H3915\"*. I|strong=\"H3117\"* neither|strong=\"H3808\"* ate bread|strong=\"H3899\"* nor|strong=\"H3808\"* drank|strong=\"H8354\"* water|strong=\"H4325\"*, because|strong=\"H5921\"* of|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* sin|strong=\"H2403\"* which|strong=\"H3068\"* you|strong=\"H6440\"* sinned|strong=\"H2398\"*, in|strong=\"H5921\"* doing|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, to|strong=\"H3068\"* provoke|strong=\"H3707\"* him|strong=\"H6440\"* to|strong=\"H3068\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H3068\"* afraid|strong=\"H3025\"* of|strong=\"H3068\"* the|strong=\"H6440\"* anger|strong=\"H2534\"* and|strong=\"H3068\"* hot|strong=\"H2534\"* displeasure|strong=\"H2534\"* with|strong=\"H3068\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* angry|strong=\"H7107\"* against|strong=\"H5921\"* you|strong=\"H3588\"* to|strong=\"H3068\"* destroy|strong=\"H8045\"* you|strong=\"H3588\"*. But|strong=\"H3588\"* Yahweh|strong=\"H3068\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* me|strong=\"H6440\"* that|strong=\"H3588\"* time|strong=\"H6471\"* also|strong=\"H1571\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* angry enough|strong=\"H3966\"* with|strong=\"H3068\"* Aaron to|strong=\"H3068\"* destroy|strong=\"H8045\"* him|strong=\"H1931\"*. I|strong=\"H6256\"* prayed|strong=\"H6419\"* for|strong=\"H1157\"* Aaron also|strong=\"H1571\"* at|strong=\"H3068\"* the|strong=\"H3068\"* same|strong=\"H1931\"* time|strong=\"H6256\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"H5704\"* took|strong=\"H3947\"* your|strong=\"H3947\"* sin|strong=\"H2403\"*, the|strong=\"H3947\"* calf|strong=\"H5695\"* which|strong=\"H2022\"* you|strong=\"H5704\"* had|strong=\"H8313\"* made|strong=\"H6213\"*, and|strong=\"H2022\"* burned|strong=\"H8313\"* it|strong=\"H6213\"* with|strong=\"H8313\"* fire, and|strong=\"H2022\"* crushed|strong=\"H3807\"* it|strong=\"H6213\"*, grinding|strong=\"H2912\"* it|strong=\"H6213\"* very|strong=\"H5704\"* small|strong=\"H1854\"*, until|strong=\"H5704\"* it|strong=\"H6213\"* was|strong=\"H2022\"* as|strong=\"H5704\"* fine|strong=\"H1854\"* as|strong=\"H5704\"* dust|strong=\"H6083\"*. I|strong=\"H5704\"* threw|strong=\"H7993\"* its|strong=\"H6213\"* dust|strong=\"H6083\"* into|strong=\"H3381\"* the|strong=\"H3947\"* brook|strong=\"H5158\"* that|strong=\"H4480\"* descended|strong=\"H3381\"* out|strong=\"H7993\"* of|strong=\"H2022\"* the|strong=\"H3947\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 22, + "text": "At|strong=\"H3068\"* Taberah|strong=\"H8404\"*, at|strong=\"H3068\"* Massah|strong=\"H4532\"*, and|strong=\"H3068\"* at|strong=\"H3068\"* Kibroth Hattaavah you|strong=\"H1961\"* provoked|strong=\"H7107\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* wrath|strong=\"H7107\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"H8085\"* Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H5414\"* from|strong=\"H5927\"* Kadesh Barnea, saying|strong=\"H6310\"*, “Go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H3068\"* possess|strong=\"H3423\"* the|strong=\"H8085\"* land which|strong=\"H3068\"* I|strong=\"H5414\"* have|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*,” you|strong=\"H5414\"* rebelled|strong=\"H4784\"* against|strong=\"H5927\"* the|strong=\"H8085\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* you|strong=\"H5414\"* didn’t believe him|strong=\"H5414\"* or|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* his|strong=\"H5414\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H3117\"* have|strong=\"H1961\"* been|strong=\"H1961\"* rebellious|strong=\"H4784\"* against|strong=\"H5973\"* Yahweh|strong=\"H3068\"* from|strong=\"H3117\"* the|strong=\"H3068\"* day|strong=\"H3117\"* that|strong=\"H3045\"* I|strong=\"H3117\"* knew|strong=\"H3045\"* you|strong=\"H3117\"*." + }, + { + "verseNum": 25, + "text": "So|strong=\"H3588\"* I|strong=\"H3588\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* the|strong=\"H6440\"* forty days|strong=\"H3117\"* and|strong=\"H3068\"* forty nights|strong=\"H3915\"* that|strong=\"H3588\"* I|strong=\"H3588\"* fell|strong=\"H5307\"* down|strong=\"H5307\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* said he|strong=\"H3588\"* would|strong=\"H3068\"* destroy|strong=\"H8045\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H4714\"* prayed|strong=\"H6419\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H3318\"*, “Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, don’t destroy|strong=\"H7843\"* your|strong=\"H3068\"* people|strong=\"H5971\"* and|strong=\"H3068\"* your|strong=\"H3068\"* inheritance|strong=\"H5159\"* that|strong=\"H5971\"* you|strong=\"H3027\"* have|strong=\"H3068\"* redeemed|strong=\"H6299\"* through|strong=\"H3027\"* your|strong=\"H3068\"* greatness|strong=\"H1433\"*, that|strong=\"H5971\"* you|strong=\"H3027\"* have|strong=\"H3068\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"* with|strong=\"H3068\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 27, + "text": "Remember|strong=\"H2142\"* your|strong=\"H2142\"* servants|strong=\"H5650\"*, Abraham, Isaac|strong=\"H3327\"*, and|strong=\"H5971\"* Jacob|strong=\"H3290\"*. Don’t look|strong=\"H6437\"* at|strong=\"H5971\"* the|strong=\"H2142\"* stubbornness|strong=\"H7190\"* of|strong=\"H5650\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, nor at|strong=\"H5971\"* their|strong=\"H2142\"* wickedness|strong=\"H7562\"*, nor at|strong=\"H5971\"* their|strong=\"H2142\"* sin|strong=\"H2403\"*," + }, + { + "verseNum": 28, + "text": "lest|strong=\"H6435\"* the|strong=\"H3068\"* land you|strong=\"H6435\"* brought|strong=\"H3318\"* us|strong=\"H6435\"* out|strong=\"H3318\"* from|strong=\"H3318\"* say|strong=\"H1696\"*, ‘Because|strong=\"H1097\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* not|strong=\"H3201\"* able|strong=\"H3201\"* to|strong=\"H1696\"* bring|strong=\"H3318\"* them|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3068\"* land which|strong=\"H3068\"* he|strong=\"H8033\"* promised|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H3318\"*, and|strong=\"H3068\"* because|strong=\"H1097\"* he|strong=\"H8033\"* hated|strong=\"H8135\"* them|strong=\"H3318\"*, he|strong=\"H8033\"* has|strong=\"H3068\"* brought|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H1696\"* kill|strong=\"H4191\"* them|strong=\"H3318\"* in|strong=\"H3068\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"*.’" + }, + { + "verseNum": 29, + "text": "Yet they|strong=\"H1992\"* are|strong=\"H1992\"* your|strong=\"H5186\"* people|strong=\"H5971\"* and|strong=\"H1419\"* your|strong=\"H5186\"* inheritance|strong=\"H5159\"*, which|strong=\"H1992\"* you|strong=\"H5971\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* by|strong=\"H3318\"* your|strong=\"H5186\"* great|strong=\"H1419\"* power|strong=\"H3581\"* and|strong=\"H1419\"* by|strong=\"H3318\"* your|strong=\"H5186\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*.”" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"H3068\"* that|strong=\"H1931\"* time|strong=\"H6256\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H6213\"*, “Cut|strong=\"H6458\"* two|strong=\"H8147\"* stone tablets|strong=\"H3871\"* like|strong=\"H2022\"* the|strong=\"H6213\"* first|strong=\"H7223\"*, and|strong=\"H3068\"* come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* me|strong=\"H6213\"* onto the|strong=\"H6213\"* mountain|strong=\"H2022\"*, and|strong=\"H3068\"* make|strong=\"H6213\"* an|strong=\"H6213\"* ark of|strong=\"H3068\"* wood|strong=\"H6086\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H5921\"* will|strong=\"H1961\"* write|strong=\"H3789\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tablets|strong=\"H3871\"* the|strong=\"H5921\"* words|strong=\"H1697\"* that|strong=\"H1697\"* were|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* first|strong=\"H7223\"* tablets|strong=\"H3871\"* which|strong=\"H1697\"* you|strong=\"H5921\"* broke|strong=\"H7665\"*, and|strong=\"H1697\"* you|strong=\"H5921\"* shall|strong=\"H1697\"* put|strong=\"H7760\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* ark.”" + }, + { + "verseNum": 3, + "text": "So|strong=\"H6213\"* I|strong=\"H3027\"* made|strong=\"H6213\"* an|strong=\"H6213\"* ark of|strong=\"H3027\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, and|strong=\"H3027\"* cut|strong=\"H6458\"* two|strong=\"H8147\"* stone tablets|strong=\"H3871\"* like|strong=\"H2022\"* the|strong=\"H6213\"* first|strong=\"H7223\"*, and|strong=\"H3027\"* went|strong=\"H5927\"* up|strong=\"H5927\"* onto the|strong=\"H6213\"* mountain|strong=\"H2022\"*, having the|strong=\"H6213\"* two|strong=\"H8147\"* tablets|strong=\"H3871\"* in|strong=\"H6213\"* my|strong=\"H6213\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3117\"* wrote|strong=\"H3789\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tablets|strong=\"H3871\"*, according|strong=\"H5921\"* to|strong=\"H1696\"* the|strong=\"H5921\"* first|strong=\"H7223\"* writing|strong=\"H4385\"*, the|strong=\"H5921\"* ten|strong=\"H6235\"* commandments|strong=\"H1697\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"* out|strong=\"H5414\"* of|strong=\"H3068\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H5921\"* fire in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H5921\"* assembly|strong=\"H6951\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H1696\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H7760\"* turned|strong=\"H6437\"* and|strong=\"H3068\"* came|strong=\"H1961\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H6213\"* mountain|strong=\"H2022\"*, and|strong=\"H3068\"* put|strong=\"H7760\"* the|strong=\"H6213\"* tablets|strong=\"H3871\"* in|strong=\"H3068\"* the|strong=\"H6213\"* ark which|strong=\"H3068\"* I|strong=\"H7760\"* had|strong=\"H3068\"* made|strong=\"H6213\"*; and|strong=\"H3068\"* there|strong=\"H8033\"* they|strong=\"H8033\"* are|strong=\"H3068\"* as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* me|strong=\"H7760\"*." + }, + { + "verseNum": 6, + "text": "(The|strong=\"H8478\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Beeroth Bene Jaakan to|strong=\"H3478\"* Moserah|strong=\"H4149\"*. There|strong=\"H8033\"* Aaron died|strong=\"H4191\"*, and|strong=\"H1121\"* there|strong=\"H8033\"* he|strong=\"H8033\"* was|strong=\"H3478\"* buried|strong=\"H6912\"*; and|strong=\"H1121\"* Eleazar his|strong=\"H3478\"* son|strong=\"H1121\"* ministered|strong=\"H3547\"* in|strong=\"H3478\"* the|strong=\"H8478\"* priest|strong=\"H3547\"*’s office in|strong=\"H3478\"* his|strong=\"H3478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 7, + "text": "From|strong=\"H4480\"* there|strong=\"H8033\"* they|strong=\"H8033\"* traveled|strong=\"H5265\"* to|strong=\"H4325\"* Gudgodah|strong=\"H1412\"*; and|strong=\"H8033\"* from|strong=\"H4480\"* Gudgodah|strong=\"H1412\"* to|strong=\"H4325\"* Jotbathah|strong=\"H3193\"*, a|strong=\"H3068\"* land of|strong=\"H4325\"* brooks|strong=\"H5158\"* of|strong=\"H4325\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 8, + "text": "At|strong=\"H3068\"* that|strong=\"H3117\"* time|strong=\"H6256\"* Yahweh|strong=\"H3068\"* set|strong=\"H5975\"* apart the|strong=\"H6440\"* tribe|strong=\"H7626\"* of|strong=\"H3068\"* Levi|strong=\"H3878\"* to|strong=\"H5704\"* bear|strong=\"H5375\"* the|strong=\"H6440\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, to|strong=\"H5704\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* to|strong=\"H5704\"* minister|strong=\"H8334\"* to|strong=\"H5704\"* him|strong=\"H6440\"*, and|strong=\"H3068\"* to|strong=\"H5704\"* bless|strong=\"H1288\"* in|strong=\"H3068\"* his|strong=\"H5375\"* name|strong=\"H8034\"*, to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H3651\"* Levi|strong=\"H3881\"* has|strong=\"H3068\"* no|strong=\"H3808\"* portion|strong=\"H2506\"* nor|strong=\"H3808\"* inheritance|strong=\"H5159\"* with|strong=\"H5973\"* his|strong=\"H3068\"* brothers; Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* his|strong=\"H3068\"* inheritance|strong=\"H5159\"*, according|strong=\"H5921\"* as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*.)" + }, + { + "verseNum": 10, + "text": "I|strong=\"H3117\"* stayed|strong=\"H5975\"* on|strong=\"H3117\"* the|strong=\"H8085\"* mountain|strong=\"H2022\"*, as|strong=\"H3117\"* at|strong=\"H3068\"* the|strong=\"H8085\"* first|strong=\"H7223\"* time|strong=\"H3117\"*, forty days|strong=\"H3117\"* and|strong=\"H3068\"* forty nights|strong=\"H3915\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* me|strong=\"H5975\"* that|strong=\"H3117\"* time|strong=\"H3117\"* also|strong=\"H1571\"*. Yahweh|strong=\"H3068\"* would|strong=\"H3068\"* not|strong=\"H3808\"* destroy|strong=\"H7843\"* you|strong=\"H3117\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H5414\"*, “Arise|strong=\"H6965\"*, take|strong=\"H3423\"* your|strong=\"H3068\"* journey|strong=\"H4550\"* before|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"*; and|strong=\"H6965\"* they|strong=\"H3068\"* shall|strong=\"H3068\"* go|strong=\"H3212\"* in|strong=\"H3068\"* and|strong=\"H6965\"* possess|strong=\"H3423\"* the|strong=\"H6440\"* land|strong=\"H6440\"* which|strong=\"H3068\"* I|strong=\"H5414\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* their|strong=\"H3068\"* fathers to|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* them|strong=\"H5414\"*.”" + }, + { + "verseNum": 12, + "text": "Now|strong=\"H6258\"*, Israel|strong=\"H3478\"*, what|strong=\"H4100\"* does|strong=\"H4100\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* require|strong=\"H7592\"* of|strong=\"H3068\"* you|strong=\"H3588\"*, but|strong=\"H3588\"* to|strong=\"H3478\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3478\"* walk|strong=\"H3212\"* in|strong=\"H3478\"* all|strong=\"H3605\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, to|strong=\"H3478\"* love him|strong=\"H5973\"*, and|strong=\"H3478\"* to|strong=\"H3478\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* with|strong=\"H5973\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* and|strong=\"H3478\"* with|strong=\"H5973\"* all|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 13, + "text": "to|strong=\"H3068\"* keep|strong=\"H8104\"* Yahweh|strong=\"H3068\"*’s commandments|strong=\"H4687\"* and|strong=\"H3068\"* statutes|strong=\"H2708\"*, which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"* for|strong=\"H2708\"* your|strong=\"H3068\"* good|strong=\"H2896\"*?" + }, + { + "verseNum": 14, + "text": "Behold|strong=\"H2005\"*, to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* belongs heaven|strong=\"H8064\"*, the|strong=\"H3605\"* heaven|strong=\"H8064\"* of|strong=\"H3068\"* heavens|strong=\"H8064\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3068\"* therein." + }, + { + "verseNum": 15, + "text": "Only|strong=\"H7535\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* a|strong=\"H3068\"* delight|strong=\"H2836\"* in|strong=\"H3068\"* your|strong=\"H3068\"* fathers to|strong=\"H3068\"* love|strong=\"H2836\"* them|strong=\"H3117\"*, and|strong=\"H3068\"* he|strong=\"H3117\"* chose their|strong=\"H3605\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* them|strong=\"H3117\"*, even|strong=\"H3068\"* you|strong=\"H3605\"* above all|strong=\"H3605\"* peoples|strong=\"H5971\"*, as|strong=\"H3117\"* it|strong=\"H3117\"* is|strong=\"H3068\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 16, + "text": "Circumcise|strong=\"H4135\"* therefore|strong=\"H4135\"* the|strong=\"H3808\"* foreskin|strong=\"H6190\"* of|strong=\"H3824\"* your|strong=\"H3808\"* heart|strong=\"H3824\"*, and|strong=\"H3824\"* be|strong=\"H5750\"* no|strong=\"H3808\"* more|strong=\"H5750\"* stiff-necked." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, he|strong=\"H1931\"* is|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* gods and|strong=\"H3068\"* Lord|strong=\"H3068\"* of|strong=\"H3068\"* lords, the|strong=\"H6440\"* great|strong=\"H1419\"* God|strong=\"H3068\"*, the|strong=\"H6440\"* mighty|strong=\"H1368\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* awesome|strong=\"H3372\"*, who|strong=\"H1931\"* doesn’t respect|strong=\"H5375\"* persons|strong=\"H6440\"* or|strong=\"H3808\"* take|strong=\"H3947\"* bribes|strong=\"H7810\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H6213\"* executes|strong=\"H6213\"* justice|strong=\"H4941\"* for|strong=\"H6213\"* the|strong=\"H5414\"* fatherless|strong=\"H3490\"* and|strong=\"H4941\"* widow and|strong=\"H4941\"* loves the|strong=\"H5414\"* foreigner|strong=\"H1616\"* in|strong=\"H6213\"* giving|strong=\"H5414\"* him|strong=\"H5414\"* food|strong=\"H3899\"* and|strong=\"H4941\"* clothing|strong=\"H8071\"*." + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"H3588\"* love the|strong=\"H3588\"* foreigner|strong=\"H1616\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H1961\"* foreigners|strong=\"H1616\"* in|strong=\"H1961\"* the|strong=\"H3588\"* land of|strong=\"H4714\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H5647\"* shall|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. You|strong=\"H5647\"* shall|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H5647\"*. You|strong=\"H5647\"* shall|strong=\"H3068\"* cling|strong=\"H1692\"* to|strong=\"H3068\"* him|strong=\"H5647\"*, and|strong=\"H3068\"* you|strong=\"H5647\"* shall|strong=\"H3068\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* his|strong=\"H3068\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H7200\"* praise|strong=\"H8416\"*, and|strong=\"H1419\"* he|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H7200\"* God, who|strong=\"H1931\"* has|strong=\"H5869\"* done|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H6213\"* these|strong=\"H6213\"* great|strong=\"H1419\"* and|strong=\"H1419\"* awesome|strong=\"H3372\"* things|strong=\"H1419\"* which|strong=\"H1931\"* your|strong=\"H7200\"* eyes|strong=\"H5869\"* have|strong=\"H5869\"* seen|strong=\"H7200\"*." + }, + { + "verseNum": 22, + "text": "Your|strong=\"H3068\"* fathers went|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* Egypt|strong=\"H4714\"* with|strong=\"H3068\"* seventy|strong=\"H7657\"* persons|strong=\"H5315\"*; and|strong=\"H3068\"* now|strong=\"H6258\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H7760\"* you|strong=\"H7760\"* as|strong=\"H5315\"* the|strong=\"H3068\"* stars|strong=\"H3556\"* of|strong=\"H3068\"* the|strong=\"H3068\"* sky|strong=\"H8064\"* for|strong=\"H4714\"* multitude|strong=\"H7230\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"H3068\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* instructions|strong=\"H4687\"*, his|strong=\"H3605\"* statutes|strong=\"H2708\"*, his|strong=\"H3605\"* ordinances|strong=\"H4941\"*, and|strong=\"H3068\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"*, always|strong=\"H3605\"*." + }, + { + "verseNum": 2, + "text": "Know|strong=\"H3045\"* this|strong=\"H7200\"* day|strong=\"H3117\"*—for|strong=\"H3588\"* I|strong=\"H3588\"* don’t speak with|strong=\"H3068\"* your|strong=\"H3068\"* children|strong=\"H1121\"* who|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* known|strong=\"H3045\"*, and|strong=\"H1121\"* who|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* chastisement|strong=\"H4148\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, his|strong=\"H3068\"* greatness|strong=\"H1433\"*, his|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*, his|strong=\"H3068\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*," + }, + { + "verseNum": 3, + "text": "his|strong=\"H3605\"* signs, and|strong=\"H4428\"* his|strong=\"H3605\"* works|strong=\"H4639\"*, which|strong=\"H4428\"* he|strong=\"H6213\"* did|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* to|strong=\"H6213\"* Pharaoh|strong=\"H6547\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*, and|strong=\"H4428\"* to|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* land;" + }, + { + "verseNum": 4, + "text": "and|strong=\"H3068\"* what|strong=\"H2088\"* he|strong=\"H3117\"* did|strong=\"H6213\"* to|strong=\"H5704\"* the|strong=\"H6440\"* army|strong=\"H2428\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, to|strong=\"H5704\"* their|strong=\"H3068\"* horses|strong=\"H5483\"*, and|strong=\"H3068\"* to|strong=\"H5704\"* their|strong=\"H3068\"* chariots|strong=\"H7393\"*; how|strong=\"H5704\"* he|strong=\"H3117\"* made|strong=\"H6213\"* the|strong=\"H6440\"* water|strong=\"H4325\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"* to|strong=\"H5704\"* overflow|strong=\"H6687\"* them|strong=\"H5921\"* as|strong=\"H5704\"* they|strong=\"H3117\"* pursued|strong=\"H7291\"* you|strong=\"H6440\"*, and|strong=\"H3068\"* how|strong=\"H5704\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* destroyed them|strong=\"H5921\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"H6213\"* what|strong=\"H2088\"* he|strong=\"H5704\"* did|strong=\"H6213\"* to|strong=\"H5704\"* you|strong=\"H5704\"* in|strong=\"H6213\"* the|strong=\"H6213\"* wilderness|strong=\"H4057\"* until|strong=\"H5704\"* you|strong=\"H5704\"* came to|strong=\"H5704\"* this|strong=\"H2088\"* place|strong=\"H4725\"*;" + }, + { + "verseNum": 6, + "text": "and|strong=\"H1121\"* what|strong=\"H6213\"* he|strong=\"H6213\"* did|strong=\"H6213\"* to|strong=\"H3478\"* Dathan|strong=\"H1885\"* and|strong=\"H1121\"* Abiram, the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eliab, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*—how|strong=\"H6213\"* the|strong=\"H3605\"* earth opened|strong=\"H6475\"* its|strong=\"H3605\"* mouth|strong=\"H6310\"* and|strong=\"H1121\"* swallowed|strong=\"H1104\"* them|strong=\"H6213\"* up|strong=\"H1104\"*, with|strong=\"H1004\"* their|strong=\"H3605\"* households|strong=\"H1004\"*, their|strong=\"H3605\"* tents, and|strong=\"H1121\"* every|strong=\"H3605\"* living|strong=\"H3351\"* thing|strong=\"H3351\"* that|strong=\"H3605\"* followed|strong=\"H7272\"* them|strong=\"H6213\"*, in|strong=\"H3478\"* the|strong=\"H3605\"* middle|strong=\"H7130\"* of|strong=\"H1121\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*;" + }, + { + "verseNum": 7, + "text": "but|strong=\"H3588\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s great|strong=\"H1419\"* work|strong=\"H4639\"* which|strong=\"H3068\"* he|strong=\"H3588\"* did|strong=\"H6213\"*." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"H4616\"* you|strong=\"H6680\"* shall|strong=\"H3117\"* keep|strong=\"H8104\"* the|strong=\"H3605\"* entire|strong=\"H3605\"* commandment|strong=\"H4687\"* which|strong=\"H8033\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, that|strong=\"H3605\"* you|strong=\"H6680\"* may|strong=\"H3117\"* be|strong=\"H3117\"* strong|strong=\"H2388\"*, and|strong=\"H3117\"* go|strong=\"H5674\"* in|strong=\"H3117\"* and|strong=\"H3117\"* possess|strong=\"H3423\"* the|strong=\"H3605\"* land that|strong=\"H3605\"* you|strong=\"H6680\"* go|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H8104\"* possess|strong=\"H3423\"*;" + }, + { + "verseNum": 9, + "text": "and|strong=\"H3068\"* that|strong=\"H3117\"* you|strong=\"H5414\"* may|strong=\"H3068\"* prolong your|strong=\"H3068\"* days|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers to|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* them|strong=\"H5414\"* and|strong=\"H3068\"* to|strong=\"H3068\"* their|strong=\"H3068\"* offspring|strong=\"H2233\"*, a|strong=\"H3068\"* land flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H3068\"* honey|strong=\"H1706\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* land, where|strong=\"H8033\"* you|strong=\"H3588\"* go|strong=\"H3318\"* in|strong=\"H8033\"* to|strong=\"H3318\"* possess|strong=\"H3423\"* isn’t like|strong=\"H3318\"* the|strong=\"H3588\"* land of|strong=\"H2233\"* Egypt|strong=\"H4714\"* that|strong=\"H3588\"* you|strong=\"H3588\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H2233\"*, where|strong=\"H8033\"* you|strong=\"H3588\"* sowed|strong=\"H2232\"* your|strong=\"H3588\"* seed|strong=\"H2233\"* and|strong=\"H4714\"* watered|strong=\"H8248\"* it|strong=\"H1931\"* with|strong=\"H3318\"* your|strong=\"H3588\"* foot|strong=\"H7272\"*, as|strong=\"H3588\"* a|strong=\"H3068\"* garden|strong=\"H1588\"* of|strong=\"H2233\"* herbs|strong=\"H3419\"*;" + }, + { + "verseNum": 11, + "text": "but|strong=\"H4325\"* the|strong=\"H3423\"* land|strong=\"H8064\"* that|strong=\"H4325\"* you|strong=\"H2022\"* go over|strong=\"H3423\"* to|strong=\"H4325\"* possess|strong=\"H3423\"* is|strong=\"H8033\"* a|strong=\"H3068\"* land|strong=\"H8064\"* of|strong=\"H2022\"* hills|strong=\"H2022\"* and|strong=\"H8064\"* valleys|strong=\"H1237\"* which|strong=\"H8033\"* drinks|strong=\"H8354\"* water|strong=\"H4325\"* from|strong=\"H3423\"* the|strong=\"H3423\"* rain|strong=\"H4306\"* of|strong=\"H2022\"* the|strong=\"H3423\"* sky|strong=\"H8064\"*," + }, + { + "verseNum": 12, + "text": "a|strong=\"H3068\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* cares|strong=\"H1875\"* for|strong=\"H5704\"*. Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s eyes|strong=\"H5869\"* are|strong=\"H5869\"* always|strong=\"H8548\"* on|strong=\"H3068\"* it|strong=\"H5704\"*, from|strong=\"H5704\"* the|strong=\"H3068\"* beginning|strong=\"H7225\"* of|strong=\"H3068\"* the|strong=\"H3068\"* year|strong=\"H8141\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3068\"* end of|strong=\"H3068\"* the|strong=\"H3068\"* year|strong=\"H8141\"*." + }, + { + "verseNum": 13, + "text": "It|strong=\"H1961\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"*, if|strong=\"H1961\"* you|strong=\"H6680\"* shall|strong=\"H3068\"* listen|strong=\"H8085\"* diligently|strong=\"H8085\"* to|strong=\"H3068\"* my|strong=\"H8085\"* commandments|strong=\"H4687\"* which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, to|strong=\"H3068\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H6680\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* and|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 14, + "text": "that|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* the|strong=\"H5414\"* rain|strong=\"H4306\"* for|strong=\"H6256\"* your|strong=\"H5414\"* land in|strong=\"H5414\"* its|strong=\"H5414\"* season|strong=\"H6256\"*, the|strong=\"H5414\"* early|strong=\"H3138\"* rain|strong=\"H4306\"* and|strong=\"H1715\"* the|strong=\"H5414\"* latter|strong=\"H4456\"* rain|strong=\"H4306\"*, that|strong=\"H5414\"* you|strong=\"H5414\"* may|strong=\"H5414\"* gather in|strong=\"H5414\"* your|strong=\"H5414\"* grain|strong=\"H1715\"*, your|strong=\"H5414\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, and|strong=\"H1715\"* your|strong=\"H5414\"* oil|strong=\"H3323\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* grass|strong=\"H6212\"* in|strong=\"H5414\"* your|strong=\"H5414\"* fields|strong=\"H7704\"* for|strong=\"H7704\"* your|strong=\"H5414\"* livestock, and|strong=\"H7704\"* you|strong=\"H5414\"* shall|strong=\"H7704\"* eat and|strong=\"H7704\"* be|strong=\"H5414\"* full|strong=\"H7646\"*." + }, + { + "verseNum": 16, + "text": "Be|strong=\"H3824\"* careful|strong=\"H8104\"*, lest|strong=\"H6435\"* your|strong=\"H8104\"* heart|strong=\"H3824\"* be|strong=\"H3824\"* deceived|strong=\"H6601\"*, and|strong=\"H8104\"* you|strong=\"H5647\"* turn|strong=\"H5493\"* away|strong=\"H5493\"* to|strong=\"H8104\"* serve|strong=\"H5647\"* other gods and|strong=\"H8104\"* worship|strong=\"H7812\"* them|strong=\"H5493\"*;" + }, + { + "verseNum": 17, + "text": "and|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s anger be|strong=\"H1961\"* kindled|strong=\"H2734\"* against|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* shut|strong=\"H6113\"* up|strong=\"H5414\"* the|strong=\"H5921\"* sky|strong=\"H8064\"* so|strong=\"H1961\"* that|strong=\"H3068\"* there|strong=\"H1961\"* is|strong=\"H3068\"* no|strong=\"H3808\"* rain|strong=\"H4306\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* land|strong=\"H8064\"* doesn’t yield|strong=\"H5414\"* its|strong=\"H5414\"* fruit|strong=\"H2981\"*; and|strong=\"H3068\"* you|strong=\"H5414\"* perish quickly|strong=\"H4120\"* from|strong=\"H5921\"* off|strong=\"H5921\"* the|strong=\"H5921\"* good|strong=\"H2896\"* land|strong=\"H8064\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 18, + "text": "Therefore|strong=\"H5921\"* you|strong=\"H5921\"* shall|strong=\"H5315\"* lay|strong=\"H7760\"* up|strong=\"H7760\"* these|strong=\"H7760\"* words|strong=\"H1697\"* of|strong=\"H3027\"* mine|strong=\"H7760\"* in|strong=\"H5921\"* your|strong=\"H5921\"* heart|strong=\"H3824\"* and|strong=\"H3027\"* in|strong=\"H5921\"* your|strong=\"H5921\"* soul|strong=\"H5315\"*. You|strong=\"H5921\"* shall|strong=\"H5315\"* bind|strong=\"H7194\"* them|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sign on|strong=\"H5921\"* your|strong=\"H5921\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* they|strong=\"H5921\"* shall|strong=\"H5315\"* be|strong=\"H1961\"* for|strong=\"H5921\"* frontlets|strong=\"H2903\"* between|strong=\"H5921\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H3925\"* shall|strong=\"H1121\"* teach|strong=\"H3925\"* them|strong=\"H3925\"* to|strong=\"H1696\"* your|strong=\"H6965\"* children|strong=\"H1121\"*, talking|strong=\"H1696\"* of|strong=\"H1121\"* them|strong=\"H3925\"* when|strong=\"H1696\"* you|strong=\"H3925\"* sit|strong=\"H3427\"* in|strong=\"H3427\"* your|strong=\"H6965\"* house|strong=\"H1004\"*, when|strong=\"H1696\"* you|strong=\"H3925\"* walk|strong=\"H3212\"* by|strong=\"H1870\"* the|strong=\"H6965\"* way|strong=\"H1870\"*, when|strong=\"H1696\"* you|strong=\"H3925\"* lie|strong=\"H7901\"* down|strong=\"H7901\"*, and|strong=\"H1121\"* when|strong=\"H1696\"* you|strong=\"H3925\"* rise|strong=\"H6965\"* up|strong=\"H6965\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H5921\"* shall|strong=\"H1004\"* write|strong=\"H3789\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H4201\"* posts|strong=\"H4201\"* of|strong=\"H1004\"* your|strong=\"H5921\"* house|strong=\"H1004\"* and|strong=\"H1004\"* on|strong=\"H5921\"* your|strong=\"H5921\"* gates|strong=\"H8179\"*;" + }, + { + "verseNum": 21, + "text": "that|strong=\"H3117\"* your|strong=\"H3068\"* days|strong=\"H3117\"* and|strong=\"H1121\"* your|strong=\"H3068\"* children|strong=\"H1121\"*’s days|strong=\"H3117\"* may|strong=\"H3068\"* be|strong=\"H3068\"* multiplied|strong=\"H7235\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land|strong=\"H8064\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers to|strong=\"H3068\"* give|strong=\"H5414\"* them|strong=\"H5414\"*, as|strong=\"H3117\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H5921\"* heavens|strong=\"H8064\"* above|strong=\"H5921\"* the|strong=\"H5921\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* diligently|strong=\"H8104\"* keep|strong=\"H8104\"* all|strong=\"H3605\"* these|strong=\"H2063\"* commandments|strong=\"H4687\"* which|strong=\"H3068\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"*—to|strong=\"H3212\"* do|strong=\"H6213\"* them|strong=\"H6213\"*, to|strong=\"H3212\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3212\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, and|strong=\"H3068\"* to|strong=\"H3212\"* cling|strong=\"H1692\"* to|strong=\"H3212\"* him|strong=\"H6213\"*—" + }, + { + "verseNum": 23, + "text": "then|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* drive|strong=\"H3423\"* out|strong=\"H3423\"* all|strong=\"H3605\"* these|strong=\"H3605\"* nations|strong=\"H1471\"* from|strong=\"H4480\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H3068\"* you|strong=\"H6440\"* shall|strong=\"H3068\"* dispossess|strong=\"H3423\"* nations|strong=\"H1471\"* greater|strong=\"H1419\"* and|strong=\"H3068\"* mightier|strong=\"H6099\"* than|strong=\"H4480\"* yourselves|strong=\"H3605\"*." + }, + { + "verseNum": 24, + "text": "Every|strong=\"H3605\"* place|strong=\"H4725\"* on|strong=\"H1961\"* which|strong=\"H4725\"* the|strong=\"H3605\"* sole|strong=\"H3709\"* of|strong=\"H1366\"* your|strong=\"H3605\"* foot|strong=\"H7272\"* treads|strong=\"H1869\"* shall|strong=\"H1366\"* be|strong=\"H1961\"* yours: from|strong=\"H4480\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* and|strong=\"H3220\"* Lebanon|strong=\"H3844\"*, from|strong=\"H4480\"* the|strong=\"H3605\"* river|strong=\"H5104\"*, the|strong=\"H3605\"* river|strong=\"H5104\"* Euphrates|strong=\"H6578\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* western|strong=\"H3220\"* sea|strong=\"H3220\"* shall|strong=\"H1366\"* be|strong=\"H1961\"* your|strong=\"H3605\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 25, + "text": "No|strong=\"H3808\"* man|strong=\"H3605\"* will|strong=\"H3068\"* be|strong=\"H3808\"* able to|strong=\"H1696\"* stand|strong=\"H3320\"* before|strong=\"H6440\"* you|strong=\"H5414\"*. Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* lay|strong=\"H5414\"* the|strong=\"H3605\"* fear|strong=\"H6343\"* of|strong=\"H3068\"* you|strong=\"H5414\"* and|strong=\"H3068\"* the|strong=\"H3605\"* dread|strong=\"H6343\"* of|strong=\"H3068\"* you|strong=\"H5414\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"* that|strong=\"H3605\"* you|strong=\"H5414\"* tread|strong=\"H1869\"* on|strong=\"H5921\"*, as|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 26, + "text": "Behold|strong=\"H7200\"*, I|strong=\"H3117\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"* today|strong=\"H3117\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"* and|strong=\"H3117\"* a|strong=\"H3068\"* curse|strong=\"H7045\"*:" + }, + { + "verseNum": 27, + "text": "the|strong=\"H8085\"* blessing|strong=\"H1293\"*, if you|strong=\"H6680\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* the|strong=\"H8085\"* commandments|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*;" + }, + { + "verseNum": 28, + "text": "and|strong=\"H3068\"* the|strong=\"H8085\"* curse|strong=\"H7045\"*, if you|strong=\"H6680\"* do|strong=\"H3068\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* the|strong=\"H8085\"* commandments|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, but|strong=\"H3808\"* turn|strong=\"H5493\"* away|strong=\"H5493\"* out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H8085\"* way|strong=\"H1870\"* which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, to|strong=\"H3068\"* go|strong=\"H3212\"* after|strong=\"H4480\"* other gods which|strong=\"H3068\"* you|strong=\"H6680\"* have|strong=\"H3068\"* not|strong=\"H3808\"* known|strong=\"H3045\"*." + }, + { + "verseNum": 29, + "text": "It|strong=\"H5414\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"*, when|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* brings|strong=\"H5414\"* you|strong=\"H3588\"* into|strong=\"H5921\"* the|strong=\"H5921\"* land that|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H1961\"* to|strong=\"H3068\"* possess|strong=\"H3423\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* set|strong=\"H5414\"* the|strong=\"H5921\"* blessing|strong=\"H1293\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Gerizim|strong=\"H1630\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* curse|strong=\"H7045\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Ebal|strong=\"H5858\"*." + }, + { + "verseNum": 30, + "text": "Aren’t they|strong=\"H1992\"* beyond|strong=\"H5676\"* the|strong=\"H1870\"* Jordan|strong=\"H3383\"*, behind the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H3427\"* the|strong=\"H1870\"* going|strong=\"H8121\"* down|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H1870\"* sun|strong=\"H8121\"*, in|strong=\"H3427\"* the|strong=\"H1870\"* land|strong=\"H5676\"* of|strong=\"H3427\"* the|strong=\"H1870\"* Canaanites|strong=\"H3669\"* who|strong=\"H3427\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H1870\"* Arabah|strong=\"H6160\"* near|strong=\"H3808\"* Gilgal|strong=\"H1537\"*, beside|strong=\"H5676\"* the|strong=\"H1870\"* oaks of|strong=\"H3427\"* Moreh|strong=\"H4176\"*?" + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3068\"* to|strong=\"H3068\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"* to|strong=\"H3068\"* go|strong=\"H5674\"* in|strong=\"H3427\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* the|strong=\"H3588\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H5414\"* and|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 32, + "text": "You|strong=\"H5414\"* shall|strong=\"H3117\"* observe|strong=\"H8104\"* to|strong=\"H6213\"* do|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* statutes|strong=\"H2706\"* and|strong=\"H3117\"* the|strong=\"H3605\"* ordinances|strong=\"H4941\"* which|strong=\"H3117\"* I|strong=\"H3117\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"* today|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "These|strong=\"H6213\"* are|strong=\"H3117\"* the|strong=\"H3605\"* statutes|strong=\"H2706\"* and|strong=\"H3068\"* the|strong=\"H3605\"* ordinances|strong=\"H4941\"* which|strong=\"H3068\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* observe|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers, has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* that|strong=\"H3605\"* you|strong=\"H5414\"* live|strong=\"H2416\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 2, + "text": "You|strong=\"H3605\"* shall|strong=\"H1471\"* surely destroy|strong=\"H3423\"* all|strong=\"H3605\"* the|strong=\"H3605\"* places|strong=\"H4725\"* in|strong=\"H5921\"* which|strong=\"H1471\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H3605\"* you|strong=\"H3605\"* shall|strong=\"H1471\"* dispossess|strong=\"H3423\"* served|strong=\"H5647\"* their|strong=\"H3605\"* gods: on|strong=\"H5921\"* the|strong=\"H3605\"* high|strong=\"H7311\"* mountains|strong=\"H2022\"*, and|strong=\"H6086\"* on|strong=\"H5921\"* the|strong=\"H3605\"* hills|strong=\"H1389\"*, and|strong=\"H6086\"* under|strong=\"H8478\"* every|strong=\"H3605\"* green|strong=\"H7488\"* tree|strong=\"H6086\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H4480\"* shall|strong=\"H1931\"* break|strong=\"H7665\"* down|strong=\"H5422\"* their|strong=\"H8313\"* altars|strong=\"H4196\"*, dash their|strong=\"H8313\"* pillars|strong=\"H4676\"* in|strong=\"H4196\"* pieces|strong=\"H7665\"*, and|strong=\"H4196\"* burn|strong=\"H8313\"* their|strong=\"H8313\"* Asherah poles with|strong=\"H8313\"* fire. You|strong=\"H4480\"* shall|strong=\"H1931\"* cut|strong=\"H1438\"* down|strong=\"H5422\"* the|strong=\"H4480\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"* of|strong=\"H8034\"* their|strong=\"H8313\"* gods. You|strong=\"H4480\"* shall|strong=\"H1931\"* destroy|strong=\"H5422\"* their|strong=\"H8313\"* name|strong=\"H8034\"* out|strong=\"H4480\"* of|strong=\"H8034\"* that|strong=\"H1931\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H6213\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* do|strong=\"H6213\"* so|strong=\"H3651\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H3588\"* to|strong=\"H3068\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* choose out|strong=\"H1875\"* of|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* tribes|strong=\"H7626\"*, to|strong=\"H3068\"* put|strong=\"H7760\"* his|strong=\"H3605\"* name|strong=\"H8034\"* there|strong=\"H8033\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* seek|strong=\"H1875\"* his|strong=\"H3605\"* habitation|strong=\"H7933\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* come there|strong=\"H8033\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3027\"* shall|strong=\"H3027\"* bring your|strong=\"H3027\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*, your|strong=\"H3027\"* sacrifices|strong=\"H2077\"*, your|strong=\"H3027\"* tithes|strong=\"H4643\"*, the|strong=\"H3027\"* wave offering|strong=\"H5930\"* of|strong=\"H3027\"* your|strong=\"H3027\"* hand|strong=\"H3027\"*, your|strong=\"H3027\"* vows|strong=\"H5088\"*, your|strong=\"H3027\"* free will|strong=\"H3027\"* offerings|strong=\"H5930\"*, and|strong=\"H3027\"* the|strong=\"H3027\"* firstborn|strong=\"H1062\"* of|strong=\"H3027\"* your|strong=\"H3027\"* herd|strong=\"H1241\"* and|strong=\"H3027\"* of|strong=\"H3027\"* your|strong=\"H3027\"* flock|strong=\"H6629\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 7, + "text": "There|strong=\"H8033\"* you|strong=\"H6440\"* shall|strong=\"H3068\"* eat before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* you|strong=\"H6440\"* shall|strong=\"H3068\"* rejoice|strong=\"H8055\"* in|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H6440\"* put|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H3068\"*, you|strong=\"H6440\"* and|strong=\"H3068\"* your|strong=\"H3068\"* households|strong=\"H1004\"*, in|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* blessed|strong=\"H1288\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H3605\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* do|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* things|strong=\"H3605\"* that|strong=\"H3605\"* we|strong=\"H3068\"* do|strong=\"H6213\"* here|strong=\"H6311\"* today|strong=\"H3117\"*, every|strong=\"H3605\"* man|strong=\"H3605\"* whatever|strong=\"H3605\"* is|strong=\"H3117\"* right|strong=\"H3477\"* in|strong=\"H6213\"* his|strong=\"H3605\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*;" + }, + { + "verseNum": 9, + "text": "for|strong=\"H3588\"* you|strong=\"H3588\"* haven’t yet|strong=\"H3588\"* come to|strong=\"H5704\"* the|strong=\"H3588\"* rest|strong=\"H4496\"* and|strong=\"H3068\"* to|strong=\"H5704\"* the|strong=\"H3588\"* inheritance|strong=\"H5159\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"H3605\"* when|strong=\"H3068\"* you|strong=\"H3605\"* go|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* and|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* causes you|strong=\"H3605\"* to|strong=\"H3068\"* inherit|strong=\"H5157\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* gives|strong=\"H5117\"* you|strong=\"H3605\"* rest|strong=\"H5117\"* from|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* enemies around|strong=\"H5439\"* you|strong=\"H3605\"*, so|strong=\"H5674\"* that|strong=\"H3605\"* you|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* safety," + }, + { + "verseNum": 11, + "text": "then|strong=\"H1961\"* it|strong=\"H8033\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H3605\"* to|strong=\"H3068\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* choose, to|strong=\"H3068\"* cause|strong=\"H1961\"* his|strong=\"H3605\"* name|strong=\"H8034\"* to|strong=\"H3068\"* dwell|strong=\"H7931\"* there|strong=\"H8033\"*, there|strong=\"H8033\"* you|strong=\"H6680\"* shall|strong=\"H3068\"* bring|strong=\"H1961\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H6680\"* command|strong=\"H6680\"* you|strong=\"H6680\"*: your|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*, your|strong=\"H3068\"* sacrifices|strong=\"H2077\"*, your|strong=\"H3068\"* tithes|strong=\"H4643\"*, the|strong=\"H3605\"* wave offering|strong=\"H5930\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* choice|strong=\"H4005\"* vows|strong=\"H5088\"* which|strong=\"H3068\"* you|strong=\"H6680\"* vow|strong=\"H5088\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* rejoice|strong=\"H8055\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*—you|strong=\"H3588\"*, and|strong=\"H1121\"* your|strong=\"H3068\"* sons|strong=\"H1121\"*, your|strong=\"H3068\"* daughters|strong=\"H1323\"*, your|strong=\"H3068\"* male|strong=\"H5650\"* servants|strong=\"H5650\"*, your|strong=\"H3068\"* female|strong=\"H1323\"* servants|strong=\"H5650\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* Levite|strong=\"H3881\"* who|strong=\"H3068\"* is|strong=\"H3068\"* within|strong=\"H6440\"* your|strong=\"H3068\"* gates|strong=\"H8179\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* no|strong=\"H6440\"* portion|strong=\"H2506\"* nor|strong=\"H2506\"* inheritance|strong=\"H5159\"* with|strong=\"H3068\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 13, + "text": "Be|strong=\"H4725\"* careful|strong=\"H8104\"* that|strong=\"H7200\"* you|strong=\"H3605\"* don’t offer|strong=\"H5927\"* your|strong=\"H3605\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* in|strong=\"H4725\"* every|strong=\"H3605\"* place|strong=\"H4725\"* that|strong=\"H7200\"* you|strong=\"H3605\"* see|strong=\"H7200\"*;" + }, + { + "verseNum": 14, + "text": "but|strong=\"H3588\"* in|strong=\"H3068\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* chooses in|strong=\"H3068\"* one|strong=\"H3605\"* of|strong=\"H3068\"* your|strong=\"H3068\"* tribes|strong=\"H7626\"*, there|strong=\"H8033\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* offer|strong=\"H5927\"* your|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*, and|strong=\"H3068\"* there|strong=\"H8033\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3588\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 15, + "text": "Yet|strong=\"H7535\"* you|strong=\"H5414\"* may|strong=\"H3068\"* kill|strong=\"H2076\"* and|strong=\"H3068\"* eat meat|strong=\"H1320\"* within|strong=\"H1320\"* all|strong=\"H3605\"* your|strong=\"H3068\"* gates|strong=\"H8179\"*, after|strong=\"H5315\"* all|strong=\"H3605\"* the|strong=\"H3605\"* desire|strong=\"H5315\"* of|strong=\"H3068\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*, according to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s blessing|strong=\"H1293\"* which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*. The|strong=\"H3605\"* unclean|strong=\"H2931\"* and|strong=\"H3068\"* the|strong=\"H3605\"* clean|strong=\"H2889\"* may|strong=\"H3068\"* eat of|strong=\"H3068\"* it|strong=\"H5414\"*, as|strong=\"H5315\"* of|strong=\"H3068\"* the|strong=\"H3605\"* gazelle|strong=\"H6643\"* and|strong=\"H3068\"* the|strong=\"H3605\"* deer." + }, + { + "verseNum": 16, + "text": "Only|strong=\"H7535\"* you|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat the|strong=\"H5921\"* blood|strong=\"H1818\"*. You|strong=\"H5921\"* shall|strong=\"H3808\"* pour|strong=\"H8210\"* it|strong=\"H5921\"* out|strong=\"H8210\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth like|strong=\"H3808\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H3605\"* may|strong=\"H3201\"* not|strong=\"H3808\"* eat within your|strong=\"H3605\"* gates|strong=\"H8179\"* the|strong=\"H3605\"* tithe|strong=\"H4643\"* of|strong=\"H3027\"* your|strong=\"H3605\"* grain|strong=\"H1715\"*, or|strong=\"H3808\"* of|strong=\"H3027\"* your|strong=\"H3605\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, or|strong=\"H3808\"* of|strong=\"H3027\"* your|strong=\"H3605\"* oil|strong=\"H3323\"*, or|strong=\"H3808\"* the|strong=\"H3605\"* firstborn|strong=\"H1062\"* of|strong=\"H3027\"* your|strong=\"H3605\"* herd|strong=\"H1241\"* or|strong=\"H3808\"* of|strong=\"H3027\"* your|strong=\"H3605\"* flock|strong=\"H6629\"*, nor|strong=\"H3808\"* any|strong=\"H3605\"* of|strong=\"H3027\"* your|strong=\"H3605\"* vows|strong=\"H5088\"* which|strong=\"H8179\"* you|strong=\"H3605\"* vow|strong=\"H5088\"*, nor|strong=\"H3808\"* your|strong=\"H3605\"* free will|strong=\"H3027\"* offerings|strong=\"H5071\"*, nor|strong=\"H3808\"* the|strong=\"H3605\"* wave offering|strong=\"H8641\"* of|strong=\"H3027\"* your|strong=\"H3605\"* hand|strong=\"H3027\"*;" + }, + { + "verseNum": 18, + "text": "but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* eat them|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* choose: you|strong=\"H3588\"*, your|strong=\"H3068\"* son|strong=\"H1121\"*, your|strong=\"H3068\"* daughter|strong=\"H1323\"*, your|strong=\"H3068\"* male|strong=\"H5650\"* servant|strong=\"H5650\"*, your|strong=\"H3068\"* female|strong=\"H1323\"* servant|strong=\"H5650\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* Levite|strong=\"H3881\"* who|strong=\"H3605\"* is|strong=\"H3068\"* within|strong=\"H6440\"* your|strong=\"H3068\"* gates|strong=\"H8179\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* rejoice|strong=\"H8055\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3588\"* you|strong=\"H3588\"* put|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "Be|strong=\"H3117\"* careful|strong=\"H8104\"* that|strong=\"H3605\"* you|strong=\"H3605\"* don’t forsake|strong=\"H5800\"* the|strong=\"H3605\"* Levite|strong=\"H3881\"* as|strong=\"H3117\"* long|strong=\"H3117\"* as|strong=\"H3117\"* you|strong=\"H3605\"* live|strong=\"H3117\"* in|strong=\"H5921\"* your|strong=\"H3605\"* land." + }, + { + "verseNum": 20, + "text": "When|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* enlarges|strong=\"H7337\"* your|strong=\"H3068\"* border|strong=\"H1366\"*, as|strong=\"H5315\"* he|strong=\"H3588\"* has|strong=\"H3068\"* promised|strong=\"H1696\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* say|strong=\"H1696\"*, “I|strong=\"H3588\"* want|strong=\"H5315\"* to|strong=\"H1696\"* eat meat|strong=\"H1320\"*,” because|strong=\"H3588\"* your|strong=\"H3068\"* soul|strong=\"H5315\"* desires to|strong=\"H1696\"* eat meat|strong=\"H1320\"*, you|strong=\"H3588\"* may|strong=\"H3068\"* eat meat|strong=\"H1320\"*, after|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* desire|strong=\"H5315\"* of|strong=\"H3068\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 21, + "text": "If|strong=\"H3588\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* choose to|strong=\"H3068\"* put|strong=\"H5414\"* his|strong=\"H3605\"* name|strong=\"H8034\"* is|strong=\"H3068\"* too|strong=\"H4480\"* far|strong=\"H7368\"* from|strong=\"H4480\"* you|strong=\"H3588\"*, then|strong=\"H5414\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* kill|strong=\"H2076\"* of|strong=\"H3068\"* your|strong=\"H3068\"* herd|strong=\"H1241\"* and|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* flock|strong=\"H6629\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H3588\"*, as|strong=\"H5315\"* I|strong=\"H3588\"* have|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*; and|strong=\"H3068\"* you|strong=\"H3588\"* may|strong=\"H3068\"* eat within|strong=\"H4480\"* your|strong=\"H3068\"* gates|strong=\"H8179\"*, after|strong=\"H4480\"* all|strong=\"H3605\"* the|strong=\"H3605\"* desire|strong=\"H5315\"* of|strong=\"H3068\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 22, + "text": "Even|strong=\"H3651\"* as|strong=\"H3651\"* the|strong=\"H3651\"* gazelle|strong=\"H6643\"* and|strong=\"H3651\"* as|strong=\"H3651\"* the|strong=\"H3651\"* deer is|strong=\"H3651\"* eaten, so|strong=\"H3651\"* you|strong=\"H3651\"* shall|strong=\"H2889\"* eat of|strong=\"H6643\"* it|strong=\"H3651\"*. The|strong=\"H3651\"* unclean|strong=\"H2931\"* and|strong=\"H3651\"* the|strong=\"H3651\"* clean|strong=\"H2889\"* may|strong=\"H2889\"* eat of|strong=\"H6643\"* it|strong=\"H3651\"* alike|strong=\"H3162\"*." + }, + { + "verseNum": 23, + "text": "Only|strong=\"H7535\"* be|strong=\"H3808\"* sure|strong=\"H2388\"* that|strong=\"H3588\"* you|strong=\"H3588\"* don’t eat the|strong=\"H3588\"* blood|strong=\"H1818\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* blood|strong=\"H1818\"* is|strong=\"H1931\"* the|strong=\"H3588\"* life|strong=\"H5315\"*. You|strong=\"H3588\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* eat the|strong=\"H3588\"* life|strong=\"H5315\"* with|strong=\"H5973\"* the|strong=\"H3588\"* meat|strong=\"H1320\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat it|strong=\"H5921\"*. You|strong=\"H5921\"* shall|strong=\"H3808\"* pour|strong=\"H8210\"* it|strong=\"H5921\"* out|strong=\"H8210\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth like|strong=\"H3808\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* eat it|strong=\"H3588\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* may|strong=\"H3068\"* go|strong=\"H3190\"* well|strong=\"H3190\"* with|strong=\"H3068\"* you|strong=\"H3588\"* and|strong=\"H1121\"* with|strong=\"H3068\"* your|strong=\"H3068\"* children|strong=\"H1121\"* after|strong=\"H3588\"* you|strong=\"H3588\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* do|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*." + }, + { + "verseNum": 26, + "text": "Only|strong=\"H7535\"* your|strong=\"H3068\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* which|strong=\"H3068\"* you|strong=\"H5375\"* have|strong=\"H1961\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* vows|strong=\"H5088\"*, you|strong=\"H5375\"* shall|strong=\"H3068\"* take|strong=\"H5375\"* and|strong=\"H3068\"* go|strong=\"H1961\"* to|strong=\"H3068\"* the|strong=\"H5375\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* choose." + }, + { + "verseNum": 27, + "text": "You|strong=\"H5921\"* shall|strong=\"H3068\"* offer|strong=\"H6213\"* your|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*, the|strong=\"H5921\"* meat|strong=\"H1320\"* and|strong=\"H3068\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*, on|strong=\"H5921\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s altar|strong=\"H4196\"*. The|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H3068\"* your|strong=\"H3068\"* sacrifices|strong=\"H2077\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* on|strong=\"H5921\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s altar|strong=\"H4196\"*, and|strong=\"H3068\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* eat the|strong=\"H5921\"* meat|strong=\"H1320\"*." + }, + { + "verseNum": 28, + "text": "Observe|strong=\"H8104\"* and|strong=\"H1121\"* hear|strong=\"H8085\"* all|strong=\"H3605\"* these|strong=\"H6213\"* words|strong=\"H1697\"* which|strong=\"H3068\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* may|strong=\"H3068\"* go|strong=\"H3190\"* well|strong=\"H3190\"* with|strong=\"H3068\"* you|strong=\"H3588\"* and|strong=\"H1121\"* with|strong=\"H3068\"* your|strong=\"H3068\"* children|strong=\"H1121\"* after|strong=\"H3588\"* you|strong=\"H3588\"* forever|strong=\"H5769\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* do|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* good|strong=\"H2896\"* and|strong=\"H1121\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s eyes|strong=\"H5869\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* cuts|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H3588\"* where|strong=\"H8033\"* you|strong=\"H3588\"* go|strong=\"H3068\"* in|strong=\"H3427\"* to|strong=\"H3068\"* dispossess|strong=\"H3423\"* them|strong=\"H6440\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* dispossess|strong=\"H3423\"* them|strong=\"H6440\"* and|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3068\"* land|strong=\"H6440\"*," + }, + { + "verseNum": 30, + "text": "be|strong=\"H1571\"* careful|strong=\"H8104\"* that|strong=\"H1471\"* you|strong=\"H6440\"* are|strong=\"H1471\"* not|strong=\"H6213\"* ensnared|strong=\"H5367\"* to|strong=\"H6213\"* follow|strong=\"H6213\"* them|strong=\"H6440\"* after|strong=\"H1875\"* they|strong=\"H3651\"* are|strong=\"H1471\"* destroyed|strong=\"H8045\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H6440\"* that|strong=\"H1471\"* you|strong=\"H6440\"* not|strong=\"H6213\"* inquire|strong=\"H1875\"* after|strong=\"H1875\"* their|strong=\"H6440\"* gods, saying, “How|strong=\"H3651\"* do|strong=\"H6213\"* these|strong=\"H6213\"* nations|strong=\"H1471\"* serve|strong=\"H5647\"* their|strong=\"H6440\"* gods? I|strong=\"H3651\"* will|strong=\"H1471\"* do|strong=\"H6213\"* likewise|strong=\"H3651\"*.”" + }, + { + "verseNum": 31, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* do|strong=\"H6213\"* so|strong=\"H3651\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*; for|strong=\"H3588\"* every|strong=\"H3605\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, which|strong=\"H3068\"* he|strong=\"H3588\"* hates|strong=\"H8130\"*, they|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3068\"* their|strong=\"H3605\"* gods; for|strong=\"H3588\"* they|strong=\"H3588\"* even|strong=\"H1571\"* burn|strong=\"H8313\"* their|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H3605\"* daughters|strong=\"H1323\"* in|strong=\"H3068\"* the|strong=\"H3605\"* fire to|strong=\"H3068\"* their|strong=\"H3605\"* gods." + }, + { + "verseNum": 32, + "text": "Whatever thing I command you, that you shall observe to do. You shall not add to it, nor take away from it." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "If a|strong=\"H3068\"* prophet or|strong=\"H3808\"* a|strong=\"H3068\"* dreamer of|strong=\"H1697\"* dreams arises among|strong=\"H4480\"* you|strong=\"H6680\"*, and|strong=\"H6213\"* he|strong=\"H6213\"* gives you|strong=\"H6680\"* a|strong=\"H3068\"* sign or|strong=\"H3808\"* a|strong=\"H3068\"* wonder," + }, + { + "verseNum": 2, + "text": "and|strong=\"H6965\"* the|strong=\"H3588\"* sign|strong=\"H4159\"* or|strong=\"H3588\"* the|strong=\"H3588\"* wonder|strong=\"H4159\"* comes|strong=\"H5414\"* to|strong=\"H5414\"* pass|strong=\"H6965\"*, of|strong=\"H5030\"* which|strong=\"H5030\"* he|strong=\"H3588\"* spoke to|strong=\"H5414\"* you|strong=\"H3588\"*, saying, “Let|strong=\"H5414\"*’s go|strong=\"H6965\"* after|strong=\"H3588\"* other gods” (which|strong=\"H5030\"* you|strong=\"H3588\"* have|strong=\"H5030\"* not|strong=\"H5414\"* known) “and|strong=\"H6965\"* let|strong=\"H5414\"*’s serve them|strong=\"H5414\"*,”" + }, + { + "verseNum": 3, + "text": "you|strong=\"H3045\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* listen to|strong=\"H1696\"* the|strong=\"H5647\"* words of|strong=\"H5647\"* that|strong=\"H3045\"* prophet|strong=\"H1696\"*, or|strong=\"H3808\"* to|strong=\"H1696\"* that|strong=\"H3045\"* dreamer of|strong=\"H5647\"* dreams; for|strong=\"H3045\"* Yahweh|strong=\"H3068\"* your|strong=\"H3045\"* God|strong=\"H3808\"* is|strong=\"H1696\"* testing you|strong=\"H3045\"*, to|strong=\"H1696\"* know|strong=\"H3045\"* whether|strong=\"H3045\"* you|strong=\"H3045\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3045\"* God|strong=\"H3808\"* with|strong=\"H1696\"* all|strong=\"H3045\"* your|strong=\"H3045\"* heart and|strong=\"H3212\"* with|strong=\"H1696\"* all|strong=\"H3045\"* your|strong=\"H3045\"* soul." + }, + { + "verseNum": 4, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* walk after|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, fear him|strong=\"H1931\"*, keep|strong=\"H8085\"* his|strong=\"H3605\"* commandments|strong=\"H1697\"*, and|strong=\"H3068\"* obey|strong=\"H8085\"* his|strong=\"H3605\"* voice. You|strong=\"H3588\"* shall|strong=\"H3068\"* serve him|strong=\"H1931\"*, and|strong=\"H3068\"* cling to|strong=\"H3068\"* him|strong=\"H1931\"*." + }, + { + "verseNum": 5, + "text": "That|strong=\"H8085\"* prophet, or|strong=\"H8085\"* that|strong=\"H8085\"* dreamer of|strong=\"H3068\"* dreams, shall|strong=\"H3068\"* be|strong=\"H3068\"* put|strong=\"H3068\"* to|strong=\"H3212\"* death, because|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H8085\"* rebellion against|strong=\"H3212\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H3212\"* you|strong=\"H5647\"* out|strong=\"H3212\"* of|strong=\"H3068\"* the|strong=\"H8085\"* land of|strong=\"H3068\"* Egypt and|strong=\"H3068\"* redeemed you|strong=\"H5647\"* out|strong=\"H3212\"* of|strong=\"H3068\"* the|strong=\"H8085\"* house of|strong=\"H3068\"* bondage|strong=\"H5647\"*, to|strong=\"H3212\"* draw you|strong=\"H5647\"* aside out|strong=\"H3212\"* of|strong=\"H3068\"* the|strong=\"H8085\"* way|strong=\"H3212\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H4687\"* you|strong=\"H5647\"* to|strong=\"H3212\"* walk|strong=\"H3212\"* in|strong=\"H3068\"*. So|strong=\"H8085\"* you|strong=\"H5647\"* shall|strong=\"H3068\"* remove the|strong=\"H8085\"* evil from|strong=\"H8085\"* among you|strong=\"H5647\"*." + }, + { + "verseNum": 6, + "text": "If|strong=\"H3588\"* your|strong=\"H3068\"* brother, the|strong=\"H5921\"* son of|strong=\"H1004\"* your|strong=\"H3068\"* mother, or|strong=\"H4480\"* your|strong=\"H3068\"* son, or|strong=\"H4480\"* your|strong=\"H3068\"* daughter|strong=\"H1004\"*, or|strong=\"H4480\"* the|strong=\"H5921\"* wife|strong=\"H1696\"* of|strong=\"H1004\"* your|strong=\"H3068\"* bosom, or|strong=\"H4480\"* your|strong=\"H3068\"* friend who|strong=\"H1931\"* is|strong=\"H3068\"* as|strong=\"H3068\"* your|strong=\"H3068\"* own soul, entices you|strong=\"H3588\"* secretly, saying|strong=\"H1696\"*, “Let|strong=\"H3212\"*’s go|strong=\"H3212\"* and|strong=\"H3068\"* serve other gods”—which|strong=\"H1931\"* you|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3588\"* known|strong=\"H3318\"*, you|strong=\"H3588\"*, nor|strong=\"H4480\"* your|strong=\"H3068\"* fathers;" + }, + { + "verseNum": 7, + "text": "of|strong=\"H1121\"* the|strong=\"H3588\"* gods of|strong=\"H1121\"* the|strong=\"H3588\"* peoples who|strong=\"H1121\"* are|strong=\"H1121\"* around you|strong=\"H3588\"*, near|strong=\"H3808\"* to|strong=\"H3212\"* you|strong=\"H3588\"*, or|strong=\"H3808\"* far|strong=\"H5315\"* off|strong=\"H7453\"* from|strong=\"H5315\"* you|strong=\"H3588\"*, from|strong=\"H5315\"* the|strong=\"H3588\"* one|strong=\"H3808\"* end of|strong=\"H1121\"* the|strong=\"H3588\"* earth even|strong=\"H3588\"* to|strong=\"H3212\"* the|strong=\"H3588\"* other|strong=\"H7453\"* end of|strong=\"H1121\"* the|strong=\"H3588\"* earth—" + }, + { + "verseNum": 8, + "text": "you|strong=\"H5704\"* shall|strong=\"H5971\"* not|strong=\"H5971\"* consent to|strong=\"H5704\"* him|strong=\"H5439\"* nor|strong=\"H4480\"* listen to|strong=\"H5704\"* him|strong=\"H5439\"*; neither|strong=\"H4480\"* shall|strong=\"H5971\"* your|strong=\"H4480\"* eye pity him|strong=\"H5439\"*, neither|strong=\"H4480\"* shall|strong=\"H5971\"* you|strong=\"H5704\"* spare, neither|strong=\"H4480\"* shall|strong=\"H5971\"* you|strong=\"H5704\"* conceal him|strong=\"H5439\"*;" + }, + { + "verseNum": 9, + "text": "but|strong=\"H3808\"* you|strong=\"H5921\"* shall|strong=\"H5869\"* surely|strong=\"H8085\"* kill him|strong=\"H5921\"*. Your|strong=\"H5921\"* hand shall|strong=\"H5869\"* be|strong=\"H3808\"* first on|strong=\"H5921\"* him|strong=\"H5921\"* to|strong=\"H5921\"* put him|strong=\"H5921\"* to|strong=\"H5921\"* death, and|strong=\"H5869\"* afterwards the|strong=\"H5921\"* hands of|strong=\"H5869\"* all|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H3808\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3588\"* shall|strong=\"H5971\"* stone him|strong=\"H3027\"* to|strong=\"H4191\"* death|strong=\"H4191\"* with|strong=\"H3027\"* stones, because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H1961\"* sought to|strong=\"H4191\"* draw|strong=\"H5971\"* you|strong=\"H3588\"* away|strong=\"H3605\"* from|strong=\"H3027\"* Yahweh|strong=\"H3068\"* your|strong=\"H3605\"* God|strong=\"H3027\"*, who|strong=\"H3605\"* brought|strong=\"H1961\"* you|strong=\"H3588\"* out|strong=\"H3605\"* of|strong=\"H3027\"* the|strong=\"H3605\"* land of|strong=\"H3027\"* Egypt, out|strong=\"H3605\"* of|strong=\"H3027\"* the|strong=\"H3605\"* house of|strong=\"H3027\"* bondage." + }, + { + "verseNum": 11, + "text": "All|strong=\"H5921\"* Israel shall|strong=\"H3068\"* hear, and|strong=\"H3068\"* fear, and|strong=\"H3068\"* shall|strong=\"H3068\"* not|strong=\"H3588\"* do|strong=\"H3068\"* any|strong=\"H3588\"* more|strong=\"H3588\"* wickedness like|strong=\"H3318\"* this|strong=\"H3588\"* among|strong=\"H5921\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 12, + "text": "If you|strong=\"H3605\"* hear|strong=\"H8085\"* about|strong=\"H1697\"* one|strong=\"H2088\"* of|strong=\"H1697\"* your|strong=\"H3605\"* cities, which|strong=\"H1697\"* Yahweh|strong=\"H3068\"* your|strong=\"H3605\"* God|strong=\"H3808\"* gives you|strong=\"H3605\"* to|strong=\"H3478\"* dwell there|strong=\"H2088\"*, that|strong=\"H3605\"*" + }, + { + "verseNum": 13, + "text": "certain|strong=\"H8085\"* wicked fellows have|strong=\"H3068\"* gone|strong=\"H3068\"* out|strong=\"H5414\"* from|strong=\"H8085\"* among|strong=\"H3427\"* you|strong=\"H3588\"* and|strong=\"H3068\"* have|strong=\"H3068\"* drawn away|strong=\"H5414\"* the|strong=\"H8085\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* their|strong=\"H3068\"* city|strong=\"H5892\"*, saying, “Let|strong=\"H5414\"*’s go|strong=\"H3068\"* and|strong=\"H3068\"* serve other gods,” which|strong=\"H3068\"* you|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H5414\"* known|strong=\"H8085\"*," + }, + { + "verseNum": 14, + "text": "then|strong=\"H3318\"* you|strong=\"H3045\"* shall|strong=\"H1121\"* inquire, investigate|strong=\"H3045\"*, and|strong=\"H1121\"* ask diligently. Behold|strong=\"H3808\"*, if|strong=\"H1121\"* it|strong=\"H3045\"* is|strong=\"H5892\"* true, and|strong=\"H1121\"* the|strong=\"H5647\"* thing certain|strong=\"H3045\"*, that|strong=\"H3045\"* such|strong=\"H3808\"* abomination was|strong=\"H5892\"* done|strong=\"H5647\"* among|strong=\"H7130\"* you|strong=\"H3045\"*," + }, + { + "verseNum": 15, + "text": "you|strong=\"H6213\"* shall|strong=\"H1697\"* surely|strong=\"H6213\"* strike the|strong=\"H6213\"* inhabitants of|strong=\"H1697\"* that|strong=\"H1697\"* city with|strong=\"H6213\"* the|strong=\"H6213\"* edge of|strong=\"H1697\"* the|strong=\"H6213\"* sword, destroying it|strong=\"H6213\"* utterly, with|strong=\"H6213\"* all|strong=\"H6213\"* that|strong=\"H1697\"* is|strong=\"H1697\"* therein|strong=\"H7130\"* and|strong=\"H6213\"* its|strong=\"H6213\"* livestock, with|strong=\"H6213\"* the|strong=\"H6213\"* edge of|strong=\"H1697\"* the|strong=\"H6213\"* sword." + }, + { + "verseNum": 16, + "text": "You|strong=\"H3605\"* shall|strong=\"H5892\"* gather all|strong=\"H3605\"* its|strong=\"H3605\"* plunder into|strong=\"H2719\"* the|strong=\"H3605\"* middle of|strong=\"H3427\"* its|strong=\"H3605\"* street, and|strong=\"H5892\"* shall|strong=\"H5892\"* burn with|strong=\"H3427\"* fire the|strong=\"H3605\"* city|strong=\"H5892\"*, with|strong=\"H3427\"* all|strong=\"H3605\"* of|strong=\"H3427\"* its|strong=\"H3605\"* plunder, to|strong=\"H6310\"* Yahweh|strong=\"H3068\"* your|strong=\"H3605\"* God. It|strong=\"H1931\"* shall|strong=\"H5892\"* be|strong=\"H5892\"* a|strong=\"H3068\"* heap forever|strong=\"H3605\"*. It|strong=\"H1931\"* shall|strong=\"H5892\"* not|strong=\"H5892\"* be|strong=\"H5892\"* built again." + }, + { + "verseNum": 17, + "text": "Nothing|strong=\"H3808\"* of|strong=\"H3068\"* the|strong=\"H3605\"* devoted thing|strong=\"H3605\"* shall|strong=\"H3068\"* cling to|strong=\"H3068\"* your|strong=\"H3068\"* hand, that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* may|strong=\"H1961\"* turn|strong=\"H6908\"* from|strong=\"H3068\"* the|strong=\"H3605\"* fierceness of|strong=\"H3068\"* his|strong=\"H3605\"* anger and|strong=\"H3068\"* show|strong=\"H1961\"* you|strong=\"H3605\"* mercy|strong=\"H3068\"*, and|strong=\"H3068\"* have|strong=\"H1961\"* compassion on|strong=\"H3068\"* you|strong=\"H3605\"* and|strong=\"H3068\"* multiply you|strong=\"H3605\"*, as|strong=\"H1961\"* he|strong=\"H3068\"* has|strong=\"H3068\"* sworn to|strong=\"H3068\"* your|strong=\"H3068\"* fathers," + }, + { + "verseNum": 18, + "text": "when|strong=\"H7725\"* you|strong=\"H5414\"* listen to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice, to|strong=\"H7725\"* keep|strong=\"H1692\"* all|strong=\"H5414\"* his|strong=\"H5414\"* commandments which|strong=\"H3068\"* I|strong=\"H5414\"* command|strong=\"H3027\"* you|strong=\"H5414\"* today, to|strong=\"H7725\"* do|strong=\"H3068\"* that|strong=\"H3068\"* which|strong=\"H3068\"* is|strong=\"H3068\"* right|strong=\"H3068\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s eyes." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "You|strong=\"H7760\"* are|strong=\"H1121\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. You|strong=\"H7760\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* cut|strong=\"H1413\"* yourselves|strong=\"H5869\"*, nor|strong=\"H3808\"* make|strong=\"H7760\"* any|strong=\"H3808\"* baldness|strong=\"H7144\"* between your|strong=\"H3068\"* eyes|strong=\"H5869\"* for|strong=\"H3068\"* the|strong=\"H3068\"* dead|strong=\"H4191\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* people|strong=\"H5971\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* chosen you|strong=\"H3588\"* to|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* people|strong=\"H5971\"* for|strong=\"H3588\"* his|strong=\"H3605\"* own|strong=\"H1961\"* possession|strong=\"H5459\"*, above|strong=\"H5921\"* all|strong=\"H3605\"* peoples|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H5971\"* on|strong=\"H5921\"* the|strong=\"H3605\"* face|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat any|strong=\"H3605\"* abominable|strong=\"H8441\"* thing|strong=\"H8441\"*." + }, + { + "verseNum": 4, + "text": "These|strong=\"H2063\"* are the|strong=\"H7716\"* animals which you may eat: the|strong=\"H7716\"* ox|strong=\"H7794\"*, the|strong=\"H7716\"* sheep|strong=\"H7716\"*, the|strong=\"H7716\"* goat|strong=\"H5795\"*," + }, + { + "verseNum": 5, + "text": "the deer|strong=\"H3180\"*, the gazelle|strong=\"H6643\"*, the roebuck|strong=\"H6643\"*, the wild goat, the ibex|strong=\"H1788\"*, the antelope|strong=\"H8377\"*, and|strong=\"H6643\"* the chamois|strong=\"H2169\"*." + }, + { + "verseNum": 6, + "text": "Every|strong=\"H3605\"* animal that|strong=\"H3605\"* parts|strong=\"H6541\"* the|strong=\"H3605\"* hoof|strong=\"H6541\"*, and|strong=\"H5927\"* has|strong=\"H3605\"* the|strong=\"H3605\"* hoof|strong=\"H6541\"* split|strong=\"H8156\"* in|strong=\"H5927\"* two|strong=\"H8147\"* and|strong=\"H5927\"* chews|strong=\"H5927\"* the|strong=\"H3605\"* cud|strong=\"H1625\"*, among the|strong=\"H3605\"* animals, you|strong=\"H3605\"* may eat." + }, + { + "verseNum": 7, + "text": "Nevertheless|strong=\"H3588\"* these|strong=\"H2088\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat of|strong=\"H3808\"* them|strong=\"H1992\"* that|strong=\"H3588\"* chew|strong=\"H5927\"* the|strong=\"H3588\"* cud|strong=\"H1625\"*, or|strong=\"H3808\"* of|strong=\"H3808\"* those|strong=\"H1992\"* who|strong=\"H1992\"* have|strong=\"H3588\"* the|strong=\"H3588\"* hoof|strong=\"H6541\"* split|strong=\"H8156\"*: the|strong=\"H3588\"* camel|strong=\"H1581\"*, the|strong=\"H3588\"* hare, and|strong=\"H5927\"* the|strong=\"H3588\"* rabbit. Because|strong=\"H3588\"* they|strong=\"H1992\"* chew|strong=\"H5927\"* the|strong=\"H3588\"* cud|strong=\"H1625\"* but|strong=\"H3588\"* don’t part|strong=\"H1992\"* the|strong=\"H3588\"* hoof|strong=\"H6541\"*, they|strong=\"H1992\"* are|strong=\"H1992\"* unclean|strong=\"H2931\"* to|strong=\"H5927\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3588\"* pig|strong=\"H2386\"*, because|strong=\"H3588\"* it|strong=\"H1931\"* has|strong=\"H3588\"* a|strong=\"H3068\"* split hoof|strong=\"H6541\"* but|strong=\"H3588\"* doesn’t chew the|strong=\"H3588\"* cud|strong=\"H1625\"*, is|strong=\"H1931\"* unclean|strong=\"H2931\"* to|strong=\"H1320\"* you|strong=\"H3588\"*. You|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat their|strong=\"H3588\"* meat|strong=\"H1320\"*. You|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* touch|strong=\"H5060\"* their|strong=\"H3588\"* carcasses|strong=\"H5038\"*." + }, + { + "verseNum": 9, + "text": "These|strong=\"H2088\"* you|strong=\"H3605\"* may|strong=\"H4325\"* eat of|strong=\"H4325\"* all|strong=\"H3605\"* that|strong=\"H3605\"* are|strong=\"H4325\"* in|strong=\"H2088\"* the|strong=\"H3605\"* waters|strong=\"H4325\"*: you|strong=\"H3605\"* may|strong=\"H4325\"* eat whatever|strong=\"H3605\"* has|strong=\"H2088\"* fins|strong=\"H5579\"* and|strong=\"H4325\"* scales|strong=\"H7193\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat whatever|strong=\"H3605\"* doesn’t have|strong=\"H3605\"* fins|strong=\"H5579\"* and|strong=\"H5579\"* scales|strong=\"H7193\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"* to|strong=\"H3808\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 11, + "text": "Of|strong=\"H3605\"* all|strong=\"H3605\"* clean|strong=\"H2889\"* birds|strong=\"H6833\"* you|strong=\"H3605\"* may|strong=\"H2889\"* eat." + }, + { + "verseNum": 12, + "text": "But|strong=\"H3808\"* these|strong=\"H2088\"* are|strong=\"H1992\"* they|strong=\"H1992\"* of|strong=\"H3808\"* which|strong=\"H1992\"* you|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat: the|strong=\"H3808\"* eagle|strong=\"H5404\"*, the|strong=\"H3808\"* vulture|strong=\"H6538\"*, the|strong=\"H3808\"* osprey," + }, + { + "verseNum": 13, + "text": "the red kite, the falcon, the kite of any kind|strong=\"H4327\"*," + }, + { + "verseNum": 14, + "text": "every|strong=\"H3605\"* raven|strong=\"H6158\"* of|strong=\"H3605\"* any|strong=\"H3605\"* kind|strong=\"H4327\"*," + }, + { + "verseNum": 15, + "text": "the|strong=\"H1323\"* ostrich|strong=\"H3284\"*, the|strong=\"H1323\"* owl|strong=\"H8464\"*, the|strong=\"H1323\"* seagull, the|strong=\"H1323\"* hawk|strong=\"H5322\"* of|strong=\"H1323\"* any kind|strong=\"H4327\"*," + }, + { + "verseNum": 16, + "text": "the|strong=\"H3563\"* little|strong=\"H3563\"* owl|strong=\"H3244\"*, the|strong=\"H3563\"* great|strong=\"H3244\"* owl|strong=\"H3244\"*, the|strong=\"H3563\"* horned owl|strong=\"H3244\"*," + }, + { + "verseNum": 17, + "text": "the pelican|strong=\"H6893\"*, the vulture|strong=\"H7360\"*, the cormorant|strong=\"H7994\"*," + }, + { + "verseNum": 18, + "text": "the stork|strong=\"H2624\"*, the heron after|strong=\"H4327\"* its kind|strong=\"H4327\"*, the hoopoe|strong=\"H1744\"*, and the bat|strong=\"H5847\"*." + }, + { + "verseNum": 19, + "text": "All|strong=\"H3605\"* winged|strong=\"H5775\"* creeping|strong=\"H2931\"* things|strong=\"H3605\"* are|strong=\"H5775\"* unclean|strong=\"H2931\"* to|strong=\"H3808\"* you|strong=\"H3605\"*. They|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* eaten." + }, + { + "verseNum": 20, + "text": "Of|strong=\"H3605\"* all|strong=\"H3605\"* clean|strong=\"H2889\"* birds|strong=\"H5775\"* you|strong=\"H3605\"* may|strong=\"H2889\"* eat." + }, + { + "verseNum": 21, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* eat of|strong=\"H3068\"* anything|strong=\"H3605\"* that|strong=\"H3588\"* dies|strong=\"H5038\"* of|strong=\"H3068\"* itself|strong=\"H5038\"*. You|strong=\"H3588\"* may|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* the|strong=\"H3605\"* foreigner|strong=\"H5237\"* living|strong=\"H3605\"* among|strong=\"H5971\"* you|strong=\"H3588\"* who|strong=\"H3605\"* is|strong=\"H3068\"* within your|strong=\"H3068\"* gates|strong=\"H8179\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H3068\"* eat it|strong=\"H5414\"*; or|strong=\"H3808\"* you|strong=\"H3588\"* may|strong=\"H3068\"* sell|strong=\"H4376\"* it|strong=\"H5414\"* to|strong=\"H3068\"* a|strong=\"H3068\"* foreigner|strong=\"H5237\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* people|strong=\"H5971\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H3605\"* shall|strong=\"H2233\"* surely|strong=\"H3318\"* tithe|strong=\"H6237\"* all|strong=\"H3605\"* the|strong=\"H3605\"* increase|strong=\"H8393\"* of|strong=\"H8141\"* your|strong=\"H3605\"* seed|strong=\"H2233\"*, that|strong=\"H3605\"* which|strong=\"H7704\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H8141\"* the|strong=\"H3605\"* field|strong=\"H7704\"* year|strong=\"H8141\"* by|strong=\"H8141\"* year|strong=\"H8141\"*." + }, + { + "verseNum": 23, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* eat before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, in|strong=\"H3068\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H3068\"* he|strong=\"H3117\"* chooses to|strong=\"H3068\"* cause his|strong=\"H3605\"* name|strong=\"H8034\"* to|strong=\"H3068\"* dwell|strong=\"H7931\"*, the|strong=\"H3605\"* tithe|strong=\"H4643\"* of|strong=\"H3068\"* your|strong=\"H3068\"* grain|strong=\"H1715\"*, of|strong=\"H3068\"* your|strong=\"H3068\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, and|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* oil|strong=\"H3323\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* firstborn|strong=\"H1062\"* of|strong=\"H3068\"* your|strong=\"H3068\"* herd|strong=\"H1241\"* and|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* flock|strong=\"H6629\"*; that|strong=\"H3605\"* you|strong=\"H6440\"* may|strong=\"H3068\"* learn|strong=\"H3925\"* to|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* always|strong=\"H3605\"*." + }, + { + "verseNum": 24, + "text": "If|strong=\"H3588\"* the|strong=\"H3588\"* way|strong=\"H1870\"* is|strong=\"H3068\"* too|strong=\"H4480\"* long|strong=\"H7235\"* for|strong=\"H3588\"* you|strong=\"H3588\"*, so|strong=\"H4480\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3068\"* not|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* carry|strong=\"H5375\"* it|strong=\"H7760\"* because|strong=\"H3588\"* the|strong=\"H3588\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* choose to|strong=\"H3201\"* set|strong=\"H7760\"* his|strong=\"H5375\"* name|strong=\"H8034\"* there|strong=\"H8033\"* is|strong=\"H3068\"* too|strong=\"H4480\"* far|strong=\"H7368\"* from|strong=\"H4480\"* you|strong=\"H3588\"*, when|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* blesses|strong=\"H1288\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 25, + "text": "then|strong=\"H1980\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* turn|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H1980\"* money|strong=\"H3701\"*, bind|strong=\"H6887\"* up|strong=\"H5414\"* the|strong=\"H5414\"* money|strong=\"H3701\"* in|strong=\"H1980\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H1980\"* shall|strong=\"H3068\"* go|strong=\"H1980\"* to|strong=\"H1980\"* the|strong=\"H5414\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* choose." + }, + { + "verseNum": 26, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* trade the|strong=\"H3605\"* money|strong=\"H3701\"* for|strong=\"H6440\"* whatever|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"* desires|strong=\"H7592\"*: for|strong=\"H6440\"* cattle|strong=\"H1241\"*, or|strong=\"H3196\"* for|strong=\"H6440\"* sheep|strong=\"H6629\"*, or|strong=\"H3196\"* for|strong=\"H6440\"* wine|strong=\"H3196\"*, or|strong=\"H3196\"* for|strong=\"H6440\"* strong|strong=\"H7941\"* drink|strong=\"H7941\"*, or|strong=\"H3196\"* for|strong=\"H6440\"* whatever|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"* asks|strong=\"H7592\"* of|strong=\"H1004\"* you|strong=\"H5414\"*. You|strong=\"H5414\"* shall|strong=\"H3068\"* eat there|strong=\"H8033\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* rejoice|strong=\"H8055\"*, you|strong=\"H5414\"* and|strong=\"H3068\"* your|strong=\"H3068\"* household|strong=\"H1004\"*." + }, + { + "verseNum": 27, + "text": "You|strong=\"H3588\"* shall|strong=\"H3881\"* not|strong=\"H3808\"* forsake|strong=\"H5800\"* the|strong=\"H3588\"* Levite|strong=\"H3881\"* who|strong=\"H3881\"* is|strong=\"H5159\"* within|strong=\"H5973\"* your|strong=\"H3588\"* gates|strong=\"H8179\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* no|strong=\"H3808\"* portion|strong=\"H2506\"* nor|strong=\"H3808\"* inheritance|strong=\"H5159\"* with|strong=\"H5973\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 28, + "text": "At|strong=\"H3318\"* the|strong=\"H3605\"* end|strong=\"H7097\"* of|strong=\"H8141\"* every|strong=\"H3605\"* three|strong=\"H7969\"* years|strong=\"H8141\"* you|strong=\"H3605\"* shall|strong=\"H1931\"* bring|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tithe|strong=\"H4643\"* of|strong=\"H8141\"* your|strong=\"H3605\"* increase|strong=\"H8393\"* in|strong=\"H8141\"* the|strong=\"H3605\"* same|strong=\"H1931\"* year|strong=\"H8141\"*, and|strong=\"H8141\"* shall|strong=\"H1931\"* store it|strong=\"H1931\"* within your|strong=\"H3605\"* gates|strong=\"H8179\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3605\"* Levite|strong=\"H3881\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* no|strong=\"H6213\"* portion|strong=\"H2506\"* nor|strong=\"H2506\"* inheritance|strong=\"H5159\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, as|strong=\"H6213\"* well|strong=\"H5973\"* as|strong=\"H6213\"* the|strong=\"H3605\"* foreigner|strong=\"H1616\"* living|strong=\"H3605\"* among|strong=\"H5973\"* you|strong=\"H3588\"*, the|strong=\"H3605\"* fatherless|strong=\"H3490\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* widow who|strong=\"H3605\"* are|strong=\"H3027\"* within|strong=\"H5973\"* your|strong=\"H3068\"* gates|strong=\"H8179\"* shall|strong=\"H3068\"* come, and|strong=\"H3068\"* shall|strong=\"H3068\"* eat and|strong=\"H3068\"* be|strong=\"H3027\"* satisfied|strong=\"H7646\"*; that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* may|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H3588\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* which|strong=\"H3068\"* you|strong=\"H3588\"* do|strong=\"H6213\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"H6213\"* the|strong=\"H6213\"* end|strong=\"H7093\"* of|strong=\"H8141\"* every|strong=\"H6213\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*, you|strong=\"H6213\"* shall|strong=\"H8141\"* cancel debts." + }, + { + "verseNum": 2, + "text": "This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3605\"* way|strong=\"H1697\"* it|strong=\"H7121\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* done|strong=\"H3027\"*: every|strong=\"H3605\"* creditor|strong=\"H5383\"* shall|strong=\"H3068\"* release|strong=\"H8059\"* that|strong=\"H3588\"* which|strong=\"H3068\"* he|strong=\"H3588\"* has|strong=\"H3068\"* lent|strong=\"H5383\"* to|strong=\"H3068\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"*. He|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* require payment from|strong=\"H3027\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"* and|strong=\"H3068\"* his|strong=\"H3605\"* brother|strong=\"H7453\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s release|strong=\"H8059\"* has|strong=\"H3068\"* been|strong=\"H3808\"* proclaimed|strong=\"H7121\"*." + }, + { + "verseNum": 3, + "text": "Of|strong=\"H3027\"* a|strong=\"H3068\"* foreigner|strong=\"H5237\"* you|strong=\"H3027\"* may|strong=\"H1961\"* require it|strong=\"H1961\"*; but|strong=\"H1961\"* whatever of|strong=\"H3027\"* yours is|strong=\"H3027\"* with|strong=\"H3027\"* your|strong=\"H1961\"* brother, your|strong=\"H1961\"* hand|strong=\"H3027\"* shall|strong=\"H3027\"* release|strong=\"H8058\"*." + }, + { + "verseNum": 4, + "text": "However|strong=\"H3588\"* there|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* no|strong=\"H3808\"* poor|strong=\"H3423\"* with|strong=\"H3068\"* you|strong=\"H3588\"* (for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* surely|strong=\"H3588\"* bless|strong=\"H1288\"* you|strong=\"H3588\"* in|strong=\"H3068\"* the|strong=\"H3588\"* land|strong=\"H5159\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"* for|strong=\"H3588\"* an|strong=\"H1961\"* inheritance|strong=\"H5159\"* to|strong=\"H3068\"* possess|strong=\"H3423\"*)" + }, + { + "verseNum": 5, + "text": "if only|strong=\"H7535\"* you|strong=\"H6680\"* diligently|strong=\"H8085\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, to|strong=\"H3068\"* observe|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* this|strong=\"H2063\"* commandment|strong=\"H4687\"* which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H3588\"*, as|strong=\"H3068\"* he|strong=\"H3588\"* promised|strong=\"H1696\"* you|strong=\"H3588\"*. You|strong=\"H3588\"* will|strong=\"H3068\"* lend|strong=\"H5670\"* to|strong=\"H1696\"* many|strong=\"H7227\"* nations|strong=\"H1471\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* borrow|strong=\"H5670\"*. You|strong=\"H3588\"* will|strong=\"H3068\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* many|strong=\"H7227\"* nations|strong=\"H1471\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 7, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* poor man|strong=\"H8179\"*, one|strong=\"H3808\"* of|strong=\"H3068\"* your|strong=\"H3068\"* brothers, is|strong=\"H3068\"* with|strong=\"H3068\"* you|strong=\"H3588\"* within any|strong=\"H5414\"* of|strong=\"H3068\"* your|strong=\"H3068\"* gates|strong=\"H8179\"* in|strong=\"H3068\"* your|strong=\"H3068\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* harden your|strong=\"H3068\"* heart|strong=\"H3824\"*, nor|strong=\"H3808\"* shut|strong=\"H7092\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* from|strong=\"H3027\"* your|strong=\"H3068\"* poor brother;" + }, + { + "verseNum": 8, + "text": "but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3027\"* surely|strong=\"H3588\"* open|strong=\"H6605\"* your|strong=\"H3588\"* hand|strong=\"H3027\"* to|strong=\"H3027\"* him|strong=\"H3027\"*, and|strong=\"H3027\"* shall|strong=\"H3027\"* surely|strong=\"H3588\"* lend|strong=\"H5670\"* him|strong=\"H3027\"* sufficient|strong=\"H1767\"* for|strong=\"H3588\"* his|strong=\"H3027\"* need|strong=\"H4270\"*, which|strong=\"H3588\"* he|strong=\"H3588\"* lacks|strong=\"H2637\"*." + }, + { + "verseNum": 9, + "text": "Beware|strong=\"H8104\"* that|strong=\"H3068\"* there|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* a|strong=\"H3068\"* wicked|strong=\"H1100\"* thought|strong=\"H5869\"* in|strong=\"H8141\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*, saying|strong=\"H1697\"*, “The|strong=\"H5921\"* seventh|strong=\"H7651\"* year|strong=\"H8141\"*, the|strong=\"H5921\"* year|strong=\"H8141\"* of|strong=\"H3068\"* release|strong=\"H8059\"*, is|strong=\"H3068\"* at|strong=\"H5921\"* hand|strong=\"H5414\"*,” and|strong=\"H3068\"* your|strong=\"H3068\"* eye|strong=\"H5869\"* be|strong=\"H1961\"* evil|strong=\"H7489\"* against|strong=\"H5921\"* your|strong=\"H3068\"* poor brother and|strong=\"H3068\"* you|strong=\"H5414\"* give|strong=\"H5414\"* him|strong=\"H5414\"* nothing|strong=\"H3808\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* cry|strong=\"H7121\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* against|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H3068\"* it|strong=\"H5414\"* be|strong=\"H1961\"* sin|strong=\"H2399\"* to|strong=\"H3068\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* surely|strong=\"H3588\"* give|strong=\"H5414\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* grieved|strong=\"H7489\"* when|strong=\"H3588\"* you|strong=\"H3588\"* give|strong=\"H5414\"* to|strong=\"H3068\"* him|strong=\"H5414\"*, because|strong=\"H3588\"* it|strong=\"H5414\"* is|strong=\"H3068\"* for|strong=\"H3588\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H3588\"* in|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* work|strong=\"H4639\"* and|strong=\"H3068\"* in|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3588\"* you|strong=\"H3588\"* put|strong=\"H5414\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* poor|strong=\"H6041\"* will|strong=\"H3027\"* never|strong=\"H3808\"* cease|strong=\"H2308\"* out|strong=\"H5921\"* of|strong=\"H3027\"* the|strong=\"H5921\"* land|strong=\"H7130\"*. Therefore|strong=\"H3651\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"* to|strong=\"H5921\"* surely|strong=\"H3588\"* open|strong=\"H6605\"* your|strong=\"H5921\"* hand|strong=\"H3027\"* to|strong=\"H5921\"* your|strong=\"H5921\"* brother, to|strong=\"H5921\"* your|strong=\"H5921\"* needy|strong=\"H6041\"*, and|strong=\"H3027\"* to|strong=\"H5921\"* your|strong=\"H5921\"* poor|strong=\"H6041\"*, in|strong=\"H5921\"* your|strong=\"H5921\"* land|strong=\"H7130\"*." + }, + { + "verseNum": 12, + "text": "If|strong=\"H3588\"* your|strong=\"H3588\"* brother, a|strong=\"H3068\"* Hebrew|strong=\"H5680\"* man|strong=\"H5680\"*, or|strong=\"H4376\"* a|strong=\"H3068\"* Hebrew|strong=\"H5680\"* woman|strong=\"H5680\"*, is|strong=\"H8141\"* sold|strong=\"H4376\"* to|strong=\"H7971\"* you|strong=\"H3588\"* and|strong=\"H7971\"* serves|strong=\"H5647\"* you|strong=\"H3588\"* six|strong=\"H8337\"* years|strong=\"H8141\"*, then|strong=\"H7971\"* in|strong=\"H8141\"* the|strong=\"H3588\"* seventh|strong=\"H7637\"* year|strong=\"H8141\"* you|strong=\"H3588\"* shall|strong=\"H8141\"* let|strong=\"H7971\"* him|strong=\"H7971\"* go|strong=\"H7971\"* free|strong=\"H2670\"* from|strong=\"H7971\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* let|strong=\"H7971\"* him|strong=\"H7971\"* go|strong=\"H7971\"* free|strong=\"H2670\"* from|strong=\"H7971\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* let|strong=\"H7971\"* him|strong=\"H7971\"* go|strong=\"H7971\"* empty|strong=\"H7387\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* furnish|strong=\"H6059\"* him|strong=\"H5414\"* liberally|strong=\"H6059\"* out|strong=\"H5414\"* of|strong=\"H3068\"* your|strong=\"H3068\"* flock|strong=\"H6629\"*, out|strong=\"H5414\"* of|strong=\"H3068\"* your|strong=\"H3068\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*, and|strong=\"H3068\"* out|strong=\"H5414\"* of|strong=\"H3068\"* your|strong=\"H3068\"* wine|strong=\"H3342\"* press|strong=\"H3342\"*. As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* blessed|strong=\"H1288\"* you|strong=\"H5414\"*, you|strong=\"H5414\"* shall|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* remember|strong=\"H2142\"* that|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H1961\"* a|strong=\"H3068\"* slave|strong=\"H5650\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* redeemed|strong=\"H6299\"* you|strong=\"H3588\"*. Therefore|strong=\"H3651\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 16, + "text": "It|strong=\"H3588\"* shall|strong=\"H1004\"* be|strong=\"H1961\"*, if|strong=\"H3588\"* he|strong=\"H3588\"* tells you|strong=\"H3588\"*, “I|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* you|strong=\"H3588\"*,” because|strong=\"H3588\"* he|strong=\"H3588\"* loves you|strong=\"H3588\"* and|strong=\"H1004\"* your|strong=\"H3588\"* house|strong=\"H1004\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H1961\"* well|strong=\"H2895\"* with|strong=\"H5973\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 17, + "text": "then|strong=\"H1961\"* you|strong=\"H5414\"* shall|strong=\"H5650\"* take|strong=\"H3947\"* an|strong=\"H6213\"* awl|strong=\"H4836\"*, and|strong=\"H5650\"* thrust|strong=\"H5414\"* it|strong=\"H5414\"* through|strong=\"H6213\"* his|strong=\"H5414\"* ear to|strong=\"H1961\"* the|strong=\"H5414\"* door|strong=\"H1817\"*, and|strong=\"H5650\"* he|strong=\"H3651\"* shall|strong=\"H5650\"* be|strong=\"H1961\"* your|strong=\"H5414\"* servant|strong=\"H5650\"* forever|strong=\"H5769\"*. Also|strong=\"H6213\"* to|strong=\"H1961\"* your|strong=\"H5414\"* female servant|strong=\"H5650\"* you|strong=\"H5414\"* shall|strong=\"H5650\"* do|strong=\"H6213\"* likewise|strong=\"H3651\"*." + }, + { + "verseNum": 18, + "text": "It|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* seem|strong=\"H5869\"* hard|strong=\"H7185\"* to|strong=\"H3068\"* you|strong=\"H3588\"* when|strong=\"H3588\"* you|strong=\"H3588\"* let|strong=\"H7971\"* him|strong=\"H7971\"* go|strong=\"H7971\"* free|strong=\"H2670\"* from|strong=\"H7971\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* been|strong=\"H5647\"* double|strong=\"H4932\"* the|strong=\"H3605\"* value|strong=\"H5869\"* of|strong=\"H3068\"* a|strong=\"H3068\"* hired|strong=\"H7916\"* hand as|strong=\"H6213\"* he|strong=\"H3588\"* served|strong=\"H5647\"* you|strong=\"H3588\"* six|strong=\"H8337\"* years|strong=\"H8141\"*. Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H3588\"* in|strong=\"H8141\"* all|strong=\"H3605\"* that|strong=\"H3588\"* you|strong=\"H3588\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H3605\"* shall|strong=\"H3068\"* dedicate|strong=\"H6942\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* males|strong=\"H2145\"* that|strong=\"H3605\"* are|strong=\"H3068\"* born|strong=\"H3205\"* of|strong=\"H3068\"* your|strong=\"H3068\"* herd|strong=\"H1241\"* and|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* flock|strong=\"H6629\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. You|strong=\"H3605\"* shall|strong=\"H3068\"* do|strong=\"H5647\"* no|strong=\"H3808\"* work|strong=\"H5647\"* with|strong=\"H3068\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H3068\"* your|strong=\"H3068\"* herd|strong=\"H1241\"*, nor|strong=\"H3808\"* shear|strong=\"H1494\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H3068\"* your|strong=\"H3068\"* flock|strong=\"H6629\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* eat it|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* year|strong=\"H8141\"* by|strong=\"H8141\"* year|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H6440\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* choose, you|strong=\"H6440\"* and|strong=\"H3068\"* your|strong=\"H3068\"* household|strong=\"H1004\"*." + }, + { + "verseNum": 21, + "text": "If|strong=\"H3588\"* it|strong=\"H3588\"* has|strong=\"H3068\"* any|strong=\"H3605\"* defect|strong=\"H3971\"*—is|strong=\"H3068\"* lame|strong=\"H6455\"* or|strong=\"H3808\"* blind|strong=\"H5787\"*, or|strong=\"H3808\"* has|strong=\"H3068\"* any|strong=\"H3605\"* defect|strong=\"H3971\"* whatever|strong=\"H3605\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* sacrifice|strong=\"H2076\"* it|strong=\"H3588\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "You shall|strong=\"H2889\"* eat it within your gates|strong=\"H8179\"*. The|strong=\"H8179\"* unclean|strong=\"H2931\"* and|strong=\"H8179\"* the|strong=\"H8179\"* clean|strong=\"H2889\"* shall|strong=\"H2889\"* eat it alike|strong=\"H3162\"*, as|strong=\"H8179\"* the|strong=\"H8179\"* gazelle|strong=\"H6643\"* and|strong=\"H8179\"* as|strong=\"H8179\"* the|strong=\"H8179\"* deer." + }, + { + "verseNum": 23, + "text": "Only|strong=\"H7535\"* you|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat its|strong=\"H5921\"* blood|strong=\"H1818\"*. You|strong=\"H5921\"* shall|strong=\"H3808\"* pour|strong=\"H8210\"* it|strong=\"H5921\"* out|strong=\"H8210\"* on|strong=\"H5921\"* the|strong=\"H5921\"* ground like|strong=\"H3808\"* water|strong=\"H4325\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Observe|strong=\"H8104\"* the|strong=\"H3588\"* month|strong=\"H2320\"* of|strong=\"H3068\"* Abib, and|strong=\"H3068\"* keep|strong=\"H8104\"* the|strong=\"H3588\"* Passover|strong=\"H6453\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*; for|strong=\"H3588\"* in|strong=\"H3068\"* the|strong=\"H3588\"* month|strong=\"H2320\"* of|strong=\"H3068\"* Abib Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3588\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"* by|strong=\"H3068\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 2, + "text": "You|strong=\"H4725\"* shall|strong=\"H3068\"* sacrifice|strong=\"H2076\"* the|strong=\"H3068\"* Passover|strong=\"H6453\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, of|strong=\"H3068\"* the|strong=\"H3068\"* flock|strong=\"H6629\"* and|strong=\"H3068\"* the|strong=\"H3068\"* herd|strong=\"H1241\"*, in|strong=\"H3068\"* the|strong=\"H3068\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* choose to|strong=\"H3068\"* cause his|strong=\"H3068\"* name|strong=\"H8034\"* to|strong=\"H3068\"* dwell|strong=\"H7931\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3588\"* shall|strong=\"H3117\"* eat|strong=\"H3899\"* no|strong=\"H3808\"* leavened|strong=\"H2557\"* bread|strong=\"H3899\"* with|strong=\"H5921\"* it|strong=\"H5921\"*. You|strong=\"H3588\"* shall|strong=\"H3117\"* eat|strong=\"H3899\"* unleavened|strong=\"H4682\"* bread|strong=\"H3899\"* with|strong=\"H5921\"* it|strong=\"H5921\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, even|strong=\"H3588\"* the|strong=\"H3605\"* bread|strong=\"H3899\"* of|strong=\"H3117\"* affliction|strong=\"H6040\"* (for|strong=\"H3588\"* you|strong=\"H3588\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H3605\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"* in|strong=\"H5921\"* haste|strong=\"H2649\"*) that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3117\"* remember|strong=\"H2142\"* the|strong=\"H3605\"* day|strong=\"H3117\"* when|strong=\"H3588\"* you|strong=\"H3588\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H3605\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H3605\"* life|strong=\"H2416\"*." + }, + { + "verseNum": 4, + "text": "No|strong=\"H3808\"* yeast|strong=\"H7603\"* shall|strong=\"H3117\"* be|strong=\"H3808\"* seen|strong=\"H7200\"* with|strong=\"H3117\"* you|strong=\"H3605\"* in|strong=\"H3117\"* all|strong=\"H3605\"* your|strong=\"H3605\"* borders|strong=\"H1366\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*; neither|strong=\"H3808\"* shall|strong=\"H3117\"* any|strong=\"H3605\"* of|strong=\"H3117\"* the|strong=\"H3605\"* meat|strong=\"H1320\"*, which|strong=\"H3117\"* you|strong=\"H3605\"* sacrifice|strong=\"H2076\"* the|strong=\"H3605\"* first|strong=\"H7223\"* day|strong=\"H3117\"* at|strong=\"H3117\"* evening|strong=\"H6153\"*, remain|strong=\"H3885\"* all|strong=\"H3605\"* night|strong=\"H3885\"* until|strong=\"H3885\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H5414\"* may|strong=\"H3201\"* not|strong=\"H3808\"* sacrifice|strong=\"H2076\"* the|strong=\"H5414\"* Passover|strong=\"H6453\"* within|strong=\"H6453\"* any|strong=\"H5414\"* of|strong=\"H3068\"* your|strong=\"H3068\"* gates|strong=\"H8179\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*;" + }, + { + "verseNum": 6, + "text": "but|strong=\"H3588\"* at|strong=\"H3068\"* the|strong=\"H3588\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* choose to|strong=\"H3318\"* cause|strong=\"H3318\"* his|strong=\"H3068\"* name|strong=\"H8034\"* to|strong=\"H3318\"* dwell|strong=\"H7931\"* in|strong=\"H3068\"*, there|strong=\"H8033\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* sacrifice|strong=\"H2076\"* the|strong=\"H3588\"* Passover|strong=\"H6453\"* at|strong=\"H3068\"* evening|strong=\"H6153\"*, at|strong=\"H3068\"* the|strong=\"H3588\"* going|strong=\"H3318\"* down|strong=\"H7931\"* of|strong=\"H3068\"* the|strong=\"H3588\"* sun|strong=\"H8121\"*, at|strong=\"H3068\"* the|strong=\"H3588\"* season|strong=\"H4150\"* that|strong=\"H3588\"* you|strong=\"H3588\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H6437\"* shall|strong=\"H3068\"* roast|strong=\"H1310\"* and|strong=\"H1980\"* eat it|strong=\"H1242\"* in|strong=\"H1980\"* the|strong=\"H3068\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* chooses. In|strong=\"H1980\"* the|strong=\"H3068\"* morning|strong=\"H1242\"* you|strong=\"H6437\"* shall|strong=\"H3068\"* return|strong=\"H1980\"* to|strong=\"H1980\"* your|strong=\"H3068\"* tents." + }, + { + "verseNum": 8, + "text": "Six|strong=\"H8337\"* days|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H3068\"* eat unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*. On|strong=\"H3117\"* the|strong=\"H6213\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* a|strong=\"H3068\"* solemn|strong=\"H6116\"* assembly|strong=\"H6116\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. You|strong=\"H3117\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* no|strong=\"H3808\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H7651\"* shall|strong=\"H7620\"* count|strong=\"H5608\"* for|strong=\"H5608\"* yourselves seven|strong=\"H7651\"* weeks|strong=\"H7620\"*. From|strong=\"H7620\"* the|strong=\"H5608\"* time you|strong=\"H7651\"* begin|strong=\"H2490\"* to|strong=\"H2490\"* put the|strong=\"H5608\"* sickle|strong=\"H2770\"* to|strong=\"H2490\"* the|strong=\"H5608\"* standing|strong=\"H7054\"* grain|strong=\"H7054\"* you|strong=\"H7651\"* shall|strong=\"H7620\"* begin|strong=\"H2490\"* to|strong=\"H2490\"* count|strong=\"H5608\"* seven|strong=\"H7651\"* weeks|strong=\"H7620\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* keep|strong=\"H6213\"* the|strong=\"H5414\"* feast|strong=\"H2282\"* of|strong=\"H3068\"* weeks|strong=\"H7620\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* with|strong=\"H3068\"* a|strong=\"H3068\"* tribute|strong=\"H4530\"* of|strong=\"H3068\"* a|strong=\"H3068\"* free will|strong=\"H3068\"* offering|strong=\"H5071\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, which|strong=\"H3068\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* give|strong=\"H5414\"* according|strong=\"H3027\"* to|strong=\"H3068\"* how|strong=\"H6213\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* blesses|strong=\"H1288\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* rejoice|strong=\"H8055\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*: you|strong=\"H6440\"*, your|strong=\"H3068\"* son|strong=\"H1121\"*, your|strong=\"H3068\"* daughter|strong=\"H1323\"*, your|strong=\"H3068\"* male|strong=\"H5650\"* servant|strong=\"H5650\"*, your|strong=\"H3068\"* female|strong=\"H1323\"* servant|strong=\"H5650\"*, the|strong=\"H6440\"* Levite|strong=\"H3881\"* who|strong=\"H3068\"* is|strong=\"H3068\"* within|strong=\"H7130\"* your|strong=\"H3068\"* gates|strong=\"H8179\"*, the|strong=\"H6440\"* foreigner|strong=\"H1121\"*, the|strong=\"H6440\"* fatherless|strong=\"H3490\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* widow who|strong=\"H3068\"* are|strong=\"H1121\"* among|strong=\"H7130\"* you|strong=\"H6440\"*, in|strong=\"H3068\"* the|strong=\"H6440\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* choose to|strong=\"H3068\"* cause his|strong=\"H3068\"* name|strong=\"H8034\"* to|strong=\"H3068\"* dwell|strong=\"H7931\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H3588\"* shall|strong=\"H4714\"* remember|strong=\"H2142\"* that|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H1961\"* a|strong=\"H3068\"* slave|strong=\"H5650\"* in|strong=\"H6213\"* Egypt|strong=\"H4714\"*. You|strong=\"H3588\"* shall|strong=\"H4714\"* observe|strong=\"H8104\"* and|strong=\"H5650\"* do|strong=\"H6213\"* these|strong=\"H6213\"* statutes|strong=\"H2706\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H3117\"* shall|strong=\"H3117\"* keep|strong=\"H6213\"* the|strong=\"H6213\"* feast|strong=\"H2282\"* of|strong=\"H3117\"* booths|strong=\"H5521\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, after|strong=\"H3117\"* you|strong=\"H3117\"* have|strong=\"H3117\"* gathered|strong=\"H6213\"* in|strong=\"H6213\"* from|strong=\"H3117\"* your|strong=\"H6213\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* and|strong=\"H3117\"* from|strong=\"H3117\"* your|strong=\"H6213\"* wine|strong=\"H3342\"* press|strong=\"H3342\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H8055\"* shall|strong=\"H1121\"* rejoice|strong=\"H8055\"* in|strong=\"H1121\"* your|strong=\"H1121\"* feast|strong=\"H2282\"*, you|strong=\"H8055\"*, your|strong=\"H1121\"* son|strong=\"H1121\"*, your|strong=\"H1121\"* daughter|strong=\"H1323\"*, your|strong=\"H1121\"* male|strong=\"H5650\"* servant|strong=\"H5650\"*, your|strong=\"H1121\"* female|strong=\"H1323\"* servant|strong=\"H5650\"*, the|strong=\"H5650\"* Levite|strong=\"H3881\"*, the|strong=\"H5650\"* foreigner|strong=\"H1121\"*, the|strong=\"H5650\"* fatherless|strong=\"H3490\"*, and|strong=\"H1121\"* the|strong=\"H5650\"* widow who|strong=\"H1616\"* are|strong=\"H1121\"* within your|strong=\"H1121\"* gates|strong=\"H8179\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* keep|strong=\"H2287\"* a|strong=\"H3068\"* feast|strong=\"H2287\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* in|strong=\"H3068\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* chooses, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H3588\"* in|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* increase|strong=\"H8393\"* and|strong=\"H3068\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hands|strong=\"H3027\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* altogether|strong=\"H3605\"* joyful|strong=\"H8056\"*." + }, + { + "verseNum": 16, + "text": "Three|strong=\"H7969\"* times|strong=\"H6471\"* in|strong=\"H8141\"* a|strong=\"H3068\"* year|strong=\"H8141\"* all|strong=\"H3605\"* of|strong=\"H3068\"* your|strong=\"H3068\"* males|strong=\"H2138\"* shall|strong=\"H3068\"* appear|strong=\"H7200\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H8141\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H3068\"* he|strong=\"H3068\"* chooses: in|strong=\"H8141\"* the|strong=\"H3605\"* feast|strong=\"H2282\"* of|strong=\"H3068\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* feast|strong=\"H2282\"* of|strong=\"H3068\"* weeks|strong=\"H7620\"*, and|strong=\"H3068\"* in|strong=\"H8141\"* the|strong=\"H3605\"* feast|strong=\"H2282\"* of|strong=\"H3068\"* booths|strong=\"H5521\"*. They|strong=\"H3068\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* appear|strong=\"H7200\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* empty|strong=\"H7387\"*." + }, + { + "verseNum": 17, + "text": "Every|strong=\"H5414\"* man shall|strong=\"H3068\"* give|strong=\"H5414\"* as|strong=\"H3068\"* he|strong=\"H3068\"* is|strong=\"H3068\"* able|strong=\"H3027\"*, according|strong=\"H3027\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s blessing|strong=\"H1293\"* which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* make|strong=\"H5414\"* judges|strong=\"H8199\"* and|strong=\"H3068\"* officers|strong=\"H7860\"* in|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* gates|strong=\"H8179\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*, according|strong=\"H4941\"* to|strong=\"H3068\"* your|strong=\"H3068\"* tribes|strong=\"H7626\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* shall|strong=\"H3068\"* judge|strong=\"H8199\"* the|strong=\"H3605\"* people|strong=\"H5971\"* with|strong=\"H3068\"* righteous|strong=\"H6664\"* judgment|strong=\"H4941\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H3588\"* shall|strong=\"H5869\"* not|strong=\"H3808\"* pervert|strong=\"H5186\"* justice|strong=\"H4941\"*. You|strong=\"H3588\"* shall|strong=\"H5869\"* not|strong=\"H3808\"* show|strong=\"H5234\"* partiality|strong=\"H5234\"*. You|strong=\"H3588\"* shall|strong=\"H5869\"* not|strong=\"H3808\"* take|strong=\"H3947\"* a|strong=\"H3068\"* bribe|strong=\"H7810\"*, for|strong=\"H3588\"* a|strong=\"H3068\"* bribe|strong=\"H7810\"* blinds|strong=\"H5786\"* the|strong=\"H6440\"* eyes|strong=\"H5869\"* of|strong=\"H1697\"* the|strong=\"H6440\"* wise|strong=\"H2450\"* and|strong=\"H4941\"* perverts|strong=\"H5557\"* the|strong=\"H6440\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H6440\"* righteous|strong=\"H6662\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* follow|strong=\"H7291\"* that|strong=\"H3068\"* which|strong=\"H3068\"* is|strong=\"H3068\"* altogether|strong=\"H6664\"* just|strong=\"H6664\"*, that|strong=\"H3068\"* you|strong=\"H5414\"* may|strong=\"H3068\"* live|strong=\"H2421\"* and|strong=\"H3068\"* inherit|strong=\"H3423\"* the|strong=\"H5414\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"H3605\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* plant|strong=\"H5193\"* for|strong=\"H6213\"* yourselves|strong=\"H3605\"* an|strong=\"H6213\"* Asherah of|strong=\"H3068\"* any|strong=\"H3605\"* kind of|strong=\"H3068\"* tree|strong=\"H6086\"* beside Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s altar|strong=\"H4196\"*, which|strong=\"H3068\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* make|strong=\"H6213\"* for|strong=\"H6213\"* yourselves|strong=\"H3605\"*." + }, + { + "verseNum": 22, + "text": "Neither|strong=\"H3808\"* shall|strong=\"H3068\"* you|strong=\"H3808\"* set|strong=\"H6965\"* yourself up|strong=\"H6965\"* a|strong=\"H3068\"* sacred stone which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* hates|strong=\"H8130\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* sacrifice|strong=\"H2076\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* an|strong=\"H1961\"* ox|strong=\"H7794\"* or|strong=\"H3808\"* a|strong=\"H3068\"* sheep|strong=\"H7716\"* in|strong=\"H3068\"* which|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* defect|strong=\"H3971\"* or|strong=\"H3808\"* anything|strong=\"H3605\"* evil|strong=\"H7451\"*; for|strong=\"H3588\"* that|strong=\"H3588\"* is|strong=\"H3068\"* an|strong=\"H1961\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "If|strong=\"H3588\"* there|strong=\"H4672\"* is|strong=\"H3068\"* found|strong=\"H4672\"* among|strong=\"H7130\"* you|strong=\"H3588\"*, within|strong=\"H7130\"* any|strong=\"H6213\"* of|strong=\"H3068\"* your|strong=\"H3068\"* gates|strong=\"H8179\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"*, a|strong=\"H3068\"* man|strong=\"H7451\"* or|strong=\"H3068\"* woman who|strong=\"H3068\"* does|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s sight|strong=\"H5869\"* in|strong=\"H3068\"* transgressing|strong=\"H5674\"* his|strong=\"H5414\"* covenant|strong=\"H1285\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H8064\"* has|strong=\"H6635\"* gone|strong=\"H3212\"* and|strong=\"H8064\"* served|strong=\"H5647\"* other|strong=\"H3605\"* gods and|strong=\"H8064\"* worshiped|strong=\"H7812\"* them|strong=\"H6680\"*, or|strong=\"H3808\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*, or|strong=\"H3808\"* the|strong=\"H3605\"* moon|strong=\"H3394\"*, or|strong=\"H3808\"* any|strong=\"H3605\"* of|strong=\"H6635\"* the|strong=\"H3605\"* stars of|strong=\"H6635\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, which|strong=\"H6635\"* I|strong=\"H6680\"* have|strong=\"H3605\"* not|strong=\"H3808\"* commanded|strong=\"H6680\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"H3478\"* you|strong=\"H6213\"* are|strong=\"H3478\"* told|strong=\"H5046\"*, and|strong=\"H3478\"* you|strong=\"H6213\"* have|strong=\"H3478\"* heard|strong=\"H8085\"* of|strong=\"H1697\"* it|strong=\"H6213\"*, then|strong=\"H2009\"* you|strong=\"H6213\"* shall|strong=\"H3478\"* inquire|strong=\"H1875\"* diligently|strong=\"H8085\"*. Behold|strong=\"H2009\"*, if|strong=\"H2009\"* it|strong=\"H6213\"* is|strong=\"H1697\"* true, and|strong=\"H3478\"* the|strong=\"H8085\"* thing|strong=\"H1697\"* certain|strong=\"H3559\"*, that|strong=\"H8085\"* such|strong=\"H2063\"* abomination|strong=\"H8441\"* is|strong=\"H1697\"* done|strong=\"H6213\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 5, + "text": "then|strong=\"H3318\"* you|strong=\"H6213\"* shall|strong=\"H7451\"* bring|strong=\"H3318\"* out|strong=\"H3318\"* that|strong=\"H1931\"* man|strong=\"H4191\"* or|strong=\"H4191\"* that|strong=\"H1931\"* woman|strong=\"H2088\"* who|strong=\"H1931\"* has|strong=\"H3318\"* done|strong=\"H6213\"* this|strong=\"H2088\"* evil|strong=\"H7451\"* thing|strong=\"H1697\"* to|strong=\"H3318\"* your|strong=\"H6213\"* gates|strong=\"H8179\"*, even|strong=\"H6213\"* that|strong=\"H1931\"* same|strong=\"H1931\"* man|strong=\"H4191\"* or|strong=\"H4191\"* woman|strong=\"H2088\"*; and|strong=\"H6213\"* you|strong=\"H6213\"* shall|strong=\"H7451\"* stone|strong=\"H5619\"* them|strong=\"H6213\"* to|strong=\"H3318\"* death|strong=\"H4191\"* with|strong=\"H6213\"* stones|strong=\"H5619\"*." + }, + { + "verseNum": 6, + "text": "At|strong=\"H5921\"* the|strong=\"H5921\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* two|strong=\"H8147\"* witnesses|strong=\"H5707\"*, or|strong=\"H3808\"* three|strong=\"H7969\"* witnesses|strong=\"H5707\"*, he|strong=\"H8147\"* who|strong=\"H3808\"* is|strong=\"H6310\"* to|strong=\"H4191\"* die|strong=\"H4191\"* shall|strong=\"H3808\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. At|strong=\"H5921\"* the|strong=\"H5921\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* one|strong=\"H3808\"* witness|strong=\"H5707\"* he|strong=\"H8147\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3605\"* witnesses|strong=\"H5707\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* first|strong=\"H7223\"* on|strong=\"H3027\"* him|strong=\"H3027\"* to|strong=\"H4191\"* put|strong=\"H4191\"* him|strong=\"H3027\"* to|strong=\"H4191\"* death|strong=\"H4191\"*, and|strong=\"H3027\"* afterward the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*. So|strong=\"H1961\"* you|strong=\"H3605\"* shall|strong=\"H5971\"* remove|strong=\"H1197\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* from|strong=\"H3027\"* among|strong=\"H7130\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 8, + "text": "If|strong=\"H3588\"* there|strong=\"H5927\"* arises|strong=\"H6965\"* a|strong=\"H3068\"* matter|strong=\"H1697\"* too|strong=\"H4480\"* hard|strong=\"H6381\"* for|strong=\"H3588\"* you|strong=\"H3588\"* in|strong=\"H3068\"* judgment|strong=\"H4941\"*, between|strong=\"H4941\"* blood|strong=\"H1818\"* and|strong=\"H6965\"* blood|strong=\"H1818\"*, between|strong=\"H4941\"* plea|strong=\"H1779\"* and|strong=\"H6965\"* plea|strong=\"H1779\"*, and|strong=\"H6965\"* between|strong=\"H4941\"* stroke|strong=\"H5061\"* and|strong=\"H6965\"* stroke|strong=\"H5061\"*, being|strong=\"H3068\"* matters|strong=\"H1697\"* of|strong=\"H3068\"* controversy|strong=\"H7379\"* within|strong=\"H4480\"* your|strong=\"H3068\"* gates|strong=\"H8179\"*, then|strong=\"H6965\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* arise|strong=\"H6965\"*, and|strong=\"H6965\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* the|strong=\"H3588\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* chooses." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3117\"* shall|strong=\"H3548\"* come|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H3117\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* are|strong=\"H3117\"* Levites|strong=\"H3881\"* and|strong=\"H3117\"* to|strong=\"H1961\"* the|strong=\"H3117\"* judge|strong=\"H8199\"* who|strong=\"H3548\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* in|strong=\"H3117\"* those|strong=\"H1992\"* days|strong=\"H3117\"*. You|strong=\"H3117\"* shall|strong=\"H3548\"* inquire|strong=\"H1875\"*, and|strong=\"H3117\"* they|strong=\"H1992\"* shall|strong=\"H3548\"* give|strong=\"H5046\"* you|strong=\"H3117\"* the|strong=\"H3117\"* verdict|strong=\"H1697\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3605\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H3605\"* decisions of|strong=\"H3068\"* the|strong=\"H3605\"* verdict|strong=\"H1697\"* which|strong=\"H1931\"* they|strong=\"H3068\"* shall|strong=\"H3068\"* give|strong=\"H8104\"* you|strong=\"H3605\"* from|strong=\"H4480\"* that|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* chooses. You|strong=\"H3605\"* shall|strong=\"H3068\"* observe|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* they|strong=\"H3068\"* shall|strong=\"H3068\"* teach|strong=\"H3384\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 11, + "text": "According|strong=\"H5921\"* to|strong=\"H6213\"* the|strong=\"H5921\"* decisions|strong=\"H4941\"* of|strong=\"H1697\"* the|strong=\"H5921\"* law|strong=\"H8451\"* which|strong=\"H1697\"* they|strong=\"H3808\"* shall|strong=\"H3808\"* teach|strong=\"H3384\"* you|strong=\"H5921\"*, and|strong=\"H4941\"* according|strong=\"H5921\"* to|strong=\"H6213\"* the|strong=\"H5921\"* judgment|strong=\"H4941\"* which|strong=\"H1697\"* they|strong=\"H3808\"* shall|strong=\"H3808\"* tell|strong=\"H5046\"* you|strong=\"H5921\"*, you|strong=\"H5921\"* shall|strong=\"H3808\"* do|strong=\"H6213\"*. You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* the|strong=\"H5921\"* sentence|strong=\"H4941\"* which|strong=\"H1697\"* they|strong=\"H3808\"* announce|strong=\"H5046\"* to|strong=\"H6213\"* you|strong=\"H5921\"*, to|strong=\"H6213\"* the|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*, nor|strong=\"H3808\"* to|strong=\"H6213\"* the|strong=\"H5921\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H8085\"* man|strong=\"H4191\"* who|strong=\"H1931\"* does|strong=\"H6213\"* presumptuously|strong=\"H2087\"* in|strong=\"H3478\"* not|strong=\"H1115\"* listening|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H8085\"* priest|strong=\"H3548\"* who|strong=\"H1931\"* stands|strong=\"H5975\"* to|strong=\"H3478\"* minister|strong=\"H8334\"* there|strong=\"H8033\"* before Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, or|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H8085\"* judge|strong=\"H8199\"*, even|strong=\"H6213\"* that|strong=\"H8085\"* man|strong=\"H4191\"* shall|strong=\"H3548\"* die|strong=\"H4191\"*. You|strong=\"H6213\"* shall|strong=\"H3548\"* put|strong=\"H4191\"* away|strong=\"H1197\"* the|strong=\"H8085\"* evil|strong=\"H7451\"* from|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 13, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* shall|strong=\"H5971\"* hear|strong=\"H8085\"* and|strong=\"H5971\"* fear|strong=\"H3372\"*, and|strong=\"H5971\"* do|strong=\"H3605\"* no|strong=\"H3808\"* more|strong=\"H5750\"* presumptuously|strong=\"H2102\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* come|strong=\"H3423\"* to|strong=\"H3068\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H5414\"* and|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H5414\"*, and|strong=\"H3068\"* say, “I|strong=\"H3588\"* will|strong=\"H3068\"* set|strong=\"H7760\"* a|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* me|strong=\"H5414\"*, like|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H3588\"* are|strong=\"H1471\"* around|strong=\"H5439\"* me|strong=\"H5414\"*,”" + }, + { + "verseNum": 15, + "text": "you|strong=\"H5414\"* shall|strong=\"H3068\"* surely|strong=\"H5414\"* set|strong=\"H7760\"* him|strong=\"H5414\"* whom Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* chooses as|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* yourselves|strong=\"H3068\"*. You|strong=\"H5414\"* shall|strong=\"H3068\"* set|strong=\"H7760\"* as|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* you|strong=\"H5414\"* one|strong=\"H3808\"* from|strong=\"H5921\"* among|strong=\"H7130\"* your|strong=\"H3068\"* brothers. You|strong=\"H5414\"* may|strong=\"H3201\"* not|strong=\"H3808\"* put|strong=\"H5414\"* a|strong=\"H3068\"* foreigner|strong=\"H5237\"* over|strong=\"H5921\"* you|strong=\"H5414\"*, who|strong=\"H1931\"* is|strong=\"H3068\"* not|strong=\"H3808\"* your|strong=\"H3068\"* brother." + }, + { + "verseNum": 16, + "text": "Only|strong=\"H7535\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* multiply|strong=\"H7235\"* horses|strong=\"H5483\"* to|strong=\"H7725\"* himself|strong=\"H3068\"*, nor|strong=\"H3808\"* cause|strong=\"H5971\"* the|strong=\"H3068\"* people|strong=\"H5971\"* to|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* Egypt|strong=\"H4714\"*, to|strong=\"H7725\"* the|strong=\"H3068\"* end|strong=\"H4616\"* that|strong=\"H5971\"* he|strong=\"H3068\"* may|strong=\"H3068\"* multiply|strong=\"H7235\"* horses|strong=\"H5483\"*; because|strong=\"H4616\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* said to|strong=\"H7725\"* you|strong=\"H7725\"*, “You|strong=\"H7725\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H7725\"* back|strong=\"H7725\"* that|strong=\"H5971\"* way|strong=\"H1870\"* again|strong=\"H7725\"*.”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* multiply|strong=\"H7235\"* wives to|strong=\"H3824\"* himself|strong=\"H3824\"*, that|strong=\"H3808\"* his|strong=\"H5493\"* heart|strong=\"H3824\"* not|strong=\"H3808\"* turn|strong=\"H5493\"* away|strong=\"H5493\"*. He|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* greatly|strong=\"H3966\"* multiply|strong=\"H7235\"* to|strong=\"H3824\"* himself|strong=\"H3824\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 18, + "text": "It|strong=\"H5921\"* shall|strong=\"H3548\"* be|strong=\"H1961\"*, when|strong=\"H1961\"* he|strong=\"H5921\"* sits|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H6440\"* throne|strong=\"H3678\"* of|strong=\"H3427\"* his|strong=\"H6440\"* kingdom|strong=\"H4467\"*, that|strong=\"H3548\"* he|strong=\"H5921\"* shall|strong=\"H3548\"* write|strong=\"H3789\"* himself|strong=\"H6440\"* a|strong=\"H3068\"* copy|strong=\"H4932\"* of|strong=\"H3427\"* this|strong=\"H2063\"* law|strong=\"H8451\"* in|strong=\"H3427\"* a|strong=\"H3068\"* book|strong=\"H5612\"*, out|strong=\"H5921\"* of|strong=\"H3427\"* that|strong=\"H3548\"* which|strong=\"H3548\"* is|strong=\"H1961\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"*." + }, + { + "verseNum": 19, + "text": "It|strong=\"H7121\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* him|strong=\"H7121\"*, and|strong=\"H3068\"* he|strong=\"H3117\"* shall|strong=\"H3068\"* read|strong=\"H7121\"* from|strong=\"H3117\"* it|strong=\"H7121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* his|strong=\"H3605\"* life|strong=\"H2416\"*, that|strong=\"H3605\"* he|strong=\"H3117\"* may|strong=\"H1961\"* learn|strong=\"H3925\"* to|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* his|strong=\"H3605\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* keep|strong=\"H8104\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* this|strong=\"H2063\"* law|strong=\"H8451\"* and|strong=\"H3068\"* these|strong=\"H2063\"* statutes|strong=\"H2706\"*, to|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"*;" + }, + { + "verseNum": 20, + "text": "that|strong=\"H3117\"* his|strong=\"H5921\"* heart|strong=\"H3824\"* not|strong=\"H1115\"* be|strong=\"H1121\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* above|strong=\"H5921\"* his|strong=\"H5921\"* brothers|strong=\"H1121\"*, and|strong=\"H1121\"* that|strong=\"H3117\"* he|strong=\"H1931\"* not|strong=\"H1115\"* turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* the|strong=\"H5921\"* commandment|strong=\"H4687\"* to|strong=\"H3478\"* the|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*, or|strong=\"H3117\"* to|strong=\"H3478\"* the|strong=\"H5921\"* left|strong=\"H8040\"*, to|strong=\"H3478\"* the|strong=\"H5921\"* end|strong=\"H4616\"* that|strong=\"H3117\"* he|strong=\"H1931\"* may|strong=\"H3478\"* prolong his|strong=\"H5921\"* days|strong=\"H3117\"* in|strong=\"H5921\"* his|strong=\"H5921\"* kingdom|strong=\"H4467\"*, he|strong=\"H1931\"* and|strong=\"H1121\"* his|strong=\"H5921\"* children|strong=\"H1121\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H7130\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3478\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*—all|strong=\"H3605\"* the|strong=\"H3605\"* tribe|strong=\"H7626\"* of|strong=\"H3068\"* Levi|strong=\"H3878\"*—shall|strong=\"H3548\"* have|strong=\"H1961\"* no|strong=\"H3808\"* portion|strong=\"H2506\"* nor|strong=\"H3808\"* inheritance|strong=\"H5159\"* with|strong=\"H5973\"* Israel|strong=\"H3478\"*. They|strong=\"H3068\"* shall|strong=\"H3548\"* eat the|strong=\"H3605\"* offerings|strong=\"H3478\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* made|strong=\"H1961\"* by|strong=\"H3068\"* fire and|strong=\"H3478\"* his|strong=\"H3605\"* portion|strong=\"H2506\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H3068\"* shall|strong=\"H3068\"* have|strong=\"H1961\"* no|strong=\"H3808\"* inheritance|strong=\"H5159\"* among|strong=\"H7130\"* their|strong=\"H3068\"* brothers. Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* their|strong=\"H3068\"* inheritance|strong=\"H5159\"*, as|strong=\"H1961\"* he|strong=\"H1931\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H1961\"*." + }, + { + "verseNum": 3, + "text": "This|strong=\"H2088\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* the|strong=\"H5414\"* priests|strong=\"H3548\"*’ due|strong=\"H4941\"* from|strong=\"H1961\"* the|strong=\"H5414\"* people|strong=\"H5971\"*, from|strong=\"H1961\"* those|strong=\"H2088\"* who|strong=\"H5971\"* offer|strong=\"H2076\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"*, whether it|strong=\"H5414\"* be|strong=\"H1961\"* ox|strong=\"H7794\"* or|strong=\"H7794\"* sheep|strong=\"H7716\"*, that|strong=\"H5971\"* they|strong=\"H5971\"* shall|strong=\"H3548\"* give|strong=\"H5414\"* to|strong=\"H1961\"* the|strong=\"H5414\"* priest|strong=\"H3548\"*: the|strong=\"H5414\"* shoulder|strong=\"H2220\"*, the|strong=\"H5414\"* two|strong=\"H2088\"* cheeks|strong=\"H3895\"*, and|strong=\"H4941\"* the|strong=\"H5414\"* inner parts." + }, + { + "verseNum": 4, + "text": "You|strong=\"H5414\"* shall|strong=\"H8492\"* give|strong=\"H5414\"* him|strong=\"H5414\"* the|strong=\"H5414\"* first|strong=\"H7225\"* fruits|strong=\"H7225\"* of|strong=\"H6629\"* your|strong=\"H5414\"* grain|strong=\"H1715\"*, of|strong=\"H6629\"* your|strong=\"H5414\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, and|strong=\"H6629\"* of|strong=\"H6629\"* your|strong=\"H5414\"* oil|strong=\"H3323\"*, and|strong=\"H6629\"* the|strong=\"H5414\"* first|strong=\"H7225\"* of|strong=\"H6629\"* the|strong=\"H5414\"* fleece|strong=\"H1488\"* of|strong=\"H6629\"* your|strong=\"H5414\"* sheep|strong=\"H6629\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* chosen him|strong=\"H5975\"* out|strong=\"H3605\"* of|strong=\"H1121\"* all|strong=\"H3605\"* your|strong=\"H3068\"* tribes|strong=\"H7626\"* to|strong=\"H3068\"* stand|strong=\"H5975\"* to|strong=\"H3068\"* minister|strong=\"H8334\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, him|strong=\"H5975\"* and|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* forever|strong=\"H3605\"*." + }, + { + "verseNum": 6, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* Levite|strong=\"H3881\"* comes from|strong=\"H3478\"* any|strong=\"H3605\"* of|strong=\"H3068\"* your|strong=\"H3068\"* gates|strong=\"H8179\"* out|strong=\"H3605\"* of|strong=\"H3068\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* where|strong=\"H8033\"* he|strong=\"H1931\"* lives|strong=\"H5315\"*, and|strong=\"H3478\"* comes with|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* desire|strong=\"H5315\"* of|strong=\"H3068\"* his|strong=\"H3605\"* soul|strong=\"H5315\"* to|strong=\"H3478\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* choose," + }, + { + "verseNum": 7, + "text": "then|strong=\"H5975\"* he|strong=\"H8033\"* shall|strong=\"H3068\"* minister|strong=\"H8334\"* in|strong=\"H3068\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* his|strong=\"H3605\"* God|strong=\"H3068\"*, as|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* brothers the|strong=\"H3605\"* Levites|strong=\"H3881\"* do|strong=\"H3068\"*, who|strong=\"H3605\"* stand|strong=\"H5975\"* there|strong=\"H8033\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H5921\"* shall|strong=\"H4465\"* have|strong=\"H5921\"* like|strong=\"H5921\"* portions|strong=\"H2506\"* to|strong=\"H5921\"* eat, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H5921\"* that|strong=\"H5921\"* which comes from|strong=\"H5921\"* the|strong=\"H5921\"* sale|strong=\"H4465\"* of|strong=\"H5921\"* his|strong=\"H5921\"* family possessions." + }, + { + "verseNum": 9, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* come into|strong=\"H6213\"* the|strong=\"H3588\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* learn|strong=\"H3925\"* to|strong=\"H3068\"* imitate|strong=\"H6213\"* the|strong=\"H3588\"* abominations|strong=\"H8441\"* of|strong=\"H3068\"* those|strong=\"H1992\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 10, + "text": "There|strong=\"H4672\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* be|strong=\"H3808\"* found|strong=\"H4672\"* with|strong=\"H5674\"* you|strong=\"H3808\"* anyone who|strong=\"H1121\"* makes his|strong=\"H3808\"* son|strong=\"H1121\"* or|strong=\"H3808\"* his|strong=\"H3808\"* daughter|strong=\"H1323\"* to|strong=\"H1121\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5674\"* fire, one|strong=\"H3808\"* who|strong=\"H1121\"* uses|strong=\"H5172\"* divination|strong=\"H7081\"*, one|strong=\"H3808\"* who|strong=\"H1121\"* tells fortunes, or|strong=\"H3808\"* an|strong=\"H4672\"* enchanter|strong=\"H5172\"*, or|strong=\"H3808\"* a|strong=\"H3068\"* sorcerer|strong=\"H3784\"*," + }, + { + "verseNum": 11, + "text": "or|strong=\"H1875\"* a|strong=\"H3068\"* charmer|strong=\"H2266\"*, or|strong=\"H1875\"* someone|strong=\"H4191\"* who|strong=\"H7592\"* consults|strong=\"H7592\"* with|strong=\"H4191\"* a|strong=\"H3068\"* familiar spirit, or|strong=\"H1875\"* a|strong=\"H3068\"* wizard|strong=\"H3049\"*, or|strong=\"H1875\"* a|strong=\"H3068\"* necromancer|strong=\"H1875\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* whoever|strong=\"H3605\"* does|strong=\"H6213\"* these|strong=\"H6213\"* things|strong=\"H3605\"* is|strong=\"H3068\"* an|strong=\"H6213\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Because|strong=\"H3588\"* of|strong=\"H3068\"* these|strong=\"H6213\"* abominations|strong=\"H8441\"*, Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* drives them|strong=\"H6440\"* out|strong=\"H3423\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H5973\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* blameless|strong=\"H8549\"* with|strong=\"H5973\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* these|strong=\"H8085\"* nations|strong=\"H1471\"* that|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* dispossess|strong=\"H3423\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* those|strong=\"H8085\"* who|strong=\"H3068\"* practice|strong=\"H6049\"* sorcery and|strong=\"H3068\"* to|strong=\"H3068\"* diviners|strong=\"H7080\"*; but|strong=\"H3588\"* as|strong=\"H3651\"* for|strong=\"H3588\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* allowed|strong=\"H5414\"* you|strong=\"H3588\"* so|strong=\"H3651\"* to|strong=\"H3068\"* do|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H3068\"* you|strong=\"H3644\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* from|strong=\"H8085\"* among|strong=\"H7130\"* you|strong=\"H3644\"*, of|strong=\"H3068\"* your|strong=\"H3068\"* brothers, like|strong=\"H3644\"* me|strong=\"H6965\"*. You|strong=\"H3644\"* shall|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* him|strong=\"H7130\"*." + }, + { + "verseNum": 16, + "text": "This|strong=\"H2063\"* is|strong=\"H3068\"* according to|strong=\"H4191\"* all|strong=\"H3605\"* that|strong=\"H7200\"* you|strong=\"H3605\"* desired|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H3068\"* Horeb|strong=\"H2722\"* in|strong=\"H3068\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*, saying|strong=\"H6963\"*, “Let|strong=\"H3808\"* me|strong=\"H7200\"* not|strong=\"H3808\"* hear|strong=\"H8085\"* again|strong=\"H5750\"* Yahweh|strong=\"H3068\"* my|strong=\"H8085\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, neither|strong=\"H3808\"* let|strong=\"H3808\"* me|strong=\"H7200\"* see|strong=\"H7200\"* this|strong=\"H2063\"* great|strong=\"H1419\"* fire any|strong=\"H3605\"* more|strong=\"H3254\"*, that|strong=\"H7200\"* I|strong=\"H3117\"* not|strong=\"H3808\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"*, “They|strong=\"H3068\"* have|strong=\"H3068\"* well|strong=\"H3190\"* said|strong=\"H1696\"* that|strong=\"H3068\"* which|strong=\"H3068\"* they|strong=\"H3068\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H5414\"* will|strong=\"H1697\"* raise|strong=\"H6965\"* them|strong=\"H5414\"* up|strong=\"H6965\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* from|strong=\"H6965\"* among|strong=\"H7130\"* their|strong=\"H3605\"* brothers, like|strong=\"H3644\"* you|strong=\"H5414\"*. I|strong=\"H5414\"* will|strong=\"H1697\"* put|strong=\"H5414\"* my|strong=\"H5414\"* words|strong=\"H1697\"* in|strong=\"H1696\"* his|strong=\"H3605\"* mouth|strong=\"H6310\"*, and|strong=\"H6965\"* he|strong=\"H3605\"* shall|strong=\"H6310\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5414\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H5414\"* shall|strong=\"H6310\"* command|strong=\"H6680\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 19, + "text": "It|strong=\"H8034\"* shall|strong=\"H3808\"* happen|strong=\"H1961\"*, that|strong=\"H8085\"* whoever will|strong=\"H1961\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H1696\"* my|strong=\"H8085\"* words|strong=\"H1697\"* which|strong=\"H1697\"* he|strong=\"H3808\"* shall|strong=\"H3808\"* speak|strong=\"H1696\"* in|strong=\"H8085\"* my|strong=\"H8085\"* name|strong=\"H8034\"*, I|strong=\"H1697\"* will|strong=\"H1961\"* require|strong=\"H1875\"* it|strong=\"H8034\"* of|strong=\"H1697\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H3808\"* the|strong=\"H6680\"* prophet|strong=\"H5030\"* who|strong=\"H1931\"* speaks|strong=\"H1696\"* a|strong=\"H3068\"* word|strong=\"H1697\"* presumptuously|strong=\"H2102\"* in|strong=\"H4191\"* my|strong=\"H1696\"* name|strong=\"H8034\"*, which|strong=\"H1931\"* I|strong=\"H1697\"* have|strong=\"H5030\"* not|strong=\"H3808\"* commanded|strong=\"H6680\"* him|strong=\"H6680\"* to|strong=\"H1696\"* speak|strong=\"H1696\"*, or|strong=\"H3808\"* who|strong=\"H1931\"* speaks|strong=\"H1696\"* in|strong=\"H4191\"* the|strong=\"H6680\"* name|strong=\"H8034\"* of|strong=\"H1697\"* other gods, that|strong=\"H1931\"* same|strong=\"H1931\"* prophet|strong=\"H5030\"* shall|strong=\"H3808\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 21, + "text": "You|strong=\"H3588\"* may|strong=\"H3068\"* say|strong=\"H1696\"* in|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*, “How|strong=\"H3588\"* shall|strong=\"H3068\"* we|strong=\"H3068\"* know|strong=\"H3045\"* the|strong=\"H3588\"* word|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* spoken|strong=\"H1696\"*?”" + }, + { + "verseNum": 22, + "text": "When|strong=\"H1961\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* speaks|strong=\"H1696\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, if|strong=\"H1961\"* the|strong=\"H3068\"* thing|strong=\"H1697\"* doesn’t follow|strong=\"H1961\"*, nor|strong=\"H3808\"* happen|strong=\"H1961\"*, that|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H3068\"* thing|strong=\"H1697\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* spoken|strong=\"H1696\"*. The|strong=\"H3068\"* prophet|strong=\"H5030\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H1931\"* presumptuously|strong=\"H2087\"*. You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* afraid|strong=\"H1481\"* of|strong=\"H3068\"* him|strong=\"H1931\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* cuts|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H3588\"* nations|strong=\"H1471\"* whose|strong=\"H1471\"* land Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* succeed them|strong=\"H5414\"* and|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3068\"* cities|strong=\"H5892\"* and|strong=\"H3068\"* in|strong=\"H3427\"* their|strong=\"H3068\"* houses|strong=\"H1004\"*," + }, + { + "verseNum": 2, + "text": "you|strong=\"H5414\"* shall|strong=\"H3068\"* set|strong=\"H5414\"* apart three|strong=\"H7969\"* cities|strong=\"H5892\"* for|strong=\"H3068\"* yourselves|strong=\"H8432\"* in|strong=\"H3068\"* the|strong=\"H5414\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* your|strong=\"H3068\"* land, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H3068\"* possess|strong=\"H3423\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3605\"* shall|strong=\"H3068\"* prepare|strong=\"H3559\"* the|strong=\"H3605\"* way|strong=\"H1870\"*, and|strong=\"H3068\"* divide|strong=\"H5157\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H3068\"* your|strong=\"H3068\"* land|strong=\"H1366\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* causes you|strong=\"H3605\"* to|strong=\"H3068\"* inherit|strong=\"H5157\"* into|strong=\"H1961\"* three|strong=\"H8027\"* parts|strong=\"H8027\"*, that|strong=\"H3605\"* every|strong=\"H3605\"* man|strong=\"H3605\"* slayer|strong=\"H7523\"* may|strong=\"H1961\"* flee|strong=\"H5127\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 4, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H5221\"* case|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H5221\"* man|strong=\"H2088\"* slayer|strong=\"H7523\"* who|strong=\"H1931\"* shall|strong=\"H7523\"* flee|strong=\"H5127\"* there|strong=\"H8033\"* and|strong=\"H8033\"* live|strong=\"H2425\"*: Whoever kills|strong=\"H5221\"* his|strong=\"H5221\"* neighbor|strong=\"H7453\"* unintentionally|strong=\"H1847\"*, and|strong=\"H8033\"* didn’t hate|strong=\"H8130\"* him|strong=\"H5221\"* in|strong=\"H1697\"* time|strong=\"H8543\"* past|strong=\"H8032\"*—" + }, + { + "verseNum": 5, + "text": "as|strong=\"H1270\"* when|strong=\"H4480\"* a|strong=\"H3068\"* man|strong=\"H4191\"* goes into|strong=\"H3027\"* the|strong=\"H4480\"* forest|strong=\"H3293\"* with|strong=\"H3027\"* his|strong=\"H3027\"* neighbor|strong=\"H7453\"* to|strong=\"H4191\"* chop wood|strong=\"H6086\"* and|strong=\"H3027\"* his|strong=\"H3027\"* hand|strong=\"H3027\"* swings|strong=\"H5080\"* the|strong=\"H4480\"* ax to|strong=\"H4191\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* the|strong=\"H4480\"* tree|strong=\"H6086\"*, and|strong=\"H3027\"* the|strong=\"H4480\"* head|strong=\"H1270\"* slips|strong=\"H5394\"* from|strong=\"H4480\"* the|strong=\"H4480\"* handle|strong=\"H6086\"* and|strong=\"H3027\"* hits his|strong=\"H3027\"* neighbor|strong=\"H7453\"* so|strong=\"H4480\"* that|strong=\"H1931\"* he|strong=\"H1931\"* dies|strong=\"H4191\"*—he|strong=\"H1931\"* shall|strong=\"H5892\"* flee|strong=\"H5127\"* to|strong=\"H4191\"* one|strong=\"H4480\"* of|strong=\"H3027\"* these|strong=\"H1931\"* cities|strong=\"H5892\"* and|strong=\"H3027\"* live|strong=\"H2425\"*." + }, + { + "verseNum": 6, + "text": "Otherwise|strong=\"H6435\"*, the|strong=\"H3588\"* avenger|strong=\"H1350\"* of|strong=\"H1870\"* blood|strong=\"H1818\"* might|strong=\"H6435\"* pursue|strong=\"H7291\"* the|strong=\"H3588\"* man|strong=\"H5315\"* slayer|strong=\"H7523\"* while|strong=\"H1931\"* hot|strong=\"H3179\"* anger|strong=\"H3824\"* is|strong=\"H1931\"* in|strong=\"H5315\"* his|strong=\"H5221\"* heart|strong=\"H3824\"* and|strong=\"H4941\"* overtake|strong=\"H5381\"* him|strong=\"H5221\"*, because|strong=\"H3588\"* the|strong=\"H3588\"* way|strong=\"H1870\"* is|strong=\"H1931\"* long|strong=\"H7235\"*, and|strong=\"H4941\"* strike|strong=\"H5221\"* him|strong=\"H5221\"* mortally|strong=\"H5315\"*, even|strong=\"H3588\"* though|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* not|strong=\"H3808\"* worthy|strong=\"H4941\"* of|strong=\"H1870\"* death|strong=\"H4194\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* didn’t hate|strong=\"H8130\"* him|strong=\"H5221\"* in|strong=\"H5315\"* time|strong=\"H8543\"* past|strong=\"H8032\"*." + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* command|strong=\"H6680\"* you|strong=\"H6680\"* to|strong=\"H5921\"* set|strong=\"H6680\"* apart three|strong=\"H7969\"* cities|strong=\"H5892\"* for|strong=\"H5921\"* yourselves|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "If Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* enlarges|strong=\"H7337\"* your|strong=\"H3068\"* border|strong=\"H1366\"*, as|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"* to|strong=\"H1696\"* your|strong=\"H3068\"* fathers, and|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H1366\"* which|strong=\"H3068\"* he|strong=\"H3068\"* promised|strong=\"H1696\"* to|strong=\"H1696\"* give|strong=\"H5414\"* to|strong=\"H1696\"* your|strong=\"H3068\"* fathers;" + }, + { + "verseNum": 9, + "text": "and|strong=\"H3068\"* if|strong=\"H3588\"* you|strong=\"H3588\"* keep|strong=\"H8104\"* all|strong=\"H3605\"* this|strong=\"H2063\"* commandment|strong=\"H4687\"* to|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H5921\"*, which|strong=\"H3068\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"* today|strong=\"H3117\"*, to|strong=\"H3068\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* walk|strong=\"H3212\"* ever|strong=\"H3117\"* in|strong=\"H5921\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, then|strong=\"H3254\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* add|strong=\"H3254\"* three|strong=\"H7969\"* cities|strong=\"H5892\"* more|strong=\"H3254\"* for|strong=\"H3588\"* yourselves|strong=\"H3605\"*, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H3068\"* these|strong=\"H2063\"* three|strong=\"H7969\"*." + }, + { + "verseNum": 10, + "text": "This|strong=\"H5414\"* is|strong=\"H3068\"* so|strong=\"H1961\"* that|strong=\"H3068\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* shed|strong=\"H8210\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H7130\"* of|strong=\"H3068\"* your|strong=\"H3068\"* land|strong=\"H7130\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"* for|strong=\"H5921\"* an|strong=\"H1961\"* inheritance|strong=\"H5159\"*, leaving blood|strong=\"H1818\"* guilt|strong=\"H1818\"* on|strong=\"H5921\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* any|strong=\"H5221\"* man|strong=\"H5315\"* hates|strong=\"H8130\"* his|strong=\"H5921\"* neighbor|strong=\"H7453\"*, lies|strong=\"H1961\"* in|strong=\"H5921\"* wait for|strong=\"H3588\"* him|strong=\"H5921\"*, rises|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, strikes|strong=\"H5221\"* him|strong=\"H5921\"* mortally|strong=\"H4191\"* so|strong=\"H1961\"* that|strong=\"H3588\"* he|strong=\"H3588\"* dies|strong=\"H4191\"*, and|strong=\"H6965\"* he|strong=\"H3588\"* flees|strong=\"H5127\"* into|strong=\"H5921\"* one|strong=\"H1961\"* of|strong=\"H5892\"* these|strong=\"H6965\"* cities|strong=\"H5892\"*;" + }, + { + "verseNum": 12, + "text": "then|strong=\"H3947\"* the|strong=\"H5414\"* elders|strong=\"H2205\"* of|strong=\"H3027\"* his|strong=\"H5414\"* city|strong=\"H5892\"* shall|strong=\"H5892\"* send|strong=\"H7971\"* and|strong=\"H7971\"* bring|strong=\"H3947\"* him|strong=\"H5414\"* there|strong=\"H8033\"*, and|strong=\"H7971\"* deliver|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5414\"* avenger|strong=\"H1350\"* of|strong=\"H3027\"* blood|strong=\"H1818\"*, that|strong=\"H5414\"* he|strong=\"H8033\"* may|strong=\"H5414\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 13, + "text": "Your|strong=\"H5921\"* eye|strong=\"H5869\"* shall|strong=\"H3478\"* not|strong=\"H3808\"* pity|strong=\"H2347\"* him|strong=\"H5921\"*, but|strong=\"H3808\"* you|strong=\"H5921\"* shall|strong=\"H3478\"* purge|strong=\"H1197\"* the|strong=\"H5921\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"* from|strong=\"H5921\"* Israel|strong=\"H3478\"* that|strong=\"H3478\"* it|strong=\"H5921\"* may|strong=\"H3478\"* go|strong=\"H3478\"* well|strong=\"H2896\"* with|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* remove|strong=\"H5253\"* your|strong=\"H3068\"* neighbor|strong=\"H7453\"*’s landmark|strong=\"H1366\"*, which|strong=\"H3068\"* they|strong=\"H3068\"* of|strong=\"H3068\"* old|strong=\"H7223\"* time|strong=\"H7223\"* have|strong=\"H3068\"* set|strong=\"H5414\"*, in|strong=\"H3068\"* your|strong=\"H3068\"* inheritance|strong=\"H5159\"* which|strong=\"H3068\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* inherit|strong=\"H5157\"*, in|strong=\"H3068\"* the|strong=\"H5414\"* land|strong=\"H5159\"* that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H3068\"* possess|strong=\"H3423\"*." + }, + { + "verseNum": 15, + "text": "One|strong=\"H3605\"* witness|strong=\"H5707\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* a|strong=\"H3068\"* man|strong=\"H3605\"* for|strong=\"H5921\"* any|strong=\"H3605\"* iniquity|strong=\"H5771\"*, or|strong=\"H3808\"* for|strong=\"H5921\"* any|strong=\"H3605\"* sin|strong=\"H2403\"* that|strong=\"H3605\"* he|strong=\"H3605\"* sins|strong=\"H2403\"*. At|strong=\"H5921\"* the|strong=\"H3605\"* mouth|strong=\"H6310\"* of|strong=\"H1697\"* two|strong=\"H8147\"* witnesses|strong=\"H5707\"*, or|strong=\"H3808\"* at|strong=\"H5921\"* the|strong=\"H3605\"* mouth|strong=\"H6310\"* of|strong=\"H1697\"* three|strong=\"H7969\"* witnesses|strong=\"H5707\"*, shall|strong=\"H3808\"* a|strong=\"H3068\"* matter|strong=\"H1697\"* be|strong=\"H3808\"* established|strong=\"H6965\"*." + }, + { + "verseNum": 16, + "text": "If|strong=\"H3588\"* an|strong=\"H6965\"* unrighteous|strong=\"H2555\"* witness|strong=\"H5707\"* rises|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H6965\"* any|strong=\"H3588\"* man|strong=\"H6030\"* to|strong=\"H6965\"* testify|strong=\"H6030\"* against|strong=\"H6965\"* him|strong=\"H6030\"* of|strong=\"H2555\"* wrongdoing|strong=\"H5627\"*," + }, + { + "verseNum": 17, + "text": "then|strong=\"H1961\"* both|strong=\"H8147\"* the|strong=\"H6440\"* men|strong=\"H1992\"*, between|strong=\"H8199\"* whom|strong=\"H1992\"* the|strong=\"H6440\"* controversy|strong=\"H7379\"* is|strong=\"H3068\"*, shall|strong=\"H3548\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, before|strong=\"H6440\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H6440\"* judges|strong=\"H8199\"* who|strong=\"H3068\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* in|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H6030\"* the|strong=\"H1875\"* judges|strong=\"H8199\"* shall|strong=\"H8199\"* make|strong=\"H6030\"* diligent|strong=\"H3190\"* inquisition|strong=\"H1875\"*; and|strong=\"H6030\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H1875\"* witness|strong=\"H5707\"* is|strong=\"H2009\"* a|strong=\"H3068\"* false|strong=\"H8267\"* witness|strong=\"H5707\"*, and|strong=\"H6030\"* has|strong=\"H2009\"* testified|strong=\"H6030\"* falsely|strong=\"H8267\"* against his|strong=\"H8199\"* brother," + }, + { + "verseNum": 19, + "text": "then|strong=\"H6213\"* you|strong=\"H6213\"* shall|strong=\"H7451\"* do|strong=\"H6213\"* to|strong=\"H6213\"* him|strong=\"H6213\"* as|strong=\"H6213\"* he|strong=\"H6213\"* had|strong=\"H6213\"* thought|strong=\"H2161\"* to|strong=\"H6213\"* do|strong=\"H6213\"* to|strong=\"H6213\"* his|strong=\"H6213\"* brother. So|strong=\"H6213\"* you|strong=\"H6213\"* shall|strong=\"H7451\"* remove|strong=\"H1197\"* the|strong=\"H6213\"* evil|strong=\"H7451\"* from|strong=\"H7451\"* among|strong=\"H7130\"* you|strong=\"H6213\"*." + }, + { + "verseNum": 20, + "text": "Those|strong=\"H8085\"* who|strong=\"H7604\"* remain|strong=\"H7604\"* shall|strong=\"H3808\"* hear|strong=\"H8085\"*, and|strong=\"H8085\"* fear|strong=\"H3372\"*, and|strong=\"H8085\"* will|strong=\"H1697\"* never|strong=\"H3808\"* again|strong=\"H5750\"* commit|strong=\"H6213\"* any|strong=\"H5750\"* such|strong=\"H2088\"* evil|strong=\"H7451\"* among|strong=\"H7130\"* you|strong=\"H6213\"*." + }, + { + "verseNum": 21, + "text": "Your|strong=\"H3808\"* eyes|strong=\"H5869\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* pity|strong=\"H2347\"*: life|strong=\"H5315\"* for|strong=\"H3027\"* life|strong=\"H5315\"*, eye|strong=\"H5869\"* for|strong=\"H3027\"* eye|strong=\"H5869\"*, tooth|strong=\"H8127\"* for|strong=\"H3027\"* tooth|strong=\"H8127\"*, hand|strong=\"H3027\"* for|strong=\"H3027\"* hand|strong=\"H3027\"*, foot|strong=\"H7272\"* for|strong=\"H3027\"* foot|strong=\"H7272\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* battle|strong=\"H4421\"* against|strong=\"H5921\"* your|strong=\"H3068\"* enemies, and|strong=\"H3068\"* see|strong=\"H7200\"* horses|strong=\"H5483\"*, chariots|strong=\"H7393\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* people|strong=\"H5971\"* more|strong=\"H4480\"* numerous|strong=\"H7227\"* than|strong=\"H4480\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* afraid|strong=\"H3372\"* of|strong=\"H3068\"* them|strong=\"H1992\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H5971\"* brought|strong=\"H3318\"* you|strong=\"H3588\"* up|strong=\"H5927\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H5921\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, is|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H7126\"* shall|strong=\"H3548\"* be|strong=\"H1961\"*, when|strong=\"H1961\"* you|strong=\"H7126\"* draw|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H1696\"* the|strong=\"H7126\"* battle|strong=\"H4421\"*, that|strong=\"H5971\"* the|strong=\"H7126\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* approach|strong=\"H7126\"* and|strong=\"H3548\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H7126\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H3478\"* shall|strong=\"H3478\"* tell|strong=\"H8085\"* them|strong=\"H5921\"*, “Hear|strong=\"H8085\"*, Israel|strong=\"H3478\"*, you|strong=\"H6440\"* draw|strong=\"H3478\"* near|strong=\"H7131\"* today|strong=\"H3117\"* to|strong=\"H3478\"* battle|strong=\"H4421\"* against|strong=\"H5921\"* your|strong=\"H5921\"* enemies. Don’t let your|strong=\"H5921\"* heart|strong=\"H3824\"* faint|strong=\"H7401\"*! Don’t be|strong=\"H3478\"* afraid|strong=\"H3372\"*, nor|strong=\"H3372\"* tremble|strong=\"H6206\"*, neither be|strong=\"H3478\"* scared of|strong=\"H3117\"* them|strong=\"H5921\"*;" + }, + { + "verseNum": 4, + "text": "for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* is|strong=\"H3068\"* he|strong=\"H3588\"* who|strong=\"H3068\"* goes|strong=\"H1980\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, to|strong=\"H1980\"* fight|strong=\"H3898\"* for|strong=\"H3588\"* you|strong=\"H3588\"* against|strong=\"H5973\"* your|strong=\"H3068\"* enemies, to|strong=\"H1980\"* save|strong=\"H3467\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H7725\"* officers|strong=\"H7860\"* shall|strong=\"H5971\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H7725\"* people|strong=\"H5971\"*, saying|strong=\"H1696\"*, “What|strong=\"H4310\"* man|strong=\"H4191\"* is|strong=\"H4310\"* there|strong=\"H7725\"* who|strong=\"H4310\"* has|strong=\"H4310\"* built|strong=\"H1129\"* a|strong=\"H3068\"* new|strong=\"H2319\"* house|strong=\"H1004\"*, and|strong=\"H7725\"* has|strong=\"H4310\"* not|strong=\"H3808\"* dedicated|strong=\"H2596\"* it|strong=\"H7725\"*? Let|strong=\"H3808\"* him|strong=\"H7725\"* go|strong=\"H3212\"* and|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H1696\"* his|strong=\"H7725\"* house|strong=\"H1004\"*, lest|strong=\"H6435\"* he|strong=\"H1004\"* die|strong=\"H4191\"* in|strong=\"H1004\"* the|strong=\"H7725\"* battle|strong=\"H4421\"*, and|strong=\"H7725\"* another|strong=\"H3808\"* man|strong=\"H4191\"* dedicate|strong=\"H2596\"* it|strong=\"H7725\"*." + }, + { + "verseNum": 6, + "text": "What|strong=\"H4310\"* man|strong=\"H4191\"* is|strong=\"H4310\"* there|strong=\"H7725\"* who|strong=\"H4310\"* has|strong=\"H4310\"* planted|strong=\"H5193\"* a|strong=\"H3068\"* vineyard|strong=\"H3754\"*, and|strong=\"H7725\"* has|strong=\"H4310\"* not|strong=\"H3808\"* used its|strong=\"H7725\"* fruit|strong=\"H2490\"*? Let|strong=\"H3808\"* him|strong=\"H7725\"* go|strong=\"H3212\"* and|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* house|strong=\"H1004\"*, lest|strong=\"H6435\"* he|strong=\"H1004\"* die|strong=\"H4191\"* in|strong=\"H1004\"* the|strong=\"H7725\"* battle|strong=\"H4421\"*, and|strong=\"H7725\"* another|strong=\"H3808\"* man|strong=\"H4191\"* use|strong=\"H2490\"* its|strong=\"H7725\"* fruit|strong=\"H2490\"*." + }, + { + "verseNum": 7, + "text": "What|strong=\"H4310\"* man|strong=\"H4191\"* is|strong=\"H4310\"* there|strong=\"H7725\"* who|strong=\"H4310\"* has|strong=\"H4310\"* pledged to|strong=\"H7725\"* be|strong=\"H4191\"* married|strong=\"H3947\"* to|strong=\"H7725\"* a|strong=\"H3068\"* wife, and|strong=\"H7725\"* has|strong=\"H4310\"* not|strong=\"H3808\"* taken|strong=\"H3947\"* her|strong=\"H3947\"*? Let|strong=\"H3808\"* him|strong=\"H7725\"* go|strong=\"H3212\"* and|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H3947\"* house|strong=\"H1004\"*, lest|strong=\"H6435\"* he|strong=\"H1004\"* die|strong=\"H4191\"* in|strong=\"H1004\"* the|strong=\"H3947\"* battle|strong=\"H4421\"*, and|strong=\"H7725\"* another|strong=\"H3808\"* man|strong=\"H4191\"* take|strong=\"H3947\"* her|strong=\"H3947\"*.”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H7725\"* officers|strong=\"H7860\"* shall|strong=\"H5971\"* speak|strong=\"H1696\"* further|strong=\"H3254\"* to|strong=\"H1696\"* the|strong=\"H7725\"* people|strong=\"H5971\"*, and|strong=\"H7725\"* they|strong=\"H3808\"* shall|strong=\"H5971\"* say|strong=\"H1696\"*, “What|strong=\"H4310\"* man is|strong=\"H4310\"* there|strong=\"H7725\"* who|strong=\"H4310\"* is|strong=\"H4310\"* fearful|strong=\"H3373\"* and|strong=\"H7725\"* faint-hearted? Let|strong=\"H3808\"* him|strong=\"H7725\"* go|strong=\"H3212\"* and|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H1696\"* his|strong=\"H7725\"* house|strong=\"H1004\"*, lest his|strong=\"H7725\"* brother’s heart|strong=\"H3824\"* melt|strong=\"H4549\"* as|strong=\"H3824\"* his|strong=\"H7725\"* heart|strong=\"H3824\"*.”" + }, + { + "verseNum": 9, + "text": "It|strong=\"H1961\"* shall|strong=\"H5971\"* be|strong=\"H1961\"*, when|strong=\"H1961\"* the|strong=\"H6485\"* officers|strong=\"H7860\"* have|strong=\"H1961\"* finished|strong=\"H3615\"* speaking|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H6485\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* they|strong=\"H5971\"* shall|strong=\"H5971\"* appoint|strong=\"H6485\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* armies|strong=\"H6635\"* at|strong=\"H1961\"* the|strong=\"H6485\"* head|strong=\"H7218\"* of|strong=\"H8269\"* the|strong=\"H6485\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* draw|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H5921\"* a|strong=\"H3068\"* city|strong=\"H5892\"* to|strong=\"H5921\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* it|strong=\"H7121\"*, then|strong=\"H7126\"* proclaim|strong=\"H7121\"* peace|strong=\"H7965\"* to|strong=\"H5921\"* it|strong=\"H7121\"*." + }, + { + "verseNum": 11, + "text": "It|strong=\"H1961\"* shall|strong=\"H5971\"* be|strong=\"H1961\"*, if|strong=\"H1961\"* it|strong=\"H1961\"* gives you|strong=\"H3605\"* answer|strong=\"H6030\"* of|strong=\"H5971\"* peace|strong=\"H7965\"* and|strong=\"H6030\"* opens|strong=\"H6605\"* to|strong=\"H1961\"* you|strong=\"H3605\"*, then|strong=\"H6030\"* it|strong=\"H1961\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* that|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H5971\"* found|strong=\"H4672\"* therein shall|strong=\"H5971\"* become|strong=\"H1961\"* forced|strong=\"H4522\"* laborers|strong=\"H4522\"* to|strong=\"H1961\"* you|strong=\"H3605\"*, and|strong=\"H6030\"* shall|strong=\"H5971\"* serve|strong=\"H5647\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 12, + "text": "If it|strong=\"H5921\"* will|strong=\"H3808\"* make|strong=\"H6213\"* no|strong=\"H3808\"* peace|strong=\"H7999\"* with|strong=\"H5973\"* you|strong=\"H5921\"*, but|strong=\"H3808\"* will|strong=\"H3808\"* make|strong=\"H6213\"* war|strong=\"H4421\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, then|strong=\"H6213\"* you|strong=\"H5921\"* shall|strong=\"H3808\"* besiege|strong=\"H6696\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* delivers|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H2719\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, you|strong=\"H5414\"* shall|strong=\"H3068\"* strike|strong=\"H5221\"* every|strong=\"H3605\"* male|strong=\"H2138\"* of|strong=\"H3068\"* it|strong=\"H5414\"* with|strong=\"H3068\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*;" + }, + { + "verseNum": 14, + "text": "but|strong=\"H7535\"* the|strong=\"H3605\"* women, the|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, the|strong=\"H3605\"* livestock, and|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, even|strong=\"H3068\"* all|strong=\"H3605\"* its|strong=\"H3605\"* plunder|strong=\"H7998\"*, you|strong=\"H5414\"* shall|strong=\"H3068\"* take|strong=\"H1961\"* for|strong=\"H3068\"* plunder|strong=\"H7998\"* for|strong=\"H3068\"* yourself|strong=\"H5414\"*. You|strong=\"H5414\"* may|strong=\"H1961\"* use|strong=\"H1961\"* the|strong=\"H3605\"* plunder|strong=\"H7998\"* of|strong=\"H3068\"* your|strong=\"H3068\"* enemies, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 15, + "text": "Thus|strong=\"H3651\"* you|strong=\"H3605\"* shall|strong=\"H1471\"* do|strong=\"H6213\"* to|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* which|strong=\"H1471\"* are|strong=\"H1471\"* very|strong=\"H3966\"* far|strong=\"H7350\"* off|strong=\"H7350\"* from|strong=\"H4480\"* you|strong=\"H3605\"*, which|strong=\"H1471\"* are|strong=\"H1471\"* not|strong=\"H3808\"* of|strong=\"H5892\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* these|strong=\"H6213\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"H7535\"* of|strong=\"H3068\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* these|strong=\"H3605\"* peoples|strong=\"H5971\"* that|strong=\"H5971\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"* for|strong=\"H3068\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*, you|strong=\"H5414\"* shall|strong=\"H3068\"* save|strong=\"H2421\"* alive|strong=\"H2421\"* nothing|strong=\"H3808\"* that|strong=\"H5971\"* breathes|strong=\"H5397\"*;" + }, + { + "verseNum": 17, + "text": "but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* utterly|strong=\"H2763\"* destroy|strong=\"H2763\"* them|strong=\"H6680\"*: the|strong=\"H3588\"* Hittite|strong=\"H2850\"*, the|strong=\"H3588\"* Amorite, the|strong=\"H3588\"* Canaanite|strong=\"H3669\"*, the|strong=\"H3588\"* Perizzite|strong=\"H6522\"*, the|strong=\"H3588\"* Hivite|strong=\"H2340\"*, and|strong=\"H3068\"* the|strong=\"H3588\"* Jebusite|strong=\"H2983\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*;" + }, + { + "verseNum": 18, + "text": "that|strong=\"H3605\"* they|strong=\"H3068\"* not|strong=\"H3808\"* teach|strong=\"H3925\"* you|strong=\"H3605\"* to|strong=\"H3068\"* follow|strong=\"H6213\"* all|strong=\"H3605\"* their|strong=\"H3605\"* abominations|strong=\"H8441\"*, which|strong=\"H3068\"* they|strong=\"H3068\"* have|strong=\"H3068\"* done|strong=\"H6213\"* for|strong=\"H6213\"* their|strong=\"H3605\"* gods; so|strong=\"H4616\"* would|strong=\"H3068\"* you|strong=\"H3605\"* sin|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3117\"* besiege|strong=\"H6696\"* a|strong=\"H3068\"* city|strong=\"H5892\"* a|strong=\"H3068\"* long|strong=\"H3117\"* time|strong=\"H3117\"*, in|strong=\"H5921\"* making|strong=\"H3772\"* war|strong=\"H3898\"* against|strong=\"H5921\"* it|strong=\"H5921\"* to|strong=\"H5921\"* take|strong=\"H8610\"* it|strong=\"H5921\"*, you|strong=\"H3588\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* destroy|strong=\"H7843\"* its|strong=\"H5921\"* trees|strong=\"H6086\"* by|strong=\"H5921\"* wielding|strong=\"H8610\"* an|strong=\"H3772\"* ax against|strong=\"H5921\"* them|strong=\"H5921\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3117\"* eat|strong=\"H3898\"* of|strong=\"H3117\"* them|strong=\"H5921\"*. You|strong=\"H3588\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* cut|strong=\"H3772\"* them|strong=\"H5921\"* down|strong=\"H3772\"*, for|strong=\"H3588\"* is|strong=\"H3117\"* the|strong=\"H6440\"* tree|strong=\"H6086\"* of|strong=\"H3117\"* the|strong=\"H6440\"* field|strong=\"H7704\"* man|strong=\"H6440\"*, that|strong=\"H3588\"* it|strong=\"H5921\"* should|strong=\"H3588\"* be|strong=\"H3808\"* besieged|strong=\"H6696\"* by|strong=\"H5921\"* you|strong=\"H3588\"*?" + }, + { + "verseNum": 20, + "text": "Only|strong=\"H7535\"* the|strong=\"H5921\"* trees|strong=\"H6086\"* that|strong=\"H3588\"* you|strong=\"H3588\"* know|strong=\"H3045\"* are|strong=\"H5892\"* not|strong=\"H3808\"* trees|strong=\"H6086\"* for|strong=\"H3588\"* food|strong=\"H3978\"*, you|strong=\"H3588\"* shall|strong=\"H5892\"* destroy|strong=\"H7843\"* and|strong=\"H6086\"* cut|strong=\"H3772\"* them|strong=\"H5921\"* down|strong=\"H3381\"*. You|strong=\"H3588\"* shall|strong=\"H5892\"* build|strong=\"H1129\"* bulwarks|strong=\"H4692\"* against|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"* that|strong=\"H3588\"* makes|strong=\"H6213\"* war|strong=\"H4421\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, until|strong=\"H5704\"* it|strong=\"H1931\"* falls|strong=\"H3381\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "If|strong=\"H3588\"* someone|strong=\"H4310\"* is|strong=\"H3068\"* found|strong=\"H4672\"* slain|strong=\"H2491\"* in|strong=\"H3068\"* the|strong=\"H3588\"* land|strong=\"H7704\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"* to|strong=\"H3068\"* possess|strong=\"H3423\"*, lying|strong=\"H5307\"* in|strong=\"H3068\"* the|strong=\"H3588\"* field|strong=\"H7704\"*, and|strong=\"H3068\"* it|strong=\"H5414\"* isn’t known|strong=\"H3045\"* who|strong=\"H4310\"* has|strong=\"H3068\"* struck|strong=\"H5221\"* him|strong=\"H5414\"*," + }, + { + "verseNum": 2, + "text": "then|strong=\"H3318\"* your|strong=\"H3318\"* elders|strong=\"H2205\"* and|strong=\"H5892\"* your|strong=\"H3318\"* judges|strong=\"H8199\"* shall|strong=\"H5892\"* come|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H5892\"* they|strong=\"H5892\"* shall|strong=\"H5892\"* measure|strong=\"H4058\"* to|strong=\"H3318\"* the|strong=\"H3318\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* are|strong=\"H5892\"* around|strong=\"H5439\"* him|strong=\"H3318\"* who|strong=\"H2491\"* is|strong=\"H5892\"* slain|strong=\"H2491\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H1931\"* shall|strong=\"H5892\"* be|strong=\"H1961\"* that|strong=\"H1931\"* the|strong=\"H3947\"* elders|strong=\"H2205\"* of|strong=\"H5892\"* the|strong=\"H3947\"* city|strong=\"H5892\"* which|strong=\"H1931\"* is|strong=\"H1931\"* nearest|strong=\"H7138\"* to|strong=\"H1961\"* the|strong=\"H3947\"* slain|strong=\"H2491\"* man|strong=\"H2205\"* shall|strong=\"H5892\"* take|strong=\"H3947\"* a|strong=\"H3068\"* heifer|strong=\"H5697\"* of|strong=\"H5892\"* the|strong=\"H3947\"* herd|strong=\"H1241\"*, which|strong=\"H1931\"* hasn’t been|strong=\"H1961\"* worked|strong=\"H5647\"* with|strong=\"H5892\"* and|strong=\"H5892\"* which|strong=\"H1931\"* has|strong=\"H1961\"* not|strong=\"H3808\"* drawn|strong=\"H4900\"* in|strong=\"H5892\"* the|strong=\"H3947\"* yoke|strong=\"H5923\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H5647\"* elders|strong=\"H2205\"* of|strong=\"H5892\"* that|strong=\"H1931\"* city|strong=\"H5892\"* shall|strong=\"H5892\"* bring|strong=\"H3381\"* the|strong=\"H5647\"* heifer|strong=\"H5697\"* down|strong=\"H3381\"* to|strong=\"H3381\"* a|strong=\"H3068\"* valley|strong=\"H5158\"* with|strong=\"H3381\"* running water, which|strong=\"H1931\"* is|strong=\"H1931\"* neither|strong=\"H3808\"* plowed|strong=\"H5647\"* nor|strong=\"H3808\"* sown|strong=\"H2232\"*, and|strong=\"H5892\"* shall|strong=\"H5892\"* break|strong=\"H6202\"* the|strong=\"H5647\"* heifer|strong=\"H5697\"*’s neck|strong=\"H6202\"* there|strong=\"H8033\"* in|strong=\"H5892\"* the|strong=\"H5647\"* valley|strong=\"H5158\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3605\"* priests|strong=\"H3548\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"* shall|strong=\"H3548\"* come|strong=\"H1961\"* near|strong=\"H5066\"*, for|strong=\"H3588\"* them|strong=\"H5921\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* chosen to|strong=\"H3068\"* minister|strong=\"H8334\"* to|strong=\"H3068\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* to|strong=\"H3068\"* bless|strong=\"H1288\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*; and|strong=\"H1121\"* according|strong=\"H5921\"* to|strong=\"H3068\"* their|strong=\"H3605\"* word|strong=\"H6310\"* shall|strong=\"H3548\"* every|strong=\"H3605\"* controversy|strong=\"H7379\"* and|strong=\"H1121\"* every|strong=\"H3605\"* assault|strong=\"H5061\"* be|strong=\"H1961\"* decided|strong=\"H1961\"*." + }, + { + "verseNum": 6, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H3027\"* that|strong=\"H3605\"* city|strong=\"H5892\"* which|strong=\"H1931\"* is|strong=\"H1931\"* nearest|strong=\"H7138\"* to|strong=\"H5921\"* the|strong=\"H3605\"* slain|strong=\"H2491\"* man|strong=\"H2205\"* shall|strong=\"H5892\"* wash|strong=\"H7364\"* their|strong=\"H3605\"* hands|strong=\"H3027\"* over|strong=\"H5921\"* the|strong=\"H3605\"* heifer|strong=\"H5697\"* whose|strong=\"H3605\"* neck|strong=\"H6202\"* was|strong=\"H1931\"* broken|strong=\"H6202\"* in|strong=\"H5921\"* the|strong=\"H3605\"* valley|strong=\"H5158\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3808\"* shall|strong=\"H5869\"* answer|strong=\"H6030\"* and|strong=\"H6030\"* say, “Our|strong=\"H7200\"* hands|strong=\"H3027\"* have|strong=\"H5869\"* not|strong=\"H3808\"* shed|strong=\"H8210\"* this|strong=\"H2088\"* blood|strong=\"H1818\"*, neither|strong=\"H3808\"* have|strong=\"H5869\"* our|strong=\"H7200\"* eyes|strong=\"H5869\"* seen|strong=\"H7200\"* it|strong=\"H7200\"*." + }, + { + "verseNum": 8, + "text": "Forgive|strong=\"H3722\"*, Yahweh|strong=\"H3068\"*, your|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, whom|strong=\"H1992\"* you|strong=\"H5414\"* have|strong=\"H3068\"* redeemed|strong=\"H6299\"*, and|strong=\"H3478\"* don’t allow|strong=\"H5414\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"* among|strong=\"H7130\"* your|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*.” The|strong=\"H5414\"* blood|strong=\"H1818\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* forgiven|strong=\"H3722\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 9, + "text": "So|strong=\"H6213\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* put|strong=\"H1197\"* away|strong=\"H1197\"* the|strong=\"H3588\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"* from|strong=\"H3068\"* among|strong=\"H7130\"* you|strong=\"H3588\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* battle|strong=\"H4421\"* against|strong=\"H5921\"* your|strong=\"H3068\"* enemies|strong=\"H3027\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* delivers|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5921\"* your|strong=\"H3068\"* hands|strong=\"H3027\"* and|strong=\"H3068\"* you|strong=\"H3588\"* carry|strong=\"H3318\"* them|strong=\"H5414\"* away|strong=\"H7617\"* captive|strong=\"H7617\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H7200\"* see|strong=\"H7200\"* among|strong=\"H3303\"* the|strong=\"H7200\"* captives|strong=\"H7633\"* a|strong=\"H3068\"* beautiful|strong=\"H3303\"* woman, and|strong=\"H7200\"* you|strong=\"H3947\"* are attracted to|strong=\"H7200\"* her|strong=\"H3947\"*, and|strong=\"H7200\"* desire|strong=\"H2836\"* to|strong=\"H7200\"* take|strong=\"H3947\"* her|strong=\"H3947\"* as|strong=\"H3303\"* your|strong=\"H3947\"* wife," + }, + { + "verseNum": 12, + "text": "then|strong=\"H6213\"* you|strong=\"H6213\"* shall|strong=\"H1004\"* bring|strong=\"H6213\"* her|strong=\"H6213\"* home|strong=\"H1004\"* to|strong=\"H6213\"* your|strong=\"H6213\"* house|strong=\"H1004\"*. She shall|strong=\"H1004\"* shave|strong=\"H1548\"* her|strong=\"H6213\"* head|strong=\"H7218\"* and|strong=\"H1004\"* trim|strong=\"H6213\"* her|strong=\"H6213\"* nails|strong=\"H6856\"*." + }, + { + "verseNum": 13, + "text": "She|strong=\"H5921\"* shall|strong=\"H1004\"* take|strong=\"H5493\"* off|strong=\"H5493\"* the|strong=\"H5921\"* clothing|strong=\"H8071\"* of|strong=\"H1004\"* her|strong=\"H5493\"* captivity|strong=\"H7633\"*, and|strong=\"H3117\"* shall|strong=\"H1004\"* remain|strong=\"H3427\"* in|strong=\"H3427\"* your|strong=\"H5921\"* house|strong=\"H1004\"*, and|strong=\"H3117\"* bewail|strong=\"H1058\"* her|strong=\"H5493\"* father and|strong=\"H3117\"* her|strong=\"H5493\"* mother a|strong=\"H3068\"* full|strong=\"H3117\"* month|strong=\"H3391\"*. After|strong=\"H5921\"* that|strong=\"H3117\"* you|strong=\"H5921\"* shall|strong=\"H1004\"* go|strong=\"H1961\"* in|strong=\"H3427\"* to|strong=\"H1961\"* her|strong=\"H5493\"* and|strong=\"H3117\"* be|strong=\"H1961\"* her|strong=\"H5493\"* husband|strong=\"H1167\"*, and|strong=\"H3117\"* she|strong=\"H5921\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* your|strong=\"H5921\"* wife." + }, + { + "verseNum": 14, + "text": "It|strong=\"H1961\"* shall|strong=\"H5315\"* be|strong=\"H1961\"*, if|strong=\"H1961\"* you|strong=\"H7971\"* have|strong=\"H1961\"* no|strong=\"H3808\"* delight|strong=\"H2654\"* in|strong=\"H5315\"* her|strong=\"H7971\"*, then|strong=\"H1961\"* you|strong=\"H7971\"* shall|strong=\"H5315\"* let|strong=\"H7971\"* her|strong=\"H7971\"* go|strong=\"H7971\"* where|strong=\"H8478\"* she|strong=\"H3808\"* desires|strong=\"H2654\"*; but|strong=\"H3808\"* you|strong=\"H7971\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* sell|strong=\"H4376\"* her|strong=\"H7971\"* at|strong=\"H1961\"* all|strong=\"H7971\"* for|strong=\"H8478\"* money|strong=\"H3701\"*. You|strong=\"H7971\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* deal with|strong=\"H5315\"* her|strong=\"H7971\"* as|strong=\"H1961\"* a|strong=\"H3068\"* slave|strong=\"H5315\"*, because|strong=\"H8478\"* you|strong=\"H7971\"* have|strong=\"H1961\"* humbled|strong=\"H6031\"* her|strong=\"H7971\"*." + }, + { + "verseNum": 15, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1121\"* has|strong=\"H1961\"* two|strong=\"H8147\"* wives, the|strong=\"H3588\"* one|strong=\"H1121\"* beloved and|strong=\"H1121\"* the|strong=\"H3588\"* other|strong=\"H8147\"* hated|strong=\"H8130\"*, and|strong=\"H1121\"* they|strong=\"H3588\"* have|strong=\"H1961\"* borne|strong=\"H3205\"* him|strong=\"H3205\"* children|strong=\"H1121\"*, both|strong=\"H8147\"* the|strong=\"H3588\"* beloved and|strong=\"H1121\"* the|strong=\"H3588\"* hated|strong=\"H8130\"*, and|strong=\"H1121\"* if|strong=\"H3588\"* the|strong=\"H3588\"* firstborn|strong=\"H1060\"* son|strong=\"H1121\"* is|strong=\"H1121\"* hers who|strong=\"H1121\"* was|strong=\"H1961\"* hated|strong=\"H8130\"*," + }, + { + "verseNum": 16, + "text": "then|strong=\"H1961\"* it|strong=\"H5921\"* shall|strong=\"H1121\"* be|strong=\"H1961\"*, in|strong=\"H5921\"* the|strong=\"H6440\"* day|strong=\"H3117\"* that|strong=\"H3117\"* he|strong=\"H3117\"* causes his|strong=\"H6440\"* sons|strong=\"H1121\"* to|strong=\"H3201\"* inherit|strong=\"H5157\"* that|strong=\"H3117\"* which|strong=\"H3117\"* he|strong=\"H3117\"* has|strong=\"H1961\"*, that|strong=\"H3117\"* he|strong=\"H3117\"* may|strong=\"H1961\"* not|strong=\"H3808\"* give|strong=\"H5157\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* beloved the|strong=\"H6440\"* rights of|strong=\"H1121\"* the|strong=\"H6440\"* firstborn|strong=\"H1060\"* before|strong=\"H6440\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* hated|strong=\"H8130\"*, who|strong=\"H1121\"* is|strong=\"H3117\"* the|strong=\"H6440\"* firstborn|strong=\"H1060\"*;" + }, + { + "verseNum": 17, + "text": "but|strong=\"H3588\"* he|strong=\"H1931\"* shall|strong=\"H1121\"* acknowledge|strong=\"H5234\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* hated|strong=\"H8130\"*, by|strong=\"H5414\"* giving|strong=\"H5414\"* him|strong=\"H5414\"* a|strong=\"H3068\"* double|strong=\"H8147\"* portion|strong=\"H6310\"* of|strong=\"H1121\"* all|strong=\"H3605\"* that|strong=\"H3588\"* he|strong=\"H1931\"* has|strong=\"H3588\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* beginning|strong=\"H7225\"* of|strong=\"H1121\"* his|strong=\"H3605\"* strength. The|strong=\"H3605\"* right|strong=\"H4941\"* of|strong=\"H1121\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* is|strong=\"H1931\"* his|strong=\"H3605\"*." + }, + { + "verseNum": 18, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1121\"* has|strong=\"H1961\"* a|strong=\"H3068\"* stubborn|strong=\"H5637\"* and|strong=\"H1121\"* rebellious|strong=\"H4784\"* son|strong=\"H1121\"* who|strong=\"H1121\"* will|strong=\"H1961\"* not|strong=\"H3808\"* obey|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H1121\"* his|strong=\"H8085\"* father|strong=\"H1121\"* or|strong=\"H3808\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H1121\"* his|strong=\"H8085\"* mother, and|strong=\"H1121\"* though|strong=\"H3588\"* they|strong=\"H3588\"* chasten|strong=\"H3256\"* him|strong=\"H6963\"*, will|strong=\"H1961\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H1961\"* them|strong=\"H1961\"*," + }, + { + "verseNum": 19, + "text": "then|strong=\"H3318\"* his|strong=\"H3318\"* father and|strong=\"H5892\"* his|strong=\"H3318\"* mother shall|strong=\"H5892\"* take|strong=\"H8610\"* hold|strong=\"H8610\"* of|strong=\"H5892\"* him|strong=\"H3318\"* and|strong=\"H5892\"* bring|strong=\"H3318\"* him|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3318\"* elders|strong=\"H2205\"* of|strong=\"H5892\"* his|strong=\"H3318\"* city|strong=\"H5892\"* and|strong=\"H5892\"* to|strong=\"H3318\"* the|strong=\"H3318\"* gate|strong=\"H8179\"* of|strong=\"H5892\"* his|strong=\"H3318\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H5892\"* shall|strong=\"H1121\"* tell|strong=\"H8085\"* the|strong=\"H8085\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* his|strong=\"H8085\"* city|strong=\"H5892\"*, “This|strong=\"H2088\"* our|strong=\"H8085\"* son|strong=\"H1121\"* is|strong=\"H2088\"* stubborn|strong=\"H5637\"* and|strong=\"H1121\"* rebellious|strong=\"H4784\"*. He|strong=\"H2088\"* will|strong=\"H1121\"* not|strong=\"H2088\"* obey|strong=\"H8085\"* our|strong=\"H8085\"* voice|strong=\"H6963\"*. He|strong=\"H2088\"* is|strong=\"H2088\"* a|strong=\"H3068\"* glutton|strong=\"H2151\"* and|strong=\"H1121\"* a|strong=\"H3068\"* drunkard.”" + }, + { + "verseNum": 21, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H7451\"* of|strong=\"H5892\"* his|strong=\"H3605\"* city|strong=\"H5892\"* shall|strong=\"H3478\"* stone|strong=\"H7275\"* him|strong=\"H4191\"* to|strong=\"H3478\"* death|strong=\"H4191\"* with|strong=\"H5892\"* stones. So|strong=\"H4191\"* you|strong=\"H3605\"* shall|strong=\"H3478\"* remove|strong=\"H1197\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* from|strong=\"H3478\"* among|strong=\"H7130\"* you|strong=\"H3605\"*. All|strong=\"H3605\"* Israel|strong=\"H3478\"* shall|strong=\"H3478\"* hear|strong=\"H8085\"*, and|strong=\"H3478\"* fear|strong=\"H3372\"*." + }, + { + "verseNum": 22, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H4191\"* has|strong=\"H1961\"* committed|strong=\"H1961\"* a|strong=\"H3068\"* sin|strong=\"H2399\"* worthy|strong=\"H4941\"* of|strong=\"H6086\"* death|strong=\"H4194\"*, and|strong=\"H4941\"* he|strong=\"H3588\"* is|strong=\"H1961\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4194\"*, and|strong=\"H4941\"* you|strong=\"H3588\"* hang|strong=\"H8518\"* him|strong=\"H5921\"* on|strong=\"H5921\"* a|strong=\"H3068\"* tree|strong=\"H6086\"*," + }, + { + "verseNum": 23, + "text": "his|strong=\"H5414\"* body|strong=\"H5038\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* remain|strong=\"H3885\"* all|strong=\"H5414\"* night|strong=\"H3885\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tree|strong=\"H6086\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* surely|strong=\"H3588\"* bury|strong=\"H6912\"* him|strong=\"H5414\"* the|strong=\"H5921\"* same|strong=\"H1931\"* day|strong=\"H3117\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* who|strong=\"H1931\"* is|strong=\"H3068\"* hanged|strong=\"H8518\"* is|strong=\"H3068\"* accursed|strong=\"H7045\"* of|strong=\"H3068\"* God|strong=\"H3068\"*. Don’t defile|strong=\"H2930\"* your|strong=\"H3068\"* land|strong=\"H5159\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"* for|strong=\"H3588\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "You|strong=\"H7725\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* see|strong=\"H7200\"* your|strong=\"H7200\"* brother’s ox|strong=\"H7794\"* or|strong=\"H3808\"* his|strong=\"H7725\"* sheep|strong=\"H7716\"* go|strong=\"H7725\"* astray|strong=\"H5080\"* and|strong=\"H7725\"* hide|strong=\"H5956\"* yourself from|strong=\"H7725\"* them|strong=\"H1992\"*. You|strong=\"H7725\"* shall|strong=\"H3808\"* surely|strong=\"H7725\"* bring|strong=\"H7725\"* them|strong=\"H1992\"* again|strong=\"H7725\"* to|strong=\"H7725\"* your|strong=\"H7200\"* brother." + }, + { + "verseNum": 2, + "text": "If|strong=\"H1961\"* your|strong=\"H3045\"* brother isn’t near|strong=\"H7138\"* to|strong=\"H5704\"* you|strong=\"H5704\"*, or|strong=\"H3808\"* if|strong=\"H1961\"* you|strong=\"H5704\"* don’t know|strong=\"H3045\"* him|strong=\"H7725\"*, then|strong=\"H1961\"* you|strong=\"H5704\"* shall|strong=\"H1004\"* bring|strong=\"H7725\"* it|strong=\"H8432\"* home|strong=\"H1004\"* to|strong=\"H5704\"* your|strong=\"H3045\"* house|strong=\"H1004\"*, and|strong=\"H7725\"* it|strong=\"H8432\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H5704\"* until|strong=\"H5704\"* your|strong=\"H3045\"* brother comes|strong=\"H1961\"* looking|strong=\"H1961\"* for|strong=\"H5704\"* it|strong=\"H8432\"*, and|strong=\"H7725\"* you|strong=\"H5704\"* shall|strong=\"H1004\"* restore|strong=\"H7725\"* it|strong=\"H8432\"* to|strong=\"H5704\"* him|strong=\"H7725\"*." + }, + { + "verseNum": 3, + "text": "So|strong=\"H3651\"* you|strong=\"H3605\"* shall|strong=\"H3808\"* do|strong=\"H6213\"* with|strong=\"H6213\"* his|strong=\"H3605\"* donkey|strong=\"H2543\"*. So|strong=\"H3651\"* you|strong=\"H3605\"* shall|strong=\"H3808\"* do|strong=\"H6213\"* with|strong=\"H6213\"* his|strong=\"H3605\"* garment|strong=\"H8071\"*. So|strong=\"H3651\"* you|strong=\"H3605\"* shall|strong=\"H3808\"* do|strong=\"H6213\"* with|strong=\"H6213\"* every|strong=\"H3605\"* lost thing|strong=\"H3605\"* of|strong=\"H4480\"* your|strong=\"H3605\"* brother’s, which|strong=\"H3605\"* he|strong=\"H3651\"* has|strong=\"H3605\"* lost and|strong=\"H6213\"* you|strong=\"H3605\"* have|strong=\"H4672\"* found|strong=\"H4672\"*. You|strong=\"H3605\"* may|strong=\"H3201\"* not|strong=\"H3808\"* hide|strong=\"H5956\"* yourself|strong=\"H6213\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H5973\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* see|strong=\"H7200\"* your|strong=\"H7200\"* brother’s donkey|strong=\"H2543\"* or|strong=\"H3808\"* his|strong=\"H7200\"* ox|strong=\"H7794\"* fallen|strong=\"H5307\"* down|strong=\"H5307\"* by|strong=\"H1870\"* the|strong=\"H7200\"* way|strong=\"H1870\"*, and|strong=\"H6965\"* hide|strong=\"H5956\"* yourself|strong=\"H5307\"* from|strong=\"H6965\"* them|strong=\"H1992\"*. You|strong=\"H5973\"* shall|strong=\"H3808\"* surely|strong=\"H6965\"* help|strong=\"H6965\"* him|strong=\"H7200\"* to|strong=\"H1870\"* lift|strong=\"H6965\"* them|strong=\"H1992\"* up|strong=\"H6965\"* again|strong=\"H6965\"*." + }, + { + "verseNum": 5, + "text": "A|strong=\"H3068\"* woman shall|strong=\"H3068\"* not|strong=\"H3808\"* wear|strong=\"H3847\"* men|strong=\"H1397\"*’s clothing|strong=\"H8071\"*, neither|strong=\"H3808\"* shall|strong=\"H3068\"* a|strong=\"H3068\"* man|strong=\"H1397\"* put|strong=\"H3847\"* on|strong=\"H5921\"* women’s clothing|strong=\"H8071\"*; for|strong=\"H3588\"* whoever|strong=\"H3605\"* does|strong=\"H6213\"* these|strong=\"H6213\"* things|strong=\"H3605\"* is|strong=\"H3068\"* an|strong=\"H6213\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* come|strong=\"H7122\"* across|strong=\"H5921\"* a|strong=\"H3068\"* bird|strong=\"H6833\"*’s nest|strong=\"H7064\"* on|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"*, in|strong=\"H5921\"* any|strong=\"H3605\"* tree|strong=\"H6086\"* or|strong=\"H3808\"* on|strong=\"H5921\"* the|strong=\"H3605\"* ground|strong=\"H6440\"*, with|strong=\"H5921\"* young|strong=\"H1121\"* ones|strong=\"H1121\"* or|strong=\"H3808\"* eggs|strong=\"H1000\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* hen sitting|strong=\"H7257\"* on|strong=\"H5921\"* the|strong=\"H3605\"* young|strong=\"H1121\"*, or|strong=\"H3808\"* on|strong=\"H5921\"* the|strong=\"H3605\"* eggs|strong=\"H1000\"*, you|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* take|strong=\"H3947\"* the|strong=\"H3605\"* hen with|strong=\"H5921\"* the|strong=\"H3605\"* young|strong=\"H1121\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H7971\"* shall|strong=\"H1121\"* surely|strong=\"H3190\"* let|strong=\"H7971\"* the|strong=\"H3947\"* hen go|strong=\"H7971\"*, but|strong=\"H3947\"* the|strong=\"H3947\"* young|strong=\"H1121\"* you|strong=\"H7971\"* may|strong=\"H1121\"* take|strong=\"H3947\"* for|strong=\"H7971\"* yourself, that|strong=\"H3117\"* it|strong=\"H7971\"* may|strong=\"H1121\"* be|strong=\"H1121\"* well|strong=\"H3190\"* with|strong=\"H3117\"* you|strong=\"H7971\"*, and|strong=\"H1121\"* that|strong=\"H3117\"* you|strong=\"H7971\"* may|strong=\"H1121\"* prolong your|strong=\"H3947\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* build|strong=\"H1129\"* a|strong=\"H3068\"* new|strong=\"H2319\"* house|strong=\"H1004\"*, then|strong=\"H5307\"* you|strong=\"H3588\"* shall|strong=\"H1004\"* make|strong=\"H6213\"* a|strong=\"H3068\"* railing around your|strong=\"H7760\"* roof|strong=\"H1406\"*, so|strong=\"H6213\"* that|strong=\"H3588\"* you|strong=\"H3588\"* don’t bring|strong=\"H6213\"* blood|strong=\"H1818\"* on|strong=\"H5307\"* your|strong=\"H7760\"* house|strong=\"H1004\"* if|strong=\"H3588\"* anyone|strong=\"H5307\"* falls|strong=\"H5307\"* from|strong=\"H4480\"* there|strong=\"H4480\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3808\"* shall|strong=\"H2233\"* not|strong=\"H3808\"* sow|strong=\"H2232\"* your|strong=\"H3808\"* vineyard|strong=\"H3754\"* with|strong=\"H2233\"* two|strong=\"H3610\"* kinds|strong=\"H3610\"* of|strong=\"H2233\"* seed|strong=\"H2233\"*, lest|strong=\"H6435\"* all|strong=\"H4395\"* the|strong=\"H6942\"* fruit|strong=\"H8393\"* be|strong=\"H3808\"* defiled|strong=\"H6942\"*, the|strong=\"H6942\"* seed|strong=\"H2233\"* which you|strong=\"H3808\"* have|strong=\"H3808\"* sown|strong=\"H2232\"*, and|strong=\"H3754\"* the|strong=\"H6942\"* increase|strong=\"H8393\"* of|strong=\"H2233\"* the|strong=\"H6942\"* vineyard|strong=\"H3754\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* plow|strong=\"H2790\"* with|strong=\"H7794\"* an ox|strong=\"H7794\"* and|strong=\"H7794\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* wear|strong=\"H3847\"* clothes|strong=\"H3847\"* of|strong=\"H3808\"* wool|strong=\"H6785\"* and|strong=\"H6785\"* linen|strong=\"H6593\"* woven together|strong=\"H3162\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H5921\"* shall|strong=\"H3671\"* make|strong=\"H6213\"* yourselves|strong=\"H5921\"* fringes|strong=\"H1434\"*+ 22:12 or, tassels* on|strong=\"H5921\"* the|strong=\"H5921\"* four corners|strong=\"H3671\"* of|strong=\"H5921\"* your|strong=\"H5921\"* cloak with|strong=\"H6213\"* which you|strong=\"H5921\"* cover|strong=\"H3680\"* yourself|strong=\"H6213\"*." + }, + { + "verseNum": 13, + "text": "If|strong=\"H3588\"* any|strong=\"H3947\"* man takes|strong=\"H3947\"* a|strong=\"H3068\"* wife, and|strong=\"H3947\"* goes in|strong=\"H3947\"* to|strong=\"H3947\"* her|strong=\"H3947\"*, hates|strong=\"H8130\"* her|strong=\"H3947\"*," + }, + { + "verseNum": 14, + "text": "accuses her|strong=\"H3947\"* of|strong=\"H1697\"* shameful|strong=\"H5949\"* things|strong=\"H1697\"*, gives her|strong=\"H3947\"* a|strong=\"H3068\"* bad|strong=\"H7451\"* name|strong=\"H8034\"*, and|strong=\"H1697\"* says|strong=\"H1697\"*, “I|strong=\"H5921\"* took|strong=\"H3947\"* this|strong=\"H2063\"* woman|strong=\"H8034\"*, and|strong=\"H1697\"* when|strong=\"H3318\"* I|strong=\"H5921\"* came|strong=\"H3318\"* near|strong=\"H7126\"* to|strong=\"H3318\"* her|strong=\"H3947\"*, I|strong=\"H5921\"* didn’t find|strong=\"H4672\"* in|strong=\"H5921\"* her|strong=\"H3947\"* the|strong=\"H5921\"* tokens of|strong=\"H1697\"* virginity|strong=\"H1331\"*;”" + }, + { + "verseNum": 15, + "text": "then|strong=\"H3318\"* the|strong=\"H3947\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*’s father and|strong=\"H5892\"* mother shall|strong=\"H5892\"* take|strong=\"H3947\"* and|strong=\"H5892\"* bring|strong=\"H3318\"* the|strong=\"H3947\"* tokens of|strong=\"H5892\"* the|strong=\"H3947\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*’s virginity|strong=\"H1331\"* to|strong=\"H3318\"* the|strong=\"H3947\"* elders|strong=\"H2205\"* of|strong=\"H5892\"* the|strong=\"H3947\"* city|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H3947\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H5414\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*’s father shall|strong=\"H1323\"* tell the|strong=\"H5414\"* elders|strong=\"H2205\"*, “I|strong=\"H5414\"* gave|strong=\"H5414\"* my|strong=\"H5414\"* daughter|strong=\"H1323\"* to|strong=\"H5414\"* this|strong=\"H2088\"* man|strong=\"H2205\"* as|strong=\"H5414\"* his|strong=\"H5414\"* wife, and|strong=\"H2205\"* he|strong=\"H5414\"* hates|strong=\"H8130\"* her|strong=\"H5414\"*." + }, + { + "verseNum": 17, + "text": "Behold|strong=\"H2009\"*, he|strong=\"H1931\"* has|strong=\"H1697\"* accused her|strong=\"H6566\"* of|strong=\"H1323\"* shameful|strong=\"H5949\"* things|strong=\"H1697\"*, saying|strong=\"H1697\"*, ‘I|strong=\"H2009\"* didn’t find|strong=\"H4672\"* in|strong=\"H5892\"* your|strong=\"H7760\"* daughter|strong=\"H1323\"* the|strong=\"H6440\"* tokens of|strong=\"H1323\"* virginity|strong=\"H1331\"*;’ and|strong=\"H5892\"* yet|strong=\"H3808\"* these|strong=\"H1931\"* are|strong=\"H1697\"* the|strong=\"H6440\"* tokens of|strong=\"H1323\"* my|strong=\"H7760\"* daughter|strong=\"H1323\"*’s virginity|strong=\"H1331\"*.” They|strong=\"H3808\"* shall|strong=\"H5892\"* spread|strong=\"H6566\"* the|strong=\"H6440\"* cloth|strong=\"H8071\"* before|strong=\"H6440\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H1323\"* the|strong=\"H6440\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3947\"* elders|strong=\"H2205\"* of|strong=\"H5892\"* that|strong=\"H1931\"* city|strong=\"H5892\"* shall|strong=\"H5892\"* take|strong=\"H3947\"* the|strong=\"H3947\"* man|strong=\"H2205\"* and|strong=\"H5892\"* chastise|strong=\"H3256\"* him|strong=\"H3947\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"H3588\"* shall|strong=\"H3478\"* fine|strong=\"H3701\"* him|strong=\"H5414\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* shekels|strong=\"H3701\"* of|strong=\"H3117\"* silver|strong=\"H3701\"*,+ 22:19 A shekel is about 10 grams or about 0.35 ounces, so 100 shekels is about a kilogram or 2.2 pounds.* and|strong=\"H3967\"* give|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3318\"* the|strong=\"H3605\"* father of|strong=\"H3117\"* the|strong=\"H3605\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H1961\"* given|strong=\"H5414\"* a|strong=\"H3068\"* bad|strong=\"H7451\"* name|strong=\"H8034\"* to|strong=\"H3318\"* a|strong=\"H3068\"* virgin|strong=\"H1330\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*. She|strong=\"H3588\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* his|strong=\"H3605\"* wife. He|strong=\"H3588\"* may|strong=\"H1961\"* not|strong=\"H3808\"* put|strong=\"H5414\"* her|strong=\"H3605\"* away|strong=\"H7971\"* all|strong=\"H3605\"* his|strong=\"H3605\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H3808\"* if|strong=\"H1961\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* is|strong=\"H2088\"* true, that|strong=\"H1697\"* the|strong=\"H1697\"* tokens of|strong=\"H1697\"* virginity|strong=\"H1331\"* were|strong=\"H1961\"* not|strong=\"H3808\"* found|strong=\"H4672\"* in|strong=\"H4672\"* the|strong=\"H1697\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*," + }, + { + "verseNum": 21, + "text": "then|strong=\"H3318\"* they|strong=\"H3588\"* shall|strong=\"H3478\"* bring|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H3588\"* young|strong=\"H5291\"* lady|strong=\"H5291\"* to|strong=\"H3318\"* the|strong=\"H3588\"* door|strong=\"H6607\"* of|strong=\"H1004\"* her|strong=\"H7130\"* father’s house|strong=\"H1004\"*, and|strong=\"H3478\"* the|strong=\"H3588\"* men|strong=\"H7451\"* of|strong=\"H1004\"* her|strong=\"H7130\"* city|strong=\"H5892\"* shall|strong=\"H3478\"* stone|strong=\"H5619\"* her|strong=\"H7130\"* to|strong=\"H3318\"* death|strong=\"H4191\"* with|strong=\"H1004\"* stones|strong=\"H5619\"*, because|strong=\"H3588\"* she|strong=\"H3588\"* has|strong=\"H3478\"* done|strong=\"H6213\"* folly|strong=\"H5039\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, to|strong=\"H3318\"* play|strong=\"H2181\"* the|strong=\"H3588\"* prostitute|strong=\"H2181\"* in|strong=\"H3478\"* her|strong=\"H7130\"* father’s house|strong=\"H1004\"*. So|strong=\"H6213\"* you|strong=\"H3588\"* shall|strong=\"H3478\"* remove|strong=\"H1197\"* the|strong=\"H3588\"* evil|strong=\"H7451\"* from|strong=\"H3318\"* among|strong=\"H7130\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 22, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1167\"* is|strong=\"H1571\"* found|strong=\"H4672\"* lying|strong=\"H7901\"* with|strong=\"H5973\"* a|strong=\"H3068\"* woman married|strong=\"H1166\"* to|strong=\"H3478\"* a|strong=\"H3068\"* husband|strong=\"H1167\"*, then|strong=\"H1571\"* they|strong=\"H3588\"* shall|strong=\"H3478\"* both|strong=\"H8147\"* die|strong=\"H4191\"*, the|strong=\"H3588\"* man|strong=\"H1167\"* who|strong=\"H3478\"* lay|strong=\"H7901\"* with|strong=\"H5973\"* the|strong=\"H3588\"* woman and|strong=\"H3478\"* the|strong=\"H3588\"* woman. So|strong=\"H1571\"* you|strong=\"H3588\"* shall|strong=\"H3478\"* remove|strong=\"H1197\"* the|strong=\"H3588\"* evil|strong=\"H7451\"* from|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 23, + "text": "If|strong=\"H3588\"* there|strong=\"H1961\"* is|strong=\"H5892\"* a|strong=\"H3068\"* young|strong=\"H5291\"* lady|strong=\"H5291\"* who|strong=\"H4672\"* is|strong=\"H5892\"* a|strong=\"H3068\"* virgin|strong=\"H1330\"* pledged to|strong=\"H1961\"* be|strong=\"H1961\"* married to|strong=\"H1961\"* a|strong=\"H3068\"* husband, and|strong=\"H5892\"* a|strong=\"H3068\"* man finds|strong=\"H4672\"* her|strong=\"H4672\"* in|strong=\"H5892\"* the|strong=\"H3588\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* lies|strong=\"H7901\"* with|strong=\"H5973\"* her|strong=\"H4672\"*," + }, + { + "verseNum": 24, + "text": "then|strong=\"H3318\"* you|strong=\"H5921\"* shall|strong=\"H5892\"* bring|strong=\"H3318\"* them|strong=\"H5921\"* both|strong=\"H8147\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H1697\"* that|strong=\"H1931\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* you|strong=\"H5921\"* shall|strong=\"H5892\"* stone|strong=\"H5619\"* them|strong=\"H5921\"* to|strong=\"H3318\"* death|strong=\"H4191\"* with|strong=\"H5921\"* stones|strong=\"H5619\"*; the|strong=\"H5921\"* lady|strong=\"H5291\"*, because|strong=\"H5921\"* she|strong=\"H1931\"* didn’t cry|strong=\"H6817\"*, being in|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"*; and|strong=\"H5892\"* the|strong=\"H5921\"* man|strong=\"H4191\"*, because|strong=\"H5921\"* he|strong=\"H1931\"* has|strong=\"H3318\"* humbled|strong=\"H6031\"* his|strong=\"H5921\"* neighbor|strong=\"H7453\"*’s wife. So|strong=\"H3808\"* you|strong=\"H5921\"* shall|strong=\"H5892\"* remove|strong=\"H1197\"* the|strong=\"H5921\"* evil|strong=\"H7451\"* from|strong=\"H3318\"* among|strong=\"H7130\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"H2388\"* if the|strong=\"H2388\"* man|strong=\"H4191\"* finds|strong=\"H4672\"* the|strong=\"H2388\"* lady|strong=\"H5291\"* who|strong=\"H4672\"* is|strong=\"H7704\"* pledged to|strong=\"H4191\"* be|strong=\"H4191\"* married in|strong=\"H4191\"* the|strong=\"H2388\"* field|strong=\"H7704\"*, and|strong=\"H2388\"* the|strong=\"H2388\"* man|strong=\"H4191\"* forces|strong=\"H2388\"* her|strong=\"H4672\"* and|strong=\"H2388\"* lies|strong=\"H7901\"* with|strong=\"H5973\"* her|strong=\"H4672\"*, then|strong=\"H4191\"* only the|strong=\"H2388\"* man|strong=\"H4191\"* who|strong=\"H4672\"* lay|strong=\"H7901\"* with|strong=\"H5973\"* her|strong=\"H4672\"* shall|strong=\"H7704\"* die|strong=\"H4191\"*;" + }, + { + "verseNum": 26, + "text": "but|strong=\"H3588\"* to|strong=\"H5921\"* the|strong=\"H5921\"* lady|strong=\"H5291\"* you|strong=\"H3588\"* shall|strong=\"H5315\"* do|strong=\"H6213\"* nothing|strong=\"H3808\"*. There|strong=\"H2088\"* is|strong=\"H2088\"* in|strong=\"H5921\"* the|strong=\"H5921\"* lady|strong=\"H5291\"* no|strong=\"H3808\"* sin|strong=\"H2399\"* worthy|strong=\"H2399\"* of|strong=\"H1697\"* death|strong=\"H4194\"*; for|strong=\"H3588\"* as|strong=\"H1697\"* when|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H5315\"* rises|strong=\"H6965\"* against|strong=\"H5921\"* his|strong=\"H5921\"* neighbor|strong=\"H7453\"* and|strong=\"H6965\"* kills|strong=\"H7523\"* him|strong=\"H5921\"*, even|strong=\"H3588\"* so|strong=\"H3651\"* is|strong=\"H2088\"* this|strong=\"H2088\"* matter|strong=\"H1697\"*;" + }, + { + "verseNum": 27, + "text": "for|strong=\"H3588\"* he|strong=\"H3588\"* found|strong=\"H4672\"* her|strong=\"H4672\"* in|strong=\"H4672\"* the|strong=\"H3588\"* field|strong=\"H7704\"*, the|strong=\"H3588\"* pledged to|strong=\"H7704\"* be|strong=\"H7704\"* married lady|strong=\"H5291\"* cried|strong=\"H6817\"*, and|strong=\"H7704\"* there|strong=\"H4672\"* was|strong=\"H5291\"* no|strong=\"H4672\"* one|strong=\"H3588\"* to|strong=\"H7704\"* save|strong=\"H3467\"* her|strong=\"H4672\"*." + }, + { + "verseNum": 28, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* man finds|strong=\"H4672\"* a|strong=\"H3068\"* lady|strong=\"H5291\"* who|strong=\"H4672\"* is|strong=\"H4672\"* a|strong=\"H3068\"* virgin|strong=\"H1330\"*, who|strong=\"H4672\"* is|strong=\"H4672\"* not|strong=\"H3808\"* pledged to|strong=\"H5973\"* be|strong=\"H3808\"* married, grabs her|strong=\"H4672\"* and|strong=\"H7901\"* lies|strong=\"H7901\"* with|strong=\"H5973\"* her|strong=\"H4672\"*, and|strong=\"H7901\"* they|strong=\"H3588\"* are|strong=\"H1330\"* found|strong=\"H4672\"*," + }, + { + "verseNum": 29, + "text": "then|strong=\"H1961\"* the|strong=\"H3605\"* man|strong=\"H3605\"* who|strong=\"H3605\"* lay|strong=\"H7901\"* with|strong=\"H5973\"* her|strong=\"H3605\"* shall|strong=\"H3117\"* give|strong=\"H5414\"* to|strong=\"H3201\"* the|strong=\"H3605\"* lady|strong=\"H5291\"*’s father fifty|strong=\"H2572\"* shekels|strong=\"H3701\"*+ 22:29 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H3117\"* silver|strong=\"H3701\"*. She|strong=\"H5973\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* his|strong=\"H3605\"* wife, because|strong=\"H8478\"* he|strong=\"H3117\"* has|strong=\"H1961\"* humbled|strong=\"H6031\"* her|strong=\"H3605\"*. He|strong=\"H3117\"* may|strong=\"H1961\"* not|strong=\"H3808\"* put|strong=\"H5414\"* her|strong=\"H3605\"* away|strong=\"H7971\"* all|strong=\"H3605\"* his|strong=\"H3605\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 30, + "text": "A|strong=\"H3068\"* man shall not take his father’s wife, and shall not uncover his father’s skirt." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H3808\"* who|strong=\"H3808\"* is|strong=\"H3671\"* emasculated by|strong=\"H3808\"* crushing or|strong=\"H3808\"* cutting shall|strong=\"H3808\"* not|strong=\"H3808\"* enter into|strong=\"H1540\"* Yahweh|strong=\"H3068\"*’s assembly." + }, + { + "verseNum": 2, + "text": "A|strong=\"H3068\"* person born|strong=\"H3808\"* of|strong=\"H3068\"* a|strong=\"H3068\"* forbidden union shall|strong=\"H3068\"* not|strong=\"H3808\"* enter into|strong=\"H6951\"* Yahweh|strong=\"H3068\"*’s assembly|strong=\"H6951\"*; even|strong=\"H3808\"* to|strong=\"H3068\"* the|strong=\"H3068\"* tenth generation shall|strong=\"H3068\"* no|strong=\"H3808\"* one|strong=\"H3808\"* of|strong=\"H3068\"* his|strong=\"H3068\"* enter into|strong=\"H6951\"* Yahweh|strong=\"H3068\"*’s assembly|strong=\"H6951\"*." + }, + { + "verseNum": 3, + "text": "An|strong=\"H3068\"* Ammonite or|strong=\"H3808\"* a|strong=\"H3068\"* Moabite shall|strong=\"H3068\"* not|strong=\"H3808\"* enter into|strong=\"H6951\"* Yahweh|strong=\"H3068\"*’s assembly|strong=\"H6951\"*; even|strong=\"H1571\"* to|strong=\"H3068\"* the|strong=\"H3068\"* tenth|strong=\"H6224\"* generation|strong=\"H1755\"* shall|strong=\"H3068\"* no|strong=\"H3808\"* one|strong=\"H3808\"* belonging to|strong=\"H3068\"* them|strong=\"H3068\"* enter into|strong=\"H6951\"* Yahweh|strong=\"H3068\"*’s assembly|strong=\"H6951\"* forever|strong=\"H1755\"*," + }, + { + "verseNum": 4, + "text": "because|strong=\"H3068\"* they|strong=\"H1992\"* didn’t meet you|strong=\"H5704\"* with|strong=\"H3068\"* bread and|strong=\"H3068\"* with|strong=\"H3068\"* water on|strong=\"H3068\"* the|strong=\"H3068\"* way|strong=\"H5704\"* when|strong=\"H5704\"* you|strong=\"H5704\"* came|strong=\"H3068\"* out|strong=\"H5704\"* of|strong=\"H3068\"* Egypt, and|strong=\"H3068\"* because|strong=\"H3068\"* they|strong=\"H1992\"* hired against|strong=\"H3068\"* you|strong=\"H5704\"* Balaam the|strong=\"H3068\"* son of|strong=\"H3068\"* Beor from|strong=\"H5704\"* Pethor of|strong=\"H3068\"* Mesopotamia, to|strong=\"H5704\"* curse you|strong=\"H5704\"*." + }, + { + "verseNum": 5, + "text": "Nevertheless Yahweh|strong=\"H3068\"* your|strong=\"H5921\"* God|strong=\"H3808\"* wouldn’t listen to|strong=\"H3318\"* Balaam|strong=\"H1109\"*, but|strong=\"H3808\"* Yahweh|strong=\"H3068\"* your|strong=\"H5921\"* God|strong=\"H3808\"* turned the|strong=\"H5921\"* curse|strong=\"H7043\"* into|strong=\"H5921\"* a|strong=\"H3068\"* blessing to|strong=\"H3318\"* you|strong=\"H5921\"*, because|strong=\"H5921\"* Yahweh|strong=\"H3068\"* your|strong=\"H5921\"* God|strong=\"H3808\"* loved you|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* seek|strong=\"H3808\"* their|strong=\"H3068\"* peace|strong=\"H1293\"* nor|strong=\"H3808\"* their|strong=\"H3068\"* prosperity all|strong=\"H3068\"* your|strong=\"H3068\"* days forever." + }, + { + "verseNum": 7, + "text": "You|strong=\"H3605\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* abhor an Edomite, for|strong=\"H3117\"* he|strong=\"H3117\"* is|strong=\"H3117\"* your|strong=\"H3605\"* brother. You|strong=\"H3605\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* abhor an Egyptian, because|strong=\"H3117\"* you|strong=\"H3605\"* lived as|strong=\"H3117\"* a|strong=\"H3068\"* foreigner in|strong=\"H3117\"* his|strong=\"H3605\"* land." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3588\"* children of|strong=\"H3808\"* the|strong=\"H3588\"* third generation who|strong=\"H1931\"* are|strong=\"H1961\"* born|strong=\"H3808\"* to|strong=\"H1961\"* them|strong=\"H1961\"* may|strong=\"H1961\"* enter into|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s assembly." + }, + { + "verseNum": 9, + "text": "When|strong=\"H3068\"* you|strong=\"H3205\"* go|strong=\"H3068\"* out and|strong=\"H1121\"* camp against|strong=\"H3068\"* your|strong=\"H3068\"* enemies, then|strong=\"H3068\"* you|strong=\"H3205\"* shall|strong=\"H3068\"* keep yourselves|strong=\"H3068\"* from|strong=\"H1121\"* every|strong=\"H1755\"* evil thing." + }, + { + "verseNum": 10, + "text": "If|strong=\"H3588\"* there|strong=\"H3605\"* is|strong=\"H1697\"* among|strong=\"H5921\"* you|strong=\"H3588\"* any|strong=\"H3605\"* man|strong=\"H7451\"* who|strong=\"H3605\"* is|strong=\"H1697\"* not|strong=\"H3588\"* clean by|strong=\"H5921\"* reason|strong=\"H1697\"* of|strong=\"H1697\"* that|strong=\"H3588\"* which|strong=\"H1697\"* happens to|strong=\"H3318\"* him|strong=\"H5921\"* by|strong=\"H5921\"* night, then|strong=\"H3318\"* shall|strong=\"H7451\"* he|strong=\"H3588\"* go|strong=\"H3318\"* outside|strong=\"H3318\"* of|strong=\"H1697\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*. He|strong=\"H3588\"* shall|strong=\"H7451\"* not|strong=\"H3588\"* come|strong=\"H3318\"* within|strong=\"H5921\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*;" + }, + { + "verseNum": 11, + "text": "but|strong=\"H3588\"* it|strong=\"H3588\"* shall|strong=\"H3808\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* evening|strong=\"H3915\"* comes|strong=\"H3318\"*, he|strong=\"H3588\"* shall|strong=\"H3808\"* bathe himself|strong=\"H3808\"* in|strong=\"H8432\"* water. When|strong=\"H3588\"* the|strong=\"H3588\"* sun is|strong=\"H1961\"* down|strong=\"H3588\"*, he|strong=\"H3588\"* shall|strong=\"H3808\"* come|strong=\"H1961\"* within|strong=\"H8432\"* the|strong=\"H3588\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H8432\"* shall|strong=\"H4325\"* have|strong=\"H1961\"* a|strong=\"H3068\"* place|strong=\"H1961\"* also|strong=\"H8121\"* outside of|strong=\"H4325\"* the|strong=\"H8432\"* camp|strong=\"H4264\"* where you|strong=\"H8432\"* go|strong=\"H1961\"* relieve yourself." + }, + { + "verseNum": 13, + "text": "You|strong=\"H3027\"* shall|strong=\"H3027\"* have|strong=\"H1961\"* a|strong=\"H3068\"* trowel among|strong=\"H8033\"* your|strong=\"H1961\"* weapons. It|strong=\"H8033\"* shall|strong=\"H3027\"* be|strong=\"H1961\"*, when|strong=\"H1961\"* you|strong=\"H3027\"* relieve yourself|strong=\"H8033\"*, you|strong=\"H3027\"* shall|strong=\"H3027\"* dig with|strong=\"H3318\"* it|strong=\"H8033\"*, and|strong=\"H3027\"* shall|strong=\"H3027\"* turn|strong=\"H1961\"* back|strong=\"H3318\"* and|strong=\"H3027\"* cover your|strong=\"H1961\"* excrement;" + }, + { + "verseNum": 14, + "text": "for|strong=\"H5921\"* Yahweh|strong=\"H3068\"* your|strong=\"H5921\"* God walks in|strong=\"H3427\"* the|strong=\"H5921\"* middle of|strong=\"H3427\"* your|strong=\"H5921\"* camp, to|strong=\"H7725\"* deliver|strong=\"H7725\"* you|strong=\"H5921\"*, and|strong=\"H7725\"* to|strong=\"H7725\"* give|strong=\"H7725\"* up|strong=\"H5921\"* your|strong=\"H5921\"* enemies before|strong=\"H5921\"* you|strong=\"H5921\"*. Therefore|strong=\"H5921\"* your|strong=\"H5921\"* camp shall|strong=\"H3427\"* be|strong=\"H1961\"* holy, that|strong=\"H1961\"* he|strong=\"H5921\"* may|strong=\"H1961\"* not|strong=\"H1961\"* see an|strong=\"H1961\"* unclean thing in|strong=\"H3427\"* you|strong=\"H5921\"*, and|strong=\"H7725\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* deliver|strong=\"H5337\"* to|strong=\"H1980\"* his|strong=\"H5414\"* master|strong=\"H5414\"* a|strong=\"H3068\"* servant who|strong=\"H3068\"* has|strong=\"H3068\"* escaped|strong=\"H5337\"* from|strong=\"H7725\"* his|strong=\"H5414\"* master|strong=\"H5414\"* to|strong=\"H1980\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H3808\"* shall|strong=\"H5650\"* dwell with|strong=\"H5973\"* you|strong=\"H5973\"*, among|strong=\"H5973\"* you|strong=\"H5973\"*, in|strong=\"H5650\"* the|strong=\"H5973\"* place which he|strong=\"H3808\"* shall|strong=\"H5650\"* choose within|strong=\"H5973\"* one|strong=\"H3808\"* of|strong=\"H5650\"* your|strong=\"H3808\"* gates, where|strong=\"H3808\"* it|strong=\"H3808\"* pleases him|strong=\"H5973\"* best. You|strong=\"H5973\"* shall|strong=\"H5650\"* not|strong=\"H3808\"* oppress him|strong=\"H5973\"*." + }, + { + "verseNum": 17, + "text": "There|strong=\"H3427\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* no|strong=\"H3808\"* prostitute of|strong=\"H3427\"* the|strong=\"H5973\"* daughters of|strong=\"H3427\"* Israel, neither|strong=\"H3808\"* shall|strong=\"H3808\"* there|strong=\"H3427\"* be|strong=\"H3808\"* a|strong=\"H3068\"* sodomite of|strong=\"H3427\"* the|strong=\"H5973\"* sons of|strong=\"H3427\"* Israel." + }, + { + "verseNum": 18, + "text": "You|strong=\"H3808\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* bring|strong=\"H1323\"* the|strong=\"H1961\"* hire of|strong=\"H1121\"* a|strong=\"H3068\"* prostitute|strong=\"H6945\"*, or|strong=\"H3808\"* the|strong=\"H1961\"* wages of|strong=\"H1121\"* a|strong=\"H3068\"* male|strong=\"H6945\"* prostitute|strong=\"H6945\"*,+ 23:18 literally, dog* into|strong=\"H1323\"* the|strong=\"H1961\"* house of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* your|strong=\"H1961\"* God|strong=\"H3808\"* for|strong=\"H1121\"* any|strong=\"H1961\"* vow; for|strong=\"H1121\"* both of|strong=\"H1121\"* these are|strong=\"H1121\"* an|strong=\"H1961\"* abomination to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* your|strong=\"H1961\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* lend on|strong=\"H3068\"* interest to|strong=\"H3068\"* your|strong=\"H3068\"* brother: interest of|strong=\"H1004\"* money, interest of|strong=\"H1004\"* food|strong=\"H1004\"*, interest of|strong=\"H1004\"* anything|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H3068\"* lent on|strong=\"H3068\"* interest." + }, + { + "verseNum": 20, + "text": "You|strong=\"H3605\"* may|strong=\"H3808\"* charge|strong=\"H5391\"* a|strong=\"H3068\"* foreigner interest|strong=\"H5392\"*; but|strong=\"H3808\"* you|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* charge|strong=\"H5391\"* your|strong=\"H3605\"* brother interest|strong=\"H5392\"*, that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* your|strong=\"H3605\"* God|strong=\"H3808\"* may|strong=\"H3808\"* bless you|strong=\"H3605\"* in|strong=\"H1697\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* put your|strong=\"H3605\"* hand to|strong=\"H1697\"*, in|strong=\"H1697\"* the|strong=\"H3605\"* land where|strong=\"H3808\"* you|strong=\"H3605\"* go in|strong=\"H1697\"* to|strong=\"H1697\"* possess it|strong=\"H3808\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H3068\"* you|strong=\"H3605\"* vow|strong=\"H3027\"* a|strong=\"H3068\"* vow|strong=\"H3027\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, you|strong=\"H3605\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* slack to|strong=\"H3068\"* pay it|strong=\"H5921\"*, for|strong=\"H5921\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* surely|strong=\"H3808\"* require it|strong=\"H5921\"* of|strong=\"H3068\"* you|strong=\"H3605\"*; and|strong=\"H3068\"* it|strong=\"H5921\"* would|strong=\"H3068\"* be|strong=\"H3808\"* sin in|strong=\"H5921\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* refrain|strong=\"H3808\"* from|strong=\"H3068\"* making|strong=\"H1875\"* a|strong=\"H3068\"* vow|strong=\"H5088\"*, it|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* no|strong=\"H3808\"* sin|strong=\"H2399\"* in|strong=\"H3068\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 23, + "text": "You|strong=\"H3588\"* shall|strong=\"H3808\"* observe and|strong=\"H1961\"* do that|strong=\"H3588\"* which|strong=\"H3588\"* has|strong=\"H1961\"* gone|strong=\"H1961\"* out|strong=\"H2308\"* of|strong=\"H3808\"* your|strong=\"H3588\"* lips. Whatever you|strong=\"H3588\"* have|strong=\"H1961\"* vowed|strong=\"H5087\"* to|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3588\"* God|strong=\"H3808\"* as|strong=\"H1961\"* a|strong=\"H3068\"* free will|strong=\"H1961\"* offering, which|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* promised|strong=\"H5087\"* with|strong=\"H1961\"* your|strong=\"H3588\"* mouth, you|strong=\"H3588\"* must|strong=\"H3808\"* do." + }, + { + "verseNum": 24, + "text": "When|strong=\"H1696\"* you|strong=\"H6213\"* come into|strong=\"H6213\"* your|strong=\"H3068\"* neighbor’s vineyard, then|strong=\"H1696\"* you|strong=\"H6213\"* may|strong=\"H3068\"* eat|strong=\"H6310\"* your|strong=\"H3068\"* fill of|strong=\"H3068\"* grapes at|strong=\"H3068\"* your|strong=\"H3068\"* own pleasure; but|strong=\"H1696\"* you|strong=\"H6213\"* shall|strong=\"H3068\"* not|strong=\"H6213\"* put|strong=\"H6213\"* any|strong=\"H6213\"* in|strong=\"H3068\"* your|strong=\"H3068\"* container." + }, + { + "verseNum": 25, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* come into|strong=\"H5414\"* your|strong=\"H5414\"* neighbor|strong=\"H7453\"*’s standing|strong=\"H7453\"* grain, then|strong=\"H5414\"* you|strong=\"H3588\"* may|strong=\"H5315\"* pluck the|strong=\"H3588\"* ears with|strong=\"H3627\"* your|strong=\"H5414\"* hand|strong=\"H5414\"*; but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* use a|strong=\"H3068\"* sickle on|strong=\"H3627\"* your|strong=\"H5414\"* neighbor|strong=\"H7453\"*’s standing|strong=\"H7453\"* grain." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* a|strong=\"H3068\"* man takes|strong=\"H3947\"* a|strong=\"H3068\"* wife|strong=\"H1166\"* and|strong=\"H7971\"* marries|strong=\"H1166\"* her|strong=\"H5414\"*, then|strong=\"H1961\"* it|strong=\"H5414\"* shall|strong=\"H1004\"* be|strong=\"H1961\"*, if|strong=\"H3588\"* she|strong=\"H3588\"* finds|strong=\"H4672\"* no|strong=\"H3808\"* favor|strong=\"H2580\"* in|strong=\"H1004\"* his|strong=\"H5414\"* eyes|strong=\"H5869\"* because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H1961\"* found|strong=\"H4672\"* some|strong=\"H1697\"* unseemly thing|strong=\"H1697\"* in|strong=\"H1004\"* her|strong=\"H5414\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* shall|strong=\"H1004\"* write|strong=\"H3789\"* her|strong=\"H5414\"* a|strong=\"H3068\"* certificate|strong=\"H5612\"* of|strong=\"H1004\"* divorce|strong=\"H7971\"*, put|strong=\"H5414\"* it|strong=\"H5414\"* in|strong=\"H1004\"* her|strong=\"H5414\"* hand|strong=\"H3027\"*, and|strong=\"H7971\"* send|strong=\"H7971\"* her|strong=\"H5414\"* out|strong=\"H7971\"* of|strong=\"H1004\"* his|strong=\"H5414\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H1961\"* she|strong=\"H1980\"* has|strong=\"H1961\"* departed|strong=\"H1980\"* out|strong=\"H3318\"* of|strong=\"H1004\"* his|strong=\"H1961\"* house|strong=\"H1004\"*, she|strong=\"H1980\"* may|strong=\"H1961\"* go|strong=\"H1980\"* and|strong=\"H1980\"* be|strong=\"H1961\"* another man’s wife." + }, + { + "verseNum": 3, + "text": "If|strong=\"H3588\"* the|strong=\"H3588\"* latter husband hates|strong=\"H8130\"* her|strong=\"H5414\"*, and|strong=\"H7971\"* writes|strong=\"H3789\"* her|strong=\"H5414\"* a|strong=\"H3068\"* certificate|strong=\"H5612\"* of|strong=\"H1004\"* divorce|strong=\"H7971\"*, puts|strong=\"H5414\"* it|strong=\"H5414\"* in|strong=\"H1004\"* her|strong=\"H5414\"* hand|strong=\"H3027\"*, and|strong=\"H7971\"* sends|strong=\"H7971\"* her|strong=\"H5414\"* out|strong=\"H7971\"* of|strong=\"H1004\"* his|strong=\"H5414\"* house|strong=\"H1004\"*; or|strong=\"H1004\"* if|strong=\"H3588\"* the|strong=\"H3588\"* latter husband dies|strong=\"H4191\"*, who|strong=\"H3588\"* took|strong=\"H3947\"* her|strong=\"H5414\"* to|strong=\"H4191\"* be|strong=\"H4191\"* his|strong=\"H5414\"* wife;" + }, + { + "verseNum": 4, + "text": "her|strong=\"H5414\"* former|strong=\"H7223\"* husband|strong=\"H1167\"*, who|strong=\"H1931\"* sent|strong=\"H7971\"* her|strong=\"H5414\"* away|strong=\"H7971\"*, may|strong=\"H1961\"* not|strong=\"H3808\"* take|strong=\"H3947\"* her|strong=\"H5414\"* again|strong=\"H7725\"* to|strong=\"H7725\"* be|strong=\"H1961\"* his|strong=\"H5414\"* wife after|strong=\"H1961\"* she|strong=\"H1931\"* is|strong=\"H3068\"* defiled|strong=\"H2930\"*; for|strong=\"H3588\"* that|strong=\"H3588\"* would|strong=\"H3068\"* be|strong=\"H1961\"* an|strong=\"H1961\"* abomination|strong=\"H8441\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* cause|strong=\"H5414\"* the|strong=\"H6440\"* land|strong=\"H5159\"* to|strong=\"H7725\"* sin|strong=\"H2398\"*, which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"* for|strong=\"H3588\"* an|strong=\"H1961\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H3605\"* takes|strong=\"H3947\"* a|strong=\"H3068\"* new|strong=\"H2319\"* wife, he|strong=\"H3588\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"* in|strong=\"H8141\"* the|strong=\"H3605\"* army|strong=\"H6635\"*, neither|strong=\"H3808\"* shall|strong=\"H1004\"* he|strong=\"H3588\"* be|strong=\"H1961\"* assigned|strong=\"H1961\"* any|strong=\"H3605\"* business|strong=\"H1697\"*. He|strong=\"H3588\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* free|strong=\"H5355\"* at|strong=\"H5921\"* home|strong=\"H1004\"* one|strong=\"H3605\"* year|strong=\"H8141\"*, and|strong=\"H1004\"* shall|strong=\"H1004\"* cheer his|strong=\"H3605\"* wife whom|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H1961\"* taken|strong=\"H3947\"*." + }, + { + "verseNum": 6, + "text": "No|strong=\"H3808\"* man|strong=\"H5315\"* shall|strong=\"H5315\"* take|strong=\"H2254\"* the|strong=\"H3588\"* mill|strong=\"H7347\"* or|strong=\"H3808\"* the|strong=\"H3588\"* upper|strong=\"H7393\"* millstone|strong=\"H7393\"* as|strong=\"H5315\"* a|strong=\"H3068\"* pledge|strong=\"H2254\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* takes a|strong=\"H3068\"* life|strong=\"H5315\"* in|strong=\"H5315\"* pledge|strong=\"H2254\"*." + }, + { + "verseNum": 7, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1121\"* is|strong=\"H1931\"* found|strong=\"H4672\"* stealing|strong=\"H1589\"* any|strong=\"H5315\"* of|strong=\"H1121\"* his|strong=\"H3478\"* brothers|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* deals|strong=\"H6014\"* with|strong=\"H1197\"* him|strong=\"H4672\"* as|strong=\"H5315\"* a|strong=\"H3068\"* slave|strong=\"H5315\"*, or|strong=\"H1121\"* sells|strong=\"H4376\"* him|strong=\"H4672\"*, then|strong=\"H3588\"* that|strong=\"H3588\"* thief|strong=\"H1590\"* shall|strong=\"H1121\"* die|strong=\"H4191\"*. So|strong=\"H4191\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* remove|strong=\"H1197\"* the|strong=\"H3588\"* evil|strong=\"H7451\"* from|strong=\"H3478\"* among|strong=\"H7130\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 8, + "text": "Be|strong=\"H5061\"* careful|strong=\"H8104\"* in|strong=\"H6213\"* the|strong=\"H3605\"* plague|strong=\"H5061\"* of|strong=\"H3605\"* leprosy|strong=\"H6883\"*, that|strong=\"H3605\"* you|strong=\"H6680\"* observe|strong=\"H8104\"* diligently|strong=\"H3966\"* and|strong=\"H3548\"* do|strong=\"H6213\"* according to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* the|strong=\"H3605\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"* teach|strong=\"H3384\"* you|strong=\"H6680\"*. As|strong=\"H6213\"* I|strong=\"H6680\"* commanded|strong=\"H6680\"* them|strong=\"H6213\"*, so|strong=\"H6213\"* you|strong=\"H6680\"* shall|strong=\"H3548\"* observe|strong=\"H8104\"* to|strong=\"H6213\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 9, + "text": "Remember|strong=\"H2142\"* what|strong=\"H6213\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* did|strong=\"H6213\"* to|strong=\"H3318\"* Miriam|strong=\"H4813\"*, by|strong=\"H3068\"* the|strong=\"H6213\"* way|strong=\"H1870\"* as|strong=\"H6213\"* you|strong=\"H6213\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* lend|strong=\"H5670\"* your|strong=\"H3588\"* neighbor|strong=\"H7453\"* any|strong=\"H3972\"* kind|strong=\"H7453\"* of|strong=\"H1004\"* loan|strong=\"H4859\"*, you|strong=\"H3588\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* go into his|strong=\"H3588\"* house|strong=\"H1004\"* to|strong=\"H1004\"* get his|strong=\"H3588\"* pledge|strong=\"H5667\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H3318\"* shall|strong=\"H5383\"* stand|strong=\"H5975\"* outside|strong=\"H2351\"*, and|strong=\"H5975\"* the|strong=\"H3318\"* man to|strong=\"H3318\"* whom you|strong=\"H3318\"* lend|strong=\"H5383\"* shall|strong=\"H5383\"* bring|strong=\"H3318\"* the|strong=\"H3318\"* pledge|strong=\"H5667\"* outside|strong=\"H2351\"* to|strong=\"H3318\"* you|strong=\"H3318\"*." + }, + { + "verseNum": 12, + "text": "If|strong=\"H1931\"* he|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* poor|strong=\"H6041\"* man|strong=\"H6041\"*, you|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* sleep|strong=\"H7901\"* with|strong=\"H7901\"* his|strong=\"H3808\"* pledge|strong=\"H5667\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* surely|strong=\"H7725\"* restore|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H6440\"* the|strong=\"H6440\"* pledge|strong=\"H5667\"* when|strong=\"H1961\"* the|strong=\"H6440\"* sun|strong=\"H8121\"* goes|strong=\"H6440\"* down|strong=\"H7901\"*, that|strong=\"H3068\"* he|strong=\"H3068\"* may|strong=\"H1961\"* sleep|strong=\"H7901\"* in|strong=\"H3068\"* his|strong=\"H3068\"* garment|strong=\"H8008\"* and|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H6440\"*. It|strong=\"H7725\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* righteousness|strong=\"H6666\"* to|strong=\"H7725\"* you|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* oppress|strong=\"H6231\"* a|strong=\"H3068\"* hired|strong=\"H7916\"* servant|strong=\"H7916\"* who|strong=\"H1616\"* is|strong=\"H8179\"* poor|strong=\"H6041\"* and|strong=\"H6041\"* needy|strong=\"H6041\"*, whether he|strong=\"H3808\"* is|strong=\"H8179\"* one|strong=\"H3808\"* of|strong=\"H8179\"* your|strong=\"H3808\"* brothers or|strong=\"H3808\"* one|strong=\"H3808\"* of|strong=\"H8179\"* the|strong=\"H3808\"* foreigners|strong=\"H1616\"* who|strong=\"H1616\"* are|strong=\"H8179\"* in|strong=\"H3808\"* your|strong=\"H3808\"* land within your|strong=\"H3808\"* gates|strong=\"H8179\"*." + }, + { + "verseNum": 15, + "text": "In|strong=\"H5921\"* his|strong=\"H5375\"* day|strong=\"H3117\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* give|strong=\"H5414\"* him|strong=\"H5414\"* his|strong=\"H5375\"* wages|strong=\"H7939\"*, neither|strong=\"H3808\"* shall|strong=\"H3068\"* the|strong=\"H5921\"* sun|strong=\"H8121\"* go|strong=\"H1961\"* down|strong=\"H5414\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H3068\"* poor|strong=\"H6041\"* and|strong=\"H3068\"* sets|strong=\"H5375\"* his|strong=\"H5375\"* heart|strong=\"H5315\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, lest he|strong=\"H1931\"* cry|strong=\"H7121\"* against|strong=\"H5921\"* you|strong=\"H3588\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* it|strong=\"H5414\"* be|strong=\"H1961\"* sin|strong=\"H2399\"* to|strong=\"H3068\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H5921\"* fathers shall|strong=\"H1121\"* not|strong=\"H3808\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"* for|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"*, neither|strong=\"H3808\"* shall|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"* for|strong=\"H5921\"* the|strong=\"H5921\"* fathers. Every|strong=\"H1121\"* man|strong=\"H1121\"* shall|strong=\"H1121\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"* for|strong=\"H5921\"* his|strong=\"H5921\"* own sin|strong=\"H2399\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* deprive|strong=\"H5186\"* the|strong=\"H5186\"* foreigner|strong=\"H1616\"* or|strong=\"H3808\"* the|strong=\"H5186\"* fatherless|strong=\"H3490\"* of|strong=\"H4941\"* justice|strong=\"H4941\"*, nor|strong=\"H3808\"* take|strong=\"H2254\"* a|strong=\"H3068\"* widow’s clothing in|strong=\"H3808\"* pledge|strong=\"H2254\"*;" + }, + { + "verseNum": 18, + "text": "but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* remember|strong=\"H2142\"* that|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H1961\"* a|strong=\"H3068\"* slave|strong=\"H5650\"* in|strong=\"H5921\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* redeemed|strong=\"H6299\"* you|strong=\"H3588\"* there|strong=\"H8033\"*. Therefore|strong=\"H3651\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"* to|strong=\"H3068\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* reap|strong=\"H7114\"* your|strong=\"H3068\"* harvest|strong=\"H7105\"* in|strong=\"H3068\"* your|strong=\"H3068\"* field|strong=\"H7704\"*, and|strong=\"H3068\"* have|strong=\"H1961\"* forgotten|strong=\"H7911\"* a|strong=\"H3068\"* sheaf|strong=\"H6016\"* in|strong=\"H3068\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* get|strong=\"H3947\"* it|strong=\"H3588\"*. It|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* for|strong=\"H3588\"* the|strong=\"H3605\"* foreigner|strong=\"H1616\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* fatherless|strong=\"H3490\"*, and|strong=\"H3068\"* for|strong=\"H3588\"* the|strong=\"H3605\"* widow, that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* may|strong=\"H1961\"* bless|strong=\"H1288\"* you|strong=\"H3588\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* beat|strong=\"H2251\"* your|strong=\"H3588\"* olive|strong=\"H2132\"* tree|strong=\"H2132\"*, you|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* go|strong=\"H1961\"* over the|strong=\"H3588\"* boughs|strong=\"H6286\"* again|strong=\"H1961\"*. It|strong=\"H3588\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* for|strong=\"H3588\"* the|strong=\"H3588\"* foreigner|strong=\"H1616\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* fatherless|strong=\"H3490\"*, and|strong=\"H1961\"* for|strong=\"H3588\"* the|strong=\"H3588\"* widow." + }, + { + "verseNum": 21, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* harvest your|strong=\"H3588\"* vineyard|strong=\"H3754\"*, you|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* glean|strong=\"H5953\"* it|strong=\"H3588\"* after|strong=\"H1961\"* yourselves. It|strong=\"H3588\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* for|strong=\"H3588\"* the|strong=\"H3588\"* foreigner|strong=\"H1616\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* fatherless|strong=\"H3490\"*, and|strong=\"H3754\"* for|strong=\"H3588\"* the|strong=\"H3588\"* widow." + }, + { + "verseNum": 22, + "text": "You|strong=\"H3588\"* shall|strong=\"H4714\"* remember|strong=\"H2142\"* that|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H1961\"* a|strong=\"H3068\"* slave|strong=\"H5650\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1697\"* Egypt|strong=\"H4714\"*. Therefore|strong=\"H3651\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"* to|strong=\"H1961\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "If|strong=\"H3588\"* there|strong=\"H1961\"* is|strong=\"H7563\"* a|strong=\"H3068\"* controversy|strong=\"H7379\"* between|strong=\"H8199\"* men|strong=\"H7563\"*, and|strong=\"H4941\"* they|strong=\"H3588\"* come|strong=\"H1961\"* to|strong=\"H1961\"* judgment|strong=\"H4941\"* and|strong=\"H4941\"* the|strong=\"H3588\"* judges|strong=\"H8199\"* judge|strong=\"H8199\"* them|strong=\"H1961\"*, then|strong=\"H1961\"* they|strong=\"H3588\"* shall|strong=\"H7563\"* justify|strong=\"H6663\"* the|strong=\"H3588\"* righteous|strong=\"H6662\"* and|strong=\"H4941\"* condemn|strong=\"H7561\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H6440\"* shall|strong=\"H1121\"* be|strong=\"H1961\"*, if|strong=\"H1961\"* the|strong=\"H6440\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* is|strong=\"H7563\"* worthy|strong=\"H1121\"* to|strong=\"H1961\"* be|strong=\"H1961\"* beaten|strong=\"H5221\"*, that|strong=\"H1121\"* the|strong=\"H6440\"* judge|strong=\"H8199\"* shall|strong=\"H1121\"* cause|strong=\"H1961\"* him|strong=\"H6440\"* to|strong=\"H1961\"* lie|strong=\"H1961\"* down|strong=\"H5307\"* and|strong=\"H1121\"* to|strong=\"H1961\"* be|strong=\"H1961\"* beaten|strong=\"H5221\"* before|strong=\"H6440\"* his|strong=\"H6440\"* face|strong=\"H6440\"*, according|strong=\"H1767\"* to|strong=\"H1961\"* his|strong=\"H6440\"* wickedness|strong=\"H7564\"*, by|strong=\"H1961\"* number|strong=\"H4557\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3808\"* may|strong=\"H3254\"* sentence him|strong=\"H5921\"* to|strong=\"H5921\"* no|strong=\"H3808\"* more|strong=\"H3254\"* than|strong=\"H3808\"* forty stripes|strong=\"H4347\"*. He|strong=\"H3808\"* shall|strong=\"H5869\"* not|strong=\"H3808\"* give|strong=\"H3254\"* more|strong=\"H3254\"*, lest|strong=\"H6435\"* if|strong=\"H6435\"* he|strong=\"H3808\"* should give|strong=\"H3254\"* more|strong=\"H3254\"* and|strong=\"H5869\"* beat|strong=\"H5221\"* him|strong=\"H5921\"* more|strong=\"H3254\"* than|strong=\"H3808\"* that|strong=\"H5869\"* many|strong=\"H7227\"* stripes|strong=\"H4347\"*, then|strong=\"H3254\"* your|strong=\"H5921\"* brother will|strong=\"H5869\"* be|strong=\"H3808\"* degraded|strong=\"H7034\"* in|strong=\"H5921\"* your|strong=\"H5921\"* sight|strong=\"H5869\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* muzzle|strong=\"H2629\"* the|strong=\"H3808\"* ox|strong=\"H7794\"* when he|strong=\"H3808\"* treads out|strong=\"H1758\"* the|strong=\"H3808\"* grain." + }, + { + "verseNum": 5, + "text": "If|strong=\"H3588\"* brothers|strong=\"H1121\"* dwell|strong=\"H3427\"* together|strong=\"H3162\"*, and|strong=\"H1121\"* one|strong=\"H3808\"* of|strong=\"H1121\"* them|strong=\"H1992\"* dies|strong=\"H4191\"* and|strong=\"H1121\"* has|strong=\"H1961\"* no|strong=\"H3808\"* son|strong=\"H1121\"*, the|strong=\"H5921\"* wife of|strong=\"H1121\"* the|strong=\"H5921\"* dead|strong=\"H4191\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* be|strong=\"H1961\"* married|strong=\"H3947\"* outside|strong=\"H2351\"* to|strong=\"H4191\"* a|strong=\"H3068\"* stranger|strong=\"H2114\"*. Her|strong=\"H3947\"* husband’s brother|strong=\"H2993\"* shall|strong=\"H1121\"* go|strong=\"H1961\"* in|strong=\"H3427\"* to|strong=\"H4191\"* her|strong=\"H3947\"*, and|strong=\"H1121\"* take|strong=\"H3947\"* her|strong=\"H3947\"* as|strong=\"H1961\"* his|strong=\"H3947\"* wife, and|strong=\"H1121\"* perform|strong=\"H2992\"* the|strong=\"H5921\"* duty|strong=\"H2992\"* of|strong=\"H1121\"* a|strong=\"H3068\"* husband’s brother|strong=\"H2993\"* to|strong=\"H4191\"* her|strong=\"H3947\"*." + }, + { + "verseNum": 6, + "text": "It|strong=\"H5921\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* that|strong=\"H3478\"* the|strong=\"H5921\"* firstborn|strong=\"H1060\"* whom she|strong=\"H5921\"* bears|strong=\"H3205\"* shall|strong=\"H3478\"* succeed|strong=\"H6965\"* in|strong=\"H5921\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3205\"* his|strong=\"H5921\"* brother who|strong=\"H3478\"* is|strong=\"H8034\"* dead|strong=\"H4191\"*, that|strong=\"H3478\"* his|strong=\"H5921\"* name|strong=\"H8034\"* not|strong=\"H3808\"* be|strong=\"H1961\"* blotted|strong=\"H4229\"* out|strong=\"H4229\"* of|strong=\"H3205\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "If the|strong=\"H3947\"* man|strong=\"H2205\"* doesn’t want|strong=\"H2654\"* to|strong=\"H3478\"* take|strong=\"H3947\"* his|strong=\"H3947\"* brother|strong=\"H2993\"*’s wife|strong=\"H2994\"*, then|strong=\"H6965\"* his|strong=\"H3947\"* brother|strong=\"H2993\"*’s wife|strong=\"H2994\"* shall|strong=\"H3478\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* the|strong=\"H3947\"* gate|strong=\"H8179\"* to|strong=\"H3478\"* the|strong=\"H3947\"* elders|strong=\"H2205\"*, and|strong=\"H6965\"* say|strong=\"H3478\"*, “My|strong=\"H3947\"* husband’s brother|strong=\"H2993\"* refuses|strong=\"H3985\"* to|strong=\"H3478\"* raise|strong=\"H6965\"* up|strong=\"H5927\"* to|strong=\"H3478\"* his|strong=\"H3947\"* brother|strong=\"H2993\"* a|strong=\"H3068\"* name|strong=\"H8034\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*. He|strong=\"H3808\"* will|strong=\"H3478\"* not|strong=\"H3808\"* perform|strong=\"H6965\"* the|strong=\"H3947\"* duty|strong=\"H2992\"* of|strong=\"H2205\"* a|strong=\"H3068\"* husband’s brother|strong=\"H2993\"* to|strong=\"H3478\"* me|strong=\"H3947\"*.”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H1696\"* the|strong=\"H3947\"* elders|strong=\"H2205\"* of|strong=\"H5892\"* his|strong=\"H7121\"* city|strong=\"H5892\"* shall|strong=\"H5892\"* call|strong=\"H7121\"* him|strong=\"H7121\"*, and|strong=\"H5892\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7121\"*. If he|strong=\"H3808\"* stands|strong=\"H5975\"* and|strong=\"H5892\"* says|strong=\"H1696\"*, “I|strong=\"H3808\"* don’t want|strong=\"H2654\"* to|strong=\"H1696\"* take|strong=\"H3947\"* her|strong=\"H3947\"*,”" + }, + { + "verseNum": 9, + "text": "then|strong=\"H6030\"* his|strong=\"H6440\"* brother’s wife|strong=\"H2994\"* shall|strong=\"H1004\"* come|strong=\"H5066\"* to|strong=\"H5921\"* him|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* elders|strong=\"H2205\"*, and|strong=\"H6030\"* loose|strong=\"H2502\"* his|strong=\"H6440\"* sandal|strong=\"H5275\"* from|strong=\"H6440\"* off|strong=\"H5921\"* his|strong=\"H6440\"* foot|strong=\"H7272\"*, and|strong=\"H6030\"* spit|strong=\"H3417\"* in|strong=\"H5921\"* his|strong=\"H6440\"* face|strong=\"H6440\"*. She|strong=\"H5921\"* shall|strong=\"H1004\"* answer|strong=\"H6030\"* and|strong=\"H6030\"* say, “So|strong=\"H6213\"* shall|strong=\"H1004\"* it|strong=\"H5921\"* be|strong=\"H3808\"* done|strong=\"H6213\"* to|strong=\"H5921\"* the|strong=\"H6440\"* man|strong=\"H2205\"* who|strong=\"H6213\"* does|strong=\"H6213\"* not|strong=\"H3808\"* build|strong=\"H1129\"* up|strong=\"H1129\"* his|strong=\"H6440\"* brother’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 10, + "text": "His|strong=\"H7121\"* name|strong=\"H8034\"* shall|strong=\"H3478\"* be|strong=\"H8034\"* called|strong=\"H7121\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, “The|strong=\"H7121\"* house|strong=\"H1004\"* of|strong=\"H1004\"* him|strong=\"H7121\"* who|strong=\"H3478\"* had|strong=\"H3478\"* his|strong=\"H7121\"* sandal|strong=\"H5275\"* removed|strong=\"H2502\"*.”" + }, + { + "verseNum": 11, + "text": "When|strong=\"H3588\"* men|strong=\"H2388\"* strive|strong=\"H5327\"* against|strong=\"H3027\"* each|strong=\"H3162\"* other|strong=\"H3162\"*, and|strong=\"H7971\"* the|strong=\"H3588\"* wife of|strong=\"H3027\"* one|strong=\"H3588\"* draws|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H7971\"* deliver|strong=\"H5337\"* her|strong=\"H7971\"* husband out|strong=\"H7971\"* of|strong=\"H3027\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* him|strong=\"H5221\"* who|strong=\"H3588\"* strikes|strong=\"H5221\"* him|strong=\"H5221\"*, and|strong=\"H7971\"* puts|strong=\"H7971\"* out|strong=\"H7971\"* her|strong=\"H7971\"* hand|strong=\"H3027\"*, and|strong=\"H7971\"* grabs him|strong=\"H5221\"* by|strong=\"H3027\"* his|strong=\"H7971\"* private parts|strong=\"H3027\"*," + }, + { + "verseNum": 12, + "text": "then|strong=\"H3808\"* you|strong=\"H3808\"* shall|strong=\"H5869\"* cut|strong=\"H7112\"* off|strong=\"H7112\"* her|strong=\"H7112\"* hand|strong=\"H3709\"*. Your|strong=\"H3808\"* eye|strong=\"H5869\"* shall|strong=\"H5869\"* have|strong=\"H5869\"* no|strong=\"H3808\"* pity|strong=\"H2347\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* have|strong=\"H1961\"* in|strong=\"H1419\"* your|strong=\"H1961\"* bag|strong=\"H3599\"* diverse weights, one|strong=\"H3808\"* heavy|strong=\"H1419\"* and|strong=\"H1419\"* one|strong=\"H3808\"* light." + }, + { + "verseNum": 14, + "text": "You|strong=\"H3808\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* have|strong=\"H1961\"* in|strong=\"H1004\"* your|strong=\"H1961\"* house|strong=\"H1004\"* diverse measures, one|strong=\"H3808\"* large|strong=\"H1419\"* and|strong=\"H1419\"* one|strong=\"H3808\"* small|strong=\"H6996\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* have|strong=\"H1961\"* a|strong=\"H3068\"* perfect|strong=\"H8003\"* and|strong=\"H3068\"* just|strong=\"H6664\"* weight. You|strong=\"H5414\"* shall|strong=\"H3068\"* have|strong=\"H1961\"* a|strong=\"H3068\"* perfect|strong=\"H8003\"* and|strong=\"H3068\"* just|strong=\"H6664\"* measure, that|strong=\"H3117\"* your|strong=\"H3068\"* days|strong=\"H3117\"* may|strong=\"H1961\"* be|strong=\"H1961\"* long|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* who|strong=\"H3605\"* do|strong=\"H6213\"* such|strong=\"H6213\"* things|strong=\"H3605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* do|strong=\"H6213\"* unrighteously|strong=\"H5766\"*, are|strong=\"H3068\"* an|strong=\"H6213\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 17, + "text": "Remember|strong=\"H2142\"* what|strong=\"H6213\"* Amalek|strong=\"H6002\"* did|strong=\"H6213\"* to|strong=\"H3318\"* you|strong=\"H6213\"* by|strong=\"H1870\"* the|strong=\"H6213\"* way|strong=\"H1870\"* as|strong=\"H6213\"* you|strong=\"H6213\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1870\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 18, + "text": "how|strong=\"H1870\"* he|strong=\"H3605\"* met|strong=\"H7136\"* you|strong=\"H3605\"* by|strong=\"H1870\"* the|strong=\"H3605\"* way|strong=\"H1870\"*, and|strong=\"H1870\"* struck the|strong=\"H3605\"* rearmost of|strong=\"H1870\"* you|strong=\"H3605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1870\"* feeble|strong=\"H3808\"* behind you|strong=\"H3605\"*, when you|strong=\"H3605\"* were|strong=\"H1870\"* faint|strong=\"H5889\"* and|strong=\"H1870\"* weary|strong=\"H5889\"*; and|strong=\"H1870\"* he|strong=\"H3605\"* didn’t fear|strong=\"H3373\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"H3068\"* it|strong=\"H5414\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, when|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"* rest|strong=\"H5117\"* from|strong=\"H3423\"* all|strong=\"H3605\"* your|strong=\"H3068\"* enemies all|strong=\"H3605\"* around|strong=\"H5439\"*, in|strong=\"H3068\"* the|strong=\"H3605\"* land|strong=\"H5159\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"* for|strong=\"H8478\"* an|strong=\"H1961\"* inheritance|strong=\"H5159\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H5414\"*, that|strong=\"H3605\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* blot|strong=\"H4229\"* out|strong=\"H3423\"* the|strong=\"H3605\"* memory|strong=\"H2143\"* of|strong=\"H3068\"* Amalek|strong=\"H6002\"* from|strong=\"H3423\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*. You|strong=\"H5414\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* forget|strong=\"H7911\"*." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "It|strong=\"H5414\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* come|strong=\"H1961\"* in|strong=\"H3427\"* to|strong=\"H3068\"* the|strong=\"H3588\"* land|strong=\"H5159\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"* for|strong=\"H3588\"* an|strong=\"H1961\"* inheritance|strong=\"H5159\"*, possess|strong=\"H3423\"* it|strong=\"H5414\"*, and|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H5414\"*," + }, + { + "verseNum": 2, + "text": "that|strong=\"H3605\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* some|strong=\"H8033\"* of|strong=\"H3068\"* the|strong=\"H3605\"* first|strong=\"H7225\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* the|strong=\"H3605\"* ground|strong=\"H4725\"*, which|strong=\"H3068\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* bring|strong=\"H3947\"* in|strong=\"H1980\"* from|strong=\"H1980\"* your|strong=\"H3068\"* land|strong=\"H4725\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*. You|strong=\"H5414\"* shall|strong=\"H3068\"* put|strong=\"H5414\"* it|strong=\"H5414\"* in|strong=\"H1980\"* a|strong=\"H3068\"* basket|strong=\"H2935\"*, and|strong=\"H1980\"* shall|strong=\"H3068\"* go|strong=\"H1980\"* to|strong=\"H1980\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* choose|strong=\"H3947\"* to|strong=\"H1980\"* cause|strong=\"H5414\"* his|strong=\"H3605\"* name|strong=\"H8034\"* to|strong=\"H1980\"* dwell|strong=\"H7931\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3588\"* shall|strong=\"H3548\"* come|strong=\"H1961\"* to|strong=\"H3068\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* who|strong=\"H3068\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* in|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, and|strong=\"H3068\"* tell|strong=\"H5046\"* him|strong=\"H5414\"*, “I|strong=\"H3588\"* profess|strong=\"H5046\"* today|strong=\"H3117\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H3068\"* the|strong=\"H3588\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* our|strong=\"H3068\"* fathers to|strong=\"H3068\"* give|strong=\"H5414\"* us|strong=\"H5414\"*.”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* the|strong=\"H6440\"* basket|strong=\"H2935\"* out|strong=\"H3947\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* set|strong=\"H3240\"* it|strong=\"H6440\"* down|strong=\"H3240\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s altar|strong=\"H4196\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* answer|strong=\"H6030\"* and|strong=\"H3068\"* say before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, “My|strong=\"H3068\"* father+ 26:5 or, forefather* was|strong=\"H3068\"* a|strong=\"H3068\"* Syrian ready to|strong=\"H3381\"* perish. He|strong=\"H8033\"* went|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* lived|strong=\"H1481\"* there|strong=\"H8033\"*, few|strong=\"H4592\"* in|strong=\"H3068\"* number|strong=\"H4962\"*. There|strong=\"H8033\"* he|strong=\"H8033\"* became|strong=\"H1961\"* a|strong=\"H3068\"* great|strong=\"H1419\"*, mighty|strong=\"H6099\"*, and|strong=\"H3068\"* populous|strong=\"H7227\"* nation|strong=\"H1471\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* Egyptians|strong=\"H4713\"* mistreated us|strong=\"H5414\"*, afflicted|strong=\"H6031\"* us|strong=\"H5414\"*, and|strong=\"H7186\"* imposed|strong=\"H5414\"* hard|strong=\"H7186\"* labor|strong=\"H5656\"* on|strong=\"H5921\"* us|strong=\"H5414\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H8085\"* we|strong=\"H3068\"* cried|strong=\"H6817\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H3068\"* our|strong=\"H3068\"* fathers. Yahweh|strong=\"H3068\"* heard|strong=\"H8085\"* our|strong=\"H3068\"* voice|strong=\"H6963\"*, and|strong=\"H3068\"* saw|strong=\"H7200\"* our|strong=\"H3068\"* affliction|strong=\"H6040\"*, our|strong=\"H3068\"* toil|strong=\"H5999\"*, and|strong=\"H3068\"* our|strong=\"H3068\"* oppression|strong=\"H3906\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* brought|strong=\"H3318\"* us|strong=\"H3027\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"* with|strong=\"H3068\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*, with|strong=\"H3068\"* an|strong=\"H3318\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*, with|strong=\"H3068\"* great|strong=\"H1419\"* terror|strong=\"H4172\"*, with|strong=\"H3068\"* signs, and|strong=\"H3068\"* with|strong=\"H3068\"* wonders|strong=\"H4159\"*;" + }, + { + "verseNum": 9, + "text": "and|strong=\"H2461\"* he|strong=\"H5414\"* has|strong=\"H2088\"* brought|strong=\"H5414\"* us|strong=\"H5414\"* into|strong=\"H5414\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, and|strong=\"H2461\"* has|strong=\"H2088\"* given|strong=\"H5414\"* us|strong=\"H5414\"* this|strong=\"H2088\"* land|strong=\"H4725\"*, a|strong=\"H3068\"* land|strong=\"H4725\"* flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H2461\"* honey|strong=\"H1706\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H6258\"*, behold|strong=\"H2009\"*, I|strong=\"H5414\"* have|strong=\"H3068\"* brought|strong=\"H5414\"* the|strong=\"H6440\"* first|strong=\"H7225\"* of|strong=\"H3068\"* the|strong=\"H6440\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*, which|strong=\"H3068\"* you|strong=\"H5414\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* given|strong=\"H5414\"* me|strong=\"H5414\"*.” You|strong=\"H5414\"* shall|strong=\"H3068\"* set|strong=\"H5414\"* it|strong=\"H5414\"* down|strong=\"H7812\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* worship|strong=\"H7812\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* rejoice|strong=\"H8055\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* good|strong=\"H2896\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* to|strong=\"H3068\"* you|strong=\"H5414\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* your|strong=\"H3068\"* house|strong=\"H1004\"*, you|strong=\"H5414\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* Levite|strong=\"H3881\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* foreigner|strong=\"H1616\"* who|strong=\"H3605\"* is|strong=\"H3068\"* among|strong=\"H7130\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H7646\"* finished|strong=\"H3615\"* tithing|strong=\"H4643\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tithe|strong=\"H4643\"* of|strong=\"H8141\"* your|strong=\"H3605\"* increase|strong=\"H8393\"* in|strong=\"H8141\"* the|strong=\"H3605\"* third|strong=\"H7992\"* year|strong=\"H8141\"*, which|strong=\"H8179\"* is|strong=\"H3605\"* the|strong=\"H3605\"* year|strong=\"H8141\"* of|strong=\"H8141\"* tithing|strong=\"H4643\"*, then|strong=\"H5414\"* you|strong=\"H3588\"* shall|strong=\"H3881\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H3605\"* Levite|strong=\"H3881\"*, to|strong=\"H5414\"* the|strong=\"H3605\"* foreigner|strong=\"H1616\"*, to|strong=\"H5414\"* the|strong=\"H3605\"* fatherless|strong=\"H3490\"*, and|strong=\"H8141\"* to|strong=\"H5414\"* the|strong=\"H3605\"* widow, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H5414\"* eat within your|strong=\"H3605\"* gates|strong=\"H8179\"* and|strong=\"H8141\"* be|strong=\"H5414\"* filled|strong=\"H7646\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* say before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, “I|strong=\"H5414\"* have|strong=\"H3068\"* put|strong=\"H5414\"* away|strong=\"H5674\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* out|strong=\"H4480\"* of|strong=\"H1004\"* my|strong=\"H5414\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* also|strong=\"H1571\"* have|strong=\"H3068\"* given|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3068\"* the|strong=\"H3605\"* Levite|strong=\"H3881\"*, to|strong=\"H3068\"* the|strong=\"H3605\"* foreigner|strong=\"H1616\"*, to|strong=\"H3068\"* the|strong=\"H3605\"* fatherless|strong=\"H3490\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H3605\"* widow, according|strong=\"H4480\"* to|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* commandment|strong=\"H4687\"* which|strong=\"H3068\"* you|strong=\"H5414\"* have|strong=\"H3068\"* commanded|strong=\"H6680\"* me|strong=\"H5414\"*. I|strong=\"H5414\"* have|strong=\"H3068\"* not|strong=\"H3808\"* transgressed|strong=\"H5674\"* any|strong=\"H3605\"* of|strong=\"H1004\"* your|strong=\"H3068\"* commandments|strong=\"H4687\"*, neither|strong=\"H3808\"* have|strong=\"H3068\"* I|strong=\"H5414\"* forgotten|strong=\"H7911\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H5414\"* have|strong=\"H3068\"* not|strong=\"H3808\"* eaten|strong=\"H1197\"* of|strong=\"H3068\"* it|strong=\"H5414\"* in|strong=\"H3068\"* my|strong=\"H8085\"* mourning, neither|strong=\"H3808\"* have|strong=\"H3068\"* I|strong=\"H5414\"* removed|strong=\"H1197\"* any|strong=\"H3605\"* of|strong=\"H3068\"* it|strong=\"H5414\"* while|strong=\"H8085\"* I|strong=\"H5414\"* was|strong=\"H3068\"* unclean|strong=\"H2931\"*, nor|strong=\"H3808\"* given|strong=\"H5414\"* of|strong=\"H3068\"* it|strong=\"H5414\"* for|strong=\"H6213\"* the|strong=\"H3605\"* dead|strong=\"H4191\"*. I|strong=\"H5414\"* have|strong=\"H3068\"* listened|strong=\"H8085\"* to|strong=\"H4191\"* Yahweh|strong=\"H3068\"* my|strong=\"H8085\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*. I|strong=\"H5414\"* have|strong=\"H3068\"* done|strong=\"H6213\"* according|strong=\"H4480\"* to|strong=\"H4191\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H5414\"* have|strong=\"H3068\"* commanded|strong=\"H6680\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 15, + "text": "Look|strong=\"H8259\"* down|strong=\"H8259\"* from|strong=\"H4480\"* your|strong=\"H5414\"* holy|strong=\"H6944\"* habitation|strong=\"H4583\"*, from|strong=\"H4480\"* heaven|strong=\"H8064\"*, and|strong=\"H3478\"* bless|strong=\"H1288\"* your|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* the|strong=\"H5414\"* ground which|strong=\"H5971\"* you|strong=\"H5414\"* have|strong=\"H5971\"* given|strong=\"H5414\"* us|strong=\"H5414\"*, as|strong=\"H5971\"* you|strong=\"H5414\"* swore|strong=\"H7650\"* to|strong=\"H3478\"* our|strong=\"H5414\"* fathers, a|strong=\"H3068\"* land|strong=\"H8064\"* flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H3478\"* honey|strong=\"H1706\"*.”" + }, + { + "verseNum": 16, + "text": "Today|strong=\"H3117\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* commands|strong=\"H6680\"* you|strong=\"H6680\"* to|strong=\"H3068\"* do|strong=\"H6213\"* these|strong=\"H2088\"* statutes|strong=\"H2706\"* and|strong=\"H3068\"* ordinances|strong=\"H4941\"*. You|strong=\"H6680\"* shall|strong=\"H3068\"* therefore|strong=\"H3068\"* keep|strong=\"H8104\"* and|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* and|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H3117\"* have|strong=\"H1961\"* declared|strong=\"H8085\"* today|strong=\"H3117\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* that|strong=\"H3117\"* you|strong=\"H3117\"* would|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* his|strong=\"H8104\"* ways|strong=\"H1870\"*, keep|strong=\"H8104\"* his|strong=\"H8104\"* statutes|strong=\"H2706\"*, his|strong=\"H8104\"* commandments|strong=\"H4687\"*, and|strong=\"H3068\"* his|strong=\"H8104\"* ordinances|strong=\"H4941\"*, and|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H3212\"* his|strong=\"H8104\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* declared|strong=\"H1696\"* today|strong=\"H3117\"* that|strong=\"H5971\"* you|strong=\"H3605\"* are|strong=\"H3117\"* a|strong=\"H3068\"* people|strong=\"H5971\"* for|strong=\"H3068\"* his|strong=\"H3605\"* own|strong=\"H1961\"* possession|strong=\"H5459\"*, as|strong=\"H3117\"* he|strong=\"H3117\"* has|strong=\"H3068\"* promised|strong=\"H1696\"* you|strong=\"H3605\"*, and|strong=\"H3068\"* that|strong=\"H5971\"* you|strong=\"H3605\"* should|strong=\"H3068\"* keep|strong=\"H8104\"* all|strong=\"H3605\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H6213\"* will|strong=\"H3068\"* make|strong=\"H6213\"* you|strong=\"H5414\"* high|strong=\"H5945\"* above|strong=\"H5921\"* all|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H5971\"* he|strong=\"H6213\"* has|strong=\"H3068\"* made|strong=\"H6213\"*, in|strong=\"H5921\"* praise|strong=\"H8416\"*, in|strong=\"H5921\"* name|strong=\"H8034\"*, and|strong=\"H3068\"* in|strong=\"H5921\"* honor|strong=\"H8597\"*, and|strong=\"H3068\"* that|strong=\"H5971\"* you|strong=\"H5414\"* may|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* people|strong=\"H5971\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, as|strong=\"H1961\"* he|strong=\"H6213\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"* commanded|strong=\"H6680\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying, “Keep|strong=\"H8104\"* all|strong=\"H3605\"* the|strong=\"H3605\"* commandment|strong=\"H4687\"* which|strong=\"H5971\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H5414\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* on|strong=\"H3117\"* the|strong=\"H5414\"* day|strong=\"H3117\"* when|strong=\"H1961\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"* to|strong=\"H3068\"* the|strong=\"H5414\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*, that|strong=\"H3117\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* set|strong=\"H5414\"* yourself|strong=\"H5414\"* up|strong=\"H6965\"* great|strong=\"H1419\"* stones, and|strong=\"H6965\"* coat|strong=\"H7874\"* them|strong=\"H5414\"* with|strong=\"H3068\"* plaster." + }, + { + "verseNum": 3, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* write|strong=\"H3789\"* on|strong=\"H5921\"* them|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* this|strong=\"H2063\"* law|strong=\"H8451\"*, when|strong=\"H1696\"* you|strong=\"H5414\"* have|strong=\"H3068\"* passed|strong=\"H5674\"* over|strong=\"H5921\"*, that|strong=\"H3605\"* you|strong=\"H5414\"* may|strong=\"H3068\"* go|strong=\"H5674\"* in|strong=\"H5921\"* to|strong=\"H1696\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*, a|strong=\"H3068\"* land flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H3068\"* honey|strong=\"H1706\"*, as|strong=\"H1697\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers, has|strong=\"H3068\"* promised|strong=\"H1696\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 4, + "text": "It|strong=\"H1961\"* shall|strong=\"H3117\"* be|strong=\"H1961\"*, when|strong=\"H1961\"* you|strong=\"H6680\"* have|strong=\"H1961\"* crossed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3117\"* Jordan|strong=\"H3383\"*, that|strong=\"H3117\"* you|strong=\"H6680\"* shall|strong=\"H3117\"* set|strong=\"H6965\"* up|strong=\"H6965\"* these|strong=\"H6965\"* stones, which|strong=\"H2022\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, on|strong=\"H3117\"* Mount|strong=\"H2022\"* Ebal|strong=\"H5858\"*, and|strong=\"H6965\"* you|strong=\"H6680\"* shall|strong=\"H3117\"* coat|strong=\"H7874\"* them|strong=\"H6680\"* with|strong=\"H3117\"* plaster." + }, + { + "verseNum": 5, + "text": "There|strong=\"H8033\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* build|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, an|strong=\"H1129\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* stones. You|strong=\"H5921\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* use|strong=\"H5130\"* any|strong=\"H3808\"* iron|strong=\"H1270\"* tool|strong=\"H5130\"* on|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H5921\"* shall|strong=\"H3068\"* build|strong=\"H1129\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s altar|strong=\"H4196\"* of|strong=\"H3068\"* uncut|strong=\"H8003\"* stones. You|strong=\"H5921\"* shall|strong=\"H3068\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* on|strong=\"H5921\"* it|strong=\"H5921\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* sacrifice|strong=\"H2076\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, and|strong=\"H3068\"* shall|strong=\"H3068\"* eat there|strong=\"H8033\"*. You|strong=\"H6440\"* shall|strong=\"H3068\"* rejoice|strong=\"H8055\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H3605\"* shall|strong=\"H8451\"* write|strong=\"H3789\"* on|strong=\"H5921\"* the|strong=\"H3605\"* stones all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1697\"* this|strong=\"H2063\"* law|strong=\"H8451\"* very|strong=\"H3190\"* plainly.”" + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* the|strong=\"H3605\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, “Be|strong=\"H1961\"* silent|strong=\"H5535\"* and|strong=\"H4872\"* listen|strong=\"H8085\"*, Israel|strong=\"H3478\"*! Today|strong=\"H3117\"* you|strong=\"H3605\"* have|strong=\"H1961\"* become|strong=\"H1961\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H6680\"* shall|strong=\"H3068\"* therefore|strong=\"H3068\"* obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* his|strong=\"H3068\"* commandments|strong=\"H4687\"* and|strong=\"H3068\"* his|strong=\"H3068\"* statutes|strong=\"H2706\"*, which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 11, + "text": "Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* the|strong=\"H3117\"* people|strong=\"H5971\"* the|strong=\"H3117\"* same|strong=\"H1931\"* day|strong=\"H3117\"*, saying," + }, + { + "verseNum": 12, + "text": "“These|strong=\"H5971\"* shall|strong=\"H5971\"* stand|strong=\"H5975\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Gerizim|strong=\"H1630\"* to|strong=\"H5921\"* bless|strong=\"H1288\"* the|strong=\"H5921\"* people|strong=\"H5971\"*, when|strong=\"H5674\"* you|strong=\"H5921\"* have|strong=\"H5971\"* crossed|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*: Simeon|strong=\"H8095\"*, Levi|strong=\"H3878\"*, Judah|strong=\"H3063\"*, Issachar|strong=\"H3485\"*, Joseph|strong=\"H3130\"*, and|strong=\"H3063\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 13, + "text": "These shall|strong=\"H2022\"* stand|strong=\"H5975\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Ebal|strong=\"H5858\"* for|strong=\"H5921\"* the|strong=\"H5921\"* curse|strong=\"H7045\"*: Reuben|strong=\"H7205\"*, Gad|strong=\"H1410\"*, Asher, Zebulun|strong=\"H2074\"*, Dan|strong=\"H1835\"*, and|strong=\"H2022\"* Naphtali|strong=\"H5321\"*." + }, + { + "verseNum": 14, + "text": "With|strong=\"H3478\"* a|strong=\"H3068\"* loud|strong=\"H7311\"* voice|strong=\"H6963\"*, the|strong=\"H3605\"* Levites|strong=\"H3881\"* shall|strong=\"H3478\"* say|strong=\"H6963\"* to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H6963\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 15, + "text": "‘Cursed is|strong=\"H3068\"* the|strong=\"H3605\"* man|strong=\"H3605\"* who|strong=\"H3605\"* makes|strong=\"H6213\"* an|strong=\"H6213\"* engraved or|strong=\"H3068\"* molten|strong=\"H4541\"* image|strong=\"H6459\"*, an|strong=\"H6213\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H3605\"* craftsman|strong=\"H2796\"*, and|strong=\"H3068\"* sets|strong=\"H7760\"* it|strong=\"H7760\"* up|strong=\"H7760\"* in|strong=\"H3068\"* secret|strong=\"H5643\"*.’" + }, + { + "verseNum": 16, + "text": "‘Cursed is|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* dishonors|strong=\"H7034\"* his|strong=\"H3605\"* father or|strong=\"H5971\"* his|strong=\"H3605\"* mother.’" + }, + { + "verseNum": 17, + "text": "‘Cursed is|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* removes his|strong=\"H3605\"* neighbor|strong=\"H7453\"*’s landmark|strong=\"H1366\"*.’" + }, + { + "verseNum": 18, + "text": "‘Cursed is|strong=\"H1870\"* he|strong=\"H3605\"* who|strong=\"H3605\"* leads|strong=\"H7686\"* the|strong=\"H3605\"* blind|strong=\"H5787\"* astray|strong=\"H7686\"* on|strong=\"H1870\"* the|strong=\"H3605\"* road|strong=\"H1870\"*.’" + }, + { + "verseNum": 19, + "text": "‘Cursed is|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* withholds justice|strong=\"H4941\"* from|strong=\"H5971\"* the|strong=\"H3605\"* foreigner|strong=\"H1616\"*, fatherless|strong=\"H3490\"*, and|strong=\"H4941\"* widow.’" + }, + { + "verseNum": 20, + "text": "‘Cursed is|strong=\"H3605\"* he|strong=\"H3588\"* who|strong=\"H3605\"* lies|strong=\"H7901\"* with|strong=\"H5973\"*+ 27:20 i.e., has sexual relations with* his|strong=\"H3605\"* father’s wife, because|strong=\"H3588\"* he|strong=\"H3588\"* dishonors his|strong=\"H3605\"* father’s bed|strong=\"H7901\"*.’" + }, + { + "verseNum": 21, + "text": "‘Cursed is|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* lies|strong=\"H7901\"* with|strong=\"H5973\"* any|strong=\"H3605\"* kind of|strong=\"H5971\"* animal.’" + }, + { + "verseNum": 22, + "text": "‘Cursed is|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* lies|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H3605\"* sister, his|strong=\"H3605\"* father’s daughter|strong=\"H1323\"* or|strong=\"H5971\"* his|strong=\"H3605\"* mother’s daughter|strong=\"H1323\"*.’" + }, + { + "verseNum": 23, + "text": "‘Cursed is|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* lies|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H3605\"* mother-in-law.’" + }, + { + "verseNum": 24, + "text": "‘Cursed is|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* secretly|strong=\"H5643\"* kills|strong=\"H5221\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"*.’" + }, + { + "verseNum": 25, + "text": "‘Cursed is|strong=\"H5315\"* he|strong=\"H3605\"* who|strong=\"H3605\"* takes|strong=\"H3947\"* a|strong=\"H3068\"* bribe|strong=\"H7810\"* to|strong=\"H5971\"* kill|strong=\"H5221\"* an|strong=\"H3947\"* innocent|strong=\"H5355\"* person|strong=\"H5315\"*.’" + }, + { + "verseNum": 26, + "text": "‘Cursed is|strong=\"H1697\"* he|strong=\"H6213\"* who|strong=\"H3605\"* doesn’t uphold the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1697\"* this|strong=\"H2063\"* law|strong=\"H8451\"* by|strong=\"H6965\"* doing|strong=\"H6213\"* them|strong=\"H6213\"*.’" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "It|strong=\"H5414\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"*, if|strong=\"H1961\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* listen|strong=\"H8085\"* diligently|strong=\"H8085\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, to|strong=\"H3068\"* observe|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"* which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H5414\"* today|strong=\"H3117\"*, that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* set|strong=\"H5414\"* you|strong=\"H5414\"* high|strong=\"H5945\"* above|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 2, + "text": "All|strong=\"H3605\"* these|strong=\"H8085\"* blessings|strong=\"H1293\"* will|strong=\"H3068\"* come upon|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* overtake|strong=\"H5381\"* you|strong=\"H3588\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H1288\"* shall|strong=\"H5892\"* be|strong=\"H1288\"* blessed|strong=\"H1288\"* in|strong=\"H5892\"* the|strong=\"H1288\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* you|strong=\"H1288\"* shall|strong=\"H5892\"* be|strong=\"H1288\"* blessed|strong=\"H1288\"* in|strong=\"H5892\"* the|strong=\"H1288\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H1288\"* shall be|strong=\"H1288\"* blessed|strong=\"H1288\"* in|strong=\"H6629\"* the|strong=\"H1288\"* fruit|strong=\"H6529\"* of|strong=\"H6629\"* your|strong=\"H1288\"* body, the|strong=\"H1288\"* fruit|strong=\"H6529\"* of|strong=\"H6629\"* your|strong=\"H1288\"* ground, the|strong=\"H1288\"* fruit|strong=\"H6529\"* of|strong=\"H6629\"* your|strong=\"H1288\"* animals, the|strong=\"H1288\"* increase|strong=\"H7698\"* of|strong=\"H6629\"* your|strong=\"H1288\"* livestock, and|strong=\"H6629\"* the|strong=\"H1288\"* young|strong=\"H6251\"* of|strong=\"H6629\"* your|strong=\"H1288\"* flock|strong=\"H6629\"*." + }, + { + "verseNum": 5, + "text": "Your|strong=\"H1288\"* basket|strong=\"H2935\"* and|strong=\"H2935\"* your|strong=\"H1288\"* kneading|strong=\"H4863\"* trough shall be|strong=\"H1288\"* blessed|strong=\"H1288\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H1288\"* shall be|strong=\"H1288\"* blessed|strong=\"H1288\"* when|strong=\"H3318\"* you|strong=\"H1288\"* come|strong=\"H3318\"* in|strong=\"H3318\"*, and|strong=\"H3318\"* you|strong=\"H1288\"* shall be|strong=\"H1288\"* blessed|strong=\"H1288\"* when|strong=\"H3318\"* you|strong=\"H1288\"* go|strong=\"H3318\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* cause|strong=\"H5414\"* your|strong=\"H3068\"* enemies|strong=\"H6965\"* who|strong=\"H3068\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* you|strong=\"H5414\"* to|strong=\"H3318\"* be|strong=\"H3068\"* struck|strong=\"H5062\"* before|strong=\"H6440\"* you|strong=\"H5414\"*. They|strong=\"H3068\"* will|strong=\"H3068\"* come|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H5921\"* you|strong=\"H5414\"* one|strong=\"H7651\"* way|strong=\"H1870\"*, and|strong=\"H6965\"* will|strong=\"H3068\"* flee|strong=\"H5127\"* before|strong=\"H6440\"* you|strong=\"H5414\"* seven|strong=\"H7651\"* ways|strong=\"H1870\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* command|strong=\"H6680\"* the|strong=\"H3605\"* blessing|strong=\"H1293\"* on|strong=\"H3027\"* you|strong=\"H5414\"* in|strong=\"H3068\"* your|strong=\"H3068\"* barns, and|strong=\"H3068\"* in|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H5414\"* put|strong=\"H5414\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H3068\"*. He|strong=\"H3068\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H5414\"* in|strong=\"H3068\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* establish|strong=\"H6965\"* you|strong=\"H3588\"* for|strong=\"H3588\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* people|strong=\"H5971\"* to|strong=\"H1980\"* himself|strong=\"H3068\"*, as|strong=\"H3068\"* he|strong=\"H3588\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"* to|strong=\"H1980\"* you|strong=\"H3588\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* the|strong=\"H3588\"* commandments|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H1980\"* walk|strong=\"H1980\"* in|strong=\"H1980\"* his|strong=\"H8104\"* ways|strong=\"H1870\"*." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth shall|strong=\"H3068\"* see|strong=\"H7200\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* called|strong=\"H7121\"* by|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, and|strong=\"H3068\"* they|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* afraid|strong=\"H3372\"* of|strong=\"H3068\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* grant|strong=\"H5414\"* you|strong=\"H5414\"* abundant prosperity|strong=\"H2896\"* in|strong=\"H5921\"* the|strong=\"H5921\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* your|strong=\"H3068\"* body, in|strong=\"H5921\"* the|strong=\"H5921\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* your|strong=\"H3068\"* livestock, and|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* your|strong=\"H3068\"* ground, in|strong=\"H5921\"* the|strong=\"H5921\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers to|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* open|strong=\"H6605\"* to|strong=\"H3068\"* you|strong=\"H5414\"* his|strong=\"H3605\"* good|strong=\"H2896\"* treasure in|strong=\"H3068\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, to|strong=\"H3068\"* give|strong=\"H5414\"* the|strong=\"H3605\"* rain|strong=\"H4306\"* of|strong=\"H3068\"* your|strong=\"H3068\"* land|strong=\"H8064\"* in|strong=\"H3068\"* its|strong=\"H3605\"* season|strong=\"H6256\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* bless|strong=\"H1288\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*. You|strong=\"H5414\"* will|strong=\"H3068\"* lend|strong=\"H3867\"* to|strong=\"H3068\"* many|strong=\"H7227\"* nations|strong=\"H1471\"*, and|strong=\"H3068\"* you|strong=\"H5414\"* will|strong=\"H3068\"* not|strong=\"H3808\"* borrow|strong=\"H3867\"*." + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* make|strong=\"H6213\"* you|strong=\"H3588\"* the|strong=\"H8085\"* head|strong=\"H7218\"*, and|strong=\"H3068\"* not|strong=\"H3808\"* the|strong=\"H8085\"* tail|strong=\"H2180\"*. You|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* above|strong=\"H4605\"* only|strong=\"H7535\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* beneath|strong=\"H4295\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* the|strong=\"H8085\"* commandments|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* which|strong=\"H3068\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"* today|strong=\"H3117\"*, to|strong=\"H3068\"* observe|strong=\"H8104\"* and|strong=\"H3068\"* to|strong=\"H3068\"* do|strong=\"H6213\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H3117\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* any|strong=\"H3605\"* of|strong=\"H3117\"* the|strong=\"H3605\"* words|strong=\"H1697\"* which|strong=\"H1697\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, to|strong=\"H3212\"* the|strong=\"H3605\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* or|strong=\"H3808\"* to|strong=\"H3212\"* the|strong=\"H3605\"* left|strong=\"H8040\"*, to|strong=\"H3212\"* go|strong=\"H3212\"* after|strong=\"H3117\"* other|strong=\"H3605\"* gods to|strong=\"H3212\"* serve|strong=\"H5647\"* them|strong=\"H6680\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H3808\"* it|strong=\"H5921\"* shall|strong=\"H3068\"* come|strong=\"H1961\"* to|strong=\"H3068\"* pass|strong=\"H1961\"*, if|strong=\"H1961\"* you|strong=\"H6680\"* will|strong=\"H3068\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, to|strong=\"H3068\"* observe|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"* and|strong=\"H3068\"* his|strong=\"H3605\"* statutes|strong=\"H2708\"* which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, that|strong=\"H3605\"* all|strong=\"H3605\"* these|strong=\"H6213\"* curses|strong=\"H7045\"* will|strong=\"H3068\"* come|strong=\"H1961\"* on|strong=\"H5921\"* you|strong=\"H6680\"* and|strong=\"H3068\"* overtake|strong=\"H5381\"* you|strong=\"H6680\"*." + }, + { + "verseNum": 16, + "text": "You will|strong=\"H5892\"* be|strong=\"H5892\"* cursed in|strong=\"H5892\"* the|strong=\"H5892\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* you will|strong=\"H5892\"* be|strong=\"H5892\"* cursed in|strong=\"H5892\"* the|strong=\"H5892\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 17, + "text": "Your basket|strong=\"H2935\"* and|strong=\"H2935\"* your kneading|strong=\"H4863\"* trough will be cursed." + }, + { + "verseNum": 18, + "text": "The fruit|strong=\"H6529\"* of|strong=\"H6629\"* your|strong=\"H6629\"* body, the fruit|strong=\"H6529\"* of|strong=\"H6629\"* your|strong=\"H6629\"* ground, the increase|strong=\"H7698\"* of|strong=\"H6629\"* your|strong=\"H6629\"* livestock, and|strong=\"H6629\"* the young|strong=\"H6251\"* of|strong=\"H6629\"* your|strong=\"H6629\"* flock|strong=\"H6629\"* will|strong=\"H6629\"* be cursed." + }, + { + "verseNum": 19, + "text": "You|strong=\"H3318\"* will be|strong=\"H3318\"* cursed when|strong=\"H3318\"* you|strong=\"H3318\"* come|strong=\"H3318\"* in|strong=\"H3318\"*, and|strong=\"H3318\"* you|strong=\"H3318\"* will be|strong=\"H3318\"* cursed when|strong=\"H3318\"* you|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* send|strong=\"H7971\"* on|strong=\"H3027\"* you|strong=\"H6440\"* cursing|strong=\"H3994\"*, confusion|strong=\"H4103\"*, and|strong=\"H3068\"* rebuke|strong=\"H4045\"* in|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H6440\"* put|strong=\"H7971\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H5704\"* do|strong=\"H6213\"*, until|strong=\"H5704\"* you|strong=\"H6440\"* are|strong=\"H3027\"* destroyed|strong=\"H8045\"* and|strong=\"H3068\"* until|strong=\"H5704\"* you|strong=\"H6440\"* perish quickly|strong=\"H4118\"*, because|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H3605\"* evil|strong=\"H7455\"* of|strong=\"H3068\"* your|strong=\"H3068\"* doings|strong=\"H4611\"*, by|strong=\"H3027\"* which|strong=\"H3068\"* you|strong=\"H6440\"* have|strong=\"H3068\"* forsaken|strong=\"H5800\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* make|strong=\"H3615\"* the|strong=\"H5921\"* pestilence|strong=\"H1698\"* cling|strong=\"H1692\"* to|strong=\"H5704\"* you|strong=\"H5921\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* has|strong=\"H3068\"* consumed|strong=\"H3615\"* you|strong=\"H5921\"* from|strong=\"H5921\"* off|strong=\"H5921\"* the|strong=\"H5921\"* land where|strong=\"H8033\"* you|strong=\"H5921\"* go|strong=\"H3068\"* in|strong=\"H5921\"* to|strong=\"H5704\"* possess|strong=\"H3423\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* you|strong=\"H5704\"* with|strong=\"H3068\"* consumption|strong=\"H7829\"*, with|strong=\"H3068\"* fever|strong=\"H6920\"*, with|strong=\"H3068\"* inflammation|strong=\"H1816\"*, with|strong=\"H3068\"* fiery|strong=\"H2746\"* heat|strong=\"H2746\"*, with|strong=\"H3068\"* the|strong=\"H5221\"* sword|strong=\"H2719\"*, with|strong=\"H3068\"* blight|strong=\"H7711\"*, and|strong=\"H3068\"* with|strong=\"H3068\"* mildew|strong=\"H3420\"*. They|strong=\"H3068\"* will|strong=\"H3068\"* pursue|strong=\"H7291\"* you|strong=\"H5704\"* until|strong=\"H5704\"* you|strong=\"H5704\"* perish." + }, + { + "verseNum": 23, + "text": "Your|strong=\"H5921\"* sky|strong=\"H8064\"* that|strong=\"H1961\"* is|strong=\"H7218\"* over|strong=\"H5921\"* your|strong=\"H5921\"* head|strong=\"H7218\"* will|strong=\"H1961\"* be|strong=\"H1961\"* bronze|strong=\"H5178\"*, and|strong=\"H8064\"* the|strong=\"H5921\"* earth|strong=\"H8064\"* that|strong=\"H1961\"* is|strong=\"H7218\"* under|strong=\"H8478\"* you|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* iron|strong=\"H1270\"*." + }, + { + "verseNum": 24, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* make|strong=\"H5414\"* the|strong=\"H5921\"* rain|strong=\"H4306\"* of|strong=\"H3068\"* your|strong=\"H3068\"* land|strong=\"H8064\"* powder|strong=\"H6083\"* and|strong=\"H3068\"* dust|strong=\"H6083\"*. It|strong=\"H5414\"* will|strong=\"H3068\"* come|strong=\"H3381\"* down|strong=\"H3381\"* on|strong=\"H5921\"* you|strong=\"H5414\"* from|strong=\"H4480\"* the|strong=\"H5921\"* sky|strong=\"H8064\"*, until|strong=\"H5704\"* you|strong=\"H5414\"* are|strong=\"H8064\"* destroyed|strong=\"H8045\"*." + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* cause|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H3318\"* be|strong=\"H1961\"* struck|strong=\"H5062\"* before|strong=\"H6440\"* your|strong=\"H3068\"* enemies. You|strong=\"H5414\"* will|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* one|strong=\"H3605\"* way|strong=\"H1870\"* against|strong=\"H6440\"* them|strong=\"H5414\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* flee|strong=\"H5127\"* seven|strong=\"H7651\"* ways|strong=\"H1870\"* before|strong=\"H6440\"* them|strong=\"H5414\"*. You|strong=\"H5414\"* will|strong=\"H3068\"* be|strong=\"H1961\"* tossed back|strong=\"H3318\"* and|strong=\"H3068\"* forth|strong=\"H3318\"* among all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 26, + "text": "Your|strong=\"H3605\"* dead|strong=\"H5038\"* bodies|strong=\"H5038\"* will|strong=\"H1961\"* be|strong=\"H1961\"* food|strong=\"H3978\"* to|strong=\"H1961\"* all|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H3605\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* to|strong=\"H1961\"* the|strong=\"H3605\"* animals|strong=\"H1961\"* of|strong=\"H3605\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*; and|strong=\"H8064\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3605\"* one|strong=\"H3605\"* to|strong=\"H1961\"* frighten|strong=\"H2729\"* them|strong=\"H1961\"* away|strong=\"H2729\"*." + }, + { + "verseNum": 27, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* you|strong=\"H3808\"* with|strong=\"H3068\"* the|strong=\"H5221\"* boils|strong=\"H7822\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, with|strong=\"H3068\"* the|strong=\"H5221\"* tumors|strong=\"H6076\"*, with|strong=\"H3068\"* the|strong=\"H5221\"* scurvy|strong=\"H1618\"*, and|strong=\"H3068\"* with|strong=\"H3068\"* the|strong=\"H5221\"* itch|strong=\"H2775\"*, of|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H3808\"* can|strong=\"H3201\"* not|strong=\"H3808\"* be|strong=\"H3808\"* healed|strong=\"H7495\"*." + }, + { + "verseNum": 28, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* you|strong=\"H5221\"* with|strong=\"H3068\"* madness|strong=\"H7697\"*, with|strong=\"H3068\"* blindness|strong=\"H5788\"*, and|strong=\"H3068\"* with|strong=\"H3068\"* astonishment|strong=\"H8541\"* of|strong=\"H3068\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 29, + "text": "You|strong=\"H3605\"* will|strong=\"H1961\"* grope|strong=\"H4959\"* at|strong=\"H3117\"* noonday|strong=\"H6672\"*, as|strong=\"H3117\"* the|strong=\"H3605\"* blind|strong=\"H5787\"* gropes|strong=\"H4959\"* in|strong=\"H3117\"* darkness, and|strong=\"H3117\"* you|strong=\"H3605\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* prosper|strong=\"H6743\"* in|strong=\"H3117\"* your|strong=\"H3605\"* ways|strong=\"H1870\"*. You|strong=\"H3605\"* will|strong=\"H1961\"* only|strong=\"H3605\"* be|strong=\"H1961\"* oppressed|strong=\"H6231\"* and|strong=\"H3117\"* robbed|strong=\"H1497\"* always|strong=\"H3605\"*, and|strong=\"H3117\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3808\"* one|strong=\"H3605\"* to|strong=\"H1961\"* save|strong=\"H3467\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 30, + "text": "You|strong=\"H3808\"* will|strong=\"H1004\"* betroth a|strong=\"H3068\"* wife, and|strong=\"H1004\"* another|strong=\"H3808\"* man shall|strong=\"H1004\"* lie with|strong=\"H1004\"* her|strong=\"H1129\"*. You|strong=\"H3808\"* will|strong=\"H1004\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* you|strong=\"H3808\"* won’t dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H3808\"*. You|strong=\"H3808\"* will|strong=\"H1004\"* plant|strong=\"H5193\"* a|strong=\"H3068\"* vineyard|strong=\"H3754\"*, and|strong=\"H1004\"* not|strong=\"H3808\"* use|strong=\"H2490\"* its|strong=\"H2490\"* fruit|strong=\"H2490\"*." + }, + { + "verseNum": 31, + "text": "Your|strong=\"H5414\"* ox|strong=\"H7794\"* will|strong=\"H5869\"* be|strong=\"H3808\"* slain|strong=\"H2873\"* before|strong=\"H6440\"* your|strong=\"H5414\"* eyes|strong=\"H5869\"*, and|strong=\"H7725\"* you|strong=\"H5414\"* will|strong=\"H5869\"* not|strong=\"H3808\"* eat any|strong=\"H4480\"* of|strong=\"H6440\"* it|strong=\"H5414\"*. Your|strong=\"H5414\"* donkey|strong=\"H2543\"* will|strong=\"H5869\"* be|strong=\"H3808\"* violently taken|strong=\"H5414\"* away|strong=\"H7725\"* from|strong=\"H4480\"* before|strong=\"H6440\"* your|strong=\"H5414\"* face|strong=\"H6440\"*, and|strong=\"H7725\"* will|strong=\"H5869\"* not|strong=\"H3808\"* be|strong=\"H3808\"* restored|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H5414\"*. Your|strong=\"H5414\"* sheep|strong=\"H6629\"* will|strong=\"H5869\"* be|strong=\"H3808\"* given|strong=\"H5414\"* to|strong=\"H7725\"* your|strong=\"H5414\"* enemies, and|strong=\"H7725\"* you|strong=\"H5414\"* will|strong=\"H5869\"* have|strong=\"H5869\"* no|strong=\"H3808\"* one|strong=\"H3808\"* to|strong=\"H7725\"* save|strong=\"H3467\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 32, + "text": "Your|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H3605\"* daughters|strong=\"H1323\"* will|strong=\"H5971\"* be|strong=\"H3027\"* given|strong=\"H5414\"* to|strong=\"H5414\"* another|strong=\"H7200\"* people|strong=\"H5971\"*. Your|strong=\"H3605\"* eyes|strong=\"H5869\"* will|strong=\"H5971\"* look|strong=\"H7200\"* and|strong=\"H1121\"* fail|strong=\"H5414\"* with|strong=\"H3117\"* longing for|strong=\"H3027\"* them|strong=\"H5414\"* all|strong=\"H3605\"* day|strong=\"H3117\"* long|strong=\"H3117\"*. There|strong=\"H3117\"* will|strong=\"H5971\"* be|strong=\"H3027\"* no|strong=\"H3605\"* power|strong=\"H3027\"* in|strong=\"H3117\"* your|strong=\"H3605\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 33, + "text": "A|strong=\"H3068\"* nation|strong=\"H5971\"* which|strong=\"H5971\"* you|strong=\"H3605\"* don’t know|strong=\"H3045\"* will|strong=\"H1961\"* eat the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H3117\"* your|strong=\"H3605\"* ground and|strong=\"H3117\"* all|strong=\"H3605\"* of|strong=\"H3117\"* your|strong=\"H3605\"* work|strong=\"H3018\"*. You|strong=\"H3605\"* will|strong=\"H1961\"* only|strong=\"H7535\"* be|strong=\"H1961\"* oppressed|strong=\"H6231\"* and|strong=\"H3117\"* crushed|strong=\"H7533\"* always|strong=\"H3605\"*," + }, + { + "verseNum": 34, + "text": "so|strong=\"H1961\"* that|strong=\"H7200\"* the|strong=\"H7200\"* sights that|strong=\"H7200\"* you|strong=\"H7200\"* see|strong=\"H7200\"* with|strong=\"H5869\"* your|strong=\"H7200\"* eyes|strong=\"H5869\"* will|strong=\"H1961\"* drive you|strong=\"H7200\"* mad|strong=\"H7696\"*." + }, + { + "verseNum": 35, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* you|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* knees|strong=\"H1290\"* and|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* legs|strong=\"H7785\"* with|strong=\"H3068\"* a|strong=\"H3068\"* sore|strong=\"H7451\"* boil|strong=\"H7822\"*, of|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H5921\"* cannot|strong=\"H3808\"* be|strong=\"H3808\"* healed|strong=\"H7495\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* sole|strong=\"H3709\"* of|strong=\"H3068\"* your|strong=\"H3068\"* foot|strong=\"H7272\"* to|strong=\"H5704\"* the|strong=\"H5921\"* crown|strong=\"H6936\"* of|strong=\"H3068\"* your|strong=\"H3068\"* head|strong=\"H6936\"*." + }, + { + "verseNum": 36, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H3212\"* you|strong=\"H5921\"*, and|strong=\"H6965\"* your|strong=\"H3068\"* king|strong=\"H4428\"* whom you|strong=\"H5921\"* will|strong=\"H3068\"* set|strong=\"H6965\"* over|strong=\"H5921\"* yourselves|strong=\"H8033\"*, to|strong=\"H3068\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* that|strong=\"H3045\"* you|strong=\"H5921\"* have|strong=\"H3068\"* not|strong=\"H3808\"* known|strong=\"H3045\"*, you|strong=\"H5921\"* nor|strong=\"H3808\"* your|strong=\"H3068\"* fathers. There|strong=\"H8033\"* you|strong=\"H5921\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* other gods of|strong=\"H4428\"* wood|strong=\"H6086\"* and|strong=\"H6965\"* stone." + }, + { + "verseNum": 37, + "text": "You|strong=\"H3605\"* will|strong=\"H3068\"* become|strong=\"H1961\"* an|strong=\"H1961\"* astonishment|strong=\"H8047\"*, a|strong=\"H3068\"* proverb|strong=\"H4912\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* byword|strong=\"H8148\"* among|strong=\"H8148\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* where|strong=\"H8033\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* lead|strong=\"H5090\"* you|strong=\"H3605\"* away|strong=\"H5090\"*." + }, + { + "verseNum": 38, + "text": "You|strong=\"H3588\"* will|strong=\"H7704\"* carry|strong=\"H3318\"* much|strong=\"H7227\"* seed|strong=\"H2233\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3588\"* field|strong=\"H7704\"*, and|strong=\"H7704\"* will|strong=\"H7704\"* gather little|strong=\"H4592\"* in|strong=\"H7227\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* locust will|strong=\"H7704\"* consume|strong=\"H2628\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 39, + "text": "You|strong=\"H3588\"* will|strong=\"H3808\"* plant|strong=\"H5193\"* vineyards|strong=\"H3754\"* and|strong=\"H8354\"* dress|strong=\"H5647\"* them|strong=\"H5647\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3808\"* neither|strong=\"H3808\"* drink|strong=\"H8354\"* of|strong=\"H5647\"* the|strong=\"H3588\"* wine|strong=\"H3196\"*, nor|strong=\"H3808\"* harvest, because|strong=\"H3588\"* worms|strong=\"H8438\"* will|strong=\"H3808\"* eat them|strong=\"H5647\"*." + }, + { + "verseNum": 40, + "text": "You|strong=\"H3588\"* will|strong=\"H1961\"* have|strong=\"H1961\"* olive|strong=\"H2132\"* trees|strong=\"H2132\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3605\"* borders|strong=\"H1366\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* won’t anoint|strong=\"H5480\"* yourself with|strong=\"H3605\"* the|strong=\"H3605\"* oil|strong=\"H8081\"*, for|strong=\"H3588\"* your|strong=\"H3605\"* olives|strong=\"H2132\"* will|strong=\"H1961\"* drop|strong=\"H5394\"* off|strong=\"H5394\"*." + }, + { + "verseNum": 41, + "text": "You|strong=\"H3588\"* will|strong=\"H1961\"* father|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* daughters|strong=\"H1323\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* yours, for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H1961\"* go|strong=\"H3212\"* into|strong=\"H3212\"* captivity|strong=\"H7628\"*." + }, + { + "verseNum": 42, + "text": "Locusts will|strong=\"H6529\"* consume|strong=\"H3423\"* all|strong=\"H3605\"* of|strong=\"H6086\"* your|strong=\"H3605\"* trees|strong=\"H6086\"* and|strong=\"H6086\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H6086\"* your|strong=\"H3605\"* ground." + }, + { + "verseNum": 43, + "text": "The|strong=\"H5921\"* foreigner|strong=\"H1616\"* who|strong=\"H1616\"* is|strong=\"H7130\"* among|strong=\"H7130\"* you|strong=\"H5921\"* will|strong=\"H3381\"* mount|strong=\"H5927\"* up|strong=\"H5927\"* above|strong=\"H4605\"* you|strong=\"H5921\"* higher|strong=\"H4605\"* and|strong=\"H3381\"* higher|strong=\"H4605\"*, and|strong=\"H3381\"* you|strong=\"H5921\"* will|strong=\"H3381\"* come|strong=\"H5927\"* down|strong=\"H3381\"* lower|strong=\"H4295\"* and|strong=\"H3381\"* lower|strong=\"H4295\"*." + }, + { + "verseNum": 44, + "text": "He|strong=\"H1931\"* will|strong=\"H1961\"* lend|strong=\"H3867\"* to|strong=\"H1961\"* you|strong=\"H3808\"*, and|strong=\"H7218\"* you|strong=\"H3808\"* won’t lend|strong=\"H3867\"* to|strong=\"H1961\"* him|strong=\"H1931\"*. He|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* the|strong=\"H1961\"* head|strong=\"H7218\"*, and|strong=\"H7218\"* you|strong=\"H3808\"* will|strong=\"H1961\"* be|strong=\"H1961\"* the|strong=\"H1961\"* tail|strong=\"H2180\"*." + }, + { + "verseNum": 45, + "text": "All|strong=\"H3605\"* these|strong=\"H8085\"* curses|strong=\"H7045\"* will|strong=\"H3068\"* come on|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* pursue|strong=\"H7291\"* you|strong=\"H3588\"* and|strong=\"H3068\"* overtake|strong=\"H5381\"* you|strong=\"H3588\"*, until|strong=\"H5704\"* you|strong=\"H3588\"* are|strong=\"H3068\"* destroyed|strong=\"H8045\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* didn’t listen|strong=\"H8085\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, to|strong=\"H5704\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"* and|strong=\"H3068\"* his|strong=\"H3605\"* statutes|strong=\"H2708\"* which|strong=\"H3068\"* he|strong=\"H3588\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 46, + "text": "They|strong=\"H5704\"* will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H5704\"* a|strong=\"H3068\"* sign|strong=\"H4159\"* and|strong=\"H5769\"* for|strong=\"H5704\"* a|strong=\"H3068\"* wonder|strong=\"H4159\"* to|strong=\"H5704\"* you|strong=\"H5704\"* and|strong=\"H5769\"* to|strong=\"H5704\"* your|strong=\"H1961\"* offspring|strong=\"H2233\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 47, + "text": "Because|strong=\"H8478\"* you|strong=\"H3605\"* didn’t serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* with|strong=\"H3068\"* joyfulness|strong=\"H8057\"* and|strong=\"H3068\"* with|strong=\"H3068\"* gladness|strong=\"H8057\"* of|strong=\"H3068\"* heart|strong=\"H3824\"*, by|strong=\"H3068\"* reason of|strong=\"H3068\"* the|strong=\"H3605\"* abundance|strong=\"H7230\"* of|strong=\"H3068\"* all|strong=\"H3605\"* things|strong=\"H3605\"*;" + }, + { + "verseNum": 48, + "text": "therefore|strong=\"H5921\"* you|strong=\"H5414\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* your|strong=\"H3068\"* enemies whom Yahweh|strong=\"H3068\"* sends|strong=\"H7971\"* against|strong=\"H5921\"* you|strong=\"H5414\"*, in|strong=\"H5921\"* hunger|strong=\"H7458\"*, in|strong=\"H5921\"* thirst|strong=\"H6772\"*, in|strong=\"H5921\"* nakedness|strong=\"H5903\"*, and|strong=\"H3068\"* in|strong=\"H5921\"* lack|strong=\"H2640\"* of|strong=\"H3068\"* all|strong=\"H3605\"* things|strong=\"H3605\"*. He|strong=\"H5704\"* will|strong=\"H3068\"* put|strong=\"H5414\"* an|strong=\"H5414\"* iron|strong=\"H1270\"* yoke|strong=\"H5923\"* on|strong=\"H5921\"* your|strong=\"H3068\"* neck|strong=\"H6677\"* until|strong=\"H5704\"* he|strong=\"H5704\"* has|strong=\"H3068\"* destroyed|strong=\"H8045\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 49, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H5375\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* against|strong=\"H5921\"* you|strong=\"H5921\"* from|strong=\"H5921\"* far|strong=\"H7350\"* away|strong=\"H5375\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* end|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H5921\"* earth, as|strong=\"H3068\"* the|strong=\"H5921\"* eagle|strong=\"H5404\"* flies|strong=\"H1675\"*: a|strong=\"H3068\"* nation|strong=\"H1471\"* whose|strong=\"H1471\"* language|strong=\"H3956\"* you|strong=\"H5921\"* will|strong=\"H3068\"* not|strong=\"H3808\"* understand|strong=\"H8085\"*," + }, + { + "verseNum": 50, + "text": "a|strong=\"H3068\"* nation|strong=\"H1471\"* of|strong=\"H6440\"* fierce|strong=\"H5794\"* facial expressions, that|strong=\"H1471\"* doesn’t respect|strong=\"H5375\"* the|strong=\"H6440\"* elderly, nor|strong=\"H3808\"* show|strong=\"H5375\"* favor|strong=\"H6440\"* to|strong=\"H6440\"* the|strong=\"H6440\"* young|strong=\"H5288\"*." + }, + { + "verseNum": 51, + "text": "They|strong=\"H3808\"* will|strong=\"H3808\"* eat the|strong=\"H5704\"* fruit|strong=\"H6529\"* of|strong=\"H6629\"* your|strong=\"H3808\"* livestock and|strong=\"H6629\"* the|strong=\"H5704\"* fruit|strong=\"H6529\"* of|strong=\"H6629\"* your|strong=\"H3808\"* ground, until|strong=\"H5704\"* you|strong=\"H5704\"* are|strong=\"H3808\"* destroyed|strong=\"H8045\"*. They|strong=\"H3808\"* also won’t leave|strong=\"H7604\"* you|strong=\"H5704\"* grain|strong=\"H1715\"*, new|strong=\"H8492\"* wine|strong=\"H8492\"*, oil|strong=\"H3323\"*, the|strong=\"H5704\"* increase|strong=\"H7698\"* of|strong=\"H6629\"* your|strong=\"H3808\"* livestock, or|strong=\"H3808\"* the|strong=\"H5704\"* young|strong=\"H6251\"* of|strong=\"H6629\"* your|strong=\"H3808\"* flock|strong=\"H6629\"*, until|strong=\"H5704\"* they|strong=\"H3808\"* have|strong=\"H7604\"* caused you|strong=\"H5704\"* to|strong=\"H5704\"* perish." + }, + { + "verseNum": 52, + "text": "They|strong=\"H3068\"* will|strong=\"H3068\"* besiege|strong=\"H6887\"* you|strong=\"H5414\"* in|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* gates|strong=\"H8179\"* until|strong=\"H5704\"* your|strong=\"H3068\"* high|strong=\"H1364\"* and|strong=\"H3068\"* fortified|strong=\"H1219\"* walls|strong=\"H2346\"* in|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H5414\"* trusted come|strong=\"H3381\"* down|strong=\"H3381\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3068\"* land. They|strong=\"H3068\"* will|strong=\"H3068\"* besiege|strong=\"H6887\"* you|strong=\"H5414\"* in|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* gates|strong=\"H8179\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3068\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 53, + "text": "You|strong=\"H5414\"* will|strong=\"H3068\"* eat the|strong=\"H5414\"* fruit|strong=\"H6529\"* of|strong=\"H1121\"* your|strong=\"H3068\"* own body|strong=\"H1320\"*, the|strong=\"H5414\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* your|strong=\"H3068\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H3068\"* daughters|strong=\"H1323\"*, whom Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*, in|strong=\"H3068\"* the|strong=\"H5414\"* siege|strong=\"H4692\"* and|strong=\"H1121\"* in|strong=\"H3068\"* the|strong=\"H5414\"* distress|strong=\"H6693\"* with|strong=\"H3068\"* which|strong=\"H3068\"* your|strong=\"H3068\"* enemies will|strong=\"H3068\"* distress|strong=\"H6693\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 54, + "text": "The|strong=\"H5869\"* man|strong=\"H1121\"* who|strong=\"H1121\"* is|strong=\"H1121\"* tender|strong=\"H7390\"* among you|strong=\"H7489\"*, and|strong=\"H1121\"* very|strong=\"H3966\"* delicate|strong=\"H6028\"*, his|strong=\"H5869\"* eye|strong=\"H5869\"* will|strong=\"H5869\"* be|strong=\"H1121\"* evil|strong=\"H7489\"* toward his|strong=\"H5869\"* brother, toward the|strong=\"H5869\"* wife whom|strong=\"H5869\"* he|strong=\"H1121\"* loves, and|strong=\"H1121\"* toward the|strong=\"H5869\"* remnant|strong=\"H3499\"* of|strong=\"H1121\"* his|strong=\"H5869\"* children|strong=\"H1121\"* whom|strong=\"H5869\"* he|strong=\"H1121\"* has|strong=\"H5869\"* remaining|strong=\"H3498\"*," + }, + { + "verseNum": 55, + "text": "so|strong=\"H5414\"* that|strong=\"H3605\"* he|strong=\"H3605\"* will|strong=\"H1121\"* not|strong=\"H5414\"* give|strong=\"H5414\"* to|strong=\"H5414\"* any|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H3605\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* his|strong=\"H3605\"* children|strong=\"H1121\"* whom|strong=\"H1992\"* he|strong=\"H3605\"* will|strong=\"H1121\"* eat, because|strong=\"H1097\"* he|strong=\"H3605\"* has|strong=\"H3605\"* nothing|strong=\"H3605\"* left|strong=\"H7604\"* to|strong=\"H5414\"* him|strong=\"H5414\"*, in|strong=\"H1320\"* the|strong=\"H3605\"* siege|strong=\"H4692\"* and|strong=\"H1121\"* in|strong=\"H1320\"* the|strong=\"H3605\"* distress|strong=\"H6693\"* with|strong=\"H1320\"* which|strong=\"H1992\"* your|strong=\"H3605\"* enemy will|strong=\"H1121\"* distress|strong=\"H6693\"* you|strong=\"H5414\"* in|strong=\"H1320\"* all|strong=\"H3605\"* your|strong=\"H3605\"* gates|strong=\"H8179\"*." + }, + { + "verseNum": 56, + "text": "The|strong=\"H5921\"* tender|strong=\"H7390\"* and|strong=\"H1121\"* delicate|strong=\"H6028\"* woman|strong=\"H1323\"* among|strong=\"H5921\"* you|strong=\"H5921\"*, who|strong=\"H1121\"* would not|strong=\"H3808\"* venture|strong=\"H5254\"* to|strong=\"H5921\"* set|strong=\"H3322\"* the|strong=\"H5921\"* sole|strong=\"H3709\"* of|strong=\"H1121\"* her|strong=\"H5921\"* foot|strong=\"H7272\"* on|strong=\"H5921\"* the|strong=\"H5921\"* ground for|strong=\"H5921\"* delicateness|strong=\"H6026\"* and|strong=\"H1121\"* tenderness|strong=\"H7391\"*, her|strong=\"H5921\"* eye|strong=\"H5869\"* will|strong=\"H5869\"* be|strong=\"H3808\"* evil|strong=\"H7489\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* husband that|strong=\"H1121\"* she|strong=\"H5921\"* loves, toward|strong=\"H5921\"* her|strong=\"H5921\"* son|strong=\"H1121\"*, toward|strong=\"H5921\"* her|strong=\"H5921\"* daughter|strong=\"H1323\"*," + }, + { + "verseNum": 57, + "text": "toward|strong=\"H3318\"* her|strong=\"H3605\"* young|strong=\"H1121\"* one|strong=\"H3605\"* who|strong=\"H3605\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* between her|strong=\"H3605\"* feet|strong=\"H7272\"*, and|strong=\"H1121\"* toward|strong=\"H3318\"* her|strong=\"H3605\"* children|strong=\"H1121\"* whom|strong=\"H3588\"* she|strong=\"H3588\"* bears|strong=\"H3205\"*; for|strong=\"H3588\"* she|strong=\"H3588\"* will|strong=\"H1121\"* eat them|strong=\"H3318\"* secretly|strong=\"H5643\"* for|strong=\"H3588\"* lack|strong=\"H2640\"* of|strong=\"H1121\"* all|strong=\"H3605\"* things|strong=\"H3605\"* in|strong=\"H1121\"* the|strong=\"H3605\"* siege|strong=\"H4692\"* and|strong=\"H1121\"* in|strong=\"H1121\"* the|strong=\"H3605\"* distress|strong=\"H6693\"* with|strong=\"H3318\"* which|strong=\"H8179\"* your|strong=\"H3605\"* enemy will|strong=\"H1121\"* distress|strong=\"H6693\"* you|strong=\"H3588\"* in|strong=\"H1121\"* your|strong=\"H3605\"* gates|strong=\"H8179\"*." + }, + { + "verseNum": 58, + "text": "If you|strong=\"H3605\"* will|strong=\"H3068\"* not|strong=\"H3808\"* observe|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* this|strong=\"H2088\"* law|strong=\"H8451\"* that|strong=\"H3605\"* are|strong=\"H1697\"* written|strong=\"H3789\"* in|strong=\"H3068\"* this|strong=\"H2088\"* book|strong=\"H5612\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H3068\"* fear|strong=\"H3372\"* this|strong=\"H2088\"* glorious|strong=\"H3513\"* and|strong=\"H3068\"* fearful|strong=\"H3372\"* name|strong=\"H8034\"*, YAHWEH|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 59, + "text": "then|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* make|strong=\"H6381\"* your|strong=\"H3068\"* plagues|strong=\"H4347\"* and|strong=\"H3068\"* the|strong=\"H3068\"* plagues|strong=\"H4347\"* of|strong=\"H3068\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"* fearful, even|strong=\"H3068\"* great|strong=\"H1419\"* plagues|strong=\"H4347\"*, and|strong=\"H3068\"* of|strong=\"H3068\"* long|strong=\"H1419\"* duration, and|strong=\"H3068\"* severe|strong=\"H1419\"* sicknesses|strong=\"H2483\"*, and|strong=\"H3068\"* of|strong=\"H3068\"* long|strong=\"H1419\"* duration." + }, + { + "verseNum": 60, + "text": "He|strong=\"H3605\"* will|strong=\"H4714\"* bring|strong=\"H7725\"* on|strong=\"H6440\"* you|strong=\"H6440\"* again|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* diseases|strong=\"H4064\"* of|strong=\"H6440\"* Egypt|strong=\"H4714\"*, which|strong=\"H3605\"* you|strong=\"H6440\"* were|strong=\"H4714\"* afraid|strong=\"H3025\"* of|strong=\"H6440\"*; and|strong=\"H7725\"* they|strong=\"H3605\"* will|strong=\"H4714\"* cling|strong=\"H1692\"* to|strong=\"H7725\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 61, + "text": "Also|strong=\"H1571\"* every|strong=\"H3605\"* sickness|strong=\"H2483\"* and|strong=\"H3068\"* every|strong=\"H3605\"* plague|strong=\"H4347\"* which|strong=\"H3068\"* is|strong=\"H3068\"* not|strong=\"H3808\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H3068\"* this|strong=\"H2063\"* law|strong=\"H8451\"*, Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H5927\"* them|strong=\"H5921\"* on|strong=\"H5921\"* you|strong=\"H3605\"* until|strong=\"H5704\"* you|strong=\"H3605\"* are|strong=\"H3068\"* destroyed|strong=\"H8045\"*." + }, + { + "verseNum": 62, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* left|strong=\"H7604\"* few|strong=\"H4592\"* in|strong=\"H3068\"* number|strong=\"H7230\"*, even|strong=\"H3588\"* though|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H8085\"* stars|strong=\"H3556\"* of|strong=\"H3068\"* the|strong=\"H8085\"* sky|strong=\"H8064\"* for|strong=\"H3588\"* multitude|strong=\"H7230\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* didn’t listen|strong=\"H8085\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*." + }, + { + "verseNum": 63, + "text": "It|strong=\"H5921\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H3068\"* as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* rejoiced|strong=\"H7797\"* over|strong=\"H5921\"* you|strong=\"H5921\"* to|strong=\"H3068\"* do|strong=\"H3190\"* you|strong=\"H5921\"* good|strong=\"H3190\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* multiply|strong=\"H7235\"* you|strong=\"H5921\"*, so|strong=\"H3651\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* rejoice|strong=\"H7797\"* over|strong=\"H5921\"* you|strong=\"H5921\"* to|strong=\"H3068\"* cause|strong=\"H3651\"* you|strong=\"H5921\"* to|strong=\"H3068\"* perish and|strong=\"H3068\"* to|strong=\"H3068\"* destroy|strong=\"H8045\"* you|strong=\"H5921\"*. You|strong=\"H5921\"* will|strong=\"H3068\"* be|strong=\"H1961\"* plucked|strong=\"H5255\"* from|strong=\"H5921\"* the|strong=\"H5921\"* land that|strong=\"H3068\"* you|strong=\"H5921\"* are|strong=\"H3068\"* going in|strong=\"H5921\"* to|strong=\"H3068\"* possess|strong=\"H3423\"*." + }, + { + "verseNum": 64, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* scatter|strong=\"H6327\"* you|strong=\"H3605\"* among|strong=\"H5971\"* all|strong=\"H3605\"* peoples|strong=\"H5971\"*, from|strong=\"H5704\"* one|strong=\"H3605\"* end|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth to|strong=\"H5704\"* the|strong=\"H3605\"* other|strong=\"H3605\"* end|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth. There|strong=\"H8033\"* you|strong=\"H3605\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* other|strong=\"H3605\"* gods which|strong=\"H3068\"* you|strong=\"H3605\"* have|strong=\"H3068\"* not|strong=\"H3808\"* known|strong=\"H3045\"*, you|strong=\"H3605\"* nor|strong=\"H3808\"* your|strong=\"H3068\"* fathers, even|strong=\"H5704\"* wood|strong=\"H6086\"* and|strong=\"H3068\"* stone." + }, + { + "verseNum": 65, + "text": "Among|strong=\"H3808\"* these|strong=\"H1992\"* nations|strong=\"H1471\"* you|strong=\"H5414\"* will|strong=\"H3068\"* find|strong=\"H7280\"* no|strong=\"H3808\"* ease|strong=\"H7280\"*, and|strong=\"H3068\"* there|strong=\"H8033\"* will|strong=\"H3068\"* be|strong=\"H1961\"* no|strong=\"H3808\"* rest|strong=\"H4494\"* for|strong=\"H3068\"* the|strong=\"H5414\"* sole|strong=\"H3709\"* of|strong=\"H3068\"* your|strong=\"H3068\"* foot|strong=\"H7272\"*; but|strong=\"H3808\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H5414\"* there|strong=\"H8033\"* a|strong=\"H3068\"* trembling|strong=\"H7268\"* heart|strong=\"H3820\"*, failing|strong=\"H3631\"* of|strong=\"H3068\"* eyes|strong=\"H5869\"*, and|strong=\"H3068\"* pining of|strong=\"H3068\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 66, + "text": "Your|strong=\"H1961\"* life|strong=\"H2416\"* will|strong=\"H1961\"* hang|strong=\"H8511\"* in|strong=\"H3808\"* doubt before|strong=\"H5048\"* you|strong=\"H3808\"*. You|strong=\"H3808\"* will|strong=\"H1961\"* be|strong=\"H1961\"* afraid|strong=\"H6342\"* night|strong=\"H3915\"* and|strong=\"H3119\"* day|strong=\"H3119\"*, and|strong=\"H3119\"* will|strong=\"H1961\"* have|strong=\"H1961\"* no|strong=\"H3808\"* assurance of|strong=\"H5048\"* your|strong=\"H1961\"* life|strong=\"H2416\"*." + }, + { + "verseNum": 67, + "text": "In|strong=\"H5414\"* the|strong=\"H7200\"* morning|strong=\"H1242\"* you|strong=\"H5414\"* will|strong=\"H4310\"* say, “I|strong=\"H5414\"* wish|strong=\"H4310\"* it|strong=\"H5414\"* were|strong=\"H5869\"* evening|strong=\"H6153\"*!” and|strong=\"H5869\"* at|strong=\"H7200\"* evening|strong=\"H6153\"* you|strong=\"H5414\"* will|strong=\"H4310\"* say, “I|strong=\"H5414\"* wish|strong=\"H4310\"* it|strong=\"H5414\"* were|strong=\"H5869\"* morning|strong=\"H1242\"*!” for|strong=\"H5869\"* the|strong=\"H7200\"* fear|strong=\"H6343\"* of|strong=\"H5869\"* your|strong=\"H5414\"* heart|strong=\"H3824\"* which|strong=\"H4310\"* you|strong=\"H5414\"* will|strong=\"H4310\"* fear|strong=\"H6343\"*, and|strong=\"H5869\"* for|strong=\"H5869\"* the|strong=\"H7200\"* sights which|strong=\"H4310\"* your|strong=\"H5414\"* eyes|strong=\"H5869\"* will|strong=\"H4310\"* see|strong=\"H7200\"*." + }, + { + "verseNum": 68, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H7725\"* you|strong=\"H7725\"* into|strong=\"H7725\"* Egypt|strong=\"H4714\"* again|strong=\"H7725\"* with|strong=\"H3068\"* ships, by|strong=\"H3068\"* the|strong=\"H7200\"* way|strong=\"H1870\"* of|strong=\"H3068\"* which|strong=\"H3068\"* I|strong=\"H4714\"* told you|strong=\"H7725\"* that|strong=\"H7200\"* you|strong=\"H7725\"* would|strong=\"H3068\"* never|strong=\"H3808\"* see|strong=\"H7200\"* it|strong=\"H7725\"* again|strong=\"H7725\"*. There|strong=\"H8033\"* you|strong=\"H7725\"* will|strong=\"H3068\"* offer|strong=\"H4376\"* yourselves|strong=\"H8033\"* to|strong=\"H7725\"* your|strong=\"H3068\"* enemies for|strong=\"H4714\"* male|strong=\"H5650\"* and|strong=\"H3068\"* female|strong=\"H8198\"* slaves|strong=\"H5650\"*, and|strong=\"H3068\"* nobody|strong=\"H3808\"* will|strong=\"H3068\"* buy|strong=\"H7069\"* you|strong=\"H7725\"*." + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "These|strong=\"H6213\"* are|strong=\"H3478\"* the|strong=\"H3605\"* words of|strong=\"H3068\"* the|strong=\"H3605\"* covenant which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded Moses|strong=\"H4872\"* to|strong=\"H3478\"* make|strong=\"H6213\"* with|strong=\"H3068\"* the|strong=\"H3605\"* children of|strong=\"H3068\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Moab, in|strong=\"H3478\"* addition to|strong=\"H3478\"* the|strong=\"H3605\"* covenant which|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* with|strong=\"H3068\"* them|strong=\"H6213\"* in|strong=\"H3478\"* Horeb." + }, + { + "verseNum": 2, + "text": "Moses called to|strong=\"H7200\"* all|strong=\"H7200\"* Israel, and|strong=\"H1419\"* said to|strong=\"H7200\"* them|strong=\"H1992\"*:" + }, + { + "verseNum": 3, + "text": "the|strong=\"H8085\"* great trials which|strong=\"H3068\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"* saw|strong=\"H7200\"*, the|strong=\"H8085\"* signs, and|strong=\"H3068\"* those|strong=\"H8085\"* great wonders." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3808\"* Yahweh|strong=\"H3068\"* has|strong=\"H7272\"* not|strong=\"H3808\"* given you|strong=\"H5921\"* a|strong=\"H3068\"* heart to|strong=\"H3212\"* know, eyes to|strong=\"H3212\"* see, and|strong=\"H3212\"* ears to|strong=\"H3212\"* hear, to|strong=\"H3212\"* this|strong=\"H3212\"* day." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3588\"* have|strong=\"H3068\"* led|strong=\"H3068\"* you|strong=\"H3588\"* forty years in|strong=\"H3068\"* the|strong=\"H3588\"* wilderness. Your|strong=\"H3068\"* clothes have|strong=\"H3068\"* not|strong=\"H3808\"* grown old on|strong=\"H3068\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* sandals have|strong=\"H3068\"* not|strong=\"H3808\"* grown old on|strong=\"H3068\"* your|strong=\"H3068\"* feet." + }, + { + "verseNum": 6, + "text": "You|strong=\"H5221\"* have|strong=\"H4428\"* not|strong=\"H2088\"* eaten bread, neither have|strong=\"H4428\"* you|strong=\"H5221\"* drunk wine or|strong=\"H4428\"* strong drink, that|strong=\"H4428\"* you|strong=\"H5221\"* may|strong=\"H4428\"* know that|strong=\"H4428\"* I|strong=\"H2088\"* am Yahweh|strong=\"H3068\"* your|strong=\"H3318\"* God." + }, + { + "verseNum": 7, + "text": "When you|strong=\"H5414\"* came to|strong=\"H5414\"* this|strong=\"H5414\"* place|strong=\"H5414\"*, Sihon the|strong=\"H5414\"* king of|strong=\"H7626\"* Heshbon and|strong=\"H3947\"* Og the|strong=\"H5414\"* king of|strong=\"H7626\"* Bashan came out|strong=\"H5414\"* against us|strong=\"H5414\"* to|strong=\"H5414\"* battle, and|strong=\"H3947\"* we|strong=\"H3068\"* struck them|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "We|strong=\"H6213\"* took their|strong=\"H3605\"* land, and|strong=\"H6213\"* gave|strong=\"H6213\"* it|strong=\"H6213\"* for|strong=\"H6213\"* an|strong=\"H6213\"* inheritance to|strong=\"H6213\"* the|strong=\"H3605\"* Reubenites, and|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H3605\"* Gadites, and|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H3605\"* half-tribe of|strong=\"H1697\"* the|strong=\"H3605\"* Manassites." + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H3068\"* keep the|strong=\"H3605\"* words of|strong=\"H3068\"* this|strong=\"H6440\"* covenant and|strong=\"H3478\"* do|strong=\"H3068\"* them|strong=\"H6440\"*, that|strong=\"H3605\"* you|strong=\"H6440\"* may|strong=\"H3068\"* prosper in|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H6440\"* do|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "All|strong=\"H5704\"* of|strong=\"H4325\"* you|strong=\"H5704\"* stand today in|strong=\"H7130\"* the|strong=\"H5704\"* presence|strong=\"H7130\"* of|strong=\"H4325\"* Yahweh|strong=\"H3068\"* your|strong=\"H5704\"* God: your|strong=\"H5704\"* heads, your|strong=\"H5704\"* tribes, your|strong=\"H5704\"* elders, and|strong=\"H6086\"* your|strong=\"H5704\"* officers, even|strong=\"H5704\"* all|strong=\"H5704\"* the|strong=\"H5704\"* men|strong=\"H4264\"* of|strong=\"H4325\"* Israel," + }, + { + "verseNum": 11, + "text": "your|strong=\"H3068\"* little ones, your|strong=\"H3068\"* wives, and|strong=\"H3068\"* the|strong=\"H3068\"* foreigners who|strong=\"H3068\"* are|strong=\"H3117\"* in|strong=\"H3068\"* the|strong=\"H3068\"* middle of|strong=\"H3068\"* your|strong=\"H3068\"* camps, from|strong=\"H3772\"* the|strong=\"H3068\"* one|strong=\"H3068\"* who|strong=\"H3068\"* cuts|strong=\"H3772\"* your|strong=\"H3068\"* wood to|strong=\"H3068\"* the|strong=\"H3068\"* one|strong=\"H3068\"* who|strong=\"H3068\"* draws your|strong=\"H3068\"* water," + }, + { + "verseNum": 12, + "text": "that|strong=\"H5971\"* you|strong=\"H3117\"* may|strong=\"H1961\"* enter into|strong=\"H1961\"* the|strong=\"H3117\"* covenant|strong=\"H7650\"* of|strong=\"H3117\"* Yahweh|strong=\"H3068\"* your|strong=\"H1961\"* God, and|strong=\"H6965\"* into|strong=\"H1961\"* his|strong=\"H1961\"* oath|strong=\"H7650\"*, which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* your|strong=\"H1961\"* God makes|strong=\"H1696\"* with|strong=\"H1696\"* you|strong=\"H3117\"* today|strong=\"H3117\"*," + }, + { + "verseNum": 13, + "text": "that|strong=\"H3808\"* he|strong=\"H3808\"* may|strong=\"H1285\"* establish you|strong=\"H3808\"* today as his|strong=\"H3808\"* people|strong=\"H3808\"*, and|strong=\"H1285\"* that|strong=\"H3808\"* he|strong=\"H3808\"* may|strong=\"H1285\"* be|strong=\"H3808\"* your|strong=\"H3808\"* God|strong=\"H3808\"*, as he|strong=\"H3808\"* spoke to|strong=\"H3808\"* you|strong=\"H3808\"* and|strong=\"H1285\"* as he|strong=\"H3808\"* swore to|strong=\"H3808\"* your|strong=\"H3808\"* fathers, to|strong=\"H3808\"* Abraham, to|strong=\"H3808\"* Isaac, and|strong=\"H1285\"* to|strong=\"H3808\"* Jacob." + }, + { + "verseNum": 14, + "text": "Neither|strong=\"H5973\"* do|strong=\"H3068\"* I|strong=\"H3588\"* make|strong=\"H5975\"* this|strong=\"H3588\"* covenant and|strong=\"H3068\"* this|strong=\"H3588\"* oath with|strong=\"H5973\"* you|strong=\"H3588\"* only|strong=\"H3588\"*," + }, + { + "verseNum": 15, + "text": "but|strong=\"H3588\"* with|strong=\"H3427\"* those|strong=\"H3427\"* who|strong=\"H3427\"* stand|strong=\"H3427\"* here with|strong=\"H3427\"* us|strong=\"H3045\"* today before|strong=\"H5674\"* Yahweh|strong=\"H3068\"* our|strong=\"H3588\"* God, and|strong=\"H4714\"* also|strong=\"H1471\"* with|strong=\"H3427\"* those|strong=\"H3427\"* who|strong=\"H3427\"* are|strong=\"H1471\"* not|strong=\"H3045\"* here with|strong=\"H3427\"* us|strong=\"H3045\"* today" + }, + { + "verseNum": 16, + "text": "(for|strong=\"H6086\"* you|strong=\"H5973\"* know how we|strong=\"H3068\"* lived in|strong=\"H6086\"* the|strong=\"H7200\"* land of|strong=\"H6086\"* Egypt, and|strong=\"H3701\"* how we|strong=\"H3068\"* came through|strong=\"H7200\"* the|strong=\"H7200\"* middle of|strong=\"H6086\"* the|strong=\"H7200\"* nations through|strong=\"H7200\"* which|strong=\"H6086\"* you|strong=\"H5973\"* passed;" + }, + { + "verseNum": 17, + "text": "and|strong=\"H3068\"* you|strong=\"H3117\"* have|strong=\"H3426\"* seen their|strong=\"H3068\"* abominations and|strong=\"H3068\"* their|strong=\"H3068\"* idols of|strong=\"H3068\"* wood, stone, silver, and|strong=\"H3068\"* gold, which|strong=\"H3068\"* were|strong=\"H3117\"* among|strong=\"H5973\"* them|strong=\"H1992\"*);" + }, + { + "verseNum": 18, + "text": "lest|strong=\"H4616\"* there|strong=\"H1961\"* should|strong=\"H3588\"* be|strong=\"H1961\"* among you|strong=\"H3588\"* man|strong=\"H6771\"*, woman, family, or|strong=\"H8085\"* tribe whose heart|strong=\"H3820\"* turns away|strong=\"H3212\"* today from|strong=\"H8085\"* Yahweh|strong=\"H3068\"* our|strong=\"H1288\"* God, to|strong=\"H3212\"* go|strong=\"H3212\"* to|strong=\"H3212\"* serve|strong=\"H1961\"* the|strong=\"H8085\"* gods of|strong=\"H1697\"* those|strong=\"H8085\"* nations; lest|strong=\"H4616\"* there|strong=\"H1961\"* should|strong=\"H3588\"* be|strong=\"H1961\"* among you|strong=\"H3588\"* a|strong=\"H3068\"* root that|strong=\"H3588\"* produces bitter poison;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H3068\"* it|strong=\"H1931\"* happen, when|strong=\"H3588\"* he|strong=\"H1931\"* hears the|strong=\"H3605\"* words of|strong=\"H3068\"* this|strong=\"H2088\"* curse, that|strong=\"H3588\"* he|strong=\"H1931\"* bless himself|strong=\"H1931\"* in|strong=\"H3068\"* his|strong=\"H3605\"* heart, saying, “I|strong=\"H3588\"* shall|strong=\"H3068\"* have|strong=\"H3068\"* peace, though|strong=\"H3588\"* I|strong=\"H3588\"* walk in|strong=\"H3068\"* the|strong=\"H3605\"* stubbornness of|strong=\"H3068\"* my|strong=\"H3605\"* heart,” to|strong=\"H3068\"* destroy|strong=\"H4229\"* the|strong=\"H3605\"* moist with|strong=\"H3068\"* the|strong=\"H3605\"* dry." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H2088\"* pardon him|strong=\"H3605\"*, but|strong=\"H7451\"* then|strong=\"H2088\"* Yahweh|strong=\"H3068\"*’s anger and|strong=\"H3478\"* his|strong=\"H3605\"* jealousy will|strong=\"H3068\"* smoke against|strong=\"H3068\"* that|strong=\"H3605\"* man|strong=\"H7451\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* curse that|strong=\"H3605\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H3478\"* this|strong=\"H2088\"* book|strong=\"H5612\"* will|strong=\"H3068\"* fall on|strong=\"H3068\"* him|strong=\"H3605\"*, and|strong=\"H3478\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* blot out|strong=\"H3605\"* his|strong=\"H3605\"* name from|strong=\"H3478\"* under|strong=\"H3605\"* the|strong=\"H3605\"* sky." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* set|strong=\"H6965\"* him|strong=\"H7200\"* apart for|strong=\"H3068\"* evil out|strong=\"H7200\"* of|strong=\"H1121\"* all|strong=\"H1755\"* the|strong=\"H7200\"* tribes of|strong=\"H1121\"* Israel, according to|strong=\"H3068\"* all|strong=\"H1755\"* the|strong=\"H7200\"* curses of|strong=\"H1121\"* the|strong=\"H7200\"* covenant written in|strong=\"H3068\"* this|strong=\"H1931\"* book of|strong=\"H1121\"* the|strong=\"H7200\"* law." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3605\"* generation to|strong=\"H3068\"* come|strong=\"H5927\"*—your|strong=\"H3068\"* children who|strong=\"H3605\"* will|strong=\"H3068\"* rise|strong=\"H5927\"* up|strong=\"H5927\"* after|strong=\"H5927\"* you|strong=\"H3605\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* foreigner who|strong=\"H3605\"* will|strong=\"H3068\"* come|strong=\"H5927\"* from|strong=\"H5927\"* a|strong=\"H3068\"* far|strong=\"H5927\"* land—will|strong=\"H3068\"* say, when|strong=\"H3068\"* they|strong=\"H3068\"* see the|strong=\"H3605\"* plagues of|strong=\"H3068\"* that|strong=\"H3605\"* land, and|strong=\"H3068\"* the|strong=\"H3605\"* sicknesses with|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H6779\"* it|strong=\"H5927\"* sick," + }, + { + "verseNum": 23, + "text": "that|strong=\"H3605\"* all|strong=\"H3605\"* of|strong=\"H3068\"* its|strong=\"H3605\"* land is|strong=\"H3068\"* sulfur, salt, and|strong=\"H3068\"* burning, that|strong=\"H3605\"* it|strong=\"H5921\"* is|strong=\"H3068\"* not|strong=\"H6213\"* sown, doesn’t produce|strong=\"H6213\"*, nor does|strong=\"H6213\"* any|strong=\"H3605\"* grass grow in|strong=\"H5921\"* it|strong=\"H5921\"*, like|strong=\"H6213\"* the|strong=\"H3605\"* overthrow of|strong=\"H3068\"* Sodom, Gomorrah, Admah, and|strong=\"H3068\"* Zeboiim, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* overthrew in|strong=\"H5921\"* his|strong=\"H3605\"* anger, and|strong=\"H3068\"* in|strong=\"H5921\"* his|strong=\"H3605\"* wrath." + }, + { + "verseNum": 24, + "text": "Even|strong=\"H3068\"* all|strong=\"H3772\"* the|strong=\"H5921\"* nations will|strong=\"H3068\"* say, “Why|strong=\"H5921\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* done this|strong=\"H3068\"* to|strong=\"H3318\"* this|strong=\"H3068\"* land? What|strong=\"H5921\"* does|strong=\"H3068\"* the|strong=\"H5921\"* heat of|strong=\"H3068\"* this|strong=\"H3068\"* great anger mean?”" + }, + { + "verseNum": 25, + "text": "Then|strong=\"H3045\"* men will|strong=\"H3808\"* say, “Because they|strong=\"H3808\"* abandoned the|strong=\"H5647\"* covenant of|strong=\"H5647\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5647\"* God|strong=\"H3808\"* of|strong=\"H5647\"* their|strong=\"H5647\"* fathers, which he|strong=\"H3808\"* made|strong=\"H3045\"* with|strong=\"H3045\"* them|strong=\"H5647\"* when|strong=\"H3045\"* he|strong=\"H3808\"* brought|strong=\"H3212\"* them|strong=\"H5647\"* out|strong=\"H3045\"* of|strong=\"H5647\"* the|strong=\"H5647\"* land of|strong=\"H5647\"* Egypt," + }, + { + "verseNum": 26, + "text": "and|strong=\"H3068\"* went|strong=\"H3068\"* and|strong=\"H3068\"* served other|strong=\"H2088\"* gods and|strong=\"H3068\"* worshiped them|strong=\"H5921\"*, gods that|strong=\"H3605\"* they|strong=\"H3068\"* didn’t know and|strong=\"H3068\"* that|strong=\"H3605\"* he|strong=\"H1931\"* had|strong=\"H3068\"* not|strong=\"H2088\"* given to|strong=\"H3068\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 27, + "text": "Therefore|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s anger|strong=\"H2534\"* burned against|strong=\"H5921\"* this|strong=\"H2088\"* land, to|strong=\"H3068\"* bring on|strong=\"H5921\"* it|strong=\"H5921\"* all|strong=\"H1419\"* the|strong=\"H5921\"* curses that|strong=\"H3117\"* are|strong=\"H3117\"* written in|strong=\"H5921\"* this|strong=\"H2088\"* book." + }, + { + "verseNum": 28, + "text": "Yahweh|strong=\"H3068\"* rooted them|strong=\"H6213\"* out|strong=\"H6213\"* of|strong=\"H1121\"* their|strong=\"H3605\"* land in|strong=\"H3068\"* anger, in|strong=\"H3068\"* wrath, and|strong=\"H1121\"* in|strong=\"H3068\"* great|strong=\"H6213\"* indignation, and|strong=\"H1121\"* thrust them|strong=\"H6213\"* into|strong=\"H1540\"* another land, as|strong=\"H5704\"* it|strong=\"H6213\"* is|strong=\"H3068\"* today.”" + }, + { + "verseNum": 29, + "text": "The secret things belong to Yahweh|strong=\"H3068\"* our God; but the things that are revealed belong to us and to our children forever, that we|strong=\"H3068\"* may do all the words of this law." + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "It|strong=\"H5414\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"*, when|strong=\"H3588\"* all|strong=\"H3605\"* these|strong=\"H3605\"* things|strong=\"H1697\"* have|strong=\"H1961\"* come|strong=\"H1961\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, the|strong=\"H3605\"* blessing|strong=\"H1293\"* and|strong=\"H3068\"* the|strong=\"H3605\"* curse|strong=\"H7045\"*, which|strong=\"H3068\"* I|strong=\"H3588\"* have|strong=\"H1961\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* call|strong=\"H7725\"* them|strong=\"H5414\"* to|strong=\"H7725\"* mind|strong=\"H3824\"* among|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* driven|strong=\"H5080\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"H1121\"* return|strong=\"H7725\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* and|strong=\"H1121\"* obey|strong=\"H8085\"* his|strong=\"H3605\"* voice|strong=\"H6963\"* according to|strong=\"H5704\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, you|strong=\"H6680\"* and|strong=\"H1121\"* your|strong=\"H3068\"* children|strong=\"H1121\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* and|strong=\"H1121\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 3, + "text": "that|strong=\"H5971\"* then|strong=\"H7725\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* release you|strong=\"H3605\"* from|strong=\"H7725\"* captivity|strong=\"H7622\"*, have|strong=\"H7355\"* compassion|strong=\"H7355\"* on|strong=\"H3068\"* you|strong=\"H3605\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* return|strong=\"H7725\"* and|strong=\"H3068\"* gather|strong=\"H6908\"* you|strong=\"H3605\"* from|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* where|strong=\"H8033\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* scattered|strong=\"H6327\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 4, + "text": "If|strong=\"H1961\"* your|strong=\"H3068\"* outcasts|strong=\"H5080\"* are|strong=\"H8064\"* in|strong=\"H3068\"* the|strong=\"H3947\"* uttermost|strong=\"H7097\"* parts|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H3947\"* heavens|strong=\"H8064\"*, from|strong=\"H3947\"* there|strong=\"H8033\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* gather|strong=\"H6908\"* you|strong=\"H3947\"*, and|strong=\"H3068\"* from|strong=\"H3947\"* there|strong=\"H8033\"* he|strong=\"H8033\"* will|strong=\"H3068\"* bring|strong=\"H3947\"* you|strong=\"H3947\"* back|strong=\"H3947\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* bring you|strong=\"H3190\"* into|strong=\"H3423\"* the|strong=\"H3068\"* land which|strong=\"H3068\"* your|strong=\"H3068\"* fathers possessed|strong=\"H3423\"*, and|strong=\"H3068\"* you|strong=\"H3190\"* will|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H3423\"*. He|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H3190\"* you|strong=\"H3190\"* good|strong=\"H3190\"*, and|strong=\"H3068\"* increase|strong=\"H7235\"* your|strong=\"H3068\"* numbers more|strong=\"H7235\"* than|strong=\"H7235\"* your|strong=\"H3068\"* fathers." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* circumcise|strong=\"H4135\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* heart|strong=\"H3824\"* of|strong=\"H3068\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*, to|strong=\"H3068\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* and|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H3068\"* live|strong=\"H2416\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* put|strong=\"H5414\"* all|strong=\"H3605\"* these|strong=\"H3605\"* curses on|strong=\"H5921\"* your|strong=\"H3068\"* enemies|strong=\"H8130\"* and|strong=\"H3068\"* on|strong=\"H5921\"* those|strong=\"H3605\"* who|strong=\"H3605\"* hate|strong=\"H8130\"* you|strong=\"H5414\"*, who|strong=\"H3605\"* persecuted|strong=\"H7291\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H6680\"* shall|strong=\"H3068\"* return|strong=\"H7725\"* and|strong=\"H3068\"* obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"* which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* make|strong=\"H7725\"* you|strong=\"H3588\"* prosperous in|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, in|strong=\"H5921\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* your|strong=\"H3068\"* body, in|strong=\"H5921\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* your|strong=\"H3068\"* livestock, and|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* your|strong=\"H3068\"* ground, for|strong=\"H3588\"* good|strong=\"H2896\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* again|strong=\"H7725\"* rejoice|strong=\"H7797\"* over|strong=\"H5921\"* you|strong=\"H3588\"* for|strong=\"H3588\"* good|strong=\"H2896\"*, as|strong=\"H3068\"* he|strong=\"H3588\"* rejoiced|strong=\"H7797\"* over|strong=\"H5921\"* your|strong=\"H3068\"* fathers," + }, + { + "verseNum": 10, + "text": "if|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, to|strong=\"H7725\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"* and|strong=\"H3068\"* his|strong=\"H3605\"* statutes|strong=\"H2708\"* which|strong=\"H3068\"* are|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H3068\"* this|strong=\"H2088\"* book|strong=\"H5612\"* of|strong=\"H3068\"* the|strong=\"H3605\"* law|strong=\"H8451\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* turn|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* and|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* this|strong=\"H2063\"* commandment|strong=\"H4687\"* which|strong=\"H1931\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"* today|strong=\"H3117\"* is|strong=\"H1931\"* not|strong=\"H3808\"* too|strong=\"H4480\"* hard|strong=\"H6381\"* for|strong=\"H3588\"* you|strong=\"H3588\"* or|strong=\"H3808\"* too|strong=\"H4480\"* distant|strong=\"H7350\"*." + }, + { + "verseNum": 12, + "text": "It|strong=\"H1931\"* is|strong=\"H1931\"* not|strong=\"H3808\"* in|strong=\"H6213\"* heaven|strong=\"H8064\"*, that|strong=\"H8085\"* you|strong=\"H3947\"* should|strong=\"H6213\"* say, “Who|strong=\"H4310\"* will|strong=\"H4310\"* go|strong=\"H5927\"* up|strong=\"H5927\"* for|strong=\"H6213\"* us|strong=\"H6213\"* to|strong=\"H5927\"* heaven|strong=\"H8064\"*, bring|strong=\"H5927\"* it|strong=\"H1931\"* to|strong=\"H5927\"* us|strong=\"H6213\"*, and|strong=\"H8064\"* proclaim|strong=\"H8085\"* it|strong=\"H1931\"* to|strong=\"H5927\"* us|strong=\"H6213\"*, that|strong=\"H8085\"* we|strong=\"H3068\"* may|strong=\"H4310\"* do|strong=\"H6213\"* it|strong=\"H1931\"*?”" + }, + { + "verseNum": 13, + "text": "Neither|strong=\"H3808\"* is|strong=\"H1931\"* it|strong=\"H1931\"* beyond|strong=\"H5676\"* the|strong=\"H8085\"* sea|strong=\"H3220\"*, that|strong=\"H8085\"* you|strong=\"H3947\"* should|strong=\"H6213\"* say, “Who|strong=\"H4310\"* will|strong=\"H4310\"* go|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H8085\"* sea|strong=\"H3220\"* for|strong=\"H6213\"* us|strong=\"H6213\"*, bring|strong=\"H3947\"* it|strong=\"H1931\"* to|strong=\"H6213\"* us|strong=\"H6213\"*, and|strong=\"H8085\"* proclaim|strong=\"H8085\"* it|strong=\"H1931\"* to|strong=\"H6213\"* us|strong=\"H6213\"*, that|strong=\"H8085\"* we|strong=\"H3068\"* may|strong=\"H4310\"* do|strong=\"H6213\"* it|strong=\"H1931\"*?”" + }, + { + "verseNum": 14, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* word|strong=\"H1697\"* is|strong=\"H1697\"* very|strong=\"H3966\"* near|strong=\"H7138\"* to|strong=\"H6213\"* you|strong=\"H3588\"*, in|strong=\"H6213\"* your|strong=\"H6213\"* mouth|strong=\"H6310\"* and|strong=\"H6213\"* in|strong=\"H6213\"* your|strong=\"H6213\"* heart|strong=\"H3824\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H6213\"* do|strong=\"H6213\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H7200\"*, I|strong=\"H3117\"* have|strong=\"H7200\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"* today|strong=\"H3117\"* life|strong=\"H2416\"* and|strong=\"H3117\"* prosperity|strong=\"H2896\"*, and|strong=\"H3117\"* death|strong=\"H4194\"* and|strong=\"H3117\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H2708\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"* to|strong=\"H3068\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* his|strong=\"H8104\"* ways|strong=\"H1870\"* and|strong=\"H3068\"* to|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H8104\"* commandments|strong=\"H4687\"*, his|strong=\"H8104\"* statutes|strong=\"H2708\"*, and|strong=\"H3068\"* his|strong=\"H8104\"* ordinances|strong=\"H4941\"*, that|strong=\"H3117\"* you|strong=\"H6680\"* may|strong=\"H3068\"* live|strong=\"H2421\"* and|strong=\"H3068\"* multiply|strong=\"H7235\"*, and|strong=\"H3068\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* may|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H6680\"* in|strong=\"H3068\"* the|strong=\"H8104\"* land where|strong=\"H8033\"* you|strong=\"H6680\"* go|strong=\"H3212\"* in|strong=\"H3068\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H8033\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H3808\"* if your|strong=\"H8085\"* heart|strong=\"H3824\"* turns|strong=\"H6437\"* away|strong=\"H5080\"*, and|strong=\"H8085\"* you|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* hear|strong=\"H8085\"*, but|strong=\"H3808\"* are|strong=\"H3824\"* drawn|strong=\"H5080\"* away|strong=\"H5080\"* and|strong=\"H8085\"* worship|strong=\"H7812\"* other gods, and|strong=\"H8085\"* serve|strong=\"H5647\"* them|strong=\"H8085\"*," + }, + { + "verseNum": 18, + "text": "I|strong=\"H3588\"* declare|strong=\"H5046\"* to|strong=\"H5921\"* you|strong=\"H3588\"* today|strong=\"H3117\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3808\"* surely|strong=\"H3588\"* perish|strong=\"H5674\"*. You|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* prolong your|strong=\"H5921\"* days|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land where|strong=\"H8033\"* you|strong=\"H3588\"* pass|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* to|strong=\"H5921\"* go|strong=\"H5674\"* in|strong=\"H5921\"* to|strong=\"H5921\"* possess|strong=\"H3423\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"H3117\"* call|strong=\"H5749\"* heaven|strong=\"H8064\"* and|strong=\"H3117\"* earth|strong=\"H8064\"* to|strong=\"H5414\"* witness|strong=\"H5749\"* against|strong=\"H6440\"* you|strong=\"H5414\"* today|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* have|strong=\"H3117\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"* life|strong=\"H2416\"* and|strong=\"H3117\"* death|strong=\"H4194\"*, the|strong=\"H6440\"* blessing|strong=\"H1293\"* and|strong=\"H3117\"* the|strong=\"H6440\"* curse|strong=\"H7045\"*. Therefore|strong=\"H4616\"* choose life|strong=\"H2416\"*, that|strong=\"H3117\"* you|strong=\"H5414\"* may|strong=\"H5414\"* live|strong=\"H2421\"*, you|strong=\"H5414\"* and|strong=\"H3117\"* your|strong=\"H5414\"* descendants|strong=\"H2233\"*," + }, + { + "verseNum": 20, + "text": "to|strong=\"H3068\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* obey|strong=\"H8085\"* his|strong=\"H5414\"* voice|strong=\"H6963\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* cling|strong=\"H1692\"* to|strong=\"H3068\"* him|strong=\"H5414\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H3068\"* your|strong=\"H3068\"* life|strong=\"H2416\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* length|strong=\"H5921\"* of|strong=\"H3068\"* your|strong=\"H3068\"* days|strong=\"H3117\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* land which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers, to|strong=\"H3068\"* Abraham, to|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* Jacob|strong=\"H3290\"*, to|strong=\"H3068\"* give|strong=\"H5414\"* them|strong=\"H5414\"*." + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Moses|strong=\"H4872\"* went|strong=\"H3212\"* and|strong=\"H4872\"* spoke|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3117\"* said|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H3318\"*, “I|strong=\"H3117\"* am|strong=\"H3068\"* one|strong=\"H2088\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* today|strong=\"H3117\"*. I|strong=\"H3117\"* can|strong=\"H3201\"* no|strong=\"H3808\"* more|strong=\"H5750\"* go|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3967\"* come|strong=\"H3318\"* in|strong=\"H8141\"*. Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* said|strong=\"H3318\"* to|strong=\"H3318\"* me|strong=\"H5674\"*, ‘You|strong=\"H3117\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3318\"* over|strong=\"H5674\"* this|strong=\"H2088\"* Jordan|strong=\"H3383\"*.’" + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* himself|strong=\"H1931\"* will|strong=\"H3068\"* go|strong=\"H5674\"* over|strong=\"H5674\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. He|strong=\"H1931\"* will|strong=\"H3068\"* destroy|strong=\"H8045\"* these|strong=\"H1696\"* nations|strong=\"H1471\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H3068\"* you|strong=\"H6440\"* shall|strong=\"H3068\"* dispossess|strong=\"H3423\"* them|strong=\"H6440\"*. Joshua|strong=\"H3091\"* will|strong=\"H3068\"* go|strong=\"H5674\"* over|strong=\"H5674\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3068\"* them|strong=\"H6213\"* as|strong=\"H6213\"* he|strong=\"H6213\"* did|strong=\"H6213\"* to|strong=\"H3068\"* Sihon|strong=\"H5511\"* and|strong=\"H3068\"* to|strong=\"H3068\"* Og|strong=\"H5747\"*, the|strong=\"H6213\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H6213\"* Amorites, and|strong=\"H3068\"* to|strong=\"H3068\"* their|strong=\"H3068\"* land, when|strong=\"H6213\"* he|strong=\"H6213\"* destroyed|strong=\"H8045\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* up|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H3068\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3068\"* them|strong=\"H5414\"* according to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* commandment|strong=\"H4687\"* which|strong=\"H3068\"* I|strong=\"H5414\"* have|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 6, + "text": "Be|strong=\"H3808\"* strong|strong=\"H2388\"* and|strong=\"H1980\"* courageous|strong=\"H2388\"*. Don’t be|strong=\"H3808\"* afraid|strong=\"H3372\"* or|strong=\"H3808\"* scared of|strong=\"H3068\"* them|strong=\"H6440\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* himself|strong=\"H1931\"* is|strong=\"H3068\"* who|strong=\"H1931\"* goes|strong=\"H1980\"* with|strong=\"H5973\"* you|strong=\"H3588\"*. He|strong=\"H1931\"* will|strong=\"H3068\"* not|strong=\"H3808\"* fail|strong=\"H7503\"* you|strong=\"H3588\"* nor|strong=\"H3808\"* forsake|strong=\"H5800\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 7, + "text": "Moses|strong=\"H4872\"* called|strong=\"H7121\"* to|strong=\"H3478\"* Joshua|strong=\"H3091\"*, and|strong=\"H4872\"* said|strong=\"H7121\"* to|strong=\"H3478\"* him|strong=\"H5414\"* in|strong=\"H3478\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, “Be|strong=\"H3068\"* strong|strong=\"H2388\"* and|strong=\"H4872\"* courageous|strong=\"H2388\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* go|strong=\"H5971\"* with|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"* into|strong=\"H5414\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"* to|strong=\"H3478\"* their|strong=\"H3605\"* fathers to|strong=\"H3478\"* give|strong=\"H5414\"* them|strong=\"H5414\"*; and|strong=\"H4872\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* cause|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3478\"* inherit|strong=\"H5157\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* himself|strong=\"H1931\"* is|strong=\"H3068\"* who|strong=\"H1931\"* goes|strong=\"H1980\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. He|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H6440\"*. He|strong=\"H1931\"* will|strong=\"H3068\"* not|strong=\"H3808\"* fail|strong=\"H7503\"* you|strong=\"H6440\"* nor|strong=\"H3808\"* forsake|strong=\"H5800\"* you|strong=\"H6440\"*. Don’t be|strong=\"H1961\"* afraid|strong=\"H3372\"*. Don’t be|strong=\"H1961\"* discouraged|strong=\"H7503\"*.”" + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* wrote|strong=\"H3789\"* this|strong=\"H2063\"* law|strong=\"H8451\"* and|strong=\"H1121\"* delivered|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*, who|strong=\"H3605\"* bore|strong=\"H5375\"* the|strong=\"H3605\"* ark of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 10, + "text": "Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* them|strong=\"H6680\"*, saying, “At|strong=\"H4872\"* the|strong=\"H6680\"* end|strong=\"H7093\"* of|strong=\"H8141\"* every|strong=\"H8141\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H6680\"* set|strong=\"H6680\"* time|strong=\"H4150\"* of|strong=\"H8141\"* the|strong=\"H6680\"* year|strong=\"H8141\"* of|strong=\"H8141\"* release|strong=\"H8059\"*, in|strong=\"H8141\"* the|strong=\"H6680\"* feast|strong=\"H2282\"* of|strong=\"H8141\"* booths|strong=\"H5521\"*," + }, + { + "verseNum": 11, + "text": "when|strong=\"H7200\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* has|strong=\"H3068\"* come|strong=\"H3478\"* to|strong=\"H3478\"* appear|strong=\"H7200\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H3478\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* choose, you|strong=\"H6440\"* shall|strong=\"H3068\"* read|strong=\"H7121\"* this|strong=\"H2063\"* law|strong=\"H8451\"* before|strong=\"H6440\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* their|strong=\"H3605\"* hearing." + }, + { + "verseNum": 12, + "text": "Assemble|strong=\"H6950\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, the|strong=\"H3605\"* men|strong=\"H5971\"* and|strong=\"H3068\"* the|strong=\"H3605\"* women and|strong=\"H3068\"* the|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* foreigners|strong=\"H1616\"* who|strong=\"H3605\"* are|strong=\"H5971\"* within your|strong=\"H3068\"* gates|strong=\"H8179\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* may|strong=\"H3068\"* hear|strong=\"H8085\"*, learn|strong=\"H3925\"*, fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* observe|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* this|strong=\"H2063\"* law|strong=\"H8451\"*," + }, + { + "verseNum": 13, + "text": "and|strong=\"H1121\"* that|strong=\"H3045\"* their|strong=\"H3605\"* children|strong=\"H1121\"*, who|strong=\"H3605\"* have|strong=\"H3068\"* not|strong=\"H3808\"* known|strong=\"H3045\"*, may|strong=\"H3068\"* hear|strong=\"H8085\"* and|strong=\"H1121\"* learn|strong=\"H3925\"* to|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, as|strong=\"H3117\"* long|strong=\"H3117\"* as|strong=\"H3117\"* you|strong=\"H3605\"* live|strong=\"H2416\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land where|strong=\"H8033\"* you|strong=\"H3605\"* go|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H5921\"*.”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H7121\"* to|strong=\"H4191\"* Moses|strong=\"H4872\"*, “Behold|strong=\"H2005\"*, your|strong=\"H3068\"* days|strong=\"H3117\"* approach|strong=\"H7126\"* that|strong=\"H3117\"* you|strong=\"H6680\"* must|strong=\"H4191\"* die|strong=\"H4191\"*. Call|strong=\"H7121\"* Joshua|strong=\"H3091\"*, and|strong=\"H4872\"* present|strong=\"H7126\"* yourselves|strong=\"H3320\"* in|strong=\"H3068\"* the|strong=\"H3068\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, that|strong=\"H3117\"* I|strong=\"H3117\"* may|strong=\"H3068\"* commission|strong=\"H6680\"* him|strong=\"H7121\"*.”" + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* in|strong=\"H5921\"* the|strong=\"H5921\"* Tent in|strong=\"H5921\"* a|strong=\"H3068\"* pillar|strong=\"H5982\"* of|strong=\"H3068\"* cloud|strong=\"H6051\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* pillar|strong=\"H5982\"* of|strong=\"H3068\"* cloud|strong=\"H6051\"* stood|strong=\"H5975\"* over|strong=\"H5921\"* the|strong=\"H5921\"* Tent’s door|strong=\"H6607\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Behold|strong=\"H2009\"*, you|strong=\"H5973\"* shall|strong=\"H3068\"* sleep|strong=\"H7901\"* with|strong=\"H5973\"* your|strong=\"H3068\"* fathers. This|strong=\"H2088\"* people|strong=\"H5971\"* will|strong=\"H3068\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* play|strong=\"H2181\"* the|strong=\"H3068\"* prostitute|strong=\"H2181\"* after|strong=\"H6965\"* the|strong=\"H3068\"* strange|strong=\"H5236\"* gods of|strong=\"H3068\"* the|strong=\"H3068\"* land|strong=\"H7130\"* where|strong=\"H8033\"* they|strong=\"H8033\"* go|strong=\"H6965\"* to|strong=\"H3068\"* be|strong=\"H3068\"* among|strong=\"H7130\"* them|strong=\"H5800\"*, and|strong=\"H6965\"* will|strong=\"H3068\"* forsake|strong=\"H5800\"* me|strong=\"H5973\"* and|strong=\"H6965\"* break|strong=\"H6565\"* my|strong=\"H3068\"* covenant|strong=\"H1285\"* which|strong=\"H1931\"* I|strong=\"H2009\"* have|strong=\"H3068\"* made|strong=\"H3772\"* with|strong=\"H5973\"* them|strong=\"H5800\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H1961\"* my|strong=\"H5921\"* anger|strong=\"H6440\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* kindled|strong=\"H2734\"* against|strong=\"H5921\"* them|strong=\"H1992\"* in|strong=\"H5921\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* I|strong=\"H3588\"* will|strong=\"H1961\"* forsake|strong=\"H5800\"* them|strong=\"H1992\"*, and|strong=\"H3117\"* I|strong=\"H3588\"* will|strong=\"H1961\"* hide|strong=\"H5641\"* my|strong=\"H5921\"* face|strong=\"H6440\"* from|strong=\"H6440\"* them|strong=\"H1992\"*, and|strong=\"H3117\"* they|strong=\"H1992\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* devoured, and|strong=\"H3117\"* many|strong=\"H7227\"* evils|strong=\"H7451\"* and|strong=\"H3117\"* troubles|strong=\"H6869\"* shall|strong=\"H3117\"* come|strong=\"H1961\"* on|strong=\"H5921\"* them|strong=\"H1992\"*; so|strong=\"H1961\"* that|strong=\"H3588\"* they|strong=\"H1992\"* will|strong=\"H1961\"* say in|strong=\"H5921\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, ‘Haven’t these|strong=\"H1992\"* evils|strong=\"H7451\"* come|strong=\"H1961\"* on|strong=\"H5921\"* us|strong=\"H5921\"* because|strong=\"H3588\"* our|strong=\"H5921\"* God|strong=\"H3808\"* is|strong=\"H1931\"* not|strong=\"H3808\"* among|strong=\"H7130\"* us|strong=\"H5921\"*?’" + }, + { + "verseNum": 18, + "text": "I|strong=\"H3588\"* will|strong=\"H1931\"* surely|strong=\"H3588\"* hide|strong=\"H5641\"* my|strong=\"H3605\"* face|strong=\"H6440\"* in|strong=\"H5921\"* that|strong=\"H3588\"* day|strong=\"H3117\"* for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* which|strong=\"H1931\"* they|strong=\"H3588\"* have|strong=\"H3117\"* done|strong=\"H6213\"*, in|strong=\"H5921\"* that|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3117\"* turned|strong=\"H6437\"* to|strong=\"H6213\"* other|strong=\"H3605\"* gods." + }, + { + "verseNum": 19, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H6258\"* write|strong=\"H3789\"* this|strong=\"H2063\"* song|strong=\"H7892\"* for|strong=\"H4616\"* yourselves, and|strong=\"H1121\"* teach|strong=\"H3925\"* it|strong=\"H7760\"* to|strong=\"H3478\"* the|strong=\"H7760\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Put|strong=\"H7760\"* it|strong=\"H7760\"* in|strong=\"H3478\"* their|strong=\"H7760\"* mouths|strong=\"H6310\"*, that|strong=\"H4616\"* this|strong=\"H2063\"* song|strong=\"H7892\"* may|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* witness|strong=\"H5707\"* for|strong=\"H4616\"* me|strong=\"H7760\"* against|strong=\"H2063\"* the|strong=\"H7760\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"H3588\"* when|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H7646\"* brought|strong=\"H6565\"* them|strong=\"H5647\"* into the|strong=\"H3588\"* land which|strong=\"H3588\"* I|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H7650\"* their|strong=\"H5647\"* fathers, flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H2461\"* honey|strong=\"H1706\"*, and|strong=\"H2461\"* they|strong=\"H3588\"* have|strong=\"H7646\"* eaten and|strong=\"H2461\"* filled|strong=\"H7646\"* themselves, and|strong=\"H2461\"* grown fat|strong=\"H1878\"*, then|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H5647\"* turn|strong=\"H6437\"* to|strong=\"H7650\"* other gods, and|strong=\"H2461\"* serve|strong=\"H5647\"* them|strong=\"H5647\"*, and|strong=\"H2461\"* despise|strong=\"H5006\"* me|strong=\"H5006\"*, and|strong=\"H2461\"* break|strong=\"H6565\"* my|strong=\"H6565\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 21, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, when|strong=\"H3588\"* many|strong=\"H7227\"* evils|strong=\"H7451\"* and|strong=\"H6030\"* troubles|strong=\"H6869\"* have|strong=\"H1961\"* come|strong=\"H1961\"* on|strong=\"H3117\"* them|strong=\"H6440\"*, that|strong=\"H3588\"* this|strong=\"H2063\"* song|strong=\"H7892\"* will|strong=\"H1961\"* testify|strong=\"H6030\"* before|strong=\"H6440\"* them|strong=\"H6440\"* as|strong=\"H3117\"* a|strong=\"H3068\"* witness|strong=\"H5707\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* forgotten|strong=\"H7911\"* out|strong=\"H4672\"* of|strong=\"H3117\"* the|strong=\"H6440\"* mouths|strong=\"H6310\"* of|strong=\"H3117\"* their|strong=\"H6440\"* descendants|strong=\"H2233\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* their|strong=\"H6440\"* ways and|strong=\"H6030\"* what|strong=\"H7451\"* they|strong=\"H3588\"* are|strong=\"H3117\"* doing|strong=\"H6213\"* today|strong=\"H3117\"*, before|strong=\"H6440\"* I|strong=\"H3588\"* have|strong=\"H1961\"* brought|strong=\"H6213\"* them|strong=\"H6440\"* into|strong=\"H6213\"* the|strong=\"H6440\"* land|strong=\"H6440\"* which|strong=\"H1931\"* I|strong=\"H3588\"* promised|strong=\"H7650\"* them|strong=\"H6440\"*.”" + }, + { + "verseNum": 22, + "text": "So|strong=\"H2063\"* Moses|strong=\"H4872\"* wrote|strong=\"H3789\"* this|strong=\"H2063\"* song|strong=\"H7892\"* the|strong=\"H3117\"* same|strong=\"H1931\"* day|strong=\"H3117\"*, and|strong=\"H1121\"* taught|strong=\"H3925\"* it|strong=\"H1931\"* to|strong=\"H3478\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H3588\"* commissioned|strong=\"H6680\"* Joshua|strong=\"H3091\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, and|strong=\"H1121\"* said, “Be|strong=\"H1961\"* strong|strong=\"H2388\"* and|strong=\"H1121\"* courageous|strong=\"H2388\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* bring|strong=\"H1961\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* into|strong=\"H1961\"* the|strong=\"H3588\"* land which|strong=\"H3478\"* I|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H3478\"* them|strong=\"H6680\"*. I|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 24, + "text": "When|strong=\"H1961\"* Moses|strong=\"H4872\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* writing|strong=\"H3789\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H1697\"* this|strong=\"H2063\"* law|strong=\"H8451\"* in|strong=\"H5921\"* a|strong=\"H3068\"* book|strong=\"H5612\"*, until|strong=\"H5704\"* they|strong=\"H5921\"* were|strong=\"H1961\"* finished|strong=\"H3615\"*," + }, + { + "verseNum": 25, + "text": "Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* the|strong=\"H5375\"* Levites|strong=\"H3881\"*, who|strong=\"H3068\"* bore|strong=\"H5375\"* the|strong=\"H5375\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, saying," + }, + { + "verseNum": 26, + "text": "“Take|strong=\"H3947\"* this|strong=\"H2088\"* book|strong=\"H5612\"* of|strong=\"H3068\"* the|strong=\"H3947\"* law|strong=\"H8451\"*, and|strong=\"H3068\"* put|strong=\"H7760\"* it|strong=\"H7760\"* by|strong=\"H3068\"* the|strong=\"H3947\"* side|strong=\"H6654\"* of|strong=\"H3068\"* the|strong=\"H3947\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, that|strong=\"H3068\"* it|strong=\"H7760\"* may|strong=\"H1961\"* be|strong=\"H1961\"* there|strong=\"H8033\"* for|strong=\"H3068\"* a|strong=\"H3068\"* witness|strong=\"H5707\"* against|strong=\"H3068\"* you|strong=\"H3947\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* your|strong=\"H3068\"* rebellion|strong=\"H4805\"* and|strong=\"H3068\"* your|strong=\"H3068\"* stiff|strong=\"H7186\"* neck|strong=\"H6203\"*. Behold|strong=\"H2005\"*, while|strong=\"H5750\"* I|strong=\"H3588\"* am|strong=\"H1961\"* yet|strong=\"H5750\"* alive|strong=\"H2416\"* with|strong=\"H5973\"* you|strong=\"H3588\"* today|strong=\"H3117\"*, you|strong=\"H3588\"* have|strong=\"H1961\"* been|strong=\"H1961\"* rebellious|strong=\"H4805\"* against|strong=\"H5973\"* Yahweh|strong=\"H3068\"*. How|strong=\"H3588\"* much more|strong=\"H5750\"* after|strong=\"H1961\"* my|strong=\"H3068\"* death|strong=\"H4194\"*?" + }, + { + "verseNum": 28, + "text": "Assemble|strong=\"H6950\"* to|strong=\"H1696\"* me|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1697\"* your|strong=\"H3605\"* tribes|strong=\"H7626\"* and|strong=\"H8064\"* your|strong=\"H3605\"* officers|strong=\"H7860\"*, that|strong=\"H3605\"* I|strong=\"H1697\"* may speak|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"* in|strong=\"H1696\"* their|strong=\"H3605\"* ears, and|strong=\"H8064\"* call|strong=\"H5749\"* heaven|strong=\"H8064\"* and|strong=\"H8064\"* earth|strong=\"H8064\"* to|strong=\"H1696\"* witness|strong=\"H5749\"* against|strong=\"H1696\"* them|strong=\"H1697\"*." + }, + { + "verseNum": 29, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* after|strong=\"H4480\"* my|strong=\"H3068\"* death|strong=\"H4194\"* you|strong=\"H3588\"* will|strong=\"H3068\"* utterly|strong=\"H7843\"* corrupt|strong=\"H7843\"* yourselves|strong=\"H3027\"*, and|strong=\"H3068\"* turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* the|strong=\"H3588\"* way|strong=\"H1870\"* which|strong=\"H3068\"* I|strong=\"H3588\"* have|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*; and|strong=\"H3068\"* evil|strong=\"H7451\"* will|strong=\"H3068\"* happen|strong=\"H6213\"* to|strong=\"H3068\"* you|strong=\"H3588\"* in|strong=\"H3068\"* the|strong=\"H3588\"* latter days|strong=\"H3117\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* do|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, to|strong=\"H3068\"* provoke|strong=\"H3707\"* him|strong=\"H3027\"* to|strong=\"H3068\"* anger|strong=\"H3707\"* through|strong=\"H3027\"* the|strong=\"H3588\"* work|strong=\"H4639\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hands|strong=\"H3027\"*.”" + }, + { + "verseNum": 30, + "text": "Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* in|strong=\"H3478\"* the|strong=\"H3605\"* ears of|strong=\"H1697\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H1697\"* Israel|strong=\"H3478\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1697\"* this|strong=\"H2063\"* song|strong=\"H7892\"*, until|strong=\"H5704\"* they|strong=\"H5704\"* were|strong=\"H3478\"* finished|strong=\"H8552\"*." + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "Give|strong=\"H1696\"* ear|strong=\"H8085\"*, you|strong=\"H1696\"* heavens|strong=\"H8064\"*, and|strong=\"H8064\"* I|strong=\"H8085\"* will|strong=\"H8064\"* speak|strong=\"H1696\"*." + }, + { + "verseNum": 2, + "text": "My|strong=\"H5921\"* doctrine|strong=\"H3948\"* will drop|strong=\"H6201\"* as|strong=\"H5921\"* the|strong=\"H5921\"* rain|strong=\"H4306\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* proclaim|strong=\"H7121\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* Rock|strong=\"H6697\"*: his|strong=\"H3605\"* work|strong=\"H6467\"* is|strong=\"H1931\"* perfect|strong=\"H8549\"*," + }, + { + "verseNum": 5, + "text": "They|strong=\"H3808\"* have|strong=\"H1121\"* dealt corruptly|strong=\"H7843\"* with|strong=\"H1121\"* him|strong=\"H1121\"*." + }, + { + "verseNum": 6, + "text": "Is|strong=\"H3068\"* this|strong=\"H2063\"* the|strong=\"H6213\"* way|strong=\"H2063\"* you|strong=\"H6213\"* repay|strong=\"H1580\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 7, + "text": "Remember|strong=\"H2142\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* old|strong=\"H2205\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H1121\"* the|strong=\"H5157\"* Most|strong=\"H5945\"* High|strong=\"H5945\"* gave|strong=\"H5157\"* to|strong=\"H3478\"* the|strong=\"H5157\"* nations|strong=\"H1471\"* their|strong=\"H5157\"* inheritance|strong=\"H5157\"*," + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s portion|strong=\"H2506\"* is|strong=\"H3068\"* his|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H4057\"* found|strong=\"H4672\"* him|strong=\"H4672\"* in|strong=\"H4672\"* a|strong=\"H3068\"* desert|strong=\"H4057\"* land," + }, + { + "verseNum": 11, + "text": "As|strong=\"H7064\"* an|strong=\"H3947\"* eagle|strong=\"H5404\"* that|strong=\"H5404\"* stirs|strong=\"H5782\"* up|strong=\"H5375\"* her|strong=\"H3947\"* nest|strong=\"H7064\"*," + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* alone led|strong=\"H5148\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H5921\"* made him|strong=\"H5921\"* ride|strong=\"H7392\"* on|strong=\"H5921\"* the|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"* of|strong=\"H7704\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 14, + "text": "butter|strong=\"H2529\"* from|strong=\"H1121\"* the|strong=\"H5973\"* herd|strong=\"H1241\"*, and|strong=\"H1121\"* milk|strong=\"H2461\"* from|strong=\"H1121\"* the|strong=\"H5973\"* flock|strong=\"H6629\"*," + }, + { + "verseNum": 15, + "text": "But Jeshurun|strong=\"H3484\"* grew|strong=\"H8080\"* fat|strong=\"H8080\"*, and|strong=\"H6213\"* kicked|strong=\"H1163\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"H8441\"* moved him|strong=\"H7065\"* to|strong=\"H8441\"* jealousy|strong=\"H7065\"* with|strong=\"H7065\"* strange|strong=\"H2114\"* gods." + }, + { + "verseNum": 17, + "text": "They|strong=\"H3808\"* sacrificed|strong=\"H2076\"* to|strong=\"H3045\"* demons|strong=\"H7700\"*, not|strong=\"H3808\"* God|strong=\"H3808\"*," + }, + { + "verseNum": 18, + "text": "Of|strong=\"H3205\"* the|strong=\"H3205\"* Rock|strong=\"H6697\"* who|strong=\"H3205\"* became|strong=\"H3205\"* your|strong=\"H7911\"* father|strong=\"H3205\"*, you|strong=\"H3205\"* are|strong=\"H6697\"* unmindful|strong=\"H7876\"*," + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* saw|strong=\"H7200\"* and|strong=\"H1121\"* abhorred|strong=\"H5006\"*," + }, + { + "verseNum": 20, + "text": "He|strong=\"H3588\"* said, “I|strong=\"H3588\"* will|strong=\"H1121\"* hide|strong=\"H5641\"* my|strong=\"H7200\"* face|strong=\"H6440\"* from|strong=\"H6440\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"H1992\"* have|strong=\"H5971\"* moved me|strong=\"H3707\"* to|strong=\"H5971\"* jealousy|strong=\"H7065\"* with|strong=\"H5971\"* that|strong=\"H5971\"* which|strong=\"H1471\"* is|strong=\"H5971\"* not|strong=\"H3808\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* a|strong=\"H3068\"* fire|strong=\"H3857\"* is|strong=\"H3588\"* kindled|strong=\"H6919\"* in|strong=\"H7585\"* my|strong=\"H3588\"* anger," + }, + { + "verseNum": 23, + "text": "“I|strong=\"H5921\"* will|strong=\"H5595\"* heap|strong=\"H5595\"* evils|strong=\"H7451\"* on|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 24, + "text": "They shall|strong=\"H6083\"* be wasted|strong=\"H4198\"* with|strong=\"H5973\"* hunger|strong=\"H7458\"*," + }, + { + "verseNum": 25, + "text": "Outside|strong=\"H2351\"* the|strong=\"H1571\"* sword|strong=\"H2719\"* will|strong=\"H1571\"* bereave|strong=\"H7921\"*," + }, + { + "verseNum": 26, + "text": "I said that I would scatter them afar." + }, + { + "verseNum": 27, + "text": "were|strong=\"H3027\"* it|strong=\"H2063\"* not|strong=\"H3808\"* that|strong=\"H3605\"* I|strong=\"H3808\"* feared|strong=\"H1481\"* the|strong=\"H3605\"* provocation|strong=\"H3708\"* of|strong=\"H3068\"* the|strong=\"H3605\"* enemy|strong=\"H6862\"*," + }, + { + "verseNum": 28, + "text": "For|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* void of|strong=\"H6098\"* counsel|strong=\"H6098\"*." + }, + { + "verseNum": 29, + "text": "Oh|strong=\"H3863\"* that|strong=\"H3863\"* they were wise|strong=\"H2449\"*, that|strong=\"H3863\"* they understood|strong=\"H7919\"* this|strong=\"H2063\"*," + }, + { + "verseNum": 30, + "text": "How|strong=\"H3588\"* could one|strong=\"H3808\"* chase|strong=\"H7291\"* a|strong=\"H3068\"* thousand|strong=\"H7233\"*," + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* their|strong=\"H3588\"* rock|strong=\"H6697\"* is|strong=\"H3808\"* not|strong=\"H3808\"* as|strong=\"H3588\"* our|strong=\"H3588\"* Rock|strong=\"H6697\"*," + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* their|strong=\"H3588\"* vine|strong=\"H1612\"* is|strong=\"H6017\"* of|strong=\"H1612\"* the|strong=\"H3588\"* vine|strong=\"H1612\"* of|strong=\"H1612\"* Sodom|strong=\"H5467\"*," + }, + { + "verseNum": 33, + "text": "Their wine|strong=\"H3196\"* is|strong=\"H2534\"* the poison|strong=\"H2534\"* of|strong=\"H2534\"* serpents|strong=\"H8577\"*," + }, + { + "verseNum": 34, + "text": "“Isn’t this|strong=\"H1931\"* laid|strong=\"H3647\"* up|strong=\"H2856\"* in|strong=\"H3808\"* store|strong=\"H3647\"* with|strong=\"H5978\"* me|strong=\"H5978\"*," + }, + { + "verseNum": 35, + "text": "Vengeance|strong=\"H5359\"* is|strong=\"H3117\"* mine, and|strong=\"H3117\"* recompense," + }, + { + "verseNum": 36, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* judge|strong=\"H1777\"* his|strong=\"H3068\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 37, + "text": "He will say, “Where are|strong=\"H6697\"* their gods," + }, + { + "verseNum": 38, + "text": "which|strong=\"H3196\"* ate the|strong=\"H5921\"* fat|strong=\"H2459\"* of|strong=\"H2077\"* their|strong=\"H5921\"* sacrifices|strong=\"H2077\"*," + }, + { + "verseNum": 39, + "text": "“See|strong=\"H7200\"* now|strong=\"H6258\"* that|strong=\"H3588\"* I|strong=\"H3588\"* myself am he|strong=\"H1931\"*." + }, + { + "verseNum": 40, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H5375\"* hand|strong=\"H3027\"* to|strong=\"H3027\"* heaven|strong=\"H8064\"* and|strong=\"H8064\"* declare," + }, + { + "verseNum": 41, + "text": "if I|strong=\"H6862\"* sharpen|strong=\"H8150\"* my|strong=\"H7725\"* glittering|strong=\"H1300\"* sword|strong=\"H2719\"*," + }, + { + "verseNum": 42, + "text": "I|strong=\"H1320\"* will|strong=\"H2719\"* make|strong=\"H7937\"* my|strong=\"H1320\"* arrows|strong=\"H2671\"* drunk|strong=\"H7937\"* with|strong=\"H1320\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 43, + "text": "Rejoice|strong=\"H7442\"*, you|strong=\"H3588\"* nations|strong=\"H1471\"*, with|strong=\"H5971\"* his|strong=\"H7725\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 44, + "text": "Moses|strong=\"H4872\"* came|strong=\"H5971\"* and|strong=\"H1121\"* spoke|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1121\"* this|strong=\"H2063\"* song|strong=\"H7892\"* in|strong=\"H1696\"* the|strong=\"H3605\"* ears of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, he|strong=\"H1931\"* and|strong=\"H1121\"* Joshua|strong=\"H1954\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*." + }, + { + "verseNum": 45, + "text": "Moses|strong=\"H4872\"* finished|strong=\"H3615\"* reciting|strong=\"H1696\"* all|strong=\"H3605\"* these|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 46, + "text": "He|strong=\"H3117\"* said|strong=\"H1697\"* to|strong=\"H6213\"* them|strong=\"H6213\"*, “Set|strong=\"H7760\"* your|strong=\"H3605\"* heart|strong=\"H3824\"* to|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* which|strong=\"H1697\"* I|strong=\"H3117\"* testify|strong=\"H5749\"* to|strong=\"H6213\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, which|strong=\"H1697\"* you|strong=\"H6680\"* shall|strong=\"H1121\"* command|strong=\"H6680\"* your|strong=\"H3605\"* children|strong=\"H1121\"* to|strong=\"H6213\"* observe|strong=\"H8104\"* to|strong=\"H6213\"* do|strong=\"H6213\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1121\"* this|strong=\"H2063\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 47, + "text": "For|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H2088\"* no|strong=\"H3808\"* vain|strong=\"H7386\"* thing|strong=\"H1697\"* for|strong=\"H3588\"* you|strong=\"H3588\"*, because|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H2088\"* your|strong=\"H5921\"* life|strong=\"H2416\"*, and|strong=\"H3117\"* through|strong=\"H5674\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* you|strong=\"H3588\"* shall|strong=\"H3117\"* prolong your|strong=\"H5921\"* days|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land, where|strong=\"H8033\"* you|strong=\"H3588\"* go|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* to|strong=\"H5921\"* possess|strong=\"H3423\"* it|strong=\"H1931\"*.”" + }, + { + "verseNum": 48, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* that|strong=\"H3117\"* same|strong=\"H6106\"* day|strong=\"H3117\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 49, + "text": "“Go|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* this|strong=\"H2088\"* mountain|strong=\"H2022\"* of|strong=\"H1121\"* Abarim|strong=\"H5682\"*, to|strong=\"H3478\"* Mount|strong=\"H2022\"* Nebo|strong=\"H5015\"*, which|strong=\"H3478\"* is|strong=\"H2088\"* in|strong=\"H5921\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, that|strong=\"H7200\"* is|strong=\"H2088\"* across|strong=\"H5921\"* from|strong=\"H6440\"* Jericho|strong=\"H3405\"*; and|strong=\"H1121\"* see|strong=\"H7200\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, which|strong=\"H3478\"* I|strong=\"H5414\"* give|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* for|strong=\"H5921\"* a|strong=\"H3068\"* possession." + }, + { + "verseNum": 50, + "text": "Die|strong=\"H4191\"* on|strong=\"H5927\"* the|strong=\"H5927\"* mountain|strong=\"H2022\"* where|strong=\"H8033\"* you|strong=\"H2022\"* go|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H5971\"* be|strong=\"H4191\"* gathered to|strong=\"H4191\"* your|strong=\"H5927\"* people|strong=\"H5971\"*, as|strong=\"H5927\"* Aaron your|strong=\"H5927\"* brother died|strong=\"H4191\"* on|strong=\"H5927\"* Mount|strong=\"H2022\"* Hor|strong=\"H2023\"*, and|strong=\"H5971\"* was|strong=\"H2022\"* gathered to|strong=\"H4191\"* his|strong=\"H4191\"* people|strong=\"H5971\"*;" + }, + { + "verseNum": 51, + "text": "because|strong=\"H5921\"* you|strong=\"H5921\"* trespassed|strong=\"H4603\"* against|strong=\"H5921\"* me|strong=\"H5921\"* among|strong=\"H8432\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* at|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* of|strong=\"H1121\"* Meribah of|strong=\"H1121\"* Kadesh|strong=\"H6946\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Zin|strong=\"H6790\"*; because|strong=\"H5921\"* you|strong=\"H5921\"* didn’t uphold my|strong=\"H5921\"* holiness|strong=\"H6942\"* among|strong=\"H8432\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 52, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* see|strong=\"H7200\"* the|strong=\"H7200\"* land from|strong=\"H3478\"* a|strong=\"H3068\"* distance; but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* go|strong=\"H3478\"* there|strong=\"H8033\"* into|strong=\"H5414\"* the|strong=\"H7200\"* land which|strong=\"H8033\"* I|strong=\"H3588\"* give|strong=\"H5414\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”" + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "This|strong=\"H2063\"* is|strong=\"H3478\"* the|strong=\"H6440\"* blessing|strong=\"H1293\"* with|strong=\"H6440\"* which|strong=\"H3478\"* Moses|strong=\"H4872\"* the|strong=\"H6440\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God blessed|strong=\"H1288\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* before|strong=\"H6440\"* his|strong=\"H6440\"* death|strong=\"H4194\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3068\"* said," + }, + { + "verseNum": 3, + "text": "Yes, he|strong=\"H3605\"* loves|strong=\"H2245\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 4, + "text": "Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* us a|strong=\"H3068\"* law|strong=\"H8451\"*," + }, + { + "verseNum": 5, + "text": "He|strong=\"H3478\"* was|strong=\"H1961\"* king|strong=\"H4428\"* in|strong=\"H3478\"* Jeshurun|strong=\"H3484\"*," + }, + { + "verseNum": 6, + "text": "“Let|strong=\"H1961\"* Reuben|strong=\"H7205\"* live|strong=\"H2421\"*, and|strong=\"H4191\"* not|strong=\"H1961\"* die|strong=\"H4191\"*;" + }, + { + "verseNum": 7, + "text": "This|strong=\"H2063\"* is|strong=\"H3068\"* for|strong=\"H3027\"* Judah|strong=\"H3063\"*. He|strong=\"H3068\"* said|strong=\"H8085\"*," + }, + { + "verseNum": 8, + "text": "About|strong=\"H5921\"* Levi|strong=\"H3878\"* he|strong=\"H5921\"* said," + }, + { + "verseNum": 9, + "text": "He|strong=\"H3588\"* said of|strong=\"H1121\"* his|strong=\"H8104\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H8104\"* mother, ‘I|strong=\"H3588\"* have|strong=\"H3045\"* not|strong=\"H3808\"* seen|strong=\"H7200\"* him|strong=\"H7200\"*.’" + }, + { + "verseNum": 10, + "text": "They|strong=\"H5921\"* shall|strong=\"H3478\"* teach|strong=\"H3384\"* Jacob|strong=\"H3290\"* your|strong=\"H5921\"* ordinances|strong=\"H4941\"*," + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"*, bless|strong=\"H1288\"* his|strong=\"H3068\"* skills." + }, + { + "verseNum": 12, + "text": "About|strong=\"H5921\"* Benjamin|strong=\"H1144\"* he|strong=\"H3117\"* said," + }, + { + "verseNum": 13, + "text": "About|strong=\"H3130\"* Joseph|strong=\"H3130\"* he|strong=\"H3068\"* said," + }, + { + "verseNum": 14, + "text": "for|strong=\"H8121\"* the|strong=\"H8121\"* precious|strong=\"H4022\"* things|strong=\"H4022\"* of|strong=\"H3391\"* the|strong=\"H8121\"* fruits|strong=\"H8393\"* of|strong=\"H3391\"* the|strong=\"H8121\"* sun|strong=\"H8121\"*," + }, + { + "verseNum": 15, + "text": "for|strong=\"H7218\"* the|strong=\"H7218\"* best|strong=\"H7218\"* things|strong=\"H4022\"* of|strong=\"H7218\"* the|strong=\"H7218\"* ancient|strong=\"H5769\"* mountains|strong=\"H2042\"*," + }, + { + "verseNum": 16, + "text": "for|strong=\"H7218\"* the|strong=\"H3130\"* precious|strong=\"H4022\"* things|strong=\"H4022\"* of|strong=\"H7218\"* the|strong=\"H3130\"* earth and|strong=\"H7218\"* its|strong=\"H4393\"* fullness|strong=\"H4393\"*," + }, + { + "verseNum": 17, + "text": "Majesty|strong=\"H1926\"* belongs to|strong=\"H5971\"* the|strong=\"H5971\"* firstborn|strong=\"H1060\"* of|strong=\"H1060\"* his|strong=\"H4519\"* herd|strong=\"H7794\"*." + }, + { + "verseNum": 18, + "text": "About|strong=\"H3318\"* Zebulun|strong=\"H2074\"* he|strong=\"H3318\"* said|strong=\"H3318\"*," + }, + { + "verseNum": 19, + "text": "They|strong=\"H3588\"* will|strong=\"H5971\"* call|strong=\"H7121\"* the|strong=\"H3588\"* peoples|strong=\"H5971\"* to|strong=\"H7121\"* the|strong=\"H3588\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 20, + "text": "About Gad|strong=\"H1410\"* he|strong=\"H1410\"* said," + }, + { + "verseNum": 21, + "text": "He|strong=\"H3588\"* provided|strong=\"H7200\"* the|strong=\"H7200\"* first|strong=\"H7225\"* part|strong=\"H2513\"* for|strong=\"H3588\"* himself|strong=\"H6213\"*," + }, + { + "verseNum": 22, + "text": "About|strong=\"H4480\"* Dan|strong=\"H1835\"* he|strong=\"H4480\"* said," + }, + { + "verseNum": 23, + "text": "About Naphtali|strong=\"H5321\"* he|strong=\"H3068\"* said," + }, + { + "verseNum": 24, + "text": "About|strong=\"H1961\"* Asher he|strong=\"H7272\"* said," + }, + { + "verseNum": 25, + "text": "Your|strong=\"H3117\"* bars will|strong=\"H3117\"* be|strong=\"H3117\"* iron|strong=\"H1270\"* and|strong=\"H3117\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 26, + "text": "“There is|strong=\"H7834\"* no one like|strong=\"H8064\"* God|strong=\"H8064\"*, Jeshurun|strong=\"H3484\"*," + }, + { + "verseNum": 27, + "text": "The|strong=\"H6440\"* eternal|strong=\"H5769\"* God is|strong=\"H6440\"* your|strong=\"H6440\"* dwelling|strong=\"H4585\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 28, + "text": "Israel|strong=\"H3478\"* dwells|strong=\"H7931\"* in|strong=\"H3478\"* safety," + }, + { + "verseNum": 29, + "text": "You|strong=\"H5921\"* are|strong=\"H5971\"* happy, Israel|strong=\"H3478\"*!" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Moses|strong=\"H4872\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H6440\"* the|strong=\"H3605\"* plains|strong=\"H6160\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"* to|strong=\"H5704\"* Mount|strong=\"H2022\"* Nebo|strong=\"H5015\"*, to|strong=\"H5704\"* the|strong=\"H3605\"* top|strong=\"H7218\"* of|strong=\"H3068\"* Pisgah|strong=\"H6449\"*, that|strong=\"H7200\"* is|strong=\"H3068\"* opposite|strong=\"H5921\"* Jericho|strong=\"H3405\"*. Yahweh|strong=\"H3068\"* showed|strong=\"H7200\"* him|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H3068\"* Gilead|strong=\"H1568\"* to|strong=\"H5704\"* Dan|strong=\"H1835\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"H3063\"* all|strong=\"H3605\"* Naphtali|strong=\"H5321\"*, and|strong=\"H3063\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Ephraim and|strong=\"H3063\"* Manasseh|strong=\"H4519\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Judah|strong=\"H3063\"*, to|strong=\"H5704\"* the|strong=\"H3605\"* Western|strong=\"H3220\"* Sea|strong=\"H3220\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H5892\"* the|strong=\"H5704\"* south|strong=\"H5045\"*,+ 34:3 or, Negev* and|strong=\"H5892\"* the|strong=\"H5704\"* Plain|strong=\"H3603\"* of|strong=\"H5892\"* the|strong=\"H5704\"* valley|strong=\"H1237\"* of|strong=\"H5892\"* Jericho|strong=\"H3405\"* the|strong=\"H5704\"* city|strong=\"H5892\"* of|strong=\"H5892\"* palm|strong=\"H8558\"* trees|strong=\"H8558\"*, to|strong=\"H5704\"* Zoar|strong=\"H6820\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H5414\"*, “This|strong=\"H2063\"* is|strong=\"H3068\"* the|strong=\"H7200\"* land which|strong=\"H3068\"* I|strong=\"H5414\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* Abraham, to|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* Jacob|strong=\"H3290\"*, saying, ‘I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*.’ I|strong=\"H5414\"* have|strong=\"H3068\"* caused|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H3068\"* see|strong=\"H7200\"* it|strong=\"H5414\"* with|strong=\"H3068\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, but|strong=\"H3808\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H5674\"* over|strong=\"H5674\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 5, + "text": "So|strong=\"H4191\"* Moses|strong=\"H4872\"* the|strong=\"H5921\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* died|strong=\"H4191\"* there|strong=\"H8033\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H3068\"* Moab|strong=\"H4124\"*, according|strong=\"H5921\"* to|strong=\"H4191\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H6310\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3117\"* buried|strong=\"H6912\"* him|strong=\"H6912\"* in|strong=\"H3117\"* the|strong=\"H3117\"* valley|strong=\"H1516\"* in|strong=\"H3117\"* the|strong=\"H3117\"* land of|strong=\"H3117\"* Moab|strong=\"H4124\"* opposite|strong=\"H4136\"* Beth Peor, but|strong=\"H3808\"* no|strong=\"H3808\"* man|strong=\"H2088\"* knows|strong=\"H3045\"* where|strong=\"H2088\"* his|strong=\"H3045\"* tomb|strong=\"H6900\"* is|strong=\"H2088\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 7, + "text": "Moses|strong=\"H4872\"* was|strong=\"H4872\"* one|strong=\"H3808\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H3808\"* died|strong=\"H4194\"*. His|strong=\"H4872\"* eye|strong=\"H5869\"* was|strong=\"H4872\"* not|strong=\"H3808\"* dim|strong=\"H3543\"*, nor|strong=\"H3808\"* his|strong=\"H4872\"* strength gone|strong=\"H3808\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* wept|strong=\"H1058\"* for|strong=\"H3117\"* Moses|strong=\"H4872\"* in|strong=\"H3478\"* the|strong=\"H3117\"* plains|strong=\"H6160\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"* thirty|strong=\"H7970\"* days|strong=\"H3117\"*, until|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H1121\"* weeping|strong=\"H1065\"* in|strong=\"H3478\"* the|strong=\"H3117\"* mourning for|strong=\"H3117\"* Moses|strong=\"H4872\"* were|strong=\"H3478\"* ended|strong=\"H8552\"*." + }, + { + "verseNum": 9, + "text": "Joshua|strong=\"H3091\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"* was|strong=\"H3068\"* full|strong=\"H4392\"* of|strong=\"H1121\"* the|strong=\"H5921\"* spirit|strong=\"H7307\"* of|strong=\"H1121\"* wisdom|strong=\"H2451\"*, for|strong=\"H3588\"* Moses|strong=\"H4872\"* had|strong=\"H3068\"* laid|strong=\"H5564\"* his|strong=\"H3068\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* him|strong=\"H5921\"*. The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* listened|strong=\"H8085\"* to|strong=\"H3478\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 10, + "text": "Since|strong=\"H5750\"* then|strong=\"H6965\"*, there|strong=\"H3045\"* has|strong=\"H3068\"* not|strong=\"H3808\"* arisen|strong=\"H6965\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* like|strong=\"H3478\"* Moses|strong=\"H4872\"*, whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* knew|strong=\"H3045\"* face|strong=\"H6440\"* to|strong=\"H3478\"* face|strong=\"H6440\"*," + }, + { + "verseNum": 11, + "text": "in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* signs and|strong=\"H3068\"* the|strong=\"H3605\"* wonders|strong=\"H4159\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* him|strong=\"H7971\"* to|strong=\"H3068\"* do|strong=\"H6213\"* in|strong=\"H3068\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, to|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* land," + }, + { + "verseNum": 12, + "text": "and|strong=\"H4872\"* in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*, and|strong=\"H4872\"* in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* awesome|strong=\"H1419\"* deeds|strong=\"H1419\"*, which|strong=\"H5869\"* Moses|strong=\"H4872\"* did|strong=\"H6213\"* in|strong=\"H3478\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H3027\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + } + ] + } + ] + }, + { + "name": "Joshua", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* after|strong=\"H1961\"* the|strong=\"H3068\"* death|strong=\"H4194\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"* the|strong=\"H3068\"* servant|strong=\"H5650\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*,+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Joshua|strong=\"H3091\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, Moses|strong=\"H4872\"*’ servant|strong=\"H5650\"*, saying," + }, + { + "verseNum": 2, + "text": "“Moses|strong=\"H4872\"* my|strong=\"H5414\"* servant|strong=\"H5650\"* is|strong=\"H2088\"* dead|strong=\"H4191\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* arise|strong=\"H6965\"*, go|strong=\"H5674\"* across|strong=\"H5674\"* this|strong=\"H2088\"* Jordan|strong=\"H3383\"*, you|strong=\"H5414\"* and|strong=\"H1121\"* all|strong=\"H3605\"* these|strong=\"H2088\"* people|strong=\"H5971\"*, to|strong=\"H3478\"* the|strong=\"H3605\"* land which|strong=\"H5971\"* I|strong=\"H5414\"* am giving|strong=\"H5414\"* to|strong=\"H3478\"* them|strong=\"H5414\"*, even to|strong=\"H3478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H5414\"* have|strong=\"H5414\"* given|strong=\"H5414\"* you|strong=\"H5414\"* every|strong=\"H3605\"* place|strong=\"H4725\"* that|strong=\"H3605\"* the|strong=\"H3605\"* sole|strong=\"H3709\"* of|strong=\"H3709\"* your|strong=\"H3605\"* foot|strong=\"H7272\"* will|strong=\"H5414\"* tread|strong=\"H1869\"* on|strong=\"H1696\"*, as|strong=\"H5414\"* I|strong=\"H5414\"* told|strong=\"H1696\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 4, + "text": "From|strong=\"H5704\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* and|strong=\"H1419\"* this|strong=\"H2088\"* Lebanon|strong=\"H3844\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* great|strong=\"H1419\"* river|strong=\"H5104\"*, the|strong=\"H3605\"* river|strong=\"H5104\"* Euphrates|strong=\"H6578\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H3605\"* Hittites|strong=\"H2850\"*, and|strong=\"H1419\"* to|strong=\"H5704\"* the|strong=\"H3605\"* great|strong=\"H1419\"* sea|strong=\"H3220\"* toward|strong=\"H5704\"* the|strong=\"H3605\"* going|strong=\"H8121\"* down|strong=\"H3996\"* of|strong=\"H1366\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*, shall|strong=\"H1366\"* be|strong=\"H1961\"* your|strong=\"H3605\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 5, + "text": "No|strong=\"H3808\"* man|strong=\"H3605\"* will|strong=\"H1961\"* be|strong=\"H1961\"* able to|strong=\"H1961\"* stand|strong=\"H3320\"* before|strong=\"H6440\"* you|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H3605\"* life|strong=\"H2416\"*. As|strong=\"H3117\"* I|strong=\"H3117\"* was|strong=\"H1961\"* with|strong=\"H5973\"* Moses|strong=\"H4872\"*, so|strong=\"H1961\"* I|strong=\"H3117\"* will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H6440\"*. I|strong=\"H3117\"* will|strong=\"H1961\"* not|strong=\"H3808\"* fail|strong=\"H7503\"* you|strong=\"H6440\"* nor|strong=\"H3808\"* forsake|strong=\"H5800\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 6, + "text": "“Be|strong=\"H5414\"* strong|strong=\"H2388\"* and|strong=\"H5971\"* courageous|strong=\"H2388\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H5971\"* cause|strong=\"H5414\"* this|strong=\"H2088\"* people|strong=\"H5971\"* to|strong=\"H5414\"* inherit|strong=\"H5157\"* the|strong=\"H3588\"* land which|strong=\"H5971\"* I|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H5414\"* their|strong=\"H5414\"* fathers to|strong=\"H5414\"* give|strong=\"H5414\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 7, + "text": "Only|strong=\"H7535\"* be|strong=\"H5650\"* strong|strong=\"H2388\"* and|strong=\"H4872\"* very|strong=\"H3966\"* courageous|strong=\"H2388\"*. Be|strong=\"H5650\"* careful|strong=\"H8104\"* to|strong=\"H3212\"* observe|strong=\"H8104\"* to|strong=\"H3212\"* do|strong=\"H6213\"* according|strong=\"H4480\"* to|strong=\"H3212\"* all|strong=\"H3605\"* the|strong=\"H3605\"* law|strong=\"H8451\"* which|strong=\"H8451\"* Moses|strong=\"H4872\"* my|strong=\"H8104\"* servant|strong=\"H5650\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*. Don’t turn|strong=\"H5493\"* from|strong=\"H4480\"* it|strong=\"H6213\"* to|strong=\"H3212\"* the|strong=\"H3605\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* or|strong=\"H3225\"* to|strong=\"H3212\"* the|strong=\"H3605\"* left|strong=\"H8040\"*, that|strong=\"H3605\"* you|strong=\"H6680\"* may|strong=\"H6213\"* have|strong=\"H5650\"* good|strong=\"H3966\"* success|strong=\"H7919\"* wherever|strong=\"H3605\"* you|strong=\"H6680\"* go|strong=\"H3212\"*." + }, + { + "verseNum": 8, + "text": "This|strong=\"H2088\"* book|strong=\"H5612\"* of|strong=\"H1870\"* the|strong=\"H3605\"* law|strong=\"H8451\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* depart|strong=\"H4185\"* from|strong=\"H4185\"* your|strong=\"H3605\"* mouth|strong=\"H6310\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* meditate|strong=\"H1897\"* on|strong=\"H1870\"* it|strong=\"H3588\"* day|strong=\"H3119\"* and|strong=\"H3119\"* night|strong=\"H3915\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H6213\"* observe|strong=\"H8104\"* to|strong=\"H6213\"* do|strong=\"H6213\"* according|strong=\"H6310\"* to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H2088\"* written|strong=\"H3789\"* in|strong=\"H6213\"* it|strong=\"H3588\"*; for|strong=\"H3588\"* then|strong=\"H2088\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* make|strong=\"H6213\"* your|strong=\"H3605\"* way|strong=\"H1870\"* prosperous|strong=\"H6743\"*, and|strong=\"H3119\"* then|strong=\"H2088\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* have|strong=\"H7919\"* good|strong=\"H6743\"* success|strong=\"H6743\"*." + }, + { + "verseNum": 9, + "text": "Haven’t I|strong=\"H3588\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*? Be|strong=\"H3808\"* strong|strong=\"H2388\"* and|strong=\"H3068\"* courageous|strong=\"H2388\"*. Don’t be|strong=\"H3808\"* afraid|strong=\"H2865\"*. Don’t be|strong=\"H3808\"* dismayed|strong=\"H2865\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*+ 1:9 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* is|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3588\"* wherever|strong=\"H3605\"* you|strong=\"H3588\"* go|strong=\"H3212\"*.”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H6680\"* Joshua|strong=\"H3091\"* commanded|strong=\"H6680\"* the|strong=\"H6680\"* officers|strong=\"H7860\"* of|strong=\"H5971\"* the|strong=\"H6680\"* people|strong=\"H5971\"*, saying," + }, + { + "verseNum": 11, + "text": "“Pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3588\"* middle|strong=\"H7130\"* of|strong=\"H3068\"* the|strong=\"H3588\"* camp|strong=\"H4264\"*, and|strong=\"H3068\"* command|strong=\"H6680\"* the|strong=\"H3588\"* people|strong=\"H5971\"*, saying, ‘Prepare|strong=\"H3559\"* food|strong=\"H6720\"*; for|strong=\"H3588\"* within|strong=\"H7130\"* three|strong=\"H7969\"* days|strong=\"H3117\"* you|strong=\"H3588\"* are|strong=\"H3117\"* to|strong=\"H3068\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* this|strong=\"H2088\"* Jordan|strong=\"H3383\"*, to|strong=\"H3068\"* go|strong=\"H5674\"* in|strong=\"H3068\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* the|strong=\"H3588\"* land|strong=\"H7130\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"* to|strong=\"H3068\"* possess|strong=\"H3423\"*.’”" + }, + { + "verseNum": 12, + "text": "Joshua|strong=\"H3091\"* spoke to|strong=\"H7626\"* the|strong=\"H3091\"* Reubenites|strong=\"H7206\"*, and|strong=\"H3091\"* to|strong=\"H7626\"* the|strong=\"H3091\"* Gadites|strong=\"H1425\"*, and|strong=\"H3091\"* to|strong=\"H7626\"* the|strong=\"H3091\"* half-tribe|strong=\"H2677\"* of|strong=\"H7626\"* Manasseh|strong=\"H4519\"*, saying," + }, + { + "verseNum": 13, + "text": "“Remember|strong=\"H2142\"* the|strong=\"H5414\"* word|strong=\"H1697\"* which|strong=\"H3068\"* Moses|strong=\"H4872\"* the|strong=\"H5414\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H5414\"*, saying|strong=\"H1697\"*, ‘Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"* rest|strong=\"H5117\"*, and|strong=\"H4872\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H5414\"* this|strong=\"H2063\"* land." + }, + { + "verseNum": 14, + "text": "Your|strong=\"H3605\"* wives, your|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, and|strong=\"H4872\"* your|strong=\"H3605\"* livestock|strong=\"H4735\"* shall|strong=\"H6440\"* live|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land|strong=\"H6440\"* which|strong=\"H2428\"* Moses|strong=\"H4872\"* gave|strong=\"H5414\"* you|strong=\"H5414\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*; but|strong=\"H3605\"* you|strong=\"H5414\"* shall|strong=\"H6440\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* before|strong=\"H6440\"* your|strong=\"H3605\"* brothers armed|strong=\"H2571\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H3427\"* valor|strong=\"H2428\"*, and|strong=\"H4872\"* shall|strong=\"H6440\"* help|strong=\"H5826\"* them|strong=\"H5414\"*" + }, + { + "verseNum": 15, + "text": "until|strong=\"H5704\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* your|strong=\"H3068\"* brothers rest|strong=\"H5117\"*, as|strong=\"H5704\"* he|strong=\"H5704\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*, and|strong=\"H4872\"* they|strong=\"H1992\"* have|strong=\"H3068\"* also|strong=\"H1571\"* possessed|strong=\"H3423\"* the|strong=\"H5414\"* land|strong=\"H5676\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* them|strong=\"H5414\"*. Then|strong=\"H1571\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H5704\"* the|strong=\"H5414\"* land|strong=\"H5676\"* of|strong=\"H3068\"* your|strong=\"H3068\"* possession|strong=\"H3423\"* and|strong=\"H4872\"* possess|strong=\"H3423\"* it|strong=\"H5414\"*, which|strong=\"H3068\"* Moses|strong=\"H4872\"* the|strong=\"H5414\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* you|strong=\"H5414\"* beyond|strong=\"H5676\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"* toward|strong=\"H5704\"* the|strong=\"H5414\"* sunrise|strong=\"H4217\"*.’”" + }, + { + "verseNum": 16, + "text": "They|strong=\"H6213\"* answered|strong=\"H6030\"* Joshua|strong=\"H3091\"*, saying, “All|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H6680\"* have|strong=\"H3605\"* commanded|strong=\"H6680\"* us|strong=\"H6213\"* we|strong=\"H3068\"* will|strong=\"H6213\"* do|strong=\"H6213\"*, and|strong=\"H6030\"* wherever|strong=\"H3605\"* you|strong=\"H6680\"* send|strong=\"H7971\"* us|strong=\"H6213\"* we|strong=\"H3068\"* will|strong=\"H6213\"* go|strong=\"H3212\"*." + }, + { + "verseNum": 17, + "text": "Just|strong=\"H3605\"* as|strong=\"H1961\"* we|strong=\"H3068\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* Moses|strong=\"H4872\"* in|strong=\"H3068\"* all|strong=\"H3605\"* things|strong=\"H3605\"*, so|strong=\"H3651\"* will|strong=\"H3068\"* we|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* you|strong=\"H3605\"*. Only|strong=\"H7535\"* may|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3605\"*, as|strong=\"H1961\"* he|strong=\"H3651\"* was|strong=\"H3068\"* with|strong=\"H5973\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 18, + "text": "Whoever|strong=\"H3605\"* rebels|strong=\"H4784\"* against|strong=\"H4784\"* your|strong=\"H3605\"* commandment|strong=\"H6310\"*, and|strong=\"H8085\"* doesn’t listen|strong=\"H8085\"* to|strong=\"H4191\"* your|strong=\"H3605\"* words|strong=\"H1697\"* in|strong=\"H4191\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H6680\"* command|strong=\"H6680\"* him|strong=\"H6680\"* shall|strong=\"H3808\"* himself|strong=\"H2388\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. Only|strong=\"H7535\"* be|strong=\"H4191\"* strong|strong=\"H2388\"* and|strong=\"H8085\"* courageous|strong=\"H2388\"*.”" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Joshua|strong=\"H3091\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"* secretly|strong=\"H2791\"* sent|strong=\"H7971\"* two|strong=\"H8147\"* men|strong=\"H1121\"* out|strong=\"H7971\"* of|strong=\"H1121\"* Shittim|strong=\"H7851\"* as|strong=\"H1121\"* spies|strong=\"H7270\"*, saying, “Go|strong=\"H3212\"*, view|strong=\"H7200\"* the|strong=\"H7200\"* land, including|strong=\"H4480\"* Jericho|strong=\"H3405\"*.” They|strong=\"H8033\"* went|strong=\"H3212\"* and|strong=\"H1121\"* came|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H7200\"* house|strong=\"H1004\"* of|strong=\"H1121\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"* whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Rahab|strong=\"H7343\"*, and|strong=\"H1121\"* slept|strong=\"H7901\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H2009\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Jericho|strong=\"H3405\"* was|strong=\"H3478\"* told, “Behold|strong=\"H2009\"*,+ 2:2 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* men|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H2009\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"* in|strong=\"H3478\"* here|strong=\"H2009\"* tonight|strong=\"H3915\"* to|strong=\"H3478\"* spy out|strong=\"H2658\"* the|strong=\"H2009\"* land.”" + }, + { + "verseNum": 3, + "text": "Jericho|strong=\"H3405\"*’s king|strong=\"H4428\"* sent|strong=\"H7971\"* to|strong=\"H3318\"* Rahab|strong=\"H7343\"*, saying, “Bring|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H3605\"* men|strong=\"H3605\"* who|strong=\"H3605\"* have|strong=\"H3605\"* come|strong=\"H3318\"* to|strong=\"H3318\"* you|strong=\"H3588\"*, who|strong=\"H3605\"* have|strong=\"H3605\"* entered|strong=\"H3318\"* into|strong=\"H3318\"* your|strong=\"H3605\"* house|strong=\"H1004\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3605\"* come|strong=\"H3318\"* to|strong=\"H3318\"* spy out|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land.”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H3947\"* woman took|strong=\"H3947\"* the|strong=\"H3947\"* two|strong=\"H8147\"* men|strong=\"H1992\"* and|strong=\"H3045\"* hid|strong=\"H6845\"* them|strong=\"H1992\"*. Then|strong=\"H3947\"* she|strong=\"H8147\"* said|strong=\"H3651\"*, “Yes|strong=\"H3651\"*, the|strong=\"H3947\"* men|strong=\"H1992\"* came|strong=\"H8147\"* to|strong=\"H3045\"* me|strong=\"H3947\"*, but|strong=\"H3808\"* I|strong=\"H3651\"* didn’t know|strong=\"H3045\"* where|strong=\"H3808\"* they|strong=\"H1992\"* came|strong=\"H8147\"* from|strong=\"H3947\"*." + }, + { + "verseNum": 5, + "text": "About|strong=\"H1961\"* the|strong=\"H3588\"* time|strong=\"H3318\"* of|strong=\"H8179\"* the|strong=\"H3588\"* shutting|strong=\"H5462\"* of|strong=\"H8179\"* the|strong=\"H3588\"* gate|strong=\"H8179\"*, when|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H1961\"* dark|strong=\"H2822\"*, the|strong=\"H3588\"* men|strong=\"H1980\"* went|strong=\"H1980\"* out|strong=\"H3318\"*. Where|strong=\"H3808\"* the|strong=\"H3588\"* men|strong=\"H1980\"* went|strong=\"H1980\"*, I|strong=\"H3588\"* don’t know|strong=\"H3045\"*. Pursue|strong=\"H7291\"* them|strong=\"H3318\"* quickly|strong=\"H4118\"*. You|strong=\"H3588\"* may|strong=\"H1961\"* catch|strong=\"H5381\"* up|strong=\"H5462\"* with|strong=\"H1980\"* them|strong=\"H3318\"*.”" + }, + { + "verseNum": 6, + "text": "But|strong=\"H1931\"* she|strong=\"H1931\"* had|strong=\"H1931\"* brought|strong=\"H5927\"* them|strong=\"H5921\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H5921\"* roof|strong=\"H1406\"*, and|strong=\"H6086\"* hidden|strong=\"H2934\"* them|strong=\"H5921\"* under|strong=\"H5921\"* the|strong=\"H5921\"* stalks|strong=\"H6086\"* of|strong=\"H6086\"* flax|strong=\"H6593\"* which|strong=\"H1931\"* she|strong=\"H1931\"* had|strong=\"H1931\"* laid|strong=\"H2934\"* in|strong=\"H5921\"* order|strong=\"H6186\"* on|strong=\"H5921\"* the|strong=\"H5921\"* roof|strong=\"H1406\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5921\"* men pursued|strong=\"H7291\"* them|strong=\"H5921\"* along|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* to|strong=\"H3318\"* the|strong=\"H5921\"* fords|strong=\"H4569\"* of|strong=\"H1870\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* River. As|strong=\"H3318\"* soon as|strong=\"H3318\"* those|strong=\"H5921\"* who pursued|strong=\"H7291\"* them|strong=\"H5921\"* had|strong=\"H7291\"* gone|strong=\"H3318\"* out|strong=\"H3318\"*, they|strong=\"H5921\"* shut|strong=\"H5462\"* the|strong=\"H5921\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 8, + "text": "Before|strong=\"H2962\"* they|strong=\"H1992\"* had|strong=\"H1931\"* lain|strong=\"H7901\"* down|strong=\"H7901\"*, she|strong=\"H1931\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* them|strong=\"H1992\"* on|strong=\"H5921\"* the|strong=\"H5921\"* roof|strong=\"H1406\"*." + }, + { + "verseNum": 9, + "text": "She|strong=\"H3588\"* said to|strong=\"H3068\"* the|strong=\"H3605\"* men|strong=\"H3605\"*, “I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H3588\"* the|strong=\"H3605\"* land|strong=\"H6440\"*, and|strong=\"H3068\"* that|strong=\"H3588\"* the|strong=\"H3605\"* fear|strong=\"H6440\"* of|strong=\"H3068\"* you|strong=\"H3588\"* has|strong=\"H3068\"* fallen|strong=\"H5307\"* upon|strong=\"H5921\"* us|strong=\"H5414\"*, and|strong=\"H3068\"* that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land|strong=\"H6440\"* melt|strong=\"H4127\"* away|strong=\"H5307\"* before|strong=\"H6440\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* how|strong=\"H3588\"* Yahweh|strong=\"H3068\"* dried|strong=\"H3001\"* up|strong=\"H3001\"* the|strong=\"H6440\"* water|strong=\"H4325\"* of|strong=\"H4428\"* the|strong=\"H6440\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*; and|strong=\"H3068\"* what|strong=\"H6213\"* you|strong=\"H3588\"* did|strong=\"H6213\"* to|strong=\"H3318\"* the|strong=\"H6440\"* two|strong=\"H8147\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H6440\"* Amorites, who|strong=\"H3068\"* were|strong=\"H4325\"* beyond|strong=\"H5676\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"*, to|strong=\"H3318\"* Sihon|strong=\"H5511\"* and|strong=\"H3068\"* to|strong=\"H3318\"* Og|strong=\"H5747\"*, whom|strong=\"H6440\"* you|strong=\"H3588\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"*." + }, + { + "verseNum": 11, + "text": "As|strong=\"H3824\"* soon|strong=\"H5750\"* as|strong=\"H3824\"* we|strong=\"H3068\"* had|strong=\"H3068\"* heard|strong=\"H8085\"* it|strong=\"H1931\"*, our|strong=\"H3068\"* hearts|strong=\"H3824\"* melted|strong=\"H4549\"*, and|strong=\"H6965\"* there|strong=\"H8478\"* wasn’t any|strong=\"H5750\"* more|strong=\"H5750\"* spirit|strong=\"H7307\"* in|strong=\"H5921\"* any|strong=\"H5750\"* man|strong=\"H6440\"*, because|strong=\"H3588\"* of|strong=\"H3068\"* you|strong=\"H3588\"*: for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, he|strong=\"H1931\"* is|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H5921\"* heaven|strong=\"H8064\"* above|strong=\"H4605\"*, and|strong=\"H6965\"* on|strong=\"H5921\"* earth|strong=\"H8064\"* beneath|strong=\"H8478\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* swear|strong=\"H7650\"* to|strong=\"H3068\"* me|strong=\"H5414\"* by|strong=\"H7650\"* Yahweh|strong=\"H3068\"*, since|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* dealt|strong=\"H6213\"* kindly|strong=\"H2617\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* also|strong=\"H1571\"* will|strong=\"H3068\"* deal|strong=\"H6213\"* kindly|strong=\"H2617\"* with|strong=\"H5973\"* my|strong=\"H5414\"* father’s house|strong=\"H1004\"*, and|strong=\"H3068\"* give|strong=\"H5414\"* me|strong=\"H5414\"* a|strong=\"H3068\"* true|strong=\"H3068\"* sign;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H5315\"* that|strong=\"H3605\"* you|strong=\"H3605\"* will|strong=\"H5315\"* save|strong=\"H2421\"* alive|strong=\"H2421\"* my|strong=\"H3605\"* father, my|strong=\"H3605\"* mother, my|strong=\"H3605\"* brothers, and|strong=\"H5315\"* my|strong=\"H3605\"* sisters, and|strong=\"H5315\"* all|strong=\"H3605\"* that|strong=\"H3605\"* they|strong=\"H5315\"* have|strong=\"H3605\"*, and|strong=\"H5315\"* will|strong=\"H5315\"* deliver|strong=\"H5337\"* our|strong=\"H3605\"* lives|strong=\"H5315\"* from|strong=\"H5315\"* death|strong=\"H4194\"*.”" + }, + { + "verseNum": 14, + "text": "The|strong=\"H5414\"* men|strong=\"H6213\"* said|strong=\"H1697\"* to|strong=\"H4191\"* her|strong=\"H5414\"*, “Our|strong=\"H3068\"* life|strong=\"H5315\"* for|strong=\"H6213\"* yours|strong=\"H5414\"*, if|strong=\"H1961\"* you|strong=\"H5414\"* don’t talk|strong=\"H1697\"* about|strong=\"H1961\"* this|strong=\"H2088\"* business|strong=\"H1697\"* of|strong=\"H3068\"* ours; and|strong=\"H3068\"* it|strong=\"H5414\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, when|strong=\"H1961\"* Yahweh|strong=\"H3068\"* gives|strong=\"H5414\"* us|strong=\"H5414\"* the|strong=\"H5414\"* land, that|strong=\"H5315\"* we|strong=\"H3068\"* will|strong=\"H3068\"* deal|strong=\"H6213\"* kindly|strong=\"H2617\"* and|strong=\"H3068\"* truly|strong=\"H6213\"* with|strong=\"H5973\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H3588\"* she|strong=\"H1931\"* let|strong=\"H3381\"* them|strong=\"H3381\"* down|strong=\"H3381\"* by|strong=\"H3427\"* a|strong=\"H3068\"* cord|strong=\"H2256\"* through|strong=\"H1157\"* the|strong=\"H3588\"* window|strong=\"H2474\"*; for|strong=\"H3588\"* her|strong=\"H3381\"* house|strong=\"H1004\"* was|strong=\"H1931\"* on|strong=\"H3427\"* the|strong=\"H3588\"* side|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H3588\"* wall|strong=\"H2346\"*, and|strong=\"H1004\"* she|strong=\"H1931\"* lived|strong=\"H3427\"* on|strong=\"H3427\"* the|strong=\"H3588\"* wall|strong=\"H2346\"*." + }, + { + "verseNum": 16, + "text": "She|strong=\"H5704\"* said to|strong=\"H5704\"* them|strong=\"H7725\"*, “Go|strong=\"H3212\"* to|strong=\"H5704\"* the|strong=\"H7725\"* mountain|strong=\"H2022\"*, lest|strong=\"H6435\"* the|strong=\"H7725\"* pursuers|strong=\"H7291\"* find you|strong=\"H3117\"*. Hide|strong=\"H2247\"* yourselves|strong=\"H8033\"* there|strong=\"H8033\"* three|strong=\"H7969\"* days|strong=\"H3117\"*, until|strong=\"H5704\"* the|strong=\"H7725\"* pursuers|strong=\"H7291\"* have|strong=\"H3117\"* returned|strong=\"H7725\"*. Afterward, you|strong=\"H3117\"* may|strong=\"H7725\"* go|strong=\"H3212\"* your|strong=\"H7725\"* way|strong=\"H1870\"*.”" + }, + { + "verseNum": 17, + "text": "The|strong=\"H7650\"* men said to|strong=\"H7650\"* her|strong=\"H5355\"*, “We will|strong=\"H2088\"* be guiltless|strong=\"H5355\"* of|strong=\"H7621\"* this|strong=\"H2088\"* your|strong=\"H2088\"* oath|strong=\"H7621\"* which|strong=\"H2088\"* you|strong=\"H2088\"*’ve made|strong=\"H7650\"* us to|strong=\"H7650\"* swear|strong=\"H7650\"*." + }, + { + "verseNum": 18, + "text": "Behold|strong=\"H2009\"*, when|strong=\"H2009\"* we|strong=\"H3068\"* come|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H3605\"* land, tie|strong=\"H7194\"* this|strong=\"H2088\"* line|strong=\"H8615\"* of|strong=\"H1004\"* scarlet|strong=\"H8144\"* thread|strong=\"H2339\"* in|strong=\"H1004\"* the|strong=\"H3605\"* window|strong=\"H2474\"* which|strong=\"H1004\"* you|strong=\"H3605\"* used|strong=\"H3605\"* to|strong=\"H3381\"* let|strong=\"H3381\"* us|strong=\"H3381\"* down|strong=\"H3381\"*. Gather to|strong=\"H3381\"* yourself into|strong=\"H3381\"* the|strong=\"H3605\"* house|strong=\"H1004\"* your|strong=\"H3605\"* father, your|strong=\"H3605\"* mother, your|strong=\"H3605\"* brothers, and|strong=\"H1004\"* all|strong=\"H3605\"* your|strong=\"H3605\"* father’s household|strong=\"H1004\"*." + }, + { + "verseNum": 19, + "text": "It|strong=\"H1961\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* that|strong=\"H3605\"* whoever|strong=\"H3605\"* goes|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3605\"* doors|strong=\"H1817\"* of|strong=\"H1004\"* your|strong=\"H3605\"* house|strong=\"H1004\"* into|strong=\"H3318\"* the|strong=\"H3605\"* street|strong=\"H2351\"*, his|strong=\"H3605\"* blood|strong=\"H1818\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H3027\"* his|strong=\"H3605\"* head|strong=\"H7218\"*, and|strong=\"H3027\"* we|strong=\"H3068\"* will|strong=\"H1961\"* be|strong=\"H1961\"* guiltless|strong=\"H5355\"*. Whoever|strong=\"H3605\"* is|strong=\"H3027\"* with|strong=\"H1004\"* you|strong=\"H3605\"* in|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, his|strong=\"H3605\"* blood|strong=\"H1818\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* on|strong=\"H3027\"* our|strong=\"H3605\"* head|strong=\"H7218\"*, if|strong=\"H1961\"* any|strong=\"H3605\"* hand|strong=\"H3027\"* is|strong=\"H3027\"* on|strong=\"H3027\"* him|strong=\"H3027\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H1961\"* if|strong=\"H1961\"* you|strong=\"H5046\"* talk|strong=\"H1697\"* about|strong=\"H1961\"* this|strong=\"H2088\"* business|strong=\"H1697\"* of|strong=\"H1697\"* ours, then|strong=\"H1961\"* we|strong=\"H3068\"* shall|strong=\"H2088\"* be|strong=\"H1961\"* guiltless|strong=\"H5355\"* of|strong=\"H1697\"* your|strong=\"H1961\"* oath|strong=\"H7621\"* which|strong=\"H1697\"* you|strong=\"H5046\"*’ve made|strong=\"H7650\"* us|strong=\"H5046\"* to|strong=\"H1961\"* swear|strong=\"H7650\"*.”" + }, + { + "verseNum": 21, + "text": "She|strong=\"H1931\"* said|strong=\"H1697\"*, “Let|strong=\"H7971\"* it|strong=\"H1931\"* be|strong=\"H1697\"* as|strong=\"H1697\"* you|strong=\"H7971\"* have|strong=\"H1697\"* said|strong=\"H1697\"*.” She|strong=\"H1931\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* away|strong=\"H7971\"*, and|strong=\"H7971\"* they|strong=\"H3651\"* departed|strong=\"H3212\"*. Then|strong=\"H3651\"* she|strong=\"H1931\"* tied|strong=\"H7194\"* the|strong=\"H7971\"* scarlet|strong=\"H8144\"* line|strong=\"H8615\"* in|strong=\"H3212\"* the|strong=\"H7971\"* window|strong=\"H2474\"*." + }, + { + "verseNum": 22, + "text": "They|strong=\"H3117\"* went|strong=\"H3212\"* and|strong=\"H7725\"* came|strong=\"H3212\"* to|strong=\"H5704\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"*, and|strong=\"H7725\"* stayed|strong=\"H3427\"* there|strong=\"H8033\"* three|strong=\"H7969\"* days|strong=\"H3117\"*, until|strong=\"H5704\"* the|strong=\"H3605\"* pursuers|strong=\"H7291\"* had|strong=\"H4672\"* returned|strong=\"H7725\"*. The|strong=\"H3605\"* pursuers|strong=\"H7291\"* sought|strong=\"H1245\"* them|strong=\"H7725\"* all|strong=\"H3605\"* along|strong=\"H3212\"* the|strong=\"H3605\"* way|strong=\"H1870\"*, but|strong=\"H3808\"* didn’t find|strong=\"H4672\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 23, + "text": "Then|strong=\"H7725\"* the|strong=\"H3605\"* two|strong=\"H8147\"* men|strong=\"H1121\"* returned|strong=\"H7725\"*, descended|strong=\"H3381\"* from|strong=\"H7725\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"*, crossed|strong=\"H5674\"* the|strong=\"H3605\"* river, and|strong=\"H1121\"* came|strong=\"H3381\"* to|strong=\"H7725\"* Joshua|strong=\"H3091\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*. They|strong=\"H3605\"* told|strong=\"H5608\"* him|strong=\"H7725\"* all|strong=\"H3605\"* that|strong=\"H3605\"* had|strong=\"H3091\"* happened|strong=\"H4672\"* to|strong=\"H7725\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H3588\"* said to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, “Truly|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"* into|strong=\"H3027\"* our|strong=\"H3068\"* hands|strong=\"H3027\"*. Moreover|strong=\"H1571\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land|strong=\"H6440\"* melt|strong=\"H4127\"* away|strong=\"H4127\"* before|strong=\"H6440\"* us|strong=\"H5414\"*.”" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Joshua|strong=\"H3091\"* got|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3478\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*; and|strong=\"H1121\"* they|strong=\"H8033\"* moved|strong=\"H5265\"* from|strong=\"H5265\"* Shittim|strong=\"H7851\"* and|strong=\"H1121\"* came|strong=\"H3478\"* to|strong=\"H5704\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, he|strong=\"H1931\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. They|strong=\"H8033\"* camped there|strong=\"H8033\"* before|strong=\"H2962\"* they|strong=\"H8033\"* crossed|strong=\"H5674\"* over|strong=\"H5674\"*." + }, + { + "verseNum": 2, + "text": "After|strong=\"H1961\"* three|strong=\"H7969\"* days|strong=\"H3117\"*, the|strong=\"H3117\"* officers|strong=\"H7860\"* went|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3117\"* middle|strong=\"H7130\"* of|strong=\"H3117\"* the|strong=\"H3117\"* camp|strong=\"H4264\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H1980\"* they|strong=\"H3068\"* commanded|strong=\"H6680\"* the|strong=\"H7200\"* people|strong=\"H5971\"*, saying, “When|strong=\"H7200\"* you|strong=\"H6680\"* see|strong=\"H7200\"* the|strong=\"H7200\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, and|strong=\"H1980\"* the|strong=\"H7200\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"* bearing|strong=\"H5375\"* it|strong=\"H7200\"*, then|strong=\"H1980\"* leave|strong=\"H1980\"* your|strong=\"H3068\"* place|strong=\"H4725\"* and|strong=\"H1980\"* follow|strong=\"H1980\"* it|strong=\"H7200\"*." + }, + { + "verseNum": 4, + "text": "Yet|strong=\"H3588\"* there|strong=\"H1961\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* a|strong=\"H3068\"* space|strong=\"H7350\"* between|strong=\"H3045\"* you|strong=\"H3588\"* and|strong=\"H3212\"* it|strong=\"H7126\"* of|strong=\"H1870\"* about|strong=\"H1961\"* two|strong=\"H3808\"* thousand cubits+ 3:4 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters, so 2,000 cubits is about 920 meters.* by|strong=\"H5674\"* measure|strong=\"H4060\"*—don’t come|strong=\"H1961\"* closer to|strong=\"H3212\"* it|strong=\"H7126\"*—that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H1961\"* know|strong=\"H3045\"* the|strong=\"H3588\"* way|strong=\"H1870\"* by|strong=\"H5674\"* which|strong=\"H3588\"* you|strong=\"H3588\"* must|strong=\"H3808\"* go|strong=\"H3212\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* not|strong=\"H3808\"* passed|strong=\"H5674\"* this|strong=\"H5674\"* way|strong=\"H1870\"* before|strong=\"H3808\"*.”" + }, + { + "verseNum": 5, + "text": "Joshua|strong=\"H3091\"* said to|strong=\"H3068\"* the|strong=\"H3588\"* people|strong=\"H5971\"*, “Sanctify|strong=\"H6942\"* yourselves|strong=\"H6942\"*; for|strong=\"H3588\"* tomorrow|strong=\"H4279\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"* wonders|strong=\"H6381\"* among|strong=\"H7130\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 6, + "text": "Joshua|strong=\"H3091\"* spoke to|strong=\"H3212\"* the|strong=\"H6440\"* priests|strong=\"H3548\"*, saying, “Take|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H6440\"* ark of|strong=\"H6440\"* the|strong=\"H6440\"* covenant|strong=\"H1285\"*, and|strong=\"H3212\"* cross|strong=\"H5674\"* over|strong=\"H5674\"* before|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"*.” They|strong=\"H5971\"* took|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H6440\"* ark of|strong=\"H6440\"* the|strong=\"H6440\"* covenant|strong=\"H1285\"*, and|strong=\"H3212\"* went|strong=\"H3212\"* before|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* Joshua|strong=\"H3091\"*, “Today|strong=\"H3117\"* I|strong=\"H3588\"* will|strong=\"H3068\"* begin|strong=\"H2490\"* to|strong=\"H3478\"* magnify|strong=\"H1431\"* you|strong=\"H3588\"* in|strong=\"H3478\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H1961\"* know|strong=\"H3045\"* that|strong=\"H3588\"* as|strong=\"H3117\"* I|strong=\"H3588\"* was|strong=\"H3068\"* with|strong=\"H5973\"* Moses|strong=\"H4872\"*, so|strong=\"H1961\"* I|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H6680\"* shall|strong=\"H3548\"* command|strong=\"H6680\"* the|strong=\"H5375\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* bear|strong=\"H5375\"* the|strong=\"H5375\"* ark of|strong=\"H4325\"* the|strong=\"H5375\"* covenant|strong=\"H1285\"*, saying, ‘When|strong=\"H5704\"* you|strong=\"H6680\"* come to|strong=\"H5704\"* the|strong=\"H5375\"* brink|strong=\"H7097\"* of|strong=\"H4325\"* the|strong=\"H5375\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* the|strong=\"H5375\"* Jordan|strong=\"H3383\"*, you|strong=\"H6680\"* shall|strong=\"H3548\"* stand|strong=\"H5975\"* still|strong=\"H5975\"* in|strong=\"H5975\"* the|strong=\"H5375\"* Jordan|strong=\"H3383\"*.’”" + }, + { + "verseNum": 9, + "text": "Joshua|strong=\"H3091\"* said|strong=\"H1697\"* to|strong=\"H3478\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “Come|strong=\"H5066\"* here|strong=\"H2008\"*, and|strong=\"H1121\"* hear|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.”" + }, + { + "verseNum": 10, + "text": "Joshua|strong=\"H3091\"* said, “By|strong=\"H6440\"* this|strong=\"H2063\"* you|strong=\"H3588\"* shall|strong=\"H6440\"* know|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H6440\"* living|strong=\"H2416\"* God is|strong=\"H6440\"* among|strong=\"H7130\"* you|strong=\"H3588\"*, and|strong=\"H6440\"* that|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H3588\"* without|strong=\"H3588\"* fail|strong=\"H3423\"* drive|strong=\"H3423\"* the|strong=\"H6440\"* Canaanite|strong=\"H3669\"*, the|strong=\"H6440\"* Hittite|strong=\"H2850\"*, the|strong=\"H6440\"* Hivite|strong=\"H2340\"*, the|strong=\"H6440\"* Perizzite|strong=\"H6522\"*, the|strong=\"H6440\"* Girgashite|strong=\"H1622\"*, the|strong=\"H6440\"* Amorite, and|strong=\"H6440\"* the|strong=\"H6440\"* Jebusite|strong=\"H2983\"* out|strong=\"H3423\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H3605\"* ark of|strong=\"H6440\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* of|strong=\"H6440\"* the|strong=\"H3605\"* Lord+ 3:11 The word translated “Lord” is “Adonai.”* of|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth passes|strong=\"H5674\"* over|strong=\"H5674\"* before|strong=\"H6440\"* you|strong=\"H6440\"* into|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* take|strong=\"H3947\"* twelve|strong=\"H8147\"* men|strong=\"H8147\"* out|strong=\"H3947\"* of|strong=\"H7626\"* the|strong=\"H3947\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*, for|strong=\"H3478\"* every|strong=\"H3947\"* tribe|strong=\"H7626\"* a|strong=\"H3068\"* man." + }, + { + "verseNum": 13, + "text": "It|strong=\"H5117\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* that|strong=\"H3605\"* when|strong=\"H1961\"* the|strong=\"H3605\"* soles|strong=\"H3709\"* of|strong=\"H3068\"* the|strong=\"H3605\"* feet|strong=\"H7272\"* of|strong=\"H3068\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* who|strong=\"H3605\"* bear|strong=\"H5375\"* the|strong=\"H3605\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* Lord|strong=\"H3068\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth, rest|strong=\"H5117\"* in|strong=\"H3068\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, that|strong=\"H3605\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* will|strong=\"H3068\"* be|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*. The|strong=\"H3605\"* waters|strong=\"H4325\"* that|strong=\"H3605\"* come|strong=\"H1961\"* down|strong=\"H3381\"* from|strong=\"H3772\"* above|strong=\"H4605\"* shall|strong=\"H3548\"* stand|strong=\"H5975\"* in|strong=\"H3068\"* one|strong=\"H3605\"* heap|strong=\"H5067\"*.”" + }, + { + "verseNum": 14, + "text": "When|strong=\"H1961\"* the|strong=\"H6440\"* people|strong=\"H5971\"* moved|strong=\"H5265\"* from|strong=\"H5265\"* their|strong=\"H5375\"* tents to|strong=\"H1961\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"*, the|strong=\"H6440\"* priests|strong=\"H3548\"* who|strong=\"H5971\"* bore|strong=\"H5375\"* the|strong=\"H6440\"* ark of|strong=\"H6440\"* the|strong=\"H6440\"* covenant|strong=\"H1285\"* being|strong=\"H1961\"* before|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 15, + "text": "and|strong=\"H3117\"* when|strong=\"H3117\"* those|strong=\"H3605\"* who|strong=\"H3605\"* bore|strong=\"H5375\"* the|strong=\"H3605\"* ark had|strong=\"H3548\"* come|strong=\"H4390\"* to|strong=\"H5704\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, and|strong=\"H3117\"* the|strong=\"H3605\"* feet|strong=\"H7272\"* of|strong=\"H3117\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* who|strong=\"H3605\"* bore|strong=\"H5375\"* the|strong=\"H3605\"* ark had|strong=\"H3548\"* dipped|strong=\"H2881\"* in|strong=\"H5921\"* the|strong=\"H3605\"* edge|strong=\"H7097\"* of|strong=\"H3117\"* the|strong=\"H3605\"* water|strong=\"H4325\"* (for|strong=\"H5704\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* overflows|strong=\"H4390\"* all|strong=\"H3605\"* its|strong=\"H3605\"* banks|strong=\"H1415\"* all|strong=\"H3605\"* the|strong=\"H3605\"* time|strong=\"H3117\"* of|strong=\"H3117\"* harvest|strong=\"H7105\"*)," + }, + { + "verseNum": 16, + "text": "the|strong=\"H5921\"* waters|strong=\"H4325\"* which|strong=\"H5971\"* came|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H3772\"* above|strong=\"H4605\"* stood|strong=\"H5975\"*, and|strong=\"H6965\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H5921\"* one|strong=\"H5892\"* heap|strong=\"H5067\"* a|strong=\"H3068\"* great|strong=\"H3966\"* way|strong=\"H7368\"* off|strong=\"H3772\"*, at|strong=\"H5921\"* Adam, the|strong=\"H5921\"* city|strong=\"H5892\"* that|strong=\"H5971\"* is|strong=\"H5892\"* beside|strong=\"H5921\"* Zarethan|strong=\"H6891\"*; and|strong=\"H6965\"* those|strong=\"H5921\"* that|strong=\"H5971\"* went|strong=\"H3381\"* down|strong=\"H3381\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* of|strong=\"H5892\"* the|strong=\"H5921\"* Arabah|strong=\"H6160\"*, even|strong=\"H5921\"* the|strong=\"H5921\"* Salt|strong=\"H4417\"* Sea|strong=\"H3220\"*, were|strong=\"H5971\"* wholly cut|strong=\"H3772\"* off|strong=\"H3772\"*. Then|strong=\"H6965\"* the|strong=\"H5921\"* people|strong=\"H5971\"* passed|strong=\"H5674\"* over|strong=\"H5921\"* near|strong=\"H5921\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* priests|strong=\"H3548\"* who|strong=\"H3605\"* bore|strong=\"H5375\"* the|strong=\"H3605\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* stood|strong=\"H5975\"* firm|strong=\"H3559\"* on|strong=\"H5674\"* dry|strong=\"H2724\"* ground|strong=\"H2724\"* in|strong=\"H3478\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*; and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* crossed|strong=\"H5674\"* over|strong=\"H5674\"* on|strong=\"H5674\"* dry|strong=\"H2724\"* ground|strong=\"H2724\"*, until|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nation|strong=\"H1471\"* had|strong=\"H3068\"* passed|strong=\"H5674\"* completely|strong=\"H3605\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nation|strong=\"H1471\"* had|strong=\"H3068\"* completely|strong=\"H3605\"* crossed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, saying," + }, + { + "verseNum": 2, + "text": "“Take|strong=\"H3947\"* twelve|strong=\"H8147\"* men|strong=\"H5971\"* out|strong=\"H4480\"* of|strong=\"H7626\"* the|strong=\"H3947\"* people|strong=\"H5971\"*, a|strong=\"H3068\"* man out|strong=\"H4480\"* of|strong=\"H7626\"* every|strong=\"H3947\"* tribe|strong=\"H7626\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H3548\"* command|strong=\"H6680\"* them|strong=\"H6680\"*, saying, ‘Take|strong=\"H5375\"* from|strong=\"H7272\"* out|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H5375\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H5375\"* Jordan|strong=\"H3383\"*, out|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H5375\"* place|strong=\"H4411\"* where|strong=\"H4673\"* the|strong=\"H5375\"* priests|strong=\"H3548\"*’ feet|strong=\"H7272\"* stood|strong=\"H4673\"* firm|strong=\"H3559\"*, twelve|strong=\"H8147\"* stones, carry|strong=\"H5375\"* them|strong=\"H6680\"* over|strong=\"H5674\"* with|strong=\"H5973\"* you|strong=\"H6680\"*, and|strong=\"H3548\"* lay|strong=\"H3240\"* them|strong=\"H6680\"* down|strong=\"H3240\"* in|strong=\"H8432\"* the|strong=\"H5375\"* place|strong=\"H4411\"* where|strong=\"H4673\"* you|strong=\"H6680\"*’ll camp tonight|strong=\"H3915\"*.’”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H7121\"* Joshua|strong=\"H3091\"* called|strong=\"H7121\"* the|strong=\"H7121\"* twelve|strong=\"H8147\"* men|strong=\"H1121\"* whom|strong=\"H7121\"* he|strong=\"H8147\"* had|strong=\"H3478\"* prepared|strong=\"H3559\"* of|strong=\"H1121\"* the|strong=\"H7121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, a|strong=\"H3068\"* man|strong=\"H1121\"* out|strong=\"H8147\"* of|strong=\"H1121\"* every|strong=\"H7121\"* tribe|strong=\"H7626\"*." + }, + { + "verseNum": 5, + "text": "Joshua|strong=\"H3091\"* said to|strong=\"H3478\"* them|strong=\"H5921\"*, “Cross|strong=\"H5674\"* before|strong=\"H6440\"* the|strong=\"H6440\"* ark of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* into|strong=\"H8432\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"*, and|strong=\"H1121\"* each of|strong=\"H1121\"* you|strong=\"H6440\"* pick up|strong=\"H7311\"* a|strong=\"H3068\"* stone and|strong=\"H1121\"* put|strong=\"H3068\"* it|strong=\"H5921\"* on|strong=\"H5921\"* your|strong=\"H3068\"* shoulder|strong=\"H7926\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H6440\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H6440\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*;" + }, + { + "verseNum": 6, + "text": "that|strong=\"H3588\"* this|strong=\"H2063\"* may|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* sign among|strong=\"H7130\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* when|strong=\"H3588\"* your|strong=\"H3588\"* children|strong=\"H1121\"* ask|strong=\"H7592\"* in|strong=\"H1121\"* the|strong=\"H3588\"* future, saying, ‘What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3588\"* mean by|strong=\"H1961\"* these|strong=\"H2063\"* stones?’" + }, + { + "verseNum": 7, + "text": "then|strong=\"H1961\"* you|strong=\"H6440\"* shall|strong=\"H3068\"* tell them|strong=\"H6440\"*, ‘Because|strong=\"H6440\"* the|strong=\"H6440\"* waters|strong=\"H4325\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"* were|strong=\"H3478\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* before|strong=\"H6440\"* the|strong=\"H6440\"* ark of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*. When|strong=\"H1961\"* it|strong=\"H6440\"* crossed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"*, the|strong=\"H6440\"* waters|strong=\"H4325\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"* were|strong=\"H3478\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*. These|strong=\"H6440\"* stones shall|strong=\"H3068\"* be|strong=\"H1961\"* for|strong=\"H5704\"* a|strong=\"H3068\"* memorial|strong=\"H2146\"* to|strong=\"H5704\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* forever|strong=\"H5769\"*.’”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H5375\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Joshua|strong=\"H3091\"* commanded|strong=\"H6680\"*, and|strong=\"H1121\"* took|strong=\"H5375\"* up|strong=\"H5375\"* twelve|strong=\"H8147\"* stones out|strong=\"H6213\"* of|strong=\"H1121\"* the|strong=\"H5375\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H5375\"* Jordan|strong=\"H3383\"*, as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Joshua|strong=\"H3091\"*, according to|strong=\"H1696\"* the|strong=\"H5375\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H5375\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* the|strong=\"H5375\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. They|strong=\"H3651\"* carried|strong=\"H5375\"* them|strong=\"H6213\"* over|strong=\"H5674\"* with|strong=\"H5973\"* them|strong=\"H6213\"* to|strong=\"H1696\"* the|strong=\"H5375\"* place|strong=\"H4411\"* where|strong=\"H8033\"* they|strong=\"H3651\"* camped, and|strong=\"H1121\"* laid|strong=\"H5375\"* them|strong=\"H6213\"* down|strong=\"H3240\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 9, + "text": "Joshua|strong=\"H3091\"* set|strong=\"H6965\"* up|strong=\"H6965\"* twelve|strong=\"H8147\"* stones in|strong=\"H3117\"* the|strong=\"H5375\"* middle|strong=\"H8432\"* of|strong=\"H3117\"* the|strong=\"H5375\"* Jordan|strong=\"H3383\"*, in|strong=\"H3117\"* the|strong=\"H5375\"* place|strong=\"H8478\"* where|strong=\"H8033\"* the|strong=\"H5375\"* feet|strong=\"H7272\"* of|strong=\"H3117\"* the|strong=\"H5375\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* bore|strong=\"H5375\"* the|strong=\"H5375\"* ark of|strong=\"H3117\"* the|strong=\"H5375\"* covenant|strong=\"H1285\"* stood|strong=\"H6965\"*; and|strong=\"H6965\"* they|strong=\"H3117\"* are|strong=\"H3117\"* there|strong=\"H8033\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H5704\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* who|strong=\"H3605\"* bore|strong=\"H5375\"* the|strong=\"H3605\"* ark stood|strong=\"H5975\"* in|strong=\"H3068\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* until|strong=\"H5704\"* everything|strong=\"H3605\"* was|strong=\"H3068\"* finished|strong=\"H8552\"* that|strong=\"H5971\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Joshua|strong=\"H3091\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, according to|strong=\"H1696\"* all|strong=\"H3605\"* that|strong=\"H5971\"* Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* Joshua|strong=\"H3091\"*; and|strong=\"H4872\"* the|strong=\"H3605\"* people|strong=\"H5971\"* hurried|strong=\"H4116\"* and|strong=\"H4872\"* passed|strong=\"H5674\"* over|strong=\"H5674\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* had|strong=\"H3068\"* completely|strong=\"H3605\"* crossed|strong=\"H5674\"* over|strong=\"H5674\"*, Yahweh|strong=\"H3068\"*’s ark crossed|strong=\"H5674\"* over|strong=\"H5674\"* with|strong=\"H3068\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* in|strong=\"H3068\"* the|strong=\"H3605\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* crossed|strong=\"H5674\"* over|strong=\"H5674\"* armed|strong=\"H2571\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, as|strong=\"H6440\"* Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 13, + "text": "About forty thousand men|strong=\"H2502\"*, ready and|strong=\"H3068\"* armed|strong=\"H2502\"* for|strong=\"H6440\"* war|strong=\"H4421\"*, passed|strong=\"H5674\"* over|strong=\"H5674\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* battle|strong=\"H4421\"*, to|strong=\"H3068\"* the|strong=\"H6440\"* plains|strong=\"H6160\"* of|strong=\"H3068\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 14, + "text": "On|strong=\"H3117\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, Yahweh|strong=\"H3068\"* magnified|strong=\"H1431\"* Joshua|strong=\"H3091\"* in|strong=\"H3478\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*; and|strong=\"H4872\"* they|strong=\"H3117\"* feared|strong=\"H3372\"* him|strong=\"H1931\"*, as|strong=\"H3117\"* they|strong=\"H3117\"* feared|strong=\"H3372\"* Moses|strong=\"H4872\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* his|strong=\"H3605\"* life|strong=\"H2416\"*." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, saying," + }, + { + "verseNum": 16, + "text": "“Command|strong=\"H6680\"* the|strong=\"H5375\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* bear|strong=\"H5375\"* the|strong=\"H5375\"* ark of|strong=\"H4480\"* the|strong=\"H5375\"* covenant, that|strong=\"H3548\"* they|strong=\"H5375\"* come|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5375\"* Jordan|strong=\"H3383\"*.”" + }, + { + "verseNum": 17, + "text": "Joshua|strong=\"H3091\"* therefore|strong=\"H3091\"* commanded|strong=\"H6680\"* the|strong=\"H4480\"* priests|strong=\"H3548\"*, saying, “Come|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* Jordan|strong=\"H3383\"*!”" + }, + { + "verseNum": 18, + "text": "When|strong=\"H1961\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* who|strong=\"H3605\"* bore|strong=\"H5375\"* the|strong=\"H3605\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* had|strong=\"H3068\"* come|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H5921\"* of|strong=\"H3068\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* soles|strong=\"H3709\"* of|strong=\"H3068\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*’ feet|strong=\"H7272\"* had|strong=\"H3068\"* been|strong=\"H1961\"* lifted|strong=\"H5375\"* up|strong=\"H5927\"* to|strong=\"H7725\"* the|strong=\"H3605\"* dry|strong=\"H2724\"* ground|strong=\"H2724\"*, the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* their|strong=\"H3605\"* place|strong=\"H4725\"*, and|strong=\"H3068\"* went|strong=\"H3212\"* over|strong=\"H5921\"* all|strong=\"H3605\"* its|strong=\"H3605\"* banks|strong=\"H1415\"*, as|strong=\"H1961\"* before|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H4480\"* people|strong=\"H5971\"* came|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* Jordan|strong=\"H3383\"* on|strong=\"H5927\"* the|strong=\"H4480\"* tenth|strong=\"H6218\"* day|strong=\"H2320\"* of|strong=\"H4480\"* the|strong=\"H4480\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, and|strong=\"H5971\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Gilgal|strong=\"H1537\"*, on|strong=\"H5927\"* the|strong=\"H4480\"* east|strong=\"H4217\"* border|strong=\"H7097\"* of|strong=\"H4480\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 20, + "text": "Joshua|strong=\"H3091\"* set|strong=\"H6965\"* up|strong=\"H6965\"* those|strong=\"H4480\"* twelve|strong=\"H8147\"* stones, which they|strong=\"H3947\"* took|strong=\"H3947\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H3947\"* Jordan|strong=\"H3383\"*, in|strong=\"H6965\"* Gilgal|strong=\"H1537\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H3478\"* spoke to|strong=\"H3478\"* the|strong=\"H7592\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying, “When|strong=\"H1121\"* your|strong=\"H3478\"* children|strong=\"H1121\"* ask|strong=\"H7592\"* their|strong=\"H7592\"* fathers in|strong=\"H3478\"* time|strong=\"H4279\"* to|strong=\"H3478\"* come|strong=\"H4279\"*, saying, ‘What|strong=\"H4100\"* do|strong=\"H4100\"* these stones mean?’" + }, + { + "verseNum": 22, + "text": "Then|strong=\"H2088\"* you|strong=\"H3045\"* shall|strong=\"H1121\"* let your|strong=\"H3045\"* children|strong=\"H1121\"* know|strong=\"H3045\"*, saying, ‘Israel|strong=\"H3478\"* came|strong=\"H3478\"* over|strong=\"H5674\"* this|strong=\"H2088\"* Jordan|strong=\"H3383\"* on|strong=\"H5674\"* dry|strong=\"H3004\"* land|strong=\"H3004\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"H5704\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* dried|strong=\"H3001\"* up|strong=\"H3001\"* the|strong=\"H6440\"* waters|strong=\"H4325\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"* until|strong=\"H5704\"* you|strong=\"H6440\"* had|strong=\"H3068\"* crossed|strong=\"H5674\"* over|strong=\"H5674\"*, as|strong=\"H5704\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* did|strong=\"H6213\"* to|strong=\"H5704\"* the|strong=\"H6440\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*, which|strong=\"H3068\"* he|strong=\"H5704\"* dried|strong=\"H3001\"* up|strong=\"H3001\"* from|strong=\"H6440\"* before|strong=\"H6440\"* us|strong=\"H6213\"*, until|strong=\"H5704\"* we|strong=\"H3068\"* had|strong=\"H3068\"* crossed|strong=\"H5674\"* over|strong=\"H5674\"*," + }, + { + "verseNum": 24, + "text": "that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* is|strong=\"H3068\"* mighty|strong=\"H2389\"*, and|strong=\"H3068\"* that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* forever|strong=\"H3605\"*.’”" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Amorites, who|strong=\"H3605\"* were|strong=\"H3478\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* westward|strong=\"H3220\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Canaanites|strong=\"H3669\"*, who|strong=\"H3605\"* were|strong=\"H3478\"* by|strong=\"H5921\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*, heard|strong=\"H8085\"* how|strong=\"H5704\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* dried|strong=\"H3001\"* up|strong=\"H3001\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* until|strong=\"H5704\"* we|strong=\"H3068\"* had|strong=\"H3068\"* crossed|strong=\"H5674\"* over|strong=\"H5921\"*, their|strong=\"H3605\"* heart|strong=\"H3824\"* melted|strong=\"H4549\"*, and|strong=\"H1121\"* there|strong=\"H1961\"* was|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H5750\"* spirit|strong=\"H7307\"* in|strong=\"H5921\"* them|strong=\"H5921\"*, because|strong=\"H5921\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "At|strong=\"H3478\"* that|strong=\"H1931\"* time|strong=\"H6256\"*, Yahweh|strong=\"H3068\"* said to|strong=\"H7725\"* Joshua|strong=\"H3091\"*, “Make|strong=\"H6213\"* flint|strong=\"H6697\"* knives|strong=\"H2719\"*, and|strong=\"H1121\"* circumcise|strong=\"H4135\"* again|strong=\"H7725\"* the|strong=\"H6213\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* the|strong=\"H6213\"* second|strong=\"H8145\"* time|strong=\"H6256\"*.”" + }, + { + "verseNum": 3, + "text": "Joshua|strong=\"H3091\"* made|strong=\"H6213\"* himself|strong=\"H6213\"* flint|strong=\"H6697\"* knives|strong=\"H2719\"*, and|strong=\"H1121\"* circumcised|strong=\"H4135\"* the|strong=\"H6213\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* at|strong=\"H3478\"* the|strong=\"H6213\"* hill|strong=\"H1389\"* of|strong=\"H1121\"* the|strong=\"H6213\"* foreskins|strong=\"H6190\"*." + }, + { + "verseNum": 4, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H3605\"* reason|strong=\"H1697\"* Joshua|strong=\"H3091\"* circumcised|strong=\"H4135\"* them|strong=\"H3318\"*: all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1697\"* Egypt|strong=\"H4714\"*, who|strong=\"H3605\"* were|strong=\"H5971\"* males|strong=\"H2145\"*, even|strong=\"H4714\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H2145\"* of|strong=\"H1697\"* war|strong=\"H4421\"*, died|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* along the|strong=\"H3605\"* way|strong=\"H1870\"*, after|strong=\"H3318\"* they|strong=\"H5971\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1697\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* came|strong=\"H1961\"* out|strong=\"H3318\"* were|strong=\"H1961\"* circumcised|strong=\"H4135\"*; but|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H1961\"* born|strong=\"H3209\"* in|strong=\"H1870\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* along|strong=\"H3588\"* the|strong=\"H3605\"* way|strong=\"H1870\"* as|strong=\"H1961\"* they|strong=\"H3588\"* came|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H1870\"* Egypt|strong=\"H4714\"* had|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"* circumcised|strong=\"H4135\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* walked|strong=\"H1980\"* forty years|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* until|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nation|strong=\"H1471\"*, even|strong=\"H5704\"* the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* war|strong=\"H4421\"* who|strong=\"H3605\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, were|strong=\"H3478\"* consumed|strong=\"H8552\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* didn’t listen|strong=\"H8085\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*. Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H5704\"* them|strong=\"H5414\"* that|strong=\"H3588\"* he|strong=\"H3588\"* wouldn’t let|strong=\"H5414\"* them|strong=\"H5414\"* see|strong=\"H7200\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H5704\"* their|strong=\"H3605\"* fathers that|strong=\"H3588\"* he|strong=\"H3588\"* would|strong=\"H3068\"* give|strong=\"H5414\"* us|strong=\"H5414\"*, a|strong=\"H3068\"* land flowing|strong=\"H2100\"* with|strong=\"H1980\"* milk|strong=\"H2461\"* and|strong=\"H1121\"* honey|strong=\"H1706\"*." + }, + { + "verseNum": 7, + "text": "Their|strong=\"H3588\"* children|strong=\"H1121\"*, whom|strong=\"H3588\"* he|strong=\"H3588\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H1121\"* their|strong=\"H3588\"* place|strong=\"H8478\"*, were|strong=\"H1961\"* circumcised|strong=\"H4135\"* by|strong=\"H1870\"* Joshua|strong=\"H3091\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H1961\"* uncircumcised|strong=\"H6189\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H1961\"* not|strong=\"H3808\"* circumcised|strong=\"H4135\"* them|strong=\"H4135\"* on|strong=\"H1870\"* the|strong=\"H3588\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H1961\"* they|strong=\"H5704\"* were|strong=\"H1961\"* done|strong=\"H1961\"* circumcising|strong=\"H4135\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* nation|strong=\"H1471\"*, they|strong=\"H5704\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3605\"* places|strong=\"H3605\"* in|strong=\"H3427\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* until|strong=\"H5704\"* they|strong=\"H5704\"* were|strong=\"H1961\"* healed|strong=\"H2421\"*." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H7121\"* to|strong=\"H5704\"* Joshua|strong=\"H3091\"*, “Today|strong=\"H3117\"* I|strong=\"H3117\"* have|strong=\"H3068\"* rolled|strong=\"H1556\"* away|strong=\"H1556\"* the|strong=\"H5921\"* reproach|strong=\"H2781\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"* from|strong=\"H5921\"* you|strong=\"H5921\"*.” Therefore|strong=\"H5921\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3068\"* that|strong=\"H3117\"* place|strong=\"H4725\"* was|strong=\"H3068\"* called|strong=\"H7121\"* Gilgal|strong=\"H1537\"*+ 5:9 “Gilgal” sounds like the Hebrew for “roll.”* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Gilgal|strong=\"H1537\"*. They|strong=\"H3117\"* kept|strong=\"H6213\"* the|strong=\"H6213\"* Passover|strong=\"H6453\"* on|strong=\"H3117\"* the|strong=\"H6213\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H6213\"* month|strong=\"H2320\"* at|strong=\"H2583\"* evening|strong=\"H6153\"* in|strong=\"H2583\"* the|strong=\"H6213\"* plains|strong=\"H6160\"* of|strong=\"H1121\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3117\"* ate unleavened|strong=\"H4682\"* cakes|strong=\"H4682\"* and|strong=\"H3117\"* parched|strong=\"H7033\"* grain of|strong=\"H3117\"* the|strong=\"H3117\"* produce|strong=\"H5669\"* of|strong=\"H3117\"* the|strong=\"H3117\"* land on|strong=\"H3117\"* the|strong=\"H3117\"* next|strong=\"H4283\"* day|strong=\"H3117\"* after|strong=\"H4283\"* the|strong=\"H3117\"* Passover|strong=\"H6453\"*, in|strong=\"H3117\"* the|strong=\"H3117\"* same|strong=\"H6106\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1961\"* manna|strong=\"H4478\"* ceased|strong=\"H7673\"* on|strong=\"H1961\"* the|strong=\"H1961\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, after|strong=\"H4283\"* they|strong=\"H3808\"* had|strong=\"H1961\"* eaten of|strong=\"H1121\"* the|strong=\"H1961\"* produce|strong=\"H8393\"* of|strong=\"H1121\"* the|strong=\"H1961\"* land. The|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* didn’t have|strong=\"H1961\"* manna|strong=\"H4478\"* any|strong=\"H5750\"* more|strong=\"H5750\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* ate of|strong=\"H1121\"* the|strong=\"H1961\"* fruit|strong=\"H8393\"* of|strong=\"H1121\"* the|strong=\"H1961\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"* that|strong=\"H1931\"* year|strong=\"H8141\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H1961\"* Joshua|strong=\"H3091\"* was|strong=\"H1961\"* by|strong=\"H3027\"* Jericho|strong=\"H3405\"*, he|strong=\"H3027\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"* and|strong=\"H3027\"* looked|strong=\"H7200\"*, and|strong=\"H3027\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* man|strong=\"H5375\"* stood|strong=\"H5975\"* in|strong=\"H3212\"* front|strong=\"H5048\"* of|strong=\"H3027\"* him|strong=\"H3027\"* with|strong=\"H3212\"* his|strong=\"H5375\"* sword|strong=\"H2719\"* drawn|strong=\"H8025\"* in|strong=\"H3212\"* his|strong=\"H5375\"* hand|strong=\"H3027\"*. Joshua|strong=\"H3091\"* went|strong=\"H3212\"* to|strong=\"H3212\"* him|strong=\"H3027\"* and|strong=\"H3027\"* said to|strong=\"H3212\"* him|strong=\"H3027\"*, “Are|strong=\"H5869\"* you|strong=\"H7200\"* for|strong=\"H3027\"* us|strong=\"H7200\"*, or|strong=\"H2719\"* for|strong=\"H3027\"* our|strong=\"H7200\"* enemies|strong=\"H6862\"*?”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H3588\"* said|strong=\"H1696\"*, “No|strong=\"H3808\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* come|strong=\"H5307\"* now|strong=\"H6258\"* as|strong=\"H3068\"* commander|strong=\"H8269\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s army|strong=\"H6635\"*.”" + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* prince|strong=\"H8269\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s army|strong=\"H6635\"* said|strong=\"H3651\"* to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, “Take|strong=\"H6213\"* off|strong=\"H5921\"* your|strong=\"H3068\"* sandals|strong=\"H5275\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* place|strong=\"H4725\"* on|strong=\"H5921\"* which|strong=\"H1931\"* you|strong=\"H3588\"* stand|strong=\"H5975\"* is|strong=\"H3068\"* holy|strong=\"H6944\"*.” Joshua|strong=\"H3091\"* did|strong=\"H6213\"* so|strong=\"H3651\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* Jericho|strong=\"H3405\"* was|strong=\"H3478\"* tightly|strong=\"H5462\"* shut|strong=\"H5462\"* up|strong=\"H5462\"* because|strong=\"H6440\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. No|strong=\"H6440\"* one|strong=\"H1121\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* no|strong=\"H6440\"* one|strong=\"H1121\"* came|strong=\"H3318\"* in|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, “Behold|strong=\"H7200\"*, I|strong=\"H5414\"* have|strong=\"H3068\"* given|strong=\"H5414\"* Jericho|strong=\"H3405\"* into|strong=\"H3027\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, with|strong=\"H3068\"* its|strong=\"H5414\"* king|strong=\"H4428\"* and|strong=\"H3068\"* the|strong=\"H7200\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H4428\"* valor|strong=\"H2428\"*." + }, + { + "verseNum": 3, + "text": "All|strong=\"H3605\"* of|strong=\"H3117\"* your|strong=\"H3605\"* men|strong=\"H6213\"* of|strong=\"H3117\"* war|strong=\"H4421\"* shall|strong=\"H3117\"* march|strong=\"H5437\"* around|strong=\"H5437\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, going around|strong=\"H5437\"* the|strong=\"H3605\"* city|strong=\"H5892\"* once|strong=\"H6471\"*. You|strong=\"H3605\"* shall|strong=\"H3117\"* do|strong=\"H6213\"* this|strong=\"H6213\"* six|strong=\"H8337\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 4, + "text": "Seven|strong=\"H7651\"* priests|strong=\"H3548\"* shall|strong=\"H3548\"* bear|strong=\"H5375\"* seven|strong=\"H7651\"* trumpets|strong=\"H7782\"* of|strong=\"H3117\"* rams|strong=\"H3104\"*’ horns|strong=\"H7782\"* before|strong=\"H6440\"* the|strong=\"H6440\"* ark. On|strong=\"H3117\"* the|strong=\"H6440\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, you|strong=\"H6440\"* shall|strong=\"H3548\"* march|strong=\"H5437\"* around|strong=\"H5437\"* the|strong=\"H6440\"* city|strong=\"H5892\"* seven|strong=\"H7651\"* times|strong=\"H6471\"*, and|strong=\"H3117\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* shall|strong=\"H3548\"* blow|strong=\"H8628\"* the|strong=\"H6440\"* trumpets|strong=\"H7782\"*." + }, + { + "verseNum": 5, + "text": "It|strong=\"H5927\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* that|strong=\"H5971\"* when|strong=\"H1961\"* they|strong=\"H5971\"* make|strong=\"H8085\"* a|strong=\"H3068\"* long|strong=\"H3605\"* blast|strong=\"H4900\"* with|strong=\"H5971\"* the|strong=\"H3605\"* ram’s horn|strong=\"H7161\"*, and|strong=\"H1419\"* when|strong=\"H1961\"* you|strong=\"H3605\"* hear|strong=\"H8085\"* the|strong=\"H3605\"* sound|strong=\"H6963\"* of|strong=\"H5892\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* shall|strong=\"H5971\"* shout|strong=\"H7321\"* with|strong=\"H5971\"* a|strong=\"H3068\"* great|strong=\"H1419\"* shout|strong=\"H7321\"*; then|strong=\"H1961\"* the|strong=\"H3605\"* city|strong=\"H5892\"* wall|strong=\"H2346\"* will|strong=\"H1961\"* fall|strong=\"H5307\"* down|strong=\"H5307\"* flat|strong=\"H8478\"*, and|strong=\"H1419\"* the|strong=\"H3605\"* people|strong=\"H5971\"* shall|strong=\"H5971\"* go|strong=\"H5927\"* up|strong=\"H5927\"*, every|strong=\"H3605\"* man|strong=\"H1419\"* straight|strong=\"H5048\"* in|strong=\"H8085\"* front|strong=\"H5048\"* of|strong=\"H5892\"* him|strong=\"H6963\"*.”" + }, + { + "verseNum": 6, + "text": "Joshua|strong=\"H3091\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"* called|strong=\"H7121\"* the|strong=\"H6440\"* priests|strong=\"H3548\"*, and|strong=\"H1121\"* said|strong=\"H7121\"* to|strong=\"H3068\"* them|strong=\"H6440\"*, “Take|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H6440\"* ark of|strong=\"H1121\"* the|strong=\"H6440\"* covenant|strong=\"H1285\"*, and|strong=\"H1121\"* let seven|strong=\"H7651\"* priests|strong=\"H3548\"* bear|strong=\"H5375\"* seven|strong=\"H7651\"* trumpets|strong=\"H7782\"* of|strong=\"H1121\"* rams|strong=\"H3104\"*’ horns|strong=\"H7782\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s ark.”" + }, + { + "verseNum": 7, + "text": "They|strong=\"H3068\"* said to|strong=\"H3068\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, “Advance! March|strong=\"H5437\"* around|strong=\"H5437\"* the|strong=\"H6440\"* city|strong=\"H5892\"*, and|strong=\"H3068\"* let the|strong=\"H6440\"* armed|strong=\"H2502\"* men|strong=\"H5971\"* pass|strong=\"H5674\"* on|strong=\"H5674\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s ark.”" + }, + { + "verseNum": 8, + "text": "It|strong=\"H5375\"* was|strong=\"H3068\"* so|strong=\"H1980\"*, that|strong=\"H5971\"* when|strong=\"H1961\"* Joshua|strong=\"H3091\"* had|strong=\"H3068\"* spoken to|strong=\"H1980\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, the|strong=\"H6440\"* seven|strong=\"H7651\"* priests|strong=\"H3548\"* bearing|strong=\"H5375\"* the|strong=\"H6440\"* seven|strong=\"H7651\"* trumpets|strong=\"H7782\"* of|strong=\"H3068\"* rams|strong=\"H3104\"*’ horns|strong=\"H7782\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* advanced|strong=\"H5375\"* and|strong=\"H1980\"* blew|strong=\"H8628\"* the|strong=\"H6440\"* trumpets|strong=\"H7782\"*, and|strong=\"H1980\"* the|strong=\"H6440\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* followed|strong=\"H1980\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H6440\"* armed|strong=\"H2502\"* men|strong=\"H2502\"* went|strong=\"H1980\"* before|strong=\"H6440\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* blew|strong=\"H8628\"* the|strong=\"H6440\"* trumpets|strong=\"H7782\"*, and|strong=\"H1980\"* the|strong=\"H6440\"* ark went|strong=\"H1980\"* after|strong=\"H1980\"* them|strong=\"H6440\"*. The|strong=\"H6440\"* trumpets|strong=\"H7782\"* sounded|strong=\"H8628\"* as|strong=\"H6440\"* they|strong=\"H6440\"* went|strong=\"H1980\"*." + }, + { + "verseNum": 10, + "text": "Joshua|strong=\"H3091\"* commanded|strong=\"H6680\"* the|strong=\"H8085\"* people|strong=\"H5971\"*, saying|strong=\"H1697\"*, “You|strong=\"H6680\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* shout|strong=\"H7321\"* nor|strong=\"H3808\"* let|strong=\"H3808\"* your|strong=\"H8085\"* voice|strong=\"H6963\"* be|strong=\"H3808\"* heard|strong=\"H8085\"*, neither|strong=\"H3808\"* shall|strong=\"H5971\"* any|strong=\"H1697\"* word|strong=\"H1697\"* proceed|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* your|strong=\"H8085\"* mouth|strong=\"H6310\"* until|strong=\"H5704\"* the|strong=\"H8085\"* day|strong=\"H3117\"* I|strong=\"H3117\"* tell|strong=\"H8085\"* you|strong=\"H6680\"* to|strong=\"H5704\"* shout|strong=\"H7321\"*. Then|strong=\"H3318\"* you|strong=\"H6680\"* shall|strong=\"H5971\"* shout|strong=\"H7321\"*.”" + }, + { + "verseNum": 11, + "text": "So|strong=\"H5437\"* he|strong=\"H3068\"* caused Yahweh|strong=\"H3068\"*’s ark to|strong=\"H3068\"* go|strong=\"H5437\"* around|strong=\"H5437\"* the|strong=\"H3068\"* city|strong=\"H5892\"*, circling|strong=\"H5362\"* it|strong=\"H5437\"* once|strong=\"H6471\"*. Then|strong=\"H3068\"* they|strong=\"H3068\"* came|strong=\"H3068\"* into|strong=\"H5892\"* the|strong=\"H3068\"* camp|strong=\"H4264\"*, and|strong=\"H3068\"* stayed|strong=\"H3885\"* in|strong=\"H3068\"* the|strong=\"H3068\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 12, + "text": "Joshua|strong=\"H3091\"* rose|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3068\"* the|strong=\"H5375\"* morning|strong=\"H1242\"*, and|strong=\"H3068\"* the|strong=\"H5375\"* priests|strong=\"H3548\"* took|strong=\"H5375\"* up|strong=\"H5375\"* Yahweh|strong=\"H3068\"*’s ark." + }, + { + "verseNum": 13, + "text": "The|strong=\"H6440\"* seven|strong=\"H7651\"* priests|strong=\"H3548\"* bearing|strong=\"H5375\"* the|strong=\"H6440\"* seven|strong=\"H7651\"* trumpets|strong=\"H7782\"* of|strong=\"H3068\"* rams|strong=\"H3104\"*’ horns|strong=\"H7782\"* in|strong=\"H1980\"* front|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s ark went|strong=\"H1980\"* on|strong=\"H1980\"* continually|strong=\"H1980\"*, and|strong=\"H1980\"* blew|strong=\"H8628\"* the|strong=\"H6440\"* trumpets|strong=\"H7782\"*. The|strong=\"H6440\"* armed|strong=\"H2502\"* men|strong=\"H2502\"* went|strong=\"H1980\"* in|strong=\"H1980\"* front|strong=\"H6440\"* of|strong=\"H3068\"* them|strong=\"H6440\"*. The|strong=\"H6440\"* rear guard came|strong=\"H1980\"* after|strong=\"H1980\"* Yahweh|strong=\"H3068\"*’s ark. The|strong=\"H6440\"* trumpets|strong=\"H7782\"* sounded|strong=\"H8628\"* as|strong=\"H3068\"* they|strong=\"H3068\"* went|strong=\"H1980\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3541\"* second|strong=\"H8145\"* day|strong=\"H3117\"* they|strong=\"H3117\"* marched|strong=\"H5437\"* around|strong=\"H5437\"* the|strong=\"H3541\"* city|strong=\"H5892\"* once|strong=\"H6471\"*, and|strong=\"H7725\"* returned|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H3541\"* camp|strong=\"H4264\"*. They|strong=\"H3117\"* did|strong=\"H6213\"* this|strong=\"H6213\"* six|strong=\"H8337\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 15, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, they|strong=\"H3117\"* rose|strong=\"H7925\"* early|strong=\"H7925\"* at|strong=\"H3117\"* the|strong=\"H3117\"* dawning|strong=\"H7837\"* of|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* marched|strong=\"H5927\"* around|strong=\"H5437\"* the|strong=\"H3117\"* city|strong=\"H5892\"* in|strong=\"H3117\"* the|strong=\"H3117\"* same|strong=\"H1931\"* way|strong=\"H4941\"* seven|strong=\"H7651\"* times|strong=\"H6471\"*. On|strong=\"H3117\"* this|strong=\"H2088\"* day|strong=\"H3117\"* only|strong=\"H7535\"* they|strong=\"H3117\"* marched|strong=\"H5927\"* around|strong=\"H5437\"* the|strong=\"H3117\"* city|strong=\"H5892\"* seven|strong=\"H7651\"* times|strong=\"H6471\"*." + }, + { + "verseNum": 16, + "text": "At|strong=\"H3068\"* the|strong=\"H3588\"* seventh|strong=\"H7637\"* time|strong=\"H6471\"*, when|strong=\"H3588\"* the|strong=\"H3588\"* priests|strong=\"H3548\"* blew|strong=\"H8628\"* the|strong=\"H3588\"* trumpets|strong=\"H7782\"*, Joshua|strong=\"H3091\"* said to|strong=\"H3068\"* the|strong=\"H3588\"* people|strong=\"H5971\"*, “Shout|strong=\"H7321\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H3588\"* the|strong=\"H3588\"* city|strong=\"H5892\"*!" + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* city|strong=\"H5892\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* devoted|strong=\"H2764\"*, even|strong=\"H3588\"* it|strong=\"H1931\"* and|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H3068\"* in|strong=\"H3068\"* it|strong=\"H1931\"*, to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Only|strong=\"H7535\"* Rahab|strong=\"H7343\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"* shall|strong=\"H3068\"* live|strong=\"H2421\"*, she|strong=\"H1931\"* and|strong=\"H3068\"* all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H3068\"* with|strong=\"H1004\"* her|strong=\"H3605\"* in|strong=\"H3068\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, because|strong=\"H3588\"* she|strong=\"H1931\"* hid|strong=\"H2244\"* the|strong=\"H3605\"* messengers|strong=\"H4397\"* that|strong=\"H3588\"* we|strong=\"H3068\"* sent|strong=\"H7971\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H7535\"* as|strong=\"H3947\"* for|strong=\"H3478\"* you|strong=\"H3947\"*, only|strong=\"H7535\"* keep|strong=\"H8104\"* yourselves from|strong=\"H4480\"* what is|strong=\"H3478\"* devoted|strong=\"H2764\"* to|strong=\"H3478\"* destruction|strong=\"H2764\"*, lest|strong=\"H6435\"* when|strong=\"H4480\"* you|strong=\"H3947\"* have|strong=\"H3478\"* devoted|strong=\"H2764\"* it|strong=\"H7760\"*, you|strong=\"H3947\"* take|strong=\"H3947\"* of|strong=\"H4480\"* the|strong=\"H3947\"* devoted|strong=\"H2764\"* thing|strong=\"H2764\"*; so|strong=\"H4480\"* you|strong=\"H3947\"* would|strong=\"H3478\"* make|strong=\"H7760\"* the|strong=\"H3947\"* camp|strong=\"H4264\"* of|strong=\"H4480\"* Israel|strong=\"H3478\"* accursed|strong=\"H2764\"* and|strong=\"H3478\"* trouble|strong=\"H5916\"* it|strong=\"H7760\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"H1931\"* all|strong=\"H3605\"* the|strong=\"H3605\"* silver|strong=\"H3701\"*, gold|strong=\"H2091\"*, and|strong=\"H3068\"* vessels|strong=\"H3627\"* of|strong=\"H3068\"* bronze|strong=\"H5178\"* and|strong=\"H3068\"* iron|strong=\"H1270\"* are|strong=\"H3068\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. They|strong=\"H3068\"* shall|strong=\"H3068\"* come into|strong=\"H3701\"* Yahweh|strong=\"H3068\"*’s treasury.”" + }, + { + "verseNum": 20, + "text": "So|strong=\"H1961\"* the|strong=\"H8085\"* people|strong=\"H5971\"* shouted|strong=\"H7321\"* and|strong=\"H1419\"* the|strong=\"H8085\"* priests blew|strong=\"H8628\"* the|strong=\"H8085\"* trumpets|strong=\"H7782\"*. When|strong=\"H1961\"* the|strong=\"H8085\"* people|strong=\"H5971\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* sound|strong=\"H6963\"* of|strong=\"H5892\"* the|strong=\"H8085\"* trumpet|strong=\"H7782\"*, the|strong=\"H8085\"* people|strong=\"H5971\"* shouted|strong=\"H7321\"* with|strong=\"H5971\"* a|strong=\"H3068\"* great|strong=\"H1419\"* shout|strong=\"H7321\"*, and|strong=\"H1419\"* the|strong=\"H8085\"* wall|strong=\"H2346\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* flat|strong=\"H8478\"*, so|strong=\"H1961\"* that|strong=\"H5971\"* the|strong=\"H8085\"* people|strong=\"H5971\"* went|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H8085\"* city|strong=\"H5892\"*, every|strong=\"H5927\"* man|strong=\"H1419\"* straight|strong=\"H5048\"* in|strong=\"H8085\"* front|strong=\"H5048\"* of|strong=\"H5892\"* him|strong=\"H6963\"*, and|strong=\"H1419\"* they|strong=\"H5971\"* took|strong=\"H3920\"* the|strong=\"H8085\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"H5704\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* all|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, both|strong=\"H3605\"* man|strong=\"H5288\"* and|strong=\"H5892\"* woman, both|strong=\"H3605\"* young|strong=\"H5288\"* and|strong=\"H5892\"* old|strong=\"H2205\"*, and|strong=\"H5892\"* ox|strong=\"H7794\"*, sheep|strong=\"H7716\"*, and|strong=\"H5892\"* donkey|strong=\"H2543\"*, with|strong=\"H5892\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H5892\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 22, + "text": "Joshua|strong=\"H3091\"* said|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3605\"* two|strong=\"H8147\"* men|strong=\"H3605\"* who|strong=\"H3605\"* had|strong=\"H3091\"* spied|strong=\"H7270\"* out|strong=\"H3318\"* the|strong=\"H3605\"* land, “Go|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"*’s house|strong=\"H1004\"*, and|strong=\"H1004\"* bring|strong=\"H3318\"* the|strong=\"H3605\"* woman|strong=\"H1004\"* and|strong=\"H1004\"* all|strong=\"H3605\"* that|strong=\"H3605\"* she|strong=\"H8147\"* has|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* there|strong=\"H8033\"*, as|strong=\"H3318\"* you|strong=\"H3605\"* swore|strong=\"H7650\"* to|strong=\"H3318\"* her|strong=\"H3605\"*.”" + }, + { + "verseNum": 23, + "text": "The|strong=\"H3605\"* young|strong=\"H5288\"* men|strong=\"H5288\"* who|strong=\"H3605\"* were|strong=\"H3478\"* spies|strong=\"H7270\"* went|strong=\"H3318\"* in|strong=\"H3478\"*, and|strong=\"H3478\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* Rahab|strong=\"H7343\"* with|strong=\"H3318\"* her|strong=\"H3605\"* father, her|strong=\"H3605\"* mother, her|strong=\"H3605\"* brothers, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* she had|strong=\"H3478\"*. They|strong=\"H3478\"* also|strong=\"H3478\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* all|strong=\"H3605\"* of|strong=\"H4264\"* her|strong=\"H3605\"* relatives|strong=\"H4940\"*, and|strong=\"H3478\"* they|strong=\"H3478\"* set|strong=\"H3240\"* them|strong=\"H3318\"* outside|strong=\"H2351\"* of|strong=\"H4264\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H4264\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H3068\"* burned|strong=\"H8313\"* the|strong=\"H3605\"* city|strong=\"H5892\"* with|strong=\"H8313\"* fire, and|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H3068\"* in|strong=\"H3068\"* it|strong=\"H5414\"*. Only|strong=\"H7535\"* they|strong=\"H3068\"* put|strong=\"H5414\"* the|strong=\"H3605\"* silver|strong=\"H3701\"*, the|strong=\"H3605\"* gold|strong=\"H2091\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H1004\"* bronze|strong=\"H5178\"* and|strong=\"H3068\"* of|strong=\"H1004\"* iron|strong=\"H1270\"* into|strong=\"H3701\"* the|strong=\"H3605\"* treasury|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"H3588\"* Rahab|strong=\"H7343\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"*, her|strong=\"H3605\"* father’s household|strong=\"H1004\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3588\"* she|strong=\"H3588\"* had|strong=\"H3478\"*, Joshua|strong=\"H3091\"* saved|strong=\"H2421\"* alive|strong=\"H2421\"*. She|strong=\"H3588\"* lives|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* middle|strong=\"H7130\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, because|strong=\"H3588\"* she|strong=\"H3588\"* hid|strong=\"H2244\"* the|strong=\"H3605\"* messengers|strong=\"H4397\"* whom|strong=\"H3588\"* Joshua|strong=\"H3091\"* sent|strong=\"H7971\"* to|strong=\"H5704\"* spy|strong=\"H7270\"* out|strong=\"H7971\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 26, + "text": "Joshua|strong=\"H3091\"* commanded them|strong=\"H6440\"* with|strong=\"H3068\"* an|strong=\"H1129\"* oath|strong=\"H7650\"* at|strong=\"H3068\"* that|strong=\"H1931\"* time|strong=\"H6256\"*, saying, “Cursed is|strong=\"H3068\"* the|strong=\"H6440\"* man|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* who|strong=\"H1931\"* rises|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* builds|strong=\"H1129\"* this|strong=\"H2063\"* city|strong=\"H5892\"* Jericho|strong=\"H3405\"*. With|strong=\"H3068\"* the|strong=\"H6440\"* loss of|strong=\"H3068\"* his|strong=\"H3068\"* firstborn|strong=\"H1060\"* he|strong=\"H1931\"* will|strong=\"H3068\"* lay|strong=\"H3245\"* its|strong=\"H3245\"* foundation|strong=\"H3245\"*, and|strong=\"H6965\"* with|strong=\"H3068\"* the|strong=\"H6440\"* loss of|strong=\"H3068\"* his|strong=\"H3068\"* youngest|strong=\"H6810\"* son|strong=\"H6810\"* he|strong=\"H1931\"* will|strong=\"H3068\"* set|strong=\"H6965\"* up|strong=\"H6965\"* its|strong=\"H3245\"* gates|strong=\"H1817\"*.”" + }, + { + "verseNum": 27, + "text": "So|strong=\"H1961\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H3068\"* Joshua|strong=\"H3091\"*; and|strong=\"H3068\"* his|strong=\"H3605\"* fame|strong=\"H8089\"* was|strong=\"H3068\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"H3947\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* committed|strong=\"H4603\"* a|strong=\"H3068\"* trespass|strong=\"H4604\"* in|strong=\"H3478\"* the|strong=\"H3947\"* devoted|strong=\"H2764\"* things|strong=\"H2764\"*; for|strong=\"H3068\"* Achan|strong=\"H5912\"*, the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Carmi|strong=\"H3756\"*, the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zabdi|strong=\"H2067\"*, the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zerah|strong=\"H2226\"*, of|strong=\"H1121\"* the|strong=\"H3947\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, took|strong=\"H3947\"* some|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H3947\"* devoted|strong=\"H2764\"* things|strong=\"H2764\"*. Therefore|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "Joshua|strong=\"H3091\"* sent|strong=\"H7971\"* men from|strong=\"H5927\"* Jericho|strong=\"H3405\"* to|strong=\"H7971\"* Ai|strong=\"H5857\"*, which is|strong=\"H7971\"* beside|strong=\"H5973\"* Beth Aven, on|strong=\"H5927\"* the|strong=\"H7971\"* east|strong=\"H6924\"* side|strong=\"H6924\"* of|strong=\"H6924\"* Bethel|strong=\"H1008\"*, and|strong=\"H7971\"* spoke to|strong=\"H7971\"* them|strong=\"H7971\"*, saying, “Go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H7971\"* spy|strong=\"H7270\"* out|strong=\"H7971\"* the|strong=\"H7971\"* land.”" + }, + { + "verseNum": 3, + "text": "They|strong=\"H1992\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Joshua|strong=\"H3091\"*, and|strong=\"H7725\"* said to|strong=\"H7725\"* him|strong=\"H5221\"*, “Don’t let|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* go|strong=\"H5927\"* up|strong=\"H5927\"*, but|strong=\"H3588\"* let|strong=\"H7725\"* about|strong=\"H8033\"* two|strong=\"H5221\"* or|strong=\"H4592\"* three|strong=\"H7969\"* thousand men|strong=\"H5971\"* go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H7725\"* strike|strong=\"H5221\"* Ai|strong=\"H5857\"*. Don’t make|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* to|strong=\"H7725\"* toil|strong=\"H3021\"* there|strong=\"H8033\"*, for|strong=\"H3588\"* there|strong=\"H8033\"* are|strong=\"H1992\"* only|strong=\"H3588\"* a|strong=\"H3068\"* few|strong=\"H4592\"* of|strong=\"H5971\"* them|strong=\"H1992\"*.”" + }, + { + "verseNum": 4, + "text": "So|strong=\"H4480\"* about|strong=\"H4480\"* three|strong=\"H7969\"* thousand men|strong=\"H5971\"* of|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"* went|strong=\"H5927\"* up|strong=\"H5927\"* there|strong=\"H8033\"*, and|strong=\"H5971\"* they|strong=\"H8033\"* fled|strong=\"H5127\"* before|strong=\"H6440\"* the|strong=\"H6440\"* men|strong=\"H5971\"* of|strong=\"H6440\"* Ai|strong=\"H5857\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H6440\"* men|strong=\"H5971\"* of|strong=\"H6440\"* Ai|strong=\"H5857\"* struck|strong=\"H5221\"* about|strong=\"H1961\"* thirty-six|strong=\"H7970\"* men|strong=\"H5971\"* of|strong=\"H6440\"* them|strong=\"H1992\"*. They|strong=\"H1992\"* chased|strong=\"H7291\"* them|strong=\"H1992\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* gate|strong=\"H8179\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Shebarim|strong=\"H7671\"*, and|strong=\"H7970\"* struck|strong=\"H5221\"* them|strong=\"H1992\"* at|strong=\"H1961\"* the|strong=\"H6440\"* descent|strong=\"H4174\"*. The|strong=\"H6440\"* hearts|strong=\"H3824\"* of|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"* melted|strong=\"H4549\"*, and|strong=\"H7970\"* became|strong=\"H1961\"* like|strong=\"H1961\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 6, + "text": "Joshua|strong=\"H3091\"* tore|strong=\"H7167\"* his|strong=\"H3068\"* clothes|strong=\"H8071\"*, and|strong=\"H3478\"* fell|strong=\"H5307\"* to|strong=\"H5704\"* the|strong=\"H6440\"* earth|strong=\"H6083\"* on|strong=\"H5921\"* his|strong=\"H3068\"* face|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s ark until|strong=\"H5704\"* the|strong=\"H6440\"* evening|strong=\"H6153\"*, he|strong=\"H1931\"* and|strong=\"H3478\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* they|strong=\"H3068\"* put|strong=\"H5927\"* dust|strong=\"H6083\"* on|strong=\"H5921\"* their|strong=\"H3068\"* heads|strong=\"H7218\"*." + }, + { + "verseNum": 7, + "text": "Joshua|strong=\"H3091\"* said, “Alas, Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, why|strong=\"H4100\"* have|strong=\"H5971\"* you|strong=\"H5414\"* brought|strong=\"H5414\"* this|strong=\"H2088\"* people|strong=\"H5971\"* over|strong=\"H5674\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"* at|strong=\"H3427\"* all|strong=\"H5414\"*, to|strong=\"H5414\"* deliver|strong=\"H5414\"* us|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5414\"* Amorites, to|strong=\"H5414\"* cause|strong=\"H5414\"* us|strong=\"H5414\"* to|strong=\"H5414\"* perish|strong=\"H5674\"*? I|strong=\"H5414\"* wish that|strong=\"H5971\"* we|strong=\"H3068\"* had|strong=\"H3091\"* been|strong=\"H5971\"* content|strong=\"H2974\"* and|strong=\"H3027\"* lived|strong=\"H3427\"* beyond|strong=\"H5676\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"*!" + }, + { + "verseNum": 8, + "text": "Oh, Lord, what|strong=\"H4100\"* shall|strong=\"H3478\"* I|strong=\"H4100\"* say|strong=\"H3478\"*, after|strong=\"H6203\"* Israel|strong=\"H3478\"* has|strong=\"H3478\"* turned|strong=\"H2015\"* their|strong=\"H6440\"* backs|strong=\"H6203\"* before|strong=\"H6440\"* their|strong=\"H6440\"* enemies?" + }, + { + "verseNum": 9, + "text": "For|strong=\"H5921\"* the|strong=\"H3605\"* Canaanites|strong=\"H3669\"* and|strong=\"H1419\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3605\"* land will|strong=\"H4100\"* hear|strong=\"H8085\"* of|strong=\"H3427\"* it|strong=\"H5921\"*, and|strong=\"H1419\"* will|strong=\"H4100\"* surround|strong=\"H5437\"* us|strong=\"H5921\"*, and|strong=\"H1419\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* our|strong=\"H3605\"* name|strong=\"H8034\"* from|strong=\"H4480\"* the|strong=\"H3605\"* earth. What|strong=\"H4100\"* will|strong=\"H4100\"* you|strong=\"H3605\"* do|strong=\"H6213\"* for|strong=\"H5921\"* your|strong=\"H3605\"* great|strong=\"H1419\"* name|strong=\"H8034\"*?”" + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, “Get|strong=\"H6965\"* up|strong=\"H6965\"*! Why|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H6440\"* fallen|strong=\"H5307\"* on|strong=\"H5921\"* your|strong=\"H3068\"* face|strong=\"H6440\"* like|strong=\"H5307\"* that|strong=\"H3068\"*?" + }, + { + "verseNum": 11, + "text": "Israel|strong=\"H3478\"* has|strong=\"H3478\"* sinned|strong=\"H2398\"*. Yes|strong=\"H1571\"*, they|strong=\"H3478\"* have|strong=\"H1571\"* even|strong=\"H1571\"* transgressed|strong=\"H5674\"* my|strong=\"H7760\"* covenant|strong=\"H1285\"* which|strong=\"H3478\"* I|strong=\"H7760\"* commanded|strong=\"H6680\"* them|strong=\"H7760\"*. Yes|strong=\"H1571\"*, they|strong=\"H3478\"* have|strong=\"H1571\"* even|strong=\"H1571\"* taken|strong=\"H3947\"* some|strong=\"H4480\"* of|strong=\"H3627\"* the|strong=\"H3947\"* devoted|strong=\"H2764\"* things|strong=\"H2764\"*, and|strong=\"H3478\"* have|strong=\"H1571\"* also|strong=\"H1571\"* stolen|strong=\"H1589\"*, and|strong=\"H3478\"* also|strong=\"H1571\"* deceived|strong=\"H3584\"*. They|strong=\"H3478\"* have|strong=\"H1571\"* even|strong=\"H1571\"* put|strong=\"H7760\"* it|strong=\"H7760\"* among|strong=\"H4480\"* their|strong=\"H3947\"* own stuff|strong=\"H3627\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H3588\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* can|strong=\"H3201\"*’t stand|strong=\"H6965\"* before|strong=\"H6440\"* their|strong=\"H6440\"* enemies|strong=\"H6965\"*. They|strong=\"H3588\"* turn|strong=\"H6437\"* their|strong=\"H6440\"* backs|strong=\"H6203\"* before|strong=\"H6440\"* their|strong=\"H6440\"* enemies|strong=\"H6965\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1961\"* become|strong=\"H1961\"* devoted|strong=\"H2764\"* for|strong=\"H3588\"* destruction|strong=\"H8045\"*. I|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3588\"* any|strong=\"H6440\"* more|strong=\"H3254\"*, unless|strong=\"H3588\"* you|strong=\"H3588\"* destroy|strong=\"H8045\"* the|strong=\"H6440\"* devoted|strong=\"H2764\"* things|strong=\"H2764\"* from|strong=\"H6440\"* among|strong=\"H7130\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 13, + "text": "Get|strong=\"H6965\"* up|strong=\"H6965\"*! Sanctify|strong=\"H6942\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, and|strong=\"H6965\"* say|strong=\"H3478\"*, ‘Sanctify|strong=\"H6942\"* yourselves|strong=\"H6942\"* for|strong=\"H3588\"* tomorrow|strong=\"H4279\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, “There|strong=\"H5704\"* is|strong=\"H3068\"* a|strong=\"H3068\"* devoted|strong=\"H2764\"* thing|strong=\"H2764\"* among|strong=\"H7130\"* you|strong=\"H3588\"*, Israel|strong=\"H3478\"*. You|strong=\"H3588\"* cannot|strong=\"H3808\"* stand|strong=\"H6965\"* before|strong=\"H6440\"* your|strong=\"H3068\"* enemies|strong=\"H6965\"* until|strong=\"H5704\"* you|strong=\"H3588\"* take|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H6440\"* devoted|strong=\"H2764\"* thing|strong=\"H2764\"* from|strong=\"H5493\"* among|strong=\"H7130\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 14, + "text": "In|strong=\"H3068\"* the|strong=\"H3068\"* morning|strong=\"H1242\"* therefore|strong=\"H3068\"* you|strong=\"H7126\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* brought|strong=\"H7126\"* near|strong=\"H7126\"* by|strong=\"H3068\"* your|strong=\"H3068\"* tribes|strong=\"H7626\"*. It|strong=\"H7126\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* that|strong=\"H3068\"* the|strong=\"H3068\"* tribe|strong=\"H7626\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* selects|strong=\"H3920\"* shall|strong=\"H3068\"* come|strong=\"H1961\"* near|strong=\"H7126\"* by|strong=\"H3068\"* families|strong=\"H4940\"*. The|strong=\"H3068\"* family|strong=\"H4940\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* selects|strong=\"H3920\"* shall|strong=\"H3068\"* come|strong=\"H1961\"* near|strong=\"H7126\"* by|strong=\"H3068\"* households|strong=\"H1004\"*. The|strong=\"H3068\"* household|strong=\"H1004\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* selects|strong=\"H3920\"* shall|strong=\"H3068\"* come|strong=\"H1961\"* near|strong=\"H7126\"* man|strong=\"H1397\"* by|strong=\"H3068\"* man|strong=\"H1397\"*." + }, + { + "verseNum": 15, + "text": "It|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H3605\"* is|strong=\"H3068\"* taken|strong=\"H3920\"* with|strong=\"H8313\"* the|strong=\"H3605\"* devoted|strong=\"H2764\"* thing|strong=\"H2764\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire, he|strong=\"H3588\"* and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* transgressed|strong=\"H5674\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, and|strong=\"H3478\"* because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* done|strong=\"H6213\"* a|strong=\"H3068\"* disgraceful|strong=\"H5039\"* thing|strong=\"H2764\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*.’”" + }, + { + "verseNum": 16, + "text": "So|strong=\"H7126\"* Joshua|strong=\"H3091\"* rose|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3478\"* the|strong=\"H3091\"* morning|strong=\"H1242\"* and|strong=\"H3063\"* brought|strong=\"H7126\"* Israel|strong=\"H3478\"* near|strong=\"H7126\"* by|strong=\"H1242\"* their|strong=\"H7126\"* tribes|strong=\"H7626\"*. The|strong=\"H3091\"* tribe|strong=\"H7626\"* of|strong=\"H7626\"* Judah|strong=\"H3063\"* was|strong=\"H3478\"* selected." + }, + { + "verseNum": 17, + "text": "He|strong=\"H3063\"* brought|strong=\"H7126\"* near|strong=\"H7126\"* the|strong=\"H7126\"* family|strong=\"H4940\"* of|strong=\"H4940\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* he|strong=\"H3063\"* selected the|strong=\"H7126\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H7126\"* Zerahites|strong=\"H2227\"*. He|strong=\"H3063\"* brought|strong=\"H7126\"* near|strong=\"H7126\"* the|strong=\"H7126\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H7126\"* Zerahites|strong=\"H2227\"* man|strong=\"H1397\"* by|strong=\"H1397\"* man|strong=\"H1397\"*, and|strong=\"H3063\"* Zabdi|strong=\"H2067\"* was|strong=\"H3063\"* selected." + }, + { + "verseNum": 18, + "text": "He|strong=\"H1004\"* brought|strong=\"H7126\"* near|strong=\"H7126\"* his|strong=\"H7126\"* household|strong=\"H1004\"* man|strong=\"H1397\"* by|strong=\"H1397\"* man|strong=\"H1397\"*, and|strong=\"H1121\"* Achan|strong=\"H5912\"*, the|strong=\"H7126\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Carmi|strong=\"H3756\"*, the|strong=\"H7126\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zabdi|strong=\"H2067\"*, the|strong=\"H7126\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zerah|strong=\"H2226\"*, of|strong=\"H1121\"* the|strong=\"H7126\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, was|strong=\"H1004\"* selected." + }, + { + "verseNum": 19, + "text": "Joshua|strong=\"H3091\"* said to|strong=\"H3478\"* Achan|strong=\"H5912\"*, “My|strong=\"H5414\"* son|strong=\"H1121\"*, please|strong=\"H4994\"* give|strong=\"H5414\"* glory|strong=\"H3519\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* make|strong=\"H6213\"* confession|strong=\"H8426\"* to|strong=\"H3478\"* him|strong=\"H5414\"*. Tell|strong=\"H5046\"* me|strong=\"H5414\"* now|strong=\"H4994\"* what|strong=\"H4100\"* you|strong=\"H5414\"* have|strong=\"H3068\"* done|strong=\"H6213\"*! Don’t hide|strong=\"H3582\"* it|strong=\"H5414\"* from|strong=\"H4480\"* me|strong=\"H5414\"*!”" + }, + { + "verseNum": 20, + "text": "Achan|strong=\"H5912\"* answered|strong=\"H6030\"* Joshua|strong=\"H3091\"*, and|strong=\"H3478\"* said|strong=\"H6030\"*, “I|strong=\"H3478\"* have|strong=\"H3068\"* truly|strong=\"H6213\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6213\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* this|strong=\"H2063\"* is|strong=\"H3068\"* what|strong=\"H6213\"* I|strong=\"H3478\"* have|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H7200\"* I|strong=\"H2009\"* saw|strong=\"H7200\"* among|strong=\"H8432\"* the|strong=\"H7200\"* plunder|strong=\"H7998\"* a|strong=\"H3068\"* beautiful|strong=\"H2896\"* Babylonian robe, two|strong=\"H3947\"* hundred|strong=\"H3967\"* shekels|strong=\"H8255\"*+ 7:21 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H8432\"* silver|strong=\"H3701\"*, and|strong=\"H3967\"* a|strong=\"H3068\"* wedge|strong=\"H3956\"* of|strong=\"H8432\"* gold|strong=\"H2091\"* weighing|strong=\"H4948\"* fifty|strong=\"H2572\"* shekels|strong=\"H8255\"*, then|strong=\"H2009\"* I|strong=\"H2009\"* coveted|strong=\"H2530\"* them|strong=\"H7200\"* and|strong=\"H3967\"* took|strong=\"H3947\"* them|strong=\"H7200\"*. Behold|strong=\"H2009\"*, they|strong=\"H3947\"* are|strong=\"H2896\"* hidden|strong=\"H2934\"* in|strong=\"H8432\"* the|strong=\"H7200\"* ground in|strong=\"H8432\"* the|strong=\"H7200\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* my|strong=\"H7200\"* tent, with|strong=\"H3947\"* the|strong=\"H7200\"* silver|strong=\"H3701\"* under|strong=\"H8478\"* it|strong=\"H8432\"*.”" + }, + { + "verseNum": 22, + "text": "So|strong=\"H7971\"* Joshua|strong=\"H3091\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"*, and|strong=\"H3701\"* they|strong=\"H7323\"* ran|strong=\"H7323\"* to|strong=\"H7971\"* the|strong=\"H8478\"* tent. Behold|strong=\"H2009\"*, it|strong=\"H7971\"* was|strong=\"H3091\"* hidden|strong=\"H2934\"* in|strong=\"H3701\"* his|strong=\"H7971\"* tent, with|strong=\"H7971\"* the|strong=\"H8478\"* silver|strong=\"H3701\"* under|strong=\"H8478\"* it|strong=\"H7971\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H3068\"* took|strong=\"H3947\"* them|strong=\"H6440\"* from|strong=\"H6440\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H3605\"* tent, and|strong=\"H1121\"* brought|strong=\"H3947\"* them|strong=\"H6440\"* to|strong=\"H3478\"* Joshua|strong=\"H3091\"* and|strong=\"H1121\"* to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. They|strong=\"H3068\"* laid|strong=\"H3478\"* them|strong=\"H6440\"* down|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 24, + "text": "Joshua|strong=\"H3091\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, took|strong=\"H3947\"* Achan|strong=\"H5912\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zerah|strong=\"H2226\"*, the|strong=\"H3605\"* silver|strong=\"H3701\"*, the|strong=\"H3605\"* robe, the|strong=\"H3605\"* wedge|strong=\"H3956\"* of|strong=\"H1121\"* gold|strong=\"H2091\"*, his|strong=\"H3605\"* sons|strong=\"H1121\"*, his|strong=\"H3605\"* daughters|strong=\"H1323\"*, his|strong=\"H3605\"* cattle|strong=\"H6629\"*, his|strong=\"H3605\"* donkeys|strong=\"H2543\"*, his|strong=\"H3605\"* sheep|strong=\"H6629\"*, his|strong=\"H3605\"* tent, and|strong=\"H1121\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3605\"* had|strong=\"H3478\"*; and|strong=\"H1121\"* they|strong=\"H3478\"* brought|strong=\"H5927\"* them|strong=\"H3947\"* up|strong=\"H5927\"* to|strong=\"H3478\"* the|strong=\"H3605\"* valley|strong=\"H6010\"* of|strong=\"H1121\"* Achor|strong=\"H5911\"*." + }, + { + "verseNum": 25, + "text": "Joshua|strong=\"H3091\"* said, “Why|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H3605\"* troubled|strong=\"H5916\"* us|strong=\"H3117\"*? Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* trouble|strong=\"H5916\"* you|strong=\"H3605\"* today|strong=\"H3117\"*.” All|strong=\"H3605\"* Israel|strong=\"H3478\"* stoned|strong=\"H5619\"* him|strong=\"H3605\"* with|strong=\"H8313\"* stones|strong=\"H5619\"*, and|strong=\"H3478\"* they|strong=\"H3117\"* burned|strong=\"H8313\"* them|strong=\"H8313\"* with|strong=\"H8313\"* fire and|strong=\"H3478\"* stoned|strong=\"H5619\"* them|strong=\"H8313\"* with|strong=\"H8313\"* stones|strong=\"H5619\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H3117\"* raised|strong=\"H6965\"* over|strong=\"H5921\"* him|strong=\"H7121\"* a|strong=\"H3068\"* great|strong=\"H1419\"* heap|strong=\"H1530\"* of|strong=\"H3068\"* stones that|strong=\"H3117\"* remains to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*. Yahweh|strong=\"H3068\"* turned|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H5921\"* fierceness|strong=\"H2740\"* of|strong=\"H3068\"* his|strong=\"H3068\"* anger|strong=\"H2740\"*. Therefore|strong=\"H3651\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3068\"* that|strong=\"H3117\"* place|strong=\"H4725\"* was|strong=\"H3068\"* called|strong=\"H7121\"* “The|strong=\"H5921\"* valley|strong=\"H6010\"* of|strong=\"H3068\"* Achor|strong=\"H5911\"*” to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, “Don’t be|strong=\"H3027\"* afraid|strong=\"H3372\"*, and|strong=\"H6965\"* don’t be|strong=\"H3027\"* dismayed|strong=\"H2865\"*. Take|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* warriors|strong=\"H4421\"* with|strong=\"H5973\"* you|strong=\"H5414\"*, and|strong=\"H6965\"* arise|strong=\"H6965\"*, go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Ai|strong=\"H5857\"*. Behold|strong=\"H7200\"*, I|strong=\"H5414\"* have|strong=\"H3068\"* given|strong=\"H5414\"* into|strong=\"H5927\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Ai|strong=\"H5857\"*, with|strong=\"H5973\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, his|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H6965\"* his|strong=\"H3605\"* land." + }, + { + "verseNum": 2, + "text": "You|strong=\"H6213\"* shall|strong=\"H4428\"* do|strong=\"H6213\"* to|strong=\"H6213\"* Ai|strong=\"H5857\"* and|strong=\"H4428\"* her|strong=\"H7760\"* king|strong=\"H4428\"* as|strong=\"H6213\"* you|strong=\"H6213\"* did|strong=\"H6213\"* to|strong=\"H6213\"* Jericho|strong=\"H3405\"* and|strong=\"H4428\"* her|strong=\"H7760\"* king|strong=\"H4428\"*, except|strong=\"H7535\"* you|strong=\"H6213\"* shall|strong=\"H4428\"* take|strong=\"H7760\"* its|strong=\"H6213\"* goods and|strong=\"H4428\"* its|strong=\"H6213\"* livestock for|strong=\"H6213\"* yourselves. Set|strong=\"H7760\"* an|strong=\"H6213\"* ambush for|strong=\"H6213\"* the|strong=\"H6213\"* city|strong=\"H5892\"* behind it|strong=\"H7760\"*.”" + }, + { + "verseNum": 3, + "text": "So|strong=\"H7971\"* Joshua|strong=\"H3091\"* arose|strong=\"H6965\"*, with|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* warriors|strong=\"H1368\"*, to|strong=\"H7971\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H7971\"* Ai|strong=\"H5857\"*. Joshua|strong=\"H3091\"* chose|strong=\"H3091\"* thirty|strong=\"H7970\"* thousand men|strong=\"H1368\"*, the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1368\"* valor|strong=\"H2428\"*, and|strong=\"H6965\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* out|strong=\"H7971\"* by|strong=\"H6965\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3605\"* commanded|strong=\"H6680\"* them|strong=\"H6680\"*, saying, “Behold|strong=\"H7200\"*, you|strong=\"H6680\"* shall|strong=\"H5892\"* lie|strong=\"H1961\"* in|strong=\"H5892\"* ambush against|strong=\"H4480\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, behind|strong=\"H4480\"* the|strong=\"H3605\"* city|strong=\"H5892\"*. Don’t go|strong=\"H1961\"* very|strong=\"H3966\"* far|strong=\"H7368\"* from|strong=\"H4480\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, but|strong=\"H1961\"* all|strong=\"H3605\"* of|strong=\"H5892\"* you|strong=\"H6680\"* be|strong=\"H1961\"* ready|strong=\"H3559\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3588\"* and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H5971\"* with|strong=\"H6440\"* me|strong=\"H6440\"* will|strong=\"H1961\"* approach|strong=\"H7126\"* the|strong=\"H3605\"* city|strong=\"H5892\"*. It|strong=\"H7126\"* shall|strong=\"H5971\"* happen|strong=\"H1961\"*, when|strong=\"H3588\"* they|strong=\"H3588\"* come|strong=\"H1961\"* out|strong=\"H3318\"* against|strong=\"H7125\"* us|strong=\"H6440\"*, as|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H3605\"* first|strong=\"H7223\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H1961\"* flee|strong=\"H5127\"* before|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H3588\"* will|strong=\"H5892\"* come|strong=\"H3318\"* out|strong=\"H3318\"* after|strong=\"H4480\"* us|strong=\"H6440\"* until|strong=\"H5704\"* we|strong=\"H3068\"* have|strong=\"H7223\"* drawn|strong=\"H5423\"* them|strong=\"H6440\"* away|strong=\"H5127\"* from|strong=\"H4480\"* the|strong=\"H6440\"* city|strong=\"H5892\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H5892\"* say, ‘They|strong=\"H3588\"* flee|strong=\"H5127\"* before|strong=\"H6440\"* us|strong=\"H6440\"*, like|strong=\"H3318\"* the|strong=\"H6440\"* first|strong=\"H7223\"* time|strong=\"H7223\"*.’ So|strong=\"H4480\"* we|strong=\"H3068\"* will|strong=\"H5892\"* flee|strong=\"H5127\"* before|strong=\"H6440\"* them|strong=\"H6440\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"H6965\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* from|strong=\"H3027\"* the|strong=\"H5414\"* ambush, and|strong=\"H6965\"* take|strong=\"H3423\"* possession|strong=\"H3423\"* of|strong=\"H3068\"* the|strong=\"H5414\"* city|strong=\"H5892\"*; for|strong=\"H3027\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 8, + "text": "It|strong=\"H6213\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, when|strong=\"H1961\"* you|strong=\"H6680\"* have|strong=\"H1961\"* seized|strong=\"H8610\"* the|strong=\"H7200\"* city|strong=\"H5892\"*, that|strong=\"H7200\"* you|strong=\"H6680\"* shall|strong=\"H3068\"* set|strong=\"H3341\"* the|strong=\"H7200\"* city|strong=\"H5892\"* on|strong=\"H7200\"* fire|strong=\"H3341\"*. You|strong=\"H6680\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* this|strong=\"H6213\"* according to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*. Behold|strong=\"H7200\"*, I|strong=\"H1697\"* have|strong=\"H1961\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*.”" + }, + { + "verseNum": 9, + "text": "Joshua|strong=\"H3091\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* out|strong=\"H7971\"*; and|strong=\"H7971\"* they|strong=\"H1931\"* went|strong=\"H3212\"* to|strong=\"H3212\"* set|strong=\"H7971\"* up|strong=\"H3212\"* the|strong=\"H8432\"* ambush|strong=\"H3993\"*, and|strong=\"H7971\"* stayed|strong=\"H3427\"* between|strong=\"H8432\"* Bethel|strong=\"H1008\"* and|strong=\"H7971\"* Ai|strong=\"H5857\"* on|strong=\"H3427\"* the|strong=\"H8432\"* west|strong=\"H3220\"* side|strong=\"H3220\"* of|strong=\"H3427\"* Ai|strong=\"H5857\"*; but|strong=\"H1931\"* Joshua|strong=\"H3091\"* stayed|strong=\"H3427\"* among|strong=\"H8432\"* the|strong=\"H8432\"* people|strong=\"H5971\"* that|strong=\"H5971\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 10, + "text": "Joshua|strong=\"H3091\"* rose|strong=\"H7925\"* up|strong=\"H5927\"* early|strong=\"H7925\"* in|strong=\"H3478\"* the|strong=\"H6440\"* morning|strong=\"H1242\"*, mustered|strong=\"H6485\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, and|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"*, he|strong=\"H1931\"* and|strong=\"H3478\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"*, before|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"* to|strong=\"H3478\"* Ai|strong=\"H5857\"*." + }, + { + "verseNum": 11, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, even the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H5892\"* war|strong=\"H4421\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5971\"* him|strong=\"H3605\"*, went|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H5971\"* came|strong=\"H5927\"* near|strong=\"H5066\"*, and|strong=\"H5971\"* came|strong=\"H5927\"* before|strong=\"H5048\"* the|strong=\"H3605\"* city|strong=\"H5892\"* and|strong=\"H5971\"* encamped|strong=\"H2583\"* on|strong=\"H5927\"* the|strong=\"H3605\"* north|strong=\"H6828\"* side|strong=\"H6828\"* of|strong=\"H5892\"* Ai|strong=\"H5857\"*. Now there|strong=\"H5927\"* was|strong=\"H5892\"* a|strong=\"H3068\"* valley|strong=\"H1516\"* between|strong=\"H4421\"* him|strong=\"H3605\"* and|strong=\"H5971\"* Ai|strong=\"H5857\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H2568\"* took|strong=\"H3947\"* about|strong=\"H3947\"* five|strong=\"H2568\"* thousand men|strong=\"H3220\"*, and|strong=\"H5892\"* set|strong=\"H7760\"* them|strong=\"H7760\"* in|strong=\"H5892\"* ambush between Bethel|strong=\"H1008\"* and|strong=\"H5892\"* Ai|strong=\"H5857\"*, on|strong=\"H7760\"* the|strong=\"H3947\"* west|strong=\"H3220\"* side|strong=\"H3220\"* of|strong=\"H5892\"* the|strong=\"H3947\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 13, + "text": "So|strong=\"H7760\"* they|strong=\"H1931\"* set|strong=\"H7760\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, even all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H4264\"* who|strong=\"H3605\"* was|strong=\"H1931\"* on|strong=\"H7760\"* the|strong=\"H3605\"* north|strong=\"H6828\"* of|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H3212\"* their|strong=\"H3605\"* ambush on|strong=\"H7760\"* the|strong=\"H3605\"* west|strong=\"H3220\"* of|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"*; and|strong=\"H3212\"* Joshua|strong=\"H3091\"* went|strong=\"H3212\"* that|strong=\"H5971\"* night|strong=\"H3915\"* into|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H5892\"* the|strong=\"H3605\"* valley|strong=\"H6010\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Ai|strong=\"H5857\"* saw|strong=\"H7200\"* it|strong=\"H1931\"*, they|strong=\"H3588\"* hurried|strong=\"H4116\"* and|strong=\"H3478\"* rose|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* city|strong=\"H5892\"* went|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H7125\"* Israel|strong=\"H3478\"* to|strong=\"H3318\"* battle|strong=\"H4421\"*, he|strong=\"H1931\"* and|strong=\"H3478\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, at|strong=\"H3478\"* the|strong=\"H3605\"* time|strong=\"H4150\"* appointed|strong=\"H4150\"*, before|strong=\"H6440\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"*; but|strong=\"H3588\"* he|strong=\"H1931\"* didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* there|strong=\"H1961\"* was|strong=\"H1961\"* an|strong=\"H1961\"* ambush against|strong=\"H7125\"* him|strong=\"H6440\"* behind the|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 15, + "text": "Joshua|strong=\"H3091\"* and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* made|strong=\"H3478\"* as|strong=\"H6440\"* if they|strong=\"H3605\"* were|strong=\"H3478\"* beaten|strong=\"H5060\"* before|strong=\"H6440\"* them|strong=\"H6440\"*, and|strong=\"H3478\"* fled|strong=\"H5127\"* by|strong=\"H1870\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H6440\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 16, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* in|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"* were|strong=\"H5971\"* called|strong=\"H2199\"* together|strong=\"H2199\"* to|strong=\"H5971\"* pursue|strong=\"H7291\"* after|strong=\"H4480\"* them|strong=\"H7291\"*. They|strong=\"H5971\"* pursued|strong=\"H7291\"* Joshua|strong=\"H3091\"*, and|strong=\"H5971\"* were|strong=\"H5971\"* drawn|strong=\"H5423\"* away|strong=\"H5423\"* from|strong=\"H4480\"* the|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 17, + "text": "There|strong=\"H7604\"* was|strong=\"H3478\"* not|strong=\"H3808\"* a|strong=\"H3068\"* man left|strong=\"H7604\"* in|strong=\"H3478\"* Ai|strong=\"H5857\"* or|strong=\"H3808\"* Bethel|strong=\"H1008\"* who|strong=\"H3478\"* didn’t go|strong=\"H3318\"* out|strong=\"H3318\"* after|strong=\"H7291\"* Israel|strong=\"H3478\"*. They|strong=\"H3808\"* left|strong=\"H7604\"* the|strong=\"H3318\"* city|strong=\"H5892\"* open|strong=\"H6605\"*, and|strong=\"H3478\"* pursued|strong=\"H7291\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, “Stretch|strong=\"H5186\"* out|strong=\"H5186\"* the|strong=\"H3588\"* javelin|strong=\"H3591\"* that|strong=\"H3588\"* is|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* toward|strong=\"H3027\"* Ai|strong=\"H5857\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 19, + "text": "The|strong=\"H6965\"* ambush arose|strong=\"H6965\"* quickly|strong=\"H4116\"* out|strong=\"H5186\"* of|strong=\"H3027\"* their|strong=\"H5186\"* place|strong=\"H4725\"*, and|strong=\"H6965\"* they|strong=\"H7323\"* ran|strong=\"H7323\"* as|strong=\"H5892\"* soon|strong=\"H4116\"* as|strong=\"H5892\"* he|strong=\"H3027\"* had|strong=\"H3027\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* his|strong=\"H5186\"* hand|strong=\"H3027\"* and|strong=\"H6965\"* entered into|strong=\"H3027\"* the|strong=\"H6965\"* city|strong=\"H5892\"* and|strong=\"H6965\"* took|strong=\"H3920\"* it|strong=\"H5186\"*. They|strong=\"H7323\"* hurried|strong=\"H4116\"* and|strong=\"H6965\"* set|strong=\"H6965\"* the|strong=\"H6965\"* city|strong=\"H5892\"* on|strong=\"H3027\"* fire|strong=\"H3341\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"H1961\"* the|strong=\"H7200\"* men|strong=\"H5971\"* of|strong=\"H3027\"* Ai|strong=\"H5857\"* looked|strong=\"H7200\"* behind them|strong=\"H3027\"*, they|strong=\"H3808\"* saw|strong=\"H7200\"*, and|strong=\"H8064\"* behold|strong=\"H2009\"*, the|strong=\"H7200\"* smoke|strong=\"H6227\"* of|strong=\"H3027\"* the|strong=\"H7200\"* city|strong=\"H5892\"* ascended|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* heaven|strong=\"H8064\"*, and|strong=\"H8064\"* they|strong=\"H3808\"* had|strong=\"H1961\"* no|strong=\"H3808\"* power|strong=\"H3027\"* to|strong=\"H5927\"* flee|strong=\"H5127\"* this|strong=\"H7200\"* way|strong=\"H2008\"* or|strong=\"H3808\"* that|strong=\"H5971\"* way|strong=\"H2008\"*. The|strong=\"H7200\"* people|strong=\"H5971\"* who|strong=\"H5971\"* fled|strong=\"H5127\"* to|strong=\"H5927\"* the|strong=\"H7200\"* wilderness|strong=\"H4057\"* turned|strong=\"H2015\"* back|strong=\"H6437\"* on|strong=\"H7200\"* the|strong=\"H7200\"* pursuers|strong=\"H7291\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H3588\"* Joshua|strong=\"H3091\"* and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H3605\"* ambush had|strong=\"H3478\"* taken|strong=\"H3920\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H3478\"* that|strong=\"H3588\"* the|strong=\"H3605\"* smoke|strong=\"H6227\"* of|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"* ascended|strong=\"H5927\"*, then|strong=\"H7725\"* they|strong=\"H3588\"* turned|strong=\"H7725\"* back|strong=\"H7725\"* and|strong=\"H3478\"* killed|strong=\"H5221\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H5892\"* Ai|strong=\"H5857\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H5221\"* others came|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H5892\"* the|strong=\"H5221\"* city|strong=\"H5892\"* against|strong=\"H7125\"* them|strong=\"H5221\"*, so|strong=\"H4480\"* they|strong=\"H5704\"* were|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H5221\"* middle|strong=\"H8432\"* of|strong=\"H5892\"* Israel|strong=\"H3478\"*, some|strong=\"H4480\"* on|strong=\"H1961\"* this|strong=\"H2088\"* side|strong=\"H2088\"*, and|strong=\"H3478\"* some|strong=\"H4480\"* on|strong=\"H1961\"* that|strong=\"H3478\"* side|strong=\"H2088\"*. They|strong=\"H5704\"* struck|strong=\"H5221\"* them|strong=\"H5221\"*, so|strong=\"H4480\"* that|strong=\"H3478\"* they|strong=\"H5704\"* let|strong=\"H7604\"* none|strong=\"H7604\"* of|strong=\"H5892\"* them|strong=\"H5221\"* remain|strong=\"H7604\"* or|strong=\"H5704\"* escape|strong=\"H6412\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H5857\"* captured|strong=\"H8610\"* the|strong=\"H3091\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Ai|strong=\"H5857\"* alive|strong=\"H2416\"*, and|strong=\"H4428\"* brought|strong=\"H7126\"* him|strong=\"H3091\"* to|strong=\"H4428\"* Joshua|strong=\"H3091\"*." + }, + { + "verseNum": 24, + "text": "When|strong=\"H1961\"* Israel|strong=\"H3478\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* killing|strong=\"H2026\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Ai|strong=\"H5857\"* in|strong=\"H3427\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, in|strong=\"H3427\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* in|strong=\"H3427\"* which|strong=\"H3478\"* they|strong=\"H5704\"* pursued|strong=\"H7291\"* them|strong=\"H7725\"*, and|strong=\"H3478\"* they|strong=\"H5704\"* had|strong=\"H1961\"* all|strong=\"H3605\"* fallen|strong=\"H5307\"* by|strong=\"H3478\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H3427\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* until|strong=\"H5704\"* they|strong=\"H5704\"* were|strong=\"H3478\"* consumed|strong=\"H3615\"*, all|strong=\"H3605\"* Israel|strong=\"H3478\"* returned|strong=\"H7725\"* to|strong=\"H5704\"* Ai|strong=\"H5857\"* and|strong=\"H3478\"* struck|strong=\"H5221\"* it|strong=\"H7725\"* with|strong=\"H3427\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H3427\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 25, + "text": "All|strong=\"H3605\"* that|strong=\"H3605\"* fell|strong=\"H5307\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, both|strong=\"H8147\"* of|strong=\"H3117\"* men|strong=\"H3605\"* and|strong=\"H3117\"* women, were|strong=\"H1961\"* twelve|strong=\"H8147\"* thousand, even|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H1931\"* of|strong=\"H3117\"* Ai|strong=\"H5857\"*." + }, + { + "verseNum": 26, + "text": "For|strong=\"H5704\"* Joshua|strong=\"H3091\"* didn’t draw|strong=\"H7725\"* back|strong=\"H7725\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, with|strong=\"H3427\"* which|strong=\"H3605\"* he|strong=\"H5704\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* the|strong=\"H3605\"* javelin|strong=\"H3591\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H3091\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3027\"* Ai|strong=\"H5857\"*." + }, + { + "verseNum": 27, + "text": "Israel|strong=\"H3478\"* took|strong=\"H3478\"* for|strong=\"H3068\"* themselves|strong=\"H1992\"* only|strong=\"H7535\"* the|strong=\"H3068\"* livestock and|strong=\"H3478\"* the|strong=\"H3068\"* goods of|strong=\"H3068\"* that|strong=\"H1931\"* city|strong=\"H5892\"*, according to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H1931\"* he|strong=\"H1931\"* commanded|strong=\"H6680\"* Joshua|strong=\"H3091\"*." + }, + { + "verseNum": 28, + "text": "So|strong=\"H2088\"* Joshua|strong=\"H3091\"* burned|strong=\"H8313\"* Ai|strong=\"H5857\"* and|strong=\"H3117\"* made|strong=\"H7760\"* it|strong=\"H7760\"* a|strong=\"H3068\"* heap|strong=\"H8510\"* forever|strong=\"H5769\"*, even|strong=\"H5704\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*, to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 29, + "text": "He|strong=\"H3117\"* hanged|strong=\"H8518\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Ai|strong=\"H5857\"* on|strong=\"H5921\"* a|strong=\"H3068\"* tree|strong=\"H6086\"* until|strong=\"H5704\"* the|strong=\"H5921\"* evening|strong=\"H6153\"*. At|strong=\"H5921\"* sundown|strong=\"H8121\"*, Joshua|strong=\"H3091\"* commanded|strong=\"H6680\"*, and|strong=\"H6965\"* they|strong=\"H3117\"* took|strong=\"H3381\"* his|strong=\"H5921\"* body|strong=\"H5038\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H5921\"* tree|strong=\"H6086\"* and|strong=\"H6965\"* threw|strong=\"H7993\"* it|strong=\"H5921\"* at|strong=\"H5921\"* the|strong=\"H5921\"* entrance|strong=\"H6607\"* of|strong=\"H4428\"* the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H4428\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, and|strong=\"H6965\"* raised|strong=\"H6965\"* a|strong=\"H3068\"* great|strong=\"H1419\"* heap|strong=\"H1530\"* of|strong=\"H4428\"* stones on|strong=\"H5921\"* it|strong=\"H5921\"* that|strong=\"H3117\"* remains to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 30, + "text": "Then|strong=\"H3068\"* Joshua|strong=\"H3091\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, on|strong=\"H3068\"* Mount|strong=\"H2022\"* Ebal|strong=\"H5858\"*," + }, + { + "verseNum": 31, + "text": "as|strong=\"H3068\"* Moses|strong=\"H4872\"* the|strong=\"H5921\"* servant|strong=\"H5650\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, as|strong=\"H3068\"* it|strong=\"H5921\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H1121\"* the|strong=\"H5921\"* law|strong=\"H8451\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*: an|strong=\"H5130\"* altar|strong=\"H4196\"* of|strong=\"H1121\"* uncut|strong=\"H8003\"* stones, on|strong=\"H5921\"* which|strong=\"H3068\"* no|strong=\"H3808\"* one|strong=\"H3808\"* had|strong=\"H3068\"* lifted|strong=\"H5927\"* up|strong=\"H5927\"* any|strong=\"H5927\"* iron|strong=\"H1270\"*. They|strong=\"H3068\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* on|strong=\"H5921\"* it|strong=\"H5921\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* and|strong=\"H1121\"* sacrificed|strong=\"H2076\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"H8033\"* wrote|strong=\"H3789\"* there|strong=\"H8033\"* on|strong=\"H5921\"* the|strong=\"H6440\"* stones a|strong=\"H3068\"* copy|strong=\"H4932\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*’ law|strong=\"H8451\"*, which|strong=\"H8033\"* he|strong=\"H8033\"* wrote|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 33, + "text": "All|strong=\"H3605\"* Israel|strong=\"H3478\"*, with|strong=\"H3068\"* their|strong=\"H3605\"* elders|strong=\"H2205\"*, officers|strong=\"H7860\"*, and|strong=\"H4872\"* judges|strong=\"H8199\"*, stood|strong=\"H5975\"* on|strong=\"H3068\"* both|strong=\"H3605\"* sides|strong=\"H2088\"* of|strong=\"H3068\"* the|strong=\"H3605\"* ark before|strong=\"H5048\"* the|strong=\"H3605\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"*, who|strong=\"H3605\"* carried|strong=\"H5375\"* the|strong=\"H3605\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, the|strong=\"H3605\"* foreigner|strong=\"H1616\"* as|strong=\"H3068\"* well as|strong=\"H3068\"* the|strong=\"H3605\"* native; half|strong=\"H2677\"* of|strong=\"H3068\"* them|strong=\"H5975\"* in|strong=\"H3478\"* front|strong=\"H5048\"* of|strong=\"H3068\"* Mount|strong=\"H2022\"* Gerizim|strong=\"H1630\"*, and|strong=\"H4872\"* half|strong=\"H2677\"* of|strong=\"H3068\"* them|strong=\"H5975\"* in|strong=\"H3478\"* front|strong=\"H5048\"* of|strong=\"H3068\"* Mount|strong=\"H2022\"* Ebal|strong=\"H5858\"*, as|strong=\"H3068\"* Moses|strong=\"H4872\"* the|strong=\"H3605\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* at|strong=\"H3478\"* the|strong=\"H3605\"* first|strong=\"H7223\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* should|strong=\"H3068\"* bless|strong=\"H1288\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 34, + "text": "Afterward he|strong=\"H3651\"* read|strong=\"H7121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H3605\"* law|strong=\"H8451\"*, the|strong=\"H3605\"* blessing|strong=\"H1293\"* and|strong=\"H1697\"* the|strong=\"H3605\"* curse|strong=\"H7045\"*, according to|strong=\"H1697\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H1697\"* written|strong=\"H3789\"* in|strong=\"H3789\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H1697\"* the|strong=\"H3605\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 35, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* not|strong=\"H3808\"* a|strong=\"H3068\"* word|strong=\"H1697\"* of|strong=\"H1697\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* which|strong=\"H1697\"* Joshua|strong=\"H3091\"* didn’t read|strong=\"H7121\"* before|strong=\"H5048\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H1697\"* Israel|strong=\"H3478\"*, with|strong=\"H1980\"* the|strong=\"H3605\"* women, the|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, and|strong=\"H1980\"* the|strong=\"H3605\"* foreigners|strong=\"H1616\"* who|strong=\"H3605\"* were|strong=\"H3478\"* among|strong=\"H7130\"* them|strong=\"H7121\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* who|strong=\"H3605\"* were|strong=\"H1961\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, in|strong=\"H4428\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, and|strong=\"H4428\"* in|strong=\"H4428\"* the|strong=\"H3605\"* lowland|strong=\"H8219\"*, and|strong=\"H4428\"* on|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* shore|strong=\"H2348\"* of|strong=\"H4428\"* the|strong=\"H3605\"* great|strong=\"H1419\"* sea|strong=\"H3220\"* in|strong=\"H4428\"* front|strong=\"H4136\"* of|strong=\"H4428\"* Lebanon|strong=\"H3844\"*, the|strong=\"H3605\"* Hittite|strong=\"H2850\"*, the|strong=\"H3605\"* Amorite, the|strong=\"H3605\"* Canaanite|strong=\"H3669\"*, the|strong=\"H3605\"* Perizzite|strong=\"H6522\"*, the|strong=\"H3605\"* Hivite|strong=\"H2340\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* Jebusite|strong=\"H2983\"*, heard|strong=\"H8085\"* of|strong=\"H4428\"* it|strong=\"H1961\"*" + }, + { + "verseNum": 2, + "text": "they|strong=\"H6310\"* gathered|strong=\"H6908\"* themselves|strong=\"H6908\"* together|strong=\"H3162\"* to|strong=\"H3478\"* fight|strong=\"H3898\"* with|strong=\"H5973\"* Joshua|strong=\"H3091\"* and|strong=\"H3478\"* with|strong=\"H5973\"* Israel|strong=\"H3478\"*, with|strong=\"H5973\"* one|strong=\"H6310\"* accord|strong=\"H6310\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"H8085\"* when|strong=\"H8085\"* the|strong=\"H8085\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Gibeon|strong=\"H1391\"* heard|strong=\"H8085\"* what|strong=\"H6213\"* Joshua|strong=\"H3091\"* had|strong=\"H3091\"* done|strong=\"H6213\"* to|strong=\"H6213\"* Jericho|strong=\"H3405\"* and|strong=\"H8085\"* to|strong=\"H6213\"* Ai|strong=\"H5857\"*," + }, + { + "verseNum": 4, + "text": "they|strong=\"H1992\"* also|strong=\"H1571\"* resorted to|strong=\"H3212\"* a|strong=\"H3068\"* ruse, and|strong=\"H3212\"* went|strong=\"H3212\"* and|strong=\"H3212\"* made|strong=\"H6213\"* as|strong=\"H6213\"* if they|strong=\"H1992\"* had|strong=\"H6213\"* been|strong=\"H6887\"* ambassadors|strong=\"H6737\"*, and|strong=\"H3212\"* took|strong=\"H3947\"* old|strong=\"H1087\"* sacks|strong=\"H8242\"* on|strong=\"H3212\"* their|strong=\"H3947\"* donkeys|strong=\"H2543\"*, and|strong=\"H3212\"* old|strong=\"H1087\"*, torn-up and|strong=\"H3212\"* bound|strong=\"H6887\"* up|strong=\"H1234\"* wineskins|strong=\"H4997\"*," + }, + { + "verseNum": 5, + "text": "and|strong=\"H3899\"* old|strong=\"H1087\"* and|strong=\"H3899\"* patched|strong=\"H2921\"* sandals|strong=\"H5275\"* on|strong=\"H5921\"* their|strong=\"H3605\"* feet|strong=\"H7272\"*, and|strong=\"H3899\"* wore|strong=\"H5921\"* old|strong=\"H1087\"* garments|strong=\"H8008\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* bread|strong=\"H3899\"* of|strong=\"H5921\"* their|strong=\"H3605\"* food|strong=\"H3899\"* supply was|strong=\"H1961\"* dry|strong=\"H3001\"* and|strong=\"H3899\"* moldy." + }, + { + "verseNum": 6, + "text": "They|strong=\"H3478\"* went|strong=\"H3212\"* to|strong=\"H3478\"* Joshua|strong=\"H3091\"* at|strong=\"H3478\"* the|strong=\"H3091\"* camp|strong=\"H4264\"* at|strong=\"H3478\"* Gilgal|strong=\"H1537\"*, and|strong=\"H3478\"* said to|strong=\"H3478\"* him|strong=\"H3772\"* and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3091\"* men|strong=\"H3772\"* of|strong=\"H4264\"* Israel|strong=\"H3478\"*, “We|strong=\"H6258\"* have|strong=\"H3478\"* come|strong=\"H3212\"* from|strong=\"H3772\"* a|strong=\"H3068\"* far|strong=\"H7350\"* country. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* make|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* us|strong=\"H3478\"*.”" + }, + { + "verseNum": 7, + "text": "The|strong=\"H3772\"* men|strong=\"H3772\"* of|strong=\"H3427\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* the|strong=\"H3772\"* Hivites|strong=\"H2340\"*, “What if you|strong=\"H7130\"* live|strong=\"H3427\"* among|strong=\"H7130\"* us|strong=\"H3478\"*? How could we|strong=\"H3068\"* make|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* you|strong=\"H7130\"*?”" + }, + { + "verseNum": 8, + "text": "They said to|strong=\"H5650\"* Joshua|strong=\"H3091\"*, “We are|strong=\"H5650\"* your servants|strong=\"H5650\"*.”" + }, + { + "verseNum": 9, + "text": "They|strong=\"H3588\"* said|strong=\"H8085\"* to|strong=\"H3068\"* him|strong=\"H6213\"*, “Your|strong=\"H3068\"* servants|strong=\"H5650\"* have|strong=\"H3068\"* come|strong=\"H7350\"* from|strong=\"H8085\"* a|strong=\"H3068\"* very|strong=\"H3966\"* far|strong=\"H7350\"* country because|strong=\"H3588\"* of|strong=\"H3068\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* of|strong=\"H3068\"* his|strong=\"H3605\"* fame|strong=\"H8034\"*, all|strong=\"H3605\"* that|strong=\"H3588\"* he|strong=\"H3588\"* did|strong=\"H6213\"* in|strong=\"H3068\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"H4428\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H6213\"* did|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H3605\"* two|strong=\"H8147\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Amorites who|strong=\"H3605\"* were|strong=\"H4428\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, to|strong=\"H6213\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Heshbon|strong=\"H2809\"* and|strong=\"H4428\"* to|strong=\"H6213\"* Og|strong=\"H5747\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"*, who|strong=\"H3605\"* was|strong=\"H4428\"* at|strong=\"H4428\"* Ashtaroth|strong=\"H6252\"*." + }, + { + "verseNum": 11, + "text": "Our|strong=\"H3605\"* elders|strong=\"H2205\"* and|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3027\"* our|strong=\"H3605\"* country spoke to|strong=\"H3212\"* us|strong=\"H3027\"*, saying, ‘Take|strong=\"H3947\"* supplies|strong=\"H6720\"* in|strong=\"H3427\"* your|strong=\"H3605\"* hand|strong=\"H3027\"* for|strong=\"H3027\"* the|strong=\"H3605\"* journey|strong=\"H1870\"*, and|strong=\"H3027\"* go|strong=\"H3212\"* to|strong=\"H3212\"* meet|strong=\"H7125\"* them|strong=\"H3027\"*. Tell|strong=\"H3605\"* them|strong=\"H3027\"*, “We|strong=\"H6258\"* are|strong=\"H3027\"* your|strong=\"H3605\"* servants|strong=\"H5650\"*. Now|strong=\"H6258\"* make|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* us|strong=\"H3027\"*.”’" + }, + { + "verseNum": 12, + "text": "This|strong=\"H2088\"* our|strong=\"H3318\"* bread|strong=\"H3899\"* we|strong=\"H3068\"* took|strong=\"H3318\"* hot|strong=\"H2525\"* for|strong=\"H1004\"* our|strong=\"H3318\"* supplies out|strong=\"H3318\"* of|strong=\"H1004\"* our|strong=\"H3318\"* houses|strong=\"H1004\"* on|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* we|strong=\"H3068\"* went|strong=\"H3212\"* out|strong=\"H3318\"* to|strong=\"H3318\"* go|strong=\"H3212\"* to|strong=\"H3318\"* you|strong=\"H3117\"*; but|strong=\"H1961\"* now|strong=\"H6258\"*, behold|strong=\"H2009\"*, it|strong=\"H1961\"* is|strong=\"H2088\"* dry|strong=\"H3001\"*, and|strong=\"H3117\"* has|strong=\"H1961\"* become|strong=\"H1961\"* moldy." + }, + { + "verseNum": 13, + "text": "These wineskins|strong=\"H4997\"*, which|strong=\"H3196\"* we|strong=\"H3068\"* filled|strong=\"H4390\"*, were|strong=\"H2009\"* new|strong=\"H2319\"*; and|strong=\"H1870\"* behold|strong=\"H2009\"*, they|strong=\"H1870\"* are|strong=\"H1870\"* torn|strong=\"H1234\"*. These our|strong=\"H4390\"* garments|strong=\"H8008\"* and|strong=\"H1870\"* our|strong=\"H4390\"* sandals|strong=\"H5275\"* have|strong=\"H2009\"* become|strong=\"H1086\"* old|strong=\"H1086\"* because|strong=\"H7230\"* of|strong=\"H1870\"* the|strong=\"H4390\"* very|strong=\"H3966\"* long|strong=\"H7230\"* journey|strong=\"H1870\"*.”" + }, + { + "verseNum": 14, + "text": "The|strong=\"H3947\"* men|strong=\"H3947\"* sampled their|strong=\"H3068\"* provisions|strong=\"H6718\"*, and|strong=\"H3068\"* didn’t ask|strong=\"H7592\"* counsel|strong=\"H7592\"* from|strong=\"H3947\"* Yahweh|strong=\"H3068\"*’s mouth|strong=\"H6310\"*." + }, + { + "verseNum": 15, + "text": "Joshua|strong=\"H3091\"* made|strong=\"H6213\"* peace|strong=\"H7965\"* with|strong=\"H1285\"* them|strong=\"H6213\"*, and|strong=\"H3091\"* made|strong=\"H6213\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* them|strong=\"H6213\"*, to|strong=\"H6213\"* let them|strong=\"H6213\"* live|strong=\"H2421\"*. The|strong=\"H6213\"* princes|strong=\"H5387\"* of|strong=\"H5712\"* the|strong=\"H6213\"* congregation|strong=\"H5712\"* swore|strong=\"H7650\"* to|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 16, + "text": "At|strong=\"H3427\"* the|strong=\"H8085\"* end|strong=\"H7097\"* of|strong=\"H3117\"* three|strong=\"H7969\"* days|strong=\"H3117\"* after|strong=\"H1961\"* they|strong=\"H1992\"* had|strong=\"H1961\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* them|strong=\"H1992\"*, they|strong=\"H1992\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H1961\"* their|strong=\"H8085\"* neighbors|strong=\"H7138\"*, and|strong=\"H3117\"* that|strong=\"H3588\"* they|strong=\"H1992\"* lived|strong=\"H3427\"* among|strong=\"H7130\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* traveled|strong=\"H5265\"* and|strong=\"H1121\"* came|strong=\"H3478\"* to|strong=\"H3478\"* their|strong=\"H3117\"* cities|strong=\"H5892\"* on|strong=\"H3117\"* the|strong=\"H3117\"* third|strong=\"H7992\"* day|strong=\"H3117\"*. Now|strong=\"H3117\"* their|strong=\"H3117\"* cities|strong=\"H5892\"* were|strong=\"H3478\"* Gibeon|strong=\"H1391\"*, Chephirah|strong=\"H3716\"*, Beeroth, and|strong=\"H1121\"* Kiriath|strong=\"H7157\"* Jearim." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* didn’t strike|strong=\"H5221\"* them|strong=\"H5921\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* princes|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* had|strong=\"H3068\"* sworn|strong=\"H7650\"* to|strong=\"H3478\"* them|strong=\"H5921\"* by|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* murmured|strong=\"H3885\"* against|strong=\"H5921\"* the|strong=\"H3605\"* princes|strong=\"H5387\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"H3808\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H5387\"* said to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*, “We|strong=\"H6258\"* have|strong=\"H3068\"* sworn|strong=\"H7650\"* to|strong=\"H3478\"* them|strong=\"H5060\"* by|strong=\"H7650\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* we|strong=\"H3068\"* may|strong=\"H3201\"* not|strong=\"H3808\"* touch|strong=\"H5060\"* them|strong=\"H5060\"*." + }, + { + "verseNum": 20, + "text": "We|strong=\"H6213\"* will|strong=\"H1961\"* do|strong=\"H6213\"* this|strong=\"H2063\"* to|strong=\"H1961\"* them|strong=\"H5921\"*, and|strong=\"H6213\"* let|strong=\"H3808\"* them|strong=\"H5921\"* live|strong=\"H2421\"*; lest wrath|strong=\"H7110\"* be|strong=\"H1961\"* on|strong=\"H5921\"* us|strong=\"H5921\"*, because|strong=\"H5921\"* of|strong=\"H5921\"* the|strong=\"H5921\"* oath|strong=\"H7621\"* which we|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H1961\"* them|strong=\"H5921\"*.”" + }, + { + "verseNum": 21, + "text": "The|strong=\"H3605\"* princes|strong=\"H5387\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H1961\"*, “Let|strong=\"H1961\"* them|strong=\"H1961\"* live|strong=\"H2421\"*.” So|strong=\"H1961\"* they|strong=\"H3605\"* became|strong=\"H1961\"* wood|strong=\"H6086\"* cutters and|strong=\"H6086\"* drawers|strong=\"H7579\"* of|strong=\"H4325\"* water|strong=\"H4325\"* for|strong=\"H4325\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*, as|strong=\"H1961\"* the|strong=\"H3605\"* princes|strong=\"H5387\"* had|strong=\"H1961\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H1961\"*." + }, + { + "verseNum": 22, + "text": "Joshua|strong=\"H3091\"* called|strong=\"H7121\"* for|strong=\"H7121\"* them|strong=\"H7121\"*, and|strong=\"H3091\"* he|strong=\"H4480\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H7121\"*, saying|strong=\"H1696\"*, “Why|strong=\"H4100\"* have|strong=\"H1696\"* you|strong=\"H4480\"* deceived|strong=\"H7411\"* us|strong=\"H4480\"*, saying|strong=\"H1696\"*, ‘We|strong=\"H7130\"* are|strong=\"H4100\"* very|strong=\"H3966\"* far|strong=\"H7350\"* from|strong=\"H4480\"* you|strong=\"H4480\"*,’ when|strong=\"H1696\"* you|strong=\"H4480\"* live|strong=\"H3427\"* among|strong=\"H7130\"* us|strong=\"H4480\"*?" + }, + { + "verseNum": 23, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* you|strong=\"H3808\"* are|strong=\"H5650\"* cursed, and|strong=\"H1004\"* some|strong=\"H4480\"* of|strong=\"H1004\"* you|strong=\"H3808\"* will|strong=\"H5650\"* never|strong=\"H3808\"* fail|strong=\"H3772\"* to|strong=\"H1004\"* be|strong=\"H3808\"* slaves|strong=\"H5650\"*, both|strong=\"H4480\"* wood|strong=\"H6086\"* cutters and|strong=\"H1004\"* drawers|strong=\"H7579\"* of|strong=\"H1004\"* water|strong=\"H4325\"* for|strong=\"H1004\"* the|strong=\"H4480\"* house|strong=\"H1004\"* of|strong=\"H1004\"* my|strong=\"H4480\"* God|strong=\"H3808\"*.”" + }, + { + "verseNum": 24, + "text": "They|strong=\"H3588\"* answered|strong=\"H6030\"* Joshua|strong=\"H3091\"*, and|strong=\"H4872\"* said|strong=\"H1697\"*, “Because|strong=\"H3588\"* your|strong=\"H3068\"* servants|strong=\"H5650\"* were|strong=\"H1697\"* certainly|strong=\"H3588\"* told|strong=\"H5046\"* how|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* his|strong=\"H3605\"* servant|strong=\"H5650\"* Moses|strong=\"H4872\"* to|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"*, and|strong=\"H4872\"* to|strong=\"H3068\"* destroy|strong=\"H8045\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land|strong=\"H6440\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H3588\"*. Therefore|strong=\"H4872\"* we|strong=\"H3068\"* were|strong=\"H1697\"* very|strong=\"H3966\"* afraid|strong=\"H3372\"* for|strong=\"H3588\"* our|strong=\"H3068\"* lives|strong=\"H5315\"* because|strong=\"H3588\"* of|strong=\"H3068\"* you|strong=\"H3588\"*, and|strong=\"H4872\"* have|strong=\"H3068\"* done|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*." + }, + { + "verseNum": 25, + "text": "Now|strong=\"H6258\"*, behold|strong=\"H2005\"*, we|strong=\"H3068\"* are|strong=\"H5869\"* in|strong=\"H6213\"* your|strong=\"H6213\"* hand|strong=\"H3027\"*. Do|strong=\"H6213\"* to|strong=\"H6213\"* us|strong=\"H6213\"* as|strong=\"H6213\"* it|strong=\"H6213\"* seems|strong=\"H2896\"* good|strong=\"H2896\"* and|strong=\"H3027\"* right|strong=\"H3477\"* to|strong=\"H6213\"* you|strong=\"H6213\"* to|strong=\"H6213\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 26, + "text": "He|strong=\"H3651\"* did|strong=\"H6213\"* so|strong=\"H3651\"* to|strong=\"H3478\"* them|strong=\"H3027\"*, and|strong=\"H1121\"* delivered|strong=\"H5337\"* them|strong=\"H3027\"* out|strong=\"H6213\"* of|strong=\"H1121\"* the|strong=\"H6213\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, so|strong=\"H3651\"* that|strong=\"H3651\"* they|strong=\"H3651\"* didn’t kill|strong=\"H2026\"* them|strong=\"H3027\"*." + }, + { + "verseNum": 27, + "text": "That|strong=\"H3117\"* day|strong=\"H3117\"* Joshua|strong=\"H3091\"* made|strong=\"H5414\"* them|strong=\"H5414\"* wood|strong=\"H6086\"* cutters and|strong=\"H3068\"* drawers|strong=\"H7579\"* of|strong=\"H3068\"* water|strong=\"H4325\"* for|strong=\"H5704\"* the|strong=\"H5414\"* congregation|strong=\"H5712\"* and|strong=\"H3068\"* for|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, in|strong=\"H3068\"* the|strong=\"H5414\"* place|strong=\"H4725\"* which|strong=\"H1931\"* he|strong=\"H1931\"* should|strong=\"H3068\"* choose." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* when|strong=\"H3588\"* Adoni-Zedek king|strong=\"H4428\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"* heard|strong=\"H8085\"* how|strong=\"H3588\"* Joshua|strong=\"H3091\"* had|strong=\"H1961\"* taken|strong=\"H3920\"* Ai|strong=\"H5857\"*, and|strong=\"H3478\"* had|strong=\"H1961\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* it|strong=\"H3588\"*; as|strong=\"H1961\"* he|strong=\"H3588\"* had|strong=\"H1961\"* done|strong=\"H6213\"* to|strong=\"H3478\"* Jericho|strong=\"H3405\"* and|strong=\"H3478\"* her|strong=\"H7130\"* king|strong=\"H4428\"*, so|strong=\"H3651\"* he|strong=\"H3588\"* had|strong=\"H1961\"* done|strong=\"H6213\"* to|strong=\"H3478\"* Ai|strong=\"H5857\"* and|strong=\"H3478\"* her|strong=\"H7130\"* king|strong=\"H4428\"*; and|strong=\"H3478\"* how|strong=\"H3588\"* the|strong=\"H8085\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Gibeon|strong=\"H1391\"* had|strong=\"H1961\"* made|strong=\"H6213\"* peace|strong=\"H7999\"* with|strong=\"H6213\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* were|strong=\"H3478\"* among|strong=\"H7130\"* them|strong=\"H6213\"*," + }, + { + "verseNum": 2, + "text": "they|strong=\"H3588\"* were|strong=\"H1419\"* very|strong=\"H3966\"* afraid|strong=\"H3372\"*, because|strong=\"H3588\"* Gibeon|strong=\"H1391\"* was|strong=\"H1931\"* a|strong=\"H3068\"* great|strong=\"H1419\"* city|strong=\"H5892\"*, as|strong=\"H3588\"* one|strong=\"H3605\"* of|strong=\"H5892\"* the|strong=\"H3605\"* royal|strong=\"H4467\"* cities|strong=\"H5892\"*, and|strong=\"H1419\"* because|strong=\"H3588\"* it|strong=\"H1931\"* was|strong=\"H1931\"* greater|strong=\"H1419\"* than|strong=\"H4480\"* Ai|strong=\"H5857\"*, and|strong=\"H1419\"* all|strong=\"H3605\"* its|strong=\"H3605\"* men|strong=\"H1368\"* were|strong=\"H1419\"* mighty|strong=\"H1368\"*." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H7971\"* Adoni-Zedek king|strong=\"H4428\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* Hoham|strong=\"H1944\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Hebron|strong=\"H2275\"*, Piram|strong=\"H6502\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Jarmuth|strong=\"H3412\"*, Japhia|strong=\"H3309\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Lachish|strong=\"H3923\"*, and|strong=\"H7971\"* Debir|strong=\"H1688\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Eglon|strong=\"H5700\"*, saying," + }, + { + "verseNum": 4, + "text": "“Come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* me|strong=\"H5221\"* and|strong=\"H1121\"* help|strong=\"H5826\"* me|strong=\"H5221\"*. Let’s strike|strong=\"H5221\"* Gibeon|strong=\"H1391\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1121\"* made|strong=\"H7999\"* peace|strong=\"H7999\"* with|strong=\"H5927\"* Joshua|strong=\"H3091\"* and|strong=\"H1121\"* with|strong=\"H5927\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"H5921\"* the|strong=\"H3605\"* five|strong=\"H2568\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Amorites, the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Hebron|strong=\"H2275\"*, the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Jarmuth|strong=\"H3412\"*, the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Lachish|strong=\"H3923\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Eglon|strong=\"H5700\"*, gathered themselves|strong=\"H1992\"* together|strong=\"H5921\"* and|strong=\"H4428\"* went|strong=\"H5927\"* up|strong=\"H5927\"*, they|strong=\"H1992\"* and|strong=\"H4428\"* all|strong=\"H3605\"* their|strong=\"H3605\"* armies|strong=\"H4264\"*, and|strong=\"H4428\"* encamped|strong=\"H2583\"* against|strong=\"H5921\"* Gibeon|strong=\"H1391\"*, and|strong=\"H4428\"* made|strong=\"H3605\"* war|strong=\"H3898\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3605\"* men|strong=\"H5650\"* of|strong=\"H4428\"* Gibeon|strong=\"H1391\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* Joshua|strong=\"H3091\"* at|strong=\"H3427\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* at|strong=\"H3427\"* Gilgal|strong=\"H1537\"*, saying, “Don’t abandon|strong=\"H7503\"* your|strong=\"H3605\"* servants|strong=\"H5650\"*! Come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H7971\"* us|strong=\"H3588\"* quickly|strong=\"H4120\"* and|strong=\"H7971\"* save|strong=\"H3467\"* us|strong=\"H3588\"*! Help|strong=\"H5826\"* us|strong=\"H3588\"*; for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Amorites that|strong=\"H3588\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* have|strong=\"H5650\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* against|strong=\"H5927\"* us|strong=\"H3588\"*.”" + }, + { + "verseNum": 7, + "text": "So|strong=\"H4480\"* Joshua|strong=\"H3091\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H4480\"* Gilgal|strong=\"H1537\"*, he|strong=\"H1931\"* and|strong=\"H5971\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* army|strong=\"H2428\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, including|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H4480\"* valor|strong=\"H2428\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, “Don’t fear|strong=\"H3372\"* them|strong=\"H5414\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H3068\"* hands|strong=\"H3027\"*. Not|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H6440\"* of|strong=\"H3068\"* them|strong=\"H5414\"* will|strong=\"H3068\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 9, + "text": "Joshua|strong=\"H3091\"* therefore|strong=\"H3091\"* came|strong=\"H5927\"* to|strong=\"H5927\"* them|strong=\"H5927\"* suddenly|strong=\"H6597\"*. He|strong=\"H3605\"* marched|strong=\"H5927\"* from|strong=\"H4480\"* Gilgal|strong=\"H1537\"* all|strong=\"H3605\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* confused|strong=\"H2000\"* them|strong=\"H6440\"* before|strong=\"H6440\"* Israel|strong=\"H3478\"*. He|strong=\"H5704\"* killed|strong=\"H5221\"* them|strong=\"H6440\"* with|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* slaughter|strong=\"H4347\"* at|strong=\"H3478\"* Gibeon|strong=\"H1391\"*, and|strong=\"H3478\"* chased|strong=\"H7291\"* them|strong=\"H6440\"* by|strong=\"H3068\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H3068\"* the|strong=\"H6440\"* ascent of|strong=\"H3068\"* Beth Horon, and|strong=\"H3478\"* struck|strong=\"H5221\"* them|strong=\"H6440\"* to|strong=\"H5704\"* Azekah|strong=\"H5825\"* and|strong=\"H3478\"* to|strong=\"H5704\"* Makkedah|strong=\"H4719\"*." + }, + { + "verseNum": 11, + "text": "As|strong=\"H5704\"* they|strong=\"H1992\"* fled|strong=\"H5127\"* from|strong=\"H4480\"* before|strong=\"H6440\"* Israel|strong=\"H3478\"*, while|strong=\"H5704\"* they|strong=\"H1992\"* were|strong=\"H3478\"* at|strong=\"H5921\"* the|strong=\"H6440\"* descent|strong=\"H4174\"* of|strong=\"H1121\"* Beth Horon, Yahweh|strong=\"H3068\"* hurled|strong=\"H7993\"* down|strong=\"H7993\"* great|strong=\"H1419\"* stones from|strong=\"H4480\"* the|strong=\"H6440\"* sky|strong=\"H8064\"* on|strong=\"H5921\"* them|strong=\"H1992\"* to|strong=\"H5704\"* Azekah|strong=\"H5825\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* died|strong=\"H4191\"*. There|strong=\"H1961\"* were|strong=\"H3478\"* more|strong=\"H4480\"* who|strong=\"H3068\"* died|strong=\"H4191\"* from|strong=\"H4480\"* the|strong=\"H6440\"* hailstones|strong=\"H1259\"* than|strong=\"H4480\"* those|strong=\"H1992\"* whom|strong=\"H1992\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* killed|strong=\"H2026\"* with|strong=\"H3068\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 12, + "text": "Then|strong=\"H1696\"* Joshua|strong=\"H3091\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"* in|strong=\"H3478\"* the|strong=\"H6440\"* day|strong=\"H3117\"* when|strong=\"H3117\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* up|strong=\"H5414\"* the|strong=\"H6440\"* Amorites before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. He|strong=\"H3117\"* said|strong=\"H1696\"* in|strong=\"H3478\"* the|strong=\"H6440\"* sight|strong=\"H5869\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “Sun|strong=\"H8121\"*, stand|strong=\"H5869\"* still|strong=\"H1826\"* on|strong=\"H3117\"* Gibeon|strong=\"H1391\"*! You|strong=\"H5414\"*, moon|strong=\"H3394\"*, stop in|strong=\"H3478\"* the|strong=\"H6440\"* valley|strong=\"H6010\"* of|strong=\"H1121\"* Aijalon!”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H5921\"* sun|strong=\"H8121\"* stood|strong=\"H5975\"* still|strong=\"H5975\"*, and|strong=\"H3117\"* the|strong=\"H5921\"* moon|strong=\"H3394\"* stayed|strong=\"H5975\"*, until|strong=\"H5704\"* the|strong=\"H5921\"* nation|strong=\"H1471\"* had|strong=\"H8121\"* avenged|strong=\"H5358\"* themselves|strong=\"H5921\"* of|strong=\"H3117\"* their|strong=\"H5921\"* enemies. Isn’t this|strong=\"H1931\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H3117\"* Jashar|strong=\"H3477\"*? The|strong=\"H5921\"* sun|strong=\"H8121\"* stayed|strong=\"H5975\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H2677\"* of|strong=\"H3117\"* the|strong=\"H5921\"* sky|strong=\"H8064\"*, and|strong=\"H3117\"* didn’t hurry to|strong=\"H5704\"* go|strong=\"H8121\"* down|strong=\"H3789\"* about|strong=\"H5921\"* a|strong=\"H3068\"* whole|strong=\"H8549\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 14, + "text": "There|strong=\"H1961\"* was|strong=\"H3068\"* no|strong=\"H3808\"* day|strong=\"H3117\"* like|strong=\"H1961\"* that|strong=\"H3588\"* before|strong=\"H6440\"* it|strong=\"H1931\"* or|strong=\"H3808\"* after|strong=\"H1961\"* it|strong=\"H1931\"*, that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* listened|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H6440\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* a|strong=\"H3068\"* man|strong=\"H6440\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* fought|strong=\"H3898\"* for|strong=\"H3588\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 15, + "text": "Joshua|strong=\"H3091\"* returned|strong=\"H7725\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H7725\"*, to|strong=\"H7725\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* to|strong=\"H7725\"* Gilgal|strong=\"H1537\"*." + }, + { + "verseNum": 16, + "text": "These|strong=\"H4428\"* five|strong=\"H2568\"* kings|strong=\"H4428\"* fled|strong=\"H5127\"*, and|strong=\"H4428\"* hid|strong=\"H2244\"* themselves|strong=\"H2244\"* in|strong=\"H4428\"* the|strong=\"H2244\"* cave|strong=\"H4631\"* at|strong=\"H4428\"* Makkedah|strong=\"H4719\"*." + }, + { + "verseNum": 17, + "text": "Joshua|strong=\"H3091\"* was|strong=\"H4428\"* told|strong=\"H5046\"*, saying, “The|strong=\"H3091\"* five|strong=\"H2568\"* kings|strong=\"H4428\"* have|strong=\"H4672\"* been|strong=\"H5046\"* found|strong=\"H4672\"*, hidden|strong=\"H2244\"* in|strong=\"H4428\"* the|strong=\"H3091\"* cave|strong=\"H4631\"* at|strong=\"H4428\"* Makkedah|strong=\"H4719\"*.”" + }, + { + "verseNum": 18, + "text": "Joshua|strong=\"H3091\"* said|strong=\"H6310\"*, “Roll|strong=\"H1556\"* large|strong=\"H1419\"* stones to|strong=\"H5921\"* cover the|strong=\"H5921\"* cave|strong=\"H4631\"*’s entrance, and|strong=\"H1419\"* set|strong=\"H6485\"* men|strong=\"H1419\"* by|strong=\"H5921\"* it|strong=\"H5921\"* to|strong=\"H5921\"* guard|strong=\"H8104\"* them|strong=\"H5921\"*;" + }, + { + "verseNum": 19, + "text": "but|strong=\"H3588\"* don’t stay|strong=\"H5975\"* there|strong=\"H5975\"*. Pursue|strong=\"H7291\"* your|strong=\"H3068\"* enemies|strong=\"H3027\"*, and|strong=\"H3068\"* attack|strong=\"H2179\"* them|strong=\"H5414\"* from|strong=\"H3027\"* the|strong=\"H3588\"* rear|strong=\"H2179\"*. Don’t allow|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3068\"* enter|strong=\"H5975\"* into|strong=\"H3027\"* their|strong=\"H3068\"* cities|strong=\"H5892\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 20, + "text": "When|strong=\"H1961\"* Joshua|strong=\"H3091\"* and|strong=\"H1121\"* the|strong=\"H5221\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* killing|strong=\"H5221\"* them|strong=\"H1992\"* with|strong=\"H5892\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* slaughter|strong=\"H4347\"* until|strong=\"H5704\"* they|strong=\"H1992\"* were|strong=\"H3478\"* consumed|strong=\"H3615\"*, and|strong=\"H1121\"* the|strong=\"H5221\"* remnant|strong=\"H8300\"* which|strong=\"H1992\"* remained|strong=\"H1961\"* of|strong=\"H1121\"* them|strong=\"H1992\"* had|strong=\"H1961\"* entered|strong=\"H5704\"* into|strong=\"H1961\"* the|strong=\"H5221\"* fortified|strong=\"H4013\"* cities|strong=\"H5892\"*," + }, + { + "verseNum": 21, + "text": "all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* to|strong=\"H7725\"* Joshua|strong=\"H3091\"* at|strong=\"H3478\"* Makkedah|strong=\"H4719\"* in|strong=\"H3478\"* peace|strong=\"H7965\"*. None|strong=\"H3808\"* moved|strong=\"H2782\"* his|strong=\"H3605\"* tongue|strong=\"H3956\"* against|strong=\"H3956\"* any|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 22, + "text": "Then|strong=\"H3318\"* Joshua|strong=\"H3091\"* said|strong=\"H3318\"*, “Open|strong=\"H6605\"* the|strong=\"H4480\"* cave|strong=\"H4631\"* entrance, and|strong=\"H4428\"* bring|strong=\"H3318\"* those|strong=\"H4480\"* five|strong=\"H2568\"* kings|strong=\"H4428\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H4480\"* cave|strong=\"H4631\"* to|strong=\"H3318\"* me|strong=\"H4480\"*.”" + }, + { + "verseNum": 23, + "text": "They|strong=\"H3651\"* did|strong=\"H6213\"* so|strong=\"H3651\"*, and|strong=\"H4428\"* brought|strong=\"H3318\"* those|strong=\"H4480\"* five|strong=\"H2568\"* kings|strong=\"H4428\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H6213\"* cave|strong=\"H4631\"* to|strong=\"H3318\"* him|strong=\"H6213\"*: the|strong=\"H6213\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, the|strong=\"H6213\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Hebron|strong=\"H2275\"*, the|strong=\"H6213\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Jarmuth|strong=\"H3412\"*, the|strong=\"H6213\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Lachish|strong=\"H3923\"*, and|strong=\"H4428\"* the|strong=\"H6213\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Eglon|strong=\"H5700\"*." + }, + { + "verseNum": 24, + "text": "When|strong=\"H1961\"* they|strong=\"H5921\"* brought|strong=\"H3318\"* those|strong=\"H3605\"* kings|strong=\"H4428\"* out|strong=\"H3318\"* to|strong=\"H1980\"* Joshua|strong=\"H3091\"*, Joshua|strong=\"H3091\"* called|strong=\"H7121\"* for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1980\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, and|strong=\"H1980\"* said|strong=\"H7121\"* to|strong=\"H1980\"* the|strong=\"H3605\"* chiefs|strong=\"H7101\"* of|strong=\"H4428\"* the|strong=\"H3605\"* men|strong=\"H1980\"* of|strong=\"H4428\"* war|strong=\"H4421\"* who|strong=\"H3605\"* went|strong=\"H1980\"* with|strong=\"H1980\"* him|strong=\"H7121\"*, “Come|strong=\"H1980\"* near|strong=\"H7126\"*. Put|strong=\"H7760\"* your|strong=\"H3605\"* feet|strong=\"H7272\"* on|strong=\"H5921\"* the|strong=\"H3605\"* necks|strong=\"H6677\"* of|strong=\"H4428\"* these|strong=\"H7121\"* kings|strong=\"H4428\"*.”" + }, + { + "verseNum": 25, + "text": "Joshua|strong=\"H3091\"* said to|strong=\"H3068\"* them|strong=\"H6213\"*, “Don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"*, nor|strong=\"H3372\"* be|strong=\"H3068\"* dismayed|strong=\"H2865\"*. Be|strong=\"H3068\"* strong|strong=\"H2388\"* and|strong=\"H3068\"* courageous|strong=\"H2388\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"* this|strong=\"H6213\"* to|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* enemies against|strong=\"H3898\"* whom|strong=\"H3588\"* you|strong=\"H3588\"* fight|strong=\"H3898\"*.”" + }, + { + "verseNum": 26, + "text": "Afterward Joshua|strong=\"H3091\"* struck|strong=\"H5221\"* them|strong=\"H5921\"*, put|strong=\"H4191\"* them|strong=\"H5921\"* to|strong=\"H5704\"* death|strong=\"H4191\"*, and|strong=\"H6086\"* hanged|strong=\"H8518\"* them|strong=\"H5921\"* on|strong=\"H5921\"* five|strong=\"H2568\"* trees|strong=\"H6086\"*. They|strong=\"H3651\"* were|strong=\"H1961\"* hanging|strong=\"H8518\"* on|strong=\"H5921\"* the|strong=\"H5921\"* trees|strong=\"H6086\"* until|strong=\"H5704\"* the|strong=\"H5921\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 27, + "text": "At|strong=\"H5921\"* the|strong=\"H5921\"* time|strong=\"H6256\"* of|strong=\"H3117\"* the|strong=\"H5921\"* going|strong=\"H3381\"* down|strong=\"H3381\"* of|strong=\"H3117\"* the|strong=\"H5921\"* sun|strong=\"H8121\"*, Joshua|strong=\"H3091\"* commanded|strong=\"H6680\"*, and|strong=\"H3117\"* they|strong=\"H3117\"* took|strong=\"H3381\"* them|strong=\"H5921\"* down|strong=\"H3381\"* off|strong=\"H5921\"* the|strong=\"H5921\"* trees|strong=\"H6086\"*, and|strong=\"H3117\"* threw|strong=\"H7993\"* them|strong=\"H5921\"* into|strong=\"H3381\"* the|strong=\"H5921\"* cave|strong=\"H4631\"* in|strong=\"H5921\"* which|strong=\"H8033\"* they|strong=\"H3117\"* had|strong=\"H1961\"* hidden|strong=\"H2244\"* themselves|strong=\"H2244\"*, and|strong=\"H3117\"* laid|strong=\"H7760\"* great|strong=\"H1419\"* stones on|strong=\"H5921\"* the|strong=\"H5921\"* mouth|strong=\"H6310\"* of|strong=\"H3117\"* the|strong=\"H5921\"* cave|strong=\"H4631\"*, which|strong=\"H8033\"* remain|strong=\"H1961\"* to|strong=\"H5704\"* this|strong=\"H2088\"* very|strong=\"H6106\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 28, + "text": "Joshua|strong=\"H3091\"* took|strong=\"H3920\"* Makkedah|strong=\"H4719\"* on|strong=\"H3117\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, and|strong=\"H4428\"* struck|strong=\"H5221\"* it|strong=\"H1931\"* with|strong=\"H6213\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, with|strong=\"H6213\"* its|strong=\"H3605\"* king|strong=\"H4428\"*. He|strong=\"H1931\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* it|strong=\"H1931\"* and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* who|strong=\"H3605\"* were|strong=\"H3117\"* in|strong=\"H6213\"* it|strong=\"H1931\"*. He|strong=\"H1931\"* left|strong=\"H7604\"* no|strong=\"H3808\"* one|strong=\"H3605\"* remaining|strong=\"H8300\"*. He|strong=\"H1931\"* did|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Makkedah|strong=\"H4719\"* as|strong=\"H3117\"* he|strong=\"H1931\"* had|strong=\"H4428\"* done|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 29, + "text": "Joshua|strong=\"H3091\"* passed|strong=\"H5674\"* from|strong=\"H3478\"* Makkedah|strong=\"H4719\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, to|strong=\"H3478\"* Libnah|strong=\"H3841\"*, and|strong=\"H3478\"* fought|strong=\"H3898\"* against|strong=\"H5973\"* Libnah|strong=\"H3841\"*." + }, + { + "verseNum": 30, + "text": "Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* it|strong=\"H5414\"* also|strong=\"H1571\"*, with|strong=\"H3068\"* its|strong=\"H3605\"* king|strong=\"H4428\"*, into|strong=\"H6213\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*. He|strong=\"H6213\"* struck|strong=\"H5221\"* it|strong=\"H5414\"* with|strong=\"H3068\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* who|strong=\"H3605\"* were|strong=\"H3478\"* in|strong=\"H3478\"* it|strong=\"H5414\"*. He|strong=\"H6213\"* left|strong=\"H7604\"* no|strong=\"H3808\"* one|strong=\"H3605\"* remaining|strong=\"H8300\"* in|strong=\"H3478\"* it|strong=\"H5414\"*. He|strong=\"H6213\"* did|strong=\"H6213\"* to|strong=\"H3478\"* its|strong=\"H3605\"* king|strong=\"H4428\"* as|strong=\"H6213\"* he|strong=\"H6213\"* had|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 31, + "text": "Joshua|strong=\"H3091\"* passed|strong=\"H5674\"* from|strong=\"H5921\"* Libnah|strong=\"H3841\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H5921\"*, to|strong=\"H3478\"* Lachish|strong=\"H3923\"*, and|strong=\"H3478\"* encamped|strong=\"H2583\"* against|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H3478\"* fought|strong=\"H3898\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 32, + "text": "Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* Lachish|strong=\"H3923\"* into|strong=\"H6213\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*. He|strong=\"H3117\"* took|strong=\"H3920\"* it|strong=\"H5414\"* on|strong=\"H3117\"* the|strong=\"H3605\"* second|strong=\"H8145\"* day|strong=\"H3117\"*, and|strong=\"H3478\"* struck|strong=\"H5221\"* it|strong=\"H5414\"* with|strong=\"H3068\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* who|strong=\"H3605\"* were|strong=\"H3478\"* in|strong=\"H3478\"* it|strong=\"H5414\"*, according|strong=\"H6310\"* to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* had|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3478\"* Libnah|strong=\"H3841\"*." + }, + { + "verseNum": 33, + "text": "Then|strong=\"H4428\"* Horam|strong=\"H2036\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Gezer|strong=\"H1507\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5704\"* help|strong=\"H5826\"* Lachish|strong=\"H3923\"*; and|strong=\"H4428\"* Joshua|strong=\"H3091\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* and|strong=\"H4428\"* his|strong=\"H5221\"* people|strong=\"H5971\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H4428\"* left|strong=\"H7604\"* him|strong=\"H5221\"* no|strong=\"H1115\"* one|strong=\"H4428\"* remaining|strong=\"H8300\"*." + }, + { + "verseNum": 34, + "text": "Joshua|strong=\"H3091\"* passed|strong=\"H5674\"* from|strong=\"H5921\"* Lachish|strong=\"H3923\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H5921\"*, to|strong=\"H3478\"* Eglon|strong=\"H5700\"*; and|strong=\"H3478\"* they|strong=\"H5921\"* encamped|strong=\"H2583\"* against|strong=\"H5921\"* it|strong=\"H5921\"* and|strong=\"H3478\"* fought|strong=\"H3898\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 35, + "text": "They|strong=\"H3117\"* took|strong=\"H3920\"* it|strong=\"H1931\"* on|strong=\"H3117\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* struck|strong=\"H5221\"* it|strong=\"H1931\"* with|strong=\"H6213\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H3117\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*. He|strong=\"H1931\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* who|strong=\"H3605\"* were|strong=\"H3117\"* in|strong=\"H6213\"* it|strong=\"H1931\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, according|strong=\"H6310\"* to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H1931\"* had|strong=\"H5315\"* done|strong=\"H6213\"* to|strong=\"H6213\"* Lachish|strong=\"H3923\"*." + }, + { + "verseNum": 36, + "text": "Joshua|strong=\"H3091\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* Eglon|strong=\"H5700\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H5921\"*, to|strong=\"H3478\"* Hebron|strong=\"H2275\"*; and|strong=\"H3478\"* they|strong=\"H5921\"* fought|strong=\"H3898\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 37, + "text": "They|strong=\"H3808\"* took|strong=\"H3920\"* it|strong=\"H6213\"*, and|strong=\"H4428\"* struck|strong=\"H5221\"* it|strong=\"H6213\"* with|strong=\"H6213\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, with|strong=\"H6213\"* its|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H4428\"* all|strong=\"H3605\"* its|strong=\"H3605\"* cities|strong=\"H5892\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* who|strong=\"H3605\"* were|strong=\"H5315\"* in|strong=\"H6213\"* it|strong=\"H6213\"*. He|strong=\"H6213\"* left|strong=\"H7604\"* no|strong=\"H3808\"* one|strong=\"H3605\"* remaining|strong=\"H8300\"*, according|strong=\"H6310\"* to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H6213\"* had|strong=\"H4428\"* done|strong=\"H6213\"* to|strong=\"H6213\"* Eglon|strong=\"H5700\"*; but|strong=\"H3808\"* he|strong=\"H6213\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* it|strong=\"H6213\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* who|strong=\"H3605\"* were|strong=\"H5315\"* in|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 38, + "text": "Joshua|strong=\"H3091\"* returned|strong=\"H7725\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H5921\"*, to|strong=\"H7725\"* Debir|strong=\"H1688\"*, and|strong=\"H3478\"* fought|strong=\"H3898\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 39, + "text": "He|strong=\"H3651\"* took|strong=\"H3920\"* it|strong=\"H6213\"*, with|strong=\"H6213\"* its|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H4428\"* all|strong=\"H3605\"* its|strong=\"H3605\"* cities|strong=\"H5892\"*. They|strong=\"H3651\"* struck|strong=\"H5221\"* them|strong=\"H5221\"* with|strong=\"H6213\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, and|strong=\"H4428\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* who|strong=\"H3605\"* were|strong=\"H5315\"* in|strong=\"H6213\"* it|strong=\"H6213\"*. He|strong=\"H3651\"* left|strong=\"H7604\"* no|strong=\"H3808\"* one|strong=\"H3605\"* remaining|strong=\"H8300\"*. As|strong=\"H6213\"* he|strong=\"H3651\"* had|strong=\"H4428\"* done|strong=\"H6213\"* to|strong=\"H6213\"* Hebron|strong=\"H2275\"*, so|strong=\"H3651\"* he|strong=\"H3651\"* did|strong=\"H6213\"* to|strong=\"H6213\"* Debir|strong=\"H1688\"*, and|strong=\"H4428\"* to|strong=\"H6213\"* its|strong=\"H3605\"* king|strong=\"H4428\"*; as|strong=\"H6213\"* he|strong=\"H3651\"* had|strong=\"H4428\"* done|strong=\"H6213\"* also|strong=\"H6213\"* to|strong=\"H6213\"* Libnah|strong=\"H3841\"*, and|strong=\"H4428\"* to|strong=\"H6213\"* its|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 40, + "text": "So|strong=\"H3808\"* Joshua|strong=\"H3091\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land, the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, the|strong=\"H3605\"* South|strong=\"H5045\"*, the|strong=\"H3605\"* lowland|strong=\"H8219\"*, the|strong=\"H3605\"* slopes, and|strong=\"H3478\"* all|strong=\"H3605\"* their|strong=\"H3605\"* kings|strong=\"H4428\"*. He|strong=\"H3068\"* left|strong=\"H7604\"* no|strong=\"H3808\"* one|strong=\"H3605\"* remaining|strong=\"H8300\"*, but|strong=\"H3808\"* he|strong=\"H3068\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* all|strong=\"H3605\"* that|strong=\"H3605\"* breathed|strong=\"H5397\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, commanded|strong=\"H6680\"*." + }, + { + "verseNum": 41, + "text": "Joshua|strong=\"H3091\"* struck|strong=\"H5221\"* them|strong=\"H5221\"* from|strong=\"H5704\"* Kadesh Barnea even|strong=\"H5704\"* to|strong=\"H5704\"* Gaza|strong=\"H5804\"*, and|strong=\"H3091\"* all|strong=\"H3605\"* the|strong=\"H3605\"* country of|strong=\"H3605\"* Goshen|strong=\"H1657\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* Gibeon|strong=\"H1391\"*." + }, + { + "verseNum": 42, + "text": "Joshua|strong=\"H3091\"* took|strong=\"H3920\"* all|strong=\"H3605\"* these|strong=\"H3605\"* kings|strong=\"H4428\"* and|strong=\"H3478\"* their|strong=\"H3605\"* land at|strong=\"H3478\"* one|strong=\"H3605\"* time|strong=\"H6471\"* because|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, fought|strong=\"H3898\"* for|strong=\"H3588\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 43, + "text": "Joshua|strong=\"H3091\"* returned|strong=\"H7725\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H7725\"*, to|strong=\"H7725\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* to|strong=\"H7725\"* Gilgal|strong=\"H1537\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* Jabin|strong=\"H2985\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Hazor|strong=\"H2674\"* heard|strong=\"H8085\"* of|strong=\"H4428\"* it|strong=\"H1961\"*, he|strong=\"H7971\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* Jobab|strong=\"H3103\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Madon|strong=\"H4068\"*, to|strong=\"H7971\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Shimron|strong=\"H8110\"*, to|strong=\"H7971\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Achshaph," + }, + { + "verseNum": 2, + "text": "and|strong=\"H4428\"* to|strong=\"H4428\"* the|strong=\"H2022\"* kings|strong=\"H4428\"* who|strong=\"H4428\"* were|strong=\"H2022\"* on|strong=\"H3220\"* the|strong=\"H2022\"* north|strong=\"H6828\"*, in|strong=\"H4428\"* the|strong=\"H2022\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, in|strong=\"H4428\"* the|strong=\"H2022\"* Arabah|strong=\"H6160\"* south|strong=\"H5045\"* of|strong=\"H4428\"* Chinneroth|strong=\"H3672\"*, in|strong=\"H4428\"* the|strong=\"H2022\"* lowland|strong=\"H8219\"*, and|strong=\"H4428\"* in|strong=\"H4428\"* the|strong=\"H2022\"* heights|strong=\"H5299\"* of|strong=\"H4428\"* Dor|strong=\"H1756\"* on|strong=\"H3220\"* the|strong=\"H2022\"* west|strong=\"H3220\"*," + }, + { + "verseNum": 3, + "text": "to|strong=\"H3220\"* the|strong=\"H8478\"* Canaanite|strong=\"H3669\"* on|strong=\"H8478\"* the|strong=\"H8478\"* east|strong=\"H4217\"* and|strong=\"H2022\"* on|strong=\"H8478\"* the|strong=\"H8478\"* west|strong=\"H3220\"*, the|strong=\"H8478\"* Amorite, the|strong=\"H8478\"* Hittite|strong=\"H2850\"*, the|strong=\"H8478\"* Perizzite|strong=\"H6522\"*, the|strong=\"H8478\"* Jebusite|strong=\"H2983\"* in|strong=\"H3220\"* the|strong=\"H8478\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, and|strong=\"H2022\"* the|strong=\"H8478\"* Hivite|strong=\"H2340\"* under|strong=\"H8478\"* Hermon|strong=\"H2768\"* in|strong=\"H3220\"* the|strong=\"H8478\"* land of|strong=\"H2022\"* Mizpah|strong=\"H4709\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H1992\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, they|strong=\"H1992\"* and|strong=\"H5971\"* all|strong=\"H3605\"* their|strong=\"H3605\"* armies|strong=\"H4264\"* with|strong=\"H5973\"* them|strong=\"H1992\"*, many|strong=\"H7227\"* people|strong=\"H5971\"*, even|strong=\"H5921\"* as|strong=\"H7230\"* the|strong=\"H3605\"* sand|strong=\"H2344\"* that|strong=\"H5971\"* is|strong=\"H3605\"* on|strong=\"H5921\"* the|strong=\"H3605\"* seashore|strong=\"H3220\"* in|strong=\"H5921\"* multitude|strong=\"H7230\"*, with|strong=\"H5973\"* very|strong=\"H3966\"* many|strong=\"H7227\"* horses|strong=\"H5483\"* and|strong=\"H5971\"* chariots|strong=\"H7393\"*." + }, + { + "verseNum": 5, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* kings|strong=\"H4428\"* met together|strong=\"H3162\"*; and|strong=\"H3478\"* they|strong=\"H3478\"* came|strong=\"H3478\"* and|strong=\"H3478\"* encamped|strong=\"H2583\"* together|strong=\"H3162\"* at|strong=\"H2583\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H4428\"* Merom|strong=\"H4792\"*, to|strong=\"H3478\"* fight|strong=\"H3898\"* with|strong=\"H5973\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* Joshua|strong=\"H3091\"*, “Don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"* because|strong=\"H3588\"* of|strong=\"H3068\"* them|strong=\"H5414\"*; for|strong=\"H3588\"* tomorrow|strong=\"H4279\"* at|strong=\"H3478\"* this|strong=\"H2063\"* time|strong=\"H6256\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* up|strong=\"H5414\"* all|strong=\"H3605\"* slain|strong=\"H2491\"* before|strong=\"H6440\"* Israel|strong=\"H3478\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* hamstring|strong=\"H6131\"* their|strong=\"H3605\"* horses|strong=\"H5483\"* and|strong=\"H3478\"* burn|strong=\"H8313\"* their|strong=\"H3605\"* chariots|strong=\"H4818\"* with|strong=\"H8313\"* fire.”" + }, + { + "verseNum": 7, + "text": "So|strong=\"H5921\"* Joshua|strong=\"H3091\"* came|strong=\"H5971\"* suddenly|strong=\"H6597\"*, with|strong=\"H5973\"* all|strong=\"H3605\"* the|strong=\"H3605\"* warriors|strong=\"H4421\"*, against|strong=\"H5921\"* them|strong=\"H5921\"* by|strong=\"H5921\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* Merom|strong=\"H4792\"*, and|strong=\"H5971\"* attacked|strong=\"H4421\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* they|strong=\"H3068\"* struck|strong=\"H5221\"* them|strong=\"H5414\"*, and|strong=\"H3478\"* chased|strong=\"H7291\"* them|strong=\"H5414\"* to|strong=\"H5704\"* great|strong=\"H7227\"* Sidon|strong=\"H6721\"*, and|strong=\"H3478\"* to|strong=\"H5704\"* Misrephoth|strong=\"H4956\"* Maim, and|strong=\"H3478\"* to|strong=\"H5704\"* the|strong=\"H5414\"* valley|strong=\"H1237\"* of|strong=\"H3068\"* Mizpah|strong=\"H4708\"* eastward|strong=\"H4217\"*. They|strong=\"H3068\"* struck|strong=\"H5221\"* them|strong=\"H5414\"* until|strong=\"H5704\"* they|strong=\"H3068\"* left|strong=\"H7604\"* them|strong=\"H5414\"* no|strong=\"H1115\"* one|strong=\"H7227\"* remaining|strong=\"H8300\"*." + }, + { + "verseNum": 9, + "text": "Joshua|strong=\"H3091\"* did|strong=\"H6213\"* to|strong=\"H3068\"* them|strong=\"H6213\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* told|strong=\"H6213\"* him|strong=\"H6213\"*. He|strong=\"H6213\"* hamstrung their|strong=\"H3068\"* horses|strong=\"H5483\"* and|strong=\"H3068\"* burned|strong=\"H8313\"* their|strong=\"H3068\"* chariots|strong=\"H4818\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 10, + "text": "Joshua|strong=\"H3091\"* turned|strong=\"H7725\"* back|strong=\"H7725\"* at|strong=\"H4428\"* that|strong=\"H3588\"* time|strong=\"H6256\"*, and|strong=\"H7725\"* took|strong=\"H3920\"* Hazor|strong=\"H2674\"*, and|strong=\"H7725\"* struck|strong=\"H5221\"* its|strong=\"H3605\"* king|strong=\"H4428\"* with|strong=\"H6440\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*; for|strong=\"H3588\"* Hazor|strong=\"H2674\"* used|strong=\"H3605\"* to|strong=\"H7725\"* be|strong=\"H4428\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H4428\"* all|strong=\"H3605\"* those|strong=\"H3605\"* kingdoms|strong=\"H4467\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3808\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* who|strong=\"H3605\"* were|strong=\"H5315\"* in|strong=\"H5315\"* it|strong=\"H5221\"* with|strong=\"H8313\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, utterly|strong=\"H2763\"* destroying|strong=\"H2763\"* them|strong=\"H5221\"*. There|strong=\"H3605\"* was|strong=\"H5315\"* no|strong=\"H3808\"* one|strong=\"H3605\"* left|strong=\"H3498\"* who|strong=\"H3605\"* breathed|strong=\"H5397\"*. He|strong=\"H3605\"* burned|strong=\"H8313\"* Hazor|strong=\"H2674\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 12, + "text": "Joshua|strong=\"H3091\"* captured|strong=\"H3920\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* those|strong=\"H3605\"* kings|strong=\"H4428\"*, with|strong=\"H3068\"* their|strong=\"H3605\"* kings|strong=\"H4428\"*, and|strong=\"H4872\"* he|strong=\"H3068\"* struck|strong=\"H5221\"* them|strong=\"H5221\"* with|strong=\"H3068\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, and|strong=\"H4872\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* them|strong=\"H5221\"*, as|strong=\"H3068\"* Moses|strong=\"H4872\"* the|strong=\"H3605\"* servant|strong=\"H5650\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"H7535\"* as|strong=\"H5892\"* for|strong=\"H5921\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* that|strong=\"H3605\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* their|strong=\"H3605\"* mounds|strong=\"H8510\"*, Israel|strong=\"H3478\"* burned|strong=\"H8313\"* none|strong=\"H3808\"* of|strong=\"H5892\"* them|strong=\"H5921\"*, except|strong=\"H2108\"* Hazor|strong=\"H2674\"* only|strong=\"H7535\"*. Joshua|strong=\"H3091\"* burned|strong=\"H8313\"* that|strong=\"H3605\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* took|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* plunder|strong=\"H7998\"* of|strong=\"H1121\"* these|strong=\"H1992\"* cities|strong=\"H5892\"*, with|strong=\"H5892\"* the|strong=\"H3605\"* livestock, as|strong=\"H5704\"* plunder|strong=\"H7998\"* for|strong=\"H5704\"* themselves|strong=\"H1992\"*; but|strong=\"H7535\"* every|strong=\"H3605\"* man|strong=\"H1121\"* they|strong=\"H1992\"* struck|strong=\"H5221\"* with|strong=\"H5892\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, until|strong=\"H5704\"* they|strong=\"H1992\"* had|strong=\"H3478\"* destroyed|strong=\"H8045\"* them|strong=\"H1992\"*. They|strong=\"H1992\"* didn’t leave|strong=\"H7604\"* any|strong=\"H3605\"* who|strong=\"H3605\"* breathed|strong=\"H5397\"*." + }, + { + "verseNum": 15, + "text": "As|strong=\"H1697\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"* his|strong=\"H3605\"* servant|strong=\"H5650\"*, so|strong=\"H3651\"* Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* Joshua|strong=\"H3091\"*. Joshua|strong=\"H3091\"* did|strong=\"H6213\"* so|strong=\"H3651\"*. He|strong=\"H3651\"* left|strong=\"H5493\"* nothing|strong=\"H3808\"* undone|strong=\"H5493\"* of|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 16, + "text": "So|strong=\"H3947\"* Joshua|strong=\"H3091\"* captured|strong=\"H3947\"* all|strong=\"H3605\"* that|strong=\"H3605\"* land, the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* South|strong=\"H5045\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H2022\"* Goshen|strong=\"H1657\"*, the|strong=\"H3605\"* lowland|strong=\"H8219\"*, the|strong=\"H3605\"* Arabah|strong=\"H6160\"*, the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* lowland|strong=\"H8219\"* of|strong=\"H2022\"* the|strong=\"H3605\"* same|strong=\"H2063\"*," + }, + { + "verseNum": 17, + "text": "from|strong=\"H4480\"* Mount|strong=\"H2022\"* Halak|strong=\"H2510\"*, that|strong=\"H3605\"* goes|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5704\"* Seir|strong=\"H8165\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* Baal Gad in|strong=\"H4428\"* the|strong=\"H3605\"* valley|strong=\"H1237\"* of|strong=\"H4428\"* Lebanon|strong=\"H3844\"* under|strong=\"H8478\"* Mount|strong=\"H2022\"* Hermon|strong=\"H2768\"*. He|strong=\"H5704\"* took|strong=\"H3920\"* all|strong=\"H3605\"* their|strong=\"H3605\"* kings|strong=\"H4428\"*, struck|strong=\"H5221\"* them|strong=\"H5221\"*, and|strong=\"H4428\"* put|strong=\"H4191\"* them|strong=\"H5221\"* to|strong=\"H5704\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 18, + "text": "Joshua|strong=\"H3091\"* made|strong=\"H6213\"* war|strong=\"H4421\"* a|strong=\"H3068\"* long|strong=\"H3117\"* time|strong=\"H3117\"* with|strong=\"H6213\"* all|strong=\"H3605\"* those|strong=\"H3605\"* kings|strong=\"H4428\"*." + }, + { + "verseNum": 19, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* not|strong=\"H3808\"* a|strong=\"H3068\"* city|strong=\"H5892\"* that|strong=\"H3605\"* made|strong=\"H7999\"* peace|strong=\"H7999\"* with|strong=\"H3427\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, except|strong=\"H1115\"* the|strong=\"H3605\"* Hivites|strong=\"H2340\"*, the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Gibeon|strong=\"H1391\"*. They|strong=\"H3808\"* took|strong=\"H3947\"* all|strong=\"H3605\"* in|strong=\"H3427\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3068\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* to|strong=\"H3478\"* harden|strong=\"H2388\"* their|strong=\"H3068\"* hearts|strong=\"H3820\"*, to|strong=\"H3478\"* come|strong=\"H1961\"* against|strong=\"H7125\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* battle|strong=\"H4421\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* might|strong=\"H3068\"* utterly|strong=\"H2763\"* destroy|strong=\"H8045\"* them|strong=\"H1992\"*, that|strong=\"H3588\"* they|strong=\"H1992\"* might|strong=\"H3068\"* have|strong=\"H1961\"* no|strong=\"H1115\"* favor|strong=\"H3068\"*, but|strong=\"H3588\"* that|strong=\"H3588\"* he|strong=\"H3588\"* might|strong=\"H3068\"* destroy|strong=\"H8045\"* them|strong=\"H1992\"*, as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 21, + "text": "Joshua|strong=\"H3091\"* came|strong=\"H3478\"* at|strong=\"H3478\"* that|strong=\"H3605\"* time|strong=\"H6256\"*, and|strong=\"H3063\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H3605\"* Anakim|strong=\"H6062\"* from|strong=\"H4480\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, from|strong=\"H4480\"* Hebron|strong=\"H2275\"*, from|strong=\"H4480\"* Debir|strong=\"H1688\"*, from|strong=\"H4480\"* Anab|strong=\"H6024\"*, and|strong=\"H3063\"* from|strong=\"H4480\"* all|strong=\"H3605\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* from|strong=\"H4480\"* all|strong=\"H3605\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H5892\"* Israel|strong=\"H3478\"*. Joshua|strong=\"H3091\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* them|strong=\"H2763\"* with|strong=\"H5973\"* their|strong=\"H3605\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 22, + "text": "There|strong=\"H3498\"* were|strong=\"H3478\"* none|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H3808\"* Anakim|strong=\"H6062\"* left|strong=\"H7604\"* in|strong=\"H3478\"* the|strong=\"H3808\"* land of|strong=\"H1121\"* the|strong=\"H3808\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Only|strong=\"H7535\"* in|strong=\"H3478\"* Gaza|strong=\"H5804\"*, in|strong=\"H3478\"* Gath|strong=\"H1661\"*, and|strong=\"H1121\"* in|strong=\"H3478\"* Ashdod, did|strong=\"H3478\"* some|strong=\"H3498\"* remain|strong=\"H7604\"*." + }, + { + "verseNum": 23, + "text": "So|strong=\"H3947\"* Joshua|strong=\"H3091\"* took|strong=\"H3947\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* land|strong=\"H5159\"*, according to|strong=\"H1696\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*; and|strong=\"H4872\"* Joshua|strong=\"H3091\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* for|strong=\"H3068\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"* to|strong=\"H1696\"* Israel|strong=\"H3478\"* according to|strong=\"H1696\"* their|strong=\"H3605\"* divisions|strong=\"H4256\"* by|strong=\"H3068\"* their|strong=\"H3605\"* tribes|strong=\"H7626\"*. Then|strong=\"H1696\"* the|strong=\"H3605\"* land|strong=\"H5159\"* had|strong=\"H3068\"* rest|strong=\"H8252\"* from|strong=\"H3478\"* war|strong=\"H4421\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* these|strong=\"H3605\"* are|strong=\"H1121\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land|strong=\"H5676\"*, whom the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* struck|strong=\"H5221\"*, and|strong=\"H1121\"* possessed|strong=\"H3423\"* their|strong=\"H3605\"* land|strong=\"H5676\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* toward|strong=\"H5704\"* the|strong=\"H3605\"* sunrise|strong=\"H4217\"*, from|strong=\"H3478\"* the|strong=\"H3605\"* valley|strong=\"H5158\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Arnon to|strong=\"H5704\"* Mount|strong=\"H2022\"* Hermon|strong=\"H2768\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"* eastward|strong=\"H4217\"*:" + }, + { + "verseNum": 2, + "text": "Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Amorites, who|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Heshbon|strong=\"H2809\"*, and|strong=\"H1121\"* ruled|strong=\"H4910\"* from|strong=\"H5921\"* Aroer|strong=\"H6177\"*, which|strong=\"H5158\"* is|strong=\"H4428\"* on|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* of|strong=\"H1121\"* the|strong=\"H5921\"* valley|strong=\"H5158\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Arnon, and|strong=\"H1121\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H5921\"* valley|strong=\"H5158\"*, and|strong=\"H1121\"* half|strong=\"H2677\"* Gilead|strong=\"H1568\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5921\"* river|strong=\"H5158\"* Jabbok|strong=\"H2999\"*, the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H1870\"* the|strong=\"H5704\"* Arabah|strong=\"H6160\"* to|strong=\"H5704\"* the|strong=\"H5704\"* sea|strong=\"H3220\"* of|strong=\"H1870\"* Chinneroth|strong=\"H3672\"*, eastward|strong=\"H4217\"*, and|strong=\"H1870\"* to|strong=\"H5704\"* the|strong=\"H5704\"* sea|strong=\"H3220\"* of|strong=\"H1870\"* the|strong=\"H5704\"* Arabah|strong=\"H6160\"*, even|strong=\"H5704\"* the|strong=\"H5704\"* Salt|strong=\"H4417\"* Sea|strong=\"H3220\"*, eastward|strong=\"H4217\"*, the|strong=\"H5704\"* way|strong=\"H1870\"* to|strong=\"H5704\"* Beth Jeshimoth; and|strong=\"H1870\"* on|strong=\"H1870\"* the|strong=\"H5704\"* south|strong=\"H8486\"*, under|strong=\"H8478\"* the|strong=\"H5704\"* slopes of|strong=\"H1870\"* Pisgah|strong=\"H6449\"*:" + }, + { + "verseNum": 4, + "text": "and|strong=\"H4428\"* the|strong=\"H3427\"* border|strong=\"H1366\"* of|strong=\"H4428\"* Og|strong=\"H5747\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"*, of|strong=\"H4428\"* the|strong=\"H3427\"* remnant|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3427\"* Rephaim|strong=\"H7497\"*, who|strong=\"H3427\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Ashtaroth|strong=\"H6252\"* and|strong=\"H4428\"* at|strong=\"H3427\"* Edrei," + }, + { + "verseNum": 5, + "text": "and|strong=\"H4428\"* ruled|strong=\"H4910\"* in|strong=\"H4428\"* Mount|strong=\"H2022\"* Hermon|strong=\"H2768\"*, and|strong=\"H4428\"* in|strong=\"H4428\"* Salecah|strong=\"H5548\"*, and|strong=\"H4428\"* in|strong=\"H4428\"* all|strong=\"H3605\"* Bashan|strong=\"H1316\"*, to|strong=\"H5704\"* the|strong=\"H3605\"* border|strong=\"H1366\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Geshurites|strong=\"H1651\"* and|strong=\"H4428\"* the|strong=\"H3605\"* Maacathites|strong=\"H4602\"*, and|strong=\"H4428\"* half|strong=\"H2677\"* Gilead|strong=\"H1568\"*, the|strong=\"H3605\"* border|strong=\"H1366\"* of|strong=\"H4428\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Heshbon|strong=\"H2809\"*." + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* the|strong=\"H5414\"* servant|strong=\"H5650\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* and|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* struck|strong=\"H5221\"* them|strong=\"H5414\"*. Moses|strong=\"H4872\"* the|strong=\"H5414\"* servant|strong=\"H5650\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* for|strong=\"H3068\"* a|strong=\"H3068\"* possession|strong=\"H3425\"* to|strong=\"H3478\"* the|strong=\"H5414\"* Reubenites|strong=\"H7206\"*, and|strong=\"H1121\"* the|strong=\"H5414\"* Gadites|strong=\"H1425\"*, and|strong=\"H1121\"* the|strong=\"H5414\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*." + }, + { + "verseNum": 7, + "text": "These|strong=\"H5221\"* are|strong=\"H1121\"* the|strong=\"H5414\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H5414\"* land|strong=\"H5676\"* whom Joshua|strong=\"H3091\"* and|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* struck|strong=\"H5221\"* beyond|strong=\"H5676\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"* westward|strong=\"H3220\"*, from|strong=\"H5927\"* Baal Gad in|strong=\"H3478\"* the|strong=\"H5414\"* valley|strong=\"H1237\"* of|strong=\"H1121\"* Lebanon|strong=\"H3844\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Mount|strong=\"H2022\"* Halak|strong=\"H2510\"*, that|strong=\"H3478\"* goes|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5704\"* Seir|strong=\"H8165\"*. Joshua|strong=\"H3091\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5704\"* the|strong=\"H5414\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* for|strong=\"H5704\"* a|strong=\"H3068\"* possession|strong=\"H3425\"* according to|strong=\"H5704\"* their|strong=\"H5414\"* divisions|strong=\"H4256\"*;" + }, + { + "verseNum": 8, + "text": "in|strong=\"H2022\"* the|strong=\"H2022\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, and|strong=\"H2022\"* in|strong=\"H2022\"* the|strong=\"H2022\"* lowland|strong=\"H8219\"*, and|strong=\"H2022\"* in|strong=\"H2022\"* the|strong=\"H2022\"* Arabah|strong=\"H6160\"*, and|strong=\"H2022\"* in|strong=\"H2022\"* the|strong=\"H2022\"* slopes, and|strong=\"H2022\"* in|strong=\"H2022\"* the|strong=\"H2022\"* wilderness|strong=\"H4057\"*, and|strong=\"H2022\"* in|strong=\"H2022\"* the|strong=\"H2022\"* South|strong=\"H5045\"*; the|strong=\"H2022\"* Hittite|strong=\"H2850\"*, the|strong=\"H2022\"* Amorite, and|strong=\"H2022\"* the|strong=\"H2022\"* Canaanite|strong=\"H3669\"*, the|strong=\"H2022\"* Perizzite|strong=\"H6522\"*, the|strong=\"H2022\"* Hivite|strong=\"H2340\"*, and|strong=\"H2022\"* the|strong=\"H2022\"* Jebusite|strong=\"H2983\"*:" + }, + { + "verseNum": 9, + "text": "the|strong=\"H1008\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Jericho|strong=\"H3405\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 10, + "text": "the|strong=\"H3389\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 11, + "text": "the|strong=\"H4428\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Jarmuth|strong=\"H3412\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 12, + "text": "the|strong=\"H5700\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Eglon|strong=\"H5700\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 13, + "text": "the|strong=\"H4428\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Debir|strong=\"H1688\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 14, + "text": "the|strong=\"H6166\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Hormah|strong=\"H2767\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 15, + "text": "the|strong=\"H5725\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Libnah|strong=\"H3841\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 16, + "text": "the|strong=\"H1008\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Makkedah|strong=\"H4719\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 17, + "text": "the|strong=\"H8599\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Tappuah|strong=\"H8599\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 18, + "text": "the|strong=\"H4428\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Aphek, one|strong=\"H4428\"*;" + }, + { + "verseNum": 19, + "text": "the|strong=\"H4428\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Madon|strong=\"H4068\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 20, + "text": "the|strong=\"H4428\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Shimron Meron, one|strong=\"H4428\"*;" + }, + { + "verseNum": 21, + "text": "the|strong=\"H4428\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Taanach|strong=\"H8590\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 22, + "text": "the|strong=\"H4428\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Kedesh|strong=\"H6943\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 23, + "text": "the|strong=\"H1471\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Dor|strong=\"H1756\"* in|strong=\"H4428\"* the|strong=\"H1471\"* height|strong=\"H5299\"* of|strong=\"H4428\"* Dor|strong=\"H1756\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 24, + "text": "the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Tirzah|strong=\"H8656\"*, one|strong=\"H3605\"*:" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3117\"* Joshua|strong=\"H3091\"* was|strong=\"H3068\"* old|strong=\"H2204\"* and|strong=\"H3068\"* well|strong=\"H3966\"* advanced in|strong=\"H3068\"* years|strong=\"H3117\"*. Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H7604\"*, “You|strong=\"H3117\"* are|strong=\"H3117\"* old|strong=\"H2204\"* and|strong=\"H3068\"* advanced in|strong=\"H3068\"* years|strong=\"H3117\"*, and|strong=\"H3068\"* there|strong=\"H3117\"* remains|strong=\"H7604\"* yet|strong=\"H3068\"* very|strong=\"H3966\"* much|strong=\"H7235\"* land to|strong=\"H3068\"* be|strong=\"H3068\"* possessed|strong=\"H3423\"*." + }, + { + "verseNum": 2, + "text": "“This|strong=\"H2063\"* is|strong=\"H3605\"* the|strong=\"H3605\"* land that|strong=\"H3605\"* still remains|strong=\"H7604\"*: all|strong=\"H3605\"* the|strong=\"H3605\"* regions|strong=\"H1552\"* of|strong=\"H3605\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, and|strong=\"H6430\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Geshurites|strong=\"H1651\"*;" + }, + { + "verseNum": 3, + "text": "from|strong=\"H4480\"* the|strong=\"H6440\"* Shihor|strong=\"H7883\"*, which|strong=\"H1366\"* is|strong=\"H6440\"* before|strong=\"H6440\"* Egypt|strong=\"H4714\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H6440\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Ekron|strong=\"H6138\"* northward|strong=\"H6828\"*, which|strong=\"H1366\"* is|strong=\"H6440\"* counted|strong=\"H2803\"* as|strong=\"H5704\"* Canaanite|strong=\"H3669\"*; the|strong=\"H6440\"* five|strong=\"H2568\"* lords|strong=\"H5633\"* of|strong=\"H1366\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*; the|strong=\"H6440\"* Gazites|strong=\"H5841\"*, and|strong=\"H4714\"* the|strong=\"H6440\"* Ashdodites, the|strong=\"H6440\"* Ashkelonites, the|strong=\"H6440\"* Gittites|strong=\"H1663\"*, and|strong=\"H4714\"* the|strong=\"H6440\"* Ekronites|strong=\"H6139\"*; also|strong=\"H6430\"* the|strong=\"H6440\"* Avvim," + }, + { + "verseNum": 4, + "text": "on|strong=\"H3605\"* the|strong=\"H3605\"* south|strong=\"H8486\"*; all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H3605\"* Canaanites|strong=\"H3669\"*, and|strong=\"H3605\"* Mearah|strong=\"H4632\"* that|strong=\"H3605\"* belongs to|strong=\"H5704\"* the|strong=\"H3605\"* Sidonians|strong=\"H6722\"*, to|strong=\"H5704\"* Aphek, to|strong=\"H5704\"* the|strong=\"H3605\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H3605\"* Amorites;" + }, + { + "verseNum": 5, + "text": "and|strong=\"H2022\"* the|strong=\"H3605\"* land of|strong=\"H2022\"* the|strong=\"H3605\"* Gebalites|strong=\"H1382\"*, and|strong=\"H2022\"* all|strong=\"H3605\"* Lebanon|strong=\"H3844\"*, toward|strong=\"H5704\"* the|strong=\"H3605\"* sunrise|strong=\"H4217\"*, from|strong=\"H5704\"* Baal Gad under|strong=\"H8478\"* Mount|strong=\"H2022\"* Hermon|strong=\"H2768\"* to|strong=\"H5704\"* the|strong=\"H3605\"* entrance of|strong=\"H2022\"* Hamath|strong=\"H2574\"*;" + }, + { + "verseNum": 6, + "text": "all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* from|strong=\"H4480\"* Lebanon|strong=\"H3844\"* to|strong=\"H5704\"* Misrephoth|strong=\"H4956\"* Maim, even|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Sidonians|strong=\"H6722\"*. I|strong=\"H5704\"* will|strong=\"H3478\"* drive|strong=\"H3423\"* them|strong=\"H6440\"* out|strong=\"H3423\"* from|strong=\"H4480\"* before|strong=\"H6440\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Just|strong=\"H3605\"* allocate it|strong=\"H6440\"* to|strong=\"H5704\"* Israel|strong=\"H3478\"* for|strong=\"H5704\"* an|strong=\"H4480\"* inheritance|strong=\"H5159\"*, as|strong=\"H5704\"* I|strong=\"H5704\"* have|strong=\"H1121\"* commanded|strong=\"H6680\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* divide|strong=\"H2505\"* this|strong=\"H2063\"* land|strong=\"H5159\"* for|strong=\"H8672\"* an|strong=\"H2677\"* inheritance|strong=\"H5159\"* to|strong=\"H5159\"* the|strong=\"H6258\"* nine|strong=\"H8672\"* tribes|strong=\"H7626\"* and|strong=\"H4519\"* the|strong=\"H6258\"* half-tribe|strong=\"H2677\"* of|strong=\"H7626\"* Manasseh|strong=\"H4519\"*.”" + }, + { + "verseNum": 8, + "text": "With|strong=\"H5973\"* him|strong=\"H5414\"* the|strong=\"H5414\"* Reubenites|strong=\"H7206\"* and|strong=\"H4872\"* the|strong=\"H5414\"* Gadites|strong=\"H1425\"* received|strong=\"H3947\"* their|strong=\"H3068\"* inheritance|strong=\"H5159\"*, which|strong=\"H3068\"* Moses|strong=\"H4872\"* gave|strong=\"H5414\"* them|strong=\"H5414\"*, beyond|strong=\"H5676\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"* eastward|strong=\"H4217\"*, even|strong=\"H3068\"* as|strong=\"H3068\"* Moses|strong=\"H4872\"* the|strong=\"H5414\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* them|strong=\"H5414\"*:" + }, + { + "verseNum": 9, + "text": "from|strong=\"H5921\"* Aroer|strong=\"H6177\"*, that|strong=\"H3605\"* is|strong=\"H3605\"* on|strong=\"H5921\"* the|strong=\"H3605\"* edge|strong=\"H8193\"* of|strong=\"H5892\"* the|strong=\"H3605\"* valley|strong=\"H5158\"* of|strong=\"H5892\"* the|strong=\"H3605\"* Arnon, and|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H5921\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H5892\"* the|strong=\"H3605\"* valley|strong=\"H5158\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* plain|strong=\"H4334\"* of|strong=\"H5892\"* Medeba|strong=\"H4311\"* to|strong=\"H5704\"* Dibon|strong=\"H1769\"*;" + }, + { + "verseNum": 10, + "text": "and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Amorites, who|strong=\"H3605\"* reigned|strong=\"H4427\"* in|strong=\"H4428\"* Heshbon|strong=\"H2809\"*, to|strong=\"H5704\"* the|strong=\"H3605\"* border|strong=\"H1366\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*;" + }, + { + "verseNum": 11, + "text": "and|strong=\"H2022\"* Gilead|strong=\"H1568\"*, and|strong=\"H2022\"* the|strong=\"H3605\"* border|strong=\"H1366\"* of|strong=\"H2022\"* the|strong=\"H3605\"* Geshurites|strong=\"H1651\"* and|strong=\"H2022\"* Maacathites|strong=\"H4602\"*, and|strong=\"H2022\"* all|strong=\"H3605\"* Mount|strong=\"H2022\"* Hermon|strong=\"H2768\"*, and|strong=\"H2022\"* all|strong=\"H3605\"* Bashan|strong=\"H1316\"* to|strong=\"H5704\"* Salecah|strong=\"H5548\"*;" + }, + { + "verseNum": 12, + "text": "all|strong=\"H3605\"* the|strong=\"H3605\"* kingdom|strong=\"H4468\"* of|strong=\"H3605\"* Og|strong=\"H5747\"* in|strong=\"H4427\"* Bashan|strong=\"H1316\"*, who|strong=\"H3605\"* reigned|strong=\"H4427\"* in|strong=\"H4427\"* Ashtaroth|strong=\"H6252\"* and|strong=\"H4872\"* in|strong=\"H4427\"* Edrei (who|strong=\"H3605\"* was|strong=\"H1931\"* left|strong=\"H7604\"* of|strong=\"H3605\"* the|strong=\"H3605\"* remnant|strong=\"H3499\"* of|strong=\"H3605\"* the|strong=\"H3605\"* Rephaim|strong=\"H7497\"*); for|strong=\"H3605\"* Moses|strong=\"H4872\"* attacked|strong=\"H5221\"* these|strong=\"H1931\"*, and|strong=\"H4872\"* drove|strong=\"H3423\"* them|strong=\"H5221\"* out|strong=\"H3423\"*." + }, + { + "verseNum": 13, + "text": "Nevertheless the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* didn’t drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3117\"* Geshurites|strong=\"H1651\"*, nor|strong=\"H3808\"* the|strong=\"H3117\"* Maacathites|strong=\"H4602\"*: but|strong=\"H3808\"* Geshur|strong=\"H1650\"* and|strong=\"H1121\"* Maacath|strong=\"H4601\"* live|strong=\"H3427\"* within|strong=\"H7130\"* Israel|strong=\"H3478\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 14, + "text": "Only|strong=\"H7535\"* he|strong=\"H1931\"* gave|strong=\"H5414\"* no|strong=\"H3808\"* inheritance|strong=\"H5159\"* to|strong=\"H1696\"* the|strong=\"H5414\"* tribe|strong=\"H7626\"* of|strong=\"H3068\"* Levi|strong=\"H3878\"*. The|strong=\"H5414\"* offerings|strong=\"H3478\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, made|strong=\"H5414\"* by|strong=\"H3068\"* fire are|strong=\"H3478\"* his|strong=\"H5414\"* inheritance|strong=\"H5159\"*, as|strong=\"H3068\"* he|strong=\"H1931\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 15, + "text": "Moses|strong=\"H4872\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* according to|strong=\"H5414\"* their|strong=\"H5414\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 16, + "text": "Their|strong=\"H3605\"* border|strong=\"H1366\"* was|strong=\"H1961\"* from|strong=\"H5921\"* Aroer|strong=\"H6177\"*, that|strong=\"H3605\"* is|strong=\"H3605\"* on|strong=\"H5921\"* the|strong=\"H3605\"* edge|strong=\"H8193\"* of|strong=\"H5892\"* the|strong=\"H3605\"* valley|strong=\"H5158\"* of|strong=\"H5892\"* the|strong=\"H3605\"* Arnon, and|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H5921\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H5892\"* the|strong=\"H3605\"* valley|strong=\"H5158\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* plain|strong=\"H4334\"* by|strong=\"H5921\"* Medeba|strong=\"H4311\"*;" + }, + { + "verseNum": 17, + "text": "Heshbon|strong=\"H2809\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* its|strong=\"H3605\"* cities|strong=\"H5892\"* that|strong=\"H3605\"* are|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H3605\"* plain|strong=\"H4334\"*; Dibon|strong=\"H1769\"*, Bamoth|strong=\"H1120\"* Baal|strong=\"H1120\"*, Beth Baal|strong=\"H1120\"* Meon," + }, + { + "verseNum": 18, + "text": "Jahaz|strong=\"H3096\"*, Kedemoth|strong=\"H6932\"*, Mephaath|strong=\"H4158\"*," + }, + { + "verseNum": 19, + "text": "Kiriathaim|strong=\"H7156\"*, Sibmah|strong=\"H7643\"*, Zereth Shahar in|strong=\"H2022\"* the|strong=\"H2022\"* mount|strong=\"H2022\"* of|strong=\"H2022\"* the|strong=\"H2022\"* valley|strong=\"H6010\"*," + }, + { + "verseNum": 20, + "text": "Beth Peor, the slopes of Pisgah|strong=\"H6449\"*, Beth Jeshimoth," + }, + { + "verseNum": 21, + "text": "all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* the|strong=\"H3605\"* plain|strong=\"H4334\"*, and|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdom|strong=\"H4468\"* of|strong=\"H4428\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Amorites, who|strong=\"H3605\"* reigned|strong=\"H4427\"* in|strong=\"H3427\"* Heshbon|strong=\"H2809\"*, whom Moses|strong=\"H4872\"* struck|strong=\"H5221\"* with|strong=\"H3427\"* the|strong=\"H3605\"* chiefs|strong=\"H5387\"* of|strong=\"H4428\"* Midian|strong=\"H4080\"*, Evi, Rekem|strong=\"H7552\"*, Zur|strong=\"H6698\"*, Hur|strong=\"H2354\"*, and|strong=\"H4872\"* Reba|strong=\"H7254\"*, the|strong=\"H3605\"* princes|strong=\"H5387\"* of|strong=\"H4428\"* Sihon|strong=\"H5511\"*, who|strong=\"H3605\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 22, + "text": "The|strong=\"H2026\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* also|strong=\"H3478\"* killed|strong=\"H2026\"* Balaam|strong=\"H1109\"* the|strong=\"H2026\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Beor|strong=\"H1160\"*, the|strong=\"H2026\"* soothsayer|strong=\"H7080\"*, with|strong=\"H3478\"* the|strong=\"H2026\"* sword|strong=\"H2719\"*, among|strong=\"H2719\"* the|strong=\"H2026\"* rest of|strong=\"H1121\"* their|strong=\"H2026\"* slain|strong=\"H2491\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H1961\"* border|strong=\"H1366\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* was|strong=\"H1961\"* the|strong=\"H1961\"* bank of|strong=\"H1121\"* the|strong=\"H1961\"* Jordan|strong=\"H3383\"*. This|strong=\"H2063\"* was|strong=\"H1961\"* the|strong=\"H1961\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* according to|strong=\"H1961\"* their|strong=\"H1961\"* families|strong=\"H4940\"*, the|strong=\"H1961\"* cities|strong=\"H5892\"* and|strong=\"H1121\"* its|strong=\"H1961\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 24, + "text": "Moses|strong=\"H4872\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, to|strong=\"H5414\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, according to|strong=\"H5414\"* their|strong=\"H5414\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 25, + "text": "Their|strong=\"H3605\"* border|strong=\"H1366\"* was|strong=\"H1961\"* Jazer|strong=\"H3270\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, and|strong=\"H1121\"* half|strong=\"H2677\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, to|strong=\"H5704\"* Aroer|strong=\"H6177\"* that|strong=\"H3605\"* is|strong=\"H3605\"* near|strong=\"H6440\"* Rabbah|strong=\"H7237\"*;" + }, + { + "verseNum": 26, + "text": "and|strong=\"H2809\"* from|strong=\"H5704\"* Heshbon|strong=\"H2809\"* to|strong=\"H5704\"* Ramath Mizpeh, and|strong=\"H2809\"* Betonim; and|strong=\"H2809\"* from|strong=\"H5704\"* Mahanaim|strong=\"H4266\"* to|strong=\"H5704\"* the|strong=\"H5704\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Debir|strong=\"H1688\"*;" + }, + { + "verseNum": 27, + "text": "and|strong=\"H4428\"* in|strong=\"H4428\"* the|strong=\"H5704\"* valley|strong=\"H6010\"*, Beth Haram, Beth Nimrah, Succoth|strong=\"H5523\"*, and|strong=\"H4428\"* Zaphon|strong=\"H6829\"*, the|strong=\"H5704\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5704\"* kingdom|strong=\"H4468\"* of|strong=\"H4428\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Heshbon|strong=\"H2809\"*, the|strong=\"H5704\"* Jordan|strong=\"H3383\"*’s bank, to|strong=\"H5704\"* the|strong=\"H5704\"* uttermost|strong=\"H7097\"* part|strong=\"H7097\"* of|strong=\"H4428\"* the|strong=\"H5704\"* sea|strong=\"H3220\"* of|strong=\"H4428\"* Chinnereth|strong=\"H3672\"* beyond|strong=\"H5676\"* the|strong=\"H5704\"* Jordan|strong=\"H3383\"* eastward|strong=\"H4217\"*." + }, + { + "verseNum": 28, + "text": "This|strong=\"H2063\"* is|strong=\"H5892\"* the|strong=\"H1121\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* according to|strong=\"H1121\"* their families|strong=\"H4940\"*, the|strong=\"H1121\"* cities|strong=\"H5892\"* and|strong=\"H1121\"* its|strong=\"H5892\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 29, + "text": "Moses|strong=\"H4872\"* gave|strong=\"H5414\"* an|strong=\"H1961\"* inheritance to|strong=\"H1961\"* the|strong=\"H5414\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*. It|strong=\"H5414\"* was|strong=\"H1961\"* for|strong=\"H1121\"* the|strong=\"H5414\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* according to|strong=\"H1961\"* their|strong=\"H5414\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 30, + "text": "Their|strong=\"H3605\"* border|strong=\"H1366\"* was|strong=\"H1961\"* from|strong=\"H1961\"* Mahanaim|strong=\"H4266\"*, all|strong=\"H3605\"* Bashan|strong=\"H1316\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* kingdom|strong=\"H4468\"* of|strong=\"H4428\"* Og|strong=\"H5747\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* villages of|strong=\"H4428\"* Jair|strong=\"H2971\"*, which|strong=\"H5892\"* are|strong=\"H5892\"* in|strong=\"H4428\"* Bashan|strong=\"H1316\"*, sixty|strong=\"H8346\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 31, + "text": "Half|strong=\"H2677\"* Gilead|strong=\"H1568\"*, Ashtaroth|strong=\"H6252\"*, and|strong=\"H1121\"* Edrei, the|strong=\"H2677\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H2677\"* kingdom|strong=\"H4468\"* of|strong=\"H1121\"* Og|strong=\"H5747\"* in|strong=\"H5892\"* Bashan|strong=\"H1316\"*, were|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H2677\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"* the|strong=\"H2677\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, even|strong=\"H4519\"* for|strong=\"H1121\"* the|strong=\"H2677\"* half|strong=\"H2677\"* of|strong=\"H1121\"* the|strong=\"H2677\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"* according to|strong=\"H1121\"* their families|strong=\"H4940\"*." + }, + { + "verseNum": 32, + "text": "These are the|strong=\"H4872\"* inheritances which Moses|strong=\"H4872\"* distributed|strong=\"H5157\"* in|strong=\"H4872\"* the|strong=\"H4872\"* plains|strong=\"H6160\"* of|strong=\"H6160\"* Moab|strong=\"H4124\"*, beyond|strong=\"H5676\"* the|strong=\"H4872\"* Jordan|strong=\"H3383\"* at|strong=\"H3383\"* Jericho|strong=\"H3405\"*, eastward|strong=\"H4217\"*." + }, + { + "verseNum": 33, + "text": "But|strong=\"H3808\"* Moses|strong=\"H4872\"* gave|strong=\"H5414\"* no|strong=\"H3808\"* inheritance|strong=\"H5159\"* to|strong=\"H1696\"* the|strong=\"H5414\"* tribe|strong=\"H7626\"* of|strong=\"H3068\"* Levi|strong=\"H3878\"*. Yahweh|strong=\"H3068\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, is|strong=\"H3068\"* their|strong=\"H3068\"* inheritance|strong=\"H5159\"*, as|strong=\"H3068\"* he|strong=\"H1931\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5414\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "These are|strong=\"H1121\"* the|strong=\"H3091\"* inheritances which|strong=\"H3478\"* the|strong=\"H3091\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* took|strong=\"H3548\"* in|strong=\"H3478\"* the|strong=\"H3091\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, which|strong=\"H3478\"* Eleazar the|strong=\"H3091\"* priest|strong=\"H3548\"*, Joshua|strong=\"H3091\"* the|strong=\"H3091\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, and|strong=\"H1121\"* the|strong=\"H3091\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3091\"* fathers’ houses of|strong=\"H1121\"* the|strong=\"H3091\"* tribes|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H3091\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, distributed|strong=\"H5157\"* to|strong=\"H3478\"* them|strong=\"H1121\"*," + }, + { + "verseNum": 2, + "text": "by|strong=\"H3027\"* the|strong=\"H3068\"* lot|strong=\"H1486\"* of|strong=\"H3068\"* their|strong=\"H3068\"* inheritance|strong=\"H5159\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*, for|strong=\"H3027\"* the|strong=\"H3068\"* nine|strong=\"H8672\"* tribes|strong=\"H4294\"*, and|strong=\"H4872\"* for|strong=\"H3027\"* the|strong=\"H3068\"* half-tribe|strong=\"H2677\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* Moses|strong=\"H4872\"* had|strong=\"H4872\"* given|strong=\"H5414\"* the|strong=\"H3588\"* inheritance|strong=\"H5159\"* of|strong=\"H4294\"* the|strong=\"H3588\"* two|strong=\"H8147\"* tribes|strong=\"H4294\"* and|strong=\"H4872\"* the|strong=\"H3588\"* half-tribe|strong=\"H2677\"* beyond|strong=\"H5676\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"*; but|strong=\"H3588\"* to|strong=\"H5414\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"* he|strong=\"H3588\"* gave|strong=\"H5414\"* no|strong=\"H3808\"* inheritance|strong=\"H5159\"* among|strong=\"H8432\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* were|strong=\"H1961\"* two|strong=\"H8147\"* tribes|strong=\"H4294\"*, Manasseh|strong=\"H4519\"* and|strong=\"H1121\"* Ephraim. They|strong=\"H3588\"* gave|strong=\"H5414\"* no|strong=\"H3808\"* portion|strong=\"H2506\"* to|strong=\"H1961\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"* in|strong=\"H3427\"* the|strong=\"H3588\"* land|strong=\"H2506\"*, except|strong=\"H3588\"* cities|strong=\"H5892\"* to|strong=\"H1961\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"*, with|strong=\"H3427\"* their|strong=\"H5414\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* for|strong=\"H3588\"* their|strong=\"H5414\"* livestock|strong=\"H4735\"* and|strong=\"H1121\"* for|strong=\"H3588\"* their|strong=\"H5414\"* property|strong=\"H7075\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*, and|strong=\"H1121\"* they|strong=\"H3651\"* divided|strong=\"H2505\"* the|strong=\"H6213\"* land." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H1696\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H1696\"* Joshua|strong=\"H3091\"* in|strong=\"H5921\"* Gilgal|strong=\"H1537\"*. Caleb|strong=\"H3612\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"* the|strong=\"H5921\"* Kenizzite|strong=\"H7074\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*, “You|strong=\"H5921\"* know|strong=\"H3045\"* the|strong=\"H5921\"* thing|strong=\"H1697\"* that|strong=\"H3045\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* the|strong=\"H5921\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God|strong=\"H3068\"* concerning|strong=\"H5921\"* me|strong=\"H5921\"* and|strong=\"H1121\"* concerning|strong=\"H5921\"* you|strong=\"H5921\"* in|strong=\"H5921\"* Kadesh Barnea." + }, + { + "verseNum": 7, + "text": "I|strong=\"H1697\"* was|strong=\"H3068\"* forty years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H7725\"* Moses|strong=\"H4872\"* the|strong=\"H3068\"* servant|strong=\"H5650\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* from|strong=\"H7725\"* Kadesh Barnea to|strong=\"H7725\"* spy|strong=\"H7270\"* out|strong=\"H7971\"* the|strong=\"H3068\"* land. I|strong=\"H1697\"* brought|strong=\"H7725\"* him|strong=\"H7971\"* word|strong=\"H1697\"* again|strong=\"H7725\"* as|strong=\"H1697\"* it|strong=\"H7725\"* was|strong=\"H3068\"* in|strong=\"H8141\"* my|strong=\"H3068\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 8, + "text": "Nevertheless, my|strong=\"H3068\"* brothers who|strong=\"H5971\"* went|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* me|strong=\"H5973\"* made|strong=\"H3068\"* the|strong=\"H3068\"* heart|strong=\"H3820\"* of|strong=\"H3068\"* the|strong=\"H3068\"* people|strong=\"H5971\"* melt|strong=\"H4529\"*; but|strong=\"H5971\"* I|strong=\"H3068\"* wholly|strong=\"H4390\"* followed|strong=\"H5927\"* Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* swore|strong=\"H7650\"* on|strong=\"H3117\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, saying, ‘Surely|strong=\"H3588\"* the|strong=\"H3588\"* land|strong=\"H5159\"* where|strong=\"H3808\"* you|strong=\"H3588\"* walked|strong=\"H1869\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* an|strong=\"H1961\"* inheritance|strong=\"H5159\"* to|strong=\"H5704\"* you|strong=\"H3588\"* and|strong=\"H1121\"* to|strong=\"H5704\"* your|strong=\"H3068\"* children|strong=\"H1121\"* forever|strong=\"H5769\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* wholly|strong=\"H4390\"* followed|strong=\"H7272\"* Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*.’" + }, + { + "verseNum": 10, + "text": "“Now|strong=\"H6258\"*, behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* kept|strong=\"H2421\"* me|strong=\"H1696\"* alive|strong=\"H2421\"*, as|strong=\"H1697\"* he|strong=\"H3117\"* spoke|strong=\"H1696\"*, these|strong=\"H2088\"* forty-five years|strong=\"H8141\"*, from|strong=\"H3478\"* the|strong=\"H3068\"* time|strong=\"H3117\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* this|strong=\"H2088\"* word|strong=\"H1697\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, while|strong=\"H3117\"* Israel|strong=\"H3478\"* walked|strong=\"H1980\"* in|strong=\"H8141\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"*. Now|strong=\"H6258\"*, behold|strong=\"H2009\"*, I|strong=\"H3117\"* am|strong=\"H3068\"* eighty-five|strong=\"H8084\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, today|strong=\"H3117\"*." + }, + { + "verseNum": 11, + "text": "As|strong=\"H3117\"* yet|strong=\"H5750\"* I|strong=\"H3117\"* am as|strong=\"H3117\"* strong|strong=\"H2389\"* today|strong=\"H3117\"* as|strong=\"H3117\"* I|strong=\"H3117\"* was|strong=\"H3117\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Moses|strong=\"H4872\"* sent|strong=\"H7971\"* me|strong=\"H7971\"*. As|strong=\"H3117\"* my|strong=\"H7971\"* strength|strong=\"H3581\"* was|strong=\"H3117\"* then|strong=\"H3318\"*, even|strong=\"H5750\"* so|strong=\"H7971\"* is|strong=\"H3117\"* my|strong=\"H7971\"* strength|strong=\"H3581\"* now|strong=\"H6258\"* for|strong=\"H7971\"* war|strong=\"H4421\"*, to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H4872\"* to|strong=\"H3318\"* come|strong=\"H3318\"* in|strong=\"H3117\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* give|strong=\"H5414\"* me|strong=\"H5414\"* this|strong=\"H2088\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, of|strong=\"H3068\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* in|strong=\"H3068\"* that|strong=\"H3588\"* day|strong=\"H3117\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* heard|strong=\"H8085\"* in|strong=\"H3068\"* that|strong=\"H3588\"* day|strong=\"H3117\"* how|strong=\"H3588\"* the|strong=\"H8085\"* Anakim|strong=\"H6062\"* were|strong=\"H3117\"* there|strong=\"H8033\"*, and|strong=\"H3068\"* great|strong=\"H1419\"* and|strong=\"H3068\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"*. It|strong=\"H5414\"* may|strong=\"H3068\"* be|strong=\"H3068\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* with|strong=\"H3068\"* me|strong=\"H5414\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* shall|strong=\"H3068\"* drive|strong=\"H3423\"* them|strong=\"H5414\"* out|strong=\"H3423\"*, as|strong=\"H3117\"* Yahweh|strong=\"H3068\"* said|strong=\"H1696\"*.”" + }, + { + "verseNum": 13, + "text": "Joshua|strong=\"H3091\"* blessed|strong=\"H1288\"* him|strong=\"H5414\"*; and|strong=\"H1121\"* he|strong=\"H5414\"* gave|strong=\"H5414\"* Hebron|strong=\"H2275\"* to|strong=\"H5414\"* Caleb|strong=\"H3612\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"* for|strong=\"H1121\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H3651\"* Hebron|strong=\"H2275\"* became|strong=\"H1961\"* the|strong=\"H5921\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* Caleb|strong=\"H3612\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"* the|strong=\"H5921\"* Kenizzite|strong=\"H7074\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, because|strong=\"H5921\"* he|strong=\"H3117\"* followed|strong=\"H1961\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* wholeheartedly|strong=\"H4390\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H1419\"* the|strong=\"H6440\"* name|strong=\"H8034\"* of|strong=\"H6440\"* Hebron|strong=\"H2275\"* before|strong=\"H6440\"* was|strong=\"H8034\"* Kiriath Arba, after|strong=\"H8034\"* the|strong=\"H6440\"* greatest|strong=\"H1419\"* man|strong=\"H1419\"* among|strong=\"H8034\"* the|strong=\"H6440\"* Anakim|strong=\"H6062\"*. Then the|strong=\"H6440\"* land|strong=\"H6440\"* had|strong=\"H8252\"* rest|strong=\"H8252\"* from|strong=\"H6440\"* war|strong=\"H4421\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H1961\"* lot|strong=\"H1486\"* for|strong=\"H1121\"* the|strong=\"H1961\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* according to|strong=\"H1961\"* their|strong=\"H1961\"* families|strong=\"H4940\"* was|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H1961\"* border|strong=\"H1366\"* of|strong=\"H1121\"* Edom, even to|strong=\"H1961\"* the|strong=\"H1961\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Zin|strong=\"H6790\"* southward|strong=\"H5045\"*, at|strong=\"H1961\"* the|strong=\"H1961\"* uttermost|strong=\"H7097\"* part|strong=\"H7097\"* of|strong=\"H1121\"* the|strong=\"H1961\"* south|strong=\"H5045\"*." + }, + { + "verseNum": 2, + "text": "Their|strong=\"H1992\"* south|strong=\"H5045\"* border|strong=\"H1366\"* was|strong=\"H1961\"* from|strong=\"H4480\"* the|strong=\"H4480\"* uttermost|strong=\"H7097\"* part|strong=\"H7097\"* of|strong=\"H1366\"* the|strong=\"H4480\"* Salt|strong=\"H4417\"* Sea|strong=\"H3220\"*, from|strong=\"H4480\"* the|strong=\"H4480\"* bay|strong=\"H3956\"* that|strong=\"H4480\"* looks southward|strong=\"H5045\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H5927\"* it|strong=\"H5927\"* went|strong=\"H3318\"* out|strong=\"H3318\"* southward|strong=\"H5045\"* of|strong=\"H3318\"* the|strong=\"H5674\"* ascent|strong=\"H4610\"* of|strong=\"H3318\"* Akrabbim|strong=\"H4610\"*, and|strong=\"H5927\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* to|strong=\"H3318\"* Zin|strong=\"H6790\"*, and|strong=\"H5927\"* went|strong=\"H3318\"* up|strong=\"H5927\"* by|strong=\"H5674\"* the|strong=\"H5674\"* south|strong=\"H5045\"* of|strong=\"H3318\"* Kadesh Barnea, and|strong=\"H5927\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* by|strong=\"H5674\"* Hezron|strong=\"H2696\"*, went|strong=\"H3318\"* up|strong=\"H5927\"* to|strong=\"H3318\"* Addar, and|strong=\"H5927\"* turned|strong=\"H5437\"* toward|strong=\"H5927\"* Karka|strong=\"H7173\"*;" + }, + { + "verseNum": 4, + "text": "and|strong=\"H4714\"* it|strong=\"H1961\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* to|strong=\"H3318\"* Azmon|strong=\"H6111\"*, went|strong=\"H3318\"* out|strong=\"H3318\"* at|strong=\"H1961\"* the|strong=\"H5674\"* brook|strong=\"H5158\"* of|strong=\"H1366\"* Egypt|strong=\"H4714\"*; and|strong=\"H4714\"* the|strong=\"H5674\"* border|strong=\"H1366\"* ended|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H5674\"* sea|strong=\"H3220\"*. This|strong=\"H2088\"* shall|strong=\"H4714\"* be|strong=\"H1961\"* your|strong=\"H1961\"* south|strong=\"H5045\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5704\"* east|strong=\"H6924\"* border|strong=\"H1366\"* was|strong=\"H1366\"* the|strong=\"H5704\"* Salt|strong=\"H4417\"* Sea|strong=\"H3220\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* end|strong=\"H7097\"* of|strong=\"H1366\"* the|strong=\"H5704\"* Jordan|strong=\"H3383\"*. The|strong=\"H5704\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H5704\"* north|strong=\"H6828\"* quarter|strong=\"H6285\"* was|strong=\"H1366\"* from|strong=\"H6285\"* the|strong=\"H5704\"* bay|strong=\"H3956\"* of|strong=\"H1366\"* the|strong=\"H5704\"* sea|strong=\"H3220\"* at|strong=\"H3383\"* the|strong=\"H5704\"* end|strong=\"H7097\"* of|strong=\"H1366\"* the|strong=\"H5704\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5674\"* border|strong=\"H1366\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Beth Hoglah, and|strong=\"H1121\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* by|strong=\"H5674\"* the|strong=\"H5674\"* north|strong=\"H6828\"* of|strong=\"H1121\"* Beth Arabah; and|strong=\"H1121\"* the|strong=\"H5674\"* border|strong=\"H1366\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H5674\"* stone of|strong=\"H1121\"* Bohan the|strong=\"H5674\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5674\"* border|strong=\"H1366\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Debir|strong=\"H1688\"* from|strong=\"H5927\"* the|strong=\"H5674\"* valley|strong=\"H6010\"* of|strong=\"H1366\"* Achor|strong=\"H5911\"*, and|strong=\"H6437\"* so|strong=\"H1961\"* northward|strong=\"H6828\"*, looking|strong=\"H6437\"* toward|strong=\"H5927\"* Gilgal|strong=\"H1537\"*, that|strong=\"H4325\"* faces|strong=\"H6437\"* the|strong=\"H5674\"* ascent|strong=\"H4608\"* of|strong=\"H1366\"* Adummim, which|strong=\"H4325\"* is|strong=\"H1961\"* on|strong=\"H5674\"* the|strong=\"H5674\"* south|strong=\"H5045\"* side|strong=\"H6828\"* of|strong=\"H1366\"* the|strong=\"H5674\"* river|strong=\"H5158\"*. The|strong=\"H5674\"* border|strong=\"H1366\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* to|strong=\"H5927\"* the|strong=\"H5674\"* waters|strong=\"H4325\"* of|strong=\"H1366\"* En Shemesh, and|strong=\"H6437\"* ended|strong=\"H1961\"* at|strong=\"H1961\"* En Rogel." + }, + { + "verseNum": 8, + "text": "The|strong=\"H6440\"* border|strong=\"H1366\"* went|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H5921\"* the|strong=\"H6440\"* valley|strong=\"H6010\"* of|strong=\"H1121\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"* to|strong=\"H5927\"* the|strong=\"H6440\"* side|strong=\"H3802\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Jebusite|strong=\"H2983\"* (also|strong=\"H1121\"* called Jerusalem|strong=\"H3389\"*) southward|strong=\"H5045\"*; and|strong=\"H1121\"* the|strong=\"H6440\"* border|strong=\"H1366\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H6440\"* top|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"* that|strong=\"H1931\"* lies before|strong=\"H6440\"* the|strong=\"H6440\"* valley|strong=\"H6010\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"* westward|strong=\"H3220\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* at|strong=\"H5921\"* the|strong=\"H6440\"* farthest part|strong=\"H7097\"* of|strong=\"H1121\"* the|strong=\"H6440\"* valley|strong=\"H6010\"* of|strong=\"H1121\"* Rephaim|strong=\"H7497\"* northward|strong=\"H6828\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3318\"* border|strong=\"H1366\"* extended|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3318\"* top|strong=\"H7218\"* of|strong=\"H5892\"* the|strong=\"H3318\"* mountain|strong=\"H2022\"* to|strong=\"H3318\"* the|strong=\"H3318\"* spring|strong=\"H4599\"* of|strong=\"H5892\"* the|strong=\"H3318\"* waters|strong=\"H4325\"* of|strong=\"H5892\"* Nephtoah|strong=\"H5318\"*, and|strong=\"H5892\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3318\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Mount|strong=\"H2022\"* Ephron|strong=\"H6085\"*; and|strong=\"H5892\"* the|strong=\"H3318\"* border|strong=\"H1366\"* extended|strong=\"H3318\"* to|strong=\"H3318\"* Baalah|strong=\"H1173\"* (also|strong=\"H3318\"* called Kiriath|strong=\"H7157\"* Jearim);" + }, + { + "verseNum": 10, + "text": "and|strong=\"H2022\"* the|strong=\"H5674\"* border|strong=\"H1366\"* turned|strong=\"H5437\"* about|strong=\"H5437\"* from|strong=\"H3381\"* Baalah|strong=\"H1173\"* westward|strong=\"H3220\"* to|strong=\"H3381\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"*, and|strong=\"H2022\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* to|strong=\"H3381\"* the|strong=\"H5674\"* side|strong=\"H3802\"* of|strong=\"H2022\"* Mount|strong=\"H2022\"* Jearim|strong=\"H3297\"* (also|strong=\"H1366\"* called Chesalon|strong=\"H3693\"*) on|strong=\"H5674\"* the|strong=\"H5674\"* north|strong=\"H6828\"*, and|strong=\"H2022\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Beth Shemesh, and|strong=\"H2022\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* by|strong=\"H5674\"* Timnah|strong=\"H8553\"*;" + }, + { + "verseNum": 11, + "text": "and|strong=\"H2022\"* the|strong=\"H5674\"* border|strong=\"H1366\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5674\"* side|strong=\"H3802\"* of|strong=\"H2022\"* Ekron|strong=\"H6138\"* northward|strong=\"H6828\"*; and|strong=\"H2022\"* the|strong=\"H5674\"* border|strong=\"H1366\"* extended|strong=\"H3318\"* to|strong=\"H3318\"* Shikkeron|strong=\"H7942\"*, and|strong=\"H2022\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* to|strong=\"H3318\"* Mount|strong=\"H2022\"* Baalah|strong=\"H1173\"*, and|strong=\"H2022\"* went|strong=\"H3318\"* out|strong=\"H3318\"* at|strong=\"H1961\"* Jabneel|strong=\"H2995\"*; and|strong=\"H2022\"* the|strong=\"H5674\"* goings out|strong=\"H3318\"* of|strong=\"H2022\"* the|strong=\"H5674\"* border|strong=\"H1366\"* were|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H5674\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5439\"* west|strong=\"H3220\"* border|strong=\"H1366\"* was|strong=\"H3063\"* to|strong=\"H1121\"* the|strong=\"H5439\"* shore of|strong=\"H1121\"* the|strong=\"H5439\"* great|strong=\"H1419\"* sea|strong=\"H3220\"*. This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H5439\"* border|strong=\"H1366\"* of|strong=\"H1121\"* the|strong=\"H5439\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* according to|strong=\"H1121\"* their|strong=\"H5439\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1931\"* gave|strong=\"H5414\"* to|strong=\"H3068\"* Caleb|strong=\"H3612\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"* a|strong=\"H3068\"* portion|strong=\"H2506\"* among|strong=\"H8432\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, according|strong=\"H6310\"* to|strong=\"H3068\"* the|strong=\"H5414\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, even|strong=\"H3068\"* Kiriath Arba, named after|strong=\"H6310\"* the|strong=\"H5414\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Anak|strong=\"H6061\"* (also|strong=\"H3068\"* called Hebron|strong=\"H2275\"*)." + }, + { + "verseNum": 14, + "text": "Caleb|strong=\"H3612\"* drove|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3423\"* three|strong=\"H7969\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Anak|strong=\"H6061\"*: Sheshai|strong=\"H8344\"*, and|strong=\"H1121\"* Ahiman, and|strong=\"H1121\"* Talmai|strong=\"H8526\"*, the|strong=\"H3423\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Anak|strong=\"H6061\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H8033\"* went|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H6440\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Debir|strong=\"H1688\"*: now the|strong=\"H6440\"* name|strong=\"H8034\"* of|strong=\"H3427\"* Debir|strong=\"H1688\"* before|strong=\"H6440\"* was|strong=\"H8034\"* Kiriath Sepher." + }, + { + "verseNum": 16, + "text": "Caleb|strong=\"H3612\"* said, “He|strong=\"H5414\"* who|strong=\"H1323\"* strikes|strong=\"H5221\"* Kiriath Sepher, and|strong=\"H1323\"* takes|strong=\"H3920\"* it|strong=\"H5414\"*, to|strong=\"H5414\"* him|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* Achsah|strong=\"H5915\"* my|strong=\"H5414\"* daughter|strong=\"H1323\"* as|strong=\"H5414\"* wife.”" + }, + { + "verseNum": 17, + "text": "Othniel|strong=\"H6274\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kenaz|strong=\"H7073\"*, the|strong=\"H5414\"* brother of|strong=\"H1121\"* Caleb|strong=\"H3612\"*, took|strong=\"H3920\"* it|strong=\"H5414\"*: and|strong=\"H1121\"* he|strong=\"H5414\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* Achsah|strong=\"H5915\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"* as|strong=\"H1121\"* wife." + }, + { + "verseNum": 18, + "text": "When|strong=\"H1961\"* she|strong=\"H5921\"* came|strong=\"H1961\"*, she|strong=\"H5921\"* had|strong=\"H1961\"* him|strong=\"H5921\"* ask|strong=\"H7592\"* her|strong=\"H5921\"* father for|strong=\"H5921\"* a|strong=\"H3068\"* field|strong=\"H7704\"*. She|strong=\"H5921\"* got off|strong=\"H5921\"* her|strong=\"H5921\"* donkey|strong=\"H2543\"*, and|strong=\"H7704\"* Caleb|strong=\"H3612\"* said, “What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H5921\"* want?”" + }, + { + "verseNum": 19, + "text": "She|strong=\"H3588\"* said, “Give|strong=\"H5414\"* me|strong=\"H5414\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"*. Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5414\"* set|strong=\"H5414\"* me|strong=\"H5414\"* in|strong=\"H5414\"* the|strong=\"H3588\"* land of|strong=\"H4325\"* the|strong=\"H3588\"* South|strong=\"H5045\"*, give|strong=\"H5414\"* me|strong=\"H5414\"* also|strong=\"H3588\"* springs|strong=\"H1543\"* of|strong=\"H4325\"* water|strong=\"H4325\"*.”" + }, + { + "verseNum": 20, + "text": "This|strong=\"H2063\"* is|strong=\"H1121\"* the|strong=\"H1121\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* according to|strong=\"H1121\"* their families|strong=\"H4940\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1961\"* farthest cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H1961\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* toward|strong=\"H4294\"* the|strong=\"H1961\"* border|strong=\"H1366\"* of|strong=\"H1121\"* Edom in|strong=\"H5892\"* the|strong=\"H1961\"* South|strong=\"H5045\"* were|strong=\"H1961\"* Kabzeel|strong=\"H6909\"*, Eder|strong=\"H5740\"*, Jagur|strong=\"H3017\"*," + }, + { + "verseNum": 22, + "text": "Kinah|strong=\"H7016\"*, Dimonah|strong=\"H1776\"*, Adadah|strong=\"H5735\"*," + }, + { + "verseNum": 23, + "text": "Kedesh|strong=\"H6943\"*, Hazor|strong=\"H2674\"*, Ithnan|strong=\"H3497\"*," + }, + { + "verseNum": 24, + "text": "Ziph|strong=\"H2128\"*, Telem|strong=\"H2928\"*, Bealoth|strong=\"H1175\"*," + }, + { + "verseNum": 25, + "text": "Hazor|strong=\"H2674\"* Hadattah|strong=\"H2675\"*, Kerioth|strong=\"H7152\"* Hezron|strong=\"H2696\"* (also|strong=\"H1931\"* called Hazor|strong=\"H2674\"*)," + }, + { + "verseNum": 26, + "text": "Amam, Shema|strong=\"H8090\"*, Moladah|strong=\"H4137\"*," + }, + { + "verseNum": 27, + "text": "Hazar Gaddah, Heshmon|strong=\"H2829\"*, Beth Pelet," + }, + { + "verseNum": 28, + "text": "Hazar Shual, Beersheba, Biziothiah," + }, + { + "verseNum": 29, + "text": "Baalah|strong=\"H1173\"*, Iim|strong=\"H5864\"*, Ezem|strong=\"H6107\"*," + }, + { + "verseNum": 30, + "text": "Eltolad, Chesil|strong=\"H3686\"*, Hormah|strong=\"H2767\"*," + }, + { + "verseNum": 31, + "text": "Ziklag|strong=\"H6860\"*, Madmannah|strong=\"H4089\"*, Sansannah|strong=\"H5578\"*," + }, + { + "verseNum": 32, + "text": "Lebaoth|strong=\"H3822\"*, Shilhim|strong=\"H7978\"*, Ain|strong=\"H5871\"*, and|strong=\"H6242\"* Rimmon|strong=\"H7417\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* are|strong=\"H5892\"* twenty-nine|strong=\"H6242\"*, with|strong=\"H5892\"* their|strong=\"H3605\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 33, + "text": "In|strong=\"H8219\"* the|strong=\"H8219\"* lowland|strong=\"H8219\"*, Eshtaol, Zorah|strong=\"H6881\"*, Ashnah," + }, + { + "verseNum": 34, + "text": "Zanoah|strong=\"H2182\"*, En Gannim, Tappuah|strong=\"H8599\"*, Enam|strong=\"H5879\"*," + }, + { + "verseNum": 35, + "text": "Jarmuth|strong=\"H3412\"*, Adullam|strong=\"H5725\"*, Socoh|strong=\"H7755\"*, Azekah|strong=\"H5825\"*," + }, + { + "verseNum": 36, + "text": "Shaaraim|strong=\"H8189\"*, Adithaim|strong=\"H5723\"* and|strong=\"H5892\"* Gederah|strong=\"H1449\"* (or|strong=\"H5892\"* Gederothaim|strong=\"H1453\"*); fourteen|strong=\"H6240\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 37, + "text": "Zenan|strong=\"H6799\"*, Hadashah|strong=\"H2322\"*, Migdal Gad," + }, + { + "verseNum": 38, + "text": "Dilean|strong=\"H1810\"*, Mizpah|strong=\"H4708\"*, Joktheel|strong=\"H3371\"*," + }, + { + "verseNum": 39, + "text": "Lachish|strong=\"H3923\"*, Bozkath|strong=\"H1218\"*, Eglon|strong=\"H5700\"*," + }, + { + "verseNum": 40, + "text": "Cabbon|strong=\"H3522\"*, Lahmam|strong=\"H3903\"*, Chitlish|strong=\"H3798\"*," + }, + { + "verseNum": 41, + "text": "Gederoth|strong=\"H1450\"*, Beth Dagon, Naamah|strong=\"H5279\"*, and|strong=\"H5892\"* Makkedah|strong=\"H4719\"*; sixteen|strong=\"H8337\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 42, + "text": "Libnah|strong=\"H3841\"*, Ether|strong=\"H6281\"*, Ashan|strong=\"H6228\"*," + }, + { + "verseNum": 43, + "text": "Iphtah|strong=\"H3316\"*, Ashnah, Nezib|strong=\"H5334\"*," + }, + { + "verseNum": 44, + "text": "Keilah|strong=\"H7084\"*, Achzib, and|strong=\"H5892\"* Mareshah|strong=\"H4762\"*; nine|strong=\"H8672\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 45, + "text": "Ekron|strong=\"H6138\"*, with|strong=\"H2691\"* its towns|strong=\"H1323\"* and|strong=\"H1323\"* its villages|strong=\"H2691\"*;" + }, + { + "verseNum": 46, + "text": "from|strong=\"H5921\"* Ekron|strong=\"H6138\"* even|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*, all|strong=\"H3605\"* that|strong=\"H3605\"* were|strong=\"H3027\"* by|strong=\"H3027\"* the|strong=\"H3605\"* side|strong=\"H3027\"* of|strong=\"H3027\"* Ashdod, with|strong=\"H5921\"* their|strong=\"H3605\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 47, + "text": "Ashdod, its|strong=\"H3220\"* towns|strong=\"H1323\"* and|strong=\"H4714\"* its|strong=\"H3220\"* villages|strong=\"H2691\"*; Gaza|strong=\"H5804\"*, its|strong=\"H3220\"* towns|strong=\"H1323\"* and|strong=\"H4714\"* its|strong=\"H3220\"* villages|strong=\"H2691\"*; to|strong=\"H5704\"* the|strong=\"H5704\"* brook|strong=\"H5158\"* of|strong=\"H1323\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* the|strong=\"H5704\"* great sea|strong=\"H3220\"* with|strong=\"H4714\"* its|strong=\"H3220\"* coastline|strong=\"H1366\"*." + }, + { + "verseNum": 48, + "text": "In|strong=\"H2022\"* the|strong=\"H2022\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, Shamir|strong=\"H8069\"*, Jattir|strong=\"H3492\"*, Socoh|strong=\"H7755\"*," + }, + { + "verseNum": 49, + "text": "Dannah|strong=\"H1837\"*, Kiriath Sannah (which|strong=\"H1931\"* is|strong=\"H1931\"* Debir|strong=\"H1688\"*)," + }, + { + "verseNum": 50, + "text": "Anab|strong=\"H6024\"*, Eshtemoh, Anim|strong=\"H6044\"*," + }, + { + "verseNum": 51, + "text": "Goshen|strong=\"H1657\"*, Holon|strong=\"H2473\"*, and|strong=\"H5892\"* Giloh|strong=\"H1542\"*; eleven|strong=\"H6240\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 52, + "text": "Arab, Dumah|strong=\"H1746\"*, Eshan," + }, + { + "verseNum": 53, + "text": "Janim|strong=\"H3241\"*, Beth Tappuah, Aphekah," + }, + { + "verseNum": 54, + "text": "Humtah|strong=\"H2547\"*, Kiriath Arba (also|strong=\"H1931\"* called Hebron|strong=\"H2275\"*), and|strong=\"H5892\"* Zior|strong=\"H6730\"*; nine|strong=\"H8672\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 55, + "text": "Maon|strong=\"H4584\"*, Carmel|strong=\"H3760\"*, Ziph|strong=\"H2128\"*, Jutah," + }, + { + "verseNum": 56, + "text": "Jezreel|strong=\"H3157\"*, Jokdeam|strong=\"H3347\"*, Zanoah|strong=\"H2182\"*," + }, + { + "verseNum": 57, + "text": "Kain|strong=\"H7014\"*, Gibeah|strong=\"H1390\"*, and|strong=\"H5892\"* Timnah|strong=\"H8553\"*; ten|strong=\"H6235\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 58, + "text": "Halhul|strong=\"H2478\"*, Beth Zur, Gedor|strong=\"H1446\"*," + }, + { + "verseNum": 59, + "text": "Maarath|strong=\"H4638\"*, Beth Anoth, and|strong=\"H5892\"* Eltekon; six|strong=\"H8337\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 60, + "text": "Kiriath|strong=\"H7157\"* Baal (also|strong=\"H1931\"* called Kiriath|strong=\"H7157\"* Jearim), and|strong=\"H5892\"* Rabbah|strong=\"H7237\"*; two|strong=\"H8147\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their|strong=\"H8147\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 61, + "text": "In the|strong=\"H4057\"* wilderness|strong=\"H4057\"*, Beth Arabah, Middin|strong=\"H4081\"*, Secacah|strong=\"H5527\"*," + }, + { + "verseNum": 62, + "text": "Nibshan|strong=\"H5044\"*, the|strong=\"H5892\"* City|strong=\"H5892\"* of|strong=\"H5892\"* Salt|strong=\"H5898\"*, and|strong=\"H5892\"* En Gedi; six|strong=\"H8337\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 63, + "text": "As|strong=\"H5704\"* for|strong=\"H5704\"* the|strong=\"H3117\"* Jebusites|strong=\"H2983\"*, the|strong=\"H3117\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*, the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* couldn’t drive|strong=\"H3423\"* them|strong=\"H3423\"* out|strong=\"H3423\"*; but|strong=\"H3808\"* the|strong=\"H3117\"* Jebusites|strong=\"H2983\"* live|strong=\"H3427\"* with|strong=\"H3427\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* at|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3318\"* lot|strong=\"H1486\"* came|strong=\"H3318\"* out|strong=\"H3318\"* for|strong=\"H4325\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* from|strong=\"H3318\"* the|strong=\"H3318\"* Jordan|strong=\"H3383\"* at|strong=\"H3383\"* Jericho|strong=\"H3405\"*, at|strong=\"H3383\"* the|strong=\"H3318\"* waters|strong=\"H4325\"* of|strong=\"H1121\"* Jericho|strong=\"H3405\"* on|strong=\"H5927\"* the|strong=\"H3318\"* east|strong=\"H4217\"*, even the|strong=\"H3318\"* wilderness|strong=\"H4057\"*, going|strong=\"H3318\"* up|strong=\"H5927\"* from|strong=\"H3318\"* Jericho|strong=\"H3405\"* through|strong=\"H3318\"* the|strong=\"H3318\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* to|strong=\"H3318\"* Bethel|strong=\"H1008\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H1366\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Bethel|strong=\"H1008\"* to|strong=\"H3318\"* Luz|strong=\"H3870\"*, and|strong=\"H3318\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* to|strong=\"H3318\"* the|strong=\"H5674\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H5674\"* Archites to|strong=\"H3318\"* Ataroth|strong=\"H5852\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H3381\"* it|strong=\"H3381\"* went|strong=\"H3381\"* down|strong=\"H3381\"* westward|strong=\"H3220\"* to|strong=\"H5704\"* the|strong=\"H5704\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H5704\"* Japhletites|strong=\"H3311\"*, to|strong=\"H5704\"* the|strong=\"H5704\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Beth Horon the|strong=\"H5704\"* lower|strong=\"H8481\"*, and|strong=\"H3381\"* on|strong=\"H1961\"* to|strong=\"H5704\"* Gezer|strong=\"H1507\"*; and|strong=\"H3381\"* ended|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H5704\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H5157\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*, Manasseh|strong=\"H4519\"* and|strong=\"H1121\"* Ephraim, took their|strong=\"H5157\"* inheritance|strong=\"H5157\"*." + }, + { + "verseNum": 5, + "text": "This|strong=\"H1961\"* was|strong=\"H1961\"* the|strong=\"H5704\"* border|strong=\"H1366\"* of|strong=\"H1121\"* the|strong=\"H5704\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim according to|strong=\"H5704\"* their|strong=\"H1961\"* families|strong=\"H4940\"*. The|strong=\"H5704\"* border|strong=\"H1366\"* of|strong=\"H1121\"* their|strong=\"H1961\"* inheritance|strong=\"H5159\"* eastward|strong=\"H4217\"* was|strong=\"H1961\"* Ataroth Addar, to|strong=\"H5704\"* Beth Horon the|strong=\"H5704\"* upper|strong=\"H5945\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5674\"* border|strong=\"H1366\"* went|strong=\"H3318\"* out|strong=\"H3318\"* westward|strong=\"H3220\"* at|strong=\"H3318\"* Michmethath|strong=\"H4366\"* on|strong=\"H5674\"* the|strong=\"H5674\"* north|strong=\"H6828\"*. The|strong=\"H5674\"* border|strong=\"H1366\"* turned|strong=\"H5437\"* about|strong=\"H5437\"* eastward|strong=\"H4217\"* to|strong=\"H3318\"* Taanath Shiloh, and|strong=\"H3318\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* it|strong=\"H5437\"* on|strong=\"H5674\"* the|strong=\"H5674\"* east|strong=\"H4217\"* of|strong=\"H1366\"* Janoah|strong=\"H3239\"*." + }, + { + "verseNum": 7, + "text": "It|strong=\"H3381\"* went|strong=\"H3318\"* down|strong=\"H3381\"* from|strong=\"H3318\"* Janoah|strong=\"H3239\"* to|strong=\"H3381\"* Ataroth|strong=\"H5852\"*, to|strong=\"H3381\"* Naarah|strong=\"H5292\"*, reached|strong=\"H6293\"* to|strong=\"H3381\"* Jericho|strong=\"H3405\"*, and|strong=\"H3381\"* went|strong=\"H3318\"* out|strong=\"H3318\"* at|strong=\"H3383\"* the|strong=\"H3318\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 8, + "text": "From|strong=\"H1121\"* Tappuah|strong=\"H8599\"* the|strong=\"H1961\"* border|strong=\"H1366\"* went|strong=\"H3212\"* along|strong=\"H3212\"* westward|strong=\"H3220\"* to|strong=\"H3212\"* the|strong=\"H1961\"* brook|strong=\"H5158\"* of|strong=\"H1121\"* Kanah|strong=\"H7071\"*; and|strong=\"H1121\"* ended|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H1961\"* sea|strong=\"H3220\"*. This|strong=\"H2063\"* is|strong=\"H1121\"* the|strong=\"H1961\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H1961\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim according to|strong=\"H3212\"* their|strong=\"H1961\"* families|strong=\"H4940\"*;" + }, + { + "verseNum": 9, + "text": "together with|strong=\"H5892\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* were|strong=\"H1121\"* set|strong=\"H3995\"* apart|strong=\"H3995\"* for|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim in|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H3605\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their|strong=\"H3605\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H3117\"* didn’t drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H5647\"* Canaanites|strong=\"H3669\"* who|strong=\"H3427\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Gezer|strong=\"H1507\"*; but|strong=\"H3808\"* the|strong=\"H5647\"* Canaanites|strong=\"H3669\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5647\"* territory of|strong=\"H3117\"* Ephraim to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* have|strong=\"H1961\"* become|strong=\"H1961\"* servants|strong=\"H5647\"* to|strong=\"H5704\"* do|strong=\"H5647\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "This|strong=\"H1931\"* was|strong=\"H1961\"* the|strong=\"H3588\"* lot|strong=\"H1486\"* for|strong=\"H3588\"* the|strong=\"H3588\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Manasseh|strong=\"H4519\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1961\"* the|strong=\"H3588\"* firstborn|strong=\"H1060\"* of|strong=\"H4294\"* Joseph|strong=\"H3130\"*. As|strong=\"H1961\"* for|strong=\"H3588\"* Machir|strong=\"H4353\"* the|strong=\"H3588\"* firstborn|strong=\"H1060\"* of|strong=\"H4294\"* Manasseh|strong=\"H4519\"*, the|strong=\"H3588\"* father of|strong=\"H4294\"* Gilead|strong=\"H1568\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1961\"* a|strong=\"H3068\"* man of|strong=\"H4294\"* war|strong=\"H4421\"*, therefore|strong=\"H3588\"* he|strong=\"H1931\"* had|strong=\"H1961\"* Gilead|strong=\"H1568\"* and|strong=\"H4519\"* Bashan|strong=\"H1316\"*." + }, + { + "verseNum": 2, + "text": "So|strong=\"H1961\"* this|strong=\"H1961\"* was|strong=\"H1961\"* for|strong=\"H1121\"* the|strong=\"H1961\"* rest|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* according to|strong=\"H1961\"* their|strong=\"H1961\"* families|strong=\"H4940\"*: for|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Abiezer, for|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Helek|strong=\"H2507\"*, for|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asriel, for|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Shechem|strong=\"H7928\"*, for|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hepher|strong=\"H2660\"*, and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Shemida|strong=\"H8061\"*. These were|strong=\"H1961\"* the|strong=\"H1961\"* male|strong=\"H2145\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* according to|strong=\"H1961\"* their|strong=\"H1961\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"H3588\"* Zelophehad|strong=\"H6765\"*, the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hepher|strong=\"H2660\"*, the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"*, the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, had|strong=\"H1961\"* no|strong=\"H3808\"* sons|strong=\"H1121\"*, but|strong=\"H3588\"* daughters|strong=\"H1323\"*. These are|strong=\"H1121\"* the|strong=\"H3588\"* names|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H1961\"* daughters|strong=\"H1323\"*: Mahlah|strong=\"H4244\"*, Noah|strong=\"H5270\"*, Hoglah|strong=\"H2295\"*, Milcah|strong=\"H4435\"*, and|strong=\"H1121\"* Tirzah|strong=\"H8656\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H3068\"* came|strong=\"H7126\"* to|strong=\"H3068\"* Eleazar the|strong=\"H6440\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* to|strong=\"H3068\"* Joshua|strong=\"H3091\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, and|strong=\"H1121\"* to|strong=\"H3068\"* the|strong=\"H6440\"* princes|strong=\"H5387\"*, saying|strong=\"H6310\"*, “Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"* to|strong=\"H3068\"* give|strong=\"H5414\"* us|strong=\"H5414\"* an|strong=\"H7126\"* inheritance|strong=\"H5159\"* among|strong=\"H8432\"* our|strong=\"H3068\"* brothers|strong=\"H1121\"*.” Therefore|strong=\"H4872\"* according|strong=\"H6310\"* to|strong=\"H3068\"* the|strong=\"H6440\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* he|strong=\"H3068\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* an|strong=\"H7126\"* inheritance|strong=\"H5159\"* among|strong=\"H8432\"* the|strong=\"H6440\"* brothers|strong=\"H1121\"* of|strong=\"H1121\"* their|strong=\"H3068\"* father|strong=\"H1121\"*." + }, + { + "verseNum": 5, + "text": "Ten|strong=\"H6235\"* parts fell|strong=\"H5307\"* to|strong=\"H3383\"* Manasseh|strong=\"H4519\"*, in|strong=\"H5307\"* addition to|strong=\"H3383\"* the|strong=\"H5676\"* land|strong=\"H5676\"* of|strong=\"H2256\"* Gilead|strong=\"H1568\"* and|strong=\"H4519\"* Bashan|strong=\"H1316\"*, which is|strong=\"H3383\"* beyond|strong=\"H5676\"* the|strong=\"H5676\"* Jordan|strong=\"H3383\"*;" + }, + { + "verseNum": 6, + "text": "because|strong=\"H3588\"* the|strong=\"H3588\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* had|strong=\"H1961\"* an|strong=\"H1961\"* inheritance|strong=\"H5159\"* among|strong=\"H8432\"* his|strong=\"H1961\"* sons|strong=\"H1121\"*. The|strong=\"H3588\"* land|strong=\"H5159\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"* belonged|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H3588\"* rest|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H6440\"* border|strong=\"H1366\"* of|strong=\"H3427\"* Manasseh|strong=\"H4519\"* was|strong=\"H1961\"* from|strong=\"H6440\"* Asher to|strong=\"H1980\"* Michmethath|strong=\"H4366\"*, which|strong=\"H1366\"* is|strong=\"H1961\"* before|strong=\"H6440\"* Shechem|strong=\"H7927\"*. The|strong=\"H6440\"* border|strong=\"H1366\"* went|strong=\"H1980\"* along|strong=\"H5921\"* to|strong=\"H1980\"* the|strong=\"H6440\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*, to|strong=\"H1980\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* En Tappuah." + }, + { + "verseNum": 8, + "text": "The|strong=\"H1961\"* land|strong=\"H1366\"* of|strong=\"H1121\"* Tappuah|strong=\"H8599\"* belonged|strong=\"H1961\"* to|strong=\"H1961\"* Manasseh|strong=\"H4519\"*; but|strong=\"H1961\"* Tappuah|strong=\"H8599\"* on|strong=\"H1961\"* the|strong=\"H1961\"* border|strong=\"H1366\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* belonged|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim." + }, + { + "verseNum": 9, + "text": "The|strong=\"H8432\"* border|strong=\"H1366\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H8432\"* brook|strong=\"H5158\"* of|strong=\"H5892\"* Kanah|strong=\"H7071\"*, southward|strong=\"H5045\"* of|strong=\"H5892\"* the|strong=\"H8432\"* brook|strong=\"H5158\"*. These cities|strong=\"H5892\"* belonged|strong=\"H1961\"* to|strong=\"H3381\"* Ephraim among|strong=\"H8432\"* the|strong=\"H8432\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Manasseh|strong=\"H4519\"*. The|strong=\"H8432\"* border|strong=\"H1366\"* of|strong=\"H5892\"* Manasseh|strong=\"H4519\"* was|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H8432\"* north|strong=\"H6828\"* side|strong=\"H6828\"* of|strong=\"H5892\"* the|strong=\"H8432\"* brook|strong=\"H5158\"*, and|strong=\"H5892\"* ended|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H8432\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 10, + "text": "Southward|strong=\"H5045\"* it|strong=\"H1961\"* was|strong=\"H1961\"* Ephraim’s, and|strong=\"H4519\"* northward|strong=\"H6828\"* it|strong=\"H1961\"* was|strong=\"H1961\"* Manasseh|strong=\"H4519\"*’s, and|strong=\"H4519\"* the|strong=\"H1961\"* sea|strong=\"H3220\"* was|strong=\"H1961\"* his|strong=\"H1961\"* border|strong=\"H1366\"*. They reached|strong=\"H6293\"* to|strong=\"H1961\"* Asher on|strong=\"H1961\"* the|strong=\"H1961\"* north|strong=\"H6828\"*, and|strong=\"H4519\"* to|strong=\"H1961\"* Issachar|strong=\"H3485\"* on|strong=\"H1961\"* the|strong=\"H1961\"* east|strong=\"H4217\"*." + }, + { + "verseNum": 11, + "text": "Manasseh|strong=\"H4519\"* had|strong=\"H1961\"* three|strong=\"H7969\"* heights in|strong=\"H3427\"* Issachar|strong=\"H3485\"*, in|strong=\"H3427\"* Asher Beth Shean and|strong=\"H3427\"* its|strong=\"H1961\"* towns|strong=\"H1323\"*, and|strong=\"H3427\"* Ibleam|strong=\"H2991\"* and|strong=\"H3427\"* its|strong=\"H1961\"* towns|strong=\"H1323\"*, and|strong=\"H3427\"* the|strong=\"H1961\"* inhabitants|strong=\"H3427\"* of|strong=\"H1323\"* Dor|strong=\"H1756\"* and|strong=\"H3427\"* its|strong=\"H1961\"* towns|strong=\"H1323\"*, and|strong=\"H3427\"* the|strong=\"H1961\"* inhabitants|strong=\"H3427\"* of|strong=\"H1323\"* Endor|strong=\"H5874\"* and|strong=\"H3427\"* its|strong=\"H1961\"* towns|strong=\"H1323\"*, and|strong=\"H3427\"* the|strong=\"H1961\"* inhabitants|strong=\"H3427\"* of|strong=\"H1323\"* Taanach|strong=\"H8590\"* and|strong=\"H3427\"* its|strong=\"H1961\"* towns|strong=\"H1323\"*, and|strong=\"H3427\"* the|strong=\"H1961\"* inhabitants|strong=\"H3427\"* of|strong=\"H1323\"* Megiddo|strong=\"H4023\"* and|strong=\"H3427\"* its|strong=\"H1961\"* towns|strong=\"H1323\"*." + }, + { + "verseNum": 12, + "text": "Yet|strong=\"H3808\"* the|strong=\"H3423\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* couldn’t drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* those|strong=\"H1121\"* cities|strong=\"H5892\"*; but|strong=\"H3808\"* the|strong=\"H3423\"* Canaanites|strong=\"H3669\"* would|strong=\"H2974\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* that|strong=\"H5892\"* land." + }, + { + "verseNum": 13, + "text": "When|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H1961\"* grown|strong=\"H1961\"* strong|strong=\"H2388\"*, they|strong=\"H3588\"* put|strong=\"H5414\"* the|strong=\"H3588\"* Canaanites|strong=\"H3669\"* to|strong=\"H3478\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"*, and|strong=\"H1121\"* didn’t utterly|strong=\"H3423\"* drive|strong=\"H3423\"* them|strong=\"H5414\"* out|strong=\"H3423\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Joshua|strong=\"H3091\"*, saying|strong=\"H1696\"*, “Why|strong=\"H4069\"* have|strong=\"H3068\"* you|strong=\"H5414\"* given|strong=\"H5414\"* me|strong=\"H5414\"* just|strong=\"H1696\"* one|strong=\"H1121\"* lot|strong=\"H1486\"* and|strong=\"H1121\"* one|strong=\"H1121\"* part for|strong=\"H5704\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*, since|strong=\"H5704\"* we|strong=\"H3068\"* are|strong=\"H5971\"* a|strong=\"H3068\"* numerous|strong=\"H7227\"* people|strong=\"H5971\"*, because|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* blessed|strong=\"H1288\"* us|strong=\"H5414\"* so|strong=\"H3541\"* far|strong=\"H5704\"*?”" + }, + { + "verseNum": 15, + "text": "Joshua|strong=\"H3091\"* said to|strong=\"H5927\"* them|strong=\"H5927\"*, “If|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* a|strong=\"H3068\"* numerous|strong=\"H7227\"* people|strong=\"H5971\"*, go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H3588\"* forest|strong=\"H3293\"*, and|strong=\"H5971\"* clear|strong=\"H1254\"* land for|strong=\"H3588\"* yourself|strong=\"H8033\"* there|strong=\"H8033\"* in|strong=\"H7227\"* the|strong=\"H3588\"* land of|strong=\"H2022\"* the|strong=\"H3588\"* Perizzites|strong=\"H6522\"* and|strong=\"H5971\"* of|strong=\"H2022\"* the|strong=\"H3588\"* Rephaim|strong=\"H7497\"*, since|strong=\"H3588\"* the|strong=\"H3588\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim is|strong=\"H8033\"* too|strong=\"H7227\"* narrow for|strong=\"H3588\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* said, “The|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* is|strong=\"H3605\"* not|strong=\"H3808\"* enough|strong=\"H4672\"* for|strong=\"H3427\"* us|strong=\"H4672\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* Canaanites|strong=\"H3669\"* who|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* the|strong=\"H3605\"* valley|strong=\"H6010\"* have|strong=\"H1121\"* chariots|strong=\"H7393\"* of|strong=\"H1121\"* iron|strong=\"H1270\"*, both|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1121\"* in|strong=\"H3427\"* Beth Shean and|strong=\"H1121\"* its|strong=\"H3605\"* towns|strong=\"H1323\"*, and|strong=\"H1121\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1121\"* in|strong=\"H3427\"* the|strong=\"H3605\"* valley|strong=\"H6010\"* of|strong=\"H1121\"* Jezreel|strong=\"H3157\"*.”" + }, + { + "verseNum": 17, + "text": "Joshua|strong=\"H3091\"* spoke to|strong=\"H1961\"* the|strong=\"H3091\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Joseph|strong=\"H3130\"*, that|strong=\"H5971\"* is|strong=\"H1961\"*, to|strong=\"H1961\"* Ephraim and|strong=\"H1419\"* to|strong=\"H1961\"* Manasseh|strong=\"H4519\"*, saying, “You|strong=\"H3808\"* are|strong=\"H5971\"* a|strong=\"H3068\"* numerous|strong=\"H7227\"* people|strong=\"H5971\"*, and|strong=\"H1419\"* have|strong=\"H1961\"* great|strong=\"H1419\"* power|strong=\"H3581\"*. You|strong=\"H3808\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* have|strong=\"H1961\"* one|strong=\"H3808\"* lot|strong=\"H1486\"* only;" + }, + { + "verseNum": 18, + "text": "but|strong=\"H3588\"* the|strong=\"H3588\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* shall|strong=\"H2022\"* be|strong=\"H1961\"* yours. Although|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* forest|strong=\"H3293\"*, you|strong=\"H3588\"* shall|strong=\"H2022\"* cut|strong=\"H1254\"* it|strong=\"H1931\"* down|strong=\"H1254\"*, and|strong=\"H7393\"* it|strong=\"H1931\"*’s farthest|strong=\"H8444\"* extent shall|strong=\"H2022\"* be|strong=\"H1961\"* yours; for|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H2022\"* drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3588\"* Canaanites|strong=\"H3669\"*, though|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1961\"* chariots|strong=\"H7393\"* of|strong=\"H2022\"* iron|strong=\"H1270\"*, and|strong=\"H7393\"* though|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H1961\"* strong|strong=\"H2389\"*.”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* assembled|strong=\"H6950\"* themselves|strong=\"H6440\"* together|strong=\"H6950\"* at|strong=\"H3478\"* Shiloh|strong=\"H7887\"*, and|strong=\"H1121\"* set|strong=\"H7931\"* up|strong=\"H1121\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"* there|strong=\"H8033\"*. The|strong=\"H3605\"* land|strong=\"H6440\"* was|strong=\"H3478\"* subdued|strong=\"H3533\"* before|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 2, + "text": "Seven|strong=\"H7651\"* tribes|strong=\"H7626\"* remained|strong=\"H3498\"* among|strong=\"H3808\"* the|strong=\"H3808\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, which|strong=\"H3478\"* had|strong=\"H3478\"* not|strong=\"H3808\"* yet|strong=\"H3808\"* divided|strong=\"H2505\"* their|strong=\"H3808\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 3, + "text": "Joshua|strong=\"H3091\"* said to|strong=\"H5704\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “How|strong=\"H5704\"* long|strong=\"H5704\"* will|strong=\"H3068\"* you|strong=\"H5414\"* neglect to|strong=\"H5704\"* go|strong=\"H7503\"* in|strong=\"H3478\"* to|strong=\"H5704\"* possess|strong=\"H3423\"* the|strong=\"H5414\"* land, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H1121\"* your|strong=\"H3068\"* fathers, has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*?" + }, + { + "verseNum": 4, + "text": "Appoint|strong=\"H7971\"* for|strong=\"H7971\"* yourselves three|strong=\"H7969\"* men|strong=\"H1980\"* from|strong=\"H1980\"* each tribe|strong=\"H7626\"*. I|strong=\"H1980\"* will|strong=\"H6310\"* send|strong=\"H7971\"* them|strong=\"H7971\"*, and|strong=\"H1980\"* they|strong=\"H6310\"* shall|strong=\"H6310\"* arise|strong=\"H6965\"*, walk|strong=\"H1980\"* through|strong=\"H1980\"* the|strong=\"H7971\"* land|strong=\"H5159\"*, and|strong=\"H1980\"* describe|strong=\"H3789\"* it|strong=\"H1980\"* according|strong=\"H6310\"* to|strong=\"H1980\"* their|strong=\"H7971\"* inheritance|strong=\"H5159\"*; then|strong=\"H1980\"* they|strong=\"H6310\"* shall|strong=\"H6310\"* come|strong=\"H1980\"* to|strong=\"H1980\"* me|strong=\"H7971\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H5921\"* shall|strong=\"H1004\"* divide|strong=\"H2505\"* it|strong=\"H5921\"* into|strong=\"H5921\"* seven|strong=\"H7651\"* portions|strong=\"H2506\"*. Judah|strong=\"H3063\"* shall|strong=\"H1004\"* live in|strong=\"H5921\"* his|strong=\"H5921\"* borders|strong=\"H1366\"* on|strong=\"H5921\"* the|strong=\"H5921\"* south|strong=\"H5045\"*, and|strong=\"H3063\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Joseph|strong=\"H3130\"* shall|strong=\"H1004\"* live in|strong=\"H5921\"* their|strong=\"H5921\"* borders|strong=\"H1366\"* on|strong=\"H5921\"* the|strong=\"H5921\"* north|strong=\"H6828\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* survey the|strong=\"H6440\"* land|strong=\"H6440\"* into seven|strong=\"H7651\"* parts|strong=\"H2506\"*, and|strong=\"H3068\"* bring the|strong=\"H6440\"* description here|strong=\"H6311\"* to|strong=\"H3068\"* me|strong=\"H6440\"*; and|strong=\"H3068\"* I|strong=\"H6440\"* will|strong=\"H3068\"* cast|strong=\"H3384\"* lots|strong=\"H1486\"* for|strong=\"H6440\"* you|strong=\"H6440\"* here|strong=\"H6311\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "However|strong=\"H3588\"*, the|strong=\"H3588\"* Levites|strong=\"H3881\"* have|strong=\"H3068\"* no|strong=\"H3947\"* portion|strong=\"H2506\"* among|strong=\"H7130\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* priesthood|strong=\"H3550\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* their|strong=\"H3068\"* inheritance|strong=\"H5159\"*. Gad|strong=\"H1410\"*, Reuben|strong=\"H7205\"*, and|strong=\"H4872\"* the|strong=\"H3588\"* half-tribe|strong=\"H2677\"* of|strong=\"H3068\"* Manasseh|strong=\"H4519\"* have|strong=\"H3068\"* received|strong=\"H3947\"* their|strong=\"H3068\"* inheritance|strong=\"H5159\"* east|strong=\"H4217\"* of|strong=\"H3068\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"*, which|strong=\"H3068\"* Moses|strong=\"H4872\"* the|strong=\"H3588\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* them|strong=\"H5414\"*.”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H6440\"* men|strong=\"H1980\"* arose|strong=\"H6965\"* and|strong=\"H1980\"* went|strong=\"H1980\"*. Joshua|strong=\"H3091\"* commanded|strong=\"H6680\"* those|strong=\"H1980\"* who|strong=\"H3068\"* went|strong=\"H1980\"* to|strong=\"H1980\"* survey the|strong=\"H6440\"* land|strong=\"H6440\"*, saying, “Go|strong=\"H1980\"* walk|strong=\"H1980\"* through|strong=\"H1980\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, survey it|strong=\"H7725\"*, and|strong=\"H1980\"* come|strong=\"H1980\"* again|strong=\"H7725\"* to|strong=\"H1980\"* me|strong=\"H6440\"*. I|strong=\"H6680\"* will|strong=\"H3068\"* cast|strong=\"H7993\"* lots|strong=\"H1486\"* for|strong=\"H6440\"* you|strong=\"H6440\"* here|strong=\"H6311\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* in|strong=\"H1980\"* Shiloh|strong=\"H7887\"*.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H5921\"* men|strong=\"H7651\"* went|strong=\"H3212\"* and|strong=\"H3212\"* passed|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5921\"* land|strong=\"H2506\"*, and|strong=\"H3212\"* surveyed it|strong=\"H5921\"* by|strong=\"H5921\"* cities|strong=\"H5892\"* into|strong=\"H3212\"* seven|strong=\"H7651\"* portions|strong=\"H2506\"* in|strong=\"H5921\"* a|strong=\"H3068\"* book|strong=\"H5612\"*. They|strong=\"H5921\"* came|strong=\"H3212\"* to|strong=\"H3212\"* Joshua|strong=\"H3091\"* to|strong=\"H3212\"* the|strong=\"H5921\"* camp|strong=\"H4264\"* at|strong=\"H5921\"* Shiloh|strong=\"H7887\"*." + }, + { + "verseNum": 10, + "text": "Joshua|strong=\"H3091\"* cast|strong=\"H7993\"* lots|strong=\"H1486\"* for|strong=\"H6440\"* them|strong=\"H6440\"* in|strong=\"H3478\"* Shiloh|strong=\"H7887\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. There|strong=\"H8033\"* Joshua|strong=\"H3091\"* divided|strong=\"H2505\"* the|strong=\"H6440\"* land|strong=\"H6440\"* to|strong=\"H3478\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* according to|strong=\"H3478\"* their|strong=\"H3068\"* divisions|strong=\"H4256\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H3318\"* lot|strong=\"H1486\"* of|strong=\"H1121\"* the|strong=\"H3318\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* came|strong=\"H3318\"* up|strong=\"H5927\"* according to|strong=\"H3318\"* their|strong=\"H3318\"* families|strong=\"H4940\"*. The|strong=\"H3318\"* border|strong=\"H1366\"* of|strong=\"H1121\"* their|strong=\"H3318\"* lot|strong=\"H1486\"* went|strong=\"H3318\"* out|strong=\"H3318\"* between the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*." + }, + { + "verseNum": 12, + "text": "Their|strong=\"H1961\"* border|strong=\"H1366\"* on|strong=\"H1961\"* the|strong=\"H4480\"* north|strong=\"H6828\"* quarter|strong=\"H6285\"* was|strong=\"H1961\"* from|strong=\"H4480\"* the|strong=\"H4480\"* Jordan|strong=\"H3383\"*. The|strong=\"H4480\"* border|strong=\"H1366\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H4480\"* side|strong=\"H6285\"* of|strong=\"H2022\"* Jericho|strong=\"H3405\"* on|strong=\"H1961\"* the|strong=\"H4480\"* north|strong=\"H6828\"*, and|strong=\"H2022\"* went|strong=\"H5927\"* up|strong=\"H5927\"* through|strong=\"H4480\"* the|strong=\"H4480\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* westward|strong=\"H3220\"*. It|strong=\"H5927\"* ended|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H4480\"* wilderness|strong=\"H4057\"* of|strong=\"H2022\"* Beth Aven." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5921\"* border|strong=\"H1366\"* passed|strong=\"H5674\"* along|strong=\"H5921\"* from|strong=\"H3381\"* there|strong=\"H8033\"* to|strong=\"H3381\"* Luz|strong=\"H3870\"*, to|strong=\"H3381\"* the|strong=\"H5921\"* side|strong=\"H3802\"* of|strong=\"H2022\"* Luz|strong=\"H3870\"* (also|strong=\"H1366\"* called|strong=\"H8033\"* Bethel|strong=\"H1008\"*), southward|strong=\"H5045\"*. The|strong=\"H5921\"* border|strong=\"H1366\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Ataroth Addar, by|strong=\"H5921\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"* that|strong=\"H1931\"* lies on|strong=\"H5921\"* the|strong=\"H5921\"* south|strong=\"H5045\"* of|strong=\"H2022\"* Beth Horon the|strong=\"H5921\"* lower|strong=\"H8481\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H6440\"* border|strong=\"H1366\"* extended|strong=\"H1961\"*, and|strong=\"H1121\"* turned|strong=\"H5437\"* around|strong=\"H5437\"* on|strong=\"H5921\"* the|strong=\"H6440\"* west|strong=\"H3220\"* quarter|strong=\"H6285\"* southward|strong=\"H5045\"*, from|strong=\"H4480\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"* that|strong=\"H1931\"* lies|strong=\"H1961\"* before|strong=\"H6440\"* Beth Horon southward|strong=\"H5045\"*; and|strong=\"H1121\"* ended|strong=\"H1961\"* at|strong=\"H5921\"* Kiriath|strong=\"H7157\"* Baal (also|strong=\"H1121\"* called Kiriath|strong=\"H7157\"* Jearim), a|strong=\"H3068\"* city|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*. This|strong=\"H2063\"* was|strong=\"H1961\"* the|strong=\"H6440\"* west|strong=\"H3220\"* quarter|strong=\"H6285\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3318\"* south|strong=\"H5045\"* quarter|strong=\"H6285\"* was|strong=\"H1366\"* from|strong=\"H3318\"* the|strong=\"H3318\"* farthest part|strong=\"H7097\"* of|strong=\"H1366\"* Kiriath|strong=\"H7157\"* Jearim. The|strong=\"H3318\"* border|strong=\"H1366\"* went|strong=\"H3318\"* out|strong=\"H3318\"* westward|strong=\"H3220\"*, and|strong=\"H3318\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3318\"* spring|strong=\"H4599\"* of|strong=\"H1366\"* the|strong=\"H3318\"* waters|strong=\"H4325\"* of|strong=\"H1366\"* Nephtoah|strong=\"H5318\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H6440\"* border|strong=\"H1366\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H6440\"* farthest part|strong=\"H7097\"* of|strong=\"H1121\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"* that|strong=\"H1121\"* lies before|strong=\"H6440\"* the|strong=\"H6440\"* valley|strong=\"H6010\"* of|strong=\"H1121\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"*, which|strong=\"H2022\"* is|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H6440\"* valley|strong=\"H6010\"* of|strong=\"H1121\"* Rephaim|strong=\"H7497\"* northward|strong=\"H6828\"*. It|strong=\"H5921\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H6440\"* valley|strong=\"H6010\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"*, to|strong=\"H3381\"* the|strong=\"H6440\"* side|strong=\"H3802\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Jebusite|strong=\"H2983\"* southward|strong=\"H5045\"*, and|strong=\"H1121\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* En Rogel." + }, + { + "verseNum": 17, + "text": "It|strong=\"H3381\"* extended|strong=\"H3318\"* northward|strong=\"H6828\"*, went|strong=\"H3318\"* out|strong=\"H3318\"* at|strong=\"H3318\"* En Shemesh, and|strong=\"H1121\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3381\"* Geliloth|strong=\"H1553\"*, which is|strong=\"H1121\"* opposite|strong=\"H5227\"* the|strong=\"H3318\"* ascent|strong=\"H4608\"* of|strong=\"H1121\"* Adummim. It|strong=\"H3381\"* went|strong=\"H3318\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3318\"* stone of|strong=\"H1121\"* Bohan the|strong=\"H3318\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*." + }, + { + "verseNum": 18, + "text": "It|strong=\"H3381\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* to|strong=\"H3381\"* the|strong=\"H5674\"* side|strong=\"H3802\"* opposite|strong=\"H4136\"* the|strong=\"H5674\"* Arabah|strong=\"H6160\"* northward|strong=\"H6828\"*, and|strong=\"H3381\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H5674\"* Arabah|strong=\"H6160\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5674\"* border|strong=\"H1366\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* to|strong=\"H1961\"* the|strong=\"H5674\"* side|strong=\"H3802\"* of|strong=\"H1366\"* Beth Hoglah northward|strong=\"H6828\"*; and|strong=\"H3220\"* the|strong=\"H5674\"* border|strong=\"H1366\"* ended|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H5674\"* north|strong=\"H6828\"* bay|strong=\"H3956\"* of|strong=\"H1366\"* the|strong=\"H5674\"* Salt|strong=\"H4417\"* Sea|strong=\"H3220\"*, at|strong=\"H1961\"* the|strong=\"H5674\"* south|strong=\"H5045\"* end|strong=\"H7097\"* of|strong=\"H1366\"* the|strong=\"H5674\"* Jordan|strong=\"H3383\"*. This|strong=\"H2088\"* was|strong=\"H1961\"* the|strong=\"H5674\"* south|strong=\"H5045\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H5439\"* Jordan|strong=\"H3383\"* was|strong=\"H1121\"* its|strong=\"H5439\"* border|strong=\"H1379\"* on|strong=\"H6285\"* the|strong=\"H5439\"* east|strong=\"H6924\"* quarter|strong=\"H6285\"*. This|strong=\"H2063\"* was|strong=\"H1121\"* the|strong=\"H5439\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H5439\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, by|strong=\"H5159\"* the|strong=\"H5439\"* borders|strong=\"H1367\"* around|strong=\"H5439\"* it|strong=\"H5439\"*, according to|strong=\"H1121\"* their|strong=\"H5439\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 21, + "text": "Now|strong=\"H1961\"* the|strong=\"H1961\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H1961\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* according to|strong=\"H1961\"* their|strong=\"H1961\"* families|strong=\"H4940\"* were|strong=\"H1961\"* Jericho|strong=\"H3405\"*, Beth Hoglah, Emek|strong=\"H6010\"* Keziz|strong=\"H7104\"*," + }, + { + "verseNum": 22, + "text": "Beth Arabah, Zemaraim|strong=\"H6787\"*, Bethel|strong=\"H1008\"*," + }, + { + "verseNum": 23, + "text": "Avvim|strong=\"H5761\"*, Parah|strong=\"H6511\"*, Ophrah|strong=\"H6084\"*," + }, + { + "verseNum": 24, + "text": "Chephar Ammoni, Ophni|strong=\"H6078\"*, and|strong=\"H5892\"* Geba|strong=\"H1387\"*; twelve|strong=\"H8147\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their|strong=\"H8147\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 25, + "text": "Gibeon|strong=\"H1391\"*, Ramah|strong=\"H7414\"*, Beeroth," + }, + { + "verseNum": 26, + "text": "Mizpeh|strong=\"H4708\"*, Chephirah|strong=\"H3716\"*, Mozah|strong=\"H4681\"*," + }, + { + "verseNum": 27, + "text": "Rekem|strong=\"H7552\"*, Irpeel|strong=\"H3416\"*, Taralah|strong=\"H8634\"*," + }, + { + "verseNum": 28, + "text": "Zelah|strong=\"H6762\"*, Eleph, the|strong=\"H1121\"* Jebusite|strong=\"H2983\"* (also|strong=\"H1121\"* called Jerusalem|strong=\"H3389\"*), Gibeath|strong=\"H1394\"*, and|strong=\"H1121\"* Kiriath|strong=\"H7157\"*; fourteen|strong=\"H6240\"* cities|strong=\"H5892\"* with|strong=\"H3389\"* their|strong=\"H1144\"* villages|strong=\"H2691\"*. This|strong=\"H2063\"* is|strong=\"H1931\"* the|strong=\"H1121\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* according to|strong=\"H3389\"* their|strong=\"H1144\"* families|strong=\"H4940\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H8432\"* second|strong=\"H8145\"* lot|strong=\"H1486\"* came|strong=\"H1961\"* out|strong=\"H3318\"* for|strong=\"H1121\"* Simeon|strong=\"H8095\"*, even for|strong=\"H1121\"* the|strong=\"H8432\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"* according to|strong=\"H3318\"* their|strong=\"H8432\"* families|strong=\"H4940\"*. Their|strong=\"H8432\"* inheritance|strong=\"H5159\"* was|strong=\"H1961\"* in|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H8432\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H1992\"* had|strong=\"H1961\"* for|strong=\"H1961\"* their|strong=\"H1992\"* inheritance|strong=\"H5159\"* Beersheba (or Sheba|strong=\"H7652\"*), Moladah|strong=\"H4137\"*," + }, + { + "verseNum": 3, + "text": "Hazar Shual, Balah|strong=\"H1088\"*, Ezem|strong=\"H6107\"*," + }, + { + "verseNum": 4, + "text": "Eltolad, Bethul|strong=\"H1329\"*, Hormah|strong=\"H2767\"*," + }, + { + "verseNum": 5, + "text": "Ziklag|strong=\"H6860\"*, Beth Marcaboth, Hazar Susah," + }, + { + "verseNum": 6, + "text": "Beth Lebaoth, and|strong=\"H5892\"* Sharuhen|strong=\"H8287\"*; thirteen|strong=\"H7969\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*;" + }, + { + "verseNum": 7, + "text": "Ain|strong=\"H5871\"*, Rimmon|strong=\"H7417\"*, Ether|strong=\"H6281\"*, and|strong=\"H5892\"* Ashan|strong=\"H6228\"*; four cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*;" + }, + { + "verseNum": 8, + "text": "and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* villages|strong=\"H2691\"* that|strong=\"H3605\"* were|strong=\"H1121\"* around|strong=\"H5439\"* these|strong=\"H2063\"* cities|strong=\"H5892\"* to|strong=\"H5704\"* Baalath Beer, Ramah|strong=\"H7414\"* of|strong=\"H1121\"* the|strong=\"H3605\"* South|strong=\"H5045\"*. This|strong=\"H2063\"* is|strong=\"H3605\"* the|strong=\"H3605\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H3605\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"* according to|strong=\"H5704\"* their|strong=\"H3605\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 9, + "text": "Out|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H3588\"* part|strong=\"H2506\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* was|strong=\"H1961\"* the|strong=\"H3588\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* portion|strong=\"H2506\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* was|strong=\"H1961\"* too|strong=\"H1961\"* much|strong=\"H7227\"* for|strong=\"H3588\"* them|strong=\"H1992\"*. Therefore|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"* had|strong=\"H1961\"* inheritance|strong=\"H5159\"* in|strong=\"H8432\"* the|strong=\"H3588\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* their|strong=\"H1992\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5704\"* third|strong=\"H7992\"* lot|strong=\"H1486\"* came|strong=\"H1961\"* up|strong=\"H5927\"* for|strong=\"H5704\"* the|strong=\"H5704\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"* according to|strong=\"H5704\"* their|strong=\"H1961\"* families|strong=\"H4940\"*. The|strong=\"H5704\"* border|strong=\"H1366\"* of|strong=\"H1121\"* their|strong=\"H1961\"* inheritance|strong=\"H5159\"* was|strong=\"H1961\"* to|strong=\"H5704\"* Sarid|strong=\"H8301\"*." + }, + { + "verseNum": 11, + "text": "Their|strong=\"H6440\"* border|strong=\"H1366\"* went|strong=\"H5927\"* up|strong=\"H5927\"* westward|strong=\"H3220\"*, even|strong=\"H5921\"* to|strong=\"H5927\"* Maralah|strong=\"H4831\"*, and|strong=\"H6440\"* reached|strong=\"H6293\"* to|strong=\"H5927\"* Dabbesheth|strong=\"H1708\"*. It|strong=\"H5921\"* reached|strong=\"H6293\"* to|strong=\"H5927\"* the|strong=\"H6440\"* brook|strong=\"H5158\"* that|strong=\"H5927\"* is|strong=\"H6440\"* before|strong=\"H6440\"* Jokneam|strong=\"H3362\"*." + }, + { + "verseNum": 12, + "text": "It|strong=\"H5921\"* turned|strong=\"H7725\"* from|strong=\"H7725\"* Sarid|strong=\"H8301\"* eastward|strong=\"H6924\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* sunrise|strong=\"H4217\"* to|strong=\"H7725\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Chisloth Tabor. It|strong=\"H5921\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H7725\"* Daberath|strong=\"H1705\"*, and|strong=\"H7725\"* went|strong=\"H3318\"* up|strong=\"H5927\"* to|strong=\"H7725\"* Japhia|strong=\"H3309\"*." + }, + { + "verseNum": 13, + "text": "From|strong=\"H3318\"* there|strong=\"H8033\"* it|strong=\"H8033\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* eastward|strong=\"H6924\"* to|strong=\"H3318\"* Gath Hepher, to|strong=\"H3318\"* Ethkazin; and|strong=\"H8033\"* it|strong=\"H8033\"* went|strong=\"H3318\"* out|strong=\"H3318\"* at|strong=\"H3318\"* Rimmon|strong=\"H7417\"* which|strong=\"H8033\"* stretches|strong=\"H8388\"* to|strong=\"H3318\"* Neah|strong=\"H5269\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H5437\"* border|strong=\"H1366\"* turned|strong=\"H5437\"* around|strong=\"H5437\"* it|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H5437\"* north|strong=\"H6828\"* to|strong=\"H1961\"* Hannathon|strong=\"H2615\"*; and|strong=\"H5437\"* it|strong=\"H1961\"* ended|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H5437\"* valley|strong=\"H1516\"* of|strong=\"H1366\"* Iphtah El;" + }, + { + "verseNum": 15, + "text": "Kattath|strong=\"H7005\"*, Nahalal|strong=\"H5096\"*, Shimron|strong=\"H8110\"*, Idalah|strong=\"H3030\"*, and|strong=\"H5892\"* Bethlehem|strong=\"H1035\"*: twelve|strong=\"H8147\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their|strong=\"H8147\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 16, + "text": "This|strong=\"H2063\"* is|strong=\"H5892\"* the|strong=\"H1121\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"* according to|strong=\"H1121\"* their families|strong=\"H4940\"*, these|strong=\"H2063\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3318\"* fourth|strong=\"H7243\"* lot|strong=\"H1486\"* came|strong=\"H3318\"* out|strong=\"H3318\"* for|strong=\"H1121\"* Issachar|strong=\"H3485\"*, even for|strong=\"H1121\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"* according to|strong=\"H3318\"* their|strong=\"H3318\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 18, + "text": "Their|strong=\"H1961\"* border|strong=\"H1366\"* was|strong=\"H1961\"* to|strong=\"H1961\"* Jezreel|strong=\"H3157\"*, Chesulloth|strong=\"H3694\"*, Shunem|strong=\"H7766\"*," + }, + { + "verseNum": 19, + "text": "Hapharaim|strong=\"H2663\"*, Shion|strong=\"H7866\"*, Anaharath," + }, + { + "verseNum": 20, + "text": "Rabbith|strong=\"H7245\"*, Kishion|strong=\"H7191\"*, Ebez," + }, + { + "verseNum": 21, + "text": "Remeth|strong=\"H7432\"*, Engannim, En Haddah, and|strong=\"H5873\"* Beth Pazzez." + }, + { + "verseNum": 22, + "text": "The|strong=\"H1961\"* border|strong=\"H1366\"* reached|strong=\"H6293\"* to|strong=\"H1961\"* Tabor|strong=\"H8396\"*, Shahazumah|strong=\"H7831\"*, and|strong=\"H5892\"* Beth Shemesh. Their|strong=\"H1961\"* border|strong=\"H1366\"* ended|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H1961\"* Jordan|strong=\"H3383\"*: sixteen|strong=\"H8337\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their|strong=\"H1961\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 23, + "text": "This|strong=\"H2063\"* is|strong=\"H5892\"* the|strong=\"H1121\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"* according to|strong=\"H1121\"* their families|strong=\"H4940\"*, the|strong=\"H1121\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H3318\"* fifth|strong=\"H2549\"* lot|strong=\"H1486\"* came|strong=\"H3318\"* out|strong=\"H3318\"* for|strong=\"H1121\"* the|strong=\"H3318\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asher according to|strong=\"H3318\"* their|strong=\"H3318\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 25, + "text": "Their|strong=\"H1961\"* border|strong=\"H1366\"* was|strong=\"H1961\"* Helkath|strong=\"H2520\"*, Hali|strong=\"H2482\"*, Beten, Achshaph," + }, + { + "verseNum": 26, + "text": "Allammelech, Amad|strong=\"H6008\"*, Mishal|strong=\"H4861\"*. It reached|strong=\"H6293\"* to|strong=\"H3220\"* Carmel|strong=\"H3760\"* westward|strong=\"H3220\"*, and|strong=\"H3220\"* to|strong=\"H3220\"* Shihorlibnath." + }, + { + "verseNum": 27, + "text": "It|strong=\"H7725\"* turned|strong=\"H7725\"* toward|strong=\"H3318\"* the|strong=\"H7725\"* sunrise|strong=\"H4217\"* to|strong=\"H7725\"* Beth Dagon, and|strong=\"H7725\"* reached|strong=\"H6293\"* to|strong=\"H7725\"* Zebulun|strong=\"H2074\"*, and|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H7725\"* valley|strong=\"H1516\"* of|strong=\"H1516\"* Iphtah El northward|strong=\"H6828\"* to|strong=\"H7725\"* Beth Emek and|strong=\"H7725\"* Neiel|strong=\"H5272\"*. It|strong=\"H7725\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H7725\"* Cabul|strong=\"H3521\"* on|strong=\"H3318\"* the|strong=\"H7725\"* left|strong=\"H8040\"* hand|strong=\"H8040\"*," + }, + { + "verseNum": 28, + "text": "and|strong=\"H7227\"* Ebron|strong=\"H5683\"*, Rehob|strong=\"H7340\"*, Hammon|strong=\"H2540\"*, and|strong=\"H7227\"* Kanah|strong=\"H7071\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* great|strong=\"H7227\"* Sidon|strong=\"H6721\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H7725\"* border|strong=\"H1366\"* turned|strong=\"H7725\"* to|strong=\"H5704\"* Ramah|strong=\"H7414\"*, to|strong=\"H5704\"* the|strong=\"H7725\"* fortified|strong=\"H4013\"* city|strong=\"H5892\"* of|strong=\"H5892\"* Tyre|strong=\"H6865\"*; and|strong=\"H7725\"* the|strong=\"H7725\"* border|strong=\"H1366\"* turned|strong=\"H7725\"* to|strong=\"H5704\"* Hosah|strong=\"H2621\"*. It|strong=\"H7725\"* ended|strong=\"H1961\"* at|strong=\"H7725\"* the|strong=\"H7725\"* sea|strong=\"H3220\"* by|strong=\"H5892\"* the|strong=\"H7725\"* region|strong=\"H2256\"* of|strong=\"H5892\"* Achzib;" + }, + { + "verseNum": 30, + "text": "Ummah|strong=\"H5981\"* also, and|strong=\"H6242\"* Aphek, and|strong=\"H6242\"* Rehob|strong=\"H7340\"*: twenty-two|strong=\"H6242\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their|strong=\"H8147\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 31, + "text": "This|strong=\"H2063\"* is|strong=\"H5892\"* the|strong=\"H1121\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asher according to|strong=\"H1121\"* their families|strong=\"H4940\"*, these|strong=\"H2063\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"H3318\"* sixth|strong=\"H8345\"* lot|strong=\"H1486\"* came|strong=\"H3318\"* out|strong=\"H3318\"* for|strong=\"H1121\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*, even for|strong=\"H1121\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"* according to|strong=\"H3318\"* their|strong=\"H3318\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 33, + "text": "Their|strong=\"H1961\"* border|strong=\"H1366\"* was|strong=\"H1961\"* from|strong=\"H5704\"* Heleph|strong=\"H2501\"*, from|strong=\"H5704\"* the|strong=\"H5704\"* oak in|strong=\"H1961\"* Zaanannim|strong=\"H6815\"*, Adami-nekeb, and|strong=\"H3383\"* Jabneel|strong=\"H2995\"*, to|strong=\"H5704\"* Lakkum|strong=\"H3946\"*. It|strong=\"H1961\"* ended|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H5704\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"H7725\"* border|strong=\"H1366\"* turned|strong=\"H7725\"* westward|strong=\"H3220\"* to|strong=\"H7725\"* Aznoth Tabor, and|strong=\"H3063\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H7725\"* there|strong=\"H8033\"* to|strong=\"H7725\"* Hukkok|strong=\"H2712\"*. It|strong=\"H7725\"* reached|strong=\"H6293\"* to|strong=\"H7725\"* Zebulun|strong=\"H2074\"* on|strong=\"H3318\"* the|strong=\"H7725\"* south|strong=\"H5045\"*, and|strong=\"H3063\"* reached|strong=\"H6293\"* to|strong=\"H7725\"* Asher on|strong=\"H3318\"* the|strong=\"H7725\"* west|strong=\"H3220\"*, and|strong=\"H3063\"* to|strong=\"H7725\"* Judah|strong=\"H3063\"* at|strong=\"H7725\"* the|strong=\"H7725\"* Jordan|strong=\"H3383\"* toward|strong=\"H3318\"* the|strong=\"H7725\"* sunrise|strong=\"H4217\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H5892\"* fortified|strong=\"H4013\"* cities|strong=\"H5892\"* were|strong=\"H5892\"* Ziddim|strong=\"H6661\"*, Zer|strong=\"H6863\"*, Hammath|strong=\"H2575\"*, Rakkath|strong=\"H7557\"*, Chinnereth|strong=\"H3672\"*," + }, + { + "verseNum": 36, + "text": "Adamah, Ramah|strong=\"H7414\"*, Hazor|strong=\"H2674\"*," + }, + { + "verseNum": 37, + "text": "Kedesh|strong=\"H6943\"*, Edrei, En Hazor," + }, + { + "verseNum": 38, + "text": "Iron|strong=\"H3375\"*, Migdal El, Horem|strong=\"H2765\"*, Beth Anath, and|strong=\"H5892\"* Beth Shemesh; nineteen|strong=\"H8672\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 39, + "text": "This|strong=\"H2063\"* is|strong=\"H5892\"* the|strong=\"H1121\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"* according to|strong=\"H1121\"* their families|strong=\"H4940\"*, the|strong=\"H1121\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 40, + "text": "The|strong=\"H3318\"* seventh|strong=\"H7637\"* lot|strong=\"H1486\"* came|strong=\"H3318\"* out|strong=\"H3318\"* for|strong=\"H1121\"* the|strong=\"H3318\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* according to|strong=\"H3318\"* their|strong=\"H3318\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 41, + "text": "The|strong=\"H1961\"* border|strong=\"H1366\"* of|strong=\"H1366\"* their|strong=\"H1961\"* inheritance|strong=\"H5159\"* was|strong=\"H1961\"* Zorah|strong=\"H6881\"*, Eshtaol, Irshemesh," + }, + { + "verseNum": 42, + "text": "Shaalabbin|strong=\"H8169\"*, Aijalon, Ithlah|strong=\"H3494\"*," + }, + { + "verseNum": 43, + "text": "Elon, Timnah|strong=\"H8553\"*, Ekron|strong=\"H6138\"*," + }, + { + "verseNum": 44, + "text": "Eltekeh, Gibbethon|strong=\"H1405\"*, Baalath|strong=\"H1191\"*," + }, + { + "verseNum": 45, + "text": "Jehud|strong=\"H3055\"*, Bene Berak, Gath Rimmon," + }, + { + "verseNum": 46, + "text": "Me|strong=\"H5973\"* Jarkon, and|strong=\"H5973\"* Rakkon|strong=\"H7542\"*, with|strong=\"H5973\"* the|strong=\"H5973\"* border|strong=\"H1366\"* opposite|strong=\"H4136\"* Joppa|strong=\"H3305\"*." + }, + { + "verseNum": 47, + "text": "The|strong=\"H5221\"* border|strong=\"H1366\"* of|strong=\"H1121\"* the|strong=\"H5221\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* went|strong=\"H3318\"* out|strong=\"H3318\"* beyond|strong=\"H3318\"* them|strong=\"H1992\"*; for|strong=\"H7121\"* the|strong=\"H5221\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* went|strong=\"H3318\"* up|strong=\"H5927\"* and|strong=\"H1121\"* fought|strong=\"H3898\"* against|strong=\"H5973\"* Leshem|strong=\"H3959\"*, and|strong=\"H1121\"* took|strong=\"H3920\"* it|strong=\"H7121\"*, and|strong=\"H1121\"* struck|strong=\"H5221\"* it|strong=\"H7121\"* with|strong=\"H5973\"* the|strong=\"H5221\"* edge|strong=\"H6310\"* of|strong=\"H1121\"* the|strong=\"H5221\"* sword|strong=\"H2719\"*, and|strong=\"H1121\"* possessed|strong=\"H3423\"* it|strong=\"H7121\"*, and|strong=\"H1121\"* lived|strong=\"H3427\"* therein|strong=\"H7121\"*, and|strong=\"H1121\"* called|strong=\"H7121\"* Leshem|strong=\"H3959\"*, Dan|strong=\"H1835\"*, after|strong=\"H5927\"* the|strong=\"H5221\"* name|strong=\"H8034\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* their|strong=\"H1992\"* forefather." + }, + { + "verseNum": 48, + "text": "This|strong=\"H2063\"* is|strong=\"H5892\"* the|strong=\"H1121\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* according to|strong=\"H1121\"* their|strong=\"H1835\"* families|strong=\"H4940\"*, these|strong=\"H2063\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their|strong=\"H1835\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 49, + "text": "So|strong=\"H5414\"* they|strong=\"H3478\"* finished|strong=\"H3615\"* distributing the|strong=\"H5414\"* land|strong=\"H5159\"* for|strong=\"H1121\"* inheritance|strong=\"H5159\"* by|strong=\"H3478\"* its|strong=\"H5414\"* borders|strong=\"H1367\"*. The|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* gave|strong=\"H5414\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"* to|strong=\"H3478\"* Joshua|strong=\"H3091\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"* among|strong=\"H8432\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 50, + "text": "According|strong=\"H5921\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s commandment|strong=\"H6310\"*, they|strong=\"H3068\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* the|strong=\"H5921\"* city|strong=\"H5892\"* which|strong=\"H3068\"* he|strong=\"H3068\"* asked|strong=\"H7592\"*, even|strong=\"H1129\"* Timnathserah in|strong=\"H3427\"* the|strong=\"H5921\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H3068\"* Ephraim; and|strong=\"H3068\"* he|strong=\"H3068\"* built|strong=\"H1129\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, and|strong=\"H3068\"* lived|strong=\"H3427\"* there|strong=\"H3427\"*." + }, + { + "verseNum": 51, + "text": "These|strong=\"H6440\"* are|strong=\"H1121\"* the|strong=\"H6440\"* inheritances|strong=\"H5159\"*, which|strong=\"H3068\"* Eleazar the|strong=\"H6440\"* priest|strong=\"H3548\"*, Joshua|strong=\"H3091\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H6440\"* fathers’ houses of|strong=\"H1121\"* the|strong=\"H6440\"* tribes|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, distributed|strong=\"H2505\"* for|strong=\"H6440\"* inheritance|strong=\"H5159\"* by|strong=\"H3068\"* lot|strong=\"H1486\"* in|strong=\"H3478\"* Shiloh|strong=\"H7887\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, at|strong=\"H3478\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*. So|strong=\"H6440\"* they|strong=\"H3068\"* finished|strong=\"H3615\"* dividing|strong=\"H2505\"* the|strong=\"H6440\"* land|strong=\"H5159\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Joshua|strong=\"H3091\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘Assign|strong=\"H5414\"* the|strong=\"H5414\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* refuge|strong=\"H4733\"*, of|strong=\"H1121\"* which|strong=\"H5892\"* I|strong=\"H5414\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5414\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*," + }, + { + "verseNum": 3, + "text": "that|strong=\"H5315\"* the|strong=\"H5221\"* man|strong=\"H5315\"* slayer|strong=\"H7523\"* who|strong=\"H5315\"* kills|strong=\"H5221\"* any|strong=\"H5221\"* person|strong=\"H5315\"* accidentally|strong=\"H7684\"* or|strong=\"H1847\"* unintentionally|strong=\"H7684\"* may|strong=\"H1961\"* flee|strong=\"H5127\"* there|strong=\"H8033\"*. They|strong=\"H8033\"* shall|strong=\"H5315\"* be|strong=\"H1961\"* to|strong=\"H1961\"* you|strong=\"H5221\"* for|strong=\"H5315\"* a|strong=\"H3068\"* refuge|strong=\"H4733\"* from|strong=\"H5315\"* the|strong=\"H5221\"* avenger|strong=\"H1350\"* of|strong=\"H1818\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H1931\"* shall|strong=\"H5892\"* flee|strong=\"H5127\"* to|strong=\"H1696\"* one|strong=\"H1931\"* of|strong=\"H1697\"* those|strong=\"H1931\"* cities|strong=\"H5892\"*, and|strong=\"H5892\"* shall|strong=\"H5892\"* stand|strong=\"H5975\"* at|strong=\"H3427\"* the|strong=\"H5414\"* entrance|strong=\"H6607\"* of|strong=\"H1697\"* the|strong=\"H5414\"* gate|strong=\"H8179\"* of|strong=\"H1697\"* the|strong=\"H5414\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* declare|strong=\"H1696\"* his|strong=\"H5414\"* case|strong=\"H1697\"* in|strong=\"H3427\"* the|strong=\"H5414\"* ears of|strong=\"H1697\"* the|strong=\"H5414\"* elders|strong=\"H2205\"* of|strong=\"H1697\"* that|strong=\"H1931\"* city|strong=\"H5892\"*. They|strong=\"H1931\"* shall|strong=\"H5892\"* take|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H5414\"* the|strong=\"H5414\"* city|strong=\"H5892\"* with|strong=\"H5973\"* them|strong=\"H5414\"*, and|strong=\"H5892\"* give|strong=\"H5414\"* him|strong=\"H5414\"* a|strong=\"H3068\"* place|strong=\"H4725\"*, that|strong=\"H1931\"* he|strong=\"H1931\"* may|strong=\"H5414\"* live|strong=\"H3427\"* among|strong=\"H5973\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 5, + "text": "If|strong=\"H3588\"* the|strong=\"H3588\"* avenger|strong=\"H1350\"* of|strong=\"H3027\"* blood|strong=\"H1818\"* pursues|strong=\"H7291\"* him|strong=\"H5221\"*, then|strong=\"H3588\"* they|strong=\"H3588\"* shall|strong=\"H3027\"* not|strong=\"H3808\"* deliver|strong=\"H5462\"* up|strong=\"H5462\"* the|strong=\"H3588\"* man slayer|strong=\"H7523\"* into|strong=\"H3027\"* his|strong=\"H5221\"* hand|strong=\"H3027\"*; because|strong=\"H3588\"* he|strong=\"H1931\"* struck|strong=\"H5221\"* his|strong=\"H5221\"* neighbor|strong=\"H7453\"* unintentionally|strong=\"H1847\"*, and|strong=\"H3027\"* didn’t hate|strong=\"H8130\"* him|strong=\"H5221\"* before|strong=\"H3808\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H1931\"* shall|strong=\"H3548\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* that|strong=\"H3117\"* city|strong=\"H5892\"* until|strong=\"H5704\"* he|strong=\"H1931\"* stands|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* congregation|strong=\"H5712\"* for|strong=\"H5704\"* judgment|strong=\"H4941\"*, until|strong=\"H5704\"* the|strong=\"H6440\"* death|strong=\"H4194\"* of|strong=\"H1004\"* the|strong=\"H6440\"* high|strong=\"H1419\"* priest|strong=\"H3548\"* that|strong=\"H3117\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* in|strong=\"H3427\"* those|strong=\"H1992\"* days|strong=\"H3117\"*. Then|strong=\"H1961\"* the|strong=\"H6440\"* man|strong=\"H1419\"* slayer|strong=\"H7523\"* shall|strong=\"H3548\"* return|strong=\"H7725\"*, and|strong=\"H7725\"* come|strong=\"H1961\"* to|strong=\"H5704\"* his|strong=\"H7725\"* own|strong=\"H1961\"* city|strong=\"H5892\"*, and|strong=\"H7725\"* to|strong=\"H5704\"* his|strong=\"H7725\"* own|strong=\"H1961\"* house|strong=\"H1004\"*, to|strong=\"H5704\"* the|strong=\"H6440\"* city|strong=\"H5892\"* he|strong=\"H1931\"* fled|strong=\"H5127\"* from|strong=\"H7725\"*.’”" + }, + { + "verseNum": 7, + "text": "They|strong=\"H1931\"* set|strong=\"H6942\"* apart|strong=\"H6942\"* Kedesh|strong=\"H6943\"* in|strong=\"H7927\"* Galilee|strong=\"H1551\"* in|strong=\"H7927\"* the|strong=\"H6942\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Naphtali|strong=\"H5321\"*, Shechem|strong=\"H7927\"* in|strong=\"H7927\"* the|strong=\"H6942\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim, and|strong=\"H3063\"* Kiriath Arba (also|strong=\"H3063\"* called Hebron|strong=\"H2275\"*) in|strong=\"H7927\"* the|strong=\"H6942\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 8, + "text": "Beyond|strong=\"H5676\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"* at|strong=\"H3383\"* Jericho|strong=\"H3405\"* eastward|strong=\"H4217\"*, they|strong=\"H5414\"* assigned|strong=\"H5414\"* Bezer|strong=\"H1221\"* in|strong=\"H1474\"* the|strong=\"H5414\"* wilderness|strong=\"H4057\"* in|strong=\"H1474\"* the|strong=\"H5414\"* plain|strong=\"H4334\"* out|strong=\"H5414\"* of|strong=\"H4294\"* the|strong=\"H5414\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Reuben|strong=\"H7205\"*, Ramoth|strong=\"H7216\"* in|strong=\"H1474\"* Gilead|strong=\"H1568\"* out|strong=\"H5414\"* of|strong=\"H4294\"* the|strong=\"H5414\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Gad|strong=\"H1410\"*, and|strong=\"H4519\"* Golan|strong=\"H1474\"* in|strong=\"H1474\"* Bashan|strong=\"H1316\"* out|strong=\"H5414\"* of|strong=\"H4294\"* the|strong=\"H5414\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Manasseh|strong=\"H4519\"*." + }, + { + "verseNum": 9, + "text": "These|strong=\"H3605\"* were|strong=\"H3478\"* the|strong=\"H3605\"* appointed|strong=\"H5975\"* cities|strong=\"H5892\"* for|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* for|strong=\"H5704\"* the|strong=\"H3605\"* alien|strong=\"H1616\"* who|strong=\"H3605\"* lives|strong=\"H5315\"* among|strong=\"H8432\"* them|strong=\"H6440\"*, that|strong=\"H3605\"* whoever|strong=\"H3605\"* kills|strong=\"H5221\"* any|strong=\"H3605\"* person|strong=\"H5315\"* unintentionally|strong=\"H7684\"* might|strong=\"H1121\"* flee|strong=\"H5127\"* there|strong=\"H8033\"*, and|strong=\"H1121\"* not|strong=\"H3808\"* die|strong=\"H4191\"* by|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3605\"* avenger|strong=\"H1350\"* of|strong=\"H1121\"* blood|strong=\"H1818\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* stands|strong=\"H5975\"* trial before|strong=\"H6440\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H1121\"* the|strong=\"H3091\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ houses of|strong=\"H1121\"* the|strong=\"H3091\"* Levites|strong=\"H3881\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3478\"* Eleazar the|strong=\"H3091\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* Joshua|strong=\"H3091\"* the|strong=\"H3091\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* the|strong=\"H3091\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ houses of|strong=\"H1121\"* the|strong=\"H3091\"* tribes|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H3091\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5414\"* at|strong=\"H3427\"* Shiloh|strong=\"H7887\"* in|strong=\"H3427\"* the|strong=\"H5414\"* land of|strong=\"H3068\"* Canaan|strong=\"H3667\"*, saying|strong=\"H1696\"*, “Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* through|strong=\"H3027\"* Moses|strong=\"H4872\"* to|strong=\"H1696\"* give|strong=\"H5414\"* us|strong=\"H5414\"* cities|strong=\"H5892\"* to|strong=\"H1696\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"*, with|strong=\"H3068\"* their|strong=\"H3068\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* for|strong=\"H3027\"* our|strong=\"H3068\"* livestock.”" + }, + { + "verseNum": 3, + "text": "The|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* gave|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"* out|strong=\"H5414\"* of|strong=\"H1121\"* their|strong=\"H3068\"* inheritance|strong=\"H5159\"*, according|strong=\"H6310\"* to|strong=\"H3478\"* the|strong=\"H5414\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, these|strong=\"H3881\"* cities|strong=\"H5892\"* with|strong=\"H3068\"* their|strong=\"H3068\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H4480\"* lot|strong=\"H1486\"* came|strong=\"H1961\"* out|strong=\"H3318\"* for|strong=\"H1121\"* the|strong=\"H4480\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H4480\"* Kohathites|strong=\"H6956\"*. The|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H4480\"* priest|strong=\"H3548\"*, who|strong=\"H3548\"* were|strong=\"H1961\"* of|strong=\"H1121\"* the|strong=\"H4480\"* Levites|strong=\"H3881\"*, had|strong=\"H1961\"* thirteen|strong=\"H7969\"* cities|strong=\"H5892\"* by|strong=\"H3318\"* lot|strong=\"H1486\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H4480\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H4480\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H4480\"* Simeonites|strong=\"H8099\"*, and|strong=\"H1121\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H4480\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H2677\"* rest|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H2677\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"* had|strong=\"H4519\"* ten|strong=\"H6235\"* cities|strong=\"H5892\"* by|strong=\"H5892\"* lot|strong=\"H1486\"* out of|strong=\"H1121\"* the|strong=\"H2677\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H2677\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Ephraim, out of|strong=\"H1121\"* the|strong=\"H2677\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*, and|strong=\"H1121\"* out of|strong=\"H1121\"* the|strong=\"H2677\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H2677\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gershon|strong=\"H1648\"* had|strong=\"H4519\"* thirteen|strong=\"H7969\"* cities|strong=\"H5892\"* by|strong=\"H5892\"* lot|strong=\"H1486\"* out of|strong=\"H1121\"* the|strong=\"H2677\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H2677\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"*, out of|strong=\"H1121\"* the|strong=\"H2677\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Asher, out of|strong=\"H1121\"* the|strong=\"H2677\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*, and|strong=\"H1121\"* out of|strong=\"H1121\"* the|strong=\"H2677\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* in|strong=\"H5892\"* Bashan|strong=\"H1316\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"* according to|strong=\"H1121\"* their|strong=\"H8147\"* families|strong=\"H4940\"* had|strong=\"H1121\"* twelve|strong=\"H8147\"* cities|strong=\"H5892\"* out|strong=\"H8147\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, out|strong=\"H8147\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, and|strong=\"H1121\"* out|strong=\"H8147\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* gave|strong=\"H5414\"* these|strong=\"H3881\"* cities|strong=\"H5892\"* with|strong=\"H3068\"* their|strong=\"H3068\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* by|strong=\"H3027\"* lot|strong=\"H1486\"* to|strong=\"H3478\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H5414\"* gave|strong=\"H5414\"* out|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H5414\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* out|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H5414\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*, these|strong=\"H7121\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* are|strong=\"H1121\"* mentioned|strong=\"H7121\"* by|strong=\"H7121\"* name|strong=\"H8034\"*:" + }, + { + "verseNum": 10, + "text": "and|strong=\"H1121\"* they|strong=\"H1992\"* were|strong=\"H1961\"* for|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, of|strong=\"H1121\"* the|strong=\"H3588\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3588\"* Kohathites|strong=\"H6956\"*, who|strong=\"H1121\"* were|strong=\"H1961\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*; for|strong=\"H3588\"* theirs|strong=\"H1992\"* was|strong=\"H1961\"* the|strong=\"H3588\"* first|strong=\"H7223\"* lot|strong=\"H1486\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H1992\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* Kiriath Arba, named after|strong=\"H1992\"* the|strong=\"H5414\"* father of|strong=\"H2022\"* Anak|strong=\"H6061\"* (also|strong=\"H1992\"* called Hebron|strong=\"H2275\"*), in|strong=\"H5414\"* the|strong=\"H5414\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Judah|strong=\"H3063\"*, with|strong=\"H2022\"* its|strong=\"H5414\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* around|strong=\"H5439\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 12, + "text": "But they|strong=\"H5414\"* gave|strong=\"H5414\"* the|strong=\"H5414\"* fields|strong=\"H7704\"* of|strong=\"H1121\"* the|strong=\"H5414\"* city|strong=\"H5892\"* and|strong=\"H1121\"* its|strong=\"H5414\"* villages|strong=\"H2691\"* to|strong=\"H5414\"* Caleb|strong=\"H3612\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"* for|strong=\"H1121\"* his|strong=\"H5414\"* possession." + }, + { + "verseNum": 13, + "text": "To|strong=\"H5414\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H5414\"* priest|strong=\"H3548\"* they|strong=\"H5414\"* gave|strong=\"H5414\"* Hebron|strong=\"H2275\"* with|strong=\"H5892\"* its|strong=\"H5414\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, the|strong=\"H5414\"* city|strong=\"H5892\"* of|strong=\"H1121\"* refuge|strong=\"H4733\"* for|strong=\"H1121\"* the|strong=\"H5414\"* man|strong=\"H1121\"* slayer|strong=\"H7523\"*, Libnah|strong=\"H3841\"* with|strong=\"H5892\"* its|strong=\"H5414\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 14, + "text": "Jattir|strong=\"H3492\"* with its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Eshtemoa with its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 15, + "text": "Holon|strong=\"H2473\"* with its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Debir|strong=\"H1688\"* with its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 16, + "text": "Ain|strong=\"H5871\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Juttah|strong=\"H3194\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, and|strong=\"H5892\"* Beth Shemesh with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: nine|strong=\"H8672\"* cities|strong=\"H5892\"* out|strong=\"H4054\"* of|strong=\"H7626\"* those two|strong=\"H8147\"* tribes|strong=\"H7626\"*." + }, + { + "verseNum": 17, + "text": "Out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H1391\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Benjamin|strong=\"H1144\"*, Gibeon|strong=\"H1391\"* with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Geba|strong=\"H1387\"* with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 18, + "text": "Anathoth|strong=\"H6068\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, and|strong=\"H5892\"* Almon|strong=\"H5960\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: four cities|strong=\"H5892\"*." + }, + { + "verseNum": 19, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, the|strong=\"H3605\"* priests|strong=\"H3548\"*, were|strong=\"H1121\"* thirteen|strong=\"H7969\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H1961\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"*, the|strong=\"H1961\"* Levites|strong=\"H3881\"*, even the|strong=\"H1961\"* rest|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"*, had|strong=\"H1961\"* the|strong=\"H1961\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* their|strong=\"H1961\"* lot|strong=\"H1486\"* out of|strong=\"H1121\"* the|strong=\"H1961\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Ephraim." + }, + { + "verseNum": 21, + "text": "They|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* Shechem|strong=\"H7927\"* with|strong=\"H5892\"* its|strong=\"H5414\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* in|strong=\"H5892\"* the|strong=\"H5414\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H5892\"* Ephraim, the|strong=\"H5414\"* city|strong=\"H5892\"* of|strong=\"H5892\"* refuge|strong=\"H4733\"* for|strong=\"H5892\"* the|strong=\"H5414\"* man slayer|strong=\"H7523\"*, and|strong=\"H5892\"* Gezer|strong=\"H1507\"* with|strong=\"H5892\"* its|strong=\"H5414\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 22, + "text": "Kibzaim|strong=\"H6911\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, and|strong=\"H5892\"* Beth Horon with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: four cities|strong=\"H5892\"*." + }, + { + "verseNum": 23, + "text": "Out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H4294\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Dan|strong=\"H1835\"*, Elteke with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Gibbethon|strong=\"H1405\"* with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 24, + "text": "Aijalon with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Gath Rimmon with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: four cities|strong=\"H5892\"*." + }, + { + "verseNum": 25, + "text": "Out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H8147\"* half-tribe|strong=\"H4276\"* of|strong=\"H4294\"* Manasseh|strong=\"H4519\"*, Taanach|strong=\"H8590\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, and|strong=\"H5892\"* Gath Rimmon with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: two|strong=\"H8147\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 26, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3605\"* rest|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"* were|strong=\"H1121\"* ten|strong=\"H6235\"* with|strong=\"H5892\"* their|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"H5892\"* gave to|strong=\"H1121\"* the|strong=\"H2677\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gershon|strong=\"H1648\"*, of|strong=\"H1121\"* the|strong=\"H2677\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H2677\"* Levites|strong=\"H3881\"*, out|strong=\"H4054\"* of|strong=\"H1121\"* the|strong=\"H2677\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* Golan|strong=\"H1474\"* in|strong=\"H5892\"* Bashan|strong=\"H1316\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, the|strong=\"H2677\"* city|strong=\"H5892\"* of|strong=\"H1121\"* refuge|strong=\"H4733\"* for|strong=\"H1121\"* the|strong=\"H2677\"* man|strong=\"H1121\"* slayer|strong=\"H7523\"*, and|strong=\"H1121\"* Be|strong=\"H1121\"* Eshterah with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: two|strong=\"H8147\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 28, + "text": "Out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H3485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Issachar|strong=\"H3485\"*, Kishion|strong=\"H7191\"* with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Daberath|strong=\"H1705\"* with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 29, + "text": "Jarmuth|strong=\"H3412\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, En Gannim with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: four cities|strong=\"H5892\"*." + }, + { + "verseNum": 30, + "text": "Out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H5658\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Asher, Mishal|strong=\"H4861\"* with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Abdon|strong=\"H5658\"* with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 31, + "text": "Helkath|strong=\"H2520\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, and|strong=\"H5892\"* Rehob|strong=\"H7340\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: four cities|strong=\"H5892\"*." + }, + { + "verseNum": 32, + "text": "Out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H5892\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Naphtali|strong=\"H5321\"*, Kedesh|strong=\"H6943\"* in|strong=\"H5892\"* Galilee|strong=\"H1551\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, the|strong=\"H5892\"* city|strong=\"H5892\"* of|strong=\"H4294\"* refuge|strong=\"H4733\"* for|strong=\"H5892\"* the|strong=\"H5892\"* man slayer|strong=\"H7523\"*, Hammothdor with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, and|strong=\"H5892\"* Kartan|strong=\"H7178\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: three|strong=\"H7969\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 33, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H3605\"* Gershonites|strong=\"H1649\"* according to|strong=\"H5892\"* their|strong=\"H3605\"* families|strong=\"H4940\"* were|strong=\"H4940\"* thirteen|strong=\"H7969\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*." + }, + { + "verseNum": 34, + "text": "To|strong=\"H1121\"* the|strong=\"H1121\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, the|strong=\"H1121\"* rest|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Levites|strong=\"H3881\"*, out|strong=\"H4054\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*, Jokneam|strong=\"H3362\"* with|strong=\"H3498\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Kartah|strong=\"H7177\"* with|strong=\"H3498\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 35, + "text": "Dimnah|strong=\"H1829\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, and|strong=\"H5892\"* Nahalal|strong=\"H5096\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: four cities|strong=\"H5892\"*." + }, + { + "verseNum": 36, + "text": "Out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H7205\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Reuben|strong=\"H7205\"*, Bezer|strong=\"H1221\"* with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Jahaz|strong=\"H3096\"* with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 37, + "text": "Kedemoth|strong=\"H6932\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, and|strong=\"H5892\"* Mephaath|strong=\"H4158\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: four cities|strong=\"H5892\"*." + }, + { + "verseNum": 38, + "text": "Out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H5892\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Gad|strong=\"H1410\"*, Ramoth|strong=\"H7433\"* in|strong=\"H5892\"* Gilead|strong=\"H1568\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, the|strong=\"H5892\"* city|strong=\"H5892\"* of|strong=\"H4294\"* refuge|strong=\"H4733\"* for|strong=\"H5892\"* the|strong=\"H5892\"* man slayer|strong=\"H7523\"*, and|strong=\"H5892\"* Mahanaim|strong=\"H4266\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 39, + "text": "Heshbon|strong=\"H2809\"* with|strong=\"H5892\"* its|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Jazer|strong=\"H3270\"* with|strong=\"H5892\"* its|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: four cities|strong=\"H5892\"* in|strong=\"H5892\"* all|strong=\"H3605\"*." + }, + { + "verseNum": 40, + "text": "All|strong=\"H3605\"* these|strong=\"H8147\"* were|strong=\"H1961\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"* according to|strong=\"H1961\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, even the|strong=\"H3605\"* rest|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*. Their|strong=\"H3605\"* lot|strong=\"H1486\"* was|strong=\"H1961\"* twelve|strong=\"H8147\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 41, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* among|strong=\"H8432\"* the|strong=\"H3605\"* possessions of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* forty-eight|strong=\"H8083\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*." + }, + { + "verseNum": 42, + "text": "Each|strong=\"H3605\"* of|strong=\"H5892\"* these|strong=\"H3605\"* cities|strong=\"H5892\"* included|strong=\"H1961\"* their|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* around|strong=\"H5439\"* them|strong=\"H5439\"*. It|strong=\"H3651\"* was|strong=\"H1961\"* this|strong=\"H3651\"* way|strong=\"H3651\"* with|strong=\"H5892\"* all|strong=\"H3605\"* these|strong=\"H3605\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 43, + "text": "So|strong=\"H5414\"* Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* he|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3478\"* give|strong=\"H5414\"* to|strong=\"H3478\"* their|strong=\"H3605\"* fathers. They|strong=\"H3068\"* possessed|strong=\"H3423\"* it|strong=\"H5414\"*, and|strong=\"H3478\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 44, + "text": "Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* rest|strong=\"H5117\"* all|strong=\"H3605\"* around|strong=\"H5439\"*, according|strong=\"H3027\"* to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* their|strong=\"H3605\"* fathers. Not|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H3605\"* of|strong=\"H3068\"* all|strong=\"H3605\"* their|strong=\"H3605\"* enemies|strong=\"H3027\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* them|strong=\"H5414\"*. Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* all|strong=\"H3605\"* their|strong=\"H3605\"* enemies|strong=\"H3027\"* into|strong=\"H3027\"* their|strong=\"H3605\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 45, + "text": "Nothing|strong=\"H3808\"* failed|strong=\"H5307\"* of|strong=\"H1004\"* any|strong=\"H3605\"* good|strong=\"H2896\"* thing|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*. All|strong=\"H3605\"* came|strong=\"H3478\"* to|strong=\"H1696\"* pass." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H7121\"* Joshua|strong=\"H3091\"* called|strong=\"H7121\"* the|strong=\"H7121\"* Reubenites|strong=\"H7206\"*, the|strong=\"H7121\"* Gadites|strong=\"H1425\"*, and|strong=\"H3091\"* the|strong=\"H7121\"* half-tribe|strong=\"H2677\"* of|strong=\"H4294\"* Manasseh|strong=\"H4519\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"H4872\"* said|strong=\"H8085\"* to|strong=\"H3068\"* them|strong=\"H6680\"*, “You|strong=\"H6680\"* have|strong=\"H3068\"* kept|strong=\"H8104\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Moses|strong=\"H4872\"* the|strong=\"H3605\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*, and|strong=\"H4872\"* have|strong=\"H3068\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* my|strong=\"H8104\"* voice|strong=\"H6963\"* in|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H6680\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3117\"* have|strong=\"H3068\"* not|strong=\"H3808\"* left|strong=\"H5800\"* your|strong=\"H3068\"* brothers these|strong=\"H2088\"* many|strong=\"H7227\"* days|strong=\"H3117\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, but|strong=\"H3808\"* have|strong=\"H3068\"* performed|strong=\"H8104\"* the|strong=\"H8104\"* duty|strong=\"H4931\"* of|strong=\"H3068\"* the|strong=\"H8104\"* commandment|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H6258\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* rest|strong=\"H5117\"* to|strong=\"H1696\"* your|strong=\"H3068\"* brothers, as|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5414\"*. Therefore|strong=\"H6258\"* now|strong=\"H6258\"* return|strong=\"H6437\"* and|strong=\"H4872\"* go|strong=\"H3212\"* to|strong=\"H1696\"* your|strong=\"H3068\"* tents, to|strong=\"H1696\"* the|strong=\"H5414\"* land|strong=\"H5676\"* of|strong=\"H3068\"* your|strong=\"H3068\"* possession, which|strong=\"H3068\"* Moses|strong=\"H4872\"* the|strong=\"H5414\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* you|strong=\"H5414\"* beyond|strong=\"H5676\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 5, + "text": "Only|strong=\"H7535\"* take|strong=\"H8104\"* diligent|strong=\"H3966\"* heed|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* the|strong=\"H3605\"* commandment|strong=\"H4687\"* and|strong=\"H4872\"* the|strong=\"H3605\"* law|strong=\"H8451\"* which|strong=\"H3068\"* Moses|strong=\"H4872\"* the|strong=\"H3605\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*, to|strong=\"H3068\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, to|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"*, to|strong=\"H3068\"* hold|strong=\"H1692\"* fast|strong=\"H1692\"* to|strong=\"H3068\"* him|strong=\"H6213\"*, and|strong=\"H4872\"* to|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H6213\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* and|strong=\"H4872\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*.”" + }, + { + "verseNum": 6, + "text": "So|strong=\"H7971\"* Joshua|strong=\"H3091\"* blessed|strong=\"H1288\"* them|strong=\"H7971\"*, and|strong=\"H7971\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* away|strong=\"H7971\"*; and|strong=\"H7971\"* they went|strong=\"H3212\"* to|strong=\"H3212\"* their|strong=\"H7971\"* tents." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H3588\"* to|strong=\"H7971\"* the|strong=\"H3588\"* one|strong=\"H3588\"* half-tribe|strong=\"H2677\"* of|strong=\"H7626\"* Manasseh|strong=\"H4519\"* Moses|strong=\"H4872\"* had|strong=\"H4872\"* given|strong=\"H5414\"* inheritance in|strong=\"H5414\"* Bashan|strong=\"H1316\"*; but|strong=\"H3588\"* Joshua|strong=\"H3091\"* gave|strong=\"H5414\"* to|strong=\"H7971\"* the|strong=\"H3588\"* other|strong=\"H5676\"* half|strong=\"H2677\"* among|strong=\"H5973\"* their|strong=\"H5414\"* brothers beyond|strong=\"H5676\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"* westward|strong=\"H3220\"*. Moreover|strong=\"H1571\"* when|strong=\"H3588\"* Joshua|strong=\"H3091\"* sent|strong=\"H7971\"* them|strong=\"H5414\"* away|strong=\"H7971\"* to|strong=\"H7971\"* their|strong=\"H5414\"* tents, he|strong=\"H3588\"* blessed|strong=\"H1288\"* them|strong=\"H5414\"*," + }, + { + "verseNum": 8, + "text": "and|strong=\"H3701\"* spoke to|strong=\"H7725\"* them|strong=\"H7725\"*, saying, “Return|strong=\"H7725\"* with|strong=\"H5973\"* much|strong=\"H7227\"* wealth|strong=\"H5233\"* to|strong=\"H7725\"* your|strong=\"H7725\"* tents, with|strong=\"H5973\"* very|strong=\"H3966\"* much|strong=\"H7227\"* livestock|strong=\"H4735\"*, with|strong=\"H5973\"* silver|strong=\"H3701\"*, with|strong=\"H5973\"* gold|strong=\"H2091\"*, with|strong=\"H5973\"* bronze|strong=\"H5178\"*, with|strong=\"H5973\"* iron|strong=\"H1270\"*, and|strong=\"H3701\"* with|strong=\"H5973\"* very|strong=\"H3966\"* much|strong=\"H7227\"* clothing|strong=\"H8008\"*. Divide|strong=\"H2505\"* the|strong=\"H7725\"* plunder|strong=\"H7998\"* of|strong=\"H4735\"* your|strong=\"H7725\"* enemies with|strong=\"H5973\"* your|strong=\"H7725\"* brothers.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* and|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* and|strong=\"H1121\"* the|strong=\"H5921\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* returned|strong=\"H7725\"*, and|strong=\"H1121\"* departed|strong=\"H3212\"* from|strong=\"H7725\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* out|strong=\"H5921\"* of|strong=\"H1121\"* Shiloh|strong=\"H7887\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, to|strong=\"H7725\"* go|strong=\"H3212\"* to|strong=\"H7725\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, to|strong=\"H7725\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* their|strong=\"H3068\"* possession|strong=\"H3027\"*, which|strong=\"H3068\"* they|strong=\"H3068\"* owned, according|strong=\"H5921\"* to|strong=\"H7725\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H1121\"* they|strong=\"H8033\"* came to|strong=\"H5921\"* the|strong=\"H5921\"* region|strong=\"H1552\"* near|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*, that|strong=\"H4196\"* is|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* and|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* and|strong=\"H1121\"* the|strong=\"H5921\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* there|strong=\"H8033\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*, a|strong=\"H3068\"* great|strong=\"H1419\"* altar|strong=\"H4196\"* to|strong=\"H5921\"* look at|strong=\"H5921\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* heard|strong=\"H8085\"* this|strong=\"H8085\"*, “Behold|strong=\"H2009\"*, the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* and|strong=\"H1121\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* and|strong=\"H1121\"* the|strong=\"H8085\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* have|strong=\"H1121\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* along the|strong=\"H8085\"* border of|strong=\"H1121\"* the|strong=\"H8085\"* land|strong=\"H5676\"* of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, in|strong=\"H3478\"* the|strong=\"H8085\"* region|strong=\"H1552\"* around the|strong=\"H8085\"* Jordan|strong=\"H3383\"*, on|strong=\"H8085\"* the|strong=\"H8085\"* side|strong=\"H5676\"* that|strong=\"H8085\"* belongs to|strong=\"H3478\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 12, + "text": "When|strong=\"H8085\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* heard|strong=\"H8085\"* of|strong=\"H1121\"* it|strong=\"H5921\"*, the|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* gathered|strong=\"H6950\"* themselves|strong=\"H8085\"* together|strong=\"H6950\"* at|strong=\"H5921\"* Shiloh|strong=\"H7887\"*, to|strong=\"H3478\"* go|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H3478\"* war|strong=\"H6635\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H7971\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* the|strong=\"H7971\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* the|strong=\"H7971\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* the|strong=\"H7971\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, into the|strong=\"H7971\"* land of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, Phinehas|strong=\"H6372\"* the|strong=\"H7971\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar the|strong=\"H7971\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 14, + "text": "With|strong=\"H5973\"* him|strong=\"H5973\"* were|strong=\"H3478\"* ten|strong=\"H6235\"* princes|strong=\"H5387\"*, one|strong=\"H3605\"* prince|strong=\"H5387\"* of|strong=\"H1004\"* a|strong=\"H3068\"* fathers’ house|strong=\"H1004\"* for|strong=\"H1004\"* each|strong=\"H3605\"* of|strong=\"H1004\"* the|strong=\"H3605\"* tribes|strong=\"H4294\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* they|strong=\"H1992\"* were|strong=\"H3478\"* each|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H1004\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"* among|strong=\"H5973\"* the|strong=\"H3605\"* thousands of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"H1696\"* came to|strong=\"H1696\"* the|strong=\"H1696\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, and|strong=\"H1121\"* to|strong=\"H1696\"* the|strong=\"H1696\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, and|strong=\"H1121\"* to|strong=\"H1696\"* the|strong=\"H1696\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, to|strong=\"H1696\"* the|strong=\"H1696\"* land of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, and|strong=\"H1121\"* they|strong=\"H1696\"* spoke|strong=\"H1696\"* with|strong=\"H1696\"* them|strong=\"H1121\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 16, + "text": "“The|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘What|strong=\"H4100\"* trespass|strong=\"H4604\"* is|strong=\"H3068\"* this|strong=\"H2088\"* that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H3068\"* committed|strong=\"H4603\"* against|strong=\"H4775\"* the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, to|strong=\"H7725\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* today|strong=\"H3117\"* from|strong=\"H7725\"* following Yahweh|strong=\"H3068\"*, in|strong=\"H3478\"* that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H3068\"* built|strong=\"H1129\"* yourselves|strong=\"H3605\"* an|strong=\"H1129\"* altar|strong=\"H4196\"*, to|strong=\"H7725\"* rebel|strong=\"H4775\"* today|strong=\"H3117\"* against|strong=\"H4775\"* Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 17, + "text": "Is|strong=\"H3068\"* the|strong=\"H3068\"* iniquity|strong=\"H5771\"* of|strong=\"H3068\"* Peor|strong=\"H6465\"* too|strong=\"H4480\"* little|strong=\"H4592\"* for|strong=\"H5704\"* us|strong=\"H3117\"*, from|strong=\"H4480\"* which|strong=\"H3068\"* we|strong=\"H3068\"* have|strong=\"H1961\"* not|strong=\"H3808\"* cleansed|strong=\"H2891\"* ourselves|strong=\"H4480\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, although|strong=\"H3808\"* there|strong=\"H1961\"* came|strong=\"H1961\"* a|strong=\"H3068\"* plague|strong=\"H5063\"* on|strong=\"H3117\"* the|strong=\"H3068\"* congregation|strong=\"H5712\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 18, + "text": "that|strong=\"H3605\"* you|strong=\"H3605\"* must|strong=\"H3478\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* today|strong=\"H3117\"* from|strong=\"H7725\"* following Yahweh|strong=\"H3068\"*? It|strong=\"H7725\"* will|strong=\"H3068\"* be|strong=\"H1961\"*, since|strong=\"H3117\"* you|strong=\"H3605\"* rebel|strong=\"H4775\"* today|strong=\"H3117\"* against|strong=\"H4775\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3605\"* tomorrow|strong=\"H4279\"* he|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H1961\"* angry|strong=\"H7107\"* with|strong=\"H3068\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 19, + "text": "However, if the|strong=\"H8432\"* land of|strong=\"H3068\"* your|strong=\"H3068\"* possession is|strong=\"H3068\"* unclean|strong=\"H2931\"*, then|strong=\"H5674\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H3068\"* the|strong=\"H8432\"* land of|strong=\"H3068\"* the|strong=\"H8432\"* possession of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, in|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s tabernacle|strong=\"H4908\"* dwells|strong=\"H7931\"*, and|strong=\"H3068\"* take|strong=\"H5674\"* possession among|strong=\"H8432\"* us|strong=\"H8432\"*; but|strong=\"H1107\"* don’t rebel|strong=\"H4775\"* against|strong=\"H4775\"* Yahweh|strong=\"H3068\"*, nor|strong=\"H5674\"* rebel|strong=\"H4775\"* against|strong=\"H4775\"* us|strong=\"H8432\"*, in|strong=\"H3068\"* building|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* other|strong=\"H1107\"* than|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*’s altar|strong=\"H4196\"*." + }, + { + "verseNum": 20, + "text": "Didn’t Achan|strong=\"H5912\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zerah|strong=\"H2226\"* commit|strong=\"H4603\"* a|strong=\"H3068\"* trespass|strong=\"H4604\"* in|strong=\"H5921\"* the|strong=\"H3605\"* devoted|strong=\"H2764\"* thing|strong=\"H2764\"*, and|strong=\"H1121\"* wrath|strong=\"H7110\"* fell|strong=\"H1961\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*? That|strong=\"H3605\"* man|strong=\"H1121\"* didn’t perish|strong=\"H1478\"* alone|strong=\"H1931\"* in|strong=\"H5921\"* his|strong=\"H3605\"* iniquity|strong=\"H5771\"*.’”" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H6030\"* the|strong=\"H1696\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* and|strong=\"H1121\"* the|strong=\"H1696\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* and|strong=\"H1121\"* the|strong=\"H1696\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* answered|strong=\"H6030\"*, and|strong=\"H1121\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1696\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H1696\"* thousands of|strong=\"H1121\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 22, + "text": "“The|strong=\"H3068\"* Mighty One|strong=\"H2088\"*, God|strong=\"H3068\"*, Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* Mighty One|strong=\"H2088\"*, God|strong=\"H3068\"*, Yahweh|strong=\"H3068\"*, he|strong=\"H1931\"* knows|strong=\"H3045\"*; and|strong=\"H3478\"* Israel|strong=\"H3478\"* shall|strong=\"H3068\"* know|strong=\"H3045\"*: if|strong=\"H1931\"* it|strong=\"H1931\"* was|strong=\"H3068\"* in|strong=\"H3478\"* rebellion|strong=\"H4777\"*, or|strong=\"H3117\"* if|strong=\"H1931\"* in|strong=\"H3478\"* trespass|strong=\"H4604\"* against|strong=\"H3068\"* Yahweh|strong=\"H3068\"* (don’t save|strong=\"H3467\"* us|strong=\"H3045\"* today|strong=\"H3117\"*)," + }, + { + "verseNum": 23, + "text": "that|strong=\"H1931\"* we|strong=\"H3068\"* have|strong=\"H3068\"* built|strong=\"H1129\"* us|strong=\"H7725\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H7725\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* following Yahweh|strong=\"H3068\"*; or|strong=\"H5930\"* if|strong=\"H1931\"* to|strong=\"H7725\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* or|strong=\"H5930\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, or|strong=\"H5930\"* if|strong=\"H1931\"* to|strong=\"H7725\"* offer|strong=\"H5927\"* sacrifices|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, let|strong=\"H7725\"* Yahweh|strong=\"H3068\"* himself|strong=\"H1931\"* require|strong=\"H1245\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 24, + "text": "“If|strong=\"H1121\"* we|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* out|strong=\"H6213\"* of|strong=\"H1121\"* concern|strong=\"H1674\"* done|strong=\"H6213\"* this|strong=\"H2063\"*, and|strong=\"H1121\"* for|strong=\"H6213\"* a|strong=\"H3068\"* reason|strong=\"H1697\"*, saying|strong=\"H1697\"*, ‘In|strong=\"H3478\"* time|strong=\"H4279\"* to|strong=\"H3478\"* come|strong=\"H4279\"* your|strong=\"H3068\"* children|strong=\"H1121\"* might|strong=\"H3068\"* speak|strong=\"H1697\"* to|strong=\"H3478\"* our|strong=\"H3068\"* children|strong=\"H1121\"*, saying|strong=\"H1697\"*, “What|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H6213\"* to|strong=\"H3478\"* do|strong=\"H6213\"* with|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6213\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 25, + "text": "For|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H5414\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"* a|strong=\"H3068\"* border|strong=\"H1366\"* between us|strong=\"H5414\"* and|strong=\"H1121\"* you|strong=\"H5414\"*, you|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* and|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*. You|strong=\"H5414\"* have|strong=\"H3068\"* no|strong=\"H1115\"* portion|strong=\"H2506\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”’ So|strong=\"H5414\"* your|strong=\"H3068\"* children|strong=\"H1121\"* might|strong=\"H3068\"* make|strong=\"H5414\"* our|strong=\"H3068\"* children|strong=\"H1121\"* cease|strong=\"H7673\"* from|strong=\"H1121\"* fearing|strong=\"H3372\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 26, + "text": "“Therefore|strong=\"H6213\"* we|strong=\"H3068\"* said, ‘Let|strong=\"H4994\"*’s now|strong=\"H4994\"* prepare|strong=\"H6213\"* to|strong=\"H6213\"* build|strong=\"H1129\"* ourselves|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"*, not|strong=\"H3808\"* for|strong=\"H6213\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, nor|strong=\"H3808\"* for|strong=\"H6213\"* sacrifice|strong=\"H2077\"*;" + }, + { + "verseNum": 27, + "text": "but|strong=\"H3588\"* it|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H3808\"* a|strong=\"H3068\"* witness|strong=\"H5707\"* between us|strong=\"H6440\"* and|strong=\"H1121\"* you|strong=\"H3588\"*, and|strong=\"H1121\"* between our|strong=\"H3068\"* generations|strong=\"H1755\"* after|strong=\"H3588\"* us|strong=\"H6440\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* may|strong=\"H3068\"* perform|strong=\"H5647\"* the|strong=\"H6440\"* service|strong=\"H5656\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* before|strong=\"H6440\"* him|strong=\"H6440\"* with|strong=\"H3068\"* our|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"*, with|strong=\"H3068\"* our|strong=\"H3068\"* sacrifices|strong=\"H2077\"*, and|strong=\"H1121\"* with|strong=\"H3068\"* our|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*;’ that|strong=\"H3588\"* your|strong=\"H3068\"* children|strong=\"H1121\"* may|strong=\"H3068\"* not|strong=\"H3808\"* tell our|strong=\"H3068\"* children|strong=\"H1121\"* in|strong=\"H3068\"* time|strong=\"H4279\"* to|strong=\"H3068\"* come|strong=\"H4279\"*, ‘You|strong=\"H3588\"* have|strong=\"H3068\"* no|strong=\"H3808\"* portion|strong=\"H2506\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’" + }, + { + "verseNum": 28, + "text": "“Therefore|strong=\"H3588\"* we|strong=\"H3068\"* said, ‘It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* they|strong=\"H3588\"* tell|strong=\"H7200\"* us|strong=\"H6213\"* or|strong=\"H3808\"* our|strong=\"H3068\"* generations|strong=\"H1755\"* this|strong=\"H6213\"* in|strong=\"H3068\"* time|strong=\"H4279\"* to|strong=\"H3068\"* come|strong=\"H1961\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* shall|strong=\"H3068\"* say, “Behold|strong=\"H7200\"* the|strong=\"H7200\"* pattern|strong=\"H8403\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"*, which|strong=\"H1931\"* our|strong=\"H3068\"* fathers made|strong=\"H6213\"*, not|strong=\"H3808\"* for|strong=\"H3588\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, nor|strong=\"H3808\"* for|strong=\"H3588\"* sacrifice|strong=\"H2077\"*; but|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* witness|strong=\"H5707\"* between us|strong=\"H6213\"* and|strong=\"H3068\"* you|strong=\"H3588\"*.”’" + }, + { + "verseNum": 29, + "text": "“Far|strong=\"H2486\"* be|strong=\"H3068\"* it|strong=\"H7725\"* from|strong=\"H4480\"* us|strong=\"H7725\"* that|strong=\"H3117\"* we|strong=\"H3068\"* should|strong=\"H3068\"* rebel|strong=\"H4775\"* against|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* today|strong=\"H3117\"* from|strong=\"H4480\"* following Yahweh|strong=\"H3068\"*, to|strong=\"H7725\"* build|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* for|strong=\"H6440\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, for|strong=\"H6440\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, or|strong=\"H3117\"* for|strong=\"H6440\"* sacrifice|strong=\"H2077\"*, besides|strong=\"H4480\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*’s altar|strong=\"H4196\"* that|strong=\"H3117\"* is|strong=\"H3068\"* before|strong=\"H6440\"* his|strong=\"H3068\"* tabernacle|strong=\"H4908\"*!”" + }, + { + "verseNum": 30, + "text": "When|strong=\"H8085\"* Phinehas|strong=\"H6372\"* the|strong=\"H8085\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* the|strong=\"H8085\"* princes|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H8085\"* congregation|strong=\"H5712\"*, even|strong=\"H5869\"* the|strong=\"H8085\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H8085\"* thousands of|strong=\"H1121\"* Israel|strong=\"H3478\"* that|strong=\"H8085\"* were|strong=\"H3478\"* with|strong=\"H1696\"* him|strong=\"H8085\"*, heard|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* that|strong=\"H8085\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* and|strong=\"H1121\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* and|strong=\"H1121\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* spoke|strong=\"H1696\"*, it|strong=\"H1696\"* pleased|strong=\"H3190\"* them|strong=\"H3190\"* well|strong=\"H3190\"*." + }, + { + "verseNum": 31, + "text": "Phinehas|strong=\"H6372\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar the|strong=\"H3588\"* priest|strong=\"H3548\"* said to|strong=\"H3478\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, to|strong=\"H3478\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, “Today|strong=\"H3117\"* we|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* among|strong=\"H8432\"* us|strong=\"H3045\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* committed|strong=\"H4603\"* this|strong=\"H2088\"* trespass|strong=\"H4604\"* against|strong=\"H3027\"* Yahweh|strong=\"H3068\"*. Now|strong=\"H3117\"* you|strong=\"H3588\"* have|strong=\"H3068\"* delivered|strong=\"H5337\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* out|strong=\"H3045\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 32, + "text": "Phinehas|strong=\"H6372\"* the|strong=\"H7725\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar the|strong=\"H7725\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* the|strong=\"H7725\"* princes|strong=\"H5387\"*, returned|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H7725\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, and|strong=\"H1121\"* from|strong=\"H7725\"* the|strong=\"H7725\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, out|strong=\"H7725\"* of|strong=\"H1121\"* the|strong=\"H7725\"* land of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, to|strong=\"H7725\"* the|strong=\"H7725\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, to|strong=\"H7725\"* the|strong=\"H7725\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* brought|strong=\"H7725\"* them|strong=\"H7725\"* word|strong=\"H1697\"* again|strong=\"H7725\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H5921\"* thing|strong=\"H1697\"* pleased|strong=\"H3190\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* blessed|strong=\"H1288\"* God|strong=\"H3808\"*, and|strong=\"H1121\"* spoke|strong=\"H1697\"* no|strong=\"H3808\"* more|strong=\"H3808\"* of|strong=\"H1121\"* going|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H3478\"* war|strong=\"H6635\"*, to|strong=\"H3478\"* destroy|strong=\"H7843\"* the|strong=\"H5921\"* land in|strong=\"H3427\"* which|strong=\"H1697\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* and|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* lived|strong=\"H3427\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* and|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* named|strong=\"H7121\"* the|strong=\"H3588\"* altar|strong=\"H4196\"* “A|strong=\"H3068\"* Witness|strong=\"H5707\"* Between Us|strong=\"H3588\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* God|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* many|strong=\"H7227\"* days|strong=\"H3117\"*, when|strong=\"H1961\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* given|strong=\"H5117\"* rest|strong=\"H5117\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* their|strong=\"H3605\"* enemies all|strong=\"H3605\"* around|strong=\"H5439\"*, and|strong=\"H3478\"* Joshua|strong=\"H3091\"* was|strong=\"H3068\"* old|strong=\"H2204\"* and|strong=\"H3478\"* well advanced in|strong=\"H3478\"* years|strong=\"H3117\"*," + }, + { + "verseNum": 2, + "text": "Joshua|strong=\"H3091\"* called|strong=\"H7121\"* for|strong=\"H7121\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, for|strong=\"H7121\"* their|strong=\"H3605\"* elders|strong=\"H2205\"* and|strong=\"H3478\"* for|strong=\"H7121\"* their|strong=\"H3605\"* heads|strong=\"H7218\"*, and|strong=\"H3478\"* for|strong=\"H7121\"* their|strong=\"H3605\"* judges|strong=\"H8199\"* and|strong=\"H3478\"* for|strong=\"H7121\"* their|strong=\"H3605\"* officers|strong=\"H7860\"*, and|strong=\"H3478\"* said|strong=\"H7121\"* to|strong=\"H3478\"* them|strong=\"H7121\"*, “I|strong=\"H3117\"* am|strong=\"H2204\"* old|strong=\"H2205\"* and|strong=\"H3478\"* well advanced in|strong=\"H3478\"* years|strong=\"H3117\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3588\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3068\"* all|strong=\"H3605\"* these|strong=\"H6213\"* nations|strong=\"H1471\"* because|strong=\"H3588\"* of|strong=\"H3068\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* who|strong=\"H3605\"* has|strong=\"H3068\"* fought|strong=\"H3898\"* for|strong=\"H3588\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H7200\"*, I|strong=\"H7200\"* have|strong=\"H1471\"* allotted|strong=\"H5307\"* to|strong=\"H7200\"* you|strong=\"H3605\"* these|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H7200\"* remain|strong=\"H7604\"*, to|strong=\"H7200\"* be|strong=\"H1471\"* an|strong=\"H7200\"* inheritance|strong=\"H5159\"* for|strong=\"H3605\"* your|strong=\"H3605\"* tribes|strong=\"H7626\"*, from|strong=\"H4480\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, with|strong=\"H3772\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H7200\"* I|strong=\"H7200\"* have|strong=\"H1471\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*, even to|strong=\"H7200\"* the|strong=\"H3605\"* great|strong=\"H1419\"* sea|strong=\"H3220\"* toward|strong=\"H4480\"* the|strong=\"H3605\"* going|strong=\"H5307\"* down|strong=\"H5307\"* of|strong=\"H7626\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* thrust|strong=\"H1920\"* them|strong=\"H6440\"* out|strong=\"H3423\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H3068\"* drive|strong=\"H3423\"* them|strong=\"H6440\"* from|strong=\"H6440\"* out|strong=\"H3423\"* of|strong=\"H3068\"* your|strong=\"H3068\"* sight|strong=\"H6440\"*. You|strong=\"H6440\"* shall|strong=\"H3068\"* possess|strong=\"H3423\"* their|strong=\"H3068\"* land|strong=\"H6440\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 6, + "text": "“Therefore|strong=\"H4872\"* be|strong=\"H8040\"* very|strong=\"H3966\"* courageous|strong=\"H2388\"* to|strong=\"H6213\"* keep|strong=\"H8104\"* and|strong=\"H4872\"* to|strong=\"H6213\"* do|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* written|strong=\"H3789\"* in|strong=\"H6213\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4480\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H4480\"* Moses|strong=\"H4872\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* not|strong=\"H1115\"* turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* it|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H3605\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* or|strong=\"H3225\"* to|strong=\"H6213\"* the|strong=\"H3605\"* left|strong=\"H8040\"*;" + }, + { + "verseNum": 7, + "text": "that|strong=\"H1471\"* you|strong=\"H3808\"* not|strong=\"H3808\"* come|strong=\"H2142\"* among|strong=\"H8034\"* these|strong=\"H2142\"* nations|strong=\"H1471\"*, these|strong=\"H2142\"* that|strong=\"H1471\"* remain|strong=\"H7604\"* among|strong=\"H8034\"* you|strong=\"H3808\"*; neither|strong=\"H3808\"* make|strong=\"H5647\"* mention|strong=\"H2142\"* of|strong=\"H8034\"* the|strong=\"H5647\"* name|strong=\"H8034\"* of|strong=\"H8034\"* their|strong=\"H5647\"* gods, nor|strong=\"H3808\"* cause to|strong=\"H7650\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* them|strong=\"H5647\"*, neither|strong=\"H3808\"* serve|strong=\"H5647\"* them|strong=\"H5647\"*, nor|strong=\"H3808\"* bow|strong=\"H7812\"* down|strong=\"H7812\"* yourselves|strong=\"H7812\"* to|strong=\"H7650\"* them|strong=\"H5647\"*;" + }, + { + "verseNum": 8, + "text": "but|strong=\"H3588\"* hold|strong=\"H1692\"* fast|strong=\"H1692\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, as|strong=\"H5704\"* you|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 9, + "text": "“For|strong=\"H5704\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* driven|strong=\"H3423\"* great|strong=\"H1419\"* and|strong=\"H3068\"* strong|strong=\"H6099\"* nations|strong=\"H1471\"* out|strong=\"H3423\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. But|strong=\"H3808\"* as|strong=\"H5704\"* for|strong=\"H5704\"* you|strong=\"H6440\"*, no|strong=\"H3808\"* man|strong=\"H1419\"* has|strong=\"H3068\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* you|strong=\"H6440\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 10, + "text": "One|strong=\"H4480\"* man of|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* chase|strong=\"H7291\"* a|strong=\"H3068\"* thousand; for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* who|strong=\"H1931\"* fights|strong=\"H3898\"* for|strong=\"H3588\"* you|strong=\"H3588\"*, as|strong=\"H3068\"* he|strong=\"H1931\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 11, + "text": "Take|strong=\"H8104\"* good|strong=\"H3966\"* heed|strong=\"H8104\"* therefore|strong=\"H3068\"* to|strong=\"H3068\"* yourselves|strong=\"H5315\"*, that|strong=\"H5315\"* you|strong=\"H5315\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "“But|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* do at|strong=\"H7725\"* all|strong=\"H7725\"* go|strong=\"H7725\"* back|strong=\"H7725\"*, and|strong=\"H7725\"* hold|strong=\"H1692\"* fast|strong=\"H1692\"* to|strong=\"H7725\"* the|strong=\"H3588\"* remnant|strong=\"H3499\"* of|strong=\"H1471\"* these|strong=\"H1992\"* nations|strong=\"H1471\"*, even|strong=\"H3588\"* these|strong=\"H1992\"* who|strong=\"H1992\"* remain|strong=\"H7604\"* among you|strong=\"H3588\"*, and|strong=\"H7725\"* make|strong=\"H7725\"* marriages|strong=\"H2859\"* with|strong=\"H7725\"* them|strong=\"H1992\"*, and|strong=\"H7725\"* go|strong=\"H7725\"* in|strong=\"H7604\"* to|strong=\"H7725\"* them|strong=\"H1992\"*, and|strong=\"H7725\"* they|strong=\"H1992\"* to|strong=\"H7725\"* you|strong=\"H3588\"*;" + }, + { + "verseNum": 13, + "text": "know|strong=\"H3045\"* for|strong=\"H3588\"* a|strong=\"H3068\"* certainty|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* no|strong=\"H3808\"* longer|strong=\"H3254\"* drive|strong=\"H3423\"* these|strong=\"H2063\"* nations|strong=\"H1471\"* from|strong=\"H6440\"* out|strong=\"H3423\"* of|strong=\"H3068\"* your|strong=\"H3068\"* sight|strong=\"H5869\"*; but|strong=\"H3588\"* they|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* snare|strong=\"H4170\"* and|strong=\"H3068\"* a|strong=\"H3068\"* trap|strong=\"H4170\"* to|strong=\"H5704\"* you|strong=\"H3588\"*, a|strong=\"H3068\"* scourge in|strong=\"H5921\"* your|strong=\"H3068\"* sides|strong=\"H6654\"*, and|strong=\"H3068\"* thorns|strong=\"H6796\"* in|strong=\"H5921\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, until|strong=\"H5704\"* you|strong=\"H3588\"* perish from|strong=\"H6440\"* off|strong=\"H5921\"* this|strong=\"H2063\"* good|strong=\"H2896\"* land|strong=\"H6440\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 14, + "text": "“Behold|strong=\"H2009\"*, today|strong=\"H3117\"* I|strong=\"H3588\"* am|strong=\"H3068\"* going|strong=\"H1980\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth. You|strong=\"H3588\"* know|strong=\"H3045\"* in|strong=\"H5921\"* all|strong=\"H3605\"* your|strong=\"H3068\"* hearts|strong=\"H3824\"* and|strong=\"H1980\"* in|strong=\"H5921\"* all|strong=\"H3605\"* your|strong=\"H3068\"* souls|strong=\"H5315\"* that|strong=\"H3588\"* not|strong=\"H3808\"* one|strong=\"H3605\"* thing|strong=\"H1697\"* has|strong=\"H3068\"* failed|strong=\"H5307\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* good|strong=\"H2896\"* things|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* spoke|strong=\"H1696\"* concerning|strong=\"H5921\"* you|strong=\"H3588\"*. All|strong=\"H3605\"* have|strong=\"H3068\"* happened|strong=\"H1697\"* to|strong=\"H1696\"* you|strong=\"H3588\"*. Not|strong=\"H3808\"* one|strong=\"H3605\"* thing|strong=\"H1697\"* has|strong=\"H3068\"* failed|strong=\"H5307\"* of|strong=\"H3068\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "It|strong=\"H5414\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H3605\"* as|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* good|strong=\"H2896\"* things|strong=\"H1697\"* have|strong=\"H1961\"* come|strong=\"H1961\"* on|strong=\"H5921\"* you|strong=\"H5414\"* of|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5414\"*, so|strong=\"H3651\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H5414\"* on|strong=\"H5921\"* you|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* things|strong=\"H1697\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* has|strong=\"H3068\"* destroyed|strong=\"H8045\"* you|strong=\"H5414\"* from|strong=\"H5921\"* off|strong=\"H5921\"* this|strong=\"H2063\"* good|strong=\"H2896\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*," + }, + { + "verseNum": 16, + "text": "when|strong=\"H1980\"* you|strong=\"H5414\"* disobey the|strong=\"H5921\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H5414\"*, and|strong=\"H1980\"* go|strong=\"H1980\"* and|strong=\"H1980\"* serve|strong=\"H5647\"* other gods|strong=\"H1980\"*, and|strong=\"H1980\"* bow|strong=\"H7812\"* down|strong=\"H7812\"* yourselves|strong=\"H3068\"* to|strong=\"H1980\"* them|strong=\"H5414\"*. Then|strong=\"H1980\"* Yahweh|strong=\"H3068\"*’s anger|strong=\"H5674\"* will|strong=\"H3068\"* be|strong=\"H3068\"* kindled|strong=\"H2734\"* against|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H1980\"* you|strong=\"H5414\"* will|strong=\"H3068\"* perish|strong=\"H5674\"* quickly|strong=\"H4120\"* from|strong=\"H5921\"* off|strong=\"H5921\"* the|strong=\"H5921\"* good|strong=\"H2896\"* land which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* to|strong=\"H1980\"* you|strong=\"H5414\"*.”" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Joshua|strong=\"H3091\"* gathered|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* Shechem|strong=\"H7927\"*, and|strong=\"H3478\"* called|strong=\"H7121\"* for|strong=\"H7121\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*, for|strong=\"H7121\"* their|strong=\"H3605\"* heads|strong=\"H7218\"*, for|strong=\"H7121\"* their|strong=\"H3605\"* judges|strong=\"H8199\"*, and|strong=\"H3478\"* for|strong=\"H7121\"* their|strong=\"H3605\"* officers|strong=\"H7860\"*; and|strong=\"H3478\"* they|strong=\"H3478\"* presented|strong=\"H3320\"* themselves|strong=\"H3320\"* before|strong=\"H6440\"* God." + }, + { + "verseNum": 2, + "text": "Joshua|strong=\"H3091\"* said to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, “Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘Your|strong=\"H3068\"* fathers lived|strong=\"H3427\"* of|strong=\"H3068\"* old|strong=\"H5769\"* time|strong=\"H5769\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* River|strong=\"H5104\"*, even|strong=\"H3068\"* Terah|strong=\"H8646\"*, the|strong=\"H3605\"* father of|strong=\"H3068\"* Abraham, and|strong=\"H3478\"* the|strong=\"H3605\"* father of|strong=\"H3068\"* Nahor|strong=\"H5152\"*. They|strong=\"H3068\"* served|strong=\"H5647\"* other|strong=\"H5676\"* gods." + }, + { + "verseNum": 3, + "text": "I|strong=\"H5414\"* took|strong=\"H3947\"* your|strong=\"H3605\"* father Abraham|strong=\"H3947\"* from|strong=\"H3947\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* River|strong=\"H5104\"*, and|strong=\"H3212\"* led|strong=\"H3212\"* him|strong=\"H5414\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H5676\"* of|strong=\"H2233\"* Canaan|strong=\"H3667\"*, and|strong=\"H3212\"* multiplied|strong=\"H7235\"* his|strong=\"H3605\"* offspring|strong=\"H2233\"*,+ 24:3 or, seed* and|strong=\"H3212\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* Isaac|strong=\"H3327\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H3381\"* Isaac|strong=\"H3327\"* Jacob|strong=\"H3290\"* and|strong=\"H1121\"* Esau|strong=\"H6215\"*: and|strong=\"H1121\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H3381\"* Esau|strong=\"H6215\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"*, to|strong=\"H3381\"* possess|strong=\"H3423\"* it|strong=\"H5414\"*. Jacob|strong=\"H3290\"* and|strong=\"H1121\"* his|strong=\"H5414\"* children|strong=\"H1121\"* went|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 5, + "text": "“‘I|strong=\"H4714\"* sent|strong=\"H7971\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron, and|strong=\"H4872\"* I|strong=\"H4714\"* plagued|strong=\"H5062\"* Egypt|strong=\"H4714\"*, according to|strong=\"H3318\"* that|strong=\"H6213\"* which I|strong=\"H4714\"* did|strong=\"H6213\"* among|strong=\"H7130\"* them|strong=\"H7971\"*: and|strong=\"H4872\"* afterward I|strong=\"H4714\"* brought|strong=\"H3318\"* you|strong=\"H7971\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H4714\"* brought|strong=\"H3318\"* your|strong=\"H3318\"* fathers out|strong=\"H3318\"* of|strong=\"H3318\"* Egypt|strong=\"H4714\"*: and|strong=\"H4714\"* you|strong=\"H7291\"* came|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3318\"* sea|strong=\"H3220\"*. The|strong=\"H3318\"* Egyptians|strong=\"H4714\"* pursued|strong=\"H7291\"* your|strong=\"H3318\"* fathers with|strong=\"H3318\"* chariots|strong=\"H7393\"* and|strong=\"H4714\"* with|strong=\"H3318\"* horsemen|strong=\"H6571\"* to|strong=\"H3318\"* the|strong=\"H3318\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H3117\"* they|strong=\"H3117\"* cried|strong=\"H6817\"* out|strong=\"H7200\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, he|strong=\"H3117\"* put|strong=\"H7760\"* darkness|strong=\"H3990\"* between|strong=\"H3427\"* you|strong=\"H5921\"* and|strong=\"H3068\"* the|strong=\"H5921\"* Egyptians|strong=\"H4714\"*, and|strong=\"H3068\"* brought|strong=\"H7760\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* covered|strong=\"H3680\"* them|strong=\"H5921\"*; and|strong=\"H3068\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"* saw|strong=\"H7200\"* what|strong=\"H6213\"* I|strong=\"H3117\"* did|strong=\"H6213\"* in|strong=\"H3427\"* Egypt|strong=\"H4714\"*. You|strong=\"H5921\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"* many|strong=\"H7227\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 8, + "text": "“‘I|strong=\"H5414\"* brought|strong=\"H5414\"* you|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H3027\"* the|strong=\"H6440\"* Amorites, that|strong=\"H5414\"* lived|strong=\"H3427\"* beyond|strong=\"H5676\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"*. They|strong=\"H6440\"* fought|strong=\"H3898\"* with|strong=\"H3427\"* you|strong=\"H5414\"*, and|strong=\"H3027\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H5414\"* hand|strong=\"H3027\"*. You|strong=\"H5414\"* possessed|strong=\"H3423\"* their|strong=\"H5414\"* land|strong=\"H6440\"*, and|strong=\"H3027\"* I|strong=\"H5414\"* destroyed|strong=\"H8045\"* them|strong=\"H5414\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H6965\"* Balak|strong=\"H1111\"* the|strong=\"H7121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zippor|strong=\"H6834\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, arose|strong=\"H6965\"* and|strong=\"H1121\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* Israel|strong=\"H3478\"*. He|strong=\"H7971\"* sent|strong=\"H7971\"* and|strong=\"H1121\"* called|strong=\"H7121\"* Balaam|strong=\"H1109\"* the|strong=\"H7121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Beor|strong=\"H1160\"* to|strong=\"H3478\"* curse|strong=\"H7043\"* you|strong=\"H7971\"*," + }, + { + "verseNum": 10, + "text": "but|strong=\"H3808\"* I|strong=\"H3808\"* would not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3027\"* Balaam|strong=\"H1109\"*; therefore he|strong=\"H3027\"* blessed|strong=\"H1288\"* you|strong=\"H1288\"* still|strong=\"H1288\"*. So|strong=\"H3808\"* I|strong=\"H3808\"* delivered|strong=\"H5337\"* you|strong=\"H1288\"* out|strong=\"H5337\"* of|strong=\"H3027\"* his|strong=\"H8085\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 11, + "text": "“‘You|strong=\"H5414\"* went|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"*, and|strong=\"H3027\"* came|strong=\"H5674\"* to|strong=\"H5414\"* Jericho|strong=\"H3405\"*. The|strong=\"H5414\"* men|strong=\"H1167\"* of|strong=\"H3027\"* Jericho|strong=\"H3405\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* you|strong=\"H5414\"*, the|strong=\"H5414\"* Amorite, the|strong=\"H5414\"* Perizzite|strong=\"H6522\"*, the|strong=\"H5414\"* Canaanite|strong=\"H3669\"*, the|strong=\"H5414\"* Hittite|strong=\"H2850\"*, the|strong=\"H5414\"* Girgashite|strong=\"H1622\"*, the|strong=\"H5414\"* Hivite|strong=\"H2340\"*, and|strong=\"H3027\"* the|strong=\"H5414\"* Jebusite|strong=\"H2983\"*; and|strong=\"H3027\"* I|strong=\"H5414\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H3808\"* sent|strong=\"H7971\"* the|strong=\"H6440\"* hornet|strong=\"H6880\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, which|strong=\"H2719\"* drove|strong=\"H1644\"* them|strong=\"H7971\"* out|strong=\"H7971\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, even|strong=\"H3808\"* the|strong=\"H6440\"* two|strong=\"H8147\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H6440\"* Amorites; not|strong=\"H3808\"* with|strong=\"H6440\"* your|strong=\"H6440\"* sword|strong=\"H2719\"*, nor|strong=\"H3808\"* with|strong=\"H6440\"* your|strong=\"H6440\"* bow|strong=\"H7198\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H5414\"* gave|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* land on|strong=\"H3427\"* which|strong=\"H5892\"* you|strong=\"H5414\"* had|strong=\"H5414\"* not|strong=\"H3808\"* labored|strong=\"H3021\"*, and|strong=\"H5892\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* you|strong=\"H5414\"* didn’t build|strong=\"H1129\"*, and|strong=\"H5892\"* you|strong=\"H5414\"* live|strong=\"H3427\"* in|strong=\"H3427\"* them|strong=\"H5414\"*. You|strong=\"H5414\"* eat of|strong=\"H3427\"* vineyards|strong=\"H3754\"* and|strong=\"H5892\"* olive|strong=\"H2132\"* groves|strong=\"H2132\"* which|strong=\"H5892\"* you|strong=\"H5414\"* didn’t plant|strong=\"H5193\"*.’" + }, + { + "verseNum": 14, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H6258\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H5647\"* in|strong=\"H3068\"* sincerity|strong=\"H8549\"* and|strong=\"H3068\"* in|strong=\"H3068\"* truth. Put|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H5647\"* gods which|strong=\"H3068\"* your|strong=\"H3068\"* fathers served|strong=\"H5647\"* beyond|strong=\"H5676\"* the|strong=\"H5647\"* River|strong=\"H5104\"*, in|strong=\"H3068\"* Egypt|strong=\"H4714\"*; and|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "If it|strong=\"H3117\"* seems|strong=\"H5869\"* evil|strong=\"H7451\"* to|strong=\"H3068\"* you|strong=\"H3117\"* to|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*, choose today|strong=\"H3117\"* whom|strong=\"H4310\"* you|strong=\"H3117\"* will|strong=\"H3068\"* serve|strong=\"H5647\"*; whether the|strong=\"H5647\"* gods which|strong=\"H3068\"* your|strong=\"H3068\"* fathers served|strong=\"H5647\"* that|strong=\"H3117\"* were|strong=\"H3117\"* beyond|strong=\"H5676\"* the|strong=\"H5647\"* River|strong=\"H5104\"*, or|strong=\"H3117\"* the|strong=\"H5647\"* gods of|strong=\"H1004\"* the|strong=\"H5647\"* Amorites, in|strong=\"H3427\"* whose|strong=\"H4310\"* land|strong=\"H5676\"* you|strong=\"H3117\"* dwell|strong=\"H3427\"*; but|strong=\"H7451\"* as|strong=\"H3117\"* for|strong=\"H3068\"* me|strong=\"H5869\"* and|strong=\"H3068\"* my|strong=\"H3068\"* house|strong=\"H1004\"*, we|strong=\"H3068\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 16, + "text": "The|strong=\"H5647\"* people|strong=\"H5971\"* answered|strong=\"H6030\"*, “Far|strong=\"H2486\"* be|strong=\"H3068\"* it|strong=\"H2486\"* from|strong=\"H3068\"* us|strong=\"H6030\"* that|strong=\"H5971\"* we|strong=\"H3068\"* should|strong=\"H3068\"* forsake|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* serve|strong=\"H5647\"* other gods;" + }, + { + "verseNum": 17, + "text": "for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* who|strong=\"H3605\"* brought|strong=\"H5927\"* us|strong=\"H6213\"* and|strong=\"H1980\"* our|strong=\"H3068\"* fathers up|strong=\"H5927\"* out|strong=\"H6213\"* of|strong=\"H1004\"* the|strong=\"H3605\"* land|strong=\"H7130\"* of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, from|strong=\"H5927\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* bondage|strong=\"H5650\"*, and|strong=\"H1980\"* who|strong=\"H3605\"* did|strong=\"H6213\"* those|strong=\"H3605\"* great|strong=\"H1419\"* signs in|strong=\"H1980\"* our|strong=\"H3068\"* sight|strong=\"H5869\"*, and|strong=\"H1980\"* preserved|strong=\"H8104\"* us|strong=\"H6213\"* in|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* way|strong=\"H1870\"* in|strong=\"H1980\"* which|strong=\"H1931\"* we|strong=\"H3068\"* went|strong=\"H1980\"*, and|strong=\"H1980\"* among|strong=\"H7130\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* through|strong=\"H5674\"* the|strong=\"H3605\"* middle|strong=\"H7130\"* of|strong=\"H1004\"* whom|strong=\"H5971\"* we|strong=\"H3068\"* passed|strong=\"H5674\"*." + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* drove|strong=\"H1644\"* out|strong=\"H1644\"* from|strong=\"H6440\"* before|strong=\"H6440\"* us|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"*, even|strong=\"H1571\"* the|strong=\"H3605\"* Amorites who|strong=\"H3605\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land|strong=\"H6440\"*. Therefore|strong=\"H1571\"* we|strong=\"H3068\"* also|strong=\"H1571\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*.”" + }, + { + "verseNum": 19, + "text": "Joshua|strong=\"H3091\"* said to|strong=\"H3201\"* the|strong=\"H3588\"* people|strong=\"H5971\"*, “You|strong=\"H3588\"* can|strong=\"H3201\"*’t serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* God|strong=\"H3068\"*. He|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* jealous|strong=\"H7072\"* God|strong=\"H3068\"*. He|strong=\"H1931\"* will|strong=\"H3068\"* not|strong=\"H3808\"* forgive|strong=\"H5375\"* your|strong=\"H3068\"* disobedience nor|strong=\"H3808\"* your|strong=\"H3068\"* sins|strong=\"H2403\"*." + }, + { + "verseNum": 20, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* forsake|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* serve|strong=\"H5647\"* foreign|strong=\"H5236\"* gods, then|strong=\"H7725\"* he|strong=\"H3588\"* will|strong=\"H3068\"* turn|strong=\"H7725\"* and|strong=\"H3068\"* do|strong=\"H3190\"* you|strong=\"H3588\"* evil|strong=\"H7489\"*, and|strong=\"H3068\"* consume|strong=\"H3615\"* you|strong=\"H3588\"*, after|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* done|strong=\"H3615\"* you|strong=\"H3588\"* good|strong=\"H3190\"*.”" + }, + { + "verseNum": 21, + "text": "The|strong=\"H3588\"* people|strong=\"H5971\"* said to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, “No|strong=\"H3808\"*, but|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 22, + "text": "Joshua|strong=\"H3091\"* said to|strong=\"H3068\"* the|strong=\"H3588\"* people|strong=\"H5971\"*, “You|strong=\"H3588\"* are|strong=\"H5971\"* witnesses|strong=\"H5707\"* against|strong=\"H3068\"* yourselves|strong=\"H3068\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* chosen Yahweh|strong=\"H3068\"* yourselves|strong=\"H3068\"*, to|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H5647\"*.”" + }, + { + "verseNum": 23, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H6258\"* put|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H3068\"* foreign|strong=\"H5236\"* gods which|strong=\"H3068\"* are|strong=\"H3478\"* among|strong=\"H7130\"* you|strong=\"H7130\"*, and|strong=\"H3478\"* incline|strong=\"H5186\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 24, + "text": "The|strong=\"H8085\"* people|strong=\"H5971\"* said|strong=\"H8085\"* to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, “We|strong=\"H8085\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* we|strong=\"H3068\"* will|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* his|strong=\"H3068\"* voice|strong=\"H6963\"*.”" + }, + { + "verseNum": 25, + "text": "So|strong=\"H7760\"* Joshua|strong=\"H3091\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* the|strong=\"H3117\"* people|strong=\"H5971\"* that|strong=\"H5971\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* made|strong=\"H3772\"* for|strong=\"H2706\"* them|strong=\"H7760\"* a|strong=\"H3068\"* statute|strong=\"H2706\"* and|strong=\"H3117\"* an|strong=\"H7760\"* ordinance|strong=\"H4941\"* in|strong=\"H3117\"* Shechem|strong=\"H7927\"*." + }, + { + "verseNum": 26, + "text": "Joshua|strong=\"H3091\"* wrote|strong=\"H3789\"* these|strong=\"H3789\"* words|strong=\"H1697\"* in|strong=\"H3068\"* the|strong=\"H3947\"* book|strong=\"H5612\"* of|strong=\"H3068\"* the|strong=\"H3947\"* law|strong=\"H8451\"* of|strong=\"H3068\"* God|strong=\"H3068\"*; and|strong=\"H6965\"* he|strong=\"H8033\"* took|strong=\"H3947\"* a|strong=\"H3068\"* great|strong=\"H1419\"* stone, and|strong=\"H6965\"* set|strong=\"H6965\"* it|strong=\"H8033\"* up|strong=\"H6965\"* there|strong=\"H8033\"* under|strong=\"H8478\"* the|strong=\"H3947\"* oak that|strong=\"H3068\"* was|strong=\"H3068\"* by|strong=\"H3068\"* the|strong=\"H3947\"* sanctuary|strong=\"H4720\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 27, + "text": "Joshua|strong=\"H3091\"* said|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, “Behold|strong=\"H2009\"*, this|strong=\"H2063\"* stone shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* witness|strong=\"H5713\"* against|strong=\"H5973\"* us|strong=\"H3588\"*, for|strong=\"H3588\"* it|strong=\"H1931\"* has|strong=\"H3068\"* heard|strong=\"H8085\"* all|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s words which|strong=\"H1931\"* he|strong=\"H1931\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* us|strong=\"H3588\"*. It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* therefore|strong=\"H3588\"* a|strong=\"H3068\"* witness|strong=\"H5713\"* against|strong=\"H5973\"* you|strong=\"H3588\"*, lest|strong=\"H6435\"* you|strong=\"H3588\"* deny|strong=\"H3584\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.”" + }, + { + "verseNum": 28, + "text": "So|strong=\"H7971\"* Joshua|strong=\"H3091\"* sent|strong=\"H7971\"* the|strong=\"H7971\"* people|strong=\"H5971\"* away|strong=\"H7971\"*, each|strong=\"H5971\"* to|strong=\"H7971\"* his|strong=\"H7971\"* own|strong=\"H5971\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 29, + "text": "After|strong=\"H1961\"* these|strong=\"H4191\"* things|strong=\"H1697\"*, Joshua|strong=\"H3091\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, the|strong=\"H3068\"* servant|strong=\"H5650\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, died|strong=\"H4191\"*, being|strong=\"H1961\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* ten|strong=\"H6235\"* years|strong=\"H8141\"* old|strong=\"H1121\"*." + }, + { + "verseNum": 30, + "text": "They buried|strong=\"H6912\"* him|strong=\"H6912\"* in|strong=\"H6912\"* the|strong=\"H6912\"* border|strong=\"H1366\"* of|strong=\"H2022\"* his|strong=\"H6912\"* inheritance|strong=\"H5159\"* in|strong=\"H6912\"* Timnathserah, which|strong=\"H2022\"* is|strong=\"H5159\"* in|strong=\"H6912\"* the|strong=\"H6912\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim, on|strong=\"H2022\"* the|strong=\"H6912\"* north|strong=\"H6828\"* of|strong=\"H2022\"* the|strong=\"H6912\"* mountain|strong=\"H2022\"* of|strong=\"H2022\"* Gaash|strong=\"H1608\"*." + }, + { + "verseNum": 31, + "text": "Israel|strong=\"H3478\"* served|strong=\"H5647\"* Yahweh|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* Joshua|strong=\"H3091\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* who|strong=\"H3605\"* outlived Joshua|strong=\"H3091\"*, and|strong=\"H3478\"* had|strong=\"H3068\"* known|strong=\"H3045\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3045\"* he|strong=\"H3117\"* had|strong=\"H3068\"* worked|strong=\"H6213\"* for|strong=\"H6213\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 32, + "text": "They|strong=\"H3478\"* buried|strong=\"H6912\"* the|strong=\"H5927\"* bones|strong=\"H6106\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*, which|strong=\"H3478\"* the|strong=\"H5927\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H5927\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, in|strong=\"H3478\"* Shechem|strong=\"H7927\"*, in|strong=\"H3478\"* the|strong=\"H5927\"* parcel|strong=\"H2513\"* of|strong=\"H1121\"* ground|strong=\"H7704\"* which|strong=\"H3478\"* Jacob|strong=\"H3290\"* bought|strong=\"H7069\"* from|strong=\"H5927\"* the|strong=\"H5927\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hamor|strong=\"H2544\"* the|strong=\"H5927\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Shechem|strong=\"H7927\"* for|strong=\"H4714\"* a|strong=\"H3068\"* hundred|strong=\"H3967\"* pieces|strong=\"H7192\"* of|strong=\"H1121\"* silver|strong=\"H7192\"*.+ 24:32 Hebrew: kesitahs. A kesitah was a kind of silver coin.* They|strong=\"H3478\"* became|strong=\"H1961\"* the|strong=\"H5927\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H5927\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*." + }, + { + "verseNum": 33, + "text": "Eleazar the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron died|strong=\"H4191\"*. They|strong=\"H5414\"* buried|strong=\"H6912\"* him|strong=\"H5414\"* in|strong=\"H4191\"* the|strong=\"H5414\"* hill|strong=\"H2022\"* of|strong=\"H1121\"* Phinehas|strong=\"H6372\"* his|strong=\"H5414\"* son|strong=\"H1121\"*, which|strong=\"H2022\"* was|strong=\"H1121\"* given|strong=\"H5414\"* him|strong=\"H5414\"* in|strong=\"H4191\"* the|strong=\"H5414\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1121\"* Ephraim." + } + ] + } + ] + }, + { + "name": "Judges", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* the|strong=\"H3068\"* death|strong=\"H4194\"* of|strong=\"H1121\"* Joshua|strong=\"H3091\"*, the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* asked|strong=\"H7592\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*,+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* saying, “Who|strong=\"H4310\"* should|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* for|strong=\"H3068\"* us|strong=\"H1961\"* first|strong=\"H1121\"* against|strong=\"H3898\"* the|strong=\"H3068\"* Canaanites|strong=\"H3669\"*, to|strong=\"H3478\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* them|strong=\"H5927\"*?”" + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* said, “Judah|strong=\"H3063\"* shall|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"*. Behold|strong=\"H2009\"*,+ 1:2 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"H5414\"* have|strong=\"H3068\"* delivered|strong=\"H5414\"* the|strong=\"H5414\"* land into|strong=\"H5927\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 3, + "text": "Judah|strong=\"H3063\"* said to|strong=\"H1980\"* Simeon|strong=\"H8095\"* his|strong=\"H1980\"* brother, “Come|strong=\"H1980\"* up|strong=\"H5927\"* with|strong=\"H1980\"* me|strong=\"H5927\"* into|strong=\"H1980\"* my|strong=\"H5927\"* lot|strong=\"H1486\"*, that|strong=\"H3669\"* we|strong=\"H3068\"* may|strong=\"H1571\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* the|strong=\"H5927\"* Canaanites|strong=\"H3669\"*; and|strong=\"H1980\"* I|strong=\"H1571\"* likewise|strong=\"H1571\"* will|strong=\"H1571\"* go|strong=\"H1980\"* with|strong=\"H1980\"* you|strong=\"H1571\"* into|strong=\"H1980\"* your|strong=\"H1571\"* lot|strong=\"H1486\"*.” So|strong=\"H1980\"* Simeon|strong=\"H8095\"* went|strong=\"H1980\"* with|strong=\"H1980\"* him|strong=\"H5927\"*." + }, + { + "verseNum": 4, + "text": "Judah|strong=\"H3063\"* went|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H3063\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* the|strong=\"H5414\"* Canaanites|strong=\"H3669\"* and|strong=\"H3063\"* the|strong=\"H5414\"* Perizzites|strong=\"H6522\"* into|strong=\"H5927\"* their|strong=\"H3068\"* hand|strong=\"H3027\"*. They|strong=\"H3068\"* struck|strong=\"H5221\"* ten|strong=\"H6235\"* thousand men in|strong=\"H3068\"* Bezek." + }, + { + "verseNum": 5, + "text": "They|strong=\"H5221\"* found|strong=\"H4672\"* Adoni-Bezek in|strong=\"H4672\"* Bezek, and|strong=\"H5221\"* they|strong=\"H5221\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* him|strong=\"H5221\"*. They|strong=\"H5221\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* Canaanites|strong=\"H3669\"* and|strong=\"H5221\"* the|strong=\"H5221\"* Perizzites|strong=\"H6522\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"H7291\"* Adoni-Bezek fled|strong=\"H5127\"*. They|strong=\"H7272\"* pursued|strong=\"H7291\"* him|strong=\"H3027\"*, caught him|strong=\"H3027\"*, and|strong=\"H3027\"* cut|strong=\"H7112\"* off|strong=\"H7112\"* his|strong=\"H3027\"* thumbs and|strong=\"H3027\"* his|strong=\"H3027\"* big toes|strong=\"H7272\"*." + }, + { + "verseNum": 7, + "text": "Adoni-Bezek said|strong=\"H3651\"*, “Seventy|strong=\"H7657\"* kings|strong=\"H4428\"*, having|strong=\"H1961\"* their|strong=\"H1961\"* thumbs and|strong=\"H4428\"* their|strong=\"H1961\"* big toes|strong=\"H7272\"* cut|strong=\"H7112\"* off|strong=\"H7112\"*, scavenged under|strong=\"H8478\"* my|strong=\"H1961\"* table|strong=\"H7979\"*. As|strong=\"H1961\"* I|strong=\"H3651\"* have|strong=\"H1961\"* done|strong=\"H6213\"*, so|strong=\"H3651\"* God|strong=\"H7999\"*+ 1:7 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* has|strong=\"H1961\"* done|strong=\"H6213\"* to|strong=\"H4191\"* me|strong=\"H6213\"*.” They|strong=\"H3651\"* brought|strong=\"H6213\"* him|strong=\"H3027\"* to|strong=\"H4191\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H4428\"* he|strong=\"H8033\"* died|strong=\"H4191\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5221\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* Jerusalem|strong=\"H3389\"*, took|strong=\"H3920\"* it|strong=\"H5221\"*, struck|strong=\"H5221\"* it|strong=\"H5221\"* with|strong=\"H3898\"* the|strong=\"H5221\"* edge|strong=\"H6310\"* of|strong=\"H1121\"* the|strong=\"H5221\"* sword|strong=\"H2719\"*, and|strong=\"H1121\"* set|strong=\"H7971\"* the|strong=\"H5221\"* city|strong=\"H5892\"* on|strong=\"H7971\"* fire." + }, + { + "verseNum": 9, + "text": "After|strong=\"H3381\"* that|strong=\"H1121\"*, the|strong=\"H3427\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* the|strong=\"H3427\"* Canaanites|strong=\"H3669\"* who|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, and|strong=\"H1121\"* in|strong=\"H3427\"* the|strong=\"H3427\"* South|strong=\"H5045\"*, and|strong=\"H1121\"* in|strong=\"H3427\"* the|strong=\"H3427\"* lowland|strong=\"H8219\"*." + }, + { + "verseNum": 10, + "text": "Judah|strong=\"H3063\"* went|strong=\"H3212\"* against|strong=\"H6440\"* the|strong=\"H6440\"* Canaanites|strong=\"H3669\"* who|strong=\"H3427\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Hebron|strong=\"H2275\"*. (The|strong=\"H6440\"* name|strong=\"H8034\"* of|strong=\"H3427\"* Hebron|strong=\"H2275\"* before|strong=\"H6440\"* that|strong=\"H3669\"* was|strong=\"H8034\"* Kiriath Arba.) They|strong=\"H5221\"* struck|strong=\"H5221\"* Sheshai|strong=\"H8344\"*, Ahiman, and|strong=\"H3063\"* Talmai|strong=\"H8526\"*." + }, + { + "verseNum": 11, + "text": "From|strong=\"H6440\"* there|strong=\"H8033\"* he|strong=\"H8033\"* went|strong=\"H3212\"* against|strong=\"H6440\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Debir|strong=\"H1688\"*. (The|strong=\"H6440\"* name|strong=\"H8034\"* of|strong=\"H3427\"* Debir|strong=\"H1688\"* before|strong=\"H6440\"* that|strong=\"H3212\"* was|strong=\"H8034\"* Kiriath Sepher.)" + }, + { + "verseNum": 12, + "text": "Caleb|strong=\"H3612\"* said, “I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* Achsah|strong=\"H5915\"* my|strong=\"H5414\"* daughter|strong=\"H1323\"* as|strong=\"H5414\"* wife to|strong=\"H5414\"* the|strong=\"H5414\"* man who|strong=\"H1323\"* strikes|strong=\"H5221\"* Kiriath Sepher, and|strong=\"H1323\"* takes|strong=\"H3920\"* it|strong=\"H5414\"*.”" + }, + { + "verseNum": 13, + "text": "Othniel|strong=\"H6274\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kenaz|strong=\"H7073\"*, Caleb|strong=\"H3612\"*’s younger|strong=\"H6996\"* brother, took|strong=\"H3920\"* it|strong=\"H5414\"*, so|strong=\"H4480\"* he|strong=\"H5414\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* Achsah|strong=\"H5915\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"* as|strong=\"H1121\"* his|strong=\"H5414\"* wife." + }, + { + "verseNum": 14, + "text": "When|strong=\"H1961\"* she|strong=\"H5921\"* came|strong=\"H1961\"*, she|strong=\"H5921\"* got him|strong=\"H5921\"* to|strong=\"H1961\"* ask|strong=\"H7592\"* her|strong=\"H5921\"* father for|strong=\"H5921\"* a|strong=\"H3068\"* field|strong=\"H7704\"*. She|strong=\"H5921\"* got off|strong=\"H5921\"* her|strong=\"H5921\"* donkey|strong=\"H2543\"*; and|strong=\"H7704\"* Caleb|strong=\"H3612\"* said to|strong=\"H1961\"* her|strong=\"H5921\"*, “What|strong=\"H4100\"* would|strong=\"H4100\"* you|strong=\"H5921\"* like|strong=\"H1961\"*?”" + }, + { + "verseNum": 15, + "text": "She|strong=\"H3588\"* said to|strong=\"H5414\"* him|strong=\"H5414\"*, “Give|strong=\"H5414\"* me|strong=\"H5414\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"*; because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5414\"* set|strong=\"H5414\"* me|strong=\"H5414\"* in|strong=\"H5414\"* the|strong=\"H3588\"* land of|strong=\"H4325\"* the|strong=\"H3588\"* South|strong=\"H5045\"*, give|strong=\"H5414\"* me|strong=\"H5414\"* also|strong=\"H3588\"* springs|strong=\"H1543\"* of|strong=\"H4325\"* water|strong=\"H4325\"*.” Then|strong=\"H5414\"* Caleb|strong=\"H3612\"* gave|strong=\"H5414\"* her|strong=\"H5414\"* the|strong=\"H3588\"* upper|strong=\"H5942\"* springs|strong=\"H1543\"* and|strong=\"H4325\"* the|strong=\"H3588\"* lower|strong=\"H8482\"* springs|strong=\"H1543\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H5927\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5927\"* Kenite|strong=\"H7017\"*, Moses|strong=\"H4872\"*’ brother-in-law, went|strong=\"H3212\"* up|strong=\"H5927\"* out|strong=\"H3212\"* of|strong=\"H1121\"* the|strong=\"H5927\"* city|strong=\"H5892\"* of|strong=\"H1121\"* palm|strong=\"H8558\"* trees|strong=\"H8558\"* with|strong=\"H3427\"* the|strong=\"H5927\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* into|strong=\"H5927\"* the|strong=\"H5927\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, which|strong=\"H5971\"* is|strong=\"H5892\"* in|strong=\"H3427\"* the|strong=\"H5927\"* south|strong=\"H5045\"* of|strong=\"H1121\"* Arad|strong=\"H6166\"*; and|strong=\"H1121\"* they|strong=\"H5971\"* went|strong=\"H3212\"* and|strong=\"H1121\"* lived|strong=\"H3427\"* with|strong=\"H3427\"* the|strong=\"H5927\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 17, + "text": "Judah|strong=\"H3063\"* went|strong=\"H3212\"* with|strong=\"H3427\"* Simeon|strong=\"H8095\"* his|strong=\"H7121\"* brother, and|strong=\"H3063\"* they|strong=\"H2763\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* Canaanites|strong=\"H3669\"* who|strong=\"H3427\"* inhabited|strong=\"H3427\"* Zephath|strong=\"H6857\"*, and|strong=\"H3063\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* it|strong=\"H7121\"*. The|strong=\"H5221\"* name|strong=\"H8034\"* of|strong=\"H3427\"* the|strong=\"H5221\"* city|strong=\"H5892\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Hormah|strong=\"H2767\"*." + }, + { + "verseNum": 18, + "text": "Also|strong=\"H5804\"* Judah|strong=\"H3063\"* took|strong=\"H3920\"* Gaza|strong=\"H5804\"* with|strong=\"H1366\"* its|strong=\"H3920\"* border|strong=\"H1366\"*, and|strong=\"H3063\"* Ashkelon with|strong=\"H1366\"* its|strong=\"H3920\"* border|strong=\"H1366\"*, and|strong=\"H3063\"* Ekron|strong=\"H6138\"* with|strong=\"H1366\"* its|strong=\"H3920\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H3068\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* drove|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3588\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H3588\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* could not|strong=\"H3808\"* drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3588\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H3588\"* valley|strong=\"H6010\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* chariots|strong=\"H7393\"* of|strong=\"H3068\"* iron|strong=\"H1270\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H8033\"* gave|strong=\"H5414\"* Hebron|strong=\"H2275\"* to|strong=\"H1696\"* Caleb|strong=\"H3612\"*, as|strong=\"H1121\"* Moses|strong=\"H4872\"* had|strong=\"H4872\"* said|strong=\"H1696\"*, and|strong=\"H1121\"* he|strong=\"H8033\"* drove|strong=\"H3423\"* the|strong=\"H5414\"* three|strong=\"H7969\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Anak out|strong=\"H3423\"* of|strong=\"H1121\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* didn’t drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3117\"* Jebusites|strong=\"H2983\"* who|strong=\"H1121\"* inhabited|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*, but|strong=\"H3808\"* the|strong=\"H3117\"* Jebusites|strong=\"H2983\"* dwell|strong=\"H3427\"* with|strong=\"H3427\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Joseph|strong=\"H3130\"* also|strong=\"H1571\"* went|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5973\"* Bethel|strong=\"H1008\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Joseph|strong=\"H3130\"* sent to|strong=\"H6440\"* spy|strong=\"H8446\"* out|strong=\"H8446\"* Bethel|strong=\"H1008\"*. (The|strong=\"H6440\"* name|strong=\"H8034\"* of|strong=\"H1004\"* the|strong=\"H6440\"* city|strong=\"H5892\"* before|strong=\"H6440\"* that|strong=\"H5892\"* was|strong=\"H8034\"* Luz|strong=\"H3870\"*.)" + }, + { + "verseNum": 24, + "text": "The|strong=\"H7200\"* watchers saw|strong=\"H7200\"* a|strong=\"H3068\"* man|strong=\"H7200\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H5892\"* the|strong=\"H7200\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* they|strong=\"H6213\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H6213\"*, “Please|strong=\"H4994\"* show|strong=\"H7200\"* us|strong=\"H4994\"* the|strong=\"H7200\"* entrance|strong=\"H3996\"* into|strong=\"H6213\"* the|strong=\"H7200\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* we|strong=\"H3068\"* will|strong=\"H5892\"* deal|strong=\"H6213\"* kindly|strong=\"H2617\"* with|strong=\"H5973\"* you|strong=\"H6213\"*.”" + }, + { + "verseNum": 25, + "text": "He|strong=\"H3605\"* showed|strong=\"H7200\"* them|strong=\"H7971\"* the|strong=\"H3605\"* entrance|strong=\"H3996\"* into|strong=\"H2719\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H7971\"* they|strong=\"H6310\"* struck|strong=\"H5221\"* the|strong=\"H3605\"* city|strong=\"H5892\"* with|strong=\"H5892\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H5892\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*; but|strong=\"H7200\"* they|strong=\"H6310\"* let|strong=\"H7971\"* the|strong=\"H3605\"* man|strong=\"H3605\"* and|strong=\"H7971\"* all|strong=\"H3605\"* his|strong=\"H3605\"* family|strong=\"H4940\"* go|strong=\"H7971\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H3117\"* man|strong=\"H2088\"* went|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H3117\"* land of|strong=\"H3117\"* the|strong=\"H3117\"* Hittites|strong=\"H2850\"*, built|strong=\"H1129\"* a|strong=\"H3068\"* city|strong=\"H5892\"*, and|strong=\"H3117\"* called|strong=\"H7121\"* its|strong=\"H5892\"* name|strong=\"H8034\"* Luz|strong=\"H3870\"*, which|strong=\"H1931\"* is|strong=\"H2088\"* its|strong=\"H5892\"* name|strong=\"H8034\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 27, + "text": "Manasseh|strong=\"H4519\"* didn’t drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H1323\"* Beth Shean and|strong=\"H3427\"* its|strong=\"H3808\"* towns|strong=\"H1323\"*, nor|strong=\"H3808\"* Taanach|strong=\"H8590\"* and|strong=\"H3427\"* its|strong=\"H3808\"* towns|strong=\"H1323\"*, nor|strong=\"H3808\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H1323\"* Dor|strong=\"H1756\"* and|strong=\"H3427\"* its|strong=\"H3808\"* towns|strong=\"H1323\"*, nor|strong=\"H3808\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H1323\"* Ibleam|strong=\"H2991\"* and|strong=\"H3427\"* its|strong=\"H3808\"* towns|strong=\"H1323\"*, nor|strong=\"H3808\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H1323\"* Megiddo|strong=\"H4023\"* and|strong=\"H3427\"* its|strong=\"H3808\"* towns|strong=\"H1323\"*; but|strong=\"H3808\"* the|strong=\"H3423\"* Canaanites|strong=\"H3669\"* would|strong=\"H2974\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* that|strong=\"H3669\"* land." + }, + { + "verseNum": 28, + "text": "When|strong=\"H3588\"* Israel|strong=\"H3478\"* had|strong=\"H1961\"* grown|strong=\"H1961\"* strong|strong=\"H2388\"*, they|strong=\"H3588\"* put|strong=\"H7760\"* the|strong=\"H3588\"* Canaanites|strong=\"H3669\"* to|strong=\"H3478\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"*, and|strong=\"H3478\"* didn’t utterly|strong=\"H3423\"* drive|strong=\"H3423\"* them|strong=\"H7760\"* out|strong=\"H3423\"*." + }, + { + "verseNum": 29, + "text": "Ephraim didn’t drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3423\"* Canaanites|strong=\"H3669\"* who|strong=\"H3427\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Gezer|strong=\"H1507\"*, but|strong=\"H3808\"* the|strong=\"H3423\"* Canaanites|strong=\"H3669\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Gezer|strong=\"H1507\"* among|strong=\"H7130\"* them|strong=\"H3423\"*." + }, + { + "verseNum": 30, + "text": "Zebulun|strong=\"H2074\"* didn’t drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Kitron|strong=\"H7003\"*, nor|strong=\"H3808\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Nahalol|strong=\"H5096\"*; but|strong=\"H3808\"* the|strong=\"H3423\"* Canaanites|strong=\"H3669\"* lived|strong=\"H3427\"* among|strong=\"H7130\"* them|strong=\"H3423\"*, and|strong=\"H3427\"* became|strong=\"H1961\"* subject to|strong=\"H1961\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"*." + }, + { + "verseNum": 31, + "text": "Asher didn’t drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Acco|strong=\"H5910\"*, nor|strong=\"H3808\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Sidon|strong=\"H6721\"*, nor|strong=\"H3808\"* of|strong=\"H3427\"* Ahlab, nor|strong=\"H3808\"* of|strong=\"H3427\"* Achzib, nor|strong=\"H3808\"* of|strong=\"H3427\"* Helbah|strong=\"H2462\"*, nor|strong=\"H3808\"* of|strong=\"H3427\"* Aphik, nor|strong=\"H3808\"* of|strong=\"H3427\"* Rehob|strong=\"H7340\"*;" + }, + { + "verseNum": 32, + "text": "but|strong=\"H3588\"* the|strong=\"H3588\"* Asherites lived|strong=\"H3427\"* among|strong=\"H7130\"* the|strong=\"H3588\"* Canaanites|strong=\"H3669\"*, the|strong=\"H3588\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3588\"* land|strong=\"H7130\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* didn’t drive|strong=\"H3423\"* them|strong=\"H3423\"* out|strong=\"H3423\"*." + }, + { + "verseNum": 33, + "text": "Naphtali|strong=\"H5321\"* didn’t drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Beth Shemesh, nor|strong=\"H3808\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Beth Anath; but|strong=\"H3808\"* he|strong=\"H3808\"* lived|strong=\"H3427\"* among|strong=\"H7130\"* the|strong=\"H3423\"* Canaanites|strong=\"H3669\"*, the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3423\"* land|strong=\"H7130\"*. Nevertheless the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Beth Shemesh and|strong=\"H3427\"* of|strong=\"H3427\"* Beth Anath became|strong=\"H1961\"* subject to|strong=\"H1961\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"H3588\"* Amorites forced|strong=\"H3905\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* into|strong=\"H3381\"* the|strong=\"H3588\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* would not|strong=\"H3808\"* allow|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3381\"* come|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3588\"* valley|strong=\"H6010\"*;" + }, + { + "verseNum": 35, + "text": "but|strong=\"H1961\"* the|strong=\"H1961\"* Amorites would|strong=\"H2974\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Mount|strong=\"H2022\"* Heres|strong=\"H2776\"*, in|strong=\"H3427\"* Aijalon, and|strong=\"H3027\"* in|strong=\"H3427\"* Shaalbim|strong=\"H8169\"*. Yet the|strong=\"H1961\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* the|strong=\"H1961\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Joseph|strong=\"H3130\"* prevailed|strong=\"H3513\"*, so|strong=\"H1961\"* that|strong=\"H2022\"* they|strong=\"H3027\"* became|strong=\"H1961\"* subject to|strong=\"H1961\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"H4605\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H4605\"* Amorites was|strong=\"H1366\"* from|strong=\"H1366\"* the|strong=\"H4605\"* ascent|strong=\"H4610\"* of|strong=\"H1366\"* Akrabbim|strong=\"H4610\"*, from|strong=\"H1366\"* the|strong=\"H4605\"* rock|strong=\"H5553\"*, and|strong=\"H4605\"* upward|strong=\"H4605\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* came|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H4480\"* Gilgal|strong=\"H1537\"* to|strong=\"H3068\"* Bochim|strong=\"H1066\"*. He|strong=\"H3068\"* said, “I|strong=\"H4714\"* brought|strong=\"H5927\"* you|strong=\"H3808\"* out|strong=\"H4480\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* brought|strong=\"H5927\"* you|strong=\"H3808\"* to|strong=\"H3068\"* the|strong=\"H3068\"* land which|strong=\"H3068\"* I|strong=\"H4714\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* give|strong=\"H5927\"* your|strong=\"H3068\"* fathers. I|strong=\"H4714\"* said, ‘I|strong=\"H4714\"* will|strong=\"H3068\"* never|strong=\"H3808\"* break|strong=\"H6565\"* my|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* you|strong=\"H3808\"*." + }, + { + "verseNum": 2, + "text": "You|strong=\"H6213\"* shall|strong=\"H3808\"* make|strong=\"H6213\"* no|strong=\"H3808\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* the|strong=\"H8085\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* this|strong=\"H2063\"* land. You|strong=\"H6213\"* shall|strong=\"H3808\"* break|strong=\"H5422\"* down|strong=\"H5422\"* their|strong=\"H8085\"* altars|strong=\"H4196\"*.’ But|strong=\"H3808\"* you|strong=\"H6213\"* have|strong=\"H3808\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H6213\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*. Why|strong=\"H4100\"* have|strong=\"H3808\"* you|strong=\"H6213\"* done|strong=\"H6213\"* this|strong=\"H2063\"*?" + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H1571\"* I|strong=\"H3808\"* also|strong=\"H1571\"* said, ‘I|strong=\"H3808\"* will|strong=\"H1961\"* not|strong=\"H3808\"* drive|strong=\"H1644\"* them|strong=\"H6440\"* out|strong=\"H1644\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*; but|strong=\"H3808\"* they|strong=\"H3808\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* in|strong=\"H6440\"* your|strong=\"H6440\"* sides|strong=\"H6654\"*, and|strong=\"H6440\"* their|strong=\"H6440\"* gods will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* snare|strong=\"H4170\"* to|strong=\"H1961\"* you|strong=\"H6440\"*.’”" + }, + { + "verseNum": 4, + "text": "When|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* spoke|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, the|strong=\"H3605\"* people|strong=\"H5971\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H3605\"* voice|strong=\"H6963\"* and|strong=\"H1121\"* wept|strong=\"H1058\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H8033\"* called|strong=\"H7121\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H3068\"* that|strong=\"H1931\"* place|strong=\"H4725\"* Bochim|strong=\"H1066\"*,+ 2:5 “Bochim” means “weepers”.* and|strong=\"H3068\"* they|strong=\"H8033\"* sacrificed|strong=\"H2076\"* there|strong=\"H8033\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"H3478\"* when|strong=\"H7971\"* Joshua|strong=\"H3091\"* had|strong=\"H3478\"* sent|strong=\"H7971\"* the|strong=\"H3423\"* people|strong=\"H5971\"* away|strong=\"H7971\"*, the|strong=\"H3423\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* each|strong=\"H5971\"* went|strong=\"H3212\"* to|strong=\"H3478\"* his|strong=\"H7971\"* inheritance|strong=\"H5159\"* to|strong=\"H3478\"* possess|strong=\"H3423\"* the|strong=\"H3423\"* land|strong=\"H5159\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* people|strong=\"H5971\"* served|strong=\"H5647\"* Yahweh|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* Joshua|strong=\"H3091\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* who|strong=\"H3605\"* outlived Joshua|strong=\"H3091\"*, who|strong=\"H3605\"* had|strong=\"H3068\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* great|strong=\"H1419\"* work|strong=\"H4639\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* that|strong=\"H5971\"* he|strong=\"H3117\"* had|strong=\"H3068\"* worked|strong=\"H6213\"* for|strong=\"H6213\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "Joshua|strong=\"H3091\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, the|strong=\"H3068\"* servant|strong=\"H5650\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, died|strong=\"H4191\"*, being|strong=\"H1121\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* ten|strong=\"H6235\"* years|strong=\"H8141\"* old|strong=\"H1121\"*." + }, + { + "verseNum": 9, + "text": "They buried|strong=\"H6912\"* him|strong=\"H6912\"* in|strong=\"H6912\"* the|strong=\"H6912\"* border|strong=\"H1366\"* of|strong=\"H2022\"* his|strong=\"H6912\"* inheritance|strong=\"H5159\"* in|strong=\"H6912\"* Timnath Heres, in|strong=\"H6912\"* the|strong=\"H6912\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim, on|strong=\"H2022\"* the|strong=\"H6912\"* north|strong=\"H6828\"* of|strong=\"H2022\"* the|strong=\"H6912\"* mountain|strong=\"H2022\"* of|strong=\"H2022\"* Gaash|strong=\"H1608\"*." + }, + { + "verseNum": 10, + "text": "After|strong=\"H6965\"* all|strong=\"H3605\"* that|strong=\"H3045\"* generation|strong=\"H1755\"* were|strong=\"H3478\"* gathered|strong=\"H6213\"* to|strong=\"H3478\"* their|strong=\"H3605\"* fathers, another|strong=\"H1571\"* generation|strong=\"H1755\"* arose|strong=\"H6965\"* after|strong=\"H6965\"* them|strong=\"H6213\"* who|strong=\"H3605\"* didn’t know|strong=\"H3045\"* Yahweh|strong=\"H3068\"*, nor|strong=\"H3808\"* the|strong=\"H3605\"* work|strong=\"H4639\"* which|strong=\"H1931\"* he|strong=\"H1931\"* had|strong=\"H3068\"* done|strong=\"H6213\"* for|strong=\"H6213\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H1121\"* served|strong=\"H5647\"* the|strong=\"H6213\"* Baals|strong=\"H1168\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3068\"* abandoned|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* their|strong=\"H3068\"* fathers, who|strong=\"H5971\"* brought|strong=\"H3318\"* them|strong=\"H5439\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* followed|strong=\"H3212\"* other gods, of|strong=\"H3068\"* the|strong=\"H3068\"* gods of|strong=\"H3068\"* the|strong=\"H3068\"* peoples|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* around|strong=\"H5439\"* them|strong=\"H5439\"*, and|strong=\"H3068\"* bowed|strong=\"H7812\"* themselves|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H3318\"* them|strong=\"H5439\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* provoked|strong=\"H3707\"* Yahweh|strong=\"H3068\"* to|strong=\"H3318\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"H3068\"* abandoned|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* served|strong=\"H5647\"* Baal|strong=\"H1168\"* and|strong=\"H3068\"* the|strong=\"H5647\"* Ashtaroth|strong=\"H6252\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"*’s anger|strong=\"H6440\"* burned|strong=\"H2734\"* against|strong=\"H2734\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* he|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H6440\"* hands|strong=\"H3027\"* of|strong=\"H3068\"* raiders who|strong=\"H3068\"* plundered|strong=\"H8155\"* them|strong=\"H5414\"*. He|strong=\"H3068\"* sold|strong=\"H4376\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H6440\"* hands|strong=\"H3027\"* of|strong=\"H3068\"* their|strong=\"H3068\"* enemies|strong=\"H3027\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, so|strong=\"H5414\"* that|strong=\"H3068\"* they|strong=\"H3068\"* could|strong=\"H3201\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* their|strong=\"H3068\"* enemies|strong=\"H3027\"*." + }, + { + "verseNum": 15, + "text": "Wherever|strong=\"H3605\"* they|strong=\"H3068\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* against|strong=\"H1696\"* them|strong=\"H3027\"* for|strong=\"H3027\"* evil|strong=\"H7451\"*, as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"*, and|strong=\"H3068\"* as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* sworn|strong=\"H7650\"* to|strong=\"H1696\"* them|strong=\"H3027\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* were|strong=\"H1961\"* very|strong=\"H3966\"* distressed|strong=\"H3334\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* judges|strong=\"H8199\"*, who|strong=\"H3068\"* saved|strong=\"H3467\"* them|strong=\"H3027\"* out|strong=\"H6965\"* of|strong=\"H3068\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* those|strong=\"H3467\"* who|strong=\"H3068\"* plundered|strong=\"H8154\"* them|strong=\"H3027\"*." + }, + { + "verseNum": 17, + "text": "Yet|strong=\"H3588\"* they|strong=\"H3588\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1980\"* their|strong=\"H3068\"* judges|strong=\"H8199\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* prostituted|strong=\"H2181\"* themselves|strong=\"H7812\"* to|strong=\"H1980\"* other gods|strong=\"H1980\"*, and|strong=\"H1980\"* bowed|strong=\"H7812\"* themselves|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H1980\"* them|strong=\"H6213\"*. They|strong=\"H3588\"* quickly|strong=\"H4118\"* turned|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* the|strong=\"H8085\"* way|strong=\"H1870\"* in|strong=\"H1980\"* which|strong=\"H3068\"* their|strong=\"H3068\"* fathers walked|strong=\"H1980\"*, obeying|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s commandments|strong=\"H4687\"*. They|strong=\"H3588\"* didn’t do|strong=\"H6213\"* so|strong=\"H3651\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H3588\"* Yahweh|strong=\"H3068\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* judges|strong=\"H8199\"* for|strong=\"H3588\"* them|strong=\"H6440\"*, then|strong=\"H1961\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* the|strong=\"H3605\"* judge|strong=\"H8199\"*, and|strong=\"H6965\"* saved|strong=\"H3467\"* them|strong=\"H6440\"* out|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* their|strong=\"H3605\"* enemies|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3605\"* judge|strong=\"H8199\"*; for|strong=\"H3588\"* it|strong=\"H3588\"* grieved Yahweh|strong=\"H3068\"* because|strong=\"H3588\"* of|strong=\"H3068\"* their|strong=\"H3605\"* groaning|strong=\"H5009\"* by|strong=\"H3027\"* reason|strong=\"H6440\"* of|strong=\"H3068\"* those|strong=\"H3605\"* who|strong=\"H3605\"* oppressed|strong=\"H3905\"* them|strong=\"H6440\"* and|strong=\"H6965\"* troubled them|strong=\"H6440\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"H3808\"* when|strong=\"H1961\"* the|strong=\"H5647\"* judge|strong=\"H8199\"* was|strong=\"H1961\"* dead|strong=\"H4191\"*, they|strong=\"H3808\"* turned|strong=\"H7725\"* back|strong=\"H7725\"*, and|strong=\"H7725\"* dealt more|strong=\"H3808\"* corruptly|strong=\"H7843\"* than|strong=\"H3808\"* their|strong=\"H7725\"* fathers in|strong=\"H4191\"* following|strong=\"H3212\"* other gods to|strong=\"H7725\"* serve|strong=\"H5647\"* them|strong=\"H7725\"* and|strong=\"H7725\"* to|strong=\"H7725\"* bow|strong=\"H7812\"* down|strong=\"H5307\"* to|strong=\"H7725\"* them|strong=\"H7725\"*. They|strong=\"H3808\"* didn’t cease|strong=\"H7725\"* what|strong=\"H1870\"* they|strong=\"H3808\"* were|strong=\"H1961\"* doing|strong=\"H1870\"*, or|strong=\"H3808\"* give|strong=\"H7725\"* up|strong=\"H3212\"* their|strong=\"H7725\"* stubborn|strong=\"H7186\"* ways|strong=\"H1870\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"*’s anger|strong=\"H5674\"* burned|strong=\"H2734\"* against|strong=\"H2734\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* he|strong=\"H3068\"* said|strong=\"H8085\"*, “Because|strong=\"H3282\"* this|strong=\"H2088\"* nation|strong=\"H1471\"* transgressed|strong=\"H5674\"* my|strong=\"H8085\"* covenant|strong=\"H1285\"* which|strong=\"H3068\"* I|strong=\"H6680\"* commanded|strong=\"H6680\"* their|strong=\"H3068\"* fathers, and|strong=\"H3478\"* has|strong=\"H3068\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H3478\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*," + }, + { + "verseNum": 21, + "text": "I|strong=\"H3808\"* also|strong=\"H1571\"* will|strong=\"H1471\"* no|strong=\"H3808\"* longer|strong=\"H3254\"* drive|strong=\"H3423\"* out|strong=\"H3423\"* any|strong=\"H4480\"* of|strong=\"H6440\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* that|strong=\"H1471\"* Joshua|strong=\"H3091\"* left|strong=\"H5800\"* when|strong=\"H4480\"* he|strong=\"H4480\"* died|strong=\"H4191\"* from|strong=\"H4480\"* before|strong=\"H6440\"* them|strong=\"H6440\"*;" + }, + { + "verseNum": 22, + "text": "that|strong=\"H3068\"* by|strong=\"H3068\"* them|strong=\"H1992\"* I|strong=\"H3808\"* may|strong=\"H3068\"* test|strong=\"H5254\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* see if they|strong=\"H1992\"* will|strong=\"H3068\"* keep|strong=\"H8104\"* Yahweh|strong=\"H3068\"*’s way|strong=\"H1870\"* to|strong=\"H3478\"* walk|strong=\"H3212\"* therein, as|strong=\"H3068\"* their|strong=\"H3068\"* fathers kept|strong=\"H8104\"* it|strong=\"H3808\"*, or|strong=\"H3808\"* not|strong=\"H3808\"*.”" + }, + { + "verseNum": 23, + "text": "So|strong=\"H5414\"* Yahweh|strong=\"H3068\"* left|strong=\"H3240\"* those|strong=\"H3240\"* nations|strong=\"H1471\"*, without|strong=\"H3808\"* driving|strong=\"H3423\"* them|strong=\"H5414\"* out|strong=\"H3423\"* hastily|strong=\"H4118\"*. He|strong=\"H3068\"* didn’t deliver|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* Joshua|strong=\"H3091\"*’s hand|strong=\"H3027\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* these|strong=\"H3605\"* are|strong=\"H1471\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* left|strong=\"H3240\"*, to|strong=\"H3478\"* test|strong=\"H5254\"* Israel|strong=\"H3478\"* by|strong=\"H3068\"* them|strong=\"H3068\"*, even|strong=\"H3808\"* as|strong=\"H3068\"* many|strong=\"H3808\"* as|strong=\"H3068\"* had|strong=\"H3068\"* not|strong=\"H3808\"* known|strong=\"H3045\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wars|strong=\"H4421\"* of|strong=\"H3068\"* Canaan|strong=\"H3667\"*;" + }, + { + "verseNum": 2, + "text": "only|strong=\"H7535\"* that|strong=\"H3045\"* the|strong=\"H6440\"* generations|strong=\"H1755\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* might|strong=\"H4616\"* know|strong=\"H3045\"*, to|strong=\"H3478\"* teach|strong=\"H3925\"* them|strong=\"H6440\"* war|strong=\"H4421\"*, at|strong=\"H3478\"* least those|strong=\"H1121\"* who|strong=\"H1121\"* knew|strong=\"H3045\"* nothing|strong=\"H3808\"* of|strong=\"H1121\"* it|strong=\"H3045\"* before|strong=\"H6440\"*:" + }, + { + "verseNum": 3, + "text": "the|strong=\"H3605\"* five|strong=\"H2568\"* lords|strong=\"H5633\"* of|strong=\"H3427\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* Canaanites|strong=\"H3669\"*, the|strong=\"H3605\"* Sidonians|strong=\"H6722\"*, and|strong=\"H2568\"* the|strong=\"H3605\"* Hivites|strong=\"H2340\"* who|strong=\"H3605\"* lived|strong=\"H3427\"* on|strong=\"H3427\"* Mount|strong=\"H2022\"* Lebanon|strong=\"H3844\"*, from|strong=\"H5704\"* Mount|strong=\"H2022\"* Baal Hermon to|strong=\"H5704\"* the|strong=\"H3605\"* entrance of|strong=\"H3427\"* Hamath|strong=\"H2574\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H3068\"* were|strong=\"H3478\"* left|strong=\"H1961\"* to|strong=\"H3478\"* test|strong=\"H5254\"* Israel|strong=\"H3478\"* by|strong=\"H3027\"* them|strong=\"H3027\"*, to|strong=\"H3478\"* know|strong=\"H3045\"* whether|strong=\"H3045\"* they|strong=\"H3068\"* would|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s commandments|strong=\"H4687\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* commanded|strong=\"H6680\"* their|strong=\"H3068\"* fathers by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H7130\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* lived|strong=\"H3427\"* among|strong=\"H7130\"* the|strong=\"H7130\"* Canaanites|strong=\"H3669\"*, the|strong=\"H7130\"* Hittites|strong=\"H2850\"*, the|strong=\"H7130\"* Amorites, the|strong=\"H7130\"* Perizzites|strong=\"H6522\"*, the|strong=\"H7130\"* Hivites|strong=\"H2340\"*, and|strong=\"H1121\"* the|strong=\"H7130\"* Jebusites|strong=\"H2983\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H1992\"* took|strong=\"H3947\"* their|strong=\"H5414\"* daughters|strong=\"H1323\"* to|strong=\"H5414\"* be|strong=\"H1121\"* their|strong=\"H5414\"* wives, and|strong=\"H1121\"* gave|strong=\"H5414\"* their|strong=\"H5414\"* own daughters|strong=\"H1323\"* to|strong=\"H5414\"* their|strong=\"H5414\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* served|strong=\"H5647\"* their|strong=\"H5414\"* gods." + }, + { + "verseNum": 7, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H1121\"* forgot|strong=\"H7911\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H1121\"* served|strong=\"H5647\"* the|strong=\"H6213\"* Baals|strong=\"H1168\"* and|strong=\"H1121\"* the|strong=\"H6213\"* Asheroth." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* sold|strong=\"H4376\"* them|strong=\"H3027\"* into|strong=\"H3027\"* the|strong=\"H5647\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Cushan Rishathaim king|strong=\"H4428\"* of|strong=\"H1121\"* Mesopotamia; and|strong=\"H1121\"* the|strong=\"H5647\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* served|strong=\"H5647\"* Cushan Rishathaim eight|strong=\"H8083\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"H3068\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* cried|strong=\"H2199\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, Yahweh|strong=\"H3068\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* a|strong=\"H3068\"* savior|strong=\"H3467\"* to|strong=\"H3478\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, who|strong=\"H3068\"* saved|strong=\"H3467\"* them|strong=\"H1121\"*, even|strong=\"H3068\"* Othniel|strong=\"H6274\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kenaz|strong=\"H7073\"*, Caleb|strong=\"H3612\"*’s younger|strong=\"H6996\"* brother." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* came|strong=\"H1961\"* on|strong=\"H5921\"* him|strong=\"H5414\"*, and|strong=\"H3478\"* he|strong=\"H3068\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* he|strong=\"H3068\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H4421\"*, and|strong=\"H3478\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* Cushan Rishathaim king|strong=\"H4428\"* of|strong=\"H4428\"* Mesopotamia into|strong=\"H8199\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*. His|strong=\"H5414\"* hand|strong=\"H3027\"* prevailed|strong=\"H5810\"* against|strong=\"H5921\"* Cushan Rishathaim." + }, + { + "verseNum": 11, + "text": "The|strong=\"H4191\"* land had|strong=\"H1121\"* rest|strong=\"H8252\"* forty years|strong=\"H8141\"*, then|strong=\"H1121\"* Othniel|strong=\"H6274\"* the|strong=\"H4191\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kenaz|strong=\"H7073\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* again|strong=\"H3254\"* did|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* strengthened|strong=\"H2388\"* Eglon|strong=\"H5700\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"* against|strong=\"H5921\"* Israel|strong=\"H3478\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* done|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H5221\"* gathered|strong=\"H3478\"* the|strong=\"H5221\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* and|strong=\"H1121\"* Amalek|strong=\"H6002\"* to|strong=\"H3478\"* himself; and|strong=\"H1121\"* he|strong=\"H5221\"* went|strong=\"H3212\"* and|strong=\"H1121\"* struck|strong=\"H5221\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* they|strong=\"H3478\"* possessed|strong=\"H3423\"* the|strong=\"H5221\"* city|strong=\"H5892\"* of|strong=\"H1121\"* palm|strong=\"H8558\"* trees|strong=\"H8558\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H5647\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* served|strong=\"H5647\"* Eglon|strong=\"H5700\"* the|strong=\"H5647\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"* eighteen|strong=\"H8083\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H3068\"* when|strong=\"H7971\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* cried|strong=\"H2199\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, Yahweh|strong=\"H3068\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* a|strong=\"H3068\"* savior|strong=\"H3467\"* for|strong=\"H3027\"* them|strong=\"H7971\"*: Ehud the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gera|strong=\"H1617\"*, the|strong=\"H3068\"* Benjamite|strong=\"H1145\"*, a|strong=\"H3068\"* left-handed|strong=\"H3225\"* man|strong=\"H1121\"*. The|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* sent|strong=\"H7971\"* tribute|strong=\"H4503\"* by|strong=\"H3027\"* him|strong=\"H7971\"* to|strong=\"H3478\"* Eglon|strong=\"H5700\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 16, + "text": "Ehud made|strong=\"H6213\"* himself|strong=\"H6213\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* which|strong=\"H2719\"* had|strong=\"H3225\"* two|strong=\"H8147\"* edges|strong=\"H6366\"*, a|strong=\"H3068\"* cubit|strong=\"H1574\"*+ 3:16 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* in|strong=\"H5921\"* length|strong=\"H5921\"*; and|strong=\"H2719\"* he|strong=\"H6213\"* wore|strong=\"H5921\"* it|strong=\"H5921\"* under|strong=\"H8478\"* his|strong=\"H5921\"* clothing on|strong=\"H5921\"* his|strong=\"H5921\"* right|strong=\"H3225\"* thigh|strong=\"H3409\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H7126\"* offered|strong=\"H7126\"* the|strong=\"H7126\"* tribute|strong=\"H4503\"* to|strong=\"H4428\"* Eglon|strong=\"H5700\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"*. Now|strong=\"H4428\"* Eglon|strong=\"H5700\"* was|strong=\"H4428\"* a|strong=\"H3068\"* very|strong=\"H3966\"* fat|strong=\"H1277\"* man." + }, + { + "verseNum": 18, + "text": "When|strong=\"H1961\"* Ehud|strong=\"H3615\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* offering|strong=\"H4503\"* the|strong=\"H5375\"* tribute|strong=\"H4503\"*, he|strong=\"H7971\"* sent|strong=\"H7971\"* away|strong=\"H7971\"* the|strong=\"H5375\"* people|strong=\"H5971\"* who|strong=\"H5971\"* carried|strong=\"H5375\"* the|strong=\"H5375\"* tribute|strong=\"H4503\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"H1931\"* he|strong=\"H1931\"* himself|strong=\"H1931\"* turned|strong=\"H7725\"* back|strong=\"H7725\"* from|strong=\"H4480\"* the|strong=\"H3605\"* stone idols|strong=\"H6456\"* that|strong=\"H3605\"* were|strong=\"H1697\"* by|strong=\"H5921\"* Gilgal|strong=\"H1537\"*, and|strong=\"H7725\"* said|strong=\"H1697\"*, “I|strong=\"H5921\"* have|strong=\"H1697\"* a|strong=\"H3068\"* secret|strong=\"H5643\"* message|strong=\"H1697\"* for|strong=\"H5921\"* you|strong=\"H3605\"*, O|strong=\"H3068\"* king|strong=\"H4428\"*.”" + }, + { + "verseNum": 20, + "text": "Ehud came|strong=\"H1697\"* to|strong=\"H5921\"* him|strong=\"H5921\"*; and|strong=\"H6965\"* he|strong=\"H1931\"* was|strong=\"H1931\"* sitting|strong=\"H3427\"* by|strong=\"H5921\"* himself|strong=\"H1931\"* alone|strong=\"H1931\"* in|strong=\"H3427\"* the|strong=\"H5921\"* cool|strong=\"H4747\"* upper|strong=\"H5944\"* room|strong=\"H5944\"*. Ehud said|strong=\"H1697\"*, “I|strong=\"H5921\"* have|strong=\"H1697\"* a|strong=\"H3068\"* message|strong=\"H1697\"* from|strong=\"H5921\"* God to|strong=\"H5921\"* you|strong=\"H5921\"*.” He|strong=\"H1931\"* arose|strong=\"H6965\"* out|strong=\"H5921\"* of|strong=\"H1697\"* his|strong=\"H5921\"* seat|strong=\"H3678\"*." + }, + { + "verseNum": 21, + "text": "Ehud put|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* left|strong=\"H8040\"* hand|strong=\"H3027\"*, and|strong=\"H7971\"* took|strong=\"H3947\"* the|strong=\"H5921\"* sword|strong=\"H2719\"* from|strong=\"H5921\"* his|strong=\"H7971\"* right|strong=\"H3225\"* thigh|strong=\"H3409\"*, and|strong=\"H7971\"* thrust|strong=\"H8628\"* it|strong=\"H5921\"* into|strong=\"H5921\"* his|strong=\"H7971\"* body|strong=\"H3409\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3588\"* handle|strong=\"H5325\"* also|strong=\"H1571\"* went|strong=\"H3318\"* in|strong=\"H3808\"* after|strong=\"H3588\"* the|strong=\"H3588\"* blade|strong=\"H3851\"*; and|strong=\"H2719\"* the|strong=\"H3588\"* fat|strong=\"H2459\"* closed|strong=\"H5462\"* on|strong=\"H3318\"* the|strong=\"H3588\"* blade|strong=\"H3851\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* didn’t draw|strong=\"H8025\"* the|strong=\"H3588\"* sword|strong=\"H2719\"* out|strong=\"H3318\"* of|strong=\"H3318\"* his|strong=\"H3588\"* body; and|strong=\"H2719\"* it|strong=\"H3588\"* came|strong=\"H3318\"* out|strong=\"H3318\"* behind|strong=\"H1157\"*." + }, + { + "verseNum": 23, + "text": "Then|strong=\"H3318\"* Ehud went|strong=\"H3318\"* out|strong=\"H3318\"* onto the|strong=\"H3318\"* porch|strong=\"H4528\"*, and|strong=\"H3318\"* shut|strong=\"H5462\"* the|strong=\"H3318\"* doors|strong=\"H1817\"* of|strong=\"H3318\"* the|strong=\"H3318\"* upper|strong=\"H5944\"* room|strong=\"H5944\"* on|strong=\"H3318\"* him|strong=\"H3318\"*, and|strong=\"H3318\"* locked|strong=\"H5274\"* them|strong=\"H3318\"*." + }, + { + "verseNum": 24, + "text": "After|strong=\"H7272\"* he|strong=\"H1931\"* had|strong=\"H1817\"* gone|strong=\"H3318\"*, his|strong=\"H7200\"* servants|strong=\"H5650\"* came|strong=\"H3318\"* and|strong=\"H5650\"* saw|strong=\"H7200\"* that|strong=\"H7200\"* the|strong=\"H7200\"* doors|strong=\"H1817\"* of|strong=\"H5650\"* the|strong=\"H7200\"* upper|strong=\"H5944\"* room|strong=\"H2315\"* were|strong=\"H5650\"* locked|strong=\"H5274\"*. They|strong=\"H1931\"* said|strong=\"H3318\"*, “Surely|strong=\"H3318\"* he|strong=\"H1931\"* is|strong=\"H1931\"* covering|strong=\"H5526\"* his|strong=\"H7200\"* feet|strong=\"H7272\"*+ 3:24 or, “relieving himself”.* in|strong=\"H5650\"* the|strong=\"H7200\"* upper|strong=\"H5944\"* room|strong=\"H2315\"*.”" + }, + { + "verseNum": 25, + "text": "They|strong=\"H5704\"* waited|strong=\"H2342\"* until|strong=\"H5704\"* they|strong=\"H5704\"* were|strong=\"H2009\"* ashamed; and|strong=\"H3947\"* behold|strong=\"H2009\"*, he|strong=\"H5704\"* didn’t open|strong=\"H6605\"* the|strong=\"H3947\"* doors|strong=\"H1817\"* of|strong=\"H4191\"* the|strong=\"H3947\"* upper|strong=\"H5944\"* room|strong=\"H5944\"*. Therefore|strong=\"H3947\"* they|strong=\"H5704\"* took|strong=\"H3947\"* the|strong=\"H3947\"* key|strong=\"H4668\"* and|strong=\"H3947\"* opened|strong=\"H6605\"* them|strong=\"H3947\"*, and|strong=\"H3947\"* behold|strong=\"H2009\"*, their|strong=\"H3947\"* lord had|strong=\"H1817\"* fallen|strong=\"H5307\"* down|strong=\"H5307\"* dead|strong=\"H4191\"* on|strong=\"H5307\"* the|strong=\"H3947\"* floor." + }, + { + "verseNum": 26, + "text": "Ehud escaped|strong=\"H4422\"* while|strong=\"H5704\"* they|strong=\"H5704\"* waited, passed|strong=\"H5674\"* beyond|strong=\"H5674\"* the|strong=\"H5704\"* stone idols|strong=\"H6456\"*, and|strong=\"H5674\"* escaped|strong=\"H4422\"* to|strong=\"H5704\"* Seirah|strong=\"H8167\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"H1961\"* he|strong=\"H1931\"* had|strong=\"H1961\"* come|strong=\"H1961\"*, he|strong=\"H1931\"* blew|strong=\"H8628\"* a|strong=\"H3068\"* trumpet|strong=\"H7782\"* in|strong=\"H3478\"* the|strong=\"H6440\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1121\"* Ephraim; and|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H3381\"* down|strong=\"H3381\"* with|strong=\"H5973\"* him|strong=\"H6440\"* from|strong=\"H4480\"* the|strong=\"H6440\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* led|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H3588\"* said to|strong=\"H3381\"* them|strong=\"H5414\"*, “Follow|strong=\"H7291\"* me|strong=\"H5414\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* your|strong=\"H3068\"* enemies|strong=\"H3027\"* the|strong=\"H3588\"* Moabites|strong=\"H4124\"* into|strong=\"H3381\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*.” They|strong=\"H3588\"* followed|strong=\"H7291\"* him|strong=\"H5414\"*, and|strong=\"H3068\"* took|strong=\"H3920\"* the|strong=\"H3588\"* fords|strong=\"H4569\"* of|strong=\"H3068\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"* against|strong=\"H3027\"* the|strong=\"H3588\"* Moabites|strong=\"H4124\"*, and|strong=\"H3068\"* didn’t allow|strong=\"H5414\"* any|strong=\"H5414\"* man|strong=\"H5674\"* to|strong=\"H3381\"* pass|strong=\"H5674\"* over|strong=\"H5674\"*." + }, + { + "verseNum": 29, + "text": "They|strong=\"H3808\"* struck|strong=\"H5221\"* at|strong=\"H3808\"* that|strong=\"H3605\"* time|strong=\"H6256\"* about|strong=\"H5221\"* ten|strong=\"H6235\"* thousand men|strong=\"H2428\"* of|strong=\"H6256\"* Moab|strong=\"H4124\"*, every|strong=\"H3605\"* strong|strong=\"H2428\"* man|strong=\"H3605\"* and|strong=\"H2428\"* every|strong=\"H3605\"* man|strong=\"H3605\"* of|strong=\"H6256\"* valor|strong=\"H2428\"*. No|strong=\"H3808\"* man|strong=\"H3605\"* escaped|strong=\"H4422\"*." + }, + { + "verseNum": 30, + "text": "So|strong=\"H3027\"* Moab|strong=\"H4124\"* was|strong=\"H3478\"* subdued|strong=\"H3665\"* that|strong=\"H3117\"* day|strong=\"H3117\"* under|strong=\"H8478\"* the|strong=\"H3117\"* hand|strong=\"H3027\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*. Then|strong=\"H3117\"* the|strong=\"H3117\"* land had|strong=\"H3478\"* rest|strong=\"H8252\"* eighty|strong=\"H8084\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 31, + "text": "After|strong=\"H1961\"* him|strong=\"H5221\"* was|strong=\"H1961\"* Shamgar|strong=\"H8044\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Anath|strong=\"H6067\"*, who|strong=\"H1931\"* struck|strong=\"H5221\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* men|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"* with|strong=\"H3478\"* an|strong=\"H1961\"* ox|strong=\"H1241\"* goad|strong=\"H4451\"*. He|strong=\"H1931\"* also|strong=\"H1571\"* saved|strong=\"H3467\"* Israel|strong=\"H3478\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* again|strong=\"H3254\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, when|strong=\"H6213\"* Ehud was|strong=\"H3068\"* dead|strong=\"H4191\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* sold|strong=\"H4376\"* them|strong=\"H3027\"* into|strong=\"H3027\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Jabin|strong=\"H2985\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Canaan|strong=\"H3667\"*, who|strong=\"H1931\"* reigned|strong=\"H4427\"* in|strong=\"H3427\"* Hazor|strong=\"H2674\"*; the|strong=\"H3068\"* captain|strong=\"H8269\"* of|strong=\"H4428\"* whose|strong=\"H1471\"* army|strong=\"H6635\"* was|strong=\"H3068\"* Sisera|strong=\"H5516\"*, who|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Harosheth|strong=\"H2800\"* of|strong=\"H4428\"* the|strong=\"H3068\"* Gentiles|strong=\"H1471\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* cried|strong=\"H6817\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* had|strong=\"H3068\"* nine|strong=\"H8672\"* hundred|strong=\"H3967\"* chariots|strong=\"H7393\"* of|strong=\"H1121\"* iron|strong=\"H1270\"*; and|strong=\"H3967\"* he|strong=\"H1931\"* mightily|strong=\"H2394\"* oppressed|strong=\"H3905\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* for|strong=\"H3588\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H6256\"* Deborah|strong=\"H1683\"*, a|strong=\"H3068\"* prophetess|strong=\"H5031\"*, the|strong=\"H8199\"* wife of|strong=\"H6256\"* Lappidoth|strong=\"H3941\"*, judged|strong=\"H8199\"* Israel|strong=\"H3478\"* at|strong=\"H3478\"* that|strong=\"H1931\"* time|strong=\"H6256\"*." + }, + { + "verseNum": 5, + "text": "She|strong=\"H1931\"* lived|strong=\"H3427\"* under|strong=\"H8478\"* Deborah|strong=\"H1683\"*’s palm|strong=\"H8560\"* tree|strong=\"H8560\"* between|strong=\"H3427\"* Ramah|strong=\"H7414\"* and|strong=\"H1121\"* Bethel|strong=\"H1008\"* in|strong=\"H3427\"* the|strong=\"H8478\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1121\"* Ephraim; and|strong=\"H1121\"* the|strong=\"H8478\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* her|strong=\"H1931\"* for|strong=\"H8478\"* judgment|strong=\"H4941\"*." + }, + { + "verseNum": 6, + "text": "She|strong=\"H7121\"* sent|strong=\"H7971\"* and|strong=\"H1121\"* called|strong=\"H7121\"* Barak|strong=\"H1301\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abinoam out|strong=\"H7971\"* of|strong=\"H1121\"* Kedesh|strong=\"H6943\"* Naphtali|strong=\"H5321\"*, and|strong=\"H1121\"* said|strong=\"H7121\"* to|strong=\"H3478\"* him|strong=\"H7121\"*, “Hasn’t Yahweh|strong=\"H3068\"*, the|strong=\"H3947\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, commanded|strong=\"H6680\"*, ‘Go|strong=\"H3212\"* and|strong=\"H1121\"* lead|strong=\"H3212\"* the|strong=\"H3947\"* way|strong=\"H3212\"* to|strong=\"H3478\"* Mount|strong=\"H2022\"* Tabor|strong=\"H8396\"*, and|strong=\"H1121\"* take|strong=\"H3947\"* with|strong=\"H5973\"* you|strong=\"H6680\"* ten|strong=\"H6235\"* thousand men|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"* and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*?" + }, + { + "verseNum": 7, + "text": "I|strong=\"H5414\"* will|strong=\"H6635\"* draw|strong=\"H4900\"* to|strong=\"H5414\"* you|strong=\"H5414\"*, to|strong=\"H5414\"* the|strong=\"H5414\"* river|strong=\"H5158\"* Kishon|strong=\"H7028\"*, Sisera|strong=\"H5516\"*, the|strong=\"H5414\"* captain|strong=\"H8269\"* of|strong=\"H3027\"* Jabin|strong=\"H2985\"*’s army|strong=\"H6635\"*, with|strong=\"H3027\"* his|strong=\"H5414\"* chariots|strong=\"H7393\"* and|strong=\"H3027\"* his|strong=\"H5414\"* multitude|strong=\"H1995\"*; and|strong=\"H3027\"* I|strong=\"H5414\"* will|strong=\"H6635\"* deliver|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H5414\"* hand|strong=\"H3027\"*.’”" + }, + { + "verseNum": 8, + "text": "Barak|strong=\"H1301\"* said to|strong=\"H1980\"* her|strong=\"H1980\"*, “If you|strong=\"H5973\"* will|strong=\"H3808\"* go|strong=\"H1980\"* with|strong=\"H5973\"* me|strong=\"H5973\"*, then|strong=\"H1980\"* I|strong=\"H3808\"* will|strong=\"H3808\"* go|strong=\"H1980\"*; but|strong=\"H3808\"* if you|strong=\"H5973\"* will|strong=\"H3808\"* not|strong=\"H3808\"* go|strong=\"H1980\"* with|strong=\"H5973\"* me|strong=\"H5973\"*, I|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* go|strong=\"H1980\"*.”" + }, + { + "verseNum": 9, + "text": "She|strong=\"H3588\"* said, “I|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H3588\"* go|strong=\"H1980\"* with|strong=\"H5973\"* you|strong=\"H3588\"*. Nevertheless|strong=\"H3588\"*, the|strong=\"H5921\"* journey|strong=\"H1870\"* that|strong=\"H3588\"* you|strong=\"H3588\"* take|strong=\"H1980\"* won’t be|strong=\"H1961\"* for|strong=\"H3588\"* your|strong=\"H3068\"* honor|strong=\"H8597\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* sell|strong=\"H4376\"* Sisera|strong=\"H5516\"* into|strong=\"H1980\"* a|strong=\"H3068\"* woman’s hand|strong=\"H3027\"*.” Deborah|strong=\"H1683\"* arose|strong=\"H6965\"*, and|strong=\"H1980\"* went|strong=\"H1980\"* with|strong=\"H5973\"* Barak|strong=\"H1301\"* to|strong=\"H1980\"* Kedesh|strong=\"H6943\"*." + }, + { + "verseNum": 10, + "text": "Barak|strong=\"H1301\"* called|strong=\"H2199\"* Zebulun|strong=\"H2074\"* and|strong=\"H5927\"* Naphtali|strong=\"H5321\"* together|strong=\"H2199\"* to|strong=\"H5927\"* Kedesh|strong=\"H6943\"*. Ten|strong=\"H6235\"* thousand men followed|strong=\"H7272\"* him|strong=\"H5973\"*; and|strong=\"H5927\"* Deborah|strong=\"H1683\"* went|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 11, + "text": "Now Heber|strong=\"H2268\"* the|strong=\"H5704\"* Kenite|strong=\"H7017\"* had|strong=\"H4872\"* separated|strong=\"H6504\"* himself|strong=\"H6504\"* from|strong=\"H1121\"* the|strong=\"H5704\"* Kenites|strong=\"H7017\"*, even|strong=\"H5704\"* from|strong=\"H1121\"* the|strong=\"H5704\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hobab|strong=\"H2246\"*, Moses|strong=\"H4872\"*’ brother-in-law, and|strong=\"H1121\"* had|strong=\"H4872\"* pitched|strong=\"H5186\"* his|strong=\"H5186\"* tent as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* the|strong=\"H5704\"* oak in|strong=\"H1121\"* Zaanannim|strong=\"H6815\"*, which is|strong=\"H1121\"* by|strong=\"H5704\"* Kedesh|strong=\"H6943\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3588\"* told|strong=\"H5046\"* Sisera|strong=\"H5516\"* that|strong=\"H3588\"* Barak|strong=\"H1301\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abinoam had|strong=\"H3588\"* gone|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Mount|strong=\"H2022\"* Tabor|strong=\"H8396\"*." + }, + { + "verseNum": 13, + "text": "Sisera|strong=\"H5516\"* gathered|strong=\"H2199\"* together|strong=\"H2199\"* all|strong=\"H3605\"* his|strong=\"H3605\"* chariots|strong=\"H7393\"*, even nine|strong=\"H8672\"* hundred|strong=\"H3967\"* chariots|strong=\"H7393\"* of|strong=\"H5971\"* iron|strong=\"H1270\"*, and|strong=\"H3967\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5971\"* him|strong=\"H3605\"*, from|strong=\"H1471\"* Harosheth|strong=\"H2800\"* of|strong=\"H5971\"* the|strong=\"H3605\"* Gentiles|strong=\"H1471\"*, to|strong=\"H5971\"* the|strong=\"H3605\"* river|strong=\"H5158\"* Kishon|strong=\"H7028\"*." + }, + { + "verseNum": 14, + "text": "Deborah|strong=\"H1683\"* said|strong=\"H3318\"* to|strong=\"H3381\"* Barak|strong=\"H1301\"*, “Go|strong=\"H3318\"*; for|strong=\"H3588\"* this|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H6440\"* day|strong=\"H3117\"* in|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* Sisera|strong=\"H5516\"* into|strong=\"H3381\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*. Hasn’t Yahweh|strong=\"H3068\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* before|strong=\"H6440\"* you|strong=\"H3588\"*?” So|strong=\"H5414\"* Barak|strong=\"H1301\"* went|strong=\"H3318\"* down|strong=\"H3381\"* from|strong=\"H3318\"* Mount|strong=\"H2022\"* Tabor|strong=\"H8396\"*, and|strong=\"H6965\"* ten|strong=\"H6235\"* thousand men after|strong=\"H3117\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* confused|strong=\"H2000\"* Sisera|strong=\"H5516\"*, all|strong=\"H3605\"* his|strong=\"H3605\"* chariots|strong=\"H7393\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* army|strong=\"H4264\"*, with|strong=\"H3068\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* before|strong=\"H6440\"* Barak|strong=\"H1301\"*. Sisera|strong=\"H5516\"* abandoned his|strong=\"H3605\"* chariot|strong=\"H7393\"* and|strong=\"H3068\"* fled|strong=\"H5127\"* away|strong=\"H5127\"* on|strong=\"H5921\"* his|strong=\"H3605\"* feet|strong=\"H7272\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"H3808\"* Barak|strong=\"H1301\"* pursued|strong=\"H7291\"* the|strong=\"H3605\"* chariots|strong=\"H7393\"* and|strong=\"H7393\"* the|strong=\"H3605\"* army|strong=\"H4264\"* to|strong=\"H5704\"* Harosheth|strong=\"H2800\"* of|strong=\"H6310\"* the|strong=\"H3605\"* Gentiles|strong=\"H1471\"*; and|strong=\"H7393\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H4264\"* of|strong=\"H6310\"* Sisera|strong=\"H5516\"* fell|strong=\"H5307\"* by|strong=\"H5704\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*. There|strong=\"H3605\"* was|strong=\"H6310\"* not|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H3605\"* left|strong=\"H7604\"*." + }, + { + "verseNum": 17, + "text": "However|strong=\"H3588\"* Sisera|strong=\"H5516\"* fled|strong=\"H5127\"* away|strong=\"H5127\"* on|strong=\"H1004\"* his|strong=\"H3588\"* feet|strong=\"H7272\"* to|strong=\"H4428\"* the|strong=\"H3588\"* tent of|strong=\"H4428\"* Jael|strong=\"H3278\"* the|strong=\"H3588\"* wife of|strong=\"H4428\"* Heber|strong=\"H2268\"* the|strong=\"H3588\"* Kenite|strong=\"H7017\"*; for|strong=\"H3588\"* there|strong=\"H7965\"* was|strong=\"H4428\"* peace|strong=\"H7965\"* between|strong=\"H7965\"* Jabin|strong=\"H2985\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Hazor|strong=\"H2674\"* and|strong=\"H4428\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Heber|strong=\"H2268\"* the|strong=\"H3588\"* Kenite|strong=\"H7017\"*." + }, + { + "verseNum": 18, + "text": "Jael|strong=\"H3278\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* Sisera|strong=\"H5516\"*, and|strong=\"H3318\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H3318\"*, “Turn|strong=\"H5493\"* in|strong=\"H5493\"*, my|strong=\"H3318\"* lord, turn|strong=\"H5493\"* in|strong=\"H5493\"* to|strong=\"H3318\"* me|strong=\"H3318\"*; don’t be|strong=\"H3372\"* afraid|strong=\"H3372\"*.” He|strong=\"H3318\"* came|strong=\"H3318\"* in|strong=\"H5493\"* to|strong=\"H3318\"* her|strong=\"H5493\"* into|strong=\"H3318\"* the|strong=\"H3680\"* tent, and|strong=\"H3318\"* she covered|strong=\"H3680\"* him|strong=\"H3318\"* with|strong=\"H3318\"* a|strong=\"H3068\"* rug|strong=\"H8063\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3588\"* said to|strong=\"H4325\"* her|strong=\"H3680\"*, “Please|strong=\"H4994\"* give|strong=\"H8248\"* me|strong=\"H4994\"* a|strong=\"H3068\"* little|strong=\"H4592\"* water|strong=\"H4325\"* to|strong=\"H4325\"* drink|strong=\"H8248\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am thirsty|strong=\"H6770\"*.”" + }, + { + "verseNum": 20, + "text": "He|strong=\"H3426\"* said to|strong=\"H1961\"* her|strong=\"H7592\"*, “Stand|strong=\"H5975\"* in|strong=\"H5975\"* the|strong=\"H1961\"* door|strong=\"H6607\"* of|strong=\"H7592\"* the|strong=\"H1961\"* tent, and|strong=\"H5975\"* if|strong=\"H1961\"* any|strong=\"H3426\"* man comes|strong=\"H1961\"* and|strong=\"H5975\"* inquires|strong=\"H7592\"* of|strong=\"H7592\"* you|strong=\"H7592\"*, and|strong=\"H5975\"* says, ‘Is|strong=\"H3426\"* there|strong=\"H3426\"* any|strong=\"H3426\"* man here|strong=\"H6311\"*?’ you|strong=\"H7592\"* shall|strong=\"H6607\"* say, ‘No|strong=\"H5975\"*.’”" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H3947\"* Jael|strong=\"H3278\"*, Heber|strong=\"H2268\"*’s wife, took|strong=\"H3947\"* a|strong=\"H3068\"* tent|strong=\"H3489\"* peg|strong=\"H3489\"*, and|strong=\"H3027\"* took|strong=\"H3947\"* a|strong=\"H3068\"* hammer|strong=\"H4718\"* in|strong=\"H4191\"* her|strong=\"H3947\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* went|strong=\"H3027\"* softly|strong=\"H3814\"* to|strong=\"H4191\"* him|strong=\"H3027\"*, and|strong=\"H3027\"* struck the|strong=\"H3947\"* pin|strong=\"H3489\"* into|strong=\"H3027\"* his|strong=\"H7760\"* temples|strong=\"H7541\"*, and|strong=\"H3027\"* it|strong=\"H7760\"* pierced through|strong=\"H3027\"* into|strong=\"H3027\"* the|strong=\"H3947\"* ground, for|strong=\"H3027\"* he|strong=\"H1931\"* was|strong=\"H1931\"* in|strong=\"H4191\"* a|strong=\"H3068\"* deep|strong=\"H7290\"* sleep|strong=\"H7290\"*; so|strong=\"H3947\"* he|strong=\"H1931\"* fainted and|strong=\"H3027\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 22, + "text": "Behold|strong=\"H2009\"*, as|strong=\"H3318\"* Barak|strong=\"H1301\"* pursued|strong=\"H7291\"* Sisera|strong=\"H5516\"*, Jael|strong=\"H3278\"* came|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* him|strong=\"H7200\"*, and|strong=\"H3212\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H7200\"*, “Come|strong=\"H3318\"*, and|strong=\"H3212\"* I|strong=\"H2009\"* will|strong=\"H5307\"* show|strong=\"H7200\"* you|strong=\"H7200\"* the|strong=\"H7200\"* man|strong=\"H4191\"* whom you|strong=\"H7200\"* seek|strong=\"H1245\"*.” He|strong=\"H3318\"* came|strong=\"H3318\"* to|strong=\"H3318\"* her|strong=\"H7200\"*; and|strong=\"H3212\"* behold|strong=\"H2009\"*, Sisera|strong=\"H5516\"* lay|strong=\"H5307\"* dead|strong=\"H4191\"*, and|strong=\"H3212\"* the|strong=\"H7200\"* tent|strong=\"H3489\"* peg|strong=\"H3489\"* was|strong=\"H5516\"* in|strong=\"H4191\"* his|strong=\"H7200\"* temples|strong=\"H7541\"*." + }, + { + "verseNum": 23, + "text": "So|strong=\"H1931\"* God subdued|strong=\"H3665\"* Jabin|strong=\"H2985\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Canaan|strong=\"H3667\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* on|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* prevailed|strong=\"H7186\"* more|strong=\"H5704\"* and|strong=\"H1121\"* more|strong=\"H5704\"* against|strong=\"H5921\"* Jabin|strong=\"H2985\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, until|strong=\"H5704\"* they|strong=\"H5921\"* had|strong=\"H3478\"* destroyed|strong=\"H3772\"* Jabin|strong=\"H2985\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Canaan|strong=\"H3667\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3117\"* Deborah|strong=\"H1683\"* and|strong=\"H1121\"* Barak|strong=\"H1301\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abinoam sang|strong=\"H7891\"* on|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, saying," + }, + { + "verseNum": 2, + "text": "“Because|strong=\"H3068\"* the|strong=\"H3068\"* leaders|strong=\"H6546\"* took|strong=\"H3478\"* the|strong=\"H3068\"* lead in|strong=\"H3478\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 3, + "text": "“Hear|strong=\"H8085\"*, you|strong=\"H8085\"* kings|strong=\"H4428\"*!" + }, + { + "verseNum": 4, + "text": "“Yahweh|strong=\"H3068\"*, when|strong=\"H3318\"* you|strong=\"H1571\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Seir|strong=\"H8165\"*," + }, + { + "verseNum": 5, + "text": "The|strong=\"H6440\"* mountains|strong=\"H2022\"* quaked|strong=\"H5140\"* at|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s presence|strong=\"H6440\"*," + }, + { + "verseNum": 6, + "text": "“In|strong=\"H1980\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Shamgar|strong=\"H8044\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Anath|strong=\"H6067\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H5704\"* rulers ceased|strong=\"H2308\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H3478\"* chose new|strong=\"H2319\"* gods." + }, + { + "verseNum": 9, + "text": "My|strong=\"H3068\"* heart|strong=\"H3820\"* is|strong=\"H3068\"* toward|strong=\"H3068\"* the|strong=\"H3068\"* governors|strong=\"H2710\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 10, + "text": "“Speak|strong=\"H7878\"*, you|strong=\"H5921\"* who|strong=\"H3427\"* ride|strong=\"H7392\"* on|strong=\"H5921\"* white|strong=\"H6715\"* donkeys," + }, + { + "verseNum": 11, + "text": "Far from|strong=\"H3381\"* the|strong=\"H3068\"* noise|strong=\"H6963\"* of|strong=\"H3068\"* archers|strong=\"H2686\"*, in|strong=\"H3478\"* the|strong=\"H3068\"* places|strong=\"H4857\"* of|strong=\"H3068\"* drawing water|strong=\"H4857\"*," + }, + { + "verseNum": 12, + "text": "‘Awake|strong=\"H5782\"*, awake|strong=\"H5782\"*, Deborah|strong=\"H1683\"*!" + }, + { + "verseNum": 13, + "text": "“Then|strong=\"H3068\"* a|strong=\"H3068\"* remnant|strong=\"H8300\"* of|strong=\"H3068\"* the|strong=\"H3068\"* nobles and|strong=\"H3068\"* the|strong=\"H3068\"* people|strong=\"H5971\"* came|strong=\"H3068\"* down." + }, + { + "verseNum": 14, + "text": "Those|strong=\"H4480\"* whose|strong=\"H1144\"* root|strong=\"H8328\"* is|strong=\"H8328\"* in|strong=\"H5971\"* Amalek|strong=\"H6002\"* came|strong=\"H3381\"* out|strong=\"H4480\"* of|strong=\"H7626\"* Ephraim," + }, + { + "verseNum": 15, + "text": "The|strong=\"H7971\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Issachar|strong=\"H3485\"* were|strong=\"H7272\"* with|strong=\"H5973\"* Deborah|strong=\"H1683\"*." + }, + { + "verseNum": 16, + "text": "Why|strong=\"H4100\"* did|strong=\"H4100\"* you|strong=\"H4100\"* sit|strong=\"H3427\"* among|strong=\"H3427\"* the|strong=\"H8085\"* sheepfolds|strong=\"H4942\"*?" + }, + { + "verseNum": 17, + "text": "Gilead|strong=\"H1568\"* lived|strong=\"H3427\"* beyond|strong=\"H5676\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 18, + "text": "Zebulun|strong=\"H2074\"* was|strong=\"H5315\"* a|strong=\"H3068\"* people|strong=\"H5971\"* that|strong=\"H5971\"* jeopardized their|strong=\"H5921\"* lives|strong=\"H5315\"* to|strong=\"H4191\"* the|strong=\"H5921\"* death|strong=\"H4191\"*;" + }, + { + "verseNum": 19, + "text": "“The|strong=\"H5921\"* kings|strong=\"H4428\"* came|strong=\"H4325\"* and|strong=\"H3701\"* fought|strong=\"H3898\"*," + }, + { + "verseNum": 20, + "text": "From|strong=\"H4480\"* the|strong=\"H4480\"* sky|strong=\"H8064\"* the|strong=\"H4480\"* stars|strong=\"H3556\"* fought|strong=\"H3898\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1869\"* river|strong=\"H5158\"* Kishon|strong=\"H7028\"* swept|strong=\"H1640\"* them|strong=\"H1869\"* away|strong=\"H1640\"*," + }, + { + "verseNum": 22, + "text": "Then the|strong=\"H1986\"* horse|strong=\"H5483\"* hoofs|strong=\"H6119\"* stamped because of|strong=\"H5483\"* the|strong=\"H1986\"* prancing," + }, + { + "verseNum": 23, + "text": "‘Curse Meroz|strong=\"H4789\"*,’ said Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*." + }, + { + "verseNum": 24, + "text": "“Jael|strong=\"H3278\"* shall be|strong=\"H1288\"* blessed|strong=\"H1288\"* above|strong=\"H1288\"* women," + }, + { + "verseNum": 25, + "text": "He|strong=\"H5414\"* asked|strong=\"H7592\"* for|strong=\"H4325\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 26, + "text": "She put|strong=\"H7971\"* her|strong=\"H7971\"* hand|strong=\"H3027\"* to|strong=\"H7971\"* the|strong=\"H7971\"* tent|strong=\"H3489\"* peg|strong=\"H3489\"*," + }, + { + "verseNum": 27, + "text": "At|strong=\"H5307\"* her|strong=\"H7901\"* feet|strong=\"H7272\"* he|strong=\"H8033\"* bowed|strong=\"H3766\"*, he|strong=\"H8033\"* fell|strong=\"H5307\"*, he|strong=\"H8033\"* lay|strong=\"H7901\"*." + }, + { + "verseNum": 28, + "text": "“Through|strong=\"H1157\"* the|strong=\"H1157\"* window|strong=\"H2474\"* she|strong=\"H2474\"* looked|strong=\"H8259\"* out|strong=\"H8259\"*, and|strong=\"H7393\"* cried|strong=\"H2980\"*:" + }, + { + "verseNum": 29, + "text": "Her|strong=\"H7725\"* wise|strong=\"H2450\"* ladies|strong=\"H8282\"* answered|strong=\"H6030\"* her|strong=\"H7725\"*," + }, + { + "verseNum": 30, + "text": "‘Have|strong=\"H4672\"* they|strong=\"H3808\"* not|strong=\"H3808\"* found|strong=\"H4672\"*, have|strong=\"H4672\"* they|strong=\"H3808\"* not|strong=\"H3808\"* divided|strong=\"H2505\"* the|strong=\"H4672\"* plunder|strong=\"H7998\"*?" + }, + { + "verseNum": 31, + "text": "“So|strong=\"H3651\"* let|strong=\"H3651\"* all|strong=\"H3605\"* your|strong=\"H3068\"* enemies perish, Yahweh|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H8141\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, so|strong=\"H6213\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H6213\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"* prevailed|strong=\"H5810\"* against|strong=\"H5921\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* because|strong=\"H5921\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* made|strong=\"H6213\"* themselves|strong=\"H6213\"* the|strong=\"H6440\"* dens|strong=\"H4492\"* which|strong=\"H3478\"* are|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H6440\"* mountains|strong=\"H2022\"*, the|strong=\"H6440\"* caves|strong=\"H4631\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* strongholds|strong=\"H4679\"*." + }, + { + "verseNum": 3, + "text": "So|strong=\"H1961\"* it|strong=\"H5921\"* was|strong=\"H1961\"*, when|strong=\"H1961\"* Israel|strong=\"H3478\"* had|strong=\"H1961\"* sown|strong=\"H2232\"*, that|strong=\"H3478\"* the|strong=\"H5921\"* Midianites|strong=\"H4080\"*, the|strong=\"H5921\"* Amalekites|strong=\"H6002\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* east|strong=\"H6924\"* came|strong=\"H1961\"* up|strong=\"H5927\"* against|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H3808\"* encamped|strong=\"H2583\"* against|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H3478\"* destroyed|strong=\"H7843\"* the|strong=\"H5921\"* increase|strong=\"H2981\"* of|strong=\"H5921\"* the|strong=\"H5921\"* earth, until|strong=\"H5704\"* you|strong=\"H5921\"* come|strong=\"H3478\"* to|strong=\"H5704\"* Gaza|strong=\"H5804\"*. They|strong=\"H3808\"* left|strong=\"H7604\"* no|strong=\"H3808\"* sustenance|strong=\"H4241\"* in|strong=\"H5921\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* no|strong=\"H3808\"* sheep|strong=\"H7716\"*, ox|strong=\"H7794\"*, or|strong=\"H3808\"* donkey|strong=\"H2543\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* they|strong=\"H1992\"* came|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5927\"* their|strong=\"H1992\"* livestock|strong=\"H4735\"* and|strong=\"H5927\"* their|strong=\"H1992\"* tents. They|strong=\"H1992\"* came|strong=\"H5927\"* in|strong=\"H5927\"* as|strong=\"H7230\"* locusts for|strong=\"H3588\"* multitude|strong=\"H7230\"*. Both|strong=\"H7230\"* they|strong=\"H1992\"* and|strong=\"H5927\"* their|strong=\"H1992\"* camels|strong=\"H1581\"* were|strong=\"H1992\"* without|strong=\"H3588\"* number|strong=\"H4557\"*; and|strong=\"H5927\"* they|strong=\"H1992\"* came|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H3588\"* land to|strong=\"H5927\"* destroy|strong=\"H7843\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 6, + "text": "Israel|strong=\"H3478\"* was|strong=\"H3068\"* brought|strong=\"H1809\"* very|strong=\"H3966\"* low|strong=\"H1809\"* because|strong=\"H6440\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"*; and|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* cried|strong=\"H2199\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H3588\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* cried|strong=\"H2199\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* because|strong=\"H3588\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"*," + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* to|strong=\"H3318\"* the|strong=\"H3541\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* he|strong=\"H3068\"* said|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H7971\"*, “Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘I|strong=\"H3541\"* brought|strong=\"H3318\"* you|strong=\"H7971\"* up|strong=\"H5927\"* from|strong=\"H3318\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* brought|strong=\"H3318\"* you|strong=\"H7971\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3541\"* house|strong=\"H1004\"* of|strong=\"H1121\"* bondage|strong=\"H5650\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H5414\"* delivered|strong=\"H5414\"* you|strong=\"H5414\"* out|strong=\"H1644\"* of|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3605\"* Egyptians|strong=\"H4713\"* and|strong=\"H3027\"* out|strong=\"H1644\"* of|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* all|strong=\"H3605\"* who|strong=\"H3605\"* oppressed|strong=\"H3905\"* you|strong=\"H5414\"*, and|strong=\"H3027\"* drove|strong=\"H1644\"* them|strong=\"H5414\"* out|strong=\"H1644\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H3027\"* gave|strong=\"H5414\"* you|strong=\"H5414\"* their|strong=\"H3605\"* land|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"H3808\"* said|strong=\"H8085\"* to|strong=\"H3068\"* you|strong=\"H3808\"*, “I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* fear|strong=\"H3372\"* the|strong=\"H8085\"* gods of|strong=\"H3068\"* the|strong=\"H8085\"* Amorites, in|strong=\"H3427\"* whose land you|strong=\"H3808\"* dwell|strong=\"H3427\"*.” But|strong=\"H3808\"* you|strong=\"H3808\"* have|strong=\"H3068\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*.’”" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* came|strong=\"H3068\"* and|strong=\"H1121\"* sat|strong=\"H3427\"* under|strong=\"H8478\"* the|strong=\"H6440\"* oak which|strong=\"H3068\"* was|strong=\"H3068\"* in|strong=\"H3427\"* Ophrah|strong=\"H6084\"*, that|strong=\"H3068\"* belonged to|strong=\"H3068\"* Joash|strong=\"H3101\"* the|strong=\"H6440\"* Abiezrite. His|strong=\"H3068\"* son|strong=\"H1121\"* Gideon|strong=\"H1439\"* was|strong=\"H3068\"* beating|strong=\"H2251\"* out|strong=\"H2251\"* wheat|strong=\"H2406\"* in|strong=\"H3427\"* the|strong=\"H6440\"* wine|strong=\"H1660\"* press|strong=\"H1660\"*, to|strong=\"H3068\"* hide|strong=\"H5127\"* it|strong=\"H6440\"* from|strong=\"H6440\"* the|strong=\"H6440\"* Midianites|strong=\"H4080\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* him|strong=\"H7200\"*, and|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H7200\"*, “Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H5973\"*, you|strong=\"H5973\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* of|strong=\"H3068\"* valor|strong=\"H2428\"*!”" + }, + { + "verseNum": 13, + "text": "Gideon|strong=\"H1439\"* said to|strong=\"H3068\"* him|strong=\"H5414\"*, “Oh, my|strong=\"H5414\"* lord|strong=\"H3068\"*, if|strong=\"H3426\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H5973\"* us|strong=\"H5414\"*, why|strong=\"H4100\"* then|strong=\"H6258\"* has|strong=\"H3068\"* all|strong=\"H3605\"* this|strong=\"H2063\"* happened|strong=\"H4672\"* to|strong=\"H3068\"* us|strong=\"H5414\"*? Where|strong=\"H4100\"* are|strong=\"H4100\"* all|strong=\"H3605\"* his|strong=\"H3605\"* wondrous|strong=\"H6381\"* works|strong=\"H6381\"* which|strong=\"H3068\"* our|strong=\"H3068\"* fathers told|strong=\"H5608\"* us|strong=\"H5414\"* of|strong=\"H3068\"*, saying, ‘Didn’t Yahweh|strong=\"H3068\"* bring|strong=\"H5927\"* us|strong=\"H5414\"* up|strong=\"H5927\"* from|strong=\"H5927\"* Egypt|strong=\"H4714\"*?’ But|strong=\"H3808\"* now|strong=\"H6258\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* cast|strong=\"H5414\"* us|strong=\"H5414\"* off|strong=\"H5203\"*, and|strong=\"H3068\"* delivered|strong=\"H5414\"* us|strong=\"H5414\"* into|strong=\"H5927\"* the|strong=\"H3605\"* hand|strong=\"H3709\"* of|strong=\"H3068\"* Midian|strong=\"H4080\"*.”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* looked|strong=\"H6437\"* at|strong=\"H3478\"* him|strong=\"H7971\"*, and|strong=\"H3478\"* said, “Go|strong=\"H3212\"* in|strong=\"H3478\"* this|strong=\"H2088\"* your|strong=\"H3068\"* might|strong=\"H3581\"*, and|strong=\"H3478\"* save|strong=\"H3467\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* the|strong=\"H3068\"* hand|strong=\"H3709\"* of|strong=\"H3068\"* Midian|strong=\"H4080\"*. Haven’t I|strong=\"H2088\"* sent|strong=\"H7971\"* you|strong=\"H7971\"*?”" + }, + { + "verseNum": 15, + "text": "He|strong=\"H1004\"* said to|strong=\"H3478\"* him, “O|strong=\"H3068\"* Lord,+ 6:15 The word translated “Lord” is “Adonai.”* how|strong=\"H4100\"* shall|strong=\"H3478\"* I|strong=\"H2009\"* save|strong=\"H3467\"* Israel|strong=\"H3478\"*? Behold|strong=\"H2009\"*, my|strong=\"H3467\"* family|strong=\"H1004\"* is|strong=\"H4100\"* the|strong=\"H2009\"* poorest|strong=\"H1800\"* in|strong=\"H3478\"* Manasseh|strong=\"H4519\"*, and|strong=\"H3478\"* I|strong=\"H2009\"* am the|strong=\"H2009\"* least|strong=\"H6810\"* in|strong=\"H3478\"* my|strong=\"H3467\"* father’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H5221\"*, “Surely|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* strike|strong=\"H5221\"* the|strong=\"H3588\"* Midianites|strong=\"H4080\"* as|strong=\"H1961\"* one|strong=\"H1961\"* man.”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H6213\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H6213\"*, “If now|strong=\"H4994\"* I|strong=\"H4672\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H6213\"* your|strong=\"H6213\"* sight|strong=\"H5869\"*, then|strong=\"H1696\"* show|strong=\"H6213\"* me|strong=\"H4994\"* a|strong=\"H3068\"* sign that|strong=\"H6213\"* it|strong=\"H6213\"* is|strong=\"H5869\"* you|strong=\"H6213\"* who|strong=\"H4672\"* talk|strong=\"H1696\"* with|strong=\"H5973\"* me|strong=\"H4994\"*." + }, + { + "verseNum": 18, + "text": "Please|strong=\"H4994\"* don’t go|strong=\"H3318\"* away|strong=\"H7725\"* until|strong=\"H5704\"* I|strong=\"H5704\"* come|strong=\"H3318\"* to|strong=\"H5704\"* you|strong=\"H6440\"*, and|strong=\"H7725\"* bring|strong=\"H3318\"* out|strong=\"H3318\"* my|strong=\"H7725\"* present|strong=\"H4503\"*, and|strong=\"H7725\"* lay|strong=\"H3240\"* it|strong=\"H7725\"* before|strong=\"H6440\"* you|strong=\"H6440\"*.”" + }, + { + "verseNum": 19, + "text": "Gideon|strong=\"H1439\"* went|strong=\"H3318\"* in|strong=\"H6213\"* and|strong=\"H6213\"* prepared|strong=\"H6213\"* a|strong=\"H3068\"* young|strong=\"H1423\"* goat|strong=\"H5795\"* and|strong=\"H6213\"* unleavened|strong=\"H4682\"* cakes|strong=\"H4682\"* of|strong=\"H8478\"* an|strong=\"H6213\"* ephah+ 6:19 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H8478\"* meal|strong=\"H7058\"*. He|strong=\"H6213\"* put|strong=\"H7760\"* the|strong=\"H6213\"* meat|strong=\"H1320\"* in|strong=\"H6213\"* a|strong=\"H3068\"* basket|strong=\"H5536\"* and|strong=\"H6213\"* he|strong=\"H6213\"* put|strong=\"H7760\"* the|strong=\"H6213\"* broth|strong=\"H4839\"* in|strong=\"H6213\"* a|strong=\"H3068\"* pot|strong=\"H6517\"*, and|strong=\"H6213\"* brought|strong=\"H3318\"* it|strong=\"H7760\"* out|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H6213\"* oak, and|strong=\"H6213\"* presented|strong=\"H5066\"* it|strong=\"H7760\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3947\"* angel|strong=\"H4397\"* of|strong=\"H4397\"* God said|strong=\"H3651\"* to|strong=\"H6213\"* him|strong=\"H6213\"*, “Take|strong=\"H3947\"* the|strong=\"H3947\"* meat|strong=\"H1320\"* and|strong=\"H6213\"* the|strong=\"H3947\"* unleavened|strong=\"H4682\"* cakes|strong=\"H4682\"*, and|strong=\"H6213\"* lay|strong=\"H3240\"* them|strong=\"H6213\"* on|strong=\"H6213\"* this|strong=\"H3651\"* rock|strong=\"H5553\"*, and|strong=\"H6213\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* the|strong=\"H3947\"* broth|strong=\"H4839\"*.”" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H1980\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* stretched|strong=\"H7971\"* out|strong=\"H7971\"* the|strong=\"H3068\"* end|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H3068\"* staff|strong=\"H4938\"* that|strong=\"H3068\"* was|strong=\"H3068\"* in|strong=\"H1980\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H1980\"* touched|strong=\"H5060\"* the|strong=\"H3068\"* meat|strong=\"H1320\"* and|strong=\"H1980\"* the|strong=\"H3068\"* unleavened|strong=\"H4682\"* cakes|strong=\"H4682\"*; and|strong=\"H1980\"* fire went|strong=\"H1980\"* up|strong=\"H5927\"* out|strong=\"H7971\"* of|strong=\"H3068\"* the|strong=\"H3068\"* rock|strong=\"H6697\"* and|strong=\"H1980\"* consumed the|strong=\"H3068\"* meat|strong=\"H1320\"* and|strong=\"H1980\"* the|strong=\"H3068\"* unleavened|strong=\"H4682\"* cakes|strong=\"H4682\"*. Then|strong=\"H1980\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* departed|strong=\"H1980\"* out|strong=\"H7971\"* of|strong=\"H3068\"* his|strong=\"H3068\"* sight|strong=\"H5869\"*." + }, + { + "verseNum": 22, + "text": "Gideon|strong=\"H1439\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*; and|strong=\"H3068\"* Gideon|strong=\"H1439\"* said|strong=\"H3651\"*, “Alas, Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*! Because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* face|strong=\"H6440\"* to|strong=\"H3068\"* face|strong=\"H6440\"*!”" + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H4191\"* him|strong=\"H4191\"*, “Peace|strong=\"H7965\"* be|strong=\"H4191\"* to|strong=\"H4191\"* you|strong=\"H3808\"*! Don’t be|strong=\"H4191\"* afraid|strong=\"H3372\"*. You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 24, + "text": "Then|strong=\"H2088\"* Gideon|strong=\"H1439\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* there|strong=\"H8033\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* called|strong=\"H7121\"* it|strong=\"H7121\"* “Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* Peace|strong=\"H7965\"*.”+ 6:24 or, Yahweh Shalom* To|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"* it|strong=\"H7121\"* is|strong=\"H3068\"* still|strong=\"H5750\"* in|strong=\"H3068\"* Ophrah|strong=\"H6084\"* of|strong=\"H3068\"* the|strong=\"H3068\"* Abiezrites." + }, + { + "verseNum": 25, + "text": "That|strong=\"H1931\"* same|strong=\"H1931\"* night|strong=\"H3915\"*, Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H5921\"*, “Take|strong=\"H3947\"* your|strong=\"H3068\"* father’s bull|strong=\"H6499\"*, even|strong=\"H3068\"* the|strong=\"H5921\"* second|strong=\"H8145\"* bull|strong=\"H6499\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* old|strong=\"H8141\"*, and|strong=\"H3068\"* throw down|strong=\"H2040\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* Baal|strong=\"H1168\"* that|strong=\"H1931\"* your|strong=\"H3068\"* father has|strong=\"H3068\"*, and|strong=\"H3068\"* cut|strong=\"H3772\"* down|strong=\"H2040\"* the|strong=\"H5921\"* Asherah that|strong=\"H1931\"* is|strong=\"H3068\"* by|strong=\"H5921\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 26, + "text": "Then|strong=\"H2088\"* build|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H3068\"* this|strong=\"H2088\"* stronghold|strong=\"H4581\"*, in|strong=\"H5921\"* an|strong=\"H1129\"* orderly|strong=\"H4634\"* way|strong=\"H2088\"*, and|strong=\"H3068\"* take|strong=\"H3947\"* the|strong=\"H5921\"* second|strong=\"H8145\"* bull|strong=\"H6499\"*, and|strong=\"H3068\"* offer|strong=\"H5927\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* with|strong=\"H3068\"* the|strong=\"H5921\"* wood|strong=\"H6086\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Asherah which|strong=\"H3068\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* cut|strong=\"H3772\"* down|strong=\"H3772\"*.”" + }, + { + "verseNum": 27, + "text": "Then|strong=\"H1961\"* Gideon|strong=\"H1439\"* took|strong=\"H3947\"* ten|strong=\"H6235\"* men|strong=\"H5650\"* of|strong=\"H1004\"* his|strong=\"H3068\"* servants|strong=\"H5650\"*, and|strong=\"H3068\"* did|strong=\"H6213\"* as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H6213\"*. Because|strong=\"H3068\"* he|strong=\"H6213\"* feared|strong=\"H3372\"* his|strong=\"H3068\"* father’s household|strong=\"H1004\"* and|strong=\"H3068\"* the|strong=\"H3947\"* men|strong=\"H5650\"* of|strong=\"H1004\"* the|strong=\"H3947\"* city|strong=\"H5892\"*, he|strong=\"H6213\"* could|strong=\"H3915\"* not|strong=\"H6213\"* do|strong=\"H6213\"* it|strong=\"H6213\"* by|strong=\"H3068\"* day|strong=\"H3119\"*, but|strong=\"H1961\"* he|strong=\"H6213\"* did|strong=\"H6213\"* it|strong=\"H6213\"* by|strong=\"H3068\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 28, + "text": "When|strong=\"H5927\"* the|strong=\"H5921\"* men|strong=\"H3772\"* of|strong=\"H5892\"* the|strong=\"H5921\"* city|strong=\"H5892\"* arose|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*, behold|strong=\"H2009\"*, the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H5892\"* Baal|strong=\"H1168\"* was|strong=\"H5892\"* broken|strong=\"H5422\"* down|strong=\"H5422\"*, and|strong=\"H5892\"* the|strong=\"H5921\"* Asherah was|strong=\"H5892\"* cut|strong=\"H3772\"* down|strong=\"H5422\"* that|strong=\"H5892\"* was|strong=\"H5892\"* by|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H5892\"* the|strong=\"H5921\"* second|strong=\"H8145\"* bull|strong=\"H6499\"* was|strong=\"H5892\"* offered|strong=\"H5927\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* that|strong=\"H5892\"* was|strong=\"H5892\"* built|strong=\"H1129\"*." + }, + { + "verseNum": 29, + "text": "They|strong=\"H6213\"* said|strong=\"H1697\"* to|strong=\"H6213\"* one|strong=\"H2088\"* another|strong=\"H7453\"*, “Who|strong=\"H4310\"* has|strong=\"H4310\"* done|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*?”" + }, + { + "verseNum": 30, + "text": "Then|strong=\"H3318\"* the|strong=\"H5921\"* men|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* city|strong=\"H5892\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Joash|strong=\"H3101\"*, “Bring|strong=\"H3318\"* out|strong=\"H3318\"* your|strong=\"H5921\"* son|strong=\"H1121\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H1121\"* die|strong=\"H4191\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* broken|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H1121\"* Baal|strong=\"H1168\"*, and|strong=\"H1121\"* because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* cut|strong=\"H3772\"* down|strong=\"H5422\"* the|strong=\"H5921\"* Asherah that|strong=\"H3588\"* was|strong=\"H5892\"* by|strong=\"H5921\"* it|strong=\"H5921\"*.”" + }, + { + "verseNum": 31, + "text": "Joash|strong=\"H3101\"* said to|strong=\"H5704\"* all|strong=\"H3605\"* who|strong=\"H3605\"* stood|strong=\"H5975\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, “Will|strong=\"H1931\"* you|strong=\"H3588\"* contend|strong=\"H7378\"* for|strong=\"H3588\"* Baal|strong=\"H1168\"*? Or|strong=\"H5704\"* will|strong=\"H1931\"* you|strong=\"H3588\"* save|strong=\"H3467\"* him|strong=\"H5921\"*? He|strong=\"H1931\"* who|strong=\"H3605\"* will|strong=\"H1931\"* contend|strong=\"H7378\"* for|strong=\"H3588\"* him|strong=\"H5921\"*, let him|strong=\"H5921\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H5704\"* death|strong=\"H4191\"* by|strong=\"H5921\"* morning|strong=\"H1242\"*! If|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* god, let him|strong=\"H5921\"* contend|strong=\"H7378\"* for|strong=\"H3588\"* himself|strong=\"H1931\"*, because|strong=\"H3588\"* someone|strong=\"H4191\"* has|strong=\"H3588\"* broken|strong=\"H5422\"* down|strong=\"H5422\"* his|strong=\"H3605\"* altar|strong=\"H4196\"*!”" + }, + { + "verseNum": 32, + "text": "Therefore|strong=\"H3588\"* on|strong=\"H3117\"* that|strong=\"H3588\"* day|strong=\"H3117\"* he|strong=\"H1931\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Jerub-Baal|strong=\"H3378\"*,+ 6:32 “Jerub-Baal” means “Let Baal contend”.* saying, “Let Baal|strong=\"H1168\"* contend|strong=\"H7378\"* against|strong=\"H7378\"* him|strong=\"H7121\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* has|strong=\"H3117\"* broken|strong=\"H5422\"* down|strong=\"H5422\"* his|strong=\"H7121\"* altar|strong=\"H4196\"*.”" + }, + { + "verseNum": 33, + "text": "Then|strong=\"H5674\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Midianites|strong=\"H4080\"* and|strong=\"H1121\"* the|strong=\"H3605\"* Amalekites|strong=\"H6002\"* and|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* east|strong=\"H6924\"* assembled|strong=\"H3605\"* themselves together|strong=\"H3162\"*; and|strong=\"H1121\"* they|strong=\"H3605\"* passed|strong=\"H5674\"* over|strong=\"H5674\"*, and|strong=\"H1121\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H3605\"* valley|strong=\"H6010\"* of|strong=\"H1121\"* Jezreel|strong=\"H3157\"*." + }, + { + "verseNum": 34, + "text": "But|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* came|strong=\"H3068\"* on|strong=\"H3847\"* Gideon|strong=\"H1439\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* blew|strong=\"H8628\"* a|strong=\"H3068\"* trumpet|strong=\"H7782\"*; and|strong=\"H3068\"* Abiezer was|strong=\"H3068\"* gathered|strong=\"H2199\"* together|strong=\"H2199\"* to|strong=\"H3068\"* follow|strong=\"H3068\"* him|strong=\"H8628\"*." + }, + { + "verseNum": 35, + "text": "He|strong=\"H1931\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* Manasseh|strong=\"H4519\"*, and|strong=\"H7971\"* they|strong=\"H1931\"* also|strong=\"H1571\"* were|strong=\"H1571\"* gathered|strong=\"H2199\"* together|strong=\"H2199\"* to|strong=\"H7971\"* follow him|strong=\"H7971\"*. He|strong=\"H1931\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* Asher, to|strong=\"H7971\"* Zebulun|strong=\"H2074\"*, and|strong=\"H7971\"* to|strong=\"H7971\"* Naphtali|strong=\"H5321\"*; and|strong=\"H7971\"* they|strong=\"H1931\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H7971\"* meet|strong=\"H7125\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 36, + "text": "Gideon|strong=\"H1439\"* said|strong=\"H1696\"* to|strong=\"H1696\"* God|strong=\"H3027\"*, “If|strong=\"H3426\"* you|strong=\"H3027\"* will|strong=\"H3478\"* save|strong=\"H3467\"* Israel|strong=\"H3478\"* by|strong=\"H3027\"* my|strong=\"H1696\"* hand|strong=\"H3027\"*, as|strong=\"H1696\"* you|strong=\"H3027\"* have|strong=\"H3426\"* spoken|strong=\"H1696\"*," + }, + { + "verseNum": 37, + "text": "behold|strong=\"H2009\"*, I|strong=\"H3588\"* will|strong=\"H1961\"* put|strong=\"H3322\"* a|strong=\"H3068\"* fleece|strong=\"H1492\"* of|strong=\"H3027\"* wool|strong=\"H6785\"* on|strong=\"H5921\"* the|strong=\"H3605\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*. If|strong=\"H3588\"* there|strong=\"H2009\"* is|strong=\"H3027\"* dew|strong=\"H2919\"* on|strong=\"H5921\"* the|strong=\"H3605\"* fleece|strong=\"H1492\"* only|strong=\"H3588\"*, and|strong=\"H3478\"* it|strong=\"H5921\"* is|strong=\"H3027\"* dry|strong=\"H2721\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ground, then|strong=\"H1961\"* I|strong=\"H3588\"*’ll know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1961\"* save|strong=\"H3467\"* Israel|strong=\"H3478\"* by|strong=\"H3027\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*, as|strong=\"H1961\"* you|strong=\"H3588\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"*.”" + }, + { + "verseNum": 38, + "text": "It|strong=\"H4393\"* was|strong=\"H1961\"* so|strong=\"H3651\"*; for|strong=\"H4325\"* he|strong=\"H3651\"* rose|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* on|strong=\"H1961\"* the|strong=\"H4480\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, and|strong=\"H7925\"* pressed|strong=\"H1961\"* the|strong=\"H4480\"* fleece|strong=\"H1492\"* together|strong=\"H2115\"*, and|strong=\"H7925\"* wrung the|strong=\"H4480\"* dew|strong=\"H2919\"* out|strong=\"H4480\"* of|strong=\"H4325\"* the|strong=\"H4480\"* fleece|strong=\"H1492\"*, a|strong=\"H3068\"* bowl|strong=\"H5602\"* full|strong=\"H4393\"* of|strong=\"H4325\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 39, + "text": "Gideon|strong=\"H1439\"* said|strong=\"H1696\"* to|strong=\"H1696\"* God, “Don’t let|strong=\"H4994\"* your|strong=\"H3605\"* anger be|strong=\"H1961\"* kindled|strong=\"H2734\"* against|strong=\"H5921\"* me|strong=\"H4994\"*, and|strong=\"H1696\"* I|strong=\"H5921\"* will|strong=\"H1961\"* speak|strong=\"H1696\"* but|strong=\"H7535\"* this|strong=\"H1696\"* once|strong=\"H6471\"*. Please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* make|strong=\"H5254\"* a|strong=\"H3068\"* trial just|strong=\"H3605\"* this|strong=\"H1696\"* once|strong=\"H6471\"* with|strong=\"H1696\"* the|strong=\"H3605\"* fleece|strong=\"H1492\"*. Let|strong=\"H4994\"* it|strong=\"H5921\"* now|strong=\"H4994\"* be|strong=\"H1961\"* dry|strong=\"H2721\"* only|strong=\"H7535\"* on|strong=\"H5921\"* the|strong=\"H3605\"* fleece|strong=\"H1492\"*, and|strong=\"H1696\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ground let|strong=\"H4994\"* there|strong=\"H1961\"* be|strong=\"H1961\"* dew|strong=\"H2919\"*.”" + }, + { + "verseNum": 40, + "text": "God did|strong=\"H6213\"* so|strong=\"H3651\"* that|strong=\"H3605\"* night|strong=\"H3915\"*; for|strong=\"H5921\"* it|strong=\"H1931\"* was|strong=\"H1961\"* dry|strong=\"H2721\"* on|strong=\"H5921\"* the|strong=\"H3605\"* fleece|strong=\"H1492\"* only|strong=\"H3605\"*, and|strong=\"H3915\"* there|strong=\"H1961\"* was|strong=\"H1961\"* dew|strong=\"H2919\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ground." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H1961\"* Jerubbaal|strong=\"H3378\"*, who|strong=\"H3605\"* is|strong=\"H1931\"* Gideon|strong=\"H1439\"*, and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H1961\"* with|strong=\"H5921\"* him|strong=\"H5921\"*, rose|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H5971\"* encamped|strong=\"H2583\"* beside|strong=\"H5921\"* the|strong=\"H3605\"* spring of|strong=\"H6010\"* Harod|strong=\"H5878\"*. Midian|strong=\"H4080\"*’s camp|strong=\"H4264\"* was|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H3605\"* north|strong=\"H6828\"* side|strong=\"H6828\"* of|strong=\"H6010\"* them|strong=\"H5921\"*, by|strong=\"H5921\"* the|strong=\"H3605\"* hill|strong=\"H1389\"* of|strong=\"H6010\"* Moreh|strong=\"H4176\"*, in|strong=\"H5921\"* the|strong=\"H3605\"* valley|strong=\"H6010\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* Gideon|strong=\"H1439\"*, “The|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* with|strong=\"H3068\"* you|strong=\"H5414\"* are|strong=\"H5971\"* too|strong=\"H5921\"* many|strong=\"H7227\"* for|strong=\"H5921\"* me|strong=\"H5414\"* to|strong=\"H3478\"* give|strong=\"H5414\"* the|strong=\"H5921\"* Midianites|strong=\"H4080\"* into|strong=\"H5921\"* their|strong=\"H3068\"* hand|strong=\"H3027\"*, lest|strong=\"H6435\"* Israel|strong=\"H3478\"* brag|strong=\"H6286\"* against|strong=\"H5921\"* me|strong=\"H5414\"*, saying, ‘My|strong=\"H5414\"* own|strong=\"H5971\"* hand|strong=\"H3027\"* has|strong=\"H3068\"* saved|strong=\"H3467\"* me|strong=\"H5414\"*.’" + }, + { + "verseNum": 3, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* proclaim|strong=\"H7121\"* in|strong=\"H7604\"* the|strong=\"H4480\"* ears of|strong=\"H2022\"* the|strong=\"H4480\"* people|strong=\"H5971\"*, saying, ‘Whoever|strong=\"H4310\"* is|strong=\"H4310\"* fearful|strong=\"H3373\"* and|strong=\"H6242\"* trembling|strong=\"H2730\"*, let|strong=\"H4994\"* him|strong=\"H7121\"* return|strong=\"H7725\"* and|strong=\"H6242\"* depart|strong=\"H6852\"* from|strong=\"H4480\"* Mount|strong=\"H2022\"* Gilead|strong=\"H1568\"*.’” So|strong=\"H4480\"* twenty-two|strong=\"H6242\"* thousand of|strong=\"H2022\"* the|strong=\"H4480\"* people|strong=\"H5971\"* returned|strong=\"H7725\"*, and|strong=\"H6242\"* ten|strong=\"H6235\"* thousand remained|strong=\"H7604\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3381\"* Gideon|strong=\"H1439\"*, “There|strong=\"H8033\"* are|strong=\"H5971\"* still|strong=\"H5750\"* too|strong=\"H1961\"* many|strong=\"H7227\"* people|strong=\"H5971\"*. Bring|strong=\"H3381\"* them|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3605\"* water|strong=\"H4325\"*, and|strong=\"H3068\"* I|strong=\"H2088\"* will|strong=\"H3068\"* test|strong=\"H6884\"* them|strong=\"H3381\"* for|strong=\"H3068\"* you|strong=\"H3605\"* there|strong=\"H8033\"*. It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, that|strong=\"H5971\"* those|strong=\"H3605\"* whom|strong=\"H5971\"* I|strong=\"H2088\"* tell|strong=\"H3605\"* you|strong=\"H3605\"*, ‘This|strong=\"H2088\"* shall|strong=\"H3068\"* go|strong=\"H3212\"* with|strong=\"H5973\"* you|strong=\"H3605\"*,’ shall|strong=\"H3068\"* go|strong=\"H3212\"* with|strong=\"H5973\"* you|strong=\"H3605\"*; and|strong=\"H3068\"* whoever|strong=\"H3605\"* I|strong=\"H2088\"* tell|strong=\"H3605\"* you|strong=\"H3605\"*, ‘This|strong=\"H2088\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3212\"* with|strong=\"H5973\"* you|strong=\"H3605\"*,’ shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3212\"*.”" + }, + { + "verseNum": 5, + "text": "So|strong=\"H4480\"* he|strong=\"H3068\"* brought|strong=\"H3381\"* down|strong=\"H3381\"* the|strong=\"H3605\"* people|strong=\"H5971\"* to|strong=\"H3381\"* the|strong=\"H3605\"* water|strong=\"H4325\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3381\"* Gideon|strong=\"H1439\"*, “Everyone|strong=\"H3605\"* who|strong=\"H3605\"* laps|strong=\"H3952\"* of|strong=\"H3068\"* the|strong=\"H3605\"* water|strong=\"H4325\"* with|strong=\"H3068\"* his|strong=\"H3605\"* tongue|strong=\"H3956\"*, like|strong=\"H3381\"* a|strong=\"H3068\"* dog|strong=\"H3611\"* laps|strong=\"H3952\"*, you|strong=\"H3605\"* shall|strong=\"H3068\"* set|strong=\"H3322\"* him|strong=\"H5921\"* by|strong=\"H5921\"* himself|strong=\"H8354\"*; likewise|strong=\"H3068\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* bows down|strong=\"H3381\"* on|strong=\"H5921\"* his|strong=\"H3605\"* knees|strong=\"H1290\"* to|strong=\"H3381\"* drink|strong=\"H8354\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H3027\"* those|strong=\"H3605\"* who|strong=\"H3605\"* lapped|strong=\"H3952\"*, putting their|strong=\"H3605\"* hand|strong=\"H3027\"* to|strong=\"H1961\"* their|strong=\"H3605\"* mouth|strong=\"H6310\"*, was|strong=\"H1961\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* men|strong=\"H5971\"*; but|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H3027\"* the|strong=\"H3605\"* people|strong=\"H5971\"* bowed|strong=\"H3766\"* down|strong=\"H3766\"* on|strong=\"H5921\"* their|strong=\"H3605\"* knees|strong=\"H1290\"* to|strong=\"H1961\"* drink|strong=\"H8354\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Gideon|strong=\"H1439\"*, “I|strong=\"H5414\"* will|strong=\"H3068\"* save|strong=\"H3467\"* you|strong=\"H5414\"* by|strong=\"H3027\"* the|strong=\"H3605\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* men|strong=\"H5971\"* who|strong=\"H3605\"* lapped|strong=\"H3952\"*, and|strong=\"H3967\"* deliver|strong=\"H5414\"* the|strong=\"H3605\"* Midianites|strong=\"H4080\"* into|strong=\"H3212\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*. Let|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* other|strong=\"H3605\"* people|strong=\"H5971\"* go|strong=\"H3212\"*, each|strong=\"H3605\"* to|strong=\"H3068\"* his|strong=\"H3605\"* own|strong=\"H5971\"* place|strong=\"H4725\"*.”" + }, + { + "verseNum": 8, + "text": "So|strong=\"H3947\"* the|strong=\"H3605\"* people|strong=\"H5971\"* took|strong=\"H3947\"* food|strong=\"H6720\"* in|strong=\"H3478\"* their|strong=\"H3605\"* hand|strong=\"H3027\"*, and|strong=\"H3967\"* their|strong=\"H3605\"* trumpets|strong=\"H7782\"*; and|strong=\"H3967\"* he|strong=\"H3605\"* sent|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* rest|strong=\"H1961\"* of|strong=\"H3027\"* the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H3027\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* their|strong=\"H3605\"* own|strong=\"H1961\"* tents|strong=\"H4264\"*, but|strong=\"H1961\"* retained|strong=\"H2388\"* the|strong=\"H3605\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* men|strong=\"H5971\"*; and|strong=\"H3967\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H3027\"* Midian|strong=\"H4080\"* was|strong=\"H1961\"* beneath|strong=\"H8478\"* him|strong=\"H7971\"* in|strong=\"H3478\"* the|strong=\"H3605\"* valley|strong=\"H6010\"*." + }, + { + "verseNum": 9, + "text": "That|strong=\"H3588\"* same|strong=\"H1931\"* night|strong=\"H3915\"*, Yahweh|strong=\"H3068\"* said to|strong=\"H3381\"* him|strong=\"H5414\"*, “Arise|strong=\"H6965\"*, go|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H3588\"* camp|strong=\"H4264\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* delivered|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H3381\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 10, + "text": "But if you|strong=\"H3381\"* are|strong=\"H5288\"* afraid|strong=\"H3373\"* to|strong=\"H3381\"* go|strong=\"H3381\"* down|strong=\"H3381\"*, go|strong=\"H3381\"* with|strong=\"H3381\"* Purah|strong=\"H6513\"* your|strong=\"H3381\"* servant|strong=\"H5288\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3373\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H4100\"* will|strong=\"H3027\"* hear|strong=\"H8085\"* what|strong=\"H4100\"* they|strong=\"H4100\"* say|strong=\"H1696\"*; and|strong=\"H3027\"* afterward your|strong=\"H8085\"* hands|strong=\"H3027\"* will|strong=\"H3027\"* be|strong=\"H3027\"* strengthened|strong=\"H2388\"* to|strong=\"H1696\"* go|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H8085\"* camp|strong=\"H4264\"*.” Then|strong=\"H1696\"* went|strong=\"H3381\"* he|strong=\"H1931\"* down|strong=\"H3381\"* with|strong=\"H1696\"* Purah|strong=\"H6513\"* his|strong=\"H8085\"* servant|strong=\"H5288\"* to|strong=\"H1696\"* the|strong=\"H8085\"* outermost part|strong=\"H7097\"* of|strong=\"H3027\"* the|strong=\"H8085\"* armed|strong=\"H2571\"* men|strong=\"H5288\"* who|strong=\"H1931\"* were|strong=\"H3027\"* in|strong=\"H8085\"* the|strong=\"H8085\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3605\"* Midianites|strong=\"H4080\"* and|strong=\"H1121\"* the|strong=\"H3605\"* Amalekites|strong=\"H6002\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* east|strong=\"H6924\"* lay|strong=\"H5307\"* along|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* valley|strong=\"H6010\"* like|strong=\"H1121\"* locusts for|strong=\"H5921\"* multitude|strong=\"H7230\"*; and|strong=\"H1121\"* their|strong=\"H3605\"* camels|strong=\"H1581\"* were|strong=\"H1121\"* without|strong=\"H7230\"* number|strong=\"H4557\"*, as|strong=\"H7230\"* the|strong=\"H3605\"* sand|strong=\"H2344\"* which|strong=\"H2344\"* is|strong=\"H3605\"* on|strong=\"H5921\"* the|strong=\"H3605\"* seashore|strong=\"H3220\"* for|strong=\"H5921\"* multitude|strong=\"H7230\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H5704\"* Gideon|strong=\"H1439\"* had|strong=\"H2492\"* come|strong=\"H5307\"*, behold|strong=\"H2009\"*, there|strong=\"H2009\"* was|strong=\"H1439\"* a|strong=\"H3068\"* man|strong=\"H5307\"* telling|strong=\"H5608\"* a|strong=\"H3068\"* dream|strong=\"H2472\"* to|strong=\"H5704\"* his|strong=\"H5221\"* fellow|strong=\"H7453\"*. He|strong=\"H5704\"* said, “Behold|strong=\"H2009\"*, I|strong=\"H5704\"* dreamed|strong=\"H2492\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*; and|strong=\"H3899\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* cake|strong=\"H6742\"* of|strong=\"H4264\"* barley|strong=\"H8184\"* bread|strong=\"H3899\"* tumbled|strong=\"H2015\"* into|strong=\"H2015\"* the|strong=\"H5221\"* camp|strong=\"H4264\"* of|strong=\"H4264\"* Midian|strong=\"H4080\"*, came|strong=\"H2015\"* to|strong=\"H5704\"* the|strong=\"H5221\"* tent, and|strong=\"H3899\"* struck|strong=\"H5221\"* it|strong=\"H5221\"* so|strong=\"H5704\"* that|strong=\"H5307\"* it|strong=\"H5221\"* fell|strong=\"H5307\"*, and|strong=\"H3899\"* turned|strong=\"H2015\"* it|strong=\"H5221\"* upside|strong=\"H4605\"* down|strong=\"H5307\"*, so|strong=\"H5704\"* that|strong=\"H5307\"* the|strong=\"H5221\"* tent lay|strong=\"H5307\"* flat|strong=\"H5307\"*.”" + }, + { + "verseNum": 14, + "text": "His|strong=\"H3605\"* fellow|strong=\"H7453\"* answered|strong=\"H6030\"*, “This|strong=\"H2063\"* is|strong=\"H3027\"* nothing|strong=\"H1115\"* other|strong=\"H7453\"* than|strong=\"H3605\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* of|strong=\"H1121\"* Gideon|strong=\"H1439\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"*, a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. God|strong=\"H5414\"* has|strong=\"H3478\"* delivered|strong=\"H5414\"* Midian|strong=\"H4080\"* into|strong=\"H2719\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, with|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H4264\"*.”" + }, + { + "verseNum": 15, + "text": "It|strong=\"H5414\"* was|strong=\"H3068\"* so|strong=\"H1961\"*, when|strong=\"H3588\"* Gideon|strong=\"H1439\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* telling|strong=\"H4557\"* of|strong=\"H3068\"* the|strong=\"H8085\"* dream|strong=\"H2472\"* and|strong=\"H6965\"* its|strong=\"H5414\"* interpretation|strong=\"H7667\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* worshiped|strong=\"H7812\"*. Then|strong=\"H1961\"* he|strong=\"H3588\"* returned|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H8085\"* camp|strong=\"H4264\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* and|strong=\"H6965\"* said|strong=\"H8085\"*, “Arise|strong=\"H6965\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* the|strong=\"H8085\"* army|strong=\"H4264\"* of|strong=\"H3068\"* Midian|strong=\"H4080\"* into|strong=\"H7725\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*!”" + }, + { + "verseNum": 16, + "text": "He|strong=\"H3605\"* divided|strong=\"H2673\"* the|strong=\"H3605\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* men|strong=\"H7218\"* into|strong=\"H8432\"* three|strong=\"H7969\"* companies|strong=\"H7218\"*, and|strong=\"H3967\"* he|strong=\"H3605\"* put|strong=\"H5414\"* into|strong=\"H8432\"* the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* all|strong=\"H3605\"* of|strong=\"H3027\"* them|strong=\"H5414\"* trumpets|strong=\"H7782\"* and|strong=\"H3967\"* empty|strong=\"H7386\"* pitchers|strong=\"H3537\"*, with|strong=\"H3027\"* torches|strong=\"H3940\"* within|strong=\"H8432\"* the|strong=\"H3605\"* pitchers|strong=\"H3537\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H3651\"* said|strong=\"H3651\"* to|strong=\"H1961\"* them|strong=\"H6213\"*, “Watch|strong=\"H7200\"* me|strong=\"H7200\"*, and|strong=\"H7200\"* do|strong=\"H6213\"* likewise|strong=\"H3651\"*. Behold|strong=\"H2009\"*, when|strong=\"H1961\"* I|strong=\"H2009\"* come|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H7200\"* outermost part|strong=\"H7097\"* of|strong=\"H4480\"* the|strong=\"H7200\"* camp|strong=\"H4264\"*, it|strong=\"H6213\"* shall|strong=\"H6213\"* be|strong=\"H1961\"* that|strong=\"H7200\"*, as|strong=\"H1961\"* I|strong=\"H2009\"* do|strong=\"H6213\"*, so|strong=\"H3651\"* you|strong=\"H6213\"* shall|strong=\"H6213\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H3068\"* I|strong=\"H1571\"* blow|strong=\"H8628\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"*, I|strong=\"H1571\"* and|strong=\"H3068\"* all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H3068\"* with|strong=\"H3068\"* me|strong=\"H1571\"*, then|strong=\"H1571\"* blow|strong=\"H8628\"* the|strong=\"H3605\"* trumpets|strong=\"H7782\"* also|strong=\"H1571\"* on|strong=\"H3068\"* every|strong=\"H3605\"* side|strong=\"H5439\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*, and|strong=\"H3068\"* shout, ‘For|strong=\"H3068\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* for|strong=\"H3068\"* Gideon|strong=\"H1439\"*!’”" + }, + { + "verseNum": 19, + "text": "So|strong=\"H6965\"* Gideon|strong=\"H1439\"* and|strong=\"H3967\"* the|strong=\"H8104\"* hundred|strong=\"H3967\"* men|strong=\"H7218\"* who|strong=\"H8104\"* were|strong=\"H3027\"* with|strong=\"H3027\"* him|strong=\"H3027\"* came to|strong=\"H8104\"* the|strong=\"H8104\"* outermost part|strong=\"H7097\"* of|strong=\"H3027\"* the|strong=\"H8104\"* camp|strong=\"H4264\"* in|strong=\"H3027\"* the|strong=\"H8104\"* beginning|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H8104\"* middle|strong=\"H8484\"* watch|strong=\"H8104\"*, when|strong=\"H8628\"* they|strong=\"H3027\"* had|strong=\"H3027\"* but newly|strong=\"H6965\"* set|strong=\"H6965\"* the|strong=\"H8104\"* watch|strong=\"H8104\"*. Then|strong=\"H6965\"* they|strong=\"H3027\"* blew|strong=\"H8628\"* the|strong=\"H8104\"* trumpets|strong=\"H7782\"* and|strong=\"H3967\"* broke in|strong=\"H3027\"* pieces|strong=\"H5310\"* the|strong=\"H8104\"* pitchers|strong=\"H3537\"* that|strong=\"H3027\"* were|strong=\"H3027\"* in|strong=\"H3027\"* their|strong=\"H8104\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3068\"* three|strong=\"H7969\"* companies|strong=\"H7218\"* blew|strong=\"H8628\"* the|strong=\"H3068\"* trumpets|strong=\"H7782\"*, broke|strong=\"H7665\"* the|strong=\"H3068\"* pitchers|strong=\"H3537\"*, and|strong=\"H3068\"* held|strong=\"H2388\"* the|strong=\"H3068\"* torches|strong=\"H3940\"* in|strong=\"H3068\"* their|strong=\"H3068\"* left|strong=\"H8040\"* hands|strong=\"H3027\"* and|strong=\"H3068\"* the|strong=\"H3068\"* trumpets|strong=\"H7782\"* in|strong=\"H3068\"* their|strong=\"H3068\"* right|strong=\"H3225\"* hands|strong=\"H3027\"* with|strong=\"H3068\"* which|strong=\"H3068\"* to|strong=\"H3068\"* blow|strong=\"H8628\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* shouted|strong=\"H7121\"*, “The|strong=\"H3068\"* sword|strong=\"H2719\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* of|strong=\"H3068\"* Gideon|strong=\"H1439\"*!”" + }, + { + "verseNum": 21, + "text": "They|strong=\"H7323\"* each|strong=\"H3605\"* stood|strong=\"H5975\"* in|strong=\"H5975\"* his|strong=\"H3605\"* place|strong=\"H8478\"* around|strong=\"H5439\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*, and|strong=\"H5975\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H4264\"* ran|strong=\"H7323\"*; and|strong=\"H5975\"* they|strong=\"H7323\"* shouted|strong=\"H7321\"*, and|strong=\"H5975\"* put|strong=\"H5127\"* them|strong=\"H5975\"* to|strong=\"H5127\"* flight|strong=\"H5127\"*." + }, + { + "verseNum": 22, + "text": "They|strong=\"H3068\"* blew|strong=\"H8628\"* the|strong=\"H3605\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* trumpets|strong=\"H7782\"*, and|strong=\"H3967\"* Yahweh|strong=\"H3068\"* set|strong=\"H7760\"* every|strong=\"H3605\"* man|strong=\"H3605\"*’s sword|strong=\"H2719\"* against|strong=\"H5921\"* his|strong=\"H3605\"* fellow|strong=\"H7453\"* and|strong=\"H3967\"* against|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H4264\"*; and|strong=\"H3967\"* the|strong=\"H3605\"* army|strong=\"H4264\"* fled|strong=\"H5127\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Beth Shittah toward|strong=\"H5921\"* Zererah|strong=\"H6888\"*, as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* the|strong=\"H3605\"* border|strong=\"H8193\"* of|strong=\"H3068\"* Abel Meholah, by|strong=\"H5921\"* Tabbath|strong=\"H2888\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4480\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* gathered|strong=\"H6817\"* together|strong=\"H6817\"* out|strong=\"H4480\"* of|strong=\"H4480\"* Naphtali|strong=\"H5321\"*, out|strong=\"H4480\"* of|strong=\"H4480\"* Asher, and|strong=\"H3478\"* out|strong=\"H4480\"* of|strong=\"H4480\"* all|strong=\"H3605\"* Manasseh|strong=\"H4519\"*, and|strong=\"H3478\"* pursued|strong=\"H7291\"* Midian|strong=\"H4080\"*." + }, + { + "verseNum": 24, + "text": "Gideon|strong=\"H1439\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim, saying, “Come|strong=\"H3381\"* down|strong=\"H3381\"* against|strong=\"H7125\"* Midian|strong=\"H4080\"* and|strong=\"H7971\"* take|strong=\"H3920\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* before|strong=\"H5704\"* them|strong=\"H7971\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Beth Barah, even|strong=\"H5704\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*!” So|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H2022\"* Ephraim were|strong=\"H4325\"* gathered|strong=\"H6817\"* together|strong=\"H6817\"* and|strong=\"H7971\"* took|strong=\"H3920\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Beth Barah, even|strong=\"H5704\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"H3920\"* took|strong=\"H3920\"* the|strong=\"H5676\"* two|strong=\"H8147\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Midian|strong=\"H4080\"*, Oreb|strong=\"H6159\"* and|strong=\"H7218\"* Zeeb|strong=\"H2062\"*. They|strong=\"H3920\"* killed|strong=\"H2026\"* Oreb|strong=\"H6159\"* at|strong=\"H3383\"* Oreb|strong=\"H6159\"*’s rock|strong=\"H6697\"*, and|strong=\"H7218\"* Zeeb|strong=\"H2062\"* they|strong=\"H3920\"* killed|strong=\"H2026\"* at|strong=\"H3383\"* Zeeb|strong=\"H2062\"*’s wine|strong=\"H3342\"* press|strong=\"H3342\"*, as|strong=\"H4080\"* they|strong=\"H3920\"* pursued|strong=\"H7291\"* Midian|strong=\"H4080\"*. Then|strong=\"H7218\"* they|strong=\"H3920\"* brought the|strong=\"H5676\"* heads|strong=\"H7218\"* of|strong=\"H8269\"* Oreb|strong=\"H6159\"* and|strong=\"H7218\"* Zeeb|strong=\"H2062\"* to|strong=\"H3383\"* Gideon|strong=\"H1439\"* beyond|strong=\"H5676\"* the|strong=\"H5676\"* Jordan|strong=\"H3383\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3588\"* men|strong=\"H1980\"* of|strong=\"H1697\"* Ephraim said|strong=\"H1697\"* to|strong=\"H1980\"* him|strong=\"H7121\"*, “Why|strong=\"H4100\"* have|strong=\"H1697\"* you|strong=\"H3588\"* treated|strong=\"H6213\"* us|strong=\"H6213\"* this|strong=\"H2088\"* way|strong=\"H1697\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* didn’t call|strong=\"H7121\"* us|strong=\"H6213\"* when|strong=\"H3588\"* you|strong=\"H3588\"* went|strong=\"H1980\"* to|strong=\"H1980\"* fight|strong=\"H3898\"* with|strong=\"H1980\"* Midian|strong=\"H4080\"*?” They|strong=\"H3588\"* rebuked|strong=\"H7378\"* him|strong=\"H7121\"* sharply|strong=\"H2394\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* said to|strong=\"H6213\"* them|strong=\"H6213\"*, “What|strong=\"H4100\"* have|strong=\"H6258\"* I|strong=\"H6258\"* now|strong=\"H6258\"* done|strong=\"H6213\"* in|strong=\"H6213\"* comparison with|strong=\"H6213\"* you|strong=\"H6213\"*? Isn’t the|strong=\"H6213\"* gleaning|strong=\"H5955\"* of|strong=\"H6213\"* the|strong=\"H6213\"* grapes|strong=\"H5955\"* of|strong=\"H6213\"* Ephraim better|strong=\"H2896\"* than|strong=\"H2896\"* the|strong=\"H6213\"* vintage|strong=\"H1210\"* of|strong=\"H6213\"* Abiezer?" + }, + { + "verseNum": 3, + "text": "God|strong=\"H5414\"* has|strong=\"H4100\"* delivered|strong=\"H5414\"* into|strong=\"H5921\"* your|strong=\"H5414\"* hand|strong=\"H3027\"* the|strong=\"H5921\"* princes|strong=\"H8269\"* of|strong=\"H3027\"* Midian|strong=\"H4080\"*, Oreb|strong=\"H6159\"* and|strong=\"H3027\"* Zeeb|strong=\"H2062\"*! What|strong=\"H4100\"* was|strong=\"H1697\"* I|strong=\"H5414\"* able|strong=\"H3201\"* to|strong=\"H1696\"* do|strong=\"H6213\"* in|strong=\"H5921\"* comparison with|strong=\"H6213\"* you|strong=\"H5414\"*?” Then|strong=\"H1696\"* their|strong=\"H5414\"* anger|strong=\"H7307\"* was|strong=\"H1697\"* abated|strong=\"H7503\"* toward|strong=\"H5921\"* him|strong=\"H5414\"* when|strong=\"H1696\"* he|strong=\"H6213\"* had|strong=\"H5414\"* said|strong=\"H1696\"* that|strong=\"H1697\"*." + }, + { + "verseNum": 4, + "text": "Gideon|strong=\"H1439\"* came|strong=\"H5674\"* to|strong=\"H5674\"* the|strong=\"H5674\"* Jordan|strong=\"H3383\"* and|strong=\"H3967\"* passed|strong=\"H5674\"* over|strong=\"H5674\"*, he|strong=\"H1931\"* and|strong=\"H3967\"* the|strong=\"H5674\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* men who|strong=\"H1931\"* were|strong=\"H7291\"* with|strong=\"H5674\"* him|strong=\"H1931\"*, faint|strong=\"H5889\"*, yet|strong=\"H5889\"* pursuing|strong=\"H7291\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3588\"* said to|strong=\"H5414\"* the|strong=\"H3588\"* men|strong=\"H5971\"* of|strong=\"H4428\"* Succoth|strong=\"H5523\"*, “Please|strong=\"H4994\"* give|strong=\"H5414\"* loaves|strong=\"H3899\"* of|strong=\"H4428\"* bread|strong=\"H3899\"* to|strong=\"H5414\"* the|strong=\"H3588\"* people|strong=\"H5971\"* who|strong=\"H5971\"* follow|strong=\"H7291\"* me|strong=\"H5414\"*; for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* faint|strong=\"H5889\"*, and|strong=\"H4428\"* I|strong=\"H3588\"* am pursuing|strong=\"H7291\"* after|strong=\"H7291\"* Zebah|strong=\"H2078\"* and|strong=\"H4428\"* Zalmunna|strong=\"H6759\"*, the|strong=\"H3588\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Midian|strong=\"H4080\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H3588\"* princes|strong=\"H8269\"* of|strong=\"H3027\"* Succoth|strong=\"H5523\"* said, “Are|strong=\"H3027\"* the|strong=\"H3588\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* Zebah|strong=\"H2078\"* and|strong=\"H3027\"* Zalmunna|strong=\"H6759\"* now|strong=\"H6258\"* in|strong=\"H6635\"* your|strong=\"H5414\"* hand|strong=\"H3027\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* should|strong=\"H3588\"* give|strong=\"H5414\"* bread|strong=\"H3899\"* to|strong=\"H5414\"* your|strong=\"H5414\"* army|strong=\"H6635\"*?”" + }, + { + "verseNum": 7, + "text": "Gideon|strong=\"H1439\"* said|strong=\"H3651\"*, “Therefore|strong=\"H3651\"* when|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* Zebah|strong=\"H2078\"* and|strong=\"H3068\"* Zalmunna|strong=\"H6759\"* into|strong=\"H3027\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*, then|strong=\"H3651\"* I|strong=\"H5414\"* will|strong=\"H3068\"* tear|strong=\"H1758\"* your|strong=\"H3068\"* flesh|strong=\"H1320\"* with|strong=\"H3068\"* the|strong=\"H5414\"* thorns|strong=\"H6975\"* of|strong=\"H3068\"* the|strong=\"H5414\"* wilderness|strong=\"H4057\"* and|strong=\"H3068\"* with|strong=\"H3068\"* briers|strong=\"H1303\"*.”" + }, + { + "verseNum": 8, + "text": "He|strong=\"H8033\"* went|strong=\"H5927\"* up|strong=\"H5927\"* there|strong=\"H8033\"* to|strong=\"H1696\"* Penuel|strong=\"H6439\"*, and|strong=\"H6030\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5927\"* in|strong=\"H1696\"* the|strong=\"H5927\"* same|strong=\"H2063\"* way|strong=\"H2063\"*; and|strong=\"H6030\"* the|strong=\"H5927\"* men of|strong=\"H1696\"* Penuel|strong=\"H6439\"* answered|strong=\"H6030\"* him|strong=\"H6030\"* as|strong=\"H5927\"* the|strong=\"H5927\"* men of|strong=\"H1696\"* Succoth|strong=\"H5523\"* had|strong=\"H5523\"* answered|strong=\"H6030\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H2088\"* spoke also|strong=\"H1571\"* to|strong=\"H7725\"* the|strong=\"H7725\"* men of|strong=\"H4026\"* Penuel|strong=\"H6439\"*, saying, “When|strong=\"H7725\"* I|strong=\"H2088\"* come|strong=\"H7725\"* again|strong=\"H7725\"* in|strong=\"H7725\"* peace|strong=\"H7965\"*, I|strong=\"H2088\"* will|strong=\"H1571\"* break|strong=\"H5422\"* down|strong=\"H5422\"* this|strong=\"H2088\"* tower|strong=\"H4026\"*.”" + }, + { + "verseNum": 10, + "text": "Now Zebah|strong=\"H2078\"* and|strong=\"H3967\"* Zalmunna|strong=\"H6759\"* were|strong=\"H1121\"* in|strong=\"H1121\"* Karkor|strong=\"H7174\"*, and|strong=\"H3967\"* their|strong=\"H3605\"* armies|strong=\"H4264\"* with|strong=\"H5973\"* them|strong=\"H5307\"*, about|strong=\"H3605\"* fifteen|strong=\"H2568\"* thousand men|strong=\"H1121\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* left|strong=\"H3498\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H4264\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* east|strong=\"H6924\"*; for|strong=\"H1121\"* there|strong=\"H3605\"* fell|strong=\"H5307\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* thousand men|strong=\"H1121\"* who|strong=\"H3605\"* drew|strong=\"H8025\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 11, + "text": "Gideon|strong=\"H1439\"* went|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H1870\"* the|strong=\"H5221\"* way|strong=\"H1870\"* of|strong=\"H1870\"* those|strong=\"H1961\"* who|strong=\"H5221\"* lived|strong=\"H7931\"* in|strong=\"H7931\"* tents|strong=\"H4264\"* on|strong=\"H1870\"* the|strong=\"H5221\"* east|strong=\"H6924\"* of|strong=\"H1870\"* Nobah|strong=\"H5025\"* and|strong=\"H1870\"* Jogbehah|strong=\"H3011\"*, and|strong=\"H1870\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* army|strong=\"H4264\"*; for|strong=\"H1961\"* the|strong=\"H5221\"* army|strong=\"H4264\"* felt secure." + }, + { + "verseNum": 12, + "text": "Zebah|strong=\"H2078\"* and|strong=\"H4428\"* Zalmunna|strong=\"H6759\"* fled|strong=\"H5127\"* and|strong=\"H4428\"* he|strong=\"H3605\"* pursued|strong=\"H7291\"* them|strong=\"H8147\"*. He|strong=\"H3605\"* took|strong=\"H3920\"* the|strong=\"H3605\"* two|strong=\"H8147\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Midian|strong=\"H4080\"*, Zebah|strong=\"H2078\"* and|strong=\"H4428\"* Zalmunna|strong=\"H6759\"*, and|strong=\"H4428\"* confused all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H4264\"*." + }, + { + "verseNum": 13, + "text": "Gideon|strong=\"H1439\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* returned|strong=\"H7725\"* from|strong=\"H4480\"* the|strong=\"H4480\"* battle|strong=\"H4421\"* from|strong=\"H4480\"* the|strong=\"H4480\"* ascent|strong=\"H4608\"* of|strong=\"H1121\"* Heres." + }, + { + "verseNum": 14, + "text": "He|strong=\"H2205\"* caught|strong=\"H3920\"* a|strong=\"H3068\"* young|strong=\"H5288\"* man|strong=\"H5288\"* of|strong=\"H8269\"* the|strong=\"H3920\"* men|strong=\"H5288\"* of|strong=\"H8269\"* Succoth|strong=\"H5523\"*, and|strong=\"H5288\"* inquired|strong=\"H7592\"* of|strong=\"H8269\"* him|strong=\"H7592\"*; and|strong=\"H5288\"* he|strong=\"H2205\"* described|strong=\"H3789\"* for|strong=\"H7592\"* him|strong=\"H7592\"* the|strong=\"H3920\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Succoth|strong=\"H5523\"*, and|strong=\"H5288\"* its|strong=\"H3920\"* elders|strong=\"H2205\"*, seventy-seven|strong=\"H7657\"* men|strong=\"H5288\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3588\"* came to|strong=\"H5414\"* the|strong=\"H3588\"* men of|strong=\"H3027\"* Succoth|strong=\"H5523\"*, and|strong=\"H3027\"* said, “See|strong=\"H2009\"* Zebah|strong=\"H2078\"* and|strong=\"H3027\"* Zalmunna|strong=\"H6759\"*, concerning whom|strong=\"H3588\"* you|strong=\"H3588\"* taunted|strong=\"H2778\"* me|strong=\"H5414\"*, saying, ‘Are|strong=\"H3027\"* the|strong=\"H3588\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* Zebah|strong=\"H2078\"* and|strong=\"H3027\"* Zalmunna|strong=\"H6759\"* now|strong=\"H6258\"* in|strong=\"H3899\"* your|strong=\"H5414\"* hand|strong=\"H3027\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* should|strong=\"H3588\"* give|strong=\"H5414\"* bread|strong=\"H3899\"* to|strong=\"H5414\"* your|strong=\"H5414\"* men who|strong=\"H3588\"* are|strong=\"H3027\"* weary|strong=\"H3286\"*?’”" + }, + { + "verseNum": 16, + "text": "He|strong=\"H5892\"* took|strong=\"H3947\"* the|strong=\"H3947\"* elders|strong=\"H2205\"* of|strong=\"H5892\"* the|strong=\"H3947\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* thorns|strong=\"H6975\"* of|strong=\"H5892\"* the|strong=\"H3947\"* wilderness|strong=\"H4057\"* and|strong=\"H5892\"* briers|strong=\"H1303\"*, and|strong=\"H5892\"* with|strong=\"H3045\"* them|strong=\"H3947\"* he|strong=\"H5892\"* taught|strong=\"H3045\"* the|strong=\"H3947\"* men|strong=\"H2205\"* of|strong=\"H5892\"* Succoth|strong=\"H5523\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H5892\"* broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H2026\"* tower|strong=\"H4026\"* of|strong=\"H5892\"* Penuel|strong=\"H6439\"*, and|strong=\"H5892\"* killed|strong=\"H2026\"* the|strong=\"H2026\"* men of|strong=\"H5892\"* the|strong=\"H2026\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H4428\"* he|strong=\"H4428\"* said to|strong=\"H1121\"* Zebah|strong=\"H2078\"* and|strong=\"H1121\"* Zalmunna|strong=\"H6759\"*, “What kind of|strong=\"H1121\"* men|strong=\"H1121\"* were|strong=\"H1121\"* they|strong=\"H4428\"* whom you|strong=\"H3644\"* killed|strong=\"H2026\"* at|strong=\"H4428\"* Tabor|strong=\"H8396\"*?”" + }, + { + "verseNum": 19, + "text": "He|strong=\"H3068\"* said, “They|strong=\"H1992\"* were|strong=\"H1121\"* my|strong=\"H3068\"* brothers|strong=\"H1121\"*, the|strong=\"H3068\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* my|strong=\"H3068\"* mother. As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, if|strong=\"H3863\"* you|strong=\"H3808\"* had|strong=\"H3068\"* saved|strong=\"H2421\"* them|strong=\"H1992\"* alive|strong=\"H2416\"*, I|strong=\"H3808\"* would|strong=\"H3068\"* not|strong=\"H3808\"* kill|strong=\"H2026\"* you|strong=\"H3808\"*.”" + }, + { + "verseNum": 20, + "text": "He|strong=\"H3588\"* said to|strong=\"H6965\"* Jether|strong=\"H3500\"* his|strong=\"H6965\"* firstborn|strong=\"H1060\"*, “Get|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* kill|strong=\"H2026\"* them|strong=\"H2026\"*!” But|strong=\"H3588\"* the|strong=\"H3588\"* youth|strong=\"H5288\"* didn’t draw|strong=\"H8025\"* his|strong=\"H6965\"* sword|strong=\"H2719\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H5288\"* afraid|strong=\"H3372\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H5288\"* yet|strong=\"H5750\"* a|strong=\"H3068\"* youth|strong=\"H5288\"*." + }, + { + "verseNum": 21, + "text": "Then|strong=\"H6965\"* Zebah|strong=\"H2078\"* and|strong=\"H6965\"* Zalmunna|strong=\"H6759\"* said, “You|strong=\"H3588\"* rise|strong=\"H6965\"* and|strong=\"H6965\"* fall|strong=\"H6293\"* on|strong=\"H6965\"* us|strong=\"H3588\"*; for|strong=\"H3588\"* as|strong=\"H3588\"* the|strong=\"H3588\"* man is|strong=\"H3588\"*, so|strong=\"H3947\"* is|strong=\"H3588\"* his|strong=\"H3947\"* strength|strong=\"H1369\"*.” Gideon|strong=\"H1439\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* killed|strong=\"H2026\"* Zebah|strong=\"H2078\"* and|strong=\"H6965\"* Zalmunna|strong=\"H6759\"*, and|strong=\"H6965\"* took|strong=\"H3947\"* the|strong=\"H3588\"* crescents that|strong=\"H3588\"* were|strong=\"H1581\"* on|strong=\"H6965\"* their|strong=\"H3947\"* camels|strong=\"H1581\"*’ necks|strong=\"H6677\"*." + }, + { + "verseNum": 22, + "text": "Then|strong=\"H1571\"* the|strong=\"H3588\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Gideon|strong=\"H1439\"*, “Rule|strong=\"H4910\"* over|strong=\"H3027\"* us|strong=\"H3588\"*, both|strong=\"H1571\"* you|strong=\"H3588\"*, your|strong=\"H3588\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* your|strong=\"H3588\"* son|strong=\"H1121\"*’s son|strong=\"H1121\"* also|strong=\"H1571\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1121\"* saved|strong=\"H3467\"* us|strong=\"H3588\"* out|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"*.”" + }, + { + "verseNum": 23, + "text": "Gideon|strong=\"H1439\"* said to|strong=\"H3068\"* them|strong=\"H1121\"*, “I|strong=\"H3808\"* will|strong=\"H3068\"* not|strong=\"H3808\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* you|strong=\"H3808\"*, neither|strong=\"H3808\"* shall|strong=\"H3068\"* my|strong=\"H3068\"* son|strong=\"H1121\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* you|strong=\"H3808\"*. Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* you|strong=\"H3808\"*.”" + }, + { + "verseNum": 24, + "text": "Gideon|strong=\"H1439\"* said to|strong=\"H5414\"* them|strong=\"H5414\"*, “I|strong=\"H3588\"* do have|strong=\"H5414\"* a|strong=\"H3068\"* request|strong=\"H7596\"*: that|strong=\"H3588\"* you|strong=\"H3588\"* would each|strong=\"H5414\"* give|strong=\"H5414\"* me|strong=\"H5414\"* the|strong=\"H3588\"* earrings|strong=\"H5141\"* of|strong=\"H4480\"* his|strong=\"H5414\"* plunder|strong=\"H7998\"*.” (For|strong=\"H3588\"* they|strong=\"H1992\"* had|strong=\"H3588\"* golden|strong=\"H2091\"* earrings|strong=\"H5141\"*, because|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H1992\"* Ishmaelites|strong=\"H3459\"*.)" + }, + { + "verseNum": 25, + "text": "They|strong=\"H8033\"* answered, “We|strong=\"H8033\"* will|strong=\"H5414\"* willingly|strong=\"H5414\"* give|strong=\"H5414\"* them|strong=\"H5414\"*.” They|strong=\"H8033\"* spread|strong=\"H6566\"* a|strong=\"H3068\"* garment|strong=\"H8071\"*, and|strong=\"H8033\"* every|strong=\"H5414\"* man threw|strong=\"H7993\"* the|strong=\"H5414\"* earrings|strong=\"H5141\"* of|strong=\"H7998\"* his|strong=\"H5414\"* plunder|strong=\"H7998\"* into|strong=\"H7993\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H5921\"* weight|strong=\"H4948\"* of|strong=\"H4428\"* the|strong=\"H5921\"* golden|strong=\"H2091\"* earrings|strong=\"H5141\"* that|strong=\"H4428\"* he|strong=\"H4480\"* requested|strong=\"H7592\"* was|strong=\"H1961\"* one|strong=\"H4480\"* thousand and|strong=\"H3967\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* shekels|strong=\"H4948\"*+ 8:26 A shekel is about 10 grams or about 0.32 Troy ounces, so 1700 shekels is about 17 kilograms or 37.4 pounds.* of|strong=\"H4428\"* gold|strong=\"H2091\"*, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H1961\"* the|strong=\"H5921\"* crescents, and|strong=\"H3967\"* the|strong=\"H5921\"* pendants|strong=\"H5188\"*, and|strong=\"H3967\"* the|strong=\"H5921\"* purple clothing that|strong=\"H4428\"* was|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Midian|strong=\"H4080\"*, and|strong=\"H3967\"* in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H1961\"* the|strong=\"H5921\"* chains|strong=\"H6060\"* that|strong=\"H4428\"* were|strong=\"H1961\"* about|strong=\"H1961\"* their|strong=\"H5921\"* camels|strong=\"H1581\"*’ necks|strong=\"H6677\"*." + }, + { + "verseNum": 27, + "text": "Gideon|strong=\"H1439\"* made|strong=\"H6213\"* an|strong=\"H6213\"* ephod out|strong=\"H6213\"* of|strong=\"H1004\"* it|strong=\"H6213\"*, and|strong=\"H3478\"* put|strong=\"H6213\"* it|strong=\"H6213\"* in|strong=\"H3478\"* Ophrah|strong=\"H6084\"*, his|strong=\"H3605\"* city|strong=\"H5892\"*. Then|strong=\"H1961\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* played|strong=\"H2181\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"* with|strong=\"H1004\"* it|strong=\"H6213\"* there|strong=\"H8033\"*; and|strong=\"H3478\"* it|strong=\"H6213\"* became|strong=\"H1961\"* a|strong=\"H3068\"* snare|strong=\"H4170\"* to|strong=\"H3478\"* Gideon|strong=\"H1439\"* and|strong=\"H3478\"* to|strong=\"H3478\"* his|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 28, + "text": "So|strong=\"H3808\"* Midian|strong=\"H4080\"* was|strong=\"H3478\"* subdued|strong=\"H3665\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* they|strong=\"H3117\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H5375\"* heads|strong=\"H7218\"* no|strong=\"H3808\"* more|strong=\"H3254\"*. The|strong=\"H6440\"* land|strong=\"H6440\"* had|strong=\"H3478\"* rest|strong=\"H8252\"* forty years|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H6440\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Gideon|strong=\"H1439\"*." + }, + { + "verseNum": 29, + "text": "Jerubbaal|strong=\"H3378\"* the|strong=\"H3427\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* went|strong=\"H3212\"* and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* his|strong=\"H3101\"* own house|strong=\"H1004\"*." + }, + { + "verseNum": 30, + "text": "Gideon|strong=\"H1439\"* had|strong=\"H1961\"* seventy|strong=\"H7657\"* sons|strong=\"H1121\"* conceived from|strong=\"H3318\"* his|strong=\"H1961\"* body|strong=\"H3409\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1961\"* many|strong=\"H7227\"* wives." + }, + { + "verseNum": 31, + "text": "His|strong=\"H7760\"* concubine|strong=\"H6370\"* who|strong=\"H1931\"* was|strong=\"H8034\"* in|strong=\"H1121\"* Shechem|strong=\"H7927\"* also|strong=\"H1571\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* named|strong=\"H8034\"* him|strong=\"H3205\"* Abimelech." + }, + { + "verseNum": 32, + "text": "Gideon|strong=\"H1439\"* the|strong=\"H4191\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* died|strong=\"H4191\"* in|strong=\"H4191\"* a|strong=\"H3068\"* good|strong=\"H2896\"* old|strong=\"H1121\"* age|strong=\"H7872\"*, and|strong=\"H1121\"* was|strong=\"H1121\"* buried|strong=\"H6912\"* in|strong=\"H4191\"* the|strong=\"H4191\"* tomb|strong=\"H6913\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* his|strong=\"H6912\"* father|strong=\"H1121\"*, in|strong=\"H4191\"* Ophrah|strong=\"H6084\"* of|strong=\"H1121\"* the|strong=\"H4191\"* Abiezrites." + }, + { + "verseNum": 33, + "text": "As|strong=\"H1961\"* soon as|strong=\"H1961\"* Gideon|strong=\"H1439\"* was|strong=\"H1961\"* dead|strong=\"H4191\"*, the|strong=\"H7725\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* turned|strong=\"H7725\"* again|strong=\"H7725\"* and|strong=\"H1121\"* played|strong=\"H2181\"* the|strong=\"H7725\"* prostitute|strong=\"H2181\"* following the|strong=\"H7725\"* Baals|strong=\"H1168\"*, and|strong=\"H1121\"* made|strong=\"H7760\"* Baal|strong=\"H1168\"* Berith their|strong=\"H7760\"* god." + }, + { + "verseNum": 34, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* didn’t remember|strong=\"H2142\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"*, who|strong=\"H3605\"* had|strong=\"H3068\"* delivered|strong=\"H5337\"* them|strong=\"H3027\"* out|strong=\"H5337\"* of|strong=\"H1121\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* all|strong=\"H3605\"* their|strong=\"H3605\"* enemies|strong=\"H3027\"* on|strong=\"H3027\"* every|strong=\"H3605\"* side|strong=\"H5439\"*;" + }, + { + "verseNum": 35, + "text": "neither|strong=\"H3808\"* did|strong=\"H6213\"* they|strong=\"H3808\"* show|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H3478\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jerubbaal|strong=\"H3378\"*, that|strong=\"H3605\"* is|strong=\"H2617\"*, Gideon|strong=\"H1439\"*, according to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* goodness|strong=\"H2896\"* which|strong=\"H1004\"* he|strong=\"H6213\"* had|strong=\"H3478\"* shown|strong=\"H6213\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Abimelech the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jerubbaal|strong=\"H3378\"* went|strong=\"H3212\"* to|strong=\"H1696\"* Shechem|strong=\"H7927\"* to|strong=\"H1696\"* his|strong=\"H3605\"* mother’s brothers|strong=\"H1121\"*, and|strong=\"H1121\"* spoke|strong=\"H1696\"* with|strong=\"H1004\"* them|strong=\"H1121\"* and|strong=\"H1121\"* with|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* his|strong=\"H3605\"* mother’s father|strong=\"H1121\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Please|strong=\"H4994\"* speak|strong=\"H1696\"* in|strong=\"H1320\"* the|strong=\"H3605\"* ears of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Shechem|strong=\"H7927\"*, ‘Is|strong=\"H4100\"* it|strong=\"H3588\"* better|strong=\"H2896\"* for|strong=\"H3588\"* you|strong=\"H3588\"* that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jerubbaal|strong=\"H3378\"*, who|strong=\"H3605\"* are|strong=\"H1121\"* seventy|strong=\"H7657\"* persons, rule|strong=\"H4910\"* over|strong=\"H4910\"* you|strong=\"H3588\"*, or|strong=\"H1121\"* that|strong=\"H3588\"* one|strong=\"H3605\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* you|strong=\"H3588\"*?’ Remember|strong=\"H2142\"* also|strong=\"H1121\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am your|strong=\"H3605\"* bone|strong=\"H6106\"* and|strong=\"H1121\"* your|strong=\"H3605\"* flesh|strong=\"H1320\"*.”" + }, + { + "verseNum": 3, + "text": "His|strong=\"H3605\"* mother’s brothers spoke|strong=\"H1696\"* of|strong=\"H1697\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* ears of|strong=\"H1697\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1167\"* of|strong=\"H1697\"* Shechem|strong=\"H7927\"* all|strong=\"H3605\"* these|strong=\"H1696\"* words|strong=\"H1697\"*. Their|strong=\"H3605\"* hearts|strong=\"H3820\"* inclined|strong=\"H5186\"* to|strong=\"H1696\"* follow Abimelech; for|strong=\"H3588\"* they|strong=\"H3588\"* said|strong=\"H1696\"*, “He|strong=\"H1931\"* is|strong=\"H1931\"* our|strong=\"H3605\"* brother.”" + }, + { + "verseNum": 4, + "text": "They|strong=\"H5414\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* seventy|strong=\"H7657\"* pieces of|strong=\"H1004\"* silver|strong=\"H3701\"* out|strong=\"H5414\"* of|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baal Berith, with|strong=\"H1004\"* which|strong=\"H1004\"* Abimelech hired|strong=\"H7936\"* vain|strong=\"H7386\"* and|strong=\"H3701\"* reckless|strong=\"H6348\"* fellows|strong=\"H7386\"* who followed|strong=\"H3212\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3588\"* went|strong=\"H1121\"* to|strong=\"H5921\"* his|strong=\"H5921\"* father|strong=\"H1121\"*’s house|strong=\"H1004\"* at|strong=\"H5921\"* Ophrah|strong=\"H6084\"*, and|strong=\"H1121\"* killed|strong=\"H2026\"* his|strong=\"H5921\"* brothers|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jerubbaal|strong=\"H3378\"*, being|strong=\"H1004\"* seventy|strong=\"H7657\"* persons, on|strong=\"H5921\"* one|strong=\"H1121\"* stone; but|strong=\"H3588\"* Jotham|strong=\"H3147\"* the|strong=\"H5921\"* youngest|strong=\"H6996\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jerubbaal|strong=\"H3378\"* was|strong=\"H1004\"* left|strong=\"H3498\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* hid|strong=\"H2244\"* himself." + }, + { + "verseNum": 6, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1167\"* of|strong=\"H4428\"* Shechem|strong=\"H7927\"* assembled|strong=\"H3605\"* themselves together|strong=\"H5973\"* with|strong=\"H5973\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Millo|strong=\"H4407\"*, and|strong=\"H4428\"* went|strong=\"H3212\"* and|strong=\"H4428\"* made|strong=\"H4427\"* Abimelech king|strong=\"H4428\"* by|strong=\"H5973\"* the|strong=\"H3605\"* oak of|strong=\"H4428\"* the|strong=\"H3605\"* pillar|strong=\"H5324\"* that|strong=\"H3605\"* was|strong=\"H4428\"* in|strong=\"H1004\"* Shechem|strong=\"H7927\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H8085\"* they|strong=\"H5375\"* told|strong=\"H5046\"* it|strong=\"H7121\"* to|strong=\"H3212\"* Jotham|strong=\"H3147\"*, he|strong=\"H7121\"* went|strong=\"H3212\"* and|strong=\"H3212\"* stood|strong=\"H5975\"* on|strong=\"H5975\"* the|strong=\"H8085\"* top|strong=\"H7218\"* of|strong=\"H2022\"* Mount|strong=\"H2022\"* Gerizim|strong=\"H1630\"* and|strong=\"H3212\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* voice|strong=\"H6963\"*, cried|strong=\"H7121\"* out|strong=\"H3212\"*, and|strong=\"H3212\"* said|strong=\"H7121\"* to|strong=\"H3212\"* them|strong=\"H7121\"*, “Listen|strong=\"H8085\"* to|strong=\"H3212\"* me|strong=\"H5046\"*, you|strong=\"H5046\"* men|strong=\"H1167\"* of|strong=\"H2022\"* Shechem|strong=\"H7927\"*, that|strong=\"H8085\"* God may|strong=\"H8085\"* listen|strong=\"H8085\"* to|strong=\"H3212\"* you|strong=\"H5046\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* trees|strong=\"H6086\"* set|strong=\"H4427\"* out|strong=\"H5921\"* to|strong=\"H1980\"* anoint|strong=\"H4886\"* a|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* themselves|strong=\"H5921\"*. They|strong=\"H5921\"* said to|strong=\"H1980\"* the|strong=\"H5921\"* olive|strong=\"H2132\"* tree|strong=\"H6086\"*, ‘Reign|strong=\"H4427\"* over|strong=\"H5921\"* us|strong=\"H5921\"*.’" + }, + { + "verseNum": 9, + "text": "“But|strong=\"H3513\"* the|strong=\"H5921\"* olive|strong=\"H2132\"* tree|strong=\"H6086\"* said to|strong=\"H1980\"* them|strong=\"H5921\"*, ‘Should|strong=\"H1980\"* I|strong=\"H5921\"* stop|strong=\"H2308\"* producing my|strong=\"H5921\"* oil, with|strong=\"H1980\"* which|strong=\"H6086\"* they|strong=\"H5921\"* honor|strong=\"H3513\"* God and|strong=\"H1980\"* man by|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H1980\"* go|strong=\"H1980\"* to|strong=\"H1980\"* wave|strong=\"H5128\"* back|strong=\"H1980\"* and|strong=\"H1980\"* forth|strong=\"H1980\"* over|strong=\"H5921\"* the|strong=\"H5921\"* trees|strong=\"H6086\"*?’" + }, + { + "verseNum": 10, + "text": "“The|strong=\"H5921\"* trees|strong=\"H6086\"* said to|strong=\"H3212\"* the|strong=\"H5921\"* fig|strong=\"H8384\"* tree|strong=\"H6086\"*, ‘Come|strong=\"H3212\"* and|strong=\"H3212\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* us|strong=\"H5921\"*.’" + }, + { + "verseNum": 11, + "text": "“But|strong=\"H5921\"* the|strong=\"H5921\"* fig|strong=\"H8384\"* tree|strong=\"H6086\"* said to|strong=\"H1980\"* them|strong=\"H5921\"*, ‘Should|strong=\"H1980\"* I|strong=\"H5921\"* leave|strong=\"H1980\"* my|strong=\"H5921\"* sweetness|strong=\"H4987\"*, and|strong=\"H1980\"* my|strong=\"H5921\"* good|strong=\"H2896\"* fruit|strong=\"H8570\"*, and|strong=\"H1980\"* go|strong=\"H1980\"* to|strong=\"H1980\"* wave|strong=\"H5128\"* back|strong=\"H1980\"* and|strong=\"H1980\"* forth|strong=\"H1980\"* over|strong=\"H5921\"* the|strong=\"H5921\"* trees|strong=\"H6086\"*?’" + }, + { + "verseNum": 12, + "text": "“The|strong=\"H5921\"* trees|strong=\"H6086\"* said to|strong=\"H3212\"* the|strong=\"H5921\"* vine|strong=\"H1612\"*, ‘Come|strong=\"H3212\"* and|strong=\"H3212\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* us|strong=\"H5921\"*.’" + }, + { + "verseNum": 13, + "text": "“The|strong=\"H5921\"* vine|strong=\"H1612\"* said to|strong=\"H1980\"* them|strong=\"H5921\"*, ‘Should|strong=\"H1980\"* I|strong=\"H5921\"* leave|strong=\"H1980\"* my|strong=\"H5921\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, which|strong=\"H6086\"* cheers|strong=\"H8055\"* God and|strong=\"H1980\"* man, and|strong=\"H1980\"* go|strong=\"H1980\"* to|strong=\"H1980\"* wave|strong=\"H5128\"* back|strong=\"H1980\"* and|strong=\"H1980\"* forth|strong=\"H1980\"* over|strong=\"H5921\"* the|strong=\"H5921\"* trees|strong=\"H6086\"*?’" + }, + { + "verseNum": 14, + "text": "“Then|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* trees|strong=\"H6086\"* said to|strong=\"H3212\"* the|strong=\"H3605\"* bramble, ‘Come|strong=\"H3212\"* and|strong=\"H3212\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* us|strong=\"H5921\"*.’" + }, + { + "verseNum": 15, + "text": "“The|strong=\"H5921\"* bramble said|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5921\"* trees|strong=\"H6086\"*, ‘If in|strong=\"H5921\"* truth you|strong=\"H5921\"* anoint|strong=\"H4886\"* me|strong=\"H5921\"* king|strong=\"H4428\"* over|strong=\"H5921\"* you|strong=\"H5921\"*, then|strong=\"H3318\"* come|strong=\"H3318\"* and|strong=\"H4428\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"* in|strong=\"H5921\"* my|strong=\"H5921\"* shade|strong=\"H6738\"*; and|strong=\"H4428\"* if not|strong=\"H3318\"*, let fire come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H5921\"* bramble, and|strong=\"H4428\"* devour the|strong=\"H5921\"* cedars of|strong=\"H4428\"* Lebanon|strong=\"H3844\"*.’" + }, + { + "verseNum": 16, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, if you|strong=\"H6213\"* have|strong=\"H3027\"* dealt|strong=\"H6213\"* truly|strong=\"H6213\"* and|strong=\"H3027\"* righteously, in|strong=\"H6213\"* that|strong=\"H3027\"* you|strong=\"H6213\"* have|strong=\"H3027\"* made|strong=\"H6213\"* Abimelech king|strong=\"H4427\"*, and|strong=\"H3027\"* if you|strong=\"H6213\"* have|strong=\"H3027\"* dealt|strong=\"H6213\"* well|strong=\"H2895\"* with|strong=\"H5973\"* Jerubbaal|strong=\"H3378\"* and|strong=\"H3027\"* his|strong=\"H3027\"* house|strong=\"H1004\"*, and|strong=\"H3027\"* have|strong=\"H3027\"* done|strong=\"H6213\"* to|strong=\"H6213\"* him|strong=\"H3027\"* according|strong=\"H3027\"* to|strong=\"H6213\"* the|strong=\"H6213\"* deserving|strong=\"H1576\"* of|strong=\"H1004\"* his|strong=\"H3027\"* hands|strong=\"H3027\"*" + }, + { + "verseNum": 17, + "text": "(for|strong=\"H5921\"* my|strong=\"H5921\"* father fought|strong=\"H3898\"* for|strong=\"H5921\"* you|strong=\"H5921\"*, risked|strong=\"H7993\"* his|strong=\"H5921\"* life|strong=\"H5315\"*, and|strong=\"H3027\"* delivered|strong=\"H5337\"* you|strong=\"H5921\"* out|strong=\"H7993\"* of|strong=\"H3027\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* Midian|strong=\"H4080\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H1121\"* you|strong=\"H3588\"* have|strong=\"H1121\"* risen|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* my|strong=\"H5921\"* father|strong=\"H1121\"*’s house|strong=\"H1004\"* today|strong=\"H3117\"* and|strong=\"H1121\"* have|strong=\"H1121\"* slain|strong=\"H2026\"* his|strong=\"H5921\"* sons|strong=\"H1121\"*, seventy|strong=\"H7657\"* persons, on|strong=\"H5921\"* one|strong=\"H1931\"* stone, and|strong=\"H1121\"* have|strong=\"H1121\"* made|strong=\"H4427\"* Abimelech, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H5921\"* female servant, king|strong=\"H4427\"* over|strong=\"H5921\"* the|strong=\"H5921\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Shechem|strong=\"H7927\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H5921\"* brother);" + }, + { + "verseNum": 19, + "text": "if|strong=\"H1931\"* you|strong=\"H3117\"* then|strong=\"H2088\"* have|strong=\"H1571\"* dealt|strong=\"H6213\"* truly|strong=\"H1571\"* and|strong=\"H3117\"* righteously with|strong=\"H5973\"* Jerubbaal|strong=\"H3378\"* and|strong=\"H3117\"* with|strong=\"H5973\"* his|strong=\"H6213\"* house|strong=\"H1004\"* today|strong=\"H3117\"*, then|strong=\"H2088\"* rejoice|strong=\"H8055\"* in|strong=\"H6213\"* Abimelech, and|strong=\"H3117\"* let|strong=\"H8055\"* him|strong=\"H6213\"* also|strong=\"H1571\"* rejoice|strong=\"H8055\"* in|strong=\"H6213\"* you|strong=\"H3117\"*;" + }, + { + "verseNum": 20, + "text": "but if not|strong=\"H3318\"*, let fire come|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Abimelech and|strong=\"H1004\"* devour the|strong=\"H3318\"* men|strong=\"H1167\"* of|strong=\"H1004\"* Shechem|strong=\"H7927\"* and|strong=\"H1004\"* the|strong=\"H3318\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Millo|strong=\"H4407\"*; and|strong=\"H1004\"* let fire come|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3318\"* men|strong=\"H1167\"* of|strong=\"H1004\"* Shechem|strong=\"H7927\"* and|strong=\"H1004\"* from|strong=\"H3318\"* the|strong=\"H3318\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Millo|strong=\"H4407\"* and|strong=\"H1004\"* devour Abimelech.”" + }, + { + "verseNum": 21, + "text": "Jotham|strong=\"H3147\"* ran|strong=\"H5127\"* away|strong=\"H3212\"* and|strong=\"H3212\"* fled|strong=\"H5127\"*, and|strong=\"H3212\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Beer+ 9:21 “Beer” is Hebrew for “well”, i.e., a village named for its well.* and|strong=\"H3212\"* lived|strong=\"H3427\"* there|strong=\"H8033\"*, for|strong=\"H6440\"* fear|strong=\"H6440\"* of|strong=\"H3427\"* Abimelech his|strong=\"H6440\"* brother." + }, + { + "verseNum": 22, + "text": "Abimelech was|strong=\"H3478\"* prince over|strong=\"H5921\"* Israel|strong=\"H3478\"* three|strong=\"H7969\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 23, + "text": "Then|strong=\"H7971\"* God|strong=\"H7971\"* sent|strong=\"H7971\"* an|strong=\"H7971\"* evil|strong=\"H7451\"* spirit|strong=\"H7307\"* between|strong=\"H7307\"* Abimelech and|strong=\"H7971\"* the|strong=\"H7971\"* men|strong=\"H1167\"* of|strong=\"H7307\"* Shechem|strong=\"H7927\"*; and|strong=\"H7971\"* the|strong=\"H7971\"* men|strong=\"H1167\"* of|strong=\"H7307\"* Shechem|strong=\"H7927\"* dealt|strong=\"H7927\"* treacherously with|strong=\"H7971\"* Abimelech," + }, + { + "verseNum": 24, + "text": "that|strong=\"H1121\"* the|strong=\"H5921\"* violence|strong=\"H2555\"* done|strong=\"H3027\"* to|strong=\"H5921\"* the|strong=\"H5921\"* seventy|strong=\"H7657\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jerubbaal|strong=\"H3378\"* might|strong=\"H3378\"* come, and|strong=\"H1121\"* that|strong=\"H1121\"* their|strong=\"H7760\"* blood|strong=\"H1818\"* might|strong=\"H3378\"* be|strong=\"H3027\"* laid|strong=\"H7760\"* on|strong=\"H5921\"* Abimelech their|strong=\"H7760\"* brother who|strong=\"H1121\"* killed|strong=\"H2026\"* them|strong=\"H5921\"*, and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Shechem|strong=\"H7927\"* who|strong=\"H1121\"* strengthened|strong=\"H2388\"* his|strong=\"H7760\"* hands|strong=\"H3027\"* to|strong=\"H5921\"* kill|strong=\"H2026\"* his|strong=\"H7760\"* brothers|strong=\"H1121\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H3605\"* men|strong=\"H1167\"* of|strong=\"H2022\"* Shechem|strong=\"H7927\"* set|strong=\"H7760\"* an|strong=\"H7760\"* ambush for|strong=\"H5921\"* him|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* tops|strong=\"H7218\"* of|strong=\"H2022\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*, and|strong=\"H7218\"* they|strong=\"H5921\"* robbed|strong=\"H1497\"* all|strong=\"H3605\"* who|strong=\"H3605\"* came|strong=\"H5674\"* along|strong=\"H5921\"* that|strong=\"H3605\"* way|strong=\"H1870\"* by|strong=\"H5921\"* them|strong=\"H5921\"*; and|strong=\"H7218\"* Abimelech was|strong=\"H7218\"* told|strong=\"H5046\"* about|strong=\"H5921\"* it|strong=\"H7760\"*." + }, + { + "verseNum": 26, + "text": "Gaal|strong=\"H1603\"* the|strong=\"H5674\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ebed|strong=\"H5651\"* came|strong=\"H5674\"* with|strong=\"H5674\"* his|strong=\"H5674\"* brothers|strong=\"H1121\"* and|strong=\"H1121\"* went|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H1121\"* Shechem|strong=\"H7927\"*; and|strong=\"H1121\"* the|strong=\"H5674\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Shechem|strong=\"H7927\"* put|strong=\"H5674\"* their trust in|strong=\"H1121\"* him|strong=\"H5674\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"H6213\"* went|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H6213\"* the|strong=\"H6213\"* field|strong=\"H7704\"*, harvested|strong=\"H1219\"* their|strong=\"H6213\"* vineyards|strong=\"H3754\"*, trod|strong=\"H1869\"* the|strong=\"H6213\"* grapes, celebrated|strong=\"H6213\"*, and|strong=\"H1004\"* went|strong=\"H3318\"* into|strong=\"H6213\"* the|strong=\"H6213\"* house|strong=\"H1004\"* of|strong=\"H1004\"* their|strong=\"H6213\"* god and|strong=\"H1004\"* ate and|strong=\"H1004\"* drank|strong=\"H8354\"*, and|strong=\"H1004\"* cursed|strong=\"H7043\"* Abimelech." + }, + { + "verseNum": 28, + "text": "Gaal|strong=\"H1603\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ebed|strong=\"H5651\"* said, “Who|strong=\"H4310\"* is|strong=\"H4310\"* Abimelech, and|strong=\"H1121\"* who|strong=\"H4310\"* is|strong=\"H4310\"* Shechem|strong=\"H7927\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* should|strong=\"H3588\"* serve|strong=\"H5647\"* him|strong=\"H5647\"*? Isn’t he|strong=\"H3588\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jerubbaal|strong=\"H3378\"*? Isn’t Zebul|strong=\"H2083\"* his|strong=\"H3588\"* officer|strong=\"H6496\"*? Serve|strong=\"H5647\"* the|strong=\"H3588\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Hamor|strong=\"H2544\"* the|strong=\"H3588\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Shechem|strong=\"H7927\"*, but|strong=\"H3588\"* why|strong=\"H4069\"* should|strong=\"H3588\"* we|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H5647\"*?" + }, + { + "verseNum": 29, + "text": "I|strong=\"H5414\"* wish|strong=\"H4310\"* that|strong=\"H5971\"* this|strong=\"H2088\"* people|strong=\"H5971\"* were|strong=\"H5971\"* under|strong=\"H3027\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*! Then|strong=\"H3318\"* I|strong=\"H5414\"* would|strong=\"H4310\"* remove|strong=\"H5493\"* Abimelech.” He|strong=\"H5414\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Abimelech, “Increase|strong=\"H7235\"* your|strong=\"H5414\"* army|strong=\"H6635\"* and|strong=\"H3027\"* come|strong=\"H3318\"* out|strong=\"H3318\"*!”" + }, + { + "verseNum": 30, + "text": "When|strong=\"H8085\"* Zebul|strong=\"H2083\"* the|strong=\"H8085\"* ruler|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H8085\"* city|strong=\"H5892\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Gaal|strong=\"H1603\"* the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ebed|strong=\"H5651\"*, his|strong=\"H8085\"* anger burned|strong=\"H2734\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"H5921\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* Abimelech craftily, saying, “Behold|strong=\"H2009\"*, Gaal|strong=\"H1603\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ebed|strong=\"H5651\"* and|strong=\"H1121\"* his|strong=\"H7971\"* brothers|strong=\"H1121\"* have|strong=\"H1121\"* come|strong=\"H5892\"* to|strong=\"H7971\"* Shechem|strong=\"H7927\"*; and|strong=\"H1121\"* behold|strong=\"H2009\"*, they|strong=\"H5921\"* incite the|strong=\"H5921\"* city|strong=\"H5892\"* against|strong=\"H5921\"* you|strong=\"H7971\"*." + }, + { + "verseNum": 32, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, go|strong=\"H6965\"* up|strong=\"H6965\"* by|strong=\"H6965\"* night|strong=\"H3915\"*, you|strong=\"H3915\"* and|strong=\"H6965\"* the|strong=\"H6965\"* people|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* with|strong=\"H5971\"* you|strong=\"H3915\"*, and|strong=\"H6965\"* lie in|strong=\"H5971\"* wait in|strong=\"H5971\"* the|strong=\"H6965\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 33, + "text": "It|strong=\"H1931\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* that|strong=\"H5971\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*, as|strong=\"H1961\"* soon|strong=\"H1242\"* as|strong=\"H1961\"* the|strong=\"H5921\"* sun|strong=\"H8121\"* is|strong=\"H1931\"* up|strong=\"H7925\"*, you|strong=\"H5921\"* shall|strong=\"H5971\"* rise|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H3027\"* rush|strong=\"H6584\"* on|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"*. Behold|strong=\"H2009\"*, when|strong=\"H1961\"* he|strong=\"H1931\"* and|strong=\"H3027\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H1931\"* are|strong=\"H5971\"* with|strong=\"H6213\"* him|strong=\"H5921\"* come|strong=\"H1961\"* out|strong=\"H3318\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, then|strong=\"H1961\"* may|strong=\"H1961\"* you|strong=\"H5921\"* do|strong=\"H6213\"* to|strong=\"H3318\"* them|strong=\"H5921\"* as|strong=\"H1961\"* you|strong=\"H5921\"* shall|strong=\"H5971\"* find|strong=\"H4672\"* occasion|strong=\"H4672\"*.”" + }, + { + "verseNum": 34, + "text": "Abimelech rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H5921\"*, by|strong=\"H5921\"* night|strong=\"H3915\"*, and|strong=\"H6965\"* they|strong=\"H5921\"* laid wait against|strong=\"H5921\"* Shechem|strong=\"H7927\"* in|strong=\"H5921\"* four companies|strong=\"H7218\"*." + }, + { + "verseNum": 35, + "text": "Gaal|strong=\"H1603\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ebed|strong=\"H5651\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* stood|strong=\"H5975\"* in|strong=\"H5892\"* the|strong=\"H4480\"* entrance|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H4480\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* the|strong=\"H4480\"* city|strong=\"H5892\"*. Abimelech rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H1121\"* the|strong=\"H4480\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* with|strong=\"H3318\"* him|strong=\"H3318\"*, from|strong=\"H4480\"* the|strong=\"H4480\"* ambush|strong=\"H3993\"*." + }, + { + "verseNum": 36, + "text": "When|strong=\"H7200\"* Gaal|strong=\"H1603\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* people|strong=\"H5971\"*, he|strong=\"H5971\"* said to|strong=\"H3381\"* Zebul|strong=\"H2083\"*, “Behold|strong=\"H2009\"*, people|strong=\"H5971\"* are|strong=\"H5971\"* coming|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H3381\"* the|strong=\"H7200\"* tops|strong=\"H7218\"* of|strong=\"H2022\"* the|strong=\"H7200\"* mountains|strong=\"H2022\"*.”" + }, + { + "verseNum": 37, + "text": "Gaal|strong=\"H1603\"* spoke|strong=\"H1696\"* again|strong=\"H5750\"* and|strong=\"H5971\"* said|strong=\"H1696\"*, “Behold|strong=\"H2009\"*, people|strong=\"H5971\"* are|strong=\"H5971\"* coming|strong=\"H3381\"* down|strong=\"H3381\"* by|strong=\"H1870\"* the|strong=\"H1870\"* middle|strong=\"H2872\"* of|strong=\"H7218\"* the|strong=\"H1870\"* land, and|strong=\"H5971\"* one company|strong=\"H7218\"* comes|strong=\"H3381\"* by|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H7218\"* the|strong=\"H1870\"* oak of|strong=\"H7218\"* Meonenim|strong=\"H6049\"*.”" + }, + { + "verseNum": 38, + "text": "Then|strong=\"H3318\"* Zebul|strong=\"H2083\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H3318\"*, “Now|strong=\"H6258\"* where|strong=\"H2088\"* is|strong=\"H2088\"* your|strong=\"H3588\"* mouth|strong=\"H6310\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* said|strong=\"H3318\"*, ‘Who|strong=\"H4310\"* is|strong=\"H2088\"* Abimelech, that|strong=\"H3588\"* we|strong=\"H3068\"* should|strong=\"H3588\"* serve|strong=\"H5647\"* him|strong=\"H3318\"*?’ Isn’t this|strong=\"H2088\"* the|strong=\"H3588\"* people|strong=\"H5971\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5971\"* despised|strong=\"H3988\"*? Please|strong=\"H4994\"* go|strong=\"H3318\"* out|strong=\"H3318\"* now|strong=\"H6258\"* and|strong=\"H5971\"* fight|strong=\"H3898\"* with|strong=\"H3898\"* them|strong=\"H3318\"*.”" + }, + { + "verseNum": 39, + "text": "Gaal|strong=\"H1603\"* went|strong=\"H3318\"* out|strong=\"H3318\"* before|strong=\"H6440\"* the|strong=\"H6440\"* men|strong=\"H1167\"* of|strong=\"H6440\"* Shechem|strong=\"H7927\"*, and|strong=\"H6440\"* fought|strong=\"H3898\"* with|strong=\"H3898\"* Abimelech." + }, + { + "verseNum": 40, + "text": "Abimelech chased|strong=\"H7291\"* him|strong=\"H6440\"*, and|strong=\"H6440\"* he|strong=\"H5704\"* fled|strong=\"H5127\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H6440\"* many|strong=\"H7227\"* fell|strong=\"H5307\"* wounded|strong=\"H2491\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H6440\"* entrance|strong=\"H6607\"* of|strong=\"H6440\"* the|strong=\"H6440\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 41, + "text": "Abimelech lived|strong=\"H3427\"* at|strong=\"H3427\"* Arumah; and|strong=\"H3427\"* Zebul|strong=\"H2083\"* drove|strong=\"H1644\"* out|strong=\"H1644\"* Gaal|strong=\"H1603\"* and|strong=\"H3427\"* his|strong=\"H3427\"* brothers, that|strong=\"H3427\"* they should not dwell|strong=\"H3427\"* in|strong=\"H3427\"* Shechem|strong=\"H7927\"*." + }, + { + "verseNum": 42, + "text": "On|strong=\"H1961\"* the|strong=\"H3318\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, the|strong=\"H3318\"* people|strong=\"H5971\"* went|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3318\"* field|strong=\"H7704\"*; and|strong=\"H5971\"* they|strong=\"H5971\"* told|strong=\"H5046\"* Abimelech." + }, + { + "verseNum": 43, + "text": "He|strong=\"H4480\"* took|strong=\"H3947\"* the|strong=\"H5921\"* people|strong=\"H5971\"* and|strong=\"H6965\"* divided|strong=\"H2673\"* them|strong=\"H5921\"* into|strong=\"H5921\"* three|strong=\"H7969\"* companies|strong=\"H7218\"*, and|strong=\"H6965\"* laid|strong=\"H3318\"* wait in|strong=\"H5921\"* the|strong=\"H5921\"* field|strong=\"H7704\"*; and|strong=\"H6965\"* he|strong=\"H4480\"* looked|strong=\"H7200\"*, and|strong=\"H6965\"* behold|strong=\"H2009\"*, the|strong=\"H5921\"* people|strong=\"H5971\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H5892\"* the|strong=\"H5921\"* city|strong=\"H5892\"*. So|strong=\"H4480\"*, he|strong=\"H4480\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* them|strong=\"H5921\"* and|strong=\"H6965\"* struck|strong=\"H5221\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 44, + "text": "Abimelech and|strong=\"H5892\"* the|strong=\"H3605\"* companies|strong=\"H7218\"* that|strong=\"H3605\"* were|strong=\"H7218\"* with|strong=\"H5973\"* him|strong=\"H5921\"* rushed|strong=\"H6584\"* forward|strong=\"H5221\"* and|strong=\"H5892\"* stood|strong=\"H5975\"* in|strong=\"H5921\"* the|strong=\"H3605\"* entrance|strong=\"H6607\"* of|strong=\"H5892\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"*; and|strong=\"H5892\"* the|strong=\"H3605\"* two|strong=\"H8147\"* companies|strong=\"H7218\"* rushed|strong=\"H6584\"* on|strong=\"H5921\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H7218\"* in|strong=\"H5921\"* the|strong=\"H3605\"* field|strong=\"H7704\"* and|strong=\"H5892\"* struck|strong=\"H5221\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 45, + "text": "Abimelech fought|strong=\"H3898\"* against|strong=\"H3898\"* the|strong=\"H3605\"* city|strong=\"H5892\"* all|strong=\"H3605\"* that|strong=\"H5971\"* day|strong=\"H3117\"*; and|strong=\"H3117\"* he|strong=\"H1931\"* took|strong=\"H3920\"* the|strong=\"H3605\"* city|strong=\"H5892\"* and|strong=\"H3117\"* killed|strong=\"H2026\"* the|strong=\"H3605\"* people|strong=\"H5971\"* in|strong=\"H3117\"* it|strong=\"H1931\"*. He|strong=\"H1931\"* beat down|strong=\"H5422\"* the|strong=\"H3605\"* city|strong=\"H5892\"* and|strong=\"H3117\"* sowed|strong=\"H2232\"* it|strong=\"H1931\"* with|strong=\"H3898\"* salt|strong=\"H4417\"*." + }, + { + "verseNum": 46, + "text": "When|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1167\"* of|strong=\"H1004\"* the|strong=\"H3605\"* tower|strong=\"H4026\"* of|strong=\"H1004\"* Shechem|strong=\"H7927\"* heard|strong=\"H8085\"* of|strong=\"H1004\"* it|strong=\"H3605\"*, they|strong=\"H3605\"* entered into the|strong=\"H3605\"* stronghold of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Elberith." + }, + { + "verseNum": 47, + "text": "Abimelech was|strong=\"H3605\"* told|strong=\"H5046\"* that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1167\"* of|strong=\"H1167\"* the|strong=\"H3605\"* tower|strong=\"H4026\"* of|strong=\"H1167\"* Shechem|strong=\"H7927\"* were|strong=\"H3605\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"*." + }, + { + "verseNum": 48, + "text": "Abimelech went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Mount|strong=\"H2022\"* Zalmon|strong=\"H6756\"*, he|strong=\"H1931\"* and|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H5921\"*; and|strong=\"H3027\"* Abimelech took|strong=\"H3947\"* an|strong=\"H6213\"* ax in|strong=\"H5921\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* a|strong=\"H3068\"* bough|strong=\"H7754\"* from|strong=\"H3772\"* the|strong=\"H3605\"* trees|strong=\"H6086\"*, and|strong=\"H3027\"* took|strong=\"H3947\"* it|strong=\"H7760\"* up|strong=\"H5927\"*, and|strong=\"H3027\"* laid|strong=\"H7760\"* it|strong=\"H7760\"* on|strong=\"H5921\"* his|strong=\"H3605\"* shoulder|strong=\"H7926\"*. Then|strong=\"H3947\"* he|strong=\"H1931\"* said to|strong=\"H5927\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H5921\"*, “What|strong=\"H4100\"* you|strong=\"H3605\"* have|strong=\"H5971\"* seen|strong=\"H7200\"* me|strong=\"H7200\"* do|strong=\"H6213\"*, make|strong=\"H6213\"* haste|strong=\"H4116\"*, and|strong=\"H3027\"* do|strong=\"H6213\"* as|strong=\"H3644\"* I|strong=\"H5921\"* have|strong=\"H5971\"* done|strong=\"H6213\"*!”" + }, + { + "verseNum": 49, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* likewise|strong=\"H1571\"* each|strong=\"H3605\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* his|strong=\"H3605\"* bough|strong=\"H7754\"*, followed|strong=\"H3212\"* Abimelech, and|strong=\"H3212\"* put|strong=\"H7760\"* them|strong=\"H5921\"* at|strong=\"H5921\"* the|strong=\"H3605\"* base of|strong=\"H5971\"* the|strong=\"H3605\"* stronghold, and|strong=\"H3212\"* set|strong=\"H7760\"* the|strong=\"H3605\"* stronghold on|strong=\"H5921\"* fire|strong=\"H3341\"* over|strong=\"H5921\"* them|strong=\"H5921\"*, so|strong=\"H1571\"* that|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H5971\"* the|strong=\"H3605\"* tower|strong=\"H4026\"* of|strong=\"H5971\"* Shechem|strong=\"H7927\"* died|strong=\"H4191\"* also|strong=\"H1571\"*, about|strong=\"H5921\"* a|strong=\"H3068\"* thousand men|strong=\"H5971\"* and|strong=\"H3212\"* women." + }, + { + "verseNum": 50, + "text": "Then Abimelech went|strong=\"H3212\"* to|strong=\"H3212\"* Thebez|strong=\"H8405\"* and|strong=\"H3212\"* encamped|strong=\"H2583\"* against|strong=\"H2583\"* Thebez|strong=\"H8405\"*, and|strong=\"H3212\"* took|strong=\"H3920\"* it|strong=\"H3920\"*." + }, + { + "verseNum": 51, + "text": "But|strong=\"H1961\"* there|strong=\"H8033\"* was|strong=\"H1961\"* a|strong=\"H3068\"* strong|strong=\"H5797\"* tower|strong=\"H4026\"* within|strong=\"H8432\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1167\"* and|strong=\"H5892\"* women of|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"* fled|strong=\"H5127\"* there|strong=\"H8033\"*, and|strong=\"H5892\"* shut|strong=\"H5462\"* themselves|strong=\"H5921\"* in|strong=\"H5921\"*, and|strong=\"H5892\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H3605\"* roof|strong=\"H1406\"* of|strong=\"H5892\"* the|strong=\"H3605\"* tower|strong=\"H4026\"*." + }, + { + "verseNum": 52, + "text": "Abimelech came|strong=\"H5066\"* to|strong=\"H5704\"* the|strong=\"H5704\"* tower|strong=\"H4026\"* and|strong=\"H5066\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* it|strong=\"H5704\"*, and|strong=\"H5066\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H5704\"* the|strong=\"H5704\"* door|strong=\"H6607\"* of|strong=\"H4026\"* the|strong=\"H5704\"* tower|strong=\"H4026\"* to|strong=\"H5704\"* burn|strong=\"H8313\"* it|strong=\"H5704\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 53, + "text": "A|strong=\"H3068\"* certain woman cast|strong=\"H7993\"* an|strong=\"H7993\"* upper|strong=\"H7393\"* millstone|strong=\"H7393\"* on|strong=\"H5921\"* Abimelech’s head|strong=\"H7218\"*, and|strong=\"H7218\"* broke|strong=\"H7533\"* his|strong=\"H5921\"* skull|strong=\"H1538\"*." + }, + { + "verseNum": 54, + "text": "Then|strong=\"H5375\"* he|strong=\"H7121\"* called|strong=\"H7121\"* hastily|strong=\"H4120\"* to|strong=\"H4191\"* the|strong=\"H5375\"* young|strong=\"H5288\"* man|strong=\"H5288\"*, his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"*, and|strong=\"H2719\"* said|strong=\"H7121\"* to|strong=\"H4191\"* him|strong=\"H7121\"*, “Draw|strong=\"H8025\"* your|strong=\"H5375\"* sword|strong=\"H2719\"* and|strong=\"H2719\"* kill|strong=\"H2026\"* me|strong=\"H7121\"*, that|strong=\"H5288\"* men|strong=\"H5288\"* not|strong=\"H6435\"* say of|strong=\"H3627\"* me|strong=\"H7121\"*, ‘A|strong=\"H3068\"* woman killed|strong=\"H2026\"* him|strong=\"H7121\"*.’ His|strong=\"H5375\"* young|strong=\"H5288\"* man|strong=\"H5288\"* thrust|strong=\"H1856\"* him|strong=\"H7121\"* through|strong=\"H1856\"*, and|strong=\"H2719\"* he|strong=\"H7121\"* died|strong=\"H4191\"*.”" + }, + { + "verseNum": 55, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* men|strong=\"H3478\"* of|strong=\"H4725\"* Israel|strong=\"H3478\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Abimelech was|strong=\"H3478\"* dead|strong=\"H4191\"*, they|strong=\"H3588\"* each departed|strong=\"H3212\"* to|strong=\"H3478\"* his|strong=\"H7200\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 56, + "text": "Thus God repaid|strong=\"H7725\"* the|strong=\"H6213\"* wickedness|strong=\"H7451\"* of|strong=\"H6213\"* Abimelech, which|strong=\"H7451\"* he|strong=\"H6213\"* did|strong=\"H6213\"* to|strong=\"H7725\"* his|strong=\"H7725\"* father in|strong=\"H6213\"* killing|strong=\"H2026\"* his|strong=\"H7725\"* seventy|strong=\"H7657\"* brothers;" + }, + { + "verseNum": 57, + "text": "and|strong=\"H1121\"* God repaid|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wickedness|strong=\"H7451\"* of|strong=\"H1121\"* the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Shechem|strong=\"H7927\"* on|strong=\"H7451\"* their|strong=\"H3605\"* heads|strong=\"H7218\"*; and|strong=\"H1121\"* the|strong=\"H3605\"* curse|strong=\"H7045\"* of|strong=\"H1121\"* Jotham|strong=\"H3147\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jerubbaal|strong=\"H3378\"* came|strong=\"H7725\"* on|strong=\"H7451\"* them|strong=\"H7725\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H6965\"* Abimelech, Tola|strong=\"H8439\"* the|strong=\"H6965\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Puah|strong=\"H6312\"*, the|strong=\"H6965\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Dodo|strong=\"H1734\"*, a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"*, arose|strong=\"H6965\"* to|strong=\"H3478\"* save|strong=\"H3467\"* Israel|strong=\"H3478\"*. He|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Shamir|strong=\"H8069\"* in|strong=\"H3427\"* the|strong=\"H6965\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1121\"* Ephraim." + }, + { + "verseNum": 2, + "text": "He|strong=\"H8141\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* twenty-three|strong=\"H6242\"* years|strong=\"H8141\"*, and|strong=\"H3478\"* died|strong=\"H4191\"*, and|strong=\"H3478\"* was|strong=\"H3478\"* buried|strong=\"H6912\"* in|strong=\"H8141\"* Shamir|strong=\"H8069\"*." + }, + { + "verseNum": 3, + "text": "After|strong=\"H6965\"* him Jair|strong=\"H2971\"*, the|strong=\"H6965\"* Gileadite|strong=\"H1569\"*, arose|strong=\"H6965\"*. He|strong=\"H8147\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* twenty-two|strong=\"H6242\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3117\"* had|strong=\"H1961\"* thirty|strong=\"H7970\"* sons|strong=\"H1121\"* who|strong=\"H1121\"* rode|strong=\"H7392\"* on|strong=\"H5921\"* thirty|strong=\"H7970\"* donkey colts|strong=\"H1121\"*. They|strong=\"H1992\"* had|strong=\"H1961\"* thirty|strong=\"H7970\"* cities|strong=\"H5895\"*, which|strong=\"H1992\"* are|strong=\"H3117\"* called|strong=\"H7121\"* Havvoth Jair to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, which|strong=\"H1992\"* are|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 5, + "text": "Jair|strong=\"H2971\"* died|strong=\"H4191\"*, and|strong=\"H4191\"* was buried|strong=\"H6912\"* in|strong=\"H4191\"* Kamon|strong=\"H7056\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* again|strong=\"H3254\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H1121\"* served|strong=\"H5647\"* the|strong=\"H6213\"* Baals|strong=\"H1168\"*, the|strong=\"H6213\"* Ashtaroth|strong=\"H6252\"*, the|strong=\"H6213\"* gods of|strong=\"H1121\"* Syria, the|strong=\"H6213\"* gods of|strong=\"H1121\"* Sidon|strong=\"H6721\"*, the|strong=\"H6213\"* gods of|strong=\"H1121\"* Moab|strong=\"H4124\"*, the|strong=\"H6213\"* gods of|strong=\"H1121\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* the|strong=\"H6213\"* gods of|strong=\"H1121\"* the|strong=\"H6213\"* Philistines|strong=\"H6430\"*. They|strong=\"H3068\"* abandoned|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* didn’t serve|strong=\"H5647\"* him|strong=\"H6213\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* sold|strong=\"H4376\"* them|strong=\"H3027\"* into|strong=\"H3027\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3068\"* Philistines|strong=\"H6430\"* and|strong=\"H1121\"* into|strong=\"H3027\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H8141\"* troubled and|strong=\"H1121\"* oppressed|strong=\"H7533\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* that|strong=\"H3605\"* year|strong=\"H8141\"*. For|strong=\"H1121\"* eighteen|strong=\"H8083\"* years|strong=\"H8141\"* they|strong=\"H8141\"* oppressed|strong=\"H7533\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* that|strong=\"H3605\"* were|strong=\"H3478\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* in|strong=\"H8141\"* the|strong=\"H3605\"* land|strong=\"H5676\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Amorites, which|strong=\"H1931\"* is|strong=\"H1931\"* in|strong=\"H8141\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H5674\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* passed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H5674\"* Jordan|strong=\"H3383\"* to|strong=\"H3478\"* fight|strong=\"H3898\"* also|strong=\"H1571\"* against|strong=\"H3898\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* against|strong=\"H3898\"* Benjamin|strong=\"H1144\"*, and|strong=\"H1121\"* against|strong=\"H3898\"* the|strong=\"H5674\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Ephraim, so|strong=\"H1571\"* that|strong=\"H3478\"* Israel|strong=\"H3478\"* was|strong=\"H3478\"* very|strong=\"H3966\"* distressed|strong=\"H3334\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* cried|strong=\"H2199\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, saying, “We|strong=\"H3588\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* you|strong=\"H3588\"*, even|strong=\"H3588\"* because|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* forsaken|strong=\"H5800\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H1121\"* have|strong=\"H3068\"* served|strong=\"H5647\"* the|strong=\"H3588\"* Baals|strong=\"H1168\"*.”" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “Didn’t I|strong=\"H4714\"* save you|strong=\"H3808\"* from|strong=\"H4480\"* the|strong=\"H3068\"* Egyptians|strong=\"H4714\"*, and|strong=\"H1121\"* from|strong=\"H4480\"* the|strong=\"H3068\"* Amorites, from|strong=\"H4480\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* from|strong=\"H4480\"* the|strong=\"H3068\"* Philistines|strong=\"H6430\"*?" + }, + { + "verseNum": 12, + "text": "The|strong=\"H3027\"* Sidonians|strong=\"H6722\"* also|strong=\"H3027\"*, and|strong=\"H3027\"* the|strong=\"H3027\"* Amalekites|strong=\"H6002\"*, and|strong=\"H3027\"* the|strong=\"H3027\"* Maonites|strong=\"H4584\"*, oppressed|strong=\"H3905\"* you|strong=\"H3027\"*; and|strong=\"H3027\"* you|strong=\"H3027\"* cried|strong=\"H6817\"* to|strong=\"H3027\"* me|strong=\"H3467\"*, and|strong=\"H3027\"* I|strong=\"H3027\"* saved|strong=\"H3467\"* you|strong=\"H3027\"* out|strong=\"H6817\"* of|strong=\"H3027\"* their|strong=\"H3027\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 13, + "text": "Yet|strong=\"H3254\"* you|strong=\"H3808\"* have|strong=\"H3808\"* forsaken|strong=\"H5800\"* me|strong=\"H3254\"* and|strong=\"H3254\"* served|strong=\"H5647\"* other gods. Therefore|strong=\"H3651\"* I|strong=\"H3651\"* will|strong=\"H3808\"* save|strong=\"H3467\"* you|strong=\"H3808\"* no|strong=\"H3808\"* more|strong=\"H3254\"*." + }, + { + "verseNum": 14, + "text": "Go|strong=\"H3212\"* and|strong=\"H3212\"* cry|strong=\"H2199\"* to|strong=\"H3212\"* the|strong=\"H3467\"* gods which|strong=\"H1992\"* you|strong=\"H3467\"* have|strong=\"H6256\"* chosen. Let|strong=\"H3212\"* them|strong=\"H1992\"* save|strong=\"H3467\"* you|strong=\"H3467\"* in|strong=\"H3212\"* the|strong=\"H3467\"* time|strong=\"H6256\"* of|strong=\"H6256\"* your|strong=\"H3467\"* distress|strong=\"H6869\"*!”" + }, + { + "verseNum": 15, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, “We|strong=\"H3117\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"*! Do|strong=\"H6213\"* to|strong=\"H3478\"* us|strong=\"H4994\"* whatever|strong=\"H3605\"* seems|strong=\"H3605\"* good|strong=\"H2896\"* to|strong=\"H3478\"* you|strong=\"H3605\"*; only|strong=\"H3605\"* deliver|strong=\"H5337\"* us|strong=\"H4994\"*, please|strong=\"H4994\"*, today|strong=\"H3117\"*.”" + }, + { + "verseNum": 16, + "text": "They|strong=\"H3068\"* put|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H5647\"* foreign|strong=\"H5236\"* gods from|strong=\"H5493\"* among|strong=\"H7130\"* them|strong=\"H5493\"* and|strong=\"H3478\"* served|strong=\"H5647\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3478\"* his|strong=\"H3068\"* soul|strong=\"H5315\"* was|strong=\"H3068\"* grieved|strong=\"H7114\"* for|strong=\"H3068\"* the|strong=\"H5647\"* misery|strong=\"H5999\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* were|strong=\"H3478\"* gathered|strong=\"H6817\"* together|strong=\"H6817\"* and|strong=\"H1121\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Gilead|strong=\"H1568\"*. The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* assembled|strong=\"H6817\"* themselves together|strong=\"H6817\"* and|strong=\"H1121\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Mizpah|strong=\"H4709\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3605\"* people|strong=\"H5971\"*, the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, said to|strong=\"H1961\"* one|strong=\"H3605\"* another|strong=\"H7453\"*, “Who|strong=\"H4310\"* is|strong=\"H4310\"* the|strong=\"H3605\"* man|strong=\"H1121\"* who|strong=\"H4310\"* will|strong=\"H4310\"* begin|strong=\"H2490\"* to|strong=\"H1961\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*? He|strong=\"H3605\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* head|strong=\"H7218\"* over|strong=\"H8269\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*.”" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* Jephthah|strong=\"H3316\"* the|strong=\"H3205\"* Gileadite|strong=\"H1569\"* was|strong=\"H1961\"* a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*. He|strong=\"H1931\"* was|strong=\"H1961\"* the|strong=\"H3205\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*. Gilead|strong=\"H1568\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Jephthah|strong=\"H3316\"*." + }, + { + "verseNum": 2, + "text": "Gilead|strong=\"H1568\"*’s wife bore|strong=\"H3205\"* him|strong=\"H3205\"* sons|strong=\"H1121\"*. When|strong=\"H3588\"* his|strong=\"H3588\"* wife’s sons|strong=\"H1121\"* grew|strong=\"H1431\"* up|strong=\"H1431\"*, they|strong=\"H3588\"* drove|strong=\"H1644\"* Jephthah|strong=\"H3316\"* out|strong=\"H1644\"* and|strong=\"H1121\"* said to|strong=\"H3205\"* him|strong=\"H3205\"*, “You|strong=\"H3588\"* will|strong=\"H1121\"* not|strong=\"H3808\"* inherit|strong=\"H5157\"* in|strong=\"H1004\"* our|strong=\"H3588\"* father|strong=\"H3205\"*’s house|strong=\"H1004\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1121\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* another|strong=\"H3808\"* woman|strong=\"H3205\"*.”" + }, + { + "verseNum": 3, + "text": "Then|strong=\"H3318\"* Jephthah|strong=\"H3316\"* fled|strong=\"H1272\"* from|strong=\"H3318\"* his|strong=\"H6440\"* brothers and|strong=\"H6440\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H3427\"* Tob|strong=\"H2897\"*. Outlaws joined|strong=\"H3950\"* up|strong=\"H3318\"* with|strong=\"H5973\"* Jephthah|strong=\"H3316\"*, and|strong=\"H6440\"* they|strong=\"H6440\"* went|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H5973\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 4, + "text": "After|strong=\"H1961\"* a|strong=\"H3068\"* while|strong=\"H1961\"*, the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* made|strong=\"H1961\"* war|strong=\"H3898\"* against|strong=\"H5973\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H1961\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* made|strong=\"H1961\"* war|strong=\"H3898\"* against|strong=\"H5973\"* Israel|strong=\"H3478\"*, the|strong=\"H3947\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"* went|strong=\"H3212\"* to|strong=\"H3478\"* get|strong=\"H3947\"* Jephthah|strong=\"H3316\"* out|strong=\"H3947\"* of|strong=\"H1121\"* the|strong=\"H3947\"* land of|strong=\"H1121\"* Tob|strong=\"H2897\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H5983\"* said to|strong=\"H3212\"* Jephthah|strong=\"H3316\"*, “Come|strong=\"H1961\"* and|strong=\"H1121\"* be|strong=\"H1961\"* our|strong=\"H1961\"* chief|strong=\"H7101\"*, that|strong=\"H1121\"* we|strong=\"H3068\"* may|strong=\"H1961\"* fight|strong=\"H3898\"* with|strong=\"H3898\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*.”" + }, + { + "verseNum": 7, + "text": "Jephthah|strong=\"H3316\"* said to|strong=\"H1004\"* the|strong=\"H6258\"* elders|strong=\"H2205\"* of|strong=\"H1004\"* Gilead|strong=\"H1568\"*, “Didn’t you|strong=\"H3808\"* hate|strong=\"H8130\"* me|strong=\"H8130\"*, and|strong=\"H1004\"* drive|strong=\"H1644\"* me|strong=\"H8130\"* out|strong=\"H1644\"* of|strong=\"H1004\"* my|strong=\"H6258\"* father’s house|strong=\"H1004\"*? Why|strong=\"H4069\"* have|strong=\"H6862\"* you|strong=\"H3808\"* come to|strong=\"H1004\"* me|strong=\"H8130\"* now|strong=\"H6258\"* when you|strong=\"H3808\"* are|strong=\"H1004\"* in|strong=\"H1004\"* distress|strong=\"H6862\"*?”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"* said|strong=\"H3651\"* to|strong=\"H1980\"* Jephthah|strong=\"H3316\"*, “Therefore|strong=\"H3651\"* we|strong=\"H3068\"* have|strong=\"H1961\"* turned|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H1980\"* you|strong=\"H3605\"* now|strong=\"H6258\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H1961\"* go|strong=\"H1980\"* with|strong=\"H5973\"* us|strong=\"H7725\"* and|strong=\"H1121\"* fight|strong=\"H3898\"* with|strong=\"H5973\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*. You|strong=\"H3605\"* will|strong=\"H1961\"* be|strong=\"H1961\"* our|strong=\"H3605\"* head|strong=\"H7218\"* over|strong=\"H7218\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*.”" + }, + { + "verseNum": 9, + "text": "Jephthah|strong=\"H3316\"* said to|strong=\"H7725\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, “If|strong=\"H1961\"* you|strong=\"H5414\"* bring|strong=\"H7725\"* me|strong=\"H5414\"* home|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* fight|strong=\"H3898\"* with|strong=\"H3068\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* delivers|strong=\"H5414\"* them|strong=\"H5414\"* before|strong=\"H6440\"* me|strong=\"H5414\"*, will|strong=\"H3068\"* I|strong=\"H5414\"* be|strong=\"H1961\"* your|strong=\"H3068\"* head|strong=\"H7218\"*?”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H8085\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* Gilead|strong=\"H1568\"* said|strong=\"H1697\"* to|strong=\"H3068\"* Jephthah|strong=\"H3316\"*, “Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* witness|strong=\"H8085\"* between us|strong=\"H6213\"*. Surely|strong=\"H6213\"* we|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"* what|strong=\"H1697\"* you|strong=\"H6213\"* say|strong=\"H1697\"*.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H1696\"* Jephthah|strong=\"H3316\"* went|strong=\"H3212\"* with|strong=\"H5973\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* Gilead|strong=\"H1568\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"* made|strong=\"H7760\"* him|strong=\"H6440\"* head|strong=\"H7218\"* and|strong=\"H3068\"* chief|strong=\"H7218\"* over|strong=\"H5921\"* them|strong=\"H5921\"*. Jephthah|strong=\"H3316\"* spoke|strong=\"H1696\"* all|strong=\"H3605\"* his|strong=\"H3605\"* words|strong=\"H1697\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* in|strong=\"H5921\"* Mizpah|strong=\"H4709\"*." + }, + { + "verseNum": 12, + "text": "Jephthah|strong=\"H3316\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, saying, “What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3588\"* have|strong=\"H1121\"* to|strong=\"H7971\"* do|strong=\"H4100\"* with|strong=\"H3898\"* me|strong=\"H7971\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1121\"* come|strong=\"H7971\"* to|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H7971\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* my|strong=\"H7971\"* land?”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* answered|strong=\"H7725\"* the|strong=\"H3588\"* messengers|strong=\"H4397\"* of|strong=\"H1121\"* Jephthah|strong=\"H3316\"*, “Because|strong=\"H3588\"* Israel|strong=\"H3478\"* took|strong=\"H3947\"* away|strong=\"H7725\"* my|strong=\"H3947\"* land when|strong=\"H3588\"* he|strong=\"H3588\"* came|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H3947\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, from|strong=\"H7725\"* the|strong=\"H3588\"* Arnon even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3588\"* Jabbok|strong=\"H2999\"*, and|strong=\"H1121\"* to|strong=\"H5704\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* restore|strong=\"H7725\"* that|strong=\"H3588\"* territory again|strong=\"H7725\"* peaceably|strong=\"H7965\"*.”" + }, + { + "verseNum": 14, + "text": "Jephthah|strong=\"H3316\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* again|strong=\"H5750\"* to|strong=\"H7971\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H7971\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"H1121\"* he|strong=\"H3808\"* said to|strong=\"H3478\"* him|strong=\"H3947\"*, “Jephthah|strong=\"H3316\"* says|strong=\"H3541\"*: Israel|strong=\"H3478\"* didn’t take|strong=\"H3947\"* away|strong=\"H3947\"* the|strong=\"H3947\"* land of|strong=\"H1121\"* Moab|strong=\"H4124\"*, nor|strong=\"H3808\"* the|strong=\"H3947\"* land of|strong=\"H1121\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*;" + }, + { + "verseNum": 16, + "text": "but|strong=\"H3588\"* when|strong=\"H3588\"* they|strong=\"H3588\"* came|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* Egypt|strong=\"H4714\"*, and|strong=\"H3478\"* Israel|strong=\"H3478\"* went|strong=\"H3212\"* through|strong=\"H3212\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"* to|strong=\"H5704\"* the|strong=\"H3588\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*, and|strong=\"H3478\"* came|strong=\"H5927\"* to|strong=\"H5704\"* Kadesh|strong=\"H6946\"*," + }, + { + "verseNum": 17, + "text": "then|strong=\"H7971\"* Israel|strong=\"H3478\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H3478\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Edom, saying, ‘Please|strong=\"H4994\"* let|strong=\"H7971\"* me|strong=\"H4994\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* your|strong=\"H8085\"* land;’ but|strong=\"H3808\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Edom didn’t listen|strong=\"H8085\"*. In|strong=\"H3427\"* the|strong=\"H8085\"* same way|strong=\"H7971\"*, he|strong=\"H3808\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"*, but|strong=\"H3808\"* he|strong=\"H3808\"* refused|strong=\"H3808\"*; so|strong=\"H7971\"* Israel|strong=\"H3478\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* Kadesh|strong=\"H6946\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H3588\"* they|strong=\"H3588\"* went|strong=\"H3212\"* through|strong=\"H3212\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"*, and|strong=\"H3212\"* went|strong=\"H3212\"* around|strong=\"H5437\"* the|strong=\"H3588\"* land|strong=\"H1366\"* of|strong=\"H1366\"* Edom, and|strong=\"H3212\"* the|strong=\"H3588\"* land|strong=\"H1366\"* of|strong=\"H1366\"* Moab|strong=\"H4124\"*, and|strong=\"H3212\"* came|strong=\"H3212\"* by|strong=\"H4124\"* the|strong=\"H3588\"* east|strong=\"H4217\"* side|strong=\"H5676\"* of|strong=\"H1366\"* the|strong=\"H3588\"* land|strong=\"H1366\"* of|strong=\"H1366\"* Moab|strong=\"H4124\"*, and|strong=\"H3212\"* they|strong=\"H3588\"* encamped|strong=\"H2583\"* on|strong=\"H3212\"* the|strong=\"H3588\"* other|strong=\"H5676\"* side|strong=\"H5676\"* of|strong=\"H1366\"* the|strong=\"H3588\"* Arnon; but|strong=\"H3588\"* they|strong=\"H3588\"* didn’t come|strong=\"H3212\"* within the|strong=\"H3588\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Moab|strong=\"H4124\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* Arnon was|strong=\"H1366\"* the|strong=\"H3588\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 19, + "text": "Israel|strong=\"H3478\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H5704\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5704\"* Amorites, the|strong=\"H5704\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Heshbon|strong=\"H2809\"*; and|strong=\"H3478\"* Israel|strong=\"H3478\"* said to|strong=\"H5704\"* him|strong=\"H7971\"*, ‘Please|strong=\"H4994\"* let|strong=\"H7971\"* us|strong=\"H4994\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* your|strong=\"H7971\"* land|strong=\"H4725\"* to|strong=\"H5704\"* my|strong=\"H7971\"* place|strong=\"H4725\"*.’" + }, + { + "verseNum": 20, + "text": "But|strong=\"H3808\"* Sihon|strong=\"H5511\"* didn’t trust Israel|strong=\"H3478\"* to|strong=\"H3478\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* his|strong=\"H3605\"* border|strong=\"H1366\"*; but|strong=\"H3808\"* Sihon|strong=\"H5511\"* gathered|strong=\"H3478\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"* together|strong=\"H5973\"*, and|strong=\"H3478\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Jahaz|strong=\"H3096\"*, and|strong=\"H3478\"* fought|strong=\"H3898\"* against|strong=\"H5973\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, delivered|strong=\"H5414\"* Sihon|strong=\"H5511\"* and|strong=\"H3478\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"* into|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* they|strong=\"H3068\"* struck|strong=\"H5221\"* them|strong=\"H5414\"*. So|strong=\"H5414\"* Israel|strong=\"H3478\"* possessed|strong=\"H3423\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* the|strong=\"H3605\"* Amorites, the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* that|strong=\"H5971\"* country." + }, + { + "verseNum": 22, + "text": "They|strong=\"H5704\"* possessed|strong=\"H3423\"* all|strong=\"H3605\"* the|strong=\"H3605\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H3605\"* Amorites, from|strong=\"H4480\"* the|strong=\"H3605\"* Arnon even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* Jabbok|strong=\"H2999\"*, and|strong=\"H4057\"* from|strong=\"H4480\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 23, + "text": "So|strong=\"H6258\"* now|strong=\"H6258\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, has|strong=\"H3068\"* dispossessed|strong=\"H3423\"* the|strong=\"H6440\"* Amorites from|strong=\"H6440\"* before|strong=\"H6440\"* his|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* should|strong=\"H3068\"* you|strong=\"H6440\"* possess|strong=\"H3423\"* them|strong=\"H6440\"*?" + }, + { + "verseNum": 24, + "text": "Won’t you|strong=\"H6440\"* possess|strong=\"H3423\"* that|strong=\"H3605\"* which|strong=\"H3068\"* Chemosh|strong=\"H3645\"* your|strong=\"H3068\"* god|strong=\"H3068\"* gives|strong=\"H3423\"* you|strong=\"H6440\"* to|strong=\"H3068\"* possess|strong=\"H3423\"*? So|strong=\"H3808\"* whoever|strong=\"H3605\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* dispossessed|strong=\"H3423\"* from|strong=\"H6440\"* before|strong=\"H6440\"* us|strong=\"H6440\"*, them|strong=\"H6440\"* will|strong=\"H3068\"* we|strong=\"H3068\"* possess|strong=\"H3423\"*." + }, + { + "verseNum": 25, + "text": "Now|strong=\"H6258\"* are|strong=\"H1121\"* you|strong=\"H5973\"* anything better|strong=\"H2896\"* than|strong=\"H2896\"* Balak|strong=\"H1111\"* the|strong=\"H5973\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zippor|strong=\"H6834\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*? Did|strong=\"H3478\"* he|strong=\"H3478\"* ever|strong=\"H7378\"* strive|strong=\"H7378\"* against|strong=\"H5973\"* Israel|strong=\"H3478\"*, or|strong=\"H1121\"* did|strong=\"H3478\"* he|strong=\"H3478\"* ever|strong=\"H7378\"* fight|strong=\"H3898\"* against|strong=\"H5973\"* them|strong=\"H1121\"*?" + }, + { + "verseNum": 26, + "text": "Israel|strong=\"H3478\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Heshbon|strong=\"H2809\"* and|strong=\"H3967\"* its|strong=\"H3605\"* towns|strong=\"H1323\"*, and|strong=\"H3967\"* in|strong=\"H3427\"* Aroer|strong=\"H6177\"* and|strong=\"H3967\"* its|strong=\"H3605\"* towns|strong=\"H1323\"*, and|strong=\"H3967\"* in|strong=\"H3427\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* that|strong=\"H3605\"* are|strong=\"H3478\"* along|strong=\"H5921\"* the|strong=\"H3605\"* side|strong=\"H3027\"* of|strong=\"H1323\"* the|strong=\"H3605\"* Arnon for|strong=\"H5921\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"*! Why|strong=\"H4069\"* didn’t you|strong=\"H3605\"* recover|strong=\"H5337\"* them|strong=\"H5921\"* within|strong=\"H5921\"* that|strong=\"H3605\"* time|strong=\"H6256\"*?" + }, + { + "verseNum": 27, + "text": "Therefore|strong=\"H3068\"* I|strong=\"H3117\"* have|strong=\"H3068\"* not|strong=\"H3808\"* sinned|strong=\"H2398\"* against|strong=\"H3898\"* you|strong=\"H3117\"*, but|strong=\"H3808\"* you|strong=\"H3117\"* do|strong=\"H6213\"* me|strong=\"H6213\"* wrong|strong=\"H7451\"* to|strong=\"H3478\"* war|strong=\"H3898\"* against|strong=\"H3898\"* me|strong=\"H6213\"*. May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* the|strong=\"H6213\"* Judge|strong=\"H8199\"* be|strong=\"H3808\"* judge|strong=\"H8199\"* today|strong=\"H3117\"* between|strong=\"H8199\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*.”" + }, + { + "verseNum": 28, + "text": "However|strong=\"H8085\"*, the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* didn’t listen|strong=\"H8085\"* to|strong=\"H7971\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Jephthah|strong=\"H3316\"* which|strong=\"H1697\"* he|strong=\"H3808\"* sent|strong=\"H7971\"* him|strong=\"H7971\"*." + }, + { + "verseNum": 29, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* came|strong=\"H1961\"* on|strong=\"H5921\"* Jephthah|strong=\"H3316\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* passed|strong=\"H5674\"* over|strong=\"H5921\"* Gilead|strong=\"H1568\"* and|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, and|strong=\"H1121\"* passed|strong=\"H5674\"* over|strong=\"H5921\"* Mizpah|strong=\"H4708\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, and|strong=\"H1121\"* from|strong=\"H5921\"* Mizpah|strong=\"H4708\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"* he|strong=\"H3068\"* passed|strong=\"H5674\"* over|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 30, + "text": "Jephthah|strong=\"H3316\"* vowed|strong=\"H5087\"* a|strong=\"H3068\"* vow|strong=\"H5088\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* said, “If|strong=\"H1121\"* you|strong=\"H5414\"* will|strong=\"H3068\"* indeed|strong=\"H5414\"* deliver|strong=\"H5414\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* into|strong=\"H3027\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*," + }, + { + "verseNum": 31, + "text": "then|strong=\"H1961\"* it|strong=\"H7725\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, that|strong=\"H3068\"* whatever comes|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3068\"* doors|strong=\"H1817\"* of|strong=\"H1121\"* my|strong=\"H3068\"* house|strong=\"H1004\"* to|strong=\"H7725\"* meet|strong=\"H7125\"* me|strong=\"H7725\"* when|strong=\"H1961\"* I|strong=\"H1121\"* return|strong=\"H7725\"* in|strong=\"H3068\"* peace|strong=\"H7965\"* from|strong=\"H7725\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, it|strong=\"H7725\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s, and|strong=\"H1121\"* I|strong=\"H1121\"* will|strong=\"H3068\"* offer|strong=\"H5927\"* it|strong=\"H7725\"* up|strong=\"H5927\"* for|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*.”" + }, + { + "verseNum": 32, + "text": "So|strong=\"H5414\"* Jephthah|strong=\"H3316\"* passed|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H3068\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* to|strong=\"H3068\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* them|strong=\"H5414\"*; and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H5704\"* struck|strong=\"H5221\"* them|strong=\"H6440\"* from|strong=\"H6440\"* Aroer|strong=\"H6177\"* until|strong=\"H5704\"* you|strong=\"H6440\"* come|strong=\"H3478\"* to|strong=\"H5704\"* Minnith|strong=\"H4511\"*, even|strong=\"H5704\"* twenty|strong=\"H6242\"* cities|strong=\"H5892\"*, and|strong=\"H1121\"* to|strong=\"H5704\"* Abelcheramim, with|strong=\"H6440\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* slaughter|strong=\"H4347\"*. So|strong=\"H3966\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* were|strong=\"H3478\"* subdued|strong=\"H3665\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 34, + "text": "Jephthah|strong=\"H3316\"* came|strong=\"H3318\"* to|strong=\"H3318\"* Mizpah|strong=\"H4709\"* to|strong=\"H3318\"* his|strong=\"H4480\"* house|strong=\"H1004\"*; and|strong=\"H1121\"* behold|strong=\"H2009\"*, his|strong=\"H4480\"* daughter|strong=\"H1323\"* came|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* him|strong=\"H3318\"* with|strong=\"H1004\"* tambourines|strong=\"H8596\"* and|strong=\"H1121\"* with|strong=\"H1004\"* dances|strong=\"H4246\"*. She|strong=\"H1931\"* was|strong=\"H1931\"* his|strong=\"H4480\"* only|strong=\"H7535\"* child|strong=\"H1121\"*. Besides|strong=\"H4480\"* her|strong=\"H3318\"* he|strong=\"H1931\"* had|strong=\"H1121\"* neither|strong=\"H4480\"* son|strong=\"H1121\"* nor|strong=\"H1121\"* daughter|strong=\"H1323\"*." + }, + { + "verseNum": 35, + "text": "When|strong=\"H1961\"* he|strong=\"H3068\"* saw|strong=\"H7200\"* her|strong=\"H7200\"*, he|strong=\"H3068\"* tore|strong=\"H7167\"* his|strong=\"H3068\"* clothes, and|strong=\"H3068\"* said|strong=\"H6310\"*, “Alas, my|strong=\"H3068\"* daughter|strong=\"H1323\"*! You|strong=\"H7725\"* have|strong=\"H1961\"* brought|strong=\"H7725\"* me|strong=\"H7725\"* very|strong=\"H3766\"* low|strong=\"H3766\"*, and|strong=\"H3068\"* you|strong=\"H7725\"* are|strong=\"H3068\"* one|strong=\"H3808\"* of|strong=\"H3068\"* those|strong=\"H1961\"* who|strong=\"H3068\"* trouble|strong=\"H5916\"* me|strong=\"H7725\"*; for|strong=\"H3068\"* I|strong=\"H3201\"* have|strong=\"H1961\"* opened|strong=\"H6475\"* my|strong=\"H3068\"* mouth|strong=\"H6310\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* I|strong=\"H3201\"* can|strong=\"H3201\"*’t go|strong=\"H7725\"* back|strong=\"H7725\"*.”" + }, + { + "verseNum": 36, + "text": "She said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H6213\"*, “My|strong=\"H3068\"* father|strong=\"H1121\"*, you|strong=\"H6213\"* have|strong=\"H3068\"* opened|strong=\"H6475\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*; do|strong=\"H6213\"* to|strong=\"H3318\"* me|strong=\"H6213\"* according|strong=\"H6310\"* to|strong=\"H3318\"* that|strong=\"H3068\"* which|strong=\"H3068\"* has|strong=\"H3068\"* proceeded|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"*, because|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* taken|strong=\"H6213\"* vengeance|strong=\"H5360\"* for|strong=\"H6213\"* you|strong=\"H6213\"* on|strong=\"H3068\"* your|strong=\"H3068\"* enemies, even|strong=\"H6213\"* on|strong=\"H3068\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*.”" + }, + { + "verseNum": 37, + "text": "Then|strong=\"H2088\"* she|strong=\"H5921\"* said|strong=\"H1697\"* to|strong=\"H3381\"* her|strong=\"H5921\"* father, “Let|strong=\"H7503\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* be|strong=\"H1697\"* done|strong=\"H6213\"* for|strong=\"H5921\"* me|strong=\"H5921\"*. Leave|strong=\"H4480\"* me|strong=\"H5921\"* alone|strong=\"H7503\"* two|strong=\"H8147\"* months|strong=\"H2320\"*, that|strong=\"H1697\"* I|strong=\"H5921\"* may|strong=\"H6213\"* depart|strong=\"H3212\"* and|strong=\"H3212\"* go|strong=\"H3212\"* down|strong=\"H3381\"* on|strong=\"H5921\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"*, and|strong=\"H3212\"* bewail|strong=\"H1058\"* my|strong=\"H5921\"* virginity|strong=\"H1331\"*, I|strong=\"H5921\"* and|strong=\"H3212\"* my|strong=\"H5921\"* companions.”" + }, + { + "verseNum": 38, + "text": "He|strong=\"H1931\"* said, “Go|strong=\"H3212\"*.” He|strong=\"H1931\"* sent|strong=\"H7971\"* her|strong=\"H7971\"* away|strong=\"H7971\"* for|strong=\"H5921\"* two|strong=\"H8147\"* months|strong=\"H2320\"*; and|strong=\"H7971\"* she|strong=\"H1931\"* departed|strong=\"H3212\"*, she|strong=\"H1931\"* and|strong=\"H7971\"* her|strong=\"H7971\"* companions|strong=\"H7464\"*, and|strong=\"H7971\"* mourned|strong=\"H1058\"* her|strong=\"H7971\"* virginity|strong=\"H1331\"* on|strong=\"H5921\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"*." + }, + { + "verseNum": 39, + "text": "At|strong=\"H3478\"* the|strong=\"H6213\"* end|strong=\"H7093\"* of|strong=\"H7093\"* two|strong=\"H8147\"* months|strong=\"H2320\"*, she|strong=\"H1931\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* her|strong=\"H7725\"* father, who|strong=\"H1931\"* did|strong=\"H6213\"* with|strong=\"H6213\"* her|strong=\"H7725\"* according to|strong=\"H7725\"* his|strong=\"H7725\"* vow|strong=\"H5088\"* which|strong=\"H1931\"* he|strong=\"H1931\"* had|strong=\"H1961\"* vowed|strong=\"H5087\"*. She|strong=\"H1931\"* was|strong=\"H1961\"* a|strong=\"H3068\"* virgin. It|strong=\"H1931\"* became|strong=\"H1961\"* a|strong=\"H3068\"* custom|strong=\"H2706\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*" + }, + { + "verseNum": 40, + "text": "that|strong=\"H3117\"* the|strong=\"H3117\"* daughters|strong=\"H1323\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"* went|strong=\"H3212\"* yearly|strong=\"H3117\"* to|strong=\"H3478\"* celebrate the|strong=\"H3117\"* daughter|strong=\"H1323\"* of|strong=\"H3117\"* Jephthah|strong=\"H3316\"* the|strong=\"H3117\"* Gileadite|strong=\"H1569\"* four days|strong=\"H3117\"* in|strong=\"H8141\"* a|strong=\"H3068\"* year|strong=\"H8141\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5921\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim were|strong=\"H1121\"* gathered|strong=\"H6817\"* together|strong=\"H5973\"*, and|strong=\"H1121\"* passed|strong=\"H5674\"* northward|strong=\"H6828\"*; and|strong=\"H1121\"* they|strong=\"H3808\"* said|strong=\"H7121\"* to|strong=\"H3212\"* Jephthah|strong=\"H3316\"*, “Why|strong=\"H4069\"* did|strong=\"H3808\"* you|strong=\"H5921\"* pass|strong=\"H5674\"* over|strong=\"H5921\"* to|strong=\"H3212\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* didn’t call|strong=\"H7121\"* us|strong=\"H5921\"* to|strong=\"H3212\"* go|strong=\"H3212\"* with|strong=\"H5973\"* you|strong=\"H5921\"*? We will|strong=\"H1121\"* burn|strong=\"H8313\"* your|strong=\"H5921\"* house|strong=\"H1004\"* around|strong=\"H5921\"* you|strong=\"H5921\"* with|strong=\"H5973\"* fire!”" + }, + { + "verseNum": 2, + "text": "Jephthah|strong=\"H3316\"* said to|strong=\"H1961\"* them|strong=\"H3027\"*, “I|strong=\"H3808\"* and|strong=\"H1121\"* my|strong=\"H1961\"* people|strong=\"H5971\"* were|strong=\"H1961\"* at|strong=\"H1961\"* great|strong=\"H3966\"* strife|strong=\"H7379\"* with|strong=\"H5971\"* the|strong=\"H3027\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*; and|strong=\"H1121\"* when|strong=\"H1961\"* I|strong=\"H3808\"* called|strong=\"H2199\"* you|strong=\"H3808\"*, you|strong=\"H3808\"* didn’t save|strong=\"H3467\"* me|strong=\"H3467\"* out|strong=\"H2199\"* of|strong=\"H1121\"* their|strong=\"H1961\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"H3588\"* I|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* you|strong=\"H3588\"* didn’t save|strong=\"H3467\"* me|strong=\"H5414\"*, I|strong=\"H3588\"* put|strong=\"H5414\"* my|strong=\"H5414\"* life|strong=\"H5315\"* in|strong=\"H3068\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*, and|strong=\"H1121\"* passed|strong=\"H5674\"* over|strong=\"H5674\"* against|strong=\"H3898\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5927\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*. Why|strong=\"H4100\"* then|strong=\"H2088\"* have|strong=\"H3068\"* you|strong=\"H3588\"* come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* me|strong=\"H5414\"* today|strong=\"H3117\"*, to|strong=\"H3068\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* me|strong=\"H5414\"*?”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H3588\"* Jephthah|strong=\"H3316\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H8432\"* Gilead|strong=\"H1568\"*, and|strong=\"H4519\"* fought|strong=\"H3898\"* with|strong=\"H3898\"* Ephraim. The|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H8432\"* Gilead|strong=\"H1568\"* struck|strong=\"H5221\"* Ephraim, because|strong=\"H3588\"* they|strong=\"H3588\"* said, “You|strong=\"H3588\"* are fugitives|strong=\"H6412\"* of|strong=\"H8432\"* Ephraim, you|strong=\"H3588\"* Gileadites|strong=\"H1568\"*, in|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* Ephraim, and|strong=\"H4519\"* in|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* Manasseh|strong=\"H4519\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H3588\"* Gileadites|strong=\"H1568\"* took|strong=\"H3920\"* the|strong=\"H3588\"* fords|strong=\"H4569\"* of|strong=\"H3808\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"* against the|strong=\"H3588\"* Ephraimites. Whenever|strong=\"H1961\"* a|strong=\"H3068\"* fugitive|strong=\"H6412\"* of|strong=\"H3808\"* Ephraim said, “Let|strong=\"H3808\"* me|strong=\"H5674\"* go|strong=\"H5674\"* over|strong=\"H5674\"*,” the|strong=\"H3588\"* men of|strong=\"H3808\"* Gilead|strong=\"H1568\"* said to|strong=\"H1961\"* him|strong=\"H3588\"*, “Are|strong=\"H1961\"* you|strong=\"H3588\"* an|strong=\"H1961\"* Ephraimite?” If|strong=\"H3588\"* he|strong=\"H3588\"* said, “No|strong=\"H3808\"*;”" + }, + { + "verseNum": 6, + "text": "then|strong=\"H1696\"* they|strong=\"H3651\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H1931\"*, “Now|strong=\"H4994\"* say|strong=\"H1696\"* ‘Shibboleth|strong=\"H7641\"*;’” and|strong=\"H8147\"* he|strong=\"H1931\"* said|strong=\"H1696\"* “Sibboleth|strong=\"H5451\"*”; for|strong=\"H3559\"* he|strong=\"H1931\"* couldn’t manage to|strong=\"H1696\"* pronounce|strong=\"H1696\"* it|strong=\"H1931\"* correctly|strong=\"H3651\"*, then|strong=\"H1696\"* they|strong=\"H3651\"* seized|strong=\"H5307\"* him|strong=\"H1931\"* and|strong=\"H8147\"* killed|strong=\"H7819\"* him|strong=\"H1931\"* at|strong=\"H3383\"* the|strong=\"H7819\"* fords|strong=\"H4569\"* of|strong=\"H6256\"* the|strong=\"H7819\"* Jordan|strong=\"H3383\"*. At|strong=\"H3383\"* that|strong=\"H1931\"* time|strong=\"H6256\"*, forty-two|strong=\"H8147\"* thousand of|strong=\"H6256\"* Ephraim fell|strong=\"H5307\"*." + }, + { + "verseNum": 7, + "text": "Jephthah|strong=\"H3316\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* six|strong=\"H8337\"* years|strong=\"H8141\"*. Then|strong=\"H3478\"* Jephthah|strong=\"H3316\"* the|strong=\"H8199\"* Gileadite|strong=\"H1569\"* died|strong=\"H4191\"*, and|strong=\"H3478\"* was|strong=\"H3478\"* buried|strong=\"H6912\"* in|strong=\"H8141\"* the|strong=\"H8199\"* cities|strong=\"H5892\"* of|strong=\"H8141\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 8, + "text": "After him Ibzan|strong=\"H8199\"* of|strong=\"H8199\"* Bethlehem|strong=\"H1035\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H4480\"* had|strong=\"H1961\"* thirty|strong=\"H7970\"* sons|strong=\"H1121\"*. He|strong=\"H4480\"* sent|strong=\"H7971\"* his|strong=\"H7971\"* thirty|strong=\"H7970\"* daughters|strong=\"H1323\"* outside|strong=\"H2351\"* his|strong=\"H7971\"* clan, and|strong=\"H1121\"* he|strong=\"H4480\"* brought|strong=\"H3478\"* in|strong=\"H8141\"* thirty|strong=\"H7970\"* daughters|strong=\"H1323\"* from|strong=\"H4480\"* outside|strong=\"H2351\"* his|strong=\"H7971\"* clan for|strong=\"H7971\"* his|strong=\"H7971\"* sons|strong=\"H1121\"*. He|strong=\"H4480\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 10, + "text": "Ibzan died|strong=\"H4191\"*, and|strong=\"H4191\"* was buried|strong=\"H6912\"* at|strong=\"H4191\"* Bethlehem|strong=\"H1035\"*." + }, + { + "verseNum": 11, + "text": "After|strong=\"H8141\"* him, Elon the|strong=\"H8199\"* Zebulunite|strong=\"H2075\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* he|strong=\"H8141\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* ten|strong=\"H6235\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 12, + "text": "Elon the|strong=\"H4191\"* Zebulunite|strong=\"H2075\"* died|strong=\"H4191\"*, and|strong=\"H4191\"* was buried|strong=\"H6912\"* in|strong=\"H4191\"* Aijalon in|strong=\"H4191\"* the|strong=\"H4191\"* land of|strong=\"H4191\"* Zebulun|strong=\"H2074\"*." + }, + { + "verseNum": 13, + "text": "After him|strong=\"H1121\"*, Abdon|strong=\"H5658\"* the|strong=\"H8199\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hillel|strong=\"H1985\"* the|strong=\"H8199\"* Pirathonite|strong=\"H6553\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H5921\"* had|strong=\"H1961\"* forty sons|strong=\"H1121\"* and|strong=\"H1121\"* thirty|strong=\"H7970\"* sons|strong=\"H1121\"*’ sons|strong=\"H1121\"* who|strong=\"H1121\"* rode|strong=\"H7392\"* on|strong=\"H5921\"* seventy|strong=\"H7657\"* donkey colts|strong=\"H1121\"*. He|strong=\"H5921\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* eight|strong=\"H8083\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 15, + "text": "Abdon|strong=\"H5658\"* the|strong=\"H4191\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hillel|strong=\"H1985\"* the|strong=\"H4191\"* Pirathonite|strong=\"H6553\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* was|strong=\"H1121\"* buried|strong=\"H6912\"* in|strong=\"H4191\"* Pirathon|strong=\"H6552\"* in|strong=\"H4191\"* the|strong=\"H4191\"* land of|strong=\"H1121\"* Ephraim, in|strong=\"H4191\"* the|strong=\"H4191\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1121\"* the|strong=\"H4191\"* Amalekites|strong=\"H6003\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* again|strong=\"H3254\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H8141\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*; and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H6213\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5414\"* Philistines|strong=\"H6430\"* forty years|strong=\"H8141\"*." + }, + { + "verseNum": 2, + "text": "There|strong=\"H1961\"* was|strong=\"H8034\"* a|strong=\"H3068\"* certain man of|strong=\"H3205\"* Zorah|strong=\"H6881\"*, of|strong=\"H3205\"* the|strong=\"H3205\"* family|strong=\"H4940\"* of|strong=\"H3205\"* the|strong=\"H3205\"* Danites|strong=\"H1839\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Manoah|strong=\"H4495\"*; and|strong=\"H6881\"* his|strong=\"H1961\"* wife was|strong=\"H8034\"* barren|strong=\"H6135\"*, and|strong=\"H6881\"* childless|strong=\"H6135\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* the|strong=\"H7200\"* woman|strong=\"H6135\"*, and|strong=\"H1121\"* said to|strong=\"H3068\"* her|strong=\"H7200\"*, “See|strong=\"H7200\"* now|strong=\"H4994\"*, you|strong=\"H3808\"* are|strong=\"H1121\"* barren|strong=\"H6135\"* and|strong=\"H1121\"* childless|strong=\"H6135\"*; but|strong=\"H3808\"* you|strong=\"H3808\"* shall|strong=\"H3068\"* conceive|strong=\"H2029\"* and|strong=\"H1121\"* bear|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* please|strong=\"H4994\"* beware|strong=\"H8104\"* and|strong=\"H8354\"* drink|strong=\"H8354\"* no|strong=\"H3605\"* wine|strong=\"H3196\"* nor strong|strong=\"H7941\"* drink|strong=\"H8354\"*, and|strong=\"H8354\"* don’t eat any|strong=\"H3605\"* unclean|strong=\"H2931\"* thing|strong=\"H3605\"*;" + }, + { + "verseNum": 5, + "text": "for|strong=\"H3588\"*, behold|strong=\"H2009\"*, you|strong=\"H3588\"* shall|strong=\"H1121\"* conceive|strong=\"H2029\"* and|strong=\"H1121\"* give|strong=\"H3205\"* birth|strong=\"H3205\"* to|strong=\"H3478\"* a|strong=\"H3068\"* son|strong=\"H1121\"*. No|strong=\"H3808\"* razor|strong=\"H4177\"* shall|strong=\"H1121\"* come|strong=\"H5927\"* on|strong=\"H5921\"* his|strong=\"H5921\"* head|strong=\"H7218\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* child|strong=\"H5288\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* a|strong=\"H3068\"* Nazirite|strong=\"H5139\"* to|strong=\"H3478\"* God|strong=\"H3808\"* from|strong=\"H4480\"* the|strong=\"H5921\"* womb. He|strong=\"H1931\"* shall|strong=\"H1121\"* begin|strong=\"H2490\"* to|strong=\"H3478\"* save|strong=\"H3467\"* Israel|strong=\"H3478\"* out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"*.”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H2088\"* the|strong=\"H3372\"* woman|strong=\"H2088\"* came|strong=\"H4397\"* and|strong=\"H3372\"* told|strong=\"H5046\"* her|strong=\"H5046\"* husband, saying, “A|strong=\"H3068\"* man|strong=\"H2088\"* of|strong=\"H8034\"* God|strong=\"H3808\"* came|strong=\"H4397\"* to|strong=\"H4397\"* me|strong=\"H5046\"*, and|strong=\"H3372\"* his|strong=\"H5046\"* face|strong=\"H4758\"* was|strong=\"H8034\"* like|strong=\"H4758\"* the|strong=\"H3372\"* face|strong=\"H4758\"* of|strong=\"H8034\"* the|strong=\"H3372\"* angel|strong=\"H4397\"* of|strong=\"H8034\"* God|strong=\"H3808\"*, very|strong=\"H3966\"* awesome|strong=\"H3372\"*. I|strong=\"H2088\"* didn’t ask|strong=\"H7592\"* him|strong=\"H5046\"* where|strong=\"H2088\"* he|strong=\"H1931\"* was|strong=\"H8034\"* from|strong=\"H5046\"*, neither|strong=\"H3808\"* did|strong=\"H3808\"* he|strong=\"H1931\"* tell|strong=\"H5046\"* me|strong=\"H5046\"* his|strong=\"H5046\"* name|strong=\"H8034\"*;" + }, + { + "verseNum": 7, + "text": "but|strong=\"H3588\"* he|strong=\"H3588\"* said to|strong=\"H5704\"* me|strong=\"H4480\"*, ‘Behold|strong=\"H2009\"*, you|strong=\"H3588\"* shall|strong=\"H1121\"* conceive|strong=\"H2029\"* and|strong=\"H1121\"* bear|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*; and|strong=\"H1121\"* now|strong=\"H6258\"* drink|strong=\"H8354\"* no|strong=\"H4480\"* wine|strong=\"H3196\"* nor|strong=\"H1121\"* strong|strong=\"H7941\"* drink|strong=\"H8354\"*. Don’t eat any|strong=\"H3605\"* unclean|strong=\"H2932\"* thing|strong=\"H2932\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* child|strong=\"H5288\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* a|strong=\"H3068\"* Nazirite|strong=\"H5139\"* to|strong=\"H5704\"* God from|strong=\"H4480\"* the|strong=\"H3605\"* womb to|strong=\"H5704\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H1121\"* his|strong=\"H3605\"* death|strong=\"H4194\"*.’”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H7971\"* Manoah|strong=\"H4495\"* entreated|strong=\"H6279\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said, “Oh|strong=\"H4994\"*, Lord|strong=\"H3068\"*, please|strong=\"H4994\"* let|strong=\"H7971\"* the|strong=\"H6213\"* man|strong=\"H5288\"* of|strong=\"H3068\"* God|strong=\"H3068\"* whom you|strong=\"H7971\"* sent|strong=\"H7971\"* come|strong=\"H4994\"* again|strong=\"H5750\"* to|strong=\"H3068\"* us|strong=\"H4994\"*, and|strong=\"H3068\"* teach|strong=\"H3384\"* us|strong=\"H4994\"* what|strong=\"H4100\"* we|strong=\"H3068\"* should|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3068\"* the|strong=\"H6213\"* child|strong=\"H5288\"* who|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H5750\"* born|strong=\"H3205\"*.”" + }, + { + "verseNum": 9, + "text": "God listened|strong=\"H8085\"* to|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3427\"* Manoah|strong=\"H4495\"*, and|strong=\"H6963\"* the|strong=\"H8085\"* angel|strong=\"H4397\"* of|strong=\"H3427\"* God came|strong=\"H4397\"* again|strong=\"H5750\"* to|strong=\"H8085\"* the|strong=\"H8085\"* woman as|strong=\"H3427\"* she|strong=\"H1931\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H8085\"* field|strong=\"H7704\"*; but|strong=\"H8085\"* Manoah|strong=\"H4495\"*, her|strong=\"H1931\"* husband, wasn’t with|strong=\"H5973\"* her|strong=\"H1931\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H7200\"* woman hurried|strong=\"H4116\"* and|strong=\"H3117\"* ran|strong=\"H7323\"*, and|strong=\"H3117\"* told|strong=\"H5046\"* her|strong=\"H5046\"* husband, saying to|strong=\"H3117\"* him|strong=\"H5046\"*, “Behold|strong=\"H2009\"*, the|strong=\"H7200\"* man|strong=\"H7200\"* who|strong=\"H7323\"* came to|strong=\"H3117\"* me|strong=\"H7200\"* that|strong=\"H7200\"* day|strong=\"H3117\"* has|strong=\"H3117\"* appeared|strong=\"H7200\"* to|strong=\"H3117\"* me|strong=\"H7200\"*.”" + }, + { + "verseNum": 11, + "text": "Manoah|strong=\"H4495\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* followed|strong=\"H3212\"* his|strong=\"H6965\"* wife|strong=\"H1696\"*, and|strong=\"H6965\"* came|strong=\"H3212\"* to|strong=\"H1696\"* the|strong=\"H6965\"* man, and|strong=\"H6965\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H1696\"*, “Are you|strong=\"H1696\"* the|strong=\"H6965\"* man who spoke|strong=\"H1696\"* to|strong=\"H1696\"* my|strong=\"H6965\"* wife|strong=\"H1696\"*?”" + }, + { + "verseNum": 12, + "text": "Manoah|strong=\"H4495\"* said|strong=\"H1697\"*, “Now|strong=\"H6258\"* let|strong=\"H6258\"* your|strong=\"H1961\"* words|strong=\"H1697\"* happen|strong=\"H1961\"*. What|strong=\"H4100\"* shall|strong=\"H5288\"* the|strong=\"H1697\"* child|strong=\"H5288\"*’s way|strong=\"H1697\"* of|strong=\"H1697\"* life|strong=\"H4941\"* and|strong=\"H4941\"* mission be|strong=\"H1961\"*?”" + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* said to|strong=\"H3068\"* Manoah|strong=\"H4495\"*, “Of|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H3068\"* said to|strong=\"H3068\"* the|strong=\"H3605\"* woman let her|strong=\"H3605\"* beware|strong=\"H8104\"*." + }, + { + "verseNum": 14, + "text": "She|strong=\"H3808\"* may|strong=\"H3196\"* not|strong=\"H3808\"* eat of|strong=\"H3605\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* comes|strong=\"H3318\"* of|strong=\"H3605\"* the|strong=\"H3605\"* vine|strong=\"H1612\"*, neither|strong=\"H3808\"* let|strong=\"H3808\"* her|strong=\"H3605\"* drink|strong=\"H8354\"* wine|strong=\"H3196\"* or|strong=\"H3808\"* strong|strong=\"H7941\"* drink|strong=\"H8354\"*, nor|strong=\"H3808\"* eat any|strong=\"H3605\"* unclean|strong=\"H2932\"* thing|strong=\"H2932\"*. Let|strong=\"H3808\"* her|strong=\"H3605\"* observe|strong=\"H8104\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H6680\"* commanded|strong=\"H6680\"* her|strong=\"H3605\"*.”" + }, + { + "verseNum": 15, + "text": "Manoah|strong=\"H4495\"* said to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*, “Please|strong=\"H4994\"* stay with|strong=\"H3068\"* us|strong=\"H4994\"*, that|strong=\"H3068\"* we|strong=\"H3068\"* may|strong=\"H4994\"* make|strong=\"H6213\"* a|strong=\"H3068\"* young|strong=\"H1423\"* goat|strong=\"H5795\"* ready|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H6440\"*.”" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* said to|strong=\"H3068\"* Manoah|strong=\"H4495\"*, “Though|strong=\"H3588\"* you|strong=\"H3588\"* detain|strong=\"H6113\"* me|strong=\"H6213\"*, I|strong=\"H3588\"* won’t eat|strong=\"H3899\"* your|strong=\"H3068\"* bread|strong=\"H3899\"*. If|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* prepare|strong=\"H6213\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, you|strong=\"H3588\"* must|strong=\"H3808\"* offer|strong=\"H5927\"* it|strong=\"H1931\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.” For|strong=\"H3588\"* Manoah|strong=\"H4495\"* didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*." + }, + { + "verseNum": 17, + "text": "Manoah|strong=\"H4495\"* said|strong=\"H1697\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*, “What|strong=\"H1697\"* is|strong=\"H3068\"* your|strong=\"H3068\"* name|strong=\"H8034\"*, that|strong=\"H3588\"* when|strong=\"H3588\"* your|strong=\"H3068\"* words|strong=\"H1697\"* happen|strong=\"H1697\"*, we|strong=\"H3068\"* may|strong=\"H3068\"* honor|strong=\"H3513\"* you|strong=\"H3588\"*?”" + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* said to|strong=\"H3068\"* him|strong=\"H1931\"*, “Why|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H4100\"* ask|strong=\"H7592\"* about|strong=\"H8034\"* my|strong=\"H3068\"* name|strong=\"H8034\"*, since it|strong=\"H1931\"* is|strong=\"H3068\"* incomprehensible+ 13:18 or, wonderful*?”" + }, + { + "verseNum": 19, + "text": "So|strong=\"H6213\"* Manoah|strong=\"H4495\"* took|strong=\"H3947\"* the|strong=\"H5921\"* young|strong=\"H1423\"* goat|strong=\"H5795\"* with|strong=\"H3068\"* the|strong=\"H5921\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H3068\"* offered|strong=\"H5927\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* rock|strong=\"H6697\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Then|strong=\"H3947\"* the|strong=\"H5921\"* angel did|strong=\"H6213\"* an|strong=\"H6213\"* amazing|strong=\"H6381\"* thing as|strong=\"H6213\"* Manoah|strong=\"H4495\"* and|strong=\"H3068\"* his|strong=\"H3068\"* wife watched|strong=\"H7200\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"H5921\"* when|strong=\"H1961\"* the|strong=\"H6440\"* flame|strong=\"H3851\"* went|strong=\"H5927\"* up|strong=\"H5927\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* sky|strong=\"H8064\"* from|strong=\"H6440\"* off|strong=\"H5921\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*, Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* ascended|strong=\"H5927\"* in|strong=\"H5921\"* the|strong=\"H6440\"* flame|strong=\"H3851\"* of|strong=\"H3068\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*. Manoah|strong=\"H4495\"* and|strong=\"H3068\"* his|strong=\"H3068\"* wife watched|strong=\"H7200\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* their|strong=\"H3068\"* faces|strong=\"H6440\"* to|strong=\"H3068\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* didn’t appear|strong=\"H7200\"* to|strong=\"H3068\"* Manoah|strong=\"H4495\"* or|strong=\"H3808\"* to|strong=\"H3068\"* his|strong=\"H3068\"* wife any|strong=\"H5750\"* more|strong=\"H3254\"*. Then|strong=\"H3254\"* Manoah|strong=\"H4495\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*." + }, + { + "verseNum": 22, + "text": "Manoah|strong=\"H4495\"* said to|strong=\"H4191\"* his|strong=\"H7200\"* wife, “We|strong=\"H3588\"* shall|strong=\"H4191\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*, because|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* God.”" + }, + { + "verseNum": 23, + "text": "But|strong=\"H3808\"* his|strong=\"H3605\"* wife said|strong=\"H8085\"* to|strong=\"H4191\"* him|strong=\"H3027\"*, “If|strong=\"H3863\"* Yahweh|strong=\"H3068\"* were|strong=\"H3027\"* pleased|strong=\"H2654\"* to|strong=\"H4191\"* kill|strong=\"H4191\"* us|strong=\"H7200\"*, he|strong=\"H3068\"* wouldn’t have|strong=\"H3068\"* received|strong=\"H3947\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* and|strong=\"H3068\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* at|strong=\"H3068\"* our|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* wouldn’t have|strong=\"H3068\"* shown|strong=\"H7200\"* us|strong=\"H7200\"* all|strong=\"H3605\"* these|strong=\"H2063\"* things|strong=\"H3605\"*, nor|strong=\"H3808\"* would|strong=\"H3068\"* he|strong=\"H3068\"* have|strong=\"H3068\"* told|strong=\"H8085\"* us|strong=\"H7200\"* such|strong=\"H2063\"* things|strong=\"H3605\"* as|strong=\"H3068\"* these|strong=\"H2063\"* at|strong=\"H3068\"* this|strong=\"H2063\"* time|strong=\"H6256\"*.”" + }, + { + "verseNum": 24, + "text": "The|strong=\"H3205\"* woman|strong=\"H3205\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"* and|strong=\"H1121\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Samson|strong=\"H8123\"*. The|strong=\"H3205\"* child|strong=\"H5288\"* grew|strong=\"H1431\"*, and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* blessed|strong=\"H1288\"* him|strong=\"H3205\"*." + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* began|strong=\"H2490\"* to|strong=\"H3068\"* move him|strong=\"H3068\"* in|strong=\"H3068\"* Mahaneh Dan|strong=\"H1835\"*, between|strong=\"H7307\"* Zorah|strong=\"H6881\"* and|strong=\"H3068\"* Eshtaol." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Samson|strong=\"H8123\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Timnah|strong=\"H8553\"*, and|strong=\"H7200\"* saw|strong=\"H7200\"* a|strong=\"H3068\"* woman|strong=\"H1323\"* in|strong=\"H7200\"* Timnah|strong=\"H8553\"* of|strong=\"H1323\"* the|strong=\"H7200\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* the|strong=\"H7200\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3947\"* came|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H7200\"* told|strong=\"H5046\"* his|strong=\"H3947\"* father and|strong=\"H7200\"* his|strong=\"H3947\"* mother, saying, “I|strong=\"H6258\"* have|strong=\"H6430\"* seen|strong=\"H7200\"* a|strong=\"H3068\"* woman|strong=\"H1323\"* in|strong=\"H5927\"* Timnah|strong=\"H8553\"* of|strong=\"H1323\"* the|strong=\"H7200\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* the|strong=\"H7200\"* Philistines|strong=\"H6430\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* get|strong=\"H3947\"* her|strong=\"H3947\"* for|strong=\"H3947\"* me|strong=\"H7200\"* as|strong=\"H5927\"* my|strong=\"H7200\"* wife.”" + }, + { + "verseNum": 3, + "text": "Then|strong=\"H1980\"* his|strong=\"H3605\"* father and|strong=\"H1980\"* his|strong=\"H3605\"* mother said to|strong=\"H1980\"* him|strong=\"H3947\"*, “Isn’t there|strong=\"H3605\"* a|strong=\"H3068\"* woman|strong=\"H1323\"* among|strong=\"H5971\"* your|strong=\"H3605\"* brothers’ daughters|strong=\"H1323\"*, or|strong=\"H1980\"* among|strong=\"H5971\"* all|strong=\"H3605\"* my|strong=\"H3605\"* people|strong=\"H5971\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H1980\"* to|strong=\"H1980\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife of|strong=\"H1323\"* the|strong=\"H3605\"* uncircumcised|strong=\"H6189\"* Philistines|strong=\"H6430\"*?”" + }, + { + "verseNum": 4, + "text": "But|strong=\"H3588\"* his|strong=\"H3068\"* father and|strong=\"H3478\"* his|strong=\"H3068\"* mother didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* it|strong=\"H1931\"* was|strong=\"H3068\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* sought|strong=\"H1245\"* an|strong=\"H3588\"* occasion|strong=\"H8385\"* against|strong=\"H6430\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"*. Now|strong=\"H3588\"* at|strong=\"H3478\"* that|strong=\"H3588\"* time|strong=\"H6256\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"* ruled|strong=\"H4910\"* over|strong=\"H4910\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H2009\"* Samson|strong=\"H8123\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H5704\"* Timnah|strong=\"H8553\"* with|strong=\"H3381\"* his|strong=\"H3381\"* father and|strong=\"H3381\"* his|strong=\"H3381\"* mother, and|strong=\"H3381\"* came|strong=\"H3381\"* to|strong=\"H5704\"* the|strong=\"H5704\"* vineyards|strong=\"H3754\"* of|strong=\"H3754\"* Timnah|strong=\"H8553\"*; and|strong=\"H3381\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* young|strong=\"H3715\"* lion|strong=\"H3715\"* roared|strong=\"H7580\"* at|strong=\"H3754\"* him|strong=\"H3381\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* came|strong=\"H3068\"* mightily|strong=\"H6743\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3068\"* he|strong=\"H6213\"* tore|strong=\"H8156\"* him|strong=\"H5921\"* as|strong=\"H6213\"* he|strong=\"H6213\"* would|strong=\"H3068\"* have|strong=\"H3068\"* torn a|strong=\"H3068\"* young|strong=\"H1423\"* goat|strong=\"H1423\"* with|strong=\"H3068\"* his|strong=\"H3068\"* bare hands|strong=\"H3027\"*, but|strong=\"H3808\"* he|strong=\"H6213\"* didn’t tell|strong=\"H5046\"* his|strong=\"H3068\"* father or|strong=\"H3808\"* his|strong=\"H3068\"* mother what|strong=\"H6213\"* he|strong=\"H6213\"* had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H1696\"* went|strong=\"H3381\"* down|strong=\"H3381\"* and|strong=\"H5869\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* the|strong=\"H1696\"* woman, and|strong=\"H5869\"* she pleased|strong=\"H3474\"* Samson|strong=\"H8123\"* well|strong=\"H5869\"*." + }, + { + "verseNum": 8, + "text": "After|strong=\"H3117\"* a|strong=\"H3068\"* while|strong=\"H3117\"* he|strong=\"H3117\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* take|strong=\"H3947\"* her|strong=\"H3947\"*, and|strong=\"H7725\"* he|strong=\"H3117\"* went|strong=\"H7725\"* over to|strong=\"H7725\"* see|strong=\"H7200\"* the|strong=\"H7200\"* carcass|strong=\"H1472\"* of|strong=\"H3117\"* the|strong=\"H7200\"* lion; and|strong=\"H7725\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* was|strong=\"H3117\"* a|strong=\"H3068\"* swarm|strong=\"H5712\"* of|strong=\"H3117\"* bees|strong=\"H1682\"* in|strong=\"H3117\"* the|strong=\"H7200\"* body|strong=\"H1472\"* of|strong=\"H3117\"* the|strong=\"H7200\"* lion, and|strong=\"H7725\"* honey|strong=\"H1706\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H3588\"* took|strong=\"H1980\"* it|strong=\"H5414\"* into|strong=\"H1980\"* his|strong=\"H5414\"* hands|strong=\"H3709\"*, and|strong=\"H1980\"* went|strong=\"H1980\"* on|strong=\"H1980\"*, eating as|strong=\"H3588\"* he|strong=\"H3588\"* went|strong=\"H1980\"*. He|strong=\"H3588\"* came|strong=\"H1980\"* to|strong=\"H1980\"* his|strong=\"H5414\"* father and|strong=\"H1980\"* mother and|strong=\"H1980\"* gave|strong=\"H5414\"* to|strong=\"H1980\"* them|strong=\"H5414\"*, and|strong=\"H1980\"* they|strong=\"H3588\"* ate, but|strong=\"H3588\"* he|strong=\"H3588\"* didn’t tell|strong=\"H5046\"* them|strong=\"H5414\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3588\"* taken|strong=\"H7287\"* the|strong=\"H3588\"* honey|strong=\"H1706\"* out|strong=\"H5414\"* of|strong=\"H3709\"* the|strong=\"H3588\"* lion’s body|strong=\"H1472\"*." + }, + { + "verseNum": 10, + "text": "His|strong=\"H6213\"* father went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3588\"* woman; and|strong=\"H8033\"* Samson|strong=\"H8123\"* made|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H4960\"* there|strong=\"H8033\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* young men|strong=\"H6213\"* used|strong=\"H6213\"* to|strong=\"H3381\"* do|strong=\"H6213\"* so|strong=\"H3651\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H1961\"* they|strong=\"H3947\"* saw|strong=\"H7200\"* him|strong=\"H7200\"*, they|strong=\"H3947\"* brought|strong=\"H3947\"* thirty|strong=\"H7970\"* companions|strong=\"H4828\"* to|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H3947\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 12, + "text": "Samson|strong=\"H8123\"* said to|strong=\"H5414\"* them|strong=\"H5414\"*, “Let|strong=\"H4994\"* me|strong=\"H5414\"* tell|strong=\"H5046\"* you|strong=\"H5414\"* a|strong=\"H3068\"* riddle|strong=\"H2420\"* now|strong=\"H4994\"*. If you|strong=\"H5414\"* can|strong=\"H4994\"* tell|strong=\"H5046\"* me|strong=\"H5414\"* the|strong=\"H5414\"* answer within the|strong=\"H5414\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H5414\"* feast|strong=\"H4960\"*, and|strong=\"H3117\"* find|strong=\"H4672\"* it|strong=\"H5414\"* out|strong=\"H4672\"*, then|strong=\"H5414\"* I|strong=\"H3117\"* will|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* thirty|strong=\"H7970\"* linen|strong=\"H5466\"* garments|strong=\"H5466\"* and|strong=\"H3117\"* thirty|strong=\"H7970\"* changes|strong=\"H2487\"* of|strong=\"H3117\"* clothing;" + }, + { + "verseNum": 13, + "text": "but|strong=\"H3808\"* if you|strong=\"H5414\"* can|strong=\"H3201\"*’t tell|strong=\"H5046\"* me|strong=\"H5414\"* the|strong=\"H8085\"* answer, then|strong=\"H5414\"* you|strong=\"H5414\"* shall|strong=\"H3808\"* give|strong=\"H5414\"* me|strong=\"H5414\"* thirty|strong=\"H7970\"* linen|strong=\"H5466\"* garments|strong=\"H5466\"* and|strong=\"H7970\"* thirty|strong=\"H7970\"* changes|strong=\"H2487\"* of|strong=\"H2487\"* clothing.”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H3117\"* said|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H3318\"*," + }, + { + "verseNum": 15, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, they|strong=\"H3117\"* said|strong=\"H7121\"* to|strong=\"H1961\"* Samson|strong=\"H8123\"*’s wife, “Entice|strong=\"H6601\"* your|strong=\"H1961\"* husband, that|strong=\"H3117\"* he|strong=\"H3117\"* may|strong=\"H1961\"* declare|strong=\"H5046\"* to|strong=\"H1961\"* us|strong=\"H5046\"* the|strong=\"H3117\"* riddle|strong=\"H2420\"*, lest|strong=\"H6435\"* we|strong=\"H3068\"* burn|strong=\"H8313\"* you|strong=\"H3117\"* and|strong=\"H3117\"* your|strong=\"H1961\"* father’s house|strong=\"H1004\"* with|strong=\"H8313\"* fire. Have|strong=\"H1961\"* you|strong=\"H3117\"* called|strong=\"H7121\"* us|strong=\"H5046\"* to|strong=\"H1961\"* impoverish|strong=\"H3423\"* us|strong=\"H5046\"*? Isn’t that|strong=\"H3117\"* so|strong=\"H6435\"*?”" + }, + { + "verseNum": 16, + "text": "Samson|strong=\"H8123\"*’s wife wept|strong=\"H1058\"* before|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* said, “You|strong=\"H5921\"* just hate|strong=\"H8130\"* me|strong=\"H5046\"*, and|strong=\"H1121\"* don’t love me|strong=\"H5046\"*. You|strong=\"H5921\"*’ve told|strong=\"H5046\"* a|strong=\"H3068\"* riddle|strong=\"H2420\"* to|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* my|strong=\"H5921\"* people|strong=\"H5971\"*, and|strong=\"H1121\"* haven’t told|strong=\"H5046\"* it|strong=\"H5921\"* to|strong=\"H5921\"* me|strong=\"H5046\"*.”" + }, + { + "verseNum": 17, + "text": "She|strong=\"H3588\"* wept|strong=\"H1058\"* before|strong=\"H5921\"* him|strong=\"H5921\"* the|strong=\"H5921\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, while|strong=\"H1961\"* their|strong=\"H5921\"* feast|strong=\"H4960\"* lasted|strong=\"H1961\"*; and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, he|strong=\"H3588\"* told|strong=\"H5046\"* her|strong=\"H5046\"*, because|strong=\"H3588\"* she|strong=\"H3588\"* pressed|strong=\"H6693\"* him|strong=\"H5921\"* severely; and|strong=\"H1121\"* she|strong=\"H3588\"* told|strong=\"H5046\"* the|strong=\"H5921\"* riddle|strong=\"H2420\"* to|strong=\"H1961\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* her|strong=\"H5046\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3117\"* men|strong=\"H5794\"* of|strong=\"H3117\"* the|strong=\"H3117\"* city|strong=\"H5892\"* said|strong=\"H2790\"* to|strong=\"H3117\"* him|strong=\"H4672\"* on|strong=\"H3117\"* the|strong=\"H3117\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* before|strong=\"H2962\"* the|strong=\"H3117\"* sun|strong=\"H2775\"* went|strong=\"H5892\"* down, “What|strong=\"H4100\"* is|strong=\"H4100\"* sweeter|strong=\"H4966\"* than|strong=\"H3808\"* honey|strong=\"H1706\"*? What|strong=\"H4100\"* is|strong=\"H4100\"* stronger|strong=\"H5794\"* than|strong=\"H3808\"* a|strong=\"H3068\"* lion?”" + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* came|strong=\"H5927\"* mightily|strong=\"H6743\"* on|strong=\"H5921\"* him|strong=\"H5414\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* went|strong=\"H5927\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Ashkelon and|strong=\"H3068\"* struck|strong=\"H5221\"* thirty|strong=\"H7970\"* men|strong=\"H1992\"* of|strong=\"H1004\"* them|strong=\"H5414\"*. He|strong=\"H3068\"* took|strong=\"H3947\"* their|strong=\"H3068\"* plunder, then|strong=\"H3947\"* gave|strong=\"H5414\"* the|strong=\"H5921\"* changes|strong=\"H2487\"* of|strong=\"H1004\"* clothing to|strong=\"H3381\"* those|strong=\"H1992\"* who|strong=\"H3068\"* declared|strong=\"H5046\"* the|strong=\"H5921\"* riddle|strong=\"H2420\"*. His|strong=\"H5414\"* anger|strong=\"H7307\"* burned|strong=\"H2734\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3381\"* his|strong=\"H5414\"* father’s house|strong=\"H1004\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H1961\"* Samson|strong=\"H8123\"*’s wife was|strong=\"H1961\"* given to|strong=\"H1961\"* his|strong=\"H1961\"* companion|strong=\"H4828\"*, who|strong=\"H7462\"* had|strong=\"H1961\"* been|strong=\"H1961\"* his|strong=\"H1961\"* friend|strong=\"H7462\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"H3808\"* after|strong=\"H1961\"* a|strong=\"H3068\"* while|strong=\"H1961\"*, in|strong=\"H3117\"* the|strong=\"H5414\"* time|strong=\"H3117\"* of|strong=\"H3117\"* wheat|strong=\"H2406\"* harvest|strong=\"H7105\"*, Samson|strong=\"H8123\"* visited|strong=\"H6485\"* his|strong=\"H5414\"* wife with|strong=\"H3117\"* a|strong=\"H3068\"* young|strong=\"H1423\"* goat|strong=\"H5795\"*. He|strong=\"H3117\"* said, “I|strong=\"H3117\"* will|strong=\"H1961\"* go|strong=\"H1961\"* in|strong=\"H3117\"* to|strong=\"H1961\"* my|strong=\"H5414\"* wife’s room|strong=\"H2315\"*.”" + }, + { + "verseNum": 2, + "text": "Her|strong=\"H5414\"* father said, “I|strong=\"H3588\"* most|strong=\"H2896\"* certainly|strong=\"H3588\"* thought that|strong=\"H3588\"* you|strong=\"H3588\"* utterly|strong=\"H8130\"* hated|strong=\"H8130\"* her|strong=\"H5414\"*; therefore|strong=\"H3588\"* I|strong=\"H3588\"* gave|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H1961\"* your|strong=\"H5414\"* companion|strong=\"H4828\"*. Isn’t her|strong=\"H5414\"* younger|strong=\"H6996\"* sister more|strong=\"H4480\"* beautiful|strong=\"H2896\"* than|strong=\"H4480\"* she|strong=\"H3588\"*? Please|strong=\"H4994\"*, take|strong=\"H1961\"* her|strong=\"H5414\"* instead|strong=\"H8478\"*.”" + }, + { + "verseNum": 3, + "text": "Samson|strong=\"H8123\"* said to|strong=\"H6213\"* them|strong=\"H6213\"*, “This|strong=\"H6213\"* time|strong=\"H6471\"* I|strong=\"H3588\"* will|strong=\"H6430\"* be|strong=\"H7451\"* blameless|strong=\"H5352\"* in|strong=\"H6213\"* the|strong=\"H3588\"* case|strong=\"H3588\"* of|strong=\"H6213\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"* when|strong=\"H3588\"* I|strong=\"H3588\"* harm|strong=\"H7451\"* them|strong=\"H6213\"*.”" + }, + { + "verseNum": 4, + "text": "Samson|strong=\"H8123\"* went|strong=\"H3212\"* and|strong=\"H3967\"* caught|strong=\"H3920\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* foxes|strong=\"H7776\"*, and|strong=\"H3967\"* took|strong=\"H3947\"* torches|strong=\"H3940\"*, and|strong=\"H3967\"* turned|strong=\"H6437\"* tail|strong=\"H2180\"* to|strong=\"H3212\"* tail|strong=\"H2180\"*, and|strong=\"H3967\"* put|strong=\"H7760\"* a|strong=\"H3068\"* torch|strong=\"H3940\"* in|strong=\"H8432\"* the|strong=\"H3947\"* middle|strong=\"H8432\"* between|strong=\"H8432\"* every|strong=\"H3212\"* two|strong=\"H8147\"* tails|strong=\"H2180\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H6430\"* set|strong=\"H7971\"* the|strong=\"H5704\"* torches|strong=\"H3940\"* on|strong=\"H7971\"* fire, he|strong=\"H5704\"* let|strong=\"H7971\"* them|strong=\"H7971\"* go|strong=\"H7971\"* into|strong=\"H5704\"* the|strong=\"H5704\"* standing|strong=\"H7054\"* grain|strong=\"H7054\"* of|strong=\"H3754\"* the|strong=\"H5704\"* Philistines|strong=\"H6430\"*, and|strong=\"H7971\"* burned|strong=\"H1197\"* up|strong=\"H5704\"* both the|strong=\"H5704\"* shocks|strong=\"H1430\"* and|strong=\"H7971\"* the|strong=\"H5704\"* standing|strong=\"H7054\"* grain|strong=\"H7054\"*, and|strong=\"H7971\"* also|strong=\"H6430\"* the|strong=\"H5704\"* olive|strong=\"H2132\"* groves|strong=\"H2132\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H3947\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"* said, “Who|strong=\"H4310\"* has|strong=\"H4310\"* done|strong=\"H6213\"* this|strong=\"H2063\"*?”" + }, + { + "verseNum": 7, + "text": "Samson|strong=\"H8123\"* said to|strong=\"H6213\"* them|strong=\"H6213\"*, “If|strong=\"H3588\"* you|strong=\"H3588\"* behave|strong=\"H6213\"* like|strong=\"H6213\"* this|strong=\"H2063\"*, surely|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H6213\"* take|strong=\"H5358\"* revenge|strong=\"H5358\"* on|strong=\"H6213\"* you|strong=\"H3588\"*, and|strong=\"H6213\"* after|strong=\"H3588\"* that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H6213\"* cease|strong=\"H2308\"*.”" + }, + { + "verseNum": 8, + "text": "He|strong=\"H5921\"* struck|strong=\"H5221\"* them|strong=\"H5921\"* hip|strong=\"H3409\"* and|strong=\"H1419\"* thigh|strong=\"H3409\"* with|strong=\"H5921\"* a|strong=\"H3068\"* great|strong=\"H1419\"* slaughter|strong=\"H4347\"*; and|strong=\"H1419\"* he|strong=\"H5921\"* went|strong=\"H3381\"* down|strong=\"H3381\"* and|strong=\"H1419\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* cave in|strong=\"H3427\"* Etam|strong=\"H5862\"*’s rock|strong=\"H5553\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H5927\"* the|strong=\"H5927\"* Philistines|strong=\"H6430\"* went|strong=\"H5927\"* up|strong=\"H5927\"*, encamped|strong=\"H2583\"* in|strong=\"H2583\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* spread|strong=\"H5203\"* themselves in|strong=\"H2583\"* Lehi|strong=\"H3896\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5921\"* men|strong=\"H6213\"* of|strong=\"H5921\"* Judah|strong=\"H3063\"* said, “Why|strong=\"H4100\"* have|strong=\"H3063\"* you|strong=\"H5921\"* come|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* us|strong=\"H5921\"*?”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H3651\"* three|strong=\"H7969\"* thousand men|strong=\"H6213\"* of|strong=\"H6213\"* Judah|strong=\"H3063\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3588\"* cave in|strong=\"H6213\"* Etam|strong=\"H5862\"*’s rock|strong=\"H5553\"*, and|strong=\"H3063\"* said|strong=\"H3651\"* to|strong=\"H3381\"* Samson|strong=\"H8123\"*, “Don’t you|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"* are|strong=\"H4100\"* rulers|strong=\"H4910\"* over|strong=\"H4910\"* us|strong=\"H6213\"*? What|strong=\"H4100\"* then|strong=\"H3651\"* is|strong=\"H4100\"* this|strong=\"H2063\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3045\"* done|strong=\"H6213\"* to|strong=\"H3381\"* us|strong=\"H6213\"*?”" + }, + { + "verseNum": 12, + "text": "They|strong=\"H3027\"* said to|strong=\"H3381\"* him|strong=\"H5414\"*, “We|strong=\"H6435\"* have|strong=\"H6430\"* come|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* bind you|strong=\"H5414\"*, that|strong=\"H5414\"* we|strong=\"H3068\"* may|strong=\"H5414\"* deliver|strong=\"H5414\"* you|strong=\"H5414\"* into|strong=\"H3381\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5414\"* Philistines|strong=\"H6430\"*.”" + }, + { + "verseNum": 13, + "text": "They|strong=\"H3588\"* spoke to|strong=\"H4191\"* him|strong=\"H5414\"*, saying, “No|strong=\"H3808\"*, but|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H3027\"* bind you|strong=\"H3588\"* securely and|strong=\"H3027\"* deliver|strong=\"H5414\"* you|strong=\"H3588\"* into|strong=\"H5927\"* their|strong=\"H5414\"* hands|strong=\"H3027\"*; but|strong=\"H3588\"* surely|strong=\"H4191\"* we|strong=\"H3068\"* will|strong=\"H3027\"* not|strong=\"H3808\"* kill|strong=\"H4191\"* you|strong=\"H3588\"*.” They|strong=\"H3588\"* bound him|strong=\"H5414\"* with|strong=\"H3027\"* two|strong=\"H8147\"* new|strong=\"H2319\"* ropes|strong=\"H5688\"*, and|strong=\"H3027\"* brought|strong=\"H5927\"* him|strong=\"H5414\"* up|strong=\"H5927\"* from|strong=\"H4480\"* the|strong=\"H3588\"* rock|strong=\"H5553\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H1961\"* he|strong=\"H1931\"* came|strong=\"H1961\"* to|strong=\"H5704\"* Lehi|strong=\"H3896\"*, the|strong=\"H5921\"* Philistines|strong=\"H6430\"* shouted|strong=\"H7321\"* as|strong=\"H5704\"* they|strong=\"H3068\"* met|strong=\"H7125\"* him|strong=\"H5921\"*. Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* came|strong=\"H1961\"* mightily|strong=\"H6743\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* ropes|strong=\"H5688\"* that|strong=\"H1931\"* were|strong=\"H1961\"* on|strong=\"H5921\"* his|strong=\"H3068\"* arms|strong=\"H2220\"* became|strong=\"H1961\"* as|strong=\"H5704\"* flax|strong=\"H6593\"* that|strong=\"H1931\"* was|strong=\"H3068\"* burned|strong=\"H1197\"* with|strong=\"H3068\"* fire; and|strong=\"H3068\"* his|strong=\"H3068\"* bands|strong=\"H5688\"* dropped|strong=\"H4549\"* from|strong=\"H5921\"* off|strong=\"H5921\"* his|strong=\"H3068\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3027\"* found|strong=\"H4672\"* a|strong=\"H3068\"* fresh|strong=\"H2961\"* jawbone|strong=\"H3895\"* of|strong=\"H3027\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"*, put|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"*, took|strong=\"H3947\"* it|strong=\"H5221\"*, and|strong=\"H7971\"* struck|strong=\"H5221\"* a|strong=\"H3068\"* thousand men|strong=\"H3947\"* with|strong=\"H3027\"* it|strong=\"H5221\"*." + }, + { + "verseNum": 16, + "text": "Samson|strong=\"H8123\"* said, “With|strong=\"H5221\"* the|strong=\"H5221\"* jawbone|strong=\"H3895\"* of|strong=\"H5221\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"*, heaps|strong=\"H2565\"* on|strong=\"H5221\"* heaps|strong=\"H2565\"*; with|strong=\"H5221\"* the|strong=\"H5221\"* jawbone|strong=\"H3895\"* of|strong=\"H5221\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"* I have struck|strong=\"H5221\"* a|strong=\"H3068\"* thousand men.”" + }, + { + "verseNum": 17, + "text": "When|strong=\"H1961\"* he|strong=\"H1931\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* speaking|strong=\"H1696\"*, he|strong=\"H1931\"* threw|strong=\"H7993\"* the|strong=\"H7121\"* jawbone|strong=\"H3895\"* out|strong=\"H7993\"* of|strong=\"H3027\"* his|strong=\"H7121\"* hand|strong=\"H3027\"*; and|strong=\"H3027\"* that|strong=\"H1931\"* place|strong=\"H4725\"* was|strong=\"H1961\"* called|strong=\"H7121\"* Ramath|strong=\"H7437\"* Lehi.+ 15:17 “Ramath” means “hill” and “Lehi” means “jawbone”.*" + }, + { + "verseNum": 18, + "text": "He|strong=\"H3068\"* was|strong=\"H3068\"* very|strong=\"H3966\"* thirsty|strong=\"H6770\"*, and|strong=\"H3068\"* called|strong=\"H7121\"* on|strong=\"H5307\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* said|strong=\"H7121\"*, “You|strong=\"H5414\"* have|strong=\"H3068\"* given|strong=\"H5414\"* this|strong=\"H2063\"* great|strong=\"H1419\"* deliverance|strong=\"H8668\"* by|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*; and|strong=\"H3068\"* now|strong=\"H6258\"* shall|strong=\"H3068\"* I|strong=\"H5414\"* die|strong=\"H4191\"* of|strong=\"H3068\"* thirst|strong=\"H6772\"*, and|strong=\"H3068\"* fall|strong=\"H5307\"* into|strong=\"H5307\"* the|strong=\"H5414\"* hands|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H5414\"* uncircumcised|strong=\"H6189\"*?”" + }, + { + "verseNum": 19, + "text": "But|strong=\"H3651\"* God split|strong=\"H1234\"* the|strong=\"H5921\"* hollow|strong=\"H4388\"* place|strong=\"H4388\"* that|strong=\"H3117\"* is|strong=\"H2088\"* in|strong=\"H5921\"* Lehi|strong=\"H3896\"*, and|strong=\"H7725\"* water|strong=\"H4325\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* it|strong=\"H7121\"*. When|strong=\"H3117\"* he|strong=\"H3117\"* had|strong=\"H4325\"* drunk|strong=\"H8354\"*, his|strong=\"H7121\"* spirit|strong=\"H7307\"* came|strong=\"H3318\"* again|strong=\"H7725\"*, and|strong=\"H7725\"* he|strong=\"H3117\"* revived|strong=\"H2421\"*. Therefore|strong=\"H3651\"* its|strong=\"H5921\"* name|strong=\"H8034\"* was|strong=\"H8034\"* called|strong=\"H7121\"* En Hakkore, which|strong=\"H4325\"* is|strong=\"H2088\"* in|strong=\"H5921\"* Lehi|strong=\"H3896\"*, to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H3117\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* Philistines|strong=\"H6430\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Samson|strong=\"H8123\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Gaza|strong=\"H5804\"*, and|strong=\"H3212\"* saw|strong=\"H7200\"* there|strong=\"H8033\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*, and|strong=\"H3212\"* went|strong=\"H3212\"* in|strong=\"H3212\"* to|strong=\"H3212\"* her|strong=\"H7200\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* Gazites|strong=\"H5841\"* were|strong=\"H5892\"* told, “Samson|strong=\"H8123\"* is|strong=\"H3605\"* here|strong=\"H2008\"*!” They|strong=\"H5704\"* surrounded|strong=\"H5437\"* him|strong=\"H3605\"* and|strong=\"H5892\"* laid wait for|strong=\"H5704\"* him|strong=\"H3605\"* all|strong=\"H3605\"* night|strong=\"H3915\"* in|strong=\"H5892\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* were|strong=\"H5892\"* quiet|strong=\"H2790\"* all|strong=\"H3605\"* the|strong=\"H3605\"* night|strong=\"H3915\"*, saying, “Wait until|strong=\"H5704\"* morning|strong=\"H1242\"* light; then|strong=\"H3605\"* we|strong=\"H3068\"* will|strong=\"H5892\"* kill|strong=\"H2026\"* him|strong=\"H3605\"*.”" + }, + { + "verseNum": 3, + "text": "Samson|strong=\"H8123\"* lay|strong=\"H7901\"* until|strong=\"H5704\"* midnight|strong=\"H2677\"*, then|strong=\"H6965\"* arose|strong=\"H6965\"* at|strong=\"H5921\"* midnight|strong=\"H2677\"* and|strong=\"H6965\"* took|strong=\"H5927\"* hold|strong=\"H6965\"* of|strong=\"H5892\"* the|strong=\"H6440\"* doors|strong=\"H1817\"* of|strong=\"H5892\"* the|strong=\"H6440\"* gate|strong=\"H8179\"* of|strong=\"H5892\"* the|strong=\"H6440\"* city|strong=\"H5892\"*, with|strong=\"H5973\"* the|strong=\"H6440\"* two|strong=\"H8147\"* posts|strong=\"H4201\"*, and|strong=\"H6965\"* plucked|strong=\"H5265\"* them|strong=\"H5921\"* up|strong=\"H5927\"*, bar|strong=\"H1280\"* and|strong=\"H6965\"* all|strong=\"H5704\"*, and|strong=\"H6965\"* put|strong=\"H7760\"* them|strong=\"H5921\"* on|strong=\"H5921\"* his|strong=\"H7760\"* shoulders|strong=\"H3802\"* and|strong=\"H6965\"* carried|strong=\"H5927\"* them|strong=\"H5921\"* up|strong=\"H5927\"* to|strong=\"H5704\"* the|strong=\"H6440\"* top|strong=\"H7218\"* of|strong=\"H5892\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"* that|strong=\"H5892\"* is|strong=\"H5892\"* before|strong=\"H6440\"* Hebron|strong=\"H2275\"*." + }, + { + "verseNum": 4, + "text": "It|strong=\"H3651\"* came|strong=\"H1961\"* to|strong=\"H1961\"* pass|strong=\"H1961\"* afterward that|strong=\"H3651\"* he|strong=\"H3651\"* loved a|strong=\"H3068\"* woman|strong=\"H8034\"* in|strong=\"H8034\"* the|strong=\"H1961\"* valley|strong=\"H5158\"* of|strong=\"H8034\"* Sorek|strong=\"H7796\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Delilah|strong=\"H1807\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H7200\"* lords|strong=\"H5633\"* of|strong=\"H3701\"* the|strong=\"H7200\"* Philistines|strong=\"H6430\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3201\"* her|strong=\"H5414\"* and|strong=\"H3967\"* said to|strong=\"H3201\"* her|strong=\"H5414\"*, “Entice|strong=\"H6601\"* him|strong=\"H5414\"*, and|strong=\"H3967\"* see|strong=\"H7200\"* in|strong=\"H1419\"* which|strong=\"H4100\"* his|strong=\"H5414\"* great|strong=\"H1419\"* strength|strong=\"H3581\"* lies|strong=\"H5414\"*, and|strong=\"H3967\"* by|strong=\"H5414\"* what|strong=\"H4100\"* means|strong=\"H5927\"* we|strong=\"H3068\"* may|strong=\"H3201\"* prevail|strong=\"H3201\"* against|strong=\"H5927\"* him|strong=\"H5414\"*, that|strong=\"H7200\"* we|strong=\"H3068\"* may|strong=\"H3201\"* bind him|strong=\"H5414\"* to|strong=\"H3201\"* afflict|strong=\"H6031\"* him|strong=\"H5414\"*; and|strong=\"H3967\"* we|strong=\"H3068\"* will|strong=\"H5414\"* each|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* eleven hundred|strong=\"H3967\"* pieces of|strong=\"H3701\"* silver|strong=\"H3701\"*.”" + }, + { + "verseNum": 6, + "text": "Delilah|strong=\"H1807\"* said to|strong=\"H5046\"* Samson|strong=\"H8123\"*, “Please|strong=\"H4994\"* tell|strong=\"H5046\"* me|strong=\"H4994\"* where|strong=\"H4100\"* your|strong=\"H4994\"* great|strong=\"H1419\"* strength|strong=\"H3581\"* lies, and|strong=\"H1419\"* what|strong=\"H4100\"* you|strong=\"H5046\"* might|strong=\"H3581\"* be|strong=\"H4994\"* bound to|strong=\"H5046\"* afflict|strong=\"H6031\"* you|strong=\"H5046\"*.”" + }, + { + "verseNum": 7, + "text": "Samson|strong=\"H8123\"* said to|strong=\"H1961\"* her|strong=\"H1961\"*, “If|strong=\"H1961\"* they|strong=\"H3808\"* bind me|strong=\"H1961\"* with|strong=\"H1961\"* seven|strong=\"H7651\"* green|strong=\"H3892\"* cords|strong=\"H3499\"* that|strong=\"H3808\"* were|strong=\"H1961\"* never|strong=\"H3808\"* dried|strong=\"H2717\"*, then|strong=\"H1961\"* shall|strong=\"H3808\"* I|strong=\"H3808\"* become|strong=\"H1961\"* weak|strong=\"H2470\"*, and|strong=\"H7651\"* be|strong=\"H1961\"* as|strong=\"H1961\"* another|strong=\"H3808\"* man.”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H5927\"* the|strong=\"H5927\"* lords|strong=\"H5633\"* of|strong=\"H3499\"* the|strong=\"H5927\"* Philistines|strong=\"H6430\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* her|strong=\"H2717\"* seven|strong=\"H7651\"* green|strong=\"H3892\"* cords|strong=\"H3499\"* which had|strong=\"H6430\"* not|strong=\"H3808\"* been|strong=\"H3808\"* dried|strong=\"H2717\"*, and|strong=\"H5927\"* she|strong=\"H3808\"* bound him|strong=\"H5927\"* with|strong=\"H5927\"* them|strong=\"H5927\"*." + }, + { + "verseNum": 9, + "text": "Now|strong=\"H5921\"* she|strong=\"H5921\"* had|strong=\"H6430\"* an|strong=\"H3427\"* ambush waiting in|strong=\"H3427\"* the|strong=\"H5921\"* inner|strong=\"H2315\"* room|strong=\"H2315\"*. She|strong=\"H5921\"* said to|strong=\"H5921\"* him|strong=\"H5921\"*, “The|strong=\"H5921\"* Philistines|strong=\"H6430\"* are|strong=\"H6430\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, Samson|strong=\"H8123\"*!” He|strong=\"H3808\"* broke|strong=\"H5423\"* the|strong=\"H5921\"* cords|strong=\"H3499\"* as|strong=\"H3427\"* a|strong=\"H3068\"* flax thread|strong=\"H6616\"* is|strong=\"H3581\"* broken|strong=\"H5423\"* when|strong=\"H3427\"* it|strong=\"H5921\"* touches the|strong=\"H5921\"* fire. So|strong=\"H3808\"* his|strong=\"H5921\"* strength|strong=\"H3581\"* was|strong=\"H6430\"* not|strong=\"H3808\"* known|strong=\"H3045\"*." + }, + { + "verseNum": 10, + "text": "Delilah|strong=\"H1807\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Samson|strong=\"H8123\"*, “Behold|strong=\"H2009\"*, you|strong=\"H5046\"* have|strong=\"H6258\"* mocked|strong=\"H2048\"* me|strong=\"H4994\"*, and|strong=\"H1696\"* told|strong=\"H5046\"* me|strong=\"H4994\"* lies|strong=\"H3576\"*. Now|strong=\"H6258\"* please|strong=\"H4994\"* tell|strong=\"H5046\"* me|strong=\"H4994\"* how|strong=\"H4100\"* you|strong=\"H5046\"* might be|strong=\"H4994\"* bound.”" + }, + { + "verseNum": 11, + "text": "He|strong=\"H6213\"* said to|strong=\"H1961\"* her|strong=\"H6213\"*, “If|strong=\"H1961\"* they|strong=\"H3808\"* only bind me|strong=\"H6213\"* with|strong=\"H6213\"* new|strong=\"H2319\"* ropes|strong=\"H5688\"* with|strong=\"H6213\"* which|strong=\"H4399\"* no|strong=\"H3808\"* work|strong=\"H4399\"* has|strong=\"H1961\"* been|strong=\"H1961\"* done|strong=\"H6213\"*, then|strong=\"H1961\"* I|strong=\"H3808\"* will|strong=\"H1961\"* become|strong=\"H1961\"* weak|strong=\"H2470\"*, and|strong=\"H6213\"* be|strong=\"H1961\"* as|strong=\"H1961\"* another|strong=\"H3808\"* man.”" + }, + { + "verseNum": 12, + "text": "So|strong=\"H3947\"* Delilah|strong=\"H1807\"* took|strong=\"H3947\"* new|strong=\"H2319\"* ropes|strong=\"H5688\"* and|strong=\"H6430\"* bound him|strong=\"H5921\"* with|strong=\"H5921\"* them|strong=\"H5921\"*, then|strong=\"H3947\"* said to|strong=\"H5921\"* him|strong=\"H5921\"*, “The|strong=\"H5921\"* Philistines|strong=\"H6430\"* are|strong=\"H6430\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, Samson|strong=\"H8123\"*!” The|strong=\"H5921\"* ambush was|strong=\"H6430\"* waiting in|strong=\"H3427\"* the|strong=\"H5921\"* inner|strong=\"H2315\"* room|strong=\"H2315\"*. He|strong=\"H5921\"* broke|strong=\"H5423\"* them|strong=\"H5921\"* off|strong=\"H5921\"* his|strong=\"H3947\"* arms|strong=\"H2220\"* like|strong=\"H5423\"* a|strong=\"H3068\"* thread|strong=\"H2339\"*." + }, + { + "verseNum": 13, + "text": "Delilah|strong=\"H1807\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Samson|strong=\"H8123\"*, “Until|strong=\"H5704\"* now|strong=\"H2008\"*, you|strong=\"H5704\"* have|strong=\"H1696\"* mocked|strong=\"H2048\"* me|strong=\"H5046\"* and|strong=\"H7218\"* told|strong=\"H5046\"* me|strong=\"H5046\"* lies|strong=\"H3576\"*. Tell|strong=\"H5046\"* me|strong=\"H5046\"* with|strong=\"H5973\"* what|strong=\"H4100\"* you|strong=\"H5704\"* might be bound.”" + }, + { + "verseNum": 14, + "text": "She|strong=\"H5921\"* fastened|strong=\"H8628\"* it|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H5921\"* pin|strong=\"H3489\"*, and|strong=\"H6430\"* said to|strong=\"H5921\"* him|strong=\"H5921\"*, “The|strong=\"H5921\"* Philistines|strong=\"H6430\"* are|strong=\"H6430\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, Samson|strong=\"H8123\"*!” He|strong=\"H5921\"* awakened|strong=\"H3364\"* out|strong=\"H5265\"* of|strong=\"H5921\"* his|strong=\"H5921\"* sleep|strong=\"H8142\"*, and|strong=\"H6430\"* plucked|strong=\"H5265\"* away|strong=\"H5265\"* the|strong=\"H5921\"* pin|strong=\"H3489\"* of|strong=\"H5921\"* the|strong=\"H5921\"* beam and|strong=\"H6430\"* the|strong=\"H5921\"* fabric|strong=\"H4545\"*." + }, + { + "verseNum": 15, + "text": "She|strong=\"H3820\"* said to|strong=\"H3820\"* him|strong=\"H5046\"*, “How|strong=\"H4100\"* can|strong=\"H4100\"* you|strong=\"H5046\"* say, ‘I|strong=\"H2088\"* love you|strong=\"H5046\"*,’ when your|strong=\"H3808\"* heart|strong=\"H3820\"* is|strong=\"H2088\"* not|strong=\"H3808\"* with|strong=\"H3820\"* me|strong=\"H5046\"*? You|strong=\"H5046\"* have|strong=\"H3808\"* mocked|strong=\"H2048\"* me|strong=\"H5046\"* these|strong=\"H2088\"* three|strong=\"H7969\"* times|strong=\"H6471\"*, and|strong=\"H1419\"* have|strong=\"H3808\"* not|strong=\"H3808\"* told|strong=\"H5046\"* me|strong=\"H5046\"* where|strong=\"H4100\"* your|strong=\"H3808\"* great|strong=\"H1419\"* strength|strong=\"H3581\"* lies.”" + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* she|strong=\"H3588\"* pressed|strong=\"H6693\"* him|strong=\"H4191\"* daily|strong=\"H3117\"* with|strong=\"H1697\"* her|strong=\"H3605\"* words|strong=\"H1697\"* and|strong=\"H3117\"* urged him|strong=\"H4191\"*, his|strong=\"H3605\"* soul|strong=\"H5315\"* was|strong=\"H1961\"* troubled|strong=\"H7114\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H3588\"* told|strong=\"H5046\"* her|strong=\"H3605\"* all|strong=\"H3605\"* his|strong=\"H3605\"* heart|strong=\"H3820\"* and|strong=\"H7218\"* said to|strong=\"H5927\"* her|strong=\"H3605\"*, “No|strong=\"H3808\"* razor|strong=\"H4177\"* has|strong=\"H1961\"* ever|strong=\"H3808\"* come|strong=\"H5927\"* on|strong=\"H5921\"* my|strong=\"H3605\"* head|strong=\"H7218\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* been|strong=\"H1961\"* a|strong=\"H3068\"* Nazirite|strong=\"H5139\"* to|strong=\"H5927\"* God|strong=\"H3808\"* from|strong=\"H4480\"* my|strong=\"H3605\"* mother’s womb. If|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* shaved|strong=\"H1548\"*, then|strong=\"H1961\"* my|strong=\"H3605\"* strength|strong=\"H3581\"* will|strong=\"H1961\"* go|strong=\"H5927\"* from|strong=\"H4480\"* me|strong=\"H5046\"* and|strong=\"H7218\"* I|strong=\"H3588\"* will|strong=\"H1961\"* become|strong=\"H1961\"* weak|strong=\"H2470\"*, and|strong=\"H7218\"* be|strong=\"H1961\"* like|strong=\"H1961\"* any|strong=\"H3605\"* other|strong=\"H3605\"* man|strong=\"H3605\"*.”" + }, + { + "verseNum": 18, + "text": "When|strong=\"H3588\"* Delilah|strong=\"H1807\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H6430\"* told|strong=\"H5046\"* her|strong=\"H3605\"* all|strong=\"H3605\"* his|strong=\"H3605\"* heart|strong=\"H3820\"*, she|strong=\"H3588\"* sent|strong=\"H7971\"* and|strong=\"H3701\"* called|strong=\"H7121\"* for|strong=\"H3588\"* the|strong=\"H3605\"* lords|strong=\"H5633\"* of|strong=\"H3027\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, saying, “Come|strong=\"H5927\"* up|strong=\"H5927\"* this|strong=\"H7200\"* once|strong=\"H6471\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3820\"* told|strong=\"H5046\"* me|strong=\"H7971\"* all|strong=\"H3605\"* his|strong=\"H3605\"* heart|strong=\"H3820\"*.” Then|strong=\"H7971\"* the|strong=\"H3605\"* lords|strong=\"H5633\"* of|strong=\"H3027\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H7971\"* her|strong=\"H3605\"* and|strong=\"H3701\"* brought|strong=\"H5927\"* the|strong=\"H3605\"* money|strong=\"H3701\"* in|strong=\"H3027\"* their|strong=\"H3605\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 19, + "text": "She|strong=\"H7121\"* made|strong=\"H7121\"* him|strong=\"H7121\"* sleep|strong=\"H3462\"* on|strong=\"H5921\"* her|strong=\"H5493\"* knees|strong=\"H1290\"*; and|strong=\"H7218\"* she|strong=\"H7121\"* called|strong=\"H7121\"* for|strong=\"H5921\"* a|strong=\"H3068\"* man|strong=\"H7218\"* and|strong=\"H7218\"* shaved|strong=\"H1548\"* off|strong=\"H5493\"* the|strong=\"H5921\"* seven|strong=\"H7651\"* locks|strong=\"H4253\"* of|strong=\"H7218\"* his|strong=\"H7121\"* head|strong=\"H7218\"*; and|strong=\"H7218\"* she|strong=\"H7121\"* began|strong=\"H2490\"* to|strong=\"H5921\"* afflict|strong=\"H6031\"* him|strong=\"H7121\"*, and|strong=\"H7218\"* his|strong=\"H7121\"* strength|strong=\"H3581\"* went|strong=\"H7218\"* from|strong=\"H5493\"* him|strong=\"H7121\"*." + }, + { + "verseNum": 20, + "text": "She|strong=\"H1931\"* said|strong=\"H3318\"*, “The|strong=\"H5921\"* Philistines|strong=\"H6430\"* are|strong=\"H3068\"* upon|strong=\"H5921\"* you|strong=\"H3588\"*, Samson|strong=\"H8123\"*!”" + }, + { + "verseNum": 21, + "text": "The|strong=\"H1961\"* Philistines|strong=\"H6430\"* laid hold|strong=\"H1004\"* on|strong=\"H1961\"* him|strong=\"H3381\"* and|strong=\"H1004\"* put|strong=\"H3381\"* out|strong=\"H5365\"* his|strong=\"H1961\"* eyes|strong=\"H5869\"*; and|strong=\"H1004\"* they|strong=\"H5178\"* brought|strong=\"H3381\"* him|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Gaza|strong=\"H5804\"* and|strong=\"H1004\"* bound him|strong=\"H3381\"* with|strong=\"H1004\"* fetters|strong=\"H5178\"* of|strong=\"H1004\"* bronze|strong=\"H5178\"*; and|strong=\"H1004\"* he|strong=\"H1004\"* ground|strong=\"H2912\"* at|strong=\"H1004\"* the|strong=\"H1961\"* mill in|strong=\"H1004\"* the|strong=\"H1961\"* prison|strong=\"H1004\"*." + }, + { + "verseNum": 22, + "text": "However, the|strong=\"H2490\"* hair|strong=\"H8181\"* of|strong=\"H7218\"* his|strong=\"H1548\"* head|strong=\"H7218\"* began|strong=\"H2490\"* to|strong=\"H2490\"* grow|strong=\"H6779\"* again|strong=\"H6779\"* after|strong=\"H6779\"* he was|strong=\"H7218\"* shaved|strong=\"H1548\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H5414\"* lords|strong=\"H5633\"* of|strong=\"H3027\"* the|strong=\"H5414\"* Philistines|strong=\"H6430\"* gathered|strong=\"H6430\"* together to|strong=\"H5414\"* offer|strong=\"H2076\"* a|strong=\"H3068\"* great|strong=\"H1419\"* sacrifice|strong=\"H2077\"* to|strong=\"H5414\"* Dagon|strong=\"H1712\"* their|strong=\"H5414\"* god|strong=\"H5414\"*, and|strong=\"H1419\"* to|strong=\"H5414\"* rejoice|strong=\"H8057\"*; for|strong=\"H3027\"* they|strong=\"H3027\"* said, “Our|strong=\"H5414\"* god|strong=\"H5414\"* has|strong=\"H3027\"* delivered|strong=\"H5414\"* Samson|strong=\"H8123\"* our|strong=\"H5414\"* enemy into|strong=\"H3027\"* our|strong=\"H5414\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 24, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* people|strong=\"H5971\"* saw|strong=\"H7200\"* him|strong=\"H5414\"*, they|strong=\"H3588\"* praised|strong=\"H1984\"* their|strong=\"H5414\"* god|strong=\"H5414\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* said, “Our|strong=\"H5414\"* god|strong=\"H5414\"* has|strong=\"H3588\"* delivered|strong=\"H5414\"* our|strong=\"H5414\"* enemy and|strong=\"H3027\"* the|strong=\"H7200\"* destroyer|strong=\"H2717\"* of|strong=\"H3027\"* our|strong=\"H5414\"* country, who|strong=\"H5971\"* has|strong=\"H3588\"* slain|strong=\"H2491\"* many|strong=\"H7235\"* of|strong=\"H3027\"* us|strong=\"H5414\"*, into|strong=\"H3027\"* our|strong=\"H5414\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 25, + "text": "When|strong=\"H3588\"* their|strong=\"H6440\"* hearts|strong=\"H3820\"* were|strong=\"H1961\"* merry|strong=\"H2896\"*, they|strong=\"H3588\"* said|strong=\"H7121\"*, “Call|strong=\"H7121\"* for|strong=\"H3588\"* Samson|strong=\"H8123\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H1961\"* entertain|strong=\"H7832\"* us|strong=\"H6440\"*.” They|strong=\"H3588\"* called|strong=\"H7121\"* for|strong=\"H3588\"* Samson|strong=\"H8123\"* out|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* prison|strong=\"H1004\"*; and|strong=\"H1004\"* he|strong=\"H3588\"* performed before|strong=\"H6440\"* them|strong=\"H6440\"*. They|strong=\"H3588\"* set|strong=\"H5975\"* him|strong=\"H6440\"* between the|strong=\"H6440\"* pillars|strong=\"H5982\"*;" + }, + { + "verseNum": 26, + "text": "and|strong=\"H3027\"* Samson|strong=\"H8123\"* said to|strong=\"H5921\"* the|strong=\"H5921\"* boy|strong=\"H5288\"* who|strong=\"H5288\"* held|strong=\"H2388\"* him|strong=\"H5921\"* by|strong=\"H3027\"* the|strong=\"H5921\"* hand|strong=\"H3027\"*, “Allow|strong=\"H3240\"* me|strong=\"H5921\"* to|strong=\"H5921\"* feel|strong=\"H3559\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"* on|strong=\"H5921\"* which|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* rests|strong=\"H3559\"*, that|strong=\"H5288\"* I|strong=\"H5921\"* may|strong=\"H1004\"* lean|strong=\"H8172\"* on|strong=\"H5921\"* them|strong=\"H5921\"*.”" + }, + { + "verseNum": 27, + "text": "Now|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"* was|strong=\"H1004\"* full|strong=\"H4390\"* of|strong=\"H1004\"* men|strong=\"H3605\"* and|strong=\"H1004\"* women; and|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* lords|strong=\"H5633\"* of|strong=\"H1004\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* were|strong=\"H6430\"* there|strong=\"H8033\"*; and|strong=\"H1004\"* there|strong=\"H8033\"* were|strong=\"H6430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* roof|strong=\"H1406\"* about|strong=\"H5921\"* three|strong=\"H7969\"* thousand men|strong=\"H3605\"* and|strong=\"H1004\"* women, who|strong=\"H3605\"* saw|strong=\"H7200\"* while|strong=\"H5921\"* Samson|strong=\"H8123\"* performed." + }, + { + "verseNum": 28, + "text": "Samson|strong=\"H8123\"* called|strong=\"H7121\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H7121\"*, “Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, remember|strong=\"H2142\"* me|strong=\"H4994\"*, please|strong=\"H4994\"*, and|strong=\"H3068\"* strengthen|strong=\"H2388\"* me|strong=\"H4994\"*, please|strong=\"H4994\"*, only this|strong=\"H2088\"* once|strong=\"H6471\"*, God|strong=\"H3068\"*, that|strong=\"H3068\"* I|strong=\"H2088\"* may|strong=\"H4994\"* be|strong=\"H3068\"* at|strong=\"H3068\"* once|strong=\"H6471\"* avenged|strong=\"H5358\"* of|strong=\"H3068\"* the|strong=\"H3069\"* Philistines|strong=\"H6430\"* for|strong=\"H7121\"* my|strong=\"H3068\"* two|strong=\"H8147\"* eyes|strong=\"H5869\"*.”" + }, + { + "verseNum": 29, + "text": "Samson|strong=\"H8123\"* took|strong=\"H8123\"* hold|strong=\"H3943\"* of|strong=\"H1004\"* the|strong=\"H5921\"* two|strong=\"H8147\"* middle|strong=\"H8432\"* pillars|strong=\"H5982\"* on|strong=\"H5921\"* which|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* rested|strong=\"H5564\"* and|strong=\"H1004\"* leaned|strong=\"H5564\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, the|strong=\"H5921\"* one|strong=\"H8147\"* with|strong=\"H1004\"* his|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H1004\"* the|strong=\"H5921\"* other|strong=\"H8147\"* with|strong=\"H1004\"* his|strong=\"H5921\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 30, + "text": "Samson|strong=\"H8123\"* said, “Let|strong=\"H5186\"* me|strong=\"H5315\"* die|strong=\"H4191\"* with|strong=\"H5973\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*!” He|strong=\"H3605\"* bowed|strong=\"H5186\"* himself|strong=\"H5315\"* with|strong=\"H5973\"* all|strong=\"H3605\"* his|strong=\"H3605\"* might|strong=\"H3581\"*; and|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* the|strong=\"H3605\"* lords|strong=\"H5633\"*, and|strong=\"H1004\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H1961\"* in|strong=\"H5921\"* it|strong=\"H5921\"*. So|strong=\"H1961\"* the|strong=\"H3605\"* dead|strong=\"H4191\"* that|strong=\"H5971\"* he|strong=\"H3605\"* killed|strong=\"H4191\"* at|strong=\"H5921\"* his|strong=\"H3605\"* death|strong=\"H4194\"* were|strong=\"H1961\"* more|strong=\"H7227\"* than|strong=\"H5921\"* those|strong=\"H3605\"* who|strong=\"H3605\"* he|strong=\"H3605\"* killed|strong=\"H4191\"* in|strong=\"H5921\"* his|strong=\"H3605\"* life|strong=\"H5315\"*." + }, + { + "verseNum": 31, + "text": "Then|strong=\"H5375\"* his|strong=\"H3605\"* brothers and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* his|strong=\"H3605\"* father came|strong=\"H5927\"* down|strong=\"H3381\"* and|strong=\"H3478\"* took|strong=\"H5375\"* him|strong=\"H3381\"*, and|strong=\"H3478\"* brought|strong=\"H5927\"* him|strong=\"H3381\"* up|strong=\"H5927\"* and|strong=\"H3478\"* buried|strong=\"H6912\"* him|strong=\"H3381\"* between|strong=\"H8199\"* Zorah|strong=\"H6881\"* and|strong=\"H3478\"* Eshtaol in|strong=\"H8141\"* the|strong=\"H3605\"* burial|strong=\"H6913\"* site of|strong=\"H1004\"* Manoah|strong=\"H4495\"* his|strong=\"H3605\"* father. He|strong=\"H1931\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "There|strong=\"H1961\"* was|strong=\"H8034\"* a|strong=\"H3068\"* man of|strong=\"H2022\"* the|strong=\"H1961\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim|strong=\"H8034\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Micah|strong=\"H4319\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3068\"* said to|strong=\"H3068\"* his|strong=\"H3068\"* mother, “The|strong=\"H3947\"* eleven hundred|strong=\"H3967\"* pieces of|strong=\"H1121\"* silver|strong=\"H3701\"* that|strong=\"H3068\"* were|strong=\"H1121\"* taken|strong=\"H3947\"* from|strong=\"H1121\"* you|strong=\"H3947\"*, about|strong=\"H3947\"* which|strong=\"H3068\"* you|strong=\"H3947\"* uttered a|strong=\"H3068\"* curse|strong=\"H1288\"*, and|strong=\"H3967\"* also|strong=\"H1571\"* spoke it|strong=\"H3947\"* in|strong=\"H3068\"* my|strong=\"H3068\"* ears—behold|strong=\"H2009\"*, the|strong=\"H3947\"* silver|strong=\"H3701\"* is|strong=\"H3068\"* with|strong=\"H3068\"* me|strong=\"H3947\"*. I|strong=\"H2009\"* took|strong=\"H3947\"* it|strong=\"H3947\"*.”" + }, + { + "verseNum": 3, + "text": "He|strong=\"H6213\"* restored|strong=\"H7725\"* the|strong=\"H6213\"* eleven hundred|strong=\"H3967\"* pieces of|strong=\"H1121\"* silver|strong=\"H3701\"* to|strong=\"H7725\"* his|strong=\"H3068\"* mother, then|strong=\"H6258\"* his|strong=\"H3068\"* mother said, “I|strong=\"H6258\"* most|strong=\"H3068\"* certainly|strong=\"H6213\"* dedicate|strong=\"H6942\"* the|strong=\"H6213\"* silver|strong=\"H3701\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* from|strong=\"H7725\"* my|strong=\"H3068\"* hand|strong=\"H3027\"* for|strong=\"H6213\"* my|strong=\"H3068\"* son|strong=\"H1121\"*, to|strong=\"H7725\"* make|strong=\"H6213\"* a|strong=\"H3068\"* carved|strong=\"H6213\"* image|strong=\"H6459\"* and|strong=\"H3967\"* a|strong=\"H3068\"* molten|strong=\"H4541\"* image|strong=\"H6459\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* I|strong=\"H6258\"* will|strong=\"H3068\"* restore|strong=\"H7725\"* it|strong=\"H6213\"* to|strong=\"H7725\"* you|strong=\"H7725\"*.”" + }, + { + "verseNum": 4, + "text": "When|strong=\"H1961\"* he|strong=\"H6213\"* restored|strong=\"H7725\"* the|strong=\"H5414\"* money|strong=\"H3701\"* to|strong=\"H7725\"* his|strong=\"H5414\"* mother, his|strong=\"H5414\"* mother took|strong=\"H3947\"* two|strong=\"H3947\"* hundred|strong=\"H3967\"* pieces of|strong=\"H1004\"* silver|strong=\"H3701\"*, and|strong=\"H3967\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H7725\"* a|strong=\"H3068\"* silversmith|strong=\"H6884\"*, who|strong=\"H6884\"* made|strong=\"H6213\"* a|strong=\"H3068\"* carved|strong=\"H6213\"* image|strong=\"H6459\"* and|strong=\"H3967\"* a|strong=\"H3068\"* molten|strong=\"H4541\"* image|strong=\"H6459\"* out|strong=\"H5414\"* of|strong=\"H1004\"* it|strong=\"H5414\"*. It|strong=\"H5414\"* was|strong=\"H1961\"* in|strong=\"H6213\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Micah|strong=\"H4319\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H6213\"* man|strong=\"H1121\"* Micah|strong=\"H4318\"* had|strong=\"H1961\"* a|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1121\"* gods, and|strong=\"H1121\"* he|strong=\"H6213\"* made|strong=\"H6213\"* an|strong=\"H6213\"* ephod, and|strong=\"H1121\"* teraphim|strong=\"H8655\"*,+ 17:5 teraphim were household idols that may have been associated with inheritance rights to the household property.* and|strong=\"H1121\"* consecrated|strong=\"H4390\"* one|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H3027\"* sons|strong=\"H1121\"*, who|strong=\"H3548\"* became|strong=\"H1961\"* his|strong=\"H3027\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"H3478\"* those|strong=\"H1992\"* days|strong=\"H3117\"* there|strong=\"H1992\"* was|strong=\"H3478\"* no|strong=\"H6213\"* king|strong=\"H4428\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*. Everyone did|strong=\"H6213\"* that|strong=\"H3117\"* which|strong=\"H1992\"* was|strong=\"H3478\"* right|strong=\"H3477\"* in|strong=\"H3478\"* his|strong=\"H3478\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 7, + "text": "There|strong=\"H8033\"* was|strong=\"H1961\"* a|strong=\"H3068\"* young|strong=\"H5288\"* man|strong=\"H5288\"* out|strong=\"H8033\"* of|strong=\"H4940\"* Bethlehem|strong=\"H1035\"* Judah|strong=\"H3063\"*, of|strong=\"H4940\"* the|strong=\"H1961\"* family|strong=\"H4940\"* of|strong=\"H4940\"* Judah|strong=\"H3063\"*, who|strong=\"H1931\"* was|strong=\"H1961\"* a|strong=\"H3068\"* Levite|strong=\"H3881\"*; and|strong=\"H3063\"* he|strong=\"H1931\"* lived|strong=\"H1481\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H6213\"* man departed|strong=\"H3212\"* out|strong=\"H4672\"* of|strong=\"H1004\"* the|strong=\"H6213\"* city|strong=\"H5892\"*, out|strong=\"H4672\"* of|strong=\"H1004\"* Bethlehem|strong=\"H1035\"* Judah|strong=\"H3063\"*, to|strong=\"H5704\"* live|strong=\"H1481\"* where|strong=\"H1004\"* he|strong=\"H5704\"* could find|strong=\"H4672\"* a|strong=\"H3068\"* place|strong=\"H1004\"*, and|strong=\"H3063\"* he|strong=\"H5704\"* came|strong=\"H3212\"* to|strong=\"H5704\"* the|strong=\"H6213\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1004\"* Ephraim, to|strong=\"H5704\"* the|strong=\"H6213\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Micah|strong=\"H4318\"*, as|strong=\"H5704\"* he|strong=\"H5704\"* traveled." + }, + { + "verseNum": 9, + "text": "Micah|strong=\"H4318\"* said to|strong=\"H1980\"* him|strong=\"H4672\"*, “Where did|strong=\"H3063\"* you|strong=\"H4672\"* come|strong=\"H1980\"* from|strong=\"H1980\"*?”" + }, + { + "verseNum": 10, + "text": "Micah|strong=\"H4318\"* said to|strong=\"H3212\"* him|strong=\"H5414\"*, “Dwell|strong=\"H3427\"* with|strong=\"H3427\"* me|strong=\"H5414\"*, and|strong=\"H3701\"* be|strong=\"H1961\"* to|strong=\"H3212\"* me|strong=\"H5414\"* a|strong=\"H3068\"* father and|strong=\"H3701\"* a|strong=\"H3068\"* priest|strong=\"H3548\"*, and|strong=\"H3701\"* I|strong=\"H3117\"* will|strong=\"H1961\"* give|strong=\"H5414\"* you|strong=\"H5414\"* ten|strong=\"H6235\"* pieces of|strong=\"H3117\"* silver|strong=\"H3701\"* per year|strong=\"H3117\"*, a|strong=\"H3068\"* suit|strong=\"H6187\"* of|strong=\"H3117\"* clothing, and|strong=\"H3701\"* your|strong=\"H5414\"* food.” So|strong=\"H1961\"* the|strong=\"H5414\"* Levite|strong=\"H3881\"* went|strong=\"H3212\"* in|strong=\"H3427\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H1961\"* Levite|strong=\"H3881\"* was|strong=\"H1961\"* content|strong=\"H2974\"* to|strong=\"H1961\"* dwell|strong=\"H3427\"* with|strong=\"H3427\"* the|strong=\"H1961\"* man|strong=\"H5288\"*; and|strong=\"H1121\"* the|strong=\"H1961\"* young|strong=\"H5288\"* man|strong=\"H5288\"* was|strong=\"H1961\"* to|strong=\"H1961\"* him|strong=\"H1961\"* as|strong=\"H1961\"* one|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H1961\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 12, + "text": "Micah|strong=\"H4318\"* consecrated|strong=\"H4390\"* the|strong=\"H4390\"* Levite|strong=\"H3881\"*, and|strong=\"H3027\"* the|strong=\"H4390\"* young|strong=\"H5288\"* man|strong=\"H5288\"* became|strong=\"H1961\"* his|strong=\"H3027\"* priest|strong=\"H3548\"*, and|strong=\"H3027\"* was|strong=\"H1961\"* in|strong=\"H1004\"* the|strong=\"H4390\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Micah|strong=\"H4318\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H1961\"* Micah|strong=\"H4318\"* said, “Now|strong=\"H6258\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H3190\"* good|strong=\"H3190\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, since|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* a|strong=\"H3068\"* Levite|strong=\"H3881\"* as|strong=\"H1961\"* my|strong=\"H3068\"* priest|strong=\"H3548\"*.”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3427\"* those|strong=\"H1992\"* days|strong=\"H3117\"* there|strong=\"H3427\"* was|strong=\"H3478\"* no|strong=\"H3808\"* king|strong=\"H4428\"* in|strong=\"H3427\"* Israel|strong=\"H3478\"*. In|strong=\"H3427\"* those|strong=\"H1992\"* days|strong=\"H3117\"* the|strong=\"H3588\"* tribe|strong=\"H7626\"* of|strong=\"H4428\"* the|strong=\"H3588\"* Danites|strong=\"H1839\"* sought|strong=\"H1245\"* an|strong=\"H3588\"* inheritance|strong=\"H5159\"* to|strong=\"H5704\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"*; for|strong=\"H3588\"* to|strong=\"H5704\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, their|strong=\"H1245\"* inheritance|strong=\"H5159\"* had|strong=\"H3478\"* not|strong=\"H3808\"* fallen|strong=\"H5307\"* to|strong=\"H5704\"* them|strong=\"H1992\"* among|strong=\"H8432\"* the|strong=\"H3588\"* tribes|strong=\"H7626\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5704\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* sent|strong=\"H7971\"* five|strong=\"H2568\"* men|strong=\"H1121\"* of|strong=\"H1121\"* their|strong=\"H7971\"* family|strong=\"H4940\"* from|strong=\"H1121\"* their|strong=\"H7971\"* whole|strong=\"H7098\"* number|strong=\"H7098\"*, men|strong=\"H1121\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*, from|strong=\"H1121\"* Zorah|strong=\"H6881\"* and|strong=\"H1121\"* from|strong=\"H1121\"* Eshtaol, to|strong=\"H5704\"* spy|strong=\"H7270\"* out|strong=\"H7971\"* the|strong=\"H5704\"* land|strong=\"H4940\"* and|strong=\"H1121\"* to|strong=\"H5704\"* search|strong=\"H2713\"* it|strong=\"H8033\"*. They|strong=\"H8033\"* said to|strong=\"H5704\"* them|strong=\"H7971\"*, “Go|strong=\"H3212\"*, explore|strong=\"H2713\"* the|strong=\"H5704\"* land|strong=\"H4940\"*!”" + }, + { + "verseNum": 3, + "text": "When|strong=\"H6213\"* they|strong=\"H1992\"* were|strong=\"H3881\"* by|strong=\"H5973\"* the|strong=\"H6213\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Micah|strong=\"H4318\"*, they|strong=\"H1992\"* knew|strong=\"H5234\"* the|strong=\"H6213\"* voice|strong=\"H6963\"* of|strong=\"H1004\"* the|strong=\"H6213\"* young|strong=\"H5288\"* man|strong=\"H5288\"* the|strong=\"H6213\"* Levite|strong=\"H3881\"*; so|strong=\"H6213\"* they|strong=\"H1992\"* went|strong=\"H3881\"* over|strong=\"H6213\"* there|strong=\"H8033\"* and|strong=\"H1004\"* said to|strong=\"H6213\"* him|strong=\"H6213\"*, “Who|strong=\"H4310\"* brought|strong=\"H6213\"* you|strong=\"H6213\"* here|strong=\"H6311\"*? What|strong=\"H4100\"* do|strong=\"H6213\"* you|strong=\"H6213\"* do|strong=\"H6213\"* in|strong=\"H6213\"* this|strong=\"H2088\"* place|strong=\"H1004\"*? What|strong=\"H4100\"* do|strong=\"H6213\"* you|strong=\"H6213\"* have|strong=\"H5288\"* here|strong=\"H6311\"*?”" + }, + { + "verseNum": 4, + "text": "He|strong=\"H6213\"* said to|strong=\"H1961\"* them|strong=\"H6213\"*, “Thus|strong=\"H2088\"* and|strong=\"H3548\"* thus|strong=\"H2088\"* has|strong=\"H1961\"* Micah|strong=\"H4318\"* dealt|strong=\"H6213\"* with|strong=\"H6213\"* me|strong=\"H6213\"*, and|strong=\"H3548\"* he|strong=\"H6213\"* has|strong=\"H1961\"* hired|strong=\"H7936\"* me|strong=\"H6213\"*, and|strong=\"H3548\"* I|strong=\"H2088\"* have|strong=\"H1961\"* become|strong=\"H1961\"* his|strong=\"H1961\"* priest|strong=\"H3548\"*.”" + }, + { + "verseNum": 5, + "text": "They|strong=\"H5921\"* said to|strong=\"H1980\"* him|strong=\"H5921\"*, “Please|strong=\"H4994\"* ask|strong=\"H7592\"* counsel|strong=\"H7592\"* of|strong=\"H1870\"* God, that|strong=\"H3045\"* we|strong=\"H3068\"* may|strong=\"H4994\"* know|strong=\"H3045\"* whether|strong=\"H3045\"* our|strong=\"H5921\"* way|strong=\"H1870\"* which we|strong=\"H3068\"* go|strong=\"H1980\"* shall|strong=\"H1870\"* be|strong=\"H4994\"* prosperous|strong=\"H6743\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H3068\"* priest|strong=\"H3548\"* said to|strong=\"H3068\"* them|strong=\"H3068\"*, “Go|strong=\"H3212\"* in|strong=\"H3068\"* peace|strong=\"H7965\"*. Your|strong=\"H3068\"* way|strong=\"H1870\"* in|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H1870\"* go|strong=\"H3212\"* is|strong=\"H3068\"* before|strong=\"H5227\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 7, + "text": "Then|strong=\"H7200\"* the|strong=\"H7200\"* five|strong=\"H2568\"* men|strong=\"H5971\"* departed|strong=\"H3212\"* and|strong=\"H4941\"* came|strong=\"H3212\"* to|strong=\"H3212\"* Laish|strong=\"H3919\"* and|strong=\"H4941\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* there|strong=\"H3427\"*, how they|strong=\"H1992\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* safety, in|strong=\"H3427\"* the|strong=\"H7200\"* way|strong=\"H3212\"* of|strong=\"H1697\"* the|strong=\"H7200\"* Sidonians|strong=\"H6722\"*, quiet|strong=\"H8252\"* and|strong=\"H4941\"* secure|strong=\"H3427\"*; for|strong=\"H3427\"* there|strong=\"H3427\"* was|strong=\"H1697\"* no|strong=\"H7200\"* one|strong=\"H7200\"* in|strong=\"H3427\"* the|strong=\"H7200\"* land|strong=\"H7130\"* possessing authority|strong=\"H1697\"*, that|strong=\"H5971\"* might|strong=\"H5971\"* put them|strong=\"H1992\"* to|strong=\"H3212\"* shame|strong=\"H3637\"* in|strong=\"H3427\"* anything|strong=\"H1697\"*, and|strong=\"H4941\"* they|strong=\"H1992\"* were|strong=\"H5971\"* far|strong=\"H7350\"* from|strong=\"H3423\"* the|strong=\"H7200\"* Sidonians|strong=\"H6722\"*, and|strong=\"H4941\"* had|strong=\"H5971\"* no|strong=\"H7200\"* dealings|strong=\"H1697\"* with|strong=\"H5973\"* anyone|strong=\"H7200\"* else." + }, + { + "verseNum": 8, + "text": "They|strong=\"H4100\"* came to|strong=\"H4100\"* their|strong=\"H4100\"* brothers at Zorah|strong=\"H6881\"* and|strong=\"H6881\"* Eshtaol; and|strong=\"H6881\"* their|strong=\"H4100\"* brothers asked|strong=\"H4100\"* them, “What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H4100\"* say?”" + }, + { + "verseNum": 9, + "text": "They|strong=\"H3588\"* said, “Arise|strong=\"H6965\"*, and|strong=\"H6965\"* let|strong=\"H3212\"*’s go|strong=\"H3212\"* up|strong=\"H5927\"* against|strong=\"H5921\"* them|strong=\"H5921\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* the|strong=\"H5921\"* land, and|strong=\"H6965\"* behold|strong=\"H2009\"*, it|strong=\"H5921\"* is|strong=\"H2896\"* very|strong=\"H3966\"* good|strong=\"H2896\"*. Do you|strong=\"H3588\"* stand|strong=\"H6965\"* still|strong=\"H2814\"*? Don’t be|strong=\"H2896\"* slothful|strong=\"H6101\"* to|strong=\"H3212\"* go|strong=\"H3212\"* and|strong=\"H6965\"* to|strong=\"H3212\"* enter|strong=\"H5927\"* in|strong=\"H5921\"* to|strong=\"H3212\"* possess|strong=\"H3423\"* the|strong=\"H5921\"* land." + }, + { + "verseNum": 10, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H5971\"*, you|strong=\"H3588\"* will|strong=\"H5971\"* come|strong=\"H5971\"* to|strong=\"H5414\"* an|strong=\"H5414\"* unsuspecting people|strong=\"H5971\"*, and|strong=\"H3027\"* the|strong=\"H3605\"* land|strong=\"H4725\"* is|strong=\"H3027\"* large|strong=\"H7342\"*; for|strong=\"H3588\"* God|strong=\"H5414\"* has|strong=\"H3588\"* given|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H3605\"* hand|strong=\"H3027\"*, a|strong=\"H3068\"* place|strong=\"H4725\"* where|strong=\"H8033\"* there|strong=\"H8033\"* is|strong=\"H3027\"* no|strong=\"H3605\"* lack|strong=\"H4270\"* of|strong=\"H3027\"* anything|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H3027\"* in|strong=\"H3027\"* the|strong=\"H3605\"* earth.”" + }, + { + "verseNum": 11, + "text": "The|strong=\"H8033\"* family|strong=\"H4940\"* of|strong=\"H3627\"* the|strong=\"H8033\"* Danites|strong=\"H1839\"* set|strong=\"H5265\"* out|strong=\"H5265\"* from|strong=\"H5265\"* Zorah|strong=\"H6881\"* and|strong=\"H3967\"* Eshtaol with|strong=\"H2296\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* men armed|strong=\"H4421\"* with|strong=\"H2296\"* weapons|strong=\"H3627\"* of|strong=\"H3627\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3117\"* went|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H3063\"* encamped|strong=\"H2583\"* in|strong=\"H5921\"* Kiriath|strong=\"H7157\"* Jearim in|strong=\"H5921\"* Judah|strong=\"H3063\"*. Therefore|strong=\"H3651\"* they|strong=\"H3117\"* call|strong=\"H7121\"* that|strong=\"H3117\"* place|strong=\"H4725\"* Mahaneh Dan to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*. Behold|strong=\"H2009\"*, it|strong=\"H1931\"* is|strong=\"H2088\"* behind|strong=\"H5921\"* Kiriath|strong=\"H7157\"* Jearim." + }, + { + "verseNum": 13, + "text": "They|strong=\"H8033\"* passed|strong=\"H5674\"* from|strong=\"H5704\"* there|strong=\"H8033\"* to|strong=\"H5704\"* the|strong=\"H5704\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1004\"* Ephraim, and|strong=\"H1004\"* came|strong=\"H5674\"* to|strong=\"H5704\"* the|strong=\"H5704\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Micah|strong=\"H4318\"*." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H6030\"* the|strong=\"H3588\"* five|strong=\"H2568\"* men|strong=\"H1980\"* who|strong=\"H3588\"* went|strong=\"H1980\"* to|strong=\"H1980\"* spy|strong=\"H7270\"* out|strong=\"H7270\"* the|strong=\"H3588\"* country of|strong=\"H1004\"* Laish|strong=\"H3919\"* answered|strong=\"H6030\"* and|strong=\"H1980\"* said|strong=\"H6030\"* to|strong=\"H1980\"* their|strong=\"H3588\"* brothers, “Do|strong=\"H6213\"* you|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3426\"* in|strong=\"H1980\"* these|strong=\"H6213\"* houses|strong=\"H1004\"* an|strong=\"H6213\"* ephod, and|strong=\"H1980\"* teraphim|strong=\"H8655\"*,+ 18:14 teraphim were household idols that may have been associated with inheritance rights to the household property.* and|strong=\"H1980\"* a|strong=\"H3068\"* carved|strong=\"H6213\"* image|strong=\"H6459\"*, and|strong=\"H1980\"* a|strong=\"H3068\"* molten|strong=\"H4541\"* image|strong=\"H6459\"*? Now|strong=\"H6258\"* therefore|strong=\"H6258\"* consider|strong=\"H3045\"* what|strong=\"H4100\"* you|strong=\"H3588\"* have|strong=\"H3426\"* to|strong=\"H1980\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 15, + "text": "They|strong=\"H8033\"* went|strong=\"H3881\"* over there|strong=\"H8033\"* and|strong=\"H1004\"* came to|strong=\"H1004\"* the|strong=\"H5493\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5493\"* young|strong=\"H5288\"* Levite|strong=\"H3881\"* man|strong=\"H5288\"*, even to|strong=\"H1004\"* the|strong=\"H5493\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Micah|strong=\"H4318\"*, and|strong=\"H1004\"* asked|strong=\"H7592\"* him|strong=\"H7592\"* how|strong=\"H7965\"* he|strong=\"H8033\"* was|strong=\"H1004\"* doing." + }, + { + "verseNum": 16, + "text": "The|strong=\"H1121\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* men|strong=\"H1121\"* armed|strong=\"H4421\"* with|strong=\"H2296\"* their|strong=\"H1835\"* weapons|strong=\"H3627\"* of|strong=\"H1121\"* war|strong=\"H4421\"*, who|strong=\"H1121\"* were|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*, stood|strong=\"H5324\"* by|strong=\"H3627\"* the|strong=\"H1121\"* entrance|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H1121\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3947\"* five|strong=\"H2568\"* men|strong=\"H1980\"* who|strong=\"H3548\"* went|strong=\"H1980\"* to|strong=\"H1980\"* spy|strong=\"H7270\"* out|strong=\"H7270\"* the|strong=\"H3947\"* land went|strong=\"H1980\"* up|strong=\"H5927\"*, and|strong=\"H3967\"* came|strong=\"H5927\"* in|strong=\"H1980\"* there|strong=\"H8033\"*, and|strong=\"H3967\"* took|strong=\"H3947\"* the|strong=\"H3947\"* engraved|strong=\"H6456\"* image|strong=\"H4541\"*, the|strong=\"H3947\"* ephod, the|strong=\"H3947\"* teraphim|strong=\"H8655\"*, and|strong=\"H3967\"* the|strong=\"H3947\"* molten|strong=\"H4541\"* image|strong=\"H4541\"*; and|strong=\"H3967\"* the|strong=\"H3947\"* priest|strong=\"H3548\"* stood|strong=\"H5324\"* by|strong=\"H1980\"* the|strong=\"H3947\"* entrance|strong=\"H6607\"* of|strong=\"H3627\"* the|strong=\"H3947\"* gate|strong=\"H8179\"* with|strong=\"H1980\"* the|strong=\"H3947\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* men|strong=\"H1980\"* armed|strong=\"H4421\"* with|strong=\"H1980\"* weapons|strong=\"H3627\"* of|strong=\"H3627\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H6213\"* these|strong=\"H6213\"* went|strong=\"H3548\"* into|strong=\"H6213\"* Micah|strong=\"H4318\"*’s house|strong=\"H1004\"*, and|strong=\"H1004\"* took|strong=\"H3947\"* the|strong=\"H3947\"* engraved image|strong=\"H6459\"*, the|strong=\"H3947\"* ephod, the|strong=\"H3947\"* teraphim|strong=\"H8655\"*, and|strong=\"H1004\"* the|strong=\"H3947\"* molten|strong=\"H4541\"* image|strong=\"H6459\"*, the|strong=\"H3947\"* priest|strong=\"H3548\"* said to|strong=\"H6213\"* them|strong=\"H6213\"*, “What|strong=\"H4100\"* are|strong=\"H4100\"* you|strong=\"H3947\"* doing|strong=\"H6213\"*?”" + }, + { + "verseNum": 19, + "text": "They|strong=\"H5921\"* said|strong=\"H2790\"* to|strong=\"H3478\"* him|strong=\"H5921\"*, “Hold|strong=\"H1004\"* your|strong=\"H5921\"* peace|strong=\"H2790\"*, put|strong=\"H7760\"* your|strong=\"H5921\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* your|strong=\"H5921\"* mouth|strong=\"H6310\"*, and|strong=\"H3478\"* go|strong=\"H3212\"* with|strong=\"H5973\"* us|strong=\"H5921\"*. Be|strong=\"H1961\"* a|strong=\"H3068\"* father and|strong=\"H3478\"* a|strong=\"H3068\"* priest|strong=\"H3548\"* to|strong=\"H3478\"* us|strong=\"H5921\"*. Is|strong=\"H3027\"* it|strong=\"H7760\"* better|strong=\"H2896\"* for|strong=\"H5921\"* you|strong=\"H5921\"* to|strong=\"H3478\"* be|strong=\"H1961\"* priest|strong=\"H3548\"* to|strong=\"H3478\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* one|strong=\"H2896\"* man|strong=\"H2896\"*, or|strong=\"H2896\"* to|strong=\"H3478\"* be|strong=\"H1961\"* priest|strong=\"H3548\"* to|strong=\"H3478\"* a|strong=\"H3068\"* tribe|strong=\"H7626\"* and|strong=\"H3478\"* a|strong=\"H3068\"* family|strong=\"H4940\"* in|strong=\"H5921\"* Israel|strong=\"H3478\"*?”" + }, + { + "verseNum": 20, + "text": "The|strong=\"H3947\"* priest|strong=\"H3548\"*’s heart|strong=\"H3820\"* was|strong=\"H3820\"* glad|strong=\"H3190\"*, and|strong=\"H3548\"* he|strong=\"H5971\"* took|strong=\"H3947\"* the|strong=\"H3947\"* ephod, the|strong=\"H3947\"* teraphim|strong=\"H8655\"*, and|strong=\"H3548\"* the|strong=\"H3947\"* engraved image|strong=\"H6459\"*, and|strong=\"H3548\"* went|strong=\"H5971\"* with|strong=\"H5971\"* the|strong=\"H3947\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 21, + "text": "So|strong=\"H7760\"* they|strong=\"H6440\"* turned|strong=\"H6437\"* and|strong=\"H3212\"* departed|strong=\"H3212\"*, and|strong=\"H3212\"* put|strong=\"H7760\"* the|strong=\"H6440\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, the|strong=\"H6440\"* livestock|strong=\"H4735\"*, and|strong=\"H3212\"* the|strong=\"H6440\"* goods before|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 22, + "text": "When|strong=\"H1121\"* they|strong=\"H1992\"* were|strong=\"H1121\"* a|strong=\"H3068\"* good|strong=\"H7368\"* way|strong=\"H7368\"* from|strong=\"H1121\"* the|strong=\"H5973\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Micah|strong=\"H4318\"*, the|strong=\"H5973\"* men|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* in|strong=\"H1004\"* the|strong=\"H5973\"* houses|strong=\"H1004\"* near|strong=\"H5973\"* Micah|strong=\"H4318\"*’s house|strong=\"H1004\"* gathered|strong=\"H2199\"* together|strong=\"H2199\"* and|strong=\"H1121\"* overtook|strong=\"H1692\"* the|strong=\"H5973\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*." + }, + { + "verseNum": 23, + "text": "As|strong=\"H3588\"* they|strong=\"H3588\"* called|strong=\"H7121\"* to|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*, they|strong=\"H3588\"* turned|strong=\"H5437\"* their|strong=\"H6440\"* faces|strong=\"H6440\"*, and|strong=\"H1121\"* said|strong=\"H7121\"* to|strong=\"H6440\"* Micah|strong=\"H4318\"*, “What|strong=\"H4100\"* ails you|strong=\"H3588\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* come|strong=\"H5437\"* with|strong=\"H6440\"* such a|strong=\"H3068\"* company|strong=\"H2199\"*?”" + }, + { + "verseNum": 24, + "text": "He|strong=\"H6213\"* said, “You|strong=\"H3947\"* have|strong=\"H3548\"* taken|strong=\"H3947\"* away|strong=\"H3947\"* my|strong=\"H3947\"* gods which|strong=\"H4100\"* I|strong=\"H2088\"* made|strong=\"H6213\"*, and|strong=\"H3212\"* the|strong=\"H3947\"* priest|strong=\"H3548\"*, and|strong=\"H3212\"* have|strong=\"H3548\"* gone|strong=\"H3212\"* away|strong=\"H3947\"*! What|strong=\"H4100\"* more|strong=\"H5750\"* do|strong=\"H6213\"* I|strong=\"H2088\"* have|strong=\"H3548\"*? How|strong=\"H4100\"* can|strong=\"H4100\"* you|strong=\"H3947\"* ask me|strong=\"H6213\"*, ‘What|strong=\"H4100\"* ails you|strong=\"H3947\"*?’”" + }, + { + "verseNum": 25, + "text": "The|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* said|strong=\"H8085\"* to|strong=\"H8085\"* him|strong=\"H5973\"*, “Don’t let|strong=\"H5315\"* your|strong=\"H8085\"* voice|strong=\"H6963\"* be|strong=\"H1121\"* heard|strong=\"H8085\"* among|strong=\"H5973\"* us|strong=\"H6435\"*, lest|strong=\"H6435\"* angry|strong=\"H4751\"* fellows|strong=\"H1121\"* fall|strong=\"H6293\"* on|strong=\"H1004\"* you|strong=\"H5973\"*, and|strong=\"H1121\"* you|strong=\"H5973\"* lose your|strong=\"H8085\"* life|strong=\"H5315\"*, with|strong=\"H5973\"* the|strong=\"H8085\"* lives|strong=\"H5315\"* of|strong=\"H1121\"* your|strong=\"H8085\"* household|strong=\"H1004\"*.”" + }, + { + "verseNum": 26, + "text": "The|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* went|strong=\"H3212\"* their|strong=\"H1992\"* way|strong=\"H1870\"*; and|strong=\"H1121\"* when|strong=\"H3588\"* Micah|strong=\"H4318\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H1121\"* too|strong=\"H4480\"* strong|strong=\"H2389\"* for|strong=\"H3588\"* him|strong=\"H7725\"*, he|strong=\"H3588\"* turned|strong=\"H6437\"* and|strong=\"H1121\"* went|strong=\"H3212\"* back|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"H1992\"* took|strong=\"H3947\"* that|strong=\"H5971\"* which|strong=\"H1992\"* Micah|strong=\"H4318\"* had|strong=\"H1961\"* made|strong=\"H6213\"*, and|strong=\"H3548\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* whom|strong=\"H1992\"* he|strong=\"H6213\"* had|strong=\"H1961\"*, and|strong=\"H3548\"* came|strong=\"H1961\"* to|strong=\"H1961\"* Laish|strong=\"H3919\"*, to|strong=\"H1961\"* a|strong=\"H3068\"* people|strong=\"H5971\"* quiet|strong=\"H8252\"* and|strong=\"H3548\"* unsuspecting, and|strong=\"H3548\"* struck|strong=\"H5221\"* them|strong=\"H1992\"* with|strong=\"H8313\"* the|strong=\"H5921\"* edge|strong=\"H6310\"* of|strong=\"H5892\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*; then|strong=\"H1961\"* they|strong=\"H1992\"* burned|strong=\"H8313\"* the|strong=\"H5921\"* city|strong=\"H5892\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 28, + "text": "There|strong=\"H3427\"* was|strong=\"H1931\"* no deliverer|strong=\"H5337\"*, because|strong=\"H3588\"* it|strong=\"H1931\"* was|strong=\"H1931\"* far|strong=\"H7350\"* from|strong=\"H7350\"* Sidon|strong=\"H6721\"*, and|strong=\"H5892\"* they|strong=\"H3588\"* had|strong=\"H3588\"* no dealings|strong=\"H1697\"* with|strong=\"H5973\"* anyone|strong=\"H3588\"* else|strong=\"H3588\"*; and|strong=\"H5892\"* it|strong=\"H1931\"* was|strong=\"H1931\"* in|strong=\"H3427\"* the|strong=\"H3588\"* valley|strong=\"H6010\"* that|strong=\"H3588\"* lies|strong=\"H1697\"* by|strong=\"H5892\"* Beth Rehob. They|strong=\"H3588\"* built|strong=\"H1129\"* the|strong=\"H3588\"* city|strong=\"H5892\"* and|strong=\"H5892\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 29, + "text": "They|strong=\"H3478\"* called|strong=\"H7121\"* the|strong=\"H3205\"* name|strong=\"H8034\"* of|strong=\"H5892\"* the|strong=\"H3205\"* city|strong=\"H5892\"* Dan|strong=\"H1835\"*, after|strong=\"H7121\"* the|strong=\"H3205\"* name|strong=\"H8034\"* of|strong=\"H5892\"* Dan|strong=\"H1835\"* their|strong=\"H7121\"* father|strong=\"H3205\"*, who|strong=\"H3478\"* was|strong=\"H8034\"* born|strong=\"H3205\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"*; however the|strong=\"H3205\"* name|strong=\"H8034\"* of|strong=\"H5892\"* the|strong=\"H3205\"* city|strong=\"H5892\"* used to|strong=\"H3478\"* be|strong=\"H8034\"* Laish|strong=\"H3919\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* set|strong=\"H6965\"* up|strong=\"H6965\"* for|strong=\"H5704\"* themselves the|strong=\"H3117\"* engraved image|strong=\"H6459\"*; and|strong=\"H1121\"* Jonathan|strong=\"H3129\"*, the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gershom|strong=\"H1647\"*, the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Moses, and|strong=\"H1121\"* his|strong=\"H1540\"* sons|strong=\"H1121\"* were|strong=\"H1961\"* priests|strong=\"H3548\"* to|strong=\"H5704\"* the|strong=\"H3117\"* tribe|strong=\"H7626\"* of|strong=\"H1121\"* the|strong=\"H3117\"* Danites|strong=\"H1839\"* until|strong=\"H5704\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H3117\"* captivity|strong=\"H1540\"* of|strong=\"H1121\"* the|strong=\"H3117\"* land." + }, + { + "verseNum": 31, + "text": "So|strong=\"H6213\"* they|strong=\"H3117\"* set|strong=\"H7760\"* up|strong=\"H7760\"* for|strong=\"H6213\"* themselves|strong=\"H6213\"* Micah|strong=\"H4318\"*’s engraved image|strong=\"H6459\"* which|strong=\"H1004\"* he|strong=\"H3117\"* made|strong=\"H6213\"*, and|strong=\"H3117\"* it|strong=\"H7760\"* remained|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* time|strong=\"H3117\"* that|strong=\"H3605\"* God’s house|strong=\"H1004\"* was|strong=\"H1961\"* in|strong=\"H6213\"* Shiloh|strong=\"H7887\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3478\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, when|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3947\"* king|strong=\"H4428\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, there|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* certain Levite|strong=\"H3881\"* living|strong=\"H1481\"* on|strong=\"H3117\"* the|strong=\"H3947\"* farther side|strong=\"H3411\"* of|strong=\"H4428\"* the|strong=\"H3947\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H4428\"* Ephraim, who|strong=\"H3478\"* took|strong=\"H3947\"* for|strong=\"H3117\"* himself|strong=\"H3117\"* a|strong=\"H3068\"* concubine|strong=\"H6370\"* out|strong=\"H3947\"* of|strong=\"H4428\"* Bethlehem|strong=\"H1035\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 2, + "text": "His|strong=\"H5921\"* concubine|strong=\"H6370\"* played|strong=\"H2181\"* the|strong=\"H5921\"* prostitute|strong=\"H2181\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3063\"* went|strong=\"H3212\"* away|strong=\"H3212\"* from|strong=\"H5921\"* him|strong=\"H5921\"* to|strong=\"H3212\"* her|strong=\"H5921\"* father’s house|strong=\"H1004\"* to|strong=\"H3212\"* Bethlehem|strong=\"H1035\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* was|strong=\"H1961\"* there|strong=\"H8033\"* for|strong=\"H5921\"* four months|strong=\"H2320\"*." + }, + { + "verseNum": 3, + "text": "Her|strong=\"H5921\"* husband arose|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* after|strong=\"H5921\"* her|strong=\"H5921\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* kindly|strong=\"H3820\"* to|strong=\"H1696\"* her|strong=\"H5921\"*, to|strong=\"H1696\"* bring|strong=\"H7725\"* her|strong=\"H5921\"* again|strong=\"H7725\"*, having his|strong=\"H7725\"* servant|strong=\"H5288\"* with|strong=\"H5973\"* him|strong=\"H5921\"* and|strong=\"H6965\"* a|strong=\"H3068\"* couple|strong=\"H6776\"* of|strong=\"H1004\"* donkeys|strong=\"H2543\"*. She|strong=\"H3820\"* brought|strong=\"H7725\"* him|strong=\"H5921\"* into|strong=\"H7725\"* her|strong=\"H5921\"* father’s house|strong=\"H1004\"*; and|strong=\"H6965\"* when|strong=\"H7200\"* the|strong=\"H5921\"* father of|strong=\"H1004\"* the|strong=\"H5921\"* young|strong=\"H5288\"* lady|strong=\"H5291\"* saw|strong=\"H7200\"* him|strong=\"H5921\"*, he|strong=\"H1004\"* rejoiced|strong=\"H8055\"* to|strong=\"H1696\"* meet|strong=\"H7125\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 4, + "text": "His|strong=\"H2388\"* father-in-law|strong=\"H2859\"*, the|strong=\"H3117\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*’s father, kept him|strong=\"H2388\"* there|strong=\"H8033\"*; and|strong=\"H3117\"* he|strong=\"H3117\"* stayed|strong=\"H3427\"* with|strong=\"H3427\"* him|strong=\"H2388\"* three|strong=\"H7969\"* days|strong=\"H3117\"*. So|strong=\"H3427\"* they|strong=\"H3117\"* ate and|strong=\"H3117\"* drank|strong=\"H8354\"*, and|strong=\"H3117\"* stayed|strong=\"H3427\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 5, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* fourth|strong=\"H7243\"* day|strong=\"H3117\"*, they|strong=\"H3117\"* got|strong=\"H6965\"* up|strong=\"H6965\"* early|strong=\"H7925\"* in|strong=\"H3117\"* the|strong=\"H3117\"* morning|strong=\"H1242\"*, and|strong=\"H6965\"* he|strong=\"H3117\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H3212\"* depart|strong=\"H3212\"*. The|strong=\"H3117\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*’s father said to|strong=\"H3212\"* his|strong=\"H1961\"* son-in-law|strong=\"H2860\"*, “Strengthen|strong=\"H5582\"* your|strong=\"H1961\"* heart|strong=\"H3820\"* with|strong=\"H3117\"* a|strong=\"H3068\"* morsel|strong=\"H6595\"* of|strong=\"H3117\"* bread|strong=\"H3899\"*, and|strong=\"H6965\"* afterward you|strong=\"H3117\"* shall|strong=\"H3117\"* go|strong=\"H3212\"* your|strong=\"H1961\"* way|strong=\"H3212\"*.”" + }, + { + "verseNum": 6, + "text": "So|strong=\"H3427\"* they|strong=\"H3162\"* sat|strong=\"H3427\"* down|strong=\"H3427\"*, ate, and|strong=\"H8147\"* drank|strong=\"H8354\"*, both|strong=\"H8147\"* of|strong=\"H3427\"* them|strong=\"H8147\"* together|strong=\"H3162\"*. Then the|strong=\"H3885\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*’s father said to|strong=\"H3820\"* the|strong=\"H3885\"* man|strong=\"H3820\"*, “Please|strong=\"H4994\"* be|strong=\"H3820\"* pleased|strong=\"H3190\"* to|strong=\"H3820\"* stay|strong=\"H3427\"* all|strong=\"H3162\"* night|strong=\"H3885\"*, and|strong=\"H8147\"* let|strong=\"H4994\"* your|strong=\"H3190\"* heart|strong=\"H3820\"* be|strong=\"H3820\"* merry|strong=\"H3190\"*.”" + }, + { + "verseNum": 7, + "text": "The|strong=\"H7725\"* man rose|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H7725\"* depart|strong=\"H3212\"*; but|strong=\"H7725\"* his|strong=\"H7725\"* father-in-law|strong=\"H2859\"* urged|strong=\"H6484\"* him|strong=\"H7725\"*, and|strong=\"H6965\"* he|strong=\"H8033\"* stayed|strong=\"H3885\"* there|strong=\"H8033\"* again|strong=\"H7725\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3117\"* arose|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3117\"* the|strong=\"H3117\"* morning|strong=\"H1242\"* on|strong=\"H3117\"* the|strong=\"H3117\"* fifth|strong=\"H2549\"* day|strong=\"H3117\"* to|strong=\"H5704\"* depart|strong=\"H3212\"*; and|strong=\"H3117\"* the|strong=\"H3117\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*’s father said, “Please|strong=\"H4994\"* strengthen|strong=\"H5582\"* your|strong=\"H5186\"* heart|strong=\"H3824\"* and|strong=\"H3117\"* stay|strong=\"H4102\"* until|strong=\"H5704\"* the|strong=\"H3117\"* day|strong=\"H3117\"* declines;” and|strong=\"H3117\"* they|strong=\"H3117\"* both|strong=\"H8147\"* ate." + }, + { + "verseNum": 9, + "text": "When|strong=\"H3117\"* the|strong=\"H3117\"* man|strong=\"H5288\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H1980\"* depart|strong=\"H3212\"*, he|strong=\"H1931\"*, and|strong=\"H1980\"* his|strong=\"H6965\"* concubine|strong=\"H6370\"*, and|strong=\"H1980\"* his|strong=\"H6965\"* servant|strong=\"H5288\"*, his|strong=\"H6965\"* father-in-law|strong=\"H2859\"*, the|strong=\"H3117\"* young|strong=\"H5288\"* lady|strong=\"H5291\"*’s father, said to|strong=\"H1980\"* him|strong=\"H1931\"*, “Behold|strong=\"H2009\"*, now|strong=\"H4994\"* the|strong=\"H3117\"* day|strong=\"H3117\"* draws toward|strong=\"H1870\"* evening|strong=\"H6150\"*, please|strong=\"H4994\"* stay|strong=\"H7503\"* all|strong=\"H3885\"* night|strong=\"H3885\"*. Behold|strong=\"H2009\"*, the|strong=\"H3117\"* day|strong=\"H3117\"* is|strong=\"H1931\"* ending. Stay|strong=\"H7503\"* here|strong=\"H6311\"*, that|strong=\"H3117\"* your|strong=\"H3190\"* heart|strong=\"H3824\"* may|strong=\"H4994\"* be|strong=\"H3117\"* merry|strong=\"H3190\"*; and|strong=\"H1980\"* tomorrow|strong=\"H4279\"* go|strong=\"H1980\"* on|strong=\"H3117\"* your|strong=\"H3190\"* way|strong=\"H1870\"* early|strong=\"H7925\"*, that|strong=\"H3117\"* you|strong=\"H3117\"* may|strong=\"H4994\"* go|strong=\"H1980\"* home|strong=\"H3212\"*.”" + }, + { + "verseNum": 10, + "text": "But|strong=\"H3808\"* the|strong=\"H5704\"* man wouldn’t stay|strong=\"H3885\"* that|strong=\"H1931\"* night|strong=\"H3885\"*, but|strong=\"H3808\"* he|strong=\"H1931\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* near|strong=\"H5973\"* Jebus|strong=\"H2982\"* (also|strong=\"H3389\"* called Jerusalem|strong=\"H3389\"*). With|strong=\"H5973\"* him|strong=\"H5973\"* were|strong=\"H3389\"* a|strong=\"H3068\"* couple|strong=\"H6776\"* of|strong=\"H6776\"* saddled|strong=\"H2280\"* donkeys|strong=\"H2543\"*. His|strong=\"H6965\"* concubine|strong=\"H6370\"* also|strong=\"H3389\"* was|strong=\"H1931\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H3117\"* they|strong=\"H1992\"* were|strong=\"H3117\"* by|strong=\"H3117\"* Jebus|strong=\"H2982\"*, the|strong=\"H3117\"* day|strong=\"H3117\"* was|strong=\"H5892\"* far|strong=\"H3966\"* spent|strong=\"H3885\"*; and|strong=\"H3117\"* the|strong=\"H3117\"* servant|strong=\"H5288\"* said to|strong=\"H3212\"* his|strong=\"H5493\"* master, “Please|strong=\"H4994\"* come|strong=\"H3212\"* and|strong=\"H3117\"* let|strong=\"H4994\"*’s enter into|strong=\"H3212\"* this|strong=\"H2063\"* city|strong=\"H5892\"* of|strong=\"H3117\"* the|strong=\"H3117\"* Jebusites|strong=\"H2983\"*, and|strong=\"H3117\"* stay|strong=\"H3885\"* in|strong=\"H3117\"* it|strong=\"H2063\"*.”" + }, + { + "verseNum": 12, + "text": "His|strong=\"H5493\"* master said to|strong=\"H5704\"* him|strong=\"H5704\"*, “We|strong=\"H5704\"* won’t enter|strong=\"H5674\"* into|strong=\"H5892\"* the|strong=\"H5704\"* city|strong=\"H5892\"* of|strong=\"H1121\"* a|strong=\"H3068\"* foreigner|strong=\"H5237\"* that|strong=\"H3478\"* is|strong=\"H3478\"* not|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H5704\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; but|strong=\"H3808\"* we|strong=\"H3068\"* will|strong=\"H3478\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H5704\"* Gibeah|strong=\"H1390\"*.”" + }, + { + "verseNum": 13, + "text": "He|strong=\"H7126\"* said to|strong=\"H3212\"* his|strong=\"H7126\"* servant|strong=\"H5288\"*, “Come|strong=\"H3212\"* and|strong=\"H3212\"* let|strong=\"H3212\"*’s draw|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H3212\"* one of|strong=\"H4725\"* these places|strong=\"H4725\"*; and|strong=\"H3212\"* we|strong=\"H3068\"* will|strong=\"H5288\"* lodge|strong=\"H3885\"* in|strong=\"H3212\"* Gibeah|strong=\"H1390\"*, or in|strong=\"H3212\"* Ramah|strong=\"H7414\"*.”" + }, + { + "verseNum": 14, + "text": "So|strong=\"H5674\"* they|strong=\"H5674\"* passed|strong=\"H5674\"* on|strong=\"H5674\"* and|strong=\"H3212\"* went|strong=\"H3212\"* their|strong=\"H1144\"* way|strong=\"H3212\"*; and|strong=\"H3212\"* the|strong=\"H5674\"* sun|strong=\"H8121\"* went|strong=\"H3212\"* down|strong=\"H3212\"* on|strong=\"H5674\"* them|strong=\"H5674\"* near Gibeah|strong=\"H1390\"*, which belongs to|strong=\"H3212\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"H8033\"* went|strong=\"H5892\"* over|strong=\"H3427\"* there|strong=\"H8033\"*, to|strong=\"H1004\"* go|strong=\"H5493\"* in|strong=\"H3427\"* to|strong=\"H1004\"* stay|strong=\"H3427\"* in|strong=\"H3427\"* Gibeah|strong=\"H1390\"*. He|strong=\"H8033\"* went|strong=\"H5892\"* in|strong=\"H3427\"*, and|strong=\"H1004\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5493\"* street|strong=\"H7339\"* of|strong=\"H1004\"* the|strong=\"H5493\"* city|strong=\"H5892\"*; for|strong=\"H3427\"* there|strong=\"H8033\"* was|strong=\"H5892\"* no one|strong=\"H5892\"* who|strong=\"H3427\"* took|strong=\"H5493\"* them|strong=\"H3427\"* into|strong=\"H5892\"* his|strong=\"H5493\"* house|strong=\"H1004\"* to|strong=\"H1004\"* stay|strong=\"H3427\"*." + }, + { + "verseNum": 16, + "text": "Behold|strong=\"H2009\"*, an|strong=\"H4480\"* old|strong=\"H2205\"* man|strong=\"H2205\"* came from|strong=\"H4480\"* his|strong=\"H4480\"* work|strong=\"H4639\"* out|strong=\"H4480\"* of|strong=\"H2022\"* the|strong=\"H4480\"* field|strong=\"H7704\"* at|strong=\"H2022\"* evening|strong=\"H6153\"*. Now|strong=\"H2009\"* the|strong=\"H4480\"* man|strong=\"H2205\"* was|strong=\"H1931\"* from|strong=\"H4480\"* the|strong=\"H4480\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim, and|strong=\"H2022\"* he|strong=\"H1931\"* lived|strong=\"H1481\"* in|strong=\"H4725\"* Gibeah|strong=\"H1390\"*; but|strong=\"H2009\"* the|strong=\"H4480\"* men|strong=\"H2205\"* of|strong=\"H2022\"* the|strong=\"H4480\"* place|strong=\"H4725\"* were|strong=\"H2022\"* Benjamites|strong=\"H1145\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H3212\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"*, and|strong=\"H3212\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* wayfaring man|strong=\"H2205\"* in|strong=\"H3212\"* the|strong=\"H7200\"* street|strong=\"H7339\"* of|strong=\"H5892\"* the|strong=\"H7200\"* city|strong=\"H5892\"*; and|strong=\"H3212\"* the|strong=\"H7200\"* old|strong=\"H2205\"* man|strong=\"H2205\"* said, “Where are|strong=\"H5869\"* you|strong=\"H7200\"* going|strong=\"H3212\"*? Where did|strong=\"H5869\"* you|strong=\"H7200\"* come|strong=\"H3212\"* from|strong=\"H5869\"*?”" + }, + { + "verseNum": 18, + "text": "He|strong=\"H5704\"* said to|strong=\"H5704\"* him|strong=\"H1980\"*, “We|strong=\"H5704\"* are|strong=\"H3068\"* passing|strong=\"H5674\"* from|strong=\"H1980\"* Bethlehem|strong=\"H1035\"* Judah|strong=\"H3063\"* to|strong=\"H5704\"* the|strong=\"H3068\"* farther side|strong=\"H3411\"* of|strong=\"H1004\"* the|strong=\"H3068\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1004\"* Ephraim. I|strong=\"H5704\"* am|strong=\"H3068\"* from|strong=\"H1980\"* there|strong=\"H8033\"*, and|strong=\"H1980\"* I|strong=\"H5704\"* went|strong=\"H1980\"* to|strong=\"H5704\"* Bethlehem|strong=\"H1035\"* Judah|strong=\"H3063\"*. I|strong=\"H5704\"* am|strong=\"H3068\"* going|strong=\"H1980\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H1980\"* there|strong=\"H8033\"* is|strong=\"H3068\"* no|strong=\"H1980\"* one|strong=\"H3068\"* who|strong=\"H3068\"* has|strong=\"H3068\"* taken|strong=\"H5674\"* me|strong=\"H5674\"* into|strong=\"H1980\"* his|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 19, + "text": "Yet|strong=\"H1571\"* there|strong=\"H3426\"* is|strong=\"H3426\"* both|strong=\"H1571\"* straw|strong=\"H8401\"* and|strong=\"H3899\"* feed|strong=\"H4554\"* for|strong=\"H5650\"* our|strong=\"H3605\"* donkeys|strong=\"H2543\"*; and|strong=\"H3899\"* there|strong=\"H3426\"* is|strong=\"H3426\"* bread|strong=\"H3899\"* and|strong=\"H3899\"* wine|strong=\"H3196\"* also|strong=\"H1571\"* for|strong=\"H5650\"* me|strong=\"H5973\"*, and|strong=\"H3899\"* for|strong=\"H5650\"* your|strong=\"H3605\"* servant|strong=\"H5650\"*, and|strong=\"H3899\"* for|strong=\"H5650\"* the|strong=\"H3605\"* young|strong=\"H5288\"* man|strong=\"H5288\"* who|strong=\"H3605\"* is|strong=\"H3426\"* with|strong=\"H5973\"* your|strong=\"H3605\"* servants|strong=\"H5650\"*. There|strong=\"H3426\"* is|strong=\"H3426\"* no|strong=\"H3605\"* lack|strong=\"H4270\"* of|strong=\"H1697\"* anything|strong=\"H3605\"*.”" + }, + { + "verseNum": 20, + "text": "The|strong=\"H3605\"* old|strong=\"H2205\"* man|strong=\"H2205\"* said, “Peace|strong=\"H7965\"* be|strong=\"H7965\"* to|strong=\"H5921\"* you|strong=\"H3605\"*! Just|strong=\"H3605\"* let me|strong=\"H5921\"* supply all|strong=\"H3605\"* your|strong=\"H3605\"* needs|strong=\"H4270\"*, but|strong=\"H7535\"* don’t sleep|strong=\"H3885\"* in|strong=\"H5921\"* the|strong=\"H3605\"* street|strong=\"H7339\"*.”" + }, + { + "verseNum": 21, + "text": "So he|strong=\"H1004\"* brought him into his|strong=\"H7364\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* gave|strong=\"H1101\"* the|strong=\"H8354\"* donkeys|strong=\"H2543\"* fodder|strong=\"H1101\"*. Then they|strong=\"H7272\"* washed|strong=\"H7364\"* their|strong=\"H7364\"* feet|strong=\"H7272\"*, and|strong=\"H1004\"* ate and|strong=\"H1004\"* drank|strong=\"H8354\"*." + }, + { + "verseNum": 22, + "text": "As|strong=\"H3318\"* they|strong=\"H1992\"* were|strong=\"H1121\"* making their|strong=\"H1992\"* hearts|strong=\"H3820\"* merry|strong=\"H3190\"*, behold|strong=\"H2009\"*, the|strong=\"H5921\"* men|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, certain|strong=\"H3045\"* wicked|strong=\"H1100\"* fellows|strong=\"H1121\"*, surrounded|strong=\"H5437\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, beating at|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H1817\"*; and|strong=\"H1121\"* they|strong=\"H1992\"* spoke to|strong=\"H3318\"* the|strong=\"H5921\"* master|strong=\"H1167\"* of|strong=\"H1121\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, the|strong=\"H5921\"* old|strong=\"H1121\"* man|strong=\"H2205\"*, saying, “Bring|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H5921\"* man|strong=\"H2205\"* who|strong=\"H1121\"* came|strong=\"H3318\"* into|strong=\"H5921\"* your|strong=\"H5921\"* house|strong=\"H1004\"*, that|strong=\"H3045\"* we|strong=\"H3068\"* can|strong=\"H3045\"* have|strong=\"H3045\"* sex with|strong=\"H1004\"* him|strong=\"H5921\"*!”" + }, + { + "verseNum": 23, + "text": "The|strong=\"H6213\"* man|strong=\"H1167\"*, the|strong=\"H6213\"* master|strong=\"H1167\"* of|strong=\"H1004\"* the|strong=\"H6213\"* house|strong=\"H1004\"*, went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H6213\"*, and|strong=\"H1004\"* said|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H6213\"*, “No|strong=\"H6213\"*, my|strong=\"H3318\"* brothers, please|strong=\"H4994\"* don’t act|strong=\"H6213\"* so|strong=\"H6213\"* wickedly|strong=\"H7489\"*; since this|strong=\"H2088\"* man|strong=\"H1167\"* has|strong=\"H3318\"* come|strong=\"H3318\"* into|strong=\"H6213\"* my|strong=\"H3318\"* house|strong=\"H1004\"*, don’t do|strong=\"H6213\"* this|strong=\"H2088\"* folly|strong=\"H5039\"*." + }, + { + "verseNum": 24, + "text": "Behold|strong=\"H2009\"*, here|strong=\"H2009\"* is|strong=\"H2088\"* my|strong=\"H3318\"* virgin|strong=\"H1330\"* daughter|strong=\"H1323\"* and|strong=\"H5869\"* his|strong=\"H6213\"* concubine|strong=\"H6370\"*. I|strong=\"H2009\"* will|strong=\"H5869\"* bring|strong=\"H3318\"* them|strong=\"H6213\"* out|strong=\"H3318\"* now|strong=\"H4994\"*. Humble|strong=\"H6031\"* them|strong=\"H6213\"*, and|strong=\"H5869\"* do|strong=\"H6213\"* with|strong=\"H6213\"* them|strong=\"H6213\"* what|strong=\"H1697\"* seems|strong=\"H2896\"* good|strong=\"H2896\"* to|strong=\"H3318\"* you|strong=\"H6213\"*; but|strong=\"H3808\"* to|strong=\"H3318\"* this|strong=\"H2088\"* man|strong=\"H2896\"* don’t do|strong=\"H6213\"* any|strong=\"H6213\"* such|strong=\"H2088\"* folly|strong=\"H5039\"*.”" + }, + { + "verseNum": 25, + "text": "But|strong=\"H3808\"* the|strong=\"H3605\"* men|strong=\"H3605\"* wouldn’t listen|strong=\"H8085\"* to|strong=\"H5704\"* him|strong=\"H7971\"*; so|strong=\"H7971\"* the|strong=\"H3605\"* man|strong=\"H3605\"* grabbed|strong=\"H2388\"* his|strong=\"H3605\"* concubine|strong=\"H6370\"*, and|strong=\"H7971\"* brought|strong=\"H3318\"* her|strong=\"H3605\"* out|strong=\"H3318\"* to|strong=\"H5704\"* them|strong=\"H7971\"*; and|strong=\"H7971\"* they|strong=\"H3808\"* had|strong=\"H3045\"* sex with|strong=\"H3045\"* her|strong=\"H3605\"*, and|strong=\"H7971\"* abused|strong=\"H5953\"* her|strong=\"H3605\"* all|strong=\"H3605\"* night|strong=\"H3915\"* until|strong=\"H5704\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*. When|strong=\"H8085\"* the|strong=\"H3605\"* day|strong=\"H7837\"* began to|strong=\"H5704\"* dawn|strong=\"H7837\"*, they|strong=\"H3808\"* let|strong=\"H7971\"* her|strong=\"H3605\"* go|strong=\"H3318\"*." + }, + { + "verseNum": 26, + "text": "Then|strong=\"H5307\"* the|strong=\"H5704\"* woman|strong=\"H1004\"* came|strong=\"H5307\"* in|strong=\"H1004\"* the|strong=\"H5704\"* dawning|strong=\"H6437\"* of|strong=\"H1004\"* the|strong=\"H5704\"* day|strong=\"H1242\"*, and|strong=\"H1004\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* at|strong=\"H1004\"* the|strong=\"H5704\"* door|strong=\"H6607\"* of|strong=\"H1004\"* the|strong=\"H5704\"* man|strong=\"H5307\"*’s house|strong=\"H1004\"* where|strong=\"H8033\"* her|strong=\"H5704\"* lord was|strong=\"H1004\"*, until|strong=\"H5704\"* it|strong=\"H8033\"* was|strong=\"H1004\"* light." + }, + { + "verseNum": 27, + "text": "Her|strong=\"H5921\"* lord rose|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"* and|strong=\"H6965\"* opened|strong=\"H6605\"* the|strong=\"H5921\"* doors|strong=\"H1817\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* out|strong=\"H3318\"* to|strong=\"H3318\"* go|strong=\"H3212\"* his|strong=\"H5921\"* way|strong=\"H1870\"*; and|strong=\"H6965\"* behold|strong=\"H2009\"*, the|strong=\"H5921\"* woman|strong=\"H1004\"* his|strong=\"H5921\"* concubine|strong=\"H6370\"* had|strong=\"H3027\"* fallen|strong=\"H5307\"* down|strong=\"H5307\"* at|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, with|strong=\"H1004\"* her|strong=\"H5921\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* threshold|strong=\"H5592\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H5921\"* said|strong=\"H6030\"* to|strong=\"H3212\"* her|strong=\"H3947\"*, “Get|strong=\"H3947\"* up|strong=\"H6965\"*, and|strong=\"H6965\"* let|strong=\"H3212\"*’s get|strong=\"H3947\"* going|strong=\"H3212\"*!” but|strong=\"H6030\"* no|strong=\"H3947\"* one answered|strong=\"H6030\"*. Then|strong=\"H6030\"* he|strong=\"H5921\"* took|strong=\"H3947\"* her|strong=\"H3947\"* up|strong=\"H6965\"* on|strong=\"H5921\"* the|strong=\"H5921\"* donkey|strong=\"H2543\"*; and|strong=\"H6965\"* the|strong=\"H5921\"* man|strong=\"H6030\"* rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3212\"* his|strong=\"H3947\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"H7971\"* he|strong=\"H3605\"* had|strong=\"H3478\"* come|strong=\"H3478\"* into|strong=\"H3947\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, he|strong=\"H3605\"* took|strong=\"H3947\"* a|strong=\"H3068\"* knife|strong=\"H3979\"* and|strong=\"H3478\"* cut|strong=\"H5408\"* up|strong=\"H3947\"* his|strong=\"H3605\"* concubine|strong=\"H6370\"*, and|strong=\"H3478\"* divided|strong=\"H5408\"* her|strong=\"H3605\"*, limb|strong=\"H6106\"* by|strong=\"H3478\"* limb|strong=\"H6106\"*, into|strong=\"H3947\"* twelve|strong=\"H8147\"* pieces|strong=\"H5409\"*, and|strong=\"H3478\"* sent|strong=\"H7971\"* her|strong=\"H3605\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 30, + "text": "It|strong=\"H7760\"* was|strong=\"H1961\"* so|strong=\"H1961\"*, that|strong=\"H7200\"* all|strong=\"H3605\"* who|strong=\"H3605\"* saw|strong=\"H7200\"* it|strong=\"H7760\"* said|strong=\"H1696\"*, “Such|strong=\"H2088\"* a|strong=\"H3068\"* deed|strong=\"H2063\"* has|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"* done|strong=\"H1961\"* or|strong=\"H3808\"* seen|strong=\"H7200\"* from|strong=\"H5921\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H7200\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* came|strong=\"H1961\"* up|strong=\"H5927\"* out|strong=\"H7200\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"* to|strong=\"H1696\"* this|strong=\"H2088\"* day|strong=\"H3117\"*! Consider|strong=\"H7200\"* it|strong=\"H7760\"*, take|strong=\"H7760\"* counsel|strong=\"H5779\"*, and|strong=\"H1121\"* speak|strong=\"H1696\"*.”" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* was|strong=\"H3068\"* assembled|strong=\"H6950\"* as|strong=\"H5704\"* one|strong=\"H3605\"* man|strong=\"H1121\"*, from|strong=\"H3318\"* Dan|strong=\"H1835\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Beersheba, with|strong=\"H3068\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, to|strong=\"H5704\"* Yahweh|strong=\"H3068\"* at|strong=\"H3478\"* Mizpah|strong=\"H4709\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* chiefs|strong=\"H6438\"* of|strong=\"H7626\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, even of|strong=\"H7626\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*, presented|strong=\"H3320\"* themselves|strong=\"H3320\"* in|strong=\"H3478\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H7626\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H7626\"* God, four hundred|strong=\"H3967\"* thousand footmen|strong=\"H7273\"* who|strong=\"H3605\"* drew|strong=\"H8025\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 3, + "text": "(Now|strong=\"H1961\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H1961\"* gone|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H1696\"* Mizpah|strong=\"H4709\"*.) The|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said|strong=\"H1696\"*, “Tell|strong=\"H1696\"* us|strong=\"H3588\"*, how|strong=\"H3588\"* did|strong=\"H3478\"* this|strong=\"H2063\"* wickedness|strong=\"H7451\"* happen|strong=\"H1961\"*?”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H3885\"* Levite|strong=\"H3881\"*, the|strong=\"H3885\"* husband of|strong=\"H1390\"* the|strong=\"H3885\"* woman who|strong=\"H3881\"* was|strong=\"H1144\"* murdered|strong=\"H7523\"*, answered|strong=\"H6030\"*, “I came|strong=\"H1144\"* into Gibeah|strong=\"H1390\"* that|strong=\"H3881\"* belongs to|strong=\"H6030\"* Benjamin|strong=\"H1144\"*, I and|strong=\"H6030\"* my|strong=\"H1144\"* concubine|strong=\"H6370\"*, to|strong=\"H6030\"* spend|strong=\"H3885\"* the|strong=\"H3885\"* night|strong=\"H3885\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5921\"* men|strong=\"H1167\"* of|strong=\"H1004\"* Gibeah|strong=\"H1390\"* rose|strong=\"H6965\"* against|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H6965\"* surrounded|strong=\"H5437\"* the|strong=\"H5921\"* house|strong=\"H1004\"* by|strong=\"H5921\"* night|strong=\"H3915\"*. They|strong=\"H5921\"* intended|strong=\"H1819\"* to|strong=\"H4191\"* kill|strong=\"H2026\"* me|strong=\"H5921\"* and|strong=\"H6965\"* they|strong=\"H5921\"* raped my|strong=\"H5921\"* concubine|strong=\"H6370\"*, and|strong=\"H6965\"* she|strong=\"H5921\"* is|strong=\"H1004\"* dead|strong=\"H4191\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H3588\"* took|strong=\"H3478\"* my|strong=\"H3605\"* concubine|strong=\"H6370\"* and|strong=\"H3478\"* cut|strong=\"H5408\"* her|strong=\"H3605\"* in|strong=\"H3478\"* pieces|strong=\"H5408\"*, and|strong=\"H3478\"* sent|strong=\"H7971\"* her|strong=\"H3605\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* country|strong=\"H7704\"* of|strong=\"H7704\"* the|strong=\"H3605\"* inheritance|strong=\"H5159\"* of|strong=\"H7704\"* Israel|strong=\"H3478\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3478\"* committed|strong=\"H6213\"* lewdness|strong=\"H2154\"* and|strong=\"H3478\"* folly|strong=\"H5039\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "Behold|strong=\"H2009\"*, you|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, all|strong=\"H3605\"* of|strong=\"H1121\"* you|strong=\"H3605\"*, give|strong=\"H3051\"* here|strong=\"H2009\"* your|strong=\"H3605\"* advice|strong=\"H6098\"* and|strong=\"H1121\"* counsel|strong=\"H6098\"*.”" + }, + { + "verseNum": 8, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* arose|strong=\"H6965\"* as|strong=\"H5971\"* one|strong=\"H3605\"* man|strong=\"H3605\"*, saying, “None|strong=\"H3808\"* of|strong=\"H1004\"* us|strong=\"H5971\"* will|strong=\"H5971\"* go|strong=\"H3212\"* to|strong=\"H3212\"* his|strong=\"H3605\"* tent, neither|strong=\"H3808\"* will|strong=\"H5971\"* any|strong=\"H3605\"* of|strong=\"H1004\"* us|strong=\"H5971\"* turn|strong=\"H5493\"* to|strong=\"H3212\"* his|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H6258\"* now|strong=\"H6258\"* this|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H5921\"* thing|strong=\"H1697\"* which|strong=\"H1697\"* we|strong=\"H3068\"* will|strong=\"H1697\"* do|strong=\"H6213\"* to|strong=\"H6213\"* Gibeah|strong=\"H1390\"*: we|strong=\"H3068\"* will|strong=\"H1697\"* go up|strong=\"H5921\"* against|strong=\"H5921\"* it|strong=\"H5921\"* by|strong=\"H5921\"* lot|strong=\"H1486\"*;" + }, + { + "verseNum": 10, + "text": "and|strong=\"H3967\"* we|strong=\"H3068\"* will|strong=\"H5971\"* take|strong=\"H3947\"* ten|strong=\"H6235\"* men|strong=\"H5971\"* of|strong=\"H7626\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*, and|strong=\"H3967\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* of|strong=\"H7626\"* one|strong=\"H3605\"* thousand|strong=\"H7233\"*, and|strong=\"H3967\"* a|strong=\"H3068\"* thousand|strong=\"H7233\"* out|strong=\"H3947\"* of|strong=\"H7626\"* ten|strong=\"H6235\"* thousand|strong=\"H7233\"* to|strong=\"H3478\"* get|strong=\"H3947\"* food|strong=\"H6720\"* for|strong=\"H6213\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* they|strong=\"H6213\"* may|strong=\"H5971\"* do|strong=\"H6213\"*, when|strong=\"H6213\"* they|strong=\"H6213\"* come|strong=\"H5971\"* to|strong=\"H3478\"* Gibeah|strong=\"H1387\"* of|strong=\"H7626\"* Benjamin|strong=\"H1144\"*, according to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* folly|strong=\"H5039\"* that|strong=\"H5971\"* the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H7626\"* Gibeah|strong=\"H1387\"* have|strong=\"H5971\"* done|strong=\"H6213\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 11, + "text": "So all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H5892\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* gathered|strong=\"H3478\"* against|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, knit together|strong=\"H2270\"* as|strong=\"H5892\"* one|strong=\"H3605\"* man|strong=\"H3605\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"* sent|strong=\"H7971\"* men|strong=\"H7451\"* through|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribe|strong=\"H7626\"* of|strong=\"H7626\"* Benjamin|strong=\"H1144\"*, saying, “What|strong=\"H4100\"* wickedness|strong=\"H7451\"* is|strong=\"H4100\"* this|strong=\"H2063\"* that|strong=\"H3605\"* has|strong=\"H1961\"* happened|strong=\"H1961\"* among|strong=\"H3478\"* you|strong=\"H3605\"*?" + }, + { + "verseNum": 13, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* deliver|strong=\"H5414\"* up|strong=\"H5414\"* the|strong=\"H8085\"* men|strong=\"H1121\"*, the|strong=\"H8085\"* wicked|strong=\"H7451\"* fellows|strong=\"H1121\"* who|strong=\"H1121\"* are|strong=\"H1121\"* in|strong=\"H3478\"* Gibeah|strong=\"H1390\"*, that|strong=\"H8085\"* we|strong=\"H3068\"* may|strong=\"H3478\"* put|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3478\"* death|strong=\"H4191\"* and|strong=\"H1121\"* put|strong=\"H5414\"* away|strong=\"H1197\"* evil|strong=\"H7451\"* from|strong=\"H3478\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 14, + "text": "The|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* gathered|strong=\"H3478\"* themselves together|strong=\"H5973\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H4480\"* cities|strong=\"H5892\"* to|strong=\"H3318\"* Gibeah|strong=\"H1390\"*, to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* battle|strong=\"H4421\"* against|strong=\"H5973\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* on|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* out|strong=\"H3427\"* of|strong=\"H1121\"* the|strong=\"H3117\"* cities|strong=\"H5892\"* twenty-six|strong=\"H8337\"* thousand men|strong=\"H1121\"* who|strong=\"H1931\"* drew|strong=\"H8025\"* the|strong=\"H3117\"* sword|strong=\"H2719\"*, in|strong=\"H3427\"* addition to|strong=\"H3117\"* the|strong=\"H3117\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Gibeah|strong=\"H1390\"*, who|strong=\"H1931\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* chosen men|strong=\"H1121\"*." + }, + { + "verseNum": 16, + "text": "Among|strong=\"H5971\"* all|strong=\"H3605\"* these|strong=\"H2088\"* soldiers|strong=\"H5971\"* there|strong=\"H2088\"* were|strong=\"H5971\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* chosen men|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* left-handed|strong=\"H3225\"*. Every|strong=\"H3605\"* one|strong=\"H2088\"* of|strong=\"H3027\"* them|strong=\"H3027\"* could|strong=\"H2088\"* sling|strong=\"H7049\"* a|strong=\"H3068\"* stone at|strong=\"H3808\"* a|strong=\"H3068\"* hair|strong=\"H8185\"* and|strong=\"H3967\"* not|strong=\"H3808\"* miss|strong=\"H2398\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H3605\"* Israel|strong=\"H3478\"*, besides Benjamin|strong=\"H1144\"*, were|strong=\"H3478\"* counted|strong=\"H6485\"* four hundred|strong=\"H3967\"* thousand men|strong=\"H3605\"* who|strong=\"H3605\"* drew|strong=\"H8025\"* sword|strong=\"H2719\"*. All|strong=\"H3605\"* these|strong=\"H2088\"* were|strong=\"H3478\"* men|strong=\"H3605\"* of|strong=\"H3605\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* arose|strong=\"H6965\"*, went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Bethel|strong=\"H1008\"*, and|strong=\"H1121\"* asked|strong=\"H7592\"* counsel|strong=\"H7592\"* of|strong=\"H1121\"* God|strong=\"H3068\"*. They|strong=\"H3068\"* asked|strong=\"H7592\"*, “Who|strong=\"H4310\"* shall|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* for|strong=\"H3068\"* us|strong=\"H7592\"* first|strong=\"H1121\"* to|strong=\"H3478\"* battle|strong=\"H4421\"* against|strong=\"H5973\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*?”" + }, + { + "verseNum": 19, + "text": "The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"* and|strong=\"H1121\"* encamped|strong=\"H2583\"* against|strong=\"H5921\"* Gibeah|strong=\"H1390\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3318\"* men|strong=\"H3478\"* of|strong=\"H3318\"* Israel|strong=\"H3478\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* battle|strong=\"H4421\"* against|strong=\"H5973\"* Benjamin|strong=\"H1144\"*; and|strong=\"H3478\"* the|strong=\"H3318\"* men|strong=\"H3478\"* of|strong=\"H3318\"* Israel|strong=\"H3478\"* set|strong=\"H6186\"* the|strong=\"H3318\"* battle|strong=\"H4421\"* in|strong=\"H3478\"* array|strong=\"H6186\"* against|strong=\"H5973\"* them|strong=\"H3318\"* at|strong=\"H3478\"* Gibeah|strong=\"H1390\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Gibeah|strong=\"H1390\"*, and|strong=\"H1121\"* on|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* destroyed|strong=\"H7843\"* twenty-two|strong=\"H6242\"* thousand of|strong=\"H1121\"* the|strong=\"H4480\"* Israelite|strong=\"H3478\"* men|strong=\"H1121\"* down|strong=\"H7843\"* to|strong=\"H3318\"* the|strong=\"H4480\"* ground." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3117\"* people|strong=\"H5971\"*, the|strong=\"H3117\"* men|strong=\"H5971\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*, encouraged|strong=\"H2388\"* themselves|strong=\"H6186\"*, and|strong=\"H3478\"* set|strong=\"H6186\"* the|strong=\"H3117\"* battle|strong=\"H4421\"* again|strong=\"H3254\"* in|strong=\"H3478\"* array|strong=\"H6186\"* in|strong=\"H3478\"* the|strong=\"H3117\"* place|strong=\"H4725\"* where|strong=\"H8033\"* they|strong=\"H3117\"* set|strong=\"H6186\"* themselves|strong=\"H6186\"* in|strong=\"H3478\"* array|strong=\"H6186\"* the|strong=\"H3117\"* first|strong=\"H7223\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H1121\"* wept|strong=\"H1058\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* until|strong=\"H5704\"* evening|strong=\"H6153\"*; and|strong=\"H1121\"* they|strong=\"H3068\"* asked|strong=\"H7592\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, saying, “Shall|strong=\"H3068\"* I|strong=\"H5704\"* again|strong=\"H3254\"* draw|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H5704\"* battle|strong=\"H4421\"* against|strong=\"H5973\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* my|strong=\"H3068\"* brother?”" + }, + { + "verseNum": 24, + "text": "The|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* came|strong=\"H7126\"* near|strong=\"H7126\"* against the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* the|strong=\"H3117\"* second|strong=\"H8145\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 25, + "text": "Benjamin|strong=\"H1144\"* went|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H7125\"* them|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Gibeah|strong=\"H1390\"* the|strong=\"H3605\"* second|strong=\"H8145\"* day|strong=\"H3117\"*, and|strong=\"H1121\"* destroyed|strong=\"H7843\"* down|strong=\"H7843\"* to|strong=\"H3318\"* the|strong=\"H3605\"* ground of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* again|strong=\"H5750\"* eighteen|strong=\"H8083\"* thousand men|strong=\"H1121\"*. All|strong=\"H3605\"* these|strong=\"H3605\"* drew|strong=\"H8025\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 26, + "text": "Then|strong=\"H5927\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* went|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H1121\"* came|strong=\"H5927\"* to|strong=\"H5704\"* Bethel|strong=\"H1008\"*, and|strong=\"H1121\"* wept|strong=\"H1058\"*, and|strong=\"H1121\"* sat|strong=\"H3427\"* there|strong=\"H8033\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* fasted|strong=\"H6684\"* that|strong=\"H5971\"* day|strong=\"H3117\"* until|strong=\"H5704\"* evening|strong=\"H6153\"*; then|strong=\"H5927\"* they|strong=\"H3117\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* asked|strong=\"H7592\"* Yahweh|strong=\"H3068\"* (for|strong=\"H3068\"* the|strong=\"H3068\"* ark of|strong=\"H1121\"* the|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H1121\"* God|strong=\"H3068\"* was|strong=\"H3068\"* there|strong=\"H8033\"* in|strong=\"H3478\"* those|strong=\"H1992\"* days|strong=\"H3117\"*," + }, + { + "verseNum": 28, + "text": "and|strong=\"H1121\"* Phinehas|strong=\"H6372\"*, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, stood|strong=\"H5975\"* before|strong=\"H6440\"* it|strong=\"H5414\"* in|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"*), saying, “Shall|strong=\"H3068\"* I|strong=\"H3588\"* yet|strong=\"H5750\"* again|strong=\"H5750\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* battle|strong=\"H4421\"* against|strong=\"H5973\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* my|strong=\"H5414\"* brother, or|strong=\"H3117\"* shall|strong=\"H3068\"* I|strong=\"H3588\"* cease|strong=\"H2308\"*?”" + }, + { + "verseNum": 29, + "text": "Israel|strong=\"H3478\"* set|strong=\"H7760\"* ambushes all|strong=\"H5439\"* around|strong=\"H5439\"* Gibeah|strong=\"H1390\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5927\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* on|strong=\"H3117\"* the|strong=\"H3117\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, and|strong=\"H1121\"* set|strong=\"H6186\"* themselves|strong=\"H6186\"* in|strong=\"H3478\"* array|strong=\"H6186\"* against|strong=\"H5927\"* Gibeah|strong=\"H1390\"*, as|strong=\"H3117\"* at|strong=\"H3478\"* other|strong=\"H6471\"* times|strong=\"H6471\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H5221\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* went|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H7125\"* the|strong=\"H5221\"* people|strong=\"H5971\"*, and|strong=\"H1121\"* were|strong=\"H3478\"* drawn|strong=\"H5423\"* away|strong=\"H5927\"* from|strong=\"H4480\"* the|strong=\"H5221\"* city|strong=\"H5892\"*; and|strong=\"H1121\"* they|strong=\"H5971\"* began|strong=\"H2490\"* to|strong=\"H3318\"* strike|strong=\"H5221\"* and|strong=\"H1121\"* kill|strong=\"H5221\"* of|strong=\"H1121\"* the|strong=\"H5221\"* people|strong=\"H5971\"* as|strong=\"H5927\"* at|strong=\"H3478\"* other|strong=\"H6471\"* times|strong=\"H6471\"*, in|strong=\"H3478\"* the|strong=\"H5221\"* highways|strong=\"H4546\"*, of|strong=\"H1121\"* which|strong=\"H5971\"* one|strong=\"H4480\"* goes|strong=\"H3318\"* up|strong=\"H5927\"* to|strong=\"H3318\"* Bethel|strong=\"H1008\"* and|strong=\"H1121\"* the|strong=\"H5221\"* other|strong=\"H6471\"* to|strong=\"H3318\"* Gibeah|strong=\"H1390\"*, in|strong=\"H3478\"* the|strong=\"H5221\"* field|strong=\"H7704\"*, about|strong=\"H4480\"* thirty|strong=\"H7970\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* said, “They|strong=\"H1992\"* are|strong=\"H1992\"* struck|strong=\"H5062\"* down|strong=\"H5062\"* before|strong=\"H6440\"* us|strong=\"H6440\"*, as|strong=\"H6440\"* at|strong=\"H3478\"* the|strong=\"H6440\"* first|strong=\"H7223\"*.” But|strong=\"H1992\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said, “Let’s flee|strong=\"H5127\"*, and|strong=\"H1121\"* draw|strong=\"H5423\"* them|strong=\"H1992\"* away|strong=\"H5127\"* from|strong=\"H4480\"* the|strong=\"H6440\"* city|strong=\"H5892\"* to|strong=\"H3478\"* the|strong=\"H6440\"* highways|strong=\"H4546\"*.”" + }, + { + "verseNum": 33, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4725\"* Israel|strong=\"H3478\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* out|strong=\"H3605\"* of|strong=\"H4725\"* their|strong=\"H3605\"* place|strong=\"H4725\"* and|strong=\"H6965\"* set|strong=\"H6965\"* themselves|strong=\"H6186\"* in|strong=\"H3478\"* array|strong=\"H6186\"* at|strong=\"H3478\"* Baal Tamar. Then|strong=\"H6965\"* the|strong=\"H3605\"* ambushers of|strong=\"H4725\"* Israel|strong=\"H3478\"* broke|strong=\"H1518\"* out|strong=\"H3605\"* of|strong=\"H4725\"* their|strong=\"H3605\"* place|strong=\"H4725\"*, even out|strong=\"H3605\"* of|strong=\"H4725\"* Maareh Geba." + }, + { + "verseNum": 34, + "text": "Ten|strong=\"H6235\"* thousand chosen|strong=\"H3045\"* men|strong=\"H7451\"* out|strong=\"H5921\"* of|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* came|strong=\"H5060\"* over|strong=\"H5921\"* against|strong=\"H5921\"* Gibeah|strong=\"H1390\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* battle|strong=\"H4421\"* was|strong=\"H3478\"* severe|strong=\"H7451\"*; but|strong=\"H3588\"* they|strong=\"H1992\"* didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* disaster|strong=\"H7451\"* was|strong=\"H3478\"* close|strong=\"H5060\"* to|strong=\"H3478\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 35, + "text": "Yahweh|strong=\"H3068\"* struck|strong=\"H5062\"* Benjamin|strong=\"H1144\"* before|strong=\"H6440\"* Israel|strong=\"H3478\"*; and|strong=\"H3967\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* destroyed|strong=\"H7843\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* that|strong=\"H3605\"* day|strong=\"H3117\"* twenty-five|strong=\"H6242\"* thousand one|strong=\"H3605\"* hundred|strong=\"H3967\"* men|strong=\"H1121\"*. All|strong=\"H3605\"* these|strong=\"H1931\"* drew|strong=\"H8025\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 36, + "text": "So|strong=\"H5414\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H3478\"* struck|strong=\"H5062\"*, for|strong=\"H3588\"* the|strong=\"H7200\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* yielded|strong=\"H5414\"* to|strong=\"H3478\"* Benjamin|strong=\"H1144\"* because|strong=\"H3588\"* they|strong=\"H3588\"* trusted the|strong=\"H7200\"* ambushers whom|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3478\"* set|strong=\"H7760\"* against|strong=\"H7760\"* Gibeah|strong=\"H1390\"*." + }, + { + "verseNum": 37, + "text": "The|strong=\"H3605\"* ambushers hurried|strong=\"H2363\"*, and|strong=\"H5892\"* rushed|strong=\"H6584\"* on|strong=\"H5892\"* Gibeah|strong=\"H1390\"*; then|strong=\"H3605\"* the|strong=\"H3605\"* ambushers spread|strong=\"H6584\"* out|strong=\"H4900\"*, and|strong=\"H5892\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* city|strong=\"H5892\"* with|strong=\"H5892\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H5892\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 38, + "text": "Now|strong=\"H1961\"* the|strong=\"H4480\"* appointed|strong=\"H4150\"* sign|strong=\"H4150\"* between|strong=\"H5973\"* the|strong=\"H4480\"* men|strong=\"H3478\"* of|strong=\"H5892\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* the|strong=\"H4480\"* ambushers was|strong=\"H1961\"* that|strong=\"H3478\"* they|strong=\"H3478\"* should|strong=\"H3478\"* make|strong=\"H7235\"* a|strong=\"H3068\"* great|strong=\"H7235\"* cloud|strong=\"H4864\"* of|strong=\"H5892\"* smoke|strong=\"H6227\"* rise|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H5892\"* the|strong=\"H4480\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 39, + "text": "The|strong=\"H6440\"* men|strong=\"H3478\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"* turned|strong=\"H2015\"* in|strong=\"H3478\"* the|strong=\"H6440\"* battle|strong=\"H4421\"*, and|strong=\"H3478\"* Benjamin|strong=\"H1144\"* began|strong=\"H2490\"* to|strong=\"H3478\"* strike|strong=\"H5221\"* and|strong=\"H3478\"* kill|strong=\"H5221\"* of|strong=\"H6440\"* the|strong=\"H6440\"* men|strong=\"H3478\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"* about|strong=\"H5221\"* thirty|strong=\"H7970\"* persons|strong=\"H6440\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* said, “Surely|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H3478\"* struck|strong=\"H5221\"* down|strong=\"H5221\"* before|strong=\"H6440\"* us|strong=\"H6440\"*, as|strong=\"H3588\"* in|strong=\"H3478\"* the|strong=\"H6440\"* first|strong=\"H7223\"* battle|strong=\"H4421\"*.”" + }, + { + "verseNum": 40, + "text": "But|strong=\"H2009\"* when|strong=\"H4480\"* the|strong=\"H4480\"* cloud|strong=\"H4864\"* began|strong=\"H2490\"* to|strong=\"H5927\"* arise|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H5892\"* the|strong=\"H4480\"* city|strong=\"H5892\"* in|strong=\"H5892\"* a|strong=\"H3068\"* pillar|strong=\"H5982\"* of|strong=\"H5892\"* smoke|strong=\"H6227\"*, the|strong=\"H4480\"* Benjamites looked|strong=\"H6437\"* behind|strong=\"H4480\"* them|strong=\"H5927\"*; and|strong=\"H8064\"* behold|strong=\"H2009\"*, the|strong=\"H4480\"* whole|strong=\"H3632\"* city|strong=\"H5892\"* went|strong=\"H5927\"* up|strong=\"H5927\"* in|strong=\"H5892\"* smoke|strong=\"H6227\"* to|strong=\"H5927\"* the|strong=\"H4480\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 41, + "text": "The|strong=\"H5921\"* men|strong=\"H7451\"* of|strong=\"H5921\"* Israel|strong=\"H3478\"* turned|strong=\"H2015\"*, and|strong=\"H3478\"* the|strong=\"H5921\"* men|strong=\"H7451\"* of|strong=\"H5921\"* Benjamin|strong=\"H1144\"* were|strong=\"H3478\"* dismayed; for|strong=\"H3588\"* they|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* disaster|strong=\"H7451\"* had|strong=\"H3478\"* come|strong=\"H5060\"* on|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 42, + "text": "Therefore they|strong=\"H3478\"* turned|strong=\"H6437\"* their|strong=\"H6440\"* backs before|strong=\"H6440\"* the|strong=\"H6440\"* men|strong=\"H3478\"* of|strong=\"H5892\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H5892\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"*, but|strong=\"H6437\"* the|strong=\"H6440\"* battle|strong=\"H4421\"* followed hard|strong=\"H1692\"* after them|strong=\"H6440\"*; and|strong=\"H3478\"* those who|strong=\"H3478\"* came|strong=\"H3478\"* out|strong=\"H6440\"* of|strong=\"H5892\"* the|strong=\"H6440\"* cities|strong=\"H5892\"* destroyed|strong=\"H7843\"* them|strong=\"H6440\"* in|strong=\"H3478\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H5892\"* it|strong=\"H8432\"*." + }, + { + "verseNum": 43, + "text": "They|strong=\"H5704\"* surrounded|strong=\"H3803\"* the|strong=\"H5704\"* Benjamites, chased|strong=\"H7291\"* them|strong=\"H7291\"*, and|strong=\"H1144\"* trod|strong=\"H1869\"* them|strong=\"H7291\"* down|strong=\"H1869\"* at|strong=\"H1144\"* their|strong=\"H1869\"* resting|strong=\"H4496\"* place|strong=\"H4496\"*, as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* near|strong=\"H5704\"* Gibeah|strong=\"H1390\"* toward|strong=\"H5704\"* the|strong=\"H5704\"* sunrise|strong=\"H4217\"*." + }, + { + "verseNum": 44, + "text": "Eighteen|strong=\"H8083\"* thousand men|strong=\"H2428\"* of|strong=\"H3605\"* Benjamin|strong=\"H1144\"* fell|strong=\"H5307\"*; all|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1144\"* men|strong=\"H2428\"* of|strong=\"H3605\"* valor|strong=\"H2428\"*." + }, + { + "verseNum": 45, + "text": "They|strong=\"H5704\"* turned|strong=\"H6437\"* and|strong=\"H2568\"* fled|strong=\"H5127\"* toward|strong=\"H4480\"* the|strong=\"H5221\"* wilderness|strong=\"H4057\"* to|strong=\"H5704\"* the|strong=\"H5221\"* rock|strong=\"H5553\"* of|strong=\"H4057\"* Rimmon|strong=\"H7417\"*. They|strong=\"H5704\"* gleaned|strong=\"H5953\"* five|strong=\"H2568\"* thousand men of|strong=\"H4057\"* them|strong=\"H5221\"* in|strong=\"H5127\"* the|strong=\"H5221\"* highways|strong=\"H4546\"*, and|strong=\"H2568\"* followed hard|strong=\"H1692\"* after|strong=\"H4480\"* them|strong=\"H5221\"* to|strong=\"H5704\"* Gidom|strong=\"H1440\"*, and|strong=\"H2568\"* struck|strong=\"H5221\"* two|strong=\"H4480\"* thousand men of|strong=\"H4057\"* them|strong=\"H5221\"*." + }, + { + "verseNum": 46, + "text": "So|strong=\"H1961\"* that|strong=\"H3605\"* all|strong=\"H3605\"* who|strong=\"H3605\"* fell|strong=\"H5307\"* that|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H3117\"* Benjamin|strong=\"H1144\"* were|strong=\"H1961\"* twenty-five|strong=\"H6242\"* thousand men|strong=\"H2428\"* who|strong=\"H3605\"* drew|strong=\"H8025\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*. All|strong=\"H3605\"* these|strong=\"H1931\"* were|strong=\"H1961\"* men|strong=\"H2428\"* of|strong=\"H3117\"* valor|strong=\"H2428\"*." + }, + { + "verseNum": 47, + "text": "But|strong=\"H6437\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* men turned|strong=\"H6437\"* and|strong=\"H3967\"* fled|strong=\"H5127\"* toward|strong=\"H6437\"* the|strong=\"H3427\"* wilderness|strong=\"H4057\"* to|strong=\"H5127\"* the|strong=\"H3427\"* rock|strong=\"H5553\"* of|strong=\"H3427\"* Rimmon|strong=\"H7417\"*, and|strong=\"H3967\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* rock|strong=\"H5553\"* of|strong=\"H3427\"* Rimmon|strong=\"H7417\"* four months|strong=\"H2320\"*." + }, + { + "verseNum": 48, + "text": "The|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* turned|strong=\"H7725\"* again|strong=\"H7725\"* on|strong=\"H7971\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, and|strong=\"H1121\"* struck|strong=\"H5221\"* them|strong=\"H7725\"* with|strong=\"H5892\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*—including|strong=\"H5704\"* the|strong=\"H3605\"* entire|strong=\"H3605\"* city|strong=\"H5892\"*, the|strong=\"H3605\"* livestock, and|strong=\"H1121\"* all|strong=\"H3605\"* that|strong=\"H3605\"* they|strong=\"H5704\"* found|strong=\"H4672\"*. Moreover|strong=\"H1571\"* they|strong=\"H5704\"* set|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* they|strong=\"H5704\"* found|strong=\"H4672\"* on|strong=\"H7971\"* fire." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H5414\"* the|strong=\"H5414\"* men|strong=\"H3478\"* of|strong=\"H1323\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* sworn|strong=\"H7650\"* in|strong=\"H3478\"* Mizpah|strong=\"H4709\"*, saying, “None|strong=\"H3808\"* of|strong=\"H1323\"* us|strong=\"H5414\"* will|strong=\"H3478\"* give|strong=\"H5414\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"* to|strong=\"H3478\"* Benjamin|strong=\"H1144\"* as|strong=\"H5414\"* a|strong=\"H3068\"* wife.”" + }, + { + "verseNum": 2, + "text": "The|strong=\"H6440\"* people|strong=\"H5971\"* came|strong=\"H5971\"* to|strong=\"H5704\"* Bethel|strong=\"H1008\"* and|strong=\"H1419\"* sat|strong=\"H3427\"* there|strong=\"H8033\"* until|strong=\"H5704\"* evening|strong=\"H6153\"* before|strong=\"H6440\"* God|strong=\"H1008\"*, and|strong=\"H1419\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H5375\"* voices|strong=\"H6963\"*, and|strong=\"H1419\"* wept|strong=\"H1058\"* severely." + }, + { + "verseNum": 3, + "text": "They|strong=\"H3117\"* said, “Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, why|strong=\"H4100\"* has|strong=\"H3068\"* this|strong=\"H2063\"* happened|strong=\"H1961\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, that|strong=\"H3117\"* there|strong=\"H1961\"* should|strong=\"H3068\"* be|strong=\"H1961\"* one|strong=\"H1961\"* tribe|strong=\"H7626\"* lacking|strong=\"H6485\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* today|strong=\"H3117\"*?”" + }, + { + "verseNum": 4, + "text": "On|strong=\"H1961\"* the|strong=\"H1129\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, the|strong=\"H1129\"* people|strong=\"H5971\"* rose|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H5971\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* there|strong=\"H8033\"*, and|strong=\"H5971\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H5971\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said, “Who|strong=\"H4310\"* is|strong=\"H3068\"* there|strong=\"H1961\"* among|strong=\"H4310\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H4310\"* didn’t come|strong=\"H5927\"* up|strong=\"H5927\"* in|strong=\"H3478\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*?” For|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* made|strong=\"H1961\"* a|strong=\"H3068\"* great|strong=\"H1419\"* oath|strong=\"H7621\"* concerning|strong=\"H3068\"* him|strong=\"H4191\"* who|strong=\"H4310\"* didn’t come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* to|strong=\"H3478\"* Mizpah|strong=\"H4709\"*, saying, “He|strong=\"H3588\"* shall|strong=\"H3068\"* surely|strong=\"H4191\"* be|strong=\"H1961\"* put|strong=\"H4191\"* to|strong=\"H3478\"* death|strong=\"H4191\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* grieved for|strong=\"H3117\"* Benjamin|strong=\"H1144\"* their|strong=\"H3117\"* brother, and|strong=\"H1121\"* said, “There|strong=\"H3117\"* is|strong=\"H3117\"* one|strong=\"H1121\"* tribe|strong=\"H7626\"* cut|strong=\"H1438\"* off|strong=\"H1438\"* from|strong=\"H3478\"* Israel|strong=\"H3478\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 7, + "text": "How|strong=\"H4100\"* shall|strong=\"H3068\"* we|strong=\"H3068\"* provide|strong=\"H6213\"* wives for|strong=\"H6213\"* those|strong=\"H6213\"* who|strong=\"H3068\"* remain|strong=\"H3498\"*, since we|strong=\"H3068\"* have|strong=\"H3068\"* sworn|strong=\"H7650\"* by|strong=\"H7650\"* Yahweh|strong=\"H3068\"* that|strong=\"H3068\"* we|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H1115\"* give|strong=\"H5414\"* them|strong=\"H5414\"* of|strong=\"H3068\"* our|strong=\"H3068\"* daughters|strong=\"H1323\"* to|strong=\"H3068\"* wives?”" + }, + { + "verseNum": 8, + "text": "They|strong=\"H3068\"* said, “What|strong=\"H4310\"* one|strong=\"H3808\"* is|strong=\"H3068\"* there|strong=\"H2009\"* of|strong=\"H3068\"* the|strong=\"H3068\"* tribes|strong=\"H7626\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* who|strong=\"H4310\"* didn’t come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* to|strong=\"H3478\"* Mizpah|strong=\"H4709\"*?” Behold|strong=\"H2009\"*, no|strong=\"H3808\"* one|strong=\"H3808\"* came|strong=\"H5927\"* from|strong=\"H5927\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"* to|strong=\"H3478\"* the|strong=\"H3068\"* camp|strong=\"H4264\"* to|strong=\"H3478\"* the|strong=\"H3068\"* assembly|strong=\"H6951\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3427\"* when|strong=\"H3427\"* the|strong=\"H6485\"* people|strong=\"H5971\"* were|strong=\"H5971\"* counted|strong=\"H6485\"*, behold|strong=\"H2009\"*, there|strong=\"H8033\"* were|strong=\"H5971\"* none of|strong=\"H3427\"* the|strong=\"H6485\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5221\"* congregation|strong=\"H5712\"* sent|strong=\"H7971\"* twelve|strong=\"H8147\"* thousand of|strong=\"H1121\"* the|strong=\"H5221\"* most valiant|strong=\"H2428\"* men|strong=\"H1121\"* there|strong=\"H8033\"*, and|strong=\"H1121\"* commanded|strong=\"H6680\"* them|strong=\"H7971\"*, saying|strong=\"H6310\"*, “Go|strong=\"H3212\"* and|strong=\"H1121\"* strike|strong=\"H5221\"* the|strong=\"H5221\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"* with|strong=\"H3427\"* the|strong=\"H5221\"* edge|strong=\"H6310\"* of|strong=\"H1121\"* the|strong=\"H5221\"* sword|strong=\"H2719\"*, with|strong=\"H3427\"* the|strong=\"H5221\"* women and|strong=\"H1121\"* the|strong=\"H5221\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*." + }, + { + "verseNum": 11, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H3605\"* thing|strong=\"H1697\"* that|strong=\"H3045\"* you|strong=\"H3605\"* shall|strong=\"H4904\"* do|strong=\"H6213\"*: you|strong=\"H3605\"* shall|strong=\"H4904\"* utterly|strong=\"H2763\"* destroy|strong=\"H2763\"* every|strong=\"H3605\"* male|strong=\"H2145\"*, and|strong=\"H6213\"* every|strong=\"H3605\"* woman|strong=\"H2088\"* who|strong=\"H3605\"* has|strong=\"H1697\"* lain|strong=\"H3045\"* with|strong=\"H6213\"* a|strong=\"H3068\"* man|strong=\"H2145\"*.”" + }, + { + "verseNum": 12, + "text": "They|strong=\"H3808\"* found|strong=\"H4672\"* among|strong=\"H3427\"* the|strong=\"H3045\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"* four hundred|strong=\"H3967\"* young|strong=\"H5291\"* virgins|strong=\"H1330\"* who|strong=\"H3427\"* had|strong=\"H3045\"* not|strong=\"H3808\"* known|strong=\"H3045\"* man|strong=\"H2145\"* by|strong=\"H3427\"* lying|strong=\"H4904\"* with|strong=\"H3427\"* him|strong=\"H4672\"*; and|strong=\"H3967\"* they|strong=\"H3808\"* brought them|strong=\"H4672\"* to|strong=\"H3045\"* the|strong=\"H3045\"* camp|strong=\"H4264\"* to|strong=\"H3045\"* Shiloh|strong=\"H7887\"*, which|strong=\"H5291\"* is|strong=\"H5291\"* in|strong=\"H3427\"* the|strong=\"H3045\"* land of|strong=\"H3427\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* sent|strong=\"H7971\"* and|strong=\"H1121\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* who|strong=\"H3605\"* were|strong=\"H1121\"* in|strong=\"H1696\"* the|strong=\"H3605\"* rock|strong=\"H5553\"* of|strong=\"H1121\"* Rimmon|strong=\"H7417\"*, and|strong=\"H1121\"* proclaimed|strong=\"H7121\"* peace|strong=\"H7965\"* to|strong=\"H1696\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 14, + "text": "Benjamin|strong=\"H1144\"* returned|strong=\"H7725\"* at|strong=\"H7725\"* that|strong=\"H1931\"* time|strong=\"H6256\"*; and|strong=\"H7725\"* they|strong=\"H3651\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* the|strong=\"H5414\"* women whom they|strong=\"H3651\"* had|strong=\"H5414\"* saved|strong=\"H2421\"* alive|strong=\"H2421\"* of|strong=\"H6256\"* the|strong=\"H5414\"* women of|strong=\"H6256\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"*. There|strong=\"H4672\"* still|strong=\"H7725\"* weren’t enough|strong=\"H4672\"* for|strong=\"H6256\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3588\"* people|strong=\"H5971\"* grieved for|strong=\"H3588\"* Benjamin|strong=\"H1144\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* made|strong=\"H6213\"* a|strong=\"H3068\"* breach|strong=\"H6556\"* in|strong=\"H3478\"* the|strong=\"H3588\"* tribes|strong=\"H7626\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H6213\"* the|strong=\"H3588\"* elders|strong=\"H2205\"* of|strong=\"H2205\"* the|strong=\"H3588\"* congregation|strong=\"H5712\"* said, “How|strong=\"H4100\"* shall|strong=\"H5712\"* we|strong=\"H3068\"* provide|strong=\"H6213\"* wives for|strong=\"H3588\"* those|strong=\"H6213\"* who|strong=\"H3588\"* remain|strong=\"H3498\"*, since|strong=\"H3588\"* the|strong=\"H3588\"* women|strong=\"H2205\"* are|strong=\"H4100\"* destroyed|strong=\"H8045\"* out|strong=\"H6213\"* of|strong=\"H2205\"* Benjamin|strong=\"H1144\"*?”" + }, + { + "verseNum": 17, + "text": "They|strong=\"H3808\"* said, “There must|strong=\"H3478\"* be|strong=\"H3808\"* an|strong=\"H3478\"* inheritance|strong=\"H3425\"* for|strong=\"H3478\"* those who|strong=\"H3478\"* are|strong=\"H3478\"* escaped|strong=\"H6413\"* of|strong=\"H7626\"* Benjamin|strong=\"H1144\"*, that|strong=\"H3478\"* a|strong=\"H3068\"* tribe|strong=\"H7626\"* not|strong=\"H3808\"* be|strong=\"H3808\"* blotted|strong=\"H4229\"* out|strong=\"H4229\"* from|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 18, + "text": "However|strong=\"H3588\"*, we|strong=\"H3068\"* may|strong=\"H3201\"* not|strong=\"H3808\"* give|strong=\"H5414\"* them|strong=\"H5414\"* wives of|strong=\"H1121\"* our|strong=\"H5414\"* daughters|strong=\"H1323\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* sworn|strong=\"H7650\"*, saying, ‘Cursed is|strong=\"H3478\"* he|strong=\"H3588\"* who|strong=\"H1121\"* gives|strong=\"H5414\"* a|strong=\"H3068\"* wife to|strong=\"H3478\"* Benjamin|strong=\"H1144\"*.’”" + }, + { + "verseNum": 19, + "text": "They|strong=\"H3117\"* said, “Behold|strong=\"H2009\"*, there|strong=\"H2009\"* is|strong=\"H3068\"* a|strong=\"H3068\"* feast|strong=\"H2282\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* from|strong=\"H5927\"* year|strong=\"H3117\"* to|strong=\"H3068\"* year|strong=\"H3117\"* in|strong=\"H3068\"* Shiloh|strong=\"H7887\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H3117\"* the|strong=\"H3068\"* north|strong=\"H6828\"* of|strong=\"H3068\"* Bethel|strong=\"H1008\"*, on|strong=\"H3117\"* the|strong=\"H3068\"* east|strong=\"H4217\"* side|strong=\"H6828\"* of|strong=\"H3068\"* the|strong=\"H3068\"* highway|strong=\"H4546\"* that|strong=\"H3117\"* goes|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* Bethel|strong=\"H1008\"* to|strong=\"H3068\"* Shechem|strong=\"H7927\"*, and|strong=\"H3068\"* on|strong=\"H3117\"* the|strong=\"H3068\"* south|strong=\"H5045\"* of|strong=\"H3068\"* Lebonah|strong=\"H3829\"*.”" + }, + { + "verseNum": 20, + "text": "They commanded|strong=\"H6680\"* the|strong=\"H6680\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, saying, “Go|strong=\"H3212\"* and|strong=\"H1121\"* lie in|strong=\"H3212\"* wait in|strong=\"H3212\"* the|strong=\"H6680\"* vineyards|strong=\"H3754\"*," + }, + { + "verseNum": 21, + "text": "and|strong=\"H1980\"* see|strong=\"H7200\"*, and|strong=\"H1980\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Shiloh|strong=\"H7887\"* come|strong=\"H1980\"* out|strong=\"H3318\"* to|strong=\"H1980\"* dance|strong=\"H4246\"* in|strong=\"H1980\"* the|strong=\"H7200\"* dances|strong=\"H4246\"*, then|strong=\"H1980\"* come|strong=\"H1980\"* out|strong=\"H3318\"* of|strong=\"H1323\"* the|strong=\"H7200\"* vineyards|strong=\"H3754\"*, and|strong=\"H1980\"* each man|strong=\"H7200\"* catch|strong=\"H2414\"* his|strong=\"H7200\"* wife of|strong=\"H1323\"* the|strong=\"H7200\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Shiloh|strong=\"H7887\"*, and|strong=\"H1980\"* go|strong=\"H1980\"* to|strong=\"H1980\"* the|strong=\"H7200\"* land of|strong=\"H1323\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 22, + "text": "It|strong=\"H5414\"* shall|strong=\"H3808\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* their|strong=\"H5414\"* fathers or|strong=\"H3808\"* their|strong=\"H5414\"* brothers come|strong=\"H1961\"* to|strong=\"H1961\"* complain|strong=\"H7378\"* to|strong=\"H1961\"* us|strong=\"H5414\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H1961\"* say to|strong=\"H1961\"* them|strong=\"H5414\"*, ‘Grant|strong=\"H5414\"* them|strong=\"H5414\"* graciously|strong=\"H2603\"* to|strong=\"H1961\"* us|strong=\"H5414\"*, because|strong=\"H3588\"* we|strong=\"H3068\"* didn’t take|strong=\"H3947\"* for|strong=\"H3588\"* each|strong=\"H5414\"* man his|strong=\"H5414\"* wife in|strong=\"H4421\"* battle|strong=\"H4421\"*, neither|strong=\"H3808\"* did|strong=\"H3808\"* you|strong=\"H3588\"* give|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H1961\"* them|strong=\"H5414\"*; otherwise|strong=\"H3808\"* you|strong=\"H3588\"* would now|strong=\"H1961\"* be|strong=\"H1961\"* guilty.’”" + }, + { + "verseNum": 23, + "text": "The|strong=\"H5375\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* did|strong=\"H6213\"* so|strong=\"H3651\"*, and|strong=\"H1121\"* took|strong=\"H5375\"* wives for|strong=\"H6213\"* themselves|strong=\"H6213\"* according|strong=\"H4480\"* to|strong=\"H7725\"* their|strong=\"H5375\"* number|strong=\"H4557\"*, of|strong=\"H1121\"* those|strong=\"H4480\"* who|strong=\"H1121\"* danced|strong=\"H2342\"*, whom they|strong=\"H3651\"* carried|strong=\"H5375\"* off|strong=\"H4480\"*. They|strong=\"H3651\"* went|strong=\"H3212\"* and|strong=\"H1121\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* their|strong=\"H5375\"* inheritance|strong=\"H5159\"*, built|strong=\"H1129\"* the|strong=\"H5375\"* cities|strong=\"H5892\"*, and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* departed|strong=\"H1980\"* from|strong=\"H3318\"* there|strong=\"H8033\"* at|strong=\"H3478\"* that|strong=\"H1931\"* time|strong=\"H6256\"*, every|strong=\"H4940\"* man|strong=\"H1121\"* to|strong=\"H1980\"* his|strong=\"H3478\"* tribe|strong=\"H7626\"* and|strong=\"H1121\"* to|strong=\"H1980\"* his|strong=\"H3478\"* family|strong=\"H4940\"*, and|strong=\"H1121\"* they|strong=\"H8033\"* each went|strong=\"H1980\"* out|strong=\"H3318\"* from|strong=\"H3318\"* there|strong=\"H8033\"* to|strong=\"H1980\"* his|strong=\"H3478\"* own inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 25, + "text": "In|strong=\"H3478\"* those|strong=\"H1992\"* days|strong=\"H3117\"* there|strong=\"H1992\"* was|strong=\"H3478\"* no|strong=\"H6213\"* king|strong=\"H4428\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*. Everyone did|strong=\"H6213\"* that|strong=\"H3117\"* which|strong=\"H1992\"* was|strong=\"H3478\"* right|strong=\"H3477\"* in|strong=\"H3478\"* his|strong=\"H3478\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*." + } + ] + } + ] + }, + { + "name": "Ruth", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* when|strong=\"H1961\"* the|strong=\"H3117\"* judges|strong=\"H8199\"* judged|strong=\"H8199\"*, there|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* famine|strong=\"H7458\"* in|strong=\"H3117\"* the|strong=\"H3117\"* land|strong=\"H7704\"*. A|strong=\"H3068\"* certain man|strong=\"H1121\"* of|strong=\"H1121\"* Bethlehem|strong=\"H1035\"* Judah|strong=\"H3063\"* went|strong=\"H3212\"* to|strong=\"H3212\"* live|strong=\"H1481\"* in|strong=\"H3117\"* the|strong=\"H3117\"* country|strong=\"H7704\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"* with|strong=\"H3117\"* his|strong=\"H1961\"* wife and|strong=\"H1121\"* his|strong=\"H1961\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H1961\"* name|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H1961\"* man|strong=\"H1121\"* was|strong=\"H8034\"* Elimelech, and|strong=\"H1121\"* the|strong=\"H1961\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H1961\"* wife Naomi|strong=\"H5281\"*. The|strong=\"H1961\"* names|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H1961\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* were|strong=\"H1961\"* Mahlon|strong=\"H4248\"* and|strong=\"H1121\"* Chilion|strong=\"H3630\"*, Ephrathites of|strong=\"H1121\"* Bethlehem|strong=\"H1035\"* Judah|strong=\"H3063\"*. They|strong=\"H8033\"* came|strong=\"H1961\"* into|strong=\"H1961\"* the|strong=\"H1961\"* country|strong=\"H7704\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"* and|strong=\"H1121\"* lived|strong=\"H1961\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 3, + "text": "Elimelech, Naomi|strong=\"H5281\"*’s husband, died|strong=\"H4191\"*; and|strong=\"H1121\"* she|strong=\"H1931\"* was|strong=\"H1931\"* left|strong=\"H7604\"* with|strong=\"H4191\"* her|strong=\"H1931\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H8033\"* took|strong=\"H5375\"* for|strong=\"H8034\"* themselves wives of|strong=\"H8141\"* the|strong=\"H5375\"* women of|strong=\"H8141\"* Moab|strong=\"H4125\"*. The|strong=\"H5375\"* name|strong=\"H8034\"* of|strong=\"H8141\"* the|strong=\"H5375\"* one|strong=\"H5375\"* was|strong=\"H8034\"* Orpah|strong=\"H6204\"*, and|strong=\"H8033\"* the|strong=\"H5375\"* name|strong=\"H8034\"* of|strong=\"H8141\"* the|strong=\"H5375\"* other|strong=\"H8145\"* was|strong=\"H8034\"* Ruth|strong=\"H7327\"*. They|strong=\"H8033\"* lived|strong=\"H3427\"* there|strong=\"H8033\"* about|strong=\"H8033\"* ten|strong=\"H6235\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 5, + "text": "Mahlon|strong=\"H4248\"* and|strong=\"H8147\"* Chilion|strong=\"H3630\"* both|strong=\"H8147\"* died|strong=\"H4191\"*, and|strong=\"H8147\"* the|strong=\"H1571\"* woman was|strong=\"H3206\"* bereaved of|strong=\"H8147\"* her|strong=\"H1571\"* two|strong=\"H8147\"* children|strong=\"H3206\"* and|strong=\"H8147\"* of|strong=\"H8147\"* her|strong=\"H1571\"* husband." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H6965\"* she|strong=\"H1931\"* arose|strong=\"H6965\"* with|strong=\"H3068\"* her|strong=\"H5414\"* daughters-in-law|strong=\"H3618\"*, that|strong=\"H3588\"* she|strong=\"H1931\"* might|strong=\"H3068\"* return|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H8085\"* country|strong=\"H7704\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"*; for|strong=\"H3588\"* she|strong=\"H1931\"* had|strong=\"H3068\"* heard|strong=\"H8085\"* in|strong=\"H3068\"* the|strong=\"H8085\"* country|strong=\"H7704\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"* how|strong=\"H3588\"* Yahweh|strong=\"H3068\"*+ 1:6 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* had|strong=\"H3068\"* visited|strong=\"H6485\"* his|strong=\"H5414\"* people|strong=\"H5971\"* in|strong=\"H3068\"* giving|strong=\"H5414\"* them|strong=\"H5414\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 7, + "text": "She|strong=\"H8147\"* went|strong=\"H3212\"* out|strong=\"H3318\"* of|strong=\"H1870\"* the|strong=\"H4480\"* place|strong=\"H4725\"* where|strong=\"H8033\"* she|strong=\"H8147\"* was|strong=\"H1961\"*, and|strong=\"H3063\"* her|strong=\"H3318\"* two|strong=\"H8147\"* daughters-in-law|strong=\"H3618\"* with|strong=\"H5973\"* her|strong=\"H3318\"*. They|strong=\"H8033\"* went|strong=\"H3212\"* on|strong=\"H1870\"* the|strong=\"H4480\"* way|strong=\"H1870\"* to|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H4480\"* land|strong=\"H4725\"* of|strong=\"H1870\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 8, + "text": "Naomi|strong=\"H5281\"* said to|strong=\"H7725\"* her|strong=\"H7725\"* two|strong=\"H8147\"* daughters-in-law|strong=\"H3618\"*, “Go|strong=\"H3212\"*, return|strong=\"H7725\"* each|strong=\"H8147\"* of|strong=\"H1004\"* you|strong=\"H7725\"* to|strong=\"H7725\"* her|strong=\"H7725\"* mother’s house|strong=\"H1004\"*. May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* deal|strong=\"H6213\"* kindly|strong=\"H2617\"* with|strong=\"H5973\"* you|strong=\"H7725\"*, as|strong=\"H6213\"* you|strong=\"H7725\"* have|strong=\"H3068\"* dealt|strong=\"H6213\"* with|strong=\"H5973\"* the|strong=\"H6213\"* dead|strong=\"H4191\"* and|strong=\"H3068\"* with|strong=\"H5973\"* me|strong=\"H7725\"*." + }, + { + "verseNum": 9, + "text": "May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* grant|strong=\"H5414\"* you|strong=\"H5414\"* that|strong=\"H3068\"* you|strong=\"H5414\"* may|strong=\"H3068\"* find|strong=\"H4672\"* rest|strong=\"H4496\"*, each|strong=\"H5414\"* of|strong=\"H1004\"* you|strong=\"H5414\"* in|strong=\"H3068\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1004\"* her|strong=\"H5414\"* husband.”" + }, + { + "verseNum": 10, + "text": "They|strong=\"H3588\"* said to|strong=\"H7725\"* her|strong=\"H7725\"*, “No, but|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H5971\"* return|strong=\"H7725\"* with|strong=\"H5971\"* you|strong=\"H3588\"* to|strong=\"H7725\"* your|strong=\"H7725\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 11, + "text": "Naomi|strong=\"H5281\"* said, “Go|strong=\"H3212\"* back|strong=\"H7725\"*, my|strong=\"H7725\"* daughters|strong=\"H1323\"*. Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H7725\"* want to|strong=\"H7725\"* go|strong=\"H3212\"* with|strong=\"H5973\"* me|strong=\"H7725\"*? Do|strong=\"H4100\"* I|strong=\"H4100\"* still|strong=\"H5750\"* have|strong=\"H1961\"* sons|strong=\"H1121\"* in|strong=\"H3212\"* my|strong=\"H7725\"* womb|strong=\"H4578\"*, that|strong=\"H1121\"* they|strong=\"H4100\"* may|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H7725\"* husbands|strong=\"H5973\"*?" + }, + { + "verseNum": 12, + "text": "Go|strong=\"H3212\"* back|strong=\"H7725\"*, my|strong=\"H7725\"* daughters|strong=\"H1323\"*, go|strong=\"H3212\"* your|strong=\"H7725\"* way|strong=\"H3212\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* too|strong=\"H1571\"* old|strong=\"H1121\"* to|strong=\"H7725\"* have|strong=\"H1961\"* a|strong=\"H3068\"* husband. If|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* say|strong=\"H7725\"*, ‘I|strong=\"H3588\"* have|strong=\"H1961\"* hope|strong=\"H8615\"*,’ if|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* even|strong=\"H1571\"* have|strong=\"H1961\"* a|strong=\"H3068\"* husband tonight|strong=\"H3915\"*, and|strong=\"H1121\"* should|strong=\"H3588\"* also|strong=\"H1571\"* bear|strong=\"H3205\"* sons|strong=\"H1121\"*," + }, + { + "verseNum": 13, + "text": "would|strong=\"H3068\"* you|strong=\"H3588\"* then|strong=\"H1961\"* wait|strong=\"H7663\"* until|strong=\"H5704\"* they|strong=\"H3588\"* were|strong=\"H1961\"* grown|strong=\"H1431\"*? Would|strong=\"H3068\"* you|strong=\"H3588\"* then|strong=\"H1961\"* refrain|strong=\"H5702\"* from|strong=\"H4480\"* having|strong=\"H1961\"* husbands? No|strong=\"H1115\"*, my|strong=\"H3068\"* daughters|strong=\"H1323\"*, for|strong=\"H3588\"* it|strong=\"H3588\"* grieves me|strong=\"H4480\"* seriously for|strong=\"H3588\"* your|strong=\"H3068\"* sakes, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* has|strong=\"H3068\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H4480\"* me|strong=\"H4480\"*.”" + }, + { + "verseNum": 14, + "text": "They|strong=\"H5375\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H5375\"* voices|strong=\"H6963\"* and|strong=\"H6963\"* wept|strong=\"H1058\"* again|strong=\"H5750\"*; then|strong=\"H5375\"* Orpah|strong=\"H6204\"* kissed|strong=\"H5401\"* her|strong=\"H5375\"* mother-in-law|strong=\"H2545\"*, but|strong=\"H5750\"* Ruth|strong=\"H7327\"* stayed|strong=\"H5750\"* with|strong=\"H5375\"* her|strong=\"H5375\"*." + }, + { + "verseNum": 15, + "text": "She said, “Behold|strong=\"H2009\"*,+ 1:15 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* your|strong=\"H7725\"* sister-in-law|strong=\"H2994\"* has|strong=\"H2009\"* gone|strong=\"H7725\"* back|strong=\"H7725\"* to|strong=\"H7725\"* her|strong=\"H7725\"* people|strong=\"H5971\"* and|strong=\"H7725\"* to|strong=\"H7725\"* her|strong=\"H7725\"* god. Follow your|strong=\"H7725\"* sister-in-law|strong=\"H2994\"*.”" + }, + { + "verseNum": 16, + "text": "Ruth|strong=\"H7327\"* said, “Don’t urge|strong=\"H6293\"* me|strong=\"H7725\"* to|strong=\"H7725\"* leave|strong=\"H5800\"* you|strong=\"H3588\"*, and|strong=\"H7725\"* to|strong=\"H7725\"* return|strong=\"H7725\"* from|strong=\"H7725\"* following|strong=\"H3212\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* where you|strong=\"H3588\"* go|strong=\"H3212\"*, I|strong=\"H3588\"* will|strong=\"H5971\"* go|strong=\"H3212\"*; and|strong=\"H7725\"* where you|strong=\"H3588\"* stay|strong=\"H3885\"*, I|strong=\"H3588\"* will|strong=\"H5971\"* stay|strong=\"H3885\"*. Your|strong=\"H7725\"* people|strong=\"H5971\"* will|strong=\"H5971\"* be|strong=\"H5971\"* my|strong=\"H7725\"* people|strong=\"H5971\"*, and|strong=\"H7725\"* your|strong=\"H7725\"* God+ 1:16 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* my|strong=\"H7725\"* God." + }, + { + "verseNum": 17, + "text": "Where|strong=\"H8033\"* you|strong=\"H3588\"* die|strong=\"H4191\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* die|strong=\"H4191\"*, and|strong=\"H3068\"* there|strong=\"H8033\"* I|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H4191\"* buried|strong=\"H6912\"*. May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* do|strong=\"H6213\"* so|strong=\"H6213\"* to|strong=\"H4191\"* me|strong=\"H6213\"*, and|strong=\"H3068\"* more|strong=\"H3254\"* also|strong=\"H3068\"*, if|strong=\"H3588\"* anything|strong=\"H6213\"* but|strong=\"H3588\"* death|strong=\"H4194\"* parts|strong=\"H6504\"* you|strong=\"H3588\"* and|strong=\"H3068\"* me|strong=\"H6213\"*.”" + }, + { + "verseNum": 18, + "text": "When|strong=\"H3588\"* Naomi saw|strong=\"H7200\"* that|strong=\"H3588\"* she|strong=\"H1931\"* was|strong=\"H1931\"* determined to|strong=\"H1696\"* go|strong=\"H3212\"* with|strong=\"H1696\"* her|strong=\"H7200\"*, she|strong=\"H1931\"* stopped|strong=\"H2308\"* urging her|strong=\"H7200\"*." + }, + { + "verseNum": 19, + "text": "So|strong=\"H1961\"* they|strong=\"H5921\"* both|strong=\"H8147\"* went|strong=\"H3212\"* until|strong=\"H5704\"* they|strong=\"H5921\"* came|strong=\"H1961\"* to|strong=\"H5704\"* Bethlehem|strong=\"H1035\"*. When|strong=\"H1961\"* they|strong=\"H5921\"* had|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H5704\"* Bethlehem|strong=\"H1035\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* city|strong=\"H5892\"* was|strong=\"H1961\"* excited about|strong=\"H1961\"* them|strong=\"H5921\"*, and|strong=\"H3212\"* they|strong=\"H5921\"* asked, “Is|strong=\"H3605\"* this|strong=\"H2063\"* Naomi|strong=\"H5281\"*?”" + }, + { + "verseNum": 20, + "text": "She|strong=\"H3588\"* said|strong=\"H7121\"* to|strong=\"H7121\"* them|strong=\"H7121\"*, “Don’t call|strong=\"H7121\"* me|strong=\"H7121\"* Naomi|strong=\"H5281\"*.+ 1:20 “Naomi” means “pleasant”.* Call|strong=\"H7121\"* me|strong=\"H7121\"* Mara|strong=\"H4755\"*,+ 1:20 “Mara” means “bitter”.* for|strong=\"H3588\"* the|strong=\"H3588\"* Almighty|strong=\"H7706\"* has|strong=\"H3588\"* dealt|strong=\"H4843\"* very|strong=\"H3966\"* bitterly|strong=\"H4843\"* with|strong=\"H4843\"* me|strong=\"H7121\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"H4100\"* went|strong=\"H1980\"* out|strong=\"H1980\"* full|strong=\"H4392\"*, and|strong=\"H1980\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* brought|strong=\"H7725\"* me|strong=\"H7725\"* home|strong=\"H7725\"* again|strong=\"H7725\"* empty|strong=\"H7387\"*. Why|strong=\"H4100\"* do|strong=\"H7489\"* you|strong=\"H7725\"* call|strong=\"H7121\"* me|strong=\"H7725\"* Naomi|strong=\"H5281\"*, since Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* testified|strong=\"H6030\"* against|strong=\"H3068\"* me|strong=\"H7725\"*, and|strong=\"H1980\"* the|strong=\"H3068\"* Almighty|strong=\"H7706\"* has|strong=\"H3068\"* afflicted|strong=\"H7489\"* me|strong=\"H7725\"*?”" + }, + { + "verseNum": 22, + "text": "So|strong=\"H7725\"* Naomi|strong=\"H5281\"* returned|strong=\"H7725\"*, and|strong=\"H7725\"* Ruth|strong=\"H7327\"* the|strong=\"H7725\"* Moabitess|strong=\"H4125\"*, her|strong=\"H7725\"* daughter-in-law|strong=\"H3618\"*, with|strong=\"H5973\"* her|strong=\"H7725\"*, who|strong=\"H1992\"* returned|strong=\"H7725\"* out|strong=\"H7725\"* of|strong=\"H7704\"* the|strong=\"H7725\"* country|strong=\"H7704\"* of|strong=\"H7704\"* Moab|strong=\"H4124\"*. They|strong=\"H1992\"* came|strong=\"H7725\"* to|strong=\"H7725\"* Bethlehem|strong=\"H1035\"* in|strong=\"H7725\"* the|strong=\"H7725\"* beginning|strong=\"H8462\"* of|strong=\"H7704\"* barley|strong=\"H8184\"* harvest|strong=\"H7105\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Naomi|strong=\"H5281\"* had|strong=\"H3045\"* a|strong=\"H3068\"* relative of|strong=\"H8034\"* her|strong=\"H3045\"* husband’s, a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* of|strong=\"H8034\"* wealth|strong=\"H2428\"*, of|strong=\"H8034\"* the|strong=\"H3045\"* family|strong=\"H4940\"* of|strong=\"H8034\"* Elimelech, and|strong=\"H3045\"* his|strong=\"H3045\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Boaz|strong=\"H1162\"*." + }, + { + "verseNum": 2, + "text": "Ruth|strong=\"H7327\"* the|strong=\"H4672\"* Moabitess|strong=\"H4125\"* said to|strong=\"H3212\"* Naomi|strong=\"H5281\"*, “Let|strong=\"H4994\"* me|strong=\"H4994\"* now|strong=\"H4994\"* go|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H4672\"* field|strong=\"H7704\"*, and|strong=\"H3212\"* glean|strong=\"H3950\"* among|strong=\"H4672\"* the|strong=\"H4672\"* ears|strong=\"H7641\"* of|strong=\"H1323\"* grain|strong=\"H7641\"* after him|strong=\"H4672\"* in|strong=\"H3212\"* whose|strong=\"H1323\"* sight|strong=\"H5869\"* I|strong=\"H4672\"* find|strong=\"H4672\"* favor|strong=\"H2580\"*.”" + }, + { + "verseNum": 3, + "text": "She went|strong=\"H3212\"*, and|strong=\"H3212\"* came|strong=\"H3212\"* and|strong=\"H3212\"* gleaned|strong=\"H3950\"* in|strong=\"H3212\"* the|strong=\"H3212\"* field|strong=\"H7704\"* after the|strong=\"H3212\"* reapers|strong=\"H7114\"*; and|strong=\"H3212\"* she happened|strong=\"H7136\"* to|strong=\"H3212\"* come|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3212\"* portion|strong=\"H2513\"* of|strong=\"H7704\"* the|strong=\"H3212\"* field|strong=\"H7704\"* belonging to|strong=\"H3212\"* Boaz|strong=\"H1162\"*, who was|strong=\"H4940\"* of|strong=\"H7704\"* the|strong=\"H3212\"* family|strong=\"H4940\"* of|strong=\"H7704\"* Elimelech." + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2009\"*, Boaz|strong=\"H1162\"* came|strong=\"H3068\"* from|strong=\"H3068\"* Bethlehem|strong=\"H1035\"*, and|strong=\"H3068\"* said to|strong=\"H3068\"* the|strong=\"H3068\"* reapers|strong=\"H7114\"*, “May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* be|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H5973\"*.”" + }, + { + "verseNum": 5, + "text": "Then Boaz|strong=\"H1162\"* said to|strong=\"H5921\"* his|strong=\"H5921\"* servant|strong=\"H5288\"* who|strong=\"H4310\"* was|strong=\"H5288\"* set|strong=\"H5324\"* over|strong=\"H5921\"* the|strong=\"H5921\"* reapers|strong=\"H7114\"*, “Whose|strong=\"H4310\"* young|strong=\"H5288\"* lady|strong=\"H5291\"* is|strong=\"H4310\"* this|strong=\"H2063\"*?”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* servant|strong=\"H5288\"* who|strong=\"H1931\"* was|strong=\"H1931\"* set|strong=\"H5324\"* over|strong=\"H5921\"* the|strong=\"H5921\"* reapers|strong=\"H7114\"* answered|strong=\"H6030\"*, “It|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H5921\"* Moabite|strong=\"H4125\"* lady|strong=\"H5291\"* who|strong=\"H1931\"* came|strong=\"H7725\"* back|strong=\"H7725\"* with|strong=\"H5973\"* Naomi|strong=\"H5281\"* out|strong=\"H5921\"* of|strong=\"H7704\"* the|strong=\"H5921\"* country|strong=\"H7704\"* of|strong=\"H7704\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 7, + "text": "She|strong=\"H1242\"* said, ‘Please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* glean|strong=\"H3950\"* and|strong=\"H1004\"* gather|strong=\"H3950\"* after|strong=\"H1242\"* the|strong=\"H5704\"* reapers|strong=\"H7114\"* among|strong=\"H3427\"* the|strong=\"H5704\"* sheaves|strong=\"H6016\"*.’ So|strong=\"H6258\"* she|strong=\"H1242\"* came, and|strong=\"H1004\"* has|strong=\"H2088\"* continued|strong=\"H3427\"* even|strong=\"H5704\"* from|strong=\"H5704\"* the|strong=\"H5704\"* morning|strong=\"H1242\"* until|strong=\"H5704\"* now|strong=\"H6258\"*, except that|strong=\"H2088\"* she|strong=\"H1242\"* rested a|strong=\"H3068\"* little|strong=\"H4592\"* in|strong=\"H3427\"* the|strong=\"H5704\"* house|strong=\"H1004\"*.”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H2088\"* Boaz|strong=\"H1162\"* said|strong=\"H8085\"* to|strong=\"H3212\"* Ruth|strong=\"H7327\"*, “Listen|strong=\"H8085\"*, my|strong=\"H8085\"* daughter|strong=\"H1323\"*. Don’t go|strong=\"H3212\"* to|strong=\"H3212\"* glean|strong=\"H3950\"* in|strong=\"H8085\"* another|strong=\"H2088\"* field|strong=\"H7704\"*, and|strong=\"H3212\"* don’t go|strong=\"H3212\"* from|strong=\"H8085\"* here|strong=\"H2088\"*, but|strong=\"H3808\"* stay|strong=\"H1692\"* here|strong=\"H2088\"* close|strong=\"H1692\"* to|strong=\"H3212\"* my|strong=\"H8085\"* maidens|strong=\"H5291\"*." + }, + { + "verseNum": 9, + "text": "Let|strong=\"H3808\"* your|strong=\"H6680\"* eyes|strong=\"H5869\"* be|strong=\"H3808\"* on|strong=\"H1980\"* the|strong=\"H6680\"* field|strong=\"H7704\"* that|strong=\"H5288\"* they|strong=\"H3808\"* reap|strong=\"H7114\"*, and|strong=\"H1980\"* go|strong=\"H1980\"* after|strong=\"H1980\"* them|strong=\"H6680\"*. Haven’t I|strong=\"H6680\"* commanded|strong=\"H6680\"* the|strong=\"H6680\"* young|strong=\"H5288\"* men|strong=\"H5288\"* not|strong=\"H3808\"* to|strong=\"H1980\"* touch|strong=\"H5060\"* you|strong=\"H6680\"*? When|strong=\"H1980\"* you|strong=\"H6680\"* are|strong=\"H5869\"* thirsty|strong=\"H6770\"*, go|strong=\"H1980\"* to|strong=\"H1980\"* the|strong=\"H6680\"* vessels|strong=\"H3627\"*, and|strong=\"H1980\"* drink|strong=\"H8354\"* from|strong=\"H1980\"* that|strong=\"H5288\"* which|strong=\"H5869\"* the|strong=\"H6680\"* young|strong=\"H5288\"* men|strong=\"H5288\"* have|strong=\"H5869\"* drawn|strong=\"H7579\"*.”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H5307\"* she|strong=\"H5921\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* her|strong=\"H5921\"* face|strong=\"H6440\"* and|strong=\"H5869\"* bowed|strong=\"H7812\"* herself|strong=\"H7812\"* to|strong=\"H5921\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*, and|strong=\"H5869\"* said to|strong=\"H5921\"* him|strong=\"H6440\"*, “Why|strong=\"H4069\"* have|strong=\"H5869\"* I|strong=\"H5921\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* your|strong=\"H5921\"* sight|strong=\"H5869\"*, that|strong=\"H5307\"* you|strong=\"H6440\"* should|strong=\"H4069\"* take|strong=\"H5234\"* knowledge|strong=\"H5234\"* of|strong=\"H6440\"* me|strong=\"H6440\"*, since I|strong=\"H5921\"* am a|strong=\"H3068\"* foreigner|strong=\"H5237\"*?”" + }, + { + "verseNum": 11, + "text": "Boaz|strong=\"H1162\"* answered|strong=\"H6030\"* her|strong=\"H3605\"*, “I|strong=\"H3045\"* have|strong=\"H5971\"* been|strong=\"H4194\"* told|strong=\"H5046\"* all|strong=\"H3605\"* about|strong=\"H6213\"* what|strong=\"H3045\"* you|strong=\"H3605\"* have|strong=\"H5971\"* done|strong=\"H6213\"* for|strong=\"H6213\"* your|strong=\"H3605\"* mother-in-law|strong=\"H2545\"* since the|strong=\"H3605\"* death|strong=\"H4194\"* of|strong=\"H5971\"* your|strong=\"H3605\"* husband, and|strong=\"H6030\"* how|strong=\"H3045\"* you|strong=\"H3605\"* have|strong=\"H5971\"* left|strong=\"H5800\"* your|strong=\"H3605\"* father, your|strong=\"H3605\"* mother, and|strong=\"H6030\"* the|strong=\"H3605\"* land of|strong=\"H5971\"* your|strong=\"H3605\"* birth|strong=\"H4138\"*, and|strong=\"H6030\"* have|strong=\"H5971\"* come|strong=\"H3212\"* to|strong=\"H3212\"* a|strong=\"H3068\"* people|strong=\"H5971\"* that|strong=\"H3045\"* you|strong=\"H3605\"* didn’t know|strong=\"H3045\"* before|strong=\"H3808\"*." + }, + { + "verseNum": 12, + "text": "May|strong=\"H1961\"* Yahweh|strong=\"H3068\"* repay|strong=\"H7999\"* your|strong=\"H3068\"* work|strong=\"H6467\"*, and|strong=\"H3478\"* a|strong=\"H3068\"* full|strong=\"H8003\"* reward|strong=\"H7999\"* be|strong=\"H1961\"* given to|strong=\"H3478\"* you|strong=\"H5973\"* from|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, under|strong=\"H8478\"* whose wings|strong=\"H3671\"* you|strong=\"H5973\"* have|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H3478\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"*.”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H1961\"* she|strong=\"H3588\"* said|strong=\"H1696\"*, “Let|strong=\"H3808\"* me|strong=\"H5921\"* find|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* your|strong=\"H5921\"* sight|strong=\"H5869\"*, my|strong=\"H5921\"* lord, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* comforted|strong=\"H5162\"* me|strong=\"H5921\"*, and|strong=\"H5869\"* because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"* kindly|strong=\"H3820\"* to|strong=\"H1696\"* your|strong=\"H5921\"* servant|strong=\"H8198\"*, though|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* not|strong=\"H3808\"* as|strong=\"H1961\"* one|strong=\"H3808\"* of|strong=\"H5869\"* your|strong=\"H5921\"* servants|strong=\"H8198\"*.”" + }, + { + "verseNum": 14, + "text": "At|strong=\"H3427\"* meal|strong=\"H3899\"* time|strong=\"H6256\"* Boaz|strong=\"H1162\"* said to|strong=\"H6256\"* her|strong=\"H6642\"*, “Come|strong=\"H5066\"* here|strong=\"H1988\"*, and|strong=\"H3899\"* eat|strong=\"H3899\"* some|strong=\"H4480\"* bread|strong=\"H3899\"*, and|strong=\"H3899\"* dip|strong=\"H2881\"* your|strong=\"H4480\"* morsel|strong=\"H6595\"* in|strong=\"H3427\"* the|strong=\"H4480\"* vinegar|strong=\"H2558\"*.”" + }, + { + "verseNum": 15, + "text": "When|strong=\"H1571\"* she|strong=\"H1571\"* had|strong=\"H6680\"* risen|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H6965\"* glean|strong=\"H3950\"*, Boaz|strong=\"H1162\"* commanded|strong=\"H6680\"* his|strong=\"H6680\"* young|strong=\"H5288\"* men|strong=\"H5288\"*, saying, “Let|strong=\"H3808\"* her|strong=\"H1571\"* glean|strong=\"H3950\"* even|strong=\"H1571\"* among|strong=\"H3808\"* the|strong=\"H6680\"* sheaves|strong=\"H6016\"*, and|strong=\"H6965\"* don’t reproach|strong=\"H3637\"* her|strong=\"H1571\"*." + }, + { + "verseNum": 16, + "text": "Also|strong=\"H1571\"* pull|strong=\"H7997\"* out|strong=\"H4480\"* some|strong=\"H4480\"* for|strong=\"H3808\"* her|strong=\"H1571\"* from|strong=\"H4480\"* the|strong=\"H4480\"* bundles|strong=\"H6653\"*, and|strong=\"H1571\"* leave|strong=\"H5800\"* it|strong=\"H3808\"*. Let|strong=\"H5800\"* her|strong=\"H1571\"* glean|strong=\"H3950\"*, and|strong=\"H1571\"* don’t rebuke|strong=\"H1605\"* her|strong=\"H1571\"*.”" + }, + { + "verseNum": 17, + "text": "So|strong=\"H1961\"* she|strong=\"H6153\"* gleaned|strong=\"H3950\"* in|strong=\"H1961\"* the|strong=\"H5704\"* field|strong=\"H7704\"* until|strong=\"H5704\"* evening|strong=\"H6153\"*; and|strong=\"H7704\"* she|strong=\"H6153\"* beat|strong=\"H2251\"* out|strong=\"H2251\"* that|strong=\"H5704\"* which|strong=\"H7704\"* she|strong=\"H6153\"* had|strong=\"H1961\"* gleaned|strong=\"H3950\"*, and|strong=\"H7704\"* it|strong=\"H1961\"* was|strong=\"H1961\"* about|strong=\"H1961\"* an|strong=\"H1961\"* ephah+ 2:17 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H7704\"* barley|strong=\"H8184\"*." + }, + { + "verseNum": 18, + "text": "She|strong=\"H5892\"* took|strong=\"H5375\"* it|strong=\"H5414\"* up|strong=\"H5375\"*, and|strong=\"H5892\"* went|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H7200\"* city|strong=\"H5892\"*. Then|strong=\"H3318\"* her|strong=\"H5414\"* mother-in-law|strong=\"H2545\"* saw|strong=\"H7200\"* what|strong=\"H7200\"* she|strong=\"H5892\"* had|strong=\"H5414\"* gleaned|strong=\"H3950\"*; and|strong=\"H5892\"* she|strong=\"H5892\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H5892\"* gave|strong=\"H5414\"* to|strong=\"H3318\"* her|strong=\"H5414\"* that|strong=\"H7200\"* which|strong=\"H5892\"* she|strong=\"H5892\"* had|strong=\"H5414\"* left|strong=\"H3498\"* after|strong=\"H3318\"* she|strong=\"H5892\"* had|strong=\"H5414\"* enough|strong=\"H3498\"*." + }, + { + "verseNum": 19, + "text": "Her|strong=\"H5046\"* mother-in-law|strong=\"H2545\"* said to|strong=\"H1961\"* her|strong=\"H5046\"*, “Where have|strong=\"H1961\"* you|strong=\"H3117\"* gleaned|strong=\"H3950\"* today|strong=\"H3117\"*? Where have|strong=\"H1961\"* you|strong=\"H3117\"* worked|strong=\"H6213\"*? Blessed|strong=\"H1288\"* be|strong=\"H1961\"* he|strong=\"H3117\"* who|strong=\"H6213\"* noticed|strong=\"H5234\"* you|strong=\"H3117\"*.”" + }, + { + "verseNum": 20, + "text": "Naomi|strong=\"H5281\"* said to|strong=\"H4191\"* her|strong=\"H3618\"* daughter-in-law|strong=\"H3618\"*, “May|strong=\"H3068\"* he|strong=\"H1931\"* be|strong=\"H4191\"* blessed|strong=\"H1288\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, who|strong=\"H1931\"* has|strong=\"H3068\"* not|strong=\"H3808\"* abandoned|strong=\"H5800\"* his|strong=\"H3068\"* kindness|strong=\"H2617\"* to|strong=\"H4191\"* the|strong=\"H3068\"* living|strong=\"H2416\"* and|strong=\"H3068\"* to|strong=\"H4191\"* the|strong=\"H3068\"* dead|strong=\"H4191\"*.” Naomi|strong=\"H5281\"* said to|strong=\"H4191\"* her|strong=\"H3618\"*, “The|strong=\"H3068\"* man|strong=\"H4191\"* is|strong=\"H3068\"* a|strong=\"H3068\"* close|strong=\"H7138\"* relative|strong=\"H1350\"* to|strong=\"H4191\"* us|strong=\"H5800\"*, one|strong=\"H3808\"* of|strong=\"H3068\"* our|strong=\"H3068\"* near|strong=\"H7138\"* kinsmen|strong=\"H7138\"*.”" + }, + { + "verseNum": 21, + "text": "Ruth|strong=\"H7327\"* the|strong=\"H3605\"* Moabitess|strong=\"H4125\"* said, “Yes|strong=\"H3588\"*, he|strong=\"H3588\"* said to|strong=\"H5704\"* me|strong=\"H5973\"*, ‘You|strong=\"H3588\"* shall|strong=\"H5288\"* stay|strong=\"H1692\"* close|strong=\"H1692\"* to|strong=\"H5704\"* my|strong=\"H3605\"* young|strong=\"H5288\"* men|strong=\"H5288\"* until|strong=\"H5704\"* they|strong=\"H3588\"* have|strong=\"H1571\"* finished|strong=\"H3615\"* all|strong=\"H3605\"* my|strong=\"H3605\"* harvest|strong=\"H7105\"*.’”" + }, + { + "verseNum": 22, + "text": "Naomi|strong=\"H5281\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Ruth|strong=\"H7327\"* her|strong=\"H3318\"* daughter-in-law|strong=\"H3618\"*, “It|strong=\"H3588\"* is|strong=\"H2896\"* good|strong=\"H2896\"*, my|strong=\"H3318\"* daughter|strong=\"H1323\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H5973\"* his|strong=\"H3588\"* maidens|strong=\"H5291\"*, and|strong=\"H7704\"* that|strong=\"H3588\"* they|strong=\"H3588\"* not|strong=\"H3808\"* harm you|strong=\"H3588\"* in|strong=\"H3808\"* any|strong=\"H3588\"* other field|strong=\"H7704\"*.”" + }, + { + "verseNum": 23, + "text": "So|strong=\"H3427\"* she|strong=\"H5704\"* stayed|strong=\"H3427\"* close|strong=\"H1692\"* to|strong=\"H5704\"* the|strong=\"H5704\"* maidens|strong=\"H5291\"* of|strong=\"H3427\"* Boaz|strong=\"H1162\"*, to|strong=\"H5704\"* glean|strong=\"H3950\"* to|strong=\"H5704\"* the|strong=\"H5704\"* end|strong=\"H3615\"* of|strong=\"H3427\"* barley|strong=\"H8184\"* harvest|strong=\"H7105\"* and|strong=\"H3427\"* of|strong=\"H3427\"* wheat|strong=\"H2406\"* harvest|strong=\"H7105\"*; and|strong=\"H3427\"* she|strong=\"H5704\"* lived|strong=\"H3427\"* with|strong=\"H3427\"* her|strong=\"H5291\"* mother-in-law|strong=\"H2545\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Naomi|strong=\"H5281\"* her|strong=\"H3190\"* mother-in-law|strong=\"H2545\"* said to|strong=\"H1245\"* her|strong=\"H3190\"*, “My|strong=\"H1245\"* daughter|strong=\"H1323\"*, shall|strong=\"H1323\"* I|strong=\"H3808\"* not|strong=\"H3808\"* seek|strong=\"H1245\"* rest|strong=\"H4494\"* for|strong=\"H1245\"* you|strong=\"H3808\"*, that|strong=\"H3808\"* it|strong=\"H3190\"* may|strong=\"H3808\"* be|strong=\"H3808\"* well|strong=\"H3190\"* with|strong=\"H3190\"* you|strong=\"H3808\"*?" + }, + { + "verseNum": 2, + "text": "Now|strong=\"H6258\"* isn’t Boaz|strong=\"H1162\"* our|strong=\"H1961\"* kinsman|strong=\"H4130\"*, with|strong=\"H1961\"* whose maidens|strong=\"H5291\"* you|strong=\"H3808\"* were|strong=\"H1961\"*? Behold|strong=\"H2009\"*, he|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* winnowing|strong=\"H2219\"* barley|strong=\"H8184\"* tonight|strong=\"H3915\"* on|strong=\"H1961\"* the|strong=\"H1961\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H5921\"* wash|strong=\"H7364\"* yourself|strong=\"H5921\"*, anoint|strong=\"H5480\"* yourself|strong=\"H5921\"*, get|strong=\"H7760\"* dressed, and|strong=\"H3381\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H5704\"* the|strong=\"H5921\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*; but|strong=\"H5921\"* don’t make|strong=\"H7760\"* yourself|strong=\"H5921\"* known|strong=\"H3045\"* to|strong=\"H5704\"* the|strong=\"H5921\"* man|strong=\"H3045\"* until|strong=\"H5704\"* he|strong=\"H5704\"* has|strong=\"H3045\"* finished|strong=\"H3615\"* eating and|strong=\"H3381\"* drinking|strong=\"H8354\"*." + }, + { + "verseNum": 4, + "text": "It|strong=\"H1931\"* shall|strong=\"H1931\"* be|strong=\"H1961\"*, when|strong=\"H1961\"* he|strong=\"H1931\"* lies|strong=\"H7901\"* down|strong=\"H7901\"*, that|strong=\"H3045\"* you|strong=\"H6213\"* shall|strong=\"H1931\"* note|strong=\"H3045\"* the|strong=\"H6213\"* place|strong=\"H4725\"* where|strong=\"H8033\"* he|strong=\"H1931\"* is|strong=\"H1931\"* lying|strong=\"H7901\"*. Then|strong=\"H1961\"* you|strong=\"H6213\"* shall|strong=\"H1931\"* go|strong=\"H1540\"* in|strong=\"H6213\"*, uncover|strong=\"H1540\"* his|strong=\"H3045\"* feet|strong=\"H4772\"*, and|strong=\"H8033\"* lie|strong=\"H7901\"* down|strong=\"H7901\"*. Then|strong=\"H1961\"* he|strong=\"H1931\"* will|strong=\"H1961\"* tell|strong=\"H5046\"* you|strong=\"H6213\"* what|strong=\"H3045\"* to|strong=\"H1961\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 5, + "text": "She said to|strong=\"H6213\"* her|strong=\"H3605\"*, “All|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* say, I|strong=\"H3605\"* will|strong=\"H6213\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 6, + "text": "She went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3605\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*, and|strong=\"H6213\"* did|strong=\"H6213\"* everything|strong=\"H3605\"* that|strong=\"H3605\"* her|strong=\"H3605\"* mother-in-law|strong=\"H2545\"* told|strong=\"H6680\"* her|strong=\"H3605\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H7901\"* Boaz|strong=\"H1162\"* had|strong=\"H1162\"* eaten and|strong=\"H8354\"* drunk|strong=\"H8354\"*, and|strong=\"H8354\"* his|strong=\"H1540\"* heart|strong=\"H3820\"* was|strong=\"H3820\"* merry|strong=\"H3190\"*, he|strong=\"H8354\"* went|strong=\"H1540\"* to|strong=\"H3820\"* lie|strong=\"H7901\"* down|strong=\"H7901\"* at|strong=\"H7097\"* the|strong=\"H1540\"* end|strong=\"H7097\"* of|strong=\"H3820\"* the|strong=\"H1540\"* heap|strong=\"H6194\"* of|strong=\"H3820\"* grain|strong=\"H6194\"*. She|strong=\"H3820\"* came softly|strong=\"H3909\"*, uncovered|strong=\"H1540\"* his|strong=\"H1540\"* feet|strong=\"H4772\"*, and|strong=\"H8354\"* lay|strong=\"H7901\"* down|strong=\"H7901\"*." + }, + { + "verseNum": 8, + "text": "At|strong=\"H1961\"* midnight|strong=\"H2677\"*, the|strong=\"H1961\"* man was|strong=\"H1961\"* startled|strong=\"H2729\"* and|strong=\"H3915\"* turned|strong=\"H1961\"* himself; and|strong=\"H3915\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* woman lay|strong=\"H7901\"* at|strong=\"H1961\"* his|strong=\"H1961\"* feet|strong=\"H4772\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H3588\"* said, “Who|strong=\"H4310\"* are|strong=\"H4310\"* you|strong=\"H3588\"*?”" + }, + { + "verseNum": 10, + "text": "He|strong=\"H3068\"* said, “You|strong=\"H1288\"* are|strong=\"H3068\"* blessed|strong=\"H1288\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, my|strong=\"H3068\"* daughter|strong=\"H1323\"*. You|strong=\"H1288\"* have|strong=\"H3068\"* shown|strong=\"H3190\"* more|strong=\"H4480\"* kindness|strong=\"H2617\"* in|strong=\"H3068\"* the|strong=\"H3068\"* latter end than|strong=\"H4480\"* at|strong=\"H3068\"* the|strong=\"H3068\"* beginning|strong=\"H7223\"*, because|strong=\"H4480\"* you|strong=\"H1288\"* didn’t follow|strong=\"H3212\"* young|strong=\"H1115\"* men|strong=\"H6223\"*, whether|strong=\"H4480\"* poor|strong=\"H1800\"* or|strong=\"H4480\"* rich|strong=\"H6223\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H6258\"*, my|strong=\"H3605\"* daughter|strong=\"H1323\"*, don’t be|strong=\"H5971\"* afraid|strong=\"H3372\"*. I|strong=\"H3588\"* will|strong=\"H5971\"* do|strong=\"H6213\"* to|strong=\"H6213\"* you|strong=\"H3588\"* all|strong=\"H3605\"* that|strong=\"H3588\"* you|strong=\"H3588\"* say; for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* city|strong=\"H8179\"* of|strong=\"H1323\"* my|strong=\"H3605\"* people|strong=\"H5971\"* knows|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* a|strong=\"H3068\"* worthy|strong=\"H2428\"* woman|strong=\"H1323\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"H6258\"* it|strong=\"H3588\"* is|strong=\"H3426\"* true that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3426\"* a|strong=\"H3068\"* near|strong=\"H7138\"* kinsman|strong=\"H1350\"*. However|strong=\"H1571\"*, there|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* kinsman|strong=\"H1350\"* nearer|strong=\"H7138\"* than|strong=\"H4480\"* I|strong=\"H3588\"*." + }, + { + "verseNum": 13, + "text": "Stay|strong=\"H3885\"* this|strong=\"H3068\"* night|strong=\"H3915\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* morning|strong=\"H1242\"*, if|strong=\"H1961\"* he|strong=\"H5704\"* will|strong=\"H3068\"* perform for|strong=\"H5704\"* you|strong=\"H5704\"* the|strong=\"H3068\"* part of|strong=\"H3068\"* a|strong=\"H3068\"* kinsman|strong=\"H1350\"*, good|strong=\"H2896\"*. Let|strong=\"H3808\"* him|strong=\"H2896\"* do|strong=\"H3068\"* the|strong=\"H3068\"* kinsman|strong=\"H1350\"*’s duty. But|strong=\"H3808\"* if|strong=\"H1961\"* he|strong=\"H5704\"* will|strong=\"H3068\"* not|strong=\"H3808\"* do|strong=\"H3068\"* the|strong=\"H3068\"* duty of|strong=\"H3068\"* a|strong=\"H3068\"* kinsman|strong=\"H1350\"* for|strong=\"H5704\"* you|strong=\"H5704\"*, then|strong=\"H1961\"* I|strong=\"H5704\"* will|strong=\"H3068\"* do|strong=\"H3068\"* the|strong=\"H3068\"* duty of|strong=\"H3068\"* a|strong=\"H3068\"* kinsman|strong=\"H1350\"* for|strong=\"H5704\"* you|strong=\"H5704\"*, as|strong=\"H5704\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*. Lie|strong=\"H7901\"* down|strong=\"H7901\"* until|strong=\"H5704\"* the|strong=\"H3068\"* morning|strong=\"H1242\"*.”" + }, + { + "verseNum": 14, + "text": "She|strong=\"H3588\"* lay|strong=\"H7901\"* at|strong=\"H6965\"* his|strong=\"H3045\"* feet|strong=\"H4772\"* until|strong=\"H5704\"* the|strong=\"H3588\"* morning|strong=\"H1242\"*, then|strong=\"H6965\"* she|strong=\"H3588\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* before|strong=\"H5704\"* one|strong=\"H3588\"* could|strong=\"H3045\"* discern|strong=\"H5234\"* another|strong=\"H7453\"*. For|strong=\"H3588\"* he|strong=\"H3588\"* said, “Let it|strong=\"H3588\"* not|strong=\"H3045\"* be|strong=\"H3588\"* known|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3588\"* woman came to|strong=\"H5704\"* the|strong=\"H3588\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*.”" + }, + { + "verseNum": 15, + "text": "He|strong=\"H5921\"* said, “Bring|strong=\"H3051\"* the|strong=\"H5921\"* mantle that|strong=\"H5892\"* is|strong=\"H5892\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H5892\"* hold|strong=\"H7896\"* it|strong=\"H5921\"*.” She|strong=\"H5921\"* held it|strong=\"H5921\"*; and|strong=\"H5892\"* he|strong=\"H5921\"* measured|strong=\"H4058\"* six|strong=\"H8337\"* measures of|strong=\"H5892\"* barley|strong=\"H8184\"*, and|strong=\"H5892\"* laid|strong=\"H7896\"* it|strong=\"H5921\"* on|strong=\"H5921\"* her|strong=\"H5921\"*; then he|strong=\"H5921\"* went|strong=\"H5892\"* into|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H6213\"* she came|strong=\"H1323\"* to|strong=\"H6213\"* her|strong=\"H3605\"* mother-in-law|strong=\"H2545\"*, she said, “How|strong=\"H4310\"* did|strong=\"H6213\"* it|strong=\"H6213\"* go, my|strong=\"H3605\"* daughter|strong=\"H1323\"*?”" + }, + { + "verseNum": 17, + "text": "She|strong=\"H3588\"* said, “He|strong=\"H3588\"* gave|strong=\"H5414\"* me|strong=\"H5414\"* these six|strong=\"H8337\"* measures of barley|strong=\"H8184\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* said, ‘Don’t go empty|strong=\"H7387\"* to|strong=\"H5414\"* your|strong=\"H5414\"* mother-in-law|strong=\"H2545\"*.’”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H5307\"* she|strong=\"H3588\"* said|strong=\"H1697\"*, “Wait|strong=\"H3427\"*, my|strong=\"H3045\"* daughter|strong=\"H1323\"*, until|strong=\"H5704\"* you|strong=\"H3588\"* know|strong=\"H3045\"* what|strong=\"H1697\"* will|strong=\"H1697\"* happen|strong=\"H1697\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* man|strong=\"H5307\"* will|strong=\"H1697\"* not|strong=\"H3808\"* rest|strong=\"H8252\"* until|strong=\"H5704\"* he|strong=\"H3588\"* has|strong=\"H3117\"* settled|strong=\"H3427\"* this|strong=\"H1697\"* today|strong=\"H3117\"*.”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H2009\"* Boaz|strong=\"H1162\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H1696\"* the|strong=\"H5674\"* gate|strong=\"H8179\"* and|strong=\"H8033\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* there|strong=\"H8033\"*. Behold|strong=\"H2009\"*, the|strong=\"H5674\"* near|strong=\"H8033\"* kinsman|strong=\"H1350\"* of|strong=\"H3427\"* whom Boaz|strong=\"H1162\"* spoke|strong=\"H1696\"* came|strong=\"H5927\"* by|strong=\"H5674\"*. Boaz|strong=\"H1162\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5927\"*, “Come|strong=\"H5927\"* over|strong=\"H5674\"* here|strong=\"H6311\"*, friend|strong=\"H6423\"*, and|strong=\"H8033\"* sit|strong=\"H3427\"* down|strong=\"H3427\"*!” He|strong=\"H8033\"* came|strong=\"H5927\"* over|strong=\"H5674\"*, and|strong=\"H8033\"* sat|strong=\"H3427\"* down|strong=\"H3427\"*." + }, + { + "verseNum": 2, + "text": "Boaz took|strong=\"H3947\"* ten|strong=\"H6235\"* men|strong=\"H2205\"* of|strong=\"H3427\"* the|strong=\"H3947\"* elders|strong=\"H2205\"* of|strong=\"H3427\"* the|strong=\"H3947\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* said, “Sit|strong=\"H3427\"* down|strong=\"H3427\"* here|strong=\"H6311\"*,” and|strong=\"H5892\"* they|strong=\"H5892\"* sat|strong=\"H3427\"* down|strong=\"H3427\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H7725\"* said to|strong=\"H7725\"* the|strong=\"H7725\"* near kinsman|strong=\"H1350\"*, “Naomi|strong=\"H5281\"*, who|strong=\"H4376\"* has|strong=\"H4124\"* come|strong=\"H7725\"* back|strong=\"H7725\"* out|strong=\"H7725\"* of|strong=\"H7704\"* the|strong=\"H7725\"* country|strong=\"H7704\"* of|strong=\"H7704\"* Moab|strong=\"H4124\"*, is|strong=\"H4124\"* selling|strong=\"H4376\"* the|strong=\"H7725\"* parcel|strong=\"H2513\"* of|strong=\"H7704\"* land|strong=\"H7704\"*, which|strong=\"H7704\"* was|strong=\"H4124\"* our|strong=\"H7725\"* brother Elimelech’s." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3588\"* thought|strong=\"H3045\"* I|strong=\"H3588\"* should|strong=\"H3588\"* tell|strong=\"H5046\"* you|strong=\"H3588\"*, saying, ‘Buy|strong=\"H7069\"* it|strong=\"H3588\"* before|strong=\"H5048\"* those|strong=\"H3427\"* who|strong=\"H5971\"* sit|strong=\"H3427\"* here|strong=\"H1350\"*, and|strong=\"H5971\"* before|strong=\"H5048\"* the|strong=\"H3588\"* elders|strong=\"H2205\"* of|strong=\"H3427\"* my|strong=\"H3045\"* people|strong=\"H5971\"*.’ If|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H5971\"* redeem|strong=\"H1350\"* it|strong=\"H3588\"*, redeem|strong=\"H1350\"* it|strong=\"H3588\"*; but|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H5971\"* not|strong=\"H3808\"* redeem|strong=\"H1350\"* it|strong=\"H3588\"*, then|strong=\"H3588\"* tell|strong=\"H5046\"* me|strong=\"H5046\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H5971\"* know|strong=\"H3045\"*. For|strong=\"H3588\"* there|strong=\"H3427\"* is|strong=\"H1350\"* no|strong=\"H3808\"* one|strong=\"H3808\"* to|strong=\"H1540\"* redeem|strong=\"H1350\"* it|strong=\"H3588\"* besides|strong=\"H2108\"* you|strong=\"H3588\"*; and|strong=\"H5971\"* I|strong=\"H3588\"* am after|strong=\"H3588\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6965\"* Boaz|strong=\"H1162\"* said, “On|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* you|strong=\"H5921\"* buy|strong=\"H7069\"* the|strong=\"H5921\"* field|strong=\"H7704\"* from|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3117\"* Naomi|strong=\"H5281\"*, you|strong=\"H5921\"* must|strong=\"H4191\"* buy|strong=\"H7069\"* it|strong=\"H5921\"* also|strong=\"H8034\"* from|strong=\"H5921\"* Ruth|strong=\"H7327\"* the|strong=\"H5921\"* Moabitess|strong=\"H4125\"*, the|strong=\"H5921\"* wife of|strong=\"H3117\"* the|strong=\"H5921\"* dead|strong=\"H4191\"*, to|strong=\"H4191\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3117\"* the|strong=\"H5921\"* dead|strong=\"H4191\"* on|strong=\"H5921\"* his|strong=\"H5921\"* inheritance|strong=\"H5159\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H3588\"* near|strong=\"H3808\"* kinsman|strong=\"H1350\"* said, “I|strong=\"H3588\"* can|strong=\"H3201\"*’t redeem|strong=\"H1350\"* it|strong=\"H3588\"* for|strong=\"H3588\"* myself, lest|strong=\"H6435\"* I|strong=\"H3588\"* endanger my|strong=\"H3588\"* own inheritance|strong=\"H5159\"*. Take my|strong=\"H3588\"* right|strong=\"H1353\"* of|strong=\"H1350\"* redemption|strong=\"H1353\"* for|strong=\"H3588\"* yourself; for|strong=\"H3588\"* I|strong=\"H3588\"* can|strong=\"H3201\"*’t redeem|strong=\"H1350\"* it|strong=\"H3588\"*.”" + }, + { + "verseNum": 7, + "text": "Now|strong=\"H5414\"* this|strong=\"H2063\"* was|strong=\"H3478\"* the|strong=\"H3605\"* custom|strong=\"H1697\"* in|strong=\"H5921\"* former|strong=\"H6440\"* time|strong=\"H6440\"* in|strong=\"H5921\"* Israel|strong=\"H3478\"* concerning|strong=\"H5921\"* redeeming|strong=\"H1353\"* and|strong=\"H6965\"* concerning|strong=\"H5921\"* exchanging, to|strong=\"H3478\"* confirm|strong=\"H6965\"* all|strong=\"H3605\"* things|strong=\"H1697\"*: a|strong=\"H3068\"* man|strong=\"H3605\"* took|strong=\"H3478\"* off|strong=\"H5921\"* his|strong=\"H3605\"* sandal|strong=\"H5275\"*, and|strong=\"H6965\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3478\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"*; and|strong=\"H6965\"* this|strong=\"H2063\"* was|strong=\"H3478\"* the|strong=\"H3605\"* way|strong=\"H1697\"* of|strong=\"H1697\"* formalizing transactions in|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "So|strong=\"H1350\"* the|strong=\"H7069\"* near kinsman|strong=\"H1350\"* said to|strong=\"H1350\"* Boaz|strong=\"H1162\"*, “Buy|strong=\"H7069\"* it|strong=\"H7069\"* for yourself,” then he|strong=\"H7069\"* took off|strong=\"H8025\"* his|strong=\"H8025\"* sandal|strong=\"H5275\"*." + }, + { + "verseNum": 9, + "text": "Boaz|strong=\"H1162\"* said to|strong=\"H3027\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* and|strong=\"H3117\"* to|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, “You|strong=\"H3588\"* are|strong=\"H3117\"* witnesses|strong=\"H5707\"* today|strong=\"H3117\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5971\"* bought|strong=\"H7069\"* all|strong=\"H3605\"* that|strong=\"H3588\"* was|strong=\"H3117\"* Elimelech’s, and|strong=\"H3117\"* all|strong=\"H3605\"* that|strong=\"H3588\"* was|strong=\"H3117\"* Chilion|strong=\"H3630\"*’s and|strong=\"H3117\"* Mahlon|strong=\"H4248\"*’s, from|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3117\"* Naomi|strong=\"H5281\"*." + }, + { + "verseNum": 10, + "text": "Moreover|strong=\"H1571\"*, Ruth|strong=\"H7327\"* the|strong=\"H5921\"* Moabitess|strong=\"H4125\"*, the|strong=\"H5921\"* wife of|strong=\"H3117\"* Mahlon|strong=\"H4248\"*, I|strong=\"H3117\"* have|strong=\"H1571\"* purchased|strong=\"H7069\"* to|strong=\"H4191\"* be|strong=\"H4191\"* my|strong=\"H5921\"* wife, to|strong=\"H4191\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3117\"* the|strong=\"H5921\"* dead|strong=\"H4191\"* on|strong=\"H5921\"* his|strong=\"H5921\"* inheritance|strong=\"H5159\"*, that|strong=\"H3117\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3117\"* the|strong=\"H5921\"* dead|strong=\"H4191\"* may|strong=\"H1571\"* not|strong=\"H3808\"* be|strong=\"H4191\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* among|strong=\"H5973\"* his|strong=\"H5921\"* brothers and|strong=\"H6965\"* from|strong=\"H3772\"* the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H3117\"* his|strong=\"H5921\"* place|strong=\"H4725\"*. You|strong=\"H5921\"* are|strong=\"H3117\"* witnesses|strong=\"H5707\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 11, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3605\"* gate|strong=\"H8179\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* elders|strong=\"H2205\"*, said|strong=\"H7121\"*, “We|strong=\"H6213\"* are|strong=\"H5971\"* witnesses|strong=\"H5707\"*. May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* make|strong=\"H6213\"* the|strong=\"H3605\"* woman|strong=\"H8034\"* who|strong=\"H3605\"* has|strong=\"H3068\"* come|strong=\"H5971\"* into|strong=\"H6213\"* your|strong=\"H3068\"* house|strong=\"H1004\"* like|strong=\"H1004\"* Rachel|strong=\"H7354\"* and|strong=\"H3478\"* like|strong=\"H1004\"* Leah|strong=\"H3812\"*, which|strong=\"H3068\"* both|strong=\"H8147\"* built|strong=\"H1129\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* treat|strong=\"H6213\"* you|strong=\"H5414\"* worthily|strong=\"H2428\"* in|strong=\"H3478\"* Ephrathah, and|strong=\"H3478\"* be|strong=\"H3068\"* famous|strong=\"H8034\"* in|strong=\"H3478\"* Bethlehem|strong=\"H1035\"*." + }, + { + "verseNum": 12, + "text": "Let|strong=\"H5414\"* your|strong=\"H3068\"* house|strong=\"H1004\"* be|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Perez|strong=\"H6557\"*, whom Tamar|strong=\"H8559\"* bore|strong=\"H3205\"* to|strong=\"H3068\"* Judah|strong=\"H3063\"*, of|strong=\"H1004\"* the|strong=\"H5414\"* offspring|strong=\"H2233\"*+ 4:12 or, seed* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H5414\"* by|strong=\"H3068\"* this|strong=\"H2063\"* young|strong=\"H5291\"* woman|strong=\"H5291\"*.”" + }, + { + "verseNum": 13, + "text": "So|strong=\"H3947\"* Boaz|strong=\"H1162\"* took|strong=\"H3947\"* Ruth|strong=\"H7327\"* and|strong=\"H1121\"* she became|strong=\"H3205\"* his|strong=\"H5414\"* wife; and|strong=\"H1121\"* he|strong=\"H3068\"* went|strong=\"H3068\"* in|strong=\"H3068\"* to|strong=\"H3068\"* her|strong=\"H5414\"*, and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* enabled|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H3068\"* conceive|strong=\"H2032\"*, and|strong=\"H1121\"* she bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3068\"* women said|strong=\"H7121\"* to|strong=\"H3478\"* Naomi|strong=\"H5281\"*, “Blessed|strong=\"H1288\"* be|strong=\"H3808\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* left|strong=\"H7673\"* you|strong=\"H3117\"* today|strong=\"H3117\"* without|strong=\"H3808\"* a|strong=\"H3068\"* near|strong=\"H3808\"* kinsman|strong=\"H1350\"*. Let|strong=\"H3808\"* his|strong=\"H3068\"* name|strong=\"H8034\"* be|strong=\"H3808\"* famous|strong=\"H8034\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H1931\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* to|strong=\"H7725\"* you|strong=\"H3588\"* a|strong=\"H3068\"* restorer|strong=\"H7725\"* of|strong=\"H1121\"* life|strong=\"H5315\"* and|strong=\"H1121\"* sustain|strong=\"H3557\"* you|strong=\"H3588\"* in|strong=\"H5315\"* your|strong=\"H7725\"* old|strong=\"H1121\"* age|strong=\"H7872\"*; for|strong=\"H3588\"* your|strong=\"H7725\"* daughter-in-law|strong=\"H3618\"*, who|strong=\"H1931\"* loves you|strong=\"H3588\"*, who|strong=\"H1931\"* is|strong=\"H1931\"* better|strong=\"H2896\"* to|strong=\"H7725\"* you|strong=\"H3588\"* than|strong=\"H2896\"* seven|strong=\"H7651\"* sons|strong=\"H1121\"*, has|strong=\"H1961\"* given|strong=\"H3205\"* birth|strong=\"H3205\"* to|strong=\"H7725\"* him|strong=\"H3205\"*.”" + }, + { + "verseNum": 16, + "text": "Naomi|strong=\"H5281\"* took|strong=\"H3947\"* the|strong=\"H3947\"* child|strong=\"H3206\"*, laid|strong=\"H7896\"* him|strong=\"H3947\"* in|strong=\"H1961\"* her|strong=\"H3947\"* bosom|strong=\"H2436\"*, and|strong=\"H3947\"* became|strong=\"H1961\"* nurse to|strong=\"H1961\"* him|strong=\"H3947\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3205\"* women|strong=\"H7934\"*, her|strong=\"H7121\"* neighbors|strong=\"H7934\"*, gave|strong=\"H3205\"* him|strong=\"H3205\"* a|strong=\"H3068\"* name|strong=\"H8034\"*, saying, “A|strong=\"H3068\"* son|strong=\"H1121\"* is|strong=\"H1931\"* born|strong=\"H3205\"* to|strong=\"H3205\"* Naomi|strong=\"H5281\"*”. They|strong=\"H1931\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Obed|strong=\"H5744\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"*, the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 18, + "text": "Now this is the|strong=\"H3205\"* history|strong=\"H8435\"* of|strong=\"H3205\"* the|strong=\"H3205\"* generations|strong=\"H8435\"* of|strong=\"H3205\"* Perez|strong=\"H6557\"*: Perez|strong=\"H6557\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Hezron|strong=\"H2696\"*," + }, + { + "verseNum": 19, + "text": "and|strong=\"H2696\"* Hezron|strong=\"H2696\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Ram|strong=\"H7410\"*, and|strong=\"H2696\"* Ram|strong=\"H7410\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Amminadab|strong=\"H5992\"*," + }, + { + "verseNum": 20, + "text": "and|strong=\"H3205\"* Amminadab|strong=\"H5992\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Nahshon|strong=\"H5177\"*, and|strong=\"H3205\"* Nahshon|strong=\"H5177\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Salmon|strong=\"H8009\"*," + }, + { + "verseNum": 21, + "text": "and|strong=\"H3205\"* Salmon|strong=\"H8012\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Boaz|strong=\"H1162\"*, and|strong=\"H3205\"* Boaz|strong=\"H1162\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Obed|strong=\"H5744\"*," + }, + { + "verseNum": 22, + "text": "and|strong=\"H1732\"* Obed|strong=\"H5744\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jesse|strong=\"H3448\"*, and|strong=\"H1732\"* Jesse|strong=\"H3448\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* David|strong=\"H1732\"*." + } + ] + } + ] + }, + { + "name": "1 Samuel", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H8034\"* a|strong=\"H3068\"* certain man|strong=\"H1121\"* of|strong=\"H1121\"* Ramathaim Zophim, of|strong=\"H1121\"* the|strong=\"H4480\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1121\"* Ephraim|strong=\"H8034\"*, and|strong=\"H1121\"* his|strong=\"H1961\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Elkanah, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeroham|strong=\"H3395\"*, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elihu, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Tohu|strong=\"H8459\"*, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zuph|strong=\"H6689\"*, an|strong=\"H1961\"* Ephraimite." + }, + { + "verseNum": 2, + "text": "He|strong=\"H8147\"* had|strong=\"H1961\"* two|strong=\"H8147\"* wives. The|strong=\"H1961\"* name|strong=\"H8034\"* of|strong=\"H8034\"* one|strong=\"H1961\"* was|strong=\"H8034\"* Hannah|strong=\"H2584\"*, and|strong=\"H8147\"* the|strong=\"H1961\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H1961\"* other|strong=\"H8145\"* Peninnah|strong=\"H6444\"*. Peninnah|strong=\"H6444\"* had|strong=\"H1961\"* children|strong=\"H3206\"*, but|strong=\"H1961\"* Hannah|strong=\"H2584\"* had|strong=\"H1961\"* no|strong=\"H1961\"* children|strong=\"H3206\"*." + }, + { + "verseNum": 3, + "text": "This|strong=\"H1931\"* man|strong=\"H1121\"* went|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H8033\"* of|strong=\"H1121\"* his|strong=\"H3068\"* city|strong=\"H5892\"* from|strong=\"H5927\"* year|strong=\"H3117\"* to|strong=\"H3068\"* year|strong=\"H3117\"* to|strong=\"H3068\"* worship|strong=\"H7812\"* and|strong=\"H1121\"* to|strong=\"H3068\"* sacrifice|strong=\"H2076\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*+ 1:3 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* of|strong=\"H1121\"* Armies|strong=\"H6635\"* in|strong=\"H3068\"* Shiloh|strong=\"H7887\"*. The|strong=\"H3068\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eli|strong=\"H5941\"*, Hophni|strong=\"H2652\"* and|strong=\"H1121\"* Phinehas|strong=\"H6372\"*, priests|strong=\"H3548\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, were|strong=\"H1121\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"H1961\"* the|strong=\"H3605\"* day|strong=\"H3117\"* came|strong=\"H1961\"* that|strong=\"H3605\"* Elkanah sacrificed|strong=\"H2076\"*, he|strong=\"H3117\"* gave|strong=\"H5414\"* portions|strong=\"H4490\"* to|strong=\"H1961\"* Peninnah|strong=\"H6444\"* his|strong=\"H3605\"* wife and|strong=\"H1121\"* to|strong=\"H1961\"* all|strong=\"H3605\"* her|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* her|strong=\"H3605\"* daughters|strong=\"H1323\"*;" + }, + { + "verseNum": 5, + "text": "but|strong=\"H3588\"* he|strong=\"H3588\"* gave|strong=\"H5414\"* a|strong=\"H3068\"* double portion|strong=\"H4490\"* to|strong=\"H3068\"* Hannah|strong=\"H2584\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* loved Hannah|strong=\"H2584\"*, but|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* shut|strong=\"H5462\"* up|strong=\"H5462\"* her|strong=\"H5414\"* womb|strong=\"H7358\"*." + }, + { + "verseNum": 6, + "text": "Her|strong=\"H5462\"* rival|strong=\"H6869\"* provoked|strong=\"H3707\"* her|strong=\"H5462\"* severely, to|strong=\"H3068\"* irritate|strong=\"H7481\"* her|strong=\"H5462\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* shut|strong=\"H5462\"* up|strong=\"H5462\"* her|strong=\"H5462\"* womb|strong=\"H7358\"*." + }, + { + "verseNum": 7, + "text": "So|strong=\"H3651\"* year|strong=\"H8141\"* by|strong=\"H8141\"* year|strong=\"H8141\"*, when|strong=\"H6213\"* she|strong=\"H3651\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, her|strong=\"H1058\"* rival provoked|strong=\"H3707\"* her|strong=\"H1058\"*. Therefore|strong=\"H3651\"* she|strong=\"H3651\"* wept|strong=\"H1058\"*, and|strong=\"H3068\"* didn’t eat." + }, + { + "verseNum": 8, + "text": "Elkanah her|strong=\"H1058\"* husband said to|strong=\"H1121\"* her|strong=\"H1058\"*, “Hannah|strong=\"H2584\"*, why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3808\"* weep|strong=\"H1058\"*? Why|strong=\"H4100\"* don’t you|strong=\"H3808\"* eat? Why|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H3808\"* heart|strong=\"H3824\"* grieved|strong=\"H3415\"*? Am I|strong=\"H3808\"* not|strong=\"H3808\"* better|strong=\"H2896\"* to|strong=\"H1121\"* you|strong=\"H3808\"* than|strong=\"H2896\"* ten|strong=\"H6235\"* sons|strong=\"H1121\"*?”" + }, + { + "verseNum": 9, + "text": "So|strong=\"H6965\"* Hannah|strong=\"H2584\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* after|strong=\"H5921\"* they|strong=\"H3068\"* had|strong=\"H3068\"* finished eating and|strong=\"H6965\"* drinking|strong=\"H8354\"* in|strong=\"H3427\"* Shiloh|strong=\"H7887\"*. Now|strong=\"H5921\"* Eli|strong=\"H5941\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* was|strong=\"H3068\"* sitting|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H3068\"* seat|strong=\"H3678\"* by|strong=\"H5921\"* the|strong=\"H5921\"* doorpost|strong=\"H4201\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*." + }, + { + "verseNum": 10, + "text": "She|strong=\"H1931\"* was|strong=\"H3068\"* in|strong=\"H5921\"* bitterness|strong=\"H4751\"* of|strong=\"H3068\"* soul|strong=\"H5315\"*, and|strong=\"H3068\"* prayed|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, weeping|strong=\"H1058\"* bitterly|strong=\"H4751\"*." + }, + { + "verseNum": 11, + "text": "She|strong=\"H5921\"* vowed|strong=\"H5087\"* a|strong=\"H3068\"* vow|strong=\"H5088\"*, and|strong=\"H3068\"* said, “Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, if|strong=\"H7200\"* you|strong=\"H5414\"* will|strong=\"H3068\"* indeed|strong=\"H7200\"* look|strong=\"H7200\"* at|strong=\"H5921\"* the|strong=\"H3605\"* affliction|strong=\"H6040\"* of|strong=\"H3068\"* your|strong=\"H3068\"* servant and|strong=\"H3068\"* remember|strong=\"H2142\"* me|strong=\"H5414\"*, and|strong=\"H3068\"* not|strong=\"H3808\"* forget|strong=\"H7911\"* your|strong=\"H3068\"* servant, but|strong=\"H3808\"* will|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* your|strong=\"H3068\"* servant a|strong=\"H3068\"* boy, then|strong=\"H5414\"* I|strong=\"H3117\"* will|strong=\"H3068\"* give|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* his|strong=\"H3605\"* life|strong=\"H2416\"*, and|strong=\"H3068\"* no|strong=\"H3808\"* razor|strong=\"H4177\"* shall|strong=\"H3068\"* come|strong=\"H5927\"* on|strong=\"H5921\"* his|strong=\"H3605\"* head|strong=\"H7218\"*.”" + }, + { + "verseNum": 12, + "text": "As|strong=\"H1961\"* she|strong=\"H3588\"* continued|strong=\"H1961\"* praying|strong=\"H6419\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, Eli|strong=\"H5941\"* saw her|strong=\"H7235\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"H8085\"* Hannah|strong=\"H2584\"* spoke|strong=\"H1696\"* in|strong=\"H5921\"* her|strong=\"H5921\"* heart|strong=\"H3820\"*. Only|strong=\"H7535\"* her|strong=\"H5921\"* lips|strong=\"H8193\"* moved|strong=\"H5128\"*, but|strong=\"H7535\"* her|strong=\"H5921\"* voice|strong=\"H6963\"* was|strong=\"H3820\"* not|strong=\"H3808\"* heard|strong=\"H8085\"*. Therefore|strong=\"H5921\"* Eli|strong=\"H5941\"* thought|strong=\"H2803\"* she|strong=\"H1931\"* was|strong=\"H3820\"* drunk|strong=\"H7910\"*." + }, + { + "verseNum": 14, + "text": "Eli|strong=\"H5941\"* said to|strong=\"H5704\"* her|strong=\"H5493\"*, “How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H5704\"* you|strong=\"H5921\"* be drunk|strong=\"H7937\"*? Get|strong=\"H5493\"* rid of|strong=\"H5921\"* your|strong=\"H5921\"* wine|strong=\"H3196\"*!”" + }, + { + "verseNum": 15, + "text": "Hannah|strong=\"H2584\"* answered|strong=\"H6030\"*, “No|strong=\"H3808\"*, my|strong=\"H3068\"* lord|strong=\"H3068\"*, I|strong=\"H5315\"* am|strong=\"H3068\"* a|strong=\"H3068\"* woman of|strong=\"H3068\"* a|strong=\"H3068\"* sorrowful|strong=\"H7186\"* spirit|strong=\"H7307\"*. I|strong=\"H5315\"* have|strong=\"H3068\"* not|strong=\"H3808\"* been|strong=\"H3808\"* drinking|strong=\"H8354\"* wine|strong=\"H3196\"* or|strong=\"H3808\"* strong|strong=\"H7941\"* drink|strong=\"H8354\"*, but|strong=\"H3808\"* I|strong=\"H5315\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* my|strong=\"H3068\"* soul|strong=\"H5315\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "Don’t consider|strong=\"H5414\"* your|strong=\"H5414\"* servant a|strong=\"H3068\"* wicked|strong=\"H1100\"* woman|strong=\"H1323\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1323\"* been speaking|strong=\"H1696\"* out|strong=\"H5414\"* of|strong=\"H1323\"* the|strong=\"H6440\"* abundance|strong=\"H7230\"* of|strong=\"H1323\"* my|strong=\"H5414\"* complaint|strong=\"H7879\"* and|strong=\"H6440\"* my|strong=\"H5414\"* provocation|strong=\"H3708\"*.”" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H6030\"* Eli|strong=\"H5941\"* answered|strong=\"H6030\"*, “Go|strong=\"H3212\"* in|strong=\"H3478\"* peace|strong=\"H7965\"*; and|strong=\"H3478\"* may|strong=\"H3478\"* the|strong=\"H5414\"* God|strong=\"H5414\"*+ 1:17 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* of|strong=\"H7592\"* Israel|strong=\"H3478\"* grant|strong=\"H5414\"* your|strong=\"H5414\"* petition|strong=\"H7596\"* that|strong=\"H3478\"* you|strong=\"H5414\"* have|strong=\"H3478\"* asked|strong=\"H7592\"* of|strong=\"H7592\"* him|strong=\"H5414\"*.”" + }, + { + "verseNum": 18, + "text": "She|strong=\"H6440\"* said, “Let|strong=\"H3808\"* your|strong=\"H6440\"* servant|strong=\"H8198\"* find|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H3212\"* your|strong=\"H6440\"* sight|strong=\"H5869\"*.” So|strong=\"H1961\"* the|strong=\"H6440\"* woman went|strong=\"H3212\"* her|strong=\"H4672\"* way|strong=\"H1870\"* and|strong=\"H3212\"* ate; and|strong=\"H3212\"* her|strong=\"H4672\"* facial expression|strong=\"H6440\"* wasn’t sad any|strong=\"H5750\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"H3068\"* rose|strong=\"H7925\"* up|strong=\"H7925\"* in|strong=\"H3068\"* the|strong=\"H6440\"* morning|strong=\"H1242\"* early|strong=\"H7925\"* and|strong=\"H3068\"* worshiped|strong=\"H7812\"* Yahweh|strong=\"H3068\"*, then|strong=\"H7725\"* returned|strong=\"H7725\"* and|strong=\"H3068\"* came|strong=\"H3068\"* to|strong=\"H7725\"* their|strong=\"H3068\"* house|strong=\"H1004\"* to|strong=\"H7725\"* Ramah|strong=\"H7414\"*. Then|strong=\"H7725\"* Elkanah knew|strong=\"H3045\"* Hannah|strong=\"H2584\"* his|strong=\"H3068\"* wife; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* remembered|strong=\"H2142\"* her|strong=\"H7725\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"H3588\"* the|strong=\"H3588\"* time|strong=\"H3117\"* had|strong=\"H3068\"* come|strong=\"H1961\"*, Hannah|strong=\"H2584\"* conceived|strong=\"H2029\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*; and|strong=\"H1121\"* she|strong=\"H3588\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Samuel|strong=\"H8050\"*,+ 1:20 Samuel sounds like the Hebrew for “heard by God.”* saying, “Because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* asked|strong=\"H7592\"* him|strong=\"H3205\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 21, + "text": "The|strong=\"H3605\"* man|strong=\"H3605\"* Elkanah, and|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* offer|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* the|strong=\"H3605\"* yearly|strong=\"H3117\"* sacrifice|strong=\"H2077\"* and|strong=\"H3068\"* his|strong=\"H3605\"* vow|strong=\"H5088\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H3588\"* Hannah|strong=\"H2584\"* didn’t go|strong=\"H5927\"* up|strong=\"H5927\"*, for|strong=\"H3588\"* she|strong=\"H3588\"* said to|strong=\"H5704\"* her|strong=\"H7200\"* husband, “Not|strong=\"H3808\"* until|strong=\"H5704\"* the|strong=\"H6440\"* child|strong=\"H5288\"* is|strong=\"H3068\"* weaned|strong=\"H1580\"*; then|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H5927\"* him|strong=\"H6440\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H3068\"* appear|strong=\"H7200\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* stay|strong=\"H3427\"* there|strong=\"H8033\"* forever|strong=\"H5769\"*.”" + }, + { + "verseNum": 23, + "text": "Elkanah her|strong=\"H6213\"* husband said|strong=\"H1697\"* to|strong=\"H5704\"* her|strong=\"H6213\"*, “Do|strong=\"H6213\"* what|strong=\"H1697\"* seems|strong=\"H2896\"* good|strong=\"H2896\"* to|strong=\"H5704\"* you|strong=\"H5704\"*. Wait|strong=\"H3427\"* until|strong=\"H5704\"* you|strong=\"H5704\"* have|strong=\"H3068\"* weaned|strong=\"H1580\"* him|strong=\"H6213\"*; only|strong=\"H5704\"* may|strong=\"H3068\"* Yahweh|strong=\"H3068\"* establish|strong=\"H6965\"* his|strong=\"H3068\"* word|strong=\"H1697\"*.”" + }, + { + "verseNum": 24, + "text": "When|strong=\"H3068\"* she|strong=\"H5973\"* had|strong=\"H3068\"* weaned|strong=\"H1580\"* him|strong=\"H5973\"*, she|strong=\"H5973\"* took|strong=\"H5927\"* him|strong=\"H5973\"* up|strong=\"H5927\"* with|strong=\"H5973\"* her, with|strong=\"H5973\"* three|strong=\"H7969\"* bulls|strong=\"H6499\"*, and|strong=\"H3068\"* one|strong=\"H3068\"* ephah+ 1:24 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H1004\"* meal|strong=\"H7058\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* container of|strong=\"H1004\"* wine|strong=\"H3196\"*, and|strong=\"H3068\"* brought|strong=\"H5927\"* him|strong=\"H5973\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* in|strong=\"H3068\"* Shiloh|strong=\"H7887\"*. The|strong=\"H3068\"* child|strong=\"H5288\"* was|strong=\"H3068\"* young|strong=\"H5288\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"H7819\"* killed|strong=\"H7819\"* the|strong=\"H7819\"* bull|strong=\"H6499\"*, and|strong=\"H6499\"* brought the|strong=\"H7819\"* child|strong=\"H5288\"* to|strong=\"H5288\"* Eli|strong=\"H5941\"*." + }, + { + "verseNum": 26, + "text": "She|strong=\"H5973\"* said, “Oh, my|strong=\"H3068\"* lord|strong=\"H3068\"*, as|strong=\"H5315\"* your|strong=\"H3068\"* soul|strong=\"H5315\"* lives|strong=\"H5315\"*, my|strong=\"H3068\"* lord|strong=\"H3068\"*, I|strong=\"H5315\"* am|strong=\"H3068\"* the|strong=\"H3068\"* woman|strong=\"H2088\"* who|strong=\"H3068\"* stood|strong=\"H5324\"* by|strong=\"H3068\"* you|strong=\"H5973\"* here|strong=\"H2088\"*, praying|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 27, + "text": "I|strong=\"H5414\"* prayed|strong=\"H6419\"* for|strong=\"H3068\"* this|strong=\"H2088\"* child|strong=\"H5288\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* me|strong=\"H5414\"* my|strong=\"H5414\"* petition|strong=\"H7596\"* which|strong=\"H3068\"* I|strong=\"H5414\"* asked|strong=\"H7592\"* of|strong=\"H3068\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 28, + "text": "Therefore|strong=\"H1571\"* I|strong=\"H3117\"* have|strong=\"H1961\"* also|strong=\"H1571\"* given him|strong=\"H1931\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. As|strong=\"H3117\"* long|strong=\"H3117\"* as|strong=\"H3117\"* he|strong=\"H1931\"* lives|strong=\"H1961\"* he|strong=\"H1931\"* is|strong=\"H3068\"* given to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.” He|strong=\"H1931\"* worshiped|strong=\"H7812\"* Yahweh|strong=\"H3068\"* there|strong=\"H8033\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Hannah|strong=\"H2584\"* prayed|strong=\"H6419\"*, and|strong=\"H3068\"* said|strong=\"H6310\"*," + }, + { + "verseNum": 2, + "text": "There|strong=\"H3068\"* is|strong=\"H3068\"* no|strong=\"H1115\"* one|strong=\"H6918\"* as|strong=\"H3068\"* holy|strong=\"H6918\"* as|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 3, + "text": "“Don’t keep talking|strong=\"H1696\"* so|strong=\"H3808\"* exceedingly|strong=\"H7235\"* proudly|strong=\"H1364\"*." + }, + { + "verseNum": 4, + "text": "“The bows|strong=\"H7198\"* of|strong=\"H1368\"* the mighty|strong=\"H1368\"* men|strong=\"H1368\"* are|strong=\"H1368\"* broken|strong=\"H2844\"*." + }, + { + "verseNum": 5, + "text": "Those|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* full|strong=\"H7649\"* have|strong=\"H1121\"* hired|strong=\"H7936\"* themselves out|strong=\"H5704\"* for|strong=\"H5704\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 6, + "text": "“Yahweh|strong=\"H3068\"* kills|strong=\"H4191\"* and|strong=\"H3068\"* makes|strong=\"H3068\"* alive|strong=\"H2421\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* makes|strong=\"H6238\"* poor|strong=\"H3423\"* and|strong=\"H3068\"* makes|strong=\"H6238\"* rich|strong=\"H6238\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3588\"* raises|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H5921\"* poor|strong=\"H1800\"* out|strong=\"H5921\"* of|strong=\"H3068\"* the|strong=\"H5921\"* dust|strong=\"H6083\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H3588\"* will|strong=\"H7563\"* keep|strong=\"H8104\"* the|strong=\"H3588\"* feet|strong=\"H7272\"* of|strong=\"H7272\"* his|strong=\"H8104\"* holy|strong=\"H2623\"* ones|strong=\"H2623\"*," + }, + { + "verseNum": 10, + "text": "Those|strong=\"H5921\"* who|strong=\"H3068\"* strive|strong=\"H7378\"* with|strong=\"H3068\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* broken|strong=\"H5181\"* to|strong=\"H3068\"* pieces." + }, + { + "verseNum": 11, + "text": "Elkanah went|strong=\"H3212\"* to|strong=\"H3212\"* Ramah|strong=\"H7414\"* to|strong=\"H3212\"* his|strong=\"H3068\"* house|strong=\"H1004\"*. The|strong=\"H6440\"* child|strong=\"H5288\"* served|strong=\"H8334\"* Yahweh|strong=\"H3068\"* before|strong=\"H6440\"* Eli|strong=\"H5941\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 12, + "text": "Now the|strong=\"H3068\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eli|strong=\"H5941\"* were|strong=\"H1121\"* wicked|strong=\"H1100\"* men|strong=\"H1121\"*. They|strong=\"H3068\"* didn’t know|strong=\"H3045\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3605\"* custom|strong=\"H4941\"* of|strong=\"H3027\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* with|strong=\"H5971\"* the|strong=\"H3605\"* people|strong=\"H5971\"* was|strong=\"H5288\"* that|strong=\"H5971\"* when|strong=\"H3027\"* anyone|strong=\"H3605\"* offered|strong=\"H2076\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"*, the|strong=\"H3605\"* priest|strong=\"H3548\"*’s servant|strong=\"H5288\"* came|strong=\"H5971\"* while|strong=\"H4941\"* the|strong=\"H3605\"* meat|strong=\"H1320\"* was|strong=\"H5288\"* boiling|strong=\"H1310\"*, with|strong=\"H5971\"* a|strong=\"H3068\"* fork|strong=\"H4207\"* of|strong=\"H3027\"* three|strong=\"H7969\"* teeth|strong=\"H8127\"* in|strong=\"H1320\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*;" + }, + { + "verseNum": 14, + "text": "and|strong=\"H3478\"* he|strong=\"H8033\"* stabbed|strong=\"H5221\"* it|strong=\"H6213\"* into|strong=\"H5927\"* the|strong=\"H3605\"* pan|strong=\"H3595\"*, or|strong=\"H1731\"* kettle|strong=\"H1731\"*, or|strong=\"H1731\"* cauldron, or|strong=\"H1731\"* pot|strong=\"H6517\"*. The|strong=\"H3605\"* priest|strong=\"H3548\"* took|strong=\"H3947\"* all|strong=\"H3605\"* that|strong=\"H3605\"* the|strong=\"H3605\"* fork|strong=\"H4207\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* for|strong=\"H6213\"* himself|strong=\"H6213\"*. They|strong=\"H8033\"* did|strong=\"H6213\"* this|strong=\"H6213\"* to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Israelites|strong=\"H3478\"* who|strong=\"H3605\"* came|strong=\"H5927\"* there|strong=\"H8033\"* to|strong=\"H3478\"* Shiloh|strong=\"H7887\"*." + }, + { + "verseNum": 15, + "text": "Yes|strong=\"H3588\"*, before|strong=\"H4480\"* they|strong=\"H3588\"* burned|strong=\"H6999\"* the|strong=\"H3588\"* fat|strong=\"H2459\"*, the|strong=\"H3588\"* priest|strong=\"H3548\"*’s servant|strong=\"H5288\"* came|strong=\"H1320\"*, and|strong=\"H3548\"* said to|strong=\"H5414\"* the|strong=\"H3588\"* man|strong=\"H5288\"* who|strong=\"H3548\"* sacrificed|strong=\"H2076\"*, “Give|strong=\"H5414\"* meat|strong=\"H1320\"* to|strong=\"H5414\"* roast|strong=\"H6740\"* for|strong=\"H3588\"* the|strong=\"H3588\"* priest|strong=\"H3548\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H1571\"* not|strong=\"H3808\"* accept|strong=\"H3947\"* boiled|strong=\"H1310\"* meat|strong=\"H1320\"* from|strong=\"H4480\"* you|strong=\"H3588\"*, but|strong=\"H3588\"* raw|strong=\"H2416\"*.”" + }, + { + "verseNum": 16, + "text": "If|strong=\"H3588\"* the|strong=\"H3588\"* man|strong=\"H5315\"* said to|strong=\"H5414\"* him|strong=\"H5414\"*, “Let|strong=\"H5414\"* the|strong=\"H3588\"* fat|strong=\"H2459\"* be|strong=\"H3808\"* burned|strong=\"H6999\"* first|strong=\"H3117\"*, and|strong=\"H3117\"* then|strong=\"H6258\"* take|strong=\"H3947\"* as|strong=\"H3117\"* much as|strong=\"H3117\"* your|strong=\"H5414\"* soul|strong=\"H5315\"* desires|strong=\"H8378\"*;” then|strong=\"H6258\"* he|strong=\"H3588\"* would|strong=\"H5315\"* say, “No|strong=\"H3808\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H5315\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* me|strong=\"H5414\"* now|strong=\"H6258\"*; and|strong=\"H3117\"* if|strong=\"H3588\"* not|strong=\"H3808\"*, I|strong=\"H3588\"* will|strong=\"H5315\"* take|strong=\"H3947\"* it|strong=\"H5414\"* by|strong=\"H3117\"* force|strong=\"H2394\"*.”" + }, + { + "verseNum": 17, + "text": "The|strong=\"H6440\"* sin|strong=\"H2403\"* of|strong=\"H3068\"* the|strong=\"H6440\"* young|strong=\"H5288\"* men|strong=\"H5288\"* was|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* the|strong=\"H6440\"* men|strong=\"H5288\"* despised|strong=\"H5006\"* Yahweh|strong=\"H3068\"*’s offering|strong=\"H4503\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H3068\"* Samuel|strong=\"H8050\"* ministered|strong=\"H8334\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, being|strong=\"H3068\"* a|strong=\"H3068\"* child|strong=\"H5288\"*, clothed|strong=\"H2296\"* with|strong=\"H3068\"* a|strong=\"H3068\"* linen ephod." + }, + { + "verseNum": 19, + "text": "Moreover his|strong=\"H6213\"* mother made|strong=\"H6213\"* him|strong=\"H6213\"* a|strong=\"H3068\"* little|strong=\"H6996\"* robe|strong=\"H4598\"*, and|strong=\"H3117\"* brought|strong=\"H5927\"* it|strong=\"H6213\"* to|strong=\"H5927\"* him|strong=\"H6213\"* from|strong=\"H5927\"* year|strong=\"H3117\"* to|strong=\"H5927\"* year|strong=\"H3117\"* when|strong=\"H3117\"* she came|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H6213\"* her|strong=\"H6213\"* husband to|strong=\"H5927\"* offer|strong=\"H5927\"* the|strong=\"H6213\"* yearly|strong=\"H3117\"* sacrifice|strong=\"H2077\"*." + }, + { + "verseNum": 20, + "text": "Eli|strong=\"H5941\"* blessed|strong=\"H1288\"* Elkanah and|strong=\"H1980\"* his|strong=\"H7760\"* wife, and|strong=\"H1980\"* said, “May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* give|strong=\"H7760\"* you|strong=\"H7760\"* offspring|strong=\"H2233\"*+ 2:20 or, seed* from|strong=\"H4480\"* this|strong=\"H2063\"* woman for|strong=\"H8478\"* the|strong=\"H3068\"* petition|strong=\"H7596\"* which|strong=\"H3068\"* was|strong=\"H3068\"* asked|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.” Then|strong=\"H1980\"* they|strong=\"H3068\"* went|strong=\"H1980\"* to|strong=\"H1980\"* their|strong=\"H3068\"* own home|strong=\"H4725\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* visited|strong=\"H6485\"* Hannah|strong=\"H2584\"*, and|strong=\"H1121\"* she|strong=\"H3588\"* conceived|strong=\"H2029\"* and|strong=\"H1121\"* bore|strong=\"H3205\"* three|strong=\"H7969\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* two|strong=\"H8147\"* daughters|strong=\"H1323\"*. The|strong=\"H3588\"* child|strong=\"H5288\"* Samuel|strong=\"H8050\"* grew|strong=\"H1431\"* before|strong=\"H5973\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "Now|strong=\"H8085\"* Eli|strong=\"H5941\"* was|strong=\"H3478\"* very|strong=\"H3966\"* old|strong=\"H1121\"*; and|strong=\"H1121\"* he|strong=\"H6213\"* heard|strong=\"H8085\"* all|strong=\"H3605\"* that|strong=\"H3605\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* did|strong=\"H6213\"* to|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* how|strong=\"H8085\"* that|strong=\"H3605\"* they|strong=\"H6213\"* slept|strong=\"H7901\"* with|strong=\"H6213\"* the|strong=\"H3605\"* women|strong=\"H6633\"* who|strong=\"H3605\"* served|strong=\"H6633\"* at|strong=\"H3478\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H6213\"* said|strong=\"H1697\"* to|strong=\"H6213\"* them|strong=\"H6213\"*, “Why|strong=\"H4100\"* do|strong=\"H6213\"* you|strong=\"H3605\"* do|strong=\"H6213\"* such|strong=\"H6213\"* things|strong=\"H1697\"*? For|strong=\"H6213\"* I|strong=\"H1697\"* hear|strong=\"H8085\"* of|strong=\"H1697\"* your|strong=\"H3605\"* evil|strong=\"H7451\"* dealings|strong=\"H1697\"* from|strong=\"H8085\"* all|strong=\"H3605\"* these|strong=\"H6213\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 24, + "text": "No|strong=\"H3808\"*, my|strong=\"H8085\"* sons|strong=\"H1121\"*; for|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3068\"* not|strong=\"H3808\"* a|strong=\"H3068\"* good|strong=\"H2896\"* report|strong=\"H8052\"* that|strong=\"H3588\"* I|strong=\"H3588\"* hear|strong=\"H8085\"*! You|strong=\"H3588\"* make|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s people|strong=\"H5971\"* disobey." + }, + { + "verseNum": 25, + "text": "If|strong=\"H3588\"* one|strong=\"H3808\"* man|strong=\"H4191\"* sins|strong=\"H2398\"* against|strong=\"H2398\"* another|strong=\"H3808\"*, God|strong=\"H3068\"* will|strong=\"H3068\"* judge|strong=\"H6419\"* him|strong=\"H6963\"*; but|strong=\"H3588\"* if|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H4191\"* sins|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"*, who|strong=\"H4310\"* will|strong=\"H3068\"* intercede|strong=\"H6419\"* for|strong=\"H3588\"* him|strong=\"H6963\"*?” Notwithstanding, they|strong=\"H3588\"* didn’t listen|strong=\"H8085\"* to|strong=\"H4191\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* their|strong=\"H3068\"* father, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* intended to|strong=\"H4191\"* kill|strong=\"H4191\"* them|strong=\"H8085\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H3068\"* child|strong=\"H5288\"* Samuel|strong=\"H8050\"* grew|strong=\"H1980\"* on|strong=\"H1980\"*, and|strong=\"H1980\"* increased in|strong=\"H1980\"* favor|strong=\"H2896\"* both|strong=\"H1571\"* with|strong=\"H5973\"* Yahweh|strong=\"H3068\"* and|strong=\"H1980\"* also|strong=\"H1571\"* with|strong=\"H5973\"* men|strong=\"H5288\"*." + }, + { + "verseNum": 27, + "text": "A|strong=\"H3068\"* man of|strong=\"H1004\"* God|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Eli|strong=\"H5941\"* and|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H1540\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Did|strong=\"H3068\"* I|strong=\"H3541\"* reveal|strong=\"H1540\"* myself to|strong=\"H3068\"* the|strong=\"H3541\"* house|strong=\"H1004\"* of|strong=\"H1004\"* your|strong=\"H3068\"* father when|strong=\"H1961\"* they|strong=\"H3068\"* were|strong=\"H1961\"* in|strong=\"H3068\"* Egypt|strong=\"H4714\"* in|strong=\"H3068\"* bondage to|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*’s house|strong=\"H1004\"*?" + }, + { + "verseNum": 28, + "text": "Didn’t I|strong=\"H5414\"* choose him|strong=\"H5414\"* out|strong=\"H5414\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* be|strong=\"H1121\"* my|strong=\"H5414\"* priest|strong=\"H3548\"*, to|strong=\"H3478\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* my|strong=\"H5414\"* altar|strong=\"H4196\"*, to|strong=\"H3478\"* burn|strong=\"H6999\"* incense|strong=\"H7004\"*, to|strong=\"H3478\"* wear|strong=\"H5375\"* an|strong=\"H5414\"* ephod before|strong=\"H6440\"* me|strong=\"H5414\"*? Didn’t I|strong=\"H5414\"* give|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* your|strong=\"H3605\"* father|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* offerings|strong=\"H5927\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* made|strong=\"H5414\"* by|strong=\"H5921\"* fire?" + }, + { + "verseNum": 29, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H6680\"* kick|strong=\"H1163\"* at|strong=\"H3478\"* my|strong=\"H3605\"* sacrifice|strong=\"H2077\"* and|strong=\"H1121\"* at|strong=\"H3478\"* my|strong=\"H3605\"* offering|strong=\"H4503\"*, which|strong=\"H5971\"* I|strong=\"H6680\"* have|strong=\"H5971\"* commanded|strong=\"H6680\"* in|strong=\"H3478\"* my|strong=\"H3605\"* habitation|strong=\"H4583\"*, and|strong=\"H1121\"* honor|strong=\"H3513\"* your|strong=\"H3605\"* sons|strong=\"H1121\"* above|strong=\"H4480\"* me|strong=\"H4480\"*, to|strong=\"H3478\"* make|strong=\"H1254\"* yourselves|strong=\"H3605\"* fat|strong=\"H1254\"* with|strong=\"H5971\"* the|strong=\"H3605\"* best of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* offerings|strong=\"H4503\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* my|strong=\"H3605\"* people|strong=\"H5971\"*?’" + }, + { + "verseNum": 30, + "text": "“Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, says|strong=\"H5002\"*, ‘I|strong=\"H3588\"* said|strong=\"H5002\"* indeed|strong=\"H3588\"* that|strong=\"H3588\"* your|strong=\"H3068\"* house|strong=\"H1004\"* and|strong=\"H1980\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* your|strong=\"H3068\"* father should|strong=\"H3068\"* walk|strong=\"H1980\"* before|strong=\"H6440\"* me|strong=\"H6440\"* forever|strong=\"H5769\"*.’ But|strong=\"H3588\"* now|strong=\"H6258\"* Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*, ‘Far|strong=\"H5704\"* be|strong=\"H3068\"* it|strong=\"H3588\"* from|strong=\"H6440\"* me|strong=\"H6440\"*; for|strong=\"H3588\"* those|strong=\"H1980\"* who|strong=\"H3068\"* honor|strong=\"H3513\"* me|strong=\"H6440\"* I|strong=\"H3588\"* will|strong=\"H3068\"* honor|strong=\"H3513\"*, and|strong=\"H1980\"* those|strong=\"H1980\"* who|strong=\"H3068\"* despise|strong=\"H7043\"* me|strong=\"H6440\"* will|strong=\"H3068\"* be|strong=\"H3068\"* cursed|strong=\"H7043\"*." + }, + { + "verseNum": 31, + "text": "Behold|strong=\"H2009\"*,+ 2:31 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* the|strong=\"H3117\"* days|strong=\"H3117\"* come|strong=\"H1961\"* that|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H1961\"* cut|strong=\"H1438\"* off|strong=\"H1438\"* your|strong=\"H1961\"* arm|strong=\"H2220\"* and|strong=\"H3117\"* the|strong=\"H3117\"* arm|strong=\"H2220\"* of|strong=\"H1004\"* your|strong=\"H1961\"* father’s house|strong=\"H1004\"*, that|strong=\"H3117\"* there|strong=\"H2009\"* will|strong=\"H1961\"* not|strong=\"H1961\"* be|strong=\"H1961\"* an|strong=\"H1961\"* old|strong=\"H2205\"* man|strong=\"H2205\"* in|strong=\"H1004\"* your|strong=\"H1961\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 32, + "text": "You|strong=\"H3605\"* will|strong=\"H1961\"* see|strong=\"H5027\"* the|strong=\"H3605\"* affliction|strong=\"H6862\"* of|strong=\"H1004\"* my|strong=\"H3605\"* habitation|strong=\"H4583\"*, in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wealth|strong=\"H3808\"* which|strong=\"H1004\"* I|strong=\"H3117\"* will|strong=\"H1961\"* give|strong=\"H3190\"* Israel|strong=\"H3478\"*. There|strong=\"H1961\"* shall|strong=\"H3478\"* not|strong=\"H3808\"* be|strong=\"H1961\"* an|strong=\"H1961\"* old|strong=\"H2205\"* man|strong=\"H2205\"* in|strong=\"H3478\"* your|strong=\"H3605\"* house|strong=\"H1004\"* forever|strong=\"H3605\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H3605\"* man|strong=\"H5315\"* of|strong=\"H1004\"* yours|strong=\"H4191\"* whom|strong=\"H5869\"* I|strong=\"H5315\"* don’t cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* my|strong=\"H3605\"* altar|strong=\"H4196\"* will|strong=\"H5869\"* consume|strong=\"H3615\"* your|strong=\"H3605\"* eyes|strong=\"H5869\"*+ 2:33 or, blind your eyes with tears* and|strong=\"H1004\"* grieve your|strong=\"H3605\"* heart|strong=\"H5315\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* increase|strong=\"H4768\"* of|strong=\"H1004\"* your|strong=\"H3605\"* house|strong=\"H1004\"* will|strong=\"H5869\"* die|strong=\"H4191\"* in|strong=\"H1004\"* the|strong=\"H3605\"* flower of|strong=\"H1004\"* their|strong=\"H3605\"* age." + }, + { + "verseNum": 34, + "text": "This|strong=\"H2088\"* will|strong=\"H1121\"* be|strong=\"H4191\"* the|strong=\"H3117\"* sign to|strong=\"H4191\"* you|strong=\"H3117\"* that|strong=\"H3117\"* will|strong=\"H1121\"* come on|strong=\"H3117\"* your|strong=\"H2088\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*, on|strong=\"H3117\"* Hophni|strong=\"H2652\"* and|strong=\"H1121\"* Phinehas|strong=\"H6372\"*: in|strong=\"H4191\"* one|strong=\"H2088\"* day|strong=\"H3117\"* they|strong=\"H3117\"* will|strong=\"H1121\"* both|strong=\"H8147\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 35, + "text": "I|strong=\"H3117\"* will|strong=\"H5315\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* a|strong=\"H3068\"* faithful priest|strong=\"H3548\"* for|strong=\"H6213\"* myself|strong=\"H5315\"* who|strong=\"H3605\"* will|strong=\"H5315\"* do|strong=\"H6213\"* according to|strong=\"H1980\"* that|strong=\"H3605\"* which|strong=\"H1004\"* is|strong=\"H5315\"* in|strong=\"H1980\"* my|strong=\"H3605\"* heart|strong=\"H3824\"* and|strong=\"H1980\"* in|strong=\"H1980\"* my|strong=\"H3605\"* mind|strong=\"H3824\"*. I|strong=\"H3117\"* will|strong=\"H5315\"* build|strong=\"H1129\"* him|strong=\"H6440\"* a|strong=\"H3068\"* sure|strong=\"H6965\"* house|strong=\"H1004\"*. He|strong=\"H3117\"* will|strong=\"H5315\"* walk|strong=\"H1980\"* before|strong=\"H6440\"* my|strong=\"H3605\"* anointed|strong=\"H4899\"* forever|strong=\"H3605\"*." + }, + { + "verseNum": 36, + "text": "It|strong=\"H1961\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H3605\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3701\"* left|strong=\"H3498\"* in|strong=\"H1004\"* your|strong=\"H3605\"* house|strong=\"H1004\"* will|strong=\"H1961\"* come|strong=\"H1961\"* and|strong=\"H3701\"* bow|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H1961\"* him|strong=\"H3605\"* for|strong=\"H1004\"* a|strong=\"H3068\"* piece|strong=\"H6595\"* of|strong=\"H1004\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* a|strong=\"H3068\"* loaf|strong=\"H3603\"* of|strong=\"H1004\"* bread|strong=\"H3899\"*, and|strong=\"H3701\"* will|strong=\"H1961\"* say, “Please|strong=\"H4994\"* put|strong=\"H5596\"* me|strong=\"H4994\"* into|strong=\"H1961\"* one|strong=\"H3605\"* of|strong=\"H1004\"* the|strong=\"H3605\"* priests’ offices|strong=\"H3550\"*, that|strong=\"H3605\"* I|strong=\"H3605\"* may|strong=\"H1961\"* eat|strong=\"H3899\"* a|strong=\"H3068\"* morsel|strong=\"H6595\"* of|strong=\"H1004\"* bread|strong=\"H3899\"*.”’”" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H6440\"* child|strong=\"H5288\"* Samuel|strong=\"H8050\"* ministered|strong=\"H8334\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* before|strong=\"H6440\"* Eli|strong=\"H5941\"*. Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* was|strong=\"H3068\"* rare|strong=\"H3368\"* in|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"*. There|strong=\"H1961\"* were|strong=\"H1961\"* not|strong=\"H1961\"* many visions|strong=\"H2377\"*, then|strong=\"H1961\"*." + }, + { + "verseNum": 2, + "text": "At|strong=\"H3117\"* that|strong=\"H7200\"* time|strong=\"H3117\"*, when|strong=\"H1961\"* Eli|strong=\"H5941\"* was|strong=\"H1961\"* laid|strong=\"H7901\"* down|strong=\"H7901\"* in|strong=\"H3117\"* his|strong=\"H7200\"* place|strong=\"H4725\"* (now|strong=\"H1961\"* his|strong=\"H7200\"* eyes|strong=\"H5869\"* had|strong=\"H1961\"* begun|strong=\"H2490\"* to|strong=\"H3201\"* grow dim|strong=\"H3544\"*, so|strong=\"H1961\"* that|strong=\"H7200\"* he|strong=\"H1931\"* could|strong=\"H3201\"* not|strong=\"H3808\"* see|strong=\"H7200\"*)," + }, + { + "verseNum": 3, + "text": "and|strong=\"H3068\"* God|strong=\"H3068\"*’s lamp|strong=\"H5216\"* hadn’t yet|strong=\"H2962\"* gone|strong=\"H3068\"* out|strong=\"H3518\"*, and|strong=\"H3068\"* Samuel|strong=\"H8050\"* had|strong=\"H3068\"* laid|strong=\"H7901\"* down|strong=\"H7901\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"* where|strong=\"H8033\"* God|strong=\"H3068\"*’s ark was|strong=\"H3068\"*," + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* called|strong=\"H7121\"* Samuel|strong=\"H8050\"*. He|strong=\"H3068\"* said|strong=\"H7121\"*, “Here|strong=\"H2005\"* I|strong=\"H2005\"* am|strong=\"H3068\"*.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H3588\"* ran|strong=\"H7323\"* to|strong=\"H7725\"* Eli|strong=\"H5941\"* and|strong=\"H7725\"* said|strong=\"H7121\"*, “Here|strong=\"H2005\"* I|strong=\"H3588\"* am|strong=\"H2005\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* called|strong=\"H7121\"* me|strong=\"H7725\"*.”" + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* called|strong=\"H7121\"* yet|strong=\"H5750\"* again|strong=\"H7725\"*, “Samuel|strong=\"H8050\"*!”" + }, + { + "verseNum": 7, + "text": "Now Samuel|strong=\"H8050\"* didn’t yet|strong=\"H2962\"* know|strong=\"H3045\"* Yahweh|strong=\"H3068\"*, neither was|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* yet|strong=\"H2962\"* revealed|strong=\"H1540\"* to|strong=\"H3068\"* him|strong=\"H3045\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* called|strong=\"H7121\"* Samuel|strong=\"H8050\"* again|strong=\"H3254\"* the|strong=\"H3588\"* third|strong=\"H7992\"* time|strong=\"H7992\"*. He|strong=\"H3588\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Eli|strong=\"H5941\"* and|strong=\"H6965\"* said|strong=\"H7121\"*, “Here|strong=\"H2005\"* I|strong=\"H3588\"* am|strong=\"H3068\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* called|strong=\"H7121\"* me|strong=\"H7121\"*.”" + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H3588\"* Eli|strong=\"H5941\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Samuel|strong=\"H8050\"*, “Go|strong=\"H3212\"*, lie|strong=\"H7901\"* down|strong=\"H7901\"*. It|strong=\"H7121\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, if|strong=\"H3588\"* he|strong=\"H3588\"* calls|strong=\"H7121\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* say|strong=\"H1696\"*, ‘Speak|strong=\"H1696\"*, Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* hears|strong=\"H8085\"*.’” So|strong=\"H1961\"* Samuel|strong=\"H8050\"* went|strong=\"H3212\"* and|strong=\"H3068\"* lay|strong=\"H7901\"* down|strong=\"H7901\"* in|strong=\"H3068\"* his|strong=\"H3068\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* came|strong=\"H3068\"*, and|strong=\"H3068\"* stood|strong=\"H3320\"*, and|strong=\"H3068\"* called|strong=\"H7121\"* as|strong=\"H3068\"* at|strong=\"H3068\"* other|strong=\"H6471\"* times|strong=\"H6471\"*, “Samuel|strong=\"H8050\"*! Samuel|strong=\"H8050\"*!”" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3478\"* Samuel|strong=\"H8050\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* will|strong=\"H3068\"* do|strong=\"H6213\"* a|strong=\"H3068\"* thing|strong=\"H1697\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* at|strong=\"H3478\"* which|strong=\"H3068\"* both|strong=\"H8147\"* the|strong=\"H3605\"* ears of|strong=\"H3068\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* hears|strong=\"H8085\"* it|strong=\"H6213\"* will|strong=\"H3068\"* tingle|strong=\"H6750\"*." + }, + { + "verseNum": 12, + "text": "In|strong=\"H1004\"* that|strong=\"H3605\"* day|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H1004\"* perform|strong=\"H6965\"* against|strong=\"H1696\"* Eli|strong=\"H5941\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H3117\"* have|strong=\"H3117\"* spoken|strong=\"H1696\"* concerning|strong=\"H1696\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, from|strong=\"H3117\"* the|strong=\"H3605\"* beginning|strong=\"H2490\"* even to|strong=\"H1696\"* the|strong=\"H3605\"* end|strong=\"H3615\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3045\"* told|strong=\"H5046\"* him|strong=\"H5046\"* that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1121\"* judge|strong=\"H8199\"* his|strong=\"H3045\"* house|strong=\"H1004\"* forever|strong=\"H5769\"* for|strong=\"H3588\"* the|strong=\"H3588\"* iniquity|strong=\"H5771\"* which|strong=\"H1992\"* he|strong=\"H3588\"* knew|strong=\"H3045\"*, because|strong=\"H3588\"* his|strong=\"H3045\"* sons|strong=\"H1121\"* brought|strong=\"H7043\"* a|strong=\"H3068\"* curse|strong=\"H7043\"* on|strong=\"H1004\"* themselves|strong=\"H1992\"*, and|strong=\"H1121\"* he|strong=\"H3588\"* didn’t restrain them|strong=\"H1992\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5704\"* have|strong=\"H5771\"* sworn|strong=\"H7650\"* to|strong=\"H5704\"* the|strong=\"H5704\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Eli|strong=\"H5941\"* that|strong=\"H3651\"* the|strong=\"H5704\"* iniquity|strong=\"H5771\"* of|strong=\"H1004\"* Eli|strong=\"H5941\"*’s house|strong=\"H1004\"* shall|strong=\"H1004\"* not|strong=\"H5704\"* be|strong=\"H5769\"* removed with|strong=\"H1004\"* sacrifice|strong=\"H2077\"* or|strong=\"H5704\"* offering|strong=\"H4503\"* forever|strong=\"H5769\"*.”" + }, + { + "verseNum": 15, + "text": "Samuel|strong=\"H8050\"* lay|strong=\"H7901\"* until|strong=\"H5704\"* the|strong=\"H3068\"* morning|strong=\"H1242\"*, and|strong=\"H3068\"* opened|strong=\"H6605\"* the|strong=\"H3068\"* doors|strong=\"H1817\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*. Samuel|strong=\"H8050\"* was|strong=\"H3068\"* afraid|strong=\"H3372\"* to|strong=\"H5704\"* show|strong=\"H5046\"* Eli|strong=\"H5941\"* the|strong=\"H3068\"* vision|strong=\"H4759\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H7121\"* Eli|strong=\"H5941\"* called|strong=\"H7121\"* Samuel|strong=\"H8050\"* and|strong=\"H1121\"* said|strong=\"H7121\"*, “Samuel|strong=\"H8050\"*, my|strong=\"H7121\"* son|strong=\"H1121\"*!”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H6213\"* said|strong=\"H1696\"*, “What|strong=\"H4100\"* is|strong=\"H4100\"* the|strong=\"H3605\"* thing|strong=\"H1697\"* that|strong=\"H3605\"* he|strong=\"H6213\"* has|strong=\"H4100\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3605\"*? Please|strong=\"H4994\"* don’t hide|strong=\"H3582\"* it|strong=\"H6213\"* from|strong=\"H4480\"* me|strong=\"H4994\"*. God do|strong=\"H6213\"* so|strong=\"H6213\"* to|strong=\"H1696\"* you|strong=\"H3605\"*, and|strong=\"H6213\"* more|strong=\"H3254\"* also|strong=\"H3541\"*, if you|strong=\"H3605\"* hide|strong=\"H3582\"* anything|strong=\"H3605\"* from|strong=\"H4480\"* me|strong=\"H4994\"* of|strong=\"H1697\"* all|strong=\"H3605\"* the|strong=\"H3605\"* things|strong=\"H1697\"* that|strong=\"H3605\"* he|strong=\"H6213\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 18, + "text": "Samuel|strong=\"H8050\"* told|strong=\"H5046\"* him|strong=\"H5046\"* every|strong=\"H3605\"* bit, and|strong=\"H3068\"* hid|strong=\"H3582\"* nothing|strong=\"H3808\"* from|strong=\"H4480\"* him|strong=\"H5046\"*." + }, + { + "verseNum": 19, + "text": "Samuel|strong=\"H8050\"* grew|strong=\"H1431\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H5973\"* and|strong=\"H3068\"* let|strong=\"H3808\"* none|strong=\"H3808\"* of|strong=\"H3068\"* his|strong=\"H3605\"* words|strong=\"H1697\"* fall|strong=\"H5307\"* to|strong=\"H3068\"* the|strong=\"H3605\"* ground." + }, + { + "verseNum": 20, + "text": "All|strong=\"H3605\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* Dan|strong=\"H1835\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Beersheba knew|strong=\"H3045\"* that|strong=\"H3588\"* Samuel|strong=\"H8050\"* was|strong=\"H3068\"* established to|strong=\"H5704\"* be|strong=\"H3068\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* again|strong=\"H3254\"* in|strong=\"H3068\"* Shiloh|strong=\"H7887\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* revealed|strong=\"H1540\"* himself|strong=\"H1540\"* to|strong=\"H3068\"* Samuel|strong=\"H8050\"* in|strong=\"H3068\"* Shiloh|strong=\"H7887\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* word|strong=\"H1697\"* of|strong=\"H1697\"* Samuel|strong=\"H8050\"* came|strong=\"H1961\"* to|strong=\"H3318\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H6440\"* Philistines|strong=\"H6430\"* put|strong=\"H6186\"* themselves|strong=\"H6186\"* in|strong=\"H3478\"* array|strong=\"H6186\"* against|strong=\"H6440\"* Israel|strong=\"H3478\"*. When|strong=\"H3478\"* they|strong=\"H3478\"* joined|strong=\"H6186\"* battle|strong=\"H4421\"*, Israel|strong=\"H3478\"* was|strong=\"H3478\"* defeated|strong=\"H5221\"* by|strong=\"H3478\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*, who|strong=\"H3478\"* killed|strong=\"H5221\"* about|strong=\"H5221\"* four thousand men|strong=\"H3478\"* of|strong=\"H6440\"* the|strong=\"H6440\"* army|strong=\"H4634\"* in|strong=\"H3478\"* the|strong=\"H6440\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"H3117\"* the|strong=\"H6440\"* people|strong=\"H5971\"* had|strong=\"H3068\"* come|strong=\"H5971\"* into|strong=\"H3947\"* the|strong=\"H6440\"* camp|strong=\"H4264\"*, the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* said, “Why|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* defeated|strong=\"H5062\"* us|strong=\"H6440\"* today|strong=\"H3117\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*? Let’s get|strong=\"H3947\"* the|strong=\"H6440\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* out|strong=\"H3947\"* of|strong=\"H3068\"* Shiloh|strong=\"H7887\"* and|strong=\"H3478\"* bring|strong=\"H3947\"* it|strong=\"H6440\"* to|strong=\"H3478\"* us|strong=\"H6440\"*, that|strong=\"H5971\"* it|strong=\"H6440\"* may|strong=\"H3068\"* come|strong=\"H5971\"* among|strong=\"H7130\"* us|strong=\"H6440\"* and|strong=\"H3478\"* save|strong=\"H3467\"* us|strong=\"H6440\"* out|strong=\"H3947\"* of|strong=\"H3068\"* the|strong=\"H6440\"* hand|strong=\"H3709\"* of|strong=\"H3068\"* our|strong=\"H3068\"* enemies.”" + }, + { + "verseNum": 4, + "text": "So|strong=\"H7971\"* the|strong=\"H5375\"* people|strong=\"H5971\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* Shiloh|strong=\"H7887\"*, and|strong=\"H1121\"* they|strong=\"H8033\"* brought|strong=\"H5375\"* from|strong=\"H1121\"* there|strong=\"H8033\"* the|strong=\"H5375\"* ark of|strong=\"H1121\"* the|strong=\"H5375\"* covenant|strong=\"H1285\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*, who|strong=\"H5971\"* sits|strong=\"H3427\"* above the|strong=\"H5375\"* cherubim|strong=\"H3742\"*; and|strong=\"H1121\"* the|strong=\"H5375\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eli|strong=\"H5941\"*, Hophni|strong=\"H2652\"* and|strong=\"H1121\"* Phinehas|strong=\"H6372\"*, were|strong=\"H5971\"* there|strong=\"H8033\"* with|strong=\"H5973\"* the|strong=\"H5375\"* ark of|strong=\"H1121\"* the|strong=\"H5375\"* covenant|strong=\"H1285\"* of|strong=\"H1121\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H1961\"* the|strong=\"H3605\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* came|strong=\"H1961\"* into|strong=\"H1961\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*, all|strong=\"H3605\"* Israel|strong=\"H3478\"* shouted|strong=\"H7321\"* with|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* shout|strong=\"H7321\"*, so|strong=\"H1961\"* that|strong=\"H3605\"* the|strong=\"H3605\"* earth resounded|strong=\"H1949\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"H3588\"* the|strong=\"H8085\"* Philistines|strong=\"H6430\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H3068\"* the|strong=\"H8085\"* shout|strong=\"H8643\"*, they|strong=\"H3588\"* said|strong=\"H8085\"*, “What|strong=\"H4100\"* does|strong=\"H4100\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H3068\"* this|strong=\"H2063\"* great|strong=\"H1419\"* shout|strong=\"H8643\"* in|strong=\"H3068\"* the|strong=\"H8085\"* camp|strong=\"H4264\"* of|strong=\"H3068\"* the|strong=\"H8085\"* Hebrews|strong=\"H5680\"* mean?” They|strong=\"H3588\"* understood|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s ark had|strong=\"H3068\"* come|strong=\"H5680\"* into|strong=\"H4264\"* the|strong=\"H8085\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3588\"* Philistines|strong=\"H6430\"* were|strong=\"H1961\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* said, “God|strong=\"H3808\"* has|strong=\"H1961\"* come|strong=\"H1961\"* into|strong=\"H1961\"* the|strong=\"H3588\"* camp|strong=\"H4264\"*.” They|strong=\"H3588\"* said, “Woe to|strong=\"H1961\"* us|strong=\"H3588\"*! For|strong=\"H3588\"* there|strong=\"H1961\"* has|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"* such|strong=\"H2063\"* a|strong=\"H3068\"* thing|strong=\"H2063\"* before|strong=\"H3808\"*." + }, + { + "verseNum": 8, + "text": "Woe to|strong=\"H3027\"* us|strong=\"H5337\"*! Who|strong=\"H4310\"* shall|strong=\"H4714\"* deliver|strong=\"H5337\"* us|strong=\"H5337\"* out|strong=\"H5337\"* of|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* these|strong=\"H1992\"* mighty gods? These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H3605\"* gods that|strong=\"H3605\"* struck|strong=\"H5221\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"* with|strong=\"H4714\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H3027\"* plagues|strong=\"H4347\"* in|strong=\"H3027\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 9, + "text": "Be|strong=\"H1961\"* strong|strong=\"H2388\"* and|strong=\"H2388\"* behave like|strong=\"H1961\"* men|strong=\"H2388\"*, O|strong=\"H3068\"* you|strong=\"H5647\"* Philistines|strong=\"H6430\"*, that|strong=\"H1961\"* you|strong=\"H5647\"* not|strong=\"H6435\"* be|strong=\"H1961\"* servants|strong=\"H5647\"* to|strong=\"H1961\"* the|strong=\"H5647\"* Hebrews|strong=\"H5680\"*, as|strong=\"H1961\"* they|strong=\"H6430\"* have|strong=\"H1961\"* been|strong=\"H1961\"* to|strong=\"H1961\"* you|strong=\"H5647\"*. Strengthen|strong=\"H2388\"* yourselves like|strong=\"H1961\"* men|strong=\"H2388\"*, and|strong=\"H2388\"* fight|strong=\"H3898\"*!”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H1961\"* Philistines|strong=\"H6430\"* fought|strong=\"H3898\"*, and|strong=\"H3478\"* Israel|strong=\"H3478\"* was|strong=\"H1961\"* defeated|strong=\"H5062\"*, and|strong=\"H3478\"* each man|strong=\"H1419\"* fled|strong=\"H5127\"* to|strong=\"H3478\"* his|strong=\"H3478\"* tent. There|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* slaughter|strong=\"H4347\"*; for|strong=\"H3478\"* thirty|strong=\"H7970\"* thousand footmen|strong=\"H7273\"* of|strong=\"H5307\"* Israel|strong=\"H3478\"* fell|strong=\"H5307\"*." + }, + { + "verseNum": 11, + "text": "God’s ark was|strong=\"H1121\"* taken|strong=\"H3947\"*; and|strong=\"H1121\"* the|strong=\"H3947\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eli|strong=\"H5941\"*, Hophni|strong=\"H2652\"* and|strong=\"H1121\"* Phinehas|strong=\"H6372\"*, were|strong=\"H1121\"* slain|strong=\"H4191\"*." + }, + { + "verseNum": 12, + "text": "A|strong=\"H3068\"* man|strong=\"H7218\"* of|strong=\"H3117\"* Benjamin|strong=\"H1144\"* ran|strong=\"H7323\"* out|strong=\"H5921\"* of|strong=\"H3117\"* the|strong=\"H5921\"* army|strong=\"H4634\"* and|strong=\"H3117\"* came|strong=\"H1144\"* to|strong=\"H5921\"* Shiloh|strong=\"H7887\"* the|strong=\"H5921\"* same|strong=\"H1931\"* day|strong=\"H3117\"*, with|strong=\"H5921\"* his|strong=\"H5921\"* clothes|strong=\"H4055\"* torn|strong=\"H7167\"* and|strong=\"H3117\"* with|strong=\"H5921\"* dirt on|strong=\"H5921\"* his|strong=\"H5921\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H3588\"* he|strong=\"H3588\"* came|strong=\"H1961\"*, behold|strong=\"H2009\"*, Eli|strong=\"H5941\"* was|strong=\"H1961\"* sitting|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H3605\"* seat|strong=\"H3678\"* by|strong=\"H5921\"* the|strong=\"H3605\"* road|strong=\"H1870\"* watching|strong=\"H6822\"*, for|strong=\"H3588\"* his|strong=\"H3605\"* heart|strong=\"H3820\"* trembled|strong=\"H2730\"* for|strong=\"H3588\"* God’s ark. When|strong=\"H3588\"* the|strong=\"H3605\"* man|strong=\"H3605\"* came|strong=\"H1961\"* into|strong=\"H5921\"* the|strong=\"H3605\"* city|strong=\"H5892\"* and|strong=\"H5892\"* told|strong=\"H5046\"* about|strong=\"H1961\"* it|strong=\"H5921\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* city|strong=\"H5892\"* cried|strong=\"H2199\"* out|strong=\"H2199\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H8085\"* Eli|strong=\"H5941\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* crying|strong=\"H6818\"*, he|strong=\"H2088\"* said|strong=\"H8085\"*, “What|strong=\"H4100\"* does|strong=\"H4100\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* this|strong=\"H2088\"* tumult|strong=\"H1995\"* mean?”" + }, + { + "verseNum": 15, + "text": "Now Eli|strong=\"H5941\"* was|strong=\"H1121\"* ninety-eight|strong=\"H8673\"* years|strong=\"H8141\"* old|strong=\"H1121\"*. His|strong=\"H7200\"* eyes|strong=\"H5869\"* were|strong=\"H1121\"* set|strong=\"H6965\"*, so|strong=\"H3808\"* that|strong=\"H7200\"* he|strong=\"H3808\"* could|strong=\"H3201\"* not|strong=\"H3808\"* see|strong=\"H7200\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H4480\"* man|strong=\"H1121\"* said|strong=\"H1697\"* to|strong=\"H1961\"* Eli|strong=\"H5941\"*, “I|strong=\"H3117\"* am|strong=\"H1961\"* he|strong=\"H3117\"* who|strong=\"H1121\"* came|strong=\"H1961\"* out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* army|strong=\"H4634\"*, and|strong=\"H1121\"* I|strong=\"H3117\"* fled|strong=\"H5127\"* today|strong=\"H3117\"* out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* army|strong=\"H4634\"*.”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H8147\"* who|strong=\"H5971\"* brought|strong=\"H3947\"* the|strong=\"H6440\"* news|strong=\"H1319\"* answered|strong=\"H6030\"*, “Israel|strong=\"H3478\"* has|strong=\"H1961\"* fled|strong=\"H5127\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*, and|strong=\"H1121\"* there|strong=\"H1961\"* has|strong=\"H1961\"* been|strong=\"H1961\"* also|strong=\"H1571\"* a|strong=\"H3068\"* great|strong=\"H1419\"* slaughter|strong=\"H4046\"* among|strong=\"H5971\"* the|strong=\"H6440\"* people|strong=\"H5971\"*. Your|strong=\"H3947\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* also|strong=\"H1571\"*, Hophni|strong=\"H2652\"* and|strong=\"H1121\"* Phinehas|strong=\"H6372\"*, are|strong=\"H5971\"* dead|strong=\"H4191\"*, and|strong=\"H1121\"* God’s ark has|strong=\"H1961\"* been|strong=\"H1961\"* captured|strong=\"H3947\"*.”" + }, + { + "verseNum": 18, + "text": "When|strong=\"H3588\"* he|strong=\"H1931\"* made|strong=\"H1961\"* mention|strong=\"H2142\"* of|strong=\"H3027\"* God|strong=\"H3027\"*’s ark, Eli|strong=\"H5307\"* fell|strong=\"H5307\"* from|strong=\"H5921\"* off|strong=\"H5921\"* his|strong=\"H5921\"* seat|strong=\"H3678\"* backward by|strong=\"H3027\"* the|strong=\"H5921\"* side|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* gate|strong=\"H8179\"*; and|strong=\"H3478\"* his|strong=\"H5921\"* neck|strong=\"H4665\"* broke|strong=\"H7665\"*, and|strong=\"H3478\"* he|strong=\"H1931\"* died|strong=\"H4191\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1961\"* an|strong=\"H1961\"* old|strong=\"H2204\"* man|strong=\"H4191\"* and|strong=\"H3478\"* heavy|strong=\"H3515\"*. He|strong=\"H1931\"* had|strong=\"H1961\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* forty years|strong=\"H8141\"*." + }, + { + "verseNum": 19, + "text": "His|strong=\"H3947\"* daughter-in-law|strong=\"H3618\"*, Phinehas|strong=\"H6372\"*’ wife, was|strong=\"H3205\"* with|strong=\"H5921\"* child|strong=\"H2030\"*, near|strong=\"H5921\"* to|strong=\"H4191\"* giving|strong=\"H3205\"* birth|strong=\"H3205\"*. When|strong=\"H3588\"* she|strong=\"H3588\"* heard|strong=\"H8085\"* the|strong=\"H5921\"* news|strong=\"H8052\"* that|strong=\"H3588\"* God’s ark was|strong=\"H3205\"* taken|strong=\"H3947\"* and|strong=\"H8085\"* that|strong=\"H3588\"* her|strong=\"H3947\"* father-in-law|strong=\"H2524\"* and|strong=\"H8085\"* her|strong=\"H3947\"* husband were|strong=\"H3205\"* dead|strong=\"H4191\"*, she|strong=\"H3588\"* bowed|strong=\"H3766\"* herself|strong=\"H5921\"* and|strong=\"H8085\"* gave|strong=\"H3205\"* birth|strong=\"H3205\"*; for|strong=\"H3588\"* her|strong=\"H3947\"* pains|strong=\"H6735\"* came|strong=\"H2015\"* on|strong=\"H5921\"* her|strong=\"H3947\"*." + }, + { + "verseNum": 20, + "text": "About|strong=\"H5921\"* the|strong=\"H5921\"* time|strong=\"H6256\"* of|strong=\"H1121\"* her|strong=\"H5921\"* death|strong=\"H4191\"* the|strong=\"H5921\"* women who|strong=\"H1121\"* stood|strong=\"H5324\"* by|strong=\"H5921\"* her|strong=\"H5921\"* said|strong=\"H1696\"* to|strong=\"H1696\"* her|strong=\"H5921\"*, “Don’t be|strong=\"H4191\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1121\"* given|strong=\"H3205\"* birth|strong=\"H3205\"* to|strong=\"H1696\"* a|strong=\"H3068\"* son|strong=\"H1121\"*.” But|strong=\"H3588\"* she|strong=\"H3588\"* didn’t answer|strong=\"H6030\"*, neither|strong=\"H3808\"* did|strong=\"H3808\"* she|strong=\"H3588\"* regard|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "She|strong=\"H7121\"* named|strong=\"H7121\"* the|strong=\"H3947\"* child|strong=\"H5288\"* Ichabod,+ 4:21 “Ichabod” means “no glory”.* saying, “The|strong=\"H3947\"* glory|strong=\"H3519\"* has|strong=\"H3478\"* departed|strong=\"H1540\"* from|strong=\"H3478\"* Israel|strong=\"H3478\"*!” because God’s ark was|strong=\"H3478\"* taken|strong=\"H3947\"*, and|strong=\"H3478\"* because of|strong=\"H3519\"* her|strong=\"H1540\"* father-in-law|strong=\"H2524\"* and|strong=\"H3478\"* her|strong=\"H1540\"* husband." + }, + { + "verseNum": 22, + "text": "She|strong=\"H3588\"* said, “The|strong=\"H3588\"* glory|strong=\"H3519\"* has|strong=\"H3478\"* departed|strong=\"H1540\"* from|strong=\"H3478\"* Israel|strong=\"H3478\"*; for|strong=\"H3588\"* God’s ark has|strong=\"H3478\"* been taken|strong=\"H3947\"*.”" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3947\"* the|strong=\"H3947\"* Philistines|strong=\"H6430\"* had|strong=\"H6430\"* taken|strong=\"H3947\"* God’s ark, and|strong=\"H6430\"* they|strong=\"H3947\"* brought|strong=\"H3947\"* it|strong=\"H3947\"* from|strong=\"H3947\"* Ebenezer to|strong=\"H3947\"* Ashdod." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3947\"* Philistines|strong=\"H6430\"* took|strong=\"H3947\"* God’s ark, and|strong=\"H1004\"* brought|strong=\"H3947\"* it|strong=\"H3322\"* into|strong=\"H3947\"* the|strong=\"H3947\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Dagon|strong=\"H1712\"* and|strong=\"H1004\"* set|strong=\"H3322\"* it|strong=\"H3322\"* by|strong=\"H6430\"* Dagon|strong=\"H1712\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"H7725\"* the|strong=\"H6440\"* people of|strong=\"H3068\"* Ashdod arose|strong=\"H7925\"* early|strong=\"H7925\"* on|strong=\"H5307\"* the|strong=\"H6440\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, behold|strong=\"H2009\"*, Dagon|strong=\"H1712\"* had|strong=\"H3068\"* fallen|strong=\"H5307\"* on|strong=\"H5307\"* his|strong=\"H3068\"* face|strong=\"H6440\"* to|strong=\"H7725\"* the|strong=\"H6440\"* ground|strong=\"H4725\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s ark. They|strong=\"H3068\"* took|strong=\"H3947\"* Dagon|strong=\"H1712\"* and|strong=\"H3068\"* set|strong=\"H7725\"* him|strong=\"H6440\"* in|strong=\"H3068\"* his|strong=\"H3068\"* place|strong=\"H4725\"* again|strong=\"H7725\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"H3068\"* they|strong=\"H3068\"* arose|strong=\"H7925\"* early|strong=\"H7925\"* on|strong=\"H5921\"* the|strong=\"H6440\"* following|strong=\"H4283\"* morning|strong=\"H1242\"*, behold|strong=\"H2009\"*, Dagon|strong=\"H1712\"* had|strong=\"H3068\"* fallen|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H3068\"* face|strong=\"H6440\"* to|strong=\"H3068\"* the|strong=\"H6440\"* ground|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s ark; and|strong=\"H3068\"* the|strong=\"H6440\"* head|strong=\"H7218\"* of|strong=\"H3068\"* Dagon|strong=\"H1712\"* and|strong=\"H3068\"* both|strong=\"H8147\"* the|strong=\"H6440\"* palms|strong=\"H3709\"* of|strong=\"H3068\"* his|strong=\"H3068\"* hands|strong=\"H3027\"* were|strong=\"H3027\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* on|strong=\"H5921\"* the|strong=\"H6440\"* threshold|strong=\"H4670\"*. Only|strong=\"H7535\"* Dagon|strong=\"H1712\"*’s torso was|strong=\"H3068\"* intact|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"H3651\"* neither|strong=\"H3808\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* of|strong=\"H1004\"* Dagon|strong=\"H1712\"* nor|strong=\"H3808\"* any|strong=\"H3605\"* who|strong=\"H3605\"* come|strong=\"H1869\"* into|strong=\"H5921\"* Dagon|strong=\"H1712\"*’s house|strong=\"H1004\"* step on|strong=\"H5921\"* the|strong=\"H3605\"* threshold|strong=\"H4670\"* of|strong=\"H1004\"* Dagon|strong=\"H1712\"* in|strong=\"H5921\"* Ashdod to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"H3513\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* heavy|strong=\"H3513\"* on|strong=\"H3027\"* the|strong=\"H5221\"* people of|strong=\"H3068\"* Ashdod, and|strong=\"H3068\"* he|strong=\"H3068\"* destroyed|strong=\"H5221\"* them|strong=\"H5221\"* and|strong=\"H3068\"* struck|strong=\"H5221\"* them|strong=\"H5221\"* with|strong=\"H3068\"* tumors|strong=\"H6076\"*, even|strong=\"H3068\"* Ashdod and|strong=\"H3068\"* its|strong=\"H5221\"* borders|strong=\"H1366\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H3588\"* the|strong=\"H5921\"* men|strong=\"H3478\"* of|strong=\"H3027\"* Ashdod saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H5921\"* was|strong=\"H3478\"* so|strong=\"H3651\"*, they|strong=\"H3588\"* said|strong=\"H3651\"*, “The|strong=\"H5921\"* ark of|strong=\"H3027\"* the|strong=\"H5921\"* God|strong=\"H3808\"* of|strong=\"H3027\"* Israel|strong=\"H3478\"* shall|strong=\"H3478\"* not|strong=\"H3808\"* stay|strong=\"H3427\"* with|strong=\"H5973\"* us|strong=\"H5921\"*, for|strong=\"H3588\"* his|strong=\"H5921\"* hand|strong=\"H3027\"* is|strong=\"H3027\"* severe|strong=\"H7185\"* on|strong=\"H5921\"* us|strong=\"H5921\"* and|strong=\"H3478\"* on|strong=\"H5921\"* Dagon|strong=\"H1712\"* our|strong=\"H7200\"* god|strong=\"H3808\"*.”" + }, + { + "verseNum": 8, + "text": "They|strong=\"H4100\"* sent|strong=\"H7971\"* therefore|strong=\"H7971\"* and|strong=\"H3478\"* gathered|strong=\"H6430\"* together all|strong=\"H3605\"* the|strong=\"H3605\"* lords|strong=\"H5633\"* of|strong=\"H3605\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, and|strong=\"H3478\"* said, “What|strong=\"H4100\"* shall|strong=\"H3478\"* we|strong=\"H3068\"* do|strong=\"H6213\"* with|strong=\"H6213\"* the|strong=\"H3605\"* ark of|strong=\"H3605\"* the|strong=\"H3605\"* God|strong=\"H7971\"* of|strong=\"H3605\"* Israel|strong=\"H3478\"*?”" + }, + { + "verseNum": 9, + "text": "It|strong=\"H5221\"* was|strong=\"H3068\"* so|strong=\"H1961\"*, that|strong=\"H3068\"* after|strong=\"H1961\"* they|strong=\"H3068\"* had|strong=\"H3068\"* carried|strong=\"H3068\"* it|strong=\"H5221\"* there|strong=\"H1961\"*, Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* against|strong=\"H3027\"* the|strong=\"H5221\"* city|strong=\"H5892\"* with|strong=\"H3068\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* confusion|strong=\"H4103\"*; and|strong=\"H3068\"* he|strong=\"H5704\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* men|strong=\"H1419\"* of|strong=\"H3068\"* the|strong=\"H5221\"* city|strong=\"H5892\"*, both small|strong=\"H6996\"* and|strong=\"H3068\"* great|strong=\"H1419\"*, so|strong=\"H1961\"* that|strong=\"H3068\"* tumors|strong=\"H6076\"* broke|strong=\"H8368\"* out|strong=\"H5704\"* on|strong=\"H3027\"* them|strong=\"H5221\"*." + }, + { + "verseNum": 10, + "text": "So|strong=\"H7971\"* they|strong=\"H5971\"* sent|strong=\"H7971\"* God|strong=\"H7971\"*’s ark to|strong=\"H3478\"* Ekron|strong=\"H6138\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3588\"* sent|strong=\"H7971\"* therefore|strong=\"H3588\"* and|strong=\"H3478\"* gathered|strong=\"H6430\"* together|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* lords|strong=\"H5633\"* of|strong=\"H3027\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, and|strong=\"H3478\"* they|strong=\"H3588\"* said, “Send|strong=\"H7971\"* the|strong=\"H3605\"* ark of|strong=\"H3027\"* the|strong=\"H3605\"* God|strong=\"H3808\"* of|strong=\"H3027\"* Israel|strong=\"H3478\"* away|strong=\"H7971\"*, and|strong=\"H3478\"* let|strong=\"H7971\"* it|strong=\"H3588\"* go|strong=\"H7971\"* again|strong=\"H7725\"* to|strong=\"H7725\"* its|strong=\"H3605\"* own|strong=\"H1961\"* place|strong=\"H4725\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* not|strong=\"H3808\"* kill|strong=\"H4191\"* us|strong=\"H7725\"* and|strong=\"H3478\"* our|strong=\"H3605\"* people|strong=\"H5971\"*.” For|strong=\"H3588\"* there|strong=\"H8033\"* was|strong=\"H1961\"* a|strong=\"H3068\"* deadly|strong=\"H4194\"* panic|strong=\"H4103\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* city|strong=\"H5892\"*. The|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* God|strong=\"H3808\"* was|strong=\"H1961\"* very|strong=\"H3966\"* heavy|strong=\"H3513\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5221\"* men who|strong=\"H5221\"* didn’t die|strong=\"H4191\"* were|strong=\"H8064\"* struck|strong=\"H5221\"* with|strong=\"H5892\"* the|strong=\"H5221\"* tumors|strong=\"H6076\"*; and|strong=\"H8064\"* the|strong=\"H5221\"* cry|strong=\"H7775\"* of|strong=\"H5892\"* the|strong=\"H5221\"* city|strong=\"H5892\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H4191\"* heaven|strong=\"H8064\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s ark was|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* country|strong=\"H7704\"* of|strong=\"H3068\"* the|strong=\"H3068\"* Philistines|strong=\"H6430\"* seven|strong=\"H7651\"* months|strong=\"H2320\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H6213\"* Philistines|strong=\"H6430\"* called|strong=\"H7121\"* for|strong=\"H7121\"* the|strong=\"H6213\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H6213\"* diviners|strong=\"H7080\"*, saying, “What|strong=\"H4100\"* shall|strong=\"H3548\"* we|strong=\"H3068\"* do|strong=\"H6213\"* with|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s ark? Show|strong=\"H6213\"* us|strong=\"H6213\"* how|strong=\"H4100\"* we|strong=\"H3068\"* should|strong=\"H3068\"* send|strong=\"H7971\"* it|strong=\"H7121\"* to|strong=\"H3068\"* its|strong=\"H6213\"* place|strong=\"H4725\"*.”" + }, + { + "verseNum": 3, + "text": "They|strong=\"H3588\"* said, “If|strong=\"H3588\"* you|strong=\"H3588\"* send|strong=\"H7971\"* away|strong=\"H5493\"* the|strong=\"H3588\"* ark of|strong=\"H3027\"* the|strong=\"H3588\"* God|strong=\"H3808\"* of|strong=\"H3027\"* Israel|strong=\"H3478\"*, don’t send|strong=\"H7971\"* it|strong=\"H3588\"* empty|strong=\"H7387\"*; but|strong=\"H3588\"* by|strong=\"H3027\"* all|strong=\"H3045\"* means|strong=\"H3027\"* return|strong=\"H7725\"* a|strong=\"H3068\"* trespass offering|strong=\"H4480\"* to|strong=\"H7725\"* him|strong=\"H7971\"*. Then|strong=\"H7971\"* you|strong=\"H3588\"* will|strong=\"H3478\"* be|strong=\"H3808\"* healed|strong=\"H7495\"*, and|strong=\"H3478\"* it|strong=\"H3588\"* will|strong=\"H3478\"* be|strong=\"H3808\"* known|strong=\"H3045\"* to|strong=\"H7725\"* you|strong=\"H3588\"* why|strong=\"H4100\"* his|strong=\"H7971\"* hand|strong=\"H3027\"* is|strong=\"H4100\"* not|strong=\"H3808\"* removed|strong=\"H5493\"* from|strong=\"H4480\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H7725\"* they|strong=\"H3588\"* said, “What|strong=\"H4100\"* should|strong=\"H4100\"* the|strong=\"H3605\"* trespass offering be|strong=\"H7725\"* which|strong=\"H4100\"* we|strong=\"H3068\"* shall|strong=\"H6430\"* return|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H7725\"*?”" + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"H5921\"* you|strong=\"H5414\"* shall|strong=\"H3478\"* make|strong=\"H6213\"* images|strong=\"H6754\"* of|strong=\"H3027\"* your|strong=\"H5414\"* tumors|strong=\"H6076\"* and|strong=\"H3478\"* images|strong=\"H6754\"* of|strong=\"H3027\"* your|strong=\"H5414\"* mice|strong=\"H5909\"* that|strong=\"H3478\"* mar|strong=\"H7843\"* the|strong=\"H5921\"* land; and|strong=\"H3478\"* you|strong=\"H5414\"* shall|strong=\"H3478\"* give|strong=\"H5414\"* glory|strong=\"H3519\"* to|strong=\"H3478\"* the|strong=\"H5921\"* God|strong=\"H5414\"* of|strong=\"H3027\"* Israel|strong=\"H3478\"*. Perhaps he|strong=\"H6213\"* will|strong=\"H3478\"* release his|strong=\"H5414\"* hand|strong=\"H3027\"* from|strong=\"H5921\"* you|strong=\"H5414\"*, from|strong=\"H5921\"* your|strong=\"H5414\"* gods, and|strong=\"H3478\"* from|strong=\"H5921\"* your|strong=\"H5414\"* land." + }, + { + "verseNum": 6, + "text": "Why|strong=\"H4100\"* then|strong=\"H7971\"* do|strong=\"H4100\"* you|strong=\"H7971\"* harden|strong=\"H3513\"* your|strong=\"H3513\"* hearts|strong=\"H3820\"* as|strong=\"H3824\"* the|strong=\"H7971\"* Egyptians|strong=\"H4713\"* and|strong=\"H7971\"* Pharaoh|strong=\"H6547\"* hardened|strong=\"H3513\"* their|strong=\"H7971\"* hearts|strong=\"H3820\"*? When|strong=\"H7971\"* he|strong=\"H3808\"* had|strong=\"H6547\"* worked wonderfully|strong=\"H5953\"* among|strong=\"H3808\"* them|strong=\"H7971\"*, didn’t they|strong=\"H3808\"* let|strong=\"H7971\"* the|strong=\"H7971\"* people|strong=\"H3808\"* go|strong=\"H3212\"*, and|strong=\"H7971\"* they|strong=\"H3808\"* departed|strong=\"H3212\"*?" + }, + { + "verseNum": 7, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H5921\"* take|strong=\"H3947\"* and|strong=\"H1121\"* prepare|strong=\"H6213\"* yourselves|strong=\"H5921\"* a|strong=\"H3068\"* new|strong=\"H2319\"* cart|strong=\"H5699\"* and|strong=\"H1121\"* two|strong=\"H8147\"* milk cows|strong=\"H6510\"* on|strong=\"H5921\"* which|strong=\"H1004\"* there|strong=\"H5927\"* has|strong=\"H6213\"* come|strong=\"H5927\"* no|strong=\"H3808\"* yoke|strong=\"H5923\"*; and|strong=\"H1121\"* tie the|strong=\"H5921\"* cows|strong=\"H6510\"* to|strong=\"H7725\"* the|strong=\"H5921\"* cart|strong=\"H5699\"*, and|strong=\"H1121\"* bring|strong=\"H7725\"* their|strong=\"H3947\"* calves|strong=\"H1121\"* home|strong=\"H1004\"* from|strong=\"H7725\"* them|strong=\"H5921\"*;" + }, + { + "verseNum": 8, + "text": "and|strong=\"H1980\"* take|strong=\"H3947\"* Yahweh|strong=\"H3068\"*’s ark and|strong=\"H1980\"* lay|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H1980\"* the|strong=\"H5414\"* cart|strong=\"H5699\"*. Put|strong=\"H5414\"* the|strong=\"H5414\"* jewels|strong=\"H3627\"* of|strong=\"H3068\"* gold|strong=\"H2091\"*, which|strong=\"H3068\"* you|strong=\"H5414\"* return|strong=\"H7725\"* him|strong=\"H5414\"* for|strong=\"H7971\"* a|strong=\"H3068\"* trespass offering|strong=\"H3068\"*, in|strong=\"H1980\"* a|strong=\"H3068\"* box by|strong=\"H3068\"* its|strong=\"H5414\"* side|strong=\"H6654\"*; and|strong=\"H1980\"* send|strong=\"H7971\"* it|strong=\"H5414\"* away|strong=\"H7971\"*, that|strong=\"H3068\"* it|strong=\"H5414\"* may|strong=\"H3068\"* go|strong=\"H1980\"*." + }, + { + "verseNum": 9, + "text": "Behold|strong=\"H7200\"*, if|strong=\"H3588\"* it|strong=\"H1931\"* goes|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H3027\"* the|strong=\"H7200\"* way|strong=\"H1870\"* of|strong=\"H3027\"* its|strong=\"H6213\"* own|strong=\"H1961\"* border|strong=\"H1366\"* to|strong=\"H5927\"* Beth Shemesh, then|strong=\"H1961\"* he|strong=\"H1931\"* has|strong=\"H1961\"* done|strong=\"H6213\"* us|strong=\"H6213\"* this|strong=\"H2063\"* great|strong=\"H1419\"* evil|strong=\"H7451\"*; but|strong=\"H3588\"* if|strong=\"H3588\"* not|strong=\"H3808\"*, then|strong=\"H1961\"* we|strong=\"H3068\"* shall|strong=\"H3027\"* know|strong=\"H3045\"* that|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* not|strong=\"H3808\"* his|strong=\"H7200\"* hand|strong=\"H3027\"* that|strong=\"H3588\"* struck|strong=\"H5060\"* us|strong=\"H6213\"*. It|strong=\"H1931\"* was|strong=\"H1961\"* a|strong=\"H3068\"* chance|strong=\"H4745\"* that|strong=\"H3588\"* happened|strong=\"H1961\"* to|strong=\"H5927\"* us|strong=\"H6213\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H3947\"* men|strong=\"H1121\"* did|strong=\"H6213\"* so|strong=\"H3651\"*, and|strong=\"H1121\"* took|strong=\"H3947\"* two|strong=\"H8147\"* milk cows|strong=\"H6510\"* and|strong=\"H1121\"* tied them|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H3947\"* cart|strong=\"H5699\"*, and|strong=\"H1121\"* shut|strong=\"H3607\"* up|strong=\"H3607\"* their|strong=\"H3947\"* calves|strong=\"H1121\"* at|strong=\"H1004\"* home|strong=\"H1004\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3068\"* put|strong=\"H7760\"* Yahweh|strong=\"H3068\"*’s ark on|strong=\"H7760\"* the|strong=\"H3068\"* cart|strong=\"H5699\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* box with|strong=\"H3068\"* the|strong=\"H3068\"* golden|strong=\"H2091\"* mice|strong=\"H5909\"* and|strong=\"H3068\"* the|strong=\"H3068\"* images|strong=\"H6754\"* of|strong=\"H3068\"* their|strong=\"H3068\"* tumors|strong=\"H2914\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* cows|strong=\"H6510\"* took|strong=\"H5493\"* the|strong=\"H5921\"* straight|strong=\"H3474\"* way|strong=\"H1870\"* by|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* to|strong=\"H5704\"* Beth Shemesh. They|strong=\"H3808\"* went|strong=\"H1980\"* along|strong=\"H5921\"* the|strong=\"H5921\"* highway|strong=\"H4546\"*, lowing|strong=\"H1600\"* as|strong=\"H5704\"* they|strong=\"H3808\"* went|strong=\"H1980\"*, and|strong=\"H1980\"* didn’t turn|strong=\"H5493\"* away|strong=\"H5493\"* to|strong=\"H5704\"* the|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* or|strong=\"H3808\"* to|strong=\"H5704\"* the|strong=\"H5921\"* left|strong=\"H8040\"*; and|strong=\"H1980\"* the|strong=\"H5921\"* lords|strong=\"H5633\"* of|strong=\"H1366\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"* went|strong=\"H1980\"* after|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H5704\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Beth Shemesh." + }, + { + "verseNum": 13, + "text": "The|strong=\"H7200\"* people|strong=\"H5869\"* of|strong=\"H5869\"* Beth Shemesh were|strong=\"H5869\"* reaping|strong=\"H7114\"* their|strong=\"H5375\"* wheat|strong=\"H2406\"* harvest|strong=\"H7105\"* in|strong=\"H8055\"* the|strong=\"H7200\"* valley|strong=\"H6010\"*; and|strong=\"H5869\"* they|strong=\"H5375\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H5375\"* eyes|strong=\"H5869\"* and|strong=\"H5869\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* ark, and|strong=\"H5869\"* rejoiced|strong=\"H8055\"* to|strong=\"H7200\"* see|strong=\"H7200\"* it|strong=\"H7200\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3068\"* cart|strong=\"H5699\"* came|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H3068\"* field|strong=\"H7704\"* of|strong=\"H3068\"* Joshua|strong=\"H3091\"* of|strong=\"H3068\"* Beth Shemesh, and|strong=\"H3068\"* stood|strong=\"H5975\"* there|strong=\"H8033\"*, where|strong=\"H8033\"* there|strong=\"H8033\"* was|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* stone. Then|strong=\"H5975\"* they|strong=\"H8033\"* split|strong=\"H1234\"* the|strong=\"H3068\"* wood|strong=\"H6086\"* of|strong=\"H3068\"* the|strong=\"H3068\"* cart|strong=\"H5699\"* and|strong=\"H3068\"* offered|strong=\"H5927\"* up|strong=\"H5927\"* the|strong=\"H3068\"* cows|strong=\"H6510\"* for|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3068\"* Levites|strong=\"H3881\"* took|strong=\"H5927\"* down|strong=\"H3381\"* Yahweh|strong=\"H3068\"*’s ark and|strong=\"H3068\"* the|strong=\"H3068\"* box that|strong=\"H3117\"* was|strong=\"H3068\"* with|strong=\"H3068\"* it|strong=\"H7760\"*, in|strong=\"H3068\"* which|strong=\"H1931\"* the|strong=\"H3068\"* jewels|strong=\"H3627\"* of|strong=\"H3068\"* gold|strong=\"H2091\"* were|strong=\"H3881\"*, and|strong=\"H3068\"* put|strong=\"H7760\"* them|strong=\"H3381\"* on|strong=\"H3117\"* the|strong=\"H3068\"* great|strong=\"H1419\"* stone; and|strong=\"H3068\"* the|strong=\"H3068\"* men|strong=\"H1419\"* of|strong=\"H3068\"* Beth Shemesh offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* and|strong=\"H3068\"* sacrificed|strong=\"H2076\"* sacrifices|strong=\"H2077\"* the|strong=\"H3068\"* same|strong=\"H1931\"* day|strong=\"H3117\"* to|strong=\"H3381\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H3117\"* the|strong=\"H7200\"* five|strong=\"H2568\"* lords|strong=\"H5633\"* of|strong=\"H3117\"* the|strong=\"H7200\"* Philistines|strong=\"H6430\"* had|strong=\"H6430\"* seen|strong=\"H7200\"* it|strong=\"H1931\"*, they|strong=\"H3117\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Ekron|strong=\"H6138\"* the|strong=\"H7200\"* same|strong=\"H1931\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 17, + "text": "These are|strong=\"H3068\"* the|strong=\"H3068\"* golden|strong=\"H2091\"* tumors|strong=\"H2914\"* which|strong=\"H3068\"* the|strong=\"H3068\"* Philistines|strong=\"H6430\"* returned|strong=\"H7725\"* for|strong=\"H3068\"* a|strong=\"H3068\"* trespass offering|strong=\"H3068\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*: for|strong=\"H3068\"* Ashdod one|strong=\"H3068\"*, for|strong=\"H3068\"* Gaza|strong=\"H5804\"* one|strong=\"H3068\"*, for|strong=\"H3068\"* Ashkelon one|strong=\"H3068\"*, for|strong=\"H3068\"* Gath|strong=\"H1661\"* one|strong=\"H3068\"*, for|strong=\"H3068\"* Ekron|strong=\"H6138\"* one|strong=\"H3068\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H3068\"* the|strong=\"H3605\"* golden|strong=\"H2091\"* mice|strong=\"H5909\"*, according|strong=\"H5921\"* to|strong=\"H5704\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* belonging to|strong=\"H5704\"* the|strong=\"H3605\"* five|strong=\"H2568\"* lords|strong=\"H5633\"*, both|strong=\"H3605\"* of|strong=\"H3068\"* fortified|strong=\"H4013\"* cities|strong=\"H5892\"* and|strong=\"H3068\"* of|strong=\"H3068\"* country|strong=\"H7704\"* villages|strong=\"H3724\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* great|strong=\"H1419\"* stone on|strong=\"H5921\"* which|strong=\"H3068\"* they|strong=\"H3117\"* set|strong=\"H3240\"* down|strong=\"H3240\"* Yahweh|strong=\"H3068\"*’s ark. That|strong=\"H3605\"* stone remains to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H3605\"* field|strong=\"H7704\"* of|strong=\"H3068\"* Joshua|strong=\"H3091\"* of|strong=\"H3068\"* Beth Shemesh." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3588\"* struck|strong=\"H5221\"* of|strong=\"H3068\"* the|strong=\"H7200\"* men|strong=\"H1419\"* of|strong=\"H3068\"* Beth Shemesh, because|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* looked|strong=\"H7200\"* into|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s ark, he|strong=\"H3588\"* struck|strong=\"H5221\"* fifty|strong=\"H2572\"* thousand seventy|strong=\"H7657\"* of|strong=\"H3068\"* the|strong=\"H7200\"* men|strong=\"H1419\"*. Then|strong=\"H3588\"* the|strong=\"H7200\"* people|strong=\"H5971\"* mourned|strong=\"H7657\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* struck|strong=\"H5221\"* the|strong=\"H7200\"* people|strong=\"H5971\"* with|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* slaughter|strong=\"H4347\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H6440\"* men of|strong=\"H3068\"* Beth Shemesh said, “Who|strong=\"H4310\"* is|strong=\"H3068\"* able|strong=\"H3201\"* to|strong=\"H3201\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, this|strong=\"H2088\"* holy|strong=\"H6918\"* God|strong=\"H3068\"*? To|strong=\"H3201\"* whom|strong=\"H4310\"* shall|strong=\"H3068\"* he|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H6440\"* us|strong=\"H5921\"*?”" + }, + { + "verseNum": 21, + "text": "They|strong=\"H3068\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7725\"* the|strong=\"H3068\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Kiriath|strong=\"H7157\"* Jearim, saying, “The|strong=\"H3068\"* Philistines|strong=\"H6430\"* have|strong=\"H3068\"* brought|strong=\"H5927\"* back|strong=\"H7725\"* Yahweh|strong=\"H3068\"*’s ark. Come|strong=\"H5927\"* down|strong=\"H3381\"* and|strong=\"H3068\"* bring|strong=\"H7725\"* it|strong=\"H7725\"* up|strong=\"H5927\"* to|strong=\"H7725\"* yourselves|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H8104\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Kiriath|strong=\"H7157\"* Jearim came|strong=\"H5927\"* and|strong=\"H1121\"* took|strong=\"H5927\"* Yahweh|strong=\"H3068\"*’s ark, and|strong=\"H1121\"* brought|strong=\"H5927\"* it|strong=\"H5927\"* into|strong=\"H5927\"* Abinadab’s house|strong=\"H1004\"* on|strong=\"H3068\"* the|strong=\"H8104\"* hill|strong=\"H1389\"*, and|strong=\"H1121\"* consecrated|strong=\"H6942\"* Eleazar his|strong=\"H8104\"* son|strong=\"H1121\"* to|strong=\"H3068\"* keep|strong=\"H8104\"* Yahweh|strong=\"H3068\"*’s ark." + }, + { + "verseNum": 2, + "text": "From|strong=\"H3478\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3605\"* the|strong=\"H3605\"* ark stayed|strong=\"H3427\"* in|strong=\"H3427\"* Kiriath|strong=\"H7157\"* Jearim, the|strong=\"H3605\"* time|strong=\"H3117\"* was|strong=\"H3068\"* long|strong=\"H3117\"*—for|strong=\"H3068\"* it|strong=\"H1961\"* was|strong=\"H3068\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"*; and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* lamented|strong=\"H5091\"* after|strong=\"H1961\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "Samuel|strong=\"H8050\"* spoke to|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, saying, “If you|strong=\"H3605\"* are|strong=\"H3478\"* returning|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* with|strong=\"H1004\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*, then|strong=\"H7725\"* put|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H3605\"* foreign|strong=\"H5236\"* gods and|strong=\"H3478\"* the|strong=\"H3605\"* Ashtaroth|strong=\"H6252\"* from|strong=\"H7725\"* among|strong=\"H8432\"* you|strong=\"H3605\"*, and|strong=\"H3478\"* direct|strong=\"H3559\"* your|strong=\"H3068\"* hearts|strong=\"H3824\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3478\"* serve|strong=\"H5647\"* him|strong=\"H3027\"* only|strong=\"H3605\"*; and|strong=\"H3478\"* he|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5337\"* you|strong=\"H3605\"* out|strong=\"H5337\"* of|strong=\"H1004\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*.”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H3068\"* the|strong=\"H5647\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* removed|strong=\"H5493\"* the|strong=\"H5647\"* Baals|strong=\"H1168\"* and|strong=\"H1121\"* the|strong=\"H5647\"* Ashtaroth|strong=\"H6252\"*, and|strong=\"H1121\"* served|strong=\"H5647\"* Yahweh|strong=\"H3068\"* only." + }, + { + "verseNum": 5, + "text": "Samuel|strong=\"H8050\"* said, “Gather|strong=\"H6908\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* Mizpah|strong=\"H4709\"*, and|strong=\"H3478\"* I|strong=\"H3478\"* will|strong=\"H3068\"* pray|strong=\"H6419\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* for|strong=\"H1157\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 6, + "text": "They|strong=\"H3117\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* to|strong=\"H3478\"* Mizpah|strong=\"H4709\"*, and|strong=\"H1121\"* drew|strong=\"H7579\"* water|strong=\"H4325\"*, and|strong=\"H1121\"* poured|strong=\"H8210\"* it|strong=\"H1931\"* out|strong=\"H8210\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* fasted|strong=\"H6684\"* on|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, and|strong=\"H1121\"* said there|strong=\"H8033\"*, “We|strong=\"H3117\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H6440\"* Yahweh|strong=\"H3068\"*.” Samuel|strong=\"H8050\"* judged|strong=\"H8199\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* Mizpah|strong=\"H4709\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H3588\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* at|strong=\"H3478\"* Mizpah|strong=\"H4709\"*, the|strong=\"H6440\"* lords|strong=\"H5633\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"* went|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H6440\"* Israel|strong=\"H3478\"*. When|strong=\"H3588\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* heard|strong=\"H8085\"* it|strong=\"H3588\"*, they|strong=\"H3588\"* were|strong=\"H3478\"* afraid|strong=\"H3372\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said|strong=\"H2790\"* to|strong=\"H3478\"* Samuel|strong=\"H8050\"*, “Don’t stop crying|strong=\"H2199\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* for|strong=\"H3027\"* us|strong=\"H3027\"*, that|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* save|strong=\"H3467\"* us|strong=\"H3027\"* out|strong=\"H2199\"* of|strong=\"H1121\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3068\"* Philistines|strong=\"H6430\"*.”" + }, + { + "verseNum": 9, + "text": "Samuel|strong=\"H8050\"* took|strong=\"H3947\"* a|strong=\"H3068\"* suckling|strong=\"H2461\"* lamb|strong=\"H2924\"*, and|strong=\"H3478\"* offered|strong=\"H5927\"* it|strong=\"H5927\"* for|strong=\"H1157\"* a|strong=\"H3068\"* whole|strong=\"H3632\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*. Samuel|strong=\"H8050\"* cried|strong=\"H2199\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* for|strong=\"H1157\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* Yahweh|strong=\"H3068\"* answered|strong=\"H6030\"* him|strong=\"H3947\"*." + }, + { + "verseNum": 10, + "text": "As|strong=\"H3117\"* Samuel|strong=\"H8050\"* was|strong=\"H3068\"* offering|strong=\"H5930\"* up|strong=\"H5927\"* the|strong=\"H6440\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, the|strong=\"H6440\"* Philistines|strong=\"H6430\"* came|strong=\"H1961\"* near|strong=\"H5066\"* to|strong=\"H3478\"* battle|strong=\"H4421\"* against|strong=\"H5921\"* Israel|strong=\"H3478\"*; but|strong=\"H1961\"* Yahweh|strong=\"H3068\"* thundered|strong=\"H7481\"* with|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* thunder|strong=\"H6963\"* on|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* on|strong=\"H5921\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"* and|strong=\"H3478\"* confused|strong=\"H2000\"* them|strong=\"H5921\"*; and|strong=\"H3478\"* they|strong=\"H3117\"* were|strong=\"H3478\"* struck|strong=\"H5062\"* down|strong=\"H5062\"* before|strong=\"H6440\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5221\"* men|strong=\"H3478\"* of|strong=\"H4480\"* Israel|strong=\"H3478\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4480\"* Mizpah|strong=\"H4709\"* and|strong=\"H3478\"* pursued|strong=\"H7291\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"*, and|strong=\"H3478\"* struck|strong=\"H5221\"* them|strong=\"H5221\"* until|strong=\"H5704\"* they|strong=\"H5704\"* came|strong=\"H3318\"* under|strong=\"H8478\"* Beth Kar." + }, + { + "verseNum": 12, + "text": "Then|strong=\"H3947\"* Samuel|strong=\"H8050\"* took|strong=\"H3947\"* a|strong=\"H3068\"* stone and|strong=\"H3068\"* set|strong=\"H7760\"* it|strong=\"H7760\"* between|strong=\"H5704\"* Mizpah|strong=\"H4709\"* and|strong=\"H3068\"* Shen|strong=\"H8129\"*, and|strong=\"H3068\"* called|strong=\"H7121\"* its|strong=\"H7760\"* name|strong=\"H8034\"* Ebenezer,+ 7:12 “Ebenezer” means “stone of help”.* saying, “Yahweh|strong=\"H3068\"* helped|strong=\"H5826\"* us|strong=\"H7760\"* until|strong=\"H5704\"* now|strong=\"H2008\"*.”" + }, + { + "verseNum": 13, + "text": "So|strong=\"H1961\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* were|strong=\"H3478\"* subdued|strong=\"H3665\"*, and|strong=\"H3478\"* they|strong=\"H3117\"* stopped|strong=\"H6430\"* coming within|strong=\"H5750\"* the|strong=\"H3605\"* border|strong=\"H1366\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*. Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* against|strong=\"H3027\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* Samuel|strong=\"H8050\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3947\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* the|strong=\"H3947\"* Philistines|strong=\"H6430\"* had|strong=\"H1961\"* taken|strong=\"H3947\"* from|strong=\"H7725\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* restored|strong=\"H7725\"* to|strong=\"H5704\"* Israel|strong=\"H3478\"*, from|strong=\"H7725\"* Ekron|strong=\"H6138\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Gath|strong=\"H1661\"*; and|strong=\"H3478\"* Israel|strong=\"H3478\"* recovered|strong=\"H7725\"* its|strong=\"H7725\"* border|strong=\"H1366\"* out|strong=\"H3947\"* of|strong=\"H3027\"* the|strong=\"H3947\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3947\"* Philistines|strong=\"H6430\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* peace|strong=\"H7965\"* between|strong=\"H7965\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* the|strong=\"H3947\"* Amorites." + }, + { + "verseNum": 15, + "text": "Samuel|strong=\"H8050\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H3605\"* life|strong=\"H2416\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H3605\"* went|strong=\"H1980\"* from|strong=\"H3478\"* year|strong=\"H8141\"* to|strong=\"H1980\"* year|strong=\"H8141\"* in|strong=\"H8141\"* a|strong=\"H3068\"* circuit|strong=\"H5437\"* to|strong=\"H1980\"* Bethel|strong=\"H1008\"*, Gilgal|strong=\"H1537\"*, and|strong=\"H1980\"* Mizpah|strong=\"H4709\"*; and|strong=\"H1980\"* he|strong=\"H3605\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* all|strong=\"H3605\"* those|strong=\"H3605\"* places|strong=\"H4725\"*." + }, + { + "verseNum": 17, + "text": "His|strong=\"H3068\"* return|strong=\"H8666\"* was|strong=\"H3068\"* to|strong=\"H3478\"* Ramah|strong=\"H7414\"*, for|strong=\"H3588\"* his|strong=\"H3068\"* house|strong=\"H1004\"* was|strong=\"H3068\"* there|strong=\"H8033\"*, and|strong=\"H3478\"* he|strong=\"H3588\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* there|strong=\"H8033\"*; and|strong=\"H3478\"* he|strong=\"H3588\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* there|strong=\"H8033\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* Samuel|strong=\"H8050\"* was|strong=\"H1961\"* old|strong=\"H1121\"*, he|strong=\"H3478\"* made|strong=\"H7760\"* his|strong=\"H7760\"* sons|strong=\"H1121\"* judges|strong=\"H8199\"* over|strong=\"H8199\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"H1961\"* the|strong=\"H8199\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H1961\"* firstborn|strong=\"H1060\"* was|strong=\"H8034\"* Joel|strong=\"H3100\"*, and|strong=\"H1121\"* the|strong=\"H8199\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H1961\"* second|strong=\"H4932\"*, Abijah. They|strong=\"H8034\"* were|strong=\"H1961\"* judges|strong=\"H8199\"* in|strong=\"H1121\"* Beersheba." + }, + { + "verseNum": 3, + "text": "His|strong=\"H3947\"* sons|strong=\"H1121\"* didn’t walk|strong=\"H1980\"* in|strong=\"H1980\"* his|strong=\"H3947\"* ways|strong=\"H1870\"*, but|strong=\"H3808\"* turned|strong=\"H5186\"* away|strong=\"H3947\"* after|strong=\"H1980\"* dishonest|strong=\"H1215\"* gain|strong=\"H1215\"*, took|strong=\"H3947\"* bribes|strong=\"H7810\"*, and|strong=\"H1121\"* perverted|strong=\"H5186\"* justice|strong=\"H4941\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H6908\"* all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H2205\"* Israel|strong=\"H3478\"* gathered|strong=\"H6908\"* themselves|strong=\"H6908\"* together|strong=\"H6908\"* and|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* Samuel|strong=\"H8050\"* to|strong=\"H3478\"* Ramah|strong=\"H7414\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3808\"* said to|strong=\"H1980\"* him|strong=\"H7760\"*, “Behold|strong=\"H2009\"*, you|strong=\"H3605\"* are|strong=\"H1121\"* old|strong=\"H1121\"*, and|strong=\"H1121\"* your|strong=\"H3605\"* sons|strong=\"H1121\"* don’t walk|strong=\"H1980\"* in|strong=\"H1980\"* your|strong=\"H3605\"* ways|strong=\"H1870\"*. Now|strong=\"H6258\"* make|strong=\"H7760\"* us|strong=\"H7760\"* a|strong=\"H3068\"* king|strong=\"H4428\"* to|strong=\"H1980\"* judge|strong=\"H8199\"* us|strong=\"H7760\"* like|strong=\"H1870\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*.”" + }, + { + "verseNum": 6, + "text": "But|strong=\"H3068\"* the|strong=\"H5414\"* thing|strong=\"H1697\"* displeased|strong=\"H7489\"* Samuel|strong=\"H8050\"* when|strong=\"H3068\"* they|strong=\"H3068\"* said|strong=\"H1697\"*, “Give|strong=\"H5414\"* us|strong=\"H5414\"* a|strong=\"H3068\"* king|strong=\"H4428\"* to|strong=\"H3068\"* judge|strong=\"H8199\"* us|strong=\"H5414\"*.”" + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H8085\"* to|strong=\"H3068\"* Samuel|strong=\"H8050\"*, “Listen|strong=\"H8085\"* to|strong=\"H3068\"* the|strong=\"H3605\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"* in|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3588\"* they|strong=\"H3588\"* tell|strong=\"H8085\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* rejected|strong=\"H3988\"* you|strong=\"H3588\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3068\"* rejected|strong=\"H3988\"* me|strong=\"H5921\"* as|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4427\"* over|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "According to|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* works|strong=\"H4639\"* which|strong=\"H1992\"* they|strong=\"H1992\"* have|strong=\"H1571\"* done|strong=\"H6213\"* since|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3605\"* I|strong=\"H3117\"* brought|strong=\"H5927\"* them|strong=\"H1992\"* up|strong=\"H5927\"* out|strong=\"H6213\"* of|strong=\"H3117\"* Egypt|strong=\"H4714\"* even|strong=\"H1571\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, in|strong=\"H6213\"* that|strong=\"H3605\"* they|strong=\"H1992\"* have|strong=\"H1571\"* forsaken|strong=\"H5800\"* me|strong=\"H6213\"* and|strong=\"H3117\"* served|strong=\"H5647\"* other|strong=\"H2088\"* gods, so|strong=\"H3651\"* they|strong=\"H1992\"* also|strong=\"H1571\"* do|strong=\"H6213\"* to|strong=\"H5704\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 9, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, listen|strong=\"H8085\"* to|strong=\"H5921\"* their|strong=\"H8085\"* voice|strong=\"H6963\"*. However|strong=\"H8085\"*, you|strong=\"H3588\"* shall|strong=\"H4428\"* protest|strong=\"H5749\"* solemnly|strong=\"H5749\"* to|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H4428\"* shall|strong=\"H4428\"* show|strong=\"H5046\"* them|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H4941\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* who|strong=\"H4428\"* will|strong=\"H4428\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* them|strong=\"H5921\"*.”" + }, + { + "verseNum": 10, + "text": "Samuel|strong=\"H8050\"* told|strong=\"H1697\"* all|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"* to|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* asked|strong=\"H7592\"* him|strong=\"H3605\"* for|strong=\"H3068\"* a|strong=\"H3068\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H5921\"* said, “This|strong=\"H2088\"* will|strong=\"H1961\"* be|strong=\"H1961\"* the|strong=\"H6440\"* way|strong=\"H4941\"* of|strong=\"H1121\"* the|strong=\"H6440\"* king|strong=\"H4428\"* who|strong=\"H1121\"* shall|strong=\"H1121\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* you|strong=\"H6440\"*: he|strong=\"H5921\"* will|strong=\"H1961\"* take|strong=\"H3947\"* your|strong=\"H5921\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* appoint|strong=\"H7760\"* them|strong=\"H5921\"* as|strong=\"H1961\"* his|strong=\"H7760\"* servants|strong=\"H6440\"*, for|strong=\"H5921\"* his|strong=\"H7760\"* chariots|strong=\"H4818\"* and|strong=\"H1121\"* to|strong=\"H1961\"* be|strong=\"H1961\"* his|strong=\"H7760\"* horsemen|strong=\"H6571\"*; and|strong=\"H1121\"* they|strong=\"H5921\"* will|strong=\"H1961\"* run|strong=\"H7323\"* before|strong=\"H6440\"* his|strong=\"H7760\"* chariots|strong=\"H4818\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H6213\"* will|strong=\"H8269\"* appoint|strong=\"H7760\"* them|strong=\"H6213\"* to|strong=\"H6213\"* him|strong=\"H6213\"* for|strong=\"H6213\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* thousands and|strong=\"H2572\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* fifties|strong=\"H2572\"*; and|strong=\"H2572\"* he|strong=\"H6213\"* will|strong=\"H8269\"* assign|strong=\"H7760\"* some to|strong=\"H6213\"* plow|strong=\"H2790\"* his|strong=\"H7760\"* ground|strong=\"H2758\"* and|strong=\"H2572\"* to|strong=\"H6213\"* reap|strong=\"H7114\"* his|strong=\"H7760\"* harvest|strong=\"H7105\"*; and|strong=\"H2572\"* to|strong=\"H6213\"* make|strong=\"H6213\"* his|strong=\"H7760\"* instruments|strong=\"H3627\"* of|strong=\"H8269\"* war|strong=\"H4421\"* and|strong=\"H2572\"* the|strong=\"H6213\"* instruments|strong=\"H3627\"* of|strong=\"H8269\"* his|strong=\"H7760\"* chariots|strong=\"H7393\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3947\"* will|strong=\"H1323\"* take|strong=\"H3947\"* your|strong=\"H3947\"* daughters|strong=\"H1323\"* to|strong=\"H1323\"* be perfumers|strong=\"H7548\"*, to|strong=\"H1323\"* be cooks|strong=\"H2879\"*, and|strong=\"H1323\"* to|strong=\"H1323\"* be bakers." + }, + { + "verseNum": 14, + "text": "He|strong=\"H5414\"* will|strong=\"H5650\"* take|strong=\"H3947\"* your|strong=\"H5414\"* fields|strong=\"H7704\"*, your|strong=\"H5414\"* vineyards|strong=\"H3754\"*, and|strong=\"H5650\"* your|strong=\"H5414\"* olive|strong=\"H2132\"* groves|strong=\"H2132\"*, even your|strong=\"H5414\"* best|strong=\"H2896\"*, and|strong=\"H5650\"* give|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5414\"* his|strong=\"H5414\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H5414\"* will|strong=\"H5650\"* take|strong=\"H5414\"* one|strong=\"H2233\"* tenth|strong=\"H6237\"* of|strong=\"H5650\"* your|strong=\"H5414\"* seed|strong=\"H2233\"* and|strong=\"H5650\"* of|strong=\"H5650\"* your|strong=\"H5414\"* vineyards|strong=\"H3754\"*, and|strong=\"H5650\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* his|strong=\"H5414\"* officers|strong=\"H5631\"* and|strong=\"H5650\"* to|strong=\"H5414\"* his|strong=\"H5414\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H6213\"* will|strong=\"H5650\"* take|strong=\"H3947\"* your|strong=\"H3947\"* male|strong=\"H5650\"* servants|strong=\"H5650\"*, your|strong=\"H3947\"* female|strong=\"H8198\"* servants|strong=\"H5650\"*, your|strong=\"H3947\"* best|strong=\"H2896\"* young|strong=\"H2896\"* men|strong=\"H5650\"*, and|strong=\"H5650\"* your|strong=\"H3947\"* donkeys|strong=\"H2543\"*, and|strong=\"H5650\"* assign them|strong=\"H6213\"* to|strong=\"H6213\"* his|strong=\"H3947\"* own work|strong=\"H4399\"*." + }, + { + "verseNum": 17, + "text": "He will|strong=\"H1961\"* take|strong=\"H1961\"* one|strong=\"H1961\"* tenth|strong=\"H6237\"* of|strong=\"H5650\"* your|strong=\"H1961\"* flocks|strong=\"H6629\"*; and|strong=\"H5650\"* you|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* his|strong=\"H1961\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H6440\"* will|strong=\"H3068\"* cry|strong=\"H2199\"* out|strong=\"H2199\"* in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"* because|strong=\"H6440\"* of|strong=\"H4428\"* your|strong=\"H3068\"* king|strong=\"H4428\"* whom|strong=\"H6440\"* you|strong=\"H6440\"* will|strong=\"H3068\"* have|strong=\"H3068\"* chosen for|strong=\"H6440\"* yourselves|strong=\"H3068\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* answer|strong=\"H6030\"* you|strong=\"H6440\"* in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*.”" + }, + { + "verseNum": 19, + "text": "But|strong=\"H3588\"* the|strong=\"H5921\"* people|strong=\"H5971\"* refused|strong=\"H3985\"* to|strong=\"H1961\"* listen|strong=\"H8085\"* to|strong=\"H1961\"* the|strong=\"H5921\"* voice|strong=\"H6963\"* of|strong=\"H4428\"* Samuel|strong=\"H8050\"*; and|strong=\"H4428\"* they|strong=\"H3588\"* said|strong=\"H8085\"*, “No|strong=\"H3808\"*, but|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H1961\"* have|strong=\"H1961\"* a|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* us|strong=\"H5921\"*," + }, + { + "verseNum": 20, + "text": "that|strong=\"H3605\"* we|strong=\"H3068\"* also|strong=\"H1571\"* may|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*; and|strong=\"H4428\"* that|strong=\"H3605\"* our|strong=\"H3605\"* king|strong=\"H4428\"* may|strong=\"H1961\"* judge|strong=\"H8199\"* us|strong=\"H6440\"*, and|strong=\"H4428\"* go|strong=\"H3318\"* out|strong=\"H3318\"* before|strong=\"H6440\"* us|strong=\"H6440\"*, and|strong=\"H4428\"* fight|strong=\"H3898\"* our|strong=\"H3605\"* battles|strong=\"H4421\"*.”" + }, + { + "verseNum": 21, + "text": "Samuel|strong=\"H8050\"* heard|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* rehearsed|strong=\"H1696\"* them|strong=\"H8085\"* in|strong=\"H3068\"* the|strong=\"H3605\"* ears of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H8085\"* to|strong=\"H3478\"* Samuel|strong=\"H8050\"*, “Listen|strong=\"H8085\"* to|strong=\"H3478\"* their|strong=\"H3068\"* voice|strong=\"H6963\"*, and|strong=\"H3478\"* make|strong=\"H4427\"* them|strong=\"H8085\"* a|strong=\"H3068\"* king|strong=\"H4428\"*.”" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H8034\"* a|strong=\"H3068\"* man|strong=\"H1368\"* of|strong=\"H1121\"* Benjamin, whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Kish|strong=\"H7027\"* the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abiel, the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeror|strong=\"H6872\"*, the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Becorath|strong=\"H1064\"*, the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aphiah, the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* Benjamite|strong=\"H1121\"*, a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3605\"* had|strong=\"H1961\"* a|strong=\"H3068\"* son|strong=\"H1121\"* whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Saul|strong=\"H7586\"*, an|strong=\"H1961\"* impressive|strong=\"H2896\"* young|strong=\"H1121\"* man|strong=\"H1121\"*; and|strong=\"H1121\"* there|strong=\"H1961\"* was|strong=\"H8034\"* not|strong=\"H1961\"* among|strong=\"H4480\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* a|strong=\"H3068\"* more|strong=\"H4480\"* handsome|strong=\"H2896\"* person than|strong=\"H4480\"* he|strong=\"H3605\"*. From|strong=\"H4480\"* his|strong=\"H3605\"* shoulders|strong=\"H7926\"* and|strong=\"H1121\"* upward|strong=\"H4605\"* he|strong=\"H3605\"* was|strong=\"H8034\"* taller|strong=\"H1364\"* than|strong=\"H4480\"* any|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3947\"* donkeys of|strong=\"H1121\"* Kish|strong=\"H7027\"*, Saul|strong=\"H7586\"*’s father|strong=\"H1121\"*, were|strong=\"H1121\"* lost. Kish|strong=\"H7027\"* said to|strong=\"H3212\"* Saul|strong=\"H7586\"* his|strong=\"H3947\"* son|strong=\"H1121\"*, “Now|strong=\"H4994\"* take|strong=\"H3947\"* one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3947\"* servants|strong=\"H5288\"* with|strong=\"H3212\"* you|strong=\"H3947\"*, and|strong=\"H1121\"* arise|strong=\"H6965\"*, go|strong=\"H3212\"* look|strong=\"H1245\"* for|strong=\"H1121\"* the|strong=\"H3947\"* donkeys.”" + }, + { + "verseNum": 4, + "text": "He|strong=\"H3808\"* passed|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5674\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim, and|strong=\"H2022\"* passed|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5674\"* land of|strong=\"H2022\"* Shalishah|strong=\"H8031\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* didn’t find|strong=\"H4672\"* them|strong=\"H5674\"*. Then|strong=\"H5674\"* they|strong=\"H3808\"* passed|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5674\"* land of|strong=\"H2022\"* Shaalim|strong=\"H8171\"*, and|strong=\"H2022\"* they|strong=\"H3808\"* weren’t there|strong=\"H4672\"*. Then|strong=\"H5674\"* he|strong=\"H3808\"* passed|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5674\"* land of|strong=\"H2022\"* the|strong=\"H5674\"* Benjamites, but|strong=\"H3808\"* they|strong=\"H3808\"* didn’t find|strong=\"H4672\"* them|strong=\"H5674\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H7725\"* they|strong=\"H1992\"* had|strong=\"H7586\"* come|strong=\"H3212\"* to|strong=\"H7725\"* the|strong=\"H4480\"* land of|strong=\"H4480\"* Zuph|strong=\"H6689\"*, Saul|strong=\"H7586\"* said to|strong=\"H7725\"* his|strong=\"H7725\"* servant|strong=\"H5288\"* who|strong=\"H1992\"* was|strong=\"H7586\"* with|strong=\"H5973\"* him|strong=\"H7725\"*, “Come|strong=\"H3212\"*! Let|strong=\"H2308\"*’s return|strong=\"H7725\"*, lest|strong=\"H6435\"* my|strong=\"H7725\"* father stop|strong=\"H2308\"* caring about|strong=\"H4480\"* the|strong=\"H4480\"* donkeys and|strong=\"H7725\"* be|strong=\"H7725\"* anxious|strong=\"H1672\"* for|strong=\"H4480\"* us|strong=\"H7725\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H3605\"* servant said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*, “Behold|strong=\"H2009\"* now|strong=\"H6258\"*, there|strong=\"H8033\"* is|strong=\"H1870\"* a|strong=\"H3068\"* man|strong=\"H3605\"* of|strong=\"H5892\"* God in|strong=\"H5921\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, and|strong=\"H1980\"* he|strong=\"H8033\"* is|strong=\"H1870\"* a|strong=\"H3068\"* man|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H1870\"* held|strong=\"H3513\"* in|strong=\"H5921\"* honor|strong=\"H3513\"*. All|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H8033\"* says|strong=\"H1696\"* surely|strong=\"H1980\"* happens. Now|strong=\"H6258\"* let|strong=\"H4994\"*’s go|strong=\"H1980\"* there|strong=\"H8033\"*. Perhaps he|strong=\"H8033\"* can|strong=\"H1980\"* tell|strong=\"H5046\"* us|strong=\"H4994\"* which|strong=\"H5892\"* way|strong=\"H1870\"* to|strong=\"H1696\"* go|strong=\"H1980\"*.”" + }, + { + "verseNum": 7, + "text": "Then|strong=\"H2009\"* Saul|strong=\"H7586\"* said to|strong=\"H3212\"* his|strong=\"H3588\"* servant|strong=\"H5288\"*, “But|strong=\"H3588\"* behold|strong=\"H2009\"*, if|strong=\"H3588\"* we|strong=\"H3068\"* go|strong=\"H3212\"*, what|strong=\"H4100\"* should|strong=\"H4100\"* we|strong=\"H3068\"* bring|strong=\"H3212\"* the|strong=\"H3588\"* man|strong=\"H5288\"*? For|strong=\"H3588\"* the|strong=\"H3588\"* bread|strong=\"H3899\"* is|strong=\"H4100\"* spent in|strong=\"H3212\"* our|strong=\"H3588\"* sacks|strong=\"H3627\"*, and|strong=\"H3212\"* there|strong=\"H2009\"* is|strong=\"H4100\"* not|strong=\"H3588\"* a|strong=\"H3068\"* present|strong=\"H8670\"* to|strong=\"H3212\"* bring|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3588\"* man|strong=\"H5288\"* of|strong=\"H3627\"* God. What|strong=\"H4100\"* do|strong=\"H4100\"* we|strong=\"H3068\"* have|strong=\"H5288\"*?”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H5414\"* servant|strong=\"H5288\"* answered|strong=\"H6030\"* Saul|strong=\"H7586\"* again|strong=\"H3254\"* and|strong=\"H6030\"* said|strong=\"H6030\"*, “Behold|strong=\"H2009\"*, I|strong=\"H5414\"* have|strong=\"H3027\"* in|strong=\"H4672\"* my|strong=\"H5414\"* hand|strong=\"H3027\"* the|strong=\"H5414\"* fourth|strong=\"H7253\"* part|strong=\"H7253\"* of|strong=\"H3027\"* a|strong=\"H3068\"* shekel|strong=\"H8255\"*+ 9:8 A shekel is about 10 grams or about 0.35 ounces, so 1/4 shekel would be a small coin of about 2.5 grams.* of|strong=\"H3027\"* silver|strong=\"H3701\"*. I|strong=\"H5414\"* will|strong=\"H3027\"* give|strong=\"H5414\"* that|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* man|strong=\"H5288\"* of|strong=\"H3027\"* God|strong=\"H5414\"*, to|strong=\"H5414\"* tell|strong=\"H5046\"* us|strong=\"H5414\"* our|strong=\"H5414\"* way|strong=\"H1870\"*.”" + }, + { + "verseNum": 9, + "text": "(In|strong=\"H3478\"* earlier times|strong=\"H3117\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, when|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H6440\"* went|strong=\"H3212\"* to|strong=\"H5704\"* inquire|strong=\"H1875\"* of|strong=\"H3117\"* God, he|strong=\"H3588\"* said|strong=\"H7121\"*, “Come|strong=\"H3212\"*! Let|strong=\"H3212\"*’s go|strong=\"H3212\"* to|strong=\"H5704\"* the|strong=\"H6440\"* seer|strong=\"H7203\"*;” for|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H3478\"* is|strong=\"H3117\"* now|strong=\"H3117\"* called|strong=\"H7121\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* was|strong=\"H3478\"* before|strong=\"H6440\"* called|strong=\"H7121\"* a|strong=\"H3068\"* seer|strong=\"H7203\"*.)" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H7586\"* Saul|strong=\"H7586\"* said|strong=\"H1697\"* to|strong=\"H3212\"* his|strong=\"H7586\"* servant|strong=\"H5288\"*, “Well|strong=\"H2896\"* said|strong=\"H1697\"*. Come|strong=\"H3212\"*! Let|strong=\"H3212\"*’s go|strong=\"H3212\"*.” So|strong=\"H1697\"* they|strong=\"H8033\"* went|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H1697\"* city|strong=\"H5892\"* where|strong=\"H8033\"* the|strong=\"H1697\"* man|strong=\"H5288\"* of|strong=\"H1697\"* God was|strong=\"H7586\"*." + }, + { + "verseNum": 11, + "text": "As|strong=\"H5927\"* they|strong=\"H1992\"* went|strong=\"H3318\"* up|strong=\"H5927\"* the|strong=\"H3318\"* ascent|strong=\"H4608\"* to|strong=\"H3318\"* the|strong=\"H3318\"* city|strong=\"H5892\"*, they|strong=\"H1992\"* found|strong=\"H4672\"* young|strong=\"H5291\"* maidens|strong=\"H5291\"* going|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* draw|strong=\"H7579\"* water|strong=\"H4325\"*, and|strong=\"H5892\"* said|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H1992\"*, “Is|strong=\"H3426\"* the|strong=\"H3318\"* seer|strong=\"H7203\"* here|strong=\"H2088\"*?”" + }, + { + "verseNum": 12, + "text": "They|strong=\"H3588\"* answered|strong=\"H6030\"* them|strong=\"H6440\"* and|strong=\"H6030\"* said|strong=\"H6030\"*, “He|strong=\"H3588\"* is|strong=\"H3426\"*. Behold|strong=\"H2009\"*, he|strong=\"H3588\"* is|strong=\"H3426\"* before|strong=\"H6440\"* you|strong=\"H3588\"*. Hurry|strong=\"H4116\"* now|strong=\"H6258\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3117\"* come|strong=\"H5971\"* today|strong=\"H3117\"* into|strong=\"H5892\"* the|strong=\"H6440\"* city|strong=\"H5892\"*; for|strong=\"H3588\"* the|strong=\"H6440\"* people|strong=\"H5971\"* have|strong=\"H3426\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* today|strong=\"H3117\"* in|strong=\"H3117\"* the|strong=\"H6440\"* high|strong=\"H1116\"* place|strong=\"H1116\"*." + }, + { + "verseNum": 13, + "text": "As|strong=\"H5704\"* soon|strong=\"H6258\"* as|strong=\"H5704\"* you|strong=\"H3588\"* have|strong=\"H5971\"* come|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H3588\"* city|strong=\"H5892\"*, you|strong=\"H3588\"* will|strong=\"H5971\"* immediately find|strong=\"H4672\"* him|strong=\"H7121\"* before|strong=\"H2962\"* he|strong=\"H1931\"* goes|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5704\"* the|strong=\"H3588\"* high|strong=\"H1116\"* place|strong=\"H1116\"* to|strong=\"H5704\"* eat; for|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* will|strong=\"H5971\"* not|strong=\"H3808\"* eat until|strong=\"H5704\"* he|strong=\"H1931\"* comes|strong=\"H5927\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* blesses|strong=\"H1288\"* the|strong=\"H3588\"* sacrifice|strong=\"H2077\"*. Afterwards those|strong=\"H1931\"* who|strong=\"H1931\"* are|strong=\"H3117\"* invited|strong=\"H7121\"* eat. Now|strong=\"H6258\"* therefore|strong=\"H3651\"* go|strong=\"H5927\"* up|strong=\"H5927\"*; for|strong=\"H3588\"* at|strong=\"H3117\"* this|strong=\"H3651\"* time|strong=\"H3117\"* you|strong=\"H3588\"* will|strong=\"H5971\"* find|strong=\"H4672\"* him|strong=\"H7121\"*.”" + }, + { + "verseNum": 14, + "text": "They|strong=\"H1992\"* went|strong=\"H3318\"* up|strong=\"H5927\"* to|strong=\"H3318\"* the|strong=\"H8432\"* city|strong=\"H5892\"*. As|strong=\"H5927\"* they|strong=\"H1992\"* came|strong=\"H3318\"* within|strong=\"H8432\"* the|strong=\"H8432\"* city|strong=\"H5892\"*, behold|strong=\"H2009\"*, Samuel|strong=\"H8050\"* came|strong=\"H3318\"* out|strong=\"H3318\"* toward|strong=\"H5927\"* them|strong=\"H1992\"* to|strong=\"H3318\"* go|strong=\"H3318\"* up|strong=\"H5927\"* to|strong=\"H3318\"* the|strong=\"H8432\"* high|strong=\"H1116\"* place|strong=\"H1116\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H3117\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* revealed|strong=\"H1540\"* to|strong=\"H3068\"* Samuel|strong=\"H8050\"* a|strong=\"H3068\"* day|strong=\"H3117\"* before|strong=\"H6440\"* Saul|strong=\"H7586\"* came|strong=\"H3068\"*, saying," + }, + { + "verseNum": 16, + "text": "“Tomorrow|strong=\"H4279\"* about|strong=\"H5921\"* this|strong=\"H7200\"* time|strong=\"H6256\"* I|strong=\"H3588\"* will|strong=\"H5971\"* send|strong=\"H7971\"* you|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H7200\"* out|strong=\"H7971\"* of|strong=\"H3027\"* the|strong=\"H5921\"* land of|strong=\"H3027\"* Benjamin|strong=\"H1144\"*, and|strong=\"H3478\"* you|strong=\"H3588\"* shall|strong=\"H5971\"* anoint|strong=\"H4886\"* him|strong=\"H5921\"* to|strong=\"H3478\"* be|strong=\"H3027\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* my|strong=\"H7200\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*. He|strong=\"H3588\"* will|strong=\"H5971\"* save|strong=\"H3467\"* my|strong=\"H7200\"* people|strong=\"H5971\"* out|strong=\"H7971\"* of|strong=\"H3027\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5971\"* looked|strong=\"H7200\"* upon|strong=\"H5921\"* my|strong=\"H7200\"* people|strong=\"H5971\"*, because|strong=\"H3588\"* their|strong=\"H7200\"* cry|strong=\"H6818\"* has|strong=\"H3478\"* come|strong=\"H4279\"* to|strong=\"H3478\"* me|strong=\"H7971\"*.”" + }, + { + "verseNum": 17, + "text": "When|strong=\"H7200\"* Samuel|strong=\"H8050\"* saw|strong=\"H7200\"* Saul|strong=\"H7586\"*, Yahweh|strong=\"H3068\"* said|strong=\"H6030\"* to|strong=\"H3068\"* him|strong=\"H7200\"*, “Behold|strong=\"H2009\"*, the|strong=\"H7200\"* man|strong=\"H2088\"* of|strong=\"H3068\"* whom|strong=\"H5971\"* I|strong=\"H2009\"* spoke|strong=\"H6030\"* to|strong=\"H3068\"* you|strong=\"H7200\"*! He|strong=\"H3068\"* will|strong=\"H3068\"* have|strong=\"H3068\"* authority over|strong=\"H3068\"* my|strong=\"H3068\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H2088\"* Saul|strong=\"H7586\"* approached|strong=\"H5066\"* Samuel|strong=\"H8050\"* in|strong=\"H1004\"* the|strong=\"H8432\"* gateway|strong=\"H8179\"*, and|strong=\"H1004\"* said, “Please|strong=\"H4994\"* tell|strong=\"H5046\"* me|strong=\"H4994\"* where|strong=\"H1004\"* the|strong=\"H8432\"* seer|strong=\"H7203\"*’s house|strong=\"H1004\"* is|strong=\"H2088\"*.”" + }, + { + "verseNum": 19, + "text": "Samuel|strong=\"H8050\"* answered|strong=\"H6030\"* Saul|strong=\"H7586\"* and|strong=\"H6030\"* said|strong=\"H6030\"*, “I|strong=\"H3117\"* am the|strong=\"H3605\"* seer|strong=\"H7203\"*. Go|strong=\"H5927\"* up|strong=\"H5927\"* before|strong=\"H6440\"* me|strong=\"H6440\"* to|strong=\"H7971\"* the|strong=\"H3605\"* high|strong=\"H1116\"* place|strong=\"H1116\"*, for|strong=\"H6440\"* you|strong=\"H6440\"* are|strong=\"H3117\"* to|strong=\"H7971\"* eat with|strong=\"H5973\"* me|strong=\"H6440\"* today|strong=\"H3117\"*. In|strong=\"H3117\"* the|strong=\"H3605\"* morning|strong=\"H1242\"* I|strong=\"H3117\"* will|strong=\"H3824\"* let|strong=\"H7971\"* you|strong=\"H6440\"* go|strong=\"H5927\"* and|strong=\"H6030\"* will|strong=\"H3824\"* tell|strong=\"H5046\"* you|strong=\"H6440\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3117\"* in|strong=\"H3117\"* your|strong=\"H3605\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 20, + "text": "As|strong=\"H3117\"* for|strong=\"H3588\"* your|strong=\"H3605\"* donkeys who|strong=\"H4310\"* were|strong=\"H3478\"* lost three|strong=\"H7969\"* days|strong=\"H3117\"* ago|strong=\"H3117\"*, don’t set|strong=\"H7760\"* your|strong=\"H3605\"* mind|strong=\"H3820\"* on|strong=\"H3117\"* them|strong=\"H7760\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3478\"* been|strong=\"H3808\"* found|strong=\"H4672\"*. For|strong=\"H3588\"* whom|strong=\"H4310\"* does|strong=\"H3808\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* desire|strong=\"H2532\"*? Is|strong=\"H3820\"* it|strong=\"H7760\"* not|strong=\"H3808\"* you|strong=\"H3588\"* and|strong=\"H3478\"* all|strong=\"H3605\"* your|strong=\"H3605\"* father’s house|strong=\"H1004\"*?”" + }, + { + "verseNum": 21, + "text": "Saul|strong=\"H7586\"* answered|strong=\"H6030\"*, “Am I|strong=\"H1697\"* not|strong=\"H3808\"* a|strong=\"H3068\"* Benjamite|strong=\"H1145\"*, of|strong=\"H1697\"* the|strong=\"H3605\"* smallest|strong=\"H6996\"* of|strong=\"H1697\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H1697\"* Israel|strong=\"H3478\"*? And|strong=\"H3478\"* my|strong=\"H3605\"* family|strong=\"H4940\"* the|strong=\"H3605\"* least|strong=\"H6996\"* of|strong=\"H1697\"* all|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H1697\"* the|strong=\"H3605\"* tribe|strong=\"H7626\"* of|strong=\"H1697\"* Benjamin|strong=\"H1144\"*? Why|strong=\"H4100\"* then|strong=\"H6030\"* do|strong=\"H4100\"* you|strong=\"H3605\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"* like|strong=\"H3478\"* this|strong=\"H2088\"*?”" + }, + { + "verseNum": 22, + "text": "Samuel|strong=\"H8050\"* took|strong=\"H3947\"* Saul|strong=\"H7586\"* and|strong=\"H7970\"* his|strong=\"H5414\"* servant|strong=\"H5288\"* and|strong=\"H7970\"* brought|strong=\"H3947\"* them|strong=\"H5414\"* into|strong=\"H3947\"* the|strong=\"H5414\"* guest room|strong=\"H4725\"*, and|strong=\"H7970\"* made|strong=\"H5414\"* them|strong=\"H5414\"* sit|strong=\"H5414\"* in|strong=\"H4725\"* the|strong=\"H5414\"* best|strong=\"H7218\"* place|strong=\"H4725\"* among|strong=\"H7218\"* those|strong=\"H1992\"* who|strong=\"H1992\"* were|strong=\"H1992\"* invited|strong=\"H7121\"*, who|strong=\"H1992\"* were|strong=\"H1992\"* about|strong=\"H3947\"* thirty|strong=\"H7970\"* persons." + }, + { + "verseNum": 23, + "text": "Samuel|strong=\"H8050\"* said to|strong=\"H5414\"* the|strong=\"H5414\"* cook|strong=\"H2876\"*, “Bring|strong=\"H5414\"* the|strong=\"H5414\"* portion|strong=\"H4490\"* which I|strong=\"H5414\"* gave|strong=\"H5414\"* you|strong=\"H5414\"*, of|strong=\"H7760\"* which I|strong=\"H5414\"* said to|strong=\"H5414\"* you|strong=\"H5414\"*, ‘Set|strong=\"H7760\"* it|strong=\"H5414\"* aside|strong=\"H5973\"*.’”" + }, + { + "verseNum": 24, + "text": "The|strong=\"H6440\"* cook|strong=\"H2876\"* took|strong=\"H7760\"* up|strong=\"H7311\"* the|strong=\"H6440\"* thigh|strong=\"H7785\"*, and|strong=\"H3117\"* that|strong=\"H3588\"* which|strong=\"H1931\"* was|strong=\"H7586\"* on|strong=\"H5921\"* it|strong=\"H7760\"*, and|strong=\"H3117\"* set|strong=\"H7760\"* it|strong=\"H7760\"* before|strong=\"H6440\"* Saul|strong=\"H7586\"*. Samuel|strong=\"H8050\"* said|strong=\"H7121\"*, “Behold|strong=\"H2009\"*, that|strong=\"H3588\"* which|strong=\"H1931\"* has|strong=\"H3117\"* been|strong=\"H5971\"* reserved|strong=\"H8104\"*! Set|strong=\"H7760\"* it|strong=\"H7760\"* before|strong=\"H6440\"* yourself|strong=\"H5921\"* and|strong=\"H3117\"* eat; because|strong=\"H3588\"* it|strong=\"H7760\"* has|strong=\"H3117\"* been|strong=\"H5971\"* kept|strong=\"H8104\"* for|strong=\"H3588\"* you|strong=\"H3588\"* for|strong=\"H3588\"* the|strong=\"H6440\"* appointed|strong=\"H4150\"* time|strong=\"H3117\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* said|strong=\"H7121\"*, ‘I|strong=\"H3588\"* have|strong=\"H5971\"* invited|strong=\"H7121\"* the|strong=\"H6440\"* people|strong=\"H5971\"*.’” So|strong=\"H7121\"* Saul|strong=\"H7586\"* ate with|strong=\"H5973\"* Samuel|strong=\"H8050\"* that|strong=\"H3588\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 25, + "text": "When|strong=\"H1696\"* they|strong=\"H5921\"* had|strong=\"H7586\"* come|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H3381\"* the|strong=\"H5921\"* high|strong=\"H1116\"* place|strong=\"H1116\"* into|strong=\"H3381\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, he|strong=\"H5921\"* talked|strong=\"H1696\"* with|strong=\"H5973\"* Saul|strong=\"H7586\"* on|strong=\"H5921\"* the|strong=\"H5921\"* housetop|strong=\"H1406\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H1931\"* arose|strong=\"H6965\"* early|strong=\"H7925\"*; and|strong=\"H6965\"* about|strong=\"H1961\"* daybreak|strong=\"H7837\"*, Samuel|strong=\"H8050\"* called|strong=\"H7121\"* to|strong=\"H3318\"* Saul|strong=\"H7586\"* on|strong=\"H1961\"* the|strong=\"H7121\"* housetop|strong=\"H1406\"*, saying, “Get|strong=\"H6965\"* up|strong=\"H5927\"*, that|strong=\"H1931\"* I|strong=\"H6965\"* may|strong=\"H1961\"* send|strong=\"H7971\"* you|strong=\"H7971\"* away|strong=\"H7971\"*.” Saul|strong=\"H7586\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* they|strong=\"H1931\"* both|strong=\"H8147\"* went|strong=\"H3318\"* outside|strong=\"H2351\"*, he|strong=\"H1931\"* and|strong=\"H6965\"* Samuel|strong=\"H8050\"*, together|strong=\"H7121\"*." + }, + { + "verseNum": 27, + "text": "As|strong=\"H1697\"* they|strong=\"H1992\"* were|strong=\"H3117\"* going|strong=\"H5674\"* down|strong=\"H3381\"* at|strong=\"H3117\"* the|strong=\"H6440\"* end|strong=\"H7097\"* of|strong=\"H3117\"* the|strong=\"H6440\"* city|strong=\"H5892\"*, Samuel|strong=\"H8050\"* said|strong=\"H1697\"* to|strong=\"H3381\"* Saul|strong=\"H7586\"*, “Tell|strong=\"H8085\"* the|strong=\"H6440\"* servant|strong=\"H5288\"* to|strong=\"H3381\"* go|strong=\"H3381\"* on|strong=\"H3117\"* ahead|strong=\"H6440\"* of|strong=\"H3117\"* us|strong=\"H6440\"*.” He|strong=\"H3117\"* went|strong=\"H3381\"* ahead|strong=\"H6440\"*, then|strong=\"H5975\"* Samuel|strong=\"H8050\"* said|strong=\"H1697\"*, “But|strong=\"H1992\"* stand|strong=\"H5975\"* still|strong=\"H5975\"* first|strong=\"H3117\"*, that|strong=\"H3117\"* I|strong=\"H3117\"* may|strong=\"H3117\"* cause|strong=\"H1697\"* you|strong=\"H6440\"* to|strong=\"H3381\"* hear|strong=\"H8085\"* God’s message|strong=\"H1697\"*.”" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3947\"* Samuel|strong=\"H8050\"* took|strong=\"H3947\"* the|strong=\"H5921\"* vial|strong=\"H6378\"* of|strong=\"H3068\"* oil|strong=\"H8081\"* and|strong=\"H3068\"* poured|strong=\"H3332\"* it|strong=\"H5921\"* on|strong=\"H5921\"* his|strong=\"H3068\"* head|strong=\"H7218\"*, then|strong=\"H3947\"* kissed|strong=\"H5401\"* him|strong=\"H5921\"* and|strong=\"H3068\"* said, “Hasn’t Yahweh|strong=\"H3068\"* anointed|strong=\"H4886\"* you|strong=\"H3588\"* to|strong=\"H3068\"* be|strong=\"H3808\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* his|strong=\"H3068\"* inheritance|strong=\"H5159\"*?" + }, + { + "verseNum": 2, + "text": "When|strong=\"H3117\"* you|strong=\"H3117\"* have|strong=\"H1121\"* departed|strong=\"H1980\"* from|strong=\"H1980\"* me|strong=\"H5978\"* today|strong=\"H3117\"*, then|strong=\"H1980\"* you|strong=\"H3117\"* will|strong=\"H1121\"* find|strong=\"H4672\"* two|strong=\"H8147\"* men|strong=\"H1121\"* by|strong=\"H3117\"* Rachel|strong=\"H7354\"*’s tomb|strong=\"H6900\"*, on|strong=\"H3117\"* the|strong=\"H6213\"* border|strong=\"H1366\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* at|strong=\"H3117\"* Zelzah|strong=\"H6766\"*. They|strong=\"H3117\"* will|strong=\"H1121\"* tell you|strong=\"H3117\"*, ‘The|strong=\"H6213\"* donkeys which|strong=\"H1697\"* you|strong=\"H3117\"* went|strong=\"H1980\"* to|strong=\"H1980\"* look|strong=\"H2009\"* for|strong=\"H6213\"* have|strong=\"H1121\"* been found|strong=\"H4672\"*; and|strong=\"H1121\"* behold|strong=\"H2009\"*, your|strong=\"H6213\"* father|strong=\"H1121\"* has|strong=\"H3117\"* stopped caring about|strong=\"H1980\"* the|strong=\"H6213\"* donkeys and|strong=\"H1121\"* is|strong=\"H4100\"* anxious|strong=\"H1672\"* for|strong=\"H6213\"* you|strong=\"H3117\"*, saying|strong=\"H1697\"*, “What|strong=\"H4100\"* shall|strong=\"H1121\"* I|strong=\"H3117\"* do|strong=\"H6213\"* for|strong=\"H6213\"* my|strong=\"H1245\"* son|strong=\"H1121\"*?”’" + }, + { + "verseNum": 3, + "text": "“Then|strong=\"H5375\"* you|strong=\"H5704\"* will|strong=\"H5704\"* go|strong=\"H5927\"* on|strong=\"H5927\"* forward|strong=\"H1973\"* from|strong=\"H5927\"* there|strong=\"H8033\"*, and|strong=\"H3899\"* you|strong=\"H5704\"* will|strong=\"H5704\"* come|strong=\"H5927\"* to|strong=\"H5704\"* the|strong=\"H5375\"* oak of|strong=\"H3603\"* Tabor|strong=\"H8396\"*. Three|strong=\"H7969\"* men will|strong=\"H5704\"* meet|strong=\"H4672\"* you|strong=\"H5704\"* there|strong=\"H8033\"* going|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5704\"* God|strong=\"H1008\"* to|strong=\"H5704\"* Bethel|strong=\"H1008\"*: one|strong=\"H5375\"* carrying|strong=\"H5375\"* three|strong=\"H7969\"* young|strong=\"H1423\"* goats|strong=\"H1423\"*, and|strong=\"H3899\"* another carrying|strong=\"H5375\"* three|strong=\"H7969\"* loaves|strong=\"H3899\"* of|strong=\"H3603\"* bread|strong=\"H3899\"*, and|strong=\"H3899\"* another carrying|strong=\"H5375\"* a|strong=\"H3068\"* container of|strong=\"H3603\"* wine|strong=\"H3196\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H3027\"* will|strong=\"H3027\"* greet|strong=\"H7592\"* you|strong=\"H5414\"* and|strong=\"H3027\"* give|strong=\"H5414\"* you|strong=\"H5414\"* two|strong=\"H8147\"* loaves|strong=\"H3899\"* of|strong=\"H3027\"* bread|strong=\"H3899\"*, which|strong=\"H3899\"* you|strong=\"H5414\"* shall|strong=\"H3027\"* receive|strong=\"H3947\"* from|strong=\"H3027\"* their|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 5, + "text": "“After|strong=\"H1961\"* that|strong=\"H3651\"* you|strong=\"H6440\"* will|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H3381\"* the|strong=\"H6440\"* hill|strong=\"H1389\"* of|strong=\"H5892\"* God, where|strong=\"H8033\"* the|strong=\"H6440\"* garrison|strong=\"H5333\"* of|strong=\"H5892\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"* is|strong=\"H3651\"*; and|strong=\"H5892\"* it|strong=\"H3651\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, when|strong=\"H1961\"* you|strong=\"H6440\"* have|strong=\"H1961\"* come|strong=\"H1961\"* there|strong=\"H8033\"* to|strong=\"H3381\"* the|strong=\"H6440\"* city|strong=\"H5892\"*, that|strong=\"H3651\"* you|strong=\"H6440\"* will|strong=\"H1961\"* meet|strong=\"H6440\"* a|strong=\"H3068\"* band of|strong=\"H5892\"* prophets|strong=\"H5030\"* coming|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H6440\"* the|strong=\"H6440\"* high|strong=\"H1116\"* place|strong=\"H1116\"* with|strong=\"H3381\"* a|strong=\"H3068\"* lute, a|strong=\"H3068\"* tambourine|strong=\"H8596\"*, a|strong=\"H3068\"* pipe|strong=\"H2485\"*, and|strong=\"H5892\"* a|strong=\"H3068\"* harp|strong=\"H3658\"* before|strong=\"H6440\"* them|strong=\"H1992\"*; and|strong=\"H5892\"* they|strong=\"H1992\"* will|strong=\"H1961\"* be|strong=\"H1961\"* prophesying|strong=\"H5012\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* will|strong=\"H3068\"* come|strong=\"H6743\"* mightily|strong=\"H6743\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, then|strong=\"H3068\"* you|strong=\"H5921\"* will|strong=\"H3068\"* prophesy|strong=\"H5012\"* with|strong=\"H5973\"* them|strong=\"H5921\"* and|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* turned|strong=\"H2015\"* into|strong=\"H2015\"* another man." + }, + { + "verseNum": 7, + "text": "Let|strong=\"H1961\"* it|strong=\"H3588\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* these|strong=\"H6213\"* signs have|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1961\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* do|strong=\"H6213\"* what|strong=\"H6213\"* is|strong=\"H3027\"* appropriate|strong=\"H6213\"* for|strong=\"H3588\"* the|strong=\"H3588\"* occasion|strong=\"H4672\"*; for|strong=\"H3588\"* God|strong=\"H3027\"* is|strong=\"H3027\"* with|strong=\"H5973\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 8, + "text": "“Go|strong=\"H5927\"* down|strong=\"H3381\"* ahead|strong=\"H6440\"* of|strong=\"H3117\"* me|strong=\"H6440\"* to|strong=\"H5704\"* Gilgal|strong=\"H1537\"*; and|strong=\"H3117\"* behold|strong=\"H2009\"*, I|strong=\"H3117\"* will|strong=\"H3117\"* come|strong=\"H5927\"* down|strong=\"H3381\"* to|strong=\"H5704\"* you|strong=\"H6440\"* to|strong=\"H5704\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H3117\"* to|strong=\"H5704\"* sacrifice|strong=\"H2077\"* sacrifices|strong=\"H2077\"* of|strong=\"H3117\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*. Wait|strong=\"H3176\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, until|strong=\"H5704\"* I|strong=\"H3117\"* come|strong=\"H5927\"* to|strong=\"H5704\"* you|strong=\"H6440\"* and|strong=\"H3117\"* show|strong=\"H6213\"* you|strong=\"H6440\"* what|strong=\"H3045\"* you|strong=\"H6440\"* are|strong=\"H3117\"* to|strong=\"H5704\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 9, + "text": "It|strong=\"H1931\"* was|strong=\"H1961\"* so|strong=\"H1961\"*, that|strong=\"H3605\"* when|strong=\"H1961\"* he|strong=\"H1931\"* had|strong=\"H1961\"* turned|strong=\"H2015\"* his|strong=\"H3605\"* back|strong=\"H6437\"* to|strong=\"H3212\"* go|strong=\"H3212\"* from|strong=\"H3117\"* Samuel|strong=\"H8050\"*, God gave|strong=\"H2015\"* him|strong=\"H5973\"* another heart|strong=\"H3820\"*; and|strong=\"H3117\"* all|strong=\"H3605\"* those|strong=\"H3605\"* signs happened|strong=\"H1961\"* that|strong=\"H3605\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H5921\"* they|strong=\"H8033\"* came|strong=\"H6743\"* there|strong=\"H8033\"* to|strong=\"H5921\"* the|strong=\"H5921\"* hill|strong=\"H1389\"*, behold|strong=\"H2009\"*, a|strong=\"H3068\"* band of|strong=\"H7307\"* prophets|strong=\"H5030\"* met|strong=\"H7122\"* him|strong=\"H5921\"*; and|strong=\"H8033\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"* of|strong=\"H7307\"* God came|strong=\"H6743\"* mightily|strong=\"H6743\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H8033\"* he|strong=\"H8033\"* prophesied|strong=\"H5012\"* among|strong=\"H8432\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H1961\"* all|strong=\"H3605\"* who|strong=\"H3605\"* knew|strong=\"H3045\"* him|strong=\"H7200\"* before|strong=\"H5973\"* saw|strong=\"H7200\"* that|strong=\"H3045\"*, behold|strong=\"H2009\"*, he|strong=\"H3605\"* prophesied|strong=\"H5012\"* with|strong=\"H5973\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*, then|strong=\"H1961\"* the|strong=\"H3605\"* people|strong=\"H5971\"* said to|strong=\"H1961\"* one|strong=\"H2088\"* another|strong=\"H7453\"*, “What|strong=\"H4100\"* is|strong=\"H2088\"* this|strong=\"H2088\"* that|strong=\"H3045\"* has|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kish|strong=\"H7027\"*? Is|strong=\"H2088\"* Saul|strong=\"H7586\"* also|strong=\"H1571\"* among|strong=\"H5973\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*?”" + }, + { + "verseNum": 12, + "text": "One|strong=\"H1961\"* from|strong=\"H5921\"* the|strong=\"H5921\"* same|strong=\"H3651\"* place|strong=\"H1961\"* answered|strong=\"H6030\"*, “Who|strong=\"H4310\"* is|strong=\"H4310\"* their|strong=\"H5921\"* father?” Therefore|strong=\"H3651\"* it|strong=\"H5921\"* became|strong=\"H1961\"* a|strong=\"H3068\"* proverb|strong=\"H4912\"*, “Is|strong=\"H4310\"* Saul|strong=\"H7586\"* also|strong=\"H1571\"* among|strong=\"H5921\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"*?”" + }, + { + "verseNum": 13, + "text": "When|strong=\"H3615\"* he|strong=\"H1116\"* had finished|strong=\"H3615\"* prophesying|strong=\"H5012\"*, he|strong=\"H1116\"* came|strong=\"H3615\"* to|strong=\"H1116\"* the|strong=\"H3615\"* high|strong=\"H1116\"* place|strong=\"H1116\"*." + }, + { + "verseNum": 14, + "text": "Saul|strong=\"H7586\"*’s uncle|strong=\"H1730\"* said to|strong=\"H1980\"* him|strong=\"H7200\"* and|strong=\"H1980\"* to|strong=\"H1980\"* his|strong=\"H7200\"* servant|strong=\"H5288\"*, “Where did|strong=\"H7200\"* you|strong=\"H3588\"* go|strong=\"H1980\"*?”" + }, + { + "verseNum": 15, + "text": "Saul|strong=\"H7586\"*’s uncle|strong=\"H1730\"* said, “Please|strong=\"H4994\"* tell|strong=\"H5046\"* me|strong=\"H4994\"* what|strong=\"H4100\"* Samuel|strong=\"H8050\"* said to|strong=\"H5046\"* you|strong=\"H5046\"*.”" + }, + { + "verseNum": 16, + "text": "Saul|strong=\"H7586\"* said|strong=\"H1697\"* to|strong=\"H1697\"* his|strong=\"H5046\"* uncle|strong=\"H1730\"*, “He|strong=\"H3588\"* told|strong=\"H5046\"* us|strong=\"H5046\"* plainly|strong=\"H5046\"* that|strong=\"H3588\"* the|strong=\"H3588\"* donkeys were|strong=\"H1697\"* found|strong=\"H4672\"*.” But|strong=\"H3588\"* concerning|strong=\"H1697\"* the|strong=\"H3588\"* matter|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H3588\"* kingdom|strong=\"H4410\"*, of|strong=\"H1697\"* which|strong=\"H1697\"* Samuel|strong=\"H8050\"* spoke|strong=\"H1697\"*, he|strong=\"H3588\"* didn’t tell|strong=\"H5046\"* him|strong=\"H5046\"*." + }, + { + "verseNum": 17, + "text": "Samuel|strong=\"H8050\"* called|strong=\"H6817\"* the|strong=\"H3068\"* people|strong=\"H5971\"* together|strong=\"H6817\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* Mizpah|strong=\"H4709\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H1121\"* he|strong=\"H3068\"* said to|strong=\"H3478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"* ‘I|strong=\"H3541\"* brought|strong=\"H5927\"* Israel|strong=\"H3478\"* up|strong=\"H5927\"* out|strong=\"H5337\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"* and|strong=\"H1121\"* I|strong=\"H3541\"* delivered|strong=\"H5337\"* you|strong=\"H3605\"* out|strong=\"H5337\"* of|strong=\"H1121\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"*, and|strong=\"H1121\"* out|strong=\"H5337\"* of|strong=\"H1121\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* that|strong=\"H3605\"* oppressed|strong=\"H3905\"* you|strong=\"H3605\"*.’" + }, + { + "verseNum": 19, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* today|strong=\"H3117\"* rejected|strong=\"H3988\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3605\"* himself|strong=\"H1931\"* saves|strong=\"H3467\"* you|strong=\"H3588\"* out|strong=\"H5921\"* of|strong=\"H4428\"* all|strong=\"H3605\"* your|strong=\"H3068\"* calamities|strong=\"H6869\"* and|strong=\"H3068\"* your|strong=\"H3068\"* distresses|strong=\"H6869\"*; and|strong=\"H3068\"* you|strong=\"H3588\"* have|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H6440\"*, ‘No|strong=\"H3605\"*! Set|strong=\"H7760\"* a|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* us|strong=\"H5921\"*!’ Now|strong=\"H6258\"* therefore|strong=\"H5921\"* present|strong=\"H3320\"* yourselves|strong=\"H3320\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* by|strong=\"H5921\"* your|strong=\"H3068\"* tribes|strong=\"H7626\"* and|strong=\"H3068\"* by|strong=\"H5921\"* your|strong=\"H3068\"* thousands.”" + }, + { + "verseNum": 20, + "text": "So|strong=\"H7126\"* Samuel|strong=\"H8050\"* brought|strong=\"H7126\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"* near|strong=\"H7126\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* tribe|strong=\"H7626\"* of|strong=\"H7626\"* Benjamin|strong=\"H1144\"* was|strong=\"H3478\"* chosen." + }, + { + "verseNum": 21, + "text": "He|strong=\"H3808\"* brought|strong=\"H7126\"* the|strong=\"H7126\"* tribe|strong=\"H7626\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* near|strong=\"H7126\"* by|strong=\"H3808\"* their|strong=\"H1245\"* families|strong=\"H4940\"* and|strong=\"H1121\"* the|strong=\"H7126\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H7126\"* Matrites was|strong=\"H7586\"* chosen. Then|strong=\"H7126\"* Saul|strong=\"H7586\"* the|strong=\"H7126\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kish|strong=\"H7027\"* was|strong=\"H7586\"* chosen; but|strong=\"H3808\"* when|strong=\"H1121\"* they|strong=\"H3808\"* looked|strong=\"H1245\"* for|strong=\"H1121\"* him|strong=\"H4672\"*, he|strong=\"H3808\"* could not|strong=\"H3808\"* be|strong=\"H3808\"* found|strong=\"H4672\"*." + }, + { + "verseNum": 22, + "text": "Therefore|strong=\"H3068\"* they|strong=\"H3068\"* asked|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* further|strong=\"H5750\"*, “Is|strong=\"H3068\"* there|strong=\"H2009\"* yet|strong=\"H5750\"* a|strong=\"H3068\"* man to|strong=\"H3068\"* come|strong=\"H5750\"* here|strong=\"H2009\"*?”" + }, + { + "verseNum": 23, + "text": "They|strong=\"H8033\"* ran|strong=\"H7323\"* and|strong=\"H5971\"* got|strong=\"H3947\"* him|strong=\"H3947\"* there|strong=\"H8033\"*. When|strong=\"H1361\"* he|strong=\"H8033\"* stood|strong=\"H3320\"* among|strong=\"H8432\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, he|strong=\"H8033\"* was|strong=\"H3605\"* higher|strong=\"H4605\"* than|strong=\"H3605\"* any|strong=\"H3605\"* of|strong=\"H8432\"* the|strong=\"H3605\"* people|strong=\"H5971\"* from|strong=\"H3947\"* his|strong=\"H3605\"* shoulders|strong=\"H7926\"* and|strong=\"H5971\"* upward|strong=\"H4605\"*." + }, + { + "verseNum": 24, + "text": "Samuel|strong=\"H8050\"* said to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, “Do|strong=\"H3068\"* you|strong=\"H3588\"* see|strong=\"H7200\"* him|strong=\"H7200\"* whom|strong=\"H5971\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* chosen, that|strong=\"H3588\"* there|strong=\"H3605\"* is|strong=\"H3068\"* no|strong=\"H3605\"* one|strong=\"H3605\"* like|strong=\"H3644\"* him|strong=\"H7200\"* among|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*?”" + }, + { + "verseNum": 25, + "text": "Then|strong=\"H1696\"* Samuel|strong=\"H8050\"* told|strong=\"H1696\"* the|strong=\"H3605\"* people|strong=\"H5971\"* the|strong=\"H3605\"* regulations|strong=\"H4941\"* of|strong=\"H1004\"* the|strong=\"H3605\"* kingdom|strong=\"H4410\"*, and|strong=\"H3068\"* wrote|strong=\"H3789\"* it|strong=\"H6440\"* in|strong=\"H3068\"* a|strong=\"H3068\"* book|strong=\"H5612\"* and|strong=\"H3068\"* laid|strong=\"H7971\"* it|strong=\"H6440\"* up|strong=\"H3240\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. Samuel|strong=\"H8050\"* sent|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* away|strong=\"H7971\"*, every|strong=\"H3605\"* man|strong=\"H3605\"* to|strong=\"H1696\"* his|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 26, + "text": "Saul|strong=\"H7586\"* also|strong=\"H1571\"* went|strong=\"H1980\"* to|strong=\"H1980\"* his|strong=\"H7586\"* house|strong=\"H1004\"* in|strong=\"H1980\"* Gibeah|strong=\"H1390\"*; and|strong=\"H1980\"* the|strong=\"H5060\"* army|strong=\"H2428\"* went|strong=\"H1980\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, whose|strong=\"H7586\"* hearts|strong=\"H3820\"* God had|strong=\"H7586\"* touched|strong=\"H5060\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"H3808\"* certain worthless|strong=\"H1100\"* fellows|strong=\"H1121\"* said|strong=\"H2790\"*, “How|strong=\"H4100\"* could|strong=\"H2088\"* this|strong=\"H2088\"* man|strong=\"H1121\"* save|strong=\"H3467\"* us|strong=\"H1961\"*?” They|strong=\"H3808\"* despised him|strong=\"H2088\"*, and|strong=\"H1121\"* brought|strong=\"H3467\"* him|strong=\"H2088\"* no|strong=\"H3808\"* tribute|strong=\"H4503\"*. But|strong=\"H3808\"* he|strong=\"H3808\"* held|strong=\"H1961\"* his|strong=\"H1961\"* peace|strong=\"H2790\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H5927\"* Nahash|strong=\"H5176\"* the|strong=\"H3605\"* Ammonite|strong=\"H5984\"* came|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H1285\"* encamped|strong=\"H2583\"* against|strong=\"H5921\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"*; and|strong=\"H1285\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H5921\"* Jabesh|strong=\"H3003\"* said to|strong=\"H5927\"* Nahash|strong=\"H5176\"*, “Make|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* us|strong=\"H5921\"*, and|strong=\"H1285\"* we|strong=\"H3068\"* will|strong=\"H5647\"* serve|strong=\"H5647\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 2, + "text": "Nahash|strong=\"H5176\"* the|strong=\"H3605\"* Ammonite|strong=\"H5984\"* said to|strong=\"H3478\"* them|strong=\"H5921\"*, “On|strong=\"H5921\"* this|strong=\"H2063\"* condition I|strong=\"H5921\"* will|strong=\"H3478\"* make|strong=\"H7760\"* it|strong=\"H7760\"* with|strong=\"H5921\"* you|strong=\"H3605\"*, that|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3605\"* right|strong=\"H3225\"* eyes|strong=\"H5869\"* be|strong=\"H3478\"* gouged|strong=\"H5365\"* out|strong=\"H5921\"*. I|strong=\"H5921\"* will|strong=\"H3478\"* make|strong=\"H7760\"* this|strong=\"H2063\"* dishonor all|strong=\"H3605\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 3, + "text": "The|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H3117\"* Jabesh|strong=\"H3003\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H7971\"*, “Give us|strong=\"H3117\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, that|strong=\"H3605\"* we|strong=\"H3068\"* may|strong=\"H3478\"* send|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* then|strong=\"H3318\"*, if there|strong=\"H3117\"* is|strong=\"H3117\"* no|strong=\"H3605\"* one|strong=\"H3605\"* to|strong=\"H3318\"* save|strong=\"H3467\"* us|strong=\"H3117\"*, we|strong=\"H3068\"* will|strong=\"H3478\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H1696\"* the|strong=\"H3605\"* messengers|strong=\"H4397\"* came|strong=\"H5971\"* to|strong=\"H1696\"* Gibeah|strong=\"H1390\"* of|strong=\"H1697\"* Saul|strong=\"H7586\"*, and|strong=\"H5971\"* spoke|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"* in|strong=\"H1696\"* the|strong=\"H3605\"* ears of|strong=\"H1697\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, then|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H3605\"* voice|strong=\"H6963\"* and|strong=\"H5971\"* wept|strong=\"H1058\"*." + }, + { + "verseNum": 5, + "text": "Behold|strong=\"H2009\"*, Saul|strong=\"H7586\"* came|strong=\"H5971\"* following the|strong=\"H3588\"* oxen|strong=\"H1241\"* out|strong=\"H4480\"* of|strong=\"H1697\"* the|strong=\"H3588\"* field|strong=\"H7704\"*; and|strong=\"H5971\"* Saul|strong=\"H7586\"* said|strong=\"H1697\"*, “What|strong=\"H4100\"* ails the|strong=\"H3588\"* people|strong=\"H5971\"* that|strong=\"H3588\"* they|strong=\"H3588\"* weep|strong=\"H1058\"*?” They|strong=\"H3588\"* told|strong=\"H5608\"* him|strong=\"H4480\"* the|strong=\"H3588\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H3588\"* men|strong=\"H5971\"* of|strong=\"H1697\"* Jabesh|strong=\"H3003\"*." + }, + { + "verseNum": 6, + "text": "God’s Spirit|strong=\"H7307\"* came|strong=\"H6743\"* mightily|strong=\"H6743\"* on|strong=\"H5921\"* Saul|strong=\"H7586\"* when|strong=\"H8085\"* he|strong=\"H5921\"* heard|strong=\"H8085\"* those|strong=\"H5921\"* words|strong=\"H1697\"*, and|strong=\"H7586\"* his|strong=\"H8085\"* anger|strong=\"H7307\"* burned|strong=\"H2734\"* hot|strong=\"H2734\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H6213\"* took|strong=\"H3947\"* a|strong=\"H3068\"* yoke|strong=\"H6776\"* of|strong=\"H3068\"* oxen|strong=\"H1241\"* and|strong=\"H3478\"* cut|strong=\"H5408\"* them|strong=\"H5921\"* in|strong=\"H5921\"* pieces|strong=\"H5408\"*, then|strong=\"H3318\"* sent|strong=\"H7971\"* them|strong=\"H5921\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* by|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* messengers|strong=\"H4397\"*, saying, “Whoever|strong=\"H3605\"* doesn’t come|strong=\"H3318\"* out|strong=\"H3318\"* after|strong=\"H5921\"* Saul|strong=\"H7586\"* and|strong=\"H3478\"* after|strong=\"H5921\"* Samuel|strong=\"H8050\"*, so|strong=\"H6213\"* shall|strong=\"H3068\"* it|strong=\"H5921\"* be|strong=\"H3027\"* done|strong=\"H6213\"* to|strong=\"H3318\"* his|strong=\"H3605\"* oxen|strong=\"H1241\"*.” The|strong=\"H3605\"* dread|strong=\"H6343\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3478\"* they|strong=\"H3068\"* came|strong=\"H3318\"* out|strong=\"H3318\"* as|strong=\"H6213\"* one|strong=\"H3605\"* man|strong=\"H3605\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3478\"* counted|strong=\"H6485\"* them|strong=\"H1961\"* in|strong=\"H3478\"* Bezek; and|strong=\"H3967\"* the|strong=\"H6485\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* thousand, and|strong=\"H3967\"* the|strong=\"H6485\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* thirty|strong=\"H7970\"* thousand." + }, + { + "verseNum": 9, + "text": "They|strong=\"H3541\"* said to|strong=\"H1961\"* the|strong=\"H3541\"* messengers|strong=\"H4397\"* who|strong=\"H4397\"* came|strong=\"H1961\"*, “Tell|strong=\"H5046\"* the|strong=\"H3541\"* men of|strong=\"H4397\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"*, ‘Tomorrow|strong=\"H4279\"*, by|strong=\"H1961\"* the|strong=\"H3541\"* time|strong=\"H4279\"* the|strong=\"H3541\"* sun|strong=\"H8121\"* is|strong=\"H1961\"* hot|strong=\"H2527\"*, you|strong=\"H5046\"* will|strong=\"H1961\"* be|strong=\"H1961\"* rescued.’” The|strong=\"H3541\"* messengers|strong=\"H4397\"* came|strong=\"H1961\"* and|strong=\"H1568\"* told|strong=\"H5046\"* the|strong=\"H3541\"* men of|strong=\"H4397\"* Jabesh|strong=\"H3003\"*; and|strong=\"H1568\"* they|strong=\"H3541\"* were|strong=\"H1961\"* glad|strong=\"H8055\"*." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H6213\"* the|strong=\"H3605\"* men|strong=\"H6213\"* of|strong=\"H5869\"* Jabesh|strong=\"H3003\"* said|strong=\"H3318\"*, “Tomorrow|strong=\"H4279\"* we|strong=\"H3068\"* will|strong=\"H5869\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* you|strong=\"H3605\"*, and|strong=\"H5869\"* you|strong=\"H3605\"* shall|strong=\"H5869\"* do|strong=\"H6213\"* with|strong=\"H6213\"* us|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* seems|strong=\"H3605\"* good|strong=\"H2896\"* to|strong=\"H3318\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 11, + "text": "On|strong=\"H3117\"* the|strong=\"H5221\"* next|strong=\"H4283\"* day|strong=\"H3117\"*, Saul|strong=\"H7586\"* put|strong=\"H7760\"* the|strong=\"H5221\"* people|strong=\"H5971\"* in|strong=\"H3117\"* three|strong=\"H7969\"* companies|strong=\"H7218\"*; and|strong=\"H3117\"* they|strong=\"H3117\"* came|strong=\"H1961\"* into|strong=\"H8432\"* the|strong=\"H5221\"* middle|strong=\"H8432\"* of|strong=\"H3117\"* the|strong=\"H5221\"* camp|strong=\"H4264\"* in|strong=\"H3117\"* the|strong=\"H5221\"* morning|strong=\"H1242\"* watch, and|strong=\"H3117\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* Ammonites|strong=\"H5983\"* until|strong=\"H5704\"* the|strong=\"H5221\"* heat|strong=\"H2527\"* of|strong=\"H3117\"* the|strong=\"H5221\"* day|strong=\"H3117\"*. Those|strong=\"H1961\"* who|strong=\"H5971\"* remained|strong=\"H7604\"* were|strong=\"H1961\"* scattered|strong=\"H6327\"*, so|strong=\"H1961\"* that|strong=\"H5971\"* no|strong=\"H3808\"* two|strong=\"H8147\"* of|strong=\"H3117\"* them|strong=\"H5221\"* were|strong=\"H1961\"* left|strong=\"H7604\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* people|strong=\"H5971\"* said to|strong=\"H4191\"* Samuel|strong=\"H8050\"*, “Who|strong=\"H4310\"* is|strong=\"H4310\"* he|strong=\"H5414\"* who|strong=\"H4310\"* said, ‘Shall|strong=\"H5971\"* Saul|strong=\"H7586\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* us|strong=\"H5414\"*?’ Bring|strong=\"H5414\"* those|strong=\"H5921\"* men|strong=\"H5971\"*, that|strong=\"H5971\"* we|strong=\"H3068\"* may|strong=\"H5971\"* put|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H4191\"* death|strong=\"H4191\"*!”" + }, + { + "verseNum": 13, + "text": "Saul|strong=\"H7586\"* said, “No|strong=\"H3808\"* man|strong=\"H4191\"* shall|strong=\"H3068\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H3478\"* death|strong=\"H4191\"* today|strong=\"H3117\"*; for|strong=\"H3588\"* today|strong=\"H3117\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* rescued Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 14, + "text": "Then Samuel|strong=\"H8050\"* said to|strong=\"H3212\"* the|strong=\"H8033\"* people|strong=\"H5971\"*, “Come|strong=\"H3212\"*! Let|strong=\"H3212\"*’s go|strong=\"H3212\"* to|strong=\"H3212\"* Gilgal|strong=\"H1537\"*, and|strong=\"H3212\"* renew|strong=\"H2318\"* the|strong=\"H8033\"* kingdom|strong=\"H4410\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 15, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* went|strong=\"H3212\"* to|strong=\"H5704\"* Gilgal|strong=\"H1537\"*; and|strong=\"H3478\"* there|strong=\"H8033\"* they|strong=\"H8033\"* made|strong=\"H4427\"* Saul|strong=\"H7586\"* king|strong=\"H4427\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* in|strong=\"H3478\"* Gilgal|strong=\"H1537\"*. There|strong=\"H8033\"* they|strong=\"H8033\"* offered|strong=\"H2076\"* sacrifices|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3478\"* there|strong=\"H8033\"* Saul|strong=\"H7586\"* and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* rejoiced|strong=\"H8055\"* greatly|strong=\"H3966\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Samuel|strong=\"H8050\"* said|strong=\"H8085\"* to|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H3478\"* listened|strong=\"H8085\"* to|strong=\"H3478\"* your|strong=\"H3605\"* voice|strong=\"H6963\"* in|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* said|strong=\"H8085\"* to|strong=\"H3478\"* me|strong=\"H5921\"*, and|strong=\"H3478\"* have|strong=\"H3478\"* made|strong=\"H4427\"* a|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"H6258\"*, behold|strong=\"H2009\"*, the|strong=\"H6440\"* king|strong=\"H4428\"* walks|strong=\"H1980\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. I|strong=\"H3117\"* am|strong=\"H2204\"* old|strong=\"H1121\"* and|strong=\"H1121\"* gray-headed. Behold|strong=\"H2009\"*, my|strong=\"H6258\"* sons|strong=\"H1121\"* are|strong=\"H3117\"* with|strong=\"H1980\"* you|strong=\"H6440\"*. I|strong=\"H3117\"* have|strong=\"H1121\"* walked|strong=\"H1980\"* before|strong=\"H6440\"* you|strong=\"H6440\"* from|strong=\"H6440\"* my|strong=\"H6258\"* youth|strong=\"H5271\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 3, + "text": "Here|strong=\"H2005\"* I|strong=\"H2005\"* am|strong=\"H3068\"*. Witness|strong=\"H6030\"* against|strong=\"H5048\"* me|strong=\"H7725\"* before|strong=\"H5048\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* before|strong=\"H5048\"* his|strong=\"H3068\"* anointed|strong=\"H4899\"*. Whose|strong=\"H4310\"* ox|strong=\"H7794\"* have|strong=\"H3068\"* I|strong=\"H2005\"* taken|strong=\"H3947\"*? Whose|strong=\"H4310\"* donkey|strong=\"H2543\"* have|strong=\"H3068\"* I|strong=\"H2005\"* taken|strong=\"H3947\"*? Whom|strong=\"H4310\"* have|strong=\"H3068\"* I|strong=\"H2005\"* defrauded|strong=\"H6231\"*? Whom|strong=\"H4310\"* have|strong=\"H3068\"* I|strong=\"H2005\"* oppressed|strong=\"H6231\"*? Of|strong=\"H3068\"* whose|strong=\"H4310\"* hand|strong=\"H3027\"* have|strong=\"H3068\"* I|strong=\"H2005\"* taken|strong=\"H3947\"* a|strong=\"H3068\"* bribe|strong=\"H3724\"* to|strong=\"H7725\"* make|strong=\"H7725\"* me|strong=\"H7725\"* blind|strong=\"H5956\"* my|strong=\"H3068\"* eyes|strong=\"H5869\"*? I|strong=\"H2005\"* will|strong=\"H3068\"* restore|strong=\"H7725\"* it|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H7725\"*.”" + }, + { + "verseNum": 4, + "text": "They|strong=\"H3808\"* said, “You|strong=\"H3947\"* have|strong=\"H3027\"* not|strong=\"H3808\"* defrauded|strong=\"H6231\"* us|strong=\"H3027\"*, nor|strong=\"H3808\"* oppressed|strong=\"H6231\"* us|strong=\"H3027\"*, neither|strong=\"H3808\"* have|strong=\"H3027\"* you|strong=\"H3947\"* taken|strong=\"H3947\"* anything|strong=\"H3972\"* from|strong=\"H3027\"* anyone’s hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H3588\"* said to|strong=\"H3068\"* them|strong=\"H3027\"*, “Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* witness|strong=\"H5707\"* against|strong=\"H3027\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* his|strong=\"H3068\"* anointed|strong=\"H4899\"* is|strong=\"H3068\"* witness|strong=\"H5707\"* today|strong=\"H3117\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* found|strong=\"H4672\"* anything|strong=\"H3972\"* in|strong=\"H3068\"* my|strong=\"H3068\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 6, + "text": "Samuel|strong=\"H8050\"* said to|strong=\"H3068\"* the|strong=\"H6213\"* people|strong=\"H5971\"*, “It|strong=\"H6213\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H5971\"* appointed|strong=\"H6213\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron, and|strong=\"H4872\"* that|strong=\"H5971\"* brought|strong=\"H5927\"* your|strong=\"H3068\"* fathers up|strong=\"H5927\"* out|strong=\"H6213\"* of|strong=\"H3068\"* the|strong=\"H6213\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* stand|strong=\"H3320\"* still|strong=\"H3320\"*, that|strong=\"H3605\"* I|strong=\"H6258\"* may|strong=\"H3068\"* plead|strong=\"H8199\"* with|strong=\"H3068\"* you|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* concerning|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* righteous|strong=\"H6666\"* acts|strong=\"H6213\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, which|strong=\"H3068\"* he|strong=\"H6213\"* did|strong=\"H6213\"* to|strong=\"H3068\"* you|strong=\"H6440\"* and|strong=\"H3068\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers." + }, + { + "verseNum": 8, + "text": "“When|strong=\"H3318\"* Jacob|strong=\"H3290\"* had|strong=\"H3068\"* come|strong=\"H3318\"* into|strong=\"H3318\"* Egypt|strong=\"H4714\"*, and|strong=\"H4872\"* your|strong=\"H3068\"* fathers cried|strong=\"H2199\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*, then|strong=\"H3318\"* Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron, who|strong=\"H3068\"* brought|strong=\"H3318\"* your|strong=\"H3068\"* fathers out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H4872\"* made|strong=\"H3068\"* them|strong=\"H7971\"* to|strong=\"H3318\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* this|strong=\"H2088\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H7911\"* they|strong=\"H3068\"* forgot|strong=\"H7911\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* sold|strong=\"H4376\"* them|strong=\"H3027\"* into|strong=\"H3027\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Sisera|strong=\"H5516\"*, captain|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3068\"* army|strong=\"H6635\"* of|strong=\"H4428\"* Hazor|strong=\"H2674\"*, and|strong=\"H3068\"* into|strong=\"H3027\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3068\"* Philistines|strong=\"H6430\"*, and|strong=\"H3068\"* into|strong=\"H3027\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* them|strong=\"H3027\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H3588\"* cried|strong=\"H2199\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said, ‘We|strong=\"H3588\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"*, because|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* forsaken|strong=\"H5800\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* have|strong=\"H3068\"* served|strong=\"H5647\"* the|strong=\"H3588\"* Baals|strong=\"H1168\"* and|strong=\"H3068\"* the|strong=\"H3588\"* Ashtaroth|strong=\"H6252\"*; but|strong=\"H3588\"* now|strong=\"H6258\"* deliver|strong=\"H5337\"* us|strong=\"H3588\"* out|strong=\"H2199\"* of|strong=\"H3068\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* our|strong=\"H3068\"* enemies|strong=\"H3027\"*, and|strong=\"H3068\"* we|strong=\"H3068\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* you|strong=\"H3588\"*.’" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* Jerubbaal|strong=\"H3378\"*, Bedan, Jephthah|strong=\"H3316\"*, and|strong=\"H3068\"* Samuel|strong=\"H8050\"*, and|strong=\"H3068\"* delivered|strong=\"H5337\"* you|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H3068\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* your|strong=\"H3068\"* enemies|strong=\"H3027\"* on|strong=\"H3427\"* every|strong=\"H5439\"* side|strong=\"H5439\"*; and|strong=\"H3068\"* you|strong=\"H7971\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* safety." + }, + { + "verseNum": 12, + "text": "“When|strong=\"H3588\"* you|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Nahash|strong=\"H5176\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* came|strong=\"H3068\"* against|strong=\"H5921\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* said to|strong=\"H3068\"* me|strong=\"H7200\"*, ‘No|strong=\"H3808\"*, but|strong=\"H3588\"* a|strong=\"H3068\"* king|strong=\"H4428\"* shall|strong=\"H3068\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* us|strong=\"H5921\"*,’ when|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* was|strong=\"H3068\"* your|strong=\"H3068\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* see|strong=\"H2009\"* the|strong=\"H5921\"* king|strong=\"H4428\"* whom you|strong=\"H5414\"* have|strong=\"H3068\"* chosen and|strong=\"H3068\"* whom you|strong=\"H5414\"* have|strong=\"H3068\"* asked|strong=\"H7592\"* for|strong=\"H5921\"*. Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* set|strong=\"H5414\"* a|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 14, + "text": "If|strong=\"H1961\"* you|strong=\"H5921\"* will|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H5921\"*, and|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* his|strong=\"H3068\"* voice|strong=\"H6963\"*, and|strong=\"H3068\"* not|strong=\"H3808\"* rebel|strong=\"H4784\"* against|strong=\"H5921\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*, then|strong=\"H1961\"* both|strong=\"H1571\"* you|strong=\"H5921\"* and|strong=\"H3068\"* also|strong=\"H1571\"* the|strong=\"H5921\"* king|strong=\"H4428\"* who|strong=\"H3068\"* reigns|strong=\"H4427\"* over|strong=\"H5921\"* you|strong=\"H5921\"* are|strong=\"H3068\"* followers of|strong=\"H4428\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H3808\"* if|strong=\"H1961\"* you|strong=\"H3808\"* will|strong=\"H3068\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*, but|strong=\"H3808\"* rebel|strong=\"H4784\"* against|strong=\"H3027\"* the|strong=\"H8085\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* will|strong=\"H3068\"* be|strong=\"H1961\"* against|strong=\"H3027\"* you|strong=\"H3808\"*, as|strong=\"H1961\"* it|strong=\"H1961\"* was|strong=\"H3068\"* against|strong=\"H3027\"* your|strong=\"H3068\"* fathers." + }, + { + "verseNum": 16, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H6258\"* stand|strong=\"H3320\"* still|strong=\"H3320\"* and|strong=\"H3068\"* see|strong=\"H7200\"* this|strong=\"H2088\"* great|strong=\"H1419\"* thing|strong=\"H1697\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"* before|strong=\"H5869\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 17, + "text": "Isn’t it|strong=\"H5414\"* wheat|strong=\"H2406\"* harvest|strong=\"H7105\"* today|strong=\"H3117\"*? I|strong=\"H3588\"* will|strong=\"H3068\"* call|strong=\"H7121\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H3068\"* send|strong=\"H5414\"* thunder|strong=\"H6963\"* and|strong=\"H3068\"* rain|strong=\"H4306\"*; and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* and|strong=\"H3068\"* see|strong=\"H7200\"* that|strong=\"H3588\"* your|strong=\"H3068\"* wickedness|strong=\"H7451\"* is|strong=\"H3068\"* great|strong=\"H7227\"*, which|strong=\"H3068\"* you|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, in|strong=\"H3068\"* asking|strong=\"H7592\"* for|strong=\"H3588\"* a|strong=\"H3068\"* king|strong=\"H4428\"*.”" + }, + { + "verseNum": 18, + "text": "So|strong=\"H7121\"* Samuel|strong=\"H8050\"* called|strong=\"H7121\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* sent|strong=\"H5414\"* thunder|strong=\"H6963\"* and|strong=\"H3068\"* rain|strong=\"H4306\"* that|strong=\"H5971\"* day|strong=\"H3117\"*. Then|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* greatly|strong=\"H3966\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* Samuel|strong=\"H8050\"*." + }, + { + "verseNum": 19, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* said to|strong=\"H4191\"* Samuel|strong=\"H8050\"*, “Pray|strong=\"H6419\"* for|strong=\"H3588\"* your|strong=\"H3068\"* servants|strong=\"H5650\"* to|strong=\"H4191\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* not|strong=\"H3254\"* die|strong=\"H4191\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* added|strong=\"H3254\"* to|strong=\"H4191\"* all|strong=\"H3605\"* our|strong=\"H3068\"* sins|strong=\"H2403\"* this|strong=\"H3588\"* evil|strong=\"H7451\"*, to|strong=\"H4191\"* ask|strong=\"H7592\"* for|strong=\"H3588\"* a|strong=\"H3068\"* king|strong=\"H4428\"*.”" + }, + { + "verseNum": 20, + "text": "Samuel|strong=\"H8050\"* said to|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, “Don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"*. You|strong=\"H3605\"* have|strong=\"H3068\"* indeed|strong=\"H6213\"* done|strong=\"H6213\"* all|strong=\"H3605\"* this|strong=\"H2063\"* evil|strong=\"H7451\"*; yet|strong=\"H3068\"* don’t turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* following Yahweh|strong=\"H3068\"*, but|strong=\"H5971\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 21, + "text": "Don’t turn|strong=\"H5493\"* away|strong=\"H5493\"* to|strong=\"H5493\"* go|strong=\"H5493\"* after|strong=\"H3588\"* vain|strong=\"H8414\"* things|strong=\"H8414\"* which|strong=\"H1992\"* can|strong=\"H3808\"*’t profit|strong=\"H3276\"* or|strong=\"H3808\"* deliver|strong=\"H5337\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* vain|strong=\"H8414\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* forsake|strong=\"H5203\"* his|strong=\"H3068\"* people|strong=\"H5971\"* for|strong=\"H3588\"* his|strong=\"H3068\"* great|strong=\"H1419\"* name|strong=\"H8034\"*’s sake|strong=\"H5668\"*, because|strong=\"H3588\"* it|strong=\"H3588\"* has|strong=\"H3068\"* pleased|strong=\"H2974\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* make|strong=\"H6213\"* you|strong=\"H3588\"* a|strong=\"H3068\"* people|strong=\"H5971\"* for|strong=\"H3588\"* himself|strong=\"H6213\"*." + }, + { + "verseNum": 23, + "text": "Moreover|strong=\"H1571\"*, as|strong=\"H1571\"* for|strong=\"H1157\"* me|strong=\"H1157\"*, far|strong=\"H2486\"* be|strong=\"H3068\"* it|strong=\"H2486\"* from|strong=\"H3068\"* me|strong=\"H1157\"* that|strong=\"H3068\"* I|strong=\"H1571\"* should|strong=\"H3068\"* sin|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* ceasing|strong=\"H2308\"* to|strong=\"H3068\"* pray|strong=\"H6419\"* for|strong=\"H1157\"* you|strong=\"H3384\"*; but|strong=\"H1571\"* I|strong=\"H1571\"* will|strong=\"H3068\"* instruct|strong=\"H3384\"* you|strong=\"H3384\"* in|strong=\"H3068\"* the|strong=\"H3068\"* good|strong=\"H2896\"* and|strong=\"H3068\"* the|strong=\"H3068\"* right|strong=\"H3477\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 24, + "text": "Only|strong=\"H3588\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H7200\"* in|strong=\"H3068\"* truth with|strong=\"H5973\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*; for|strong=\"H3588\"* consider|strong=\"H7200\"* what|strong=\"H3372\"* great|strong=\"H1431\"* things|strong=\"H3605\"* he|strong=\"H3588\"* has|strong=\"H3068\"* done|strong=\"H1431\"* for|strong=\"H3588\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"H1571\"* if you|strong=\"H7489\"* keep doing|strong=\"H7489\"* evil|strong=\"H7489\"*, you|strong=\"H7489\"* will|strong=\"H4428\"* be|strong=\"H1571\"* consumed|strong=\"H5595\"*, both|strong=\"H1571\"* you|strong=\"H7489\"* and|strong=\"H4428\"* your|strong=\"H1571\"* king|strong=\"H4428\"*.”" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Saul|strong=\"H7586\"* was|strong=\"H3478\"* thirty years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8147\"* became|strong=\"H4427\"* king|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H8147\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* forty-two|strong=\"H8147\"* years|strong=\"H8141\"*.+ 13:1 The traditional Hebrew text omits “thirty” and “forty-”. The blanks are filled in here from a few manuscripts of the Septuagint.*" + }, + { + "verseNum": 2, + "text": "Saul|strong=\"H7586\"* chose for|strong=\"H7971\"* himself three|strong=\"H7969\"* thousand men|strong=\"H5971\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"*, of|strong=\"H2022\"* which|strong=\"H5971\"* two thousand were|strong=\"H3478\"* with|strong=\"H5973\"* Saul|strong=\"H7586\"* in|strong=\"H3478\"* Michmash|strong=\"H4363\"* and|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H7971\"* Mount|strong=\"H2022\"* of|strong=\"H2022\"* Bethel|strong=\"H1008\"*, and|strong=\"H3478\"* one|strong=\"H1961\"* thousand were|strong=\"H3478\"* with|strong=\"H5973\"* Jonathan|strong=\"H3129\"* in|strong=\"H3478\"* Gibeah|strong=\"H1390\"* of|strong=\"H2022\"* Benjamin|strong=\"H1144\"*. He|strong=\"H7971\"* sent|strong=\"H7971\"* the|strong=\"H7971\"* rest|strong=\"H3499\"* of|strong=\"H2022\"* the|strong=\"H7971\"* people|strong=\"H5971\"* to|strong=\"H3478\"* their|strong=\"H7971\"* own|strong=\"H1961\"* tents." + }, + { + "verseNum": 3, + "text": "Jonathan|strong=\"H3129\"* struck|strong=\"H5221\"* the|strong=\"H3605\"* garrison|strong=\"H5333\"* of|strong=\"H3605\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* that|strong=\"H3605\"* was|strong=\"H7586\"* in|strong=\"H8085\"* Geba|strong=\"H1387\"*, and|strong=\"H8085\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* heard|strong=\"H8085\"* of|strong=\"H3605\"* it|strong=\"H5221\"*. Saul|strong=\"H7586\"* blew|strong=\"H8628\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land, saying, “Let the|strong=\"H3605\"* Hebrews|strong=\"H5680\"* hear|strong=\"H8085\"*!”" + }, + { + "verseNum": 4, + "text": "All|strong=\"H3605\"* Israel|strong=\"H3478\"* heard|strong=\"H8085\"* that|strong=\"H5971\"* Saul|strong=\"H7586\"* had|strong=\"H3478\"* struck|strong=\"H5221\"* the|strong=\"H3605\"* garrison|strong=\"H5333\"* of|strong=\"H5971\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, and|strong=\"H3478\"* also|strong=\"H1571\"* that|strong=\"H5971\"* Israel|strong=\"H3478\"* was|strong=\"H3478\"* considered|strong=\"H8085\"* an|strong=\"H5221\"* abomination to|strong=\"H3478\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*. The|strong=\"H3605\"* people|strong=\"H5971\"* were|strong=\"H3478\"* gathered|strong=\"H6430\"* together|strong=\"H6817\"* after|strong=\"H6430\"* Saul|strong=\"H7586\"* to|strong=\"H3478\"* Gilgal|strong=\"H1537\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5921\"* Philistines|strong=\"H6430\"* assembled|strong=\"H3478\"* themselves|strong=\"H5921\"* together|strong=\"H5973\"* to|strong=\"H3478\"* fight|strong=\"H3898\"* with|strong=\"H5973\"* Israel|strong=\"H3478\"*: thirty|strong=\"H7970\"* thousand chariots|strong=\"H7393\"*, six|strong=\"H8337\"* thousand horsemen|strong=\"H6571\"*, and|strong=\"H3478\"* people|strong=\"H5971\"* as|strong=\"H7230\"* the|strong=\"H5921\"* sand|strong=\"H2344\"* which|strong=\"H5971\"* is|strong=\"H3478\"* on|strong=\"H5921\"* the|strong=\"H5921\"* seashore|strong=\"H3220\"* in|strong=\"H5921\"* multitude|strong=\"H7230\"*. They|strong=\"H5921\"* came|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H3478\"* encamped|strong=\"H2583\"* in|strong=\"H5921\"* Michmash|strong=\"H4363\"*, eastward|strong=\"H6926\"* of|strong=\"H7230\"* Beth Aven." + }, + { + "verseNum": 6, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* men|strong=\"H5971\"* of|strong=\"H5971\"* Israel|strong=\"H3478\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H3478\"* in|strong=\"H3478\"* trouble|strong=\"H6862\"* (for|strong=\"H3588\"* the|strong=\"H7200\"* people|strong=\"H5971\"* were|strong=\"H3478\"* distressed|strong=\"H5065\"*), then|strong=\"H3588\"* the|strong=\"H7200\"* people|strong=\"H5971\"* hid|strong=\"H2244\"* themselves|strong=\"H2244\"* in|strong=\"H3478\"* caves|strong=\"H4631\"*, in|strong=\"H3478\"* thickets|strong=\"H2337\"*, in|strong=\"H3478\"* rocks|strong=\"H5553\"*, in|strong=\"H3478\"* tombs, and|strong=\"H3478\"* in|strong=\"H3478\"* pits." + }, + { + "verseNum": 7, + "text": "Now some|strong=\"H5971\"* of|strong=\"H5971\"* the|strong=\"H3605\"* Hebrews|strong=\"H5680\"* had|strong=\"H7586\"* gone|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* to|strong=\"H5674\"* the|strong=\"H3605\"* land of|strong=\"H5971\"* Gad|strong=\"H1410\"* and|strong=\"H5971\"* Gilead|strong=\"H1568\"*; but|strong=\"H5971\"* as|strong=\"H5971\"* for|strong=\"H3605\"* Saul|strong=\"H7586\"*, he|strong=\"H3605\"* was|strong=\"H7586\"* yet|strong=\"H5750\"* in|strong=\"H5750\"* Gilgal|strong=\"H1537\"*, and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* followed him|strong=\"H3605\"* trembling|strong=\"H2729\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3117\"* stayed|strong=\"H3176\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* time|strong=\"H3117\"* set|strong=\"H4150\"* by|strong=\"H5921\"* Samuel|strong=\"H8050\"*; but|strong=\"H3808\"* Samuel|strong=\"H8050\"* didn’t come|strong=\"H5971\"* to|strong=\"H5921\"* Gilgal|strong=\"H1537\"*, and|strong=\"H3117\"* the|strong=\"H5921\"* people|strong=\"H5971\"* were|strong=\"H5971\"* scattering|strong=\"H6327\"* from|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "Saul|strong=\"H7586\"* said, “Bring|strong=\"H5927\"* the|strong=\"H5927\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H5927\"* me|strong=\"H5927\"* here|strong=\"H5066\"*, and|strong=\"H7586\"* the|strong=\"H5927\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*.” He offered|strong=\"H5927\"* the|strong=\"H5927\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 10, + "text": "It|strong=\"H5927\"* came|strong=\"H1961\"* to|strong=\"H3318\"* pass|strong=\"H1961\"* that|strong=\"H7586\"* as|strong=\"H1961\"* soon as|strong=\"H1961\"* he|strong=\"H3318\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* offering|strong=\"H5930\"* the|strong=\"H1288\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, behold|strong=\"H2009\"*, Samuel|strong=\"H8050\"* came|strong=\"H1961\"*; and|strong=\"H7586\"* Saul|strong=\"H7586\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H7122\"* him|strong=\"H3318\"*, that|strong=\"H7586\"* he|strong=\"H3318\"* might greet|strong=\"H1288\"* him|strong=\"H3318\"*." + }, + { + "verseNum": 11, + "text": "Samuel|strong=\"H8050\"* said, “What|strong=\"H4100\"* have|strong=\"H5971\"* you|strong=\"H3588\"* done|strong=\"H6213\"*?”" + }, + { + "verseNum": 12, + "text": "therefore|strong=\"H6258\"* I|strong=\"H6258\"* said, ‘Now|strong=\"H6258\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"* will|strong=\"H3068\"* come|strong=\"H5927\"* down|strong=\"H3381\"* on|strong=\"H3068\"* me|strong=\"H6440\"* to|strong=\"H3381\"* Gilgal|strong=\"H1537\"*, and|strong=\"H3068\"* I|strong=\"H6258\"* haven’t entreated|strong=\"H2470\"* the|strong=\"H6440\"* favor|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’ I|strong=\"H6258\"* forced myself therefore|strong=\"H6258\"*, and|strong=\"H3068\"* offered|strong=\"H5927\"* the|strong=\"H6440\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*.”" + }, + { + "verseNum": 13, + "text": "Samuel|strong=\"H8050\"* said to|strong=\"H5704\"* Saul|strong=\"H7586\"*, “You|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H3478\"* foolishly|strong=\"H5528\"*. You|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* the|strong=\"H3588\"* commandment|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, which|strong=\"H3068\"* he|strong=\"H3588\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* now|strong=\"H6258\"* Yahweh|strong=\"H3068\"* would|strong=\"H3068\"* have|strong=\"H3068\"* established|strong=\"H3559\"* your|strong=\"H3068\"* kingdom|strong=\"H4467\"* on|strong=\"H3068\"* Israel|strong=\"H3478\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"H3588\"* now|strong=\"H6258\"* your|strong=\"H3068\"* kingdom|strong=\"H4467\"* will|strong=\"H3068\"* not|strong=\"H3808\"* continue|strong=\"H6965\"*. Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sought|strong=\"H1245\"* for|strong=\"H3588\"* himself|strong=\"H3824\"* a|strong=\"H3068\"* man after|strong=\"H5921\"* his|strong=\"H8104\"* own|strong=\"H5971\"* heart|strong=\"H3824\"*, and|strong=\"H6965\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* appointed|strong=\"H6680\"* him|strong=\"H5921\"* to|strong=\"H3068\"* be|strong=\"H3808\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* his|strong=\"H8104\"* people|strong=\"H5971\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* that|strong=\"H3588\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 15, + "text": "Samuel|strong=\"H8050\"* arose|strong=\"H6965\"*, and|strong=\"H3967\"* went|strong=\"H5927\"* from|strong=\"H4480\"* Gilgal|strong=\"H1537\"* to|strong=\"H5927\"* Gibeah|strong=\"H1390\"* of|strong=\"H4480\"* Benjamin|strong=\"H1144\"*. Saul|strong=\"H7586\"* counted|strong=\"H6485\"* the|strong=\"H4480\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* present|strong=\"H4672\"* with|strong=\"H5973\"* him|strong=\"H4672\"*, about|strong=\"H4480\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* men|strong=\"H5971\"*." + }, + { + "verseNum": 16, + "text": "Saul|strong=\"H7586\"*, and|strong=\"H1121\"* Jonathan|strong=\"H3129\"* his|strong=\"H7586\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* the|strong=\"H4672\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* present|strong=\"H4672\"* with|strong=\"H5973\"* them|strong=\"H4672\"*, stayed|strong=\"H3427\"* in|strong=\"H3427\"* Geba|strong=\"H1387\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*; but|strong=\"H5971\"* the|strong=\"H4672\"* Philistines|strong=\"H6430\"* encamped|strong=\"H2583\"* in|strong=\"H3427\"* Michmash|strong=\"H4363\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3318\"* raiders|strong=\"H7843\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H7218\"* the|strong=\"H3318\"* camp|strong=\"H4264\"* of|strong=\"H7218\"* the|strong=\"H3318\"* Philistines|strong=\"H6430\"* in|strong=\"H1870\"* three|strong=\"H7969\"* companies|strong=\"H7218\"*: one company|strong=\"H4264\"* turned|strong=\"H6437\"* to|strong=\"H3318\"* the|strong=\"H3318\"* way|strong=\"H1870\"* that|strong=\"H6430\"* leads|strong=\"H3318\"* to|strong=\"H3318\"* Ophrah|strong=\"H6084\"*, to|strong=\"H3318\"* the|strong=\"H3318\"* land of|strong=\"H7218\"* Shual|strong=\"H7777\"*;" + }, + { + "verseNum": 18, + "text": "another company|strong=\"H7218\"* turned|strong=\"H6437\"* the|strong=\"H5921\"* way|strong=\"H1870\"* to|strong=\"H5921\"* Beth Horon; and|strong=\"H7218\"* another company|strong=\"H7218\"* turned|strong=\"H6437\"* the|strong=\"H5921\"* way|strong=\"H1870\"* of|strong=\"H1366\"* the|strong=\"H5921\"* border|strong=\"H1366\"* that|strong=\"H1870\"* looks|strong=\"H8259\"* down|strong=\"H8259\"* on|strong=\"H5921\"* the|strong=\"H5921\"* valley|strong=\"H1516\"* of|strong=\"H1366\"* Zeboim|strong=\"H6650\"* toward|strong=\"H1870\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 19, + "text": "Now|strong=\"H3588\"* there|strong=\"H4672\"* was|strong=\"H3478\"* no|strong=\"H3808\"* blacksmith|strong=\"H2796\"* found|strong=\"H4672\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Israel|strong=\"H3478\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* said, “Lest|strong=\"H6435\"* the|strong=\"H3605\"* Hebrews|strong=\"H5680\"* make|strong=\"H6213\"* themselves|strong=\"H6213\"* swords|strong=\"H2719\"* or|strong=\"H3808\"* spears|strong=\"H2595\"*”;" + }, + { + "verseNum": 20, + "text": "but|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Israelites|strong=\"H3478\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, each|strong=\"H3605\"* man|strong=\"H3605\"* to|strong=\"H3381\"* sharpen|strong=\"H3913\"* his|strong=\"H3605\"* own plowshare|strong=\"H4281\"*, mattock|strong=\"H4281\"*, ax, and|strong=\"H3478\"* sickle." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1961\"* price was|strong=\"H1961\"* one|strong=\"H6310\"* payim+ 13:21 A payim (or pim) was 2/3 shekel of silver, or 0.26 ounces, or 7.6 grams* each to|strong=\"H1961\"* sharpen|strong=\"H5324\"* mattocks|strong=\"H4281\"*, plowshares|strong=\"H4281\"*, pitchforks, axes|strong=\"H7134\"*, and|strong=\"H6310\"* goads|strong=\"H1861\"*." + }, + { + "verseNum": 22, + "text": "So|strong=\"H1961\"* it|strong=\"H1961\"* came|strong=\"H1961\"* to|strong=\"H1961\"* pass|strong=\"H1961\"* in|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H1121\"* battle|strong=\"H4421\"* that|strong=\"H5971\"* neither|strong=\"H3808\"* sword|strong=\"H2719\"* nor|strong=\"H3808\"* spear|strong=\"H2595\"* was|strong=\"H1961\"* found|strong=\"H4672\"* in|strong=\"H3117\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* any|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H1961\"* with|strong=\"H3117\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* Jonathan|strong=\"H3129\"*; but|strong=\"H3808\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* Jonathan|strong=\"H3129\"* his|strong=\"H3605\"* son|strong=\"H1121\"* had|strong=\"H1961\"* them|strong=\"H3027\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3318\"* garrison|strong=\"H4673\"* of|strong=\"H3318\"* the|strong=\"H3318\"* Philistines|strong=\"H6430\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3318\"* pass|strong=\"H4569\"* of|strong=\"H3318\"* Michmash|strong=\"H4363\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* it|strong=\"H5375\"* happened|strong=\"H1961\"* on|strong=\"H3117\"* a|strong=\"H3068\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Jonathan|strong=\"H3129\"* the|strong=\"H5375\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"* said to|strong=\"H3212\"* the|strong=\"H5375\"* young|strong=\"H5288\"* man|strong=\"H5288\"* who|strong=\"H1121\"* bore|strong=\"H5375\"* his|strong=\"H5375\"* armor|strong=\"H3627\"*, “Come|strong=\"H1961\"*! Let|strong=\"H5046\"*’s go|strong=\"H3212\"* over|strong=\"H5674\"* to|strong=\"H3212\"* the|strong=\"H5375\"* Philistines|strong=\"H6430\"*’ garrison|strong=\"H4673\"* that|strong=\"H3117\"* is|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H5375\"* other|strong=\"H5676\"* side|strong=\"H5676\"*.” But|strong=\"H3808\"* he|strong=\"H3117\"* didn’t tell|strong=\"H5046\"* his|strong=\"H5375\"* father|strong=\"H1121\"*." + }, + { + "verseNum": 2, + "text": "Saul|strong=\"H7586\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H8478\"* uttermost|strong=\"H7097\"* part|strong=\"H7097\"* of|strong=\"H3427\"* Gibeah|strong=\"H1390\"* under|strong=\"H8478\"* the|strong=\"H8478\"* pomegranate|strong=\"H7416\"* tree|strong=\"H7416\"* which|strong=\"H5971\"* is|strong=\"H7586\"* in|strong=\"H3427\"* Migron|strong=\"H4051\"*; and|strong=\"H3967\"* the|strong=\"H8478\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H5973\"* were|strong=\"H5971\"* about|strong=\"H5971\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* men|strong=\"H5971\"*," + }, + { + "verseNum": 3, + "text": "including Ahijah the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub, Ichabod’s brother, the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Phinehas|strong=\"H6372\"*, the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eli|strong=\"H5941\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* in|strong=\"H1980\"* Shiloh|strong=\"H7887\"*, wearing|strong=\"H5375\"* an|strong=\"H5375\"* ephod. The|strong=\"H3588\"* people|strong=\"H5971\"* didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* Jonathan|strong=\"H3129\"* was|strong=\"H3068\"* gone|strong=\"H1980\"*." + }, + { + "verseNum": 4, + "text": "Between|strong=\"H5921\"* the|strong=\"H5921\"* passes|strong=\"H5674\"*, by|strong=\"H5921\"* which|strong=\"H2088\"* Jonathan|strong=\"H3129\"* sought|strong=\"H1245\"* to|strong=\"H5921\"* go|strong=\"H5674\"* over|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"*’ garrison|strong=\"H4673\"*, there|strong=\"H2088\"* was|strong=\"H8034\"* a|strong=\"H3068\"* rocky|strong=\"H5553\"* crag|strong=\"H8127\"* on|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H2088\"* side|strong=\"H5676\"* and|strong=\"H6430\"* a|strong=\"H3068\"* rocky|strong=\"H5553\"* crag|strong=\"H8127\"* on|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H2088\"* side|strong=\"H5676\"*; and|strong=\"H6430\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H5921\"* one|strong=\"H2088\"* was|strong=\"H8034\"* Bozez, and|strong=\"H6430\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H5921\"* other|strong=\"H2088\"* Seneh|strong=\"H5573\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H4136\"* one crag|strong=\"H8127\"* rose|strong=\"H4690\"* up|strong=\"H1387\"* on|strong=\"H4136\"* the|strong=\"H4136\"* north|strong=\"H6828\"* in|strong=\"H8127\"* front|strong=\"H4136\"* of|strong=\"H5045\"* Michmash|strong=\"H4363\"*, and|strong=\"H6828\"* the|strong=\"H4136\"* other on|strong=\"H4136\"* the|strong=\"H4136\"* south|strong=\"H5045\"* in|strong=\"H8127\"* front|strong=\"H4136\"* of|strong=\"H5045\"* Geba|strong=\"H1387\"*." + }, + { + "verseNum": 6, + "text": "Jonathan|strong=\"H3083\"* said to|strong=\"H3068\"* the|strong=\"H3588\"* young|strong=\"H5288\"* man|strong=\"H5288\"* who|strong=\"H3068\"* bore|strong=\"H5375\"* his|strong=\"H5375\"* armor|strong=\"H3627\"*, “Come|strong=\"H3212\"*! Let|strong=\"H3212\"*’s go|strong=\"H3212\"* over|strong=\"H5674\"* to|strong=\"H3068\"* the|strong=\"H3588\"* garrison|strong=\"H4673\"* of|strong=\"H3068\"* these|strong=\"H6213\"* uncircumcised|strong=\"H6189\"*. It|strong=\"H3588\"* may|strong=\"H3068\"* be|strong=\"H3068\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* work|strong=\"H6213\"* for|strong=\"H3588\"* us|strong=\"H6213\"*, for|strong=\"H3588\"* there|strong=\"H3068\"* is|strong=\"H3068\"* no|strong=\"H6213\"* restraint|strong=\"H4622\"* on|strong=\"H5674\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* save|strong=\"H3467\"* by|strong=\"H5674\"* many|strong=\"H7227\"* or|strong=\"H4592\"* by|strong=\"H5674\"* few|strong=\"H4592\"*.”" + }, + { + "verseNum": 7, + "text": "His|strong=\"H3605\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"* said to|strong=\"H6213\"* him|strong=\"H6213\"*, “Do|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H6213\"* your|strong=\"H3605\"* heart|strong=\"H3824\"*. Go, and|strong=\"H6213\"* behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* with|strong=\"H5973\"* you|strong=\"H3605\"* according to|strong=\"H6213\"* your|strong=\"H3605\"* heart|strong=\"H3824\"*.”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H2009\"* Jonathan|strong=\"H3083\"* said, “Behold|strong=\"H2009\"*, we|strong=\"H3068\"* will pass|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H1540\"* the|strong=\"H5674\"* men, and|strong=\"H5674\"* we|strong=\"H3068\"* will reveal|strong=\"H1540\"* ourselves to|strong=\"H1540\"* them|strong=\"H5674\"*." + }, + { + "verseNum": 9, + "text": "If they|strong=\"H3808\"* say this|strong=\"H3541\"* to|strong=\"H5704\"* us|strong=\"H8478\"*, ‘Wait|strong=\"H1826\"* until|strong=\"H5704\"* we|strong=\"H3068\"* come|strong=\"H5927\"* to|strong=\"H5704\"* you|strong=\"H5704\"*!’ then|strong=\"H5975\"* we|strong=\"H3068\"* will|strong=\"H3808\"* stand|strong=\"H5975\"* still|strong=\"H5975\"* in|strong=\"H5975\"* our|strong=\"H8478\"* place|strong=\"H8478\"* and|strong=\"H5975\"* will|strong=\"H3808\"* not|strong=\"H3808\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5704\"* them|strong=\"H5975\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* they|strong=\"H3588\"* say this|strong=\"H2088\"*, ‘Come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* us|strong=\"H5414\"*!’ then|strong=\"H2088\"* we|strong=\"H3068\"* will|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5927\"* our|strong=\"H3068\"* hand|strong=\"H3027\"*. This|strong=\"H2088\"* shall|strong=\"H3068\"* be|strong=\"H3027\"* the|strong=\"H5921\"* sign to|strong=\"H3068\"* us|strong=\"H5414\"*.”" + }, + { + "verseNum": 11, + "text": "Both|strong=\"H8147\"* of|strong=\"H4480\"* them|strong=\"H3318\"* revealed|strong=\"H1540\"* themselves|strong=\"H2244\"* to|strong=\"H3318\"* the|strong=\"H4480\"* garrison|strong=\"H4673\"* of|strong=\"H4480\"* the|strong=\"H4480\"* Philistines|strong=\"H6430\"*; and|strong=\"H8033\"* the|strong=\"H4480\"* Philistines|strong=\"H6430\"* said|strong=\"H3318\"*, “Behold|strong=\"H2009\"*, the|strong=\"H4480\"* Hebrews|strong=\"H5680\"* are|strong=\"H6430\"* coming|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4480\"* the|strong=\"H4480\"* holes|strong=\"H2356\"* where|strong=\"H8033\"* they|strong=\"H8033\"* had|strong=\"H6430\"* hidden|strong=\"H2244\"* themselves|strong=\"H2244\"*!”" + }, + { + "verseNum": 12, + "text": "The|strong=\"H3588\"* men|strong=\"H3478\"* of|strong=\"H3068\"* the|strong=\"H3588\"* garrison|strong=\"H4675\"* answered|strong=\"H6030\"* Jonathan|strong=\"H3129\"* and|strong=\"H3478\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"*, and|strong=\"H3478\"* said|strong=\"H1697\"*, “Come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* us|strong=\"H5414\"*, and|strong=\"H3478\"* we|strong=\"H3068\"* will|strong=\"H3068\"* show|strong=\"H3045\"* you|strong=\"H3588\"* something|strong=\"H1697\"*!”" + }, + { + "verseNum": 13, + "text": "Jonathan|strong=\"H3129\"* climbed|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H5921\"* his|strong=\"H5375\"* hands|strong=\"H3027\"* and|strong=\"H3027\"* on|strong=\"H5921\"* his|strong=\"H5375\"* feet|strong=\"H7272\"*, and|strong=\"H3027\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"* after|strong=\"H5921\"* him|strong=\"H6440\"*, and|strong=\"H3027\"* they|strong=\"H5921\"* fell|strong=\"H5307\"* before|strong=\"H6440\"* Jonathan|strong=\"H3129\"*; and|strong=\"H3027\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"* killed|strong=\"H4191\"* them|strong=\"H5921\"* after|strong=\"H5921\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 14, + "text": "That|strong=\"H3627\"* first|strong=\"H7223\"* slaughter|strong=\"H4347\"*, which|strong=\"H7704\"* Jonathan|strong=\"H3129\"* and|strong=\"H6242\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"* made|strong=\"H1961\"*, was|strong=\"H1961\"* about|strong=\"H1961\"* twenty|strong=\"H6242\"* men, within as|strong=\"H1961\"* it|strong=\"H5375\"* were|strong=\"H1961\"* half|strong=\"H2677\"* a|strong=\"H3068\"* furrow|strong=\"H4618\"*’s length in|strong=\"H1961\"* an|strong=\"H1961\"* acre|strong=\"H6776\"* of|strong=\"H3627\"* land|strong=\"H7704\"*." + }, + { + "verseNum": 15, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* trembling|strong=\"H2731\"* in|strong=\"H5971\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*, in|strong=\"H5971\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, and|strong=\"H5971\"* among|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*; the|strong=\"H3605\"* garrison|strong=\"H4673\"* and|strong=\"H5971\"* the|strong=\"H3605\"* raiders|strong=\"H7843\"* also|strong=\"H1571\"* trembled|strong=\"H2729\"*; and|strong=\"H5971\"* the|strong=\"H3605\"* earth quaked|strong=\"H7264\"*, so|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* an|strong=\"H1961\"* exceedingly great trembling|strong=\"H2731\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H7200\"* watchmen|strong=\"H6822\"* of|strong=\"H1995\"* Saul|strong=\"H7586\"* in|strong=\"H3212\"* Gibeah|strong=\"H1390\"* of|strong=\"H1995\"* Benjamin|strong=\"H1144\"* looked|strong=\"H7200\"*; and|strong=\"H3212\"* behold|strong=\"H2009\"*, the|strong=\"H7200\"* multitude|strong=\"H1995\"* melted|strong=\"H4127\"* away|strong=\"H3212\"* and|strong=\"H3212\"* scattered." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H1980\"* Saul|strong=\"H7586\"* said to|strong=\"H1980\"* the|strong=\"H7200\"* people|strong=\"H5971\"* who|strong=\"H4310\"* were|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H7200\"*, “Count|strong=\"H5375\"* now|strong=\"H4994\"*, and|strong=\"H1980\"* see|strong=\"H7200\"* who|strong=\"H4310\"* is|strong=\"H4310\"* missing|strong=\"H6485\"* from|strong=\"H1980\"* us|strong=\"H4994\"*.” When|strong=\"H7200\"* they|strong=\"H5971\"* had|strong=\"H7586\"* counted|strong=\"H6485\"*, behold|strong=\"H2009\"*, Jonathan|strong=\"H3129\"* and|strong=\"H1980\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"* were|strong=\"H5971\"* not|strong=\"H7200\"* there|strong=\"H2009\"*." + }, + { + "verseNum": 18, + "text": "Saul|strong=\"H7586\"* said to|strong=\"H3478\"* Ahijah, “Bring|strong=\"H5066\"* God’s ark here|strong=\"H5066\"*.” For|strong=\"H3588\"* God’s ark was|strong=\"H1961\"* with|strong=\"H3117\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* at|strong=\"H3478\"* that|strong=\"H3588\"* time|strong=\"H3117\"*." + }, + { + "verseNum": 19, + "text": "While|strong=\"H5704\"* Saul|strong=\"H7586\"* talked|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5704\"* priest|strong=\"H3548\"*, the|strong=\"H5704\"* tumult|strong=\"H1995\"* that|strong=\"H3548\"* was|strong=\"H1961\"* in|strong=\"H1980\"* the|strong=\"H5704\"* camp|strong=\"H4264\"* of|strong=\"H3027\"* the|strong=\"H5704\"* Philistines|strong=\"H6430\"* went|strong=\"H1980\"* on|strong=\"H1980\"* and|strong=\"H1980\"* increased|strong=\"H7227\"*; and|strong=\"H1980\"* Saul|strong=\"H7586\"* said|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5704\"* priest|strong=\"H3548\"*, “Withdraw your|strong=\"H1961\"* hand|strong=\"H3027\"*!”" + }, + { + "verseNum": 20, + "text": "Saul|strong=\"H7586\"* and|strong=\"H1419\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H1961\"* with|strong=\"H5971\"* him|strong=\"H3605\"* were|strong=\"H1961\"* gathered|strong=\"H2199\"* together|strong=\"H2199\"*, and|strong=\"H1419\"* came|strong=\"H1961\"* to|strong=\"H5704\"* the|strong=\"H3605\"* battle|strong=\"H4421\"*; and|strong=\"H1419\"* behold|strong=\"H2009\"*, they|strong=\"H5704\"* were|strong=\"H1961\"* all|strong=\"H3605\"* striking each|strong=\"H3605\"* other|strong=\"H7453\"* with|strong=\"H5971\"* their|strong=\"H3605\"* swords|strong=\"H2719\"* in|strong=\"H4421\"* very|strong=\"H3966\"* great|strong=\"H1419\"* confusion|strong=\"H4103\"*." + }, + { + "verseNum": 21, + "text": "Now|strong=\"H1961\"* the|strong=\"H5927\"* Hebrews|strong=\"H5680\"* who|strong=\"H3478\"* were|strong=\"H3478\"* with|strong=\"H5973\"* the|strong=\"H5927\"* Philistines|strong=\"H6430\"* before|strong=\"H5973\"* and|strong=\"H3478\"* who|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* them|strong=\"H1992\"* into|strong=\"H5927\"* the|strong=\"H5927\"* camp|strong=\"H4264\"* from|strong=\"H5927\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, even|strong=\"H1571\"* they|strong=\"H1992\"* also|strong=\"H1571\"* turned|strong=\"H3478\"* to|strong=\"H3478\"* be|strong=\"H1961\"* with|strong=\"H5973\"* the|strong=\"H5927\"* Israelites|strong=\"H3478\"* who|strong=\"H3478\"* were|strong=\"H3478\"* with|strong=\"H5973\"* Saul|strong=\"H7586\"* and|strong=\"H3478\"* Jonathan|strong=\"H3129\"*." + }, + { + "verseNum": 22, + "text": "Likewise|strong=\"H1571\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"* who|strong=\"H3605\"* had|strong=\"H3478\"* hidden|strong=\"H2244\"* themselves|strong=\"H1992\"* in|strong=\"H3478\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim, when|strong=\"H3588\"* they|strong=\"H1992\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* fled|strong=\"H5127\"*, even|strong=\"H1571\"* they|strong=\"H1992\"* also|strong=\"H1571\"* followed|strong=\"H6430\"* hard|strong=\"H1692\"* after|strong=\"H3588\"* them|strong=\"H1992\"* in|strong=\"H3478\"* the|strong=\"H3605\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 23, + "text": "So|strong=\"H5674\"* Yahweh|strong=\"H3068\"* saved|strong=\"H3467\"* Israel|strong=\"H3478\"* that|strong=\"H3117\"* day|strong=\"H3117\"*; and|strong=\"H3478\"* the|strong=\"H3068\"* battle|strong=\"H4421\"* passed|strong=\"H5674\"* over|strong=\"H5674\"* by|strong=\"H5674\"* Beth Aven." + }, + { + "verseNum": 24, + "text": "The|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* distressed|strong=\"H5065\"* that|strong=\"H5971\"* day|strong=\"H3117\"*; for|strong=\"H5704\"* Saul|strong=\"H7586\"* had|strong=\"H3478\"* adjured the|strong=\"H3605\"* people|strong=\"H5971\"*, saying, “Cursed is|strong=\"H1931\"* the|strong=\"H3605\"* man|strong=\"H3605\"* who|strong=\"H3605\"* eats any|strong=\"H3605\"* food|strong=\"H3899\"* until|strong=\"H5704\"* it|strong=\"H1931\"* is|strong=\"H1931\"* evening|strong=\"H6153\"*, and|strong=\"H3478\"* I|strong=\"H3117\"* am avenged|strong=\"H5358\"* of|strong=\"H3117\"* my|strong=\"H3605\"* enemies.” So|strong=\"H3808\"* none|strong=\"H3808\"* of|strong=\"H3117\"* the|strong=\"H3605\"* people|strong=\"H5971\"* tasted|strong=\"H2938\"* food|strong=\"H3899\"*." + }, + { + "verseNum": 25, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people came|strong=\"H1961\"* into|strong=\"H5921\"* the|strong=\"H3605\"* forest|strong=\"H3293\"*; and|strong=\"H6440\"* there|strong=\"H1961\"* was|strong=\"H1961\"* honey|strong=\"H1706\"* on|strong=\"H5921\"* the|strong=\"H3605\"* ground|strong=\"H7704\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* had|strong=\"H3588\"* come|strong=\"H5971\"* to|strong=\"H3027\"* the|strong=\"H3588\"* forest|strong=\"H3293\"*, behold|strong=\"H2009\"*, honey|strong=\"H1706\"* was|strong=\"H3027\"* dripping, but|strong=\"H3588\"* no|strong=\"H3372\"* one|strong=\"H6310\"* put|strong=\"H5381\"* his|strong=\"H3027\"* hand|strong=\"H3027\"* to|strong=\"H3027\"* his|strong=\"H3027\"* mouth|strong=\"H6310\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* feared|strong=\"H3372\"* the|strong=\"H3588\"* oath|strong=\"H7621\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"H3808\"* Jonathan|strong=\"H3129\"* didn’t hear|strong=\"H8085\"* when|strong=\"H7200\"* his|strong=\"H7971\"* father commanded|strong=\"H6310\"* the|strong=\"H8085\"* people|strong=\"H5971\"* with|strong=\"H5971\"* the|strong=\"H8085\"* oath|strong=\"H7650\"*. Therefore|strong=\"H7971\"* he|strong=\"H3027\"* put|strong=\"H7971\"* out|strong=\"H7971\"* the|strong=\"H8085\"* end|strong=\"H7097\"* of|strong=\"H3027\"* the|strong=\"H8085\"* rod|strong=\"H4294\"* that|strong=\"H5971\"* was|strong=\"H3027\"* in|strong=\"H8085\"* his|strong=\"H7971\"* hand|strong=\"H3027\"* and|strong=\"H7971\"* dipped|strong=\"H2881\"* it|strong=\"H7725\"* in|strong=\"H8085\"* the|strong=\"H8085\"* honeycomb|strong=\"H3295\"*, and|strong=\"H7971\"* put|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"* to|strong=\"H7725\"* his|strong=\"H7971\"* mouth|strong=\"H6310\"*; and|strong=\"H7971\"* his|strong=\"H7971\"* eyes|strong=\"H5869\"* brightened." + }, + { + "verseNum": 28, + "text": "Then|strong=\"H6030\"* one of|strong=\"H3117\"* the|strong=\"H3117\"* people|strong=\"H5971\"* answered|strong=\"H6030\"*, and|strong=\"H6030\"* said|strong=\"H6030\"*, “Your|strong=\"H3117\"* father directly commanded the|strong=\"H3117\"* people|strong=\"H5971\"* with|strong=\"H3117\"* an|strong=\"H7650\"* oath|strong=\"H7650\"*, saying, ‘Cursed is|strong=\"H3117\"* the|strong=\"H3117\"* man|strong=\"H6030\"* who|strong=\"H5971\"* eats food|strong=\"H3899\"* today|strong=\"H3117\"*.’” So|strong=\"H7650\"* the|strong=\"H3117\"* people|strong=\"H5971\"* were|strong=\"H5971\"* faint|strong=\"H5774\"*." + }, + { + "verseNum": 29, + "text": "Then|strong=\"H2088\"* Jonathan|strong=\"H3129\"* said, “My|strong=\"H7200\"* father has|strong=\"H3588\"* troubled|strong=\"H5916\"* the|strong=\"H7200\"* land. Please|strong=\"H4994\"* look|strong=\"H7200\"* how|strong=\"H3588\"* my|strong=\"H7200\"* eyes|strong=\"H5869\"* have|strong=\"H5869\"* brightened because|strong=\"H3588\"* I|strong=\"H3588\"* tasted|strong=\"H2938\"* a|strong=\"H3068\"* little|strong=\"H4592\"* of|strong=\"H5869\"* this|strong=\"H2088\"* honey|strong=\"H1706\"*." + }, + { + "verseNum": 30, + "text": "How|strong=\"H3588\"* much|strong=\"H7235\"* more|strong=\"H7235\"*, if|strong=\"H3588\"* perhaps|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* had|strong=\"H6430\"* eaten freely today|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3588\"* plunder|strong=\"H7998\"* of|strong=\"H3117\"* their|strong=\"H3588\"* enemies which|strong=\"H5971\"* they|strong=\"H3588\"* found|strong=\"H4672\"*? For|strong=\"H3588\"* now|strong=\"H6258\"* there|strong=\"H4672\"* has|strong=\"H3117\"* been|strong=\"H5971\"* no|strong=\"H3808\"* great|strong=\"H7235\"* slaughter|strong=\"H4347\"* among|strong=\"H4672\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"*.”" + }, + { + "verseNum": 31, + "text": "They|strong=\"H3117\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"* that|strong=\"H5971\"* day|strong=\"H3117\"* from|strong=\"H3117\"* Michmash|strong=\"H4363\"* to|strong=\"H3117\"* Aijalon. The|strong=\"H5221\"* people|strong=\"H5971\"* were|strong=\"H5971\"* very|strong=\"H3966\"* faint|strong=\"H5774\"*;" + }, + { + "verseNum": 32, + "text": "and|strong=\"H1121\"* the|strong=\"H5921\"* people|strong=\"H5971\"* pounced on|strong=\"H5921\"* the|strong=\"H5921\"* plunder|strong=\"H7998\"*, and|strong=\"H1121\"* took|strong=\"H3947\"* sheep|strong=\"H6629\"*, cattle|strong=\"H1241\"*, and|strong=\"H1121\"* calves|strong=\"H1121\"*, and|strong=\"H1121\"* killed|strong=\"H7819\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* ground; and|strong=\"H1121\"* the|strong=\"H5921\"* people|strong=\"H5971\"* ate them|strong=\"H5921\"* with|strong=\"H6213\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 33, + "text": "Then|strong=\"H2009\"* they|strong=\"H3117\"* told|strong=\"H5046\"* Saul|strong=\"H7586\"*, saying, “Behold|strong=\"H2009\"*, the|strong=\"H5921\"* people|strong=\"H5971\"* are|strong=\"H3117\"* sinning|strong=\"H2398\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, in|strong=\"H5921\"* that|strong=\"H5971\"* they|strong=\"H3117\"* eat meat with|strong=\"H3068\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*.”" + }, + { + "verseNum": 34, + "text": "Saul|strong=\"H7586\"* said, “Disperse|strong=\"H6327\"* yourselves|strong=\"H3027\"* among|strong=\"H5971\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* tell|strong=\"H3605\"* them|strong=\"H3027\"*, ‘Every|strong=\"H3605\"* man|strong=\"H3605\"* bring|strong=\"H5066\"* me|strong=\"H5066\"* here|strong=\"H2088\"* his|strong=\"H3605\"* ox|strong=\"H7794\"*, and|strong=\"H3068\"* every|strong=\"H3605\"* man|strong=\"H3605\"* his|strong=\"H3605\"* sheep|strong=\"H7716\"*, and|strong=\"H3068\"* kill|strong=\"H7819\"* them|strong=\"H3027\"* here|strong=\"H2088\"*, and|strong=\"H3068\"* eat; and|strong=\"H3068\"* don’t sin|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* eating meat with|strong=\"H3068\"* the|strong=\"H3605\"* blood|strong=\"H1818\"*.’” All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* brought|strong=\"H5066\"* every|strong=\"H3605\"* man|strong=\"H3605\"* his|strong=\"H3605\"* ox|strong=\"H7794\"* with|strong=\"H3068\"* him|strong=\"H3027\"* that|strong=\"H5971\"* night|strong=\"H3915\"*, and|strong=\"H3068\"* killed|strong=\"H7819\"* them|strong=\"H3027\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 35, + "text": "Saul|strong=\"H7586\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. This|strong=\"H3068\"* was|strong=\"H3068\"* the|strong=\"H3068\"* first|strong=\"H2490\"* altar|strong=\"H4196\"* that|strong=\"H3068\"* he|strong=\"H3068\"* built|strong=\"H1129\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 36, + "text": "Saul|strong=\"H7586\"* said, “Let|strong=\"H3381\"*’s go|strong=\"H3381\"* down|strong=\"H3381\"* after|strong=\"H1242\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* by|strong=\"H1242\"* night|strong=\"H3915\"*, and|strong=\"H3548\"* take|strong=\"H6213\"* plunder among|strong=\"H3808\"* them|strong=\"H6213\"* until|strong=\"H5704\"* the|strong=\"H3605\"* morning|strong=\"H1242\"* light. Let|strong=\"H3381\"*’s not|strong=\"H3808\"* leave|strong=\"H7604\"* a|strong=\"H3068\"* man|strong=\"H2896\"* of|strong=\"H5869\"* them|strong=\"H6213\"*.”" + }, + { + "verseNum": 37, + "text": "Saul|strong=\"H7586\"* asked|strong=\"H7592\"* counsel|strong=\"H7592\"* of|strong=\"H3117\"* God|strong=\"H5414\"*: “Shall|strong=\"H3478\"* I|strong=\"H3117\"* go|strong=\"H3381\"* down|strong=\"H3381\"* after|strong=\"H3117\"* the|strong=\"H5414\"* Philistines|strong=\"H6430\"*? Will|strong=\"H3478\"* you|strong=\"H5414\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3381\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*?” But|strong=\"H3808\"* he|strong=\"H1931\"* didn’t answer|strong=\"H6030\"* him|strong=\"H5414\"* that|strong=\"H3117\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 38, + "text": "Saul|strong=\"H7586\"* said, “Draw|strong=\"H5066\"* near|strong=\"H5066\"* here|strong=\"H1988\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* chiefs|strong=\"H6438\"* of|strong=\"H3117\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3117\"* know|strong=\"H3045\"* and|strong=\"H3117\"* see|strong=\"H7200\"* in|strong=\"H3117\"* whom|strong=\"H5971\"* this|strong=\"H2063\"* sin|strong=\"H2403\"* has|strong=\"H1961\"* been|strong=\"H1961\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 39, + "text": "For|strong=\"H3588\"* as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, who|strong=\"H3605\"* saves|strong=\"H3467\"* Israel|strong=\"H3478\"*, though|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3068\"* in|strong=\"H3478\"* Jonathan|strong=\"H3129\"* my|strong=\"H3605\"* son|strong=\"H1121\"*, he|strong=\"H3588\"* shall|strong=\"H3068\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*.” But|strong=\"H3588\"* there|strong=\"H3426\"* was|strong=\"H3068\"* not|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1121\"* among|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* answered|strong=\"H6030\"* him|strong=\"H4191\"*." + }, + { + "verseNum": 40, + "text": "Then|strong=\"H1961\"* he|strong=\"H6213\"* said to|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, “You|strong=\"H3605\"* be|strong=\"H1961\"* on|strong=\"H1961\"* one|strong=\"H3605\"* side|strong=\"H5676\"*, and|strong=\"H1121\"* I|strong=\"H1121\"* and|strong=\"H1121\"* Jonathan|strong=\"H3129\"* my|strong=\"H3605\"* son|strong=\"H1121\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H3605\"* other|strong=\"H5676\"* side|strong=\"H5676\"*.”" + }, + { + "verseNum": 41, + "text": "Therefore|strong=\"H3068\"* Saul|strong=\"H7586\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, “Show the|strong=\"H3068\"* right|strong=\"H3478\"*.”" + }, + { + "verseNum": 42, + "text": "Saul|strong=\"H7586\"* said, “Cast|strong=\"H5307\"* lots between me|strong=\"H3920\"* and|strong=\"H1121\"* Jonathan|strong=\"H3129\"* my|strong=\"H7586\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 43, + "text": "Then|strong=\"H6213\"* Saul|strong=\"H7586\"* said to|strong=\"H4191\"* Jonathan|strong=\"H3129\"*, “Tell|strong=\"H5046\"* me|strong=\"H5046\"* what|strong=\"H4100\"* you|strong=\"H6213\"* have|strong=\"H3027\"* done|strong=\"H6213\"*!”" + }, + { + "verseNum": 44, + "text": "Saul|strong=\"H7586\"* said, “God do|strong=\"H6213\"* so|strong=\"H6213\"* and|strong=\"H7586\"* more|strong=\"H3254\"* also|strong=\"H3541\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H6213\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*, Jonathan|strong=\"H3129\"*.”" + }, + { + "verseNum": 45, + "text": "The|strong=\"H3588\"* people|strong=\"H5971\"* said to|strong=\"H3478\"* Saul|strong=\"H7586\"*, “Shall|strong=\"H3068\"* Jonathan|strong=\"H3129\"* die|strong=\"H4191\"*, who|strong=\"H5971\"* has|strong=\"H3068\"* worked|strong=\"H6213\"* this|strong=\"H2088\"* great|strong=\"H1419\"* salvation|strong=\"H3444\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*? Far|strong=\"H2486\"* from|strong=\"H3478\"* it|strong=\"H3588\"*! As|strong=\"H3117\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, there|strong=\"H2088\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* one|strong=\"H2088\"* hair|strong=\"H8185\"* of|strong=\"H3068\"* his|strong=\"H3068\"* head|strong=\"H7218\"* fall|strong=\"H5307\"* to|strong=\"H3478\"* the|strong=\"H3588\"* ground, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* worked|strong=\"H6213\"* with|strong=\"H5973\"* God|strong=\"H3068\"* today|strong=\"H3117\"*!” So|strong=\"H6213\"* the|strong=\"H3588\"* people|strong=\"H5971\"* rescued|strong=\"H6299\"* Jonathan|strong=\"H3129\"*, so|strong=\"H6213\"* he|strong=\"H3588\"* didn’t die|strong=\"H4191\"*." + }, + { + "verseNum": 46, + "text": "Then|strong=\"H1980\"* Saul|strong=\"H7586\"* went|strong=\"H1980\"* up|strong=\"H5927\"* from|strong=\"H5927\"* following|strong=\"H1980\"* the|strong=\"H5927\"* Philistines|strong=\"H6430\"*; and|strong=\"H1980\"* the|strong=\"H5927\"* Philistines|strong=\"H6430\"* went|strong=\"H1980\"* to|strong=\"H1980\"* their|strong=\"H5927\"* own place|strong=\"H4725\"*." + }, + { + "verseNum": 47, + "text": "Now|strong=\"H3478\"* when|strong=\"H1121\"* Saul|strong=\"H7586\"* had|strong=\"H3478\"* taken|strong=\"H3920\"* the|strong=\"H3605\"* kingdom|strong=\"H4410\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*, he|strong=\"H3605\"* fought|strong=\"H3898\"* against|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* enemies on|strong=\"H5921\"* every|strong=\"H3605\"* side|strong=\"H5439\"*: against|strong=\"H5921\"* Moab|strong=\"H4124\"*, and|strong=\"H1121\"* against|strong=\"H5921\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* against|strong=\"H5921\"* Edom, and|strong=\"H1121\"* against|strong=\"H5921\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Zobah|strong=\"H6678\"*, and|strong=\"H1121\"* against|strong=\"H5921\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*. Wherever|strong=\"H3605\"* he|strong=\"H3605\"* turned|strong=\"H6437\"* himself|strong=\"H6437\"*, he|strong=\"H3605\"* defeated them|strong=\"H5921\"*." + }, + { + "verseNum": 48, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* valiantly|strong=\"H2428\"* and|strong=\"H3478\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* Amalekites|strong=\"H6002\"*, and|strong=\"H3478\"* delivered|strong=\"H5337\"* Israel|strong=\"H3478\"* out|strong=\"H6213\"* of|strong=\"H3027\"* the|strong=\"H5221\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* those|strong=\"H6213\"* who|strong=\"H3478\"* plundered|strong=\"H8154\"* them|strong=\"H5221\"*." + }, + { + "verseNum": 49, + "text": "Now|strong=\"H1961\"* the|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"* were|strong=\"H1961\"* Jonathan|strong=\"H3129\"*, Ishvi|strong=\"H3440\"*, and|strong=\"H1121\"* Malchishua; and|strong=\"H1121\"* the|strong=\"H1961\"* names|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H1961\"* two|strong=\"H8147\"* daughters|strong=\"H1323\"* were|strong=\"H1961\"* these|strong=\"H8147\"*: the|strong=\"H1961\"* name|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H1961\"* firstborn|strong=\"H1067\"* Merab|strong=\"H4764\"*, and|strong=\"H1121\"* the|strong=\"H1961\"* name|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H1961\"* younger|strong=\"H6996\"* Michal|strong=\"H4324\"*." + }, + { + "verseNum": 50, + "text": "The|strong=\"H8034\"* name|strong=\"H8034\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*’s wife was|strong=\"H8034\"* Ahinoam the|strong=\"H8034\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Ahimaaz. The|strong=\"H8034\"* name|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H8034\"* captain|strong=\"H8269\"* of|strong=\"H1121\"* his|strong=\"H7586\"* army|strong=\"H6635\"* was|strong=\"H8034\"* Abner the|strong=\"H8034\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"*, Saul|strong=\"H7586\"*’s uncle|strong=\"H1730\"*." + }, + { + "verseNum": 51, + "text": "Kish|strong=\"H7027\"* was|strong=\"H7586\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*, and|strong=\"H1121\"* Ner|strong=\"H5369\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Abner was|strong=\"H7586\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abiel." + }, + { + "verseNum": 52, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* severe|strong=\"H2389\"* war|strong=\"H4421\"* against|strong=\"H5921\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*; and|strong=\"H1121\"* when|strong=\"H1961\"* Saul|strong=\"H7586\"* saw|strong=\"H7200\"* any|strong=\"H3605\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* or|strong=\"H3117\"* any|strong=\"H3605\"* valiant|strong=\"H2428\"* man|strong=\"H1368\"*, he|strong=\"H3117\"* took|strong=\"H1961\"* him|strong=\"H5921\"* into|strong=\"H5921\"* his|strong=\"H3605\"* service." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Samuel|strong=\"H8050\"* said|strong=\"H1697\"* to|strong=\"H3478\"* Saul|strong=\"H7586\"*, “Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H3478\"* anoint|strong=\"H4886\"* you|strong=\"H7971\"* to|strong=\"H3478\"* be|strong=\"H1697\"* king|strong=\"H4428\"* over|strong=\"H5921\"* his|strong=\"H3068\"* people|strong=\"H5971\"*, over|strong=\"H5921\"* Israel|strong=\"H3478\"*. Now|strong=\"H6258\"* therefore|strong=\"H5921\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H5921\"* voice|strong=\"H6963\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*, ‘I|strong=\"H3541\"* remember|strong=\"H6485\"* what|strong=\"H6213\"* Amalek|strong=\"H6002\"* did|strong=\"H6213\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"*, how|strong=\"H1870\"* he|strong=\"H6213\"* set|strong=\"H7760\"* himself|strong=\"H6213\"* against|strong=\"H5927\"* him|strong=\"H6213\"* on|strong=\"H1870\"* the|strong=\"H3541\"* way|strong=\"H1870\"* when|strong=\"H6213\"* he|strong=\"H6213\"* came|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H6213\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 3, + "text": "Now|strong=\"H6258\"* go|strong=\"H3212\"* and|strong=\"H3212\"* strike|strong=\"H5221\"* Amalek|strong=\"H6002\"*, and|strong=\"H3212\"* utterly|strong=\"H2763\"* destroy|strong=\"H2763\"* all|strong=\"H3605\"* that|strong=\"H3605\"* they|strong=\"H3808\"* have|strong=\"H2550\"*, and|strong=\"H3212\"* don’t spare|strong=\"H2550\"* them|strong=\"H5921\"*; but|strong=\"H3808\"* kill|strong=\"H4191\"* both|strong=\"H3605\"* man|strong=\"H4191\"* and|strong=\"H3212\"* woman, infant|strong=\"H3243\"* and|strong=\"H3212\"* nursing|strong=\"H3243\"* baby, ox|strong=\"H7794\"* and|strong=\"H3212\"* sheep|strong=\"H7716\"*, camel|strong=\"H1581\"* and|strong=\"H3212\"* donkey|strong=\"H2543\"*.’”" + }, + { + "verseNum": 4, + "text": "Saul|strong=\"H7586\"* summoned|strong=\"H8085\"* the|strong=\"H8085\"* people|strong=\"H5971\"*, and|strong=\"H3967\"* counted|strong=\"H6485\"* them|strong=\"H6485\"* in|strong=\"H8085\"* Telaim|strong=\"H2923\"*, two|strong=\"H3967\"* hundred|strong=\"H3967\"* thousand footmen|strong=\"H7273\"* and|strong=\"H3967\"* ten|strong=\"H6235\"* thousand men|strong=\"H5971\"* of|strong=\"H5971\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 5, + "text": "Saul|strong=\"H7586\"* came|strong=\"H7586\"* to|strong=\"H5704\"* the|strong=\"H5704\"* city|strong=\"H5892\"* of|strong=\"H5892\"* Amalek|strong=\"H6002\"*, and|strong=\"H5892\"* set an|strong=\"H5892\"* ambush in|strong=\"H5892\"* the|strong=\"H5704\"* valley|strong=\"H5158\"*." + }, + { + "verseNum": 6, + "text": "Saul|strong=\"H7586\"* said to|strong=\"H3381\"* the|strong=\"H3605\"* Kenites|strong=\"H7017\"*, “Go|strong=\"H3212\"*, depart|strong=\"H5493\"*, go|strong=\"H3212\"* down|strong=\"H3381\"* from|strong=\"H5493\"* among|strong=\"H8432\"* the|strong=\"H3605\"* Amalekites|strong=\"H6002\"*, lest|strong=\"H6435\"* I|strong=\"H4714\"* destroy|strong=\"H6213\"* you|strong=\"H3605\"* with|strong=\"H5973\"* them|strong=\"H6213\"*; for|strong=\"H6213\"* you|strong=\"H3605\"* showed|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H3381\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* when|strong=\"H6213\"* they|strong=\"H6213\"* came|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H6213\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*.” So|strong=\"H6213\"* the|strong=\"H3605\"* Kenites|strong=\"H7017\"* departed|strong=\"H3212\"* from|strong=\"H5493\"* among|strong=\"H8432\"* the|strong=\"H3605\"* Amalekites|strong=\"H6002\"*." + }, + { + "verseNum": 7, + "text": "Saul|strong=\"H7586\"* struck|strong=\"H5221\"* the|strong=\"H6440\"* Amalekites|strong=\"H6002\"*, from|strong=\"H6440\"* Havilah|strong=\"H2341\"* as|strong=\"H6440\"* you|strong=\"H6440\"* go to|strong=\"H5921\"* Shur|strong=\"H7793\"*, which is|strong=\"H6440\"* before|strong=\"H6440\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3605\"* took|strong=\"H8610\"* Agag the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Amalekites|strong=\"H6002\"* alive|strong=\"H2416\"*, and|strong=\"H4428\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* with|strong=\"H5971\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H3808\"* Saul|strong=\"H7586\"* and|strong=\"H5971\"* the|strong=\"H3605\"* people|strong=\"H5971\"* spared|strong=\"H2550\"* Agag and|strong=\"H5971\"* the|strong=\"H3605\"* best|strong=\"H4315\"* of|strong=\"H5971\"* the|strong=\"H3605\"* sheep|strong=\"H6629\"*, of|strong=\"H5971\"* the|strong=\"H3605\"* cattle|strong=\"H1241\"*, of|strong=\"H5971\"* the|strong=\"H3605\"* fat calves|strong=\"H1241\"*, of|strong=\"H5971\"* the|strong=\"H3605\"* lambs|strong=\"H3733\"*, and|strong=\"H5971\"* all|strong=\"H3605\"* that|strong=\"H5971\"* was|strong=\"H7586\"* good|strong=\"H2896\"*, and|strong=\"H5971\"* were|strong=\"H5971\"* not|strong=\"H3808\"* willing to|strong=\"H5921\"* utterly|strong=\"H2763\"* destroy|strong=\"H2763\"* them|strong=\"H5921\"*; but|strong=\"H3808\"* everything|strong=\"H3605\"* that|strong=\"H5971\"* was|strong=\"H7586\"* vile|strong=\"H5240\"* and|strong=\"H5971\"* refuse|strong=\"H3808\"*, that|strong=\"H5971\"* they|strong=\"H3808\"* destroyed|strong=\"H2763\"* utterly|strong=\"H2763\"*." + }, + { + "verseNum": 10, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Samuel|strong=\"H8050\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 11, + "text": "“It|strong=\"H3588\"* grieves me|strong=\"H7725\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* set|strong=\"H6965\"* up|strong=\"H6965\"* Saul|strong=\"H7586\"* to|strong=\"H7725\"* be|strong=\"H3808\"* king|strong=\"H4428\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* turned|strong=\"H7725\"* back|strong=\"H7725\"* from|strong=\"H7725\"* following me|strong=\"H7725\"*, and|strong=\"H6965\"* has|strong=\"H3068\"* not|strong=\"H3808\"* performed|strong=\"H6965\"* my|strong=\"H3605\"* commandments|strong=\"H1697\"*.” Samuel|strong=\"H8050\"* was|strong=\"H3068\"* angry|strong=\"H2734\"*; and|strong=\"H6965\"* he|strong=\"H3588\"* cried|strong=\"H2199\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* all|strong=\"H3605\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 12, + "text": "Samuel|strong=\"H8050\"* rose|strong=\"H7925\"* early|strong=\"H7925\"* to|strong=\"H3381\"* meet|strong=\"H7122\"* Saul|strong=\"H7586\"* in|strong=\"H3027\"* the|strong=\"H5674\"* morning|strong=\"H1242\"*; and|strong=\"H3027\"* Samuel|strong=\"H8050\"* was|strong=\"H7586\"* told|strong=\"H5046\"*, saying, “Saul|strong=\"H7586\"* came|strong=\"H3381\"* to|strong=\"H3381\"* Carmel|strong=\"H3760\"*, and|strong=\"H3027\"* behold|strong=\"H2009\"*, he|strong=\"H3027\"* set|strong=\"H5324\"* up|strong=\"H5324\"* a|strong=\"H3068\"* monument|strong=\"H3027\"* for|strong=\"H3027\"* himself|strong=\"H3027\"*, turned|strong=\"H5437\"*, passed|strong=\"H5674\"* on|strong=\"H5674\"*, and|strong=\"H3027\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Gilgal|strong=\"H1537\"*.”" + }, + { + "verseNum": 13, + "text": "Samuel|strong=\"H8050\"* came|strong=\"H3068\"* to|strong=\"H3068\"* Saul|strong=\"H7586\"*; and|strong=\"H6965\"* Saul|strong=\"H7586\"* said|strong=\"H1697\"* to|strong=\"H3068\"* him|strong=\"H1288\"*, “You|strong=\"H1288\"* are|strong=\"H1697\"* blessed|strong=\"H1288\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*! I|strong=\"H1697\"* have|strong=\"H3068\"* performed|strong=\"H6965\"* the|strong=\"H3068\"* commandment|strong=\"H1697\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 14, + "text": "Samuel|strong=\"H8050\"* said|strong=\"H8085\"*, “Then|strong=\"H2088\"* what|strong=\"H4100\"* does|strong=\"H4100\"* this|strong=\"H2088\"* bleating|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* sheep|strong=\"H6629\"* in|strong=\"H8085\"* my|strong=\"H8085\"* ears and|strong=\"H6963\"* the|strong=\"H8085\"* lowing|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* cattle|strong=\"H1241\"* which|strong=\"H4100\"* I|strong=\"H2088\"* hear|strong=\"H8085\"* mean?”" + }, + { + "verseNum": 15, + "text": "Saul|strong=\"H7586\"* said, “They|strong=\"H3068\"* have|strong=\"H3068\"* brought|strong=\"H3068\"* them|strong=\"H5921\"* from|strong=\"H5921\"* the|strong=\"H5921\"* Amalekites|strong=\"H6003\"*; for|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"* spared|strong=\"H2550\"* the|strong=\"H5921\"* best|strong=\"H4315\"* of|strong=\"H3068\"* the|strong=\"H5921\"* sheep|strong=\"H6629\"* and|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H5921\"* cattle|strong=\"H1241\"*, to|strong=\"H3068\"* sacrifice|strong=\"H2076\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. We|strong=\"H2763\"* have|strong=\"H3068\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* the|strong=\"H5921\"* rest|strong=\"H3498\"*.”" + }, + { + "verseNum": 16, + "text": "Then|strong=\"H1696\"* Samuel|strong=\"H8050\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Saul|strong=\"H7586\"*, “Stay|strong=\"H7503\"*, and|strong=\"H3068\"* I|strong=\"H3068\"* will|strong=\"H3068\"* tell|strong=\"H5046\"* you|strong=\"H5046\"* what|strong=\"H1696\"* Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5046\"* last night|strong=\"H3915\"*.”" + }, + { + "verseNum": 17, + "text": "Samuel|strong=\"H8050\"* said, “Though you|strong=\"H5921\"* were|strong=\"H3478\"* little|strong=\"H6996\"* in|strong=\"H5921\"* your|strong=\"H3068\"* own|strong=\"H5869\"* sight|strong=\"H5869\"*, weren’t you|strong=\"H5921\"* made|strong=\"H3478\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H4428\"* the|strong=\"H5921\"* tribes|strong=\"H7626\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*? Yahweh|strong=\"H3068\"* anointed|strong=\"H4886\"* you|strong=\"H5921\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* on|strong=\"H1870\"* a|strong=\"H3068\"* journey|strong=\"H1870\"*, and|strong=\"H3068\"* said, ‘Go|strong=\"H3212\"*, and|strong=\"H3068\"* utterly|strong=\"H2763\"* destroy|strong=\"H2763\"* the|strong=\"H3068\"* sinners|strong=\"H2400\"* the|strong=\"H3068\"* Amalekites|strong=\"H6002\"*, and|strong=\"H3068\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* them|strong=\"H7971\"* until|strong=\"H5704\"* they|strong=\"H3068\"* are|strong=\"H3068\"* consumed|strong=\"H3615\"*.’" + }, + { + "verseNum": 19, + "text": "Why|strong=\"H4100\"* then|strong=\"H6213\"* didn’t you|strong=\"H6213\"* obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*, but|strong=\"H3808\"* took the|strong=\"H8085\"* plunder|strong=\"H7998\"*, and|strong=\"H3068\"* did|strong=\"H6213\"* that|strong=\"H8085\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*?”" + }, + { + "verseNum": 20, + "text": "Saul|strong=\"H7586\"* said|strong=\"H8085\"* to|strong=\"H3212\"* Samuel|strong=\"H8050\"*, “But|strong=\"H8085\"* I|strong=\"H8085\"* have|strong=\"H3068\"* obeyed|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* gone|strong=\"H3212\"* the|strong=\"H8085\"* way|strong=\"H1870\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* brought|strong=\"H3212\"* Agag the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Amalek|strong=\"H6002\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* the|strong=\"H8085\"* Amalekites|strong=\"H6002\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"H3947\"* the|strong=\"H3947\"* people|strong=\"H5971\"* took|strong=\"H3947\"* of|strong=\"H3068\"* the|strong=\"H3947\"* plunder|strong=\"H7998\"*, sheep|strong=\"H6629\"* and|strong=\"H3068\"* cattle|strong=\"H1241\"*, the|strong=\"H3947\"* best of|strong=\"H3068\"* the|strong=\"H3947\"* devoted|strong=\"H2764\"* things|strong=\"H2764\"*, to|strong=\"H3068\"* sacrifice|strong=\"H2076\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H3068\"* Gilgal|strong=\"H1537\"*.”" + }, + { + "verseNum": 22, + "text": "Samuel|strong=\"H8050\"* said|strong=\"H8085\"*, “Has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* as|strong=\"H3068\"* great|strong=\"H2896\"* delight|strong=\"H2656\"* in|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* and|strong=\"H3068\"* sacrifices|strong=\"H2077\"*, as|strong=\"H3068\"* in|strong=\"H3068\"* obeying|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*? Behold|strong=\"H2009\"*, to|strong=\"H3068\"* obey|strong=\"H8085\"* is|strong=\"H3068\"* better|strong=\"H2896\"* than|strong=\"H2896\"* sacrifice|strong=\"H2077\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* listen|strong=\"H8085\"* than|strong=\"H2896\"* the|strong=\"H8085\"* fat|strong=\"H2459\"* of|strong=\"H3068\"* rams." + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* rebellion|strong=\"H4805\"* is|strong=\"H3068\"* as|strong=\"H1697\"* the|strong=\"H3588\"* sin|strong=\"H2403\"* of|strong=\"H4428\"* witchcraft|strong=\"H7081\"*, and|strong=\"H3068\"* stubbornness|strong=\"H6484\"* is|strong=\"H3068\"* as|strong=\"H1697\"* idolatry|strong=\"H8655\"* and|strong=\"H3068\"* teraphim|strong=\"H8655\"*.+ 15:23 teraphim were household idols that may have been associated with inheritance rights to the household property.* Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* rejected|strong=\"H3988\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, he|strong=\"H3588\"* has|strong=\"H3068\"* also|strong=\"H3068\"* rejected|strong=\"H3988\"* you|strong=\"H3588\"* from|strong=\"H3068\"* being|strong=\"H3068\"* king|strong=\"H4428\"*.”" + }, + { + "verseNum": 24, + "text": "Saul|strong=\"H7586\"* said|strong=\"H1697\"* to|strong=\"H3068\"* Samuel|strong=\"H8050\"*, “I|strong=\"H3588\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* transgressed|strong=\"H5674\"* the|strong=\"H8085\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* your|strong=\"H3068\"* words|strong=\"H1697\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* feared|strong=\"H3372\"* the|strong=\"H8085\"* people|strong=\"H5971\"* and|strong=\"H3068\"* obeyed|strong=\"H8085\"* their|strong=\"H3068\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 25, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* pardon|strong=\"H5375\"* my|strong=\"H3068\"* sin|strong=\"H2403\"*, and|strong=\"H3068\"* turn|strong=\"H7725\"* again|strong=\"H7725\"* with|strong=\"H5973\"* me|strong=\"H4994\"*, that|strong=\"H3068\"* I|strong=\"H6258\"* may|strong=\"H4994\"* worship|strong=\"H7812\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 26, + "text": "Samuel|strong=\"H8050\"* said|strong=\"H1697\"* to|strong=\"H7725\"* Saul|strong=\"H7586\"*, “I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* return|strong=\"H7725\"* with|strong=\"H5973\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* rejected|strong=\"H3988\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, and|strong=\"H3478\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* rejected|strong=\"H3988\"* you|strong=\"H3588\"* from|strong=\"H7725\"* being|strong=\"H1961\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 27, + "text": "As|strong=\"H2388\"* Samuel|strong=\"H8050\"* turned|strong=\"H5437\"* around|strong=\"H5437\"* to|strong=\"H3212\"* go|strong=\"H3212\"* away|strong=\"H3212\"*, Saul|strong=\"H2388\"* grabbed|strong=\"H2388\"* the|strong=\"H2388\"* skirt|strong=\"H3671\"* of|strong=\"H3671\"* his|strong=\"H7167\"* robe|strong=\"H4598\"*, and|strong=\"H3212\"* it|strong=\"H5437\"* tore|strong=\"H7167\"*." + }, + { + "verseNum": 28, + "text": "Samuel|strong=\"H8050\"* said to|strong=\"H3478\"* him|strong=\"H5414\"*, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* torn|strong=\"H7167\"* the|strong=\"H5921\"* kingdom|strong=\"H4468\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* from|strong=\"H4480\"* you|strong=\"H5414\"* today|strong=\"H3117\"*, and|strong=\"H3478\"* has|strong=\"H3068\"* given|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3478\"* a|strong=\"H3068\"* neighbor|strong=\"H7453\"* of|strong=\"H3068\"* yours|strong=\"H5414\"* who|strong=\"H3068\"* is|strong=\"H3068\"* better|strong=\"H2896\"* than|strong=\"H4480\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 29, + "text": "Also|strong=\"H1571\"* the|strong=\"H3588\"* Strength|strong=\"H5331\"* of|strong=\"H3808\"* Israel|strong=\"H3478\"* will|strong=\"H3478\"* not|strong=\"H3808\"* lie|strong=\"H8266\"* nor|strong=\"H3808\"* repent|strong=\"H5162\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* not|strong=\"H3808\"* a|strong=\"H3068\"* man, that|strong=\"H3588\"* he|strong=\"H1931\"* should|strong=\"H3588\"* repent|strong=\"H5162\"*.”" + }, + { + "verseNum": 30, + "text": "Then|strong=\"H6258\"* he|strong=\"H3068\"* said, “I|strong=\"H6258\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"*; yet|strong=\"H3068\"* please|strong=\"H4994\"* honor|strong=\"H3513\"* me|strong=\"H4994\"* now|strong=\"H6258\"* before|strong=\"H5048\"* the|strong=\"H3068\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* my|strong=\"H3068\"* people|strong=\"H5971\"* and|strong=\"H3478\"* before|strong=\"H5048\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* come|strong=\"H7725\"* back|strong=\"H7725\"* with|strong=\"H5973\"* me|strong=\"H4994\"*, that|strong=\"H5971\"* I|strong=\"H6258\"* may|strong=\"H4994\"* worship|strong=\"H7812\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.”" + }, + { + "verseNum": 31, + "text": "So|strong=\"H7725\"* Samuel|strong=\"H8050\"* went|strong=\"H3068\"* back|strong=\"H7725\"* with|strong=\"H3068\"* Saul|strong=\"H7586\"*; and|strong=\"H3068\"* Saul|strong=\"H7586\"* worshiped|strong=\"H7812\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 32, + "text": "Then|strong=\"H4428\"* Samuel|strong=\"H8050\"* said, “Bring|strong=\"H5066\"* Agag the|strong=\"H5493\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5493\"* Amalekites|strong=\"H6002\"* here|strong=\"H5066\"* to|strong=\"H3212\"* me|strong=\"H5493\"*!”" + }, + { + "verseNum": 33, + "text": "Samuel|strong=\"H8050\"* said|strong=\"H3651\"*, “As|strong=\"H3651\"* your|strong=\"H3068\"* sword|strong=\"H2719\"* has|strong=\"H3068\"* made|strong=\"H3068\"* women childless|strong=\"H7921\"*, so|strong=\"H3651\"* your|strong=\"H3068\"* mother will|strong=\"H3068\"* be|strong=\"H3068\"* childless|strong=\"H7921\"* among|strong=\"H2719\"* women!” Then|strong=\"H3651\"* Samuel|strong=\"H8050\"* cut Agag in|strong=\"H3068\"* pieces|strong=\"H8158\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* Gilgal|strong=\"H1537\"*." + }, + { + "verseNum": 34, + "text": "Then|strong=\"H5927\"* Samuel|strong=\"H8050\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Ramah|strong=\"H7414\"*; and|strong=\"H1004\"* Saul|strong=\"H7586\"* went|strong=\"H3212\"* up|strong=\"H5927\"* to|strong=\"H3212\"* his|strong=\"H7586\"* house|strong=\"H1004\"* to|strong=\"H3212\"* Gibeah|strong=\"H1390\"* of|strong=\"H1004\"* Saul|strong=\"H7586\"*." + }, + { + "verseNum": 35, + "text": "Samuel|strong=\"H8050\"* came|strong=\"H3478\"* no|strong=\"H3808\"* more|strong=\"H3254\"* to|strong=\"H5704\"* see|strong=\"H7200\"* Saul|strong=\"H7586\"* until|strong=\"H5704\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H3068\"* his|strong=\"H3068\"* death|strong=\"H4194\"*, but|strong=\"H3588\"* Samuel|strong=\"H8050\"* mourned for|strong=\"H3588\"* Saul|strong=\"H7586\"*. Yahweh|strong=\"H3068\"* grieved that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3068\"* made|strong=\"H4427\"* Saul|strong=\"H7586\"* king|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H5704\"* Samuel|strong=\"H8050\"*, “How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H3068\"* you|strong=\"H3588\"* mourn|strong=\"H5921\"* for|strong=\"H3588\"* Saul|strong=\"H7586\"*, since|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* rejected|strong=\"H3988\"* him|strong=\"H5921\"* from|strong=\"H5921\"* being|strong=\"H4427\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*? Fill|strong=\"H4390\"* your|strong=\"H3068\"* horn|strong=\"H7161\"* with|strong=\"H4390\"* oil|strong=\"H8081\"*, and|strong=\"H1121\"* go|strong=\"H3212\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* send|strong=\"H7971\"* you|strong=\"H3588\"* to|strong=\"H5704\"* Jesse|strong=\"H3448\"* the|strong=\"H5921\"* Bethlehemite|strong=\"H1022\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* provided|strong=\"H7200\"* a|strong=\"H3068\"* king|strong=\"H4428\"* for|strong=\"H3588\"* myself among|strong=\"H5921\"* his|strong=\"H3068\"* sons|strong=\"H1121\"*.”" + }, + { + "verseNum": 2, + "text": "Samuel|strong=\"H8050\"* said|strong=\"H8085\"*, “How|strong=\"H8085\"* can|strong=\"H3947\"* I|strong=\"H8085\"* go|strong=\"H3212\"*? If Saul|strong=\"H7586\"* hears|strong=\"H8085\"* it|strong=\"H3947\"*, he|strong=\"H3068\"* will|strong=\"H3068\"* kill|strong=\"H2026\"* me|strong=\"H3947\"*.”" + }, + { + "verseNum": 3, + "text": "Call|strong=\"H7121\"* Jesse|strong=\"H3448\"* to|strong=\"H6213\"* the|strong=\"H6213\"* sacrifice|strong=\"H2077\"*, and|strong=\"H6213\"* I|strong=\"H3045\"* will|strong=\"H6213\"* show|strong=\"H6213\"* you|strong=\"H6213\"* what|strong=\"H3045\"* you|strong=\"H6213\"* shall|strong=\"H6213\"* do|strong=\"H6213\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* anoint|strong=\"H4886\"* to|strong=\"H6213\"* me|strong=\"H7121\"* him|strong=\"H7121\"* whom|strong=\"H7121\"* I|strong=\"H3045\"* name|strong=\"H7121\"* to|strong=\"H6213\"* you|strong=\"H6213\"*.”" + }, + { + "verseNum": 4, + "text": "Samuel|strong=\"H8050\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"*, and|strong=\"H3068\"* came|strong=\"H3068\"* to|strong=\"H1696\"* Bethlehem|strong=\"H1035\"*. The|strong=\"H6213\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* the|strong=\"H6213\"* city|strong=\"H5892\"* came|strong=\"H3068\"* to|strong=\"H1696\"* meet|strong=\"H7122\"* him|strong=\"H6213\"* trembling|strong=\"H2729\"*, and|strong=\"H3068\"* said|strong=\"H1696\"*, “Do|strong=\"H6213\"* you|strong=\"H6213\"* come|strong=\"H7122\"* peaceably|strong=\"H7965\"*?”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H3068\"* said|strong=\"H7121\"*, “Peaceably|strong=\"H7965\"*; I|strong=\"H1121\"* have|strong=\"H3068\"* come to|strong=\"H3068\"* sacrifice|strong=\"H2077\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Sanctify|strong=\"H6942\"* yourselves|strong=\"H6942\"*, and|strong=\"H1121\"* come with|strong=\"H3068\"* me|strong=\"H7121\"* to|strong=\"H3068\"* the|strong=\"H3068\"* sacrifice|strong=\"H2077\"*.” He|strong=\"H3068\"* sanctified|strong=\"H6942\"* Jesse|strong=\"H3448\"* and|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* called|strong=\"H7121\"* them|strong=\"H7121\"* to|strong=\"H3068\"* the|strong=\"H3068\"* sacrifice|strong=\"H2077\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"H1961\"* they|strong=\"H3068\"* had|strong=\"H3068\"* come|strong=\"H1961\"*, he|strong=\"H3068\"* looked|strong=\"H7200\"* at|strong=\"H3068\"* Eliab, and|strong=\"H3068\"* said, “Surely|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s anointed|strong=\"H4899\"* is|strong=\"H3068\"* before|strong=\"H5048\"* him|strong=\"H7200\"*.”" + }, + { + "verseNum": 7, + "text": "But|strong=\"H3588\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Samuel|strong=\"H8050\"*, “Don’t look|strong=\"H7200\"* on|strong=\"H7200\"* his|strong=\"H3068\"* face|strong=\"H5869\"*, or|strong=\"H3808\"* on|strong=\"H7200\"* the|strong=\"H7200\"* height|strong=\"H6967\"* of|strong=\"H3068\"* his|strong=\"H3068\"* stature|strong=\"H6967\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* rejected|strong=\"H3988\"* him|strong=\"H7200\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* don’t see|strong=\"H7200\"* as|strong=\"H3824\"* man|strong=\"H7200\"* sees|strong=\"H7200\"*. For|strong=\"H3588\"* man|strong=\"H7200\"* looks|strong=\"H7200\"* at|strong=\"H3068\"* the|strong=\"H7200\"* outward|strong=\"H5869\"* appearance|strong=\"H4758\"*, but|strong=\"H3588\"* Yahweh|strong=\"H3068\"* looks|strong=\"H7200\"* at|strong=\"H3068\"* the|strong=\"H7200\"* heart|strong=\"H3824\"*.”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H2088\"* Jesse|strong=\"H3448\"* called|strong=\"H7121\"* Abinadab, and|strong=\"H3068\"* made|strong=\"H3448\"* him|strong=\"H6440\"* pass|strong=\"H5674\"* before|strong=\"H6440\"* Samuel|strong=\"H8050\"*. He|strong=\"H3068\"* said|strong=\"H7121\"*, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* chosen this|strong=\"H2088\"* one|strong=\"H2088\"*, either|strong=\"H1571\"*.”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H2088\"* Jesse|strong=\"H3448\"* made|strong=\"H3448\"* Shammah|strong=\"H8048\"* to|strong=\"H3068\"* pass|strong=\"H5674\"* by|strong=\"H5674\"*. He|strong=\"H3068\"* said, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* chosen this|strong=\"H2088\"* one|strong=\"H2088\"*, either|strong=\"H1571\"*.”" + }, + { + "verseNum": 10, + "text": "Jesse|strong=\"H3448\"* made|strong=\"H3448\"* seven|strong=\"H7651\"* of|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"* to|strong=\"H3068\"* pass|strong=\"H5674\"* before|strong=\"H6440\"* Samuel|strong=\"H8050\"*. Samuel|strong=\"H8050\"* said to|strong=\"H3068\"* Jesse|strong=\"H3448\"*, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* chosen these|strong=\"H6440\"*.”" + }, + { + "verseNum": 11, + "text": "Samuel|strong=\"H8050\"* said to|strong=\"H5704\"* Jesse|strong=\"H3448\"*, “Are|strong=\"H5288\"* all|strong=\"H8552\"* your|strong=\"H3947\"* children|strong=\"H5288\"* here|strong=\"H6311\"*?”" + }, + { + "verseNum": 12, + "text": "He|strong=\"H1931\"* sent|strong=\"H7971\"*, and|strong=\"H6965\"* brought|strong=\"H5869\"* him|strong=\"H7971\"* in|strong=\"H3068\"*. Now|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3068\"* ruddy, with|strong=\"H5973\"* a|strong=\"H3068\"* handsome|strong=\"H3303\"* face|strong=\"H5869\"* and|strong=\"H6965\"* good|strong=\"H2896\"* appearance|strong=\"H5869\"*. Yahweh|strong=\"H3068\"* said, “Arise|strong=\"H6965\"*! Anoint|strong=\"H4886\"* him|strong=\"H7971\"*, for|strong=\"H3588\"* this|strong=\"H2088\"* is|strong=\"H3068\"* he|strong=\"H1931\"*.”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H6965\"* Samuel|strong=\"H8050\"* took|strong=\"H3947\"* the|strong=\"H3947\"* horn|strong=\"H7161\"* of|strong=\"H3068\"* oil|strong=\"H8081\"* and|strong=\"H6965\"* anointed|strong=\"H4886\"* him|strong=\"H3947\"* in|strong=\"H3068\"* the|strong=\"H3947\"* middle|strong=\"H7130\"* of|strong=\"H3068\"* his|strong=\"H3068\"* brothers. Then|strong=\"H6965\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* came|strong=\"H3068\"* mightily|strong=\"H6743\"* on|strong=\"H3117\"* David|strong=\"H1732\"* from|strong=\"H3947\"* that|strong=\"H3117\"* day|strong=\"H3117\"* forward|strong=\"H4605\"*. So|strong=\"H3947\"* Samuel|strong=\"H8050\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Ramah|strong=\"H7414\"*." + }, + { + "verseNum": 14, + "text": "Now Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* departed|strong=\"H5493\"* from|strong=\"H5493\"* Saul|strong=\"H7586\"*, and|strong=\"H3068\"* an|strong=\"H3068\"* evil|strong=\"H7451\"* spirit|strong=\"H7307\"* from|strong=\"H5493\"* Yahweh|strong=\"H3068\"* troubled|strong=\"H7451\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 15, + "text": "Saul|strong=\"H7586\"*’s servants|strong=\"H5650\"* said to|strong=\"H5650\"* him, “See|strong=\"H2009\"* now|strong=\"H4994\"*, an|strong=\"H7307\"* evil|strong=\"H7451\"* spirit|strong=\"H7307\"* from|strong=\"H7307\"* God troubles|strong=\"H7451\"* you|strong=\"H4994\"*." + }, + { + "verseNum": 16, + "text": "Let|strong=\"H4994\"* our|strong=\"H5921\"* lord now|strong=\"H4994\"* command|strong=\"H3027\"* your|strong=\"H5921\"* servants|strong=\"H5650\"* who|strong=\"H5650\"* are|strong=\"H3027\"* in|strong=\"H5921\"* front|strong=\"H6440\"* of|strong=\"H3027\"* you|strong=\"H6440\"* to|strong=\"H1961\"* seek|strong=\"H1245\"* out|strong=\"H1245\"* a|strong=\"H3068\"* man|strong=\"H7451\"* who|strong=\"H5650\"* is|strong=\"H3027\"* a|strong=\"H3068\"* skillful|strong=\"H3045\"* player|strong=\"H5059\"* on|strong=\"H5921\"* the|strong=\"H6440\"* harp|strong=\"H3658\"*. Then|strong=\"H1961\"* when|strong=\"H1961\"* the|strong=\"H6440\"* evil|strong=\"H7451\"* spirit|strong=\"H7307\"* from|strong=\"H6440\"* God|strong=\"H3027\"* is|strong=\"H3027\"* on|strong=\"H5921\"* you|strong=\"H6440\"*, he|strong=\"H3027\"* will|strong=\"H1961\"* play|strong=\"H5059\"* with|strong=\"H5921\"* his|strong=\"H6440\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* you|strong=\"H6440\"* will|strong=\"H1961\"* be|strong=\"H1961\"* well|strong=\"H2895\"*.”" + }, + { + "verseNum": 17, + "text": "Saul|strong=\"H7586\"* said to|strong=\"H5650\"* his|strong=\"H7200\"* servants|strong=\"H5650\"*, “Provide|strong=\"H7200\"* me|strong=\"H4994\"* now|strong=\"H4994\"* a|strong=\"H3068\"* man|strong=\"H7200\"* who|strong=\"H5650\"* can|strong=\"H5650\"* play|strong=\"H5059\"* well|strong=\"H3190\"*, and|strong=\"H5650\"* bring him|strong=\"H7200\"* to|strong=\"H5650\"* me|strong=\"H4994\"*.”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H6030\"* one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H7200\"* young|strong=\"H5288\"* men|strong=\"H1368\"* answered|strong=\"H6030\"* and|strong=\"H1121\"* said|strong=\"H1697\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* a|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"* the|strong=\"H7200\"* Bethlehemite|strong=\"H1022\"* who|strong=\"H3068\"* is|strong=\"H3068\"* skillful|strong=\"H3045\"* in|strong=\"H3068\"* playing|strong=\"H5059\"*, a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H5288\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*, a|strong=\"H3068\"* man|strong=\"H5288\"* of|strong=\"H1121\"* war|strong=\"H4421\"*, prudent in|strong=\"H3068\"* speech|strong=\"H1697\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* handsome|strong=\"H8389\"* person|strong=\"H3045\"*; and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H7200\"*.”" + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"H1732\"* Saul|strong=\"H7586\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* Jesse|strong=\"H3448\"*, and|strong=\"H1121\"* said, “Send|strong=\"H7971\"* me|strong=\"H7971\"* David|strong=\"H1732\"* your|strong=\"H7971\"* son|strong=\"H1121\"*, who|strong=\"H1121\"* is|strong=\"H1121\"* with|strong=\"H1732\"* the|strong=\"H7971\"* sheep|strong=\"H6629\"*.”" + }, + { + "verseNum": 20, + "text": "Jesse|strong=\"H3448\"* took|strong=\"H3947\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"* loaded with|strong=\"H3899\"* bread|strong=\"H3899\"*, a|strong=\"H3068\"* container of|strong=\"H1121\"* wine|strong=\"H3196\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* young|strong=\"H1121\"* goat|strong=\"H5795\"*, and|strong=\"H1121\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* by|strong=\"H3027\"* David|strong=\"H1732\"* his|strong=\"H7971\"* son|strong=\"H1121\"* to|strong=\"H7971\"* Saul|strong=\"H7586\"*." + }, + { + "verseNum": 21, + "text": "David|strong=\"H1732\"* came|strong=\"H1961\"* to|strong=\"H1961\"* Saul|strong=\"H7586\"* and|strong=\"H1732\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*. He|strong=\"H1732\"* loved him|strong=\"H6440\"* greatly|strong=\"H3966\"*; and|strong=\"H1732\"* he|strong=\"H1732\"* became|strong=\"H1961\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"*." + }, + { + "verseNum": 22, + "text": "Saul|strong=\"H7586\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* Jesse|strong=\"H3448\"*, saying, “Please|strong=\"H4994\"* let|strong=\"H7971\"* David|strong=\"H1732\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* me|strong=\"H6440\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H7586\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H4672\"* my|strong=\"H1732\"* sight|strong=\"H5869\"*.”" + }, + { + "verseNum": 23, + "text": "When|strong=\"H1961\"* the|strong=\"H5921\"* spirit|strong=\"H7307\"* from|strong=\"H5493\"* God|strong=\"H3027\"* was|strong=\"H1961\"* on|strong=\"H5921\"* Saul|strong=\"H7586\"*, David|strong=\"H1732\"* took|strong=\"H3947\"* the|strong=\"H5921\"* harp|strong=\"H3658\"* and|strong=\"H3027\"* played|strong=\"H5059\"* with|strong=\"H5921\"* his|strong=\"H3947\"* hand|strong=\"H3027\"*; so|strong=\"H3947\"* Saul|strong=\"H7586\"* was|strong=\"H1961\"* refreshed|strong=\"H7304\"* and|strong=\"H3027\"* was|strong=\"H1961\"* well|strong=\"H2895\"*, and|strong=\"H3027\"* the|strong=\"H5921\"* evil|strong=\"H7451\"* spirit|strong=\"H7307\"* departed|strong=\"H5493\"* from|strong=\"H5493\"* him|strong=\"H5921\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Now the|strong=\"H3063\"* Philistines|strong=\"H6430\"* gathered|strong=\"H6430\"* together their armies|strong=\"H4264\"* to|strong=\"H3063\"* battle|strong=\"H4421\"*; and|strong=\"H3063\"* they|strong=\"H3063\"* were|strong=\"H6430\"* gathered|strong=\"H6430\"* together at|strong=\"H2583\"* Socoh|strong=\"H7755\"*, which|strong=\"H3063\"* belongs to|strong=\"H3063\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* encamped|strong=\"H2583\"* between|strong=\"H4421\"* Socoh|strong=\"H7755\"* and|strong=\"H3063\"* Azekah|strong=\"H5825\"* in|strong=\"H2583\"* Ephesdammim." + }, + { + "verseNum": 2, + "text": "Saul|strong=\"H7586\"* and|strong=\"H3478\"* the|strong=\"H7122\"* men|strong=\"H3478\"* of|strong=\"H6010\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* gathered|strong=\"H6430\"* together, and|strong=\"H3478\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H7122\"* valley|strong=\"H6010\"* of|strong=\"H6010\"* Elah, and|strong=\"H3478\"* set|strong=\"H6186\"* the|strong=\"H7122\"* battle|strong=\"H4421\"* in|strong=\"H2583\"* array|strong=\"H6186\"* against|strong=\"H7122\"* the|strong=\"H7122\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H5975\"* Philistines|strong=\"H6430\"* stood|strong=\"H5975\"* on|strong=\"H5975\"* the|strong=\"H5975\"* mountain|strong=\"H2022\"* on|strong=\"H5975\"* the|strong=\"H5975\"* one|strong=\"H2088\"* side|strong=\"H2088\"*, and|strong=\"H3478\"* Israel|strong=\"H3478\"* stood|strong=\"H5975\"* on|strong=\"H5975\"* the|strong=\"H5975\"* mountain|strong=\"H2022\"* on|strong=\"H5975\"* the|strong=\"H5975\"* other|strong=\"H2088\"* side|strong=\"H2088\"*: and|strong=\"H3478\"* there|strong=\"H2088\"* was|strong=\"H3478\"* a|strong=\"H3068\"* valley|strong=\"H1516\"* between them|strong=\"H5975\"*." + }, + { + "verseNum": 4, + "text": "A|strong=\"H3068\"* champion out|strong=\"H3318\"* of|strong=\"H8034\"* the|strong=\"H3318\"* camp|strong=\"H4264\"* of|strong=\"H8034\"* the|strong=\"H3318\"* Philistines|strong=\"H6430\"* named|strong=\"H8034\"* Goliath|strong=\"H1555\"* of|strong=\"H8034\"* Gath|strong=\"H1661\"*, whose|strong=\"H8034\"* height|strong=\"H1363\"* was|strong=\"H8034\"* six|strong=\"H8337\"* cubits and|strong=\"H3318\"* a|strong=\"H3068\"* span|strong=\"H2239\"*+ 17:4 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. A span is the length from the tip of a man’s thumb to the tip of his little finger when his hand is stretched out (about half a cubit, or 9 inches, or 22.8 cm.) Therefore, Goliath was about 9 feet and 9 inches or 2.97 meters tall.* went|strong=\"H3318\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H1931\"* had|strong=\"H1931\"* a|strong=\"H3068\"* helmet|strong=\"H3553\"* of|strong=\"H7218\"* bronze|strong=\"H5178\"* on|strong=\"H5921\"* his|strong=\"H5921\"* head|strong=\"H7218\"*, and|strong=\"H7218\"* he|strong=\"H1931\"* wore|strong=\"H5921\"* a|strong=\"H3068\"* coat|strong=\"H8302\"* of|strong=\"H7218\"* mail|strong=\"H7193\"*; and|strong=\"H7218\"* the|strong=\"H5921\"* weight|strong=\"H4948\"* of|strong=\"H7218\"* the|strong=\"H5921\"* coat|strong=\"H8302\"* was|strong=\"H1931\"* five|strong=\"H2568\"* thousand shekels|strong=\"H8255\"*+ 17:5 A shekel is about 10 grams or about 0.35 ounces, so 5000 shekels is about 50 kilograms or 110 pounds.* of|strong=\"H7218\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H5921\"* had bronze|strong=\"H5178\"* shin armor on|strong=\"H5921\"* his|strong=\"H5921\"* legs|strong=\"H7272\"* and|strong=\"H5178\"* a|strong=\"H3068\"* bronze|strong=\"H5178\"* javelin|strong=\"H3591\"* between|strong=\"H5921\"* his|strong=\"H5921\"* shoulders|strong=\"H3802\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H6440\"* staff of|strong=\"H6440\"* his|strong=\"H5375\"* spear|strong=\"H2595\"* was|strong=\"H6440\"* like|strong=\"H1980\"* a|strong=\"H3068\"* weaver’s beam|strong=\"H4500\"*; and|strong=\"H3967\"* his|strong=\"H5375\"* spear|strong=\"H2595\"*’s head|strong=\"H1270\"* weighed six|strong=\"H8337\"* hundred|strong=\"H3967\"* shekels|strong=\"H8255\"* of|strong=\"H6440\"* iron|strong=\"H1270\"*.+ 17:7 A shekel is about 10 grams or about 0.35 ounces, so 600 shekels is about 6 kilograms or about 13 pounds.* His|strong=\"H5375\"* shield|strong=\"H6793\"* bearer|strong=\"H5375\"* went|strong=\"H1980\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3808\"* stood|strong=\"H5975\"* and|strong=\"H3478\"* cried|strong=\"H7121\"* to|strong=\"H3381\"* the|strong=\"H7121\"* armies|strong=\"H4634\"* of|strong=\"H5650\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* said|strong=\"H7121\"* to|strong=\"H3381\"* them|strong=\"H3381\"*, “Why|strong=\"H4100\"* have|strong=\"H5650\"* you|strong=\"H3808\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3381\"* set|strong=\"H5975\"* your|strong=\"H3808\"* battle|strong=\"H4421\"* in|strong=\"H3478\"* array|strong=\"H6186\"*? Am I|strong=\"H5650\"* not|strong=\"H3808\"* a|strong=\"H3068\"* Philistine|strong=\"H6430\"*, and|strong=\"H3478\"* you|strong=\"H3808\"* servants|strong=\"H5650\"* to|strong=\"H3381\"* Saul|strong=\"H7586\"*? Choose|strong=\"H1262\"* a|strong=\"H3068\"* man for|strong=\"H7121\"* yourselves|strong=\"H6186\"*, and|strong=\"H3478\"* let|strong=\"H3381\"* him|strong=\"H7121\"* come|strong=\"H3318\"* down|strong=\"H3381\"* to|strong=\"H3381\"* me|strong=\"H7121\"*." + }, + { + "verseNum": 9, + "text": "If|strong=\"H1961\"* he|strong=\"H3201\"* is|strong=\"H5650\"* able|strong=\"H3201\"* to|strong=\"H3201\"* fight|strong=\"H3898\"* with|strong=\"H3898\"* me|strong=\"H5221\"* and|strong=\"H5650\"* kill|strong=\"H5221\"* me|strong=\"H5221\"*, then|strong=\"H1961\"* will|strong=\"H1961\"* we|strong=\"H3068\"* be|strong=\"H1961\"* your|strong=\"H1961\"* servants|strong=\"H5650\"*; but|strong=\"H1961\"* if|strong=\"H1961\"* I|strong=\"H3201\"* prevail|strong=\"H3201\"* against|strong=\"H3898\"* him|strong=\"H5221\"* and|strong=\"H5650\"* kill|strong=\"H5221\"* him|strong=\"H5221\"*, then|strong=\"H1961\"* you|strong=\"H5221\"* will|strong=\"H1961\"* be|strong=\"H1961\"* our|strong=\"H5650\"* servants|strong=\"H5650\"* and|strong=\"H5650\"* serve|strong=\"H5647\"* us|strong=\"H1961\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H5414\"* Philistine|strong=\"H6430\"* said, “I|strong=\"H3117\"* defy|strong=\"H2778\"* the|strong=\"H5414\"* armies|strong=\"H4634\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"* today|strong=\"H3117\"*! Give|strong=\"H5414\"* me|strong=\"H5414\"* a|strong=\"H3068\"* man|strong=\"H2088\"*, that|strong=\"H3117\"* we|strong=\"H3068\"* may|strong=\"H3478\"* fight|strong=\"H3898\"* together|strong=\"H3162\"*!”" + }, + { + "verseNum": 11, + "text": "When|strong=\"H8085\"* Saul|strong=\"H7586\"* and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* heard|strong=\"H8085\"* those|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H3605\"* Philistine|strong=\"H6430\"*, they|strong=\"H1697\"* were|strong=\"H3478\"* dismayed|strong=\"H2865\"* and|strong=\"H3478\"* greatly|strong=\"H3966\"* afraid|strong=\"H3372\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"H3117\"* David|strong=\"H1732\"* was|strong=\"H8034\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* that|strong=\"H3117\"* Ephrathite of|strong=\"H1121\"* Bethlehem|strong=\"H1035\"* Judah|strong=\"H3063\"*, whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Jesse|strong=\"H3448\"*; and|strong=\"H1121\"* he|strong=\"H3117\"* had|strong=\"H1732\"* eight|strong=\"H8083\"* sons|strong=\"H1121\"*. The|strong=\"H3117\"* man|strong=\"H1121\"* was|strong=\"H8034\"* an|strong=\"H2088\"* elderly old|strong=\"H1121\"* man|strong=\"H1121\"* in|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H1980\"* three|strong=\"H7969\"* oldest|strong=\"H1419\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"* had|strong=\"H7586\"* gone|strong=\"H1980\"* after|strong=\"H7992\"* Saul|strong=\"H7586\"* to|strong=\"H1980\"* the|strong=\"H1980\"* battle|strong=\"H4421\"*; and|strong=\"H1121\"* the|strong=\"H1980\"* names|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H7586\"* three|strong=\"H7969\"* sons|strong=\"H1121\"* who|strong=\"H1121\"* went|strong=\"H1980\"* to|strong=\"H1980\"* the|strong=\"H1980\"* battle|strong=\"H4421\"* were|strong=\"H1121\"* Eliab the|strong=\"H1980\"* firstborn|strong=\"H1060\"*, and|strong=\"H1121\"* next|strong=\"H4932\"* to|strong=\"H1980\"* him|strong=\"H1980\"* Abinadab, and|strong=\"H1121\"* the|strong=\"H1980\"* third|strong=\"H7992\"* Shammah|strong=\"H8048\"*." + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* was|strong=\"H1732\"* the|strong=\"H1732\"* youngest|strong=\"H6996\"*; and|strong=\"H1980\"* the|strong=\"H1732\"* three|strong=\"H7969\"* oldest|strong=\"H1419\"* followed|strong=\"H1980\"* Saul|strong=\"H7586\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H5921\"* David|strong=\"H1732\"* went|strong=\"H1980\"* back|strong=\"H7725\"* and|strong=\"H1980\"* forth|strong=\"H1980\"* from|strong=\"H7725\"* Saul|strong=\"H7586\"* to|strong=\"H1980\"* feed|strong=\"H7462\"* his|strong=\"H1732\"* father’s sheep|strong=\"H6629\"* at|strong=\"H5921\"* Bethlehem|strong=\"H1035\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3117\"* Philistine|strong=\"H6430\"* came|strong=\"H5066\"* near|strong=\"H5066\"* morning|strong=\"H7925\"* and|strong=\"H3117\"* evening|strong=\"H6150\"*, and|strong=\"H3117\"* presented|strong=\"H3320\"* himself|strong=\"H3320\"* forty days|strong=\"H3117\"*." + }, + { + "verseNum": 17, + "text": "Jesse|strong=\"H3448\"* said to|strong=\"H1121\"* David|strong=\"H1732\"* his|strong=\"H3947\"* son|strong=\"H1121\"*, “Now|strong=\"H4994\"* take|strong=\"H3947\"* for|strong=\"H1121\"* your|strong=\"H3947\"* brothers|strong=\"H1121\"* an|strong=\"H3947\"* ephah+ 17:17 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H1121\"* this|strong=\"H2088\"* parched|strong=\"H7039\"* grain|strong=\"H7039\"* and|strong=\"H1121\"* these|strong=\"H2088\"* ten|strong=\"H6235\"* loaves|strong=\"H3899\"*, and|strong=\"H1121\"* carry|strong=\"H3947\"* them|strong=\"H3947\"* quickly|strong=\"H7323\"* to|strong=\"H1121\"* the|strong=\"H3947\"* camp|strong=\"H4264\"* to|strong=\"H1121\"* your|strong=\"H3947\"* brothers|strong=\"H1121\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H2461\"* bring|strong=\"H3947\"* these|strong=\"H3947\"* ten|strong=\"H6235\"* cheeses|strong=\"H2461\"* to|strong=\"H3947\"* the|strong=\"H3947\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* their|strong=\"H3947\"* thousand; and|strong=\"H2461\"* see|strong=\"H6485\"* how|strong=\"H7965\"* your|strong=\"H3947\"* brothers are|strong=\"H8269\"* doing, and|strong=\"H2461\"* bring|strong=\"H3947\"* back|strong=\"H3947\"* news|strong=\"H6161\"*.”" + }, + { + "verseNum": 19, + "text": "Now|strong=\"H3478\"* Saul|strong=\"H7586\"*, and|strong=\"H3478\"* they|strong=\"H1992\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H6010\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3605\"* valley|strong=\"H6010\"* of|strong=\"H6010\"* Elah, fighting|strong=\"H3898\"* with|strong=\"H5973\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 20, + "text": "David|strong=\"H1732\"* rose|strong=\"H7925\"* up|strong=\"H5375\"* early|strong=\"H7925\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"* and|strong=\"H3212\"* left|strong=\"H3318\"* the|strong=\"H5921\"* sheep|strong=\"H6629\"* with|strong=\"H5921\"* a|strong=\"H3068\"* keeper|strong=\"H8104\"*, and|strong=\"H3212\"* took|strong=\"H5375\"* the|strong=\"H5921\"* provisions and|strong=\"H3212\"* went|strong=\"H3212\"*, as|strong=\"H3318\"* Jesse|strong=\"H3448\"* had|strong=\"H1732\"* commanded|strong=\"H6680\"* him|strong=\"H5921\"*. He|strong=\"H1732\"* came|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5921\"* place|strong=\"H4634\"* of|strong=\"H5921\"* the|strong=\"H5921\"* wagons as|strong=\"H3318\"* the|strong=\"H5921\"* army|strong=\"H2428\"* which|strong=\"H2428\"* was|strong=\"H1732\"* going|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5921\"* fight|strong=\"H4421\"* shouted|strong=\"H7321\"* for|strong=\"H5921\"* the|strong=\"H5921\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 21, + "text": "Israel|strong=\"H3478\"* and|strong=\"H3478\"* the|strong=\"H7122\"* Philistines|strong=\"H6430\"* put|strong=\"H6186\"* the|strong=\"H7122\"* battle|strong=\"H4634\"* in|strong=\"H3478\"* array|strong=\"H6186\"*, army|strong=\"H4634\"* against|strong=\"H7122\"* army|strong=\"H4634\"*." + }, + { + "verseNum": 22, + "text": "David|strong=\"H1732\"* left|strong=\"H5203\"* his|strong=\"H8104\"* baggage|strong=\"H3627\"* in|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* keeper|strong=\"H8104\"* of|strong=\"H3027\"* the|strong=\"H5921\"* baggage|strong=\"H3627\"* and|strong=\"H3027\"* ran|strong=\"H7323\"* to|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H4634\"*, and|strong=\"H3027\"* came|strong=\"H1732\"* and|strong=\"H3027\"* greeted|strong=\"H7592\"* his|strong=\"H8104\"* brothers." + }, + { + "verseNum": 23, + "text": "As|strong=\"H1697\"* he|strong=\"H1931\"* talked|strong=\"H1696\"* with|strong=\"H5973\"* them|strong=\"H5927\"*, behold|strong=\"H2009\"*, the|strong=\"H8085\"* champion, the|strong=\"H8085\"* Philistine|strong=\"H6430\"* of|strong=\"H1697\"* Gath|strong=\"H1661\"*, Goliath|strong=\"H1555\"* by|strong=\"H8034\"* name|strong=\"H8034\"*, came|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H1696\"* of|strong=\"H1697\"* the|strong=\"H8085\"* ranks of|strong=\"H1697\"* the|strong=\"H8085\"* Philistines|strong=\"H6430\"*, and|strong=\"H1732\"* said|strong=\"H1696\"* the|strong=\"H8085\"* same|strong=\"H1931\"* words|strong=\"H1697\"*; and|strong=\"H1732\"* David|strong=\"H1732\"* heard|strong=\"H8085\"* them|strong=\"H5927\"*." + }, + { + "verseNum": 24, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"*, when|strong=\"H7200\"* they|strong=\"H3605\"* saw|strong=\"H7200\"* the|strong=\"H3605\"* man|strong=\"H3605\"*, fled|strong=\"H5127\"* from|strong=\"H6440\"* him|strong=\"H6440\"* and|strong=\"H3478\"* were|strong=\"H3478\"* terrified|strong=\"H3966\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H7200\"* men|strong=\"H1419\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* said, “Have|strong=\"H1961\"* you|strong=\"H3588\"* seen|strong=\"H7200\"* this|strong=\"H2088\"* man|strong=\"H1419\"* who|strong=\"H3478\"* has|strong=\"H1961\"* come|strong=\"H5927\"* up|strong=\"H5927\"*? He|strong=\"H3588\"* has|strong=\"H1961\"* surely|strong=\"H3588\"* come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* defy|strong=\"H2778\"* Israel|strong=\"H3478\"*. The|strong=\"H7200\"* king|strong=\"H4428\"* will|strong=\"H1961\"* give|strong=\"H5414\"* great|strong=\"H1419\"* riches|strong=\"H6239\"* to|strong=\"H3478\"* the|strong=\"H7200\"* man|strong=\"H1419\"* who|strong=\"H3478\"* kills|strong=\"H5221\"* him|strong=\"H5414\"*, and|strong=\"H3478\"* will|strong=\"H1961\"* give|strong=\"H5414\"* him|strong=\"H5414\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"*, and|strong=\"H3478\"* will|strong=\"H1961\"* make|strong=\"H6213\"* his|strong=\"H5414\"* father’s house|strong=\"H1004\"* tax-free in|strong=\"H3478\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 26, + "text": "David|strong=\"H1732\"* spoke to|strong=\"H3478\"* the|strong=\"H5921\"* men|strong=\"H6213\"* who|strong=\"H4310\"* stood|strong=\"H5975\"* by|strong=\"H5921\"* him|strong=\"H5921\"*, saying, “What|strong=\"H4100\"* shall|strong=\"H3478\"* be|strong=\"H3478\"* done|strong=\"H6213\"* to|strong=\"H3478\"* the|strong=\"H5921\"* man|strong=\"H2088\"* who|strong=\"H4310\"* kills|strong=\"H5221\"* this|strong=\"H2088\"* Philistine|strong=\"H6430\"* and|strong=\"H3478\"* takes|strong=\"H5221\"* away|strong=\"H5493\"* the|strong=\"H5921\"* reproach|strong=\"H2781\"* from|strong=\"H5493\"* Israel|strong=\"H3478\"*? For|strong=\"H3588\"* who|strong=\"H4310\"* is|strong=\"H2088\"* this|strong=\"H2088\"* uncircumcised|strong=\"H6189\"* Philistine|strong=\"H6430\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* should|strong=\"H4100\"* defy|strong=\"H2778\"* the|strong=\"H5921\"* armies|strong=\"H4634\"* of|strong=\"H5921\"* the|strong=\"H5921\"* living|strong=\"H2416\"* God|strong=\"H4310\"*?”" + }, + { + "verseNum": 27, + "text": "The|strong=\"H5221\"* people|strong=\"H5971\"* answered|strong=\"H1697\"* him|strong=\"H5221\"* in|strong=\"H6213\"* this|strong=\"H2088\"* way|strong=\"H1697\"*, saying|strong=\"H1697\"*, “So|strong=\"H6213\"* shall|strong=\"H5971\"* it|strong=\"H6213\"* be|strong=\"H1697\"* done|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H5221\"* man|strong=\"H2088\"* who|strong=\"H5971\"* kills|strong=\"H5221\"* him|strong=\"H5221\"*.”" + }, + { + "verseNum": 28, + "text": "Eliab his|strong=\"H1732\"* oldest|strong=\"H1419\"* brother heard|strong=\"H8085\"* when|strong=\"H3588\"* he|strong=\"H3588\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5921\"* men|strong=\"H1419\"*; and|strong=\"H1419\"* Eliab’s anger|strong=\"H3824\"* burned|strong=\"H2734\"* against|strong=\"H5921\"* David|strong=\"H1732\"*, and|strong=\"H1419\"* he|strong=\"H3588\"* said|strong=\"H1696\"*, “Why|strong=\"H4100\"* have|strong=\"H3045\"* you|strong=\"H3588\"* come|strong=\"H3381\"* down|strong=\"H3381\"*? With|strong=\"H1696\"* whom|strong=\"H4310\"* have|strong=\"H3045\"* you|strong=\"H3588\"* left|strong=\"H5203\"* those|strong=\"H5921\"* few|strong=\"H4592\"* sheep|strong=\"H6629\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*? I|strong=\"H3588\"* know|strong=\"H3045\"* your|strong=\"H5921\"* pride|strong=\"H2087\"* and|strong=\"H1419\"* the|strong=\"H5921\"* evil|strong=\"H7455\"* of|strong=\"H4057\"* your|strong=\"H5921\"* heart|strong=\"H3824\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3045\"* come|strong=\"H3381\"* down|strong=\"H3381\"* that|strong=\"H3588\"* you|strong=\"H3588\"* might|strong=\"H4616\"* see|strong=\"H7200\"* the|strong=\"H5921\"* battle|strong=\"H4421\"*.”" + }, + { + "verseNum": 29, + "text": "David|strong=\"H1732\"* said|strong=\"H1697\"*, “What|strong=\"H4100\"* have|strong=\"H1697\"* I|strong=\"H1697\"* now|strong=\"H6258\"* done|strong=\"H6213\"*? Is|strong=\"H1931\"* there|strong=\"H6258\"* not|strong=\"H3808\"* a|strong=\"H3068\"* cause|strong=\"H1697\"*?”" + }, + { + "verseNum": 30, + "text": "He|strong=\"H5971\"* turned|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* him|strong=\"H7725\"* toward|strong=\"H4136\"* another|strong=\"H2088\"*, and|strong=\"H7725\"* spoke|strong=\"H1697\"* like|strong=\"H1697\"* that|strong=\"H5971\"* again|strong=\"H7725\"*; and|strong=\"H7725\"* the|strong=\"H7725\"* people|strong=\"H5971\"* answered|strong=\"H7725\"* him|strong=\"H7725\"* again|strong=\"H7725\"* the|strong=\"H7725\"* same|strong=\"H2088\"* way|strong=\"H1697\"*." + }, + { + "verseNum": 31, + "text": "When|strong=\"H8085\"* the|strong=\"H6440\"* words|strong=\"H1697\"* were|strong=\"H1697\"* heard|strong=\"H8085\"* which|strong=\"H1697\"* David|strong=\"H1732\"* spoke|strong=\"H1696\"*, they|strong=\"H1697\"* rehearsed|strong=\"H1696\"* them|strong=\"H6440\"* before|strong=\"H6440\"* Saul|strong=\"H7586\"*; and|strong=\"H1732\"* he|strong=\"H1732\"* sent|strong=\"H1732\"* for|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 32, + "text": "David|strong=\"H1732\"* said to|strong=\"H3212\"* Saul|strong=\"H7586\"*, “Let|strong=\"H3212\"* no man|strong=\"H2088\"*’s heart|strong=\"H3820\"* fail|strong=\"H5307\"* because|strong=\"H5921\"* of|strong=\"H5650\"* him|strong=\"H5921\"*. Your|strong=\"H5921\"* servant|strong=\"H5650\"* will|strong=\"H5650\"* go|strong=\"H3212\"* and|strong=\"H3212\"* fight|strong=\"H3898\"* with|strong=\"H5973\"* this|strong=\"H2088\"* Philistine|strong=\"H6430\"*.”" + }, + { + "verseNum": 33, + "text": "Saul|strong=\"H7586\"* said to|strong=\"H3201\"* David|strong=\"H1732\"*, “You|strong=\"H3588\"* are|strong=\"H4421\"* not|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* go|strong=\"H3212\"* against|strong=\"H5973\"* this|strong=\"H2088\"* Philistine|strong=\"H6430\"* to|strong=\"H3201\"* fight|strong=\"H3898\"* with|strong=\"H5973\"* him|strong=\"H5973\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H4421\"* but|strong=\"H3588\"* a|strong=\"H3068\"* youth|strong=\"H5271\"*, and|strong=\"H3212\"* he|strong=\"H1931\"* a|strong=\"H3068\"* man|strong=\"H5288\"* of|strong=\"H5288\"* war|strong=\"H4421\"* from|strong=\"H6430\"* his|strong=\"H1732\"* youth|strong=\"H5271\"*.”" + }, + { + "verseNum": 34, + "text": "David|strong=\"H1732\"* said to|strong=\"H1961\"* Saul|strong=\"H7586\"*, “Your|strong=\"H5375\"* servant|strong=\"H5650\"* was|strong=\"H1961\"* keeping|strong=\"H7462\"* his|strong=\"H5375\"* father’s sheep|strong=\"H6629\"*; and|strong=\"H1732\"* when|strong=\"H1961\"* a|strong=\"H3068\"* lion or|strong=\"H7462\"* a|strong=\"H3068\"* bear|strong=\"H5375\"* came|strong=\"H1961\"* and|strong=\"H1732\"* took|strong=\"H5375\"* a|strong=\"H3068\"* lamb|strong=\"H7716\"* out of|strong=\"H5650\"* the|strong=\"H5375\"* flock|strong=\"H6629\"*," + }, + { + "verseNum": 35, + "text": "I|strong=\"H5921\"* went|strong=\"H3318\"* out|strong=\"H3318\"* after|strong=\"H5921\"* him|strong=\"H5921\"*, struck|strong=\"H5221\"* him|strong=\"H5921\"*, and|strong=\"H6965\"* rescued|strong=\"H5337\"* it|strong=\"H5921\"* out|strong=\"H3318\"* of|strong=\"H6310\"* his|strong=\"H5921\"* mouth|strong=\"H6310\"*. When|strong=\"H3318\"* he|strong=\"H5921\"* arose|strong=\"H6965\"* against|strong=\"H5921\"* me|strong=\"H5921\"*, I|strong=\"H5921\"* caught|strong=\"H2388\"* him|strong=\"H5921\"* by|strong=\"H5921\"* his|strong=\"H5921\"* beard|strong=\"H2206\"*, struck|strong=\"H5221\"* him|strong=\"H5921\"*, and|strong=\"H6965\"* killed|strong=\"H5221\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 36, + "text": "Your|strong=\"H3588\"* servant|strong=\"H5650\"* struck|strong=\"H5221\"* both|strong=\"H1571\"* the|strong=\"H3588\"* lion and|strong=\"H5650\"* the|strong=\"H3588\"* bear|strong=\"H1677\"*. This|strong=\"H2088\"* uncircumcised|strong=\"H6189\"* Philistine|strong=\"H6430\"* shall|strong=\"H5650\"* be|strong=\"H1961\"* as|strong=\"H1961\"* one|strong=\"H2088\"* of|strong=\"H5650\"* them|strong=\"H1992\"*, since|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H1961\"* defied|strong=\"H2778\"* the|strong=\"H3588\"* armies|strong=\"H4634\"* of|strong=\"H5650\"* the|strong=\"H3588\"* living|strong=\"H2416\"* God.”" + }, + { + "verseNum": 37, + "text": "David|strong=\"H1732\"* said, “Yahweh|strong=\"H3068\"*, who|strong=\"H1931\"* delivered|strong=\"H5337\"* me|strong=\"H5973\"* out|strong=\"H3212\"* of|strong=\"H3068\"* the|strong=\"H3068\"* paw|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H3068\"* lion and|strong=\"H3068\"* out|strong=\"H3212\"* of|strong=\"H3068\"* the|strong=\"H3068\"* paw|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H3068\"* bear|strong=\"H1677\"*, will|strong=\"H3068\"* deliver|strong=\"H5337\"* me|strong=\"H5973\"* out|strong=\"H3212\"* of|strong=\"H3068\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* this|strong=\"H2088\"* Philistine|strong=\"H6430\"*.”" + }, + { + "verseNum": 38, + "text": "Saul|strong=\"H7586\"* dressed|strong=\"H3847\"* David|strong=\"H1732\"* with|strong=\"H3847\"* his|strong=\"H5414\"* clothing|strong=\"H3847\"*. He|strong=\"H1732\"* put|strong=\"H5414\"* a|strong=\"H3068\"* helmet|strong=\"H6959\"* of|strong=\"H7218\"* bronze|strong=\"H5178\"* on|strong=\"H5921\"* his|strong=\"H5414\"* head|strong=\"H7218\"*, and|strong=\"H1732\"* he|strong=\"H1732\"* clad him|strong=\"H5414\"* with|strong=\"H3847\"* a|strong=\"H3068\"* coat|strong=\"H8302\"* of|strong=\"H7218\"* mail|strong=\"H8302\"*." + }, + { + "verseNum": 39, + "text": "David|strong=\"H1732\"* strapped|strong=\"H2296\"* his|strong=\"H1732\"* sword|strong=\"H2719\"* on|strong=\"H5921\"* his|strong=\"H1732\"* clothing and|strong=\"H3212\"* he|strong=\"H3588\"* tried|strong=\"H2974\"* to|strong=\"H3201\"* move|strong=\"H5493\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1732\"* not|strong=\"H3808\"* tested|strong=\"H5254\"* it|strong=\"H5921\"*. David|strong=\"H1732\"* said to|strong=\"H3201\"* Saul|strong=\"H7586\"*, “I|strong=\"H3588\"* can|strong=\"H3201\"*’t go|strong=\"H3212\"* with|strong=\"H5921\"* these|strong=\"H1732\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3588\"* not|strong=\"H3808\"* tested|strong=\"H5254\"* them|strong=\"H5921\"*.” Then|strong=\"H3588\"* David|strong=\"H1732\"* took|strong=\"H5493\"* them|strong=\"H5921\"* off|strong=\"H5493\"*." + }, + { + "verseNum": 40, + "text": "He|strong=\"H2568\"* took|strong=\"H3947\"* his|strong=\"H7760\"* staff|strong=\"H4731\"* in|strong=\"H3027\"* his|strong=\"H7760\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* chose for|strong=\"H3027\"* himself|strong=\"H3027\"* five|strong=\"H2568\"* smooth|strong=\"H2512\"* stones out|strong=\"H4480\"* of|strong=\"H3027\"* the|strong=\"H3947\"* brook|strong=\"H5158\"*, and|strong=\"H3027\"* put|strong=\"H7760\"* them|strong=\"H3027\"* in|strong=\"H3027\"* the|strong=\"H3947\"* pouch|strong=\"H3219\"* of|strong=\"H3027\"* his|strong=\"H7760\"* shepherd|strong=\"H7462\"*’s bag|strong=\"H3627\"* which|strong=\"H5158\"* he|strong=\"H2568\"* had|strong=\"H6430\"*. His|strong=\"H7760\"* sling|strong=\"H7050\"* was|strong=\"H3027\"* in|strong=\"H3027\"* his|strong=\"H7760\"* hand|strong=\"H3027\"*; and|strong=\"H3027\"* he|strong=\"H2568\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3027\"* the|strong=\"H3947\"* Philistine|strong=\"H6430\"*." + }, + { + "verseNum": 41, + "text": "The|strong=\"H6440\"* Philistine|strong=\"H6430\"* walked|strong=\"H1980\"* and|strong=\"H1980\"* came|strong=\"H1980\"* near|strong=\"H7131\"* to|strong=\"H1980\"* David|strong=\"H1732\"*; and|strong=\"H1980\"* the|strong=\"H6440\"* man|strong=\"H5375\"* who|strong=\"H1980\"* bore|strong=\"H5375\"* the|strong=\"H6440\"* shield|strong=\"H6793\"* went|strong=\"H1980\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 42, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* Philistine|strong=\"H6430\"* looked|strong=\"H7200\"* around and|strong=\"H1732\"* saw|strong=\"H7200\"* David|strong=\"H1732\"*, he|strong=\"H3588\"* disdained him|strong=\"H7200\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H1961\"* but|strong=\"H3588\"* a|strong=\"H3068\"* youth|strong=\"H5288\"*, and|strong=\"H1732\"* ruddy, and|strong=\"H1732\"* had|strong=\"H1961\"* a|strong=\"H3068\"* good looking|strong=\"H7200\"* face|strong=\"H4758\"*." + }, + { + "verseNum": 43, + "text": "The|strong=\"H3588\"* Philistine|strong=\"H6430\"* said to|strong=\"H1732\"* David|strong=\"H1732\"*, “Am I|strong=\"H3588\"* a|strong=\"H3068\"* dog|strong=\"H3611\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* come to|strong=\"H1732\"* me|strong=\"H3588\"* with|strong=\"H1732\"* sticks|strong=\"H4731\"*?” The|strong=\"H3588\"* Philistine|strong=\"H6430\"* cursed|strong=\"H7043\"* David|strong=\"H1732\"* by|strong=\"H6430\"* his|strong=\"H1732\"* gods." + }, + { + "verseNum": 44, + "text": "The|strong=\"H5414\"* Philistine|strong=\"H6430\"* said to|strong=\"H3212\"* David|strong=\"H1732\"*, “Come|strong=\"H3212\"* to|strong=\"H3212\"* me|strong=\"H5414\"*, and|strong=\"H8064\"* I|strong=\"H5414\"* will|strong=\"H8064\"* give|strong=\"H5414\"* your|strong=\"H5414\"* flesh|strong=\"H1320\"* to|strong=\"H3212\"* the|strong=\"H5414\"* birds|strong=\"H5775\"* of|strong=\"H7704\"* the|strong=\"H5414\"* sky|strong=\"H8064\"* and|strong=\"H8064\"* to|strong=\"H3212\"* the|strong=\"H5414\"* animals of|strong=\"H7704\"* the|strong=\"H5414\"* field|strong=\"H7704\"*.”" + }, + { + "verseNum": 45, + "text": "Then|strong=\"H1732\"* David|strong=\"H1732\"* said to|strong=\"H3478\"* the|strong=\"H3068\"* Philistine|strong=\"H6430\"*, “You|strong=\"H3478\"* come|strong=\"H3478\"* to|strong=\"H3478\"* me|strong=\"H2719\"* with|strong=\"H3068\"* a|strong=\"H3068\"* sword|strong=\"H2719\"*, with|strong=\"H3068\"* a|strong=\"H3068\"* spear|strong=\"H2595\"*, and|strong=\"H3478\"* with|strong=\"H3068\"* a|strong=\"H3068\"* javelin|strong=\"H3591\"*; but|strong=\"H3068\"* I|strong=\"H3478\"* come|strong=\"H3478\"* to|strong=\"H3478\"* you|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H3068\"* armies|strong=\"H6635\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, whom you|strong=\"H3478\"* have|strong=\"H3068\"* defied|strong=\"H2778\"*." + }, + { + "verseNum": 46, + "text": "Today|strong=\"H3117\"*, Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* you|strong=\"H3588\"* into|strong=\"H5921\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* you|strong=\"H3588\"* and|strong=\"H3478\"* take|strong=\"H5493\"* your|strong=\"H3068\"* head|strong=\"H7218\"* from|strong=\"H5493\"* off|strong=\"H5493\"* you|strong=\"H3588\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* give|strong=\"H5414\"* the|strong=\"H3605\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* of|strong=\"H3068\"* the|strong=\"H3605\"* army|strong=\"H4264\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* today|strong=\"H3117\"* to|strong=\"H3478\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sky|strong=\"H8064\"* and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3605\"* wild animals|strong=\"H2416\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*, that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth|strong=\"H8064\"* may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3068\"* a|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H5921\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 47, + "text": "and|strong=\"H3068\"* that|strong=\"H3588\"* all|strong=\"H3605\"* this|strong=\"H2088\"* assembly|strong=\"H6951\"* may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* doesn’t save|strong=\"H3467\"* with|strong=\"H3068\"* sword|strong=\"H2719\"* and|strong=\"H3068\"* spear|strong=\"H2595\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* battle|strong=\"H4421\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s, and|strong=\"H3068\"* he|strong=\"H3588\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"* into|strong=\"H2595\"* our|strong=\"H3068\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 48, + "text": "When|strong=\"H3588\"* the|strong=\"H3588\"* Philistine|strong=\"H6430\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* walked|strong=\"H3212\"* and|strong=\"H6965\"* came|strong=\"H1961\"* near|strong=\"H7126\"* to|strong=\"H3212\"* meet|strong=\"H7122\"* David|strong=\"H1732\"*, David|strong=\"H1732\"* hurried|strong=\"H4116\"* and|strong=\"H6965\"* ran|strong=\"H7323\"* toward|strong=\"H7122\"* the|strong=\"H3588\"* army|strong=\"H4634\"* to|strong=\"H3212\"* meet|strong=\"H7122\"* the|strong=\"H3588\"* Philistine|strong=\"H6430\"*." + }, + { + "verseNum": 49, + "text": "David|strong=\"H1732\"* put|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"* in|strong=\"H5921\"* his|strong=\"H7971\"* bag|strong=\"H3627\"*, took|strong=\"H3947\"* a|strong=\"H3068\"* stone and|strong=\"H7971\"* slung|strong=\"H7049\"* it|strong=\"H5921\"*, and|strong=\"H7971\"* struck|strong=\"H5221\"* the|strong=\"H6440\"* Philistine|strong=\"H6430\"* in|strong=\"H5921\"* his|strong=\"H7971\"* forehead|strong=\"H4696\"*. The|strong=\"H6440\"* stone sank|strong=\"H2883\"* into|strong=\"H5307\"* his|strong=\"H7971\"* forehead|strong=\"H4696\"*, and|strong=\"H7971\"* he|strong=\"H8033\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H7971\"* face|strong=\"H6440\"* to|strong=\"H7971\"* the|strong=\"H6440\"* earth." + }, + { + "verseNum": 50, + "text": "So|strong=\"H4480\"* David|strong=\"H1732\"* prevailed|strong=\"H2388\"* over|strong=\"H3027\"* the|strong=\"H5221\"* Philistine|strong=\"H6430\"* with|strong=\"H3027\"* a|strong=\"H3068\"* sling|strong=\"H7050\"* and|strong=\"H3027\"* with|strong=\"H3027\"* a|strong=\"H3068\"* stone, and|strong=\"H3027\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* Philistine|strong=\"H6430\"* and|strong=\"H3027\"* killed|strong=\"H5221\"* him|strong=\"H5221\"*; but|strong=\"H2388\"* there|strong=\"H4480\"* was|strong=\"H1732\"* no|strong=\"H4480\"* sword|strong=\"H2719\"* in|strong=\"H4191\"* David|strong=\"H1732\"*’s hand|strong=\"H3027\"*." + }, + { + "verseNum": 51, + "text": "Then|strong=\"H3947\"* David|strong=\"H1732\"* ran|strong=\"H7323\"*, stood|strong=\"H5975\"* over|strong=\"H7218\"* the|strong=\"H7200\"* Philistine|strong=\"H6430\"*, took|strong=\"H3947\"* his|strong=\"H3947\"* sword|strong=\"H2719\"*, drew|strong=\"H8025\"* it|strong=\"H3588\"* out|strong=\"H7200\"* of|strong=\"H7218\"* its|strong=\"H5975\"* sheath|strong=\"H8593\"*, killed|strong=\"H4191\"* him|strong=\"H7200\"*, and|strong=\"H1732\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* his|strong=\"H3947\"* head|strong=\"H7218\"* with|strong=\"H1732\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 52, + "text": "The|strong=\"H5704\"* men|strong=\"H3478\"* of|strong=\"H1870\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* of|strong=\"H1870\"* Judah|strong=\"H3063\"* arose|strong=\"H6965\"* and|strong=\"H3063\"* shouted|strong=\"H7321\"*, and|strong=\"H3063\"* pursued|strong=\"H7291\"* the|strong=\"H5704\"* Philistines|strong=\"H6430\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Gai and|strong=\"H3063\"* to|strong=\"H5704\"* the|strong=\"H5704\"* gates|strong=\"H8179\"* of|strong=\"H1870\"* Ekron|strong=\"H6138\"*. The|strong=\"H5704\"* wounded|strong=\"H2491\"* of|strong=\"H1870\"* the|strong=\"H5704\"* Philistines|strong=\"H6430\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* by|strong=\"H1870\"* the|strong=\"H5704\"* way|strong=\"H1870\"* to|strong=\"H5704\"* Shaaraim|strong=\"H8189\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* Gath|strong=\"H1661\"* and|strong=\"H3063\"* to|strong=\"H5704\"* Ekron|strong=\"H6138\"*." + }, + { + "verseNum": 53, + "text": "The|strong=\"H7725\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* chasing|strong=\"H1814\"* after|strong=\"H1814\"* the|strong=\"H7725\"* Philistines|strong=\"H6430\"*, and|strong=\"H1121\"* they|strong=\"H3478\"* plundered|strong=\"H8155\"* their|strong=\"H7725\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 54, + "text": "David|strong=\"H1732\"* took|strong=\"H3947\"* the|strong=\"H3947\"* head|strong=\"H7218\"* of|strong=\"H3627\"* the|strong=\"H3947\"* Philistine|strong=\"H6430\"* and|strong=\"H3389\"* brought|strong=\"H3947\"* it|strong=\"H7760\"* to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"*, but|strong=\"H3947\"* he|strong=\"H1732\"* put|strong=\"H7760\"* his|strong=\"H7760\"* armor|strong=\"H3627\"* in|strong=\"H1732\"* his|strong=\"H7760\"* tent." + }, + { + "verseNum": 55, + "text": "When|strong=\"H7200\"* Saul|strong=\"H7586\"* saw|strong=\"H7200\"* David|strong=\"H1732\"* go|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H7122\"* the|strong=\"H7200\"* Philistine|strong=\"H6430\"*, he|strong=\"H1732\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Abner, the|strong=\"H7200\"* captain|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H7200\"* army|strong=\"H6635\"*, “Abner, whose|strong=\"H4310\"* son|strong=\"H1121\"* is|strong=\"H2088\"* this|strong=\"H2088\"* youth|strong=\"H5288\"*?”" + }, + { + "verseNum": 56, + "text": "The|strong=\"H7592\"* king|strong=\"H4428\"* said, “Inquire|strong=\"H7592\"* whose|strong=\"H4310\"* son|strong=\"H1121\"* the|strong=\"H7592\"* young|strong=\"H1121\"* man|strong=\"H1121\"* is|strong=\"H2088\"*!”" + }, + { + "verseNum": 57, + "text": "As|strong=\"H6440\"* David|strong=\"H1732\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H6440\"* slaughter|strong=\"H5221\"* of|strong=\"H3027\"* the|strong=\"H6440\"* Philistine|strong=\"H6430\"*, Abner took|strong=\"H3947\"* him|strong=\"H6440\"* and|strong=\"H7725\"* brought|strong=\"H7725\"* him|strong=\"H6440\"* before|strong=\"H6440\"* Saul|strong=\"H7586\"* with|strong=\"H6440\"* the|strong=\"H6440\"* head|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H6440\"* Philistine|strong=\"H6430\"* in|strong=\"H6440\"* his|strong=\"H3947\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 58, + "text": "Saul|strong=\"H7586\"* said to|strong=\"H1121\"* him|strong=\"H1732\"*, “Whose|strong=\"H4310\"* son|strong=\"H1121\"* are|strong=\"H1121\"* you|strong=\"H4310\"*, you|strong=\"H4310\"* young|strong=\"H5288\"* man|strong=\"H5288\"*?”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* he|strong=\"H1732\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* speaking|strong=\"H1696\"* to|strong=\"H1696\"* Saul|strong=\"H7586\"*, the|strong=\"H1961\"* soul|strong=\"H5315\"* of|strong=\"H3615\"* Jonathan|strong=\"H3083\"* was|strong=\"H1961\"* knit|strong=\"H7194\"* with|strong=\"H1696\"* the|strong=\"H1961\"* soul|strong=\"H5315\"* of|strong=\"H3615\"* David|strong=\"H1732\"*, and|strong=\"H1732\"* Jonathan|strong=\"H3083\"* loved him|strong=\"H1732\"* as|strong=\"H1961\"* his|strong=\"H1732\"* own|strong=\"H1961\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 2, + "text": "Saul|strong=\"H7586\"* took|strong=\"H3947\"* him|strong=\"H5414\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, and|strong=\"H7725\"* wouldn’t let|strong=\"H5414\"* him|strong=\"H5414\"* go|strong=\"H7725\"* home|strong=\"H1004\"* to|strong=\"H7725\"* his|strong=\"H5414\"* father’s house|strong=\"H1004\"* any|strong=\"H5414\"* more|strong=\"H3808\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H1732\"* Jonathan|strong=\"H3083\"* and|strong=\"H1732\"* David|strong=\"H1732\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"*, because he|strong=\"H1732\"* loved him|strong=\"H3772\"* as|strong=\"H5315\"* his|strong=\"H1732\"* own|strong=\"H5315\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 4, + "text": "Jonathan|strong=\"H3083\"* stripped|strong=\"H6584\"* himself of|strong=\"H5921\"* the|strong=\"H5921\"* robe|strong=\"H4598\"* that|strong=\"H5414\"* was|strong=\"H1732\"* on|strong=\"H5921\"* him|strong=\"H5414\"* and|strong=\"H1732\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5704\"* David|strong=\"H1732\"* with|strong=\"H5921\"* his|strong=\"H5414\"* clothing, even|strong=\"H5704\"* including|strong=\"H5704\"* his|strong=\"H5414\"* sword|strong=\"H2719\"*, his|strong=\"H5414\"* bow|strong=\"H7198\"*, and|strong=\"H1732\"* his|strong=\"H5414\"* sash." + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"* went|strong=\"H3318\"* out|strong=\"H3318\"* wherever|strong=\"H3605\"* Saul|strong=\"H7586\"* sent|strong=\"H7971\"* him|strong=\"H5921\"*, and|strong=\"H7971\"* behaved|strong=\"H7919\"* himself|strong=\"H7919\"* wisely|strong=\"H7919\"*; and|strong=\"H7971\"* Saul|strong=\"H7586\"* set|strong=\"H7760\"* him|strong=\"H5921\"* over|strong=\"H5921\"* the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H5869\"* war|strong=\"H4421\"*. It|strong=\"H7760\"* was|strong=\"H1732\"* good|strong=\"H3190\"* in|strong=\"H5921\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H7971\"* also|strong=\"H1571\"* in|strong=\"H5921\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* Saul|strong=\"H7586\"*’s servants|strong=\"H5650\"*." + }, + { + "verseNum": 6, + "text": "As|strong=\"H1961\"* they|strong=\"H3478\"* came|strong=\"H1961\"*, when|strong=\"H1961\"* David|strong=\"H1732\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H3605\"* slaughter|strong=\"H5221\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Philistine|strong=\"H6430\"*, the|strong=\"H3605\"* women|strong=\"H7891\"* came|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, singing|strong=\"H7891\"* and|strong=\"H3478\"* dancing|strong=\"H4246\"*, to|strong=\"H7725\"* meet|strong=\"H7122\"* King|strong=\"H4428\"* Saul|strong=\"H7586\"* with|strong=\"H3318\"* tambourines|strong=\"H8596\"*, with|strong=\"H3318\"* joy|strong=\"H8057\"*, and|strong=\"H3478\"* with|strong=\"H3318\"* instruments|strong=\"H7991\"* of|strong=\"H4428\"* music." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5221\"* women sang|strong=\"H6030\"* to|strong=\"H1732\"* one another as|strong=\"H5221\"* they|strong=\"H5221\"* played|strong=\"H7832\"*, and|strong=\"H6030\"* said|strong=\"H6030\"*," + }, + { + "verseNum": 8, + "text": "Saul|strong=\"H7586\"* was|strong=\"H1732\"* very|strong=\"H3966\"* angry|strong=\"H2734\"*, and|strong=\"H5869\"* this|strong=\"H2088\"* saying|strong=\"H1697\"* displeased|strong=\"H7489\"* him|strong=\"H5414\"*. He|strong=\"H1732\"* said|strong=\"H1697\"*, “They|strong=\"H1697\"* have|strong=\"H5869\"* credited David|strong=\"H1732\"* with|strong=\"H1697\"* ten|strong=\"H7233\"* thousands|strong=\"H7233\"*, and|strong=\"H5869\"* they|strong=\"H1697\"* have|strong=\"H5869\"* only credited me|strong=\"H5414\"* with|strong=\"H1697\"* thousands|strong=\"H7233\"*. What|strong=\"H1697\"* can|strong=\"H5750\"* he|strong=\"H1732\"* have|strong=\"H5869\"* more|strong=\"H5750\"* but|strong=\"H5750\"* the|strong=\"H5414\"* kingdom|strong=\"H4410\"*?”" + }, + { + "verseNum": 9, + "text": "Saul|strong=\"H7586\"* watched David|strong=\"H1732\"* from|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* and|strong=\"H3117\"* forward|strong=\"H1973\"*." + }, + { + "verseNum": 10, + "text": "On|strong=\"H3117\"* the|strong=\"H8432\"* next|strong=\"H4283\"* day|strong=\"H3117\"*, an|strong=\"H1961\"* evil|strong=\"H7451\"* spirit|strong=\"H7307\"* from|strong=\"H3027\"* God|strong=\"H3027\"* came|strong=\"H1961\"* mightily|strong=\"H6743\"* on|strong=\"H3117\"* Saul|strong=\"H7586\"*, and|strong=\"H3117\"* he|strong=\"H3117\"* prophesied|strong=\"H5012\"* in|strong=\"H1004\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H1004\"* the|strong=\"H8432\"* house|strong=\"H1004\"*. David|strong=\"H1732\"* played|strong=\"H5059\"* with|strong=\"H1004\"* his|strong=\"H1732\"* hand|strong=\"H3027\"*, as|strong=\"H3117\"* he|strong=\"H3117\"* did|strong=\"H1732\"* day|strong=\"H3117\"* by|strong=\"H3027\"* day|strong=\"H3117\"*. Saul|strong=\"H7586\"* had|strong=\"H1961\"* his|strong=\"H1732\"* spear|strong=\"H2595\"* in|strong=\"H1004\"* his|strong=\"H1732\"* hand|strong=\"H3027\"*;" + }, + { + "verseNum": 11, + "text": "and|strong=\"H1732\"* Saul|strong=\"H7586\"* threw|strong=\"H2904\"* the|strong=\"H6440\"* spear|strong=\"H2595\"*, for|strong=\"H6440\"* he|strong=\"H1732\"* said, “I|strong=\"H6440\"* will|strong=\"H2904\"* pin|strong=\"H5221\"* David|strong=\"H1732\"* to|strong=\"H6440\"* the|strong=\"H6440\"* wall|strong=\"H7023\"*!” David|strong=\"H1732\"* escaped|strong=\"H5437\"* from|strong=\"H6440\"* his|strong=\"H1732\"* presence|strong=\"H6440\"* twice|strong=\"H6471\"*." + }, + { + "verseNum": 12, + "text": "Saul|strong=\"H7586\"* was|strong=\"H3068\"* afraid|strong=\"H3372\"* of|strong=\"H3068\"* David|strong=\"H1732\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H6440\"*, and|strong=\"H3068\"* had|strong=\"H3068\"* departed|strong=\"H5493\"* from|strong=\"H5493\"* Saul|strong=\"H7586\"*." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"H5971\"* Saul|strong=\"H7586\"* removed|strong=\"H5493\"* him|strong=\"H6440\"* from|strong=\"H5493\"* his|strong=\"H7760\"* presence|strong=\"H6440\"*, and|strong=\"H5971\"* made|strong=\"H7760\"* him|strong=\"H6440\"* his|strong=\"H7760\"* captain|strong=\"H8269\"* over|strong=\"H8269\"* a|strong=\"H3068\"* thousand; and|strong=\"H5971\"* he|strong=\"H5971\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H5971\"* came|strong=\"H3318\"* in|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* behaved|strong=\"H7919\"* himself|strong=\"H7919\"* wisely|strong=\"H7919\"* in|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H7200\"* Saul|strong=\"H7586\"* saw|strong=\"H7200\"* that|strong=\"H7200\"* he|strong=\"H1931\"* behaved|strong=\"H7919\"* himself|strong=\"H1931\"* very|strong=\"H3966\"* wisely|strong=\"H7919\"*, he|strong=\"H1931\"* stood in|strong=\"H6440\"* awe|strong=\"H1481\"* of|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"* loved David|strong=\"H1732\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3063\"* came|strong=\"H3318\"* in|strong=\"H3478\"* before|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 17, + "text": "Saul|strong=\"H7586\"* said to|strong=\"H3068\"* David|strong=\"H1732\"*, “Behold|strong=\"H2009\"*, my|strong=\"H5414\"* elder|strong=\"H1419\"* daughter|strong=\"H1323\"* Merab|strong=\"H4764\"*. I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H3068\"* you|strong=\"H5414\"* as|strong=\"H1961\"* wife. Only be|strong=\"H1961\"* valiant|strong=\"H2428\"* for|strong=\"H3027\"* me|strong=\"H5414\"*, and|strong=\"H1121\"* fight|strong=\"H3898\"* Yahweh|strong=\"H3068\"*’s battles|strong=\"H4421\"*.” For|strong=\"H3027\"* Saul|strong=\"H7586\"* said, “Don’t let|strong=\"H5414\"* my|strong=\"H5414\"* hand|strong=\"H3027\"* be|strong=\"H1961\"* on|strong=\"H3027\"* him|strong=\"H5414\"*, but|strong=\"H1961\"* let|strong=\"H5414\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5414\"* Philistines|strong=\"H6430\"* be|strong=\"H1961\"* on|strong=\"H3027\"* him|strong=\"H5414\"*.”" + }, + { + "verseNum": 18, + "text": "David|strong=\"H1732\"* said to|strong=\"H3478\"* Saul|strong=\"H7586\"*, “Who|strong=\"H4310\"* am|strong=\"H1961\"* I|strong=\"H3588\"*, and|strong=\"H3478\"* what|strong=\"H4310\"* is|strong=\"H4310\"* my|strong=\"H1732\"* life|strong=\"H2416\"*, or|strong=\"H4310\"* my|strong=\"H1732\"* father’s family|strong=\"H4940\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* be|strong=\"H1961\"* son-in-law|strong=\"H2860\"* to|strong=\"H3478\"* the|strong=\"H3588\"* king|strong=\"H4428\"*?”" + }, + { + "verseNum": 19, + "text": "But|strong=\"H1961\"* at|strong=\"H1732\"* the|strong=\"H5414\"* time|strong=\"H6256\"* when|strong=\"H1961\"* Merab|strong=\"H4764\"*, Saul|strong=\"H7586\"*’s daughter|strong=\"H1323\"*, should|strong=\"H1732\"* have|strong=\"H1961\"* been|strong=\"H1961\"* given|strong=\"H5414\"* to|strong=\"H1961\"* David|strong=\"H1732\"*, she|strong=\"H1931\"* was|strong=\"H1961\"* given|strong=\"H5414\"* to|strong=\"H1961\"* Adriel|strong=\"H5741\"* the|strong=\"H5414\"* Meholathite|strong=\"H4259\"* as|strong=\"H1961\"* wife." + }, + { + "verseNum": 20, + "text": "Michal|strong=\"H4324\"*, Saul|strong=\"H7586\"*’s daughter|strong=\"H1323\"*, loved David|strong=\"H1732\"*; and|strong=\"H5869\"* they|strong=\"H1697\"* told|strong=\"H5046\"* Saul|strong=\"H7586\"*, and|strong=\"H5869\"* the|strong=\"H1697\"* thing|strong=\"H1697\"* pleased|strong=\"H3474\"* him|strong=\"H5046\"*." + }, + { + "verseNum": 21, + "text": "Saul|strong=\"H7586\"* said, I|strong=\"H3117\"* will|strong=\"H1961\"* give|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H1961\"* him|strong=\"H5414\"*, that|strong=\"H3117\"* she|strong=\"H8147\"* may|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* snare|strong=\"H4170\"* to|strong=\"H1961\"* him|strong=\"H5414\"* and|strong=\"H3117\"* that|strong=\"H3117\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3117\"* the|strong=\"H5414\"* Philistines|strong=\"H6430\"* may|strong=\"H1961\"* be|strong=\"H1961\"* against|strong=\"H3027\"* him|strong=\"H5414\"*. Therefore|strong=\"H1732\"* Saul|strong=\"H7586\"* said to|strong=\"H1961\"* David|strong=\"H1732\"* a|strong=\"H3068\"* second|strong=\"H8147\"* time|strong=\"H3117\"*, “You|strong=\"H5414\"* shall|strong=\"H3117\"* today|strong=\"H3117\"* be|strong=\"H1961\"* my|strong=\"H5414\"* son-in-law|strong=\"H2859\"*.”" + }, + { + "verseNum": 22, + "text": "Saul|strong=\"H7586\"* commanded|strong=\"H6680\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*, “Talk|strong=\"H1696\"* with|strong=\"H1696\"* David|strong=\"H1732\"* secretly|strong=\"H3909\"*, and|strong=\"H4428\"* say|strong=\"H1696\"*, ‘Behold|strong=\"H2009\"*, the|strong=\"H3605\"* king|strong=\"H4428\"* has|strong=\"H4428\"* delight|strong=\"H2654\"* in|strong=\"H4428\"* you|strong=\"H6680\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* love you|strong=\"H6680\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* be|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s son-in-law|strong=\"H2859\"*.’”" + }, + { + "verseNum": 23, + "text": "Saul|strong=\"H7586\"*’s servants|strong=\"H5650\"* spoke|strong=\"H1696\"* those|strong=\"H1696\"* words|strong=\"H1697\"* in|strong=\"H4428\"* the|strong=\"H1697\"* ears of|strong=\"H4428\"* David|strong=\"H1732\"*. David|strong=\"H1732\"* said|strong=\"H1696\"*, “Does it|strong=\"H1696\"* seem|strong=\"H5869\"* to|strong=\"H1696\"* you|strong=\"H1696\"* a|strong=\"H3068\"* light|strong=\"H7043\"* thing|strong=\"H1697\"* to|strong=\"H1696\"* be|strong=\"H1697\"* the|strong=\"H1697\"* king|strong=\"H4428\"*’s son-in-law|strong=\"H2859\"*, since I|strong=\"H1697\"* am|strong=\"H7326\"* a|strong=\"H3068\"* poor|strong=\"H7326\"* man|strong=\"H7326\"* and|strong=\"H4428\"* little known?”" + }, + { + "verseNum": 24, + "text": "The|strong=\"H1697\"* servants|strong=\"H5650\"* of|strong=\"H1697\"* Saul|strong=\"H7586\"* told|strong=\"H5046\"* him|strong=\"H5046\"*, saying|strong=\"H1697\"*, “David|strong=\"H1732\"* spoke|strong=\"H1696\"* like|strong=\"H1697\"* this|strong=\"H1696\"*.”" + }, + { + "verseNum": 25, + "text": "Saul|strong=\"H7586\"* said, “Tell David|strong=\"H1732\"*, ‘The|strong=\"H3588\"* king|strong=\"H4428\"* desires no|strong=\"H2803\"* dowry|strong=\"H4119\"* except|strong=\"H3588\"* one|strong=\"H3588\"* hundred|strong=\"H3967\"* foreskins|strong=\"H6190\"* of|strong=\"H4428\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"*, to|strong=\"H3027\"* be|strong=\"H3027\"* avenged|strong=\"H5358\"* of|strong=\"H4428\"* the|strong=\"H3588\"* king|strong=\"H4428\"*’s enemies|strong=\"H3027\"*.’” Now|strong=\"H3588\"* Saul|strong=\"H7586\"* thought|strong=\"H2803\"* he|strong=\"H3588\"* would|strong=\"H4428\"* make|strong=\"H3027\"* David|strong=\"H1732\"* fall|strong=\"H5307\"* by|strong=\"H3027\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"H3117\"* his|strong=\"H1732\"* servants|strong=\"H5650\"* told|strong=\"H5046\"* David|strong=\"H1732\"* these|strong=\"H1732\"* words|strong=\"H1697\"*, it|strong=\"H3117\"* pleased|strong=\"H3474\"* David|strong=\"H1732\"* well|strong=\"H5869\"* to|strong=\"H3117\"* be|strong=\"H3808\"* the|strong=\"H3117\"* king|strong=\"H4428\"*’s son-in-law|strong=\"H2859\"*. Before|strong=\"H5869\"* the|strong=\"H3117\"* deadline," + }, + { + "verseNum": 27, + "text": "David|strong=\"H1732\"* arose|strong=\"H6965\"* and|strong=\"H3967\"* went|strong=\"H3212\"*, he|strong=\"H1931\"* and|strong=\"H3967\"* his|strong=\"H5414\"* men, and|strong=\"H3967\"* killed|strong=\"H5221\"* two|strong=\"H5221\"* hundred|strong=\"H3967\"* men of|strong=\"H4428\"* the|strong=\"H5414\"* Philistines|strong=\"H6430\"*. Then|strong=\"H6965\"* David|strong=\"H1732\"* brought|strong=\"H3212\"* their|strong=\"H5414\"* foreskins|strong=\"H6190\"*, and|strong=\"H3967\"* they|strong=\"H1931\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H4428\"* full|strong=\"H4390\"* number to|strong=\"H3212\"* the|strong=\"H5414\"* king|strong=\"H4428\"*, that|strong=\"H1931\"* he|strong=\"H1931\"* might|strong=\"H1323\"* be|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"*’s son-in-law|strong=\"H2859\"*. Then|strong=\"H6965\"* Saul|strong=\"H7586\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* Michal|strong=\"H4324\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"* as|strong=\"H6965\"* wife." + }, + { + "verseNum": 28, + "text": "Saul|strong=\"H7586\"* saw|strong=\"H7200\"* and|strong=\"H3068\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* David|strong=\"H1732\"*; and|strong=\"H3068\"* Michal|strong=\"H4324\"*, Saul|strong=\"H7586\"*’s daughter|strong=\"H1323\"*, loved him|strong=\"H7200\"*." + }, + { + "verseNum": 29, + "text": "Saul|strong=\"H7586\"* was|strong=\"H1961\"* even|strong=\"H5750\"* more|strong=\"H3254\"* afraid|strong=\"H3372\"* of|strong=\"H3117\"* David|strong=\"H1732\"*; and|strong=\"H3117\"* Saul|strong=\"H7586\"* was|strong=\"H1961\"* David|strong=\"H1732\"*’s enemy continually|strong=\"H3605\"*." + }, + { + "verseNum": 30, + "text": "Then|strong=\"H1961\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* went|strong=\"H3318\"* out|strong=\"H3318\"*; and|strong=\"H5650\"* as|strong=\"H1961\"* often|strong=\"H1767\"* as|strong=\"H1961\"* they|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, David|strong=\"H1732\"* behaved|strong=\"H7919\"* himself|strong=\"H7919\"* more|strong=\"H3966\"* wisely|strong=\"H7919\"* than|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* servants|strong=\"H5650\"* of|strong=\"H8269\"* Saul|strong=\"H7586\"*, so|strong=\"H1961\"* that|strong=\"H3605\"* his|strong=\"H3605\"* name|strong=\"H8034\"* was|strong=\"H8034\"* highly|strong=\"H3966\"* esteemed|strong=\"H3365\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Saul|strong=\"H7586\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Jonathan|strong=\"H3129\"* his|strong=\"H3605\"* son|strong=\"H1121\"* and|strong=\"H1121\"* to|strong=\"H1696\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*, that|strong=\"H3605\"* they|strong=\"H3605\"* should|strong=\"H1732\"* kill|strong=\"H4191\"* David|strong=\"H1732\"*. But|strong=\"H1696\"* Jonathan|strong=\"H3129\"*, Saul|strong=\"H7586\"*’s son|strong=\"H1121\"*, greatly|strong=\"H3966\"* delighted|strong=\"H2654\"* in|strong=\"H4191\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 2, + "text": "Jonathan|strong=\"H3083\"* told|strong=\"H5046\"* David|strong=\"H1732\"*, saying, “Saul|strong=\"H7586\"* my|strong=\"H8104\"* father seeks|strong=\"H1245\"* to|strong=\"H4191\"* kill|strong=\"H4191\"* you|strong=\"H5046\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* take|strong=\"H8104\"* care|strong=\"H8104\"* of|strong=\"H3427\"* yourself in|strong=\"H3427\"* the|strong=\"H8104\"* morning|strong=\"H1242\"*, live|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* secret|strong=\"H5643\"* place|strong=\"H5643\"*, and|strong=\"H1732\"* hide|strong=\"H2244\"* yourself." + }, + { + "verseNum": 3, + "text": "I|strong=\"H7200\"* will|strong=\"H3027\"* go|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3027\"* stand|strong=\"H5975\"* beside|strong=\"H3027\"* my|strong=\"H7200\"* father in|strong=\"H1696\"* the|strong=\"H7200\"* field|strong=\"H7704\"* where|strong=\"H8033\"* you|strong=\"H5046\"* are|strong=\"H3027\"*, and|strong=\"H3027\"* I|strong=\"H7200\"* will|strong=\"H3027\"* talk|strong=\"H1696\"* with|strong=\"H1696\"* my|strong=\"H7200\"* father about|strong=\"H8033\"* you|strong=\"H5046\"*; and|strong=\"H3027\"* if|strong=\"H7200\"* I|strong=\"H7200\"* see|strong=\"H7200\"* anything|strong=\"H4100\"*, I|strong=\"H7200\"* will|strong=\"H3027\"* tell|strong=\"H5046\"* you|strong=\"H5046\"*.”" + }, + { + "verseNum": 4, + "text": "Jonathan|strong=\"H3083\"* spoke|strong=\"H1696\"* good|strong=\"H2896\"* of|strong=\"H4428\"* David|strong=\"H1732\"* to|strong=\"H1696\"* Saul|strong=\"H7586\"* his|strong=\"H1732\"* father, and|strong=\"H4428\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H1732\"*, “Don’t let|strong=\"H3808\"* the|strong=\"H3588\"* king|strong=\"H4428\"* sin|strong=\"H2398\"* against|strong=\"H2398\"* his|strong=\"H1732\"* servant|strong=\"H5650\"*, against|strong=\"H2398\"* David|strong=\"H1732\"*; because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H4428\"* not|strong=\"H3808\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* you|strong=\"H3588\"*, and|strong=\"H4428\"* because|strong=\"H3588\"* his|strong=\"H1732\"* works|strong=\"H4639\"* have|strong=\"H5650\"* been|strong=\"H3808\"* very|strong=\"H3966\"* good|strong=\"H2896\"* toward you|strong=\"H3588\"*;" + }, + { + "verseNum": 5, + "text": "for|strong=\"H6213\"* he|strong=\"H6213\"* put|strong=\"H7760\"* his|strong=\"H3605\"* life|strong=\"H5315\"* in|strong=\"H3478\"* his|strong=\"H3605\"* hand|strong=\"H3709\"* and|strong=\"H3478\"* struck|strong=\"H5221\"* the|strong=\"H3605\"* Philistine|strong=\"H6430\"*, and|strong=\"H3478\"* Yahweh|strong=\"H3068\"* worked|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* victory|strong=\"H8668\"* for|strong=\"H6213\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*. You|strong=\"H3605\"* saw|strong=\"H7200\"* it|strong=\"H7760\"* and|strong=\"H3478\"* rejoiced|strong=\"H8055\"*. Why|strong=\"H4100\"* then|strong=\"H6213\"* will|strong=\"H3068\"* you|strong=\"H3605\"* sin|strong=\"H2398\"* against|strong=\"H2398\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"*, to|strong=\"H3478\"* kill|strong=\"H4191\"* David|strong=\"H1732\"* without|strong=\"H2600\"* a|strong=\"H3068\"* cause|strong=\"H2600\"*?”" + }, + { + "verseNum": 6, + "text": "Saul|strong=\"H7586\"* listened|strong=\"H8085\"* to|strong=\"H4191\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* Jonathan|strong=\"H3083\"*; and|strong=\"H3068\"* Saul|strong=\"H7586\"* swore|strong=\"H7650\"*, “As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, he|strong=\"H3068\"* shall|strong=\"H3068\"* not|strong=\"H8085\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*.”" + }, + { + "verseNum": 7, + "text": "Jonathan|strong=\"H3083\"* called|strong=\"H7121\"* David|strong=\"H1732\"*, and|strong=\"H1732\"* Jonathan|strong=\"H3083\"* showed him|strong=\"H6440\"* all|strong=\"H3605\"* those|strong=\"H3605\"* things|strong=\"H1697\"*. Then|strong=\"H1961\"* Jonathan|strong=\"H3083\"* brought|strong=\"H1961\"* David|strong=\"H1732\"* to|strong=\"H1961\"* Saul|strong=\"H7586\"*, and|strong=\"H1732\"* he|strong=\"H3605\"* was|strong=\"H1961\"* in|strong=\"H6440\"* his|strong=\"H3605\"* presence|strong=\"H6440\"* as|strong=\"H1697\"* before|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* war|strong=\"H4421\"* again|strong=\"H3254\"*. David|strong=\"H1732\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H1419\"* fought|strong=\"H3898\"* with|strong=\"H3898\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*, and|strong=\"H1419\"* killed|strong=\"H5221\"* them|strong=\"H6440\"* with|strong=\"H3898\"* a|strong=\"H3068\"* great|strong=\"H1419\"* slaughter|strong=\"H4347\"*; and|strong=\"H1419\"* they|strong=\"H5221\"* fled|strong=\"H5127\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 9, + "text": "An|strong=\"H1961\"* evil|strong=\"H7451\"* spirit|strong=\"H7307\"* from|strong=\"H3027\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* on|strong=\"H3427\"* Saul|strong=\"H7586\"* as|strong=\"H1961\"* he|strong=\"H1931\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* his|strong=\"H3068\"* house|strong=\"H1004\"* with|strong=\"H1004\"* his|strong=\"H3068\"* spear|strong=\"H2595\"* in|strong=\"H3427\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*; and|strong=\"H3068\"* David|strong=\"H1732\"* was|strong=\"H3068\"* playing|strong=\"H5059\"* music with|strong=\"H1004\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 10, + "text": "Saul|strong=\"H7586\"* sought|strong=\"H1245\"* to|strong=\"H6440\"* pin|strong=\"H5221\"* David|strong=\"H1732\"* to|strong=\"H6440\"* the|strong=\"H6440\"* wall|strong=\"H7023\"* with|strong=\"H6440\"* the|strong=\"H6440\"* spear|strong=\"H2595\"*, but|strong=\"H5221\"* he|strong=\"H1931\"* slipped|strong=\"H6362\"* away|strong=\"H5127\"* out|strong=\"H1245\"* of|strong=\"H6440\"* Saul|strong=\"H7586\"*’s presence|strong=\"H6440\"*; and|strong=\"H1732\"* he|strong=\"H1931\"* stuck|strong=\"H5221\"* the|strong=\"H6440\"* spear|strong=\"H2595\"* into|strong=\"H2595\"* the|strong=\"H6440\"* wall|strong=\"H7023\"*. David|strong=\"H1732\"* fled|strong=\"H5127\"* and|strong=\"H1732\"* escaped|strong=\"H4422\"* that|strong=\"H1931\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 11, + "text": "Saul|strong=\"H7586\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H4191\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"* to|strong=\"H4191\"* watch|strong=\"H8104\"* him|strong=\"H7971\"* and|strong=\"H7971\"* to|strong=\"H4191\"* kill|strong=\"H4191\"* him|strong=\"H7971\"* in|strong=\"H1004\"* the|strong=\"H8104\"* morning|strong=\"H1242\"*. Michal|strong=\"H4324\"*, David|strong=\"H1732\"*’s wife, told|strong=\"H5046\"* him|strong=\"H7971\"*, saying, “If you|strong=\"H7971\"* don’t save|strong=\"H4422\"* your|strong=\"H8104\"* life|strong=\"H5315\"* tonight|strong=\"H3915\"*, tomorrow|strong=\"H4279\"* you|strong=\"H7971\"* will|strong=\"H5315\"* be|strong=\"H4191\"* killed|strong=\"H4191\"*.”" + }, + { + "verseNum": 12, + "text": "So|strong=\"H3381\"* Michal|strong=\"H4324\"* let|strong=\"H3381\"* David|strong=\"H1732\"* down|strong=\"H3381\"* through|strong=\"H1157\"* the|strong=\"H1732\"* window|strong=\"H2474\"*. He|strong=\"H1732\"* went|strong=\"H3212\"* away|strong=\"H3212\"*, fled|strong=\"H1272\"*, and|strong=\"H3212\"* escaped|strong=\"H4422\"*." + }, + { + "verseNum": 13, + "text": "Michal|strong=\"H4324\"* took|strong=\"H3947\"* the|strong=\"H3947\"* teraphim|strong=\"H8655\"*+ 19:13 teraphim were household idols that may have been associated with inheritance rights to the household property.* and|strong=\"H3947\"* laid|strong=\"H7760\"* it|strong=\"H7760\"* in|strong=\"H7760\"* the|strong=\"H3947\"* bed|strong=\"H4296\"*, and|strong=\"H3947\"* put|strong=\"H7760\"* a|strong=\"H3068\"* pillow|strong=\"H3523\"* of|strong=\"H4296\"* goats|strong=\"H5795\"*’ hair at its|strong=\"H7760\"* head|strong=\"H4763\"* and|strong=\"H3947\"* covered|strong=\"H3680\"* it|strong=\"H7760\"* with|strong=\"H3680\"* clothes." + }, + { + "verseNum": 14, + "text": "When|strong=\"H7971\"* Saul|strong=\"H7586\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* take|strong=\"H3947\"* David|strong=\"H1732\"*, she|strong=\"H1931\"* said, “He|strong=\"H1931\"* is|strong=\"H1931\"* sick|strong=\"H2470\"*.”" + }, + { + "verseNum": 15, + "text": "Saul|strong=\"H7586\"* sent|strong=\"H7971\"* the|strong=\"H7200\"* messengers|strong=\"H4397\"* to|strong=\"H4191\"* see|strong=\"H7200\"* David|strong=\"H1732\"*, saying, “Bring|strong=\"H5927\"* him|strong=\"H7971\"* up|strong=\"H5927\"* to|strong=\"H4191\"* me|strong=\"H7971\"* in|strong=\"H4191\"* the|strong=\"H7200\"* bed|strong=\"H4296\"*, that|strong=\"H7200\"* I|strong=\"H7200\"* may|strong=\"H1732\"* kill|strong=\"H4191\"* him|strong=\"H7971\"*.”" + }, + { + "verseNum": 16, + "text": "When|strong=\"H2009\"* the|strong=\"H2009\"* messengers|strong=\"H4397\"* came|strong=\"H4397\"* in, behold|strong=\"H2009\"*, the|strong=\"H2009\"* teraphim|strong=\"H8655\"* was|strong=\"H4397\"* in the|strong=\"H2009\"* bed|strong=\"H4296\"*, with the|strong=\"H2009\"* pillow|strong=\"H3523\"* of|strong=\"H4397\"* goats|strong=\"H5795\"*’ hair at its head|strong=\"H4763\"*." + }, + { + "verseNum": 17, + "text": "Saul|strong=\"H7586\"* said to|strong=\"H4191\"* Michal|strong=\"H4324\"*, “Why|strong=\"H4100\"* have you|strong=\"H7971\"* deceived|strong=\"H7411\"* me|strong=\"H7971\"* like|strong=\"H4191\"* this|strong=\"H1931\"* and|strong=\"H7971\"* let|strong=\"H7971\"* my|strong=\"H7971\"* enemy go|strong=\"H7971\"*, so|strong=\"H7971\"* that|strong=\"H1931\"* he|strong=\"H1931\"* has|strong=\"H4100\"* escaped|strong=\"H4422\"*?”" + }, + { + "verseNum": 18, + "text": "Now|strong=\"H3212\"* David|strong=\"H1732\"* fled|strong=\"H1272\"* and|strong=\"H3212\"* escaped|strong=\"H4422\"*, and|strong=\"H3212\"* came|strong=\"H3212\"* to|strong=\"H3212\"* Samuel|strong=\"H8050\"* at|strong=\"H3427\"* Ramah|strong=\"H7414\"*, and|strong=\"H3212\"* told|strong=\"H5046\"* him|strong=\"H5046\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Saul|strong=\"H7586\"* had|strong=\"H1732\"* done|strong=\"H6213\"* to|strong=\"H3212\"* him|strong=\"H5046\"*. He|strong=\"H1931\"* and|strong=\"H3212\"* Samuel|strong=\"H8050\"* went|strong=\"H3212\"* and|strong=\"H3212\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Naioth|strong=\"H5121\"*." + }, + { + "verseNum": 19, + "text": "Saul|strong=\"H7586\"* was|strong=\"H1732\"* told|strong=\"H5046\"*, saying, “Behold|strong=\"H2009\"*, David|strong=\"H1732\"* is|strong=\"H2009\"* at|strong=\"H1732\"* Naioth|strong=\"H5121\"* in|strong=\"H5121\"* Ramah|strong=\"H7414\"*.”" + }, + { + "verseNum": 20, + "text": "Saul|strong=\"H7586\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* seize|strong=\"H3947\"* David|strong=\"H1732\"*; and|strong=\"H7971\"* when|strong=\"H1961\"* they|strong=\"H1992\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* company|strong=\"H3862\"* of|strong=\"H7307\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"* prophesying|strong=\"H5012\"*, and|strong=\"H7971\"* Samuel|strong=\"H8050\"* standing|strong=\"H5975\"* as|strong=\"H1961\"* head over|strong=\"H5921\"* them|strong=\"H1992\"*, God|strong=\"H7971\"*’s Spirit|strong=\"H7307\"* came|strong=\"H1961\"* on|strong=\"H5921\"* Saul|strong=\"H7586\"*’s messengers|strong=\"H4397\"*, and|strong=\"H7971\"* they|strong=\"H1992\"* also|strong=\"H1571\"* prophesied|strong=\"H5012\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H7971\"* Saul|strong=\"H7586\"* was|strong=\"H7586\"* told|strong=\"H5046\"*, he|strong=\"H7971\"* sent|strong=\"H7971\"* other messengers|strong=\"H4397\"*, and|strong=\"H7971\"* they|strong=\"H1992\"* also|strong=\"H1571\"* prophesied|strong=\"H5012\"*. Saul|strong=\"H7586\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* again|strong=\"H3254\"* the|strong=\"H7971\"* third|strong=\"H7992\"* time|strong=\"H7992\"*, and|strong=\"H7971\"* they|strong=\"H1992\"* also|strong=\"H1571\"* prophesied|strong=\"H5012\"*." + }, + { + "verseNum": 22, + "text": "Then|strong=\"H2009\"* he|strong=\"H1931\"* also|strong=\"H1571\"* went|strong=\"H3212\"* to|strong=\"H5704\"* Ramah|strong=\"H7414\"*, and|strong=\"H1419\"* came|strong=\"H3212\"* to|strong=\"H5704\"* the|strong=\"H5704\"* great|strong=\"H1419\"* well|strong=\"H1571\"* that|strong=\"H1931\"* is|strong=\"H1931\"* in|strong=\"H3212\"* Secu|strong=\"H7906\"*: and|strong=\"H1419\"* he|strong=\"H1931\"* asked|strong=\"H7592\"*, “Where|strong=\"H2009\"* are|strong=\"H1571\"* Samuel|strong=\"H8050\"* and|strong=\"H1419\"* David|strong=\"H1732\"*?”" + }, + { + "verseNum": 23, + "text": "He|strong=\"H1931\"* went|strong=\"H1980\"* there|strong=\"H8033\"* to|strong=\"H5704\"* Naioth|strong=\"H5121\"* in|strong=\"H5921\"* Ramah|strong=\"H7414\"*. Then|strong=\"H1961\"* God’s Spirit|strong=\"H7307\"* came|strong=\"H1961\"* on|strong=\"H5921\"* him|strong=\"H5921\"* also|strong=\"H1571\"*, and|strong=\"H1980\"* he|strong=\"H1931\"* went|strong=\"H1980\"* on|strong=\"H5921\"*, and|strong=\"H1980\"* prophesied|strong=\"H5012\"*, until|strong=\"H5704\"* he|strong=\"H1931\"* came|strong=\"H1961\"* to|strong=\"H5704\"* Naioth|strong=\"H5121\"* in|strong=\"H5921\"* Ramah|strong=\"H7414\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H1931\"* also|strong=\"H1571\"* stripped|strong=\"H6584\"* off|strong=\"H6584\"* his|strong=\"H3605\"* clothes. He|strong=\"H1931\"* also|strong=\"H1571\"* prophesied|strong=\"H5012\"* before|strong=\"H6440\"* Samuel|strong=\"H8050\"* and|strong=\"H3117\"* lay|strong=\"H5307\"* down|strong=\"H5307\"* naked|strong=\"H6174\"* all|strong=\"H3605\"* that|strong=\"H3605\"* day|strong=\"H3117\"* and|strong=\"H3117\"* all|strong=\"H3605\"* that|strong=\"H3605\"* night|strong=\"H3915\"*. Therefore|strong=\"H3651\"* they|strong=\"H3117\"* say, “Is|strong=\"H1931\"* Saul|strong=\"H7586\"* also|strong=\"H1571\"* among|strong=\"H5921\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*?”" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* fled|strong=\"H1272\"* from|strong=\"H6440\"* Naioth|strong=\"H5121\"* in|strong=\"H6213\"* Ramah|strong=\"H7414\"*, and|strong=\"H1732\"* came|strong=\"H1732\"* and|strong=\"H1732\"* said to|strong=\"H6213\"* Jonathan|strong=\"H3083\"*, “What|strong=\"H4100\"* have|strong=\"H5771\"* I|strong=\"H3588\"* done|strong=\"H6213\"*? What|strong=\"H4100\"* is|strong=\"H4100\"* my|strong=\"H1732\"* iniquity|strong=\"H5771\"*? What|strong=\"H4100\"* is|strong=\"H4100\"* my|strong=\"H1732\"* sin|strong=\"H2403\"* before|strong=\"H6440\"* your|strong=\"H6440\"* father, that|strong=\"H3588\"* he|strong=\"H3588\"* seeks|strong=\"H1245\"* my|strong=\"H1732\"* life|strong=\"H5315\"*?”" + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* said|strong=\"H1697\"* to|strong=\"H4191\"* him|strong=\"H6213\"*, “Far|strong=\"H2486\"* from|strong=\"H4480\"* it|strong=\"H6213\"*; you|strong=\"H6213\"* will|strong=\"H1697\"* not|strong=\"H3808\"* die|strong=\"H4191\"*. Behold|strong=\"H2009\"*, my|strong=\"H5641\"* father does|strong=\"H6213\"* nothing|strong=\"H3808\"* either|strong=\"H4480\"* great|strong=\"H1419\"* or|strong=\"H3808\"* small|strong=\"H6996\"*, but|strong=\"H3808\"* that|strong=\"H1697\"* he|strong=\"H6213\"* discloses|strong=\"H1540\"* it|strong=\"H6213\"* to|strong=\"H4191\"* me|strong=\"H4480\"*. Why|strong=\"H4069\"* would|strong=\"H1697\"* my|strong=\"H5641\"* father hide|strong=\"H5641\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* from|strong=\"H4480\"* me|strong=\"H4480\"*? It|strong=\"H6213\"* is|strong=\"H2088\"* not|strong=\"H3808\"* so|strong=\"H6213\"*.”" + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* swore|strong=\"H7650\"* moreover|strong=\"H5750\"*, and|strong=\"H3068\"* said, “Your|strong=\"H3068\"* father knows|strong=\"H3045\"* well|strong=\"H5869\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H3068\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*; and|strong=\"H3068\"* he|strong=\"H3588\"* says, ‘Don’t let|strong=\"H5315\"* Jonathan|strong=\"H3083\"* know|strong=\"H3045\"* this|strong=\"H2063\"*, lest|strong=\"H6435\"* he|strong=\"H3588\"* be|strong=\"H5750\"* grieved|strong=\"H6087\"*;’ but|strong=\"H3588\"* truly|strong=\"H3588\"* as|strong=\"H5315\"* Yahweh|strong=\"H3068\"* lives|strong=\"H5315\"*, and|strong=\"H3068\"* as|strong=\"H5315\"* your|strong=\"H3068\"* soul|strong=\"H5315\"* lives|strong=\"H5315\"*, there|strong=\"H4672\"* is|strong=\"H3068\"* but|strong=\"H3588\"* a|strong=\"H3068\"* step|strong=\"H6587\"* between|strong=\"H3045\"* me|strong=\"H5315\"* and|strong=\"H3068\"* death|strong=\"H4194\"*.”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H6213\"* Jonathan|strong=\"H3083\"* said to|strong=\"H6213\"* David|strong=\"H1732\"*, “Whatever|strong=\"H4100\"* your|strong=\"H6213\"* soul|strong=\"H5315\"* desires, I|strong=\"H5315\"* will|strong=\"H5315\"* even|strong=\"H6213\"* do|strong=\"H6213\"* it|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H6213\"*.”" + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"* said to|strong=\"H5704\"* Jonathan|strong=\"H3083\"*, “Behold|strong=\"H2009\"*, tomorrow|strong=\"H4279\"* is|strong=\"H2009\"* the|strong=\"H5704\"* new|strong=\"H2320\"* moon|strong=\"H2320\"*, and|strong=\"H7971\"* I|strong=\"H5704\"* should|strong=\"H1732\"* not|strong=\"H1732\"* fail|strong=\"H3427\"* to|strong=\"H5704\"* dine with|strong=\"H5973\"* the|strong=\"H5704\"* king|strong=\"H4428\"*; but|strong=\"H2009\"* let|strong=\"H7971\"* me|strong=\"H7971\"* go|strong=\"H7971\"*, that|strong=\"H4428\"* I|strong=\"H5704\"* may|strong=\"H4428\"* hide|strong=\"H5641\"* myself in|strong=\"H3427\"* the|strong=\"H5704\"* field|strong=\"H7704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* third|strong=\"H7992\"* day|strong=\"H2320\"* at|strong=\"H3427\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 6, + "text": "If|strong=\"H3588\"* your|strong=\"H3605\"* father misses|strong=\"H6485\"* me|strong=\"H4480\"* at|strong=\"H1732\"* all|strong=\"H3605\"*, then|strong=\"H3588\"* say, ‘David|strong=\"H1732\"* earnestly|strong=\"H7592\"* asked|strong=\"H7592\"* leave|strong=\"H4480\"* of|strong=\"H3117\"* me|strong=\"H4480\"* that|strong=\"H3588\"* he|strong=\"H3588\"* might run|strong=\"H7323\"* to|strong=\"H3117\"* Bethlehem|strong=\"H1035\"*, his|strong=\"H3605\"* city|strong=\"H5892\"*; for|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3117\"* the|strong=\"H3605\"* yearly|strong=\"H3117\"* sacrifice|strong=\"H2077\"* there|strong=\"H8033\"* for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* family|strong=\"H4940\"*.’" + }, + { + "verseNum": 7, + "text": "If|strong=\"H3588\"* he|strong=\"H3588\"* says|strong=\"H3541\"*, ‘It|strong=\"H3588\"* is|strong=\"H2896\"* well|strong=\"H7965\"*,’ your|strong=\"H3045\"* servant|strong=\"H5650\"* shall|strong=\"H5650\"* have|strong=\"H3045\"* peace|strong=\"H7965\"*; but|strong=\"H3588\"* if|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H2896\"* angry|strong=\"H2734\"*, then|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* evil|strong=\"H7451\"* is|strong=\"H2896\"* determined|strong=\"H3615\"* by|strong=\"H7451\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"H5921\"* deal|strong=\"H6213\"* kindly|strong=\"H2617\"* with|strong=\"H5973\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3426\"* brought|strong=\"H6213\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* into|strong=\"H5921\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3588\"*; but|strong=\"H3588\"* if|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3068\"* iniquity|strong=\"H5771\"* in|strong=\"H5921\"* me|strong=\"H5921\"*, kill|strong=\"H4191\"* me|strong=\"H5921\"* yourself|strong=\"H6213\"*, for|strong=\"H3588\"* why|strong=\"H4100\"* should|strong=\"H3068\"* you|strong=\"H3588\"* bring|strong=\"H6213\"* me|strong=\"H5921\"* to|strong=\"H5704\"* your|strong=\"H3068\"* father?”" + }, + { + "verseNum": 9, + "text": "Jonathan|strong=\"H3083\"* said, “Far|strong=\"H2486\"* be|strong=\"H3808\"* it|strong=\"H5921\"* from|strong=\"H5921\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* if|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* at|strong=\"H5921\"* all|strong=\"H3045\"* know|strong=\"H3045\"* that|strong=\"H3588\"* evil|strong=\"H7451\"* were|strong=\"H5921\"* determined|strong=\"H3615\"* by|strong=\"H5921\"* my|strong=\"H5921\"* father to|strong=\"H5921\"* come|strong=\"H3615\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, then|strong=\"H3588\"* wouldn’t I|strong=\"H3588\"* tell|strong=\"H5046\"* you|strong=\"H3588\"* that|strong=\"H3588\"*?”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H6030\"* David|strong=\"H1732\"* said|strong=\"H6030\"* to|strong=\"H1732\"* Jonathan|strong=\"H3083\"*, “Who|strong=\"H4310\"* will|strong=\"H4310\"* tell|strong=\"H5046\"* me|strong=\"H5046\"* if your|strong=\"H5046\"* father answers|strong=\"H6030\"* you|strong=\"H5046\"* roughly|strong=\"H7186\"*?”" + }, + { + "verseNum": 11, + "text": "Jonathan|strong=\"H3083\"* said|strong=\"H3318\"* to|strong=\"H3318\"* David|strong=\"H1732\"*, “Come|strong=\"H3318\"*! Let|strong=\"H3212\"*’s go|strong=\"H3212\"* out|strong=\"H3318\"* into|strong=\"H3212\"* the|strong=\"H3318\"* field|strong=\"H7704\"*.” They|strong=\"H3318\"* both|strong=\"H8147\"* went|strong=\"H3212\"* out|strong=\"H3318\"* into|strong=\"H3212\"* the|strong=\"H3318\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 12, + "text": "Jonathan|strong=\"H3083\"* said to|strong=\"H3478\"* David|strong=\"H1732\"*, “By|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, when|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* sounded|strong=\"H2713\"* out|strong=\"H7971\"* my|strong=\"H3068\"* father about|strong=\"H6256\"* this|strong=\"H3588\"* time|strong=\"H6256\"* tomorrow|strong=\"H4279\"*, or|strong=\"H3808\"* the|strong=\"H3588\"* third|strong=\"H7992\"* day|strong=\"H6256\"*, behold|strong=\"H2009\"*, if|strong=\"H3588\"* there|strong=\"H2009\"* is|strong=\"H3068\"* good|strong=\"H2896\"* toward|strong=\"H3068\"* David|strong=\"H1732\"*, won’t I|strong=\"H3588\"* then|strong=\"H2009\"* send|strong=\"H7971\"* to|strong=\"H3478\"* you|strong=\"H3588\"* and|strong=\"H3478\"* disclose|strong=\"H1540\"* it|strong=\"H3588\"* to|strong=\"H3478\"* you|strong=\"H3588\"*?" + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* do|strong=\"H6213\"* so|strong=\"H6213\"* to|strong=\"H1980\"* Jonathan|strong=\"H3083\"* and|strong=\"H1980\"* more|strong=\"H3254\"* also|strong=\"H3068\"*, should|strong=\"H3068\"* it|strong=\"H5921\"* please|strong=\"H3190\"* my|strong=\"H3068\"* father to|strong=\"H1980\"* do|strong=\"H6213\"* you|strong=\"H3588\"* evil|strong=\"H7451\"*, if|strong=\"H3588\"* I|strong=\"H3588\"* don’t disclose|strong=\"H1540\"* it|strong=\"H5921\"* to|strong=\"H1980\"* you|strong=\"H3588\"* and|strong=\"H1980\"* send|strong=\"H7971\"* you|strong=\"H3588\"* away|strong=\"H7971\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H1961\"* go|strong=\"H1980\"* in|strong=\"H5921\"* peace|strong=\"H7965\"*. May|strong=\"H1961\"* Yahweh|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3588\"* as|strong=\"H1961\"* he|strong=\"H3588\"* has|strong=\"H3068\"* been|strong=\"H1961\"* with|strong=\"H5973\"* my|strong=\"H3068\"* father." + }, + { + "verseNum": 14, + "text": "You|strong=\"H6213\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* only show|strong=\"H6213\"* me|strong=\"H5978\"* the|strong=\"H6213\"* loving kindness|strong=\"H2617\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* while|strong=\"H5750\"* I|strong=\"H3808\"* still|strong=\"H5750\"* live|strong=\"H2416\"*, that|strong=\"H3068\"* I|strong=\"H3808\"* not|strong=\"H3808\"* die|strong=\"H4191\"*;" + }, + { + "verseNum": 15, + "text": "but|strong=\"H3808\"* you|strong=\"H6440\"* shall|strong=\"H3068\"* also|strong=\"H3068\"* not|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* your|strong=\"H3068\"* kindness|strong=\"H2617\"* from|strong=\"H6440\"* my|strong=\"H3068\"* house|strong=\"H1004\"* forever|strong=\"H5769\"*, no|strong=\"H3808\"*, not|strong=\"H3808\"* when|strong=\"H5704\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* every|strong=\"H3068\"* one|strong=\"H3808\"* of|strong=\"H1004\"* the|strong=\"H6440\"* enemies of|strong=\"H1004\"* David|strong=\"H1732\"* from|strong=\"H6440\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* earth.”" + }, + { + "verseNum": 16, + "text": "So|strong=\"H3027\"* Jonathan|strong=\"H3083\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant with|strong=\"H5973\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"*, saying, “Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* require|strong=\"H1245\"* it|strong=\"H3772\"* at|strong=\"H3068\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* David|strong=\"H1732\"*’s enemies|strong=\"H3027\"*.”" + }, + { + "verseNum": 17, + "text": "Jonathan|strong=\"H3083\"* caused|strong=\"H3083\"* David|strong=\"H1732\"* to|strong=\"H1732\"* swear|strong=\"H7650\"* again|strong=\"H3254\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* love that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1732\"* to|strong=\"H1732\"* him|strong=\"H1732\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* loved him|strong=\"H1732\"* as|strong=\"H5315\"* he|strong=\"H3588\"* loved his|strong=\"H1732\"* own|strong=\"H5315\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H3588\"* Jonathan|strong=\"H3083\"* said to|strong=\"H2320\"* him|strong=\"H6485\"*, “Tomorrow|strong=\"H4279\"* is|strong=\"H2320\"* the|strong=\"H3588\"* new|strong=\"H2320\"* moon|strong=\"H2320\"*, and|strong=\"H3083\"* you|strong=\"H3588\"* will|strong=\"H2320\"* be|strong=\"H2320\"* missed|strong=\"H6485\"*, because|strong=\"H3588\"* your|strong=\"H3588\"* seat|strong=\"H4186\"* will|strong=\"H2320\"* be|strong=\"H2320\"* empty|strong=\"H6485\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3117\"* you|strong=\"H3117\"* have|strong=\"H3117\"* stayed|strong=\"H3427\"* three|strong=\"H8027\"* days|strong=\"H3117\"*, go|strong=\"H3381\"* down|strong=\"H3381\"* quickly|strong=\"H3966\"* and|strong=\"H3117\"* come|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3117\"* place|strong=\"H4725\"* where|strong=\"H8033\"* you|strong=\"H3117\"* hid|strong=\"H5641\"* yourself|strong=\"H8033\"* when|strong=\"H3117\"* this|strong=\"H3117\"* started, and|strong=\"H3117\"* remain|strong=\"H3427\"* by|strong=\"H3117\"* the|strong=\"H3117\"* stone Ezel." + }, + { + "verseNum": 20, + "text": "I|strong=\"H7971\"* will|strong=\"H7971\"* shoot|strong=\"H3384\"* three|strong=\"H7969\"* arrows|strong=\"H2678\"* on|strong=\"H7971\"* its|strong=\"H3384\"* side|strong=\"H6654\"*, as though I|strong=\"H7971\"* shot|strong=\"H3384\"* at|strong=\"H7969\"* a|strong=\"H3068\"* mark|strong=\"H4307\"*." + }, + { + "verseNum": 21, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* send|strong=\"H7971\"* the|strong=\"H3588\"* boy|strong=\"H5288\"*, saying|strong=\"H1697\"*, ‘Go|strong=\"H3212\"*, find|strong=\"H4672\"* the|strong=\"H3588\"* arrows|strong=\"H2678\"*!’ If|strong=\"H3588\"* I|strong=\"H3588\"* tell the|strong=\"H3588\"* boy|strong=\"H5288\"*, ‘Behold|strong=\"H2009\"*, the|strong=\"H3588\"* arrows|strong=\"H2678\"* are|strong=\"H1697\"* on|strong=\"H3068\"* this|strong=\"H1697\"* side|strong=\"H2008\"* of|strong=\"H3068\"* you|strong=\"H3588\"*. Take|strong=\"H3947\"* them|strong=\"H7971\"*;’ then|strong=\"H2009\"* come|strong=\"H3212\"*, for|strong=\"H3588\"* there|strong=\"H2009\"* is|strong=\"H3068\"* peace|strong=\"H7965\"* to|strong=\"H3068\"* you|strong=\"H3588\"* and|strong=\"H3068\"* no|strong=\"H4480\"* danger, as|strong=\"H1697\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* I|strong=\"H3588\"* say this|strong=\"H3541\"* to|strong=\"H3212\"* the|strong=\"H3588\"* boy|strong=\"H5958\"*, ‘Behold|strong=\"H2009\"*, the|strong=\"H3588\"* arrows|strong=\"H2678\"* are|strong=\"H3068\"* beyond|strong=\"H4480\"* you|strong=\"H3588\"*,’ then|strong=\"H2009\"* go|strong=\"H3212\"* your|strong=\"H3068\"* way|strong=\"H3212\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H3588\"* away|strong=\"H7971\"*." + }, + { + "verseNum": 23, + "text": "Concerning|strong=\"H1697\"* the|strong=\"H3068\"* matter|strong=\"H1697\"* which|strong=\"H3068\"* you|strong=\"H5704\"* and|strong=\"H3068\"* I|strong=\"H5704\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* of|strong=\"H3068\"*, behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* between|strong=\"H5704\"* you|strong=\"H5704\"* and|strong=\"H3068\"* me|strong=\"H1696\"* forever|strong=\"H5769\"*.”" + }, + { + "verseNum": 24, + "text": "So|strong=\"H1961\"* David|strong=\"H1732\"* hid|strong=\"H5641\"* himself|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* field|strong=\"H7704\"*. When|strong=\"H1961\"* the|strong=\"H5921\"* new|strong=\"H2320\"* moon|strong=\"H2320\"* had|strong=\"H1961\"* come|strong=\"H1961\"*, the|strong=\"H5921\"* king|strong=\"H4428\"* sat|strong=\"H3427\"* himself|strong=\"H3427\"* down|strong=\"H3427\"* to|strong=\"H1961\"* eat|strong=\"H3899\"* food|strong=\"H3899\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H1732\"* seat|strong=\"H4186\"*, as|strong=\"H3427\"* at|strong=\"H3427\"* other|strong=\"H6471\"* times|strong=\"H6471\"*, even|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* seat|strong=\"H4186\"* by|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H7023\"*; and|strong=\"H6965\"* Jonathan|strong=\"H3083\"* stood|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H6965\"* Abner sat|strong=\"H3427\"* by|strong=\"H5921\"* Saul|strong=\"H7586\"*’s side|strong=\"H6654\"*, but|strong=\"H4428\"* David|strong=\"H1732\"*’s place|strong=\"H4725\"* was|strong=\"H1732\"* empty|strong=\"H6485\"*." + }, + { + "verseNum": 26, + "text": "Nevertheless|strong=\"H3588\"* Saul|strong=\"H7586\"* didn’t say|strong=\"H1696\"* anything|strong=\"H3972\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* thought|strong=\"H1696\"*, “Something|strong=\"H3972\"* has|strong=\"H3117\"* happened to|strong=\"H1696\"* him|strong=\"H1931\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* not|strong=\"H3808\"* clean|strong=\"H2889\"*. Surely|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* not|strong=\"H3808\"* clean|strong=\"H2889\"*.”" + }, + { + "verseNum": 27, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* next|strong=\"H4283\"* day|strong=\"H3117\"* after|strong=\"H4283\"* the|strong=\"H3117\"* new|strong=\"H2320\"* moon|strong=\"H2320\"*, the|strong=\"H3117\"* second|strong=\"H8145\"* day|strong=\"H3117\"*, David|strong=\"H1732\"*’s place|strong=\"H4725\"* was|strong=\"H1961\"* empty|strong=\"H6485\"*. Saul|strong=\"H7586\"* said to|strong=\"H1961\"* Jonathan|strong=\"H3083\"* his|strong=\"H1732\"* son|strong=\"H1121\"*, “Why|strong=\"H4069\"* didn’t the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"* come|strong=\"H1961\"* to|strong=\"H1961\"* eat|strong=\"H3899\"*, either|strong=\"H1571\"* yesterday|strong=\"H8543\"*, or|strong=\"H3808\"* today|strong=\"H3117\"*?”" + }, + { + "verseNum": 28, + "text": "Jonathan|strong=\"H3083\"* answered|strong=\"H6030\"* Saul|strong=\"H7586\"*, “David|strong=\"H1732\"* earnestly|strong=\"H7592\"* asked|strong=\"H7592\"* permission of|strong=\"H7592\"* me|strong=\"H5978\"* to|strong=\"H5704\"* go|strong=\"H1732\"* to|strong=\"H5704\"* Bethlehem|strong=\"H1035\"*." + }, + { + "verseNum": 29, + "text": "He|strong=\"H1931\"* said|strong=\"H3651\"*, ‘Please|strong=\"H4994\"* let|strong=\"H7971\"* me|strong=\"H4994\"* go|strong=\"H7971\"*, for|strong=\"H3588\"* our|strong=\"H7200\"* family|strong=\"H4940\"* has|strong=\"H4428\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* in|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"*. My|strong=\"H7200\"* brother has|strong=\"H4428\"* commanded|strong=\"H6680\"* me|strong=\"H4994\"* to|strong=\"H7971\"* be|strong=\"H3808\"* there|strong=\"H4672\"*. Now|strong=\"H6258\"*, if|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"*, please|strong=\"H4994\"* let|strong=\"H7971\"* me|strong=\"H4994\"* go|strong=\"H7971\"* away|strong=\"H7971\"* and|strong=\"H7971\"* see|strong=\"H7200\"* my|strong=\"H7200\"* brothers.’ Therefore|strong=\"H3651\"* he|strong=\"H1931\"* has|strong=\"H4428\"* not|strong=\"H3808\"* come|strong=\"H4672\"* to|strong=\"H7971\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s table|strong=\"H7979\"*.”" + }, + { + "verseNum": 30, + "text": "Then|strong=\"H3588\"* Saul|strong=\"H7586\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* Jonathan|strong=\"H3083\"*, and|strong=\"H1121\"* he|strong=\"H3588\"* said to|strong=\"H1121\"* him|strong=\"H3045\"*, “You|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* perverse|strong=\"H5753\"* rebellious|strong=\"H4780\"* woman, don’t I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3045\"* chosen|strong=\"H3045\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"* to|strong=\"H1121\"* your|strong=\"H3045\"* own shame|strong=\"H1322\"*, and|strong=\"H1121\"* to|strong=\"H1121\"* the|strong=\"H3588\"* shame|strong=\"H1322\"* of|strong=\"H1121\"* your|strong=\"H3045\"* mother’s nakedness|strong=\"H6172\"*?" + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* as|strong=\"H3117\"* long|strong=\"H3117\"* as|strong=\"H3117\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"* lives|strong=\"H2425\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth, you|strong=\"H3588\"* will|strong=\"H1121\"* not|strong=\"H3808\"* be|strong=\"H3808\"* established|strong=\"H3559\"*, nor|strong=\"H3808\"* will|strong=\"H1121\"* your|strong=\"H3605\"* kingdom|strong=\"H4438\"*. Therefore|strong=\"H5921\"* now|strong=\"H6258\"* send|strong=\"H7971\"* and|strong=\"H1121\"* bring|strong=\"H3947\"* him|strong=\"H5921\"* to|strong=\"H7971\"* me|strong=\"H7971\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* shall|strong=\"H1121\"* surely|strong=\"H3588\"* die|strong=\"H4194\"*!”" + }, + { + "verseNum": 32, + "text": "Jonathan|strong=\"H3083\"* answered|strong=\"H6030\"* Saul|strong=\"H7586\"* his|strong=\"H6213\"* father, and|strong=\"H6030\"* said|strong=\"H6030\"* to|strong=\"H4191\"* him|strong=\"H6213\"*, “Why|strong=\"H4100\"* should|strong=\"H4100\"* he|strong=\"H6213\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*? What|strong=\"H4100\"* has|strong=\"H4100\"* he|strong=\"H6213\"* done|strong=\"H6213\"*?”" + }, + { + "verseNum": 33, + "text": "Saul|strong=\"H7586\"* cast|strong=\"H2904\"* his|strong=\"H1732\"* spear|strong=\"H2595\"* at|strong=\"H5921\"* him|strong=\"H5921\"* to|strong=\"H4191\"* strike|strong=\"H5221\"* him|strong=\"H5921\"*. By|strong=\"H5921\"* this|strong=\"H1931\"* Jonathan|strong=\"H3083\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* his|strong=\"H1732\"* father was|strong=\"H1732\"* determined|strong=\"H3617\"* to|strong=\"H4191\"* put|strong=\"H4191\"* David|strong=\"H1732\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 34, + "text": "So|strong=\"H3808\"* Jonathan|strong=\"H3083\"* arose|strong=\"H6965\"* from|strong=\"H3117\"* the|strong=\"H3588\"* table|strong=\"H7979\"* in|strong=\"H3117\"* fierce|strong=\"H2750\"* anger, and|strong=\"H6965\"* ate no|strong=\"H3808\"* food|strong=\"H3899\"* the|strong=\"H3588\"* second|strong=\"H8145\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3588\"* month|strong=\"H2320\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H1732\"* grieved|strong=\"H6087\"* for|strong=\"H3588\"* David|strong=\"H1732\"*, because|strong=\"H3588\"* his|strong=\"H1732\"* father had|strong=\"H1732\"* treated him|strong=\"H5973\"* shamefully." + }, + { + "verseNum": 35, + "text": "In|strong=\"H1732\"* the|strong=\"H3318\"* morning|strong=\"H1242\"*, Jonathan|strong=\"H3083\"* went|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3318\"* field|strong=\"H7704\"* at|strong=\"H1732\"* the|strong=\"H3318\"* time|strong=\"H4150\"* appointed|strong=\"H4150\"* with|strong=\"H5973\"* David|strong=\"H1732\"*, and|strong=\"H1732\"* a|strong=\"H3068\"* little|strong=\"H6996\"* boy|strong=\"H5288\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 36, + "text": "He|strong=\"H1931\"* said to|strong=\"H5674\"* his|strong=\"H5674\"* boy|strong=\"H5288\"*, “Run|strong=\"H7323\"*, find|strong=\"H4672\"* now|strong=\"H4994\"* the|strong=\"H5674\"* arrows|strong=\"H2678\"* which|strong=\"H1931\"* I|strong=\"H5288\"* shoot|strong=\"H3384\"*.” As the|strong=\"H5674\"* boy|strong=\"H5288\"* ran|strong=\"H7323\"*, he|strong=\"H1931\"* shot|strong=\"H3384\"* an|strong=\"H4672\"* arrow|strong=\"H2678\"* beyond|strong=\"H5674\"* him|strong=\"H4672\"*." + }, + { + "verseNum": 37, + "text": "When|strong=\"H5704\"* the|strong=\"H4480\"* boy|strong=\"H5288\"* had|strong=\"H3083\"* come|strong=\"H5288\"* to|strong=\"H5704\"* the|strong=\"H4480\"* place|strong=\"H4725\"* of|strong=\"H4480\"* the|strong=\"H4480\"* arrow|strong=\"H2678\"* which|strong=\"H4725\"* Jonathan|strong=\"H3083\"* had|strong=\"H3083\"* shot|strong=\"H3384\"*, Jonathan|strong=\"H3083\"* cried|strong=\"H7121\"* after|strong=\"H4480\"* the|strong=\"H4480\"* boy|strong=\"H5288\"*, and|strong=\"H5288\"* said|strong=\"H7121\"*, “Isn’t the|strong=\"H4480\"* arrow|strong=\"H2678\"* beyond|strong=\"H4480\"* you|strong=\"H5704\"*?”" + }, + { + "verseNum": 38, + "text": "Jonathan|strong=\"H3083\"* cried|strong=\"H7121\"* after|strong=\"H7121\"* the|strong=\"H7121\"* boy|strong=\"H5288\"*, “Go|strong=\"H5288\"* fast|strong=\"H5975\"*! Hurry|strong=\"H2363\"*! Don’t delay|strong=\"H5975\"*!” Jonathan|strong=\"H3083\"*’s boy|strong=\"H5288\"* gathered|strong=\"H3950\"* up|strong=\"H5975\"* the|strong=\"H7121\"* arrows|strong=\"H2678\"*, and|strong=\"H5288\"* came to|strong=\"H7121\"* his|strong=\"H7121\"* master." + }, + { + "verseNum": 39, + "text": "But|strong=\"H3808\"* the|strong=\"H3045\"* boy|strong=\"H5288\"* didn’t know|strong=\"H3045\"* anything|strong=\"H1697\"*. Only Jonathan|strong=\"H3083\"* and|strong=\"H1732\"* David|strong=\"H1732\"* knew|strong=\"H3045\"* the|strong=\"H3045\"* matter|strong=\"H1697\"*." + }, + { + "verseNum": 40, + "text": "Jonathan|strong=\"H3083\"* gave|strong=\"H5414\"* his|strong=\"H5414\"* weapons|strong=\"H3627\"* to|strong=\"H3212\"* his|strong=\"H5414\"* boy|strong=\"H5288\"*, and|strong=\"H3212\"* said to|strong=\"H3212\"* him|strong=\"H5414\"*, “Go|strong=\"H3212\"*, carry|strong=\"H3212\"* them|strong=\"H5414\"* to|strong=\"H3212\"* the|strong=\"H5414\"* city|strong=\"H5892\"*.”" + }, + { + "verseNum": 41, + "text": "As|strong=\"H5704\"* soon as|strong=\"H5704\"* the|strong=\"H5704\"* boy|strong=\"H5288\"* was|strong=\"H1732\"* gone|strong=\"H5307\"*, David|strong=\"H1732\"* arose|strong=\"H6965\"* out|strong=\"H5307\"* of|strong=\"H5045\"* the|strong=\"H5704\"* south|strong=\"H5045\"*, and|strong=\"H6965\"* fell|strong=\"H5307\"* on|strong=\"H5307\"* his|strong=\"H1732\"* face to|strong=\"H5704\"* the|strong=\"H5704\"* ground, and|strong=\"H6965\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* three|strong=\"H7969\"* times|strong=\"H6471\"*. They|strong=\"H5704\"* kissed|strong=\"H5401\"* one|strong=\"H7453\"* another|strong=\"H7453\"* and|strong=\"H6965\"* wept|strong=\"H1058\"* with|strong=\"H1732\"* one|strong=\"H7453\"* another|strong=\"H7453\"*, and|strong=\"H6965\"* David|strong=\"H1732\"* wept|strong=\"H1058\"* the|strong=\"H5704\"* most." + }, + { + "verseNum": 42, + "text": "Jonathan|strong=\"H3083\"* said to|strong=\"H5704\"* David|strong=\"H1732\"*, “Go|strong=\"H1980\"* in|strong=\"H1980\"* peace|strong=\"H7965\"*, because|strong=\"H3068\"* we|strong=\"H3068\"* have|strong=\"H1961\"* both|strong=\"H8147\"* sworn|strong=\"H7650\"* in|strong=\"H1980\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, saying, ‘Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* between|strong=\"H7965\"* me|strong=\"H1961\"* and|strong=\"H1980\"* you|strong=\"H5704\"*, and|strong=\"H1980\"* between|strong=\"H7965\"* my|strong=\"H3068\"* offspring|strong=\"H2233\"* and|strong=\"H1980\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*, forever|strong=\"H5769\"*.’” He|strong=\"H5704\"* arose and|strong=\"H1980\"* departed|strong=\"H1980\"*; and|strong=\"H1980\"* Jonathan|strong=\"H3083\"* went|strong=\"H1980\"* into|strong=\"H1980\"* the|strong=\"H3068\"* city." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6965\"* David came|strong=\"H3212\"* to|strong=\"H3212\"* Nob to|strong=\"H3212\"* Ahimelech the|strong=\"H6965\"* priest. Ahimelech came|strong=\"H3212\"* to|strong=\"H3212\"* meet David trembling, and|strong=\"H6965\"* said to|strong=\"H3212\"* him|strong=\"H3083\"*, “Why are|strong=\"H5892\"* you|strong=\"H3212\"* alone, and|strong=\"H6965\"* no|strong=\"H6965\"* man with|strong=\"H3212\"* you|strong=\"H3212\"*?”" + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* said to|strong=\"H1732\"* Ahimelech the|strong=\"H1732\"* priest|strong=\"H3548\"*, “The|strong=\"H1732\"* king has|strong=\"H3548\"* commanded me to|strong=\"H1732\"* do something, and|strong=\"H3548\"* has|strong=\"H3548\"* said to|strong=\"H1732\"* me, ‘Let no one know anything|strong=\"H7122\"* about|strong=\"H1732\"* the|strong=\"H1732\"* business about|strong=\"H1732\"* which|strong=\"H3548\"* I|strong=\"H7122\"* send you|strong=\"H7122\"*, and|strong=\"H3548\"* what|strong=\"H1732\"* I|strong=\"H7122\"* have|strong=\"H3548\"* commanded you|strong=\"H7122\"*. I|strong=\"H7122\"* have|strong=\"H3548\"* sent|strong=\"H1732\"* the|strong=\"H1732\"* young|strong=\"H1732\"* men to|strong=\"H1732\"* a|strong=\"H3068\"* certain place.’" + }, + { + "verseNum": 3, + "text": "Now|strong=\"H4428\"* therefore|strong=\"H1732\"* what|strong=\"H1697\"* is|strong=\"H1697\"* under your|strong=\"H3045\"* hand? Please give|strong=\"H6680\"* me|strong=\"H7971\"* five loaves of|strong=\"H4428\"* bread in|strong=\"H4428\"* my|strong=\"H1732\"* hand, or|strong=\"H4428\"* whatever is|strong=\"H1697\"* available.”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H5414\"* priest answered David|strong=\"H3027\"*, and|strong=\"H3027\"* said, “I|strong=\"H5414\"* have|strong=\"H3426\"* no|strong=\"H4672\"* common bread|strong=\"H3899\"*, but|strong=\"H6258\"* there|strong=\"H3426\"* is|strong=\"H3426\"* holy bread|strong=\"H3899\"*; if|strong=\"H3426\"* only the|strong=\"H5414\"* young|strong=\"H4672\"* men have|strong=\"H3426\"* kept|strong=\"H5414\"* themselves|strong=\"H5414\"* from|strong=\"H3027\"* women.”" + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"* answered|strong=\"H6030\"* the|strong=\"H3588\"* priest|strong=\"H3548\"*, and|strong=\"H6030\"* said|strong=\"H6030\"* to|strong=\"H8104\"* him|strong=\"H3027\"*, “Truly|strong=\"H3588\"*, women have|strong=\"H3426\"* been|strong=\"H3426\"* kept|strong=\"H8104\"* from|strong=\"H3027\"* us|strong=\"H3588\"* as|strong=\"H3588\"* usual these|strong=\"H1732\"* three days. When|strong=\"H3588\"* I|strong=\"H3588\"* came|strong=\"H3548\"* out|strong=\"H3027\"*, the|strong=\"H3588\"* vessels of|strong=\"H3027\"* the|strong=\"H3588\"* young|strong=\"H5288\"* men|strong=\"H5288\"* were|strong=\"H3027\"* holy|strong=\"H6944\"*, though|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H1732\"* only|strong=\"H3588\"* a|strong=\"H3068\"* common|strong=\"H2455\"* journey. How|strong=\"H3588\"* much|strong=\"H3027\"* more|strong=\"H3588\"* then|strong=\"H6030\"* today shall|strong=\"H3548\"* their|strong=\"H3588\"* vessels be|strong=\"H3426\"* holy|strong=\"H6944\"*?”" + }, + { + "verseNum": 6, + "text": "So|strong=\"H1961\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* gave|strong=\"H3318\"* him|strong=\"H3318\"* holy|strong=\"H6944\"* bread; for|strong=\"H3588\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H6113\"* bread there|strong=\"H1961\"* but|strong=\"H3588\"* the|strong=\"H3588\"* show|strong=\"H1961\"* bread that|strong=\"H3588\"* was|strong=\"H1961\"* taken|strong=\"H1961\"* from|strong=\"H3318\"* before|strong=\"H8032\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3318\"* be|strong=\"H1961\"* replaced with|strong=\"H3318\"* hot bread in|strong=\"H3117\"* the|strong=\"H3588\"* day|strong=\"H3117\"* when|strong=\"H3588\"* it|strong=\"H1931\"* was|strong=\"H1961\"* taken|strong=\"H1961\"* away|strong=\"H3318\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H1961\"* a|strong=\"H3068\"* certain man|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* servants|strong=\"H6440\"* of|strong=\"H3068\"* Saul was|strong=\"H3068\"* there|strong=\"H8033\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, detained before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* his|strong=\"H5414\"* name was|strong=\"H3068\"* Doeg the|strong=\"H6440\"* Edomite, the|strong=\"H6440\"* best of|strong=\"H3068\"* the|strong=\"H6440\"* herdsmen who|strong=\"H3068\"* belonged|strong=\"H1961\"* to|strong=\"H3068\"* Saul." + }, + { + "verseNum": 8, + "text": "David|strong=\"H3117\"* said to|strong=\"H3068\"* Ahimelech, “Isn’t there|strong=\"H8033\"* here|strong=\"H8033\"* under|strong=\"H6440\"* your|strong=\"H3068\"* hand spear or|strong=\"H3117\"* sword? For|strong=\"H6440\"* I|strong=\"H3117\"* haven’t brought|strong=\"H3068\"* my|strong=\"H3068\"* sword or|strong=\"H3117\"* my|strong=\"H3068\"* weapons with|strong=\"H3068\"* me|strong=\"H6440\"*, because|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H6440\"*’s business required|strong=\"H3117\"* haste.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H3588\"* priest said|strong=\"H1697\"*, “Behold|strong=\"H3808\"*, the|strong=\"H3588\"* sword|strong=\"H2719\"* of|strong=\"H4428\"* Goliath the|strong=\"H3588\"* Philistine, whom|strong=\"H3588\"* you|strong=\"H3588\"* killed|strong=\"H2719\"* in|strong=\"H4428\"* the|strong=\"H3588\"* valley of|strong=\"H4428\"* Elah, is|strong=\"H3426\"* here|strong=\"H6311\"* wrapped in|strong=\"H4428\"* a|strong=\"H3068\"* cloth behind the|strong=\"H3588\"* ephod. If|strong=\"H3588\"* you|strong=\"H3588\"* would|strong=\"H1697\"* like|strong=\"H1961\"* to|strong=\"H1961\"* take|strong=\"H3947\"* that|strong=\"H3588\"*, take|strong=\"H3947\"* it|strong=\"H3588\"*, for|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3426\"* no|strong=\"H3808\"* other|strong=\"H6311\"* except|strong=\"H3588\"* that|strong=\"H3588\"* here|strong=\"H6311\"*.”" + }, + { + "verseNum": 10, + "text": "David|strong=\"H1732\"* arose and|strong=\"H3548\"* fled that|strong=\"H3588\"* day for|strong=\"H3588\"* fear of|strong=\"H6010\"* Saul|strong=\"H1931\"*, and|strong=\"H3548\"* went|strong=\"H1732\"* to|strong=\"H5414\"* Achish the|strong=\"H3588\"* king of|strong=\"H6010\"* Gath." + }, + { + "verseNum": 11, + "text": "The|strong=\"H6440\"* servants|strong=\"H6440\"* of|strong=\"H4428\"* Achish said to|strong=\"H6440\"* him|strong=\"H6440\"*, “Isn’t this|strong=\"H1931\"* David|strong=\"H1732\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H6440\"* land|strong=\"H6440\"*? Didn’t they|strong=\"H3117\"* sing to|strong=\"H6440\"* one|strong=\"H1931\"* another|strong=\"H6440\"* about|strong=\"H3117\"* him|strong=\"H6440\"* in|strong=\"H4428\"* dances, saying," + }, + { + "verseNum": 12, + "text": "David|strong=\"H1732\"* laid|strong=\"H1732\"* up|strong=\"H6030\"* these|strong=\"H2088\"* words in|strong=\"H4428\"* his|strong=\"H1732\"* heart, and|strong=\"H6030\"* was|strong=\"H1732\"* very|strong=\"H2088\"* afraid of|strong=\"H4428\"* Achish the|strong=\"H5221\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Gath." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1732\"* changed his|strong=\"H7760\"* behavior before|strong=\"H6440\"* them|strong=\"H6440\"* and|strong=\"H4428\"* pretended to|strong=\"H6440\"* be|strong=\"H1697\"* insane in|strong=\"H4428\"* their|strong=\"H7760\"* hands, and|strong=\"H4428\"* scribbled on|strong=\"H7760\"* the|strong=\"H6440\"* doors of|strong=\"H4428\"* the|strong=\"H6440\"* gate, and|strong=\"H4428\"* let|strong=\"H7760\"* his|strong=\"H7760\"* spittle fall down|strong=\"H7760\"* on|strong=\"H7760\"* his|strong=\"H7760\"* beard." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H3381\"* Achish said to|strong=\"H3381\"* his|strong=\"H5921\"* servants, “Look|strong=\"H5869\"*, you|strong=\"H5921\"* see|strong=\"H5869\"* the|strong=\"H5921\"* man|strong=\"H8179\"* is|strong=\"H3027\"* insane. Why|strong=\"H5921\"* then|strong=\"H3381\"* have|strong=\"H5869\"* you|strong=\"H5921\"* brought|strong=\"H3381\"* him|strong=\"H5921\"* to|strong=\"H3381\"* me|strong=\"H5921\"*?" + }, + { + "verseNum": 15, + "text": "Do|strong=\"H4100\"* I|strong=\"H2009\"* lack madmen|strong=\"H7696\"*, that|strong=\"H7200\"* you|strong=\"H4100\"* have|strong=\"H5650\"* brought|strong=\"H5650\"* this|strong=\"H7200\"* fellow|strong=\"H7696\"* to|strong=\"H5650\"* play the|strong=\"H7200\"* madman|strong=\"H7696\"* in|strong=\"H5650\"* my|strong=\"H7200\"* presence? Should|strong=\"H4100\"* this|strong=\"H7200\"* fellow|strong=\"H7696\"* come into|strong=\"H7200\"* my|strong=\"H7200\"* house?”" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* therefore|strong=\"H1732\"* departed|strong=\"H3212\"* from|strong=\"H3381\"* there|strong=\"H8033\"* and|strong=\"H1004\"* escaped|strong=\"H4422\"* to|strong=\"H3381\"* Adullam|strong=\"H5725\"*’s cave|strong=\"H4631\"*. When|strong=\"H8085\"* his|strong=\"H3605\"* brothers and|strong=\"H1004\"* all|strong=\"H3605\"* his|strong=\"H3605\"* father’s house|strong=\"H1004\"* heard|strong=\"H8085\"* it|strong=\"H3381\"*, they|strong=\"H8033\"* went|strong=\"H3212\"* down|strong=\"H3381\"* there|strong=\"H8033\"* to|strong=\"H3381\"* him|strong=\"H3381\"*." + }, + { + "verseNum": 2, + "text": "Everyone|strong=\"H3605\"* who|strong=\"H3605\"* was|strong=\"H1961\"* in|strong=\"H5921\"* distress|strong=\"H4689\"*, everyone|strong=\"H3605\"* who|strong=\"H3605\"* was|strong=\"H1961\"* in|strong=\"H5921\"* debt|strong=\"H5378\"*, and|strong=\"H3967\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* was|strong=\"H1961\"* discontented|strong=\"H4751\"* gathered|strong=\"H6908\"* themselves|strong=\"H5315\"* to|strong=\"H1961\"* him|strong=\"H5921\"*; and|strong=\"H3967\"* he|strong=\"H3605\"* became|strong=\"H1961\"* captain|strong=\"H8269\"* over|strong=\"H5921\"* them|strong=\"H5921\"*. There|strong=\"H1961\"* were|strong=\"H1961\"* with|strong=\"H5973\"* him|strong=\"H5921\"* about|strong=\"H1961\"* four hundred|strong=\"H3967\"* men|strong=\"H3605\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* went|strong=\"H3212\"* from|strong=\"H3318\"* there|strong=\"H8033\"* to|strong=\"H5704\"* Mizpeh|strong=\"H4708\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"*; and|strong=\"H4428\"* he|strong=\"H5704\"* said|strong=\"H3318\"* to|strong=\"H5704\"* the|strong=\"H6213\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"*, “Please|strong=\"H4994\"* let|strong=\"H4994\"* my|strong=\"H1732\"* father and|strong=\"H4428\"* my|strong=\"H1732\"* mother come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H5704\"* you|strong=\"H5704\"*, until|strong=\"H5704\"* I|strong=\"H5704\"* know|strong=\"H3045\"* what|strong=\"H4100\"* God will|strong=\"H4428\"* do|strong=\"H6213\"* for|strong=\"H5704\"* me|strong=\"H4994\"*.”" + }, + { + "verseNum": 4, + "text": "He|strong=\"H3117\"* brought|strong=\"H5148\"* them|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"*; and|strong=\"H4428\"* they|strong=\"H3117\"* lived|strong=\"H3427\"* with|strong=\"H5973\"* him|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* time|strong=\"H3117\"* that|strong=\"H3605\"* David|strong=\"H1732\"* was|strong=\"H1961\"* in|strong=\"H3427\"* the|strong=\"H3605\"* stronghold|strong=\"H4686\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H1732\"* prophet|strong=\"H5030\"* Gad|strong=\"H1410\"* said to|strong=\"H3212\"* David|strong=\"H1732\"*, “Don’t stay|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H1732\"* stronghold|strong=\"H4686\"*. Depart|strong=\"H3212\"*, and|strong=\"H3063\"* go|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H1732\"* land of|strong=\"H3427\"* Judah|strong=\"H3063\"*.”" + }, + { + "verseNum": 6, + "text": "Saul|strong=\"H7586\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* David|strong=\"H1732\"* was|strong=\"H1732\"* discovered|strong=\"H3045\"*, with|strong=\"H5921\"* the|strong=\"H3605\"* men|strong=\"H5650\"* who|strong=\"H3605\"* were|strong=\"H3027\"* with|strong=\"H5921\"* him|strong=\"H5921\"*. Now|strong=\"H3588\"* Saul|strong=\"H7586\"* was|strong=\"H1732\"* sitting|strong=\"H3427\"* in|strong=\"H3427\"* Gibeah|strong=\"H1390\"*, under|strong=\"H8478\"* the|strong=\"H3605\"* tamarisk tree in|strong=\"H3427\"* Ramah, with|strong=\"H5921\"* his|strong=\"H3605\"* spear|strong=\"H2595\"* in|strong=\"H3427\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* were|strong=\"H3027\"* standing|strong=\"H5324\"* around|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 7, + "text": "Saul|strong=\"H7586\"* said|strong=\"H8085\"* to|strong=\"H5921\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* who|strong=\"H3605\"* stood|strong=\"H5324\"* around|strong=\"H5921\"* him|strong=\"H5414\"*, “Hear|strong=\"H8085\"* now|strong=\"H4994\"*, you|strong=\"H5414\"* Benjamites! Will|strong=\"H5650\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"* give|strong=\"H5414\"* everyone|strong=\"H3605\"* of|strong=\"H1121\"* you|strong=\"H5414\"* fields|strong=\"H7704\"* and|strong=\"H3967\"* vineyards|strong=\"H3754\"*? Will|strong=\"H5650\"* he|strong=\"H3605\"* make|strong=\"H7760\"* you|strong=\"H5414\"* all|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* thousands and|strong=\"H3967\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* hundreds|strong=\"H3967\"*?" + }, + { + "verseNum": 8, + "text": "Is|strong=\"H2088\"* that|strong=\"H3588\"* why|strong=\"H5921\"* all|strong=\"H3605\"* of|strong=\"H1121\"* you|strong=\"H3588\"* have|strong=\"H1121\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H1121\"* there|strong=\"H2088\"* is|strong=\"H2088\"* no|strong=\"H4480\"* one|strong=\"H2088\"* who|strong=\"H3605\"* discloses|strong=\"H1540\"* to|strong=\"H5921\"* me|strong=\"H5921\"* when|strong=\"H3588\"* my|strong=\"H3605\"* son|strong=\"H1121\"* makes|strong=\"H3772\"* a|strong=\"H3068\"* treaty with|strong=\"H5973\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"*, and|strong=\"H1121\"* there|strong=\"H2088\"* is|strong=\"H2088\"* none|strong=\"H3605\"* of|strong=\"H1121\"* you|strong=\"H3588\"* who|strong=\"H3605\"* is|strong=\"H2088\"* sorry|strong=\"H2470\"* for|strong=\"H3588\"* me|strong=\"H5921\"*, or|strong=\"H3117\"* discloses|strong=\"H1540\"* to|strong=\"H5921\"* me|strong=\"H5921\"* that|strong=\"H3588\"* my|strong=\"H3605\"* son|strong=\"H1121\"* has|strong=\"H5650\"* stirred|strong=\"H6965\"* up|strong=\"H6965\"* my|strong=\"H3605\"* servant|strong=\"H5650\"* against|strong=\"H5921\"* me|strong=\"H5921\"*, to|strong=\"H5921\"* lie in|strong=\"H5921\"* wait, as|strong=\"H3117\"* it|strong=\"H5921\"* is|strong=\"H2088\"* today|strong=\"H3117\"*?”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H6030\"* Doeg|strong=\"H1673\"* the|strong=\"H5921\"* Edomite, who|strong=\"H1931\"* stood|strong=\"H5324\"* by|strong=\"H5921\"* the|strong=\"H5921\"* servants|strong=\"H5650\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*, answered|strong=\"H6030\"* and|strong=\"H1121\"* said|strong=\"H6030\"*, “I|strong=\"H5921\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"* coming|strong=\"H5650\"* to|strong=\"H5921\"* Nob|strong=\"H5011\"*, to|strong=\"H5921\"* Ahimelech the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub." + }, + { + "verseNum": 10, + "text": "He|strong=\"H3068\"* inquired|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* for|strong=\"H3068\"* him|strong=\"H5414\"*, gave|strong=\"H5414\"* him|strong=\"H5414\"* food|strong=\"H6720\"*, and|strong=\"H3068\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* the|strong=\"H5414\"* sword|strong=\"H2719\"* of|strong=\"H3068\"* Goliath|strong=\"H1555\"* the|strong=\"H5414\"* Philistine|strong=\"H6430\"*.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H7971\"* the|strong=\"H3605\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* call|strong=\"H7121\"* Ahimelech the|strong=\"H3605\"* priest|strong=\"H3548\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub, and|strong=\"H1121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* father|strong=\"H1121\"*’s house|strong=\"H1004\"*, the|strong=\"H3605\"* priests|strong=\"H3548\"* who|strong=\"H3605\"* were|strong=\"H1121\"* in|strong=\"H1004\"* Nob|strong=\"H5011\"*; and|strong=\"H1121\"* they|strong=\"H3605\"* all|strong=\"H3605\"* came|strong=\"H3548\"* to|strong=\"H7971\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 12, + "text": "Saul|strong=\"H7586\"* said|strong=\"H8085\"*, “Hear|strong=\"H8085\"* now|strong=\"H4994\"*, you|strong=\"H4994\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub.”" + }, + { + "verseNum": 13, + "text": "Saul|strong=\"H7586\"* said to|strong=\"H5921\"* him|strong=\"H5414\"*, “Why|strong=\"H4100\"* have|strong=\"H1121\"* you|strong=\"H5414\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* me|strong=\"H5414\"*, you|strong=\"H5414\"* and|strong=\"H1121\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"*, in|strong=\"H5921\"* that|strong=\"H3117\"* you|strong=\"H5414\"* have|strong=\"H1121\"* given|strong=\"H5414\"* him|strong=\"H5414\"* bread|strong=\"H3899\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* sword|strong=\"H2719\"*, and|strong=\"H1121\"* have|strong=\"H1121\"* inquired|strong=\"H7592\"* of|strong=\"H1121\"* God|strong=\"H5414\"* for|strong=\"H5921\"* him|strong=\"H5414\"*, that|strong=\"H3117\"* he|strong=\"H3117\"* should|strong=\"H4100\"* rise|strong=\"H6965\"* against|strong=\"H5921\"* me|strong=\"H5414\"*, to|strong=\"H5921\"* lie|strong=\"H5414\"* in|strong=\"H5921\"* wait, as|strong=\"H3117\"* it|strong=\"H5414\"* is|strong=\"H2088\"* today|strong=\"H3117\"*?”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H6030\"* Ahimelech answered|strong=\"H6030\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H6030\"* said|strong=\"H6030\"*, “Who|strong=\"H4310\"* among|strong=\"H4310\"* all|strong=\"H3605\"* your|strong=\"H3605\"* servants|strong=\"H5650\"* is|strong=\"H4310\"* so|strong=\"H5493\"* faithful as|strong=\"H1004\"* David|strong=\"H1732\"*, who|strong=\"H4310\"* is|strong=\"H4310\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s son-in-law|strong=\"H2860\"*, captain of|strong=\"H4428\"* your|strong=\"H3605\"* body guard|strong=\"H4928\"*, and|strong=\"H6030\"* honored|strong=\"H3513\"* in|strong=\"H1004\"* your|strong=\"H3605\"* house|strong=\"H1004\"*?" + }, + { + "verseNum": 15, + "text": "Have|strong=\"H3045\"* I|strong=\"H3588\"* today|strong=\"H3117\"* begun|strong=\"H2490\"* to|strong=\"H3117\"* inquire|strong=\"H7592\"* of|strong=\"H4428\"* God|strong=\"H3808\"* for|strong=\"H3588\"* him|strong=\"H7760\"*? Be|strong=\"H3808\"* it|strong=\"H7760\"* far|strong=\"H2486\"* from|strong=\"H3117\"* me|strong=\"H7760\"*! Don’t let|strong=\"H7760\"* the|strong=\"H3605\"* king|strong=\"H4428\"* impute|strong=\"H7760\"* anything|strong=\"H3605\"* to|strong=\"H3117\"* his|strong=\"H3605\"* servant|strong=\"H5650\"*, nor|strong=\"H3808\"* to|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H4428\"* my|strong=\"H3605\"* father; for|strong=\"H3588\"* your|strong=\"H3605\"* servant|strong=\"H5650\"* knew|strong=\"H3045\"* nothing|strong=\"H3808\"* of|strong=\"H4428\"* all|strong=\"H3605\"* this|strong=\"H2063\"*, less|strong=\"H6996\"* or|strong=\"H3808\"* more|strong=\"H1419\"*.”" + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* said, “You|strong=\"H3605\"* shall|strong=\"H4428\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*, Ahimelech, you|strong=\"H3605\"* and|strong=\"H4428\"* all|strong=\"H3605\"* your|strong=\"H3605\"* father’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 17, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* said to|strong=\"H4191\"* the|strong=\"H5921\"* guard|strong=\"H7323\"* who|strong=\"H1931\"* stood|strong=\"H5324\"* about|strong=\"H5437\"* him|strong=\"H5921\"*, “Turn|strong=\"H5437\"* and|strong=\"H3068\"* kill|strong=\"H4191\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*, because|strong=\"H3588\"* their|strong=\"H3068\"* hand|strong=\"H3027\"* also|strong=\"H1571\"* is|strong=\"H3068\"* with|strong=\"H5973\"* David|strong=\"H1732\"*, and|strong=\"H3068\"* because|strong=\"H3588\"* they|strong=\"H3588\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* he|strong=\"H1931\"* fled|strong=\"H1272\"* and|strong=\"H3068\"* didn’t disclose|strong=\"H1540\"* it|strong=\"H1931\"* to|strong=\"H4191\"* me|strong=\"H7971\"*.” But|strong=\"H3588\"* the|strong=\"H5921\"* servants|strong=\"H5650\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* wouldn’t put|strong=\"H4191\"* out|strong=\"H7971\"* their|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H4191\"* fall|strong=\"H6293\"* on|strong=\"H5921\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5375\"* king|strong=\"H4428\"* said to|strong=\"H4191\"* Doeg|strong=\"H1673\"*, “Turn|strong=\"H5437\"* and|strong=\"H4428\"* attack|strong=\"H6293\"* the|strong=\"H5375\"* priests|strong=\"H3548\"*!”" + }, + { + "verseNum": 19, + "text": "He|strong=\"H5704\"* struck|strong=\"H5221\"* Nob|strong=\"H5011\"*, the|strong=\"H5221\"* city|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H5221\"* priests|strong=\"H3548\"*, with|strong=\"H5892\"* the|strong=\"H5221\"* edge|strong=\"H6310\"* of|strong=\"H5892\"* the|strong=\"H5221\"* sword|strong=\"H2719\"*—both men and|strong=\"H3548\"* women, children|strong=\"H5768\"* and|strong=\"H3548\"* nursing|strong=\"H3243\"* babies, and|strong=\"H3548\"* cattle|strong=\"H7716\"*, donkeys|strong=\"H2543\"*, and|strong=\"H3548\"* sheep|strong=\"H7716\"*, with|strong=\"H5892\"* the|strong=\"H5221\"* edge|strong=\"H6310\"* of|strong=\"H5892\"* the|strong=\"H5221\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 20, + "text": "One|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1732\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ahimelech the|strong=\"H1732\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub, named|strong=\"H8034\"* Abiathar, escaped|strong=\"H4422\"* and|strong=\"H1121\"* fled|strong=\"H1272\"* after|strong=\"H8034\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 21, + "text": "Abiathar told|strong=\"H5046\"* David|strong=\"H1732\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* had|strong=\"H3068\"* slain|strong=\"H2026\"* Yahweh|strong=\"H3068\"*’s priests|strong=\"H3548\"*." + }, + { + "verseNum": 22, + "text": "David|strong=\"H1732\"* said to|strong=\"H3117\"* Abiathar, “I|strong=\"H3588\"* knew|strong=\"H3045\"* on|strong=\"H3117\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, when|strong=\"H3588\"* Doeg|strong=\"H1673\"* the|strong=\"H3605\"* Edomite was|strong=\"H1732\"* there|strong=\"H8033\"*, that|strong=\"H3588\"* he|strong=\"H1931\"* would|strong=\"H5315\"* surely|strong=\"H3588\"* tell|strong=\"H5046\"* Saul|strong=\"H7586\"*. I|strong=\"H3588\"* am responsible for|strong=\"H3588\"* the|strong=\"H3605\"* death|strong=\"H5315\"* of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* persons|strong=\"H5315\"* of|strong=\"H1004\"* your|strong=\"H3605\"* father’s house|strong=\"H1004\"*." + }, + { + "verseNum": 23, + "text": "Stay|strong=\"H3427\"* with|strong=\"H3427\"* me|strong=\"H5315\"*. Don’t be|strong=\"H5315\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H5315\"* seeks|strong=\"H1245\"* my|strong=\"H1245\"* life|strong=\"H5315\"* seeks|strong=\"H1245\"* your|strong=\"H3588\"* life|strong=\"H5315\"*. You|strong=\"H3588\"* will|strong=\"H5315\"* be|strong=\"H5315\"* safe|strong=\"H4931\"* with|strong=\"H3427\"* me|strong=\"H5315\"*.”" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* was|strong=\"H1732\"* told|strong=\"H5046\"*, “Behold|strong=\"H2009\"*, the|strong=\"H5046\"* Philistines|strong=\"H6430\"* are|strong=\"H1992\"* fighting|strong=\"H3898\"* against|strong=\"H3898\"* Keilah|strong=\"H7084\"*, and|strong=\"H1732\"* are|strong=\"H1992\"* robbing the|strong=\"H5046\"* threshing|strong=\"H1637\"* floors|strong=\"H1637\"*.”" + }, + { + "verseNum": 2, + "text": "Therefore|strong=\"H1732\"* David|strong=\"H1732\"* inquired|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying, “Shall|strong=\"H3068\"* I|strong=\"H3068\"* go|strong=\"H3212\"* and|strong=\"H3068\"* strike|strong=\"H5221\"* these|strong=\"H1732\"* Philistines|strong=\"H6430\"*?”" + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"*’s men said to|strong=\"H3212\"* him|strong=\"H1732\"*, “Behold|strong=\"H2009\"*, we|strong=\"H3068\"* are|strong=\"H6430\"* afraid|strong=\"H3372\"* here|strong=\"H6311\"* in|strong=\"H3212\"* Judah|strong=\"H3063\"*. How|strong=\"H3588\"* much more|strong=\"H3588\"* then|strong=\"H2009\"* if|strong=\"H3588\"* we|strong=\"H3068\"* go|strong=\"H3212\"* to|strong=\"H3212\"* Keilah|strong=\"H7084\"* against|strong=\"H3212\"* the|strong=\"H3588\"* armies|strong=\"H4634\"* of|strong=\"H3372\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"*?”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H6030\"* David|strong=\"H1732\"* inquired|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* yet|strong=\"H5750\"* again|strong=\"H5750\"*. Yahweh|strong=\"H3068\"* answered|strong=\"H6030\"* him|strong=\"H5414\"*, and|strong=\"H6965\"* said|strong=\"H6030\"*, “Arise|strong=\"H6965\"*, go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Keilah|strong=\"H7084\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"* into|strong=\"H3381\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"* and|strong=\"H1419\"* his|strong=\"H1732\"* men|strong=\"H1419\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Keilah|strong=\"H7084\"* and|strong=\"H1419\"* fought|strong=\"H3898\"* with|strong=\"H3427\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"*, and|strong=\"H1419\"* brought|strong=\"H3212\"* away|strong=\"H3212\"* their|strong=\"H5221\"* livestock|strong=\"H4735\"*, and|strong=\"H1419\"* killed|strong=\"H5221\"* them|strong=\"H5221\"* with|strong=\"H3427\"* a|strong=\"H3068\"* great|strong=\"H1419\"* slaughter|strong=\"H4347\"*. So|strong=\"H3427\"* David|strong=\"H1732\"* saved|strong=\"H3467\"* the|strong=\"H5221\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Keilah|strong=\"H7084\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"H1961\"* Abiathar the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahimelech fled|strong=\"H1272\"* to|strong=\"H3381\"* David|strong=\"H1732\"* to|strong=\"H3381\"* Keilah|strong=\"H7084\"*, he|strong=\"H1732\"* came|strong=\"H1961\"* down|strong=\"H3381\"* with|strong=\"H3381\"* an|strong=\"H1961\"* ephod in|strong=\"H1121\"* his|strong=\"H1732\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 7, + "text": "Saul|strong=\"H7586\"* was|strong=\"H1732\"* told|strong=\"H5046\"* that|strong=\"H3588\"* David|strong=\"H1732\"* had|strong=\"H1732\"* come|strong=\"H7586\"* to|strong=\"H3027\"* Keilah|strong=\"H7084\"*. Saul|strong=\"H7586\"* said, “God|strong=\"H3027\"* has|strong=\"H7586\"* delivered|strong=\"H5462\"* him|strong=\"H5046\"* into|strong=\"H3027\"* my|strong=\"H1732\"* hand|strong=\"H3027\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H3027\"* shut|strong=\"H5462\"* in|strong=\"H5892\"* by|strong=\"H3027\"* entering into|strong=\"H3027\"* a|strong=\"H3068\"* town|strong=\"H5892\"* that|strong=\"H3588\"* has|strong=\"H7586\"* gates|strong=\"H1817\"* and|strong=\"H3027\"* bars|strong=\"H1280\"*.”" + }, + { + "verseNum": 8, + "text": "Saul|strong=\"H7586\"* summoned|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* to|strong=\"H3381\"* war|strong=\"H4421\"*, to|strong=\"H3381\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Keilah|strong=\"H7084\"* to|strong=\"H3381\"* besiege|strong=\"H6696\"* David|strong=\"H1732\"* and|strong=\"H5971\"* his|strong=\"H3605\"* men|strong=\"H5971\"*." + }, + { + "verseNum": 9, + "text": "David|strong=\"H1732\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* was|strong=\"H1732\"* devising mischief|strong=\"H7451\"* against|strong=\"H5921\"* him|strong=\"H5921\"*. He|strong=\"H3588\"* said|strong=\"H2790\"* to|strong=\"H5921\"* Abiathar the|strong=\"H5921\"* priest|strong=\"H3548\"*, “Bring|strong=\"H5066\"* the|strong=\"H5921\"* ephod here|strong=\"H5066\"*.”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H8085\"* David|strong=\"H1732\"* said|strong=\"H8085\"*, “O|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, your|strong=\"H3068\"* servant|strong=\"H5650\"* has|strong=\"H3068\"* surely|strong=\"H3588\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* seeks|strong=\"H1245\"* to|strong=\"H3478\"* come|strong=\"H3478\"* to|strong=\"H3478\"* Keilah|strong=\"H7084\"* to|strong=\"H3478\"* destroy|strong=\"H7843\"* the|strong=\"H8085\"* city|strong=\"H5892\"* for|strong=\"H3588\"* my|strong=\"H8085\"* sake|strong=\"H5668\"*." + }, + { + "verseNum": 11, + "text": "Will|strong=\"H3068\"* the|strong=\"H8085\"* men|strong=\"H1167\"* of|strong=\"H3068\"* Keilah|strong=\"H7084\"* deliver|strong=\"H5462\"* me|strong=\"H4994\"* up|strong=\"H5462\"* into|strong=\"H3381\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*? Will|strong=\"H3068\"* Saul|strong=\"H7586\"* come|strong=\"H3381\"* down|strong=\"H3381\"*, as|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* has|strong=\"H3068\"* heard|strong=\"H8085\"*? Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, I|strong=\"H5650\"* beg|strong=\"H4994\"* you|strong=\"H5046\"*, tell|strong=\"H5046\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H7586\"* David|strong=\"H1732\"* said, “Will|strong=\"H3068\"* the|strong=\"H3068\"* men|strong=\"H1167\"* of|strong=\"H3068\"* Keilah|strong=\"H7084\"* deliver|strong=\"H5462\"* me|strong=\"H5462\"* and|strong=\"H3068\"* my|strong=\"H3068\"* men|strong=\"H1167\"* into|strong=\"H3027\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Saul|strong=\"H7586\"*?”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H1980\"* David|strong=\"H1732\"* and|strong=\"H3967\"* his|strong=\"H1732\"* men|strong=\"H1980\"*, who|strong=\"H3588\"* were|strong=\"H1732\"* about|strong=\"H1980\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"*, arose|strong=\"H6965\"* and|strong=\"H3967\"* departed|strong=\"H1980\"* out|strong=\"H3318\"* of|strong=\"H3318\"* Keilah|strong=\"H7084\"* and|strong=\"H3967\"* went|strong=\"H1980\"* wherever|strong=\"H1980\"* they|strong=\"H3588\"* could|strong=\"H6965\"* go|strong=\"H1980\"*. Saul|strong=\"H7586\"* was|strong=\"H1732\"* told|strong=\"H5046\"* that|strong=\"H3588\"* David|strong=\"H1732\"* had|strong=\"H1732\"* escaped|strong=\"H4422\"* from|strong=\"H3318\"* Keilah|strong=\"H7084\"*; and|strong=\"H3967\"* he|strong=\"H3588\"* gave|strong=\"H3318\"* up|strong=\"H6965\"* going|strong=\"H1980\"* there|strong=\"H6965\"*." + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* in|strong=\"H3427\"* the|strong=\"H3605\"* strongholds|strong=\"H4679\"*, and|strong=\"H3117\"* remained|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* in|strong=\"H3427\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* of|strong=\"H3117\"* Ziph|strong=\"H2128\"*. Saul|strong=\"H7586\"* sought|strong=\"H1245\"* him|strong=\"H5414\"* every|strong=\"H3605\"* day|strong=\"H3117\"*, but|strong=\"H3808\"* God|strong=\"H5414\"* didn’t deliver|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H3027\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 15, + "text": "David|strong=\"H1732\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* had|strong=\"H1732\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* seek|strong=\"H1245\"* his|strong=\"H1732\"* life|strong=\"H5315\"*. David|strong=\"H1732\"* was|strong=\"H1732\"* in|strong=\"H5315\"* the|strong=\"H7200\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* Ziph|strong=\"H2128\"* in|strong=\"H5315\"* the|strong=\"H7200\"* woods." + }, + { + "verseNum": 16, + "text": "Jonathan|strong=\"H3083\"*, Saul|strong=\"H7586\"*’s son|strong=\"H1121\"*, arose|strong=\"H6965\"* and|strong=\"H1121\"* went|strong=\"H3212\"* to|strong=\"H3212\"* David|strong=\"H1732\"* into|strong=\"H3212\"* the|strong=\"H2388\"* woods, and|strong=\"H1121\"* strengthened|strong=\"H2388\"* his|strong=\"H1732\"* hand|strong=\"H3027\"* in|strong=\"H3212\"* God|strong=\"H3027\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H3588\"* said|strong=\"H3651\"* to|strong=\"H3478\"* him|strong=\"H5921\"*, “Don’t be|strong=\"H1961\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* Saul|strong=\"H7586\"* my|strong=\"H5921\"* father won’t find|strong=\"H4672\"* you|strong=\"H3588\"*; and|strong=\"H3478\"* you|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* king|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* I|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* next|strong=\"H5921\"* to|strong=\"H3478\"* you|strong=\"H3588\"*; and|strong=\"H3478\"* Saul|strong=\"H7586\"* my|strong=\"H5921\"* father knows|strong=\"H3045\"* that|strong=\"H3588\"* also|strong=\"H1571\"*.”" + }, + { + "verseNum": 18, + "text": "They|strong=\"H3068\"* both|strong=\"H8147\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. Then|strong=\"H1980\"* David|strong=\"H1732\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* woods and|strong=\"H1980\"* Jonathan|strong=\"H3083\"* went|strong=\"H1980\"* to|strong=\"H1980\"* his|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 19, + "text": "Then|strong=\"H5927\"* the|strong=\"H5927\"* Ziphites|strong=\"H2130\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Saul|strong=\"H7586\"* to|strong=\"H5927\"* Gibeah|strong=\"H1390\"*, saying, “Doesn’t David|strong=\"H1732\"* hide|strong=\"H5641\"* himself|strong=\"H3808\"* with|strong=\"H5973\"* us|strong=\"H5927\"* in|strong=\"H1732\"* the|strong=\"H5927\"* strongholds|strong=\"H4679\"* in|strong=\"H1732\"* the|strong=\"H5927\"* woods, in|strong=\"H1732\"* the|strong=\"H5927\"* hill|strong=\"H1389\"* of|strong=\"H1390\"* Hachilah|strong=\"H2444\"*, which is|strong=\"H7586\"* on|strong=\"H5927\"* the|strong=\"H5927\"* south|strong=\"H3225\"* of|strong=\"H1390\"* the|strong=\"H5927\"* desert|strong=\"H3452\"*?" + }, + { + "verseNum": 20, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, O|strong=\"H3068\"* king|strong=\"H4428\"*, come|strong=\"H3381\"* down|strong=\"H3381\"*. According|strong=\"H3027\"* to|strong=\"H3381\"* all|strong=\"H3605\"* the|strong=\"H3605\"* desire|strong=\"H5315\"* of|strong=\"H4428\"* your|strong=\"H3605\"* soul|strong=\"H5315\"* to|strong=\"H3381\"* come|strong=\"H3381\"* down|strong=\"H3381\"*; and|strong=\"H4428\"* our|strong=\"H3605\"* part|strong=\"H3027\"* will|strong=\"H4428\"* be|strong=\"H3027\"* to|strong=\"H3381\"* deliver|strong=\"H5462\"* him|strong=\"H3027\"* up|strong=\"H5462\"* into|strong=\"H3381\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 21, + "text": "Saul|strong=\"H7586\"* said, “You|strong=\"H3588\"* are|strong=\"H3068\"* blessed|strong=\"H1288\"* by|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* had|strong=\"H3068\"* compassion|strong=\"H2550\"* on|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 22, + "text": "Please|strong=\"H4994\"* go|strong=\"H3212\"* make|strong=\"H3045\"* yet|strong=\"H5750\"* more|strong=\"H5750\"* sure|strong=\"H3045\"*, and|strong=\"H3212\"* know|strong=\"H3045\"* and|strong=\"H3212\"* see|strong=\"H7200\"* his|strong=\"H7200\"* place|strong=\"H4725\"* where|strong=\"H8033\"* his|strong=\"H7200\"* haunt|strong=\"H7272\"* is|strong=\"H1931\"*, and|strong=\"H3212\"* who|strong=\"H4310\"* has|strong=\"H4310\"* seen|strong=\"H7200\"* him|strong=\"H7200\"* there|strong=\"H8033\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* been|strong=\"H1961\"* told that|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* very|strong=\"H6191\"* cunning|strong=\"H3045\"*." + }, + { + "verseNum": 23, + "text": "See|strong=\"H7200\"* therefore|strong=\"H3045\"*, and|strong=\"H1980\"* take|strong=\"H7725\"* knowledge|strong=\"H3045\"* of|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* lurking places|strong=\"H4224\"* where|strong=\"H8033\"* he|strong=\"H8033\"* hides|strong=\"H2244\"* himself|strong=\"H3045\"*; and|strong=\"H1980\"* come|strong=\"H1980\"* again|strong=\"H7725\"* to|strong=\"H1980\"* me|strong=\"H7725\"* with|strong=\"H1980\"* certainty|strong=\"H3045\"*, and|strong=\"H1980\"* I|strong=\"H3045\"* will|strong=\"H1961\"* go|strong=\"H1980\"* with|strong=\"H1980\"* you|strong=\"H3605\"*. It|strong=\"H7725\"* shall|strong=\"H3063\"* happen|strong=\"H1961\"*, if|strong=\"H7200\"* he|strong=\"H8033\"* is|strong=\"H3426\"* in|strong=\"H1980\"* the|strong=\"H3605\"* land, that|strong=\"H3045\"* I|strong=\"H3045\"* will|strong=\"H1961\"* search|strong=\"H2664\"* him|strong=\"H7725\"* out|strong=\"H7200\"* among|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* thousands of|strong=\"H3605\"* Judah|strong=\"H3063\"*.”" + }, + { + "verseNum": 24, + "text": "They|strong=\"H6440\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Ziph|strong=\"H2128\"* before|strong=\"H6440\"* Saul|strong=\"H7586\"*; but|strong=\"H3225\"* David|strong=\"H1732\"* and|strong=\"H6965\"* his|strong=\"H1732\"* men were|strong=\"H1732\"* in|strong=\"H3212\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"* of|strong=\"H6440\"* Maon|strong=\"H4584\"*, in|strong=\"H3212\"* the|strong=\"H6440\"* Arabah|strong=\"H6160\"* on|strong=\"H3212\"* the|strong=\"H6440\"* south|strong=\"H3225\"* of|strong=\"H6440\"* the|strong=\"H6440\"* desert|strong=\"H6160\"*." + }, + { + "verseNum": 25, + "text": "Saul|strong=\"H7586\"* and|strong=\"H3212\"* his|strong=\"H1732\"* men went|strong=\"H3212\"* to|strong=\"H3381\"* seek|strong=\"H1245\"* him|strong=\"H5046\"*. When|strong=\"H8085\"* David|strong=\"H1732\"* was|strong=\"H1732\"* told|strong=\"H5046\"*, he|strong=\"H1732\"* went|strong=\"H3212\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H8085\"* rock|strong=\"H5553\"*, and|strong=\"H3212\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H8085\"* wilderness|strong=\"H4057\"* of|strong=\"H3427\"* Maon|strong=\"H4584\"*. When|strong=\"H8085\"* Saul|strong=\"H7586\"* heard|strong=\"H8085\"* that|strong=\"H8085\"*, he|strong=\"H1732\"* pursued|strong=\"H7291\"* David|strong=\"H1732\"* in|strong=\"H3427\"* the|strong=\"H8085\"* wilderness|strong=\"H4057\"* of|strong=\"H3427\"* Maon|strong=\"H4584\"*." + }, + { + "verseNum": 26, + "text": "Saul|strong=\"H7586\"* went|strong=\"H3212\"* on|strong=\"H1961\"* this|strong=\"H2088\"* side|strong=\"H6654\"* of|strong=\"H2022\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"*, and|strong=\"H3212\"* David|strong=\"H1732\"* and|strong=\"H3212\"* his|strong=\"H1732\"* men on|strong=\"H1961\"* that|strong=\"H2088\"* side|strong=\"H6654\"* of|strong=\"H2022\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"*; and|strong=\"H3212\"* David|strong=\"H1732\"* hurried|strong=\"H2648\"* to|strong=\"H3212\"* get|strong=\"H3212\"* away|strong=\"H3212\"* for|strong=\"H6440\"* fear|strong=\"H6440\"* of|strong=\"H2022\"* Saul|strong=\"H7586\"*, for|strong=\"H6440\"* Saul|strong=\"H7586\"* and|strong=\"H3212\"* his|strong=\"H1732\"* men surrounded David|strong=\"H1732\"* and|strong=\"H3212\"* his|strong=\"H1732\"* men to|strong=\"H3212\"* take|strong=\"H8610\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"H3588\"* a|strong=\"H3068\"* messenger|strong=\"H4397\"* came|strong=\"H3212\"* to|strong=\"H3212\"* Saul|strong=\"H7586\"*, saying, “Hurry|strong=\"H4116\"* and|strong=\"H3212\"* come|strong=\"H3212\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"* have|strong=\"H6430\"* made|strong=\"H6584\"* a|strong=\"H3068\"* raid|strong=\"H6584\"* on|strong=\"H5921\"* the|strong=\"H5921\"* land!”" + }, + { + "verseNum": 28, + "text": "So|strong=\"H3651\"* Saul|strong=\"H7586\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* pursuing|strong=\"H7291\"* David|strong=\"H1732\"*, and|strong=\"H7725\"* went|strong=\"H3212\"* against|strong=\"H5921\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"*. Therefore|strong=\"H3651\"* they|strong=\"H3651\"* called|strong=\"H7121\"* that|strong=\"H1931\"* place|strong=\"H4725\"* Sela Hammahlekoth.+ 23:28 “Sela Hammahlekoth” means “rock of parting”.*" + }, + { + "verseNum": 29, + "text": "David went up from there and lived in the strongholds of En Gedi." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3427\"* Saul had|strong=\"H1732\"* returned|strong=\"H5927\"* from|strong=\"H5927\"* following the|strong=\"H5927\"* Philistines, he|strong=\"H8033\"* was|strong=\"H1732\"* told, “Behold, David|strong=\"H1732\"* is|strong=\"H8033\"* in|strong=\"H3427\"* the|strong=\"H5927\"* wilderness of|strong=\"H3427\"* En Gedi.”" + }, + { + "verseNum": 2, + "text": "Then|strong=\"H1961\"* Saul|strong=\"H7586\"* took|strong=\"H1961\"* three thousand chosen men out|strong=\"H7725\"* of|strong=\"H4057\"* all|strong=\"H7725\"* Israel, and|strong=\"H7725\"* went|strong=\"H1732\"* to|strong=\"H7725\"* seek David|strong=\"H1732\"* and|strong=\"H7725\"* his|strong=\"H1732\"* men on|strong=\"H1961\"* the|strong=\"H7725\"* rocks of|strong=\"H4057\"* the|strong=\"H7725\"* wild goats." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3605\"* came|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3605\"* sheep pens by|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H3212\"*, where|strong=\"H5921\"* there|strong=\"H3605\"* was|strong=\"H1732\"* a|strong=\"H3068\"* cave; and|strong=\"H3478\"* Saul|strong=\"H7586\"* went|strong=\"H3212\"* in|strong=\"H5921\"* to|strong=\"H3478\"* relieve himself|strong=\"H6440\"*. Now|strong=\"H3947\"* David|strong=\"H1732\"* and|strong=\"H3478\"* his|strong=\"H3605\"* men|strong=\"H3605\"* were|strong=\"H3478\"* staying in|strong=\"H5921\"* the|strong=\"H3605\"* innermost parts of|strong=\"H6440\"* the|strong=\"H3605\"* cave." + }, + { + "verseNum": 4, + "text": "David|strong=\"H1732\"*’s men said to|strong=\"H5921\"* him|strong=\"H5921\"*, “Behold, the|strong=\"H5921\"* day of|strong=\"H3427\"* which|strong=\"H8033\"* Yahweh|strong=\"H3068\"* said to|strong=\"H5921\"* you|strong=\"H5921\"*, ‘Behold, I|strong=\"H5921\"* will|strong=\"H7272\"* deliver your|strong=\"H5921\"* enemy into|strong=\"H5921\"* your|strong=\"H5921\"* hand, and|strong=\"H1732\"* you|strong=\"H5921\"* shall|strong=\"H7272\"* do|strong=\"H1870\"* to|strong=\"H5921\"* him|strong=\"H5921\"* as|strong=\"H3427\"* it|strong=\"H5921\"* shall|strong=\"H7272\"* seem good to|strong=\"H5921\"* you|strong=\"H5921\"*.’” Then|strong=\"H7586\"* David|strong=\"H1732\"* arose and|strong=\"H1732\"* cut|strong=\"H7272\"* off|strong=\"H5921\"* the|strong=\"H5921\"* skirt of|strong=\"H3427\"* Saul|strong=\"H7586\"*’s robe secretly|strong=\"H7586\"*." + }, + { + "verseNum": 5, + "text": "Afterward, David|strong=\"H1732\"*’s heart struck him|strong=\"H5414\"* because|strong=\"H3027\"* he|strong=\"H3117\"* had|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* Saul|strong=\"H7586\"*’s skirt|strong=\"H3671\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3651\"* said|strong=\"H3651\"* to|strong=\"H1961\"* his|strong=\"H1732\"* men|strong=\"H3772\"*, “Yahweh|strong=\"H3068\"* forbid that|strong=\"H3651\"* I|strong=\"H5921\"* should|strong=\"H1732\"* do|strong=\"H3671\"* this|strong=\"H3651\"* thing|strong=\"H3651\"* to|strong=\"H1961\"* my|strong=\"H1732\"* lord, Yahweh|strong=\"H3068\"*’s anointed, to|strong=\"H1961\"* stretch out|strong=\"H5921\"* my|strong=\"H1732\"* hand against|strong=\"H5921\"* him|strong=\"H5921\"*, since|strong=\"H3651\"* he|strong=\"H3651\"* is|strong=\"H3820\"* Yahweh|strong=\"H3068\"*’s anointed.”" + }, + { + "verseNum": 7, + "text": "So|strong=\"H6213\"* David|strong=\"H3027\"* checked his|strong=\"H3068\"* men|strong=\"H6213\"* with|strong=\"H3068\"* these|strong=\"H2088\"* words|strong=\"H1697\"*, and|strong=\"H3068\"* didn’t allow them|strong=\"H7971\"* to|strong=\"H3068\"* rise against|strong=\"H3027\"* Saul|strong=\"H1931\"*. Saul|strong=\"H1931\"* rose up|strong=\"H6213\"* out|strong=\"H7971\"* of|strong=\"H3068\"* the|strong=\"H3588\"* cave, and|strong=\"H3068\"* went|strong=\"H3068\"* on|strong=\"H3027\"* his|strong=\"H3068\"* way|strong=\"H1697\"*." + }, + { + "verseNum": 8, + "text": "David|strong=\"H1732\"* also|strong=\"H1732\"* arose|strong=\"H6965\"* afterward, and|strong=\"H6965\"* went|strong=\"H3212\"* out|strong=\"H5414\"* of|strong=\"H1697\"* the|strong=\"H5414\"* cave|strong=\"H4631\"* and|strong=\"H6965\"* cried|strong=\"H5414\"* after|strong=\"H6965\"* Saul|strong=\"H7586\"*, saying|strong=\"H1697\"*, “My|strong=\"H5414\"* lord the|strong=\"H5414\"* king!”" + }, + { + "verseNum": 9, + "text": "David|strong=\"H1732\"* said|strong=\"H7121\"* to|strong=\"H3318\"* Saul|strong=\"H7586\"*, “Why|strong=\"H3651\"* do|strong=\"H3318\"* you|strong=\"H4480\"* listen to|strong=\"H3318\"* men|strong=\"H7121\"*’s words, saying, ‘Behold|strong=\"H5027\"*, David|strong=\"H1732\"* seeks to|strong=\"H3318\"* harm you|strong=\"H4480\"*’?" + }, + { + "verseNum": 10, + "text": "Behold|strong=\"H2009\"*, today your|strong=\"H8085\"* eyes have|strong=\"H1697\"* seen how|strong=\"H4100\"* Yahweh|strong=\"H3068\"* had|strong=\"H1732\"* delivered you|strong=\"H4100\"* today into|strong=\"H1697\"* my|strong=\"H8085\"* hand in|strong=\"H8085\"* the|strong=\"H8085\"* cave. Some|strong=\"H1697\"* urged me|strong=\"H1697\"* to|strong=\"H8085\"* kill you|strong=\"H4100\"*, but|strong=\"H2009\"* I|strong=\"H2009\"* spared you|strong=\"H4100\"*. I|strong=\"H2009\"* said|strong=\"H1697\"*, ‘I|strong=\"H2009\"* will|strong=\"H1697\"* not|strong=\"H8085\"* stretch out|strong=\"H1245\"* my|strong=\"H8085\"* hand against|strong=\"H1697\"* my|strong=\"H8085\"* lord, for|strong=\"H1245\"* he|strong=\"H1732\"* is|strong=\"H4100\"* Yahweh|strong=\"H3068\"*’s anointed.’" + }, + { + "verseNum": 11, + "text": "Moreover|strong=\"H2009\"*, my|strong=\"H5414\"* father, behold|strong=\"H2009\"*, yes|strong=\"H3588\"*, see|strong=\"H7200\"* the|strong=\"H5921\"* skirt of|strong=\"H3068\"* your|strong=\"H3068\"* robe in|strong=\"H5921\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*; for|strong=\"H3588\"* in|strong=\"H5921\"* that|strong=\"H3588\"* I|strong=\"H3588\"* cut off|strong=\"H5921\"* the|strong=\"H5921\"* skirt of|strong=\"H3068\"* your|strong=\"H3068\"* robe and|strong=\"H3068\"* didn’t kill|strong=\"H2026\"* you|strong=\"H3588\"*, know and|strong=\"H3068\"* see|strong=\"H7200\"* that|strong=\"H3588\"* there|strong=\"H2009\"* is|strong=\"H3068\"* neither|strong=\"H3808\"* evil nor|strong=\"H3808\"* disobedience in|strong=\"H5921\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*. I|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* sinned against|strong=\"H5921\"* you|strong=\"H3588\"*, though|strong=\"H3588\"* you|strong=\"H3588\"* hunt for|strong=\"H3588\"* my|strong=\"H5414\"* life|strong=\"H3117\"* to|strong=\"H3068\"* take|strong=\"H5414\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 12, + "text": "May|strong=\"H5315\"* Yahweh|strong=\"H3068\"* judge between|strong=\"H3045\"* me|strong=\"H5315\"* and|strong=\"H3027\"* you|strong=\"H3588\"*, and|strong=\"H3027\"* may|strong=\"H5315\"* Yahweh|strong=\"H3068\"* avenge me|strong=\"H5315\"* of|strong=\"H3027\"* you|strong=\"H3588\"*; but|strong=\"H3588\"* my|strong=\"H7200\"* hand|strong=\"H3027\"* will|strong=\"H1571\"* not|strong=\"H3808\"* be|strong=\"H3808\"* on|strong=\"H7200\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 13, + "text": "As|strong=\"H1961\"* the|strong=\"H3068\"* proverb of|strong=\"H3068\"* the|strong=\"H3068\"* ancients says, ‘Out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3068\"* wicked comes|strong=\"H1961\"* wickedness;’ but|strong=\"H3808\"* my|strong=\"H3068\"* hand|strong=\"H3027\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* on|strong=\"H3027\"* you|strong=\"H3808\"*." + }, + { + "verseNum": 14, + "text": "Against|strong=\"H3027\"* whom has|strong=\"H1961\"* the|strong=\"H3318\"* king of|strong=\"H3027\"* Israel come|strong=\"H1961\"* out|strong=\"H3318\"*? Whom do|strong=\"H3318\"* you|strong=\"H3808\"* pursue? A|strong=\"H3068\"* dead dog? A|strong=\"H3068\"* flea?" + }, + { + "verseNum": 15, + "text": "May|strong=\"H4310\"* Yahweh|strong=\"H3068\"* therefore be|strong=\"H4191\"* judge, and|strong=\"H3478\"* give sentence between me|strong=\"H3318\"* and|strong=\"H3478\"* you|strong=\"H7291\"*, and|strong=\"H3478\"* see, and|strong=\"H3478\"* plead my|strong=\"H3318\"* cause|strong=\"H3318\"*, and|strong=\"H3478\"* deliver me|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* your|strong=\"H3318\"* hand.”" + }, + { + "verseNum": 16, + "text": "It|strong=\"H7200\"* came|strong=\"H1961\"* to|strong=\"H3068\"* pass|strong=\"H1961\"*, when|strong=\"H1961\"* David|strong=\"H3027\"* had|strong=\"H3068\"* finished speaking these words to|strong=\"H3068\"* Saul, that|strong=\"H7200\"* Saul said, “Is|strong=\"H3068\"* that|strong=\"H7200\"* your|strong=\"H3068\"* voice, my|strong=\"H3068\"* son David|strong=\"H3027\"*?” Saul lifted up|strong=\"H7200\"* his|strong=\"H3068\"* voice and|strong=\"H3068\"* wept." + }, + { + "verseNum": 17, + "text": "He|strong=\"H1732\"* said|strong=\"H1696\"* to|strong=\"H1696\"* David|strong=\"H1732\"*, “You|strong=\"H1696\"* are|strong=\"H1121\"* more|strong=\"H1058\"* righteous than|strong=\"H2088\"* I|strong=\"H1697\"*; for|strong=\"H1121\"* you|strong=\"H1696\"* have|strong=\"H1961\"* done|strong=\"H1961\"* good to|strong=\"H1696\"* me|strong=\"H6963\"*, whereas I|strong=\"H1697\"* have|strong=\"H1961\"* done|strong=\"H1961\"* evil to|strong=\"H1696\"* you|strong=\"H1696\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H3588\"* have|strong=\"H3588\"* declared today how|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* dealt|strong=\"H1580\"* well|strong=\"H2896\"* with|strong=\"H1732\"* me|strong=\"H4480\"*, because|strong=\"H3588\"* when|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H1732\"* delivered me|strong=\"H4480\"* up|strong=\"H4480\"* into|strong=\"H4480\"* your|strong=\"H3588\"* hand, you|strong=\"H3588\"* didn’t kill me|strong=\"H4480\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"H6213\"* if a|strong=\"H3068\"* man|strong=\"H2896\"* finds his|strong=\"H3068\"* enemy, will|strong=\"H3068\"* he|strong=\"H3117\"* let|strong=\"H5046\"* him|strong=\"H5046\"* go|strong=\"H3068\"* away unharmed? Therefore|strong=\"H3068\"* may|strong=\"H3068\"* Yahweh|strong=\"H3068\"* reward you|strong=\"H3117\"* good|strong=\"H2896\"* for|strong=\"H6213\"* that|strong=\"H3117\"* which|strong=\"H3068\"* you|strong=\"H3117\"* have|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3068\"* me|strong=\"H5046\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 20, + "text": "Now|strong=\"H3117\"*, behold, I|strong=\"H3588\"* know that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H3588\"* be|strong=\"H3068\"* king, and|strong=\"H3068\"* that|strong=\"H3588\"* the|strong=\"H3588\"* kingdom of|strong=\"H3068\"* Israel will|strong=\"H3068\"* be|strong=\"H3068\"* established|strong=\"H6213\"* in|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H4672\"*." + }, + { + "verseNum": 21, + "text": "Swear|strong=\"H3588\"* now|strong=\"H6258\"* therefore|strong=\"H6258\"* to|strong=\"H3478\"* me|strong=\"H4427\"* by|strong=\"H3027\"* Yahweh|strong=\"H3068\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3478\"* not|strong=\"H3045\"* cut|strong=\"H3478\"* off my|strong=\"H3045\"* offspring after|strong=\"H3588\"* me|strong=\"H4427\"*, and|strong=\"H6965\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3478\"* not|strong=\"H3045\"* destroy my|strong=\"H3045\"* name out|strong=\"H3045\"* of|strong=\"H3027\"* my|strong=\"H3045\"* father’s house.”" + }, + { + "verseNum": 22, + "text": "David swore|strong=\"H7650\"* to|strong=\"H3068\"* Saul. Saul went|strong=\"H3068\"* home|strong=\"H1004\"*, but|strong=\"H6258\"* David and|strong=\"H3068\"* his|strong=\"H3068\"* men|strong=\"H8034\"* went|strong=\"H3068\"* up to|strong=\"H3068\"* the|strong=\"H3068\"* stronghold." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Samuel|strong=\"H8050\"* died|strong=\"H4191\"*; and|strong=\"H6965\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* gathered|strong=\"H6908\"* themselves|strong=\"H6908\"* together|strong=\"H6908\"* and|strong=\"H6965\"* mourned|strong=\"H5594\"* for|strong=\"H1004\"* him|strong=\"H4191\"*, and|strong=\"H6965\"* buried|strong=\"H6912\"* him|strong=\"H4191\"* at|strong=\"H3478\"* his|strong=\"H3605\"* house|strong=\"H1004\"* at|strong=\"H3478\"* Ramah|strong=\"H7414\"*." + }, + { + "verseNum": 2, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* man|strong=\"H1419\"* in|strong=\"H1419\"* Maon|strong=\"H4584\"* whose|strong=\"H4584\"* possessions|strong=\"H4639\"* were|strong=\"H1961\"* in|strong=\"H1419\"* Carmel|strong=\"H3760\"*; and|strong=\"H1419\"* the|strong=\"H1961\"* man|strong=\"H1419\"* was|strong=\"H1961\"* very|strong=\"H3966\"* great|strong=\"H1419\"*. He|strong=\"H5795\"* had|strong=\"H1961\"* three|strong=\"H7969\"* thousand sheep|strong=\"H6629\"* and|strong=\"H1419\"* a|strong=\"H3068\"* thousand goats|strong=\"H5795\"*; and|strong=\"H1419\"* he|strong=\"H5795\"* was|strong=\"H1961\"* shearing|strong=\"H1494\"* his|strong=\"H1961\"* sheep|strong=\"H6629\"* in|strong=\"H1419\"* Carmel|strong=\"H3760\"*." + }, + { + "verseNum": 3, + "text": "Now the|strong=\"H8034\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H8034\"* man|strong=\"H7451\"* was|strong=\"H8034\"* Nabal|strong=\"H5037\"*; and|strong=\"H2896\"* the|strong=\"H8034\"* name|strong=\"H8034\"* of|strong=\"H8034\"* his|strong=\"H1931\"* wife Abigail. This|strong=\"H1931\"* woman|strong=\"H8034\"* was|strong=\"H8034\"* intelligent|strong=\"H2896\"* and|strong=\"H2896\"* had|strong=\"H3820\"* a|strong=\"H3068\"* beautiful|strong=\"H3303\"* face; but|strong=\"H1931\"* the|strong=\"H8034\"* man|strong=\"H7451\"* was|strong=\"H8034\"* surly and|strong=\"H2896\"* evil|strong=\"H7451\"* in|strong=\"H8034\"* his|strong=\"H1931\"* doings|strong=\"H4611\"*. He|strong=\"H1931\"* was|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H8034\"* house of|strong=\"H8034\"* Caleb." + }, + { + "verseNum": 4, + "text": "David|strong=\"H1732\"* heard|strong=\"H8085\"* in|strong=\"H8085\"* the|strong=\"H8085\"* wilderness|strong=\"H4057\"* that|strong=\"H3588\"* Nabal|strong=\"H5037\"* was|strong=\"H1732\"* shearing|strong=\"H1494\"* his|strong=\"H1732\"* sheep|strong=\"H6629\"*." + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"* sent|strong=\"H7971\"* ten|strong=\"H6235\"* young|strong=\"H5288\"* men|strong=\"H5288\"*; and|strong=\"H7971\"* David|strong=\"H1732\"* said to|strong=\"H7971\"* the|strong=\"H7971\"* young|strong=\"H5288\"* men|strong=\"H5288\"*, “Go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H7971\"* Carmel|strong=\"H3760\"*, and|strong=\"H7971\"* go|strong=\"H5927\"* to|strong=\"H7971\"* Nabal|strong=\"H5037\"*, and|strong=\"H7971\"* greet|strong=\"H7592\"* him|strong=\"H7971\"* in|strong=\"H8034\"* my|strong=\"H1732\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 6, + "text": "Tell|strong=\"H3605\"* him|strong=\"H3605\"*, ‘Long|strong=\"H3605\"* life|strong=\"H2416\"* to|strong=\"H1004\"* you|strong=\"H3605\"*! Peace|strong=\"H7965\"* be|strong=\"H1004\"* to|strong=\"H1004\"* you|strong=\"H3605\"*! Peace|strong=\"H7965\"* be|strong=\"H1004\"* to|strong=\"H1004\"* your|strong=\"H3605\"* house|strong=\"H1004\"*! Peace|strong=\"H7965\"* be|strong=\"H1004\"* to|strong=\"H1004\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H7965\"*!" + }, + { + "verseNum": 7, + "text": "Now|strong=\"H6258\"* I|strong=\"H3588\"* have|strong=\"H1961\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* shearers|strong=\"H1494\"*. Your|strong=\"H3605\"* shepherds|strong=\"H7462\"* have|strong=\"H1961\"* now|strong=\"H6258\"* been|strong=\"H1961\"* with|strong=\"H5973\"* us|strong=\"H3588\"*, and|strong=\"H3117\"* we|strong=\"H3068\"* didn’t harm|strong=\"H3972\"* them|strong=\"H1961\"*. Nothing|strong=\"H3808\"* was|strong=\"H1961\"* missing|strong=\"H6485\"* from|strong=\"H8085\"* them|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* time|strong=\"H3117\"* they|strong=\"H3588\"* were|strong=\"H1961\"* in|strong=\"H8085\"* Carmel|strong=\"H3760\"*." + }, + { + "verseNum": 8, + "text": "Ask|strong=\"H7592\"* your|strong=\"H5414\"* young|strong=\"H5288\"* men|strong=\"H5288\"*, and|strong=\"H1121\"* they|strong=\"H3588\"* will|strong=\"H5650\"* tell|strong=\"H5046\"* you|strong=\"H3588\"*. Therefore|strong=\"H5921\"* let|strong=\"H4994\"* the|strong=\"H5921\"* young|strong=\"H5288\"* men|strong=\"H5288\"* find|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* your|strong=\"H5414\"* eyes|strong=\"H5869\"*, for|strong=\"H3588\"* we|strong=\"H3068\"* come|strong=\"H4672\"* on|strong=\"H5921\"* a|strong=\"H3068\"* good|strong=\"H2896\"* day|strong=\"H3117\"*. Please|strong=\"H4994\"* give|strong=\"H5414\"* whatever|strong=\"H2896\"* comes|strong=\"H5414\"* to|strong=\"H5921\"* your|strong=\"H5414\"* hand|strong=\"H3027\"* to|strong=\"H5921\"* your|strong=\"H5414\"* servants|strong=\"H5650\"* and|strong=\"H1121\"* to|strong=\"H5921\"* your|strong=\"H5414\"* son|strong=\"H1121\"* David|strong=\"H1732\"*.’”" + }, + { + "verseNum": 9, + "text": "When|strong=\"H1696\"* David|strong=\"H1732\"*’s young|strong=\"H5288\"* men|strong=\"H5288\"* came|strong=\"H1697\"*, they|strong=\"H1697\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Nabal|strong=\"H5037\"* all|strong=\"H3605\"* those|strong=\"H3605\"* words|strong=\"H1697\"* in|strong=\"H1696\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H1697\"* David|strong=\"H1732\"*, and|strong=\"H1732\"* waited|strong=\"H5117\"*." + }, + { + "verseNum": 10, + "text": "Nabal|strong=\"H5037\"* answered|strong=\"H6030\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"* and|strong=\"H1121\"* said|strong=\"H6030\"*, “Who|strong=\"H4310\"* is|strong=\"H4310\"* David|strong=\"H1732\"*? Who|strong=\"H4310\"* is|strong=\"H4310\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"*? There|strong=\"H3117\"* are|strong=\"H3117\"* many|strong=\"H7235\"* servants|strong=\"H5650\"* who|strong=\"H4310\"* break|strong=\"H6555\"* away|strong=\"H6555\"* from|strong=\"H6440\"* their|strong=\"H6440\"* masters these|strong=\"H6440\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 11, + "text": "Shall|strong=\"H3808\"* I|strong=\"H5414\"* then|strong=\"H2088\"* take|strong=\"H3947\"* my|strong=\"H5414\"* bread|strong=\"H3899\"*, my|strong=\"H5414\"* water|strong=\"H4325\"*, and|strong=\"H3899\"* my|strong=\"H5414\"* meat|strong=\"H3899\"* that|strong=\"H3045\"* I|strong=\"H5414\"* have|strong=\"H3045\"* killed|strong=\"H2873\"* for|strong=\"H4325\"* my|strong=\"H5414\"* shearers|strong=\"H1494\"*, and|strong=\"H3899\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* men|strong=\"H1992\"* who|strong=\"H1992\"* I|strong=\"H5414\"* don’t know|strong=\"H3045\"* where|strong=\"H2088\"* they|strong=\"H1992\"* come|strong=\"H3045\"* from|strong=\"H3947\"*?”" + }, + { + "verseNum": 12, + "text": "So|strong=\"H7725\"* David|strong=\"H1732\"*’s young|strong=\"H5288\"* men|strong=\"H5288\"* turned|strong=\"H2015\"* on|strong=\"H1870\"* their|strong=\"H3605\"* way|strong=\"H1870\"* and|strong=\"H7725\"* went|strong=\"H1732\"* back|strong=\"H7725\"*, and|strong=\"H7725\"* came|strong=\"H7725\"* and|strong=\"H7725\"* told|strong=\"H5046\"* him|strong=\"H5046\"* all|strong=\"H3605\"* these|strong=\"H3605\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 13, + "text": "David|strong=\"H1732\"* said to|strong=\"H5927\"* his|strong=\"H1732\"* men, “Every|strong=\"H3427\"* man put|strong=\"H5927\"* on|strong=\"H5921\"* his|strong=\"H1732\"* sword|strong=\"H2719\"*!”" + }, + { + "verseNum": 14, + "text": "But|strong=\"H2009\"* one of|strong=\"H4057\"* the|strong=\"H1288\"* young|strong=\"H5288\"* men|strong=\"H5288\"* told|strong=\"H5046\"* Abigail, Nabal|strong=\"H5037\"*’s wife, saying, “Behold|strong=\"H2009\"*, David|strong=\"H1732\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* out|strong=\"H7971\"* of|strong=\"H4057\"* the|strong=\"H1288\"* wilderness|strong=\"H4057\"* to|strong=\"H7971\"* greet|strong=\"H1288\"* our|strong=\"H1288\"* master; and|strong=\"H7971\"* he|strong=\"H1732\"* insulted them|strong=\"H7971\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H3808\"* the|strong=\"H3605\"* men|strong=\"H1980\"* were|strong=\"H1961\"* very|strong=\"H3966\"* good|strong=\"H2896\"* to|strong=\"H1980\"* us|strong=\"H3117\"*, and|strong=\"H1980\"* we|strong=\"H3068\"* were|strong=\"H1961\"* not|strong=\"H3808\"* harmed, and|strong=\"H1980\"* we|strong=\"H3068\"* didn’t miss|strong=\"H6485\"* anything|strong=\"H3605\"* as|strong=\"H3117\"* long|strong=\"H3117\"* as|strong=\"H3117\"* we|strong=\"H3068\"* went|strong=\"H1980\"* with|strong=\"H1980\"* them|strong=\"H1961\"*, when|strong=\"H1961\"* we|strong=\"H3068\"* were|strong=\"H1961\"* in|strong=\"H1980\"* the|strong=\"H3605\"* fields|strong=\"H7704\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"H3117\"* were|strong=\"H1961\"* a|strong=\"H3068\"* wall|strong=\"H2346\"* to|strong=\"H1961\"* us|strong=\"H5921\"* both|strong=\"H1571\"* by|strong=\"H5921\"* night|strong=\"H3915\"* and|strong=\"H3117\"* by|strong=\"H5921\"* day|strong=\"H3117\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* while|strong=\"H1961\"* we|strong=\"H3068\"* were|strong=\"H1961\"* with|strong=\"H5973\"* them|strong=\"H5921\"* keeping|strong=\"H7462\"* the|strong=\"H3605\"* sheep|strong=\"H6629\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* know|strong=\"H3045\"* and|strong=\"H1121\"* consider|strong=\"H7200\"* what|strong=\"H4100\"* you|strong=\"H3588\"* will|strong=\"H1121\"* do|strong=\"H6213\"*; for|strong=\"H3588\"* evil|strong=\"H7451\"* is|strong=\"H1931\"* determined|strong=\"H3615\"* against|strong=\"H5921\"* our|strong=\"H3605\"* master and|strong=\"H1121\"* against|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* such|strong=\"H1931\"* a|strong=\"H3068\"* worthless|strong=\"H1100\"* fellow|strong=\"H1121\"* that|strong=\"H3588\"* one|strong=\"H3605\"* can|strong=\"H4100\"*’t speak|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*.”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H3947\"* Abigail hurried|strong=\"H4116\"* and|strong=\"H3967\"* took|strong=\"H3947\"* two|strong=\"H8147\"* hundred|strong=\"H3967\"* loaves|strong=\"H3899\"* of|strong=\"H5921\"* bread|strong=\"H3899\"*, two|strong=\"H8147\"* containers|strong=\"H5035\"* of|strong=\"H5921\"* wine|strong=\"H3196\"*, five|strong=\"H2568\"* sheep|strong=\"H6629\"* ready|strong=\"H6213\"* dressed|strong=\"H6213\"*, five|strong=\"H2568\"* seahs|strong=\"H5429\"*+ 25:18 1 seah is about 7 liters or 1.9 gallons or 0.8 pecks* of|strong=\"H5921\"* parched|strong=\"H7039\"* grain|strong=\"H7039\"*, one|strong=\"H6213\"* hundred|strong=\"H3967\"* clusters|strong=\"H6778\"* of|strong=\"H5921\"* raisins|strong=\"H6778\"*, and|strong=\"H3967\"* two|strong=\"H8147\"* hundred|strong=\"H3967\"* cakes|strong=\"H1690\"* of|strong=\"H5921\"* figs|strong=\"H1690\"*, and|strong=\"H3967\"* laid|strong=\"H7760\"* them|strong=\"H5921\"* on|strong=\"H5921\"* donkeys|strong=\"H2543\"*." + }, + { + "verseNum": 19, + "text": "She|strong=\"H6440\"* said to|strong=\"H6440\"* her|strong=\"H5046\"* young|strong=\"H5288\"* men|strong=\"H5288\"*, “Go|strong=\"H5674\"* on|strong=\"H5674\"* before|strong=\"H6440\"* me|strong=\"H6440\"*. Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* coming after you|strong=\"H6440\"*.” But|strong=\"H3808\"* she|strong=\"H6440\"* didn’t tell|strong=\"H5046\"* her|strong=\"H5046\"* husband, Nabal|strong=\"H5037\"*." + }, + { + "verseNum": 20, + "text": "As|strong=\"H1961\"* she|strong=\"H1931\"* rode|strong=\"H7392\"* on|strong=\"H5921\"* her|strong=\"H5921\"* donkey|strong=\"H2543\"*, and|strong=\"H1732\"* came|strong=\"H1961\"* down|strong=\"H3381\"* hidden|strong=\"H5643\"* by|strong=\"H5921\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"*, behold|strong=\"H2009\"*, David|strong=\"H1732\"* and|strong=\"H1732\"* his|strong=\"H1732\"* men came|strong=\"H1961\"* down|strong=\"H3381\"* toward|strong=\"H5921\"* her|strong=\"H5921\"*, and|strong=\"H1732\"* she|strong=\"H1931\"* met|strong=\"H6298\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "Now|strong=\"H2088\"* David|strong=\"H1732\"* had|strong=\"H1732\"* said, “Surely|strong=\"H6485\"* in|strong=\"H7725\"* vain|strong=\"H8267\"* I|strong=\"H2088\"* have|strong=\"H3605\"* kept|strong=\"H8104\"* all|strong=\"H3605\"* that|strong=\"H3605\"* this|strong=\"H2088\"* fellow has|strong=\"H2088\"* in|strong=\"H7725\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*, so|strong=\"H3808\"* that|strong=\"H3605\"* nothing|strong=\"H3808\"* was|strong=\"H1732\"* missed|strong=\"H6485\"* of|strong=\"H4057\"* all|strong=\"H3605\"* that|strong=\"H3605\"* pertained to|strong=\"H7725\"* him|strong=\"H7725\"*. He|strong=\"H3605\"* has|strong=\"H2088\"* returned|strong=\"H7725\"* me|strong=\"H7725\"* evil|strong=\"H7451\"* for|strong=\"H8478\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 22, + "text": "God do|strong=\"H6213\"* so|strong=\"H6213\"* to|strong=\"H5704\"* the|strong=\"H3605\"* enemies of|strong=\"H3605\"* David|strong=\"H1732\"*, and|strong=\"H1732\"* more|strong=\"H3254\"* also|strong=\"H1732\"*, if I|strong=\"H5704\"* leave|strong=\"H7604\"* of|strong=\"H3605\"* all|strong=\"H3605\"* that|strong=\"H3605\"* belongs to|strong=\"H5704\"* him|strong=\"H6213\"* by|strong=\"H1242\"* the|strong=\"H3605\"* morning|strong=\"H1242\"* light so|strong=\"H6213\"* much|strong=\"H6213\"* as|strong=\"H5704\"* one|strong=\"H3605\"* who|strong=\"H3605\"* urinates on|strong=\"H6213\"* a|strong=\"H3068\"* wall|strong=\"H7023\"*.”+ 25:22 or, male.*" + }, + { + "verseNum": 23, + "text": "When|strong=\"H7200\"* Abigail saw|strong=\"H7200\"* David|strong=\"H1732\"*, she|strong=\"H5921\"* hurried|strong=\"H4116\"* and|strong=\"H1732\"* got off|strong=\"H5921\"* her|strong=\"H5921\"* donkey|strong=\"H2543\"*, and|strong=\"H1732\"* fell|strong=\"H5307\"* before|strong=\"H6440\"* David|strong=\"H1732\"* on|strong=\"H5921\"* her|strong=\"H5921\"* face|strong=\"H6440\"* and|strong=\"H1732\"* bowed|strong=\"H7812\"* herself|strong=\"H7812\"* to|strong=\"H3381\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*." + }, + { + "verseNum": 24, + "text": "She|strong=\"H5921\"* fell|strong=\"H5307\"* at|strong=\"H5921\"* his|strong=\"H8085\"* feet|strong=\"H7272\"* and|strong=\"H8085\"* said|strong=\"H1696\"*, “On|strong=\"H5921\"* me|strong=\"H4994\"*, my|strong=\"H8085\"* lord, on|strong=\"H5921\"* me|strong=\"H4994\"* be|strong=\"H1697\"* the|strong=\"H5921\"* blame|strong=\"H5771\"*! Please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H5921\"* servant speak|strong=\"H1696\"* in|strong=\"H5921\"* your|strong=\"H5921\"* ears. Hear|strong=\"H8085\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H1697\"* your|strong=\"H5921\"* servant." + }, + { + "verseNum": 25, + "text": "Please|strong=\"H4994\"* don’t let|strong=\"H7971\"* my|strong=\"H7760\"* lord pay|strong=\"H7760\"* attention|strong=\"H3820\"* to|strong=\"H7971\"* this|strong=\"H2088\"* worthless|strong=\"H1100\"* fellow, Nabal|strong=\"H5037\"*, for|strong=\"H3588\"* as|strong=\"H3651\"* his|strong=\"H7760\"* name|strong=\"H8034\"* is|strong=\"H2088\"*, so|strong=\"H3651\"* is|strong=\"H2088\"* he|strong=\"H1931\"*. Nabal|strong=\"H5037\"*+ 25:25 “Nabal” means “foolish”.* is|strong=\"H2088\"* his|strong=\"H7760\"* name|strong=\"H8034\"*, and|strong=\"H7971\"* folly|strong=\"H5039\"* is|strong=\"H2088\"* with|strong=\"H5973\"* him|strong=\"H5921\"*; but|strong=\"H3588\"* I|strong=\"H3588\"*, your|strong=\"H5921\"* servant|strong=\"H5288\"*, didn’t see|strong=\"H7200\"* my|strong=\"H7760\"* lord’s young|strong=\"H5288\"* men|strong=\"H5288\"* whom|strong=\"H3588\"* you|strong=\"H3588\"* sent|strong=\"H7971\"*." + }, + { + "verseNum": 26, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, my|strong=\"H3068\"* lord|strong=\"H3068\"*, as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* lives|strong=\"H5315\"* and|strong=\"H3068\"* as|strong=\"H1961\"* your|strong=\"H3068\"* soul|strong=\"H5315\"* lives|strong=\"H5315\"*, since|strong=\"H6258\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* withheld|strong=\"H4513\"* you|strong=\"H3027\"* from|strong=\"H5315\"* blood|strong=\"H1818\"* guiltiness and|strong=\"H3068\"* from|strong=\"H5315\"* avenging|strong=\"H3467\"* yourself|strong=\"H5315\"* with|strong=\"H3068\"* your|strong=\"H3068\"* own|strong=\"H1961\"* hand|strong=\"H3027\"*, now|strong=\"H6258\"* therefore|strong=\"H6258\"* let|strong=\"H6258\"* your|strong=\"H3068\"* enemies|strong=\"H3027\"* and|strong=\"H3068\"* those|strong=\"H3467\"* who|strong=\"H3068\"* seek|strong=\"H1245\"* evil|strong=\"H7451\"* to|strong=\"H3068\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* be|strong=\"H1961\"* as|strong=\"H1961\"* Nabal|strong=\"H5037\"*." + }, + { + "verseNum": 27, + "text": "Now|strong=\"H6258\"* this|strong=\"H2063\"* present|strong=\"H1293\"* which your|strong=\"H5414\"* servant|strong=\"H5288\"* has|strong=\"H7272\"* brought|strong=\"H5414\"* to|strong=\"H1980\"* my|strong=\"H5414\"* lord, let|strong=\"H5414\"* it|strong=\"H5414\"* be|strong=\"H5414\"* given|strong=\"H5414\"* to|strong=\"H1980\"* the|strong=\"H5414\"* young|strong=\"H5288\"* men|strong=\"H5288\"* who|strong=\"H5288\"* follow|strong=\"H1980\"* my|strong=\"H5414\"* lord." + }, + { + "verseNum": 28, + "text": "Please|strong=\"H4994\"* forgive|strong=\"H5375\"* the|strong=\"H3588\"* trespass|strong=\"H6588\"* of|strong=\"H1004\"* your|strong=\"H3068\"* servant. For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* certainly|strong=\"H3588\"* make|strong=\"H6213\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* a|strong=\"H3068\"* sure house|strong=\"H1004\"*, because|strong=\"H3588\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* fights|strong=\"H3898\"* Yahweh|strong=\"H3068\"*’s battles|strong=\"H4421\"*. Evil|strong=\"H7451\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* found|strong=\"H4672\"* in|strong=\"H3068\"* you|strong=\"H3588\"* all|strong=\"H6213\"* your|strong=\"H3068\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 29, + "text": "Though men|strong=\"H5315\"* may|strong=\"H1961\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H3068\"* pursue|strong=\"H7291\"* you|strong=\"H8432\"* and|strong=\"H6965\"* to|strong=\"H3068\"* seek|strong=\"H1245\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*, yet|strong=\"H3068\"* the|strong=\"H8432\"* soul|strong=\"H5315\"* of|strong=\"H3068\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* bound|strong=\"H6887\"* in|strong=\"H3068\"* the|strong=\"H8432\"* bundle|strong=\"H6872\"* of|strong=\"H3068\"* life|strong=\"H5315\"* with|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. He|strong=\"H3068\"* will|strong=\"H3068\"* sling|strong=\"H7050\"* out|strong=\"H1245\"* the|strong=\"H8432\"* souls|strong=\"H5315\"* of|strong=\"H3068\"* your|strong=\"H3068\"* enemies|strong=\"H6887\"* as|strong=\"H1961\"* from|strong=\"H5315\"* a|strong=\"H3068\"* sling|strong=\"H7050\"*’s pocket|strong=\"H3709\"*." + }, + { + "verseNum": 30, + "text": "It|strong=\"H5921\"* will|strong=\"H3068\"* come|strong=\"H1961\"* to|strong=\"H1696\"* pass|strong=\"H1961\"*, when|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H1696\"* my|strong=\"H3605\"* lord|strong=\"H3068\"* according|strong=\"H5921\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* good|strong=\"H2896\"* that|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* concerning|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3478\"* has|strong=\"H3068\"* appointed|strong=\"H6680\"* you|strong=\"H3588\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 31, + "text": "that|strong=\"H3068\"* this|strong=\"H2063\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* no|strong=\"H3808\"* grief|strong=\"H6330\"* to|strong=\"H3068\"* you|strong=\"H3808\"*, nor|strong=\"H3808\"* offense of|strong=\"H3068\"* heart|strong=\"H3820\"* to|strong=\"H3068\"* my|strong=\"H3068\"* lord|strong=\"H3068\"*, either|strong=\"H3808\"* that|strong=\"H3068\"* you|strong=\"H3808\"* have|strong=\"H1961\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"* without|strong=\"H3808\"* cause|strong=\"H2600\"*, or|strong=\"H3808\"* that|strong=\"H3068\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* has|strong=\"H3068\"* avenged|strong=\"H3467\"* himself|strong=\"H3820\"*. When|strong=\"H1961\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* dealt well|strong=\"H3190\"* with|strong=\"H3068\"* my|strong=\"H3068\"* lord|strong=\"H3068\"*, then|strong=\"H1961\"* remember|strong=\"H2142\"* your|strong=\"H3068\"* servant.”" + }, + { + "verseNum": 32, + "text": "David|strong=\"H1732\"* said to|strong=\"H3478\"* Abigail, “Blessed|strong=\"H1288\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, who|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* today|strong=\"H3117\"* to|strong=\"H3478\"* meet|strong=\"H7122\"* me|strong=\"H7971\"*!" + }, + { + "verseNum": 33, + "text": "Blessed|strong=\"H1288\"* is|strong=\"H2088\"* your|strong=\"H3027\"* discretion|strong=\"H2940\"*, and|strong=\"H3117\"* blessed|strong=\"H1288\"* are|strong=\"H3117\"* you|strong=\"H3117\"*, who|strong=\"H2088\"* have|strong=\"H3027\"* kept|strong=\"H3607\"* me|strong=\"H1288\"* today|strong=\"H3117\"* from|strong=\"H3027\"* blood|strong=\"H1818\"* guiltiness, and|strong=\"H3117\"* from|strong=\"H3027\"* avenging|strong=\"H3467\"* myself with|strong=\"H3117\"* my|strong=\"H3467\"* own|strong=\"H3027\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 34, + "text": "For|strong=\"H3588\"* indeed|strong=\"H3588\"*, as|strong=\"H5704\"* Yahweh|strong=\"H3068\"* the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* lives|strong=\"H2416\"*, who|strong=\"H3068\"* has|strong=\"H3068\"* withheld|strong=\"H4513\"* me|strong=\"H4513\"* from|strong=\"H3478\"* harming|strong=\"H7489\"* you|strong=\"H3588\"*, unless|strong=\"H3588\"* you|strong=\"H3588\"* had|strong=\"H3068\"* hurried|strong=\"H4116\"* and|strong=\"H3478\"* come|strong=\"H7122\"* to|strong=\"H5704\"* meet|strong=\"H7122\"* me|strong=\"H4513\"*, surely|strong=\"H3588\"* there|strong=\"H3498\"* wouldn’t have|strong=\"H3068\"* been|strong=\"H3068\"* left|strong=\"H3498\"* to|strong=\"H5704\"* Nabal|strong=\"H5037\"* by|strong=\"H3068\"* the|strong=\"H3588\"* morning|strong=\"H1242\"* light so|strong=\"H3588\"* much|strong=\"H3498\"* as|strong=\"H5704\"* one|strong=\"H2416\"* who|strong=\"H3068\"* urinates on|strong=\"H3068\"* a|strong=\"H3068\"* wall|strong=\"H7023\"*.”+ 25:34 or, one male.*" + }, + { + "verseNum": 35, + "text": "So|strong=\"H3947\"* David|strong=\"H1732\"* received|strong=\"H3947\"* from|strong=\"H6440\"* her|strong=\"H3947\"* hand|strong=\"H3027\"* that|strong=\"H7200\"* which|strong=\"H1004\"* she|strong=\"H6440\"* had|strong=\"H1732\"* brought|strong=\"H5927\"* him|strong=\"H6440\"*. Then|strong=\"H3947\"* he|strong=\"H1004\"* said|strong=\"H8085\"* to|strong=\"H5927\"* her|strong=\"H3947\"*, “Go|strong=\"H5927\"* up|strong=\"H5927\"* in|strong=\"H1004\"* peace|strong=\"H7965\"* to|strong=\"H5927\"* your|strong=\"H3947\"* house|strong=\"H1004\"*. Behold|strong=\"H7200\"*, I|strong=\"H7200\"* have|strong=\"H3027\"* listened|strong=\"H8085\"* to|strong=\"H5927\"* your|strong=\"H3947\"* voice|strong=\"H6963\"* and|strong=\"H3027\"* have|strong=\"H3027\"* granted|strong=\"H5375\"* your|strong=\"H3947\"* request|strong=\"H6963\"*.”" + }, + { + "verseNum": 36, + "text": "Abigail came|strong=\"H1697\"* to|strong=\"H5704\"* Nabal|strong=\"H5037\"*; and|strong=\"H4428\"* behold|strong=\"H2009\"*, he|strong=\"H1931\"* held|strong=\"H4428\"* a|strong=\"H3068\"* feast|strong=\"H4960\"* in|strong=\"H5921\"* his|strong=\"H5921\"* house|strong=\"H1004\"* like|strong=\"H1004\"* the|strong=\"H5921\"* feast|strong=\"H4960\"* of|strong=\"H4428\"* a|strong=\"H3068\"* king|strong=\"H4428\"*. Nabal|strong=\"H5037\"*’s heart|strong=\"H3820\"* was|strong=\"H3820\"* merry|strong=\"H2896\"* within|strong=\"H1004\"* him|strong=\"H5921\"*, for|strong=\"H5704\"* he|strong=\"H1931\"* was|strong=\"H3820\"* very|strong=\"H3966\"* drunk|strong=\"H7910\"*. Therefore|strong=\"H5921\"* she|strong=\"H1931\"* told|strong=\"H5046\"* him|strong=\"H5921\"* nothing|strong=\"H3808\"* until|strong=\"H5704\"* the|strong=\"H5921\"* morning|strong=\"H1242\"* light." + }, + { + "verseNum": 37, + "text": "In|strong=\"H4191\"* the|strong=\"H3318\"* morning|strong=\"H1242\"*, when|strong=\"H1961\"* the|strong=\"H3318\"* wine|strong=\"H3196\"* had|strong=\"H1961\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1697\"* Nabal|strong=\"H5037\"*, his|strong=\"H5046\"* wife told|strong=\"H5046\"* him|strong=\"H5046\"* these|strong=\"H1931\"* things|strong=\"H1697\"*; and|strong=\"H1242\"* his|strong=\"H5046\"* heart|strong=\"H3820\"* died|strong=\"H4191\"* within|strong=\"H7130\"* him|strong=\"H5046\"*, and|strong=\"H1242\"* he|strong=\"H1931\"* became|strong=\"H1961\"* as|strong=\"H1697\"* a|strong=\"H3068\"* stone." + }, + { + "verseNum": 38, + "text": "About|strong=\"H1961\"* ten|strong=\"H6235\"* days|strong=\"H3117\"* later|strong=\"H1961\"*, Yahweh|strong=\"H3068\"* struck|strong=\"H5062\"* Nabal|strong=\"H5037\"*, so|strong=\"H1961\"* that|strong=\"H3117\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 39, + "text": "When|strong=\"H3588\"* David|strong=\"H1732\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* Nabal|strong=\"H5037\"* was|strong=\"H3068\"* dead|strong=\"H4191\"*, he|strong=\"H3588\"* said|strong=\"H1696\"*, “Blessed|strong=\"H1288\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* has|strong=\"H3068\"* pleaded|strong=\"H7378\"* the|strong=\"H8085\"* cause|strong=\"H7379\"* of|strong=\"H3068\"* my|strong=\"H8085\"* reproach|strong=\"H2781\"* from|strong=\"H7725\"* the|strong=\"H8085\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Nabal|strong=\"H5037\"*, and|strong=\"H3068\"* has|strong=\"H3068\"* kept|strong=\"H2820\"* back|strong=\"H7725\"* his|strong=\"H3068\"* servant|strong=\"H5650\"* from|strong=\"H7725\"* evil|strong=\"H7451\"*. Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* returned|strong=\"H7725\"* the|strong=\"H8085\"* evildoing of|strong=\"H3068\"* Nabal|strong=\"H5037\"* on|strong=\"H3027\"* his|strong=\"H3068\"* own|strong=\"H3027\"* head|strong=\"H7218\"*.”" + }, + { + "verseNum": 40, + "text": "When|strong=\"H1696\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"* had|strong=\"H1732\"* come|strong=\"H7971\"* to|strong=\"H1696\"* Abigail to|strong=\"H1696\"* Carmel|strong=\"H3760\"*, they|strong=\"H3947\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* her|strong=\"H7971\"*, saying|strong=\"H1696\"*, “David|strong=\"H1732\"* has|strong=\"H5650\"* sent|strong=\"H7971\"* us|strong=\"H7971\"* to|strong=\"H1696\"* you|strong=\"H7971\"*, to|strong=\"H1696\"* take|strong=\"H3947\"* you|strong=\"H7971\"* to|strong=\"H1696\"* him|strong=\"H7971\"* as|strong=\"H1696\"* wife|strong=\"H1696\"*.”" + }, + { + "verseNum": 41, + "text": "She|strong=\"H6965\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* bowed|strong=\"H7812\"* herself|strong=\"H7812\"* with|strong=\"H7364\"* her|strong=\"H6965\"* face to|strong=\"H6965\"* the|strong=\"H6965\"* earth, and|strong=\"H6965\"* said, “Behold|strong=\"H2009\"*, your|strong=\"H6965\"* servant|strong=\"H5650\"* is|strong=\"H2009\"* a|strong=\"H3068\"* servant|strong=\"H5650\"* to|strong=\"H6965\"* wash|strong=\"H7364\"* the|strong=\"H6965\"* feet|strong=\"H7272\"* of|strong=\"H5650\"* the|strong=\"H6965\"* servants|strong=\"H5650\"* of|strong=\"H5650\"* my|strong=\"H6965\"* lord.”" + }, + { + "verseNum": 42, + "text": "Abigail hurriedly|strong=\"H4116\"* arose|strong=\"H6965\"* and|strong=\"H1980\"* rode|strong=\"H7392\"* on|strong=\"H5921\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"* with|strong=\"H1980\"* her|strong=\"H5921\"* five|strong=\"H2568\"* maids|strong=\"H5291\"* who|strong=\"H4397\"* followed|strong=\"H1980\"* her|strong=\"H5921\"*; and|strong=\"H1980\"* she|strong=\"H5921\"* went|strong=\"H1980\"* after|strong=\"H5921\"* the|strong=\"H5921\"* messengers|strong=\"H4397\"* of|strong=\"H5921\"* David|strong=\"H1732\"*, and|strong=\"H1980\"* became|strong=\"H1961\"* his|strong=\"H1732\"* wife." + }, + { + "verseNum": 43, + "text": "David|strong=\"H1732\"* also|strong=\"H1571\"* took|strong=\"H3947\"* Ahinoam of|strong=\"H8147\"* Jezreel|strong=\"H3157\"*; and|strong=\"H1732\"* they|strong=\"H1571\"* both|strong=\"H8147\"* became|strong=\"H1961\"* his|strong=\"H3947\"* wives." + }, + { + "verseNum": 44, + "text": "Now|strong=\"H5414\"* Saul|strong=\"H7586\"* had|strong=\"H1732\"* given|strong=\"H5414\"* Michal|strong=\"H4324\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"*, David|strong=\"H1732\"*’s wife, to|strong=\"H5414\"* Palti|strong=\"H6406\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Laish|strong=\"H3919\"*, who|strong=\"H1121\"* was|strong=\"H1732\"* of|strong=\"H1121\"* Gallim|strong=\"H1554\"*." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H6440\"* Ziphites|strong=\"H2130\"* came|strong=\"H7586\"* to|strong=\"H5921\"* Saul|strong=\"H7586\"* to|strong=\"H5921\"* Gibeah|strong=\"H1390\"*, saying, “Doesn’t David|strong=\"H1732\"* hide|strong=\"H5641\"* himself|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* hill|strong=\"H1389\"* of|strong=\"H6440\"* Hachilah|strong=\"H2444\"*, which is|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* desert|strong=\"H3452\"*?”" + }, + { + "verseNum": 2, + "text": "Then|strong=\"H6965\"* Saul|strong=\"H7586\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H6965\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* Ziph|strong=\"H2128\"*, having three|strong=\"H7969\"* thousand chosen men|strong=\"H3478\"* of|strong=\"H4057\"* Israel|strong=\"H3478\"* with|strong=\"H3381\"* him|strong=\"H3381\"*, to|strong=\"H3381\"* seek|strong=\"H1245\"* David|strong=\"H1732\"* in|strong=\"H3478\"* the|strong=\"H6965\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* Ziph|strong=\"H2128\"*." + }, + { + "verseNum": 3, + "text": "Saul|strong=\"H7586\"* encamped|strong=\"H2583\"* in|strong=\"H3427\"* the|strong=\"H6440\"* hill|strong=\"H1389\"* of|strong=\"H3427\"* Hachilah|strong=\"H2444\"*, which|strong=\"H4057\"* is|strong=\"H1870\"* before|strong=\"H6440\"* the|strong=\"H6440\"* desert|strong=\"H4057\"*, by|strong=\"H5921\"* the|strong=\"H6440\"* way|strong=\"H1870\"*. But|strong=\"H3588\"* David|strong=\"H1732\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"*, and|strong=\"H1732\"* he|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* came|strong=\"H7586\"* after|strong=\"H5921\"* him|strong=\"H6440\"* into|strong=\"H5921\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 4, + "text": "David|strong=\"H1732\"* therefore|strong=\"H1732\"* sent|strong=\"H7971\"* out|strong=\"H7971\"* spies|strong=\"H7270\"*, and|strong=\"H7971\"* understood|strong=\"H3045\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* had|strong=\"H1732\"* certainly|strong=\"H3588\"* come|strong=\"H7586\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6965\"* David|strong=\"H1732\"* arose|strong=\"H6965\"* and|strong=\"H1121\"* came|strong=\"H5971\"* to|strong=\"H1121\"* the|strong=\"H7200\"* place|strong=\"H4725\"* where|strong=\"H8033\"* Saul|strong=\"H7586\"* had|strong=\"H1732\"* encamped|strong=\"H2583\"*; and|strong=\"H1121\"* David|strong=\"H1732\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* place|strong=\"H4725\"* where|strong=\"H8033\"* Saul|strong=\"H7586\"* lay|strong=\"H7901\"*, with|strong=\"H7901\"* Abner the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"*, the|strong=\"H7200\"* captain|strong=\"H8269\"* of|strong=\"H1121\"* his|strong=\"H1732\"* army|strong=\"H6635\"*. Saul|strong=\"H7586\"* lay|strong=\"H7901\"* within the|strong=\"H7200\"* place|strong=\"H4725\"* of|strong=\"H1121\"* the|strong=\"H7200\"* wagons, and|strong=\"H1121\"* the|strong=\"H7200\"* people|strong=\"H5971\"* were|strong=\"H5971\"* encamped|strong=\"H2583\"* around|strong=\"H5439\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H6030\"* David|strong=\"H1732\"* answered|strong=\"H6030\"* and|strong=\"H1121\"* said|strong=\"H6030\"* to|strong=\"H3381\"* Ahimelech the|strong=\"H5973\"* Hittite|strong=\"H2850\"*, and|strong=\"H1121\"* to|strong=\"H3381\"* Abishai the|strong=\"H5973\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"*, brother of|strong=\"H1121\"* Joab|strong=\"H3097\"*, saying, “Who|strong=\"H4310\"* will|strong=\"H4310\"* go|strong=\"H3381\"* down|strong=\"H3381\"* with|strong=\"H5973\"* me|strong=\"H5973\"* to|strong=\"H3381\"* Saul|strong=\"H7586\"* to|strong=\"H3381\"* the|strong=\"H5973\"* camp|strong=\"H4264\"*?”" + }, + { + "verseNum": 7, + "text": "So David|strong=\"H1732\"* and|strong=\"H5971\"* Abishai came|strong=\"H5971\"* to|strong=\"H1732\"* the|strong=\"H5439\"* people|strong=\"H5971\"* by|strong=\"H3915\"* night|strong=\"H3915\"*; and|strong=\"H5971\"*, behold|strong=\"H2009\"*, Saul|strong=\"H7586\"* lay|strong=\"H7901\"* sleeping|strong=\"H3463\"* within the|strong=\"H5439\"* place of|strong=\"H5971\"* the|strong=\"H5439\"* wagons, with|strong=\"H7901\"* his|strong=\"H1732\"* spear|strong=\"H2595\"* stuck|strong=\"H4600\"* in|strong=\"H7901\"* the|strong=\"H5439\"* ground at|strong=\"H1732\"* his|strong=\"H1732\"* head|strong=\"H4763\"*; and|strong=\"H5971\"* Abner and|strong=\"H5971\"* the|strong=\"H5439\"* people|strong=\"H5971\"* lay|strong=\"H7901\"* around|strong=\"H5439\"* him|strong=\"H5439\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H6258\"* Abishai said to|strong=\"H3027\"* David|strong=\"H1732\"*, “God|strong=\"H3808\"* has|strong=\"H3117\"* delivered|strong=\"H5462\"* up|strong=\"H5462\"* your|strong=\"H3808\"* enemy into|strong=\"H2595\"* your|strong=\"H3808\"* hand|strong=\"H3027\"* today|strong=\"H3117\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* strike|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H3117\"* the|strong=\"H5221\"* spear|strong=\"H2595\"* to|strong=\"H3027\"* the|strong=\"H5221\"* earth at|strong=\"H1732\"* one|strong=\"H3808\"* stroke|strong=\"H3027\"*, and|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3027\"* not|strong=\"H3808\"* strike|strong=\"H5221\"* him|strong=\"H5221\"* the|strong=\"H5221\"* second|strong=\"H8138\"* time|strong=\"H3117\"*.”" + }, + { + "verseNum": 9, + "text": "David|strong=\"H1732\"* said to|strong=\"H3068\"* Abishai, “Don’t destroy|strong=\"H7843\"* him|strong=\"H7971\"*, for|strong=\"H3588\"* who|strong=\"H4310\"* can|strong=\"H4310\"* stretch|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* against|strong=\"H3027\"* Yahweh|strong=\"H3068\"*’s anointed|strong=\"H4899\"*, and|strong=\"H3068\"* be|strong=\"H3027\"* guiltless|strong=\"H5352\"*?”" + }, + { + "verseNum": 10, + "text": "David|strong=\"H1732\"* said, “As|strong=\"H3117\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5062\"* him|strong=\"H4191\"*; or|strong=\"H3117\"* his|strong=\"H3068\"* day|strong=\"H3117\"* shall|strong=\"H3068\"* come|strong=\"H3381\"* to|strong=\"H3381\"* die|strong=\"H4191\"*, or|strong=\"H3117\"* he|strong=\"H3588\"* shall|strong=\"H3068\"* go|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* battle|strong=\"H4421\"* and|strong=\"H3068\"* perish|strong=\"H5595\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* forbid|strong=\"H2486\"* that|strong=\"H3068\"* I|strong=\"H6258\"* should|strong=\"H3068\"* stretch|strong=\"H7971\"* out|strong=\"H7971\"* my|strong=\"H3068\"* hand|strong=\"H3027\"* against|strong=\"H3027\"* Yahweh|strong=\"H3068\"*’s anointed|strong=\"H4899\"*; but|strong=\"H6258\"* now|strong=\"H6258\"* please|strong=\"H4994\"* take|strong=\"H3947\"* the|strong=\"H3947\"* spear|strong=\"H2595\"* that|strong=\"H3068\"* is|strong=\"H3068\"* at|strong=\"H3068\"* his|strong=\"H3068\"* head|strong=\"H4763\"* and|strong=\"H3068\"* the|strong=\"H3947\"* jar|strong=\"H6835\"* of|strong=\"H3068\"* water|strong=\"H4325\"*, and|strong=\"H3068\"* let|strong=\"H7971\"*’s go|strong=\"H3212\"*.”" + }, + { + "verseNum": 12, + "text": "So|strong=\"H3947\"* David|strong=\"H1732\"* took|strong=\"H3947\"* the|strong=\"H3605\"* spear|strong=\"H2595\"* and|strong=\"H3068\"* the|strong=\"H3605\"* jar|strong=\"H6835\"* of|strong=\"H3068\"* water|strong=\"H4325\"* from|strong=\"H5921\"* Saul|strong=\"H7586\"*’s head|strong=\"H5307\"*, and|strong=\"H3068\"* they|strong=\"H3588\"* went|strong=\"H3212\"* away|strong=\"H3947\"*. No|strong=\"H3605\"* man|strong=\"H3605\"* saw|strong=\"H7200\"* it|strong=\"H5921\"*, or|strong=\"H7200\"* knew|strong=\"H3045\"* it|strong=\"H5921\"*, nor|strong=\"H3045\"* did|strong=\"H3068\"* any|strong=\"H3605\"* awake|strong=\"H6974\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H4325\"* all|strong=\"H3605\"* asleep|strong=\"H3462\"*, because|strong=\"H3588\"* a|strong=\"H3068\"* deep|strong=\"H8639\"* sleep|strong=\"H3462\"* from|strong=\"H5921\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* fallen|strong=\"H5307\"* on|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H5975\"* David|strong=\"H1732\"* went|strong=\"H5674\"* over|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H5676\"* side|strong=\"H5676\"*, and|strong=\"H1732\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H2022\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"* far|strong=\"H7350\"* away|strong=\"H5674\"*, a|strong=\"H3068\"* great|strong=\"H7227\"* space|strong=\"H4725\"* being between|strong=\"H5921\"* them|strong=\"H5921\"*;" + }, + { + "verseNum": 14, + "text": "and|strong=\"H1121\"* David|strong=\"H1732\"* cried|strong=\"H7121\"* to|strong=\"H1121\"* the|strong=\"H7121\"* people|strong=\"H5971\"*, and|strong=\"H1121\"* to|strong=\"H1121\"* Abner the|strong=\"H7121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"*, saying, “Don’t you|strong=\"H3808\"* answer|strong=\"H6030\"*, Abner?”" + }, + { + "verseNum": 15, + "text": "David|strong=\"H1732\"* said to|strong=\"H3478\"* Abner, “Aren’t you|strong=\"H3588\"* a|strong=\"H3068\"* man? Who|strong=\"H4310\"* is|strong=\"H4310\"* like|strong=\"H3644\"* you|strong=\"H3588\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*? Why|strong=\"H4100\"* then|strong=\"H4428\"* have|strong=\"H5971\"* you|strong=\"H3588\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* watch|strong=\"H8104\"* over|strong=\"H4428\"* your|strong=\"H8104\"* lord the|strong=\"H3588\"* king|strong=\"H4428\"*? For|strong=\"H3588\"* one|strong=\"H3808\"* of|strong=\"H4428\"* the|strong=\"H3588\"* people|strong=\"H5971\"* came|strong=\"H3478\"* in|strong=\"H3478\"* to|strong=\"H3478\"* destroy|strong=\"H7843\"* your|strong=\"H8104\"* lord the|strong=\"H3588\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 16, + "text": "This|strong=\"H2088\"* thing|strong=\"H1697\"* isn’t good|strong=\"H2896\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"*. As|strong=\"H1697\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, you|strong=\"H3588\"* are|strong=\"H1121\"* worthy|strong=\"H1121\"* to|strong=\"H3068\"* die|strong=\"H4194\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* watch|strong=\"H8104\"* over|strong=\"H5921\"* your|strong=\"H3068\"* lord|strong=\"H3068\"*, Yahweh|strong=\"H3068\"*’s anointed|strong=\"H4899\"*. Now|strong=\"H6258\"* see|strong=\"H7200\"* where|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s spear|strong=\"H2595\"* is|strong=\"H3068\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* jar|strong=\"H6835\"* of|strong=\"H1121\"* water|strong=\"H4325\"* that|strong=\"H3588\"* was|strong=\"H3068\"* at|strong=\"H5921\"* his|strong=\"H8104\"* head|strong=\"H4763\"*.”" + }, + { + "verseNum": 17, + "text": "Saul|strong=\"H7586\"* recognized|strong=\"H5234\"* David|strong=\"H1732\"*’s voice|strong=\"H6963\"*, and|strong=\"H1121\"* said, “Is|strong=\"H2088\"* this|strong=\"H2088\"* your|strong=\"H2088\"* voice|strong=\"H6963\"*, my|strong=\"H1732\"* son|strong=\"H1121\"* David|strong=\"H1732\"*?”" + }, + { + "verseNum": 18, + "text": "He|strong=\"H3588\"* said, “Why|strong=\"H4100\"* does|strong=\"H6213\"* my|strong=\"H6213\"* lord pursue|strong=\"H7291\"* his|strong=\"H3027\"* servant|strong=\"H5650\"*? For|strong=\"H3588\"* what|strong=\"H4100\"* have|strong=\"H5650\"* I|strong=\"H3588\"* done|strong=\"H6213\"*? What|strong=\"H4100\"* evil|strong=\"H7451\"* is|strong=\"H2088\"* in|strong=\"H6213\"* my|strong=\"H6213\"* hand|strong=\"H3027\"*?" + }, + { + "verseNum": 19, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* my|strong=\"H8085\"* lord|strong=\"H3068\"* the|strong=\"H6440\"* king|strong=\"H4428\"* hear|strong=\"H8085\"* the|strong=\"H6440\"* words|strong=\"H1697\"* of|strong=\"H1121\"* his|strong=\"H3068\"* servant|strong=\"H5650\"*. If|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3068\"* so|strong=\"H6258\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* stirred|strong=\"H3068\"* you|strong=\"H3588\"* up|strong=\"H5496\"* against|strong=\"H6440\"* me|strong=\"H6440\"*, let|strong=\"H4994\"* him|strong=\"H6440\"* accept|strong=\"H6440\"* an|strong=\"H3588\"* offering|strong=\"H4503\"*. But|strong=\"H3588\"* if|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3068\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"*, they|strong=\"H1992\"* are|strong=\"H3117\"* cursed before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* they|strong=\"H1992\"* have|strong=\"H3068\"* driven|strong=\"H1644\"* me|strong=\"H6440\"* out|strong=\"H1644\"* today|strong=\"H3117\"* that|strong=\"H3588\"* I|strong=\"H3588\"* shouldn’t cling to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s inheritance|strong=\"H5159\"*, saying|strong=\"H1697\"*, ‘Go|strong=\"H3212\"*, serve|strong=\"H5647\"* other gods!’" + }, + { + "verseNum": 20, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, don’t let|strong=\"H6258\"* my|strong=\"H3068\"* blood|strong=\"H1818\"* fall|strong=\"H5307\"* to|strong=\"H3318\"* the|strong=\"H6440\"* earth away|strong=\"H5307\"* from|strong=\"H3318\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* has|strong=\"H3068\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* seek|strong=\"H1245\"* a|strong=\"H3068\"* flea|strong=\"H6550\"*, as|strong=\"H3068\"* when|strong=\"H3588\"* one|strong=\"H3588\"* hunts|strong=\"H7291\"* a|strong=\"H3068\"* partridge|strong=\"H7124\"* in|strong=\"H3478\"* the|strong=\"H6440\"* mountains|strong=\"H2022\"*.”" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H2009\"* Saul|strong=\"H7586\"* said, “I|strong=\"H3588\"* have|strong=\"H5869\"* sinned|strong=\"H2398\"*. Return|strong=\"H7725\"*, my|strong=\"H1732\"* son|strong=\"H1121\"* David|strong=\"H1732\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5869\"* no|strong=\"H3808\"* more|strong=\"H5750\"* do|strong=\"H7489\"* you|strong=\"H3588\"* harm|strong=\"H7489\"*, because|strong=\"H3588\"* my|strong=\"H1732\"* life|strong=\"H5315\"* was|strong=\"H1732\"* precious|strong=\"H3365\"* in|strong=\"H3117\"* your|strong=\"H7725\"* eyes|strong=\"H5869\"* today|strong=\"H3117\"*. Behold|strong=\"H2009\"*, I|strong=\"H3588\"* have|strong=\"H5869\"* played|strong=\"H5528\"* the|strong=\"H3588\"* fool|strong=\"H5528\"*, and|strong=\"H1121\"* have|strong=\"H5869\"* erred|strong=\"H7686\"* exceedingly|strong=\"H3966\"*.”" + }, + { + "verseNum": 22, + "text": "David|strong=\"H1732\"* answered|strong=\"H6030\"*, “Behold|strong=\"H2009\"* the|strong=\"H3947\"* spear|strong=\"H2595\"*, O|strong=\"H3068\"* king|strong=\"H4428\"*! Let one|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3947\"* young|strong=\"H5288\"* men|strong=\"H5288\"* come|strong=\"H5674\"* over|strong=\"H5674\"* and|strong=\"H6030\"* get|strong=\"H3947\"* it|strong=\"H3947\"*." + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H7725\"* every|strong=\"H7725\"* man his|strong=\"H5414\"* righteousness|strong=\"H6666\"* and|strong=\"H3068\"* his|strong=\"H5414\"* faithfulness; because|strong=\"H3027\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* you|strong=\"H5414\"* into|strong=\"H7725\"* my|strong=\"H5414\"* hand|strong=\"H3027\"* today|strong=\"H3117\"*, and|strong=\"H3068\"* I|strong=\"H3117\"* wouldn’t stretch|strong=\"H7971\"* out|strong=\"H7971\"* my|strong=\"H5414\"* hand|strong=\"H3027\"* against|strong=\"H3027\"* Yahweh|strong=\"H3068\"*’s anointed|strong=\"H4899\"*." + }, + { + "verseNum": 24, + "text": "Behold|strong=\"H2009\"*, as|strong=\"H3117\"* your|strong=\"H3068\"* life|strong=\"H5315\"* was|strong=\"H3068\"* respected|strong=\"H5869\"* today|strong=\"H3117\"* in|strong=\"H3068\"* my|strong=\"H3605\"* eyes|strong=\"H5869\"*, so|strong=\"H3651\"* let|strong=\"H3651\"* my|strong=\"H3605\"* life|strong=\"H5315\"* be|strong=\"H3068\"* respected|strong=\"H5869\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, and|strong=\"H3068\"* let|strong=\"H3651\"* him|strong=\"H3605\"* deliver|strong=\"H5337\"* me|strong=\"H5315\"* out|strong=\"H5337\"* of|strong=\"H3068\"* all|strong=\"H3605\"* oppression.”" + }, + { + "verseNum": 25, + "text": "Then|strong=\"H1571\"* Saul|strong=\"H7586\"* said to|strong=\"H7725\"* David|strong=\"H1732\"*, “You|strong=\"H7725\"* are|strong=\"H1121\"* blessed|strong=\"H1288\"*, my|strong=\"H1732\"* son|strong=\"H1121\"* David|strong=\"H1732\"*. You|strong=\"H7725\"* will|strong=\"H1571\"* both|strong=\"H1571\"* do|strong=\"H6213\"* mightily, and|strong=\"H1121\"* will|strong=\"H1571\"* surely|strong=\"H7725\"* prevail|strong=\"H3201\"*.”" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* said in|strong=\"H3478\"* his|strong=\"H3605\"* heart|strong=\"H3820\"*, “I|strong=\"H3588\"* will|strong=\"H3478\"* now|strong=\"H6258\"* perish|strong=\"H5595\"* one|strong=\"H3605\"* day|strong=\"H3117\"* by|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3117\"* Saul|strong=\"H7586\"*. There|strong=\"H3117\"* is|strong=\"H3820\"* nothing|strong=\"H3605\"* better|strong=\"H2896\"* for|strong=\"H3588\"* me|strong=\"H4480\"* than|strong=\"H4480\"* that|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* escape|strong=\"H4422\"* into|strong=\"H3027\"* the|strong=\"H3605\"* land|strong=\"H1366\"* of|strong=\"H3117\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*; and|strong=\"H3478\"* Saul|strong=\"H7586\"* will|strong=\"H3478\"* despair|strong=\"H2976\"* of|strong=\"H3117\"* me|strong=\"H4480\"*, to|strong=\"H3478\"* seek|strong=\"H1245\"* me|strong=\"H4480\"* any|strong=\"H3605\"* more|strong=\"H4480\"* in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*. So|strong=\"H4480\"* I|strong=\"H3588\"* will|strong=\"H3478\"* escape|strong=\"H4422\"* out|strong=\"H4480\"* of|strong=\"H3117\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* arose|strong=\"H6965\"* and|strong=\"H3967\"* passed|strong=\"H5674\"* over|strong=\"H5674\"*, he|strong=\"H1931\"* and|strong=\"H3967\"* the|strong=\"H5674\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* men|strong=\"H1121\"* who|strong=\"H1931\"* were|strong=\"H1121\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, to|strong=\"H1121\"* Achish the|strong=\"H5674\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maoch|strong=\"H4582\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Gath|strong=\"H1661\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* lived|strong=\"H3427\"* with|strong=\"H5973\"* Achish at|strong=\"H3427\"* Gath|strong=\"H1661\"*, he|strong=\"H1931\"* and|strong=\"H1004\"* his|strong=\"H1732\"* men|strong=\"H8147\"*, every|strong=\"H3427\"* man with|strong=\"H5973\"* his|strong=\"H1732\"* household|strong=\"H1004\"*, even David|strong=\"H1732\"* with|strong=\"H5973\"* his|strong=\"H1732\"* two|strong=\"H8147\"* wives, Ahinoam the|strong=\"H5973\"* Jezreelitess|strong=\"H3159\"* and|strong=\"H1004\"* Abigail the|strong=\"H5973\"* Carmelitess|strong=\"H3762\"*, Nabal|strong=\"H5037\"*’s wife." + }, + { + "verseNum": 4, + "text": "Saul|strong=\"H7586\"* was|strong=\"H1732\"* told|strong=\"H5046\"* that|strong=\"H3588\"* David|strong=\"H1732\"* had|strong=\"H1732\"* fled|strong=\"H1272\"* to|strong=\"H1732\"* Gath|strong=\"H1661\"*, so|strong=\"H3808\"* he|strong=\"H3588\"* stopped looking|strong=\"H1245\"* for|strong=\"H3588\"* him|strong=\"H5046\"*." + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"* said to|strong=\"H5414\"* Achish, “If now|strong=\"H4994\"* I|strong=\"H5414\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H3427\"* your|strong=\"H5414\"* eyes|strong=\"H5869\"*, let|strong=\"H4994\"* them|strong=\"H5414\"* give|strong=\"H5414\"* me|strong=\"H5414\"* a|strong=\"H3068\"* place|strong=\"H4725\"* in|strong=\"H3427\"* one|strong=\"H5892\"* of|strong=\"H3427\"* the|strong=\"H5414\"* cities|strong=\"H5892\"* in|strong=\"H3427\"* the|strong=\"H5414\"* country|strong=\"H7704\"*, that|strong=\"H5414\"* I|strong=\"H5414\"* may|strong=\"H4994\"* dwell|strong=\"H3427\"* there|strong=\"H8033\"*. For|strong=\"H3427\"* why|strong=\"H4100\"* should|strong=\"H4100\"* your|strong=\"H5414\"* servant|strong=\"H5650\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5414\"* royal|strong=\"H4467\"* city|strong=\"H5892\"* with|strong=\"H5973\"* you|strong=\"H5414\"*?”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H1961\"* Achish gave|strong=\"H5414\"* him|strong=\"H5414\"* Ziklag|strong=\"H6860\"* that|strong=\"H3117\"* day|strong=\"H3117\"*: therefore|strong=\"H3651\"* Ziklag|strong=\"H6860\"* belongs|strong=\"H1961\"* to|strong=\"H5704\"* the|strong=\"H5414\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3117\"* number|strong=\"H4557\"* of|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* that|strong=\"H3117\"* David|strong=\"H1732\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3117\"* country|strong=\"H7704\"* of|strong=\"H3117\"* the|strong=\"H3117\"* Philistines|strong=\"H6430\"* was|strong=\"H1961\"* a|strong=\"H3068\"* full|strong=\"H3117\"* year|strong=\"H3117\"* and|strong=\"H3117\"* four months|strong=\"H2320\"*." + }, + { + "verseNum": 8, + "text": "David|strong=\"H1732\"* and|strong=\"H1732\"* his|strong=\"H1732\"* men went|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H1732\"* raided|strong=\"H6584\"* the|strong=\"H3588\"* Geshurites|strong=\"H1651\"*, the|strong=\"H3588\"* Girzites, and|strong=\"H1732\"* the|strong=\"H3588\"* Amalekites|strong=\"H6003\"*; for|strong=\"H3588\"* those|strong=\"H2007\"* were|strong=\"H4714\"* the|strong=\"H3588\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3588\"* land who|strong=\"H3427\"* were|strong=\"H4714\"* of|strong=\"H3427\"* old|strong=\"H5769\"*, on|strong=\"H3427\"* the|strong=\"H3588\"* way|strong=\"H5704\"* to|strong=\"H5704\"* Shur|strong=\"H7793\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3588\"* land of|strong=\"H3427\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 9, + "text": "David|strong=\"H1732\"* struck|strong=\"H5221\"* the|strong=\"H3947\"* land, and|strong=\"H7725\"* saved|strong=\"H2421\"* no|strong=\"H3808\"* man or|strong=\"H3808\"* woman alive|strong=\"H2421\"*, and|strong=\"H7725\"* took|strong=\"H3947\"* away|strong=\"H7725\"* the|strong=\"H3947\"* sheep|strong=\"H6629\"*, the|strong=\"H3947\"* cattle|strong=\"H1241\"*, the|strong=\"H3947\"* donkeys|strong=\"H2543\"*, the|strong=\"H3947\"* camels|strong=\"H1581\"*, and|strong=\"H7725\"* the|strong=\"H3947\"* clothing. Then|strong=\"H3947\"* he|strong=\"H1732\"* returned|strong=\"H7725\"*, and|strong=\"H7725\"* came|strong=\"H7725\"* to|strong=\"H7725\"* Achish." + }, + { + "verseNum": 10, + "text": "Achish said, “Against|strong=\"H5921\"* whom have|strong=\"H3063\"* you|strong=\"H5921\"* made|strong=\"H6584\"* a|strong=\"H3068\"* raid|strong=\"H6584\"* today|strong=\"H3117\"*?”" + }, + { + "verseNum": 11, + "text": "David|strong=\"H1732\"* saved|strong=\"H2421\"* neither|strong=\"H3808\"* man|strong=\"H3605\"* nor|strong=\"H3808\"* woman alive|strong=\"H2421\"* to|strong=\"H6213\"* bring|strong=\"H6213\"* them|strong=\"H5921\"* to|strong=\"H6213\"* Gath|strong=\"H1661\"*, saying, “Lest|strong=\"H6435\"* they|strong=\"H3117\"* should|strong=\"H3117\"* tell|strong=\"H5046\"* about|strong=\"H5921\"* us|strong=\"H5046\"*, saying, ‘David|strong=\"H1732\"* did|strong=\"H6213\"* this|strong=\"H6213\"*, and|strong=\"H3117\"* this|strong=\"H6213\"* has|strong=\"H3117\"* been|strong=\"H5046\"* his|strong=\"H3605\"* way|strong=\"H3541\"* all|strong=\"H3605\"* the|strong=\"H3605\"* time|strong=\"H3117\"* he|strong=\"H3117\"* has|strong=\"H3117\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* country|strong=\"H7704\"* of|strong=\"H3117\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*.’”" + }, + { + "verseNum": 12, + "text": "Achish believed David|strong=\"H1732\"*, saying, “He|strong=\"H1732\"* has|strong=\"H1961\"* made|strong=\"H1961\"* his|strong=\"H1732\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* utterly to|strong=\"H3478\"* abhor him|strong=\"H1732\"*. Therefore|strong=\"H1732\"* he|strong=\"H1732\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H1732\"* servant|strong=\"H5650\"* forever|strong=\"H5769\"*.”" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3478\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, the|strong=\"H3588\"* Philistines|strong=\"H6430\"* gathered|strong=\"H6908\"* their|strong=\"H1992\"* armies|strong=\"H6635\"* together|strong=\"H6908\"* for|strong=\"H3588\"* warfare|strong=\"H6635\"*, to|strong=\"H3318\"* fight|strong=\"H3898\"* with|strong=\"H3898\"* Israel|strong=\"H3478\"*. Achish said|strong=\"H3318\"* to|strong=\"H3318\"* David|strong=\"H1732\"*, “Know|strong=\"H3045\"* assuredly|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1961\"* go|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H3898\"* me|strong=\"H3318\"* in|strong=\"H3478\"* the|strong=\"H3588\"* army|strong=\"H6635\"*, you|strong=\"H3588\"* and|strong=\"H3478\"* your|strong=\"H3045\"* men|strong=\"H1992\"*.”" + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* said|strong=\"H3651\"* to|strong=\"H6213\"* Achish, “Therefore|strong=\"H3651\"* you|strong=\"H3605\"* will|strong=\"H5650\"* know|strong=\"H3045\"* what|strong=\"H3045\"* your|strong=\"H3605\"* servant|strong=\"H5650\"* can|strong=\"H5650\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 3, + "text": "Now|strong=\"H3478\"* Samuel|strong=\"H8050\"* was|strong=\"H3478\"* dead|strong=\"H4191\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* mourned|strong=\"H5594\"* for|strong=\"H4191\"* him|strong=\"H4191\"* and|strong=\"H3478\"* buried|strong=\"H6912\"* him|strong=\"H4191\"* in|strong=\"H3478\"* Ramah|strong=\"H7414\"*, even in|strong=\"H3478\"* his|strong=\"H3605\"* own city|strong=\"H5892\"*. Saul|strong=\"H7586\"* had|strong=\"H3478\"* sent away|strong=\"H5493\"* those|strong=\"H3605\"* who|strong=\"H3605\"* had|strong=\"H3478\"* familiar spirits and|strong=\"H3478\"* the|strong=\"H3605\"* wizards|strong=\"H3049\"* out|strong=\"H3605\"* of|strong=\"H5892\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* Philistines|strong=\"H6430\"* gathered|strong=\"H6908\"* themselves|strong=\"H6908\"* together|strong=\"H6908\"*, and|strong=\"H3478\"* came|strong=\"H3478\"* and|strong=\"H3478\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Shunem|strong=\"H7766\"*; and|strong=\"H3478\"* Saul|strong=\"H7586\"* gathered|strong=\"H6908\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* together|strong=\"H6908\"*, and|strong=\"H3478\"* they|strong=\"H3478\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Gilboa|strong=\"H1533\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H7200\"* Saul|strong=\"H7586\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* army|strong=\"H4264\"* of|strong=\"H4264\"* the|strong=\"H7200\"* Philistines|strong=\"H6430\"*, he|strong=\"H3820\"* was|strong=\"H7586\"* afraid|strong=\"H3372\"*, and|strong=\"H7586\"* his|strong=\"H7200\"* heart|strong=\"H3820\"* trembled|strong=\"H2729\"* greatly|strong=\"H3966\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"H3068\"* Saul|strong=\"H7586\"* inquired|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, Yahweh|strong=\"H3068\"* didn’t answer|strong=\"H6030\"* him|strong=\"H7592\"* by|strong=\"H3068\"* dreams|strong=\"H2472\"*, by|strong=\"H3068\"* Urim, or|strong=\"H3808\"* by|strong=\"H3068\"* prophets|strong=\"H5030\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H2009\"* Saul|strong=\"H7586\"* said to|strong=\"H3212\"* his|strong=\"H1245\"* servants|strong=\"H5650\"*, “Seek|strong=\"H1245\"* for|strong=\"H5650\"* me|strong=\"H1875\"* a|strong=\"H3068\"* woman who|strong=\"H5650\"* has|strong=\"H5650\"* a|strong=\"H3068\"* familiar spirit, that|strong=\"H7586\"* I|strong=\"H2009\"* may go|strong=\"H3212\"* to|strong=\"H3212\"* her|strong=\"H3212\"* and|strong=\"H3212\"* inquire|strong=\"H1875\"* of|strong=\"H5650\"* her|strong=\"H3212\"*.”" + }, + { + "verseNum": 8, + "text": "Saul|strong=\"H7586\"* disguised|strong=\"H2664\"* himself|strong=\"H1931\"* and|strong=\"H3212\"* put|strong=\"H3847\"* on|strong=\"H3847\"* other|strong=\"H8147\"* clothing|strong=\"H3847\"*, and|strong=\"H3212\"* went|strong=\"H3212\"*, he|strong=\"H1931\"* and|strong=\"H3212\"* two|strong=\"H8147\"* men|strong=\"H8147\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, and|strong=\"H3212\"* they|strong=\"H1931\"* came|strong=\"H5927\"* to|strong=\"H3212\"* the|strong=\"H5927\"* woman by|strong=\"H5973\"* night|strong=\"H3915\"*. Then|strong=\"H5927\"* he|strong=\"H1931\"* said, “Please consult for|strong=\"H5973\"* me|strong=\"H5973\"* by|strong=\"H5973\"* the|strong=\"H5927\"* familiar spirit, and|strong=\"H3212\"* bring|strong=\"H5927\"* me|strong=\"H5973\"* up|strong=\"H5927\"* whomever I|strong=\"H3212\"* shall|strong=\"H1931\"* name to|strong=\"H3212\"* you|strong=\"H5973\"*.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H6213\"* woman said to|strong=\"H4191\"* him|strong=\"H6213\"*, “Behold|strong=\"H2009\"*, you|strong=\"H6213\"* know|strong=\"H3045\"* what|strong=\"H4100\"* Saul|strong=\"H7586\"* has|strong=\"H4100\"* done|strong=\"H6213\"*, how|strong=\"H4100\"* he|strong=\"H6213\"* has|strong=\"H4100\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* those|strong=\"H4480\"* who|strong=\"H5315\"* have|strong=\"H3045\"* familiar|strong=\"H3045\"* spirits and|strong=\"H7586\"* the|strong=\"H6213\"* wizards|strong=\"H3049\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H6213\"* land. Why|strong=\"H4100\"* then|strong=\"H2009\"* do|strong=\"H6213\"* you|strong=\"H6213\"* lay|strong=\"H5315\"* a|strong=\"H3068\"* snare|strong=\"H5367\"* for|strong=\"H6213\"* my|strong=\"H3045\"* life|strong=\"H5315\"*, to|strong=\"H4191\"* cause|strong=\"H6213\"* me|strong=\"H5315\"* to|strong=\"H4191\"* die|strong=\"H4191\"*?”" + }, + { + "verseNum": 10, + "text": "Saul|strong=\"H7586\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* her by|strong=\"H7650\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1697\"*, “As|strong=\"H1697\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, no punishment|strong=\"H5771\"* will|strong=\"H3068\"* happen|strong=\"H7136\"* to|strong=\"H3068\"* you|strong=\"H7136\"* for|strong=\"H3068\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H5927\"* the|strong=\"H5927\"* woman said, “Whom|strong=\"H4310\"* shall|strong=\"H4310\"* I bring|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* you|strong=\"H4310\"*?”" + }, + { + "verseNum": 12, + "text": "When|strong=\"H7200\"* the|strong=\"H7200\"* woman saw|strong=\"H7200\"* Samuel|strong=\"H8050\"*, she|strong=\"H4100\"* cried|strong=\"H2199\"* with|strong=\"H6963\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*; and|strong=\"H1419\"* the|strong=\"H7200\"* woman spoke to|strong=\"H7200\"* Saul|strong=\"H7586\"*, saying|strong=\"H6963\"*, “Why|strong=\"H4100\"* have|strong=\"H7200\"* you|strong=\"H4100\"* deceived|strong=\"H7411\"* me|strong=\"H7200\"*? For|strong=\"H6963\"* you|strong=\"H4100\"* are|strong=\"H4100\"* Saul|strong=\"H7586\"*!”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H7200\"* king|strong=\"H4428\"* said to|strong=\"H5927\"* her|strong=\"H7200\"*, “Don’t be|strong=\"H4428\"* afraid|strong=\"H3372\"*! What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3588\"* see|strong=\"H7200\"*?”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H1931\"* said to|strong=\"H5927\"* her|strong=\"H3045\"*, “What|strong=\"H4100\"* does|strong=\"H4100\"* he|strong=\"H1931\"* look like|strong=\"H5927\"*?”" + }, + { + "verseNum": 15, + "text": "Samuel|strong=\"H8050\"* said|strong=\"H6030\"* to|strong=\"H5927\"* Saul|strong=\"H7586\"*, “Why|strong=\"H4100\"* have|strong=\"H3045\"* you|strong=\"H5921\"* disturbed|strong=\"H7264\"* me|strong=\"H5921\"*, to|strong=\"H5927\"* bring|strong=\"H5927\"* me|strong=\"H5921\"* up|strong=\"H5927\"*?”" + }, + { + "verseNum": 16, + "text": "Samuel|strong=\"H8050\"* said, “Why|strong=\"H4100\"* then|strong=\"H1961\"* do|strong=\"H3068\"* you|strong=\"H5921\"* ask|strong=\"H7592\"* me|strong=\"H5921\"*, since Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* departed|strong=\"H5493\"* from|strong=\"H5493\"* you|strong=\"H5921\"* and|strong=\"H3068\"* has|strong=\"H3068\"* become|strong=\"H1961\"* your|strong=\"H3068\"* adversary|strong=\"H6145\"*?" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H1696\"* you|strong=\"H5414\"* as|strong=\"H6213\"* he|strong=\"H6213\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* me|strong=\"H5414\"*. Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* torn|strong=\"H7167\"* the|strong=\"H5414\"* kingdom|strong=\"H4467\"* out|strong=\"H5414\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* and|strong=\"H3068\"* given|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H1696\"* your|strong=\"H3068\"* neighbor|strong=\"H7453\"*, even|strong=\"H6213\"* to|strong=\"H1696\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 18, + "text": "Because|strong=\"H5921\"* you|strong=\"H5921\"* didn’t obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*, and|strong=\"H3068\"* didn’t execute|strong=\"H6213\"* his|strong=\"H3068\"* fierce|strong=\"H2740\"* wrath|strong=\"H2740\"* on|strong=\"H5921\"* Amalek|strong=\"H6002\"*, therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* done|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* to|strong=\"H3068\"* you|strong=\"H5921\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 19, + "text": "Moreover|strong=\"H1571\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* Israel|strong=\"H3478\"* also|strong=\"H1571\"* with|strong=\"H5973\"* you|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5414\"* Philistines|strong=\"H6430\"*; and|strong=\"H1121\"* tomorrow|strong=\"H4279\"* you|strong=\"H5414\"* and|strong=\"H1121\"* your|strong=\"H3068\"* sons|strong=\"H1121\"* will|strong=\"H3068\"* be|strong=\"H3027\"* with|strong=\"H5973\"* me|strong=\"H5414\"*. Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* the|strong=\"H5414\"* army|strong=\"H4264\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* also|strong=\"H1571\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5414\"* Philistines|strong=\"H6430\"*.”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H1961\"* Saul|strong=\"H7586\"* fell|strong=\"H5307\"* immediately|strong=\"H4116\"* his|strong=\"H3605\"* full|strong=\"H4393\"* length|strong=\"H6967\"* on|strong=\"H3117\"* the|strong=\"H3605\"* earth, and|strong=\"H3117\"* was|strong=\"H1961\"* terrified|strong=\"H3966\"*, because|strong=\"H3588\"* of|strong=\"H3117\"* Samuel|strong=\"H8050\"*’s words|strong=\"H1697\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* strength|strong=\"H3581\"* in|strong=\"H3117\"* him|strong=\"H3605\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1961\"* eaten no|strong=\"H3808\"* bread|strong=\"H3899\"* all|strong=\"H3605\"* day|strong=\"H3117\"* long|strong=\"H3117\"* or|strong=\"H3808\"* all|strong=\"H3605\"* night|strong=\"H3915\"* long|strong=\"H3117\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H8085\"* woman came|strong=\"H1697\"* to|strong=\"H1696\"* Saul|strong=\"H7586\"* and|strong=\"H6963\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H7586\"* very|strong=\"H3966\"* troubled|strong=\"H3966\"*, and|strong=\"H6963\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7200\"*, “Behold|strong=\"H2009\"*, your|strong=\"H7760\"* servant|strong=\"H8198\"* has|strong=\"H7586\"* listened|strong=\"H8085\"* to|strong=\"H1696\"* your|strong=\"H7760\"* voice|strong=\"H6963\"*, and|strong=\"H6963\"* I|strong=\"H3588\"* have|strong=\"H7200\"* put|strong=\"H7760\"* my|strong=\"H8085\"* life|strong=\"H5315\"* in|strong=\"H8085\"* my|strong=\"H8085\"* hand|strong=\"H3709\"*, and|strong=\"H6963\"* have|strong=\"H7200\"* listened|strong=\"H8085\"* to|strong=\"H1696\"* your|strong=\"H7760\"* words|strong=\"H1697\"* which|strong=\"H1697\"* you|strong=\"H3588\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 22, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* listen|strong=\"H8085\"* also|strong=\"H1571\"* to|strong=\"H3212\"* the|strong=\"H6440\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* your|strong=\"H7760\"* servant|strong=\"H8198\"*, and|strong=\"H3212\"* let|strong=\"H4994\"* me|strong=\"H6440\"* set|strong=\"H7760\"* a|strong=\"H3068\"* morsel|strong=\"H6595\"* of|strong=\"H6963\"* bread|strong=\"H3899\"* before|strong=\"H6440\"* you|strong=\"H3588\"*. Eat|strong=\"H3899\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H1961\"* have|strong=\"H1961\"* strength|strong=\"H3581\"* when|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H3212\"* on|strong=\"H1870\"* your|strong=\"H7760\"* way|strong=\"H1870\"*.”" + }, + { + "verseNum": 23, + "text": "But|strong=\"H3808\"* he|strong=\"H3808\"* refused|strong=\"H3985\"*, and|strong=\"H6965\"* said|strong=\"H8085\"*, “I|strong=\"H5650\"* will|strong=\"H5650\"* not|strong=\"H3808\"* eat.” But|strong=\"H3808\"* his|strong=\"H8085\"* servants|strong=\"H5650\"*, together|strong=\"H8085\"* with|strong=\"H3427\"* the|strong=\"H8085\"* woman, constrained him|strong=\"H6963\"*; and|strong=\"H6965\"* he|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H3985\"* their|strong=\"H8085\"* voice|strong=\"H6963\"*. So|strong=\"H3808\"* he|strong=\"H3808\"* arose|strong=\"H6965\"* from|strong=\"H8085\"* the|strong=\"H8085\"* earth and|strong=\"H6965\"* sat|strong=\"H3427\"* on|strong=\"H3427\"* the|strong=\"H8085\"* bed|strong=\"H4296\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H3947\"* woman|strong=\"H1004\"* had a|strong=\"H3068\"* fattened|strong=\"H4770\"* calf|strong=\"H5695\"* in|strong=\"H1004\"* the|strong=\"H3947\"* house|strong=\"H1004\"*. She hurried|strong=\"H4116\"* and|strong=\"H1004\"* killed|strong=\"H2076\"* it|strong=\"H3947\"*; and|strong=\"H1004\"* she took|strong=\"H3947\"* flour|strong=\"H7058\"* and|strong=\"H1004\"* kneaded|strong=\"H3888\"* it|strong=\"H3947\"*, and|strong=\"H1004\"* baked unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* of|strong=\"H1004\"* it|strong=\"H3947\"*." + }, + { + "verseNum": 25, + "text": "She|strong=\"H1931\"* brought|strong=\"H5066\"* it|strong=\"H1931\"* before|strong=\"H6440\"* Saul|strong=\"H7586\"* and|strong=\"H6965\"* before|strong=\"H6440\"* his|strong=\"H6440\"* servants|strong=\"H5650\"*, and|strong=\"H6965\"* they|strong=\"H1931\"* ate. Then|strong=\"H6965\"* they|strong=\"H1931\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* away|strong=\"H3212\"* that|strong=\"H1931\"* night|strong=\"H3915\"*." + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* all|strong=\"H3605\"* their|strong=\"H3605\"* armies|strong=\"H4264\"* to|strong=\"H3478\"* Aphek; and|strong=\"H3478\"* the|strong=\"H3605\"* Israelites|strong=\"H3478\"* encamped|strong=\"H2583\"* by|strong=\"H3478\"* the|strong=\"H3605\"* spring|strong=\"H5869\"* which|strong=\"H5869\"* is|strong=\"H3478\"* in|strong=\"H2583\"* Jezreel|strong=\"H3157\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5674\"* lords|strong=\"H5633\"* of|strong=\"H1732\"* the|strong=\"H5674\"* Philistines|strong=\"H6430\"* passed|strong=\"H5674\"* on|strong=\"H5674\"* by|strong=\"H5674\"* hundreds|strong=\"H3967\"* and|strong=\"H3967\"* by|strong=\"H5674\"* thousands; and|strong=\"H3967\"* David|strong=\"H1732\"* and|strong=\"H3967\"* his|strong=\"H1732\"* men passed|strong=\"H5674\"* on|strong=\"H5674\"* in|strong=\"H1732\"* the|strong=\"H5674\"* rear with|strong=\"H5973\"* Achish." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H1961\"* the|strong=\"H3117\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3117\"* Philistines|strong=\"H6430\"* said, “What|strong=\"H4100\"* about|strong=\"H1961\"* these|strong=\"H2088\"* Hebrews|strong=\"H5680\"*?”" + }, + { + "verseNum": 4, + "text": "But|strong=\"H3808\"* the|strong=\"H5921\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"* were|strong=\"H1961\"* angry|strong=\"H7107\"* with|strong=\"H5973\"* him|strong=\"H5921\"*; and|strong=\"H7725\"* the|strong=\"H5921\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"* said to|strong=\"H7725\"* him|strong=\"H5921\"*, “Make|strong=\"H7521\"* the|strong=\"H5921\"* man|strong=\"H2088\"* return|strong=\"H7725\"*, that|strong=\"H2088\"* he|strong=\"H8033\"* may|strong=\"H1961\"* go|strong=\"H3381\"* back|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* place|strong=\"H4725\"* where|strong=\"H8033\"* you|strong=\"H5921\"* have|strong=\"H1961\"* appointed|strong=\"H6485\"* him|strong=\"H5921\"*, and|strong=\"H7725\"* let|strong=\"H3381\"* him|strong=\"H5921\"* not|strong=\"H3808\"* go|strong=\"H3381\"* down|strong=\"H3381\"* with|strong=\"H5973\"* us|strong=\"H7725\"* to|strong=\"H7725\"* battle|strong=\"H4421\"*, lest in|strong=\"H5921\"* the|strong=\"H5921\"* battle|strong=\"H4421\"* he|strong=\"H8033\"* become|strong=\"H1961\"* an|strong=\"H1961\"* adversary|strong=\"H7854\"* to|strong=\"H7725\"* us|strong=\"H7725\"*. For|strong=\"H5921\"* with|strong=\"H5973\"* what|strong=\"H4100\"* should|strong=\"H4100\"* this|strong=\"H2088\"* fellow reconcile|strong=\"H7521\"* himself|strong=\"H7521\"* to|strong=\"H7725\"* his|strong=\"H7725\"* lord? Should|strong=\"H4100\"* it|strong=\"H5921\"* not|strong=\"H3808\"* be|strong=\"H1961\"* with|strong=\"H5973\"* the|strong=\"H5921\"* heads|strong=\"H7218\"* of|strong=\"H8269\"* these|strong=\"H2088\"* men|strong=\"H7218\"*?" + }, + { + "verseNum": 5, + "text": "Isn’t this|strong=\"H2088\"* David|strong=\"H1732\"*, of|strong=\"H5221\"* whom people|strong=\"H3808\"* sang|strong=\"H6030\"* to|strong=\"H1732\"* one|strong=\"H2088\"* another|strong=\"H2088\"* in|strong=\"H1732\"* dances|strong=\"H4246\"*, saying," + }, + { + "verseNum": 6, + "text": "Then|strong=\"H3318\"* Achish called|strong=\"H7121\"* David|strong=\"H1732\"* and|strong=\"H3068\"* said|strong=\"H7121\"* to|strong=\"H5704\"* him|strong=\"H7121\"*, “As|strong=\"H5704\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, you|strong=\"H3588\"* have|strong=\"H3068\"* been|strong=\"H3808\"* upright|strong=\"H3477\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* going|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3068\"* your|strong=\"H3068\"* coming|strong=\"H3318\"* in|strong=\"H3068\"* with|strong=\"H3068\"* me|strong=\"H7121\"* in|strong=\"H3068\"* the|strong=\"H3588\"* army|strong=\"H4264\"* is|strong=\"H3068\"* good|strong=\"H2896\"* in|strong=\"H3068\"* my|strong=\"H3068\"* sight|strong=\"H5869\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* found|strong=\"H4672\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* you|strong=\"H3588\"* since|strong=\"H3588\"* the|strong=\"H3588\"* day|strong=\"H3117\"* of|strong=\"H3068\"* your|strong=\"H3068\"* coming|strong=\"H3318\"* to|strong=\"H5704\"* me|strong=\"H7121\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*. Nevertheless|strong=\"H3588\"*, the|strong=\"H3588\"* lords|strong=\"H5633\"* don’t favor|strong=\"H5869\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"H6258\"* now|strong=\"H6258\"* return|strong=\"H7725\"*, and|strong=\"H7725\"* go|strong=\"H3212\"* in|strong=\"H6213\"* peace|strong=\"H7965\"*, that|strong=\"H7451\"* you|strong=\"H7725\"* not|strong=\"H3808\"* displease|strong=\"H6213\"* the|strong=\"H6213\"* lords|strong=\"H5633\"* of|strong=\"H5869\"* the|strong=\"H6213\"* Philistines|strong=\"H6430\"*.”" + }, + { + "verseNum": 8, + "text": "David|strong=\"H1732\"* said to|strong=\"H5704\"* Achish, “But|strong=\"H3588\"* what|strong=\"H4100\"* have|strong=\"H1961\"* I|strong=\"H3588\"* done|strong=\"H6213\"*? What|strong=\"H4100\"* have|strong=\"H1961\"* you|strong=\"H3588\"* found|strong=\"H4672\"* in|strong=\"H6213\"* your|strong=\"H6440\"* servant|strong=\"H5650\"* so|strong=\"H6213\"* long|strong=\"H5704\"* as|strong=\"H5704\"* I|strong=\"H3588\"* have|strong=\"H1961\"* been|strong=\"H1961\"* before|strong=\"H6440\"* you|strong=\"H3588\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H1961\"* not|strong=\"H3808\"* go|strong=\"H1961\"* and|strong=\"H4428\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* the|strong=\"H6440\"* enemies of|strong=\"H4428\"* my|strong=\"H1732\"* lord the|strong=\"H6440\"* king|strong=\"H4428\"*?”" + }, + { + "verseNum": 9, + "text": "Achish answered|strong=\"H6030\"* David|strong=\"H1732\"*, “I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5869\"* good|strong=\"H2896\"* in|strong=\"H4421\"* my|strong=\"H1732\"* sight|strong=\"H5869\"*, as|strong=\"H5927\"* an|strong=\"H3588\"* angel|strong=\"H4397\"* of|strong=\"H8269\"* God|strong=\"H3808\"*. Notwithstanding, the|strong=\"H3588\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"* have|strong=\"H5869\"* said|strong=\"H6030\"*, ‘He|strong=\"H3588\"* shall|strong=\"H5869\"* not|strong=\"H3808\"* go|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* us|strong=\"H3045\"* to|strong=\"H5927\"* the|strong=\"H3588\"* battle|strong=\"H4421\"*.’" + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H6258\"* now|strong=\"H6258\"* rise|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3212\"* the|strong=\"H5650\"* morning|strong=\"H1242\"* with|strong=\"H3212\"* the|strong=\"H5650\"* servants|strong=\"H5650\"* of|strong=\"H5650\"* your|strong=\"H6258\"* lord who|strong=\"H5650\"* have|strong=\"H5650\"* come|strong=\"H3212\"* with|strong=\"H3212\"* you|strong=\"H3212\"*; and|strong=\"H3212\"* as|strong=\"H5650\"* soon|strong=\"H6258\"* as|strong=\"H5650\"* you|strong=\"H3212\"* are|strong=\"H5650\"* up|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3212\"* the|strong=\"H5650\"* morning|strong=\"H1242\"* and|strong=\"H3212\"* have|strong=\"H5650\"* light, depart|strong=\"H3212\"*.”" + }, + { + "verseNum": 11, + "text": "So|strong=\"H5927\"* David|strong=\"H1732\"* rose|strong=\"H7925\"* up|strong=\"H5927\"* early|strong=\"H7925\"*, he|strong=\"H1931\"* and|strong=\"H7725\"* his|strong=\"H1732\"* men, to|strong=\"H7725\"* depart|strong=\"H3212\"* in|strong=\"H3212\"* the|strong=\"H7725\"* morning|strong=\"H1242\"*, to|strong=\"H7725\"* return|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H7725\"* land of|strong=\"H7725\"* the|strong=\"H7725\"* Philistines|strong=\"H6430\"*; and|strong=\"H7725\"* the|strong=\"H7725\"* Philistines|strong=\"H6430\"* went|strong=\"H3212\"* up|strong=\"H5927\"* to|strong=\"H7725\"* Jezreel|strong=\"H3157\"*." + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* David|strong=\"H1732\"* and|strong=\"H3117\"* his|strong=\"H1732\"* men had|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1961\"* Ziklag|strong=\"H6860\"* on|strong=\"H3117\"* the|strong=\"H5221\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, the|strong=\"H5221\"* Amalekites|strong=\"H6003\"* had|strong=\"H1961\"* made|strong=\"H6584\"* a|strong=\"H3068\"* raid|strong=\"H6584\"* on|strong=\"H3117\"* the|strong=\"H5221\"* South|strong=\"H5045\"* and|strong=\"H3117\"* on|strong=\"H3117\"* Ziklag|strong=\"H6860\"*, and|strong=\"H3117\"* had|strong=\"H1961\"* struck|strong=\"H5221\"* Ziklag|strong=\"H6860\"* and|strong=\"H3117\"* burned|strong=\"H8313\"* it|strong=\"H5221\"* with|strong=\"H8313\"* fire," + }, + { + "verseNum": 2, + "text": "and|strong=\"H1419\"* had|strong=\"H3808\"* taken|strong=\"H7617\"* captive|strong=\"H7617\"* the|strong=\"H5704\"* women and|strong=\"H1419\"* all|strong=\"H5704\"* who|strong=\"H3808\"* were|strong=\"H1419\"* in|strong=\"H4191\"* it|strong=\"H5704\"*, both|strong=\"H4191\"* small|strong=\"H6996\"* and|strong=\"H1419\"* great|strong=\"H1419\"*. They|strong=\"H3808\"* didn’t kill|strong=\"H4191\"* any|strong=\"H3808\"*, but|strong=\"H3808\"* carried|strong=\"H7617\"* them|strong=\"H7617\"* off|strong=\"H7617\"* and|strong=\"H1419\"* went|strong=\"H3212\"* their|strong=\"H3808\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"H1121\"* David|strong=\"H1732\"* and|strong=\"H1121\"* his|strong=\"H1732\"* men|strong=\"H1121\"* came|strong=\"H1323\"* to|strong=\"H1121\"* the|strong=\"H8313\"* city|strong=\"H5892\"*, behold|strong=\"H2009\"*, it|strong=\"H2009\"* was|strong=\"H1732\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire; and|strong=\"H1121\"* their|strong=\"H8313\"* wives, their|strong=\"H8313\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* their|strong=\"H8313\"* daughters|strong=\"H1323\"* were|strong=\"H1121\"* taken|strong=\"H7617\"* captive|strong=\"H7617\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H5375\"* David|strong=\"H1732\"* and|strong=\"H5971\"* the|strong=\"H5375\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* with|strong=\"H5971\"* him|strong=\"H6963\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H5375\"* voice|strong=\"H6963\"* and|strong=\"H5971\"* wept|strong=\"H1058\"* until|strong=\"H5704\"* they|strong=\"H5704\"* had|strong=\"H1732\"* no|strong=\"H5375\"* more|strong=\"H5704\"* power|strong=\"H3581\"* to|strong=\"H5704\"* weep|strong=\"H1058\"*." + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"*’s two|strong=\"H8147\"* wives were|strong=\"H1732\"* taken|strong=\"H7617\"* captive|strong=\"H7617\"*, Ahinoam the|strong=\"H1732\"* Jezreelitess|strong=\"H3159\"*, and|strong=\"H1732\"* Abigail the|strong=\"H1732\"* wife of|strong=\"H8147\"* Nabal|strong=\"H5037\"* the|strong=\"H1732\"* Carmelite|strong=\"H3761\"*." + }, + { + "verseNum": 6, + "text": "David|strong=\"H1732\"* was|strong=\"H3068\"* greatly|strong=\"H3966\"* distressed|strong=\"H3334\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* people|strong=\"H5971\"* spoke of|strong=\"H1121\"* stoning|strong=\"H5619\"* him|strong=\"H5921\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* were|strong=\"H5971\"* grieved, every|strong=\"H3605\"* man|strong=\"H1121\"* for|strong=\"H3588\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* for|strong=\"H3588\"* his|strong=\"H3605\"* daughters|strong=\"H1323\"*; but|strong=\"H3588\"* David|strong=\"H1732\"* strengthened|strong=\"H2388\"* himself|strong=\"H5315\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"* his|strong=\"H3605\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "David|strong=\"H1732\"* said to|strong=\"H1121\"* Abiathar the|strong=\"H3548\"* priest|strong=\"H3548\"*, the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahimelech, “Please|strong=\"H4994\"* bring|strong=\"H5066\"* the|strong=\"H3548\"* ephod here|strong=\"H5066\"* to|strong=\"H1121\"* me|strong=\"H4994\"*.”" + }, + { + "verseNum": 8, + "text": "David|strong=\"H1732\"* inquired|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying, “If|strong=\"H3588\"* I|strong=\"H3588\"* pursue|strong=\"H7291\"* after|strong=\"H7291\"* this|strong=\"H2088\"* troop|strong=\"H1416\"*, will|strong=\"H3068\"* I|strong=\"H3588\"* overtake|strong=\"H5381\"* them|strong=\"H7291\"*?”" + }, + { + "verseNum": 9, + "text": "So|strong=\"H5975\"* David|strong=\"H1732\"* went|strong=\"H3212\"*, he|strong=\"H1931\"* and|strong=\"H3967\"* the|strong=\"H5704\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* men who|strong=\"H1931\"* were|strong=\"H1732\"* with|strong=\"H3212\"* him|strong=\"H5975\"*, and|strong=\"H3967\"* came|strong=\"H3212\"* to|strong=\"H5704\"* the|strong=\"H5704\"* brook|strong=\"H5158\"* Besor|strong=\"H1308\"*, where those|strong=\"H1931\"* who|strong=\"H1931\"* were|strong=\"H1732\"* left|strong=\"H3498\"* behind|strong=\"H3498\"* stayed|strong=\"H5975\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"H1931\"* David|strong=\"H1732\"* pursued|strong=\"H7291\"*, he|strong=\"H1931\"* and|strong=\"H3967\"* four hundred|strong=\"H3967\"* men; for|strong=\"H5975\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* stayed|strong=\"H5975\"* behind|strong=\"H5975\"*, who|strong=\"H1931\"* were|strong=\"H1732\"* so|strong=\"H5975\"* faint|strong=\"H6296\"* that|strong=\"H1931\"* they|strong=\"H1931\"* couldn’t go|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H5674\"* brook|strong=\"H5158\"* Besor|strong=\"H1308\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H5414\"* found|strong=\"H4672\"* an|strong=\"H5414\"* Egyptian|strong=\"H4713\"* in|strong=\"H4672\"* the|strong=\"H5414\"* field|strong=\"H7704\"*, and|strong=\"H3899\"* brought|strong=\"H3947\"* him|strong=\"H5414\"* to|strong=\"H5414\"* David|strong=\"H1732\"*, and|strong=\"H3899\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* bread|strong=\"H3899\"*, and|strong=\"H3899\"* he|strong=\"H1732\"* ate; and|strong=\"H3899\"* they|strong=\"H5414\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* water|strong=\"H4325\"* to|strong=\"H5414\"* drink|strong=\"H8248\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3588\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* a|strong=\"H3068\"* piece|strong=\"H6400\"* of|strong=\"H3117\"* a|strong=\"H3068\"* cake|strong=\"H1690\"* of|strong=\"H3117\"* figs|strong=\"H1690\"* and|strong=\"H7725\"* two|strong=\"H8147\"* clusters|strong=\"H6778\"* of|strong=\"H3117\"* raisins|strong=\"H6778\"*. When|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3588\"* eaten, his|strong=\"H5414\"* spirit|strong=\"H7307\"* came|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H5414\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3588\"* eaten no|strong=\"H3808\"* bread|strong=\"H3899\"*, and|strong=\"H7725\"* drank|strong=\"H8354\"* no|strong=\"H3808\"* water|strong=\"H4325\"* for|strong=\"H3588\"* three|strong=\"H7969\"* days|strong=\"H3117\"* and|strong=\"H7725\"* three|strong=\"H7969\"* nights|strong=\"H3915\"*." + }, + { + "verseNum": 13, + "text": "David|strong=\"H1732\"* asked|strong=\"H2470\"* him|strong=\"H1732\"*, “To|strong=\"H3117\"* whom|strong=\"H4310\"* do|strong=\"H2088\"* you|strong=\"H3588\"* belong? Where|strong=\"H2088\"* are|strong=\"H3117\"* you|strong=\"H3588\"* from|strong=\"H3117\"*?”" + }, + { + "verseNum": 14, + "text": "We made|strong=\"H6584\"* a|strong=\"H3068\"* raid|strong=\"H6584\"* on|strong=\"H5921\"* the|strong=\"H5921\"* South|strong=\"H5045\"* of|strong=\"H5921\"* the|strong=\"H5921\"* Cherethites|strong=\"H3774\"*, and|strong=\"H3063\"* on|strong=\"H5921\"* that|strong=\"H3063\"* which|strong=\"H3063\"* belongs to|strong=\"H5921\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* on|strong=\"H5921\"* the|strong=\"H5921\"* South|strong=\"H5045\"* of|strong=\"H5921\"* Caleb|strong=\"H3612\"*; and|strong=\"H3063\"* we|strong=\"H3068\"* burned|strong=\"H8313\"* Ziklag|strong=\"H6860\"* with|strong=\"H8313\"* fire.”" + }, + { + "verseNum": 15, + "text": "David|strong=\"H1732\"* said to|strong=\"H3381\"* him|strong=\"H3027\"*, “Will|strong=\"H3027\"* you|strong=\"H3381\"* bring|strong=\"H3381\"* me|strong=\"H4191\"* down|strong=\"H3381\"* to|strong=\"H3381\"* this|strong=\"H2088\"* troop|strong=\"H1416\"*?”" + }, + { + "verseNum": 16, + "text": "When|strong=\"H5921\"* he|strong=\"H3605\"* had|strong=\"H3063\"* brought|strong=\"H3947\"* him|strong=\"H6440\"* down|strong=\"H3381\"*, behold|strong=\"H2009\"*, they|strong=\"H5921\"* were|strong=\"H6430\"* spread|strong=\"H5203\"* around|strong=\"H5921\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ground|strong=\"H6440\"*, eating, drinking|strong=\"H8354\"*, and|strong=\"H3063\"* dancing|strong=\"H2287\"*, because|strong=\"H5921\"* of|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* great|strong=\"H1419\"* plunder|strong=\"H7998\"* that|strong=\"H3605\"* they|strong=\"H5921\"* had|strong=\"H3063\"* taken|strong=\"H3947\"* out|strong=\"H3947\"* of|strong=\"H6440\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, and|strong=\"H3063\"* out|strong=\"H3947\"* of|strong=\"H6440\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H6440\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 17, + "text": "David|strong=\"H1732\"* struck|strong=\"H5221\"* them|strong=\"H1992\"* from|strong=\"H5921\"* the|strong=\"H5921\"* twilight|strong=\"H5399\"* even|strong=\"H6153\"* to|strong=\"H5704\"* the|strong=\"H5921\"* evening|strong=\"H6153\"* of|strong=\"H5921\"* the|strong=\"H5921\"* next|strong=\"H4283\"* day|strong=\"H4283\"*. Not|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H5288\"* of|strong=\"H5921\"* them|strong=\"H1992\"* escaped|strong=\"H4422\"* from|strong=\"H5921\"* there|strong=\"H1992\"*, except|strong=\"H3588\"* four hundred|strong=\"H3967\"* young|strong=\"H5288\"* men|strong=\"H5288\"* who|strong=\"H1992\"* rode|strong=\"H7392\"* on|strong=\"H5921\"* camels|strong=\"H1581\"* and|strong=\"H3967\"* fled|strong=\"H5127\"*." + }, + { + "verseNum": 18, + "text": "David|strong=\"H1732\"* recovered|strong=\"H5337\"* all|strong=\"H3605\"* that|strong=\"H3605\"* the|strong=\"H3605\"* Amalekites|strong=\"H6002\"* had|strong=\"H1732\"* taken|strong=\"H3947\"*, and|strong=\"H1732\"* David|strong=\"H1732\"* rescued|strong=\"H5337\"* his|strong=\"H3605\"* two|strong=\"H8147\"* wives." + }, + { + "verseNum": 19, + "text": "There|strong=\"H4480\"* was|strong=\"H1732\"* nothing|strong=\"H3808\"* lacking|strong=\"H5737\"* to|strong=\"H5704\"* them|strong=\"H7725\"*, neither|strong=\"H3808\"* small|strong=\"H6996\"* nor|strong=\"H3808\"* great|strong=\"H1419\"*, neither|strong=\"H3808\"* sons|strong=\"H1121\"* nor|strong=\"H3808\"* daughters|strong=\"H1323\"*, neither|strong=\"H3808\"* plunder|strong=\"H7998\"*, nor|strong=\"H3808\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* they|strong=\"H3808\"* had|strong=\"H1732\"* taken|strong=\"H3947\"*. David|strong=\"H1732\"* brought|strong=\"H7725\"* them|strong=\"H7725\"* all|strong=\"H3605\"* back|strong=\"H7725\"*." + }, + { + "verseNum": 20, + "text": "David|strong=\"H1732\"* took|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"* and|strong=\"H1732\"* the|strong=\"H3605\"* herds|strong=\"H1241\"*, which|strong=\"H1931\"* they|strong=\"H1931\"* drove|strong=\"H5090\"* before|strong=\"H6440\"* those|strong=\"H3605\"* other|strong=\"H2088\"* livestock|strong=\"H4735\"*, and|strong=\"H1732\"* said, “This|strong=\"H2088\"* is|strong=\"H2088\"* David|strong=\"H1732\"*’s plunder|strong=\"H7998\"*.”" + }, + { + "verseNum": 21, + "text": "David|strong=\"H1732\"* came|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3318\"* two|strong=\"H3427\"* hundred|strong=\"H3967\"* men|strong=\"H5971\"*, who|strong=\"H5971\"* were|strong=\"H5971\"* so|strong=\"H3318\"* faint|strong=\"H6296\"* that|strong=\"H5971\"* they|strong=\"H5971\"* could|strong=\"H5971\"* not|strong=\"H1732\"* follow|strong=\"H3212\"* David|strong=\"H1732\"*, whom|strong=\"H5971\"* also|strong=\"H1732\"* they|strong=\"H5971\"* had|strong=\"H1732\"* made|strong=\"H1732\"* to|strong=\"H3318\"* stay|strong=\"H3427\"* at|strong=\"H3427\"* the|strong=\"H3318\"* brook|strong=\"H5158\"* Besor|strong=\"H1308\"*; and|strong=\"H3967\"* they|strong=\"H5971\"* went|strong=\"H3212\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H7122\"* David|strong=\"H1732\"*, and|strong=\"H3967\"* to|strong=\"H3318\"* meet|strong=\"H7122\"* the|strong=\"H3318\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* with|strong=\"H3427\"* him|strong=\"H3318\"*. When|strong=\"H3318\"* David|strong=\"H1732\"* came|strong=\"H3318\"* near|strong=\"H5066\"* to|strong=\"H3318\"* the|strong=\"H3318\"* people|strong=\"H5971\"*, he|strong=\"H1732\"* greeted|strong=\"H7592\"* them|strong=\"H3318\"*." + }, + { + "verseNum": 22, + "text": "Then|strong=\"H6030\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wicked|strong=\"H7451\"* men|strong=\"H1121\"* and|strong=\"H1121\"* worthless|strong=\"H1100\"* fellows|strong=\"H1121\"* of|strong=\"H1121\"* those|strong=\"H3605\"* who|strong=\"H3605\"* went|strong=\"H1980\"* with|strong=\"H5973\"* David|strong=\"H1732\"* answered|strong=\"H6030\"* and|strong=\"H1121\"* said|strong=\"H6030\"*, “Because|strong=\"H3588\"* they|strong=\"H3588\"* didn’t go|strong=\"H1980\"* with|strong=\"H5973\"* us|strong=\"H5414\"*, we|strong=\"H3068\"* will|strong=\"H1121\"* not|strong=\"H3808\"* give|strong=\"H5414\"* them|strong=\"H5414\"* anything|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* plunder|strong=\"H7998\"* that|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H1121\"* recovered|strong=\"H5337\"*, except|strong=\"H3588\"* to|strong=\"H1980\"* every|strong=\"H3605\"* man|strong=\"H1121\"* his|strong=\"H3605\"* wife and|strong=\"H1121\"* his|strong=\"H3605\"* children|strong=\"H1121\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H1121\"* lead|strong=\"H5090\"* them|strong=\"H5414\"* away|strong=\"H3212\"* and|strong=\"H1121\"* depart|strong=\"H3212\"*.”" + }, + { + "verseNum": 23, + "text": "Then|strong=\"H3651\"* David|strong=\"H1732\"* said|strong=\"H3651\"*, “Do|strong=\"H6213\"* not|strong=\"H3808\"* do|strong=\"H6213\"* so|strong=\"H3651\"*, my|strong=\"H8104\"* brothers, with|strong=\"H3068\"* that|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* to|strong=\"H3068\"* us|strong=\"H5414\"*, who|strong=\"H3068\"* has|strong=\"H3068\"* preserved|strong=\"H8104\"* us|strong=\"H5414\"*, and|strong=\"H3068\"* delivered|strong=\"H5414\"* the|strong=\"H5921\"* troop|strong=\"H1416\"* that|strong=\"H3068\"* came|strong=\"H3068\"* against|strong=\"H5921\"* us|strong=\"H5414\"* into|strong=\"H5921\"* our|strong=\"H3068\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 24, + "text": "Who|strong=\"H4310\"* will|strong=\"H4310\"* listen|strong=\"H8085\"* to|strong=\"H3381\"* you|strong=\"H3588\"* in|strong=\"H3427\"* this|strong=\"H2088\"* matter|strong=\"H1697\"*? For|strong=\"H3588\"* as|strong=\"H1697\"* his|strong=\"H8085\"* share|strong=\"H2506\"* is|strong=\"H2088\"* who|strong=\"H4310\"* goes|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H5921\"* battle|strong=\"H4421\"*, so|strong=\"H2088\"* shall|strong=\"H4310\"* his|strong=\"H8085\"* share|strong=\"H2506\"* be|strong=\"H1697\"* who|strong=\"H4310\"* stays|strong=\"H3427\"* with|strong=\"H5921\"* the|strong=\"H5921\"* baggage|strong=\"H3627\"*. They|strong=\"H3588\"* shall|strong=\"H4310\"* share|strong=\"H2506\"* alike|strong=\"H3162\"*.”" + }, + { + "verseNum": 25, + "text": "It|strong=\"H7760\"* was|strong=\"H1961\"* so|strong=\"H1961\"* from|strong=\"H3478\"* that|strong=\"H3117\"* day|strong=\"H3117\"* forward|strong=\"H4605\"* that|strong=\"H3117\"* he|strong=\"H1931\"* made|strong=\"H7760\"* it|strong=\"H7760\"* a|strong=\"H3068\"* statute|strong=\"H2706\"* and|strong=\"H3478\"* an|strong=\"H1961\"* ordinance|strong=\"H4941\"* for|strong=\"H5704\"* Israel|strong=\"H3478\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"H7971\"* David|strong=\"H1732\"* came|strong=\"H3068\"* to|strong=\"H3068\"* Ziklag|strong=\"H6860\"*, he|strong=\"H3068\"* sent|strong=\"H7971\"* some|strong=\"H2009\"* of|strong=\"H3068\"* the|strong=\"H3068\"* plunder|strong=\"H7998\"* to|strong=\"H3068\"* the|strong=\"H3068\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, even|strong=\"H3068\"* to|strong=\"H3068\"* his|strong=\"H3068\"* friends|strong=\"H7453\"*, saying, “Behold|strong=\"H2009\"*, a|strong=\"H3068\"* present|strong=\"H1293\"* for|strong=\"H7971\"* you|strong=\"H7971\"* from|strong=\"H7971\"* the|strong=\"H3068\"* plunder|strong=\"H7998\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s enemies.”" + }, + { + "verseNum": 27, + "text": "He sent it to|strong=\"H1008\"* those who were in|strong=\"H1008\"* Bethel|strong=\"H1008\"*, to|strong=\"H1008\"* those who were in|strong=\"H1008\"* Ramoth|strong=\"H7418\"* of the|strong=\"H1008\"* South, to|strong=\"H1008\"* those who were in|strong=\"H1008\"* Jattir|strong=\"H3492\"*," + }, + { + "verseNum": 28, + "text": "to those who were in Aroer|strong=\"H6177\"*, to those who were in Siphmoth|strong=\"H8224\"*, to those who were in Eshtemoa," + }, + { + "verseNum": 29, + "text": "to|strong=\"H5892\"* those who|strong=\"H7017\"* were|strong=\"H5892\"* in|strong=\"H5892\"* Racal|strong=\"H7403\"*, to|strong=\"H5892\"* those who|strong=\"H7017\"* were|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H5892\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H5892\"* Jerahmeelites|strong=\"H3397\"*, to|strong=\"H5892\"* those who|strong=\"H7017\"* were|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H5892\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H5892\"* Kenites|strong=\"H7017\"*," + }, + { + "verseNum": 30, + "text": "to those who were in Hormah|strong=\"H2767\"*, to those who were in Borashan, to those who were in Athach|strong=\"H6269\"*," + }, + { + "verseNum": 31, + "text": "to|strong=\"H1980\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1732\"* in|strong=\"H1980\"* Hebron|strong=\"H2275\"*, and|strong=\"H1980\"* to|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* places|strong=\"H4725\"* where|strong=\"H8033\"* David|strong=\"H1732\"* himself|strong=\"H1931\"* and|strong=\"H1980\"* his|strong=\"H3605\"* men|strong=\"H1980\"* used|strong=\"H3605\"* to|strong=\"H1980\"* stay." + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* the|strong=\"H6440\"* men|strong=\"H3478\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"* fled|strong=\"H5127\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*, and|strong=\"H3478\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* slain|strong=\"H2491\"* on|strong=\"H5307\"* Mount|strong=\"H2022\"* Gilboa|strong=\"H1533\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5221\"* Philistines|strong=\"H6430\"* overtook|strong=\"H1692\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* his|strong=\"H5221\"* sons|strong=\"H1121\"*; and|strong=\"H1121\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"* killed|strong=\"H5221\"* Jonathan|strong=\"H3083\"*, Abinadab, and|strong=\"H1121\"* Malchishua, the|strong=\"H5221\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H4672\"* battle|strong=\"H4421\"* went|strong=\"H7586\"* hard|strong=\"H3966\"* against|strong=\"H4421\"* Saul|strong=\"H7586\"*, and|strong=\"H7586\"* the|strong=\"H4672\"* archers|strong=\"H3384\"* overtook|strong=\"H4672\"* him|strong=\"H4672\"*; and|strong=\"H7586\"* he|strong=\"H3384\"* was|strong=\"H7586\"* greatly|strong=\"H3966\"* distressed by|strong=\"H4421\"* reason of|strong=\"H7198\"* the|strong=\"H4672\"* archers|strong=\"H3384\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H3947\"* Saul|strong=\"H7586\"* said to|strong=\"H5921\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"*, “Draw|strong=\"H8025\"* your|strong=\"H3947\"* sword|strong=\"H2719\"*, and|strong=\"H2719\"* thrust|strong=\"H1856\"* me|strong=\"H5921\"* through|strong=\"H1856\"* with|strong=\"H5921\"* it|strong=\"H5921\"*, lest|strong=\"H6435\"* these|strong=\"H3947\"* uncircumcised|strong=\"H6189\"* come|strong=\"H5307\"* and|strong=\"H2719\"* thrust|strong=\"H1856\"* me|strong=\"H5921\"* through|strong=\"H1856\"* and|strong=\"H2719\"* abuse|strong=\"H5953\"* me|strong=\"H5921\"*!” But|strong=\"H3588\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"* would not|strong=\"H3808\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H7586\"* terrified|strong=\"H3966\"*. Therefore|strong=\"H5921\"* Saul|strong=\"H7586\"* took|strong=\"H3947\"* his|strong=\"H5375\"* sword|strong=\"H2719\"* and|strong=\"H2719\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H3588\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* was|strong=\"H7586\"* dead|strong=\"H4191\"*, he|strong=\"H1931\"* likewise|strong=\"H1571\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H5375\"* sword|strong=\"H2719\"*, and|strong=\"H2719\"* died|strong=\"H4191\"* with|strong=\"H5973\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "So|strong=\"H1571\"* Saul|strong=\"H7586\"* died|strong=\"H4191\"* with|strong=\"H3117\"* his|strong=\"H3605\"* three|strong=\"H7969\"* sons|strong=\"H1121\"*, his|strong=\"H3605\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* men|strong=\"H1121\"* that|strong=\"H3605\"* same|strong=\"H1931\"* day|strong=\"H3117\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H1121\"* were|strong=\"H3478\"* on|strong=\"H7200\"* the|strong=\"H7200\"* other|strong=\"H5676\"* side|strong=\"H5676\"* of|strong=\"H1121\"* the|strong=\"H7200\"* valley|strong=\"H6010\"*, and|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H3478\"* beyond|strong=\"H5676\"* the|strong=\"H7200\"* Jordan|strong=\"H3383\"*, saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H7200\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* fled|strong=\"H5127\"* and|strong=\"H1121\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* his|strong=\"H7200\"* sons|strong=\"H1121\"* were|strong=\"H3478\"* dead|strong=\"H4191\"*, they|strong=\"H3588\"* abandoned|strong=\"H5800\"* the|strong=\"H7200\"* cities|strong=\"H5892\"* and|strong=\"H1121\"* fled|strong=\"H5127\"*; and|strong=\"H1121\"* the|strong=\"H7200\"* Philistines|strong=\"H6430\"* came|strong=\"H3478\"* and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* them|strong=\"H7200\"*." + }, + { + "verseNum": 8, + "text": "On|strong=\"H5307\"* the|strong=\"H1961\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, when|strong=\"H1961\"* the|strong=\"H1961\"* Philistines|strong=\"H6430\"* came|strong=\"H1961\"* to|strong=\"H1961\"* strip|strong=\"H6584\"* the|strong=\"H1961\"* slain|strong=\"H2491\"*, they|strong=\"H7586\"* found|strong=\"H4672\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* his|strong=\"H1961\"* three|strong=\"H7969\"* sons|strong=\"H1121\"* fallen|strong=\"H5307\"* on|strong=\"H5307\"* Mount|strong=\"H2022\"* Gilboa|strong=\"H1533\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H5971\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* his|strong=\"H7971\"* head|strong=\"H7218\"*, stripped|strong=\"H6584\"* off|strong=\"H3772\"* his|strong=\"H7971\"* armor|strong=\"H3627\"*, and|strong=\"H7971\"* sent|strong=\"H7971\"* into|strong=\"H3627\"* the|strong=\"H7971\"* land of|strong=\"H1004\"* the|strong=\"H7971\"* Philistines|strong=\"H6430\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, to|strong=\"H7971\"* carry|strong=\"H1319\"* the|strong=\"H7971\"* news|strong=\"H1319\"* to|strong=\"H7971\"* the|strong=\"H7971\"* house|strong=\"H1004\"* of|strong=\"H1004\"* their|strong=\"H7971\"* idols|strong=\"H6091\"* and|strong=\"H7971\"* to|strong=\"H7971\"* the|strong=\"H7971\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H7760\"* put|strong=\"H7760\"* his|strong=\"H7760\"* armor|strong=\"H3627\"* in|strong=\"H1004\"* the|strong=\"H7760\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H7760\"* Ashtaroth|strong=\"H6252\"*, and|strong=\"H1004\"* they|strong=\"H7760\"* fastened|strong=\"H8628\"* his|strong=\"H7760\"* body|strong=\"H1472\"* to|strong=\"H1004\"* the|strong=\"H7760\"* wall|strong=\"H2346\"* of|strong=\"H1004\"* Beth|strong=\"H1004\"* Shan." + }, + { + "verseNum": 11, + "text": "When|strong=\"H8085\"* the|strong=\"H8085\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"* heard|strong=\"H8085\"* what|strong=\"H6213\"* the|strong=\"H8085\"* Philistines|strong=\"H6430\"* had|strong=\"H7586\"* done|strong=\"H6213\"* to|strong=\"H6213\"* Saul|strong=\"H7586\"*," + }, + { + "verseNum": 12, + "text": "all|strong=\"H3605\"* the|strong=\"H3605\"* valiant|strong=\"H2428\"* men|strong=\"H1121\"* arose|strong=\"H6965\"*, went|strong=\"H3212\"* all|strong=\"H3605\"* night|strong=\"H3915\"*, and|strong=\"H1121\"* took|strong=\"H3947\"* the|strong=\"H3605\"* body|strong=\"H1472\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* the|strong=\"H3605\"* bodies|strong=\"H1472\"* of|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* from|strong=\"H1121\"* the|strong=\"H3605\"* wall|strong=\"H2346\"* of|strong=\"H1121\"* Beth Shan; and|strong=\"H1121\"* they|strong=\"H8033\"* came|strong=\"H3212\"* to|strong=\"H3212\"* Jabesh|strong=\"H3003\"* and|strong=\"H1121\"* burned|strong=\"H8313\"* them|strong=\"H3947\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"H3117\"* took|strong=\"H3947\"* their|strong=\"H3947\"* bones|strong=\"H6106\"* and|strong=\"H3117\"* buried|strong=\"H6912\"* them|strong=\"H3947\"* under|strong=\"H8478\"* the|strong=\"H3947\"* tamarisk+ 31:13 or, salt cedar* tree in|strong=\"H3117\"* Jabesh|strong=\"H3003\"*, and|strong=\"H3117\"* fasted|strong=\"H6684\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + } + ] + } + ] + }, + { + "name": "2 Samuel", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* the|strong=\"H5221\"* death|strong=\"H4191\"* of|strong=\"H3117\"* Saul|strong=\"H7586\"*, when|strong=\"H1961\"* David|strong=\"H1732\"* had|strong=\"H1961\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H5221\"* slaughter|strong=\"H5221\"* of|strong=\"H3117\"* the|strong=\"H5221\"* Amalekites|strong=\"H6002\"*, and|strong=\"H7725\"* David|strong=\"H1732\"* had|strong=\"H1961\"* stayed|strong=\"H3427\"* two|strong=\"H8147\"* days|strong=\"H3117\"* in|strong=\"H3427\"* Ziklag|strong=\"H6860\"*," + }, + { + "verseNum": 2, + "text": "on|strong=\"H5921\"* the|strong=\"H5921\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, behold|strong=\"H2009\"*,+ 1:2 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* a|strong=\"H3068\"* man|strong=\"H5307\"* came|strong=\"H1961\"* out|strong=\"H4480\"* of|strong=\"H3117\"* the|strong=\"H5921\"* camp|strong=\"H4264\"* from|strong=\"H4480\"* Saul|strong=\"H7586\"*, with|strong=\"H5973\"* his|strong=\"H1732\"* clothes torn|strong=\"H7167\"* and|strong=\"H3117\"* earth on|strong=\"H5921\"* his|strong=\"H1732\"* head|strong=\"H7218\"*. When|strong=\"H1961\"* he|strong=\"H3117\"* came|strong=\"H1961\"* to|strong=\"H1961\"* David|strong=\"H1732\"*, he|strong=\"H3117\"* fell|strong=\"H5307\"* to|strong=\"H1961\"* the|strong=\"H5921\"* earth and|strong=\"H3117\"* showed respect|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* said to|strong=\"H3478\"* him|strong=\"H1732\"*, “Where|strong=\"H2088\"* do|strong=\"H2088\"* you|strong=\"H2088\"* come|strong=\"H3478\"* from|strong=\"H3478\"*?”" + }, + { + "verseNum": 4, + "text": "David|strong=\"H1732\"* said|strong=\"H1697\"* to|strong=\"H4191\"* him|strong=\"H5046\"*, “How|strong=\"H4100\"* did|strong=\"H4100\"* it|strong=\"H1961\"* go|strong=\"H5971\"*? Please|strong=\"H4994\"* tell|strong=\"H5046\"* me|strong=\"H4994\"*.”" + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"* said to|strong=\"H4191\"* the|strong=\"H3588\"* young|strong=\"H5288\"* man|strong=\"H5288\"* who|strong=\"H1121\"* told|strong=\"H5046\"* him|strong=\"H5046\"*, “How|strong=\"H3588\"* do you|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* Jonathan|strong=\"H3083\"* his|strong=\"H1732\"* son|strong=\"H1121\"* are|strong=\"H1121\"* dead|strong=\"H4191\"*?”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* young|strong=\"H5288\"* man|strong=\"H5288\"* who|strong=\"H5288\"* told|strong=\"H5046\"* him|strong=\"H5921\"* said, “As|strong=\"H2022\"* I|strong=\"H2009\"* happened|strong=\"H7122\"* by|strong=\"H5921\"* chance|strong=\"H7122\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Gilboa|strong=\"H1533\"*, behold|strong=\"H2009\"*, Saul|strong=\"H7586\"* was|strong=\"H7586\"* leaning|strong=\"H8172\"* on|strong=\"H5921\"* his|strong=\"H5921\"* spear|strong=\"H2595\"*; and|strong=\"H7393\"* behold|strong=\"H2009\"*, the|strong=\"H5921\"* chariots|strong=\"H7393\"* and|strong=\"H7393\"* the|strong=\"H5921\"* horsemen|strong=\"H6571\"* followed|strong=\"H1167\"* close|strong=\"H1692\"* behind|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H7200\"* he|strong=\"H7121\"* looked|strong=\"H7200\"* behind him|strong=\"H7121\"*, he|strong=\"H7121\"* saw|strong=\"H7200\"* me|strong=\"H7200\"* and|strong=\"H7200\"* called|strong=\"H7121\"* to|strong=\"H7121\"* me|strong=\"H7200\"*. I|strong=\"H2005\"* answered, ‘Here|strong=\"H2005\"* I|strong=\"H2005\"* am|strong=\"H2005\"*.’" + }, + { + "verseNum": 8, + "text": "He|strong=\"H4310\"* said to|strong=\"H4310\"* me, ‘Who|strong=\"H4310\"* are|strong=\"H4310\"* you|strong=\"H4310\"*?’ I answered him, ‘I am an|strong=\"H4310\"* Amalekite|strong=\"H6003\"*.’" + }, + { + "verseNum": 9, + "text": "He|strong=\"H3588\"* said to|strong=\"H4191\"* me|strong=\"H4994\"*, ‘Please|strong=\"H4994\"* stand|strong=\"H5975\"* beside|strong=\"H5921\"* me|strong=\"H4994\"*, and|strong=\"H5975\"* kill|strong=\"H4191\"* me|strong=\"H4994\"*, for|strong=\"H3588\"* anguish|strong=\"H7661\"* has|strong=\"H3588\"* taken hold of|strong=\"H5921\"* me|strong=\"H4994\"* because|strong=\"H3588\"* my|strong=\"H3605\"* life|strong=\"H5315\"* lingers in|strong=\"H5921\"* me|strong=\"H4994\"*.’" + }, + { + "verseNum": 10, + "text": "So|strong=\"H3947\"* I|strong=\"H3588\"* stood|strong=\"H5975\"* beside|strong=\"H5921\"* him|strong=\"H5921\"* and|strong=\"H7218\"* killed|strong=\"H4191\"* him|strong=\"H5921\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H7218\"* sure|strong=\"H3045\"* that|strong=\"H3588\"* he|strong=\"H3588\"* could|strong=\"H3045\"* not|strong=\"H3808\"* live|strong=\"H2421\"* after|strong=\"H5921\"* he|strong=\"H3588\"* had|strong=\"H3588\"* fallen|strong=\"H5307\"*. I|strong=\"H3588\"* took|strong=\"H3947\"* the|strong=\"H5921\"* crown|strong=\"H5145\"* that|strong=\"H3588\"* was|strong=\"H7218\"* on|strong=\"H5921\"* his|strong=\"H3947\"* head|strong=\"H7218\"* and|strong=\"H7218\"* the|strong=\"H5921\"* bracelet that|strong=\"H3588\"* was|strong=\"H7218\"* on|strong=\"H5921\"* his|strong=\"H3947\"* arm|strong=\"H2220\"*, and|strong=\"H7218\"* have|strong=\"H3045\"* brought|strong=\"H3947\"* them|strong=\"H5921\"* here|strong=\"H2008\"* to|strong=\"H4191\"* my|strong=\"H3947\"* lord.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H1571\"* David|strong=\"H1732\"* took|strong=\"H2388\"* hold|strong=\"H2388\"* on|strong=\"H2388\"* his|strong=\"H3605\"* clothes and|strong=\"H1732\"* tore|strong=\"H7167\"* them|strong=\"H2388\"*; and|strong=\"H1732\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1732\"* with|strong=\"H1732\"* him|strong=\"H3605\"* did|strong=\"H1732\"* likewise|strong=\"H1571\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3588\"* mourned|strong=\"H5594\"*, wept|strong=\"H1058\"*, and|strong=\"H1121\"* fasted|strong=\"H6684\"* until|strong=\"H5704\"* evening|strong=\"H6153\"* for|strong=\"H3588\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* for|strong=\"H3588\"* Jonathan|strong=\"H3083\"* his|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* for|strong=\"H3588\"* the|strong=\"H5921\"* people|strong=\"H5971\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*,+ 1:12 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* and|strong=\"H1121\"* for|strong=\"H3588\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* fallen|strong=\"H5307\"* by|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 13, + "text": "David|strong=\"H1732\"* said to|strong=\"H1121\"* the|strong=\"H5046\"* young|strong=\"H5288\"* man|strong=\"H5288\"* who|strong=\"H1616\"* told|strong=\"H5046\"* him|strong=\"H5046\"*, “Where|strong=\"H2088\"* are|strong=\"H1121\"* you|strong=\"H5046\"* from|strong=\"H1121\"*?”" + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* said to|strong=\"H3068\"* him|strong=\"H7971\"*, “Why|strong=\"H3808\"* were|strong=\"H3027\"* you|strong=\"H7971\"* not|strong=\"H3808\"* afraid|strong=\"H3372\"* to|strong=\"H3068\"* stretch|strong=\"H7971\"* out|strong=\"H7971\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H3068\"* destroy|strong=\"H7843\"* Yahweh|strong=\"H3068\"*’s anointed|strong=\"H4899\"*?”" + }, + { + "verseNum": 15, + "text": "David|strong=\"H1732\"* called|strong=\"H7121\"* one of|strong=\"H4191\"* the|strong=\"H5221\"* young|strong=\"H5288\"* men|strong=\"H5288\"* and|strong=\"H1732\"* said|strong=\"H7121\"*, “Go|strong=\"H5066\"* near|strong=\"H5066\"*, and|strong=\"H1732\"* cut|strong=\"H6293\"* him|strong=\"H7121\"* down|strong=\"H5221\"*!” He|strong=\"H1732\"* struck|strong=\"H5221\"* him|strong=\"H7121\"* so|strong=\"H7121\"* that|strong=\"H5288\"* he|strong=\"H1732\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 16, + "text": "David|strong=\"H1732\"* said|strong=\"H6030\"* to|strong=\"H4191\"* him|strong=\"H5921\"*, “Your|strong=\"H3068\"* blood|strong=\"H1818\"* be|strong=\"H4191\"* on|strong=\"H5921\"* your|strong=\"H3068\"* head|strong=\"H7218\"*, for|strong=\"H3588\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"* has|strong=\"H3068\"* testified|strong=\"H6030\"* against|strong=\"H5921\"* you|strong=\"H3588\"*, saying|strong=\"H6310\"*, ‘I|strong=\"H3588\"* have|strong=\"H3068\"* slain|strong=\"H4191\"* Yahweh|strong=\"H3068\"*’s anointed|strong=\"H4899\"*.’”" + }, + { + "verseNum": 17, + "text": "David|strong=\"H1732\"* lamented|strong=\"H6969\"* with|strong=\"H5921\"* this|strong=\"H2063\"* lamentation|strong=\"H7015\"* over|strong=\"H5921\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* over|strong=\"H5921\"* Jonathan|strong=\"H3083\"* his|strong=\"H1732\"* son|strong=\"H1121\"*" + }, + { + "verseNum": 18, + "text": "(and|strong=\"H1121\"* he|strong=\"H5921\"* commanded them|strong=\"H5921\"* to|strong=\"H5921\"* teach|strong=\"H3925\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* the|strong=\"H5921\"* song of|strong=\"H1121\"* the|strong=\"H5921\"* bow|strong=\"H7198\"*; behold|strong=\"H2009\"*, it|strong=\"H5921\"* is|strong=\"H2009\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H1121\"* Jashar|strong=\"H3477\"*):" + }, + { + "verseNum": 19, + "text": "“Your|strong=\"H5921\"* glory|strong=\"H6643\"*, Israel|strong=\"H3478\"*, was|strong=\"H3478\"* slain|strong=\"H2491\"* on|strong=\"H5921\"* your|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"*!" + }, + { + "verseNum": 20, + "text": "Don’t tell|strong=\"H5046\"* it|strong=\"H8055\"* in|strong=\"H6189\"* Gath|strong=\"H1661\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"H3588\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* Gilboa|strong=\"H1533\"*," + }, + { + "verseNum": 22, + "text": "From|strong=\"H7725\"* the|strong=\"H7725\"* blood|strong=\"H1818\"* of|strong=\"H1368\"* the|strong=\"H7725\"* slain|strong=\"H2491\"*," + }, + { + "verseNum": 23, + "text": "Saul|strong=\"H7586\"* and|strong=\"H7586\"* Jonathan|strong=\"H3083\"* were|strong=\"H7586\"* lovely|strong=\"H5273\"* and|strong=\"H7586\"* pleasant|strong=\"H5273\"* in|strong=\"H3808\"* their|strong=\"H3808\"* lives|strong=\"H2416\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H5921\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Israel|strong=\"H3478\"*, weep|strong=\"H1058\"* over|strong=\"H5921\"* Saul|strong=\"H7586\"*," + }, + { + "verseNum": 25, + "text": "How the|strong=\"H5921\"* mighty|strong=\"H1368\"* have|strong=\"H5307\"* fallen|strong=\"H5307\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H5921\"* battle|strong=\"H4421\"*!" + }, + { + "verseNum": 26, + "text": "I|strong=\"H5921\"* am distressed|strong=\"H6887\"* for|strong=\"H5921\"* you|strong=\"H5921\"*, my|strong=\"H5921\"* brother Jonathan|strong=\"H3083\"*." + }, + { + "verseNum": 27, + "text": "How the|strong=\"H5307\"* mighty|strong=\"H1368\"* have|strong=\"H5307\"* fallen|strong=\"H5307\"*," + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* this|strong=\"H3651\"*, David|strong=\"H1732\"* inquired|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying, “Shall|strong=\"H3068\"* I|strong=\"H3651\"* go|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* any|strong=\"H1961\"* of|strong=\"H3068\"* the|strong=\"H3068\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*?”" + }, + { + "verseNum": 2, + "text": "So|strong=\"H5927\"* David|strong=\"H1732\"* went|strong=\"H5927\"* up|strong=\"H5927\"* there|strong=\"H8033\"* with|strong=\"H5927\"* his|strong=\"H1732\"* two|strong=\"H8147\"* wives, Ahinoam the|strong=\"H5927\"* Jezreelitess|strong=\"H3159\"*, and|strong=\"H1732\"* Abigail the|strong=\"H5927\"* wife of|strong=\"H8147\"* Nabal|strong=\"H5037\"* the|strong=\"H5927\"* Carmelite|strong=\"H3761\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* his|strong=\"H1732\"* men who|strong=\"H3427\"* were|strong=\"H1732\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, every|strong=\"H3427\"* man with|strong=\"H5973\"* his|strong=\"H1732\"* household|strong=\"H1004\"*. They|strong=\"H5892\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5927\"* cities|strong=\"H5892\"* of|strong=\"H1004\"* Hebron|strong=\"H2275\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H5921\"* men of|strong=\"H4428\"* Judah|strong=\"H3063\"* came|strong=\"H3063\"*, and|strong=\"H3063\"* there|strong=\"H8033\"* they|strong=\"H8033\"* anointed|strong=\"H4886\"* David|strong=\"H1732\"* king|strong=\"H4428\"* over|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*. They|strong=\"H8033\"* told|strong=\"H5046\"* David|strong=\"H1732\"*, “The|strong=\"H5921\"* men of|strong=\"H4428\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"* were|strong=\"H3063\"* those|strong=\"H5921\"* who|strong=\"H3063\"* buried|strong=\"H6912\"* Saul|strong=\"H7586\"*.”" + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H3068\"* the|strong=\"H6213\"* men|strong=\"H6213\"* of|strong=\"H3068\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"*, and|strong=\"H3068\"* said to|strong=\"H3068\"* them|strong=\"H7971\"*, “Blessed|strong=\"H1288\"* are|strong=\"H3068\"* you|strong=\"H7971\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3068\"* you|strong=\"H7971\"* have|strong=\"H3068\"* shown|strong=\"H6213\"* this|strong=\"H2088\"* kindness|strong=\"H2617\"* to|strong=\"H3068\"* your|strong=\"H3068\"* lord|strong=\"H3068\"*, even|strong=\"H6213\"* to|strong=\"H3068\"* Saul|strong=\"H7586\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* buried|strong=\"H6912\"* him|strong=\"H7971\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"H6258\"* may|strong=\"H3068\"* Yahweh|strong=\"H3068\"* show|strong=\"H6213\"* loving|strong=\"H2896\"* kindness|strong=\"H2617\"* and|strong=\"H3068\"* truth to|strong=\"H3068\"* you|strong=\"H6213\"*. I|strong=\"H1697\"* also|strong=\"H1571\"* will|strong=\"H3068\"* reward you|strong=\"H6213\"* for|strong=\"H6213\"* this|strong=\"H2088\"* kindness|strong=\"H2617\"*, because|strong=\"H1697\"* you|strong=\"H6213\"* have|strong=\"H3068\"* done|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* let|strong=\"H6258\"* your|strong=\"H5921\"* hands|strong=\"H3027\"* be|strong=\"H1961\"* strong|strong=\"H2388\"*, and|strong=\"H1121\"* be|strong=\"H1961\"* valiant|strong=\"H2428\"*; for|strong=\"H3588\"* Saul|strong=\"H7586\"* your|strong=\"H5921\"* lord is|strong=\"H1571\"* dead|strong=\"H4191\"*, and|strong=\"H1121\"* also|strong=\"H1571\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* have|strong=\"H1961\"* anointed|strong=\"H4886\"* me|strong=\"H5921\"* king|strong=\"H4428\"* over|strong=\"H5921\"* them|strong=\"H5921\"*.”" + }, + { + "verseNum": 8, + "text": "Now|strong=\"H3947\"* Abner the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"*, captain|strong=\"H8269\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*’s army|strong=\"H6635\"*, had|strong=\"H7586\"* taken|strong=\"H3947\"* Ishbosheth the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* brought|strong=\"H3947\"* him|strong=\"H3947\"* over|strong=\"H5674\"* to|strong=\"H1121\"* Mahanaim|strong=\"H4266\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H3605\"* made|strong=\"H4427\"* him|strong=\"H5921\"* king|strong=\"H4427\"* over|strong=\"H5921\"* Gilead|strong=\"H1568\"*, over|strong=\"H5921\"* the|strong=\"H3605\"* Ashurites, over|strong=\"H5921\"* Jezreel|strong=\"H3157\"*, over|strong=\"H5921\"* Ephraim, over|strong=\"H5921\"* Benjamin|strong=\"H1144\"*, and|strong=\"H3478\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 10, + "text": "Ishbosheth, Saul|strong=\"H7586\"*’s son|strong=\"H1121\"*, was|strong=\"H1961\"* forty years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* he|strong=\"H1004\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* he|strong=\"H1004\"* reigned|strong=\"H4427\"* two|strong=\"H8147\"* years|strong=\"H8141\"*. But|strong=\"H1961\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* followed|strong=\"H1961\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* time|strong=\"H3117\"* that|strong=\"H3117\"* David|strong=\"H1732\"* was|strong=\"H1961\"* king|strong=\"H4428\"* in|strong=\"H8141\"* Hebron|strong=\"H2275\"* over|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* was|strong=\"H1961\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* and|strong=\"H3063\"* six|strong=\"H8337\"* months|strong=\"H2320\"*." + }, + { + "verseNum": 12, + "text": "Abner the|strong=\"H3318\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"*, and|strong=\"H1121\"* the|strong=\"H3318\"* servants|strong=\"H5650\"* of|strong=\"H1121\"* Ishbosheth the|strong=\"H3318\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*, went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Mahanaim|strong=\"H4266\"* to|strong=\"H3318\"* Gibeon|strong=\"H1391\"*." + }, + { + "verseNum": 13, + "text": "Joab|strong=\"H3097\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* and|strong=\"H1121\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* met|strong=\"H6298\"* them|strong=\"H5921\"* by|strong=\"H5921\"* the|strong=\"H5921\"* pool|strong=\"H1295\"* of|strong=\"H1121\"* Gibeon|strong=\"H1391\"*; and|strong=\"H1121\"* they|strong=\"H5921\"* sat|strong=\"H3427\"* down|strong=\"H3427\"*, the|strong=\"H5921\"* one|strong=\"H2088\"* on|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H2088\"* side|strong=\"H2088\"* of|strong=\"H1121\"* the|strong=\"H5921\"* pool|strong=\"H1295\"* and|strong=\"H1121\"* the|strong=\"H5921\"* other|strong=\"H2088\"* on|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H2088\"* side|strong=\"H2088\"* of|strong=\"H1121\"* the|strong=\"H5921\"* pool|strong=\"H1295\"*." + }, + { + "verseNum": 14, + "text": "Abner said to|strong=\"H6440\"* Joab|strong=\"H3097\"*, “Please|strong=\"H4994\"* let|strong=\"H4994\"* the|strong=\"H6440\"* young|strong=\"H5288\"* men|strong=\"H5288\"* arise|strong=\"H6965\"* and|strong=\"H6965\"* compete before|strong=\"H6440\"* us|strong=\"H4994\"*!”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H6965\"* they|strong=\"H7586\"* arose|strong=\"H6965\"* and|strong=\"H1121\"* went|strong=\"H5674\"* over|strong=\"H5674\"* by|strong=\"H5674\"* number|strong=\"H4557\"*: twelve|strong=\"H8147\"* for|strong=\"H1121\"* Benjamin|strong=\"H1144\"* and|strong=\"H1121\"* for|strong=\"H1121\"* Ishbosheth the|strong=\"H5674\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*, and|strong=\"H1121\"* twelve|strong=\"H8147\"* of|strong=\"H1121\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"H1931\"* each|strong=\"H3162\"* caught|strong=\"H2388\"* his|strong=\"H7121\"* opponent|strong=\"H7453\"* by|strong=\"H7121\"* the|strong=\"H7121\"* head|strong=\"H7218\"* and|strong=\"H7218\"* thrust his|strong=\"H7121\"* sword|strong=\"H2719\"* in|strong=\"H5307\"* his|strong=\"H7121\"* fellow|strong=\"H7453\"*’s side|strong=\"H6654\"*; so|strong=\"H7121\"* they|strong=\"H1931\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* together|strong=\"H3162\"*. Therefore that|strong=\"H1931\"* place|strong=\"H4725\"* in|strong=\"H5307\"* Gibeon|strong=\"H1391\"* was|strong=\"H1931\"* called|strong=\"H7121\"* Helkath Hazzurim.+ 2:16 “Helkath Hazzurim” means “field of daggers”.*" + }, + { + "verseNum": 17, + "text": "The|strong=\"H6440\"* battle|strong=\"H4421\"* was|strong=\"H1961\"* very|strong=\"H3966\"* severe|strong=\"H7186\"* that|strong=\"H3117\"* day|strong=\"H3117\"*; and|strong=\"H3478\"* Abner was|strong=\"H1961\"* beaten|strong=\"H5062\"*, and|strong=\"H3478\"* the|strong=\"H6440\"* men|strong=\"H5650\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*, before|strong=\"H6440\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H1961\"* three|strong=\"H7969\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* were|strong=\"H1961\"* there|strong=\"H8033\"*: Joab|strong=\"H3097\"*, Abishai, and|strong=\"H1121\"* Asahel|strong=\"H6214\"*. Asahel|strong=\"H6214\"* was|strong=\"H1961\"* as|strong=\"H1961\"* light|strong=\"H7031\"* of|strong=\"H1121\"* foot|strong=\"H7272\"* as|strong=\"H1961\"* a|strong=\"H3068\"* wild|strong=\"H7704\"* gazelle|strong=\"H6643\"*." + }, + { + "verseNum": 19, + "text": "Asahel|strong=\"H6214\"* pursued|strong=\"H7291\"* Abner. He|strong=\"H3808\"* didn’t turn|strong=\"H5186\"* to|strong=\"H3212\"* the|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* or|strong=\"H3808\"* to|strong=\"H3212\"* the|strong=\"H5921\"* left|strong=\"H8040\"* from|strong=\"H5921\"* following|strong=\"H3212\"* Abner." + }, + { + "verseNum": 20, + "text": "Then|strong=\"H2088\"* Abner looked|strong=\"H6437\"* behind him|strong=\"H2088\"* and|strong=\"H6437\"* said, “Is|strong=\"H2088\"* that|strong=\"H2088\"* you|strong=\"H6437\"*, Asahel|strong=\"H6214\"*?”" + }, + { + "verseNum": 21, + "text": "Abner said to|strong=\"H5921\"* him|strong=\"H5921\"*, “Turn|strong=\"H5493\"* away|strong=\"H5493\"* to|strong=\"H5921\"* your|strong=\"H3947\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* or|strong=\"H3808\"* to|strong=\"H5921\"* your|strong=\"H3947\"* left|strong=\"H8040\"*, and|strong=\"H5288\"* grab one|strong=\"H3808\"* of|strong=\"H5921\"* the|strong=\"H5921\"* young|strong=\"H5288\"* men|strong=\"H5288\"*, and|strong=\"H5288\"* take|strong=\"H3947\"* his|strong=\"H3947\"* armor.” But|strong=\"H3808\"* Asahel|strong=\"H6214\"* would|strong=\"H5288\"* not|strong=\"H3808\"* turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* following him|strong=\"H5921\"*." + }, + { + "verseNum": 22, + "text": "Abner said again|strong=\"H5750\"* to|strong=\"H6440\"* Asahel|strong=\"H6214\"*, “Turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* following me|strong=\"H6440\"*. Why|strong=\"H4100\"* should|strong=\"H4100\"* I|strong=\"H4100\"* strike|strong=\"H5221\"* you|strong=\"H6440\"* to|strong=\"H6440\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*? How|strong=\"H4100\"* then|strong=\"H5375\"* could|strong=\"H4100\"* I|strong=\"H4100\"* look|strong=\"H5375\"* Joab|strong=\"H3097\"* your|strong=\"H5375\"* brother in|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"*?”" + }, + { + "verseNum": 23, + "text": "However, he|strong=\"H8033\"* refused|strong=\"H3985\"* to|strong=\"H3318\"* turn|strong=\"H5493\"* away|strong=\"H5493\"*. Therefore|strong=\"H1961\"* Abner with|strong=\"H3318\"* the|strong=\"H3605\"* back|strong=\"H5493\"* end|strong=\"H3318\"* of|strong=\"H8478\"* the|strong=\"H3605\"* spear|strong=\"H2595\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* in|strong=\"H4191\"* the|strong=\"H3605\"* body|strong=\"H4191\"*, so|strong=\"H1961\"* that|strong=\"H3605\"* the|strong=\"H3605\"* spear|strong=\"H2595\"* came|strong=\"H1961\"* out|strong=\"H3318\"* behind|strong=\"H5975\"* him|strong=\"H5221\"*; and|strong=\"H8033\"* he|strong=\"H8033\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* there|strong=\"H8033\"* and|strong=\"H8033\"* died|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H3605\"* same place|strong=\"H4725\"*. As|strong=\"H1961\"* many as|strong=\"H1961\"* came|strong=\"H1961\"* to|strong=\"H3318\"* the|strong=\"H3605\"* place|strong=\"H4725\"* where|strong=\"H8033\"* Asahel|strong=\"H6214\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* and|strong=\"H8033\"* died|strong=\"H4191\"* stood|strong=\"H5975\"* still|strong=\"H5975\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"H1992\"* Joab|strong=\"H3097\"* and|strong=\"H6440\"* Abishai pursued|strong=\"H7291\"* Abner. The|strong=\"H6440\"* sun|strong=\"H8121\"* went|strong=\"H8121\"* down|strong=\"H1870\"* when|strong=\"H5704\"* they|strong=\"H1992\"* had|strong=\"H3097\"* come to|strong=\"H5704\"* the|strong=\"H6440\"* hill|strong=\"H1389\"* of|strong=\"H6440\"* Ammah, that|strong=\"H5704\"* lies before|strong=\"H6440\"* Giah|strong=\"H1520\"* by|strong=\"H5921\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H6440\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"* of|strong=\"H6440\"* Gibeon|strong=\"H1391\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* gathered|strong=\"H6908\"* themselves|strong=\"H6908\"* together|strong=\"H6908\"* after|strong=\"H5921\"* Abner and|strong=\"H1121\"* became|strong=\"H1961\"* one|strong=\"H1121\"* band|strong=\"H7218\"*, and|strong=\"H1121\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H1121\"* a|strong=\"H3068\"* hill|strong=\"H1389\"*." + }, + { + "verseNum": 26, + "text": "Then|strong=\"H1961\"* Abner called|strong=\"H7121\"* to|strong=\"H5704\"* Joab|strong=\"H3097\"*, and|strong=\"H7725\"* said|strong=\"H7121\"*, “Shall|strong=\"H5971\"* the|strong=\"H3588\"* sword|strong=\"H2719\"* devour forever|strong=\"H5704\"*? Don’t you|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* it|strong=\"H7121\"* will|strong=\"H1961\"* be|strong=\"H1961\"* bitterness|strong=\"H4751\"* in|strong=\"H7725\"* the|strong=\"H3588\"* latter end|strong=\"H5331\"*? How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H1961\"* it|strong=\"H7121\"* be|strong=\"H1961\"* then|strong=\"H1961\"*, before|strong=\"H5704\"* you|strong=\"H3588\"* ask the|strong=\"H3588\"* people|strong=\"H5971\"* to|strong=\"H5704\"* return|strong=\"H7725\"* from|strong=\"H7725\"* following their|strong=\"H7725\"* brothers?”" + }, + { + "verseNum": 27, + "text": "Joab|strong=\"H3097\"* said|strong=\"H1696\"*, “As|strong=\"H5927\"* God+ 2:27 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* lives|strong=\"H2416\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* had|strong=\"H3588\"* not|strong=\"H3588\"* spoken|strong=\"H1696\"*, surely|strong=\"H3588\"* then|strong=\"H1696\"* in|strong=\"H1696\"* the|strong=\"H3588\"* morning|strong=\"H1242\"* the|strong=\"H3588\"* people|strong=\"H5971\"* would|strong=\"H5971\"* have|strong=\"H5971\"* gone|strong=\"H5927\"* away|strong=\"H5927\"*, and|strong=\"H5971\"* not|strong=\"H3588\"* each|strong=\"H5971\"* followed|strong=\"H5927\"* his|strong=\"H3588\"* brother.”" + }, + { + "verseNum": 28, + "text": "So|strong=\"H3808\"* Joab|strong=\"H3097\"* blew|strong=\"H8628\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"*; and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* stood|strong=\"H5975\"* still|strong=\"H5750\"* and|strong=\"H3478\"* pursued|strong=\"H7291\"* Israel|strong=\"H3478\"* no|strong=\"H3808\"* more|strong=\"H3254\"*, and|strong=\"H3478\"* they|strong=\"H3808\"* fought|strong=\"H3898\"* no|strong=\"H3808\"* more|strong=\"H3254\"*." + }, + { + "verseNum": 29, + "text": "Abner and|strong=\"H1980\"* his|strong=\"H3605\"* men|strong=\"H1980\"* went|strong=\"H1980\"* all|strong=\"H3605\"* that|strong=\"H3605\"* night|strong=\"H3915\"* through|strong=\"H5674\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"*; and|strong=\"H1980\"* they|strong=\"H1931\"* passed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, and|strong=\"H1980\"* went|strong=\"H1980\"* through|strong=\"H5674\"* all|strong=\"H3605\"* Bithron|strong=\"H1338\"*, and|strong=\"H1980\"* came|strong=\"H1980\"* to|strong=\"H1980\"* Mahanaim|strong=\"H4266\"*." + }, + { + "verseNum": 30, + "text": "Joab|strong=\"H3097\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* following Abner; and|strong=\"H7725\"* when|strong=\"H7725\"* he|strong=\"H3605\"* had|strong=\"H1732\"* gathered|strong=\"H6908\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* together|strong=\"H6908\"*, nineteen|strong=\"H8672\"* men|strong=\"H5971\"* of|strong=\"H5650\"* David|strong=\"H1732\"*’s and|strong=\"H7725\"* Asahel|strong=\"H6214\"* were|strong=\"H5971\"* missing|strong=\"H6485\"*." + }, + { + "verseNum": 31, + "text": "But|strong=\"H5221\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"* had|strong=\"H1732\"* struck|strong=\"H5221\"* Benjamin|strong=\"H1144\"* Abner’s men|strong=\"H5650\"* so|strong=\"H4191\"* that|strong=\"H1732\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* sixty|strong=\"H8346\"* men|strong=\"H5650\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 32, + "text": "They|strong=\"H3605\"* took|strong=\"H5375\"* up|strong=\"H5375\"* Asahel|strong=\"H6214\"* and|strong=\"H3212\"* buried|strong=\"H6912\"* him|strong=\"H6912\"* in|strong=\"H6912\"* the|strong=\"H3605\"* tomb|strong=\"H6913\"* of|strong=\"H3605\"* his|strong=\"H3605\"* father, which|strong=\"H3605\"* was|strong=\"H3097\"* in|strong=\"H6912\"* Bethlehem|strong=\"H1035\"*. Joab|strong=\"H3097\"* and|strong=\"H3212\"* his|strong=\"H3605\"* men|strong=\"H3605\"* went|strong=\"H3212\"* all|strong=\"H3605\"* night|strong=\"H3915\"*, and|strong=\"H3212\"* the|strong=\"H3605\"* day broke on|strong=\"H3212\"* them|strong=\"H5375\"* at|strong=\"H6912\"* Hebron|strong=\"H2275\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* long|strong=\"H1980\"* war|strong=\"H4421\"* between|strong=\"H4421\"* Saul|strong=\"H7586\"*’s house|strong=\"H1004\"* and|strong=\"H1980\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"*. David|strong=\"H1732\"* grew|strong=\"H1980\"* stronger|strong=\"H2390\"* and|strong=\"H1980\"* stronger|strong=\"H2390\"*, but|strong=\"H1961\"* Saul|strong=\"H7586\"*’s house|strong=\"H1004\"* grew|strong=\"H1980\"* weaker|strong=\"H1800\"* and|strong=\"H1980\"* weaker|strong=\"H1800\"*." + }, + { + "verseNum": 2, + "text": "Sons|strong=\"H1121\"* were|strong=\"H1961\"* born|strong=\"H3205\"* to|strong=\"H1961\"* David|strong=\"H1732\"* in|strong=\"H1121\"* Hebron|strong=\"H2275\"*. His|strong=\"H1732\"* firstborn|strong=\"H1060\"* was|strong=\"H1961\"* Amnon, of|strong=\"H1121\"* Ahinoam the|strong=\"H3205\"* Jezreelitess|strong=\"H3159\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H1121\"* his|strong=\"H4428\"* second|strong=\"H4932\"*, Chileab|strong=\"H3609\"*, of|strong=\"H1121\"* Abigail the|strong=\"H1121\"* wife of|strong=\"H1121\"* Nabal|strong=\"H5037\"* the|strong=\"H1121\"* Carmelite|strong=\"H3761\"*; and|strong=\"H1121\"* the|strong=\"H1121\"* third|strong=\"H7992\"*, Absalom the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maacah|strong=\"H4601\"* the|strong=\"H1121\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Talmai|strong=\"H8526\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Geshur|strong=\"H1650\"*;" + }, + { + "verseNum": 4, + "text": "and|strong=\"H1121\"* the|strong=\"H1121\"* fourth|strong=\"H7243\"*, Adonijah the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Haggith|strong=\"H2294\"*; and|strong=\"H1121\"* the|strong=\"H1121\"* fifth|strong=\"H2549\"*, Shephatiah|strong=\"H8203\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abital;" + }, + { + "verseNum": 5, + "text": "and|strong=\"H1732\"* the|strong=\"H3205\"* sixth|strong=\"H8345\"*, Ithream|strong=\"H3507\"*, of|strong=\"H3205\"* Eglah|strong=\"H5698\"*, David|strong=\"H1732\"*’s wife. These|strong=\"H1732\"* were|strong=\"H1732\"* born|strong=\"H3205\"* to|strong=\"H3205\"* David|strong=\"H1732\"* in|strong=\"H1732\"* Hebron|strong=\"H2275\"*." + }, + { + "verseNum": 6, + "text": "While|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* war|strong=\"H4421\"* between|strong=\"H4421\"* Saul|strong=\"H7586\"*’s house|strong=\"H1004\"* and|strong=\"H1004\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"*, Abner made|strong=\"H2388\"* himself|strong=\"H2388\"* strong|strong=\"H2388\"* in|strong=\"H1004\"* Saul|strong=\"H7586\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 7, + "text": "Now Saul|strong=\"H7586\"* had|strong=\"H7586\"* a|strong=\"H3068\"* concubine|strong=\"H6370\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Rizpah|strong=\"H7532\"*, the|strong=\"H8034\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Aiah; and|strong=\"H7586\"* Ishbosheth said to|strong=\"H1323\"* Abner, “Why|strong=\"H4069\"* have|strong=\"H1323\"* you gone in|strong=\"H8034\"* to|strong=\"H1323\"* my|strong=\"H7586\"* father’s concubine|strong=\"H6370\"*?”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H6213\"* Abner was|strong=\"H1732\"* very|strong=\"H3966\"* angry|strong=\"H2734\"* about|strong=\"H5921\"* Ishbosheth’s words|strong=\"H1697\"*, and|strong=\"H3063\"* said|strong=\"H1697\"*, “Am|strong=\"H6485\"* I|strong=\"H3117\"* a|strong=\"H3068\"* dog|strong=\"H3611\"*’s head|strong=\"H7218\"* that|strong=\"H3117\"* belongs to|strong=\"H6213\"* Judah|strong=\"H3063\"*? Today|strong=\"H3117\"* I|strong=\"H3117\"* show|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H6213\"* your|strong=\"H5921\"* father Saul|strong=\"H7586\"*’s house|strong=\"H1004\"*, to|strong=\"H6213\"* his|strong=\"H1732\"* brothers, and|strong=\"H3063\"* to|strong=\"H6213\"* his|strong=\"H1732\"* friends|strong=\"H4828\"*, and|strong=\"H3063\"* have|strong=\"H3063\"* not|strong=\"H3808\"* delivered|strong=\"H4672\"* you|strong=\"H5921\"* into|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* David|strong=\"H1732\"*; and|strong=\"H3063\"* yet|strong=\"H3808\"* you|strong=\"H5921\"* charge|strong=\"H5921\"* me|strong=\"H5921\"* today|strong=\"H3117\"* with|strong=\"H5973\"* a|strong=\"H3068\"* fault|strong=\"H5771\"* concerning|strong=\"H5921\"* this|strong=\"H6213\"* woman|strong=\"H1004\"*!" + }, + { + "verseNum": 9, + "text": "God|strong=\"H3068\"* do|strong=\"H6213\"* so|strong=\"H3651\"* to|strong=\"H3068\"* Abner, and|strong=\"H3068\"* more|strong=\"H3254\"* also|strong=\"H3068\"*, if|strong=\"H3588\"*, as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"* to|strong=\"H3068\"* David|strong=\"H1732\"*, I|strong=\"H3588\"* don’t do|strong=\"H6213\"* even|strong=\"H3588\"* so|strong=\"H3651\"* to|strong=\"H3068\"* him|strong=\"H6213\"*:" + }, + { + "verseNum": 10, + "text": "to|strong=\"H5704\"* transfer|strong=\"H5674\"* the|strong=\"H5921\"* kingdom|strong=\"H4467\"* from|strong=\"H5921\"* Saul|strong=\"H7586\"*’s house|strong=\"H1004\"*, and|strong=\"H3063\"* to|strong=\"H5704\"* set|strong=\"H6965\"* up|strong=\"H6965\"* David|strong=\"H1732\"*’s throne|strong=\"H3678\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* over|strong=\"H5921\"* Judah|strong=\"H3063\"*, from|strong=\"H5921\"* Dan|strong=\"H1835\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Beersheba.”" + }, + { + "verseNum": 11, + "text": "He|strong=\"H3808\"* could|strong=\"H3201\"* not|strong=\"H3808\"* answer|strong=\"H7725\"* Abner another|strong=\"H5750\"* word|strong=\"H1697\"*, because|strong=\"H1697\"* he|strong=\"H3808\"* was|strong=\"H1697\"* afraid|strong=\"H3372\"* of|strong=\"H1697\"* him|strong=\"H7725\"*." + }, + { + "verseNum": 12, + "text": "Abner sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H3478\"* David|strong=\"H1732\"* on|strong=\"H3027\"* his|strong=\"H3605\"* behalf|strong=\"H5973\"*, saying, “Whose|strong=\"H4310\"* is|strong=\"H4310\"* the|strong=\"H3605\"* land?” and|strong=\"H3478\"* saying, “Make|strong=\"H3772\"* your|strong=\"H3605\"* alliance with|strong=\"H5973\"* me|strong=\"H7971\"*, and|strong=\"H3478\"* behold|strong=\"H2009\"*, my|strong=\"H3605\"* hand|strong=\"H3027\"* will|strong=\"H4310\"* be|strong=\"H3027\"* with|strong=\"H5973\"* you|strong=\"H3605\"* to|strong=\"H3478\"* bring|strong=\"H5437\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* around|strong=\"H5437\"* to|strong=\"H3478\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 13, + "text": "David said|strong=\"H1697\"*, “Good|strong=\"H2896\"*. I|strong=\"H3588\"* will|strong=\"H1697\"* make|strong=\"H3772\"* a|strong=\"H3068\"* treaty|strong=\"H1285\"* with|strong=\"H1285\"* you|strong=\"H3588\"*, but|strong=\"H3588\"* one|strong=\"H3808\"* thing|strong=\"H1697\"* I|strong=\"H3588\"* require|strong=\"H7592\"* of|strong=\"H1323\"* you|strong=\"H3588\"*. That|strong=\"H3588\"* is|strong=\"H1697\"*, you|strong=\"H3588\"* will|strong=\"H1697\"* not|strong=\"H3808\"* see|strong=\"H7200\"* my|strong=\"H7200\"* face|strong=\"H6440\"* unless|strong=\"H3588\"* you|strong=\"H3588\"* first|strong=\"H1323\"* bring|strong=\"H1323\"* Michal|strong=\"H4324\"*, Saul|strong=\"H7586\"*’s daughter|strong=\"H1323\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* come|strong=\"H7586\"* to|strong=\"H6440\"* see|strong=\"H7200\"* my|strong=\"H7200\"* face|strong=\"H6440\"*.”" + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* Ishbosheth, Saul|strong=\"H7586\"*’s son|strong=\"H1121\"*, saying, “Deliver|strong=\"H5414\"* me|strong=\"H5414\"* my|strong=\"H5414\"* wife Michal|strong=\"H4324\"*, whom I|strong=\"H5414\"* was|strong=\"H1732\"* given|strong=\"H5414\"* to|strong=\"H7971\"* marry|strong=\"H5414\"* for|strong=\"H7971\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* foreskins|strong=\"H6190\"* of|strong=\"H1121\"* the|strong=\"H5414\"* Philistines|strong=\"H6430\"*.”" + }, + { + "verseNum": 15, + "text": "Ishbosheth sent|strong=\"H7971\"* and|strong=\"H1121\"* took|strong=\"H3947\"* her|strong=\"H7971\"* from|strong=\"H1121\"* her|strong=\"H7971\"* husband, Paltiel|strong=\"H6409\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Laish|strong=\"H3889\"*." + }, + { + "verseNum": 16, + "text": "Her|strong=\"H7725\"* husband went|strong=\"H1980\"* with|strong=\"H1980\"* her|strong=\"H7725\"*, weeping|strong=\"H1058\"* as|strong=\"H5704\"* he|strong=\"H5704\"* went|strong=\"H1980\"*, and|strong=\"H1980\"* followed|strong=\"H1980\"* her|strong=\"H7725\"* to|strong=\"H5704\"* Bahurim. Then|strong=\"H1980\"* Abner said to|strong=\"H5704\"* him|strong=\"H7725\"*, “Go|strong=\"H1980\"*! Return|strong=\"H7725\"*!” and|strong=\"H1980\"* he|strong=\"H5704\"* returned|strong=\"H7725\"*." + }, + { + "verseNum": 17, + "text": "Abner had|strong=\"H1961\"* communication|strong=\"H1961\"* with|strong=\"H5973\"* the|strong=\"H5921\"* elders|strong=\"H2205\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, saying|strong=\"H1697\"*, “In|strong=\"H5921\"* times|strong=\"H8543\"* past|strong=\"H8032\"*, you|strong=\"H5921\"* sought|strong=\"H1245\"* for|strong=\"H5921\"* David|strong=\"H1732\"* to|strong=\"H3478\"* be|strong=\"H1961\"* king|strong=\"H4428\"* over|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"H6258\"* then|strong=\"H6258\"* do|strong=\"H6213\"* it|strong=\"H3588\"*! For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken of|strong=\"H3068\"* David|strong=\"H1732\"*, saying, ‘By|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* my|strong=\"H3605\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* save|strong=\"H3467\"* my|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* out|strong=\"H6213\"* of|strong=\"H3068\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, and|strong=\"H3478\"* out|strong=\"H6213\"* of|strong=\"H3068\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* all|strong=\"H3605\"* their|strong=\"H3605\"* enemies|strong=\"H3027\"*.’”" + }, + { + "verseNum": 19, + "text": "Abner also|strong=\"H1571\"* spoke|strong=\"H1696\"* in|strong=\"H3478\"* the|strong=\"H3605\"* ears of|strong=\"H1004\"* Benjamin|strong=\"H1144\"*; and|strong=\"H3478\"* Abner went|strong=\"H3212\"* also|strong=\"H1571\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* in|strong=\"H3478\"* the|strong=\"H3605\"* ears of|strong=\"H1004\"* David|strong=\"H1732\"* in|strong=\"H3478\"* Hebron|strong=\"H2275\"* all|strong=\"H3605\"* that|strong=\"H3605\"* seemed|strong=\"H5869\"* good|strong=\"H2896\"* to|strong=\"H1696\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* to|strong=\"H1696\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 20, + "text": "So|strong=\"H6213\"* Abner came|strong=\"H1732\"* to|strong=\"H6213\"* David|strong=\"H1732\"* to|strong=\"H6213\"* Hebron|strong=\"H2275\"*, and|strong=\"H6242\"* twenty|strong=\"H6242\"* men|strong=\"H6213\"* with|strong=\"H6213\"* him|strong=\"H6213\"*. David|strong=\"H1732\"* made|strong=\"H6213\"* Abner and|strong=\"H6242\"* the|strong=\"H6213\"* men|strong=\"H6213\"* who|strong=\"H6213\"* were|strong=\"H1732\"* with|strong=\"H6213\"* him|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H4960\"*." + }, + { + "verseNum": 21, + "text": "Abner said to|strong=\"H3478\"* David|strong=\"H1732\"*, “I|strong=\"H5315\"* will|strong=\"H4428\"* arise|strong=\"H6965\"* and|strong=\"H6965\"* go|strong=\"H3212\"*, and|strong=\"H6965\"* will|strong=\"H4428\"* gather|strong=\"H6908\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* my|strong=\"H3605\"* lord the|strong=\"H3605\"* king|strong=\"H4428\"*, that|strong=\"H3605\"* they|strong=\"H5315\"* may|strong=\"H3478\"* make|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* you|strong=\"H3605\"*, and|strong=\"H6965\"* that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H4427\"* all|strong=\"H3605\"* that|strong=\"H3605\"* your|strong=\"H3605\"* soul|strong=\"H5315\"* desires.” David|strong=\"H1732\"* sent|strong=\"H7971\"* Abner away|strong=\"H7971\"*; and|strong=\"H6965\"* he|strong=\"H3605\"* went|strong=\"H3212\"* in|strong=\"H3478\"* peace|strong=\"H7965\"*." + }, + { + "verseNum": 22, + "text": "Behold|strong=\"H2009\"*, David|strong=\"H1732\"*’s servants|strong=\"H5650\"* and|strong=\"H7971\"* Joab|strong=\"H3097\"* came|strong=\"H3212\"* from|strong=\"H7971\"* a|strong=\"H3068\"* raid|strong=\"H1416\"* and|strong=\"H7971\"* brought|strong=\"H3212\"* in|strong=\"H3212\"* a|strong=\"H3068\"* great|strong=\"H7227\"* plunder|strong=\"H7998\"* with|strong=\"H5973\"* them|strong=\"H7971\"*; but|strong=\"H3588\"* Abner was|strong=\"H1732\"* not|strong=\"H3588\"* with|strong=\"H5973\"* David|strong=\"H1732\"* in|strong=\"H3212\"* Hebron|strong=\"H2275\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1732\"* sent|strong=\"H7971\"* him|strong=\"H7971\"* away|strong=\"H7971\"*, and|strong=\"H7971\"* he|strong=\"H3588\"* had|strong=\"H1732\"* gone|strong=\"H3212\"* in|strong=\"H3212\"* peace|strong=\"H7965\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"H7971\"* Joab|strong=\"H3097\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* who|strong=\"H3605\"* was|strong=\"H4428\"* with|strong=\"H3212\"* him|strong=\"H7971\"* had|strong=\"H4428\"* come|strong=\"H3212\"*, they|strong=\"H3605\"* told|strong=\"H5046\"* Joab|strong=\"H3097\"*, “Abner the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"* came|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H1121\"* he|strong=\"H3605\"* has|strong=\"H6635\"* sent|strong=\"H7971\"* him|strong=\"H7971\"* away|strong=\"H7971\"*, and|strong=\"H1121\"* he|strong=\"H3605\"* has|strong=\"H6635\"* gone|strong=\"H3212\"* in|strong=\"H4428\"* peace|strong=\"H7965\"*.”" + }, + { + "verseNum": 24, + "text": "Then|strong=\"H1980\"* Joab|strong=\"H3097\"* came|strong=\"H1980\"* to|strong=\"H1980\"* the|strong=\"H6213\"* king|strong=\"H4428\"* and|strong=\"H1980\"* said, “What|strong=\"H4100\"* have|strong=\"H4428\"* you|strong=\"H7971\"* done|strong=\"H6213\"*? Behold|strong=\"H2009\"*, Abner came|strong=\"H1980\"* to|strong=\"H1980\"* you|strong=\"H7971\"*. Why|strong=\"H4100\"* is|strong=\"H2088\"* it|strong=\"H6213\"* that|strong=\"H4428\"* you|strong=\"H7971\"* have|strong=\"H4428\"* sent|strong=\"H7971\"* him|strong=\"H7971\"* away|strong=\"H7971\"*, and|strong=\"H1980\"* he|strong=\"H6213\"* is|strong=\"H2088\"* already|strong=\"H1980\"* gone|strong=\"H1980\"*?" + }, + { + "verseNum": 25, + "text": "You|strong=\"H3588\"* know|strong=\"H3045\"* Abner the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"*. He|strong=\"H3588\"* came to|strong=\"H6213\"* deceive|strong=\"H6601\"* you|strong=\"H3588\"*, and|strong=\"H1121\"* to|strong=\"H6213\"* know|strong=\"H3045\"* your|strong=\"H3605\"* going|strong=\"H4161\"* out|strong=\"H4161\"* and|strong=\"H1121\"* your|strong=\"H3605\"* coming|strong=\"H4126\"* in|strong=\"H6213\"*, and|strong=\"H1121\"* to|strong=\"H6213\"* know|strong=\"H3045\"* all|strong=\"H3605\"* that|strong=\"H3588\"* you|strong=\"H3588\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 26, + "text": "When|strong=\"H3318\"* Joab|strong=\"H3097\"* had|strong=\"H1732\"* come|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H7725\"* David|strong=\"H1732\"*, he|strong=\"H1732\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* after|strong=\"H3318\"* Abner, and|strong=\"H7971\"* they|strong=\"H3808\"* brought|strong=\"H3318\"* him|strong=\"H7971\"* back|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H7725\"* well|strong=\"H3045\"* of|strong=\"H4397\"* Sirah|strong=\"H5626\"*; but|strong=\"H3808\"* David|strong=\"H1732\"* didn’t know|strong=\"H3045\"* it|strong=\"H7725\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"H7725\"* Abner had|strong=\"H3097\"* returned|strong=\"H7725\"* to|strong=\"H1696\"* Hebron|strong=\"H2275\"*, Joab|strong=\"H3097\"* took|strong=\"H5186\"* him|strong=\"H5221\"* aside|strong=\"H5186\"* into|strong=\"H7725\"* the|strong=\"H5221\"* middle|strong=\"H8432\"* of|strong=\"H8179\"* the|strong=\"H5221\"* gate|strong=\"H8179\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H5221\"* quietly|strong=\"H7987\"*, and|strong=\"H7725\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* there|strong=\"H8033\"* in|strong=\"H4191\"* the|strong=\"H5221\"* body|strong=\"H4191\"*, so|strong=\"H7725\"* that|strong=\"H8179\"* he|strong=\"H8033\"* died|strong=\"H4191\"* for|strong=\"H4191\"* the|strong=\"H5221\"* blood|strong=\"H1818\"* of|strong=\"H8179\"* Asahel|strong=\"H6214\"* his|strong=\"H7725\"* brother." + }, + { + "verseNum": 28, + "text": "Afterward, when|strong=\"H8085\"* David|strong=\"H1732\"* heard|strong=\"H8085\"* it|strong=\"H3651\"*, he|strong=\"H3651\"* said|strong=\"H8085\"*, “I|strong=\"H3651\"* and|strong=\"H1121\"* my|strong=\"H8085\"* kingdom|strong=\"H4467\"* are|strong=\"H1121\"* guiltless|strong=\"H5355\"* before|strong=\"H5973\"* Yahweh|strong=\"H3068\"* forever|strong=\"H5769\"* of|strong=\"H1121\"* the|strong=\"H8085\"* blood|strong=\"H1818\"* of|strong=\"H1121\"* Abner the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"*." + }, + { + "verseNum": 29, + "text": "Let it|strong=\"H5921\"* fall|strong=\"H5307\"* on|strong=\"H5921\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H1004\"* Joab|strong=\"H3097\"* and|strong=\"H1004\"* on|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* father’s house|strong=\"H1004\"*. Let there|strong=\"H3605\"* not|strong=\"H5307\"* fail|strong=\"H3772\"* from|strong=\"H3772\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Joab|strong=\"H3097\"* one|strong=\"H3605\"* who|strong=\"H3605\"* has|strong=\"H2719\"* a|strong=\"H3068\"* discharge|strong=\"H2100\"*, or|strong=\"H7218\"* who|strong=\"H3605\"* is|strong=\"H3605\"* a|strong=\"H3068\"* leper|strong=\"H6879\"*, or|strong=\"H7218\"* who|strong=\"H3605\"* leans on|strong=\"H5921\"* a|strong=\"H3068\"* staff|strong=\"H6418\"*, or|strong=\"H7218\"* who|strong=\"H3605\"* falls|strong=\"H5307\"* by|strong=\"H5921\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, or|strong=\"H7218\"* who|strong=\"H3605\"* lacks|strong=\"H2638\"* bread|strong=\"H3899\"*.”" + }, + { + "verseNum": 30, + "text": "So|strong=\"H4191\"* Joab|strong=\"H3097\"* and|strong=\"H3097\"* Abishai his|strong=\"H5921\"* brother killed|strong=\"H2026\"* Abner, because|strong=\"H5921\"* he|strong=\"H5921\"* had|strong=\"H3097\"* killed|strong=\"H2026\"* their|strong=\"H5921\"* brother Asahel|strong=\"H6214\"* at|strong=\"H5921\"* Gibeon|strong=\"H1391\"* in|strong=\"H5921\"* the|strong=\"H5921\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 31, + "text": "David|strong=\"H1732\"* said to|strong=\"H1980\"* Joab|strong=\"H3097\"* and|strong=\"H1980\"* to|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H1980\"* him|strong=\"H6440\"*, “Tear|strong=\"H7167\"* your|strong=\"H3605\"* clothes, and|strong=\"H1980\"* clothe yourselves|strong=\"H2296\"* with|strong=\"H1980\"* sackcloth|strong=\"H8242\"*, and|strong=\"H1980\"* mourn|strong=\"H5594\"* in|strong=\"H1980\"* front|strong=\"H6440\"* of|strong=\"H4428\"* Abner.” King|strong=\"H4428\"* David|strong=\"H1732\"* followed|strong=\"H1980\"* the|strong=\"H3605\"* bier|strong=\"H4296\"*." + }, + { + "verseNum": 32, + "text": "They|strong=\"H5971\"* buried|strong=\"H6912\"* Abner in|strong=\"H4428\"* Hebron|strong=\"H2275\"*; and|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H3605\"* voice|strong=\"H6963\"* and|strong=\"H4428\"* wept|strong=\"H1058\"* at|strong=\"H4428\"* Abner’s grave|strong=\"H6913\"*; and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* wept|strong=\"H1058\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H4191\"* king|strong=\"H4428\"* lamented|strong=\"H6969\"* for|strong=\"H4191\"* Abner, and|strong=\"H4428\"* said, “Should|strong=\"H4428\"* Abner die|strong=\"H4191\"* as|strong=\"H4428\"* a|strong=\"H3068\"* fool|strong=\"H5036\"* dies|strong=\"H4191\"*?" + }, + { + "verseNum": 34, + "text": "Your|strong=\"H3605\"* hands|strong=\"H3027\"* weren’t bound, and|strong=\"H1121\"* your|strong=\"H3605\"* feet|strong=\"H7272\"* weren’t put|strong=\"H3254\"* into|strong=\"H5307\"* fetters|strong=\"H5178\"*. As|strong=\"H5971\"* a|strong=\"H3068\"* man|strong=\"H1121\"* falls|strong=\"H5307\"* before|strong=\"H6440\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* iniquity|strong=\"H5766\"*, so|strong=\"H3808\"* you|strong=\"H6440\"* fell|strong=\"H5307\"*.”" + }, + { + "verseNum": 35, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* came|strong=\"H5971\"* to|strong=\"H6213\"* urge David|strong=\"H1732\"* to|strong=\"H6213\"* eat|strong=\"H1262\"* bread|strong=\"H3899\"* while|strong=\"H5750\"* it|strong=\"H3588\"* was|strong=\"H1732\"* yet|strong=\"H5750\"* day|strong=\"H3117\"*; but|strong=\"H3588\"* David|strong=\"H1732\"* swore|strong=\"H7650\"*, saying, “God do|strong=\"H6213\"* so|strong=\"H6213\"* to|strong=\"H6213\"* me|strong=\"H6440\"*, and|strong=\"H3117\"* more|strong=\"H3254\"* also|strong=\"H1732\"*, if|strong=\"H3588\"* I|strong=\"H3588\"* taste|strong=\"H2938\"* bread|strong=\"H3899\"* or|strong=\"H3117\"* anything|strong=\"H3605\"* else|strong=\"H5750\"*, until|strong=\"H3588\"* the|strong=\"H3605\"* sun|strong=\"H8121\"* goes|strong=\"H6440\"* down|strong=\"H6440\"*.”" + }, + { + "verseNum": 36, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* took|strong=\"H4428\"* notice|strong=\"H5234\"* of|strong=\"H4428\"* it|strong=\"H6213\"*, and|strong=\"H4428\"* it|strong=\"H6213\"* pleased|strong=\"H3190\"* them|strong=\"H6213\"*, as|strong=\"H6213\"* whatever|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"* did|strong=\"H6213\"* pleased|strong=\"H3190\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 37, + "text": "So|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* and|strong=\"H1121\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* understood|strong=\"H3045\"* that|strong=\"H3588\"* day|strong=\"H3117\"* that|strong=\"H3588\"* it|strong=\"H1931\"* was|strong=\"H1961\"* not|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"* to|strong=\"H3478\"* kill|strong=\"H4191\"* Abner the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"*." + }, + { + "verseNum": 38, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* said to|strong=\"H3478\"* his|strong=\"H3045\"* servants|strong=\"H5650\"*, “Don’t you|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* a|strong=\"H3068\"* prince|strong=\"H8269\"* and|strong=\"H3478\"* a|strong=\"H3068\"* great|strong=\"H1419\"* man|strong=\"H1419\"* has|strong=\"H3478\"* fallen|strong=\"H5307\"* today|strong=\"H3117\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 39, + "text": "I|strong=\"H3117\"* am|strong=\"H3068\"* weak|strong=\"H7390\"* today|strong=\"H3117\"*, though anointed|strong=\"H4886\"* king|strong=\"H4428\"*. These|strong=\"H6213\"* men|strong=\"H1121\"*, the|strong=\"H6213\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* are|strong=\"H3117\"* too|strong=\"H4480\"* hard|strong=\"H7186\"* for|strong=\"H6213\"* me|strong=\"H4480\"*. May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* reward|strong=\"H7999\"* the|strong=\"H6213\"* evildoer|strong=\"H6213\"* according|strong=\"H4480\"* to|strong=\"H3068\"* his|strong=\"H3068\"* wickedness|strong=\"H7451\"*.”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* Saul|strong=\"H7586\"*’s son|strong=\"H1121\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* Abner was|strong=\"H3478\"* dead|strong=\"H4191\"* in|strong=\"H3478\"* Hebron|strong=\"H2275\"*, his|strong=\"H3605\"* hands|strong=\"H3027\"* became|strong=\"H7586\"* feeble|strong=\"H7503\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Israelites|strong=\"H3478\"* were|strong=\"H3478\"* troubled." + }, + { + "verseNum": 2, + "text": "Saul|strong=\"H7586\"*’s son|strong=\"H1121\"* had|strong=\"H1961\"* two|strong=\"H8147\"* men|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1961\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* raiding bands|strong=\"H1416\"*. The|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H1121\"* one|strong=\"H1121\"* was|strong=\"H8034\"* Baanah|strong=\"H1196\"* and|strong=\"H1121\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H5921\"* other|strong=\"H8145\"* Rechab|strong=\"H7394\"*, the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Rimmon|strong=\"H7417\"* the|strong=\"H5921\"* Beerothite, of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* (for|strong=\"H3588\"* Beeroth also|strong=\"H1571\"* is|strong=\"H1571\"* considered|strong=\"H2803\"* a|strong=\"H3068\"* part|strong=\"H1571\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H3117\"* the|strong=\"H3117\"* Beerothites fled|strong=\"H1272\"* to|strong=\"H5704\"* Gittaim|strong=\"H1664\"*, and|strong=\"H3117\"* have|strong=\"H1961\"* lived|strong=\"H1481\"* as|strong=\"H5704\"* foreigners|strong=\"H1481\"* there|strong=\"H8033\"* until|strong=\"H5704\"* today|strong=\"H3117\"*)." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H1961\"* Jonathan|strong=\"H3083\"*, Saul|strong=\"H7586\"*’s son|strong=\"H1121\"*, had|strong=\"H1961\"* a|strong=\"H3068\"* son|strong=\"H1121\"* who|strong=\"H1121\"* was|strong=\"H8034\"* lame|strong=\"H5223\"* in|strong=\"H8141\"* his|strong=\"H5375\"* feet|strong=\"H7272\"*. He|strong=\"H2568\"* was|strong=\"H8034\"* five|strong=\"H2568\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* the|strong=\"H5375\"* news|strong=\"H8052\"* came|strong=\"H1961\"* about|strong=\"H1961\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* Jonathan|strong=\"H3083\"* out|strong=\"H5307\"* of|strong=\"H1121\"* Jezreel|strong=\"H3157\"*; and|strong=\"H1121\"* his|strong=\"H5375\"* nurse picked|strong=\"H5375\"* him|strong=\"H5375\"* up|strong=\"H5375\"* and|strong=\"H1121\"* fled|strong=\"H5127\"*. As|strong=\"H1961\"* she hurried|strong=\"H2648\"* to|strong=\"H1961\"* flee|strong=\"H5127\"*, he|strong=\"H2568\"* fell|strong=\"H5307\"* and|strong=\"H1121\"* became|strong=\"H1961\"* lame|strong=\"H5223\"*. His|strong=\"H5375\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Mephibosheth|strong=\"H4648\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3117\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Rimmon|strong=\"H7417\"* the|strong=\"H3117\"* Beerothite, Rechab|strong=\"H7394\"* and|strong=\"H1121\"* Baanah|strong=\"H1196\"*, went|strong=\"H3212\"* out|strong=\"H3212\"* and|strong=\"H1121\"* came|strong=\"H3212\"* at|strong=\"H1004\"* about|strong=\"H3117\"* the|strong=\"H3117\"* heat|strong=\"H2527\"* of|strong=\"H1121\"* the|strong=\"H3117\"* day|strong=\"H3117\"* to|strong=\"H3212\"* the|strong=\"H3117\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Ishbosheth as|strong=\"H3117\"* he|strong=\"H1931\"* took his|strong=\"H3117\"* rest|strong=\"H7901\"* at|strong=\"H1004\"* noon|strong=\"H6672\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H2007\"* came there|strong=\"H5704\"* into|strong=\"H8432\"* the|strong=\"H3947\"* middle|strong=\"H8432\"* of|strong=\"H1004\"* the|strong=\"H3947\"* house|strong=\"H1004\"* as|strong=\"H5704\"* though they|strong=\"H2007\"* would have|strong=\"H7394\"* fetched|strong=\"H3947\"* wheat|strong=\"H2406\"*, and|strong=\"H1004\"* they|strong=\"H2007\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* in|strong=\"H1004\"* the|strong=\"H3947\"* body; and|strong=\"H1004\"* Rechab|strong=\"H7394\"* and|strong=\"H1004\"* Baanah|strong=\"H1196\"* his|strong=\"H3947\"* brother escaped|strong=\"H4422\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H3947\"* when|strong=\"H7901\"* they|strong=\"H5921\"* came|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H3605\"* house|strong=\"H1004\"* as|strong=\"H1004\"* he|strong=\"H1931\"* lay|strong=\"H7901\"* on|strong=\"H5921\"* his|strong=\"H3605\"* bed|strong=\"H4904\"* in|strong=\"H5921\"* his|strong=\"H3605\"* bedroom|strong=\"H2315\"*, they|strong=\"H5921\"* struck|strong=\"H5221\"* him|strong=\"H5921\"*, killed|strong=\"H5221\"* him|strong=\"H5921\"*, beheaded|strong=\"H5493\"* him|strong=\"H5921\"*, and|strong=\"H3212\"* took|strong=\"H3947\"* his|strong=\"H3605\"* head|strong=\"H7218\"*, and|strong=\"H3212\"* went|strong=\"H3212\"* by|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H1004\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"* all|strong=\"H3605\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H3117\"* brought|strong=\"H5414\"* the|strong=\"H5414\"* head|strong=\"H7218\"* of|strong=\"H1121\"* Ishbosheth to|strong=\"H3068\"* David|strong=\"H1732\"* to|strong=\"H3068\"* Hebron|strong=\"H2275\"*, and|strong=\"H1121\"* said to|strong=\"H3068\"* the|strong=\"H5414\"* king|strong=\"H4428\"*, “Behold|strong=\"H2009\"*, the|strong=\"H5414\"* head|strong=\"H7218\"* of|strong=\"H1121\"* Ishbosheth, the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*, your|strong=\"H3068\"* enemy, who|strong=\"H3068\"* sought|strong=\"H1245\"* your|strong=\"H3068\"* life|strong=\"H5315\"*! Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* avenged|strong=\"H5360\"* my|strong=\"H5414\"* lord|strong=\"H3068\"* the|strong=\"H5414\"* king|strong=\"H4428\"* today|strong=\"H3117\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H5414\"* offspring|strong=\"H2233\"*.+ 4:8 or, seed*”" + }, + { + "verseNum": 9, + "text": "David|strong=\"H1732\"* answered|strong=\"H6030\"* Rechab|strong=\"H7394\"* and|strong=\"H1121\"* Baanah|strong=\"H1196\"* his|strong=\"H3605\"* brother, the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Rimmon|strong=\"H7417\"* the|strong=\"H3605\"* Beerothite, and|strong=\"H1121\"* said|strong=\"H6030\"* to|strong=\"H3068\"* them|strong=\"H6030\"*, “As|strong=\"H5315\"* Yahweh|strong=\"H3068\"* lives|strong=\"H5315\"*, who|strong=\"H3605\"* has|strong=\"H3068\"* redeemed|strong=\"H6299\"* my|strong=\"H3605\"* soul|strong=\"H5315\"* out|strong=\"H3605\"* of|strong=\"H1121\"* all|strong=\"H3605\"* adversity|strong=\"H6869\"*," + }, + { + "verseNum": 10, + "text": "when|strong=\"H3588\"* someone|strong=\"H5414\"* told|strong=\"H5046\"* me|strong=\"H5414\"*, ‘Behold|strong=\"H2009\"*, Saul|strong=\"H7586\"* is|strong=\"H1931\"* dead|strong=\"H4191\"*,’ thinking that|strong=\"H3588\"* he|strong=\"H1931\"* brought|strong=\"H5414\"* good|strong=\"H1319\"* news|strong=\"H1319\"*, I|strong=\"H3588\"* seized him|strong=\"H5414\"* and|strong=\"H5869\"* killed|strong=\"H2026\"* him|strong=\"H5414\"* in|strong=\"H4191\"* Ziklag|strong=\"H6860\"*, which|strong=\"H1931\"* was|strong=\"H1961\"* the|strong=\"H3588\"* reward|strong=\"H1309\"* I|strong=\"H3588\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* for|strong=\"H3588\"* his|strong=\"H5414\"* news|strong=\"H1319\"*." + }, + { + "verseNum": 11, + "text": "How|strong=\"H3588\"* much|strong=\"H3027\"* more|strong=\"H4480\"*, when|strong=\"H3588\"* wicked|strong=\"H7563\"* men|strong=\"H7563\"* have|strong=\"H3027\"* slain|strong=\"H2026\"* a|strong=\"H3068\"* righteous|strong=\"H6662\"* person|strong=\"H1245\"* in|strong=\"H5921\"* his|strong=\"H5921\"* own|strong=\"H3027\"* house|strong=\"H1004\"* on|strong=\"H5921\"* his|strong=\"H5921\"* bed|strong=\"H4904\"*, should|strong=\"H3588\"* I|strong=\"H3588\"* not|strong=\"H3808\"* now|strong=\"H6258\"* require|strong=\"H1245\"* his|strong=\"H5921\"* blood|strong=\"H1818\"* from|strong=\"H4480\"* your|strong=\"H5921\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* rid the|strong=\"H5921\"* earth of|strong=\"H1004\"* you|strong=\"H3588\"*?”" + }, + { + "verseNum": 12, + "text": "David|strong=\"H1732\"* commanded|strong=\"H6680\"* his|strong=\"H3947\"* young|strong=\"H5288\"* men|strong=\"H5288\"*, and|strong=\"H3027\"* they|strong=\"H5921\"* killed|strong=\"H2026\"* them|strong=\"H5921\"*, cut|strong=\"H7112\"* off|strong=\"H7112\"* their|strong=\"H3947\"* hands|strong=\"H3027\"* and|strong=\"H3027\"* their|strong=\"H3947\"* feet|strong=\"H7272\"*, and|strong=\"H3027\"* hanged|strong=\"H8518\"* them|strong=\"H5921\"* up|strong=\"H5921\"* beside|strong=\"H5921\"* the|strong=\"H5921\"* pool|strong=\"H1295\"* in|strong=\"H5921\"* Hebron|strong=\"H2275\"*. But|strong=\"H3947\"* they|strong=\"H5921\"* took|strong=\"H3947\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H3027\"* Ishbosheth and|strong=\"H3027\"* buried|strong=\"H6912\"* it|strong=\"H5921\"* in|strong=\"H5921\"* Abner’s grave|strong=\"H6913\"* in|strong=\"H5921\"* Hebron|strong=\"H2275\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H1732\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* David|strong=\"H1732\"* at|strong=\"H3478\"* Hebron|strong=\"H2275\"* and|strong=\"H3478\"* spoke, saying, “Behold|strong=\"H2005\"*, we|strong=\"H3068\"* are|strong=\"H6106\"* your|strong=\"H3605\"* bone|strong=\"H6106\"* and|strong=\"H3478\"* your|strong=\"H3605\"* flesh|strong=\"H1320\"*." + }, + { + "verseNum": 2, + "text": "In|strong=\"H5921\"* times|strong=\"H1571\"* past|strong=\"H8032\"*, when|strong=\"H1961\"* Saul|strong=\"H7586\"* was|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* us|strong=\"H5921\"*, it|strong=\"H5921\"* was|strong=\"H3068\"* you|strong=\"H5921\"* who|strong=\"H5971\"* led|strong=\"H3318\"* Israel|strong=\"H3478\"* out|strong=\"H3318\"* and|strong=\"H3478\"* in|strong=\"H5921\"*. Yahweh|strong=\"H3068\"* said|strong=\"H3318\"* to|strong=\"H3318\"* you|strong=\"H5921\"*, ‘You|strong=\"H5921\"* will|strong=\"H3068\"* be|strong=\"H1961\"* shepherd|strong=\"H7462\"* of|strong=\"H4428\"* my|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* you|strong=\"H5921\"* will|strong=\"H3068\"* be|strong=\"H1961\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*.’”" + }, + { + "verseNum": 3, + "text": "So|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* to|strong=\"H3478\"* Hebron|strong=\"H2275\"*, and|strong=\"H3478\"* King|strong=\"H4428\"* David|strong=\"H1732\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* them|strong=\"H5921\"* in|strong=\"H5921\"* Hebron|strong=\"H2275\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3478\"* they|strong=\"H3068\"* anointed|strong=\"H4886\"* David|strong=\"H1732\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "David|strong=\"H1732\"* was|strong=\"H1732\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H1732\"* began to|strong=\"H1121\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H1732\"* reigned|strong=\"H4427\"* forty years|strong=\"H8141\"*." + }, + { + "verseNum": 5, + "text": "In|strong=\"H8141\"* Hebron|strong=\"H2275\"* he|strong=\"H3605\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Judah|strong=\"H3063\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* and|strong=\"H3063\"* six|strong=\"H8337\"* months|strong=\"H2320\"*, and|strong=\"H3063\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"* he|strong=\"H3605\"* reigned|strong=\"H4427\"* thirty-three|strong=\"H7970\"* years|strong=\"H8141\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* and|strong=\"H4428\"* his|strong=\"H1732\"* men|strong=\"H5787\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Jerusalem|strong=\"H3389\"* against|strong=\"H3212\"* the|strong=\"H3588\"* Jebusites|strong=\"H2983\"*, the|strong=\"H3588\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* the|strong=\"H3588\"* land, who|strong=\"H3427\"* spoke to|strong=\"H3212\"* David|strong=\"H1732\"*, saying, “The|strong=\"H3588\"* blind|strong=\"H5787\"* and|strong=\"H4428\"* the|strong=\"H3588\"* lame|strong=\"H6452\"* will|strong=\"H4428\"* keep|strong=\"H3427\"* you|strong=\"H3588\"* out|strong=\"H3212\"* of|strong=\"H4428\"* here|strong=\"H2008\"*,” thinking, “David|strong=\"H1732\"* can|strong=\"H3808\"*’t come|strong=\"H3212\"* in|strong=\"H3427\"* here|strong=\"H2008\"*.”" + }, + { + "verseNum": 7, + "text": "Nevertheless David|strong=\"H1732\"* took|strong=\"H3920\"* the|strong=\"H3920\"* stronghold|strong=\"H4686\"* of|strong=\"H5892\"* Zion|strong=\"H6726\"*. This|strong=\"H1931\"* is|strong=\"H1931\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*." + }, + { + "verseNum": 8, + "text": "David|strong=\"H1732\"* said|strong=\"H3651\"* on|strong=\"H5921\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, “Whoever|strong=\"H3605\"* strikes|strong=\"H5221\"* the|strong=\"H3605\"* Jebusites|strong=\"H2983\"*, let|strong=\"H3808\"* him|strong=\"H5921\"* go|strong=\"H1732\"* up|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H3605\"* watercourse and|strong=\"H3117\"* strike|strong=\"H5221\"* those|strong=\"H3605\"* lame|strong=\"H6455\"* and|strong=\"H3117\"* blind|strong=\"H5787\"*, who|strong=\"H3605\"* are|strong=\"H3117\"* hated|strong=\"H8130\"* by|strong=\"H5921\"* David|strong=\"H1732\"*’s soul|strong=\"H5315\"*.” Therefore|strong=\"H3651\"* they|strong=\"H3117\"* say, “The|strong=\"H3605\"* blind|strong=\"H5787\"* and|strong=\"H3117\"* the|strong=\"H3605\"* lame|strong=\"H6455\"* can|strong=\"H3808\"*’t come|strong=\"H5060\"* into|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"*.”" + }, + { + "verseNum": 9, + "text": "David|strong=\"H1732\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H4480\"* stronghold|strong=\"H4686\"*, and|strong=\"H1004\"* called|strong=\"H7121\"* it|strong=\"H7121\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*. David|strong=\"H1732\"* built|strong=\"H1129\"* around|strong=\"H5439\"* from|strong=\"H4480\"* Millo|strong=\"H4407\"* and|strong=\"H1004\"* inward|strong=\"H1004\"*." + }, + { + "verseNum": 10, + "text": "David|strong=\"H1732\"* grew|strong=\"H1980\"* greater|strong=\"H1419\"* and|strong=\"H1980\"* greater|strong=\"H1419\"*, for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, was|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 11, + "text": "Hiram|strong=\"H2438\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Tyre|strong=\"H6865\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* David|strong=\"H1732\"*, with|strong=\"H1004\"* cedar trees|strong=\"H6086\"*, carpenters|strong=\"H2796\"*, and|strong=\"H7971\"* masons|strong=\"H7023\"*; and|strong=\"H7971\"* they|strong=\"H4428\"* built|strong=\"H1129\"* David|strong=\"H1732\"* a|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 12, + "text": "David|strong=\"H1732\"* perceived|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* established|strong=\"H3559\"* him|strong=\"H5921\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3068\"* exalted|strong=\"H5375\"* his|strong=\"H5375\"* kingdom|strong=\"H4467\"* for|strong=\"H3588\"* his|strong=\"H5375\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*’s sake|strong=\"H5668\"*." + }, + { + "verseNum": 13, + "text": "David|strong=\"H1732\"* took|strong=\"H3947\"* more|strong=\"H5750\"* concubines|strong=\"H6370\"* and|strong=\"H1121\"* wives for|strong=\"H1121\"* himself out|strong=\"H3947\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*, after he|strong=\"H1732\"* had|strong=\"H1732\"* come|strong=\"H3205\"* from|strong=\"H1121\"* Hebron|strong=\"H2275\"*; and|strong=\"H1121\"* more|strong=\"H5750\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* daughters|strong=\"H1323\"* were|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H3389\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 14, + "text": "These are|strong=\"H8034\"* the|strong=\"H5416\"* names|strong=\"H8034\"* of|strong=\"H8034\"* those who|strong=\"H3389\"* were|strong=\"H3389\"* born|strong=\"H3209\"* to|strong=\"H3389\"* him|strong=\"H8010\"* in|strong=\"H8034\"* Jerusalem|strong=\"H3389\"*: Shammua|strong=\"H8051\"*, Shobab|strong=\"H7727\"*, Nathan|strong=\"H5416\"*, Solomon|strong=\"H8010\"*," + }, + { + "verseNum": 15, + "text": "Ibhar|strong=\"H2984\"*, Elishua, Nepheg|strong=\"H5298\"*, Japhia|strong=\"H3309\"*," + }, + { + "verseNum": 16, + "text": "Elishama, Eliada, and Eliphelet." + }, + { + "verseNum": 17, + "text": "When|strong=\"H3588\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3478\"* anointed|strong=\"H4886\"* David|strong=\"H1732\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3381\"* seek|strong=\"H1245\"* David|strong=\"H1732\"*, but|strong=\"H3588\"* David|strong=\"H1732\"* heard|strong=\"H8085\"* about|strong=\"H5921\"* it|strong=\"H5921\"* and|strong=\"H3478\"* went|strong=\"H5927\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3605\"* stronghold|strong=\"H4686\"*." + }, + { + "verseNum": 18, + "text": "Now the|strong=\"H5203\"* Philistines|strong=\"H6430\"* had|strong=\"H6430\"* come and|strong=\"H6430\"* spread|strong=\"H5203\"* themselves in|strong=\"H6430\"* the|strong=\"H5203\"* valley|strong=\"H6010\"* of|strong=\"H6010\"* Rephaim|strong=\"H7497\"*." + }, + { + "verseNum": 19, + "text": "David|strong=\"H1732\"* inquired|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying, “Shall|strong=\"H3068\"* I|strong=\"H3588\"* go|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5927\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"*? Will|strong=\"H3068\"* you|strong=\"H3588\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5927\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*?”" + }, + { + "verseNum": 20, + "text": "David|strong=\"H1732\"* came|strong=\"H3068\"* to|strong=\"H3068\"* Baal Perazim, and|strong=\"H3068\"* David|strong=\"H1732\"* struck|strong=\"H5221\"* them|strong=\"H5921\"* there|strong=\"H8033\"*. Then|strong=\"H3651\"* he|strong=\"H1931\"* said|strong=\"H7121\"*, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* broken|strong=\"H6555\"* my|strong=\"H3068\"* enemies before|strong=\"H6440\"* me|strong=\"H6440\"*, like|strong=\"H3651\"* the|strong=\"H6440\"* breach|strong=\"H6556\"* of|strong=\"H3068\"* waters|strong=\"H4325\"*.” Therefore|strong=\"H3651\"* he|strong=\"H1931\"* called|strong=\"H7121\"* the|strong=\"H6440\"* name|strong=\"H8034\"* of|strong=\"H3068\"* that|strong=\"H1931\"* place|strong=\"H4725\"* Baal Perazim.+ 5:20 “Baal Perazim” means “Lord who breaks out”.*" + }, + { + "verseNum": 21, + "text": "They|strong=\"H8033\"* left|strong=\"H5800\"* their|strong=\"H5375\"* images|strong=\"H6091\"* there|strong=\"H8033\"*, and|strong=\"H1732\"* David|strong=\"H1732\"* and|strong=\"H1732\"* his|strong=\"H5375\"* men took|strong=\"H5375\"* them|strong=\"H5375\"* away|strong=\"H5375\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H5927\"* Philistines|strong=\"H6430\"* came|strong=\"H5927\"* up|strong=\"H5927\"* yet|strong=\"H5750\"* again|strong=\"H5750\"* and|strong=\"H5927\"* spread|strong=\"H5203\"* themselves in|strong=\"H5750\"* the|strong=\"H5927\"* valley|strong=\"H6010\"* of|strong=\"H6010\"* Rephaim|strong=\"H7497\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"H3068\"* David|strong=\"H1732\"* inquired|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, he|strong=\"H3068\"* said, “You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H5927\"* up|strong=\"H5927\"*. Circle|strong=\"H5437\"* around|strong=\"H5437\"* behind them|strong=\"H5927\"*, and|strong=\"H3068\"* attack|strong=\"H5927\"* them|strong=\"H5927\"* in|strong=\"H3068\"* front|strong=\"H4136\"* of|strong=\"H3068\"* the|strong=\"H3068\"* mulberry trees|strong=\"H1057\"*." + }, + { + "verseNum": 24, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* hear|strong=\"H8085\"* the|strong=\"H6440\"* sound|strong=\"H6963\"* of|strong=\"H3068\"* marching|strong=\"H6807\"* in|strong=\"H3068\"* the|strong=\"H6440\"* tops|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H6440\"* mulberry trees|strong=\"H1057\"*, then|strong=\"H1961\"* stir yourself up|strong=\"H3318\"*; for|strong=\"H3588\"* then|strong=\"H1961\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* before|strong=\"H6440\"* you|strong=\"H3588\"* to|strong=\"H3318\"* strike|strong=\"H5221\"* the|strong=\"H6440\"* army|strong=\"H4264\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*.”" + }, + { + "verseNum": 25, + "text": "David|strong=\"H1732\"* did|strong=\"H6213\"* so|strong=\"H3651\"*, as|strong=\"H5704\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H5221\"*, and|strong=\"H3068\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"* all|strong=\"H5704\"* the|strong=\"H5221\"* way|strong=\"H3651\"* from|strong=\"H5704\"* Geba|strong=\"H1387\"* to|strong=\"H5704\"* Gezer|strong=\"H1507\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* again|strong=\"H5750\"* gathered|strong=\"H1732\"* together all|strong=\"H3605\"* the|strong=\"H3605\"* chosen men|strong=\"H3605\"* of|strong=\"H3605\"* Israel|strong=\"H3478\"*, thirty|strong=\"H7970\"* thousand." + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* with|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H3068\"* him|strong=\"H7121\"* from|strong=\"H5921\"* Baale Judah|strong=\"H1184\"*, to|strong=\"H3068\"* bring|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* there|strong=\"H8033\"* God|strong=\"H3068\"*’s ark, which|strong=\"H3068\"* is|strong=\"H3068\"* called|strong=\"H7121\"* by|strong=\"H5921\"* the|strong=\"H3605\"* Name|strong=\"H8034\"*, even|strong=\"H3068\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* who|strong=\"H3605\"* sits|strong=\"H3427\"* above|strong=\"H5921\"* the|strong=\"H3605\"* cherubim|strong=\"H3742\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H5375\"* set|strong=\"H5375\"* God’s ark on|strong=\"H7392\"* a|strong=\"H3068\"* new|strong=\"H2319\"* cart|strong=\"H5699\"*, and|strong=\"H1121\"* brought|strong=\"H5375\"* it|strong=\"H5375\"* out of|strong=\"H1121\"* Abinadab’s house|strong=\"H1004\"* that|strong=\"H1121\"* was|strong=\"H1004\"* on|strong=\"H7392\"* the|strong=\"H5375\"* hill|strong=\"H1389\"*; and|strong=\"H1121\"* Uzzah|strong=\"H5798\"* and|strong=\"H1121\"* Ahio, the|strong=\"H5375\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Abinadab, drove|strong=\"H5090\"* the|strong=\"H5375\"* new|strong=\"H2319\"* cart|strong=\"H5699\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H5375\"* brought|strong=\"H5375\"* it|strong=\"H5375\"* out|strong=\"H1980\"* of|strong=\"H1004\"* Abinadab’s house|strong=\"H1004\"* which|strong=\"H1004\"* was|strong=\"H1004\"* in|strong=\"H1980\"* the|strong=\"H6440\"* hill|strong=\"H1389\"*, with|strong=\"H5973\"* God’s ark; and|strong=\"H1980\"* Ahio went|strong=\"H1980\"* before|strong=\"H6440\"* the|strong=\"H6440\"* ark." + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"* and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* played|strong=\"H7832\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* with|strong=\"H1004\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H1004\"* instruments made|strong=\"H1732\"* of|strong=\"H1004\"* cypress|strong=\"H1265\"* wood|strong=\"H6086\"*, with|strong=\"H1004\"* harps|strong=\"H3658\"*, with|strong=\"H1004\"* stringed instruments, with|strong=\"H1004\"* tambourines|strong=\"H8596\"*, with|strong=\"H1004\"* castanets|strong=\"H4517\"*, and|strong=\"H3478\"* with|strong=\"H1004\"* cymbals|strong=\"H6767\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* came to|strong=\"H5704\"* the|strong=\"H3588\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* of|strong=\"H1637\"* Nacon|strong=\"H5225\"*, Uzzah|strong=\"H5798\"* reached|strong=\"H7971\"* for|strong=\"H3588\"* God|strong=\"H7971\"*’s ark and|strong=\"H7971\"* took hold of|strong=\"H1637\"* it|strong=\"H3588\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* cattle|strong=\"H1241\"* stumbled|strong=\"H8058\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H5921\"* Uzzah|strong=\"H5798\"*, and|strong=\"H3068\"* God|strong=\"H3068\"* struck|strong=\"H5221\"* him|strong=\"H5921\"* there|strong=\"H8033\"* for|strong=\"H5921\"* his|strong=\"H3068\"* error|strong=\"H7944\"*; and|strong=\"H3068\"* he|strong=\"H8033\"* died|strong=\"H4191\"* there|strong=\"H8033\"* by|strong=\"H5921\"* God|strong=\"H3068\"*’s ark." + }, + { + "verseNum": 8, + "text": "David|strong=\"H1732\"* was|strong=\"H3068\"* displeased|strong=\"H2734\"* because|strong=\"H5921\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* broken|strong=\"H6555\"* out|strong=\"H5921\"* against|strong=\"H5921\"* Uzzah|strong=\"H5798\"*; and|strong=\"H3068\"* he|strong=\"H1931\"* called|strong=\"H7121\"* that|strong=\"H3117\"* place|strong=\"H4725\"* Perez Uzzah|strong=\"H5798\"*+ 6:8 “Perez Uzzah” means “outbreak against Uzzah”.* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 9, + "text": "David|strong=\"H1732\"* was|strong=\"H3068\"* afraid|strong=\"H3372\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*; and|strong=\"H3068\"* he|strong=\"H1931\"* said, “How could Yahweh|strong=\"H3068\"*’s ark come to|strong=\"H3068\"* me|strong=\"H3372\"*?”" + }, + { + "verseNum": 10, + "text": "So|strong=\"H3808\"* David|strong=\"H1732\"* would|strong=\"H3068\"* not|strong=\"H3808\"* move|strong=\"H5493\"* Yahweh|strong=\"H3068\"*’s ark to|strong=\"H3068\"* be|strong=\"H3808\"* with|strong=\"H1004\"* him|strong=\"H5921\"* in|strong=\"H5921\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; but|strong=\"H3808\"* David|strong=\"H1732\"* carried|strong=\"H3068\"* it|strong=\"H5921\"* aside|strong=\"H5493\"* into|strong=\"H5921\"* Obed-Edom|strong=\"H5654\"* the|strong=\"H5921\"* Gittite|strong=\"H1663\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"*’s ark remained|strong=\"H3427\"* in|strong=\"H3427\"* Obed-Edom|strong=\"H5654\"* the|strong=\"H3605\"* Gittite|strong=\"H1663\"*’s house|strong=\"H1004\"* three|strong=\"H7969\"* months|strong=\"H2320\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* blessed|strong=\"H1288\"* Obed-Edom|strong=\"H5654\"* and|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 12, + "text": "King|strong=\"H4428\"* David|strong=\"H1732\"* was|strong=\"H3068\"* told|strong=\"H5046\"*, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* blessed|strong=\"H1288\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Obed-Edom|strong=\"H5654\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* belongs to|strong=\"H3068\"* him|strong=\"H5046\"*, because|strong=\"H5668\"* of|strong=\"H4428\"* God|strong=\"H3068\"*’s ark.”" + }, + { + "verseNum": 13, + "text": "When|strong=\"H3588\"* those|strong=\"H5375\"* who|strong=\"H3068\"* bore|strong=\"H5375\"* Yahweh|strong=\"H3068\"*’s ark had|strong=\"H3068\"* gone|strong=\"H6805\"* six|strong=\"H8337\"* paces|strong=\"H6806\"*, he|strong=\"H3588\"* sacrificed|strong=\"H2076\"* an|strong=\"H1961\"* ox|strong=\"H7794\"* and|strong=\"H3068\"* a|strong=\"H3068\"* fattened calf." + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* danced|strong=\"H3769\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* might|strong=\"H5797\"*; and|strong=\"H3068\"* David|strong=\"H1732\"* was|strong=\"H3068\"* clothed|strong=\"H2296\"* in|strong=\"H3068\"* a|strong=\"H3068\"* linen ephod." + }, + { + "verseNum": 15, + "text": "So|strong=\"H5927\"* David|strong=\"H1732\"* and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* Yahweh|strong=\"H3068\"*’s ark with|strong=\"H1004\"* shouting|strong=\"H8643\"* and|strong=\"H3478\"* with|strong=\"H1004\"* the|strong=\"H3605\"* sound|strong=\"H6963\"* of|strong=\"H1004\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"*." + }, + { + "verseNum": 16, + "text": "As|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s ark came|strong=\"H1961\"* into|strong=\"H1323\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, Michal|strong=\"H4324\"* the|strong=\"H6440\"* daughter|strong=\"H1323\"* of|strong=\"H4428\"* Saul|strong=\"H7586\"* looked|strong=\"H7200\"* out|strong=\"H8259\"* through|strong=\"H1157\"* the|strong=\"H6440\"* window|strong=\"H2474\"* and|strong=\"H3068\"* saw|strong=\"H7200\"* King|strong=\"H4428\"* David|strong=\"H1732\"* leaping|strong=\"H6339\"* and|strong=\"H3068\"* dancing|strong=\"H3769\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* she|strong=\"H3820\"* despised him|strong=\"H6440\"* in|strong=\"H3068\"* her|strong=\"H7200\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H3068\"* brought|strong=\"H5927\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s ark, and|strong=\"H3068\"* set|strong=\"H3322\"* it|strong=\"H8432\"* in|strong=\"H3068\"* its|strong=\"H5927\"* place|strong=\"H4725\"* in|strong=\"H3068\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H6440\"* tent that|strong=\"H3068\"* David|strong=\"H1732\"* had|strong=\"H3068\"* pitched|strong=\"H5186\"* for|strong=\"H6440\"* it|strong=\"H8432\"*; and|strong=\"H3068\"* David|strong=\"H1732\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H3615\"* David|strong=\"H1732\"* had|strong=\"H3068\"* finished|strong=\"H3615\"* offering|strong=\"H5930\"* the|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H3068\"* the|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, he|strong=\"H3068\"* blessed|strong=\"H1288\"* the|strong=\"H3068\"* people|strong=\"H5971\"* in|strong=\"H3068\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H5704\"* gave to|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, even|strong=\"H5704\"* among|strong=\"H5971\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* multitude|strong=\"H1995\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, both|strong=\"H3605\"* to|strong=\"H5704\"* men|strong=\"H5971\"* and|strong=\"H3478\"* women, to|strong=\"H5704\"* everyone|strong=\"H3605\"* a|strong=\"H3068\"* portion|strong=\"H2505\"* of|strong=\"H1004\"* bread|strong=\"H3899\"*, dates, and|strong=\"H3478\"* raisins. So|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* departed|strong=\"H3212\"*, each|strong=\"H3605\"* to|strong=\"H5704\"* his|strong=\"H3605\"* own|strong=\"H5971\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 20, + "text": "Then|strong=\"H3318\"* David|strong=\"H1732\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* bless|strong=\"H1288\"* his|strong=\"H1732\"* household|strong=\"H1004\"*. Michal|strong=\"H4324\"* the|strong=\"H7725\"* daughter|strong=\"H1323\"* of|strong=\"H4428\"* Saul|strong=\"H7586\"* came|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H7725\"* meet|strong=\"H7125\"* David|strong=\"H1732\"*, and|strong=\"H3478\"* said|strong=\"H3318\"*, “How|strong=\"H4100\"* glorious|strong=\"H3513\"* the|strong=\"H7725\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* was|strong=\"H1732\"* today|strong=\"H3117\"*, who|strong=\"H5650\"* uncovered|strong=\"H1540\"* himself|strong=\"H1540\"* today|strong=\"H3117\"* in|strong=\"H3478\"* the|strong=\"H7725\"* eyes|strong=\"H5869\"* of|strong=\"H4428\"* his|strong=\"H1732\"* servants|strong=\"H5650\"*’ maids, as|strong=\"H3117\"* one|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H7725\"* vain|strong=\"H7386\"* fellows|strong=\"H7386\"* shamelessly|strong=\"H1540\"* uncovers|strong=\"H1540\"* himself|strong=\"H1540\"*!”" + }, + { + "verseNum": 21, + "text": "David|strong=\"H1732\"* said to|strong=\"H3478\"* Michal|strong=\"H4324\"*, “It|strong=\"H5921\"* was|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3605\"* chose me|strong=\"H6440\"* above|strong=\"H5921\"* your|strong=\"H3068\"* father, and|strong=\"H3478\"* above|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, to|strong=\"H3478\"* appoint|strong=\"H6680\"* me|strong=\"H6440\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, over|strong=\"H5921\"* Israel|strong=\"H3478\"*. Therefore|strong=\"H5921\"* I|strong=\"H5921\"* will|strong=\"H3068\"* celebrate|strong=\"H7832\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"H5869\"* will|strong=\"H1961\"* be|strong=\"H1961\"* yet|strong=\"H5750\"* more|strong=\"H5750\"* undignified than|strong=\"H7043\"* this|strong=\"H2063\"*, and|strong=\"H5869\"* will|strong=\"H1961\"* be|strong=\"H1961\"* worthless in|strong=\"H5750\"* my|strong=\"H1961\"* own|strong=\"H1961\"* sight|strong=\"H5869\"*. But|strong=\"H1961\"* the|strong=\"H1961\"* maids of|strong=\"H5869\"* whom|strong=\"H5869\"* you|strong=\"H5973\"* have|strong=\"H1961\"* spoken will|strong=\"H1961\"* honor|strong=\"H3513\"* me|strong=\"H5973\"*.”" + }, + { + "verseNum": 23, + "text": "Michal|strong=\"H4324\"* the|strong=\"H3117\"* daughter|strong=\"H1323\"* of|strong=\"H3117\"* Saul|strong=\"H7586\"* had|strong=\"H1961\"* no|strong=\"H3808\"* child|strong=\"H3206\"* to|strong=\"H5704\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* her|strong=\"H1961\"* death|strong=\"H4194\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* given|strong=\"H5117\"* him|strong=\"H5117\"* rest|strong=\"H5117\"* from|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* enemies all|strong=\"H3605\"* around|strong=\"H5439\"*," + }, + { + "verseNum": 2, + "text": "the|strong=\"H7200\"* king|strong=\"H4428\"* said to|strong=\"H4428\"* Nathan|strong=\"H5416\"* the|strong=\"H7200\"* prophet|strong=\"H5030\"*, “See|strong=\"H7200\"* now|strong=\"H4994\"*, I|strong=\"H7200\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H4428\"* cedar, but|strong=\"H7200\"* God’s ark dwells|strong=\"H3427\"* within|strong=\"H8432\"* curtains|strong=\"H3407\"*.”" + }, + { + "verseNum": 3, + "text": "Nathan|strong=\"H5416\"* said to|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, “Go|strong=\"H3212\"*, do|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 4, + "text": "That|strong=\"H1931\"* same|strong=\"H1931\"* night|strong=\"H3915\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Nathan|strong=\"H5416\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 5, + "text": "“Go|strong=\"H3212\"* and|strong=\"H3068\"* tell my|strong=\"H3068\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Should|strong=\"H3068\"* you|strong=\"H3212\"* build|strong=\"H1129\"* me|strong=\"H5650\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H3068\"* me|strong=\"H5650\"* to|strong=\"H3212\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"*?" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* not|strong=\"H3808\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* house|strong=\"H1004\"* since|strong=\"H3588\"* the|strong=\"H3588\"* day|strong=\"H3117\"* that|strong=\"H3588\"* I|strong=\"H3588\"* brought|strong=\"H5927\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* up|strong=\"H5927\"* out|strong=\"H1980\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, but|strong=\"H3588\"* have|strong=\"H1961\"* moved|strong=\"H1980\"* around|strong=\"H1980\"* in|strong=\"H3427\"* a|strong=\"H3068\"* tent and|strong=\"H1121\"* in|strong=\"H3427\"* a|strong=\"H3068\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H1980\"* all|strong=\"H3605\"* places|strong=\"H1004\"* in|strong=\"H1980\"* which|strong=\"H1697\"* I|strong=\"H1697\"* have|strong=\"H5971\"* walked|strong=\"H1980\"* with|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, did|strong=\"H4100\"* I|strong=\"H1697\"* say|strong=\"H1696\"* a|strong=\"H3068\"* word|strong=\"H1697\"* to|strong=\"H1696\"* anyone|strong=\"H3605\"* from|strong=\"H3478\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* whom|strong=\"H5971\"* I|strong=\"H1697\"* commanded|strong=\"H6680\"* to|strong=\"H1696\"* be|strong=\"H3808\"* shepherd|strong=\"H7462\"* of|strong=\"H1121\"* my|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, saying|strong=\"H1697\"*, ‘Why|strong=\"H4100\"* have|strong=\"H5971\"* you|strong=\"H6680\"* not|strong=\"H3808\"* built|strong=\"H1129\"* me|strong=\"H1696\"* a|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1121\"* cedar?’”’" + }, + { + "verseNum": 8, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* tell my|strong=\"H3068\"* servant|strong=\"H5650\"* David|strong=\"H1732\"* this|strong=\"H3541\"*: ‘Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*, “I|strong=\"H3541\"* took|strong=\"H3947\"* you|strong=\"H5921\"* from|strong=\"H4480\"* the|strong=\"H5921\"* sheep|strong=\"H6629\"* pen, from|strong=\"H4480\"* following the|strong=\"H5921\"* sheep|strong=\"H6629\"*, to|strong=\"H3478\"* be|strong=\"H1961\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* my|strong=\"H3068\"* people|strong=\"H5971\"*, over|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H1980\"* have|strong=\"H1961\"* been|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H6440\"* wherever|strong=\"H3605\"* you|strong=\"H6440\"* went|strong=\"H1980\"*, and|strong=\"H1980\"* have|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* all|strong=\"H3605\"* your|strong=\"H3605\"* enemies from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. I|strong=\"H1980\"* will|strong=\"H1961\"* make|strong=\"H6213\"* you|strong=\"H6440\"* a|strong=\"H3068\"* great|strong=\"H1419\"* name|strong=\"H8034\"*, like|strong=\"H1961\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H6440\"* the|strong=\"H3605\"* great|strong=\"H1419\"* ones|strong=\"H1419\"* who|strong=\"H3605\"* are|strong=\"H6213\"* in|strong=\"H1980\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 10, + "text": "I|strong=\"H7760\"* will|strong=\"H5971\"* appoint|strong=\"H7760\"* a|strong=\"H3068\"* place|strong=\"H4725\"* for|strong=\"H8478\"* my|strong=\"H7760\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* will|strong=\"H5971\"* plant|strong=\"H5193\"* them|strong=\"H7760\"*, that|strong=\"H5971\"* they|strong=\"H3808\"* may|strong=\"H5971\"* dwell|strong=\"H7931\"* in|strong=\"H3478\"* their|strong=\"H7760\"* own|strong=\"H5971\"* place|strong=\"H4725\"* and|strong=\"H1121\"* be|strong=\"H3808\"* moved|strong=\"H7264\"* no|strong=\"H3808\"* more|strong=\"H3254\"*. The|strong=\"H7760\"* children|strong=\"H1121\"* of|strong=\"H1121\"* wickedness|strong=\"H5766\"* will|strong=\"H5971\"* not|strong=\"H3808\"* afflict|strong=\"H6031\"* them|strong=\"H7760\"* any|strong=\"H5750\"* more|strong=\"H3254\"*, as|strong=\"H5971\"* at|strong=\"H3478\"* the|strong=\"H7760\"* first|strong=\"H7223\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H3478\"* as|strong=\"H3117\"* from|strong=\"H4480\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3588\"* I|strong=\"H3588\"* commanded|strong=\"H6680\"* judges|strong=\"H8199\"* to|strong=\"H3478\"* be|strong=\"H3068\"* over|strong=\"H5921\"* my|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* cause|strong=\"H6213\"* you|strong=\"H3588\"* to|strong=\"H3478\"* rest|strong=\"H5117\"* from|strong=\"H4480\"* all|strong=\"H3605\"* your|strong=\"H3068\"* enemies. Moreover|strong=\"H3588\"* Yahweh|strong=\"H3068\"* tells|strong=\"H5046\"* you|strong=\"H3588\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* make|strong=\"H6213\"* you|strong=\"H3588\"* a|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"H3588\"* your|strong=\"H3588\"* days|strong=\"H3117\"* are|strong=\"H3117\"* fulfilled|strong=\"H4390\"* and|strong=\"H6965\"* you|strong=\"H3588\"* sleep|strong=\"H7901\"* with|strong=\"H4390\"* your|strong=\"H3588\"* fathers, I|strong=\"H3588\"* will|strong=\"H2233\"* set|strong=\"H6965\"* up|strong=\"H6965\"* your|strong=\"H3588\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* you|strong=\"H3588\"*, who|strong=\"H3588\"* will|strong=\"H2233\"* proceed|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* your|strong=\"H3588\"* body|strong=\"H4578\"*, and|strong=\"H6965\"* I|strong=\"H3588\"* will|strong=\"H2233\"* establish|strong=\"H6965\"* his|strong=\"H3559\"* kingdom|strong=\"H4467\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1931\"* will|strong=\"H1004\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H5704\"* my|strong=\"H3559\"* name|strong=\"H8034\"*, and|strong=\"H1004\"* I|strong=\"H5704\"* will|strong=\"H1004\"* establish|strong=\"H3559\"* the|strong=\"H1129\"* throne|strong=\"H3678\"* of|strong=\"H1004\"* his|strong=\"H3559\"* kingdom|strong=\"H4467\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H1121\"* will|strong=\"H1961\"* be|strong=\"H1961\"* his|strong=\"H1961\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H1961\"* son|strong=\"H1121\"*. If|strong=\"H1961\"* he|strong=\"H1931\"* commits|strong=\"H5753\"* iniquity|strong=\"H5753\"*, I|strong=\"H1121\"* will|strong=\"H1961\"* chasten|strong=\"H3198\"* him|strong=\"H1931\"* with|strong=\"H3198\"* the|strong=\"H1961\"* rod|strong=\"H7626\"* of|strong=\"H1121\"* men|strong=\"H1121\"* and|strong=\"H1121\"* with|strong=\"H3198\"* the|strong=\"H1961\"* stripes|strong=\"H5061\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"*;" + }, + { + "verseNum": 15, + "text": "but|strong=\"H3808\"* my|strong=\"H5493\"* loving kindness|strong=\"H2617\"* will|strong=\"H3808\"* not|strong=\"H3808\"* depart|strong=\"H5493\"* from|strong=\"H4480\"* him|strong=\"H6440\"*, as|strong=\"H6440\"* I|strong=\"H3808\"* took|strong=\"H5493\"* it|strong=\"H6440\"* from|strong=\"H4480\"* Saul|strong=\"H7586\"*, whom|strong=\"H6440\"* I|strong=\"H3808\"* put|strong=\"H5493\"* away|strong=\"H5493\"* before|strong=\"H6440\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 16, + "text": "Your|strong=\"H6440\"* house|strong=\"H1004\"* and|strong=\"H1004\"* your|strong=\"H6440\"* kingdom|strong=\"H4467\"* will|strong=\"H1961\"* be|strong=\"H1961\"* made|strong=\"H3559\"* sure|strong=\"H3559\"* forever|strong=\"H5769\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. Your|strong=\"H6440\"* throne|strong=\"H3678\"* will|strong=\"H1961\"* be|strong=\"H1961\"* established|strong=\"H3559\"* forever|strong=\"H5769\"*.”’”" + }, + { + "verseNum": 17, + "text": "Nathan|strong=\"H5416\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* David|strong=\"H1732\"* all|strong=\"H3605\"* these|strong=\"H2088\"* words|strong=\"H1697\"*, and|strong=\"H1732\"* according to|strong=\"H1696\"* all|strong=\"H3605\"* this|strong=\"H2088\"* vision|strong=\"H2384\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H4428\"* David|strong=\"H1732\"* the|strong=\"H6440\"* king|strong=\"H4428\"* went|strong=\"H1732\"* in|strong=\"H3427\"* and|strong=\"H3068\"* sat|strong=\"H3427\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* he|strong=\"H3588\"* said, “Who|strong=\"H4310\"* am|strong=\"H3068\"* I|strong=\"H3588\"*, Lord|strong=\"H3068\"*+ 7:18 The word translated “Lord” is “Adonai.”* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* what|strong=\"H4310\"* is|strong=\"H3068\"* my|strong=\"H3068\"* house|strong=\"H1004\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* brought|strong=\"H3068\"* me|strong=\"H6440\"* this|strong=\"H3588\"* far|strong=\"H5704\"*?" + }, + { + "verseNum": 19, + "text": "This|strong=\"H2063\"* was|strong=\"H1004\"* yet|strong=\"H5750\"* a|strong=\"H3068\"* small|strong=\"H6994\"* thing|strong=\"H6994\"* in|strong=\"H1004\"* your|strong=\"H1571\"* eyes|strong=\"H5869\"*, Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, but|strong=\"H1696\"* you|strong=\"H1696\"* have|strong=\"H5869\"* spoken|strong=\"H1696\"* also|strong=\"H1571\"* of|strong=\"H1004\"* your|strong=\"H1571\"* servant|strong=\"H5650\"*’s house|strong=\"H1004\"* for|strong=\"H1004\"* a|strong=\"H3068\"* great|strong=\"H7350\"* while|strong=\"H5750\"* to|strong=\"H1696\"* come|strong=\"H7350\"*; and|strong=\"H1004\"* this|strong=\"H2063\"* among men|strong=\"H5650\"*, Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 20, + "text": "What|strong=\"H4100\"* more|strong=\"H3254\"* can|strong=\"H4100\"* David|strong=\"H1732\"* say|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3045\"*? For|strong=\"H5650\"* you|strong=\"H3045\"* know|strong=\"H3045\"* your|strong=\"H3045\"* servant|strong=\"H5650\"*, Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"H6213\"* your|strong=\"H3605\"* word|strong=\"H1697\"*’s sake|strong=\"H5668\"*, and|strong=\"H5650\"* according to|strong=\"H6213\"* your|strong=\"H3605\"* own heart|strong=\"H3820\"*, you|strong=\"H3605\"* have|strong=\"H3045\"* worked|strong=\"H6213\"* all|strong=\"H3605\"* this|strong=\"H2063\"* greatness|strong=\"H1420\"*, to|strong=\"H6213\"* make|strong=\"H6213\"* your|strong=\"H3605\"* servant|strong=\"H5650\"* know|strong=\"H3045\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 22, + "text": "Therefore|strong=\"H3651\"* you|strong=\"H3588\"* are great|strong=\"H1431\"*, Yahweh|strong=\"H3068\"* God|strong=\"H3069\"*. For|strong=\"H3588\"* there|strong=\"H3605\"* is|strong=\"H3651\"* no|strong=\"H3605\"* one|strong=\"H3605\"* like|strong=\"H3644\"* you|strong=\"H3588\"*, neither is|strong=\"H3651\"* there|strong=\"H3605\"* any|strong=\"H3605\"* God|strong=\"H3069\"* besides|strong=\"H2108\"* you|strong=\"H3588\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3605\"* heard|strong=\"H8085\"* with|strong=\"H5921\"* our|strong=\"H3605\"* ears." + }, + { + "verseNum": 23, + "text": "What|strong=\"H4310\"* one|strong=\"H6213\"* nation|strong=\"H1471\"* in|strong=\"H1980\"* the|strong=\"H6440\"* earth is|strong=\"H4310\"* like|strong=\"H3478\"* your|strong=\"H7760\"* people|strong=\"H5971\"*, even|strong=\"H6213\"* like|strong=\"H3478\"* Israel|strong=\"H3478\"*, whom|strong=\"H4310\"* God|strong=\"H4310\"* went|strong=\"H1980\"* to|strong=\"H1980\"* redeem|strong=\"H6299\"* to|strong=\"H1980\"* himself|strong=\"H6213\"* for|strong=\"H6213\"* a|strong=\"H3068\"* people|strong=\"H5971\"*, and|strong=\"H1980\"* to|strong=\"H1980\"* make|strong=\"H6213\"* himself|strong=\"H6213\"* a|strong=\"H3068\"* name|strong=\"H8034\"*, and|strong=\"H1980\"* to|strong=\"H1980\"* do|strong=\"H6213\"* great|strong=\"H6213\"* things|strong=\"H3372\"* for|strong=\"H6213\"* you|strong=\"H6440\"*, and|strong=\"H1980\"* awesome|strong=\"H3372\"* things|strong=\"H3372\"* for|strong=\"H6213\"* your|strong=\"H7760\"* land|strong=\"H6440\"*, before|strong=\"H6440\"* your|strong=\"H7760\"* people|strong=\"H5971\"*, whom|strong=\"H4310\"* you|strong=\"H6440\"* redeemed|strong=\"H6299\"* to|strong=\"H1980\"* yourself|strong=\"H6213\"* out|strong=\"H6213\"* of|strong=\"H6440\"* Egypt|strong=\"H4714\"*, from|strong=\"H6440\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* and|strong=\"H1980\"* their|strong=\"H7760\"* gods|strong=\"H1980\"*?" + }, + { + "verseNum": 24, + "text": "You|strong=\"H5704\"* established|strong=\"H3559\"* for|strong=\"H5704\"* yourself|strong=\"H3559\"* your|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* to|strong=\"H5704\"* be|strong=\"H1961\"* your|strong=\"H3068\"* people|strong=\"H5971\"* forever|strong=\"H5769\"*; and|strong=\"H3478\"* you|strong=\"H5704\"*, Yahweh|strong=\"H3068\"*, became|strong=\"H1961\"* their|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 25, + "text": "“Now|strong=\"H6258\"*, Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*, the|strong=\"H5921\"* word|strong=\"H1697\"* that|strong=\"H3068\"* you|strong=\"H5921\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* concerning|strong=\"H5921\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*, and|strong=\"H6965\"* concerning|strong=\"H5921\"* his|strong=\"H3068\"* house|strong=\"H1004\"*, confirm|strong=\"H6965\"* it|strong=\"H5921\"* forever|strong=\"H5769\"*, and|strong=\"H6965\"* do|strong=\"H6213\"* as|strong=\"H5704\"* you|strong=\"H5921\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 26, + "text": "Let|strong=\"H1961\"* your|strong=\"H3068\"* name|strong=\"H8034\"* be|strong=\"H1961\"* magnified|strong=\"H1431\"* forever|strong=\"H5769\"*, saying, ‘Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* is|strong=\"H3068\"* God|strong=\"H3068\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* David|strong=\"H1732\"* will|strong=\"H3068\"* be|strong=\"H1961\"* established|strong=\"H3559\"* before|strong=\"H6440\"* you|strong=\"H6440\"*.’" + }, + { + "verseNum": 27, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, have|strong=\"H3068\"* revealed|strong=\"H1540\"* to|strong=\"H3478\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*, saying, ‘I|strong=\"H3588\"* will|strong=\"H3068\"* build|strong=\"H1129\"* you|strong=\"H3588\"* a|strong=\"H3068\"* house|strong=\"H1004\"*.’ Therefore|strong=\"H3651\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* has|strong=\"H3068\"* found|strong=\"H4672\"* in|strong=\"H5921\"* his|strong=\"H3068\"* heart|strong=\"H3820\"* to|strong=\"H3478\"* pray|strong=\"H6419\"* this|strong=\"H2063\"* prayer|strong=\"H8605\"* to|strong=\"H3478\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 28, + "text": "“Now|strong=\"H6258\"*, O|strong=\"H3068\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, you|strong=\"H1696\"* are|strong=\"H1697\"* God|strong=\"H3069\"*, and|strong=\"H5650\"* your|strong=\"H1961\"* words|strong=\"H1697\"* are|strong=\"H1697\"* truth, and|strong=\"H5650\"* you|strong=\"H1696\"* have|strong=\"H1961\"* promised|strong=\"H1696\"* this|strong=\"H2063\"* good|strong=\"H2896\"* thing|strong=\"H1697\"* to|strong=\"H1696\"* your|strong=\"H1961\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 29, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, let|strong=\"H6258\"* it|strong=\"H3588\"* please|strong=\"H2974\"* you|strong=\"H3588\"* to|strong=\"H1696\"* bless|strong=\"H1288\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* your|strong=\"H6440\"* servant|strong=\"H5650\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* may|strong=\"H1961\"* continue|strong=\"H1961\"* forever|strong=\"H5769\"* before|strong=\"H6440\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* you|strong=\"H3588\"*, Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, have|strong=\"H1961\"* spoken|strong=\"H1696\"* it|strong=\"H3588\"*. Let|strong=\"H6258\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* your|strong=\"H6440\"* servant|strong=\"H5650\"* be|strong=\"H1961\"* blessed|strong=\"H1288\"* forever|strong=\"H5769\"* with|strong=\"H1004\"* your|strong=\"H6440\"* blessing|strong=\"H1293\"*.”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* this|strong=\"H3651\"*, David|strong=\"H1732\"* struck|strong=\"H5221\"* the|strong=\"H3947\"* Philistines|strong=\"H6430\"* and|strong=\"H3027\"* subdued|strong=\"H3665\"* them|strong=\"H5221\"*; and|strong=\"H3027\"* David|strong=\"H1732\"* took|strong=\"H3947\"* the|strong=\"H3947\"* bridle of|strong=\"H3027\"* the|strong=\"H3947\"* mother city out|strong=\"H3947\"* of|strong=\"H3027\"* the|strong=\"H3947\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3947\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H1732\"* defeated|strong=\"H5221\"* Moab|strong=\"H4124\"*, and|strong=\"H1732\"* measured|strong=\"H4058\"* them|strong=\"H5221\"* with|strong=\"H7901\"* the|strong=\"H5221\"* line|strong=\"H2256\"*, making them|strong=\"H5221\"* to|strong=\"H4191\"* lie|strong=\"H7901\"* down|strong=\"H7901\"* on|strong=\"H1961\"* the|strong=\"H5221\"* ground; and|strong=\"H1732\"* he|strong=\"H1732\"* measured|strong=\"H4058\"* two|strong=\"H8147\"* lines|strong=\"H2256\"* to|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*, and|strong=\"H1732\"* one|strong=\"H2421\"* full|strong=\"H4393\"* line|strong=\"H2256\"* to|strong=\"H4191\"* keep|strong=\"H2421\"* alive|strong=\"H2421\"*. The|strong=\"H5221\"* Moabites|strong=\"H4124\"* became|strong=\"H1961\"* servants|strong=\"H5650\"* to|strong=\"H4191\"* David|strong=\"H1732\"*, and|strong=\"H1732\"* brought|strong=\"H5375\"* tribute|strong=\"H4503\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* also|strong=\"H1732\"* struck|strong=\"H5221\"* Hadadezer|strong=\"H1909\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Rehob|strong=\"H7340\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Zobah|strong=\"H6678\"*, as|strong=\"H1121\"* he|strong=\"H1732\"* went|strong=\"H3212\"* to|strong=\"H7725\"* recover|strong=\"H7725\"* his|strong=\"H1732\"* dominion|strong=\"H3027\"* at|strong=\"H1732\"* the|strong=\"H5221\"* River|strong=\"H5104\"*." + }, + { + "verseNum": 4, + "text": "David|strong=\"H1732\"* took|strong=\"H3920\"* from|strong=\"H4480\"* him|strong=\"H3605\"* one|strong=\"H3605\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* horsemen|strong=\"H6571\"* and|strong=\"H3967\"* twenty|strong=\"H6242\"* thousand footmen|strong=\"H7273\"*. David|strong=\"H1732\"* hamstrung the|strong=\"H3605\"* chariot|strong=\"H7393\"* horses|strong=\"H6571\"*, but|strong=\"H3498\"* reserved|strong=\"H3498\"* enough|strong=\"H3605\"* of|strong=\"H4480\"* them|strong=\"H4480\"* for|strong=\"H3605\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* chariots|strong=\"H7393\"*." + }, + { + "verseNum": 5, + "text": "When the|strong=\"H5221\"* Syrians of|strong=\"H4428\"* Damascus|strong=\"H1834\"* came|strong=\"H4428\"* to|strong=\"H4428\"* help|strong=\"H5826\"* Hadadezer|strong=\"H1909\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Zobah|strong=\"H6678\"*, David|strong=\"H1732\"* struck|strong=\"H5221\"* twenty|strong=\"H6242\"* two|strong=\"H8147\"* thousand men|strong=\"H8147\"* of|strong=\"H4428\"* the|strong=\"H5221\"* Syrians." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H1961\"* David|strong=\"H1732\"* put|strong=\"H7760\"* garrisons|strong=\"H5333\"* in|strong=\"H1980\"* Syria of|strong=\"H3068\"* Damascus|strong=\"H1834\"*; and|strong=\"H1980\"* the|strong=\"H3605\"* Syrians became|strong=\"H1961\"* servants|strong=\"H5650\"* to|strong=\"H1980\"* David|strong=\"H1732\"*, and|strong=\"H1980\"* brought|strong=\"H5375\"* tribute|strong=\"H4503\"*. Yahweh|strong=\"H3068\"* gave|strong=\"H7760\"* victory|strong=\"H3467\"* to|strong=\"H1980\"* David|strong=\"H1732\"* wherever|strong=\"H3605\"* he|strong=\"H3068\"* went|strong=\"H1980\"*." + }, + { + "verseNum": 7, + "text": "David|strong=\"H1732\"* took|strong=\"H3947\"* the|strong=\"H3947\"* shields|strong=\"H7982\"* of|strong=\"H5650\"* gold|strong=\"H2091\"* that|strong=\"H1732\"* were|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H3947\"* servants|strong=\"H5650\"* of|strong=\"H5650\"* Hadadezer|strong=\"H1909\"*, and|strong=\"H2091\"* brought|strong=\"H3947\"* them|strong=\"H3947\"* to|strong=\"H1961\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 8, + "text": "From|strong=\"H3947\"* Betah and|strong=\"H4428\"* from|strong=\"H3947\"* Berothai|strong=\"H1268\"*, cities|strong=\"H5892\"* of|strong=\"H4428\"* Hadadezer|strong=\"H1909\"*, King|strong=\"H4428\"* David|strong=\"H1732\"* took|strong=\"H3947\"* a|strong=\"H3068\"* great|strong=\"H3966\"* quantity of|strong=\"H4428\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"H3588\"* Toi|strong=\"H8583\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Hamath|strong=\"H2574\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* David|strong=\"H1732\"* had|strong=\"H1732\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H2426\"* of|strong=\"H4428\"* Hadadezer|strong=\"H1909\"*," + }, + { + "verseNum": 10, + "text": "then|strong=\"H1961\"* Toi|strong=\"H8583\"* sent|strong=\"H7971\"* Joram|strong=\"H3141\"* his|strong=\"H7971\"* son|strong=\"H1121\"* to|strong=\"H7971\"* King|strong=\"H4428\"* David|strong=\"H1732\"* to|strong=\"H7971\"* greet|strong=\"H7592\"* him|strong=\"H5921\"* and|strong=\"H1121\"* to|strong=\"H7971\"* bless|strong=\"H1288\"* him|strong=\"H5921\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1961\"* fought|strong=\"H3898\"* against|strong=\"H5921\"* Hadadezer|strong=\"H1909\"* and|strong=\"H1121\"* struck|strong=\"H5221\"* him|strong=\"H5921\"*; for|strong=\"H3588\"* Hadadezer|strong=\"H1909\"* had|strong=\"H1961\"* wars|strong=\"H4421\"* with|strong=\"H5921\"* Toi|strong=\"H8583\"*. Joram|strong=\"H3141\"* brought|strong=\"H1961\"* with|strong=\"H5921\"* him|strong=\"H5921\"* vessels|strong=\"H3627\"* of|strong=\"H1121\"* silver|strong=\"H3701\"*, vessels|strong=\"H3627\"* of|strong=\"H1121\"* gold|strong=\"H2091\"*, and|strong=\"H1121\"* vessels|strong=\"H3627\"* of|strong=\"H1121\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 11, + "text": "King|strong=\"H4428\"* David|strong=\"H1732\"* also|strong=\"H1571\"* dedicated|strong=\"H6942\"* these|strong=\"H3605\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, with|strong=\"H5973\"* the|strong=\"H3605\"* silver|strong=\"H3701\"* and|strong=\"H3068\"* gold|strong=\"H2091\"* that|strong=\"H3605\"* he|strong=\"H3068\"* dedicated|strong=\"H6942\"* of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* which|strong=\"H3068\"* he|strong=\"H3068\"* subdued|strong=\"H3533\"*—" + }, + { + "verseNum": 12, + "text": "of|strong=\"H1121\"* Syria, of|strong=\"H1121\"* Moab|strong=\"H4124\"*, of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, of|strong=\"H1121\"* the|strong=\"H1121\"* Philistines|strong=\"H6430\"*, of|strong=\"H1121\"* Amalek|strong=\"H6002\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* plunder|strong=\"H7998\"* of|strong=\"H1121\"* Hadadezer|strong=\"H1909\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* Rehob|strong=\"H7340\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Zobah|strong=\"H6678\"*." + }, + { + "verseNum": 13, + "text": "David|strong=\"H1732\"* earned a|strong=\"H3068\"* reputation|strong=\"H8034\"* when|strong=\"H7725\"* he|strong=\"H6213\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* striking|strong=\"H5221\"* down|strong=\"H5221\"* eighteen|strong=\"H8083\"* thousand men|strong=\"H6213\"* of|strong=\"H8034\"* the|strong=\"H5221\"* Syrians in|strong=\"H6213\"* the|strong=\"H5221\"* Valley|strong=\"H1516\"* of|strong=\"H8034\"* Salt|strong=\"H4417\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3068\"* put|strong=\"H7760\"* garrisons|strong=\"H5333\"* in|strong=\"H1980\"* Edom. Throughout|strong=\"H3605\"* all|strong=\"H3605\"* Edom, he|strong=\"H3068\"* put|strong=\"H7760\"* garrisons|strong=\"H5333\"*, and|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Edomites became|strong=\"H1961\"* servants|strong=\"H5650\"* to|strong=\"H1980\"* David|strong=\"H1732\"*. Yahweh|strong=\"H3068\"* gave|strong=\"H7760\"* victory|strong=\"H3467\"* to|strong=\"H1980\"* David|strong=\"H1732\"* wherever|strong=\"H3605\"* he|strong=\"H3068\"* went|strong=\"H1980\"*." + }, + { + "verseNum": 15, + "text": "David|strong=\"H1732\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* David|strong=\"H1732\"* executed|strong=\"H6213\"* justice|strong=\"H4941\"* and|strong=\"H3478\"* righteousness|strong=\"H6666\"* for|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 16, + "text": "Joab|strong=\"H3097\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"*, Jehoshaphat|strong=\"H3092\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahilud was|strong=\"H1121\"* recorder|strong=\"H2142\"*," + }, + { + "verseNum": 17, + "text": "Zadok|strong=\"H6659\"* the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub and|strong=\"H1121\"* Ahimelech the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abiathar were|strong=\"H1121\"* priests|strong=\"H3548\"*, Seraiah|strong=\"H8304\"* was|strong=\"H1121\"* scribe|strong=\"H5608\"*," + }, + { + "verseNum": 18, + "text": "Benaiah|strong=\"H1141\"* the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* was|strong=\"H1961\"* over|strong=\"H1732\"* the|strong=\"H1961\"* Cherethites|strong=\"H3774\"* and|strong=\"H1121\"* the|strong=\"H1961\"* Pelethites|strong=\"H6432\"*; and|strong=\"H1121\"* David|strong=\"H1732\"*’s sons|strong=\"H1121\"* were|strong=\"H1961\"* chief|strong=\"H3548\"* ministers|strong=\"H3548\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* said, “Is|strong=\"H3426\"* there|strong=\"H3426\"* yet|strong=\"H5750\"* any|strong=\"H5750\"* who|strong=\"H3588\"* is|strong=\"H3426\"* left|strong=\"H3498\"* of|strong=\"H1004\"* Saul|strong=\"H7586\"*’s house|strong=\"H1004\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H6213\"* show|strong=\"H6213\"* him|strong=\"H6213\"* kindness|strong=\"H2617\"* for|strong=\"H3588\"* Jonathan|strong=\"H3083\"*’s sake|strong=\"H5668\"*?”" + }, + { + "verseNum": 2, + "text": "There|strong=\"H8034\"* was|strong=\"H8034\"* of|strong=\"H4428\"* Saul|strong=\"H7586\"*’s house|strong=\"H1004\"* a|strong=\"H3068\"* servant|strong=\"H5650\"* whose|strong=\"H5650\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Ziba|strong=\"H6717\"*, and|strong=\"H4428\"* they|strong=\"H7586\"* called|strong=\"H7121\"* him|strong=\"H7121\"* to|strong=\"H1004\"* David|strong=\"H1732\"*; and|strong=\"H4428\"* the|strong=\"H7121\"* king|strong=\"H4428\"* said|strong=\"H7121\"* to|strong=\"H1004\"* him|strong=\"H7121\"*, “Are|strong=\"H5650\"* you|strong=\"H7121\"* Ziba|strong=\"H6717\"*?”" + }, + { + "verseNum": 3, + "text": "The|strong=\"H6213\"* king|strong=\"H4428\"* said, “Is|strong=\"H2617\"* there not|strong=\"H6213\"* yet|strong=\"H5750\"* any|strong=\"H5750\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*’s house|strong=\"H1004\"*, that|strong=\"H4428\"* I|strong=\"H1121\"* may|strong=\"H4428\"* show|strong=\"H6213\"* the|strong=\"H6213\"* kindness|strong=\"H2617\"* of|strong=\"H1121\"* God to|strong=\"H6213\"* him|strong=\"H6213\"*?”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H2009\"* king|strong=\"H4428\"* said to|strong=\"H1121\"* him|strong=\"H1931\"*, “Where|strong=\"H1004\"* is|strong=\"H1931\"* he|strong=\"H1931\"*?”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H3947\"* King|strong=\"H4428\"* David|strong=\"H1732\"* sent|strong=\"H7971\"* and|strong=\"H1121\"* brought|strong=\"H3947\"* him|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H1121\"* the|strong=\"H3947\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammiel|strong=\"H5988\"*, from|strong=\"H1121\"* Lo Debar." + }, + { + "verseNum": 6, + "text": "Mephibosheth|strong=\"H4648\"*, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jonathan|strong=\"H3083\"*, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*, came|strong=\"H7586\"* to|strong=\"H5921\"* David|strong=\"H1732\"*, fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H1732\"* face|strong=\"H6440\"*, and|strong=\"H1121\"* showed respect|strong=\"H5921\"*. David|strong=\"H1732\"* said, “Mephibosheth|strong=\"H4648\"*?”" + }, + { + "verseNum": 7, + "text": "David|strong=\"H1732\"* said to|strong=\"H7725\"* him|strong=\"H5921\"*, “Don’t be|strong=\"H3372\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H7704\"* surely|strong=\"H3588\"* show|strong=\"H6213\"* you|strong=\"H3588\"* kindness|strong=\"H2617\"* for|strong=\"H3588\"* Jonathan|strong=\"H3083\"* your|strong=\"H3605\"* father’s sake|strong=\"H5668\"*, and|strong=\"H7725\"* will|strong=\"H7704\"* restore|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H7704\"* of|strong=\"H7704\"* Saul|strong=\"H7586\"* your|strong=\"H3605\"* father. You|strong=\"H3588\"* will|strong=\"H7704\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* at|strong=\"H5921\"* my|strong=\"H3605\"* table|strong=\"H7979\"* continually|strong=\"H8548\"*.”" + }, + { + "verseNum": 8, + "text": "He|strong=\"H3588\"* bowed|strong=\"H7812\"* down|strong=\"H7812\"*, and|strong=\"H5650\"* said, “What|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H3588\"* servant|strong=\"H5650\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H4100\"* look|strong=\"H6437\"* at|strong=\"H4191\"* such|strong=\"H3644\"* a|strong=\"H3068\"* dead|strong=\"H4191\"* dog|strong=\"H3611\"* as|strong=\"H3644\"* I|strong=\"H3588\"* am?”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H1961\"* the|strong=\"H3605\"* king|strong=\"H4428\"* called|strong=\"H7121\"* to|strong=\"H1961\"* Ziba|strong=\"H6717\"*, Saul|strong=\"H7586\"*’s servant|strong=\"H5288\"*, and|strong=\"H1121\"* said|strong=\"H7121\"* to|strong=\"H1961\"* him|strong=\"H5414\"*, “All|strong=\"H3605\"* that|strong=\"H3605\"* belonged|strong=\"H1961\"* to|strong=\"H1961\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* to|strong=\"H1961\"* all|strong=\"H3605\"* his|strong=\"H3605\"* house|strong=\"H1004\"* I|strong=\"H5414\"* have|strong=\"H1961\"* given|strong=\"H5414\"* to|strong=\"H1961\"* your|strong=\"H3605\"* master|strong=\"H5414\"*’s son|strong=\"H1121\"*." + }, + { + "verseNum": 10, + "text": "Till|strong=\"H5647\"* the|strong=\"H5921\"* land for|strong=\"H5921\"* him|strong=\"H5921\"*—you|strong=\"H5921\"*, your|strong=\"H5921\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* your|strong=\"H5921\"* servants|strong=\"H5650\"*. Bring|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* harvest, that|strong=\"H1121\"* your|strong=\"H5921\"* master’s son|strong=\"H1121\"* may|strong=\"H1961\"* have|strong=\"H1961\"* bread|strong=\"H3899\"* to|strong=\"H1961\"* eat|strong=\"H3899\"*; but|strong=\"H1961\"* Mephibosheth|strong=\"H4648\"* your|strong=\"H5921\"* master’s son|strong=\"H1121\"* will|strong=\"H1961\"* always|strong=\"H8548\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* at|strong=\"H5921\"* my|strong=\"H5921\"* table|strong=\"H7979\"*.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H3651\"* Ziba|strong=\"H6717\"* said|strong=\"H3651\"* to|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, “According|strong=\"H5921\"* to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* my|strong=\"H3605\"* lord the|strong=\"H3605\"* king|strong=\"H4428\"* commands|strong=\"H6680\"* his|strong=\"H3605\"* servant|strong=\"H5650\"*, so|strong=\"H3651\"* your|strong=\"H3605\"* servant|strong=\"H5650\"* will|strong=\"H4428\"* do|strong=\"H6213\"*.” So|strong=\"H3651\"* Mephibosheth|strong=\"H4648\"* ate at|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s table|strong=\"H7979\"* like|strong=\"H3651\"* one|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"*." + }, + { + "verseNum": 12, + "text": "Mephibosheth|strong=\"H4648\"* had|strong=\"H1121\"* a|strong=\"H3068\"* young|strong=\"H1121\"* son|strong=\"H1121\"*, whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Mica|strong=\"H4316\"*. All|strong=\"H3605\"* who|strong=\"H3605\"* lived|strong=\"H4186\"* in|strong=\"H1004\"* Ziba|strong=\"H6717\"*’s house|strong=\"H1004\"* were|strong=\"H1121\"* servants|strong=\"H5650\"* to|strong=\"H1121\"* Mephibosheth|strong=\"H4648\"*." + }, + { + "verseNum": 13, + "text": "So|strong=\"H3588\"* Mephibosheth|strong=\"H4648\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* ate continually|strong=\"H8548\"* at|strong=\"H3427\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s table|strong=\"H7979\"*. He|strong=\"H1931\"* was|strong=\"H1931\"* lame|strong=\"H6455\"* in|strong=\"H3427\"* both|strong=\"H8147\"* his|strong=\"H5921\"* feet|strong=\"H7272\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* this|strong=\"H3651\"*, the|strong=\"H8478\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H8478\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* Hanun|strong=\"H2586\"* his|strong=\"H1961\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H4428\"* his|strong=\"H1961\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* said, “I|strong=\"H5650\"* will|strong=\"H5650\"* show|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H7971\"* Hanun|strong=\"H2586\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nahash|strong=\"H5176\"*, as|strong=\"H6213\"* his|strong=\"H7971\"* father|strong=\"H1121\"* showed|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H7971\"* me|strong=\"H7971\"*.” So|strong=\"H6213\"* David|strong=\"H1732\"* sent|strong=\"H7971\"* by|strong=\"H3027\"* his|strong=\"H7971\"* servants|strong=\"H5650\"* to|strong=\"H7971\"* comfort|strong=\"H5162\"* him|strong=\"H7971\"* concerning|strong=\"H5162\"* his|strong=\"H7971\"* father|strong=\"H1121\"*. David|strong=\"H1732\"*’s servants|strong=\"H5650\"* came|strong=\"H5983\"* into|strong=\"H6213\"* the|strong=\"H6213\"* land of|strong=\"H1121\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* said to|strong=\"H7971\"* Hanun|strong=\"H2586\"* their|strong=\"H3588\"* lord, “Do|strong=\"H5869\"* you|strong=\"H3588\"* think|strong=\"H5869\"* that|strong=\"H3588\"* David|strong=\"H1732\"* honors|strong=\"H3513\"* your|strong=\"H3588\"* father|strong=\"H1121\"*, in|strong=\"H5892\"* that|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H5650\"* sent|strong=\"H7971\"* comforters|strong=\"H5162\"* to|strong=\"H7971\"* you|strong=\"H3588\"*? Hasn’t David|strong=\"H1732\"* sent|strong=\"H7971\"* his|strong=\"H7971\"* servants|strong=\"H5650\"* to|strong=\"H7971\"* you|strong=\"H3588\"* to|strong=\"H7971\"* search|strong=\"H2713\"* the|strong=\"H3588\"* city|strong=\"H5892\"*, to|strong=\"H7971\"* spy|strong=\"H7270\"* it|strong=\"H3588\"* out|strong=\"H7971\"*, and|strong=\"H1121\"* to|strong=\"H7971\"* overthrow|strong=\"H2015\"* it|strong=\"H3588\"*?”" + }, + { + "verseNum": 4, + "text": "So|strong=\"H3947\"* Hanun|strong=\"H2586\"* took|strong=\"H3947\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"*, shaved|strong=\"H1548\"* off|strong=\"H3772\"* one half|strong=\"H2677\"* of|strong=\"H5650\"* their|strong=\"H3947\"* beards|strong=\"H2206\"*, and|strong=\"H7971\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* their|strong=\"H3947\"* garments|strong=\"H4063\"* in|strong=\"H5650\"* the|strong=\"H3947\"* middle|strong=\"H2677\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* their|strong=\"H3947\"* buttocks|strong=\"H8357\"*, and|strong=\"H7971\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* away|strong=\"H7971\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* told|strong=\"H5046\"* David|strong=\"H1732\"* this|strong=\"H3588\"*, he|strong=\"H3588\"* sent|strong=\"H7971\"* to|strong=\"H5704\"* meet|strong=\"H7125\"* them|strong=\"H7725\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* men were|strong=\"H1961\"* greatly|strong=\"H3966\"* ashamed|strong=\"H3637\"*. The|strong=\"H3588\"* king|strong=\"H4428\"* said, “Wait|strong=\"H3427\"* at|strong=\"H3427\"* Jericho|strong=\"H3405\"* until|strong=\"H5704\"* your|strong=\"H7725\"* beards|strong=\"H2206\"* have|strong=\"H1961\"* grown|strong=\"H6779\"*, and|strong=\"H7971\"* then|strong=\"H1961\"* return|strong=\"H7725\"*.”" + }, + { + "verseNum": 6, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H1732\"* become|strong=\"H7200\"* odious to|strong=\"H7971\"* David|strong=\"H1732\"*, the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* sent|strong=\"H7971\"* and|strong=\"H1121\"* hired|strong=\"H7936\"* the|strong=\"H7200\"* Syrians of|strong=\"H1121\"* Beth Rehob and|strong=\"H1121\"* the|strong=\"H7200\"* Syrians of|strong=\"H1121\"* Zobah|strong=\"H6678\"*, twenty|strong=\"H6242\"* thousand footmen|strong=\"H7273\"*, and|strong=\"H1121\"* the|strong=\"H7200\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Maacah|strong=\"H4601\"* with|strong=\"H1732\"* one|strong=\"H1121\"* thousand men|strong=\"H1121\"*, and|strong=\"H1121\"* the|strong=\"H7200\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Tob|strong=\"H2897\"* twelve|strong=\"H8147\"* thousand men|strong=\"H1121\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H8085\"* David|strong=\"H1732\"* heard|strong=\"H8085\"* of|strong=\"H6635\"* it|strong=\"H7971\"*, he|strong=\"H3605\"* sent|strong=\"H7971\"* Joab|strong=\"H3097\"* and|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H6635\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* came|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* put|strong=\"H3318\"* the|strong=\"H3318\"* battle|strong=\"H4421\"* in|strong=\"H4421\"* array|strong=\"H6186\"* at|strong=\"H4421\"* the|strong=\"H3318\"* entrance|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H3318\"* gate|strong=\"H8179\"*. The|strong=\"H3318\"* Syrians of|strong=\"H1121\"* Zobah|strong=\"H6678\"* and|strong=\"H1121\"* of|strong=\"H1121\"* Rehob|strong=\"H7340\"* and|strong=\"H1121\"* the|strong=\"H3318\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Tob|strong=\"H2897\"* and|strong=\"H1121\"* Maacah|strong=\"H4601\"* were|strong=\"H1121\"* by|strong=\"H3318\"* themselves|strong=\"H6186\"* in|strong=\"H4421\"* the|strong=\"H3318\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 9, + "text": "Now|strong=\"H1961\"* when|strong=\"H3588\"* Joab|strong=\"H3097\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H3605\"* battle|strong=\"H4421\"* was|strong=\"H1961\"* set|strong=\"H6186\"* against|strong=\"H7125\"* him|strong=\"H6440\"* before|strong=\"H6440\"* and|strong=\"H3478\"* behind, he|strong=\"H3588\"* chose of|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* choice|strong=\"H7200\"* men|strong=\"H3605\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* put|strong=\"H6186\"* them|strong=\"H6440\"* in|strong=\"H3478\"* array|strong=\"H6186\"* against|strong=\"H7125\"* the|strong=\"H3605\"* Syrians." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5414\"* rest|strong=\"H3499\"* of|strong=\"H1121\"* the|strong=\"H5414\"* people|strong=\"H5971\"* he|strong=\"H3027\"* committed|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Abishai his|strong=\"H5414\"* brother; and|strong=\"H1121\"* he|strong=\"H3027\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H1121\"* array|strong=\"H6186\"* against|strong=\"H7125\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H4480\"* said, “If|strong=\"H1961\"* the|strong=\"H4480\"* Syrians are|strong=\"H1121\"* too|strong=\"H4480\"* strong|strong=\"H2388\"* for|strong=\"H1121\"* me|strong=\"H4480\"*, then|strong=\"H1961\"* you|strong=\"H4480\"* shall|strong=\"H1121\"* help|strong=\"H3467\"* me|strong=\"H4480\"*; but|strong=\"H1961\"* if|strong=\"H1961\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* are|strong=\"H1121\"* too|strong=\"H4480\"* strong|strong=\"H2388\"* for|strong=\"H1121\"* you|strong=\"H4480\"*, then|strong=\"H1961\"* I|strong=\"H1980\"* will|strong=\"H1961\"* come|strong=\"H1980\"* and|strong=\"H1121\"* help|strong=\"H3467\"* you|strong=\"H4480\"*." + }, + { + "verseNum": 12, + "text": "Be|strong=\"H3068\"* courageous|strong=\"H2388\"*, and|strong=\"H3068\"* let’s be|strong=\"H3068\"* strong|strong=\"H2388\"* for|strong=\"H6213\"* our|strong=\"H3068\"* people|strong=\"H5971\"* and|strong=\"H3068\"* for|strong=\"H6213\"* the|strong=\"H6213\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*; and|strong=\"H3068\"* may|strong=\"H3068\"* Yahweh|strong=\"H3068\"* do|strong=\"H6213\"* what|strong=\"H2896\"* seems|strong=\"H2896\"* good|strong=\"H2896\"* to|strong=\"H3068\"* him|strong=\"H6213\"*.”" + }, + { + "verseNum": 13, + "text": "So|strong=\"H5066\"* Joab|strong=\"H3097\"* and|strong=\"H5971\"* the|strong=\"H6440\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H6440\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H6440\"* the|strong=\"H6440\"* battle|strong=\"H4421\"* against|strong=\"H5973\"* the|strong=\"H6440\"* Syrians, and|strong=\"H5971\"* they|strong=\"H5971\"* fled|strong=\"H5127\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H3588\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H6440\"* Syrians had|strong=\"H3588\"* fled|strong=\"H5127\"*, they|strong=\"H3588\"* likewise fled|strong=\"H5127\"* before|strong=\"H6440\"* Abishai, and|strong=\"H1121\"* entered into|strong=\"H7725\"* the|strong=\"H6440\"* city|strong=\"H5892\"*. Then|strong=\"H7725\"* Joab|strong=\"H3097\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* and|strong=\"H1121\"* came|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* the|strong=\"H6440\"* Syrians saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H3478\"* defeated|strong=\"H5062\"* by|strong=\"H3478\"* Israel|strong=\"H3478\"*, they|strong=\"H3588\"* gathered|strong=\"H3478\"* themselves|strong=\"H6440\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 16, + "text": "Hadadezer|strong=\"H1909\"* sent|strong=\"H7971\"* and|strong=\"H7971\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H6440\"* Syrians who|strong=\"H6635\"* were|strong=\"H8269\"* beyond|strong=\"H5676\"* the|strong=\"H6440\"* River|strong=\"H5104\"*; and|strong=\"H7971\"* they|strong=\"H6440\"* came|strong=\"H3318\"* to|strong=\"H3318\"* Helam|strong=\"H2431\"*, with|strong=\"H6440\"* Shobach|strong=\"H7731\"* the|strong=\"H6440\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H6440\"* army|strong=\"H6635\"* of|strong=\"H8269\"* Hadadezer|strong=\"H1909\"* at|strong=\"H6440\"* their|strong=\"H6440\"* head|strong=\"H8269\"*." + }, + { + "verseNum": 17, + "text": "David|strong=\"H1732\"* was|strong=\"H1732\"* told|strong=\"H5046\"* that|strong=\"H3605\"*; and|strong=\"H3478\"* he|strong=\"H3605\"* gathered|strong=\"H1732\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* together|strong=\"H5973\"*, passed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, and|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* Helam|strong=\"H2431\"*. The|strong=\"H3605\"* Syrians set|strong=\"H6186\"* themselves|strong=\"H6186\"* in|strong=\"H3478\"* array|strong=\"H6186\"* against|strong=\"H5973\"* David|strong=\"H1732\"* and|strong=\"H3478\"* fought|strong=\"H3898\"* with|strong=\"H5973\"* him|strong=\"H5046\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H6440\"* Syrians fled|strong=\"H5127\"* before|strong=\"H6440\"* Israel|strong=\"H3478\"*; and|strong=\"H3967\"* David|strong=\"H1732\"* killed|strong=\"H2026\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* charioteers|strong=\"H7393\"* of|strong=\"H8269\"* the|strong=\"H6440\"* Syrians and|strong=\"H3967\"* forty thousand horsemen|strong=\"H6571\"*, and|strong=\"H3967\"* struck|strong=\"H5221\"* Shobach|strong=\"H7731\"* the|strong=\"H6440\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* their|strong=\"H6440\"* army|strong=\"H6635\"*, so|strong=\"H4191\"* that|strong=\"H3478\"* he|strong=\"H8033\"* died|strong=\"H4191\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* who|strong=\"H3605\"* were|strong=\"H3478\"* servants|strong=\"H5650\"* to|strong=\"H3478\"* Hadadezer|strong=\"H1909\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H3478\"* defeated|strong=\"H5062\"* before|strong=\"H6440\"* Israel|strong=\"H3478\"*, they|strong=\"H3588\"* made|strong=\"H7999\"* peace|strong=\"H7999\"* with|strong=\"H6440\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* served|strong=\"H5647\"* them|strong=\"H6440\"*. So|strong=\"H3588\"* the|strong=\"H3605\"* Syrians were|strong=\"H3478\"* afraid|strong=\"H3372\"* to|strong=\"H3478\"* help|strong=\"H3467\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* any|strong=\"H3605\"* more|strong=\"H5750\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"H3427\"* the|strong=\"H3605\"* return|strong=\"H8666\"* of|strong=\"H1121\"* the|strong=\"H3605\"* year|strong=\"H8141\"*, at|strong=\"H3427\"* the|strong=\"H3605\"* time|strong=\"H6256\"* when|strong=\"H1961\"* kings|strong=\"H4428\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, David|strong=\"H1732\"* sent|strong=\"H7971\"* Joab|strong=\"H3097\"* and|strong=\"H1121\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* with|strong=\"H5973\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* they|strong=\"H5921\"* destroyed|strong=\"H7843\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* and|strong=\"H1121\"* besieged|strong=\"H6696\"* Rabbah|strong=\"H7237\"*. But|strong=\"H1961\"* David|strong=\"H1732\"* stayed|strong=\"H3427\"* at|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "At|strong=\"H5921\"* evening|strong=\"H6153\"*, David|strong=\"H1732\"* arose|strong=\"H6965\"* from|strong=\"H5921\"* his|strong=\"H1732\"* bed|strong=\"H4904\"* and|strong=\"H1980\"* walked|strong=\"H1980\"* on|strong=\"H5921\"* the|strong=\"H5921\"* roof|strong=\"H1406\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*. From|strong=\"H5921\"* the|strong=\"H5921\"* roof|strong=\"H1406\"*, he|strong=\"H1004\"* saw|strong=\"H7200\"* a|strong=\"H3068\"* woman|strong=\"H1004\"* bathing|strong=\"H7364\"*, and|strong=\"H1980\"* the|strong=\"H5921\"* woman|strong=\"H1004\"* was|strong=\"H1961\"* very|strong=\"H3966\"* beautiful|strong=\"H2896\"* to|strong=\"H1980\"* look|strong=\"H7200\"* at|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* sent|strong=\"H7971\"* and|strong=\"H7971\"* inquired|strong=\"H1875\"* after|strong=\"H1875\"* the|strong=\"H7971\"* woman|strong=\"H1323\"*. One|strong=\"H3808\"* said, “Isn’t this|strong=\"H2063\"* Bathsheba|strong=\"H1339\"*, the|strong=\"H7971\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Eliam, Uriah the|strong=\"H7971\"* Hittite|strong=\"H2850\"*’s wife?”" + }, + { + "verseNum": 4, + "text": "David|strong=\"H1732\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"*, and|strong=\"H7971\"* took|strong=\"H3947\"* her|strong=\"H7971\"*; and|strong=\"H7971\"* she|strong=\"H1931\"* came|strong=\"H7725\"* in|strong=\"H1004\"* to|strong=\"H7725\"* him|strong=\"H7971\"*, and|strong=\"H7971\"* he|strong=\"H1931\"* lay|strong=\"H7901\"* with|strong=\"H5973\"* her|strong=\"H7971\"* (for|strong=\"H7971\"* she|strong=\"H1931\"* was|strong=\"H1732\"* purified|strong=\"H6942\"* from|strong=\"H7725\"* her|strong=\"H7971\"* uncleanness|strong=\"H2932\"*); and|strong=\"H7971\"* she|strong=\"H1931\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* her|strong=\"H7971\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H7971\"* woman|strong=\"H2030\"* conceived|strong=\"H2029\"*; and|strong=\"H7971\"* she sent|strong=\"H7971\"* and|strong=\"H7971\"* told|strong=\"H5046\"* David|strong=\"H1732\"*, and|strong=\"H7971\"* said, “I|strong=\"H5046\"* am|strong=\"H2029\"* with|strong=\"H1732\"* child|strong=\"H2030\"*.”" + }, + { + "verseNum": 6, + "text": "David|strong=\"H1732\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* Joab|strong=\"H3097\"*, “Send|strong=\"H7971\"* me|strong=\"H7971\"* Uriah the|strong=\"H7971\"* Hittite|strong=\"H2850\"*.” Joab|strong=\"H3097\"* sent|strong=\"H7971\"* Uriah to|strong=\"H7971\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 7, + "text": "When Uriah had|strong=\"H1732\"* come|strong=\"H5971\"* to|strong=\"H1732\"* him|strong=\"H7592\"*, David|strong=\"H1732\"* asked|strong=\"H7592\"* him|strong=\"H7592\"* how|strong=\"H7965\"* Joab|strong=\"H3097\"* did|strong=\"H5971\"*, and|strong=\"H5971\"* how|strong=\"H7965\"* the|strong=\"H1732\"* people|strong=\"H5971\"* fared, and|strong=\"H5971\"* how|strong=\"H7965\"* the|strong=\"H1732\"* war|strong=\"H4421\"* prospered|strong=\"H7965\"*." + }, + { + "verseNum": 8, + "text": "David|strong=\"H1732\"* said|strong=\"H3318\"* to|strong=\"H3381\"* Uriah, “Go|strong=\"H3318\"* down|strong=\"H3381\"* to|strong=\"H3381\"* your|strong=\"H3318\"* house|strong=\"H1004\"* and|strong=\"H4428\"* wash|strong=\"H7364\"* your|strong=\"H3318\"* feet|strong=\"H7272\"*.” Uriah departed|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H3318\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H4428\"* a|strong=\"H3068\"* gift|strong=\"H4864\"* from|strong=\"H3318\"* the|strong=\"H3318\"* king|strong=\"H4428\"* was|strong=\"H1732\"* sent|strong=\"H3318\"* after|strong=\"H7272\"* him|strong=\"H3318\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H3808\"* Uriah slept|strong=\"H7901\"* at|strong=\"H1004\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"* with|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* servants|strong=\"H5650\"* of|strong=\"H4428\"* his|strong=\"H3605\"* lord, and|strong=\"H4428\"* didn’t go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* his|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 10, + "text": "When they|strong=\"H3808\"* had|strong=\"H1732\"* told|strong=\"H5046\"* David|strong=\"H1732\"*, saying, “Uriah didn’t go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* his|strong=\"H1732\"* house|strong=\"H1004\"*,” David|strong=\"H1732\"* said to|strong=\"H3381\"* Uriah, “Haven’t you|strong=\"H5046\"* come|strong=\"H3381\"* from|strong=\"H3381\"* a|strong=\"H3068\"* journey|strong=\"H1870\"*? Why|strong=\"H4069\"* didn’t you|strong=\"H5046\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* your|strong=\"H3808\"* house|strong=\"H1004\"*?”" + }, + { + "verseNum": 11, + "text": "Uriah said|strong=\"H1697\"* to|strong=\"H3478\"* David|strong=\"H1732\"*, “The|strong=\"H6440\"* ark, Israel|strong=\"H3478\"*, and|strong=\"H3063\"* Judah|strong=\"H3063\"*, are|strong=\"H3478\"* staying|strong=\"H3427\"* in|strong=\"H3427\"* tents|strong=\"H2583\"*; and|strong=\"H3063\"* my|strong=\"H1732\"* lord Joab|strong=\"H3097\"* and|strong=\"H3063\"* the|strong=\"H6440\"* servants|strong=\"H5650\"* of|strong=\"H1004\"* my|strong=\"H1732\"* lord are|strong=\"H3478\"* encamped|strong=\"H2583\"* in|strong=\"H3427\"* the|strong=\"H6440\"* open|strong=\"H6440\"* field|strong=\"H7704\"*. Shall|strong=\"H3478\"* I|strong=\"H5921\"* then|strong=\"H2088\"* go|strong=\"H3478\"* into|strong=\"H5921\"* my|strong=\"H1732\"* house|strong=\"H1004\"* to|strong=\"H3478\"* eat and|strong=\"H3063\"* to|strong=\"H3478\"* drink|strong=\"H8354\"*, and|strong=\"H3063\"* to|strong=\"H3478\"* lie|strong=\"H7901\"* with|strong=\"H5973\"* my|strong=\"H1732\"* wife|strong=\"H2416\"*? As|strong=\"H1697\"* you|strong=\"H6440\"* live|strong=\"H3427\"*, and|strong=\"H3063\"* as|strong=\"H1697\"* your|strong=\"H5921\"* soul|strong=\"H5315\"* lives|strong=\"H5315\"*, I|strong=\"H5921\"* will|strong=\"H3478\"* not|strong=\"H6213\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*!”" + }, + { + "verseNum": 12, + "text": "David|strong=\"H1732\"* said to|strong=\"H7971\"* Uriah, “Stay|strong=\"H3427\"* here|strong=\"H2088\"* today|strong=\"H3117\"* also|strong=\"H1571\"*, and|strong=\"H7971\"* tomorrow|strong=\"H4279\"* I|strong=\"H3117\"* will|strong=\"H1571\"* let|strong=\"H7971\"* you|strong=\"H7971\"* depart|strong=\"H7971\"*.” So|strong=\"H7971\"* Uriah stayed|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* that|strong=\"H3117\"* day|strong=\"H3117\"* and|strong=\"H7971\"* the|strong=\"H3117\"* next|strong=\"H4283\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H3318\"* David|strong=\"H1732\"* had|strong=\"H1732\"* called|strong=\"H7121\"* him|strong=\"H6440\"*, he|strong=\"H1004\"* ate and|strong=\"H1004\"* drank|strong=\"H8354\"* before|strong=\"H6440\"* him|strong=\"H6440\"*; and|strong=\"H1004\"* he|strong=\"H1004\"* made|strong=\"H1732\"* him|strong=\"H6440\"* drunk|strong=\"H8354\"*. At|strong=\"H1004\"* evening|strong=\"H6153\"*, he|strong=\"H1004\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3381\"* lie|strong=\"H7901\"* on|strong=\"H1004\"* his|strong=\"H7121\"* bed|strong=\"H4904\"* with|strong=\"H5973\"* the|strong=\"H6440\"* servants|strong=\"H5650\"* of|strong=\"H1004\"* his|strong=\"H7121\"* lord, but|strong=\"H3808\"* didn’t go|strong=\"H3318\"* down|strong=\"H3381\"* to|strong=\"H3381\"* his|strong=\"H7121\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 14, + "text": "In|strong=\"H3789\"* the|strong=\"H7971\"* morning|strong=\"H1242\"*, David|strong=\"H1732\"* wrote|strong=\"H3789\"* a|strong=\"H3068\"* letter|strong=\"H5612\"* to|strong=\"H7971\"* Joab|strong=\"H3097\"* and|strong=\"H7971\"* sent|strong=\"H7971\"* it|strong=\"H1242\"* by|strong=\"H3027\"* the|strong=\"H7971\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* Uriah." + }, + { + "verseNum": 15, + "text": "He|strong=\"H5221\"* wrote|strong=\"H3789\"* in|strong=\"H4191\"* the|strong=\"H6440\"* letter|strong=\"H5612\"*, saying, “Send Uriah to|strong=\"H7725\"* the|strong=\"H6440\"* forefront|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* hottest|strong=\"H2389\"* battle|strong=\"H4421\"*, and|strong=\"H7725\"* retreat|strong=\"H7725\"* from|strong=\"H7725\"* him|strong=\"H6440\"*, that|strong=\"H4421\"* he|strong=\"H5221\"* may|strong=\"H7725\"* be|strong=\"H4191\"* struck|strong=\"H5221\"* and|strong=\"H7725\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* Joab|strong=\"H3097\"* kept|strong=\"H8104\"* watch|strong=\"H8104\"* on|strong=\"H1961\"* the|strong=\"H3588\"* city|strong=\"H5892\"*, he|strong=\"H3588\"* assigned|strong=\"H5414\"* Uriah to|strong=\"H1961\"* the|strong=\"H3588\"* place|strong=\"H4725\"* where|strong=\"H8033\"* he|strong=\"H3588\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* valiant|strong=\"H2428\"* men|strong=\"H2428\"* were|strong=\"H1961\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H4480\"* men|strong=\"H5971\"* of|strong=\"H5892\"* the|strong=\"H4480\"* city|strong=\"H5892\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H5971\"* fought|strong=\"H3898\"* with|strong=\"H3898\"* Joab|strong=\"H3097\"*. Some|strong=\"H4480\"* of|strong=\"H5892\"* the|strong=\"H4480\"* people|strong=\"H5971\"* fell|strong=\"H5307\"*, even|strong=\"H1571\"* of|strong=\"H5892\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"*; and|strong=\"H5971\"* Uriah the|strong=\"H4480\"* Hittite|strong=\"H2850\"* died|strong=\"H4191\"* also|strong=\"H1571\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H7971\"* Joab|strong=\"H3097\"* sent|strong=\"H7971\"* and|strong=\"H7971\"* told|strong=\"H5046\"* David|strong=\"H1732\"* all|strong=\"H3605\"* the|strong=\"H3605\"* things|strong=\"H1697\"* concerning|strong=\"H1697\"* the|strong=\"H3605\"* war|strong=\"H4421\"*;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H4428\"* he|strong=\"H3605\"* commanded|strong=\"H6680\"* the|strong=\"H3605\"* messenger|strong=\"H4397\"*, saying|strong=\"H1697\"*, “When|strong=\"H3615\"* you|strong=\"H6680\"* have|strong=\"H1697\"* finished|strong=\"H3615\"* telling|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* things|strong=\"H1697\"* concerning|strong=\"H1697\"* the|strong=\"H3605\"* war|strong=\"H4421\"* to|strong=\"H1696\"* the|strong=\"H3605\"* king|strong=\"H4428\"*," + }, + { + "verseNum": 20, + "text": "it|strong=\"H5921\"* shall|strong=\"H4428\"* be|strong=\"H1961\"* that|strong=\"H3045\"*, if|strong=\"H1961\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s wrath|strong=\"H2534\"* arise|strong=\"H5927\"*, and|strong=\"H4428\"* he|strong=\"H3808\"* asks you|strong=\"H5921\"*, ‘Why|strong=\"H4069\"* did|strong=\"H3808\"* you|strong=\"H5921\"* go|strong=\"H5927\"* so|strong=\"H1961\"* near|strong=\"H5066\"* to|strong=\"H5927\"* the|strong=\"H5921\"* city|strong=\"H5892\"* to|strong=\"H5927\"* fight|strong=\"H3898\"*? Didn’t you|strong=\"H5921\"* know|strong=\"H3045\"* that|strong=\"H3045\"* they|strong=\"H3808\"* would|strong=\"H4428\"* shoot|strong=\"H3384\"* from|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*?" + }, + { + "verseNum": 21, + "text": "Who|strong=\"H4310\"* struck|strong=\"H5221\"* Abimelech the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jerubbesheth|strong=\"H3380\"*? Didn’t a|strong=\"H3068\"* woman cast|strong=\"H7993\"* an|strong=\"H5221\"* upper|strong=\"H7393\"* millstone|strong=\"H7393\"* on|strong=\"H5921\"* him|strong=\"H5921\"* from|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*, so|strong=\"H3808\"* that|strong=\"H1121\"* he|strong=\"H3808\"* died|strong=\"H4191\"* at|strong=\"H5921\"* Thebez|strong=\"H8405\"*? Why|strong=\"H4100\"* did|strong=\"H4100\"* you|strong=\"H5921\"* go|strong=\"H5066\"* so|strong=\"H3808\"* near|strong=\"H5066\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*?’ then|strong=\"H1571\"* you|strong=\"H5921\"* shall|strong=\"H1121\"* say, ‘Your|strong=\"H5921\"* servant|strong=\"H5650\"* Uriah the|strong=\"H5921\"* Hittite|strong=\"H2850\"* is|strong=\"H4310\"* also|strong=\"H1571\"* dead|strong=\"H4191\"*.’”" + }, + { + "verseNum": 22, + "text": "So|strong=\"H7971\"* the|strong=\"H3605\"* messenger|strong=\"H4397\"* went|strong=\"H3212\"*, and|strong=\"H7971\"* came|strong=\"H3212\"* and|strong=\"H7971\"* showed David|strong=\"H1732\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Joab|strong=\"H3097\"* had|strong=\"H1732\"* sent|strong=\"H7971\"* him|strong=\"H7971\"* for|strong=\"H7971\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H5921\"* messenger|strong=\"H4397\"* said|strong=\"H3318\"* to|strong=\"H5704\"* David|strong=\"H1732\"*, “The|strong=\"H5921\"* men prevailed|strong=\"H1396\"* against|strong=\"H5921\"* us|strong=\"H5921\"*, and|strong=\"H1732\"* came|strong=\"H1961\"* out|strong=\"H3318\"* to|strong=\"H5704\"* us|strong=\"H5921\"* into|strong=\"H5921\"* the|strong=\"H5921\"* field|strong=\"H7704\"*; and|strong=\"H1732\"* we|strong=\"H3068\"* were|strong=\"H1961\"* on|strong=\"H5921\"* them|strong=\"H5921\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5921\"* entrance|strong=\"H6607\"* of|strong=\"H8179\"* the|strong=\"H5921\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H5921\"* shooters|strong=\"H3384\"* shot|strong=\"H3384\"* at|strong=\"H5921\"* your|strong=\"H5921\"* servants|strong=\"H5650\"* from|strong=\"H5921\"* off|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*; and|strong=\"H4428\"* some of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s servants|strong=\"H5650\"* are|strong=\"H5650\"* dead|strong=\"H4191\"*, and|strong=\"H4428\"* your|strong=\"H5921\"* servant|strong=\"H5650\"* Uriah the|strong=\"H5921\"* Hittite|strong=\"H2850\"* is|strong=\"H1571\"* also|strong=\"H1571\"* dead|strong=\"H4191\"*.”" + }, + { + "verseNum": 25, + "text": "Then|strong=\"H2088\"* David|strong=\"H1732\"* said|strong=\"H1697\"* to|strong=\"H4397\"* the|strong=\"H3588\"* messenger|strong=\"H4397\"*, “Tell Joab|strong=\"H3097\"*, ‘Don’t let this|strong=\"H2088\"* thing|strong=\"H1697\"* displease|strong=\"H7489\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* sword|strong=\"H2719\"* devours one|strong=\"H2088\"* as|strong=\"H1697\"* well|strong=\"H5869\"* as|strong=\"H1697\"* another|strong=\"H2088\"*. Make|strong=\"H2388\"* your|strong=\"H3588\"* battle|strong=\"H4421\"* stronger|strong=\"H2388\"* against|strong=\"H4421\"* the|strong=\"H3588\"* city|strong=\"H5892\"*, and|strong=\"H5869\"* overthrow|strong=\"H2040\"* it|strong=\"H3588\"*.’ Encourage|strong=\"H2388\"* him|strong=\"H1732\"*.”" + }, + { + "verseNum": 26, + "text": "When|strong=\"H3588\"* Uriah’s wife heard|strong=\"H8085\"* that|strong=\"H3588\"* Uriah her|strong=\"H5921\"* husband|strong=\"H1167\"* was dead|strong=\"H4191\"*, she|strong=\"H3588\"* mourned|strong=\"H5594\"* for|strong=\"H3588\"* her|strong=\"H5921\"* husband|strong=\"H1167\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"H1961\"* the|strong=\"H6213\"* mourning was|strong=\"H3068\"* past|strong=\"H5674\"*, David|strong=\"H1732\"* sent|strong=\"H7971\"* and|strong=\"H1121\"* took|strong=\"H1961\"* her|strong=\"H7971\"* home|strong=\"H1004\"* to|strong=\"H3068\"* his|strong=\"H3068\"* house|strong=\"H1004\"*, and|strong=\"H1121\"* she became|strong=\"H3205\"* his|strong=\"H3068\"* wife and|strong=\"H1121\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*. But|strong=\"H1961\"* the|strong=\"H6213\"* thing|strong=\"H1697\"* that|strong=\"H3068\"* David|strong=\"H1732\"* had|strong=\"H3068\"* done|strong=\"H6213\"* displeased|strong=\"H7489\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* Nathan|strong=\"H5416\"* to|strong=\"H3068\"* David|strong=\"H1732\"*. He|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* him|strong=\"H7971\"*, and|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H7971\"*, “There|strong=\"H1961\"* were|strong=\"H1961\"* two|strong=\"H8147\"* men|strong=\"H6223\"* in|strong=\"H3068\"* one|strong=\"H1961\"* city|strong=\"H5892\"*: the|strong=\"H3068\"* one|strong=\"H1961\"* rich|strong=\"H6223\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* other|strong=\"H8147\"* poor|strong=\"H7326\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H1961\"* rich|strong=\"H6223\"* man|strong=\"H6223\"* had|strong=\"H1961\"* very|strong=\"H3966\"* many|strong=\"H7235\"* flocks|strong=\"H6629\"* and|strong=\"H6629\"* herds|strong=\"H1241\"*," + }, + { + "verseNum": 3, + "text": "but|strong=\"H3588\"* the|strong=\"H3605\"* poor|strong=\"H7326\"* man|strong=\"H1121\"* had|strong=\"H1961\"* nothing|strong=\"H3605\"*, except|strong=\"H3588\"* one|strong=\"H3605\"* little|strong=\"H6996\"* ewe|strong=\"H3535\"* lamb|strong=\"H3535\"*, which|strong=\"H1323\"* he|strong=\"H3588\"* had|strong=\"H1961\"* bought|strong=\"H7069\"* and|strong=\"H1121\"* raised|strong=\"H1431\"*. It|strong=\"H3588\"* grew|strong=\"H1431\"* up|strong=\"H1431\"* together|strong=\"H3162\"* with|strong=\"H5973\"* him|strong=\"H5973\"* and|strong=\"H1121\"* with|strong=\"H5973\"* his|strong=\"H3605\"* children|strong=\"H1121\"*. It|strong=\"H3588\"* ate of|strong=\"H1121\"* his|strong=\"H3605\"* own|strong=\"H1961\"* food, drank|strong=\"H8354\"* of|strong=\"H1121\"* his|strong=\"H3605\"* own|strong=\"H1961\"* cup|strong=\"H3563\"*, and|strong=\"H1121\"* lay|strong=\"H7901\"* in|strong=\"H1121\"* his|strong=\"H3605\"* bosom|strong=\"H2436\"*, and|strong=\"H1121\"* was|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* daughter|strong=\"H1323\"* to|strong=\"H1961\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 4, + "text": "A|strong=\"H3068\"* traveler|strong=\"H1982\"* came to|strong=\"H6213\"* the|strong=\"H3947\"* rich|strong=\"H6223\"* man|strong=\"H6223\"*, and|strong=\"H6629\"* he|strong=\"H6213\"* didn’t want to|strong=\"H6213\"* take|strong=\"H3947\"* of|strong=\"H6629\"* his|strong=\"H3947\"* own flock|strong=\"H6629\"* and|strong=\"H6629\"* of|strong=\"H6629\"* his|strong=\"H3947\"* own herd|strong=\"H1241\"* to|strong=\"H6213\"* prepare|strong=\"H6213\"* for|strong=\"H6213\"* the|strong=\"H3947\"* wayfaring man|strong=\"H6223\"* who|strong=\"H6213\"* had|strong=\"H2550\"* come to|strong=\"H6213\"* him|strong=\"H6213\"*, but|strong=\"H7326\"* took|strong=\"H3947\"* the|strong=\"H3947\"* poor|strong=\"H7326\"* man|strong=\"H6223\"*’s lamb|strong=\"H3535\"* and|strong=\"H6629\"* prepared|strong=\"H6213\"* it|strong=\"H6213\"* for|strong=\"H6213\"* the|strong=\"H3947\"* man|strong=\"H6223\"* who|strong=\"H6213\"* had|strong=\"H2550\"* come to|strong=\"H6213\"* him|strong=\"H6213\"*.”" + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"*’s anger burned|strong=\"H2734\"* hot|strong=\"H2734\"* against|strong=\"H2734\"* the|strong=\"H3588\"* man|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H3588\"* said to|strong=\"H3068\"* Nathan|strong=\"H5416\"*, “As|strong=\"H6213\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, the|strong=\"H3588\"* man|strong=\"H1121\"* who|strong=\"H3068\"* has|strong=\"H3068\"* done|strong=\"H6213\"* this|strong=\"H2063\"* deserves|strong=\"H1121\"* to|strong=\"H3068\"* die|strong=\"H4194\"*!" + }, + { + "verseNum": 6, + "text": "He|strong=\"H6213\"* must|strong=\"H3808\"* restore|strong=\"H7999\"* the|strong=\"H5921\"* lamb|strong=\"H3535\"* fourfold, because|strong=\"H5921\"* he|strong=\"H6213\"* did|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* and|strong=\"H6213\"* because|strong=\"H5921\"* he|strong=\"H6213\"* had|strong=\"H2550\"* no|strong=\"H3808\"* pity|strong=\"H2550\"*!”" + }, + { + "verseNum": 7, + "text": "Nathan|strong=\"H5416\"* said to|strong=\"H3478\"* David|strong=\"H1732\"*, “You|strong=\"H5921\"* are|strong=\"H3478\"* the|strong=\"H5921\"* man! This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘I|strong=\"H3541\"* anointed|strong=\"H4886\"* you|strong=\"H5921\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* I|strong=\"H3541\"* delivered|strong=\"H5337\"* you|strong=\"H5921\"* out|strong=\"H5921\"* of|strong=\"H4428\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Saul|strong=\"H7586\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5414\"* gave|strong=\"H5414\"* you|strong=\"H5414\"* your|strong=\"H5414\"* master|strong=\"H5414\"*’s house|strong=\"H1004\"* and|strong=\"H3063\"* your|strong=\"H5414\"* master|strong=\"H5414\"*’s wives into|strong=\"H3063\"* your|strong=\"H5414\"* bosom|strong=\"H2436\"*, and|strong=\"H3063\"* gave|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*; and|strong=\"H3063\"* if that|strong=\"H3478\"* would|strong=\"H3478\"* have|strong=\"H3478\"* been|strong=\"H4592\"* too little|strong=\"H4592\"*, I|strong=\"H5414\"* would|strong=\"H3478\"* have|strong=\"H3478\"* added|strong=\"H3254\"* to|strong=\"H3478\"* you|strong=\"H5414\"* many more|strong=\"H3254\"* such|strong=\"H2007\"* things|strong=\"H2007\"*." + }, + { + "verseNum": 9, + "text": "Why|strong=\"H4069\"* have|strong=\"H3068\"* you|strong=\"H3947\"* despised Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, to|strong=\"H3068\"* do|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* is|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* his|strong=\"H3068\"* sight|strong=\"H5869\"*? You|strong=\"H3947\"* have|strong=\"H3068\"* struck|strong=\"H5221\"* Uriah the|strong=\"H3947\"* Hittite|strong=\"H2850\"* with|strong=\"H3068\"* the|strong=\"H3947\"* sword|strong=\"H2719\"*, have|strong=\"H3068\"* taken|strong=\"H3947\"* his|strong=\"H3068\"* wife to|strong=\"H3068\"* be|strong=\"H1697\"* your|strong=\"H3068\"* wife, and|strong=\"H1121\"* have|strong=\"H3068\"* slain|strong=\"H2026\"* him|strong=\"H5221\"* with|strong=\"H3068\"* the|strong=\"H3947\"* sword|strong=\"H2719\"* of|strong=\"H1121\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* the|strong=\"H3588\"* sword|strong=\"H2719\"* will|strong=\"H1961\"* never|strong=\"H3808\"* depart|strong=\"H5493\"* from|strong=\"H5493\"* your|strong=\"H3947\"* house|strong=\"H1004\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* despised me|strong=\"H3947\"* and|strong=\"H1004\"* have|strong=\"H1961\"* taken|strong=\"H3947\"* Uriah the|strong=\"H3588\"* Hittite|strong=\"H2850\"*’s wife to|strong=\"H5704\"* be|strong=\"H1961\"* your|strong=\"H3947\"* wife.’" + }, + { + "verseNum": 11, + "text": "“This|strong=\"H2063\"* is|strong=\"H3068\"* what|strong=\"H7451\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* evil|strong=\"H7451\"* against|strong=\"H5921\"* you|strong=\"H5414\"* out|strong=\"H5414\"* of|strong=\"H1004\"* your|strong=\"H3068\"* own|strong=\"H5973\"* house|strong=\"H1004\"*; and|strong=\"H6965\"* I|strong=\"H2005\"* will|strong=\"H3068\"* take|strong=\"H3947\"* your|strong=\"H3068\"* wives before|strong=\"H5869\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"* and|strong=\"H6965\"* give|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3068\"* your|strong=\"H3068\"* neighbor|strong=\"H7453\"*, and|strong=\"H6965\"* he|strong=\"H3068\"* will|strong=\"H3068\"* lie|strong=\"H7901\"* with|strong=\"H5973\"* your|strong=\"H3068\"* wives in|strong=\"H5921\"* the|strong=\"H5921\"* sight|strong=\"H5869\"* of|strong=\"H1004\"* this|strong=\"H2063\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* did|strong=\"H6213\"* this|strong=\"H2088\"* secretly|strong=\"H5643\"*, but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3478\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* before|strong=\"H5048\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* before|strong=\"H5048\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*.’”" + }, + { + "verseNum": 13, + "text": "David|strong=\"H1732\"* said to|strong=\"H4191\"* Nathan|strong=\"H5416\"*, “I|strong=\"H3808\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 14, + "text": "However|strong=\"H1571\"*, because|strong=\"H3588\"* by|strong=\"H3068\"* this|strong=\"H2088\"* deed|strong=\"H1697\"* you|strong=\"H3588\"* have|strong=\"H3068\"* given|strong=\"H5006\"* great|strong=\"H5006\"* occasion|strong=\"H5006\"* to|strong=\"H4191\"* Yahweh|strong=\"H3068\"*’s enemies to|strong=\"H4191\"* blaspheme|strong=\"H5006\"*, the|strong=\"H3588\"* child|strong=\"H1121\"* also|strong=\"H1571\"* who|strong=\"H3068\"* is|strong=\"H3068\"* born|strong=\"H3209\"* to|strong=\"H4191\"* you|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H1732\"* Nathan|strong=\"H5416\"* departed|strong=\"H3212\"* to|strong=\"H3068\"* his|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 16, + "text": "David|strong=\"H1732\"* therefore|strong=\"H1732\"* begged God for|strong=\"H1157\"* the|strong=\"H1245\"* child|strong=\"H5288\"*; and|strong=\"H1732\"* David|strong=\"H1732\"* fasted|strong=\"H6684\"*, and|strong=\"H1732\"* went|strong=\"H1732\"* in|strong=\"H7901\"* and|strong=\"H1732\"* lay|strong=\"H7901\"* all|strong=\"H7901\"* night|strong=\"H3885\"* on|strong=\"H7901\"* the|strong=\"H1245\"* ground." + }, + { + "verseNum": 17, + "text": "The|strong=\"H5921\"* elders|strong=\"H2205\"* of|strong=\"H1004\"* his|strong=\"H5921\"* house|strong=\"H1004\"* arose|strong=\"H6965\"* beside|strong=\"H5921\"* him|strong=\"H5921\"*, to|strong=\"H5921\"* raise|strong=\"H6965\"* him|strong=\"H5921\"* up|strong=\"H6965\"* from|strong=\"H4480\"* the|strong=\"H5921\"* earth; but|strong=\"H3808\"* he|strong=\"H1004\"* would not|strong=\"H3808\"*, and|strong=\"H6965\"* he|strong=\"H1004\"* didn’t eat|strong=\"H3899\"* bread|strong=\"H3899\"* with|strong=\"H1004\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 18, + "text": "On|strong=\"H3117\"* the|strong=\"H8085\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, the|strong=\"H8085\"* child|strong=\"H3206\"* died|strong=\"H4191\"*. David|strong=\"H1732\"*’s servants|strong=\"H5650\"* were|strong=\"H1961\"* afraid|strong=\"H3372\"* to|strong=\"H1696\"* tell|strong=\"H5046\"* him|strong=\"H5046\"* that|strong=\"H3588\"* the|strong=\"H8085\"* child|strong=\"H3206\"* was|strong=\"H1961\"* dead|strong=\"H4191\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* said|strong=\"H1696\"*, “Behold|strong=\"H2009\"*, while|strong=\"H1961\"* the|strong=\"H8085\"* child|strong=\"H3206\"* was|strong=\"H1961\"* yet|strong=\"H3588\"* alive|strong=\"H2416\"*, we|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5046\"* and|strong=\"H3117\"* he|strong=\"H3588\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1696\"* our|strong=\"H8085\"* voice|strong=\"H6963\"*. How|strong=\"H3588\"* will|strong=\"H1961\"* he|strong=\"H3588\"* then|strong=\"H1961\"* harm|strong=\"H7451\"* himself|strong=\"H6213\"* if|strong=\"H3588\"* we|strong=\"H3068\"* tell|strong=\"H5046\"* him|strong=\"H5046\"* that|strong=\"H3588\"* the|strong=\"H8085\"* child|strong=\"H3206\"* is|strong=\"H3117\"* dead|strong=\"H4191\"*?”" + }, + { + "verseNum": 19, + "text": "But|strong=\"H3588\"* when|strong=\"H3588\"* David|strong=\"H1732\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* his|strong=\"H1732\"* servants|strong=\"H5650\"* were|strong=\"H5650\"* whispering|strong=\"H3907\"* together, David|strong=\"H1732\"* perceived|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H7200\"* child|strong=\"H3206\"* was|strong=\"H1732\"* dead|strong=\"H4191\"*; and|strong=\"H1732\"* David|strong=\"H1732\"* said to|strong=\"H4191\"* his|strong=\"H1732\"* servants|strong=\"H5650\"*, “Is|strong=\"H5650\"* the|strong=\"H7200\"* child|strong=\"H3206\"* dead|strong=\"H4191\"*?”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H6965\"* David|strong=\"H1732\"* arose|strong=\"H6965\"* from|strong=\"H6965\"* the|strong=\"H3068\"* earth, and|strong=\"H6965\"* washed|strong=\"H7364\"* and|strong=\"H6965\"* anointed|strong=\"H5480\"* himself|strong=\"H7812\"*, and|strong=\"H6965\"* changed|strong=\"H2498\"* his|strong=\"H7760\"* clothing|strong=\"H8071\"*; and|strong=\"H6965\"* he|strong=\"H3068\"* came|strong=\"H3068\"* into|strong=\"H7760\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H6965\"* worshiped|strong=\"H7812\"*. Then|strong=\"H6965\"* he|strong=\"H3068\"* came|strong=\"H3068\"* to|strong=\"H3068\"* his|strong=\"H7760\"* own house|strong=\"H1004\"*; and|strong=\"H6965\"* when|strong=\"H3068\"* he|strong=\"H3068\"* requested|strong=\"H7592\"*, they|strong=\"H3068\"* set|strong=\"H7760\"* bread|strong=\"H3899\"* before|strong=\"H6965\"* him|strong=\"H7760\"* and|strong=\"H6965\"* he|strong=\"H3068\"* ate." + }, + { + "verseNum": 21, + "text": "Then|strong=\"H6965\"* his|strong=\"H6965\"* servants|strong=\"H5650\"* said|strong=\"H1697\"* to|strong=\"H4191\"* him|strong=\"H6213\"*, “What|strong=\"H4100\"* is|strong=\"H2088\"* this|strong=\"H2088\"* that|strong=\"H1697\"* you|strong=\"H6213\"* have|strong=\"H5650\"* done|strong=\"H6213\"*? You|strong=\"H6213\"* fasted|strong=\"H6684\"* and|strong=\"H6965\"* wept|strong=\"H1058\"* for|strong=\"H6213\"* the|strong=\"H6213\"* child|strong=\"H3206\"* while|strong=\"H2088\"* he|strong=\"H6213\"* was|strong=\"H1697\"* alive|strong=\"H2416\"*, but|strong=\"H4191\"* when|strong=\"H6213\"* the|strong=\"H6213\"* child|strong=\"H3206\"* was|strong=\"H1697\"* dead|strong=\"H4191\"*, you|strong=\"H6213\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* ate bread|strong=\"H3899\"*.”" + }, + { + "verseNum": 22, + "text": "He|strong=\"H3588\"* said, “While|strong=\"H5750\"* the|strong=\"H3588\"* child|strong=\"H3206\"* was|strong=\"H3068\"* yet|strong=\"H5750\"* alive|strong=\"H2416\"*, I|strong=\"H3588\"* fasted|strong=\"H6684\"* and|strong=\"H3068\"* wept|strong=\"H1058\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* said, ‘Who|strong=\"H4310\"* knows|strong=\"H3045\"* whether|strong=\"H3045\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3045\"* be|strong=\"H5750\"* gracious|strong=\"H2603\"* to|strong=\"H3068\"* me|strong=\"H2603\"*, that|strong=\"H3588\"* the|strong=\"H3588\"* child|strong=\"H3206\"* may|strong=\"H3068\"* live|strong=\"H2416\"*?’" + }, + { + "verseNum": 23, + "text": "But|strong=\"H3808\"* now|strong=\"H6258\"* he|strong=\"H1931\"* is|strong=\"H2088\"* dead|strong=\"H4191\"*. Why|strong=\"H4100\"* should|strong=\"H4100\"* I|strong=\"H6258\"* fast|strong=\"H6684\"*? Can|strong=\"H3201\"* I|strong=\"H6258\"* bring|strong=\"H7725\"* him|strong=\"H7725\"* back|strong=\"H7725\"* again|strong=\"H7725\"*? I|strong=\"H6258\"* will|strong=\"H3808\"* go|strong=\"H1980\"* to|strong=\"H1980\"* him|strong=\"H7725\"*, but|strong=\"H3808\"* he|strong=\"H1931\"* will|strong=\"H3808\"* not|strong=\"H3808\"* return|strong=\"H7725\"* to|strong=\"H1980\"* me|strong=\"H7725\"*.”" + }, + { + "verseNum": 24, + "text": "David|strong=\"H1732\"* comforted|strong=\"H5162\"* Bathsheba|strong=\"H1339\"* his|strong=\"H3068\"* wife, and|strong=\"H1121\"* went|strong=\"H1732\"* in|strong=\"H3068\"* to|strong=\"H3068\"* her|strong=\"H7121\"*, and|strong=\"H1121\"* lay|strong=\"H7901\"* with|strong=\"H5973\"* her|strong=\"H7121\"*. She|strong=\"H7121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* called|strong=\"H7121\"* his|strong=\"H3068\"* name|strong=\"H8034\"* Solomon|strong=\"H8010\"*. Yahweh|strong=\"H3068\"* loved him|strong=\"H3205\"*;" + }, + { + "verseNum": 25, + "text": "and|strong=\"H3068\"* he|strong=\"H3068\"* sent|strong=\"H7971\"* by|strong=\"H3027\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Nathan|strong=\"H5416\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Jedidiah|strong=\"H3041\"*,+ 12:25 “Jedidiah” means “loved by Yahweh”.* for|strong=\"H7121\"* Yahweh|strong=\"H3068\"*’s sake|strong=\"H5668\"*." + }, + { + "verseNum": 26, + "text": "Now Joab|strong=\"H3097\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* Rabbah|strong=\"H7237\"* of|strong=\"H1121\"* the|strong=\"H3920\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* took|strong=\"H3920\"* the|strong=\"H3920\"* royal|strong=\"H4410\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 27, + "text": "Joab|strong=\"H3097\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* David|strong=\"H1732\"*, and|strong=\"H7971\"* said, “I|strong=\"H1571\"* have|strong=\"H1571\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* Rabbah|strong=\"H7237\"*. Yes|strong=\"H1571\"*, I|strong=\"H1571\"* have|strong=\"H1571\"* taken|strong=\"H3920\"* the|strong=\"H7971\"* city|strong=\"H5892\"* of|strong=\"H5892\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 28, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* gather the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H5892\"* the|strong=\"H5921\"* people|strong=\"H5971\"* together|strong=\"H5921\"*, and|strong=\"H5971\"* encamp|strong=\"H2583\"* against|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"* and|strong=\"H5971\"* take|strong=\"H3920\"* it|strong=\"H7121\"*; lest|strong=\"H6435\"* I|strong=\"H5921\"* take|strong=\"H3920\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, and|strong=\"H5971\"* it|strong=\"H7121\"* be|strong=\"H8034\"* called|strong=\"H7121\"* by|strong=\"H5921\"* my|strong=\"H5921\"* name|strong=\"H8034\"*.”" + }, + { + "verseNum": 29, + "text": "David|strong=\"H1732\"* gathered|strong=\"H1732\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* together|strong=\"H3920\"* and|strong=\"H3212\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Rabbah|strong=\"H7237\"*, and|strong=\"H3212\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* it|strong=\"H3920\"* and|strong=\"H3212\"* took|strong=\"H3920\"* it|strong=\"H3920\"*." + }, + { + "verseNum": 30, + "text": "He|strong=\"H1732\"* took|strong=\"H3947\"* the|strong=\"H5921\"* crown|strong=\"H5850\"* of|strong=\"H4428\"* their|strong=\"H3947\"* king|strong=\"H4428\"* from|strong=\"H3318\"* off|strong=\"H5921\"* his|strong=\"H3947\"* head|strong=\"H7218\"*; and|strong=\"H4428\"* its|strong=\"H5921\"* weight|strong=\"H4948\"* was|strong=\"H1961\"* a|strong=\"H3068\"* talent|strong=\"H3603\"*+ 12:30 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces* of|strong=\"H4428\"* gold|strong=\"H2091\"*, and|strong=\"H4428\"* in|strong=\"H5921\"* it|strong=\"H5921\"* were|strong=\"H1961\"* precious|strong=\"H3368\"* stones; and|strong=\"H4428\"* it|strong=\"H5921\"* was|strong=\"H1961\"* set|strong=\"H3318\"* on|strong=\"H5921\"* David|strong=\"H1732\"*’s head|strong=\"H7218\"*. He|strong=\"H1732\"* brought|strong=\"H3318\"* a|strong=\"H3068\"* great|strong=\"H3966\"* quantity of|strong=\"H4428\"* plunder|strong=\"H7998\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H5921\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"H3651\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* in|strong=\"H6213\"* it|strong=\"H7760\"*, and|strong=\"H1121\"* put|strong=\"H7760\"* them|strong=\"H7725\"* to|strong=\"H7725\"* work|strong=\"H6213\"* under|strong=\"H6213\"* saws|strong=\"H4050\"*, under|strong=\"H6213\"* iron|strong=\"H1270\"* picks|strong=\"H2757\"*, under|strong=\"H6213\"* axes|strong=\"H4037\"* of|strong=\"H1121\"* iron|strong=\"H1270\"*, and|strong=\"H1121\"* made|strong=\"H6213\"* them|strong=\"H7725\"* go|strong=\"H3318\"* to|strong=\"H7725\"* the|strong=\"H3605\"* brick|strong=\"H4404\"* kiln; and|strong=\"H1121\"* he|strong=\"H3651\"* did|strong=\"H6213\"* so|strong=\"H3651\"* to|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*. Then|strong=\"H3318\"* David|strong=\"H1732\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* this|strong=\"H3651\"*, Absalom the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"* had|strong=\"H1961\"* a|strong=\"H3068\"* beautiful|strong=\"H3303\"* sister, whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Tamar|strong=\"H8559\"*; and|strong=\"H1121\"* Amnon the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"* loved her|strong=\"H1961\"*." + }, + { + "verseNum": 2, + "text": "Amnon was|strong=\"H1931\"* so|strong=\"H6213\"* troubled that|strong=\"H3588\"* he|strong=\"H1931\"* became|strong=\"H2470\"* sick|strong=\"H2470\"* because|strong=\"H3588\"* of|strong=\"H5869\"* his|strong=\"H6213\"* sister Tamar|strong=\"H8559\"*, for|strong=\"H3588\"* she|strong=\"H1931\"* was|strong=\"H1931\"* a|strong=\"H3068\"* virgin|strong=\"H1330\"*, and|strong=\"H5869\"* it|strong=\"H1931\"* seemed|strong=\"H5869\"* hard|strong=\"H6381\"* to|strong=\"H6213\"* Amnon to|strong=\"H6213\"* do|strong=\"H6213\"* anything|strong=\"H3972\"* to|strong=\"H6213\"* her|strong=\"H1931\"*." + }, + { + "verseNum": 3, + "text": "But Amnon had|strong=\"H1732\"* a|strong=\"H3068\"* friend|strong=\"H7453\"* whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Jonadab|strong=\"H3122\"* the|strong=\"H1732\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimeah|strong=\"H8093\"*, David|strong=\"H1732\"*’s brother|strong=\"H7453\"*; and|strong=\"H1121\"* Jonadab|strong=\"H3122\"* was|strong=\"H8034\"* a|strong=\"H3068\"* very|strong=\"H3966\"* subtle man|strong=\"H2450\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3808\"* said to|strong=\"H1121\"* him|strong=\"H5046\"*, “Why|strong=\"H4069\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5046\"* king|strong=\"H4428\"*, are|strong=\"H1121\"* you|strong=\"H5046\"* so|strong=\"H3602\"* sad from|strong=\"H1121\"* day|strong=\"H1242\"* to|strong=\"H1121\"* day|strong=\"H1242\"*? Won’t you|strong=\"H5046\"* tell|strong=\"H5046\"* me|strong=\"H5046\"*?”" + }, + { + "verseNum": 5, + "text": "Jonadab|strong=\"H3082\"* said to|strong=\"H6213\"* him|strong=\"H5921\"*, “Lay|strong=\"H7901\"* down|strong=\"H7901\"* on|strong=\"H5921\"* your|strong=\"H5921\"* bed|strong=\"H4904\"* and|strong=\"H3027\"* pretend|strong=\"H2470\"* to|strong=\"H6213\"* be|strong=\"H3027\"* sick|strong=\"H2470\"*. When|strong=\"H7200\"* your|strong=\"H5921\"* father comes to|strong=\"H6213\"* see|strong=\"H7200\"* you|strong=\"H5921\"*, tell|strong=\"H4994\"* him|strong=\"H5921\"*, ‘Please|strong=\"H4994\"* let|strong=\"H4994\"* my|strong=\"H7200\"* sister Tamar|strong=\"H8559\"* come|strong=\"H4994\"* and|strong=\"H3027\"* give|strong=\"H4994\"* me|strong=\"H4994\"* bread|strong=\"H3899\"* to|strong=\"H6213\"* eat|strong=\"H1262\"*, and|strong=\"H3027\"* prepare|strong=\"H6213\"* the|strong=\"H5921\"* food|strong=\"H3899\"* in|strong=\"H5921\"* my|strong=\"H7200\"* sight|strong=\"H5869\"*, that|strong=\"H7200\"* I|strong=\"H5921\"* may|strong=\"H4994\"* see|strong=\"H7200\"* it|strong=\"H5921\"* and|strong=\"H3027\"* eat|strong=\"H1262\"* it|strong=\"H5921\"* from|strong=\"H5921\"* her|strong=\"H5921\"* hand|strong=\"H3027\"*.’”" + }, + { + "verseNum": 6, + "text": "So|strong=\"H7200\"* Amnon lay|strong=\"H7901\"* down|strong=\"H7901\"* and|strong=\"H4428\"* faked being sick|strong=\"H2470\"*. When|strong=\"H7200\"* the|strong=\"H7200\"* king|strong=\"H4428\"* came|strong=\"H4428\"* to|strong=\"H3027\"* see|strong=\"H7200\"* him|strong=\"H3027\"*, Amnon said to|strong=\"H3027\"* the|strong=\"H7200\"* king|strong=\"H4428\"*, “Please|strong=\"H4994\"* let|strong=\"H4994\"* my|strong=\"H7200\"* sister Tamar|strong=\"H8559\"* come|strong=\"H4994\"* and|strong=\"H4428\"* make|strong=\"H7200\"* me|strong=\"H4994\"* a|strong=\"H3068\"* couple|strong=\"H8147\"* of|strong=\"H4428\"* cakes|strong=\"H3834\"* in|strong=\"H4428\"* my|strong=\"H7200\"* sight|strong=\"H5869\"*, that|strong=\"H7200\"* I|strong=\"H7200\"* may|strong=\"H4994\"* eat|strong=\"H1262\"* from|strong=\"H3027\"* her|strong=\"H7200\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 7, + "text": "Then|strong=\"H7971\"* David|strong=\"H1732\"* sent|strong=\"H7971\"* home|strong=\"H1004\"* to|strong=\"H3212\"* Tamar|strong=\"H8559\"*, saying, “Go|strong=\"H3212\"* now|strong=\"H4994\"* to|strong=\"H3212\"* your|strong=\"H6213\"* brother Amnon’s house|strong=\"H1004\"*, and|strong=\"H7971\"* prepare|strong=\"H6213\"* food|strong=\"H1279\"* for|strong=\"H6213\"* him|strong=\"H7971\"*.”" + }, + { + "verseNum": 8, + "text": "So|strong=\"H3947\"* Tamar|strong=\"H8559\"* went|strong=\"H3212\"* to|strong=\"H3212\"* her|strong=\"H3947\"* brother Amnon’s house|strong=\"H1004\"*; and|strong=\"H1004\"* he|strong=\"H1931\"* was|strong=\"H1931\"* lying|strong=\"H7901\"* down|strong=\"H7901\"*. She|strong=\"H1931\"* took|strong=\"H3947\"* dough|strong=\"H1217\"*, kneaded|strong=\"H3888\"* it|strong=\"H1931\"*, made|strong=\"H3947\"* cakes|strong=\"H3834\"* in|strong=\"H1004\"* his|strong=\"H3947\"* sight|strong=\"H5869\"*, and|strong=\"H1004\"* baked|strong=\"H1310\"* the|strong=\"H3947\"* cakes|strong=\"H3834\"*." + }, + { + "verseNum": 9, + "text": "She|strong=\"H5921\"* took|strong=\"H3947\"* the|strong=\"H3605\"* pan|strong=\"H4958\"* and|strong=\"H6440\"* poured|strong=\"H3332\"* them|strong=\"H5921\"* out|strong=\"H3318\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, but|strong=\"H3947\"* he|strong=\"H3605\"* refused|strong=\"H3985\"* to|strong=\"H3318\"* eat. Amnon said|strong=\"H3318\"*, “Have|strong=\"H3605\"* all|strong=\"H3605\"* men|strong=\"H3605\"* leave|strong=\"H3318\"* me|strong=\"H6440\"*.” Then|strong=\"H3318\"* every|strong=\"H3605\"* man|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "Amnon said to|strong=\"H6213\"* Tamar|strong=\"H8559\"*, “Bring|strong=\"H3947\"* the|strong=\"H3947\"* food|strong=\"H1279\"* into|strong=\"H6213\"* the|strong=\"H3947\"* room|strong=\"H2315\"*, that|strong=\"H3027\"* I|strong=\"H3027\"* may|strong=\"H6213\"* eat|strong=\"H1262\"* from|strong=\"H3027\"* your|strong=\"H3947\"* hand|strong=\"H3027\"*.” Tamar|strong=\"H8559\"* took|strong=\"H3947\"* the|strong=\"H3947\"* cakes|strong=\"H3834\"* which she had|strong=\"H3027\"* made|strong=\"H6213\"*, and|strong=\"H3027\"* brought|strong=\"H3947\"* them|strong=\"H3027\"* into|strong=\"H6213\"* the|strong=\"H3947\"* room|strong=\"H2315\"* to|strong=\"H6213\"* Amnon her|strong=\"H3947\"* brother." + }, + { + "verseNum": 11, + "text": "When|strong=\"H7901\"* she|strong=\"H5973\"* had brought|strong=\"H5066\"* them|strong=\"H2388\"* near|strong=\"H5066\"* to|strong=\"H5066\"* him|strong=\"H5973\"* to|strong=\"H5066\"* eat, he took|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H2388\"* her|strong=\"H7901\"* and|strong=\"H2388\"* said to|strong=\"H5066\"* her|strong=\"H7901\"*, “Come|strong=\"H5066\"*, lie|strong=\"H7901\"* with|strong=\"H5973\"* me|strong=\"H5973\"*, my|strong=\"H2388\"* sister!”" + }, + { + "verseNum": 12, + "text": "She|strong=\"H3588\"* answered him|strong=\"H6213\"*, “No|strong=\"H3808\"*, my|strong=\"H6213\"* brother, do|strong=\"H6213\"* not|strong=\"H3808\"* force|strong=\"H6031\"* me|strong=\"H6213\"*! For|strong=\"H3588\"* no|strong=\"H3808\"* such|strong=\"H3651\"* thing|strong=\"H5039\"* ought|strong=\"H3651\"* to|strong=\"H3478\"* be|strong=\"H3808\"* done|strong=\"H6213\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*. Don’t you|strong=\"H3588\"* do|strong=\"H6213\"* this|strong=\"H2063\"* folly|strong=\"H5039\"*!" + }, + { + "verseNum": 13, + "text": "As|strong=\"H1961\"* for|strong=\"H3588\"* me|strong=\"H4994\"*, where|strong=\"H4480\"* would|strong=\"H3478\"* I|strong=\"H3588\"* carry|strong=\"H3212\"* my|strong=\"H1961\"* shame|strong=\"H2781\"*? And|strong=\"H3478\"* as|strong=\"H1961\"* for|strong=\"H3588\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* one|strong=\"H3808\"* of|strong=\"H4428\"* the|strong=\"H3588\"* fools|strong=\"H5036\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* king|strong=\"H4428\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* withhold|strong=\"H4513\"* me|strong=\"H4994\"* from|strong=\"H4480\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 14, + "text": "However|strong=\"H8085\"*, he|strong=\"H4480\"* would not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H8085\"* her|strong=\"H6031\"* voice|strong=\"H6963\"*; but|strong=\"H3808\"* being stronger|strong=\"H2388\"* than|strong=\"H4480\"* she|strong=\"H7901\"*, he|strong=\"H4480\"* forced|strong=\"H6031\"* her|strong=\"H6031\"* and|strong=\"H6963\"* lay|strong=\"H7901\"* with|strong=\"H7901\"* her|strong=\"H6031\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H6965\"* Amnon hated|strong=\"H8130\"* her|strong=\"H8130\"* with|strong=\"H3212\"* exceedingly|strong=\"H3966\"* great|strong=\"H1419\"* hatred|strong=\"H8135\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* hatred|strong=\"H8135\"* with|strong=\"H3212\"* which|strong=\"H3588\"* he|strong=\"H3588\"* hated|strong=\"H8130\"* her|strong=\"H8130\"* was|strong=\"H3966\"* greater|strong=\"H1419\"* than|strong=\"H1419\"* the|strong=\"H3588\"* love with|strong=\"H3212\"* which|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3588\"* loved her|strong=\"H8130\"*. Amnon said to|strong=\"H3212\"* her|strong=\"H8130\"*, “Arise|strong=\"H6965\"*, be|strong=\"H8130\"* gone|strong=\"H3212\"*!”" + }, + { + "verseNum": 16, + "text": "She|strong=\"H2063\"* said|strong=\"H8085\"* to|strong=\"H7971\"* him|strong=\"H7971\"*, “Not|strong=\"H3808\"* so|strong=\"H6213\"*, because|strong=\"H5973\"* this|strong=\"H2063\"* great|strong=\"H1419\"* wrong|strong=\"H7451\"* in|strong=\"H6213\"* sending|strong=\"H7971\"* me|strong=\"H7971\"* away|strong=\"H7971\"* is|strong=\"H7451\"* worse|strong=\"H7451\"* than|strong=\"H3808\"* the|strong=\"H8085\"* other|strong=\"H2063\"* that|strong=\"H8085\"* you|strong=\"H7971\"* did|strong=\"H6213\"* to|strong=\"H7971\"* me|strong=\"H7971\"*!”" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H7971\"* he|strong=\"H5921\"* called|strong=\"H7121\"* his|strong=\"H7121\"* servant|strong=\"H5288\"* who|strong=\"H5288\"* ministered|strong=\"H8334\"* to|strong=\"H7971\"* him|strong=\"H7121\"*, and|strong=\"H7971\"* said|strong=\"H7121\"*, “Now|strong=\"H4994\"* put|strong=\"H7971\"* this|strong=\"H2063\"* woman out|strong=\"H7971\"* from|strong=\"H5921\"* me|strong=\"H4994\"*, and|strong=\"H7971\"* bolt|strong=\"H5274\"* the|strong=\"H5921\"* door|strong=\"H1817\"* after|strong=\"H5921\"* her|strong=\"H7971\"*.”" + }, + { + "verseNum": 18, + "text": "She|strong=\"H3588\"* had|strong=\"H4428\"* a|strong=\"H3068\"* garment|strong=\"H3801\"* of|strong=\"H4428\"* various colors on|strong=\"H5921\"* her|strong=\"H5921\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s daughters|strong=\"H1323\"* who|strong=\"H4428\"* were|strong=\"H1323\"* virgins|strong=\"H1330\"* dressed|strong=\"H3847\"* in|strong=\"H5921\"* such|strong=\"H3651\"* robes|strong=\"H4598\"*. Then|strong=\"H3318\"* his|strong=\"H5921\"* servant|strong=\"H8334\"* brought|strong=\"H3318\"* her|strong=\"H5921\"* out|strong=\"H3318\"* and|strong=\"H4428\"* bolted|strong=\"H5274\"* the|strong=\"H5921\"* door|strong=\"H1817\"* after|strong=\"H5921\"* her|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "Tamar|strong=\"H8559\"* put|strong=\"H7760\"* ashes on|strong=\"H5921\"* her|strong=\"H3947\"* head|strong=\"H7218\"*, and|strong=\"H1980\"* tore|strong=\"H7167\"* her|strong=\"H3947\"* garment|strong=\"H3801\"* of|strong=\"H3027\"* various colors that|strong=\"H3027\"* was|strong=\"H3027\"* on|strong=\"H5921\"* her|strong=\"H3947\"*; and|strong=\"H1980\"* she|strong=\"H5921\"* laid|strong=\"H7760\"* her|strong=\"H3947\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* her|strong=\"H3947\"* head|strong=\"H7218\"* and|strong=\"H1980\"* went|strong=\"H1980\"* her|strong=\"H3947\"* way|strong=\"H3212\"*, crying|strong=\"H2199\"* aloud|strong=\"H2199\"* as|strong=\"H1980\"* she|strong=\"H5921\"* went|strong=\"H1980\"*." + }, + { + "verseNum": 20, + "text": "Absalom her|strong=\"H7896\"* brother said|strong=\"H1697\"* to|strong=\"H1961\"* her|strong=\"H7896\"*, “Has|strong=\"H1961\"* Amnon your|strong=\"H1961\"* brother been|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H5973\"*? But|strong=\"H1961\"* now|strong=\"H6258\"* hold|strong=\"H1004\"* your|strong=\"H1961\"* peace|strong=\"H2790\"*, my|strong=\"H1961\"* sister. He|strong=\"H1931\"* is|strong=\"H2088\"* your|strong=\"H1961\"* brother. Don’t take|strong=\"H1961\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* to|strong=\"H1961\"* heart|strong=\"H3820\"*.”" + }, + { + "verseNum": 21, + "text": "But|strong=\"H8085\"* when|strong=\"H8085\"* King|strong=\"H4428\"* David|strong=\"H1732\"* heard|strong=\"H8085\"* of|strong=\"H4428\"* all|strong=\"H3605\"* these|strong=\"H8085\"* things|strong=\"H1697\"*, he|strong=\"H3605\"* was|strong=\"H1732\"* very|strong=\"H3966\"* angry|strong=\"H2734\"*." + }, + { + "verseNum": 22, + "text": "Absalom spoke|strong=\"H1696\"* to|strong=\"H1696\"* Amnon neither|strong=\"H3808\"* good|strong=\"H2896\"* nor|strong=\"H3808\"* bad|strong=\"H7451\"*; for|strong=\"H3588\"* Absalom hated|strong=\"H8130\"* Amnon, because|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3588\"* forced|strong=\"H6031\"* his|strong=\"H5921\"* sister Tamar|strong=\"H8559\"*." + }, + { + "verseNum": 23, + "text": "After|strong=\"H1961\"* two full|strong=\"H3117\"* years|strong=\"H8141\"*, Absalom had|strong=\"H1961\"* sheep shearers|strong=\"H1494\"* in|strong=\"H8141\"* Baal Hazor, which|strong=\"H3117\"* is|strong=\"H3117\"* beside|strong=\"H5973\"* Ephraim; and|strong=\"H1121\"* Absalom invited|strong=\"H7121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"*." + }, + { + "verseNum": 24, + "text": "Absalom came|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H5973\"* king|strong=\"H4428\"* and|strong=\"H4428\"* said, “See|strong=\"H2009\"* now|strong=\"H4994\"*, your|strong=\"H4994\"* servant|strong=\"H5650\"* has|strong=\"H4428\"* sheep shearers|strong=\"H1494\"*. Please|strong=\"H4994\"* let|strong=\"H4994\"* the|strong=\"H5973\"* king|strong=\"H4428\"* and|strong=\"H4428\"* his|strong=\"H1494\"* servants|strong=\"H5650\"* go|strong=\"H3212\"* with|strong=\"H5973\"* your|strong=\"H4994\"* servant|strong=\"H5650\"*.”" + }, + { + "verseNum": 25, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* said to|strong=\"H3212\"* Absalom, “No|strong=\"H3808\"*, my|strong=\"H3605\"* son|strong=\"H1121\"*, let|strong=\"H4994\"*’s not|strong=\"H3808\"* all|strong=\"H3605\"* go|strong=\"H3212\"*, lest we|strong=\"H3068\"* be|strong=\"H3808\"* burdensome|strong=\"H3513\"* to|strong=\"H3212\"* you|strong=\"H3605\"*.” He|strong=\"H3605\"* pressed|strong=\"H6555\"* him|strong=\"H5921\"*; however he|strong=\"H3605\"* would|strong=\"H4428\"* not|strong=\"H3808\"* go|strong=\"H3212\"*, but|strong=\"H3808\"* blessed|strong=\"H1288\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 26, + "text": "Then|strong=\"H4428\"* Absalom said, “If not|strong=\"H3808\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* my|strong=\"H3808\"* brother Amnon go|strong=\"H3212\"* with|strong=\"H5973\"* us|strong=\"H4994\"*.”" + }, + { + "verseNum": 27, + "text": "But|strong=\"H3605\"* Absalom pressed|strong=\"H6555\"* him|strong=\"H7971\"*, and|strong=\"H1121\"* he|strong=\"H3605\"* let|strong=\"H7971\"* Amnon and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"* go|strong=\"H7971\"* with|strong=\"H4428\"* him|strong=\"H7971\"*." + }, + { + "verseNum": 28, + "text": "Absalom commanded|strong=\"H6680\"* his|strong=\"H7200\"* servants|strong=\"H5288\"*, saying, “Mark|strong=\"H7200\"* now|strong=\"H4994\"*, when|strong=\"H3588\"* Amnon’s heart|strong=\"H3820\"* is|strong=\"H3820\"* merry|strong=\"H2896\"* with|strong=\"H4191\"* wine|strong=\"H3196\"*; and|strong=\"H1121\"* when|strong=\"H3588\"* I|strong=\"H3588\"* tell|strong=\"H4994\"* you|strong=\"H3588\"*, ‘Strike|strong=\"H5221\"* Amnon,’ then|strong=\"H1961\"* kill|strong=\"H4191\"* him|strong=\"H5221\"*. Don’t be|strong=\"H1961\"* afraid|strong=\"H3372\"*. Haven’t I|strong=\"H3588\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*? Be|strong=\"H1961\"* courageous|strong=\"H2388\"*, and|strong=\"H1121\"* be|strong=\"H1961\"* valiant|strong=\"H2428\"*!”" + }, + { + "verseNum": 29, + "text": "The|strong=\"H3605\"* servants|strong=\"H5288\"* of|strong=\"H1121\"* Absalom did|strong=\"H6213\"* to|strong=\"H6213\"* Amnon as|strong=\"H6213\"* Absalom had|strong=\"H4428\"* commanded|strong=\"H6680\"*. Then|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"* arose|strong=\"H6965\"*, and|strong=\"H1121\"* every|strong=\"H3605\"* man|strong=\"H5288\"* got|strong=\"H6965\"* up|strong=\"H6965\"* on|strong=\"H5921\"* his|strong=\"H3605\"* mule|strong=\"H6505\"* and|strong=\"H1121\"* fled|strong=\"H5127\"*." + }, + { + "verseNum": 30, + "text": "While|strong=\"H1961\"* they|strong=\"H1992\"* were|strong=\"H1961\"* on|strong=\"H1870\"* the|strong=\"H3605\"* way|strong=\"H1870\"*, the|strong=\"H3605\"* news|strong=\"H8052\"* came|strong=\"H1961\"* to|strong=\"H1961\"* David|strong=\"H1732\"*, saying, “Absalom has|strong=\"H1961\"* slain|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"*, and|strong=\"H1121\"* there|strong=\"H1961\"* is|strong=\"H1870\"* not|strong=\"H3808\"* one|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H1992\"* left|strong=\"H3498\"*!”" + }, + { + "verseNum": 31, + "text": "Then|strong=\"H6965\"* the|strong=\"H3605\"* king|strong=\"H4428\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* tore|strong=\"H7167\"* his|strong=\"H3605\"* garments, and|strong=\"H6965\"* lay|strong=\"H7901\"* on|strong=\"H6965\"* the|strong=\"H3605\"* earth; and|strong=\"H6965\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* stood|strong=\"H5324\"* by|strong=\"H6965\"* with|strong=\"H7901\"* their|strong=\"H3605\"* clothes torn|strong=\"H7167\"*." + }, + { + "verseNum": 32, + "text": "Jonadab|strong=\"H3122\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimeah|strong=\"H8093\"*, David|strong=\"H1732\"*’s brother, answered|strong=\"H6030\"*, “Don’t let|strong=\"H7760\"* my|strong=\"H3605\"* lord suppose|strong=\"H3588\"* that|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1961\"* killed|strong=\"H4191\"* all|strong=\"H3605\"* the|strong=\"H3605\"* young|strong=\"H5288\"* men|strong=\"H5288\"*, the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"*, for|strong=\"H3588\"* Amnon only|strong=\"H3588\"* is|strong=\"H3117\"* dead|strong=\"H4191\"*; for|strong=\"H3588\"* by|strong=\"H5921\"* the|strong=\"H3605\"* appointment|strong=\"H6310\"* of|strong=\"H1121\"* Absalom this|strong=\"H3588\"* has|strong=\"H1961\"* been|strong=\"H1961\"* determined|strong=\"H7760\"* from|strong=\"H5921\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3588\"* he|strong=\"H3588\"* forced|strong=\"H6031\"* his|strong=\"H3605\"* sister Tamar|strong=\"H8559\"*." + }, + { + "verseNum": 33, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* don’t let|strong=\"H6258\"* my|strong=\"H3605\"* lord the|strong=\"H3605\"* king|strong=\"H4428\"* take|strong=\"H7760\"* the|strong=\"H3605\"* thing|strong=\"H1697\"* to|strong=\"H4191\"* his|strong=\"H3605\"* heart|strong=\"H3820\"*, to|strong=\"H4191\"* think|strong=\"H3820\"* that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"* are|strong=\"H1121\"* dead|strong=\"H4191\"*; for|strong=\"H3588\"* only|strong=\"H3588\"* Amnon is|strong=\"H3820\"* dead|strong=\"H4191\"*.”" + }, + { + "verseNum": 34, + "text": "But|strong=\"H7200\"* Absalom fled|strong=\"H1272\"*. The|strong=\"H7200\"* young|strong=\"H5288\"* man|strong=\"H5288\"* who|strong=\"H5971\"* kept the|strong=\"H7200\"* watch|strong=\"H6822\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"* and|strong=\"H1980\"* looked|strong=\"H7200\"*, and|strong=\"H1980\"* behold|strong=\"H2009\"*, many|strong=\"H7227\"* people|strong=\"H5971\"* were|strong=\"H5971\"* coming|strong=\"H1980\"* by|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H2022\"* the|strong=\"H7200\"* hillside behind|strong=\"H1980\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 35, + "text": "Jonadab|strong=\"H3122\"* said|strong=\"H1697\"* to|strong=\"H1961\"* the|strong=\"H1697\"* king|strong=\"H4428\"*, “Behold|strong=\"H2009\"*, the|strong=\"H1697\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"* are|strong=\"H1121\"* coming|strong=\"H2009\"*! It|strong=\"H3651\"* is|strong=\"H1697\"* as|strong=\"H1697\"* your|strong=\"H1961\"* servant|strong=\"H5650\"* said|strong=\"H1697\"*.”" + }, + { + "verseNum": 36, + "text": "As|strong=\"H1961\"* soon as|strong=\"H1961\"* he|strong=\"H3605\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* speaking|strong=\"H1696\"*, behold|strong=\"H2009\"*, the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"* came|strong=\"H1961\"*, and|strong=\"H1121\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H3605\"* voices|strong=\"H6963\"* and|strong=\"H1121\"* wept|strong=\"H1058\"*. The|strong=\"H3605\"* king|strong=\"H4428\"* also|strong=\"H1571\"* and|strong=\"H1121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* wept|strong=\"H1058\"* bitterly|strong=\"H1419\"*." + }, + { + "verseNum": 37, + "text": "But|strong=\"H3605\"* Absalom fled|strong=\"H1272\"* and|strong=\"H1121\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Talmai|strong=\"H8526\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammihur, king|strong=\"H4428\"* of|strong=\"H1121\"* Geshur|strong=\"H1650\"*. David|strong=\"H3117\"* mourned for|strong=\"H5921\"* his|strong=\"H3605\"* son|strong=\"H1121\"* every|strong=\"H3605\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 38, + "text": "So|strong=\"H1961\"* Absalom fled|strong=\"H1272\"* and|strong=\"H3212\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Geshur|strong=\"H1650\"*, and|strong=\"H3212\"* was|strong=\"H1961\"* there|strong=\"H8033\"* three|strong=\"H7969\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 39, + "text": "King|strong=\"H4428\"* David|strong=\"H1732\"* longed|strong=\"H3615\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* Absalom, for|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H1732\"* comforted|strong=\"H5162\"* concerning|strong=\"H5921\"* Amnon, since|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H1732\"* dead|strong=\"H4191\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3588\"* Joab|strong=\"H3097\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* perceived|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s heart|strong=\"H3820\"* was|strong=\"H3820\"* toward|strong=\"H5921\"* Absalom." + }, + { + "verseNum": 2, + "text": "Joab|strong=\"H3097\"* sent|strong=\"H7971\"* to|strong=\"H4191\"* Tekoa|strong=\"H8620\"* and|strong=\"H7971\"* brought|strong=\"H3947\"* a|strong=\"H3068\"* wise|strong=\"H2450\"* woman|strong=\"H2088\"* from|strong=\"H5921\"* there|strong=\"H8033\"*, and|strong=\"H7971\"* said to|strong=\"H4191\"* her|strong=\"H7971\"*, “Please|strong=\"H4994\"* act|strong=\"H4994\"* like|strong=\"H1961\"* a|strong=\"H3068\"* mourner, and|strong=\"H7971\"* put|strong=\"H4191\"* on|strong=\"H5921\"* mourning clothing|strong=\"H3847\"*, please|strong=\"H4994\"*, and|strong=\"H7971\"* don’t anoint|strong=\"H5480\"* yourself|strong=\"H3847\"* with|strong=\"H3847\"* oil|strong=\"H8081\"*; but|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H3117\"* a|strong=\"H3068\"* woman|strong=\"H2088\"* who|strong=\"H7227\"* has|strong=\"H1961\"* mourned a|strong=\"H3068\"* long|strong=\"H3117\"* time|strong=\"H3117\"* for|strong=\"H5921\"* the|strong=\"H5921\"* dead|strong=\"H4191\"*." + }, + { + "verseNum": 3, + "text": "Go|strong=\"H4428\"* in|strong=\"H4428\"* to|strong=\"H1696\"* the|strong=\"H7760\"* king|strong=\"H4428\"* and|strong=\"H4428\"* speak|strong=\"H1696\"* like|strong=\"H1697\"* this|strong=\"H2088\"* to|strong=\"H1696\"* him|strong=\"H7760\"*.” So|strong=\"H2088\"* Joab|strong=\"H3097\"* put|strong=\"H7760\"* the|strong=\"H7760\"* words|strong=\"H1697\"* in|strong=\"H4428\"* her|strong=\"H7760\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"H5307\"* the|strong=\"H5921\"* woman of|strong=\"H4428\"* Tekoa|strong=\"H8621\"* spoke to|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, she|strong=\"H5921\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* her|strong=\"H5921\"* face to|strong=\"H5921\"* the|strong=\"H5921\"* ground, showed respect|strong=\"H5921\"*, and|strong=\"H4428\"* said, “Help|strong=\"H3467\"*, O|strong=\"H3068\"* king|strong=\"H4428\"*!”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H4191\"* king|strong=\"H4428\"* said to|strong=\"H4191\"* her|strong=\"H4191\"*, “What|strong=\"H4100\"* ails you|strong=\"H4100\"*?”" + }, + { + "verseNum": 6, + "text": "Your|strong=\"H5221\"* servant|strong=\"H8198\"* had|strong=\"H1121\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*; and|strong=\"H1121\"* they|strong=\"H5221\"* both|strong=\"H8147\"* fought together|strong=\"H5327\"* in|strong=\"H4191\"* the|strong=\"H5221\"* field|strong=\"H7704\"*, and|strong=\"H1121\"* there was|strong=\"H1121\"* no one|strong=\"H1121\"* to|strong=\"H4191\"* part|strong=\"H5337\"* them|strong=\"H5221\"*, but|strong=\"H5221\"* the|strong=\"H5221\"* one|strong=\"H1121\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* other|strong=\"H8147\"* and|strong=\"H1121\"* killed|strong=\"H5221\"* him|strong=\"H5221\"*." + }, + { + "verseNum": 7, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H3605\"* whole|strong=\"H3605\"* family|strong=\"H4940\"* has|strong=\"H1571\"* risen|strong=\"H6965\"* against|strong=\"H5921\"* your|strong=\"H3605\"* servant|strong=\"H8198\"*, and|strong=\"H6965\"* they|strong=\"H5921\"* say, ‘Deliver|strong=\"H5414\"* him|strong=\"H5414\"* who|strong=\"H3605\"* struck|strong=\"H5221\"* his|strong=\"H3605\"* brother, that|strong=\"H3605\"* we|strong=\"H3068\"* may|strong=\"H5315\"* kill|strong=\"H2026\"* him|strong=\"H5414\"* for|strong=\"H5921\"* the|strong=\"H3605\"* life|strong=\"H5315\"* of|strong=\"H6440\"* his|strong=\"H3605\"* brother whom|strong=\"H6440\"* he|strong=\"H3605\"* killed|strong=\"H2026\"*, and|strong=\"H6965\"* so|strong=\"H5414\"* destroy|strong=\"H8045\"* the|strong=\"H3605\"* heir|strong=\"H3423\"* also|strong=\"H1571\"*.’ Thus|strong=\"H4191\"* they|strong=\"H5921\"* would|strong=\"H5315\"* quench|strong=\"H3518\"* my|strong=\"H5414\"* coal|strong=\"H1513\"* which|strong=\"H5315\"* is|strong=\"H5315\"* left|strong=\"H7604\"*, and|strong=\"H6965\"* would|strong=\"H5315\"* leave|strong=\"H7604\"* to|strong=\"H4191\"* my|strong=\"H5414\"* husband neither|strong=\"H1571\"* name|strong=\"H8034\"* nor|strong=\"H1571\"* remainder|strong=\"H7611\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* earth.”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* said to|strong=\"H3212\"* the|strong=\"H5921\"* woman|strong=\"H1004\"*, “Go|strong=\"H3212\"* to|strong=\"H3212\"* your|strong=\"H5921\"* house|strong=\"H1004\"*, and|strong=\"H4428\"* I|strong=\"H5921\"* will|strong=\"H4428\"* give|strong=\"H6680\"* a|strong=\"H3068\"* command|strong=\"H6680\"* concerning|strong=\"H5921\"* you|strong=\"H6680\"*.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H5921\"* woman|strong=\"H1004\"* of|strong=\"H4428\"* Tekoa|strong=\"H8621\"* said to|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, “My|strong=\"H5921\"* lord, O|strong=\"H3068\"* king|strong=\"H4428\"*, may|strong=\"H4428\"* the|strong=\"H5921\"* iniquity|strong=\"H5771\"* be|strong=\"H4428\"* on|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H4428\"* on|strong=\"H5921\"* my|strong=\"H5921\"* father’s house|strong=\"H1004\"*; and|strong=\"H4428\"* may|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* and|strong=\"H4428\"* his|strong=\"H5921\"* throne|strong=\"H3678\"* be|strong=\"H4428\"* guiltless|strong=\"H5355\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H5060\"* king|strong=\"H4428\"* said|strong=\"H1696\"*, “Whoever says|strong=\"H1696\"* anything|strong=\"H3808\"* to|strong=\"H1696\"* you|strong=\"H3808\"*, bring|strong=\"H5060\"* him|strong=\"H4428\"* to|strong=\"H1696\"* me|strong=\"H1696\"*, and|strong=\"H4428\"* he|strong=\"H3808\"* will|strong=\"H4428\"* not|strong=\"H3808\"* bother|strong=\"H5060\"* you|strong=\"H3808\"* any|strong=\"H5750\"* more|strong=\"H3254\"*.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H5307\"* she|strong=\"H3808\"* said, “Please|strong=\"H4994\"* let|strong=\"H4994\"* the|strong=\"H3068\"* king|strong=\"H4428\"* remember|strong=\"H2142\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, that|strong=\"H3068\"* the|strong=\"H3068\"* avenger|strong=\"H1350\"* of|strong=\"H1121\"* blood|strong=\"H1818\"* destroy|strong=\"H7843\"* not|strong=\"H3808\"* any|strong=\"H3808\"* more|strong=\"H7235\"*, lest they|strong=\"H3068\"* destroy|strong=\"H7843\"* my|strong=\"H3068\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H1696\"* the|strong=\"H1697\"* woman said|strong=\"H1696\"*, “Please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H4994\"* servant|strong=\"H8198\"* speak|strong=\"H1696\"* a|strong=\"H3068\"* word|strong=\"H1697\"* to|strong=\"H1696\"* my|strong=\"H1696\"* lord the|strong=\"H1697\"* king|strong=\"H4428\"*.”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H5921\"* woman|strong=\"H2088\"* said|strong=\"H1696\"*, “Why|strong=\"H4100\"* then|strong=\"H1696\"* have|strong=\"H5971\"* you|strong=\"H5921\"* devised|strong=\"H2803\"* such|strong=\"H2088\"* a|strong=\"H3068\"* thing|strong=\"H1697\"* against|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"* of|strong=\"H4428\"* God? For|strong=\"H5921\"* in|strong=\"H5921\"* speaking|strong=\"H1696\"* this|strong=\"H2088\"* word|strong=\"H1697\"* the|strong=\"H5921\"* king|strong=\"H4428\"* is|strong=\"H2088\"* as|strong=\"H1697\"* one|strong=\"H2088\"* who|strong=\"H5971\"* is|strong=\"H2088\"* guilty, in|strong=\"H5921\"* that|strong=\"H5971\"* the|strong=\"H5921\"* king|strong=\"H4428\"* does|strong=\"H4100\"* not|strong=\"H1115\"* bring|strong=\"H7725\"* home|strong=\"H7725\"* again|strong=\"H7725\"* his|strong=\"H7725\"* banished|strong=\"H5080\"* one|strong=\"H2088\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* we|strong=\"H3068\"* must|strong=\"H4191\"* die|strong=\"H4191\"*, and|strong=\"H4325\"* are|strong=\"H4284\"* like|strong=\"H2803\"* water|strong=\"H4325\"* spilled|strong=\"H5064\"* on|strong=\"H4191\"* the|strong=\"H3588\"* ground, which|strong=\"H4325\"* can|strong=\"H3808\"*’t be|strong=\"H4191\"* gathered|strong=\"H3588\"* up|strong=\"H5375\"* again; neither|strong=\"H3808\"* does|strong=\"H3808\"* God|strong=\"H3808\"* take|strong=\"H5375\"* away|strong=\"H5375\"* life|strong=\"H5315\"*, but|strong=\"H3588\"* devises|strong=\"H2803\"* means|strong=\"H4191\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H5315\"* is|strong=\"H5315\"* banished|strong=\"H5080\"* not|strong=\"H3808\"* be|strong=\"H4191\"* an|strong=\"H5375\"* outcast|strong=\"H5080\"* from|strong=\"H4480\"* him|strong=\"H4191\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, seeing|strong=\"H3588\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5971\"* come|strong=\"H4994\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* this|strong=\"H2088\"* word|strong=\"H1697\"* to|strong=\"H1696\"* my|strong=\"H6213\"* lord the|strong=\"H3588\"* king|strong=\"H4428\"*, it|strong=\"H3588\"* is|strong=\"H2088\"* because|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* have|strong=\"H5971\"* made|strong=\"H6213\"* me|strong=\"H4994\"* afraid|strong=\"H3372\"*. Your|strong=\"H6213\"* servant|strong=\"H8198\"* said|strong=\"H1696\"*, ‘I|strong=\"H3588\"* will|strong=\"H4428\"* now|strong=\"H6258\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* king|strong=\"H4428\"*; it|strong=\"H3588\"* may|strong=\"H4994\"* be|strong=\"H1697\"* that|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"* will|strong=\"H4428\"* perform|strong=\"H6213\"* the|strong=\"H3588\"* request|strong=\"H1697\"* of|strong=\"H4428\"* his|strong=\"H6213\"* servant|strong=\"H8198\"*.’" + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* the|strong=\"H8085\"* king|strong=\"H4428\"* will|strong=\"H4428\"* hear|strong=\"H8085\"*, to|strong=\"H8085\"* deliver|strong=\"H5337\"* his|strong=\"H8085\"* servant out|strong=\"H5337\"* of|strong=\"H1121\"* the|strong=\"H8085\"* hand|strong=\"H3709\"* of|strong=\"H1121\"* the|strong=\"H8085\"* man|strong=\"H1121\"* who|strong=\"H1121\"* would|strong=\"H3162\"* destroy|strong=\"H8045\"* me|strong=\"H5337\"* and|strong=\"H1121\"* my|strong=\"H8085\"* son|strong=\"H1121\"* together|strong=\"H3162\"* out|strong=\"H5337\"* of|strong=\"H1121\"* the|strong=\"H8085\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* God." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H1961\"* your|strong=\"H3068\"* servant|strong=\"H8198\"* said|strong=\"H1697\"*, ‘Please|strong=\"H4994\"* let|strong=\"H4994\"* the|strong=\"H8085\"* word|strong=\"H1697\"* of|strong=\"H4428\"* my|strong=\"H8085\"* lord|strong=\"H3068\"* the|strong=\"H8085\"* king|strong=\"H4428\"* bring|strong=\"H7451\"* rest|strong=\"H4496\"*; for|strong=\"H3588\"* as|strong=\"H1697\"* an|strong=\"H1961\"* angel|strong=\"H4397\"* of|strong=\"H4428\"* God|strong=\"H3068\"*, so|strong=\"H3651\"* is|strong=\"H3068\"* my|strong=\"H8085\"* lord|strong=\"H3068\"* the|strong=\"H8085\"* king|strong=\"H4428\"* to|strong=\"H3068\"* discern|strong=\"H8085\"* good|strong=\"H2896\"* and|strong=\"H3068\"* bad|strong=\"H7451\"*. May|strong=\"H1961\"* Yahweh|strong=\"H3068\"*, your|strong=\"H3068\"* God|strong=\"H3068\"*, be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3588\"*.’”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H6030\"* the|strong=\"H4480\"* king|strong=\"H4428\"* answered|strong=\"H6030\"* the|strong=\"H4480\"* woman, “Please|strong=\"H4994\"* don’t hide|strong=\"H3582\"* anything|strong=\"H1697\"* from|strong=\"H4480\"* me|strong=\"H4994\"* that|strong=\"H1697\"* I|strong=\"H1697\"* ask|strong=\"H7592\"* you|strong=\"H4480\"*.”" + }, + { + "verseNum": 19, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* said|strong=\"H1696\"*, “Is|strong=\"H1931\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Joab|strong=\"H3097\"* with|strong=\"H1696\"* you|strong=\"H3588\"* in|strong=\"H4428\"* all|strong=\"H3605\"* this|strong=\"H2063\"*?”" + }, + { + "verseNum": 20, + "text": "Your|strong=\"H3605\"* servant|strong=\"H5650\"* Joab|strong=\"H3097\"* has|strong=\"H5650\"* done|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* to|strong=\"H6213\"* change|strong=\"H5437\"* the|strong=\"H3605\"* face|strong=\"H6440\"* of|strong=\"H1697\"* the|strong=\"H3605\"* matter|strong=\"H1697\"*. My|strong=\"H3605\"* lord is|strong=\"H2088\"* wise|strong=\"H2450\"*, according to|strong=\"H6213\"* the|strong=\"H3605\"* wisdom|strong=\"H2451\"* of|strong=\"H1697\"* an|strong=\"H6213\"* angel|strong=\"H4397\"* of|strong=\"H1697\"* God|strong=\"H2451\"*, to|strong=\"H6213\"* know|strong=\"H3045\"* all|strong=\"H3605\"* things|strong=\"H1697\"* that|strong=\"H3045\"* are|strong=\"H1697\"* in|strong=\"H6213\"* the|strong=\"H3605\"* earth.”" + }, + { + "verseNum": 21, + "text": "The|strong=\"H6213\"* king|strong=\"H4428\"* said|strong=\"H1697\"* to|strong=\"H7725\"* Joab|strong=\"H3097\"*, “Behold|strong=\"H2009\"* now|strong=\"H4994\"*, I|strong=\"H2009\"* have|strong=\"H5288\"* granted|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*. Go|strong=\"H3212\"* therefore|strong=\"H6213\"*, and|strong=\"H7725\"* bring|strong=\"H7725\"* the|strong=\"H6213\"* young|strong=\"H5288\"* man|strong=\"H5288\"* Absalom back|strong=\"H7725\"*.”" + }, + { + "verseNum": 22, + "text": "Joab|strong=\"H3097\"* fell|strong=\"H5307\"* to|strong=\"H6213\"* the|strong=\"H6440\"* ground|strong=\"H6440\"* on|strong=\"H3117\"* his|strong=\"H6440\"* face|strong=\"H6440\"*, showed|strong=\"H6213\"* respect|strong=\"H3045\"*, and|strong=\"H4428\"* blessed|strong=\"H1288\"* the|strong=\"H6440\"* king|strong=\"H4428\"*. Joab|strong=\"H3097\"* said|strong=\"H1697\"*, “Today|strong=\"H3117\"* your|strong=\"H6440\"* servant|strong=\"H5650\"* knows|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H6213\"* your|strong=\"H6440\"* sight|strong=\"H5869\"*, my|strong=\"H3045\"* lord, O|strong=\"H3068\"* king|strong=\"H4428\"*, in|strong=\"H6213\"* that|strong=\"H3588\"* the|strong=\"H6440\"* king|strong=\"H4428\"* has|strong=\"H4428\"* performed|strong=\"H6213\"* the|strong=\"H6440\"* request|strong=\"H1697\"* of|strong=\"H4428\"* his|strong=\"H6440\"* servant|strong=\"H5650\"*.”" + }, + { + "verseNum": 23, + "text": "So|strong=\"H6965\"* Joab|strong=\"H3097\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Geshur|strong=\"H1650\"*, and|strong=\"H6965\"* brought|strong=\"H3212\"* Absalom to|strong=\"H3212\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H6440\"* king|strong=\"H4428\"* said, “Let|strong=\"H3808\"* him|strong=\"H6440\"* return to|strong=\"H6440\"* his|strong=\"H6440\"* own|strong=\"H6440\"* house|strong=\"H1004\"*, but|strong=\"H3808\"* let|strong=\"H3808\"* him|strong=\"H6440\"* not|strong=\"H3808\"* see|strong=\"H7200\"* my|strong=\"H7200\"* face|strong=\"H6440\"*.” So|strong=\"H3808\"* Absalom returned|strong=\"H5437\"* to|strong=\"H6440\"* his|strong=\"H6440\"* own|strong=\"H6440\"* house|strong=\"H1004\"*, and|strong=\"H4428\"* didn’t see|strong=\"H7200\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s face|strong=\"H6440\"*." + }, + { + "verseNum": 25, + "text": "Now|strong=\"H1961\"* in|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* one|strong=\"H3605\"* to|strong=\"H5704\"* be|strong=\"H1961\"* so|strong=\"H1961\"* much|strong=\"H3966\"* praised|strong=\"H1984\"* as|strong=\"H5704\"* Absalom for|strong=\"H5704\"* his|strong=\"H3605\"* beauty|strong=\"H3303\"*. From|strong=\"H3478\"* the|strong=\"H3605\"* sole|strong=\"H3709\"* of|strong=\"H3709\"* his|strong=\"H3605\"* foot|strong=\"H7272\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* crown|strong=\"H6936\"* of|strong=\"H3709\"* his|strong=\"H3605\"* head|strong=\"H6936\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* defect|strong=\"H3971\"* in|strong=\"H3478\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"H3588\"* he|strong=\"H3588\"* cut|strong=\"H1548\"* the|strong=\"H5921\"* hair|strong=\"H8181\"* of|strong=\"H4428\"* his|strong=\"H5921\"* head|strong=\"H7218\"* (now|strong=\"H1961\"* it|strong=\"H5921\"* was|strong=\"H1961\"* at|strong=\"H5921\"* every|strong=\"H3117\"* year|strong=\"H3117\"*’s end|strong=\"H7093\"* that|strong=\"H3588\"* he|strong=\"H3588\"* cut|strong=\"H1548\"* it|strong=\"H5921\"*; because|strong=\"H3588\"* it|strong=\"H5921\"* was|strong=\"H1961\"* heavy|strong=\"H3513\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, therefore|strong=\"H5921\"* he|strong=\"H3588\"* cut|strong=\"H1548\"* it|strong=\"H5921\"*), he|strong=\"H3588\"* weighed|strong=\"H8254\"* the|strong=\"H5921\"* hair|strong=\"H8181\"* of|strong=\"H4428\"* his|strong=\"H5921\"* head|strong=\"H7218\"* at|strong=\"H5921\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* shekels|strong=\"H8255\"*,+ 14:26 A shekel is about 10 grams or about 0.35 ounces, so 200 shekels is about 2 kilograms or about 4.4 pounds.* after|strong=\"H7093\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s weight." + }, + { + "verseNum": 27, + "text": "Three|strong=\"H7969\"* sons|strong=\"H1121\"* were|strong=\"H1961\"* born|strong=\"H3205\"* to|strong=\"H1961\"* Absalom, and|strong=\"H1121\"* one|strong=\"H1931\"* daughter|strong=\"H1323\"*, whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Tamar|strong=\"H8559\"*. She|strong=\"H1931\"* was|strong=\"H8034\"* a|strong=\"H3068\"* woman|strong=\"H1323\"* with|strong=\"H1961\"* a|strong=\"H3068\"* beautiful|strong=\"H3303\"* face|strong=\"H4758\"*." + }, + { + "verseNum": 28, + "text": "Absalom lived|strong=\"H3427\"* two|strong=\"H3427\"* full|strong=\"H3117\"* years|strong=\"H8141\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H4428\"* he|strong=\"H3117\"* didn’t see|strong=\"H7200\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s face|strong=\"H6440\"*." + }, + { + "verseNum": 29, + "text": "Then|strong=\"H7971\"* Absalom sent|strong=\"H7971\"* for|strong=\"H7971\"* Joab|strong=\"H3097\"*, to|strong=\"H7971\"* send|strong=\"H7971\"* him|strong=\"H7971\"* to|strong=\"H7971\"* the|strong=\"H7971\"* king|strong=\"H4428\"*, but|strong=\"H3808\"* he|strong=\"H3808\"* would|strong=\"H4428\"* not|strong=\"H3808\"* come|strong=\"H5750\"* to|strong=\"H7971\"* him|strong=\"H7971\"*. Then|strong=\"H7971\"* he|strong=\"H3808\"* sent|strong=\"H7971\"* again|strong=\"H5750\"* a|strong=\"H3068\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, but|strong=\"H3808\"* he|strong=\"H3808\"* would|strong=\"H4428\"* not|strong=\"H3808\"* come|strong=\"H5750\"*." + }, + { + "verseNum": 30, + "text": "Therefore|strong=\"H5650\"* he|strong=\"H8033\"* said to|strong=\"H3212\"* his|strong=\"H7200\"* servants|strong=\"H5650\"*, “Behold|strong=\"H7200\"*, Joab|strong=\"H3097\"*’s field|strong=\"H2513\"* is|strong=\"H3027\"* near|strong=\"H3027\"* mine|strong=\"H7200\"*, and|strong=\"H3027\"* he|strong=\"H8033\"* has|strong=\"H5650\"* barley|strong=\"H8184\"* there|strong=\"H8033\"*. Go|strong=\"H3212\"* and|strong=\"H3027\"* set|strong=\"H3341\"* it|strong=\"H7200\"* on|strong=\"H7200\"* fire|strong=\"H3341\"*.” So|strong=\"H7200\"* Absalom’s servants|strong=\"H5650\"* set|strong=\"H3341\"* the|strong=\"H7200\"* field|strong=\"H2513\"* on|strong=\"H7200\"* fire|strong=\"H3341\"*." + }, + { + "verseNum": 31, + "text": "Then|strong=\"H6965\"* Joab|strong=\"H3097\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* came|strong=\"H5650\"* to|strong=\"H1004\"* Absalom to|strong=\"H1004\"* his|strong=\"H6965\"* house|strong=\"H1004\"*, and|strong=\"H6965\"* said to|strong=\"H1004\"* him, “Why|strong=\"H4100\"* have|strong=\"H5650\"* your|strong=\"H6965\"* servants|strong=\"H5650\"* set|strong=\"H6965\"* my|strong=\"H6965\"* field|strong=\"H2513\"* on|strong=\"H1004\"* fire|strong=\"H3341\"*?”" + }, + { + "verseNum": 32, + "text": "Absalom answered Joab|strong=\"H3097\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* sent|strong=\"H7971\"* to|strong=\"H4191\"* you|strong=\"H6440\"*, saying, ‘Come|strong=\"H5750\"* here|strong=\"H2009\"*, that|strong=\"H7200\"* I|strong=\"H2009\"* may|strong=\"H4428\"* send|strong=\"H7971\"* you|strong=\"H6440\"* to|strong=\"H4191\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, to|strong=\"H4191\"* say, “Why|strong=\"H4100\"* have|strong=\"H3426\"* I|strong=\"H2009\"* come|strong=\"H5750\"* from|strong=\"H6440\"* Geshur|strong=\"H1650\"*? It|strong=\"H7200\"* would|strong=\"H4100\"* be|strong=\"H4191\"* better|strong=\"H2896\"* for|strong=\"H6440\"* me|strong=\"H6440\"* to|strong=\"H4191\"* be|strong=\"H4191\"* there|strong=\"H8033\"* still|strong=\"H5750\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, let|strong=\"H7971\"* me|strong=\"H6440\"* see|strong=\"H7200\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s face|strong=\"H6440\"*; and|strong=\"H7971\"* if|strong=\"H2009\"* there|strong=\"H8033\"* is|strong=\"H3426\"* iniquity|strong=\"H5771\"* in|strong=\"H4428\"* me|strong=\"H6440\"*, let|strong=\"H7971\"* him|strong=\"H6440\"* kill|strong=\"H4191\"* me|strong=\"H6440\"*.”’”" + }, + { + "verseNum": 33, + "text": "So|strong=\"H7121\"* Joab|strong=\"H3097\"* came|strong=\"H4428\"* to|strong=\"H5921\"* the|strong=\"H6440\"* king|strong=\"H4428\"* and|strong=\"H4428\"* told|strong=\"H5046\"* him|strong=\"H6440\"*; and|strong=\"H4428\"* when|strong=\"H5921\"* he|strong=\"H5921\"* had|strong=\"H4428\"* called|strong=\"H7121\"* for|strong=\"H5921\"* Absalom, he|strong=\"H5921\"* came|strong=\"H4428\"* to|strong=\"H5921\"* the|strong=\"H6440\"* king|strong=\"H4428\"* and|strong=\"H4428\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* on|strong=\"H5921\"* his|strong=\"H7121\"* face|strong=\"H6440\"* to|strong=\"H5921\"* the|strong=\"H6440\"* ground|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*; and|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* kissed|strong=\"H5401\"* Absalom." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* this|strong=\"H3651\"*, Absalom prepared|strong=\"H6213\"* a|strong=\"H3068\"* chariot|strong=\"H4818\"* and|strong=\"H2572\"* horses|strong=\"H5483\"* for|strong=\"H6213\"* himself|strong=\"H6213\"*, and|strong=\"H2572\"* fifty|strong=\"H2572\"* men|strong=\"H6213\"* to|strong=\"H1961\"* run|strong=\"H7323\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 2, + "text": "Absalom rose|strong=\"H7925\"* up|strong=\"H5975\"* early|strong=\"H7925\"*, and|strong=\"H3478\"* stood|strong=\"H5975\"* beside|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H3605\"* gate|strong=\"H8179\"*. When|strong=\"H1961\"* any|strong=\"H3605\"* man|strong=\"H3605\"* had|strong=\"H1961\"* a|strong=\"H3068\"* suit|strong=\"H7379\"* which|strong=\"H5892\"* should|strong=\"H3478\"* come|strong=\"H1961\"* to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* for|strong=\"H5921\"* judgment|strong=\"H4941\"*, then|strong=\"H1961\"* Absalom called|strong=\"H7121\"* to|strong=\"H3478\"* him|strong=\"H7121\"*, and|strong=\"H3478\"* said|strong=\"H7121\"*, “What|strong=\"H2088\"* city|strong=\"H5892\"* are|strong=\"H3478\"* you|strong=\"H3605\"* from|strong=\"H5921\"*?”" + }, + { + "verseNum": 3, + "text": "Absalom said|strong=\"H1697\"* to|strong=\"H8085\"* him|strong=\"H7200\"*, “Behold|strong=\"H7200\"*, your|strong=\"H7200\"* matters|strong=\"H1697\"* are|strong=\"H1697\"* good|strong=\"H2896\"* and|strong=\"H4428\"* right|strong=\"H5228\"*; but|strong=\"H7200\"* there|strong=\"H1697\"* is|strong=\"H1697\"* no|strong=\"H7200\"* man|strong=\"H2896\"* deputized by|strong=\"H4428\"* the|strong=\"H8085\"* king|strong=\"H4428\"* to|strong=\"H8085\"* hear|strong=\"H8085\"* you|strong=\"H7200\"*.”" + }, + { + "verseNum": 4, + "text": "Absalom said moreover|strong=\"H1961\"*, “Oh|strong=\"H4310\"* that|strong=\"H3605\"* I|strong=\"H5921\"* were|strong=\"H1961\"* made|strong=\"H7760\"* judge|strong=\"H8199\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land, that|strong=\"H3605\"* every|strong=\"H3605\"* man|strong=\"H3605\"* who|strong=\"H4310\"* has|strong=\"H4310\"* any|strong=\"H3605\"* suit|strong=\"H7379\"* or|strong=\"H7379\"* cause|strong=\"H7379\"* might|strong=\"H4941\"* come|strong=\"H1961\"* to|strong=\"H1961\"* me|strong=\"H5921\"*, and|strong=\"H4941\"* I|strong=\"H5921\"* would|strong=\"H4310\"* do|strong=\"H3605\"* him|strong=\"H5921\"* justice|strong=\"H4941\"*!”" + }, + { + "verseNum": 5, + "text": "It|strong=\"H7126\"* was|strong=\"H1961\"* so|strong=\"H7971\"*, that|strong=\"H3027\"* when|strong=\"H1961\"* any|strong=\"H1961\"* man came|strong=\"H1961\"* near|strong=\"H7126\"* to|strong=\"H7971\"* bow|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H7971\"* him|strong=\"H7971\"*, he|strong=\"H3027\"* stretched|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"*, took|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H3027\"* him|strong=\"H7971\"*, and|strong=\"H7971\"* kissed|strong=\"H5401\"* him|strong=\"H7971\"*." + }, + { + "verseNum": 6, + "text": "Absalom did|strong=\"H6213\"* this|strong=\"H2088\"* sort|strong=\"H1697\"* of|strong=\"H4428\"* thing|strong=\"H1697\"* to|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* who|strong=\"H3605\"* came|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* for|strong=\"H6213\"* judgment|strong=\"H4941\"*. So|strong=\"H6213\"* Absalom stole|strong=\"H1589\"* the|strong=\"H3605\"* hearts|strong=\"H3820\"* of|strong=\"H4428\"* the|strong=\"H3605\"* men|strong=\"H6213\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "At|strong=\"H3068\"* the|strong=\"H3068\"* end|strong=\"H7093\"* of|strong=\"H4428\"* forty years|strong=\"H8141\"*, Absalom said to|strong=\"H3212\"* the|strong=\"H3068\"* king|strong=\"H4428\"*, “Please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* go|strong=\"H3212\"* and|strong=\"H3068\"* pay|strong=\"H7999\"* my|strong=\"H3068\"* vow|strong=\"H5088\"*, which|strong=\"H3068\"* I|strong=\"H8141\"* have|strong=\"H1961\"* vowed|strong=\"H5087\"* to|strong=\"H3212\"* Yahweh|strong=\"H3068\"*, in|strong=\"H8141\"* Hebron|strong=\"H2275\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* vowed|strong=\"H5087\"* a|strong=\"H3068\"* vow|strong=\"H5088\"* while|strong=\"H3588\"* I|strong=\"H3588\"* stayed|strong=\"H3427\"* at|strong=\"H3427\"* Geshur|strong=\"H1650\"* in|strong=\"H3427\"* Syria, saying, ‘If|strong=\"H3588\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* indeed|strong=\"H3588\"* bring|strong=\"H7725\"* me|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*, then|strong=\"H7725\"* I|strong=\"H3588\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H6965\"* king|strong=\"H4428\"* said to|strong=\"H3212\"* him|strong=\"H4428\"*, “Go|strong=\"H3212\"* in|strong=\"H4428\"* peace|strong=\"H7965\"*.”" + }, + { + "verseNum": 10, + "text": "But|strong=\"H8085\"* Absalom sent|strong=\"H7971\"* spies|strong=\"H7270\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*, saying|strong=\"H6963\"*, “As|strong=\"H4427\"* soon as|strong=\"H4427\"* you|strong=\"H3605\"* hear|strong=\"H8085\"* the|strong=\"H3605\"* sound|strong=\"H6963\"* of|strong=\"H7626\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"*, then|strong=\"H7971\"* you|strong=\"H3605\"* shall|strong=\"H3478\"* say|strong=\"H6963\"*, ‘Absalom is|strong=\"H3478\"* king|strong=\"H4427\"* in|strong=\"H3478\"* Hebron|strong=\"H2275\"*!’”" + }, + { + "verseNum": 11, + "text": "Two|strong=\"H1980\"* hundred|strong=\"H3967\"* men|strong=\"H1980\"* went|strong=\"H1980\"* with|strong=\"H1980\"* Absalom out|strong=\"H1980\"* of|strong=\"H1697\"* Jerusalem|strong=\"H3389\"*, who|strong=\"H3605\"* were|strong=\"H1697\"* invited|strong=\"H7121\"*, and|strong=\"H3967\"* went|strong=\"H1980\"* in|strong=\"H1980\"* their|strong=\"H3605\"* simplicity|strong=\"H8537\"*; and|strong=\"H3967\"* they|strong=\"H3808\"* didn’t know|strong=\"H3045\"* anything|strong=\"H3605\"*." + }, + { + "verseNum": 12, + "text": "Absalom sent|strong=\"H7971\"* for|strong=\"H7971\"* Ahithophel the|strong=\"H7971\"* Gilonite|strong=\"H1526\"*, David|strong=\"H1732\"*’s counselor|strong=\"H3289\"*, from|strong=\"H1980\"* his|strong=\"H7971\"* city|strong=\"H5892\"*, even from|strong=\"H1980\"* Giloh|strong=\"H1542\"*, while|strong=\"H1961\"* he|strong=\"H1732\"* was|strong=\"H1961\"* offering|strong=\"H2076\"* the|strong=\"H7971\"* sacrifices|strong=\"H2077\"*. The|strong=\"H7971\"* conspiracy|strong=\"H7195\"* was|strong=\"H1961\"* strong, for|strong=\"H7971\"* the|strong=\"H7971\"* people|strong=\"H5971\"* increased|strong=\"H7227\"* continually|strong=\"H1980\"* with|strong=\"H1980\"* Absalom." + }, + { + "verseNum": 13, + "text": "A|strong=\"H3068\"* messenger|strong=\"H5046\"* came|strong=\"H1961\"* to|strong=\"H3478\"* David|strong=\"H1732\"*, saying, “The|strong=\"H5046\"* hearts|strong=\"H3820\"* of|strong=\"H3820\"* the|strong=\"H5046\"* men|strong=\"H3478\"* of|strong=\"H3820\"* Israel|strong=\"H3478\"* are|strong=\"H3478\"* after|strong=\"H1961\"* Absalom.”" + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* said|strong=\"H6310\"* to|strong=\"H3212\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* who|strong=\"H3605\"* were|strong=\"H1961\"* with|strong=\"H5921\"* him|strong=\"H6440\"* at|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, “Arise|strong=\"H6965\"*! Let|strong=\"H3808\"*’s flee|strong=\"H1272\"*, or|strong=\"H3808\"* else|strong=\"H6435\"* none|strong=\"H3808\"* of|strong=\"H5892\"* us|strong=\"H5921\"* will|strong=\"H1961\"* escape|strong=\"H6413\"* from|strong=\"H6440\"* Absalom. Hurry|strong=\"H4116\"* to|strong=\"H3212\"* depart|strong=\"H3212\"*, lest|strong=\"H6435\"* he|strong=\"H3588\"* overtake|strong=\"H5381\"* us|strong=\"H5921\"* quickly|strong=\"H4116\"* and|strong=\"H6965\"* bring|strong=\"H3212\"* down|strong=\"H5221\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* us|strong=\"H5921\"*, and|strong=\"H6965\"* strike|strong=\"H5221\"* the|strong=\"H3605\"* city|strong=\"H5892\"* with|strong=\"H5921\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H5892\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*.”" + }, + { + "verseNum": 15, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"*’s servants|strong=\"H5650\"* said to|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, “Behold|strong=\"H2009\"*, your|strong=\"H3605\"* servants|strong=\"H5650\"* are|strong=\"H5650\"* ready to|strong=\"H4428\"* do|strong=\"H3605\"* whatever|strong=\"H3605\"* my|strong=\"H3605\"* lord the|strong=\"H3605\"* king|strong=\"H4428\"* chooses.”" + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* household|strong=\"H1004\"* after|strong=\"H7272\"* him|strong=\"H3318\"*. The|strong=\"H3605\"* king|strong=\"H4428\"* left|strong=\"H5800\"* ten|strong=\"H6235\"* women, who|strong=\"H3605\"* were|strong=\"H7272\"* concubines|strong=\"H6370\"*, to|strong=\"H3318\"* keep|strong=\"H8104\"* the|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* after|strong=\"H7272\"* him|strong=\"H3318\"*; and|strong=\"H4428\"* they|strong=\"H5971\"* stayed|strong=\"H5975\"* in|strong=\"H4428\"* Beth Merhak." + }, + { + "verseNum": 18, + "text": "All|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* passed|strong=\"H5674\"* on|strong=\"H5921\"* beside|strong=\"H5921\"* him|strong=\"H6440\"*; and|strong=\"H3967\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Cherethites|strong=\"H3774\"*, and|strong=\"H3967\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Pelethites|strong=\"H6432\"*, and|strong=\"H3967\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Gittites|strong=\"H1663\"*, six|strong=\"H8337\"* hundred|strong=\"H3967\"* men|strong=\"H5650\"* who|strong=\"H3605\"* came|strong=\"H5674\"* after|strong=\"H5921\"* him|strong=\"H6440\"* from|strong=\"H6440\"* Gath|strong=\"H1661\"*, passed|strong=\"H5674\"* on|strong=\"H5921\"* before|strong=\"H6440\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 19, + "text": "Then|strong=\"H1571\"* the|strong=\"H3588\"* king|strong=\"H4428\"* said to|strong=\"H7725\"* Ittai the|strong=\"H3588\"* Gittite|strong=\"H1663\"*, “Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3588\"* also|strong=\"H1571\"* go|strong=\"H3212\"* with|strong=\"H5973\"* us|strong=\"H7725\"*? Return|strong=\"H7725\"*, and|strong=\"H7725\"* stay|strong=\"H3427\"* with|strong=\"H5973\"* the|strong=\"H3588\"* king|strong=\"H4428\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H4100\"* a|strong=\"H3068\"* foreigner|strong=\"H5237\"* and|strong=\"H7725\"* also|strong=\"H1571\"* an|strong=\"H3588\"* exile|strong=\"H1540\"*. Return|strong=\"H7725\"* to|strong=\"H7725\"* your|strong=\"H7725\"* own|strong=\"H5973\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 20, + "text": "Whereas you|strong=\"H5921\"* came|strong=\"H1980\"* but|strong=\"H7725\"* yesterday|strong=\"H8543\"*, should|strong=\"H1980\"* I|strong=\"H3117\"* today|strong=\"H3117\"* make|strong=\"H7725\"* you|strong=\"H5921\"* go|strong=\"H1980\"* up|strong=\"H5921\"* and|strong=\"H1980\"* down|strong=\"H1980\"* with|strong=\"H5973\"* us|strong=\"H7725\"*, since|strong=\"H3117\"* I|strong=\"H3117\"* go|strong=\"H1980\"* where|strong=\"H5921\"* I|strong=\"H3117\"* may|strong=\"H7725\"*? Return|strong=\"H7725\"*, and|strong=\"H1980\"* take|strong=\"H7725\"* back|strong=\"H7725\"* your|strong=\"H5921\"* brothers. Mercy|strong=\"H2617\"* and|strong=\"H1980\"* truth be|strong=\"H3117\"* with|strong=\"H5973\"* you|strong=\"H5921\"*.”" + }, + { + "verseNum": 21, + "text": "Ittai answered|strong=\"H6030\"* the|strong=\"H3588\"* king|strong=\"H4428\"* and|strong=\"H3068\"* said|strong=\"H6030\"*, “As|strong=\"H1961\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, and|strong=\"H3068\"* as|strong=\"H1961\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* the|strong=\"H3588\"* king|strong=\"H4428\"* lives|strong=\"H2416\"*, surely|strong=\"H3588\"* in|strong=\"H3068\"* what|strong=\"H3588\"* place|strong=\"H4725\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* the|strong=\"H3588\"* king|strong=\"H4428\"* is|strong=\"H3068\"*, whether for|strong=\"H3588\"* death|strong=\"H4194\"* or|strong=\"H4194\"* for|strong=\"H3588\"* life|strong=\"H2416\"*, your|strong=\"H3068\"* servant|strong=\"H5650\"* will|strong=\"H3068\"* be|strong=\"H1961\"* there|strong=\"H8033\"* also|strong=\"H3068\"*.”" + }, + { + "verseNum": 22, + "text": "David|strong=\"H1732\"* said to|strong=\"H3212\"* Ittai, “Go|strong=\"H3212\"* and|strong=\"H3212\"* pass|strong=\"H5674\"* over|strong=\"H5674\"*.” Ittai the|strong=\"H3605\"* Gittite|strong=\"H1663\"* passed|strong=\"H5674\"* over|strong=\"H5674\"*, and|strong=\"H3212\"* all|strong=\"H3605\"* his|strong=\"H3605\"* men|strong=\"H3605\"*, and|strong=\"H3212\"* all|strong=\"H3605\"* the|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"* who|strong=\"H3605\"* were|strong=\"H1732\"* with|strong=\"H3212\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 23, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* country wept|strong=\"H1058\"* with|strong=\"H5921\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* passed|strong=\"H5674\"* over|strong=\"H5921\"*. The|strong=\"H3605\"* king|strong=\"H4428\"* also|strong=\"H4428\"* himself|strong=\"H6440\"* passed|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H3605\"* brook|strong=\"H5158\"* Kidron|strong=\"H6939\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* passed|strong=\"H5674\"* over|strong=\"H5921\"* toward|strong=\"H1870\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 24, + "text": "Behold|strong=\"H2009\"*, Zadok|strong=\"H6659\"* also|strong=\"H1571\"* came|strong=\"H5927\"*, and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* with|strong=\"H1285\"* him|strong=\"H3605\"*, bearing|strong=\"H5375\"* the|strong=\"H3605\"* ark of|strong=\"H5892\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* of|strong=\"H5892\"* God; and|strong=\"H5971\"* they|strong=\"H5704\"* set|strong=\"H5375\"* down|strong=\"H3332\"* God’s ark; and|strong=\"H5971\"* Abiathar went|strong=\"H5927\"* up|strong=\"H5927\"* until|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* finished|strong=\"H8552\"* passing|strong=\"H5674\"* out|strong=\"H4480\"* of|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H7200\"* king|strong=\"H4428\"* said to|strong=\"H7725\"* Zadok|strong=\"H6659\"*, “Carry God|strong=\"H3068\"*’s ark back|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H7200\"* city|strong=\"H5892\"*. If|strong=\"H7200\"* I|strong=\"H7200\"* find|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, he|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H7725\"* me|strong=\"H7725\"* again|strong=\"H7725\"*, and|strong=\"H3068\"* show|strong=\"H7200\"* me|strong=\"H7725\"* both it|strong=\"H7725\"* and|strong=\"H3068\"* his|strong=\"H3068\"* habitation|strong=\"H5116\"*;" + }, + { + "verseNum": 26, + "text": "but|strong=\"H3808\"* if|strong=\"H2005\"* he|strong=\"H6213\"* says|strong=\"H3541\"*, ‘I|strong=\"H2005\"* have|strong=\"H5869\"* no|strong=\"H3808\"* delight|strong=\"H2654\"* in|strong=\"H6213\"* you|strong=\"H6213\"*,’ behold|strong=\"H2005\"*, here|strong=\"H3541\"* I|strong=\"H2005\"* am|strong=\"H2005\"*. Let|strong=\"H3808\"* him|strong=\"H6213\"* do|strong=\"H6213\"* to|strong=\"H6213\"* me|strong=\"H6213\"* as|strong=\"H6213\"* seems|strong=\"H2896\"* good|strong=\"H2896\"* to|strong=\"H6213\"* him|strong=\"H6213\"*.”" + }, + { + "verseNum": 27, + "text": "The|strong=\"H7200\"* king|strong=\"H4428\"* said also|strong=\"H4428\"* to|strong=\"H7725\"* Zadok|strong=\"H6659\"* the|strong=\"H7200\"* priest|strong=\"H3548\"*, “Aren’t you|strong=\"H7725\"* a|strong=\"H3068\"* seer|strong=\"H7200\"*? Return|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H7200\"* city|strong=\"H5892\"* in|strong=\"H4428\"* peace|strong=\"H7965\"*, and|strong=\"H1121\"* your|strong=\"H7200\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* with|strong=\"H5892\"* you|strong=\"H7725\"*, Ahimaaz your|strong=\"H7200\"* son|strong=\"H1121\"* and|strong=\"H1121\"* Jonathan|strong=\"H3083\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abiathar." + }, + { + "verseNum": 28, + "text": "Behold|strong=\"H7200\"*, I|strong=\"H5704\"* will|strong=\"H1697\"* stay|strong=\"H4102\"* at|strong=\"H7200\"* the|strong=\"H7200\"* fords|strong=\"H5679\"* of|strong=\"H1697\"* the|strong=\"H7200\"* wilderness|strong=\"H4057\"* until|strong=\"H5704\"* word|strong=\"H1697\"* comes|strong=\"H5973\"* from|strong=\"H5704\"* you|strong=\"H5704\"* to|strong=\"H5704\"* inform|strong=\"H5046\"* me|strong=\"H7200\"*.”" + }, + { + "verseNum": 29, + "text": "Zadok|strong=\"H6659\"* therefore and|strong=\"H7725\"* Abiathar carried|strong=\"H7725\"* God’s ark to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"* again|strong=\"H7725\"*; and|strong=\"H7725\"* they|strong=\"H8033\"* stayed|strong=\"H3427\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 30, + "text": "David|strong=\"H1732\"* went|strong=\"H1980\"* up|strong=\"H5927\"* by|strong=\"H1980\"* the|strong=\"H3605\"* ascent|strong=\"H4608\"* of|strong=\"H7218\"* the|strong=\"H3605\"* Mount|strong=\"H5927\"* of|strong=\"H7218\"* Olives|strong=\"H2132\"*, and|strong=\"H1980\"* wept|strong=\"H1058\"* as|strong=\"H5927\"* he|strong=\"H1931\"* went|strong=\"H1980\"* up|strong=\"H5927\"*; and|strong=\"H1980\"* he|strong=\"H1931\"* had|strong=\"H1732\"* his|strong=\"H3605\"* head|strong=\"H7218\"* covered|strong=\"H2645\"* and|strong=\"H1980\"* went|strong=\"H1980\"* barefoot|strong=\"H3182\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H1980\"* him|strong=\"H1931\"* each|strong=\"H3605\"* covered|strong=\"H2645\"* his|strong=\"H3605\"* head|strong=\"H7218\"*, and|strong=\"H1980\"* they|strong=\"H1931\"* went|strong=\"H1980\"* up|strong=\"H5927\"*, weeping|strong=\"H1058\"* as|strong=\"H5927\"* they|strong=\"H1931\"* went|strong=\"H1980\"* up|strong=\"H5927\"*." + }, + { + "verseNum": 31, + "text": "Someone told|strong=\"H5046\"* David|strong=\"H1732\"*, saying, “Ahithophel is|strong=\"H3068\"* among|strong=\"H5973\"* the|strong=\"H3068\"* conspirators|strong=\"H7194\"* with|strong=\"H5973\"* Absalom.”" + }, + { + "verseNum": 32, + "text": "When|strong=\"H1961\"* David|strong=\"H1732\"* had|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H5704\"* the|strong=\"H5921\"* top|strong=\"H7218\"*, where|strong=\"H8033\"* God was|strong=\"H1961\"* worshiped|strong=\"H7812\"*, behold|strong=\"H2009\"*, Hushai|strong=\"H2365\"* the|strong=\"H5921\"* Archite came|strong=\"H1961\"* to|strong=\"H5704\"* meet|strong=\"H7125\"* him|strong=\"H5921\"* with|strong=\"H5921\"* his|strong=\"H1732\"* tunic|strong=\"H3801\"* torn|strong=\"H7167\"* and|strong=\"H1732\"* earth on|strong=\"H5921\"* his|strong=\"H1732\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 33, + "text": "David|strong=\"H1732\"* said to|strong=\"H1961\"* him|strong=\"H5921\"*, “If|strong=\"H1961\"* you|strong=\"H5921\"* pass|strong=\"H5674\"* on|strong=\"H5921\"* with|strong=\"H5921\"* me|strong=\"H5921\"*, then|strong=\"H1961\"* you|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* burden|strong=\"H4853\"* to|strong=\"H1961\"* me|strong=\"H5921\"*;" + }, + { + "verseNum": 34, + "text": "but|strong=\"H1961\"* if|strong=\"H1961\"* you|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H7725\"* city|strong=\"H5892\"*, and|strong=\"H7725\"* tell Absalom, ‘I|strong=\"H6258\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H7725\"* servant|strong=\"H5650\"*, O|strong=\"H3068\"* king|strong=\"H4428\"*. As|strong=\"H1961\"* I|strong=\"H6258\"* have|strong=\"H1961\"* been|strong=\"H1961\"* your|strong=\"H7725\"* father’s servant|strong=\"H5650\"* in|strong=\"H4428\"* time|strong=\"H6258\"* past|strong=\"H7725\"*, so|strong=\"H1961\"* I|strong=\"H6258\"* will|strong=\"H1961\"* now|strong=\"H6258\"* be|strong=\"H1961\"* your|strong=\"H7725\"* servant|strong=\"H5650\"*; then|strong=\"H1961\"* you|strong=\"H7725\"* will|strong=\"H1961\"* defeat|strong=\"H6565\"* for|strong=\"H5650\"* me|strong=\"H7725\"* the|strong=\"H7725\"* counsel|strong=\"H6098\"* of|strong=\"H4428\"* Ahithophel.’" + }, + { + "verseNum": 35, + "text": "Don’t you|strong=\"H3605\"* have|strong=\"H1961\"* Zadok|strong=\"H6659\"* and|strong=\"H4428\"* Abiathar the|strong=\"H3605\"* priests|strong=\"H3548\"* there|strong=\"H8033\"* with|strong=\"H5973\"* you|strong=\"H3605\"*? Therefore|strong=\"H1961\"* whatever|strong=\"H3605\"* you|strong=\"H3605\"* hear|strong=\"H8085\"* out|strong=\"H3605\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, tell|strong=\"H5046\"* it|strong=\"H8033\"* to|strong=\"H1961\"* Zadok|strong=\"H6659\"* and|strong=\"H4428\"* Abiathar the|strong=\"H3605\"* priests|strong=\"H3548\"*." + }, + { + "verseNum": 36, + "text": "Behold|strong=\"H2009\"*, they|strong=\"H8033\"* have|strong=\"H1121\"* there|strong=\"H8033\"* with|strong=\"H5973\"* them|strong=\"H7971\"* their|strong=\"H3605\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*, Ahimaaz, Zadok|strong=\"H6659\"*’s son|strong=\"H1121\"*, and|strong=\"H1121\"* Jonathan|strong=\"H3083\"*, Abiathar’s son|strong=\"H1121\"*. Send|strong=\"H7971\"* to|strong=\"H7971\"* me|strong=\"H7971\"* everything|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* shall|strong=\"H1121\"* hear|strong=\"H8085\"* by|strong=\"H3027\"* them|strong=\"H7971\"*.”" + }, + { + "verseNum": 37, + "text": "So Hushai|strong=\"H2365\"*, David|strong=\"H1732\"*’s friend|strong=\"H7463\"*, came|strong=\"H1732\"* into|strong=\"H5892\"* the|strong=\"H1732\"* city|strong=\"H5892\"*; and|strong=\"H3389\"* Absalom came|strong=\"H1732\"* into|strong=\"H5892\"* Jerusalem|strong=\"H3389\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H5674\"* David|strong=\"H1732\"* was|strong=\"H1732\"* a|strong=\"H3068\"* little|strong=\"H4592\"* past|strong=\"H5674\"* the|strong=\"H5921\"* top|strong=\"H7218\"*, behold|strong=\"H2009\"*, Ziba|strong=\"H6717\"* the|strong=\"H5921\"* servant|strong=\"H5288\"* of|strong=\"H7218\"* Mephibosheth|strong=\"H4648\"* met|strong=\"H7122\"* him|strong=\"H5921\"* with|strong=\"H5921\"* a|strong=\"H3068\"* couple|strong=\"H6776\"* of|strong=\"H7218\"* donkeys|strong=\"H2543\"* saddled|strong=\"H2280\"*, and|strong=\"H3967\"* on|strong=\"H5921\"* them|strong=\"H5921\"* two|strong=\"H6776\"* hundred|strong=\"H3967\"* loaves|strong=\"H3899\"* of|strong=\"H7218\"* bread|strong=\"H3899\"*, and|strong=\"H3967\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* clusters|strong=\"H6778\"* of|strong=\"H7218\"* raisins|strong=\"H6778\"*, and|strong=\"H3967\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* summer|strong=\"H7019\"* fruits|strong=\"H7019\"*, and|strong=\"H3967\"* a|strong=\"H3068\"* container of|strong=\"H7218\"* wine|strong=\"H3196\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H8354\"* king|strong=\"H4428\"* said to|strong=\"H4428\"* Ziba|strong=\"H6717\"*, “What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H4100\"* mean by|strong=\"H4428\"* these|strong=\"H1004\"*?”" + }, + { + "verseNum": 3, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* said, “Where|strong=\"H1004\"* is|strong=\"H3117\"* your|strong=\"H7725\"* master|strong=\"H3427\"*’s son|strong=\"H1121\"*?”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H2009\"* the|strong=\"H3605\"* king|strong=\"H4428\"* said to|strong=\"H4428\"* Ziba|strong=\"H6717\"*, “Behold|strong=\"H2009\"*, all|strong=\"H3605\"* that|strong=\"H3605\"* belongs to|strong=\"H4428\"* Mephibosheth|strong=\"H4648\"* is|strong=\"H2009\"* yours.”" + }, + { + "verseNum": 5, + "text": "When|strong=\"H3318\"* King|strong=\"H4428\"* David|strong=\"H1732\"* came|strong=\"H3318\"* to|strong=\"H5704\"* Bahurim, behold|strong=\"H2009\"*, a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5704\"* family|strong=\"H4940\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*’s house|strong=\"H1004\"* came|strong=\"H3318\"* out|strong=\"H3318\"*, whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Shimei|strong=\"H8096\"*, the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gera|strong=\"H1617\"*. He|strong=\"H5704\"* came|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H1121\"* cursed|strong=\"H7043\"* as|strong=\"H5704\"* he|strong=\"H5704\"* came|strong=\"H3318\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3605\"* cast|strong=\"H5619\"* stones|strong=\"H5619\"* at|strong=\"H1732\"* David|strong=\"H1732\"* and|strong=\"H4428\"* at|strong=\"H1732\"* all|strong=\"H3605\"* the|strong=\"H3605\"* servants|strong=\"H5650\"* of|strong=\"H4428\"* King|strong=\"H4428\"* David|strong=\"H1732\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* were|strong=\"H5971\"* on|strong=\"H3605\"* his|strong=\"H3605\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H4428\"* on|strong=\"H3605\"* his|strong=\"H3605\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 7, + "text": "Shimei|strong=\"H8096\"* said|strong=\"H3318\"* when|strong=\"H3318\"* he|strong=\"H3541\"* cursed|strong=\"H7043\"*, “Be|strong=\"H1818\"* gone|strong=\"H3318\"*, be|strong=\"H1818\"* gone|strong=\"H3318\"*, you|strong=\"H3318\"* man of|strong=\"H1818\"* blood|strong=\"H1818\"*, and|strong=\"H1818\"* wicked|strong=\"H1100\"* fellow!" + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* returned|strong=\"H7725\"* on|strong=\"H5921\"* you|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*’s house|strong=\"H1004\"*, in|strong=\"H5921\"* whose|strong=\"H1121\"* place|strong=\"H8478\"* you|strong=\"H3588\"* have|strong=\"H3068\"* reigned|strong=\"H4427\"*! Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* the|strong=\"H3605\"* kingdom|strong=\"H4410\"* into|strong=\"H7725\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Absalom your|strong=\"H3068\"* son|strong=\"H1121\"*! Behold|strong=\"H2005\"*, you|strong=\"H3588\"* are|strong=\"H1121\"* caught by|strong=\"H3027\"* your|strong=\"H3068\"* own|strong=\"H3027\"* mischief|strong=\"H7451\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1121\"* a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* blood|strong=\"H1818\"*!”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H2088\"* Abishai the|strong=\"H5674\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* said to|strong=\"H4191\"* the|strong=\"H5674\"* king|strong=\"H4428\"*, “Why|strong=\"H4100\"* should|strong=\"H4100\"* this|strong=\"H2088\"* dead|strong=\"H4191\"* dog|strong=\"H3611\"* curse|strong=\"H7043\"* my|strong=\"H5493\"* lord the|strong=\"H5674\"* king|strong=\"H4428\"*? Please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* go|strong=\"H5674\"* over|strong=\"H5674\"* and|strong=\"H1121\"* take|strong=\"H5493\"* off|strong=\"H5493\"* his|strong=\"H5493\"* head|strong=\"H7218\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* said|strong=\"H3651\"*, “What|strong=\"H4100\"* have|strong=\"H3068\"* I|strong=\"H3588\"* to|strong=\"H3068\"* do|strong=\"H6213\"* with|strong=\"H3068\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"*? Because|strong=\"H3588\"* he|strong=\"H3588\"* curses|strong=\"H7043\"*, and|strong=\"H1121\"* because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* said|strong=\"H3651\"* to|strong=\"H3068\"* him|strong=\"H6213\"*, ‘Curse|strong=\"H7043\"* David|strong=\"H1732\"*,’ who|strong=\"H4310\"* then|strong=\"H3651\"* shall|strong=\"H3068\"* say, ‘Why|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H3588\"* done|strong=\"H6213\"* so|strong=\"H3651\"*?’”" + }, + { + "verseNum": 11, + "text": "David|strong=\"H1732\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Abishai and|strong=\"H1121\"* to|strong=\"H3318\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*, “Behold|strong=\"H2009\"*, my|strong=\"H3605\"* son|strong=\"H1121\"*, who|strong=\"H3605\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* my|strong=\"H3605\"* bowels|strong=\"H4578\"*, seeks|strong=\"H1245\"* my|strong=\"H3605\"* life|strong=\"H5315\"*. How|strong=\"H3588\"* much|strong=\"H3605\"* more|strong=\"H3588\"* this|strong=\"H6258\"* Benjamite|strong=\"H1145\"*, now|strong=\"H6258\"*? Leave|strong=\"H3240\"* him|strong=\"H3318\"* alone|strong=\"H3240\"*, and|strong=\"H1121\"* let|strong=\"H6258\"* him|strong=\"H3318\"* curse|strong=\"H7043\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* invited him|strong=\"H3318\"*." + }, + { + "verseNum": 12, + "text": "It|strong=\"H7725\"* may|strong=\"H3068\"* be|strong=\"H3068\"* that|strong=\"H7200\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* look|strong=\"H7200\"* on|strong=\"H3117\"* the|strong=\"H7200\"* wrong|strong=\"H5771\"* done to|strong=\"H7725\"* me|strong=\"H7725\"*, and|strong=\"H3068\"* that|strong=\"H7200\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* repay|strong=\"H7725\"* me|strong=\"H7725\"* good|strong=\"H2896\"* for|strong=\"H8478\"* the|strong=\"H7200\"* cursing|strong=\"H7045\"* of|strong=\"H3068\"* me|strong=\"H7725\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 13, + "text": "So|strong=\"H1980\"* David|strong=\"H1732\"* and|strong=\"H1980\"* his|strong=\"H1732\"* men|strong=\"H1980\"* went|strong=\"H1980\"* by|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"*; and|strong=\"H1980\"* Shimei|strong=\"H8096\"* went|strong=\"H1980\"* along|strong=\"H1980\"* on|strong=\"H1980\"* the|strong=\"H1870\"* hillside|strong=\"H6763\"* opposite him|strong=\"H1732\"* and|strong=\"H1980\"* cursed|strong=\"H7043\"* as|strong=\"H1980\"* he|strong=\"H1732\"* went|strong=\"H1980\"*, threw|strong=\"H5619\"* stones|strong=\"H5619\"* at|strong=\"H1732\"* him|strong=\"H1732\"*, and|strong=\"H1980\"* threw|strong=\"H5619\"* dust|strong=\"H6083\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5971\"* him|strong=\"H3605\"* arrived weary|strong=\"H5889\"*; and|strong=\"H4428\"* he|strong=\"H8033\"* refreshed|strong=\"H5314\"* himself|strong=\"H5314\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 15, + "text": "Absalom and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H5971\"* Israel|strong=\"H3478\"*, came|strong=\"H3478\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3478\"* Ahithophel with|strong=\"H3389\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H1961\"* Hushai|strong=\"H2365\"* the|strong=\"H1961\"* Archite, David|strong=\"H1732\"*’s friend|strong=\"H7463\"*, had|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1961\"* Absalom, Hushai|strong=\"H2365\"* said to|strong=\"H1961\"* Absalom, “Long live|strong=\"H2421\"* the|strong=\"H1961\"* king|strong=\"H4428\"*! Long live|strong=\"H2421\"* the|strong=\"H1961\"* king|strong=\"H4428\"*!”" + }, + { + "verseNum": 17, + "text": "Absalom said to|strong=\"H1980\"* Hushai|strong=\"H2365\"*, “Is|strong=\"H2088\"* this|strong=\"H2088\"* your|strong=\"H3808\"* kindness|strong=\"H2617\"* to|strong=\"H1980\"* your|strong=\"H3808\"* friend|strong=\"H7453\"*? Why|strong=\"H4100\"* didn’t you|strong=\"H3808\"* go|strong=\"H1980\"* with|strong=\"H1980\"* your|strong=\"H3808\"* friend|strong=\"H7453\"*?”" + }, + { + "verseNum": 18, + "text": "Hushai|strong=\"H2365\"* said to|strong=\"H3478\"* Absalom, “No|strong=\"H3808\"*; but|strong=\"H3588\"* whomever|strong=\"H3605\"* Yahweh|strong=\"H3068\"* and|strong=\"H3478\"* this|strong=\"H2088\"* people|strong=\"H5971\"* and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* have|strong=\"H1961\"* chosen, I|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* his|strong=\"H3605\"*, and|strong=\"H3478\"* I|strong=\"H3588\"* will|strong=\"H3068\"* stay|strong=\"H3427\"* with|strong=\"H3068\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 19, + "text": "Again|strong=\"H8145\"*, whom|strong=\"H4310\"* should|strong=\"H4310\"* I|strong=\"H3651\"* serve|strong=\"H5647\"*? Shouldn’t I|strong=\"H3651\"* serve|strong=\"H5647\"* in|strong=\"H6440\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H1121\"* his|strong=\"H6440\"* son|strong=\"H1121\"*? As|strong=\"H1961\"* I|strong=\"H3651\"* have|strong=\"H1961\"* served|strong=\"H5647\"* in|strong=\"H6440\"* your|strong=\"H6440\"* father|strong=\"H1121\"*’s presence|strong=\"H6440\"*, so|strong=\"H3651\"* I|strong=\"H3651\"* will|strong=\"H4310\"* be|strong=\"H1961\"* in|strong=\"H6440\"* your|strong=\"H6440\"* presence|strong=\"H6440\"*.”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H6213\"* Absalom said to|strong=\"H6213\"* Ahithophel, “Give|strong=\"H3051\"* your|strong=\"H6213\"* counsel|strong=\"H6098\"* what|strong=\"H4100\"* we|strong=\"H3068\"* shall|strong=\"H6213\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 21, + "text": "Ahithophel said|strong=\"H8085\"* to|strong=\"H3478\"* Absalom, “Go|strong=\"H3478\"* in|strong=\"H3478\"* to|strong=\"H3478\"* your|strong=\"H3605\"* father’s concubines|strong=\"H6370\"* that|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3478\"* left|strong=\"H3240\"* to|strong=\"H3478\"* keep|strong=\"H8104\"* the|strong=\"H3605\"* house|strong=\"H1004\"*. Then|strong=\"H8085\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* will|strong=\"H3478\"* hear|strong=\"H8085\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3478\"* abhorred by|strong=\"H3027\"* your|strong=\"H3605\"* father. Then|strong=\"H8085\"* the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H1004\"* all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H3478\"* with|strong=\"H1004\"* you|strong=\"H3588\"* will|strong=\"H3478\"* be|strong=\"H3027\"* strong|strong=\"H2388\"*.”" + }, + { + "verseNum": 22, + "text": "So|strong=\"H5921\"* they|strong=\"H5921\"* spread|strong=\"H5186\"* a|strong=\"H3068\"* tent for|strong=\"H5921\"* Absalom on|strong=\"H5921\"* the|strong=\"H3605\"* top|strong=\"H1406\"* of|strong=\"H5869\"* the|strong=\"H3605\"* house|strong=\"H1406\"*, and|strong=\"H3478\"* Absalom went|strong=\"H3478\"* in|strong=\"H5921\"* to|strong=\"H3478\"* his|strong=\"H3605\"* father’s concubines|strong=\"H6370\"* in|strong=\"H5921\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3605\"* counsel|strong=\"H6098\"* of|strong=\"H3117\"* Ahithophel, which|strong=\"H1992\"* he|strong=\"H3117\"* gave|strong=\"H3289\"* in|strong=\"H3117\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, was|strong=\"H1732\"* as|strong=\"H1697\"* if|strong=\"H3651\"* a|strong=\"H3068\"* man|strong=\"H3605\"* inquired|strong=\"H7592\"* at|strong=\"H1732\"* the|strong=\"H3605\"* inner sanctuary of|strong=\"H3117\"* God. All|strong=\"H3605\"* the|strong=\"H3605\"* counsel|strong=\"H6098\"* of|strong=\"H3117\"* Ahithophel was|strong=\"H1732\"* like|strong=\"H3651\"* this|strong=\"H3651\"* both|strong=\"H1571\"* with|strong=\"H1697\"* David|strong=\"H1732\"* and|strong=\"H3117\"* with|strong=\"H1697\"* Absalom." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Moreover Ahithophel said to|strong=\"H1732\"* Absalom, “Let|strong=\"H4994\"* me|strong=\"H4994\"* now|strong=\"H4994\"* choose twelve|strong=\"H8147\"* thousand men|strong=\"H8147\"*, and|strong=\"H6965\"* I|strong=\"H6965\"* will|strong=\"H8147\"* arise|strong=\"H6965\"* and|strong=\"H6965\"* pursue|strong=\"H7291\"* after|strong=\"H7291\"* David|strong=\"H1732\"* tonight|strong=\"H3915\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H5921\"* will|strong=\"H4428\"* come|strong=\"H5971\"* on|strong=\"H5921\"* him|strong=\"H5921\"* while|strong=\"H1931\"* he|strong=\"H1931\"* is|strong=\"H1931\"* weary|strong=\"H3023\"* and|strong=\"H4428\"* exhausted|strong=\"H3027\"*, and|strong=\"H4428\"* will|strong=\"H4428\"* make|strong=\"H2729\"* him|strong=\"H5921\"* afraid|strong=\"H2729\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H5971\"* with|strong=\"H5921\"* him|strong=\"H5921\"* will|strong=\"H4428\"* flee|strong=\"H5127\"*. I|strong=\"H5921\"* will|strong=\"H4428\"* strike|strong=\"H5221\"* the|strong=\"H3605\"* king|strong=\"H4428\"* only|strong=\"H3605\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H7725\"* I|strong=\"H3605\"* will|strong=\"H1961\"* bring|strong=\"H7725\"* back|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* to|strong=\"H7725\"* you|strong=\"H3605\"*. The|strong=\"H3605\"* man|strong=\"H3605\"* whom|strong=\"H5971\"* you|strong=\"H3605\"* seek|strong=\"H1245\"* is|strong=\"H3605\"* as|strong=\"H1961\"* if|strong=\"H1961\"* all|strong=\"H3605\"* returned|strong=\"H7725\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* in|strong=\"H7725\"* peace|strong=\"H7965\"*.”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* saying|strong=\"H1697\"* pleased|strong=\"H3474\"* Absalom well|strong=\"H5869\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1697\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H1571\"* Absalom said|strong=\"H7121\"*, “Now|strong=\"H4994\"* call|strong=\"H7121\"* Hushai|strong=\"H2365\"* the|strong=\"H8085\"* Archite also|strong=\"H1571\"*, and|strong=\"H8085\"* let|strong=\"H4994\"*’s hear|strong=\"H8085\"* likewise|strong=\"H1571\"* what|strong=\"H4100\"* he|strong=\"H1931\"* says|strong=\"H6310\"*.”" + }, + { + "verseNum": 6, + "text": "When|strong=\"H1696\"* Hushai|strong=\"H2365\"* had|strong=\"H1697\"* come to|strong=\"H1696\"* Absalom, Absalom spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H6213\"*, saying|strong=\"H1697\"*, “Ahithophel has|strong=\"H1697\"* spoken|strong=\"H1696\"* like|strong=\"H1697\"* this|strong=\"H2088\"*. Shall|strong=\"H2088\"* we|strong=\"H3068\"* do|strong=\"H6213\"* what|strong=\"H1697\"* he|strong=\"H6213\"* says|strong=\"H1696\"*? If not|strong=\"H6213\"*, speak|strong=\"H1696\"* up|strong=\"H6213\"*.”" + }, + { + "verseNum": 7, + "text": "Hushai|strong=\"H2365\"* said to|strong=\"H2896\"* Absalom, “The|strong=\"H3808\"* counsel|strong=\"H6098\"* that|strong=\"H3808\"* Ahithophel has|strong=\"H3289\"* given|strong=\"H3289\"* this|strong=\"H2063\"* time|strong=\"H6471\"* is|strong=\"H2896\"* not|strong=\"H3808\"* good|strong=\"H2896\"*.”" + }, + { + "verseNum": 8, + "text": "Hushai|strong=\"H2365\"* said moreover|strong=\"H3588\"*, “You|strong=\"H3588\"* know|strong=\"H3045\"* your|strong=\"H3045\"* father and|strong=\"H5971\"* his|strong=\"H3045\"* men|strong=\"H1368\"*, that|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*, and|strong=\"H5971\"* they|strong=\"H1992\"* are|strong=\"H1992\"* fierce|strong=\"H4751\"* in|strong=\"H5315\"* their|strong=\"H1992\"* minds|strong=\"H5315\"*, like|strong=\"H3808\"* a|strong=\"H3068\"* bear|strong=\"H1677\"* robbed|strong=\"H7909\"* of|strong=\"H7704\"* her|strong=\"H3045\"* cubs|strong=\"H7909\"* in|strong=\"H5315\"* the|strong=\"H3588\"* field|strong=\"H7704\"*. Your|strong=\"H3045\"* father is|strong=\"H5315\"* a|strong=\"H3068\"* man|strong=\"H1368\"* of|strong=\"H7704\"* war|strong=\"H4421\"*, and|strong=\"H5971\"* will|strong=\"H5971\"* not|strong=\"H3808\"* lodge|strong=\"H3885\"* with|strong=\"H3045\"* the|strong=\"H3588\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 9, + "text": "Behold|strong=\"H2009\"*, he|strong=\"H1931\"* is|strong=\"H1931\"* now|strong=\"H6258\"* hidden|strong=\"H2244\"* in|strong=\"H8085\"* some|strong=\"H5971\"* pit|strong=\"H6354\"*, or|strong=\"H8085\"* in|strong=\"H8085\"* some|strong=\"H5971\"* other place|strong=\"H4725\"*. It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, when|strong=\"H1961\"* some|strong=\"H5971\"* of|strong=\"H5971\"* them|strong=\"H1961\"* have|strong=\"H1961\"* fallen|strong=\"H5307\"* at|strong=\"H1961\"* the|strong=\"H8085\"* first|strong=\"H8462\"*, that|strong=\"H5971\"* whoever hears|strong=\"H8085\"* it|strong=\"H1931\"* will|strong=\"H1961\"* say, ‘There|strong=\"H2009\"* is|strong=\"H1931\"* a|strong=\"H3068\"* slaughter|strong=\"H4046\"* among|strong=\"H5971\"* the|strong=\"H8085\"* people|strong=\"H5971\"* who|strong=\"H1931\"* follow|strong=\"H1961\"* Absalom!’" + }, + { + "verseNum": 10, + "text": "Even|strong=\"H1571\"* he|strong=\"H1931\"* who|strong=\"H3605\"* is|strong=\"H1931\"* valiant|strong=\"H2428\"*, whose|strong=\"H1121\"* heart|strong=\"H3820\"* is|strong=\"H1931\"* as|strong=\"H1571\"* the|strong=\"H3605\"* heart|strong=\"H3820\"* of|strong=\"H1121\"* a|strong=\"H3068\"* lion, will|strong=\"H3478\"* utterly|strong=\"H4549\"* melt|strong=\"H4549\"*; for|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* knows|strong=\"H3045\"* that|strong=\"H3588\"* your|strong=\"H3605\"* father|strong=\"H1121\"* is|strong=\"H1931\"* a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"*, and|strong=\"H1121\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1121\"* with|strong=\"H3045\"* him|strong=\"H1931\"* are|strong=\"H1121\"* valiant|strong=\"H2428\"* men|strong=\"H1368\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H3588\"* I|strong=\"H3588\"* counsel|strong=\"H3289\"* that|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* be|strong=\"H3478\"* gathered|strong=\"H3478\"* together|strong=\"H5921\"* to|strong=\"H5704\"* you|strong=\"H3588\"*, from|strong=\"H6440\"* Dan|strong=\"H1835\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Beersheba, as|strong=\"H5704\"* the|strong=\"H3605\"* sand|strong=\"H2344\"* that|strong=\"H3588\"* is|strong=\"H3478\"* by|strong=\"H5921\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* for|strong=\"H3588\"* multitude|strong=\"H7230\"*; and|strong=\"H1980\"* that|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H1980\"* to|strong=\"H5704\"* battle|strong=\"H7128\"* in|strong=\"H5921\"* your|strong=\"H3605\"* own|strong=\"H6440\"* person|strong=\"H6440\"*." + }, + { + "verseNum": 12, + "text": "So|strong=\"H3808\"* we|strong=\"H3068\"* will|strong=\"H1571\"* come|strong=\"H4672\"* on|strong=\"H5921\"* him|strong=\"H5921\"* in|strong=\"H5921\"* some|strong=\"H8033\"* place|strong=\"H4725\"* where|strong=\"H8033\"* he|strong=\"H8033\"* will|strong=\"H1571\"* be|strong=\"H3808\"* found|strong=\"H4672\"*, and|strong=\"H8033\"* we|strong=\"H3068\"* will|strong=\"H1571\"* light on|strong=\"H5921\"* him|strong=\"H5921\"* as|strong=\"H1571\"* the|strong=\"H3605\"* dew|strong=\"H2919\"* falls|strong=\"H5307\"* on|strong=\"H5921\"* the|strong=\"H3605\"* ground|strong=\"H4725\"*, then|strong=\"H5307\"* we|strong=\"H3068\"* will|strong=\"H1571\"* not|strong=\"H3808\"* leave|strong=\"H3498\"* so|strong=\"H3808\"* much|strong=\"H3498\"* as|strong=\"H1571\"* one|strong=\"H3605\"* of|strong=\"H5921\"* him|strong=\"H5921\"* and|strong=\"H8033\"* of|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1571\"* with|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "Moreover|strong=\"H1571\"*, if|strong=\"H1931\"* he|strong=\"H1931\"* has|strong=\"H3478\"* gone|strong=\"H3808\"* into|strong=\"H5892\"* a|strong=\"H3068\"* city|strong=\"H5892\"*, then|strong=\"H5375\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* will|strong=\"H3478\"* bring|strong=\"H5375\"* ropes|strong=\"H2256\"* to|strong=\"H5704\"* that|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H3478\"* we|strong=\"H3068\"* will|strong=\"H3478\"* draw|strong=\"H5498\"* it|strong=\"H1931\"* into|strong=\"H5892\"* the|strong=\"H3605\"* river|strong=\"H5158\"*, until|strong=\"H5704\"* there|strong=\"H8033\"* isn’t one|strong=\"H3605\"* small|strong=\"H1571\"* stone|strong=\"H6872\"* found|strong=\"H4672\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 14, + "text": "Absalom and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H7451\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* said, “The|strong=\"H3605\"* counsel|strong=\"H6098\"* of|strong=\"H3068\"* Hushai|strong=\"H2365\"* the|strong=\"H3605\"* Archite is|strong=\"H3068\"* better|strong=\"H2896\"* than|strong=\"H2896\"* the|strong=\"H3605\"* counsel|strong=\"H6098\"* of|strong=\"H3068\"* Ahithophel.” For|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* ordained|strong=\"H6680\"* to|strong=\"H3478\"* defeat|strong=\"H6565\"* the|strong=\"H3605\"* good|strong=\"H2896\"* counsel|strong=\"H6098\"* of|strong=\"H3068\"* Ahithophel, to|strong=\"H3478\"* the|strong=\"H3605\"* intent|strong=\"H5668\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* might|strong=\"H3068\"* bring|strong=\"H7451\"* evil|strong=\"H7451\"* on|strong=\"H3068\"* Absalom." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H3548\"* Hushai|strong=\"H2365\"* said to|strong=\"H3478\"* Zadok|strong=\"H6659\"* and|strong=\"H3478\"* to|strong=\"H3478\"* Abiathar the|strong=\"H6659\"* priests|strong=\"H3548\"*, “Ahithophel counseled|strong=\"H3289\"* Absalom and|strong=\"H3478\"* the|strong=\"H6659\"* elders|strong=\"H2205\"* of|strong=\"H2205\"* Israel|strong=\"H3478\"* that|strong=\"H3478\"* way|strong=\"H2063\"*; and|strong=\"H3478\"* I|strong=\"H3478\"* have|strong=\"H3478\"* counseled|strong=\"H3289\"* this|strong=\"H2063\"* way|strong=\"H2063\"*." + }, + { + "verseNum": 16, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* send|strong=\"H7971\"* quickly|strong=\"H4120\"*, and|strong=\"H7971\"* tell|strong=\"H5046\"* David|strong=\"H1732\"*, saying, ‘Don’t lodge|strong=\"H3885\"* tonight|strong=\"H3915\"* at|strong=\"H1732\"* the|strong=\"H3605\"* fords|strong=\"H6160\"* of|strong=\"H4428\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*, but|strong=\"H1571\"* by|strong=\"H5674\"* all|strong=\"H3605\"* means|strong=\"H5674\"* pass|strong=\"H5674\"* over|strong=\"H5674\"*, lest|strong=\"H6435\"* the|strong=\"H3605\"* king|strong=\"H4428\"* be|strong=\"H1571\"* swallowed|strong=\"H1104\"* up|strong=\"H1104\"*, and|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H5971\"* with|strong=\"H5971\"* him|strong=\"H7971\"*.’”" + }, + { + "verseNum": 17, + "text": "Now|strong=\"H3588\"* Jonathan|strong=\"H3083\"* and|strong=\"H1980\"* Ahimaaz were|strong=\"H1992\"* staying|strong=\"H5975\"* by|strong=\"H5975\"* En Rogel; and|strong=\"H1980\"* a|strong=\"H3068\"* female|strong=\"H8198\"* servant|strong=\"H8198\"* used to|strong=\"H1980\"* go|strong=\"H1980\"* and|strong=\"H1980\"* report|strong=\"H5046\"* to|strong=\"H1980\"* them|strong=\"H1992\"*, and|strong=\"H1980\"* they|strong=\"H1992\"* went|strong=\"H1980\"* and|strong=\"H1980\"* told|strong=\"H5046\"* King|strong=\"H4428\"* David|strong=\"H1732\"*; for|strong=\"H3588\"* they|strong=\"H1992\"* couldn’t risk being seen|strong=\"H7200\"* coming|strong=\"H1980\"* into|strong=\"H1980\"* the|strong=\"H7200\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H7200\"* a|strong=\"H3068\"* boy|strong=\"H5288\"* saw|strong=\"H7200\"* them|strong=\"H3381\"*, and|strong=\"H3212\"* told|strong=\"H5046\"* Absalom. Then|strong=\"H7200\"* they|strong=\"H8033\"* both|strong=\"H8147\"* went|strong=\"H3212\"* away|strong=\"H3212\"* quickly|strong=\"H4120\"* and|strong=\"H3212\"* came|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H7200\"* house|strong=\"H1004\"* of|strong=\"H1004\"* a|strong=\"H3068\"* man|strong=\"H5288\"* in|strong=\"H1004\"* Bahurim, who|strong=\"H5288\"* had a|strong=\"H3068\"* well in|strong=\"H1004\"* his|strong=\"H7200\"* court|strong=\"H2691\"*; and|strong=\"H3212\"* they|strong=\"H8033\"* went|strong=\"H3212\"* down|strong=\"H3381\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H6440\"* woman took|strong=\"H3947\"* and|strong=\"H6440\"* spread|strong=\"H6566\"* the|strong=\"H6440\"* covering|strong=\"H4539\"* over|strong=\"H5921\"* the|strong=\"H6440\"* well|strong=\"H3045\"*’s mouth|strong=\"H6440\"*, and|strong=\"H6440\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* crushed|strong=\"H7383\"* grain|strong=\"H7383\"* on|strong=\"H5921\"* it|strong=\"H5921\"*; and|strong=\"H6440\"* nothing|strong=\"H3808\"* was|strong=\"H1697\"* known|strong=\"H3045\"*." + }, + { + "verseNum": 20, + "text": "Absalom’s servants|strong=\"H5650\"* came|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H7725\"* woman|strong=\"H1004\"* to|strong=\"H7725\"* the|strong=\"H7725\"* house|strong=\"H1004\"*; and|strong=\"H7725\"* they|strong=\"H3808\"* said, “Where|strong=\"H1004\"* are|strong=\"H5650\"* Ahimaaz and|strong=\"H7725\"* Jonathan|strong=\"H3083\"*?”" + }, + { + "verseNum": 21, + "text": "After|strong=\"H5921\"* they|strong=\"H3588\"* had|strong=\"H1961\"* departed|strong=\"H3212\"*, they|strong=\"H3588\"* came|strong=\"H1961\"* up|strong=\"H5927\"* out|strong=\"H5921\"* of|strong=\"H4428\"* the|strong=\"H5921\"* well and|strong=\"H6965\"* went|strong=\"H3212\"* and|strong=\"H6965\"* told|strong=\"H5046\"* King|strong=\"H4428\"* David|strong=\"H1732\"*; and|strong=\"H6965\"* they|strong=\"H3588\"* said to|strong=\"H3212\"* David|strong=\"H1732\"*, “Arise|strong=\"H6965\"* and|strong=\"H6965\"* pass|strong=\"H5674\"* quickly|strong=\"H4120\"* over|strong=\"H5921\"* the|strong=\"H5921\"* water|strong=\"H4325\"*; for|strong=\"H3588\"* thus|strong=\"H3602\"* has|strong=\"H1961\"* Ahithophel counseled|strong=\"H3289\"* against|strong=\"H5921\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 22, + "text": "Then|strong=\"H6965\"* David|strong=\"H1732\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5971\"* him|strong=\"H3605\"*, and|strong=\"H6965\"* they|strong=\"H3808\"* passed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*. By|strong=\"H5674\"* the|strong=\"H3605\"* morning|strong=\"H1242\"* light there|strong=\"H3605\"* lacked|strong=\"H5737\"* not|strong=\"H3808\"* one|strong=\"H3605\"* of|strong=\"H5971\"* them|strong=\"H5674\"* who|strong=\"H3605\"* had|strong=\"H1732\"* not|strong=\"H3808\"* gone|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"H3588\"* Ahithophel saw|strong=\"H7200\"* that|strong=\"H3588\"* his|strong=\"H7200\"* counsel|strong=\"H6098\"* was|strong=\"H5892\"* not|strong=\"H3808\"* followed|strong=\"H3212\"*, he|strong=\"H3588\"* saddled|strong=\"H2280\"* his|strong=\"H7200\"* donkey|strong=\"H2543\"*, arose|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* home|strong=\"H1004\"* to|strong=\"H4191\"* his|strong=\"H7200\"* city|strong=\"H5892\"*, set|strong=\"H6965\"* his|strong=\"H7200\"* house|strong=\"H1004\"* in|strong=\"H6213\"* order|strong=\"H6680\"*, and|strong=\"H6965\"* hanged|strong=\"H2614\"* himself|strong=\"H6213\"*; and|strong=\"H6965\"* he|strong=\"H3588\"* died|strong=\"H4191\"*, and|strong=\"H6965\"* was|strong=\"H5892\"* buried|strong=\"H6912\"* in|strong=\"H6213\"* the|strong=\"H7200\"* tomb|strong=\"H6913\"* of|strong=\"H1004\"* his|strong=\"H7200\"* father." + }, + { + "verseNum": 24, + "text": "Then|strong=\"H5674\"* David|strong=\"H1732\"* came|strong=\"H3478\"* to|strong=\"H3478\"* Mahanaim|strong=\"H4266\"*. Absalom passed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, he|strong=\"H1931\"* and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 25, + "text": "Absalom set|strong=\"H7760\"* Amasa|strong=\"H6021\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* Joab|strong=\"H3097\"*. Now|strong=\"H7760\"* Amasa|strong=\"H6021\"* was|strong=\"H8034\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* man|strong=\"H1121\"* whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Ithra|strong=\"H3501\"* the|strong=\"H5921\"* Israelite|strong=\"H3481\"*, who|strong=\"H1121\"* went|strong=\"H1121\"* in|strong=\"H5921\"* to|strong=\"H5921\"* Abigail the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Nahash|strong=\"H5176\"*, sister to|strong=\"H5921\"* Zeruiah|strong=\"H6870\"*, Joab|strong=\"H3097\"*’s mother." + }, + { + "verseNum": 26, + "text": "Israel|strong=\"H3478\"* and|strong=\"H3478\"* Absalom encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H3478\"* land of|strong=\"H3478\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"H1961\"* David|strong=\"H1732\"* had|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1961\"* Mahanaim|strong=\"H4266\"*, Shobi|strong=\"H7629\"* the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nahash|strong=\"H5176\"* of|strong=\"H1121\"* Rabbah|strong=\"H7237\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* Machir|strong=\"H4353\"* the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammiel|strong=\"H5988\"* of|strong=\"H1121\"* Lodebar|strong=\"H3810\"*, and|strong=\"H1121\"* Barzillai|strong=\"H1271\"* the|strong=\"H1961\"* Gileadite|strong=\"H1569\"* of|strong=\"H1121\"* Rogelim|strong=\"H7274\"*," + }, + { + "verseNum": 28, + "text": "brought beds|strong=\"H4904\"*, basins|strong=\"H5592\"*, earthen|strong=\"H3335\"* vessels|strong=\"H3627\"*, wheat|strong=\"H2406\"*, barley|strong=\"H8184\"*, meal|strong=\"H7058\"*, parched|strong=\"H7039\"* grain|strong=\"H7039\"*, beans|strong=\"H6321\"*, lentils|strong=\"H5742\"*, roasted|strong=\"H7039\"* grain|strong=\"H7039\"*," + }, + { + "verseNum": 29, + "text": "honey|strong=\"H1706\"*, butter|strong=\"H2529\"*, sheep|strong=\"H6629\"*, and|strong=\"H5971\"* cheese|strong=\"H8194\"* of|strong=\"H4057\"* the|strong=\"H3588\"* herd|strong=\"H1241\"*, for|strong=\"H3588\"* David|strong=\"H1732\"* and|strong=\"H5971\"* for|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* with|strong=\"H5971\"* him|strong=\"H1732\"* to|strong=\"H1732\"* eat; for|strong=\"H3588\"* they|strong=\"H3588\"* said, “The|strong=\"H3588\"* people|strong=\"H5971\"* are|strong=\"H5971\"* hungry|strong=\"H7457\"*, weary|strong=\"H5889\"*, and|strong=\"H5971\"* thirsty|strong=\"H6771\"* in|strong=\"H6629\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"*.”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* counted|strong=\"H6485\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* with|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3967\"* set|strong=\"H7760\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* thousands and|strong=\"H3967\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* hundreds|strong=\"H3967\"* over|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* sent|strong=\"H7971\"* the|strong=\"H7971\"* people|strong=\"H5971\"* out|strong=\"H3318\"*, a|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* under|strong=\"H3027\"* the|strong=\"H7971\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Joab|strong=\"H3097\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* under|strong=\"H3027\"* the|strong=\"H7971\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Abishai the|strong=\"H7971\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"*, Joab|strong=\"H3097\"*’s brother, and|strong=\"H1121\"* a|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* under|strong=\"H3027\"* the|strong=\"H7971\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Ittai the|strong=\"H7971\"* Gittite|strong=\"H1663\"*. The|strong=\"H7971\"* king|strong=\"H4428\"* said|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H7971\"* people|strong=\"H5971\"*, “I|strong=\"H1571\"* will|strong=\"H4428\"* also|strong=\"H1571\"* surely|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H5973\"* you|strong=\"H7971\"* myself|strong=\"H1571\"*.”" + }, + { + "verseNum": 3, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* said|strong=\"H3318\"*, “You|strong=\"H3588\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, for|strong=\"H3588\"* if|strong=\"H3588\"* we|strong=\"H3068\"* flee|strong=\"H5127\"* away|strong=\"H5127\"*, they|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* care|strong=\"H7760\"* for|strong=\"H3588\"* us|strong=\"H7760\"*, neither|strong=\"H3808\"* if|strong=\"H3588\"* half|strong=\"H2677\"* of|strong=\"H5892\"* us|strong=\"H7760\"* die|strong=\"H4191\"*, will|strong=\"H1961\"* they|strong=\"H3588\"* care|strong=\"H7760\"* for|strong=\"H3588\"* us|strong=\"H7760\"*. But|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* worth|strong=\"H3644\"* ten|strong=\"H6235\"* thousand of|strong=\"H5892\"* us|strong=\"H7760\"*. Therefore|strong=\"H6258\"* now|strong=\"H6258\"* it|strong=\"H7760\"* is|strong=\"H3820\"* better|strong=\"H2896\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* ready|strong=\"H2896\"* to|strong=\"H3318\"* help|strong=\"H5826\"* us|strong=\"H7760\"* out|strong=\"H3318\"* of|strong=\"H5892\"* the|strong=\"H3588\"* city|strong=\"H5892\"*.”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* said to|strong=\"H3381\"* them|strong=\"H3027\"*, “I|strong=\"H3027\"* will|strong=\"H4428\"* do|strong=\"H6213\"* what|strong=\"H6213\"* seems|strong=\"H3190\"* best|strong=\"H3190\"* to|strong=\"H3381\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"* Joab|strong=\"H3097\"* and|strong=\"H4428\"* Abishai and|strong=\"H4428\"* Ittai, saying|strong=\"H1697\"*, “Deal gently for|strong=\"H5921\"* my|strong=\"H8085\"* sake|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H3605\"* young|strong=\"H5288\"* man|strong=\"H5288\"* Absalom.” All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* heard|strong=\"H8085\"* when|strong=\"H8085\"* the|strong=\"H3605\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* concerning|strong=\"H5921\"* Absalom." + }, + { + "verseNum": 6, + "text": "So|strong=\"H1961\"* the|strong=\"H3318\"* people|strong=\"H5971\"* went|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3318\"* field|strong=\"H7704\"* against|strong=\"H7125\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* the|strong=\"H3318\"* battle|strong=\"H4421\"* was|strong=\"H1961\"* in|strong=\"H3478\"* the|strong=\"H3318\"* forest|strong=\"H3293\"* of|strong=\"H7704\"* Ephraim." + }, + { + "verseNum": 7, + "text": "The|strong=\"H6440\"* people|strong=\"H5971\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* struck|strong=\"H5062\"* there|strong=\"H8033\"* before|strong=\"H6440\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"*, and|strong=\"H3478\"* there|strong=\"H8033\"* was|strong=\"H1961\"* a|strong=\"H3068\"* great|strong=\"H1419\"* slaughter|strong=\"H4046\"* there|strong=\"H8033\"* that|strong=\"H5971\"* day|strong=\"H3117\"* of|strong=\"H3117\"* twenty|strong=\"H6242\"* thousand men|strong=\"H1419\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H5921\"* the|strong=\"H3605\"* battle|strong=\"H4421\"* was|strong=\"H1961\"* there|strong=\"H8033\"* spread|strong=\"H6327\"* over|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* country, and|strong=\"H3117\"* the|strong=\"H3605\"* forest|strong=\"H3293\"* devoured more|strong=\"H7235\"* people|strong=\"H5971\"* that|strong=\"H5971\"* day|strong=\"H3117\"* than|strong=\"H7235\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* devoured." + }, + { + "verseNum": 9, + "text": "Absalom happened|strong=\"H7122\"* to|strong=\"H5921\"* meet|strong=\"H7122\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"*. Absalom was|strong=\"H1732\"* riding|strong=\"H7392\"* on|strong=\"H5921\"* his|strong=\"H5414\"* mule|strong=\"H6505\"*, and|strong=\"H1419\"* the|strong=\"H6440\"* mule|strong=\"H6505\"* went|strong=\"H5674\"* under|strong=\"H8478\"* the|strong=\"H6440\"* thick|strong=\"H7730\"* boughs|strong=\"H7730\"* of|strong=\"H7218\"* a|strong=\"H3068\"* great|strong=\"H1419\"* oak; and|strong=\"H1419\"* his|strong=\"H5414\"* head|strong=\"H7218\"* caught|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H7218\"* the|strong=\"H6440\"* oak, and|strong=\"H1419\"* he|strong=\"H1732\"* was|strong=\"H1732\"* hanging|strong=\"H5414\"* between|strong=\"H5921\"* the|strong=\"H6440\"* sky|strong=\"H8064\"* and|strong=\"H1419\"* earth|strong=\"H8064\"*; and|strong=\"H1419\"* the|strong=\"H6440\"* mule|strong=\"H6505\"* that|strong=\"H5414\"* was|strong=\"H1732\"* under|strong=\"H8478\"* him|strong=\"H5414\"* went|strong=\"H5674\"* on|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "A|strong=\"H3068\"* certain man|strong=\"H7200\"* saw|strong=\"H7200\"* it|strong=\"H7200\"*, and|strong=\"H7200\"* told|strong=\"H5046\"* Joab|strong=\"H3097\"*, and|strong=\"H7200\"* said, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* saw|strong=\"H7200\"* Absalom hanging|strong=\"H8518\"* in|strong=\"H7200\"* an|strong=\"H7200\"* oak.”" + }, + { + "verseNum": 11, + "text": "Joab|strong=\"H3097\"* said to|strong=\"H5921\"* the|strong=\"H5921\"* man|strong=\"H7200\"* who|strong=\"H5221\"* told|strong=\"H5046\"* him|strong=\"H5414\"*, “Behold|strong=\"H2009\"*, you|strong=\"H5414\"* saw|strong=\"H7200\"* it|strong=\"H5414\"*, and|strong=\"H3701\"* why|strong=\"H4069\"* didn’t you|strong=\"H5414\"* strike|strong=\"H5221\"* him|strong=\"H5414\"* there|strong=\"H8033\"* to|strong=\"H5921\"* the|strong=\"H5921\"* ground? I|strong=\"H5414\"* would have|strong=\"H7200\"* given|strong=\"H5414\"* you|strong=\"H5414\"* ten|strong=\"H6235\"* pieces of|strong=\"H5921\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* a|strong=\"H3068\"* sash.”" + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* man|strong=\"H5288\"* said to|strong=\"H7971\"* Joab|strong=\"H3097\"*, “Though|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* receive|strong=\"H8254\"* a|strong=\"H3068\"* thousand pieces of|strong=\"H1121\"* silver|strong=\"H3701\"* in|strong=\"H5921\"* my|strong=\"H8104\"* hand|strong=\"H3027\"*, I|strong=\"H3588\"* still|strong=\"H3588\"* wouldn’t stretch|strong=\"H7971\"* out|strong=\"H7971\"* my|strong=\"H8104\"* hand|strong=\"H3027\"* against|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"*; for|strong=\"H3588\"* in|strong=\"H5921\"* our|strong=\"H5921\"* hearing the|strong=\"H5921\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"* and|strong=\"H1121\"* Abishai and|strong=\"H1121\"* Ittai, saying, ‘Beware|strong=\"H8104\"* that|strong=\"H3588\"* no|strong=\"H3808\"* one|strong=\"H3808\"* touch the|strong=\"H5921\"* young|strong=\"H5288\"* man|strong=\"H5288\"* Absalom.’" + }, + { + "verseNum": 13, + "text": "Otherwise|strong=\"H3808\"*, if I|strong=\"H1697\"* had|strong=\"H4428\"* dealt|strong=\"H6213\"* falsely|strong=\"H8267\"* against|strong=\"H4480\"* his|strong=\"H3605\"* life|strong=\"H5315\"* (and|strong=\"H4428\"* there|strong=\"H4480\"* is|strong=\"H5315\"* no|strong=\"H3808\"* matter|strong=\"H1697\"* hidden|strong=\"H3582\"* from|strong=\"H4480\"* the|strong=\"H3605\"* king|strong=\"H4428\"*), then|strong=\"H6213\"* you|strong=\"H3605\"* yourself|strong=\"H5315\"* would|strong=\"H1697\"* have|strong=\"H1697\"* set|strong=\"H3320\"* yourself|strong=\"H5315\"* against|strong=\"H4480\"* me|strong=\"H5315\"*.”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H3947\"* Joab|strong=\"H3097\"* said|strong=\"H3651\"*, “I|strong=\"H3651\"*’m not|strong=\"H3808\"* going to|strong=\"H3820\"* wait|strong=\"H3176\"* like|strong=\"H3651\"* this|strong=\"H3651\"* with|strong=\"H6440\"* you|strong=\"H6440\"*.” He|strong=\"H3651\"* took|strong=\"H3947\"* three|strong=\"H7969\"* darts|strong=\"H7626\"* in|strong=\"H6440\"* his|strong=\"H3947\"* hand|strong=\"H3709\"* and|strong=\"H6440\"* thrust|strong=\"H8628\"* them|strong=\"H6440\"* through|strong=\"H3820\"* Absalom’s heart|strong=\"H3820\"* while|strong=\"H5750\"* he|strong=\"H3651\"* was|strong=\"H3820\"* still|strong=\"H5750\"* alive|strong=\"H2416\"* in|strong=\"H6440\"* the|strong=\"H6440\"* middle|strong=\"H3820\"* of|strong=\"H7626\"* the|strong=\"H6440\"* oak." + }, + { + "verseNum": 15, + "text": "Ten|strong=\"H6235\"* young|strong=\"H5288\"* men|strong=\"H5288\"* who|strong=\"H5288\"* bore|strong=\"H5375\"* Joab|strong=\"H3097\"*’s armor|strong=\"H3627\"* surrounded|strong=\"H5437\"* and|strong=\"H5288\"* struck|strong=\"H5221\"* Absalom, and|strong=\"H5288\"* killed|strong=\"H5221\"* him|strong=\"H5221\"*." + }, + { + "verseNum": 16, + "text": "Joab|strong=\"H3097\"* blew|strong=\"H8628\"* the|strong=\"H3588\"* trumpet|strong=\"H7782\"*, and|strong=\"H3478\"* the|strong=\"H3588\"* people|strong=\"H5971\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* pursuing|strong=\"H7291\"* after|strong=\"H7291\"* Israel|strong=\"H3478\"*; for|strong=\"H3588\"* Joab|strong=\"H3097\"* held|strong=\"H3097\"* the|strong=\"H3588\"* people|strong=\"H5971\"* back|strong=\"H7725\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H5921\"* took|strong=\"H3947\"* Absalom and|strong=\"H3478\"* cast|strong=\"H7993\"* him|strong=\"H5921\"* into|strong=\"H5921\"* a|strong=\"H3068\"* great|strong=\"H1419\"* pit|strong=\"H6354\"* in|strong=\"H5921\"* the|strong=\"H3605\"* forest|strong=\"H3293\"*, and|strong=\"H3478\"* raised over|strong=\"H5921\"* him|strong=\"H5921\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* heap|strong=\"H1530\"* of|strong=\"H5921\"* stones. Then|strong=\"H3947\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* fled|strong=\"H5127\"*, each|strong=\"H3605\"* to|strong=\"H3478\"* his|strong=\"H3605\"* own tent." + }, + { + "verseNum": 18, + "text": "Now|strong=\"H3117\"* Absalom in|strong=\"H5921\"* his|strong=\"H7121\"* lifetime|strong=\"H3117\"* had|strong=\"H4428\"* taken|strong=\"H3947\"* and|strong=\"H1121\"* reared up|strong=\"H5324\"* for|strong=\"H3588\"* himself|strong=\"H3027\"* the|strong=\"H5921\"* pillar|strong=\"H4678\"* which|strong=\"H2088\"* is|strong=\"H2088\"* in|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s valley|strong=\"H6010\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* said|strong=\"H7121\"*, “I|strong=\"H3588\"* have|strong=\"H1121\"* no|strong=\"H3947\"* son|strong=\"H1121\"* to|strong=\"H5704\"* keep|strong=\"H2142\"* my|strong=\"H3947\"* name|strong=\"H8034\"* in|strong=\"H5921\"* memory|strong=\"H8034\"*.” He|strong=\"H3588\"* called|strong=\"H7121\"* the|strong=\"H5921\"* pillar|strong=\"H4678\"* after|strong=\"H5921\"* his|strong=\"H7121\"* own|strong=\"H3027\"* name|strong=\"H8034\"*. It|strong=\"H7121\"* is|strong=\"H2088\"* called|strong=\"H7121\"* Absalom’s monument|strong=\"H3027\"*, to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 19, + "text": "Then|strong=\"H4428\"* Ahimaaz the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"* said, “Let|strong=\"H4994\"* me|strong=\"H4994\"* now|strong=\"H4994\"* run|strong=\"H7323\"* and|strong=\"H1121\"* carry|strong=\"H1319\"* the|strong=\"H3588\"* king|strong=\"H4428\"* news|strong=\"H1319\"*, how|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* avenged|strong=\"H8199\"* him|strong=\"H3027\"* of|strong=\"H1121\"* his|strong=\"H3068\"* enemies|strong=\"H3027\"*.”" + }, + { + "verseNum": 20, + "text": "Joab|strong=\"H3097\"* said to|strong=\"H4191\"* him|strong=\"H5921\"*, “You|strong=\"H3588\"* must|strong=\"H4191\"* not|strong=\"H3808\"* be|strong=\"H4191\"* the|strong=\"H5921\"* bearer|strong=\"H1319\"* of|strong=\"H1121\"* news|strong=\"H1319\"* today|strong=\"H3117\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* must|strong=\"H4191\"* carry|strong=\"H1319\"* news|strong=\"H1319\"* another|strong=\"H2088\"* day|strong=\"H3117\"*. But|strong=\"H3588\"* today|strong=\"H3117\"* you|strong=\"H3588\"* must|strong=\"H4191\"* carry|strong=\"H1319\"* no|strong=\"H3808\"* news|strong=\"H1319\"*, because|strong=\"H3588\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"* is|strong=\"H2088\"* dead|strong=\"H4191\"*.”" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H4428\"* Joab|strong=\"H3097\"* said to|strong=\"H3212\"* the|strong=\"H7200\"* Cushite|strong=\"H3569\"*, “Go|strong=\"H3212\"*, tell|strong=\"H5046\"* the|strong=\"H7200\"* king|strong=\"H4428\"* what|strong=\"H7200\"* you|strong=\"H5046\"* have|strong=\"H7200\"* seen|strong=\"H7200\"*!” The|strong=\"H7200\"* Cushite|strong=\"H3569\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* to|strong=\"H3212\"* Joab|strong=\"H3097\"*, and|strong=\"H4428\"* ran|strong=\"H7323\"*." + }, + { + "verseNum": 22, + "text": "Then|strong=\"H1961\"* Ahimaaz the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"* said yet|strong=\"H5750\"* again|strong=\"H5750\"* to|strong=\"H1961\"* Joab|strong=\"H3097\"*, “But|strong=\"H1961\"* come|strong=\"H1961\"* what|strong=\"H4100\"* may|strong=\"H1961\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* also|strong=\"H1571\"* run|strong=\"H7323\"* after|strong=\"H1961\"* the|strong=\"H1961\"* Cushite|strong=\"H3569\"*.”" + }, + { + "verseNum": 23, + "text": "“But|strong=\"H1961\"* come|strong=\"H1961\"* what|strong=\"H4100\"* may|strong=\"H1961\"*,” he|strong=\"H4100\"* said, “I|strong=\"H4100\"* will|strong=\"H1961\"* run|strong=\"H7323\"*.”" + }, + { + "verseNum": 24, + "text": "Now|strong=\"H2009\"* David|strong=\"H1732\"* was|strong=\"H1732\"* sitting|strong=\"H3427\"* between|strong=\"H3427\"* the|strong=\"H7200\"* two|strong=\"H8147\"* gates|strong=\"H8179\"*; and|strong=\"H3212\"* the|strong=\"H7200\"* watchman|strong=\"H6822\"* went|strong=\"H3212\"* up|strong=\"H5375\"* to|strong=\"H3212\"* the|strong=\"H7200\"* roof|strong=\"H1406\"* of|strong=\"H3427\"* the|strong=\"H7200\"* gate|strong=\"H8179\"* to|strong=\"H3212\"* the|strong=\"H7200\"* wall|strong=\"H2346\"*, and|strong=\"H3212\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"* and|strong=\"H3212\"* looked|strong=\"H7200\"*, and|strong=\"H3212\"*, behold|strong=\"H2009\"*, a|strong=\"H3068\"* man|strong=\"H5375\"* running|strong=\"H7323\"* alone." + }, + { + "verseNum": 25, + "text": "The|strong=\"H7121\"* watchman|strong=\"H6822\"* shouted|strong=\"H7121\"* and|strong=\"H1980\"* told|strong=\"H5046\"* the|strong=\"H7121\"* king|strong=\"H4428\"*. The|strong=\"H7121\"* king|strong=\"H4428\"* said|strong=\"H7121\"*, “If he|strong=\"H1980\"* is|strong=\"H4428\"* alone, there is|strong=\"H4428\"* news|strong=\"H1309\"* in|strong=\"H1980\"* his|strong=\"H7121\"* mouth|strong=\"H6310\"*.” He|strong=\"H1980\"* came|strong=\"H1980\"* closer and|strong=\"H1980\"* closer." + }, + { + "verseNum": 26, + "text": "The|strong=\"H7200\"* watchman|strong=\"H6822\"* saw|strong=\"H7200\"* another|strong=\"H2088\"* man|strong=\"H2088\"* running|strong=\"H7323\"*; and|strong=\"H4428\"* the|strong=\"H7200\"* watchman|strong=\"H6822\"* called|strong=\"H7121\"* to|strong=\"H4428\"* the|strong=\"H7200\"* gatekeeper|strong=\"H7778\"* and|strong=\"H4428\"* said|strong=\"H7121\"*, “Behold|strong=\"H2009\"*, a|strong=\"H3068\"* man|strong=\"H2088\"* running|strong=\"H7323\"* alone!”" + }, + { + "verseNum": 27, + "text": "The|strong=\"H7200\"* watchman|strong=\"H6822\"* said, “I|strong=\"H7200\"* think|strong=\"H7200\"* the|strong=\"H7200\"* running|strong=\"H4794\"* of|strong=\"H1121\"* the|strong=\"H7200\"* first|strong=\"H7223\"* one|strong=\"H2088\"* is|strong=\"H2088\"* like|strong=\"H1121\"* the|strong=\"H7200\"* running|strong=\"H4794\"* of|strong=\"H1121\"* Ahimaaz the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*.”" + }, + { + "verseNum": 28, + "text": "Ahimaaz called|strong=\"H7121\"*, and|strong=\"H3068\"* said|strong=\"H7121\"* to|strong=\"H3068\"* the|strong=\"H5375\"* king|strong=\"H4428\"*, “All|strong=\"H1288\"* is|strong=\"H3068\"* well|strong=\"H7965\"*.” He|strong=\"H3068\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* before|strong=\"H7121\"* the|strong=\"H5375\"* king|strong=\"H4428\"* with|strong=\"H3068\"* his|strong=\"H5375\"* face to|strong=\"H3068\"* the|strong=\"H5375\"* earth, and|strong=\"H3068\"* said|strong=\"H7121\"*, “Blessed|strong=\"H1288\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5462\"* up|strong=\"H5375\"* the|strong=\"H5375\"* men|strong=\"H7121\"* who|strong=\"H3068\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H3068\"* hand|strong=\"H3027\"* against|strong=\"H3027\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* the|strong=\"H5375\"* king|strong=\"H4428\"*!”" + }, + { + "verseNum": 29, + "text": "The|strong=\"H7200\"* king|strong=\"H4428\"* said, “Is|strong=\"H4100\"* it|strong=\"H7200\"* well|strong=\"H7965\"* with|strong=\"H3045\"* the|strong=\"H7200\"* young|strong=\"H5288\"* man|strong=\"H5288\"* Absalom?”" + }, + { + "verseNum": 30, + "text": "The|strong=\"H3541\"* king|strong=\"H4428\"* said, “Come|strong=\"H5437\"* and|strong=\"H4428\"* stand|strong=\"H5975\"* here|strong=\"H3541\"*.” He|strong=\"H3541\"* came|strong=\"H4428\"* and|strong=\"H4428\"* stood|strong=\"H5975\"* still|strong=\"H5975\"*." + }, + { + "verseNum": 31, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H3605\"* Cushite|strong=\"H3569\"* came|strong=\"H3068\"*. The|strong=\"H3605\"* Cushite|strong=\"H3569\"* said, “Good|strong=\"H1319\"* news|strong=\"H1319\"* for|strong=\"H3588\"* my|strong=\"H3605\"* lord|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* avenged|strong=\"H8199\"* you|strong=\"H3588\"* today|strong=\"H3117\"* of|strong=\"H4428\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 32, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* said to|strong=\"H1961\"* the|strong=\"H3605\"* Cushite|strong=\"H3569\"*, “Is|strong=\"H3605\"* it|strong=\"H5921\"* well|strong=\"H7965\"* with|strong=\"H5921\"* the|strong=\"H3605\"* young|strong=\"H5288\"* man|strong=\"H5288\"* Absalom?”" + }, + { + "verseNum": 33, + "text": "The king was much moved, and went up to the room over the gate and wept. As he went, he said, “My son Absalom! My son, my son Absalom! I wish I had died instead of you, Absalom, my son, my son!”" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Joab was|strong=\"H4428\"* told, “Behold, the|strong=\"H5921\"* king|strong=\"H4428\"* weeps|strong=\"H1058\"* and|strong=\"H1121\"* mourns for|strong=\"H5921\"* Absalom.”" + }, + { + "verseNum": 2, + "text": "The|strong=\"H5921\"* victory that|strong=\"H4428\"* day was|strong=\"H4428\"* turned into|strong=\"H5921\"* mourning among|strong=\"H5921\"* all|strong=\"H1058\"* the|strong=\"H5921\"* people, for|strong=\"H5921\"* the|strong=\"H5921\"* people heard|strong=\"H5046\"* it|strong=\"H5921\"* said that|strong=\"H4428\"* day, “The|strong=\"H5921\"* king|strong=\"H4428\"* grieves for|strong=\"H5921\"* his|strong=\"H5921\"* son.”" + }, + { + "verseNum": 3, + "text": "The|strong=\"H3605\"* people|strong=\"H5971\"* sneaked into|strong=\"H5921\"* the|strong=\"H3605\"* city|strong=\"H1931\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, as|strong=\"H3117\"* people|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H3117\"* ashamed steal away|strong=\"H3605\"* when|strong=\"H3588\"* they|strong=\"H3588\"* flee in|strong=\"H5921\"* battle|strong=\"H3117\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3117\"* king covered his|strong=\"H3117\"* face, and|strong=\"H3117\"* the|strong=\"H3117\"* king cried|strong=\"H5892\"* with|strong=\"H3117\"* a|strong=\"H3068\"* loud voice, “My|strong=\"H1589\"* son Absalom, Absalom, my|strong=\"H1589\"* son, my|strong=\"H1589\"* son!”" + }, + { + "verseNum": 5, + "text": "Joab came|strong=\"H4428\"* into the|strong=\"H6440\"* house to|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, and|strong=\"H1121\"* said, “Today you|strong=\"H6440\"* have|strong=\"H1121\"* shamed the|strong=\"H6440\"* faces|strong=\"H6440\"* of|strong=\"H1121\"* all|strong=\"H1419\"* your|strong=\"H6440\"* servants|strong=\"H6440\"* who|strong=\"H1121\"* today have|strong=\"H1121\"* saved your|strong=\"H6440\"* life, and|strong=\"H1121\"* the|strong=\"H6440\"* lives of|strong=\"H1121\"* your|strong=\"H6440\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H6440\"* daughters|strong=\"H1121\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* lives of|strong=\"H1121\"* your|strong=\"H6440\"* wives, and|strong=\"H1121\"* the|strong=\"H6440\"* lives of|strong=\"H1121\"* your|strong=\"H6440\"* concubines;" + }, + { + "verseNum": 6, + "text": "in|strong=\"H1004\"* that|strong=\"H3605\"* you|strong=\"H6440\"* love those|strong=\"H3605\"* who|strong=\"H3605\"* hate you|strong=\"H6440\"* and|strong=\"H1121\"* hate those|strong=\"H3605\"* who|strong=\"H3605\"* love you|strong=\"H6440\"*. For|strong=\"H6440\"* you|strong=\"H6440\"* have|strong=\"H1121\"* declared today|strong=\"H3117\"* that|strong=\"H3605\"* princes and|strong=\"H1121\"* servants|strong=\"H5650\"* are|strong=\"H3117\"* nothing|strong=\"H3605\"* to|strong=\"H6440\"* you|strong=\"H6440\"*. For|strong=\"H6440\"* today|strong=\"H3117\"* I|strong=\"H3117\"* perceive that|strong=\"H3605\"* if|strong=\"H1121\"* Absalom had|strong=\"H4428\"* lived|strong=\"H5315\"* and|strong=\"H1121\"* we|strong=\"H3068\"* had|strong=\"H4428\"* all|strong=\"H3605\"* died today|strong=\"H3117\"*, then|strong=\"H4428\"* it|strong=\"H6440\"* would|strong=\"H5315\"* have|strong=\"H1121\"* pleased you|strong=\"H6440\"* well." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H3117\"* therefore|strong=\"H3588\"* arise, go out|strong=\"H3045\"* and|strong=\"H3117\"* speak to|strong=\"H4191\"* comfort your|strong=\"H3605\"* servants|strong=\"H5650\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* swear|strong=\"H3588\"* by|strong=\"H3117\"* Yahweh|strong=\"H3068\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* don’t go out|strong=\"H3045\"*, not|strong=\"H3045\"* a|strong=\"H3068\"* man|strong=\"H4191\"* will|strong=\"H5650\"* stay with|strong=\"H3045\"* you|strong=\"H3588\"* this|strong=\"H3588\"* night. That|strong=\"H3588\"* would|strong=\"H3863\"* be|strong=\"H4191\"* worse to|strong=\"H4191\"* you|strong=\"H3588\"* than|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil that|strong=\"H3588\"* has|strong=\"H5650\"* happened to|strong=\"H4191\"* you|strong=\"H3588\"* from|strong=\"H3117\"* your|strong=\"H3605\"* youth until|strong=\"H3588\"* now|strong=\"H3117\"*.”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H6965\"* the|strong=\"H3605\"* king|strong=\"H5921\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* sat in|strong=\"H5921\"* the|strong=\"H3605\"* gate. The|strong=\"H3605\"* people|strong=\"H1696\"* were|strong=\"H5650\"* all|strong=\"H3605\"* told|strong=\"H1696\"*, “Behold, the|strong=\"H3605\"* king|strong=\"H5921\"* is|strong=\"H3068\"* sitting in|strong=\"H5921\"* the|strong=\"H3605\"* gate.” All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H1696\"* came|strong=\"H3318\"* before|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H5921\"*. Now|strong=\"H6258\"* Israel had|strong=\"H3068\"* fled every|strong=\"H3605\"* man|strong=\"H7451\"* to|strong=\"H1696\"* his|strong=\"H3605\"* tent." + }, + { + "verseNum": 9, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* were|strong=\"H3478\"* at|strong=\"H3427\"* strife throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes of|strong=\"H4428\"* Israel|strong=\"H3478\"*, saying, “The|strong=\"H3605\"* king|strong=\"H4428\"* delivered us|strong=\"H5046\"* out|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H3605\"* hand of|strong=\"H4428\"* our|strong=\"H3605\"* enemies|strong=\"H6965\"*, and|strong=\"H6965\"* he|strong=\"H3605\"* saved us|strong=\"H5046\"* out|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H3605\"* hand of|strong=\"H4428\"* the|strong=\"H3605\"* Philistines; and|strong=\"H6965\"* now|strong=\"H2009\"* he|strong=\"H3605\"* has|strong=\"H3478\"* fled|strong=\"H5127\"* out|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land|strong=\"H6440\"* from|strong=\"H6440\"* Absalom." + }, + { + "verseNum": 10, + "text": "Absalom, whom|strong=\"H5971\"* we|strong=\"H3068\"* anointed over|strong=\"H5921\"* us|strong=\"H5921\"*, is|strong=\"H1931\"* dead in|strong=\"H5921\"* battle. Now|strong=\"H6258\"* therefore|strong=\"H5921\"* why|strong=\"H5921\"* don’t you|strong=\"H3605\"* speak a|strong=\"H3068\"* word of|strong=\"H4428\"* bringing the|strong=\"H3605\"* king|strong=\"H4428\"* back?”" + }, + { + "verseNum": 11, + "text": "King|strong=\"H4428\"* David sent|strong=\"H7725\"* to|strong=\"H7725\"* Zadok and|strong=\"H7725\"* to|strong=\"H7725\"* Abiathar the|strong=\"H5921\"* priests, saying, “Speak|strong=\"H2790\"* to|strong=\"H7725\"* the|strong=\"H5921\"* elders of|strong=\"H4428\"* Judah, saying, ‘Why|strong=\"H4100\"* are|strong=\"H4100\"* you|strong=\"H5921\"* the|strong=\"H5921\"* last to|strong=\"H7725\"* bring|strong=\"H7725\"* the|strong=\"H5921\"* king|strong=\"H4428\"* back|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* house, since|strong=\"H6258\"* the|strong=\"H5921\"* speech of|strong=\"H4428\"* all|strong=\"H5921\"* Israel|strong=\"H4421\"* has|strong=\"H4428\"* come|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, to|strong=\"H7725\"* return|strong=\"H7725\"* him|strong=\"H5921\"* to|strong=\"H7725\"* his|strong=\"H7725\"* house?" + }, + { + "verseNum": 12, + "text": "You|strong=\"H3605\"* are|strong=\"H3478\"* my|strong=\"H3605\"* brothers. You|strong=\"H3605\"* are|strong=\"H3478\"* my|strong=\"H3605\"* bone and|strong=\"H3063\"* my|strong=\"H3605\"* flesh. Why|strong=\"H4100\"* then|strong=\"H1961\"* are|strong=\"H3478\"* you|strong=\"H3605\"* the|strong=\"H3605\"* last to|strong=\"H1696\"* bring|strong=\"H7725\"* back|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"*?’" + }, + { + "verseNum": 13, + "text": "Say|strong=\"H7725\"* to|strong=\"H7725\"* Amasa, ‘Aren’t you|strong=\"H7725\"* my|strong=\"H7725\"* bone|strong=\"H6106\"* and|strong=\"H7725\"* my|strong=\"H7725\"* flesh|strong=\"H1320\"*? God do|strong=\"H4100\"* so|strong=\"H1961\"* to|strong=\"H7725\"* me|strong=\"H7725\"*, and|strong=\"H7725\"* more|strong=\"H7725\"* also|strong=\"H4428\"*, if|strong=\"H1961\"* you|strong=\"H7725\"* aren’t captain of|strong=\"H4428\"* the|strong=\"H7725\"* army before|strong=\"H1961\"* me|strong=\"H7725\"* continually instead of|strong=\"H4428\"* Joab.’”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H3117\"* bowed the|strong=\"H3605\"* heart of|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H6213\"* of|strong=\"H3117\"* Judah, even|strong=\"H3808\"* as|strong=\"H3117\"* one|strong=\"H3605\"* man|strong=\"H3605\"*, so|strong=\"H6213\"* that|strong=\"H3605\"* they|strong=\"H3117\"* sent to|strong=\"H1961\"* the|strong=\"H3605\"* king|strong=\"H6440\"*, saying, “Return|strong=\"H8478\"*, you|strong=\"H6440\"* and|strong=\"H3117\"* all|strong=\"H3605\"* your|strong=\"H3605\"* servants|strong=\"H6440\"*.”" + }, + { + "verseNum": 15, + "text": "So|strong=\"H7971\"* the|strong=\"H3605\"* king|strong=\"H4428\"* returned|strong=\"H7725\"*, and|strong=\"H3063\"* came|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3605\"* Jordan. Judah|strong=\"H3063\"* came|strong=\"H7725\"* to|strong=\"H7725\"* Gilgal, to|strong=\"H7725\"* go|strong=\"H7971\"* to|strong=\"H7725\"* meet the|strong=\"H3605\"* king|strong=\"H4428\"*, to|strong=\"H7725\"* bring|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"* over|strong=\"H4428\"* the|strong=\"H3605\"* Jordan." + }, + { + "verseNum": 16, + "text": "Shimei the|strong=\"H7725\"* son of|strong=\"H4428\"* Gera, the|strong=\"H7725\"* Benjamite, who|strong=\"H3063\"* was|strong=\"H4428\"* of|strong=\"H4428\"* Bahurim, hurried and|strong=\"H3063\"* came|strong=\"H3212\"* down|strong=\"H3212\"* with|strong=\"H3212\"* the|strong=\"H7725\"* men of|strong=\"H4428\"* Judah|strong=\"H3063\"* to|strong=\"H5704\"* meet|strong=\"H7125\"* King|strong=\"H4428\"* David." + }, + { + "verseNum": 17, + "text": "There were|strong=\"H1121\"* a|strong=\"H3068\"* thousand men|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1145\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, and|strong=\"H1121\"* Ziba the|strong=\"H5973\"* servant of|strong=\"H1121\"* Saul’s house, and|strong=\"H1121\"* his|strong=\"H1732\"* fifteen sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H1732\"* twenty servants with|strong=\"H5973\"* him|strong=\"H5973\"*; and|strong=\"H1121\"* they|strong=\"H3063\"* went|strong=\"H3381\"* through the|strong=\"H5973\"* Jordan in|strong=\"H4428\"* the|strong=\"H5973\"* presence|strong=\"H5973\"* of|strong=\"H1121\"* the|strong=\"H5973\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 18, + "text": "A|strong=\"H3068\"* ferry boat went|strong=\"H4428\"* to|strong=\"H6440\"* bring over|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s household|strong=\"H1004\"*, and|strong=\"H1121\"* to|strong=\"H6440\"* do what he|strong=\"H2568\"* thought good|strong=\"H6743\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H6213\"* said to|strong=\"H6213\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, “Don’t let my|strong=\"H6213\"* lord impute iniquity to|strong=\"H6213\"* me|strong=\"H6440\"*, or|strong=\"H1121\"* remember that|strong=\"H4428\"* which|strong=\"H1004\"* your|strong=\"H6440\"* servant did|strong=\"H6213\"* perversely the|strong=\"H6440\"* day that|strong=\"H4428\"* my|strong=\"H6213\"* lord the|strong=\"H6440\"* king|strong=\"H4428\"* went|strong=\"H5674\"* out|strong=\"H6213\"* of|strong=\"H1121\"* Jerusalem, that|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* should|strong=\"H6213\"* take|strong=\"H5674\"* it|strong=\"H6213\"* to|strong=\"H6213\"* his|strong=\"H6440\"* heart." + }, + { + "verseNum": 20, + "text": "For|strong=\"H3117\"* your|strong=\"H7760\"* servant|strong=\"H5650\"* knows that|strong=\"H3117\"* I|strong=\"H3117\"* have|strong=\"H5650\"* sinned. Therefore|strong=\"H5650\"* behold, I|strong=\"H3117\"* have|strong=\"H5650\"* come|strong=\"H3318\"* today|strong=\"H3117\"* as|strong=\"H3117\"* the|strong=\"H3117\"* first|strong=\"H3117\"* of|strong=\"H4428\"* all|strong=\"H3117\"* the|strong=\"H3117\"* house of|strong=\"H4428\"* Joseph to|strong=\"H3318\"* go|strong=\"H3318\"* down|strong=\"H7760\"* to|strong=\"H3318\"* meet|strong=\"H3318\"* my|strong=\"H7760\"* lord the|strong=\"H3117\"* king|strong=\"H4428\"*.”" + }, + { + "verseNum": 21, + "text": "But|strong=\"H3588\"* Abishai the|strong=\"H3605\"* son of|strong=\"H4428\"* Zeruiah answered, “Shouldn’t Shimei be|strong=\"H3117\"* put|strong=\"H3381\"* to|strong=\"H3381\"* death for|strong=\"H3588\"* this|strong=\"H3588\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* cursed Yahweh|strong=\"H3068\"*’s anointed?”" + }, + { + "verseNum": 22, + "text": "David said|strong=\"H6030\"*, “What|strong=\"H2063\"* have|strong=\"H3068\"* I|strong=\"H3588\"* to|strong=\"H4191\"* do|strong=\"H3068\"* with|strong=\"H3068\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H3068\"* be|strong=\"H4191\"* adversaries to|strong=\"H4191\"* me|strong=\"H6030\"* today? Shall|strong=\"H3068\"* any|strong=\"H3588\"* man|strong=\"H1121\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"* today in|strong=\"H3068\"* Israel? For|strong=\"H3588\"* don’t I|strong=\"H3588\"* know that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* king over|strong=\"H3068\"* Israel today?”" + }, + { + "verseNum": 23, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* said to|strong=\"H3478\"* Shimei, “You|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* die|strong=\"H4191\"*.” The|strong=\"H5921\"* king|strong=\"H4428\"* swore to|strong=\"H3478\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 24, + "text": "Mephibosheth|strong=\"H3808\"* the|strong=\"H4191\"* son of|strong=\"H4428\"* Saul came|strong=\"H4428\"* down to|strong=\"H4191\"* meet the|strong=\"H4191\"* king|strong=\"H4428\"*; and|strong=\"H4428\"* he|strong=\"H3808\"* had|strong=\"H4428\"* neither|strong=\"H3808\"* groomed his|strong=\"H8096\"* feet, nor|strong=\"H3808\"* trimmed his|strong=\"H8096\"* beard, nor|strong=\"H3808\"* washed his|strong=\"H8096\"* clothes, from|strong=\"H4191\"* the|strong=\"H4191\"* day the|strong=\"H4191\"* king|strong=\"H4428\"* departed until the|strong=\"H4191\"* day he|strong=\"H3808\"* came|strong=\"H4428\"* home in|strong=\"H4428\"* peace." + }, + { + "verseNum": 25, + "text": "When|strong=\"H3117\"* he|strong=\"H3117\"* had|strong=\"H4428\"* come|strong=\"H3212\"* to|strong=\"H5704\"* Jerusalem to|strong=\"H5704\"* meet|strong=\"H7125\"* the|strong=\"H6213\"* king|strong=\"H4428\"*, the|strong=\"H6213\"* king|strong=\"H4428\"* said to|strong=\"H5704\"* him|strong=\"H6213\"*, “Why|strong=\"H3808\"* didn’t you|strong=\"H3117\"* go|strong=\"H3212\"* with|strong=\"H6213\"* me|strong=\"H4480\"*, Mephibosheth|strong=\"H4648\"*?”" + }, + { + "verseNum": 26, + "text": "He|strong=\"H3588\"* answered, “My|strong=\"H1961\"* lord, O|strong=\"H3068\"* king|strong=\"H4428\"*, my|strong=\"H1961\"* servant deceived me|strong=\"H5973\"*. For|strong=\"H3588\"* your|strong=\"H3588\"* servant said, ‘I|strong=\"H3588\"* will|strong=\"H1961\"* saddle a|strong=\"H3068\"* donkey for|strong=\"H3588\"* myself|strong=\"H1980\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H1961\"* ride on|strong=\"H1980\"* it|strong=\"H3588\"* and|strong=\"H1980\"* go|strong=\"H1980\"* with|strong=\"H5973\"* the|strong=\"H3588\"* king|strong=\"H4428\"*,’ because|strong=\"H3588\"* your|strong=\"H3588\"* servant is|strong=\"H4100\"* lame." + }, + { + "verseNum": 27, + "text": "He|strong=\"H3588\"* has|strong=\"H4428\"* slandered your|strong=\"H5921\"* servant|strong=\"H5650\"* to|strong=\"H3212\"* my|strong=\"H5921\"* lord the|strong=\"H5921\"* king|strong=\"H4428\"*, but|strong=\"H3588\"* my|strong=\"H5921\"* lord the|strong=\"H5921\"* king|strong=\"H4428\"* is|strong=\"H4428\"* as|strong=\"H3588\"* an|strong=\"H3588\"* angel of|strong=\"H4428\"* God. Therefore|strong=\"H5921\"* do what|strong=\"H3588\"* is|strong=\"H4428\"* good in|strong=\"H5921\"* your|strong=\"H5921\"* eyes." + }, + { + "verseNum": 28, + "text": "For|strong=\"H6213\"* all|strong=\"H6213\"* my|strong=\"H6213\"* father’s house were|strong=\"H5869\"* but|strong=\"H4428\"* dead men|strong=\"H5650\"* before|strong=\"H5869\"* my|strong=\"H6213\"* lord the|strong=\"H6213\"* king|strong=\"H4428\"*; yet you|strong=\"H6213\"* set|strong=\"H6213\"* your|strong=\"H6213\"* servant|strong=\"H5650\"* among those|strong=\"H6213\"* who|strong=\"H5650\"* ate at|strong=\"H4428\"* your|strong=\"H6213\"* own|strong=\"H5869\"* table. What|strong=\"H2896\"* right|strong=\"H5869\"* therefore|strong=\"H5650\"* have|strong=\"H5869\"* I|strong=\"H5650\"* yet that|strong=\"H4397\"* I|strong=\"H5650\"* should|strong=\"H6213\"* appeal any|strong=\"H6213\"* more|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H6213\"* king|strong=\"H4428\"*?”" + }, + { + "verseNum": 29, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* said to|strong=\"H1961\"* him|strong=\"H3605\"*, “Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3588\"* speak any|strong=\"H3605\"* more|strong=\"H5750\"* of|strong=\"H4428\"* your|strong=\"H3605\"* matters? I|strong=\"H3588\"* say, you|strong=\"H3588\"* and|strong=\"H4428\"* Ziba divide the|strong=\"H3605\"* land.”" + }, + { + "verseNum": 30, + "text": "Mephibosheth said|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1697\"* king|strong=\"H4428\"*, “Yes, let him|strong=\"H4428\"* take|strong=\"H2505\"* all|strong=\"H1697\"*, because|strong=\"H1697\"* my|strong=\"H1696\"* lord the|strong=\"H1697\"* king|strong=\"H4428\"* has|strong=\"H4428\"* come|strong=\"H5750\"* in|strong=\"H4428\"* peace to|strong=\"H1696\"* his|strong=\"H4428\"* own house.”" + }, + { + "verseNum": 31, + "text": "Barzillai the|strong=\"H3605\"* Gileadite came|strong=\"H4428\"* down from|strong=\"H3947\"* Rogelim; and|strong=\"H4428\"* he|strong=\"H3605\"* went|strong=\"H4428\"* over|strong=\"H4428\"* the|strong=\"H3605\"* Jordan with|strong=\"H1004\"* the|strong=\"H3605\"* king|strong=\"H4428\"* to|strong=\"H4428\"* conduct him|strong=\"H3947\"* over|strong=\"H4428\"* the|strong=\"H3605\"* Jordan." + }, + { + "verseNum": 32, + "text": "Now|strong=\"H4428\"* Barzillai|strong=\"H1271\"* was|strong=\"H4428\"* a|strong=\"H3068\"* very aged man|strong=\"H5674\"*, even eighty years old. He|strong=\"H7971\"* had|strong=\"H4428\"* provided the|strong=\"H5674\"* king|strong=\"H4428\"* with|strong=\"H3381\"* sustenance while|strong=\"H3383\"* he|strong=\"H7971\"* stayed at|strong=\"H4428\"* Mahanaim, for|strong=\"H7971\"* he|strong=\"H7971\"* was|strong=\"H4428\"* a|strong=\"H3068\"* very great man|strong=\"H5674\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* said to|strong=\"H1121\"* Barzillai|strong=\"H1271\"*, “Come over|strong=\"H4428\"* with|strong=\"H4428\"* me|strong=\"H3588\"*, and|strong=\"H1121\"* I|strong=\"H3588\"* will|strong=\"H4428\"* sustain|strong=\"H3557\"* you|strong=\"H3588\"* with|strong=\"H4428\"* me|strong=\"H3588\"* in|strong=\"H8141\"* Jerusalem.”" + }, + { + "verseNum": 34, + "text": "Barzillai|strong=\"H1271\"* said to|strong=\"H3389\"* the|strong=\"H5674\"* king|strong=\"H4428\"*, “How many are|strong=\"H4428\"* the|strong=\"H5674\"* days of|strong=\"H4428\"* the|strong=\"H5674\"* years of|strong=\"H4428\"* my|strong=\"H5674\"* life, that|strong=\"H4428\"* I should|strong=\"H4428\"* go|strong=\"H5674\"* up|strong=\"H4428\"* with|strong=\"H3389\"* the|strong=\"H5674\"* king|strong=\"H4428\"* to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"*?" + }, + { + "verseNum": 35, + "text": "I|strong=\"H3588\"* am eighty years|strong=\"H3117\"* old|strong=\"H2416\"*, today|strong=\"H3117\"*. Can|strong=\"H4100\"* I|strong=\"H3588\"* discern between good|strong=\"H4100\"* and|strong=\"H4428\"* bad? Can|strong=\"H4100\"* your|strong=\"H3588\"* servant taste what|strong=\"H4100\"* I|strong=\"H3588\"* eat or|strong=\"H3117\"* what|strong=\"H4100\"* I|strong=\"H3588\"* drink? Can|strong=\"H4100\"* I|strong=\"H3588\"* hear the|strong=\"H3588\"* voice of|strong=\"H4428\"* singing men|strong=\"H8147\"* and|strong=\"H4428\"* singing women any|strong=\"H3588\"* more|strong=\"H3588\"*? Why|strong=\"H4100\"* then|strong=\"H4428\"* should|strong=\"H4100\"* your|strong=\"H3588\"* servant be|strong=\"H3117\"* a|strong=\"H3068\"* burden to|strong=\"H5927\"* my|strong=\"H5927\"* lord the|strong=\"H3588\"* king|strong=\"H4428\"*?" + }, + { + "verseNum": 36, + "text": "Your|strong=\"H8085\"* servant|strong=\"H5650\"* will|strong=\"H1961\"* just go|strong=\"H1961\"* over|strong=\"H4428\"* the|strong=\"H8085\"* Jordan with|strong=\"H3045\"* the|strong=\"H8085\"* king|strong=\"H4428\"*. Why|strong=\"H4100\"* should|strong=\"H4100\"* the|strong=\"H8085\"* king|strong=\"H4428\"* repay me|strong=\"H6963\"* with|strong=\"H3045\"* such|strong=\"H1961\"* a|strong=\"H3068\"* reward?" + }, + { + "verseNum": 37, + "text": "Please let your|strong=\"H5674\"* servant|strong=\"H5650\"* turn|strong=\"H5674\"* back again|strong=\"H5674\"*, that|strong=\"H4428\"* I|strong=\"H5650\"* may|strong=\"H4428\"* die in|strong=\"H4428\"* my|strong=\"H5674\"* own city, by|strong=\"H5674\"* the|strong=\"H5674\"* grave of|strong=\"H4428\"* my|strong=\"H5674\"* father and|strong=\"H4428\"* my|strong=\"H5674\"* mother. But|strong=\"H4428\"* behold, your|strong=\"H5674\"* servant|strong=\"H5650\"* Chimham; let him|strong=\"H1580\"* go|strong=\"H5674\"* over|strong=\"H5674\"* with|strong=\"H4428\"* my|strong=\"H5674\"* lord the|strong=\"H5674\"* king|strong=\"H4428\"*; and|strong=\"H4428\"* do|strong=\"H4100\"* to|strong=\"H4428\"* him|strong=\"H1580\"* what|strong=\"H4100\"* shall|strong=\"H4428\"* seem good|strong=\"H1580\"* to|strong=\"H4428\"* you|strong=\"H4100\"*.”" + }, + { + "verseNum": 38, + "text": "The|strong=\"H6213\"* king|strong=\"H4428\"* answered|strong=\"H7725\"*, “Chimham|strong=\"H3643\"* shall|strong=\"H4428\"* go|strong=\"H5674\"* over|strong=\"H5674\"* with|strong=\"H5973\"* me|strong=\"H4994\"*, and|strong=\"H7725\"* I|strong=\"H2009\"* will|strong=\"H4428\"* do|strong=\"H6213\"* to|strong=\"H7725\"* him|strong=\"H6213\"* that|strong=\"H4428\"* which|strong=\"H5869\"* shall|strong=\"H4428\"* seem|strong=\"H5869\"* good|strong=\"H2896\"* to|strong=\"H7725\"* you|strong=\"H7725\"*. Whatever|strong=\"H2896\"* you|strong=\"H7725\"* request of|strong=\"H4428\"* me|strong=\"H4994\"*, that|strong=\"H4428\"* I|strong=\"H2009\"* will|strong=\"H4428\"* do|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H7725\"*.”" + }, + { + "verseNum": 39, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5869\"* went|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H3605\"* Jordan, and|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* went|strong=\"H5674\"* over|strong=\"H5921\"*. Then|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"* kissed Barzillai and|strong=\"H4428\"* blessed him|strong=\"H5921\"*; and|strong=\"H4428\"* he|strong=\"H6213\"* returned to|strong=\"H6213\"* his|strong=\"H3605\"* own|strong=\"H5869\"* place|strong=\"H3605\"*." + }, + { + "verseNum": 40, + "text": "So|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"* went|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H7725\"* Gilgal, and|strong=\"H7725\"* Chimham went|strong=\"H5674\"* over|strong=\"H5674\"* with|strong=\"H5971\"* him|strong=\"H7725\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* Judah brought|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"* over|strong=\"H5674\"*, and|strong=\"H7725\"* also|strong=\"H4428\"* half the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* Israel|strong=\"H5971\"*." + }, + { + "verseNum": 41, + "text": "Behold, all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H3063\"* said to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, “Why have|strong=\"H5971\"* our|strong=\"H3605\"* brothers the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* stolen you|strong=\"H3605\"* away|strong=\"H5674\"*, and|strong=\"H3063\"* brought|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H3063\"* his|strong=\"H3605\"* household, over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan, and|strong=\"H3063\"* all|strong=\"H3605\"* David|strong=\"H5973\"*’s men|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H5973\"*?”" + }, + { + "verseNum": 42, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* answered the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, “Because|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"* is|strong=\"H2009\"* a|strong=\"H3068\"* close|strong=\"H5973\"* relative to|strong=\"H3478\"* us|strong=\"H3478\"*. Why|strong=\"H4069\"* then|strong=\"H2009\"* are|strong=\"H3478\"* you|strong=\"H3605\"* angry|strong=\"H5674\"* about|strong=\"H4428\"* this|strong=\"H5674\"* matter? Have|strong=\"H3478\"* we|strong=\"H3068\"* eaten at|strong=\"H3478\"* all|strong=\"H3605\"* at|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s cost? Or|strong=\"H1004\"* has|strong=\"H3478\"* he|strong=\"H3605\"* given us|strong=\"H3478\"* any|strong=\"H3605\"* gift?”" + }, + { + "verseNum": 43, + "text": "The|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* answered|strong=\"H6030\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* said|strong=\"H1697\"*, “We|strong=\"H3588\"* have|strong=\"H3478\"* ten parts|strong=\"H1697\"* in|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H3063\"* we|strong=\"H3068\"* have|strong=\"H3478\"* also|strong=\"H3478\"* more|strong=\"H4480\"* claim to|strong=\"H3478\"* David than|strong=\"H4480\"* you|strong=\"H3588\"*. Why|strong=\"H4100\"* then|strong=\"H6030\"* did|strong=\"H4100\"* you|strong=\"H3588\"* despise us|strong=\"H5921\"*, that|strong=\"H3588\"* our|strong=\"H3605\"* advice|strong=\"H1697\"* should|strong=\"H4100\"* not|strong=\"H2088\"* be|strong=\"H1697\"* first|strong=\"H2088\"* had|strong=\"H3478\"* in|strong=\"H5921\"* bringing|strong=\"H5375\"* back our|strong=\"H3605\"* king|strong=\"H4428\"*?” The|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* were|strong=\"H3478\"* fiercer than|strong=\"H4480\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "There|strong=\"H8033\"* happened|strong=\"H7122\"* to|strong=\"H3478\"* be|strong=\"H3808\"* there|strong=\"H8033\"* a|strong=\"H3068\"* wicked|strong=\"H1100\"* fellow|strong=\"H1121\"*, whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Sheba|strong=\"H7652\"* the|strong=\"H8628\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bichri|strong=\"H1075\"*, a|strong=\"H3068\"* Benjamite|strong=\"H1121\"*; and|strong=\"H1121\"* he|strong=\"H8033\"* blew|strong=\"H8628\"* the|strong=\"H8628\"* trumpet|strong=\"H7782\"*, and|strong=\"H1121\"* said, “We|strong=\"H8033\"* have|strong=\"H1121\"* no|strong=\"H3808\"* portion|strong=\"H2506\"* in|strong=\"H3478\"* David|strong=\"H1732\"*, neither|strong=\"H3808\"* have|strong=\"H1121\"* we|strong=\"H3068\"* inheritance|strong=\"H5159\"* in|strong=\"H3478\"* the|strong=\"H8628\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"*. Every|strong=\"H3478\"* man|strong=\"H1121\"* to|strong=\"H3478\"* his|strong=\"H1732\"* tents, Israel|strong=\"H3478\"*!”" + }, + { + "verseNum": 2, + "text": "So|strong=\"H4480\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H4480\"* following David|strong=\"H1732\"*, and|strong=\"H1121\"* followed|strong=\"H5927\"* Sheba|strong=\"H7652\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bichri|strong=\"H1075\"*; but|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* joined|strong=\"H1692\"* with|strong=\"H3389\"* their|strong=\"H3605\"* king|strong=\"H4428\"*, from|strong=\"H4480\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* came|strong=\"H1961\"* to|strong=\"H5704\"* his|strong=\"H5414\"* house|strong=\"H1004\"* at|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* took|strong=\"H3947\"* the|strong=\"H5414\"* ten|strong=\"H6235\"* women his|strong=\"H5414\"* concubines|strong=\"H6370\"*, whom he|strong=\"H3117\"* had|strong=\"H1961\"* left|strong=\"H3240\"* to|strong=\"H5704\"* keep|strong=\"H8104\"* the|strong=\"H5414\"* house|strong=\"H1004\"*, and|strong=\"H4428\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H1004\"* custody and|strong=\"H4428\"* provided|strong=\"H3557\"* them|strong=\"H5414\"* with|strong=\"H1004\"* sustenance|strong=\"H3557\"*, but|strong=\"H3808\"* didn’t go|strong=\"H1961\"* in|strong=\"H1004\"* to|strong=\"H5704\"* them|strong=\"H5414\"*. So|strong=\"H3947\"* they|strong=\"H3117\"* were|strong=\"H1961\"* shut|strong=\"H6887\"* up|strong=\"H5414\"* to|strong=\"H5704\"* the|strong=\"H5414\"* day|strong=\"H3117\"* of|strong=\"H4428\"* their|strong=\"H5414\"* death|strong=\"H4194\"*, living|strong=\"H2424\"* in|strong=\"H1004\"* widowhood." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H5975\"* the|strong=\"H3117\"* king|strong=\"H4428\"* said to|strong=\"H3117\"* Amasa|strong=\"H6021\"*, “Call|strong=\"H2199\"* me|strong=\"H5975\"* the|strong=\"H3117\"* men of|strong=\"H4428\"* Judah|strong=\"H3063\"* together|strong=\"H2199\"* within|strong=\"H3063\"* three|strong=\"H7969\"* days|strong=\"H3117\"*, and|strong=\"H3063\"* be|strong=\"H3117\"* here|strong=\"H6311\"* present|strong=\"H5975\"*.”" + }, + { + "verseNum": 5, + "text": "So|strong=\"H4480\"* Amasa|strong=\"H6021\"* went|strong=\"H3212\"* to|strong=\"H3212\"* call|strong=\"H2199\"* the|strong=\"H4480\"* men of|strong=\"H4480\"* Judah|strong=\"H3063\"* together|strong=\"H2199\"*, but he|strong=\"H4480\"* stayed longer than|strong=\"H4480\"* the|strong=\"H4480\"* set|strong=\"H3259\"* time|strong=\"H4150\"* which|strong=\"H3063\"* had|strong=\"H3063\"* been appointed|strong=\"H4150\"* to|strong=\"H3212\"* him|strong=\"H4480\"*." + }, + { + "verseNum": 6, + "text": "David|strong=\"H1732\"* said to|strong=\"H1121\"* Abishai, “Now|strong=\"H6258\"* Sheba|strong=\"H7652\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bichri|strong=\"H1075\"* will|strong=\"H5650\"* do|strong=\"H5869\"* us|strong=\"H6435\"* more|strong=\"H4480\"* harm|strong=\"H3415\"* than|strong=\"H4480\"* Absalom did|strong=\"H5650\"*. Take|strong=\"H3947\"* your|strong=\"H3947\"* lord’s servants|strong=\"H5650\"* and|strong=\"H1121\"* pursue|strong=\"H7291\"* after|strong=\"H4480\"* him|strong=\"H4672\"*, lest|strong=\"H6435\"* he|strong=\"H1732\"* get|strong=\"H3947\"* himself fortified|strong=\"H1219\"* cities|strong=\"H5892\"*, and|strong=\"H1121\"* escape|strong=\"H5337\"* out|strong=\"H4672\"* of|strong=\"H1121\"* our|strong=\"H3947\"* sight|strong=\"H5869\"*.”" + }, + { + "verseNum": 7, + "text": "Joab|strong=\"H3097\"*’s men|strong=\"H1368\"* went|strong=\"H3318\"* out|strong=\"H3318\"* after|strong=\"H7291\"* him|strong=\"H3318\"* with|strong=\"H3389\"* the|strong=\"H3605\"* Cherethites|strong=\"H3774\"*, the|strong=\"H3605\"* Pelethites|strong=\"H6432\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*; and|strong=\"H1121\"* they|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3318\"* pursue|strong=\"H7291\"* Sheba|strong=\"H7652\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bichri|strong=\"H1075\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H3318\"* they|strong=\"H1992\"* were|strong=\"H1992\"* at|strong=\"H5921\"* the|strong=\"H6440\"* great|strong=\"H1419\"* stone which|strong=\"H1931\"* is|strong=\"H1931\"* in|strong=\"H5921\"* Gibeon|strong=\"H1391\"*, Amasa|strong=\"H6021\"* came|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H6440\"* them|strong=\"H1992\"*. Joab|strong=\"H3097\"* was|strong=\"H1931\"* clothed|strong=\"H3830\"* in|strong=\"H5921\"* his|strong=\"H6440\"* apparel|strong=\"H3830\"* of|strong=\"H6440\"* war|strong=\"H2719\"* that|strong=\"H1931\"* he|strong=\"H1931\"* had|strong=\"H3097\"* put|strong=\"H2296\"* on|strong=\"H5921\"*, and|strong=\"H1419\"* on|strong=\"H5921\"* it|strong=\"H1931\"* was|strong=\"H1931\"* a|strong=\"H3068\"* sash with|strong=\"H5973\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* fastened|strong=\"H6775\"* on|strong=\"H5921\"* his|strong=\"H6440\"* waist|strong=\"H4975\"* in|strong=\"H5921\"* its|strong=\"H5921\"* sheath|strong=\"H8593\"*; and|strong=\"H1419\"* as|strong=\"H3318\"* he|strong=\"H1931\"* went|strong=\"H3318\"* along|strong=\"H5921\"* it|strong=\"H1931\"* fell|strong=\"H5307\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 9, + "text": "Joab|strong=\"H3097\"* said to|strong=\"H3027\"* Amasa|strong=\"H6021\"*, “Is|strong=\"H3027\"* it|strong=\"H7965\"* well|strong=\"H7965\"* with|strong=\"H3027\"* you|strong=\"H3027\"*, my|strong=\"H3027\"* brother?” Joab|strong=\"H3097\"* took|strong=\"H3027\"* Amasa|strong=\"H6021\"* by|strong=\"H3027\"* the|strong=\"H3027\"* beard|strong=\"H2206\"* with|strong=\"H3027\"* his|strong=\"H3027\"* right|strong=\"H3225\"* hand|strong=\"H3027\"* to|strong=\"H3027\"* kiss|strong=\"H5401\"* him|strong=\"H3027\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"H3808\"* Amasa|strong=\"H6021\"* took|strong=\"H4191\"* no|strong=\"H3808\"* heed|strong=\"H8104\"* to|strong=\"H4191\"* the|strong=\"H5221\"* sword|strong=\"H2719\"* that|strong=\"H1121\"* was|strong=\"H1121\"* in|strong=\"H4191\"* Joab|strong=\"H3097\"*’s hand|strong=\"H3027\"*. So|strong=\"H3808\"* he|strong=\"H3027\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H3027\"* it|strong=\"H5221\"* in|strong=\"H4191\"* the|strong=\"H5221\"* body|strong=\"H4578\"* and|strong=\"H1121\"* shed|strong=\"H8210\"* out|strong=\"H8210\"* his|strong=\"H8104\"* bowels|strong=\"H4578\"* to|strong=\"H4191\"* the|strong=\"H5221\"* ground, and|strong=\"H1121\"* didn’t strike|strong=\"H5221\"* him|strong=\"H5221\"* again|strong=\"H8138\"*; and|strong=\"H1121\"* he|strong=\"H3027\"* died|strong=\"H4191\"*. Joab|strong=\"H3097\"* and|strong=\"H1121\"* Abishai his|strong=\"H8104\"* brother pursued|strong=\"H7291\"* Sheba|strong=\"H7652\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bichri|strong=\"H1075\"*." + }, + { + "verseNum": 11, + "text": "One|strong=\"H4310\"* of|strong=\"H5921\"* Joab|strong=\"H3097\"*’s young|strong=\"H5288\"* men|strong=\"H5288\"* stood by|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H1732\"* said, “He|strong=\"H1732\"* who|strong=\"H4310\"* favors|strong=\"H2654\"* Joab|strong=\"H3097\"*, and|strong=\"H1732\"* he|strong=\"H1732\"* who|strong=\"H4310\"* is|strong=\"H4310\"* for|strong=\"H5921\"* David|strong=\"H1732\"*, let him|strong=\"H5921\"* follow Joab|strong=\"H3097\"*!”" + }, + { + "verseNum": 12, + "text": "Amasa|strong=\"H6021\"* lay|strong=\"H1556\"* wallowing|strong=\"H1556\"* in|strong=\"H5921\"* his|strong=\"H3605\"* blood|strong=\"H1818\"* in|strong=\"H5921\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H7704\"* the|strong=\"H3605\"* highway|strong=\"H4546\"*. When|strong=\"H3588\"* the|strong=\"H3605\"* man|strong=\"H3605\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* stood|strong=\"H5975\"* still|strong=\"H5975\"*, he|strong=\"H3588\"* carried|strong=\"H5437\"* Amasa|strong=\"H6021\"* out|strong=\"H7993\"* of|strong=\"H7704\"* the|strong=\"H3605\"* highway|strong=\"H4546\"* into|strong=\"H8432\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, and|strong=\"H5971\"* cast|strong=\"H7993\"* a|strong=\"H3068\"* garment over|strong=\"H5921\"* him|strong=\"H5921\"* when|strong=\"H3588\"* he|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* came|strong=\"H5971\"* by|strong=\"H5921\"* him|strong=\"H5921\"* stood|strong=\"H5975\"* still|strong=\"H5975\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H1121\"* he|strong=\"H3605\"* was|strong=\"H1121\"* removed|strong=\"H5674\"* out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H3605\"* highway|strong=\"H4546\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H1121\"* went|strong=\"H5674\"* on|strong=\"H5674\"* after|strong=\"H4480\"* Joab|strong=\"H3097\"* to|strong=\"H1121\"* pursue|strong=\"H7291\"* Sheba|strong=\"H7652\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bichri|strong=\"H1075\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3605\"* went|strong=\"H3478\"* through|strong=\"H5674\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* Abel, to|strong=\"H3478\"* Beth Maacah, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Berites|strong=\"H1276\"*. They|strong=\"H3478\"* were|strong=\"H3478\"* gathered|strong=\"H3478\"* together, and|strong=\"H3478\"* went|strong=\"H3478\"* also|strong=\"H3478\"* after him|strong=\"H3605\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"H5921\"* came|strong=\"H5971\"* and|strong=\"H5971\"* besieged|strong=\"H6696\"* him|strong=\"H5921\"* in|strong=\"H5921\"* Abel of|strong=\"H5892\"* Beth Maacah, and|strong=\"H5971\"* they|strong=\"H5921\"* cast|strong=\"H5307\"* up|strong=\"H5975\"* a|strong=\"H3068\"* mound against|strong=\"H5921\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H5971\"* it|strong=\"H5921\"* stood|strong=\"H5975\"* against|strong=\"H5921\"* the|strong=\"H3605\"* rampart|strong=\"H2426\"*; and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5921\"* Joab|strong=\"H3097\"* battered|strong=\"H7843\"* the|strong=\"H3605\"* wall|strong=\"H2346\"* to|strong=\"H5921\"* throw|strong=\"H8210\"* it|strong=\"H5921\"* down|strong=\"H5307\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H1696\"* a|strong=\"H3068\"* wise|strong=\"H2450\"* woman cried|strong=\"H7121\"* out|strong=\"H4480\"* of|strong=\"H5892\"* the|strong=\"H8085\"* city|strong=\"H5892\"*, “Hear|strong=\"H8085\"*, hear|strong=\"H8085\"*! Please|strong=\"H4994\"* say|strong=\"H1696\"* to|strong=\"H1696\"* Joab|strong=\"H3097\"*, ‘Come|strong=\"H7126\"* near|strong=\"H7126\"* here|strong=\"H2008\"*, that|strong=\"H8085\"* I|strong=\"H5704\"* may|strong=\"H4994\"* speak|strong=\"H1696\"* with|strong=\"H1696\"* you|strong=\"H5704\"*.’”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H7126\"* came|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H8085\"* her|strong=\"H8085\"*; and|strong=\"H8085\"* the|strong=\"H8085\"* woman said|strong=\"H1697\"*, “Are|strong=\"H1697\"* you|strong=\"H7126\"* Joab|strong=\"H3097\"*?”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H1696\"* she|strong=\"H3651\"* spoke|strong=\"H1696\"*, saying|strong=\"H1696\"*, “They|strong=\"H3651\"* used to|strong=\"H1696\"* say|strong=\"H1696\"* in|strong=\"H1696\"* old|strong=\"H7223\"* times, ‘They|strong=\"H3651\"* shall surely|strong=\"H3651\"* ask|strong=\"H7592\"* counsel|strong=\"H7592\"* at|strong=\"H3651\"* Abel,’ and|strong=\"H7223\"* so|strong=\"H3651\"* they|strong=\"H3651\"* settled a|strong=\"H3068\"* matter." + }, + { + "verseNum": 19, + "text": "I|strong=\"H4100\"* am|strong=\"H3068\"* among|strong=\"H3478\"* those who|strong=\"H3068\"* are|strong=\"H3478\"* peaceable|strong=\"H7999\"* and|strong=\"H3478\"* faithful in|strong=\"H3478\"* Israel|strong=\"H3478\"*. You|strong=\"H4100\"* seek|strong=\"H1245\"* to|strong=\"H3478\"* destroy|strong=\"H1104\"* a|strong=\"H3068\"* city|strong=\"H5892\"* and|strong=\"H3478\"* a|strong=\"H3068\"* mother in|strong=\"H3478\"* Israel|strong=\"H3478\"*. Why|strong=\"H4100\"* will|strong=\"H3068\"* you|strong=\"H4100\"* swallow|strong=\"H1104\"* up|strong=\"H1104\"* Yahweh|strong=\"H3068\"*’s inheritance|strong=\"H5159\"*?”" + }, + { + "verseNum": 20, + "text": "Joab|strong=\"H3097\"* answered|strong=\"H6030\"*, “Far|strong=\"H2486\"* be it|strong=\"H2486\"*, far|strong=\"H2486\"* be it|strong=\"H2486\"* from|strong=\"H2486\"* me|strong=\"H6030\"*, that|strong=\"H6030\"* I should swallow|strong=\"H1104\"* up|strong=\"H1104\"* or|strong=\"H1104\"* destroy|strong=\"H7843\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H5921\"* matter|strong=\"H1697\"* is|strong=\"H8034\"* not|strong=\"H3808\"* so|strong=\"H3651\"*. But|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1121\"* Ephraim|strong=\"H8034\"*, Sheba|strong=\"H7652\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bichri|strong=\"H1075\"* by|strong=\"H3027\"* name|strong=\"H8034\"*, has|strong=\"H4428\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* hand|strong=\"H3027\"* against|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, even|strong=\"H3588\"* against|strong=\"H5921\"* David|strong=\"H1732\"*. Just|strong=\"H1697\"* deliver|strong=\"H5414\"* him|strong=\"H5414\"*, and|strong=\"H1121\"* I|strong=\"H3588\"* will|strong=\"H4428\"* depart|strong=\"H3212\"* from|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"*.”" + }, + { + "verseNum": 22, + "text": "Then|strong=\"H7725\"* the|strong=\"H3605\"* woman went|strong=\"H5971\"* to|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* in|strong=\"H5921\"* her|strong=\"H3605\"* wisdom|strong=\"H2451\"*. They|strong=\"H5921\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H1121\"* Sheba|strong=\"H7652\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bichri|strong=\"H1075\"*, and|strong=\"H1121\"* threw|strong=\"H7993\"* it|strong=\"H5921\"* out|strong=\"H7993\"* to|strong=\"H7725\"* Joab|strong=\"H3097\"*. He|strong=\"H3605\"* blew|strong=\"H8628\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"*, and|strong=\"H1121\"* they|strong=\"H5921\"* were|strong=\"H5971\"* dispersed|strong=\"H6327\"* from|strong=\"H7725\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, every|strong=\"H3605\"* man|strong=\"H1121\"* to|strong=\"H7725\"* his|strong=\"H3605\"* tent. Then|strong=\"H7725\"* Joab|strong=\"H3097\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"* to|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 23, + "text": "Now|strong=\"H3478\"* Joab|strong=\"H3097\"* was|strong=\"H3478\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, Benaiah|strong=\"H1141\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* was|strong=\"H3478\"* over|strong=\"H5921\"* the|strong=\"H3605\"* Cherethites and|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H3605\"* Pelethites|strong=\"H6432\"*," + }, + { + "verseNum": 24, + "text": "Adoram was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* men|strong=\"H1121\"* subject to|strong=\"H5921\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"*, Jehoshaphat|strong=\"H3092\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahilud was|strong=\"H1121\"* the|strong=\"H5921\"* recorder|strong=\"H2142\"*," + }, + { + "verseNum": 25, + "text": "Sheva|strong=\"H7864\"* was|strong=\"H3548\"* scribe|strong=\"H5608\"*, Zadok|strong=\"H6659\"* and|strong=\"H3548\"* Abiathar were priests|strong=\"H3548\"*," + }, + { + "verseNum": 26, + "text": "and|strong=\"H3548\"* Ira|strong=\"H5896\"* the|strong=\"H1961\"* Jairite|strong=\"H2972\"* was|strong=\"H1961\"* chief|strong=\"H3548\"* minister to|strong=\"H1961\"* David|strong=\"H1732\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "There|strong=\"H1961\"* was|strong=\"H3068\"* a|strong=\"H3068\"* famine|strong=\"H7458\"* in|strong=\"H8141\"* the|strong=\"H6440\"* days|strong=\"H3117\"* of|strong=\"H1004\"* David|strong=\"H1732\"* for|strong=\"H5921\"* three|strong=\"H7969\"* years|strong=\"H8141\"*, year|strong=\"H8141\"* after|strong=\"H5921\"* year|strong=\"H8141\"*; and|strong=\"H3068\"* David|strong=\"H1732\"* sought|strong=\"H1245\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*. Yahweh|strong=\"H3068\"* said, “It|strong=\"H5921\"* is|strong=\"H3068\"* for|strong=\"H5921\"* Saul|strong=\"H7586\"*, and|strong=\"H3068\"* for|strong=\"H5921\"* his|strong=\"H3068\"* bloody|strong=\"H1818\"* house|strong=\"H1004\"*, because|strong=\"H5921\"* he|strong=\"H3117\"* put|strong=\"H4191\"* the|strong=\"H6440\"* Gibeonites|strong=\"H1393\"* to|strong=\"H4191\"* death|strong=\"H4191\"*.”" + }, + { + "verseNum": 2, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* called|strong=\"H7121\"* the|strong=\"H3588\"* Gibeonites|strong=\"H1393\"* and|strong=\"H1121\"* said|strong=\"H7121\"* to|strong=\"H3478\"* them|strong=\"H1992\"* (now|strong=\"H3588\"* the|strong=\"H3588\"* Gibeonites|strong=\"H1393\"* were|strong=\"H3478\"* not|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, but|strong=\"H3588\"* of|strong=\"H1121\"* the|strong=\"H3588\"* remnant|strong=\"H3499\"* of|strong=\"H1121\"* the|strong=\"H3588\"* Amorites, and|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* sworn|strong=\"H7650\"* to|strong=\"H3478\"* them|strong=\"H1992\"*; and|strong=\"H1121\"* Saul|strong=\"H7586\"* sought|strong=\"H1245\"* to|strong=\"H3478\"* kill|strong=\"H5221\"* them|strong=\"H1992\"* in|strong=\"H3478\"* his|strong=\"H7121\"* zeal|strong=\"H7065\"* for|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* Judah|strong=\"H3063\"*);" + }, + { + "verseNum": 3, + "text": "and|strong=\"H3068\"* David|strong=\"H1732\"* said to|strong=\"H3068\"* the|strong=\"H6213\"* Gibeonites|strong=\"H1393\"*, “What|strong=\"H4100\"* should|strong=\"H3068\"* I|strong=\"H4100\"* do|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H6213\"*? And|strong=\"H3068\"* with|strong=\"H3068\"* what|strong=\"H4100\"* should|strong=\"H3068\"* I|strong=\"H4100\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"*, that|strong=\"H3068\"* you|strong=\"H6213\"* may|strong=\"H3068\"* bless|strong=\"H1288\"* Yahweh|strong=\"H3068\"*’s inheritance|strong=\"H5159\"*?”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H6213\"* Gibeonites|strong=\"H1393\"* said to|strong=\"H3478\"* him|strong=\"H6213\"*, “It|strong=\"H6213\"* is|strong=\"H4100\"* no|strong=\"H6213\"* matter of|strong=\"H1004\"* silver|strong=\"H3701\"* or|strong=\"H3701\"* gold|strong=\"H2091\"* between|strong=\"H5973\"* us|strong=\"H6213\"* and|strong=\"H3478\"* Saul|strong=\"H7586\"* or|strong=\"H3701\"* his|strong=\"H3478\"* house|strong=\"H1004\"*; neither|strong=\"H5973\"* is|strong=\"H4100\"* it|strong=\"H6213\"* for|strong=\"H6213\"* us|strong=\"H6213\"* to|strong=\"H3478\"* put|strong=\"H4191\"* any|strong=\"H6213\"* man|strong=\"H4191\"* to|strong=\"H3478\"* death|strong=\"H4191\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 5, + "text": "They|strong=\"H3478\"* said to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, “The|strong=\"H3605\"* man|strong=\"H3605\"* who|strong=\"H3605\"* consumed|strong=\"H3615\"* us|strong=\"H3478\"* and|strong=\"H3478\"* who|strong=\"H3605\"* plotted|strong=\"H3615\"* against|strong=\"H3605\"* us|strong=\"H3478\"*, that|strong=\"H3605\"* we|strong=\"H3068\"* should|strong=\"H3478\"* be|strong=\"H3478\"* destroyed|strong=\"H8045\"* from|strong=\"H3478\"* remaining|strong=\"H3320\"* in|strong=\"H3478\"* any|strong=\"H3605\"* of|strong=\"H4428\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 6, + "text": "let|strong=\"H5414\"* seven|strong=\"H7651\"* men|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H5414\"* sons|strong=\"H1121\"* be|strong=\"H3068\"* delivered|strong=\"H5414\"* to|strong=\"H3068\"* us|strong=\"H5414\"*, and|strong=\"H1121\"* we|strong=\"H3068\"* will|strong=\"H3068\"* hang|strong=\"H5414\"* them|strong=\"H5414\"* up|strong=\"H5414\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* Gibeah|strong=\"H1390\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*, the|strong=\"H5414\"* chosen of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 7, + "text": "But|strong=\"H3068\"* the|strong=\"H5921\"* king|strong=\"H4428\"* spared|strong=\"H2550\"* Mephibosheth|strong=\"H4648\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jonathan|strong=\"H3083\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*, because|strong=\"H5921\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s oath|strong=\"H7621\"* that|strong=\"H3068\"* was|strong=\"H3068\"* between|strong=\"H5921\"* them|strong=\"H5921\"*, between|strong=\"H5921\"* David|strong=\"H1732\"* and|strong=\"H1121\"* Jonathan|strong=\"H3083\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H3947\"* the|strong=\"H3947\"* king|strong=\"H4428\"* took|strong=\"H3947\"* the|strong=\"H3947\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Rizpah|strong=\"H7532\"* the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Aiah, whom she|strong=\"H8147\"* bore|strong=\"H3205\"* to|strong=\"H3205\"* Saul|strong=\"H7586\"*, Armoni and|strong=\"H1121\"* Mephibosheth|strong=\"H4648\"*; and|strong=\"H1121\"* the|strong=\"H3947\"* five|strong=\"H2568\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merab|strong=\"H4324\"* the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*, whom she|strong=\"H8147\"* bore|strong=\"H3205\"* to|strong=\"H3205\"* Adriel|strong=\"H5741\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Barzillai|strong=\"H1271\"* the|strong=\"H3947\"* Meholathite|strong=\"H4259\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H3117\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5307\"* the|strong=\"H6440\"* hands|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Gibeonites|strong=\"H1393\"*; and|strong=\"H3068\"* they|strong=\"H1992\"* hanged|strong=\"H3363\"* them|strong=\"H5414\"* on|strong=\"H3117\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* all|strong=\"H3162\"* seven|strong=\"H7651\"* of|strong=\"H3068\"* them|strong=\"H5414\"* fell|strong=\"H5307\"* together|strong=\"H3162\"*. They|strong=\"H1992\"* were|strong=\"H3117\"* put|strong=\"H5414\"* to|strong=\"H4191\"* death|strong=\"H4191\"* in|strong=\"H3068\"* the|strong=\"H6440\"* days|strong=\"H3117\"* of|strong=\"H3068\"* harvest|strong=\"H7105\"*, in|strong=\"H3068\"* the|strong=\"H6440\"* first|strong=\"H7223\"* days|strong=\"H3117\"*, at|strong=\"H3068\"* the|strong=\"H6440\"* beginning|strong=\"H8462\"* of|strong=\"H3068\"* barley|strong=\"H8184\"* harvest|strong=\"H7105\"*." + }, + { + "verseNum": 10, + "text": "Rizpah|strong=\"H7532\"* the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Aiah took|strong=\"H3947\"* sackcloth|strong=\"H8242\"* and|strong=\"H8064\"* spread|strong=\"H5186\"* it|strong=\"H5414\"* for|strong=\"H5704\"* herself|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* rock|strong=\"H6697\"*, from|strong=\"H4480\"* the|strong=\"H5921\"* beginning|strong=\"H8462\"* of|strong=\"H1323\"* harvest|strong=\"H7105\"* until|strong=\"H5704\"* water|strong=\"H4325\"* poured|strong=\"H5413\"* on|strong=\"H5921\"* them|strong=\"H5414\"* from|strong=\"H4480\"* the|strong=\"H5921\"* sky|strong=\"H8064\"*. She|strong=\"H5921\"* allowed|strong=\"H5414\"* neither|strong=\"H3808\"* the|strong=\"H5921\"* birds|strong=\"H5775\"* of|strong=\"H1323\"* the|strong=\"H5921\"* sky|strong=\"H8064\"* to|strong=\"H5704\"* rest|strong=\"H5117\"* on|strong=\"H5921\"* them|strong=\"H5414\"* by|strong=\"H5921\"* day|strong=\"H3119\"*, nor|strong=\"H3808\"* the|strong=\"H5921\"* animals|strong=\"H2416\"* of|strong=\"H1323\"* the|strong=\"H5921\"* field|strong=\"H7704\"* by|strong=\"H5921\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 11, + "text": "David|strong=\"H1732\"* was|strong=\"H1732\"* told|strong=\"H5046\"* what|strong=\"H6213\"* Rizpah|strong=\"H7532\"* the|strong=\"H6213\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Aiah, the|strong=\"H6213\"* concubine|strong=\"H6370\"* of|strong=\"H1323\"* Saul|strong=\"H7586\"*, had|strong=\"H1732\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 12, + "text": "So|strong=\"H3947\"* David|strong=\"H1732\"* went|strong=\"H3212\"* and|strong=\"H1121\"* took|strong=\"H3947\"* the|strong=\"H3947\"* bones|strong=\"H6106\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* the|strong=\"H3947\"* bones|strong=\"H6106\"* of|strong=\"H1121\"* Jonathan|strong=\"H3083\"* his|strong=\"H3947\"* son|strong=\"H1121\"* from|strong=\"H1121\"* the|strong=\"H3947\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"*, who|strong=\"H1121\"* had|strong=\"H1732\"* stolen|strong=\"H1589\"* them|strong=\"H5221\"* from|strong=\"H1121\"* the|strong=\"H3947\"* street|strong=\"H7339\"* of|strong=\"H1121\"* Beth Shan, where|strong=\"H8033\"* the|strong=\"H3947\"* Philistines|strong=\"H6430\"* had|strong=\"H1732\"* hanged|strong=\"H8518\"* them|strong=\"H5221\"* in|strong=\"H3117\"* the|strong=\"H3947\"* day|strong=\"H3117\"* that|strong=\"H3117\"* the|strong=\"H3947\"* Philistines|strong=\"H6430\"* killed|strong=\"H5221\"* Saul|strong=\"H7586\"* in|strong=\"H3117\"* Gilboa|strong=\"H1533\"*;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H1121\"* he|strong=\"H8033\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* there|strong=\"H8033\"* the|strong=\"H5927\"* bones|strong=\"H6106\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* the|strong=\"H5927\"* bones|strong=\"H6106\"* of|strong=\"H1121\"* Jonathan|strong=\"H3083\"* his|strong=\"H3083\"* son|strong=\"H1121\"*. They|strong=\"H8033\"* also|strong=\"H1121\"* gathered the|strong=\"H5927\"* bones|strong=\"H6106\"* of|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* hanged|strong=\"H3363\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3651\"* buried|strong=\"H6912\"* the|strong=\"H3605\"* bones|strong=\"H6106\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* Jonathan|strong=\"H3083\"* his|strong=\"H3605\"* son|strong=\"H1121\"* in|strong=\"H6213\"* the|strong=\"H3605\"* country of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* in|strong=\"H6213\"* Zela|strong=\"H6762\"*, in|strong=\"H6213\"* the|strong=\"H3605\"* tomb|strong=\"H6913\"* of|strong=\"H1121\"* Kish|strong=\"H7027\"* his|strong=\"H3605\"* father|strong=\"H1121\"*; and|strong=\"H1121\"* they|strong=\"H3651\"* performed|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"*. After that|strong=\"H3605\"*, God answered|strong=\"H6279\"* prayer|strong=\"H6279\"* for|strong=\"H6213\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 15, + "text": "The|strong=\"H1961\"* Philistines|strong=\"H6430\"* had|strong=\"H1961\"* war|strong=\"H4421\"* again|strong=\"H5750\"* with|strong=\"H5973\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* David|strong=\"H1732\"* went|strong=\"H3381\"* down|strong=\"H3381\"*, and|strong=\"H3478\"* his|strong=\"H1732\"* servants|strong=\"H5650\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, and|strong=\"H3478\"* fought|strong=\"H3898\"* against|strong=\"H5973\"* the|strong=\"H1961\"* Philistines|strong=\"H6430\"*. David|strong=\"H1732\"* grew faint|strong=\"H5774\"*;" + }, + { + "verseNum": 16, + "text": "and|strong=\"H3967\"* Ishbibenob, who|strong=\"H1931\"* was|strong=\"H1732\"* of|strong=\"H5221\"* the|strong=\"H5221\"* sons|strong=\"H3211\"* of|strong=\"H5221\"* the|strong=\"H5221\"* giant|strong=\"H7497\"*, the|strong=\"H5221\"* weight|strong=\"H4948\"* of|strong=\"H5221\"* whose spear|strong=\"H7013\"* was|strong=\"H1732\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* shekels|strong=\"H4948\"* of|strong=\"H5221\"* bronze|strong=\"H5178\"* in|strong=\"H1732\"* weight|strong=\"H4948\"*, he|strong=\"H1931\"* being armed|strong=\"H2296\"* with|strong=\"H2296\"* a|strong=\"H3068\"* new|strong=\"H2319\"* sword, thought he|strong=\"H1931\"* would|strong=\"H1732\"* kill|strong=\"H5221\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H3808\"* Abishai the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* helped|strong=\"H5826\"* him|strong=\"H5221\"*, and|strong=\"H1121\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* Philistine|strong=\"H6430\"* and|strong=\"H1121\"* killed|strong=\"H5221\"* him|strong=\"H5221\"*. Then|strong=\"H3318\"* the|strong=\"H5221\"* men|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"* swore|strong=\"H7650\"* to|strong=\"H3318\"* him|strong=\"H5221\"*, saying, “Don’t go|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H3318\"* us|strong=\"H3478\"* to|strong=\"H3318\"* battle|strong=\"H4421\"* any|strong=\"H5750\"* more|strong=\"H5750\"*, so|strong=\"H3808\"* that|strong=\"H3478\"* you|strong=\"H3808\"* don’t quench|strong=\"H3518\"* the|strong=\"H5221\"* lamp|strong=\"H5216\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 18, + "text": "After|strong=\"H1961\"* this|strong=\"H3651\"*, there|strong=\"H1961\"* was|strong=\"H1961\"* again|strong=\"H5750\"* war|strong=\"H4421\"* with|strong=\"H5973\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"* at|strong=\"H4421\"* Gob|strong=\"H1359\"*. Then|strong=\"H1961\"* Sibbecai|strong=\"H5444\"* the|strong=\"H5221\"* Hushathite|strong=\"H2843\"* killed|strong=\"H5221\"* Saph|strong=\"H5593\"*, who|strong=\"H3211\"* was|strong=\"H1961\"* of|strong=\"H5221\"* the|strong=\"H5221\"* sons|strong=\"H3211\"* of|strong=\"H5221\"* the|strong=\"H5221\"* giant|strong=\"H7497\"*." + }, + { + "verseNum": 19, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* again|strong=\"H5750\"* war|strong=\"H4421\"* with|strong=\"H5973\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"* at|strong=\"H4421\"* Gob|strong=\"H1359\"*, and|strong=\"H1121\"* Elhanan the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jaare-Oregim|strong=\"H3296\"* the|strong=\"H5221\"* Bethlehemite|strong=\"H1022\"* killed|strong=\"H5221\"* Goliath|strong=\"H1555\"* the|strong=\"H5221\"* Gittite|strong=\"H1663\"*’s brother, the|strong=\"H5221\"* staff|strong=\"H6086\"* of|strong=\"H1121\"* whose|strong=\"H1121\"* spear|strong=\"H2595\"* was|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* weaver’s beam|strong=\"H4500\"*." + }, + { + "verseNum": 20, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* again|strong=\"H5750\"* war|strong=\"H4421\"* at|strong=\"H4421\"* Gath|strong=\"H1661\"*, where|strong=\"H3027\"* there|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* man of|strong=\"H3027\"* great stature|strong=\"H4067\"*, who|strong=\"H1931\"* had|strong=\"H1961\"* six|strong=\"H8337\"* fingers on|strong=\"H3027\"* every hand|strong=\"H3027\"* and|strong=\"H6242\"* six|strong=\"H8337\"* toes|strong=\"H7272\"* on|strong=\"H3027\"* every foot|strong=\"H7272\"*, twenty-four|strong=\"H6242\"* in|strong=\"H4421\"* number|strong=\"H4557\"*, and|strong=\"H6242\"* he|strong=\"H1931\"* also|strong=\"H1571\"* was|strong=\"H1961\"* born|strong=\"H3205\"* to|strong=\"H1961\"* the|strong=\"H3205\"* giant|strong=\"H7497\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H1121\"* he|strong=\"H1732\"* defied|strong=\"H2778\"* Israel|strong=\"H3478\"*, Jonathan|strong=\"H3083\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimei|strong=\"H8096\"*, David|strong=\"H1732\"*’s brother, killed|strong=\"H5221\"* him|strong=\"H5221\"*." + }, + { + "verseNum": 22, + "text": "These|strong=\"H1732\"* four were|strong=\"H3027\"* born|strong=\"H3205\"* to|strong=\"H3027\"* the|strong=\"H3205\"* giant|strong=\"H7497\"* in|strong=\"H5650\"* Gath|strong=\"H1661\"*; and|strong=\"H3027\"* they|strong=\"H3027\"* fell|strong=\"H5307\"* by|strong=\"H3027\"* the|strong=\"H3205\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* David|strong=\"H1732\"* and|strong=\"H3027\"* by|strong=\"H3027\"* the|strong=\"H3205\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* his|strong=\"H1732\"* servants|strong=\"H5650\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* this|strong=\"H2063\"* song|strong=\"H7892\"* in|strong=\"H3068\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5337\"* him|strong=\"H3605\"* out|strong=\"H5337\"* of|strong=\"H3068\"* the|strong=\"H3605\"* hand|strong=\"H3709\"* of|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* enemies, and|strong=\"H3068\"* out|strong=\"H5337\"* of|strong=\"H3068\"* the|strong=\"H3605\"* hand|strong=\"H3709\"* of|strong=\"H3068\"* Saul|strong=\"H7586\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"H3068\"* he|strong=\"H3068\"* said:" + }, + { + "verseNum": 3, + "text": "God|strong=\"H6697\"* is|strong=\"H7161\"* my|strong=\"H3467\"* rock|strong=\"H6697\"* in|strong=\"H4043\"* whom I|strong=\"H6697\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"*;" + }, + { + "verseNum": 4, + "text": "I|strong=\"H3068\"* call|strong=\"H7121\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* is|strong=\"H3068\"* worthy to|strong=\"H3068\"* be|strong=\"H3068\"* praised|strong=\"H1984\"*;" + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* waves|strong=\"H4867\"* of|strong=\"H5158\"* death|strong=\"H4194\"* surrounded me|strong=\"H3588\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5437\"* cords|strong=\"H2256\"* of|strong=\"H4194\"* Sheol|strong=\"H7585\"*+ 22:6 Sheol is the place of the dead.* were|strong=\"H4194\"* around|strong=\"H5437\"* me|strong=\"H5437\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H3068\"* my|strong=\"H8085\"* distress|strong=\"H6862\"*, I|strong=\"H8085\"* called|strong=\"H7121\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H3588\"* the|strong=\"H3588\"* earth|strong=\"H8064\"* shook|strong=\"H1607\"* and|strong=\"H8064\"* trembled|strong=\"H7264\"*." + }, + { + "verseNum": 9, + "text": "Smoke|strong=\"H6227\"* went|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H6310\"* his|strong=\"H4480\"* nostrils." + }, + { + "verseNum": 10, + "text": "He|strong=\"H7272\"* bowed|strong=\"H5186\"* the|strong=\"H8478\"* heavens|strong=\"H8064\"* also|strong=\"H8064\"*, and|strong=\"H8064\"* came|strong=\"H3381\"* down|strong=\"H3381\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H5921\"* rode|strong=\"H7392\"* on|strong=\"H5921\"* a|strong=\"H3068\"* cherub|strong=\"H3742\"*, and|strong=\"H7200\"* flew|strong=\"H5774\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H2822\"* made|strong=\"H7896\"* darkness|strong=\"H2822\"* a|strong=\"H3068\"* shelter|strong=\"H5521\"* around|strong=\"H5439\"* himself|strong=\"H4325\"*," + }, + { + "verseNum": 13, + "text": "At the|strong=\"H5048\"* brightness|strong=\"H5051\"* before|strong=\"H5048\"* him|strong=\"H5048\"*," + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* thundered|strong=\"H7481\"* from|strong=\"H4480\"* heaven|strong=\"H8064\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H7971\"* sent|strong=\"H7971\"* out|strong=\"H7971\"* arrows|strong=\"H2671\"* and|strong=\"H7971\"* scattered|strong=\"H6327\"* them|strong=\"H7971\"*," + }, + { + "verseNum": 16, + "text": "Then|strong=\"H7200\"* the|strong=\"H7200\"* channels of|strong=\"H3068\"* the|strong=\"H7200\"* sea|strong=\"H3220\"* appeared|strong=\"H7200\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H7971\"* sent|strong=\"H7971\"* from|strong=\"H7971\"* on|strong=\"H7971\"* high|strong=\"H4791\"* and|strong=\"H7971\"* he|strong=\"H7971\"* took|strong=\"H3947\"* me|strong=\"H7971\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H3588\"* delivered|strong=\"H5337\"* me|strong=\"H8130\"* from|strong=\"H4480\"* my|strong=\"H5337\"* strong|strong=\"H5794\"* enemy|strong=\"H8130\"*," + }, + { + "verseNum": 19, + "text": "They|strong=\"H3117\"* came|strong=\"H1961\"* on|strong=\"H3117\"* me|strong=\"H1961\"* in|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* my|strong=\"H3068\"* calamity," + }, + { + "verseNum": 20, + "text": "He|strong=\"H3588\"* also|strong=\"H3318\"* brought|strong=\"H3318\"* me|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* a|strong=\"H3068\"* large|strong=\"H4800\"* place|strong=\"H4800\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* rewarded|strong=\"H1580\"* me|strong=\"H7725\"* according|strong=\"H3027\"* to|strong=\"H7725\"* my|strong=\"H3068\"* righteousness|strong=\"H6666\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* kept|strong=\"H8104\"* Yahweh|strong=\"H3068\"*’s ways|strong=\"H1870\"*," + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* his|strong=\"H3605\"* ordinances|strong=\"H4941\"* were|strong=\"H3605\"* before|strong=\"H4480\"* me|strong=\"H4480\"*." + }, + { + "verseNum": 24, + "text": "I|strong=\"H5771\"* was|strong=\"H1961\"* also perfect|strong=\"H8549\"* toward him|strong=\"H8104\"*." + }, + { + "verseNum": 25, + "text": "Therefore|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* rewarded|strong=\"H7725\"* me|strong=\"H7725\"* according to|strong=\"H7725\"* my|strong=\"H3068\"* righteousness|strong=\"H6666\"*," + }, + { + "verseNum": 26, + "text": "With|strong=\"H5973\"* the|strong=\"H5973\"* merciful|strong=\"H2623\"* you|strong=\"H5973\"* will|strong=\"H8549\"* show|strong=\"H8552\"* yourself|strong=\"H2616\"* merciful|strong=\"H2623\"*." + }, + { + "verseNum": 27, + "text": "With|strong=\"H5973\"* the|strong=\"H5973\"* pure|strong=\"H1305\"* you|strong=\"H5973\"* will show|strong=\"H6617\"* yourself|strong=\"H1305\"* pure|strong=\"H1305\"*." + }, + { + "verseNum": 28, + "text": "You|strong=\"H5921\"* will|strong=\"H5971\"* save|strong=\"H3467\"* the|strong=\"H5921\"* afflicted|strong=\"H6041\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 29, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3068\"* my|strong=\"H3068\"* lamp|strong=\"H5216\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 30, + "text": "For|strong=\"H3588\"* by|strong=\"H7323\"* you|strong=\"H3588\"*, I|strong=\"H3588\"* run|strong=\"H7323\"* against a|strong=\"H3068\"* troop|strong=\"H1416\"*." + }, + { + "verseNum": 31, + "text": "As|strong=\"H3068\"* for|strong=\"H3068\"* God|strong=\"H3068\"*, his|strong=\"H3605\"* way|strong=\"H1870\"* is|strong=\"H3068\"* perfect|strong=\"H8549\"*." + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* who|strong=\"H4310\"* is|strong=\"H3068\"* God|strong=\"H3068\"*, besides|strong=\"H1107\"* Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 33, + "text": "God is|strong=\"H1870\"* my|strong=\"H1870\"* strong|strong=\"H2428\"* fortress|strong=\"H4581\"*." + }, + { + "verseNum": 34, + "text": "He|strong=\"H5921\"* makes|strong=\"H7737\"* his|strong=\"H5921\"* feet|strong=\"H7272\"* like|strong=\"H7272\"* hinds’ feet|strong=\"H7272\"*," + }, + { + "verseNum": 35, + "text": "He|strong=\"H3027\"* teaches|strong=\"H3925\"* my|strong=\"H3925\"* hands|strong=\"H3027\"* to|strong=\"H3027\"* war|strong=\"H4421\"*," + }, + { + "verseNum": 36, + "text": "You|strong=\"H5414\"* have|strong=\"H5414\"* also given|strong=\"H5414\"* me|strong=\"H5414\"* the|strong=\"H5414\"* shield|strong=\"H4043\"* of|strong=\"H4043\"* your|strong=\"H5414\"* salvation|strong=\"H3468\"*." + }, + { + "verseNum": 37, + "text": "You|strong=\"H3808\"* have|strong=\"H3808\"* enlarged|strong=\"H7337\"* my|strong=\"H8478\"* steps|strong=\"H6806\"* under|strong=\"H8478\"* me|strong=\"H7337\"*." + }, + { + "verseNum": 38, + "text": "I|strong=\"H5704\"* have|strong=\"H3808\"* pursued|strong=\"H7291\"* my|strong=\"H7725\"* enemies and|strong=\"H7725\"* destroyed|strong=\"H8045\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 39, + "text": "I|strong=\"H3808\"* have|strong=\"H3808\"* consumed them|strong=\"H8478\"*," + }, + { + "verseNum": 40, + "text": "For|strong=\"H8478\"* you|strong=\"H8478\"* have|strong=\"H2428\"* armed|strong=\"H4421\"* me|strong=\"H3766\"* with|strong=\"H4421\"* strength|strong=\"H2428\"* for|strong=\"H8478\"* the|strong=\"H8478\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 41, + "text": "You|strong=\"H5414\"* have|strong=\"H5414\"* also made|strong=\"H5414\"* my|strong=\"H5414\"* enemies|strong=\"H8130\"* turn|strong=\"H5414\"* their|strong=\"H5414\"* backs|strong=\"H6203\"* to|strong=\"H5414\"* me|strong=\"H5414\"*," + }, + { + "verseNum": 42, + "text": "They|strong=\"H3068\"* looked|strong=\"H8159\"*, but|strong=\"H3808\"* there|strong=\"H3068\"* was|strong=\"H3068\"* no|strong=\"H3808\"* one|strong=\"H3808\"* to|strong=\"H3068\"* save|strong=\"H3467\"*;" + }, + { + "verseNum": 43, + "text": "Then I beat|strong=\"H7833\"* them|strong=\"H7833\"* as|strong=\"H1854\"* small|strong=\"H1854\"* as|strong=\"H1854\"* the|strong=\"H2351\"* dust|strong=\"H6083\"* of|strong=\"H2351\"* the|strong=\"H2351\"* earth|strong=\"H6083\"*." + }, + { + "verseNum": 44, + "text": "You|strong=\"H3045\"* also|strong=\"H1471\"* have|strong=\"H5971\"* delivered|strong=\"H6403\"* me|strong=\"H8104\"* from|strong=\"H1471\"* the|strong=\"H8104\"* strivings|strong=\"H7379\"* of|strong=\"H7218\"* my|strong=\"H8104\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 45, + "text": "The|strong=\"H8085\"* foreigners|strong=\"H1121\"* will|strong=\"H1121\"* submit|strong=\"H3584\"* themselves|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H8085\"*." + }, + { + "verseNum": 46, + "text": "The|strong=\"H1121\"* foreigners|strong=\"H1121\"* will|strong=\"H1121\"* fade|strong=\"H5034\"* away|strong=\"H5034\"*," + }, + { + "verseNum": 47, + "text": "Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*!" + }, + { + "verseNum": 48, + "text": "even the|strong=\"H5414\"* God|strong=\"H5414\"* who|strong=\"H5971\"* executes|strong=\"H5414\"* vengeance|strong=\"H5360\"* for|strong=\"H8478\"* me|strong=\"H5414\"*," + }, + { + "verseNum": 49, + "text": "who brings|strong=\"H3318\"* me|strong=\"H7311\"* away|strong=\"H3318\"* from|strong=\"H3318\"* my|strong=\"H6965\"* enemies|strong=\"H6965\"*." + }, + { + "verseNum": 50, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* will|strong=\"H3068\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* you|strong=\"H5921\"*, Yahweh|strong=\"H3068\"*, among|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 51, + "text": "He|strong=\"H5704\"* gives|strong=\"H3444\"* great|strong=\"H6213\"* deliverance|strong=\"H3444\"* to|strong=\"H5704\"* his|strong=\"H1732\"* king|strong=\"H4428\"*," + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* these|strong=\"H6965\"* are|strong=\"H1121\"* the|strong=\"H5002\"* last|strong=\"H6965\"* words|strong=\"H1697\"* of|strong=\"H1121\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 2, + "text": "“Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* spoke|strong=\"H1696\"* by|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H1696\"* God|strong=\"H6697\"* of|strong=\"H6697\"* Israel|strong=\"H3478\"* said|strong=\"H1696\"*," + }, + { + "verseNum": 4, + "text": "shall|strong=\"H3808\"* be|strong=\"H3808\"* as|strong=\"H5645\"* the|strong=\"H3808\"* light|strong=\"H5051\"* of|strong=\"H3808\"* the|strong=\"H3808\"* morning|strong=\"H1242\"* when the|strong=\"H3808\"* sun|strong=\"H8121\"* rises|strong=\"H2224\"*," + }, + { + "verseNum": 5, + "text": "Isn’t my|strong=\"H8104\"* house|strong=\"H1004\"* so|strong=\"H3651\"* with|strong=\"H5973\"* God|strong=\"H3808\"*?" + }, + { + "verseNum": 6, + "text": "But|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ungodly|strong=\"H1100\"* will|strong=\"H3027\"* be|strong=\"H3808\"* as|strong=\"H3588\"* thorns|strong=\"H6975\"* to|strong=\"H3027\"* be|strong=\"H3808\"* thrust|strong=\"H6975\"* away|strong=\"H3947\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H4390\"* man who touches|strong=\"H5060\"* them|strong=\"H8313\"* must be|strong=\"H6086\"* armed|strong=\"H4390\"* with|strong=\"H4390\"* iron|strong=\"H1270\"* and|strong=\"H6086\"* the|strong=\"H4390\"* staff|strong=\"H6086\"* of|strong=\"H4390\"* a|strong=\"H3068\"* spear|strong=\"H2595\"*." + }, + { + "verseNum": 8, + "text": "These|strong=\"H1931\"* are|strong=\"H1368\"* the|strong=\"H5921\"* names|strong=\"H8034\"* of|strong=\"H7218\"* the|strong=\"H5921\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* whom|strong=\"H1368\"* David|strong=\"H1732\"* had|strong=\"H1732\"*: Josheb Basshebeth a|strong=\"H3068\"* Tahchemonite|strong=\"H8461\"*, chief|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* captains|strong=\"H7218\"*; he|strong=\"H1931\"* was|strong=\"H8034\"* called|strong=\"H8034\"* Adino|strong=\"H5722\"* the|strong=\"H5921\"* Eznite|strong=\"H6112\"*, who|strong=\"H1931\"* killed|strong=\"H2491\"* eight|strong=\"H8083\"* hundred|strong=\"H3967\"* at|strong=\"H5921\"* one|strong=\"H1931\"* time|strong=\"H6471\"*." + }, + { + "verseNum": 9, + "text": "After|strong=\"H5927\"* him|strong=\"H5973\"* was|strong=\"H1732\"* Eleazar the|strong=\"H5927\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Dodai the|strong=\"H5927\"* son|strong=\"H1121\"* of|strong=\"H1121\"* an|strong=\"H8033\"* Ahohite, one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5927\"* three|strong=\"H7969\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* with|strong=\"H5973\"* David|strong=\"H1732\"* when|strong=\"H1121\"* they|strong=\"H8033\"* defied|strong=\"H2778\"* the|strong=\"H5927\"* Philistines|strong=\"H6430\"* who|strong=\"H1121\"* were|strong=\"H3478\"* there|strong=\"H8033\"* gathered|strong=\"H6430\"* together|strong=\"H5973\"* to|strong=\"H3478\"* battle|strong=\"H4421\"*, and|strong=\"H1121\"* the|strong=\"H5927\"* men|strong=\"H1368\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* gone|strong=\"H5927\"* away|strong=\"H5927\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H1931\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* struck|strong=\"H5221\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"* until|strong=\"H5704\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* was|strong=\"H3068\"* weary|strong=\"H3021\"*, and|strong=\"H6965\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* froze to|strong=\"H5704\"* the|strong=\"H3588\"* sword|strong=\"H2719\"*; and|strong=\"H6965\"* Yahweh|strong=\"H3068\"* worked|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* victory|strong=\"H8668\"* that|strong=\"H3588\"* day|strong=\"H3117\"*; and|strong=\"H6965\"* the|strong=\"H3588\"* people|strong=\"H5971\"* returned|strong=\"H7725\"* after|strong=\"H3117\"* him|strong=\"H5221\"* only|strong=\"H3588\"* to|strong=\"H5704\"* take|strong=\"H7725\"* plunder." + }, + { + "verseNum": 11, + "text": "After|strong=\"H1961\"* him|strong=\"H6440\"* was|strong=\"H1961\"* Shammah the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Agee a|strong=\"H3068\"* Hararite|strong=\"H2043\"*. The|strong=\"H6440\"* Philistines|strong=\"H6430\"* had|strong=\"H1961\"* gathered|strong=\"H6430\"* together|strong=\"H5971\"* into|strong=\"H1961\"* a|strong=\"H3068\"* troop|strong=\"H2416\"* where|strong=\"H8033\"* there|strong=\"H8033\"* was|strong=\"H1961\"* a|strong=\"H3068\"* plot|strong=\"H2513\"* of|strong=\"H1121\"* ground|strong=\"H7704\"* full|strong=\"H4395\"* of|strong=\"H1121\"* lentils|strong=\"H5742\"*; and|strong=\"H1121\"* the|strong=\"H6440\"* people|strong=\"H5971\"* fled|strong=\"H5127\"* from|strong=\"H6440\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H5221\"* he|strong=\"H6213\"* stood|strong=\"H3320\"* in|strong=\"H3068\"* the|strong=\"H5221\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H5221\"* plot|strong=\"H2513\"* and|strong=\"H3068\"* defended|strong=\"H5337\"* it|strong=\"H6213\"*, and|strong=\"H3068\"* killed|strong=\"H5221\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* worked|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* victory|strong=\"H8668\"*." + }, + { + "verseNum": 13, + "text": "Three|strong=\"H7970\"* of|strong=\"H7218\"* the|strong=\"H1732\"* thirty|strong=\"H7970\"* chief|strong=\"H7218\"* men|strong=\"H7218\"* went|strong=\"H3381\"* down|strong=\"H3381\"*, and|strong=\"H7970\"* came|strong=\"H3381\"* to|strong=\"H3381\"* David|strong=\"H1732\"* in|strong=\"H2583\"* the|strong=\"H1732\"* harvest|strong=\"H7105\"* time|strong=\"H7105\"* to|strong=\"H3381\"* the|strong=\"H1732\"* cave|strong=\"H4631\"* of|strong=\"H7218\"* Adullam|strong=\"H5725\"*; and|strong=\"H7970\"* the|strong=\"H1732\"* troop|strong=\"H2416\"* of|strong=\"H7218\"* the|strong=\"H1732\"* Philistines|strong=\"H6430\"* was|strong=\"H1732\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H1732\"* valley|strong=\"H6010\"* of|strong=\"H7218\"* Rephaim|strong=\"H7497\"*." + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* was|strong=\"H1732\"* then|strong=\"H1732\"* in|strong=\"H1035\"* the|strong=\"H1732\"* stronghold|strong=\"H4686\"*; and|strong=\"H1732\"* the|strong=\"H1732\"* garrison|strong=\"H4673\"* of|strong=\"H1732\"* the|strong=\"H1732\"* Philistines|strong=\"H6430\"* was|strong=\"H1732\"* then|strong=\"H1732\"* in|strong=\"H1035\"* Bethlehem|strong=\"H1035\"*." + }, + { + "verseNum": 15, + "text": "David|strong=\"H1732\"* said longingly, “Oh|strong=\"H4310\"* that|strong=\"H4325\"* someone|strong=\"H4310\"* would|strong=\"H4310\"* give|strong=\"H8248\"* me|strong=\"H8248\"* water|strong=\"H4325\"* to|strong=\"H1732\"* drink|strong=\"H8248\"* from|strong=\"H4325\"* the|strong=\"H1732\"* well of|strong=\"H8179\"* Bethlehem|strong=\"H1035\"*, which|strong=\"H4310\"* is|strong=\"H4310\"* by|strong=\"H4325\"* the|strong=\"H1732\"* gate|strong=\"H8179\"*!”" + }, + { + "verseNum": 16, + "text": "The|strong=\"H5375\"* three|strong=\"H7969\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* broke|strong=\"H1234\"* through|strong=\"H1234\"* the|strong=\"H5375\"* army|strong=\"H4264\"* of|strong=\"H3068\"* the|strong=\"H5375\"* Philistines|strong=\"H6430\"*, and|strong=\"H3068\"* drew|strong=\"H7579\"* water|strong=\"H4325\"* out|strong=\"H5258\"* of|strong=\"H3068\"* the|strong=\"H5375\"* well of|strong=\"H3068\"* Bethlehem|strong=\"H1035\"* that|strong=\"H3068\"* was|strong=\"H3068\"* by|strong=\"H3068\"* the|strong=\"H5375\"* gate|strong=\"H8179\"* and|strong=\"H3068\"* took|strong=\"H5375\"* it|strong=\"H5375\"* and|strong=\"H3068\"* brought|strong=\"H5375\"* it|strong=\"H5375\"* to|strong=\"H3068\"* David|strong=\"H1732\"*; but|strong=\"H3808\"* he|strong=\"H3068\"* would|strong=\"H3068\"* not|strong=\"H3808\"* drink|strong=\"H8354\"* of|strong=\"H3068\"* it|strong=\"H5375\"*, but|strong=\"H3808\"* poured|strong=\"H5258\"* it|strong=\"H5375\"* out|strong=\"H5258\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H6213\"* said, “Be|strong=\"H3808\"* it|strong=\"H6213\"* far|strong=\"H2486\"* from|strong=\"H5315\"* me|strong=\"H5315\"*, Yahweh|strong=\"H3068\"*, that|strong=\"H5315\"* I|strong=\"H5315\"* should|strong=\"H3068\"* do|strong=\"H6213\"* this|strong=\"H2063\"*! Isn’t this|strong=\"H2063\"* the|strong=\"H6213\"* blood|strong=\"H1818\"* of|strong=\"H3068\"* the|strong=\"H6213\"* men|strong=\"H1368\"* who|strong=\"H3068\"* risked their|strong=\"H3068\"* lives|strong=\"H5315\"* to|strong=\"H1980\"* go|strong=\"H1980\"*?” Therefore|strong=\"H3068\"* he|strong=\"H6213\"* would|strong=\"H3068\"* not|strong=\"H3808\"* drink|strong=\"H8354\"* it|strong=\"H6213\"*. The|strong=\"H6213\"* three|strong=\"H7969\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* did|strong=\"H6213\"* these|strong=\"H2063\"* things|strong=\"H7969\"*." + }, + { + "verseNum": 18, + "text": "Abishai, the|strong=\"H5921\"* brother of|strong=\"H1121\"* Joab|strong=\"H3097\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"*, was|strong=\"H8034\"* chief|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5921\"* three|strong=\"H7969\"*. He|strong=\"H1931\"* lifted|strong=\"H5782\"* up|strong=\"H5782\"* his|strong=\"H5921\"* spear|strong=\"H2595\"* against|strong=\"H5921\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* and|strong=\"H3967\"* killed|strong=\"H2491\"* them|strong=\"H5921\"*, and|strong=\"H3967\"* had|strong=\"H3097\"* a|strong=\"H3068\"* name|strong=\"H8034\"* among|strong=\"H5921\"* the|strong=\"H5921\"* three|strong=\"H7969\"*." + }, + { + "verseNum": 19, + "text": "Wasn’t he|strong=\"H3588\"* most|strong=\"H4480\"* honorable|strong=\"H3513\"* of|strong=\"H8269\"* the|strong=\"H3588\"* three|strong=\"H7969\"*? Therefore|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H1961\"* made|strong=\"H3513\"* their|strong=\"H3588\"* captain|strong=\"H8269\"*. However|strong=\"H3588\"* he|strong=\"H3588\"* wasn’t included|strong=\"H1961\"* as|strong=\"H5704\"* one|strong=\"H3808\"* of|strong=\"H8269\"* the|strong=\"H3588\"* three|strong=\"H7969\"*." + }, + { + "verseNum": 20, + "text": "Benaiah|strong=\"H1141\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"*, the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* valiant|strong=\"H1121\"* man|strong=\"H1121\"* of|strong=\"H1121\"* Kabzeel|strong=\"H6909\"*, who|strong=\"H1931\"* had|strong=\"H1121\"* done|strong=\"H6467\"* mighty|strong=\"H7227\"* deeds|strong=\"H6467\"*, killed|strong=\"H5221\"* the|strong=\"H5221\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ariel of|strong=\"H1121\"* Moab|strong=\"H4124\"*. He|strong=\"H1931\"* also|strong=\"H1121\"* went|strong=\"H3381\"* down|strong=\"H3381\"* and|strong=\"H1121\"* killed|strong=\"H5221\"* a|strong=\"H3068\"* lion in|strong=\"H3117\"* the|strong=\"H5221\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* a|strong=\"H3068\"* pit in|strong=\"H3117\"* a|strong=\"H3068\"* time|strong=\"H3117\"* of|strong=\"H1121\"* snow|strong=\"H7950\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H1931\"* killed|strong=\"H2026\"* a|strong=\"H3068\"* huge Egyptian|strong=\"H4713\"*, and|strong=\"H3027\"* the|strong=\"H5221\"* Egyptian|strong=\"H4713\"* had|strong=\"H3027\"* a|strong=\"H3068\"* spear|strong=\"H2595\"* in|strong=\"H3027\"* his|strong=\"H5221\"* hand|strong=\"H3027\"*; but|strong=\"H5221\"* he|strong=\"H1931\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* him|strong=\"H5221\"* with|strong=\"H3381\"* a|strong=\"H3068\"* staff|strong=\"H7626\"* and|strong=\"H3027\"* plucked|strong=\"H1497\"* the|strong=\"H5221\"* spear|strong=\"H2595\"* out|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5221\"* Egyptian|strong=\"H4713\"*’s hand|strong=\"H3027\"*, and|strong=\"H3027\"* killed|strong=\"H2026\"* him|strong=\"H5221\"* with|strong=\"H3381\"* his|strong=\"H5221\"* own|strong=\"H3027\"* spear|strong=\"H2595\"*." + }, + { + "verseNum": 22, + "text": "Benaiah|strong=\"H1141\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* did|strong=\"H6213\"* these|strong=\"H6213\"* things|strong=\"H7969\"*, and|strong=\"H1121\"* had|strong=\"H1121\"* a|strong=\"H3068\"* name|strong=\"H8034\"* among|strong=\"H8034\"* the|strong=\"H6213\"* three|strong=\"H7969\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H1732\"* was|strong=\"H1732\"* more|strong=\"H4480\"* honorable|strong=\"H3513\"* than|strong=\"H4480\"* the|strong=\"H4480\"* thirty|strong=\"H7970\"*, but|strong=\"H3808\"* he|strong=\"H1732\"* didn’t attain to|strong=\"H1732\"* the|strong=\"H4480\"* three|strong=\"H7969\"*. David|strong=\"H1732\"* set|strong=\"H7760\"* him|strong=\"H7760\"* over|strong=\"H4480\"* his|strong=\"H7760\"* guard|strong=\"H4928\"*." + }, + { + "verseNum": 24, + "text": "Asahel|strong=\"H6214\"* the|strong=\"H3097\"* brother of|strong=\"H1121\"* Joab|strong=\"H3097\"* was|strong=\"H1121\"* one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3097\"* thirty|strong=\"H7970\"*: Elhanan the|strong=\"H3097\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Dodo|strong=\"H1734\"* of|strong=\"H1121\"* Bethlehem|strong=\"H1035\"*," + }, + { + "verseNum": 25, + "text": "Shammah|strong=\"H8048\"* the|strong=\"H8048\"* Harodite|strong=\"H2733\"*, Elika the|strong=\"H8048\"* Harodite|strong=\"H2733\"*," + }, + { + "verseNum": 26, + "text": "Helez|strong=\"H2503\"* the|strong=\"H1121\"* Paltite|strong=\"H6407\"*, Ira|strong=\"H5896\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ikkesh|strong=\"H6142\"* the|strong=\"H1121\"* Tekoite|strong=\"H8621\"*," + }, + { + "verseNum": 27, + "text": "Abiezer the|strong=\"H4012\"* Anathothite|strong=\"H6069\"*, Mebunnai|strong=\"H4012\"* the|strong=\"H4012\"* Hushathite|strong=\"H2843\"*," + }, + { + "verseNum": 28, + "text": "Zalmon|strong=\"H6756\"* the|strong=\"H4121\"* Ahohite, Maharai|strong=\"H4121\"* the|strong=\"H4121\"* Netophathite|strong=\"H5200\"*," + }, + { + "verseNum": 29, + "text": "Heleb|strong=\"H2460\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Baanah|strong=\"H1196\"* the|strong=\"H1121\"* Netophathite|strong=\"H5200\"*, Ittai the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ribai|strong=\"H7380\"* of|strong=\"H1121\"* Gibeah|strong=\"H1390\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*," + }, + { + "verseNum": 30, + "text": "Benaiah|strong=\"H1141\"* a|strong=\"H3068\"* Pirathonite|strong=\"H6553\"*, Hiddai|strong=\"H1914\"* of|strong=\"H5158\"* the|strong=\"H1141\"* brooks|strong=\"H5158\"* of|strong=\"H5158\"* Gaash|strong=\"H1608\"*." + }, + { + "verseNum": 31, + "text": "Abialbon the|strong=\"H5820\"* Arbathite|strong=\"H6164\"*, Azmaveth|strong=\"H5820\"* the|strong=\"H5820\"* Barhumite|strong=\"H1273\"*," + }, + { + "verseNum": 32, + "text": "Eliahba the|strong=\"H3083\"* Shaalbonite|strong=\"H8170\"*, the|strong=\"H3083\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jashen|strong=\"H3464\"*, Jonathan|strong=\"H3083\"*," + }, + { + "verseNum": 33, + "text": "Shammah|strong=\"H8048\"* the|strong=\"H1121\"* Hararite|strong=\"H2043\"*, Ahiam the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Sharar|strong=\"H8325\"* the|strong=\"H1121\"* Ararite|strong=\"H2043\"*," + }, + { + "verseNum": 34, + "text": "Eliphelet the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahasbai, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Maacathite|strong=\"H4602\"*, Eliam the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahithophel the|strong=\"H1121\"* Gilonite|strong=\"H1526\"*," + }, + { + "verseNum": 35, + "text": "Hezro|strong=\"H2695\"* the|strong=\"H2695\"* Carmelite|strong=\"H3761\"*, Paarai|strong=\"H6474\"* the|strong=\"H2695\"* Arbite," + }, + { + "verseNum": 36, + "text": "Igal|strong=\"H3008\"* the|strong=\"H5416\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nathan|strong=\"H5416\"* of|strong=\"H1121\"* Zobah|strong=\"H6678\"*, Bani|strong=\"H1137\"* the|strong=\"H5416\"* Gadite|strong=\"H1425\"*," + }, + { + "verseNum": 37, + "text": "Zelek|strong=\"H6768\"* the|strong=\"H5375\"* Ammonite|strong=\"H5984\"*, Naharai|strong=\"H5171\"* the|strong=\"H5375\"* Beerothite, armor|strong=\"H3627\"* bearers|strong=\"H5375\"* to|strong=\"H1121\"* Joab|strong=\"H3097\"* the|strong=\"H5375\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"*," + }, + { + "verseNum": 38, + "text": "Ira|strong=\"H5896\"* the|strong=\"H5896\"* Ithrite|strong=\"H3505\"*, Gareb|strong=\"H1619\"* the|strong=\"H5896\"* Ithrite|strong=\"H3505\"*," + }, + { + "verseNum": 39, + "text": "and|strong=\"H7970\"* Uriah the|strong=\"H3605\"* Hittite|strong=\"H2850\"*: thirty-seven|strong=\"H7970\"* in|strong=\"H3605\"* all|strong=\"H3605\"*." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Again|strong=\"H3254\"* Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* Israel|strong=\"H3478\"*, and|strong=\"H3063\"* he|strong=\"H3068\"* moved|strong=\"H5496\"* David|strong=\"H1732\"* against|strong=\"H2734\"* them|strong=\"H3068\"*, saying, “Go|strong=\"H3212\"*, count|strong=\"H4487\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"*.”" + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* said to|strong=\"H5704\"* Joab|strong=\"H3097\"* the|strong=\"H3605\"* captain|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* army|strong=\"H2428\"*, who|strong=\"H3605\"* was|strong=\"H3478\"* with|strong=\"H3045\"* him|strong=\"H3605\"*, “Now|strong=\"H4994\"* go|strong=\"H5971\"* back|strong=\"H3045\"* and|strong=\"H3478\"* forth|strong=\"H7751\"* through|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, from|strong=\"H3478\"* Dan|strong=\"H1835\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Beersheba, and|strong=\"H3478\"* count|strong=\"H4557\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, that|strong=\"H3045\"* I|strong=\"H5704\"* may|strong=\"H4994\"* know|strong=\"H3045\"* the|strong=\"H3605\"* sum|strong=\"H4557\"* of|strong=\"H4428\"* the|strong=\"H3605\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 3, + "text": "Joab|strong=\"H3097\"* said|strong=\"H1697\"* to|strong=\"H3068\"* the|strong=\"H7200\"* king|strong=\"H4428\"*, “Now|strong=\"H6471\"* may|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* add|strong=\"H3254\"* to|strong=\"H3068\"* the|strong=\"H7200\"* people|strong=\"H5971\"*, however many|strong=\"H4100\"* they|strong=\"H1992\"* may|strong=\"H3068\"* be|strong=\"H1697\"*, one|strong=\"H2088\"* hundred|strong=\"H3967\"* times|strong=\"H6471\"*; and|strong=\"H3967\"* may|strong=\"H3068\"* the|strong=\"H7200\"* eyes|strong=\"H5869\"* of|strong=\"H4428\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* the|strong=\"H7200\"* king|strong=\"H4428\"* see|strong=\"H7200\"* it|strong=\"H7200\"*. But|strong=\"H7200\"* why|strong=\"H4100\"* does|strong=\"H4100\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* the|strong=\"H7200\"* king|strong=\"H4428\"* delight|strong=\"H2654\"* in|strong=\"H3068\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*?”" + }, + { + "verseNum": 4, + "text": "Notwithstanding, the|strong=\"H6440\"* king|strong=\"H4428\"*’s word|strong=\"H1697\"* prevailed|strong=\"H2388\"* against|strong=\"H5921\"* Joab|strong=\"H3097\"* and|strong=\"H3478\"* against|strong=\"H5921\"* the|strong=\"H6440\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H6440\"* army|strong=\"H2428\"*. Joab|strong=\"H3097\"* and|strong=\"H3478\"* the|strong=\"H6440\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H6440\"* army|strong=\"H2428\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* to|strong=\"H3318\"* count the|strong=\"H6440\"* people|strong=\"H5971\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H5892\"* passed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H8432\"* Jordan|strong=\"H3383\"* and|strong=\"H5892\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Aroer|strong=\"H6177\"*, on|strong=\"H5674\"* the|strong=\"H8432\"* right|strong=\"H3225\"* side|strong=\"H3225\"* of|strong=\"H5892\"* the|strong=\"H8432\"* city|strong=\"H5892\"* that|strong=\"H5892\"* is|strong=\"H5892\"* in|strong=\"H2583\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H5892\"* the|strong=\"H8432\"* valley|strong=\"H5158\"* of|strong=\"H5892\"* Gad|strong=\"H1410\"*, and|strong=\"H5892\"* to|strong=\"H5674\"* Jazer|strong=\"H3270\"*;" + }, + { + "verseNum": 6, + "text": "then they came to|strong=\"H5439\"* Gilead|strong=\"H1568\"* and|strong=\"H1568\"* to|strong=\"H5439\"* the|strong=\"H5439\"* land of|strong=\"H5439\"* Tahtim Hodshi; and|strong=\"H1568\"* they came to|strong=\"H5439\"* Dan Jaan and|strong=\"H1568\"* around|strong=\"H5439\"* to|strong=\"H5439\"* Sidon|strong=\"H6721\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"H3063\"* came|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3605\"* stronghold of|strong=\"H5892\"* Tyre|strong=\"H6865\"*, and|strong=\"H3063\"* to|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H3605\"* Hivites|strong=\"H2340\"* and|strong=\"H3063\"* of|strong=\"H5892\"* the|strong=\"H3605\"* Canaanites|strong=\"H3669\"*; and|strong=\"H3063\"* they|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3605\"* south|strong=\"H5045\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"*, at|strong=\"H3318\"* Beersheba." + }, + { + "verseNum": 8, + "text": "So when|strong=\"H3117\"* they|strong=\"H3117\"* had|strong=\"H3389\"* gone|strong=\"H7751\"* back|strong=\"H7751\"* and|strong=\"H6242\"* forth|strong=\"H7751\"* through|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land, they|strong=\"H3117\"* came to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"* at|strong=\"H2320\"* the|strong=\"H3605\"* end|strong=\"H7097\"* of|strong=\"H3117\"* nine|strong=\"H8672\"* months|strong=\"H2320\"* and|strong=\"H6242\"* twenty|strong=\"H6242\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 9, + "text": "Joab|strong=\"H3097\"* gave|strong=\"H5414\"* up|strong=\"H5414\"* the|strong=\"H5414\"* sum|strong=\"H4557\"* of|strong=\"H4428\"* the|strong=\"H5414\"* counting|strong=\"H4557\"* of|strong=\"H4428\"* the|strong=\"H5414\"* people|strong=\"H5971\"* to|strong=\"H3478\"* the|strong=\"H5414\"* king|strong=\"H4428\"*; and|strong=\"H3967\"* there|strong=\"H1961\"* were|strong=\"H3478\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* eight|strong=\"H8083\"* hundred|strong=\"H3967\"* thousand valiant|strong=\"H2428\"* men|strong=\"H5971\"* who|strong=\"H5971\"* drew|strong=\"H8025\"* the|strong=\"H5414\"* sword|strong=\"H2719\"*, and|strong=\"H3967\"* the|strong=\"H5414\"* men|strong=\"H5971\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* were|strong=\"H3478\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* thousand men|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "David|strong=\"H1732\"*’s heart|strong=\"H3820\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* after|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3068\"* counted|strong=\"H5608\"* the|strong=\"H3588\"* people|strong=\"H5971\"*. David|strong=\"H1732\"* said|strong=\"H3651\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, “I|strong=\"H3588\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* greatly|strong=\"H3966\"* in|strong=\"H3068\"* that|strong=\"H3588\"* which|strong=\"H3068\"* I|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"*. But|strong=\"H3588\"* now|strong=\"H6258\"*, Yahweh|strong=\"H3068\"*, put|strong=\"H6213\"* away|strong=\"H5674\"*, I|strong=\"H3588\"* beg|strong=\"H4994\"* you|strong=\"H3588\"*, the|strong=\"H3588\"* iniquity|strong=\"H5771\"* of|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"* very|strong=\"H3966\"* foolishly|strong=\"H5528\"*.”" + }, + { + "verseNum": 11, + "text": "When|strong=\"H1961\"* David|strong=\"H1732\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H3068\"* the|strong=\"H3068\"* morning|strong=\"H1242\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* Gad|strong=\"H1410\"*, David|strong=\"H1732\"*’s seer|strong=\"H2374\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 12, + "text": "“Go|strong=\"H1980\"* and|strong=\"H1980\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* David|strong=\"H1732\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “I|strong=\"H3541\"* offer|strong=\"H6213\"* you|strong=\"H5921\"* three|strong=\"H7969\"* things|strong=\"H7969\"*. Choose one|strong=\"H6213\"* of|strong=\"H3068\"* them|strong=\"H1992\"*, that|strong=\"H3068\"* I|strong=\"H3541\"* may|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H5921\"* to|strong=\"H1696\"* you|strong=\"H5921\"*.”’”" + }, + { + "verseNum": 13, + "text": "So|strong=\"H7971\"* Gad|strong=\"H1410\"* came|strong=\"H1961\"* to|strong=\"H7725\"* David|strong=\"H1732\"*, and|strong=\"H7971\"* told|strong=\"H5046\"* him|strong=\"H6440\"*, saying|strong=\"H1697\"*, “Shall|strong=\"H3117\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* of|strong=\"H3117\"* famine|strong=\"H7458\"* come|strong=\"H1961\"* to|strong=\"H7725\"* you|strong=\"H6440\"* in|strong=\"H8141\"* your|strong=\"H6440\"* land|strong=\"H6440\"*? Or|strong=\"H3117\"* will|strong=\"H1961\"* you|strong=\"H6440\"* flee|strong=\"H5127\"* three|strong=\"H7969\"* months|strong=\"H2320\"* before|strong=\"H6440\"* your|strong=\"H6440\"* foes|strong=\"H6862\"* while|strong=\"H1961\"* they|strong=\"H3117\"* pursue|strong=\"H7291\"* you|strong=\"H6440\"*? Or|strong=\"H3117\"* shall|strong=\"H3117\"* there|strong=\"H1961\"* be|strong=\"H1961\"* three|strong=\"H7969\"* days|strong=\"H3117\"*’ pestilence|strong=\"H1698\"* in|strong=\"H8141\"* your|strong=\"H6440\"* land|strong=\"H6440\"*? Now|strong=\"H6258\"* answer|strong=\"H7725\"*, and|strong=\"H7971\"* consider|strong=\"H7200\"* what|strong=\"H4100\"* answer|strong=\"H7725\"* I|strong=\"H3117\"* shall|strong=\"H3117\"* return|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H6440\"* who|strong=\"H1931\"* sent|strong=\"H7971\"* me|strong=\"H6440\"*.”" + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* said to|strong=\"H3068\"* Gad|strong=\"H1410\"*, “I|strong=\"H3588\"* am|strong=\"H3068\"* in|strong=\"H3068\"* distress|strong=\"H6862\"*. Let|strong=\"H4994\"* us|strong=\"H4994\"* fall|strong=\"H5307\"* now|strong=\"H4994\"* into|strong=\"H5307\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"*, for|strong=\"H3588\"* his|strong=\"H3068\"* mercies|strong=\"H7356\"* are|strong=\"H3027\"* great|strong=\"H7227\"*. Let|strong=\"H4994\"* me|strong=\"H4994\"* not|strong=\"H3588\"* fall|strong=\"H5307\"* into|strong=\"H5307\"* man|strong=\"H5307\"*’s hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 15, + "text": "So|strong=\"H4480\"* Yahweh|strong=\"H3068\"* sent|strong=\"H5414\"* a|strong=\"H3068\"* pestilence|strong=\"H1698\"* on|strong=\"H3068\"* Israel|strong=\"H3478\"* from|strong=\"H4480\"* the|strong=\"H5414\"* morning|strong=\"H1242\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5414\"* appointed|strong=\"H4150\"* time|strong=\"H6256\"*; and|strong=\"H3478\"* seventy|strong=\"H7657\"* thousand men|strong=\"H5971\"* died|strong=\"H4191\"* of|strong=\"H3068\"* the|strong=\"H5414\"* people|strong=\"H5971\"* from|strong=\"H4480\"* Dan|strong=\"H1835\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Beersheba." + }, + { + "verseNum": 16, + "text": "When|strong=\"H1961\"* the|strong=\"H3068\"* angel|strong=\"H4397\"* stretched|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* toward|strong=\"H3027\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3068\"* destroy|strong=\"H7843\"* it|strong=\"H1961\"*, Yahweh|strong=\"H3068\"* relented|strong=\"H5162\"* of|strong=\"H3068\"* the|strong=\"H3068\"* disaster|strong=\"H7451\"*, and|strong=\"H3068\"* said to|strong=\"H3068\"* the|strong=\"H3068\"* angel|strong=\"H4397\"* who|strong=\"H5971\"* destroyed|strong=\"H7843\"* the|strong=\"H3068\"* people|strong=\"H5971\"*, “It|strong=\"H1961\"* is|strong=\"H3068\"* enough|strong=\"H7227\"*. Now|strong=\"H6258\"* withdraw your|strong=\"H3068\"* hand|strong=\"H3027\"*.” Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* was|strong=\"H3068\"* by|strong=\"H3027\"* the|strong=\"H3068\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* of|strong=\"H3068\"* Araunah the|strong=\"H3068\"* Jebusite|strong=\"H2983\"*." + }, + { + "verseNum": 17, + "text": "David|strong=\"H1732\"* spoke to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* when|strong=\"H1961\"* he|strong=\"H6213\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* angel|strong=\"H4397\"* who|strong=\"H5971\"* struck|strong=\"H5221\"* the|strong=\"H7200\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* said, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"*, and|strong=\"H3068\"* I|strong=\"H2009\"* have|strong=\"H1961\"* done|strong=\"H6213\"* perversely|strong=\"H5753\"*; but|strong=\"H1961\"* these|strong=\"H6213\"* sheep|strong=\"H6629\"*, what|strong=\"H4100\"* have|strong=\"H1961\"* they|strong=\"H3068\"* done|strong=\"H6213\"*? Please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* be|strong=\"H1961\"* against|strong=\"H2398\"* me|strong=\"H4994\"*, and|strong=\"H3068\"* against|strong=\"H2398\"* my|strong=\"H3068\"* father’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 18, + "text": "Gad|strong=\"H1410\"* came|strong=\"H5927\"* that|strong=\"H3117\"* day|strong=\"H3117\"* to|strong=\"H3068\"* David|strong=\"H1732\"* and|strong=\"H6965\"* said to|strong=\"H3068\"* him|strong=\"H1931\"*, “Go|strong=\"H5927\"* up|strong=\"H5927\"*, build|strong=\"H6965\"* an|strong=\"H6965\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* on|strong=\"H3117\"* the|strong=\"H3068\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* of|strong=\"H3068\"* Araunah the|strong=\"H3068\"* Jebusite|strong=\"H2983\"*.”" + }, + { + "verseNum": 19, + "text": "David|strong=\"H1732\"* went|strong=\"H5927\"* up|strong=\"H5927\"* according to|strong=\"H3068\"* the|strong=\"H3068\"* saying|strong=\"H1697\"* of|strong=\"H3068\"* Gad|strong=\"H1410\"*, as|strong=\"H1697\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"*." + }, + { + "verseNum": 20, + "text": "Araunah looked|strong=\"H7200\"* out|strong=\"H3318\"*, and|strong=\"H4428\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* king|strong=\"H4428\"* and|strong=\"H4428\"* his|strong=\"H5921\"* servants|strong=\"H5650\"* coming|strong=\"H3318\"* on|strong=\"H5921\"* toward|strong=\"H5921\"* him|strong=\"H5921\"*. Then|strong=\"H3318\"* Araunah went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H4428\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* before|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* with|strong=\"H5921\"* his|strong=\"H5921\"* face|strong=\"H7200\"* to|strong=\"H3318\"* the|strong=\"H5921\"* ground." + }, + { + "verseNum": 21, + "text": "Araunah said, “Why|strong=\"H4069\"* has|strong=\"H3068\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* the|strong=\"H5921\"* king|strong=\"H4428\"* come|strong=\"H5971\"* to|strong=\"H3068\"* his|strong=\"H3068\"* servant|strong=\"H5650\"*?”" + }, + { + "verseNum": 22, + "text": "Araunah said to|strong=\"H5927\"* David|strong=\"H1732\"*, “Let my|strong=\"H7200\"* lord the|strong=\"H7200\"* king|strong=\"H4428\"* take|strong=\"H3947\"* and|strong=\"H4428\"* offer|strong=\"H5927\"* up|strong=\"H5927\"* what|strong=\"H2896\"* seems|strong=\"H2896\"* good|strong=\"H2896\"* to|strong=\"H5927\"* him|strong=\"H7200\"*. Behold|strong=\"H7200\"*, the|strong=\"H7200\"* cattle|strong=\"H1241\"* for|strong=\"H6086\"* the|strong=\"H7200\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H4428\"* the|strong=\"H7200\"* threshing|strong=\"H4173\"* sledges|strong=\"H4173\"* and|strong=\"H4428\"* the|strong=\"H7200\"* yokes|strong=\"H3627\"* of|strong=\"H4428\"* the|strong=\"H7200\"* oxen|strong=\"H1241\"* for|strong=\"H6086\"* the|strong=\"H7200\"* wood|strong=\"H6086\"*." + }, + { + "verseNum": 23, + "text": "All|strong=\"H3605\"* this|strong=\"H5414\"*, O|strong=\"H3068\"* king|strong=\"H4428\"*, does|strong=\"H3068\"* Araunah give|strong=\"H5414\"* to|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"*.” Araunah said to|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, “May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* accept|strong=\"H7521\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 24, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* said to|strong=\"H3068\"* Araunah, “No|strong=\"H3808\"*, but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* most|strong=\"H3068\"* certainly|strong=\"H3588\"* buy|strong=\"H7069\"* it|strong=\"H3588\"* from|strong=\"H5927\"* you|strong=\"H3588\"* for|strong=\"H3588\"* a|strong=\"H3068\"* price|strong=\"H4242\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"* which|strong=\"H3068\"* cost|strong=\"H4242\"* me|strong=\"H2600\"* nothing|strong=\"H3808\"*.” So|strong=\"H5927\"* David|strong=\"H1732\"* bought|strong=\"H7069\"* the|strong=\"H3588\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* and|strong=\"H3068\"* the|strong=\"H3588\"* oxen|strong=\"H1241\"* for|strong=\"H3588\"* fifty|strong=\"H2572\"* shekels|strong=\"H8255\"*+ 24:24 A shekel is about 10 grams or about 0.35 ounces, so 50 shekels is about 0.5 kilograms or 1.1 pounds.* of|strong=\"H4428\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 25, + "text": "David|strong=\"H1732\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* there|strong=\"H8033\"*, and|strong=\"H3478\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H3478\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*. So|strong=\"H5927\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* entreated|strong=\"H6279\"* for|strong=\"H5921\"* the|strong=\"H5921\"* land, and|strong=\"H3478\"* the|strong=\"H5921\"* plague|strong=\"H4046\"* was|strong=\"H3068\"* removed from|strong=\"H5921\"* Israel|strong=\"H3478\"*." + } + ] + } + ] + }, + { + "name": "1 Kings", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3117\"* King|strong=\"H4428\"* David|strong=\"H1732\"* was|strong=\"H1732\"* old|strong=\"H2204\"* and|strong=\"H4428\"* advanced in|strong=\"H4428\"* years|strong=\"H3117\"*; and|strong=\"H4428\"* they|strong=\"H3117\"* covered|strong=\"H3680\"* him|strong=\"H1732\"* with|strong=\"H3117\"* clothes, but|strong=\"H3808\"* he|strong=\"H3117\"* couldn’t keep|strong=\"H3680\"* warm|strong=\"H3179\"*." + }, + { + "verseNum": 2, + "text": "Therefore|strong=\"H5650\"* his|strong=\"H6440\"* servants|strong=\"H5650\"* said to|strong=\"H1961\"* him|strong=\"H6440\"*, “Let|strong=\"H1961\"* a|strong=\"H3068\"* young|strong=\"H5291\"* virgin|strong=\"H1330\"* be|strong=\"H1961\"* sought|strong=\"H1245\"* for|strong=\"H6440\"* my|strong=\"H1245\"* lord the|strong=\"H6440\"* king|strong=\"H4428\"*. Let|strong=\"H1961\"* her|strong=\"H7901\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* cherish|strong=\"H2436\"* him|strong=\"H6440\"*; and|strong=\"H4428\"* let|strong=\"H1961\"* her|strong=\"H7901\"* lie|strong=\"H7901\"* in|strong=\"H4428\"* your|strong=\"H6440\"* bosom|strong=\"H2436\"*, that|strong=\"H4428\"* my|strong=\"H1245\"* lord the|strong=\"H6440\"* king|strong=\"H4428\"* may|strong=\"H1961\"* keep|strong=\"H2552\"* warm|strong=\"H2552\"*.”" + }, + { + "verseNum": 3, + "text": "So|strong=\"H4672\"* they|strong=\"H3478\"* sought|strong=\"H1245\"* for|strong=\"H4428\"* a|strong=\"H3068\"* beautiful|strong=\"H3303\"* young|strong=\"H5291\"* lady|strong=\"H5291\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* found|strong=\"H4672\"* Abishag the|strong=\"H3605\"* Shunammite|strong=\"H7767\"*, and|strong=\"H3478\"* brought|strong=\"H3478\"* her|strong=\"H3605\"* to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3045\"* young|strong=\"H5291\"* lady|strong=\"H5291\"* was|strong=\"H1961\"* very|strong=\"H3966\"* beautiful|strong=\"H3303\"*; and|strong=\"H4428\"* she|strong=\"H5704\"* cherished|strong=\"H5532\"* the|strong=\"H3045\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* served|strong=\"H8334\"* him|strong=\"H3045\"*; but|strong=\"H3808\"* the|strong=\"H3045\"* king|strong=\"H4428\"* didn’t know|strong=\"H3045\"* her|strong=\"H3045\"* intimately|strong=\"H5532\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6213\"* Adonijah the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Haggith|strong=\"H2294\"* exalted|strong=\"H4984\"* himself|strong=\"H6213\"*, saying, “I|strong=\"H6440\"* will|strong=\"H1121\"* be|strong=\"H1121\"* king|strong=\"H4427\"*.” Then|strong=\"H6213\"* he|strong=\"H6213\"* prepared|strong=\"H6213\"* him|strong=\"H6440\"* chariots|strong=\"H7393\"* and|strong=\"H1121\"* horsemen|strong=\"H6571\"*, and|strong=\"H1121\"* fifty|strong=\"H2572\"* men|strong=\"H1121\"* to|strong=\"H6213\"* run|strong=\"H7323\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 6, + "text": "His|strong=\"H6213\"* father|strong=\"H3205\"* had|strong=\"H3205\"* not|strong=\"H3808\"* displeased|strong=\"H6087\"* him|strong=\"H3205\"* at|strong=\"H3117\"* any|strong=\"H6213\"* time|strong=\"H3117\"* in|strong=\"H6213\"* saying, “Why|strong=\"H4069\"* have|strong=\"H1571\"* you|strong=\"H3117\"* done|strong=\"H6213\"* so|strong=\"H6213\"*?” and|strong=\"H3117\"* he|strong=\"H1931\"* was|strong=\"H1931\"* also|strong=\"H1571\"* a|strong=\"H3068\"* very|strong=\"H3966\"* handsome|strong=\"H2896\"* man|strong=\"H2896\"*; and|strong=\"H3117\"* he|strong=\"H1931\"* was|strong=\"H1931\"* born|strong=\"H3205\"* after|strong=\"H3117\"* Absalom." + }, + { + "verseNum": 7, + "text": "He|strong=\"H1697\"* conferred|strong=\"H1697\"* with|strong=\"H5973\"* Joab|strong=\"H3097\"* the|strong=\"H1697\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* and|strong=\"H1121\"* with|strong=\"H5973\"* Abiathar the|strong=\"H1697\"* priest|strong=\"H3548\"*; and|strong=\"H1121\"* they|strong=\"H1697\"* followed|strong=\"H1961\"* Adonijah and|strong=\"H1121\"* helped|strong=\"H5826\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H3808\"* Zadok|strong=\"H6659\"* the|strong=\"H1961\"* priest|strong=\"H3548\"*, Benaiah|strong=\"H1141\"* the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"*, Nathan|strong=\"H5416\"* the|strong=\"H1961\"* prophet|strong=\"H5030\"*, Shimei|strong=\"H8096\"*, Rei|strong=\"H7472\"*, and|strong=\"H1121\"* the|strong=\"H1961\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* who|strong=\"H3548\"* belonged|strong=\"H1961\"* to|strong=\"H1961\"* David|strong=\"H1732\"*, were|strong=\"H1961\"* not|strong=\"H3808\"* with|strong=\"H5973\"* Adonijah." + }, + { + "verseNum": 9, + "text": "Adonijah killed|strong=\"H2076\"* sheep|strong=\"H6629\"*, cattle|strong=\"H1241\"*, and|strong=\"H1121\"* fatlings|strong=\"H4806\"* by|strong=\"H7121\"* the|strong=\"H3605\"* stone of|strong=\"H1121\"* Zoheleth|strong=\"H2120\"*, which|strong=\"H3063\"* is|strong=\"H3605\"* beside|strong=\"H5973\"* En Rogel; and|strong=\"H1121\"* he|strong=\"H3605\"* called|strong=\"H7121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* brothers|strong=\"H1121\"*, the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, the|strong=\"H3605\"* king|strong=\"H4428\"*’s servants|strong=\"H5650\"*;" + }, + { + "verseNum": 10, + "text": "but|strong=\"H3808\"* he|strong=\"H3808\"* didn’t call|strong=\"H7121\"* Nathan|strong=\"H5416\"* the|strong=\"H7121\"* prophet|strong=\"H5030\"*, and|strong=\"H5030\"* Benaiah|strong=\"H1141\"*, and|strong=\"H5030\"* the|strong=\"H7121\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*, and|strong=\"H5030\"* Solomon|strong=\"H8010\"* his|strong=\"H7121\"* brother." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H8085\"* Nathan|strong=\"H5416\"* spoke to|strong=\"H8085\"* Bathsheba|strong=\"H1339\"* the|strong=\"H8085\"* mother of|strong=\"H1121\"* Solomon|strong=\"H8010\"*, saying, “Haven’t you|strong=\"H3588\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* Adonijah the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Haggith|strong=\"H2294\"* reigns|strong=\"H4427\"*, and|strong=\"H1121\"* David|strong=\"H1732\"* our|strong=\"H8085\"* lord doesn’t know|strong=\"H3045\"* it|strong=\"H3588\"*?" + }, + { + "verseNum": 12, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* come|strong=\"H3212\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* give|strong=\"H3289\"* you|strong=\"H3289\"* counsel|strong=\"H6098\"*, that|strong=\"H5315\"* you|strong=\"H3289\"* may|strong=\"H4994\"* save|strong=\"H4422\"* your|strong=\"H4994\"* own|strong=\"H5315\"* life|strong=\"H5315\"* and|strong=\"H1121\"* your|strong=\"H4994\"* son|strong=\"H1121\"* Solomon|strong=\"H8010\"*’s life|strong=\"H5315\"*." + }, + { + "verseNum": 13, + "text": "Go|strong=\"H3212\"* in|strong=\"H3427\"* to|strong=\"H3212\"* King|strong=\"H4428\"* David|strong=\"H1732\"*, and|strong=\"H1121\"* tell him|strong=\"H5921\"*, ‘Didn’t you|strong=\"H3588\"*, my|strong=\"H1732\"* lord the|strong=\"H5921\"* king|strong=\"H4428\"*, swear|strong=\"H7650\"* to|strong=\"H3212\"* your|strong=\"H5921\"* servant, saying, “Assuredly|strong=\"H3588\"* Solomon|strong=\"H8010\"* your|strong=\"H5921\"* son|strong=\"H1121\"* shall|strong=\"H1121\"* reign|strong=\"H4427\"* after|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* shall|strong=\"H1121\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* my|strong=\"H1732\"* throne|strong=\"H3678\"*”? Why|strong=\"H4069\"* then|strong=\"H4428\"* does|strong=\"H3808\"* Adonijah reign|strong=\"H4427\"*?’" + }, + { + "verseNum": 14, + "text": "Behold|strong=\"H2009\"*,+ 1:14 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* while|strong=\"H5750\"* you|strong=\"H5973\"* are|strong=\"H1697\"* still|strong=\"H5750\"* talking|strong=\"H1696\"* there|strong=\"H8033\"* with|strong=\"H5973\"* the|strong=\"H4390\"* king|strong=\"H4428\"*, I|strong=\"H2009\"* will|strong=\"H4428\"* also|strong=\"H5750\"* come|strong=\"H4390\"* in|strong=\"H4428\"* after|strong=\"H2009\"* you|strong=\"H5973\"* and|strong=\"H4428\"* confirm|strong=\"H4390\"* your|strong=\"H4390\"* words|strong=\"H1697\"*.”" + }, + { + "verseNum": 15, + "text": "Bathsheba|strong=\"H1339\"* went|strong=\"H4428\"* in|strong=\"H4428\"* to|strong=\"H4428\"* the|strong=\"H8334\"* king|strong=\"H4428\"* in|strong=\"H4428\"* his|strong=\"H4428\"* room|strong=\"H2315\"*. The|strong=\"H8334\"* king|strong=\"H4428\"* was|strong=\"H4428\"* very|strong=\"H3966\"* old|strong=\"H2204\"*; and|strong=\"H4428\"* Abishag the|strong=\"H8334\"* Shunammite|strong=\"H7767\"* was|strong=\"H4428\"* serving|strong=\"H8334\"* the|strong=\"H8334\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 16, + "text": "Bathsheba|strong=\"H1339\"* bowed|strong=\"H7812\"* and|strong=\"H4428\"* showed respect to|strong=\"H4428\"* the|strong=\"H7812\"* king|strong=\"H4428\"*. The|strong=\"H7812\"* king|strong=\"H4428\"* said, “What|strong=\"H4100\"* would|strong=\"H4100\"* you|strong=\"H4100\"* like?”" + }, + { + "verseNum": 17, + "text": "She|strong=\"H1931\"* said to|strong=\"H3068\"* him|strong=\"H5921\"*, “My|strong=\"H3068\"* lord|strong=\"H3068\"*, you|strong=\"H3588\"* swore|strong=\"H7650\"* by|strong=\"H5921\"* Yahweh|strong=\"H3068\"*+ 1:17 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. * your|strong=\"H3068\"* God|strong=\"H3068\"*+ 1:17 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* to|strong=\"H3068\"* your|strong=\"H3068\"* servant, ‘Assuredly|strong=\"H3588\"* Solomon|strong=\"H8010\"* your|strong=\"H3068\"* son|strong=\"H1121\"* shall|strong=\"H3068\"* reign|strong=\"H4427\"* after|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* shall|strong=\"H3068\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* my|strong=\"H3068\"* throne|strong=\"H3678\"*.’" + }, + { + "verseNum": 18, + "text": "Now|strong=\"H6258\"*, behold|strong=\"H2009\"*, Adonijah reigns|strong=\"H4427\"*; and|strong=\"H4428\"* you|strong=\"H3045\"*, my|strong=\"H3045\"* lord the|strong=\"H3045\"* king|strong=\"H4428\"*, don’t know|strong=\"H3045\"* it|strong=\"H3045\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3605\"* has|strong=\"H6635\"* slain|strong=\"H2076\"* cattle|strong=\"H6629\"* and|strong=\"H1121\"* fatlings|strong=\"H4806\"* and|strong=\"H1121\"* sheep|strong=\"H6629\"* in|strong=\"H4428\"* abundance|strong=\"H7230\"*, and|strong=\"H1121\"* has|strong=\"H6635\"* called|strong=\"H7121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, Abiathar the|strong=\"H3605\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* Joab|strong=\"H3097\"* the|strong=\"H3605\"* captain|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* army|strong=\"H6635\"*; but|strong=\"H3808\"* he|strong=\"H3605\"* hasn’t called|strong=\"H7121\"* Solomon|strong=\"H8010\"* your|strong=\"H3605\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H3605\"*, my|strong=\"H3605\"* lord the|strong=\"H3605\"* king|strong=\"H4428\"*, the|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H4428\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* are|strong=\"H3478\"* on|strong=\"H5921\"* you|strong=\"H3605\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* should|strong=\"H3478\"* tell|strong=\"H5046\"* them|strong=\"H5921\"* who|strong=\"H4310\"* will|strong=\"H4310\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H3605\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* my|strong=\"H3605\"* lord the|strong=\"H3605\"* king|strong=\"H4428\"* after|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "Otherwise it|strong=\"H1961\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, when|strong=\"H1961\"* my|strong=\"H1961\"* lord the|strong=\"H1961\"* king|strong=\"H4428\"* sleeps|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1961\"* fathers, that|strong=\"H4428\"* I|strong=\"H1121\"* and|strong=\"H1121\"* my|strong=\"H1961\"* son|strong=\"H1121\"* Solomon|strong=\"H8010\"* will|strong=\"H1961\"* be|strong=\"H1961\"* considered|strong=\"H1961\"* criminals|strong=\"H2400\"*.”" + }, + { + "verseNum": 22, + "text": "Behold|strong=\"H2009\"*, while|strong=\"H5750\"* she|strong=\"H5973\"* was|strong=\"H4428\"* still|strong=\"H5750\"* talking|strong=\"H1696\"* with|strong=\"H5973\"* the|strong=\"H1696\"* king|strong=\"H4428\"*, Nathan|strong=\"H5416\"* the|strong=\"H1696\"* prophet|strong=\"H5030\"* came|strong=\"H4428\"* in|strong=\"H4428\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H5921\"* told|strong=\"H5046\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, saying, “Behold|strong=\"H2009\"*, Nathan|strong=\"H5416\"* the|strong=\"H6440\"* prophet|strong=\"H5030\"*!”" + }, + { + "verseNum": 24, + "text": "Nathan|strong=\"H5416\"* said, “My|strong=\"H5921\"* lord, King|strong=\"H4428\"*, have|strong=\"H4428\"* you|strong=\"H5921\"* said, ‘Adonijah shall|strong=\"H4428\"* reign|strong=\"H4427\"* after|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H4428\"* he|strong=\"H1931\"* shall|strong=\"H4428\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* my|strong=\"H5921\"* throne|strong=\"H3678\"*’?" + }, + { + "verseNum": 25, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H6635\"* gone|strong=\"H3381\"* down|strong=\"H3381\"* today|strong=\"H3117\"*, and|strong=\"H1121\"* has|strong=\"H6635\"* slain|strong=\"H2076\"* cattle|strong=\"H6629\"*, fatlings|strong=\"H4806\"*, and|strong=\"H1121\"* sheep|strong=\"H6629\"* in|strong=\"H4428\"* abundance|strong=\"H7230\"*, and|strong=\"H1121\"* has|strong=\"H6635\"* called|strong=\"H7121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"*, the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* army|strong=\"H6635\"*, and|strong=\"H1121\"* Abiathar the|strong=\"H3605\"* priest|strong=\"H3548\"*. Behold|strong=\"H2009\"*, they|strong=\"H3588\"* are|strong=\"H3117\"* eating and|strong=\"H1121\"* drinking|strong=\"H8354\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H1121\"* saying, ‘Long|strong=\"H3117\"* live|strong=\"H2421\"* King|strong=\"H4428\"* Adonijah!’" + }, + { + "verseNum": 26, + "text": "But|strong=\"H3808\"* he|strong=\"H3808\"* hasn’t called|strong=\"H7121\"* me|strong=\"H7121\"*, even|strong=\"H3808\"* me|strong=\"H7121\"* your|strong=\"H3808\"* servant|strong=\"H5650\"*, Zadok|strong=\"H6659\"* the|strong=\"H7121\"* priest|strong=\"H3548\"*, Benaiah|strong=\"H1141\"* the|strong=\"H7121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"*, and|strong=\"H1121\"* your|strong=\"H3808\"* servant|strong=\"H5650\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 27, + "text": "Was|strong=\"H1961\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* done|strong=\"H1961\"* by|strong=\"H5921\"* my|strong=\"H5921\"* lord the|strong=\"H5921\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* you|strong=\"H5921\"* haven’t shown|strong=\"H3045\"* to|strong=\"H1961\"* your|strong=\"H5921\"* servants|strong=\"H5650\"* who|strong=\"H4310\"* should|strong=\"H4310\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* my|strong=\"H5921\"* lord the|strong=\"H5921\"* king|strong=\"H4428\"* after|strong=\"H5921\"* him|strong=\"H5921\"*?”" + }, + { + "verseNum": 28, + "text": "Then|strong=\"H6030\"* King|strong=\"H4428\"* David|strong=\"H1732\"* answered|strong=\"H6030\"*, “Call|strong=\"H7121\"* Bathsheba|strong=\"H1339\"* in|strong=\"H4428\"* to|strong=\"H6440\"* me|strong=\"H6440\"*.” She|strong=\"H7121\"* came|strong=\"H4428\"* into the|strong=\"H6440\"* king|strong=\"H4428\"*’s presence|strong=\"H6440\"* and|strong=\"H6030\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* vowed|strong=\"H7650\"* and|strong=\"H3068\"* said, “As|strong=\"H5315\"* Yahweh|strong=\"H3068\"* lives|strong=\"H5315\"*, who|strong=\"H3605\"* has|strong=\"H3068\"* redeemed|strong=\"H6299\"* my|strong=\"H3605\"* soul|strong=\"H5315\"* out|strong=\"H3605\"* of|strong=\"H4428\"* all|strong=\"H3605\"* adversity|strong=\"H6869\"*," + }, + { + "verseNum": 30, + "text": "most|strong=\"H3068\"* certainly|strong=\"H3588\"* as|strong=\"H3117\"* I|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H3478\"* you|strong=\"H3588\"* by|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying, ‘Assuredly|strong=\"H3588\"* Solomon|strong=\"H8010\"* your|strong=\"H3068\"* son|strong=\"H1121\"* shall|strong=\"H3068\"* reign|strong=\"H4427\"* after|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* shall|strong=\"H3068\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* my|strong=\"H3068\"* throne|strong=\"H3678\"* in|strong=\"H3427\"* my|strong=\"H3068\"* place|strong=\"H8478\"*;’ I|strong=\"H3588\"* will|strong=\"H3068\"* most|strong=\"H3068\"* certainly|strong=\"H3588\"* do|strong=\"H6213\"* this|strong=\"H2088\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 31, + "text": "Then|strong=\"H4428\"* Bathsheba|strong=\"H1339\"* bowed|strong=\"H7812\"* with|strong=\"H4428\"* her face to|strong=\"H4428\"* the|strong=\"H7812\"* earth and|strong=\"H4428\"* showed respect to|strong=\"H4428\"* the|strong=\"H7812\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* said, “Let my|strong=\"H1732\"* lord King|strong=\"H4428\"* David|strong=\"H1732\"* live|strong=\"H2421\"* forever|strong=\"H5769\"*!”" + }, + { + "verseNum": 32, + "text": "King|strong=\"H4428\"* David|strong=\"H1732\"* said|strong=\"H7121\"*, “Call|strong=\"H7121\"* to|strong=\"H6440\"* me|strong=\"H6440\"* Zadok|strong=\"H6659\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*, Nathan|strong=\"H5416\"* the|strong=\"H6440\"* prophet|strong=\"H5030\"*, and|strong=\"H1121\"* Benaiah|strong=\"H1141\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"*.” They|strong=\"H6440\"* came|strong=\"H3548\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* said to|strong=\"H3381\"* them|strong=\"H5921\"*, “Take|strong=\"H3947\"* with|strong=\"H5973\"* you|strong=\"H5921\"* the|strong=\"H5921\"* servants|strong=\"H5650\"* of|strong=\"H1121\"* your|strong=\"H3947\"* lord, and|strong=\"H1121\"* cause|strong=\"H7392\"* Solomon|strong=\"H8010\"* my|strong=\"H3947\"* son|strong=\"H1121\"* to|strong=\"H3381\"* ride|strong=\"H7392\"* on|strong=\"H5921\"* my|strong=\"H3947\"* own|strong=\"H5973\"* mule|strong=\"H6506\"*, and|strong=\"H1121\"* bring|strong=\"H3947\"* him|strong=\"H5921\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Gihon|strong=\"H1521\"*." + }, + { + "verseNum": 34, + "text": "Let Zadok|strong=\"H6659\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* and|strong=\"H3478\"* Nathan|strong=\"H5416\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* anoint|strong=\"H4886\"* him|strong=\"H5921\"* there|strong=\"H8033\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*. Blow|strong=\"H8628\"* the|strong=\"H5921\"* trumpet|strong=\"H7782\"*, and|strong=\"H3478\"* say|strong=\"H3478\"*, ‘Long|strong=\"H5921\"* live|strong=\"H2421\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*!’" + }, + { + "verseNum": 35, + "text": "Then|strong=\"H1961\"* come|strong=\"H5927\"* up|strong=\"H5927\"* after|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3063\"* he|strong=\"H1931\"* shall|strong=\"H3478\"* come|strong=\"H5927\"* and|strong=\"H3063\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* my|strong=\"H5921\"* throne|strong=\"H3678\"*; for|strong=\"H5921\"* he|strong=\"H1931\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* king|strong=\"H4427\"* in|strong=\"H3427\"* my|strong=\"H5921\"* place|strong=\"H8478\"*. I|strong=\"H5921\"* have|strong=\"H1961\"* appointed|strong=\"H6680\"* him|strong=\"H5921\"* to|strong=\"H3478\"* be|strong=\"H1961\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* over|strong=\"H5921\"* Judah|strong=\"H3063\"*.”" + }, + { + "verseNum": 36, + "text": "Benaiah|strong=\"H1141\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* answered|strong=\"H6030\"* the|strong=\"H3068\"* king|strong=\"H4428\"*, and|strong=\"H1121\"* said|strong=\"H6030\"*, “Amen. May|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H1121\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* the|strong=\"H3068\"* king|strong=\"H4428\"*, say so|strong=\"H3651\"*." + }, + { + "verseNum": 37, + "text": "As|strong=\"H1961\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* been|strong=\"H1961\"* with|strong=\"H5973\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* the|strong=\"H3068\"* king|strong=\"H4428\"*, even|strong=\"H3651\"* so|strong=\"H3651\"* may|strong=\"H1961\"* he|strong=\"H3651\"* be|strong=\"H1961\"* with|strong=\"H5973\"* Solomon|strong=\"H8010\"*, and|strong=\"H3068\"* make|strong=\"H1431\"* his|strong=\"H3068\"* throne|strong=\"H3678\"* greater|strong=\"H1431\"* than|strong=\"H4428\"* the|strong=\"H3068\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* King|strong=\"H4428\"* David|strong=\"H1732\"*.”" + }, + { + "verseNum": 38, + "text": "So|strong=\"H3381\"* Zadok|strong=\"H6659\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*, Nathan|strong=\"H5416\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"*, Benaiah|strong=\"H1141\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* Cherethites and|strong=\"H1121\"* the|strong=\"H5921\"* Pelethites|strong=\"H6432\"* went|strong=\"H3212\"* down|strong=\"H3381\"* and|strong=\"H1121\"* had|strong=\"H1732\"* Solomon|strong=\"H8010\"* ride|strong=\"H7392\"* on|strong=\"H5921\"* King|strong=\"H4428\"* David|strong=\"H1732\"*’s mule|strong=\"H6506\"*, and|strong=\"H1121\"* brought|strong=\"H3381\"* him|strong=\"H5921\"* to|strong=\"H3381\"* Gihon|strong=\"H1521\"*." + }, + { + "verseNum": 39, + "text": "Zadok|strong=\"H6659\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* took|strong=\"H3947\"* the|strong=\"H3605\"* horn|strong=\"H7161\"* of|strong=\"H4428\"* oil|strong=\"H8081\"* from|strong=\"H4480\"* the|strong=\"H3605\"* Tent, and|strong=\"H4428\"* anointed|strong=\"H4886\"* Solomon|strong=\"H8010\"*. They|strong=\"H5971\"* blew|strong=\"H8628\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"*; and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* said, “Long|strong=\"H3605\"* live|strong=\"H2421\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*!”" + }, + { + "verseNum": 40, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* came|strong=\"H5927\"* up|strong=\"H5927\"* after|strong=\"H5927\"* him|strong=\"H6963\"*, and|strong=\"H1419\"* the|strong=\"H3605\"* people|strong=\"H5971\"* piped|strong=\"H2490\"* with|strong=\"H5971\"* pipes|strong=\"H2485\"*, and|strong=\"H1419\"* rejoiced|strong=\"H8056\"* with|strong=\"H5971\"* great|strong=\"H1419\"* joy|strong=\"H8057\"*, so|strong=\"H5927\"* that|strong=\"H5971\"* the|strong=\"H3605\"* earth|strong=\"H5927\"* shook|strong=\"H1234\"* with|strong=\"H5971\"* their|strong=\"H3605\"* sound|strong=\"H6963\"*." + }, + { + "verseNum": 41, + "text": "Adonijah and|strong=\"H6963\"* all|strong=\"H3605\"* the|strong=\"H3605\"* guests|strong=\"H7121\"* who|strong=\"H3605\"* were|strong=\"H1992\"* with|strong=\"H8085\"* him|strong=\"H7121\"* heard|strong=\"H8085\"* it|strong=\"H7121\"* as|strong=\"H1992\"* they|strong=\"H1992\"* had|strong=\"H3097\"* finished|strong=\"H3615\"* eating. When|strong=\"H8085\"* Joab|strong=\"H3097\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"*, he|strong=\"H3605\"* said|strong=\"H7121\"*, “Why|strong=\"H4069\"* is|strong=\"H3605\"* this|strong=\"H7121\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H3605\"* city|strong=\"H7151\"* being in|strong=\"H8085\"* an|strong=\"H7121\"* uproar|strong=\"H1993\"*?”" + }, + { + "verseNum": 42, + "text": "While|strong=\"H5750\"* he|strong=\"H3588\"* yet|strong=\"H5750\"* spoke|strong=\"H1696\"*, behold|strong=\"H2009\"*, Jonathan|strong=\"H3129\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abiathar the|strong=\"H3588\"* priest|strong=\"H3548\"* came|strong=\"H3548\"*; and|strong=\"H1121\"* Adonijah said|strong=\"H1696\"*, “Come|strong=\"H5750\"* in|strong=\"H1696\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1121\"* a|strong=\"H3068\"* worthy|strong=\"H1121\"* man|strong=\"H1121\"*, and|strong=\"H1121\"* bring|strong=\"H1319\"* good|strong=\"H2896\"* news|strong=\"H1319\"*.”" + }, + { + "verseNum": 43, + "text": "Jonathan|strong=\"H3129\"* answered|strong=\"H6030\"* Adonijah, “Most|strong=\"H4428\"* certainly our|strong=\"H1732\"* lord King|strong=\"H4428\"* David|strong=\"H1732\"* has|strong=\"H4428\"* made|strong=\"H4427\"* Solomon|strong=\"H8010\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 44, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* has|strong=\"H4428\"* sent|strong=\"H7971\"* with|strong=\"H5921\"* him|strong=\"H5921\"* Zadok|strong=\"H6659\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*, Nathan|strong=\"H5416\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"*, Benaiah|strong=\"H1141\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* Cherethites|strong=\"H3774\"* and|strong=\"H1121\"* the|strong=\"H5921\"* Pelethites|strong=\"H6432\"*; and|strong=\"H1121\"* they|strong=\"H5921\"* have|strong=\"H1121\"* caused him|strong=\"H5921\"* to|strong=\"H7971\"* ride|strong=\"H7392\"* on|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s mule|strong=\"H6506\"*." + }, + { + "verseNum": 45, + "text": "Zadok|strong=\"H6659\"* the|strong=\"H8085\"* priest|strong=\"H3548\"* and|strong=\"H4428\"* Nathan|strong=\"H5416\"* the|strong=\"H8085\"* prophet|strong=\"H5030\"* have|strong=\"H5030\"* anointed|strong=\"H4886\"* him|strong=\"H6963\"* king|strong=\"H4428\"* in|strong=\"H4428\"* Gihon|strong=\"H1521\"*. They|strong=\"H8033\"* have|strong=\"H5030\"* come|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* there|strong=\"H8033\"* rejoicing|strong=\"H8056\"*, so|strong=\"H5927\"* that|strong=\"H8085\"* the|strong=\"H8085\"* city|strong=\"H7151\"* rang|strong=\"H7151\"* again|strong=\"H1949\"*. This|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* that|strong=\"H8085\"* you|strong=\"H4886\"* have|strong=\"H5030\"* heard|strong=\"H8085\"*." + }, + { + "verseNum": 46, + "text": "Also|strong=\"H1571\"*, Solomon|strong=\"H8010\"* sits|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H3427\"* the|strong=\"H5921\"* kingdom|strong=\"H4410\"*." + }, + { + "verseNum": 47, + "text": "Moreover|strong=\"H1571\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s servants|strong=\"H5650\"* came|strong=\"H5650\"* to|strong=\"H5921\"* bless|strong=\"H1288\"* our|strong=\"H5921\"* lord King|strong=\"H4428\"* David|strong=\"H1732\"*, saying, ‘May|strong=\"H4428\"* your|strong=\"H5921\"* God|strong=\"H3190\"* make|strong=\"H1431\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H4428\"* Solomon|strong=\"H8010\"* better|strong=\"H3190\"* than|strong=\"H5921\"* your|strong=\"H5921\"* name|strong=\"H8034\"*, and|strong=\"H4428\"* make|strong=\"H1431\"* his|strong=\"H1732\"* throne|strong=\"H3678\"* greater|strong=\"H1431\"* than|strong=\"H5921\"* your|strong=\"H5921\"* throne|strong=\"H3678\"*;’ and|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bed|strong=\"H4904\"*." + }, + { + "verseNum": 48, + "text": "Also|strong=\"H1571\"* thus|strong=\"H3602\"* said the|strong=\"H5921\"* king|strong=\"H4428\"*, ‘Blessed|strong=\"H1288\"* be|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, who|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* one|strong=\"H7200\"* to|strong=\"H3478\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* my|strong=\"H5414\"* throne|strong=\"H3678\"* today|strong=\"H3117\"*, my|strong=\"H5414\"* eyes|strong=\"H5869\"* even|strong=\"H1571\"* seeing|strong=\"H7200\"* it|strong=\"H5414\"*.’”" + }, + { + "verseNum": 49, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* guests|strong=\"H7121\"* of|strong=\"H1870\"* Adonijah were|strong=\"H1870\"* afraid|strong=\"H2729\"*, and|strong=\"H6965\"* rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H6965\"* each|strong=\"H3605\"* man|strong=\"H3605\"* went|strong=\"H3212\"* his|strong=\"H3605\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 50, + "text": "Adonijah was|strong=\"H8010\"* afraid|strong=\"H3372\"* because|strong=\"H6440\"* of|strong=\"H6440\"* Solomon|strong=\"H8010\"*; and|strong=\"H6965\"* he|strong=\"H8010\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3212\"*, and|strong=\"H6965\"* hung onto the|strong=\"H6440\"* horns|strong=\"H7161\"* of|strong=\"H6440\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 51, + "text": "Solomon|strong=\"H8010\"* was|strong=\"H3117\"* told|strong=\"H5046\"*, “Behold|strong=\"H2009\"*, Adonijah fears|strong=\"H3372\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*; for|strong=\"H4196\"*, behold|strong=\"H2009\"*, he|strong=\"H3117\"* is|strong=\"H3117\"* hanging onto the|strong=\"H3117\"* horns|strong=\"H7161\"* of|strong=\"H4428\"* the|strong=\"H3117\"* altar|strong=\"H4196\"*, saying, ‘Let|strong=\"H5046\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* swear|strong=\"H7650\"* to|strong=\"H4191\"* me|strong=\"H5046\"* first|strong=\"H3117\"* that|strong=\"H3117\"* he|strong=\"H3117\"* will|strong=\"H4428\"* not|strong=\"H3372\"* kill|strong=\"H4191\"* his|strong=\"H5046\"* servant|strong=\"H5650\"* with|strong=\"H3117\"* the|strong=\"H3117\"* sword|strong=\"H2719\"*.’”" + }, + { + "verseNum": 52, + "text": "Solomon|strong=\"H8010\"* said, “If|strong=\"H1961\"* he|strong=\"H3808\"* shows himself|strong=\"H5307\"* a|strong=\"H3068\"* worthy|strong=\"H1121\"* man|strong=\"H1121\"*, not|strong=\"H3808\"* a|strong=\"H3068\"* hair|strong=\"H8185\"* of|strong=\"H1121\"* his|strong=\"H1961\"* shall|strong=\"H1121\"* fall|strong=\"H5307\"* to|strong=\"H4191\"* the|strong=\"H1961\"* earth; but|strong=\"H3808\"* if|strong=\"H1961\"* wickedness|strong=\"H7451\"* is|strong=\"H7451\"* found|strong=\"H4672\"* in|strong=\"H4191\"* him|strong=\"H4672\"*, he|strong=\"H3808\"* shall|strong=\"H1121\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 53, + "text": "So|strong=\"H7971\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* sent|strong=\"H7971\"*, and|strong=\"H7971\"* they|strong=\"H5921\"* brought|strong=\"H3381\"* him|strong=\"H5921\"* down|strong=\"H3381\"* from|strong=\"H3381\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*. He|strong=\"H1004\"* came|strong=\"H3381\"* and|strong=\"H7971\"* bowed|strong=\"H7812\"* down|strong=\"H3381\"* to|strong=\"H3381\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*; and|strong=\"H7971\"* Solomon|strong=\"H8010\"* said to|strong=\"H3381\"* him|strong=\"H5921\"*, “Go|strong=\"H3212\"* to|strong=\"H3381\"* your|strong=\"H5921\"* house|strong=\"H1004\"*.”" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H1121\"* David|strong=\"H1732\"* came|strong=\"H7126\"* near|strong=\"H7126\"* that|strong=\"H3117\"* he|strong=\"H3117\"* should|strong=\"H3117\"* die|strong=\"H4191\"*; and|strong=\"H1121\"* he|strong=\"H3117\"* commanded|strong=\"H6680\"* Solomon|strong=\"H8010\"* his|strong=\"H1732\"* son|strong=\"H1121\"*, saying," + }, + { + "verseNum": 2, + "text": "“I|strong=\"H1980\"* am|strong=\"H1961\"* going|strong=\"H1980\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H1870\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth. You|strong=\"H3605\"* be|strong=\"H1961\"* strong|strong=\"H2388\"* therefore|strong=\"H1961\"*, and|strong=\"H1980\"* show|strong=\"H2388\"* yourself a|strong=\"H3068\"* man|strong=\"H3605\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H4872\"* keep|strong=\"H8104\"* the|strong=\"H3605\"* instruction|strong=\"H8451\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, to|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* statutes|strong=\"H2708\"*, his|strong=\"H3605\"* commandments|strong=\"H4687\"*, his|strong=\"H3605\"* ordinances|strong=\"H4941\"*, and|strong=\"H4872\"* his|strong=\"H3605\"* testimonies|strong=\"H5715\"*, according|strong=\"H4941\"* to|strong=\"H3068\"* that|strong=\"H3605\"* which|strong=\"H3068\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H3068\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H3068\"* Moses|strong=\"H4872\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H3068\"* prosper|strong=\"H7919\"* in|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* do|strong=\"H6213\"* and|strong=\"H4872\"* wherever|strong=\"H3605\"* you|strong=\"H3605\"* turn|strong=\"H6437\"* yourself|strong=\"H6213\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H6965\"* Yahweh|strong=\"H3068\"* may|strong=\"H3068\"* establish|strong=\"H6965\"* his|strong=\"H3605\"* word|strong=\"H1697\"* which|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"* concerning|strong=\"H5921\"* me|strong=\"H6440\"*, saying|strong=\"H1697\"*, ‘If|strong=\"H1121\"* your|strong=\"H3068\"* children|strong=\"H1121\"* are|strong=\"H1121\"* careful|strong=\"H8104\"* of|strong=\"H1121\"* their|strong=\"H3605\"* way|strong=\"H1870\"*, to|strong=\"H1696\"* walk|strong=\"H3212\"* before|strong=\"H6440\"* me|strong=\"H6440\"* in|strong=\"H5921\"* truth|strong=\"H3808\"* with|strong=\"H3068\"* all|strong=\"H3605\"* their|strong=\"H3605\"* heart|strong=\"H3824\"* and|strong=\"H1121\"* with|strong=\"H3068\"* all|strong=\"H3605\"* their|strong=\"H3605\"* soul|strong=\"H5315\"*, there|strong=\"H3605\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* fail|strong=\"H3772\"* you|strong=\"H6440\"*,’ he|strong=\"H3068\"* said|strong=\"H1696\"*, ‘a|strong=\"H3068\"* man|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H3605\"* throne|strong=\"H3678\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.’" + }, + { + "verseNum": 5, + "text": "“Moreover|strong=\"H1571\"* you|strong=\"H5414\"* know|strong=\"H3045\"* also|strong=\"H1571\"* what|strong=\"H3045\"* Joab|strong=\"H3097\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* did|strong=\"H6213\"* to|strong=\"H3478\"* me|strong=\"H5414\"*, even|strong=\"H1571\"* what|strong=\"H3045\"* he|strong=\"H6213\"* did|strong=\"H6213\"* to|strong=\"H3478\"* the|strong=\"H5414\"* two|strong=\"H8147\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H5414\"* armies|strong=\"H6635\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* Abner the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"* and|strong=\"H1121\"* to|strong=\"H3478\"* Amasa|strong=\"H6021\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jether|strong=\"H3500\"*, whom he|strong=\"H6213\"* killed|strong=\"H2026\"*, and|strong=\"H1121\"* shed|strong=\"H7760\"* the|strong=\"H5414\"* blood|strong=\"H1818\"* of|strong=\"H1121\"* war|strong=\"H4421\"* in|strong=\"H3478\"* peace|strong=\"H7965\"*, and|strong=\"H1121\"* put|strong=\"H5414\"* the|strong=\"H5414\"* blood|strong=\"H1818\"* of|strong=\"H1121\"* war|strong=\"H4421\"* on|strong=\"H7760\"* his|strong=\"H5414\"* sash that|strong=\"H3045\"* was|strong=\"H3478\"* around his|strong=\"H5414\"* waist|strong=\"H4975\"* and|strong=\"H1121\"* in|strong=\"H3478\"* his|strong=\"H5414\"* sandals|strong=\"H5275\"* that|strong=\"H3045\"* were|strong=\"H3478\"* on|strong=\"H7760\"* his|strong=\"H5414\"* feet|strong=\"H7272\"*." + }, + { + "verseNum": 6, + "text": "Do|strong=\"H6213\"* therefore|strong=\"H6213\"* according to|strong=\"H3381\"* your|strong=\"H6213\"* wisdom|strong=\"H2451\"*, and|strong=\"H2451\"* don’t let|strong=\"H3381\"* his|strong=\"H6213\"* gray|strong=\"H7872\"* head|strong=\"H7872\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*+ 2:6 Sheol is the place of the dead.* in|strong=\"H6213\"* peace|strong=\"H7965\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"H3588\"* show|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H1961\"* the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Barzillai|strong=\"H1271\"* the|strong=\"H6440\"* Gileadite|strong=\"H1569\"*, and|strong=\"H1121\"* let|strong=\"H3651\"* them|strong=\"H6440\"* be|strong=\"H1961\"* among those|strong=\"H1121\"* who|strong=\"H1121\"* eat at|strong=\"H6213\"* your|strong=\"H6440\"* table|strong=\"H7979\"*; for|strong=\"H3588\"* so|strong=\"H3651\"* they|strong=\"H3588\"* came|strong=\"H1961\"* to|strong=\"H1961\"* me|strong=\"H6440\"* when|strong=\"H3588\"* I|strong=\"H3588\"* fled|strong=\"H1272\"* from|strong=\"H6440\"* Absalom your|strong=\"H6440\"* brother." + }, + { + "verseNum": 8, + "text": "“Behold|strong=\"H2009\"*, there|strong=\"H2009\"* is|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3117\"* Shimei|strong=\"H8096\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gera|strong=\"H1617\"*, the|strong=\"H3068\"* Benjamite|strong=\"H1145\"* of|strong=\"H1121\"* Bahurim, who|strong=\"H1931\"* cursed|strong=\"H7043\"* me|strong=\"H5973\"* with|strong=\"H5973\"* a|strong=\"H3068\"* grievous|strong=\"H4834\"* curse|strong=\"H7045\"* in|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* when|strong=\"H3117\"* I|strong=\"H3117\"* went|strong=\"H3212\"* to|strong=\"H3381\"* Mahanaim|strong=\"H4266\"*; but|strong=\"H2009\"* he|strong=\"H1931\"* came|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* meet|strong=\"H7125\"* me|strong=\"H5973\"* at|strong=\"H3068\"* the|strong=\"H3068\"* Jordan|strong=\"H3383\"*, and|strong=\"H1121\"* I|strong=\"H3117\"* swore|strong=\"H7650\"* to|strong=\"H3381\"* him|strong=\"H5973\"* by|strong=\"H7650\"* Yahweh|strong=\"H3068\"*, saying, ‘I|strong=\"H3117\"* will|strong=\"H3068\"* not|strong=\"H4191\"* put|strong=\"H4191\"* you|strong=\"H3117\"* to|strong=\"H3381\"* death|strong=\"H4191\"* with|strong=\"H5973\"* the|strong=\"H3068\"* sword|strong=\"H2719\"*.’" + }, + { + "verseNum": 9, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* don’t hold|strong=\"H6213\"* him|strong=\"H6213\"* guiltless|strong=\"H5352\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H2450\"* a|strong=\"H3068\"* wise|strong=\"H2450\"* man|strong=\"H2450\"*; and|strong=\"H1818\"* you|strong=\"H3588\"* will|strong=\"H2450\"* know|strong=\"H3045\"* what|strong=\"H3045\"* you|strong=\"H3588\"* ought to|strong=\"H3381\"* do|strong=\"H6213\"* to|strong=\"H3381\"* him|strong=\"H6213\"*, and|strong=\"H1818\"* you|strong=\"H3588\"* shall|strong=\"H1818\"* bring|strong=\"H3381\"* his|strong=\"H3045\"* gray|strong=\"H7872\"* head|strong=\"H7872\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*+ 2:9 Sheol is the place of the dead.* with|strong=\"H6213\"* blood|strong=\"H1818\"*.”" + }, + { + "verseNum": 10, + "text": "David|strong=\"H1732\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H5892\"* was|strong=\"H1732\"* buried|strong=\"H6912\"* in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* days|strong=\"H3117\"* that|strong=\"H3117\"* David|strong=\"H1732\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* forty years|strong=\"H8141\"*; he|strong=\"H3117\"* reigned|strong=\"H4427\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Hebron|strong=\"H2275\"*, and|strong=\"H3478\"* he|strong=\"H3117\"* reigned|strong=\"H4427\"* thirty-three|strong=\"H7970\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 12, + "text": "Solomon|strong=\"H8010\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* David|strong=\"H1732\"* his|strong=\"H1732\"* father’s throne|strong=\"H3678\"*; and|strong=\"H4428\"* his|strong=\"H1732\"* kingdom|strong=\"H4428\"* was|strong=\"H1732\"* firmly|strong=\"H3559\"* established|strong=\"H3559\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H8010\"* Adonijah the|strong=\"H8010\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Haggith|strong=\"H2294\"* came to|strong=\"H1121\"* Bathsheba|strong=\"H1339\"* the|strong=\"H8010\"* mother of|strong=\"H1121\"* Solomon|strong=\"H8010\"*. She said, “Do you come peaceably|strong=\"H7965\"*?”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H1696\"* said|strong=\"H1696\"* moreover|strong=\"H1696\"*, I|strong=\"H1697\"* have|strong=\"H1697\"* something|strong=\"H1697\"* to|strong=\"H1696\"* tell|strong=\"H1696\"* you|strong=\"H1696\"*.”" + }, + { + "verseNum": 15, + "text": "He|strong=\"H3588\"* said, “You|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3605\"* kingdom|strong=\"H4410\"* was|strong=\"H3068\"* mine|strong=\"H7760\"*, and|strong=\"H3478\"* that|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* set|strong=\"H7760\"* their|strong=\"H3605\"* faces|strong=\"H6440\"* on|strong=\"H5921\"* me|strong=\"H6440\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3068\"* reign|strong=\"H4427\"*. However|strong=\"H3588\"*, the|strong=\"H3605\"* kingdom|strong=\"H4410\"* is|strong=\"H3068\"* turned|strong=\"H5437\"* around|strong=\"H5437\"*, and|strong=\"H3478\"* has|strong=\"H3068\"* become|strong=\"H1961\"* my|strong=\"H3605\"* brother’s; for|strong=\"H3588\"* it|strong=\"H7760\"* was|strong=\"H3068\"* his|strong=\"H3605\"* from|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "Now|strong=\"H6258\"* I|strong=\"H6258\"* ask|strong=\"H7592\"* one|strong=\"H7596\"* petition|strong=\"H7596\"* of|strong=\"H6440\"* you|strong=\"H6440\"*. Don’t deny|strong=\"H7725\"* me|strong=\"H6440\"*.”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H3588\"* said, “Please|strong=\"H4994\"* speak to|strong=\"H7725\"* Solomon|strong=\"H8010\"* the|strong=\"H6440\"* king|strong=\"H4428\"* (for|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H4428\"* not|strong=\"H3808\"* tell|strong=\"H4994\"* you|strong=\"H3588\"* ‘no|strong=\"H3808\"*’), that|strong=\"H3588\"* he|strong=\"H3588\"* give|strong=\"H5414\"* me|strong=\"H5414\"* Abishag the|strong=\"H6440\"* Shunammite|strong=\"H7767\"* as|strong=\"H3588\"* wife.”" + }, + { + "verseNum": 18, + "text": "Bathsheba|strong=\"H1339\"* said|strong=\"H1696\"*, “All|strong=\"H5921\"* right|strong=\"H1696\"*. I|strong=\"H5921\"* will|strong=\"H4428\"* speak|strong=\"H1696\"* for|strong=\"H5921\"* you|strong=\"H5921\"* to|strong=\"H1696\"* the|strong=\"H5921\"* king|strong=\"H4428\"*.”" + }, + { + "verseNum": 19, + "text": "Bathsheba|strong=\"H1339\"* therefore|strong=\"H5921\"* went|strong=\"H4428\"* to|strong=\"H1696\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*, to|strong=\"H1696\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"* for|strong=\"H5921\"* Adonijah. The|strong=\"H5921\"* king|strong=\"H4428\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H1696\"* meet|strong=\"H7125\"* her|strong=\"H5921\"* and|strong=\"H6965\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* to|strong=\"H1696\"* her|strong=\"H5921\"*, and|strong=\"H6965\"* sat|strong=\"H3427\"* down|strong=\"H7812\"* on|strong=\"H5921\"* his|strong=\"H7760\"* throne|strong=\"H3678\"* and|strong=\"H6965\"* caused|strong=\"H6965\"* a|strong=\"H3068\"* throne|strong=\"H3678\"* to|strong=\"H1696\"* be|strong=\"H4428\"* set|strong=\"H7760\"* for|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s mother; and|strong=\"H6965\"* she|strong=\"H5921\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H7760\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*." + }, + { + "verseNum": 20, + "text": "Then|strong=\"H7725\"* she|strong=\"H3588\"* said, “I|strong=\"H3588\"* ask|strong=\"H7592\"* one|strong=\"H3808\"* small|strong=\"H6996\"* petition|strong=\"H7596\"* of|strong=\"H4428\"* you|strong=\"H3588\"*; don’t deny|strong=\"H7725\"* me|strong=\"H6440\"*.”" + }, + { + "verseNum": 21, + "text": "She said, “Let|strong=\"H5414\"* Abishag the|strong=\"H5414\"* Shunammite|strong=\"H7767\"* be|strong=\"H5414\"* given|strong=\"H5414\"* to|strong=\"H5414\"* Adonijah your|strong=\"H5414\"* brother as|strong=\"H5414\"* wife.”" + }, + { + "verseNum": 22, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* answered|strong=\"H6030\"* his|strong=\"H8010\"* mother, “Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3588\"* ask|strong=\"H7592\"* Abishag the|strong=\"H3588\"* Shunammite|strong=\"H7767\"* for|strong=\"H3588\"* Adonijah? Ask|strong=\"H7592\"* for|strong=\"H3588\"* him|strong=\"H1931\"* the|strong=\"H3588\"* kingdom|strong=\"H4410\"* also|strong=\"H4428\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* my|strong=\"H3588\"* elder|strong=\"H1419\"* brother; even|strong=\"H3588\"* for|strong=\"H3588\"* him|strong=\"H1931\"*, and|strong=\"H1121\"* for|strong=\"H3588\"* Abiathar the|strong=\"H3588\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* for|strong=\"H3588\"* Joab|strong=\"H3097\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"*.”" + }, + { + "verseNum": 23, + "text": "Then|strong=\"H1696\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* swore|strong=\"H7650\"* by|strong=\"H7650\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1697\"*, “God|strong=\"H3068\"* do|strong=\"H6213\"* so|strong=\"H6213\"* to|strong=\"H1696\"* me|strong=\"H5315\"*, and|strong=\"H3068\"* more|strong=\"H3254\"* also|strong=\"H3068\"*, if|strong=\"H3588\"* Adonijah has|strong=\"H3068\"* not|strong=\"H6213\"* spoken|strong=\"H1696\"* this|strong=\"H2088\"* word|strong=\"H1697\"* against|strong=\"H1696\"* his|strong=\"H3068\"* own|strong=\"H5315\"* life|strong=\"H5315\"*." + }, + { + "verseNum": 24, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* as|strong=\"H3117\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, who|strong=\"H3068\"* has|strong=\"H3068\"* established|strong=\"H3559\"* me|strong=\"H5921\"* and|strong=\"H3068\"* set|strong=\"H3427\"* me|strong=\"H5921\"* on|strong=\"H5921\"* my|strong=\"H3068\"* father David|strong=\"H1732\"*’s throne|strong=\"H3678\"*, and|strong=\"H3068\"* who|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H6213\"* me|strong=\"H5921\"* a|strong=\"H3068\"* house|strong=\"H1004\"* as|strong=\"H3117\"* he|strong=\"H3588\"* promised|strong=\"H1696\"*, surely|strong=\"H4191\"* Adonijah shall|strong=\"H3068\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H1696\"* death|strong=\"H4191\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 25, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* sent|strong=\"H7971\"* Benaiah|strong=\"H1141\"* the|strong=\"H7971\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"*; and|strong=\"H1121\"* he|strong=\"H3027\"* fell|strong=\"H6293\"* on|strong=\"H3027\"* him|strong=\"H7971\"*, so|strong=\"H7971\"* that|strong=\"H4428\"* he|strong=\"H3027\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 26, + "text": "To|strong=\"H4191\"* Abiathar the|strong=\"H3605\"* priest|strong=\"H3548\"* the|strong=\"H3605\"* king|strong=\"H4428\"* said, “Go|strong=\"H3212\"* to|strong=\"H4191\"* Anathoth|strong=\"H6068\"*, to|strong=\"H4191\"* your|strong=\"H3605\"* own|strong=\"H3548\"* fields|strong=\"H7704\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3117\"* worthy of|strong=\"H4428\"* death|strong=\"H4194\"*. But|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H4428\"* not|strong=\"H3808\"* at|strong=\"H5921\"* this|strong=\"H2088\"* time|strong=\"H3117\"* put|strong=\"H4191\"* you|strong=\"H3588\"* to|strong=\"H4191\"* death|strong=\"H4194\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* bore|strong=\"H5375\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"*+ 2:26 The word translated “Lord” is “Adonai.”* Yahweh|strong=\"H3068\"*’s ark before|strong=\"H6440\"* David|strong=\"H1732\"* my|strong=\"H3605\"* father, and|strong=\"H4428\"* because|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H3117\"* afflicted|strong=\"H6031\"* in|strong=\"H5921\"* all|strong=\"H3605\"* in|strong=\"H5921\"* which|strong=\"H3548\"* my|strong=\"H3605\"* father was|strong=\"H1732\"* afflicted|strong=\"H6031\"*.”" + }, + { + "verseNum": 27, + "text": "So|strong=\"H1961\"* Solomon|strong=\"H8010\"* thrust|strong=\"H8010\"* Abiathar out|strong=\"H1644\"* from|strong=\"H5921\"* being|strong=\"H1961\"* priest|strong=\"H3548\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3068\"* he|strong=\"H3068\"* might|strong=\"H3068\"* fulfill|strong=\"H4390\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Eli|strong=\"H5941\"* in|strong=\"H5921\"* Shiloh|strong=\"H7887\"*." + }, + { + "verseNum": 28, + "text": "This|strong=\"H3588\"* news|strong=\"H8052\"* came|strong=\"H3068\"* to|strong=\"H5704\"* Joab|strong=\"H3097\"*; for|strong=\"H3588\"* Joab|strong=\"H3097\"* had|strong=\"H3068\"* followed|strong=\"H5186\"* Adonijah, although|strong=\"H3588\"* he|strong=\"H3588\"* didn’t follow|strong=\"H3068\"* Absalom. Joab|strong=\"H3097\"* fled|strong=\"H5127\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s Tent, and|strong=\"H3068\"* held|strong=\"H2388\"* onto the|strong=\"H3588\"* horns|strong=\"H7161\"* of|strong=\"H3068\"* the|strong=\"H3588\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 29, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* was|strong=\"H3068\"* told|strong=\"H5046\"*, “Joab|strong=\"H3097\"* has|strong=\"H3068\"* fled|strong=\"H5127\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s Tent; and|strong=\"H1121\"* behold|strong=\"H2009\"*, he|strong=\"H3588\"* is|strong=\"H3068\"* by|strong=\"H3068\"* the|strong=\"H3588\"* altar|strong=\"H4196\"*.” Then|strong=\"H2009\"* Solomon|strong=\"H8010\"* sent|strong=\"H7971\"* Benaiah|strong=\"H1141\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"*, saying, “Go|strong=\"H3212\"*, fall|strong=\"H6293\"* on|strong=\"H3068\"* him|strong=\"H7971\"*.”" + }, + { + "verseNum": 30, + "text": "Benaiah|strong=\"H1141\"* came|strong=\"H3318\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s Tent, and|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7725\"*, “The|strong=\"H3588\"* king|strong=\"H4428\"* says|strong=\"H3541\"*, ‘Come|strong=\"H3318\"* out|strong=\"H3318\"*!’”" + }, + { + "verseNum": 31, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*, “Do|strong=\"H6213\"* as|strong=\"H6213\"* he|strong=\"H6213\"* has|strong=\"H4428\"* said|strong=\"H1696\"*, and|strong=\"H4428\"* fall|strong=\"H6293\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H4428\"* bury|strong=\"H6912\"* him|strong=\"H5921\"*, that|strong=\"H4428\"* you|strong=\"H5921\"* may|strong=\"H4428\"* take|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*, which|strong=\"H1004\"* Joab|strong=\"H3097\"* shed|strong=\"H8210\"* without|strong=\"H2600\"* cause|strong=\"H2600\"*, from|strong=\"H5493\"* me|strong=\"H5921\"* and|strong=\"H4428\"* from|strong=\"H5493\"* my|strong=\"H5921\"* father’s house|strong=\"H1004\"*." + }, + { + "verseNum": 32, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* return|strong=\"H7725\"* his|strong=\"H3068\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* his|strong=\"H3068\"* own head|strong=\"H7218\"*, because|strong=\"H5921\"* he|strong=\"H3068\"* fell|strong=\"H6293\"* on|strong=\"H5921\"* two|strong=\"H8147\"* men|strong=\"H1121\"* more|strong=\"H4480\"* righteous|strong=\"H6662\"* and|strong=\"H1121\"* better|strong=\"H2896\"* than|strong=\"H4480\"* he|strong=\"H3068\"*, and|strong=\"H1121\"* killed|strong=\"H2026\"* them|strong=\"H5921\"* with|strong=\"H3068\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*, and|strong=\"H1121\"* my|strong=\"H3068\"* father|strong=\"H1121\"* David|strong=\"H1732\"* didn’t know|strong=\"H3045\"* it|strong=\"H5921\"*: Abner the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"*, captain|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* Amasa|strong=\"H6021\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jether|strong=\"H3500\"*, captain|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 33, + "text": "So|strong=\"H1961\"* their|strong=\"H3068\"* blood|strong=\"H1818\"* will|strong=\"H3068\"* return|strong=\"H7725\"* on|strong=\"H3068\"* the|strong=\"H3068\"* head|strong=\"H7218\"* of|strong=\"H1004\"* Joab|strong=\"H3097\"* and|strong=\"H3068\"* on|strong=\"H3068\"* the|strong=\"H3068\"* head|strong=\"H7218\"* of|strong=\"H1004\"* his|strong=\"H3068\"* offspring|strong=\"H2233\"*+ 2:33 or, seed* forever|strong=\"H5769\"*. But|strong=\"H1961\"* for|strong=\"H5704\"* David|strong=\"H1732\"*, for|strong=\"H5704\"* his|strong=\"H3068\"* offspring|strong=\"H2233\"*, for|strong=\"H5704\"* his|strong=\"H3068\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* for|strong=\"H5704\"* his|strong=\"H3068\"* throne|strong=\"H3678\"*, there|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* peace|strong=\"H7965\"* forever|strong=\"H5769\"* from|strong=\"H7725\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 34, + "text": "Then|strong=\"H5927\"* Benaiah|strong=\"H1141\"* the|strong=\"H5927\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* went|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H1121\"* fell|strong=\"H6293\"* on|strong=\"H5927\"* him|strong=\"H4191\"*, and|strong=\"H1121\"* killed|strong=\"H4191\"* him|strong=\"H4191\"*; and|strong=\"H1121\"* he|strong=\"H1004\"* was|strong=\"H1004\"* buried|strong=\"H6912\"* in|strong=\"H1004\"* his|strong=\"H6912\"* own house|strong=\"H1004\"* in|strong=\"H1004\"* the|strong=\"H5927\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* put|strong=\"H5414\"* Benaiah|strong=\"H1141\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* in|strong=\"H5921\"* his|strong=\"H5414\"* place|strong=\"H8478\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"*; and|strong=\"H1121\"* the|strong=\"H5921\"* king|strong=\"H4428\"* put|strong=\"H5414\"* Zadok|strong=\"H6659\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* in|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H8478\"* of|strong=\"H1121\"* Abiathar." + }, + { + "verseNum": 36, + "text": "The|strong=\"H1129\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* and|strong=\"H7971\"* called|strong=\"H7121\"* for|strong=\"H7121\"* Shimei|strong=\"H8096\"*, and|strong=\"H7971\"* said|strong=\"H7121\"* to|strong=\"H3318\"* him|strong=\"H7121\"*, “Build|strong=\"H1129\"* yourself|strong=\"H8033\"* a|strong=\"H3068\"* house|strong=\"H1004\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H7971\"* live|strong=\"H3427\"* there|strong=\"H8033\"*, and|strong=\"H7971\"* don’t go|strong=\"H3318\"* anywhere else|strong=\"H3808\"*." + }, + { + "verseNum": 37, + "text": "For|strong=\"H3588\"* on|strong=\"H3117\"* the|strong=\"H3588\"* day|strong=\"H3117\"* you|strong=\"H3588\"* go|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3117\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3588\"* brook|strong=\"H5158\"* Kidron|strong=\"H6939\"*, know|strong=\"H3045\"* for|strong=\"H3588\"* certain|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1961\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*. Your|strong=\"H3045\"* blood|strong=\"H1818\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H3117\"* your|strong=\"H3045\"* own|strong=\"H1961\"* head|strong=\"H7218\"*.”" + }, + { + "verseNum": 38, + "text": "Shimei|strong=\"H8096\"* said|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H6213\"* king|strong=\"H4428\"*, “What|strong=\"H1697\"* you|strong=\"H3117\"* say|strong=\"H1696\"* is|strong=\"H3117\"* good|strong=\"H2896\"*. As|strong=\"H1697\"* my|strong=\"H6213\"* lord the|strong=\"H6213\"* king|strong=\"H4428\"* has|strong=\"H4428\"* said|strong=\"H1696\"*, so|strong=\"H3651\"* will|strong=\"H4428\"* your|strong=\"H6213\"* servant|strong=\"H5650\"* do|strong=\"H6213\"*.” Shimei|strong=\"H8096\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* many|strong=\"H7227\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 39, + "text": "At|strong=\"H4428\"* the|strong=\"H1961\"* end|strong=\"H7093\"* of|strong=\"H1121\"* three|strong=\"H7969\"* years|strong=\"H8141\"*, two|strong=\"H8147\"* of|strong=\"H1121\"* Shimei|strong=\"H8096\"*’s slaves|strong=\"H5650\"* ran|strong=\"H1272\"* away|strong=\"H1272\"* to|strong=\"H1961\"* Achish, son|strong=\"H1121\"* of|strong=\"H1121\"* Maacah|strong=\"H4601\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Gath|strong=\"H1661\"*. They|strong=\"H8141\"* told|strong=\"H5046\"* Shimei|strong=\"H8096\"*, saying, “Behold|strong=\"H2009\"*, your|strong=\"H1961\"* slaves|strong=\"H5650\"* are|strong=\"H1121\"* in|strong=\"H8141\"* Gath|strong=\"H1661\"*.”" + }, + { + "verseNum": 40, + "text": "Shimei|strong=\"H8096\"* arose|strong=\"H6965\"*, saddled|strong=\"H2280\"* his|strong=\"H6965\"* donkey|strong=\"H2543\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Gath|strong=\"H1661\"* to|strong=\"H3212\"* Achish to|strong=\"H3212\"* seek|strong=\"H1245\"* his|strong=\"H6965\"* slaves|strong=\"H5650\"*; and|strong=\"H6965\"* Shimei|strong=\"H8096\"* went|strong=\"H3212\"* and|strong=\"H6965\"* brought|strong=\"H3212\"* his|strong=\"H6965\"* slaves|strong=\"H5650\"* from|strong=\"H6965\"* Gath|strong=\"H1661\"*." + }, + { + "verseNum": 41, + "text": "Solomon|strong=\"H8010\"* was|strong=\"H3389\"* told|strong=\"H5046\"* that|strong=\"H3588\"* Shimei|strong=\"H8096\"* had|strong=\"H8010\"* gone|strong=\"H1980\"* from|strong=\"H7725\"* Jerusalem|strong=\"H3389\"* to|strong=\"H1980\"* Gath|strong=\"H1661\"*, and|strong=\"H1980\"* had|strong=\"H8010\"* come|strong=\"H1980\"* again|strong=\"H7725\"*." + }, + { + "verseNum": 42, + "text": "The|strong=\"H8085\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* and|strong=\"H1980\"* called|strong=\"H7121\"* for|strong=\"H3588\"* Shimei|strong=\"H8096\"*, and|strong=\"H1980\"* said|strong=\"H1697\"* to|strong=\"H1980\"* him|strong=\"H7121\"*, “Didn’t I|strong=\"H3588\"* adjure|strong=\"H7650\"* you|strong=\"H3588\"* by|strong=\"H7650\"* Yahweh|strong=\"H3068\"* and|strong=\"H1980\"* warn|strong=\"H5749\"* you|strong=\"H3588\"*, saying|strong=\"H1697\"*, ‘Know|strong=\"H3045\"* for|strong=\"H3588\"* certain|strong=\"H3045\"* that|strong=\"H3588\"* on|strong=\"H3117\"* the|strong=\"H8085\"* day|strong=\"H3117\"* you|strong=\"H3588\"* go|strong=\"H1980\"* out|strong=\"H3318\"* and|strong=\"H1980\"* walk|strong=\"H1980\"* anywhere else|strong=\"H3808\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*’? You|strong=\"H3588\"* said|strong=\"H1697\"* to|strong=\"H1980\"* me|strong=\"H7971\"*, ‘The|strong=\"H8085\"* saying|strong=\"H1697\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* is|strong=\"H3068\"* good|strong=\"H2896\"*.’" + }, + { + "verseNum": 43, + "text": "Why|strong=\"H4069\"* then|strong=\"H6680\"* have|strong=\"H3068\"* you|strong=\"H6680\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* the|strong=\"H5921\"* oath|strong=\"H7621\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* the|strong=\"H5921\"* commandment|strong=\"H4687\"* that|strong=\"H3068\"* I|strong=\"H5921\"* have|strong=\"H3068\"* instructed|strong=\"H6680\"* you|strong=\"H6680\"* with|strong=\"H3068\"*?”" + }, + { + "verseNum": 44, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* said moreover to|strong=\"H7725\"* Shimei|strong=\"H8096\"*, “You|strong=\"H3605\"* know|strong=\"H3045\"* in|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wickedness|strong=\"H7451\"* that|strong=\"H3045\"* you|strong=\"H3605\"* did|strong=\"H6213\"* to|strong=\"H7725\"* David|strong=\"H1732\"* my|strong=\"H3605\"* father. Therefore|strong=\"H1732\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* return|strong=\"H7725\"* your|strong=\"H3068\"* wickedness|strong=\"H7451\"* on|strong=\"H3068\"* your|strong=\"H3068\"* own head|strong=\"H7218\"*." + }, + { + "verseNum": 45, + "text": "But|strong=\"H1961\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* will|strong=\"H3068\"* be|strong=\"H1961\"* blessed|strong=\"H1288\"*, and|strong=\"H3068\"* David|strong=\"H1732\"*’s throne|strong=\"H3678\"* will|strong=\"H3068\"* be|strong=\"H1961\"* established|strong=\"H3559\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* forever|strong=\"H5769\"*.”" + }, + { + "verseNum": 46, + "text": "So|strong=\"H3318\"* the|strong=\"H6680\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"* Benaiah|strong=\"H1141\"* the|strong=\"H6680\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"*; and|strong=\"H1121\"* he|strong=\"H3027\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* fell|strong=\"H6293\"* on|strong=\"H3027\"* him|strong=\"H3027\"*, so|strong=\"H3318\"* that|strong=\"H4428\"* he|strong=\"H3027\"* died|strong=\"H4191\"*. The|strong=\"H6680\"* kingdom|strong=\"H4467\"* was|strong=\"H4428\"* established|strong=\"H3559\"* in|strong=\"H4428\"* the|strong=\"H6680\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Solomon|strong=\"H8010\"* made|strong=\"H1129\"* a|strong=\"H3068\"* marriage|strong=\"H2859\"* alliance|strong=\"H2859\"* with|strong=\"H1004\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*. He|strong=\"H5704\"* took|strong=\"H3947\"* Pharaoh|strong=\"H6547\"*’s daughter|strong=\"H1323\"* and|strong=\"H3068\"* brought|strong=\"H3947\"* her|strong=\"H3947\"* into|strong=\"H4714\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"* until|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H3068\"* finished|strong=\"H3615\"* building|strong=\"H1129\"* his|strong=\"H3068\"* own house|strong=\"H1004\"*, Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* the|strong=\"H3947\"* wall|strong=\"H2346\"* around|strong=\"H5439\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "However|strong=\"H7535\"*, the|strong=\"H3588\"* people|strong=\"H5971\"* sacrificed|strong=\"H2076\"* in|strong=\"H3068\"* the|strong=\"H3588\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, because|strong=\"H3588\"* there|strong=\"H1992\"* was|strong=\"H3068\"* not|strong=\"H3808\"* yet|strong=\"H3588\"* a|strong=\"H3068\"* house|strong=\"H1004\"* built|strong=\"H1129\"* for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*." + }, + { + "verseNum": 3, + "text": "Solomon|strong=\"H8010\"* loved Yahweh|strong=\"H3068\"*, walking|strong=\"H3212\"* in|strong=\"H3068\"* the|strong=\"H3068\"* statutes|strong=\"H2708\"* of|strong=\"H3068\"* David|strong=\"H1732\"* his|strong=\"H3068\"* father, except|strong=\"H7535\"* that|strong=\"H1931\"* he|strong=\"H1931\"* sacrificed|strong=\"H2076\"* and|strong=\"H3068\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* in|strong=\"H3068\"* the|strong=\"H3068\"* high|strong=\"H1116\"* places|strong=\"H1116\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Gibeon|strong=\"H1391\"* to|strong=\"H3212\"* sacrifice|strong=\"H2076\"* there|strong=\"H8033\"*, for|strong=\"H3588\"* that|strong=\"H3588\"* was|strong=\"H1931\"* the|strong=\"H5921\"* great|strong=\"H1419\"* high|strong=\"H1116\"* place|strong=\"H1116\"*. Solomon|strong=\"H8010\"* offered|strong=\"H5927\"* a|strong=\"H3068\"* thousand burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* on|strong=\"H5921\"* that|strong=\"H3588\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 5, + "text": "In|strong=\"H3068\"* Gibeon|strong=\"H1391\"*, Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* Solomon|strong=\"H8010\"* in|strong=\"H3068\"* a|strong=\"H3068\"* dream|strong=\"H2472\"* by|strong=\"H3068\"* night|strong=\"H3915\"*; and|strong=\"H3068\"* God|strong=\"H3068\"* said, “Ask|strong=\"H7592\"* for|strong=\"H3068\"* what|strong=\"H4100\"* I|strong=\"H5414\"* should|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 6, + "text": "Solomon|strong=\"H8010\"* said, “You|strong=\"H5414\"* have|strong=\"H1121\"* shown|strong=\"H6213\"* to|strong=\"H1980\"* your|strong=\"H5414\"* servant|strong=\"H5650\"* David|strong=\"H1732\"* my|strong=\"H8104\"* father|strong=\"H1121\"* great|strong=\"H1419\"* loving kindness|strong=\"H2617\"*, because|strong=\"H5921\"* he|strong=\"H3117\"* walked|strong=\"H1980\"* before|strong=\"H6440\"* you|strong=\"H5414\"* in|strong=\"H3427\"* truth, in|strong=\"H3427\"* righteousness|strong=\"H6666\"*, and|strong=\"H1121\"* in|strong=\"H3427\"* uprightness|strong=\"H3483\"* of|strong=\"H1121\"* heart|strong=\"H3824\"* with|strong=\"H5973\"* you|strong=\"H5414\"*. You|strong=\"H5414\"* have|strong=\"H1121\"* kept|strong=\"H8104\"* for|strong=\"H5921\"* him|strong=\"H5414\"* this|strong=\"H2088\"* great|strong=\"H1419\"* loving kindness|strong=\"H2617\"*, that|strong=\"H3117\"* you|strong=\"H5414\"* have|strong=\"H1121\"* given|strong=\"H5414\"* him|strong=\"H5414\"* a|strong=\"H3068\"* son|strong=\"H1121\"* to|strong=\"H1980\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H5414\"* throne|strong=\"H3678\"*, as|strong=\"H3117\"* it|strong=\"H5414\"* is|strong=\"H2088\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H6258\"*, Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*, you|strong=\"H3045\"* have|strong=\"H3068\"* made|strong=\"H4427\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* king|strong=\"H4427\"* instead|strong=\"H8478\"* of|strong=\"H3068\"* David|strong=\"H1732\"* my|strong=\"H3068\"* father. I|strong=\"H6258\"* am|strong=\"H3068\"* just|strong=\"H6258\"* a|strong=\"H3068\"* little|strong=\"H6996\"* child|strong=\"H5288\"*. I|strong=\"H6258\"* don’t know|strong=\"H3045\"* how|strong=\"H3045\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* or|strong=\"H3808\"* come|strong=\"H3318\"* in|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "Your|strong=\"H3808\"* servant|strong=\"H5650\"* is|strong=\"H5650\"* among|strong=\"H8432\"* your|strong=\"H3808\"* people|strong=\"H5971\"* which|strong=\"H5971\"* you|strong=\"H3808\"* have|strong=\"H5971\"* chosen, a|strong=\"H3068\"* great|strong=\"H7227\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* can|strong=\"H5650\"*’t be|strong=\"H3808\"* numbered|strong=\"H5608\"* or|strong=\"H3808\"* counted|strong=\"H5608\"* for|strong=\"H5650\"* multitude|strong=\"H7230\"*." + }, + { + "verseNum": 9, + "text": "Give|strong=\"H5414\"* your|strong=\"H5414\"* servant|strong=\"H5650\"* therefore|strong=\"H3588\"* an|strong=\"H5414\"* understanding|strong=\"H3820\"* heart|strong=\"H3820\"* to|strong=\"H3201\"* judge|strong=\"H8199\"* your|strong=\"H5414\"* people|strong=\"H5971\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H3201\"* discern|strong=\"H8085\"* between|strong=\"H8199\"* good|strong=\"H2896\"* and|strong=\"H5971\"* evil|strong=\"H7451\"*; for|strong=\"H3588\"* who|strong=\"H4310\"* is|strong=\"H2088\"* able|strong=\"H3201\"* to|strong=\"H3201\"* judge|strong=\"H8199\"* this|strong=\"H2088\"* great|strong=\"H3515\"* people|strong=\"H5971\"* of|strong=\"H5650\"* yours|strong=\"H5650\"*?”" + }, + { + "verseNum": 10, + "text": "This|strong=\"H2088\"* request|strong=\"H1697\"* pleased|strong=\"H3190\"* the|strong=\"H3588\"* Lord, that|strong=\"H3588\"* Solomon|strong=\"H8010\"* had|strong=\"H8010\"* asked|strong=\"H7592\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*." + }, + { + "verseNum": 11, + "text": "God|strong=\"H3808\"* said|strong=\"H1697\"* to|strong=\"H3117\"* him|strong=\"H7592\"*, “Because|strong=\"H3282\"* you|strong=\"H3117\"* have|strong=\"H1697\"* asked|strong=\"H7592\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*, and|strong=\"H3117\"* have|strong=\"H1697\"* not|strong=\"H3808\"* asked|strong=\"H7592\"* for|strong=\"H4941\"* yourself|strong=\"H5315\"* long|strong=\"H3117\"* life|strong=\"H5315\"*, nor|strong=\"H3808\"* have|strong=\"H1697\"* you|strong=\"H3117\"* asked|strong=\"H7592\"* for|strong=\"H4941\"* riches|strong=\"H6239\"* for|strong=\"H4941\"* yourself|strong=\"H5315\"*, nor|strong=\"H3808\"* have|strong=\"H1697\"* you|strong=\"H3117\"* asked|strong=\"H7592\"* for|strong=\"H4941\"* the|strong=\"H8085\"* life|strong=\"H5315\"* of|strong=\"H3117\"* your|strong=\"H8085\"* enemies, but|strong=\"H3808\"* have|strong=\"H1697\"* asked|strong=\"H7592\"* for|strong=\"H4941\"* yourself|strong=\"H5315\"* understanding|strong=\"H8085\"* to|strong=\"H3117\"* discern|strong=\"H8085\"* justice|strong=\"H4941\"*," + }, + { + "verseNum": 12, + "text": "behold|strong=\"H2009\"*, I|strong=\"H5414\"* have|strong=\"H1961\"* done|strong=\"H6213\"* according|strong=\"H3644\"* to|strong=\"H1961\"* your|strong=\"H5414\"* word|strong=\"H1697\"*. Behold|strong=\"H2009\"*, I|strong=\"H5414\"* have|strong=\"H1961\"* given|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* wise|strong=\"H2450\"* and|strong=\"H6965\"* understanding|strong=\"H3820\"* heart|strong=\"H3820\"*, so|strong=\"H6213\"* that|strong=\"H1697\"* there|strong=\"H2009\"* has|strong=\"H1961\"* been|strong=\"H1961\"* no|strong=\"H3808\"* one|strong=\"H3808\"* like|strong=\"H3644\"* you|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H6965\"* after|strong=\"H1961\"* you|strong=\"H5414\"* none|strong=\"H3808\"* will|strong=\"H1961\"* arise|strong=\"H6965\"* like|strong=\"H3644\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H3117\"* have|strong=\"H1961\"* also|strong=\"H1571\"* given|strong=\"H5414\"* you|strong=\"H5414\"* that|strong=\"H3605\"* which|strong=\"H3117\"* you|strong=\"H5414\"* have|strong=\"H1961\"* not|strong=\"H3808\"* asked|strong=\"H7592\"*, both|strong=\"H1571\"* riches|strong=\"H6239\"* and|strong=\"H4428\"* honor|strong=\"H3519\"*, so|strong=\"H1961\"* that|strong=\"H3605\"* there|strong=\"H1961\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* any|strong=\"H3605\"* among|strong=\"H3808\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* like|strong=\"H3644\"* you|strong=\"H5414\"* for|strong=\"H3117\"* all|strong=\"H3605\"* your|strong=\"H3605\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 14, + "text": "If you|strong=\"H3117\"* will|strong=\"H3117\"* walk|strong=\"H1980\"* in|strong=\"H1980\"* my|strong=\"H8104\"* ways|strong=\"H1870\"*, to|strong=\"H1980\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* statutes|strong=\"H2706\"* and|strong=\"H1980\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"*, as|strong=\"H3117\"* your|strong=\"H8104\"* father David|strong=\"H1732\"* walked|strong=\"H1980\"*, then|strong=\"H1980\"* I|strong=\"H3117\"* will|strong=\"H3117\"* lengthen your|strong=\"H8104\"* days|strong=\"H3117\"*.”" + }, + { + "verseNum": 15, + "text": "Solomon|strong=\"H8010\"* awoke|strong=\"H3364\"*; and|strong=\"H3389\"* behold|strong=\"H2009\"*, it|strong=\"H6213\"* was|strong=\"H8010\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*. Then|strong=\"H2009\"* he|strong=\"H6213\"* came|strong=\"H5927\"* to|strong=\"H5927\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3389\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H3605\"* ark of|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, and|strong=\"H3389\"* offered|strong=\"H5927\"* up|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"*, offered|strong=\"H5927\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, and|strong=\"H3389\"* made|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H4960\"* for|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H5975\"* two|strong=\"H8147\"* women who|strong=\"H4428\"* were|strong=\"H4428\"* prostitutes|strong=\"H2185\"* came|strong=\"H4428\"* to|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3205\"* one|strong=\"H2063\"* woman|strong=\"H3205\"* said, “Oh, my|strong=\"H5973\"* lord, I|strong=\"H1004\"* and|strong=\"H1004\"* this|strong=\"H2063\"* woman|strong=\"H3205\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* one|strong=\"H2063\"* house|strong=\"H1004\"*. I|strong=\"H1004\"* delivered|strong=\"H3205\"* a|strong=\"H3068\"* child|strong=\"H3205\"* with|strong=\"H5973\"* her|strong=\"H3205\"* in|strong=\"H3427\"* the|strong=\"H3205\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3205\"* third|strong=\"H7992\"* day|strong=\"H3117\"* after|strong=\"H1961\"* I|strong=\"H3117\"* delivered|strong=\"H3205\"*, this|strong=\"H2063\"* woman|strong=\"H2114\"* delivered|strong=\"H3205\"* also|strong=\"H1571\"*. We|strong=\"H3117\"* were|strong=\"H1961\"* together|strong=\"H3162\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H1961\"* stranger|strong=\"H2114\"* with|strong=\"H1004\"* us|strong=\"H3117\"* in|strong=\"H1004\"* the|strong=\"H3205\"* house|strong=\"H1004\"*, just|strong=\"H1571\"* us|strong=\"H3117\"* two|strong=\"H8147\"* in|strong=\"H1004\"* the|strong=\"H3205\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 19, + "text": "This|strong=\"H2063\"* woman’s child|strong=\"H1121\"* died|strong=\"H4191\"* in|strong=\"H5921\"* the|strong=\"H5921\"* night|strong=\"H3915\"*, because|strong=\"H5921\"* she|strong=\"H2063\"* lay|strong=\"H7901\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 20, + "text": "She|strong=\"H7901\"* arose|strong=\"H6965\"* at|strong=\"H4191\"* midnight|strong=\"H8432\"*, and|strong=\"H1121\"* took|strong=\"H3947\"* my|strong=\"H3947\"* son|strong=\"H1121\"* from|strong=\"H1121\"* beside me|strong=\"H3947\"* while your|strong=\"H3947\"* servant slept|strong=\"H7901\"*, and|strong=\"H1121\"* laid|strong=\"H7901\"* it|strong=\"H8432\"* in|strong=\"H4191\"* her|strong=\"H3947\"* bosom|strong=\"H2436\"*, and|strong=\"H1121\"* laid|strong=\"H7901\"* her|strong=\"H3947\"* dead|strong=\"H4191\"* child|strong=\"H1121\"* in|strong=\"H4191\"* my|strong=\"H3947\"* bosom|strong=\"H2436\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H1961\"* I|strong=\"H2009\"* rose|strong=\"H6965\"* in|strong=\"H4191\"* the|strong=\"H3205\"* morning|strong=\"H1242\"* to|strong=\"H4191\"* nurse|strong=\"H3243\"* my|strong=\"H6965\"* child|strong=\"H1121\"*, behold|strong=\"H2009\"*, he|strong=\"H3808\"* was|strong=\"H1961\"* dead|strong=\"H4191\"*; but|strong=\"H3808\"* when|strong=\"H1961\"* I|strong=\"H2009\"* had|strong=\"H1961\"* looked|strong=\"H2009\"* at|strong=\"H4191\"* him|strong=\"H3205\"* in|strong=\"H4191\"* the|strong=\"H3205\"* morning|strong=\"H1242\"*, behold|strong=\"H2009\"*, it|strong=\"H1242\"* was|strong=\"H1961\"* not|strong=\"H3808\"* my|strong=\"H6965\"* son|strong=\"H1121\"* whom I|strong=\"H2009\"* bore|strong=\"H3205\"*.”" + }, + { + "verseNum": 22, + "text": "The|strong=\"H6440\"* other|strong=\"H2063\"* woman said|strong=\"H1696\"*, “No|strong=\"H3808\"*! But|strong=\"H3588\"* the|strong=\"H6440\"* living|strong=\"H2416\"* one|strong=\"H3808\"* is|strong=\"H4428\"* my|strong=\"H1696\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* dead|strong=\"H4191\"* one|strong=\"H3808\"* is|strong=\"H4428\"* your|strong=\"H6440\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 23, + "text": "Then|strong=\"H2088\"* the|strong=\"H3588\"* king|strong=\"H4428\"* said, “One|strong=\"H2088\"* says, ‘This|strong=\"H2088\"* is|strong=\"H2088\"* my|strong=\"H3588\"* son|strong=\"H1121\"* who|strong=\"H1121\"* lives|strong=\"H2416\"*, and|strong=\"H1121\"* your|strong=\"H3588\"* son|strong=\"H1121\"* is|strong=\"H2088\"* the|strong=\"H3588\"* dead|strong=\"H4191\"* one|strong=\"H2088\"*;’ and|strong=\"H1121\"* the|strong=\"H3588\"* other|strong=\"H2088\"* says, ‘No|strong=\"H3808\"*! But|strong=\"H3588\"* your|strong=\"H3588\"* son|strong=\"H1121\"* is|strong=\"H2088\"* the|strong=\"H3588\"* dead|strong=\"H4191\"* one|strong=\"H2088\"*, and|strong=\"H1121\"* my|strong=\"H3588\"* son|strong=\"H1121\"* is|strong=\"H2088\"* the|strong=\"H3588\"* living|strong=\"H2416\"* one|strong=\"H2088\"*.’”" + }, + { + "verseNum": 24, + "text": "The|strong=\"H6440\"* king|strong=\"H4428\"* said, “Get|strong=\"H3947\"* me|strong=\"H6440\"* a|strong=\"H3068\"* sword|strong=\"H2719\"*.” So|strong=\"H3947\"* they|strong=\"H6440\"* brought|strong=\"H3947\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* said, “Divide|strong=\"H1504\"* the|strong=\"H5414\"* living|strong=\"H2416\"* child|strong=\"H3206\"* in|strong=\"H4428\"* two|strong=\"H8147\"*, and|strong=\"H4428\"* give|strong=\"H5414\"* half|strong=\"H2677\"* to|strong=\"H5414\"* the|strong=\"H5414\"* one|strong=\"H2416\"*, and|strong=\"H4428\"* half|strong=\"H2677\"* to|strong=\"H5414\"* the|strong=\"H5414\"* other|strong=\"H8147\"*.”" + }, + { + "verseNum": 26, + "text": "Then|strong=\"H1961\"* the|strong=\"H5921\"* woman|strong=\"H3205\"* whose|strong=\"H1121\"* the|strong=\"H5921\"* living|strong=\"H2416\"* child|strong=\"H1121\"* was|strong=\"H1961\"* spoke to|strong=\"H4191\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, for|strong=\"H3588\"* her|strong=\"H5414\"* heart yearned|strong=\"H3648\"* over|strong=\"H5921\"* her|strong=\"H5414\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* she|strong=\"H3588\"* said, “Oh, my|strong=\"H5414\"* lord, give|strong=\"H5414\"* her|strong=\"H5414\"* the|strong=\"H5921\"* living|strong=\"H2416\"* child|strong=\"H1121\"*, and|strong=\"H1121\"* in|strong=\"H5921\"* no|strong=\"H3808\"* way|strong=\"H2063\"* kill|strong=\"H4191\"* him|strong=\"H5414\"*!”" + }, + { + "verseNum": 27, + "text": "Then|strong=\"H6030\"* the|strong=\"H5414\"* king|strong=\"H4428\"* answered|strong=\"H6030\"*, “Give|strong=\"H5414\"* the|strong=\"H5414\"* first woman|strong=\"H3205\"* the|strong=\"H5414\"* living|strong=\"H2416\"* child|strong=\"H3205\"*, and|strong=\"H6030\"* definitely do not|strong=\"H3808\"* kill|strong=\"H4191\"* him|strong=\"H5414\"*. She|strong=\"H1931\"* is|strong=\"H1931\"* his|strong=\"H5414\"* mother.”" + }, + { + "verseNum": 28, + "text": "All|strong=\"H3605\"* Israel|strong=\"H3478\"* heard|strong=\"H8085\"* of|strong=\"H4428\"* the|strong=\"H3605\"* judgment|strong=\"H4941\"* which|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* had|strong=\"H3478\"* judged|strong=\"H8199\"*; and|strong=\"H3478\"* they|strong=\"H3588\"* feared|strong=\"H3372\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H3605\"* wisdom|strong=\"H2451\"* of|strong=\"H4428\"* God|strong=\"H2451\"* was|strong=\"H3478\"* in|strong=\"H3478\"* him|strong=\"H6440\"* to|strong=\"H3478\"* do|strong=\"H6213\"* justice|strong=\"H4941\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* was|strong=\"H1961\"* king|strong=\"H4428\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "These were|strong=\"H1121\"* the|strong=\"H6659\"* princes|strong=\"H8269\"* whom he|strong=\"H1121\"* had|strong=\"H3548\"*: Azariah|strong=\"H5838\"* the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*, the|strong=\"H6659\"* priest|strong=\"H3548\"*;" + }, + { + "verseNum": 3, + "text": "Elihoreph and|strong=\"H1121\"* Ahijah, the|strong=\"H2142\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shisha|strong=\"H7894\"*, scribes|strong=\"H5608\"*; Jehoshaphat|strong=\"H3092\"* the|strong=\"H2142\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahilud, the|strong=\"H2142\"* recorder|strong=\"H2142\"*;" + }, + { + "verseNum": 4, + "text": "Benaiah|strong=\"H1141\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"*; Zadok|strong=\"H6659\"* and|strong=\"H1121\"* Abiathar were|strong=\"H1121\"* priests|strong=\"H3548\"*;" + }, + { + "verseNum": 5, + "text": "Azariah|strong=\"H5838\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nathan|strong=\"H5416\"* was|strong=\"H4428\"* over|strong=\"H5921\"* the|strong=\"H5921\"* officers|strong=\"H5324\"*; Zabud|strong=\"H2071\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nathan|strong=\"H5416\"* was|strong=\"H4428\"* chief|strong=\"H3548\"* minister, the|strong=\"H5921\"* king|strong=\"H4428\"*’s friend|strong=\"H7463\"*;" + }, + { + "verseNum": 6, + "text": "Ahishar was|strong=\"H1004\"* over|strong=\"H5921\"* the|strong=\"H5921\"* household|strong=\"H1004\"*; and|strong=\"H1121\"* Adoniram the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abda|strong=\"H5653\"* was|strong=\"H1004\"* over|strong=\"H5921\"* the|strong=\"H5921\"* men|strong=\"H1121\"* subject to|strong=\"H5921\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"*." + }, + { + "verseNum": 7, + "text": "Solomon|strong=\"H8010\"* had|strong=\"H1961\"* twelve|strong=\"H8147\"* officers|strong=\"H5324\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, who|strong=\"H3605\"* provided|strong=\"H3557\"* food|strong=\"H1004\"* for|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H3478\"* his|strong=\"H3605\"* household|strong=\"H1004\"*. Each|strong=\"H3605\"* man|strong=\"H3605\"* had|strong=\"H1961\"* to|strong=\"H3478\"* make|strong=\"H8141\"* provision|strong=\"H3557\"* for|strong=\"H5921\"* a|strong=\"H3068\"* month|strong=\"H2320\"* in|strong=\"H8141\"* the|strong=\"H3605\"* year|strong=\"H8141\"*." + }, + { + "verseNum": 8, + "text": "These are|strong=\"H2022\"* their names|strong=\"H8034\"*: Ben Hur|strong=\"H1133\"*, in|strong=\"H8034\"* the|strong=\"H8034\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim|strong=\"H8034\"*;" + }, + { + "verseNum": 9, + "text": "Ben Deker, in|strong=\"H1128\"* Makaz|strong=\"H4739\"*, in|strong=\"H1128\"* Shaalbim|strong=\"H8169\"*, Beth Shemesh, and|strong=\"H1053\"* Elon Beth Hanan;" + }, + { + "verseNum": 10, + "text": "Ben Hesed|strong=\"H1136\"*, in|strong=\"H3605\"* Arubboth (Socoh|strong=\"H7755\"* and|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Hepher|strong=\"H2660\"* belonged to|strong=\"H3605\"* him|strong=\"H3605\"*);" + }, + { + "verseNum": 11, + "text": "Ben Abinadab|strong=\"H1125\"*, in|strong=\"H8010\"* all|strong=\"H3605\"* the|strong=\"H3605\"* height|strong=\"H5299\"* of|strong=\"H1323\"* Dor|strong=\"H1756\"* (he|strong=\"H3605\"* had|strong=\"H1961\"* Taphath|strong=\"H2955\"*, Solomon|strong=\"H8010\"*’s daughter|strong=\"H1323\"*, as|strong=\"H1961\"* wife);" + }, + { + "verseNum": 12, + "text": "Baana|strong=\"H1195\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahilud, in|strong=\"H1121\"* Taanach|strong=\"H8590\"* and|strong=\"H1121\"* Megiddo|strong=\"H4023\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* Beth Shean which|strong=\"H3605\"* is|strong=\"H3605\"* beside|strong=\"H5704\"* Zarethan|strong=\"H6891\"*, beneath|strong=\"H8478\"* Jezreel|strong=\"H3157\"*, from|strong=\"H1121\"* Beth Shean to|strong=\"H5704\"* Abel Meholah, as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* beyond|strong=\"H5676\"* Jokmeam|strong=\"H3361\"*;" + }, + { + "verseNum": 13, + "text": "Ben Geber|strong=\"H1127\"*, in|strong=\"H5892\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"* (the|strong=\"H1121\"* towns|strong=\"H5892\"* of|strong=\"H1121\"* Jair|strong=\"H2971\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, which|strong=\"H5892\"* are|strong=\"H1121\"* in|strong=\"H5892\"* Gilead|strong=\"H1568\"*, belonged to|strong=\"H1121\"* him|strong=\"H1121\"*; and|strong=\"H1121\"* the|strong=\"H1121\"* region|strong=\"H2256\"* of|strong=\"H1121\"* Argob, which|strong=\"H5892\"* is|strong=\"H5892\"* in|strong=\"H5892\"* Bashan|strong=\"H1316\"*, sixty|strong=\"H8346\"* great|strong=\"H1419\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* walls|strong=\"H2346\"* and|strong=\"H1121\"* bronze|strong=\"H5178\"* bars|strong=\"H1280\"*, belonged to|strong=\"H1121\"* him|strong=\"H1121\"*);" + }, + { + "verseNum": 14, + "text": "Ahinadab the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Iddo|strong=\"H5714\"*, in|strong=\"H1121\"* Mahanaim|strong=\"H4266\"*;" + }, + { + "verseNum": 15, + "text": "Ahimaaz, in|strong=\"H8010\"* Naphtali|strong=\"H5321\"* (he|strong=\"H1931\"* also|strong=\"H1571\"* took|strong=\"H3947\"* Basemath|strong=\"H1315\"* the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Solomon|strong=\"H8010\"* as|strong=\"H1571\"* wife);" + }, + { + "verseNum": 16, + "text": "Baana|strong=\"H1195\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hushai|strong=\"H2365\"*, in|strong=\"H1121\"* Asher and|strong=\"H1121\"* Bealoth|strong=\"H1175\"*;" + }, + { + "verseNum": 17, + "text": "Jehoshaphat|strong=\"H3092\"* the|strong=\"H3092\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Paruah|strong=\"H6515\"*, in|strong=\"H1121\"* Issachar|strong=\"H3485\"*;" + }, + { + "verseNum": 18, + "text": "Shimei|strong=\"H8096\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ela, in|strong=\"H1121\"* Benjamin|strong=\"H1144\"*;" + }, + { + "verseNum": 19, + "text": "Geber|strong=\"H1398\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uri, in|strong=\"H4428\"* the|strong=\"H1121\"* land of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, the|strong=\"H1121\"* country of|strong=\"H1121\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Amorites and|strong=\"H1121\"* of|strong=\"H1121\"* Og|strong=\"H5747\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Bashan|strong=\"H1316\"*; and|strong=\"H1121\"* he|strong=\"H4428\"* was|strong=\"H4428\"* the|strong=\"H1121\"* only officer|strong=\"H5333\"* who|strong=\"H1121\"* was|strong=\"H4428\"* in|strong=\"H4428\"* the|strong=\"H1121\"* land." + }, + { + "verseNum": 20, + "text": "Judah|strong=\"H3063\"* and|strong=\"H3063\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* numerous|strong=\"H7227\"* as|strong=\"H7230\"* the|strong=\"H5921\"* sand|strong=\"H2344\"* which|strong=\"H2344\"* is|strong=\"H3478\"* by|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* in|strong=\"H5921\"* multitude|strong=\"H7230\"*, eating and|strong=\"H3063\"* drinking|strong=\"H8354\"* and|strong=\"H3063\"* making merry|strong=\"H8056\"*." + }, + { + "verseNum": 21, + "text": "Solomon ruled over all the kingdoms from the River to the land of the Philistines, and to the border of Egypt. They brought tribute and served Solomon all the days of his life." + }, + { + "verseNum": 22, + "text": "Solomon’s provision for one day was thirty cors+ 4:22 1 cor is the same as a homer, or about 55.9 U. S. gallons (liquid) or 211 liters or 6 bushels* of fine flour, sixty measures of meal," + }, + { + "verseNum": 23, + "text": "ten head of fat cattle, twenty head of cattle out of the pastures, and one hundred sheep, in addition to deer, gazelles, roebucks, and fattened fowl." + }, + { + "verseNum": 24, + "text": "For he had dominion over all on this side of the River, from Tiphsah even to Gaza, over all the kings on this side of the River; and he had peace on all sides around him." + }, + { + "verseNum": 25, + "text": "Judah and Israel lived safely, every man under his vine and under his fig tree, from Dan even to Beersheba, all the days of Solomon." + }, + { + "verseNum": 26, + "text": "Solomon had forty thousand stalls of horses for his chariots, and twelve thousand horsemen." + }, + { + "verseNum": 27, + "text": "Those officers provided food for King Solomon, and for all who came to King Solomon’s table, every man in his month. They let nothing be lacking." + }, + { + "verseNum": 28, + "text": "They also brought barley and straw for the horses and swift steeds to the place where the officers were, each man according to his duty." + }, + { + "verseNum": 29, + "text": "God gave Solomon abundant wisdom, understanding, and breadth of mind like the sand that is on the seashore." + }, + { + "verseNum": 30, + "text": "Solomon’s wisdom excelled the wisdom of all the children of the east and all the wisdom of Egypt." + }, + { + "verseNum": 31, + "text": "For he was wiser than all men—wiser than Ethan the Ezrahite, Heman, Calcol, and Darda, the sons of Mahol; and his fame was in all the nations all around." + }, + { + "verseNum": 32, + "text": "He spoke three thousand proverbs, and his songs numbered one thousand five." + }, + { + "verseNum": 33, + "text": "He spoke of trees, from the cedar that is in Lebanon even to the hyssop that grows out of the wall; he also spoke of animals, of birds, of creeping things, and of fish." + }, + { + "verseNum": 34, + "text": "People of all nations came to hear the wisdom of Solomon, sent by all kings of the earth who had heard of his wisdom." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Hiram king of|strong=\"H3117\"* Tyre sent his|strong=\"H3605\"* servants|strong=\"H5647\"* to|strong=\"H5704\"* Solomon|strong=\"H8010\"*, for|strong=\"H5704\"* he|strong=\"H3117\"* had|strong=\"H1961\"* heard that|strong=\"H3605\"* they|strong=\"H3117\"* had|strong=\"H1961\"* anointed him|strong=\"H5647\"* king in|strong=\"H3117\"* the|strong=\"H3605\"* place|strong=\"H1961\"* of|strong=\"H3117\"* his|strong=\"H3605\"* father, and|strong=\"H3117\"* Hiram had|strong=\"H1961\"* always|strong=\"H3605\"* loved David|strong=\"H3117\"*." + }, + { + "verseNum": 2, + "text": "Solomon|strong=\"H8010\"* sent to|strong=\"H1961\"* Hiram, saying," + }, + { + "verseNum": 3, + "text": "“You know that|strong=\"H1241\"* David my father could not build a|strong=\"H3068\"* house for|strong=\"H1241\"* the|strong=\"H3967\"* name of|strong=\"H6629\"* Yahweh|strong=\"H3068\"* his God because of|strong=\"H6629\"* the|strong=\"H3967\"* wars which were|strong=\"H6629\"* around him on every side, until Yahweh|strong=\"H3068\"* put his enemies under the|strong=\"H3967\"* soles of|strong=\"H6629\"* his feet." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3588\"* now|strong=\"H1961\"* Yahweh|strong=\"H3068\"* my|strong=\"H3605\"* God has|strong=\"H1961\"* given me|strong=\"H1961\"* rest|strong=\"H7965\"* on|strong=\"H1961\"* every|strong=\"H3605\"* side|strong=\"H5676\"*. There|strong=\"H1961\"* is|strong=\"H1931\"* no|strong=\"H3605\"* enemy and|strong=\"H4428\"* no|strong=\"H3605\"* evil occurrence." + }, + { + "verseNum": 5, + "text": "Behold, I|strong=\"H3117\"* intend to|strong=\"H5704\"* build a|strong=\"H3068\"* house for|strong=\"H5704\"* the|strong=\"H3605\"* name of|strong=\"H3117\"* Yahweh|strong=\"H3068\"* my|strong=\"H3605\"* God, as|strong=\"H5704\"* Yahweh|strong=\"H3068\"* spoke to|strong=\"H5704\"* David|strong=\"H3117\"* my|strong=\"H3605\"* father, saying, ‘Your|strong=\"H3605\"* son, whom I|strong=\"H3117\"* will|strong=\"H3478\"* set|strong=\"H3427\"* on|strong=\"H3117\"* your|strong=\"H3605\"* throne in|strong=\"H3427\"* your|strong=\"H3605\"* place|strong=\"H8478\"* shall|strong=\"H3478\"* build the|strong=\"H3605\"* house for|strong=\"H5704\"* my|strong=\"H3605\"* name.’" + }, + { + "verseNum": 6, + "text": "Now|strong=\"H1961\"* therefore|strong=\"H1961\"* command that|strong=\"H8010\"* cedar trees be|strong=\"H1961\"* cut for|strong=\"H1961\"* me|strong=\"H1961\"* out|strong=\"H8147\"* of|strong=\"H8147\"* Lebanon. My|strong=\"H1961\"* servants will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H8147\"* your|strong=\"H1961\"* servants; and|strong=\"H5483\"* I|strong=\"H1961\"* will|strong=\"H1961\"* give|strong=\"H1961\"* you|strong=\"H1961\"* wages for|strong=\"H1961\"* your|strong=\"H1961\"* servants according to|strong=\"H1961\"* all that|strong=\"H8010\"* you|strong=\"H1961\"* say. For|strong=\"H1961\"* you|strong=\"H1961\"* know that|strong=\"H8010\"* there|strong=\"H1961\"* is|strong=\"H1961\"* nobody among us|strong=\"H1961\"* who knows how to|strong=\"H1961\"* cut timber like|strong=\"H1961\"* the|strong=\"H1961\"* Sidonians.”" + }, + { + "verseNum": 7, + "text": "When Hiram heard the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H4428\"* Solomon|strong=\"H8010\"*, he|strong=\"H3605\"* rejoiced greatly|strong=\"H4428\"*, and|strong=\"H4428\"* said|strong=\"H1697\"*, “Blessed is|strong=\"H1697\"* Yahweh|strong=\"H3068\"* today, who|strong=\"H3605\"* has|strong=\"H4428\"* given to|strong=\"H4428\"* David a|strong=\"H3068\"* wise son to|strong=\"H4428\"* rule|strong=\"H4428\"* over|strong=\"H4428\"* this|strong=\"H1697\"* great people|strong=\"H3808\"*.”" + }, + { + "verseNum": 8, + "text": "Hiram sent to|strong=\"H1961\"* Solomon, saying, “I|strong=\"H8033\"* have|strong=\"H1961\"* heard the|strong=\"H1961\"* message which|strong=\"H8033\"* you|strong=\"H4725\"* have|strong=\"H1961\"* sent to|strong=\"H1961\"* me|strong=\"H1961\"*. I|strong=\"H8033\"* will|strong=\"H1961\"* do all your|strong=\"H1961\"* desire concerning timber of|strong=\"H4725\"* cedar, and|strong=\"H4941\"* concerning cypress timber." + }, + { + "verseNum": 9, + "text": "My|strong=\"H5414\"* servants will|strong=\"H3820\"* bring|strong=\"H5414\"* them|strong=\"H5414\"* down|strong=\"H5414\"* from|strong=\"H5921\"* Lebanon to|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*. I|strong=\"H5414\"* will|strong=\"H3820\"* make|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5921\"* rafts to|strong=\"H5921\"* go by|strong=\"H5921\"* sea|strong=\"H3220\"* to|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H5414\"* that|strong=\"H5414\"* you|strong=\"H5414\"* specify to|strong=\"H5921\"* me|strong=\"H5414\"*, and|strong=\"H2451\"* will|strong=\"H3820\"* cause|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5921\"* be|strong=\"H3820\"* broken up|strong=\"H5414\"* there, and|strong=\"H2451\"* you|strong=\"H5414\"* will|strong=\"H3820\"* receive|strong=\"H5414\"* them|strong=\"H5414\"*. You|strong=\"H5414\"* will|strong=\"H3820\"* accomplish my|strong=\"H5414\"* desire, in|strong=\"H5921\"* giving|strong=\"H5414\"* food for|strong=\"H5921\"* my|strong=\"H5414\"* household.”" + }, + { + "verseNum": 10, + "text": "So|strong=\"H7235\"* Hiram gave|strong=\"H7235\"* Solomon|strong=\"H8010\"* cedar timber and|strong=\"H1121\"* cypress timber according to|strong=\"H4714\"* all|strong=\"H3605\"* his|strong=\"H3605\"* desire." + }, + { + "verseNum": 11, + "text": "Solomon gave|strong=\"H1961\"* Hiram twenty thousand cors+ 5:11 20,000 cors would be about 120,000 bushels or about 4.2 megaliters of wheat, which would weigh about 3,270 metric tons.* of|strong=\"H1121\"* wheat for|strong=\"H8034\"* food to|strong=\"H1961\"* his|strong=\"H3605\"* household, and|strong=\"H1121\"* twenty cors+ 5:11 20 cors is about 1,100 gallons or about 4220 liters.* of|strong=\"H1121\"* pure oil. Solomon gave|strong=\"H1961\"* this|strong=\"H3605\"* to|strong=\"H1961\"* Hiram year|strong=\"H1121\"* by|strong=\"H8034\"* year|strong=\"H1121\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* gave|strong=\"H1696\"* Solomon wisdom, as|strong=\"H1961\"* he|strong=\"H2568\"* promised|strong=\"H1696\"* him|strong=\"H1961\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* peace between Hiram and|strong=\"H2568\"* Solomon, and|strong=\"H2568\"* the|strong=\"H1961\"* two of|strong=\"H7892\"* them|strong=\"H1961\"* made|strong=\"H1696\"* a|strong=\"H3068\"* treaty together." + }, + { + "verseNum": 13, + "text": "King|strong=\"H5921\"* Solomon raised a|strong=\"H3068\"* levy out|strong=\"H3318\"* of|strong=\"H4480\"* all|strong=\"H5704\"* Israel; and|strong=\"H6086\"* the|strong=\"H5921\"* levy was|strong=\"H6086\"* thirty thousand men." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3605\"* sent them|strong=\"H8085\"* to|strong=\"H8085\"* Lebanon, ten thousand a|strong=\"H3068\"* month by|strong=\"H3605\"* courses: for|strong=\"H4428\"* a|strong=\"H3068\"* month they|strong=\"H5971\"* were|strong=\"H5971\"* in|strong=\"H4428\"* Lebanon, and|strong=\"H4428\"* two months at|strong=\"H4428\"* home; and|strong=\"H4428\"* Adoniram was|strong=\"H4428\"* over|strong=\"H4428\"* the|strong=\"H3605\"* men|strong=\"H5971\"* subject|strong=\"H8085\"* to|strong=\"H8085\"* forced labor." + }, + { + "verseNum": 15, + "text": "Solomon|strong=\"H8010\"* had|strong=\"H1961\"* seventy thousand who|strong=\"H3605\"* bore burdens, and|strong=\"H7971\"* eighty thousand who|strong=\"H3605\"* were|strong=\"H1961\"* stone cutters in|strong=\"H4428\"* the|strong=\"H3605\"* mountains," + }, + { + "verseNum": 16, + "text": "besides Solomon|strong=\"H8010\"*’s chief officers who were over|strong=\"H7971\"* the|strong=\"H7971\"* work: three thousand three hundred who ruled over|strong=\"H7971\"* the|strong=\"H7971\"* people who labored in|strong=\"H8010\"* the|strong=\"H7971\"* work." + }, + { + "verseNum": 17, + "text": "The|strong=\"H6440\"* king|strong=\"H6440\"* commanded, and|strong=\"H3068\"* they|strong=\"H3588\"* cut|strong=\"H7272\"* out|strong=\"H5414\"* large|strong=\"H1004\"* stones, costly stones, to|strong=\"H5704\"* lay|strong=\"H5414\"* the|strong=\"H6440\"* foundation of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"* with|strong=\"H1004\"* worked|strong=\"H5704\"* stone." + }, + { + "verseNum": 18, + "text": "Solomon’s builders and|strong=\"H3068\"* Hiram’s builders and|strong=\"H3068\"* the|strong=\"H3068\"* Gebalites cut them|strong=\"H5117\"*, and|strong=\"H3068\"* prepared the|strong=\"H3068\"* timber and|strong=\"H3068\"* the|strong=\"H3068\"* stones to|strong=\"H3068\"* build the|strong=\"H3068\"* house." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* four hundred|strong=\"H3967\"* and|strong=\"H3967\"* eightieth|strong=\"H8084\"* year|strong=\"H8141\"* after|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H3068\"* come|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* fourth|strong=\"H7243\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*’s reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* month|strong=\"H2320\"* Ziv|strong=\"H2099\"*, which|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H5921\"* second|strong=\"H8145\"* month|strong=\"H2320\"*, he|strong=\"H1931\"* began|strong=\"H3478\"* to|strong=\"H3318\"* build|strong=\"H1129\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3068\"* house|strong=\"H1004\"* which|strong=\"H3068\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* built|strong=\"H1129\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* a|strong=\"H3068\"* length|strong=\"H6967\"* of|strong=\"H4428\"* sixty|strong=\"H8346\"* cubits,+ 6:2 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H3068\"* its width|strong=\"H7341\"* twenty|strong=\"H6242\"*, and|strong=\"H3068\"* its height|strong=\"H6967\"* thirty|strong=\"H7970\"* cubits." + }, + { + "verseNum": 3, + "text": "The|strong=\"H6440\"* porch in|strong=\"H5921\"* front|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* temple|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"* had a|strong=\"H3068\"* length|strong=\"H5921\"* of|strong=\"H1004\"* twenty|strong=\"H6242\"* cubits, which|strong=\"H1004\"* was|strong=\"H1004\"* along|strong=\"H5921\"* the|strong=\"H6440\"* width|strong=\"H7341\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"*. Ten|strong=\"H6235\"* cubits was|strong=\"H1004\"* its|strong=\"H5921\"* width|strong=\"H7341\"* in|strong=\"H5921\"* front|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* windows|strong=\"H2474\"* of|strong=\"H1004\"* fixed lattice work|strong=\"H6213\"* for|strong=\"H6213\"* the|strong=\"H6213\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 5, + "text": "Against|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, he|strong=\"H6213\"* built|strong=\"H1129\"* floors all|strong=\"H5439\"* around|strong=\"H5439\"*, against|strong=\"H5921\"* the|strong=\"H5921\"* walls|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, both|strong=\"H5921\"* of|strong=\"H1004\"* the|strong=\"H5921\"* temple|strong=\"H1004\"* and|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5921\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"*; and|strong=\"H1004\"* he|strong=\"H6213\"* made|strong=\"H6213\"* side|strong=\"H5439\"* rooms|strong=\"H1004\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3588\"* lowest|strong=\"H8481\"* floor|strong=\"H8484\"* was|strong=\"H1004\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"* wide|strong=\"H7341\"*, and|strong=\"H1004\"* the|strong=\"H3588\"* middle|strong=\"H8484\"* was|strong=\"H1004\"* six|strong=\"H8337\"* cubits|strong=\"H2568\"* wide|strong=\"H7341\"*, and|strong=\"H1004\"* the|strong=\"H3588\"* third|strong=\"H7992\"* was|strong=\"H1004\"* seven|strong=\"H7651\"* cubits|strong=\"H2568\"* wide|strong=\"H7341\"*; for|strong=\"H3588\"* on|strong=\"H1004\"* the|strong=\"H3588\"* outside|strong=\"H2351\"* he|strong=\"H3588\"* made|strong=\"H5414\"* offsets|strong=\"H4052\"* in|strong=\"H1004\"* the|strong=\"H3588\"* wall|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H3588\"* house|strong=\"H1004\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, that|strong=\"H3588\"* the|strong=\"H3588\"* beams should|strong=\"H3588\"* not|strong=\"H1115\"* be|strong=\"H5414\"* inserted|strong=\"H5414\"* into|strong=\"H5414\"* the|strong=\"H3588\"* walls|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H3588\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* house|strong=\"H1004\"*, when|strong=\"H8085\"* it|strong=\"H3808\"* was|strong=\"H1004\"* under|strong=\"H1004\"* construction|strong=\"H1129\"*, was|strong=\"H1004\"* built|strong=\"H1129\"* of|strong=\"H1004\"* stone prepared|strong=\"H8003\"* at|strong=\"H1004\"* the|strong=\"H3605\"* quarry|strong=\"H4551\"*; and|strong=\"H1004\"* no|strong=\"H3808\"* hammer|strong=\"H4717\"* or|strong=\"H3808\"* ax or|strong=\"H3808\"* any|strong=\"H3605\"* tool|strong=\"H3627\"* of|strong=\"H1004\"* iron|strong=\"H1270\"* was|strong=\"H1004\"* heard|strong=\"H8085\"* in|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* while|strong=\"H1004\"* it|strong=\"H3808\"* was|strong=\"H1004\"* under|strong=\"H1004\"* construction|strong=\"H1129\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* door|strong=\"H6607\"* for|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8484\"* side|strong=\"H3802\"* rooms|strong=\"H1004\"* was|strong=\"H1004\"* in|strong=\"H5921\"* the|strong=\"H5921\"* right|strong=\"H3233\"* side|strong=\"H3802\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"*. They|strong=\"H5921\"* went|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H5921\"* winding|strong=\"H3883\"* stairs|strong=\"H3883\"* into|strong=\"H5927\"* the|strong=\"H5921\"* middle|strong=\"H8484\"* floor|strong=\"H8484\"*, and|strong=\"H1004\"* out|strong=\"H4480\"* of|strong=\"H1004\"* the|strong=\"H5921\"* middle|strong=\"H8484\"* into|strong=\"H5927\"* the|strong=\"H5921\"* third|strong=\"H7992\"*." + }, + { + "verseNum": 9, + "text": "So he|strong=\"H1004\"* built|strong=\"H1129\"* the|strong=\"H1129\"* house|strong=\"H1004\"* and|strong=\"H1004\"* finished|strong=\"H3615\"* it|strong=\"H3615\"*; and|strong=\"H1004\"* he|strong=\"H1004\"* covered|strong=\"H5603\"* the|strong=\"H1129\"* house|strong=\"H1004\"* with|strong=\"H1004\"* beams|strong=\"H1356\"* and|strong=\"H1004\"* planks|strong=\"H7713\"* of|strong=\"H1004\"* cedar." + }, + { + "verseNum": 10, + "text": "He|strong=\"H2568\"* built|strong=\"H1129\"* the|strong=\"H3605\"* floors all|strong=\"H3605\"* along|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, each|strong=\"H3605\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"* high|strong=\"H6967\"*; and|strong=\"H1004\"* they|strong=\"H5921\"* rested on|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"* with|strong=\"H1004\"* timbers|strong=\"H6086\"* of|strong=\"H1004\"* cedar|strong=\"H6967\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Solomon|strong=\"H8010\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 12, + "text": "“Concerning|strong=\"H1697\"* this|strong=\"H2088\"* house|strong=\"H1004\"* which|strong=\"H1697\"* you|strong=\"H3605\"* are|strong=\"H1697\"* building|strong=\"H1129\"*, if you|strong=\"H3605\"* will|strong=\"H1004\"* walk|strong=\"H3212\"* in|strong=\"H6213\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, and|strong=\"H6965\"* execute|strong=\"H6213\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*, and|strong=\"H6965\"* keep|strong=\"H8104\"* all|strong=\"H3605\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"* to|strong=\"H1696\"* walk|strong=\"H3212\"* in|strong=\"H6213\"* them|strong=\"H6213\"*, then|strong=\"H6965\"* I|strong=\"H1697\"* will|strong=\"H1004\"* establish|strong=\"H6965\"* my|strong=\"H8104\"* word|strong=\"H1697\"* with|strong=\"H1004\"* you|strong=\"H3605\"*, which|strong=\"H1697\"* I|strong=\"H1697\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* David|strong=\"H1732\"* your|strong=\"H3605\"* father." + }, + { + "verseNum": 13, + "text": "I|strong=\"H3808\"* will|strong=\"H5971\"* dwell|strong=\"H7931\"* among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* will|strong=\"H5971\"* not|strong=\"H3808\"* forsake|strong=\"H5800\"* my|strong=\"H8432\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 14, + "text": "So Solomon|strong=\"H8010\"* built|strong=\"H1129\"* the|strong=\"H1129\"* house|strong=\"H1004\"* and|strong=\"H1004\"* finished|strong=\"H3615\"* it|strong=\"H1129\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H5704\"* built|strong=\"H1129\"* the|strong=\"H1129\"* walls|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H1129\"* house|strong=\"H1004\"* within|strong=\"H1004\"* with|strong=\"H1004\"* boards|strong=\"H6763\"* of|strong=\"H1004\"* cedar; from|strong=\"H5704\"* the|strong=\"H1129\"* floor|strong=\"H7172\"* of|strong=\"H1004\"* the|strong=\"H1129\"* house|strong=\"H1004\"* to|strong=\"H5704\"* the|strong=\"H1129\"* walls|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H1129\"* ceiling|strong=\"H7023\"*, he|strong=\"H5704\"* covered|strong=\"H6823\"* them|strong=\"H5704\"* on|strong=\"H1004\"* the|strong=\"H1129\"* inside|strong=\"H1004\"* with|strong=\"H1004\"* wood|strong=\"H6086\"*. He|strong=\"H5704\"* covered|strong=\"H6823\"* the|strong=\"H1129\"* floor|strong=\"H7172\"* of|strong=\"H1004\"* the|strong=\"H1129\"* house|strong=\"H1004\"* with|strong=\"H1004\"* cypress|strong=\"H1265\"* boards|strong=\"H6763\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H5704\"* built|strong=\"H1129\"* twenty|strong=\"H6242\"* cubits of|strong=\"H1004\"* the|strong=\"H4480\"* back|strong=\"H1004\"* part|strong=\"H3411\"* of|strong=\"H1004\"* the|strong=\"H4480\"* house|strong=\"H1004\"* with|strong=\"H1004\"* boards|strong=\"H6763\"* of|strong=\"H1004\"* cedar from|strong=\"H4480\"* the|strong=\"H4480\"* floor|strong=\"H7172\"* to|strong=\"H5704\"* the|strong=\"H4480\"* ceiling|strong=\"H7023\"*. He|strong=\"H5704\"* built|strong=\"H1129\"* this|strong=\"H1004\"* within|strong=\"H1004\"*, for|strong=\"H5704\"* an|strong=\"H1129\"* inner|strong=\"H1687\"* sanctuary|strong=\"H6944\"*, even|strong=\"H5704\"* for|strong=\"H5704\"* the|strong=\"H4480\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*." + }, + { + "verseNum": 17, + "text": "In|strong=\"H1004\"* front of|strong=\"H1004\"* the|strong=\"H1961\"* temple|strong=\"H1004\"* sanctuary|strong=\"H1004\"* was|strong=\"H1961\"* forty cubits long." + }, + { + "verseNum": 18, + "text": "There|strong=\"H3605\"* was|strong=\"H1004\"* cedar on|strong=\"H7200\"* the|strong=\"H3605\"* house|strong=\"H1004\"* within|strong=\"H1004\"*, carved|strong=\"H4734\"* with|strong=\"H1004\"* buds and|strong=\"H1004\"* open flowers|strong=\"H6731\"*. All|strong=\"H3605\"* was|strong=\"H1004\"* cedar. No|strong=\"H3605\"* stone was|strong=\"H1004\"* visible|strong=\"H7200\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H8033\"* prepared|strong=\"H3559\"* an|strong=\"H5414\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"* in|strong=\"H3068\"* the|strong=\"H5414\"* middle|strong=\"H8432\"* of|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"* within|strong=\"H8432\"*, to|strong=\"H3068\"* set|strong=\"H5414\"* the|strong=\"H5414\"* ark of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 20, + "text": "Within|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"* was|strong=\"H6967\"* twenty|strong=\"H6242\"* cubits in|strong=\"H6440\"* length|strong=\"H6967\"*, and|strong=\"H6242\"* twenty|strong=\"H6242\"* cubits in|strong=\"H6440\"* width|strong=\"H7341\"*, and|strong=\"H6242\"* twenty|strong=\"H6242\"* cubits in|strong=\"H6440\"* its|strong=\"H6440\"* height|strong=\"H6967\"*. He|strong=\"H1687\"* overlaid|strong=\"H6823\"* it|strong=\"H6440\"* with|strong=\"H6440\"* pure|strong=\"H5462\"* gold|strong=\"H2091\"*. He|strong=\"H1687\"* covered|strong=\"H6823\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* with|strong=\"H6440\"* cedar|strong=\"H6967\"*." + }, + { + "verseNum": 21, + "text": "So|strong=\"H5674\"* Solomon|strong=\"H8010\"* overlaid|strong=\"H6823\"* the|strong=\"H6440\"* house|strong=\"H1004\"* within|strong=\"H1004\"* with|strong=\"H1004\"* pure|strong=\"H5462\"* gold|strong=\"H2091\"*. He|strong=\"H1004\"* drew|strong=\"H5674\"* chains|strong=\"H7572\"* of|strong=\"H1004\"* gold|strong=\"H2091\"* across|strong=\"H5674\"* before|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"*, and|strong=\"H1004\"* he|strong=\"H1004\"* overlaid|strong=\"H6823\"* it|strong=\"H6440\"* with|strong=\"H1004\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H5704\"* overlaid|strong=\"H6823\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* house|strong=\"H1004\"* with|strong=\"H1004\"* gold|strong=\"H2091\"*, until|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* was|strong=\"H1004\"* finished|strong=\"H8552\"*. He|strong=\"H5704\"* also overlaid|strong=\"H6823\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* altar|strong=\"H4196\"* that|strong=\"H3605\"* belonged to|strong=\"H5704\"* the|strong=\"H3605\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"* with|strong=\"H1004\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 23, + "text": "In|strong=\"H6213\"* the|strong=\"H6213\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"* he|strong=\"H6213\"* made|strong=\"H6213\"* two|strong=\"H8147\"* cherubim|strong=\"H3742\"*+ 6:23 “Cherubim” is plural of “cherub”, an angelic being.* of|strong=\"H6086\"* olive|strong=\"H8081\"* wood|strong=\"H6086\"*, each|strong=\"H8147\"* ten|strong=\"H6235\"* cubits high|strong=\"H6967\"*." + }, + { + "verseNum": 24, + "text": "Five|strong=\"H2568\"* cubits|strong=\"H2568\"* was|strong=\"H3742\"* the|strong=\"H5704\"* length of|strong=\"H3671\"* one|strong=\"H3671\"* wing|strong=\"H3671\"* of|strong=\"H3671\"* the|strong=\"H5704\"* cherub|strong=\"H3742\"*, and|strong=\"H2568\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"* was|strong=\"H3742\"* the|strong=\"H5704\"* length of|strong=\"H3671\"* the|strong=\"H5704\"* other|strong=\"H8145\"* wing|strong=\"H3671\"* of|strong=\"H3671\"* the|strong=\"H5704\"* cherub|strong=\"H3742\"*. From|strong=\"H5704\"* the|strong=\"H5704\"* tip of|strong=\"H3671\"* one|strong=\"H3671\"* wing|strong=\"H3671\"* to|strong=\"H5704\"* the|strong=\"H5704\"* tip of|strong=\"H3671\"* the|strong=\"H5704\"* other|strong=\"H8145\"* was|strong=\"H3742\"* ten|strong=\"H6235\"* cubits|strong=\"H2568\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H8147\"* other|strong=\"H8145\"* cherub|strong=\"H3742\"* was|strong=\"H3742\"* ten|strong=\"H6235\"* cubits. Both|strong=\"H8147\"* the|strong=\"H8147\"* cherubim|strong=\"H3742\"* were|strong=\"H3742\"* of|strong=\"H8147\"* one|strong=\"H8147\"* measure|strong=\"H4060\"* and|strong=\"H8147\"* one|strong=\"H8147\"* form|strong=\"H7095\"*." + }, + { + "verseNum": 26, + "text": "One|strong=\"H3651\"* cherub|strong=\"H3742\"* was|strong=\"H6967\"* ten|strong=\"H6235\"* cubits high|strong=\"H6967\"*, and|strong=\"H3742\"* so|strong=\"H3651\"* was|strong=\"H6967\"* the|strong=\"H3651\"* other|strong=\"H8145\"* cherub|strong=\"H3742\"*." + }, + { + "verseNum": 27, + "text": "He|strong=\"H1004\"* set|strong=\"H5414\"* the|strong=\"H5414\"* cherubim|strong=\"H3742\"* within|strong=\"H8432\"* the|strong=\"H5414\"* inner|strong=\"H6442\"* house|strong=\"H1004\"*. The|strong=\"H5414\"* wings|strong=\"H3671\"* of|strong=\"H1004\"* the|strong=\"H5414\"* cherubim|strong=\"H3742\"* were|strong=\"H3742\"* stretched|strong=\"H6566\"* out|strong=\"H6566\"*, so|strong=\"H5414\"* that|strong=\"H5414\"* the|strong=\"H5414\"* wing|strong=\"H3671\"* of|strong=\"H1004\"* the|strong=\"H5414\"* one|strong=\"H3671\"* touched|strong=\"H5060\"* the|strong=\"H5414\"* one|strong=\"H3671\"* wall|strong=\"H7023\"* and|strong=\"H1004\"* the|strong=\"H5414\"* wing|strong=\"H3671\"* of|strong=\"H1004\"* the|strong=\"H5414\"* other|strong=\"H8145\"* cherub|strong=\"H3742\"* touched|strong=\"H5060\"* the|strong=\"H5414\"* other|strong=\"H8145\"* wall|strong=\"H7023\"*; and|strong=\"H1004\"* their|strong=\"H5414\"* wings|strong=\"H3671\"* touched|strong=\"H5060\"* one|strong=\"H3671\"* another|strong=\"H8145\"* in|strong=\"H1004\"* the|strong=\"H5414\"* middle|strong=\"H8432\"* of|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 28, + "text": "He overlaid|strong=\"H6823\"* the|strong=\"H6823\"* cherubim|strong=\"H3742\"* with|strong=\"H6823\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 29, + "text": "He|strong=\"H3605\"* carved|strong=\"H7049\"* all|strong=\"H3605\"* the|strong=\"H3605\"* walls|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* around|strong=\"H4524\"* with|strong=\"H1004\"* carved|strong=\"H7049\"* figures|strong=\"H4734\"* of|strong=\"H1004\"* cherubim|strong=\"H3742\"*, palm|strong=\"H8561\"* trees|strong=\"H8561\"*, and|strong=\"H1004\"* open|strong=\"H6440\"* flowers|strong=\"H6731\"*, inside|strong=\"H1004\"* and|strong=\"H1004\"* outside|strong=\"H2435\"*." + }, + { + "verseNum": 30, + "text": "He|strong=\"H1004\"* overlaid|strong=\"H6823\"* the|strong=\"H6823\"* floor|strong=\"H7172\"* of|strong=\"H1004\"* the|strong=\"H6823\"* house|strong=\"H1004\"* with|strong=\"H1004\"* gold|strong=\"H2091\"*, inside|strong=\"H1004\"* and|strong=\"H1004\"* outside|strong=\"H2435\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"H6213\"* the|strong=\"H6213\"* entrance|strong=\"H6607\"* of|strong=\"H6086\"* the|strong=\"H6213\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"*, he|strong=\"H6213\"* made|strong=\"H6213\"* doors|strong=\"H1817\"* of|strong=\"H6086\"* olive|strong=\"H8081\"* wood|strong=\"H6086\"*. The|strong=\"H6213\"* lintel and|strong=\"H6086\"* door|strong=\"H6607\"* posts|strong=\"H4201\"* were a|strong=\"H3068\"* fifth|strong=\"H2549\"* part|strong=\"H2549\"* of|strong=\"H6086\"* the|strong=\"H6213\"* wall." + }, + { + "verseNum": 32, + "text": "So|strong=\"H5921\"* he|strong=\"H8147\"* made|strong=\"H6086\"* two|strong=\"H8147\"* doors|strong=\"H1817\"* of|strong=\"H6086\"* olive|strong=\"H8081\"* wood|strong=\"H6086\"*; and|strong=\"H6086\"* he|strong=\"H8147\"* carved|strong=\"H7049\"* on|strong=\"H5921\"* them|strong=\"H5921\"* carvings|strong=\"H4734\"* of|strong=\"H6086\"* cherubim|strong=\"H3742\"*, palm|strong=\"H8561\"* trees|strong=\"H6086\"*, and|strong=\"H6086\"* open flowers|strong=\"H6731\"*, and|strong=\"H6086\"* overlaid|strong=\"H6823\"* them|strong=\"H5921\"* with|strong=\"H5921\"* gold|strong=\"H2091\"*. He|strong=\"H8147\"* spread|strong=\"H3742\"* the|strong=\"H5921\"* gold|strong=\"H2091\"* on|strong=\"H5921\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* and|strong=\"H6086\"* on|strong=\"H5921\"* the|strong=\"H5921\"* palm|strong=\"H8561\"* trees|strong=\"H6086\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H6213\"* also|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* entrance|strong=\"H6607\"* of|strong=\"H6086\"* the|strong=\"H6213\"* temple|strong=\"H1964\"* door|strong=\"H6607\"* posts|strong=\"H4201\"* of|strong=\"H6086\"* olive|strong=\"H8081\"* wood|strong=\"H6086\"*, out|strong=\"H6213\"* of|strong=\"H6086\"* a|strong=\"H3068\"* fourth|strong=\"H7243\"* part|strong=\"H7243\"* of|strong=\"H6086\"* the|strong=\"H6213\"* wall," + }, + { + "verseNum": 34, + "text": "and|strong=\"H6086\"* two|strong=\"H8147\"* doors|strong=\"H1817\"* of|strong=\"H6086\"* cypress|strong=\"H1265\"* wood|strong=\"H6086\"*. The|strong=\"H8147\"* two|strong=\"H8147\"* leaves|strong=\"H1817\"* of|strong=\"H6086\"* the|strong=\"H8147\"* one|strong=\"H7050\"* door|strong=\"H1817\"* were|strong=\"H8147\"* folding|strong=\"H1550\"*, and|strong=\"H6086\"* the|strong=\"H8147\"* two|strong=\"H8147\"* leaves|strong=\"H1817\"* of|strong=\"H6086\"* the|strong=\"H8147\"* other|strong=\"H8145\"* door|strong=\"H1817\"* were|strong=\"H8147\"* folding|strong=\"H1550\"*." + }, + { + "verseNum": 35, + "text": "He|strong=\"H5921\"* carved|strong=\"H7049\"* cherubim|strong=\"H3742\"*, palm|strong=\"H8561\"* trees|strong=\"H8561\"*, and|strong=\"H2091\"* open flowers|strong=\"H6731\"*; and|strong=\"H2091\"* he|strong=\"H5921\"* overlaid|strong=\"H6823\"* them|strong=\"H5921\"* with|strong=\"H5921\"* gold|strong=\"H2091\"* fitted|strong=\"H3474\"* on|strong=\"H5921\"* the|strong=\"H5921\"* engraved|strong=\"H2707\"* work|strong=\"H2707\"*." + }, + { + "verseNum": 36, + "text": "He|strong=\"H1129\"* built|strong=\"H1129\"* the|strong=\"H1129\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* with|strong=\"H2691\"* three|strong=\"H7969\"* courses of|strong=\"H2905\"* cut|strong=\"H1496\"* stone|strong=\"H1496\"* and|strong=\"H7969\"* a|strong=\"H3068\"* course of|strong=\"H2905\"* cedar beams|strong=\"H3773\"*." + }, + { + "verseNum": 37, + "text": "The|strong=\"H3068\"* foundation|strong=\"H3245\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* was|strong=\"H3068\"* laid|strong=\"H3245\"* in|strong=\"H8141\"* the|strong=\"H3068\"* fourth|strong=\"H7243\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* month|strong=\"H3391\"* Ziv|strong=\"H2099\"*." + }, + { + "verseNum": 38, + "text": "In|strong=\"H8141\"* the|strong=\"H3605\"* eleventh|strong=\"H6240\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* month|strong=\"H2320\"* Bul, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* eighth|strong=\"H8066\"* month|strong=\"H2320\"*, the|strong=\"H3605\"* house|strong=\"H1004\"* was|strong=\"H1931\"* finished|strong=\"H3615\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* its|strong=\"H3605\"* parts|strong=\"H1697\"* and|strong=\"H4941\"* according|strong=\"H4941\"* to|strong=\"H1004\"* all|strong=\"H3605\"* its|strong=\"H3605\"* specifications. So|strong=\"H1697\"* he|strong=\"H1931\"* spent|strong=\"H3615\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* building|strong=\"H1129\"* it|strong=\"H1931\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Solomon|strong=\"H8010\"* was|strong=\"H1004\"* building|strong=\"H1129\"* his|strong=\"H3605\"* own house|strong=\"H1004\"* thirteen|strong=\"H7969\"* years|strong=\"H8141\"*, and|strong=\"H1004\"* he|strong=\"H3605\"* finished|strong=\"H3615\"* all|strong=\"H3605\"* his|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"H5921\"* he|strong=\"H1004\"* built|strong=\"H1129\"* the|strong=\"H5921\"* House|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5921\"* Forest|strong=\"H3293\"* of|strong=\"H1004\"* Lebanon|strong=\"H3844\"*. Its|strong=\"H5921\"* length|strong=\"H6967\"* was|strong=\"H1004\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits,+ 7:2 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* its|strong=\"H5921\"* width|strong=\"H7341\"* fifty|strong=\"H2572\"* cubits, and|strong=\"H3967\"* its|strong=\"H5921\"* height|strong=\"H6967\"* thirty|strong=\"H7970\"* cubits, on|strong=\"H5921\"* four rows|strong=\"H2905\"* of|strong=\"H1004\"* cedar|strong=\"H6967\"* pillars|strong=\"H5982\"*, with|strong=\"H1004\"* cedar|strong=\"H6967\"* beams|strong=\"H3773\"* on|strong=\"H5921\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H5921\"* was|strong=\"H5982\"* covered|strong=\"H5603\"* with|strong=\"H5921\"* cedar above|strong=\"H4605\"* over|strong=\"H5921\"* the|strong=\"H5921\"* forty-five beams|strong=\"H6763\"* that|strong=\"H6763\"* were|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*, fifteen|strong=\"H2568\"* in|strong=\"H5921\"* a|strong=\"H3068\"* row|strong=\"H2905\"*." + }, + { + "verseNum": 4, + "text": "There were|strong=\"H7969\"* beams in|strong=\"H6471\"* three|strong=\"H7969\"* rows|strong=\"H2905\"*, and|strong=\"H7969\"* window|strong=\"H4237\"* was|strong=\"H4237\"* facing window|strong=\"H4237\"* in|strong=\"H6471\"* three|strong=\"H7969\"* ranks|strong=\"H6471\"*." + }, + { + "verseNum": 5, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* doors|strong=\"H6607\"* and|strong=\"H7969\"* posts|strong=\"H4201\"* were|strong=\"H7969\"* made|strong=\"H3605\"* square|strong=\"H7251\"* with|strong=\"H3605\"* beams; and|strong=\"H7969\"* window|strong=\"H4237\"* was|strong=\"H3605\"* facing window|strong=\"H4237\"* in|strong=\"H6607\"* three|strong=\"H7969\"* ranks|strong=\"H6471\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6440\"* hall of|strong=\"H6440\"* pillars|strong=\"H5982\"*. Its|strong=\"H5921\"* length|strong=\"H5921\"* was|strong=\"H5982\"* fifty|strong=\"H2572\"* cubits and|strong=\"H7970\"* its|strong=\"H5921\"* width|strong=\"H7341\"* thirty|strong=\"H7970\"* cubits, with|strong=\"H6213\"* a|strong=\"H3068\"* porch before|strong=\"H6440\"* them|strong=\"H5921\"*, and|strong=\"H7970\"* pillars|strong=\"H5982\"* and|strong=\"H7970\"* a|strong=\"H3068\"* threshold|strong=\"H5646\"* before|strong=\"H6440\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H5704\"* made|strong=\"H6213\"* the|strong=\"H6213\"* porch of|strong=\"H3678\"* the|strong=\"H6213\"* throne|strong=\"H3678\"* where|strong=\"H8033\"* he|strong=\"H5704\"* was|strong=\"H6213\"* to|strong=\"H5704\"* judge|strong=\"H8199\"*, even|strong=\"H5704\"* the|strong=\"H6213\"* porch of|strong=\"H3678\"* judgment|strong=\"H4941\"*; and|strong=\"H4941\"* it|strong=\"H6213\"* was|strong=\"H6213\"* covered|strong=\"H5603\"* with|strong=\"H6213\"* cedar from|strong=\"H5704\"* floor|strong=\"H7172\"* to|strong=\"H5704\"* floor|strong=\"H7172\"*." + }, + { + "verseNum": 8, + "text": "His|strong=\"H3947\"* house|strong=\"H1004\"* where|strong=\"H8033\"* he|strong=\"H8033\"* was|strong=\"H1961\"* to|strong=\"H1961\"* dwell|strong=\"H3427\"*, the|strong=\"H3947\"* other|strong=\"H2088\"* court|strong=\"H2691\"* within|strong=\"H1004\"* the|strong=\"H3947\"* porch, was|strong=\"H1961\"* of|strong=\"H1004\"* the|strong=\"H3947\"* same|strong=\"H2088\"* construction. He|strong=\"H8033\"* made|strong=\"H6213\"* also|strong=\"H6213\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H6213\"* Pharaoh|strong=\"H6547\"*’s daughter|strong=\"H1323\"* (whom Solomon|strong=\"H8010\"* had|strong=\"H1961\"* taken|strong=\"H3947\"* as|strong=\"H1961\"* wife), like|strong=\"H1961\"* this|strong=\"H2088\"* porch." + }, + { + "verseNum": 9, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1419\"* of|strong=\"H1004\"* costly|strong=\"H3368\"* stones|strong=\"H1496\"*, even|strong=\"H5704\"* of|strong=\"H1004\"* stone|strong=\"H1496\"* cut|strong=\"H1496\"* according to|strong=\"H5704\"* measure|strong=\"H4060\"*, sawed|strong=\"H1641\"* with|strong=\"H1004\"* saws|strong=\"H4050\"*, inside|strong=\"H1004\"* and|strong=\"H1419\"* outside|strong=\"H2351\"*, even|strong=\"H5704\"* from|strong=\"H5704\"* the|strong=\"H3605\"* foundation|strong=\"H4527\"* to|strong=\"H5704\"* the|strong=\"H3605\"* coping|strong=\"H2947\"*, and|strong=\"H1419\"* so|strong=\"H5704\"* on|strong=\"H1004\"* the|strong=\"H3605\"* outside|strong=\"H2351\"* to|strong=\"H5704\"* the|strong=\"H3605\"* great|strong=\"H1419\"* court|strong=\"H2691\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3245\"* foundation|strong=\"H3245\"* was|strong=\"H1419\"* of|strong=\"H1419\"* costly|strong=\"H3368\"* stones, even great|strong=\"H1419\"* stones, stones of|strong=\"H1419\"* ten|strong=\"H6235\"* cubits and|strong=\"H1419\"* stones of|strong=\"H1419\"* eight|strong=\"H8083\"* cubits." + }, + { + "verseNum": 11, + "text": "Above|strong=\"H4605\"* were|strong=\"H4605\"* costly|strong=\"H3368\"* stones|strong=\"H1496\"*, even cut|strong=\"H1496\"* stone|strong=\"H1496\"*, according to|strong=\"H4605\"* measure|strong=\"H4060\"*, and|strong=\"H4605\"* cedar wood." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3068\"* great|strong=\"H1419\"* court|strong=\"H2691\"* around|strong=\"H5439\"* had|strong=\"H3068\"* three|strong=\"H7969\"* courses|strong=\"H5439\"* of|strong=\"H1004\"* cut|strong=\"H1496\"* stone|strong=\"H1496\"* with|strong=\"H1004\"* a|strong=\"H3068\"* course of|strong=\"H1004\"* cedar beams|strong=\"H3773\"*, like|strong=\"H1004\"* the|strong=\"H3068\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* the|strong=\"H3068\"* porch of|strong=\"H1004\"* the|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 13, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* sent|strong=\"H7971\"* and|strong=\"H7971\"* brought|strong=\"H3947\"* Hiram|strong=\"H2438\"* out|strong=\"H7971\"* of|strong=\"H4428\"* Tyre|strong=\"H6865\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* widow of|strong=\"H1121\"* the|strong=\"H3605\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*, and|strong=\"H1121\"* his|strong=\"H3605\"* father|strong=\"H1121\"* was|strong=\"H1931\"* a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* Tyre|strong=\"H6876\"*, a|strong=\"H3068\"* worker|strong=\"H6213\"* in|strong=\"H6213\"* bronze|strong=\"H5178\"*; and|strong=\"H1121\"* he|strong=\"H1931\"* was|strong=\"H1931\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* wisdom|strong=\"H2451\"* and|strong=\"H1121\"* understanding|strong=\"H8394\"* and|strong=\"H1121\"* skill|strong=\"H2451\"* to|strong=\"H6213\"* work|strong=\"H4399\"* all|strong=\"H3605\"* works|strong=\"H6213\"* in|strong=\"H6213\"* bronze|strong=\"H5178\"*. He|strong=\"H1931\"* came|strong=\"H4428\"* to|strong=\"H6213\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* and|strong=\"H1121\"* performed|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H5178\"* he|strong=\"H8147\"* fashioned|strong=\"H6696\"* the|strong=\"H5437\"* two|strong=\"H8147\"* pillars|strong=\"H5982\"* of|strong=\"H5982\"* bronze|strong=\"H5178\"*, eighteen|strong=\"H8083\"* cubits high|strong=\"H6967\"* apiece|strong=\"H5982\"*; and|strong=\"H8147\"* a|strong=\"H3068\"* line|strong=\"H2339\"* of|strong=\"H5982\"* twelve|strong=\"H8147\"* cubits encircled|strong=\"H5437\"* either|strong=\"H8145\"* of|strong=\"H5982\"* them|strong=\"H8147\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* two|strong=\"H8147\"* capitals|strong=\"H3805\"* of|strong=\"H7218\"* molten|strong=\"H3332\"* bronze|strong=\"H5178\"* to|strong=\"H6213\"* set|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tops|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*. The|strong=\"H5921\"* height|strong=\"H6967\"* of|strong=\"H7218\"* the|strong=\"H5921\"* one|strong=\"H6213\"* capital|strong=\"H3805\"* was|strong=\"H7218\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*, and|strong=\"H7218\"* the|strong=\"H5921\"* height|strong=\"H6967\"* of|strong=\"H7218\"* the|strong=\"H5921\"* other|strong=\"H8145\"* capital|strong=\"H3805\"* was|strong=\"H7218\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*." + }, + { + "verseNum": 17, + "text": "There were|strong=\"H7218\"* nets|strong=\"H7638\"* of|strong=\"H7218\"* checker|strong=\"H7639\"* work|strong=\"H4639\"* and|strong=\"H7218\"* wreaths|strong=\"H1434\"* of|strong=\"H7218\"* chain|strong=\"H8333\"* work|strong=\"H4639\"* for|strong=\"H5921\"* the|strong=\"H5921\"* capitals|strong=\"H3805\"* which|strong=\"H3805\"* were|strong=\"H7218\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*: seven|strong=\"H7651\"* for|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H7651\"* capital|strong=\"H3805\"*, and|strong=\"H7218\"* seven|strong=\"H7651\"* for|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H8145\"* capital|strong=\"H3805\"*." + }, + { + "verseNum": 18, + "text": "So|strong=\"H3651\"* he|strong=\"H3651\"* made|strong=\"H6213\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*; and|strong=\"H7218\"* there were|strong=\"H7218\"* two|strong=\"H8147\"* rows|strong=\"H2905\"* of|strong=\"H7218\"* pomegranates|strong=\"H7416\"* around|strong=\"H5439\"* the|strong=\"H5921\"* one|strong=\"H6213\"* network|strong=\"H7639\"*, to|strong=\"H5921\"* cover|strong=\"H3680\"* the|strong=\"H5921\"* capitals|strong=\"H3805\"* that|strong=\"H3651\"* were|strong=\"H7218\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*; and|strong=\"H7218\"* he|strong=\"H3651\"* did|strong=\"H6213\"* so|strong=\"H3651\"* for|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H8145\"* capital|strong=\"H3805\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5921\"* capitals|strong=\"H3805\"* that|strong=\"H3805\"* were|strong=\"H7218\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"* in|strong=\"H5921\"* the|strong=\"H5921\"* porch were|strong=\"H7218\"* of|strong=\"H7218\"* lily|strong=\"H7799\"* work|strong=\"H4639\"*, four cubits." + }, + { + "verseNum": 20, + "text": "There were|strong=\"H8147\"* capitals|strong=\"H3805\"* above|strong=\"H4605\"* also|strong=\"H1571\"* on|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* pillars|strong=\"H5982\"*, close|strong=\"H5980\"* by|strong=\"H5921\"* the|strong=\"H5921\"* belly which|strong=\"H3805\"* was|strong=\"H3805\"* beside|strong=\"H5921\"* the|strong=\"H5921\"* network|strong=\"H7639\"*. There were|strong=\"H8147\"* two|strong=\"H8147\"* hundred|strong=\"H3967\"* pomegranates|strong=\"H7416\"* in|strong=\"H5921\"* rows|strong=\"H2905\"* around|strong=\"H5439\"* the|strong=\"H5921\"* other|strong=\"H8145\"* capital|strong=\"H3805\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H7121\"* set|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H7121\"* pillars|strong=\"H5982\"* at|strong=\"H6965\"* the|strong=\"H7121\"* porch of|strong=\"H8034\"* the|strong=\"H7121\"* temple|strong=\"H1964\"*. He|strong=\"H7121\"* set|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H7121\"* right|strong=\"H3233\"* pillar|strong=\"H5982\"* and|strong=\"H6965\"* called|strong=\"H7121\"* its|strong=\"H6965\"* name|strong=\"H8034\"* Jachin|strong=\"H3199\"*; and|strong=\"H6965\"* he|strong=\"H7121\"* set|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H7121\"* left|strong=\"H8042\"* pillar|strong=\"H5982\"* and|strong=\"H6965\"* called|strong=\"H7121\"* its|strong=\"H6965\"* name|strong=\"H8034\"* Boaz|strong=\"H1162\"*." + }, + { + "verseNum": 22, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* tops|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"* was|strong=\"H7218\"* lily|strong=\"H7799\"* work|strong=\"H4399\"*. So|strong=\"H5921\"* the|strong=\"H5921\"* work|strong=\"H4399\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"* was|strong=\"H7218\"* finished|strong=\"H8552\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H5704\"* made|strong=\"H6213\"* the|strong=\"H6213\"* molten sea|strong=\"H3220\"* ten|strong=\"H6235\"* cubits|strong=\"H2568\"* from|strong=\"H5704\"* brim|strong=\"H8193\"* to|strong=\"H5704\"* brim|strong=\"H8193\"*, round|strong=\"H5439\"* in|strong=\"H6213\"* shape. Its|strong=\"H6213\"* height|strong=\"H6967\"* was|strong=\"H6967\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*; and|strong=\"H7970\"* a|strong=\"H3068\"* line of|strong=\"H8193\"* thirty|strong=\"H7970\"* cubits|strong=\"H2568\"* encircled|strong=\"H5437\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 24, + "text": "Under|strong=\"H8478\"* its|strong=\"H8478\"* brim|strong=\"H8193\"* around|strong=\"H5439\"* there|strong=\"H8478\"* were|strong=\"H8147\"* buds which encircled|strong=\"H5437\"* it|strong=\"H5439\"* for|strong=\"H8478\"* ten|strong=\"H6235\"* cubits, encircling|strong=\"H5437\"* the|strong=\"H8478\"* sea|strong=\"H3220\"*. The|strong=\"H8478\"* buds were|strong=\"H8147\"* in|strong=\"H3220\"* two|strong=\"H8147\"* rows|strong=\"H2905\"*, cast|strong=\"H3332\"* when it|strong=\"H5439\"* was|strong=\"H8193\"* cast|strong=\"H3332\"*." + }, + { + "verseNum": 25, + "text": "It|strong=\"H5921\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* twelve|strong=\"H8147\"* oxen|strong=\"H1241\"*, three|strong=\"H7969\"* looking|strong=\"H6437\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* north|strong=\"H6828\"*, and|strong=\"H1004\"* three|strong=\"H7969\"* looking|strong=\"H6437\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* west|strong=\"H3220\"*, and|strong=\"H1004\"* three|strong=\"H7969\"* looking|strong=\"H6437\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* south|strong=\"H5045\"*, and|strong=\"H1004\"* three|strong=\"H7969\"* looking|strong=\"H6437\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* east|strong=\"H4217\"*; and|strong=\"H1004\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* was|strong=\"H1004\"* set|strong=\"H5975\"* on|strong=\"H5921\"* them|strong=\"H5921\"* above|strong=\"H4605\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* their|strong=\"H3605\"* hindquarters were|strong=\"H1241\"* inward|strong=\"H1004\"*." + }, + { + "verseNum": 26, + "text": "It was|strong=\"H8193\"* a|strong=\"H3068\"* hand width thick|strong=\"H5672\"*. Its brim|strong=\"H8193\"* was|strong=\"H8193\"* worked like|strong=\"H7799\"* the|strong=\"H3557\"* brim|strong=\"H8193\"* of|strong=\"H4639\"* a|strong=\"H3068\"* cup|strong=\"H3563\"*, like|strong=\"H7799\"* the|strong=\"H3557\"* flower|strong=\"H6525\"* of|strong=\"H4639\"* a|strong=\"H3068\"* lily|strong=\"H7799\"*. It held|strong=\"H3557\"* two|strong=\"H3557\"* thousand baths|strong=\"H1324\"*." + }, + { + "verseNum": 27, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* ten|strong=\"H6235\"* bases|strong=\"H4350\"* of|strong=\"H7341\"* bronze|strong=\"H5178\"*. The|strong=\"H6213\"* length|strong=\"H6967\"* of|strong=\"H7341\"* one|strong=\"H6213\"* base|strong=\"H4350\"* was|strong=\"H6967\"* four|strong=\"H7969\"* cubits, four|strong=\"H7969\"* cubits its|strong=\"H6213\"* width|strong=\"H7341\"*, and|strong=\"H6213\"* three|strong=\"H7969\"* cubits its|strong=\"H6213\"* height|strong=\"H6967\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H2088\"* work|strong=\"H4639\"* of|strong=\"H4639\"* the|strong=\"H2088\"* bases|strong=\"H4350\"* was|strong=\"H2088\"* like|strong=\"H4526\"* this|strong=\"H2088\"*: they|strong=\"H1992\"* had|strong=\"H4350\"* panels; and|strong=\"H2088\"* there|strong=\"H1992\"* were|strong=\"H1992\"* panels between the|strong=\"H2088\"* ledges|strong=\"H7948\"*;" + }, + { + "verseNum": 29, + "text": "and|strong=\"H1241\"* on|strong=\"H5921\"* the|strong=\"H5921\"* panels that|strong=\"H1241\"* were|strong=\"H1241\"* between|strong=\"H5921\"* the|strong=\"H5921\"* ledges|strong=\"H7948\"* were|strong=\"H1241\"* lions, oxen|strong=\"H1241\"*, and|strong=\"H1241\"* cherubim|strong=\"H3742\"*; and|strong=\"H1241\"* on|strong=\"H5921\"* the|strong=\"H5921\"* ledges|strong=\"H7948\"* there|strong=\"H7948\"* was|strong=\"H3742\"* a|strong=\"H3068\"* pedestal|strong=\"H3653\"* above|strong=\"H4605\"*; and|strong=\"H1241\"* beneath|strong=\"H8478\"* the|strong=\"H5921\"* lions and|strong=\"H1241\"* oxen|strong=\"H1241\"* were|strong=\"H1241\"* wreaths|strong=\"H3914\"* of|strong=\"H5921\"* hanging|strong=\"H4174\"* work|strong=\"H4639\"*." + }, + { + "verseNum": 30, + "text": "Every|strong=\"H8478\"* base|strong=\"H4350\"* had|strong=\"H4350\"* four bronze|strong=\"H5178\"* wheels|strong=\"H6471\"* and|strong=\"H5178\"* axles|strong=\"H5633\"* of|strong=\"H8478\"* bronze|strong=\"H5178\"*; and|strong=\"H5178\"* its|strong=\"H8478\"* four feet|strong=\"H6471\"* had|strong=\"H4350\"* supports|strong=\"H3802\"*. The|strong=\"H8478\"* supports|strong=\"H3802\"* were cast|strong=\"H3333\"* beneath|strong=\"H8478\"* the|strong=\"H8478\"* basin|strong=\"H3595\"*, with|strong=\"H6471\"* wreaths|strong=\"H3914\"* at|strong=\"H3914\"* the|strong=\"H8478\"* side|strong=\"H5676\"* of|strong=\"H8478\"* each|strong=\"H6471\"*." + }, + { + "verseNum": 31, + "text": "Its|strong=\"H5921\"* opening|strong=\"H6310\"* within|strong=\"H1004\"* the|strong=\"H5921\"* capital|strong=\"H3805\"* and|strong=\"H1004\"* above|strong=\"H4605\"* was|strong=\"H1004\"* a|strong=\"H3068\"* cubit. Its|strong=\"H5921\"* opening|strong=\"H6310\"* was|strong=\"H1004\"* round|strong=\"H5696\"* like|strong=\"H1004\"* the|strong=\"H5921\"* work|strong=\"H4639\"* of|strong=\"H1004\"* a|strong=\"H3068\"* pedestal|strong=\"H3653\"*, a|strong=\"H3068\"* cubit and|strong=\"H1004\"* a|strong=\"H3068\"* half|strong=\"H2677\"*; and|strong=\"H1004\"* also|strong=\"H1571\"* on|strong=\"H5921\"* its|strong=\"H5921\"* opening|strong=\"H6310\"* were|strong=\"H1004\"* engravings|strong=\"H4734\"*, and|strong=\"H1004\"* their|strong=\"H5921\"* panels were|strong=\"H1004\"* square|strong=\"H7251\"*, not|strong=\"H3808\"* round|strong=\"H5696\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"H8478\"* four wheels were|strong=\"H3027\"* underneath|strong=\"H8478\"* the|strong=\"H8478\"* panels; and|strong=\"H3027\"* the|strong=\"H8478\"* axles|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H8478\"* wheels were|strong=\"H3027\"* in|strong=\"H3027\"* the|strong=\"H8478\"* base|strong=\"H4350\"*. The|strong=\"H8478\"* height|strong=\"H6967\"* of|strong=\"H3027\"* a|strong=\"H3068\"* wheel was|strong=\"H3027\"* a|strong=\"H3068\"* cubit and|strong=\"H3027\"* half|strong=\"H2677\"* a|strong=\"H3068\"* cubit." + }, + { + "verseNum": 33, + "text": "The|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3027\"* the|strong=\"H3605\"* wheels was|strong=\"H3027\"* like|strong=\"H4818\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3027\"* a|strong=\"H3068\"* chariot|strong=\"H4818\"* wheel. Their|strong=\"H3605\"* axles|strong=\"H3027\"*, their|strong=\"H3605\"* rims|strong=\"H1354\"*, their|strong=\"H3605\"* spokes|strong=\"H2839\"*, and|strong=\"H3027\"* their|strong=\"H3605\"* hubs|strong=\"H2840\"* were|strong=\"H3027\"* all|strong=\"H3605\"* of|strong=\"H3027\"* cast|strong=\"H3332\"* metal." + }, + { + "verseNum": 34, + "text": "There|strong=\"H4480\"* were|strong=\"H4480\"* four supports|strong=\"H3802\"* at|strong=\"H4480\"* the|strong=\"H4480\"* four corners|strong=\"H6438\"* of|strong=\"H4480\"* each base|strong=\"H4350\"*. Its|strong=\"H4350\"* supports|strong=\"H3802\"* were|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* base|strong=\"H4350\"* itself." + }, + { + "verseNum": 35, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H5921\"* base|strong=\"H4350\"* there|strong=\"H4480\"* was|strong=\"H3027\"* a|strong=\"H3068\"* round|strong=\"H5439\"* band|strong=\"H7218\"* half|strong=\"H2677\"* a|strong=\"H3068\"* cubit high|strong=\"H6967\"*; and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H5921\"* base|strong=\"H4350\"* its|strong=\"H5921\"* supports and|strong=\"H3027\"* its|strong=\"H5921\"* panels were|strong=\"H3027\"* the|strong=\"H5921\"* same|strong=\"H4480\"*." + }, + { + "verseNum": 36, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* plates|strong=\"H3871\"* of|strong=\"H3027\"* its|strong=\"H5921\"* supports and|strong=\"H3027\"* on|strong=\"H5921\"* its|strong=\"H5921\"* panels, he|strong=\"H3027\"* engraved|strong=\"H6605\"* cherubim|strong=\"H3742\"*, lions, and|strong=\"H3027\"* palm|strong=\"H8561\"* trees|strong=\"H8561\"*, each|strong=\"H5439\"* in|strong=\"H5921\"* its|strong=\"H5921\"* space|strong=\"H4626\"*, with|strong=\"H5921\"* wreaths|strong=\"H3914\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 37, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H3605\"* ten|strong=\"H6235\"* bases|strong=\"H4350\"* in|strong=\"H6213\"* this|strong=\"H2063\"* way|strong=\"H2063\"*: all|strong=\"H3605\"* of|strong=\"H3605\"* them|strong=\"H6213\"* had|strong=\"H4350\"* one|strong=\"H3605\"* casting|strong=\"H4165\"*, one|strong=\"H3605\"* measure|strong=\"H4060\"*, and|strong=\"H6213\"* one|strong=\"H3605\"* form|strong=\"H7095\"*." + }, + { + "verseNum": 38, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* ten|strong=\"H6235\"* basins|strong=\"H3595\"* of|strong=\"H5921\"* bronze|strong=\"H5178\"*. One|strong=\"H6213\"* basin|strong=\"H3595\"* contained|strong=\"H3557\"* forty baths|strong=\"H1324\"*.+ 7:38 1 bath is one tenth of a cor, or about 5.6 U. S. gallons or 21 liters, so 40 baths was about 224 gallons or 840 liters.* Every|strong=\"H6213\"* basin|strong=\"H3595\"* measured four cubits. One|strong=\"H6213\"* basin|strong=\"H3595\"* was|strong=\"H6213\"* on|strong=\"H5921\"* every|strong=\"H6213\"* one|strong=\"H6213\"* of|strong=\"H5921\"* the|strong=\"H5921\"* ten|strong=\"H6235\"* bases|strong=\"H4350\"*." + }, + { + "verseNum": 39, + "text": "He|strong=\"H2568\"* set|strong=\"H5414\"* the|strong=\"H5921\"* bases|strong=\"H4350\"*, five|strong=\"H2568\"* on|strong=\"H5921\"* the|strong=\"H5921\"* right|strong=\"H3225\"* side|strong=\"H3802\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* and|strong=\"H1004\"* five|strong=\"H2568\"* on|strong=\"H5921\"* the|strong=\"H5921\"* left|strong=\"H8040\"* side|strong=\"H3802\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"*. He|strong=\"H2568\"* set|strong=\"H5414\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* on|strong=\"H5921\"* the|strong=\"H5921\"* right|strong=\"H3225\"* side|strong=\"H3802\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* eastward|strong=\"H6924\"* and|strong=\"H1004\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* south|strong=\"H5045\"*." + }, + { + "verseNum": 40, + "text": "Hiram|strong=\"H2438\"* made|strong=\"H6213\"* the|strong=\"H3605\"* pots, the|strong=\"H3605\"* shovels|strong=\"H3257\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* basins|strong=\"H4219\"*. So|strong=\"H6213\"* Hiram|strong=\"H2438\"* finished|strong=\"H3615\"* doing|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"* that|strong=\"H3605\"* he|strong=\"H6213\"* worked|strong=\"H6213\"* for|strong=\"H6213\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*:" + }, + { + "verseNum": 41, + "text": "the|strong=\"H5921\"* two|strong=\"H8147\"* pillars|strong=\"H5982\"*; the|strong=\"H5921\"* two|strong=\"H8147\"* bowls|strong=\"H1543\"* of|strong=\"H7218\"* the|strong=\"H5921\"* capitals|strong=\"H3805\"* that|strong=\"H3805\"* were|strong=\"H7218\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*; the|strong=\"H5921\"* two|strong=\"H8147\"* networks|strong=\"H7639\"* to|strong=\"H5921\"* cover|strong=\"H3680\"* the|strong=\"H5921\"* two|strong=\"H8147\"* bowls|strong=\"H1543\"* of|strong=\"H7218\"* the|strong=\"H5921\"* capitals|strong=\"H3805\"* that|strong=\"H3805\"* were|strong=\"H7218\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*;" + }, + { + "verseNum": 42, + "text": "the|strong=\"H6440\"* four hundred|strong=\"H3967\"* pomegranates|strong=\"H7416\"* for|strong=\"H5921\"* the|strong=\"H6440\"* two|strong=\"H8147\"* networks|strong=\"H7639\"*; two|strong=\"H8147\"* rows|strong=\"H2905\"* of|strong=\"H6440\"* pomegranates|strong=\"H7416\"* for|strong=\"H5921\"* each|strong=\"H8147\"* network|strong=\"H7639\"*, to|strong=\"H5921\"* cover|strong=\"H3680\"* the|strong=\"H6440\"* two|strong=\"H8147\"* bowls|strong=\"H1543\"* of|strong=\"H6440\"* the|strong=\"H6440\"* capitals|strong=\"H3805\"* that|strong=\"H3805\"* were|strong=\"H8147\"* on|strong=\"H5921\"* the|strong=\"H6440\"* pillars|strong=\"H5982\"*;" + }, + { + "verseNum": 43, + "text": "the|strong=\"H5921\"* ten|strong=\"H6235\"* bases|strong=\"H4350\"*; the|strong=\"H5921\"* ten|strong=\"H6235\"* basins|strong=\"H3595\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bases|strong=\"H4350\"*;" + }, + { + "verseNum": 44, + "text": "the|strong=\"H8478\"* one|strong=\"H8147\"* sea|strong=\"H3220\"*; the|strong=\"H8478\"* twelve|strong=\"H8147\"* oxen|strong=\"H1241\"* under|strong=\"H8478\"* the|strong=\"H8478\"* sea|strong=\"H3220\"*;" + }, + { + "verseNum": 45, + "text": "the|strong=\"H3605\"* pots|strong=\"H5518\"*; the|strong=\"H3605\"* shovels|strong=\"H3257\"*; and|strong=\"H3068\"* the|strong=\"H3605\"* basins|strong=\"H4219\"*. All|strong=\"H3605\"* of|strong=\"H4428\"* these|strong=\"H6213\"* vessels|strong=\"H3627\"*, which|strong=\"H3068\"* Hiram|strong=\"H2438\"* made|strong=\"H6213\"* for|strong=\"H6213\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, were|strong=\"H4428\"* of|strong=\"H4428\"* burnished bronze|strong=\"H5178\"*." + }, + { + "verseNum": 46, + "text": "The|strong=\"H3332\"* king|strong=\"H4428\"* cast|strong=\"H3332\"* them in|strong=\"H4428\"* the|strong=\"H3332\"* plain|strong=\"H3603\"* of|strong=\"H4428\"* the|strong=\"H3332\"* Jordan|strong=\"H3383\"*, in|strong=\"H4428\"* the|strong=\"H3332\"* clay|strong=\"H4568\"* ground between Succoth|strong=\"H5523\"* and|strong=\"H4428\"* Zarethan|strong=\"H6891\"*." + }, + { + "verseNum": 47, + "text": "Solomon|strong=\"H8010\"* left|strong=\"H3240\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* unweighed|strong=\"H7230\"*, because|strong=\"H7230\"* there|strong=\"H3605\"* were|strong=\"H3627\"* so|strong=\"H3808\"* many|strong=\"H7230\"* of|strong=\"H3627\"* them|strong=\"H3240\"*. The|strong=\"H3605\"* weight|strong=\"H4948\"* of|strong=\"H3627\"* the|strong=\"H3605\"* bronze|strong=\"H5178\"* could not|strong=\"H3808\"* be|strong=\"H3808\"* determined." + }, + { + "verseNum": 48, + "text": "Solomon|strong=\"H8010\"* made|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* that|strong=\"H3605\"* were|strong=\"H3627\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*: the|strong=\"H3605\"* golden|strong=\"H2091\"* altar|strong=\"H4196\"* and|strong=\"H3068\"* the|strong=\"H3605\"* table|strong=\"H7979\"* that|strong=\"H3605\"* the|strong=\"H3605\"* show|strong=\"H6213\"* bread|strong=\"H3899\"* was|strong=\"H3068\"* on|strong=\"H5921\"*, of|strong=\"H1004\"* gold|strong=\"H2091\"*;" + }, + { + "verseNum": 49, + "text": "and|strong=\"H2091\"* the|strong=\"H6440\"* lamp|strong=\"H5216\"* stands, five|strong=\"H2568\"* on|strong=\"H2091\"* the|strong=\"H6440\"* right|strong=\"H3225\"* side|strong=\"H3225\"* and|strong=\"H2091\"* five|strong=\"H2568\"* on|strong=\"H2091\"* the|strong=\"H6440\"* left|strong=\"H8040\"*, in|strong=\"H6440\"* front|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"*, of|strong=\"H6440\"* pure|strong=\"H5462\"* gold|strong=\"H2091\"*; and|strong=\"H2091\"* the|strong=\"H6440\"* flowers|strong=\"H6525\"*, the|strong=\"H6440\"* lamps|strong=\"H5216\"*, and|strong=\"H2091\"* the|strong=\"H6440\"* tongs|strong=\"H4457\"*, of|strong=\"H6440\"* gold|strong=\"H2091\"*;" + }, + { + "verseNum": 50, + "text": "the|strong=\"H5462\"* cups|strong=\"H5592\"*, the|strong=\"H5462\"* snuffers|strong=\"H4212\"*, the|strong=\"H5462\"* basins|strong=\"H4219\"*, the|strong=\"H5462\"* spoons|strong=\"H3709\"*, and|strong=\"H1004\"* the|strong=\"H5462\"* fire pans|strong=\"H3709\"*, of|strong=\"H1004\"* pure|strong=\"H5462\"* gold|strong=\"H2091\"*; and|strong=\"H1004\"* the|strong=\"H5462\"* hinges|strong=\"H6596\"*, both for|strong=\"H1004\"* the|strong=\"H5462\"* doors|strong=\"H1817\"* of|strong=\"H1004\"* the|strong=\"H5462\"* inner|strong=\"H6442\"* house|strong=\"H1004\"*, the|strong=\"H5462\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*, and|strong=\"H1004\"* for|strong=\"H1004\"* the|strong=\"H5462\"* doors|strong=\"H1817\"* of|strong=\"H1004\"* the|strong=\"H5462\"* house|strong=\"H1004\"*, of|strong=\"H1004\"* the|strong=\"H5462\"* temple|strong=\"H1004\"*, of|strong=\"H1004\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 51, + "text": "Thus all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"* that|strong=\"H3605\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* did|strong=\"H6213\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* was|strong=\"H3068\"* finished|strong=\"H7999\"*. Solomon|strong=\"H8010\"* brought|strong=\"H5414\"* in|strong=\"H3068\"* the|strong=\"H3605\"* things|strong=\"H6944\"* which|strong=\"H3068\"* David|strong=\"H1732\"* his|strong=\"H3605\"* father had|strong=\"H3068\"* dedicated|strong=\"H6944\"*—the|strong=\"H3605\"* silver|strong=\"H3701\"*, the|strong=\"H3605\"* gold|strong=\"H2091\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"*—and|strong=\"H3068\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H3068\"* the|strong=\"H3605\"* treasuries of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H4428\"* Solomon|strong=\"H8010\"* assembled|strong=\"H6950\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* with|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3605\"* tribes|strong=\"H4294\"*, the|strong=\"H3605\"* princes|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3605\"* fathers’ households of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, to|strong=\"H3478\"* bring|strong=\"H5927\"* up|strong=\"H5927\"* the|strong=\"H3605\"* ark of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* out|strong=\"H3605\"* of|strong=\"H1121\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, which|strong=\"H1931\"* is|strong=\"H3068\"* Zion|strong=\"H6726\"*." + }, + { + "verseNum": 2, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* assembled|strong=\"H6950\"* themselves|strong=\"H6950\"* to|strong=\"H3478\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* at|strong=\"H3478\"* the|strong=\"H3605\"* feast|strong=\"H2282\"* in|strong=\"H3478\"* the|strong=\"H3605\"* month|strong=\"H2320\"* Ethanim, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 3, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H2205\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* picked|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H3605\"* ark." + }, + { + "verseNum": 4, + "text": "They|strong=\"H3068\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* Yahweh|strong=\"H3068\"*’s ark, the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* vessels|strong=\"H3627\"* that|strong=\"H3605\"* were|strong=\"H3881\"* in|strong=\"H3068\"* the|strong=\"H3605\"* Tent. The|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* brought|strong=\"H5927\"* these|strong=\"H3605\"* up|strong=\"H5927\"*." + }, + { + "verseNum": 5, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, who|strong=\"H3605\"* were|strong=\"H3478\"* assembled|strong=\"H3259\"* to|strong=\"H3478\"* him|strong=\"H6440\"*, were|strong=\"H3478\"* with|strong=\"H5921\"* him|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H3605\"* ark, sacrificing|strong=\"H2076\"* sheep|strong=\"H6629\"* and|strong=\"H3478\"* cattle|strong=\"H1241\"* that|strong=\"H3605\"* could not|strong=\"H3808\"* be|strong=\"H3808\"* counted|strong=\"H5608\"* or|strong=\"H3808\"* numbered|strong=\"H5608\"* for|strong=\"H5921\"* multitude|strong=\"H7230\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3068\"* priests|strong=\"H3548\"* brought|strong=\"H3548\"* in|strong=\"H3068\"* the|strong=\"H3068\"* ark of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* to|strong=\"H3068\"* its|strong=\"H8478\"* place|strong=\"H4725\"*, into the|strong=\"H3068\"* inner|strong=\"H1687\"* sanctuary|strong=\"H6944\"* of|strong=\"H1004\"* the|strong=\"H3068\"* house|strong=\"H1004\"*, to|strong=\"H3068\"* the|strong=\"H3068\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* place|strong=\"H4725\"*, even|strong=\"H3068\"* under|strong=\"H8478\"* the|strong=\"H3068\"* cherubim|strong=\"H3742\"*’s wings|strong=\"H3671\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* spread|strong=\"H6566\"* their|strong=\"H5921\"* wings|strong=\"H3671\"* out|strong=\"H6566\"* over|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* of|strong=\"H5921\"* the|strong=\"H5921\"* ark, and|strong=\"H4725\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* covered|strong=\"H5526\"* the|strong=\"H5921\"* ark and|strong=\"H4725\"* its|strong=\"H5921\"* poles above|strong=\"H4605\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H6440\"* poles were|strong=\"H1961\"* so|strong=\"H4480\"* long|strong=\"H5704\"* that|strong=\"H7200\"* the|strong=\"H6440\"* ends|strong=\"H7218\"* of|strong=\"H3117\"* the|strong=\"H6440\"* poles were|strong=\"H1961\"* seen|strong=\"H7200\"* from|strong=\"H4480\"* the|strong=\"H6440\"* holy|strong=\"H6944\"* place|strong=\"H6944\"* before|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H1687\"* sanctuary|strong=\"H6944\"*, but|strong=\"H3808\"* they|strong=\"H3117\"* were|strong=\"H1961\"* not|strong=\"H3808\"* seen|strong=\"H7200\"* outside|strong=\"H2351\"*. They|strong=\"H3117\"* are|strong=\"H3117\"* there|strong=\"H8033\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 9, + "text": "There|strong=\"H8033\"* was|strong=\"H3068\"* nothing in|strong=\"H3478\"* the|strong=\"H3068\"* ark except|strong=\"H7535\"* the|strong=\"H3068\"* two|strong=\"H8147\"* stone tablets|strong=\"H3871\"* which|strong=\"H3068\"* Moses|strong=\"H4872\"* put|strong=\"H3240\"* there|strong=\"H8033\"* at|strong=\"H3478\"* Horeb|strong=\"H2722\"*, when|strong=\"H3318\"* Yahweh|strong=\"H3068\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant with|strong=\"H5973\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, when|strong=\"H3318\"* they|strong=\"H8033\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3068\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 10, + "text": "It|strong=\"H1961\"* came|strong=\"H1961\"* to|strong=\"H3318\"* pass|strong=\"H1961\"*, when|strong=\"H1961\"* the|strong=\"H3068\"* priests|strong=\"H3548\"* had|strong=\"H3068\"* come|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3068\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*, that|strong=\"H3068\"* the|strong=\"H3068\"* cloud|strong=\"H6051\"* filled|strong=\"H4390\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*," + }, + { + "verseNum": 11, + "text": "so|strong=\"H3808\"* that|strong=\"H3588\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* could|strong=\"H3201\"* not|strong=\"H3808\"* stand|strong=\"H5975\"* to|strong=\"H3201\"* minister|strong=\"H8334\"* by|strong=\"H3068\"* reason|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* cloud|strong=\"H6051\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* filled|strong=\"H4390\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 12, + "text": "Then|strong=\"H3068\"* Solomon|strong=\"H8010\"* said, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* said that|strong=\"H3068\"* he|strong=\"H3068\"* would|strong=\"H3068\"* dwell|strong=\"H7931\"* in|strong=\"H3068\"* the|strong=\"H3068\"* thick|strong=\"H6205\"* darkness|strong=\"H6205\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H1004\"* have|strong=\"H1129\"* surely|strong=\"H1129\"* built|strong=\"H1129\"* you|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* habitation|strong=\"H2073\"*, a|strong=\"H3068\"* place|strong=\"H4349\"* for|strong=\"H3427\"* you|strong=\"H1129\"* to|strong=\"H1004\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* forever|strong=\"H5769\"*.”" + }, + { + "verseNum": 14, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* turned|strong=\"H5437\"* his|strong=\"H3605\"* face|strong=\"H6440\"* around|strong=\"H5437\"* and|strong=\"H3478\"* blessed|strong=\"H1288\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* stood|strong=\"H5975\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3068\"* said|strong=\"H1696\"*, “Blessed|strong=\"H1288\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, who|strong=\"H3068\"* spoke|strong=\"H1696\"* with|strong=\"H4390\"* his|strong=\"H3068\"* mouth|strong=\"H6310\"* to|strong=\"H1696\"* David|strong=\"H1732\"* your|strong=\"H3068\"* father, and|strong=\"H3478\"* has|strong=\"H3068\"* with|strong=\"H4390\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* fulfilled|strong=\"H4390\"* it|strong=\"H1696\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 16, + "text": "‘Since|strong=\"H4480\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H5971\"* I|strong=\"H3117\"* brought|strong=\"H3318\"* my|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* out|strong=\"H3318\"* of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, I|strong=\"H3117\"* chose no|strong=\"H3808\"* city|strong=\"H5892\"* out|strong=\"H3318\"* of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* to|strong=\"H3318\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"*, that|strong=\"H5971\"* my|strong=\"H3605\"* name|strong=\"H8034\"* might|strong=\"H3478\"* be|strong=\"H1961\"* there|strong=\"H8033\"*; but|strong=\"H3808\"* I|strong=\"H3117\"* chose David|strong=\"H1732\"* to|strong=\"H3318\"* be|strong=\"H1961\"* over|strong=\"H5921\"* my|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*.’" + }, + { + "verseNum": 17, + "text": "“Now|strong=\"H1961\"* it|strong=\"H8034\"* was|strong=\"H3068\"* in|strong=\"H3478\"* the|strong=\"H3068\"* heart|strong=\"H3824\"* of|strong=\"H1004\"* David|strong=\"H1732\"* my|strong=\"H3068\"* father to|strong=\"H3478\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H8034\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H3588\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* David|strong=\"H1732\"* my|strong=\"H3068\"* father, ‘Whereas|strong=\"H3282\"* it|strong=\"H3588\"* was|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* to|strong=\"H3068\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H3588\"* my|strong=\"H3068\"* name|strong=\"H8034\"*, you|strong=\"H3588\"* did|strong=\"H3068\"* well|strong=\"H2895\"* that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 19, + "text": "Nevertheless|strong=\"H3588\"*, you|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* build|strong=\"H1129\"* the|strong=\"H3588\"* house|strong=\"H1004\"*; but|strong=\"H3588\"* your|strong=\"H3588\"* son|strong=\"H1121\"* who|strong=\"H1931\"* shall|strong=\"H1121\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* your|strong=\"H3588\"* body, he|strong=\"H1931\"* shall|strong=\"H1121\"* build|strong=\"H1129\"* the|strong=\"H3588\"* house|strong=\"H1004\"* for|strong=\"H3588\"* my|strong=\"H3318\"* name|strong=\"H8034\"*.’" + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* established|strong=\"H6965\"* his|strong=\"H3068\"* word|strong=\"H1697\"* that|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"*; for|strong=\"H5921\"* I|strong=\"H5921\"* have|strong=\"H3068\"* risen|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H3427\"* the|strong=\"H5921\"* place|strong=\"H8478\"* of|strong=\"H1004\"* David|strong=\"H1732\"* my|strong=\"H3068\"* father, and|strong=\"H6965\"* I|strong=\"H5921\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, as|strong=\"H1697\"* Yahweh|strong=\"H3068\"* promised|strong=\"H1696\"*, and|strong=\"H6965\"* have|strong=\"H3068\"* built|strong=\"H1129\"* the|strong=\"H5921\"* house|strong=\"H1004\"* for|strong=\"H5921\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 21, + "text": "There|strong=\"H8033\"* I|strong=\"H7760\"* have|strong=\"H3068\"* set|strong=\"H7760\"* a|strong=\"H3068\"* place|strong=\"H4725\"* for|strong=\"H4714\"* the|strong=\"H3068\"* ark, in|strong=\"H3068\"* which|strong=\"H3068\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, which|strong=\"H3068\"* he|strong=\"H8033\"* made|strong=\"H3772\"* with|strong=\"H5973\"* our|strong=\"H3068\"* fathers when|strong=\"H3318\"* he|strong=\"H8033\"* brought|strong=\"H3318\"* them|strong=\"H7760\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land|strong=\"H4725\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*.”" + }, + { + "verseNum": 22, + "text": "Solomon|strong=\"H8010\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"* in|strong=\"H3478\"* the|strong=\"H3605\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* his|strong=\"H3605\"* hands|strong=\"H3709\"* toward|strong=\"H6440\"* heaven|strong=\"H8064\"*;" + }, + { + "verseNum": 23, + "text": "and|strong=\"H1980\"* he|strong=\"H3068\"* said, “Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, there|strong=\"H3605\"* is|strong=\"H3068\"* no|strong=\"H3605\"* God|strong=\"H3068\"* like|strong=\"H3644\"* you|strong=\"H6440\"*, in|strong=\"H5921\"* heaven|strong=\"H8064\"* above|strong=\"H4605\"*, or|strong=\"H3068\"* on|strong=\"H5921\"* earth|strong=\"H8064\"* beneath|strong=\"H8478\"*; who|strong=\"H3605\"* keeps|strong=\"H8104\"* covenant|strong=\"H1285\"* and|strong=\"H1980\"* loving kindness|strong=\"H2617\"* with|strong=\"H1980\"* your|strong=\"H3068\"* servants|strong=\"H5650\"* who|strong=\"H3605\"* walk|strong=\"H1980\"* before|strong=\"H6440\"* you|strong=\"H6440\"* with|strong=\"H1980\"* all|strong=\"H3605\"* their|strong=\"H3605\"* heart|strong=\"H3820\"*;" + }, + { + "verseNum": 24, + "text": "who|strong=\"H5650\"* has|strong=\"H5650\"* kept|strong=\"H8104\"* with|strong=\"H4390\"* your|strong=\"H8104\"* servant|strong=\"H5650\"* David|strong=\"H1732\"* my|strong=\"H8104\"* father that|strong=\"H3117\"* which|strong=\"H2088\"* you|strong=\"H3117\"* promised|strong=\"H1696\"* him|strong=\"H3027\"*. Yes, you|strong=\"H3117\"* spoke|strong=\"H1696\"* with|strong=\"H4390\"* your|strong=\"H8104\"* mouth|strong=\"H6310\"*, and|strong=\"H3117\"* have|strong=\"H5650\"* fulfilled|strong=\"H4390\"* it|strong=\"H1696\"* with|strong=\"H4390\"* your|strong=\"H8104\"* hand|strong=\"H3027\"*, as|strong=\"H3117\"* it|strong=\"H1696\"* is|strong=\"H2088\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 25, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, may|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, keep|strong=\"H8104\"* with|strong=\"H1980\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* David|strong=\"H1732\"* my|strong=\"H8104\"* father|strong=\"H1121\"* that|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H6440\"* have|strong=\"H3068\"* promised|strong=\"H1696\"* him|strong=\"H6440\"*, saying|strong=\"H1696\"*, ‘There|strong=\"H3427\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* fail|strong=\"H3772\"* from|strong=\"H6440\"* you|strong=\"H6440\"* a|strong=\"H3068\"* man|strong=\"H1121\"* in|strong=\"H3427\"* my|strong=\"H8104\"* sight|strong=\"H6440\"* to|strong=\"H1696\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H6440\"* throne|strong=\"H3678\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, if|strong=\"H1121\"* only|strong=\"H7535\"* your|strong=\"H3068\"* children|strong=\"H1121\"* take|strong=\"H8104\"* heed|strong=\"H8104\"* to|strong=\"H1696\"* their|strong=\"H3068\"* way|strong=\"H1870\"*, to|strong=\"H1696\"* walk|strong=\"H1980\"* before|strong=\"H6440\"* me|strong=\"H6440\"* as|strong=\"H3068\"* you|strong=\"H6440\"* have|strong=\"H3068\"* walked|strong=\"H1980\"* before|strong=\"H6440\"* me|strong=\"H6440\"*.’" + }, + { + "verseNum": 26, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, God of|strong=\"H1697\"* Israel|strong=\"H3478\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H4994\"* word|strong=\"H1697\"* be|strong=\"H1697\"* verified, which|strong=\"H1697\"* you|strong=\"H1696\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* your|strong=\"H4994\"* servant|strong=\"H5650\"* David|strong=\"H1732\"* my|strong=\"H1732\"* father." + }, + { + "verseNum": 27, + "text": "But|strong=\"H3588\"* will|strong=\"H1004\"* God|strong=\"H3808\"* in|strong=\"H3427\"* very|strong=\"H2088\"* deed dwell|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth|strong=\"H8064\"*? Behold|strong=\"H2009\"*, heaven|strong=\"H8064\"* and|strong=\"H8064\"* the|strong=\"H5921\"* heaven|strong=\"H8064\"* of|strong=\"H1004\"* heavens|strong=\"H8064\"* can|strong=\"H3808\"*’t contain|strong=\"H3557\"* you|strong=\"H3588\"*; how|strong=\"H3588\"* much|strong=\"H5921\"* less|strong=\"H3588\"* this|strong=\"H2088\"* house|strong=\"H1004\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1129\"* built|strong=\"H1129\"*!" + }, + { + "verseNum": 28, + "text": "Yet|strong=\"H3068\"* have|strong=\"H3068\"* respect|strong=\"H6437\"* for|strong=\"H6440\"* the|strong=\"H6440\"* prayer|strong=\"H8605\"* of|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* and|strong=\"H3068\"* for|strong=\"H6440\"* his|strong=\"H3068\"* supplication|strong=\"H8467\"*, Yahweh|strong=\"H3068\"* my|strong=\"H8085\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* the|strong=\"H6440\"* cry|strong=\"H7440\"* and|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H6440\"* prayer|strong=\"H8605\"* which|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* prays|strong=\"H6419\"* before|strong=\"H6440\"* you|strong=\"H6440\"* today|strong=\"H3117\"*;" + }, + { + "verseNum": 29, + "text": "that|strong=\"H3117\"* your|strong=\"H8085\"* eyes|strong=\"H5869\"* may|strong=\"H1961\"* be|strong=\"H1961\"* open|strong=\"H6605\"* toward this|strong=\"H2088\"* house|strong=\"H1004\"* night|strong=\"H3915\"* and|strong=\"H3117\"* day|strong=\"H3117\"*, even|strong=\"H5869\"* toward the|strong=\"H8085\"* place|strong=\"H4725\"* of|strong=\"H1004\"* which|strong=\"H1004\"* you|strong=\"H3117\"* have|strong=\"H1961\"* said|strong=\"H8085\"*, ‘My|strong=\"H8085\"* name|strong=\"H8034\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* there|strong=\"H8033\"*;’ to|strong=\"H1961\"* listen|strong=\"H8085\"* to|strong=\"H1961\"* the|strong=\"H8085\"* prayer|strong=\"H8605\"* which|strong=\"H1004\"* your|strong=\"H8085\"* servant|strong=\"H5650\"* prays|strong=\"H6419\"* toward this|strong=\"H2088\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 30, + "text": "Listen|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H8085\"* supplication|strong=\"H8467\"* of|strong=\"H3427\"* your|strong=\"H8085\"* servant|strong=\"H5650\"*, and|strong=\"H3478\"* of|strong=\"H3427\"* your|strong=\"H8085\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, when|strong=\"H8085\"* they|strong=\"H5971\"* pray|strong=\"H6419\"* toward this|strong=\"H2088\"* place|strong=\"H4725\"*. Yes, hear|strong=\"H8085\"* in|strong=\"H3427\"* heaven|strong=\"H8064\"*, your|strong=\"H8085\"* dwelling|strong=\"H3427\"* place|strong=\"H4725\"*; and|strong=\"H3478\"* when|strong=\"H8085\"* you|strong=\"H5971\"* hear|strong=\"H8085\"*, forgive|strong=\"H5545\"*." + }, + { + "verseNum": 31, + "text": "“If|strong=\"H2398\"* a|strong=\"H3068\"* man|strong=\"H2088\"* sins|strong=\"H2398\"* against|strong=\"H6440\"* his|strong=\"H6440\"* neighbor|strong=\"H7453\"*, and|strong=\"H1004\"* an|strong=\"H6440\"* oath is|strong=\"H2088\"* laid|strong=\"H6440\"* on|strong=\"H1004\"* him|strong=\"H6440\"* to|strong=\"H6440\"* cause him|strong=\"H6440\"* to|strong=\"H6440\"* swear, and|strong=\"H1004\"* he|strong=\"H1004\"* comes|strong=\"H6440\"* and|strong=\"H1004\"* swears before|strong=\"H6440\"* your|strong=\"H6440\"* altar|strong=\"H4196\"* in|strong=\"H1004\"* this|strong=\"H2088\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 32, + "text": "then|strong=\"H5414\"* hear|strong=\"H8085\"* in|strong=\"H6213\"* heaven|strong=\"H8064\"*, and|strong=\"H8064\"* act|strong=\"H6213\"*, and|strong=\"H8064\"* judge|strong=\"H8199\"* your|strong=\"H5414\"* servants|strong=\"H5650\"*, condemning|strong=\"H7561\"* the|strong=\"H8085\"* wicked|strong=\"H7563\"*, to|strong=\"H6213\"* bring|strong=\"H5414\"* his|strong=\"H5414\"* way|strong=\"H1870\"* on|strong=\"H1870\"* his|strong=\"H5414\"* own head|strong=\"H7218\"*, and|strong=\"H8064\"* justifying|strong=\"H6663\"* the|strong=\"H8085\"* righteous|strong=\"H6662\"*, to|strong=\"H6213\"* give|strong=\"H5414\"* him|strong=\"H5414\"* according to|strong=\"H6213\"* his|strong=\"H5414\"* righteousness|strong=\"H6666\"*." + }, + { + "verseNum": 33, + "text": "“When|strong=\"H7725\"* your|strong=\"H6440\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* are|strong=\"H5971\"* struck|strong=\"H5062\"* down|strong=\"H5062\"* before|strong=\"H6440\"* the|strong=\"H6440\"* enemy because|strong=\"H6440\"* they|strong=\"H5971\"* have|strong=\"H5971\"* sinned|strong=\"H2398\"* against|strong=\"H6440\"* you|strong=\"H6440\"*, if|strong=\"H2603\"* they|strong=\"H5971\"* turn|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H6440\"* and|strong=\"H3478\"* confess|strong=\"H3034\"* your|strong=\"H6440\"* name|strong=\"H8034\"*, and|strong=\"H3478\"* pray|strong=\"H6419\"* and|strong=\"H3478\"* make|strong=\"H2603\"* supplication|strong=\"H2603\"* to|strong=\"H7725\"* you|strong=\"H6440\"* in|strong=\"H3478\"* this|strong=\"H2088\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 34, + "text": "then|strong=\"H5414\"* hear|strong=\"H8085\"* in|strong=\"H3478\"* heaven|strong=\"H8064\"*, and|strong=\"H3478\"* forgive|strong=\"H5545\"* the|strong=\"H8085\"* sin|strong=\"H2403\"* of|strong=\"H5971\"* your|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* bring|strong=\"H7725\"* them|strong=\"H5414\"* again|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H8085\"* land|strong=\"H8064\"* which|strong=\"H5971\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H7725\"* their|strong=\"H5414\"* fathers." + }, + { + "verseNum": 35, + "text": "“When|strong=\"H3588\"* the|strong=\"H3588\"* sky|strong=\"H8064\"* is|strong=\"H2088\"* shut|strong=\"H6113\"* up|strong=\"H6113\"* and|strong=\"H7725\"* there|strong=\"H1961\"* is|strong=\"H2088\"* no|strong=\"H3808\"* rain|strong=\"H4306\"* because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* you|strong=\"H3588\"*, if|strong=\"H3588\"* they|strong=\"H3588\"* pray|strong=\"H6419\"* toward|strong=\"H7725\"* this|strong=\"H2088\"* place|strong=\"H4725\"* and|strong=\"H7725\"* confess|strong=\"H3034\"* your|strong=\"H7725\"* name|strong=\"H8034\"*, and|strong=\"H7725\"* turn|strong=\"H7725\"* from|strong=\"H7725\"* their|strong=\"H7725\"* sin|strong=\"H2403\"* when|strong=\"H3588\"* you|strong=\"H3588\"* afflict|strong=\"H6031\"* them|strong=\"H7725\"*," + }, + { + "verseNum": 36, + "text": "then|strong=\"H5414\"* hear|strong=\"H8085\"* in|strong=\"H5921\"* heaven|strong=\"H8064\"*, and|strong=\"H3478\"* forgive|strong=\"H5545\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* of|strong=\"H1870\"* your|strong=\"H5414\"* servants|strong=\"H5650\"*, and|strong=\"H3478\"* of|strong=\"H1870\"* your|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* teach|strong=\"H3384\"* them|strong=\"H5414\"* the|strong=\"H5921\"* good|strong=\"H2896\"* way|strong=\"H1870\"* in|strong=\"H5921\"* which|strong=\"H5971\"* they|strong=\"H3588\"* should|strong=\"H3588\"* walk|strong=\"H3212\"*; and|strong=\"H3478\"* send|strong=\"H5414\"* rain|strong=\"H4306\"* on|strong=\"H5921\"* your|strong=\"H5414\"* land|strong=\"H5159\"* which|strong=\"H5971\"* you|strong=\"H3588\"* have|strong=\"H5971\"* given|strong=\"H5414\"* to|strong=\"H3478\"* your|strong=\"H5414\"* people|strong=\"H5971\"* for|strong=\"H3588\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 37, + "text": "“If|strong=\"H3588\"* there|strong=\"H1961\"* is|strong=\"H3605\"* famine|strong=\"H7458\"* in|strong=\"H7458\"* the|strong=\"H3605\"* land, if|strong=\"H3588\"* there|strong=\"H1961\"* is|strong=\"H3605\"* pestilence|strong=\"H1698\"*, if|strong=\"H3588\"* there|strong=\"H1961\"* is|strong=\"H3605\"* blight|strong=\"H7711\"*, mildew|strong=\"H3420\"*, locust|strong=\"H2625\"* or|strong=\"H5061\"* caterpillar|strong=\"H2625\"*; if|strong=\"H3588\"* their|strong=\"H3605\"* enemy|strong=\"H6887\"* besieges|strong=\"H6887\"* them|strong=\"H1961\"* in|strong=\"H7458\"* the|strong=\"H3605\"* land of|strong=\"H8179\"* their|strong=\"H3605\"* cities|strong=\"H8179\"*, whatever|strong=\"H3605\"* plague|strong=\"H5061\"*, whatever|strong=\"H3605\"* sickness|strong=\"H4245\"* there|strong=\"H1961\"* is|strong=\"H3605\"*," + }, + { + "verseNum": 38, + "text": "whatever|strong=\"H3605\"* prayer|strong=\"H8605\"* and|strong=\"H3478\"* supplication|strong=\"H8467\"* is|strong=\"H2088\"* made|strong=\"H3045\"* by|strong=\"H3478\"* any|strong=\"H3605\"* man|strong=\"H3605\"*, or|strong=\"H1004\"* by|strong=\"H3478\"* all|strong=\"H3605\"* your|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, who|strong=\"H3605\"* shall|strong=\"H5971\"* each|strong=\"H3605\"* know|strong=\"H3045\"* the|strong=\"H3605\"* plague|strong=\"H5061\"* of|strong=\"H1004\"* his|strong=\"H3605\"* own|strong=\"H1961\"* heart|strong=\"H3824\"*, and|strong=\"H3478\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* his|strong=\"H3605\"* hands|strong=\"H3709\"* toward|strong=\"H3709\"* this|strong=\"H2088\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 39, + "text": "then|strong=\"H5414\"* hear|strong=\"H8085\"* in|strong=\"H3427\"* heaven|strong=\"H8064\"*, your|strong=\"H3605\"* dwelling|strong=\"H3427\"* place|strong=\"H4349\"*, and|strong=\"H1121\"* forgive|strong=\"H5545\"*, and|strong=\"H1121\"* act|strong=\"H6213\"*, and|strong=\"H1121\"* give|strong=\"H5414\"* to|strong=\"H6213\"* every|strong=\"H3605\"* man|strong=\"H1121\"* according to|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, whose|strong=\"H1121\"* heart|strong=\"H3824\"* you|strong=\"H3588\"* know|strong=\"H3045\"* (for|strong=\"H3588\"* you|strong=\"H3588\"*, even|strong=\"H3588\"* you|strong=\"H3588\"* only|strong=\"H3588\"*, know|strong=\"H3045\"* the|strong=\"H3605\"* hearts|strong=\"H3824\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"*);" + }, + { + "verseNum": 40, + "text": "that|strong=\"H3605\"* they|strong=\"H1992\"* may|strong=\"H5414\"* fear|strong=\"H3372\"* you|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* that|strong=\"H3605\"* they|strong=\"H1992\"* live|strong=\"H2416\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land|strong=\"H6440\"* which|strong=\"H1992\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5921\"* our|strong=\"H3605\"* fathers." + }, + { + "verseNum": 41, + "text": "“Moreover|strong=\"H1571\"*, concerning|strong=\"H3478\"* the|strong=\"H1571\"* foreigner|strong=\"H5237\"*, who|strong=\"H1931\"* is|strong=\"H1931\"* not|strong=\"H3808\"* of|strong=\"H8034\"* your|strong=\"H3808\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, when|strong=\"H1571\"* he|strong=\"H1931\"* comes out|strong=\"H3808\"* of|strong=\"H8034\"* a|strong=\"H3068\"* far|strong=\"H7350\"* country for|strong=\"H8034\"* your|strong=\"H3808\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*" + }, + { + "verseNum": 42, + "text": "(for|strong=\"H3588\"* they|strong=\"H3588\"* shall|strong=\"H1004\"* hear|strong=\"H8085\"* of|strong=\"H1004\"* your|strong=\"H5186\"* great|strong=\"H1419\"* name|strong=\"H8034\"* and|strong=\"H1419\"* of|strong=\"H1004\"* your|strong=\"H5186\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"* and|strong=\"H1419\"* of|strong=\"H1004\"* your|strong=\"H5186\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*), when|strong=\"H3588\"* he|strong=\"H3588\"* comes and|strong=\"H1419\"* prays|strong=\"H6419\"* toward|strong=\"H3027\"* this|strong=\"H2088\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 43, + "text": "hear|strong=\"H8085\"* in|strong=\"H3427\"* heaven|strong=\"H8064\"*, your|strong=\"H3605\"* dwelling|strong=\"H3427\"* place|strong=\"H4349\"*, and|strong=\"H3478\"* do|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3588\"* the|strong=\"H3605\"* foreigner|strong=\"H5237\"* calls|strong=\"H7121\"* to|strong=\"H3478\"* you|strong=\"H3588\"* for|strong=\"H3588\"*; that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H1004\"* the|strong=\"H3605\"* earth|strong=\"H8064\"* may|strong=\"H5971\"* know|strong=\"H3045\"* your|strong=\"H3605\"* name|strong=\"H8034\"*, to|strong=\"H3478\"* fear|strong=\"H3372\"* you|strong=\"H3588\"*, as|strong=\"H6213\"* do|strong=\"H6213\"* your|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H5971\"* know|strong=\"H3045\"* that|strong=\"H3588\"* this|strong=\"H2088\"* house|strong=\"H1004\"* which|strong=\"H1004\"* I|strong=\"H3588\"* have|strong=\"H5971\"* built|strong=\"H1129\"* is|strong=\"H2088\"* called|strong=\"H7121\"* by|strong=\"H5921\"* your|strong=\"H3605\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 44, + "text": "“If|strong=\"H3588\"* your|strong=\"H3068\"* people|strong=\"H5971\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* battle|strong=\"H4421\"* against|strong=\"H5921\"* their|strong=\"H3068\"* enemy, by|strong=\"H5921\"* whatever way|strong=\"H1870\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* send|strong=\"H7971\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* they|strong=\"H3588\"* pray|strong=\"H6419\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"* toward|strong=\"H1870\"* the|strong=\"H5921\"* city|strong=\"H5892\"* which|strong=\"H3068\"* you|strong=\"H3588\"* have|strong=\"H3068\"* chosen, and|strong=\"H3068\"* toward|strong=\"H1870\"* the|strong=\"H5921\"* house|strong=\"H1004\"* which|strong=\"H3068\"* I|strong=\"H3588\"* have|strong=\"H3068\"* built|strong=\"H1129\"* for|strong=\"H3588\"* your|strong=\"H3068\"* name|strong=\"H8034\"*," + }, + { + "verseNum": 45, + "text": "then|strong=\"H6213\"* hear|strong=\"H8085\"* in|strong=\"H6213\"* heaven|strong=\"H8064\"* their|strong=\"H8085\"* prayer|strong=\"H8605\"* and|strong=\"H8064\"* their|strong=\"H8085\"* supplication|strong=\"H8467\"*, and|strong=\"H8064\"* maintain|strong=\"H6213\"* their|strong=\"H8085\"* cause|strong=\"H4941\"*." + }, + { + "verseNum": 46, + "text": "If|strong=\"H3588\"* they|strong=\"H3588\"* sin|strong=\"H2398\"* against|strong=\"H6440\"* you|strong=\"H3588\"* (for|strong=\"H3588\"* there|strong=\"H6440\"* is|strong=\"H6440\"* no|strong=\"H3808\"* man|strong=\"H6440\"* who|strong=\"H7350\"* doesn’t sin|strong=\"H2398\"*), and|strong=\"H6440\"* you|strong=\"H3588\"* are|strong=\"H7350\"* angry with|strong=\"H6440\"* them|strong=\"H5414\"* and|strong=\"H6440\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H6440\"* enemy, so|strong=\"H5414\"* that|strong=\"H3588\"* they|strong=\"H3588\"* carry them|strong=\"H5414\"* away|strong=\"H7617\"* captive|strong=\"H7617\"* to|strong=\"H5414\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* enemy, far|strong=\"H7350\"* off|strong=\"H7350\"* or|strong=\"H3808\"* near|strong=\"H7138\"*;" + }, + { + "verseNum": 47, + "text": "yet|strong=\"H2398\"* if|strong=\"H2603\"* they|strong=\"H8033\"* repent|strong=\"H7725\"* in|strong=\"H7725\"* the|strong=\"H7725\"* land where|strong=\"H8033\"* they|strong=\"H8033\"* are|strong=\"H8033\"* carried|strong=\"H7617\"* captive|strong=\"H7617\"*, and|strong=\"H7725\"* turn|strong=\"H7725\"* again|strong=\"H7725\"*, and|strong=\"H7725\"* make|strong=\"H2603\"* supplication|strong=\"H2603\"* to|strong=\"H7725\"* you|strong=\"H7725\"* in|strong=\"H7725\"* the|strong=\"H7725\"* land of|strong=\"H3820\"* those who carried|strong=\"H7617\"* them|strong=\"H7725\"* captive|strong=\"H7617\"*, saying, ‘We|strong=\"H8033\"* have|strong=\"H7617\"* sinned|strong=\"H2398\"* and|strong=\"H7725\"* have|strong=\"H7617\"* done|strong=\"H2398\"* perversely|strong=\"H5753\"*; we|strong=\"H3068\"* have|strong=\"H7617\"* dealt|strong=\"H2603\"* wickedly|strong=\"H7561\"*,’" + }, + { + "verseNum": 48, + "text": "if they|strong=\"H5315\"* return|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H5414\"* with|strong=\"H1004\"* all|strong=\"H3605\"* their|strong=\"H3605\"* heart|strong=\"H3824\"* and|strong=\"H7725\"* with|strong=\"H1004\"* all|strong=\"H3605\"* their|strong=\"H3605\"* soul|strong=\"H5315\"* in|strong=\"H1004\"* the|strong=\"H3605\"* land of|strong=\"H1004\"* their|strong=\"H3605\"* enemies who|strong=\"H3605\"* carried|strong=\"H7617\"* them|strong=\"H5414\"* captive|strong=\"H7617\"*, and|strong=\"H7725\"* pray|strong=\"H6419\"* to|strong=\"H7725\"* you|strong=\"H5414\"* toward|strong=\"H1870\"* their|strong=\"H3605\"* land which|strong=\"H1004\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H7725\"* their|strong=\"H3605\"* fathers, the|strong=\"H3605\"* city|strong=\"H5892\"* which|strong=\"H1004\"* you|strong=\"H5414\"* have|strong=\"H5414\"* chosen and|strong=\"H7725\"* the|strong=\"H3605\"* house|strong=\"H1004\"* which|strong=\"H1004\"* I|strong=\"H5414\"* have|strong=\"H5414\"* built|strong=\"H1129\"* for|strong=\"H8034\"* your|strong=\"H3605\"* name|strong=\"H8034\"*," + }, + { + "verseNum": 49, + "text": "then|strong=\"H6213\"* hear|strong=\"H8085\"* their|strong=\"H8085\"* prayer|strong=\"H8605\"* and|strong=\"H8064\"* their|strong=\"H8085\"* supplication|strong=\"H8467\"* in|strong=\"H3427\"* heaven|strong=\"H8064\"*, your|strong=\"H8085\"* dwelling|strong=\"H3427\"* place|strong=\"H4349\"*, and|strong=\"H8064\"* maintain|strong=\"H6213\"* their|strong=\"H8085\"* cause|strong=\"H4941\"*;" + }, + { + "verseNum": 50, + "text": "and|strong=\"H5971\"* forgive|strong=\"H5545\"* your|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* have|strong=\"H7355\"* sinned|strong=\"H2398\"* against|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H5971\"* all|strong=\"H3605\"* their|strong=\"H3605\"* transgressions|strong=\"H6588\"* in|strong=\"H6440\"* which|strong=\"H5971\"* they|strong=\"H5971\"* have|strong=\"H7355\"* transgressed|strong=\"H6586\"* against|strong=\"H6440\"* you|strong=\"H5414\"*; and|strong=\"H5971\"* give|strong=\"H5414\"* them|strong=\"H5414\"* compassion|strong=\"H7355\"* before|strong=\"H6440\"* those|strong=\"H3605\"* who|strong=\"H3605\"* carried|strong=\"H7617\"* them|strong=\"H5414\"* captive|strong=\"H7617\"*, that|strong=\"H5971\"* they|strong=\"H5971\"* may|strong=\"H5971\"* have|strong=\"H7355\"* compassion|strong=\"H7355\"* on|strong=\"H7355\"* them|strong=\"H5414\"*" + }, + { + "verseNum": 51, + "text": "(for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* your|strong=\"H3588\"* people|strong=\"H5971\"* and|strong=\"H5971\"* your|strong=\"H3588\"* inheritance|strong=\"H5159\"*, which|strong=\"H1992\"* you|strong=\"H3588\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H8432\"* Egypt|strong=\"H4714\"*, from|strong=\"H3318\"* the|strong=\"H3588\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H3588\"* iron|strong=\"H1270\"* furnace|strong=\"H3564\"*);" + }, + { + "verseNum": 52, + "text": "that|strong=\"H5971\"* your|strong=\"H3605\"* eyes|strong=\"H5869\"* may|strong=\"H1961\"* be|strong=\"H1961\"* open|strong=\"H6605\"* to|strong=\"H3478\"* the|strong=\"H3605\"* supplication|strong=\"H8467\"* of|strong=\"H5869\"* your|strong=\"H3605\"* servant|strong=\"H5650\"* and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3605\"* supplication|strong=\"H8467\"* of|strong=\"H5869\"* your|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* them|strong=\"H7121\"* whenever|strong=\"H3605\"* they|strong=\"H5971\"* cry|strong=\"H7121\"* to|strong=\"H3478\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 53, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* separated them|strong=\"H3027\"* from|strong=\"H3318\"* among|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H3027\"* the|strong=\"H3605\"* earth to|strong=\"H1696\"* be|strong=\"H3027\"* your|strong=\"H3605\"* inheritance|strong=\"H5159\"*, as|strong=\"H3588\"* you|strong=\"H3588\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"* your|strong=\"H3605\"* servant|strong=\"H5650\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* brought|strong=\"H3318\"* our|strong=\"H3605\"* fathers out|strong=\"H3318\"* of|strong=\"H3027\"* Egypt|strong=\"H4714\"*, Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 54, + "text": "It|strong=\"H5921\"* was|strong=\"H3068\"* so|strong=\"H1961\"*, that|strong=\"H3605\"* when|strong=\"H1961\"* Solomon|strong=\"H8010\"* had|strong=\"H3068\"* finished|strong=\"H3615\"* praying|strong=\"H6419\"* all|strong=\"H3605\"* this|strong=\"H2063\"* prayer|strong=\"H8605\"* and|strong=\"H6965\"* supplication|strong=\"H8467\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, he|strong=\"H3068\"* arose|strong=\"H6965\"* from|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"*, from|strong=\"H6440\"* kneeling|strong=\"H3766\"* on|strong=\"H5921\"* his|strong=\"H3605\"* knees|strong=\"H1290\"* with|strong=\"H3068\"* his|strong=\"H3605\"* hands|strong=\"H3709\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* toward|strong=\"H5921\"* heaven|strong=\"H8064\"*." + }, + { + "verseNum": 55, + "text": "He|strong=\"H3605\"* stood|strong=\"H5975\"* and|strong=\"H3478\"* blessed|strong=\"H1288\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H6963\"* Israel|strong=\"H3478\"* with|strong=\"H3478\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*, saying|strong=\"H6963\"*," + }, + { + "verseNum": 56, + "text": "“Blessed|strong=\"H1288\"* be|strong=\"H3808\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3605\"* has|strong=\"H3068\"* given|strong=\"H5414\"* rest|strong=\"H4496\"* to|strong=\"H1696\"* his|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, according|strong=\"H3027\"* to|strong=\"H1696\"* all|strong=\"H3605\"* that|strong=\"H5971\"* he|strong=\"H3068\"* promised|strong=\"H1696\"*. There|strong=\"H3605\"* has|strong=\"H3068\"* not|strong=\"H3808\"* failed|strong=\"H5307\"* one|strong=\"H3605\"* word|strong=\"H1697\"* of|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* good|strong=\"H2896\"* promise|strong=\"H1697\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* promised|strong=\"H1696\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"* his|strong=\"H3605\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 57, + "text": "May|strong=\"H1961\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* us|strong=\"H1961\"* as|strong=\"H1961\"* he|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* our|strong=\"H3068\"* fathers. Let|strong=\"H5800\"* him|strong=\"H5973\"* not|strong=\"H1961\"* leave|strong=\"H5800\"* us|strong=\"H1961\"* or|strong=\"H3068\"* forsake|strong=\"H5800\"* us|strong=\"H1961\"*," + }, + { + "verseNum": 58, + "text": "that|strong=\"H3605\"* he|strong=\"H3605\"* may|strong=\"H3824\"* incline|strong=\"H5186\"* our|strong=\"H3605\"* hearts|strong=\"H3824\"* to|strong=\"H3212\"* him|strong=\"H6680\"*, to|strong=\"H3212\"* walk|strong=\"H3212\"* in|strong=\"H3212\"* all|strong=\"H3605\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, and|strong=\"H4941\"* to|strong=\"H3212\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"*, his|strong=\"H3605\"* statutes|strong=\"H2706\"*, and|strong=\"H4941\"* his|strong=\"H3605\"* ordinances|strong=\"H4941\"*, which|strong=\"H3605\"* he|strong=\"H3605\"* commanded|strong=\"H6680\"* our|strong=\"H3605\"* fathers." + }, + { + "verseNum": 59, + "text": "Let|strong=\"H1961\"* these|strong=\"H6213\"* my|strong=\"H3068\"* words|strong=\"H1697\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* I|strong=\"H3117\"* have|strong=\"H1961\"* made|strong=\"H6213\"* supplication|strong=\"H2603\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, be|strong=\"H1961\"* near|strong=\"H7126\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* day|strong=\"H3117\"* and|strong=\"H3478\"* night|strong=\"H3915\"*, that|strong=\"H5971\"* he|strong=\"H3117\"* may|strong=\"H1961\"* maintain|strong=\"H6213\"* the|strong=\"H6440\"* cause|strong=\"H4941\"* of|strong=\"H3068\"* his|strong=\"H3068\"* servant|strong=\"H5650\"* and|strong=\"H3478\"* the|strong=\"H6440\"* cause|strong=\"H4941\"* of|strong=\"H3068\"* his|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, as|strong=\"H1697\"* every|strong=\"H3117\"* day|strong=\"H3117\"* requires|strong=\"H1697\"*;" + }, + { + "verseNum": 60, + "text": "that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* himself|strong=\"H1931\"* is|strong=\"H3068\"* God|strong=\"H3068\"*. There|strong=\"H3605\"* is|strong=\"H3068\"* no|strong=\"H3605\"* one|strong=\"H3605\"* else|strong=\"H5750\"*." + }, + { + "verseNum": 61, + "text": "“Let|strong=\"H3212\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* therefore|strong=\"H3068\"* be|strong=\"H1961\"* perfect|strong=\"H8003\"* with|strong=\"H5973\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* his|strong=\"H8104\"* statutes|strong=\"H2706\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H8104\"* commandments|strong=\"H4687\"*, as|strong=\"H3117\"* it|strong=\"H1961\"* is|strong=\"H3068\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 62, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H6440\"*, offered|strong=\"H2076\"* sacrifice|strong=\"H2077\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 63, + "text": "Solomon|strong=\"H8010\"* offered|strong=\"H2076\"* for|strong=\"H3068\"* the|strong=\"H3605\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* offered|strong=\"H2076\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, twenty|strong=\"H6242\"* two|strong=\"H8147\"* thousand head of|strong=\"H1121\"* cattle|strong=\"H1241\"* and|strong=\"H3967\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* thousand sheep|strong=\"H6629\"*. So the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H3967\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* dedicated|strong=\"H2596\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 64, + "text": "The|strong=\"H6440\"* same|strong=\"H1931\"* day|strong=\"H3117\"* the|strong=\"H6440\"* king|strong=\"H4428\"* made|strong=\"H6213\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H4428\"* the|strong=\"H6440\"* court|strong=\"H2691\"* holy|strong=\"H6942\"* that|strong=\"H3588\"* was|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; for|strong=\"H3588\"* there|strong=\"H8033\"* he|strong=\"H1931\"* offered|strong=\"H6213\"* the|strong=\"H6440\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, the|strong=\"H6440\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* fat|strong=\"H2459\"* of|strong=\"H4428\"* the|strong=\"H6440\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, because|strong=\"H3588\"* the|strong=\"H6440\"* bronze|strong=\"H5178\"* altar|strong=\"H4196\"* that|strong=\"H3588\"* was|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* too little|strong=\"H6996\"* to|strong=\"H3068\"* receive|strong=\"H3557\"* the|strong=\"H6440\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, the|strong=\"H6440\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* fat|strong=\"H2459\"* of|strong=\"H4428\"* the|strong=\"H6440\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*." + }, + { + "verseNum": 65, + "text": "So|strong=\"H6213\"* Solomon|strong=\"H8010\"* held|strong=\"H6213\"* the|strong=\"H3605\"* feast|strong=\"H2282\"* at|strong=\"H3478\"* that|strong=\"H3605\"* time|strong=\"H6256\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H6440\"*, a|strong=\"H3068\"* great|strong=\"H1419\"* assembly|strong=\"H6951\"*, from|strong=\"H6440\"* the|strong=\"H3605\"* entrance of|strong=\"H3068\"* Hamath|strong=\"H2574\"* to|strong=\"H5704\"* the|strong=\"H3605\"* brook|strong=\"H5158\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, seven|strong=\"H7651\"* days|strong=\"H3117\"* and|strong=\"H3478\"* seven|strong=\"H7651\"* more|strong=\"H1419\"* days|strong=\"H3117\"*, even|strong=\"H5704\"* fourteen|strong=\"H6240\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 66, + "text": "On|strong=\"H5921\"* the|strong=\"H3605\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* he|strong=\"H3117\"* sent|strong=\"H7971\"* the|strong=\"H3605\"* people|strong=\"H5971\"* away|strong=\"H7971\"*; and|strong=\"H3478\"* they|strong=\"H3117\"* blessed|strong=\"H1288\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H3478\"* went|strong=\"H3212\"* to|strong=\"H3478\"* their|strong=\"H3605\"* tents joyful|strong=\"H8056\"* and|strong=\"H3478\"* glad|strong=\"H8056\"* in|strong=\"H5921\"* their|strong=\"H3605\"* hearts|strong=\"H3820\"* for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* goodness|strong=\"H2896\"* that|strong=\"H5971\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* shown|strong=\"H6213\"* to|strong=\"H3478\"* David|strong=\"H1732\"* his|strong=\"H3605\"* servant|strong=\"H5650\"*, and|strong=\"H3478\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"* his|strong=\"H3605\"* people|strong=\"H5971\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* Solomon|strong=\"H8010\"* had|strong=\"H3068\"* finished|strong=\"H3615\"* the|strong=\"H3605\"* building|strong=\"H1129\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* Solomon|strong=\"H8010\"*’s desire|strong=\"H2654\"* which|strong=\"H3068\"* he|strong=\"H6213\"* was|strong=\"H3068\"* pleased|strong=\"H2654\"* to|strong=\"H3068\"* do|strong=\"H6213\"*," + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* Solomon|strong=\"H8010\"* the|strong=\"H7200\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, as|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* him|strong=\"H7200\"* at|strong=\"H3068\"* Gibeon|strong=\"H1391\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H8085\"* to|strong=\"H5704\"* him|strong=\"H6440\"*, “I|strong=\"H3117\"* have|strong=\"H1961\"* heard|strong=\"H8085\"* your|strong=\"H3068\"* prayer|strong=\"H8605\"* and|strong=\"H3068\"* your|strong=\"H3068\"* supplication|strong=\"H8467\"* that|strong=\"H3605\"* you|strong=\"H6440\"* have|strong=\"H1961\"* made|strong=\"H7760\"* before|strong=\"H6440\"* me|strong=\"H6440\"*. I|strong=\"H3117\"* have|strong=\"H1961\"* made|strong=\"H7760\"* this|strong=\"H2088\"* house|strong=\"H1004\"* holy|strong=\"H6942\"*, which|strong=\"H3068\"* you|strong=\"H6440\"* have|strong=\"H1961\"* built|strong=\"H1129\"*, to|strong=\"H5704\"* put|strong=\"H7760\"* my|strong=\"H8085\"* name|strong=\"H8034\"* there|strong=\"H8033\"* forever|strong=\"H5769\"*; and|strong=\"H3068\"* my|strong=\"H8085\"* eyes|strong=\"H5869\"* and|strong=\"H3068\"* my|strong=\"H8085\"* heart|strong=\"H3820\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* there|strong=\"H8033\"* perpetually|strong=\"H3605\"*." + }, + { + "verseNum": 4, + "text": "As|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H6440\"*, if you|strong=\"H6440\"* will|strong=\"H3824\"* walk|strong=\"H1980\"* before|strong=\"H6440\"* me|strong=\"H6440\"* as|strong=\"H6213\"* David|strong=\"H1732\"* your|strong=\"H3605\"* father walked|strong=\"H1980\"*, in|strong=\"H1980\"* integrity|strong=\"H8537\"* of|strong=\"H6440\"* heart|strong=\"H3824\"* and|strong=\"H1980\"* in|strong=\"H1980\"* uprightness|strong=\"H3476\"*, to|strong=\"H1980\"* do|strong=\"H6213\"* according|strong=\"H4941\"* to|strong=\"H1980\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H6680\"* have|strong=\"H3605\"* commanded|strong=\"H6680\"* you|strong=\"H6440\"*, and|strong=\"H1980\"* will|strong=\"H3824\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* statutes|strong=\"H2706\"* and|strong=\"H1980\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*," + }, + { + "verseNum": 5, + "text": "then|strong=\"H6965\"* I|strong=\"H5921\"* will|strong=\"H3478\"* establish|strong=\"H6965\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H3678\"* your|strong=\"H5921\"* kingdom|strong=\"H4467\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* forever|strong=\"H5769\"*, as|strong=\"H6965\"* I|strong=\"H5921\"* promised|strong=\"H1696\"* to|strong=\"H1696\"* David|strong=\"H1732\"* your|strong=\"H5921\"* father, saying|strong=\"H1696\"*, ‘There|strong=\"H5769\"* shall|strong=\"H3478\"* not|strong=\"H3808\"* fail|strong=\"H3772\"* from|strong=\"H3772\"* you|strong=\"H5921\"* a|strong=\"H3068\"* man on|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H3678\"* Israel|strong=\"H3478\"*.’" + }, + { + "verseNum": 6, + "text": "But|strong=\"H3808\"* if|strong=\"H1121\"* you|strong=\"H5414\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* following|strong=\"H1980\"* me|strong=\"H5414\"*, you|strong=\"H5414\"* or|strong=\"H3808\"* your|strong=\"H5414\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* not|strong=\"H3808\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"* and|strong=\"H1121\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"* which|strong=\"H2708\"* I|strong=\"H5414\"* have|strong=\"H1121\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"*, but|strong=\"H3808\"* go|strong=\"H1980\"* and|strong=\"H1121\"* serve|strong=\"H5647\"* other gods|strong=\"H1980\"* and|strong=\"H1121\"* worship|strong=\"H7812\"* them|strong=\"H5414\"*," + }, + { + "verseNum": 7, + "text": "then|strong=\"H1961\"* I|strong=\"H5414\"* will|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* Israel|strong=\"H3478\"* out|strong=\"H7971\"* of|strong=\"H1004\"* the|strong=\"H3605\"* land|strong=\"H6440\"* which|strong=\"H1004\"* I|strong=\"H5414\"* have|strong=\"H1961\"* given|strong=\"H5414\"* them|strong=\"H5414\"*; and|strong=\"H3478\"* I|strong=\"H5414\"* will|strong=\"H1961\"* cast|strong=\"H7971\"* this|strong=\"H5414\"* house|strong=\"H1004\"*, which|strong=\"H1004\"* I|strong=\"H5414\"* have|strong=\"H1961\"* made|strong=\"H3772\"* holy|strong=\"H6942\"* for|strong=\"H5921\"* my|strong=\"H5414\"* name|strong=\"H8034\"*, out|strong=\"H7971\"* of|strong=\"H1004\"* my|strong=\"H5414\"* sight|strong=\"H6440\"*; and|strong=\"H3478\"* Israel|strong=\"H3478\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* proverb|strong=\"H4912\"* and|strong=\"H3478\"* a|strong=\"H3068\"* byword|strong=\"H8148\"* among|strong=\"H5921\"* all|strong=\"H3605\"* peoples|strong=\"H5971\"*." + }, + { + "verseNum": 8, + "text": "Though this|strong=\"H2088\"* house|strong=\"H1004\"* is|strong=\"H3068\"* so|strong=\"H6213\"* high|strong=\"H5945\"*, yet|strong=\"H3068\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* passes|strong=\"H5674\"* by|strong=\"H5921\"* it|strong=\"H5921\"* will|strong=\"H3068\"* be|strong=\"H1961\"* astonished|strong=\"H8074\"* and|strong=\"H3068\"* hiss|strong=\"H8319\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* will|strong=\"H3068\"* say, ‘Why|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* done|strong=\"H6213\"* this|strong=\"H2088\"* to|strong=\"H3068\"* this|strong=\"H2088\"* land and|strong=\"H3068\"* to|strong=\"H3068\"* this|strong=\"H2088\"* house|strong=\"H1004\"*?’" + }, + { + "verseNum": 9, + "text": "and|strong=\"H3068\"* they|strong=\"H3651\"* will|strong=\"H3068\"* answer, ‘Because|strong=\"H5921\"* they|strong=\"H3651\"* abandoned|strong=\"H5800\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"*, who|strong=\"H3605\"* brought|strong=\"H3318\"* their|strong=\"H3605\"* fathers out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* embraced other|strong=\"H3605\"* gods, and|strong=\"H3068\"* worshiped|strong=\"H7812\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* served|strong=\"H5647\"* them|strong=\"H5921\"*. Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* brought|strong=\"H3318\"* all|strong=\"H3605\"* this|strong=\"H2063\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* them|strong=\"H5921\"*.’”" + }, + { + "verseNum": 10, + "text": "At|strong=\"H3068\"* the|strong=\"H3068\"* end|strong=\"H7097\"* of|strong=\"H4428\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"*, in|strong=\"H8141\"* which|strong=\"H3068\"* Solomon|strong=\"H8010\"* had|strong=\"H3068\"* built|strong=\"H1129\"* the|strong=\"H3068\"* two|strong=\"H8147\"* houses|strong=\"H1004\"*, Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* the|strong=\"H3068\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*" + }, + { + "verseNum": 11, + "text": "(now|strong=\"H5414\"* Hiram|strong=\"H2438\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Tyre|strong=\"H6865\"* had|strong=\"H8010\"* furnished|strong=\"H5375\"* Solomon|strong=\"H8010\"* with|strong=\"H5892\"* cedar trees|strong=\"H6086\"* and|strong=\"H6242\"* cypress|strong=\"H1265\"* trees|strong=\"H6086\"*, and|strong=\"H6242\"* with|strong=\"H5892\"* gold|strong=\"H2091\"*, according to|strong=\"H5414\"* all|strong=\"H3605\"* his|strong=\"H3605\"* desire|strong=\"H2656\"*), King|strong=\"H4428\"* Solomon|strong=\"H8010\"* gave|strong=\"H5414\"* Hiram|strong=\"H2438\"* twenty|strong=\"H6242\"* cities|strong=\"H5892\"* in|strong=\"H4428\"* the|strong=\"H3605\"* land of|strong=\"H4428\"* Galilee|strong=\"H1551\"*." + }, + { + "verseNum": 12, + "text": "Hiram|strong=\"H2438\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H5892\"* Tyre|strong=\"H6865\"* to|strong=\"H3318\"* see|strong=\"H7200\"* the|strong=\"H7200\"* cities|strong=\"H5892\"* which|strong=\"H5869\"* Solomon|strong=\"H8010\"* had|strong=\"H8010\"* given|strong=\"H5414\"* him|strong=\"H5414\"*; and|strong=\"H5869\"* they|strong=\"H3808\"* didn’t please|strong=\"H3474\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3117\"* said|strong=\"H7121\"*, “What|strong=\"H4100\"* cities|strong=\"H5892\"* are|strong=\"H3117\"* these|strong=\"H2088\"* which|strong=\"H5892\"* you|strong=\"H5414\"* have|strong=\"H3117\"* given|strong=\"H5414\"* me|strong=\"H5414\"*, my|strong=\"H5414\"* brother?” He|strong=\"H3117\"* called|strong=\"H7121\"* them|strong=\"H5414\"* the|strong=\"H5414\"* land of|strong=\"H3117\"* Cabul|strong=\"H3521\"*+ 9:13 “Cabul” sounds like Hebrew for “good-for-nothing”.* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 14, + "text": "Hiram|strong=\"H2438\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* the|strong=\"H7971\"* king|strong=\"H4428\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* talents|strong=\"H3603\"*+ 9:14 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 120 talents is about 3.6 metric tons* of|strong=\"H4428\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 15, + "text": "This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3068\"* reason|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3068\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"* which|strong=\"H3068\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* conscripted|strong=\"H5927\"*: to|strong=\"H3068\"* build|strong=\"H1129\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, his|strong=\"H3068\"* own house|strong=\"H1004\"*, Millo|strong=\"H4407\"*, Jerusalem|strong=\"H3389\"*’s wall|strong=\"H2346\"*, Hazor|strong=\"H2674\"*, Megiddo|strong=\"H4023\"*, and|strong=\"H3068\"* Gezer|strong=\"H1507\"*." + }, + { + "verseNum": 16, + "text": "Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* had|strong=\"H8010\"* gone|strong=\"H5927\"* up|strong=\"H5927\"*, taken|strong=\"H3920\"* Gezer|strong=\"H1507\"*, burned|strong=\"H8313\"* it|strong=\"H5414\"* with|strong=\"H8313\"* fire, killed|strong=\"H2026\"* the|strong=\"H5414\"* Canaanites|strong=\"H3669\"* who|strong=\"H3427\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5414\"* city|strong=\"H5892\"*, and|strong=\"H4428\"* given|strong=\"H5414\"* it|strong=\"H5414\"* for|strong=\"H4714\"* a|strong=\"H3068\"* wedding gift|strong=\"H5414\"* to|strong=\"H5927\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"*, Solomon|strong=\"H8010\"*’s wife." + }, + { + "verseNum": 17, + "text": "Solomon|strong=\"H8010\"* built|strong=\"H1129\"* in|strong=\"H1129\"* the|strong=\"H1129\"* land Gezer|strong=\"H1507\"*, Beth Horon the|strong=\"H1129\"* lower|strong=\"H8481\"*," + }, + { + "verseNum": 18, + "text": "Baalath|strong=\"H1191\"*, Tamar|strong=\"H8559\"* in the|strong=\"H4057\"* wilderness|strong=\"H4057\"*," + }, + { + "verseNum": 19, + "text": "all|strong=\"H3605\"* the|strong=\"H3605\"* storage|strong=\"H4543\"* cities|strong=\"H5892\"* that|strong=\"H3605\"* Solomon|strong=\"H8010\"* had|strong=\"H1961\"*, the|strong=\"H3605\"* cities|strong=\"H5892\"* for|strong=\"H3389\"* his|strong=\"H3605\"* chariots|strong=\"H7393\"*, the|strong=\"H3605\"* cities|strong=\"H5892\"* for|strong=\"H3389\"* his|strong=\"H3605\"* horsemen|strong=\"H6571\"*, and|strong=\"H5892\"* that|strong=\"H3605\"* which|strong=\"H5892\"* Solomon|strong=\"H8010\"* desired|strong=\"H2836\"* to|strong=\"H1961\"* build|strong=\"H1129\"* for|strong=\"H3389\"* his|strong=\"H3605\"* pleasure|strong=\"H2837\"* in|strong=\"H5892\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H5892\"* in|strong=\"H5892\"* Lebanon|strong=\"H3844\"*, and|strong=\"H5892\"* in|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H5892\"* his|strong=\"H3605\"* dominion|strong=\"H4475\"*." + }, + { + "verseNum": 20, + "text": "As|strong=\"H5971\"* for|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H3478\"* left|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Amorites, the|strong=\"H3605\"* Hittites|strong=\"H2850\"*, the|strong=\"H3605\"* Perizzites|strong=\"H6522\"*, the|strong=\"H3605\"* Hivites|strong=\"H2340\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* Jebusites|strong=\"H2983\"*, who|strong=\"H3605\"* were|strong=\"H3478\"* not|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*—" + }, + { + "verseNum": 21, + "text": "their|strong=\"H5647\"* children|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H3478\"* left|strong=\"H3498\"* after|strong=\"H3117\"* them|strong=\"H2763\"* in|strong=\"H3478\"* the|strong=\"H5647\"* land, whom the|strong=\"H5647\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* not|strong=\"H3808\"* able|strong=\"H3201\"* utterly|strong=\"H2763\"* to|strong=\"H5704\"* destroy|strong=\"H2763\"*—of|strong=\"H1121\"* them|strong=\"H2763\"* Solomon|strong=\"H8010\"* raised|strong=\"H5927\"* a|strong=\"H3068\"* levy|strong=\"H4522\"* of|strong=\"H1121\"* bondservants to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H3588\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* Solomon|strong=\"H8010\"* made|strong=\"H5414\"* no|strong=\"H3808\"* bondservants; but|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H3478\"* the|strong=\"H3588\"* men|strong=\"H1121\"* of|strong=\"H1121\"* war|strong=\"H4421\"*, his|strong=\"H5414\"* servants|strong=\"H5650\"*, his|strong=\"H5414\"* princes|strong=\"H8269\"*, his|strong=\"H5414\"* captains|strong=\"H8269\"*, and|strong=\"H1121\"* rulers|strong=\"H8269\"* of|strong=\"H1121\"* his|strong=\"H5414\"* chariots|strong=\"H7393\"* and|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H5414\"* horsemen|strong=\"H6571\"*." + }, + { + "verseNum": 23, + "text": "These|strong=\"H6213\"* were|strong=\"H5971\"* the|strong=\"H5921\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* chief|strong=\"H8269\"* officers|strong=\"H8269\"* who|strong=\"H5971\"* were|strong=\"H5971\"* over|strong=\"H5921\"* Solomon|strong=\"H8010\"*’s work|strong=\"H4399\"*, who|strong=\"H5971\"* ruled|strong=\"H7287\"* over|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* labored|strong=\"H6213\"* in|strong=\"H5921\"* the|strong=\"H5921\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 24, + "text": "But Pharaoh|strong=\"H6547\"*’s daughter|strong=\"H1323\"* came|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H5927\"* of|strong=\"H1004\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"* to|strong=\"H5927\"* her|strong=\"H1129\"* house|strong=\"H1004\"* which|strong=\"H1004\"* Solomon had|strong=\"H1732\"* built|strong=\"H1129\"* for|strong=\"H1004\"* her|strong=\"H1129\"*. Then|strong=\"H5927\"* he|strong=\"H1004\"* built|strong=\"H1129\"* Millo|strong=\"H4407\"*." + }, + { + "verseNum": 25, + "text": "Solomon|strong=\"H8010\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* on|strong=\"H5921\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* which|strong=\"H3068\"* he|strong=\"H3068\"* built|strong=\"H1129\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* three|strong=\"H7969\"* times|strong=\"H6471\"* per year|strong=\"H8141\"*, burning|strong=\"H6999\"* incense|strong=\"H6999\"* with|strong=\"H1004\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* that|strong=\"H3068\"* was|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. So|strong=\"H5927\"* he|strong=\"H3068\"* finished|strong=\"H7999\"* the|strong=\"H6440\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 26, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* made|strong=\"H6213\"* a|strong=\"H3068\"* fleet of|strong=\"H4428\"* ships in|strong=\"H5921\"* Ezion Geber, which|strong=\"H4428\"* is|strong=\"H4428\"* beside|strong=\"H5921\"* Eloth, on|strong=\"H5921\"* the|strong=\"H5921\"* shore|strong=\"H8193\"* of|strong=\"H4428\"* the|strong=\"H5921\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H4428\"* Edom." + }, + { + "verseNum": 27, + "text": "Hiram|strong=\"H2438\"* sent|strong=\"H7971\"* in|strong=\"H5650\"* the|strong=\"H3045\"* fleet his|strong=\"H7971\"* servants|strong=\"H5650\"*, sailors who|strong=\"H5650\"* had|strong=\"H8010\"* knowledge|strong=\"H3045\"* of|strong=\"H5650\"* the|strong=\"H3045\"* sea|strong=\"H3220\"*, with|strong=\"H5973\"* the|strong=\"H3045\"* servants|strong=\"H5650\"* of|strong=\"H5650\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"H8033\"* came|strong=\"H4428\"* to|strong=\"H4428\"* Ophir, and|strong=\"H3967\"* fetched|strong=\"H3947\"* from|strong=\"H3947\"* there|strong=\"H8033\"* gold|strong=\"H2091\"*, four hundred|strong=\"H3967\"* and|strong=\"H3967\"* twenty|strong=\"H6242\"* talents|strong=\"H3603\"*,+ 9:28 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 420 talents is about 12.6 metric tons* and|strong=\"H3967\"* brought|strong=\"H3947\"* it|strong=\"H8033\"* to|strong=\"H4428\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H8085\"* the|strong=\"H8085\"* queen|strong=\"H4436\"* of|strong=\"H3068\"* Sheba|strong=\"H7614\"* heard|strong=\"H8085\"* of|strong=\"H3068\"* the|strong=\"H8085\"* fame|strong=\"H8034\"* of|strong=\"H3068\"* Solomon|strong=\"H8010\"* concerning|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, she came|strong=\"H3068\"* to|strong=\"H3068\"* test|strong=\"H5254\"* him|strong=\"H8085\"* with|strong=\"H3068\"* hard questions|strong=\"H2420\"*." + }, + { + "verseNum": 2, + "text": "She|strong=\"H5973\"* came|strong=\"H1961\"* to|strong=\"H1696\"* Jerusalem|strong=\"H3389\"* with|strong=\"H5973\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H7227\"* caravan, with|strong=\"H5973\"* camels|strong=\"H1581\"* that|strong=\"H3605\"* bore|strong=\"H5375\"* spices|strong=\"H1314\"*, very|strong=\"H3966\"* much|strong=\"H7227\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* precious|strong=\"H3368\"* stones; and|strong=\"H2091\"* when|strong=\"H1961\"* she|strong=\"H5973\"* had|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1696\"* Solomon|strong=\"H8010\"*, she|strong=\"H5973\"* talked|strong=\"H1696\"* with|strong=\"H5973\"* him|strong=\"H5973\"* about|strong=\"H1961\"* all|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H1961\"* in|strong=\"H1696\"* her|strong=\"H3605\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 3, + "text": "Solomon|strong=\"H8010\"* answered|strong=\"H5046\"* all|strong=\"H3605\"* her|strong=\"H3605\"* questions|strong=\"H1697\"*. There|strong=\"H1961\"* wasn’t anything|strong=\"H3605\"* hidden|strong=\"H5956\"* from|strong=\"H4480\"* the|strong=\"H3605\"* king|strong=\"H4428\"* which|strong=\"H1697\"* he|strong=\"H3605\"* didn’t tell|strong=\"H5046\"* her|strong=\"H3605\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"H7200\"* the|strong=\"H3605\"* queen|strong=\"H4436\"* of|strong=\"H1004\"* Sheba|strong=\"H7614\"* had|strong=\"H8010\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wisdom|strong=\"H2451\"* of|strong=\"H1004\"* Solomon|strong=\"H8010\"*, the|strong=\"H3605\"* house|strong=\"H1004\"* that|strong=\"H7200\"* he|strong=\"H3605\"* had|strong=\"H8010\"* built|strong=\"H1129\"*," + }, + { + "verseNum": 5, + "text": "the|strong=\"H3068\"* food|strong=\"H3978\"* of|strong=\"H1004\"* his|strong=\"H3068\"* table|strong=\"H7979\"*, the|strong=\"H3068\"* sitting|strong=\"H4186\"* of|strong=\"H1004\"* his|strong=\"H3068\"* servants|strong=\"H5650\"*, the|strong=\"H3068\"* attendance|strong=\"H4612\"* of|strong=\"H1004\"* his|strong=\"H3068\"* officials|strong=\"H5650\"*, their|strong=\"H3068\"* clothing, his|strong=\"H3068\"* cup bearers, and|strong=\"H3068\"* his|strong=\"H3068\"* ascent|strong=\"H5927\"* by|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3068\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, there|strong=\"H1961\"* was|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H5750\"* spirit|strong=\"H7307\"* in|strong=\"H3068\"* her|strong=\"H1961\"*." + }, + { + "verseNum": 6, + "text": "She|strong=\"H5921\"* said|strong=\"H1697\"* to|strong=\"H1961\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, “It|strong=\"H5921\"* was|strong=\"H1961\"* a|strong=\"H3068\"* true report|strong=\"H1697\"* that|strong=\"H8085\"* I|strong=\"H5921\"* heard|strong=\"H8085\"* in|strong=\"H5921\"* my|strong=\"H8085\"* own|strong=\"H1961\"* land of|strong=\"H4428\"* your|strong=\"H5921\"* acts|strong=\"H1697\"* and|strong=\"H4428\"* of|strong=\"H4428\"* your|strong=\"H5921\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 7, + "text": "However|strong=\"H8085\"*, I|strong=\"H5704\"* didn’t believe the|strong=\"H8085\"* words|strong=\"H1697\"* until|strong=\"H5704\"* I|strong=\"H5704\"* came|strong=\"H1697\"* and|strong=\"H5869\"* my|strong=\"H8085\"* eyes|strong=\"H5869\"* had|strong=\"H5869\"* seen|strong=\"H7200\"* it|strong=\"H7200\"*. Behold|strong=\"H2009\"*, not|strong=\"H3808\"* even|strong=\"H5704\"* half|strong=\"H2677\"* was|strong=\"H1697\"* told|strong=\"H5046\"* me|strong=\"H7200\"*! Your|strong=\"H7200\"* wisdom|strong=\"H2451\"* and|strong=\"H5869\"* prosperity|strong=\"H2896\"* exceed|strong=\"H3254\"* the|strong=\"H8085\"* fame|strong=\"H8052\"* which|strong=\"H1697\"* I|strong=\"H5704\"* heard|strong=\"H8085\"*." + }, + { + "verseNum": 8, + "text": "Happy are|strong=\"H5650\"* your|strong=\"H6440\"* men|strong=\"H5650\"*, happy are|strong=\"H5650\"* these|strong=\"H8085\"* your|strong=\"H6440\"* servants|strong=\"H5650\"* who|strong=\"H5650\"* stand|strong=\"H5975\"* continually|strong=\"H8548\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, who|strong=\"H5650\"* hear|strong=\"H8085\"* your|strong=\"H6440\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 9, + "text": "Blessed|strong=\"H1288\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* delighted|strong=\"H2654\"* in|strong=\"H5921\"* you|strong=\"H5414\"*, to|strong=\"H3478\"* set|strong=\"H7760\"* you|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*. Because|strong=\"H5921\"* Yahweh|strong=\"H3068\"* loved Israel|strong=\"H3478\"* forever|strong=\"H5769\"*, therefore|strong=\"H5921\"* he|strong=\"H6213\"* made|strong=\"H6213\"* you|strong=\"H5414\"* king|strong=\"H4428\"*, to|strong=\"H3478\"* do|strong=\"H6213\"* justice|strong=\"H4941\"* and|strong=\"H3478\"* righteousness|strong=\"H6666\"*.”" + }, + { + "verseNum": 10, + "text": "She|strong=\"H1931\"* gave|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"* one|strong=\"H3808\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* talents|strong=\"H3603\"* of|strong=\"H4428\"* gold|strong=\"H2091\"*, and|strong=\"H3967\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H3966\"* quantity|strong=\"H7230\"* of|strong=\"H4428\"* spices|strong=\"H1314\"*, and|strong=\"H3967\"* precious|strong=\"H3368\"* stones. Never|strong=\"H3808\"* again|strong=\"H5750\"* was|strong=\"H1931\"* there|strong=\"H7230\"* such|strong=\"H1931\"* an|strong=\"H5414\"* abundance|strong=\"H7230\"* of|strong=\"H4428\"* spices|strong=\"H1314\"* as|strong=\"H7230\"* these|strong=\"H1931\"* which|strong=\"H1931\"* the|strong=\"H5414\"* queen|strong=\"H4436\"* of|strong=\"H4428\"* Sheba|strong=\"H7614\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5375\"* fleet of|strong=\"H6086\"* Hiram|strong=\"H2438\"* that|strong=\"H6086\"* brought|strong=\"H5375\"* gold|strong=\"H2091\"* from|strong=\"H2091\"* Ophir also|strong=\"H1571\"* brought|strong=\"H5375\"* in|strong=\"H6086\"* from|strong=\"H2091\"* Ophir great|strong=\"H3966\"* quantities of|strong=\"H6086\"* almug trees|strong=\"H6086\"*+ 10:11 possibly an Indian sandalwood, with nice grain and a pleasant scent, and good for woodworking* and|strong=\"H6086\"* precious|strong=\"H3368\"* stones." + }, + { + "verseNum": 12, + "text": "The|strong=\"H7200\"* king|strong=\"H4428\"* made|strong=\"H6213\"* of|strong=\"H4428\"* the|strong=\"H7200\"* almug trees|strong=\"H6086\"* pillars|strong=\"H4552\"* for|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* for|strong=\"H5704\"* the|strong=\"H7200\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, harps|strong=\"H3658\"* also|strong=\"H3068\"* and|strong=\"H3068\"* stringed instruments for|strong=\"H5704\"* the|strong=\"H7200\"* singers|strong=\"H7891\"*; no|strong=\"H3808\"* such|strong=\"H2088\"* almug trees|strong=\"H6086\"* came|strong=\"H3068\"* or|strong=\"H3808\"* were|strong=\"H3117\"* seen|strong=\"H7200\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 13, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* gave|strong=\"H5414\"* to|strong=\"H3212\"* the|strong=\"H3605\"* queen|strong=\"H4436\"* of|strong=\"H4428\"* Sheba|strong=\"H7614\"* all|strong=\"H3605\"* her|strong=\"H3605\"* desire|strong=\"H2656\"*, whatever|strong=\"H3605\"* she|strong=\"H1931\"* asked|strong=\"H7592\"*, in|strong=\"H4428\"* addition to|strong=\"H3212\"* that|strong=\"H3605\"* which|strong=\"H1931\"* Solomon|strong=\"H8010\"* gave|strong=\"H5414\"* her|strong=\"H3605\"* of|strong=\"H4428\"* his|strong=\"H3605\"* royal|strong=\"H4428\"* bounty|strong=\"H3027\"*. So|strong=\"H5414\"* she|strong=\"H1931\"* turned|strong=\"H6437\"* and|strong=\"H4428\"* went|strong=\"H3212\"* to|strong=\"H3212\"* her|strong=\"H3605\"* own|strong=\"H3027\"* land, she|strong=\"H1931\"* and|strong=\"H4428\"* her|strong=\"H3605\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"H1961\"* the|strong=\"H1961\"* weight|strong=\"H4948\"* of|strong=\"H8141\"* gold|strong=\"H2091\"* that|strong=\"H8141\"* came|strong=\"H1961\"* to|strong=\"H1961\"* Solomon|strong=\"H8010\"* in|strong=\"H8141\"* one|strong=\"H1961\"* year|strong=\"H8141\"* was|strong=\"H1961\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* sixty-six|strong=\"H8346\"* talents|strong=\"H3603\"*+ 10:14 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 666 talents is about 20 metric tons* of|strong=\"H8141\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 15, + "text": "in|strong=\"H4428\"* addition to|strong=\"H4428\"* that|strong=\"H3605\"* which|strong=\"H4428\"* the|strong=\"H3605\"* traders|strong=\"H7402\"* brought|strong=\"H4428\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* traffic of|strong=\"H4428\"* the|strong=\"H3605\"* merchants|strong=\"H7402\"*, and|strong=\"H4428\"* of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* mixed people, and|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* governors|strong=\"H6346\"* of|strong=\"H4428\"* the|strong=\"H3605\"* country." + }, + { + "verseNum": 16, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* made|strong=\"H6213\"* two|strong=\"H6213\"* hundred|strong=\"H3967\"* bucklers|strong=\"H6793\"* of|strong=\"H4428\"* beaten|strong=\"H7820\"* gold|strong=\"H2091\"*; six|strong=\"H8337\"* hundred|strong=\"H3967\"* shekels+ 10:16 A shekel is about 10 grams or about 0.32 Troy ounces, so 600 shekels is about 6 kilograms or 13.2 pounds or 192 Troy ounces.* of|strong=\"H4428\"* gold|strong=\"H2091\"* went|strong=\"H5927\"* to|strong=\"H5927\"* one|strong=\"H6213\"* buckler|strong=\"H6793\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H1004\"* made|strong=\"H5414\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* shields|strong=\"H4043\"* of|strong=\"H4428\"* beaten|strong=\"H7820\"* gold|strong=\"H2091\"*; three|strong=\"H7969\"* minas|strong=\"H4488\"*+ 10:17 A mina is about 600 grams or 1.3 U. S. pounds.* of|strong=\"H4428\"* gold|strong=\"H2091\"* went|strong=\"H5927\"* to|strong=\"H5927\"* one|strong=\"H3967\"* shield|strong=\"H4043\"*; and|strong=\"H3967\"* the|strong=\"H5921\"* king|strong=\"H4428\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H5921\"* House|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H5921\"* Forest|strong=\"H3293\"* of|strong=\"H4428\"* Lebanon|strong=\"H3844\"*." + }, + { + "verseNum": 18, + "text": "Moreover the|strong=\"H6213\"* king|strong=\"H4428\"* made|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* ivory|strong=\"H8127\"*, and|strong=\"H4428\"* overlaid|strong=\"H6823\"* it|strong=\"H6213\"* with|strong=\"H6213\"* the|strong=\"H6213\"* finest gold|strong=\"H2091\"*." + }, + { + "verseNum": 19, + "text": "There|strong=\"H2088\"* were|strong=\"H3027\"* six|strong=\"H8337\"* steps|strong=\"H4609\"* to|strong=\"H3027\"* the|strong=\"H3027\"* throne|strong=\"H3678\"*, and|strong=\"H3027\"* the|strong=\"H3027\"* top|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H3027\"* throne|strong=\"H3678\"* was|strong=\"H4725\"* round|strong=\"H5696\"* behind|strong=\"H5975\"*; and|strong=\"H3027\"* there|strong=\"H2088\"* were|strong=\"H3027\"* armrests|strong=\"H7675\"* on|strong=\"H3027\"* either|strong=\"H2088\"* side|strong=\"H2088\"* by|strong=\"H3027\"* the|strong=\"H3027\"* place|strong=\"H4725\"* of|strong=\"H3027\"* the|strong=\"H3027\"* seat|strong=\"H3678\"*, and|strong=\"H3027\"* two|strong=\"H8147\"* lions standing|strong=\"H5975\"* beside|strong=\"H3027\"* the|strong=\"H3027\"* armrests|strong=\"H7675\"*." + }, + { + "verseNum": 20, + "text": "Twelve|strong=\"H8147\"* lions stood|strong=\"H5975\"* there|strong=\"H8033\"* on|strong=\"H5921\"* the|strong=\"H3605\"* one|strong=\"H2088\"* side|strong=\"H2088\"* and|strong=\"H8033\"* on|strong=\"H5921\"* the|strong=\"H3605\"* other|strong=\"H2088\"* on|strong=\"H5921\"* the|strong=\"H3605\"* six|strong=\"H8337\"* steps|strong=\"H4609\"*. Nothing|strong=\"H3808\"* like|strong=\"H3651\"* it|strong=\"H5921\"* was|strong=\"H4467\"* made|strong=\"H6213\"* in|strong=\"H5921\"* any|strong=\"H3605\"* kingdom|strong=\"H4467\"*." + }, + { + "verseNum": 21, + "text": "All|strong=\"H3605\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*’s drinking|strong=\"H4945\"* vessels|strong=\"H3627\"* were|strong=\"H3117\"* of|strong=\"H4428\"* gold|strong=\"H2091\"*, and|strong=\"H3701\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* the|strong=\"H3605\"* House|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Forest|strong=\"H3293\"* of|strong=\"H4428\"* Lebanon|strong=\"H3844\"* were|strong=\"H3117\"* of|strong=\"H4428\"* pure|strong=\"H5462\"* gold|strong=\"H2091\"*. None|strong=\"H3808\"* were|strong=\"H3117\"* of|strong=\"H4428\"* silver|strong=\"H3701\"*, because|strong=\"H3117\"* it|strong=\"H3117\"* was|strong=\"H3117\"* considered|strong=\"H2803\"* of|strong=\"H4428\"* little value|strong=\"H2803\"* in|strong=\"H1004\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"* had|strong=\"H4428\"* a|strong=\"H3068\"* fleet of|strong=\"H4428\"* ships of|strong=\"H4428\"* Tarshish|strong=\"H8659\"* at|strong=\"H4428\"* sea|strong=\"H3220\"* with|strong=\"H5973\"* Hiram|strong=\"H2438\"*’s fleet. Once every|strong=\"H8141\"* three|strong=\"H7969\"* years|strong=\"H8141\"* the|strong=\"H3588\"* fleet of|strong=\"H4428\"* Tarshish|strong=\"H8659\"* came|strong=\"H4428\"* bringing|strong=\"H5375\"* gold|strong=\"H2091\"*, silver|strong=\"H3701\"*, ivory|strong=\"H8143\"*, apes|strong=\"H6971\"*, and|strong=\"H3701\"* peacocks|strong=\"H8500\"*." + }, + { + "verseNum": 23, + "text": "So|strong=\"H1431\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* exceeded|strong=\"H1431\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* earth in|strong=\"H4428\"* riches|strong=\"H6239\"* and|strong=\"H4428\"* in|strong=\"H4428\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 24, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* earth sought|strong=\"H1245\"* the|strong=\"H3605\"* presence|strong=\"H6440\"* of|strong=\"H6440\"* Solomon|strong=\"H8010\"* to|strong=\"H5414\"* hear|strong=\"H8085\"* his|strong=\"H3605\"* wisdom|strong=\"H2451\"* which|strong=\"H8085\"* God|strong=\"H5414\"* had|strong=\"H8010\"* put|strong=\"H5414\"* in|strong=\"H8085\"* his|strong=\"H3605\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 25, + "text": "Year|strong=\"H8141\"* after|strong=\"H1992\"* year|strong=\"H8141\"*, every|strong=\"H1697\"* man brought his|strong=\"H1992\"* tribute|strong=\"H4503\"*, vessels|strong=\"H3627\"* of|strong=\"H1697\"* silver|strong=\"H3701\"*, vessels|strong=\"H3627\"* of|strong=\"H1697\"* gold|strong=\"H2091\"*, clothing|strong=\"H3627\"*, armor|strong=\"H3627\"*, spices|strong=\"H1314\"*, horses|strong=\"H5483\"*, and|strong=\"H3701\"* mules|strong=\"H6505\"*." + }, + { + "verseNum": 26, + "text": "Solomon|strong=\"H8010\"* gathered|strong=\"H8010\"* together|strong=\"H5973\"* chariots|strong=\"H7393\"* and|strong=\"H3967\"* horsemen|strong=\"H6571\"*. He|strong=\"H8147\"* had|strong=\"H1961\"* one|strong=\"H1961\"* thousand four hundred|strong=\"H3967\"* chariots|strong=\"H7393\"* and|strong=\"H3967\"* twelve|strong=\"H8147\"* thousand horsemen|strong=\"H6571\"*. He|strong=\"H8147\"* kept|strong=\"H1961\"* them|strong=\"H8147\"* in|strong=\"H4428\"* the|strong=\"H1961\"* chariot|strong=\"H7393\"* cities|strong=\"H5892\"* and|strong=\"H3967\"* with|strong=\"H5973\"* the|strong=\"H1961\"* king|strong=\"H4428\"* at|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* made|strong=\"H5414\"* silver|strong=\"H3701\"* as|strong=\"H7230\"* common|strong=\"H7230\"* as|strong=\"H7230\"* stones in|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3701\"* cedars as|strong=\"H7230\"* common|strong=\"H7230\"* as|strong=\"H7230\"* the|strong=\"H5414\"* sycamore|strong=\"H8256\"* trees|strong=\"H8256\"* that|strong=\"H5414\"* are|strong=\"H4428\"* in|strong=\"H4428\"* the|strong=\"H5414\"* lowland|strong=\"H8219\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H3947\"* horses|strong=\"H5483\"* which|strong=\"H5483\"* Solomon|strong=\"H8010\"* had|strong=\"H8010\"* were|strong=\"H4714\"* brought|strong=\"H3947\"* out|strong=\"H4161\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*. The|strong=\"H3947\"* king|strong=\"H4428\"*’s merchants|strong=\"H5503\"* received|strong=\"H3947\"* them|strong=\"H3947\"* in|strong=\"H4428\"* droves, each|strong=\"H3947\"* drove at|strong=\"H4428\"* a|strong=\"H3068\"* price|strong=\"H4242\"*." + }, + { + "verseNum": 29, + "text": "A|strong=\"H3068\"* chariot|strong=\"H4818\"* was|strong=\"H4428\"* imported|strong=\"H5927\"* from|strong=\"H3318\"* Egypt|strong=\"H4714\"* for|strong=\"H3027\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* shekels|strong=\"H3701\"*+ 10:29 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H4428\"* silver|strong=\"H3701\"*, and|strong=\"H3967\"* a|strong=\"H3068\"* horse|strong=\"H5483\"* for|strong=\"H3027\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* shekels|strong=\"H3701\"*; and|strong=\"H3967\"* so|strong=\"H3651\"* they|strong=\"H3651\"* exported|strong=\"H3318\"* them|strong=\"H3027\"* to|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Hittites|strong=\"H2850\"* and|strong=\"H3967\"* to|strong=\"H3318\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Syria." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H7227\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* loved many|strong=\"H7227\"* foreign|strong=\"H5237\"* women|strong=\"H1323\"*, together with|strong=\"H4428\"* the|strong=\"H8010\"* daughter|strong=\"H1323\"* of|strong=\"H4428\"* Pharaoh|strong=\"H6547\"*: women|strong=\"H1323\"* of|strong=\"H4428\"* the|strong=\"H8010\"* Moabites|strong=\"H4125\"*, Ammonites|strong=\"H5984\"*, Edomites, Sidonians|strong=\"H6722\"*, and|strong=\"H4428\"* Hittites|strong=\"H2850\"*," + }, + { + "verseNum": 2, + "text": "of|strong=\"H1121\"* the|strong=\"H3068\"* nations|strong=\"H1471\"* concerning|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3068\"* among|strong=\"H4480\"* them|strong=\"H1992\"*, neither|strong=\"H3808\"* shall|strong=\"H3068\"* they|strong=\"H1992\"* come|strong=\"H3478\"* among|strong=\"H4480\"* you|strong=\"H3808\"*, for|strong=\"H3068\"* surely|strong=\"H1121\"* they|strong=\"H1992\"* will|strong=\"H3068\"* turn|strong=\"H5186\"* away|strong=\"H5186\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* after|strong=\"H4480\"* their|strong=\"H3068\"* gods.” Solomon|strong=\"H8010\"* joined|strong=\"H1692\"* to|strong=\"H3478\"* these|strong=\"H1992\"* in|strong=\"H3478\"* love." + }, + { + "verseNum": 3, + "text": "He|strong=\"H5186\"* had|strong=\"H1961\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* wives, princesses|strong=\"H8282\"*, and|strong=\"H3967\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* concubines|strong=\"H6370\"*. His|strong=\"H5186\"* wives turned|strong=\"H5186\"* his|strong=\"H5186\"* heart|strong=\"H3820\"* away|strong=\"H5186\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"H1961\"* Solomon|strong=\"H8010\"* was|strong=\"H3068\"* old|strong=\"H2209\"*, his|strong=\"H3068\"* wives turned|strong=\"H5186\"* away|strong=\"H5186\"* his|strong=\"H3068\"* heart|strong=\"H3824\"* after|strong=\"H1961\"* other gods; and|strong=\"H3068\"* his|strong=\"H3068\"* heart|strong=\"H3824\"* was|strong=\"H3068\"* not|strong=\"H3808\"* perfect|strong=\"H8003\"* with|strong=\"H5973\"* Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*, as|strong=\"H1961\"* the|strong=\"H3068\"* heart|strong=\"H3824\"* of|strong=\"H3068\"* David|strong=\"H1732\"* his|strong=\"H3068\"* father was|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H8010\"* Solomon|strong=\"H8010\"* went|strong=\"H3212\"* after Ashtoreth|strong=\"H6253\"* the|strong=\"H8010\"* goddess of|strong=\"H8251\"* the|strong=\"H8010\"* Sidonians|strong=\"H6722\"*, and|strong=\"H3212\"* after Milcom|strong=\"H4445\"* the|strong=\"H8010\"* abomination|strong=\"H8251\"* of|strong=\"H8251\"* the|strong=\"H8010\"* Ammonites|strong=\"H5984\"*." + }, + { + "verseNum": 6, + "text": "Solomon|strong=\"H8010\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H3068\"* didn’t go|strong=\"H3068\"* fully|strong=\"H4390\"* after Yahweh|strong=\"H3068\"*, as|strong=\"H6213\"* David|strong=\"H1732\"* his|strong=\"H3068\"* father did|strong=\"H6213\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H8010\"* Solomon|strong=\"H8010\"* built|strong=\"H1129\"* a|strong=\"H3068\"* high|strong=\"H1116\"* place|strong=\"H1116\"* for|strong=\"H5921\"* Chemosh|strong=\"H3645\"* the|strong=\"H6440\"* abomination|strong=\"H8251\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, on|strong=\"H5921\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"* that|strong=\"H1121\"* is|strong=\"H1121\"* before|strong=\"H6440\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H1121\"* for|strong=\"H5921\"* Molech|strong=\"H4432\"* the|strong=\"H6440\"* abomination|strong=\"H8251\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 8, + "text": "So|strong=\"H3651\"* he|strong=\"H6213\"* did|strong=\"H6213\"* for|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* foreign|strong=\"H5237\"* wives, who|strong=\"H3605\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* and|strong=\"H6213\"* sacrificed|strong=\"H2076\"* to|strong=\"H6213\"* their|strong=\"H3605\"* gods." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* angry with|strong=\"H5973\"* Solomon|strong=\"H8010\"*, because|strong=\"H3588\"* his|strong=\"H3068\"* heart|strong=\"H3824\"* was|strong=\"H3068\"* turned|strong=\"H5186\"* away|strong=\"H5186\"* from|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, the|strong=\"H7200\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, who|strong=\"H3068\"* had|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3478\"* him|strong=\"H7200\"* twice|strong=\"H6471\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H5921\"* concerning|strong=\"H5921\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*, that|strong=\"H3068\"* he|strong=\"H3068\"* should|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3212\"* after|strong=\"H5921\"* other|strong=\"H2088\"* gods; but|strong=\"H3808\"* he|strong=\"H3068\"* didn’t keep|strong=\"H8104\"* that|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H5921\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Solomon|strong=\"H8010\"*, “Because|strong=\"H5921\"* this|strong=\"H2063\"* is|strong=\"H3068\"* done|strong=\"H1961\"* by|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H3068\"* you|strong=\"H5414\"* have|strong=\"H1961\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* my|strong=\"H8104\"* covenant|strong=\"H1285\"* and|strong=\"H3068\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, which|strong=\"H3068\"* I|strong=\"H5414\"* have|strong=\"H1961\"* commanded|strong=\"H6680\"* you|strong=\"H5414\"*, I|strong=\"H5414\"* will|strong=\"H3068\"* surely|strong=\"H5414\"* tear|strong=\"H7167\"* the|strong=\"H5921\"* kingdom|strong=\"H4467\"* from|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 12, + "text": "Nevertheless, I|strong=\"H3117\"* will|strong=\"H1121\"* not|strong=\"H3808\"* do|strong=\"H6213\"* it|strong=\"H6213\"* in|strong=\"H6213\"* your|strong=\"H6213\"* days|strong=\"H3117\"*, for|strong=\"H6213\"* David|strong=\"H1732\"* your|strong=\"H6213\"* father|strong=\"H1121\"*’s sake|strong=\"H4616\"*; but|strong=\"H3808\"* I|strong=\"H3117\"* will|strong=\"H1121\"* tear|strong=\"H7167\"* it|strong=\"H6213\"* out|strong=\"H6213\"* of|strong=\"H1121\"* your|strong=\"H6213\"* son|strong=\"H1121\"*’s hand|strong=\"H3027\"*." + }, + { + "verseNum": 13, + "text": "However|strong=\"H7535\"*, I|strong=\"H5414\"* will|strong=\"H5650\"* not|strong=\"H3808\"* tear|strong=\"H7167\"* away|strong=\"H7167\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdom|strong=\"H4467\"*; but|strong=\"H7535\"* I|strong=\"H5414\"* will|strong=\"H5650\"* give|strong=\"H5414\"* one|strong=\"H3605\"* tribe|strong=\"H7626\"* to|strong=\"H5414\"* your|strong=\"H3605\"* son|strong=\"H1121\"*, for|strong=\"H4616\"* David|strong=\"H1732\"* my|strong=\"H5414\"* servant|strong=\"H5650\"*’s sake|strong=\"H4616\"*, and|strong=\"H1121\"* for|strong=\"H4616\"* Jerusalem|strong=\"H3389\"*’s sake|strong=\"H4616\"* which|strong=\"H7626\"* I|strong=\"H5414\"* have|strong=\"H1121\"* chosen.”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* an|strong=\"H6965\"* adversary|strong=\"H7854\"* to|strong=\"H3068\"* Solomon|strong=\"H8010\"*: Hadad|strong=\"H1908\"* the|strong=\"H3068\"* Edomite. He|strong=\"H1931\"* was|strong=\"H3068\"* one|strong=\"H1931\"* of|strong=\"H4428\"* the|strong=\"H3068\"* king|strong=\"H4428\"*’s offspring|strong=\"H2233\"* in|strong=\"H3068\"* Edom." + }, + { + "verseNum": 15, + "text": "For|strong=\"H6635\"* when|strong=\"H1961\"* David|strong=\"H1732\"* was|strong=\"H1961\"* in|strong=\"H6912\"* Edom, and|strong=\"H1732\"* Joab|strong=\"H3097\"* the|strong=\"H3605\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H3605\"* army|strong=\"H6635\"* had|strong=\"H1961\"* gone|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* bury|strong=\"H6912\"* the|strong=\"H3605\"* slain|strong=\"H2491\"*, and|strong=\"H1732\"* had|strong=\"H1961\"* struck|strong=\"H5221\"* every|strong=\"H3605\"* male|strong=\"H2145\"* in|strong=\"H6912\"* Edom" + }, + { + "verseNum": 16, + "text": "(for|strong=\"H3588\"* Joab|strong=\"H3097\"* and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* remained|strong=\"H3427\"* there|strong=\"H8033\"* six|strong=\"H8337\"* months|strong=\"H2320\"*, until|strong=\"H5704\"* he|strong=\"H3588\"* had|strong=\"H3478\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* every|strong=\"H3605\"* male|strong=\"H2145\"* in|strong=\"H3427\"* Edom)," + }, + { + "verseNum": 17, + "text": "Hadad|strong=\"H1908\"* fled|strong=\"H1272\"*, he|strong=\"H1931\"* and|strong=\"H5650\"* certain Edomites of|strong=\"H5650\"* his|strong=\"H1931\"* father’s servants|strong=\"H5650\"* with|strong=\"H4714\"* him|strong=\"H1931\"*, to|strong=\"H4714\"* go|strong=\"H5288\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*, when Hadad|strong=\"H1908\"* was|strong=\"H1931\"* still a|strong=\"H3068\"* little|strong=\"H6996\"* child|strong=\"H5288\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"H5414\"* arose|strong=\"H6965\"* out|strong=\"H5414\"* of|strong=\"H4428\"* Midian|strong=\"H4080\"* and|strong=\"H6965\"* came|strong=\"H4714\"* to|strong=\"H5414\"* Paran|strong=\"H6290\"*; and|strong=\"H6965\"* they|strong=\"H5414\"* took|strong=\"H3947\"* men|strong=\"H3947\"* with|strong=\"H5973\"* them|strong=\"H5414\"* out|strong=\"H5414\"* of|strong=\"H4428\"* Paran|strong=\"H6290\"*, and|strong=\"H6965\"* they|strong=\"H5414\"* came|strong=\"H4714\"* to|strong=\"H5414\"* Egypt|strong=\"H4714\"*, to|strong=\"H5414\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*, who|strong=\"H4428\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* a|strong=\"H3068\"* house|strong=\"H1004\"*, and|strong=\"H6965\"* appointed|strong=\"H5414\"* him|strong=\"H5414\"* food|strong=\"H3899\"*, and|strong=\"H6965\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* land." + }, + { + "verseNum": 19, + "text": "Hadad|strong=\"H1908\"* found|strong=\"H4672\"* great|strong=\"H3966\"* favor|strong=\"H2580\"* in|strong=\"H4672\"* the|strong=\"H5414\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* Pharaoh|strong=\"H6547\"*, so|strong=\"H5414\"* that|strong=\"H5414\"* he|strong=\"H5414\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* as|strong=\"H5869\"* wife the|strong=\"H5414\"* sister of|strong=\"H5869\"* his|strong=\"H5414\"* own|strong=\"H5869\"* wife, the|strong=\"H5414\"* sister of|strong=\"H5869\"* Tahpenes|strong=\"H8472\"* the|strong=\"H5414\"* queen|strong=\"H1377\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H8432\"* sister of|strong=\"H1121\"* Tahpenes|strong=\"H8472\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* Genubath|strong=\"H1592\"* his|strong=\"H1961\"* son|strong=\"H1121\"*, whom Tahpenes|strong=\"H8472\"* weaned|strong=\"H1580\"* in|strong=\"H1004\"* Pharaoh|strong=\"H6547\"*’s house|strong=\"H1004\"*; and|strong=\"H1121\"* Genubath|strong=\"H1592\"* was|strong=\"H1961\"* in|strong=\"H1004\"* Pharaoh|strong=\"H6547\"*’s house|strong=\"H1004\"* among|strong=\"H8432\"* the|strong=\"H8432\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H3588\"* Hadad|strong=\"H1908\"* heard|strong=\"H8085\"* in|strong=\"H4191\"* Egypt|strong=\"H4714\"* that|strong=\"H3588\"* David|strong=\"H1732\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H7971\"* fathers, and|strong=\"H7971\"* that|strong=\"H3588\"* Joab|strong=\"H3097\"* the|strong=\"H8085\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H8085\"* army|strong=\"H6635\"* was|strong=\"H1732\"* dead|strong=\"H4191\"*, Hadad|strong=\"H1908\"* said|strong=\"H8085\"* to|strong=\"H4191\"* Pharaoh|strong=\"H6547\"*, “Let|strong=\"H7971\"* me|strong=\"H7971\"* depart|strong=\"H3212\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H4714\"* go|strong=\"H3212\"* to|strong=\"H4191\"* my|strong=\"H8085\"* own|strong=\"H5973\"* country.”" + }, + { + "verseNum": 22, + "text": "Then|strong=\"H7971\"* Pharaoh|strong=\"H6547\"* said to|strong=\"H3212\"* him|strong=\"H7971\"*, “But|strong=\"H3588\"* what|strong=\"H4100\"* have|strong=\"H3588\"* you|strong=\"H3588\"* lacked|strong=\"H2638\"* with|strong=\"H5973\"* me|strong=\"H7971\"*, that|strong=\"H3588\"* behold|strong=\"H2005\"*, you|strong=\"H3588\"* seek|strong=\"H1245\"* to|strong=\"H3212\"* go|strong=\"H3212\"* to|strong=\"H3212\"* your|strong=\"H3588\"* own|strong=\"H5973\"* country?”" + }, + { + "verseNum": 23, + "text": "God raised|strong=\"H6965\"* up|strong=\"H6965\"* an|strong=\"H6965\"* adversary|strong=\"H7854\"* to|strong=\"H1121\"* him|strong=\"H4428\"*, Rezon|strong=\"H7331\"* the|strong=\"H6965\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eliada, who|strong=\"H1121\"* had|strong=\"H4428\"* fled|strong=\"H1272\"* from|strong=\"H1121\"* his|strong=\"H6965\"* lord, Hadadezer|strong=\"H1909\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Zobah|strong=\"H6678\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H1732\"* gathered|strong=\"H6908\"* men|strong=\"H1416\"* to|strong=\"H3212\"* himself|strong=\"H3427\"*, and|strong=\"H3212\"* became|strong=\"H4427\"* captain|strong=\"H8269\"* over|strong=\"H5921\"* a|strong=\"H3068\"* troop|strong=\"H1416\"*, when|strong=\"H1961\"* David|strong=\"H1732\"* killed|strong=\"H2026\"* them|strong=\"H5921\"* of|strong=\"H3427\"* Zobah. They|strong=\"H5921\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Damascus|strong=\"H1834\"* and|strong=\"H3212\"* lived|strong=\"H3427\"* there|strong=\"H1961\"*, and|strong=\"H3212\"* reigned|strong=\"H4427\"* in|strong=\"H3427\"* Damascus|strong=\"H1834\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H3117\"* was|strong=\"H1961\"* an|strong=\"H1961\"* adversary|strong=\"H7854\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Solomon|strong=\"H8010\"*, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H3605\"* mischief|strong=\"H7451\"* of|strong=\"H3117\"* Hadad|strong=\"H1908\"*. He|strong=\"H3117\"* abhorred|strong=\"H6973\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Syria." + }, + { + "verseNum": 26, + "text": "Jeroboam|strong=\"H3379\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, an|strong=\"H4480\"* Ephraimite of|strong=\"H1121\"* Zeredah|strong=\"H6868\"*, a|strong=\"H3068\"* servant|strong=\"H5650\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*, whose|strong=\"H1121\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Zeruah|strong=\"H6871\"*, a|strong=\"H3068\"* widow, also|strong=\"H8034\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* his|strong=\"H3027\"* hand|strong=\"H3027\"* against|strong=\"H4480\"* the|strong=\"H4480\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 27, + "text": "This|strong=\"H2088\"* was|strong=\"H1732\"* the|strong=\"H1129\"* reason|strong=\"H1697\"* why|strong=\"H1697\"* he|strong=\"H1732\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* his|strong=\"H1732\"* hand|strong=\"H3027\"* against|strong=\"H3027\"* the|strong=\"H1129\"* king|strong=\"H4428\"*: Solomon|strong=\"H8010\"* built|strong=\"H1129\"* Millo|strong=\"H4407\"*, and|strong=\"H4428\"* repaired|strong=\"H1129\"* the|strong=\"H1129\"* breach|strong=\"H6556\"* of|strong=\"H4428\"* his|strong=\"H1732\"* father David|strong=\"H1732\"*’s city|strong=\"H5892\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H3605\"* man|strong=\"H5288\"* Jeroboam|strong=\"H3379\"* was|strong=\"H1931\"* a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H5288\"* of|strong=\"H1004\"* valor|strong=\"H2428\"*; and|strong=\"H1004\"* Solomon|strong=\"H8010\"* saw|strong=\"H7200\"* the|strong=\"H3605\"* young|strong=\"H5288\"* man|strong=\"H5288\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* industrious|strong=\"H4399\"*, and|strong=\"H1004\"* he|strong=\"H1931\"* put|strong=\"H6213\"* him|strong=\"H6213\"* in|strong=\"H6213\"* charge|strong=\"H6485\"* of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* labor|strong=\"H5447\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Joseph|strong=\"H3130\"*." + }, + { + "verseNum": 29, + "text": "At|strong=\"H1961\"* that|strong=\"H1931\"* time|strong=\"H6256\"*, when|strong=\"H1961\"* Jeroboam|strong=\"H3379\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1870\"* Jerusalem|strong=\"H3389\"*, the|strong=\"H3680\"* prophet|strong=\"H5030\"* Ahijah|strong=\"H3680\"* the|strong=\"H3680\"* Shilonite|strong=\"H7888\"* found|strong=\"H4672\"* him|strong=\"H4672\"* on|strong=\"H1870\"* the|strong=\"H3680\"* way|strong=\"H1870\"*. Now|strong=\"H1961\"* Ahijah|strong=\"H3680\"* had|strong=\"H1961\"* clad|strong=\"H3680\"* himself|strong=\"H1931\"* with|strong=\"H3389\"* a|strong=\"H3068\"* new|strong=\"H2319\"* garment|strong=\"H8008\"*; and|strong=\"H3389\"* the|strong=\"H3680\"* two|strong=\"H8147\"* of|strong=\"H1870\"* them|strong=\"H3318\"* were|strong=\"H1961\"* alone|strong=\"H1931\"* in|strong=\"H4672\"* the|strong=\"H3680\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 30, + "text": "Ahijah took|strong=\"H8610\"* the|strong=\"H5921\"* new|strong=\"H2319\"* garment|strong=\"H8008\"* that|strong=\"H5921\"* was on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H8147\"* tore|strong=\"H7167\"* it|strong=\"H5921\"* in|strong=\"H5921\"* twelve|strong=\"H8147\"* pieces|strong=\"H7168\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"H3588\"* said to|strong=\"H3478\"* Jeroboam|strong=\"H3379\"*, “Take|strong=\"H3947\"* ten|strong=\"H6235\"* pieces|strong=\"H7168\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* tear|strong=\"H7167\"* the|strong=\"H3588\"* kingdom|strong=\"H4467\"* out|strong=\"H5414\"* of|strong=\"H3068\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Solomon|strong=\"H8010\"* and|strong=\"H3478\"* will|strong=\"H3068\"* give|strong=\"H5414\"* ten|strong=\"H6235\"* tribes|strong=\"H7626\"* to|strong=\"H3478\"* you|strong=\"H3588\"*" + }, + { + "verseNum": 32, + "text": "(but|strong=\"H1961\"* he|strong=\"H3605\"* shall|strong=\"H3478\"* have|strong=\"H1961\"* one|strong=\"H3605\"* tribe|strong=\"H7626\"*, for|strong=\"H4616\"* my|strong=\"H3605\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*’s sake|strong=\"H4616\"* and|strong=\"H3478\"* for|strong=\"H4616\"* Jerusalem|strong=\"H3389\"*’s sake|strong=\"H4616\"*, the|strong=\"H3605\"* city|strong=\"H5892\"* which|strong=\"H5892\"* I|strong=\"H5650\"* have|strong=\"H1961\"* chosen out|strong=\"H3605\"* of|strong=\"H7626\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*)," + }, + { + "verseNum": 33, + "text": "because|strong=\"H3282\"* they|strong=\"H3808\"* have|strong=\"H5869\"* forsaken|strong=\"H5800\"* me|strong=\"H6213\"*, and|strong=\"H1121\"* have|strong=\"H5869\"* worshiped|strong=\"H7812\"* Ashtoreth|strong=\"H6253\"* the|strong=\"H6213\"* goddess of|strong=\"H1121\"* the|strong=\"H6213\"* Sidonians|strong=\"H6722\"*, Chemosh|strong=\"H3645\"* the|strong=\"H6213\"* god|strong=\"H3808\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, and|strong=\"H1121\"* Milcom|strong=\"H4445\"* the|strong=\"H6213\"* god|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*. They|strong=\"H3808\"* have|strong=\"H5869\"* not|strong=\"H3808\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* my|strong=\"H1732\"* ways|strong=\"H1870\"*, to|strong=\"H1980\"* do|strong=\"H6213\"* that|strong=\"H1121\"* which|strong=\"H5869\"* is|strong=\"H1870\"* right|strong=\"H3477\"* in|strong=\"H1980\"* my|strong=\"H1732\"* eyes|strong=\"H5869\"*, and|strong=\"H1121\"* to|strong=\"H1980\"* keep|strong=\"H6213\"* my|strong=\"H1732\"* statutes|strong=\"H2708\"* and|strong=\"H1121\"* my|strong=\"H1732\"* ordinances|strong=\"H4941\"*, as|strong=\"H6213\"* David|strong=\"H1732\"* his|strong=\"H1732\"* father|strong=\"H1121\"* did|strong=\"H6213\"*." + }, + { + "verseNum": 34, + "text": "“‘However|strong=\"H3588\"*, I|strong=\"H3588\"* will|strong=\"H5650\"* not|strong=\"H3808\"* take|strong=\"H3947\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* kingdom|strong=\"H4467\"* out|strong=\"H3947\"* of|strong=\"H3117\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5650\"* make|strong=\"H7896\"* him|strong=\"H3027\"* prince|strong=\"H5387\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H3605\"* life|strong=\"H2416\"* for|strong=\"H3588\"* David|strong=\"H1732\"* my|strong=\"H8104\"* servant|strong=\"H5650\"*’s sake|strong=\"H4616\"* whom|strong=\"H3588\"* I|strong=\"H3588\"* chose, who|strong=\"H3605\"* kept|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"* and|strong=\"H3117\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*," + }, + { + "verseNum": 35, + "text": "but|strong=\"H3947\"* I|strong=\"H5414\"* will|strong=\"H1121\"* take|strong=\"H3947\"* the|strong=\"H5414\"* kingdom|strong=\"H4410\"* out|strong=\"H5414\"* of|strong=\"H1121\"* his|strong=\"H5414\"* son|strong=\"H1121\"*’s hand|strong=\"H3027\"* and|strong=\"H1121\"* will|strong=\"H1121\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* you|strong=\"H5414\"*, even ten|strong=\"H6235\"* tribes|strong=\"H7626\"*." + }, + { + "verseNum": 36, + "text": "I|strong=\"H3117\"* will|strong=\"H1961\"* give|strong=\"H5414\"* one|strong=\"H3605\"* tribe|strong=\"H7626\"* to|strong=\"H1961\"* his|strong=\"H3605\"* son|strong=\"H1121\"*, that|strong=\"H3605\"* David|strong=\"H1732\"* my|strong=\"H5414\"* servant|strong=\"H5650\"* may|strong=\"H1961\"* have|strong=\"H1961\"* a|strong=\"H3068\"* lamp|strong=\"H5216\"* always|strong=\"H3605\"* before|strong=\"H6440\"* me|strong=\"H5414\"* in|strong=\"H3117\"* Jerusalem|strong=\"H3389\"*, the|strong=\"H3605\"* city|strong=\"H5892\"* which|strong=\"H5892\"* I|strong=\"H3117\"* have|strong=\"H1961\"* chosen for|strong=\"H6440\"* myself to|strong=\"H1961\"* put|strong=\"H5414\"* my|strong=\"H5414\"* name|strong=\"H8034\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 37, + "text": "I|strong=\"H5921\"* will|strong=\"H1961\"* take|strong=\"H3947\"* you|strong=\"H3605\"*, and|strong=\"H3478\"* you|strong=\"H3605\"* shall|strong=\"H3478\"* reign|strong=\"H4427\"* according|strong=\"H5921\"* to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* your|strong=\"H3605\"* soul|strong=\"H5315\"* desires, and|strong=\"H3478\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 38, + "text": "It|strong=\"H5414\"* shall|strong=\"H3478\"* be|strong=\"H1961\"*, if|strong=\"H1961\"* you|strong=\"H5414\"* will|strong=\"H1961\"* listen|strong=\"H8085\"* to|strong=\"H1980\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H5414\"* command|strong=\"H6680\"* you|strong=\"H5414\"*, and|strong=\"H1980\"* will|strong=\"H1961\"* walk|strong=\"H1980\"* in|strong=\"H1980\"* my|strong=\"H8104\"* ways|strong=\"H1870\"*, and|strong=\"H1980\"* do|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H1004\"* is|strong=\"H1870\"* right|strong=\"H3477\"* in|strong=\"H1980\"* my|strong=\"H8104\"* eyes|strong=\"H5869\"*, to|strong=\"H1980\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"* and|strong=\"H1980\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"*, as|strong=\"H1961\"* David|strong=\"H1732\"* my|strong=\"H8104\"* servant|strong=\"H5650\"* did|strong=\"H6213\"*, that|strong=\"H3605\"* I|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H5414\"*, and|strong=\"H1980\"* will|strong=\"H1961\"* build|strong=\"H1129\"* you|strong=\"H5414\"* a|strong=\"H3068\"* sure|strong=\"H8104\"* house|strong=\"H1004\"*, as|strong=\"H1961\"* I|strong=\"H5414\"* built|strong=\"H1129\"* for|strong=\"H6213\"* David|strong=\"H1732\"*, and|strong=\"H1980\"* will|strong=\"H1961\"* give|strong=\"H5414\"* Israel|strong=\"H3478\"* to|strong=\"H1980\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 39, + "text": "I|strong=\"H3117\"* will|strong=\"H3808\"* afflict|strong=\"H6031\"* the|strong=\"H3605\"* offspring|strong=\"H2233\"* of|strong=\"H3117\"* David|strong=\"H1732\"* for|strong=\"H4616\"* this|strong=\"H2063\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* forever|strong=\"H3605\"*.’”" + }, + { + "verseNum": 40, + "text": "Therefore|strong=\"H1961\"* Solomon|strong=\"H8010\"* sought|strong=\"H1245\"* to|strong=\"H5704\"* kill|strong=\"H4191\"* Jeroboam|strong=\"H3379\"*, but|strong=\"H1961\"* Jeroboam|strong=\"H3379\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* fled|strong=\"H1272\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*, to|strong=\"H5704\"* Shishak|strong=\"H7895\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*, and|strong=\"H6965\"* was|strong=\"H1961\"* in|strong=\"H4428\"* Egypt|strong=\"H4714\"* until|strong=\"H5704\"* the|strong=\"H5704\"* death|strong=\"H4194\"* of|strong=\"H4428\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 41, + "text": "Now|strong=\"H5921\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H1697\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H1697\"* Solomon|strong=\"H8010\"*, and|strong=\"H2451\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H6213\"* did|strong=\"H6213\"*, and|strong=\"H2451\"* his|strong=\"H3605\"* wisdom|strong=\"H2451\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H1697\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H1697\"* Solomon|strong=\"H8010\"*?" + }, + { + "verseNum": 42, + "text": "The|strong=\"H3605\"* time|strong=\"H3117\"* that|strong=\"H3605\"* Solomon|strong=\"H8010\"* reigned|strong=\"H4427\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* was|strong=\"H3478\"* forty years|strong=\"H8141\"*." + }, + { + "verseNum": 43, + "text": "Solomon|strong=\"H8010\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* was|strong=\"H1732\"* buried|strong=\"H6912\"* in|strong=\"H6912\"* his|strong=\"H1732\"* father|strong=\"H1121\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Rehoboam|strong=\"H7346\"* his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Rehoboam|strong=\"H7346\"* went|strong=\"H3212\"* to|strong=\"H3478\"* Shechem|strong=\"H7927\"*, for|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* come|strong=\"H3212\"* to|strong=\"H3478\"* Shechem|strong=\"H7927\"* to|strong=\"H3478\"* make|strong=\"H4427\"* him|strong=\"H4427\"* king|strong=\"H4427\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H1961\"* Jeroboam|strong=\"H3379\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"* heard|strong=\"H8085\"* of|strong=\"H1121\"* it|strong=\"H1931\"* (for|strong=\"H6440\"* he|strong=\"H1931\"* was|strong=\"H1961\"* yet|strong=\"H5750\"* in|strong=\"H3427\"* Egypt|strong=\"H4714\"*, where he|strong=\"H1931\"* had|strong=\"H1961\"* fled|strong=\"H1272\"* from|strong=\"H6440\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H1121\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*, and|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Egypt|strong=\"H4714\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H3478\"* they|strong=\"H3478\"* sent|strong=\"H7971\"* and|strong=\"H3478\"* called|strong=\"H7121\"* him|strong=\"H7121\"*), Jeroboam|strong=\"H3379\"* and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H6951\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"*, and|strong=\"H3478\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Rehoboam|strong=\"H7346\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 4, + "text": "“Your|strong=\"H5414\"* father made|strong=\"H5414\"* our|strong=\"H5414\"* yoke|strong=\"H5923\"* difficult|strong=\"H3515\"*. Now|strong=\"H6258\"* therefore|strong=\"H5921\"* make|strong=\"H5414\"* the|strong=\"H5921\"* hard|strong=\"H7186\"* service|strong=\"H5656\"* of|strong=\"H5921\"* your|strong=\"H5414\"* father, and|strong=\"H5647\"* his|strong=\"H5414\"* heavy|strong=\"H3515\"* yoke|strong=\"H5923\"* which he|strong=\"H5414\"* put|strong=\"H5414\"* on|strong=\"H5921\"* us|strong=\"H5414\"*, lighter|strong=\"H7043\"*, and|strong=\"H5647\"* we|strong=\"H3068\"* will|strong=\"H5414\"* serve|strong=\"H5647\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H3117\"* said to|strong=\"H7725\"* them|strong=\"H7725\"*, “Depart|strong=\"H3212\"* for|strong=\"H3117\"* three|strong=\"H7969\"* days|strong=\"H3117\"*, then|strong=\"H7725\"* come|strong=\"H3212\"* back|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H7725\"*.”" + }, + { + "verseNum": 6, + "text": "King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"* took|strong=\"H1961\"* counsel|strong=\"H3289\"* with|strong=\"H1697\"* the|strong=\"H6440\"* old|strong=\"H2205\"* men|strong=\"H2205\"* who|strong=\"H5971\"* had|strong=\"H1961\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Solomon|strong=\"H8010\"* his|strong=\"H7725\"* father while|strong=\"H1961\"* he|strong=\"H8010\"* yet|strong=\"H5975\"* lived|strong=\"H2416\"*, saying|strong=\"H1697\"*, “What|strong=\"H1697\"* counsel|strong=\"H3289\"* do|strong=\"H1697\"* you|strong=\"H6440\"* give|strong=\"H3289\"* me|strong=\"H6440\"* to|strong=\"H7725\"* answer|strong=\"H7725\"* these|strong=\"H2088\"* people|strong=\"H5971\"*?”" + }, + { + "verseNum": 7, + "text": "They|strong=\"H3117\"* replied|strong=\"H6030\"*, “If|strong=\"H1961\"* you|strong=\"H3605\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* servant|strong=\"H5650\"* to|strong=\"H1696\"* this|strong=\"H2088\"* people|strong=\"H5971\"* today|strong=\"H3117\"*, and|strong=\"H6030\"* will|strong=\"H1961\"* serve|strong=\"H5647\"* them|strong=\"H1961\"*, and|strong=\"H6030\"* answer|strong=\"H6030\"* them|strong=\"H1961\"* with|strong=\"H1696\"* good|strong=\"H2896\"* words|strong=\"H1697\"*, then|strong=\"H6030\"* they|strong=\"H3117\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H3605\"* servants|strong=\"H5650\"* forever|strong=\"H3605\"*.”" + }, + { + "verseNum": 8, + "text": "But|strong=\"H5800\"* he|strong=\"H6440\"* abandoned|strong=\"H5800\"* the|strong=\"H6440\"* counsel|strong=\"H6098\"* of|strong=\"H6440\"* the|strong=\"H6440\"* old|strong=\"H2205\"* men|strong=\"H2205\"* which|strong=\"H3206\"* they|strong=\"H3289\"* had given|strong=\"H3289\"* him|strong=\"H6440\"*, and|strong=\"H6440\"* took|strong=\"H5975\"* counsel|strong=\"H6098\"* with|strong=\"H6440\"* the|strong=\"H6440\"* young|strong=\"H3206\"* men|strong=\"H2205\"* who|strong=\"H5975\"* had grown|strong=\"H1431\"* up|strong=\"H5975\"* with|strong=\"H6440\"* him|strong=\"H6440\"*, who|strong=\"H5975\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H5414\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5414\"*, “What|strong=\"H4100\"* counsel|strong=\"H3289\"* do|strong=\"H4100\"* you|strong=\"H5414\"* give|strong=\"H5414\"*, that|strong=\"H5971\"* we|strong=\"H3068\"* may|strong=\"H5971\"* answer|strong=\"H7725\"* these|strong=\"H2088\"* people|strong=\"H5971\"* who|strong=\"H5971\"* have|strong=\"H5971\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5414\"*, saying|strong=\"H1697\"*, ‘Make|strong=\"H5414\"* the|strong=\"H5921\"* yoke|strong=\"H5923\"* that|strong=\"H5971\"* your|strong=\"H5414\"* father put|strong=\"H5414\"* on|strong=\"H5921\"* us|strong=\"H5414\"* lighter|strong=\"H7043\"*’?”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H5921\"* young|strong=\"H3206\"* men|strong=\"H3206\"* who|strong=\"H5971\"* had|strong=\"H5971\"* grown|strong=\"H1431\"* up|strong=\"H1431\"* with|strong=\"H1696\"* him|strong=\"H5921\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*, “Tell|strong=\"H1696\"* these|strong=\"H2088\"* people|strong=\"H5971\"* who|strong=\"H5971\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5921\"*, saying|strong=\"H1696\"*, ‘Your|strong=\"H5921\"* father made|strong=\"H3513\"* our|strong=\"H5921\"* yoke|strong=\"H5923\"* heavy|strong=\"H3513\"*, but|strong=\"H1696\"* make|strong=\"H1431\"* it|strong=\"H5921\"* lighter|strong=\"H7043\"* to|strong=\"H1696\"* us|strong=\"H5921\"*’—tell|strong=\"H1696\"* them|strong=\"H5921\"*, ‘My|strong=\"H5921\"* little|strong=\"H6995\"* finger|strong=\"H6995\"* is|strong=\"H2088\"* thicker|strong=\"H5666\"* than|strong=\"H5921\"* my|strong=\"H5921\"* father’s waist|strong=\"H4975\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H6258\"* my|strong=\"H5921\"* father burdened you|strong=\"H5921\"* with|strong=\"H5921\"* a|strong=\"H3068\"* heavy|strong=\"H3515\"* yoke|strong=\"H5923\"*, but|strong=\"H6258\"* I|strong=\"H5921\"* will|strong=\"H3254\"* add|strong=\"H3254\"* to|strong=\"H5921\"* your|strong=\"H5921\"* yoke|strong=\"H5923\"*. My|strong=\"H5921\"* father chastised|strong=\"H3256\"* you|strong=\"H5921\"* with|strong=\"H5921\"* whips|strong=\"H7752\"*, but|strong=\"H6258\"* I|strong=\"H5921\"* will|strong=\"H3254\"* chastise|strong=\"H3256\"* you|strong=\"H5921\"* with|strong=\"H5921\"* scorpions|strong=\"H6137\"*.’”" + }, + { + "verseNum": 12, + "text": "So|strong=\"H7725\"* Jeroboam|strong=\"H3379\"* and|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* came|strong=\"H5971\"* to|strong=\"H1696\"* Rehoboam|strong=\"H7346\"* the|strong=\"H3605\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, as|strong=\"H3117\"* the|strong=\"H3605\"* king|strong=\"H4428\"* asked|strong=\"H1696\"*, saying|strong=\"H1696\"*, “Come|strong=\"H7725\"* to|strong=\"H1696\"* me|strong=\"H7725\"* again|strong=\"H7725\"* the|strong=\"H3605\"* third|strong=\"H7992\"* day|strong=\"H3117\"*.”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H5800\"* king|strong=\"H4428\"* answered|strong=\"H6030\"* the|strong=\"H5800\"* people|strong=\"H5971\"* roughly|strong=\"H7186\"*, and|strong=\"H6030\"* abandoned|strong=\"H5800\"* the|strong=\"H5800\"* counsel|strong=\"H6098\"* of|strong=\"H4428\"* the|strong=\"H5800\"* old|strong=\"H2205\"* men|strong=\"H2205\"* which|strong=\"H5971\"* they|strong=\"H5971\"* had|strong=\"H4428\"* given|strong=\"H3289\"* him|strong=\"H6030\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H6098\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5921\"* according|strong=\"H5921\"* to|strong=\"H1696\"* the|strong=\"H5921\"* counsel|strong=\"H6098\"* of|strong=\"H5921\"* the|strong=\"H5921\"* young|strong=\"H3206\"* men|strong=\"H3206\"*, saying|strong=\"H1696\"*, “My|strong=\"H5921\"* father made|strong=\"H3513\"* your|strong=\"H5921\"* yoke|strong=\"H5923\"* heavy|strong=\"H3513\"*, but|strong=\"H1696\"* I|strong=\"H5921\"* will|strong=\"H3206\"* add|strong=\"H3254\"* to|strong=\"H1696\"* your|strong=\"H5921\"* yoke|strong=\"H5923\"*. My|strong=\"H5921\"* father chastised|strong=\"H3256\"* you|strong=\"H5921\"* with|strong=\"H1696\"* whips|strong=\"H7752\"*, but|strong=\"H1696\"* I|strong=\"H5921\"* will|strong=\"H3206\"* chastise|strong=\"H3256\"* you|strong=\"H5921\"* with|strong=\"H1696\"* scorpions|strong=\"H6137\"*.”" + }, + { + "verseNum": 15, + "text": "So|strong=\"H4616\"* the|strong=\"H8085\"* king|strong=\"H4428\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1696\"* the|strong=\"H8085\"* people|strong=\"H5971\"*; for|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3068\"* a|strong=\"H3068\"* thing|strong=\"H1697\"* brought|strong=\"H1961\"* about|strong=\"H1961\"* from|strong=\"H3027\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* might|strong=\"H3068\"* establish|strong=\"H6965\"* his|strong=\"H3068\"* word|strong=\"H1697\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* Ahijah the|strong=\"H8085\"* Shilonite|strong=\"H7888\"* to|strong=\"H1696\"* Jeroboam|strong=\"H3379\"* the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* didn’t listen|strong=\"H8085\"* to|strong=\"H7725\"* them|strong=\"H7725\"*, the|strong=\"H3605\"* people|strong=\"H5971\"* answered|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, saying|strong=\"H1697\"*, “What|strong=\"H4100\"* portion|strong=\"H2506\"* have|strong=\"H5971\"* we|strong=\"H3068\"* in|strong=\"H3478\"* David|strong=\"H1732\"*? We|strong=\"H3588\"* don’t have|strong=\"H5971\"* an|strong=\"H7200\"* inheritance|strong=\"H5159\"* in|strong=\"H3478\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"*. To|strong=\"H7725\"* your|strong=\"H3605\"* tents, Israel|strong=\"H3478\"*! Now|strong=\"H6258\"* see|strong=\"H7200\"* to|strong=\"H7725\"* your|strong=\"H3605\"* own|strong=\"H5971\"* house|strong=\"H1004\"*, David|strong=\"H1732\"*.” So|strong=\"H3808\"* Israel|strong=\"H3478\"* departed|strong=\"H3212\"* to|strong=\"H7725\"* their|strong=\"H3605\"* tents." + }, + { + "verseNum": 17, + "text": "But|strong=\"H5921\"* as|strong=\"H4427\"* for|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Rehoboam|strong=\"H7346\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H7971\"* King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"* sent|strong=\"H7971\"* Adoram, who|strong=\"H3605\"* was|strong=\"H3478\"* over|strong=\"H5921\"* the|strong=\"H3605\"* men|strong=\"H3605\"* subject to|strong=\"H3478\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"*; and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* stoned|strong=\"H7275\"* him|strong=\"H5921\"* to|strong=\"H3478\"* death|strong=\"H4191\"* with|strong=\"H5921\"* stones. King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"* hurried|strong=\"H5127\"* to|strong=\"H3478\"* get|strong=\"H5927\"* himself up|strong=\"H5927\"* to|strong=\"H3478\"* his|strong=\"H3605\"* chariot|strong=\"H4818\"*, to|strong=\"H3478\"* flee|strong=\"H5127\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 19, + "text": "So|strong=\"H2088\"* Israel|strong=\"H3478\"* rebelled|strong=\"H6586\"* against|strong=\"H6586\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* Jeroboam|strong=\"H3379\"* had|strong=\"H1961\"* returned|strong=\"H7725\"*, they|strong=\"H3588\"* sent|strong=\"H7971\"* and|strong=\"H3063\"* called|strong=\"H7121\"* him|strong=\"H7121\"* to|strong=\"H7725\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*, and|strong=\"H3063\"* made|strong=\"H4427\"* him|strong=\"H7121\"* king|strong=\"H4427\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* one|strong=\"H3605\"* who|strong=\"H3605\"* followed|strong=\"H1961\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"*, except|strong=\"H3588\"* for|strong=\"H3588\"* the|strong=\"H3605\"* tribe|strong=\"H7626\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* only|strong=\"H3588\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H7725\"* Rehoboam|strong=\"H7346\"* had|strong=\"H3478\"* come|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*, he|strong=\"H6213\"* assembled|strong=\"H6950\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H3967\"* the|strong=\"H3605\"* tribe|strong=\"H7626\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, a|strong=\"H3068\"* hundred|strong=\"H3967\"* and|strong=\"H3967\"* eighty|strong=\"H8084\"* thousand chosen men|strong=\"H1121\"* who|strong=\"H3605\"* were|strong=\"H3478\"* warriors|strong=\"H4421\"*, to|strong=\"H7725\"* fight|strong=\"H3898\"* against|strong=\"H5973\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H7725\"* bring|strong=\"H7725\"* the|strong=\"H3605\"* kingdom|strong=\"H4410\"* again|strong=\"H7725\"* to|strong=\"H7725\"* Rehoboam|strong=\"H7346\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H1961\"* the|strong=\"H1697\"* word|strong=\"H1697\"* of|strong=\"H1697\"* God came|strong=\"H1961\"* to|strong=\"H1961\"* Shemaiah|strong=\"H8098\"* the|strong=\"H1697\"* man of|strong=\"H1697\"* God, saying|strong=\"H1697\"*," + }, + { + "verseNum": 23, + "text": "“Speak to|strong=\"H1121\"* Rehoboam|strong=\"H7346\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* to|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, and|strong=\"H1121\"* to|strong=\"H1121\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying," + }, + { + "verseNum": 24, + "text": "‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3212\"* up|strong=\"H5927\"* or|strong=\"H3808\"* fight|strong=\"H3898\"* against|strong=\"H5973\"* your|strong=\"H3068\"* brothers|strong=\"H1121\"*, the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Everyone return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H3068\"* house|strong=\"H1004\"*; for|strong=\"H3588\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* is|strong=\"H3068\"* from|strong=\"H7725\"* me|strong=\"H7725\"*.”’” So|strong=\"H3541\"* they|strong=\"H3588\"* listened|strong=\"H8085\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, and|strong=\"H1121\"* returned|strong=\"H7725\"* and|strong=\"H1121\"* went|strong=\"H3212\"* their|strong=\"H3068\"* way|strong=\"H3212\"*, according to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + }, + { + "verseNum": 25, + "text": "Then|strong=\"H3318\"* Jeroboam|strong=\"H3379\"* built|strong=\"H1129\"* Shechem|strong=\"H7927\"* in|strong=\"H3427\"* the|strong=\"H1129\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H3427\"* Ephraim, and|strong=\"H8033\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H8033\"*; and|strong=\"H8033\"* he|strong=\"H8033\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* there|strong=\"H8033\"* and|strong=\"H8033\"* built|strong=\"H1129\"* Penuel|strong=\"H6439\"*." + }, + { + "verseNum": 26, + "text": "Jeroboam|strong=\"H3379\"* said in|strong=\"H1004\"* his|strong=\"H1732\"* heart|strong=\"H3820\"*, “Now|strong=\"H6258\"* the|strong=\"H7725\"* kingdom|strong=\"H4467\"* will|strong=\"H1004\"* return|strong=\"H7725\"* to|strong=\"H7725\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 27, + "text": "If this|strong=\"H2088\"* people|strong=\"H5971\"* goes|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H7725\"* offer|strong=\"H5927\"* sacrifices|strong=\"H2077\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* at|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, then|strong=\"H2088\"* the|strong=\"H6213\"* heart|strong=\"H3820\"* of|strong=\"H4428\"* this|strong=\"H2088\"* people|strong=\"H5971\"* will|strong=\"H3068\"* turn|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* their|strong=\"H3068\"* lord|strong=\"H3068\"*, even|strong=\"H6213\"* to|strong=\"H7725\"* Rehoboam|strong=\"H7346\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*; and|strong=\"H3063\"* they|strong=\"H3068\"* will|strong=\"H3068\"* kill|strong=\"H2026\"* me|strong=\"H7725\"*, and|strong=\"H3063\"* return|strong=\"H7725\"* to|strong=\"H7725\"* Rehoboam|strong=\"H7346\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*.”" + }, + { + "verseNum": 28, + "text": "So|strong=\"H6213\"* the|strong=\"H6213\"* king|strong=\"H4428\"* took|strong=\"H5927\"* counsel|strong=\"H3289\"*, and|strong=\"H3478\"* made|strong=\"H6213\"* two|strong=\"H8147\"* calves|strong=\"H5695\"* of|strong=\"H4428\"* gold|strong=\"H2091\"*; and|strong=\"H3478\"* he|strong=\"H6213\"* said to|strong=\"H3478\"* them|strong=\"H6213\"*, “It|strong=\"H6213\"* is|strong=\"H2009\"* too|strong=\"H7227\"* much|strong=\"H7227\"* for|strong=\"H6213\"* you|strong=\"H6213\"* to|strong=\"H3478\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*. Look|strong=\"H2009\"* and|strong=\"H3478\"* behold|strong=\"H2009\"* your|strong=\"H6213\"* gods, Israel|strong=\"H3478\"*, which|strong=\"H3478\"* brought|strong=\"H5927\"* you|strong=\"H6213\"* up|strong=\"H5927\"* out|strong=\"H6213\"* of|strong=\"H4428\"* the|strong=\"H6213\"* land of|strong=\"H4428\"* Egypt|strong=\"H4714\"*!”" + }, + { + "verseNum": 29, + "text": "He|strong=\"H5414\"* set|strong=\"H7760\"* the|strong=\"H5414\"* one in|strong=\"H5414\"* Bethel|strong=\"H1008\"*, and|strong=\"H1008\"* the|strong=\"H5414\"* other he|strong=\"H5414\"* put|strong=\"H5414\"* in|strong=\"H5414\"* Dan|strong=\"H1835\"*." + }, + { + "verseNum": 30, + "text": "This|strong=\"H2088\"* thing|strong=\"H1697\"* became|strong=\"H1961\"* a|strong=\"H3068\"* sin|strong=\"H2403\"*, for|strong=\"H5704\"* the|strong=\"H6440\"* people|strong=\"H5971\"* went|strong=\"H3212\"* even|strong=\"H5704\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Dan|strong=\"H1835\"* to|strong=\"H5704\"* worship before|strong=\"H6440\"* the|strong=\"H6440\"* one|strong=\"H2088\"* there|strong=\"H1961\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* houses|strong=\"H1004\"* of|strong=\"H1121\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, and|strong=\"H1121\"* made|strong=\"H6213\"* priests|strong=\"H3548\"* from|strong=\"H1121\"* among|strong=\"H5971\"* all|strong=\"H6213\"* the|strong=\"H6213\"* people|strong=\"H5971\"*, who|strong=\"H5971\"* were|strong=\"H1961\"* not|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H6213\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*." + }, + { + "verseNum": 32, + "text": "Jeroboam|strong=\"H3379\"* ordained|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H2282\"* in|strong=\"H5921\"* the|strong=\"H5921\"* eighth|strong=\"H8066\"* month|strong=\"H2320\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H5921\"* month|strong=\"H2320\"*, like|strong=\"H3651\"* the|strong=\"H5921\"* feast|strong=\"H2282\"* that|strong=\"H3117\"* is|strong=\"H3117\"* in|strong=\"H5921\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* he|strong=\"H3117\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*. He|strong=\"H3117\"* did|strong=\"H6213\"* so|strong=\"H3651\"* in|strong=\"H5921\"* Bethel|strong=\"H1008\"*, sacrificing|strong=\"H2076\"* to|strong=\"H5927\"* the|strong=\"H5921\"* calves|strong=\"H5695\"* that|strong=\"H3117\"* he|strong=\"H3117\"* had|strong=\"H3063\"* made|strong=\"H6213\"*, and|strong=\"H3063\"* he|strong=\"H3117\"* placed|strong=\"H5975\"* in|strong=\"H5921\"* Bethel|strong=\"H1008\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* of|strong=\"H3117\"* the|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"* that|strong=\"H3117\"* he|strong=\"H3117\"* had|strong=\"H3063\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H3117\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* which|strong=\"H4196\"* he|strong=\"H3117\"* had|strong=\"H3478\"* made|strong=\"H6213\"* in|strong=\"H5921\"* Bethel|strong=\"H1008\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* eighth|strong=\"H8066\"* month|strong=\"H2320\"*, even|strong=\"H6213\"* in|strong=\"H5921\"* the|strong=\"H5921\"* month|strong=\"H2320\"* which|strong=\"H4196\"* he|strong=\"H3117\"* had|strong=\"H3478\"* devised of|strong=\"H1121\"* his|strong=\"H5921\"* own heart; and|strong=\"H1121\"* he|strong=\"H3117\"* ordained|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H2282\"* for|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* to|strong=\"H3478\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Behold|strong=\"H2009\"*, a|strong=\"H3068\"* man of|strong=\"H3068\"* God|strong=\"H3068\"* came|strong=\"H3068\"* out|strong=\"H5921\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* by|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* to|strong=\"H3068\"* Bethel|strong=\"H1008\"*; and|strong=\"H3063\"* Jeroboam|strong=\"H3379\"* was|strong=\"H3068\"* standing|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3068\"* cried|strong=\"H7121\"* against|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* by|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, and|strong=\"H1121\"* said|strong=\"H1697\"*, “Altar|strong=\"H4196\"*! Altar|strong=\"H4196\"*! Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2009\"*, a|strong=\"H3068\"* son|strong=\"H1121\"* will|strong=\"H3068\"* be|strong=\"H1697\"* born|strong=\"H3205\"* to|strong=\"H3068\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"*, Josiah|strong=\"H2977\"* by|strong=\"H5921\"* name|strong=\"H8034\"*. On|strong=\"H5921\"* you|strong=\"H5921\"* he|strong=\"H3068\"* will|strong=\"H3068\"* sacrifice|strong=\"H2076\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* of|strong=\"H1121\"* the|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"* who|strong=\"H3068\"* burn|strong=\"H8313\"* incense|strong=\"H6999\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H1121\"* they|strong=\"H3068\"* will|strong=\"H3068\"* burn|strong=\"H8313\"* men|strong=\"H1121\"*’s bones|strong=\"H6106\"* on|strong=\"H5921\"* you|strong=\"H5921\"*.’”" + }, + { + "verseNum": 3, + "text": "He|strong=\"H1931\"* gave|strong=\"H5414\"* a|strong=\"H3068\"* sign|strong=\"H4159\"* the|strong=\"H5921\"* same|strong=\"H1931\"* day|strong=\"H3117\"*, saying|strong=\"H1696\"*, “This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H5921\"* sign|strong=\"H4159\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*: Behold|strong=\"H2009\"*, the|strong=\"H5921\"* altar|strong=\"H4196\"* will|strong=\"H3068\"* be|strong=\"H3068\"* split|strong=\"H7167\"* apart|strong=\"H7167\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* ashes|strong=\"H1880\"* that|strong=\"H3117\"* are|strong=\"H3117\"* on|strong=\"H5921\"* it|strong=\"H5414\"* will|strong=\"H3068\"* be|strong=\"H3068\"* poured|strong=\"H8210\"* out|strong=\"H8210\"*.”" + }, + { + "verseNum": 4, + "text": "When|strong=\"H1961\"* the|strong=\"H5921\"* king|strong=\"H4428\"* heard|strong=\"H8085\"* the|strong=\"H5921\"* saying|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* man of|strong=\"H4428\"* God|strong=\"H3808\"*, which|strong=\"H1697\"* he|strong=\"H3027\"* cried|strong=\"H7121\"* against|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* in|strong=\"H5921\"* Bethel|strong=\"H1008\"*, Jeroboam|strong=\"H3379\"* put|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7121\"* hand|strong=\"H3027\"* from|strong=\"H7725\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, saying|strong=\"H1697\"*, “Seize|strong=\"H8610\"* him|strong=\"H7121\"*!” His|strong=\"H7121\"* hand|strong=\"H3027\"*, which|strong=\"H1697\"* he|strong=\"H3027\"* put|strong=\"H7971\"* out|strong=\"H7971\"* against|strong=\"H5921\"* him|strong=\"H7121\"*, dried|strong=\"H3001\"* up|strong=\"H3001\"*, so|strong=\"H7971\"* that|strong=\"H8085\"* he|strong=\"H3027\"* could|strong=\"H3201\"* not|strong=\"H3808\"* draw|strong=\"H7725\"* it|strong=\"H7121\"* back|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* himself|strong=\"H3027\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5414\"* altar|strong=\"H4196\"* was|strong=\"H3068\"* also|strong=\"H3068\"* split|strong=\"H7167\"* apart|strong=\"H7167\"*, and|strong=\"H3068\"* the|strong=\"H5414\"* ashes|strong=\"H1880\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* from|strong=\"H4480\"* the|strong=\"H5414\"* altar|strong=\"H4196\"*, according|strong=\"H4480\"* to|strong=\"H3068\"* the|strong=\"H5414\"* sign|strong=\"H4159\"* which|strong=\"H3068\"* the|strong=\"H5414\"* man of|strong=\"H3068\"* God|strong=\"H3068\"* had|strong=\"H3068\"* given|strong=\"H5414\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H6440\"* king|strong=\"H4428\"* answered|strong=\"H6030\"* the|strong=\"H6440\"* man|strong=\"H6440\"* of|strong=\"H4428\"* God|strong=\"H3068\"*, “Now|strong=\"H4994\"* intercede|strong=\"H6419\"* for|strong=\"H1157\"* the|strong=\"H6440\"* favor|strong=\"H6440\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* pray|strong=\"H6419\"* for|strong=\"H1157\"* me|strong=\"H6440\"*, that|strong=\"H3068\"* my|strong=\"H3068\"* hand|strong=\"H3027\"* may|strong=\"H1961\"* be|strong=\"H1961\"* restored|strong=\"H7725\"* me|strong=\"H6440\"* again|strong=\"H7725\"*.”" + }, + { + "verseNum": 7, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* said|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5414\"* man of|strong=\"H4428\"* God|strong=\"H5414\"*, “Come home|strong=\"H1004\"* with|strong=\"H1004\"* me|strong=\"H5414\"* and|strong=\"H4428\"* refresh|strong=\"H5582\"* yourself|strong=\"H5414\"*, and|strong=\"H4428\"* I|strong=\"H5414\"* will|strong=\"H4428\"* give|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* reward|strong=\"H4991\"*.”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H5414\"* man|strong=\"H2088\"* of|strong=\"H4428\"* God|strong=\"H5414\"* said to|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"*, “Even|strong=\"H3808\"* if you|strong=\"H5414\"* gave|strong=\"H5414\"* me|strong=\"H5414\"* half|strong=\"H2677\"* of|strong=\"H4428\"* your|strong=\"H5414\"* house|strong=\"H1004\"*, I|strong=\"H5414\"* would|strong=\"H4428\"* not|strong=\"H3808\"* go|strong=\"H4428\"* in|strong=\"H1004\"* with|strong=\"H5973\"* you|strong=\"H5414\"*, neither|strong=\"H3808\"* would|strong=\"H4428\"* I|strong=\"H5414\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* nor|strong=\"H3808\"* drink|strong=\"H8354\"* water|strong=\"H4325\"* in|strong=\"H1004\"* this|strong=\"H2088\"* place|strong=\"H4725\"*;" + }, + { + "verseNum": 9, + "text": "for|strong=\"H3588\"* so|strong=\"H3651\"* was|strong=\"H3068\"* it|strong=\"H3588\"* commanded|strong=\"H6680\"* me|strong=\"H7725\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, saying|strong=\"H1697\"*, ‘You|strong=\"H3588\"* shall|strong=\"H3068\"* eat|strong=\"H3899\"* no|strong=\"H3808\"* bread|strong=\"H3899\"*, drink|strong=\"H8354\"* no|strong=\"H3808\"* water|strong=\"H4325\"*, and|strong=\"H1980\"* don’t return|strong=\"H7725\"* by|strong=\"H3068\"* the|strong=\"H3588\"* way|strong=\"H1870\"* that|strong=\"H3588\"* you|strong=\"H3588\"* came|strong=\"H1980\"*.’”" + }, + { + "verseNum": 10, + "text": "So|strong=\"H3808\"* he|strong=\"H3808\"* went|strong=\"H3212\"* another|strong=\"H3808\"* way|strong=\"H1870\"*, and|strong=\"H7725\"* didn’t return|strong=\"H7725\"* by|strong=\"H1870\"* the|strong=\"H7725\"* way|strong=\"H1870\"* that|strong=\"H3808\"* he|strong=\"H3808\"* came|strong=\"H3212\"* to|strong=\"H7725\"* Bethel|strong=\"H1008\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H3117\"* an|strong=\"H6213\"* old|strong=\"H1121\"* prophet|strong=\"H5030\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Bethel|strong=\"H1008\"*, and|strong=\"H1121\"* one|strong=\"H3605\"* of|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* came|strong=\"H1697\"* and|strong=\"H1121\"* told|strong=\"H1696\"* him|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* works|strong=\"H4639\"* that|strong=\"H3605\"* the|strong=\"H3605\"* man|strong=\"H2205\"* of|strong=\"H1121\"* God|strong=\"H1008\"* had|strong=\"H4428\"* done|strong=\"H6213\"* that|strong=\"H3605\"* day|strong=\"H3117\"* in|strong=\"H3427\"* Bethel|strong=\"H1008\"*. They|strong=\"H3117\"* also|strong=\"H6213\"* told|strong=\"H1696\"* their|strong=\"H3605\"* father|strong=\"H1121\"* the|strong=\"H3605\"* words|strong=\"H1697\"* which|strong=\"H1697\"* he|strong=\"H3117\"* had|strong=\"H4428\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 12, + "text": "Their|strong=\"H7200\"* father|strong=\"H1121\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H7200\"*, “Which|strong=\"H2088\"* way|strong=\"H1870\"* did|strong=\"H3063\"* he|strong=\"H1980\"* go|strong=\"H1980\"*?” Now|strong=\"H2088\"* his|strong=\"H7200\"* sons|strong=\"H1121\"* had|strong=\"H3063\"* seen|strong=\"H7200\"* which|strong=\"H2088\"* way|strong=\"H1870\"* the|strong=\"H7200\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God went|strong=\"H1980\"*, who|strong=\"H1121\"* came|strong=\"H1980\"* from|strong=\"H1980\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H5921\"* said to|strong=\"H5921\"* his|strong=\"H5921\"* sons|strong=\"H1121\"*, “Saddle|strong=\"H2280\"* the|strong=\"H5921\"* donkey|strong=\"H2543\"* for|strong=\"H5921\"* me|strong=\"H5921\"*.” So|strong=\"H5921\"* they|strong=\"H5921\"* saddled|strong=\"H2280\"* the|strong=\"H5921\"* donkey|strong=\"H2543\"* for|strong=\"H5921\"* him|strong=\"H5921\"*; and|strong=\"H1121\"* he|strong=\"H5921\"* rode|strong=\"H7392\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3063\"* went|strong=\"H3212\"* after the|strong=\"H8478\"* man of|strong=\"H3427\"* God, and|strong=\"H3063\"* found|strong=\"H4672\"* him|strong=\"H4672\"* sitting|strong=\"H3427\"* under|strong=\"H8478\"* an|strong=\"H4672\"* oak. He|strong=\"H3063\"* said to|strong=\"H3212\"* him|strong=\"H4672\"*, “Are|strong=\"H8478\"* you|strong=\"H4672\"* the|strong=\"H8478\"* man of|strong=\"H3427\"* God who|strong=\"H3427\"* came|strong=\"H3212\"* from|strong=\"H8478\"* Judah|strong=\"H3063\"*?”" + }, + { + "verseNum": 15, + "text": "Then he|strong=\"H1004\"* said to|strong=\"H3212\"* him, “Come|strong=\"H3212\"* home|strong=\"H1004\"* with|strong=\"H1004\"* me|strong=\"H1004\"* and|strong=\"H1004\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"*.”" + }, + { + "verseNum": 16, + "text": "He|strong=\"H3808\"* said, “I|strong=\"H3201\"* may|strong=\"H3201\"* not|strong=\"H3808\"* return|strong=\"H7725\"* with|strong=\"H3899\"* you|strong=\"H7725\"*, nor|strong=\"H3808\"* go|strong=\"H7725\"* in|strong=\"H3899\"* with|strong=\"H3899\"* you|strong=\"H7725\"*. I|strong=\"H3201\"* will|strong=\"H3808\"* not|strong=\"H3808\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* or|strong=\"H3808\"* drink|strong=\"H8354\"* water|strong=\"H4325\"* with|strong=\"H3899\"* you|strong=\"H7725\"* in|strong=\"H3899\"* this|strong=\"H2088\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H1980\"* me|strong=\"H7725\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, ‘You|strong=\"H3588\"* shall|strong=\"H3068\"* eat|strong=\"H3899\"* no|strong=\"H3808\"* bread|strong=\"H3899\"* or|strong=\"H3808\"* drink|strong=\"H8354\"* water|strong=\"H4325\"* there|strong=\"H8033\"*, and|strong=\"H1980\"* don’t turn|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H1980\"* go|strong=\"H1980\"* by|strong=\"H3068\"* the|strong=\"H3588\"* way|strong=\"H1870\"* that|strong=\"H3588\"* you|strong=\"H3588\"* came|strong=\"H1980\"*.’”" + }, + { + "verseNum": 18, + "text": "He|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7725\"*, “I|strong=\"H1697\"* also|strong=\"H1571\"* am|strong=\"H3068\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* as|strong=\"H1697\"* you|strong=\"H7725\"* are|strong=\"H1697\"*; and|strong=\"H3068\"* an|strong=\"H3068\"* angel|strong=\"H4397\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7725\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, saying|strong=\"H1697\"*, ‘Bring|strong=\"H7725\"* him|strong=\"H7725\"* back|strong=\"H7725\"* with|strong=\"H1004\"* you|strong=\"H7725\"* into|strong=\"H7725\"* your|strong=\"H3068\"* house|strong=\"H1004\"*, that|strong=\"H3068\"* he|strong=\"H3068\"* may|strong=\"H3068\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* and|strong=\"H3068\"* drink|strong=\"H8354\"* water|strong=\"H4325\"*.’” He|strong=\"H3068\"* lied|strong=\"H3584\"* to|strong=\"H1696\"* him|strong=\"H7725\"*." + }, + { + "verseNum": 19, + "text": "So|strong=\"H7725\"* he|strong=\"H1004\"* went|strong=\"H7725\"* back|strong=\"H7725\"* with|strong=\"H1004\"* him|strong=\"H7725\"*, ate bread|strong=\"H3899\"* in|strong=\"H1004\"* his|strong=\"H7725\"* house|strong=\"H1004\"*, and|strong=\"H7725\"* drank|strong=\"H8354\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 20, + "text": "As|strong=\"H1697\"* they|strong=\"H1992\"* sat|strong=\"H3427\"* at|strong=\"H3427\"* the|strong=\"H3068\"* table|strong=\"H7979\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H7725\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* who|strong=\"H3068\"* brought|strong=\"H7725\"* him|strong=\"H7725\"* back|strong=\"H7725\"*;" + }, + { + "verseNum": 21, + "text": "and|strong=\"H3063\"* he|strong=\"H3588\"* cried|strong=\"H7121\"* out|strong=\"H3808\"* to|strong=\"H3068\"* the|strong=\"H3588\"* man of|strong=\"H3068\"* God|strong=\"H3068\"* who|strong=\"H3068\"* came|strong=\"H3068\"* from|strong=\"H3068\"* Judah|strong=\"H3063\"*, saying|strong=\"H6310\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* been|strong=\"H3808\"* disobedient|strong=\"H4784\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H6310\"*, and|strong=\"H3063\"* have|strong=\"H3068\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* the|strong=\"H3588\"* commandment|strong=\"H4687\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 22, + "text": "but|strong=\"H3808\"* came|strong=\"H7725\"* back|strong=\"H7725\"*, and|strong=\"H7725\"* have|strong=\"H1696\"* eaten bread|strong=\"H3899\"* and|strong=\"H7725\"* drank|strong=\"H8354\"* water|strong=\"H4325\"* in|strong=\"H1696\"* the|strong=\"H7725\"* place|strong=\"H4725\"* of|strong=\"H4325\"* which|strong=\"H4325\"* he|strong=\"H3808\"* said|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H7725\"*, “Eat|strong=\"H3899\"* no|strong=\"H3808\"* bread|strong=\"H3899\"*, and|strong=\"H7725\"* drink|strong=\"H8354\"* no|strong=\"H3808\"* water|strong=\"H4325\"*,” your|strong=\"H7725\"* body|strong=\"H5038\"* will|strong=\"H3808\"* not|strong=\"H3808\"* come|strong=\"H7725\"* to|strong=\"H1696\"* the|strong=\"H7725\"* tomb|strong=\"H6913\"* of|strong=\"H4325\"* your|strong=\"H7725\"* fathers.’”" + }, + { + "verseNum": 23, + "text": "After|strong=\"H1961\"* he|strong=\"H7725\"* had|strong=\"H1961\"* eaten bread|strong=\"H3899\"* and|strong=\"H7725\"* after|strong=\"H1961\"* he|strong=\"H7725\"* drank|strong=\"H8354\"*, he|strong=\"H7725\"* saddled|strong=\"H2280\"* the|strong=\"H7725\"* donkey|strong=\"H2543\"* for|strong=\"H1961\"* the|strong=\"H7725\"* prophet|strong=\"H5030\"* whom he|strong=\"H7725\"* had|strong=\"H1961\"* brought|strong=\"H7725\"* back|strong=\"H7725\"*." + }, + { + "verseNum": 24, + "text": "When|strong=\"H1961\"* he|strong=\"H3212\"* had|strong=\"H1961\"* gone|strong=\"H3212\"*, a|strong=\"H3068\"* lion met|strong=\"H4672\"* him|strong=\"H4672\"* by|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* and|strong=\"H3212\"* killed|strong=\"H4191\"* him|strong=\"H4672\"*. His|strong=\"H1961\"* body|strong=\"H5038\"* was|strong=\"H1961\"* thrown|strong=\"H7993\"* on|strong=\"H1870\"* the|strong=\"H1870\"* path|strong=\"H1870\"*, and|strong=\"H3212\"* the|strong=\"H1870\"* donkey|strong=\"H2543\"* stood|strong=\"H5975\"* by|strong=\"H1870\"* it|strong=\"H5038\"*. The|strong=\"H1870\"* lion also|strong=\"H4191\"* stood|strong=\"H5975\"* by|strong=\"H1870\"* the|strong=\"H1870\"* body|strong=\"H5038\"*." + }, + { + "verseNum": 25, + "text": "Behold|strong=\"H2009\"*, men|strong=\"H2205\"* passed|strong=\"H5674\"* by|strong=\"H5674\"* and|strong=\"H5892\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* body|strong=\"H5038\"* thrown|strong=\"H7993\"* on|strong=\"H5674\"* the|strong=\"H7200\"* path|strong=\"H1870\"*, and|strong=\"H5892\"* the|strong=\"H7200\"* lion standing|strong=\"H5975\"* by|strong=\"H5674\"* the|strong=\"H7200\"* body|strong=\"H5038\"*; and|strong=\"H5892\"* they|strong=\"H5892\"* came|strong=\"H5674\"* and|strong=\"H5892\"* told|strong=\"H1696\"* it|strong=\"H7200\"* in|strong=\"H3427\"* the|strong=\"H7200\"* city|strong=\"H5892\"* where|strong=\"H2009\"* the|strong=\"H7200\"* old|strong=\"H2205\"* prophet|strong=\"H5030\"* lived|strong=\"H3427\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"H8085\"* the|strong=\"H8085\"* prophet|strong=\"H5030\"* who|strong=\"H1931\"* brought|strong=\"H7725\"* him|strong=\"H5414\"* back|strong=\"H7725\"* from|strong=\"H4480\"* the|strong=\"H8085\"* way|strong=\"H1870\"* heard|strong=\"H8085\"* of|strong=\"H3068\"* it|strong=\"H5414\"*, he|strong=\"H1931\"* said|strong=\"H1696\"*, “It|strong=\"H5414\"* is|strong=\"H3068\"* the|strong=\"H8085\"* man|strong=\"H4191\"* of|strong=\"H3068\"* God|strong=\"H3068\"* who|strong=\"H1931\"* was|strong=\"H3068\"* disobedient|strong=\"H4784\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*. Therefore|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H1696\"* the|strong=\"H8085\"* lion, which|strong=\"H1931\"* has|strong=\"H3068\"* mauled him|strong=\"H5414\"* and|strong=\"H3068\"* slain|strong=\"H4191\"* him|strong=\"H5414\"*, according|strong=\"H6310\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H1931\"* he|strong=\"H1931\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5414\"*.”" + }, + { + "verseNum": 27, + "text": "He|strong=\"H1696\"* said|strong=\"H1696\"* to|strong=\"H1696\"* his|strong=\"H2280\"* sons|strong=\"H1121\"*, saying|strong=\"H1696\"*, “Saddle|strong=\"H2280\"* the|strong=\"H1696\"* donkey|strong=\"H2543\"* for|strong=\"H1121\"* me|strong=\"H1696\"*,” and|strong=\"H1121\"* they|strong=\"H1696\"* saddled|strong=\"H2280\"* it|strong=\"H1696\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H3808\"* went|strong=\"H3212\"* and|strong=\"H3212\"* found|strong=\"H4672\"* his|strong=\"H7993\"* body|strong=\"H5038\"* thrown|strong=\"H7993\"* on|strong=\"H1870\"* the|strong=\"H7665\"* path|strong=\"H1870\"*, and|strong=\"H3212\"* the|strong=\"H7665\"* donkey|strong=\"H2543\"* and|strong=\"H3212\"* the|strong=\"H7665\"* lion standing|strong=\"H5975\"* by|strong=\"H1870\"* the|strong=\"H7665\"* body|strong=\"H5038\"*. The|strong=\"H7665\"* lion had|strong=\"H4672\"* not|strong=\"H3808\"* eaten the|strong=\"H7665\"* body|strong=\"H5038\"* nor|strong=\"H3808\"* mauled the|strong=\"H7665\"* donkey|strong=\"H2543\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H5375\"* prophet|strong=\"H5030\"* took|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H5375\"* body|strong=\"H5038\"* of|strong=\"H5892\"* the|strong=\"H5375\"* man|strong=\"H2205\"* of|strong=\"H5892\"* God, and|strong=\"H7725\"* laid|strong=\"H5375\"* it|strong=\"H7725\"* on|strong=\"H5892\"* the|strong=\"H5375\"* donkey|strong=\"H2543\"*, and|strong=\"H7725\"* brought|strong=\"H7725\"* it|strong=\"H7725\"* back|strong=\"H7725\"*. He|strong=\"H7725\"* came|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H5375\"* city|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H5375\"* old|strong=\"H2205\"* prophet|strong=\"H5030\"* to|strong=\"H7725\"* mourn|strong=\"H5594\"*, and|strong=\"H7725\"* to|strong=\"H7725\"* bury|strong=\"H6912\"* him|strong=\"H7725\"*." + }, + { + "verseNum": 30, + "text": "He|strong=\"H5921\"* laid|strong=\"H3240\"* his|strong=\"H5921\"* body|strong=\"H5038\"* in|strong=\"H5921\"* his|strong=\"H5921\"* own grave|strong=\"H6913\"*; and|strong=\"H5594\"* they|strong=\"H5921\"* mourned|strong=\"H5594\"* over|strong=\"H5921\"* him|strong=\"H5921\"*, saying, “Alas|strong=\"H1945\"*, my|strong=\"H5921\"* brother!”" + }, + { + "verseNum": 31, + "text": "After|strong=\"H1961\"* he|strong=\"H1121\"* had|strong=\"H1961\"* buried|strong=\"H6912\"* him|strong=\"H4191\"*, he|strong=\"H1121\"* spoke to|strong=\"H4191\"* his|strong=\"H1961\"* sons|strong=\"H1121\"*, saying, “When|strong=\"H1961\"* I|strong=\"H1121\"* am|strong=\"H1961\"* dead|strong=\"H4191\"*, bury|strong=\"H6912\"* me|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H1961\"* tomb|strong=\"H6913\"* in|strong=\"H4191\"* which|strong=\"H4191\"* the|strong=\"H1961\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God is|strong=\"H1121\"* buried|strong=\"H6912\"*. Lay|strong=\"H3240\"* my|strong=\"H1961\"* bones|strong=\"H6106\"* beside his|strong=\"H1961\"* bones|strong=\"H6106\"*." + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* saying|strong=\"H1697\"* which|strong=\"H3068\"* he|strong=\"H3588\"* cried|strong=\"H7121\"* by|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* against|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* in|strong=\"H5921\"* Bethel|strong=\"H1008\"*, and|strong=\"H3068\"* against|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* which|strong=\"H3068\"* are|strong=\"H1697\"* in|strong=\"H5921\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1004\"* Samaria|strong=\"H8111\"*, will|strong=\"H3068\"* surely|strong=\"H3588\"* happen|strong=\"H1961\"*.”" + }, + { + "verseNum": 33, + "text": "After|strong=\"H1961\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*, Jeroboam|strong=\"H3379\"* didn’t turn|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* evil|strong=\"H7451\"* way|strong=\"H1870\"*, but|strong=\"H3808\"* again|strong=\"H7725\"* made|strong=\"H6213\"* priests|strong=\"H3548\"* of|strong=\"H3027\"* the|strong=\"H6213\"* high|strong=\"H1116\"* places|strong=\"H1116\"* from|strong=\"H7725\"* among|strong=\"H5971\"* all|strong=\"H6213\"* the|strong=\"H6213\"* people|strong=\"H5971\"*. Whoever wanted to|strong=\"H7725\"*, he|strong=\"H6213\"* consecrated|strong=\"H4390\"* him|strong=\"H3027\"*, that|strong=\"H5971\"* there|strong=\"H1961\"* might|strong=\"H5971\"* be|strong=\"H1961\"* priests|strong=\"H3548\"* of|strong=\"H3027\"* the|strong=\"H6213\"* high|strong=\"H1116\"* places|strong=\"H1116\"*." + }, + { + "verseNum": 34, + "text": "This|strong=\"H2088\"* thing|strong=\"H1697\"* became|strong=\"H1961\"* sin|strong=\"H2403\"* to|strong=\"H1961\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jeroboam|strong=\"H3379\"*, even|strong=\"H5921\"* to|strong=\"H1961\"* cut|strong=\"H3582\"* it|strong=\"H5921\"* off|strong=\"H3582\"* and|strong=\"H1004\"* to|strong=\"H1961\"* destroy|strong=\"H8045\"* it|strong=\"H5921\"* from|strong=\"H6440\"* off|strong=\"H3582\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* earth." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"H1121\"* that|strong=\"H1931\"* time|strong=\"H6256\"* Abijah the|strong=\"H3379\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* became|strong=\"H2470\"* sick|strong=\"H2470\"*." + }, + { + "verseNum": 2, + "text": "Jeroboam|strong=\"H3379\"* said|strong=\"H1696\"* to|strong=\"H1696\"* his|strong=\"H5921\"* wife|strong=\"H1696\"*, “Please|strong=\"H4994\"* get|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H1980\"* disguise|strong=\"H8138\"* yourself|strong=\"H5921\"*, so|strong=\"H1980\"* that|strong=\"H3588\"* you|strong=\"H3588\"* won’t be|strong=\"H3808\"* recognized|strong=\"H3045\"* as|strong=\"H3588\"* Jeroboam|strong=\"H3379\"*’s wife|strong=\"H1696\"*. Go|strong=\"H1980\"* to|strong=\"H1696\"* Shiloh|strong=\"H7887\"*. Behold|strong=\"H2009\"*, Ahijah the|strong=\"H5921\"* prophet|strong=\"H5030\"* is|strong=\"H2088\"* there|strong=\"H8033\"*, who|strong=\"H1931\"* said|strong=\"H1696\"* that|strong=\"H3588\"* I|strong=\"H3588\"* would|strong=\"H5971\"* be|strong=\"H3808\"* king|strong=\"H4428\"* over|strong=\"H5921\"* this|strong=\"H2088\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 3, + "text": "Take|strong=\"H3947\"* with|strong=\"H3899\"* you|strong=\"H3947\"* ten|strong=\"H6235\"* loaves|strong=\"H3899\"* of|strong=\"H3027\"* bread|strong=\"H3899\"*, some|strong=\"H3027\"* cakes|strong=\"H5350\"*, and|strong=\"H3027\"* a|strong=\"H3068\"* jar|strong=\"H1228\"* of|strong=\"H3027\"* honey|strong=\"H1706\"*, and|strong=\"H3027\"* go|strong=\"H1961\"* to|strong=\"H1961\"* him|strong=\"H5046\"*. He|strong=\"H1931\"* will|strong=\"H1961\"* tell|strong=\"H5046\"* you|strong=\"H3947\"* what|strong=\"H4100\"* will|strong=\"H1961\"* become|strong=\"H1961\"* of|strong=\"H3027\"* the|strong=\"H3947\"* child|strong=\"H5288\"*.”" + }, + { + "verseNum": 4, + "text": "Jeroboam|strong=\"H3379\"*’s wife did|strong=\"H6213\"* so|strong=\"H3651\"*, and|strong=\"H6965\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3201\"* Shiloh|strong=\"H7887\"*, and|strong=\"H6965\"* came|strong=\"H3212\"* to|strong=\"H3201\"* Ahijah’s house|strong=\"H1004\"*. Now|strong=\"H3588\"* Ahijah could|strong=\"H3201\"* not|strong=\"H3808\"* see|strong=\"H7200\"*, for|strong=\"H3588\"* his|strong=\"H7200\"* eyes|strong=\"H5869\"* were|strong=\"H5869\"* set|strong=\"H6965\"* by|strong=\"H6965\"* reason|strong=\"H3651\"* of|strong=\"H1004\"* his|strong=\"H7200\"* age|strong=\"H7869\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Ahijah, “Behold|strong=\"H2009\"*, Jeroboam|strong=\"H3379\"*’s wife|strong=\"H1696\"* is|strong=\"H3068\"* coming|strong=\"H2009\"* to|strong=\"H1696\"* inquire|strong=\"H1875\"* of|strong=\"H1121\"* you|strong=\"H3588\"* concerning|strong=\"H1697\"* her|strong=\"H1931\"* son|strong=\"H1121\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H3068\"* sick|strong=\"H2470\"*. Tell|strong=\"H1696\"* her|strong=\"H1931\"* such|strong=\"H2088\"* and|strong=\"H1121\"* such|strong=\"H2088\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* she|strong=\"H1931\"* comes|strong=\"H1961\"* in|strong=\"H3068\"*, that|strong=\"H3588\"* she|strong=\"H1931\"* will|strong=\"H3068\"* pretend|strong=\"H2470\"* to|strong=\"H1696\"* be|strong=\"H1961\"* another|strong=\"H2088\"* woman|strong=\"H2088\"*.”" + }, + { + "verseNum": 6, + "text": "So|strong=\"H7971\"* when|strong=\"H1961\"* Ahijah heard|strong=\"H8085\"* the|strong=\"H8085\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* her|strong=\"H7971\"* feet|strong=\"H7272\"* as|strong=\"H1961\"* she|strong=\"H4100\"* came|strong=\"H1961\"* in|strong=\"H8085\"* at|strong=\"H1961\"* the|strong=\"H8085\"* door|strong=\"H6607\"*, he|strong=\"H7971\"* said|strong=\"H8085\"*, “Come|strong=\"H1961\"* in|strong=\"H8085\"*, Jeroboam|strong=\"H3379\"*’s wife! Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H7971\"* pretend to|strong=\"H7971\"* be|strong=\"H1961\"* another|strong=\"H2088\"*? For|strong=\"H7971\"* I|strong=\"H2088\"* am|strong=\"H1961\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* you|strong=\"H7971\"* with|strong=\"H8085\"* heavy|strong=\"H7186\"* news|strong=\"H6963\"*." + }, + { + "verseNum": 7, + "text": "Go|strong=\"H3212\"*, tell Jeroboam|strong=\"H3379\"*, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: “Because|strong=\"H5921\"* I|strong=\"H5414\"* exalted|strong=\"H7311\"* you|strong=\"H5414\"* from|strong=\"H5921\"* among|strong=\"H8432\"* the|strong=\"H5921\"* people|strong=\"H5971\"*, and|strong=\"H3478\"* made|strong=\"H5414\"* you|strong=\"H5414\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* my|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 8, + "text": "and|strong=\"H1980\"* tore|strong=\"H7167\"* the|strong=\"H3605\"* kingdom|strong=\"H4467\"* away|strong=\"H1980\"* from|strong=\"H1980\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"*, and|strong=\"H1980\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H1980\"* you|strong=\"H5414\"*; and|strong=\"H1980\"* yet|strong=\"H7535\"* you|strong=\"H5414\"* have|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"* as|strong=\"H1961\"* my|strong=\"H8104\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*, who|strong=\"H3605\"* kept|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"*, and|strong=\"H1980\"* who|strong=\"H3605\"* followed|strong=\"H1980\"* me|strong=\"H5414\"* with|strong=\"H1980\"* all|strong=\"H3605\"* his|strong=\"H3605\"* heart|strong=\"H3824\"*, to|strong=\"H1980\"* do|strong=\"H6213\"* that|strong=\"H3605\"* only|strong=\"H7535\"* which|strong=\"H1004\"* was|strong=\"H1961\"* right|strong=\"H3477\"* in|strong=\"H1980\"* my|strong=\"H8104\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 9, + "text": "but|strong=\"H1961\"* have|strong=\"H1961\"* done|strong=\"H6213\"* evil|strong=\"H7489\"* above|strong=\"H6440\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1961\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H3212\"* have|strong=\"H1961\"* gone|strong=\"H3212\"* and|strong=\"H3212\"* made|strong=\"H6213\"* for|strong=\"H6213\"* yourself|strong=\"H6213\"* other|strong=\"H3605\"* gods, molten|strong=\"H4541\"* images|strong=\"H4541\"*, to|strong=\"H3212\"* provoke|strong=\"H3707\"* me|strong=\"H6440\"* to|strong=\"H3212\"* anger|strong=\"H3707\"*, and|strong=\"H3212\"* have|strong=\"H1961\"* cast|strong=\"H7993\"* me|strong=\"H6440\"* behind your|strong=\"H3605\"* back|strong=\"H1458\"*," + }, + { + "verseNum": 10, + "text": "therefore|strong=\"H3651\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3478\"* bring|strong=\"H7451\"* evil|strong=\"H7451\"* on|strong=\"H1004\"* the|strong=\"H5704\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jeroboam|strong=\"H3379\"*, and|strong=\"H3478\"* will|strong=\"H3478\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* Jeroboam|strong=\"H3379\"* everyone who|strong=\"H3478\"* urinates on|strong=\"H1004\"* a|strong=\"H3068\"* wall|strong=\"H7023\"*,+ 14:10 or, male* he|strong=\"H5704\"* who|strong=\"H3478\"* is|strong=\"H3651\"* shut|strong=\"H6113\"* up|strong=\"H6113\"* and|strong=\"H3478\"* he|strong=\"H5704\"* who|strong=\"H3478\"* is|strong=\"H3651\"* left|strong=\"H5800\"* at|strong=\"H3478\"* large|strong=\"H1004\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* will|strong=\"H3478\"* utterly|strong=\"H5704\"* sweep|strong=\"H1197\"* away|strong=\"H1197\"* the|strong=\"H5704\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jeroboam|strong=\"H3379\"*, as|strong=\"H5704\"* a|strong=\"H3068\"* man|strong=\"H7451\"* sweeps|strong=\"H1197\"* away|strong=\"H1197\"* dung|strong=\"H1557\"* until|strong=\"H5704\"* it|strong=\"H3651\"* is|strong=\"H3651\"* all|strong=\"H8552\"* gone|strong=\"H8552\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H3588\"* dogs|strong=\"H3611\"* will|strong=\"H3068\"* eat he|strong=\"H3588\"* who|strong=\"H3068\"* belongs to|strong=\"H1696\"* Jeroboam|strong=\"H3379\"* who|strong=\"H3068\"* dies|strong=\"H4191\"* in|strong=\"H3068\"* the|strong=\"H3588\"* city|strong=\"H5892\"*; and|strong=\"H3068\"* the|strong=\"H3588\"* birds|strong=\"H5775\"* of|strong=\"H3068\"* the|strong=\"H3588\"* sky|strong=\"H8064\"* will|strong=\"H3068\"* eat he|strong=\"H3588\"* who|strong=\"H3068\"* dies|strong=\"H4191\"* in|strong=\"H3068\"* the|strong=\"H3588\"* field|strong=\"H7704\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H3588\"*.”’" + }, + { + "verseNum": 12, + "text": "Arise|strong=\"H6965\"* therefore, and|strong=\"H6965\"* go|strong=\"H3212\"* to|strong=\"H4191\"* your|strong=\"H6965\"* house|strong=\"H1004\"*. When|strong=\"H6965\"* your|strong=\"H6965\"* feet|strong=\"H7272\"* enter into|strong=\"H3212\"* the|strong=\"H6965\"* city|strong=\"H5892\"*, the|strong=\"H6965\"* child|strong=\"H3206\"* will|strong=\"H1004\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 13, + "text": "All|strong=\"H3605\"* Israel|strong=\"H3478\"* will|strong=\"H3068\"* mourn|strong=\"H5594\"* for|strong=\"H3588\"* him|strong=\"H4672\"* and|strong=\"H3478\"* bury|strong=\"H6912\"* him|strong=\"H4672\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* only|strong=\"H3588\"* of|strong=\"H1004\"* Jeroboam|strong=\"H3379\"* will|strong=\"H3068\"* come|strong=\"H4672\"* to|strong=\"H3478\"* the|strong=\"H3605\"* grave|strong=\"H6913\"*, because|strong=\"H3588\"* in|strong=\"H3478\"* him|strong=\"H4672\"* there|strong=\"H2088\"* is|strong=\"H3068\"* found|strong=\"H4672\"* some|strong=\"H1697\"* good|strong=\"H2896\"* thing|strong=\"H1697\"* toward|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, in|strong=\"H3478\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jeroboam|strong=\"H3379\"*." + }, + { + "verseNum": 14, + "text": "Moreover|strong=\"H1571\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* a|strong=\"H3068\"* king|strong=\"H4428\"* for|strong=\"H5921\"* himself|strong=\"H3068\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* who|strong=\"H3068\"* will|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Jeroboam|strong=\"H3379\"*. This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H5921\"* day|strong=\"H3117\"*! What|strong=\"H4100\"*? Even|strong=\"H1571\"* now|strong=\"H6258\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H5921\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* Israel|strong=\"H3478\"*, as|strong=\"H6213\"* a|strong=\"H3068\"* reed|strong=\"H7070\"* is|strong=\"H3068\"* shaken|strong=\"H5110\"* in|strong=\"H5921\"* the|strong=\"H5921\"* water|strong=\"H4325\"*; and|strong=\"H3478\"* he|strong=\"H6213\"* will|strong=\"H3068\"* root|strong=\"H5428\"* up|strong=\"H5414\"* Israel|strong=\"H3478\"* out|strong=\"H5414\"* of|strong=\"H3068\"* this|strong=\"H2063\"* good|strong=\"H2896\"* land|strong=\"H5676\"* which|strong=\"H3068\"* he|strong=\"H6213\"* gave|strong=\"H5414\"* to|strong=\"H3478\"* their|strong=\"H3068\"* fathers, and|strong=\"H3478\"* will|strong=\"H3068\"* scatter|strong=\"H2219\"* them|strong=\"H5414\"* beyond|strong=\"H5676\"* the|strong=\"H5921\"* River|strong=\"H5104\"*,+ 14:15 That is, the Euphrates.* because|strong=\"H5921\"* they|strong=\"H3068\"* have|strong=\"H3068\"* made|strong=\"H6213\"* their|strong=\"H3068\"* Asherah poles, provoking|strong=\"H3707\"* Yahweh|strong=\"H3068\"* to|strong=\"H3478\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H5414\"* will|strong=\"H3478\"* give|strong=\"H5414\"* Israel|strong=\"H3478\"* up|strong=\"H5414\"* because|strong=\"H1558\"* of|strong=\"H2403\"* the|strong=\"H5414\"* sins|strong=\"H2403\"* of|strong=\"H2403\"* Jeroboam|strong=\"H3379\"*, which|strong=\"H3478\"* he|strong=\"H5414\"* has|strong=\"H3478\"* sinned|strong=\"H2398\"*, and|strong=\"H3478\"* with|strong=\"H3478\"* which|strong=\"H3478\"* he|strong=\"H5414\"* has|strong=\"H3478\"* made|strong=\"H5414\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*.”" + }, + { + "verseNum": 17, + "text": "Jeroboam|strong=\"H3379\"*’s wife arose|strong=\"H6965\"* and|strong=\"H6965\"* departed|strong=\"H3212\"*, and|strong=\"H6965\"* came|strong=\"H3212\"* to|strong=\"H4191\"* Tirzah|strong=\"H8656\"*. As|strong=\"H6965\"* she|strong=\"H1931\"* came|strong=\"H3212\"* to|strong=\"H4191\"* the|strong=\"H6965\"* threshold|strong=\"H5592\"* of|strong=\"H1004\"* the|strong=\"H6965\"* house|strong=\"H1004\"*, the|strong=\"H6965\"* child|strong=\"H5288\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 18, + "text": "All|strong=\"H3605\"* Israel|strong=\"H3478\"* buried|strong=\"H6912\"* him|strong=\"H3027\"* and|strong=\"H3478\"* mourned|strong=\"H5594\"* for|strong=\"H3027\"* him|strong=\"H3027\"*, according|strong=\"H3027\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* his|strong=\"H3605\"* servant|strong=\"H5650\"* Ahijah the|strong=\"H3605\"* prophet|strong=\"H5030\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Jeroboam|strong=\"H3379\"*, how|strong=\"H2009\"* he|strong=\"H3117\"* fought|strong=\"H3898\"* and|strong=\"H3478\"* how|strong=\"H2009\"* he|strong=\"H3117\"* reigned|strong=\"H4427\"*, behold|strong=\"H2009\"*, they|strong=\"H3117\"* are|strong=\"H3117\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3117\"* days|strong=\"H3117\"* which|strong=\"H3117\"* Jeroboam|strong=\"H3379\"* reigned|strong=\"H4427\"* were|strong=\"H1121\"* twenty|strong=\"H6242\"* two|strong=\"H8147\"* years|strong=\"H8141\"*; then|strong=\"H3117\"* he|strong=\"H3117\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers, and|strong=\"H1121\"* Nadab|strong=\"H5070\"* his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H8141\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 21, + "text": "Rehoboam|strong=\"H7346\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"* reigned|strong=\"H4427\"* in|strong=\"H8141\"* Judah|strong=\"H3063\"*. Rehoboam|strong=\"H7346\"* was|strong=\"H3068\"* forty-one years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H3068\"* he|strong=\"H8033\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H8033\"* reigned|strong=\"H4427\"* seventeen|strong=\"H7651\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*, the|strong=\"H3605\"* city|strong=\"H5892\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* chosen out|strong=\"H3605\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* put|strong=\"H7760\"* his|strong=\"H3605\"* name|strong=\"H8034\"* there|strong=\"H8033\"*. His|strong=\"H3605\"* mother’s name|strong=\"H8034\"* was|strong=\"H3068\"* Naamah|strong=\"H5279\"* the|strong=\"H3605\"* Ammonitess|strong=\"H5985\"*." + }, + { + "verseNum": 22, + "text": "Judah|strong=\"H3063\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H3063\"* they|strong=\"H3068\"* provoked|strong=\"H7065\"* him|strong=\"H6213\"* to|strong=\"H3068\"* jealousy|strong=\"H7065\"* with|strong=\"H3068\"* their|strong=\"H3605\"* sins|strong=\"H2403\"* which|strong=\"H3068\"* they|strong=\"H3068\"* committed|strong=\"H6213\"*, above all|strong=\"H3605\"* that|strong=\"H3605\"* their|strong=\"H3605\"* fathers had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"H5921\"* they|strong=\"H1992\"* also|strong=\"H1571\"* built|strong=\"H1129\"* for|strong=\"H5921\"* themselves|strong=\"H1992\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, sacred pillars|strong=\"H4676\"*, and|strong=\"H6086\"* Asherah poles on|strong=\"H5921\"* every|strong=\"H3605\"* high|strong=\"H1116\"* hill|strong=\"H1389\"* and|strong=\"H6086\"* under|strong=\"H8478\"* every|strong=\"H3605\"* green|strong=\"H7488\"* tree|strong=\"H6086\"*." + }, + { + "verseNum": 24, + "text": "There|strong=\"H1961\"* were|strong=\"H3478\"* also|strong=\"H1571\"* sodomites|strong=\"H6945\"* in|strong=\"H3478\"* the|strong=\"H3605\"* land|strong=\"H6440\"*. They|strong=\"H3068\"* did|strong=\"H6213\"* according to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* abominations|strong=\"H8441\"* of|strong=\"H1121\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* drove|strong=\"H3423\"* out|strong=\"H3423\"* before|strong=\"H6440\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 25, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"*, Shishak|strong=\"H7895\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* came|strong=\"H1961\"* up|strong=\"H5927\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*;" + }, + { + "verseNum": 26, + "text": "and|strong=\"H3068\"* he|strong=\"H6213\"* took|strong=\"H3947\"* away|strong=\"H3947\"* the|strong=\"H3605\"* treasures of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* the|strong=\"H3605\"* treasures of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*. He|strong=\"H6213\"* even|strong=\"H6213\"* took|strong=\"H3947\"* away|strong=\"H3947\"* all|strong=\"H3605\"* of|strong=\"H4428\"* it|strong=\"H6213\"*, including|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gold|strong=\"H2091\"* shields|strong=\"H4043\"* which|strong=\"H3068\"* Solomon|strong=\"H8010\"* had|strong=\"H3068\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 27, + "text": "King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"* made|strong=\"H6213\"* shields|strong=\"H4043\"* of|strong=\"H4428\"* bronze|strong=\"H5178\"* in|strong=\"H5921\"* their|strong=\"H5921\"* place|strong=\"H8478\"*, and|strong=\"H4428\"* committed|strong=\"H6213\"* them|strong=\"H5921\"* to|strong=\"H6213\"* the|strong=\"H5921\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5921\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H5921\"* guard|strong=\"H8104\"*, who|strong=\"H8104\"* kept|strong=\"H8104\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 28, + "text": "It|strong=\"H7725\"* was|strong=\"H3068\"* so|strong=\"H1961\"*, that|strong=\"H3068\"* as|strong=\"H1961\"* often|strong=\"H1767\"* as|strong=\"H1961\"* the|strong=\"H5375\"* king|strong=\"H4428\"* went|strong=\"H3068\"* into|strong=\"H7725\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, the|strong=\"H5375\"* guard|strong=\"H7323\"* bore|strong=\"H5375\"* them|strong=\"H7725\"*, and|strong=\"H3068\"* brought|strong=\"H7725\"* them|strong=\"H7725\"* back|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H5375\"* guard|strong=\"H7323\"* room|strong=\"H1004\"*." + }, + { + "verseNum": 29, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Rehoboam|strong=\"H7346\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 30, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* war|strong=\"H4421\"* between|strong=\"H4421\"* Rehoboam|strong=\"H7346\"* and|strong=\"H3117\"* Jeroboam|strong=\"H3379\"* continually|strong=\"H3605\"*." + }, + { + "verseNum": 31, + "text": "Rehoboam|strong=\"H7346\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* was|strong=\"H8034\"* buried|strong=\"H6912\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*. His|strong=\"H1732\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Naamah|strong=\"H5279\"* the|strong=\"H8478\"* Ammonitess|strong=\"H5985\"*. Abijam his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H4428\"* in|strong=\"H5921\"* the|strong=\"H5921\"* eighteenth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H1121\"* King|strong=\"H4428\"* Jeroboam|strong=\"H3379\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, Abijam began|strong=\"H3063\"* to|strong=\"H5921\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3389\"* reigned|strong=\"H4427\"* three|strong=\"H7969\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H4427\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Maacah|strong=\"H4601\"* the|strong=\"H8034\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Abishalom." + }, + { + "verseNum": 3, + "text": "He|strong=\"H6213\"* walked|strong=\"H3212\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* sins|strong=\"H2403\"* of|strong=\"H3068\"* his|strong=\"H3605\"* father, which|strong=\"H3068\"* he|strong=\"H6213\"* had|strong=\"H3068\"* done|strong=\"H6213\"* before|strong=\"H6440\"* him|strong=\"H6440\"*; and|strong=\"H3068\"* his|strong=\"H3605\"* heart|strong=\"H3824\"* was|strong=\"H3068\"* not|strong=\"H3808\"* perfect|strong=\"H8003\"* with|strong=\"H5973\"* Yahweh|strong=\"H3068\"* his|strong=\"H3605\"* God|strong=\"H3068\"*, as|strong=\"H1961\"* the|strong=\"H3605\"* heart|strong=\"H3824\"* of|strong=\"H3068\"* David|strong=\"H1732\"* his|strong=\"H3605\"* father." + }, + { + "verseNum": 4, + "text": "Nevertheless|strong=\"H3588\"* for|strong=\"H3588\"* David|strong=\"H1732\"*’s sake|strong=\"H4616\"*, Yahweh|strong=\"H3068\"* his|strong=\"H5414\"* God|strong=\"H3068\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* a|strong=\"H3068\"* lamp|strong=\"H5216\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, to|strong=\"H3068\"* set|strong=\"H5414\"* up|strong=\"H6965\"* his|strong=\"H5414\"* son|strong=\"H1121\"* after|strong=\"H3588\"* him|strong=\"H5414\"* and|strong=\"H1121\"* to|strong=\"H3068\"* establish|strong=\"H6965\"* Jerusalem|strong=\"H3389\"*;" + }, + { + "verseNum": 5, + "text": "because|strong=\"H1697\"* David|strong=\"H1732\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, and|strong=\"H3068\"* didn’t turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* commanded|strong=\"H6680\"* him|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* his|strong=\"H3605\"* life|strong=\"H2416\"*, except|strong=\"H7535\"* only|strong=\"H7535\"* in|strong=\"H3068\"* the|strong=\"H3605\"* matter|strong=\"H1697\"* of|strong=\"H3068\"* Uriah the|strong=\"H3605\"* Hittite|strong=\"H2850\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* war|strong=\"H4421\"* between|strong=\"H4421\"* Rehoboam|strong=\"H7346\"* and|strong=\"H3117\"* Jeroboam|strong=\"H3379\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H3605\"* life|strong=\"H2416\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Abijam, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*? There|strong=\"H1961\"* was|strong=\"H1961\"* war|strong=\"H4421\"* between|strong=\"H4421\"* Abijam and|strong=\"H3063\"* Jeroboam|strong=\"H3379\"*." + }, + { + "verseNum": 8, + "text": "Abijam slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* they|strong=\"H5892\"* buried|strong=\"H6912\"* him|strong=\"H4427\"* in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Asa his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 9, + "text": "In|strong=\"H8141\"* the|strong=\"H3379\"* twentieth|strong=\"H6242\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Jeroboam|strong=\"H3379\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, Asa began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H4427\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H3389\"* reigned|strong=\"H4427\"* forty-one years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H4427\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Maacah|strong=\"H4601\"* the|strong=\"H8034\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Abishalom." + }, + { + "verseNum": 11, + "text": "Asa did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, as|strong=\"H6213\"* David|strong=\"H1732\"* his|strong=\"H3068\"* father did|strong=\"H6213\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H6213\"* put|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H3605\"* sodomites|strong=\"H6945\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H3605\"* land, and|strong=\"H6213\"* removed|strong=\"H5493\"* all|strong=\"H3605\"* the|strong=\"H3605\"* idols|strong=\"H1544\"* that|strong=\"H3605\"* his|strong=\"H3605\"* fathers had|strong=\"H6213\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H6213\"* also|strong=\"H1571\"* removed|strong=\"H5493\"* Maacah|strong=\"H4601\"* his|strong=\"H5493\"* mother|strong=\"H1377\"* from|strong=\"H5493\"* being|strong=\"H3772\"* queen|strong=\"H1377\"*, because she|strong=\"H1571\"* had|strong=\"H8313\"* made|strong=\"H6213\"* an|strong=\"H6213\"* abominable image|strong=\"H4656\"* for|strong=\"H6213\"* an|strong=\"H6213\"* Asherah. Asa cut|strong=\"H3772\"* down|strong=\"H3772\"* her|strong=\"H3772\"* image|strong=\"H4656\"* and|strong=\"H6213\"* burned|strong=\"H8313\"* it|strong=\"H6213\"* at|strong=\"H6213\"* the|strong=\"H6213\"* brook|strong=\"H5158\"* Kidron|strong=\"H6939\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"H7535\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* were|strong=\"H1961\"* not|strong=\"H3808\"* taken|strong=\"H5493\"* away|strong=\"H5493\"*. Nevertheless|strong=\"H7535\"* the|strong=\"H3605\"* heart|strong=\"H3824\"* of|strong=\"H3068\"* Asa was|strong=\"H3068\"* perfect|strong=\"H8003\"* with|strong=\"H5973\"* Yahweh|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3068\"* brought|strong=\"H3068\"* into|strong=\"H3701\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* the|strong=\"H3068\"* things|strong=\"H6944\"* that|strong=\"H3068\"* his|strong=\"H3068\"* father had|strong=\"H3068\"* dedicated|strong=\"H6944\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* things|strong=\"H6944\"* that|strong=\"H3068\"* he|strong=\"H3068\"* himself|strong=\"H3068\"* had|strong=\"H3068\"* dedicated|strong=\"H6944\"*: silver|strong=\"H3701\"*, gold|strong=\"H2091\"*, and|strong=\"H3068\"* utensils|strong=\"H3627\"*." + }, + { + "verseNum": 16, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* war|strong=\"H4421\"* between|strong=\"H4421\"* Asa and|strong=\"H3478\"* Baasha|strong=\"H1201\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* all|strong=\"H3605\"* their|strong=\"H3605\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 17, + "text": "Baasha|strong=\"H1201\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* went|strong=\"H3318\"* up|strong=\"H5927\"* against|strong=\"H5921\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* built|strong=\"H1129\"* Ramah|strong=\"H7414\"*, that|strong=\"H3478\"* he|strong=\"H5414\"* might|strong=\"H3478\"* not|strong=\"H1115\"* allow|strong=\"H5414\"* anyone to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* or|strong=\"H1115\"* come|strong=\"H5927\"* in|strong=\"H5921\"* to|strong=\"H3318\"* Asa king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H3947\"* Asa took|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* silver|strong=\"H3701\"* and|strong=\"H1121\"* the|strong=\"H3605\"* gold|strong=\"H2091\"* that|strong=\"H3605\"* was|strong=\"H3068\"* left|strong=\"H3498\"* in|strong=\"H3427\"* the|strong=\"H3605\"* treasures of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* treasures of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H1121\"* delivered|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*. Then|strong=\"H3947\"* King|strong=\"H4428\"* Asa sent|strong=\"H7971\"* them|strong=\"H5414\"* to|strong=\"H3068\"* Ben Hadad, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Tabrimmon|strong=\"H2886\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hezion|strong=\"H2383\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Syria, who|strong=\"H3605\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Damascus|strong=\"H1834\"*, saying," + }, + { + "verseNum": 19, + "text": "“Let|strong=\"H7971\"* there|strong=\"H2009\"* be|strong=\"H3478\"* a|strong=\"H3068\"* treaty|strong=\"H1285\"* between|strong=\"H5921\"* me|strong=\"H7971\"* and|strong=\"H3478\"* you|strong=\"H7971\"*, like|strong=\"H3478\"* that|strong=\"H3478\"* between|strong=\"H5921\"* my|strong=\"H5921\"* father and|strong=\"H3478\"* your|strong=\"H5921\"* father. Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H3478\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* you|strong=\"H7971\"* a|strong=\"H3068\"* present|strong=\"H7810\"* of|strong=\"H4428\"* silver|strong=\"H3701\"* and|strong=\"H3478\"* gold|strong=\"H2091\"*. Go|strong=\"H3212\"*, break|strong=\"H6565\"* your|strong=\"H5921\"* treaty|strong=\"H1285\"* with|strong=\"H1285\"* Baasha|strong=\"H1201\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, that|strong=\"H3478\"* he|strong=\"H5921\"* may|strong=\"H3478\"* depart|strong=\"H3212\"* from|strong=\"H5921\"* me|strong=\"H7971\"*.”" + }, + { + "verseNum": 20, + "text": "Ben Hadad listened|strong=\"H8085\"* to|strong=\"H3478\"* King|strong=\"H4428\"* Asa, and|strong=\"H3478\"* sent|strong=\"H7971\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* his|strong=\"H3605\"* armies|strong=\"H2428\"* against|strong=\"H5921\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* struck|strong=\"H5221\"* Ijon|strong=\"H5859\"*, and|strong=\"H3478\"* Dan|strong=\"H1835\"*, and|strong=\"H3478\"* Abel Beth Maacah, and|strong=\"H3478\"* all|strong=\"H3605\"* Chinneroth|strong=\"H3672\"*, with|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H4428\"* Naphtali|strong=\"H5321\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H1961\"* Baasha|strong=\"H1201\"* heard|strong=\"H8085\"* of|strong=\"H3427\"* it|strong=\"H1961\"*, he|strong=\"H3427\"* stopped|strong=\"H2308\"* building|strong=\"H1129\"* Ramah|strong=\"H7414\"*, and|strong=\"H8085\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Tirzah|strong=\"H8656\"*." + }, + { + "verseNum": 22, + "text": "Then|strong=\"H5375\"* King|strong=\"H4428\"* Asa made|strong=\"H1129\"* a|strong=\"H3068\"* proclamation|strong=\"H8085\"* to|strong=\"H8085\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"*. No|strong=\"H3605\"* one|strong=\"H3605\"* was|strong=\"H4428\"* exempted|strong=\"H5355\"*. They|strong=\"H3605\"* carried|strong=\"H5375\"* away|strong=\"H5375\"* the|strong=\"H3605\"* stones of|strong=\"H4428\"* Ramah|strong=\"H7414\"*, and|strong=\"H3063\"* its|strong=\"H3605\"* timber|strong=\"H6086\"*, with|strong=\"H4428\"* which|strong=\"H6086\"* Baasha|strong=\"H1201\"* had|strong=\"H4428\"* built|strong=\"H1129\"*; and|strong=\"H3063\"* King|strong=\"H4428\"* Asa used|strong=\"H3605\"* it|strong=\"H5375\"* to|strong=\"H8085\"* build|strong=\"H1129\"* Geba|strong=\"H1387\"* of|strong=\"H4428\"* Benjamin|strong=\"H1144\"*, and|strong=\"H3063\"* Mizpah|strong=\"H4709\"*." + }, + { + "verseNum": 23, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Asa, and|strong=\"H3063\"* all|strong=\"H3605\"* his|strong=\"H3605\"* might|strong=\"H1369\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, and|strong=\"H3063\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* which|strong=\"H1992\"* he|strong=\"H3117\"* built|strong=\"H1129\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*? But|strong=\"H7535\"* in|strong=\"H5921\"* the|strong=\"H3605\"* time|strong=\"H6256\"* of|strong=\"H4428\"* his|strong=\"H3605\"* old|strong=\"H2209\"* age|strong=\"H3117\"* he|strong=\"H3117\"* was|strong=\"H1697\"* diseased|strong=\"H2470\"* in|strong=\"H5921\"* his|strong=\"H3605\"* feet|strong=\"H7272\"*." + }, + { + "verseNum": 24, + "text": "Asa slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* was|strong=\"H1732\"* buried|strong=\"H6912\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers in|strong=\"H6912\"* his|strong=\"H1732\"* father|strong=\"H1121\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"* his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 25, + "text": "Nadab|strong=\"H5070\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* the|strong=\"H5921\"* second|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Asa king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*; and|strong=\"H1121\"* he|strong=\"H8147\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* two|strong=\"H8147\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H3478\"* walked|strong=\"H3212\"* in|strong=\"H3478\"* the|strong=\"H6213\"* way|strong=\"H1870\"* of|strong=\"H3068\"* his|strong=\"H3068\"* father, and|strong=\"H3478\"* in|strong=\"H3478\"* his|strong=\"H3068\"* sin|strong=\"H2403\"* with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*." + }, + { + "verseNum": 27, + "text": "Baasha|strong=\"H1201\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahijah, of|strong=\"H1121\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"*, conspired|strong=\"H7194\"* against|strong=\"H5921\"* him|strong=\"H5921\"*; and|strong=\"H1121\"* Baasha|strong=\"H1201\"* struck|strong=\"H5221\"* him|strong=\"H5921\"* at|strong=\"H5921\"* Gibbethon|strong=\"H1405\"*, which|strong=\"H1004\"* belonged to|strong=\"H3478\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*; for|strong=\"H5921\"* Nadab|strong=\"H5070\"* and|strong=\"H1121\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* besieging|strong=\"H6696\"* Gibbethon|strong=\"H1405\"*." + }, + { + "verseNum": 28, + "text": "Even in|strong=\"H8141\"* the|strong=\"H8478\"* third|strong=\"H7969\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Asa king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, Baasha|strong=\"H1201\"* killed|strong=\"H4191\"* him|strong=\"H4427\"* and|strong=\"H3063\"* reigned|strong=\"H4427\"* in|strong=\"H8141\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 29, + "text": "As|strong=\"H5704\"* soon as|strong=\"H5704\"* he|strong=\"H5704\"* was|strong=\"H3068\"* king|strong=\"H4427\"*, he|strong=\"H5704\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jeroboam|strong=\"H3379\"*. He|strong=\"H5704\"* didn’t leave|strong=\"H7604\"* to|strong=\"H1696\"* Jeroboam|strong=\"H3379\"* any|strong=\"H3605\"* who|strong=\"H3605\"* breathed|strong=\"H5397\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H3068\"* destroyed|strong=\"H8045\"* him|strong=\"H5221\"*, according|strong=\"H3027\"* to|strong=\"H1696\"* the|strong=\"H3605\"* saying|strong=\"H1697\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, which|strong=\"H3068\"* he|strong=\"H5704\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* his|strong=\"H3605\"* servant|strong=\"H5650\"* Ahijah the|strong=\"H3605\"* Shilonite|strong=\"H7888\"*;" + }, + { + "verseNum": 30, + "text": "for|strong=\"H5921\"* the|strong=\"H5921\"* sins|strong=\"H2403\"* of|strong=\"H3068\"* Jeroboam|strong=\"H3379\"* which|strong=\"H3068\"* he|strong=\"H3068\"* sinned|strong=\"H2398\"*, and|strong=\"H3478\"* with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3068\"* made|strong=\"H3478\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*, because|strong=\"H5921\"* of|strong=\"H3068\"* his|strong=\"H3068\"* provocation|strong=\"H3708\"* with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3068\"* provoked|strong=\"H3707\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 31, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Nadab|strong=\"H5070\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 32, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* war|strong=\"H4421\"* between|strong=\"H4421\"* Asa and|strong=\"H3478\"* Baasha|strong=\"H1201\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* all|strong=\"H3605\"* their|strong=\"H3605\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 33, + "text": "In|strong=\"H8141\"* the|strong=\"H3605\"* third|strong=\"H7969\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Asa king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Baasha|strong=\"H1201\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahijah began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* Tirzah|strong=\"H8656\"* for|strong=\"H5921\"* twenty-four|strong=\"H6242\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 34, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H3478\"* walked|strong=\"H3212\"* in|strong=\"H3478\"* the|strong=\"H6213\"* way|strong=\"H1870\"* of|strong=\"H3068\"* Jeroboam|strong=\"H3379\"*, and|strong=\"H3478\"* in|strong=\"H3478\"* his|strong=\"H3068\"* sin|strong=\"H2403\"* with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jehu|strong=\"H3058\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hanani|strong=\"H2607\"* against|strong=\"H5921\"* Baasha|strong=\"H1201\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Because|strong=\"H5921\"* I|strong=\"H5414\"* exalted|strong=\"H7311\"* you|strong=\"H5414\"* out|strong=\"H4480\"* of|strong=\"H1870\"* the|strong=\"H5921\"* dust|strong=\"H6083\"* and|strong=\"H3478\"* made|strong=\"H5414\"* you|strong=\"H5414\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* my|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* you|strong=\"H5414\"* have|strong=\"H5971\"* walked|strong=\"H3212\"* in|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* of|strong=\"H1870\"* Jeroboam|strong=\"H3379\"* and|strong=\"H3478\"* have|strong=\"H5971\"* made|strong=\"H5414\"* my|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*, to|strong=\"H3478\"* provoke|strong=\"H3707\"* me|strong=\"H5414\"* to|strong=\"H3478\"* anger|strong=\"H3707\"* with|strong=\"H5921\"* their|strong=\"H5414\"* sins|strong=\"H2403\"*," + }, + { + "verseNum": 3, + "text": "behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H1121\"* utterly|strong=\"H1197\"* sweep|strong=\"H1197\"* away|strong=\"H1197\"* Baasha|strong=\"H1201\"* and|strong=\"H1121\"* his|strong=\"H5414\"* house|strong=\"H1004\"*; and|strong=\"H1121\"* I|strong=\"H2005\"* will|strong=\"H1121\"* make|strong=\"H5414\"* your|strong=\"H5414\"* house|strong=\"H1004\"* like|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H4191\"* dogs|strong=\"H3611\"* will|strong=\"H5892\"* eat Baasha|strong=\"H1201\"*’s descendants who|strong=\"H1201\"* die|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H4191\"* city|strong=\"H5892\"*; and|strong=\"H8064\"* he|strong=\"H5892\"* who|strong=\"H1201\"* dies|strong=\"H4191\"* of|strong=\"H5892\"* his|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H4191\"* field|strong=\"H7704\"*, the|strong=\"H4191\"* birds|strong=\"H5775\"* of|strong=\"H5892\"* the|strong=\"H4191\"* sky|strong=\"H8064\"* will|strong=\"H5892\"* eat.”" + }, + { + "verseNum": 5, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Baasha|strong=\"H1201\"*, and|strong=\"H3478\"* what|strong=\"H1697\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, and|strong=\"H3478\"* his|strong=\"H5921\"* might|strong=\"H1369\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 6, + "text": "Baasha|strong=\"H1201\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers, and|strong=\"H1121\"* was|strong=\"H1121\"* buried|strong=\"H6912\"* in|strong=\"H6912\"* Tirzah|strong=\"H8656\"*; and|strong=\"H1121\"* Elah his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 7, + "text": "Moreover|strong=\"H1571\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* by|strong=\"H3027\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* Jehu|strong=\"H3058\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hanani|strong=\"H2607\"* against|strong=\"H5921\"* Baasha|strong=\"H1201\"* and|strong=\"H1121\"* against|strong=\"H5921\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, both|strong=\"H1571\"* because|strong=\"H5921\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H3605\"* he|strong=\"H6213\"* did|strong=\"H6213\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, to|strong=\"H3068\"* provoke|strong=\"H3707\"* him|strong=\"H5921\"* to|strong=\"H3068\"* anger|strong=\"H3707\"* with|strong=\"H1004\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H1121\"* his|strong=\"H3605\"* hands|strong=\"H3027\"*, in|strong=\"H5921\"* being|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"*, and|strong=\"H1121\"* because|strong=\"H5921\"* he|strong=\"H6213\"* struck|strong=\"H5221\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* twenty-sixth|strong=\"H6242\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Asa king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Elah the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Baasha|strong=\"H1201\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* Tirzah|strong=\"H8656\"* for|strong=\"H5921\"* two|strong=\"H4427\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 9, + "text": "His|strong=\"H5921\"* servant|strong=\"H5650\"* Zimri|strong=\"H2174\"*, captain|strong=\"H8269\"* of|strong=\"H1004\"* half|strong=\"H4276\"* his|strong=\"H5921\"* chariots|strong=\"H7393\"*, conspired|strong=\"H7194\"* against|strong=\"H5921\"* him|strong=\"H5921\"*. Now|strong=\"H5921\"* he|strong=\"H1931\"* was|strong=\"H1931\"* in|strong=\"H5921\"* Tirzah|strong=\"H8656\"*, drinking|strong=\"H8354\"* himself|strong=\"H1931\"* drunk|strong=\"H8354\"* in|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Arza, who|strong=\"H1931\"* was|strong=\"H1931\"* over|strong=\"H5921\"* the|strong=\"H5921\"* household|strong=\"H1004\"* in|strong=\"H5921\"* Tirzah|strong=\"H8656\"*;" + }, + { + "verseNum": 10, + "text": "and|strong=\"H3063\"* Zimri|strong=\"H2174\"* went|strong=\"H3063\"* in|strong=\"H8141\"* and|strong=\"H3063\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* and|strong=\"H3063\"* killed|strong=\"H5221\"* him|strong=\"H5221\"* in|strong=\"H8141\"* the|strong=\"H5221\"* twenty-seventh|strong=\"H6242\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Asa king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* reigned|strong=\"H4427\"* in|strong=\"H8141\"* his|strong=\"H5221\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H1961\"* he|strong=\"H3605\"* began|strong=\"H1961\"* to|strong=\"H1961\"* reign|strong=\"H4427\"*, as|strong=\"H1961\"* soon as|strong=\"H1961\"* he|strong=\"H3605\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H3605\"* throne|strong=\"H3678\"*, he|strong=\"H3605\"* attacked|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baasha|strong=\"H1201\"*. He|strong=\"H3605\"* didn’t leave|strong=\"H7604\"* him|strong=\"H5921\"* a|strong=\"H3068\"* single one|strong=\"H3605\"* who|strong=\"H3605\"* urinates on|strong=\"H5921\"* a|strong=\"H3068\"* wall|strong=\"H7023\"*+ 16:11 or, male* among|strong=\"H5921\"* his|strong=\"H3605\"* relatives|strong=\"H1350\"* or|strong=\"H3808\"* his|strong=\"H3605\"* friends|strong=\"H7453\"*." + }, + { + "verseNum": 12, + "text": "Thus|strong=\"H1697\"* Zimri|strong=\"H2174\"* destroyed|strong=\"H8045\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baasha|strong=\"H1201\"*, according|strong=\"H3027\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"* against|strong=\"H1696\"* Baasha|strong=\"H1201\"* by|strong=\"H3027\"* Jehu|strong=\"H3058\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"*," + }, + { + "verseNum": 13, + "text": "for|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Baasha|strong=\"H1201\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Elah his|strong=\"H3605\"* son|strong=\"H1121\"*, which|strong=\"H3068\"* they|strong=\"H3068\"* sinned|strong=\"H2398\"* and|strong=\"H1121\"* with|strong=\"H3068\"* which|strong=\"H3068\"* they|strong=\"H3068\"* made|strong=\"H3478\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*, to|strong=\"H3478\"* provoke|strong=\"H3707\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* anger|strong=\"H3707\"* with|strong=\"H3068\"* their|strong=\"H3605\"* vanities|strong=\"H1892\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Elah, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 15, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* twenty-seventh|strong=\"H6242\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Asa king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, Zimri|strong=\"H2174\"* reigned|strong=\"H4427\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* in|strong=\"H8141\"* Tirzah|strong=\"H8656\"*. Now|strong=\"H3117\"* the|strong=\"H5921\"* people|strong=\"H5971\"* were|strong=\"H5971\"* encamped|strong=\"H2583\"* against|strong=\"H5921\"* Gibbethon|strong=\"H1405\"*, which|strong=\"H5971\"* belonged to|strong=\"H5921\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H3478\"* encamped|strong=\"H2583\"* heard|strong=\"H8085\"* that|strong=\"H5971\"* Zimri|strong=\"H2174\"* had|strong=\"H3478\"* conspired|strong=\"H7194\"*, and|strong=\"H3478\"* had|strong=\"H3478\"* also|strong=\"H1571\"* killed|strong=\"H5221\"* the|strong=\"H3605\"* king|strong=\"H4428\"*. Therefore|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* made|strong=\"H4427\"* Omri|strong=\"H6018\"*, the|strong=\"H3605\"* captain|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* army|strong=\"H6635\"*, king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* that|strong=\"H5971\"* day|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 17, + "text": "Omri|strong=\"H6018\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* Gibbethon|strong=\"H1405\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H5921\"*, and|strong=\"H3478\"* they|strong=\"H5921\"* besieged|strong=\"H6696\"* Tirzah|strong=\"H8656\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H3588\"* Zimri|strong=\"H2174\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H5921\"* city|strong=\"H5892\"* was|strong=\"H1961\"* taken|strong=\"H3920\"*, he|strong=\"H3588\"* went|strong=\"H4428\"* into|strong=\"H5921\"* the|strong=\"H5921\"* fortified part|strong=\"H5921\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"* and|strong=\"H4428\"* burned|strong=\"H8313\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"* over|strong=\"H5921\"* him|strong=\"H5921\"* with|strong=\"H8313\"* fire, and|strong=\"H4428\"* died|strong=\"H4191\"*," + }, + { + "verseNum": 19, + "text": "for|strong=\"H5921\"* his|strong=\"H3068\"* sins|strong=\"H2403\"* which|strong=\"H3068\"* he|strong=\"H6213\"* sinned|strong=\"H2398\"* in|strong=\"H5921\"* doing|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, in|strong=\"H5921\"* walking|strong=\"H3212\"* in|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* of|strong=\"H3068\"* Jeroboam|strong=\"H3379\"*, and|strong=\"H3478\"* in|strong=\"H5921\"* his|strong=\"H3068\"* sin|strong=\"H2403\"* which|strong=\"H3068\"* he|strong=\"H6213\"* did|strong=\"H6213\"* to|strong=\"H3478\"* make|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*." + }, + { + "verseNum": 20, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Zimri|strong=\"H2174\"*, and|strong=\"H3478\"* his|strong=\"H5921\"* treason|strong=\"H7195\"* that|strong=\"H3117\"* he|strong=\"H3117\"* committed|strong=\"H3478\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H1961\"* the|strong=\"H1961\"* people|strong=\"H5971\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* divided|strong=\"H2505\"* into|strong=\"H1961\"* two|strong=\"H4427\"* parts|strong=\"H2677\"*: half|strong=\"H2677\"* of|strong=\"H1121\"* the|strong=\"H1961\"* people|strong=\"H5971\"* followed|strong=\"H1961\"* Tibni|strong=\"H8402\"* the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ginath|strong=\"H1527\"*, to|strong=\"H3478\"* make|strong=\"H4427\"* him|strong=\"H4427\"* king|strong=\"H4427\"*, and|strong=\"H1121\"* half|strong=\"H2677\"* followed|strong=\"H1961\"* Omri|strong=\"H6018\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H2388\"* the|strong=\"H2388\"* people|strong=\"H5971\"* who|strong=\"H5971\"* followed Omri|strong=\"H6018\"* prevailed|strong=\"H2388\"* against|strong=\"H2388\"* the|strong=\"H2388\"* people|strong=\"H5971\"* who|strong=\"H5971\"* followed Tibni|strong=\"H8402\"* the|strong=\"H2388\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ginath|strong=\"H1527\"*; so|strong=\"H4191\"* Tibni|strong=\"H8402\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* Omri|strong=\"H6018\"* reigned|strong=\"H4427\"*." + }, + { + "verseNum": 23, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* thirty-first|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Asa king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, Omri|strong=\"H6018\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* for|strong=\"H5921\"* twelve|strong=\"H8147\"* years|strong=\"H8141\"*. He|strong=\"H8147\"* reigned|strong=\"H4427\"* six|strong=\"H8337\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Tirzah|strong=\"H8656\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H5921\"* bought|strong=\"H7069\"* the|strong=\"H5921\"* hill|strong=\"H2022\"* Samaria|strong=\"H8111\"* of|strong=\"H5892\"* Shemer|strong=\"H8106\"* for|strong=\"H5921\"* two talents|strong=\"H3603\"*+ 16:24 A talent is about 30 kilograms or 66 pounds.* of|strong=\"H5892\"* silver|strong=\"H3701\"*; and|strong=\"H3701\"* he|strong=\"H5921\"* built|strong=\"H1129\"* on|strong=\"H5921\"* the|strong=\"H5921\"* hill|strong=\"H2022\"*, and|strong=\"H3701\"* called|strong=\"H7121\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H5892\"* the|strong=\"H5921\"* city|strong=\"H5892\"* which|strong=\"H5892\"* he|strong=\"H5921\"* built|strong=\"H1129\"*, Samaria|strong=\"H8111\"*, after|strong=\"H5921\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H5892\"* Shemer|strong=\"H8106\"*, the|strong=\"H5921\"* owner|strong=\"H7069\"* of|strong=\"H5892\"* the|strong=\"H5921\"* hill|strong=\"H2022\"*." + }, + { + "verseNum": 25, + "text": "Omri|strong=\"H6018\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H3068\"* dealt|strong=\"H6213\"* wickedly|strong=\"H7489\"* above|strong=\"H6440\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H5869\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 26, + "text": "For|strong=\"H3068\"* he|strong=\"H3068\"* walked|strong=\"H3212\"* in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, and|strong=\"H1121\"* in|strong=\"H3478\"* his|strong=\"H3605\"* sins|strong=\"H2403\"* with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3068\"* made|strong=\"H3478\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*, to|strong=\"H3478\"* provoke|strong=\"H3707\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* anger|strong=\"H3707\"* with|strong=\"H3068\"* their|strong=\"H3605\"* vanities|strong=\"H1892\"*." + }, + { + "verseNum": 27, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Omri|strong=\"H6018\"* which|strong=\"H1992\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, and|strong=\"H3478\"* his|strong=\"H5921\"* might|strong=\"H1369\"* that|strong=\"H3117\"* he|strong=\"H3117\"* showed|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 28, + "text": "So Omri|strong=\"H6018\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers, and|strong=\"H1121\"* was|strong=\"H1121\"* buried|strong=\"H6912\"* in|strong=\"H6912\"* Samaria|strong=\"H8111\"*; and|strong=\"H1121\"* Ahab his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 29, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* thirty-eighth|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Asa king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Ahab the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Omri|strong=\"H6018\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*. Ahab the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Omri|strong=\"H6018\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"* twenty-two|strong=\"H6242\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 30, + "text": "Ahab the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Omri|strong=\"H6018\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"* above|strong=\"H6440\"* all|strong=\"H3605\"* that|strong=\"H3605\"* were|strong=\"H1121\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 31, + "text": "As|strong=\"H1961\"* if|strong=\"H1961\"* it|strong=\"H1961\"* had|strong=\"H1961\"* been|strong=\"H1961\"* a|strong=\"H3068\"* light|strong=\"H7043\"* thing|strong=\"H7043\"* for|strong=\"H1121\"* him|strong=\"H3947\"* to|strong=\"H3212\"* walk|strong=\"H3212\"* in|strong=\"H4428\"* the|strong=\"H3947\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, he|strong=\"H4428\"* took|strong=\"H3947\"* as|strong=\"H1961\"* wife Jezebel the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Ethbaal king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H3947\"* Sidonians|strong=\"H6722\"*, and|strong=\"H1121\"* went|strong=\"H3212\"* and|strong=\"H1121\"* served|strong=\"H5647\"* Baal|strong=\"H1168\"* and|strong=\"H1121\"* worshiped|strong=\"H7812\"* him|strong=\"H3947\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"H1004\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* for|strong=\"H1004\"* Baal|strong=\"H1168\"* in|strong=\"H1004\"* the|strong=\"H1129\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"*, which|strong=\"H1004\"* he|strong=\"H1004\"* had|strong=\"H1129\"* built|strong=\"H1129\"* in|strong=\"H1004\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 33, + "text": "Ahab made|strong=\"H6213\"* the|strong=\"H3605\"* Asherah; and|strong=\"H3478\"* Ahab did|strong=\"H6213\"* more|strong=\"H3254\"* yet|strong=\"H3254\"* to|strong=\"H3478\"* provoke|strong=\"H3707\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* anger|strong=\"H3707\"* than|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* who|strong=\"H3605\"* were|strong=\"H3478\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 34, + "text": "In|strong=\"H3068\"* his|strong=\"H3068\"* days|strong=\"H3117\"* Hiel|strong=\"H2419\"* the|strong=\"H3068\"* Bethelite|strong=\"H1017\"* built|strong=\"H1129\"* Jericho|strong=\"H3405\"*. He|strong=\"H3117\"* laid|strong=\"H3245\"* its|strong=\"H3245\"* foundation|strong=\"H3245\"* with|strong=\"H3068\"* the|strong=\"H3068\"* loss of|strong=\"H1121\"* Abiram his|strong=\"H3068\"* firstborn|strong=\"H1060\"*, and|strong=\"H1121\"* set|strong=\"H5324\"* up|strong=\"H1129\"* its|strong=\"H3245\"* gates|strong=\"H1817\"* with|strong=\"H3068\"* the|strong=\"H3068\"* loss of|strong=\"H1121\"* his|strong=\"H3068\"* youngest|strong=\"H6810\"* son|strong=\"H1121\"* Segub|strong=\"H7687\"*, according|strong=\"H3027\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, which|strong=\"H3068\"* he|strong=\"H3117\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* Joshua|strong=\"H3091\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Elijah the|strong=\"H6440\"* Tishbite|strong=\"H8664\"*, who|strong=\"H3068\"* was|strong=\"H3068\"* one|strong=\"H2416\"* of|strong=\"H3068\"* the|strong=\"H6440\"* settlers|strong=\"H8453\"* of|strong=\"H3068\"* Gilead|strong=\"H1568\"*, said|strong=\"H1697\"* to|strong=\"H3478\"* Ahab, “As|strong=\"H1697\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, lives|strong=\"H2416\"*, before|strong=\"H6440\"* whom|strong=\"H6440\"* I|strong=\"H3588\"* stand|strong=\"H5975\"*, there|strong=\"H1961\"* shall|strong=\"H3068\"* not|strong=\"H1961\"* be|strong=\"H1961\"* dew|strong=\"H2919\"* nor|strong=\"H2919\"* rain|strong=\"H4306\"* these|strong=\"H6440\"* years|strong=\"H8141\"*, but|strong=\"H3588\"* according|strong=\"H6310\"* to|strong=\"H3478\"* my|strong=\"H3068\"* word|strong=\"H1697\"*.”" + }, + { + "verseNum": 2, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* him|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 3, + "text": "“Go|strong=\"H3212\"* away|strong=\"H3212\"* from|strong=\"H6440\"* here|strong=\"H2088\"*, turn|strong=\"H6437\"* eastward|strong=\"H6924\"*, and|strong=\"H3212\"* hide|strong=\"H5641\"* yourself|strong=\"H5921\"* by|strong=\"H5921\"* the|strong=\"H6440\"* brook|strong=\"H5158\"* Cherith|strong=\"H3747\"*, that|strong=\"H2088\"* is|strong=\"H2088\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H6680\"* shall|strong=\"H5158\"* drink|strong=\"H8354\"* from|strong=\"H1961\"* the|strong=\"H6680\"* brook|strong=\"H5158\"*. I|strong=\"H6680\"* have|strong=\"H1961\"* commanded|strong=\"H6680\"* the|strong=\"H6680\"* ravens|strong=\"H6158\"* to|strong=\"H1961\"* feed|strong=\"H3557\"* you|strong=\"H6680\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 5, + "text": "So|strong=\"H6213\"* he|strong=\"H6213\"* went|strong=\"H3212\"* and|strong=\"H3068\"* did|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H3212\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, for|strong=\"H5921\"* he|strong=\"H6213\"* went|strong=\"H3212\"* and|strong=\"H3068\"* lived|strong=\"H3427\"* by|strong=\"H5921\"* the|strong=\"H6440\"* brook|strong=\"H5158\"* Cherith|strong=\"H3747\"* that|strong=\"H3068\"* is|strong=\"H3068\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H4480\"* ravens|strong=\"H6158\"* brought him|strong=\"H4480\"* bread|strong=\"H3899\"* and|strong=\"H3899\"* meat|strong=\"H1320\"* in|strong=\"H1320\"* the|strong=\"H4480\"* morning|strong=\"H1242\"*, and|strong=\"H3899\"* bread|strong=\"H3899\"* and|strong=\"H3899\"* meat|strong=\"H1320\"* in|strong=\"H1320\"* the|strong=\"H4480\"* evening|strong=\"H6153\"*; and|strong=\"H3899\"* he|strong=\"H4480\"* drank|strong=\"H8354\"* from|strong=\"H4480\"* the|strong=\"H4480\"* brook|strong=\"H5158\"*." + }, + { + "verseNum": 7, + "text": "After|strong=\"H7093\"* a|strong=\"H3068\"* while|strong=\"H1961\"*, the|strong=\"H3588\"* brook|strong=\"H5158\"* dried|strong=\"H3001\"* up|strong=\"H3001\"*, because|strong=\"H3588\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* rain|strong=\"H1653\"* in|strong=\"H3117\"* the|strong=\"H3588\"* land." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* him|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 9, + "text": "“Arise|strong=\"H6965\"*, go|strong=\"H3212\"* to|strong=\"H3212\"* Zarephath|strong=\"H6886\"*, which|strong=\"H8033\"* belongs to|strong=\"H3212\"* Sidon|strong=\"H6721\"*, and|strong=\"H6965\"* stay|strong=\"H3427\"* there|strong=\"H8033\"*. Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H2009\"* commanded|strong=\"H6680\"* a|strong=\"H3068\"* widow there|strong=\"H8033\"* to|strong=\"H3212\"* sustain|strong=\"H3557\"* you|strong=\"H6680\"*.”" + }, + { + "verseNum": 10, + "text": "So|strong=\"H3947\"* he|strong=\"H8033\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Zarephath|strong=\"H6886\"*; and|strong=\"H6965\"* when|strong=\"H2009\"* he|strong=\"H8033\"* came|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3947\"* gate|strong=\"H6607\"* of|strong=\"H5892\"* the|strong=\"H3947\"* city|strong=\"H5892\"*, behold|strong=\"H2009\"*, a|strong=\"H3068\"* widow was|strong=\"H5892\"* there|strong=\"H8033\"* gathering|strong=\"H7197\"* sticks|strong=\"H6086\"*. He|strong=\"H8033\"* called|strong=\"H7121\"* to|strong=\"H3212\"* her|strong=\"H3947\"* and|strong=\"H6965\"* said|strong=\"H7121\"*, “Please|strong=\"H4994\"* get|strong=\"H3947\"* me|strong=\"H4994\"* a|strong=\"H3068\"* little|strong=\"H4592\"* water|strong=\"H4325\"* in|strong=\"H3212\"* a|strong=\"H3068\"* jar|strong=\"H3627\"*, that|strong=\"H5892\"* I|strong=\"H2009\"* may|strong=\"H4994\"* drink|strong=\"H8354\"*.”" + }, + { + "verseNum": 11, + "text": "As|strong=\"H3947\"* she|strong=\"H7121\"* was|strong=\"H3027\"* going|strong=\"H3212\"* to|strong=\"H3212\"* get|strong=\"H3947\"* it|strong=\"H7121\"*, he|strong=\"H3027\"* called|strong=\"H7121\"* to|strong=\"H3212\"* her|strong=\"H3947\"* and|strong=\"H3027\"* said|strong=\"H7121\"*, “Please|strong=\"H4994\"* bring|strong=\"H3947\"* me|strong=\"H4994\"* a|strong=\"H3068\"* morsel|strong=\"H6595\"* of|strong=\"H3027\"* bread|strong=\"H3899\"* in|strong=\"H3212\"* your|strong=\"H3947\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 12, + "text": "She|strong=\"H3588\"* said, “As|strong=\"H6213\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* lives|strong=\"H2416\"*, I|strong=\"H3588\"* don’t have|strong=\"H3426\"* anything|strong=\"H6213\"* baked, but|strong=\"H3588\"* only|strong=\"H3588\"* a|strong=\"H3068\"* handful|strong=\"H4393\"* of|strong=\"H1121\"* meal|strong=\"H7058\"* in|strong=\"H3068\"* a|strong=\"H3068\"* jar|strong=\"H3537\"* and|strong=\"H1121\"* a|strong=\"H3068\"* little|strong=\"H4592\"* oil|strong=\"H8081\"* in|strong=\"H3068\"* a|strong=\"H3068\"* jar|strong=\"H3537\"*. Behold|strong=\"H2005\"*, I|strong=\"H3588\"* am|strong=\"H3068\"* gathering|strong=\"H7197\"* two|strong=\"H8147\"* sticks|strong=\"H6086\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H3068\"* go|strong=\"H3068\"* in|strong=\"H3068\"* and|strong=\"H1121\"* bake it|strong=\"H3588\"* for|strong=\"H3588\"* me|strong=\"H6213\"* and|strong=\"H1121\"* my|strong=\"H3068\"* son|strong=\"H1121\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* may|strong=\"H3068\"* eat it|strong=\"H3588\"*, and|strong=\"H1121\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 13, + "text": "Elijah said|strong=\"H1697\"* to|strong=\"H3318\"* her|strong=\"H3318\"*, “Don’t be|strong=\"H1697\"* afraid|strong=\"H3372\"*. Go|strong=\"H3318\"* and|strong=\"H1121\"* do|strong=\"H6213\"* as|strong=\"H1697\"* you|strong=\"H6213\"* have|strong=\"H1121\"* said|strong=\"H1697\"*; but|strong=\"H7223\"* make|strong=\"H6213\"* me|strong=\"H6213\"* a|strong=\"H3068\"* little|strong=\"H6996\"* cake|strong=\"H5692\"* from|strong=\"H3318\"* it|strong=\"H6213\"* first|strong=\"H7223\"*, and|strong=\"H1121\"* bring|strong=\"H3318\"* it|strong=\"H6213\"* out|strong=\"H3318\"* to|strong=\"H3318\"* me|strong=\"H6213\"*, and|strong=\"H1121\"* afterward make|strong=\"H6213\"* some|strong=\"H8033\"* for|strong=\"H6213\"* you|strong=\"H6213\"* and|strong=\"H1121\"* for|strong=\"H6213\"* your|strong=\"H6213\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘The|strong=\"H6440\"* jar|strong=\"H3537\"* of|strong=\"H3068\"* meal|strong=\"H7058\"* will|strong=\"H3068\"* not|strong=\"H3808\"* run|strong=\"H2637\"* out|strong=\"H5414\"*, and|strong=\"H3478\"* the|strong=\"H6440\"* jar|strong=\"H3537\"* of|strong=\"H3068\"* oil|strong=\"H8081\"* will|strong=\"H3068\"* not|strong=\"H3808\"* fail|strong=\"H3615\"*, until|strong=\"H5704\"* the|strong=\"H6440\"* day|strong=\"H3117\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* sends|strong=\"H5414\"* rain|strong=\"H1653\"* on|strong=\"H5921\"* the|strong=\"H6440\"* earth.’”" + }, + { + "verseNum": 15, + "text": "She|strong=\"H1931\"* went|strong=\"H3212\"* and|strong=\"H3117\"* did|strong=\"H6213\"* according to|strong=\"H3212\"* the|strong=\"H6213\"* saying|strong=\"H1697\"* of|strong=\"H1004\"* Elijah; and|strong=\"H3117\"* she|strong=\"H1931\"*, he|strong=\"H1931\"*, and|strong=\"H3117\"* her|strong=\"H1931\"* household|strong=\"H1004\"* ate many days|strong=\"H3117\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3068\"* jar|strong=\"H3537\"* of|strong=\"H3068\"* meal|strong=\"H7058\"* didn’t run out|strong=\"H3027\"* and|strong=\"H3068\"* the|strong=\"H3068\"* jar|strong=\"H3537\"* of|strong=\"H3068\"* oil|strong=\"H8081\"* didn’t fail|strong=\"H3615\"*, according|strong=\"H3027\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* Elijah|strong=\"H1696\"*." + }, + { + "verseNum": 17, + "text": "After|strong=\"H1961\"* these|strong=\"H1004\"* things|strong=\"H1697\"*, the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5704\"* woman|strong=\"H1004\"*, the|strong=\"H5704\"* mistress|strong=\"H1172\"* of|strong=\"H1121\"* the|strong=\"H5704\"* house|strong=\"H1004\"*, became|strong=\"H1961\"* sick|strong=\"H2470\"*; and|strong=\"H1121\"* his|strong=\"H1961\"* sickness|strong=\"H2483\"* was|strong=\"H1961\"* so|strong=\"H1961\"* severe|strong=\"H2389\"* that|strong=\"H1697\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* breath|strong=\"H5397\"* left|strong=\"H3498\"* in|strong=\"H1004\"* him|strong=\"H5704\"*." + }, + { + "verseNum": 18, + "text": "She|strong=\"H4100\"* said to|strong=\"H4191\"* Elijah, “What|strong=\"H4100\"* have|strong=\"H1121\"* I|strong=\"H4100\"* to|strong=\"H4191\"* do|strong=\"H4100\"* with|strong=\"H4191\"* you|strong=\"H4100\"*, you|strong=\"H4100\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God? You|strong=\"H4100\"* have|strong=\"H1121\"* come|strong=\"H2142\"* to|strong=\"H4191\"* me|strong=\"H4191\"* to|strong=\"H4191\"* bring|strong=\"H4191\"* my|strong=\"H2142\"* sin|strong=\"H5771\"* to|strong=\"H4191\"* memory, and|strong=\"H1121\"* to|strong=\"H4191\"* kill|strong=\"H4191\"* my|strong=\"H2142\"* son|strong=\"H1121\"*!”" + }, + { + "verseNum": 19, + "text": "He|strong=\"H1931\"* said to|strong=\"H5927\"* her|strong=\"H5414\"*, “Give|strong=\"H5414\"* me|strong=\"H5414\"* your|strong=\"H5414\"* son|strong=\"H1121\"*.” He|strong=\"H1931\"* took|strong=\"H3947\"* him|strong=\"H5414\"* out|strong=\"H5414\"* of|strong=\"H1121\"* her|strong=\"H5414\"* bosom|strong=\"H2436\"*, and|strong=\"H1121\"* carried|strong=\"H5927\"* him|strong=\"H5414\"* up|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H5921\"* room|strong=\"H5944\"* where|strong=\"H8033\"* he|strong=\"H1931\"* stayed|strong=\"H3427\"*, and|strong=\"H1121\"* laid|strong=\"H5414\"* him|strong=\"H5414\"* on|strong=\"H5921\"* his|strong=\"H5414\"* own bed|strong=\"H4296\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H3068\"* cried|strong=\"H7121\"* to|strong=\"H4191\"* Yahweh|strong=\"H3068\"* and|strong=\"H1121\"* said|strong=\"H7121\"*, “Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*, have|strong=\"H3068\"* you|strong=\"H5921\"* also|strong=\"H1571\"* brought|strong=\"H7489\"* evil|strong=\"H7489\"* on|strong=\"H5921\"* the|strong=\"H5921\"* widow with|strong=\"H5973\"* whom|strong=\"H7121\"* I|strong=\"H5921\"* am|strong=\"H3068\"* staying|strong=\"H1481\"*, by|strong=\"H5921\"* killing|strong=\"H4191\"* her|strong=\"H5921\"* son|strong=\"H1121\"*?”" + }, + { + "verseNum": 21, + "text": "He|strong=\"H3068\"* stretched|strong=\"H4058\"* himself|strong=\"H5315\"* on|strong=\"H5921\"* the|strong=\"H5921\"* child|strong=\"H3206\"* three|strong=\"H7969\"* times|strong=\"H6471\"*, and|strong=\"H3068\"* cried|strong=\"H7121\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* said|strong=\"H7121\"*, “Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* this|strong=\"H2088\"* child|strong=\"H3206\"*’s soul|strong=\"H5315\"* come|strong=\"H7725\"* into|strong=\"H7725\"* him|strong=\"H7121\"* again|strong=\"H7725\"*.”" + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* listened|strong=\"H8085\"* to|strong=\"H7725\"* the|strong=\"H5921\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* Elijah; and|strong=\"H3068\"* the|strong=\"H5921\"* soul|strong=\"H5315\"* of|strong=\"H3068\"* the|strong=\"H5921\"* child|strong=\"H3206\"* came|strong=\"H3068\"* into|strong=\"H7725\"* him|strong=\"H5921\"* again|strong=\"H7725\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* revived|strong=\"H2421\"*." + }, + { + "verseNum": 23, + "text": "Elijah took|strong=\"H3947\"* the|strong=\"H7200\"* child|strong=\"H3206\"* and|strong=\"H1121\"* brought|strong=\"H3947\"* him|strong=\"H5414\"* down|strong=\"H3381\"* out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H7200\"* room|strong=\"H1004\"* into|strong=\"H3381\"* the|strong=\"H7200\"* house|strong=\"H1004\"*, and|strong=\"H1121\"* delivered|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H3381\"* his|strong=\"H5414\"* mother; and|strong=\"H1121\"* Elijah said, “Behold|strong=\"H7200\"*, your|strong=\"H5414\"* son|strong=\"H1121\"* lives|strong=\"H2416\"*.”" + }, + { + "verseNum": 24, + "text": "The|strong=\"H3588\"* woman|strong=\"H2088\"* said|strong=\"H1697\"* to|strong=\"H3068\"* Elijah, “Now|strong=\"H6258\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1697\"* a|strong=\"H3068\"* man|strong=\"H2088\"* of|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* in|strong=\"H3068\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"* is|strong=\"H3068\"* truth.”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H5921\"* many|strong=\"H7227\"* days|strong=\"H3117\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Elijah, in|strong=\"H8141\"* the|strong=\"H6440\"* third|strong=\"H7992\"* year|strong=\"H8141\"*, saying|strong=\"H1697\"*, “Go|strong=\"H3212\"*, show|strong=\"H7200\"* yourself|strong=\"H5921\"* to|strong=\"H3068\"* Ahab; and|strong=\"H3068\"* I|strong=\"H3117\"* will|strong=\"H3068\"* send|strong=\"H5414\"* rain|strong=\"H4306\"* on|strong=\"H5921\"* the|strong=\"H6440\"* earth.”" + }, + { + "verseNum": 2, + "text": "Elijah went|strong=\"H3212\"* to|strong=\"H3212\"* show|strong=\"H7200\"* himself to|strong=\"H3212\"* Ahab. The|strong=\"H7200\"* famine|strong=\"H7458\"* was|strong=\"H7458\"* severe|strong=\"H2389\"* in|strong=\"H3212\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 3, + "text": "Ahab called|strong=\"H7121\"* Obadiah|strong=\"H5662\"*, who|strong=\"H3068\"* was|strong=\"H3068\"* over|strong=\"H5921\"* the|strong=\"H5921\"* household|strong=\"H1004\"*. (Now|strong=\"H1961\"* Obadiah|strong=\"H5662\"* feared|strong=\"H3373\"* Yahweh|strong=\"H3068\"* greatly|strong=\"H3966\"*;" + }, + { + "verseNum": 4, + "text": "for|strong=\"H3068\"* when|strong=\"H1961\"* Jezebel cut|strong=\"H3772\"* off|strong=\"H3772\"* Yahweh|strong=\"H3068\"*’s prophets|strong=\"H5030\"*, Obadiah|strong=\"H5662\"* took|strong=\"H3947\"* one|strong=\"H1961\"* hundred|strong=\"H3967\"* prophets|strong=\"H5030\"*, and|strong=\"H3967\"* hid|strong=\"H2244\"* them|strong=\"H3947\"* fifty|strong=\"H2572\"* to|strong=\"H3068\"* a|strong=\"H3068\"* cave|strong=\"H4631\"*, and|strong=\"H3967\"* fed|strong=\"H3557\"* them|strong=\"H3947\"* with|strong=\"H3068\"* bread|strong=\"H3899\"* and|strong=\"H3967\"* water|strong=\"H4325\"*.)" + }, + { + "verseNum": 5, + "text": "Ahab said to|strong=\"H3212\"* Obadiah|strong=\"H5662\"*, “Go|strong=\"H3212\"* through|strong=\"H3212\"* the|strong=\"H3605\"* land, to|strong=\"H3212\"* all|strong=\"H3605\"* the|strong=\"H3605\"* springs|strong=\"H4599\"* of|strong=\"H4325\"* water|strong=\"H4325\"*, and|strong=\"H3212\"* to|strong=\"H3212\"* all|strong=\"H3605\"* the|strong=\"H3605\"* brooks|strong=\"H5158\"*. Perhaps we|strong=\"H3068\"* may|strong=\"H4325\"* find|strong=\"H4672\"* grass|strong=\"H2682\"* and|strong=\"H3212\"* save|strong=\"H2421\"* the|strong=\"H3605\"* horses|strong=\"H5483\"* and|strong=\"H3212\"* mules|strong=\"H6505\"* alive|strong=\"H2421\"*, that|strong=\"H3605\"* we|strong=\"H3068\"* not|strong=\"H3808\"* lose|strong=\"H3772\"* all|strong=\"H3605\"* the|strong=\"H3605\"* animals|strong=\"H2421\"*.”" + }, + { + "verseNum": 6, + "text": "So|strong=\"H1980\"* they|strong=\"H1992\"* divided|strong=\"H2505\"* the|strong=\"H5674\"* land between|strong=\"H5674\"* them|strong=\"H1992\"* to|strong=\"H1980\"* pass|strong=\"H5674\"* throughout|strong=\"H5674\"* it|strong=\"H1980\"*. Ahab went|strong=\"H1980\"* one way|strong=\"H1870\"* by|strong=\"H5674\"* himself, and|strong=\"H1980\"* Obadiah|strong=\"H5662\"* went|strong=\"H1980\"* another way|strong=\"H1870\"* by|strong=\"H5674\"* himself." + }, + { + "verseNum": 7, + "text": "As|strong=\"H1961\"* Obadiah|strong=\"H5662\"* was|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H6440\"* way|strong=\"H1870\"*, behold|strong=\"H2009\"*, Elijah met|strong=\"H7125\"* him|strong=\"H6440\"*. He|strong=\"H5921\"* recognized|strong=\"H5234\"* him|strong=\"H6440\"*, and|strong=\"H6440\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H6440\"* face|strong=\"H6440\"*, and|strong=\"H6440\"* said, “Is|strong=\"H2088\"* it|strong=\"H5921\"* you|strong=\"H6440\"*, my|strong=\"H5921\"* lord Elijah?”" + }, + { + "verseNum": 8, + "text": "He|strong=\"H2009\"* answered him, “It|strong=\"H2009\"* is|strong=\"H2009\"* I|strong=\"H2009\"*. Go|strong=\"H3212\"*, tell your|strong=\"H2009\"* lord, ‘Behold|strong=\"H2009\"*, Elijah is|strong=\"H2009\"* here|strong=\"H2009\"*!’”" + }, + { + "verseNum": 9, + "text": "He|strong=\"H3588\"* said, “How|strong=\"H4100\"* have|strong=\"H5650\"* I|strong=\"H3588\"* sinned|strong=\"H2398\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* would|strong=\"H4100\"* deliver|strong=\"H5414\"* your|strong=\"H5414\"* servant|strong=\"H5650\"* into|strong=\"H3027\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* Ahab, to|strong=\"H4191\"* kill|strong=\"H4191\"* me|strong=\"H5414\"*?" + }, + { + "verseNum": 10, + "text": "As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* lives|strong=\"H2416\"*, there|strong=\"H8033\"* is|strong=\"H3068\"* no|strong=\"H3808\"* nation|strong=\"H1471\"* or|strong=\"H3808\"* kingdom|strong=\"H4467\"* where|strong=\"H8033\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* seek|strong=\"H1245\"* you|strong=\"H3588\"*. When|strong=\"H3588\"* they|strong=\"H3588\"* said, ‘He|strong=\"H3588\"* is|strong=\"H3068\"* not|strong=\"H3808\"* here|strong=\"H8033\"*,’ he|strong=\"H3588\"* took|strong=\"H7650\"* an|strong=\"H7971\"* oath|strong=\"H7650\"* of|strong=\"H3068\"* the|strong=\"H3588\"* kingdom|strong=\"H4467\"* and|strong=\"H3068\"* nation|strong=\"H1471\"* that|strong=\"H3588\"* they|strong=\"H3588\"* didn’t find|strong=\"H4672\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H6258\"* you|strong=\"H3212\"* say, ‘Go|strong=\"H3212\"*, tell your|strong=\"H6258\"* lord, “Behold|strong=\"H2009\"*, Elijah is|strong=\"H2009\"* here|strong=\"H2009\"*.”’" + }, + { + "verseNum": 12, + "text": "It|strong=\"H5921\"* will|strong=\"H3068\"* happen|strong=\"H1961\"*, as|strong=\"H1961\"* soon as|strong=\"H1961\"* I|strong=\"H5921\"* leave you|strong=\"H5921\"*, that|strong=\"H3045\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* will|strong=\"H3068\"* carry|strong=\"H5375\"* you|strong=\"H5921\"* I|strong=\"H5921\"* don’t know|strong=\"H3045\"* where|strong=\"H5921\"*; and|strong=\"H3068\"* so|strong=\"H1961\"* when|strong=\"H1961\"* I|strong=\"H5921\"* come|strong=\"H1961\"* and|strong=\"H3068\"* tell|strong=\"H5046\"* Ahab, and|strong=\"H3068\"* he|strong=\"H3068\"* can|strong=\"H5650\"*’t find|strong=\"H4672\"* you|strong=\"H5921\"*, he|strong=\"H3068\"* will|strong=\"H3068\"* kill|strong=\"H2026\"* me|strong=\"H5046\"*. But|strong=\"H3808\"* I|strong=\"H5921\"*, your|strong=\"H3068\"* servant|strong=\"H5650\"*, have|strong=\"H1961\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"* from|strong=\"H5921\"* my|strong=\"H3068\"* youth|strong=\"H5271\"*." + }, + { + "verseNum": 13, + "text": "Wasn’t it|strong=\"H6213\"* told|strong=\"H5046\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* what|strong=\"H6213\"* I|strong=\"H3808\"* did|strong=\"H6213\"* when|strong=\"H6213\"* Jezebel killed|strong=\"H2026\"* Yahweh|strong=\"H3068\"*’s prophets|strong=\"H5030\"*, how|strong=\"H6213\"* I|strong=\"H3808\"* hid|strong=\"H2244\"* one|strong=\"H3808\"* hundred|strong=\"H3967\"* men|strong=\"H6213\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s prophets|strong=\"H5030\"* with|strong=\"H3068\"* fifty|strong=\"H2572\"* to|strong=\"H3068\"* a|strong=\"H3068\"* cave|strong=\"H4631\"*, and|strong=\"H3967\"* fed|strong=\"H3557\"* them|strong=\"H6213\"* with|strong=\"H3068\"* bread|strong=\"H3899\"* and|strong=\"H3967\"* water|strong=\"H4325\"*?" + }, + { + "verseNum": 14, + "text": "Now|strong=\"H6258\"* you|strong=\"H3212\"* say, ‘Go|strong=\"H3212\"*, tell your|strong=\"H2026\"* lord, “Behold|strong=\"H2009\"*, Elijah is|strong=\"H2009\"* here|strong=\"H2009\"*”.’ He|strong=\"H2009\"* will kill|strong=\"H2026\"* me|strong=\"H2026\"*.”" + }, + { + "verseNum": 15, + "text": "Elijah said, “As|strong=\"H3117\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* lives|strong=\"H2416\"*, before|strong=\"H6440\"* whom|strong=\"H6440\"* I|strong=\"H3588\"* stand|strong=\"H5975\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H3588\"* show|strong=\"H7200\"* myself to|strong=\"H3068\"* him|strong=\"H6440\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 16, + "text": "So Obadiah|strong=\"H5662\"* went|strong=\"H3212\"* to|strong=\"H3212\"* meet|strong=\"H7125\"* Ahab, and|strong=\"H3212\"* told|strong=\"H5046\"* him|strong=\"H5046\"*; and|strong=\"H3212\"* Ahab went|strong=\"H3212\"* to|strong=\"H3212\"* meet|strong=\"H7125\"* Elijah." + }, + { + "verseNum": 17, + "text": "When|strong=\"H1961\"* Ahab saw|strong=\"H7200\"* Elijah, Ahab said to|strong=\"H3478\"* him|strong=\"H7200\"*, “Is|strong=\"H2088\"* that|strong=\"H7200\"* you|strong=\"H7200\"*, you|strong=\"H7200\"* troubler|strong=\"H5916\"* of|strong=\"H7200\"* Israel|strong=\"H3478\"*?”" + }, + { + "verseNum": 18, + "text": "He|strong=\"H3588\"* answered, “I|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* troubled|strong=\"H5916\"* Israel|strong=\"H3478\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* and|strong=\"H3478\"* your|strong=\"H3068\"* father’s house|strong=\"H1004\"*, in|strong=\"H3478\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* forsaken|strong=\"H5800\"* Yahweh|strong=\"H3068\"*’s commandments|strong=\"H4687\"* and|strong=\"H3478\"* you|strong=\"H3588\"* have|strong=\"H3068\"* followed|strong=\"H3212\"* the|strong=\"H3588\"* Baals|strong=\"H1168\"*." + }, + { + "verseNum": 19, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* send|strong=\"H7971\"*, and|strong=\"H3967\"* gather|strong=\"H6908\"* to|strong=\"H3478\"* me|strong=\"H7971\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* Mount|strong=\"H2022\"* Carmel|strong=\"H3760\"*, and|strong=\"H3967\"* four hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* of|strong=\"H2022\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* of|strong=\"H2022\"* Baal|strong=\"H1168\"*, and|strong=\"H3967\"* four hundred|strong=\"H3967\"* of|strong=\"H2022\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* of|strong=\"H2022\"* the|strong=\"H3605\"* Asherah, who|strong=\"H3605\"* eat at|strong=\"H3478\"* Jezebel’s table|strong=\"H7979\"*.”" + }, + { + "verseNum": 20, + "text": "So|strong=\"H7971\"* Ahab sent|strong=\"H7971\"* to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* gathered|strong=\"H6908\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* together|strong=\"H6908\"* to|strong=\"H3478\"* Mount|strong=\"H2022\"* Carmel|strong=\"H3760\"*." + }, + { + "verseNum": 21, + "text": "Elijah came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* said|strong=\"H1697\"*, “How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H3068\"* you|strong=\"H3605\"* waver between|strong=\"H5704\"* the|strong=\"H3605\"* two|strong=\"H8147\"* sides? If Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* God|strong=\"H3068\"*, follow|strong=\"H3212\"* him|strong=\"H5921\"*; but|strong=\"H3808\"* if Baal|strong=\"H1168\"*, then|strong=\"H6030\"* follow|strong=\"H3212\"* him|strong=\"H5921\"*.”" + }, + { + "verseNum": 22, + "text": "Then|strong=\"H3068\"* Elijah said to|strong=\"H3068\"* the|strong=\"H3068\"* people|strong=\"H5971\"*, “I|strong=\"H3068\"*, even|strong=\"H3068\"* I|strong=\"H3068\"* only, am|strong=\"H3068\"* left|strong=\"H3498\"* as|strong=\"H3068\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; but|strong=\"H3498\"* Baal|strong=\"H1168\"*’s prophets|strong=\"H5030\"* are|strong=\"H5971\"* four hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* men|strong=\"H5971\"*." + }, + { + "verseNum": 23, + "text": "Let|strong=\"H5414\"* them|strong=\"H5414\"* therefore|strong=\"H5921\"* give|strong=\"H5414\"* us|strong=\"H5414\"* two|strong=\"H8147\"* bulls|strong=\"H6499\"*; and|strong=\"H6086\"* let|strong=\"H5414\"* them|strong=\"H5414\"* choose one|strong=\"H3808\"* bull|strong=\"H6499\"* for|strong=\"H5921\"* themselves|strong=\"H1992\"*, and|strong=\"H6086\"* cut|strong=\"H5408\"* it|strong=\"H5414\"* in|strong=\"H5921\"* pieces|strong=\"H5408\"*, and|strong=\"H6086\"* lay|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wood|strong=\"H6086\"*, and|strong=\"H6086\"* put|strong=\"H5414\"* no|strong=\"H3808\"* fire under|strong=\"H5921\"*; and|strong=\"H6086\"* I|strong=\"H5414\"* will|strong=\"H5414\"* dress|strong=\"H6213\"* the|strong=\"H5921\"* other|strong=\"H8147\"* bull|strong=\"H6499\"*, and|strong=\"H6086\"* lay|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wood|strong=\"H6086\"*, and|strong=\"H6086\"* put|strong=\"H5414\"* no|strong=\"H3808\"* fire under|strong=\"H5921\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H3605\"* call|strong=\"H7121\"* on|strong=\"H3068\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H3068\"* your|strong=\"H3068\"* god|strong=\"H3068\"*, and|strong=\"H3068\"* I|strong=\"H1697\"* will|strong=\"H3068\"* call|strong=\"H7121\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*. The|strong=\"H3605\"* God|strong=\"H3068\"* who|strong=\"H3605\"* answers|strong=\"H6030\"* by|strong=\"H3068\"* fire, let|strong=\"H1961\"* him|strong=\"H7121\"* be|strong=\"H1961\"* God|strong=\"H3068\"*.”" + }, + { + "verseNum": 25, + "text": "Elijah said|strong=\"H7121\"* to|strong=\"H6213\"* the|strong=\"H3588\"* prophets|strong=\"H5030\"* of|strong=\"H8034\"* Baal|strong=\"H1168\"*, “Choose one|strong=\"H3808\"* bull|strong=\"H6499\"* for|strong=\"H3588\"* yourselves, and|strong=\"H6499\"* dress|strong=\"H6213\"* it|strong=\"H7760\"* first|strong=\"H7223\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5030\"* many|strong=\"H7227\"*; and|strong=\"H6499\"* call|strong=\"H7121\"* on|strong=\"H7760\"* the|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H8034\"* your|strong=\"H7760\"* god|strong=\"H3808\"*, but|strong=\"H3588\"* put|strong=\"H7760\"* no|strong=\"H3808\"* fire under|strong=\"H6213\"* it|strong=\"H7760\"*.”" + }, + { + "verseNum": 26, + "text": "They|strong=\"H5921\"* took|strong=\"H3947\"* the|strong=\"H5921\"* bull|strong=\"H6499\"* which|strong=\"H4196\"* was|strong=\"H8034\"* given|strong=\"H5414\"* them|strong=\"H5414\"*, and|strong=\"H6030\"* they|strong=\"H5921\"* dressed|strong=\"H6213\"* it|strong=\"H5414\"*, and|strong=\"H6030\"* called|strong=\"H7121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H6963\"* Baal|strong=\"H1168\"* from|strong=\"H5921\"* morning|strong=\"H1242\"* even|strong=\"H5704\"* until|strong=\"H5704\"* noon|strong=\"H6672\"*, saying|strong=\"H6963\"*, “Baal|strong=\"H1168\"*, hear|strong=\"H6030\"* us|strong=\"H5414\"*!” But|strong=\"H6030\"* there|strong=\"H5704\"* was|strong=\"H8034\"* no|strong=\"H6213\"* voice|strong=\"H6963\"*, and|strong=\"H6030\"* nobody answered|strong=\"H6030\"*. They|strong=\"H5921\"* leaped|strong=\"H6452\"* about|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* which|strong=\"H4196\"* was|strong=\"H8034\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 27, + "text": "At|strong=\"H1961\"* noon|strong=\"H6672\"*, Elijah mocked|strong=\"H2048\"* them|strong=\"H7121\"*, and|strong=\"H1419\"* said|strong=\"H7121\"*, “Cry|strong=\"H7121\"* aloud|strong=\"H6963\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* god. Either|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* deep|strong=\"H1419\"* in|strong=\"H1419\"* thought, or|strong=\"H1419\"* he|strong=\"H1931\"* has|strong=\"H1961\"* gone|strong=\"H1961\"* somewhere, or|strong=\"H1419\"* he|strong=\"H1931\"* is|strong=\"H1931\"* on|strong=\"H1870\"* a|strong=\"H3068\"* journey|strong=\"H1870\"*, or|strong=\"H1419\"* perhaps|strong=\"H3588\"* he|strong=\"H1931\"* sleeps and|strong=\"H1419\"* must be|strong=\"H1961\"* awakened|strong=\"H3364\"*.”" + }, + { + "verseNum": 28, + "text": "They|strong=\"H5921\"* cried|strong=\"H7121\"* aloud|strong=\"H6963\"*, and|strong=\"H1419\"* cut|strong=\"H1413\"* themselves|strong=\"H7121\"* in|strong=\"H5921\"* their|strong=\"H5921\"* way|strong=\"H4941\"* with|strong=\"H5921\"* knives|strong=\"H2719\"* and|strong=\"H1419\"* lances|strong=\"H7420\"* until|strong=\"H5704\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* gushed|strong=\"H8210\"* out|strong=\"H8210\"* on|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"H1961\"* midday|strong=\"H6672\"* was|strong=\"H1961\"* past|strong=\"H5674\"*, they|strong=\"H5704\"* prophesied|strong=\"H5012\"* until|strong=\"H5704\"* the|strong=\"H5704\"* time|strong=\"H5704\"* of|strong=\"H6963\"* the|strong=\"H5704\"* evening offering|strong=\"H4503\"*; but|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H5927\"* voice|strong=\"H6963\"*, no|strong=\"H5927\"* answer|strong=\"H6030\"*, and|strong=\"H6030\"* nobody paid|strong=\"H7182\"* attention|strong=\"H7182\"*." + }, + { + "verseNum": 30, + "text": "Elijah said to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, “Come|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3068\"* me|strong=\"H5066\"*!”; and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3068\"* him|strong=\"H3605\"*. He|strong=\"H3068\"* repaired|strong=\"H7495\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"* that|strong=\"H5971\"* had|strong=\"H3068\"* been|strong=\"H5971\"* thrown|strong=\"H2040\"* down|strong=\"H2040\"*." + }, + { + "verseNum": 31, + "text": "Elijah took|strong=\"H3947\"* twelve|strong=\"H8147\"* stones, according to|strong=\"H3478\"* the|strong=\"H3947\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3947\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* the|strong=\"H3947\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*, to|strong=\"H3478\"* whom Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"*, saying|strong=\"H1697\"*, “Israel|strong=\"H3478\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* your|strong=\"H3068\"* name|strong=\"H8034\"*.”" + }, + { + "verseNum": 32, + "text": "With|strong=\"H1004\"* the|strong=\"H6213\"* stones he|strong=\"H6213\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* trench|strong=\"H8585\"* around|strong=\"H5439\"* the|strong=\"H6213\"* altar|strong=\"H4196\"* large|strong=\"H1004\"* enough|strong=\"H6213\"* to|strong=\"H3068\"* contain|strong=\"H1004\"* two|strong=\"H6213\"* seahs|strong=\"H5429\"*+ 18:32 1 seah is about 7 liters or 1.9 gallons or 0.8 pecks* of|strong=\"H1004\"* seed|strong=\"H2233\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H5921\"* put|strong=\"H7760\"* the|strong=\"H5921\"* wood|strong=\"H6086\"* in|strong=\"H5921\"* order|strong=\"H6186\"*, and|strong=\"H6086\"* cut|strong=\"H5408\"* the|strong=\"H5921\"* bull|strong=\"H6499\"* in|strong=\"H5921\"* pieces|strong=\"H5408\"* and|strong=\"H6086\"* laid|strong=\"H7760\"* it|strong=\"H7760\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wood|strong=\"H6086\"*. He|strong=\"H5921\"* said, “Fill four jars with|strong=\"H5921\"* water, and|strong=\"H6086\"* pour it|strong=\"H7760\"* on|strong=\"H5921\"* the|strong=\"H5921\"* burnt offering and|strong=\"H6086\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wood|strong=\"H6086\"*.”" + }, + { + "verseNum": 34, + "text": "He|strong=\"H5921\"* said, “Do|strong=\"H8138\"* it|strong=\"H5921\"* a|strong=\"H3068\"* second|strong=\"H8138\"* time|strong=\"H8138\"*;” and|strong=\"H6086\"* they|strong=\"H5921\"* did|strong=\"H5930\"* it|strong=\"H5921\"* the|strong=\"H5921\"* second|strong=\"H8138\"* time|strong=\"H8138\"*. He|strong=\"H5921\"* said, “Do|strong=\"H8138\"* it|strong=\"H5921\"* a|strong=\"H3068\"* third|strong=\"H8027\"* time|strong=\"H8138\"*;” and|strong=\"H6086\"* they|strong=\"H5921\"* did|strong=\"H5930\"* it|strong=\"H5921\"* the|strong=\"H5921\"* third|strong=\"H8027\"* time|strong=\"H8138\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H4390\"* water|strong=\"H4325\"* ran|strong=\"H3212\"* around|strong=\"H5439\"* the|strong=\"H4390\"* altar|strong=\"H4196\"*; and|strong=\"H3212\"* he|strong=\"H4325\"* also|strong=\"H1571\"* filled|strong=\"H4390\"* the|strong=\"H4390\"* trench|strong=\"H8585\"* with|strong=\"H4390\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 36, + "text": "At|strong=\"H3478\"* the|strong=\"H3605\"* time|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3605\"* evening|strong=\"H3117\"* offering|strong=\"H4503\"*, Elijah the|strong=\"H3605\"* prophet|strong=\"H5030\"* came|strong=\"H1961\"* near|strong=\"H5066\"* and|strong=\"H3478\"* said|strong=\"H1697\"*, “Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Abraham, of|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H3478\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, let|strong=\"H1961\"* it|strong=\"H3588\"* be|strong=\"H1961\"* known|strong=\"H3045\"* today|strong=\"H3117\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3117\"* God|strong=\"H3068\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*, and|strong=\"H3478\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* done|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* things|strong=\"H1697\"* at|strong=\"H3478\"* your|strong=\"H3068\"* word|strong=\"H1697\"*." + }, + { + "verseNum": 37, + "text": "Hear|strong=\"H6030\"* me|strong=\"H5437\"*, Yahweh|strong=\"H3068\"*, hear|strong=\"H6030\"* me|strong=\"H5437\"*, that|strong=\"H3588\"* this|strong=\"H2088\"* people|strong=\"H5971\"* may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, are|strong=\"H5971\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* turned|strong=\"H5437\"* their|strong=\"H3068\"* heart|strong=\"H3820\"* back|strong=\"H5437\"* again|strong=\"H5437\"*.”" + }, + { + "verseNum": 38, + "text": "Then|strong=\"H5307\"* Yahweh|strong=\"H3068\"*’s fire fell|strong=\"H5307\"* and|strong=\"H3068\"* consumed the|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, the|strong=\"H3068\"* wood|strong=\"H6086\"*, the|strong=\"H3068\"* stones, and|strong=\"H3068\"* the|strong=\"H3068\"* dust|strong=\"H6083\"*; and|strong=\"H3068\"* it|strong=\"H3068\"* licked|strong=\"H3897\"* up|strong=\"H3897\"* the|strong=\"H3068\"* water|strong=\"H4325\"* that|strong=\"H3068\"* was|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* trench|strong=\"H8585\"*." + }, + { + "verseNum": 39, + "text": "When|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* saw|strong=\"H7200\"* it|strong=\"H1931\"*, they|strong=\"H3068\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* their|strong=\"H3605\"* faces|strong=\"H6440\"*. They|strong=\"H3068\"* said, “Yahweh|strong=\"H3068\"*, he|strong=\"H1931\"* is|strong=\"H3068\"* God|strong=\"H3068\"*! Yahweh|strong=\"H3068\"*, he|strong=\"H1931\"* is|strong=\"H3068\"* God|strong=\"H3068\"*!”" + }, + { + "verseNum": 40, + "text": "Elijah said to|strong=\"H3381\"* them|strong=\"H1992\"*, “Seize|strong=\"H8610\"* the|strong=\"H7819\"* prophets|strong=\"H5030\"* of|strong=\"H5158\"* Baal|strong=\"H1168\"*! Don’t let|strong=\"H3381\"* one|strong=\"H4422\"* of|strong=\"H5158\"* them|strong=\"H1992\"* escape|strong=\"H4422\"*!”" + }, + { + "verseNum": 41, + "text": "Elijah said to|strong=\"H5927\"* Ahab, “Get|strong=\"H5927\"* up|strong=\"H5927\"*, eat and|strong=\"H6963\"* drink|strong=\"H8354\"*; for|strong=\"H3588\"* there|strong=\"H5927\"* is|strong=\"H6963\"* the|strong=\"H3588\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* abundance|strong=\"H1995\"* of|strong=\"H6963\"* rain|strong=\"H1653\"*.”" + }, + { + "verseNum": 42, + "text": "So|strong=\"H5927\"* Ahab went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* eat and|strong=\"H7218\"* to|strong=\"H5927\"* drink|strong=\"H8354\"*. Elijah went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H6440\"* top|strong=\"H7218\"* of|strong=\"H7218\"* Carmel|strong=\"H3760\"*; and|strong=\"H7218\"* he|strong=\"H6440\"* bowed himself|strong=\"H8354\"* down|strong=\"H7760\"* on|strong=\"H7760\"* the|strong=\"H6440\"* earth|strong=\"H5927\"*, and|strong=\"H7218\"* put|strong=\"H7760\"* his|strong=\"H7760\"* face|strong=\"H6440\"* between his|strong=\"H7760\"* knees|strong=\"H1290\"*." + }, + { + "verseNum": 43, + "text": "He|strong=\"H7725\"* said to|strong=\"H7725\"* his|strong=\"H7725\"* servant|strong=\"H5288\"*, “Go|strong=\"H5927\"* up|strong=\"H5927\"* now|strong=\"H4994\"* and|strong=\"H7725\"* look|strong=\"H5027\"* toward|strong=\"H1870\"* the|strong=\"H7725\"* sea|strong=\"H3220\"*.”" + }, + { + "verseNum": 44, + "text": "On|strong=\"H1961\"* the|strong=\"H5927\"* seventh|strong=\"H7637\"* time|strong=\"H1961\"*, he|strong=\"H3808\"* said, “Behold|strong=\"H2009\"*, a|strong=\"H3068\"* small|strong=\"H6996\"* cloud|strong=\"H5645\"*, like|strong=\"H1961\"* a|strong=\"H3068\"* man’s hand|strong=\"H3709\"*, is|strong=\"H2009\"* rising|strong=\"H5927\"* out|strong=\"H3381\"* of|strong=\"H3709\"* the|strong=\"H5927\"* sea|strong=\"H3220\"*.”" + }, + { + "verseNum": 45, + "text": "In|strong=\"H3212\"* a|strong=\"H3068\"* little|strong=\"H5704\"* while|strong=\"H5704\"*, the|strong=\"H3541\"* sky|strong=\"H8064\"* grew|strong=\"H6937\"* black|strong=\"H6937\"* with|strong=\"H3212\"* clouds|strong=\"H5645\"* and|strong=\"H8064\"* wind|strong=\"H7307\"*, and|strong=\"H8064\"* there|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* great|strong=\"H1419\"* rain|strong=\"H1653\"*. Ahab rode|strong=\"H7392\"*, and|strong=\"H8064\"* went|strong=\"H3212\"* to|strong=\"H5704\"* Jezreel|strong=\"H3157\"*." + }, + { + "verseNum": 46, + "text": "Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* on|strong=\"H3027\"* Elijah; and|strong=\"H3068\"* he|strong=\"H5704\"* tucked his|strong=\"H3068\"* cloak into|strong=\"H3027\"* his|strong=\"H3068\"* belt and|strong=\"H3068\"* ran|strong=\"H7323\"* before|strong=\"H6440\"* Ahab to|strong=\"H5704\"* the|strong=\"H6440\"* entrance of|strong=\"H3068\"* Jezreel|strong=\"H3157\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Ahab told|strong=\"H5046\"* Jezebel all|strong=\"H3605\"* that|strong=\"H3605\"* Elijah had|strong=\"H5030\"* done|strong=\"H6213\"*, and|strong=\"H2719\"* how|strong=\"H6213\"* he|strong=\"H6213\"* had|strong=\"H5030\"* killed|strong=\"H2026\"* all|strong=\"H3605\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* with|strong=\"H6213\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H7971\"* Jezebel sent|strong=\"H7971\"* a|strong=\"H3068\"* messenger|strong=\"H4397\"* to|strong=\"H7971\"* Elijah, saying, “So|strong=\"H6213\"* let|strong=\"H7971\"* the|strong=\"H3588\"* gods do|strong=\"H6213\"* to|strong=\"H7971\"* me|strong=\"H7971\"*, and|strong=\"H7971\"* more|strong=\"H3254\"* also|strong=\"H3541\"*, if|strong=\"H3588\"* I|strong=\"H3588\"* don’t make|strong=\"H6213\"* your|strong=\"H7760\"* life|strong=\"H5315\"* as|strong=\"H6213\"* the|strong=\"H3588\"* life|strong=\"H5315\"* of|strong=\"H6256\"* one|strong=\"H6213\"* of|strong=\"H6256\"* them|strong=\"H1992\"* by|strong=\"H7971\"* tomorrow|strong=\"H4279\"* about|strong=\"H6213\"* this|strong=\"H6213\"* time|strong=\"H6256\"*!”" + }, + { + "verseNum": 3, + "text": "When|strong=\"H7200\"* he|strong=\"H8033\"* saw|strong=\"H7200\"* that|strong=\"H7200\"*, he|strong=\"H8033\"* arose|strong=\"H6965\"* and|strong=\"H3063\"* ran|strong=\"H3212\"* for|strong=\"H5315\"* his|strong=\"H7200\"* life|strong=\"H5315\"*, and|strong=\"H3063\"* came|strong=\"H3212\"* to|strong=\"H3212\"* Beersheba, which|strong=\"H8033\"* belongs to|strong=\"H3212\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* left|strong=\"H3240\"* his|strong=\"H7200\"* servant|strong=\"H5288\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3588\"* he|strong=\"H1931\"* himself|strong=\"H5315\"* went|strong=\"H1980\"* a|strong=\"H3068\"* day|strong=\"H3117\"*’s journey|strong=\"H1870\"* into|strong=\"H1980\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"*, and|strong=\"H1980\"* came|strong=\"H1980\"* and|strong=\"H1980\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* under|strong=\"H8478\"* a|strong=\"H3068\"* juniper|strong=\"H7574\"* tree|strong=\"H7574\"*. Then|strong=\"H1980\"* he|strong=\"H1931\"* requested|strong=\"H7592\"* for|strong=\"H3588\"* himself|strong=\"H5315\"* that|strong=\"H3588\"* he|strong=\"H1931\"* might|strong=\"H3068\"* die|strong=\"H4191\"*, and|strong=\"H1980\"* said, “It|strong=\"H1931\"* is|strong=\"H3068\"* enough|strong=\"H7227\"*. Now|strong=\"H6258\"*, O|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, take|strong=\"H3947\"* away|strong=\"H3947\"* my|strong=\"H3068\"* life|strong=\"H5315\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* not|strong=\"H3808\"* better|strong=\"H2896\"* than|strong=\"H2896\"* my|strong=\"H3068\"* fathers.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H4397\"* lay|strong=\"H7901\"* down|strong=\"H7901\"* and|strong=\"H6965\"* slept|strong=\"H7901\"* under|strong=\"H8478\"* a|strong=\"H3068\"* juniper|strong=\"H7574\"* tree|strong=\"H7574\"*; and|strong=\"H6965\"* behold|strong=\"H2009\"*, an|strong=\"H6965\"* angel|strong=\"H4397\"* touched|strong=\"H5060\"* him|strong=\"H8478\"*, and|strong=\"H6965\"* said to|strong=\"H4397\"* him|strong=\"H8478\"*, “Arise|strong=\"H6965\"* and|strong=\"H6965\"* eat!”" + }, + { + "verseNum": 6, + "text": "He|strong=\"H7725\"* looked|strong=\"H5027\"*, and|strong=\"H7725\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* was|strong=\"H4325\"* at|strong=\"H7725\"* his|strong=\"H7725\"* head|strong=\"H4763\"* a|strong=\"H3068\"* cake|strong=\"H5692\"* baked on|strong=\"H5027\"* the|strong=\"H7725\"* coals|strong=\"H7529\"*, and|strong=\"H7725\"* a|strong=\"H3068\"* jar|strong=\"H6835\"* of|strong=\"H4325\"* water|strong=\"H4325\"*. He|strong=\"H7725\"* ate and|strong=\"H7725\"* drank|strong=\"H8354\"*, and|strong=\"H7725\"* lay|strong=\"H7901\"* down|strong=\"H7901\"* again|strong=\"H7725\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* came|strong=\"H5060\"* again|strong=\"H7725\"* the|strong=\"H3588\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, and|strong=\"H6965\"* touched|strong=\"H5060\"* him|strong=\"H7725\"*, and|strong=\"H6965\"* said, “Arise|strong=\"H6965\"* and|strong=\"H6965\"* eat, because|strong=\"H3588\"* the|strong=\"H3588\"* journey|strong=\"H1870\"* is|strong=\"H3068\"* too|strong=\"H4480\"* great|strong=\"H7227\"* for|strong=\"H3588\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 8, + "text": "He|strong=\"H1931\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* ate and|strong=\"H6965\"* drank|strong=\"H8354\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* in|strong=\"H3117\"* the|strong=\"H3117\"* strength|strong=\"H3581\"* of|strong=\"H3117\"* that|strong=\"H3117\"* food forty days|strong=\"H3117\"* and|strong=\"H6965\"* forty nights|strong=\"H3915\"* to|strong=\"H5704\"* Horeb|strong=\"H2722\"*, God’s Mountain|strong=\"H2022\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H8033\"* came|strong=\"H3068\"* to|strong=\"H3068\"* a|strong=\"H3068\"* cave|strong=\"H4631\"* there|strong=\"H8033\"*, and|strong=\"H3068\"* camped there|strong=\"H8033\"*; and|strong=\"H3068\"* behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H3068\"* to|strong=\"H3068\"* him|strong=\"H1697\"*, and|strong=\"H3068\"* he|strong=\"H8033\"* said|strong=\"H1697\"* to|strong=\"H3068\"* him|strong=\"H1697\"*, “What|strong=\"H4100\"* are|strong=\"H4100\"* you|strong=\"H4100\"* doing here|strong=\"H6311\"*, Elijah?”" + }, + { + "verseNum": 10, + "text": "He|strong=\"H3588\"* said, “I|strong=\"H3588\"* have|strong=\"H3068\"* been|strong=\"H7065\"* very|strong=\"H7065\"* jealous|strong=\"H7065\"* for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* have|strong=\"H3068\"* forsaken|strong=\"H5800\"* your|strong=\"H3068\"* covenant|strong=\"H1285\"*, thrown|strong=\"H2040\"* down|strong=\"H2040\"* your|strong=\"H3068\"* altars|strong=\"H4196\"*, and|strong=\"H1121\"* killed|strong=\"H2026\"* your|strong=\"H3068\"* prophets|strong=\"H5030\"* with|strong=\"H3068\"* the|strong=\"H3588\"* sword|strong=\"H2719\"*. I|strong=\"H3588\"*, even|strong=\"H3588\"* I|strong=\"H3588\"* only|strong=\"H3588\"*, am|strong=\"H3068\"* left|strong=\"H3498\"*; and|strong=\"H1121\"* they|strong=\"H3588\"* seek|strong=\"H1245\"* my|strong=\"H3068\"* life|strong=\"H5315\"*, to|strong=\"H3478\"* take|strong=\"H3947\"* it|strong=\"H3588\"* away|strong=\"H3947\"*.”" + }, + { + "verseNum": 11, + "text": "He|strong=\"H3068\"* said|strong=\"H3318\"*, “Go|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3068\"* stand|strong=\"H5975\"* on|strong=\"H5674\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 12, + "text": "After the|strong=\"H3068\"* earthquake|strong=\"H7494\"* a|strong=\"H3068\"* fire passed|strong=\"H3068\"*; but|strong=\"H3808\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* not|strong=\"H3808\"* in|strong=\"H3068\"* the|strong=\"H3068\"* fire. After the|strong=\"H3068\"* fire, there|strong=\"H3068\"* was|strong=\"H3068\"* a|strong=\"H3068\"* still|strong=\"H1827\"* small|strong=\"H1851\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H1961\"* Elijah heard|strong=\"H8085\"* it|strong=\"H6440\"*, he|strong=\"H6440\"* wrapped|strong=\"H3874\"* his|strong=\"H8085\"* face|strong=\"H6440\"* in|strong=\"H8085\"* his|strong=\"H8085\"* mantle, went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H6963\"* stood|strong=\"H5975\"* in|strong=\"H8085\"* the|strong=\"H6440\"* entrance|strong=\"H6607\"* of|strong=\"H6963\"* the|strong=\"H6440\"* cave|strong=\"H4631\"*. Behold|strong=\"H2009\"*, a|strong=\"H3068\"* voice|strong=\"H6963\"* came|strong=\"H1961\"* to|strong=\"H3318\"* him|strong=\"H6440\"*, and|strong=\"H6963\"* said|strong=\"H8085\"*, “What|strong=\"H4100\"* are|strong=\"H4100\"* you|strong=\"H6440\"* doing|strong=\"H3318\"* here|strong=\"H6311\"*, Elijah?”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H3588\"* said, “I|strong=\"H3588\"* have|strong=\"H3068\"* been|strong=\"H7065\"* very|strong=\"H7065\"* jealous|strong=\"H7065\"* for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* have|strong=\"H3068\"* forsaken|strong=\"H5800\"* your|strong=\"H3068\"* covenant|strong=\"H1285\"*, thrown|strong=\"H2040\"* down|strong=\"H2040\"* your|strong=\"H3068\"* altars|strong=\"H4196\"*, and|strong=\"H1121\"* killed|strong=\"H2026\"* your|strong=\"H3068\"* prophets|strong=\"H5030\"* with|strong=\"H3068\"* the|strong=\"H3588\"* sword|strong=\"H2719\"*. I|strong=\"H3588\"*, even|strong=\"H3588\"* I|strong=\"H3588\"* only|strong=\"H3588\"*, am|strong=\"H3068\"* left|strong=\"H3498\"*; and|strong=\"H1121\"* they|strong=\"H3588\"* seek|strong=\"H1245\"* my|strong=\"H3068\"* life|strong=\"H5315\"*, to|strong=\"H3478\"* take|strong=\"H3947\"* it|strong=\"H3588\"* away|strong=\"H3947\"*.”" + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H7725\"* him|strong=\"H5921\"*, “Go|strong=\"H3212\"*, return|strong=\"H7725\"* on|strong=\"H5921\"* your|strong=\"H3068\"* way|strong=\"H1870\"* to|strong=\"H7725\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"* of|strong=\"H4428\"* Damascus|strong=\"H1834\"*. When|strong=\"H7725\"* you|strong=\"H5921\"* arrive, anoint|strong=\"H4886\"* Hazael|strong=\"H2371\"* to|strong=\"H7725\"* be|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Syria." + }, + { + "verseNum": 16, + "text": "Anoint|strong=\"H4886\"* Jehu|strong=\"H3058\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nimshi|strong=\"H5250\"* to|strong=\"H3478\"* be|strong=\"H1121\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* anoint|strong=\"H4886\"* Elisha the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphat|strong=\"H8202\"* of|strong=\"H1121\"* Abel Meholah to|strong=\"H3478\"* be|strong=\"H1121\"* prophet|strong=\"H5030\"* in|strong=\"H5921\"* your|strong=\"H5921\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H2719\"* who escapes|strong=\"H4422\"* from|strong=\"H1961\"* the|strong=\"H1961\"* sword|strong=\"H2719\"* of|strong=\"H2719\"* Hazael|strong=\"H2371\"*, Jehu|strong=\"H3058\"* will|strong=\"H1961\"* kill|strong=\"H4191\"*; and|strong=\"H2719\"* he|strong=\"H2719\"* who escapes|strong=\"H4422\"* from|strong=\"H1961\"* the|strong=\"H1961\"* sword|strong=\"H2719\"* of|strong=\"H2719\"* Jehu|strong=\"H3058\"*, Elisha will|strong=\"H1961\"* kill|strong=\"H4191\"*." + }, + { + "verseNum": 18, + "text": "Yet|strong=\"H3808\"* I|strong=\"H3808\"* reserved|strong=\"H7604\"* seven|strong=\"H7651\"* thousand in|strong=\"H3478\"* Israel|strong=\"H3478\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* knees|strong=\"H1290\"* of|strong=\"H6310\"* which|strong=\"H3478\"* have|strong=\"H3478\"* not|strong=\"H3808\"* bowed|strong=\"H3766\"* to|strong=\"H3478\"* Baal|strong=\"H1168\"*, and|strong=\"H3478\"* every|strong=\"H3605\"* mouth|strong=\"H6310\"* which|strong=\"H3478\"* has|strong=\"H3478\"* not|strong=\"H3808\"* kissed|strong=\"H5401\"* him|strong=\"H3605\"*.”" + }, + { + "verseNum": 19, + "text": "So|strong=\"H5674\"* he|strong=\"H1931\"* departed|strong=\"H3212\"* from|strong=\"H6440\"* there|strong=\"H8033\"* and|strong=\"H1121\"* found|strong=\"H4672\"* Elisha the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphat|strong=\"H8202\"*, who|strong=\"H1931\"* was|strong=\"H1931\"* plowing|strong=\"H2790\"* with|strong=\"H6440\"* twelve|strong=\"H8147\"* yoke|strong=\"H6776\"* of|strong=\"H1121\"* oxen|strong=\"H6776\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* with|strong=\"H6440\"* the|strong=\"H6440\"* twelfth|strong=\"H8147\"*. Elijah went|strong=\"H3212\"* over|strong=\"H5674\"* to|strong=\"H3212\"* him|strong=\"H6440\"* and|strong=\"H1121\"* put|strong=\"H5674\"* his|strong=\"H6440\"* mantle on|strong=\"H5674\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 20, + "text": "Elisha|strong=\"H7725\"* left|strong=\"H5800\"* the|strong=\"H3588\"* oxen|strong=\"H1241\"* and|strong=\"H7725\"* ran|strong=\"H7323\"* after|strong=\"H3588\"* Elijah, and|strong=\"H7725\"* said, “Let|strong=\"H4994\"* me|strong=\"H4994\"* please|strong=\"H4994\"* kiss|strong=\"H5401\"* my|strong=\"H7725\"* father and|strong=\"H7725\"* my|strong=\"H7725\"* mother, and|strong=\"H7725\"* then|strong=\"H6213\"* I|strong=\"H3588\"* will|strong=\"H4100\"* follow|strong=\"H3212\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 21, + "text": "He|strong=\"H5414\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* following|strong=\"H3212\"* him|strong=\"H5414\"*, and|strong=\"H6965\"* took|strong=\"H3947\"* the|strong=\"H5414\"* yoke|strong=\"H6776\"* of|strong=\"H3627\"* oxen|strong=\"H1241\"*, killed|strong=\"H2076\"* them|strong=\"H5414\"*, and|strong=\"H6965\"* boiled|strong=\"H1310\"* their|strong=\"H5414\"* meat|strong=\"H1320\"* with|strong=\"H3212\"* the|strong=\"H5414\"* oxen|strong=\"H1241\"*’s equipment|strong=\"H3627\"*, and|strong=\"H6965\"* gave|strong=\"H5414\"* to|strong=\"H7725\"* the|strong=\"H5414\"* people|strong=\"H5971\"*; and|strong=\"H6965\"* they|strong=\"H5971\"* ate. Then|strong=\"H6965\"* he|strong=\"H5414\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* after|strong=\"H6965\"* Elijah, and|strong=\"H6965\"* served|strong=\"H8334\"* him|strong=\"H5414\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Ben Hadad the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria gathered|strong=\"H6908\"* all|strong=\"H3605\"* his|strong=\"H3605\"* army|strong=\"H2426\"* together|strong=\"H6908\"*; and|strong=\"H4428\"* there|strong=\"H5927\"* were|strong=\"H5483\"* thirty-two|strong=\"H7970\"* kings|strong=\"H4428\"* with|strong=\"H5921\"* him|strong=\"H5921\"*, with|strong=\"H5921\"* horses|strong=\"H5483\"* and|strong=\"H4428\"* chariots|strong=\"H7393\"*. He|strong=\"H3605\"* went|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H4428\"* besieged|strong=\"H6696\"* Samaria|strong=\"H8111\"*, and|strong=\"H4428\"* fought|strong=\"H3898\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H7971\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* into|strong=\"H5892\"* the|strong=\"H7971\"* city|strong=\"H5892\"* to|strong=\"H3478\"* Ahab king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* said to|strong=\"H3478\"* him|strong=\"H7971\"*, “Ben Hadad says," + }, + { + "verseNum": 3, + "text": "‘Your|strong=\"H3541\"* silver|strong=\"H3701\"* and|strong=\"H1121\"* your|strong=\"H3541\"* gold|strong=\"H2091\"* are|strong=\"H1992\"* mine. Your|strong=\"H3541\"* wives also|strong=\"H3541\"* and|strong=\"H1121\"* your|strong=\"H3541\"* children|strong=\"H1121\"*, even|strong=\"H3541\"* the|strong=\"H3541\"* best|strong=\"H2896\"*, are|strong=\"H1992\"* mine.’”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* answered|strong=\"H6030\"*, “It|strong=\"H3605\"* is|strong=\"H1697\"* according to|strong=\"H3478\"* your|strong=\"H3605\"* saying|strong=\"H1697\"*, my|strong=\"H3605\"* lord, O|strong=\"H3068\"* king|strong=\"H4428\"*. I|strong=\"H1697\"* am yours, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H1697\"* have|strong=\"H3478\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H3588\"* messengers|strong=\"H4397\"* came|strong=\"H7725\"* again|strong=\"H7725\"* and|strong=\"H1121\"* said, “Ben Hadad says|strong=\"H3541\"*, ‘I|strong=\"H3588\"* sent|strong=\"H7971\"* indeed|strong=\"H3588\"* to|strong=\"H7725\"* you|strong=\"H3588\"*, saying, “You|strong=\"H3588\"* shall|strong=\"H1121\"* deliver|strong=\"H5414\"* me|strong=\"H5414\"* your|strong=\"H5414\"* silver|strong=\"H3701\"*, your|strong=\"H5414\"* gold|strong=\"H2091\"*, your|strong=\"H5414\"* wives, and|strong=\"H1121\"* your|strong=\"H5414\"* children|strong=\"H1121\"*;" + }, + { + "verseNum": 6, + "text": "but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1961\"* send|strong=\"H7971\"* my|strong=\"H3605\"* servants|strong=\"H5650\"* to|strong=\"H7971\"* you|strong=\"H3588\"* tomorrow|strong=\"H4279\"* about|strong=\"H1961\"* this|strong=\"H3588\"* time|strong=\"H6256\"*, and|strong=\"H7971\"* they|strong=\"H3588\"* will|strong=\"H1961\"* search|strong=\"H2664\"* your|strong=\"H3605\"* house|strong=\"H1004\"* and|strong=\"H7971\"* the|strong=\"H3605\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* your|strong=\"H3605\"* servants|strong=\"H5650\"*. Whatever|strong=\"H3605\"* is|strong=\"H3027\"* pleasant|strong=\"H4261\"* in|strong=\"H1004\"* your|strong=\"H3605\"* eyes|strong=\"H5869\"*, they|strong=\"H3588\"* will|strong=\"H1961\"* put|strong=\"H7760\"* it|strong=\"H7760\"* in|strong=\"H1004\"* their|strong=\"H3605\"* hand|strong=\"H3027\"*, and|strong=\"H7971\"* take|strong=\"H3947\"* it|strong=\"H7760\"* away|strong=\"H7971\"*.”’”" + }, + { + "verseNum": 7, + "text": "Then|strong=\"H2088\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* called|strong=\"H7121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land, and|strong=\"H1121\"* said|strong=\"H7121\"*, “Please|strong=\"H4994\"* notice|strong=\"H3045\"* how|strong=\"H3588\"* this|strong=\"H2088\"* man|strong=\"H2205\"* seeks|strong=\"H1245\"* mischief|strong=\"H7451\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* me|strong=\"H4994\"* for|strong=\"H3588\"* my|strong=\"H3605\"* wives, and|strong=\"H1121\"* for|strong=\"H3588\"* my|strong=\"H3605\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* for|strong=\"H3588\"* my|strong=\"H3605\"* silver|strong=\"H3701\"*, and|strong=\"H1121\"* for|strong=\"H3588\"* my|strong=\"H3605\"* gold|strong=\"H2091\"*; and|strong=\"H1121\"* I|strong=\"H3588\"* didn’t deny|strong=\"H4513\"* him|strong=\"H7121\"*.”" + }, + { + "verseNum": 8, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* said|strong=\"H8085\"* to|strong=\"H8085\"* him|strong=\"H3605\"*, “Don’t listen|strong=\"H8085\"*, and|strong=\"H5971\"* don’t consent.”" + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H7971\"* he|strong=\"H6213\"* said|strong=\"H1697\"* to|strong=\"H7725\"* the|strong=\"H3605\"* messengers|strong=\"H4397\"* of|strong=\"H4428\"* Ben Hadad, “Tell|strong=\"H3605\"* my|strong=\"H3605\"* lord the|strong=\"H3605\"* king|strong=\"H4428\"*, ‘All|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* sent|strong=\"H7971\"* for|strong=\"H6213\"* to|strong=\"H7725\"* your|strong=\"H3605\"* servant|strong=\"H5650\"* at|strong=\"H4428\"* the|strong=\"H3605\"* first|strong=\"H7223\"* I|strong=\"H1697\"* will|strong=\"H4428\"* do|strong=\"H6213\"*, but|strong=\"H3808\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* I|strong=\"H1697\"* cannot|strong=\"H3808\"* do|strong=\"H6213\"*.’”" + }, + { + "verseNum": 10, + "text": "Ben Hadad sent|strong=\"H7971\"* to|strong=\"H7971\"* him|strong=\"H7971\"*, and|strong=\"H7971\"* said, “The|strong=\"H3605\"* gods do|strong=\"H6213\"* so|strong=\"H6213\"* to|strong=\"H7971\"* me|strong=\"H7971\"*, and|strong=\"H7971\"* more|strong=\"H3254\"* also|strong=\"H3541\"*, if the|strong=\"H3605\"* dust|strong=\"H6083\"* of|strong=\"H5971\"* Samaria|strong=\"H8111\"* will|strong=\"H5971\"* be|strong=\"H3254\"* enough|strong=\"H3605\"* for|strong=\"H6213\"* handfuls|strong=\"H8168\"* for|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* follow|strong=\"H7272\"* me|strong=\"H7971\"*.”" + }, + { + "verseNum": 11, + "text": "The|strong=\"H1696\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* answered|strong=\"H6030\"*, “Tell|strong=\"H1696\"* him|strong=\"H6030\"*, ‘Don’t let him|strong=\"H6030\"* who|strong=\"H3478\"* puts on|strong=\"H2296\"* his|strong=\"H3478\"* armor brag like|strong=\"H3478\"* he|strong=\"H3478\"* who|strong=\"H3478\"* takes|strong=\"H6605\"* it|strong=\"H1696\"* off|strong=\"H6605\"*.’”" + }, + { + "verseNum": 12, + "text": "When|strong=\"H1961\"* Ben Hadad heard|strong=\"H8085\"* this|strong=\"H2088\"* message|strong=\"H1697\"* as|strong=\"H1697\"* he|strong=\"H1931\"* was|strong=\"H1961\"* drinking|strong=\"H8354\"*, he|strong=\"H1931\"* and|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* in|strong=\"H5921\"* the|strong=\"H5921\"* pavilions|strong=\"H5521\"*, he|strong=\"H1931\"* said|strong=\"H1697\"* to|strong=\"H1961\"* his|strong=\"H7760\"* servants|strong=\"H5650\"*, “Prepare|strong=\"H7760\"* to|strong=\"H1961\"* attack!” So|strong=\"H1961\"* they|strong=\"H5921\"* prepared to|strong=\"H1961\"* attack the|strong=\"H5921\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 13, + "text": "Behold|strong=\"H2009\"*, a|strong=\"H3068\"* prophet|strong=\"H5030\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3478\"* Ahab king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* said, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Have|strong=\"H3068\"* you|strong=\"H3588\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* this|strong=\"H2088\"* great|strong=\"H1419\"* multitude|strong=\"H1995\"*? Behold|strong=\"H2009\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* today|strong=\"H3117\"*. Then|strong=\"H2009\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 14, + "text": "Ahab said, “By|strong=\"H3068\"* whom|strong=\"H4310\"*?”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H1961\"* he|strong=\"H3605\"* mustered|strong=\"H6485\"* the|strong=\"H3605\"* young|strong=\"H5288\"* men|strong=\"H5288\"* of|strong=\"H1121\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"*, and|strong=\"H3967\"* they|strong=\"H5971\"* were|strong=\"H3478\"* two|strong=\"H8147\"* hundred|strong=\"H3967\"* and|strong=\"H3967\"* thirty-two|strong=\"H7970\"*. After|strong=\"H1961\"* them|strong=\"H8147\"*, he|strong=\"H3605\"* mustered|strong=\"H6485\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, even|strong=\"H7651\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, being|strong=\"H1961\"* seven|strong=\"H7651\"* thousand." + }, + { + "verseNum": 16, + "text": "They|strong=\"H1931\"* went|strong=\"H3318\"* out|strong=\"H3318\"* at|strong=\"H4428\"* noon|strong=\"H6672\"*. But|strong=\"H1931\"* Ben Hadad was|strong=\"H1931\"* drinking|strong=\"H8354\"* himself|strong=\"H1931\"* drunk|strong=\"H8354\"* in|strong=\"H4428\"* the|strong=\"H3318\"* pavilions|strong=\"H5521\"*, he|strong=\"H1931\"* and|strong=\"H4428\"* the|strong=\"H3318\"* kings|strong=\"H4428\"*, the|strong=\"H3318\"* thirty-two|strong=\"H7970\"* kings|strong=\"H4428\"* who|strong=\"H1931\"* helped|strong=\"H5826\"* him|strong=\"H3318\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H7971\"* young|strong=\"H5288\"* men|strong=\"H5288\"* of|strong=\"H8269\"* the|strong=\"H7971\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H7971\"* provinces|strong=\"H4082\"* went|strong=\"H3318\"* out|strong=\"H3318\"* first|strong=\"H7223\"*; and|strong=\"H7971\"* Ben Hadad sent|strong=\"H7971\"* out|strong=\"H3318\"*, and|strong=\"H7971\"* they|strong=\"H3318\"* told|strong=\"H5046\"* him|strong=\"H7971\"*, saying, “Men|strong=\"H5288\"* are|strong=\"H8269\"* coming|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Samaria|strong=\"H8111\"*.”" + }, + { + "verseNum": 18, + "text": "He|strong=\"H3318\"* said|strong=\"H3318\"*, “If they|strong=\"H3318\"* have|strong=\"H7965\"* come|strong=\"H3318\"* out|strong=\"H3318\"* for|strong=\"H3318\"* peace|strong=\"H7965\"*, take|strong=\"H8610\"* them|strong=\"H8610\"* alive|strong=\"H2416\"*; or|strong=\"H2416\"* if they|strong=\"H3318\"* have|strong=\"H7965\"* come|strong=\"H3318\"* out|strong=\"H3318\"* for|strong=\"H3318\"* war|strong=\"H4421\"*, take|strong=\"H8610\"* them|strong=\"H8610\"* alive|strong=\"H2416\"*.”" + }, + { + "verseNum": 19, + "text": "So|strong=\"H4480\"* these went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H8269\"* the|strong=\"H4480\"* city|strong=\"H5892\"*, the|strong=\"H4480\"* young|strong=\"H5288\"* men|strong=\"H5288\"* of|strong=\"H8269\"* the|strong=\"H4480\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H4480\"* provinces|strong=\"H4082\"*, and|strong=\"H5892\"* the|strong=\"H4480\"* army|strong=\"H2428\"* which|strong=\"H5892\"* followed them|strong=\"H3318\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H5921\"* each killed|strong=\"H5221\"* his|strong=\"H5921\"* man. The|strong=\"H5921\"* Syrians fled|strong=\"H5127\"*, and|strong=\"H3478\"* Israel|strong=\"H3478\"* pursued|strong=\"H7291\"* them|strong=\"H5921\"*. Ben Hadad the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria escaped|strong=\"H4422\"* on|strong=\"H5921\"* a|strong=\"H3068\"* horse|strong=\"H5483\"* with|strong=\"H5921\"* horsemen|strong=\"H6571\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H5221\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3478\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* horses|strong=\"H5483\"* and|strong=\"H3478\"* chariots|strong=\"H7393\"*, and|strong=\"H3478\"* killed|strong=\"H5221\"* the|strong=\"H5221\"* Syrians with|strong=\"H3318\"* a|strong=\"H3068\"* great|strong=\"H1419\"* slaughter|strong=\"H4347\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H5921\"* prophet|strong=\"H5030\"* came|strong=\"H5927\"* near|strong=\"H5066\"* to|strong=\"H3478\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* said to|strong=\"H3478\"* him|strong=\"H5921\"*, “Go|strong=\"H3212\"*, strengthen|strong=\"H2388\"* yourself|strong=\"H6213\"*, and|strong=\"H3478\"* plan|strong=\"H5927\"* what|strong=\"H3045\"* you|strong=\"H3588\"* must|strong=\"H3478\"* do|strong=\"H6213\"*, for|strong=\"H3588\"* at|strong=\"H5921\"* the|strong=\"H5921\"* return|strong=\"H8666\"* of|strong=\"H4428\"* the|strong=\"H5921\"* year|strong=\"H8141\"*, the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria will|strong=\"H4428\"* come|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 23, + "text": "The|strong=\"H5921\"* servants|strong=\"H5650\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria said|strong=\"H3651\"* to|strong=\"H5921\"* him|strong=\"H5921\"*, “Their|strong=\"H1992\"* god|strong=\"H3808\"* is|strong=\"H3651\"* a|strong=\"H3068\"* god|strong=\"H3808\"* of|strong=\"H4428\"* the|strong=\"H5921\"* hills|strong=\"H2022\"*; therefore|strong=\"H3651\"* they|strong=\"H1992\"* were|strong=\"H1992\"* stronger|strong=\"H2388\"* than|strong=\"H4480\"* we|strong=\"H3068\"*. But|strong=\"H3808\"* let|strong=\"H3808\"*’s fight|strong=\"H3898\"* against|strong=\"H5921\"* them|strong=\"H1992\"* in|strong=\"H5921\"* the|strong=\"H5921\"* plain|strong=\"H4334\"*, and|strong=\"H4428\"* surely|strong=\"H3651\"* we|strong=\"H3068\"* will|strong=\"H4428\"* be|strong=\"H3808\"* stronger|strong=\"H2388\"* than|strong=\"H4480\"* they|strong=\"H1992\"*." + }, + { + "verseNum": 24, + "text": "Do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*: take|strong=\"H5493\"* the|strong=\"H6213\"* kings|strong=\"H4428\"* away|strong=\"H5493\"*, every|strong=\"H1697\"* man|strong=\"H2088\"* out|strong=\"H6213\"* of|strong=\"H4428\"* his|strong=\"H7760\"* place|strong=\"H4725\"*, and|strong=\"H4428\"* put|strong=\"H7760\"* captains|strong=\"H6346\"* in|strong=\"H6213\"* their|strong=\"H7760\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 25, + "text": "Muster|strong=\"H4487\"* an|strong=\"H6213\"* army|strong=\"H2428\"* like|strong=\"H3651\"* the|strong=\"H8085\"* army|strong=\"H2428\"* that|strong=\"H8085\"* you|strong=\"H6213\"* have|strong=\"H3808\"* lost|strong=\"H5307\"*, horse|strong=\"H5483\"* for|strong=\"H6213\"* horse|strong=\"H5483\"* and|strong=\"H6963\"* chariot|strong=\"H7393\"* for|strong=\"H6213\"* chariot|strong=\"H7393\"*. We|strong=\"H8085\"* will|strong=\"H3808\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* them|strong=\"H1992\"* in|strong=\"H6213\"* the|strong=\"H8085\"* plain|strong=\"H4334\"*, and|strong=\"H6963\"* surely|strong=\"H6213\"* we|strong=\"H3068\"* will|strong=\"H3808\"* be|strong=\"H3808\"* stronger|strong=\"H2388\"* than|strong=\"H3808\"* they|strong=\"H1992\"* are|strong=\"H1992\"*.”" + }, + { + "verseNum": 26, + "text": "At|strong=\"H3478\"* the|strong=\"H6485\"* return|strong=\"H8666\"* of|strong=\"H8141\"* the|strong=\"H6485\"* year|strong=\"H8141\"*, Ben Hadad mustered|strong=\"H6485\"* the|strong=\"H6485\"* Syrians and|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Aphek to|strong=\"H3478\"* fight|strong=\"H4421\"* against|strong=\"H5973\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H4390\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* mustered|strong=\"H6485\"* and|strong=\"H1121\"* given|strong=\"H4390\"* provisions, and|strong=\"H1121\"* went|strong=\"H3212\"* against|strong=\"H7125\"* them|strong=\"H8147\"*. The|strong=\"H4390\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* encamped|strong=\"H2583\"* before|strong=\"H5048\"* them|strong=\"H8147\"* like|strong=\"H3478\"* two|strong=\"H8147\"* little|strong=\"H8147\"* flocks|strong=\"H2835\"* of|strong=\"H1121\"* young|strong=\"H1121\"* goats|strong=\"H5795\"*, but the|strong=\"H4390\"* Syrians filled|strong=\"H4390\"* the|strong=\"H4390\"* country." + }, + { + "verseNum": 28, + "text": "A|strong=\"H3068\"* man|strong=\"H1419\"* of|strong=\"H4428\"* God|strong=\"H3068\"* came|strong=\"H5066\"* near|strong=\"H5066\"* and|strong=\"H3478\"* spoke to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* said, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Because|strong=\"H3588\"* the|strong=\"H3605\"* Syrians have|strong=\"H3068\"* said, “Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* god|strong=\"H3068\"* of|strong=\"H4428\"* the|strong=\"H3605\"* hills|strong=\"H2022\"*, but|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H3068\"* not|strong=\"H3808\"* a|strong=\"H3068\"* god|strong=\"H3068\"* of|strong=\"H4428\"* the|strong=\"H3605\"* valleys|strong=\"H6010\"*,” therefore|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* all|strong=\"H3605\"* this|strong=\"H2088\"* great|strong=\"H1419\"* multitude|strong=\"H1995\"* into|strong=\"H3027\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3478\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 29, + "text": "They|strong=\"H3117\"* encamped|strong=\"H2583\"* opposite|strong=\"H5227\"* each|strong=\"H3117\"* other for|strong=\"H3117\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*. Then|strong=\"H1961\"* on|strong=\"H3117\"* the|strong=\"H5221\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* the|strong=\"H5221\"* battle|strong=\"H4421\"* was|strong=\"H1961\"* joined|strong=\"H7126\"*; and|strong=\"H3967\"* the|strong=\"H5221\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* killed|strong=\"H5221\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* thousand footmen|strong=\"H7273\"* of|strong=\"H1121\"* the|strong=\"H5221\"* Syrians in|strong=\"H2583\"* one|strong=\"H1121\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 30, + "text": "But|strong=\"H3498\"* the|strong=\"H5921\"* rest|strong=\"H3498\"* fled|strong=\"H5127\"* to|strong=\"H5921\"* Aphek, into|strong=\"H5307\"* the|strong=\"H5921\"* city|strong=\"H5892\"*; and|strong=\"H6242\"* the|strong=\"H5921\"* wall|strong=\"H2346\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* twenty-seven|strong=\"H6242\"* thousand men|strong=\"H7651\"* who were|strong=\"H5892\"* left|strong=\"H3498\"*. Ben Hadad fled|strong=\"H5127\"* and|strong=\"H6242\"* came|strong=\"H1130\"* into|strong=\"H5307\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, into|strong=\"H5307\"* an|strong=\"H5307\"* inner|strong=\"H2315\"* room|strong=\"H2315\"*." + }, + { + "verseNum": 31, + "text": "His|strong=\"H7760\"* servants|strong=\"H5650\"* said|strong=\"H8085\"* to|strong=\"H3318\"* him|strong=\"H7760\"*, “See|strong=\"H2009\"* now|strong=\"H4994\"*, we|strong=\"H3068\"* have|strong=\"H5650\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* the|strong=\"H8085\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H8085\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* are|strong=\"H1992\"* merciful|strong=\"H2617\"* kings|strong=\"H4428\"*. Please|strong=\"H4994\"* let|strong=\"H4994\"* us|strong=\"H4994\"* put|strong=\"H7760\"* sackcloth|strong=\"H8242\"* on|strong=\"H7760\"* our|strong=\"H8085\"* bodies and|strong=\"H3478\"* ropes|strong=\"H2256\"* on|strong=\"H7760\"* our|strong=\"H8085\"* heads|strong=\"H7218\"*, and|strong=\"H3478\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*. Maybe he|strong=\"H3588\"* will|strong=\"H4428\"* save|strong=\"H2421\"* your|strong=\"H7760\"* life|strong=\"H5315\"*.”" + }, + { + "verseNum": 32, + "text": "So|strong=\"H5650\"* they|strong=\"H1931\"* put|strong=\"H2296\"* sackcloth|strong=\"H8242\"* on|strong=\"H2296\"* their|strong=\"H8242\"* bodies and|strong=\"H3478\"* ropes|strong=\"H2256\"* on|strong=\"H2296\"* their|strong=\"H8242\"* heads|strong=\"H7218\"*, and|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H5650\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* said, “Your|strong=\"H4994\"* servant|strong=\"H5650\"* Ben Hadad says, ‘Please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* live|strong=\"H2421\"*.’”" + }, + { + "verseNum": 33, + "text": "Now|strong=\"H3947\"* the|strong=\"H5921\"* men|strong=\"H3947\"* observed diligently and|strong=\"H3318\"* hurried|strong=\"H4116\"* to|strong=\"H3318\"* take|strong=\"H3947\"* this|strong=\"H5927\"* phrase; and|strong=\"H3318\"* they|strong=\"H5921\"* said|strong=\"H3318\"*, “Your|strong=\"H5921\"* brother Ben Hadad.”" + }, + { + "verseNum": 34, + "text": "Ben Hadad said to|strong=\"H7725\"* him|strong=\"H7971\"*, “The|strong=\"H3947\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* my|strong=\"H7760\"* father took|strong=\"H3947\"* from|strong=\"H7725\"* your|strong=\"H3947\"* father I|strong=\"H7760\"* will|strong=\"H5892\"* restore|strong=\"H7725\"*. You|strong=\"H7971\"* shall|strong=\"H5892\"* make|strong=\"H7760\"* streets|strong=\"H2351\"* for|strong=\"H7971\"* yourself in|strong=\"H5892\"* Damascus|strong=\"H1834\"*, as|strong=\"H5892\"* my|strong=\"H7760\"* father made|strong=\"H3772\"* in|strong=\"H5892\"* Samaria|strong=\"H8111\"*.”" + }, + { + "verseNum": 35, + "text": "A|strong=\"H3068\"* certain man|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5221\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5221\"* prophets|strong=\"H5030\"* said|strong=\"H1697\"* to|strong=\"H3068\"* his|strong=\"H3068\"* fellow|strong=\"H7453\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, “Please|strong=\"H4994\"* strike|strong=\"H5221\"* me|strong=\"H4994\"*!”" + }, + { + "verseNum": 36, + "text": "Then|strong=\"H1980\"* he|strong=\"H3068\"* said|strong=\"H8085\"* to|strong=\"H1980\"* him|strong=\"H5221\"*, “Because|strong=\"H3282\"* you|strong=\"H3808\"* have|strong=\"H3068\"* not|strong=\"H3808\"* obeyed|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*, behold|strong=\"H2005\"*, as|strong=\"H3068\"* soon as|strong=\"H3068\"* you|strong=\"H3808\"* have|strong=\"H3068\"* departed|strong=\"H1980\"* from|strong=\"H1980\"* me|strong=\"H6963\"*, a|strong=\"H3068\"* lion will|strong=\"H3068\"* kill|strong=\"H5221\"* you|strong=\"H3808\"*.” As|strong=\"H3068\"* soon as|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* departed|strong=\"H1980\"* from|strong=\"H1980\"* him|strong=\"H5221\"*, a|strong=\"H3068\"* lion found|strong=\"H4672\"* him|strong=\"H5221\"* and|strong=\"H1980\"* killed|strong=\"H5221\"* him|strong=\"H5221\"*." + }, + { + "verseNum": 37, + "text": "Then|strong=\"H5221\"* he|strong=\"H5221\"* found|strong=\"H4672\"* another man, and|strong=\"H4994\"* said, “Please|strong=\"H4994\"* strike|strong=\"H5221\"* me|strong=\"H4994\"*.”" + }, + { + "verseNum": 38, + "text": "So|strong=\"H5975\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* departed|strong=\"H3212\"* and|strong=\"H4428\"* waited|strong=\"H5975\"* for|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* by|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"*, and|strong=\"H4428\"* disguised|strong=\"H2664\"* himself|strong=\"H5975\"* with|strong=\"H5921\"* his|strong=\"H5921\"* headband over|strong=\"H5921\"* his|strong=\"H5921\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 39, + "text": "As|strong=\"H1961\"* the|strong=\"H8104\"* king|strong=\"H4428\"* passed|strong=\"H5674\"* by|strong=\"H5674\"*, he|strong=\"H1931\"* cried|strong=\"H6817\"* to|strong=\"H3318\"* the|strong=\"H8104\"* king|strong=\"H4428\"*, and|strong=\"H3701\"* he|strong=\"H1931\"* said|strong=\"H3318\"*, “Your|strong=\"H8104\"* servant|strong=\"H5650\"* went|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H8104\"* middle|strong=\"H7130\"* of|strong=\"H4428\"* the|strong=\"H8104\"* battle|strong=\"H4421\"*; and|strong=\"H3701\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* man|strong=\"H5315\"* came|strong=\"H1961\"* over|strong=\"H5674\"* and|strong=\"H3701\"* brought|strong=\"H3318\"* a|strong=\"H3068\"* man|strong=\"H5315\"* to|strong=\"H3318\"* me|strong=\"H5315\"*, and|strong=\"H3701\"* said|strong=\"H3318\"*, ‘Guard|strong=\"H8104\"* this|strong=\"H2088\"* man|strong=\"H5315\"*! If|strong=\"H2009\"* by|strong=\"H5674\"* any|strong=\"H5315\"* means|strong=\"H6485\"* he|strong=\"H1931\"* is|strong=\"H2088\"* missing|strong=\"H6485\"*, then|strong=\"H1961\"* your|strong=\"H8104\"* life|strong=\"H5315\"* shall|strong=\"H4428\"* be|strong=\"H1961\"* for|strong=\"H8478\"* his|strong=\"H8104\"* life|strong=\"H5315\"*, or|strong=\"H3701\"* else you|strong=\"H7130\"* shall|strong=\"H4428\"* pay|strong=\"H8254\"* a|strong=\"H3068\"* talent|strong=\"H3603\"*+ 20:39 A talent is about 30 kilograms or 66 pounds* of|strong=\"H4428\"* silver|strong=\"H3701\"*.’" + }, + { + "verseNum": 40, + "text": "As|strong=\"H1961\"* your|strong=\"H6213\"* servant|strong=\"H5650\"* was|strong=\"H1961\"* busy|strong=\"H6213\"* here|strong=\"H2008\"* and|strong=\"H3478\"* there|strong=\"H1961\"*, he|strong=\"H1931\"* was|strong=\"H1961\"* gone|strong=\"H1961\"*.”" + }, + { + "verseNum": 41, + "text": "He|strong=\"H1931\"* hurried|strong=\"H4116\"*, and|strong=\"H3478\"* took|strong=\"H5493\"* the|strong=\"H5921\"* headband away|strong=\"H5493\"* from|strong=\"H5493\"* his|strong=\"H5921\"* eyes|strong=\"H5869\"*; and|strong=\"H3478\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* recognized|strong=\"H5234\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3478\"* one|strong=\"H1931\"* of|strong=\"H4428\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"*." + }, + { + "verseNum": 42, + "text": "He|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H7971\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Because|strong=\"H3282\"* you|strong=\"H7971\"* have|strong=\"H1961\"* let|strong=\"H7971\"* go|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* the|strong=\"H3541\"* man|strong=\"H5315\"* whom|strong=\"H5971\"* I|strong=\"H3541\"* had|strong=\"H3068\"* devoted|strong=\"H2764\"* to|strong=\"H3068\"* destruction|strong=\"H2764\"*, therefore|strong=\"H7971\"* your|strong=\"H3068\"* life|strong=\"H5315\"* will|strong=\"H3068\"* take|strong=\"H1961\"* the|strong=\"H3541\"* place|strong=\"H8478\"* of|strong=\"H3068\"* his|strong=\"H3068\"* life|strong=\"H5315\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* people|strong=\"H5971\"* take|strong=\"H1961\"* the|strong=\"H3541\"* place|strong=\"H8478\"* of|strong=\"H3068\"* his|strong=\"H3068\"* people|strong=\"H5971\"*.’”" + }, + { + "verseNum": 43, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* went|strong=\"H3212\"* to|strong=\"H3478\"* his|strong=\"H5921\"* house|strong=\"H1004\"* sullen|strong=\"H5620\"* and|strong=\"H3478\"* angry, and|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* Samaria|strong=\"H8111\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* these|strong=\"H4428\"* things|strong=\"H1697\"*, Naboth|strong=\"H5022\"* the|strong=\"H1697\"* Jezreelite|strong=\"H3158\"* had|strong=\"H1961\"* a|strong=\"H3068\"* vineyard|strong=\"H3754\"* which|strong=\"H1697\"* was|strong=\"H1961\"* in|strong=\"H4428\"* Jezreel|strong=\"H3157\"*, next to|strong=\"H1961\"* the|strong=\"H1697\"* palace|strong=\"H1964\"* of|strong=\"H4428\"* Ahab king|strong=\"H4428\"* of|strong=\"H4428\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 2, + "text": "Ahab spoke|strong=\"H1696\"* to|strong=\"H1696\"* Naboth|strong=\"H5022\"*, saying|strong=\"H1696\"*, “Give|strong=\"H5414\"* me|strong=\"H5414\"* your|strong=\"H5414\"* vineyard|strong=\"H3754\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H1961\"* have|strong=\"H1961\"* it|strong=\"H5414\"* for|strong=\"H3588\"* a|strong=\"H3068\"* garden|strong=\"H1588\"* of|strong=\"H1004\"* herbs|strong=\"H3419\"*, because|strong=\"H3588\"* it|strong=\"H5414\"* is|strong=\"H2088\"* near|strong=\"H7138\"* my|strong=\"H5414\"* house|strong=\"H1004\"*; and|strong=\"H3701\"* I|strong=\"H3588\"* will|strong=\"H1961\"* give|strong=\"H5414\"* you|strong=\"H3588\"* for|strong=\"H3588\"* it|strong=\"H5414\"* a|strong=\"H3068\"* better|strong=\"H2896\"* vineyard|strong=\"H3754\"* than|strong=\"H4480\"* it|strong=\"H5414\"*. Or|strong=\"H3701\"*, if|strong=\"H3588\"* it|strong=\"H5414\"* seems|strong=\"H2896\"* good|strong=\"H2896\"* to|strong=\"H1696\"* you|strong=\"H3588\"*, I|strong=\"H3588\"* will|strong=\"H1961\"* give|strong=\"H5414\"* you|strong=\"H3588\"* its|strong=\"H5414\"* worth|strong=\"H4242\"* in|strong=\"H1004\"* money|strong=\"H3701\"*.”" + }, + { + "verseNum": 3, + "text": "Naboth|strong=\"H5022\"* said to|strong=\"H3068\"* Ahab, “May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* forbid|strong=\"H2486\"* me|strong=\"H5414\"*, that|strong=\"H3068\"* I|strong=\"H5414\"* should|strong=\"H3068\"* give|strong=\"H5414\"* the|strong=\"H5414\"* inheritance|strong=\"H5159\"* of|strong=\"H3068\"* my|strong=\"H5414\"* fathers to|strong=\"H3068\"* you|strong=\"H5414\"*!”" + }, + { + "verseNum": 4, + "text": "Ahab came|strong=\"H1697\"* into|strong=\"H5921\"* his|strong=\"H5414\"* house|strong=\"H1004\"* sullen|strong=\"H5620\"* and|strong=\"H1004\"* angry because|strong=\"H5921\"* of|strong=\"H1004\"* the|strong=\"H6440\"* word|strong=\"H1697\"* which|strong=\"H1697\"* Naboth|strong=\"H5022\"* the|strong=\"H6440\"* Jezreelite|strong=\"H3158\"* had|strong=\"H5414\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5414\"*, for|strong=\"H5921\"* he|strong=\"H1004\"* had|strong=\"H5414\"* said|strong=\"H1696\"*, “I|strong=\"H5414\"* will|strong=\"H1004\"* not|strong=\"H3808\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H6440\"* inheritance|strong=\"H5159\"* of|strong=\"H1004\"* my|strong=\"H5414\"* fathers.” He|strong=\"H1004\"* laid|strong=\"H5414\"* himself|strong=\"H6440\"* down|strong=\"H7901\"* on|strong=\"H5921\"* his|strong=\"H5414\"* bed|strong=\"H4296\"*, and|strong=\"H1004\"* turned|strong=\"H5437\"* away|strong=\"H5437\"* his|strong=\"H5414\"* face|strong=\"H6440\"*, and|strong=\"H1004\"* would|strong=\"H1697\"* eat|strong=\"H3899\"* no|strong=\"H3808\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H1696\"* Jezebel his|strong=\"H1696\"* wife|strong=\"H1696\"* came|strong=\"H7307\"* to|strong=\"H1696\"* him|strong=\"H2088\"*, and|strong=\"H3899\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H2088\"*, “Why|strong=\"H4100\"* is|strong=\"H2088\"* your|strong=\"H2088\"* spirit|strong=\"H7307\"* so|strong=\"H2088\"* sad|strong=\"H5620\"* that|strong=\"H2088\"* you|strong=\"H4100\"* eat|strong=\"H3899\"* no|strong=\"H1696\"* bread|strong=\"H3899\"*?”" + }, + { + "verseNum": 6, + "text": "He|strong=\"H3588\"* said|strong=\"H1696\"* to|strong=\"H1696\"* her|strong=\"H5414\"*, “Because|strong=\"H3588\"* I|strong=\"H3588\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Naboth|strong=\"H5022\"* the|strong=\"H3588\"* Jezreelite|strong=\"H3158\"*, and|strong=\"H3701\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5414\"*, ‘Give|strong=\"H5414\"* me|strong=\"H5414\"* your|strong=\"H5414\"* vineyard|strong=\"H3754\"* for|strong=\"H3588\"* money|strong=\"H3701\"*; or|strong=\"H3808\"* else|strong=\"H3808\"*, if|strong=\"H3588\"* it|strong=\"H5414\"* pleases|strong=\"H2655\"* you|strong=\"H3588\"*, I|strong=\"H3588\"* will|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H3588\"* another|strong=\"H3808\"* vineyard|strong=\"H3754\"* for|strong=\"H3588\"* it|strong=\"H5414\"*.’ He|strong=\"H3588\"* answered|strong=\"H1696\"*, ‘I|strong=\"H3588\"* will|strong=\"H5414\"* not|strong=\"H3808\"* give|strong=\"H5414\"* you|strong=\"H3588\"* my|strong=\"H5414\"* vineyard|strong=\"H3754\"*.’”" + }, + { + "verseNum": 7, + "text": "Jezebel his|strong=\"H5414\"* wife said to|strong=\"H3478\"* him|strong=\"H5414\"*, “Do|strong=\"H6213\"* you|strong=\"H5414\"* now|strong=\"H6258\"* govern|strong=\"H6213\"* the|strong=\"H5921\"* kingdom|strong=\"H4410\"* of|strong=\"H5921\"* Israel|strong=\"H3478\"*? Arise|strong=\"H6965\"*, and|strong=\"H6965\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"*, and|strong=\"H6965\"* let|strong=\"H5414\"* your|strong=\"H5414\"* heart|strong=\"H3820\"* be|strong=\"H3820\"* merry|strong=\"H3190\"*. I|strong=\"H5414\"* will|strong=\"H3478\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H5921\"* vineyard|strong=\"H3754\"* of|strong=\"H5921\"* Naboth|strong=\"H5022\"* the|strong=\"H5921\"* Jezreelite|strong=\"H3158\"*.”" + }, + { + "verseNum": 8, + "text": "So|strong=\"H7971\"* she|strong=\"H5892\"* wrote|strong=\"H3789\"* letters|strong=\"H5612\"* in|strong=\"H3427\"* Ahab’s name|strong=\"H8034\"* and|strong=\"H7971\"* sealed|strong=\"H2856\"* them|strong=\"H7971\"* with|strong=\"H3427\"* his|strong=\"H7971\"* seal|strong=\"H2368\"*, and|strong=\"H7971\"* sent|strong=\"H7971\"* the|strong=\"H7971\"* letters|strong=\"H5612\"* to|strong=\"H7971\"* the|strong=\"H7971\"* elders|strong=\"H2205\"* and|strong=\"H7971\"* to|strong=\"H7971\"* the|strong=\"H7971\"* nobles|strong=\"H2715\"* who|strong=\"H3427\"* were|strong=\"H5612\"* in|strong=\"H3427\"* his|strong=\"H7971\"* city|strong=\"H5892\"*, who|strong=\"H3427\"* lived|strong=\"H3427\"* with|strong=\"H3427\"* Naboth|strong=\"H5022\"*." + }, + { + "verseNum": 9, + "text": "She|strong=\"H7121\"* wrote|strong=\"H3789\"* in|strong=\"H3427\"* the|strong=\"H7121\"* letters|strong=\"H5612\"*, saying, “Proclaim|strong=\"H7121\"* a|strong=\"H3068\"* fast|strong=\"H6685\"*, and|strong=\"H5971\"* set|strong=\"H3427\"* Naboth|strong=\"H5022\"* on|strong=\"H3427\"* high|strong=\"H7218\"* among|strong=\"H3427\"* the|strong=\"H7121\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "Set|strong=\"H3427\"* two|strong=\"H8147\"* men|strong=\"H1121\"*, wicked|strong=\"H1100\"* fellows|strong=\"H1121\"*, before|strong=\"H5048\"* him|strong=\"H3318\"*, and|strong=\"H1121\"* let them|strong=\"H3318\"* testify|strong=\"H5749\"* against|strong=\"H5048\"* him|strong=\"H3318\"*, saying, ‘You|strong=\"H1288\"* cursed|strong=\"H1288\"* God and|strong=\"H1121\"* the|strong=\"H1288\"* king|strong=\"H4428\"*!’ Then|strong=\"H3318\"* carry|strong=\"H3318\"* him|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* stone|strong=\"H5619\"* him|strong=\"H3318\"* to|strong=\"H3318\"* death|strong=\"H4191\"*.”" + }, + { + "verseNum": 11, + "text": "The|strong=\"H6213\"* men|strong=\"H2205\"* of|strong=\"H3427\"* his|strong=\"H7971\"* city|strong=\"H5892\"*, even|strong=\"H6213\"* the|strong=\"H6213\"* elders|strong=\"H2205\"* and|strong=\"H7971\"* the|strong=\"H6213\"* nobles|strong=\"H2715\"* who|strong=\"H3427\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* his|strong=\"H7971\"* city|strong=\"H5892\"*, did|strong=\"H6213\"* as|strong=\"H6213\"* Jezebel had|strong=\"H3427\"* instructed them|strong=\"H7971\"* in|strong=\"H3427\"* the|strong=\"H6213\"* letters|strong=\"H5612\"* which|strong=\"H5892\"* she|strong=\"H5892\"* had|strong=\"H3427\"* written|strong=\"H3789\"* and|strong=\"H7971\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H5971\"* proclaimed|strong=\"H7121\"* a|strong=\"H3068\"* fast|strong=\"H6685\"*, and|strong=\"H5971\"* set|strong=\"H3427\"* Naboth|strong=\"H5022\"* on|strong=\"H3427\"* high|strong=\"H7218\"* among|strong=\"H3427\"* the|strong=\"H7121\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H1288\"* two|strong=\"H8147\"* men|strong=\"H1121\"*, the|strong=\"H1288\"* wicked|strong=\"H1100\"* fellows|strong=\"H1121\"*, came|strong=\"H3318\"* in|strong=\"H3427\"* and|strong=\"H1121\"* sat|strong=\"H3427\"* before|strong=\"H5048\"* him|strong=\"H3318\"*. The|strong=\"H1288\"* wicked|strong=\"H1100\"* fellows|strong=\"H1121\"* testified|strong=\"H5749\"* against|strong=\"H5048\"* him|strong=\"H3318\"*, even against|strong=\"H5048\"* Naboth|strong=\"H5022\"*, in|strong=\"H3427\"* the|strong=\"H1288\"* presence|strong=\"H5048\"* of|strong=\"H1121\"* the|strong=\"H1288\"* people|strong=\"H5971\"*, saying, “Naboth|strong=\"H5022\"* cursed|strong=\"H1288\"* God and|strong=\"H1121\"* the|strong=\"H1288\"* king|strong=\"H4428\"*!” Then|strong=\"H3318\"* they|strong=\"H5971\"* carried|strong=\"H3318\"* him|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H1288\"* city|strong=\"H5892\"* and|strong=\"H1121\"* stoned|strong=\"H5619\"* him|strong=\"H3318\"* to|strong=\"H3318\"* death|strong=\"H4191\"* with|strong=\"H3427\"* stones|strong=\"H5619\"*." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H7971\"* they sent|strong=\"H7971\"* to|strong=\"H4191\"* Jezebel, saying, “Naboth|strong=\"H5022\"* has been stoned|strong=\"H5619\"* and|strong=\"H7971\"* is|strong=\"H4191\"* dead|strong=\"H4191\"*.”" + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* Jezebel heard|strong=\"H8085\"* that|strong=\"H3588\"* Naboth|strong=\"H5022\"* had|strong=\"H1961\"* been|strong=\"H1961\"* stoned|strong=\"H5619\"* and|strong=\"H6965\"* was|strong=\"H1961\"* dead|strong=\"H4191\"*, Jezebel said|strong=\"H8085\"* to|strong=\"H4191\"* Ahab, “Arise|strong=\"H6965\"*, take|strong=\"H3423\"* possession|strong=\"H3423\"* of|strong=\"H4191\"* the|strong=\"H8085\"* vineyard|strong=\"H3754\"* of|strong=\"H4191\"* Naboth|strong=\"H5022\"* the|strong=\"H8085\"* Jezreelite|strong=\"H3158\"*, which|strong=\"H2416\"* he|strong=\"H3588\"* refused|strong=\"H3985\"* to|strong=\"H4191\"* give|strong=\"H5414\"* you|strong=\"H3588\"* for|strong=\"H3588\"* money|strong=\"H3701\"*; for|strong=\"H3588\"* Naboth|strong=\"H5022\"* is|strong=\"H3701\"* not|strong=\"H5414\"* alive|strong=\"H2416\"*, but|strong=\"H3588\"* dead|strong=\"H4191\"*.”" + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* Ahab heard|strong=\"H8085\"* that|strong=\"H3588\"* Naboth|strong=\"H5022\"* was|strong=\"H1961\"* dead|strong=\"H4191\"*, Ahab rose|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H3381\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H8085\"* vineyard|strong=\"H3754\"* of|strong=\"H4191\"* Naboth|strong=\"H5022\"* the|strong=\"H8085\"* Jezreelite|strong=\"H3158\"*, to|strong=\"H3381\"* take|strong=\"H3423\"* possession|strong=\"H3423\"* of|strong=\"H4191\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Elijah the|strong=\"H3068\"* Tishbite|strong=\"H8664\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 18, + "text": "“Arise|strong=\"H6965\"*, go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* meet|strong=\"H7125\"* Ahab king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, who|strong=\"H3478\"* dwells in|strong=\"H3478\"* Samaria|strong=\"H8111\"*. Behold|strong=\"H2009\"*, he|strong=\"H8033\"* is|strong=\"H2009\"* in|strong=\"H3478\"* the|strong=\"H3423\"* vineyard|strong=\"H3754\"* of|strong=\"H4428\"* Naboth|strong=\"H5022\"*, where|strong=\"H8033\"* he|strong=\"H8033\"* has|strong=\"H3478\"* gone|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* take|strong=\"H3423\"* possession|strong=\"H3423\"* of|strong=\"H4428\"* it|strong=\"H3381\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H1696\"* shall|strong=\"H3068\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H1571\"*, saying|strong=\"H1696\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Have|strong=\"H3068\"* you|strong=\"H1696\"* killed|strong=\"H7523\"* and|strong=\"H3068\"* also|strong=\"H1571\"* taken|strong=\"H3423\"* possession|strong=\"H3423\"*?”’ You|strong=\"H1696\"* shall|strong=\"H3068\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H1571\"*, saying|strong=\"H1696\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “In|strong=\"H3068\"* the|strong=\"H3541\"* place|strong=\"H4725\"* where|strong=\"H4725\"* dogs|strong=\"H3611\"* licked|strong=\"H3952\"* the|strong=\"H3541\"* blood|strong=\"H1818\"* of|strong=\"H3068\"* Naboth|strong=\"H5022\"*, dogs|strong=\"H3611\"* will|strong=\"H3068\"* lick|strong=\"H3952\"* your|strong=\"H3068\"* blood|strong=\"H1818\"*, even|strong=\"H1571\"* yours.”’”" + }, + { + "verseNum": 20, + "text": "Ahab said to|strong=\"H3068\"* Elijah, “Have|strong=\"H3068\"* you|strong=\"H6213\"* found|strong=\"H4672\"* me|strong=\"H6213\"*, my|strong=\"H3068\"* enemy?”" + }, + { + "verseNum": 21, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3478\"* bring|strong=\"H7451\"* evil|strong=\"H7451\"* on|strong=\"H7451\"* you|strong=\"H5800\"*, and|strong=\"H3478\"* will|strong=\"H3478\"* utterly|strong=\"H1197\"* sweep|strong=\"H1197\"* you|strong=\"H5800\"* away|strong=\"H1197\"* and|strong=\"H3478\"* will|strong=\"H3478\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* Ahab everyone who|strong=\"H3478\"* urinates against|strong=\"H1197\"* a|strong=\"H3068\"* wall|strong=\"H7023\"*,+ 21:21 or, male * and|strong=\"H3478\"* him|strong=\"H3772\"* who|strong=\"H3478\"* is|strong=\"H3478\"* shut|strong=\"H6113\"* up|strong=\"H6113\"* and|strong=\"H3478\"* him|strong=\"H3772\"* who|strong=\"H3478\"* is|strong=\"H3478\"* left|strong=\"H5800\"* at|strong=\"H3478\"* large in|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"H5414\"* will|strong=\"H3478\"* make|strong=\"H5414\"* your|strong=\"H5414\"* house|strong=\"H1004\"* like|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, and|strong=\"H1121\"* like|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Baasha|strong=\"H1201\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahijah, for|strong=\"H1004\"* the|strong=\"H5414\"* provocation|strong=\"H3708\"* with|strong=\"H1004\"* which|strong=\"H1004\"* you|strong=\"H5414\"* have|strong=\"H1121\"* provoked|strong=\"H3707\"* me|strong=\"H5414\"* to|strong=\"H3478\"* anger|strong=\"H3707\"*, and|strong=\"H1121\"* have|strong=\"H1121\"* made|strong=\"H5414\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2398\"*.”" + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* also|strong=\"H1571\"* spoke|strong=\"H1696\"* of|strong=\"H3068\"* Jezebel, saying|strong=\"H1696\"*, “The|strong=\"H3068\"* dogs|strong=\"H3611\"* will|strong=\"H3068\"* eat Jezebel by|strong=\"H3068\"* the|strong=\"H3068\"* rampart of|strong=\"H3068\"* Jezreel|strong=\"H3157\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H4191\"* dogs|strong=\"H3611\"* will|strong=\"H5892\"* eat he|strong=\"H5892\"* who dies|strong=\"H4191\"* of|strong=\"H5892\"* Ahab in|strong=\"H4191\"* the|strong=\"H4191\"* city|strong=\"H5892\"*; and|strong=\"H8064\"* the|strong=\"H4191\"* birds|strong=\"H5775\"* of|strong=\"H5892\"* the|strong=\"H4191\"* sky|strong=\"H8064\"* will|strong=\"H5892\"* eat he|strong=\"H5892\"* who dies|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H4191\"* field|strong=\"H7704\"*.”" + }, + { + "verseNum": 25, + "text": "But|strong=\"H7535\"* there|strong=\"H1961\"* was|strong=\"H3068\"* no|strong=\"H3808\"* one|strong=\"H3808\"* like|strong=\"H1961\"* Ahab, who|strong=\"H3068\"* sold|strong=\"H4376\"* himself|strong=\"H6213\"* to|strong=\"H3068\"* do|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, whom|strong=\"H5869\"* Jezebel his|strong=\"H3068\"* wife stirred|strong=\"H3068\"* up|strong=\"H5496\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* very|strong=\"H3966\"* abominably|strong=\"H8581\"* in|strong=\"H3478\"* following|strong=\"H3212\"* idols|strong=\"H1544\"*, according to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* the|strong=\"H3605\"* Amorites did|strong=\"H6213\"*, whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* cast|strong=\"H3068\"* out|strong=\"H3423\"* before|strong=\"H6440\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"H1961\"* Ahab heard|strong=\"H8085\"* those|strong=\"H5921\"* words|strong=\"H1697\"*, he|strong=\"H5921\"* tore|strong=\"H7167\"* his|strong=\"H7760\"* clothes, put|strong=\"H7760\"* sackcloth|strong=\"H8242\"* on|strong=\"H5921\"* his|strong=\"H7760\"* body|strong=\"H1320\"*, fasted|strong=\"H6684\"*, lay|strong=\"H7901\"* in|strong=\"H5921\"* sackcloth|strong=\"H8242\"*, and|strong=\"H1980\"* went|strong=\"H1980\"* about|strong=\"H1961\"* despondently." + }, + { + "verseNum": 28, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Elijah the|strong=\"H3068\"* Tishbite|strong=\"H8664\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 29, + "text": "“See|strong=\"H7200\"* how|strong=\"H3588\"* Ahab humbles himself|strong=\"H3665\"* before|strong=\"H6440\"* me|strong=\"H6440\"*? Because|strong=\"H3588\"* he|strong=\"H3588\"* humbles himself|strong=\"H3665\"* before|strong=\"H6440\"* me|strong=\"H6440\"*, I|strong=\"H3588\"* will|strong=\"H1121\"* not|strong=\"H3808\"* bring|strong=\"H7451\"* the|strong=\"H6440\"* evil|strong=\"H7451\"* in|strong=\"H5921\"* his|strong=\"H6440\"* days|strong=\"H3117\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1121\"* bring|strong=\"H7451\"* the|strong=\"H6440\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* his|strong=\"H6440\"* house|strong=\"H1004\"* in|strong=\"H5921\"* his|strong=\"H6440\"* son|strong=\"H1121\"*’s day|strong=\"H3117\"*.”" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "They|strong=\"H8141\"* continued|strong=\"H3427\"* three|strong=\"H7969\"* years|strong=\"H8141\"* without|strong=\"H8141\"* war|strong=\"H4421\"* between|strong=\"H4421\"* Syria and|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "In|strong=\"H8141\"* the|strong=\"H1961\"* third|strong=\"H7992\"* year|strong=\"H8141\"*, Jehoshaphat|strong=\"H3092\"* the|strong=\"H1961\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* came|strong=\"H1961\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H1961\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* his|strong=\"H3947\"* servants|strong=\"H5650\"*, “You|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"* is|strong=\"H3027\"* ours, and|strong=\"H3478\"* we|strong=\"H3068\"* do|strong=\"H3027\"* nothing|strong=\"H2814\"*, and|strong=\"H3478\"* don’t take|strong=\"H3947\"* it|strong=\"H3588\"* out|strong=\"H3947\"* of|strong=\"H4428\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria?”" + }, + { + "verseNum": 4, + "text": "He|strong=\"H3478\"* said to|strong=\"H3478\"* Jehoshaphat|strong=\"H3092\"*, “Will|strong=\"H4428\"* you|strong=\"H3644\"* go|strong=\"H3212\"* with|strong=\"H3212\"* me|strong=\"H3212\"* to|strong=\"H3478\"* battle|strong=\"H4421\"* to|strong=\"H3478\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*?”" + }, + { + "verseNum": 5, + "text": "Jehoshaphat|strong=\"H3092\"* said|strong=\"H1697\"* to|strong=\"H3478\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, “Please|strong=\"H4994\"* inquire|strong=\"H1875\"* first|strong=\"H3117\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*.”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H5414\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* gathered|strong=\"H6908\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"* together|strong=\"H6908\"*, about|strong=\"H5921\"* four hundred|strong=\"H3967\"* men|strong=\"H3478\"*, and|strong=\"H3967\"* said to|strong=\"H3478\"* them|strong=\"H5414\"*, “Should|strong=\"H3478\"* I|strong=\"H5414\"* go|strong=\"H3212\"* against|strong=\"H5921\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"* to|strong=\"H3478\"* battle|strong=\"H4421\"*, or|strong=\"H3027\"* should|strong=\"H3478\"* I|strong=\"H5414\"* refrain|strong=\"H2308\"*?”" + }, + { + "verseNum": 7, + "text": "But|strong=\"H3068\"* Jehoshaphat|strong=\"H3092\"* said, “Isn’t there|strong=\"H3068\"* here|strong=\"H6311\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3068\"* we|strong=\"H3068\"* may|strong=\"H3068\"* inquire|strong=\"H1875\"* of|strong=\"H3068\"* him|strong=\"H1875\"*?”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said|strong=\"H3651\"* to|strong=\"H3478\"* Jehoshaphat|strong=\"H3092\"*, “There|strong=\"H3068\"* is|strong=\"H3068\"* yet|strong=\"H5750\"* one|strong=\"H3808\"* man|strong=\"H1121\"* by|strong=\"H5921\"* whom|strong=\"H3588\"* we|strong=\"H3068\"* may|strong=\"H3068\"* inquire|strong=\"H1875\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, Micaiah|strong=\"H4321\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Imlah|strong=\"H3229\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* hate|strong=\"H8130\"* him|strong=\"H5921\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* does|strong=\"H3808\"* not|strong=\"H3808\"* prophesy|strong=\"H5012\"* good|strong=\"H2896\"* concerning|strong=\"H5921\"* me|strong=\"H8130\"*, but|strong=\"H3588\"* evil|strong=\"H7451\"*.”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H4428\"* the|strong=\"H7121\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* called|strong=\"H7121\"* an|strong=\"H7121\"* officer|strong=\"H5631\"*, and|strong=\"H1121\"* said|strong=\"H7121\"*, “Quickly|strong=\"H4116\"* get Micaiah|strong=\"H4321\"* the|strong=\"H7121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Imlah|strong=\"H3229\"*.”" + }, + { + "verseNum": 10, + "text": "Now|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Jehoshaphat|strong=\"H3092\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* were|strong=\"H3478\"* sitting|strong=\"H3427\"* each|strong=\"H3605\"* on|strong=\"H5921\"* his|strong=\"H3605\"* throne|strong=\"H3678\"*, arrayed|strong=\"H3847\"* in|strong=\"H3427\"* their|strong=\"H3605\"* robes, in|strong=\"H3427\"* an|strong=\"H6440\"* open|strong=\"H6440\"* place|strong=\"H1637\"* at|strong=\"H3427\"* the|strong=\"H3605\"* entrance|strong=\"H6607\"* of|strong=\"H4428\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H4428\"* Samaria|strong=\"H8111\"*; and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* were|strong=\"H3478\"* prophesying|strong=\"H5012\"* before|strong=\"H6440\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 11, + "text": "Zedekiah|strong=\"H6667\"* the|strong=\"H3541\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Chenaanah|strong=\"H3668\"* made|strong=\"H6213\"* himself|strong=\"H6213\"* horns|strong=\"H7161\"* of|strong=\"H1121\"* iron|strong=\"H1270\"*, and|strong=\"H1121\"* said, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘With|strong=\"H3068\"* these|strong=\"H6213\"* you|strong=\"H5704\"* will|strong=\"H3068\"* push|strong=\"H5055\"* the|strong=\"H3541\"* Syrians, until|strong=\"H5704\"* they|strong=\"H3068\"* are|strong=\"H1121\"* consumed|strong=\"H3615\"*.’”" + }, + { + "verseNum": 12, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* prophesied|strong=\"H5012\"* so|strong=\"H3651\"*, saying, “Go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"* and|strong=\"H3068\"* prosper|strong=\"H6743\"*; for|strong=\"H3027\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H5927\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*.”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H7121\"* messenger|strong=\"H4397\"* who|strong=\"H5030\"* went|strong=\"H1980\"* to|strong=\"H1696\"* call|strong=\"H7121\"* Micaiah|strong=\"H4321\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7121\"*, saying|strong=\"H1697\"*, “See|strong=\"H2009\"* now|strong=\"H4994\"*, the|strong=\"H7121\"* prophets|strong=\"H5030\"* declare|strong=\"H1696\"* good|strong=\"H2896\"* to|strong=\"H1696\"* the|strong=\"H7121\"* king|strong=\"H4428\"* with|strong=\"H1980\"* one|strong=\"H2896\"* mouth|strong=\"H6310\"*. Please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H1961\"* word|strong=\"H1697\"* be|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H7121\"* word|strong=\"H1697\"* of|strong=\"H4428\"* one|strong=\"H2896\"* of|strong=\"H4428\"* them|strong=\"H1992\"*, and|strong=\"H1980\"* speak|strong=\"H1696\"* good|strong=\"H2896\"*.”" + }, + { + "verseNum": 14, + "text": "Micaiah|strong=\"H4321\"* said|strong=\"H1696\"*, “As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, what|strong=\"H1696\"* Yahweh|strong=\"H3068\"* says|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* speak|strong=\"H1696\"*.”" + }, + { + "verseNum": 15, + "text": "When|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* come|strong=\"H5927\"* to|strong=\"H3068\"* the|strong=\"H5414\"* king|strong=\"H4428\"*, the|strong=\"H5414\"* king|strong=\"H4428\"* said to|strong=\"H3068\"* him|strong=\"H5414\"*, “Micaiah|strong=\"H4321\"*, shall|strong=\"H3068\"* we|strong=\"H3068\"* go|strong=\"H3212\"* to|strong=\"H3068\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"* to|strong=\"H3068\"* battle|strong=\"H4421\"*, or|strong=\"H3068\"* shall|strong=\"H3068\"* we|strong=\"H3068\"* forbear|strong=\"H2308\"*?”" + }, + { + "verseNum": 16, + "text": "The|strong=\"H3068\"* king|strong=\"H4428\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H4428\"*, “How|strong=\"H4100\"* many|strong=\"H4100\"* times|strong=\"H6471\"* do|strong=\"H3068\"* I|strong=\"H5704\"* have|strong=\"H3068\"* to|strong=\"H1696\"* adjure|strong=\"H7650\"* you|strong=\"H5704\"* that|strong=\"H3068\"* you|strong=\"H5704\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"* nothing|strong=\"H3808\"* but|strong=\"H7535\"* the|strong=\"H3068\"* truth|strong=\"H3808\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*?”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H3068\"* said, “I|strong=\"H7200\"* saw|strong=\"H7200\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* scattered|strong=\"H6327\"* on|strong=\"H7200\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*, as|strong=\"H3068\"* sheep|strong=\"H6629\"* that|strong=\"H7200\"* have|strong=\"H3068\"* no|strong=\"H3808\"* shepherd|strong=\"H7462\"*. Yahweh|strong=\"H3068\"* said, ‘These|strong=\"H1992\"* have|strong=\"H3068\"* no|strong=\"H3808\"* master. Let|strong=\"H3808\"* them|strong=\"H1992\"* each|strong=\"H3605\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H3605\"* house|strong=\"H1004\"* in|strong=\"H3478\"* peace|strong=\"H7965\"*.’”" + }, + { + "verseNum": 18, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Jehoshaphat|strong=\"H3092\"*, “Didn’t I|strong=\"H3588\"* tell you|strong=\"H3588\"* that|strong=\"H3588\"* he|strong=\"H3588\"* would|strong=\"H3478\"* not|strong=\"H3808\"* prophesy|strong=\"H5012\"* good|strong=\"H2896\"* concerning|strong=\"H5921\"* me|strong=\"H5921\"*, but|strong=\"H3588\"* evil|strong=\"H7451\"*?”" + }, + { + "verseNum": 19, + "text": "Micaiah said|strong=\"H1697\"*, “Therefore|strong=\"H3651\"* hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*. I|strong=\"H5921\"* saw|strong=\"H7200\"* Yahweh|strong=\"H3068\"* sitting|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H3605\"* throne|strong=\"H3678\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H3068\"* heaven|strong=\"H8064\"* standing|strong=\"H5975\"* by|strong=\"H5921\"* him|strong=\"H5921\"* on|strong=\"H5921\"* his|strong=\"H3605\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H3068\"* on|strong=\"H5921\"* his|strong=\"H3605\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* said, ‘Who|strong=\"H4310\"* will|strong=\"H3068\"* entice|strong=\"H6601\"* Ahab, that|strong=\"H3068\"* he|strong=\"H3068\"* may|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H3068\"* fall|strong=\"H5307\"* at|strong=\"H3068\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*?’ One|strong=\"H2088\"* said one|strong=\"H2088\"* thing|strong=\"H2088\"*, and|strong=\"H3068\"* another|strong=\"H2088\"* said another|strong=\"H2088\"*." + }, + { + "verseNum": 21, + "text": "A|strong=\"H3068\"* spirit|strong=\"H7307\"* came|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3068\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H3318\"*, ‘I|strong=\"H6440\"* will|strong=\"H3068\"* entice|strong=\"H6601\"* him|strong=\"H6440\"*.’" + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H3651\"* to|strong=\"H3318\"* him|strong=\"H6213\"*, ‘How|strong=\"H3651\"*?’" + }, + { + "verseNum": 23, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* put|strong=\"H5414\"* a|strong=\"H3068\"* lying|strong=\"H8267\"* spirit|strong=\"H7307\"* in|strong=\"H5921\"* the|strong=\"H3605\"* mouth|strong=\"H6310\"* of|strong=\"H3068\"* all|strong=\"H3605\"* these|strong=\"H1696\"* your|strong=\"H3068\"* prophets|strong=\"H5030\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* evil|strong=\"H7451\"* concerning|strong=\"H5921\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 24, + "text": "Then|strong=\"H1696\"* Zedekiah|strong=\"H6667\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Chenaanah|strong=\"H3668\"* came|strong=\"H5066\"* near|strong=\"H5066\"* and|strong=\"H1121\"* struck|strong=\"H5221\"* Micaiah|strong=\"H4321\"* on|strong=\"H5921\"* the|strong=\"H5921\"* cheek|strong=\"H3895\"*, and|strong=\"H1121\"* said|strong=\"H1696\"*, “Which|strong=\"H3068\"* way|strong=\"H2088\"* did|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* go|strong=\"H5674\"* from|strong=\"H5921\"* me|strong=\"H5921\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5921\"*?”" + }, + { + "verseNum": 25, + "text": "Micaiah|strong=\"H4321\"* said, “Behold|strong=\"H2005\"*, you|strong=\"H3117\"* will|strong=\"H3117\"* see|strong=\"H7200\"* on|strong=\"H3117\"* that|strong=\"H7200\"* day|strong=\"H3117\"* when|strong=\"H3117\"* you|strong=\"H3117\"* go into|strong=\"H7200\"* an|strong=\"H7200\"* inner|strong=\"H2315\"* room|strong=\"H2315\"* to|strong=\"H3117\"* hide|strong=\"H2247\"* yourself.”" + }, + { + "verseNum": 26, + "text": "The|strong=\"H3947\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said, “Take|strong=\"H3947\"* Micaiah|strong=\"H4321\"*, and|strong=\"H1121\"* carry|strong=\"H3947\"* him|strong=\"H7725\"* back|strong=\"H7725\"* to|strong=\"H7725\"* Amon the|strong=\"H3947\"* governor|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3947\"* city|strong=\"H5892\"* and|strong=\"H1121\"* to|strong=\"H7725\"* Joash|strong=\"H3101\"* the|strong=\"H3947\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"*." + }, + { + "verseNum": 27, + "text": "Say, ‘The|strong=\"H3541\"* king|strong=\"H4428\"* says|strong=\"H3541\"*, “Put|strong=\"H7760\"* this|strong=\"H2088\"* fellow in|strong=\"H1004\"* the|strong=\"H3541\"* prison|strong=\"H1004\"*, and|strong=\"H4428\"* feed him|strong=\"H7760\"* with|strong=\"H1004\"* bread|strong=\"H3899\"* of|strong=\"H4428\"* affliction|strong=\"H3906\"* and|strong=\"H4428\"* with|strong=\"H1004\"* water|strong=\"H4325\"* of|strong=\"H4428\"* affliction|strong=\"H3906\"*, until|strong=\"H5704\"* I|strong=\"H5704\"* come in|strong=\"H1004\"* peace|strong=\"H7965\"*.”’”" + }, + { + "verseNum": 28, + "text": "Micaiah|strong=\"H4321\"* said|strong=\"H1696\"*, “If you|strong=\"H3605\"* return|strong=\"H7725\"* at|strong=\"H3068\"* all|strong=\"H3605\"* in|strong=\"H3068\"* peace|strong=\"H7965\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* spoken|strong=\"H1696\"* by|strong=\"H3068\"* me|strong=\"H7725\"*.” He|strong=\"H3068\"* said|strong=\"H1696\"*, “Listen|strong=\"H8085\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* people|strong=\"H5971\"*!”" + }, + { + "verseNum": 29, + "text": "So|strong=\"H5927\"* the|strong=\"H5927\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Jehoshaphat|strong=\"H3092\"* the|strong=\"H5927\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H3092\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Jehoshaphat|strong=\"H3092\"*, “I|strong=\"H3478\"* will|strong=\"H4428\"* disguise|strong=\"H2664\"* myself and|strong=\"H3478\"* go|strong=\"H4428\"* into the|strong=\"H3092\"* battle|strong=\"H4421\"*, but|strong=\"H4428\"* you|strong=\"H3847\"* put|strong=\"H3847\"* on|strong=\"H3847\"* your|strong=\"H3478\"* robes.” The|strong=\"H3092\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* disguised|strong=\"H2664\"* himself and|strong=\"H3478\"* went|strong=\"H3478\"* into the|strong=\"H3092\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 31, + "text": "Now|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria had|strong=\"H3478\"* commanded|strong=\"H6680\"* the|strong=\"H3588\"* thirty-two|strong=\"H7970\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* his|strong=\"H6680\"* chariots|strong=\"H7393\"*, saying, “Don’t fight|strong=\"H3898\"* with|strong=\"H3898\"* small|strong=\"H6996\"* nor|strong=\"H3808\"* great|strong=\"H1419\"*, except|strong=\"H3588\"* only|strong=\"H3588\"* with|strong=\"H3898\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 32, + "text": "When|strong=\"H1961\"* the|strong=\"H5921\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chariots|strong=\"H7393\"* saw|strong=\"H7200\"* Jehoshaphat|strong=\"H3092\"*, they|strong=\"H1992\"* said, “Surely|strong=\"H1961\"* that|strong=\"H7200\"* is|strong=\"H1931\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*!” and|strong=\"H3478\"* they|strong=\"H1992\"* came|strong=\"H1961\"* over|strong=\"H5921\"* to|strong=\"H3478\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* him|strong=\"H5921\"*. Jehoshaphat|strong=\"H3092\"* cried|strong=\"H2199\"* out|strong=\"H2199\"*." + }, + { + "verseNum": 33, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H7200\"* chariots|strong=\"H7393\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H1931\"* was|strong=\"H1961\"* not|strong=\"H3808\"* the|strong=\"H7200\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, they|strong=\"H3588\"* turned|strong=\"H7725\"* back|strong=\"H7725\"* from|strong=\"H7725\"* pursuing him|strong=\"H7725\"*." + }, + { + "verseNum": 34, + "text": "A|strong=\"H3068\"* certain man drew|strong=\"H4900\"* his|strong=\"H5221\"* bow|strong=\"H7198\"* at|strong=\"H3478\"* random|strong=\"H8537\"*, and|strong=\"H3478\"* struck|strong=\"H5221\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* between|strong=\"H4480\"* the|strong=\"H3588\"* joints|strong=\"H1694\"* of|strong=\"H4428\"* the|strong=\"H3588\"* armor|strong=\"H8302\"*. Therefore|strong=\"H3588\"* he|strong=\"H3588\"* said|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3588\"* driver|strong=\"H7395\"* of|strong=\"H4428\"* his|strong=\"H5221\"* chariot|strong=\"H7395\"*, “Turn|strong=\"H2015\"* around|strong=\"H3027\"*, and|strong=\"H3478\"* carry|strong=\"H3318\"* me|strong=\"H4480\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H3588\"* battle|strong=\"H4264\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H2470\"* severely|strong=\"H2470\"* wounded|strong=\"H5221\"*.”" + }, + { + "verseNum": 35, + "text": "The|strong=\"H3117\"* battle|strong=\"H4421\"* increased|strong=\"H5927\"* that|strong=\"H3117\"* day|strong=\"H3117\"*. The|strong=\"H3117\"* king|strong=\"H4428\"* was|strong=\"H1961\"* propped|strong=\"H5975\"* up|strong=\"H5927\"* in|strong=\"H4428\"* his|strong=\"H1961\"* chariot|strong=\"H7393\"* facing the|strong=\"H3117\"* Syrians, and|strong=\"H4428\"* died|strong=\"H4191\"* at|strong=\"H4421\"* evening|strong=\"H6153\"*. The|strong=\"H3117\"* blood|strong=\"H1818\"* ran|strong=\"H1818\"* out|strong=\"H3332\"* of|strong=\"H4428\"* the|strong=\"H3117\"* wound|strong=\"H4347\"* into|strong=\"H5927\"* the|strong=\"H3117\"* bottom|strong=\"H2436\"* of|strong=\"H4428\"* the|strong=\"H3117\"* chariot|strong=\"H7393\"*." + }, + { + "verseNum": 36, + "text": "A|strong=\"H3068\"* cry|strong=\"H7440\"* went|strong=\"H5674\"* throughout|strong=\"H5674\"* the|strong=\"H5674\"* army|strong=\"H4264\"* about|strong=\"H5892\"* the|strong=\"H5674\"* going|strong=\"H5674\"* down of|strong=\"H5892\"* the|strong=\"H5674\"* sun|strong=\"H8121\"*, saying, “Every|strong=\"H5892\"* man|strong=\"H5674\"* to|strong=\"H5674\"* his|strong=\"H5674\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* every|strong=\"H5892\"* man|strong=\"H5674\"* to|strong=\"H5674\"* his|strong=\"H5674\"* country!”" + }, + { + "verseNum": 37, + "text": "So|strong=\"H4191\"* the|strong=\"H4191\"* king|strong=\"H4428\"* died|strong=\"H4191\"*, and|strong=\"H4428\"* was|strong=\"H4428\"* brought|strong=\"H4428\"* to|strong=\"H4191\"* Samaria|strong=\"H8111\"*; and|strong=\"H4428\"* they|strong=\"H4428\"* buried|strong=\"H6912\"* the|strong=\"H4191\"* king|strong=\"H4428\"* in|strong=\"H4428\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 38, + "text": "They|strong=\"H3068\"* washed|strong=\"H7364\"* the|strong=\"H5921\"* chariot|strong=\"H7393\"* by|strong=\"H5921\"* the|strong=\"H5921\"* pool|strong=\"H1295\"* of|strong=\"H3068\"* Samaria|strong=\"H8111\"*; and|strong=\"H3068\"* the|strong=\"H5921\"* dogs|strong=\"H3611\"* licked|strong=\"H3952\"* up|strong=\"H5921\"* his|strong=\"H3068\"* blood|strong=\"H1818\"* where|strong=\"H5921\"* the|strong=\"H5921\"* prostitutes|strong=\"H2185\"* washed|strong=\"H7364\"* themselves|strong=\"H7364\"*, according|strong=\"H5921\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"*." + }, + { + "verseNum": 39, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Ahab, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* ivory|strong=\"H8127\"* house|strong=\"H1004\"* which|strong=\"H1992\"* he|strong=\"H3117\"* built|strong=\"H1129\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* that|strong=\"H3605\"* he|strong=\"H3117\"* built|strong=\"H1129\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 40, + "text": "So Ahab slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers; and|strong=\"H1121\"* Ahaziah his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H4427\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 41, + "text": "Jehoshaphat|strong=\"H3092\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asa began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Judah|strong=\"H3063\"* in|strong=\"H5921\"* the|strong=\"H5921\"* fourth year|strong=\"H8141\"* of|strong=\"H1121\"* Ahab king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 42, + "text": "Jehoshaphat|strong=\"H3092\"* was|strong=\"H8034\"* thirty-five|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H2568\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*; and|strong=\"H1121\"* he|strong=\"H2568\"* reigned|strong=\"H4427\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H3092\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Azubah|strong=\"H5806\"* the|strong=\"H3092\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Shilhi|strong=\"H7977\"*." + }, + { + "verseNum": 43, + "text": "He|strong=\"H6213\"* walked|strong=\"H3212\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H3068\"* Asa his|strong=\"H3605\"* father. He|strong=\"H6213\"* didn’t turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* it|strong=\"H6213\"*, doing|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*. However, the|strong=\"H3605\"* high|strong=\"H6213\"* places|strong=\"H3605\"* were|strong=\"H5869\"* not|strong=\"H3808\"* taken|strong=\"H5493\"* away|strong=\"H5493\"*. The|strong=\"H3605\"* people|strong=\"H3808\"* still sacrificed|strong=\"H6213\"* and|strong=\"H3068\"* burned incense on|strong=\"H1870\"* the|strong=\"H3605\"* high|strong=\"H6213\"* places|strong=\"H3605\"*." + }, + { + "verseNum": 44, + "text": "Jehoshaphat made|strong=\"H2076\"* peace|strong=\"H2076\"* with|strong=\"H5971\"* the|strong=\"H5493\"* king of|strong=\"H5971\"* Israel|strong=\"H5971\"*." + }, + { + "verseNum": 45, + "text": "Now|strong=\"H3478\"* the|strong=\"H5973\"* rest of|strong=\"H4428\"* the|strong=\"H5973\"* acts of|strong=\"H4428\"* Jehoshaphat|strong=\"H3092\"*, and|strong=\"H3478\"* his|strong=\"H3478\"* might|strong=\"H3478\"* that|strong=\"H3478\"* he|strong=\"H3478\"* showed, and|strong=\"H3478\"* how he|strong=\"H3478\"* fought, aren’t they|strong=\"H3478\"* written in|strong=\"H3478\"* the|strong=\"H5973\"* book of|strong=\"H4428\"* the|strong=\"H5973\"* chronicles of|strong=\"H4428\"* the|strong=\"H5973\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah?" + }, + { + "verseNum": 46, + "text": "The|strong=\"H5921\"* remnant|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* sodomites, that|strong=\"H3117\"* remained in|strong=\"H5921\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H4428\"* his|strong=\"H5921\"* father Asa, he|strong=\"H3117\"* put|strong=\"H6213\"* away out|strong=\"H5921\"* of|strong=\"H4428\"* the|strong=\"H5921\"* land." + }, + { + "verseNum": 47, + "text": "There|strong=\"H3117\"* was|strong=\"H3117\"* no|strong=\"H4480\"* king in|strong=\"H3117\"* Edom. A|strong=\"H3068\"* deputy ruled." + }, + { + "verseNum": 48, + "text": "Jehoshaphat made ships of|strong=\"H4428\"* Tarshish to|strong=\"H4428\"* go|strong=\"H4428\"* to|strong=\"H4428\"* Ophir for|strong=\"H4428\"* gold, but|strong=\"H4428\"* they|strong=\"H4428\"* didn’t go|strong=\"H4428\"*, for|strong=\"H4428\"* the|strong=\"H5324\"* ships wrecked at|strong=\"H4428\"* Ezion Geber." + }, + { + "verseNum": 49, + "text": "Then|strong=\"H1980\"* Ahaziah the|strong=\"H3588\"* son of|strong=\"H2091\"* Ahab said to|strong=\"H1980\"* Jehoshaphat|strong=\"H3092\"*, “Let|strong=\"H3808\"* my|strong=\"H3588\"* servants go|strong=\"H1980\"* with|strong=\"H1980\"* your|strong=\"H3588\"* servants in|strong=\"H1980\"* the|strong=\"H3588\"* ships.” But|strong=\"H3588\"* Jehoshaphat|strong=\"H3092\"* would|strong=\"H1980\"* not|strong=\"H3808\"*." + }, + { + "verseNum": 50, + "text": "Jehoshaphat|strong=\"H3092\"* slept with|strong=\"H5973\"* his|strong=\"H3808\"* fathers, and|strong=\"H1121\"* was|strong=\"H1121\"* buried with|strong=\"H5973\"* his|strong=\"H3808\"* fathers in|strong=\"H3212\"* his|strong=\"H3808\"* father|strong=\"H1121\"* David|strong=\"H5973\"*’s city. Jehoram his|strong=\"H3808\"* son|strong=\"H1121\"* reigned in|strong=\"H3212\"* his|strong=\"H3808\"* place." + }, + { + "verseNum": 51, + "text": "Ahaziah the|strong=\"H8478\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahab began to|strong=\"H1121\"* reign|strong=\"H4427\"* over|strong=\"H4427\"* Israel in|strong=\"H6912\"* Samaria in|strong=\"H6912\"* the|strong=\"H8478\"* seventeenth year|strong=\"H1121\"* of|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"* king|strong=\"H4427\"* of|strong=\"H1121\"* Judah, and|strong=\"H1121\"* he|strong=\"H1732\"* reigned|strong=\"H4427\"* two|strong=\"H4427\"* years over|strong=\"H4427\"* Israel." + }, + { + "verseNum": 52, + "text": "He|strong=\"H5921\"* did|strong=\"H3478\"* that|strong=\"H3478\"* which|strong=\"H3478\"* was|strong=\"H3478\"* evil in|strong=\"H8141\"* Yahweh|strong=\"H3068\"*’s sight, and|strong=\"H1121\"* walked in|strong=\"H8141\"* the|strong=\"H5921\"* way|strong=\"H5921\"* of|strong=\"H1121\"* his|strong=\"H5921\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* in|strong=\"H8141\"* the|strong=\"H5921\"* way|strong=\"H5921\"* of|strong=\"H1121\"* his|strong=\"H5921\"* mother, and|strong=\"H1121\"* in|strong=\"H8141\"* the|strong=\"H5921\"* way|strong=\"H5921\"* of|strong=\"H1121\"* Jeroboam the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat, in|strong=\"H8141\"* which|strong=\"H3478\"* he|strong=\"H5921\"* made|strong=\"H4427\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin." + }, + { + "verseNum": 53, + "text": "He|strong=\"H6213\"* served|strong=\"H6213\"* Baal and|strong=\"H1121\"* worshiped him|strong=\"H6213\"*, and|strong=\"H1121\"* provoked Yahweh|strong=\"H3068\"*, the|strong=\"H6213\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* anger in|strong=\"H3478\"* all|strong=\"H6213\"* the|strong=\"H6213\"* ways|strong=\"H1870\"* that|strong=\"H3068\"* his|strong=\"H3068\"* father|strong=\"H1121\"* had|strong=\"H3068\"* done|strong=\"H6213\"* so|strong=\"H6213\"*." + } + ] + } + ] + }, + { + "name": "2 Kings", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Moab|strong=\"H4124\"* rebelled|strong=\"H6586\"* against|strong=\"H6586\"* Israel|strong=\"H3478\"* after the|strong=\"H3478\"* death|strong=\"H4194\"* of|strong=\"H4194\"* Ahab." + }, + { + "verseNum": 2, + "text": "Ahaziah fell|strong=\"H5307\"* down|strong=\"H5307\"* through|strong=\"H1157\"* the|strong=\"H7971\"* lattice|strong=\"H7639\"* in|strong=\"H3212\"* his|strong=\"H7971\"* upper|strong=\"H5944\"* room|strong=\"H5944\"* that|strong=\"H4397\"* was|strong=\"H2088\"* in|strong=\"H3212\"* Samaria|strong=\"H8111\"*, and|strong=\"H7971\"* was|strong=\"H2088\"* sick|strong=\"H2470\"*. So|strong=\"H7971\"* he|strong=\"H7971\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"*, and|strong=\"H7971\"* said to|strong=\"H3212\"* them|strong=\"H7971\"*, “Go|strong=\"H3212\"*, inquire|strong=\"H1875\"* of|strong=\"H4397\"* Baal Zebub, the|strong=\"H7971\"* god|strong=\"H7971\"* of|strong=\"H4397\"* Ekron|strong=\"H6138\"*, whether I|strong=\"H2088\"* will|strong=\"H5307\"* recover|strong=\"H2421\"* of|strong=\"H4397\"* this|strong=\"H2088\"* sickness|strong=\"H2483\"*.”" + }, + { + "verseNum": 3, + "text": "But|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s+ 1:3 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* angel|strong=\"H4397\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Elijah|strong=\"H1696\"* the|strong=\"H3068\"* Tishbite|strong=\"H8664\"*, “Arise|strong=\"H6965\"*, go|strong=\"H1980\"* up|strong=\"H5927\"* to|strong=\"H1696\"* meet|strong=\"H7125\"* the|strong=\"H3068\"* messengers|strong=\"H4397\"* of|strong=\"H4428\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Samaria|strong=\"H8111\"*, and|strong=\"H1980\"* tell|strong=\"H1696\"* them|strong=\"H5927\"*, ‘Is|strong=\"H3068\"* it|strong=\"H5927\"* because|strong=\"H1097\"* there|strong=\"H5927\"* is|strong=\"H3068\"* no|strong=\"H1097\"* God|strong=\"H3068\"*+ 1:3 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* in|strong=\"H1980\"* Israel|strong=\"H3478\"* that|strong=\"H3068\"* you|strong=\"H1696\"* go|strong=\"H1980\"* to|strong=\"H1696\"* inquire|strong=\"H1875\"* of|strong=\"H4428\"* Baal Zebub, the|strong=\"H3068\"* god|strong=\"H3068\"* of|strong=\"H4428\"* Ekron|strong=\"H6138\"*?" + }, + { + "verseNum": 4, + "text": "Now|strong=\"H3588\"* therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “You|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H5927\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H3588\"* bed|strong=\"H4296\"* where|strong=\"H8033\"* you|strong=\"H3588\"* have|strong=\"H3068\"* gone|strong=\"H5927\"* up|strong=\"H5927\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*.”’” Then|strong=\"H3651\"* Elijah departed|strong=\"H3212\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H7725\"* messengers|strong=\"H4397\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H7725\"*, and|strong=\"H7725\"* he|strong=\"H4397\"* said to|strong=\"H7725\"* them|strong=\"H7725\"*, “Why|strong=\"H4100\"* is|strong=\"H2088\"* it|strong=\"H7725\"* that|strong=\"H4397\"* you|strong=\"H7725\"* have|strong=\"H2088\"* returned|strong=\"H7725\"*?”" + }, + { + "verseNum": 6, + "text": "They|strong=\"H3588\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7971\"*, “A|strong=\"H3068\"* man|strong=\"H4191\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H1696\"* meet|strong=\"H7125\"* us|strong=\"H7725\"*, and|strong=\"H3478\"* said|strong=\"H1696\"* to|strong=\"H1696\"* us|strong=\"H7725\"*, ‘Go|strong=\"H3212\"*, return|strong=\"H7725\"* to|strong=\"H1696\"* the|strong=\"H3588\"* king|strong=\"H4428\"* who|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H3588\"*, and|strong=\"H3478\"* tell|strong=\"H1696\"* him|strong=\"H7971\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Is|strong=\"H3068\"* it|strong=\"H3588\"* because|strong=\"H3588\"* there|strong=\"H8033\"* is|strong=\"H3068\"* no|strong=\"H3808\"* God|strong=\"H3068\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* that|strong=\"H3588\"* you|strong=\"H3588\"* send|strong=\"H7971\"* to|strong=\"H1696\"* inquire|strong=\"H1875\"* of|strong=\"H4428\"* Baal Zebub, the|strong=\"H3588\"* god|strong=\"H3068\"* of|strong=\"H4428\"* Ekron|strong=\"H6138\"*? Therefore|strong=\"H3651\"* you|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H5927\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H3588\"* bed|strong=\"H4296\"* where|strong=\"H8033\"* you|strong=\"H3588\"* have|strong=\"H3068\"* gone|strong=\"H5927\"* up|strong=\"H5927\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*.’”’”" + }, + { + "verseNum": 7, + "text": "He|strong=\"H1696\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5927\"*, “What|strong=\"H4100\"* kind|strong=\"H4941\"* of|strong=\"H1697\"* man was|strong=\"H1697\"* he|strong=\"H1696\"* who|strong=\"H4100\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H1696\"* meet|strong=\"H7125\"* you|strong=\"H4100\"* and|strong=\"H4941\"* told|strong=\"H1696\"* you|strong=\"H4100\"* these|strong=\"H1696\"* words|strong=\"H1697\"*?”" + }, + { + "verseNum": 8, + "text": "They|strong=\"H1931\"* answered him|strong=\"H1931\"*, “He|strong=\"H1931\"* was|strong=\"H1931\"* a|strong=\"H3068\"* hairy|strong=\"H8181\"* man|strong=\"H1167\"*, and|strong=\"H4975\"* wearing a|strong=\"H3068\"* leather|strong=\"H5785\"* belt around his|strong=\"H1931\"* waist|strong=\"H4975\"*.”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H1696\"* the|strong=\"H5921\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* a|strong=\"H3068\"* captain|strong=\"H8269\"* of|strong=\"H4428\"* fifty|strong=\"H2572\"* with|strong=\"H1696\"* his|strong=\"H7971\"* fifty|strong=\"H2572\"* to|strong=\"H1696\"* him|strong=\"H5921\"*. He|strong=\"H5921\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H1696\"* him|strong=\"H5921\"*; and|strong=\"H7971\"* behold|strong=\"H2009\"*,+ 1:9 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* he|strong=\"H5921\"* was|strong=\"H4428\"* sitting|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H4428\"* the|strong=\"H5921\"* hill|strong=\"H2022\"*. He|strong=\"H5921\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*, “Man|strong=\"H7218\"* of|strong=\"H4428\"* God|strong=\"H7971\"*, the|strong=\"H5921\"* king|strong=\"H4428\"* has|strong=\"H4428\"* said|strong=\"H1696\"*, ‘Come|strong=\"H5927\"* down|strong=\"H3381\"*!’”" + }, + { + "verseNum": 10, + "text": "Elijah|strong=\"H1696\"* answered|strong=\"H6030\"* to|strong=\"H1696\"* the|strong=\"H4480\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* fifty|strong=\"H2572\"*, “If I|strong=\"H4480\"* am a|strong=\"H3068\"* man|strong=\"H6030\"* of|strong=\"H8269\"* God|strong=\"H8064\"*, then|strong=\"H6030\"* let|strong=\"H3381\"* fire come|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H4480\"* sky|strong=\"H8064\"* and|strong=\"H6030\"* consume you|strong=\"H4480\"* and|strong=\"H6030\"* your|strong=\"H4480\"* fifty|strong=\"H2572\"*!” Then|strong=\"H6030\"* fire came|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H4480\"* sky|strong=\"H8064\"*, and|strong=\"H6030\"* consumed him|strong=\"H3381\"* and|strong=\"H6030\"* his|strong=\"H4480\"* fifty|strong=\"H2572\"*." + }, + { + "verseNum": 11, + "text": "Again|strong=\"H7725\"* he|strong=\"H7971\"* sent|strong=\"H7971\"* to|strong=\"H1696\"* him|strong=\"H7971\"* another captain|strong=\"H8269\"* of|strong=\"H4428\"* fifty|strong=\"H2572\"* with|strong=\"H1696\"* his|strong=\"H7971\"* fifty|strong=\"H2572\"*. He|strong=\"H7971\"* answered|strong=\"H6030\"* him|strong=\"H7971\"*, “Man|strong=\"H6030\"* of|strong=\"H4428\"* God|strong=\"H7971\"*, the|strong=\"H3541\"* king|strong=\"H4428\"* has|strong=\"H4428\"* said|strong=\"H1696\"*, ‘Come|strong=\"H3381\"* down|strong=\"H3381\"* quickly|strong=\"H4120\"*!’”" + }, + { + "verseNum": 12, + "text": "Elijah|strong=\"H1696\"* answered|strong=\"H6030\"* them|strong=\"H3381\"*, “If I|strong=\"H4480\"* am a|strong=\"H3068\"* man|strong=\"H6030\"* of|strong=\"H4480\"* God|strong=\"H8064\"*, then|strong=\"H6030\"* let|strong=\"H3381\"* fire come|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H4480\"* sky|strong=\"H8064\"* and|strong=\"H6030\"* consume you|strong=\"H4480\"* and|strong=\"H6030\"* your|strong=\"H4480\"* fifty|strong=\"H2572\"*!” Then|strong=\"H6030\"* God|strong=\"H8064\"*’s fire came|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H4480\"* sky|strong=\"H8064\"*, and|strong=\"H6030\"* consumed him|strong=\"H3381\"* and|strong=\"H6030\"* his|strong=\"H4480\"* fifty|strong=\"H2572\"*." + }, + { + "verseNum": 13, + "text": "Again|strong=\"H7725\"* he|strong=\"H5921\"* sent|strong=\"H7971\"* the|strong=\"H5921\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* a|strong=\"H3068\"* third|strong=\"H7992\"* fifty|strong=\"H2572\"* with|strong=\"H1696\"* his|strong=\"H7971\"* fifty|strong=\"H2572\"*. The|strong=\"H5921\"* third|strong=\"H7992\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* fifty|strong=\"H2572\"* went|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H7971\"* came|strong=\"H5927\"* and|strong=\"H7971\"* fell|strong=\"H5927\"* on|strong=\"H5921\"* his|strong=\"H7971\"* knees|strong=\"H1290\"* before|strong=\"H5048\"* Elijah|strong=\"H1696\"*, and|strong=\"H7971\"* begged|strong=\"H2603\"* him|strong=\"H5921\"*, and|strong=\"H7971\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*, “Man|strong=\"H5315\"* of|strong=\"H8269\"* God|strong=\"H7971\"*, please|strong=\"H4994\"* let|strong=\"H7971\"* my|strong=\"H5921\"* life|strong=\"H5315\"* and|strong=\"H7971\"* the|strong=\"H5921\"* life|strong=\"H5315\"* of|strong=\"H8269\"* these|strong=\"H1696\"* fifty|strong=\"H2572\"* of|strong=\"H8269\"* your|strong=\"H5921\"* servants|strong=\"H5650\"* be|strong=\"H5315\"* precious|strong=\"H3365\"* in|strong=\"H5921\"* your|strong=\"H5921\"* sight|strong=\"H5869\"*." + }, + { + "verseNum": 14, + "text": "Behold|strong=\"H2009\"*, fire came|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H4480\"* sky|strong=\"H8064\"* and|strong=\"H8064\"* consumed the|strong=\"H4480\"* last two|strong=\"H8147\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* fifty|strong=\"H2572\"* with|strong=\"H3381\"* their|strong=\"H8064\"* fifties|strong=\"H2572\"*. But|strong=\"H2009\"* now|strong=\"H6258\"* let|strong=\"H3381\"* my|strong=\"H4480\"* life|strong=\"H5315\"* be|strong=\"H5315\"* precious|strong=\"H3365\"* in|strong=\"H5315\"* your|strong=\"H4480\"* sight|strong=\"H5869\"*.”" + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Elijah|strong=\"H1696\"*, “Go|strong=\"H3381\"* down|strong=\"H3381\"* with|strong=\"H3068\"* him|strong=\"H6440\"*. Don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"* of|strong=\"H4428\"* him|strong=\"H6440\"*.”" + }, + { + "verseNum": 16, + "text": "He|strong=\"H3588\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7971\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H1696\"* inquire|strong=\"H1875\"* of|strong=\"H3068\"* Baal Zebub, the|strong=\"H3588\"* god|strong=\"H3068\"* of|strong=\"H3068\"* Ekron|strong=\"H6138\"*, is|strong=\"H3068\"* it|strong=\"H3588\"* because|strong=\"H3588\"* there|strong=\"H8033\"* is|strong=\"H3068\"* no|strong=\"H3808\"* God|strong=\"H3068\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* to|strong=\"H1696\"* inquire|strong=\"H1875\"* of|strong=\"H3068\"* his|strong=\"H3068\"* word|strong=\"H1697\"*? Therefore|strong=\"H3651\"* you|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H5927\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H3588\"* bed|strong=\"H4296\"* where|strong=\"H8033\"* you|strong=\"H3588\"* have|strong=\"H3068\"* gone|strong=\"H5927\"* up|strong=\"H5927\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*.’”" + }, + { + "verseNum": 17, + "text": "So|strong=\"H1961\"* he|strong=\"H3588\"* died|strong=\"H4191\"* according to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H3068\"* Elijah|strong=\"H1696\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"*. Jehoram|strong=\"H3088\"* began|strong=\"H3063\"* to|strong=\"H1696\"* reign|strong=\"H4427\"* in|strong=\"H8141\"* his|strong=\"H3068\"* place|strong=\"H8478\"* in|strong=\"H8141\"* the|strong=\"H3588\"* second|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Jehoram|strong=\"H3088\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3068\"* no|strong=\"H3808\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Ahaziah which|strong=\"H1992\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* about|strong=\"H1961\"* to|strong=\"H3212\"* take|strong=\"H1961\"* Elijah up|strong=\"H5927\"* by|strong=\"H3068\"* a|strong=\"H3068\"* whirlwind|strong=\"H5591\"* into|strong=\"H5927\"* heaven|strong=\"H8064\"*, Elijah went|strong=\"H3212\"* with|strong=\"H3068\"* Elisha from|strong=\"H4480\"* Gilgal|strong=\"H1537\"*." + }, + { + "verseNum": 2, + "text": "Elijah said to|strong=\"H5704\"* Elisha|strong=\"H3427\"*, “Please|strong=\"H4994\"* wait|strong=\"H3427\"* here|strong=\"H6311\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H4994\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Bethel|strong=\"H1008\"*.”" + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"* who|strong=\"H3068\"* were|strong=\"H1121\"* at|strong=\"H5921\"* Bethel|strong=\"H1008\"* came|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* Elisha, and|strong=\"H1121\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H5921\"*, “Do|strong=\"H3068\"* you|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* take|strong=\"H3947\"* away|strong=\"H3947\"* your|strong=\"H3068\"* master from|strong=\"H3318\"* over|strong=\"H5921\"* you|strong=\"H3588\"* today|strong=\"H3117\"*?”" + }, + { + "verseNum": 4, + "text": "Elijah said to|strong=\"H3068\"* him|strong=\"H7971\"*, “Elisha|strong=\"H3427\"*, please|strong=\"H4994\"* wait|strong=\"H3427\"* here|strong=\"H6311\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H4994\"* to|strong=\"H3068\"* Jericho|strong=\"H3405\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"* who|strong=\"H3068\"* were|strong=\"H1121\"* at|strong=\"H5921\"* Jericho|strong=\"H3405\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3068\"* Elisha, and|strong=\"H1121\"* said to|strong=\"H3068\"* him|strong=\"H5921\"*, “Do|strong=\"H3068\"* you|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* take|strong=\"H3947\"* away|strong=\"H3947\"* your|strong=\"H3068\"* master from|strong=\"H5921\"* over|strong=\"H5921\"* you|strong=\"H3588\"* today|strong=\"H3117\"*?”" + }, + { + "verseNum": 6, + "text": "Elijah said to|strong=\"H3212\"* him|strong=\"H7971\"*, “Please|strong=\"H4994\"* wait|strong=\"H3427\"* here|strong=\"H6311\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H4994\"* to|strong=\"H3212\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"*.”" + }, + { + "verseNum": 7, + "text": "Fifty|strong=\"H2572\"* men|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"* went|strong=\"H1980\"* and|strong=\"H1121\"* stood|strong=\"H5975\"* opposite|strong=\"H5048\"* them|strong=\"H5921\"* at|strong=\"H5921\"* a|strong=\"H3068\"* distance|strong=\"H7350\"*; and|strong=\"H1121\"* they|strong=\"H5921\"* both|strong=\"H8147\"* stood|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 8, + "text": "Elijah took|strong=\"H3947\"* his|strong=\"H3947\"* mantle, and|strong=\"H8147\"* rolled|strong=\"H5674\"* it|strong=\"H5221\"* up|strong=\"H3947\"*, and|strong=\"H8147\"* struck|strong=\"H5221\"* the|strong=\"H3947\"* waters|strong=\"H4325\"*; and|strong=\"H8147\"* they|strong=\"H5221\"* were|strong=\"H4325\"* divided|strong=\"H2673\"* here|strong=\"H2008\"* and|strong=\"H8147\"* there|strong=\"H2008\"*, so|strong=\"H3947\"* that|strong=\"H4325\"* they|strong=\"H5221\"* both|strong=\"H8147\"* went|strong=\"H5674\"* over|strong=\"H5674\"* on|strong=\"H5674\"* dry|strong=\"H2724\"* ground|strong=\"H2724\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"H1961\"* they|strong=\"H2962\"* had|strong=\"H1961\"* gone|strong=\"H5674\"* over|strong=\"H5674\"*, Elijah said|strong=\"H6310\"* to|strong=\"H1961\"* Elisha, “Ask|strong=\"H7592\"* what|strong=\"H4100\"* I|strong=\"H2962\"* shall|strong=\"H6310\"* do|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H3947\"*, before|strong=\"H2962\"* I|strong=\"H2962\"* am|strong=\"H1961\"* taken|strong=\"H3947\"* from|strong=\"H3947\"* you|strong=\"H3947\"*.”" + }, + { + "verseNum": 10, + "text": "He|strong=\"H3651\"* said|strong=\"H3651\"*, “You|strong=\"H3947\"* have|strong=\"H1961\"* asked|strong=\"H7592\"* a|strong=\"H3068\"* hard|strong=\"H7185\"* thing|strong=\"H7185\"*. If|strong=\"H7200\"* you|strong=\"H3947\"* see|strong=\"H7200\"* me|strong=\"H7200\"* when|strong=\"H1961\"* I|strong=\"H3651\"* am|strong=\"H1961\"* taken|strong=\"H3947\"* from|strong=\"H3947\"* you|strong=\"H3947\"*, it|strong=\"H3651\"* will|strong=\"H1961\"* be|strong=\"H1961\"* so|strong=\"H3651\"* for|strong=\"H7592\"* you|strong=\"H3947\"*; but|strong=\"H3808\"* if|strong=\"H7200\"* not|strong=\"H3808\"*, it|strong=\"H3651\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* so|strong=\"H3651\"*.”" + }, + { + "verseNum": 11, + "text": "As|strong=\"H1961\"* they|strong=\"H1992\"* continued|strong=\"H1980\"* on|strong=\"H1980\"* and|strong=\"H1980\"* talked|strong=\"H1696\"*, behold|strong=\"H2009\"*, a|strong=\"H3068\"* chariot|strong=\"H7393\"* of|strong=\"H7393\"* fire and|strong=\"H1980\"* horses|strong=\"H5483\"* of|strong=\"H7393\"* fire separated|strong=\"H6504\"* them|strong=\"H1992\"*; and|strong=\"H1980\"* Elijah|strong=\"H1696\"* went|strong=\"H1980\"* up|strong=\"H5927\"* by|strong=\"H1980\"* a|strong=\"H3068\"* whirlwind|strong=\"H5591\"* into|strong=\"H1980\"* heaven|strong=\"H8064\"*." + }, + { + "verseNum": 12, + "text": "Elisha saw|strong=\"H7200\"* it|strong=\"H1931\"*, and|strong=\"H3478\"* he|strong=\"H1931\"* cried|strong=\"H6817\"*, “My|strong=\"H7200\"* father, my|strong=\"H7200\"* father, the|strong=\"H7200\"* chariots|strong=\"H7393\"* of|strong=\"H7393\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* its|strong=\"H3808\"* horsemen|strong=\"H6571\"*!”" + }, + { + "verseNum": 13, + "text": "He|strong=\"H5921\"* also took|strong=\"H5975\"* up|strong=\"H7311\"* Elijah’s mantle that|strong=\"H5307\"* fell|strong=\"H5307\"* from|strong=\"H7725\"* him|strong=\"H5921\"*, and|strong=\"H7725\"* went|strong=\"H7725\"* back|strong=\"H7725\"* and|strong=\"H7725\"* stood|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H5921\"* bank|strong=\"H8193\"* of|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H1931\"* took|strong=\"H3947\"* Elijah’s mantle that|strong=\"H1931\"* fell|strong=\"H5307\"* from|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3068\"* struck|strong=\"H5221\"* the|strong=\"H5921\"* waters|strong=\"H4325\"*, and|strong=\"H3068\"* said, “Where|strong=\"H5921\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Elijah?” When|strong=\"H3068\"* he|strong=\"H1931\"* also|strong=\"H3068\"* had|strong=\"H3068\"* struck|strong=\"H5221\"* the|strong=\"H5921\"* waters|strong=\"H4325\"*, they|strong=\"H3068\"* were|strong=\"H4325\"* divided|strong=\"H2673\"* apart|strong=\"H5674\"*, and|strong=\"H3068\"* Elisha went|strong=\"H5674\"* over|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H7200\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"* who|strong=\"H1121\"* were|strong=\"H1121\"* at|strong=\"H5921\"* Jericho|strong=\"H3405\"* facing|strong=\"H5921\"* him|strong=\"H5921\"* saw|strong=\"H7200\"* him|strong=\"H5921\"*, they|strong=\"H5921\"* said, “The|strong=\"H5921\"* spirit|strong=\"H7307\"* of|strong=\"H1121\"* Elijah rests|strong=\"H5117\"* on|strong=\"H5921\"* Elisha.” They|strong=\"H5921\"* came|strong=\"H7307\"* to|strong=\"H5921\"* meet|strong=\"H7125\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* bowed|strong=\"H7812\"* themselves|strong=\"H7812\"* to|strong=\"H5921\"* the|strong=\"H5921\"* ground before|strong=\"H5048\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H7971\"*, “See|strong=\"H2009\"* now|strong=\"H4994\"*, there|strong=\"H3426\"* are|strong=\"H1121\"* with|strong=\"H3068\"* your|strong=\"H3068\"* servants|strong=\"H5650\"* fifty|strong=\"H2572\"* strong|strong=\"H2428\"* men|strong=\"H1121\"*. Please|strong=\"H4994\"* let|strong=\"H7971\"* them|strong=\"H7971\"* go|strong=\"H3212\"* and|strong=\"H1121\"* seek|strong=\"H1245\"* your|strong=\"H3068\"* master. Perhaps|strong=\"H5375\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* has|strong=\"H3068\"* taken|strong=\"H5375\"* him|strong=\"H7971\"* up|strong=\"H5375\"*, and|strong=\"H1121\"* put|strong=\"H7971\"* him|strong=\"H7971\"* on|strong=\"H3068\"* some|strong=\"H2009\"* mountain|strong=\"H2022\"* or|strong=\"H3808\"* into|strong=\"H3212\"* some|strong=\"H2009\"* valley|strong=\"H1516\"*.”" + }, + { + "verseNum": 17, + "text": "When|strong=\"H3117\"* they|strong=\"H3117\"* urged|strong=\"H6484\"* him|strong=\"H7971\"* until|strong=\"H5704\"* he|strong=\"H3117\"* was|strong=\"H3117\"* ashamed, he|strong=\"H3117\"* said, “Send|strong=\"H7971\"* them|strong=\"H7971\"*.”" + }, + { + "verseNum": 18, + "text": "They|strong=\"H3808\"* came|strong=\"H3212\"* back|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H7725\"* while|strong=\"H1931\"* he|strong=\"H1931\"* stayed|strong=\"H3427\"* at|strong=\"H3427\"* Jericho|strong=\"H3405\"*; and|strong=\"H7725\"* he|strong=\"H1931\"* said to|strong=\"H7725\"* them|strong=\"H7725\"*, “Didn’t I|strong=\"H3808\"* tell you|strong=\"H7725\"*, ‘Don’t go|strong=\"H3212\"*’?”" + }, + { + "verseNum": 19, + "text": "The|strong=\"H7200\"* men|strong=\"H7451\"* of|strong=\"H5892\"* the|strong=\"H7200\"* city|strong=\"H5892\"* said to|strong=\"H4325\"* Elisha, “Behold|strong=\"H2009\"*, please|strong=\"H4994\"*, the|strong=\"H7200\"* situation|strong=\"H4186\"* of|strong=\"H5892\"* this|strong=\"H7200\"* city|strong=\"H5892\"* is|strong=\"H2896\"* pleasant|strong=\"H2896\"*, as|strong=\"H5892\"* my|strong=\"H7200\"* lord sees|strong=\"H7200\"*; but|strong=\"H7200\"* the|strong=\"H7200\"* water|strong=\"H4325\"* is|strong=\"H2896\"* bad|strong=\"H7451\"*, and|strong=\"H5892\"* the|strong=\"H7200\"* land is|strong=\"H2896\"* barren|strong=\"H7921\"*.”" + }, + { + "verseNum": 20, + "text": "He|strong=\"H8033\"* said, “Bring|strong=\"H3947\"* me|strong=\"H7760\"* a|strong=\"H3068\"* new|strong=\"H2319\"* jar|strong=\"H6746\"*, and|strong=\"H8033\"* put|strong=\"H7760\"* salt|strong=\"H4417\"* in|strong=\"H8033\"* it|strong=\"H7760\"*.” Then|strong=\"H3947\"* they|strong=\"H8033\"* brought|strong=\"H3947\"* it|strong=\"H7760\"* to|strong=\"H8033\"* him|strong=\"H3947\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H8033\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3541\"* spring|strong=\"H4161\"* of|strong=\"H3068\"* the|strong=\"H3541\"* waters|strong=\"H4325\"*, and|strong=\"H3068\"* threw|strong=\"H7993\"* salt|strong=\"H4417\"* into|strong=\"H3318\"* it|strong=\"H8033\"*, and|strong=\"H3068\"* said|strong=\"H3318\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘I|strong=\"H3541\"* have|strong=\"H1961\"* healed|strong=\"H7495\"* these|strong=\"H7495\"* waters|strong=\"H4325\"*. There|strong=\"H8033\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* from|strong=\"H3318\"* there|strong=\"H8033\"* any|strong=\"H5750\"* more|strong=\"H5750\"* death|strong=\"H4194\"* or|strong=\"H3808\"* barren|strong=\"H7921\"* wasteland.’”" + }, + { + "verseNum": 22, + "text": "So|strong=\"H2088\"* the|strong=\"H3117\"* waters|strong=\"H4325\"* were|strong=\"H4325\"* healed|strong=\"H7495\"* to|strong=\"H1696\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, according to|strong=\"H1696\"* Elisha|strong=\"H5704\"*’s word|strong=\"H1697\"* which|strong=\"H1697\"* he|strong=\"H3117\"* spoke|strong=\"H1696\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H1931\"* went|strong=\"H3318\"* up|strong=\"H5927\"* from|strong=\"H4480\"* there|strong=\"H8033\"* to|strong=\"H3318\"* Bethel|strong=\"H1008\"*. As|strong=\"H5927\"* he|strong=\"H1931\"* was|strong=\"H1931\"* going|strong=\"H3318\"* up|strong=\"H5927\"* by|strong=\"H1870\"* the|strong=\"H4480\"* way|strong=\"H1870\"*, some|strong=\"H4480\"* youths|strong=\"H5288\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H5892\"* the|strong=\"H4480\"* city|strong=\"H5892\"* and|strong=\"H5892\"* mocked|strong=\"H7046\"* him|strong=\"H3318\"*, and|strong=\"H5892\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H3318\"*, “Go|strong=\"H3318\"* up|strong=\"H5927\"*, you|strong=\"H4480\"* baldy|strong=\"H7142\"*! Go|strong=\"H3318\"* up|strong=\"H5927\"*, you|strong=\"H4480\"* baldy|strong=\"H7142\"*!”" + }, + { + "verseNum": 24, + "text": "He|strong=\"H3068\"* looked|strong=\"H7200\"* behind|strong=\"H4480\"* him|strong=\"H7200\"* and|strong=\"H3068\"* saw|strong=\"H7200\"* them|strong=\"H1992\"*, and|strong=\"H3068\"* cursed|strong=\"H7043\"* them|strong=\"H1992\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*. Then|strong=\"H3318\"* two|strong=\"H8147\"* female|strong=\"H8147\"* bears|strong=\"H1677\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H7200\"* woods|strong=\"H3293\"* and|strong=\"H3068\"* mauled forty-two|strong=\"H8147\"* of|strong=\"H3068\"* those|strong=\"H1992\"* youths|strong=\"H3206\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H8033\"* went|strong=\"H3212\"* from|strong=\"H7725\"* there|strong=\"H8033\"* to|strong=\"H7725\"* Mount|strong=\"H2022\"* Carmel|strong=\"H3760\"*, and|strong=\"H7725\"* from|strong=\"H7725\"* there|strong=\"H8033\"* he|strong=\"H8033\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Samaria|strong=\"H8111\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* Jehoram|strong=\"H3088\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahab began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"* in|strong=\"H8141\"* the|strong=\"H5921\"* eighteenth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* reigned|strong=\"H4427\"* twelve|strong=\"H8147\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, but|strong=\"H7535\"* not|strong=\"H3808\"* like|strong=\"H3808\"* his|strong=\"H3068\"* father and|strong=\"H3068\"* like|strong=\"H3808\"* his|strong=\"H3068\"* mother, for|strong=\"H6213\"* he|strong=\"H6213\"* put|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H6213\"* pillar|strong=\"H4676\"* of|strong=\"H3068\"* Baal|strong=\"H1168\"* that|strong=\"H3068\"* his|strong=\"H3068\"* father had|strong=\"H3068\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 3, + "text": "Nevertheless|strong=\"H7535\"* he|strong=\"H4480\"* held|strong=\"H1692\"* to|strong=\"H3478\"* the|strong=\"H4480\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, with|strong=\"H3478\"* which|strong=\"H3478\"* he|strong=\"H4480\"* made|strong=\"H3478\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*. He|strong=\"H4480\"* didn’t depart|strong=\"H5493\"* from|strong=\"H4480\"* them|strong=\"H1692\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H1961\"* Mesha|strong=\"H4338\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"* was|strong=\"H1961\"* a|strong=\"H3068\"* sheep|strong=\"H5349\"* breeder|strong=\"H5349\"*; and|strong=\"H3967\"* he|strong=\"H3478\"* supplied the|strong=\"H7725\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* with|strong=\"H4428\"* one|strong=\"H1961\"* hundred|strong=\"H3967\"* thousand lambs|strong=\"H3733\"* and|strong=\"H3967\"* the|strong=\"H7725\"* wool|strong=\"H6785\"* of|strong=\"H4428\"* one|strong=\"H1961\"* hundred|strong=\"H3967\"* thousand rams|strong=\"H3733\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H1961\"* when|strong=\"H1961\"* Ahab was|strong=\"H1961\"* dead|strong=\"H4194\"*, the|strong=\"H1961\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"* rebelled|strong=\"H6586\"* against|strong=\"H6586\"* the|strong=\"H1961\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 6, + "text": "King|strong=\"H4428\"* Jehoram|strong=\"H3088\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* Samaria|strong=\"H8111\"* at|strong=\"H3478\"* that|strong=\"H3605\"* time|strong=\"H3117\"*, and|strong=\"H3478\"* mustered|strong=\"H6485\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H7971\"* went|strong=\"H3212\"* and|strong=\"H3063\"* sent|strong=\"H7971\"* to|strong=\"H3212\"* Jehoshaphat|strong=\"H3092\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, saying, “The|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"* has|strong=\"H4428\"* rebelled|strong=\"H6586\"* against|strong=\"H5927\"* me|strong=\"H7971\"*. Will|strong=\"H4428\"* you|strong=\"H7971\"* go|strong=\"H3212\"* with|strong=\"H3212\"* me|strong=\"H7971\"* against|strong=\"H5927\"* Moab|strong=\"H4124\"* to|strong=\"H3212\"* battle|strong=\"H4421\"*?”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H2088\"* he|strong=\"H2088\"* said, “Which|strong=\"H2088\"* way|strong=\"H1870\"* shall|strong=\"H2088\"* we|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"*?”" + }, + { + "verseNum": 9, + "text": "So|strong=\"H1961\"* the|strong=\"H3117\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* went|strong=\"H3212\"* with|strong=\"H3117\"* the|strong=\"H3117\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* the|strong=\"H3117\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Edom, and|strong=\"H3063\"* they|strong=\"H3117\"* marched|strong=\"H5437\"* for|strong=\"H4325\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* along|strong=\"H3212\"* a|strong=\"H3068\"* circuitous route|strong=\"H1870\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* water|strong=\"H4325\"* for|strong=\"H4325\"* the|strong=\"H3117\"* army|strong=\"H4264\"* or|strong=\"H3808\"* for|strong=\"H4325\"* the|strong=\"H3117\"* animals|strong=\"H1961\"* that|strong=\"H3117\"* followed|strong=\"H3212\"* them|strong=\"H1961\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* said|strong=\"H7121\"*, “Alas! For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* called|strong=\"H7121\"* these|strong=\"H7121\"* three|strong=\"H7969\"* kings|strong=\"H4428\"* together|strong=\"H7121\"* to|strong=\"H3478\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"*.”" + }, + { + "verseNum": 11, + "text": "But|strong=\"H6030\"* Jehoshaphat|strong=\"H3092\"* said|strong=\"H6030\"*, “Isn’t there|strong=\"H3068\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* here|strong=\"H6311\"*, that|strong=\"H3068\"* we|strong=\"H3068\"* may|strong=\"H3068\"* inquire|strong=\"H1875\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* by|strong=\"H3027\"* him|strong=\"H5921\"*?”" + }, + { + "verseNum": 12, + "text": "Jehoshaphat|strong=\"H3092\"* said|strong=\"H1697\"*, “Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* is|strong=\"H3068\"* with|strong=\"H3068\"* him|strong=\"H3381\"*.” So|strong=\"H1697\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* Jehoshaphat|strong=\"H3092\"* and|strong=\"H3478\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Edom went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* him|strong=\"H3381\"*." + }, + { + "verseNum": 13, + "text": "Elisha|strong=\"H7121\"* said|strong=\"H7121\"* to|strong=\"H3478\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, “What|strong=\"H4100\"* have|strong=\"H3068\"* I|strong=\"H3588\"* to|strong=\"H3478\"* do|strong=\"H3068\"* with|strong=\"H3068\"* you|strong=\"H3588\"*? Go|strong=\"H3212\"* to|strong=\"H3478\"* the|strong=\"H3588\"* prophets|strong=\"H5030\"* of|strong=\"H4428\"* your|strong=\"H3068\"* father, and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3588\"* prophets|strong=\"H5030\"* of|strong=\"H4428\"* your|strong=\"H3068\"* mother.”" + }, + { + "verseNum": 14, + "text": "Elisha said, “As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"* lives|strong=\"H2416\"*, before|strong=\"H6440\"* whom|strong=\"H6440\"* I|strong=\"H3588\"* stand|strong=\"H5975\"*, surely|strong=\"H3588\"*, were|strong=\"H3063\"* it|strong=\"H3588\"* not|strong=\"H3588\"* that|strong=\"H3588\"* I|strong=\"H3588\"* respect|strong=\"H7200\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H4428\"* Jehoshaphat|strong=\"H3092\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, I|strong=\"H3588\"* would|strong=\"H3068\"* not|strong=\"H3588\"* look|strong=\"H7200\"* toward|strong=\"H6440\"* you|strong=\"H3588\"*, nor|strong=\"H3588\"* see|strong=\"H7200\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H1961\"* now|strong=\"H6258\"* bring|strong=\"H3947\"* me|strong=\"H5921\"* a|strong=\"H3068\"* musician|strong=\"H5059\"*.” When|strong=\"H1961\"* the|strong=\"H5921\"* musician|strong=\"H5059\"* played|strong=\"H5059\"*, Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* came|strong=\"H1961\"* on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H6213\"* said, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Make|strong=\"H6213\"* this|strong=\"H2088\"* valley|strong=\"H5158\"* full|strong=\"H1356\"* of|strong=\"H3068\"* trenches|strong=\"H1356\"*.’" + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘You|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* see|strong=\"H7200\"* wind|strong=\"H7307\"*, neither|strong=\"H3808\"* will|strong=\"H3068\"* you|strong=\"H3588\"* see|strong=\"H7200\"* rain|strong=\"H1653\"*, yet|strong=\"H3588\"* that|strong=\"H3588\"* valley|strong=\"H5158\"* will|strong=\"H3068\"* be|strong=\"H3808\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* water|strong=\"H4325\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* drink|strong=\"H8354\"*, both you|strong=\"H3588\"* and|strong=\"H3068\"* your|strong=\"H3068\"* livestock|strong=\"H4735\"* and|strong=\"H3068\"* your|strong=\"H3068\"* other|strong=\"H3541\"* animals." + }, + { + "verseNum": 18, + "text": "This|strong=\"H2063\"* is|strong=\"H3068\"* an|strong=\"H5414\"* easy|strong=\"H7043\"* thing|strong=\"H7043\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*. He|strong=\"H3068\"* will|strong=\"H3068\"* also|strong=\"H3068\"* deliver|strong=\"H5414\"* the|strong=\"H5414\"* Moabites|strong=\"H4124\"* into|strong=\"H3027\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H3605\"* shall|strong=\"H5892\"* strike|strong=\"H5221\"* every|strong=\"H3605\"* fortified|strong=\"H4013\"* city|strong=\"H5892\"* and|strong=\"H6086\"* every|strong=\"H3605\"* choice|strong=\"H4004\"* city|strong=\"H5892\"*, and|strong=\"H6086\"* shall|strong=\"H5892\"* fell|strong=\"H5307\"* every|strong=\"H3605\"* good|strong=\"H2896\"* tree|strong=\"H6086\"*, and|strong=\"H6086\"* stop|strong=\"H5640\"* all|strong=\"H3605\"* springs|strong=\"H4599\"* of|strong=\"H5892\"* water|strong=\"H4325\"*, and|strong=\"H6086\"* mar|strong=\"H3510\"* every|strong=\"H3605\"* good|strong=\"H2896\"* piece|strong=\"H2513\"* of|strong=\"H5892\"* land|strong=\"H2513\"* with|strong=\"H5892\"* stones.’”" + }, + { + "verseNum": 20, + "text": "In|strong=\"H1870\"* the|strong=\"H4390\"* morning|strong=\"H1242\"*, about|strong=\"H1961\"* the|strong=\"H4390\"* time|strong=\"H1961\"* of|strong=\"H1870\"* offering|strong=\"H4503\"* the|strong=\"H4390\"* sacrifice|strong=\"H4503\"*, behold|strong=\"H2009\"*, water|strong=\"H4325\"* came|strong=\"H1961\"* by|strong=\"H1870\"* the|strong=\"H4390\"* way|strong=\"H1870\"* of|strong=\"H1870\"* Edom, and|strong=\"H1242\"* the|strong=\"H4390\"* country was|strong=\"H1961\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 21, + "text": "Now|strong=\"H3588\"* when|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Moabites|strong=\"H4124\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* had|strong=\"H4428\"* come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* them|strong=\"H5921\"*, they|strong=\"H3588\"* gathered|strong=\"H8085\"* themselves|strong=\"H8085\"* together|strong=\"H6817\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H4428\"* able to|strong=\"H5927\"* put|strong=\"H5927\"* on|strong=\"H5921\"* armor|strong=\"H2290\"*, young and|strong=\"H4428\"* old|strong=\"H4605\"*, and|strong=\"H4428\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* the|strong=\"H3605\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 22, + "text": "They|strong=\"H5921\"* rose|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*, and|strong=\"H7925\"* the|strong=\"H5921\"* sun|strong=\"H8121\"* shone|strong=\"H2224\"* on|strong=\"H5921\"* the|strong=\"H5921\"* water|strong=\"H4325\"*, and|strong=\"H7925\"* the|strong=\"H5921\"* Moabites|strong=\"H4124\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* water|strong=\"H4325\"* opposite|strong=\"H5048\"* them|strong=\"H5921\"* as|strong=\"H4325\"* red as|strong=\"H4325\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H5221\"* said, “This|strong=\"H2088\"* is|strong=\"H2088\"* blood|strong=\"H1818\"*. The|strong=\"H5221\"* kings|strong=\"H4428\"* are|strong=\"H4428\"* surely|strong=\"H5221\"* destroyed|strong=\"H2717\"*, and|strong=\"H4428\"* they|strong=\"H5221\"* have|strong=\"H6258\"* struck|strong=\"H5221\"* each|strong=\"H2088\"* other|strong=\"H2088\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, Moab|strong=\"H4124\"*, to|strong=\"H4428\"* the|strong=\"H5221\"* plunder|strong=\"H7998\"*!”" + }, + { + "verseNum": 24, + "text": "When|strong=\"H5127\"* they|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H6440\"* camp|strong=\"H4264\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"*, the|strong=\"H6440\"* Israelites|strong=\"H3478\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* struck|strong=\"H5221\"* the|strong=\"H6440\"* Moabites|strong=\"H4124\"*, so|strong=\"H6965\"* that|strong=\"H3478\"* they|strong=\"H3478\"* fled|strong=\"H5127\"* before|strong=\"H6440\"* them|strong=\"H6440\"*; and|strong=\"H6965\"* they|strong=\"H3478\"* went|strong=\"H3478\"* forward|strong=\"H6440\"* into|strong=\"H5127\"* the|strong=\"H6440\"* land|strong=\"H6440\"* attacking|strong=\"H5221\"* the|strong=\"H6440\"* Moabites|strong=\"H4124\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"H5704\"* beat|strong=\"H5221\"* down|strong=\"H5307\"* the|strong=\"H3605\"* cities|strong=\"H5892\"*; and|strong=\"H6086\"* on|strong=\"H5307\"* every|strong=\"H3605\"* good|strong=\"H2896\"* piece|strong=\"H2513\"* of|strong=\"H5892\"* land|strong=\"H2513\"* each|strong=\"H3605\"* man|strong=\"H2896\"* cast|strong=\"H7993\"* his|strong=\"H3605\"* stone, and|strong=\"H6086\"* filled|strong=\"H4390\"* it|strong=\"H5221\"*. They|strong=\"H5704\"* also|strong=\"H5221\"* stopped|strong=\"H5640\"* all|strong=\"H3605\"* the|strong=\"H3605\"* springs|strong=\"H4599\"* of|strong=\"H5892\"* water|strong=\"H4325\"* and|strong=\"H6086\"* cut|strong=\"H5640\"* down|strong=\"H5307\"* all|strong=\"H3605\"* the|strong=\"H3605\"* good|strong=\"H2896\"* trees|strong=\"H6086\"*, until|strong=\"H5704\"* in|strong=\"H5892\"* Kir Hareseth all|strong=\"H3605\"* they|strong=\"H5704\"* left|strong=\"H7604\"* was|strong=\"H5892\"* its|strong=\"H3605\"* stones; however the|strong=\"H3605\"* men|strong=\"H3605\"* armed|strong=\"H4390\"* with|strong=\"H4390\"* slings went|strong=\"H5437\"* around|strong=\"H5437\"* it|strong=\"H5221\"* and|strong=\"H6086\"* attacked|strong=\"H5221\"* it|strong=\"H5221\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H7200\"* battle|strong=\"H4421\"* was|strong=\"H4428\"* too|strong=\"H4480\"* severe|strong=\"H2388\"* for|strong=\"H3588\"* him|strong=\"H7200\"*, he|strong=\"H3588\"* took|strong=\"H3947\"* with|strong=\"H4428\"* him|strong=\"H7200\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* men|strong=\"H2388\"* who|strong=\"H4428\"* drew|strong=\"H8025\"* a|strong=\"H3068\"* sword|strong=\"H2719\"*, to|strong=\"H3201\"* break|strong=\"H1234\"* through|strong=\"H4480\"* to|strong=\"H3201\"* the|strong=\"H7200\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Edom; but|strong=\"H3588\"* they|strong=\"H3588\"* could|strong=\"H3201\"* not|strong=\"H3808\"*." + }, + { + "verseNum": 27, + "text": "Then|strong=\"H1961\"* he|strong=\"H5921\"* took|strong=\"H3947\"* his|strong=\"H3947\"* oldest|strong=\"H1419\"* son|strong=\"H1121\"* who|strong=\"H1121\"* would|strong=\"H3478\"* have|strong=\"H1961\"* reigned|strong=\"H4427\"* in|strong=\"H5921\"* his|strong=\"H3947\"* place|strong=\"H8478\"*, and|strong=\"H1121\"* offered|strong=\"H5927\"* him|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* great|strong=\"H1419\"* wrath|strong=\"H7110\"* against|strong=\"H5921\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* they|strong=\"H5921\"* departed|strong=\"H5265\"* from|strong=\"H5265\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* their|strong=\"H3947\"* own|strong=\"H1961\"* land." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* a|strong=\"H3068\"* certain|strong=\"H3045\"* woman of|strong=\"H1121\"* the|strong=\"H3588\"* wives of|strong=\"H1121\"* the|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3588\"* prophets|strong=\"H5030\"* cried|strong=\"H6817\"* out|strong=\"H3947\"* to|strong=\"H4191\"* Elisha, saying, “Your|strong=\"H3068\"* servant|strong=\"H5650\"* my|strong=\"H3068\"* husband is|strong=\"H3068\"* dead|strong=\"H4191\"*. You|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"*. Now|strong=\"H1961\"* the|strong=\"H3588\"* creditor|strong=\"H5383\"* has|strong=\"H3068\"* come|strong=\"H1961\"* to|strong=\"H4191\"* take|strong=\"H3947\"* for|strong=\"H3588\"* himself|strong=\"H3045\"* my|strong=\"H3068\"* two|strong=\"H8147\"* children|strong=\"H1121\"* to|strong=\"H4191\"* be|strong=\"H1961\"* slaves|strong=\"H5650\"*.”" + }, + { + "verseNum": 2, + "text": "Elisha said to|strong=\"H6213\"* her|strong=\"H3605\"*, “What|strong=\"H4100\"* should|strong=\"H4100\"* I|strong=\"H3588\"* do|strong=\"H6213\"* for|strong=\"H3588\"* you|strong=\"H3588\"*? Tell|strong=\"H5046\"* me|strong=\"H5046\"*, what|strong=\"H4100\"* do|strong=\"H6213\"* you|strong=\"H3588\"* have|strong=\"H3426\"* in|strong=\"H6213\"* the|strong=\"H3605\"* house|strong=\"H1004\"*?”" + }, + { + "verseNum": 3, + "text": "Then|strong=\"H3605\"* he|strong=\"H3605\"* said, “Go|strong=\"H3212\"*, borrow|strong=\"H7592\"* empty|strong=\"H7386\"* containers|strong=\"H3627\"* from|strong=\"H4480\"* all|strong=\"H3605\"* your|strong=\"H3605\"* neighbors|strong=\"H7934\"*. Don’t borrow|strong=\"H7592\"* just|strong=\"H3605\"* a|strong=\"H3068\"* few|strong=\"H4591\"* containers|strong=\"H3627\"*." + }, + { + "verseNum": 4, + "text": "Go|strong=\"H5265\"* in|strong=\"H5921\"* and|strong=\"H1121\"* shut|strong=\"H5462\"* the|strong=\"H3605\"* door|strong=\"H1817\"* on|strong=\"H5921\"* you|strong=\"H3605\"* and|strong=\"H1121\"* on|strong=\"H5921\"* your|strong=\"H3605\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* pour|strong=\"H3332\"* oil into|strong=\"H5921\"* all|strong=\"H3605\"* those|strong=\"H3605\"* containers|strong=\"H3627\"*; and|strong=\"H1121\"* set|strong=\"H5265\"* aside|strong=\"H5265\"* those|strong=\"H3605\"* which|strong=\"H3627\"* are|strong=\"H1121\"* full|strong=\"H4392\"*.”" + }, + { + "verseNum": 5, + "text": "So|strong=\"H5066\"* she|strong=\"H1931\"* went|strong=\"H3212\"* from|strong=\"H1121\"* him|strong=\"H1931\"*, and|strong=\"H1121\"* shut|strong=\"H5462\"* the|strong=\"H5462\"* door|strong=\"H1817\"* on|strong=\"H3212\"* herself|strong=\"H1931\"* and|strong=\"H1121\"* on|strong=\"H3212\"* her|strong=\"H5462\"* sons|strong=\"H1121\"*. They|strong=\"H1992\"* brought|strong=\"H5066\"* the|strong=\"H5462\"* containers to|strong=\"H3212\"* her|strong=\"H5462\"*, and|strong=\"H1121\"* she|strong=\"H1931\"* poured|strong=\"H3332\"* oil." + }, + { + "verseNum": 6, + "text": "When|strong=\"H1961\"* the|strong=\"H4390\"* containers|strong=\"H3627\"* were|strong=\"H1961\"* full|strong=\"H4390\"*, she|strong=\"H3627\"* said to|strong=\"H1961\"* her|strong=\"H4390\"* son|strong=\"H1121\"*, “Bring|strong=\"H5066\"* me|strong=\"H1961\"* another|strong=\"H5750\"* container|strong=\"H3627\"*.”" + }, + { + "verseNum": 7, + "text": "Then|strong=\"H1121\"* she came|strong=\"H3212\"* and|strong=\"H1121\"* told|strong=\"H5046\"* the|strong=\"H5046\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God|strong=\"H7999\"*. He|strong=\"H3212\"* said, “Go|strong=\"H3212\"*, sell|strong=\"H4376\"* the|strong=\"H5046\"* oil|strong=\"H8081\"*, and|strong=\"H1121\"* pay|strong=\"H7999\"* your|strong=\"H5046\"* debt|strong=\"H5386\"*; and|strong=\"H1121\"* you|strong=\"H5046\"* and|strong=\"H1121\"* your|strong=\"H5046\"* sons|strong=\"H1121\"* live|strong=\"H2421\"* on|strong=\"H3212\"* the|strong=\"H5046\"* rest|strong=\"H3498\"*.”" + }, + { + "verseNum": 8, + "text": "One|strong=\"H1961\"* day|strong=\"H3117\"* Elisha went|strong=\"H5674\"* to|strong=\"H1961\"* Shunem|strong=\"H7766\"*, where|strong=\"H8033\"* there|strong=\"H8033\"* was|strong=\"H1961\"* a|strong=\"H3068\"* prominent|strong=\"H1419\"* woman; and|strong=\"H3117\"* she persuaded|strong=\"H2388\"* him|strong=\"H5674\"* to|strong=\"H1961\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"*. So|strong=\"H1961\"* it|strong=\"H8033\"* was|strong=\"H1961\"*, that|strong=\"H3117\"* as|strong=\"H3117\"* often|strong=\"H1767\"* as|strong=\"H3117\"* he|strong=\"H3117\"* passed|strong=\"H5674\"* by|strong=\"H5674\"*, he|strong=\"H3117\"* turned|strong=\"H5493\"* in|strong=\"H3117\"* there|strong=\"H8033\"* to|strong=\"H1961\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 9, + "text": "She|strong=\"H1931\"* said to|strong=\"H5921\"* her|strong=\"H5921\"* husband, “See|strong=\"H2009\"* now|strong=\"H4994\"*, I|strong=\"H3588\"* perceive|strong=\"H3045\"* that|strong=\"H3588\"* this|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* man|strong=\"H5674\"* of|strong=\"H6918\"* God who|strong=\"H1931\"* passes|strong=\"H5674\"* by|strong=\"H5921\"* us|strong=\"H4994\"* continually|strong=\"H8548\"*." + }, + { + "verseNum": 10, + "text": "Please|strong=\"H4994\"*, let|strong=\"H4994\"*’s make|strong=\"H6213\"* a|strong=\"H3068\"* little|strong=\"H6996\"* room|strong=\"H5944\"* on|strong=\"H7760\"* the|strong=\"H6213\"* roof|strong=\"H5944\"*. Let|strong=\"H4994\"*’s set|strong=\"H7760\"* a|strong=\"H3068\"* bed|strong=\"H4296\"*, a|strong=\"H3068\"* table|strong=\"H7979\"*, a|strong=\"H3068\"* chair|strong=\"H3678\"*, and|strong=\"H8033\"* a|strong=\"H3068\"* lamp stand for|strong=\"H6213\"* him|strong=\"H6213\"* there|strong=\"H8033\"*. When|strong=\"H1961\"* he|strong=\"H8033\"* comes|strong=\"H1961\"* to|strong=\"H1961\"* us|strong=\"H4994\"*, he|strong=\"H8033\"* can|strong=\"H6213\"* stay there|strong=\"H8033\"*.”" + }, + { + "verseNum": 11, + "text": "One|strong=\"H1961\"* day|strong=\"H3117\"* he|strong=\"H3117\"* came|strong=\"H1961\"* there|strong=\"H8033\"*, and|strong=\"H3117\"* he|strong=\"H3117\"* went|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H3117\"* room|strong=\"H5944\"* and|strong=\"H3117\"* lay|strong=\"H7901\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H7121\"* said|strong=\"H7121\"* to|strong=\"H6440\"* Gehazi|strong=\"H1522\"* his|strong=\"H7121\"* servant|strong=\"H5288\"*, “Call|strong=\"H7121\"* this|strong=\"H2063\"* Shunammite|strong=\"H7767\"*.” When|strong=\"H5975\"* he|strong=\"H7121\"* had called|strong=\"H7121\"* her|strong=\"H7121\"*, she|strong=\"H7121\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H6213\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H6213\"*, “Say|strong=\"H1696\"* now|strong=\"H4994\"* to|strong=\"H1696\"* her|strong=\"H3605\"*, ‘Behold|strong=\"H2009\"*, you|strong=\"H3605\"* have|strong=\"H3426\"* cared|strong=\"H6213\"* for|strong=\"H6213\"* us|strong=\"H4994\"* with|strong=\"H6213\"* all|strong=\"H3605\"* this|strong=\"H2063\"* care|strong=\"H2731\"*. What|strong=\"H4100\"* is|strong=\"H3426\"* to|strong=\"H1696\"* be|strong=\"H3426\"* done|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H3605\"*? Would|strong=\"H5971\"* you|strong=\"H3605\"* like|strong=\"H6213\"* to|strong=\"H1696\"* be|strong=\"H3426\"* spoken|strong=\"H1696\"* for|strong=\"H6213\"* to|strong=\"H1696\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, or|strong=\"H6213\"* to|strong=\"H1696\"* the|strong=\"H3605\"* captain|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* army|strong=\"H6635\"*?’”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H6213\"* said, “What|strong=\"H4100\"* then|strong=\"H6213\"* is|strong=\"H4100\"* to|strong=\"H6213\"* be|strong=\"H1121\"* done|strong=\"H6213\"* for|strong=\"H6213\"* her|strong=\"H6213\"*?”" + }, + { + "verseNum": 15, + "text": "He|strong=\"H7121\"* said|strong=\"H7121\"*, “Call|strong=\"H7121\"* her|strong=\"H7121\"*.” When|strong=\"H5975\"* he|strong=\"H7121\"* had called|strong=\"H7121\"* her|strong=\"H7121\"*, she|strong=\"H7121\"* stood|strong=\"H5975\"* in|strong=\"H5975\"* the|strong=\"H7121\"* door|strong=\"H6607\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H6256\"* said, “At|strong=\"H1121\"* this|strong=\"H2088\"* season|strong=\"H6256\"* next|strong=\"H2416\"* year|strong=\"H6256\"*, you|strong=\"H6256\"* will|strong=\"H1121\"* embrace|strong=\"H2263\"* a|strong=\"H3068\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 17, + "text": "The|strong=\"H3205\"* woman|strong=\"H3205\"* conceived|strong=\"H2029\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"* at|strong=\"H1121\"* that|strong=\"H2416\"* season|strong=\"H6256\"* when|strong=\"H6256\"* the|strong=\"H3205\"* time|strong=\"H6256\"* came around, as|strong=\"H1121\"* Elisha had|strong=\"H3205\"* said|strong=\"H1696\"* to|strong=\"H1696\"* her|strong=\"H3205\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H1961\"* the|strong=\"H3117\"* child|strong=\"H3206\"* was|strong=\"H1961\"* grown|strong=\"H1431\"*, one|strong=\"H1961\"* day|strong=\"H3117\"* he|strong=\"H3117\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* his|strong=\"H1961\"* father to|strong=\"H3318\"* the|strong=\"H3117\"* reapers|strong=\"H7114\"*." + }, + { + "verseNum": 19, + "text": "He said to|strong=\"H5375\"* his|strong=\"H5375\"* father, “My|strong=\"H5375\"* head|strong=\"H7218\"*! My|strong=\"H5375\"* head|strong=\"H7218\"*!”" + }, + { + "verseNum": 20, + "text": "When|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H3427\"* taken|strong=\"H5375\"* him|strong=\"H5921\"* and|strong=\"H3427\"* brought|strong=\"H5375\"* him|strong=\"H5921\"* to|strong=\"H5704\"* his|strong=\"H5375\"* mother, he|strong=\"H5704\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* her|strong=\"H5375\"* knees|strong=\"H1290\"* until|strong=\"H5704\"* noon|strong=\"H6672\"*, and|strong=\"H3427\"* then|strong=\"H5375\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 21, + "text": "She|strong=\"H5921\"* went|strong=\"H3318\"* up|strong=\"H5927\"* and|strong=\"H5927\"* laid|strong=\"H7901\"* him|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* man of|strong=\"H5921\"* God’s bed|strong=\"H4296\"*, and|strong=\"H5927\"* shut|strong=\"H5462\"* the|strong=\"H5921\"* door on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H5927\"* went|strong=\"H3318\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 22, + "text": "She|strong=\"H7121\"* called|strong=\"H7121\"* to|strong=\"H5704\"* her|strong=\"H7971\"* husband and|strong=\"H7971\"* said|strong=\"H7121\"*, “Please|strong=\"H4994\"* send|strong=\"H7971\"* me|strong=\"H4994\"* one|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* servants|strong=\"H5288\"*, and|strong=\"H7971\"* one|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* donkeys, that|strong=\"H5288\"* I|strong=\"H5704\"* may|strong=\"H4994\"* run|strong=\"H7323\"* to|strong=\"H5704\"* the|strong=\"H4480\"* man|strong=\"H5288\"* of|strong=\"H4480\"* God|strong=\"H7971\"* and|strong=\"H7971\"* come|strong=\"H7725\"* again|strong=\"H7725\"*.”" + }, + { + "verseNum": 23, + "text": "He|strong=\"H3117\"* said, “Why|strong=\"H4069\"* would|strong=\"H1980\"* you|strong=\"H3117\"* want|strong=\"H3808\"* to|strong=\"H1980\"* go|strong=\"H1980\"* to|strong=\"H1980\"* him|strong=\"H1980\"* today|strong=\"H3117\"*? It|strong=\"H1980\"* is|strong=\"H3117\"* not|strong=\"H3808\"* a|strong=\"H3068\"* new|strong=\"H2320\"* moon|strong=\"H2320\"* or|strong=\"H3808\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"*.”" + }, + { + "verseNum": 24, + "text": "Then|strong=\"H3588\"* she|strong=\"H3588\"* saddled|strong=\"H2280\"* a|strong=\"H3068\"* donkey, and|strong=\"H3212\"* said to|strong=\"H3212\"* her|strong=\"H3212\"* servant|strong=\"H5288\"*, “Drive|strong=\"H5090\"*, and|strong=\"H3212\"* go|strong=\"H3212\"* forward|strong=\"H3212\"*! Don’t slow|strong=\"H6113\"* down|strong=\"H3212\"* for|strong=\"H3588\"* me|strong=\"H3212\"*, unless|strong=\"H3588\"* I|strong=\"H3588\"* ask you|strong=\"H3588\"* to|strong=\"H3212\"*.”" + }, + { + "verseNum": 25, + "text": "So|strong=\"H1961\"* she went|strong=\"H3212\"*, and|strong=\"H3212\"* came|strong=\"H1961\"* to|strong=\"H3212\"* the|strong=\"H7200\"* man|strong=\"H5288\"* of|strong=\"H2022\"* God to|strong=\"H3212\"* Mount|strong=\"H2022\"* Carmel|strong=\"H3760\"*. When|strong=\"H1961\"* the|strong=\"H7200\"* man|strong=\"H5288\"* of|strong=\"H2022\"* God saw|strong=\"H7200\"* her|strong=\"H7200\"* afar|strong=\"H2022\"* off|strong=\"H7200\"*, he|strong=\"H3212\"* said to|strong=\"H3212\"* Gehazi|strong=\"H1522\"* his|strong=\"H7200\"* servant|strong=\"H5288\"*, “Behold|strong=\"H2009\"*, there|strong=\"H2009\"* is|strong=\"H2009\"* the|strong=\"H7200\"* Shunammite|strong=\"H7767\"*." + }, + { + "verseNum": 26, + "text": "Please|strong=\"H4994\"* run|strong=\"H7323\"* now|strong=\"H6258\"* to|strong=\"H7323\"* meet|strong=\"H7125\"* her|strong=\"H7125\"*, and|strong=\"H7965\"* ask her|strong=\"H7125\"*, ‘Is|strong=\"H3206\"* it|strong=\"H7965\"* well|strong=\"H7965\"* with|strong=\"H7323\"* you|strong=\"H6258\"*? Is|strong=\"H3206\"* it|strong=\"H7965\"* well|strong=\"H7965\"* with|strong=\"H7323\"* your|strong=\"H4994\"* husband? Is|strong=\"H3206\"* it|strong=\"H7965\"* well|strong=\"H7965\"* with|strong=\"H7323\"* your|strong=\"H4994\"* child|strong=\"H3206\"*?’”" + }, + { + "verseNum": 27, + "text": "When|strong=\"H3588\"* she|strong=\"H3588\"* came|strong=\"H5066\"* to|strong=\"H3068\"* the|strong=\"H3588\"* man|strong=\"H5315\"* of|strong=\"H3068\"* God|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H3588\"* hill|strong=\"H2022\"*, she|strong=\"H3588\"* caught|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H3068\"* his|strong=\"H3068\"* feet|strong=\"H7272\"*. Gehazi|strong=\"H1522\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3068\"* thrust|strong=\"H1920\"* her|strong=\"H5046\"* away|strong=\"H4480\"*; but|strong=\"H3588\"* the|strong=\"H3588\"* man|strong=\"H5315\"* of|strong=\"H3068\"* God|strong=\"H3068\"* said, “Leave|strong=\"H4480\"* her|strong=\"H5046\"* alone|strong=\"H7503\"*, for|strong=\"H3588\"* her|strong=\"H5046\"* soul|strong=\"H5315\"* is|strong=\"H3068\"* troubled|strong=\"H4843\"* within|strong=\"H4480\"* her|strong=\"H5046\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* hidden|strong=\"H5956\"* it|strong=\"H3588\"* from|strong=\"H4480\"* me|strong=\"H5315\"*, and|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* told|strong=\"H5046\"* me|strong=\"H5315\"*.”" + }, + { + "verseNum": 28, + "text": "Then|strong=\"H3808\"* she|strong=\"H3808\"* said, “Did|strong=\"H3808\"* I|strong=\"H3808\"* ask|strong=\"H7592\"* you|strong=\"H3808\"* for|strong=\"H1121\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, my|strong=\"H3808\"* lord? Didn’t I|strong=\"H3808\"* say, ‘Do not|strong=\"H3808\"* deceive|strong=\"H7952\"* me|strong=\"H7592\"*’?”" + }, + { + "verseNum": 29, + "text": "Then|strong=\"H6030\"* he|strong=\"H3588\"* said|strong=\"H6030\"* to|strong=\"H3212\"* Gehazi|strong=\"H1522\"*, “Tuck your|strong=\"H3947\"* cloak into|strong=\"H3212\"* your|strong=\"H3947\"* belt, take|strong=\"H3947\"* my|strong=\"H7760\"* staff|strong=\"H4938\"* in|strong=\"H5921\"* your|strong=\"H3947\"* hand|strong=\"H3027\"*, and|strong=\"H6030\"* go|strong=\"H3212\"* your|strong=\"H3947\"* way|strong=\"H3212\"*. If|strong=\"H3588\"* you|strong=\"H3588\"* meet|strong=\"H6440\"* any|strong=\"H6440\"* man|strong=\"H5288\"*, don’t greet|strong=\"H1288\"* him|strong=\"H6440\"*; and|strong=\"H6030\"* if|strong=\"H3588\"* anyone|strong=\"H3588\"* greets you|strong=\"H3588\"*, don’t answer|strong=\"H6030\"* him|strong=\"H6440\"* again|strong=\"H3212\"*. Then|strong=\"H6030\"* lay|strong=\"H7760\"* my|strong=\"H7760\"* staff|strong=\"H4938\"* on|strong=\"H5921\"* the|strong=\"H6440\"* child|strong=\"H5288\"*’s face|strong=\"H6440\"*.”" + }, + { + "verseNum": 30, + "text": "The|strong=\"H3068\"* child|strong=\"H5288\"*’s mother said, “As|strong=\"H5315\"* Yahweh|strong=\"H3068\"* lives|strong=\"H5315\"*, and|strong=\"H6965\"* as|strong=\"H5315\"* your|strong=\"H3068\"* soul|strong=\"H5315\"* lives|strong=\"H5315\"*, I|strong=\"H5315\"* will|strong=\"H3068\"* not|strong=\"H3212\"* leave|strong=\"H5800\"* you|strong=\"H5800\"*.”" + }, + { + "verseNum": 31, + "text": "Gehazi|strong=\"H1522\"* went|strong=\"H5674\"* ahead|strong=\"H6440\"* of|strong=\"H6963\"* them|strong=\"H5921\"*, and|strong=\"H7725\"* laid|strong=\"H7760\"* the|strong=\"H6440\"* staff|strong=\"H4938\"* on|strong=\"H5921\"* the|strong=\"H6440\"* child|strong=\"H5288\"*’s face|strong=\"H6440\"*; but|strong=\"H3808\"* there|strong=\"H7725\"* was|strong=\"H5288\"* no|strong=\"H3808\"* voice|strong=\"H6963\"* and|strong=\"H7725\"* no|strong=\"H3808\"* hearing|strong=\"H7182\"*. Therefore|strong=\"H5921\"* he|strong=\"H3808\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* meet|strong=\"H7125\"* him|strong=\"H6440\"*, and|strong=\"H7725\"* told|strong=\"H5046\"* him|strong=\"H6440\"*, “The|strong=\"H6440\"* child|strong=\"H5288\"* has|strong=\"H5674\"* not|strong=\"H3808\"* awakened.”" + }, + { + "verseNum": 32, + "text": "When|strong=\"H7901\"* Elisha had come|strong=\"H5288\"* into|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, behold|strong=\"H2009\"*, the|strong=\"H5921\"* child|strong=\"H5288\"* was|strong=\"H1004\"* dead|strong=\"H4191\"*, and|strong=\"H1004\"* lying|strong=\"H7901\"* on|strong=\"H5921\"* his|strong=\"H5921\"* bed|strong=\"H4296\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H3068\"* went|strong=\"H3068\"* in|strong=\"H3068\"* therefore|strong=\"H3068\"*, and|strong=\"H3068\"* shut|strong=\"H5462\"* the|strong=\"H3068\"* door|strong=\"H1817\"* on|strong=\"H3068\"* them|strong=\"H8147\"* both|strong=\"H8147\"*, and|strong=\"H3068\"* prayed|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 34, + "text": "He|strong=\"H5921\"* went|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H5869\"* lay|strong=\"H7901\"* on|strong=\"H5921\"* the|strong=\"H5921\"* child|strong=\"H3206\"*, and|strong=\"H5869\"* put|strong=\"H7760\"* his|strong=\"H7760\"* mouth|strong=\"H6310\"* on|strong=\"H5921\"* his|strong=\"H7760\"* mouth|strong=\"H6310\"*, and|strong=\"H5869\"* his|strong=\"H7760\"* eyes|strong=\"H5869\"* on|strong=\"H5921\"* his|strong=\"H7760\"* eyes|strong=\"H5869\"*, and|strong=\"H5869\"* his|strong=\"H7760\"* hands|strong=\"H3709\"* on|strong=\"H5921\"* his|strong=\"H7760\"* hands|strong=\"H3709\"*. He|strong=\"H5921\"* stretched|strong=\"H1457\"* himself on|strong=\"H5921\"* him|strong=\"H5921\"*; and|strong=\"H5869\"* the|strong=\"H5921\"* child|strong=\"H3206\"*’s flesh|strong=\"H1320\"* grew|strong=\"H5927\"* warm|strong=\"H2552\"*." + }, + { + "verseNum": 35, + "text": "Then|strong=\"H7725\"* he|strong=\"H5704\"* returned|strong=\"H7725\"*, and|strong=\"H7725\"* walked|strong=\"H3212\"* in|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* once|strong=\"H6471\"* back|strong=\"H7725\"* and|strong=\"H7725\"* forth|strong=\"H2008\"*, then|strong=\"H7725\"* went|strong=\"H3212\"* up|strong=\"H5927\"* and|strong=\"H7725\"* stretched|strong=\"H1457\"* himself out|strong=\"H5921\"* on|strong=\"H5921\"* him|strong=\"H5921\"*. Then|strong=\"H7725\"* the|strong=\"H5921\"* child|strong=\"H5288\"* sneezed|strong=\"H2237\"* seven|strong=\"H7651\"* times|strong=\"H6471\"*, and|strong=\"H7725\"* the|strong=\"H5921\"* child|strong=\"H5288\"* opened|strong=\"H6491\"* his|strong=\"H7725\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 36, + "text": "He|strong=\"H7121\"* called|strong=\"H7121\"* Gehazi|strong=\"H1522\"*, and|strong=\"H1121\"* said|strong=\"H7121\"*, “Call|strong=\"H7121\"* this|strong=\"H2063\"* Shunammite|strong=\"H7767\"*!” So|strong=\"H7121\"* he|strong=\"H7121\"* called|strong=\"H7121\"* her|strong=\"H5375\"*." + }, + { + "verseNum": 37, + "text": "Then|strong=\"H3318\"* she|strong=\"H5921\"* went|strong=\"H3318\"* in|strong=\"H5921\"*, fell|strong=\"H5307\"* at|strong=\"H5921\"* his|strong=\"H5375\"* feet|strong=\"H7272\"*, and|strong=\"H1121\"* bowed|strong=\"H7812\"* herself|strong=\"H7812\"* to|strong=\"H3318\"* the|strong=\"H5921\"* ground; then|strong=\"H3318\"* she|strong=\"H5921\"* picked|strong=\"H5375\"* up|strong=\"H5375\"* her|strong=\"H5375\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* went|strong=\"H3318\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 38, + "text": "Elisha|strong=\"H7725\"* came|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* Gilgal|strong=\"H1537\"*. There|strong=\"H3427\"* was|strong=\"H5288\"* a|strong=\"H3068\"* famine|strong=\"H7458\"* in|strong=\"H3427\"* the|strong=\"H6440\"* land|strong=\"H6440\"*; and|strong=\"H1121\"* the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* prophets|strong=\"H5030\"* were|strong=\"H1121\"* sitting|strong=\"H3427\"* before|strong=\"H6440\"* him|strong=\"H6440\"*; and|strong=\"H1121\"* he|strong=\"H6440\"* said to|strong=\"H7725\"* his|strong=\"H7725\"* servant|strong=\"H5288\"*, “Get|strong=\"H7725\"* the|strong=\"H6440\"* large|strong=\"H1419\"* pot|strong=\"H5518\"*, and|strong=\"H1121\"* boil|strong=\"H1310\"* stew|strong=\"H5138\"* for|strong=\"H6440\"* the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* prophets|strong=\"H5030\"*.”" + }, + { + "verseNum": 39, + "text": "One|strong=\"H3808\"* went|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3588\"* field|strong=\"H7704\"* to|strong=\"H3318\"* gather|strong=\"H3950\"* herbs, and|strong=\"H7704\"* found|strong=\"H4672\"* a|strong=\"H3068\"* wild|strong=\"H7704\"* vine|strong=\"H1612\"*, and|strong=\"H7704\"* gathered|strong=\"H3950\"* a|strong=\"H3068\"* lap full|strong=\"H4393\"* of|strong=\"H7704\"* wild|strong=\"H7704\"* gourds|strong=\"H6498\"* from|strong=\"H4480\"* it|strong=\"H3588\"*, and|strong=\"H7704\"* came|strong=\"H3318\"* and|strong=\"H7704\"* cut them|strong=\"H3318\"* up|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3588\"* pot|strong=\"H5518\"* of|strong=\"H7704\"* stew|strong=\"H5138\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* didn’t recognize|strong=\"H3045\"* them|strong=\"H3318\"*." + }, + { + "verseNum": 40, + "text": "So|strong=\"H1961\"* they|strong=\"H1992\"* poured|strong=\"H3332\"* out|strong=\"H3332\"* for|strong=\"H1961\"* the|strong=\"H1961\"* men|strong=\"H1992\"* to|strong=\"H3201\"* eat. As|strong=\"H1961\"* they|strong=\"H1992\"* were|strong=\"H1961\"* eating some|strong=\"H1992\"* of|strong=\"H4194\"* the|strong=\"H1961\"* stew|strong=\"H5138\"*, they|strong=\"H1992\"* cried|strong=\"H6817\"* out|strong=\"H3332\"* and|strong=\"H4194\"* said, “Man of|strong=\"H4194\"* God|strong=\"H3808\"*, there|strong=\"H1961\"* is|strong=\"H1961\"* death|strong=\"H4194\"* in|strong=\"H3808\"* the|strong=\"H1961\"* pot|strong=\"H5518\"*!” And|strong=\"H4194\"* they|strong=\"H1992\"* could|strong=\"H3201\"* not|strong=\"H3808\"* eat it|strong=\"H1961\"*." + }, + { + "verseNum": 41, + "text": "But|strong=\"H3808\"* he|strong=\"H3808\"* said|strong=\"H1697\"*, “Then|strong=\"H1961\"* bring|strong=\"H3947\"* meal|strong=\"H7058\"*.” He|strong=\"H3808\"* threw|strong=\"H7993\"* it|strong=\"H1961\"* into|strong=\"H3332\"* the|strong=\"H3947\"* pot|strong=\"H5518\"*; and|strong=\"H5971\"* he|strong=\"H3808\"* said|strong=\"H1697\"*, “Serve|strong=\"H1961\"* it|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H3947\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* they|strong=\"H3808\"* may|strong=\"H1961\"* eat.” And|strong=\"H5971\"* there|strong=\"H1961\"* was|strong=\"H1961\"* nothing|strong=\"H3808\"* harmful|strong=\"H7451\"* in|strong=\"H1697\"* the|strong=\"H3947\"* pot|strong=\"H5518\"*." + }, + { + "verseNum": 42, + "text": "A|strong=\"H3068\"* man from|strong=\"H3899\"* Baal Shalishah came|strong=\"H5971\"*, and|strong=\"H6242\"* brought|strong=\"H5414\"* the|strong=\"H5414\"* man of|strong=\"H5971\"* God|strong=\"H5414\"* some|strong=\"H5971\"* bread|strong=\"H3899\"* of|strong=\"H5971\"* the|strong=\"H5414\"* first|strong=\"H1061\"* fruits|strong=\"H1061\"*: twenty|strong=\"H6242\"* loaves|strong=\"H3899\"* of|strong=\"H5971\"* barley|strong=\"H8184\"* and|strong=\"H6242\"* fresh|strong=\"H3759\"* ears|strong=\"H3759\"* of|strong=\"H5971\"* grain|strong=\"H3899\"* in|strong=\"H3899\"* his|strong=\"H5414\"* sack|strong=\"H6861\"*. Elisha said, “Give|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* they|strong=\"H5971\"* may|strong=\"H5971\"* eat|strong=\"H3899\"*.”" + }, + { + "verseNum": 43, + "text": "His|strong=\"H5414\"* servant|strong=\"H8334\"* said, “What|strong=\"H4100\"*, should|strong=\"H3068\"* I|strong=\"H3588\"* set|strong=\"H5414\"* this|strong=\"H2088\"* before|strong=\"H6440\"* a|strong=\"H3068\"* hundred|strong=\"H3967\"* men|strong=\"H5971\"*?”" + }, + { + "verseNum": 44, + "text": "So|strong=\"H5414\"* he|strong=\"H3068\"* set|strong=\"H5414\"* it|strong=\"H5414\"* before|strong=\"H6440\"* them|strong=\"H5414\"* and|strong=\"H3068\"* they|strong=\"H3068\"* ate and|strong=\"H3068\"* had|strong=\"H3068\"* some|strong=\"H1697\"* left|strong=\"H3498\"* over|strong=\"H5414\"*, according to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* Naaman|strong=\"H5283\"*, captain|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H6440\"* army|strong=\"H2428\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria, was|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* man|strong=\"H1368\"* with|strong=\"H3068\"* his|strong=\"H5375\"* master|strong=\"H8269\"*, and|strong=\"H3068\"* honorable|strong=\"H5375\"*, because|strong=\"H3588\"* by|strong=\"H3068\"* him|strong=\"H5414\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* given|strong=\"H5414\"* victory|strong=\"H8668\"* to|strong=\"H3068\"* Syria; he|strong=\"H3588\"* was|strong=\"H3068\"* also|strong=\"H3068\"* a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* of|strong=\"H4428\"* valor|strong=\"H2428\"*, but|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H3068\"* a|strong=\"H3068\"* leper|strong=\"H6879\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H6440\"* Syrians had|strong=\"H1961\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* in|strong=\"H3478\"* bands|strong=\"H1416\"*, and|strong=\"H3478\"* had|strong=\"H1961\"* brought|strong=\"H3318\"* away|strong=\"H7617\"* captive|strong=\"H7617\"* out|strong=\"H3318\"* of|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"* a|strong=\"H3068\"* little|strong=\"H6996\"* girl|strong=\"H5291\"*, and|strong=\"H3478\"* she|strong=\"H6440\"* waited|strong=\"H1961\"* on|strong=\"H1961\"* Naaman|strong=\"H5283\"*’s wife." + }, + { + "verseNum": 3, + "text": "She|strong=\"H6440\"* said to|strong=\"H6440\"* her|strong=\"H6440\"* mistress|strong=\"H1404\"*, “I|strong=\"H6440\"* wish that|strong=\"H5030\"* my|strong=\"H6440\"* lord were|strong=\"H5030\"* with|strong=\"H6440\"* the|strong=\"H6440\"* prophet|strong=\"H5030\"* who|strong=\"H5030\"* is|strong=\"H6440\"* in|strong=\"H6440\"* Samaria|strong=\"H8111\"*! Then he|strong=\"H6440\"* would heal him|strong=\"H6440\"* of|strong=\"H6440\"* his|strong=\"H6440\"* leprosy|strong=\"H6883\"*.”" + }, + { + "verseNum": 4, + "text": "Someone went|strong=\"H3478\"* in|strong=\"H3478\"* and|strong=\"H3478\"* told|strong=\"H5046\"* his|strong=\"H5046\"* lord, saying|strong=\"H1696\"*, “The|strong=\"H5046\"* girl|strong=\"H5291\"* who|strong=\"H3478\"* is|strong=\"H3478\"* from|strong=\"H3478\"* the|strong=\"H5046\"* land of|strong=\"H1696\"* Israel|strong=\"H3478\"* said|strong=\"H1696\"* this|strong=\"H2063\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H3947\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria said, “Go|strong=\"H3212\"* now|strong=\"H3947\"*, and|strong=\"H3478\"* I|strong=\"H3027\"* will|strong=\"H4428\"* send|strong=\"H7971\"* a|strong=\"H3068\"* letter|strong=\"H5612\"* to|strong=\"H3478\"* the|strong=\"H3947\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 6, + "text": "He|strong=\"H7971\"* brought|strong=\"H3478\"* the|strong=\"H7971\"* letter|strong=\"H5612\"* to|strong=\"H3478\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, saying, “Now|strong=\"H6258\"* when|strong=\"H7971\"* this|strong=\"H2088\"* letter|strong=\"H5612\"* has|strong=\"H3478\"* come|strong=\"H3478\"* to|strong=\"H3478\"* you|strong=\"H7971\"*, behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H5650\"* sent|strong=\"H7971\"* Naaman|strong=\"H5283\"* my|strong=\"H7971\"* servant|strong=\"H5650\"* to|strong=\"H3478\"* you|strong=\"H7971\"*, that|strong=\"H3478\"* you|strong=\"H7971\"* may|strong=\"H3478\"* heal him|strong=\"H7971\"* of|strong=\"H4428\"* his|strong=\"H7971\"* leprosy|strong=\"H6883\"*.”" + }, + { + "verseNum": 7, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* had|strong=\"H1961\"* read|strong=\"H7121\"* the|strong=\"H7200\"* letter|strong=\"H5612\"*, he|strong=\"H1931\"* tore|strong=\"H7167\"* his|strong=\"H7121\"* clothes and|strong=\"H3478\"* said|strong=\"H7121\"*, “Am|strong=\"H1961\"* I|strong=\"H3588\"* God|strong=\"H7971\"*, to|strong=\"H3478\"* kill|strong=\"H4191\"* and|strong=\"H3478\"* to|strong=\"H3478\"* make|strong=\"H3045\"* alive|strong=\"H2421\"*, that|strong=\"H3588\"* this|strong=\"H2088\"* man|strong=\"H4191\"* sends|strong=\"H7971\"* to|strong=\"H3478\"* me|strong=\"H4994\"* to|strong=\"H3478\"* heal a|strong=\"H3068\"* man|strong=\"H4191\"* of|strong=\"H4428\"* his|strong=\"H7121\"* leprosy|strong=\"H6883\"*? But|strong=\"H3588\"* please|strong=\"H4994\"* consider|strong=\"H7200\"* and|strong=\"H3478\"* see|strong=\"H7200\"* how|strong=\"H3588\"* he|strong=\"H1931\"* seeks a|strong=\"H3068\"* quarrel against|strong=\"H7971\"* me|strong=\"H4994\"*.”" + }, + { + "verseNum": 8, + "text": "It|strong=\"H3588\"* was|strong=\"H1961\"* so|strong=\"H7971\"*, when|strong=\"H3588\"* Elisha the|strong=\"H8085\"* man|strong=\"H3045\"* of|strong=\"H4428\"* God|strong=\"H7971\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* had|strong=\"H1961\"* torn|strong=\"H7167\"* his|strong=\"H7971\"* clothes, that|strong=\"H3588\"* he|strong=\"H3588\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* the|strong=\"H8085\"* king|strong=\"H4428\"*, saying, “Why|strong=\"H4100\"* have|strong=\"H1961\"* you|strong=\"H3588\"* torn|strong=\"H7167\"* your|strong=\"H8085\"* clothes? Let|strong=\"H7971\"* him|strong=\"H7971\"* come|strong=\"H1961\"* now|strong=\"H4994\"* to|strong=\"H3478\"* me|strong=\"H4994\"*, and|strong=\"H3478\"* he|strong=\"H3588\"* shall|strong=\"H3478\"* know|strong=\"H3045\"* that|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 9, + "text": "So|strong=\"H5975\"* Naaman|strong=\"H5283\"* came with|strong=\"H1004\"* his|strong=\"H5975\"* horses|strong=\"H5483\"* and|strong=\"H1004\"* with|strong=\"H1004\"* his|strong=\"H5975\"* chariots|strong=\"H7393\"*, and|strong=\"H1004\"* stood|strong=\"H5975\"* at|strong=\"H1004\"* the|strong=\"H5975\"* door|strong=\"H6607\"* of|strong=\"H1004\"* the|strong=\"H5975\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Elisha." + }, + { + "verseNum": 10, + "text": "Elisha|strong=\"H7725\"* sent|strong=\"H7971\"* a|strong=\"H3068\"* messenger|strong=\"H4397\"* to|strong=\"H1980\"* him|strong=\"H7971\"*, saying, “Go|strong=\"H1980\"* and|strong=\"H1980\"* wash|strong=\"H7364\"* in|strong=\"H1980\"* the|strong=\"H7725\"* Jordan|strong=\"H3383\"* seven|strong=\"H7651\"* times|strong=\"H6471\"*, and|strong=\"H1980\"* your|strong=\"H7725\"* flesh|strong=\"H1320\"* shall|strong=\"H1320\"* come|strong=\"H1980\"* again|strong=\"H7725\"* to|strong=\"H1980\"* you|strong=\"H7971\"*, and|strong=\"H1980\"* you|strong=\"H7971\"* shall|strong=\"H1320\"* be|strong=\"H1320\"* clean|strong=\"H2891\"*.”" + }, + { + "verseNum": 11, + "text": "But|strong=\"H2009\"* Naaman|strong=\"H5283\"* was|strong=\"H3068\"* angry|strong=\"H7107\"*, and|strong=\"H3068\"* went|strong=\"H3212\"* away|strong=\"H3212\"* and|strong=\"H3068\"* said|strong=\"H7121\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* thought, ‘He|strong=\"H3068\"* will|strong=\"H3068\"* surely|strong=\"H3318\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* me|strong=\"H7121\"*, and|strong=\"H3068\"* stand|strong=\"H5975\"*, and|strong=\"H3068\"* call|strong=\"H7121\"* on|strong=\"H3027\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* wave|strong=\"H5130\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* over|strong=\"H3027\"* the|strong=\"H3068\"* place|strong=\"H4725\"*, and|strong=\"H3068\"* heal the|strong=\"H3068\"* leper|strong=\"H6879\"*.’" + }, + { + "verseNum": 12, + "text": "Aren’t Abanah and|strong=\"H3478\"* Pharpar|strong=\"H6554\"*, the|strong=\"H3605\"* rivers|strong=\"H5104\"* of|strong=\"H4325\"* Damascus|strong=\"H1834\"*, better|strong=\"H2896\"* than|strong=\"H2896\"* all|strong=\"H3605\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* Israel|strong=\"H3478\"*? Couldn’t I|strong=\"H3808\"* wash|strong=\"H7364\"* in|strong=\"H3478\"* them|strong=\"H3478\"* and|strong=\"H3478\"* be|strong=\"H3808\"* clean|strong=\"H2891\"*?” So|strong=\"H3808\"* he|strong=\"H3605\"* turned|strong=\"H6437\"* and|strong=\"H3478\"* went|strong=\"H3212\"* away|strong=\"H3212\"* in|strong=\"H3478\"* a|strong=\"H3068\"* rage|strong=\"H2534\"*." + }, + { + "verseNum": 13, + "text": "His|strong=\"H7364\"* servants|strong=\"H5650\"* came|strong=\"H5066\"* near|strong=\"H5066\"* and|strong=\"H1419\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H6213\"*, and|strong=\"H1419\"* said|strong=\"H1696\"*, “My|strong=\"H6213\"* father, if|strong=\"H3588\"* the|strong=\"H3588\"* prophet|strong=\"H5030\"* had|strong=\"H3588\"* asked|strong=\"H1696\"* you|strong=\"H3588\"* do|strong=\"H6213\"* some|strong=\"H1697\"* great|strong=\"H1419\"* thing|strong=\"H1697\"*, wouldn’t you|strong=\"H3588\"* have|strong=\"H5030\"* done|strong=\"H6213\"* it|strong=\"H3588\"*? How|strong=\"H3588\"* much|strong=\"H1697\"* rather|strong=\"H3588\"* then|strong=\"H1696\"*, when|strong=\"H3588\"* he|strong=\"H3588\"* says|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"*, ‘Wash|strong=\"H7364\"*, and|strong=\"H1419\"* be|strong=\"H3808\"* clean|strong=\"H2891\"*’?”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H7725\"* went|strong=\"H3381\"* he|strong=\"H7725\"* down|strong=\"H3381\"* and|strong=\"H7725\"* dipped|strong=\"H2881\"* himself|strong=\"H2881\"* seven|strong=\"H7651\"* times|strong=\"H6471\"* in|strong=\"H1320\"* the|strong=\"H7725\"* Jordan|strong=\"H3383\"*, according to|strong=\"H7725\"* the|strong=\"H7725\"* saying|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H7725\"* man|strong=\"H5288\"* of|strong=\"H1697\"* God; and|strong=\"H7725\"* his|strong=\"H7725\"* flesh|strong=\"H1320\"* was|strong=\"H1697\"* restored|strong=\"H7725\"* like|strong=\"H3381\"* the|strong=\"H7725\"* flesh|strong=\"H1320\"* of|strong=\"H1697\"* a|strong=\"H3068\"* little|strong=\"H6996\"* child|strong=\"H5288\"*, and|strong=\"H7725\"* he|strong=\"H7725\"* was|strong=\"H1697\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H1931\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3605\"* man|strong=\"H3605\"* of|strong=\"H6440\"* God, he|strong=\"H1931\"* and|strong=\"H3478\"* all|strong=\"H3605\"* his|strong=\"H3605\"* company|strong=\"H4264\"*, and|strong=\"H3478\"* came|strong=\"H3478\"*, and|strong=\"H3478\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*; and|strong=\"H3478\"* he|strong=\"H1931\"* said, “See|strong=\"H2009\"* now|strong=\"H6258\"*, I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* there|strong=\"H2009\"* is|strong=\"H1931\"* no|strong=\"H3605\"* God in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth, but|strong=\"H3588\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* take|strong=\"H3947\"* a|strong=\"H3068\"* gift|strong=\"H1293\"* from|strong=\"H7725\"* your|strong=\"H3605\"* servant|strong=\"H5650\"*.”" + }, + { + "verseNum": 16, + "text": "But|strong=\"H3947\"* he|strong=\"H3068\"* said, “As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, before|strong=\"H6440\"* whom|strong=\"H6440\"* I|strong=\"H6440\"* stand|strong=\"H5975\"*, I|strong=\"H6440\"* will|strong=\"H3068\"* receive|strong=\"H3947\"* none.”" + }, + { + "verseNum": 17, + "text": "Naaman|strong=\"H5283\"* said, “If|strong=\"H3588\"* not|strong=\"H3808\"*, then|strong=\"H5414\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* two|strong=\"H6776\"* mules|strong=\"H6505\"*’ load|strong=\"H4853\"* of|strong=\"H3068\"* earth be|strong=\"H3808\"* given|strong=\"H5414\"* to|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*; for|strong=\"H3588\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* will|strong=\"H3068\"* from|strong=\"H3068\"* now|strong=\"H4994\"* on|strong=\"H3068\"* offer|strong=\"H6213\"* neither|strong=\"H3808\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* nor|strong=\"H3808\"* sacrifice|strong=\"H2077\"* to|strong=\"H3068\"* other|strong=\"H5750\"* gods, but|strong=\"H3588\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "In|strong=\"H5921\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* may|strong=\"H4994\"* Yahweh|strong=\"H3068\"* pardon|strong=\"H5545\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*: when|strong=\"H3068\"* my|strong=\"H3068\"* master goes into|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Rimmon|strong=\"H7417\"* to|strong=\"H3068\"* worship|strong=\"H7812\"* there|strong=\"H8033\"*, and|strong=\"H3068\"* he|strong=\"H1931\"* leans|strong=\"H8172\"* on|strong=\"H5921\"* my|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* I|strong=\"H5921\"* bow|strong=\"H7812\"* myself in|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Rimmon|strong=\"H7417\"*. When|strong=\"H3068\"* I|strong=\"H5921\"* bow|strong=\"H7812\"* myself in|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Rimmon|strong=\"H7417\"*, may|strong=\"H4994\"* Yahweh|strong=\"H3068\"* pardon|strong=\"H5545\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* in|strong=\"H5921\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*.”" + }, + { + "verseNum": 19, + "text": "He|strong=\"H3212\"* said to|strong=\"H3212\"* him, “Go|strong=\"H3212\"* in|strong=\"H3212\"* peace|strong=\"H7965\"*.”" + }, + { + "verseNum": 20, + "text": "But|strong=\"H3588\"* Gehazi|strong=\"H1522\"* the|strong=\"H3588\"* servant|strong=\"H5288\"* of|strong=\"H3068\"* Elisha the|strong=\"H3588\"* man|strong=\"H5288\"* of|strong=\"H3068\"* God|strong=\"H3068\"*, said, “Behold|strong=\"H2009\"*, my|strong=\"H3068\"* master has|strong=\"H3068\"* spared|strong=\"H2820\"* this|strong=\"H2088\"* Naaman|strong=\"H5283\"* the|strong=\"H3588\"* Syrian, in|strong=\"H3068\"* not|strong=\"H2088\"* receiving|strong=\"H3947\"* at|strong=\"H3068\"* his|strong=\"H3068\"* hands|strong=\"H3027\"* that|strong=\"H3588\"* which|strong=\"H3068\"* he|strong=\"H3588\"* brought|strong=\"H3947\"*. As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* run|strong=\"H7323\"* after|strong=\"H3588\"* him|strong=\"H3027\"*, and|strong=\"H3068\"* take|strong=\"H3947\"* something|strong=\"H3972\"* from|strong=\"H3027\"* him|strong=\"H3027\"*.”" + }, + { + "verseNum": 21, + "text": "So|strong=\"H7200\"* Gehazi|strong=\"H1522\"* followed|strong=\"H7291\"* after|strong=\"H5921\"* Naaman|strong=\"H5283\"*. When|strong=\"H7200\"* Naaman|strong=\"H5283\"* saw|strong=\"H7200\"* one|strong=\"H7200\"* running|strong=\"H7323\"* after|strong=\"H5921\"* him|strong=\"H5921\"*, he|strong=\"H5921\"* came|strong=\"H1522\"* down|strong=\"H5307\"* from|strong=\"H5921\"* the|strong=\"H5921\"* chariot|strong=\"H4818\"* to|strong=\"H5921\"* meet|strong=\"H7125\"* him|strong=\"H5921\"*, and|strong=\"H7200\"* said, “Is|strong=\"H5307\"* all|strong=\"H7200\"* well|strong=\"H7965\"*?”" + }, + { + "verseNum": 22, + "text": "He|strong=\"H5414\"* said, “All|strong=\"H5414\"* is|strong=\"H2088\"* well|strong=\"H7965\"*. My|strong=\"H5414\"* master|strong=\"H5414\"* has|strong=\"H5030\"* sent|strong=\"H7971\"* me|strong=\"H5414\"*, saying, ‘Behold|strong=\"H2009\"*, even now|strong=\"H6258\"* two|strong=\"H8147\"* young|strong=\"H5288\"* men|strong=\"H5288\"* of|strong=\"H1121\"* the|strong=\"H5414\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5414\"* prophets|strong=\"H5030\"* have|strong=\"H1121\"* come|strong=\"H4994\"* to|strong=\"H7971\"* me|strong=\"H5414\"* from|strong=\"H1121\"* the|strong=\"H5414\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1121\"* Ephraim. Please|strong=\"H4994\"* give|strong=\"H5414\"* them|strong=\"H5414\"* a|strong=\"H3068\"* talent|strong=\"H3603\"*+ 5:22 A talent is about 30 kilograms or 66 pounds* of|strong=\"H1121\"* silver|strong=\"H3701\"* and|strong=\"H1121\"* two|strong=\"H8147\"* changes|strong=\"H2487\"* of|strong=\"H1121\"* clothing.’”" + }, + { + "verseNum": 23, + "text": "Naaman|strong=\"H5283\"* said, “Be|strong=\"H5414\"* pleased|strong=\"H2974\"* to|strong=\"H5414\"* take|strong=\"H3947\"* two|strong=\"H8147\"* talents|strong=\"H3603\"*.” He|strong=\"H5414\"* urged|strong=\"H6555\"* him|strong=\"H5414\"*, and|strong=\"H3701\"* bound|strong=\"H6887\"* two|strong=\"H8147\"* talents|strong=\"H3603\"* of|strong=\"H6440\"* silver|strong=\"H3701\"* in|strong=\"H6440\"* two|strong=\"H8147\"* bags|strong=\"H2754\"*, with|strong=\"H6440\"* two|strong=\"H8147\"* changes|strong=\"H2487\"* of|strong=\"H6440\"* clothing, and|strong=\"H3701\"* laid|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5375\"* two|strong=\"H8147\"* of|strong=\"H6440\"* his|strong=\"H5375\"* servants|strong=\"H5288\"*; and|strong=\"H3701\"* they|strong=\"H5375\"* carried|strong=\"H5375\"* them|strong=\"H5414\"* before|strong=\"H6440\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 24, + "text": "When|strong=\"H7971\"* he|strong=\"H1004\"* came|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3947\"* hill|strong=\"H6076\"*, he|strong=\"H1004\"* took|strong=\"H3947\"* them|strong=\"H7971\"* from|strong=\"H3027\"* their|strong=\"H3947\"* hand|strong=\"H3027\"*, and|strong=\"H7971\"* stored them|strong=\"H7971\"* in|strong=\"H1004\"* the|strong=\"H3947\"* house|strong=\"H1004\"*. Then|strong=\"H3947\"* he|strong=\"H1004\"* let|strong=\"H7971\"* the|strong=\"H3947\"* men|strong=\"H6485\"* go|strong=\"H3212\"*, and|strong=\"H7971\"* they|strong=\"H3027\"* departed|strong=\"H3212\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"H3808\"* he|strong=\"H1931\"* went|strong=\"H1980\"* in|strong=\"H1980\"*, and|strong=\"H1980\"* stood|strong=\"H5975\"* before|strong=\"H3808\"* his|strong=\"H3808\"* master. Elisha said to|strong=\"H1980\"* him|strong=\"H5975\"*, “Where|strong=\"H3808\"* did|strong=\"H5650\"* you|strong=\"H3808\"* come|strong=\"H1980\"* from|strong=\"H1980\"*, Gehazi|strong=\"H1522\"*?”" + }, + { + "verseNum": 26, + "text": "He|strong=\"H3808\"* said to|strong=\"H1980\"* him|strong=\"H5921\"*, “Didn’t my|strong=\"H3947\"* heart|strong=\"H3820\"* go|strong=\"H1980\"* with|strong=\"H1980\"* you|strong=\"H5921\"* when|strong=\"H6256\"* the|strong=\"H5921\"* man|strong=\"H3820\"* turned|strong=\"H2015\"* from|strong=\"H5921\"* his|strong=\"H3947\"* chariot|strong=\"H4818\"* to|strong=\"H1980\"* meet|strong=\"H7125\"* you|strong=\"H5921\"*? Is|strong=\"H3820\"* it|strong=\"H5921\"* a|strong=\"H3068\"* time|strong=\"H6256\"* to|strong=\"H1980\"* receive|strong=\"H3947\"* money|strong=\"H3701\"*, and|strong=\"H1980\"* to|strong=\"H1980\"* receive|strong=\"H3947\"* garments, and|strong=\"H1980\"* olive|strong=\"H2132\"* groves|strong=\"H2132\"* and|strong=\"H1980\"* vineyards|strong=\"H3754\"*, and|strong=\"H1980\"* sheep|strong=\"H6629\"* and|strong=\"H1980\"* cattle|strong=\"H1241\"*, and|strong=\"H1980\"* male|strong=\"H5650\"* servants|strong=\"H5650\"* and|strong=\"H1980\"* female|strong=\"H8198\"* servants|strong=\"H5650\"*?" + }, + { + "verseNum": 27, + "text": "Therefore the|strong=\"H6440\"* leprosy|strong=\"H6883\"* of|strong=\"H6440\"* Naaman|strong=\"H5283\"* will|strong=\"H2233\"* cling|strong=\"H1692\"* to|strong=\"H3318\"* you|strong=\"H6440\"* and|strong=\"H5769\"* to|strong=\"H3318\"* your|strong=\"H6440\"* offspring|strong=\"H2233\"*+ 5:27 or, seed* forever|strong=\"H5769\"*.”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* prophets|strong=\"H5030\"* said to|strong=\"H6440\"* Elisha|strong=\"H3427\"*, “See|strong=\"H2009\"* now|strong=\"H4994\"*, the|strong=\"H6440\"* place|strong=\"H4725\"* where|strong=\"H8033\"* we|strong=\"H3068\"* live|strong=\"H3427\"* and|strong=\"H1121\"* meet|strong=\"H6440\"* with|strong=\"H3427\"* you|strong=\"H6440\"* is|strong=\"H2009\"* too|strong=\"H4480\"* small|strong=\"H6862\"* for|strong=\"H6440\"* us|strong=\"H4994\"*." + }, + { + "verseNum": 2, + "text": "Please|strong=\"H4994\"* let|strong=\"H4994\"* us|strong=\"H4994\"* go|strong=\"H3212\"* to|strong=\"H5704\"* the|strong=\"H3947\"* Jordan|strong=\"H3383\"*, and|strong=\"H3212\"* each|strong=\"H3947\"* man take|strong=\"H3947\"* a|strong=\"H3068\"* beam|strong=\"H6982\"* from|strong=\"H3947\"* there|strong=\"H8033\"*, and|strong=\"H3212\"* let|strong=\"H4994\"*’s make|strong=\"H6213\"* us|strong=\"H4994\"* a|strong=\"H3068\"* place|strong=\"H4725\"* there|strong=\"H8033\"*, where|strong=\"H8033\"* we|strong=\"H3068\"* may|strong=\"H4994\"* live|strong=\"H3427\"*.”" + }, + { + "verseNum": 3, + "text": "One said, “Please|strong=\"H4994\"* be|strong=\"H4994\"* pleased|strong=\"H2974\"* to|strong=\"H3212\"* go|strong=\"H3212\"* with|strong=\"H3212\"* your|strong=\"H4994\"* servants|strong=\"H5650\"*.”" + }, + { + "verseNum": 4, + "text": "So he|strong=\"H3212\"* went|strong=\"H3212\"* with|strong=\"H3212\"* them. When they came|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3212\"* Jordan|strong=\"H3383\"*, they cut|strong=\"H1504\"* down|strong=\"H1504\"* wood|strong=\"H6086\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H1961\"* as|strong=\"H1961\"* one|strong=\"H1931\"* was|strong=\"H1961\"* cutting down|strong=\"H5307\"* a|strong=\"H3068\"* tree, the|strong=\"H1961\"* ax head|strong=\"H1270\"* fell|strong=\"H5307\"* into|strong=\"H5307\"* the|strong=\"H1961\"* water|strong=\"H4325\"*. Then|strong=\"H1961\"* he|strong=\"H1931\"* cried|strong=\"H6817\"* out|strong=\"H6817\"* and|strong=\"H4325\"* said, “Alas, my|strong=\"H1961\"* master! For|strong=\"H4325\"* it|strong=\"H1931\"* was|strong=\"H1961\"* borrowed|strong=\"H7592\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H7200\"* man|strong=\"H5307\"* of|strong=\"H6086\"* God asked, “Where|strong=\"H8033\"* did|strong=\"H1270\"* it|strong=\"H7200\"* fall|strong=\"H5307\"*?” He|strong=\"H8033\"* showed|strong=\"H7200\"* him|strong=\"H7200\"* the|strong=\"H7200\"* place|strong=\"H4725\"*. He|strong=\"H8033\"* cut|strong=\"H7094\"* down|strong=\"H5307\"* a|strong=\"H3068\"* stick|strong=\"H6086\"*, threw|strong=\"H7993\"* it|strong=\"H7200\"* in|strong=\"H6086\"* there|strong=\"H8033\"*, and|strong=\"H6086\"* made|strong=\"H6086\"* the|strong=\"H7200\"* iron|strong=\"H1270\"* float|strong=\"H6687\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3027\"* said, “Take|strong=\"H3947\"* it|strong=\"H7971\"*.” So|strong=\"H3947\"* he|strong=\"H3027\"* put|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"* and|strong=\"H7971\"* took|strong=\"H3947\"* it|strong=\"H7971\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H1961\"* the|strong=\"H1961\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria was|strong=\"H1961\"* at|strong=\"H3478\"* war|strong=\"H3898\"* against|strong=\"H3898\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* he|strong=\"H3478\"* took|strong=\"H1961\"* counsel|strong=\"H3289\"* with|strong=\"H3898\"* his|strong=\"H3478\"* servants|strong=\"H5650\"*, saying, “My|strong=\"H1961\"* camp|strong=\"H8466\"* will|strong=\"H1961\"* be|strong=\"H1961\"* in|strong=\"H3478\"* such|strong=\"H6423\"* and|strong=\"H3478\"* such|strong=\"H6423\"* a|strong=\"H3068\"* place|strong=\"H4725\"*.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H3588\"* man|strong=\"H2088\"* of|strong=\"H4428\"* God|strong=\"H7971\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, saying, “Beware|strong=\"H8104\"* that|strong=\"H3588\"* you|strong=\"H3588\"* not|strong=\"H2088\"* pass|strong=\"H5674\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* Syrians are|strong=\"H3478\"* coming|strong=\"H5185\"* down|strong=\"H7971\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H8104\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* the|strong=\"H8104\"* place|strong=\"H4725\"* which|strong=\"H8033\"* the|strong=\"H8104\"* man of|strong=\"H4428\"* God|strong=\"H3808\"* told him|strong=\"H7971\"* and|strong=\"H3478\"* warned|strong=\"H2094\"* him|strong=\"H7971\"* of|strong=\"H4428\"*; and|strong=\"H3478\"* he|strong=\"H8033\"* saved|strong=\"H8104\"* himself|strong=\"H8104\"* there|strong=\"H8033\"*, not|strong=\"H3808\"* once or|strong=\"H3808\"* twice|strong=\"H8147\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria’s heart|strong=\"H3820\"* was|strong=\"H3478\"* very|strong=\"H2088\"* troubled|strong=\"H5590\"* about|strong=\"H5921\"* this|strong=\"H2088\"*. He|strong=\"H3808\"* called|strong=\"H7121\"* his|strong=\"H7121\"* servants|strong=\"H5650\"*, and|strong=\"H3478\"* said|strong=\"H1697\"* to|strong=\"H3478\"* them|strong=\"H5921\"*, “Won’t you|strong=\"H5921\"* show|strong=\"H5046\"* me|strong=\"H5046\"* which|strong=\"H7945\"* of|strong=\"H4428\"* us|strong=\"H5046\"* is|strong=\"H2088\"* for|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?”" + }, + { + "verseNum": 12, + "text": "One|strong=\"H3808\"* of|strong=\"H4428\"* his|strong=\"H5046\"* servants|strong=\"H5650\"* said|strong=\"H1696\"*, “No|strong=\"H3808\"*, my|strong=\"H5046\"* lord, O|strong=\"H3068\"* king|strong=\"H4428\"*; but|strong=\"H3588\"* Elisha, the|strong=\"H3588\"* prophet|strong=\"H5030\"* who|strong=\"H5650\"* is|strong=\"H1697\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, tells|strong=\"H1696\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* the|strong=\"H3588\"* words|strong=\"H1697\"* that|strong=\"H3588\"* you|strong=\"H3588\"* speak|strong=\"H1696\"* in|strong=\"H3478\"* your|strong=\"H3588\"* bedroom|strong=\"H2315\"*.”" + }, + { + "verseNum": 13, + "text": "He|strong=\"H1931\"* said, “Go|strong=\"H3212\"* and|strong=\"H7971\"* see|strong=\"H7200\"* where|strong=\"H2009\"* he|strong=\"H1931\"* is|strong=\"H1931\"*, that|strong=\"H7200\"* I|strong=\"H2009\"* may|strong=\"H1931\"* send|strong=\"H7971\"* and|strong=\"H7971\"* get|strong=\"H3947\"* him|strong=\"H7971\"*.”" + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H5921\"* he|strong=\"H8033\"* sent|strong=\"H7971\"* horses|strong=\"H5483\"*, chariots|strong=\"H7393\"*, and|strong=\"H7971\"* a|strong=\"H3068\"* great|strong=\"H3515\"* army|strong=\"H2428\"* there|strong=\"H8033\"*. They|strong=\"H8033\"* came by|strong=\"H5921\"* night|strong=\"H3915\"* and|strong=\"H7971\"* surrounded|strong=\"H5362\"* the|strong=\"H5921\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3318\"* the|strong=\"H6213\"* servant|strong=\"H5288\"* of|strong=\"H5892\"* the|strong=\"H6213\"* man|strong=\"H5288\"* of|strong=\"H5892\"* God had|strong=\"H2428\"* risen|strong=\"H6965\"* early|strong=\"H7925\"* and|strong=\"H6965\"* gone|strong=\"H3318\"* out|strong=\"H3318\"*, behold|strong=\"H2009\"*, an|strong=\"H6213\"* army|strong=\"H2428\"* with|strong=\"H6213\"* horses|strong=\"H5483\"* and|strong=\"H6965\"* chariots|strong=\"H7393\"* was|strong=\"H5892\"* around|strong=\"H5437\"* the|strong=\"H6213\"* city|strong=\"H5892\"*. His|strong=\"H6965\"* servant|strong=\"H5288\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H6213\"*, “Alas, my|strong=\"H6965\"* master! What|strong=\"H6213\"* shall|strong=\"H5892\"* we|strong=\"H3068\"* do|strong=\"H6213\"*?”" + }, + { + "verseNum": 16, + "text": "He|strong=\"H3588\"* answered, “Don’t be|strong=\"H3372\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* those|strong=\"H3588\"* who|strong=\"H7227\"* are|strong=\"H7227\"* with|strong=\"H7227\"* us|strong=\"H3588\"* are|strong=\"H7227\"* more|strong=\"H7227\"* than|strong=\"H3588\"* those|strong=\"H3588\"* who|strong=\"H7227\"* are|strong=\"H7227\"* with|strong=\"H7227\"* them|strong=\"H3588\"*.”" + }, + { + "verseNum": 17, + "text": "Elisha prayed|strong=\"H6419\"*, and|strong=\"H3068\"* said, “Yahweh|strong=\"H3068\"*, please|strong=\"H4994\"* open|strong=\"H6491\"* his|strong=\"H3068\"* eyes|strong=\"H5869\"*, that|strong=\"H7200\"* he|strong=\"H3068\"* may|strong=\"H4994\"* see|strong=\"H7200\"*.” Yahweh|strong=\"H3068\"* opened|strong=\"H6491\"* the|strong=\"H7200\"* young|strong=\"H5288\"* man|strong=\"H5288\"*’s eyes|strong=\"H5869\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* saw|strong=\"H7200\"*; and|strong=\"H3068\"* behold|strong=\"H2009\"*, the|strong=\"H7200\"* mountain|strong=\"H2022\"* was|strong=\"H3068\"* full|strong=\"H4390\"* of|strong=\"H3068\"* horses|strong=\"H5483\"* and|strong=\"H3068\"* chariots|strong=\"H7393\"* of|strong=\"H3068\"* fire around|strong=\"H5439\"* Elisha." + }, + { + "verseNum": 18, + "text": "When|strong=\"H3068\"* they|strong=\"H3068\"* came|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* him|strong=\"H5221\"*, Elisha prayed|strong=\"H6419\"* to|strong=\"H3381\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H1697\"*, “Please|strong=\"H4994\"* strike|strong=\"H5221\"* this|strong=\"H2088\"* people|strong=\"H1471\"* with|strong=\"H3068\"* blindness|strong=\"H5575\"*.”" + }, + { + "verseNum": 19, + "text": "Elisha said to|strong=\"H3212\"* them|strong=\"H2088\"*, “This|strong=\"H2088\"* is|strong=\"H2088\"* not|strong=\"H3808\"* the|strong=\"H1870\"* way|strong=\"H1870\"*, neither|strong=\"H3808\"* is|strong=\"H2088\"* this|strong=\"H2088\"* the|strong=\"H1870\"* city|strong=\"H5892\"*. Follow|strong=\"H3212\"* me|strong=\"H3808\"*, and|strong=\"H3212\"* I|strong=\"H2088\"* will|strong=\"H5892\"* bring|strong=\"H3212\"* you|strong=\"H3808\"* to|strong=\"H3212\"* the|strong=\"H1870\"* man|strong=\"H2088\"* whom you|strong=\"H3808\"* seek|strong=\"H1245\"*.” He|strong=\"H3808\"* led|strong=\"H3212\"* them|strong=\"H2088\"* to|strong=\"H3212\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"H1961\"* they|strong=\"H3068\"* had|strong=\"H3068\"* come|strong=\"H1961\"* into|strong=\"H8432\"* Samaria|strong=\"H8111\"*, Elisha said, “Yahweh|strong=\"H3068\"*, open|strong=\"H6491\"* these men’s eyes|strong=\"H5869\"*, that|strong=\"H7200\"* they|strong=\"H3068\"* may|strong=\"H1961\"* see|strong=\"H7200\"*.”" + }, + { + "verseNum": 21, + "text": "The|strong=\"H7200\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Elisha, when|strong=\"H7200\"* he|strong=\"H5221\"* saw|strong=\"H7200\"* them|strong=\"H5221\"*, “My|strong=\"H7200\"* father, shall|strong=\"H3478\"* I|strong=\"H7200\"* strike|strong=\"H5221\"* them|strong=\"H5221\"*? Shall|strong=\"H3478\"* I|strong=\"H7200\"* strike|strong=\"H5221\"* them|strong=\"H5221\"*?”" + }, + { + "verseNum": 22, + "text": "He|strong=\"H3808\"* answered, “You|strong=\"H6440\"* shall|strong=\"H2719\"* not|strong=\"H3808\"* strike|strong=\"H5221\"* them|strong=\"H6440\"*. Would you|strong=\"H6440\"* strike|strong=\"H5221\"* those whom|strong=\"H6440\"* you|strong=\"H6440\"* have|strong=\"H3808\"* taken|strong=\"H7617\"* captive|strong=\"H7617\"* with|strong=\"H6440\"* your|strong=\"H7760\"* sword|strong=\"H2719\"* and|strong=\"H3212\"* with|strong=\"H6440\"* your|strong=\"H7760\"* bow|strong=\"H7198\"*? Set|strong=\"H7760\"* bread|strong=\"H3899\"* and|strong=\"H3212\"* water|strong=\"H4325\"* before|strong=\"H6440\"* them|strong=\"H6440\"*, that|strong=\"H4325\"* they|strong=\"H3808\"* may|strong=\"H4325\"* eat|strong=\"H3899\"* and|strong=\"H3212\"* drink|strong=\"H8354\"*, then|strong=\"H7760\"* go|strong=\"H3212\"* to|strong=\"H3212\"* their|strong=\"H7760\"* master.”" + }, + { + "verseNum": 23, + "text": "He|strong=\"H3808\"* prepared|strong=\"H3739\"* a|strong=\"H3068\"* great|strong=\"H1419\"* feast|strong=\"H3740\"* for|strong=\"H7971\"* them|strong=\"H1992\"*. After|strong=\"H1992\"* they|strong=\"H1992\"* ate and|strong=\"H3478\"* drank|strong=\"H8354\"*, he|strong=\"H3808\"* sent|strong=\"H7971\"* them|strong=\"H1992\"* away|strong=\"H7971\"* and|strong=\"H3478\"* they|strong=\"H1992\"* went|strong=\"H3212\"* to|strong=\"H3478\"* their|strong=\"H1992\"* master. So|strong=\"H7971\"* the|strong=\"H7971\"* bands|strong=\"H1416\"* of|strong=\"H1416\"* Syria stopped raiding the|strong=\"H7971\"* land of|strong=\"H1416\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 24, + "text": "After|strong=\"H5921\"* this|strong=\"H3651\"*, Benhadad king|strong=\"H4428\"* of|strong=\"H4428\"* Syria gathered|strong=\"H6908\"* all|strong=\"H3605\"* his|strong=\"H3605\"* army|strong=\"H4264\"*, and|strong=\"H4428\"* went|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H4428\"* besieged|strong=\"H6696\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 25, + "text": "There|strong=\"H2009\"* was|strong=\"H1961\"* a|strong=\"H3068\"* great|strong=\"H1419\"* famine|strong=\"H7458\"* in|strong=\"H5921\"* Samaria|strong=\"H8111\"*. Behold|strong=\"H2009\"*, they|strong=\"H5921\"* besieged|strong=\"H6696\"* it|strong=\"H5921\"* until|strong=\"H5704\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"*’s head|strong=\"H7218\"* was|strong=\"H1961\"* sold|strong=\"H1961\"* for|strong=\"H5704\"* eighty|strong=\"H8084\"* pieces of|strong=\"H7218\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* the|strong=\"H5921\"* fourth|strong=\"H7255\"* part|strong=\"H7255\"* of|strong=\"H7218\"* a|strong=\"H3068\"* kab|strong=\"H6894\"*+ 6:25 A kab was about 2 liters, so a fourth of a kab would be about 500 milliliters or about a pint* of|strong=\"H7218\"* dove’s dung for|strong=\"H5704\"* five|strong=\"H2568\"* pieces of|strong=\"H7218\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 26, + "text": "As|strong=\"H1961\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* was|strong=\"H1961\"* passing|strong=\"H5674\"* by|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*, a|strong=\"H3068\"* woman cried|strong=\"H6817\"* to|strong=\"H3478\"* him|strong=\"H5921\"*, saying, “Help|strong=\"H3467\"*, my|strong=\"H5921\"* lord, O|strong=\"H3068\"* king|strong=\"H4428\"*!”" + }, + { + "verseNum": 27, + "text": "He|strong=\"H3068\"* said, “If Yahweh|strong=\"H3068\"* doesn’t help|strong=\"H3467\"* you|strong=\"H4480\"*, where|strong=\"H4480\"* could I|strong=\"H3068\"* get help|strong=\"H3467\"* for|strong=\"H3068\"* you|strong=\"H4480\"*? From|strong=\"H4480\"* the|strong=\"H3068\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*, or|strong=\"H4480\"* from|strong=\"H4480\"* the|strong=\"H3068\"* wine|strong=\"H3342\"* press|strong=\"H3342\"*?”" + }, + { + "verseNum": 28, + "text": "Then|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"* asked|strong=\"H4100\"* her|strong=\"H5414\"*, “What|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H5414\"* problem?”" + }, + { + "verseNum": 29, + "text": "So|strong=\"H5414\"* we|strong=\"H3068\"* boiled|strong=\"H1310\"* my|strong=\"H5414\"* son|strong=\"H1121\"* and|strong=\"H1121\"* ate him|strong=\"H5414\"*; and|strong=\"H1121\"* I|strong=\"H3117\"* said to|strong=\"H5414\"* her|strong=\"H5414\"* on|strong=\"H3117\"* the|strong=\"H5414\"* next day|strong=\"H3117\"*, ‘Give|strong=\"H5414\"* up|strong=\"H5414\"* your|strong=\"H5414\"* son|strong=\"H1121\"*, that|strong=\"H3117\"* we|strong=\"H3068\"* may|strong=\"H1121\"* eat him|strong=\"H5414\"*;’ and|strong=\"H1121\"* she has|strong=\"H3117\"* hidden|strong=\"H2244\"* her|strong=\"H5414\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 30, + "text": "When|strong=\"H1961\"* the|strong=\"H5921\"* king|strong=\"H4428\"* heard|strong=\"H8085\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* woman|strong=\"H1004\"*, he|strong=\"H1931\"* tore|strong=\"H7167\"* his|strong=\"H8085\"* clothes. Now|strong=\"H1961\"* he|strong=\"H1931\"* was|strong=\"H1961\"* passing|strong=\"H5674\"* by|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*, and|strong=\"H4428\"* the|strong=\"H5921\"* people|strong=\"H5971\"* looked|strong=\"H7200\"*, and|strong=\"H4428\"* behold|strong=\"H2009\"*, he|strong=\"H1931\"* had|strong=\"H1961\"* sackcloth|strong=\"H8242\"* underneath on|strong=\"H5921\"* his|strong=\"H8085\"* body|strong=\"H1320\"*." + }, + { + "verseNum": 31, + "text": "Then|strong=\"H3254\"* he|strong=\"H3117\"* said, “God do|strong=\"H6213\"* so|strong=\"H6213\"* to|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H1121\"* more|strong=\"H3254\"* also|strong=\"H3541\"*, if|strong=\"H1121\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H1121\"* Elisha the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphat|strong=\"H8202\"* stays|strong=\"H5975\"* on|strong=\"H5921\"* him|strong=\"H5921\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 32, + "text": "But|strong=\"H3588\"* Elisha|strong=\"H3427\"* was|strong=\"H1931\"* sitting|strong=\"H3427\"* in|strong=\"H3427\"* his|strong=\"H7971\"* house|strong=\"H1004\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* were|strong=\"H1121\"* sitting|strong=\"H3427\"* with|strong=\"H1004\"* him|strong=\"H6440\"*. Then|strong=\"H2088\"* the|strong=\"H6440\"* king|strong=\"H6440\"* sent|strong=\"H7971\"* a|strong=\"H3068\"* man|strong=\"H2205\"* from|strong=\"H5493\"* before|strong=\"H6440\"* him|strong=\"H6440\"*; but|strong=\"H3588\"* before|strong=\"H6440\"* the|strong=\"H6440\"* messenger|strong=\"H4397\"* came|strong=\"H4397\"* to|strong=\"H7971\"* him|strong=\"H6440\"*, he|strong=\"H1931\"* said to|strong=\"H7971\"* the|strong=\"H6440\"* elders|strong=\"H2205\"*, “Do|strong=\"H2088\"* you|strong=\"H3588\"* see|strong=\"H7200\"* how|strong=\"H3588\"* this|strong=\"H2088\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* murderer|strong=\"H7523\"* has|strong=\"H3588\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* take|strong=\"H5493\"* away|strong=\"H5493\"* my|strong=\"H7200\"* head|strong=\"H7218\"*? Behold|strong=\"H7200\"*, when|strong=\"H3588\"* the|strong=\"H6440\"* messenger|strong=\"H4397\"* comes|strong=\"H6440\"*, shut|strong=\"H5462\"* the|strong=\"H6440\"* door|strong=\"H1817\"*, and|strong=\"H1121\"* hold|strong=\"H3905\"* the|strong=\"H6440\"* door|strong=\"H1817\"* shut|strong=\"H5462\"* against|strong=\"H6440\"* him|strong=\"H6440\"*. Isn’t the|strong=\"H6440\"* sound|strong=\"H6963\"* of|strong=\"H1121\"* his|strong=\"H7971\"* master|strong=\"H3427\"*’s feet|strong=\"H7272\"* behind him|strong=\"H6440\"*?”" + }, + { + "verseNum": 33, + "text": "While|strong=\"H5750\"* he|strong=\"H3068\"* was|strong=\"H3068\"* still|strong=\"H5750\"* talking|strong=\"H1696\"* with|strong=\"H5973\"* them|strong=\"H3381\"*, behold|strong=\"H2009\"*, the|strong=\"H3068\"* messenger|strong=\"H4397\"* came|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H1696\"* him|strong=\"H5973\"*. Then|strong=\"H1696\"* he|strong=\"H3068\"* said|strong=\"H1696\"*, “Behold|strong=\"H2009\"*, this|strong=\"H2063\"* evil|strong=\"H7451\"* is|strong=\"H3068\"* from|strong=\"H3381\"* Yahweh|strong=\"H3068\"*. Why|strong=\"H4100\"* should|strong=\"H3068\"* I|strong=\"H2009\"* wait|strong=\"H3176\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"* any|strong=\"H5750\"* longer|strong=\"H5750\"*?”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Elisha said|strong=\"H1697\"*, “Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*. Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Tomorrow|strong=\"H4279\"* about|strong=\"H1697\"* this|strong=\"H3541\"* time|strong=\"H6256\"* a|strong=\"H3068\"* seah+ 7:1 1 seah is about 7 liters or 1.9 gallons or 0.8 pecks* of|strong=\"H3068\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* will|strong=\"H3068\"* be|strong=\"H1697\"* sold for|strong=\"H3068\"* a|strong=\"H3068\"* shekel|strong=\"H8255\"*,+ 7:1 A shekel is about 10 grams or about 0.35 ounces. In this context, it was probably a silver coin weighing that much.* and|strong=\"H3068\"* two seahs|strong=\"H5429\"* of|strong=\"H3068\"* barley|strong=\"H8184\"* for|strong=\"H3068\"* a|strong=\"H3068\"* shekel|strong=\"H8255\"*, in|strong=\"H3068\"* the|strong=\"H8085\"* gate|strong=\"H8179\"* of|strong=\"H3068\"* Samaria|strong=\"H8111\"*.’”" + }, + { + "verseNum": 2, + "text": "Then|strong=\"H6030\"* the|strong=\"H5921\"* captain|strong=\"H7991\"* on|strong=\"H5921\"* whose|strong=\"H8033\"* hand|strong=\"H3027\"* the|strong=\"H5921\"* king|strong=\"H4428\"* leaned|strong=\"H8172\"* answered|strong=\"H6030\"* the|strong=\"H5921\"* man|strong=\"H2088\"* of|strong=\"H4428\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H1697\"*, “Behold|strong=\"H2009\"*, if|strong=\"H2005\"* Yahweh|strong=\"H3068\"* made|strong=\"H6213\"* windows in|strong=\"H5921\"* heaven|strong=\"H8064\"*, could|strong=\"H2088\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* be|strong=\"H1961\"*?”" + }, + { + "verseNum": 3, + "text": "Now|strong=\"H1961\"* there|strong=\"H1961\"* were|strong=\"H1961\"* four leprous|strong=\"H6879\"* men at|strong=\"H3427\"* the|strong=\"H5704\"* entrance|strong=\"H6607\"* of|strong=\"H3427\"* the|strong=\"H5704\"* gate|strong=\"H8179\"*. They|strong=\"H5704\"* said to|strong=\"H5704\"* one|strong=\"H1961\"* another|strong=\"H7453\"*, “Why|strong=\"H4100\"* do|strong=\"H4100\"* we|strong=\"H3068\"* sit|strong=\"H3427\"* here|strong=\"H6311\"* until|strong=\"H5704\"* we|strong=\"H3068\"* die|strong=\"H4191\"*?" + }, + { + "verseNum": 4, + "text": "If we|strong=\"H3068\"* say, ‘We|strong=\"H6258\"* will|strong=\"H5892\"* enter into|strong=\"H3212\"* the|strong=\"H8033\"* city|strong=\"H5892\"*,’ then|strong=\"H6258\"* the|strong=\"H8033\"* famine|strong=\"H7458\"* is|strong=\"H5892\"* in|strong=\"H3427\"* the|strong=\"H8033\"* city|strong=\"H5892\"*, and|strong=\"H3212\"* we|strong=\"H3068\"* will|strong=\"H5892\"* die|strong=\"H4191\"* there|strong=\"H8033\"*. If we|strong=\"H3068\"* sit|strong=\"H3427\"* still|strong=\"H3427\"* here|strong=\"H6311\"*, we|strong=\"H3068\"* also|strong=\"H4191\"* die|strong=\"H4191\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* come|strong=\"H3212\"*, and|strong=\"H3212\"* let|strong=\"H6258\"*’s surrender to|strong=\"H4191\"* the|strong=\"H8033\"* army|strong=\"H4264\"* of|strong=\"H3427\"* the|strong=\"H8033\"* Syrians. If they|strong=\"H8033\"* save|strong=\"H2421\"* us|strong=\"H2421\"* alive|strong=\"H2421\"*, we|strong=\"H3068\"* will|strong=\"H5892\"* live|strong=\"H3427\"*; and|strong=\"H3212\"* if they|strong=\"H8033\"* kill|strong=\"H4191\"* us|strong=\"H2421\"*, we|strong=\"H3068\"* will|strong=\"H5892\"* only|strong=\"H5307\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 5, + "text": "They|strong=\"H8033\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H8033\"* the|strong=\"H5704\"* twilight|strong=\"H5399\"* to|strong=\"H5704\"* go|strong=\"H6965\"* to|strong=\"H5704\"* the|strong=\"H5704\"* camp|strong=\"H4264\"* of|strong=\"H4264\"* the|strong=\"H5704\"* Syrians. When|strong=\"H5704\"* they|strong=\"H8033\"* had|strong=\"H4264\"* come|strong=\"H6965\"* to|strong=\"H5704\"* the|strong=\"H5704\"* outermost part|strong=\"H7097\"* of|strong=\"H4264\"* the|strong=\"H5704\"* camp|strong=\"H4264\"* of|strong=\"H4264\"* the|strong=\"H5704\"* Syrians, behold|strong=\"H2009\"*, no|strong=\"H6965\"* man was|strong=\"H4264\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H5921\"* the|strong=\"H5921\"* Lord+ 7:6 The word translated “Lord” is “Adonai.”* had|strong=\"H3478\"* made|strong=\"H3478\"* the|strong=\"H5921\"* army|strong=\"H2428\"* of|strong=\"H4428\"* the|strong=\"H5921\"* Syrians to|strong=\"H3478\"* hear|strong=\"H8085\"* the|strong=\"H5921\"* sound|strong=\"H6963\"* of|strong=\"H4428\"* chariots|strong=\"H7393\"* and|strong=\"H3478\"* the|strong=\"H5921\"* sound|strong=\"H6963\"* of|strong=\"H4428\"* horses|strong=\"H5483\"*, even|strong=\"H5921\"* the|strong=\"H5921\"* noise|strong=\"H6963\"* of|strong=\"H4428\"* a|strong=\"H3068\"* great|strong=\"H1419\"* army|strong=\"H2428\"*; and|strong=\"H3478\"* they|strong=\"H5921\"* said|strong=\"H8085\"* to|strong=\"H3478\"* one|strong=\"H8085\"* another, “Behold|strong=\"H2009\"*, the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* has|strong=\"H3478\"* hired|strong=\"H7936\"* against|strong=\"H5921\"* us|strong=\"H5921\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5921\"* Hittites|strong=\"H2850\"* and|strong=\"H3478\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5921\"* Egyptians|strong=\"H4714\"* to|strong=\"H3478\"* attack us|strong=\"H5921\"*.”" + }, + { + "verseNum": 7, + "text": "Therefore they|strong=\"H1931\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* fled|strong=\"H5127\"* in|strong=\"H5315\"* the|strong=\"H6965\"* twilight|strong=\"H5399\"*, and|strong=\"H6965\"* left|strong=\"H5800\"* their|strong=\"H5800\"* tents|strong=\"H4264\"*, their|strong=\"H5800\"* horses|strong=\"H5483\"*, and|strong=\"H6965\"* their|strong=\"H5800\"* donkeys|strong=\"H2543\"*, even the|strong=\"H6965\"* camp|strong=\"H4264\"* as|strong=\"H5315\"* it|strong=\"H1931\"* was|strong=\"H1931\"*, and|strong=\"H6965\"* fled|strong=\"H5127\"* for|strong=\"H5315\"* their|strong=\"H5800\"* life|strong=\"H5315\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H5704\"* these lepers|strong=\"H6879\"* came|strong=\"H3212\"* to|strong=\"H5704\"* the|strong=\"H5375\"* outermost part|strong=\"H7097\"* of|strong=\"H4264\"* the|strong=\"H5375\"* camp|strong=\"H4264\"*, they|strong=\"H8033\"* went|strong=\"H3212\"* into|strong=\"H7725\"* one|strong=\"H5375\"* tent, and|strong=\"H3701\"* ate and|strong=\"H3701\"* drank|strong=\"H8354\"*, then|strong=\"H5375\"* carried|strong=\"H5375\"* away|strong=\"H7725\"* silver|strong=\"H3701\"*, gold|strong=\"H2091\"*, and|strong=\"H3701\"* clothing and|strong=\"H3701\"* went|strong=\"H3212\"* and|strong=\"H3701\"* hid|strong=\"H2934\"* it|strong=\"H7725\"*. Then|strong=\"H5375\"* they|strong=\"H8033\"* came|strong=\"H3212\"* back|strong=\"H7725\"*, and|strong=\"H3701\"* entered|strong=\"H5704\"* into|strong=\"H7725\"* another tent and|strong=\"H3701\"* carried|strong=\"H5375\"* things from|strong=\"H7725\"* there|strong=\"H8033\"* also|strong=\"H8354\"*, and|strong=\"H3701\"* went|strong=\"H3212\"* and|strong=\"H3701\"* hid|strong=\"H2934\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H6258\"* they|strong=\"H3117\"* said|strong=\"H3651\"* to|strong=\"H5704\"* one|strong=\"H2088\"* another|strong=\"H7453\"*, “We|strong=\"H3117\"* aren’t doing|strong=\"H6213\"* right|strong=\"H3651\"*. Today|strong=\"H3117\"* is|strong=\"H2088\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H4428\"* good news|strong=\"H1309\"*, and|strong=\"H4428\"* we|strong=\"H3068\"* keep|strong=\"H6213\"* silent|strong=\"H2814\"*. If|strong=\"H3651\"* we|strong=\"H3068\"* wait|strong=\"H2442\"* until|strong=\"H5704\"* the|strong=\"H6213\"* morning|strong=\"H1242\"* light, punishment|strong=\"H5771\"* will|strong=\"H4428\"* overtake|strong=\"H4672\"* us|strong=\"H5046\"*. Now|strong=\"H6258\"* therefore|strong=\"H3651\"* come|strong=\"H3212\"*, let|strong=\"H6258\"*’s go|strong=\"H3212\"* and|strong=\"H4428\"* tell|strong=\"H5046\"* the|strong=\"H6213\"* king|strong=\"H4428\"*’s household|strong=\"H1004\"*.”" + }, + { + "verseNum": 10, + "text": "So|strong=\"H7121\"* they|strong=\"H1992\"* came and|strong=\"H6963\"* called|strong=\"H7121\"* to|strong=\"H7121\"* the|strong=\"H3588\"* city|strong=\"H5892\"* gatekeepers|strong=\"H7778\"*; and|strong=\"H6963\"* they|strong=\"H1992\"* told|strong=\"H5046\"* them|strong=\"H1992\"*, “We|strong=\"H3588\"* came to|strong=\"H7121\"* the|strong=\"H3588\"* camp|strong=\"H4264\"* of|strong=\"H5892\"* the|strong=\"H3588\"* Syrians, and|strong=\"H6963\"*, behold|strong=\"H2009\"*, there|strong=\"H8033\"* was|strong=\"H5892\"* no man there|strong=\"H8033\"*, not|strong=\"H3588\"* even|strong=\"H3588\"* a|strong=\"H3068\"* man’s voice|strong=\"H6963\"*, but|strong=\"H3588\"* the|strong=\"H3588\"* horses|strong=\"H5483\"* tied, and|strong=\"H6963\"* the|strong=\"H3588\"* donkeys|strong=\"H2543\"* tied, and|strong=\"H6963\"* the|strong=\"H3588\"* tents|strong=\"H4264\"* as|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H1992\"*.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H4428\"* the|strong=\"H7121\"* gatekeepers|strong=\"H7778\"* called|strong=\"H7121\"* out and|strong=\"H4428\"* told|strong=\"H5046\"* it|strong=\"H7121\"* to|strong=\"H4428\"* the|strong=\"H7121\"* king|strong=\"H4428\"*’s household|strong=\"H1004\"* within|strong=\"H1004\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* arose|strong=\"H6965\"* in|strong=\"H6213\"* the|strong=\"H3588\"* night|strong=\"H3915\"*, and|strong=\"H6965\"* said|strong=\"H3318\"* to|strong=\"H3318\"* his|strong=\"H3045\"* servants|strong=\"H5650\"*, “I|strong=\"H3588\"* will|strong=\"H4428\"* now|strong=\"H4994\"* show|strong=\"H6213\"* you|strong=\"H3588\"* what|strong=\"H3045\"* the|strong=\"H3588\"* Syrians have|strong=\"H3045\"* done|strong=\"H6213\"* to|strong=\"H3318\"* us|strong=\"H4994\"*. They|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H5892\"* hungry|strong=\"H7457\"*. Therefore|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3045\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H3588\"* camp|strong=\"H4264\"* to|strong=\"H3318\"* hide|strong=\"H2247\"* themselves|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H3588\"* field|strong=\"H7704\"*, saying, ‘When|strong=\"H3588\"* they|strong=\"H3588\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H3588\"* city|strong=\"H5892\"*, we|strong=\"H3068\"* shall|strong=\"H4428\"* take|strong=\"H8610\"* them|strong=\"H6213\"* alive|strong=\"H2416\"*, and|strong=\"H6965\"* get|strong=\"H6965\"* into|strong=\"H6213\"* the|strong=\"H3588\"* city|strong=\"H5892\"*.’”" + }, + { + "verseNum": 13, + "text": "One|strong=\"H3605\"* of|strong=\"H5650\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* answered|strong=\"H6030\"*, “Please|strong=\"H4994\"* let|strong=\"H7971\"* some|strong=\"H4480\"* people|strong=\"H1995\"* take|strong=\"H3947\"* five|strong=\"H2568\"* of|strong=\"H5650\"* the|strong=\"H3605\"* horses|strong=\"H5483\"* that|strong=\"H7200\"* remain|strong=\"H7604\"*, which|strong=\"H3478\"* are|strong=\"H3478\"* left|strong=\"H7604\"* in|strong=\"H3478\"* the|strong=\"H3605\"* city. Behold|strong=\"H2009\"*, they|strong=\"H3478\"* are|strong=\"H3478\"* like|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* multitude|strong=\"H1995\"* of|strong=\"H5650\"* Israel|strong=\"H3478\"* who|strong=\"H3605\"* are|strong=\"H3478\"* left|strong=\"H7604\"* in|strong=\"H3478\"* it|strong=\"H7200\"*. Behold|strong=\"H2009\"*, they|strong=\"H3478\"* are|strong=\"H3478\"* like|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* multitude|strong=\"H1995\"* of|strong=\"H5650\"* Israel|strong=\"H3478\"* who|strong=\"H3605\"* are|strong=\"H3478\"* consumed|strong=\"H8552\"*. Let|strong=\"H7971\"*’s send|strong=\"H7971\"* and|strong=\"H3478\"* see|strong=\"H7200\"*.”" + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H7971\"* they|strong=\"H3947\"* took|strong=\"H3947\"* two|strong=\"H8147\"* chariots|strong=\"H7393\"* with|strong=\"H3212\"* horses|strong=\"H5483\"*; and|strong=\"H7971\"* the|strong=\"H7200\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* out|strong=\"H7971\"* to|strong=\"H3212\"* the|strong=\"H7200\"* Syrian army|strong=\"H4264\"*, saying, “Go|strong=\"H3212\"* and|strong=\"H7971\"* see|strong=\"H7200\"*.”" + }, + { + "verseNum": 15, + "text": "They|strong=\"H5704\"* went|strong=\"H3212\"* after|strong=\"H2009\"* them|strong=\"H7725\"* to|strong=\"H5704\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*; and|strong=\"H7725\"* behold|strong=\"H2009\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* path|strong=\"H1870\"* was|strong=\"H4428\"* full|strong=\"H4392\"* of|strong=\"H4428\"* garments and|strong=\"H7725\"* equipment|strong=\"H3627\"* which|strong=\"H4397\"* the|strong=\"H3605\"* Syrians had|strong=\"H4428\"* cast|strong=\"H7993\"* away|strong=\"H7725\"* in|strong=\"H4428\"* their|strong=\"H3605\"* haste|strong=\"H2648\"*. The|strong=\"H3605\"* messengers|strong=\"H4397\"* returned|strong=\"H7725\"* and|strong=\"H7725\"* told|strong=\"H5046\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3068\"* people|strong=\"H5971\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3068\"* plundered the|strong=\"H3068\"* camp|strong=\"H4264\"* of|strong=\"H3068\"* the|strong=\"H3068\"* Syrians. So|strong=\"H1961\"* a|strong=\"H3068\"* seah+ 7:16 1 seah is about 7 liters or 1.9 gallons or 0.8 pecks* of|strong=\"H3068\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* was|strong=\"H3068\"* sold|strong=\"H3318\"* for|strong=\"H3068\"* a|strong=\"H3068\"* shekel|strong=\"H8255\"*, and|strong=\"H3068\"* two measures|strong=\"H5429\"* of|strong=\"H3068\"* barley|strong=\"H8184\"* for|strong=\"H3068\"* a|strong=\"H3068\"* shekel|strong=\"H8255\"*,+ 7:16 A shekel is about 10 grams or about 0.35 ounces. In this context, it was probably a silver coin weighing that much.* according to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* had|strong=\"H4428\"* appointed|strong=\"H6485\"* the|strong=\"H5921\"* captain|strong=\"H7991\"* on|strong=\"H5921\"* whose|strong=\"H8179\"* hand|strong=\"H3027\"* he|strong=\"H3027\"* leaned|strong=\"H8172\"* to|strong=\"H1696\"* be|strong=\"H4191\"* in|strong=\"H5921\"* charge|strong=\"H5921\"* of|strong=\"H4428\"* the|strong=\"H5921\"* gate|strong=\"H8179\"*; and|strong=\"H4428\"* the|strong=\"H5921\"* people|strong=\"H5971\"* trampled|strong=\"H7429\"* over|strong=\"H5921\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* gate|strong=\"H8179\"*, and|strong=\"H4428\"* he|strong=\"H3027\"* died|strong=\"H4191\"* as|strong=\"H5971\"* the|strong=\"H5921\"* man|strong=\"H4191\"* of|strong=\"H4428\"* God|strong=\"H3027\"* had|strong=\"H4428\"* said|strong=\"H1696\"*, who|strong=\"H5971\"* spoke|strong=\"H1696\"* when|strong=\"H1696\"* the|strong=\"H5921\"* king|strong=\"H4428\"* came|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H1696\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 18, + "text": "It|strong=\"H1961\"* happened|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H1961\"* man|strong=\"H8179\"* of|strong=\"H4428\"* God had|strong=\"H1961\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1961\"* king|strong=\"H4428\"*, saying|strong=\"H1696\"*, “Two seahs|strong=\"H5429\"*+ 7:18 1 seah is about 7 liters or 1.9 gallons or 0.8 pecks* of|strong=\"H4428\"* barley|strong=\"H8184\"* for|strong=\"H4428\"* a|strong=\"H3068\"* shekel|strong=\"H8255\"*,+ 7:18 A shekel is about 10 grams or about 0.35 ounces. In this context, it was probably a silver coin weighing that much.* and|strong=\"H4428\"* a|strong=\"H3068\"* seah of|strong=\"H4428\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* for|strong=\"H4428\"* a|strong=\"H3068\"* shekel|strong=\"H8255\"*, shall|strong=\"H4428\"* be|strong=\"H1961\"* tomorrow|strong=\"H4279\"* about|strong=\"H1961\"* this|strong=\"H1696\"* time|strong=\"H6256\"* in|strong=\"H4428\"* the|strong=\"H1961\"* gate|strong=\"H8179\"* of|strong=\"H4428\"* Samaria|strong=\"H8111\"*;”" + }, + { + "verseNum": 19, + "text": "and|strong=\"H3068\"* that|strong=\"H7200\"* captain|strong=\"H7991\"* answered|strong=\"H6030\"* the|strong=\"H7200\"* man|strong=\"H2088\"* of|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H1697\"*, “Now|strong=\"H1961\"*, behold|strong=\"H2009\"*, if|strong=\"H2005\"* Yahweh|strong=\"H3068\"* made|strong=\"H6213\"* windows in|strong=\"H3068\"* heaven|strong=\"H8064\"*, might|strong=\"H3068\"* such|strong=\"H2088\"* a|strong=\"H3068\"* thing|strong=\"H1697\"* be|strong=\"H1961\"*?” and|strong=\"H3068\"* he|strong=\"H8033\"* said|strong=\"H1697\"*, “Behold|strong=\"H2009\"*, you|strong=\"H6213\"* will|strong=\"H3068\"* see|strong=\"H7200\"* it|strong=\"H6213\"* with|strong=\"H3068\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, but|strong=\"H3808\"* will|strong=\"H3068\"* not|strong=\"H3808\"* eat of|strong=\"H3068\"* it|strong=\"H6213\"*.”" + }, + { + "verseNum": 20, + "text": "It|strong=\"H3651\"* happened|strong=\"H1961\"* like|strong=\"H1961\"* that|strong=\"H5971\"* to|strong=\"H4191\"* him|strong=\"H4191\"*, for|strong=\"H4191\"* the|strong=\"H1961\"* people|strong=\"H5971\"* trampled|strong=\"H7429\"* over|strong=\"H8179\"* him|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H1961\"* gate|strong=\"H8179\"*, and|strong=\"H5971\"* he|strong=\"H3651\"* died|strong=\"H4191\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3588\"* Elisha|strong=\"H7121\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* woman|strong=\"H1004\"* whose|strong=\"H1121\"* son|strong=\"H1121\"* he|strong=\"H3588\"* had|strong=\"H3068\"* restored|strong=\"H2421\"* to|strong=\"H1696\"* life|strong=\"H2421\"*, saying|strong=\"H1696\"*, “Arise|strong=\"H6965\"*, and|strong=\"H1121\"* go|strong=\"H3212\"*, you|strong=\"H3588\"* and|strong=\"H1121\"* your|strong=\"H3068\"* household|strong=\"H1004\"*, and|strong=\"H1121\"* stay|strong=\"H1481\"* for|strong=\"H3588\"* a|strong=\"H3068\"* while|strong=\"H3588\"* wherever you|strong=\"H3588\"* can|strong=\"H1004\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* called|strong=\"H7121\"* for|strong=\"H3588\"* a|strong=\"H3068\"* famine|strong=\"H7458\"*. It|strong=\"H7121\"* will|strong=\"H3068\"* also|strong=\"H1571\"* come|strong=\"H3212\"* on|strong=\"H3068\"* the|strong=\"H3588\"* land for|strong=\"H3588\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*.”" + }, + { + "verseNum": 2, + "text": "The|strong=\"H6213\"* woman|strong=\"H1004\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* did|strong=\"H6213\"* according to|strong=\"H3212\"* the|strong=\"H6213\"* man of|strong=\"H1004\"* God’s word|strong=\"H1697\"*. She|strong=\"H1931\"* went|strong=\"H3212\"* with|strong=\"H1004\"* her|strong=\"H1931\"* household|strong=\"H1004\"*, and|strong=\"H6965\"* lived|strong=\"H1481\"* in|strong=\"H8141\"* the|strong=\"H6213\"* land of|strong=\"H1004\"* the|strong=\"H6213\"* Philistines|strong=\"H6430\"* for|strong=\"H6213\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 3, + "text": "At|strong=\"H1004\"* the|strong=\"H7725\"* end|strong=\"H7097\"* of|strong=\"H4428\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*, the|strong=\"H7725\"* woman|strong=\"H1004\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H7725\"* land|strong=\"H7704\"* of|strong=\"H4428\"* the|strong=\"H7725\"* Philistines|strong=\"H6430\"*. Then|strong=\"H1961\"* she went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H7725\"* beg the|strong=\"H7725\"* king|strong=\"H4428\"* for|strong=\"H1004\"* her|strong=\"H3318\"* house|strong=\"H1004\"* and|strong=\"H7725\"* for|strong=\"H1004\"* her|strong=\"H3318\"* land|strong=\"H7704\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H4994\"* the|strong=\"H3605\"* king|strong=\"H4428\"* was|strong=\"H4428\"* talking|strong=\"H1696\"* with|strong=\"H6213\"* Gehazi|strong=\"H1522\"* the|strong=\"H3605\"* servant|strong=\"H5288\"* of|strong=\"H4428\"* the|strong=\"H3605\"* man|strong=\"H5288\"* of|strong=\"H4428\"* God, saying|strong=\"H1696\"*, “Please|strong=\"H4994\"* tell|strong=\"H1696\"* me|strong=\"H4994\"* all|strong=\"H3605\"* the|strong=\"H3605\"* great|strong=\"H1419\"* things|strong=\"H1419\"* that|strong=\"H3605\"* Elisha has|strong=\"H4428\"* done|strong=\"H6213\"*.”" + }, + { + "verseNum": 5, + "text": "As|strong=\"H1961\"* he|strong=\"H1931\"* was|strong=\"H1961\"* telling|strong=\"H5608\"* the|strong=\"H5921\"* king|strong=\"H4428\"* how|strong=\"H2009\"* he|strong=\"H1931\"* had|strong=\"H1961\"* restored|strong=\"H2421\"* to|strong=\"H4191\"* life|strong=\"H2421\"* him|strong=\"H5921\"* who|strong=\"H1931\"* was|strong=\"H1961\"* dead|strong=\"H4191\"*, behold|strong=\"H2009\"*, the|strong=\"H5921\"* woman|strong=\"H2088\"* whose|strong=\"H1121\"* son|strong=\"H1121\"* he|strong=\"H1931\"* had|strong=\"H1961\"* restored|strong=\"H2421\"* to|strong=\"H4191\"* life|strong=\"H2421\"* begged the|strong=\"H5921\"* king|strong=\"H4428\"* for|strong=\"H5921\"* her|strong=\"H5921\"* house|strong=\"H1004\"* and|strong=\"H1121\"* for|strong=\"H5921\"* her|strong=\"H5921\"* land|strong=\"H7704\"*. Gehazi|strong=\"H1522\"* said, “My|strong=\"H5921\"* lord, O|strong=\"H3068\"* king|strong=\"H4428\"*, this|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H5921\"* woman|strong=\"H2088\"*, and|strong=\"H1121\"* this|strong=\"H2088\"* is|strong=\"H2088\"* her|strong=\"H5921\"* son|strong=\"H1121\"*, whom Elisha|strong=\"H2421\"* restored|strong=\"H2421\"* to|strong=\"H4191\"* life|strong=\"H2421\"*.”" + }, + { + "verseNum": 6, + "text": "When|strong=\"H3117\"* the|strong=\"H3605\"* king|strong=\"H4428\"* asked|strong=\"H7592\"* the|strong=\"H3605\"* woman, she|strong=\"H5704\"* told|strong=\"H5608\"* him|strong=\"H5414\"*. So|strong=\"H5414\"* the|strong=\"H3605\"* king|strong=\"H4428\"* appointed|strong=\"H5414\"* to|strong=\"H5704\"* her|strong=\"H3605\"* a|strong=\"H3068\"* certain officer|strong=\"H5631\"*, saying, “Restore|strong=\"H7725\"* all|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H3117\"* hers, and|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fruits|strong=\"H8393\"* of|strong=\"H4428\"* the|strong=\"H3605\"* field|strong=\"H7704\"* since|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3605\"* she|strong=\"H5704\"* left|strong=\"H5800\"* the|strong=\"H3605\"* land|strong=\"H7704\"*, even|strong=\"H5704\"* until|strong=\"H5704\"* now|strong=\"H6258\"*.”" + }, + { + "verseNum": 7, + "text": "Elisha|strong=\"H5704\"* came|strong=\"H4428\"* to|strong=\"H5704\"* Damascus|strong=\"H1834\"*; and|strong=\"H4428\"* Benhadad the|strong=\"H5704\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria was|strong=\"H4428\"* sick|strong=\"H2470\"*. He|strong=\"H5704\"* was|strong=\"H4428\"* told|strong=\"H5046\"*, “The|strong=\"H5704\"* man of|strong=\"H4428\"* God has|strong=\"H4428\"* come here|strong=\"H2008\"*.”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H3947\"* king|strong=\"H4428\"* said to|strong=\"H3068\"* Hazael|strong=\"H2371\"*, “Take|strong=\"H3947\"* a|strong=\"H3068\"* present|strong=\"H4503\"* in|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* go|strong=\"H3212\"* meet|strong=\"H7125\"* the|strong=\"H3947\"* man|strong=\"H2088\"* of|strong=\"H4428\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* inquire|strong=\"H1875\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"* by|strong=\"H3027\"* him|strong=\"H3027\"*, saying, ‘Will|strong=\"H3068\"* I|strong=\"H2088\"* recover|strong=\"H2421\"* from|strong=\"H3027\"* this|strong=\"H2088\"* sickness|strong=\"H2483\"*?’”" + }, + { + "verseNum": 9, + "text": "So|strong=\"H3947\"* Hazael|strong=\"H2371\"* went|strong=\"H3212\"* to|strong=\"H3212\"* meet|strong=\"H7125\"* him|strong=\"H6440\"* and|strong=\"H1121\"* took|strong=\"H3947\"* a|strong=\"H3068\"* present|strong=\"H4503\"* with|strong=\"H6440\"* him|strong=\"H6440\"*, even of|strong=\"H1121\"* every|strong=\"H3605\"* good|strong=\"H2898\"* thing|strong=\"H2088\"* of|strong=\"H1121\"* Damascus|strong=\"H1834\"*, forty camels|strong=\"H1581\"*’ burden|strong=\"H4853\"*, and|strong=\"H1121\"* came|strong=\"H3212\"* and|strong=\"H1121\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"* and|strong=\"H1121\"* said, “Your|strong=\"H3605\"* son|strong=\"H1121\"* Benhadad king|strong=\"H4428\"* of|strong=\"H1121\"* Syria has|strong=\"H4428\"* sent|strong=\"H7971\"* me|strong=\"H6440\"* to|strong=\"H3212\"* you|strong=\"H6440\"*, saying, ‘Will|strong=\"H4428\"* I|strong=\"H2088\"* recover|strong=\"H2421\"* from|strong=\"H6440\"* this|strong=\"H2088\"* sickness|strong=\"H2483\"*?’”" + }, + { + "verseNum": 10, + "text": "Elisha|strong=\"H2421\"* said to|strong=\"H4191\"* him|strong=\"H7200\"*, “Go|strong=\"H3212\"*, tell|strong=\"H7200\"* him|strong=\"H7200\"*, ‘You|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H4191\"* recover|strong=\"H2421\"*;’ however|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* shown|strong=\"H7200\"* me|strong=\"H7200\"* that|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 11, + "text": "He|strong=\"H5704\"* settled|strong=\"H5975\"* his|strong=\"H7760\"* gaze|strong=\"H6440\"* steadfastly on|strong=\"H7760\"* him|strong=\"H6440\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* was|strong=\"H6440\"* ashamed. Then|strong=\"H5975\"* the|strong=\"H6440\"* man|strong=\"H6440\"* of|strong=\"H6440\"* God wept|strong=\"H1058\"*." + }, + { + "verseNum": 12, + "text": "Hazael|strong=\"H2371\"* said, “Why|strong=\"H4069\"* do|strong=\"H6213\"* you|strong=\"H3588\"* weep|strong=\"H1058\"*, my|strong=\"H3045\"* lord?”" + }, + { + "verseNum": 13, + "text": "Hazael|strong=\"H2371\"* said|strong=\"H1697\"*, “But|strong=\"H3588\"* what|strong=\"H4100\"* is|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*, who|strong=\"H3068\"* is|strong=\"H3068\"* but|strong=\"H3588\"* a|strong=\"H3068\"* dog|strong=\"H3611\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* could|strong=\"H2088\"* do|strong=\"H6213\"* this|strong=\"H2088\"* great|strong=\"H1419\"* thing|strong=\"H1697\"*?”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H4100\"* he|strong=\"H3212\"* departed|strong=\"H3212\"* from|strong=\"H3212\"* Elisha|strong=\"H2421\"*, and|strong=\"H3212\"* came|strong=\"H3212\"* to|strong=\"H3212\"* his|strong=\"H2421\"* master, who|strong=\"H4100\"* said to|strong=\"H3212\"* him|strong=\"H2421\"*, “What|strong=\"H4100\"* did|strong=\"H4100\"* Elisha|strong=\"H2421\"* say to|strong=\"H3212\"* you|strong=\"H4100\"*?”" + }, + { + "verseNum": 15, + "text": "On|strong=\"H5921\"* the|strong=\"H6440\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, he|strong=\"H5921\"* took|strong=\"H3947\"* a|strong=\"H3068\"* thick cloth|strong=\"H4346\"*, dipped|strong=\"H2881\"* it|strong=\"H5921\"* in|strong=\"H5921\"* water|strong=\"H4325\"*, and|strong=\"H6440\"* spread|strong=\"H6566\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H6440\"* king|strong=\"H4427\"*’s face|strong=\"H6440\"*, so|strong=\"H3947\"* that|strong=\"H4325\"* he|strong=\"H5921\"* died|strong=\"H4191\"*. Then|strong=\"H1961\"* Hazael|strong=\"H2371\"* reigned|strong=\"H4427\"* in|strong=\"H5921\"* his|strong=\"H3947\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 16, + "text": "In|strong=\"H8141\"* the|strong=\"H3092\"* fifth|strong=\"H2568\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Joram|strong=\"H3141\"* the|strong=\"H3092\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahab king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, Jehoshaphat|strong=\"H3092\"* being|strong=\"H4427\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* then|strong=\"H4428\"*, Jehoram|strong=\"H3088\"* the|strong=\"H3092\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H8147\"* was|strong=\"H1961\"* thirty-two|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* he|strong=\"H8147\"* began|strong=\"H1961\"* to|strong=\"H1961\"* reign|strong=\"H4427\"*. He|strong=\"H8147\"* reigned|strong=\"H4427\"* eight|strong=\"H8083\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H3588\"* walked|strong=\"H3212\"* in|strong=\"H3478\"* the|strong=\"H3588\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H3588\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, as|strong=\"H1961\"* did|strong=\"H6213\"* Ahab’s house|strong=\"H1004\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* married Ahab’s daughter|strong=\"H1323\"*. He|strong=\"H3588\"* did|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*." + }, + { + "verseNum": 19, + "text": "However, Yahweh|strong=\"H3068\"* would|strong=\"H3068\"* not|strong=\"H3808\"* destroy|strong=\"H7843\"* Judah|strong=\"H3063\"*, for|strong=\"H3068\"* David|strong=\"H1732\"* his|strong=\"H3605\"* servant|strong=\"H5650\"*’s sake|strong=\"H4616\"*, as|strong=\"H3117\"* he|strong=\"H3117\"* promised|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* him|strong=\"H5414\"* a|strong=\"H3068\"* lamp|strong=\"H5216\"* for|strong=\"H3068\"* his|strong=\"H3605\"* children|strong=\"H1121\"* always|strong=\"H3605\"*." + }, + { + "verseNum": 20, + "text": "In|strong=\"H5921\"* his|strong=\"H5921\"* days|strong=\"H3117\"* Edom revolted|strong=\"H6586\"* from|strong=\"H5921\"* under|strong=\"H8478\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* made|strong=\"H4427\"* a|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* themselves|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "Then|strong=\"H1961\"* Joram|strong=\"H3141\"* crossed|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H1961\"* Zair|strong=\"H6811\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* his|strong=\"H3605\"* chariots|strong=\"H7393\"* with|strong=\"H5973\"* him|strong=\"H5221\"*; and|strong=\"H6965\"* he|strong=\"H1931\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* by|strong=\"H5674\"* night|strong=\"H3915\"* and|strong=\"H6965\"* struck|strong=\"H5221\"* the|strong=\"H3605\"* Edomites who|strong=\"H3605\"* surrounded|strong=\"H5437\"* him|strong=\"H5221\"* with|strong=\"H5973\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H3605\"* chariots|strong=\"H7393\"*; and|strong=\"H6965\"* the|strong=\"H3605\"* people|strong=\"H5971\"* fled|strong=\"H5127\"* to|strong=\"H1961\"* their|strong=\"H3605\"* tents." + }, + { + "verseNum": 22, + "text": "So|strong=\"H2088\"* Edom revolted|strong=\"H6586\"* from|strong=\"H3027\"* under|strong=\"H8478\"* the|strong=\"H3117\"* hand|strong=\"H3027\"* of|strong=\"H3117\"* Judah|strong=\"H3063\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*. Then|strong=\"H2088\"* Libnah|strong=\"H3841\"* revolted|strong=\"H6586\"* at|strong=\"H3117\"* the|strong=\"H3117\"* same|strong=\"H1931\"* time|strong=\"H6256\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Joram|strong=\"H3141\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 24, + "text": "Joram|strong=\"H3141\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* was|strong=\"H1732\"* buried|strong=\"H6912\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Ahaziah his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 25, + "text": "In|strong=\"H8141\"* the|strong=\"H1121\"* twelfth|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Joram|strong=\"H3141\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahab king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, Ahaziah the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoram|strong=\"H3088\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"*." + }, + { + "verseNum": 26, + "text": "Ahaziah was|strong=\"H8034\"* twenty-two|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8147\"* began|strong=\"H3478\"* to|strong=\"H3478\"* reign|strong=\"H4427\"*; and|strong=\"H1121\"* he|strong=\"H8147\"* reigned|strong=\"H4427\"* one|strong=\"H1121\"* year|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H3478\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Athaliah|strong=\"H6271\"* the|strong=\"H8034\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Omri|strong=\"H6018\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 27, + "text": "He|strong=\"H1931\"* walked|strong=\"H3212\"* in|strong=\"H3068\"* the|strong=\"H3588\"* way|strong=\"H1870\"* of|strong=\"H1004\"* Ahab’s house|strong=\"H1004\"* and|strong=\"H3068\"* did|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H1931\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, as|strong=\"H6213\"* did|strong=\"H6213\"* Ahab’s house|strong=\"H1004\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3068\"* the|strong=\"H3588\"* son-in-law|strong=\"H2860\"* of|strong=\"H1004\"* Ahab’s house|strong=\"H1004\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H5221\"* went|strong=\"H3212\"* with|strong=\"H5973\"* Joram|strong=\"H3141\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahab to|strong=\"H3212\"* war|strong=\"H4421\"* against|strong=\"H5973\"* Hazael|strong=\"H2371\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria at|strong=\"H4421\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*, and|strong=\"H1121\"* the|strong=\"H5221\"* Syrians wounded|strong=\"H5221\"* Joram|strong=\"H3141\"*." + }, + { + "verseNum": 29, + "text": "King|strong=\"H4428\"* Joram|strong=\"H3141\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* be|strong=\"H1121\"* healed|strong=\"H7495\"* in|strong=\"H4428\"* Jezreel|strong=\"H3157\"* from|strong=\"H4480\"* the|strong=\"H7200\"* wounds|strong=\"H4347\"* which|strong=\"H1931\"* the|strong=\"H7200\"* Syrians had|strong=\"H4428\"* given|strong=\"H5221\"* him|strong=\"H5221\"* at|strong=\"H4428\"* Ramah|strong=\"H7414\"*, when|strong=\"H3588\"* he|strong=\"H1931\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* Hazael|strong=\"H2371\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria. Ahaziah the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoram|strong=\"H3088\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H7725\"* see|strong=\"H7200\"* Joram|strong=\"H3141\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahab in|strong=\"H4428\"* Jezreel|strong=\"H3157\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* sick|strong=\"H2470\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Elisha|strong=\"H7121\"* the|strong=\"H3947\"* prophet|strong=\"H5030\"* called|strong=\"H7121\"* one|strong=\"H2088\"* of|strong=\"H1121\"* the|strong=\"H3947\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3947\"* prophets|strong=\"H5030\"*, and|strong=\"H1121\"* said|strong=\"H7121\"* to|strong=\"H3212\"* him|strong=\"H7121\"*, “Put|strong=\"H2296\"* your|strong=\"H3947\"* belt on|strong=\"H2296\"* your|strong=\"H3947\"* waist|strong=\"H4975\"*, take|strong=\"H3947\"* this|strong=\"H2088\"* vial|strong=\"H6378\"* of|strong=\"H1121\"* oil|strong=\"H8081\"* in|strong=\"H3212\"* your|strong=\"H3947\"* hand|strong=\"H3027\"*, and|strong=\"H1121\"* go|strong=\"H3212\"* to|strong=\"H3212\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H7200\"* you|strong=\"H8432\"* come|strong=\"H6965\"* there|strong=\"H8033\"*, find|strong=\"H7200\"* Jehu|strong=\"H3058\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nimshi|strong=\"H5250\"*, and|strong=\"H1121\"* go|strong=\"H6965\"* in|strong=\"H8432\"* and|strong=\"H1121\"* make|strong=\"H7200\"* him|strong=\"H7200\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* from|strong=\"H1121\"* among|strong=\"H8432\"* his|strong=\"H7200\"* brothers|strong=\"H1121\"*, and|strong=\"H1121\"* take|strong=\"H1121\"* him|strong=\"H7200\"* to|strong=\"H1121\"* an|strong=\"H7200\"* inner|strong=\"H2315\"* room|strong=\"H2315\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H3947\"* take|strong=\"H3947\"* the|strong=\"H5921\"* vial|strong=\"H6378\"* of|strong=\"H4428\"* oil|strong=\"H8081\"*, and|strong=\"H3478\"* pour|strong=\"H3332\"* it|strong=\"H5921\"* on|strong=\"H5921\"* his|strong=\"H3068\"* head|strong=\"H7218\"*, and|strong=\"H3478\"* say|strong=\"H3478\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “I|strong=\"H3541\"* have|strong=\"H3068\"* anointed|strong=\"H4886\"* you|strong=\"H5921\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*.”’ Then|strong=\"H3947\"* open|strong=\"H6605\"* the|strong=\"H5921\"* door|strong=\"H1817\"*, flee|strong=\"H5127\"*, and|strong=\"H3478\"* don’t wait|strong=\"H2442\"*.”" + }, + { + "verseNum": 4, + "text": "So the|strong=\"H3212\"* young|strong=\"H5288\"* man|strong=\"H5288\"*, the|strong=\"H3212\"* young|strong=\"H5288\"* prophet|strong=\"H5030\"*, went|strong=\"H3212\"* to|strong=\"H3212\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H3427\"* he|strong=\"H3605\"* came|strong=\"H1697\"*, behold|strong=\"H2009\"*, the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1697\"* the|strong=\"H3605\"* army|strong=\"H2428\"* were|strong=\"H1697\"* sitting|strong=\"H3427\"*. Then|strong=\"H2009\"* he|strong=\"H3605\"* said|strong=\"H1697\"*, “I|strong=\"H2009\"* have|strong=\"H1697\"* a|strong=\"H3068\"* message|strong=\"H1697\"* for|strong=\"H3427\"* you|strong=\"H3605\"*, captain|strong=\"H8269\"*.”" + }, + { + "verseNum": 6, + "text": "He|strong=\"H3068\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3478\"* into|strong=\"H3332\"* the|strong=\"H3541\"* house|strong=\"H1004\"*. Then|strong=\"H6965\"* he|strong=\"H3068\"* poured|strong=\"H3332\"* the|strong=\"H3541\"* oil|strong=\"H8081\"* on|strong=\"H3068\"* his|strong=\"H3068\"* head|strong=\"H7218\"*, and|strong=\"H6965\"* said to|strong=\"H3478\"* him|strong=\"H4886\"*, “Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘I|strong=\"H3541\"* have|strong=\"H3068\"* anointed|strong=\"H4886\"* you|strong=\"H4886\"* king|strong=\"H4428\"* over|strong=\"H4428\"* the|strong=\"H3541\"* people|strong=\"H5971\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*, even|strong=\"H3068\"* over|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H3605\"* must|strong=\"H1818\"* strike|strong=\"H5221\"* your|strong=\"H3068\"* master Ahab’s house|strong=\"H1004\"*, that|strong=\"H3605\"* I|strong=\"H5650\"* may|strong=\"H3068\"* avenge|strong=\"H5358\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H1004\"* my|strong=\"H3605\"* servants|strong=\"H5650\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* servants|strong=\"H5650\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, at|strong=\"H3068\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* Jezebel." + }, + { + "verseNum": 8, + "text": "For|strong=\"H1004\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Ahab will|strong=\"H3478\"* perish|strong=\"H3772\"*. I|strong=\"H3772\"* will|strong=\"H3478\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* Ahab everyone|strong=\"H3605\"* who|strong=\"H3605\"* urinates against|strong=\"H3605\"* a|strong=\"H3068\"* wall|strong=\"H7023\"*,+ 9:8 or, male* both|strong=\"H3605\"* him|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3478\"* shut|strong=\"H6113\"* up|strong=\"H6113\"* and|strong=\"H3478\"* him|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3478\"* left|strong=\"H5800\"* at|strong=\"H3478\"* large|strong=\"H1004\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H5414\"* will|strong=\"H1121\"* make|strong=\"H5414\"* Ahab’s house|strong=\"H1004\"* like|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, and|strong=\"H1121\"* like|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Baasha|strong=\"H1201\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahijah." + }, + { + "verseNum": 10, + "text": "The|strong=\"H6605\"* dogs|strong=\"H3611\"* will|strong=\"H3611\"* eat Jezebel on|strong=\"H5127\"* the|strong=\"H6605\"* plot of|strong=\"H2506\"* ground of|strong=\"H2506\"* Jezreel|strong=\"H3157\"*, and|strong=\"H1817\"* there shall|strong=\"H3611\"* be no|strong=\"H2506\"* one to|strong=\"H5127\"* bury|strong=\"H6912\"* her|strong=\"H6605\"*.’” Then|strong=\"H2506\"* he|strong=\"H6912\"* opened|strong=\"H6605\"* the|strong=\"H6605\"* door|strong=\"H1817\"* and|strong=\"H1817\"* fled|strong=\"H5127\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H3318\"* Jehu|strong=\"H3058\"* came|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3045\"* servants|strong=\"H5650\"* of|strong=\"H5650\"* his|strong=\"H3045\"* lord and|strong=\"H5650\"* one|strong=\"H2088\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H3318\"*, “Is|strong=\"H2088\"* all|strong=\"H3045\"* well|strong=\"H7965\"*? Why|strong=\"H4069\"* did|strong=\"H5650\"* this|strong=\"H2088\"* madman|strong=\"H7696\"* come|strong=\"H3318\"* to|strong=\"H3318\"* you|strong=\"H3045\"*?”" + }, + { + "verseNum": 12, + "text": "They|strong=\"H3068\"* said, “That|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* lie|strong=\"H8267\"*. Tell|strong=\"H5046\"* us|strong=\"H4994\"* now|strong=\"H4994\"*.”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H3947\"* they|strong=\"H3947\"* hurried|strong=\"H4116\"*, and|strong=\"H4116\"* each|strong=\"H3947\"* man took|strong=\"H3947\"* his|strong=\"H7760\"* cloak, and|strong=\"H4116\"* put|strong=\"H7760\"* it|strong=\"H7760\"* under|strong=\"H8478\"* him|strong=\"H4427\"* on|strong=\"H7760\"* the|strong=\"H3947\"* top|strong=\"H1634\"* of|strong=\"H8478\"* the|strong=\"H3947\"* stairs|strong=\"H4609\"*, and|strong=\"H4116\"* blew|strong=\"H8628\"* the|strong=\"H3947\"* trumpet|strong=\"H7782\"*, saying, “Jehu|strong=\"H3058\"* is|strong=\"H3058\"* king|strong=\"H4427\"*.”" + }, + { + "verseNum": 14, + "text": "So|strong=\"H1961\"* Jehu|strong=\"H3058\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nimshi|strong=\"H5250\"* conspired|strong=\"H7194\"* against|strong=\"H6440\"* Joram|strong=\"H3141\"*. (Now|strong=\"H1961\"* Joram|strong=\"H3141\"* was|strong=\"H1961\"* defending|strong=\"H8104\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*, he|strong=\"H1931\"* and|strong=\"H1121\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, because|strong=\"H6440\"* of|strong=\"H1121\"* Hazael|strong=\"H2371\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria;" + }, + { + "verseNum": 15, + "text": "but|strong=\"H5221\"* King|strong=\"H4428\"* Joram|strong=\"H3088\"* had|strong=\"H4428\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* be|strong=\"H3426\"* healed|strong=\"H7495\"* in|strong=\"H4428\"* Jezreel|strong=\"H3157\"* of|strong=\"H4428\"* the|strong=\"H5221\"* wounds|strong=\"H4347\"* which|strong=\"H5892\"* the|strong=\"H5221\"* Syrians had|strong=\"H4428\"* given|strong=\"H5221\"* him|strong=\"H5221\"* when|strong=\"H3318\"* he|strong=\"H4480\"* fought|strong=\"H3898\"* with|strong=\"H3898\"* Hazael|strong=\"H2371\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria.) Jehu|strong=\"H3058\"* said|strong=\"H3318\"*, “If|strong=\"H3426\"* this|strong=\"H7725\"* is|strong=\"H3426\"* your|strong=\"H7725\"* thinking, then|strong=\"H3318\"* let|strong=\"H5046\"* no|strong=\"H4480\"* one|strong=\"H4480\"* escape|strong=\"H6412\"* and|strong=\"H7725\"* go|strong=\"H3212\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H5221\"* city|strong=\"H5892\"* to|strong=\"H7725\"* go|strong=\"H3212\"* to|strong=\"H7725\"* tell|strong=\"H5046\"* it|strong=\"H7725\"* in|strong=\"H4428\"* Jezreel|strong=\"H3157\"*.”" + }, + { + "verseNum": 16, + "text": "So|strong=\"H3588\"* Jehu|strong=\"H3058\"* rode|strong=\"H7392\"* in|strong=\"H4428\"* a|strong=\"H3068\"* chariot|strong=\"H7392\"* and|strong=\"H3063\"* went|strong=\"H3212\"* to|strong=\"H3381\"* Jezreel|strong=\"H3157\"*, for|strong=\"H3588\"* Joram|strong=\"H3141\"* lay|strong=\"H7901\"* there|strong=\"H8033\"*. Ahaziah king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* had|strong=\"H4428\"* come|strong=\"H3212\"* down|strong=\"H3381\"* to|strong=\"H3381\"* see|strong=\"H7200\"* Joram|strong=\"H3141\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"H3947\"* the|strong=\"H5921\"* watchman|strong=\"H6822\"* was|strong=\"H3058\"* standing|strong=\"H5975\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tower|strong=\"H4026\"* in|strong=\"H5921\"* Jezreel|strong=\"H3157\"*, and|strong=\"H7971\"* he|strong=\"H5921\"* spied|strong=\"H7200\"* the|strong=\"H5921\"* company|strong=\"H8229\"* of|strong=\"H5921\"* Jehu|strong=\"H3058\"* as|strong=\"H3947\"* he|strong=\"H5921\"* came|strong=\"H3058\"*, and|strong=\"H7971\"* said, “I|strong=\"H5921\"* see|strong=\"H7200\"* a|strong=\"H3068\"* company|strong=\"H8229\"*.”" + }, + { + "verseNum": 18, + "text": "So|strong=\"H3541\"* one|strong=\"H3808\"* went|strong=\"H3212\"* on|strong=\"H7392\"* horseback|strong=\"H5483\"* to|strong=\"H5704\"* meet|strong=\"H7125\"* him|strong=\"H5046\"*, and|strong=\"H7725\"* said, “the|strong=\"H3541\"* king|strong=\"H4428\"* says|strong=\"H3541\"*, ‘Is|strong=\"H4100\"* it|strong=\"H7725\"* peace|strong=\"H7965\"*?’”" + }, + { + "verseNum": 19, + "text": "Then|strong=\"H7971\"* he|strong=\"H7971\"* sent|strong=\"H7971\"* out|strong=\"H7971\"* a|strong=\"H3068\"* second|strong=\"H8145\"* on|strong=\"H7392\"* horseback|strong=\"H5483\"*, who|strong=\"H4428\"* came|strong=\"H4428\"* to|strong=\"H7971\"* them|strong=\"H7971\"* and|strong=\"H7971\"* said, “The|strong=\"H3541\"* king|strong=\"H4428\"* says|strong=\"H3541\"*, ‘Is|strong=\"H4100\"* it|strong=\"H5437\"* peace|strong=\"H7965\"*?’”" + }, + { + "verseNum": 20, + "text": "The|strong=\"H3588\"* watchman|strong=\"H6822\"* said, “He|strong=\"H3588\"* came|strong=\"H7725\"* to|strong=\"H5704\"* them|strong=\"H7725\"*, and|strong=\"H1121\"* isn’t coming back|strong=\"H7725\"*. The|strong=\"H3588\"* driving|strong=\"H4491\"* is|strong=\"H1121\"* like|strong=\"H3808\"* the|strong=\"H3588\"* driving|strong=\"H4491\"* of|strong=\"H1121\"* Jehu|strong=\"H3058\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nimshi|strong=\"H5250\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* drives|strong=\"H5090\"* furiously|strong=\"H7697\"*.”" + }, + { + "verseNum": 21, + "text": "Joram|strong=\"H3088\"* said|strong=\"H3318\"*, “Get|strong=\"H3318\"* ready|strong=\"H4672\"*!”" + }, + { + "verseNum": 22, + "text": "When|strong=\"H1961\"* Joram|strong=\"H3088\"* saw|strong=\"H7200\"* Jehu|strong=\"H3058\"*, he|strong=\"H5704\"* said, “Is|strong=\"H4100\"* it|strong=\"H7200\"* peace|strong=\"H7965\"*, Jehu|strong=\"H3058\"*?”" + }, + { + "verseNum": 23, + "text": "Joram|strong=\"H3088\"* turned|strong=\"H2015\"* his|strong=\"H3027\"* hands|strong=\"H3027\"* and|strong=\"H3027\"* fled|strong=\"H5127\"*, and|strong=\"H3027\"* said to|strong=\"H3027\"* Ahaziah, “This|strong=\"H3027\"* is|strong=\"H3027\"* treason, Ahaziah!”" + }, + { + "verseNum": 24, + "text": "Jehu|strong=\"H3058\"* drew|strong=\"H4390\"* his|strong=\"H5221\"* bow|strong=\"H7198\"* with|strong=\"H4390\"* his|strong=\"H5221\"* full|strong=\"H4390\"* strength|strong=\"H2220\"*, and|strong=\"H3027\"* struck|strong=\"H5221\"* Joram|strong=\"H3088\"* between his|strong=\"H5221\"* arms|strong=\"H2220\"*; and|strong=\"H3027\"* the|strong=\"H5221\"* arrow|strong=\"H2678\"* went|strong=\"H3318\"* out|strong=\"H3318\"* at|strong=\"H3318\"* his|strong=\"H5221\"* heart|strong=\"H3820\"*, and|strong=\"H3027\"* he|strong=\"H3027\"* sunk down|strong=\"H5221\"* in|strong=\"H3027\"* his|strong=\"H5221\"* chariot|strong=\"H7393\"*." + }, + { + "verseNum": 25, + "text": "Then|strong=\"H2088\"* Jehu said to|strong=\"H3068\"* Bidkar his|strong=\"H5375\"* captain|strong=\"H7991\"*, “Pick|strong=\"H5375\"* him|strong=\"H5921\"* up|strong=\"H5375\"*, and|strong=\"H3068\"* throw|strong=\"H7993\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* plot|strong=\"H2513\"* of|strong=\"H3068\"* the|strong=\"H5921\"* field|strong=\"H7704\"* of|strong=\"H3068\"* Naboth|strong=\"H5022\"* the|strong=\"H5921\"* Jezreelite|strong=\"H3158\"*; for|strong=\"H3588\"* remember|strong=\"H2142\"* how|strong=\"H3588\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* and|strong=\"H3068\"* I|strong=\"H3588\"* rode|strong=\"H7392\"* together|strong=\"H5921\"* after|strong=\"H5921\"* Ahab his|strong=\"H5375\"* father, Yahweh|strong=\"H3068\"* laid|strong=\"H5375\"* this|strong=\"H2088\"* burden|strong=\"H4853\"* on|strong=\"H5921\"* him|strong=\"H5921\"*:" + }, + { + "verseNum": 26, + "text": "‘Surely|strong=\"H7999\"* I|strong=\"H1697\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* yesterday the|strong=\"H5002\"* blood|strong=\"H1818\"* of|strong=\"H1121\"* Naboth|strong=\"H5022\"*, and|strong=\"H1121\"* the|strong=\"H5002\"* blood|strong=\"H1818\"* of|strong=\"H1121\"* his|strong=\"H5375\"* sons|strong=\"H1121\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; ‘and|strong=\"H1121\"* I|strong=\"H1697\"* will|strong=\"H3068\"* repay|strong=\"H7999\"* you|strong=\"H3808\"* in|strong=\"H3068\"* this|strong=\"H2063\"* plot|strong=\"H2513\"* of|strong=\"H1121\"* ground|strong=\"H2513\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* take|strong=\"H5375\"* and|strong=\"H1121\"* cast|strong=\"H7993\"* him|strong=\"H7200\"* onto the|strong=\"H5002\"* plot|strong=\"H2513\"* of|strong=\"H1121\"* ground|strong=\"H2513\"*, according to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*.”" + }, + { + "verseNum": 27, + "text": "But|strong=\"H7200\"* when|strong=\"H7200\"* Ahaziah the|strong=\"H7200\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* saw|strong=\"H7200\"* this|strong=\"H7200\"*, he|strong=\"H8033\"* fled|strong=\"H5127\"* by|strong=\"H1870\"* the|strong=\"H7200\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H7200\"* garden|strong=\"H1588\"* house|strong=\"H1004\"*. Jehu|strong=\"H3058\"* followed|strong=\"H7291\"* after|strong=\"H7291\"* him|strong=\"H5221\"*, and|strong=\"H3063\"* said, “Strike|strong=\"H5221\"* him|strong=\"H5221\"* also|strong=\"H1571\"* in|strong=\"H1004\"* the|strong=\"H7200\"* chariot|strong=\"H4818\"*!” They|strong=\"H8033\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* at|strong=\"H1004\"* the|strong=\"H7200\"* ascent|strong=\"H4608\"* of|strong=\"H4428\"* Gur|strong=\"H1483\"*, which|strong=\"H1004\"* is|strong=\"H1571\"* by|strong=\"H1870\"* Ibleam|strong=\"H2991\"*. He|strong=\"H8033\"* fled|strong=\"H5127\"* to|strong=\"H4191\"* Megiddo|strong=\"H4023\"*, and|strong=\"H3063\"* died|strong=\"H4191\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 28, + "text": "His|strong=\"H1732\"* servants|strong=\"H5650\"* carried|strong=\"H7392\"* him|strong=\"H5973\"* in|strong=\"H6912\"* a|strong=\"H3068\"* chariot|strong=\"H7392\"* to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H5892\"* buried|strong=\"H6912\"* him|strong=\"H5973\"* in|strong=\"H6912\"* his|strong=\"H1732\"* tomb|strong=\"H6900\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*." + }, + { + "verseNum": 29, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* eleventh|strong=\"H6240\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Joram|strong=\"H3141\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahab, Ahaziah began|strong=\"H3063\"* to|strong=\"H5921\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 30, + "text": "When|strong=\"H8085\"* Jehu|strong=\"H3058\"* had|strong=\"H5869\"* come to|strong=\"H8085\"* Jezreel|strong=\"H3157\"*, Jezebel heard|strong=\"H8085\"* of|strong=\"H7218\"* it|strong=\"H7760\"*; and|strong=\"H5869\"* she|strong=\"H2474\"* painted|strong=\"H7760\"* her|strong=\"H7760\"* eyes|strong=\"H5869\"*, and|strong=\"H5869\"* adorned|strong=\"H3190\"* her|strong=\"H7760\"* head|strong=\"H7218\"*, and|strong=\"H5869\"* looked|strong=\"H8259\"* out|strong=\"H8259\"* at|strong=\"H7218\"* the|strong=\"H8085\"* window|strong=\"H2474\"*." + }, + { + "verseNum": 31, + "text": "As|strong=\"H8179\"* Jehu|strong=\"H3058\"* entered|strong=\"H3058\"* in|strong=\"H2026\"* at|strong=\"H2026\"* the|strong=\"H2026\"* gate|strong=\"H8179\"*, she said, “Do you come in|strong=\"H2026\"* peace|strong=\"H7965\"*, Zimri|strong=\"H2174\"*, you murderer|strong=\"H2026\"* of|strong=\"H8179\"* your|strong=\"H2026\"* master?”" + }, + { + "verseNum": 32, + "text": "He|strong=\"H8147\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* face|strong=\"H6440\"* to|strong=\"H6440\"* the|strong=\"H6440\"* window|strong=\"H2474\"*, and|strong=\"H6440\"* said, “Who|strong=\"H4310\"* is|strong=\"H4310\"* on|strong=\"H5375\"* my|strong=\"H5375\"* side|strong=\"H8147\"*? Who|strong=\"H4310\"*?”" + }, + { + "verseNum": 33, + "text": "He|strong=\"H1818\"* said, “Throw|strong=\"H8058\"* her|strong=\"H8058\"* down|strong=\"H7429\"*!”" + }, + { + "verseNum": 34, + "text": "When|strong=\"H3588\"* he|strong=\"H1931\"* had|strong=\"H4428\"* come|strong=\"H4994\"* in|strong=\"H4428\"*, he|strong=\"H1931\"* ate and|strong=\"H4428\"* drank|strong=\"H8354\"*. Then|strong=\"H4428\"* he|strong=\"H1931\"* said, “See|strong=\"H6485\"* now|strong=\"H4994\"* to|strong=\"H4428\"* this|strong=\"H2063\"* cursed woman|strong=\"H1323\"*, and|strong=\"H4428\"* bury|strong=\"H6912\"* her|strong=\"H6485\"*; for|strong=\"H3588\"* she|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* king|strong=\"H4428\"*’s daughter|strong=\"H1323\"*.”" + }, + { + "verseNum": 35, + "text": "They|strong=\"H3588\"* went|strong=\"H3212\"* to|strong=\"H3212\"* bury|strong=\"H6912\"* her|strong=\"H4672\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* found|strong=\"H4672\"* no|strong=\"H3808\"* more|strong=\"H3808\"* of|strong=\"H3027\"* her|strong=\"H4672\"* than|strong=\"H3808\"* the|strong=\"H3588\"* skull|strong=\"H1538\"*, the|strong=\"H3588\"* feet|strong=\"H7272\"*, and|strong=\"H3027\"* the|strong=\"H3588\"* palms|strong=\"H3709\"* of|strong=\"H3027\"* her|strong=\"H4672\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 36, + "text": "Therefore|strong=\"H3068\"* they|strong=\"H3068\"* came|strong=\"H3068\"* back|strong=\"H7725\"*, and|strong=\"H3068\"* told|strong=\"H5046\"* him|strong=\"H5046\"*." + }, + { + "verseNum": 37, + "text": "and|strong=\"H6440\"* the|strong=\"H6440\"* body|strong=\"H5038\"* of|strong=\"H6440\"* Jezebel will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* dung|strong=\"H1828\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* field|strong=\"H7704\"* on|strong=\"H5921\"* Jezreel|strong=\"H3157\"*’s land|strong=\"H7704\"*, so|strong=\"H1961\"* that|strong=\"H3808\"* they|strong=\"H3808\"* won’t say, “This|strong=\"H2063\"* is|strong=\"H1961\"* Jezebel.”’”" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H7971\"* Ahab had|strong=\"H1121\"* seventy|strong=\"H7657\"* sons|strong=\"H1121\"* in|strong=\"H3789\"* Samaria|strong=\"H8111\"*. Jehu|strong=\"H3058\"* wrote|strong=\"H3789\"* letters|strong=\"H5612\"* and|strong=\"H1121\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* to|strong=\"H7971\"* Samaria|strong=\"H8111\"*, to|strong=\"H7971\"* the|strong=\"H7971\"* rulers|strong=\"H8269\"* of|strong=\"H1121\"* Jezreel|strong=\"H3157\"*, even the|strong=\"H7971\"* elders|strong=\"H2205\"*, and|strong=\"H1121\"* to|strong=\"H7971\"* those|strong=\"H1121\"* who|strong=\"H1121\"* brought|strong=\"H7971\"* up|strong=\"H1121\"* Ahab’s sons|strong=\"H1121\"*, saying," + }, + { + "verseNum": 2, + "text": "“Now|strong=\"H6258\"* as|strong=\"H5892\"* soon|strong=\"H6258\"* as|strong=\"H5892\"* this|strong=\"H2088\"* letter|strong=\"H5612\"* comes to|strong=\"H1121\"* you|strong=\"H6258\"*, since|strong=\"H6258\"* your|strong=\"H2088\"* master’s sons|strong=\"H1121\"* are|strong=\"H1121\"* with|strong=\"H5892\"* you|strong=\"H6258\"*, and|strong=\"H1121\"* you|strong=\"H6258\"* have|strong=\"H1121\"* chariots|strong=\"H7393\"* and|strong=\"H1121\"* horses|strong=\"H5483\"*, a|strong=\"H3068\"* fortified|strong=\"H4013\"* city|strong=\"H5892\"* also|strong=\"H2088\"*, and|strong=\"H1121\"* armor," + }, + { + "verseNum": 3, + "text": "select|strong=\"H7200\"* the|strong=\"H5921\"* best|strong=\"H2896\"* and|strong=\"H1121\"* fittest|strong=\"H3477\"* of|strong=\"H1121\"* your|strong=\"H5921\"* master’s sons|strong=\"H1121\"*, set|strong=\"H7760\"* him|strong=\"H5921\"* on|strong=\"H5921\"* his|strong=\"H7760\"* father|strong=\"H1121\"*’s throne|strong=\"H3678\"*, and|strong=\"H1121\"* fight|strong=\"H3898\"* for|strong=\"H5921\"* your|strong=\"H5921\"* master’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 4, + "text": "But|strong=\"H3808\"* they|strong=\"H3808\"* were|strong=\"H4428\"* exceedingly|strong=\"H3966\"* afraid|strong=\"H3372\"*, and|strong=\"H4428\"* said, “Behold|strong=\"H2009\"*, the|strong=\"H6440\"* two|strong=\"H8147\"* kings|strong=\"H4428\"* didn’t stand|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*! How|strong=\"H2009\"* then|strong=\"H2009\"* shall|strong=\"H4428\"* we|strong=\"H3068\"* stand|strong=\"H5975\"*?”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H6213\"* who|strong=\"H3605\"* was|strong=\"H5892\"* over|strong=\"H5921\"* the|strong=\"H3605\"* household|strong=\"H1004\"*, and|strong=\"H7971\"* he|strong=\"H6213\"* who|strong=\"H3605\"* was|strong=\"H5892\"* over|strong=\"H5921\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, the|strong=\"H3605\"* elders|strong=\"H2205\"* also|strong=\"H6213\"*, and|strong=\"H7971\"* those|strong=\"H3605\"* who|strong=\"H3605\"* raised the|strong=\"H3605\"* children, sent|strong=\"H7971\"* to|strong=\"H7971\"* Jehu|strong=\"H3058\"*, saying, “We|strong=\"H6213\"* are|strong=\"H5869\"* your|strong=\"H3605\"* servants|strong=\"H5650\"*, and|strong=\"H7971\"* will|strong=\"H5650\"* do|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* ask us|strong=\"H5921\"*. We|strong=\"H6213\"* will|strong=\"H5650\"* not|strong=\"H3808\"* make|strong=\"H6213\"* any|strong=\"H3605\"* man|strong=\"H2205\"* king|strong=\"H4427\"*. You|strong=\"H3605\"* do|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H1004\"* is|strong=\"H2896\"* good|strong=\"H2896\"* in|strong=\"H5921\"* your|strong=\"H3605\"* eyes|strong=\"H5869\"*.”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H3947\"* he|strong=\"H6256\"* wrote|strong=\"H3789\"* a|strong=\"H3068\"* letter|strong=\"H5612\"* the|strong=\"H8085\"* second|strong=\"H8145\"* time|strong=\"H6256\"* to|strong=\"H6256\"* them|strong=\"H3947\"*, saying|strong=\"H6963\"*, “If|strong=\"H1121\"* you|strong=\"H3947\"* are|strong=\"H1121\"* on|strong=\"H5892\"* my|strong=\"H8085\"* side, and|strong=\"H1121\"* if|strong=\"H1121\"* you|strong=\"H3947\"* will|strong=\"H4428\"* listen|strong=\"H8085\"* to|strong=\"H6256\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*, take|strong=\"H3947\"* the|strong=\"H8085\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H8085\"* men|strong=\"H1121\"* who|strong=\"H1121\"* are|strong=\"H1121\"* your|strong=\"H3947\"* master’s sons|strong=\"H1121\"*, and|strong=\"H1121\"* come|strong=\"H4279\"* to|strong=\"H6256\"* me|strong=\"H6963\"* to|strong=\"H6256\"* Jezreel|strong=\"H3157\"* by|strong=\"H5892\"* tomorrow|strong=\"H4279\"* this|strong=\"H8085\"* time|strong=\"H6256\"*.”" + }, + { + "verseNum": 7, + "text": "When|strong=\"H1961\"* the|strong=\"H3947\"* letter|strong=\"H5612\"* came|strong=\"H1961\"* to|strong=\"H7971\"* them|strong=\"H7971\"*, they|strong=\"H3947\"* took|strong=\"H3947\"* the|strong=\"H3947\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"* and|strong=\"H1121\"* killed|strong=\"H7819\"* them|strong=\"H7971\"*, even seventy|strong=\"H7657\"* people|strong=\"H1121\"*, and|strong=\"H1121\"* put|strong=\"H7760\"* their|strong=\"H3947\"* heads|strong=\"H7218\"* in|strong=\"H4428\"* baskets|strong=\"H1731\"*, and|strong=\"H1121\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* to|strong=\"H7971\"* him|strong=\"H7971\"* to|strong=\"H7971\"* Jezreel|strong=\"H3157\"*." + }, + { + "verseNum": 8, + "text": "A|strong=\"H3068\"* messenger|strong=\"H4397\"* came|strong=\"H4397\"* and|strong=\"H1121\"* told|strong=\"H5046\"* him|strong=\"H5046\"*, “They|strong=\"H5704\"* have|strong=\"H1121\"* brought|strong=\"H7760\"* the|strong=\"H7760\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H7760\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"*.”" + }, + { + "verseNum": 9, + "text": "In|strong=\"H5921\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*, he|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H5971\"* stood|strong=\"H5975\"*, and|strong=\"H5971\"* said|strong=\"H3318\"* to|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, “You|strong=\"H3605\"* are|strong=\"H5971\"* righteous|strong=\"H6662\"*. Behold|strong=\"H2009\"*, I|strong=\"H2009\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* my|strong=\"H3605\"* master and|strong=\"H5971\"* killed|strong=\"H2026\"* him|strong=\"H5921\"*, but|strong=\"H1961\"* who|strong=\"H4310\"* killed|strong=\"H2026\"* all|strong=\"H3605\"* these|strong=\"H3605\"*?" + }, + { + "verseNum": 10, + "text": "Know|strong=\"H3045\"* now|strong=\"H3588\"* that|strong=\"H3588\"* nothing|strong=\"H3808\"* will|strong=\"H3068\"* fall|strong=\"H5307\"* to|strong=\"H1696\"* the|strong=\"H5921\"* earth of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* concerning|strong=\"H5921\"* Ahab’s house|strong=\"H1004\"*. For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* done|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* he|strong=\"H3588\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* his|strong=\"H3068\"* servant|strong=\"H5650\"* Elijah|strong=\"H1696\"*.”" + }, + { + "verseNum": 11, + "text": "So|strong=\"H1115\"* Jehu|strong=\"H3058\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* that|strong=\"H3045\"* remained|strong=\"H7604\"* of|strong=\"H1004\"* Ahab’s house|strong=\"H1004\"* in|strong=\"H1004\"* Jezreel|strong=\"H3157\"*, with|strong=\"H1004\"* all|strong=\"H3605\"* his|strong=\"H3605\"* great|strong=\"H1419\"* men|strong=\"H1419\"*, his|strong=\"H3605\"* familiar|strong=\"H3045\"* friends|strong=\"H3045\"*, and|strong=\"H1419\"* his|strong=\"H3605\"* priests|strong=\"H3548\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* left|strong=\"H7604\"* him|strong=\"H5221\"* no|strong=\"H1115\"* one|strong=\"H3605\"* remaining|strong=\"H8300\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H1931\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* departed|strong=\"H3212\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Samaria|strong=\"H8111\"*. As|strong=\"H6965\"* he|strong=\"H1931\"* was|strong=\"H1931\"* at|strong=\"H6965\"* the|strong=\"H6965\"* shearing|strong=\"H7462\"* house|strong=\"H1044\"* of|strong=\"H1870\"* the|strong=\"H6965\"* shepherds|strong=\"H7462\"* on|strong=\"H1870\"* the|strong=\"H6965\"* way|strong=\"H1870\"*," + }, + { + "verseNum": 13, + "text": "Jehu|strong=\"H3058\"* met|strong=\"H4672\"* with|strong=\"H3381\"* the|strong=\"H4672\"* brothers|strong=\"H1121\"* of|strong=\"H1121\"* Ahaziah king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* said, “Who|strong=\"H4310\"* are|strong=\"H1121\"* you|strong=\"H3381\"*?”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H8147\"* said, “Take|strong=\"H8610\"* them|strong=\"H1992\"* alive|strong=\"H2416\"*!”" + }, + { + "verseNum": 15, + "text": "When|strong=\"H1121\"* he|strong=\"H8033\"* had|strong=\"H5414\"* departed|strong=\"H3212\"* from|strong=\"H5927\"* there|strong=\"H8033\"*, he|strong=\"H8033\"* met|strong=\"H4672\"* Jehonadab|strong=\"H3082\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Rechab|strong=\"H7394\"* coming|strong=\"H5927\"* to|strong=\"H3212\"* meet|strong=\"H7125\"* him|strong=\"H5414\"*. He|strong=\"H8033\"* greeted|strong=\"H1288\"* him|strong=\"H5414\"*, and|strong=\"H1121\"* said to|strong=\"H3212\"* him|strong=\"H5414\"*, “Is|strong=\"H3426\"* your|strong=\"H5414\"* heart|strong=\"H3824\"* right|strong=\"H3477\"*, as|strong=\"H3824\"* my|strong=\"H5414\"* heart|strong=\"H3824\"* is|strong=\"H3426\"* with|strong=\"H5973\"* your|strong=\"H5414\"* heart|strong=\"H3824\"*?”" + }, + { + "verseNum": 16, + "text": "He|strong=\"H3068\"* said, “Come|strong=\"H3212\"* with|strong=\"H3068\"* me|strong=\"H7200\"*, and|strong=\"H3068\"* see|strong=\"H7200\"* my|strong=\"H3068\"* zeal|strong=\"H7068\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.” So|strong=\"H7200\"* they|strong=\"H3068\"* made|strong=\"H3068\"* him|strong=\"H7200\"* ride|strong=\"H7392\"* in|strong=\"H3068\"* his|strong=\"H3068\"* chariot|strong=\"H7393\"*." + }, + { + "verseNum": 17, + "text": "When|strong=\"H5704\"* he|strong=\"H5704\"* came|strong=\"H3068\"* to|strong=\"H1696\"* Samaria|strong=\"H8111\"*, he|strong=\"H5704\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* who|strong=\"H3605\"* remained|strong=\"H7604\"* to|strong=\"H1696\"* Ahab in|strong=\"H3068\"* Samaria|strong=\"H8111\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H3068\"* destroyed|strong=\"H8045\"* them|strong=\"H5221\"*, according to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H3068\"* he|strong=\"H5704\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Elijah|strong=\"H1696\"*." + }, + { + "verseNum": 18, + "text": "Jehu|strong=\"H3058\"* gathered|strong=\"H6908\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* together|strong=\"H6908\"*, and|strong=\"H5971\"* said to|strong=\"H5971\"* them|strong=\"H5647\"*, “Ahab served|strong=\"H5647\"* Baal|strong=\"H1168\"* a|strong=\"H3068\"* little|strong=\"H4592\"*, but|strong=\"H5971\"* Jehu|strong=\"H3058\"* will|strong=\"H5971\"* serve|strong=\"H5647\"* him|strong=\"H5647\"* much|strong=\"H7235\"*." + }, + { + "verseNum": 19, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* call|strong=\"H7121\"* to|strong=\"H6213\"* me|strong=\"H7121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* of|strong=\"H2077\"* Baal|strong=\"H1168\"*, all|strong=\"H3605\"* of|strong=\"H2077\"* his|strong=\"H3605\"* worshipers|strong=\"H5647\"*, and|strong=\"H1419\"* all|strong=\"H3605\"* of|strong=\"H2077\"* his|strong=\"H3605\"* priests|strong=\"H3548\"*. Let|strong=\"H6258\"* no|strong=\"H3808\"* one|strong=\"H3605\"* be|strong=\"H3808\"* absent, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5030\"* a|strong=\"H3068\"* great|strong=\"H1419\"* sacrifice|strong=\"H2077\"* to|strong=\"H6213\"* Baal|strong=\"H1168\"*. Whoever|strong=\"H3605\"* is|strong=\"H3605\"* absent, he|strong=\"H3588\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* live|strong=\"H2421\"*.” But|strong=\"H3588\"* Jehu|strong=\"H3058\"* did|strong=\"H6213\"* deceptively, intending to|strong=\"H6213\"* destroy|strong=\"H6213\"* the|strong=\"H3605\"* worshipers|strong=\"H5647\"* of|strong=\"H2077\"* Baal|strong=\"H1168\"*." + }, + { + "verseNum": 20, + "text": "Jehu|strong=\"H3058\"* said|strong=\"H7121\"*, “Sanctify|strong=\"H6942\"* a|strong=\"H3068\"* solemn|strong=\"H6116\"* assembly|strong=\"H6116\"* for|strong=\"H7121\"* Baal|strong=\"H1168\"*!”" + }, + { + "verseNum": 21, + "text": "Jehu|strong=\"H3058\"* sent|strong=\"H7971\"* through|strong=\"H3605\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* worshipers|strong=\"H5647\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"* came|strong=\"H3478\"*, so|strong=\"H7971\"* that|strong=\"H3605\"* there|strong=\"H3605\"* was|strong=\"H3478\"* not|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H3605\"* left|strong=\"H7604\"* that|strong=\"H3605\"* didn’t come|strong=\"H3478\"*. They|strong=\"H3808\"* came|strong=\"H3478\"* into the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"*; and|strong=\"H3478\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"* was|strong=\"H3478\"* filled|strong=\"H4390\"* from|strong=\"H3478\"* one|strong=\"H3605\"* end|strong=\"H6310\"* to|strong=\"H3478\"* another|strong=\"H6310\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H3605\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H5921\"* who|strong=\"H3605\"* kept the|strong=\"H3605\"* wardrobe|strong=\"H4458\"*, “Bring|strong=\"H3318\"* out|strong=\"H3318\"* robes|strong=\"H3830\"* for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* worshipers|strong=\"H5647\"* of|strong=\"H5921\"* Baal|strong=\"H1168\"*!”" + }, + { + "verseNum": 23, + "text": "Jehu|strong=\"H3058\"* went|strong=\"H3068\"* with|strong=\"H5973\"* Jehonadab|strong=\"H3082\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Rechab|strong=\"H7394\"* into|strong=\"H7200\"* the|strong=\"H7200\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Baal|strong=\"H1168\"*. Then|strong=\"H3588\"* he|strong=\"H3588\"* said to|strong=\"H3068\"* the|strong=\"H7200\"* worshipers|strong=\"H5647\"* of|strong=\"H1121\"* Baal|strong=\"H1168\"*, “Search|strong=\"H2664\"*, and|strong=\"H1121\"* see|strong=\"H7200\"* that|strong=\"H3588\"* none|strong=\"H6435\"* of|strong=\"H1121\"* the|strong=\"H7200\"* servants|strong=\"H5650\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* are|strong=\"H1121\"* here|strong=\"H6311\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, but|strong=\"H3588\"* only|strong=\"H3588\"* the|strong=\"H7200\"* worshipers|strong=\"H5647\"* of|strong=\"H1121\"* Baal|strong=\"H1168\"*.”" + }, + { + "verseNum": 24, + "text": "So|strong=\"H6213\"* they|strong=\"H5921\"* went|strong=\"H3027\"* in|strong=\"H5921\"* to|strong=\"H6213\"* offer|strong=\"H6213\"* sacrifices|strong=\"H2077\"* and|strong=\"H3027\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*. Now|strong=\"H7760\"* Jehu|strong=\"H3058\"* had|strong=\"H3027\"* appointed|strong=\"H7760\"* for|strong=\"H5921\"* himself|strong=\"H5315\"* eighty|strong=\"H8084\"* men|strong=\"H6213\"* outside|strong=\"H2351\"*, and|strong=\"H3027\"* said, “If|strong=\"H7760\"* any|strong=\"H4480\"* of|strong=\"H3027\"* the|strong=\"H5921\"* men|strong=\"H6213\"* whom I|strong=\"H5921\"* bring|strong=\"H6213\"* into|strong=\"H5921\"* your|strong=\"H5921\"* hands|strong=\"H3027\"* escape|strong=\"H4422\"*, he|strong=\"H6213\"* who|strong=\"H5315\"* lets him|strong=\"H5921\"* go, his|strong=\"H7760\"* life|strong=\"H5315\"* shall|strong=\"H5315\"* be|strong=\"H3027\"* for|strong=\"H5921\"* the|strong=\"H5921\"* life|strong=\"H5315\"* of|strong=\"H3027\"* him|strong=\"H5921\"*.”" + }, + { + "verseNum": 25, + "text": "As|strong=\"H5704\"* soon as|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* offering|strong=\"H5930\"* the|strong=\"H5221\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, Jehu|strong=\"H3058\"* said|strong=\"H3318\"* to|strong=\"H5704\"* the|strong=\"H5221\"* guard|strong=\"H7323\"* and|strong=\"H1004\"* to|strong=\"H5704\"* the|strong=\"H5221\"* captains|strong=\"H7991\"*, “Go|strong=\"H3212\"* in|strong=\"H6213\"* and|strong=\"H1004\"* kill|strong=\"H5221\"* them|strong=\"H5221\"*! Let|strong=\"H3212\"* no|strong=\"H6213\"* one|strong=\"H6310\"* escape|strong=\"H3318\"*.” So|strong=\"H6213\"* they|strong=\"H5704\"* struck|strong=\"H5221\"* them|strong=\"H5221\"* with|strong=\"H1004\"* the|strong=\"H5221\"* edge|strong=\"H6310\"* of|strong=\"H1004\"* the|strong=\"H5221\"* sword|strong=\"H2719\"*. The|strong=\"H5221\"* guard|strong=\"H7323\"* and|strong=\"H1004\"* the|strong=\"H5221\"* captains|strong=\"H7991\"* threw|strong=\"H7993\"* the|strong=\"H5221\"* bodies out|strong=\"H3318\"*, and|strong=\"H1004\"* went|strong=\"H3212\"* to|strong=\"H5704\"* the|strong=\"H5221\"* inner|strong=\"H1004\"* shrine|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5221\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H3318\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H3318\"* pillars|strong=\"H4676\"* that|strong=\"H1004\"* were|strong=\"H1004\"* in|strong=\"H1004\"* the|strong=\"H3318\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"* and|strong=\"H1004\"* burned|strong=\"H8313\"* them|strong=\"H3318\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"H3117\"* broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H3117\"* pillar|strong=\"H4676\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"*, and|strong=\"H3117\"* broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H3117\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"*, and|strong=\"H3117\"* made|strong=\"H7760\"* it|strong=\"H7760\"* a|strong=\"H3068\"* latrine|strong=\"H4280\"*, to|strong=\"H5704\"* this|strong=\"H7760\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 28, + "text": "Thus Jehu|strong=\"H3058\"* destroyed|strong=\"H8045\"* Baal|strong=\"H1168\"* out of|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 29, + "text": "However|strong=\"H7535\"*, Jehu|strong=\"H3058\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* the|strong=\"H5493\"* sins|strong=\"H2398\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H5493\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, with|strong=\"H3478\"* which|strong=\"H3478\"* he|strong=\"H3808\"* made|strong=\"H3478\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2398\"*—the|strong=\"H5493\"* golden|strong=\"H2091\"* calves|strong=\"H5695\"* that|strong=\"H3478\"* were|strong=\"H3478\"* in|strong=\"H3478\"* Bethel|strong=\"H1008\"* and|strong=\"H1121\"* that|strong=\"H3478\"* were|strong=\"H3478\"* in|strong=\"H3478\"* Dan|strong=\"H1835\"*." + }, + { + "verseNum": 30, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* Jehu|strong=\"H3058\"*, “Because|strong=\"H5921\"* you|strong=\"H3605\"* have|strong=\"H3068\"* done|strong=\"H6213\"* well|strong=\"H2895\"* in|strong=\"H3427\"* executing|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* is|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3427\"* my|strong=\"H3605\"* eyes|strong=\"H5869\"*, and|strong=\"H1121\"* have|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3478\"* Ahab’s house|strong=\"H1004\"* according|strong=\"H5921\"* to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H3068\"* in|strong=\"H3427\"* my|strong=\"H3605\"* heart|strong=\"H3824\"*, your|strong=\"H3068\"* descendants|strong=\"H1121\"* shall|strong=\"H3068\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H3605\"* throne|strong=\"H3678\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3605\"* fourth|strong=\"H7243\"* generation.”" + }, + { + "verseNum": 31, + "text": "But|strong=\"H3808\"* Jehu|strong=\"H3058\"* took|strong=\"H5493\"* no|strong=\"H3808\"* heed|strong=\"H8104\"* to|strong=\"H3478\"* walk|strong=\"H3212\"* in|strong=\"H5921\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* heart|strong=\"H3824\"*. He|strong=\"H3068\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* the|strong=\"H3605\"* sins|strong=\"H2403\"* of|strong=\"H3068\"* Jeroboam|strong=\"H3379\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3068\"* made|strong=\"H3478\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*." + }, + { + "verseNum": 32, + "text": "In|strong=\"H3478\"* those|strong=\"H1992\"* days|strong=\"H3117\"* Yahweh|strong=\"H3068\"* began|strong=\"H2490\"* to|strong=\"H3478\"* cut|strong=\"H7096\"* away|strong=\"H3605\"* parts of|strong=\"H3068\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* Hazael|strong=\"H2371\"* struck|strong=\"H5221\"* them|strong=\"H1992\"* in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*" + }, + { + "verseNum": 33, + "text": "from|strong=\"H4480\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* eastward|strong=\"H4217\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H4480\"* Gilead|strong=\"H1568\"*, the|strong=\"H3605\"* Gadites|strong=\"H1425\"*, and|strong=\"H1568\"* the|strong=\"H3605\"* Reubenites|strong=\"H7206\"*, and|strong=\"H1568\"* the|strong=\"H3605\"* Manassites|strong=\"H4520\"*, from|strong=\"H4480\"* Aroer|strong=\"H6177\"*, which|strong=\"H5158\"* is|strong=\"H3605\"* by|strong=\"H5921\"* the|strong=\"H3605\"* valley|strong=\"H5158\"* of|strong=\"H4480\"* the|strong=\"H3605\"* Arnon, even|strong=\"H5921\"* Gilead|strong=\"H1568\"* and|strong=\"H1568\"* Bashan|strong=\"H1316\"*." + }, + { + "verseNum": 34, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Jehu|strong=\"H3058\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* his|strong=\"H3605\"* might|strong=\"H1369\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 35, + "text": "Jehu|strong=\"H3058\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers; and|strong=\"H1121\"* they|strong=\"H8478\"* buried|strong=\"H6912\"* him|strong=\"H4427\"* in|strong=\"H6912\"* Samaria|strong=\"H8111\"*. Jehoahaz|strong=\"H3059\"* his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"H5921\"* time|strong=\"H3117\"* that|strong=\"H3117\"* Jehu|strong=\"H3058\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* Samaria|strong=\"H8111\"* was|strong=\"H3478\"* twenty-eight|strong=\"H6242\"* years|strong=\"H8141\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3588\"* when|strong=\"H3588\"* Athaliah|strong=\"H6271\"* the|strong=\"H3605\"* mother of|strong=\"H1121\"* Ahaziah saw|strong=\"H7200\"* that|strong=\"H3588\"* her|strong=\"H3605\"* son|strong=\"H1121\"* was|strong=\"H4467\"* dead|strong=\"H4191\"*, she|strong=\"H3588\"* arose|strong=\"H6965\"* and|strong=\"H1121\"* destroyed all|strong=\"H3605\"* the|strong=\"H3605\"* royal|strong=\"H4467\"* offspring|strong=\"H2233\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"H3808\"* Jehosheba|strong=\"H3089\"*, the|strong=\"H6440\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* King|strong=\"H4428\"* Joram|strong=\"H3141\"*, sister of|strong=\"H1121\"* Ahaziah, took|strong=\"H3947\"* Joash|strong=\"H3101\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahaziah, and|strong=\"H1121\"* stole|strong=\"H1589\"* him|strong=\"H6440\"* away|strong=\"H3947\"* from|strong=\"H6440\"* among|strong=\"H8432\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* slain|strong=\"H4191\"*, even|strong=\"H3808\"* him|strong=\"H6440\"* and|strong=\"H1121\"* his|strong=\"H3947\"* nurse|strong=\"H3243\"*, and|strong=\"H1121\"* put|strong=\"H4191\"* them|strong=\"H6440\"* in|strong=\"H4428\"* the|strong=\"H6440\"* bedroom|strong=\"H2315\"*; and|strong=\"H1121\"* they|strong=\"H3808\"* hid|strong=\"H5641\"* him|strong=\"H6440\"* from|strong=\"H6440\"* Athaliah|strong=\"H6271\"*, so|strong=\"H3947\"* that|strong=\"H4428\"* he|strong=\"H3808\"* was|strong=\"H4428\"* not|strong=\"H3808\"* slain|strong=\"H4191\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H1004\"* her|strong=\"H5921\"* hidden|strong=\"H2244\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* six|strong=\"H8337\"* years|strong=\"H8141\"* while|strong=\"H1961\"* Athaliah|strong=\"H6271\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* the|strong=\"H5921\"* land." + }, + { + "verseNum": 4, + "text": "In|strong=\"H8141\"* the|strong=\"H7200\"* seventh|strong=\"H7637\"* year|strong=\"H8141\"* Jehoiada|strong=\"H3077\"* sent|strong=\"H7971\"* and|strong=\"H3967\"* fetched|strong=\"H3947\"* the|strong=\"H7200\"* captains|strong=\"H8269\"* over|strong=\"H4428\"* hundreds|strong=\"H3967\"* of|strong=\"H1121\"* the|strong=\"H7200\"* Carites|strong=\"H3746\"* and|strong=\"H3967\"* of|strong=\"H1121\"* the|strong=\"H7200\"* guard|strong=\"H7323\"*, and|strong=\"H3967\"* brought|strong=\"H3947\"* them|strong=\"H1992\"* to|strong=\"H3068\"* him|strong=\"H7971\"* into|strong=\"H3947\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H3967\"* he|strong=\"H3068\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1004\"* them|strong=\"H1992\"*, and|strong=\"H3967\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1004\"* them|strong=\"H1992\"* in|strong=\"H8141\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3967\"* showed|strong=\"H7200\"* them|strong=\"H1992\"* the|strong=\"H7200\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H6213\"* commanded|strong=\"H6680\"* them|strong=\"H6213\"*, saying|strong=\"H1697\"*, “This|strong=\"H2088\"* is|strong=\"H2088\"* what|strong=\"H1697\"* you|strong=\"H6680\"* must do|strong=\"H6213\"*: a|strong=\"H3068\"* third|strong=\"H7992\"* of|strong=\"H4428\"* you|strong=\"H6680\"*, who|strong=\"H8104\"* come in|strong=\"H6213\"* on|strong=\"H1004\"* the|strong=\"H6213\"* Sabbath|strong=\"H7676\"*, shall|strong=\"H4428\"* be|strong=\"H1697\"* keepers|strong=\"H8104\"* of|strong=\"H4428\"* the|strong=\"H6213\"* watch|strong=\"H8104\"* of|strong=\"H4428\"* the|strong=\"H6213\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*;" + }, + { + "verseNum": 6, + "text": "a|strong=\"H3068\"* third|strong=\"H7992\"* of|strong=\"H1004\"* you|strong=\"H8104\"* shall|strong=\"H1004\"* be|strong=\"H1004\"* at|strong=\"H1004\"* the|strong=\"H8104\"* gate|strong=\"H8179\"* Sur|strong=\"H5495\"*; and|strong=\"H1004\"* a|strong=\"H3068\"* third|strong=\"H7992\"* of|strong=\"H1004\"* you|strong=\"H8104\"* at|strong=\"H1004\"* the|strong=\"H8104\"* gate|strong=\"H8179\"* behind the|strong=\"H8104\"* guard|strong=\"H8104\"*. So|strong=\"H7323\"* you|strong=\"H8104\"* shall|strong=\"H1004\"* keep|strong=\"H8104\"* the|strong=\"H8104\"* watch|strong=\"H8104\"* of|strong=\"H1004\"* the|strong=\"H8104\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* be|strong=\"H1004\"* a|strong=\"H3068\"* barrier." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* two|strong=\"H8147\"* companies of|strong=\"H4428\"* you|strong=\"H3605\"*, even|strong=\"H3068\"* all|strong=\"H3605\"* who|strong=\"H3605\"* go|strong=\"H3318\"* out|strong=\"H3318\"* on|strong=\"H3027\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"*, shall|strong=\"H3068\"* keep|strong=\"H8104\"* the|strong=\"H3605\"* watch|strong=\"H8104\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* around|strong=\"H3027\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H5921\"* shall|strong=\"H4428\"* surround|strong=\"H5439\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, every|strong=\"H5439\"* man|strong=\"H4191\"* with|strong=\"H5921\"* his|strong=\"H5921\"* weapons|strong=\"H3627\"* in|strong=\"H5921\"* his|strong=\"H5921\"* hand|strong=\"H3027\"*; and|strong=\"H4428\"* he|strong=\"H3027\"* who|strong=\"H4428\"* comes|strong=\"H3318\"* within|strong=\"H5921\"* the|strong=\"H5921\"* ranks|strong=\"H7713\"*, let|strong=\"H1961\"* him|strong=\"H5921\"* be|strong=\"H1961\"* slain|strong=\"H4191\"*. Be|strong=\"H1961\"* with|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* when|strong=\"H1961\"* he|strong=\"H3027\"* goes|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H4428\"* when|strong=\"H1961\"* he|strong=\"H3027\"* comes|strong=\"H3318\"* in|strong=\"H5921\"*.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H3605\"* captains|strong=\"H8269\"* over|strong=\"H8269\"* hundreds|strong=\"H3967\"* did|strong=\"H6213\"* according to|strong=\"H3318\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Jehoiada|strong=\"H3077\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* commanded|strong=\"H6680\"*; and|strong=\"H3967\"* they|strong=\"H6213\"* each|strong=\"H3605\"* took|strong=\"H3947\"* his|strong=\"H3605\"* men|strong=\"H6213\"*, those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H8269\"* to|strong=\"H3318\"* come|strong=\"H3318\"* in|strong=\"H6213\"* on|strong=\"H3318\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* with|strong=\"H5973\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H8269\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* on|strong=\"H3318\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"*, and|strong=\"H3967\"* came|strong=\"H3318\"* to|strong=\"H3318\"* Jehoiada|strong=\"H3077\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5414\"* priest|strong=\"H3548\"* delivered|strong=\"H5414\"* to|strong=\"H3068\"* the|strong=\"H5414\"* captains|strong=\"H8269\"* over|strong=\"H4428\"* hundreds|strong=\"H3967\"* the|strong=\"H5414\"* spears|strong=\"H2595\"* and|strong=\"H3967\"* shields|strong=\"H7982\"* that|strong=\"H3068\"* had|strong=\"H3068\"* been|strong=\"H3068\"* King|strong=\"H4428\"* David|strong=\"H1732\"*’s, which|strong=\"H3068\"* were|strong=\"H1732\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* guard|strong=\"H7323\"* stood|strong=\"H5975\"*, every|strong=\"H5439\"* man with|strong=\"H1004\"* his|strong=\"H5921\"* weapons|strong=\"H3627\"* in|strong=\"H5921\"* his|strong=\"H5921\"* hand|strong=\"H3027\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* right|strong=\"H3233\"* side|strong=\"H3802\"* of|strong=\"H4428\"* the|strong=\"H5921\"* house|strong=\"H1004\"* to|strong=\"H5704\"* the|strong=\"H5921\"* left|strong=\"H8042\"* side|strong=\"H3802\"* of|strong=\"H4428\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, along|strong=\"H5921\"* by|strong=\"H3027\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* and|strong=\"H4428\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, around|strong=\"H5439\"* the|strong=\"H5921\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 12, + "text": "Then|strong=\"H3318\"* he|strong=\"H5414\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"*, and|strong=\"H1121\"* put|strong=\"H5414\"* the|strong=\"H5921\"* crown|strong=\"H5145\"* on|strong=\"H5921\"* him|strong=\"H5414\"*, and|strong=\"H1121\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* the|strong=\"H5921\"* covenant; and|strong=\"H1121\"* they|strong=\"H5921\"* made|strong=\"H5414\"* him|strong=\"H5414\"* king|strong=\"H4428\"* and|strong=\"H1121\"* anointed|strong=\"H4886\"* him|strong=\"H5414\"*; and|strong=\"H1121\"* they|strong=\"H5921\"* clapped|strong=\"H5221\"* their|strong=\"H5414\"* hands|strong=\"H3709\"*, and|strong=\"H1121\"* said|strong=\"H3318\"*, “Long|strong=\"H5921\"* live|strong=\"H2421\"* the|strong=\"H5921\"* king|strong=\"H4428\"*!”" + }, + { + "verseNum": 13, + "text": "When|strong=\"H8085\"* Athaliah|strong=\"H6271\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H1004\"* the|strong=\"H8085\"* guard|strong=\"H7323\"* and|strong=\"H3068\"* of|strong=\"H1004\"* the|strong=\"H8085\"* people|strong=\"H5971\"*, she came|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H8085\"* people|strong=\"H5971\"* into Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*;" + }, + { + "verseNum": 14, + "text": "and|strong=\"H4428\"* she|strong=\"H7121\"* looked|strong=\"H7200\"*, and|strong=\"H4428\"* behold|strong=\"H2009\"*, the|strong=\"H3605\"* king|strong=\"H4428\"* stood|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H3605\"* pillar|strong=\"H5982\"*, as|strong=\"H5971\"* the|strong=\"H3605\"* tradition was|strong=\"H4428\"*, with|strong=\"H5921\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* and|strong=\"H4428\"* the|strong=\"H3605\"* trumpets|strong=\"H2689\"* by|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*; and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land rejoiced|strong=\"H8056\"*, and|strong=\"H4428\"* blew|strong=\"H8628\"* trumpets|strong=\"H2689\"*. Then|strong=\"H2009\"* Athaliah|strong=\"H6271\"* tore|strong=\"H7167\"* her|strong=\"H3605\"* clothes and|strong=\"H4428\"* cried|strong=\"H7121\"*, “Treason|strong=\"H7195\"*! Treason|strong=\"H7195\"*!”" + }, + { + "verseNum": 15, + "text": "Jehoiada|strong=\"H3077\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* commanded|strong=\"H6680\"* the|strong=\"H3588\"* captains|strong=\"H8269\"* of|strong=\"H1004\"* hundreds|strong=\"H3967\"* who|strong=\"H3068\"* were|strong=\"H8269\"* set|strong=\"H6485\"* over|strong=\"H8269\"* the|strong=\"H3588\"* army|strong=\"H2428\"*, and|strong=\"H3967\"* said|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H6680\"*, “Bring|strong=\"H3318\"* her|strong=\"H3318\"* out|strong=\"H3318\"* between the|strong=\"H3588\"* ranks|strong=\"H7713\"*. Kill|strong=\"H4191\"* anyone|strong=\"H3588\"* who|strong=\"H3068\"* follows her|strong=\"H3318\"* with|strong=\"H1004\"* the|strong=\"H3588\"* sword|strong=\"H2719\"*.” For|strong=\"H3588\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* said|strong=\"H3318\"*, “Don’t let|strong=\"H6485\"* her|strong=\"H3318\"* be|strong=\"H4191\"* slain|strong=\"H4191\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 16, + "text": "So|strong=\"H4191\"* they|strong=\"H8033\"* seized|strong=\"H7760\"* her|strong=\"H7760\"*; and|strong=\"H4428\"* she went|strong=\"H4428\"* by|strong=\"H3027\"* the|strong=\"H7760\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H7760\"* horses|strong=\"H5483\"*’ entry|strong=\"H3996\"* to|strong=\"H4191\"* the|strong=\"H7760\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H4428\"* she was|strong=\"H4428\"* slain|strong=\"H4191\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 17, + "text": "Jehoiada|strong=\"H3077\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* between Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* the|strong=\"H3068\"* king|strong=\"H4428\"* and|strong=\"H3068\"* the|strong=\"H3068\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* should|strong=\"H3068\"* be|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s people|strong=\"H5971\"*; also|strong=\"H3068\"* between the|strong=\"H3068\"* king|strong=\"H4428\"* and|strong=\"H3068\"* the|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 18, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H1004\"* the|strong=\"H3605\"* land|strong=\"H6440\"* went|strong=\"H5971\"* to|strong=\"H3068\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"*, and|strong=\"H3068\"* broke|strong=\"H7665\"* it|strong=\"H7760\"* down|strong=\"H5422\"*. They|strong=\"H3068\"* broke|strong=\"H7665\"* his|strong=\"H3605\"* altars|strong=\"H4196\"* and|strong=\"H3068\"* his|strong=\"H3605\"* images|strong=\"H6754\"* in|strong=\"H5921\"* pieces|strong=\"H7665\"* thoroughly|strong=\"H3190\"*, and|strong=\"H3068\"* killed|strong=\"H2026\"* Mattan|strong=\"H4977\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"* before|strong=\"H6440\"* the|strong=\"H3605\"* altars|strong=\"H4196\"*. The|strong=\"H3605\"* priest|strong=\"H3548\"* appointed|strong=\"H7760\"* officers|strong=\"H6486\"* over|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3068\"* took|strong=\"H3947\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* over|strong=\"H5921\"* hundreds|strong=\"H3967\"*, and|strong=\"H3967\"* the|strong=\"H3605\"* Carites|strong=\"H3746\"*, and|strong=\"H3967\"* the|strong=\"H3605\"* guard|strong=\"H7323\"*, and|strong=\"H3967\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land; and|strong=\"H3967\"* they|strong=\"H3068\"* brought|strong=\"H3947\"* down|strong=\"H3381\"* the|strong=\"H3605\"* king|strong=\"H4428\"* from|strong=\"H3381\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3967\"* came|strong=\"H3381\"* by|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H4428\"* the|strong=\"H3605\"* guard|strong=\"H7323\"* to|strong=\"H3381\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*. He|strong=\"H3068\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H3605\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"*." + }, + { + "verseNum": 20, + "text": "So|strong=\"H4191\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land rejoiced|strong=\"H8055\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* city|strong=\"H5892\"* was|strong=\"H5892\"* quiet|strong=\"H8252\"*. They|strong=\"H5971\"* had|strong=\"H4428\"* slain|strong=\"H4191\"* Athaliah|strong=\"H6271\"* with|strong=\"H1004\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* at|strong=\"H1004\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 21, + "text": "Jehoash was seven years old when he began to reign." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Jehoash|strong=\"H3060\"* began to|strong=\"H1121\"* reign|strong=\"H4427\"* in|strong=\"H8141\"* the|strong=\"H3060\"* seventh|strong=\"H7651\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Jehu, and|strong=\"H1121\"* he|strong=\"H8141\"* reigned|strong=\"H4427\"* forty years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem. His|strong=\"H3060\"* mother’s name was|strong=\"H1121\"* Zibiah of|strong=\"H1121\"* Beersheba." + }, + { + "verseNum": 2, + "text": "Jehoash|strong=\"H3060\"* did|strong=\"H3389\"* that|strong=\"H8141\"* which was|strong=\"H8034\"* right in|strong=\"H8141\"* Yahweh|strong=\"H3068\"*’s eyes all his|strong=\"H3060\"* days|strong=\"H8141\"* in|strong=\"H8141\"* which Jehoiada the|strong=\"H3058\"* priest instructed him|strong=\"H4427\"*." + }, + { + "verseNum": 3, + "text": "However, the|strong=\"H3605\"* high|strong=\"H6213\"* places|strong=\"H3605\"* were|strong=\"H3117\"* not|strong=\"H6213\"* taken|strong=\"H6213\"* away|strong=\"H3605\"*. The|strong=\"H3605\"* people|strong=\"H5869\"* still sacrificed|strong=\"H6213\"* and|strong=\"H3068\"* burned incense in|strong=\"H3068\"* the|strong=\"H3605\"* high|strong=\"H6213\"* places|strong=\"H3605\"*." + }, + { + "verseNum": 4, + "text": "Jehoash said to|strong=\"H5971\"* the|strong=\"H5493\"* priests|strong=\"H3808\"*, “All|strong=\"H5750\"* the|strong=\"H5493\"* money of|strong=\"H5971\"* the|strong=\"H5493\"* holy things|strong=\"H3808\"* that|strong=\"H5971\"* is|strong=\"H5971\"* brought|strong=\"H5493\"* into|strong=\"H5493\"* Yahweh|strong=\"H3068\"*’s house, in|strong=\"H5493\"* current money, the|strong=\"H5493\"* money of|strong=\"H5971\"* the|strong=\"H5493\"* people|strong=\"H5971\"* for|strong=\"H5971\"* whom|strong=\"H5971\"* each|strong=\"H5971\"* man is|strong=\"H5971\"* evaluated,+ 12:4 Exodus 30:12* and|strong=\"H5971\"* all|strong=\"H5750\"* the|strong=\"H5493\"* money that|strong=\"H5971\"* it|strong=\"H3808\"* comes into|strong=\"H5493\"* any|strong=\"H5750\"* man’s heart to|strong=\"H5971\"* bring into|strong=\"H5493\"* Yahweh|strong=\"H3068\"*’s house," + }, + { + "verseNum": 5, + "text": "let|strong=\"H5315\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* take|strong=\"H5674\"* it|strong=\"H5921\"* to|strong=\"H3068\"* them|strong=\"H5921\"*, each|strong=\"H3605\"* man|strong=\"H5315\"* from|strong=\"H5921\"* his|strong=\"H3605\"* donor; and|strong=\"H3068\"* they|strong=\"H3068\"* shall|strong=\"H3548\"* repair the|strong=\"H3605\"* damage to|strong=\"H3068\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, wherever|strong=\"H3605\"* any|strong=\"H3605\"* damage is|strong=\"H3068\"* found|strong=\"H3068\"*.”" + }, + { + "verseNum": 6, + "text": "But|strong=\"H2388\"* it|strong=\"H8033\"* was|strong=\"H1004\"* so|strong=\"H3947\"*, that|strong=\"H3605\"* in|strong=\"H1004\"* the|strong=\"H3605\"* twenty-third year of|strong=\"H1004\"* King Jehoash the|strong=\"H3605\"* priests|strong=\"H3548\"* had|strong=\"H3548\"* not|strong=\"H3947\"* repaired|strong=\"H2388\"* the|strong=\"H3605\"* damage to|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H1961\"* King|strong=\"H4428\"* Jehoash|strong=\"H3060\"* called for|strong=\"H1004\"* Jehoiada the|strong=\"H2388\"* priest|strong=\"H3548\"*, and|strong=\"H6242\"* for|strong=\"H1004\"* the|strong=\"H2388\"* other priests|strong=\"H3548\"*, and|strong=\"H6242\"* said to|strong=\"H1961\"* them|strong=\"H1961\"*, “Why|strong=\"H3808\"* aren’t you|strong=\"H3808\"* repairing|strong=\"H2388\"* the|strong=\"H2388\"* damage to|strong=\"H1961\"* the|strong=\"H2388\"* house|strong=\"H1004\"*? Now|strong=\"H1961\"* therefore|strong=\"H1961\"* take|strong=\"H2388\"* no|strong=\"H3808\"* more|strong=\"H3808\"* money from|strong=\"H1961\"* your|strong=\"H1961\"* treasurers, but|strong=\"H3808\"* deliver it|strong=\"H1961\"* for|strong=\"H1004\"* repair|strong=\"H2388\"* of|strong=\"H4428\"* the|strong=\"H2388\"* damage to|strong=\"H1961\"* the|strong=\"H2388\"* house|strong=\"H1004\"*.”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H3588\"* priests|strong=\"H3548\"* consented that|strong=\"H3588\"* they|strong=\"H3588\"* should|strong=\"H3588\"* take|strong=\"H3947\"* no|strong=\"H3947\"* more|strong=\"H3588\"* money|strong=\"H3701\"* from|strong=\"H3947\"* the|strong=\"H3588\"* people, and|strong=\"H3701\"* not|strong=\"H5414\"* repair|strong=\"H2388\"* the|strong=\"H3588\"* damage to|strong=\"H5414\"* the|strong=\"H3588\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H2388\"* Jehoiada the|strong=\"H3947\"* priest|strong=\"H3548\"* took|strong=\"H3947\"* a|strong=\"H3068\"* chest and|strong=\"H3701\"* bored a|strong=\"H3068\"* hole in|strong=\"H1004\"* its|strong=\"H3947\"* lid, and|strong=\"H3701\"* set it|strong=\"H3947\"* beside|strong=\"H1115\"* the|strong=\"H3947\"* altar, on|strong=\"H1004\"* the|strong=\"H3947\"* right side as|strong=\"H5971\"* one|strong=\"H1004\"* comes into|strong=\"H3947\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H3701\"* the|strong=\"H3947\"* priests|strong=\"H3548\"* who|strong=\"H5971\"* kept the|strong=\"H3947\"* threshold put|strong=\"H3947\"* all|strong=\"H3947\"* the|strong=\"H3947\"* money|strong=\"H3701\"* that|strong=\"H5971\"* was|strong=\"H1004\"* brought|strong=\"H3947\"* into|strong=\"H3947\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* into|strong=\"H3947\"* it|strong=\"H3947\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H3068\"* they|strong=\"H8033\"* saw that|strong=\"H3605\"* there|strong=\"H8033\"* was|strong=\"H3068\"* much|strong=\"H3605\"* money|strong=\"H3701\"* in|strong=\"H3068\"* the|strong=\"H3605\"* chest, the|strong=\"H3605\"* king’s scribe and|strong=\"H3068\"* the|strong=\"H3605\"* high priest|strong=\"H3548\"* came|strong=\"H3068\"* up|strong=\"H5414\"*, and|strong=\"H3068\"* they|strong=\"H8033\"* put|strong=\"H5414\"* it|strong=\"H5414\"* in|strong=\"H3068\"* bags and|strong=\"H3068\"* counted the|strong=\"H3605\"* money|strong=\"H3701\"* that|strong=\"H3605\"* was|strong=\"H3068\"* found|strong=\"H3068\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3588\"* gave|strong=\"H1961\"* the|strong=\"H7200\"* money|strong=\"H3701\"* that|strong=\"H3588\"* was|strong=\"H3068\"* weighed out|strong=\"H4672\"* into|strong=\"H5927\"* the|strong=\"H7200\"* hands of|strong=\"H4428\"* those|strong=\"H1961\"* who|strong=\"H3068\"* did|strong=\"H3068\"* the|strong=\"H7200\"* work, who|strong=\"H3068\"* had|strong=\"H3068\"* the|strong=\"H7200\"* oversight of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H3068\"* they|strong=\"H3588\"* paid it|strong=\"H3588\"* out|strong=\"H4672\"* to|strong=\"H3068\"* the|strong=\"H7200\"* carpenters and|strong=\"H3068\"* the|strong=\"H7200\"* builders who|strong=\"H3068\"* worked|strong=\"H5927\"* on|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*," + }, + { + "verseNum": 12, + "text": "and|strong=\"H3068\"* to|strong=\"H3318\"* the|strong=\"H5921\"* masons|strong=\"H2796\"* and|strong=\"H3068\"* the|strong=\"H5921\"* stone cutters, and|strong=\"H3068\"* for|strong=\"H5921\"* buying timber|strong=\"H6086\"* and|strong=\"H3068\"* cut stone to|strong=\"H3318\"* repair the|strong=\"H5921\"* damage|strong=\"H6485\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* for|strong=\"H5921\"* all|strong=\"H6213\"* that|strong=\"H3068\"* was|strong=\"H3068\"* laid|strong=\"H5414\"* out|strong=\"H3318\"* for|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* to|strong=\"H3318\"* repair it|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"H2388\"* there|strong=\"H3605\"* were|strong=\"H1004\"* not|strong=\"H3318\"* made|strong=\"H2388\"* for|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* cups of|strong=\"H1004\"* silver, snuffers, basins, trumpets, any|strong=\"H3605\"* vessels of|strong=\"H1004\"* gold or|strong=\"H1004\"* vessels of|strong=\"H1004\"* silver, of|strong=\"H1004\"* the|strong=\"H3605\"* money that|strong=\"H3605\"* was|strong=\"H3068\"* brought|strong=\"H3318\"* into|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*;" + }, + { + "verseNum": 14, + "text": "for|strong=\"H6213\"* they|strong=\"H3068\"* gave|strong=\"H6213\"* that|strong=\"H3605\"* to|strong=\"H3068\"* those|strong=\"H3605\"* who|strong=\"H3605\"* did|strong=\"H6213\"* the|strong=\"H3605\"* work|strong=\"H6213\"*, and|strong=\"H3068\"* repaired Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* with|strong=\"H1004\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 15, + "text": "Moreover|strong=\"H3588\"* they|strong=\"H3588\"* didn’t demand an|strong=\"H6213\"* accounting from|strong=\"H3068\"* the|strong=\"H3588\"* men|strong=\"H6213\"* into|strong=\"H6213\"* whose hand|strong=\"H5414\"* they|strong=\"H3588\"* delivered|strong=\"H5414\"* the|strong=\"H3588\"* money to|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* those|strong=\"H2388\"* who|strong=\"H3068\"* did|strong=\"H6213\"* the|strong=\"H3588\"* work|strong=\"H4399\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* dealt|strong=\"H6213\"* faithfully." + }, + { + "verseNum": 16, + "text": "The|strong=\"H5921\"* money|strong=\"H3701\"* for|strong=\"H3588\"* the|strong=\"H5921\"* trespass offerings|strong=\"H3588\"* and|strong=\"H3701\"* the|strong=\"H5921\"* money|strong=\"H3701\"* for|strong=\"H3588\"* the|strong=\"H5921\"* sin offerings|strong=\"H3588\"* was|strong=\"H3027\"* not|strong=\"H3808\"* brought|strong=\"H5414\"* into|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house. It|strong=\"H5414\"* was|strong=\"H3027\"* the|strong=\"H5921\"* priests|strong=\"H3808\"*’." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H1961\"* Hazael king of|strong=\"H1004\"* Syria went|strong=\"H3068\"* up|strong=\"H1961\"* and|strong=\"H3068\"* fought against|strong=\"H3068\"* Gath, and|strong=\"H3068\"* took|strong=\"H1961\"* it|strong=\"H1961\"*; and|strong=\"H3068\"* Hazael set his|strong=\"H3068\"* face to|strong=\"H3068\"* go|strong=\"H1961\"* up|strong=\"H1961\"* to|strong=\"H3068\"* Jerusalem." + }, + { + "verseNum": 18, + "text": "Jehoash king|strong=\"H4428\"* of|strong=\"H4428\"* Judah took|strong=\"H3920\"* all|strong=\"H5921\"* the|strong=\"H6440\"* holy things that|strong=\"H4428\"* Jehoshaphat and|strong=\"H4428\"* Jehoram and|strong=\"H4428\"* Ahaziah, his|strong=\"H7760\"* fathers, kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah, had|strong=\"H4428\"* dedicated, and|strong=\"H4428\"* his|strong=\"H7760\"* own|strong=\"H6440\"* holy things, and|strong=\"H4428\"* all|strong=\"H5921\"* the|strong=\"H6440\"* gold that|strong=\"H4428\"* was|strong=\"H4428\"* found in|strong=\"H5921\"* the|strong=\"H6440\"* treasures of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house, and|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s house, and|strong=\"H4428\"* sent|strong=\"H5927\"* it|strong=\"H7760\"* to|strong=\"H5927\"* Hazael|strong=\"H2371\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria; and|strong=\"H4428\"* he|strong=\"H3389\"* went|strong=\"H5927\"* away|strong=\"H5927\"* from|strong=\"H6440\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 19, + "text": "Now|strong=\"H3947\"* the|strong=\"H3605\"* rest of|strong=\"H4428\"* the|strong=\"H3605\"* acts of|strong=\"H4428\"* Joash|strong=\"H3060\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3068\"* did|strong=\"H3068\"*, aren’t they|strong=\"H3068\"* written in|strong=\"H5921\"* the|strong=\"H3605\"* book of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 20, + "text": "His|strong=\"H3605\"* servants arose and|strong=\"H3063\"* made|strong=\"H6213\"* a|strong=\"H3068\"* conspiracy, and|strong=\"H3063\"* struck Joash|strong=\"H3101\"* at|strong=\"H5921\"* the|strong=\"H3605\"* house of|strong=\"H4428\"* Millo, on|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1697\"* that|strong=\"H3605\"* goes down|strong=\"H3789\"* to|strong=\"H5921\"* Silla." + }, + { + "verseNum": 21, + "text": "For|strong=\"H1004\"* Jozacar the|strong=\"H5221\"* son of|strong=\"H1004\"* Shimeath, and|strong=\"H6965\"* Jehozabad the|strong=\"H5221\"* son of|strong=\"H1004\"* Shomer, his|strong=\"H5221\"* servants|strong=\"H5650\"*, struck|strong=\"H5221\"* him|strong=\"H5221\"*, and|strong=\"H6965\"* he|strong=\"H1004\"* died; and|strong=\"H6965\"* they|strong=\"H5221\"* buried him|strong=\"H5221\"* with|strong=\"H1004\"* his|strong=\"H5221\"* fathers in|strong=\"H1004\"* David’s city; and|strong=\"H6965\"* Amaziah his|strong=\"H5221\"* son reigned in|strong=\"H1004\"* his|strong=\"H5221\"* place|strong=\"H1004\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* twenty-third|strong=\"H6242\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahaziah|strong=\"H3059\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Jehoahaz|strong=\"H3059\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehu|strong=\"H3058\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"* for|strong=\"H5921\"* seventeen|strong=\"H7651\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H1121\"* followed|strong=\"H3212\"* the|strong=\"H6213\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*. He|strong=\"H6213\"* didn’t depart|strong=\"H5493\"* from|strong=\"H4480\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* he|strong=\"H3117\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Hazael|strong=\"H2371\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria, and|strong=\"H1121\"* into|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Benhadad the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hazael|strong=\"H2371\"*, continually|strong=\"H3605\"*." + }, + { + "verseNum": 4, + "text": "Jehoahaz|strong=\"H3059\"* begged Yahweh|strong=\"H3068\"*, and|strong=\"H3478\"* Yahweh|strong=\"H3068\"* listened|strong=\"H8085\"* to|strong=\"H3478\"* him|strong=\"H6440\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* saw|strong=\"H7200\"* the|strong=\"H6440\"* oppression|strong=\"H3906\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, how|strong=\"H3588\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria oppressed|strong=\"H3905\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 5, + "text": "(Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* Israel|strong=\"H3478\"* a|strong=\"H3068\"* savior|strong=\"H3467\"*, so|strong=\"H5414\"* that|strong=\"H3068\"* they|strong=\"H3068\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* under|strong=\"H8478\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5414\"* Syrians; and|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3068\"* tents as|strong=\"H3068\"* before|strong=\"H8032\"*." + }, + { + "verseNum": 6, + "text": "Nevertheless|strong=\"H1571\"* they|strong=\"H3808\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* the|strong=\"H5493\"* sins|strong=\"H2403\"* of|strong=\"H1004\"* the|strong=\"H5493\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jeroboam|strong=\"H3379\"*, with|strong=\"H1980\"* which|strong=\"H1004\"* he|strong=\"H1004\"* made|strong=\"H5975\"* Israel|strong=\"H3478\"* to|strong=\"H1980\"* sin|strong=\"H2403\"*, but|strong=\"H3808\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* them|strong=\"H5975\"*; and|strong=\"H1980\"* the|strong=\"H5493\"* Asherah also|strong=\"H1571\"* remained|strong=\"H5975\"* in|strong=\"H1980\"* Samaria|strong=\"H8111\"*.)" + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* didn’t leave|strong=\"H7604\"* to|strong=\"H4428\"* Jehoahaz|strong=\"H3059\"* of|strong=\"H4428\"* the|strong=\"H3588\"* people|strong=\"H5971\"* any|strong=\"H3588\"* more|strong=\"H3808\"* than|strong=\"H3808\"* fifty|strong=\"H2572\"* horsemen|strong=\"H6571\"*, and|strong=\"H4428\"* ten|strong=\"H6235\"* chariots|strong=\"H7393\"*, and|strong=\"H4428\"* ten|strong=\"H6235\"* thousand footmen|strong=\"H7273\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria destroyed them|strong=\"H7760\"* and|strong=\"H4428\"* made|strong=\"H7760\"* them|strong=\"H7760\"* like|strong=\"H3808\"* the|strong=\"H3588\"* dust|strong=\"H6083\"* in|strong=\"H4428\"* threshing|strong=\"H1758\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Jehoahaz|strong=\"H3059\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, and|strong=\"H3478\"* his|strong=\"H3605\"* might|strong=\"H1369\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 9, + "text": "Jehoahaz|strong=\"H3059\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers; and|strong=\"H1121\"* they|strong=\"H8478\"* buried|strong=\"H6912\"* him|strong=\"H4427\"* in|strong=\"H6912\"* Samaria|strong=\"H8111\"*; and|strong=\"H1121\"* Joash|strong=\"H3101\"* his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* thirty-seventh|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Jehoash|strong=\"H3060\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoahaz|strong=\"H3059\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"* for|strong=\"H5921\"* sixteen|strong=\"H8337\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H1980\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*. He|strong=\"H6213\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* all|strong=\"H3605\"* the|strong=\"H3605\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, with|strong=\"H1980\"* which|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H1980\"* sin|strong=\"H2403\"*; but|strong=\"H3808\"* he|strong=\"H6213\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Joash|strong=\"H3101\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, and|strong=\"H3063\"* his|strong=\"H3605\"* might|strong=\"H1369\"* with|strong=\"H5973\"* which|strong=\"H1992\"* he|strong=\"H3117\"* fought|strong=\"H3898\"* against|strong=\"H5921\"* Amaziah king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 13, + "text": "Joash|strong=\"H3101\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H5921\"* fathers; and|strong=\"H3478\"* Jeroboam|strong=\"H3379\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H5921\"* throne|strong=\"H3678\"*. Joash|strong=\"H3101\"* was|strong=\"H3478\"* buried|strong=\"H6912\"* in|strong=\"H3427\"* Samaria|strong=\"H8111\"* with|strong=\"H5973\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"H3478\"* Elisha became|strong=\"H2470\"* sick|strong=\"H2470\"* with|strong=\"H5921\"* the|strong=\"H6440\"* illness|strong=\"H2483\"* of|strong=\"H4428\"* which|strong=\"H3478\"* he|strong=\"H5921\"* died|strong=\"H4191\"*; and|strong=\"H3478\"* Joash|strong=\"H3101\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* came|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* him|strong=\"H6440\"*, and|strong=\"H3478\"* wept|strong=\"H1058\"* over|strong=\"H5921\"* him|strong=\"H6440\"*, and|strong=\"H3478\"* said, “My|strong=\"H5921\"* father, my|strong=\"H5921\"* father, the|strong=\"H6440\"* chariots|strong=\"H7393\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* its|strong=\"H5921\"* horsemen|strong=\"H6571\"*!”" + }, + { + "verseNum": 15, + "text": "Elisha said to|strong=\"H3947\"* him|strong=\"H3947\"*, “Take|strong=\"H3947\"* bow|strong=\"H7198\"* and|strong=\"H7198\"* arrows|strong=\"H2671\"*;” and|strong=\"H7198\"* he|strong=\"H3947\"* took|strong=\"H3947\"* bow|strong=\"H7198\"* and|strong=\"H7198\"* arrows|strong=\"H2671\"* for|strong=\"H3947\"* himself." + }, + { + "verseNum": 16, + "text": "He|strong=\"H3027\"* said to|strong=\"H3478\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, “Put|strong=\"H7760\"* your|strong=\"H5921\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bow|strong=\"H7198\"*;” and|strong=\"H3478\"* he|strong=\"H3027\"* put|strong=\"H7760\"* his|strong=\"H7760\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* it|strong=\"H7760\"*. Elisha laid|strong=\"H7760\"* his|strong=\"H7760\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s hands|strong=\"H3027\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H5704\"* said, “Open|strong=\"H6605\"* the|strong=\"H5221\"* window|strong=\"H2474\"* eastward|strong=\"H6924\"*;” and|strong=\"H3068\"* he|strong=\"H5704\"* opened|strong=\"H6605\"* it|strong=\"H5221\"*. Then|strong=\"H3068\"* Elisha|strong=\"H5704\"* said, “Shoot|strong=\"H3384\"*!” and|strong=\"H3068\"* he|strong=\"H5704\"* shot|strong=\"H3384\"*. He|strong=\"H5704\"* said, “Yahweh|strong=\"H3068\"*’s arrow|strong=\"H2671\"* of|strong=\"H3068\"* victory|strong=\"H8668\"*, even|strong=\"H5704\"* the|strong=\"H5221\"* arrow|strong=\"H2671\"* of|strong=\"H3068\"* victory|strong=\"H8668\"* over|strong=\"H3068\"* Syria; for|strong=\"H5704\"* you|strong=\"H5704\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* the|strong=\"H5221\"* Syrians in|strong=\"H3068\"* Aphek until|strong=\"H5704\"* you|strong=\"H5704\"* have|strong=\"H3068\"* consumed|strong=\"H3615\"* them|strong=\"H5221\"*.”" + }, + { + "verseNum": 18, + "text": "He|strong=\"H5221\"* said, “Take|strong=\"H3947\"* the|strong=\"H3947\"* arrows|strong=\"H2678\"*;” and|strong=\"H3478\"* he|strong=\"H5221\"* took|strong=\"H3947\"* them|strong=\"H5221\"*. He|strong=\"H5221\"* said to|strong=\"H3478\"* the|strong=\"H3947\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, “Strike|strong=\"H5221\"* the|strong=\"H3947\"* ground;” and|strong=\"H3478\"* he|strong=\"H5221\"* struck|strong=\"H5221\"* three|strong=\"H7969\"* times|strong=\"H6471\"*, and|strong=\"H3478\"* stopped|strong=\"H5975\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5921\"* man of|strong=\"H5921\"* God was|strong=\"H5221\"* angry|strong=\"H7107\"* with|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H2568\"* said, “You|strong=\"H5921\"* should have|strong=\"H6258\"* struck|strong=\"H5221\"* five|strong=\"H2568\"* or|strong=\"H5704\"* six|strong=\"H8337\"* times|strong=\"H6471\"*. Then|strong=\"H6258\"* you|strong=\"H5921\"* would have|strong=\"H6258\"* struck|strong=\"H5221\"* Syria until|strong=\"H5704\"* you|strong=\"H5921\"* had|strong=\"H7969\"* consumed|strong=\"H3615\"* it|strong=\"H5921\"*, but|strong=\"H5221\"* now|strong=\"H6258\"* you|strong=\"H5921\"* will|strong=\"H5704\"* strike|strong=\"H5221\"* Syria just|strong=\"H6258\"* three|strong=\"H7969\"* times|strong=\"H6471\"*.”" + }, + { + "verseNum": 20, + "text": "Elisha died|strong=\"H4191\"*, and|strong=\"H8141\"* they|strong=\"H8141\"* buried|strong=\"H6912\"* him|strong=\"H4191\"*." + }, + { + "verseNum": 21, + "text": "As|strong=\"H1961\"* they|strong=\"H1992\"* were|strong=\"H1961\"* burying|strong=\"H6912\"* a|strong=\"H3068\"* man|strong=\"H7200\"*, behold|strong=\"H2009\"*, they|strong=\"H1992\"* saw|strong=\"H7200\"* a|strong=\"H3068\"* band|strong=\"H1416\"* of|strong=\"H5921\"* raiders|strong=\"H1416\"*; and|strong=\"H6965\"* they|strong=\"H1992\"* threw|strong=\"H7993\"* the|strong=\"H5921\"* man|strong=\"H7200\"* into|strong=\"H3212\"* Elisha|strong=\"H2421\"*’s tomb|strong=\"H6913\"*. As|strong=\"H1961\"* soon as|strong=\"H1961\"* the|strong=\"H5921\"* man|strong=\"H7200\"* touched|strong=\"H5060\"* Elisha|strong=\"H2421\"*’s bones|strong=\"H6106\"*, he|strong=\"H5921\"* revived|strong=\"H2421\"*, and|strong=\"H6965\"* stood|strong=\"H6965\"* up|strong=\"H6965\"* on|strong=\"H5921\"* his|strong=\"H5921\"* feet|strong=\"H7272\"*." + }, + { + "verseNum": 22, + "text": "Hazael|strong=\"H2371\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria oppressed|strong=\"H3905\"* Israel|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Jehoahaz|strong=\"H3059\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"H3808\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* gracious|strong=\"H2603\"* to|strong=\"H5704\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* had|strong=\"H3068\"* compassion|strong=\"H7355\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* favored them|strong=\"H5921\"* because|strong=\"H5921\"* of|strong=\"H3068\"* his|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* Abraham, Isaac|strong=\"H3327\"*, and|strong=\"H3068\"* Jacob|strong=\"H3290\"*, and|strong=\"H3068\"* would|strong=\"H3068\"* not|strong=\"H3808\"* destroy|strong=\"H7843\"* them|strong=\"H5921\"* and|strong=\"H3068\"* he|strong=\"H5704\"* didn’t cast|strong=\"H7993\"* them|strong=\"H5921\"* from|strong=\"H6440\"* his|strong=\"H3068\"* presence|strong=\"H6440\"* as|strong=\"H5704\"* yet|strong=\"H5704\"*." + }, + { + "verseNum": 24, + "text": "Hazael|strong=\"H2371\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria died|strong=\"H4191\"*; and|strong=\"H1121\"* Benhadad his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H4428\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 25, + "text": "Jehoash|strong=\"H3060\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoahaz|strong=\"H3059\"* took|strong=\"H3947\"* again|strong=\"H7725\"* out|strong=\"H3947\"* of|strong=\"H1121\"* the|strong=\"H3947\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Benhadad the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hazael|strong=\"H2371\"* the|strong=\"H3947\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* he|strong=\"H3027\"* had|strong=\"H3478\"* taken|strong=\"H3947\"* out|strong=\"H3947\"* of|strong=\"H1121\"* the|strong=\"H3947\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Jehoahaz|strong=\"H3059\"* his|strong=\"H3947\"* father|strong=\"H1121\"* by|strong=\"H3027\"* war|strong=\"H4421\"*. Joash|strong=\"H3101\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* three|strong=\"H7969\"* times|strong=\"H6471\"*, and|strong=\"H1121\"* recovered|strong=\"H7725\"* the|strong=\"H3947\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H1121\"* second|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* Joahaz|strong=\"H3099\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, Amaziah the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H2568\"* was|strong=\"H8034\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* he|strong=\"H2568\"* began|strong=\"H1961\"* to|strong=\"H1961\"* reign|strong=\"H4427\"*; and|strong=\"H1121\"* he|strong=\"H2568\"* reigned|strong=\"H4427\"* twenty-nine|strong=\"H6242\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H1961\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Jehoaddin|strong=\"H3086\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, yet|strong=\"H7535\"* not|strong=\"H3808\"* like|strong=\"H3808\"* David|strong=\"H1732\"* his|strong=\"H3605\"* father. He|strong=\"H6213\"* did|strong=\"H6213\"* according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Joash|strong=\"H3101\"* his|strong=\"H3605\"* father had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 4, + "text": "However|strong=\"H7535\"* the|strong=\"H5493\"* high|strong=\"H1116\"* places|strong=\"H1116\"* were|strong=\"H5971\"* not|strong=\"H3808\"* taken|strong=\"H5493\"* away|strong=\"H5493\"*. The|strong=\"H5493\"* people|strong=\"H5971\"* still|strong=\"H5750\"* sacrificed|strong=\"H2076\"* and|strong=\"H5971\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* in|strong=\"H5493\"* the|strong=\"H5493\"* high|strong=\"H1116\"* places|strong=\"H1116\"*." + }, + { + "verseNum": 5, + "text": "As|strong=\"H1961\"* soon as|strong=\"H1961\"* the|strong=\"H5221\"* kingdom|strong=\"H4467\"* was|strong=\"H1961\"* established|strong=\"H2388\"* in|strong=\"H4428\"* his|strong=\"H5221\"* hand|strong=\"H3027\"*, he|strong=\"H3027\"* killed|strong=\"H5221\"* his|strong=\"H5221\"* servants|strong=\"H5650\"* who|strong=\"H5650\"* had|strong=\"H1961\"* slain|strong=\"H5221\"* the|strong=\"H5221\"* king|strong=\"H4428\"* his|strong=\"H5221\"* father," + }, + { + "verseNum": 6, + "text": "but|strong=\"H3588\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* murderers|strong=\"H5221\"* he|strong=\"H3588\"* didn’t put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*, according|strong=\"H5921\"* to|strong=\"H4191\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H1121\"* the|strong=\"H5921\"* law|strong=\"H8451\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"*, saying, “The|strong=\"H5921\"* fathers shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"* for|strong=\"H3588\"* the|strong=\"H5921\"* children|strong=\"H1121\"*, nor|strong=\"H3808\"* the|strong=\"H5921\"* children|strong=\"H1121\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"* for|strong=\"H3588\"* the|strong=\"H5921\"* fathers; but|strong=\"H3588\"* every|strong=\"H5221\"* man|strong=\"H1121\"* shall|strong=\"H3068\"* die|strong=\"H4191\"* for|strong=\"H3588\"* his|strong=\"H3068\"* own sin|strong=\"H2399\"*.”" + }, + { + "verseNum": 7, + "text": "He|strong=\"H1931\"* killed|strong=\"H5221\"* ten|strong=\"H6235\"* thousand Edomites in|strong=\"H3117\"* the|strong=\"H5221\"* Valley|strong=\"H1516\"* of|strong=\"H3117\"* Salt|strong=\"H4417\"*, and|strong=\"H3117\"* took|strong=\"H8610\"* Sela|strong=\"H5554\"* by|strong=\"H3117\"* war|strong=\"H4421\"*, and|strong=\"H3117\"* called|strong=\"H7121\"* its|strong=\"H1516\"* name|strong=\"H8034\"* Joktheel|strong=\"H3371\"*, to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H7971\"* Amaziah sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H3478\"* Jehoash|strong=\"H3060\"*, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoahaz|strong=\"H3059\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehu|strong=\"H3058\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying, “Come|strong=\"H3212\"*, let|strong=\"H7971\"*’s look|strong=\"H7200\"* one|strong=\"H1121\"* another|strong=\"H7200\"* in|strong=\"H3478\"* the|strong=\"H6440\"* face|strong=\"H6440\"*.”" + }, + { + "verseNum": 9, + "text": "Jehoash|strong=\"H3060\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* Amaziah king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, saying, “The|strong=\"H5414\"* thistle|strong=\"H2336\"* that|strong=\"H3478\"* was|strong=\"H3478\"* in|strong=\"H3478\"* Lebanon|strong=\"H3844\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* the|strong=\"H5414\"* cedar that|strong=\"H3478\"* was|strong=\"H3478\"* in|strong=\"H3478\"* Lebanon|strong=\"H3844\"*, saying, ‘Give|strong=\"H5414\"* your|strong=\"H5414\"* daughter|strong=\"H1323\"* to|strong=\"H3478\"* my|strong=\"H5414\"* son|strong=\"H1121\"* as|strong=\"H3063\"* wife|strong=\"H2416\"*.’ Then|strong=\"H7971\"* a|strong=\"H3068\"* wild|strong=\"H7704\"* animal|strong=\"H2416\"* that|strong=\"H3478\"* was|strong=\"H3478\"* in|strong=\"H3478\"* Lebanon|strong=\"H3844\"* passed|strong=\"H5674\"* by|strong=\"H5674\"*, and|strong=\"H1121\"* trampled|strong=\"H7429\"* down|strong=\"H7429\"* the|strong=\"H5414\"* thistle|strong=\"H2336\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H5973\"* have|strong=\"H3063\"* indeed|strong=\"H5221\"* struck|strong=\"H5221\"* Edom, and|strong=\"H3063\"* your|strong=\"H5375\"* heart|strong=\"H3820\"* has|strong=\"H3820\"* lifted|strong=\"H5375\"* you|strong=\"H5973\"* up|strong=\"H5375\"*. Enjoy|strong=\"H3513\"* the|strong=\"H5221\"* glory|strong=\"H3513\"* of|strong=\"H1004\"* it|strong=\"H5375\"*, and|strong=\"H3063\"* stay|strong=\"H3427\"* at|strong=\"H3427\"* home|strong=\"H1004\"*; for|strong=\"H3427\"* why|strong=\"H4100\"* should|strong=\"H4100\"* you|strong=\"H5973\"* meddle|strong=\"H1624\"* to|strong=\"H3820\"* your|strong=\"H5375\"* harm|strong=\"H7451\"*, that|strong=\"H5307\"* you|strong=\"H5973\"* fall|strong=\"H5307\"*, even you|strong=\"H5973\"*, and|strong=\"H3063\"* Judah|strong=\"H3063\"* with|strong=\"H5973\"* you|strong=\"H5973\"*?”" + }, + { + "verseNum": 11, + "text": "But|strong=\"H3808\"* Amaziah would|strong=\"H3478\"* not|strong=\"H3808\"* listen|strong=\"H8085\"*. So|strong=\"H5927\"* Jehoash|strong=\"H3060\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"*; and|strong=\"H3063\"* he|strong=\"H1931\"* and|strong=\"H3063\"* Amaziah king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* looked|strong=\"H7200\"* one|strong=\"H3808\"* another|strong=\"H7200\"* in|strong=\"H3478\"* the|strong=\"H6440\"* face|strong=\"H6440\"* at|strong=\"H3478\"* Beth Shemesh, which|strong=\"H1931\"* belongs to|strong=\"H3478\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 12, + "text": "Judah|strong=\"H3063\"* was|strong=\"H3478\"* defeated|strong=\"H5062\"* by|strong=\"H3478\"* Israel|strong=\"H3478\"*; and|strong=\"H3063\"* each man|strong=\"H6440\"* fled|strong=\"H5127\"* to|strong=\"H3478\"* his|strong=\"H6440\"* tent." + }, + { + "verseNum": 13, + "text": "Jehoash|strong=\"H3060\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* took|strong=\"H8610\"* Amaziah king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoash|strong=\"H3060\"* the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahaziah, at|strong=\"H3478\"* Beth Shemesh and|strong=\"H3967\"* came|strong=\"H3478\"* to|strong=\"H5704\"* Jerusalem|strong=\"H3389\"*, then|strong=\"H4428\"* broke|strong=\"H6555\"* down|strong=\"H6555\"* the|strong=\"H5704\"* wall|strong=\"H2346\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* from|strong=\"H3478\"* the|strong=\"H5704\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* Ephraim to|strong=\"H5704\"* the|strong=\"H5704\"* corner|strong=\"H6438\"* gate|strong=\"H8179\"*, four hundred|strong=\"H3967\"* cubits.+ 14:13 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.*" + }, + { + "verseNum": 14, + "text": "He|strong=\"H3068\"* took|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gold|strong=\"H2091\"* and|strong=\"H1121\"* silver|strong=\"H3701\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* that|strong=\"H3605\"* were|strong=\"H1121\"* found|strong=\"H4672\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H1121\"* in|strong=\"H3068\"* the|strong=\"H3605\"* treasures of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, the|strong=\"H3605\"* hostages|strong=\"H8594\"* also|strong=\"H3068\"*, and|strong=\"H1121\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Jehoash|strong=\"H3060\"* which|strong=\"H1992\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, and|strong=\"H3063\"* his|strong=\"H5921\"* might|strong=\"H1369\"*, and|strong=\"H3063\"* how|strong=\"H6213\"* he|strong=\"H3117\"* fought|strong=\"H3898\"* with|strong=\"H5973\"* Amaziah king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 16, + "text": "Jehoash|strong=\"H3060\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H3478\"* fathers, and|strong=\"H1121\"* was|strong=\"H3478\"* buried|strong=\"H6912\"* in|strong=\"H3478\"* Samaria|strong=\"H8111\"* with|strong=\"H5973\"* the|strong=\"H8478\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* his|strong=\"H3478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H3478\"* his|strong=\"H3478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 17, + "text": "Amaziah the|strong=\"H3060\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* lived|strong=\"H2421\"* after|strong=\"H8141\"* the|strong=\"H3060\"* death|strong=\"H4194\"* of|strong=\"H1121\"* Jehoash|strong=\"H3060\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoahaz|strong=\"H3059\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, fifteen|strong=\"H2568\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Amaziah, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 19, + "text": "They|strong=\"H8033\"* made|strong=\"H7194\"* a|strong=\"H3068\"* conspiracy|strong=\"H7195\"* against|strong=\"H5921\"* him|strong=\"H5921\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H7971\"* he|strong=\"H8033\"* fled|strong=\"H5127\"* to|strong=\"H4191\"* Lachish|strong=\"H3923\"*; but|strong=\"H4191\"* they|strong=\"H8033\"* sent|strong=\"H7971\"* after|strong=\"H5921\"* him|strong=\"H5921\"* to|strong=\"H4191\"* Lachish|strong=\"H3923\"* and|strong=\"H7971\"* killed|strong=\"H4191\"* him|strong=\"H5921\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H5921\"* brought|strong=\"H5375\"* him|strong=\"H5921\"* on|strong=\"H5921\"* horses|strong=\"H5483\"*, and|strong=\"H3389\"* he|strong=\"H1732\"* was|strong=\"H1732\"* buried|strong=\"H6912\"* at|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* with|strong=\"H5973\"* his|strong=\"H5375\"* fathers in|strong=\"H5921\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*." + }, + { + "verseNum": 21, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* took|strong=\"H3947\"* Azariah|strong=\"H5838\"*, who|strong=\"H3605\"* was|strong=\"H1931\"* sixteen|strong=\"H8337\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, and|strong=\"H1121\"* made|strong=\"H4427\"* him|strong=\"H4427\"* king|strong=\"H4427\"* in|strong=\"H8141\"* the|strong=\"H3605\"* place|strong=\"H8478\"* of|strong=\"H1121\"* his|strong=\"H3605\"* father|strong=\"H1121\"* Amaziah." + }, + { + "verseNum": 22, + "text": "He|strong=\"H1931\"* built|strong=\"H1129\"* Elath and|strong=\"H3063\"* restored|strong=\"H7725\"* it|strong=\"H1931\"* to|strong=\"H7725\"* Judah|strong=\"H3063\"*. After that|strong=\"H1931\"* the|strong=\"H7725\"* king|strong=\"H4428\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H7725\"* fathers." + }, + { + "verseNum": 23, + "text": "In|strong=\"H8141\"* the|strong=\"H3379\"* fifteenth|strong=\"H2568\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Amaziah the|strong=\"H3379\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Jeroboam|strong=\"H3379\"* the|strong=\"H3379\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"* for|strong=\"H1121\"* forty-one years|strong=\"H8141\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*. He|strong=\"H6213\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* all|strong=\"H3605\"* the|strong=\"H3605\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H1931\"* restored|strong=\"H7725\"* the|strong=\"H3068\"* border|strong=\"H1366\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* from|strong=\"H7725\"* the|strong=\"H3068\"* entrance of|strong=\"H1121\"* Hamath|strong=\"H2574\"* to|strong=\"H1696\"* the|strong=\"H3068\"* sea|strong=\"H3220\"* of|strong=\"H1121\"* the|strong=\"H3068\"* Arabah|strong=\"H6160\"*, according|strong=\"H3027\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*’s word|strong=\"H1697\"*, which|strong=\"H1931\"* he|strong=\"H1931\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* his|strong=\"H3068\"* servant|strong=\"H5650\"* Jonah|strong=\"H3124\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amittai, the|strong=\"H3068\"* prophet|strong=\"H5030\"*, who|strong=\"H1931\"* was|strong=\"H3068\"* from|strong=\"H7725\"* Gath Hepher." + }, + { + "verseNum": 26, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* affliction|strong=\"H6040\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3068\"* very|strong=\"H3966\"* bitter|strong=\"H4784\"* for|strong=\"H3588\"* all|strong=\"H7200\"*, slave and|strong=\"H3478\"* free|strong=\"H5800\"*; and|strong=\"H3478\"* there|strong=\"H3068\"* was|strong=\"H3068\"* no|strong=\"H7200\"* helper|strong=\"H5826\"* for|strong=\"H3588\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 27, + "text": "Yahweh|strong=\"H3068\"* didn’t say|strong=\"H1696\"* that|strong=\"H3068\"* he|strong=\"H3068\"* would|strong=\"H3068\"* blot|strong=\"H4229\"* out|strong=\"H4229\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* under|strong=\"H8478\"* the|strong=\"H3068\"* sky|strong=\"H8064\"*; but|strong=\"H3808\"* he|strong=\"H3068\"* saved|strong=\"H3467\"* them|strong=\"H3027\"* by|strong=\"H3027\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"*." + }, + { + "verseNum": 28, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Jeroboam|strong=\"H3379\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, and|strong=\"H3063\"* his|strong=\"H3605\"* might|strong=\"H1369\"*, how|strong=\"H6213\"* he|strong=\"H3117\"* fought|strong=\"H3898\"*, and|strong=\"H3063\"* how|strong=\"H6213\"* he|strong=\"H3117\"* recovered|strong=\"H7725\"* Damascus|strong=\"H1834\"*, and|strong=\"H3063\"* Hamath|strong=\"H2574\"*, which|strong=\"H1992\"* had|strong=\"H3478\"* belonged to|strong=\"H7725\"* Judah|strong=\"H3063\"*, for|strong=\"H5921\"* Israel|strong=\"H3478\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 29, + "text": "Jeroboam|strong=\"H3379\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H3478\"* fathers, even with|strong=\"H5973\"* the|strong=\"H8478\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* Zechariah|strong=\"H2148\"* his|strong=\"H3478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H3478\"* his|strong=\"H3478\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3379\"* twenty-seventh|strong=\"H6242\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, Azariah|strong=\"H5838\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amaziah king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H8147\"* was|strong=\"H8034\"* sixteen|strong=\"H8337\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* he|strong=\"H8147\"* began|strong=\"H1961\"* to|strong=\"H1961\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H8147\"* reigned|strong=\"H4427\"* fifty-two|strong=\"H2572\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H1961\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Jecoliah|strong=\"H3203\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* his|strong=\"H3605\"* father Amaziah had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 4, + "text": "However|strong=\"H7535\"*, the|strong=\"H5493\"* high|strong=\"H1116\"* places|strong=\"H1116\"* were|strong=\"H5971\"* not|strong=\"H3808\"* taken|strong=\"H5493\"* away|strong=\"H5493\"*. The|strong=\"H5493\"* people|strong=\"H5971\"* still|strong=\"H5750\"* sacrificed|strong=\"H2076\"* and|strong=\"H5971\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* in|strong=\"H5493\"* the|strong=\"H5493\"* high|strong=\"H1116\"* places|strong=\"H1116\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* struck|strong=\"H5060\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, so|strong=\"H1961\"* that|strong=\"H5971\"* he|strong=\"H3117\"* was|strong=\"H3068\"* a|strong=\"H3068\"* leper|strong=\"H6879\"* to|strong=\"H5704\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H1121\"* his|strong=\"H3068\"* death|strong=\"H4194\"*, and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* separate|strong=\"H2669\"* house|strong=\"H1004\"*. Jotham|strong=\"H3147\"*, the|strong=\"H5921\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"*, was|strong=\"H3068\"* over|strong=\"H5921\"* the|strong=\"H5921\"* household|strong=\"H1004\"*, judging|strong=\"H8199\"* the|strong=\"H5921\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H5921\"* land." + }, + { + "verseNum": 6, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Azariah|strong=\"H5838\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 7, + "text": "Azariah|strong=\"H5838\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers; and|strong=\"H1121\"* they|strong=\"H5892\"* buried|strong=\"H6912\"* him|strong=\"H4427\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Jotham|strong=\"H3147\"* his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 8, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* thirty-eighth|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Azariah|strong=\"H5838\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Zechariah|strong=\"H2148\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"* six|strong=\"H8337\"* months|strong=\"H2320\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, as|strong=\"H6213\"* his|strong=\"H3068\"* fathers had|strong=\"H3068\"* done|strong=\"H6213\"*. He|strong=\"H6213\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* the|strong=\"H6213\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*." + }, + { + "verseNum": 10, + "text": "Shallum|strong=\"H7967\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jabesh|strong=\"H3003\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* struck|strong=\"H5221\"* him|strong=\"H5921\"* before|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"* and|strong=\"H1121\"* killed|strong=\"H5221\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H5921\"* his|strong=\"H5921\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Zechariah|strong=\"H2148\"*, behold|strong=\"H2009\"*, they|strong=\"H3117\"* are|strong=\"H3117\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 12, + "text": "This|strong=\"H3651\"* was|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H1931\"* he|strong=\"H1931\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Jehu|strong=\"H3058\"*, saying|strong=\"H1697\"*, “Your|strong=\"H3068\"* sons|strong=\"H1121\"* to|strong=\"H1696\"* the|strong=\"H5921\"* fourth|strong=\"H7243\"* generation shall|strong=\"H3068\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.” So|strong=\"H3651\"* it|strong=\"H1931\"* came|strong=\"H1961\"* to|strong=\"H1696\"* pass|strong=\"H1961\"*." + }, + { + "verseNum": 13, + "text": "Shallum|strong=\"H7967\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jabesh|strong=\"H3003\"* began|strong=\"H3063\"* to|strong=\"H3117\"* reign|strong=\"H4427\"* in|strong=\"H8141\"* the|strong=\"H3117\"* thirty-ninth|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Uzziah|strong=\"H5818\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* he|strong=\"H3117\"* reigned|strong=\"H4427\"* for|strong=\"H3117\"* a|strong=\"H3068\"* month|strong=\"H3391\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 14, + "text": "Menahem|strong=\"H4505\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gadi|strong=\"H1424\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* Tirzah|strong=\"H8656\"*, came|strong=\"H5927\"* to|strong=\"H4191\"* Samaria|strong=\"H8111\"*, struck|strong=\"H5221\"* Shallum|strong=\"H7967\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jabesh|strong=\"H3003\"* in|strong=\"H4191\"* Samaria|strong=\"H8111\"*, killed|strong=\"H5221\"* him|strong=\"H5221\"*, and|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H5221\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Shallum|strong=\"H7967\"*, and|strong=\"H3478\"* his|strong=\"H5921\"* conspiracy|strong=\"H7195\"* which|strong=\"H1697\"* he|strong=\"H3117\"* made|strong=\"H7194\"*, behold|strong=\"H2009\"*, they|strong=\"H3117\"* are|strong=\"H3117\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H3588\"* Menahem|strong=\"H4505\"* attacked|strong=\"H5221\"* Tiphsah|strong=\"H8607\"* and|strong=\"H5221\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3605\"* in|strong=\"H3808\"* it|strong=\"H3588\"* and|strong=\"H5221\"* its|strong=\"H3605\"* border|strong=\"H1366\"* areas, from|strong=\"H1366\"* Tirzah|strong=\"H8656\"*. He|strong=\"H3588\"* attacked|strong=\"H5221\"* it|strong=\"H3588\"* because|strong=\"H3588\"* they|strong=\"H3588\"* didn’t open|strong=\"H6605\"* their|strong=\"H3605\"* gates to|strong=\"H3808\"* him|strong=\"H5221\"*, and|strong=\"H5221\"* he|strong=\"H3588\"* ripped|strong=\"H1234\"* up|strong=\"H1234\"* all|strong=\"H3605\"* their|strong=\"H3605\"* women|strong=\"H2030\"* who|strong=\"H3605\"* were|strong=\"H3605\"* with|strong=\"H3605\"* child|strong=\"H2030\"*." + }, + { + "verseNum": 17, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* thirty|strong=\"H7970\"* ninth|strong=\"H8672\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Azariah|strong=\"H5838\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Menahem|strong=\"H4505\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gadi|strong=\"H1424\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* for|strong=\"H5921\"* ten|strong=\"H6235\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H3117\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*. He|strong=\"H3117\"* didn’t depart|strong=\"H5493\"* all|strong=\"H3605\"* his|strong=\"H3605\"* days|strong=\"H3117\"* from|strong=\"H5493\"* the|strong=\"H3605\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3117\"* made|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*." + }, + { + "verseNum": 19, + "text": "Pul|strong=\"H6322\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria came|strong=\"H1961\"* against|strong=\"H5921\"* the|strong=\"H5921\"* land, and|strong=\"H3701\"* Menahem|strong=\"H4505\"* gave|strong=\"H5414\"* Pul|strong=\"H6322\"* one|strong=\"H1961\"* thousand talents|strong=\"H3603\"*+ 15:19 A talent is about 30 kilograms or 66 pounds, so 1000 talents is about 30 metric tons* of|strong=\"H4428\"* silver|strong=\"H3701\"*, that|strong=\"H5414\"* his|strong=\"H5414\"* hand|strong=\"H3027\"* might|strong=\"H4467\"* be|strong=\"H1961\"* with|strong=\"H5921\"* him|strong=\"H5414\"* to|strong=\"H1961\"* confirm|strong=\"H2388\"* the|strong=\"H5921\"* kingdom|strong=\"H4467\"* in|strong=\"H5921\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 20, + "text": "Menahem|strong=\"H4505\"* exacted|strong=\"H3318\"* the|strong=\"H3605\"* money|strong=\"H3701\"* from|strong=\"H7725\"* Israel|strong=\"H3478\"*, even|strong=\"H3808\"* from|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H4428\"* wealth|strong=\"H2428\"*, from|strong=\"H7725\"* each|strong=\"H3605\"* man|strong=\"H1368\"* fifty|strong=\"H2572\"* shekels|strong=\"H8255\"*+ 15:20 A shekel is about 10 grams or about 0.35 ounces, so 50 shekels was about 0.5 kilograms or 1.1 pounds.* of|strong=\"H4428\"* silver|strong=\"H3701\"*, to|strong=\"H7725\"* give|strong=\"H5414\"* to|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria. So|strong=\"H5414\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria turned|strong=\"H7725\"* back|strong=\"H7725\"*, and|strong=\"H3478\"* didn’t stay|strong=\"H5975\"* there|strong=\"H8033\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 21, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Menahem|strong=\"H4505\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 22, + "text": "Menahem|strong=\"H4505\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers, and|strong=\"H1121\"* Pekahiah|strong=\"H6494\"* his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H4427\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 23, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* fiftieth|strong=\"H2572\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Azariah|strong=\"H5838\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Pekahiah|strong=\"H6494\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Menahem|strong=\"H4505\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"* for|strong=\"H5921\"* two|strong=\"H4427\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*. He|strong=\"H6213\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* the|strong=\"H6213\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*." + }, + { + "verseNum": 25, + "text": "Pekah|strong=\"H6492\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"*, his|strong=\"H5921\"* captain|strong=\"H7991\"*, conspired|strong=\"H7194\"* against|strong=\"H5921\"* him|strong=\"H5921\"* and|strong=\"H1121\"* attacked|strong=\"H5221\"* him|strong=\"H5921\"* in|strong=\"H5921\"* Samaria|strong=\"H8111\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* fortress of|strong=\"H1121\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, with|strong=\"H5973\"* Argob and|strong=\"H1121\"* Arieh; and|strong=\"H1121\"* with|strong=\"H5973\"* him|strong=\"H5921\"* were|strong=\"H1121\"* fifty|strong=\"H2572\"* men|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Gileadites|strong=\"H1569\"*. He|strong=\"H1004\"* killed|strong=\"H5221\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H5921\"* his|strong=\"H5921\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 26, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Pekahiah|strong=\"H6494\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, behold|strong=\"H2009\"*, they|strong=\"H3117\"* are|strong=\"H3117\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 27, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* fifty-second|strong=\"H2572\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Azariah|strong=\"H5838\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Pekah|strong=\"H6492\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"* for|strong=\"H5921\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*. He|strong=\"H6213\"* didn’t depart|strong=\"H5493\"* from|strong=\"H4480\"* the|strong=\"H6213\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*." + }, + { + "verseNum": 29, + "text": "In|strong=\"H3478\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Pekah|strong=\"H6492\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, Tiglath Pileser king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria came|strong=\"H3478\"* and|strong=\"H3478\"* took|strong=\"H3947\"* Ijon|strong=\"H5859\"*, Abel Beth Maacah, Janoah|strong=\"H3239\"*, Kedesh|strong=\"H6943\"*, Hazor|strong=\"H2674\"*, Gilead|strong=\"H1568\"*, and|strong=\"H3478\"* Galilee|strong=\"H1551\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H4428\"* Naphtali|strong=\"H5321\"*; and|strong=\"H3478\"* he|strong=\"H3117\"* carried|strong=\"H1540\"* them|strong=\"H3947\"* captive|strong=\"H1540\"* to|strong=\"H3478\"* Assyria." + }, + { + "verseNum": 30, + "text": "Hoshea|strong=\"H1954\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elah made|strong=\"H4427\"* a|strong=\"H3068\"* conspiracy|strong=\"H7195\"* against|strong=\"H5921\"* Pekah|strong=\"H6492\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"*, attacked|strong=\"H5221\"* him|strong=\"H5921\"*, killed|strong=\"H5221\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H8141\"* his|strong=\"H5921\"* place|strong=\"H8478\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* twentieth|strong=\"H6242\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Jotham|strong=\"H3147\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uzziah|strong=\"H5818\"*." + }, + { + "verseNum": 31, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Pekah|strong=\"H6492\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, behold|strong=\"H2009\"*, they|strong=\"H3117\"* are|strong=\"H3117\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 32, + "text": "In|strong=\"H8141\"* the|strong=\"H1121\"* second|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Pekah|strong=\"H6492\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, Jotham|strong=\"H3147\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uzziah|strong=\"H5818\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H2568\"* was|strong=\"H8034\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* he|strong=\"H2568\"* began|strong=\"H1961\"* to|strong=\"H1961\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H2568\"* reigned|strong=\"H4427\"* sixteen|strong=\"H8337\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H1961\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Jerusha|strong=\"H3388\"* the|strong=\"H1961\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*." + }, + { + "verseNum": 34, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*. He|strong=\"H6213\"* did|strong=\"H6213\"* according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* his|strong=\"H3605\"* father Uzziah|strong=\"H5818\"* had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 35, + "text": "However|strong=\"H7535\"* the|strong=\"H3068\"* high|strong=\"H1116\"* places|strong=\"H1116\"* were|strong=\"H5971\"* not|strong=\"H3808\"* taken|strong=\"H5493\"* away|strong=\"H5493\"*. The|strong=\"H3068\"* people|strong=\"H5971\"* still|strong=\"H5750\"* sacrificed|strong=\"H2076\"* and|strong=\"H3068\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* in|strong=\"H3068\"* the|strong=\"H3068\"* high|strong=\"H1116\"* places|strong=\"H1116\"*. He|strong=\"H1931\"* built|strong=\"H1129\"* the|strong=\"H3068\"* upper|strong=\"H5945\"* gate|strong=\"H8179\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 36, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Jotham|strong=\"H3147\"*, and|strong=\"H3063\"* all|strong=\"H6213\"* that|strong=\"H3117\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 37, + "text": "In|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, Yahweh|strong=\"H3068\"* began|strong=\"H2490\"* to|strong=\"H3068\"* send|strong=\"H7971\"* Rezin|strong=\"H7526\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria and|strong=\"H1121\"* Pekah|strong=\"H6492\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"* against|strong=\"H3068\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 38, + "text": "Jotham|strong=\"H3147\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* was|strong=\"H1732\"* buried|strong=\"H6912\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers in|strong=\"H6912\"* his|strong=\"H1732\"* father|strong=\"H1121\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Ahaz his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H1121\"* seventeenth|strong=\"H7651\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Pekah|strong=\"H6492\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"*, Ahaz the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jotham|strong=\"H3147\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* began|strong=\"H3063\"* to|strong=\"H1121\"* reign|strong=\"H4427\"*." + }, + { + "verseNum": 2, + "text": "Ahaz was|strong=\"H3068\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H6213\"* he|strong=\"H6213\"* began to|strong=\"H3068\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H6213\"* reigned|strong=\"H4427\"* sixteen|strong=\"H8337\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. He|strong=\"H6213\"* didn’t do|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H8141\"* Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, like|strong=\"H3808\"* David|strong=\"H1732\"* his|strong=\"H3068\"* father|strong=\"H1121\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"H1571\"* he|strong=\"H3068\"* walked|strong=\"H3212\"* in|strong=\"H3478\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H1121\"* the|strong=\"H6440\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* even|strong=\"H1571\"* made|strong=\"H3478\"* his|strong=\"H3068\"* son|strong=\"H1121\"* to|strong=\"H3478\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H6440\"* fire, according to|strong=\"H3478\"* the|strong=\"H6440\"* abominations|strong=\"H8441\"* of|strong=\"H1121\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* cast|strong=\"H3068\"* out|strong=\"H3423\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3605\"* sacrificed|strong=\"H2076\"* and|strong=\"H6086\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* in|strong=\"H5921\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* hills|strong=\"H1389\"*, and|strong=\"H6086\"* under|strong=\"H8478\"* every|strong=\"H3605\"* green|strong=\"H7488\"* tree|strong=\"H6086\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H4428\"* Rezin|strong=\"H7526\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria and|strong=\"H1121\"* Pekah|strong=\"H6492\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3478\"* wage|strong=\"H4421\"* war|strong=\"H4421\"*. They|strong=\"H3808\"* besieged|strong=\"H6696\"* Ahaz, but|strong=\"H3808\"* could|strong=\"H3201\"* not|strong=\"H3808\"* overcome|strong=\"H3201\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "At|strong=\"H3427\"* that|strong=\"H3117\"* time|strong=\"H6256\"* Rezin|strong=\"H7526\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria recovered|strong=\"H7725\"* Elath to|strong=\"H5704\"* Syria, and|strong=\"H7725\"* drove the|strong=\"H3117\"* Jews|strong=\"H3064\"* from|strong=\"H7725\"* Elath; and|strong=\"H7725\"* the|strong=\"H3117\"* Syrians came|strong=\"H7725\"* to|strong=\"H5704\"* Elath, and|strong=\"H7725\"* lived|strong=\"H3427\"* there|strong=\"H8033\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 7, + "text": "So|strong=\"H7971\"* Ahaz sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H3478\"* Tiglath Pileser king|strong=\"H4428\"* of|strong=\"H1121\"* Assyria, saying, “I|strong=\"H5921\"* am your|strong=\"H5921\"* servant|strong=\"H5650\"* and|strong=\"H1121\"* your|strong=\"H5921\"* son|strong=\"H1121\"*. Come|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H1121\"* save|strong=\"H3467\"* me|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H1121\"* the|strong=\"H5921\"* hand|strong=\"H3709\"* of|strong=\"H1121\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria and|strong=\"H1121\"* out|strong=\"H7971\"* of|strong=\"H1121\"* the|strong=\"H5921\"* hand|strong=\"H3709\"* of|strong=\"H1121\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, who|strong=\"H1121\"* rise|strong=\"H6965\"* up|strong=\"H5927\"* against|strong=\"H5921\"* me|strong=\"H7971\"*.”" + }, + { + "verseNum": 8, + "text": "Ahaz took|strong=\"H3947\"* the|strong=\"H3947\"* silver|strong=\"H3701\"* and|strong=\"H3068\"* gold|strong=\"H2091\"* that|strong=\"H3068\"* was|strong=\"H3068\"* found|strong=\"H4672\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3947\"* treasures of|strong=\"H4428\"* the|strong=\"H3947\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* sent|strong=\"H7971\"* it|strong=\"H7971\"* for|strong=\"H7971\"* a|strong=\"H3068\"* present|strong=\"H4672\"* to|strong=\"H3068\"* the|strong=\"H3947\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria." + }, + { + "verseNum": 9, + "text": "The|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria listened|strong=\"H8085\"* to|strong=\"H4191\"* him|strong=\"H4191\"*; and|strong=\"H4428\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria went|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5927\"* Damascus|strong=\"H1834\"* and|strong=\"H4428\"* took|strong=\"H8610\"* it|strong=\"H5927\"*, and|strong=\"H4428\"* carried|strong=\"H1540\"* its|strong=\"H5927\"* people|strong=\"H8085\"* captive|strong=\"H1540\"* to|strong=\"H4191\"* Kir|strong=\"H7024\"*, and|strong=\"H4428\"* killed|strong=\"H4191\"* Rezin|strong=\"H7526\"*." + }, + { + "verseNum": 10, + "text": "King|strong=\"H4428\"* Ahaz went|strong=\"H3212\"* to|strong=\"H3212\"* Damascus|strong=\"H1834\"* to|strong=\"H3212\"* meet|strong=\"H7125\"* Tiglath Pileser king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, and|strong=\"H7971\"* saw|strong=\"H7200\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* that|strong=\"H7200\"* was|strong=\"H4428\"* at|strong=\"H4428\"* Damascus|strong=\"H1834\"*; and|strong=\"H7971\"* King|strong=\"H4428\"* Ahaz sent|strong=\"H7971\"* to|strong=\"H3212\"* Urijah the|strong=\"H3605\"* priest|strong=\"H3548\"* a|strong=\"H3068\"* drawing of|strong=\"H4428\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* and|strong=\"H7971\"* plans to|strong=\"H3212\"* build it|strong=\"H7200\"*." + }, + { + "verseNum": 11, + "text": "Urijah the|strong=\"H3605\"* priest|strong=\"H3548\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"*. According to|strong=\"H5704\"* all|strong=\"H3605\"* that|strong=\"H3605\"* King|strong=\"H4428\"* Ahaz had|strong=\"H4428\"* sent|strong=\"H7971\"* from|strong=\"H7971\"* Damascus|strong=\"H1834\"*, so|strong=\"H3651\"* Urijah the|strong=\"H3605\"* priest|strong=\"H3548\"* made|strong=\"H6213\"* it|strong=\"H6213\"* for|strong=\"H5704\"* the|strong=\"H3605\"* coming of|strong=\"H4428\"* King|strong=\"H4428\"* Ahaz from|strong=\"H7971\"* Damascus|strong=\"H1834\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"H7200\"* the|strong=\"H5921\"* king|strong=\"H4428\"* had|strong=\"H4428\"* come|strong=\"H5927\"* from|strong=\"H5921\"* Damascus|strong=\"H1834\"*, the|strong=\"H5921\"* king|strong=\"H4428\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*; and|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* came|strong=\"H5927\"* near|strong=\"H7126\"* to|strong=\"H5927\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H4428\"* offered|strong=\"H5927\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H5921\"* burned|strong=\"H6999\"* his|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* and|strong=\"H4196\"* his|strong=\"H5921\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, poured|strong=\"H5258\"* his|strong=\"H5921\"* drink|strong=\"H5262\"* offering|strong=\"H4503\"*, and|strong=\"H4196\"* sprinkled|strong=\"H2236\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H4196\"* his|strong=\"H5921\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H6440\"* bronze|strong=\"H5178\"* altar|strong=\"H4196\"*, which|strong=\"H3068\"* was|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, he|strong=\"H3068\"* brought|strong=\"H7126\"* from|strong=\"H6440\"* the|strong=\"H6440\"* front|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"*, from|strong=\"H6440\"* between|strong=\"H5921\"* his|strong=\"H5414\"* altar|strong=\"H4196\"* and|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H6440\"* north|strong=\"H6828\"* side|strong=\"H3409\"* of|strong=\"H1004\"* his|strong=\"H5414\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 15, + "text": "King|strong=\"H4428\"* Ahaz commanded|strong=\"H6680\"* Urijah the|strong=\"H3605\"* priest|strong=\"H3548\"*, saying, “On|strong=\"H5921\"* the|strong=\"H3605\"* great|strong=\"H1419\"* altar|strong=\"H4196\"* burn|strong=\"H6999\"* the|strong=\"H3605\"* morning|strong=\"H1242\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, the|strong=\"H3605\"* evening|strong=\"H6153\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, the|strong=\"H3605\"* king|strong=\"H4428\"*’s burnt|strong=\"H5930\"* offering|strong=\"H4503\"* and|strong=\"H4428\"* his|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, with|strong=\"H5921\"* the|strong=\"H3605\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land, their|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H4428\"* their|strong=\"H3605\"* drink|strong=\"H5262\"* offerings|strong=\"H5930\"*; and|strong=\"H4428\"* sprinkle|strong=\"H2236\"* on|strong=\"H5921\"* it|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H4428\"* the|strong=\"H3605\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sacrifice|strong=\"H2077\"*; but|strong=\"H1961\"* the|strong=\"H3605\"* bronze|strong=\"H5178\"* altar|strong=\"H4196\"* will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H5921\"* me|strong=\"H5921\"* to|strong=\"H1961\"* inquire|strong=\"H1239\"* by|strong=\"H5921\"*.”" + }, + { + "verseNum": 16, + "text": "Urijah the|strong=\"H3605\"* priest|strong=\"H3548\"* did|strong=\"H6213\"* so|strong=\"H6213\"*, according to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* King|strong=\"H4428\"* Ahaz commanded|strong=\"H6680\"*." + }, + { + "verseNum": 17, + "text": "King|strong=\"H4428\"* Ahaz cut|strong=\"H7112\"* off|strong=\"H7112\"* the|strong=\"H5921\"* panels of|strong=\"H4428\"* the|strong=\"H5921\"* bases|strong=\"H4350\"*, and|strong=\"H4428\"* removed|strong=\"H5493\"* the|strong=\"H5921\"* basin from|strong=\"H5493\"* off|strong=\"H7112\"* them|strong=\"H5414\"*, and|strong=\"H4428\"* took|strong=\"H5493\"* down|strong=\"H3381\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* from|strong=\"H5493\"* off|strong=\"H7112\"* the|strong=\"H5921\"* bronze|strong=\"H5178\"* oxen|strong=\"H1241\"* that|strong=\"H5414\"* were|strong=\"H1241\"* under|strong=\"H8478\"* it|strong=\"H5414\"*, and|strong=\"H4428\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* a|strong=\"H3068\"* pavement|strong=\"H4837\"* of|strong=\"H4428\"* stone." + }, + { + "verseNum": 18, + "text": "He|strong=\"H3068\"* removed|strong=\"H5437\"* the|strong=\"H6440\"* covered way|strong=\"H6440\"* for|strong=\"H6440\"* the|strong=\"H6440\"* Sabbath|strong=\"H7676\"* that|strong=\"H3068\"* they|strong=\"H3068\"* had|strong=\"H3068\"* built|strong=\"H1129\"* in|strong=\"H3068\"* the|strong=\"H6440\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s outer|strong=\"H2435\"* entrance|strong=\"H3996\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, because|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria." + }, + { + "verseNum": 19, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Ahaz which|strong=\"H1992\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 20, + "text": "Ahaz slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* was|strong=\"H1732\"* buried|strong=\"H6912\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Hezekiah|strong=\"H2396\"* his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* twelfth|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Ahaz king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Hoshea|strong=\"H1954\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elah began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* for|strong=\"H5921\"* nine|strong=\"H8672\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, yet|strong=\"H7535\"* not|strong=\"H3808\"* as|strong=\"H1961\"* the|strong=\"H6440\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* who|strong=\"H3068\"* were|strong=\"H3478\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 3, + "text": "Shalmaneser|strong=\"H8022\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria came|strong=\"H1961\"* up|strong=\"H5927\"* against|strong=\"H5921\"* him|strong=\"H5921\"*; and|strong=\"H7725\"* Hoshea|strong=\"H1954\"* became|strong=\"H1961\"* his|strong=\"H7725\"* servant|strong=\"H5650\"*, and|strong=\"H7725\"* brought|strong=\"H5927\"* him|strong=\"H5921\"* tribute|strong=\"H4503\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria discovered|strong=\"H4672\"* a|strong=\"H3068\"* conspiracy|strong=\"H7195\"* in|strong=\"H8141\"* Hoshea|strong=\"H1954\"*; for|strong=\"H7971\"* he|strong=\"H1004\"* had|strong=\"H4428\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* So|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*, and|strong=\"H7971\"* offered|strong=\"H5927\"* no|strong=\"H3808\"* tribute|strong=\"H4503\"* to|strong=\"H7971\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, as|strong=\"H5927\"* he|strong=\"H1004\"* had|strong=\"H4428\"* done year|strong=\"H8141\"* by|strong=\"H8141\"* year|strong=\"H8141\"*. Therefore|strong=\"H7971\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria seized him|strong=\"H7971\"*, and|strong=\"H7971\"* bound him|strong=\"H7971\"* in|strong=\"H8141\"* prison|strong=\"H1004\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria came|strong=\"H5927\"* up|strong=\"H5927\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land, went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Samaria|strong=\"H8111\"*, and|strong=\"H4428\"* besieged|strong=\"H6696\"* it|strong=\"H5921\"* three|strong=\"H7969\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"H3427\"* the|strong=\"H3920\"* ninth|strong=\"H8671\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Hoshea|strong=\"H1954\"* the|strong=\"H3920\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria took|strong=\"H3920\"* Samaria|strong=\"H8111\"* and|strong=\"H3478\"* carried|strong=\"H1540\"* Israel|strong=\"H3478\"* away|strong=\"H1540\"* to|strong=\"H3478\"* Assyria, and|strong=\"H3478\"* placed|strong=\"H3427\"* them|strong=\"H1540\"* in|strong=\"H3427\"* Halah|strong=\"H2477\"*, and|strong=\"H3478\"* on|strong=\"H3427\"* the|strong=\"H3920\"* Habor|strong=\"H2249\"*, the|strong=\"H3920\"* river|strong=\"H5104\"* of|strong=\"H4428\"* Gozan|strong=\"H1470\"*, and|strong=\"H3478\"* in|strong=\"H3427\"* the|strong=\"H3920\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* the|strong=\"H3920\"* Medes|strong=\"H4074\"*." + }, + { + "verseNum": 7, + "text": "It|strong=\"H3588\"* was|strong=\"H3068\"* so|strong=\"H1961\"* because|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H5927\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H5927\"* them|strong=\"H3027\"* up|strong=\"H5927\"* out|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3588\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"* from|strong=\"H5927\"* under|strong=\"H8478\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* had|strong=\"H3068\"* feared|strong=\"H3372\"* other gods," + }, + { + "verseNum": 8, + "text": "and|strong=\"H1121\"* walked|strong=\"H3212\"* in|strong=\"H3478\"* the|strong=\"H6440\"* statutes|strong=\"H2708\"* of|strong=\"H1121\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* cast|strong=\"H3068\"* out|strong=\"H3423\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, which|strong=\"H3068\"* they|strong=\"H3068\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* secretly|strong=\"H2644\"* did|strong=\"H3478\"* things|strong=\"H1697\"* that|strong=\"H3605\"* were|strong=\"H3478\"* not|strong=\"H3808\"* right|strong=\"H3651\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"*; and|strong=\"H1121\"* they|strong=\"H3651\"* built|strong=\"H1129\"* high|strong=\"H1116\"* places|strong=\"H1116\"* for|strong=\"H5704\"* themselves|strong=\"H1129\"* in|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* cities|strong=\"H5892\"*, from|strong=\"H5921\"* the|strong=\"H3605\"* tower|strong=\"H4026\"* of|strong=\"H1121\"* the|strong=\"H3605\"* watchmen|strong=\"H5341\"* to|strong=\"H5704\"* the|strong=\"H3605\"* fortified|strong=\"H4013\"* city|strong=\"H5892\"*;" + }, + { + "verseNum": 10, + "text": "and|strong=\"H6086\"* they|strong=\"H5921\"* set|strong=\"H5324\"* up|strong=\"H5324\"* for|strong=\"H5921\"* themselves|strong=\"H5921\"* pillars|strong=\"H4676\"* and|strong=\"H6086\"* Asherah poles on|strong=\"H5921\"* every|strong=\"H3605\"* high|strong=\"H1364\"* hill|strong=\"H1389\"* and|strong=\"H6086\"* under|strong=\"H8478\"* every|strong=\"H3605\"* green|strong=\"H7488\"* tree|strong=\"H6086\"*;" + }, + { + "verseNum": 11, + "text": "and|strong=\"H3068\"* there|strong=\"H8033\"* they|strong=\"H8033\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, as|strong=\"H1697\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* before|strong=\"H6440\"* them|strong=\"H6440\"* did|strong=\"H6213\"*; and|strong=\"H3068\"* they|strong=\"H8033\"* did|strong=\"H6213\"* wicked|strong=\"H7451\"* things|strong=\"H1697\"* to|strong=\"H3068\"* provoke|strong=\"H3707\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* anger|strong=\"H3707\"*;" + }, + { + "verseNum": 12, + "text": "and|strong=\"H3068\"* they|strong=\"H3068\"* served|strong=\"H5647\"* idols|strong=\"H1544\"*, of|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3068\"* them|strong=\"H6213\"*, “You|strong=\"H6213\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*.”" + }, + { + "verseNum": 13, + "text": "Yet|strong=\"H3068\"* Yahweh|strong=\"H3068\"* testified|strong=\"H5749\"* to|strong=\"H7725\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* to|strong=\"H7725\"* Judah|strong=\"H3063\"*, by|strong=\"H3027\"* every|strong=\"H3605\"* prophet|strong=\"H5030\"* and|strong=\"H3063\"* every|strong=\"H3605\"* seer|strong=\"H2374\"*, saying, “Turn|strong=\"H7725\"* from|strong=\"H7725\"* your|strong=\"H3068\"* evil|strong=\"H7451\"* ways|strong=\"H1870\"*, and|strong=\"H3063\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"* and|strong=\"H3063\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, according|strong=\"H3027\"* to|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* law|strong=\"H8451\"* which|strong=\"H3068\"* I|strong=\"H6680\"* commanded|strong=\"H6680\"* your|strong=\"H3068\"* fathers, and|strong=\"H3063\"* which|strong=\"H3068\"* I|strong=\"H6680\"* sent|strong=\"H7971\"* to|strong=\"H7725\"* you|strong=\"H6680\"* by|strong=\"H3027\"* my|strong=\"H8104\"* servants|strong=\"H5650\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*.”" + }, + { + "verseNum": 14, + "text": "Notwithstanding, they|strong=\"H3068\"* would|strong=\"H3068\"* not|strong=\"H3808\"* listen|strong=\"H8085\"*, but|strong=\"H3808\"* hardened|strong=\"H7185\"* their|strong=\"H3068\"* neck|strong=\"H6203\"* like|strong=\"H3808\"* the|strong=\"H8085\"* neck|strong=\"H6203\"* of|strong=\"H3068\"* their|strong=\"H3068\"* fathers who|strong=\"H3068\"* didn’t believe in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"H3068\"* rejected|strong=\"H3988\"* his|strong=\"H3068\"* statutes|strong=\"H2706\"* and|strong=\"H3068\"* his|strong=\"H3068\"* covenant|strong=\"H1285\"* that|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* with|strong=\"H3068\"* their|strong=\"H3068\"* fathers, and|strong=\"H3068\"* his|strong=\"H3068\"* testimonies|strong=\"H5715\"* which|strong=\"H3068\"* he|strong=\"H6213\"* testified|strong=\"H5749\"* to|strong=\"H3068\"* them|strong=\"H6213\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* followed|strong=\"H3212\"* vanity|strong=\"H1892\"*, and|strong=\"H3068\"* became|strong=\"H1891\"* vain|strong=\"H1892\"*, and|strong=\"H3068\"* followed|strong=\"H3212\"* the|strong=\"H6213\"* nations|strong=\"H1471\"* that|strong=\"H3068\"* were|strong=\"H1471\"* around|strong=\"H5439\"* them|strong=\"H6213\"*, concerning|strong=\"H3068\"* whom Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* them|strong=\"H6213\"* that|strong=\"H3068\"* they|strong=\"H3068\"* should|strong=\"H3068\"* not|strong=\"H1115\"* do|strong=\"H6213\"* like|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"H3068\"* abandoned|strong=\"H5800\"* all|strong=\"H3605\"* the|strong=\"H3605\"* commandments|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* made|strong=\"H6213\"* molten|strong=\"H4541\"* images|strong=\"H4541\"* for|strong=\"H6213\"* themselves|strong=\"H7812\"*, even|strong=\"H6213\"* two|strong=\"H8147\"* calves|strong=\"H5695\"*, and|strong=\"H3068\"* made|strong=\"H6213\"* an|strong=\"H6213\"* Asherah, and|strong=\"H3068\"* worshiped|strong=\"H7812\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H3068\"* served|strong=\"H5647\"* Baal|strong=\"H1168\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H3068\"* caused|strong=\"H5674\"* their|strong=\"H3068\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H3068\"* daughters|strong=\"H1323\"* to|strong=\"H3068\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H6213\"* fire, used|strong=\"H6213\"* divination|strong=\"H7081\"* and|strong=\"H1121\"* enchantments|strong=\"H5172\"*, and|strong=\"H1121\"* sold|strong=\"H4376\"* themselves|strong=\"H6213\"* to|strong=\"H3068\"* do|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, to|strong=\"H3068\"* provoke|strong=\"H3707\"* him|strong=\"H6213\"* to|strong=\"H3068\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 18, + "text": "Therefore|strong=\"H5921\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* very|strong=\"H3966\"* angry with|strong=\"H3068\"* Israel|strong=\"H3478\"*, and|strong=\"H3063\"* removed|strong=\"H5493\"* them|strong=\"H5921\"* out|strong=\"H5921\"* of|strong=\"H3068\"* his|strong=\"H3068\"* sight|strong=\"H6440\"*. There|strong=\"H3068\"* was|strong=\"H3068\"* none|strong=\"H3808\"* left|strong=\"H7604\"* but|strong=\"H7535\"* the|strong=\"H6440\"* tribe|strong=\"H7626\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* only|strong=\"H7535\"*." + }, + { + "verseNum": 19, + "text": "Also|strong=\"H1571\"* Judah|strong=\"H3063\"* didn’t keep|strong=\"H8104\"* the|strong=\"H6213\"* commandments|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, but|strong=\"H3808\"* walked|strong=\"H3212\"* in|strong=\"H3478\"* the|strong=\"H6213\"* statutes|strong=\"H2708\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* which|strong=\"H3068\"* they|strong=\"H3068\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* rejected|strong=\"H3988\"* all|strong=\"H3605\"* the|strong=\"H3605\"* offspring|strong=\"H2233\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, afflicted|strong=\"H6031\"* them|strong=\"H5414\"*, and|strong=\"H3478\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H3068\"* raiders, until|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H3068\"* cast|strong=\"H7993\"* them|strong=\"H5414\"* out|strong=\"H7993\"* of|strong=\"H3068\"* his|strong=\"H3605\"* sight|strong=\"H6440\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* tore|strong=\"H7167\"* Israel|strong=\"H3478\"* from|strong=\"H5921\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"*; and|strong=\"H1121\"* they|strong=\"H3588\"* made|strong=\"H4427\"* Jeroboam|strong=\"H3379\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"* king|strong=\"H4427\"*; and|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* drove|strong=\"H5077\"* Israel|strong=\"H3478\"* from|strong=\"H5921\"* following Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* made|strong=\"H4427\"* them|strong=\"H5921\"* sin|strong=\"H2398\"* a|strong=\"H3068\"* great|strong=\"H1419\"* sin|strong=\"H2398\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* walked|strong=\"H3212\"* in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* which|strong=\"H3478\"* he|strong=\"H6213\"* did|strong=\"H6213\"*; they|strong=\"H3808\"* didn’t depart|strong=\"H5493\"* from|strong=\"H4480\"* them|strong=\"H6213\"*" + }, + { + "verseNum": 23, + "text": "until|strong=\"H5704\"* Yahweh|strong=\"H3068\"* removed|strong=\"H5493\"* Israel|strong=\"H3478\"* out|strong=\"H5921\"* of|strong=\"H3068\"* his|strong=\"H3605\"* sight|strong=\"H6440\"*, as|strong=\"H5704\"* he|strong=\"H3117\"* said|strong=\"H1696\"* by|strong=\"H3027\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*. So|strong=\"H2088\"* Israel|strong=\"H3478\"* was|strong=\"H3068\"* carried|strong=\"H1540\"* away|strong=\"H5493\"* out|strong=\"H5921\"* of|strong=\"H3068\"* their|strong=\"H3605\"* own|strong=\"H3027\"* land|strong=\"H6440\"* to|strong=\"H1696\"* Assyria to|strong=\"H1696\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H8478\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Assyria brought|strong=\"H3478\"* people|strong=\"H1121\"* from|strong=\"H3478\"* Babylon, from|strong=\"H3478\"* Cuthah|strong=\"H3575\"*, from|strong=\"H3478\"* Avva|strong=\"H5755\"*, and|strong=\"H1121\"* from|strong=\"H3478\"* Hamath|strong=\"H2574\"* and|strong=\"H1121\"* Sepharvaim|strong=\"H5617\"*, and|strong=\"H1121\"* placed|strong=\"H3427\"* them|strong=\"H3423\"* in|strong=\"H3427\"* the|strong=\"H8478\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Samaria|strong=\"H8111\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* the|strong=\"H8478\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* they|strong=\"H3478\"* possessed|strong=\"H3423\"* Samaria|strong=\"H8111\"* and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* its|strong=\"H8478\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 25, + "text": "So|strong=\"H7971\"* it|strong=\"H8033\"* was|strong=\"H3068\"*, at|strong=\"H3427\"* the|strong=\"H3068\"* beginning|strong=\"H8462\"* of|strong=\"H3068\"* their|strong=\"H3068\"* dwelling|strong=\"H3427\"* there|strong=\"H8033\"*, that|strong=\"H3068\"* they|strong=\"H8033\"* didn’t fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"*. Therefore|strong=\"H7971\"* Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* lions among|strong=\"H3427\"* them|strong=\"H7971\"*, which|strong=\"H3068\"* killed|strong=\"H2026\"* some|strong=\"H8033\"* of|strong=\"H3068\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 26, + "text": "Therefore|strong=\"H7971\"* they|strong=\"H3808\"* spoke to|strong=\"H4191\"* the|strong=\"H3045\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, saying, “The|strong=\"H3045\"* nations|strong=\"H1471\"* which|strong=\"H1471\"* you|strong=\"H7971\"* have|strong=\"H3045\"* carried|strong=\"H1540\"* away|strong=\"H7971\"* and|strong=\"H7971\"* placed|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3045\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Samaria|strong=\"H8111\"* don’t know|strong=\"H3045\"* the|strong=\"H3045\"* law|strong=\"H4941\"* of|strong=\"H4428\"* the|strong=\"H3045\"* god|strong=\"H3808\"* of|strong=\"H4428\"* the|strong=\"H3045\"* land. Therefore|strong=\"H7971\"* he|strong=\"H3808\"* has|strong=\"H4428\"* sent|strong=\"H7971\"* lions among|strong=\"H3427\"* them|strong=\"H7971\"*; and|strong=\"H7971\"* behold|strong=\"H2009\"*, they|strong=\"H3808\"* kill|strong=\"H4191\"* them|strong=\"H7971\"*, because they|strong=\"H3808\"* don’t know|strong=\"H3045\"* the|strong=\"H3045\"* law|strong=\"H4941\"* of|strong=\"H4428\"* the|strong=\"H3045\"* god|strong=\"H3808\"* of|strong=\"H4428\"* the|strong=\"H3045\"* land.”" + }, + { + "verseNum": 27, + "text": "Then|strong=\"H4428\"* the|strong=\"H6680\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria commanded|strong=\"H6680\"*, saying, “Carry|strong=\"H3212\"* there|strong=\"H8033\"* one|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H6680\"* priests|strong=\"H3548\"* whom you|strong=\"H6680\"* brought|strong=\"H3212\"* from|strong=\"H1540\"* there|strong=\"H8033\"*; and|strong=\"H4428\"* let|strong=\"H1540\"* him|strong=\"H6680\"*+ 17:27 Hebrew: them* go|strong=\"H3212\"* and|strong=\"H4428\"* dwell|strong=\"H3427\"* there|strong=\"H8033\"*, and|strong=\"H4428\"* let|strong=\"H1540\"* him|strong=\"H6680\"* teach|strong=\"H3384\"* them|strong=\"H6680\"* the|strong=\"H6680\"* law|strong=\"H4941\"* of|strong=\"H4428\"* the|strong=\"H6680\"* god of|strong=\"H4428\"* the|strong=\"H6680\"* land.”" + }, + { + "verseNum": 28, + "text": "So|strong=\"H1961\"* one|strong=\"H1961\"* of|strong=\"H3068\"* the|strong=\"H3068\"* priests|strong=\"H3548\"* whom they|strong=\"H3068\"* had|strong=\"H3068\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* from|strong=\"H1540\"* Samaria|strong=\"H8111\"* came|strong=\"H1961\"* and|strong=\"H3068\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Bethel|strong=\"H1008\"*, and|strong=\"H3068\"* taught|strong=\"H3384\"* them|strong=\"H1540\"* how they|strong=\"H3068\"* should|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 29, + "text": "However every|strong=\"H6213\"* nation|strong=\"H1471\"* made|strong=\"H6213\"* gods of|strong=\"H1004\"* their|strong=\"H1992\"* own|strong=\"H1961\"*, and|strong=\"H1004\"* put|strong=\"H3240\"* them|strong=\"H1992\"* in|strong=\"H3427\"* the|strong=\"H6213\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H6213\"* high|strong=\"H1116\"* places|strong=\"H1116\"* which|strong=\"H1471\"* the|strong=\"H6213\"* Samaritans|strong=\"H8118\"* had|strong=\"H1961\"* made|strong=\"H6213\"*, every|strong=\"H6213\"* nation|strong=\"H1471\"* in|strong=\"H3427\"* their|strong=\"H1992\"* cities|strong=\"H5892\"* in|strong=\"H3427\"* which|strong=\"H1471\"* they|strong=\"H1992\"* lived|strong=\"H3427\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H6213\"* men|strong=\"H6213\"* of|strong=\"H6213\"* Babylon made|strong=\"H6213\"* Succoth Benoth, and|strong=\"H6213\"* the|strong=\"H6213\"* men|strong=\"H6213\"* of|strong=\"H6213\"* Cuth|strong=\"H3575\"* made|strong=\"H6213\"* Nergal|strong=\"H5370\"*, and|strong=\"H6213\"* the|strong=\"H6213\"* men|strong=\"H6213\"* of|strong=\"H6213\"* Hamath|strong=\"H2574\"* made|strong=\"H6213\"* Ashima," + }, + { + "verseNum": 31, + "text": "and|strong=\"H1121\"* the|strong=\"H6213\"* Avvites|strong=\"H5757\"* made|strong=\"H6213\"* Nibhaz|strong=\"H5026\"* and|strong=\"H1121\"* Tartak|strong=\"H8662\"*; and|strong=\"H1121\"* the|strong=\"H6213\"* Sepharvites|strong=\"H5616\"* burned|strong=\"H8313\"* their|strong=\"H8313\"* children|strong=\"H1121\"* in|strong=\"H6213\"* the|strong=\"H6213\"* fire to|strong=\"H6213\"* Adrammelech and|strong=\"H1121\"* Anammelech|strong=\"H6048\"*, the|strong=\"H6213\"* gods of|strong=\"H1121\"* Sepharvaim|strong=\"H5617\"*." + }, + { + "verseNum": 32, + "text": "So|strong=\"H6213\"* they|strong=\"H1992\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* also|strong=\"H3068\"* made|strong=\"H6213\"* from|strong=\"H3068\"* among|strong=\"H7098\"* themselves|strong=\"H1992\"* priests|strong=\"H3548\"* of|strong=\"H1004\"* the|strong=\"H6213\"* high|strong=\"H1116\"* places|strong=\"H1116\"* for|strong=\"H6213\"* themselves|strong=\"H1992\"*, who|strong=\"H3068\"* sacrificed|strong=\"H6213\"* for|strong=\"H6213\"* them|strong=\"H1992\"* in|strong=\"H3068\"* the|strong=\"H6213\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H6213\"* high|strong=\"H1116\"* places|strong=\"H1116\"*." + }, + { + "verseNum": 33, + "text": "They|strong=\"H8033\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* also|strong=\"H3068\"* served|strong=\"H5647\"* their|strong=\"H3068\"* own|strong=\"H1961\"* gods, after|strong=\"H1961\"* the|strong=\"H5647\"* ways of|strong=\"H3068\"* the|strong=\"H5647\"* nations|strong=\"H1471\"* from|strong=\"H1540\"* among|strong=\"H8033\"* whom they|strong=\"H8033\"* had|strong=\"H3068\"* been|strong=\"H1961\"* carried|strong=\"H1540\"* away|strong=\"H1540\"*." + }, + { + "verseNum": 34, + "text": "To|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"* they|strong=\"H1992\"* do|strong=\"H6213\"* what|strong=\"H2088\"* they|strong=\"H1992\"* did|strong=\"H6213\"* before|strong=\"H5704\"*. They|strong=\"H1992\"* don’t fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* do|strong=\"H6213\"* not|strong=\"H6213\"* follow|strong=\"H6213\"* the|strong=\"H6213\"* statutes|strong=\"H2708\"*, or|strong=\"H5704\"* the|strong=\"H6213\"* ordinances|strong=\"H4941\"*, or|strong=\"H5704\"* the|strong=\"H6213\"* law|strong=\"H8451\"*, or|strong=\"H5704\"* the|strong=\"H6213\"* commandment|strong=\"H4687\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*, whom|strong=\"H1992\"* he|strong=\"H3117\"* named|strong=\"H8034\"* Israel|strong=\"H3478\"*;" + }, + { + "verseNum": 35, + "text": "with|strong=\"H3068\"* whom Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* and|strong=\"H3068\"* commanded|strong=\"H6680\"* them|strong=\"H6680\"*, saying, “You|strong=\"H6680\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* fear|strong=\"H3372\"* other gods, nor|strong=\"H3808\"* bow|strong=\"H7812\"* yourselves|strong=\"H3068\"* to|strong=\"H3068\"* them|strong=\"H6680\"*, nor|strong=\"H3808\"* serve|strong=\"H5647\"* them|strong=\"H6680\"*, nor|strong=\"H3808\"* sacrifice|strong=\"H2076\"* to|strong=\"H3068\"* them|strong=\"H6680\"*;" + }, + { + "verseNum": 36, + "text": "but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H5927\"* you|strong=\"H3588\"* up|strong=\"H5927\"* out|strong=\"H5186\"* of|strong=\"H3068\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"* with|strong=\"H3068\"* great|strong=\"H1419\"* power|strong=\"H3581\"* and|strong=\"H3068\"* with|strong=\"H3068\"* an|strong=\"H3588\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* bow|strong=\"H7812\"* yourselves|strong=\"H3068\"* to|strong=\"H3068\"* him|strong=\"H5186\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* sacrifice|strong=\"H2076\"* to|strong=\"H3068\"* him|strong=\"H5186\"*." + }, + { + "verseNum": 37, + "text": "The|strong=\"H3605\"* statutes|strong=\"H2706\"* and|strong=\"H3117\"* the|strong=\"H3605\"* ordinances|strong=\"H4941\"*, and|strong=\"H3117\"* the|strong=\"H3605\"* law|strong=\"H8451\"* and|strong=\"H3117\"* the|strong=\"H3605\"* commandment|strong=\"H4687\"* which|strong=\"H3117\"* he|strong=\"H3117\"* wrote|strong=\"H3789\"* for|strong=\"H6213\"* you|strong=\"H3605\"*, you|strong=\"H3605\"* shall|strong=\"H3117\"* observe|strong=\"H8104\"* to|strong=\"H6213\"* do|strong=\"H6213\"* forever|strong=\"H3605\"* more|strong=\"H3808\"*. You|strong=\"H3605\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* fear|strong=\"H3372\"* other|strong=\"H3605\"* gods." + }, + { + "verseNum": 38, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* forget|strong=\"H7911\"* the|strong=\"H3772\"* covenant|strong=\"H1285\"* that|strong=\"H3808\"* I|strong=\"H3808\"* have|strong=\"H3808\"* made|strong=\"H3772\"* with|strong=\"H1285\"* you|strong=\"H3808\"*. You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* fear|strong=\"H3372\"* other gods." + }, + { + "verseNum": 39, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* he|strong=\"H1931\"* will|strong=\"H3068\"* deliver|strong=\"H5337\"* you|strong=\"H3588\"* out|strong=\"H5337\"* of|strong=\"H3068\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* enemies|strong=\"H3027\"*.”" + }, + { + "verseNum": 40, + "text": "However|strong=\"H8085\"* they|strong=\"H1992\"* didn’t listen|strong=\"H8085\"*, but|strong=\"H3588\"* they|strong=\"H1992\"* did|strong=\"H6213\"* what|strong=\"H6213\"* they|strong=\"H1992\"* did|strong=\"H6213\"* before|strong=\"H7223\"*." + }, + { + "verseNum": 41, + "text": "So|strong=\"H6213\"* these|strong=\"H2088\"* nations|strong=\"H1471\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* also|strong=\"H1571\"* served|strong=\"H5647\"* their|strong=\"H3068\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"*. Their|strong=\"H3068\"* children|strong=\"H1121\"* did|strong=\"H6213\"* likewise|strong=\"H1571\"*, and|strong=\"H1121\"* so|strong=\"H6213\"* did|strong=\"H6213\"* their|strong=\"H3068\"* children|strong=\"H1121\"*’s children|strong=\"H1121\"*. They|strong=\"H1992\"* do|strong=\"H6213\"* as|strong=\"H5704\"* their|strong=\"H3068\"* fathers did|strong=\"H6213\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H1961\"* third|strong=\"H7969\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Hoshea|strong=\"H1954\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elah king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, Hezekiah|strong=\"H2396\"* the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahaz king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H2568\"* was|strong=\"H8034\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* he|strong=\"H2568\"* began|strong=\"H1961\"* to|strong=\"H1961\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H2568\"* reigned|strong=\"H4427\"* twenty-nine|strong=\"H6242\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H1961\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Abi the|strong=\"H1961\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Zechariah|strong=\"H2148\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* David|strong=\"H1732\"* his|strong=\"H3605\"* father had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H1931\"* removed|strong=\"H5493\"* the|strong=\"H3588\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, broke|strong=\"H7665\"* the|strong=\"H3588\"* pillars|strong=\"H4676\"*, and|strong=\"H1121\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* the|strong=\"H3588\"* Asherah. He|strong=\"H1931\"* also|strong=\"H6213\"* broke|strong=\"H7665\"* in|strong=\"H3478\"* pieces|strong=\"H7665\"* the|strong=\"H3588\"* bronze|strong=\"H5178\"* serpent|strong=\"H5175\"* that|strong=\"H3588\"* Moses|strong=\"H4872\"* had|strong=\"H1961\"* made|strong=\"H6213\"*, because|strong=\"H3588\"* in|strong=\"H3478\"* those|strong=\"H1992\"* days|strong=\"H3117\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H5704\"* it|strong=\"H1931\"*; and|strong=\"H1121\"* he|strong=\"H1931\"* called|strong=\"H7121\"* it|strong=\"H1931\"* Nehushtan|strong=\"H5180\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3068\"* trusted in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, so|strong=\"H1961\"* that|strong=\"H3605\"* after|strong=\"H1961\"* him|strong=\"H6440\"* was|strong=\"H3068\"* no|strong=\"H3808\"* one|strong=\"H3605\"* like|strong=\"H3644\"* him|strong=\"H6440\"* among|strong=\"H3808\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, nor|strong=\"H3808\"* among|strong=\"H3808\"* them|strong=\"H6440\"* that|strong=\"H3605\"* were|strong=\"H3478\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3068\"* he|strong=\"H3068\"* joined|strong=\"H1692\"* with|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. He|strong=\"H3068\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* following him|strong=\"H6680\"*, but|strong=\"H3808\"* kept|strong=\"H8104\"* his|strong=\"H8104\"* commandments|strong=\"H4687\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H5973\"*. Wherever|strong=\"H3605\"* he|strong=\"H3068\"* went|strong=\"H3318\"*, he|strong=\"H3068\"* prospered|strong=\"H7919\"*. He|strong=\"H3068\"* rebelled|strong=\"H4775\"* against|strong=\"H5973\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, and|strong=\"H3068\"* didn’t serve|strong=\"H5647\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H1931\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"* to|strong=\"H5704\"* Gaza|strong=\"H5804\"* and|strong=\"H5892\"* its|strong=\"H5892\"* borders|strong=\"H1366\"*, from|strong=\"H5704\"* the|strong=\"H5221\"* tower|strong=\"H4026\"* of|strong=\"H5892\"* the|strong=\"H5221\"* watchmen|strong=\"H5341\"* to|strong=\"H5704\"* the|strong=\"H5221\"* fortified|strong=\"H4013\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 9, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* fourth|strong=\"H7243\"* year|strong=\"H8141\"* of|strong=\"H1121\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"*, which|strong=\"H1931\"* was|strong=\"H1961\"* the|strong=\"H5921\"* seventh|strong=\"H7637\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Hoshea|strong=\"H1954\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elah king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, Shalmaneser|strong=\"H8022\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Assyria came|strong=\"H1961\"* up|strong=\"H5927\"* against|strong=\"H5921\"* Samaria|strong=\"H8111\"* and|strong=\"H1121\"* besieged|strong=\"H6696\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 10, + "text": "At|strong=\"H3478\"* the|strong=\"H3920\"* end|strong=\"H7097\"* of|strong=\"H4428\"* three|strong=\"H7969\"* years|strong=\"H8141\"* they|strong=\"H8141\"* took|strong=\"H3920\"* it|strong=\"H1931\"*. In|strong=\"H8141\"* the|strong=\"H3920\"* sixth|strong=\"H8337\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Hezekiah|strong=\"H2396\"*, which|strong=\"H1931\"* was|strong=\"H3478\"* the|strong=\"H3920\"* ninth|strong=\"H8672\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Hoshea|strong=\"H1954\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, Samaria|strong=\"H8111\"* was|strong=\"H3478\"* taken|strong=\"H3920\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H1540\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria carried|strong=\"H1540\"* Israel|strong=\"H3478\"* away|strong=\"H1540\"* to|strong=\"H3478\"* Assyria, and|strong=\"H3478\"* put|strong=\"H5148\"* them|strong=\"H1540\"* in|strong=\"H3478\"* Halah|strong=\"H2477\"*, and|strong=\"H3478\"* on|strong=\"H5892\"* the|strong=\"H1540\"* Habor|strong=\"H2249\"*, the|strong=\"H1540\"* river|strong=\"H5104\"* of|strong=\"H4428\"* Gozan|strong=\"H1470\"*, and|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H1540\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* the|strong=\"H1540\"* Medes|strong=\"H4074\"*," + }, + { + "verseNum": 12, + "text": "because|strong=\"H5921\"* they|strong=\"H3068\"* didn’t obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, but|strong=\"H3808\"* transgressed|strong=\"H5674\"* his|strong=\"H3605\"* covenant|strong=\"H1285\"*, even|strong=\"H3808\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Moses|strong=\"H4872\"* the|strong=\"H3605\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"*, and|strong=\"H4872\"* would|strong=\"H3068\"* not|strong=\"H3808\"* hear|strong=\"H8085\"* it|strong=\"H5921\"* or|strong=\"H3808\"* do|strong=\"H6213\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"H4428\"* in|strong=\"H8141\"* the|strong=\"H3605\"* fourteenth|strong=\"H6240\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"*, Sennacherib|strong=\"H5576\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria came|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* took|strong=\"H8610\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* sent|strong=\"H7971\"* to|strong=\"H7725\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria at|strong=\"H5921\"* Lachish|strong=\"H3923\"*, saying, “I|strong=\"H5414\"* have|strong=\"H3063\"* offended|strong=\"H2398\"* you|strong=\"H5414\"*. Withdraw|strong=\"H7725\"* from|strong=\"H7725\"* me|strong=\"H5414\"*. That|strong=\"H5414\"* which|strong=\"H2091\"* you|strong=\"H5414\"* put|strong=\"H5414\"* on|strong=\"H5921\"* me|strong=\"H5414\"*, I|strong=\"H5414\"* will|strong=\"H4428\"* bear|strong=\"H5375\"*.” The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria appointed|strong=\"H5414\"* to|strong=\"H7725\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"* of|strong=\"H4428\"* silver|strong=\"H3701\"* and|strong=\"H3967\"* thirty|strong=\"H7970\"* talents|strong=\"H3603\"*+ 18:14 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces* of|strong=\"H4428\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 15, + "text": "Hezekiah|strong=\"H2396\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* silver|strong=\"H3701\"* that|strong=\"H3605\"* was|strong=\"H3068\"* found|strong=\"H4672\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3605\"* treasures of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 16, + "text": "At|strong=\"H3068\"* that|strong=\"H1931\"* time|strong=\"H6256\"*, Hezekiah|strong=\"H2396\"* cut|strong=\"H7112\"* off|strong=\"H7112\"* the|strong=\"H5414\"* gold from|strong=\"H3068\"* the|strong=\"H5414\"* doors|strong=\"H1817\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*, and|strong=\"H3063\"* from|strong=\"H3068\"* the|strong=\"H5414\"* pillars which|strong=\"H1931\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* had|strong=\"H3068\"* overlaid|strong=\"H6823\"*, and|strong=\"H3063\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria." + }, + { + "verseNum": 17, + "text": "The|strong=\"H4480\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria sent|strong=\"H7971\"* Tartan|strong=\"H8661\"*, Rabsaris|strong=\"H7249\"*, and|strong=\"H7971\"* Rabshakeh|strong=\"H7262\"* from|strong=\"H4480\"* Lachish|strong=\"H3923\"* to|strong=\"H7971\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* with|strong=\"H3389\"* a|strong=\"H3068\"* great|strong=\"H3515\"* army|strong=\"H2426\"* to|strong=\"H7971\"* Jerusalem|strong=\"H3389\"*. They|strong=\"H3389\"* went|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H7971\"* came|strong=\"H5927\"* to|strong=\"H7971\"* Jerusalem|strong=\"H3389\"*. When|strong=\"H7971\"* they|strong=\"H3389\"* had|strong=\"H4428\"* come|strong=\"H5927\"* up|strong=\"H5927\"*, they|strong=\"H3389\"* came|strong=\"H5927\"* and|strong=\"H7971\"* stood|strong=\"H5975\"* by|strong=\"H5975\"* the|strong=\"H4480\"* conduit|strong=\"H8585\"* of|strong=\"H4428\"* the|strong=\"H4480\"* upper|strong=\"H5945\"* pool|strong=\"H1295\"*, which|strong=\"H7704\"* is|strong=\"H4428\"* in|strong=\"H4428\"* the|strong=\"H4480\"* highway|strong=\"H4546\"* of|strong=\"H4428\"* the|strong=\"H4480\"* fuller’s field|strong=\"H7704\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H3318\"* they|strong=\"H5921\"* had|strong=\"H4428\"* called|strong=\"H7121\"* to|strong=\"H3318\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, Eliakim the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*, who|strong=\"H1121\"* was|strong=\"H4428\"* over|strong=\"H5921\"* the|strong=\"H5921\"* household|strong=\"H1004\"*, and|strong=\"H1121\"* Shebnah|strong=\"H7644\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"*, and|strong=\"H1121\"* Joah|strong=\"H3098\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asaph the|strong=\"H5921\"* recorder|strong=\"H2142\"* came|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "Rabshakeh|strong=\"H7262\"* said to|strong=\"H4428\"* them|strong=\"H2088\"*, “Say now|strong=\"H4994\"* to|strong=\"H4428\"* Hezekiah|strong=\"H2396\"*, ‘The|strong=\"H3541\"* great|strong=\"H1419\"* king|strong=\"H4428\"*, the|strong=\"H3541\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, says|strong=\"H3541\"*, “What|strong=\"H4100\"* confidence is|strong=\"H2088\"* this|strong=\"H2088\"* in|strong=\"H4428\"* which|strong=\"H4100\"* you|strong=\"H4100\"* trust?" + }, + { + "verseNum": 20, + "text": "You|strong=\"H3588\"* say|strong=\"H1697\"* (but|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H1697\"* but|strong=\"H3588\"* vain|strong=\"H8193\"* words|strong=\"H1697\"*), ‘There|strong=\"H6258\"* is|strong=\"H4310\"* counsel|strong=\"H6098\"* and|strong=\"H1697\"* strength|strong=\"H1369\"* for|strong=\"H3588\"* war|strong=\"H4421\"*.’ Now|strong=\"H6258\"* on|strong=\"H5921\"* whom|strong=\"H4310\"* do|strong=\"H1697\"* you|strong=\"H3588\"* trust, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1697\"* rebelled|strong=\"H4775\"* against|strong=\"H5921\"* me|strong=\"H5921\"*?" + }, + { + "verseNum": 21, + "text": "Now|strong=\"H6258\"*, behold|strong=\"H2009\"*, you|strong=\"H3605\"* trust in|strong=\"H5921\"* the|strong=\"H3605\"* staff|strong=\"H4938\"* of|strong=\"H4428\"* this|strong=\"H2088\"* bruised|strong=\"H7533\"* reed|strong=\"H7070\"*, even|strong=\"H3651\"* in|strong=\"H5921\"* Egypt|strong=\"H4714\"*. If|strong=\"H2009\"* a|strong=\"H3068\"* man|strong=\"H3605\"* leans|strong=\"H5564\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, it|strong=\"H5921\"* will|strong=\"H4428\"* go|strong=\"H4428\"* into|strong=\"H5921\"* his|strong=\"H3605\"* hand|strong=\"H3709\"* and|strong=\"H4428\"* pierce|strong=\"H5344\"* it|strong=\"H5921\"*. So|strong=\"H3651\"* is|strong=\"H2088\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* to|strong=\"H5921\"* all|strong=\"H3605\"* who|strong=\"H3605\"* trust on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* tell me|strong=\"H6440\"*, ‘We|strong=\"H3588\"* trust in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*,’ isn’t that|strong=\"H3588\"* he|strong=\"H1931\"* whose high|strong=\"H1116\"* places|strong=\"H1116\"* and|strong=\"H3063\"* whose altars|strong=\"H4196\"* Hezekiah|strong=\"H2396\"* has|strong=\"H3068\"* taken|strong=\"H5493\"* away|strong=\"H5493\"*, and|strong=\"H3063\"* has|strong=\"H3068\"* said to|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, ‘You|strong=\"H3588\"* shall|strong=\"H3068\"* worship|strong=\"H7812\"* before|strong=\"H6440\"* this|strong=\"H2088\"* altar|strong=\"H4196\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*’?" + }, + { + "verseNum": 23, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, please|strong=\"H4994\"* give|strong=\"H5414\"* pledges|strong=\"H6148\"* to|strong=\"H3201\"* my|strong=\"H5414\"* master|strong=\"H5414\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, and|strong=\"H4428\"* I|strong=\"H5414\"* will|strong=\"H4428\"* give|strong=\"H5414\"* you|strong=\"H5414\"* two thousand horses|strong=\"H5483\"* if you|strong=\"H5414\"* are|strong=\"H5483\"* able|strong=\"H3201\"* on|strong=\"H5921\"* your|strong=\"H5414\"* part|strong=\"H5921\"* to|strong=\"H3201\"* set|strong=\"H5414\"* riders|strong=\"H7392\"* on|strong=\"H5921\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 24, + "text": "How then|strong=\"H7725\"* can|strong=\"H5650\"* you|strong=\"H6440\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* one|strong=\"H6996\"* captain|strong=\"H6346\"* of|strong=\"H6440\"* the|strong=\"H6440\"* least|strong=\"H6996\"* of|strong=\"H6440\"* my|strong=\"H5921\"* master’s servants|strong=\"H5650\"*, and|strong=\"H7725\"* put|strong=\"H7725\"* your|strong=\"H5921\"* trust on|strong=\"H5921\"* Egypt|strong=\"H4714\"* for|strong=\"H5921\"* chariots|strong=\"H7393\"* and|strong=\"H7725\"* for|strong=\"H5921\"* horsemen|strong=\"H6571\"*?" + }, + { + "verseNum": 25, + "text": "Have|strong=\"H3068\"* I|strong=\"H5921\"* now|strong=\"H6258\"* come|strong=\"H5927\"* up|strong=\"H5927\"* without|strong=\"H1107\"* Yahweh|strong=\"H3068\"* against|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"* to|strong=\"H3068\"* destroy|strong=\"H7843\"* it|strong=\"H5921\"*? Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H5921\"*, ‘Go|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* this|strong=\"H2088\"* land|strong=\"H4725\"*, and|strong=\"H3068\"* destroy|strong=\"H7843\"* it|strong=\"H5921\"*.’”’”" + }, + { + "verseNum": 26, + "text": "Then|strong=\"H1696\"* Eliakim the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*, Shebnah|strong=\"H7644\"*, and|strong=\"H1121\"* Joah|strong=\"H3098\"*, said|strong=\"H1696\"* to|strong=\"H1696\"* Rabshakeh|strong=\"H7262\"*, “Please|strong=\"H4994\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* your|strong=\"H5921\"* servants|strong=\"H5650\"* in|strong=\"H5921\"* the|strong=\"H5921\"* Syrian language|strong=\"H3066\"*, for|strong=\"H3588\"* we|strong=\"H3068\"* understand|strong=\"H8085\"* it|strong=\"H5921\"*. Don’t speak|strong=\"H1696\"* with|strong=\"H5973\"* us|strong=\"H4994\"* in|strong=\"H5921\"* the|strong=\"H5921\"* Jews’ language|strong=\"H3066\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* hearing|strong=\"H8085\"* of|strong=\"H1121\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*.”" + }, + { + "verseNum": 27, + "text": "But|strong=\"H3808\"* Rabshakeh|strong=\"H7262\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5921\"*, “Has|strong=\"H1697\"* my|strong=\"H5921\"* master|strong=\"H3427\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H1696\"* your|strong=\"H5921\"* master|strong=\"H3427\"* and|strong=\"H7971\"* to|strong=\"H1696\"* you|strong=\"H7971\"*, to|strong=\"H1696\"* speak|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"*? Hasn’t he|strong=\"H3808\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H1696\"* the|strong=\"H5921\"* men who|strong=\"H3427\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*, to|strong=\"H1696\"* eat their|strong=\"H5921\"* own|strong=\"H5973\"* dung, and|strong=\"H7971\"* to|strong=\"H1696\"* drink|strong=\"H8354\"* their|strong=\"H5921\"* own|strong=\"H5973\"* urine|strong=\"H7890\"* with|strong=\"H5973\"* you|strong=\"H7971\"*?”" + }, + { + "verseNum": 28, + "text": "Then|strong=\"H1696\"* Rabshakeh|strong=\"H7262\"* stood|strong=\"H5975\"* and|strong=\"H4428\"* cried|strong=\"H7121\"* with|strong=\"H1696\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"* in|strong=\"H4428\"* the|strong=\"H8085\"* Jews’ language|strong=\"H3066\"*, and|strong=\"H4428\"* spoke|strong=\"H1696\"*, saying|strong=\"H1697\"*, “Hear|strong=\"H8085\"* the|strong=\"H8085\"* word|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H8085\"* great|strong=\"H1419\"* king|strong=\"H4428\"*, the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* says|strong=\"H3541\"*, ‘Don’t let|strong=\"H3808\"* Hezekiah|strong=\"H2396\"* deceive|strong=\"H5377\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H4428\"* not|strong=\"H3808\"* be|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* deliver|strong=\"H5337\"* you|strong=\"H3588\"* out|strong=\"H5337\"* of|strong=\"H4428\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 30, + "text": "Don’t let|strong=\"H5414\"* Hezekiah|strong=\"H2396\"* make|strong=\"H5414\"* you|strong=\"H5414\"* trust in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying, “Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* surely|strong=\"H5414\"* deliver|strong=\"H5337\"* us|strong=\"H5414\"*, and|strong=\"H3068\"* this|strong=\"H2063\"* city|strong=\"H5892\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* given|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria.”" + }, + { + "verseNum": 31, + "text": "Don’t listen|strong=\"H8085\"* to|strong=\"H3318\"* Hezekiah|strong=\"H2396\"*.’ For|strong=\"H3588\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria says|strong=\"H3541\"*, ‘Make|strong=\"H6213\"* your|strong=\"H8085\"* peace|strong=\"H1293\"* with|strong=\"H6213\"* me|strong=\"H6213\"*, and|strong=\"H4428\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* me|strong=\"H6213\"*; and|strong=\"H4428\"* everyone of|strong=\"H4428\"* you|strong=\"H3588\"* eat from|strong=\"H3318\"* his|strong=\"H8085\"* own vine|strong=\"H1612\"*, and|strong=\"H4428\"* everyone from|strong=\"H3318\"* his|strong=\"H8085\"* own fig|strong=\"H8384\"* tree|strong=\"H8384\"*, and|strong=\"H4428\"* everyone drink|strong=\"H8354\"* water|strong=\"H4325\"* from|strong=\"H3318\"* his|strong=\"H8085\"* own cistern;" + }, + { + "verseNum": 32, + "text": "until|strong=\"H5704\"* I|strong=\"H3588\"* come|strong=\"H2421\"* and|strong=\"H3068\"* take|strong=\"H3947\"* you|strong=\"H3588\"* away|strong=\"H3947\"* to|strong=\"H5704\"* a|strong=\"H3068\"* land like|strong=\"H3808\"* your|strong=\"H3068\"* own land, a|strong=\"H3068\"* land of|strong=\"H3068\"* grain|strong=\"H1715\"* and|strong=\"H3068\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, a|strong=\"H3068\"* land of|strong=\"H3068\"* bread|strong=\"H3899\"* and|strong=\"H3068\"* vineyards|strong=\"H3754\"*, a|strong=\"H3068\"* land of|strong=\"H3068\"* olive|strong=\"H2132\"* trees|strong=\"H2132\"* and|strong=\"H3068\"* of|strong=\"H3068\"* honey|strong=\"H1706\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3068\"* live|strong=\"H2421\"* and|strong=\"H3068\"* not|strong=\"H3808\"* die|strong=\"H4191\"*. Don’t listen|strong=\"H8085\"* to|strong=\"H5704\"* Hezekiah|strong=\"H2396\"* when|strong=\"H3588\"* he|strong=\"H3588\"* persuades you|strong=\"H3588\"*, saying, “Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5337\"* us|strong=\"H3588\"*.”" + }, + { + "verseNum": 33, + "text": "Has|strong=\"H4428\"* any of|strong=\"H4428\"* the|strong=\"H3027\"* gods of|strong=\"H4428\"* the|strong=\"H3027\"* nations|strong=\"H1471\"* ever delivered|strong=\"H5337\"* his|strong=\"H3027\"* land out|strong=\"H5337\"* of|strong=\"H4428\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3027\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria?" + }, + { + "verseNum": 34, + "text": "Where|strong=\"H3027\"* are|strong=\"H3027\"* the|strong=\"H3588\"* gods of|strong=\"H3027\"* Hamath|strong=\"H2574\"* and|strong=\"H3027\"* of|strong=\"H3027\"* Arpad? Where|strong=\"H3027\"* are|strong=\"H3027\"* the|strong=\"H3588\"* gods of|strong=\"H3027\"* Sepharvaim|strong=\"H5617\"*, of|strong=\"H3027\"* Hena|strong=\"H2012\"*, and|strong=\"H3027\"* Ivvah|strong=\"H5755\"*? Have|strong=\"H3027\"* they|strong=\"H3588\"* delivered|strong=\"H5337\"* Samaria|strong=\"H8111\"* out|strong=\"H5337\"* of|strong=\"H3027\"* my|strong=\"H5337\"* hand|strong=\"H3027\"*?" + }, + { + "verseNum": 35, + "text": "Who|strong=\"H4310\"* are|strong=\"H3027\"* they|strong=\"H3588\"* among|strong=\"H4310\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gods of|strong=\"H3068\"* the|strong=\"H3605\"* countries, that|strong=\"H3588\"* have|strong=\"H3068\"* delivered|strong=\"H5337\"* their|strong=\"H3605\"* country out|strong=\"H5337\"* of|strong=\"H3068\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*, that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* should|strong=\"H3068\"* deliver|strong=\"H5337\"* Jerusalem|strong=\"H3389\"* out|strong=\"H5337\"* of|strong=\"H3068\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*?’”" + }, + { + "verseNum": 36, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* stayed quiet|strong=\"H2790\"*, and|strong=\"H6030\"* answered|strong=\"H6030\"* him|strong=\"H1931\"* not|strong=\"H3808\"* a|strong=\"H3068\"* word|strong=\"H1697\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"*’s commandment|strong=\"H4687\"* was|strong=\"H1931\"*, “Don’t answer|strong=\"H6030\"* him|strong=\"H1931\"*.”" + }, + { + "verseNum": 37, + "text": "Then|strong=\"H1121\"* Eliakim the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*, who|strong=\"H1121\"* was|strong=\"H1697\"* over|strong=\"H5921\"* the|strong=\"H5921\"* household|strong=\"H1004\"*, came|strong=\"H1697\"* with|strong=\"H1004\"* Shebna|strong=\"H7644\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"* and|strong=\"H1121\"* Joah|strong=\"H3098\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asaph the|strong=\"H5921\"* recorder|strong=\"H2142\"* to|strong=\"H5921\"* Hezekiah|strong=\"H2396\"* with|strong=\"H1004\"* their|strong=\"H5921\"* clothes torn|strong=\"H7167\"*, and|strong=\"H1121\"* told|strong=\"H5046\"* him|strong=\"H5921\"* Rabshakeh|strong=\"H7262\"*’s words|strong=\"H1697\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* heard|strong=\"H8085\"* it|strong=\"H1961\"*, he|strong=\"H3068\"* tore|strong=\"H7167\"* his|strong=\"H3068\"* clothes, covered|strong=\"H3680\"* himself|strong=\"H3068\"* with|strong=\"H1004\"* sackcloth|strong=\"H8242\"*, and|strong=\"H3068\"* went|strong=\"H3068\"* into|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H1004\"* sent|strong=\"H7971\"* Eliakim, who|strong=\"H3548\"* was|strong=\"H1004\"* over|strong=\"H5921\"* the|strong=\"H5921\"* household|strong=\"H1004\"*, Shebna|strong=\"H7644\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* the|strong=\"H5921\"* priests|strong=\"H3548\"*, covered|strong=\"H3680\"* with|strong=\"H1004\"* sackcloth|strong=\"H8242\"*, to|strong=\"H7971\"* Isaiah|strong=\"H3470\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz." + }, + { + "verseNum": 3, + "text": "They|strong=\"H3588\"* said to|strong=\"H5704\"* him|strong=\"H3205\"*, “Hezekiah|strong=\"H2396\"* says|strong=\"H3541\"*, ‘Today|strong=\"H3117\"* is|strong=\"H2088\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H1121\"* trouble|strong=\"H6869\"*, of|strong=\"H1121\"* rebuke|strong=\"H8433\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* rejection|strong=\"H5007\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* have|strong=\"H1121\"* come|strong=\"H3205\"* to|strong=\"H5704\"* the|strong=\"H3588\"* point|strong=\"H5704\"* of|strong=\"H1121\"* birth|strong=\"H3205\"*, and|strong=\"H1121\"* there|strong=\"H2088\"* is|strong=\"H2088\"* no strength|strong=\"H3581\"* to|strong=\"H5704\"* deliver|strong=\"H6869\"* them|strong=\"H5704\"*." + }, + { + "verseNum": 4, + "text": "It|strong=\"H5375\"* may|strong=\"H3068\"* be|strong=\"H1697\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* hear|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H4428\"* Rabshakeh|strong=\"H7262\"*, whom the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria his|strong=\"H3605\"* master has|strong=\"H3068\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* defy|strong=\"H2778\"* the|strong=\"H3605\"* living|strong=\"H2416\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* rebuke|strong=\"H3198\"* the|strong=\"H3605\"* words|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* heard|strong=\"H8085\"*. Therefore|strong=\"H7971\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H3068\"* prayer|strong=\"H8605\"* for|strong=\"H1157\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* that|strong=\"H3605\"* is|strong=\"H3068\"* left|strong=\"H4672\"*.’”" + }, + { + "verseNum": 5, + "text": "So|strong=\"H5650\"* the|strong=\"H5650\"* servants|strong=\"H5650\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* came|strong=\"H5650\"* to|strong=\"H4428\"* Isaiah|strong=\"H3470\"*." + }, + { + "verseNum": 6, + "text": "Isaiah|strong=\"H3470\"* said|strong=\"H1697\"* to|strong=\"H3068\"* them|strong=\"H6440\"*, “Tell|strong=\"H8085\"* your|strong=\"H3068\"* master this|strong=\"H3541\"*: ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Don’t be|strong=\"H1697\"* afraid|strong=\"H3372\"* of|strong=\"H4428\"* the|strong=\"H6440\"* words|strong=\"H1697\"* that|strong=\"H8085\"* you|strong=\"H6440\"* have|strong=\"H3068\"* heard|strong=\"H8085\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* the|strong=\"H6440\"* servants|strong=\"H5288\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria have|strong=\"H3068\"* blasphemed|strong=\"H1442\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 7, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H2719\"* put|strong=\"H5414\"* a|strong=\"H3068\"* spirit|strong=\"H7307\"* in|strong=\"H8085\"* him|strong=\"H5414\"*, and|strong=\"H7725\"* he|strong=\"H5414\"* will|strong=\"H2719\"* hear|strong=\"H8085\"* news|strong=\"H8052\"*, and|strong=\"H7725\"* will|strong=\"H2719\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H5414\"* own land. I|strong=\"H2005\"* will|strong=\"H2719\"* cause|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H7725\"* fall|strong=\"H5307\"* by|strong=\"H5414\"* the|strong=\"H8085\"* sword|strong=\"H2719\"* in|strong=\"H8085\"* his|strong=\"H5414\"* own land.”’”" + }, + { + "verseNum": 8, + "text": "So|strong=\"H7725\"* Rabshakeh|strong=\"H7262\"* returned|strong=\"H7725\"* and|strong=\"H7725\"* found|strong=\"H4672\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria warring|strong=\"H3898\"* against|strong=\"H5921\"* Libnah|strong=\"H3841\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H4428\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H4428\"* departed|strong=\"H5265\"* from|strong=\"H5265\"* Lachish|strong=\"H3923\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"H8085\"* he|strong=\"H7971\"* heard|strong=\"H8085\"* it|strong=\"H7725\"* said|strong=\"H8085\"* of|strong=\"H4428\"* Tirhakah|strong=\"H8640\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Ethiopia|strong=\"H3568\"*, “Behold|strong=\"H2009\"*, he|strong=\"H7971\"* has|strong=\"H4428\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H7725\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* you|strong=\"H7971\"*,” he|strong=\"H7971\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* again|strong=\"H7725\"* to|strong=\"H7725\"* Hezekiah|strong=\"H2396\"*, saying," + }, + { + "verseNum": 10, + "text": "“Tell Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* this|strong=\"H3541\"*: ‘Don’t let|strong=\"H5414\"* your|strong=\"H5414\"* God|strong=\"H5414\"* in|strong=\"H4428\"* whom you|strong=\"H5414\"* trust deceive|strong=\"H5377\"* you|strong=\"H5414\"*, saying, Jerusalem|strong=\"H3389\"* will|strong=\"H4428\"* not|strong=\"H3808\"* be|strong=\"H3808\"* given|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria." + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2009\"*, you|strong=\"H3605\"* have|strong=\"H3605\"* heard|strong=\"H8085\"* what|strong=\"H6213\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Assyria have|strong=\"H3605\"* done|strong=\"H6213\"* to|strong=\"H6213\"* all|strong=\"H3605\"* lands, by|strong=\"H3605\"* destroying|strong=\"H2763\"* them|strong=\"H6213\"* utterly|strong=\"H2763\"*. Will|strong=\"H4428\"* you|strong=\"H3605\"* be|strong=\"H4428\"* delivered|strong=\"H5337\"*?" + }, + { + "verseNum": 12, + "text": "Have|strong=\"H1121\"* the|strong=\"H7843\"* gods of|strong=\"H1121\"* the|strong=\"H7843\"* nations|strong=\"H1471\"* delivered|strong=\"H5337\"* them|strong=\"H7843\"*, which|strong=\"H1471\"* my|strong=\"H5337\"* fathers have|strong=\"H1121\"* destroyed|strong=\"H7843\"*—Gozan|strong=\"H1470\"*, Haran|strong=\"H2771\"*, Rezeph|strong=\"H7530\"*, and|strong=\"H1121\"* the|strong=\"H7843\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Eden|strong=\"H5729\"* who|strong=\"H1121\"* were|strong=\"H1121\"* in|strong=\"H1121\"* Telassar|strong=\"H8515\"*?" + }, + { + "verseNum": 13, + "text": "Where is|strong=\"H4428\"* the|strong=\"H5892\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Hamath|strong=\"H2574\"*, the|strong=\"H5892\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Arpad, and|strong=\"H4428\"* the|strong=\"H5892\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5892\"* city|strong=\"H5892\"* of|strong=\"H4428\"* Sepharvaim|strong=\"H5617\"*, of|strong=\"H4428\"* Hena|strong=\"H2012\"*, and|strong=\"H4428\"* Ivvah|strong=\"H5755\"*?’”" + }, + { + "verseNum": 14, + "text": "Hezekiah|strong=\"H2396\"* received|strong=\"H3947\"* the|strong=\"H6440\"* letter|strong=\"H5612\"* from|strong=\"H6440\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* the|strong=\"H6440\"* messengers|strong=\"H4397\"* and|strong=\"H3068\"* read|strong=\"H7121\"* it|strong=\"H7121\"*. Then|strong=\"H3947\"* Hezekiah|strong=\"H2396\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* spread|strong=\"H6566\"* it|strong=\"H7121\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "Hezekiah|strong=\"H2396\"* prayed|strong=\"H6419\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3478\"* said, “Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, who|strong=\"H3605\"* are|strong=\"H3478\"* enthroned|strong=\"H3427\"* above|strong=\"H6440\"* the|strong=\"H3605\"* cherubim|strong=\"H3742\"*, you|strong=\"H6440\"* are|strong=\"H3478\"* the|strong=\"H3605\"* God|strong=\"H3068\"*, even|strong=\"H6213\"* you|strong=\"H6440\"* alone|strong=\"H1931\"*, of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*. You|strong=\"H6440\"* have|strong=\"H3068\"* made|strong=\"H6213\"* heaven|strong=\"H8064\"* and|strong=\"H3478\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 16, + "text": "Incline|strong=\"H5186\"* your|strong=\"H3068\"* ear|strong=\"H8085\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* hear|strong=\"H8085\"*. Open|strong=\"H6491\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* see|strong=\"H7200\"*. Hear|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H3068\"* Sennacherib|strong=\"H5576\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* defy|strong=\"H2778\"* the|strong=\"H8085\"* living|strong=\"H2416\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 17, + "text": "Truly, Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Assyria have|strong=\"H3068\"* laid|strong=\"H2717\"* waste|strong=\"H2717\"* the|strong=\"H3068\"* nations|strong=\"H1471\"* and|strong=\"H3068\"* their|strong=\"H3068\"* lands|strong=\"H2717\"*," + }, + { + "verseNum": 18, + "text": "and|strong=\"H3027\"* have|strong=\"H3027\"* cast|strong=\"H5414\"* their|strong=\"H5414\"* gods into|strong=\"H3027\"* the|strong=\"H3588\"* fire; for|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H1992\"* no|strong=\"H3808\"* gods, but|strong=\"H3588\"* the|strong=\"H3588\"* work|strong=\"H4639\"* of|strong=\"H3027\"* men|strong=\"H1992\"*’s hands|strong=\"H3027\"*, wood|strong=\"H6086\"* and|strong=\"H3027\"* stone. Therefore|strong=\"H3588\"* they|strong=\"H1992\"* have|strong=\"H3027\"* destroyed them|strong=\"H5414\"*." + }, + { + "verseNum": 19, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, save|strong=\"H3467\"* us|strong=\"H4994\"*, I|strong=\"H3588\"* beg|strong=\"H4994\"* you|strong=\"H3588\"*, out|strong=\"H3045\"* of|strong=\"H3068\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth may|strong=\"H4994\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, are|strong=\"H3027\"* God|strong=\"H3068\"* alone|strong=\"H3045\"*.”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H7971\"* Isaiah|strong=\"H3470\"* the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz sent|strong=\"H7971\"* to|strong=\"H3478\"* Hezekiah|strong=\"H2396\"*, saying, “Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"* ‘You|strong=\"H7971\"* have|strong=\"H3068\"* prayed|strong=\"H6419\"* to|strong=\"H3478\"* me|strong=\"H7971\"* against|strong=\"H3068\"* Sennacherib|strong=\"H5576\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Assyria, and|strong=\"H1121\"* I|strong=\"H3541\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* you|strong=\"H7971\"*." + }, + { + "verseNum": 21, + "text": "This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H5921\"* word|strong=\"H1697\"* that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* concerning|strong=\"H5921\"* him|strong=\"H5921\"*: ‘The|strong=\"H5921\"* virgin|strong=\"H1330\"* daughter|strong=\"H1323\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"* has|strong=\"H3068\"* despised you|strong=\"H5921\"* and|strong=\"H3068\"* ridiculed you|strong=\"H5921\"*. The|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* has|strong=\"H3068\"* shaken|strong=\"H5128\"* her|strong=\"H5921\"* head|strong=\"H7218\"* at|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 22, + "text": "Whom|strong=\"H4310\"* have|strong=\"H5869\"* you|strong=\"H5921\"* defied|strong=\"H2778\"* and|strong=\"H3478\"* blasphemed|strong=\"H1442\"*? Against|strong=\"H5921\"* whom|strong=\"H4310\"* have|strong=\"H5869\"* you|strong=\"H5921\"* exalted|strong=\"H7311\"* your|strong=\"H5921\"* voice|strong=\"H6963\"* and|strong=\"H3478\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"* on|strong=\"H5921\"* high|strong=\"H4791\"*? Against|strong=\"H5921\"* the|strong=\"H5921\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H6963\"* Israel|strong=\"H3478\"*!" + }, + { + "verseNum": 23, + "text": "By|strong=\"H3027\"* your|strong=\"H3772\"* messengers|strong=\"H4397\"*, you|strong=\"H3027\"* have|strong=\"H3027\"* defied|strong=\"H2778\"* the|strong=\"H5927\"* Lord, and|strong=\"H3027\"* have|strong=\"H3027\"* said, “With|strong=\"H3027\"* the|strong=\"H5927\"* multitude of|strong=\"H3027\"* my|strong=\"H5927\"* chariots|strong=\"H7393\"*, I|strong=\"H3772\"* have|strong=\"H3027\"* come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H5927\"* height|strong=\"H6967\"* of|strong=\"H3027\"* the|strong=\"H5927\"* mountains|strong=\"H2022\"*, to|strong=\"H5927\"* the|strong=\"H5927\"* innermost|strong=\"H3411\"* parts|strong=\"H3411\"* of|strong=\"H3027\"* Lebanon|strong=\"H3844\"*, and|strong=\"H3027\"* I|strong=\"H3772\"* will|strong=\"H3027\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* its|strong=\"H5927\"* tall|strong=\"H6967\"* cedars and|strong=\"H3027\"* its|strong=\"H5927\"* choice|strong=\"H4005\"* cypress|strong=\"H1265\"* trees|strong=\"H1265\"*; and|strong=\"H3027\"* I|strong=\"H3772\"* will|strong=\"H3027\"* enter|strong=\"H5927\"* into|strong=\"H5927\"* his|strong=\"H3027\"* farthest|strong=\"H7093\"* lodging|strong=\"H4411\"* place|strong=\"H3027\"*, the|strong=\"H5927\"* forest|strong=\"H3293\"* of|strong=\"H3027\"* his|strong=\"H3027\"* fruitful|strong=\"H3759\"* field|strong=\"H3759\"*." + }, + { + "verseNum": 24, + "text": "I|strong=\"H6471\"* have|strong=\"H3605\"* dug|strong=\"H6979\"* and|strong=\"H8354\"* drunk|strong=\"H8354\"* strange|strong=\"H2114\"* waters|strong=\"H4325\"*, and|strong=\"H8354\"* I|strong=\"H6471\"* will|strong=\"H4325\"* dry|strong=\"H2717\"* up|strong=\"H2717\"* all|strong=\"H3605\"* the|strong=\"H3605\"* rivers|strong=\"H2975\"* of|strong=\"H4325\"* Egypt|strong=\"H4693\"* with|strong=\"H4325\"* the|strong=\"H3605\"* sole|strong=\"H3709\"* of|strong=\"H4325\"* my|strong=\"H3605\"* feet|strong=\"H6471\"*.”" + }, + { + "verseNum": 25, + "text": "Haven’t you|strong=\"H3117\"* heard|strong=\"H8085\"* how|strong=\"H8085\"* I|strong=\"H3117\"* have|strong=\"H1961\"* done|strong=\"H6213\"* it|strong=\"H6213\"* long|strong=\"H3117\"* ago|strong=\"H7350\"*, and|strong=\"H3117\"* formed|strong=\"H3335\"* it|strong=\"H6213\"* of|strong=\"H3117\"* ancient|strong=\"H6924\"* times|strong=\"H3117\"*? Now|strong=\"H6258\"* I|strong=\"H3117\"* have|strong=\"H1961\"* brought|strong=\"H6213\"* it|strong=\"H6213\"* to|strong=\"H1961\"* pass|strong=\"H1961\"*, that|strong=\"H3117\"* it|strong=\"H6213\"* should|strong=\"H3117\"* be|strong=\"H1961\"* yours to|strong=\"H1961\"* lay|strong=\"H1961\"* waste|strong=\"H7582\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"* into|strong=\"H6213\"* ruinous|strong=\"H5327\"* heaps|strong=\"H1530\"*." + }, + { + "verseNum": 26, + "text": "Therefore|strong=\"H1961\"* their|strong=\"H6440\"* inhabitants|strong=\"H3427\"* had|strong=\"H1961\"* little power|strong=\"H3027\"*. They|strong=\"H6440\"* were|strong=\"H1961\"* dismayed|strong=\"H2865\"* and|strong=\"H3027\"* confounded. They|strong=\"H6440\"* were|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H6440\"* grass|strong=\"H2682\"* of|strong=\"H3027\"* the|strong=\"H6440\"* field|strong=\"H7704\"* and|strong=\"H3027\"* like|strong=\"H1961\"* the|strong=\"H6440\"* green|strong=\"H3419\"* herb|strong=\"H6212\"*, like|strong=\"H1961\"* the|strong=\"H6440\"* grass|strong=\"H2682\"* on|strong=\"H3427\"* the|strong=\"H6440\"* housetops|strong=\"H1406\"* and|strong=\"H3027\"* like|strong=\"H1961\"* grain|strong=\"H7054\"* blasted|strong=\"H7711\"* before|strong=\"H6440\"* it|strong=\"H6440\"* has|strong=\"H1961\"* grown|strong=\"H7054\"* up|strong=\"H7054\"*." + }, + { + "verseNum": 27, + "text": "But I|strong=\"H3045\"* know|strong=\"H3045\"* your|strong=\"H3045\"* sitting|strong=\"H3427\"* down|strong=\"H3427\"*, your|strong=\"H3045\"* going|strong=\"H3318\"* out|strong=\"H3318\"*, your|strong=\"H3045\"* coming|strong=\"H3318\"* in|strong=\"H3427\"*, and|strong=\"H3318\"* your|strong=\"H3045\"* raging|strong=\"H7264\"* against|strong=\"H3427\"* me|strong=\"H3318\"*." + }, + { + "verseNum": 28, + "text": "Because|strong=\"H3282\"* of|strong=\"H1870\"* your|strong=\"H7760\"* raging|strong=\"H7264\"* against|strong=\"H5927\"* me|strong=\"H7725\"*, and|strong=\"H7725\"* because|strong=\"H3282\"* your|strong=\"H7760\"* arrogance|strong=\"H7600\"* has|strong=\"H7600\"* come|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H7725\"* my|strong=\"H7760\"* ears, therefore I|strong=\"H7760\"* will|strong=\"H7725\"* put|strong=\"H7760\"* my|strong=\"H7760\"* hook|strong=\"H2397\"* in|strong=\"H7725\"* your|strong=\"H7760\"* nose, and|strong=\"H7725\"* my|strong=\"H7760\"* bridle|strong=\"H4964\"* in|strong=\"H7725\"* your|strong=\"H7760\"* lips|strong=\"H8193\"*, and|strong=\"H7725\"* I|strong=\"H7760\"* will|strong=\"H7725\"* turn|strong=\"H7725\"* you|strong=\"H7725\"* back|strong=\"H7725\"* by|strong=\"H1870\"* the|strong=\"H7725\"* way|strong=\"H1870\"* by|strong=\"H1870\"* which you|strong=\"H7725\"* came|strong=\"H5927\"*.’" + }, + { + "verseNum": 29, + "text": "“This|strong=\"H2088\"* will|strong=\"H3754\"* be|strong=\"H8141\"* the|strong=\"H8141\"* sign to|strong=\"H8141\"* you|strong=\"H8141\"*: This|strong=\"H2088\"* year|strong=\"H8141\"*, you|strong=\"H8141\"* will|strong=\"H3754\"* eat that|strong=\"H8141\"* which|strong=\"H2088\"* grows|strong=\"H5599\"* of|strong=\"H8141\"* itself|strong=\"H2088\"*, and|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H8141\"* second|strong=\"H8145\"* year|strong=\"H8141\"* that|strong=\"H8141\"* which|strong=\"H2088\"* springs from|strong=\"H2232\"* that|strong=\"H8141\"*; and|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H8141\"* third|strong=\"H7992\"* year|strong=\"H8141\"* sow|strong=\"H2232\"* and|strong=\"H8141\"* reap|strong=\"H7114\"*, and|strong=\"H8141\"* plant|strong=\"H5193\"* vineyards|strong=\"H3754\"* and|strong=\"H8141\"* eat their|strong=\"H7114\"* fruit|strong=\"H6529\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H6213\"* remnant|strong=\"H7604\"* that|strong=\"H3063\"* has|strong=\"H3063\"* escaped|strong=\"H6413\"* of|strong=\"H1004\"* the|strong=\"H6213\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* will|strong=\"H1004\"* again|strong=\"H3254\"* take|strong=\"H6213\"* root|strong=\"H8328\"* downward|strong=\"H4295\"*, and|strong=\"H3063\"* bear|strong=\"H6213\"* fruit|strong=\"H6529\"* upward|strong=\"H4605\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* a|strong=\"H3068\"* remnant|strong=\"H7611\"* will|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H3068\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Mount|strong=\"H2022\"* Zion|strong=\"H6726\"* those|strong=\"H3318\"* who|strong=\"H3068\"* shall|strong=\"H3068\"* escape|strong=\"H6413\"*. Yahweh|strong=\"H3068\"*’s zeal|strong=\"H7068\"* will|strong=\"H3068\"* perform|strong=\"H6213\"* this|strong=\"H2063\"*." + }, + { + "verseNum": 32, + "text": "“Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, ‘He|strong=\"H8033\"* will|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H6923\"* to|strong=\"H3068\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, nor|strong=\"H3808\"* shoot|strong=\"H3384\"* an|strong=\"H8033\"* arrow|strong=\"H2671\"* there|strong=\"H8033\"*. He|strong=\"H8033\"* will|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H6923\"* before|strong=\"H5921\"* it|strong=\"H5921\"* with|strong=\"H3068\"* shield|strong=\"H4043\"*, nor|strong=\"H3808\"* cast|strong=\"H8210\"* up|strong=\"H5921\"* a|strong=\"H3068\"* mound against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H3068\"* will|strong=\"H3068\"* return|strong=\"H7725\"* the|strong=\"H5002\"* same|strong=\"H2063\"* way|strong=\"H1870\"* that|strong=\"H3068\"* he|strong=\"H3068\"* came|strong=\"H3068\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H7725\"* to|strong=\"H7725\"* this|strong=\"H2063\"* city|strong=\"H5892\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 34, + "text": "‘For|strong=\"H4616\"* I|strong=\"H5650\"* will|strong=\"H5650\"* defend|strong=\"H1598\"* this|strong=\"H2063\"* city|strong=\"H5892\"* to|strong=\"H1732\"* save|strong=\"H3467\"* it|strong=\"H2063\"*, for|strong=\"H4616\"* my|strong=\"H1732\"* own sake|strong=\"H4616\"* and|strong=\"H5892\"* for|strong=\"H4616\"* my|strong=\"H1732\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*’s sake|strong=\"H4616\"*.’”" + }, + { + "verseNum": 35, + "text": "That|strong=\"H3605\"* night|strong=\"H3915\"*, Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3967\"* struck|strong=\"H5221\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* eighty-five|strong=\"H8084\"* thousand in|strong=\"H3068\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Assyrians. When|strong=\"H1961\"* men|strong=\"H3605\"* arose|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3068\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*, behold|strong=\"H2009\"*, these|strong=\"H1931\"* were|strong=\"H1961\"* all|strong=\"H3605\"* dead|strong=\"H4191\"* bodies|strong=\"H6297\"*." + }, + { + "verseNum": 36, + "text": "So|strong=\"H7725\"* Sennacherib|strong=\"H5576\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria departed|strong=\"H3212\"*, went|strong=\"H3212\"* home|strong=\"H7725\"*, and|strong=\"H7725\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Nineveh|strong=\"H5210\"*." + }, + { + "verseNum": 37, + "text": "As|strong=\"H1961\"* he|strong=\"H1931\"* was|strong=\"H1961\"* worshiping|strong=\"H7812\"* in|strong=\"H1004\"* the|strong=\"H5221\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Nisroch|strong=\"H5268\"* his|strong=\"H5221\"* god, Adrammelech and|strong=\"H1121\"* Sharezer|strong=\"H8272\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H1004\"* the|strong=\"H5221\"* sword|strong=\"H2719\"*; and|strong=\"H1121\"* they|strong=\"H1992\"* escaped|strong=\"H4422\"* into|strong=\"H2719\"* the|strong=\"H5221\"* land of|strong=\"H1121\"* Ararat. Esar Haddon his|strong=\"H5221\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H1004\"* his|strong=\"H5221\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"* Hezekiah|strong=\"H2396\"* was|strong=\"H3068\"* sick|strong=\"H2470\"* and|strong=\"H1121\"* dying|strong=\"H4191\"*. Isaiah|strong=\"H3470\"* the|strong=\"H3588\"* prophet|strong=\"H5030\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz came|strong=\"H3068\"* to|strong=\"H4191\"* him|strong=\"H6680\"*, and|strong=\"H1121\"* said to|strong=\"H4191\"* him|strong=\"H6680\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Set|strong=\"H6680\"* your|strong=\"H3068\"* house|strong=\"H1004\"* in|strong=\"H3068\"* order|strong=\"H6680\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* die|strong=\"H4191\"*, and|strong=\"H1121\"* not|strong=\"H3808\"* live|strong=\"H2421\"*.’”" + }, + { + "verseNum": 2, + "text": "Then|strong=\"H3068\"* he|strong=\"H3068\"* turned|strong=\"H5437\"* his|strong=\"H3068\"* face|strong=\"H6440\"* to|strong=\"H3068\"* the|strong=\"H6440\"* wall|strong=\"H7023\"*, and|strong=\"H3068\"* prayed|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying," + }, + { + "verseNum": 3, + "text": "“Remember|strong=\"H2142\"* now|strong=\"H4994\"*, Yahweh|strong=\"H3068\"*, I|strong=\"H1980\"* beg|strong=\"H4994\"* you|strong=\"H6440\"*, how|strong=\"H4994\"* I|strong=\"H1980\"* have|strong=\"H3068\"* walked|strong=\"H1980\"* before|strong=\"H6440\"* you|strong=\"H6440\"* in|strong=\"H1980\"* truth and|strong=\"H1980\"* with|strong=\"H1980\"* a|strong=\"H3068\"* perfect|strong=\"H8003\"* heart|strong=\"H3824\"*, and|strong=\"H1980\"* have|strong=\"H3068\"* done|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* is|strong=\"H3068\"* good|strong=\"H2896\"* in|strong=\"H1980\"* your|strong=\"H3068\"* sight|strong=\"H5869\"*.” And|strong=\"H1980\"* Hezekiah|strong=\"H2396\"* wept|strong=\"H1058\"* bitterly|strong=\"H1419\"*." + }, + { + "verseNum": 4, + "text": "Before|strong=\"H3808\"* Isaiah|strong=\"H3470\"* had|strong=\"H3068\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3068\"* middle|strong=\"H8484\"* part of|strong=\"H3068\"* the|strong=\"H3068\"* city|strong=\"H5892\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3318\"* him|strong=\"H3318\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 5, + "text": "“Turn|strong=\"H7725\"* back|strong=\"H7725\"*, and|strong=\"H3068\"* tell|strong=\"H8085\"* Hezekiah|strong=\"H2396\"* the|strong=\"H8085\"* prince|strong=\"H5057\"* of|strong=\"H1004\"* my|strong=\"H8085\"* people|strong=\"H5971\"*, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H1004\"* David|strong=\"H1732\"* your|strong=\"H3068\"* father, says|strong=\"H3541\"*, “I|strong=\"H3117\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* your|strong=\"H3068\"* prayer|strong=\"H8605\"*. I|strong=\"H3117\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* your|strong=\"H3068\"* tears|strong=\"H1832\"*. Behold|strong=\"H2005\"*, I|strong=\"H3117\"* will|strong=\"H3068\"* heal|strong=\"H7495\"* you|strong=\"H3117\"*. On|strong=\"H3117\"* the|strong=\"H8085\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, you|strong=\"H3117\"* will|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H3117\"* will|strong=\"H4428\"* add|strong=\"H3254\"* to|strong=\"H5921\"* your|strong=\"H5921\"* days|strong=\"H3117\"* fifteen|strong=\"H2568\"* years|strong=\"H8141\"*. I|strong=\"H3117\"* will|strong=\"H4428\"* deliver|strong=\"H5337\"* you|strong=\"H5921\"* and|strong=\"H4428\"* this|strong=\"H2063\"* city|strong=\"H5892\"* out|strong=\"H5921\"* of|strong=\"H4428\"* the|strong=\"H5921\"* hand|strong=\"H3709\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria. I|strong=\"H3117\"* will|strong=\"H4428\"* defend|strong=\"H1598\"* this|strong=\"H2063\"* city|strong=\"H5892\"* for|strong=\"H5921\"* my|strong=\"H1732\"* own sake|strong=\"H4616\"*, and|strong=\"H4428\"* for|strong=\"H5921\"* my|strong=\"H1732\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*’s sake|strong=\"H4616\"*.”’”" + }, + { + "verseNum": 7, + "text": "Isaiah|strong=\"H3470\"* said, “Take|strong=\"H3947\"* a|strong=\"H3068\"* cake|strong=\"H1690\"* of|strong=\"H5921\"* figs|strong=\"H8384\"*.”" + }, + { + "verseNum": 8, + "text": "Hezekiah|strong=\"H2396\"* said to|strong=\"H3068\"* Isaiah|strong=\"H3470\"*, “What|strong=\"H4100\"* will|strong=\"H3068\"* be|strong=\"H3068\"* the|strong=\"H3588\"* sign that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* heal|strong=\"H7495\"* me|strong=\"H5927\"*, and|strong=\"H3068\"* that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* the|strong=\"H3588\"* third|strong=\"H7992\"* day|strong=\"H3117\"*?”" + }, + { + "verseNum": 9, + "text": "Isaiah|strong=\"H3470\"* said|strong=\"H1696\"*, “This|strong=\"H2088\"* will|strong=\"H3068\"* be|strong=\"H1697\"* the|strong=\"H3588\"* sign to|strong=\"H1696\"* you|strong=\"H3588\"* from|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"* the|strong=\"H3588\"* thing|strong=\"H1697\"* that|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*: should|strong=\"H3068\"* the|strong=\"H3588\"* shadow|strong=\"H6738\"* go|strong=\"H1980\"* forward|strong=\"H1980\"* ten|strong=\"H6235\"* steps|strong=\"H4609\"*, or|strong=\"H3068\"* go|strong=\"H1980\"* back|strong=\"H7725\"* ten|strong=\"H6235\"* steps|strong=\"H4609\"*?”" + }, + { + "verseNum": 10, + "text": "Hezekiah|strong=\"H2396\"* answered|strong=\"H7725\"*, “It|strong=\"H3588\"* is|strong=\"H6738\"* a|strong=\"H3068\"* light|strong=\"H7043\"* thing|strong=\"H7043\"* for|strong=\"H3588\"* the|strong=\"H3588\"* shadow|strong=\"H6738\"* to|strong=\"H7725\"* go|strong=\"H7725\"* forward ten|strong=\"H6235\"* steps|strong=\"H4609\"*. No|strong=\"H3808\"*, but|strong=\"H3588\"* let|strong=\"H5186\"* the|strong=\"H3588\"* shadow|strong=\"H6738\"* return|strong=\"H7725\"* backward ten|strong=\"H6235\"* steps|strong=\"H4609\"*.”" + }, + { + "verseNum": 11, + "text": "Isaiah|strong=\"H3470\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* cried|strong=\"H7121\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* brought|strong=\"H7725\"* the|strong=\"H3068\"* shadow|strong=\"H6738\"* ten|strong=\"H6235\"* steps|strong=\"H4609\"* backward, by|strong=\"H3068\"* which|strong=\"H3068\"* it|strong=\"H7121\"* had|strong=\"H3068\"* gone|strong=\"H3381\"* down|strong=\"H3381\"* on|strong=\"H3068\"* the|strong=\"H3068\"* sundial of|strong=\"H3068\"* Ahaz." + }, + { + "verseNum": 12, + "text": "At|strong=\"H4428\"* that|strong=\"H3588\"* time|strong=\"H6256\"* Berodach Baladan|strong=\"H1081\"* the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Baladan|strong=\"H1081\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon, sent|strong=\"H7971\"* letters|strong=\"H5612\"* and|strong=\"H1121\"* a|strong=\"H3068\"* present|strong=\"H4503\"* to|strong=\"H7971\"* Hezekiah|strong=\"H2396\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* had|strong=\"H4428\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* Hezekiah|strong=\"H2396\"* had|strong=\"H4428\"* been|strong=\"H2470\"* sick|strong=\"H2470\"*." + }, + { + "verseNum": 13, + "text": "Hezekiah|strong=\"H2396\"* listened|strong=\"H8085\"* to|strong=\"H1961\"* them|strong=\"H5921\"*, and|strong=\"H3701\"* showed|strong=\"H7200\"* them|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* storehouse|strong=\"H5238\"* of|strong=\"H1004\"* his|strong=\"H3605\"* precious|strong=\"H2896\"* things|strong=\"H1697\"*—the|strong=\"H3605\"* silver|strong=\"H3701\"*, the|strong=\"H3605\"* gold|strong=\"H2091\"*, the|strong=\"H3605\"* spices|strong=\"H1314\"*, and|strong=\"H3701\"* the|strong=\"H3605\"* precious|strong=\"H2896\"* oil|strong=\"H8081\"*, and|strong=\"H3701\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* his|strong=\"H3605\"* armor|strong=\"H3627\"*, and|strong=\"H3701\"* all|strong=\"H3605\"* that|strong=\"H7200\"* was|strong=\"H1961\"* found|strong=\"H4672\"* in|strong=\"H5921\"* his|strong=\"H3605\"* treasures. There|strong=\"H1961\"* was|strong=\"H1961\"* nothing|strong=\"H3808\"* in|strong=\"H5921\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, or|strong=\"H3808\"* in|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* dominion|strong=\"H4474\"*, that|strong=\"H7200\"* Hezekiah|strong=\"H2396\"* didn’t show|strong=\"H7200\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H4428\"* Isaiah|strong=\"H3470\"* the|strong=\"H3470\"* prophet|strong=\"H5030\"* came|strong=\"H4428\"* to|strong=\"H4428\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"*, and|strong=\"H4428\"* said to|strong=\"H4428\"* him|strong=\"H4428\"*, “What|strong=\"H4100\"* did|strong=\"H4100\"* these|strong=\"H4428\"* men say? From|strong=\"H7350\"* where|strong=\"H4100\"* did|strong=\"H4100\"* they|strong=\"H4100\"* come|strong=\"H7350\"* to|strong=\"H4428\"* you|strong=\"H4100\"*?”" + }, + { + "verseNum": 15, + "text": "He|strong=\"H3605\"* said|strong=\"H1697\"*, “What|strong=\"H4100\"* have|strong=\"H1961\"* they|strong=\"H3808\"* seen|strong=\"H7200\"* in|strong=\"H1004\"* your|strong=\"H3605\"* house|strong=\"H1004\"*?”" + }, + { + "verseNum": 16, + "text": "Isaiah|strong=\"H3470\"* said|strong=\"H1697\"* to|strong=\"H3068\"* Hezekiah|strong=\"H2396\"*, “Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + }, + { + "verseNum": 17, + "text": "‘Behold|strong=\"H2009\"*, the|strong=\"H3605\"* days|strong=\"H3117\"* come that|strong=\"H3605\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* that|strong=\"H3605\"* which|strong=\"H3068\"* your|strong=\"H3068\"* fathers have|strong=\"H3068\"* laid|strong=\"H5375\"* up|strong=\"H5375\"* in|strong=\"H3068\"* store to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, will|strong=\"H3068\"* be|strong=\"H3808\"* carried|strong=\"H5375\"* to|strong=\"H5704\"* Babylon. Nothing|strong=\"H3808\"* will|strong=\"H3068\"* be|strong=\"H3808\"* left|strong=\"H3498\"*,’ says|strong=\"H1697\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "‘They|strong=\"H3205\"* will|strong=\"H1961\"* take|strong=\"H3947\"* away|strong=\"H3947\"* some|strong=\"H4480\"* of|strong=\"H1121\"* your|strong=\"H3947\"* sons|strong=\"H1121\"* who|strong=\"H1121\"* will|strong=\"H1961\"* issue|strong=\"H3318\"* from|strong=\"H4480\"* you|strong=\"H3947\"*, whom you|strong=\"H3947\"* will|strong=\"H1961\"* father|strong=\"H3205\"*; and|strong=\"H1121\"* they|strong=\"H3205\"* will|strong=\"H1961\"* be|strong=\"H1961\"* eunuchs|strong=\"H5631\"* in|strong=\"H4428\"* the|strong=\"H3947\"* palace|strong=\"H1964\"* of|strong=\"H1121\"* the|strong=\"H3947\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon.’”" + }, + { + "verseNum": 19, + "text": "Then|strong=\"H1961\"* Hezekiah|strong=\"H2396\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Isaiah|strong=\"H3470\"*, “Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H3068\"* you|strong=\"H3117\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"* is|strong=\"H3068\"* good|strong=\"H2896\"*.” He|strong=\"H3117\"* said|strong=\"H1696\"* moreover|strong=\"H1961\"*, “Isn’t it|strong=\"H1961\"* so|strong=\"H1961\"*, if|strong=\"H1961\"* peace|strong=\"H7965\"* and|strong=\"H3068\"* truth|strong=\"H3808\"* will|strong=\"H3068\"* be|strong=\"H1961\"* in|strong=\"H3068\"* my|strong=\"H3068\"* days|strong=\"H3117\"*?”" + }, + { + "verseNum": 20, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Hezekiah|strong=\"H2396\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* his|strong=\"H3605\"* might|strong=\"H1369\"*, and|strong=\"H3063\"* how|strong=\"H6213\"* he|strong=\"H3117\"* made|strong=\"H6213\"* the|strong=\"H3605\"* pool|strong=\"H1295\"*, and|strong=\"H3063\"* the|strong=\"H3605\"* conduit|strong=\"H8585\"*, and|strong=\"H3063\"* brought|strong=\"H6213\"* water|strong=\"H4325\"* into|strong=\"H5921\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 21, + "text": "Hezekiah|strong=\"H2396\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers, and|strong=\"H1121\"* Manasseh|strong=\"H4519\"* his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H4427\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Manasseh|strong=\"H4519\"* was|strong=\"H8034\"* twelve|strong=\"H8147\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H2568\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H2568\"* reigned|strong=\"H4427\"* fifty-five|strong=\"H2572\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H4519\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Hephzibah|strong=\"H2657\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, after the|strong=\"H6440\"* abominations|strong=\"H8441\"* of|strong=\"H1121\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* cast|strong=\"H3068\"* out|strong=\"H3423\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H6213\"* he|strong=\"H6213\"* built|strong=\"H1129\"* again|strong=\"H7725\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* which|strong=\"H1116\"* Hezekiah|strong=\"H2396\"* his|strong=\"H3605\"* father had|strong=\"H3478\"* destroyed; and|strong=\"H6965\"* he|strong=\"H6213\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* altars|strong=\"H4196\"* for|strong=\"H6213\"* Baal|strong=\"H1168\"*, and|strong=\"H6965\"* made|strong=\"H6213\"* an|strong=\"H1129\"* Asherah, as|strong=\"H6213\"* Ahab king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"*, and|strong=\"H6965\"* worshiped|strong=\"H7812\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H6965\"* served|strong=\"H5647\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3068\"* built|strong=\"H1129\"* altars|strong=\"H4196\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, of|strong=\"H1004\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* said, “I|strong=\"H7760\"* will|strong=\"H3068\"* put|strong=\"H7760\"* my|strong=\"H3068\"* name|strong=\"H8034\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H3068\"* built|strong=\"H1129\"* altars|strong=\"H4196\"* for|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H1004\"* the|strong=\"H3605\"* sky|strong=\"H8064\"* in|strong=\"H3068\"* the|strong=\"H3605\"* two|strong=\"H8147\"* courts|strong=\"H2691\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* his|strong=\"H3068\"* son|strong=\"H1121\"* to|strong=\"H3068\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H6213\"* fire, practiced|strong=\"H6213\"* sorcery, used|strong=\"H6213\"* enchantments|strong=\"H5172\"*, and|strong=\"H1121\"* dealt|strong=\"H6213\"* with|strong=\"H3068\"* those|strong=\"H1121\"* who|strong=\"H3068\"* had|strong=\"H3068\"* familiar spirits and|strong=\"H1121\"* with|strong=\"H3068\"* wizards|strong=\"H3049\"*. He|strong=\"H6213\"* did|strong=\"H6213\"* much|strong=\"H7235\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, to|strong=\"H3068\"* provoke|strong=\"H3707\"* him|strong=\"H6213\"* to|strong=\"H3068\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H6213\"* set|strong=\"H7760\"* the|strong=\"H3605\"* engraved image|strong=\"H6459\"* of|strong=\"H1121\"* Asherah that|strong=\"H3605\"* he|strong=\"H6213\"* had|strong=\"H3068\"* made|strong=\"H6213\"* in|strong=\"H3478\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* David|strong=\"H1732\"* and|strong=\"H1121\"* to|strong=\"H3478\"* Solomon|strong=\"H8010\"* his|strong=\"H3605\"* son|strong=\"H1121\"*, “In|strong=\"H3478\"* this|strong=\"H2088\"* house|strong=\"H1004\"*, and|strong=\"H1121\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, which|strong=\"H3068\"* I|strong=\"H7760\"* have|strong=\"H3068\"* chosen out|strong=\"H6213\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, I|strong=\"H7760\"* will|strong=\"H3068\"* put|strong=\"H7760\"* my|strong=\"H3605\"* name|strong=\"H8034\"* forever|strong=\"H5769\"*;" + }, + { + "verseNum": 8, + "text": "I|strong=\"H5414\"* will|strong=\"H3478\"* not|strong=\"H3808\"* cause|strong=\"H5414\"* the|strong=\"H3605\"* feet|strong=\"H7272\"* of|strong=\"H5650\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* wander|strong=\"H5110\"* any|strong=\"H3605\"* more|strong=\"H3254\"* out|strong=\"H4480\"* of|strong=\"H5650\"* the|strong=\"H3605\"* land which|strong=\"H3478\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* their|strong=\"H3605\"* fathers, if only|strong=\"H7535\"* they|strong=\"H3808\"* will|strong=\"H3478\"* observe|strong=\"H8104\"* to|strong=\"H3478\"* do|strong=\"H6213\"* according|strong=\"H4480\"* to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H5414\"* have|strong=\"H5650\"* commanded|strong=\"H6680\"* them|strong=\"H5414\"*, and|strong=\"H4872\"* according|strong=\"H4480\"* to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* law|strong=\"H8451\"* that|strong=\"H3605\"* my|strong=\"H8104\"* servant|strong=\"H5650\"* Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* them|strong=\"H5414\"*.”" + }, + { + "verseNum": 9, + "text": "But|strong=\"H3808\"* they|strong=\"H3068\"* didn’t listen|strong=\"H8085\"*, and|strong=\"H1121\"* Manasseh|strong=\"H4519\"* seduced|strong=\"H8582\"* them|strong=\"H6440\"* to|strong=\"H3478\"* do|strong=\"H6213\"* that|strong=\"H8085\"* which|strong=\"H3068\"* is|strong=\"H3068\"* evil|strong=\"H7451\"* more|strong=\"H4480\"* than|strong=\"H4480\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* did|strong=\"H6213\"* whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* destroyed|strong=\"H8045\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* his|strong=\"H3068\"* servants|strong=\"H5650\"* the|strong=\"H3068\"* prophets|strong=\"H5030\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 11, + "text": "“Because|strong=\"H6440\"* Manasseh|strong=\"H4519\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* has|strong=\"H4428\"* done|strong=\"H6213\"* these|strong=\"H6213\"* abominations|strong=\"H8441\"*, and|strong=\"H3063\"* has|strong=\"H4428\"* done|strong=\"H6213\"* wickedly|strong=\"H7489\"* above|strong=\"H6440\"* all|strong=\"H3605\"* that|strong=\"H3605\"* the|strong=\"H3605\"* Amorites did|strong=\"H6213\"*, who|strong=\"H3605\"* were|strong=\"H3063\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H3063\"* has|strong=\"H4428\"* also|strong=\"H1571\"* made|strong=\"H6213\"* Judah|strong=\"H3063\"* to|strong=\"H6213\"* sin|strong=\"H2398\"* with|strong=\"H6213\"* his|strong=\"H3605\"* idols|strong=\"H1544\"*;" + }, + { + "verseNum": 12, + "text": "therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* bring|strong=\"H7451\"* such|strong=\"H3651\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"* that|strong=\"H3605\"* whoever|strong=\"H3605\"* hears|strong=\"H8085\"* of|strong=\"H3068\"* it|strong=\"H5921\"*, both|strong=\"H8147\"* his|strong=\"H3605\"* ears will|strong=\"H3068\"* tingle|strong=\"H6750\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H5921\"* will|strong=\"H1004\"* stretch|strong=\"H5186\"* over|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* the|strong=\"H6440\"* line|strong=\"H6957\"* of|strong=\"H1004\"* Samaria|strong=\"H8111\"*, and|strong=\"H1004\"* the|strong=\"H6440\"* plumb line|strong=\"H6957\"* of|strong=\"H1004\"* Ahab’s house|strong=\"H1004\"*; and|strong=\"H1004\"* I|strong=\"H5921\"* will|strong=\"H1004\"* wipe|strong=\"H4229\"* Jerusalem|strong=\"H3389\"* as|strong=\"H3389\"* a|strong=\"H3068\"* man|strong=\"H6440\"* wipes|strong=\"H4229\"* a|strong=\"H3068\"* dish|strong=\"H6747\"*, wiping|strong=\"H4229\"* it|strong=\"H5921\"* and|strong=\"H1004\"* turning|strong=\"H2015\"* it|strong=\"H5921\"* upside|strong=\"H5921\"* down|strong=\"H5186\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H5414\"* will|strong=\"H1961\"* cast|strong=\"H5414\"* off|strong=\"H5203\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H3027\"* my|strong=\"H5414\"* inheritance|strong=\"H5159\"* and|strong=\"H3027\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* their|strong=\"H3605\"* enemies|strong=\"H3027\"*. They|strong=\"H3605\"* will|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* prey and|strong=\"H3027\"* a|strong=\"H3068\"* plunder|strong=\"H4933\"* to|strong=\"H1961\"* all|strong=\"H3605\"* their|strong=\"H3605\"* enemies|strong=\"H3027\"*," + }, + { + "verseNum": 15, + "text": "because|strong=\"H4480\"* they|strong=\"H3117\"* have|strong=\"H1961\"* done|strong=\"H6213\"* that|strong=\"H3117\"* which|strong=\"H5869\"* is|strong=\"H2088\"* evil|strong=\"H7451\"* in|strong=\"H6213\"* my|strong=\"H3318\"* sight|strong=\"H5869\"*, and|strong=\"H3117\"* have|strong=\"H1961\"* provoked|strong=\"H3707\"* me|strong=\"H4480\"* to|strong=\"H5704\"* anger|strong=\"H3707\"* since|strong=\"H4480\"* the|strong=\"H6213\"* day|strong=\"H3117\"* their|strong=\"H1961\"* fathers came|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H3117\"* Egypt|strong=\"H4714\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*.’”" + }, + { + "verseNum": 16, + "text": "Moreover|strong=\"H1571\"* Manasseh|strong=\"H4519\"* shed|strong=\"H8210\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"* very|strong=\"H3966\"* much|strong=\"H7235\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H3068\"* filled|strong=\"H4390\"* Jerusalem|strong=\"H3389\"* from|strong=\"H5704\"* one|strong=\"H6310\"* end|strong=\"H6310\"* to|strong=\"H5704\"* another|strong=\"H6310\"*; in|strong=\"H3068\"* addition|strong=\"H1571\"* to|strong=\"H5704\"* his|strong=\"H3068\"* sin|strong=\"H2403\"* with|strong=\"H4390\"* which|strong=\"H3068\"* he|strong=\"H5704\"* made|strong=\"H6213\"* Judah|strong=\"H3063\"* to|strong=\"H5704\"* sin|strong=\"H2403\"*, in|strong=\"H3068\"* doing|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Manasseh|strong=\"H4519\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, and|strong=\"H3063\"* his|strong=\"H3605\"* sin|strong=\"H2403\"* that|strong=\"H3605\"* he|strong=\"H3117\"* sinned|strong=\"H2398\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 18, + "text": "Manasseh|strong=\"H4519\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers, and|strong=\"H1121\"* was|strong=\"H1004\"* buried|strong=\"H6912\"* in|strong=\"H1004\"* the|strong=\"H8478\"* garden|strong=\"H1588\"* of|strong=\"H1121\"* his|strong=\"H8478\"* own|strong=\"H5973\"* house|strong=\"H1004\"*, in|strong=\"H1004\"* the|strong=\"H8478\"* garden|strong=\"H1588\"* of|strong=\"H1121\"* Uzza|strong=\"H5798\"*; and|strong=\"H1121\"* Amon his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H1004\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 19, + "text": "Amon was|strong=\"H8034\"* twenty-two|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8147\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*; and|strong=\"H1121\"* he|strong=\"H8147\"* reigned|strong=\"H4427\"* two|strong=\"H8147\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H4480\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Meshullemeth|strong=\"H4922\"* the|strong=\"H4480\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Haruz|strong=\"H2743\"* of|strong=\"H1121\"* Jotbah|strong=\"H3192\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, as|strong=\"H6213\"* Manasseh|strong=\"H4519\"* his|strong=\"H3068\"* father did|strong=\"H6213\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H3605\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ways|strong=\"H1870\"* that|strong=\"H3605\"* his|strong=\"H3605\"* father walked|strong=\"H1980\"* in|strong=\"H1980\"*, and|strong=\"H1980\"* served|strong=\"H5647\"* the|strong=\"H3605\"* idols|strong=\"H1544\"* that|strong=\"H3605\"* his|strong=\"H3605\"* father served|strong=\"H5647\"*, and|strong=\"H1980\"* worshiped|strong=\"H7812\"* them|strong=\"H5647\"*;" + }, + { + "verseNum": 22, + "text": "and|strong=\"H1980\"* he|strong=\"H3068\"* abandoned|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* his|strong=\"H3068\"* fathers, and|strong=\"H1980\"* didn’t walk|strong=\"H1980\"* in|strong=\"H1980\"* the|strong=\"H3068\"* way|strong=\"H1870\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H5921\"* servants|strong=\"H5650\"* of|strong=\"H4428\"* Amon conspired|strong=\"H7194\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H4428\"* put|strong=\"H4191\"* the|strong=\"H5921\"* king|strong=\"H4428\"* to|strong=\"H4191\"* death|strong=\"H4191\"* in|strong=\"H5921\"* his|strong=\"H5921\"* own house|strong=\"H1004\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"H5221\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land killed|strong=\"H5221\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* had|strong=\"H4428\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* King|strong=\"H4428\"* Amon; and|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land made|strong=\"H4427\"* Josiah|strong=\"H2977\"* his|strong=\"H3605\"* son|strong=\"H1121\"* king|strong=\"H4428\"* in|strong=\"H5921\"* his|strong=\"H3605\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 25, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Amon which|strong=\"H1992\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 26, + "text": "He|strong=\"H4427\"* was|strong=\"H1121\"* buried|strong=\"H6912\"* in|strong=\"H6912\"* his|strong=\"H8478\"* tomb|strong=\"H6900\"* in|strong=\"H6912\"* the|strong=\"H8478\"* garden|strong=\"H1588\"* of|strong=\"H1121\"* Uzza|strong=\"H5798\"*, and|strong=\"H1121\"* Josiah|strong=\"H2977\"* his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Josiah|strong=\"H2977\"* was|strong=\"H8034\"* eight|strong=\"H8083\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H3389\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H3389\"* reigned|strong=\"H4427\"* thirty-one|strong=\"H7970\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H2977\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Jedidah|strong=\"H3040\"* the|strong=\"H8034\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Adaiah|strong=\"H5718\"* of|strong=\"H1121\"* Bozkath|strong=\"H1218\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3225\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, and|strong=\"H3068\"* walked|strong=\"H3212\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ways|strong=\"H1870\"* of|strong=\"H3068\"* David|strong=\"H1732\"* his|strong=\"H3605\"* father, and|strong=\"H3068\"* didn’t turn|strong=\"H5493\"* away|strong=\"H5493\"* to|strong=\"H3212\"* the|strong=\"H3605\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* or|strong=\"H3808\"* to|strong=\"H3212\"* the|strong=\"H3605\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 3, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* eighteenth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H1121\"* King|strong=\"H4428\"* Josiah|strong=\"H2977\"*, the|strong=\"H3068\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* Shaphan|strong=\"H8227\"*, the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azaliah the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshullam|strong=\"H4918\"*, the|strong=\"H3068\"* scribe|strong=\"H5608\"*, to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, saying," + }, + { + "verseNum": 4, + "text": "“Go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Hilkiah|strong=\"H2518\"* the|strong=\"H8104\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*, that|strong=\"H5971\"* he|strong=\"H3068\"* may|strong=\"H3068\"* count|strong=\"H8552\"* the|strong=\"H8104\"* money|strong=\"H3701\"* which|strong=\"H3068\"* is|strong=\"H3068\"* brought|strong=\"H5927\"* into|strong=\"H5927\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, which|strong=\"H3068\"* the|strong=\"H8104\"* keepers|strong=\"H8104\"* of|strong=\"H1004\"* the|strong=\"H8104\"* threshold|strong=\"H5592\"* have|strong=\"H3068\"* gathered of|strong=\"H1004\"* the|strong=\"H8104\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 5, + "text": "Let|strong=\"H5414\"* them|strong=\"H5414\"* deliver|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* the|strong=\"H5921\"* workers|strong=\"H4399\"* who|strong=\"H3068\"* have|strong=\"H3068\"* the|strong=\"H5921\"* oversight|strong=\"H6485\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H3068\"* let|strong=\"H5414\"* them|strong=\"H5414\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* the|strong=\"H5921\"* workers|strong=\"H4399\"* who|strong=\"H3068\"* are|strong=\"H3027\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, to|strong=\"H3068\"* repair|strong=\"H2388\"* the|strong=\"H5921\"* damage|strong=\"H6485\"* to|strong=\"H3068\"* the|strong=\"H5921\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 6, + "text": "to|strong=\"H1004\"* the|strong=\"H1129\"* carpenters|strong=\"H2796\"*, and|strong=\"H1004\"* to|strong=\"H1004\"* the|strong=\"H1129\"* builders|strong=\"H1129\"*, and|strong=\"H1004\"* to|strong=\"H1004\"* the|strong=\"H1129\"* masons|strong=\"H1443\"*, and|strong=\"H1004\"* for|strong=\"H1004\"* buying|strong=\"H7069\"* timber|strong=\"H6086\"* and|strong=\"H1004\"* cut stone to|strong=\"H1004\"* repair|strong=\"H2388\"* the|strong=\"H1129\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 7, + "text": "However|strong=\"H3588\"*, no|strong=\"H3808\"* accounting|strong=\"H2803\"* shall|strong=\"H3027\"* be|strong=\"H3808\"* asked of|strong=\"H3027\"* them|strong=\"H5414\"* for|strong=\"H3588\"* the|strong=\"H5921\"* money|strong=\"H3701\"* delivered|strong=\"H5414\"* into|strong=\"H5921\"* their|strong=\"H5414\"* hand|strong=\"H3027\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* deal|strong=\"H6213\"* faithfully.”" + }, + { + "verseNum": 8, + "text": "Hilkiah|strong=\"H2518\"* the|strong=\"H5921\"* high|strong=\"H1419\"* priest|strong=\"H3548\"* said|strong=\"H7121\"* to|strong=\"H3068\"* Shaphan|strong=\"H8227\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"*, “I|strong=\"H5414\"* have|strong=\"H3068\"* found|strong=\"H4672\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H1004\"* the|strong=\"H5921\"* law|strong=\"H8451\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*.” Hilkiah|strong=\"H2518\"* delivered|strong=\"H5414\"* the|strong=\"H5921\"* book|strong=\"H5612\"* to|strong=\"H3068\"* Shaphan|strong=\"H8227\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* read|strong=\"H7121\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 9, + "text": "Shaphan|strong=\"H8227\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"* came|strong=\"H3068\"* to|strong=\"H7725\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, and|strong=\"H3068\"* brought|strong=\"H7725\"* the|strong=\"H5921\"* king|strong=\"H4428\"* word|strong=\"H1697\"* again|strong=\"H7725\"*, and|strong=\"H3068\"* said|strong=\"H1697\"*, “Your|strong=\"H3068\"* servants|strong=\"H5650\"* have|strong=\"H3068\"* emptied|strong=\"H5413\"* out|strong=\"H4672\"* the|strong=\"H5921\"* money|strong=\"H3701\"* that|strong=\"H3068\"* was|strong=\"H3068\"* found|strong=\"H4672\"* in|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* delivered|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H7725\"* the|strong=\"H5921\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5921\"* workmen|strong=\"H4399\"* who|strong=\"H3068\"* have|strong=\"H3068\"* the|strong=\"H5921\"* oversight|strong=\"H6485\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 10, + "text": "Shaphan|strong=\"H8227\"* the|strong=\"H6440\"* scribe|strong=\"H5608\"* told|strong=\"H5046\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, saying, “Hilkiah|strong=\"H2518\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* has|strong=\"H4428\"* delivered|strong=\"H5414\"* a|strong=\"H3068\"* book|strong=\"H5612\"* to|strong=\"H5414\"* me|strong=\"H5414\"*.” Then|strong=\"H5414\"* Shaphan|strong=\"H8227\"* read|strong=\"H7121\"* it|strong=\"H5414\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H1961\"* the|strong=\"H8085\"* king|strong=\"H4428\"* had|strong=\"H1961\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H8085\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H8085\"* law|strong=\"H8451\"*, he|strong=\"H4428\"* tore|strong=\"H7167\"* his|strong=\"H8085\"* clothes." + }, + { + "verseNum": 12, + "text": "The|strong=\"H6680\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"* Hilkiah|strong=\"H2518\"* the|strong=\"H6680\"* priest|strong=\"H3548\"*, Ahikam the|strong=\"H6680\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"*, Achbor|strong=\"H5907\"* the|strong=\"H6680\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Micaiah|strong=\"H4320\"*, Shaphan|strong=\"H8227\"* the|strong=\"H6680\"* scribe|strong=\"H5608\"*, and|strong=\"H1121\"* Asaiah|strong=\"H6222\"* the|strong=\"H6680\"* king|strong=\"H4428\"*’s servant|strong=\"H5650\"*, saying," + }, + { + "verseNum": 13, + "text": "“Go|strong=\"H3212\"* inquire|strong=\"H1875\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* for|strong=\"H3588\"* me|strong=\"H5921\"*, and|strong=\"H3063\"* for|strong=\"H3588\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3063\"* for|strong=\"H3588\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"*, concerning|strong=\"H5921\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* this|strong=\"H2088\"* book|strong=\"H5612\"* that|strong=\"H3588\"* is|strong=\"H3068\"* found|strong=\"H4672\"*; for|strong=\"H3588\"* great|strong=\"H1419\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s wrath|strong=\"H2534\"* that|strong=\"H3588\"* is|strong=\"H3068\"* kindled|strong=\"H3341\"* against|strong=\"H5921\"* us|strong=\"H5921\"*, because|strong=\"H3588\"* our|strong=\"H3068\"* fathers have|strong=\"H3068\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* this|strong=\"H2088\"* book|strong=\"H5612\"*, to|strong=\"H3068\"* do|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3588\"* which|strong=\"H1931\"* is|strong=\"H3068\"* written|strong=\"H3789\"* concerning|strong=\"H5921\"* us|strong=\"H5921\"*.”" + }, + { + "verseNum": 14, + "text": "So|strong=\"H1696\"* Hilkiah|strong=\"H2518\"* the|strong=\"H8104\"* priest|strong=\"H3548\"*, Ahikam, Achbor|strong=\"H5907\"*, Shaphan|strong=\"H8227\"*, and|strong=\"H1121\"* Asaiah|strong=\"H6222\"* went|strong=\"H3212\"* to|strong=\"H1696\"* Huldah|strong=\"H2468\"* the|strong=\"H8104\"* prophetess|strong=\"H5031\"*, the|strong=\"H8104\"* wife|strong=\"H1696\"* of|strong=\"H1121\"* Shallum|strong=\"H7967\"* the|strong=\"H8104\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Tikvah|strong=\"H8616\"*, the|strong=\"H8104\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Harhas|strong=\"H2745\"*, keeper|strong=\"H8104\"* of|strong=\"H1121\"* the|strong=\"H8104\"* wardrobe (now|strong=\"H3212\"* she|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* in|strong=\"H3427\"* the|strong=\"H8104\"* second|strong=\"H4932\"* quarter); and|strong=\"H1121\"* they|strong=\"H1931\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* her|strong=\"H1931\"*." + }, + { + "verseNum": 15, + "text": "She said to|strong=\"H3478\"* them|strong=\"H7971\"*, “Yahweh|strong=\"H3068\"* the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, ‘Tell the|strong=\"H3541\"* man who|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* to|strong=\"H3478\"* me|strong=\"H7971\"*," + }, + { + "verseNum": 16, + "text": "“Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* bring|strong=\"H7451\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"* and|strong=\"H3063\"* on|strong=\"H5921\"* its|strong=\"H3605\"* inhabitants|strong=\"H3427\"*, even|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* book|strong=\"H5612\"* which|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* has|strong=\"H3068\"* read|strong=\"H7121\"*." + }, + { + "verseNum": 17, + "text": "Because|strong=\"H4616\"* they|strong=\"H3808\"* have|strong=\"H3027\"* forsaken|strong=\"H5800\"* me|strong=\"H5800\"* and|strong=\"H3027\"* have|strong=\"H3027\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H3027\"* other|strong=\"H2088\"* gods, that|strong=\"H3605\"* they|strong=\"H3808\"* might|strong=\"H4616\"* provoke|strong=\"H3707\"* me|strong=\"H5800\"* to|strong=\"H3027\"* anger|strong=\"H3707\"* with|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3027\"* their|strong=\"H3605\"* hands|strong=\"H3027\"*, therefore|strong=\"H4616\"* my|strong=\"H3605\"* wrath|strong=\"H2534\"* shall|strong=\"H3027\"* be|strong=\"H3808\"* kindled|strong=\"H3341\"* against|strong=\"H3027\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, and|strong=\"H3027\"* it|strong=\"H3808\"* will|strong=\"H3027\"* not|strong=\"H3808\"* be|strong=\"H3808\"* quenched|strong=\"H3518\"*.’”" + }, + { + "verseNum": 18, + "text": "But|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, who|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* to|strong=\"H3478\"* inquire|strong=\"H1875\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*, tell|strong=\"H8085\"* him|strong=\"H7971\"*, “Yahweh|strong=\"H3068\"* the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, ‘Concerning|strong=\"H1697\"* the|strong=\"H8085\"* words|strong=\"H1697\"* which|strong=\"H3068\"* you|strong=\"H7971\"* have|strong=\"H3068\"* heard|strong=\"H8085\"*," + }, + { + "verseNum": 19, + "text": "because|strong=\"H5921\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* was|strong=\"H3068\"* tender|strong=\"H7401\"*, and|strong=\"H3068\"* you|strong=\"H6440\"* humbled|strong=\"H3665\"* yourself|strong=\"H3665\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* when|strong=\"H1961\"* you|strong=\"H6440\"* heard|strong=\"H8085\"* what|strong=\"H2088\"* I|strong=\"H5921\"* spoke|strong=\"H1696\"* against|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"* and|strong=\"H3068\"* against|strong=\"H5921\"* its|strong=\"H5921\"* inhabitants|strong=\"H3427\"*, that|strong=\"H8085\"* they|strong=\"H3068\"* should|strong=\"H3068\"* become|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8047\"* and|strong=\"H3068\"* a|strong=\"H3068\"* curse|strong=\"H7045\"*, and|strong=\"H3068\"* have|strong=\"H1961\"* torn|strong=\"H7167\"* your|strong=\"H3068\"* clothes and|strong=\"H3068\"* wept|strong=\"H1058\"* before|strong=\"H6440\"* me|strong=\"H6440\"*, I|strong=\"H5921\"* also|strong=\"H1571\"* have|strong=\"H1961\"* heard|strong=\"H8085\"* you|strong=\"H6440\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 20, + "text": "‘Therefore|strong=\"H3651\"* behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H4428\"* gather you|strong=\"H3605\"* to|strong=\"H7725\"* your|strong=\"H3605\"* fathers, and|strong=\"H7725\"* you|strong=\"H3605\"* will|strong=\"H4428\"* be|strong=\"H3808\"* gathered to|strong=\"H7725\"* your|strong=\"H3605\"* grave|strong=\"H6913\"* in|strong=\"H5921\"* peace|strong=\"H7965\"*. Your|strong=\"H3605\"* eyes|strong=\"H5869\"* will|strong=\"H4428\"* not|strong=\"H3808\"* see|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* which|strong=\"H1697\"* I|strong=\"H2005\"* will|strong=\"H4428\"* bring|strong=\"H7725\"* on|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"*.’”’” So|strong=\"H3651\"* they|strong=\"H3651\"* brought|strong=\"H7725\"* this|strong=\"H2088\"* message|strong=\"H1697\"* back|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* sent|strong=\"H7971\"*, and|strong=\"H3063\"* they|strong=\"H3605\"* gathered to|strong=\"H7971\"* him|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1419\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"* with|strong=\"H1004\"* him|strong=\"H7121\"*—with|strong=\"H1004\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, the|strong=\"H3605\"* prophets|strong=\"H5030\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, both|strong=\"H3605\"* small|strong=\"H6996\"* and|strong=\"H3063\"* great|strong=\"H1419\"*; and|strong=\"H3063\"* he|strong=\"H5704\"* read|strong=\"H7121\"* in|strong=\"H3427\"* their|strong=\"H3605\"* hearing all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* which|strong=\"H3068\"* was|strong=\"H3068\"* found|strong=\"H4672\"* in|strong=\"H3427\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* stood|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H3605\"* pillar|strong=\"H5982\"* and|strong=\"H6965\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* walk|strong=\"H3212\"* after|strong=\"H5921\"* Yahweh|strong=\"H3068\"* and|strong=\"H6965\"* to|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"*, his|strong=\"H3605\"* testimonies|strong=\"H5715\"*, and|strong=\"H6965\"* his|strong=\"H3605\"* statutes|strong=\"H2708\"* with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* heart|strong=\"H3820\"* and|strong=\"H6965\"* all|strong=\"H3605\"* his|strong=\"H3605\"* soul|strong=\"H5315\"*, to|strong=\"H3068\"* confirm|strong=\"H6965\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H4428\"* this|strong=\"H2088\"* covenant|strong=\"H1285\"* that|strong=\"H5971\"* were|strong=\"H5971\"* written|strong=\"H3789\"* in|strong=\"H5921\"* this|strong=\"H2088\"* book|strong=\"H5612\"*; and|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* agreed|strong=\"H5975\"* to|strong=\"H3068\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"* Hilkiah|strong=\"H2518\"* the|strong=\"H3605\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* of|strong=\"H4428\"* the|strong=\"H3605\"* second|strong=\"H4932\"* order|strong=\"H6680\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* keepers|strong=\"H8104\"* of|strong=\"H4428\"* the|strong=\"H3605\"* threshold|strong=\"H5592\"*, to|strong=\"H3318\"* bring|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* that|strong=\"H3605\"* were|strong=\"H8064\"* made|strong=\"H6213\"* for|strong=\"H6213\"* Baal|strong=\"H1168\"*, for|strong=\"H6213\"* the|strong=\"H3605\"* Asherah, and|strong=\"H3068\"* for|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*; and|strong=\"H3068\"* he|strong=\"H6213\"* burned|strong=\"H8313\"* them|strong=\"H6213\"* outside|strong=\"H2351\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"* in|strong=\"H3068\"* the|strong=\"H3605\"* fields|strong=\"H7709\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Kidron|strong=\"H6939\"*, and|strong=\"H3068\"* carried|strong=\"H5375\"* their|strong=\"H3605\"* ashes|strong=\"H6083\"* to|strong=\"H3318\"* Bethel|strong=\"H1008\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3605\"* got rid|strong=\"H7673\"* of|strong=\"H4428\"* the|strong=\"H3605\"* idolatrous|strong=\"H3649\"* priests|strong=\"H3649\"* whom the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* had|strong=\"H4428\"* ordained|strong=\"H5414\"* to|strong=\"H5414\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"* in|strong=\"H4428\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* in|strong=\"H4428\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* in|strong=\"H4428\"* the|strong=\"H3605\"* places|strong=\"H1116\"* around|strong=\"H4524\"* Jerusalem|strong=\"H3389\"*; those|strong=\"H3605\"* also|strong=\"H4428\"* who|strong=\"H3605\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H5414\"* Baal|strong=\"H1168\"*, to|strong=\"H5414\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*, to|strong=\"H5414\"* the|strong=\"H3605\"* moon|strong=\"H3394\"*, to|strong=\"H5414\"* the|strong=\"H3605\"* planets|strong=\"H4208\"*, and|strong=\"H3063\"* to|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3068\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H5921\"* Asherah from|strong=\"H3318\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, outside|strong=\"H2351\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*, to|strong=\"H3318\"* the|strong=\"H5921\"* brook|strong=\"H5158\"* Kidron|strong=\"H6939\"*, and|strong=\"H1121\"* burned|strong=\"H8313\"* it|strong=\"H5921\"* at|strong=\"H5921\"* the|strong=\"H5921\"* brook|strong=\"H5158\"* Kidron|strong=\"H6939\"*, and|strong=\"H1121\"* beat it|strong=\"H5921\"* to|strong=\"H3318\"* dust|strong=\"H6083\"*, and|strong=\"H1121\"* cast|strong=\"H7993\"* its|strong=\"H5921\"* dust|strong=\"H6083\"* on|strong=\"H5921\"* the|strong=\"H5921\"* graves|strong=\"H6913\"* of|strong=\"H1121\"* the|strong=\"H5921\"* common|strong=\"H1121\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H8033\"* broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H3068\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H3068\"* male|strong=\"H6945\"* shrine|strong=\"H1004\"* prostitutes|strong=\"H6945\"* that|strong=\"H3068\"* were|strong=\"H1004\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, where|strong=\"H8033\"* the|strong=\"H3068\"* women wove hangings|strong=\"H1004\"* for|strong=\"H3068\"* the|strong=\"H3068\"* Asherah." + }, + { + "verseNum": 8, + "text": "He|strong=\"H5704\"* brought|strong=\"H3548\"* all|strong=\"H3605\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* out|strong=\"H5921\"* of|strong=\"H8269\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H8269\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* defiled|strong=\"H2930\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* where|strong=\"H8033\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* had|strong=\"H3063\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"*, from|strong=\"H5921\"* Geba|strong=\"H1387\"* to|strong=\"H5704\"* Beersheba; and|strong=\"H3063\"* he|strong=\"H5704\"* broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* of|strong=\"H8269\"* the|strong=\"H3605\"* gates|strong=\"H8179\"* that|strong=\"H3605\"* were|strong=\"H3063\"* at|strong=\"H5921\"* the|strong=\"H3605\"* entrance|strong=\"H6607\"* of|strong=\"H8269\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H8269\"* Joshua|strong=\"H3091\"* the|strong=\"H3605\"* governor|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, which|strong=\"H5892\"* were|strong=\"H3063\"* on|strong=\"H5921\"* a|strong=\"H3068\"* man|strong=\"H3605\"*’s left|strong=\"H8040\"* hand|strong=\"H8040\"* at|strong=\"H5921\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H8269\"* the|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 9, + "text": "Nevertheless|strong=\"H3588\"* the|strong=\"H3588\"* priests|strong=\"H3548\"* of|strong=\"H3068\"* the|strong=\"H3588\"* high|strong=\"H1116\"* places|strong=\"H1116\"* didn’t come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* ate unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* among|strong=\"H8432\"* their|strong=\"H3068\"* brothers." + }, + { + "verseNum": 10, + "text": "He|strong=\"H1121\"* defiled|strong=\"H2930\"* Topheth|strong=\"H8612\"*, which|strong=\"H1323\"* is|strong=\"H1121\"* in|strong=\"H1121\"* the|strong=\"H5674\"* valley|strong=\"H1516\"* of|strong=\"H1121\"* the|strong=\"H5674\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"*, that|strong=\"H1121\"* no|strong=\"H1115\"* man|strong=\"H1121\"* might|strong=\"H1121\"* make|strong=\"H2930\"* his|strong=\"H2930\"* son|strong=\"H1121\"* or|strong=\"H1121\"* his|strong=\"H2930\"* daughter|strong=\"H1323\"* to|strong=\"H1121\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5674\"* fire to|strong=\"H1121\"* Molech|strong=\"H4432\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3068\"* took|strong=\"H4428\"* away|strong=\"H7673\"* the|strong=\"H5414\"* horses|strong=\"H5483\"* that|strong=\"H3068\"* the|strong=\"H5414\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* had|strong=\"H3068\"* dedicated|strong=\"H5414\"* to|strong=\"H3068\"* the|strong=\"H5414\"* sun|strong=\"H8121\"*, at|strong=\"H3068\"* the|strong=\"H5414\"* entrance of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, by|strong=\"H3068\"* the|strong=\"H5414\"* room|strong=\"H1004\"* of|strong=\"H4428\"* Nathan Melech the|strong=\"H5414\"* officer|strong=\"H5631\"* who|strong=\"H3068\"* was|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H5414\"* court|strong=\"H1004\"*; and|strong=\"H3063\"* he|strong=\"H3068\"* burned|strong=\"H8313\"* the|strong=\"H5414\"* chariots|strong=\"H4818\"* of|strong=\"H4428\"* the|strong=\"H5414\"* sun|strong=\"H8121\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H5921\"* altars|strong=\"H4196\"* that|strong=\"H3068\"* were|strong=\"H3063\"* on|strong=\"H5921\"* the|strong=\"H5921\"* roof|strong=\"H1406\"* of|strong=\"H4428\"* the|strong=\"H5921\"* upper|strong=\"H5944\"* room|strong=\"H1004\"* of|strong=\"H4428\"* Ahaz, which|strong=\"H3068\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* had|strong=\"H3068\"* made|strong=\"H6213\"*, and|strong=\"H3063\"* the|strong=\"H5921\"* altars|strong=\"H4196\"* which|strong=\"H3068\"* Manasseh|strong=\"H4519\"* had|strong=\"H3068\"* made|strong=\"H6213\"* in|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* courts|strong=\"H2691\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3063\"* beat|strong=\"H4428\"* them|strong=\"H5921\"* down|strong=\"H5422\"* from|strong=\"H5921\"* there|strong=\"H8033\"*, and|strong=\"H3063\"* cast|strong=\"H7993\"* their|strong=\"H3068\"* dust|strong=\"H6083\"* into|strong=\"H5921\"* the|strong=\"H5921\"* brook|strong=\"H5158\"* Kidron|strong=\"H6939\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H6440\"* king|strong=\"H4428\"* defiled|strong=\"H2930\"* the|strong=\"H6440\"* high|strong=\"H1116\"* places|strong=\"H1116\"* that|strong=\"H3478\"* were|strong=\"H3478\"* before|strong=\"H6440\"* Jerusalem|strong=\"H3389\"*, which|strong=\"H1116\"* were|strong=\"H3478\"* on|strong=\"H5921\"* the|strong=\"H6440\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* of|strong=\"H1121\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"* of|strong=\"H1121\"* corruption|strong=\"H4889\"*, which|strong=\"H1116\"* Solomon|strong=\"H8010\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* built|strong=\"H1129\"* for|strong=\"H5921\"* Ashtoreth|strong=\"H6253\"* the|strong=\"H6440\"* abomination|strong=\"H8441\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Sidonians|strong=\"H6722\"*, and|strong=\"H1121\"* for|strong=\"H5921\"* Chemosh|strong=\"H3645\"* the|strong=\"H6440\"* abomination|strong=\"H8441\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, and|strong=\"H1121\"* for|strong=\"H5921\"* Milcom|strong=\"H4445\"* the|strong=\"H6440\"* abomination|strong=\"H8441\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 14, + "text": "He broke|strong=\"H7665\"* in|strong=\"H7665\"* pieces|strong=\"H7665\"* the|strong=\"H7665\"* pillars|strong=\"H4676\"*, cut|strong=\"H3772\"* down|strong=\"H3772\"* the|strong=\"H7665\"* Asherah poles, and|strong=\"H4725\"* filled|strong=\"H4390\"* their|strong=\"H4390\"* places|strong=\"H4725\"* with|strong=\"H4390\"* men|strong=\"H3772\"*’s bones|strong=\"H6106\"*." + }, + { + "verseNum": 15, + "text": "Moreover|strong=\"H1571\"* the|strong=\"H6213\"* altar|strong=\"H4196\"* that|strong=\"H1931\"* was|strong=\"H3478\"* at|strong=\"H3478\"* Bethel|strong=\"H1008\"* and|strong=\"H1121\"* the|strong=\"H6213\"* high|strong=\"H1116\"* place|strong=\"H1116\"* which|strong=\"H1931\"* Jeroboam|strong=\"H3379\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, who|strong=\"H1931\"* made|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2398\"*, had|strong=\"H3478\"* made|strong=\"H6213\"*, even|strong=\"H1571\"* that|strong=\"H1931\"* altar|strong=\"H4196\"* and|strong=\"H1121\"* the|strong=\"H6213\"* high|strong=\"H1116\"* place|strong=\"H1116\"* he|strong=\"H1931\"* broke|strong=\"H5422\"* down|strong=\"H5422\"*; and|strong=\"H1121\"* he|strong=\"H1931\"* burned|strong=\"H8313\"* the|strong=\"H6213\"* high|strong=\"H1116\"* place|strong=\"H1116\"* and|strong=\"H1121\"* beat it|strong=\"H1931\"* to|strong=\"H3478\"* dust|strong=\"H6083\"*, and|strong=\"H1121\"* burned|strong=\"H8313\"* the|strong=\"H6213\"* Asherah." + }, + { + "verseNum": 16, + "text": "As|strong=\"H1697\"* Josiah|strong=\"H2977\"* turned|strong=\"H6437\"* himself|strong=\"H2930\"*, he|strong=\"H8033\"* spied|strong=\"H7200\"* the|strong=\"H5921\"* tombs|strong=\"H6913\"* that|strong=\"H7200\"* were|strong=\"H1697\"* there|strong=\"H8033\"* in|strong=\"H5921\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"*; and|strong=\"H3068\"* he|strong=\"H8033\"* sent|strong=\"H7971\"*, and|strong=\"H3068\"* took|strong=\"H3947\"* the|strong=\"H5921\"* bones|strong=\"H6106\"* out|strong=\"H7971\"* of|strong=\"H3068\"* the|strong=\"H5921\"* tombs|strong=\"H6913\"*, and|strong=\"H3068\"* burned|strong=\"H8313\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H3068\"* defiled|strong=\"H2930\"* it|strong=\"H7121\"*, according|strong=\"H5921\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H3068\"* the|strong=\"H5921\"* man|strong=\"H7200\"* of|strong=\"H3068\"* God|strong=\"H3068\"* proclaimed|strong=\"H7121\"*, who|strong=\"H3068\"* proclaimed|strong=\"H7121\"* these|strong=\"H7121\"* things|strong=\"H1697\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H6213\"* he|strong=\"H6213\"* said|strong=\"H1697\"*, “What|strong=\"H4100\"* monument|strong=\"H6725\"* is|strong=\"H4100\"* that|strong=\"H7200\"* which|strong=\"H1697\"* I|strong=\"H5921\"* see|strong=\"H7200\"*?”" + }, + { + "verseNum": 18, + "text": "He said, “Let him|strong=\"H3240\"* be|strong=\"H5030\"*! Let no|strong=\"H5030\"* one|strong=\"H4422\"* move|strong=\"H5128\"* his|strong=\"H4422\"* bones|strong=\"H6106\"*.” So they let his|strong=\"H4422\"* bones|strong=\"H6106\"* alone|strong=\"H3240\"*, with|strong=\"H8111\"* the|strong=\"H5030\"* bones|strong=\"H6106\"* of|strong=\"H5030\"* the|strong=\"H5030\"* prophet|strong=\"H5030\"* who|strong=\"H5030\"* came|strong=\"H5030\"* out|strong=\"H4422\"* of|strong=\"H5030\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 19, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* houses|strong=\"H1004\"* also|strong=\"H1571\"* of|strong=\"H4428\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* that|strong=\"H3605\"* were|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Samaria|strong=\"H8111\"*, which|strong=\"H1992\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* made|strong=\"H6213\"* to|strong=\"H3478\"* provoke|strong=\"H3707\"* Yahweh|strong=\"H3068\"* to|strong=\"H3478\"* anger|strong=\"H3707\"*, Josiah|strong=\"H2977\"* took|strong=\"H5493\"* away|strong=\"H5493\"*, and|strong=\"H3478\"* did|strong=\"H6213\"* to|strong=\"H3478\"* them|strong=\"H1992\"* according to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* acts|strong=\"H6213\"* that|strong=\"H3605\"* he|strong=\"H6213\"* had|strong=\"H3478\"* done|strong=\"H6213\"* in|strong=\"H3478\"* Bethel|strong=\"H1008\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H8033\"* killed|strong=\"H2076\"* all|strong=\"H3605\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* of|strong=\"H4196\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* that|strong=\"H3605\"* were|strong=\"H5921\"* there|strong=\"H8033\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* altars|strong=\"H4196\"*, and|strong=\"H7725\"* burned|strong=\"H8313\"* men|strong=\"H3605\"*’s bones|strong=\"H6106\"* on|strong=\"H5921\"* them|strong=\"H5921\"*; and|strong=\"H7725\"* he|strong=\"H8033\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying, “Keep|strong=\"H6213\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, as|strong=\"H6213\"* it|strong=\"H5921\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H5921\"* this|strong=\"H2088\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"*.”" + }, + { + "verseNum": 22, + "text": "Surely|strong=\"H3588\"* there|strong=\"H2088\"* was|strong=\"H3478\"* not|strong=\"H3808\"* kept|strong=\"H6213\"* such|strong=\"H2088\"* a|strong=\"H3068\"* Passover|strong=\"H6453\"* from|strong=\"H3478\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* the|strong=\"H3605\"* judges|strong=\"H8199\"* who|strong=\"H3605\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"*, nor|strong=\"H3808\"* in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, nor|strong=\"H3808\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*;" + }, + { + "verseNum": 23, + "text": "but|strong=\"H3588\"* in|strong=\"H8141\"* the|strong=\"H3588\"* eighteenth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Josiah|strong=\"H2977\"*, this|strong=\"H2088\"* Passover|strong=\"H6453\"* was|strong=\"H3068\"* kept|strong=\"H6213\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 24, + "text": "Moreover|strong=\"H1571\"*, Josiah|strong=\"H2977\"* removed|strong=\"H1197\"* those|strong=\"H3605\"* who|strong=\"H3605\"* had|strong=\"H3068\"* familiar spirits, the|strong=\"H3605\"* wizards|strong=\"H3049\"*, and|strong=\"H3063\"* the|strong=\"H3605\"* teraphim|strong=\"H8655\"*,+ 23:24 teraphim were household idols.* and|strong=\"H3063\"* the|strong=\"H3605\"* idols|strong=\"H1544\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* abominations|strong=\"H8251\"* that|strong=\"H7200\"* were|strong=\"H1697\"* seen|strong=\"H7200\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land of|strong=\"H1004\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, that|strong=\"H7200\"* he|strong=\"H3068\"* might|strong=\"H3068\"* confirm|strong=\"H6965\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1004\"* the|strong=\"H3605\"* law|strong=\"H8451\"* which|strong=\"H3068\"* were|strong=\"H1697\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* that|strong=\"H7200\"* Hilkiah|strong=\"H2518\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* found|strong=\"H4672\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 25, + "text": "There|strong=\"H1961\"* was|strong=\"H3068\"* no|strong=\"H3808\"* king|strong=\"H4428\"* like|strong=\"H3644\"* him|strong=\"H6440\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, who|strong=\"H3605\"* turned|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* heart|strong=\"H3824\"*, and|strong=\"H6965\"* with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* soul|strong=\"H5315\"*, and|strong=\"H6965\"* with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* might|strong=\"H3966\"*, according|strong=\"H3644\"* to|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H4428\"* Moses|strong=\"H4872\"*; and|strong=\"H6965\"* there|strong=\"H1961\"* was|strong=\"H3068\"* none|strong=\"H3808\"* like|strong=\"H3644\"* him|strong=\"H6440\"* who|strong=\"H3605\"* arose|strong=\"H6965\"* after|strong=\"H1961\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 26, + "text": "Notwithstanding, Yahweh|strong=\"H3068\"* didn’t turn|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H3605\"* fierceness|strong=\"H2740\"* of|strong=\"H3068\"* his|strong=\"H3605\"* great|strong=\"H1419\"* wrath|strong=\"H2740\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* his|strong=\"H3605\"* anger|strong=\"H3707\"* burned|strong=\"H2734\"* against|strong=\"H5921\"* Judah|strong=\"H3063\"*, because|strong=\"H5921\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* provocation|strong=\"H3708\"* with|strong=\"H3068\"* which|strong=\"H3068\"* Manasseh|strong=\"H4519\"* had|strong=\"H3068\"* provoked|strong=\"H3707\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 27, + "text": "Yahweh|strong=\"H3068\"* said, “I|strong=\"H5921\"* will|strong=\"H3068\"* also|strong=\"H1571\"* remove|strong=\"H5493\"* Judah|strong=\"H3063\"* out|strong=\"H5921\"* of|strong=\"H1004\"* my|strong=\"H3068\"* sight|strong=\"H6440\"*, as|strong=\"H1961\"* I|strong=\"H5921\"* have|strong=\"H1961\"* removed|strong=\"H5493\"* Israel|strong=\"H3478\"*; and|strong=\"H3063\"* I|strong=\"H5921\"* will|strong=\"H3068\"* cast|strong=\"H3068\"* off|strong=\"H5493\"* this|strong=\"H2063\"* city|strong=\"H5892\"* which|strong=\"H3068\"* I|strong=\"H5921\"* have|strong=\"H1961\"* chosen, even|strong=\"H1571\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* which|strong=\"H3068\"* I|strong=\"H5921\"* said, ‘My|strong=\"H3068\"* name|strong=\"H8034\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* there|strong=\"H8033\"*.’”" + }, + { + "verseNum": 28, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Josiah|strong=\"H2977\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 29, + "text": "In|strong=\"H5921\"* his|strong=\"H5921\"* days|strong=\"H3117\"* Pharaoh|strong=\"H6549\"* Necoh king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* went|strong=\"H3212\"* up|strong=\"H5927\"* against|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria to|strong=\"H4191\"* the|strong=\"H5921\"* river|strong=\"H5104\"* Euphrates|strong=\"H6578\"*; and|strong=\"H4428\"* King|strong=\"H4428\"* Josiah|strong=\"H2977\"* went|strong=\"H3212\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, but|strong=\"H7200\"* Pharaoh|strong=\"H6549\"* Necoh killed|strong=\"H4191\"* him|strong=\"H5921\"* at|strong=\"H5921\"* Megiddo|strong=\"H4023\"* when|strong=\"H3117\"* he|strong=\"H3117\"* saw|strong=\"H7200\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 30, + "text": "His|strong=\"H3947\"* servants|strong=\"H5650\"* carried|strong=\"H7392\"* him|strong=\"H4427\"* dead|strong=\"H4191\"* in|strong=\"H4191\"* a|strong=\"H3068\"* chariot|strong=\"H7392\"* from|strong=\"H1121\"* Megiddo|strong=\"H4023\"*, brought|strong=\"H3947\"* him|strong=\"H4427\"* to|strong=\"H4191\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H1121\"* buried|strong=\"H6912\"* him|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H3947\"* own|strong=\"H5971\"* tomb|strong=\"H6900\"*. The|strong=\"H3947\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H3947\"* land took|strong=\"H3947\"* Jehoahaz|strong=\"H3059\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, and|strong=\"H1121\"* anointed|strong=\"H4886\"* him|strong=\"H4427\"*, and|strong=\"H1121\"* made|strong=\"H4427\"* him|strong=\"H4427\"* king|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H3947\"* father|strong=\"H1121\"*’s place|strong=\"H8478\"*." + }, + { + "verseNum": 31, + "text": "Jehoahaz|strong=\"H3059\"* was|strong=\"H8034\"* twenty-three|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H3389\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*; and|strong=\"H1121\"* he|strong=\"H3389\"* reigned|strong=\"H4427\"* three|strong=\"H7969\"* months|strong=\"H2320\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H3059\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Hamutal|strong=\"H2537\"* the|strong=\"H3414\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* of|strong=\"H1121\"* Libnah|strong=\"H3841\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* his|strong=\"H3605\"* fathers had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 33, + "text": "Pharaoh|strong=\"H6549\"* Necoh put|strong=\"H5414\"* him|strong=\"H5414\"* in|strong=\"H5921\"* bonds at|strong=\"H5921\"* Riblah|strong=\"H7247\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H3603\"* Hamath|strong=\"H2574\"*, that|strong=\"H5414\"* he|strong=\"H5414\"* might not|strong=\"H5414\"* reign|strong=\"H4427\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H3967\"* put|strong=\"H5414\"* the|strong=\"H5921\"* land to|strong=\"H5921\"* a|strong=\"H3068\"* tribute|strong=\"H6066\"* of|strong=\"H3603\"* one|strong=\"H4427\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"* of|strong=\"H3603\"* silver|strong=\"H3701\"* and|strong=\"H3967\"* a|strong=\"H3068\"* talent|strong=\"H3603\"*+ 23:33 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces* of|strong=\"H3603\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 34, + "text": "Pharaoh|strong=\"H6549\"* Necoh made|strong=\"H4427\"* Eliakim the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"* king|strong=\"H4427\"* in|strong=\"H4191\"* the|strong=\"H3947\"* place|strong=\"H8478\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"* his|strong=\"H3947\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* changed|strong=\"H5437\"* his|strong=\"H3947\"* name|strong=\"H8034\"* to|strong=\"H4191\"* Jehoiakim|strong=\"H3079\"*; but|strong=\"H3947\"* he|strong=\"H8033\"* took|strong=\"H3947\"* Jehoahaz|strong=\"H3059\"* away|strong=\"H3947\"*, and|strong=\"H1121\"* he|strong=\"H8033\"* came|strong=\"H4714\"* to|strong=\"H4191\"* Egypt|strong=\"H4714\"* and|strong=\"H1121\"* died|strong=\"H4191\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 35, + "text": "Jehoiakim|strong=\"H3079\"* gave|strong=\"H5414\"* the|strong=\"H5921\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* the|strong=\"H5921\"* gold|strong=\"H2091\"* to|strong=\"H5921\"* Pharaoh|strong=\"H6547\"*; but|strong=\"H5971\"* he|strong=\"H5414\"* taxed|strong=\"H6186\"* the|strong=\"H5921\"* land to|strong=\"H5921\"* give|strong=\"H5414\"* the|strong=\"H5921\"* money|strong=\"H3701\"* according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H6310\"* Pharaoh|strong=\"H6547\"*. He|strong=\"H5414\"* exacted|strong=\"H5065\"* the|strong=\"H5921\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* the|strong=\"H5921\"* gold|strong=\"H2091\"* of|strong=\"H6310\"* the|strong=\"H5921\"* people|strong=\"H5971\"* of|strong=\"H6310\"* the|strong=\"H5921\"* land, from|strong=\"H5921\"* everyone according|strong=\"H5921\"* to|strong=\"H5921\"* his|strong=\"H5414\"* assessment|strong=\"H6187\"*, to|strong=\"H5921\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5921\"* Pharaoh|strong=\"H6547\"* Necoh." + }, + { + "verseNum": 36, + "text": "Jehoiakim|strong=\"H3079\"* was|strong=\"H8034\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H2568\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H2568\"* reigned|strong=\"H4427\"* eleven|strong=\"H6240\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H4480\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Zebidah|strong=\"H2080\"* the|strong=\"H4480\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Pedaiah|strong=\"H6305\"* of|strong=\"H1121\"* Rumah|strong=\"H7316\"*." + }, + { + "verseNum": 37, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* his|strong=\"H3605\"* fathers had|strong=\"H3068\"* done|strong=\"H6213\"*." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* his|strong=\"H7725\"* days|strong=\"H3117\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon came|strong=\"H1961\"* up|strong=\"H5927\"*, and|strong=\"H7725\"* Jehoiakim|strong=\"H3079\"* became|strong=\"H1961\"* his|strong=\"H7725\"* servant|strong=\"H5650\"* three|strong=\"H7969\"* years|strong=\"H8141\"*. Then|strong=\"H1961\"* he|strong=\"H3117\"* turned|strong=\"H7725\"* and|strong=\"H7725\"* rebelled|strong=\"H4775\"* against|strong=\"H5927\"* him|strong=\"H7725\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* against|strong=\"H1696\"* him|strong=\"H7971\"* bands|strong=\"H1416\"* of|strong=\"H1121\"* the|strong=\"H3068\"* Chaldeans|strong=\"H3778\"*, bands|strong=\"H1416\"* of|strong=\"H1121\"* the|strong=\"H3068\"* Syrians, bands|strong=\"H1416\"* of|strong=\"H1121\"* the|strong=\"H3068\"* Moabites|strong=\"H4124\"*, and|strong=\"H1121\"* bands|strong=\"H1416\"* of|strong=\"H1121\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* against|strong=\"H1696\"* Judah|strong=\"H3063\"* to|strong=\"H1696\"* destroy it|strong=\"H1696\"*, according|strong=\"H3027\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* his|strong=\"H3068\"* servants|strong=\"H5650\"* the|strong=\"H3068\"* prophets|strong=\"H5030\"*." + }, + { + "verseNum": 3, + "text": "Surely|strong=\"H6213\"* at|strong=\"H5921\"* the|strong=\"H3605\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* this|strong=\"H6213\"* came|strong=\"H1961\"* on|strong=\"H5921\"* Judah|strong=\"H3063\"*, to|strong=\"H3068\"* remove|strong=\"H5493\"* them|strong=\"H5921\"* out|strong=\"H5921\"* of|strong=\"H3068\"* his|strong=\"H3605\"* sight|strong=\"H6440\"* for|strong=\"H5921\"* the|strong=\"H3605\"* sins|strong=\"H2403\"* of|strong=\"H3068\"* Manasseh|strong=\"H4519\"*, according|strong=\"H5921\"* to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H6213\"* did|strong=\"H6213\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"H3068\"* also|strong=\"H1571\"* for|strong=\"H3068\"* the|strong=\"H3068\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"* that|strong=\"H3068\"* he|strong=\"H3068\"* shed|strong=\"H8210\"*; for|strong=\"H3068\"* he|strong=\"H3068\"* filled|strong=\"H4390\"* Jerusalem|strong=\"H3389\"* with|strong=\"H4390\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* would|strong=\"H3068\"* not|strong=\"H3808\"* pardon|strong=\"H5545\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Jehoiakim|strong=\"H3079\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 6, + "text": "So Jehoiakim|strong=\"H3079\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers, and|strong=\"H1121\"* Jehoiachin|strong=\"H3078\"* his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H4427\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* didn’t come|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H4428\"* his|strong=\"H3605\"* land any|strong=\"H3605\"* more|strong=\"H3254\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon had|strong=\"H1961\"* taken|strong=\"H3947\"*, from|strong=\"H3318\"* the|strong=\"H3605\"* brook|strong=\"H5158\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* to|strong=\"H5704\"* the|strong=\"H3605\"* river|strong=\"H5104\"* Euphrates|strong=\"H6578\"*, all|strong=\"H3605\"* that|strong=\"H3588\"* belonged|strong=\"H1961\"* to|strong=\"H5704\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 8, + "text": "Jehoiachin|strong=\"H3078\"* was|strong=\"H8034\"* eighteen|strong=\"H8083\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H3389\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H3389\"* reigned|strong=\"H4427\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"* three|strong=\"H7969\"* months|strong=\"H2320\"*. His|strong=\"H3078\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Nehushta|strong=\"H5179\"* the|strong=\"H8034\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Elnathan of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* his|strong=\"H3605\"* father had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 10, + "text": "At|strong=\"H4428\"* that|strong=\"H1931\"* time|strong=\"H6256\"* the|strong=\"H5927\"* servants|strong=\"H5650\"* of|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H4428\"* the|strong=\"H5927\"* city|strong=\"H5892\"* was|strong=\"H1931\"* besieged|strong=\"H4692\"*." + }, + { + "verseNum": 11, + "text": "Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon came|strong=\"H5650\"* to|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"* while|strong=\"H5921\"* his|strong=\"H5921\"* servants|strong=\"H5650\"* were|strong=\"H5650\"* besieging|strong=\"H6696\"* it|strong=\"H5921\"*," + }, + { + "verseNum": 12, + "text": "and|strong=\"H3063\"* Jehoiachin|strong=\"H3078\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon—he|strong=\"H1931\"*, his|strong=\"H3947\"* mother, his|strong=\"H3947\"* servants|strong=\"H5650\"*, his|strong=\"H3947\"* princes|strong=\"H8269\"*, and|strong=\"H3063\"* his|strong=\"H3947\"* officers|strong=\"H8269\"*; and|strong=\"H3063\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon captured|strong=\"H3947\"* him|strong=\"H5921\"* in|strong=\"H8141\"* the|strong=\"H5921\"* eighth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H4428\"* his|strong=\"H3947\"* reign|strong=\"H4427\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H8033\"* carried|strong=\"H6213\"* out|strong=\"H3318\"* from|strong=\"H3318\"* there|strong=\"H8033\"* all|strong=\"H3605\"* the|strong=\"H3605\"* treasures of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3478\"* the|strong=\"H3605\"* treasures of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H3478\"* cut|strong=\"H7112\"* in|strong=\"H3478\"* pieces|strong=\"H7112\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* gold|strong=\"H2091\"* which|strong=\"H3068\"* Solomon|strong=\"H8010\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* had|strong=\"H3068\"* made|strong=\"H6213\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1004\"*, as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* said|strong=\"H1696\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3605\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* all|strong=\"H3605\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"*, and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H8269\"* valor|strong=\"H2428\"*, even|strong=\"H3808\"* ten|strong=\"H6235\"* thousand captives|strong=\"H1473\"*, and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* craftsmen|strong=\"H2796\"* and|strong=\"H5971\"* the|strong=\"H3605\"* smiths|strong=\"H4525\"*. No|strong=\"H3808\"* one|strong=\"H3605\"* remained|strong=\"H7604\"* except|strong=\"H2108\"* the|strong=\"H3605\"* poorest|strong=\"H1803\"* people|strong=\"H5971\"* of|strong=\"H8269\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3389\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* Jehoiachin|strong=\"H3078\"* to|strong=\"H3212\"* Babylon, with|strong=\"H3389\"* the|strong=\"H1540\"* king|strong=\"H4428\"*’s mother, the|strong=\"H1540\"* king|strong=\"H4428\"*’s wives, his|strong=\"H1540\"* officers|strong=\"H5631\"*, and|strong=\"H4428\"* the|strong=\"H1540\"* chief men of|strong=\"H4428\"* the|strong=\"H1540\"* land. He|strong=\"H3389\"* carried|strong=\"H1540\"* them|strong=\"H1540\"* into|strong=\"H1540\"* captivity|strong=\"H1473\"* from|strong=\"H1540\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3212\"* Babylon." + }, + { + "verseNum": 16, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1368\"* of|strong=\"H4428\"* might|strong=\"H2428\"*, even|strong=\"H6213\"* seven|strong=\"H7651\"* thousand, and|strong=\"H4428\"* the|strong=\"H3605\"* craftsmen|strong=\"H2796\"* and|strong=\"H4428\"* the|strong=\"H3605\"* smiths|strong=\"H4525\"* one|strong=\"H3605\"* thousand, all|strong=\"H3605\"* of|strong=\"H4428\"* them|strong=\"H6213\"* strong|strong=\"H2428\"* and|strong=\"H4428\"* fit|strong=\"H6213\"* for|strong=\"H6213\"* war|strong=\"H4421\"*, even|strong=\"H6213\"* them|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon brought|strong=\"H6213\"* captive|strong=\"H1473\"* to|strong=\"H6213\"* Babylon." + }, + { + "verseNum": 17, + "text": "The|strong=\"H8478\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon made|strong=\"H4427\"* Mattaniah|strong=\"H4983\"*, Jehoiachin’s father’s brother, king|strong=\"H4428\"* in|strong=\"H4428\"* his|strong=\"H5437\"* place|strong=\"H8478\"*, and|strong=\"H4428\"* changed|strong=\"H5437\"* his|strong=\"H5437\"* name|strong=\"H8034\"* to|strong=\"H4428\"* Zedekiah|strong=\"H6667\"*." + }, + { + "verseNum": 18, + "text": "Zedekiah|strong=\"H6667\"* was|strong=\"H8034\"* twenty-one|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H3389\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H3389\"* reigned|strong=\"H4427\"* eleven|strong=\"H6240\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H6667\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Hamutal|strong=\"H2537\"* the|strong=\"H3414\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* of|strong=\"H1121\"* Libnah|strong=\"H3841\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Jehoiakim|strong=\"H3079\"* had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"H3588\"* through|strong=\"H5921\"* the|strong=\"H6440\"* anger|strong=\"H6440\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*, this|strong=\"H3588\"* happened|strong=\"H1961\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"*, until|strong=\"H5704\"* he|strong=\"H3588\"* had|strong=\"H3068\"* cast|strong=\"H7993\"* them|strong=\"H5921\"* out|strong=\"H7993\"* from|strong=\"H6440\"* his|strong=\"H3068\"* presence|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3605\"* ninth|strong=\"H8671\"* year|strong=\"H8141\"* of|strong=\"H4428\"* his|strong=\"H3605\"* reign|strong=\"H4427\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* tenth|strong=\"H6224\"* day|strong=\"H2320\"* of|strong=\"H4428\"* the|strong=\"H3605\"* month|strong=\"H2320\"*, Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon came|strong=\"H1961\"*, he|strong=\"H1931\"* and|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* army|strong=\"H2428\"*, against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H4428\"* encamped|strong=\"H2583\"* against|strong=\"H5921\"* it|strong=\"H1931\"*; and|strong=\"H4428\"* they|strong=\"H5921\"* built|strong=\"H1129\"* forts|strong=\"H1785\"* against|strong=\"H5921\"* it|strong=\"H1931\"* around|strong=\"H5439\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 2, + "text": "So|strong=\"H5704\"* the|strong=\"H5704\"* city|strong=\"H5892\"* was|strong=\"H5892\"* besieged|strong=\"H4692\"* until|strong=\"H5704\"* the|strong=\"H5704\"* eleventh|strong=\"H6249\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Zedekiah|strong=\"H6667\"*." + }, + { + "verseNum": 3, + "text": "On|strong=\"H1961\"* the|strong=\"H2388\"* ninth|strong=\"H8672\"* day|strong=\"H2320\"* of|strong=\"H5892\"* the|strong=\"H2388\"* fourth month|strong=\"H2320\"*, the|strong=\"H2388\"* famine|strong=\"H7458\"* was|strong=\"H1961\"* severe|strong=\"H2388\"* in|strong=\"H5892\"* the|strong=\"H2388\"* city|strong=\"H5892\"*, so|strong=\"H1961\"* that|strong=\"H5971\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* bread|strong=\"H3899\"* for|strong=\"H5892\"* the|strong=\"H2388\"* people|strong=\"H5971\"* of|strong=\"H5892\"* the|strong=\"H2388\"* land." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H4428\"* a|strong=\"H3068\"* breach|strong=\"H1234\"* was|strong=\"H5892\"* made|strong=\"H3605\"* in|strong=\"H5921\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* war|strong=\"H4421\"* fled by|strong=\"H5921\"* night|strong=\"H3915\"* by|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* between|strong=\"H4421\"* the|strong=\"H3605\"* two|strong=\"H2346\"* walls|strong=\"H2346\"*, which|strong=\"H5892\"* was|strong=\"H5892\"* by|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s garden|strong=\"H1588\"* (now|strong=\"H3212\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"* were|strong=\"H4428\"* against|strong=\"H5921\"* the|strong=\"H3605\"* city|strong=\"H5892\"* around|strong=\"H5439\"* it|strong=\"H5921\"*); and|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* went|strong=\"H3212\"* by|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H3605\"* the|strong=\"H3605\"* Chaldean army|strong=\"H2428\"* pursued|strong=\"H7291\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* overtook|strong=\"H5381\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* plains|strong=\"H6160\"* of|strong=\"H4428\"* Jericho|strong=\"H3405\"*; and|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* army|strong=\"H2428\"* was|strong=\"H4428\"* scattered|strong=\"H6327\"* from|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H1696\"* they|strong=\"H4428\"* captured|strong=\"H8610\"* the|strong=\"H5927\"* king|strong=\"H4428\"* and|strong=\"H4428\"* carried|strong=\"H5927\"* him|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H1696\"* the|strong=\"H5927\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon to|strong=\"H1696\"* Riblah|strong=\"H7247\"*; and|strong=\"H4428\"* they|strong=\"H4428\"* passed|strong=\"H1696\"* judgment|strong=\"H4941\"* on|strong=\"H5927\"* him|strong=\"H5927\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H5178\"* killed|strong=\"H7819\"* Zedekiah|strong=\"H6667\"*’s sons|strong=\"H1121\"* before|strong=\"H5869\"* his|strong=\"H6667\"* eyes|strong=\"H5869\"*, then|strong=\"H1121\"* put|strong=\"H5786\"* out|strong=\"H5786\"* Zedekiah|strong=\"H6667\"*’s eyes|strong=\"H5869\"*, bound him|strong=\"H5869\"* in|strong=\"H1121\"* fetters|strong=\"H5178\"*, and|strong=\"H1121\"* carried him|strong=\"H5869\"* to|strong=\"H1121\"* Babylon." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H7227\"* in|strong=\"H8141\"* the|strong=\"H5650\"* fifth|strong=\"H2549\"* month|strong=\"H2320\"*, on|strong=\"H3389\"* the|strong=\"H5650\"* seventh|strong=\"H7651\"* day|strong=\"H2320\"* of|strong=\"H4428\"* the|strong=\"H5650\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H5650\"* nineteenth|strong=\"H8672\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, Nebuzaradan|strong=\"H5018\"* the|strong=\"H5650\"* captain|strong=\"H7227\"* of|strong=\"H4428\"* the|strong=\"H5650\"* guard|strong=\"H2876\"*, a|strong=\"H3068\"* servant|strong=\"H5650\"* of|strong=\"H4428\"* the|strong=\"H5650\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, came|strong=\"H5650\"* to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H3068\"* burned|strong=\"H8313\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* houses|strong=\"H1004\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*. He|strong=\"H3068\"* burned|strong=\"H8313\"* every|strong=\"H3605\"* great|strong=\"H1419\"* house|strong=\"H1004\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H2428\"* of|strong=\"H2346\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"*, who|strong=\"H3605\"* were|strong=\"H2428\"* with|strong=\"H3389\"* the|strong=\"H3605\"* captain|strong=\"H7227\"* of|strong=\"H2346\"* the|strong=\"H3605\"* guard|strong=\"H2876\"*, broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H3605\"* walls|strong=\"H2346\"* around|strong=\"H5439\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 11, + "text": "Nebuzaradan|strong=\"H5018\"* the|strong=\"H5921\"* captain|strong=\"H7227\"* of|strong=\"H4428\"* the|strong=\"H5921\"* guard|strong=\"H2876\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* left|strong=\"H7604\"* in|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"* and|strong=\"H4428\"* those|strong=\"H5921\"* who|strong=\"H5971\"* had|strong=\"H4428\"* deserted|strong=\"H5307\"* to|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon—all|strong=\"H5921\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* multitude|strong=\"H1995\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H7604\"* the|strong=\"H7604\"* captain|strong=\"H7227\"* of|strong=\"H7227\"* the|strong=\"H7604\"* guard|strong=\"H2876\"* left|strong=\"H7604\"* some|strong=\"H7227\"* of|strong=\"H7227\"* the|strong=\"H7604\"* poorest|strong=\"H1803\"* of|strong=\"H7227\"* the|strong=\"H7604\"* land to|strong=\"H7227\"* work the|strong=\"H7604\"* vineyards and|strong=\"H7227\"* fields." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5375\"* Chaldeans|strong=\"H3778\"* broke|strong=\"H7665\"* up|strong=\"H5375\"* the|strong=\"H5375\"* pillars|strong=\"H5982\"* of|strong=\"H1004\"* bronze|strong=\"H5178\"* that|strong=\"H3068\"* were|strong=\"H1004\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* the|strong=\"H5375\"* bases|strong=\"H4350\"* and|strong=\"H3068\"* the|strong=\"H5375\"* bronze|strong=\"H5178\"* sea|strong=\"H3220\"* that|strong=\"H3068\"* were|strong=\"H1004\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* carried|strong=\"H5375\"* the|strong=\"H5375\"* bronze|strong=\"H5178\"* pieces|strong=\"H7665\"* to|strong=\"H3068\"* Babylon." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3605\"* took|strong=\"H3947\"* away|strong=\"H3947\"* the|strong=\"H3605\"* pots|strong=\"H5518\"*, the|strong=\"H3605\"* shovels|strong=\"H3257\"*, the|strong=\"H3605\"* snuffers|strong=\"H4212\"*, the|strong=\"H3605\"* spoons|strong=\"H3709\"*, and|strong=\"H5178\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* bronze|strong=\"H5178\"* with|strong=\"H3627\"* which|strong=\"H3627\"* they|strong=\"H3605\"* ministered|strong=\"H8334\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3947\"* captain|strong=\"H7227\"* of|strong=\"H4219\"* the|strong=\"H3947\"* guard|strong=\"H2876\"* took|strong=\"H3947\"* away|strong=\"H3947\"* the|strong=\"H3947\"* fire pans, the|strong=\"H3947\"* basins|strong=\"H4219\"*, that|strong=\"H3701\"* which|strong=\"H2091\"* was|strong=\"H2091\"* of|strong=\"H4219\"* gold|strong=\"H2091\"*, for|strong=\"H3701\"* gold|strong=\"H2091\"*, and|strong=\"H3701\"* that|strong=\"H3701\"* which|strong=\"H2091\"* was|strong=\"H2091\"* of|strong=\"H4219\"* silver|strong=\"H3701\"*, for|strong=\"H3701\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* two|strong=\"H8147\"* pillars|strong=\"H5982\"*, the|strong=\"H3605\"* one|strong=\"H3605\"* sea|strong=\"H3220\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* bases|strong=\"H4350\"*, which|strong=\"H3068\"* Solomon|strong=\"H8010\"* had|strong=\"H3068\"* made|strong=\"H6213\"* for|strong=\"H6213\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, the|strong=\"H3605\"* bronze|strong=\"H5178\"* of|strong=\"H1004\"* all|strong=\"H3605\"* these|strong=\"H6213\"* vessels|strong=\"H3627\"* was|strong=\"H3068\"* not|strong=\"H3808\"* weighed|strong=\"H4948\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* height|strong=\"H6967\"* of|strong=\"H5982\"* the|strong=\"H3605\"* one|strong=\"H3605\"* pillar|strong=\"H5982\"* was|strong=\"H6967\"* eighteen|strong=\"H8083\"* cubits,+ 25:17 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H5178\"* a|strong=\"H3068\"* capital|strong=\"H3805\"* of|strong=\"H5982\"* bronze|strong=\"H5178\"* was|strong=\"H6967\"* on|strong=\"H5921\"* it|strong=\"H5921\"*. The|strong=\"H3605\"* height|strong=\"H6967\"* of|strong=\"H5982\"* the|strong=\"H3605\"* capital|strong=\"H3805\"* was|strong=\"H6967\"* three|strong=\"H7969\"* cubits, with|strong=\"H5921\"* network|strong=\"H7639\"* and|strong=\"H5178\"* pomegranates|strong=\"H7416\"* on|strong=\"H5921\"* the|strong=\"H3605\"* capital|strong=\"H3805\"* around|strong=\"H5439\"* it|strong=\"H5921\"*, all|strong=\"H3605\"* of|strong=\"H5982\"* bronze|strong=\"H5178\"*; and|strong=\"H5178\"* the|strong=\"H3605\"* second|strong=\"H8145\"* pillar|strong=\"H5982\"* with|strong=\"H5921\"* its|strong=\"H3605\"* network|strong=\"H7639\"* was|strong=\"H6967\"* like|strong=\"H5921\"* these|strong=\"H3605\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3947\"* captain|strong=\"H7227\"* of|strong=\"H7218\"* the|strong=\"H3947\"* guard|strong=\"H2876\"* took|strong=\"H3947\"* Seraiah|strong=\"H8304\"* the|strong=\"H3947\"* chief|strong=\"H7218\"* priest|strong=\"H3548\"*, Zephaniah|strong=\"H6846\"* the|strong=\"H3947\"* second|strong=\"H4932\"* priest|strong=\"H3548\"*, and|strong=\"H3548\"* the|strong=\"H3947\"* three|strong=\"H7969\"* keepers|strong=\"H8104\"* of|strong=\"H7218\"* the|strong=\"H3947\"* threshold|strong=\"H5592\"*;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H4428\"* out|strong=\"H4672\"* of|strong=\"H4428\"* the|strong=\"H6440\"* city|strong=\"H5892\"* he|strong=\"H1931\"* took|strong=\"H3947\"* an|strong=\"H3947\"* officer|strong=\"H5631\"* who|strong=\"H1931\"* was|strong=\"H1931\"* set|strong=\"H6496\"* over|strong=\"H5921\"* the|strong=\"H6440\"* men|strong=\"H5971\"* of|strong=\"H4428\"* war|strong=\"H4421\"*; and|strong=\"H4428\"* five|strong=\"H2568\"* men|strong=\"H5971\"* of|strong=\"H4428\"* those|strong=\"H4480\"* who|strong=\"H1931\"* saw|strong=\"H7200\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s face|strong=\"H6440\"*, who|strong=\"H1931\"* were|strong=\"H5971\"* found|strong=\"H4672\"* in|strong=\"H5921\"* the|strong=\"H6440\"* city|strong=\"H5892\"*; and|strong=\"H4428\"* the|strong=\"H6440\"* scribe|strong=\"H5608\"*, the|strong=\"H6440\"* captain|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H6440\"* army|strong=\"H6635\"*, who|strong=\"H1931\"* mustered|strong=\"H6633\"* the|strong=\"H6440\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, and|strong=\"H4428\"* sixty|strong=\"H8346\"* men|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H6440\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H6440\"* land|strong=\"H6440\"* who|strong=\"H1931\"* were|strong=\"H5971\"* found|strong=\"H4672\"* in|strong=\"H5921\"* the|strong=\"H6440\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 20, + "text": "Nebuzaradan|strong=\"H5018\"* the|strong=\"H5921\"* captain|strong=\"H7227\"* of|strong=\"H4428\"* the|strong=\"H5921\"* guard|strong=\"H2876\"* took|strong=\"H3947\"* them|strong=\"H5921\"*, and|strong=\"H4428\"* brought|strong=\"H3947\"* them|strong=\"H5921\"* to|strong=\"H3212\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon to|strong=\"H3212\"* Riblah|strong=\"H7247\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon attacked|strong=\"H5221\"* them|strong=\"H5921\"* and|strong=\"H3063\"* put|strong=\"H4191\"* them|strong=\"H5921\"* to|strong=\"H4191\"* death|strong=\"H4191\"* at|strong=\"H5921\"* Riblah|strong=\"H7247\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H4428\"* Hamath|strong=\"H2574\"*. So|strong=\"H4191\"* Judah|strong=\"H3063\"* was|strong=\"H4428\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* out|strong=\"H5921\"* of|strong=\"H4428\"* his|strong=\"H5921\"* land." + }, + { + "verseNum": 22, + "text": "As|strong=\"H5971\"* for|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* left|strong=\"H7604\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Judah|strong=\"H3063\"* whom|strong=\"H5971\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon had|strong=\"H4428\"* left|strong=\"H7604\"*, even|strong=\"H5921\"* over|strong=\"H5921\"* them|strong=\"H5921\"* he|strong=\"H5921\"* made|strong=\"H6485\"* Gedaliah|strong=\"H1436\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"*, governor|strong=\"H6485\"*." + }, + { + "verseNum": 23, + "text": "Now|strong=\"H3588\"* when|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forces|strong=\"H2428\"*, they|strong=\"H1992\"* and|strong=\"H1121\"* their|strong=\"H3605\"* men|strong=\"H1121\"*, heard|strong=\"H8085\"* that|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon had|strong=\"H4428\"* made|strong=\"H6485\"* Gedaliah|strong=\"H1436\"* governor|strong=\"H8269\"*, they|strong=\"H1992\"* came|strong=\"H4428\"* to|strong=\"H8085\"* Gedaliah|strong=\"H1436\"* to|strong=\"H8085\"* Mizpah|strong=\"H4709\"*, even|strong=\"H3588\"* Ishmael|strong=\"H3458\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"*, Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*, Seraiah|strong=\"H8304\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Tanhumeth|strong=\"H8576\"* the|strong=\"H3605\"* Netophathite|strong=\"H5200\"*, and|strong=\"H1121\"* Jaazaniah|strong=\"H2970\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Maacathite|strong=\"H4602\"*, they|strong=\"H1992\"* and|strong=\"H1121\"* their|strong=\"H3605\"* men|strong=\"H1121\"*." + }, + { + "verseNum": 24, + "text": "Gedaliah|strong=\"H1436\"* swore|strong=\"H7650\"* to|strong=\"H4428\"* them|strong=\"H3190\"* and|strong=\"H4428\"* to|strong=\"H4428\"* their|strong=\"H5647\"* men|strong=\"H5650\"*, and|strong=\"H4428\"* said to|strong=\"H4428\"* them|strong=\"H3190\"*, “Don’t be|strong=\"H4428\"* afraid|strong=\"H3372\"* because|strong=\"H3372\"* of|strong=\"H4428\"* the|strong=\"H5647\"* servants|strong=\"H5650\"* of|strong=\"H4428\"* the|strong=\"H5647\"* Chaldeans|strong=\"H3778\"*. Dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5647\"* land and|strong=\"H4428\"* serve|strong=\"H5647\"* the|strong=\"H5647\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H4428\"* it|strong=\"H3190\"* will|strong=\"H4428\"* be|strong=\"H4428\"* well|strong=\"H3190\"* with|strong=\"H3427\"* you|strong=\"H5647\"*.”" + }, + { + "verseNum": 25, + "text": "But|strong=\"H1961\"* in|strong=\"H4191\"* the|strong=\"H5221\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*, Ishmael|strong=\"H3458\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"*, the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elishama, of|strong=\"H1121\"* the|strong=\"H5221\"* royal|strong=\"H4410\"* offspring|strong=\"H2233\"* came|strong=\"H1961\"*, and|strong=\"H1121\"* ten|strong=\"H6235\"* men|strong=\"H1121\"* with|strong=\"H4191\"* him|strong=\"H5221\"*, and|strong=\"H1121\"* struck|strong=\"H5221\"* Gedaliah|strong=\"H1436\"* so|strong=\"H1961\"* that|strong=\"H1121\"* he|strong=\"H5221\"* died|strong=\"H4191\"*, with|strong=\"H4191\"* the|strong=\"H5221\"* Jews|strong=\"H3064\"* and|strong=\"H1121\"* the|strong=\"H5221\"* Chaldeans|strong=\"H3778\"* that|strong=\"H1121\"* were|strong=\"H1961\"* with|strong=\"H4191\"* him|strong=\"H5221\"* at|strong=\"H2320\"* Mizpah|strong=\"H4709\"*." + }, + { + "verseNum": 26, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, both|strong=\"H3605\"* small|strong=\"H6996\"* and|strong=\"H6965\"* great|strong=\"H1419\"*, and|strong=\"H6965\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H3605\"* forces|strong=\"H2428\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* came|strong=\"H4714\"* to|strong=\"H5704\"* Egypt|strong=\"H4714\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H5971\"* afraid|strong=\"H3372\"* of|strong=\"H8269\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"*." + }, + { + "verseNum": 27, + "text": "In|strong=\"H8141\"* the|strong=\"H5375\"* thirty-seventh|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H4428\"* the|strong=\"H5375\"* captivity|strong=\"H1546\"* of|strong=\"H4428\"* Jehoiachin|strong=\"H3078\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, in|strong=\"H8141\"* the|strong=\"H5375\"* twelfth|strong=\"H8147\"* month|strong=\"H2320\"*, on|strong=\"H1961\"* the|strong=\"H5375\"* twenty-seventh|strong=\"H6242\"* day|strong=\"H2320\"* of|strong=\"H4428\"* the|strong=\"H5375\"* month|strong=\"H2320\"*, Evilmerodach king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, in|strong=\"H8141\"* the|strong=\"H5375\"* year|strong=\"H8141\"* that|strong=\"H4428\"* he|strong=\"H1004\"* began|strong=\"H3063\"* to|strong=\"H1961\"* reign|strong=\"H4427\"*, released|strong=\"H5375\"* Jehoiachin|strong=\"H3078\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* out|strong=\"H8147\"* of|strong=\"H4428\"* prison|strong=\"H1004\"*," + }, + { + "verseNum": 28, + "text": "and|strong=\"H4428\"* he|strong=\"H5414\"* spoke|strong=\"H1696\"* kindly|strong=\"H2896\"* to|strong=\"H1696\"* him|strong=\"H5414\"* and|strong=\"H4428\"* set|strong=\"H5414\"* his|strong=\"H5414\"* throne|strong=\"H3678\"* above|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* who|strong=\"H4428\"* were|strong=\"H4428\"* with|strong=\"H1696\"* him|strong=\"H5414\"* in|strong=\"H5921\"* Babylon," + }, + { + "verseNum": 29, + "text": "and|strong=\"H3117\"* changed|strong=\"H8132\"* his|strong=\"H3605\"* prison|strong=\"H3608\"* garments. Jehoiachin|strong=\"H8132\"* ate bread|strong=\"H3899\"* before|strong=\"H6440\"* him|strong=\"H6440\"* continually|strong=\"H8548\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H3605\"* life|strong=\"H2416\"*;" + }, + { + "verseNum": 30, + "text": "and|strong=\"H4428\"* for|strong=\"H3117\"* his|strong=\"H3605\"* allowance, there|strong=\"H3117\"* was|strong=\"H1697\"* a|strong=\"H3068\"* continual|strong=\"H8548\"* allowance given|strong=\"H5414\"* him|strong=\"H5414\"* from|strong=\"H3117\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, every|strong=\"H3605\"* day|strong=\"H3117\"* a|strong=\"H3068\"* portion|strong=\"H1697\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* his|strong=\"H3605\"* life|strong=\"H2416\"*." + } + ] + } + ] + }, + { + "name": "1 Chronicles", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Adam, Seth|strong=\"H8352\"*, Enosh," + }, + { + "verseNum": 2, + "text": "Kenan|strong=\"H7018\"*, Mahalalel|strong=\"H4111\"*, Jared|strong=\"H3382\"*," + }, + { + "verseNum": 3, + "text": "Enoch|strong=\"H2585\"*, Methuselah|strong=\"H4968\"*, Lamech|strong=\"H3929\"*," + }, + { + "verseNum": 4, + "text": "Noah|strong=\"H5146\"*, Shem|strong=\"H8035\"*, Ham|strong=\"H2526\"*, and|strong=\"H8035\"* Japheth|strong=\"H3315\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Japheth|strong=\"H3315\"*: Gomer|strong=\"H1586\"*, Magog|strong=\"H4031\"*, Madai|strong=\"H4074\"*, Javan|strong=\"H3120\"*, Tubal|strong=\"H8422\"*, Meshech|strong=\"H4902\"*, and|strong=\"H1121\"* Tiras|strong=\"H8494\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gomer|strong=\"H1586\"*: Ashkenaz, Diphath, and|strong=\"H1121\"* Togarmah|strong=\"H8425\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Javan|strong=\"H3120\"*: Elishah, Tarshish|strong=\"H8659\"*, Kittim|strong=\"H3794\"*, and|strong=\"H1121\"* Rodanim." + }, + { + "verseNum": 8, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ham|strong=\"H2526\"*: Cush|strong=\"H3568\"*, Mizraim|strong=\"H4714\"*, Put|strong=\"H6316\"*, and|strong=\"H1121\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Cush|strong=\"H3568\"*: Seba|strong=\"H5434\"*, Havilah|strong=\"H2341\"*, Sabta|strong=\"H5454\"*, Raama|strong=\"H7484\"*, Sabteca|strong=\"H5455\"*. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Raamah|strong=\"H7484\"*: Sheba|strong=\"H7614\"* and|strong=\"H1121\"* Dedan|strong=\"H1719\"*." + }, + { + "verseNum": 10, + "text": "Cush|strong=\"H3568\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Nimrod|strong=\"H5248\"*. He|strong=\"H1931\"* began|strong=\"H2490\"* to|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* mighty|strong=\"H1368\"* one|strong=\"H1931\"* in|strong=\"H1368\"* the|strong=\"H3205\"* earth." + }, + { + "verseNum": 11, + "text": "Mizraim|strong=\"H4714\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Ludim|strong=\"H3866\"*, Anamim|strong=\"H6047\"*, Lehabim|strong=\"H3853\"*, Naphtuhim|strong=\"H5320\"*," + }, + { + "verseNum": 12, + "text": "Pathrusim|strong=\"H6625\"*, Casluhim|strong=\"H3695\"* (where|strong=\"H8033\"* the|strong=\"H3318\"* Philistines|strong=\"H6430\"* came|strong=\"H3318\"* from|strong=\"H3318\"*), and|strong=\"H8033\"* Caphtorim|strong=\"H3732\"*." + }, + { + "verseNum": 13, + "text": "Canaan|strong=\"H3667\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Sidon|strong=\"H6721\"* his|strong=\"H3205\"* firstborn|strong=\"H1060\"*, Heth|strong=\"H2845\"*," + }, + { + "verseNum": 14, + "text": "the|strong=\"H2983\"* Jebusite|strong=\"H2983\"*, the|strong=\"H2983\"* Amorite, the|strong=\"H2983\"* Girgashite|strong=\"H1622\"*," + }, + { + "verseNum": 15, + "text": "the|strong=\"H2340\"* Hivite|strong=\"H2340\"*, the|strong=\"H2340\"* Arkite|strong=\"H6208\"*, the|strong=\"H2340\"* Sinite|strong=\"H5513\"*," + }, + { + "verseNum": 16, + "text": "the Arvadite, the Zemarite|strong=\"H6786\"*, and the Hamathite|strong=\"H2577\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shem|strong=\"H8035\"*: Elam|strong=\"H5867\"*, Asshur, Arpachshad, Lud|strong=\"H3865\"*, Aram, Uz|strong=\"H5780\"*, Hul|strong=\"H2343\"*, Gether|strong=\"H1666\"*, and|strong=\"H1121\"* Meshech|strong=\"H4902\"*." + }, + { + "verseNum": 18, + "text": "Arpachshad became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Shelah|strong=\"H7974\"*, and|strong=\"H3205\"* Shelah|strong=\"H7974\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Eber|strong=\"H5677\"*." + }, + { + "verseNum": 19, + "text": "To|strong=\"H3117\"* Eber|strong=\"H5677\"* were|strong=\"H1121\"* born|strong=\"H3205\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*: the|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H3588\"* one|strong=\"H1121\"* was|strong=\"H8034\"* Peleg|strong=\"H6389\"*, for|strong=\"H3588\"* in|strong=\"H3117\"* his|strong=\"H3588\"* days|strong=\"H3117\"* the|strong=\"H3588\"* earth was|strong=\"H8034\"* divided|strong=\"H6385\"*; and|strong=\"H1121\"* his|strong=\"H3588\"* brother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Joktan|strong=\"H3355\"*." + }, + { + "verseNum": 20, + "text": "Joktan|strong=\"H3355\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Almodad, Sheleph|strong=\"H8026\"*, Hazarmaveth|strong=\"H2700\"*, Jerah|strong=\"H3392\"*," + }, + { + "verseNum": 21, + "text": "Hadoram|strong=\"H1913\"*, Uzal, Diklah|strong=\"H1853\"*," + }, + { + "verseNum": 22, + "text": "Ebal|strong=\"H5858\"*, Abimael, Sheba|strong=\"H7614\"*," + }, + { + "verseNum": 23, + "text": "Ophir, Havilah|strong=\"H2341\"*, and|strong=\"H1121\"* Jobab|strong=\"H3103\"*. All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Joktan|strong=\"H3355\"*." + }, + { + "verseNum": 24, + "text": "Shem|strong=\"H8035\"*, Arpachshad, Shelah|strong=\"H7974\"*," + }, + { + "verseNum": 25, + "text": "Eber|strong=\"H5677\"*, Peleg|strong=\"H6389\"*, Reu|strong=\"H7466\"*," + }, + { + "verseNum": 26, + "text": "Serug|strong=\"H8286\"*, Nahor|strong=\"H5152\"*, Terah|strong=\"H8646\"*," + }, + { + "verseNum": 27, + "text": "Abram (also|strong=\"H1931\"* called Abraham)." + }, + { + "verseNum": 28, + "text": "The|strong=\"H3458\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Abraham: Isaac|strong=\"H3327\"* and|strong=\"H1121\"* Ishmael|strong=\"H3458\"*." + }, + { + "verseNum": 29, + "text": "These are their generations|strong=\"H8435\"*: the|strong=\"H3458\"* firstborn|strong=\"H1060\"* of|strong=\"H1060\"* Ishmael|strong=\"H3458\"*, Nebaioth|strong=\"H5032\"*; then Kedar|strong=\"H6938\"*, Adbeel, Mibsam|strong=\"H4017\"*," + }, + { + "verseNum": 30, + "text": "Mishma|strong=\"H4927\"*, Dumah|strong=\"H1746\"*, Massa|strong=\"H4854\"*, Hadad|strong=\"H2301\"*, Tema|strong=\"H8485\"*," + }, + { + "verseNum": 31, + "text": "Jetur|strong=\"H3195\"*, Naphish|strong=\"H5305\"*, and|strong=\"H1121\"* Kedemah|strong=\"H6929\"*. These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H3458\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ishmael|strong=\"H3458\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Keturah|strong=\"H6989\"*, Abraham’s concubine|strong=\"H6370\"*: she bore|strong=\"H3205\"* Zimran|strong=\"H2175\"*, Jokshan|strong=\"H3370\"*, Medan|strong=\"H4091\"*, Midian|strong=\"H4080\"*, Ishbak|strong=\"H3435\"*, and|strong=\"H1121\"* Shuah|strong=\"H7744\"*. The|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jokshan|strong=\"H3370\"*: Sheba|strong=\"H7614\"* and|strong=\"H1121\"* Dedan|strong=\"H1719\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"*: Ephah|strong=\"H5891\"*, Epher|strong=\"H6081\"*, Hanoch|strong=\"H2585\"*, Abida, and|strong=\"H1121\"* Eldaah. All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Keturah|strong=\"H6989\"*." + }, + { + "verseNum": 34, + "text": "Abraham became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Isaac|strong=\"H3327\"*. The|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Isaac|strong=\"H3327\"*: Esau|strong=\"H6215\"* and|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"*: Eliphaz, Reuel|strong=\"H7467\"*, Jeush|strong=\"H3266\"*, Jalam|strong=\"H3281\"*, and|strong=\"H1121\"* Korah|strong=\"H7141\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eliphaz: Teman|strong=\"H8487\"*, Omar, Zephi|strong=\"H6825\"*, Gatam|strong=\"H1609\"*, Kenaz|strong=\"H7073\"*, Timna|strong=\"H8555\"*, and|strong=\"H1121\"* Amalek|strong=\"H6002\"*." + }, + { + "verseNum": 37, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Reuel|strong=\"H7467\"*: Nahath|strong=\"H5184\"*, Zerah|strong=\"H2226\"*, Shammah|strong=\"H8048\"*, and|strong=\"H1121\"* Mizzah|strong=\"H4199\"*." + }, + { + "verseNum": 38, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Seir|strong=\"H8165\"*: Lotan|strong=\"H3877\"*, Shobal|strong=\"H7732\"*, Zibeon|strong=\"H6649\"*, Anah|strong=\"H6034\"*, Dishon|strong=\"H1787\"*, Ezer, and|strong=\"H1121\"* Dishan|strong=\"H1789\"*." + }, + { + "verseNum": 39, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Lotan|strong=\"H3877\"*: Hori|strong=\"H2753\"* and|strong=\"H1121\"* Homam|strong=\"H1950\"*; and|strong=\"H1121\"* Timna|strong=\"H8555\"* was|strong=\"H1121\"* Lotan|strong=\"H3877\"*’s sister." + }, + { + "verseNum": 40, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shobal|strong=\"H7732\"*: Alian|strong=\"H5935\"*, Manahath|strong=\"H4506\"*, Ebal|strong=\"H5858\"*, Shephi|strong=\"H8195\"*, and|strong=\"H1121\"* Onam. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zibeon|strong=\"H6649\"*: Aiah and|strong=\"H1121\"* Anah|strong=\"H6034\"*." + }, + { + "verseNum": 41, + "text": "The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Anah|strong=\"H6034\"*: Dishon|strong=\"H1787\"*. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Dishon|strong=\"H1787\"*: Hamran|strong=\"H2566\"*, Eshban, Ithran|strong=\"H3506\"*, and|strong=\"H1121\"* Cheran|strong=\"H3763\"*." + }, + { + "verseNum": 42, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ezer: Bilhan|strong=\"H1092\"*, Zaavan|strong=\"H2190\"*, and|strong=\"H1121\"* Jaakan|strong=\"H3292\"*. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Dishan|strong=\"H1787\"*: Uz|strong=\"H5780\"* and|strong=\"H1121\"* Aran." + }, + { + "verseNum": 43, + "text": "Now|strong=\"H3478\"* these|strong=\"H6440\"* are|strong=\"H1121\"* the|strong=\"H6440\"* kings|strong=\"H4428\"* who|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H3478\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H1121\"* Edom, before|strong=\"H6440\"* any|strong=\"H6440\"* king|strong=\"H4428\"* reigned|strong=\"H4427\"* over|strong=\"H4427\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*: Bela|strong=\"H1106\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Beor|strong=\"H1160\"*; and|strong=\"H1121\"* the|strong=\"H6440\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H6440\"* city|strong=\"H5892\"* was|strong=\"H8034\"* Dinhabah|strong=\"H1838\"*." + }, + { + "verseNum": 44, + "text": "Bela|strong=\"H1106\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* Jobab|strong=\"H3103\"* the|strong=\"H8478\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zerah|strong=\"H2226\"* of|strong=\"H1121\"* Bozrah|strong=\"H1224\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 45, + "text": "Jobab|strong=\"H3103\"* died|strong=\"H4191\"*, and|strong=\"H4191\"* Husham|strong=\"H2367\"* of|strong=\"H8478\"* the|strong=\"H8478\"* land of|strong=\"H8478\"* the|strong=\"H8478\"* Temanites|strong=\"H8489\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 46, + "text": "Husham|strong=\"H2367\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* Hadad|strong=\"H1908\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bedad, who|strong=\"H1121\"* struck|strong=\"H5221\"* Midian|strong=\"H4080\"* in|strong=\"H4191\"* the|strong=\"H5221\"* field|strong=\"H7704\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H5221\"* place|strong=\"H8478\"*; and|strong=\"H1121\"* the|strong=\"H5221\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H5221\"* city|strong=\"H5892\"* was|strong=\"H8034\"* Avith|strong=\"H5762\"*." + }, + { + "verseNum": 47, + "text": "Hadad|strong=\"H1908\"* died|strong=\"H4191\"*, and|strong=\"H4191\"* Samlah|strong=\"H8072\"* of|strong=\"H8478\"* Masrekah|strong=\"H4957\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 48, + "text": "Samlah|strong=\"H8072\"* died|strong=\"H4191\"*, and|strong=\"H7586\"* Shaul|strong=\"H7586\"* of|strong=\"H8478\"* Rehoboth|strong=\"H7344\"* by|strong=\"H4191\"* the|strong=\"H8478\"* River|strong=\"H5104\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 49, + "text": "Shaul|strong=\"H7586\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* Baal Hanan the|strong=\"H8478\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Achbor|strong=\"H5907\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 50, + "text": "Baal Hanan died|strong=\"H4191\"*, and|strong=\"H5892\"* Hadad|strong=\"H1908\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*; and|strong=\"H5892\"* the|strong=\"H8478\"* name|strong=\"H8034\"* of|strong=\"H1323\"* his|strong=\"H8478\"* city|strong=\"H5892\"* was|strong=\"H8034\"* Pai|strong=\"H6464\"*. His|strong=\"H8478\"* wife’s name|strong=\"H8034\"* was|strong=\"H8034\"* Mehetabel|strong=\"H4105\"*, the|strong=\"H8478\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Matred|strong=\"H4308\"*, the|strong=\"H8478\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Mezahab|strong=\"H4314\"*." + }, + { + "verseNum": 51, + "text": "Then|strong=\"H1961\"* Hadad|strong=\"H1908\"* died|strong=\"H4191\"*. The|strong=\"H1961\"* chiefs of|strong=\"H4191\"* Edom were|strong=\"H1961\"*: chief Timna|strong=\"H8555\"*, chief Aliah|strong=\"H5933\"*, chief Jetheth|strong=\"H3509\"*," + }, + { + "verseNum": 52, + "text": "chief Oholibamah, chief Elah, chief Pinon|strong=\"H6373\"*," + }, + { + "verseNum": 53, + "text": "chief Kenaz|strong=\"H7073\"*, chief Teman|strong=\"H8487\"*, chief Mibzar|strong=\"H4014\"*," + }, + { + "verseNum": 54, + "text": "chief Magdiel|strong=\"H4025\"*, and chief Iram|strong=\"H5902\"*. These are the chiefs of Edom." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*: Reuben|strong=\"H7205\"*, Simeon|strong=\"H8095\"*, Levi|strong=\"H3878\"*, Judah|strong=\"H3063\"*, Issachar|strong=\"H3485\"*, Zebulun|strong=\"H2074\"*," + }, + { + "verseNum": 2, + "text": "Dan|strong=\"H1835\"*, Joseph|strong=\"H3130\"*, Benjamin|strong=\"H1144\"*, Naphtali|strong=\"H5321\"*, Gad|strong=\"H1410\"*, and|strong=\"H1144\"* Asher." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*: Er|strong=\"H6147\"*, Onan, and|strong=\"H1121\"* Shelah|strong=\"H7956\"*, which|strong=\"H3068\"* three|strong=\"H7969\"* were|strong=\"H1961\"* born|strong=\"H3205\"* to|strong=\"H4191\"* him|strong=\"H3205\"* of|strong=\"H1121\"* Shua|strong=\"H7774\"*’s daughter|strong=\"H1323\"* the|strong=\"H3205\"* Canaanitess|strong=\"H3669\"*. Er|strong=\"H6147\"*, Judah|strong=\"H3063\"*’s firstborn|strong=\"H1060\"*, was|strong=\"H3068\"* wicked|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s+ 2:3 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* sight|strong=\"H5869\"*; and|strong=\"H1121\"* he|strong=\"H3068\"* killed|strong=\"H4191\"* him|strong=\"H3205\"*." + }, + { + "verseNum": 4, + "text": "Tamar|strong=\"H8559\"* his|strong=\"H3605\"* daughter-in-law|strong=\"H3618\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* Perez|strong=\"H6557\"* and|strong=\"H1121\"* Zerah|strong=\"H2226\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* were|strong=\"H1121\"* five|strong=\"H2568\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Perez|strong=\"H6557\"*: Hezron|strong=\"H2696\"* and|strong=\"H1121\"* Hamul|strong=\"H2538\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zerah|strong=\"H2226\"*: Zimri|strong=\"H2174\"*, Ethan, Heman|strong=\"H1968\"*, Calcol|strong=\"H3633\"*, and|strong=\"H1121\"* Dara|strong=\"H1873\"*—five|strong=\"H2568\"* of|strong=\"H1121\"* them|strong=\"H1121\"* in|strong=\"H1121\"* all|strong=\"H3605\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Carmi|strong=\"H3756\"*: Achar|strong=\"H5917\"*, the|strong=\"H1121\"* troubler|strong=\"H5916\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, who|strong=\"H1121\"* committed|strong=\"H4603\"* a|strong=\"H3068\"* trespass|strong=\"H4603\"* in|strong=\"H3478\"* the|strong=\"H1121\"* devoted|strong=\"H2764\"* thing|strong=\"H2764\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5838\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ethan: Azariah|strong=\"H5838\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3205\"* sons|strong=\"H1121\"* also|strong=\"H1121\"* of|strong=\"H1121\"* Hezron|strong=\"H2696\"*, who|strong=\"H1121\"* were|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H3205\"* him|strong=\"H3205\"*: Jerahmeel|strong=\"H3396\"*, Ram|strong=\"H7410\"*, and|strong=\"H1121\"* Chelubai|strong=\"H3621\"*." + }, + { + "verseNum": 10, + "text": "Ram|strong=\"H7410\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Amminadab|strong=\"H5992\"*, and|strong=\"H1121\"* Amminadab|strong=\"H5992\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Nahshon|strong=\"H5177\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3205\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*;" + }, + { + "verseNum": 11, + "text": "and|strong=\"H3205\"* Nahshon|strong=\"H5177\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Salma|strong=\"H8007\"*, and|strong=\"H3205\"* Salma|strong=\"H8007\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Boaz|strong=\"H1162\"*," + }, + { + "verseNum": 12, + "text": "and|strong=\"H3205\"* Boaz|strong=\"H1162\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Obed|strong=\"H5744\"*, and|strong=\"H3205\"* Obed|strong=\"H5744\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jesse|strong=\"H3448\"*;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H3205\"* Jesse|strong=\"H3448\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* his|strong=\"H3205\"* firstborn|strong=\"H1060\"* Eliab, Abinadab the|strong=\"H3205\"* second|strong=\"H8145\"*, Shimea|strong=\"H8092\"* the|strong=\"H3205\"* third|strong=\"H7992\"*," + }, + { + "verseNum": 14, + "text": "Nethanel|strong=\"H5417\"* the|strong=\"H5417\"* fourth|strong=\"H7243\"*, Raddai|strong=\"H7288\"* the|strong=\"H5417\"* fifth|strong=\"H2549\"*," + }, + { + "verseNum": 15, + "text": "Ozem the|strong=\"H1732\"* sixth|strong=\"H8345\"*, and|strong=\"H1732\"* David|strong=\"H1732\"* the|strong=\"H1732\"* seventh|strong=\"H7637\"*;" + }, + { + "verseNum": 16, + "text": "and|strong=\"H1121\"* their sisters were|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* and|strong=\"H1121\"* Abigail. The|strong=\"H3097\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"*: Abishai, Joab|strong=\"H3097\"*, and|strong=\"H1121\"* Asahel|strong=\"H6214\"*, three|strong=\"H7969\"*." + }, + { + "verseNum": 17, + "text": "Abigail bore|strong=\"H3205\"* Amasa|strong=\"H6021\"*; and|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Amasa|strong=\"H6021\"* was|strong=\"H3205\"* Jether|strong=\"H3500\"* the|strong=\"H3205\"* Ishmaelite|strong=\"H3459\"*." + }, + { + "verseNum": 18, + "text": "Caleb|strong=\"H3612\"* the|strong=\"H3205\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hezron|strong=\"H2696\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* children|strong=\"H1121\"* by|strong=\"H3205\"* Azubah|strong=\"H5806\"* his|strong=\"H3205\"* wife, and|strong=\"H1121\"* by|strong=\"H3205\"* Jerioth|strong=\"H3408\"*; and|strong=\"H1121\"* these were|strong=\"H1121\"* her|strong=\"H3205\"* sons|strong=\"H1121\"*: Jesher|strong=\"H3475\"*, Shobab|strong=\"H7727\"*, and|strong=\"H1121\"* Ardon." + }, + { + "verseNum": 19, + "text": "Azubah|strong=\"H5806\"* died|strong=\"H4191\"*, and|strong=\"H3947\"* Caleb|strong=\"H3612\"* married|strong=\"H3947\"* Ephrath, who|strong=\"H3205\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* Hur|strong=\"H2354\"*." + }, + { + "verseNum": 20, + "text": "Hur|strong=\"H2354\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Uri, and|strong=\"H3205\"* Uri became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Bezalel|strong=\"H1212\"*." + }, + { + "verseNum": 21, + "text": "Afterward Hezron|strong=\"H2696\"* went|strong=\"H1121\"* in|strong=\"H8141\"* to|strong=\"H3205\"* the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"* the|strong=\"H3947\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, whom he|strong=\"H1931\"* took|strong=\"H3947\"* as|strong=\"H8141\"* wife when|strong=\"H1121\"* he|strong=\"H1931\"* was|strong=\"H1931\"* sixty|strong=\"H8346\"* years|strong=\"H8141\"* old|strong=\"H1121\"*; and|strong=\"H1121\"* she|strong=\"H1931\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* Segub|strong=\"H7687\"*." + }, + { + "verseNum": 22, + "text": "Segub|strong=\"H7687\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H5892\"* Jair|strong=\"H2971\"*, who|strong=\"H3205\"* had|strong=\"H1961\"* twenty-three|strong=\"H6242\"* cities|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H3205\"* land of|strong=\"H5892\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 23, + "text": "Geshur|strong=\"H1650\"* and|strong=\"H1121\"* Aram took|strong=\"H3947\"* the|strong=\"H3605\"* towns|strong=\"H1323\"* of|strong=\"H1121\"* Jair|strong=\"H2971\"* from|strong=\"H1121\"* them|strong=\"H3947\"*, with|strong=\"H5892\"* Kenath|strong=\"H7079\"*, and|strong=\"H1121\"* its|strong=\"H3605\"* villages|strong=\"H1323\"*, even sixty|strong=\"H8346\"* cities|strong=\"H5892\"*. All|strong=\"H3605\"* these|strong=\"H3947\"* were|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"* the|strong=\"H3605\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 24, + "text": "After Hezron|strong=\"H2696\"* died|strong=\"H4194\"* in|strong=\"H3205\"* Caleb|strong=\"H3613\"* Ephrathah, Abijah, Hezron|strong=\"H2696\"*’s wife, bore|strong=\"H3205\"* him|strong=\"H3205\"* Ashhur the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Tekoa|strong=\"H8620\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jerahmeel|strong=\"H3396\"* the|strong=\"H1961\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* Hezron|strong=\"H2696\"* were|strong=\"H1961\"* Ram|strong=\"H7410\"* the|strong=\"H1961\"* firstborn|strong=\"H1060\"*, Bunah, Oren, Ozem, and|strong=\"H1121\"* Ahijah." + }, + { + "verseNum": 26, + "text": "Jerahmeel|strong=\"H3396\"* had|strong=\"H1961\"* another wife, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Atarah|strong=\"H5851\"*. She|strong=\"H1931\"* was|strong=\"H8034\"* the|strong=\"H1961\"* mother of|strong=\"H8034\"* Onam." + }, + { + "verseNum": 27, + "text": "The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ram|strong=\"H7410\"* the|strong=\"H1961\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* Jerahmeel|strong=\"H3396\"* were|strong=\"H1961\"* Maaz|strong=\"H4619\"*, Jamin|strong=\"H3226\"*, and|strong=\"H1121\"* Eker|strong=\"H6134\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Onam were|strong=\"H1961\"* Shammai|strong=\"H8060\"* and|strong=\"H1121\"* Jada|strong=\"H3047\"*. The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shammai|strong=\"H8060\"*: Nadab|strong=\"H5070\"* and|strong=\"H1121\"* Abishur." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3205\"* name|strong=\"H8034\"* of|strong=\"H3205\"* the|strong=\"H3205\"* wife of|strong=\"H3205\"* Abishur was|strong=\"H8034\"* Abihail; and|strong=\"H8034\"* she bore|strong=\"H3205\"* him|strong=\"H3205\"* Ahban and|strong=\"H8034\"* Molid|strong=\"H4140\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H4191\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Nadab|strong=\"H5070\"*: Seled|strong=\"H5540\"* and|strong=\"H1121\"* Appaim; but|strong=\"H3808\"* Seled|strong=\"H5540\"* died|strong=\"H4191\"* without|strong=\"H3808\"* children|strong=\"H1121\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Appaim: Ishi|strong=\"H3469\"*. The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ishi|strong=\"H3469\"*: Sheshan|strong=\"H8348\"*. The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Sheshan|strong=\"H8348\"*: Ahlai." + }, + { + "verseNum": 32, + "text": "The|strong=\"H4191\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jada|strong=\"H3047\"* the|strong=\"H4191\"* brother of|strong=\"H1121\"* Shammai|strong=\"H8060\"*: Jether|strong=\"H3500\"* and|strong=\"H1121\"* Jonathan|strong=\"H3129\"*; and|strong=\"H1121\"* Jether|strong=\"H3500\"* died|strong=\"H4191\"* without|strong=\"H3808\"* children|strong=\"H1121\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jonathan|strong=\"H3129\"*: Peleth|strong=\"H6431\"* and|strong=\"H1121\"* Zaza|strong=\"H2117\"*. These were|strong=\"H1961\"* the|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jerahmeel|strong=\"H3396\"*." + }, + { + "verseNum": 34, + "text": "Now|strong=\"H1961\"* Sheshan|strong=\"H8348\"* had|strong=\"H1961\"* no|strong=\"H3808\"* sons|strong=\"H1121\"*, but|strong=\"H3588\"* only|strong=\"H3588\"* daughters|strong=\"H1323\"*. Sheshan|strong=\"H8348\"* had|strong=\"H1961\"* a|strong=\"H3068\"* servant|strong=\"H5650\"*, an|strong=\"H1961\"* Egyptian|strong=\"H4713\"*, whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Jarha|strong=\"H3398\"*." + }, + { + "verseNum": 35, + "text": "Sheshan|strong=\"H8348\"* gave|strong=\"H5414\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"* to|strong=\"H5414\"* Jarha|strong=\"H3398\"* his|strong=\"H5414\"* servant|strong=\"H5650\"* as|strong=\"H5414\"* wife; and|strong=\"H5650\"* she bore|strong=\"H3205\"* him|strong=\"H5414\"* Attai|strong=\"H6262\"*." + }, + { + "verseNum": 36, + "text": "Attai|strong=\"H6262\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Nathan|strong=\"H5416\"*, and|strong=\"H3205\"* Nathan|strong=\"H5416\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Zabad|strong=\"H2066\"*," + }, + { + "verseNum": 37, + "text": "and|strong=\"H3205\"* Zabad|strong=\"H2066\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Ephlal, and|strong=\"H3205\"* Ephlal became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Obed|strong=\"H5744\"*," + }, + { + "verseNum": 38, + "text": "and|strong=\"H3205\"* Obed|strong=\"H5744\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jehu|strong=\"H3058\"*, and|strong=\"H3205\"* Jehu|strong=\"H3058\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Azariah|strong=\"H5838\"*," + }, + { + "verseNum": 39, + "text": "and|strong=\"H3205\"* Azariah|strong=\"H5838\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Helez|strong=\"H2503\"*, and|strong=\"H3205\"* Helez|strong=\"H2503\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Eleasah," + }, + { + "verseNum": 40, + "text": "and|strong=\"H3205\"* Eleasah became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Sismai|strong=\"H5581\"*, and|strong=\"H3205\"* Sismai|strong=\"H5581\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Shallum|strong=\"H7967\"*," + }, + { + "verseNum": 41, + "text": "and|strong=\"H3205\"* Shallum|strong=\"H7967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jekamiah|strong=\"H3359\"*, and|strong=\"H3205\"* Jekamiah|strong=\"H3359\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Elishama." + }, + { + "verseNum": 42, + "text": "The|strong=\"H3612\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Caleb|strong=\"H3612\"* the|strong=\"H3612\"* brother of|strong=\"H1121\"* Jerahmeel|strong=\"H3396\"* were|strong=\"H1121\"* Mesha|strong=\"H4337\"* his|strong=\"H1931\"* firstborn|strong=\"H1060\"*, who|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H3612\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Ziph|strong=\"H2128\"*, and|strong=\"H1121\"* the|strong=\"H3612\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Mareshah|strong=\"H4762\"* the|strong=\"H3612\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Hebron|strong=\"H2275\"*." + }, + { + "verseNum": 43, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hebron|strong=\"H2275\"*: Korah|strong=\"H7141\"*, Tappuah|strong=\"H8599\"*, Rekem|strong=\"H7552\"*, and|strong=\"H1121\"* Shema|strong=\"H8087\"*." + }, + { + "verseNum": 44, + "text": "Shema|strong=\"H8087\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Raham|strong=\"H7357\"*, the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jorkeam|strong=\"H3421\"*; and|strong=\"H7552\"* Rekem|strong=\"H7552\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Shammai|strong=\"H8060\"*." + }, + { + "verseNum": 45, + "text": "The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shammai|strong=\"H8060\"* was|strong=\"H1121\"* Maon|strong=\"H4584\"*; and|strong=\"H1121\"* Maon|strong=\"H4584\"* was|strong=\"H1121\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Beth Zur." + }, + { + "verseNum": 46, + "text": "Ephah|strong=\"H5891\"*, Caleb|strong=\"H3612\"*’s concubine|strong=\"H6370\"*, bore|strong=\"H3205\"* Haran|strong=\"H2771\"*, Moza|strong=\"H4162\"*, and|strong=\"H6370\"* Gazez|strong=\"H1495\"*; and|strong=\"H6370\"* Haran|strong=\"H2771\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Gazez|strong=\"H1495\"*." + }, + { + "verseNum": 47, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jahdai|strong=\"H3056\"*: Regem|strong=\"H7276\"*, Jothan, Geshan|strong=\"H1529\"*, Pelet|strong=\"H6404\"*, Ephah|strong=\"H5891\"*, and|strong=\"H1121\"* Shaaph|strong=\"H8174\"*." + }, + { + "verseNum": 48, + "text": "Maacah|strong=\"H4601\"*, Caleb|strong=\"H3612\"*’s concubine|strong=\"H6370\"*, bore|strong=\"H3205\"* Sheber|strong=\"H7669\"* and|strong=\"H6370\"* Tirhanah|strong=\"H8647\"*." + }, + { + "verseNum": 49, + "text": "She bore|strong=\"H3205\"* also|strong=\"H3205\"* Shaaph|strong=\"H8174\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1323\"* Madmannah|strong=\"H4089\"*, Sheva|strong=\"H7724\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1323\"* Machbena|strong=\"H4343\"* and|strong=\"H1323\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1323\"* Gibea|strong=\"H1388\"*; and|strong=\"H1323\"* the|strong=\"H3205\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Caleb|strong=\"H3612\"* was|strong=\"H3205\"* Achsah|strong=\"H5915\"*." + }, + { + "verseNum": 50, + "text": "These were|strong=\"H1961\"* the|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Caleb|strong=\"H3612\"*, the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hur|strong=\"H2354\"*, the|strong=\"H1961\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* Ephrathah: Shobal|strong=\"H7732\"* the|strong=\"H1961\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Kiriath|strong=\"H7157\"* Jearim," + }, + { + "verseNum": 51, + "text": "Salma|strong=\"H8007\"* the|strong=\"H2780\"* father of Bethlehem|strong=\"H1035\"*, and|strong=\"H1035\"* Hareph|strong=\"H2780\"* the|strong=\"H2780\"* father of Beth Gader." + }, + { + "verseNum": 52, + "text": "Shobal|strong=\"H7732\"* the|strong=\"H1961\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Kiriath|strong=\"H7157\"* Jearim had|strong=\"H1961\"* sons|strong=\"H1121\"*: Haroeh|strong=\"H7204\"*, half of|strong=\"H1121\"* the|strong=\"H1961\"* Menuhoth." + }, + { + "verseNum": 53, + "text": "The|strong=\"H3318\"* families|strong=\"H4940\"* of|strong=\"H4940\"* Kiriath|strong=\"H7157\"* Jearim: the|strong=\"H3318\"* Ithrites|strong=\"H3505\"*, the|strong=\"H3318\"* Puthites|strong=\"H6336\"*, the|strong=\"H3318\"* Shumathites|strong=\"H8126\"*, and|strong=\"H3318\"* the|strong=\"H3318\"* Mishraites|strong=\"H4954\"*; from|strong=\"H3318\"* them|strong=\"H3318\"* came|strong=\"H3318\"* the|strong=\"H3318\"* Zorathites|strong=\"H6882\"* and|strong=\"H3318\"* the|strong=\"H3318\"* Eshtaolites." + }, + { + "verseNum": 54, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Salma|strong=\"H8007\"*: Bethlehem|strong=\"H1035\"*, the|strong=\"H1121\"* Netophathites|strong=\"H5200\"*, Atroth Beth Joab|strong=\"H5854\"*, and|strong=\"H1121\"* half of|strong=\"H1121\"* the|strong=\"H1121\"* Manahathites, the|strong=\"H1121\"* Zorites|strong=\"H6882\"*." + }, + { + "verseNum": 55, + "text": "The|strong=\"H3427\"* families|strong=\"H4940\"* of|strong=\"H1004\"* scribes|strong=\"H5608\"* who|strong=\"H3427\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Jabez|strong=\"H3258\"*: the|strong=\"H3427\"* Tirathites|strong=\"H8654\"*, the|strong=\"H3427\"* Shimeathites|strong=\"H8101\"*, and|strong=\"H1004\"* the|strong=\"H3427\"* Sucathites|strong=\"H7756\"*. These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H3427\"* Kenites|strong=\"H7017\"* who|strong=\"H3427\"* came from|strong=\"H3427\"* Hammath|strong=\"H2575\"*, the|strong=\"H3427\"* father of|strong=\"H1004\"* the|strong=\"H3427\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Rechab|strong=\"H7394\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* these|strong=\"H1732\"* were|strong=\"H1961\"* the|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"*, who|strong=\"H1121\"* were|strong=\"H1961\"* born|strong=\"H3205\"* to|strong=\"H1961\"* him|strong=\"H3205\"* in|strong=\"H1121\"* Hebron|strong=\"H2275\"*: the|strong=\"H3205\"* firstborn|strong=\"H1060\"*, Amnon, of|strong=\"H1121\"* Ahinoam the|strong=\"H3205\"* Jezreelitess|strong=\"H3159\"*; the|strong=\"H3205\"* second|strong=\"H8145\"*, Daniel|strong=\"H1840\"*, of|strong=\"H1121\"* Abigail the|strong=\"H3205\"* Carmelitess|strong=\"H3762\"*;" + }, + { + "verseNum": 2, + "text": "the|strong=\"H1121\"* third|strong=\"H7992\"*, Absalom the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maacah|strong=\"H4601\"* the|strong=\"H1121\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Talmai|strong=\"H8526\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Geshur|strong=\"H1650\"*; the|strong=\"H1121\"* fourth|strong=\"H7243\"*, Adonijah the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Haggith|strong=\"H2294\"*;" + }, + { + "verseNum": 3, + "text": "the|strong=\"H8203\"* fifth|strong=\"H2549\"*, Shephatiah|strong=\"H8203\"* of|strong=\"H8203\"* Abital; the|strong=\"H8203\"* sixth|strong=\"H8345\"*, Ithream|strong=\"H3507\"* by|strong=\"H3507\"* Eglah|strong=\"H5698\"* his|strong=\"H5698\"* wife:" + }, + { + "verseNum": 4, + "text": "six|strong=\"H8337\"* were|strong=\"H3205\"* born|strong=\"H3205\"* to|strong=\"H3389\"* him|strong=\"H3205\"* in|strong=\"H8141\"* Hebron|strong=\"H2275\"*; and|strong=\"H7970\"* he|strong=\"H8033\"* reigned|strong=\"H4427\"* there|strong=\"H8033\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* and|strong=\"H7970\"* six|strong=\"H8337\"* months|strong=\"H2320\"*. He|strong=\"H8033\"* reigned|strong=\"H4427\"* thirty-three|strong=\"H7970\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"H3389\"* these were|strong=\"H1323\"* born|strong=\"H3205\"* to|strong=\"H3389\"* him|strong=\"H3205\"* in|strong=\"H8010\"* Jerusalem|strong=\"H3389\"*: Shimea|strong=\"H8092\"*, Shobab|strong=\"H7727\"*, Nathan|strong=\"H5416\"*, and|strong=\"H3389\"* Solomon|strong=\"H8010\"*, four, by|strong=\"H3205\"* Bathshua the|strong=\"H3205\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Ammiel|strong=\"H5988\"*;" + }, + { + "verseNum": 6, + "text": "and Ibhar|strong=\"H2984\"*, Elishama, Eliphelet," + }, + { + "verseNum": 7, + "text": "Nogah|strong=\"H5052\"*, Nepheg|strong=\"H5298\"*, Japhia|strong=\"H3309\"*," + }, + { + "verseNum": 8, + "text": "Elishama, Eliada, and|strong=\"H8672\"* Eliphelet, nine|strong=\"H8672\"*." + }, + { + "verseNum": 9, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"*, in|strong=\"H1121\"* addition to|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* concubines|strong=\"H6370\"*; and|strong=\"H1121\"* Tamar|strong=\"H8559\"* was|strong=\"H1732\"* their|strong=\"H3605\"* sister." + }, + { + "verseNum": 10, + "text": "Solomon|strong=\"H8010\"*’s son|strong=\"H1121\"* was|strong=\"H1121\"* Rehoboam|strong=\"H7346\"*, Abijah his|strong=\"H8010\"* son|strong=\"H1121\"*, Asa his|strong=\"H8010\"* son|strong=\"H1121\"*, Jehoshaphat|strong=\"H3092\"* his|strong=\"H8010\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 11, + "text": "Joram|strong=\"H3141\"* his|strong=\"H3141\"* son|strong=\"H1121\"*, Ahaziah his|strong=\"H3141\"* son|strong=\"H1121\"*, Joash|strong=\"H3101\"* his|strong=\"H3141\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 12, + "text": "Amaziah his|strong=\"H3147\"* son|strong=\"H1121\"*, Azariah|strong=\"H5838\"* his|strong=\"H3147\"* son|strong=\"H1121\"*, Jotham|strong=\"H3147\"* his|strong=\"H3147\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 13, + "text": "Ahaz his|strong=\"H4519\"* son|strong=\"H1121\"*, Hezekiah|strong=\"H2396\"* his|strong=\"H4519\"* son|strong=\"H1121\"*, Manasseh|strong=\"H4519\"* his|strong=\"H4519\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 14, + "text": "Amon his|strong=\"H2977\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Josiah|strong=\"H2977\"* his|strong=\"H2977\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H6667\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*: the|strong=\"H6667\"* firstborn|strong=\"H1060\"* Johanan|strong=\"H3110\"*, the|strong=\"H6667\"* second|strong=\"H8145\"* Jehoiakim|strong=\"H3079\"*, the|strong=\"H6667\"* third|strong=\"H7992\"* Zedekiah|strong=\"H6667\"*, and|strong=\"H1121\"* the|strong=\"H6667\"* fourth|strong=\"H7243\"* Shallum|strong=\"H7967\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H6667\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"*: Jeconiah|strong=\"H3204\"* his|strong=\"H6667\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Zedekiah|strong=\"H6667\"* his|strong=\"H6667\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jeconiah|strong=\"H3204\"*, the|strong=\"H1121\"* captive: Shealtiel|strong=\"H7597\"* his|strong=\"H3204\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 18, + "text": "Malchiram|strong=\"H4443\"*, Pedaiah|strong=\"H6305\"*, Shenazzar|strong=\"H8137\"*, Jekamiah|strong=\"H3359\"*, Hoshama|strong=\"H1953\"*, and|strong=\"H1953\"* Nedabiah|strong=\"H5072\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Pedaiah|strong=\"H6305\"*: Zerubbabel|strong=\"H2216\"* and|strong=\"H1121\"* Shimei|strong=\"H8096\"*. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zerubbabel|strong=\"H2216\"*: Meshullam|strong=\"H4918\"* and|strong=\"H1121\"* Hananiah|strong=\"H2608\"*; and|strong=\"H1121\"* Shelomith|strong=\"H8019\"* was|strong=\"H1121\"* their|strong=\"H8019\"* sister;" + }, + { + "verseNum": 20, + "text": "and|strong=\"H2568\"* Hashubah|strong=\"H2807\"*, Ohel, Berechiah|strong=\"H1296\"*, Hasadiah|strong=\"H2619\"*, and|strong=\"H2568\"* Jushab Hesed, five|strong=\"H2568\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H3470\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hananiah|strong=\"H2608\"*: Pelatiah|strong=\"H6410\"* and|strong=\"H1121\"* Jeshaiah|strong=\"H3470\"*; the|strong=\"H3470\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Rephaiah|strong=\"H7509\"*, the|strong=\"H3470\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Arnan, the|strong=\"H3470\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Obadiah|strong=\"H5662\"*, the|strong=\"H3470\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shecaniah|strong=\"H7935\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shecaniah|strong=\"H7935\"*: Shemaiah|strong=\"H8098\"*. The|strong=\"H8098\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shemaiah|strong=\"H8098\"*: Hattush|strong=\"H2407\"*, Igal|strong=\"H3008\"*, Bariah|strong=\"H1282\"*, Neariah|strong=\"H5294\"*, and|strong=\"H1121\"* Shaphat|strong=\"H8202\"*, six|strong=\"H8337\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Neariah|strong=\"H5294\"*: Elioenai, Hizkiah|strong=\"H2396\"*, and|strong=\"H1121\"* Azrikam|strong=\"H5840\"*, three|strong=\"H7969\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H3110\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Elioenai: Hodaviah|strong=\"H1939\"*, Eliashib, Pelaiah|strong=\"H6411\"*, Akkub|strong=\"H6126\"*, Johanan|strong=\"H3110\"*, Delaiah|strong=\"H1806\"*, and|strong=\"H1121\"* Anani|strong=\"H6054\"*, seven|strong=\"H7651\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*: Perez|strong=\"H6557\"*, Hezron|strong=\"H2696\"*, Carmi|strong=\"H3756\"*, Hur|strong=\"H2354\"*, and|strong=\"H1121\"* Shobal|strong=\"H7732\"*." + }, + { + "verseNum": 2, + "text": "Reaiah|strong=\"H7211\"* the|strong=\"H3205\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shobal|strong=\"H7732\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Jahath|strong=\"H3189\"*; and|strong=\"H1121\"* Jahath|strong=\"H3189\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Ahumai and|strong=\"H1121\"* Lahad|strong=\"H3855\"*. These are|strong=\"H1121\"* the|strong=\"H3205\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3205\"* Zorathites|strong=\"H6882\"*." + }, + { + "verseNum": 3, + "text": "These were|strong=\"H8034\"* the|strong=\"H8034\"* sons of|strong=\"H8034\"* the|strong=\"H8034\"* father of|strong=\"H8034\"* Etam|strong=\"H5862\"*: Jezreel|strong=\"H3157\"*, Ishma|strong=\"H3457\"*, and|strong=\"H8034\"* Idbash|strong=\"H3031\"*. The|strong=\"H8034\"* name|strong=\"H8034\"* of|strong=\"H8034\"* their sister was|strong=\"H8034\"* Hazzelelponi|strong=\"H6753\"*." + }, + { + "verseNum": 4, + "text": "Penuel|strong=\"H6439\"* was|strong=\"H1121\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Gedor|strong=\"H1446\"* and|strong=\"H1121\"* Ezer|strong=\"H5829\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Hushah|strong=\"H2364\"*. These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hur|strong=\"H2354\"*, the|strong=\"H1121\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* Ephrathah, the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Bethlehem|strong=\"H1035\"*." + }, + { + "verseNum": 5, + "text": "Ashhur the|strong=\"H1961\"* father of|strong=\"H8147\"* Tekoa|strong=\"H8620\"* had|strong=\"H1961\"* two|strong=\"H8147\"* wives, Helah|strong=\"H2458\"* and|strong=\"H8147\"* Naarah|strong=\"H5292\"*." + }, + { + "verseNum": 6, + "text": "Naarah|strong=\"H5292\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* Ahuzzam, Hepher|strong=\"H2660\"*, Temeni|strong=\"H8488\"*, and|strong=\"H1121\"* Haahashtari. These were|strong=\"H1121\"* the|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Naarah|strong=\"H5292\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Helah|strong=\"H2458\"* were|strong=\"H1121\"* Zereth|strong=\"H6889\"*, Izhar|strong=\"H3328\"*, and|strong=\"H1121\"* Ethnan." + }, + { + "verseNum": 8, + "text": "Hakkoz|strong=\"H6976\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Anub|strong=\"H6036\"*, Zobebah|strong=\"H6637\"*, and|strong=\"H1121\"* the|strong=\"H3205\"* families|strong=\"H4940\"* of|strong=\"H1121\"* Aharhel the|strong=\"H3205\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Harum|strong=\"H2037\"*." + }, + { + "verseNum": 9, + "text": "Jabez|strong=\"H3258\"* was|strong=\"H8034\"* more|strong=\"H3588\"* honorable|strong=\"H3513\"* than|strong=\"H3588\"* his|strong=\"H7121\"* brothers. His|strong=\"H7121\"* mother named|strong=\"H7121\"* him|strong=\"H3205\"* Jabez|strong=\"H3258\"*,+ 4:9 “Jabez” sounds similar to the Hebrew word for “pain”.* saying, “Because|strong=\"H3588\"* I|strong=\"H3588\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* with|strong=\"H3513\"* sorrow|strong=\"H6090\"*.”" + }, + { + "verseNum": 10, + "text": "Jabez|strong=\"H3258\"* called|strong=\"H7121\"* on|strong=\"H3027\"* the|strong=\"H6213\"* God|strong=\"H3027\"*+ 4:10 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* of|strong=\"H3027\"* Israel|strong=\"H3478\"*, saying, “Oh that|strong=\"H3478\"* you|strong=\"H6213\"* would|strong=\"H3478\"* bless|strong=\"H1288\"* me|strong=\"H7121\"* indeed|strong=\"H1288\"*, and|strong=\"H3478\"* enlarge|strong=\"H7235\"* my|strong=\"H1961\"* border|strong=\"H1366\"*! May|strong=\"H1961\"* your|strong=\"H6213\"* hand|strong=\"H3027\"* be|strong=\"H1961\"* with|strong=\"H5973\"* me|strong=\"H7121\"*, and|strong=\"H3478\"* may|strong=\"H1961\"* you|strong=\"H6213\"* keep|strong=\"H6213\"* me|strong=\"H7121\"* from|strong=\"H3478\"* evil|strong=\"H7451\"*, that|strong=\"H3478\"* I|strong=\"H3027\"* may|strong=\"H1961\"* not|strong=\"H1115\"* cause|strong=\"H6213\"* pain|strong=\"H7451\"*!”" + }, + { + "verseNum": 11, + "text": "Chelub|strong=\"H3620\"* the|strong=\"H3205\"* brother of|strong=\"H3205\"* Shuhah|strong=\"H7746\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Mehir|strong=\"H4243\"*, who|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Eshton." + }, + { + "verseNum": 12, + "text": "Eshton became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Beth Rapha, Paseah|strong=\"H6454\"*, and|strong=\"H3205\"* Tehinnah|strong=\"H8468\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Ir Nahash. These are the|strong=\"H3205\"* men of|strong=\"H3205\"* Recah|strong=\"H7397\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kenaz|strong=\"H7073\"*: Othniel|strong=\"H6274\"* and|strong=\"H1121\"* Seraiah|strong=\"H8304\"*. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Othniel|strong=\"H6274\"*: Hathath|strong=\"H2867\"*.+ 4:13 Greek and Vulgate add “and Meonothai”*" + }, + { + "verseNum": 14, + "text": "Meonothai|strong=\"H4587\"* became|strong=\"H3205\"* the|strong=\"H3588\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Ophrah|strong=\"H6084\"*: and|strong=\"H3097\"* Seraiah|strong=\"H8304\"* became|strong=\"H3205\"* the|strong=\"H3588\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Joab|strong=\"H3097\"* the|strong=\"H3588\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Ge Harashim|strong=\"H2798\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H1961\"* craftsmen|strong=\"H2796\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3612\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Caleb|strong=\"H3612\"* the|strong=\"H3612\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"*: Iru|strong=\"H5900\"*, Elah, and|strong=\"H1121\"* Naam|strong=\"H5277\"*. The|strong=\"H3612\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elah: Kenaz|strong=\"H7073\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jehallelel|strong=\"H3094\"*: Ziph|strong=\"H2128\"*, Ziphah|strong=\"H2129\"*, Tiria|strong=\"H8493\"*, and|strong=\"H1121\"* Asarel." + }, + { + "verseNum": 17, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ezrah|strong=\"H5834\"*: Jether|strong=\"H3500\"*, Mered|strong=\"H4778\"*, Epher|strong=\"H6081\"*, and|strong=\"H1121\"* Jalon|strong=\"H3210\"*; and|strong=\"H1121\"* Mered|strong=\"H4778\"*’s wife bore Miriam|strong=\"H4813\"*, Shammai|strong=\"H8060\"*, and|strong=\"H1121\"* Ishbah|strong=\"H3431\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Eshtemoa." + }, + { + "verseNum": 18, + "text": "His|strong=\"H3947\"* wife the|strong=\"H3947\"* Jewess bore|strong=\"H3205\"* Jered|strong=\"H3382\"* the|strong=\"H3947\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Gedor|strong=\"H1446\"*, Heber|strong=\"H2268\"* the|strong=\"H3947\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Soco|strong=\"H7755\"*, and|strong=\"H1121\"* Jekuthiel|strong=\"H3354\"* the|strong=\"H3947\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Zanoah|strong=\"H2182\"*. These|strong=\"H3947\"* are|strong=\"H1121\"* the|strong=\"H3947\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Bithiah|strong=\"H1332\"* the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Pharaoh|strong=\"H6547\"*, whom Mered|strong=\"H4778\"* took|strong=\"H3947\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* wife of|strong=\"H1121\"* Hodiah|strong=\"H1940\"*, the|strong=\"H1121\"* sister of|strong=\"H1121\"* Naham|strong=\"H5163\"*, were|strong=\"H1121\"* the|strong=\"H1121\"* fathers of|strong=\"H1121\"* Keilah|strong=\"H7084\"* the|strong=\"H1121\"* Garmite|strong=\"H1636\"* and|strong=\"H1121\"* Eshtemoa the|strong=\"H1121\"* Maacathite|strong=\"H4602\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shimon|strong=\"H7889\"*: Amnon, Rinnah|strong=\"H7441\"*, Ben Hanan, and|strong=\"H1121\"* Tilon|strong=\"H8436\"*. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ishi|strong=\"H3469\"*: Zoheth|strong=\"H2105\"*, and|strong=\"H1121\"* Ben Zoheth|strong=\"H2105\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shelah|strong=\"H7956\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*: Er|strong=\"H6147\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Lecah|strong=\"H3922\"*, Laadah|strong=\"H3935\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Mareshah|strong=\"H4762\"*, and|strong=\"H1121\"* the|strong=\"H1121\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* house|strong=\"H1004\"* of|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* worked fine|strong=\"H5656\"* linen, of|strong=\"H1121\"* the|strong=\"H1121\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Ashbea;" + }, + { + "verseNum": 22, + "text": "and|strong=\"H1697\"* Jokim|strong=\"H3137\"*, and|strong=\"H1697\"* the|strong=\"H1697\"* men of|strong=\"H1697\"* Cozeba|strong=\"H3578\"*, and|strong=\"H1697\"* Joash|strong=\"H3101\"*, and|strong=\"H1697\"* Saraph|strong=\"H8315\"*, who had|strong=\"H1697\"* dominion|strong=\"H1166\"* in|strong=\"H1697\"* Moab|strong=\"H4124\"*, and|strong=\"H1697\"* Jashubilehem. These records|strong=\"H1697\"* are|strong=\"H1697\"* ancient|strong=\"H6267\"*." + }, + { + "verseNum": 23, + "text": "These|strong=\"H1992\"* were|strong=\"H1992\"* the|strong=\"H5973\"* potters|strong=\"H3335\"*, and|strong=\"H4428\"* the|strong=\"H5973\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Netaim|strong=\"H5196\"* and|strong=\"H4428\"* Gederah|strong=\"H1448\"*; they|strong=\"H1992\"* lived|strong=\"H3427\"* there|strong=\"H8033\"* with|strong=\"H5973\"* the|strong=\"H5973\"* king|strong=\"H4428\"* for|strong=\"H3427\"* his|strong=\"H4428\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*: Nemuel|strong=\"H5241\"*, Jamin|strong=\"H3226\"*, Jarib|strong=\"H3402\"*, Zerah|strong=\"H2226\"*, Shaul|strong=\"H7586\"*;" + }, + { + "verseNum": 25, + "text": "Shallum|strong=\"H7967\"* his|strong=\"H4927\"* son|strong=\"H1121\"*, Mibsam|strong=\"H4017\"* his|strong=\"H4927\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Mishma|strong=\"H4927\"* his|strong=\"H4927\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Mishma|strong=\"H4927\"*: Hammuel|strong=\"H2536\"* his|strong=\"H8096\"* son|strong=\"H1121\"*, Zaccur|strong=\"H2139\"* his|strong=\"H8096\"* son|strong=\"H1121\"*, Shimei|strong=\"H8096\"* his|strong=\"H8096\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 27, + "text": "Shimei|strong=\"H8096\"* had|strong=\"H3063\"* sixteen|strong=\"H8337\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* six|strong=\"H8337\"* daughters|strong=\"H1323\"*; but|strong=\"H3808\"* his|strong=\"H3605\"* brothers|strong=\"H1121\"* didn’t have|strong=\"H1121\"* many|strong=\"H7227\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* their|strong=\"H3605\"* family|strong=\"H4940\"* didn’t multiply|strong=\"H7235\"* like|strong=\"H3808\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 28, + "text": "They lived|strong=\"H3427\"* at|strong=\"H3427\"* Beersheba, Moladah|strong=\"H4137\"*, Hazarshual," + }, + { + "verseNum": 29, + "text": "at Bilhah|strong=\"H1090\"*, at Ezem|strong=\"H6107\"*, at Tolad|strong=\"H8434\"*," + }, + { + "verseNum": 30, + "text": "at Bethuel|strong=\"H1328\"*, at Hormah|strong=\"H2767\"*, at Ziklag|strong=\"H6860\"*," + }, + { + "verseNum": 31, + "text": "at|strong=\"H1732\"* Beth Marcaboth, Hazar Susim, at|strong=\"H1732\"* Beth Biri, and|strong=\"H5892\"* at|strong=\"H1732\"* Shaaraim|strong=\"H8189\"*. These|strong=\"H1732\"* were|strong=\"H1732\"* their|strong=\"H1732\"* cities|strong=\"H5892\"* until|strong=\"H5704\"* David|strong=\"H1732\"*’s reign|strong=\"H4427\"*." + }, + { + "verseNum": 32, + "text": "Their villages|strong=\"H2691\"* were|strong=\"H5892\"* Etam|strong=\"H5862\"*, Ain|strong=\"H5871\"*, Rimmon|strong=\"H7417\"*, Tochen|strong=\"H8507\"*, and|strong=\"H5892\"* Ashan|strong=\"H6228\"*, five|strong=\"H2568\"* cities|strong=\"H5892\"*;" + }, + { + "verseNum": 33, + "text": "and|strong=\"H5892\"* all|strong=\"H3605\"* their|strong=\"H3605\"* villages|strong=\"H2691\"* that|strong=\"H3605\"* were|strong=\"H5892\"* around|strong=\"H5439\"* the|strong=\"H3605\"* same|strong=\"H2063\"* cities|strong=\"H5892\"*, as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Baal|strong=\"H1168\"*. These|strong=\"H2063\"* were|strong=\"H5892\"* their|strong=\"H3605\"* settlements|strong=\"H4186\"*, and|strong=\"H5892\"* they|strong=\"H5704\"* kept their|strong=\"H3605\"* genealogy|strong=\"H3187\"*." + }, + { + "verseNum": 34, + "text": "Meshobab|strong=\"H4877\"*, Jamlech|strong=\"H3230\"*, Joshah|strong=\"H3144\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amaziah," + }, + { + "verseNum": 35, + "text": "Joel|strong=\"H3100\"*, Jehu|strong=\"H3058\"* the|strong=\"H3058\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joshibiah|strong=\"H3143\"*, the|strong=\"H3058\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Seraiah|strong=\"H8304\"*, the|strong=\"H3058\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asiel|strong=\"H6221\"*," + }, + { + "verseNum": 36, + "text": "Elioenai, Jaakobah|strong=\"H3291\"*, Jeshohaiah|strong=\"H3439\"*, Asaiah|strong=\"H6222\"*, Adiel|strong=\"H5717\"*, Jesimiel|strong=\"H3450\"*, Benaiah|strong=\"H1141\"*," + }, + { + "verseNum": 37, + "text": "and|strong=\"H1121\"* Ziza|strong=\"H2124\"* the|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shiphi|strong=\"H8230\"*, the|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Allon, the|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jedaiah|strong=\"H3042\"*, the|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimri|strong=\"H8113\"*, the|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shemaiah|strong=\"H8098\"*—" + }, + { + "verseNum": 38, + "text": "these|strong=\"H1004\"* mentioned by|strong=\"H8034\"* name|strong=\"H8034\"* were|strong=\"H4940\"* princes|strong=\"H5387\"* in|strong=\"H1004\"* their|strong=\"H6555\"* families|strong=\"H4940\"*. Their|strong=\"H6555\"* fathers’ houses|strong=\"H1004\"* increased|strong=\"H6555\"* greatly|strong=\"H7230\"*." + }, + { + "verseNum": 39, + "text": "They|strong=\"H5704\"* went|strong=\"H3212\"* to|strong=\"H5704\"* the|strong=\"H5704\"* entrance|strong=\"H3996\"* of|strong=\"H1516\"* Gedor|strong=\"H1446\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* east|strong=\"H4217\"* side|strong=\"H4217\"* of|strong=\"H1516\"* the|strong=\"H5704\"* valley|strong=\"H1516\"*, to|strong=\"H5704\"* seek|strong=\"H1245\"* pasture|strong=\"H4829\"* for|strong=\"H5704\"* their|strong=\"H1245\"* flocks|strong=\"H6629\"*." + }, + { + "verseNum": 40, + "text": "They|strong=\"H3588\"* found|strong=\"H4672\"* rich|strong=\"H8082\"*, good|strong=\"H2896\"* pasture|strong=\"H4829\"*, and|strong=\"H3027\"* the|strong=\"H6440\"* land|strong=\"H6440\"* was|strong=\"H3027\"* wide|strong=\"H7342\"*, and|strong=\"H3027\"* quiet|strong=\"H8252\"*, and|strong=\"H3027\"* peaceful|strong=\"H7961\"*, for|strong=\"H3588\"* those|strong=\"H4480\"* who|strong=\"H3427\"* lived|strong=\"H3427\"* there|strong=\"H8033\"* before|strong=\"H6440\"* were|strong=\"H3027\"* descended from|strong=\"H4480\"* Ham|strong=\"H2526\"*." + }, + { + "verseNum": 41, + "text": "These|strong=\"H2088\"* written|strong=\"H3789\"* by|strong=\"H3117\"* name|strong=\"H8034\"* came|strong=\"H4672\"* in|strong=\"H3427\"* the|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* struck|strong=\"H5221\"* their|strong=\"H3588\"* tents and|strong=\"H3063\"* the|strong=\"H3588\"* Meunim|strong=\"H4586\"* who|strong=\"H3427\"* were|strong=\"H3117\"* found|strong=\"H4672\"* there|strong=\"H8033\"*; and|strong=\"H3063\"* they|strong=\"H3588\"* destroyed|strong=\"H2763\"* them|strong=\"H5221\"* utterly|strong=\"H2763\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, and|strong=\"H3063\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3588\"* place|strong=\"H8478\"*, because|strong=\"H3588\"* there|strong=\"H8033\"* was|strong=\"H8034\"* pasture|strong=\"H4829\"* there|strong=\"H8033\"* for|strong=\"H3588\"* their|strong=\"H3588\"* flocks|strong=\"H6629\"*." + }, + { + "verseNum": 42, + "text": "Some|strong=\"H4480\"* of|strong=\"H1121\"* them|strong=\"H1992\"*, even of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*, five|strong=\"H2568\"* hundred|strong=\"H3967\"* men|strong=\"H1121\"*, went|strong=\"H1980\"* to|strong=\"H1980\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"*, having for|strong=\"H1121\"* their|strong=\"H1992\"* captains|strong=\"H7218\"* Pelatiah|strong=\"H6410\"*, Neariah|strong=\"H5294\"*, Rephaiah|strong=\"H7509\"*, and|strong=\"H3967\"* Uzziel|strong=\"H5816\"*, the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ishi|strong=\"H3469\"*." + }, + { + "verseNum": 43, + "text": "They|strong=\"H3117\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* remnant|strong=\"H7611\"* of|strong=\"H3117\"* the|strong=\"H5221\"* Amalekites|strong=\"H6002\"* who|strong=\"H3427\"* escaped|strong=\"H6413\"*, and|strong=\"H3117\"* have|strong=\"H3117\"* lived|strong=\"H3427\"* there|strong=\"H8033\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* the|strong=\"H3588\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* (for|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3478\"* the|strong=\"H3588\"* firstborn|strong=\"H1060\"*, but|strong=\"H3588\"* because|strong=\"H3588\"* he|strong=\"H1931\"* defiled|strong=\"H2490\"* his|strong=\"H5414\"* father|strong=\"H1121\"*’s couch|strong=\"H3326\"*, his|strong=\"H5414\"* birthright|strong=\"H1062\"* was|strong=\"H3478\"* given|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* the|strong=\"H3588\"* genealogy|strong=\"H3187\"* is|strong=\"H1931\"* not|strong=\"H3808\"* to|strong=\"H3478\"* be|strong=\"H3808\"* listed|strong=\"H3187\"* according to|strong=\"H3478\"* the|strong=\"H3588\"* birthright|strong=\"H1062\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* Judah|strong=\"H3063\"* prevailed|strong=\"H1396\"* above|strong=\"H4480\"* his|strong=\"H3588\"* brothers, and|strong=\"H3063\"* from|strong=\"H4480\"* him|strong=\"H4480\"* came|strong=\"H3063\"* the|strong=\"H3588\"* prince|strong=\"H5057\"*; but|strong=\"H3588\"* the|strong=\"H3588\"* birthright|strong=\"H1062\"* was|strong=\"H3063\"* Joseph|strong=\"H3130\"*’s)—" + }, + { + "verseNum": 3, + "text": "the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* the|strong=\"H1121\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*: Hanoch|strong=\"H2585\"*, Pallu|strong=\"H6396\"*, Hezron|strong=\"H2696\"*, and|strong=\"H1121\"* Carmi|strong=\"H3756\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H8098\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Joel|strong=\"H3100\"*: Shemaiah|strong=\"H8098\"* his|strong=\"H8096\"* son|strong=\"H1121\"*, Gog|strong=\"H1463\"* his|strong=\"H8096\"* son|strong=\"H1121\"*, Shimei|strong=\"H8096\"* his|strong=\"H8096\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 5, + "text": "Micah|strong=\"H4318\"* his|strong=\"H4318\"* son|strong=\"H1121\"*, Reaiah|strong=\"H7211\"* his|strong=\"H4318\"* son|strong=\"H1121\"*, Baal|strong=\"H1168\"* his|strong=\"H4318\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 6, + "text": "and|strong=\"H1121\"* Beerah|strong=\"H5387\"* his|strong=\"H1540\"* son|strong=\"H1121\"*, whom Tilgath Pilneser king|strong=\"H4428\"* of|strong=\"H1121\"* Assyria carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"*. He|strong=\"H1931\"* was|strong=\"H1931\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1540\"* Reubenites|strong=\"H7206\"*." + }, + { + "verseNum": 7, + "text": "His|strong=\"H2148\"* brothers by|strong=\"H3187\"* their families|strong=\"H4940\"*, when the|strong=\"H2148\"* genealogy|strong=\"H3187\"* of|strong=\"H7218\"* their generations|strong=\"H8435\"* was|strong=\"H7218\"* listed|strong=\"H3187\"*: the|strong=\"H2148\"* chief|strong=\"H7218\"*, Jeiel|strong=\"H3273\"*, and|strong=\"H7218\"* Zechariah|strong=\"H2148\"*," + }, + { + "verseNum": 8, + "text": "and|strong=\"H1121\"* Bela|strong=\"H1106\"* the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azaz|strong=\"H5811\"*, the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shema|strong=\"H8087\"*, the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joel|strong=\"H3100\"*, who|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Aroer|strong=\"H6177\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* Nebo|strong=\"H5015\"* and|strong=\"H1121\"* Baal Meon;" + }, + { + "verseNum": 9, + "text": "and|strong=\"H3427\"* he|strong=\"H3588\"* lived|strong=\"H3427\"* eastward|strong=\"H4217\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3588\"* entrance of|strong=\"H3427\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"* from|strong=\"H4480\"* the|strong=\"H3588\"* river|strong=\"H5104\"* Euphrates|strong=\"H6578\"*, because|strong=\"H3588\"* their|strong=\"H3588\"* livestock|strong=\"H4735\"* were|strong=\"H3427\"* multiplied|strong=\"H7235\"* in|strong=\"H3427\"* the|strong=\"H3588\"* land of|strong=\"H3427\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"H3427\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Saul|strong=\"H7586\"*, they|strong=\"H3117\"* made|strong=\"H6213\"* war|strong=\"H4421\"* with|strong=\"H5973\"* the|strong=\"H3605\"* Hagrites|strong=\"H1905\"*, who|strong=\"H3605\"* fell|strong=\"H5307\"* by|strong=\"H3027\"* their|strong=\"H3605\"* hand|strong=\"H3027\"*; and|strong=\"H3117\"* they|strong=\"H3117\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3605\"* tents throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"* east|strong=\"H4217\"* of|strong=\"H3117\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5704\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* lived|strong=\"H3427\"* beside|strong=\"H5704\"* them|strong=\"H5048\"* in|strong=\"H3427\"* the|strong=\"H5704\"* land of|strong=\"H1121\"* Bashan|strong=\"H1316\"* to|strong=\"H5704\"* Salecah|strong=\"H5548\"*:" + }, + { + "verseNum": 12, + "text": "Joel|strong=\"H3100\"* the|strong=\"H3100\"* chief|strong=\"H7218\"*, Shapham|strong=\"H8223\"* the|strong=\"H3100\"* second|strong=\"H4932\"*, Janai|strong=\"H3285\"*, and|strong=\"H7218\"* Shaphat|strong=\"H8202\"* in|strong=\"H7218\"* Bashan|strong=\"H1316\"*." + }, + { + "verseNum": 13, + "text": "Their brothers of|strong=\"H1004\"* their fathers’ houses|strong=\"H1004\"*: Michael|strong=\"H4317\"*, Meshullam|strong=\"H4918\"*, Sheba|strong=\"H7652\"*, Jorai|strong=\"H3140\"*, Jacan|strong=\"H3275\"*, Zia|strong=\"H2127\"*, and|strong=\"H1004\"* Eber|strong=\"H5677\"*, seven|strong=\"H7651\"*." + }, + { + "verseNum": 14, + "text": "These were|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Abihail, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Huri|strong=\"H2359\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jaroah|strong=\"H3386\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Michael|strong=\"H4317\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeshishai|strong=\"H3454\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jahdo|strong=\"H3163\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Buz;" + }, + { + "verseNum": 15, + "text": "Ahi the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abdiel|strong=\"H5661\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Guni|strong=\"H1476\"*, chief|strong=\"H7218\"* of|strong=\"H1121\"* their fathers’ houses|strong=\"H1004\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"H5921\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Gilead|strong=\"H1568\"* in|strong=\"H3427\"* Bashan|strong=\"H1316\"* and|strong=\"H4054\"* in|strong=\"H3427\"* its|strong=\"H3605\"* towns|strong=\"H1323\"*, and|strong=\"H4054\"* in|strong=\"H3427\"* all|strong=\"H3605\"* the|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* of|strong=\"H1323\"* Sharon|strong=\"H8289\"* as|strong=\"H3427\"* far|strong=\"H5921\"* as|strong=\"H3427\"* their|strong=\"H3605\"* borders|strong=\"H8444\"*." + }, + { + "verseNum": 17, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H3478\"* listed|strong=\"H3187\"* by|strong=\"H3117\"* genealogies|strong=\"H3187\"* in|strong=\"H3478\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Jotham|strong=\"H3147\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* in|strong=\"H3478\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Jeroboam|strong=\"H3379\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5375\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, the|strong=\"H5375\"* Gadites|strong=\"H1425\"*, and|strong=\"H3967\"* the|strong=\"H5375\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, of|strong=\"H1121\"* valiant|strong=\"H2428\"* men|strong=\"H1121\"*, men|strong=\"H1121\"* able|strong=\"H2428\"* to|strong=\"H3318\"* bear|strong=\"H5375\"* buckler|strong=\"H4043\"* and|strong=\"H3967\"* sword|strong=\"H2719\"*, able|strong=\"H2428\"* to|strong=\"H3318\"* shoot|strong=\"H1869\"* with|strong=\"H3318\"* bow|strong=\"H7198\"*, and|strong=\"H3967\"* skillful|strong=\"H3925\"* in|strong=\"H4421\"* war|strong=\"H4421\"*, were|strong=\"H1121\"* forty-four thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* sixty|strong=\"H8346\"* that|strong=\"H4480\"* were|strong=\"H1121\"* able|strong=\"H2428\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"H6213\"* made|strong=\"H6213\"* war|strong=\"H4421\"* with|strong=\"H5973\"* the|strong=\"H6213\"* Hagrites|strong=\"H1905\"*, with|strong=\"H5973\"* Jetur|strong=\"H3195\"*, and|strong=\"H6213\"* Naphish|strong=\"H5305\"*, and|strong=\"H6213\"* Nodab|strong=\"H5114\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H3588\"* were|strong=\"H3027\"* helped|strong=\"H5826\"* against|strong=\"H5921\"* them|strong=\"H5414\"*, and|strong=\"H3027\"* the|strong=\"H3605\"* Hagrites|strong=\"H1905\"* were|strong=\"H3027\"* delivered|strong=\"H5414\"* into|strong=\"H5921\"* their|strong=\"H3605\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3027\"* with|strong=\"H5973\"* them|strong=\"H5414\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* cried|strong=\"H2199\"* to|strong=\"H5921\"* God|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H3605\"* battle|strong=\"H4421\"*, and|strong=\"H3027\"* he|strong=\"H3588\"* answered|strong=\"H6279\"* them|strong=\"H5414\"* because|strong=\"H3588\"* they|strong=\"H3588\"* put|strong=\"H5414\"* their|strong=\"H3605\"* trust in|strong=\"H5921\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"H5315\"* took|strong=\"H7617\"* away|strong=\"H7617\"* their|strong=\"H7617\"* livestock|strong=\"H4735\"*: of|strong=\"H5315\"* their|strong=\"H7617\"* camels|strong=\"H1581\"* fifty|strong=\"H2572\"* thousand, and|strong=\"H3967\"* of|strong=\"H5315\"* sheep|strong=\"H6629\"* two|strong=\"H2543\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* thousand, and|strong=\"H3967\"* of|strong=\"H5315\"* donkeys|strong=\"H2543\"* two|strong=\"H2543\"* thousand, and|strong=\"H3967\"* of|strong=\"H5315\"* men|strong=\"H5315\"* one|strong=\"H5315\"* hundred|strong=\"H3967\"* thousand." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* many|strong=\"H7227\"* fell|strong=\"H5307\"* slain|strong=\"H2491\"*, because|strong=\"H3588\"* the|strong=\"H3588\"* war|strong=\"H4421\"* was|strong=\"H4421\"* of|strong=\"H3427\"* God. They|strong=\"H3588\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3588\"* place|strong=\"H8478\"* until|strong=\"H5704\"* the|strong=\"H3588\"* captivity|strong=\"H1473\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H5704\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5704\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5704\"* land. They|strong=\"H1992\"* increased|strong=\"H7235\"* from|strong=\"H1121\"* Bashan|strong=\"H1316\"* to|strong=\"H5704\"* Baal Hermon|strong=\"H2768\"*, Senir|strong=\"H8149\"*, and|strong=\"H1121\"* Mount|strong=\"H2022\"* Hermon|strong=\"H2768\"*." + }, + { + "verseNum": 24, + "text": "These|strong=\"H1004\"* were|strong=\"H2428\"* the|strong=\"H3414\"* heads|strong=\"H7218\"* of|strong=\"H1004\"* their fathers’ houses|strong=\"H1004\"*: Epher|strong=\"H6081\"*, Ishi|strong=\"H3469\"*, Eliel, Azriel|strong=\"H5837\"*, Jeremiah|strong=\"H3414\"*, Hodaviah|strong=\"H1938\"*, and|strong=\"H1004\"* Jahdiel|strong=\"H3164\"*—mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1004\"* valor|strong=\"H2428\"*, famous|strong=\"H8034\"* men|strong=\"H1368\"*, heads|strong=\"H7218\"* of|strong=\"H1004\"* their fathers’ houses|strong=\"H1004\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"H5971\"* trespassed|strong=\"H4603\"* against|strong=\"H6440\"* the|strong=\"H6440\"* God of|strong=\"H6440\"* their|strong=\"H6440\"* fathers, and|strong=\"H5971\"* played|strong=\"H2181\"* the|strong=\"H6440\"* prostitute|strong=\"H2181\"* after the|strong=\"H6440\"* gods of|strong=\"H6440\"* the|strong=\"H6440\"* peoples|strong=\"H5971\"* of|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H6440\"* whom|strong=\"H6440\"* God destroyed|strong=\"H8045\"* before|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 26, + "text": "So|strong=\"H2088\"* the|strong=\"H3117\"* God of|strong=\"H4428\"* Israel|strong=\"H3478\"* stirred|strong=\"H5782\"* up|strong=\"H5782\"* the|strong=\"H3117\"* spirit|strong=\"H7307\"* of|strong=\"H4428\"* Pul|strong=\"H6322\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, and|strong=\"H3478\"* the|strong=\"H3117\"* spirit|strong=\"H7307\"* of|strong=\"H4428\"* Tilgath Pilneser king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, and|strong=\"H3478\"* he|strong=\"H3117\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* the|strong=\"H3117\"* Reubenites|strong=\"H7206\"*, the|strong=\"H3117\"* Gadites|strong=\"H1425\"*, and|strong=\"H3478\"* the|strong=\"H3117\"* half-tribe|strong=\"H2677\"* of|strong=\"H4428\"* Manasseh|strong=\"H4519\"*, and|strong=\"H3478\"* brought|strong=\"H3478\"* them|strong=\"H1540\"* to|strong=\"H5704\"* Halah|strong=\"H2477\"*, Habor|strong=\"H2249\"*, Hara|strong=\"H2024\"*, and|strong=\"H3478\"* to|strong=\"H5704\"* the|strong=\"H3117\"* river|strong=\"H5104\"* of|strong=\"H4428\"* Gozan|strong=\"H1470\"*, to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*: Gershon, Kohath|strong=\"H6955\"*, and|strong=\"H1121\"* Merari|strong=\"H4847\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H8034\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath: Amram, Izhar, Hebron, and|strong=\"H1121\"* Uzziel." + }, + { + "verseNum": 3, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Amram|strong=\"H6019\"*: Aaron, Moses, and|strong=\"H1121\"* Miriam. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron: Nadab, Abihu, Eleazar, and|strong=\"H1121\"* Ithamar." + }, + { + "verseNum": 4, + "text": "Eleazar became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Phinehas, Phinehas became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Abishua," + }, + { + "verseNum": 5, + "text": "Abishua became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Bukki. Bukki became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Uzzi." + }, + { + "verseNum": 6, + "text": "Uzzi became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Zerahiah. Zerahiah became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Meraioth." + }, + { + "verseNum": 7, + "text": "Meraioth became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Amariah. Amariah became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub." + }, + { + "verseNum": 8, + "text": "Ahitub became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Zadok. Zadok became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Ahimaaz." + }, + { + "verseNum": 9, + "text": "Ahimaaz became|strong=\"H7586\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Azariah. Azariah became|strong=\"H7586\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Johanan." + }, + { + "verseNum": 10, + "text": "Johanan became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Azariah, who|strong=\"H1121\"* executed the|strong=\"H1121\"* priest’s office in|strong=\"H1121\"* the|strong=\"H1121\"* house that|strong=\"H1121\"* Solomon built in|strong=\"H1121\"* Jerusalem." + }, + { + "verseNum": 11, + "text": "Azariah became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Amariah. Amariah became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub." + }, + { + "verseNum": 12, + "text": "Ahitub became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Zadok. Zadok became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Shallum." + }, + { + "verseNum": 13, + "text": "Shallum became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah. Hilkiah became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Azariah." + }, + { + "verseNum": 14, + "text": "Azariah became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Seraiah. Seraiah became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Jehozadak." + }, + { + "verseNum": 15, + "text": "Jehozadak went|strong=\"H1121\"* into captivity when|strong=\"H1121\"* Yahweh|strong=\"H3068\"* carried Judah and|strong=\"H1121\"* Jerusalem away by|strong=\"H1121\"* the|strong=\"H1121\"* hand of|strong=\"H1121\"* Nebuchadnezzar." + }, + { + "verseNum": 16, + "text": "The|strong=\"H5921\"* sons of|strong=\"H1004\"* Levi: Gershom, Kohath, and|strong=\"H3068\"* Merari." + }, + { + "verseNum": 17, + "text": "These|strong=\"H6440\"* are|strong=\"H3068\"* the|strong=\"H6440\"* names of|strong=\"H1004\"* the|strong=\"H6440\"* sons of|strong=\"H1004\"* Gershom: Libni and|strong=\"H3068\"* Shimei." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5975\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath were|strong=\"H1121\"* Amram, Izhar, Hebron, and|strong=\"H1121\"* Uzziel." + }, + { + "verseNum": 19, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari: Mahli and|strong=\"H1121\"* Mushi. These are|strong=\"H1121\"* the|strong=\"H1121\"* families|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Levites|strong=\"H1121\"* according to|strong=\"H1121\"* their fathers’ households." + }, + { + "verseNum": 20, + "text": "Of|strong=\"H1121\"* Gershom: Libni his|strong=\"H6689\"* son|strong=\"H1121\"*, Jahath his|strong=\"H6689\"* son|strong=\"H1121\"*, Zimmah his|strong=\"H6689\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 21, + "text": "Joah his|strong=\"H3100\"* son|strong=\"H1121\"*, Iddo his|strong=\"H3100\"* son|strong=\"H1121\"*, Zerah his|strong=\"H3100\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Jeatherai his|strong=\"H3100\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath: Amminadab his|strong=\"H8480\"* son|strong=\"H1121\"*, Korah|strong=\"H7141\"* his|strong=\"H8480\"* son|strong=\"H1121\"*, Assir his|strong=\"H8480\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 23, + "text": "Elkanah his|strong=\"H3478\"* son|strong=\"H1121\"*, Ebiasaph his|strong=\"H3478\"* son|strong=\"H1121\"*, Assir his|strong=\"H3478\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 24, + "text": "Tahath his|strong=\"H5921\"* son|strong=\"H1121\"*, Uriel his|strong=\"H5921\"* son|strong=\"H1121\"*, Uzziah his|strong=\"H5921\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Shaul his|strong=\"H5921\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Elkanah: Amasai and|strong=\"H1121\"* Ahimoth." + }, + { + "verseNum": 26, + "text": "As|strong=\"H1121\"* for|strong=\"H1121\"* Elkanah, the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Elkanah: Zophai his|strong=\"H2226\"* son|strong=\"H1121\"*, Nahath his|strong=\"H2226\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 27, + "text": "Eliab his|strong=\"H8096\"* son|strong=\"H1121\"*, Jeroham his|strong=\"H8096\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Elkanah his|strong=\"H8096\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Samuel: the|strong=\"H1121\"* firstborn|strong=\"H1121\"*, Joel, and|strong=\"H1121\"* the|strong=\"H1121\"* second, Abijah." + }, + { + "verseNum": 29, + "text": "The|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*: Mahli, Libni his|strong=\"H5921\"* son|strong=\"H1121\"*, Shimei his|strong=\"H5921\"* son|strong=\"H1121\"*, Uzzah his|strong=\"H5921\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 30, + "text": "Shimea his|strong=\"H1121\"* son|strong=\"H1121\"*, Haggiah his|strong=\"H1121\"* son|strong=\"H1121\"*, Asaiah his|strong=\"H1121\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 31, + "text": "These are|strong=\"H1121\"* they whom David set over the|strong=\"H1121\"* service of|strong=\"H1121\"* song in|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house after the|strong=\"H1121\"* ark came to|strong=\"H1121\"* rest there." + }, + { + "verseNum": 32, + "text": "They ministered with|strong=\"H1121\"* song before the|strong=\"H1121\"* tabernacle of|strong=\"H1121\"* the|strong=\"H1121\"* Tent of|strong=\"H1121\"* Meeting until Solomon had|strong=\"H1121\"* built Yahweh|strong=\"H3068\"*’s house in|strong=\"H1121\"* Jerusalem. They performed the|strong=\"H1121\"* duties of|strong=\"H1121\"* their|strong=\"H4847\"* office according to|strong=\"H1121\"* their|strong=\"H4847\"* order." + }, + { + "verseNum": 33, + "text": "These|strong=\"H3605\"* are|strong=\"H1004\"* those|strong=\"H3605\"* who|strong=\"H3605\"* served, and|strong=\"H1004\"* their|strong=\"H3605\"* sons. Of|strong=\"H1004\"* the|strong=\"H3605\"* sons of|strong=\"H1004\"* the|strong=\"H3605\"* Kohathites: Heman the|strong=\"H3605\"* singer, the|strong=\"H3605\"* son of|strong=\"H1004\"* Joel, the|strong=\"H3605\"* son of|strong=\"H1004\"* Samuel," + }, + { + "verseNum": 34, + "text": "the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elkanah, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeroham, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eliel, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Toah," + }, + { + "verseNum": 35, + "text": "the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zuph, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elkanah, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mahath, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amasai," + }, + { + "verseNum": 36, + "text": "the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elkanah, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joel, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azariah, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zephaniah," + }, + { + "verseNum": 37, + "text": "the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Tahath, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Assir, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ebiasaph, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Korah," + }, + { + "verseNum": 38, + "text": "the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Izhar, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kohath, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Levi, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Israel." + }, + { + "verseNum": 39, + "text": "His|strong=\"H1961\"* brother Asaph, who|strong=\"H1121\"* stood on|strong=\"H1961\"* his|strong=\"H1961\"* right hand, even|strong=\"H3588\"* Asaph the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Berechiah, the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimea," + }, + { + "verseNum": 40, + "text": "the|strong=\"H5414\"* son of|strong=\"H5439\"* Michael, the|strong=\"H5414\"* son of|strong=\"H5439\"* Baaseiah, the|strong=\"H5414\"* son of|strong=\"H5439\"* Malchijah," + }, + { + "verseNum": 41, + "text": "the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ethni, the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zerah, the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Adaiah," + }, + { + "verseNum": 42, + "text": "the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ethan, the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zimmah, the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimei," + }, + { + "verseNum": 43, + "text": "the son of|strong=\"H4054\"* Jahath, the son of|strong=\"H4054\"* Gershom, the son of|strong=\"H4054\"* Levi." + }, + { + "verseNum": 44, + "text": "On the left hand their brothers the sons of|strong=\"H4054\"* Merari: Ethan the son of|strong=\"H4054\"* Kishi, the son of|strong=\"H4054\"* Abdi, the son of|strong=\"H4054\"* Malluch," + }, + { + "verseNum": 45, + "text": "the|strong=\"H3605\"* son of|strong=\"H4294\"* Hashabiah, the|strong=\"H3605\"* son of|strong=\"H4294\"* Amaziah, the|strong=\"H3605\"* son of|strong=\"H4294\"* Hilkiah," + }, + { + "verseNum": 46, + "text": "the|strong=\"H2677\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amzi, the|strong=\"H2677\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bani, the|strong=\"H2677\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shemer," + }, + { + "verseNum": 47, + "text": "the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mahli, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mushi, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Merari, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Levi." + }, + { + "verseNum": 48, + "text": "Their|strong=\"H8147\"* brothers|strong=\"H1121\"* the|strong=\"H1121\"* Levites|strong=\"H1121\"* were|strong=\"H1121\"* appointed|strong=\"H1121\"* for|strong=\"H1121\"* all the|strong=\"H1121\"* service of|strong=\"H1121\"* the|strong=\"H1121\"* tabernacle of|strong=\"H1121\"* God’s house." + }, + { + "verseNum": 49, + "text": "But|strong=\"H3881\"* Aaron and|strong=\"H1121\"* his|strong=\"H5414\"* sons|strong=\"H1121\"* offered|strong=\"H5414\"* on|strong=\"H5892\"* the|strong=\"H5414\"* altar of|strong=\"H1121\"* burnt offering, and|strong=\"H1121\"* on|strong=\"H5892\"* the|strong=\"H5414\"* altar of|strong=\"H1121\"* incense, for|strong=\"H1121\"* all|strong=\"H5414\"* the|strong=\"H5414\"* work|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H5414\"* most holy place|strong=\"H5414\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* make|strong=\"H5414\"* atonement for|strong=\"H1121\"* Israel|strong=\"H3478\"*, according to|strong=\"H3478\"* all|strong=\"H5414\"* that|strong=\"H3478\"* Moses|strong=\"H5414\"* the|strong=\"H5414\"* servant of|strong=\"H1121\"* God|strong=\"H5414\"* had|strong=\"H3478\"* commanded." + }, + { + "verseNum": 50, + "text": "These|strong=\"H7121\"* are|strong=\"H1121\"* the|strong=\"H5414\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron: Eleazar his|strong=\"H5414\"* son|strong=\"H1121\"*, Phinehas his|strong=\"H5414\"* son|strong=\"H1121\"*, Abishua his|strong=\"H5414\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 51, + "text": "Bukki his|strong=\"H1961\"* son|strong=\"H1121\"*, Uzzi his|strong=\"H1961\"* son|strong=\"H1121\"*, Zerahiah his|strong=\"H1961\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 52, + "text": "Meraioth his|strong=\"H5414\"* son, Amariah his|strong=\"H5414\"* son, Ahitub his|strong=\"H5414\"* son," + }, + { + "verseNum": 53, + "text": "Zadok his son, and|strong=\"H4054\"* Ahimaaz his son." + }, + { + "verseNum": 54, + "text": "Now these are their dwelling places according to their encampments in|strong=\"H4054\"* their borders: to the sons of|strong=\"H4054\"* Aaron, of|strong=\"H4054\"* the families of|strong=\"H4054\"* the Kohathites (for theirs was the first lot)," + }, + { + "verseNum": 55, + "text": "to|strong=\"H1121\"* them|strong=\"H1121\"* they gave Hebron in|strong=\"H1121\"* the|strong=\"H1121\"* land|strong=\"H4940\"* of|strong=\"H1121\"* Judah, and|strong=\"H1121\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"* around it|strong=\"H1121\"*;" + }, + { + "verseNum": 56, + "text": "but the|strong=\"H2677\"* fields of|strong=\"H1121\"* the|strong=\"H2677\"* city and|strong=\"H1121\"* its|strong=\"H2677\"* villages, they gave to|strong=\"H1121\"* Caleb the|strong=\"H2677\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh." + }, + { + "verseNum": 57, + "text": "To|strong=\"H4294\"* the|strong=\"H3485\"* sons of|strong=\"H4294\"* Aaron they gave the|strong=\"H3485\"* cities of|strong=\"H4294\"* refuge, Hebron, Libnah also with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Jattir, Eshtemoa with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 58, + "text": "Hilen with its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Debir with its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 59, + "text": "Ashan with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, and|strong=\"H4054\"* Beth Shemesh with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*;" + }, + { + "verseNum": 60, + "text": "and|strong=\"H4054\"* out|strong=\"H4054\"* of|strong=\"H4054\"* the tribe of|strong=\"H4054\"* Benjamin, Geba with its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Allemeth with its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, and|strong=\"H4054\"* Anathoth with its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*. All their cities throughout their families were thirteen cities." + }, + { + "verseNum": 61, + "text": "To|strong=\"H4294\"* the|strong=\"H4294\"* rest of|strong=\"H4294\"* the|strong=\"H4294\"* sons of|strong=\"H4294\"* Kohath were|strong=\"H4294\"* given by lot, out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H4294\"* family of|strong=\"H4294\"* the|strong=\"H4294\"* tribe|strong=\"H4294\"*, out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H4294\"* half-tribe, the|strong=\"H4294\"* half of|strong=\"H4294\"* Manasseh, ten cities." + }, + { + "verseNum": 62, + "text": "To|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershom, according to|strong=\"H1121\"* their|strong=\"H4847\"* families|strong=\"H1121\"*, out|strong=\"H4054\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Issachar, and|strong=\"H1121\"* out|strong=\"H4054\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Asher, and|strong=\"H1121\"* out|strong=\"H4054\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Naphtali, and|strong=\"H1121\"* out|strong=\"H4054\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Manasseh in|strong=\"H1121\"* Bashan, thirteen cities." + }, + { + "verseNum": 63, + "text": "To|strong=\"H3383\"* the|strong=\"H5676\"* sons of|strong=\"H4294\"* Merari were|strong=\"H3383\"* given by|strong=\"H3383\"* lot, according to|strong=\"H3383\"* their families, out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H5676\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Reuben|strong=\"H7205\"*, and|strong=\"H4054\"* out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H5676\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Gad, and|strong=\"H4054\"* out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H5676\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Zebulun, twelve cities." + }, + { + "verseNum": 64, + "text": "The children of|strong=\"H4054\"* Israel gave to|strong=\"H6932\"* the Levites the cities with their pasture|strong=\"H4054\"* lands|strong=\"H4054\"*." + }, + { + "verseNum": 65, + "text": "They gave by lot out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H1410\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* the|strong=\"H1410\"* children of|strong=\"H4294\"* Judah, and|strong=\"H4054\"* out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H1410\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* the|strong=\"H1410\"* children of|strong=\"H4294\"* Simeon, and|strong=\"H4054\"* out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H1410\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* the|strong=\"H1410\"* children of|strong=\"H4294\"* Benjamin, these cities which are|strong=\"H4294\"* mentioned by name." + }, + { + "verseNum": 66, + "text": "Some of|strong=\"H3270\"* the|strong=\"H3270\"* families of|strong=\"H3270\"* the|strong=\"H3270\"* sons of|strong=\"H3270\"* Kohath had cities of|strong=\"H3270\"* their borders out|strong=\"H4054\"* of|strong=\"H3270\"* the|strong=\"H3270\"* tribe of|strong=\"H3270\"* Ephraim." + }, + { + "verseNum": 67, + "text": "They gave to them the cities of refuge, Shechem in the hill country of Ephraim with its pasture lands and Gezer with its pasture lands," + }, + { + "verseNum": 68, + "text": "Jokmeam with its pasture lands, Beth Horon with its pasture lands," + }, + { + "verseNum": 69, + "text": "Aijalon with its pasture lands, Gath Rimmon with its pasture lands;" + }, + { + "verseNum": 70, + "text": "and out of the half-tribe of Manasseh, Aner with its pasture lands, and Bileam with its pasture lands, for the rest of the family of the sons of Kohath." + }, + { + "verseNum": 71, + "text": "To the sons of Gershom were given, out of the family of the half-tribe of Manasseh, Golan in Bashan with its pasture lands, and Ashtaroth with its pasture lands;" + }, + { + "verseNum": 72, + "text": "and out of the tribe of Issachar, Kedesh with its pasture lands, Daberath with its pasture lands," + }, + { + "verseNum": 73, + "text": "Ramoth with its pasture lands, and Anem with its pasture lands;" + }, + { + "verseNum": 74, + "text": "and out of the tribe of Asher, Mashal with its pasture lands, Abdon with its pasture lands," + }, + { + "verseNum": 75, + "text": "Hukok with its pasture lands, and Rehob with its pasture lands;" + }, + { + "verseNum": 76, + "text": "and out of the tribe of Naphtali, Kedesh in Galilee with its pasture lands, Hammon with its pasture lands, and Kiriathaim with its pasture lands." + }, + { + "verseNum": 77, + "text": "To the rest of the Levites, the sons of Merari, were given, out of the tribe of Zebulun, Rimmono with its pasture lands, and Tabor with its pasture lands;" + }, + { + "verseNum": 78, + "text": "and beyond the Jordan at Jericho, on the east side of the Jordan, were given them out of the tribe of Reuben: Bezer in the wilderness with its pasture lands, Jahzah with its pasture lands," + }, + { + "verseNum": 79, + "text": "Kedemoth with its pasture lands, and Mephaath with its pasture lands;" + }, + { + "verseNum": 80, + "text": "and out of the tribe of Gad, Ramoth in Gilead with its pasture lands, Mahanaim with its pasture lands," + }, + { + "verseNum": 81, + "text": "Heshbon with its pasture lands, and Jazer with its pasture lands." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"*: Tola|strong=\"H8439\"*, Puah|strong=\"H6312\"*, Jashub|strong=\"H3437\"*, and|strong=\"H1121\"* Shimron|strong=\"H8110\"*, four." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3117\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Tola|strong=\"H8439\"*: Uzzi|strong=\"H5813\"*, Rephaiah|strong=\"H7509\"*, Jeriel|strong=\"H3400\"*, Jahmai|strong=\"H3181\"*, Ibsam|strong=\"H3005\"*, and|strong=\"H3967\"* Shemuel|strong=\"H8050\"*, heads|strong=\"H7218\"* of|strong=\"H1121\"* their|strong=\"H3117\"* fathers’ houses|strong=\"H1004\"*, of|strong=\"H1121\"* Tola|strong=\"H8439\"*; mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"* in|strong=\"H1004\"* their|strong=\"H3117\"* generations|strong=\"H8435\"*. Their|strong=\"H3117\"* number|strong=\"H4557\"* in|strong=\"H1004\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H1121\"* David|strong=\"H1732\"* was|strong=\"H1732\"* twenty-two|strong=\"H6242\"* thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uzzi|strong=\"H5813\"*: Izrahiah|strong=\"H3156\"*. The|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Izrahiah|strong=\"H3156\"*: Michael|strong=\"H4317\"*, Obadiah|strong=\"H5662\"*, Joel|strong=\"H3100\"*, and|strong=\"H1121\"* Isshiah|strong=\"H3449\"*, five|strong=\"H2568\"*; all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H1121\"* chief|strong=\"H7218\"* men|strong=\"H1121\"*." + }, + { + "verseNum": 4, + "text": "With|strong=\"H1004\"* them|strong=\"H5921\"*, by|strong=\"H5921\"* their|strong=\"H5921\"* generations|strong=\"H8435\"*, after|strong=\"H5921\"* their|strong=\"H5921\"* fathers’ houses|strong=\"H1004\"*, were|strong=\"H1121\"* bands|strong=\"H1416\"* of|strong=\"H1121\"* the|strong=\"H5921\"* army|strong=\"H6635\"* for|strong=\"H3588\"* war|strong=\"H4421\"*, thirty-six|strong=\"H7970\"* thousand; for|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3588\"* many|strong=\"H7235\"* wives and|strong=\"H1121\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 5, + "text": "Their|strong=\"H3605\"* brothers among|strong=\"H1368\"* all|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H1368\"* Issachar|strong=\"H3485\"*, mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1368\"* valor|strong=\"H2428\"*, listed|strong=\"H3187\"* in|strong=\"H1368\"* all|strong=\"H3605\"* by|strong=\"H3187\"* genealogy|strong=\"H3187\"*, were|strong=\"H4940\"* eighty-seven|strong=\"H8084\"* thousand." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3043\"* sons of|strong=\"H1144\"* Benjamin|strong=\"H1144\"*: Bela|strong=\"H1106\"*, Becher|strong=\"H1071\"*, and|strong=\"H1144\"* Jediael|strong=\"H3043\"*, three|strong=\"H7969\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Bela|strong=\"H1106\"*: Ezbon, Uzzi|strong=\"H5813\"*, Uzziel|strong=\"H5816\"*, Jerimoth|strong=\"H3406\"*, and|strong=\"H1121\"* Iri|strong=\"H5901\"*, five|strong=\"H2568\"*; heads|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ houses|strong=\"H1004\"*, mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*; and|strong=\"H1121\"* they|strong=\"H2428\"* were|strong=\"H1121\"* listed|strong=\"H3187\"* by|strong=\"H3187\"* genealogy|strong=\"H3187\"* twenty-two|strong=\"H6242\"* thousand thirty-four|strong=\"H7970\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Becher|strong=\"H1071\"*: Zemirah|strong=\"H2160\"*, Joash|strong=\"H3135\"*, Eliezer, Elioenai, Omri|strong=\"H6018\"*, Jeremoth|strong=\"H3406\"*, Abijah, Anathoth|strong=\"H6068\"*, and|strong=\"H1121\"* Alemeth|strong=\"H5964\"*. All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Becher|strong=\"H1071\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H2428\"* were|strong=\"H2428\"* listed|strong=\"H3187\"* by|strong=\"H3187\"* genealogy|strong=\"H3187\"*, after|strong=\"H1004\"* their generations|strong=\"H8435\"*, heads|strong=\"H7218\"* of|strong=\"H1004\"* their fathers’ houses|strong=\"H1004\"*, mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1004\"* valor|strong=\"H2428\"*, twenty|strong=\"H6242\"* thousand two|strong=\"H1004\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jediael|strong=\"H3043\"*: Bilhan|strong=\"H1092\"*. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Bilhan|strong=\"H1092\"*: Jeush|strong=\"H3266\"*, Benjamin|strong=\"H1144\"*, Ehud, Chenaanah|strong=\"H3668\"*, Zethan|strong=\"H2133\"*, Tarshish|strong=\"H8659\"*, and|strong=\"H1121\"* Ahishahar." + }, + { + "verseNum": 11, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jediael|strong=\"H3043\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* their|strong=\"H3605\"* fathers’ households, mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*, seventeen|strong=\"H7651\"* thousand two|strong=\"H3967\"* hundred|strong=\"H3967\"*, who|strong=\"H3605\"* were|strong=\"H1121\"* able|strong=\"H2428\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* in|strong=\"H4421\"* the|strong=\"H3605\"* army|strong=\"H2428\"* for|strong=\"H1121\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 12, + "text": "So were|strong=\"H1121\"* Shuppim|strong=\"H8206\"*, Huppim|strong=\"H2650\"*, the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ir|strong=\"H5893\"*, Hushim|strong=\"H2366\"*, and|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aher." + }, + { + "verseNum": 13, + "text": "The|strong=\"H7967\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*: Jahziel|strong=\"H3185\"*, Guni|strong=\"H1476\"*, Jezer|strong=\"H3337\"*, Shallum|strong=\"H7967\"*, and|strong=\"H1121\"* the|strong=\"H7967\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Bilhah|strong=\"H1090\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*: Asriel, whom his|strong=\"H4519\"* concubine|strong=\"H6370\"* the|strong=\"H3205\"* Aramitess bore|strong=\"H3205\"*. She bore|strong=\"H3205\"* Machir|strong=\"H4353\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 15, + "text": "Machir|strong=\"H4353\"* took|strong=\"H3947\"* a|strong=\"H3068\"* wife of|strong=\"H1323\"* Huppim|strong=\"H2650\"* and|strong=\"H1323\"* Shuppim|strong=\"H8206\"*, whose|strong=\"H8034\"* sister’s name|strong=\"H8034\"* was|strong=\"H8034\"* Maacah|strong=\"H4601\"*. The|strong=\"H3947\"* name|strong=\"H8034\"* of|strong=\"H1323\"* the|strong=\"H3947\"* second|strong=\"H8145\"* was|strong=\"H8034\"* Zelophehad|strong=\"H6765\"*; and|strong=\"H1323\"* Zelophehad|strong=\"H6765\"* had|strong=\"H1961\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 16, + "text": "Maacah|strong=\"H4601\"* the|strong=\"H3205\"* wife of|strong=\"H1121\"* Machir|strong=\"H4353\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* she|strong=\"H7121\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Peresh|strong=\"H6570\"*. The|strong=\"H3205\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H7121\"* brother was|strong=\"H8034\"* Sheresh|strong=\"H8329\"*; and|strong=\"H1121\"* his|strong=\"H7121\"* sons|strong=\"H1121\"* were|strong=\"H1121\"* Ulam and|strong=\"H1121\"* Rakem|strong=\"H7552\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H4353\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ulam: Bedan. These were|strong=\"H1121\"* the|strong=\"H4353\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"* the|strong=\"H4353\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"*, the|strong=\"H4353\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*." + }, + { + "verseNum": 18, + "text": "His|strong=\"H3205\"* sister Hammolecheth|strong=\"H4447\"* bore|strong=\"H3205\"* Ishhod, Abiezer, and|strong=\"H3205\"* Mahlah|strong=\"H4244\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shemida|strong=\"H8061\"* were|strong=\"H1961\"* Ahian, Shechem|strong=\"H7928\"*, Likhi|strong=\"H3949\"*, and|strong=\"H1121\"* Aniam." + }, + { + "verseNum": 20, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim: Shuthelah|strong=\"H7803\"*, Bered|strong=\"H1260\"* his|strong=\"H8480\"* son|strong=\"H1121\"*, Tahath|strong=\"H8480\"* his|strong=\"H8480\"* son|strong=\"H1121\"*, Eleadah his|strong=\"H8480\"* son|strong=\"H1121\"*, Tahath|strong=\"H8480\"* his|strong=\"H8480\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 21, + "text": "Zabad|strong=\"H2066\"* his|strong=\"H3947\"* son|strong=\"H1121\"*, Shuthelah|strong=\"H7803\"* his|strong=\"H3947\"* son|strong=\"H1121\"*, Ezer|strong=\"H5827\"*, and|strong=\"H1121\"* Elead, whom|strong=\"H3588\"* the|strong=\"H3588\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Gath|strong=\"H1661\"* who|strong=\"H1121\"* were|strong=\"H1121\"* born|strong=\"H3205\"* in|strong=\"H1121\"* the|strong=\"H3588\"* land killed|strong=\"H2026\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* came|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* take|strong=\"H3947\"* away|strong=\"H3947\"* their|strong=\"H3947\"* livestock|strong=\"H4735\"*." + }, + { + "verseNum": 22, + "text": "Ephraim their|strong=\"H3117\"* father mourned many|strong=\"H7227\"* days|strong=\"H3117\"*, and|strong=\"H3117\"* his|strong=\"H5162\"* brothers came to|strong=\"H3117\"* comfort|strong=\"H5162\"* him|strong=\"H5162\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H3588\"* went|strong=\"H1121\"* in|strong=\"H1004\"* to|strong=\"H1961\"* his|strong=\"H7121\"* wife, and|strong=\"H1121\"* she|strong=\"H3588\"* conceived|strong=\"H2029\"* and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H3588\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Beriah|strong=\"H1283\"*,+ 7:23 “Beriah” is similar to the Hebrew word for “misfortune”.* because|strong=\"H3588\"* there|strong=\"H1961\"* was|strong=\"H8034\"* trouble|strong=\"H7451\"* with|strong=\"H1004\"* his|strong=\"H7121\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 24, + "text": "His|strong=\"H1129\"* daughter|strong=\"H1323\"* was|strong=\"H1323\"* Sheerah|strong=\"H7609\"*, who|strong=\"H1323\"* built|strong=\"H1129\"* Beth Horon the|strong=\"H1129\"* lower|strong=\"H8481\"* and|strong=\"H1323\"* the|strong=\"H1129\"* upper|strong=\"H5945\"*, and|strong=\"H1323\"* Uzzen Sheerah|strong=\"H7609\"*." + }, + { + "verseNum": 25, + "text": "Rephah|strong=\"H7506\"* was|strong=\"H1121\"* his|strong=\"H8520\"* son|strong=\"H1121\"*, Resheph|strong=\"H7566\"* his|strong=\"H8520\"* son|strong=\"H1121\"*, Telah|strong=\"H8520\"* his|strong=\"H8520\"* son|strong=\"H1121\"*, Tahan|strong=\"H8465\"* his|strong=\"H8520\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 26, + "text": "Ladan|strong=\"H3936\"* his|strong=\"H3936\"* son|strong=\"H1121\"*, Ammihud|strong=\"H5989\"* his|strong=\"H3936\"* son|strong=\"H1121\"*, Elishama his|strong=\"H3936\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 27, + "text": "Nun|strong=\"H5126\"* his|strong=\"H3091\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Joshua|strong=\"H3091\"* his|strong=\"H3091\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 28, + "text": "Their|strong=\"H1008\"* possessions and|strong=\"H1008\"* settlements|strong=\"H4186\"* were|strong=\"H1323\"* Bethel|strong=\"H1008\"* and|strong=\"H1008\"* its|strong=\"H5704\"* towns|strong=\"H1323\"*, and|strong=\"H1008\"* eastward|strong=\"H4217\"* Naaran|strong=\"H5295\"*, and|strong=\"H1008\"* westward|strong=\"H4628\"* Gezer|strong=\"H1507\"* with its|strong=\"H5704\"* towns|strong=\"H1323\"*; Shechem|strong=\"H7927\"* also|strong=\"H5804\"* and|strong=\"H1008\"* its|strong=\"H5704\"* towns|strong=\"H1323\"*, to|strong=\"H5704\"* Azzah|strong=\"H5804\"* and|strong=\"H1008\"* its|strong=\"H5704\"* towns|strong=\"H1323\"*;" + }, + { + "verseNum": 29, + "text": "and|strong=\"H1121\"* by|strong=\"H3027\"* the|strong=\"H5921\"* borders|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, Beth Shean and|strong=\"H1121\"* its|strong=\"H5921\"* towns|strong=\"H1323\"*, Taanach|strong=\"H8590\"* and|strong=\"H1121\"* its|strong=\"H5921\"* towns|strong=\"H1323\"*, Megiddo|strong=\"H4023\"* and|strong=\"H1121\"* its|strong=\"H5921\"* towns|strong=\"H1323\"*, and|strong=\"H1121\"* Dor|strong=\"H1756\"* and|strong=\"H1121\"* its|strong=\"H5921\"* towns|strong=\"H1323\"*. The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* these." + }, + { + "verseNum": 30, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asher: Imnah|strong=\"H3232\"*, Ishvah|strong=\"H3438\"*, Ishvi|strong=\"H3440\"*, and|strong=\"H1121\"* Beriah|strong=\"H1283\"*. Serah|strong=\"H8294\"* was|strong=\"H1121\"* their|strong=\"H8294\"* sister." + }, + { + "verseNum": 31, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Beriah|strong=\"H1283\"*: Heber|strong=\"H2268\"* and|strong=\"H1121\"* Malchiel|strong=\"H4439\"*, who|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Birzaith|strong=\"H1269\"*." + }, + { + "verseNum": 32, + "text": "Heber|strong=\"H2268\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Japhlet|strong=\"H3310\"*, Shomer|strong=\"H7763\"*, Hotham|strong=\"H2369\"*, and|strong=\"H3205\"* Shua|strong=\"H7774\"* their|strong=\"H7774\"* sister." + }, + { + "verseNum": 33, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Japhlet|strong=\"H3310\"*: Pasach|strong=\"H6457\"*, Bimhal|strong=\"H1118\"*, and|strong=\"H1121\"* Ashvath|strong=\"H6220\"*. These are|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Japhlet|strong=\"H3310\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shemer|strong=\"H8106\"*: Ahi, Rohgah|strong=\"H7303\"*, Jehubbah|strong=\"H3160\"*, and|strong=\"H1121\"* Aram." + }, + { + "verseNum": 35, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Helem|strong=\"H1987\"* his|strong=\"H1121\"* brother: Zophah|strong=\"H6690\"*, Imna|strong=\"H3234\"*, Shelesh|strong=\"H8028\"*, and|strong=\"H1121\"* Amal|strong=\"H6000\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zophah|strong=\"H6690\"*: Suah|strong=\"H5477\"*, Harnepher|strong=\"H2774\"*, Shual|strong=\"H7777\"*, Beri|strong=\"H1275\"*, Imrah|strong=\"H3236\"*," + }, + { + "verseNum": 37, + "text": "Bezer|strong=\"H1221\"*, Hod|strong=\"H1936\"*, Shamma|strong=\"H8037\"*, Shilshah|strong=\"H8030\"*, Ithran|strong=\"H3506\"*, and|strong=\"H3506\"* Beera." + }, + { + "verseNum": 38, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jether|strong=\"H3500\"*: Jephunneh|strong=\"H3312\"*, Pispa|strong=\"H6462\"*, and|strong=\"H1121\"* Ara." + }, + { + "verseNum": 39, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ulla|strong=\"H5925\"*: Arah, Hanniel|strong=\"H2592\"*, and|strong=\"H1121\"* Rizia|strong=\"H7525\"*." + }, + { + "verseNum": 40, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asher, heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, choice|strong=\"H1305\"* and|strong=\"H1121\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*, chief|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3605\"* princes|strong=\"H5387\"*. The|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* them|strong=\"H1121\"* listed|strong=\"H3187\"* by|strong=\"H3187\"* genealogy|strong=\"H3187\"* for|strong=\"H1004\"* service|strong=\"H6635\"* in|strong=\"H1004\"* war|strong=\"H4421\"* was|strong=\"H1004\"* twenty-six|strong=\"H8337\"* thousand men|strong=\"H1368\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Benjamin|strong=\"H1144\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Bela|strong=\"H1106\"* his|strong=\"H3205\"* firstborn|strong=\"H1060\"*, Ashbel the|strong=\"H3205\"* second|strong=\"H8145\"*, Aharah the|strong=\"H3205\"* third|strong=\"H7992\"*," + }, + { + "verseNum": 2, + "text": "Nohah|strong=\"H5119\"* the|strong=\"H7243\"* fourth|strong=\"H7243\"*, and|strong=\"H2549\"* Rapha|strong=\"H7498\"* the|strong=\"H7243\"* fifth|strong=\"H2549\"*." + }, + { + "verseNum": 3, + "text": "Bela|strong=\"H1106\"* had|strong=\"H1961\"* sons|strong=\"H1121\"*: Addar, Gera|strong=\"H1617\"*, Abihud," + }, + { + "verseNum": 4, + "text": "Abishua, Naaman|strong=\"H5283\"*, Ahoah," + }, + { + "verseNum": 5, + "text": "Gera|strong=\"H1617\"*, Shephuphan|strong=\"H8197\"*, and|strong=\"H8197\"* Huram|strong=\"H2361\"*." + }, + { + "verseNum": 6, + "text": "These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H1540\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ehud. These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H1540\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ households of|strong=\"H1121\"* the|strong=\"H1540\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Geba|strong=\"H1387\"*, who|strong=\"H1121\"* were|strong=\"H1121\"* carried|strong=\"H1540\"* captive|strong=\"H1540\"* to|strong=\"H1121\"* Manahath|strong=\"H4506\"*:" + }, + { + "verseNum": 7, + "text": "Naaman|strong=\"H5283\"*, Ahijah, and|strong=\"H5798\"* Gera|strong=\"H1617\"*, who|strong=\"H1931\"* carried|strong=\"H1540\"* them|strong=\"H1540\"* captive|strong=\"H1540\"*; and|strong=\"H5798\"* he|strong=\"H1931\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Uzza|strong=\"H5798\"* and|strong=\"H5798\"* Ahihud." + }, + { + "verseNum": 8, + "text": "Shaharaim|strong=\"H7842\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* children|strong=\"H3205\"* in|strong=\"H7971\"* the|strong=\"H3205\"* field|strong=\"H7704\"* of|strong=\"H3205\"* Moab|strong=\"H4124\"*, after|strong=\"H4480\"* he|strong=\"H4480\"* had|strong=\"H3205\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* away|strong=\"H7971\"*. Hushim|strong=\"H2366\"* and|strong=\"H7971\"* Baara|strong=\"H1199\"* were|strong=\"H3205\"* his|strong=\"H7971\"* wives." + }, + { + "verseNum": 9, + "text": "By|strong=\"H3205\"* Hodesh|strong=\"H2321\"* his|strong=\"H4480\"* wife, he|strong=\"H4480\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jobab|strong=\"H3103\"*, Zibia|strong=\"H6644\"*, Mesha|strong=\"H4331\"*, Malcam|strong=\"H4445\"*," + }, + { + "verseNum": 10, + "text": "Jeuz|strong=\"H3263\"*, Shachia|strong=\"H7634\"*, and|strong=\"H1121\"* Mirmah|strong=\"H4821\"*. These were|strong=\"H1121\"* his|strong=\"H1121\"* sons|strong=\"H1121\"*, heads|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ households." + }, + { + "verseNum": 11, + "text": "By|strong=\"H3205\"* Hushim|strong=\"H2366\"*, he|strong=\"H2366\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Abitub and|strong=\"H3205\"* Elpaal." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1129\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Elpaal: Eber|strong=\"H5677\"*, Misham|strong=\"H4936\"*, and|strong=\"H1121\"* Shemed|strong=\"H8106\"*, who|strong=\"H1931\"* built|strong=\"H1129\"* Ono and|strong=\"H1121\"* Lod|strong=\"H3850\"*, with|strong=\"H1121\"* its towns|strong=\"H1323\"*;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H7218\"* Beriah|strong=\"H1283\"* and|strong=\"H7218\"* Shema|strong=\"H8087\"*, who|strong=\"H3427\"* were|strong=\"H1992\"* heads|strong=\"H7218\"* of|strong=\"H3427\"* fathers’ households of|strong=\"H3427\"* the|strong=\"H3427\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Aijalon, who|strong=\"H3427\"* put|strong=\"H1272\"* to|strong=\"H3427\"* flight|strong=\"H1272\"* the|strong=\"H3427\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Gath|strong=\"H1661\"*;" + }, + { + "verseNum": 14, + "text": "and|strong=\"H3406\"* Ahio, Shashak|strong=\"H8349\"*, Jeremoth|strong=\"H3406\"*," + }, + { + "verseNum": 15, + "text": "Zebadiah|strong=\"H2069\"*, Arad|strong=\"H6166\"*, Eder|strong=\"H5738\"*," + }, + { + "verseNum": 16, + "text": "Michael|strong=\"H4317\"*, Ishpah|strong=\"H3472\"*, Joha|strong=\"H3109\"*, the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Beriah|strong=\"H1283\"*," + }, + { + "verseNum": 17, + "text": "Zebadiah|strong=\"H2069\"*, Meshullam|strong=\"H4918\"*, Hizki|strong=\"H2395\"*, Heber|strong=\"H2268\"*," + }, + { + "verseNum": 18, + "text": "Ishmerai|strong=\"H3461\"*, Izliah|strong=\"H3152\"*, Jobab|strong=\"H3103\"*, the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Elpaal," + }, + { + "verseNum": 19, + "text": "Jakim|strong=\"H3356\"*, Zichri|strong=\"H2147\"*, Zabdi|strong=\"H2067\"*," + }, + { + "verseNum": 20, + "text": "Elienai, Zillethai|strong=\"H6769\"*, Eliel," + }, + { + "verseNum": 21, + "text": "Adaiah|strong=\"H5718\"*, Beraiah|strong=\"H1256\"*, Shimrath|strong=\"H8119\"*, the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shimei|strong=\"H8096\"*," + }, + { + "verseNum": 22, + "text": "Ishpan|strong=\"H3473\"*, Eber|strong=\"H5677\"*, Eliel," + }, + { + "verseNum": 23, + "text": "Abdon|strong=\"H5658\"*, Zichri|strong=\"H2147\"*, Hanan|strong=\"H2605\"*," + }, + { + "verseNum": 24, + "text": "Hananiah|strong=\"H2608\"*, Elam|strong=\"H5867\"*, Anthothijah|strong=\"H6070\"*," + }, + { + "verseNum": 25, + "text": "Iphdeiah|strong=\"H3301\"*, Penuel|strong=\"H6439\"*, the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shashak|strong=\"H8349\"*," + }, + { + "verseNum": 26, + "text": "Shamsherai|strong=\"H8125\"*, Shehariah|strong=\"H7841\"*, Athaliah|strong=\"H6271\"*," + }, + { + "verseNum": 27, + "text": "Jaareshiah|strong=\"H3298\"*, Elijah, Zichri|strong=\"H2147\"*, and|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jeroham|strong=\"H3395\"*." + }, + { + "verseNum": 28, + "text": "These were|strong=\"H7218\"* heads|strong=\"H7218\"* of|strong=\"H3427\"* fathers’ households throughout their|strong=\"H3427\"* generations|strong=\"H8435\"*, chief|strong=\"H7218\"* men|strong=\"H7218\"*. These lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3427\"* father of|strong=\"H3427\"* Gibeon|strong=\"H1391\"*, whose|strong=\"H8034\"* wife’s name|strong=\"H8034\"* was|strong=\"H8034\"* Maacah|strong=\"H4601\"*, lived|strong=\"H3427\"* in|strong=\"H3427\"* Gibeon|strong=\"H1391\"*" + }, + { + "verseNum": 30, + "text": "with|strong=\"H1121\"* his|strong=\"H7027\"* firstborn|strong=\"H1060\"* son|strong=\"H1121\"* Abdon|strong=\"H5658\"*, Zur|strong=\"H6698\"*, Kish|strong=\"H7027\"*, Baal|strong=\"H1168\"*, Nadab|strong=\"H5070\"*," + }, + { + "verseNum": 31, + "text": "Gedor|strong=\"H1446\"*, Ahio, Zecher|strong=\"H2144\"*," + }, + { + "verseNum": 32, + "text": "and|strong=\"H3389\"* Mikloth|strong=\"H4732\"*, who|strong=\"H3427\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3427\"* Shimeah|strong=\"H8039\"*. They|strong=\"H1992\"* also|strong=\"H3205\"* lived|strong=\"H3427\"* with|strong=\"H5973\"* their|strong=\"H1992\"* families in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*, near|strong=\"H5973\"* their|strong=\"H1992\"* relatives." + }, + { + "verseNum": 33, + "text": "Ner|strong=\"H5369\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Kish|strong=\"H7027\"*. Kish|strong=\"H7027\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Saul|strong=\"H7586\"*. Saul|strong=\"H7586\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jonathan|strong=\"H3083\"*, Malchishua, Abinadab, and|strong=\"H7586\"* Eshbaal." + }, + { + "verseNum": 34, + "text": "The|strong=\"H3205\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jonathan|strong=\"H3083\"* was|strong=\"H1121\"* Merib-baal|strong=\"H4807\"*. Merib-baal|strong=\"H4807\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Micah|strong=\"H4318\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Micah|strong=\"H4318\"*: Pithon|strong=\"H6377\"*, Melech|strong=\"H4429\"*, Tarea|strong=\"H8390\"*, and|strong=\"H1121\"* Ahaz." + }, + { + "verseNum": 36, + "text": "Ahaz became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jehoaddah|strong=\"H3085\"*. Jehoaddah|strong=\"H3085\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Alemeth|strong=\"H5964\"*, Azmaveth|strong=\"H5820\"*, and|strong=\"H3205\"* Zimri|strong=\"H2174\"*. Zimri|strong=\"H2174\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Moza|strong=\"H4162\"*." + }, + { + "verseNum": 37, + "text": "Moza|strong=\"H4162\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Binea|strong=\"H1150\"*. Raphah was|strong=\"H1121\"* his|strong=\"H3205\"* son|strong=\"H1121\"*, Eleasah his|strong=\"H3205\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Azel his|strong=\"H3205\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 38, + "text": "Azel had|strong=\"H1121\"* six|strong=\"H8337\"* sons|strong=\"H1121\"*, whose|strong=\"H1121\"* names|strong=\"H8034\"* are|strong=\"H1121\"* these|strong=\"H3605\"*: Azrikam|strong=\"H5840\"*, Bocheru|strong=\"H1074\"*, Ishmael|strong=\"H3458\"*, Sheariah|strong=\"H8187\"*, Obadiah|strong=\"H5662\"*, and|strong=\"H1121\"* Hanan|strong=\"H2605\"*. All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Azel." + }, + { + "verseNum": 39, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eshek|strong=\"H6232\"* his|strong=\"H6232\"* brother: Ulam his|strong=\"H6232\"* firstborn|strong=\"H1060\"*, Jeush|strong=\"H3266\"* the|strong=\"H1121\"* second|strong=\"H8145\"*, and|strong=\"H1121\"* Eliphelet the|strong=\"H1121\"* third|strong=\"H7992\"*." + }, + { + "verseNum": 40, + "text": "The|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ulam were|strong=\"H1961\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*, archers|strong=\"H7198\"*, and|strong=\"H3967\"* had|strong=\"H1961\"* many|strong=\"H7235\"* sons|strong=\"H1121\"*, and|strong=\"H3967\"* grandsons|strong=\"H1121\"*, one|strong=\"H3605\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*. All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1961\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "So|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* listed|strong=\"H3187\"* by|strong=\"H5921\"* genealogies|strong=\"H3187\"*; and|strong=\"H3063\"* behold|strong=\"H2009\"*,+ 9:1 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* they|strong=\"H5921\"* are|strong=\"H3478\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*. Judah|strong=\"H3063\"* was|strong=\"H3478\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* to|strong=\"H3478\"* Babylon for|strong=\"H5921\"* their|strong=\"H3605\"* disobedience." + }, + { + "verseNum": 2, + "text": "Now|strong=\"H3478\"* the|strong=\"H3548\"* first|strong=\"H7223\"* inhabitants|strong=\"H3427\"* who|strong=\"H3548\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3427\"* possessions in|strong=\"H3427\"* their|strong=\"H3427\"* cities|strong=\"H5892\"* were|strong=\"H3478\"* Israel|strong=\"H3478\"*, the|strong=\"H3548\"* priests|strong=\"H3548\"*, the|strong=\"H3548\"* Levites|strong=\"H3881\"*, and|strong=\"H3478\"* the|strong=\"H3548\"* temple|strong=\"H5411\"* servants|strong=\"H5411\"*." + }, + { + "verseNum": 3, + "text": "In|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*, there|strong=\"H3427\"* lived|strong=\"H3427\"* of|strong=\"H1121\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, of|strong=\"H1121\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim and|strong=\"H1121\"* Manasseh|strong=\"H4519\"*:" + }, + { + "verseNum": 4, + "text": "Uthai|strong=\"H5793\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammihud|strong=\"H5989\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Omri|strong=\"H6018\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Imri, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bani|strong=\"H1137\"*, of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Perez|strong=\"H6557\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 5, + "text": "Of|strong=\"H1121\"* the|strong=\"H4480\"* Shilonites|strong=\"H7888\"*: Asaiah|strong=\"H6222\"* the|strong=\"H4480\"* firstborn|strong=\"H1060\"* and|strong=\"H1121\"* his|strong=\"H4480\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 6, + "text": "Of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zerah|strong=\"H2226\"*: Jeuel|strong=\"H3262\"* and|strong=\"H3967\"* their|strong=\"H4480\"* brothers|strong=\"H1121\"*, six|strong=\"H8337\"* hundred|strong=\"H3967\"* ninety|strong=\"H8673\"*." + }, + { + "verseNum": 7, + "text": "Of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*: Sallu|strong=\"H5543\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshullam|strong=\"H4918\"*, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hodaviah|strong=\"H1938\"*, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hassenuah|strong=\"H5574\"*;" + }, + { + "verseNum": 8, + "text": "and|strong=\"H1121\"* Ibneiah|strong=\"H2997\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeroham|strong=\"H3395\"*, and|strong=\"H1121\"* Elah the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uzzi|strong=\"H5813\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Michri|strong=\"H4381\"*; and|strong=\"H1121\"* Meshullam|strong=\"H4918\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shephatiah|strong=\"H8203\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Reuel|strong=\"H7467\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ibnijah|strong=\"H2998\"*;" + }, + { + "verseNum": 9, + "text": "and|strong=\"H3967\"* their|strong=\"H3605\"* brothers, according to|strong=\"H1004\"* their|strong=\"H3605\"* generations|strong=\"H8435\"*, nine|strong=\"H8672\"* hundred|strong=\"H3967\"* fifty-six. All|strong=\"H3605\"* these|strong=\"H3605\"* men|strong=\"H7218\"* were|strong=\"H7218\"* heads|strong=\"H7218\"* of|strong=\"H1004\"* fathers’ households|strong=\"H1004\"* by|strong=\"H3605\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*." + }, + { + "verseNum": 10, + "text": "Of|strong=\"H4480\"* the|strong=\"H4480\"* priests|strong=\"H3548\"*: Jedaiah|strong=\"H3048\"*, Jehoiarib|strong=\"H3080\"*, Jachin|strong=\"H3199\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H1121\"* Azariah|strong=\"H5838\"* the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshullam|strong=\"H4918\"*, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meraioth|strong=\"H4812\"*, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub, the|strong=\"H6659\"* ruler|strong=\"H5057\"* of|strong=\"H1121\"* God’s house|strong=\"H1004\"*;" + }, + { + "verseNum": 12, + "text": "and|strong=\"H1121\"* Adaiah|strong=\"H5718\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeroham|strong=\"H3395\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pashhur|strong=\"H6583\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Malchijah|strong=\"H4441\"*; and|strong=\"H1121\"* Maasai|strong=\"H4640\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Adiel|strong=\"H5717\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jahzerah|strong=\"H3170\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshullam|strong=\"H4918\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshillemith|strong=\"H4921\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Immer;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H3967\"* their|strong=\"H4399\"* brothers, heads|strong=\"H7218\"* of|strong=\"H1004\"* their|strong=\"H4399\"* fathers’ houses|strong=\"H1004\"*, one|strong=\"H1368\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* sixty|strong=\"H8346\"*; they|strong=\"H4399\"* were|strong=\"H2428\"* very|strong=\"H2428\"* able|strong=\"H2428\"* men|strong=\"H1368\"* for|strong=\"H1004\"* the|strong=\"H1004\"* work|strong=\"H4399\"* of|strong=\"H1004\"* the|strong=\"H1004\"* service|strong=\"H5656\"* of|strong=\"H1004\"* God’s house|strong=\"H1004\"*." + }, + { + "verseNum": 14, + "text": "Of|strong=\"H1121\"* the|strong=\"H4480\"* Levites|strong=\"H3881\"*: Shemaiah|strong=\"H8098\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hasshub|strong=\"H2815\"*, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azrikam|strong=\"H5840\"*, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hashabiah|strong=\"H2811\"*, of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"H1121\"* Bakbakkar|strong=\"H1230\"*, Heresh|strong=\"H2792\"*, Galal|strong=\"H1559\"*, and|strong=\"H1121\"* Mattaniah|strong=\"H4983\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mica|strong=\"H4316\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zichri|strong=\"H2147\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asaph," + }, + { + "verseNum": 16, + "text": "and|strong=\"H1121\"* Obadiah|strong=\"H5662\"* the|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shemaiah|strong=\"H8098\"*, the|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Galal|strong=\"H1559\"*, the|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeduthun|strong=\"H3038\"*; and|strong=\"H1121\"* Berechiah|strong=\"H1296\"* the|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asa, the|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elkanah, who|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H8098\"* villages|strong=\"H2691\"* of|strong=\"H1121\"* the|strong=\"H8098\"* Netophathites|strong=\"H5200\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H7967\"* gatekeepers|strong=\"H7778\"*: Shallum|strong=\"H7967\"*, Akkub|strong=\"H6126\"*, Talmon|strong=\"H2929\"*, Ahiman, and|strong=\"H7218\"* their brothers (Shallum|strong=\"H7967\"* was|strong=\"H7218\"* the|strong=\"H7967\"* chief|strong=\"H7218\"*)," + }, + { + "verseNum": 18, + "text": "who|strong=\"H1121\"* previously served in|strong=\"H4428\"* the|strong=\"H5704\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"* eastward|strong=\"H4217\"*. They|strong=\"H1992\"* were|strong=\"H1121\"* the|strong=\"H5704\"* gatekeepers|strong=\"H7778\"* for|strong=\"H5704\"* the|strong=\"H5704\"* camp|strong=\"H4264\"* of|strong=\"H1121\"* the|strong=\"H5704\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*." + }, + { + "verseNum": 19, + "text": "Shallum|strong=\"H7967\"* was|strong=\"H3068\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kore|strong=\"H6981\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ebiasaph, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Korah|strong=\"H7141\"*, and|strong=\"H1121\"* his|strong=\"H8104\"* brothers|strong=\"H1121\"*, of|strong=\"H1121\"* his|strong=\"H8104\"* father|strong=\"H1121\"*’s house|strong=\"H1004\"*, the|strong=\"H5921\"* Korahites|strong=\"H7145\"*, were|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* work|strong=\"H4399\"* of|strong=\"H1121\"* the|strong=\"H5921\"* service|strong=\"H5656\"*, keepers|strong=\"H8104\"* of|strong=\"H1121\"* the|strong=\"H5921\"* thresholds|strong=\"H5592\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tent. Their|strong=\"H3068\"* fathers had|strong=\"H3068\"* been|strong=\"H3068\"* over|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s camp|strong=\"H4264\"*, keepers|strong=\"H8104\"* of|strong=\"H1121\"* the|strong=\"H5921\"* entry|strong=\"H3996\"*." + }, + { + "verseNum": 20, + "text": "Phinehas|strong=\"H6372\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar was|strong=\"H3068\"* ruler|strong=\"H5057\"* over|strong=\"H5921\"* them|strong=\"H5921\"* in|strong=\"H5921\"* time|strong=\"H6440\"* past|strong=\"H6440\"*, and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 21, + "text": "Zechariah|strong=\"H2148\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshelemiah|strong=\"H4920\"* was|strong=\"H1121\"* gatekeeper|strong=\"H7778\"* of|strong=\"H1121\"* the|strong=\"H1121\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 22, + "text": "All|strong=\"H3605\"* these|strong=\"H1992\"* who|strong=\"H3605\"* were|strong=\"H1992\"* chosen|strong=\"H1305\"* to|strong=\"H1732\"* be|strong=\"H1732\"* gatekeepers|strong=\"H7778\"* in|strong=\"H1732\"* the|strong=\"H3605\"* thresholds|strong=\"H5592\"* were|strong=\"H1992\"* two|strong=\"H8147\"* hundred|strong=\"H3967\"* twelve|strong=\"H8147\"*. These|strong=\"H1992\"* were|strong=\"H1992\"* listed|strong=\"H3187\"* by|strong=\"H3187\"* genealogy|strong=\"H3187\"* in|strong=\"H1732\"* their|strong=\"H3605\"* villages|strong=\"H2691\"*, whom|strong=\"H1992\"* David|strong=\"H1732\"* and|strong=\"H3967\"* Samuel|strong=\"H8050\"* the|strong=\"H3605\"* seer|strong=\"H7200\"* ordained|strong=\"H3245\"* in|strong=\"H1732\"* their|strong=\"H3605\"* office of|strong=\"H3605\"* trust." + }, + { + "verseNum": 23, + "text": "So|strong=\"H1992\"* they|strong=\"H1992\"* and|strong=\"H1121\"* their|strong=\"H3068\"* children|strong=\"H1121\"* had|strong=\"H3068\"* the|strong=\"H5921\"* oversight of|strong=\"H1121\"* the|strong=\"H5921\"* gates|strong=\"H8179\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, even|strong=\"H3068\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tent, as|strong=\"H3068\"* guards|strong=\"H4931\"*." + }, + { + "verseNum": 24, + "text": "On|strong=\"H1961\"* the|strong=\"H1961\"* four sides|strong=\"H7307\"* were|strong=\"H1961\"* the|strong=\"H1961\"* gatekeepers|strong=\"H7778\"*, toward the|strong=\"H1961\"* east|strong=\"H4217\"*, west|strong=\"H3220\"*, north|strong=\"H6828\"*, and|strong=\"H3220\"* south|strong=\"H5045\"*." + }, + { + "verseNum": 25, + "text": "Their|strong=\"H3117\"* brothers, in|strong=\"H3117\"* their|strong=\"H3117\"* villages|strong=\"H2691\"*, were|strong=\"H3117\"* to|strong=\"H6256\"* come in|strong=\"H3117\"* every|strong=\"H3117\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* from|strong=\"H3117\"* time|strong=\"H6256\"* to|strong=\"H6256\"* time|strong=\"H6256\"* to|strong=\"H6256\"* be|strong=\"H3117\"* with|strong=\"H5973\"* them|strong=\"H3117\"*," + }, + { + "verseNum": 26, + "text": "for|strong=\"H3588\"* the|strong=\"H5921\"* four chief|strong=\"H1368\"* gatekeepers|strong=\"H7778\"*, who|strong=\"H1992\"* were|strong=\"H1961\"* Levites|strong=\"H3881\"*, were|strong=\"H1961\"* in|strong=\"H5921\"* an|strong=\"H1961\"* office of|strong=\"H1004\"* trust, and|strong=\"H1004\"* were|strong=\"H1961\"* over|strong=\"H5921\"* the|strong=\"H5921\"* rooms|strong=\"H3957\"* and|strong=\"H1004\"* over|strong=\"H5921\"* the|strong=\"H5921\"* treasuries in|strong=\"H5921\"* God’s house|strong=\"H1004\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"H1992\"* stayed|strong=\"H3885\"* around|strong=\"H5439\"* God’s house|strong=\"H1004\"*, because|strong=\"H3588\"* that|strong=\"H3588\"* was|strong=\"H1004\"* their|strong=\"H1992\"* duty|strong=\"H4931\"*; and|strong=\"H1004\"* it|strong=\"H5921\"* was|strong=\"H1004\"* their|strong=\"H1992\"* duty|strong=\"H4931\"* to|strong=\"H5921\"* open it|strong=\"H5921\"* morning|strong=\"H1242\"* by|strong=\"H5921\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 28, + "text": "Certain of|strong=\"H3627\"* them|strong=\"H1992\"* were|strong=\"H1992\"* in|strong=\"H5921\"* charge|strong=\"H5921\"* of|strong=\"H3627\"* the|strong=\"H5921\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* service|strong=\"H5656\"*, for|strong=\"H3588\"* these|strong=\"H1992\"* were|strong=\"H1992\"* brought|strong=\"H3318\"* in|strong=\"H5921\"* by|strong=\"H5921\"* count|strong=\"H4557\"*, and|strong=\"H3318\"* these|strong=\"H1992\"* were|strong=\"H1992\"* taken|strong=\"H3318\"* out|strong=\"H3318\"* by|strong=\"H5921\"* count|strong=\"H4557\"*." + }, + { + "verseNum": 29, + "text": "Some|strong=\"H1992\"* of|strong=\"H3627\"* them|strong=\"H1992\"* also|strong=\"H1992\"* were|strong=\"H1992\"* appointed|strong=\"H4487\"* over|strong=\"H5921\"* the|strong=\"H3605\"* furniture|strong=\"H3627\"*, and|strong=\"H8081\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, over|strong=\"H5921\"* the|strong=\"H3605\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"*, the|strong=\"H3605\"* wine|strong=\"H3196\"*, the|strong=\"H3605\"* oil|strong=\"H8081\"*, the|strong=\"H3605\"* frankincense|strong=\"H3828\"*, and|strong=\"H8081\"* the|strong=\"H3605\"* spices|strong=\"H1314\"*." + }, + { + "verseNum": 30, + "text": "Some|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* priests|strong=\"H3548\"* prepared|strong=\"H7543\"* the|strong=\"H4480\"* mixing|strong=\"H4842\"* of|strong=\"H1121\"* the|strong=\"H4480\"* spices|strong=\"H1314\"*." + }, + { + "verseNum": 31, + "text": "Mattithiah|strong=\"H4993\"*, one|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*, who|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H5921\"* firstborn|strong=\"H1060\"* of|strong=\"H4480\"* Shallum|strong=\"H7967\"* the|strong=\"H5921\"* Korahite|strong=\"H7145\"*, had|strong=\"H1931\"* the|strong=\"H5921\"* office of|strong=\"H4480\"* trust over|strong=\"H5921\"* the|strong=\"H5921\"* things|strong=\"H4639\"* that|strong=\"H1931\"* were|strong=\"H3881\"* baked|strong=\"H2281\"* in|strong=\"H5921\"* pans|strong=\"H2281\"*." + }, + { + "verseNum": 32, + "text": "Some|strong=\"H4480\"* of|strong=\"H1121\"* their|strong=\"H5921\"* brothers|strong=\"H1121\"*, of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Kohathites|strong=\"H6956\"*, were|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* show bread|strong=\"H3899\"*, to|strong=\"H5921\"* prepare|strong=\"H3559\"* it|strong=\"H5921\"* every|strong=\"H7676\"* Sabbath|strong=\"H7676\"*." + }, + { + "verseNum": 33, + "text": "These|strong=\"H3881\"* are|strong=\"H3915\"* the|strong=\"H5921\"* singers|strong=\"H7891\"*, heads|strong=\"H7218\"* of|strong=\"H7218\"* fathers’ households|strong=\"H3881\"* of|strong=\"H7218\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*, who|strong=\"H3881\"* lived in|strong=\"H5921\"* the|strong=\"H5921\"* rooms|strong=\"H3957\"* and|strong=\"H7218\"* were|strong=\"H3881\"* free from|strong=\"H5921\"* other service|strong=\"H4399\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H3881\"* employed in|strong=\"H5921\"* their|strong=\"H5921\"* work|strong=\"H4399\"* day|strong=\"H3119\"* and|strong=\"H7218\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 34, + "text": "These|strong=\"H3881\"* were|strong=\"H3881\"* heads|strong=\"H7218\"* of|strong=\"H3427\"* fathers’ households|strong=\"H3881\"* of|strong=\"H3427\"* the|strong=\"H3427\"* Levites|strong=\"H3881\"*, throughout their|strong=\"H3427\"* generations|strong=\"H8435\"*, chief|strong=\"H7218\"* men|strong=\"H7218\"*. They|strong=\"H3389\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 35, + "text": "Jeiel|strong=\"H3273\"* the|strong=\"H3427\"* father of|strong=\"H3427\"* Gibeon|strong=\"H1391\"*, whose|strong=\"H8034\"* wife’s name|strong=\"H8034\"* was|strong=\"H8034\"* Maacah|strong=\"H4601\"*, lived|strong=\"H3427\"* in|strong=\"H3427\"* Gibeon|strong=\"H1391\"*." + }, + { + "verseNum": 36, + "text": "His|strong=\"H7027\"* firstborn|strong=\"H1060\"* son|strong=\"H1121\"* was|strong=\"H1121\"* Abdon|strong=\"H5658\"*, then|strong=\"H1121\"* Zur|strong=\"H6698\"*, Kish|strong=\"H7027\"*, Baal|strong=\"H1168\"*, Ner|strong=\"H5369\"*, Nadab|strong=\"H5070\"*," + }, + { + "verseNum": 37, + "text": "Gedor|strong=\"H1446\"*, Ahio, Zechariah|strong=\"H2148\"*, and|strong=\"H2148\"* Mikloth|strong=\"H4732\"*." + }, + { + "verseNum": 38, + "text": "Mikloth|strong=\"H4732\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3427\"* Shimeam|strong=\"H8043\"*. They|strong=\"H1992\"* also|strong=\"H3205\"* lived|strong=\"H3427\"* with|strong=\"H5973\"* their|strong=\"H1992\"* relatives in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*, near|strong=\"H5973\"* their|strong=\"H1992\"* relatives." + }, + { + "verseNum": 39, + "text": "Ner|strong=\"H5369\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Kish|strong=\"H7027\"*. Kish|strong=\"H7027\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Saul|strong=\"H7586\"*. Saul|strong=\"H7586\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jonathan|strong=\"H3083\"*, Malchishua, Abinadab, and|strong=\"H7586\"* Eshbaal." + }, + { + "verseNum": 40, + "text": "The|strong=\"H3205\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jonathan|strong=\"H3083\"* was|strong=\"H1121\"* Merib-baal|strong=\"H4807\"*. Merib-baal|strong=\"H4807\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Micah|strong=\"H4318\"*." + }, + { + "verseNum": 41, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Micah|strong=\"H4318\"*: Pithon|strong=\"H6377\"*, Melech|strong=\"H4429\"*, Tahrea|strong=\"H8475\"*, and|strong=\"H1121\"* Ahaz." + }, + { + "verseNum": 42, + "text": "Ahaz became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jarah|strong=\"H3294\"*. Jarah|strong=\"H3294\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Alemeth|strong=\"H5964\"*, Azmaveth|strong=\"H5820\"*, and|strong=\"H3205\"* Zimri|strong=\"H2174\"*. Zimri|strong=\"H2174\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Moza|strong=\"H4162\"*." + }, + { + "verseNum": 43, + "text": "Moza|strong=\"H4162\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Binea|strong=\"H1150\"*, Rephaiah|strong=\"H7509\"* his|strong=\"H3205\"* son|strong=\"H1121\"*, Eleasah his|strong=\"H3205\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Azel his|strong=\"H3205\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 44, + "text": "Azel had|strong=\"H1121\"* six|strong=\"H8337\"* sons|strong=\"H1121\"*, whose|strong=\"H1121\"* names|strong=\"H8034\"* are|strong=\"H1121\"* Azrikam|strong=\"H5840\"*, Bocheru|strong=\"H1074\"*, Ishmael|strong=\"H3458\"*, Sheariah|strong=\"H8187\"*, Obadiah|strong=\"H5662\"*, and|strong=\"H1121\"* Hanan|strong=\"H2605\"*. These were|strong=\"H1121\"* the|strong=\"H3458\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Azel." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* the|strong=\"H6440\"* men|strong=\"H3478\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"* fled|strong=\"H5127\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*, and|strong=\"H3478\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* slain|strong=\"H2491\"* on|strong=\"H5307\"* Mount|strong=\"H2022\"* Gilboa|strong=\"H1533\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5221\"* Philistines|strong=\"H6430\"* followed|strong=\"H6430\"* hard|strong=\"H1692\"* after|strong=\"H6430\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* after|strong=\"H6430\"* his|strong=\"H5221\"* sons|strong=\"H1121\"*; and|strong=\"H1121\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"* killed|strong=\"H5221\"* Jonathan|strong=\"H3129\"*, Abinadab, and|strong=\"H1121\"* Malchishua, the|strong=\"H5221\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* battle|strong=\"H4421\"* went|strong=\"H7586\"* hard against|strong=\"H5921\"* Saul|strong=\"H7586\"*, and|strong=\"H7586\"* the|strong=\"H5921\"* archers|strong=\"H3384\"* overtook|strong=\"H4672\"* him|strong=\"H5921\"*; and|strong=\"H7586\"* he|strong=\"H4480\"* was|strong=\"H7586\"* distressed by|strong=\"H5921\"* reason|strong=\"H5921\"* of|strong=\"H4480\"* the|strong=\"H5921\"* archers|strong=\"H3384\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H3947\"* Saul|strong=\"H7586\"* said to|strong=\"H5921\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"*, “Draw|strong=\"H8025\"* your|strong=\"H3947\"* sword|strong=\"H2719\"*, and|strong=\"H2719\"* thrust|strong=\"H1856\"* me|strong=\"H5921\"* through|strong=\"H1856\"* with|strong=\"H5921\"* it|strong=\"H5921\"*, lest|strong=\"H6435\"* these|strong=\"H3947\"* uncircumcised|strong=\"H6189\"* come|strong=\"H5307\"* and|strong=\"H2719\"* abuse|strong=\"H5953\"* me|strong=\"H5921\"*.”" + }, + { + "verseNum": 5, + "text": "When|strong=\"H3588\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* was|strong=\"H7586\"* dead|strong=\"H4191\"*, he|strong=\"H1931\"* likewise|strong=\"H1571\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H5375\"* sword|strong=\"H2719\"* and|strong=\"H2719\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 6, + "text": "So|strong=\"H4191\"* Saul|strong=\"H7586\"* died|strong=\"H4191\"* with|strong=\"H1004\"* his|strong=\"H3605\"* three|strong=\"H7969\"* sons|strong=\"H1121\"*; and|strong=\"H1121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* house|strong=\"H1004\"* died|strong=\"H4191\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H3605\"* were|strong=\"H3478\"* in|strong=\"H3427\"* the|strong=\"H3605\"* valley|strong=\"H6010\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H3588\"* fled|strong=\"H5127\"*, and|strong=\"H1121\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* were|strong=\"H3478\"* dead|strong=\"H4191\"*, they|strong=\"H3588\"* abandoned|strong=\"H5800\"* their|strong=\"H3605\"* cities|strong=\"H5892\"*, and|strong=\"H1121\"* fled|strong=\"H5127\"*; and|strong=\"H1121\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* came|strong=\"H3478\"* and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* them|strong=\"H7200\"*." + }, + { + "verseNum": 8, + "text": "On|strong=\"H5307\"* the|strong=\"H1961\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, when|strong=\"H1961\"* the|strong=\"H1961\"* Philistines|strong=\"H6430\"* came|strong=\"H1961\"* to|strong=\"H1961\"* strip|strong=\"H6584\"* the|strong=\"H1961\"* slain|strong=\"H2491\"*, they|strong=\"H7586\"* found|strong=\"H4672\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* his|strong=\"H1961\"* sons|strong=\"H1121\"* fallen|strong=\"H5307\"* on|strong=\"H5307\"* Mount|strong=\"H2022\"* Gilboa|strong=\"H1533\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H5971\"* stripped|strong=\"H6584\"* him|strong=\"H7971\"* and|strong=\"H7971\"* took|strong=\"H5375\"* his|strong=\"H5375\"* head|strong=\"H7218\"* and|strong=\"H7971\"* his|strong=\"H5375\"* armor|strong=\"H3627\"*, then|strong=\"H7971\"* sent|strong=\"H7971\"* into|strong=\"H5375\"* the|strong=\"H5375\"* land of|strong=\"H3627\"* the|strong=\"H5375\"* Philistines|strong=\"H6430\"* all|strong=\"H5439\"* around|strong=\"H5439\"* to|strong=\"H7971\"* carry|strong=\"H5375\"* the|strong=\"H5375\"* news|strong=\"H1319\"* to|strong=\"H7971\"* their|strong=\"H5375\"* idols|strong=\"H6091\"* and|strong=\"H7971\"* to|strong=\"H7971\"* the|strong=\"H5375\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H7760\"* put|strong=\"H7760\"* his|strong=\"H7760\"* armor|strong=\"H3627\"* in|strong=\"H1004\"* the|strong=\"H7760\"* house|strong=\"H1004\"* of|strong=\"H1004\"* their|strong=\"H7760\"* gods, and|strong=\"H1004\"* fastened|strong=\"H8628\"* his|strong=\"H7760\"* head|strong=\"H1538\"* in|strong=\"H1004\"* the|strong=\"H7760\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Dagon|strong=\"H1712\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H8085\"* all|strong=\"H3605\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"* heard|strong=\"H8085\"* all|strong=\"H3605\"* that|strong=\"H3605\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* had|strong=\"H7586\"* done|strong=\"H6213\"* to|strong=\"H6213\"* Saul|strong=\"H7586\"*," + }, + { + "verseNum": 12, + "text": "all|strong=\"H3605\"* the|strong=\"H3605\"* valiant|strong=\"H2428\"* men|strong=\"H1121\"* arose|strong=\"H6965\"* and|strong=\"H1121\"* took|strong=\"H5375\"* away|strong=\"H5375\"* the|strong=\"H3605\"* body|strong=\"H6106\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* the|strong=\"H3605\"* bodies|strong=\"H1480\"* of|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* brought|strong=\"H5375\"* them|strong=\"H5375\"* to|strong=\"H3117\"* Jabesh|strong=\"H3003\"*, and|strong=\"H1121\"* buried|strong=\"H6912\"* their|strong=\"H3605\"* bones|strong=\"H6106\"* under|strong=\"H8478\"* the|strong=\"H3605\"* oak in|strong=\"H3117\"* Jabesh|strong=\"H3003\"*, and|strong=\"H1121\"* fasted|strong=\"H6684\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 13, + "text": "So|strong=\"H3808\"* Saul|strong=\"H7586\"* died|strong=\"H4191\"* for|strong=\"H5921\"* his|strong=\"H8104\"* trespass|strong=\"H4604\"* which|strong=\"H3068\"* he|strong=\"H3068\"* committed|strong=\"H4603\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, because|strong=\"H5921\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* didn’t keep|strong=\"H8104\"*, and|strong=\"H3068\"* also|strong=\"H1571\"* because|strong=\"H5921\"* he|strong=\"H3068\"* asked|strong=\"H7592\"* counsel|strong=\"H1697\"* of|strong=\"H3068\"* one|strong=\"H3808\"* who|strong=\"H3068\"* had|strong=\"H3068\"* a|strong=\"H3068\"* familiar spirit, to|strong=\"H4191\"* inquire|strong=\"H1875\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H1121\"* didn’t inquire|strong=\"H1875\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*. Therefore|strong=\"H1732\"* he|strong=\"H3068\"* killed|strong=\"H4191\"* him|strong=\"H4191\"*, and|strong=\"H1121\"* turned|strong=\"H5437\"* the|strong=\"H3068\"* kingdom|strong=\"H4410\"* over|strong=\"H3068\"* to|strong=\"H4191\"* David|strong=\"H1732\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H2009\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* gathered|strong=\"H6908\"* themselves|strong=\"H6908\"* to|strong=\"H3478\"* David|strong=\"H1732\"* to|strong=\"H3478\"* Hebron|strong=\"H2275\"*, saying, “Behold|strong=\"H2009\"*, we|strong=\"H3068\"* are|strong=\"H6106\"* your|strong=\"H3605\"* bone|strong=\"H6106\"* and|strong=\"H3478\"* your|strong=\"H3605\"* flesh|strong=\"H1320\"*." + }, + { + "verseNum": 2, + "text": "In|strong=\"H5921\"* times|strong=\"H8543\"* past|strong=\"H8032\"*, even|strong=\"H1571\"* when|strong=\"H1961\"* Saul|strong=\"H7586\"* was|strong=\"H3068\"* king|strong=\"H4428\"*, it|strong=\"H5921\"* was|strong=\"H3068\"* you|strong=\"H5921\"* who|strong=\"H5971\"* led|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3478\"* brought|strong=\"H3318\"* in|strong=\"H5921\"* Israel|strong=\"H3478\"*. Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* said|strong=\"H3318\"* to|strong=\"H3318\"* you|strong=\"H5921\"*, ‘You|strong=\"H5921\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* shepherd|strong=\"H7462\"* of|strong=\"H4428\"* my|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* my|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*.’”" + }, + { + "verseNum": 3, + "text": "So|strong=\"H1697\"* all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* to|strong=\"H3478\"* Hebron|strong=\"H2275\"*; and|strong=\"H3478\"* David|strong=\"H1732\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* them|strong=\"H5921\"* in|strong=\"H5921\"* Hebron|strong=\"H2275\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. They|strong=\"H3068\"* anointed|strong=\"H4886\"* David|strong=\"H1732\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* by|strong=\"H3027\"* Samuel|strong=\"H8050\"*." + }, + { + "verseNum": 4, + "text": "David|strong=\"H1732\"* and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* went|strong=\"H3212\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"* (also|strong=\"H1732\"* called|strong=\"H8033\"* Jebus|strong=\"H2982\"*); and|strong=\"H3478\"* the|strong=\"H3605\"* Jebusites|strong=\"H2983\"*, the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3605\"* land, were|strong=\"H3478\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3920\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jebus|strong=\"H2982\"* said to|strong=\"H1732\"* David|strong=\"H1732\"*, “You|strong=\"H3808\"* will|strong=\"H5892\"* not|strong=\"H3808\"* come|strong=\"H5892\"* in|strong=\"H3427\"* here|strong=\"H2008\"*!” Nevertheless David|strong=\"H1732\"* took|strong=\"H3920\"* the|strong=\"H3920\"* stronghold|strong=\"H4686\"* of|strong=\"H3427\"* Zion|strong=\"H6726\"*. The|strong=\"H3920\"* same|strong=\"H1931\"* is|strong=\"H1931\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*." + }, + { + "verseNum": 6, + "text": "David|strong=\"H1732\"* had|strong=\"H1961\"* said, “Whoever|strong=\"H3605\"* strikes|strong=\"H5221\"* the|strong=\"H3605\"* Jebusites|strong=\"H2983\"* first|strong=\"H7223\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* chief|strong=\"H7218\"* and|strong=\"H1121\"* captain|strong=\"H8269\"*.” Joab|strong=\"H3097\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* went|strong=\"H5927\"* up|strong=\"H5927\"* first|strong=\"H7223\"*, and|strong=\"H1121\"* was|strong=\"H1961\"* made|strong=\"H1961\"* chief|strong=\"H7218\"*." + }, + { + "verseNum": 7, + "text": "David|strong=\"H1732\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* stronghold|strong=\"H4679\"*; therefore|strong=\"H3651\"* they|strong=\"H3651\"* called|strong=\"H7121\"* it|strong=\"H7121\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H5704\"* built|strong=\"H1129\"* the|strong=\"H4480\"* city|strong=\"H5892\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, from|strong=\"H4480\"* Millo|strong=\"H4407\"* even|strong=\"H5704\"* around|strong=\"H5439\"*; and|strong=\"H5892\"* Joab|strong=\"H3097\"* repaired|strong=\"H1129\"* the|strong=\"H4480\"* rest|strong=\"H7605\"* of|strong=\"H5892\"* the|strong=\"H4480\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 9, + "text": "David|strong=\"H1732\"* grew|strong=\"H1980\"* greater|strong=\"H1419\"* and|strong=\"H1980\"* greater|strong=\"H1419\"*, for|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* was|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H3478\"* these|strong=\"H3605\"* are|strong=\"H3478\"* the|strong=\"H3605\"* chief|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* whom|strong=\"H1368\"* David|strong=\"H1732\"* had|strong=\"H3068\"*, who|strong=\"H3605\"* showed themselves|strong=\"H2388\"* strong|strong=\"H2388\"* with|strong=\"H5973\"* him|strong=\"H5921\"* in|strong=\"H5921\"* his|strong=\"H3605\"* kingdom|strong=\"H4438\"*, together|strong=\"H5973\"* with|strong=\"H5973\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* make|strong=\"H4427\"* him|strong=\"H5921\"* king|strong=\"H4427\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* concerning|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 11, + "text": "This|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H5921\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H5921\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* whom|strong=\"H1368\"* David|strong=\"H1732\"* had|strong=\"H1732\"*: Jashobeam|strong=\"H3434\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* Hachmonite|strong=\"H2453\"*, the|strong=\"H5921\"* chief|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5921\"* thirty|strong=\"H7970\"*; he|strong=\"H1931\"* lifted|strong=\"H1732\"* up|strong=\"H5782\"* his|strong=\"H1732\"* spear|strong=\"H2595\"* against|strong=\"H5921\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* and|strong=\"H3967\"* killed|strong=\"H2491\"* them|strong=\"H5921\"* at|strong=\"H5921\"* one|strong=\"H1931\"* time|strong=\"H6471\"*." + }, + { + "verseNum": 12, + "text": "After him|strong=\"H1931\"* was|strong=\"H1931\"* Eleazar the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Dodo|strong=\"H1734\"*, the|strong=\"H1121\"* Ahohite, who|strong=\"H1931\"* was|strong=\"H1931\"* one|strong=\"H1931\"* of|strong=\"H1121\"* the|strong=\"H1121\"* three|strong=\"H7969\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1931\"* was|strong=\"H1961\"* with|strong=\"H5973\"* David|strong=\"H1732\"* at|strong=\"H4421\"* Pasdammim|strong=\"H6450\"*, and|strong=\"H5971\"* there|strong=\"H8033\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"* were|strong=\"H1961\"* gathered|strong=\"H6430\"* together|strong=\"H5973\"* to|strong=\"H1961\"* battle|strong=\"H4421\"*, where|strong=\"H8033\"* there|strong=\"H8033\"* was|strong=\"H1961\"* a|strong=\"H3068\"* plot|strong=\"H2513\"* of|strong=\"H6440\"* ground|strong=\"H7704\"* full|strong=\"H4392\"* of|strong=\"H6440\"* barley|strong=\"H8184\"*; and|strong=\"H5971\"* the|strong=\"H6440\"* people|strong=\"H5971\"* fled|strong=\"H5127\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3068\"* stood|strong=\"H3320\"* in|strong=\"H3068\"* the|strong=\"H5221\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H5221\"* plot|strong=\"H2513\"*, defended|strong=\"H5337\"* it|strong=\"H8432\"*, and|strong=\"H3068\"* killed|strong=\"H5221\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* saved|strong=\"H3467\"* them|strong=\"H5221\"* by|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* victory|strong=\"H8668\"*." + }, + { + "verseNum": 15, + "text": "Three|strong=\"H7969\"* of|strong=\"H7218\"* the|strong=\"H5921\"* thirty|strong=\"H7970\"* chief|strong=\"H7218\"* men|strong=\"H7218\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H5921\"* rock|strong=\"H6697\"* to|strong=\"H3381\"* David|strong=\"H1732\"*, into|strong=\"H3381\"* the|strong=\"H5921\"* cave|strong=\"H4631\"* of|strong=\"H7218\"* Adullam|strong=\"H5725\"*; and|strong=\"H7970\"* the|strong=\"H5921\"* army|strong=\"H4264\"* of|strong=\"H7218\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"* were|strong=\"H6430\"* encamped|strong=\"H2583\"* in|strong=\"H5921\"* the|strong=\"H5921\"* valley|strong=\"H6010\"* of|strong=\"H7218\"* Rephaim|strong=\"H7497\"*." + }, + { + "verseNum": 16, + "text": "David|strong=\"H1732\"* was|strong=\"H1732\"* then|strong=\"H1732\"* in|strong=\"H1035\"* the|strong=\"H1732\"* stronghold|strong=\"H4686\"*, and|strong=\"H1732\"* the|strong=\"H1732\"* garrison|strong=\"H5333\"* of|strong=\"H5333\"* the|strong=\"H1732\"* Philistines|strong=\"H6430\"* was|strong=\"H1732\"* in|strong=\"H1035\"* Bethlehem|strong=\"H1035\"* at|strong=\"H1732\"* that|strong=\"H1732\"* time." + }, + { + "verseNum": 17, + "text": "David|strong=\"H1732\"* longed, and|strong=\"H1732\"* said, “Oh|strong=\"H4310\"*, that|strong=\"H4325\"* someone|strong=\"H4310\"* would|strong=\"H4310\"* give|strong=\"H8248\"* me|strong=\"H8248\"* water|strong=\"H4325\"* to|strong=\"H1732\"* drink|strong=\"H8248\"* from|strong=\"H4325\"* the|strong=\"H1732\"* well of|strong=\"H8179\"* Bethlehem|strong=\"H1035\"*, which|strong=\"H4310\"* is|strong=\"H4310\"* by|strong=\"H4325\"* the|strong=\"H1732\"* gate|strong=\"H8179\"*!”" + }, + { + "verseNum": 18, + "text": "The|strong=\"H5375\"* three|strong=\"H7969\"* broke|strong=\"H1234\"* through|strong=\"H1234\"* the|strong=\"H5375\"* army|strong=\"H4264\"* of|strong=\"H3068\"* the|strong=\"H5375\"* Philistines|strong=\"H6430\"*, and|strong=\"H3068\"* drew|strong=\"H7579\"* water|strong=\"H4325\"* out|strong=\"H5258\"* of|strong=\"H3068\"* the|strong=\"H5375\"* well of|strong=\"H3068\"* Bethlehem|strong=\"H1035\"* that|strong=\"H3068\"* was|strong=\"H3068\"* by|strong=\"H3068\"* the|strong=\"H5375\"* gate|strong=\"H8179\"*, took|strong=\"H5375\"* it|strong=\"H5375\"*, and|strong=\"H3068\"* brought|strong=\"H5375\"* it|strong=\"H5375\"* to|strong=\"H3068\"* David|strong=\"H1732\"*; but|strong=\"H3808\"* David|strong=\"H1732\"* would|strong=\"H3068\"* not|strong=\"H3808\"* drink|strong=\"H8354\"* any|strong=\"H5375\"* of|strong=\"H3068\"* it|strong=\"H5375\"*, but|strong=\"H3808\"* poured|strong=\"H5258\"* it|strong=\"H5375\"* out|strong=\"H5258\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 19, + "text": "and|strong=\"H1818\"* said, “My|strong=\"H6213\"* God|strong=\"H3808\"* forbid|strong=\"H2486\"* me|strong=\"H5315\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* do|strong=\"H6213\"* this|strong=\"H2063\"*! Shall|strong=\"H5315\"* I|strong=\"H3588\"* drink|strong=\"H8354\"* the|strong=\"H3588\"* blood|strong=\"H1818\"* of|strong=\"H1368\"* these|strong=\"H2063\"* men|strong=\"H1368\"* who|strong=\"H5315\"* have|strong=\"H3588\"* put|strong=\"H6213\"* their|strong=\"H3588\"* lives|strong=\"H5315\"* in|strong=\"H6213\"* jeopardy|strong=\"H5315\"*?” For|strong=\"H3588\"* they|strong=\"H3588\"* risked their|strong=\"H3588\"* lives|strong=\"H5315\"* to|strong=\"H6213\"* bring|strong=\"H6213\"* it|strong=\"H3588\"*. Therefore|strong=\"H3588\"* he|strong=\"H3588\"* would|strong=\"H6213\"* not|strong=\"H3808\"* drink|strong=\"H8354\"* it|strong=\"H3588\"*. The|strong=\"H3588\"* three|strong=\"H7969\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* did|strong=\"H6213\"* these|strong=\"H2063\"* things|strong=\"H7969\"*." + }, + { + "verseNum": 20, + "text": "Abishai, the|strong=\"H5921\"* brother of|strong=\"H7218\"* Joab|strong=\"H3097\"*, was|strong=\"H8034\"* chief|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* three|strong=\"H7969\"*; for|strong=\"H5921\"* he|strong=\"H1931\"* lifted|strong=\"H5782\"* up|strong=\"H5782\"* his|strong=\"H5921\"* spear|strong=\"H2595\"* against|strong=\"H5921\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* and|strong=\"H3967\"* killed|strong=\"H2490\"* them|strong=\"H5921\"*, and|strong=\"H3967\"* had|strong=\"H1961\"* a|strong=\"H3068\"* name|strong=\"H8034\"* among|strong=\"H5921\"* the|strong=\"H5921\"* three|strong=\"H7969\"*." + }, + { + "verseNum": 21, + "text": "Of|strong=\"H8269\"* the|strong=\"H4480\"* three|strong=\"H7969\"*, he|strong=\"H5704\"* was|strong=\"H1961\"* more|strong=\"H4480\"* honorable|strong=\"H3513\"* than|strong=\"H4480\"* the|strong=\"H4480\"* two|strong=\"H8147\"*, and|strong=\"H8147\"* was|strong=\"H1961\"* made|strong=\"H3513\"* their|strong=\"H1961\"* captain|strong=\"H8269\"*; however he|strong=\"H5704\"* wasn’t included|strong=\"H1961\"* in|strong=\"H3808\"* the|strong=\"H4480\"* three|strong=\"H7969\"*." + }, + { + "verseNum": 22, + "text": "Benaiah|strong=\"H1141\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"*, the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* valiant|strong=\"H2428\"* man|strong=\"H1121\"* of|strong=\"H1121\"* Kabzeel|strong=\"H6909\"*, who|strong=\"H1931\"* had|strong=\"H1121\"* done|strong=\"H6467\"* mighty|strong=\"H7227\"* deeds|strong=\"H6467\"*, killed|strong=\"H5221\"* the|strong=\"H5221\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ariel of|strong=\"H1121\"* Moab|strong=\"H4124\"*. He|strong=\"H1931\"* also|strong=\"H1121\"* went|strong=\"H3381\"* down|strong=\"H3381\"* and|strong=\"H1121\"* killed|strong=\"H5221\"* a|strong=\"H3068\"* lion in|strong=\"H3117\"* the|strong=\"H5221\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* a|strong=\"H3068\"* pit on|strong=\"H3117\"* a|strong=\"H3068\"* snowy|strong=\"H7950\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H1931\"* killed|strong=\"H2026\"* an|strong=\"H5221\"* Egyptian|strong=\"H4713\"*, a|strong=\"H3068\"* man of|strong=\"H3027\"* great stature|strong=\"H4060\"*, five|strong=\"H2568\"* cubits|strong=\"H2568\"*+ 11:23 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. Therefore this Egyptian was about 7 feet and 6 inches or 2.28 meters tall.* high. In|strong=\"H3027\"* the|strong=\"H5221\"* Egyptian|strong=\"H4713\"*’s hand|strong=\"H3027\"* was|strong=\"H1931\"* a|strong=\"H3068\"* spear|strong=\"H2595\"* like|strong=\"H3381\"* a|strong=\"H3068\"* weaver’s beam|strong=\"H4500\"*; and|strong=\"H3027\"* he|strong=\"H1931\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* him|strong=\"H5221\"* with|strong=\"H3381\"* a|strong=\"H3068\"* staff|strong=\"H7626\"*, plucked|strong=\"H1497\"* the|strong=\"H5221\"* spear|strong=\"H2595\"* out|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5221\"* Egyptian|strong=\"H4713\"*’s hand|strong=\"H3027\"*, and|strong=\"H3027\"* killed|strong=\"H2026\"* him|strong=\"H5221\"* with|strong=\"H3381\"* his|strong=\"H5221\"* own|strong=\"H3027\"* spear|strong=\"H2595\"*." + }, + { + "verseNum": 24, + "text": "Benaiah|strong=\"H1141\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* did|strong=\"H6213\"* these|strong=\"H6213\"* things|strong=\"H7969\"* and|strong=\"H1121\"* had|strong=\"H1121\"* a|strong=\"H3068\"* name|strong=\"H8034\"* among|strong=\"H8034\"* the|strong=\"H6213\"* three|strong=\"H7969\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*." + }, + { + "verseNum": 25, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H1931\"* was|strong=\"H1732\"* more|strong=\"H4480\"* honorable|strong=\"H3513\"* than|strong=\"H4480\"* the|strong=\"H5921\"* thirty|strong=\"H7970\"*, but|strong=\"H3808\"* he|strong=\"H1931\"* didn’t attain to|strong=\"H5921\"* the|strong=\"H5921\"* three|strong=\"H7969\"*; and|strong=\"H7970\"* David|strong=\"H1732\"* set|strong=\"H7760\"* him|strong=\"H5921\"* over|strong=\"H5921\"* his|strong=\"H7760\"* guard|strong=\"H4928\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H3097\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* the|strong=\"H3097\"* armies|strong=\"H2428\"* also|strong=\"H1121\"* include Asahel|strong=\"H6214\"* the|strong=\"H3097\"* brother of|strong=\"H1121\"* Joab|strong=\"H3097\"*, Elhanan the|strong=\"H3097\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Dodo|strong=\"H1734\"* of|strong=\"H1121\"* Bethlehem|strong=\"H1035\"*," + }, + { + "verseNum": 27, + "text": "Shammoth|strong=\"H8054\"* the|strong=\"H2503\"* Harorite|strong=\"H2033\"*, Helez|strong=\"H2503\"* the|strong=\"H2503\"* Pelonite|strong=\"H6397\"*," + }, + { + "verseNum": 28, + "text": "Ira|strong=\"H5896\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ikkesh|strong=\"H6142\"* the|strong=\"H1121\"* Tekoite|strong=\"H8621\"*, Abiezer the|strong=\"H1121\"* Anathothite|strong=\"H6069\"*," + }, + { + "verseNum": 29, + "text": "Sibbecai|strong=\"H5444\"* the|strong=\"H5444\"* Hushathite|strong=\"H2843\"*, Ilai|strong=\"H5866\"* the|strong=\"H5444\"* Ahohite," + }, + { + "verseNum": 30, + "text": "Maharai|strong=\"H4121\"* the|strong=\"H1121\"* Netophathite|strong=\"H5200\"*, Heled|strong=\"H2466\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Baanah|strong=\"H1196\"* the|strong=\"H1121\"* Netophathite|strong=\"H5200\"*," + }, + { + "verseNum": 31, + "text": "Ithai the|strong=\"H1141\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ribai|strong=\"H7380\"* of|strong=\"H1121\"* Gibeah|strong=\"H1390\"* of|strong=\"H1121\"* the|strong=\"H1141\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, Benaiah|strong=\"H1141\"* the|strong=\"H1141\"* Pirathonite|strong=\"H6553\"*," + }, + { + "verseNum": 32, + "text": "Hurai|strong=\"H2360\"* of|strong=\"H5158\"* the brooks|strong=\"H5158\"* of|strong=\"H5158\"* Gaash|strong=\"H1608\"*, Abiel the Arbathite|strong=\"H6164\"*," + }, + { + "verseNum": 33, + "text": "Azmaveth|strong=\"H5820\"* the|strong=\"H5820\"* Baharumite, Eliahba the|strong=\"H5820\"* Shaalbonite|strong=\"H8170\"*," + }, + { + "verseNum": 34, + "text": "the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hashem|strong=\"H2044\"* the|strong=\"H1121\"* Gizonite|strong=\"H1493\"*, Jonathan|strong=\"H3129\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shagee|strong=\"H7681\"* the|strong=\"H1121\"* Hararite|strong=\"H2043\"*," + }, + { + "verseNum": 35, + "text": "Ahiam the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Sacar|strong=\"H7940\"* the|strong=\"H1121\"* Hararite|strong=\"H2043\"*, Eliphal the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ur," + }, + { + "verseNum": 36, + "text": "Hepher|strong=\"H2660\"* the|strong=\"H2660\"* Mecherathite|strong=\"H4382\"*, Ahijah the|strong=\"H2660\"* Pelonite|strong=\"H6397\"*," + }, + { + "verseNum": 37, + "text": "Hezro|strong=\"H2695\"* the|strong=\"H1121\"* Carmelite|strong=\"H3761\"*, Naarai|strong=\"H5293\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ezbai," + }, + { + "verseNum": 38, + "text": "Joel|strong=\"H3100\"* the|strong=\"H5416\"* brother of|strong=\"H1121\"* Nathan|strong=\"H5416\"*, Mibhar|strong=\"H4006\"* the|strong=\"H5416\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hagri|strong=\"H1905\"*," + }, + { + "verseNum": 39, + "text": "Zelek|strong=\"H6768\"* the|strong=\"H5375\"* Ammonite|strong=\"H5984\"*, Naharai|strong=\"H5171\"* the|strong=\"H5375\"* Berothite|strong=\"H1307\"* (the|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"* of|strong=\"H1121\"* Joab|strong=\"H3097\"* the|strong=\"H5375\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"*)," + }, + { + "verseNum": 40, + "text": "Ira|strong=\"H5896\"* the|strong=\"H5896\"* Ithrite|strong=\"H3505\"*, Gareb|strong=\"H1619\"* the|strong=\"H5896\"* Ithrite|strong=\"H3505\"*," + }, + { + "verseNum": 41, + "text": "Uriah the|strong=\"H1121\"* Hittite|strong=\"H2850\"*, Zabad|strong=\"H2066\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahlai," + }, + { + "verseNum": 42, + "text": "Adina|strong=\"H5721\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shiza|strong=\"H7877\"* the|strong=\"H5921\"* Reubenite|strong=\"H7206\"* (a|strong=\"H3068\"* chief|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Reubenites|strong=\"H7206\"*), and|strong=\"H1121\"* thirty|strong=\"H7970\"* with|strong=\"H5921\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 43, + "text": "Hanan|strong=\"H2605\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maacah|strong=\"H4601\"*, Joshaphat|strong=\"H3146\"* the|strong=\"H1121\"* Mithnite|strong=\"H4981\"*," + }, + { + "verseNum": 44, + "text": "Uzzia|strong=\"H5814\"* the|strong=\"H1121\"* Ashterathite|strong=\"H6254\"*, Shama|strong=\"H8091\"* and|strong=\"H1121\"* Jeiel|strong=\"H3273\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hotham|strong=\"H2369\"* the|strong=\"H1121\"* Aroerite|strong=\"H6200\"*," + }, + { + "verseNum": 45, + "text": "Jediael|strong=\"H3043\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimri|strong=\"H8113\"*, and|strong=\"H1121\"* Joha|strong=\"H3109\"* his|strong=\"H3109\"* brother, the|strong=\"H1121\"* Tizite|strong=\"H8491\"*," + }, + { + "verseNum": 46, + "text": "Eliel the|strong=\"H1121\"* Mahavite|strong=\"H4233\"*, and|strong=\"H1121\"* Jeribai|strong=\"H3403\"*, and|strong=\"H1121\"* Joshaviah|strong=\"H3145\"*, the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Elnaam, and|strong=\"H1121\"* Ithmah|strong=\"H3495\"* the|strong=\"H1121\"* Moabite|strong=\"H4125\"*," + }, + { + "verseNum": 47, + "text": "Eliel, Obed|strong=\"H5744\"*, and|strong=\"H5744\"* Jaasiel|strong=\"H3300\"* the|strong=\"H3300\"* Mezobaite|strong=\"H4677\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Now these|strong=\"H1992\"* are|strong=\"H1992\"* those|strong=\"H1992\"* who|strong=\"H1121\"* came|strong=\"H7586\"* to|strong=\"H6440\"* David|strong=\"H1732\"* to|strong=\"H6440\"* Ziklag|strong=\"H6860\"* while|strong=\"H5750\"* he|strong=\"H1732\"* was|strong=\"H1732\"* a|strong=\"H3068\"* fugitive from|strong=\"H6440\"* Saul|strong=\"H7586\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kish|strong=\"H7027\"*. They|strong=\"H1992\"* were|strong=\"H1121\"* among|strong=\"H1368\"* the|strong=\"H6440\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*, his|strong=\"H1732\"* helpers|strong=\"H5826\"* in|strong=\"H4421\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H7586\"* were|strong=\"H1144\"* armed|strong=\"H5401\"* with|strong=\"H5401\"* bows|strong=\"H7198\"*, and|strong=\"H7586\"* could use both the|strong=\"H7586\"* right|strong=\"H3231\"* hand|strong=\"H3231\"* and|strong=\"H7586\"* the|strong=\"H7586\"* left|strong=\"H8041\"* in|strong=\"H7586\"* slinging stones and|strong=\"H7586\"* in|strong=\"H7586\"* shooting arrows|strong=\"H2671\"* from|strong=\"H3231\"* the|strong=\"H7586\"* bow|strong=\"H7198\"*. They|strong=\"H7586\"* were|strong=\"H1144\"* of|strong=\"H7198\"* Saul|strong=\"H7586\"*’s relatives of|strong=\"H7198\"* the|strong=\"H7586\"* tribe of|strong=\"H7198\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3058\"* chief|strong=\"H7218\"* was|strong=\"H1121\"* Ahiezer, then|strong=\"H1121\"* Joash|strong=\"H3101\"*, the|strong=\"H3058\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shemaah|strong=\"H8094\"* the|strong=\"H3058\"* Gibeathite|strong=\"H1395\"*; Jeziel|strong=\"H3149\"* and|strong=\"H1121\"* Pelet|strong=\"H6404\"*, the|strong=\"H3058\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Azmaveth|strong=\"H5820\"*; Beracah|strong=\"H1294\"*; Jehu|strong=\"H3058\"* the|strong=\"H3058\"* Anathothite|strong=\"H6069\"*;" + }, + { + "verseNum": 4, + "text": "Ishmaiah|strong=\"H3460\"* the|strong=\"H5921\"* Gibeonite|strong=\"H1393\"*, a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* among|strong=\"H5921\"* the|strong=\"H5921\"* thirty|strong=\"H7970\"* and|strong=\"H7970\"* a|strong=\"H3068\"* leader of|strong=\"H1368\"* the|strong=\"H5921\"* thirty|strong=\"H7970\"*; Jeremiah; Jahaziel; Johanan; Jozabad the|strong=\"H5921\"* Gederathite;" + }, + { + "verseNum": 5, + "text": "Eluzai; Jerimoth; Bealiah; Shemariah; Shephatiah the|strong=\"H3414\"* Haruphite;" + }, + { + "verseNum": 6, + "text": "Elkanah, Isshiah, Azarel, Joezer, and|strong=\"H3406\"* Jashobeam, the|strong=\"H8203\"* Korahites;" + }, + { + "verseNum": 7, + "text": "and Joelah and Zebadiah, the|strong=\"H3449\"* sons of Jeroham of Gedor." + }, + { + "verseNum": 8, + "text": "Some|strong=\"H4480\"* Gadites joined David in|strong=\"H1121\"* the|strong=\"H4480\"* stronghold in|strong=\"H1121\"* the|strong=\"H4480\"* wilderness, mighty|strong=\"H1121\"* men|strong=\"H1121\"* of|strong=\"H1121\"* valor, men|strong=\"H1121\"* trained for|strong=\"H1121\"* war, who|strong=\"H1121\"* could handle shield and|strong=\"H1121\"* spear; whose|strong=\"H1121\"* faces were|strong=\"H1121\"* like|strong=\"H1121\"* the|strong=\"H4480\"* faces of|strong=\"H1121\"* lions, and|strong=\"H1121\"* they were|strong=\"H1121\"* as|strong=\"H1121\"* swift as|strong=\"H1121\"* the|strong=\"H4480\"* gazelles on|strong=\"H4480\"* the|strong=\"H4480\"* mountains:" + }, + { + "verseNum": 9, + "text": "Ezer the|strong=\"H6440\"* chief|strong=\"H1368\"*, Obadiah the|strong=\"H6440\"* second, Eliab the|strong=\"H6440\"* third," + }, + { + "verseNum": 10, + "text": "Mishmannah the|strong=\"H5662\"* fourth, Jeremiah the|strong=\"H5662\"* fifth," + }, + { + "verseNum": 11, + "text": "Attai the|strong=\"H3414\"* sixth, Eliel the|strong=\"H3414\"* seventh," + }, + { + "verseNum": 12, + "text": "Johanan the|strong=\"H6262\"* eighth, Elzabad the|strong=\"H6262\"* ninth," + }, + { + "verseNum": 13, + "text": "Jeremiah the|strong=\"H3076\"* tenth, and|strong=\"H3076\"* Machbannai the|strong=\"H3076\"* eleventh." + }, + { + "verseNum": 14, + "text": "These of|strong=\"H3414\"* the|strong=\"H3414\"* sons of|strong=\"H3414\"* Gad were captains of|strong=\"H3414\"* the|strong=\"H3414\"* army. He|strong=\"H3414\"* who was|strong=\"H3414\"* least was|strong=\"H3414\"* equal to|strong=\"H6224\"* one hundred, and|strong=\"H3414\"* the|strong=\"H3414\"* greatest to|strong=\"H6224\"* one thousand." + }, + { + "verseNum": 15, + "text": "These are|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* went|strong=\"H1121\"* over|strong=\"H7218\"* the|strong=\"H1121\"* Jordan in|strong=\"H1419\"* the|strong=\"H1121\"* first|strong=\"H1121\"* month, when|strong=\"H1121\"* it|strong=\"H7218\"* had|strong=\"H6635\"* overflowed all|strong=\"H1419\"* its banks; and|strong=\"H3967\"* they put to|strong=\"H1121\"* flight all|strong=\"H1419\"* who|strong=\"H1121\"* lived in|strong=\"H1419\"* the|strong=\"H1121\"* valleys, both toward|strong=\"H7218\"* the|strong=\"H1121\"* east and|strong=\"H3967\"* toward|strong=\"H7218\"* the|strong=\"H1121\"* west." + }, + { + "verseNum": 16, + "text": "Some|strong=\"H1992\"* of|strong=\"H6010\"* the|strong=\"H3605\"* children of|strong=\"H6010\"* Benjamin and|strong=\"H5674\"* Judah came|strong=\"H5674\"* to|strong=\"H5921\"* the|strong=\"H3605\"* stronghold to|strong=\"H5921\"* David." + }, + { + "verseNum": 17, + "text": "David|strong=\"H1732\"* went|strong=\"H1732\"* out|strong=\"H4480\"* to|strong=\"H5704\"* meet|strong=\"H1121\"* them|strong=\"H4480\"*, and|strong=\"H1121\"* answered them|strong=\"H4480\"*, “If|strong=\"H1121\"* you|strong=\"H5704\"* have|strong=\"H1121\"* come|strong=\"H3063\"* peaceably to|strong=\"H5704\"* me|strong=\"H4480\"* to|strong=\"H5704\"* help|strong=\"H4480\"* me|strong=\"H4480\"*, my|strong=\"H1732\"* heart will|strong=\"H1121\"* be|strong=\"H1121\"* united with|strong=\"H1732\"* you|strong=\"H5704\"*; but if|strong=\"H1121\"* you|strong=\"H5704\"* have|strong=\"H1121\"* come|strong=\"H3063\"* to|strong=\"H5704\"* betray me|strong=\"H4480\"* to|strong=\"H5704\"* my|strong=\"H1732\"* adversaries, since|strong=\"H4480\"* there|strong=\"H4480\"* is|strong=\"H1121\"* no|strong=\"H4480\"* wrong in|strong=\"H1121\"* my|strong=\"H1732\"* hands, may|strong=\"H1121\"* the|strong=\"H4480\"* God of|strong=\"H1121\"* our|strong=\"H4480\"* fathers see this|strong=\"H1732\"* and|strong=\"H1121\"* rebuke it|strong=\"H5704\"*.”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H6030\"* the|strong=\"H6440\"* Spirit came|strong=\"H1961\"* on|strong=\"H5921\"* Amasai, who|strong=\"H6862\"* was|strong=\"H1961\"* chief of|strong=\"H6440\"* the|strong=\"H6440\"* thirty, and|strong=\"H6030\"* he|strong=\"H1732\"* said|strong=\"H6030\"*, “We|strong=\"H7200\"* are|strong=\"H1961\"* yours, David|strong=\"H1732\"*, and|strong=\"H6030\"* on|strong=\"H5921\"* your|strong=\"H5921\"* side, you|strong=\"H6440\"* son of|strong=\"H6440\"* Jesse. Peace|strong=\"H7965\"*, peace|strong=\"H7965\"* be|strong=\"H1961\"* to|strong=\"H3318\"* you|strong=\"H6440\"*, and|strong=\"H6030\"* peace|strong=\"H7965\"* be|strong=\"H1961\"* to|strong=\"H3318\"* your|strong=\"H5921\"* helpers|strong=\"H5826\"*; for|strong=\"H5921\"* your|strong=\"H5921\"* God|strong=\"H3808\"* helps|strong=\"H5826\"* you|strong=\"H6440\"*.” Then|strong=\"H6030\"* David|strong=\"H1732\"* received|strong=\"H1961\"* them|strong=\"H5921\"* and|strong=\"H6030\"* made|strong=\"H1961\"* them|strong=\"H5921\"* captains of|strong=\"H6440\"* the|strong=\"H6440\"* band." + }, + { + "verseNum": 19, + "text": "Some of|strong=\"H1121\"* Manasseh also|strong=\"H1732\"* joined David|strong=\"H1732\"* when|strong=\"H3588\"* he|strong=\"H3588\"* came|strong=\"H3847\"* with|strong=\"H5973\"* the|strong=\"H3588\"* Philistines against|strong=\"H5973\"* Saul to|strong=\"H5414\"* battle, but|strong=\"H3588\"* they|strong=\"H3588\"* didn’t help|strong=\"H5826\"* them|strong=\"H5414\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* lords of|strong=\"H1121\"* the|strong=\"H3588\"* Philistines sent|strong=\"H5414\"* him|strong=\"H5414\"* away|strong=\"H5973\"* after|strong=\"H3588\"* consultation, saying, “He|strong=\"H3588\"* will|strong=\"H1121\"* desert to|strong=\"H5414\"* his|strong=\"H5414\"* master|strong=\"H5414\"* Saul to|strong=\"H5414\"* the|strong=\"H3588\"* jeopardy of|strong=\"H1121\"* our|strong=\"H5414\"* heads|strong=\"H7218\"*.”" + }, + { + "verseNum": 20, + "text": "As|strong=\"H3588\"* he|strong=\"H3588\"* went|strong=\"H1732\"* to|strong=\"H7971\"* Ziklag, some|strong=\"H4480\"* from|strong=\"H4480\"* Manasseh|strong=\"H4519\"* joined|strong=\"H5307\"* him|strong=\"H5921\"*: Adnah, Jozabad, Jediael, Michael, Jozabad, Elihu, and|strong=\"H7971\"* Zillethai, captains|strong=\"H7218\"* of|strong=\"H7218\"* thousands who|strong=\"H4421\"* were|strong=\"H6430\"* of|strong=\"H7218\"* Manasseh|strong=\"H4519\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"H5921\"* helped David against|strong=\"H5921\"* the|strong=\"H5921\"* band|strong=\"H7218\"* of|strong=\"H7218\"* raiders, for|strong=\"H5921\"* they|strong=\"H5921\"* were|strong=\"H7218\"* all|strong=\"H3212\"* mighty men|strong=\"H7218\"* of|strong=\"H7218\"* valor and|strong=\"H3212\"* were|strong=\"H7218\"* captains|strong=\"H7218\"* in|strong=\"H5921\"* the|strong=\"H5921\"* army." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* from|strong=\"H5921\"* day to|strong=\"H1961\"* day men|strong=\"H1368\"* came|strong=\"H1961\"* to|strong=\"H1961\"* David|strong=\"H1732\"* to|strong=\"H1961\"* help|strong=\"H5826\"* him|strong=\"H5921\"*, until|strong=\"H3588\"* there|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* great|strong=\"H1368\"* army|strong=\"H2428\"*, like|strong=\"H1961\"* God’s army|strong=\"H2428\"*." + }, + { + "verseNum": 23, + "text": "These|strong=\"H1732\"* are|strong=\"H3117\"* the|strong=\"H5921\"* numbers of|strong=\"H3117\"* the|strong=\"H5921\"* heads of|strong=\"H3117\"* those|strong=\"H5921\"* who|strong=\"H3588\"* were|strong=\"H3117\"* armed for|strong=\"H3588\"* war, who|strong=\"H3588\"* came|strong=\"H1732\"* to|strong=\"H5704\"* David|strong=\"H1732\"* to|strong=\"H5704\"* Hebron to|strong=\"H5704\"* turn the|strong=\"H5921\"* kingdom of|strong=\"H3117\"* Saul to|strong=\"H5704\"* him|strong=\"H5921\"*, according|strong=\"H5921\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s word." + }, + { + "verseNum": 24, + "text": "The|strong=\"H5921\"* children of|strong=\"H3068\"* Judah who|strong=\"H3068\"* bore shield and|strong=\"H3068\"* spear were|strong=\"H1732\"* six thousand eight hundred, armed|strong=\"H2502\"* for|strong=\"H5921\"* war|strong=\"H6635\"*." + }, + { + "verseNum": 25, + "text": "Of|strong=\"H1121\"* the|strong=\"H5375\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon, mighty|strong=\"H1121\"* men|strong=\"H1121\"* of|strong=\"H1121\"* valor for|strong=\"H1121\"* the|strong=\"H5375\"* war|strong=\"H6635\"*: seven thousand one|strong=\"H1121\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 26, + "text": "Of|strong=\"H1121\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Levi: four thousand six hundred|strong=\"H3967\"*." + }, + { + "verseNum": 27, + "text": "Jehoiada was|strong=\"H1121\"* the|strong=\"H4480\"* leader of|strong=\"H1121\"* the|strong=\"H4480\"* household of|strong=\"H1121\"* Aaron; and|strong=\"H3967\"* with|strong=\"H4480\"* him|strong=\"H4480\"* were|strong=\"H1121\"* three thousand seven hundred|strong=\"H3967\"*," + }, + { + "verseNum": 28, + "text": "and|strong=\"H3967\"* Zadok, a|strong=\"H3068\"* young man mighty|strong=\"H7969\"* of|strong=\"H5057\"* valor, and|strong=\"H3967\"* of|strong=\"H5057\"* his|strong=\"H5973\"* father’s house twenty-two captains|strong=\"H5057\"*." + }, + { + "verseNum": 29, + "text": "Of|strong=\"H1004\"* the|strong=\"H6659\"* children|strong=\"H5288\"* of|strong=\"H1004\"* Benjamin, Saul’s relatives: three thousand, for|strong=\"H1004\"* until then, the|strong=\"H6659\"* greatest part of|strong=\"H1004\"* them|strong=\"H8147\"* had|strong=\"H8269\"* kept their|strong=\"H8147\"* allegiance to|strong=\"H1004\"* Saul’s house|strong=\"H1004\"*." + }, + { + "verseNum": 30, + "text": "Of|strong=\"H1121\"* the|strong=\"H8104\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim: twenty thousand eight hundred, mighty|strong=\"H7969\"* men|strong=\"H1121\"* of|strong=\"H1121\"* valor, famous men|strong=\"H1121\"* in|strong=\"H1004\"* their|strong=\"H8104\"* fathers’ houses|strong=\"H1004\"*." + }, + { + "verseNum": 31, + "text": "Of|strong=\"H1121\"* the|strong=\"H4480\"* half-tribe of|strong=\"H1121\"* Manasseh: eighteen|strong=\"H8083\"* thousand, who|strong=\"H1121\"* were|strong=\"H1121\"* mentioned by|strong=\"H8034\"* name|strong=\"H8034\"*, to|strong=\"H1121\"* come|strong=\"H1368\"* and|strong=\"H3967\"* make|strong=\"H8034\"* David king." + }, + { + "verseNum": 32, + "text": "Of|strong=\"H4294\"* the|strong=\"H1732\"* children of|strong=\"H4294\"* Issachar, men|strong=\"H8034\"* who had|strong=\"H1732\"* understanding of|strong=\"H4294\"* the|strong=\"H1732\"* times, to|strong=\"H1732\"* know what|strong=\"H1732\"* Israel ought to|strong=\"H1732\"* do, their|strong=\"H1732\"* heads were|strong=\"H1732\"* two|strong=\"H4427\"* hundred; and|strong=\"H1732\"* all their|strong=\"H1732\"* brothers were|strong=\"H1732\"* at|strong=\"H1732\"* their|strong=\"H1732\"* command." + }, + { + "verseNum": 33, + "text": "Of|strong=\"H1121\"* Zebulun, such|strong=\"H6213\"* as|strong=\"H6213\"* were|strong=\"H3478\"* able to|strong=\"H3478\"* go|strong=\"H3478\"* out|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* army, who|strong=\"H3605\"* could|strong=\"H3045\"* set|strong=\"H6213\"* the|strong=\"H3605\"* battle in|strong=\"H5921\"* array with|strong=\"H6213\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H1121\"* instruments of|strong=\"H1121\"* war: fifty thousand who|strong=\"H3605\"* could|strong=\"H3045\"* command|strong=\"H6310\"* and|strong=\"H3967\"* were|strong=\"H3478\"* not|strong=\"H3045\"* of|strong=\"H1121\"* double heart." + }, + { + "verseNum": 34, + "text": "Of|strong=\"H3627\"* Naphtali: one|strong=\"H3605\"* thousand captains, and|strong=\"H2572\"* with|strong=\"H3318\"* them|strong=\"H3318\"* with|strong=\"H3318\"* shield and|strong=\"H2572\"* spear thirty-seven thousand." + }, + { + "verseNum": 35, + "text": "Of|strong=\"H8269\"* the|strong=\"H5973\"* Danites who|strong=\"H8269\"* could set the|strong=\"H5973\"* battle in|strong=\"H5973\"* array: twenty-eight thousand six hundred." + }, + { + "verseNum": 36, + "text": "Of|strong=\"H4480\"* Asher, such as|strong=\"H6186\"* were|strong=\"H4421\"* able to|strong=\"H4480\"* go out|strong=\"H4480\"* in|strong=\"H4421\"* the|strong=\"H4480\"* army|strong=\"H4421\"*, who|strong=\"H4421\"* could set|strong=\"H6186\"* the|strong=\"H4480\"* battle|strong=\"H4421\"* in|strong=\"H4421\"* array|strong=\"H6186\"*: forty thousand." + }, + { + "verseNum": 37, + "text": "On|strong=\"H3318\"* the|strong=\"H3318\"* other side of|strong=\"H6635\"* the|strong=\"H3318\"* Jordan, of|strong=\"H6635\"* the|strong=\"H3318\"* Reubenites, the|strong=\"H3318\"* Gadites, and|strong=\"H3318\"* of|strong=\"H6635\"* the|strong=\"H3318\"* half-tribe of|strong=\"H6635\"* Manasseh, with|strong=\"H3318\"* all|strong=\"H3318\"* kinds of|strong=\"H6635\"* instruments of|strong=\"H6635\"* war|strong=\"H4421\"* for|strong=\"H6635\"* the|strong=\"H3318\"* battle|strong=\"H4421\"*: one hundred twenty thousand." + }, + { + "verseNum": 38, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H3627\"* men|strong=\"H3605\"* of|strong=\"H7626\"* war|strong=\"H4421\"* who|strong=\"H3605\"* could order the|strong=\"H3605\"* battle|strong=\"H4421\"* array|strong=\"H6635\"*, and|strong=\"H3967\"* came|strong=\"H6635\"* with|strong=\"H3627\"* a|strong=\"H3068\"* perfect heart to|strong=\"H4480\"* Hebron to|strong=\"H4480\"* make David king over|strong=\"H4480\"* all|strong=\"H3605\"* Israel|strong=\"H4421\"*; and|strong=\"H3967\"* all|strong=\"H3605\"* the|strong=\"H3605\"* rest also|strong=\"H4519\"* of|strong=\"H7626\"* Israel|strong=\"H4421\"* were|strong=\"H3627\"* of|strong=\"H7626\"* one|strong=\"H3605\"* heart to|strong=\"H4480\"* make David king." + }, + { + "verseNum": 39, + "text": "They|strong=\"H5921\"* were|strong=\"H3478\"* there|strong=\"H3605\"* with|strong=\"H5921\"* David|strong=\"H1732\"* three days, eating and|strong=\"H3478\"* drinking; for|strong=\"H5921\"* their|strong=\"H3605\"* brothers had|strong=\"H3478\"* supplied provisions for|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 40, + "text": "Moreover|strong=\"H1961\"* those|strong=\"H1961\"* who|strong=\"H3588\"* were|strong=\"H1961\"* near|strong=\"H5973\"* to|strong=\"H1961\"* them|strong=\"H1961\"*, as|strong=\"H3117\"* far as|strong=\"H3117\"* Issachar, Zebulun, and|strong=\"H3117\"* Naphtali, brought|strong=\"H1961\"* bread on|strong=\"H3117\"* donkeys, on|strong=\"H3117\"* camels, on|strong=\"H3117\"* mules, and|strong=\"H3117\"* on|strong=\"H3117\"* oxen: supplies of|strong=\"H3117\"* flour, cakes of|strong=\"H3117\"* figs, clusters of|strong=\"H3117\"* raisins, wine, oil, cattle, and|strong=\"H3117\"* sheep in|strong=\"H3117\"* abundance; for|strong=\"H3588\"* there|strong=\"H8033\"* was|strong=\"H1961\"* joy in|strong=\"H3117\"* Israel." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* consulted|strong=\"H3289\"* with|strong=\"H5973\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* thousands and|strong=\"H3967\"* of|strong=\"H8269\"* hundreds|strong=\"H3967\"*, even with|strong=\"H5973\"* every|strong=\"H3605\"* leader|strong=\"H5057\"*." + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* said to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, “If it|strong=\"H5921\"* seems|strong=\"H3605\"* good|strong=\"H2895\"* to|strong=\"H3478\"* you|strong=\"H3605\"*, and|strong=\"H3478\"* if it|strong=\"H5921\"* is|strong=\"H3068\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, let|strong=\"H7971\"*’s send|strong=\"H7971\"* word everywhere|strong=\"H3605\"* to|strong=\"H3478\"* our|strong=\"H3068\"* brothers who|strong=\"H3605\"* are|strong=\"H3478\"* left|strong=\"H7604\"* in|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Israel|strong=\"H3478\"*, with|strong=\"H5973\"* whom the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3478\"* Levites|strong=\"H3881\"* are|strong=\"H3478\"* in|strong=\"H5921\"* their|strong=\"H3605\"* cities|strong=\"H5892\"* that|strong=\"H3605\"* have|strong=\"H3068\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, that|strong=\"H3605\"* they|strong=\"H3068\"* may|strong=\"H3068\"* gather|strong=\"H6908\"* themselves|strong=\"H6908\"* to|strong=\"H3478\"* us|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "Also|strong=\"H7586\"*, let|strong=\"H3808\"*’s bring|strong=\"H5437\"* the|strong=\"H3588\"* ark of|strong=\"H3117\"* our|strong=\"H3588\"* God|strong=\"H3808\"* back|strong=\"H5437\"* to|strong=\"H3117\"* us|strong=\"H3588\"* again|strong=\"H5437\"*, for|strong=\"H3588\"* we|strong=\"H3068\"* didn’t seek|strong=\"H1875\"* it|strong=\"H3588\"* in|strong=\"H3117\"* the|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Saul|strong=\"H7586\"*.”" + }, + { + "verseNum": 4, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* said|strong=\"H1697\"* that|strong=\"H3588\"* they|strong=\"H3588\"* would|strong=\"H5971\"* do|strong=\"H6213\"* so|strong=\"H3651\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* thing|strong=\"H1697\"* was|strong=\"H1697\"* right|strong=\"H3474\"* in|strong=\"H6213\"* the|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H1697\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 5, + "text": "So|strong=\"H4480\"* David|strong=\"H1732\"* assembled|strong=\"H6950\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* together|strong=\"H6950\"*, from|strong=\"H4480\"* the|strong=\"H3605\"* Shihor|strong=\"H7883\"* River|strong=\"H5704\"* of|strong=\"H4480\"* Egypt|strong=\"H4714\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* entrance of|strong=\"H4480\"* Hamath|strong=\"H2574\"*, to|strong=\"H5704\"* bring|strong=\"H1732\"* God’s ark from|strong=\"H4480\"* Kiriath|strong=\"H7157\"* Jearim." + }, + { + "verseNum": 6, + "text": "David|strong=\"H1732\"* went|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H3068\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* Baalah|strong=\"H1173\"*, that|strong=\"H3605\"* is|strong=\"H3068\"*, to|strong=\"H3478\"* Kiriath|strong=\"H7157\"* Jearim, which|strong=\"H3068\"* belonged|strong=\"H5927\"* to|strong=\"H3478\"* Judah|strong=\"H3063\"*, to|strong=\"H3478\"* bring|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* there|strong=\"H8033\"* God|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s ark that|strong=\"H3605\"* sits|strong=\"H3427\"* above the|strong=\"H3605\"* cherubim|strong=\"H3742\"*, that|strong=\"H3605\"* is|strong=\"H3068\"* called|strong=\"H7121\"* by|strong=\"H3068\"* the|strong=\"H3605\"* Name|strong=\"H8034\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H5921\"* carried|strong=\"H7392\"* God’s ark on|strong=\"H5921\"* a|strong=\"H3068\"* new|strong=\"H2319\"* cart|strong=\"H5699\"*, and|strong=\"H1004\"* brought|strong=\"H5090\"* it|strong=\"H5921\"* out|strong=\"H5921\"* of|strong=\"H1004\"* Abinadab’s house|strong=\"H1004\"*; and|strong=\"H1004\"* Uzza|strong=\"H5798\"* and|strong=\"H1004\"* Ahio drove|strong=\"H5090\"* the|strong=\"H5921\"* cart|strong=\"H5699\"*." + }, + { + "verseNum": 8, + "text": "David|strong=\"H1732\"* and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* played|strong=\"H7832\"* before|strong=\"H6440\"* God with|strong=\"H6440\"* all|strong=\"H3605\"* their|strong=\"H3605\"* might|strong=\"H5797\"*, even with|strong=\"H6440\"* songs|strong=\"H7892\"*, with|strong=\"H6440\"* harps|strong=\"H3658\"*, with|strong=\"H6440\"* stringed instruments|strong=\"H7892\"*, with|strong=\"H6440\"* tambourines|strong=\"H8596\"*, with|strong=\"H6440\"* cymbals|strong=\"H4700\"*, and|strong=\"H3478\"* with|strong=\"H6440\"* trumpets|strong=\"H2689\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* came to|strong=\"H5704\"* Chidon|strong=\"H3592\"*’s threshing|strong=\"H1637\"* floor|strong=\"H1637\"*, Uzza|strong=\"H5798\"* put|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"* to|strong=\"H5704\"* hold the|strong=\"H3588\"* ark, for|strong=\"H3588\"* the|strong=\"H3588\"* oxen|strong=\"H1241\"* stumbled|strong=\"H8058\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"*’s anger|strong=\"H6440\"* burned|strong=\"H2734\"* against|strong=\"H5921\"* Uzza|strong=\"H5798\"*, and|strong=\"H3068\"* he|strong=\"H8033\"* struck|strong=\"H5221\"* him|strong=\"H6440\"* because|strong=\"H5921\"* he|strong=\"H8033\"* put|strong=\"H4191\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H6440\"* ark; and|strong=\"H3068\"* he|strong=\"H8033\"* died|strong=\"H4191\"* there|strong=\"H8033\"* before|strong=\"H6440\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "David|strong=\"H1732\"* was|strong=\"H3068\"* displeased|strong=\"H2734\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* broken|strong=\"H6555\"* out|strong=\"H6555\"* against|strong=\"H2734\"* Uzza|strong=\"H5798\"*. He|strong=\"H1931\"* called|strong=\"H7121\"* that|strong=\"H3588\"* place|strong=\"H4725\"* Perez Uzza|strong=\"H5798\"*, to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 12, + "text": "David|strong=\"H1732\"* was|strong=\"H1732\"* afraid|strong=\"H3372\"* of|strong=\"H3117\"* God that|strong=\"H3117\"* day|strong=\"H3117\"*, saying, “How|strong=\"H1963\"* can I|strong=\"H3117\"* bring|strong=\"H1732\"* God’s ark home to|strong=\"H3117\"* me|strong=\"H3372\"*?”" + }, + { + "verseNum": 13, + "text": "So|strong=\"H3808\"* David|strong=\"H1732\"* didn’t move|strong=\"H5493\"* the|strong=\"H5493\"* ark with|strong=\"H1004\"* him|strong=\"H5186\"* into|strong=\"H5892\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, but|strong=\"H3808\"* carried it|strong=\"H5186\"* aside|strong=\"H5493\"* into|strong=\"H5892\"* Obed-Edom|strong=\"H5654\"* the|strong=\"H5493\"* Gittite|strong=\"H1663\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 14, + "text": "God|strong=\"H3068\"*’s ark remained|strong=\"H3427\"* with|strong=\"H5973\"* the|strong=\"H3605\"* family|strong=\"H1004\"* of|strong=\"H1004\"* Obed-Edom|strong=\"H5654\"* in|strong=\"H3427\"* his|strong=\"H3605\"* house|strong=\"H1004\"* three|strong=\"H7969\"* months|strong=\"H2320\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* blessed|strong=\"H1288\"* Obed-Edom|strong=\"H5654\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3068\"* had|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Hiram|strong=\"H2438\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Tyre|strong=\"H6865\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* David|strong=\"H1732\"* with|strong=\"H1004\"* cedar trees|strong=\"H6086\"*, masons|strong=\"H7023\"*, and|strong=\"H7971\"* carpenters|strong=\"H2796\"*, to|strong=\"H7971\"* build|strong=\"H1129\"* him|strong=\"H7971\"* a|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* perceived|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* established|strong=\"H3559\"* him|strong=\"H5921\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*, for|strong=\"H3588\"* his|strong=\"H5375\"* kingdom|strong=\"H4438\"* was|strong=\"H3068\"* highly|strong=\"H4605\"* exalted|strong=\"H5375\"*, for|strong=\"H3588\"* his|strong=\"H5375\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*’s sake|strong=\"H5668\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* took|strong=\"H3947\"* more|strong=\"H5750\"* wives in|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H1121\"* David|strong=\"H1732\"* became|strong=\"H3205\"* the|strong=\"H3947\"* father|strong=\"H3205\"* of|strong=\"H1121\"* more|strong=\"H5750\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 4, + "text": "These are|strong=\"H1961\"* the|strong=\"H3205\"* names|strong=\"H8034\"* of|strong=\"H3205\"* the|strong=\"H3205\"* children|strong=\"H3205\"* whom he|strong=\"H3389\"* had|strong=\"H1961\"* in|strong=\"H8034\"* Jerusalem|strong=\"H3389\"*: Shammua|strong=\"H8051\"*, Shobab|strong=\"H7727\"*, Nathan|strong=\"H5416\"*, Solomon|strong=\"H8010\"*," + }, + { + "verseNum": 5, + "text": "Ibhar|strong=\"H2984\"*, Elishua, Elpelet," + }, + { + "verseNum": 6, + "text": "Nogah|strong=\"H5052\"*, Nepheg|strong=\"H5298\"*, Japhia|strong=\"H3309\"*," + }, + { + "verseNum": 7, + "text": "Elishama, Beeliada|strong=\"H1182\"*, and|strong=\"H1182\"* Eliphelet." + }, + { + "verseNum": 8, + "text": "When|strong=\"H3588\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* David|strong=\"H1732\"* was|strong=\"H1732\"* anointed|strong=\"H4886\"* king|strong=\"H4428\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* went|strong=\"H3318\"* up|strong=\"H5927\"* to|strong=\"H3318\"* seek|strong=\"H1245\"* David|strong=\"H1732\"*; and|strong=\"H3478\"* David|strong=\"H1732\"* heard|strong=\"H8085\"* of|strong=\"H4428\"* it|strong=\"H5921\"*, and|strong=\"H3478\"* went|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "Now the|strong=\"H6584\"* Philistines|strong=\"H6430\"* had|strong=\"H6430\"* come and|strong=\"H6430\"* made|strong=\"H6584\"* a|strong=\"H3068\"* raid|strong=\"H6584\"* in|strong=\"H6430\"* the|strong=\"H6584\"* valley|strong=\"H6010\"* of|strong=\"H6010\"* Rephaim|strong=\"H7497\"*." + }, + { + "verseNum": 10, + "text": "David|strong=\"H1732\"* inquired|strong=\"H7592\"* of|strong=\"H3068\"* God|strong=\"H3068\"*, saying, “Shall|strong=\"H3068\"* I|strong=\"H5414\"* go|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"*? Will|strong=\"H3068\"* you|strong=\"H5414\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5927\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*?”" + }, + { + "verseNum": 11, + "text": "So|strong=\"H3651\"* they|strong=\"H3651\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Baal Perazim, and|strong=\"H3027\"* David|strong=\"H1732\"* defeated|strong=\"H5221\"* them|strong=\"H5921\"* there|strong=\"H8033\"*. David|strong=\"H1732\"* said|strong=\"H7121\"*, God|strong=\"H3027\"* has|strong=\"H3027\"* broken|strong=\"H6555\"* my|strong=\"H1732\"* enemies|strong=\"H3027\"* by|strong=\"H3027\"* my|strong=\"H1732\"* hand|strong=\"H3027\"*, like|strong=\"H3651\"* waters|strong=\"H4325\"* breaking|strong=\"H5927\"* out|strong=\"H5921\"*. Therefore|strong=\"H3651\"* they|strong=\"H3651\"* called|strong=\"H7121\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3027\"* that|strong=\"H1931\"* place|strong=\"H4725\"* Baal Perazim.+ 14:11 “Baal Perazim” means “The Lord who breaks out”.*" + }, + { + "verseNum": 12, + "text": "They|strong=\"H8033\"* left|strong=\"H5800\"* their|strong=\"H8313\"* gods there|strong=\"H8033\"*; and|strong=\"H1732\"* David|strong=\"H1732\"* gave a|strong=\"H3068\"* command, and|strong=\"H1732\"* they|strong=\"H8033\"* were|strong=\"H1732\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3254\"* Philistines|strong=\"H6430\"* made|strong=\"H6584\"* another|strong=\"H5750\"* raid|strong=\"H6584\"* in|strong=\"H5750\"* the|strong=\"H3254\"* valley|strong=\"H6010\"*." + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* inquired|strong=\"H7592\"* again|strong=\"H5750\"* of|strong=\"H5921\"* God|strong=\"H3808\"*; and|strong=\"H1732\"* God|strong=\"H3808\"* said to|strong=\"H5927\"* him|strong=\"H5921\"*, “You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* go|strong=\"H5927\"* up|strong=\"H5927\"* after|strong=\"H5921\"* them|strong=\"H1992\"*. Turn|strong=\"H5437\"* away|strong=\"H5927\"* from|strong=\"H5921\"* them|strong=\"H1992\"*, and|strong=\"H1732\"* come|strong=\"H5927\"* on|strong=\"H5921\"* them|strong=\"H1992\"* opposite|strong=\"H4136\"* the|strong=\"H5921\"* mulberry trees|strong=\"H1057\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* hear|strong=\"H8085\"* the|strong=\"H6440\"* sound|strong=\"H6963\"* of|strong=\"H7218\"* marching|strong=\"H6807\"* in|strong=\"H8085\"* the|strong=\"H6440\"* tops|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H6440\"* mulberry trees|strong=\"H1057\"*, then|strong=\"H1961\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* battle|strong=\"H4421\"*; for|strong=\"H3588\"* God has|strong=\"H1961\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* before|strong=\"H6440\"* you|strong=\"H3588\"* to|strong=\"H3318\"* strike|strong=\"H5221\"* the|strong=\"H6440\"* army|strong=\"H4264\"* of|strong=\"H7218\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*.”" + }, + { + "verseNum": 16, + "text": "David|strong=\"H1732\"* did|strong=\"H6213\"* as|strong=\"H5704\"* God commanded|strong=\"H6680\"* him|strong=\"H5221\"*; and|strong=\"H1732\"* they|strong=\"H5704\"* attacked|strong=\"H5221\"* the|strong=\"H5221\"* army|strong=\"H4264\"* of|strong=\"H4264\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"* from|strong=\"H5704\"* Gibeon|strong=\"H1391\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Gezer|strong=\"H1507\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* fame|strong=\"H8034\"* of|strong=\"H3068\"* David|strong=\"H1732\"* went|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H5921\"* all|strong=\"H3605\"* lands; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* brought|strong=\"H3318\"* the|strong=\"H3605\"* fear|strong=\"H6343\"* of|strong=\"H3068\"* him|strong=\"H5414\"* on|strong=\"H5921\"* all|strong=\"H3605\"* nations|strong=\"H1471\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* made|strong=\"H6213\"* himself|strong=\"H6213\"* houses|strong=\"H1004\"* in|strong=\"H6213\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1004\"* he|strong=\"H6213\"* prepared|strong=\"H3559\"* a|strong=\"H3068\"* place|strong=\"H4725\"* for|strong=\"H6213\"* God’s ark, and|strong=\"H1004\"* pitched|strong=\"H5186\"* a|strong=\"H3068\"* tent for|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H5375\"* David|strong=\"H1732\"* said, “No|strong=\"H3808\"* one|strong=\"H3808\"* ought to|strong=\"H5704\"* carry|strong=\"H5375\"* God|strong=\"H3068\"*’s ark but|strong=\"H3588\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"*. For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* chosen them|strong=\"H5375\"* to|strong=\"H5704\"* carry|strong=\"H5375\"* God|strong=\"H3068\"*’s ark, and|strong=\"H3068\"* to|strong=\"H5704\"* minister|strong=\"H8334\"* to|strong=\"H5704\"* him|strong=\"H1732\"* forever|strong=\"H5769\"*.”" + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* assembled|strong=\"H6950\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* at|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, to|strong=\"H3478\"* bring|strong=\"H5927\"* up|strong=\"H5927\"* Yahweh|strong=\"H3068\"*’s ark to|strong=\"H3478\"* its|strong=\"H3605\"* place|strong=\"H4725\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* prepared|strong=\"H3559\"* for|strong=\"H3068\"* it|strong=\"H3559\"*." + }, + { + "verseNum": 4, + "text": "David|strong=\"H1732\"* gathered|strong=\"H1732\"* together the|strong=\"H1732\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron and|strong=\"H1121\"* the|strong=\"H1732\"* Levites|strong=\"H3881\"*:" + }, + { + "verseNum": 5, + "text": "of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"*, Uriel the|strong=\"H1121\"* chief|strong=\"H8269\"*, and|strong=\"H3967\"* his|strong=\"H8269\"* brothers|strong=\"H1121\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"*;" + }, + { + "verseNum": 6, + "text": "of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, Asaiah|strong=\"H6222\"* the|strong=\"H1121\"* chief|strong=\"H8269\"*, and|strong=\"H3967\"* his|strong=\"H6222\"* brothers|strong=\"H1121\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"*;" + }, + { + "verseNum": 7, + "text": "of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershom, Joel|strong=\"H3100\"* the|strong=\"H1121\"* chief|strong=\"H8269\"*, and|strong=\"H3967\"* his|strong=\"H3100\"* brothers|strong=\"H1121\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"*;" + }, + { + "verseNum": 8, + "text": "of|strong=\"H1121\"* the|strong=\"H8098\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Elizaphan, Shemaiah|strong=\"H8098\"* the|strong=\"H8098\"* chief|strong=\"H8269\"*, and|strong=\"H3967\"* his|strong=\"H8098\"* brothers|strong=\"H1121\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"*;" + }, + { + "verseNum": 9, + "text": "of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hebron|strong=\"H2275\"*, Eliel the|strong=\"H1121\"* chief|strong=\"H8269\"*, and|strong=\"H1121\"* his|strong=\"H8269\"* brothers|strong=\"H1121\"* eighty|strong=\"H8084\"*;" + }, + { + "verseNum": 10, + "text": "of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Uzziel|strong=\"H5816\"*, Amminadab|strong=\"H5992\"* the|strong=\"H1121\"* chief|strong=\"H8269\"*, and|strong=\"H3967\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* twelve|strong=\"H8147\"*." + }, + { + "verseNum": 11, + "text": "David|strong=\"H1732\"* called|strong=\"H7121\"* for|strong=\"H7121\"* Zadok|strong=\"H6659\"* and|strong=\"H3548\"* Abiathar the|strong=\"H7121\"* priests|strong=\"H3548\"*, and|strong=\"H3548\"* for|strong=\"H7121\"* the|strong=\"H7121\"* Levites|strong=\"H3881\"*: for|strong=\"H7121\"* Uriel, Asaiah|strong=\"H6222\"*, Joel|strong=\"H3100\"*, Shemaiah|strong=\"H8098\"*, Eliel, and|strong=\"H3548\"* Amminadab|strong=\"H5992\"*," + }, + { + "verseNum": 12, + "text": "and|strong=\"H3478\"* said to|strong=\"H3478\"* them|strong=\"H5927\"*, “You|strong=\"H3559\"* are|strong=\"H3478\"* the|strong=\"H3068\"* heads|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H3068\"* fathers’ households|strong=\"H3881\"* of|strong=\"H3068\"* the|strong=\"H3068\"* Levites|strong=\"H3881\"*. Sanctify|strong=\"H6942\"* yourselves|strong=\"H6942\"*, both you|strong=\"H3559\"* and|strong=\"H3478\"* your|strong=\"H3068\"* brothers, that|strong=\"H3068\"* you|strong=\"H3559\"* may|strong=\"H3068\"* bring|strong=\"H5927\"* the|strong=\"H3068\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, up|strong=\"H5927\"* to|strong=\"H3478\"* the|strong=\"H3068\"* place|strong=\"H7218\"* that|strong=\"H3068\"* I|strong=\"H3559\"* have|strong=\"H3068\"* prepared|strong=\"H3559\"* for|strong=\"H3068\"* it|strong=\"H3559\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* because|strong=\"H3588\"* you|strong=\"H3588\"* didn’t carry it|strong=\"H3588\"* at|strong=\"H3068\"* first|strong=\"H7223\"*, Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* broke|strong=\"H6555\"* out|strong=\"H6555\"* in|strong=\"H3068\"* anger against|strong=\"H6555\"* us|strong=\"H3588\"*, because|strong=\"H3588\"* we|strong=\"H3068\"* didn’t seek|strong=\"H1875\"* him|strong=\"H3588\"* according|strong=\"H4941\"* to|strong=\"H3068\"* the|strong=\"H3588\"* ordinance|strong=\"H4941\"*.”" + }, + { + "verseNum": 14, + "text": "So|strong=\"H5927\"* the|strong=\"H3068\"* priests|strong=\"H3548\"* and|strong=\"H3478\"* the|strong=\"H3068\"* Levites|strong=\"H3881\"* sanctified|strong=\"H6942\"* themselves|strong=\"H6942\"* to|strong=\"H3478\"* bring|strong=\"H5927\"* up|strong=\"H5927\"* the|strong=\"H3068\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* bore|strong=\"H5375\"* God|strong=\"H3068\"*’s ark on|strong=\"H5921\"* their|strong=\"H3068\"* shoulders|strong=\"H3802\"* with|strong=\"H3068\"* its|strong=\"H5921\"* poles|strong=\"H4133\"*, as|strong=\"H1697\"* Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* according|strong=\"H5921\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + }, + { + "verseNum": 16, + "text": "David|strong=\"H1732\"* spoke to|strong=\"H8085\"* the|strong=\"H8085\"* chief|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H8085\"* Levites|strong=\"H3881\"* to|strong=\"H8085\"* appoint|strong=\"H5975\"* their|strong=\"H8085\"* brothers as|strong=\"H3881\"* singers|strong=\"H7891\"* with|strong=\"H1732\"* instruments|strong=\"H3627\"* of|strong=\"H8269\"* music|strong=\"H7892\"*, stringed instruments|strong=\"H3627\"*, harps|strong=\"H3658\"*, and|strong=\"H6963\"* cymbals|strong=\"H4700\"*, sounding|strong=\"H8085\"* aloud|strong=\"H7311\"* and|strong=\"H6963\"* lifting|strong=\"H7311\"* up|strong=\"H7311\"* their|strong=\"H8085\"* voices|strong=\"H6963\"* with|strong=\"H1732\"* joy|strong=\"H8057\"*." + }, + { + "verseNum": 17, + "text": "So|strong=\"H4480\"* the|strong=\"H4480\"* Levites|strong=\"H3881\"* appointed|strong=\"H5975\"* Heman|strong=\"H1968\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joel|strong=\"H3100\"*; and|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H4480\"* brothers|strong=\"H1121\"*, Asaph the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Berechiah|strong=\"H1296\"*; and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"* their|strong=\"H5975\"* brothers|strong=\"H1121\"*, Ethan the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kushaiah|strong=\"H6984\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H2148\"* with|strong=\"H5973\"* them their|strong=\"H5973\"* brothers of|strong=\"H4932\"* the|strong=\"H1141\"* second|strong=\"H4932\"* rank|strong=\"H4932\"*: Zechariah|strong=\"H2148\"*, Ben|strong=\"H1122\"*, Jaaziel|strong=\"H3268\"*, Shemiramoth|strong=\"H8070\"*, Jehiel|strong=\"H3171\"*, Unni|strong=\"H6042\"*, Eliab, Benaiah|strong=\"H1141\"*, Maaseiah|strong=\"H4641\"*, Mattithiah|strong=\"H4993\"*, Eliphelehu, Mikneiah|strong=\"H4737\"*, Obed-Edom|strong=\"H5654\"*, and|strong=\"H2148\"* Jeiel|strong=\"H3273\"*, the|strong=\"H1141\"* doorkeepers|strong=\"H7778\"*." + }, + { + "verseNum": 19, + "text": "So|strong=\"H8085\"* the|strong=\"H8085\"* singers|strong=\"H7891\"*, Heman|strong=\"H1968\"*, Asaph, and|strong=\"H8085\"* Ethan, were|strong=\"H7891\"* given|strong=\"H8085\"* cymbals|strong=\"H4700\"* of|strong=\"H8085\"* bronze|strong=\"H5178\"* to|strong=\"H8085\"* sound|strong=\"H8085\"* aloud|strong=\"H8085\"*;" + }, + { + "verseNum": 20, + "text": "and|strong=\"H5035\"* Zechariah|strong=\"H2148\"*, Aziel|strong=\"H5815\"*, Shemiramoth|strong=\"H8070\"*, Jehiel|strong=\"H3171\"*, Unni|strong=\"H6042\"*, Eliab, Maaseiah|strong=\"H4641\"*, and|strong=\"H5035\"* Benaiah|strong=\"H1141\"*, with|strong=\"H5921\"* stringed instruments set to|strong=\"H5921\"* Alamoth|strong=\"H5961\"*;" + }, + { + "verseNum": 21, + "text": "and|strong=\"H3658\"* Mattithiah|strong=\"H4993\"*, Eliphelehu, Mikneiah|strong=\"H4737\"*, Obed-Edom|strong=\"H5654\"*, Jeiel|strong=\"H3273\"*, and|strong=\"H3658\"* Azaziah|strong=\"H5812\"*, with|strong=\"H5921\"* harps|strong=\"H3658\"* tuned to|strong=\"H5921\"* the|strong=\"H5921\"* eight-stringed lyre|strong=\"H3658\"*, to|strong=\"H5921\"* lead|strong=\"H5329\"*." + }, + { + "verseNum": 22, + "text": "Chenaniah|strong=\"H3663\"*, chief|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"*, was|strong=\"H1931\"* over|strong=\"H8269\"* the|strong=\"H3588\"* singing|strong=\"H4853\"*. He|strong=\"H1931\"* taught|strong=\"H3256\"* the|strong=\"H3588\"* singers, because|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* skillful." + }, + { + "verseNum": 23, + "text": "Berechiah|strong=\"H1296\"* and|strong=\"H1296\"* Elkanah were|strong=\"H7778\"* doorkeepers|strong=\"H7778\"* for the|strong=\"H1296\"* ark." + }, + { + "verseNum": 24, + "text": "Shebaniah|strong=\"H7645\"*, Joshaphat|strong=\"H3146\"*, Nethanel|strong=\"H5417\"*, Amasai|strong=\"H6022\"*, Zechariah|strong=\"H2148\"*, Benaiah|strong=\"H1141\"*, and|strong=\"H3548\"* Eliezer, the|strong=\"H6440\"* priests|strong=\"H3548\"*, blew|strong=\"H2690\"* the|strong=\"H6440\"* trumpets|strong=\"H2689\"* before|strong=\"H6440\"* God’s ark; and|strong=\"H3548\"* Obed-Edom|strong=\"H5654\"* and|strong=\"H3548\"* Jehiah|strong=\"H3174\"* were|strong=\"H2690\"* doorkeepers|strong=\"H7778\"* for|strong=\"H6440\"* the|strong=\"H6440\"* ark." + }, + { + "verseNum": 25, + "text": "So|strong=\"H1980\"* David|strong=\"H1732\"*, the|strong=\"H3068\"* elders|strong=\"H2205\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, and|strong=\"H1980\"* the|strong=\"H3068\"* captains|strong=\"H8269\"* over|strong=\"H8269\"* thousands went|strong=\"H1980\"* to|strong=\"H1980\"* bring|strong=\"H5927\"* the|strong=\"H3068\"* ark of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H1004\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Obed-Edom|strong=\"H5654\"* with|strong=\"H1980\"* joy|strong=\"H8057\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"H1961\"* God|strong=\"H3068\"* helped|strong=\"H5826\"* the|strong=\"H5375\"* Levites|strong=\"H3881\"* who|strong=\"H3068\"* bore|strong=\"H5375\"* the|strong=\"H5375\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, they|strong=\"H3068\"* sacrificed|strong=\"H2076\"* seven|strong=\"H7651\"* bulls|strong=\"H6499\"* and|strong=\"H3068\"* seven|strong=\"H7651\"* rams." + }, + { + "verseNum": 27, + "text": "David|strong=\"H1732\"* was|strong=\"H1732\"* clothed|strong=\"H3736\"* with|strong=\"H5921\"* a|strong=\"H3068\"* robe|strong=\"H4598\"* of|strong=\"H8269\"* fine linen, as|strong=\"H3605\"* were|strong=\"H3881\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* who|strong=\"H3605\"* bore|strong=\"H5375\"* the|strong=\"H3605\"* ark, the|strong=\"H3605\"* singers|strong=\"H7891\"*, and|strong=\"H1732\"* Chenaniah|strong=\"H3663\"* the|strong=\"H3605\"* choir master|strong=\"H8269\"* with|strong=\"H5921\"* the|strong=\"H3605\"* singers|strong=\"H7891\"*; and|strong=\"H1732\"* David|strong=\"H1732\"* had|strong=\"H1732\"* an|strong=\"H5375\"* ephod of|strong=\"H8269\"* linen on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 28, + "text": "Thus|strong=\"H8085\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* brought|strong=\"H5927\"* the|strong=\"H3605\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* up|strong=\"H5927\"* with|strong=\"H3068\"* shouting|strong=\"H8643\"*, with|strong=\"H3068\"* sound|strong=\"H6963\"* of|strong=\"H3068\"* the|strong=\"H3605\"* cornet|strong=\"H7782\"*, with|strong=\"H3068\"* trumpets|strong=\"H2689\"*, and|strong=\"H3478\"* with|strong=\"H3068\"* cymbals|strong=\"H4700\"*, sounding|strong=\"H8643\"* aloud|strong=\"H6963\"* with|strong=\"H3068\"* stringed instruments and|strong=\"H3478\"* harps|strong=\"H3658\"*." + }, + { + "verseNum": 29, + "text": "As|strong=\"H5704\"* the|strong=\"H7200\"* ark of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* came|strong=\"H1961\"* to|strong=\"H5704\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, Michal|strong=\"H4324\"* the|strong=\"H7200\"* daughter|strong=\"H1323\"* of|strong=\"H4428\"* Saul|strong=\"H7586\"* looked|strong=\"H7200\"* out|strong=\"H8259\"* at|strong=\"H3068\"* the|strong=\"H7200\"* window|strong=\"H2474\"*, and|strong=\"H3068\"* saw|strong=\"H7200\"* king|strong=\"H4428\"* David|strong=\"H1732\"* dancing|strong=\"H7540\"* and|strong=\"H3068\"* playing|strong=\"H7832\"*; and|strong=\"H3068\"* she|strong=\"H3820\"* despised him|strong=\"H7200\"* in|strong=\"H3068\"* her|strong=\"H7200\"* heart|strong=\"H3820\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "They|strong=\"H6440\"* brought|strong=\"H7126\"* in|strong=\"H8432\"* God’s ark, and|strong=\"H1732\"* set|strong=\"H3322\"* it|strong=\"H7126\"* in|strong=\"H8432\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H6440\"* the|strong=\"H6440\"* tent that|strong=\"H1732\"* David|strong=\"H1732\"* had|strong=\"H1732\"* pitched|strong=\"H5186\"* for|strong=\"H6440\"* it|strong=\"H7126\"*; and|strong=\"H1732\"* they|strong=\"H6440\"* offered|strong=\"H7126\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H1732\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* before|strong=\"H6440\"* God." + }, + { + "verseNum": 2, + "text": "When|strong=\"H3615\"* David|strong=\"H1732\"* had|strong=\"H3068\"* finished|strong=\"H3615\"* offering|strong=\"H5930\"* the|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H3068\"* the|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, he|strong=\"H3068\"* blessed|strong=\"H1288\"* the|strong=\"H3068\"* people|strong=\"H5971\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H5704\"* gave to|strong=\"H5704\"* everyone|strong=\"H3605\"* of|strong=\"H3603\"* Israel|strong=\"H3478\"*, both|strong=\"H3605\"* man|strong=\"H3605\"* and|strong=\"H3478\"* woman|strong=\"H2505\"*, to|strong=\"H5704\"* everyone|strong=\"H3605\"* a|strong=\"H3068\"* loaf|strong=\"H3603\"* of|strong=\"H3603\"* bread|strong=\"H3899\"*, a|strong=\"H3068\"* portion|strong=\"H2505\"* of|strong=\"H3603\"* meat|strong=\"H3899\"*, and|strong=\"H3478\"* a|strong=\"H3068\"* cake|strong=\"H3603\"* of|strong=\"H3603\"* raisins." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3068\"* appointed|strong=\"H5414\"* some|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Levites|strong=\"H3881\"* to|strong=\"H3478\"* minister|strong=\"H8334\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s ark, and|strong=\"H3478\"* to|strong=\"H3478\"* commemorate, to|strong=\"H3478\"* thank|strong=\"H3034\"*, and|strong=\"H3478\"* to|strong=\"H3478\"* praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*:" + }, + { + "verseNum": 5, + "text": "Asaph the|strong=\"H8085\"* chief|strong=\"H7218\"*, and|strong=\"H7218\"* second|strong=\"H4932\"* to|strong=\"H8085\"* him|strong=\"H8085\"* Zechariah|strong=\"H2148\"*, then|strong=\"H8085\"* Jeiel|strong=\"H3273\"*, Shemiramoth|strong=\"H8070\"*, Jehiel|strong=\"H3171\"*, Mattithiah|strong=\"H4993\"*, Eliab, Benaiah|strong=\"H1141\"*, Obed-Edom|strong=\"H5654\"*, and|strong=\"H7218\"* Jeiel|strong=\"H3273\"*, with|strong=\"H3627\"* stringed instruments|strong=\"H3627\"* and|strong=\"H7218\"* with|strong=\"H3627\"* harps|strong=\"H3658\"*; and|strong=\"H7218\"* Asaph with|strong=\"H3627\"* cymbals|strong=\"H4700\"*, sounding|strong=\"H8085\"* aloud|strong=\"H8085\"*;" + }, + { + "verseNum": 6, + "text": "with|strong=\"H1285\"* Benaiah|strong=\"H1141\"* and|strong=\"H3548\"* Jahaziel|strong=\"H3166\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* with|strong=\"H1285\"* trumpets|strong=\"H2689\"* continually|strong=\"H8548\"*, before|strong=\"H6440\"* the|strong=\"H6440\"* ark of|strong=\"H6440\"* the|strong=\"H6440\"* covenant|strong=\"H1285\"* of|strong=\"H6440\"* God." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H5414\"* on|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* David|strong=\"H1732\"* first|strong=\"H7218\"* ordained|strong=\"H5414\"* giving|strong=\"H5414\"* of|strong=\"H3068\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* by|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Asaph and|strong=\"H3068\"* his|strong=\"H5414\"* brothers." + }, + { + "verseNum": 8, + "text": "Oh give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "Sing|strong=\"H7891\"* to|strong=\"H2167\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 10, + "text": "Glory|strong=\"H1984\"* in|strong=\"H3068\"* his|strong=\"H3068\"* holy|strong=\"H6944\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 11, + "text": "Seek|strong=\"H1245\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* his|strong=\"H3068\"* strength|strong=\"H5797\"*." + }, + { + "verseNum": 12, + "text": "Remember|strong=\"H2142\"* his|strong=\"H2142\"* marvelous|strong=\"H6381\"* works|strong=\"H6381\"* that|strong=\"H6213\"* he|strong=\"H6213\"* has|strong=\"H6213\"* done|strong=\"H6213\"*," + }, + { + "verseNum": 13, + "text": "you|strong=\"H3478\"* offspring|strong=\"H2233\"*+ 16:13 or, seed* of|strong=\"H1121\"* Israel|strong=\"H3478\"* his|strong=\"H3478\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 14, + "text": "He|strong=\"H1931\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "Remember|strong=\"H2142\"* his|strong=\"H6680\"* covenant|strong=\"H1285\"* forever|strong=\"H5769\"*," + }, + { + "verseNum": 16, + "text": "the|strong=\"H3772\"* covenant which he|strong=\"H3327\"* made|strong=\"H3772\"* with|strong=\"H3772\"* Abraham," + }, + { + "verseNum": 17, + "text": "He|strong=\"H3478\"* confirmed|strong=\"H5975\"* it|strong=\"H5975\"* to|strong=\"H3478\"* Jacob|strong=\"H3290\"* for|strong=\"H2706\"* a|strong=\"H3068\"* statute|strong=\"H2706\"*," + }, + { + "verseNum": 18, + "text": "saying, “I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H5414\"* land|strong=\"H5159\"* of|strong=\"H5159\"* Canaan|strong=\"H3667\"*," + }, + { + "verseNum": 19, + "text": "when|strong=\"H1961\"* you|strong=\"H1961\"* were|strong=\"H1961\"* but|strong=\"H1961\"* a|strong=\"H3068\"* few|strong=\"H4592\"* men|strong=\"H4962\"* in|strong=\"H4962\"* number|strong=\"H4557\"*," + }, + { + "verseNum": 20, + "text": "They|strong=\"H5971\"* went|strong=\"H1980\"* about|strong=\"H1980\"* from|strong=\"H1980\"* nation|strong=\"H1471\"* to|strong=\"H1980\"* nation|strong=\"H1471\"*," + }, + { + "verseNum": 21, + "text": "He|strong=\"H3808\"* allowed no|strong=\"H3808\"* man to|strong=\"H5921\"* do them|strong=\"H5921\"* wrong|strong=\"H6231\"*." + }, + { + "verseNum": 22, + "text": "“Don’t touch|strong=\"H5060\"* my|strong=\"H5060\"* anointed|strong=\"H4899\"* ones|strong=\"H4899\"*!" + }, + { + "verseNum": 23, + "text": "Sing|strong=\"H7891\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* earth!" + }, + { + "verseNum": 24, + "text": "Declare|strong=\"H5608\"* his|strong=\"H3605\"* glory|strong=\"H3519\"* among|strong=\"H6381\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 25, + "text": "For|strong=\"H3588\"* great|strong=\"H1419\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* greatly|strong=\"H3966\"* to|strong=\"H3068\"* be|strong=\"H3068\"* praised|strong=\"H1984\"*." + }, + { + "verseNum": 26, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gods of|strong=\"H3068\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* are|strong=\"H5971\"* idols," + }, + { + "verseNum": 27, + "text": "Honor|strong=\"H1935\"* and|strong=\"H6440\"* majesty|strong=\"H1926\"* are|strong=\"H6440\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 28, + "text": "Ascribe|strong=\"H3051\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, you|strong=\"H5971\"* families|strong=\"H4940\"* of|strong=\"H3068\"* the|strong=\"H3068\"* peoples|strong=\"H5971\"*," + }, + { + "verseNum": 29, + "text": "Ascribe|strong=\"H3051\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* the|strong=\"H6440\"* glory|strong=\"H3519\"* due|strong=\"H6440\"* to|strong=\"H3068\"* his|strong=\"H5375\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 30, + "text": "Tremble|strong=\"H2342\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 31, + "text": "Let|strong=\"H1523\"* the|strong=\"H3068\"* heavens|strong=\"H8064\"* be|strong=\"H3068\"* glad|strong=\"H1523\"*," + }, + { + "verseNum": 32, + "text": "Let|strong=\"H7481\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* roar|strong=\"H7481\"*, and|strong=\"H7704\"* its|strong=\"H3605\"* fullness|strong=\"H4393\"*!" + }, + { + "verseNum": 33, + "text": "Then|strong=\"H3588\"* the|strong=\"H6440\"* trees|strong=\"H6086\"* of|strong=\"H3068\"* the|strong=\"H6440\"* forest|strong=\"H3293\"* will|strong=\"H3068\"* sing|strong=\"H7442\"* for|strong=\"H3588\"* joy|strong=\"H7442\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 34, + "text": "Oh give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H3068\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 35, + "text": "Say, “Save|strong=\"H3467\"* us|strong=\"H5337\"*, God of|strong=\"H8034\"* our|strong=\"H5337\"* salvation|strong=\"H3468\"*!" + }, + { + "verseNum": 36, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 37, + "text": "So|strong=\"H1697\"* he|strong=\"H3117\"* left|strong=\"H5800\"* Asaph and|strong=\"H3068\"* his|strong=\"H3068\"* brothers there|strong=\"H8033\"* before|strong=\"H6440\"* the|strong=\"H6440\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, to|strong=\"H3068\"* minister|strong=\"H8334\"* before|strong=\"H6440\"* the|strong=\"H6440\"* ark continually|strong=\"H8548\"*, as|strong=\"H1697\"* every|strong=\"H3117\"* day|strong=\"H3117\"*’s work|strong=\"H1697\"* required|strong=\"H3117\"*;" + }, + { + "verseNum": 38, + "text": "and|strong=\"H1121\"* Obed-Edom|strong=\"H5654\"* with|strong=\"H5654\"* their sixty-eight relatives|strong=\"H1121\"*; Obed-Edom|strong=\"H5654\"* also|strong=\"H1121\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeduthun|strong=\"H3038\"* and|strong=\"H1121\"* Hosah|strong=\"H2621\"* to|strong=\"H1121\"* be|strong=\"H1121\"* doorkeepers|strong=\"H7778\"*;" + }, + { + "verseNum": 39, + "text": "and|strong=\"H3068\"* Zadok|strong=\"H6659\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* and|strong=\"H3068\"* his|strong=\"H3068\"* brothers the|strong=\"H6440\"* priests|strong=\"H3548\"*, before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s tabernacle|strong=\"H4908\"* in|strong=\"H3068\"* the|strong=\"H6440\"* high|strong=\"H1116\"* place|strong=\"H1116\"* that|strong=\"H3068\"* was|strong=\"H3068\"* at|strong=\"H3068\"* Gibeon|strong=\"H1391\"*," + }, + { + "verseNum": 40, + "text": "to|strong=\"H3478\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* continually|strong=\"H8548\"* morning|strong=\"H1242\"* and|strong=\"H3478\"* evening|strong=\"H6153\"*, even|strong=\"H6153\"* according|strong=\"H5921\"* to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* commanded|strong=\"H6680\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"*;" + }, + { + "verseNum": 41, + "text": "and|strong=\"H3068\"* with|strong=\"H5973\"* them|strong=\"H3588\"* Heman|strong=\"H1968\"* and|strong=\"H3068\"* Jeduthun|strong=\"H3038\"* and|strong=\"H3068\"* the|strong=\"H3588\"* rest|strong=\"H7605\"* who|strong=\"H3068\"* were|strong=\"H3068\"* chosen|strong=\"H1305\"*, who|strong=\"H3068\"* were|strong=\"H3068\"* mentioned by|strong=\"H3068\"* name|strong=\"H8034\"*, to|strong=\"H3068\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, because|strong=\"H3588\"* his|strong=\"H3068\"* loving kindness|strong=\"H2617\"* endures|strong=\"H5769\"* forever|strong=\"H5769\"*;" + }, + { + "verseNum": 42, + "text": "and|strong=\"H1121\"* with|strong=\"H5973\"* them|strong=\"H8085\"* Heman|strong=\"H1968\"* and|strong=\"H1121\"* Jeduthun|strong=\"H3038\"* with|strong=\"H5973\"* trumpets|strong=\"H2689\"* and|strong=\"H1121\"* cymbals|strong=\"H4700\"* for|strong=\"H1121\"* those|strong=\"H8085\"* that|strong=\"H8085\"* should sound|strong=\"H8085\"* aloud|strong=\"H8085\"*, and|strong=\"H1121\"* with|strong=\"H5973\"* instruments|strong=\"H3627\"* for|strong=\"H1121\"* the|strong=\"H8085\"* songs|strong=\"H7892\"* of|strong=\"H1121\"* God, and|strong=\"H1121\"* the|strong=\"H8085\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jeduthun|strong=\"H3038\"* to|strong=\"H8085\"* be|strong=\"H1121\"* at|strong=\"H1121\"* the|strong=\"H8085\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 43, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* departed|strong=\"H3212\"*, each|strong=\"H3605\"* man|strong=\"H3605\"* to|strong=\"H3212\"* his|strong=\"H3605\"* house|strong=\"H1004\"*; and|strong=\"H1004\"* David|strong=\"H1732\"* returned|strong=\"H5437\"* to|strong=\"H3212\"* bless|strong=\"H1288\"* his|strong=\"H3605\"* house|strong=\"H1004\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* David|strong=\"H1732\"* was|strong=\"H3068\"* living|strong=\"H3427\"* in|strong=\"H3427\"* his|strong=\"H3068\"* house|strong=\"H1004\"*, David|strong=\"H1732\"* said to|strong=\"H3068\"* Nathan|strong=\"H5416\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* live|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* cedar house|strong=\"H1004\"*, but|strong=\"H1961\"* the|strong=\"H3068\"* ark of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* is|strong=\"H3068\"* in|strong=\"H3427\"* a|strong=\"H3068\"* tent|strong=\"H3407\"*.”" + }, + { + "verseNum": 2, + "text": "Nathan|strong=\"H5416\"* said to|strong=\"H6213\"* David|strong=\"H1732\"*, “Do|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H3605\"* in|strong=\"H6213\"* your|strong=\"H3605\"* heart|strong=\"H3824\"*; for|strong=\"H3588\"* God is|strong=\"H3605\"* with|strong=\"H5973\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 3, + "text": "That|strong=\"H1931\"* same|strong=\"H1931\"* night|strong=\"H3915\"*, the|strong=\"H1697\"* word|strong=\"H1697\"* of|strong=\"H1697\"* God came|strong=\"H1961\"* to|strong=\"H1961\"* Nathan|strong=\"H5416\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 4, + "text": "“Go|strong=\"H3212\"* and|strong=\"H3068\"* tell David|strong=\"H1732\"* my|strong=\"H3068\"* servant|strong=\"H5650\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* build|strong=\"H1129\"* me|strong=\"H5650\"* a|strong=\"H3068\"* house|strong=\"H1004\"* to|strong=\"H3212\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"*;" + }, + { + "verseNum": 5, + "text": "for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* not|strong=\"H3808\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* house|strong=\"H1004\"* since|strong=\"H3588\"* the|strong=\"H3588\"* day|strong=\"H3117\"* that|strong=\"H3588\"* I|strong=\"H3588\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* Israel|strong=\"H3478\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, but|strong=\"H3588\"* have|strong=\"H1961\"* gone|strong=\"H5927\"* from|strong=\"H4480\"* tent to|strong=\"H5704\"* tent, and|strong=\"H3478\"* from|strong=\"H4480\"* one|strong=\"H2088\"* tent to|strong=\"H5704\"* another|strong=\"H2088\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"H1980\"* all|strong=\"H3605\"* places|strong=\"H1004\"* in|strong=\"H1980\"* which|strong=\"H1697\"* I|strong=\"H1697\"* have|strong=\"H5971\"* walked|strong=\"H1980\"* with|strong=\"H1980\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, did|strong=\"H4100\"* I|strong=\"H1697\"* speak|strong=\"H1696\"* a|strong=\"H3068\"* word|strong=\"H1697\"* with|strong=\"H1980\"* any|strong=\"H3605\"* of|strong=\"H1004\"* the|strong=\"H3605\"* judges|strong=\"H8199\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, whom|strong=\"H5971\"* I|strong=\"H1697\"* commanded|strong=\"H6680\"* to|strong=\"H1696\"* be|strong=\"H3808\"* shepherd|strong=\"H7462\"* of|strong=\"H1004\"* my|strong=\"H3605\"* people|strong=\"H5971\"*, saying|strong=\"H1697\"*, ‘Why|strong=\"H4100\"* have|strong=\"H5971\"* you|strong=\"H6680\"* not|strong=\"H3808\"* built|strong=\"H1129\"* me|strong=\"H1696\"* a|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* cedar?’”’" + }, + { + "verseNum": 7, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, you|strong=\"H5921\"* shall|strong=\"H3068\"* tell my|strong=\"H3068\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*, ‘Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*, “I|strong=\"H3541\"* took|strong=\"H3947\"* you|strong=\"H5921\"* from|strong=\"H4480\"* the|strong=\"H5921\"* sheep|strong=\"H6629\"* pen, from|strong=\"H4480\"* following the|strong=\"H5921\"* sheep|strong=\"H6629\"*, to|strong=\"H3478\"* be|strong=\"H1961\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* my|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H1980\"* have|strong=\"H1961\"* been|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H6440\"* wherever|strong=\"H3605\"* you|strong=\"H6440\"* have|strong=\"H1961\"* gone|strong=\"H1980\"*, and|strong=\"H1980\"* have|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* all|strong=\"H3605\"* your|strong=\"H3605\"* enemies from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. I|strong=\"H1980\"* will|strong=\"H1961\"* make|strong=\"H6213\"* you|strong=\"H6440\"* a|strong=\"H3068\"* name|strong=\"H8034\"* like|strong=\"H1961\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H6440\"* the|strong=\"H3605\"* great|strong=\"H1419\"* ones|strong=\"H1419\"* who|strong=\"H3605\"* are|strong=\"H6213\"* in|strong=\"H1980\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 9, + "text": "I|strong=\"H7760\"* will|strong=\"H5971\"* appoint|strong=\"H7760\"* a|strong=\"H3068\"* place|strong=\"H4725\"* for|strong=\"H8478\"* my|strong=\"H7760\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* will|strong=\"H5971\"* plant|strong=\"H5193\"* them|strong=\"H7760\"*, that|strong=\"H5971\"* they|strong=\"H3808\"* may|strong=\"H5971\"* dwell|strong=\"H7931\"* in|strong=\"H3478\"* their|strong=\"H7760\"* own|strong=\"H5971\"* place|strong=\"H4725\"*, and|strong=\"H1121\"* be|strong=\"H3808\"* moved|strong=\"H7264\"* no|strong=\"H3808\"* more|strong=\"H3254\"*. The|strong=\"H7760\"* children|strong=\"H1121\"* of|strong=\"H1121\"* wickedness|strong=\"H5766\"* will|strong=\"H5971\"* not|strong=\"H3808\"* waste|strong=\"H1086\"* them|strong=\"H7760\"* any|strong=\"H5750\"* more|strong=\"H3254\"*, as|strong=\"H5971\"* at|strong=\"H3478\"* the|strong=\"H7760\"* first|strong=\"H7223\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"H3478\"* from|strong=\"H5921\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H5971\"* I|strong=\"H3117\"* commanded|strong=\"H6680\"* judges|strong=\"H8199\"* to|strong=\"H3478\"* be|strong=\"H3068\"* over|strong=\"H5921\"* my|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*. I|strong=\"H3117\"* will|strong=\"H3068\"* subdue|strong=\"H3665\"* all|strong=\"H3605\"* your|strong=\"H3068\"* enemies. Moreover I|strong=\"H3117\"* tell|strong=\"H5046\"* you|strong=\"H6680\"* that|strong=\"H5971\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* build|strong=\"H1129\"* you|strong=\"H6680\"* a|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 11, + "text": "It|strong=\"H3588\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, when|strong=\"H3588\"* your|strong=\"H3588\"* days|strong=\"H3117\"* are|strong=\"H3117\"* fulfilled|strong=\"H4390\"* that|strong=\"H3588\"* you|strong=\"H3588\"* must|strong=\"H1121\"* go|strong=\"H3212\"* to|strong=\"H3212\"* be|strong=\"H1961\"* with|strong=\"H5973\"* your|strong=\"H3588\"* fathers, that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1961\"* set|strong=\"H6965\"* up|strong=\"H6965\"* your|strong=\"H3588\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* you|strong=\"H3588\"*, who|strong=\"H1121\"* will|strong=\"H1961\"* be|strong=\"H1961\"* of|strong=\"H1121\"* your|strong=\"H3588\"* sons|strong=\"H1121\"*; and|strong=\"H1121\"* I|strong=\"H3588\"* will|strong=\"H1961\"* establish|strong=\"H6965\"* his|strong=\"H3559\"* kingdom|strong=\"H4438\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H1931\"* will|strong=\"H1004\"* build|strong=\"H1129\"* me|strong=\"H3559\"* a|strong=\"H3068\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* I|strong=\"H5704\"* will|strong=\"H1004\"* establish|strong=\"H3559\"* his|strong=\"H3559\"* throne|strong=\"H3678\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H3808\"* will|strong=\"H1961\"* be|strong=\"H1961\"* his|strong=\"H6440\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H1961\"* son|strong=\"H1121\"*. I|strong=\"H3808\"* will|strong=\"H1961\"* not|strong=\"H3808\"* take|strong=\"H5493\"* my|strong=\"H1961\"* loving kindness|strong=\"H2617\"* away|strong=\"H5493\"* from|strong=\"H5493\"* him|strong=\"H6440\"*, as|strong=\"H1961\"* I|strong=\"H3808\"* took|strong=\"H5493\"* it|strong=\"H1931\"* from|strong=\"H5493\"* him|strong=\"H6440\"* who|strong=\"H1931\"* was|strong=\"H1961\"* before|strong=\"H6440\"* you|strong=\"H6440\"*;" + }, + { + "verseNum": 14, + "text": "but|strong=\"H1961\"* I|strong=\"H5704\"* will|strong=\"H1961\"* settle|strong=\"H5975\"* him|strong=\"H5975\"* in|strong=\"H1004\"* my|strong=\"H1961\"* house|strong=\"H1004\"* and|strong=\"H1004\"* in|strong=\"H1004\"* my|strong=\"H1961\"* kingdom|strong=\"H4438\"* forever|strong=\"H5769\"*. His|strong=\"H3559\"* throne|strong=\"H3678\"* will|strong=\"H1961\"* be|strong=\"H1961\"* established|strong=\"H3559\"* forever|strong=\"H5769\"*.”’”" + }, + { + "verseNum": 15, + "text": "According to|strong=\"H1696\"* all|strong=\"H3605\"* these|strong=\"H2088\"* words|strong=\"H1697\"*, and|strong=\"H1732\"* according to|strong=\"H1696\"* all|strong=\"H3605\"* this|strong=\"H2088\"* vision|strong=\"H2377\"*, so|strong=\"H3651\"* Nathan|strong=\"H5416\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H4428\"* David|strong=\"H1732\"* the|strong=\"H6440\"* king|strong=\"H4428\"* went|strong=\"H1732\"* in|strong=\"H3427\"* and|strong=\"H3068\"* sat|strong=\"H3427\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* he|strong=\"H3588\"* said, “Who|strong=\"H4310\"* am|strong=\"H3068\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* what|strong=\"H4310\"* is|strong=\"H3068\"* my|strong=\"H3068\"* house|strong=\"H1004\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* brought|strong=\"H3068\"* me|strong=\"H6440\"* this|strong=\"H3588\"* far|strong=\"H5704\"*?" + }, + { + "verseNum": 17, + "text": "This|strong=\"H2063\"* was|strong=\"H3068\"* a|strong=\"H3068\"* small|strong=\"H6994\"* thing|strong=\"H6994\"* in|strong=\"H5921\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, O|strong=\"H3068\"* God|strong=\"H3068\"*, but|strong=\"H7200\"* you|strong=\"H5921\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* of|strong=\"H1004\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*’s house|strong=\"H1004\"* for|strong=\"H5921\"* a|strong=\"H3068\"* great|strong=\"H7350\"* while|strong=\"H5921\"* to|strong=\"H1696\"* come|strong=\"H7350\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* respected|strong=\"H5869\"* me|strong=\"H7200\"* according|strong=\"H5921\"* to|strong=\"H1696\"* the|strong=\"H5921\"* standard of|strong=\"H1004\"* a|strong=\"H3068\"* man|strong=\"H7200\"* of|strong=\"H1004\"* high|strong=\"H4609\"* degree|strong=\"H4609\"*, Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "What|strong=\"H4100\"* can|strong=\"H4100\"* David|strong=\"H1732\"* say|strong=\"H3254\"* yet|strong=\"H5750\"* more|strong=\"H3254\"* to|strong=\"H1732\"* you|strong=\"H3045\"* concerning the|strong=\"H3045\"* honor|strong=\"H3519\"* which|strong=\"H4100\"* is|strong=\"H4100\"* done|strong=\"H3254\"* to|strong=\"H1732\"* your|strong=\"H3045\"* servant|strong=\"H5650\"*? For|strong=\"H5650\"* you|strong=\"H3045\"* know|strong=\"H3045\"* your|strong=\"H3045\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"*, for|strong=\"H6213\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*’s sake|strong=\"H5668\"*, and|strong=\"H3068\"* according to|strong=\"H3068\"* your|strong=\"H3068\"* own heart|strong=\"H3820\"*, you|strong=\"H3605\"* have|strong=\"H3068\"* done|strong=\"H6213\"* all|strong=\"H3605\"* this|strong=\"H2063\"* greatness|strong=\"H1420\"*, to|strong=\"H3068\"* make|strong=\"H6213\"* known|strong=\"H3045\"* all|strong=\"H3605\"* these|strong=\"H2063\"* great|strong=\"H6213\"* things|strong=\"H3605\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"*, there|strong=\"H3605\"* is|strong=\"H3068\"* no|strong=\"H3605\"* one|strong=\"H3605\"* like|strong=\"H3644\"* you|strong=\"H3605\"*, neither is|strong=\"H3068\"* there|strong=\"H3605\"* any|strong=\"H3605\"* God|strong=\"H3068\"* besides|strong=\"H2108\"* you|strong=\"H3605\"*, according|strong=\"H3644\"* to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* we|strong=\"H3068\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* with|strong=\"H3068\"* our|strong=\"H3068\"* ears." + }, + { + "verseNum": 21, + "text": "What|strong=\"H4310\"* one|strong=\"H4310\"* nation|strong=\"H1471\"* in|strong=\"H1980\"* the|strong=\"H6440\"* earth is|strong=\"H4310\"* like|strong=\"H3478\"* your|strong=\"H7760\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, whom|strong=\"H4310\"* God|strong=\"H4310\"* went|strong=\"H1980\"* to|strong=\"H1980\"* redeem|strong=\"H6299\"* to|strong=\"H1980\"* himself|strong=\"H6440\"* for|strong=\"H6440\"* a|strong=\"H3068\"* people|strong=\"H5971\"*, to|strong=\"H1980\"* make|strong=\"H7760\"* you|strong=\"H6440\"* a|strong=\"H3068\"* name|strong=\"H8034\"* by|strong=\"H3478\"* great|strong=\"H1420\"* and|strong=\"H1980\"* awesome|strong=\"H3372\"* things|strong=\"H3372\"*, in|strong=\"H1980\"* driving|strong=\"H1644\"* out|strong=\"H1644\"* nations|strong=\"H1471\"* from|strong=\"H6440\"* before|strong=\"H6440\"* your|strong=\"H7760\"* people|strong=\"H5971\"* whom|strong=\"H4310\"* you|strong=\"H6440\"* redeemed|strong=\"H6299\"* out|strong=\"H1644\"* of|strong=\"H6440\"* Egypt|strong=\"H4714\"*?" + }, + { + "verseNum": 22, + "text": "For|strong=\"H5704\"* you|strong=\"H5414\"* made|strong=\"H5414\"* your|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* your|strong=\"H3068\"* own|strong=\"H1961\"* people|strong=\"H5971\"* forever|strong=\"H5769\"*; and|strong=\"H3478\"* you|strong=\"H5414\"*, Yahweh|strong=\"H3068\"*, became|strong=\"H1961\"* their|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 23, + "text": "Now|strong=\"H6258\"*, Yahweh|strong=\"H3068\"*, let|strong=\"H6258\"* the|strong=\"H5921\"* word|strong=\"H1697\"* that|strong=\"H3068\"* you|strong=\"H5921\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* concerning|strong=\"H5921\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*, and|strong=\"H3068\"* concerning|strong=\"H5921\"* his|strong=\"H3068\"* house|strong=\"H1004\"*, be|strong=\"H1697\"* established|strong=\"H6213\"* forever|strong=\"H5769\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* as|strong=\"H5704\"* you|strong=\"H5921\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 24, + "text": "Let your|strong=\"H3068\"* name|strong=\"H8034\"* be|strong=\"H3068\"* established|strong=\"H3559\"* and|strong=\"H3478\"* magnified|strong=\"H1431\"* forever|strong=\"H5769\"*, saying, ‘Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* is|strong=\"H3068\"* the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, even|strong=\"H5704\"* a|strong=\"H3068\"* God|strong=\"H3068\"* to|strong=\"H5704\"* Israel|strong=\"H3478\"*. The|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* David|strong=\"H1732\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* is|strong=\"H3068\"* established|strong=\"H3559\"* before|strong=\"H6440\"* you|strong=\"H6440\"*.’" + }, + { + "verseNum": 25, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"*, my|strong=\"H5921\"* God, have|strong=\"H5650\"* revealed|strong=\"H1540\"* to|strong=\"H5921\"* your|strong=\"H5921\"* servant|strong=\"H5650\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H5650\"* build|strong=\"H1129\"* him|strong=\"H6440\"* a|strong=\"H3068\"* house|strong=\"H1004\"*. Therefore|strong=\"H3651\"* your|strong=\"H5921\"* servant|strong=\"H5650\"* has|strong=\"H5650\"* found|strong=\"H4672\"* courage to|strong=\"H5921\"* pray|strong=\"H6419\"* before|strong=\"H6440\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 26, + "text": "Now|strong=\"H6258\"*, Yahweh|strong=\"H3068\"*, you|strong=\"H5921\"* are|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* promised|strong=\"H1696\"* this|strong=\"H2063\"* good|strong=\"H2896\"* thing|strong=\"H2063\"* to|strong=\"H1696\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 27, + "text": "Now|strong=\"H6258\"* it|strong=\"H3588\"* has|strong=\"H3068\"* pleased|strong=\"H2974\"* you|strong=\"H3588\"* to|strong=\"H3068\"* bless|strong=\"H1288\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* may|strong=\"H1961\"* continue|strong=\"H1961\"* forever|strong=\"H5769\"* before|strong=\"H6440\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H1961\"* blessed|strong=\"H1288\"*, and|strong=\"H3068\"* it|strong=\"H3588\"* is|strong=\"H3068\"* blessed|strong=\"H1288\"* forever|strong=\"H5769\"*.”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* this|strong=\"H3651\"*, David|strong=\"H1732\"* defeated|strong=\"H5221\"* the|strong=\"H3947\"* Philistines|strong=\"H6430\"* and|strong=\"H3027\"* subdued|strong=\"H3665\"* them|strong=\"H5221\"*, and|strong=\"H3027\"* took|strong=\"H3947\"* Gath|strong=\"H1661\"* and|strong=\"H3027\"* its|strong=\"H1961\"* towns|strong=\"H1323\"* out|strong=\"H3947\"* of|strong=\"H1323\"* the|strong=\"H3947\"* hand|strong=\"H3027\"* of|strong=\"H1323\"* the|strong=\"H3947\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H1732\"* defeated|strong=\"H5221\"* Moab|strong=\"H4124\"*; and|strong=\"H5650\"* the|strong=\"H5221\"* Moabites|strong=\"H4124\"* became|strong=\"H1961\"* servants|strong=\"H5650\"* to|strong=\"H1961\"* David|strong=\"H1732\"* and|strong=\"H5650\"* brought|strong=\"H5375\"* tribute|strong=\"H4503\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* defeated|strong=\"H5221\"* Hadadezer|strong=\"H1909\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Zobah|strong=\"H6678\"*, toward|strong=\"H3027\"* Hamath|strong=\"H2574\"*, as|strong=\"H2574\"* he|strong=\"H1732\"* went|strong=\"H3212\"* to|strong=\"H3212\"* establish|strong=\"H5324\"* his|strong=\"H1732\"* dominion|strong=\"H3027\"* by|strong=\"H3027\"* the|strong=\"H5221\"* river|strong=\"H5104\"* Euphrates|strong=\"H6578\"*." + }, + { + "verseNum": 4, + "text": "David|strong=\"H1732\"* took|strong=\"H3920\"* from|strong=\"H4480\"* him|strong=\"H3605\"* one|strong=\"H3605\"* thousand chariots|strong=\"H7393\"*, seven|strong=\"H7651\"* thousand horsemen|strong=\"H6571\"*, and|strong=\"H3967\"* twenty|strong=\"H6242\"* thousand footmen|strong=\"H7273\"*; and|strong=\"H3967\"* David|strong=\"H1732\"* hamstrung all|strong=\"H3605\"* the|strong=\"H3605\"* chariot|strong=\"H7393\"* horses|strong=\"H6571\"*, but|strong=\"H3498\"* reserved|strong=\"H3498\"* of|strong=\"H4480\"* them|strong=\"H4480\"* enough|strong=\"H3605\"* for|strong=\"H3605\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* chariots|strong=\"H7393\"*." + }, + { + "verseNum": 5, + "text": "When the|strong=\"H5221\"* Syrians of|strong=\"H4428\"* Damascus|strong=\"H1834\"* came|strong=\"H4428\"* to|strong=\"H4428\"* help|strong=\"H5826\"* Hadadezer|strong=\"H1909\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Zobah|strong=\"H6678\"*, David|strong=\"H1732\"* struck|strong=\"H5221\"* twenty-two|strong=\"H6242\"* thousand men|strong=\"H8147\"* of|strong=\"H4428\"* the|strong=\"H5221\"* Syrians." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H1961\"* David|strong=\"H1732\"* put|strong=\"H7760\"* garrisons in|strong=\"H1980\"* Syria of|strong=\"H3068\"* Damascus|strong=\"H1834\"*; and|strong=\"H1980\"* the|strong=\"H3605\"* Syrians became|strong=\"H1961\"* servants|strong=\"H5650\"* to|strong=\"H1980\"* David|strong=\"H1732\"* and|strong=\"H1980\"* brought|strong=\"H5375\"* tribute|strong=\"H4503\"*. Yahweh|strong=\"H3068\"* gave|strong=\"H7760\"* victory|strong=\"H3467\"* to|strong=\"H1980\"* David|strong=\"H1732\"* wherever|strong=\"H3605\"* he|strong=\"H3068\"* went|strong=\"H1980\"*." + }, + { + "verseNum": 7, + "text": "David|strong=\"H1732\"* took|strong=\"H3947\"* the|strong=\"H5921\"* shields|strong=\"H7982\"* of|strong=\"H5650\"* gold|strong=\"H2091\"* that|strong=\"H1732\"* were|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* servants|strong=\"H5650\"* of|strong=\"H5650\"* Hadadezer|strong=\"H1909\"*, and|strong=\"H2091\"* brought|strong=\"H3947\"* them|strong=\"H5921\"* to|strong=\"H1961\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 8, + "text": "From|strong=\"H3947\"* Tibhath|strong=\"H2880\"* and|strong=\"H5892\"* from|strong=\"H3947\"* Cun|strong=\"H3560\"*, cities|strong=\"H5892\"* of|strong=\"H5892\"* Hadadezer|strong=\"H1909\"*, David|strong=\"H1732\"* took|strong=\"H3947\"* very|strong=\"H3966\"* much|strong=\"H7227\"* bronze|strong=\"H5178\"*, with|strong=\"H6213\"* which|strong=\"H5892\"* Solomon|strong=\"H8010\"* made|strong=\"H6213\"* the|strong=\"H3947\"* bronze|strong=\"H5178\"* sea|strong=\"H3220\"*, the|strong=\"H3947\"* pillars|strong=\"H5982\"*, and|strong=\"H5892\"* the|strong=\"H3947\"* vessels|strong=\"H3627\"* of|strong=\"H5892\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"H3588\"* Tou|strong=\"H8583\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Hamath|strong=\"H2574\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* David|strong=\"H1732\"* had|strong=\"H1732\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H2426\"* of|strong=\"H4428\"* Hadadezer|strong=\"H1909\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Zobah|strong=\"H6678\"*," + }, + { + "verseNum": 10, + "text": "he|strong=\"H3588\"* sent|strong=\"H7971\"* Hadoram|strong=\"H1913\"* his|strong=\"H3605\"* son|strong=\"H1121\"* to|strong=\"H7971\"* King|strong=\"H4428\"* David|strong=\"H1732\"* to|strong=\"H7971\"* greet|strong=\"H7592\"* him|strong=\"H5921\"* and|strong=\"H1121\"* to|strong=\"H7971\"* bless|strong=\"H1288\"* him|strong=\"H5921\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1961\"* fought|strong=\"H3898\"* against|strong=\"H5921\"* Hadadezer|strong=\"H1909\"* and|strong=\"H1121\"* struck|strong=\"H5221\"* him|strong=\"H5921\"* (for|strong=\"H3588\"* Hadadezer|strong=\"H1909\"* had|strong=\"H1961\"* wars|strong=\"H4421\"* with|strong=\"H5921\"* Tou|strong=\"H8583\"*); and|strong=\"H1121\"* he|strong=\"H3588\"* had|strong=\"H1961\"* with|strong=\"H5921\"* him|strong=\"H5921\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H1121\"* vessels|strong=\"H3627\"* of|strong=\"H1121\"* gold|strong=\"H2091\"* and|strong=\"H1121\"* silver|strong=\"H3701\"* and|strong=\"H1121\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 11, + "text": "King|strong=\"H4428\"* David|strong=\"H1732\"* also|strong=\"H1571\"* dedicated|strong=\"H6942\"* these|strong=\"H3605\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, with|strong=\"H5973\"* the|strong=\"H3605\"* silver|strong=\"H3701\"* and|strong=\"H1121\"* the|strong=\"H3605\"* gold|strong=\"H2091\"* that|strong=\"H3605\"* he|strong=\"H3068\"* carried|strong=\"H5375\"* away|strong=\"H5375\"* from|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*: from|strong=\"H1121\"* Edom, from|strong=\"H1121\"* Moab|strong=\"H4124\"*, from|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, from|strong=\"H1121\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, and|strong=\"H1121\"* from|strong=\"H1121\"* Amalek|strong=\"H6002\"*." + }, + { + "verseNum": 12, + "text": "Moreover Abishai the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* struck|strong=\"H5221\"* eighteen|strong=\"H8083\"* thousand of|strong=\"H1121\"* the|strong=\"H5221\"* Edomites in|strong=\"H1121\"* the|strong=\"H5221\"* Valley|strong=\"H1516\"* of|strong=\"H1121\"* Salt|strong=\"H4417\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3068\"* put|strong=\"H7760\"* garrisons|strong=\"H5333\"* in|strong=\"H1980\"* Edom; and|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Edomites became|strong=\"H1961\"* servants|strong=\"H5650\"* to|strong=\"H1980\"* David|strong=\"H1732\"*. Yahweh|strong=\"H3068\"* gave|strong=\"H7760\"* victory|strong=\"H3467\"* to|strong=\"H1980\"* David|strong=\"H1732\"* wherever|strong=\"H3605\"* he|strong=\"H3068\"* went|strong=\"H1980\"*." + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* he|strong=\"H6213\"* executed|strong=\"H6213\"* justice|strong=\"H4941\"* and|strong=\"H3478\"* righteousness|strong=\"H6666\"* for|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 15, + "text": "Joab|strong=\"H3097\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"*; Jehoshaphat|strong=\"H3092\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahilud was|strong=\"H1121\"* recorder|strong=\"H2142\"*;" + }, + { + "verseNum": 16, + "text": "Zadok|strong=\"H6659\"* the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub and|strong=\"H1121\"* Abimelech the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abiathar were|strong=\"H1121\"* priests|strong=\"H3548\"*; Shavsha|strong=\"H7798\"* was|strong=\"H1121\"* scribe|strong=\"H5608\"*;" + }, + { + "verseNum": 17, + "text": "and|strong=\"H1121\"* Benaiah|strong=\"H1141\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* was|strong=\"H1732\"* over|strong=\"H5921\"* the|strong=\"H5921\"* Cherethites|strong=\"H3774\"* and|strong=\"H1121\"* the|strong=\"H5921\"* Pelethites|strong=\"H6432\"*; and|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"* were|strong=\"H1121\"* chief|strong=\"H7223\"* officials serving the|strong=\"H5921\"* king|strong=\"H4428\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* this|strong=\"H3651\"*, Nahash|strong=\"H5176\"* the|strong=\"H8478\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H8478\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* his|strong=\"H1961\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H4428\"* his|strong=\"H1961\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* said, “I|strong=\"H3588\"* will|strong=\"H5650\"* show|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H7971\"* Hanun|strong=\"H2586\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nahash|strong=\"H5176\"*, because|strong=\"H3588\"* his|strong=\"H7971\"* father|strong=\"H1121\"* showed|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H7971\"* me|strong=\"H7971\"*.”" + }, + { + "verseNum": 3, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* said to|strong=\"H7971\"* Hanun|strong=\"H2586\"*, “Do|strong=\"H5869\"* you|strong=\"H3588\"* think|strong=\"H5869\"* that|strong=\"H3588\"* David|strong=\"H1732\"* honors|strong=\"H3513\"* your|strong=\"H3588\"* father|strong=\"H1121\"*, in|strong=\"H1121\"* that|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H5650\"* sent|strong=\"H7971\"* comforters|strong=\"H5162\"* to|strong=\"H7971\"* you|strong=\"H3588\"*? Haven’t his|strong=\"H7971\"* servants|strong=\"H5650\"* come|strong=\"H2015\"* to|strong=\"H7971\"* you|strong=\"H3588\"* to|strong=\"H7971\"* search|strong=\"H2713\"*, to|strong=\"H7971\"* overthrow|strong=\"H2015\"*, and|strong=\"H1121\"* to|strong=\"H7971\"* spy|strong=\"H7270\"* out|strong=\"H7971\"* the|strong=\"H3588\"* land?”" + }, + { + "verseNum": 4, + "text": "So|strong=\"H3947\"* Hanun|strong=\"H2586\"* took|strong=\"H3947\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"*, shaved|strong=\"H1548\"* them|strong=\"H7971\"*, and|strong=\"H7971\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* their|strong=\"H3947\"* garments|strong=\"H4063\"* in|strong=\"H5650\"* the|strong=\"H3947\"* middle|strong=\"H2677\"* at|strong=\"H1732\"* their|strong=\"H3947\"* buttocks|strong=\"H4667\"*, and|strong=\"H7971\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* away|strong=\"H7971\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H1961\"* some people|strong=\"H3427\"* went|strong=\"H3212\"* and|strong=\"H7971\"* told|strong=\"H5046\"* David|strong=\"H1732\"* how|strong=\"H3588\"* the|strong=\"H5921\"* men were|strong=\"H1961\"* treated. He|strong=\"H3588\"* sent|strong=\"H7971\"* to|strong=\"H5704\"* meet|strong=\"H7125\"* them|strong=\"H5921\"*; for|strong=\"H3588\"* the|strong=\"H5921\"* men were|strong=\"H1961\"* greatly|strong=\"H3966\"* humiliated|strong=\"H3637\"*. The|strong=\"H5921\"* king|strong=\"H4428\"* said, “Stay|strong=\"H3427\"* at|strong=\"H3427\"* Jericho|strong=\"H3405\"* until|strong=\"H5704\"* your|strong=\"H5921\"* beards|strong=\"H2206\"* have|strong=\"H1961\"* grown|strong=\"H6779\"*, and|strong=\"H7971\"* then|strong=\"H1961\"* return|strong=\"H7725\"*.”" + }, + { + "verseNum": 6, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H1732\"* made|strong=\"H5983\"* themselves odious to|strong=\"H7971\"* David|strong=\"H1732\"*, Hanun|strong=\"H2586\"* and|strong=\"H1121\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* sent|strong=\"H7971\"* one|strong=\"H4480\"* thousand talents|strong=\"H3603\"*+ 19:6 A talent is about 30 kilograms or 66 pounds, so 1000 talents is about 30 metric tons* of|strong=\"H1121\"* silver|strong=\"H3701\"* to|strong=\"H7971\"* hire|strong=\"H7936\"* chariots|strong=\"H7393\"* and|strong=\"H1121\"* horsemen|strong=\"H6571\"* out|strong=\"H7971\"* of|strong=\"H1121\"* Mesopotamia, out|strong=\"H7971\"* of|strong=\"H1121\"* Aram-maacah, and|strong=\"H1121\"* out|strong=\"H7971\"* of|strong=\"H1121\"* Zobah|strong=\"H6678\"*." + }, + { + "verseNum": 7, + "text": "So|strong=\"H7936\"* they|strong=\"H5971\"* hired|strong=\"H7936\"* for|strong=\"H6440\"* themselves|strong=\"H6440\"* thirty-two|strong=\"H7970\"* thousand chariots|strong=\"H7393\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Maacah|strong=\"H4601\"* with|strong=\"H6440\"* his|strong=\"H6440\"* people|strong=\"H5971\"*, who|strong=\"H5971\"* came|strong=\"H5971\"* and|strong=\"H1121\"* encamped|strong=\"H2583\"* near|strong=\"H6440\"* Medeba|strong=\"H4311\"*. The|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* gathered themselves|strong=\"H6440\"* together|strong=\"H8147\"* from|strong=\"H6440\"* their|strong=\"H6440\"* cities|strong=\"H5892\"*, and|strong=\"H1121\"* came|strong=\"H5971\"* to|strong=\"H6440\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H8085\"* David|strong=\"H1732\"* heard|strong=\"H8085\"* of|strong=\"H6635\"* it|strong=\"H7971\"*, he|strong=\"H3605\"* sent|strong=\"H7971\"* Joab|strong=\"H3097\"* with|strong=\"H1732\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H6635\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* came|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* put|strong=\"H3318\"* the|strong=\"H3318\"* battle|strong=\"H4421\"* in|strong=\"H4428\"* array|strong=\"H6186\"* at|strong=\"H4421\"* the|strong=\"H3318\"* gate|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H3318\"* city|strong=\"H5892\"*; and|strong=\"H1121\"* the|strong=\"H3318\"* kings|strong=\"H4428\"* who|strong=\"H1121\"* had|strong=\"H4428\"* come|strong=\"H3318\"* were|strong=\"H1121\"* by|strong=\"H3318\"* themselves|strong=\"H6186\"* in|strong=\"H4428\"* the|strong=\"H3318\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H1961\"* when|strong=\"H3588\"* Joab|strong=\"H3097\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H3605\"* battle|strong=\"H4421\"* was|strong=\"H1961\"* set|strong=\"H6186\"* against|strong=\"H7125\"* him|strong=\"H6440\"* before|strong=\"H6440\"* and|strong=\"H3478\"* behind, he|strong=\"H3588\"* chose some|strong=\"H3605\"* of|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* choice|strong=\"H7200\"* men|strong=\"H3605\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* put|strong=\"H6186\"* them|strong=\"H6440\"* in|strong=\"H3478\"* array|strong=\"H6186\"* against|strong=\"H7125\"* the|strong=\"H3605\"* Syrians." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5414\"* rest|strong=\"H3499\"* of|strong=\"H1121\"* the|strong=\"H5414\"* people|strong=\"H5971\"* he|strong=\"H3027\"* committed|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Abishai his|strong=\"H5414\"* brother; and|strong=\"H1121\"* they|strong=\"H5971\"* put|strong=\"H5414\"* themselves|strong=\"H6186\"* in|strong=\"H1121\"* array|strong=\"H6186\"* against|strong=\"H7125\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H4480\"* said, “If|strong=\"H1961\"* the|strong=\"H4480\"* Syrians are|strong=\"H1121\"* too|strong=\"H4480\"* strong|strong=\"H2388\"* for|strong=\"H1121\"* me|strong=\"H4480\"*, then|strong=\"H1961\"* you|strong=\"H4480\"* are|strong=\"H1121\"* to|strong=\"H1961\"* help|strong=\"H3467\"* me|strong=\"H4480\"*; but|strong=\"H1961\"* if|strong=\"H1961\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* are|strong=\"H1121\"* too|strong=\"H4480\"* strong|strong=\"H2388\"* for|strong=\"H1121\"* you|strong=\"H4480\"*, then|strong=\"H1961\"* I|strong=\"H1121\"* will|strong=\"H1961\"* help|strong=\"H3467\"* you|strong=\"H4480\"*." + }, + { + "verseNum": 13, + "text": "Be|strong=\"H3068\"* courageous|strong=\"H2388\"*, and|strong=\"H3068\"* let’s be|strong=\"H3068\"* strong|strong=\"H2388\"* for|strong=\"H6213\"* our|strong=\"H3068\"* people|strong=\"H5971\"* and|strong=\"H3068\"* for|strong=\"H6213\"* the|strong=\"H6213\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*. May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* do|strong=\"H6213\"* that|strong=\"H5971\"* which|strong=\"H3068\"* seems|strong=\"H2896\"* good|strong=\"H2896\"* to|strong=\"H3068\"* him|strong=\"H6213\"*.”" + }, + { + "verseNum": 14, + "text": "So|strong=\"H5066\"* Joab|strong=\"H3097\"* and|strong=\"H5971\"* the|strong=\"H6440\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H6440\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H6440\"* the|strong=\"H6440\"* front|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* Syrians to|strong=\"H6440\"* the|strong=\"H6440\"* battle|strong=\"H4421\"*; and|strong=\"H5971\"* they|strong=\"H5971\"* fled|strong=\"H5127\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H6440\"* Syrians had|strong=\"H3588\"* fled|strong=\"H5127\"*, they|strong=\"H1992\"* likewise|strong=\"H1571\"* fled|strong=\"H5127\"* before|strong=\"H6440\"* Abishai his|strong=\"H6440\"* brother, and|strong=\"H1121\"* entered into|strong=\"H5892\"* the|strong=\"H6440\"* city|strong=\"H5892\"*. Then|strong=\"H1571\"* Joab|strong=\"H3097\"* came|strong=\"H5983\"* to|strong=\"H6440\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* the|strong=\"H6440\"* Syrians saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H3478\"* defeated|strong=\"H5062\"* by|strong=\"H3318\"* Israel|strong=\"H3478\"*, they|strong=\"H3588\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* and|strong=\"H3478\"* called out|strong=\"H3318\"* the|strong=\"H6440\"* Syrians who|strong=\"H3478\"* were|strong=\"H3478\"* beyond|strong=\"H5676\"* the|strong=\"H6440\"* River|strong=\"H5104\"*,+ 19:16 or, the Euphrates River* with|strong=\"H6440\"* Shophach|strong=\"H7780\"* the|strong=\"H6440\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H6440\"* army|strong=\"H6635\"* of|strong=\"H8269\"* Hadadezer|strong=\"H1909\"* leading|strong=\"H8269\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 17, + "text": "David|strong=\"H1732\"* was|strong=\"H1732\"* told|strong=\"H5046\"* that|strong=\"H3605\"*, so|strong=\"H5674\"* he|strong=\"H3605\"* gathered|strong=\"H1732\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* together|strong=\"H5973\"*, passed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, came|strong=\"H3478\"* to|strong=\"H3478\"* them|strong=\"H5674\"*, and|strong=\"H3478\"* set|strong=\"H6186\"* the|strong=\"H3605\"* battle|strong=\"H4421\"* in|strong=\"H3478\"* array|strong=\"H6186\"* against|strong=\"H5973\"* them|strong=\"H5674\"*. So|strong=\"H5674\"* when|strong=\"H5674\"* David|strong=\"H1732\"* had|strong=\"H3478\"* put|strong=\"H5674\"* the|strong=\"H3605\"* battle|strong=\"H4421\"* in|strong=\"H3478\"* array|strong=\"H6186\"* against|strong=\"H5973\"* the|strong=\"H3605\"* Syrians, they|strong=\"H3478\"* fought|strong=\"H3898\"* with|strong=\"H5973\"* him|strong=\"H5046\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H6440\"* Syrians fled|strong=\"H5127\"* before|strong=\"H6440\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* David|strong=\"H1732\"* killed|strong=\"H2026\"* of|strong=\"H8269\"* the|strong=\"H6440\"* Syrian men|strong=\"H7651\"* seven|strong=\"H7651\"* thousand charioteers|strong=\"H7393\"* and|strong=\"H3478\"* forty thousand footmen|strong=\"H7273\"*, and|strong=\"H3478\"* also|strong=\"H1732\"* killed|strong=\"H2026\"* Shophach|strong=\"H7780\"* the|strong=\"H6440\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H6440\"* army|strong=\"H6635\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3588\"* the|strong=\"H6440\"* servants|strong=\"H5650\"* of|strong=\"H1121\"* Hadadezer|strong=\"H1909\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H3478\"* defeated|strong=\"H5062\"* by|strong=\"H3478\"* Israel|strong=\"H3478\"*, they|strong=\"H3588\"* made|strong=\"H7999\"* peace|strong=\"H7999\"* with|strong=\"H5973\"* David|strong=\"H1732\"* and|strong=\"H1121\"* served|strong=\"H5647\"* him|strong=\"H6440\"*. The|strong=\"H6440\"* Syrians would|strong=\"H3478\"* not|strong=\"H3808\"* help|strong=\"H3467\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* any|strong=\"H5750\"* more|strong=\"H5750\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"H3427\"* the|strong=\"H5221\"* time|strong=\"H6256\"* of|strong=\"H1121\"* the|strong=\"H5221\"* return|strong=\"H8666\"* of|strong=\"H1121\"* the|strong=\"H5221\"* year|strong=\"H8141\"*, at|strong=\"H3427\"* the|strong=\"H5221\"* time|strong=\"H6256\"* when|strong=\"H1961\"* kings|strong=\"H4428\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, Joab|strong=\"H3097\"* led|strong=\"H5090\"* out|strong=\"H3318\"* the|strong=\"H5221\"* army|strong=\"H6635\"* and|strong=\"H1121\"* wasted|strong=\"H7843\"* the|strong=\"H5221\"* country of|strong=\"H1121\"* the|strong=\"H5221\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* came|strong=\"H1961\"* and|strong=\"H1121\"* besieged|strong=\"H6696\"* Rabbah|strong=\"H7237\"*. But|strong=\"H1961\"* David|strong=\"H1732\"* stayed|strong=\"H3427\"* at|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*. Joab|strong=\"H3097\"* struck|strong=\"H5221\"* Rabbah|strong=\"H7237\"*, and|strong=\"H1121\"* overthrew|strong=\"H2040\"* it|strong=\"H5221\"*." + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* took|strong=\"H3947\"* the|strong=\"H5921\"* crown|strong=\"H5850\"* of|strong=\"H4428\"* their|strong=\"H3947\"* king|strong=\"H4428\"* from|strong=\"H3318\"* off|strong=\"H5921\"* his|strong=\"H3947\"* head|strong=\"H7218\"*, and|strong=\"H4428\"* found|strong=\"H4672\"* it|strong=\"H5921\"* to|strong=\"H3318\"* weigh|strong=\"H4948\"* a|strong=\"H3068\"* talent|strong=\"H3603\"* of|strong=\"H4428\"* gold|strong=\"H2091\"*,+ 20:2 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces* and|strong=\"H4428\"* there|strong=\"H1961\"* were|strong=\"H1961\"* precious|strong=\"H3368\"* stones in|strong=\"H5921\"* it|strong=\"H5921\"*. It|strong=\"H5921\"* was|strong=\"H1961\"* set|strong=\"H3318\"* on|strong=\"H5921\"* David|strong=\"H1732\"*’s head|strong=\"H7218\"*, and|strong=\"H4428\"* he|strong=\"H1732\"* brought|strong=\"H3318\"* very|strong=\"H3966\"* much|strong=\"H7235\"* plunder|strong=\"H7998\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H5921\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3651\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* in|strong=\"H6213\"* it|strong=\"H6213\"*, and|strong=\"H1121\"* had|strong=\"H1732\"* them|strong=\"H7725\"* cut|strong=\"H7787\"* with|strong=\"H6213\"* saws|strong=\"H4050\"*, with|strong=\"H6213\"* iron|strong=\"H1270\"* picks|strong=\"H2757\"*, and|strong=\"H1121\"* with|strong=\"H6213\"* axes|strong=\"H4050\"*. David|strong=\"H1732\"* did|strong=\"H6213\"* so|strong=\"H3651\"* to|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*. Then|strong=\"H3318\"* David|strong=\"H1732\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 4, + "text": "After|strong=\"H1961\"* this|strong=\"H5975\"*, war|strong=\"H4421\"* arose|strong=\"H5975\"* at|strong=\"H4421\"* Gezer|strong=\"H1507\"* with|strong=\"H5973\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"*. Then|strong=\"H1961\"* Sibbecai|strong=\"H5444\"* the|strong=\"H5221\"* Hushathite|strong=\"H2843\"* killed|strong=\"H5221\"* Sippai|strong=\"H5598\"*, of|strong=\"H5221\"* the|strong=\"H5221\"* sons|strong=\"H3211\"* of|strong=\"H5221\"* the|strong=\"H5221\"* giant|strong=\"H7497\"*; and|strong=\"H5975\"* they|strong=\"H5221\"* were|strong=\"H1961\"* subdued|strong=\"H3665\"*." + }, + { + "verseNum": 5, + "text": "Again|strong=\"H5750\"* there|strong=\"H1961\"* was|strong=\"H1961\"* war|strong=\"H4421\"* with|strong=\"H4421\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"*; and|strong=\"H1121\"* Elhanan the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jair|strong=\"H3265\"* killed|strong=\"H5221\"* Lahmi|strong=\"H3902\"* the|strong=\"H5221\"* brother of|strong=\"H1121\"* Goliath|strong=\"H1555\"* the|strong=\"H5221\"* Gittite|strong=\"H1663\"*, the|strong=\"H5221\"* staff|strong=\"H6086\"* of|strong=\"H1121\"* whose|strong=\"H1121\"* spear|strong=\"H2595\"* was|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* weaver’s beam|strong=\"H4500\"*." + }, + { + "verseNum": 6, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* again|strong=\"H5750\"* war|strong=\"H4421\"* at|strong=\"H4421\"* Gath|strong=\"H1661\"*, where there|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* man of|strong=\"H3205\"* great stature|strong=\"H4060\"*, who|strong=\"H1931\"* had|strong=\"H1961\"* twenty-four|strong=\"H6242\"* fingers and|strong=\"H6242\"* toes, six|strong=\"H8337\"* on|strong=\"H1961\"* each hand and|strong=\"H6242\"* six|strong=\"H8337\"* on|strong=\"H1961\"* each foot; and|strong=\"H6242\"* he|strong=\"H1931\"* also|strong=\"H1571\"* was|strong=\"H1961\"* born|strong=\"H3205\"* to|strong=\"H1961\"* the|strong=\"H3205\"* giant|strong=\"H7497\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H1121\"* he|strong=\"H1732\"* defied|strong=\"H2778\"* Israel|strong=\"H3478\"*, Jonathan|strong=\"H3083\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimea|strong=\"H8092\"*, David|strong=\"H1732\"*’s brother, killed|strong=\"H5221\"* him|strong=\"H5221\"*." + }, + { + "verseNum": 8, + "text": "These|strong=\"H1732\"* were|strong=\"H3027\"* born|strong=\"H3205\"* to|strong=\"H3027\"* the|strong=\"H3205\"* giant|strong=\"H7497\"* in|strong=\"H5650\"* Gath|strong=\"H1661\"*; and|strong=\"H3027\"* they|strong=\"H3027\"* fell|strong=\"H5307\"* by|strong=\"H3027\"* the|strong=\"H3205\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* David|strong=\"H1732\"* and|strong=\"H3027\"* by|strong=\"H3027\"* the|strong=\"H3205\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* his|strong=\"H1732\"* servants|strong=\"H5650\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Satan|strong=\"H7854\"* stood|strong=\"H5975\"* up|strong=\"H5975\"* against|strong=\"H5921\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* moved|strong=\"H5496\"* David|strong=\"H1732\"* to|strong=\"H3478\"* take|strong=\"H5975\"* a|strong=\"H3068\"* census of|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* said to|strong=\"H5704\"* Joab|strong=\"H3097\"* and|strong=\"H3478\"* to|strong=\"H5704\"* the|strong=\"H3045\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H3045\"* people|strong=\"H5971\"*, “Go|strong=\"H3212\"*, count|strong=\"H5608\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* Beersheba even|strong=\"H5704\"* to|strong=\"H5704\"* Dan|strong=\"H1835\"*; and|strong=\"H3478\"* bring|strong=\"H3212\"* me|strong=\"H3045\"* word, that|strong=\"H3045\"* I|strong=\"H5704\"* may|strong=\"H5971\"* know|strong=\"H3045\"* how|strong=\"H3045\"* many|strong=\"H5704\"* there|strong=\"H3045\"* are|strong=\"H5971\"*.”" + }, + { + "verseNum": 3, + "text": "Joab|strong=\"H3097\"* said, “May|strong=\"H1961\"* Yahweh|strong=\"H3068\"* make|strong=\"H3254\"* his|strong=\"H3605\"* people|strong=\"H5971\"* a|strong=\"H3068\"* hundred|strong=\"H3967\"* times|strong=\"H6471\"* as|strong=\"H1961\"* many|strong=\"H4100\"* as|strong=\"H1961\"* they|strong=\"H1992\"* are|strong=\"H1992\"*. But|strong=\"H3808\"*, my|strong=\"H3605\"* lord|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, aren’t they|strong=\"H1992\"* all|strong=\"H3605\"* my|strong=\"H3605\"* lord|strong=\"H3068\"*’s servants|strong=\"H5650\"*? Why|strong=\"H4100\"* does|strong=\"H4100\"* my|strong=\"H3605\"* lord|strong=\"H3068\"* require|strong=\"H1245\"* this|strong=\"H2063\"* thing|strong=\"H2063\"*? Why|strong=\"H4100\"* will|strong=\"H3068\"* he|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* cause|strong=\"H5971\"* of|strong=\"H4428\"* guilt to|strong=\"H3478\"* Israel|strong=\"H3478\"*?”" + }, + { + "verseNum": 4, + "text": "Nevertheless the|strong=\"H3605\"* king|strong=\"H4428\"*’s word|strong=\"H1697\"* prevailed|strong=\"H2388\"* against|strong=\"H5921\"* Joab|strong=\"H3097\"*. Therefore|strong=\"H5921\"* Joab|strong=\"H3097\"* departed|strong=\"H1980\"* and|strong=\"H1980\"* went|strong=\"H1980\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, then|strong=\"H1980\"* came|strong=\"H3318\"* to|strong=\"H1980\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 5, + "text": "Joab|strong=\"H3097\"* gave|strong=\"H5414\"* the|strong=\"H3605\"* sum|strong=\"H4557\"* of|strong=\"H4557\"* the|strong=\"H3605\"* census|strong=\"H4662\"* of|strong=\"H4557\"* the|strong=\"H3605\"* people|strong=\"H5971\"* to|strong=\"H3478\"* David|strong=\"H1732\"*. All|strong=\"H3605\"* those|strong=\"H3605\"* of|strong=\"H4557\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* one|strong=\"H3605\"* million one|strong=\"H3605\"* hundred|strong=\"H3967\"* thousand men|strong=\"H5971\"* who|strong=\"H3605\"* drew|strong=\"H8025\"* a|strong=\"H3068\"* sword|strong=\"H2719\"*; and|strong=\"H3967\"* in|strong=\"H3478\"* Judah|strong=\"H3063\"* were|strong=\"H3478\"* four hundred|strong=\"H3967\"* seventy|strong=\"H7657\"* thousand men|strong=\"H5971\"* who|strong=\"H3605\"* drew|strong=\"H8025\"* a|strong=\"H3068\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"H3588\"* he|strong=\"H3588\"* didn’t count Levi|strong=\"H3878\"* and|strong=\"H4428\"* Benjamin|strong=\"H1144\"* among|strong=\"H8432\"* them|strong=\"H8432\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"*’s word|strong=\"H1697\"* was|strong=\"H1697\"* abominable|strong=\"H8581\"* to|strong=\"H4428\"* Joab|strong=\"H3097\"*." + }, + { + "verseNum": 7, + "text": "God was|strong=\"H3478\"* displeased|strong=\"H7489\"* with|strong=\"H5921\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*; therefore|strong=\"H5921\"* he|strong=\"H5921\"* struck|strong=\"H5221\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "David|strong=\"H1732\"* said|strong=\"H1697\"* to|strong=\"H6213\"* God, “I|strong=\"H3588\"* have|strong=\"H5650\"* sinned|strong=\"H2398\"* greatly|strong=\"H3966\"*, in|strong=\"H6213\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5650\"* done|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*. But|strong=\"H3588\"* now|strong=\"H6258\"* put|strong=\"H6213\"* away|strong=\"H5674\"*, I|strong=\"H3588\"* beg|strong=\"H4994\"* you|strong=\"H3588\"*, the|strong=\"H3588\"* iniquity|strong=\"H5771\"* of|strong=\"H1697\"* your|strong=\"H6213\"* servant|strong=\"H5650\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5650\"* done|strong=\"H6213\"* very|strong=\"H3966\"* foolishly|strong=\"H5528\"*.”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Gad|strong=\"H1410\"*, David|strong=\"H1732\"*’s seer|strong=\"H2374\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 10, + "text": "“Go|strong=\"H3212\"* and|strong=\"H3068\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* David|strong=\"H1732\"*, saying|strong=\"H1696\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “I|strong=\"H3541\"* offer|strong=\"H6213\"* you|strong=\"H5921\"* three|strong=\"H7969\"* things|strong=\"H7969\"*. Choose one|strong=\"H6213\"* of|strong=\"H3068\"* them|strong=\"H5921\"*, that|strong=\"H3068\"* I|strong=\"H3541\"* may|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H5921\"* to|strong=\"H1696\"* you|strong=\"H5921\"*.”’”" + }, + { + "verseNum": 11, + "text": "So|strong=\"H3541\"* Gad|strong=\"H1410\"* came|strong=\"H3068\"* to|strong=\"H3068\"* David|strong=\"H1732\"* and|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H1732\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Take|strong=\"H6901\"* your|strong=\"H3068\"* choice:" + }, + { + "verseNum": 12, + "text": "either|strong=\"H1697\"* three|strong=\"H7969\"* years|strong=\"H8141\"* of|strong=\"H3068\"* famine|strong=\"H7458\"*; or|strong=\"H3117\"* three|strong=\"H7969\"* months|strong=\"H2320\"* to|strong=\"H7725\"* be|strong=\"H1697\"* consumed|strong=\"H5595\"* before|strong=\"H6440\"* your|strong=\"H3068\"* foes|strong=\"H6862\"*, while|strong=\"H3117\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* of|strong=\"H3068\"* your|strong=\"H3068\"* enemies|strong=\"H6862\"* overtakes|strong=\"H5381\"* you|strong=\"H6440\"*; or|strong=\"H3117\"* else|strong=\"H3605\"* three|strong=\"H7969\"* days|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, even|strong=\"H3068\"* pestilence|strong=\"H1698\"* in|strong=\"H8141\"* the|strong=\"H3605\"* land|strong=\"H6440\"*, and|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* destroying|strong=\"H7843\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* consider|strong=\"H7200\"* what|strong=\"H4100\"* answer|strong=\"H7725\"* I|strong=\"H3117\"* shall|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H6440\"* who|strong=\"H3605\"* sent|strong=\"H7971\"* me|strong=\"H6440\"*.’”" + }, + { + "verseNum": 13, + "text": "David|strong=\"H1732\"* said to|strong=\"H3068\"* Gad|strong=\"H1410\"*, “I|strong=\"H3588\"* am|strong=\"H3068\"* in|strong=\"H3068\"* distress|strong=\"H6862\"*. Let|strong=\"H4994\"* me|strong=\"H4994\"* fall|strong=\"H5307\"*, I|strong=\"H3588\"* pray|strong=\"H4994\"*, into|strong=\"H5307\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"*, for|strong=\"H3588\"* his|strong=\"H3068\"* mercies|strong=\"H7356\"* are|strong=\"H3027\"* very|strong=\"H3966\"* great|strong=\"H7227\"*. Don’t let|strong=\"H4994\"* me|strong=\"H4994\"* fall|strong=\"H5307\"* into|strong=\"H5307\"* man|strong=\"H5307\"*’s hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 14, + "text": "So|strong=\"H5414\"* Yahweh|strong=\"H3068\"* sent|strong=\"H5414\"* a|strong=\"H3068\"* pestilence|strong=\"H1698\"* on|strong=\"H5307\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* seventy|strong=\"H7657\"* thousand men|strong=\"H3478\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* fell|strong=\"H5307\"*." + }, + { + "verseNum": 15, + "text": "God|strong=\"H3068\"* sent|strong=\"H7971\"* an|strong=\"H7200\"* angel|strong=\"H4397\"* to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3068\"* destroy|strong=\"H7843\"* it|strong=\"H5921\"*. As|strong=\"H3068\"* he|strong=\"H3068\"* was|strong=\"H3068\"* about|strong=\"H5921\"* to|strong=\"H3068\"* destroy|strong=\"H7843\"*, Yahweh|strong=\"H3068\"* saw|strong=\"H7200\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* relented|strong=\"H5162\"* of|strong=\"H3068\"* the|strong=\"H5921\"* disaster|strong=\"H7451\"*, and|strong=\"H3068\"* said to|strong=\"H3068\"* the|strong=\"H5921\"* destroying|strong=\"H7843\"* angel|strong=\"H4397\"*, “It|strong=\"H5921\"* is|strong=\"H3068\"* enough|strong=\"H7227\"*. Now|strong=\"H6258\"* withdraw your|strong=\"H3068\"* hand|strong=\"H3027\"*.” Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* was|strong=\"H3068\"* standing|strong=\"H5975\"* by|strong=\"H3027\"* the|strong=\"H5921\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* of|strong=\"H3068\"* Ornan the|strong=\"H5921\"* Jebusite|strong=\"H2983\"*." + }, + { + "verseNum": 16, + "text": "David|strong=\"H1732\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"*, and|strong=\"H3068\"* saw|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* standing|strong=\"H5975\"* between|strong=\"H5921\"* earth|strong=\"H8064\"* and|strong=\"H3068\"* the|strong=\"H6440\"* sky|strong=\"H8064\"*, having a|strong=\"H3068\"* drawn|strong=\"H8025\"* sword|strong=\"H2719\"* in|strong=\"H5921\"* his|strong=\"H5375\"* hand|strong=\"H3027\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* over|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 17, + "text": "David|strong=\"H1732\"* said to|strong=\"H3068\"* God|strong=\"H3068\"*, “Isn’t it|strong=\"H1931\"* I|strong=\"H3808\"* who|strong=\"H1931\"* commanded the|strong=\"H6213\"* people|strong=\"H5971\"* to|strong=\"H3068\"* be|strong=\"H1961\"* counted|strong=\"H4487\"*? It|strong=\"H1931\"* is|strong=\"H3068\"* even|strong=\"H3808\"* I|strong=\"H3808\"* who|strong=\"H1931\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"* and|strong=\"H3068\"* done|strong=\"H6213\"* very|strong=\"H6213\"* wickedly|strong=\"H7489\"*; but|strong=\"H3808\"* these|strong=\"H6213\"* sheep|strong=\"H6629\"*, what|strong=\"H4100\"* have|strong=\"H1961\"* they|strong=\"H3068\"* done|strong=\"H6213\"*? Please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, O|strong=\"H3068\"* Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*, be|strong=\"H1961\"* against|strong=\"H2398\"* me|strong=\"H4994\"* and|strong=\"H3068\"* against|strong=\"H2398\"* my|strong=\"H3068\"* father’s house|strong=\"H1004\"*; but|strong=\"H3808\"* not|strong=\"H3808\"* against|strong=\"H2398\"* your|strong=\"H3068\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* should|strong=\"H3068\"* be|strong=\"H1961\"* plagued|strong=\"H4046\"*.”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H6965\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* commanded Gad|strong=\"H1410\"* to|strong=\"H3068\"* tell David|strong=\"H1732\"* that|strong=\"H3588\"* David|strong=\"H1732\"* should|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H6965\"* raise|strong=\"H6965\"* an|strong=\"H6965\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* on|strong=\"H3068\"* the|strong=\"H3588\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* of|strong=\"H3068\"* Ornan the|strong=\"H3588\"* Jebusite|strong=\"H2983\"*." + }, + { + "verseNum": 19, + "text": "David|strong=\"H1732\"* went|strong=\"H5927\"* up|strong=\"H5927\"* at|strong=\"H3068\"* the|strong=\"H3068\"* saying|strong=\"H1697\"* of|strong=\"H3068\"* Gad|strong=\"H1410\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*." + }, + { + "verseNum": 20, + "text": "Ornan turned|strong=\"H7725\"* back|strong=\"H7725\"* and|strong=\"H1121\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* angel|strong=\"H4397\"*; and|strong=\"H1121\"* his|strong=\"H7725\"* four sons|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* with|strong=\"H5973\"* him|strong=\"H7725\"* hid|strong=\"H2244\"* themselves|strong=\"H2244\"*. Now Ornan was|strong=\"H1121\"* threshing|strong=\"H1758\"* wheat|strong=\"H2406\"*." + }, + { + "verseNum": 21, + "text": "As|strong=\"H5704\"* David|strong=\"H1732\"* came|strong=\"H3318\"* to|strong=\"H5704\"* Ornan, Ornan looked|strong=\"H7200\"* and|strong=\"H1732\"* saw|strong=\"H7200\"* David|strong=\"H1732\"*, and|strong=\"H1732\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4480\"* the|strong=\"H7200\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*, and|strong=\"H1732\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* to|strong=\"H5704\"* David|strong=\"H1732\"* with|strong=\"H3318\"* his|strong=\"H1732\"* face|strong=\"H7200\"* to|strong=\"H5704\"* the|strong=\"H7200\"* ground." + }, + { + "verseNum": 22, + "text": "Then|strong=\"H5414\"* David|strong=\"H1732\"* said to|strong=\"H3068\"* Ornan, “Sell|strong=\"H5414\"* me|strong=\"H5414\"* the|strong=\"H5921\"* place|strong=\"H4725\"* of|strong=\"H3068\"* this|strong=\"H5414\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*, that|strong=\"H5971\"* I|strong=\"H5414\"* may|strong=\"H3068\"* build|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* on|strong=\"H5921\"* it|strong=\"H5414\"*. You|strong=\"H5414\"* shall|strong=\"H3068\"* sell|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* me|strong=\"H5414\"* for|strong=\"H5921\"* the|strong=\"H5921\"* full|strong=\"H4392\"* price|strong=\"H3701\"*, that|strong=\"H5971\"* the|strong=\"H5921\"* plague|strong=\"H4046\"* may|strong=\"H3068\"* be|strong=\"H3068\"* stopped|strong=\"H6113\"* from|strong=\"H5921\"* afflicting the|strong=\"H5921\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 23, + "text": "Ornan said to|strong=\"H6213\"* David|strong=\"H1732\"*, “Take|strong=\"H3947\"* it|strong=\"H5414\"* for|strong=\"H6213\"* yourself|strong=\"H6213\"*, and|strong=\"H4428\"* let|strong=\"H5414\"* my|strong=\"H5414\"* lord the|strong=\"H3605\"* king|strong=\"H4428\"* do|strong=\"H6213\"* that|strong=\"H7200\"* which|strong=\"H5869\"* is|strong=\"H2896\"* good|strong=\"H2896\"* in|strong=\"H6213\"* his|strong=\"H3605\"* eyes|strong=\"H5869\"*. Behold|strong=\"H7200\"*, I|strong=\"H5414\"* give|strong=\"H5414\"* the|strong=\"H3605\"* oxen|strong=\"H1241\"* for|strong=\"H6213\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* threshing|strong=\"H4173\"* instruments|strong=\"H4173\"* for|strong=\"H6213\"* wood|strong=\"H6086\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* wheat|strong=\"H2406\"* for|strong=\"H6213\"* the|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*. I|strong=\"H5414\"* give|strong=\"H5414\"* it|strong=\"H5414\"* all|strong=\"H3605\"*.”" + }, + { + "verseNum": 24, + "text": "King|strong=\"H4428\"* David|strong=\"H1732\"* said to|strong=\"H3068\"* Ornan, “No|strong=\"H3808\"*, but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* most|strong=\"H3068\"* certainly|strong=\"H3588\"* buy|strong=\"H7069\"* it|strong=\"H3588\"* for|strong=\"H3588\"* the|strong=\"H3588\"* full|strong=\"H4392\"* price|strong=\"H3701\"*. For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* take|strong=\"H5375\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* yours for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, nor|strong=\"H3808\"* offer|strong=\"H5927\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* that|strong=\"H3588\"* costs|strong=\"H2600\"* me|strong=\"H2600\"* nothing|strong=\"H3808\"*.”" + }, + { + "verseNum": 25, + "text": "So|strong=\"H5414\"* David|strong=\"H1732\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* Ornan six|strong=\"H8337\"* hundred|strong=\"H3967\"* shekels|strong=\"H8255\"*+ 21:25 A shekel is about 10 grams or about 0.32 Troy ounces, so 600 shekels was about 6 kilograms or about 192 Troy ounces.* of|strong=\"H8255\"* gold|strong=\"H2091\"* by|strong=\"H2091\"* weight|strong=\"H4948\"* for|strong=\"H5414\"* the|strong=\"H5414\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 26, + "text": "David|strong=\"H1732\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* there|strong=\"H8033\"*, and|strong=\"H3068\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, and|strong=\"H3068\"* called|strong=\"H7121\"* on|strong=\"H5921\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* he|strong=\"H8033\"* answered|strong=\"H6030\"* him|strong=\"H7121\"* from|strong=\"H4480\"* the|strong=\"H5921\"* sky|strong=\"H8064\"* by|strong=\"H5921\"* fire on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 27, + "text": "Then|strong=\"H7725\"* Yahweh|strong=\"H3068\"* commanded the|strong=\"H3068\"* angel|strong=\"H4397\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* put|strong=\"H7725\"* his|strong=\"H3068\"* sword|strong=\"H2719\"* back|strong=\"H7725\"* into|strong=\"H7725\"* its|strong=\"H7725\"* sheath|strong=\"H5084\"*." + }, + { + "verseNum": 28, + "text": "At|strong=\"H3068\"* that|strong=\"H3588\"* time|strong=\"H6256\"*, when|strong=\"H3588\"* David|strong=\"H1732\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* answered|strong=\"H6030\"* him|strong=\"H7200\"* in|strong=\"H3068\"* the|strong=\"H7200\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* of|strong=\"H3068\"* Ornan the|strong=\"H7200\"* Jebusite|strong=\"H2983\"*, then|strong=\"H6030\"* he|strong=\"H1931\"* sacrificed|strong=\"H2076\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 29, + "text": "For|strong=\"H6213\"* Yahweh|strong=\"H3068\"*’s tabernacle|strong=\"H4908\"*, which|strong=\"H1931\"* Moses|strong=\"H4872\"* made|strong=\"H6213\"* in|strong=\"H3068\"* the|strong=\"H6213\"* wilderness|strong=\"H4057\"*, and|strong=\"H4872\"* the|strong=\"H6213\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, were|strong=\"H4057\"* at|strong=\"H3068\"* that|strong=\"H1931\"* time|strong=\"H6256\"* in|strong=\"H3068\"* the|strong=\"H6213\"* high|strong=\"H1116\"* place|strong=\"H1116\"* at|strong=\"H3068\"* Gibeon|strong=\"H1391\"*." + }, + { + "verseNum": 30, + "text": "But|strong=\"H3588\"* David|strong=\"H1732\"* couldn’t go|strong=\"H3212\"* before|strong=\"H6440\"* it|strong=\"H3588\"* to|strong=\"H3201\"* inquire|strong=\"H1875\"* of|strong=\"H3068\"* God|strong=\"H3068\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H3068\"* afraid|strong=\"H1204\"* because|strong=\"H3588\"* of|strong=\"H3068\"* the|strong=\"H6440\"* sword|strong=\"H2719\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H2088\"* David|strong=\"H1732\"* said, “This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3478\"* this|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3068\"* altar|strong=\"H4196\"* of|strong=\"H1004\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* for|strong=\"H3068\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* gave orders to|strong=\"H3478\"* gather|strong=\"H3664\"* together|strong=\"H3664\"* the|strong=\"H1129\"* foreigners|strong=\"H1616\"* who|strong=\"H1616\"* were|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H1129\"* land of|strong=\"H1004\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* he|strong=\"H1004\"* set|strong=\"H5975\"* masons|strong=\"H2672\"* to|strong=\"H3478\"* cut|strong=\"H1496\"* dressed stones|strong=\"H1496\"* to|strong=\"H3478\"* build|strong=\"H1129\"* God’s house|strong=\"H1004\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* prepared|strong=\"H3559\"* iron|strong=\"H1270\"* in|strong=\"H1732\"* abundance|strong=\"H7230\"* for|strong=\"H3559\"* the|strong=\"H1732\"* nails|strong=\"H4548\"* for|strong=\"H3559\"* the|strong=\"H1732\"* doors|strong=\"H1817\"* of|strong=\"H8179\"* the|strong=\"H1732\"* gates|strong=\"H8179\"* and|strong=\"H1732\"* for|strong=\"H3559\"* the|strong=\"H1732\"* couplings|strong=\"H4226\"*, and|strong=\"H1732\"* bronze|strong=\"H5178\"* in|strong=\"H1732\"* abundance|strong=\"H7230\"* without|strong=\"H7230\"* weight|strong=\"H4948\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"H6086\"* cedar trees|strong=\"H6086\"* without|strong=\"H3588\"* number|strong=\"H4557\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* Sidonians|strong=\"H6722\"* and|strong=\"H6086\"* the|strong=\"H3588\"* people of|strong=\"H4557\"* Tyre|strong=\"H6876\"* brought|strong=\"H1732\"* cedar trees|strong=\"H6086\"* in|strong=\"H6086\"* abundance|strong=\"H7230\"* to|strong=\"H1732\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"* said, “Solomon|strong=\"H8010\"* my|strong=\"H3605\"* son|strong=\"H1121\"* is|strong=\"H3068\"* young|strong=\"H5288\"* and|strong=\"H1121\"* tender|strong=\"H7390\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* house|strong=\"H1004\"* that|strong=\"H3605\"* is|strong=\"H3068\"* to|strong=\"H3068\"* be|strong=\"H3068\"* built|strong=\"H1129\"* for|strong=\"H6440\"* Yahweh|strong=\"H3068\"* must|strong=\"H1121\"* be|strong=\"H3068\"* exceedingly|strong=\"H4605\"* magnificent|strong=\"H1431\"*, of|strong=\"H1121\"* fame|strong=\"H8034\"* and|strong=\"H1121\"* of|strong=\"H1121\"* glory|strong=\"H8597\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* countries. I|strong=\"H5288\"* will|strong=\"H3068\"* therefore|strong=\"H1732\"* make|strong=\"H1431\"* preparation|strong=\"H3559\"* for|strong=\"H6440\"* it|strong=\"H8034\"*.” So|strong=\"H1431\"* David|strong=\"H1732\"* prepared|strong=\"H3559\"* abundantly|strong=\"H7230\"* before|strong=\"H6440\"* his|strong=\"H3605\"* death|strong=\"H4194\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H6680\"* he|strong=\"H3068\"* called|strong=\"H7121\"* for|strong=\"H7121\"* Solomon|strong=\"H8010\"* his|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* commanded|strong=\"H6680\"* him|strong=\"H7121\"* to|strong=\"H3478\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H7121\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "David|strong=\"H1732\"* said to|strong=\"H3068\"* Solomon|strong=\"H8010\"* his|strong=\"H3068\"* son|strong=\"H1121\"*, “As|strong=\"H1961\"* for|strong=\"H8034\"* me|strong=\"H5973\"*, it|strong=\"H8034\"* was|strong=\"H3068\"* in|strong=\"H3068\"* my|strong=\"H3068\"* heart|strong=\"H3824\"* to|strong=\"H3068\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* to|strong=\"H3068\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H6440\"*, saying|strong=\"H1697\"*, ‘You|strong=\"H3588\"* have|strong=\"H1961\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"* abundantly|strong=\"H7230\"* and|strong=\"H3068\"* have|strong=\"H1961\"* made|strong=\"H6213\"* great|strong=\"H1419\"* wars|strong=\"H4421\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* to|strong=\"H3068\"* my|strong=\"H3068\"* name|strong=\"H8034\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* shed|strong=\"H8210\"* much|strong=\"H7227\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* the|strong=\"H6440\"* earth in|strong=\"H5921\"* my|strong=\"H3068\"* sight|strong=\"H6440\"*." + }, + { + "verseNum": 9, + "text": "Behold|strong=\"H2009\"*, a|strong=\"H3068\"* son|strong=\"H1121\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* born|strong=\"H3205\"* to|strong=\"H3478\"* you|strong=\"H3588\"*, who|strong=\"H3605\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* peace|strong=\"H7965\"*. I|strong=\"H3588\"* will|strong=\"H1961\"* give|strong=\"H5414\"* him|strong=\"H5414\"* rest|strong=\"H5117\"* from|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* enemies all|strong=\"H3605\"* around|strong=\"H5439\"*; for|strong=\"H3588\"* his|strong=\"H3605\"* name|strong=\"H8034\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* Solomon|strong=\"H8010\"*, and|strong=\"H1121\"* I|strong=\"H3588\"* will|strong=\"H1961\"* give|strong=\"H5414\"* peace|strong=\"H7965\"* and|strong=\"H1121\"* quietness|strong=\"H8253\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* his|strong=\"H3605\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H1931\"* shall|strong=\"H1121\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H5704\"* my|strong=\"H5921\"* name|strong=\"H8034\"*; and|strong=\"H1121\"* he|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H5921\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* I|strong=\"H5704\"* will|strong=\"H1961\"* be|strong=\"H1961\"* his|strong=\"H5921\"* father|strong=\"H1121\"*; and|strong=\"H1121\"* I|strong=\"H5704\"* will|strong=\"H1961\"* establish|strong=\"H3559\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H1121\"* his|strong=\"H5921\"* kingdom|strong=\"H4438\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* forever|strong=\"H5769\"*.’" + }, + { + "verseNum": 11, + "text": "Now|strong=\"H6258\"*, my|strong=\"H3068\"* son|strong=\"H1121\"*, may|strong=\"H1961\"* Yahweh|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H5921\"* and|strong=\"H1121\"* prosper|strong=\"H6743\"* you|strong=\"H5921\"*, and|strong=\"H1121\"* build|strong=\"H1129\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, as|strong=\"H1961\"* he|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* concerning|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H5414\"* discretion|strong=\"H7922\"* and|strong=\"H3478\"* understanding|strong=\"H7922\"*, and|strong=\"H3478\"* put|strong=\"H5414\"* you|strong=\"H5414\"* in|strong=\"H5921\"* charge|strong=\"H5921\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, so|strong=\"H5414\"* that|strong=\"H3068\"* you|strong=\"H5414\"* may|strong=\"H3068\"* keep|strong=\"H8104\"* the|strong=\"H5921\"* law|strong=\"H8451\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H6213\"* you|strong=\"H6680\"* will|strong=\"H3068\"* prosper|strong=\"H6743\"*, if you|strong=\"H6680\"* observe|strong=\"H8104\"* to|strong=\"H3478\"* do|strong=\"H6213\"* the|strong=\"H5921\"* statutes|strong=\"H2706\"* and|strong=\"H4872\"* the|strong=\"H5921\"* ordinances|strong=\"H4941\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* gave|strong=\"H6680\"* Moses|strong=\"H4872\"* concerning|strong=\"H5921\"* Israel|strong=\"H3478\"*. Be|strong=\"H3068\"* strong|strong=\"H2388\"* and|strong=\"H4872\"* courageous|strong=\"H2388\"*. Don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"* and|strong=\"H4872\"* don’t be|strong=\"H3068\"* dismayed|strong=\"H2865\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"H1961\"*, behold|strong=\"H2009\"*, in|strong=\"H5921\"* my|strong=\"H3068\"* affliction|strong=\"H6040\"* I|strong=\"H3588\"* have|strong=\"H1961\"* prepared|strong=\"H3559\"* for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* one|strong=\"H1961\"* hundred|strong=\"H3967\"* thousand talents|strong=\"H3603\"*+ 22:14 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 100,000 talents is about 3 metric tons* of|strong=\"H1004\"* gold|strong=\"H2091\"*, one|strong=\"H1961\"* million talents|strong=\"H3603\"*+ 22:14 about 30,000 metric tons* of|strong=\"H1004\"* silver|strong=\"H3701\"*, and|strong=\"H3967\"* bronze|strong=\"H5178\"* and|strong=\"H3967\"* iron|strong=\"H1270\"* without|strong=\"H1004\"* weight|strong=\"H4948\"*; for|strong=\"H3588\"* it|strong=\"H5921\"* is|strong=\"H3068\"* in|strong=\"H5921\"* abundance|strong=\"H7230\"*. I|strong=\"H3588\"* have|strong=\"H1961\"* also|strong=\"H3068\"* prepared|strong=\"H3559\"* timber|strong=\"H6086\"* and|strong=\"H3967\"* stone; and|strong=\"H3967\"* you|strong=\"H3588\"* may|strong=\"H1961\"* add|strong=\"H3254\"* to|strong=\"H3068\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "There|strong=\"H3605\"* are|strong=\"H2450\"* also|strong=\"H6213\"* workmen|strong=\"H4399\"* with|strong=\"H5973\"* you|strong=\"H3605\"* in|strong=\"H6213\"* abundance|strong=\"H7230\"*—cutters and|strong=\"H6086\"* workers|strong=\"H4399\"* of|strong=\"H7230\"* stone and|strong=\"H6086\"* timber|strong=\"H6086\"*, and|strong=\"H6086\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H7230\"* men|strong=\"H2450\"* who|strong=\"H3605\"* are|strong=\"H2450\"* skillful|strong=\"H2450\"* in|strong=\"H6213\"* every|strong=\"H3605\"* kind of|strong=\"H7230\"* work|strong=\"H4399\"*;" + }, + { + "verseNum": 16, + "text": "of|strong=\"H3068\"* the|strong=\"H6213\"* gold|strong=\"H2091\"*, the|strong=\"H6213\"* silver|strong=\"H3701\"*, the|strong=\"H6213\"* bronze|strong=\"H5178\"*, and|strong=\"H6965\"* the|strong=\"H6213\"* iron|strong=\"H1270\"*, there|strong=\"H1961\"* is|strong=\"H3068\"* no|strong=\"H6213\"* number|strong=\"H4557\"*. Arise|strong=\"H6965\"* and|strong=\"H6965\"* be|strong=\"H1961\"* doing|strong=\"H6213\"*, and|strong=\"H6965\"* may|strong=\"H1961\"* Yahweh|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H6213\"*.”" + }, + { + "verseNum": 17, + "text": "David|strong=\"H1732\"* also|strong=\"H1732\"* commanded|strong=\"H6680\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* help|strong=\"H5826\"* Solomon|strong=\"H8010\"* his|strong=\"H3605\"* son|strong=\"H1121\"*, saying," + }, + { + "verseNum": 18, + "text": "“Isn’t Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3588\"*? Hasn’t he|strong=\"H3588\"* given|strong=\"H5414\"* you|strong=\"H3588\"* rest|strong=\"H5117\"* on|strong=\"H3427\"* every|strong=\"H5439\"* side|strong=\"H5439\"*? For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H6440\"* land|strong=\"H6440\"* into|strong=\"H3027\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*; and|strong=\"H3068\"* the|strong=\"H6440\"* land|strong=\"H6440\"* is|strong=\"H3068\"* subdued|strong=\"H3533\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* before|strong=\"H6440\"* his|strong=\"H5414\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 19, + "text": "Now|strong=\"H6258\"* set|strong=\"H5414\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* and|strong=\"H6965\"* your|strong=\"H3068\"* soul|strong=\"H5315\"* to|strong=\"H3068\"* follow|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. Arise|strong=\"H6965\"* therefore|strong=\"H6258\"*, and|strong=\"H6965\"* build|strong=\"H1129\"* the|strong=\"H5414\"* sanctuary|strong=\"H6944\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* bring|strong=\"H5414\"* the|strong=\"H5414\"* ark of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* and|strong=\"H6965\"* the|strong=\"H5414\"* holy|strong=\"H6944\"* vessels|strong=\"H3627\"* of|strong=\"H1004\"* God|strong=\"H3068\"* into|strong=\"H5414\"* the|strong=\"H5414\"* house|strong=\"H1004\"* that|strong=\"H5315\"* is|strong=\"H3068\"* to|strong=\"H3068\"* be|strong=\"H3068\"* built|strong=\"H1129\"* for|strong=\"H8034\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*.”" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3117\"* David|strong=\"H1732\"* was|strong=\"H1732\"* old|strong=\"H1121\"* and|strong=\"H1121\"* full|strong=\"H7646\"* of|strong=\"H1121\"* days|strong=\"H3117\"*; and|strong=\"H1121\"* he|strong=\"H3117\"* made|strong=\"H4427\"* Solomon|strong=\"H8010\"* his|strong=\"H1732\"* son|strong=\"H1121\"* king|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3605\"* gathered|strong=\"H3478\"* together all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Israel|strong=\"H3478\"*, with|strong=\"H3548\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3478\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H1961\"* Levites|strong=\"H3881\"* were|strong=\"H1961\"* counted|strong=\"H5608\"* from|strong=\"H1121\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*; and|strong=\"H1121\"* their|strong=\"H1961\"* number|strong=\"H4557\"* by|strong=\"H8141\"* their|strong=\"H1961\"* polls|strong=\"H1538\"*, man|strong=\"H1397\"* by|strong=\"H8141\"* man|strong=\"H1397\"*, was|strong=\"H1961\"* thirty-eight|strong=\"H7970\"* thousand." + }, + { + "verseNum": 4, + "text": "David said, “Of|strong=\"H1004\"* these|strong=\"H1004\"*, twenty-four|strong=\"H6242\"* thousand were|strong=\"H1004\"* to|strong=\"H3068\"* oversee|strong=\"H5329\"* the|strong=\"H5921\"* work|strong=\"H4399\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, six|strong=\"H8337\"* thousand were|strong=\"H1004\"* officers|strong=\"H7860\"* and|strong=\"H3068\"* judges|strong=\"H8199\"*," + }, + { + "verseNum": 5, + "text": "four thousand were|strong=\"H3627\"* doorkeepers|strong=\"H7778\"*, and|strong=\"H3068\"* four thousand praised|strong=\"H1984\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* the|strong=\"H6213\"* instruments|strong=\"H3627\"* which|strong=\"H3068\"* I|strong=\"H3068\"* made|strong=\"H6213\"* for|strong=\"H6213\"* giving|strong=\"H1984\"* praise|strong=\"H1984\"*.”" + }, + { + "verseNum": 6, + "text": "David|strong=\"H1732\"* divided|strong=\"H2505\"* them|strong=\"H1121\"* into|strong=\"H2505\"* divisions|strong=\"H4256\"* according to|strong=\"H1121\"* the|strong=\"H1732\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*: Gershon, Kohath|strong=\"H6955\"*, and|strong=\"H1121\"* Merari|strong=\"H4847\"*." + }, + { + "verseNum": 7, + "text": "Of the|strong=\"H8096\"* Gershonites|strong=\"H1649\"*: Ladan|strong=\"H3936\"* and|strong=\"H8096\"* Shimei|strong=\"H8096\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ladan|strong=\"H3936\"*: Jehiel|strong=\"H3171\"* the|strong=\"H1121\"* chief|strong=\"H7218\"*, Zetham|strong=\"H2241\"*, and|strong=\"H1121\"* Joel|strong=\"H3100\"*, three|strong=\"H7969\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shimei|strong=\"H8096\"*: Shelomoth|strong=\"H8013\"*, Haziel|strong=\"H2381\"*, and|strong=\"H1121\"* Haran|strong=\"H2039\"*, three|strong=\"H7969\"*. These were|strong=\"H1121\"* the|strong=\"H1121\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H1121\"* fathers’ households of|strong=\"H1121\"* Ladan|strong=\"H3936\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shimei|strong=\"H8096\"*: Jahath|strong=\"H3189\"*, Zina|strong=\"H2126\"*, Jeush|strong=\"H3266\"*, and|strong=\"H1121\"* Beriah|strong=\"H1283\"*. These four were|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shimei|strong=\"H8096\"*." + }, + { + "verseNum": 11, + "text": "Jahath|strong=\"H3189\"* was|strong=\"H1961\"* the|strong=\"H1961\"* chief|strong=\"H7218\"*, and|strong=\"H1121\"* Zizah|strong=\"H2125\"* the|strong=\"H1961\"* second|strong=\"H8145\"*; but|strong=\"H3808\"* Jeush|strong=\"H3266\"* and|strong=\"H1121\"* Beriah|strong=\"H1283\"* didn’t have|strong=\"H1961\"* many|strong=\"H7235\"* sons|strong=\"H1121\"*; therefore|strong=\"H1961\"* they|strong=\"H3808\"* became|strong=\"H1961\"* a|strong=\"H3068\"* fathers’ house|strong=\"H1004\"* in|strong=\"H1004\"* one|strong=\"H3808\"* reckoning|strong=\"H6486\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"*: Amram|strong=\"H6019\"*, Izhar|strong=\"H3324\"*, Hebron|strong=\"H2275\"*, and|strong=\"H1121\"* Uzziel|strong=\"H5816\"*, four." + }, + { + "verseNum": 13, + "text": "The|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Amram|strong=\"H6019\"*: Aaron and|strong=\"H1121\"* Moses|strong=\"H4872\"*; and|strong=\"H1121\"* Aaron was|strong=\"H3068\"* separated that|strong=\"H1931\"* he|strong=\"H1931\"* should|strong=\"H3068\"* sanctify|strong=\"H6942\"* the|strong=\"H6440\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*, he|strong=\"H1931\"* and|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"* forever|strong=\"H5769\"*, to|strong=\"H5704\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, to|strong=\"H5704\"* minister|strong=\"H8334\"* to|strong=\"H5704\"* him|strong=\"H6440\"*, and|strong=\"H1121\"* to|strong=\"H5704\"* bless|strong=\"H1288\"* in|strong=\"H3068\"* his|strong=\"H3068\"* name|strong=\"H8034\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"H5921\"* as|strong=\"H1121\"* for|strong=\"H5921\"* Moses|strong=\"H4872\"* the|strong=\"H5921\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God, his|strong=\"H7121\"* sons|strong=\"H1121\"* were|strong=\"H1121\"* named|strong=\"H7121\"* among|strong=\"H5921\"* the|strong=\"H5921\"* tribe|strong=\"H7626\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H4872\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*: Gershom|strong=\"H1647\"* and|strong=\"H1121\"* Eliezer." + }, + { + "verseNum": 16, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershom|strong=\"H1647\"*: Shebuel|strong=\"H7619\"* the|strong=\"H1121\"* chief|strong=\"H7218\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eliezer was|strong=\"H1961\"* Rehabiah|strong=\"H7345\"* the|strong=\"H1961\"* chief|strong=\"H7218\"*; and|strong=\"H1121\"* Eliezer had|strong=\"H1961\"* no|strong=\"H3808\"* other sons|strong=\"H1121\"*, but|strong=\"H3808\"* the|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Rehabiah|strong=\"H7345\"* were|strong=\"H1961\"* very|strong=\"H4605\"* many|strong=\"H7235\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Izhar|strong=\"H3324\"*: Shelomith|strong=\"H8019\"* the|strong=\"H1121\"* chief|strong=\"H7218\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hebron|strong=\"H2275\"*: Jeriah|strong=\"H3404\"* the|strong=\"H1121\"* chief|strong=\"H7218\"*, Amariah the|strong=\"H1121\"* second|strong=\"H8145\"*, Jahaziel|strong=\"H3166\"* the|strong=\"H1121\"* third|strong=\"H7992\"*, and|strong=\"H1121\"* Jekameam|strong=\"H3360\"* the|strong=\"H1121\"* fourth|strong=\"H7243\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Uzziel|strong=\"H5816\"*: Micah|strong=\"H4318\"* the|strong=\"H1121\"* chief|strong=\"H7218\"*, and|strong=\"H1121\"* Isshiah|strong=\"H3449\"* the|strong=\"H1121\"* second|strong=\"H8145\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*: Mahli|strong=\"H4249\"* and|strong=\"H1121\"* Mushi|strong=\"H4187\"*. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Mahli|strong=\"H4249\"*: Eleazar and|strong=\"H1121\"* Kish|strong=\"H7027\"*." + }, + { + "verseNum": 22, + "text": "Eleazar died|strong=\"H4191\"*, and|strong=\"H1121\"* had|strong=\"H1961\"* no|strong=\"H3808\"* sons|strong=\"H1121\"*, but|strong=\"H3588\"* daughters|strong=\"H1323\"* only|strong=\"H3588\"*; and|strong=\"H1121\"* their|strong=\"H5375\"* relatives|strong=\"H1121\"*, the|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kish|strong=\"H7027\"*, took|strong=\"H5375\"* them|strong=\"H5375\"* as|strong=\"H1961\"* wives." + }, + { + "verseNum": 23, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Mushi|strong=\"H4187\"*: Mahli|strong=\"H4249\"*, Eder|strong=\"H5740\"*, and|strong=\"H1121\"* Jeremoth|strong=\"H3406\"*, three|strong=\"H7969\"*." + }, + { + "verseNum": 24, + "text": "These|strong=\"H6213\"* were|strong=\"H1121\"* the|strong=\"H6213\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"* after|strong=\"H1004\"* their|strong=\"H3068\"* fathers’ houses|strong=\"H1004\"*, even|strong=\"H6213\"* the|strong=\"H6213\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H6213\"* fathers’ houses|strong=\"H1004\"* of|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H3068\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* individually|strong=\"H1538\"*, in|strong=\"H8141\"* the|strong=\"H6213\"* number|strong=\"H4557\"* of|strong=\"H1121\"* names|strong=\"H8034\"* by|strong=\"H8141\"* their|strong=\"H3068\"* polls|strong=\"H1538\"*, who|strong=\"H3068\"* did|strong=\"H6213\"* the|strong=\"H6213\"* work|strong=\"H4399\"* for|strong=\"H6213\"* the|strong=\"H6213\"* service|strong=\"H5656\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, from|strong=\"H1121\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"H3588\"* David|strong=\"H1732\"* said, “Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, has|strong=\"H3068\"* given|strong=\"H5117\"* rest|strong=\"H5117\"* to|strong=\"H5704\"* his|strong=\"H3068\"* people|strong=\"H5971\"*; and|strong=\"H3478\"* he|strong=\"H3588\"* dwells|strong=\"H7931\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 26, + "text": "Also|strong=\"H1571\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* will|strong=\"H1571\"* no|strong=\"H3605\"* longer need to|strong=\"H5375\"* carry|strong=\"H5375\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* and|strong=\"H3881\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"* for|strong=\"H3627\"* its|strong=\"H3605\"* service|strong=\"H5656\"*.”" + }, + { + "verseNum": 27, + "text": "For|strong=\"H3588\"* by|strong=\"H8141\"* the|strong=\"H3588\"* last|strong=\"H3588\"* words|strong=\"H1697\"* of|strong=\"H1121\"* David|strong=\"H1732\"* the|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3881\"* were|strong=\"H1121\"* counted|strong=\"H4557\"*, from|strong=\"H1121\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*." + }, + { + "verseNum": 28, + "text": "For|strong=\"H3588\"* their|strong=\"H3605\"* duty|strong=\"H5921\"* was|strong=\"H3068\"* to|strong=\"H3068\"* wait|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron for|strong=\"H3588\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*—in|strong=\"H5921\"* the|strong=\"H3605\"* courts|strong=\"H2691\"*, in|strong=\"H5921\"* the|strong=\"H3605\"* rooms|strong=\"H3957\"*, and|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H3605\"* purifying|strong=\"H2893\"* of|strong=\"H1121\"* all|strong=\"H3605\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*, even|strong=\"H3588\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H1121\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1121\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"*;" + }, + { + "verseNum": 29, + "text": "for|strong=\"H3605\"* the|strong=\"H3605\"* show bread|strong=\"H3899\"* also|strong=\"H3899\"*, and|strong=\"H3899\"* for|strong=\"H3605\"* the|strong=\"H3605\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* for|strong=\"H3605\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, whether of|strong=\"H3605\"* unleavened|strong=\"H4682\"* wafers|strong=\"H7550\"*, or|strong=\"H3899\"* of|strong=\"H3605\"* that|strong=\"H3605\"* which|strong=\"H3899\"* is|strong=\"H3605\"* baked in|strong=\"H3899\"* the|strong=\"H3605\"* pan|strong=\"H4227\"*, or|strong=\"H3899\"* of|strong=\"H3605\"* that|strong=\"H3605\"* which|strong=\"H3899\"* is|strong=\"H3605\"* soaked, and|strong=\"H3899\"* for|strong=\"H3605\"* all|strong=\"H3605\"* measurements|strong=\"H4060\"* of|strong=\"H3605\"* quantity and|strong=\"H3899\"* size|strong=\"H4060\"*;" + }, + { + "verseNum": 30, + "text": "and|strong=\"H3068\"* to|strong=\"H3068\"* stand|strong=\"H5975\"* every|strong=\"H1242\"* morning|strong=\"H1242\"* to|strong=\"H3068\"* thank|strong=\"H3034\"* and|strong=\"H3068\"* praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* likewise|strong=\"H3651\"* in|strong=\"H3068\"* the|strong=\"H3068\"* evening|strong=\"H6153\"*;" + }, + { + "verseNum": 31, + "text": "and|strong=\"H3068\"* to|strong=\"H3068\"* offer|strong=\"H5927\"* all|strong=\"H3605\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H3605\"* Sabbaths|strong=\"H7676\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* new|strong=\"H2320\"* moons|strong=\"H2320\"*, and|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H3605\"* set|strong=\"H5927\"* feasts|strong=\"H4150\"*, in|strong=\"H5921\"* number|strong=\"H4557\"* according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H3605\"* ordinance|strong=\"H4941\"* concerning|strong=\"H5921\"* them|strong=\"H5921\"*, continually|strong=\"H8548\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 32, + "text": "and|strong=\"H1121\"* that|strong=\"H3068\"* they|strong=\"H3068\"* should|strong=\"H3068\"* keep|strong=\"H8104\"* the|strong=\"H8104\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H8104\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, the|strong=\"H8104\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H8104\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*, and|strong=\"H1121\"* the|strong=\"H8104\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H8104\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron their|strong=\"H3068\"* brothers|strong=\"H1121\"* for|strong=\"H3068\"* the|strong=\"H8104\"* service|strong=\"H5656\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "These were|strong=\"H1121\"* the|strong=\"H1121\"* divisions|strong=\"H4256\"* of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron: Nadab|strong=\"H5070\"*, Abihu, Eleazar, and|strong=\"H1121\"* Ithamar." + }, + { + "verseNum": 2, + "text": "But|strong=\"H3808\"* Nadab|strong=\"H5070\"* and|strong=\"H1121\"* Abihu died|strong=\"H4191\"* before|strong=\"H6440\"* their|strong=\"H6440\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* had|strong=\"H1961\"* no|strong=\"H3808\"* children|strong=\"H1121\"*; therefore|strong=\"H1961\"* Eleazar and|strong=\"H1121\"* Ithamar served|strong=\"H3547\"* as|strong=\"H3547\"* priests|strong=\"H3547\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"*, with|strong=\"H1732\"* Zadok|strong=\"H6659\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar and|strong=\"H1121\"* Ahimelech of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ithamar, divided|strong=\"H2505\"* them|strong=\"H1121\"* according|strong=\"H4480\"* to|strong=\"H1121\"* their|strong=\"H1732\"* ordering in|strong=\"H1121\"* their|strong=\"H1732\"* service|strong=\"H5656\"*." + }, + { + "verseNum": 4, + "text": "There|strong=\"H4672\"* were|strong=\"H1121\"* more|strong=\"H4480\"* chief|strong=\"H7218\"* men|strong=\"H1121\"* found|strong=\"H4672\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar than|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ithamar; and|strong=\"H1121\"* they were|strong=\"H1121\"* divided|strong=\"H2505\"* like|strong=\"H1004\"* this|strong=\"H1004\"*: of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar there|strong=\"H4672\"* were|strong=\"H1121\"* sixteen|strong=\"H8337\"*, heads|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ houses|strong=\"H1004\"*; and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ithamar, according|strong=\"H4480\"* to|strong=\"H1121\"* their|strong=\"H4480\"* fathers’ houses|strong=\"H1004\"*, eight|strong=\"H8083\"*." + }, + { + "verseNum": 5, + "text": "Thus|strong=\"H1961\"* they|strong=\"H3588\"* were|strong=\"H1961\"* divided|strong=\"H2505\"* impartially by|strong=\"H1961\"* drawing lots|strong=\"H1486\"*; for|strong=\"H3588\"* there|strong=\"H1961\"* were|strong=\"H1961\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3588\"* sanctuary|strong=\"H6944\"* and|strong=\"H1121\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* God, both of|strong=\"H1121\"* the|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ithamar." + }, + { + "verseNum": 6, + "text": "Shemaiah|strong=\"H8098\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethanel|strong=\"H5417\"* the|strong=\"H6440\"* scribe|strong=\"H5608\"*, who|strong=\"H3548\"* was|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Levites|strong=\"H3881\"*, wrote|strong=\"H3789\"* them|strong=\"H6440\"* in|strong=\"H1004\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H1121\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, the|strong=\"H6440\"* princes|strong=\"H8269\"*, Zadok|strong=\"H6659\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*, Ahimelech the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abiathar, and|strong=\"H1121\"* the|strong=\"H6440\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H6440\"* fathers’ households|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Levites|strong=\"H3881\"*; one|strong=\"H4480\"* fathers’ house|strong=\"H1004\"* being|strong=\"H1004\"* taken|strong=\"H5608\"* for|strong=\"H6440\"* Eleazar, and|strong=\"H1121\"* one|strong=\"H4480\"* taken|strong=\"H5608\"* for|strong=\"H6440\"* Ithamar." + }, + { + "verseNum": 7, + "text": "Now the|strong=\"H3318\"* first|strong=\"H7223\"* lot|strong=\"H1486\"* came|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* Jehoiarib|strong=\"H3080\"*, the|strong=\"H3318\"* second|strong=\"H8145\"* to|strong=\"H3318\"* Jedaiah|strong=\"H3048\"*," + }, + { + "verseNum": 8, + "text": "the|strong=\"H7243\"* third|strong=\"H7992\"* to|strong=\"H7243\"* Harim|strong=\"H2766\"*, the|strong=\"H7243\"* fourth|strong=\"H7243\"* to|strong=\"H7243\"* Seorim|strong=\"H8188\"*," + }, + { + "verseNum": 9, + "text": "the|strong=\"H4441\"* fifth|strong=\"H2549\"* to|strong=\"H2549\"* Malchijah|strong=\"H4441\"*, the|strong=\"H4441\"* sixth|strong=\"H8345\"* to|strong=\"H2549\"* Mijamin|strong=\"H4326\"*," + }, + { + "verseNum": 10, + "text": "the seventh|strong=\"H7637\"* to|strong=\"H8066\"* Hakkoz|strong=\"H6976\"*, the eighth|strong=\"H8066\"* to|strong=\"H8066\"* Abijah," + }, + { + "verseNum": 11, + "text": "the|strong=\"H3442\"* ninth|strong=\"H8671\"* to|strong=\"H6224\"* Jeshua|strong=\"H3442\"*, the|strong=\"H3442\"* tenth|strong=\"H6224\"* to|strong=\"H6224\"* Shecaniah|strong=\"H7935\"*," + }, + { + "verseNum": 12, + "text": "the|strong=\"H8147\"* eleventh|strong=\"H6249\"* to|strong=\"H6249\"* Eliashib, the|strong=\"H8147\"* twelfth|strong=\"H8147\"* to|strong=\"H6249\"* Jakim|strong=\"H3356\"*," + }, + { + "verseNum": 13, + "text": "the|strong=\"H6240\"* thirteenth|strong=\"H7969\"* to|strong=\"H7969\"* Huppah|strong=\"H2647\"*, the|strong=\"H6240\"* fourteenth|strong=\"H6240\"* to|strong=\"H7969\"* Jeshebeab|strong=\"H3428\"*," + }, + { + "verseNum": 14, + "text": "the|strong=\"H6240\"* fifteenth|strong=\"H2568\"* to|strong=\"H2568\"* Bilgah|strong=\"H1083\"*, the|strong=\"H6240\"* sixteenth|strong=\"H8337\"* to|strong=\"H2568\"* Immer," + }, + { + "verseNum": 15, + "text": "the|strong=\"H6240\"* seventeenth|strong=\"H7651\"* to|strong=\"H7651\"* Hezir|strong=\"H2387\"*, the|strong=\"H6240\"* eighteenth|strong=\"H8083\"* to|strong=\"H7651\"* Happizzez|strong=\"H6483\"*," + }, + { + "verseNum": 16, + "text": "the|strong=\"H6611\"* nineteenth|strong=\"H8672\"* to|strong=\"H6242\"* Pethahiah|strong=\"H6611\"*, the|strong=\"H6611\"* twentieth|strong=\"H6242\"* to|strong=\"H6242\"* Jehezkel|strong=\"H3168\"*," + }, + { + "verseNum": 17, + "text": "the|strong=\"H8147\"* twenty-first|strong=\"H6242\"* to|strong=\"H6242\"* Jachin|strong=\"H3199\"*, the|strong=\"H8147\"* twenty-second|strong=\"H6242\"* to|strong=\"H6242\"* Gamul|strong=\"H1577\"*," + }, + { + "verseNum": 18, + "text": "the|strong=\"H1806\"* twenty-third|strong=\"H6242\"* to|strong=\"H6242\"* Delaiah|strong=\"H1806\"*, and|strong=\"H6242\"* the|strong=\"H1806\"* twenty-fourth|strong=\"H6242\"* to|strong=\"H6242\"* Maaziah|strong=\"H4590\"*." + }, + { + "verseNum": 19, + "text": "This|strong=\"H3068\"* was|strong=\"H3068\"* their|strong=\"H3068\"* ordering in|strong=\"H3478\"* their|strong=\"H3068\"* service|strong=\"H5656\"*, to|strong=\"H3478\"* come|strong=\"H3478\"* into|strong=\"H4941\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* according|strong=\"H4941\"* to|strong=\"H3478\"* the|strong=\"H3068\"* ordinance|strong=\"H4941\"* given|strong=\"H6680\"* to|strong=\"H3478\"* them|strong=\"H3027\"* by|strong=\"H3027\"* Aaron their|strong=\"H3068\"* father, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, had|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H3027\"*." + }, + { + "verseNum": 20, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* rest|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*: of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Amram|strong=\"H6019\"*, Shubael|strong=\"H7619\"*; of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shubael|strong=\"H7619\"*, Jehdeiah|strong=\"H3165\"*." + }, + { + "verseNum": 21, + "text": "Of|strong=\"H1121\"* Rehabiah|strong=\"H7345\"*: of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Rehabiah|strong=\"H7345\"*, Isshiah|strong=\"H3449\"* the|strong=\"H1121\"* chief|strong=\"H7218\"*." + }, + { + "verseNum": 22, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* Izharites|strong=\"H3325\"*, Shelomoth|strong=\"H8013\"*; of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shelomoth|strong=\"H8013\"*, Jahath|strong=\"H3189\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hebron: Jeriah|strong=\"H3404\"*, Amariah the|strong=\"H1121\"* second|strong=\"H8145\"*, Jahaziel|strong=\"H3166\"* the|strong=\"H1121\"* third|strong=\"H7992\"*, and|strong=\"H1121\"* Jekameam|strong=\"H3360\"* the|strong=\"H1121\"* fourth|strong=\"H7243\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Uzziel|strong=\"H5816\"*: Micah|strong=\"H4318\"*; of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Micah|strong=\"H4318\"*, Shamir|strong=\"H8053\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H1121\"* brother of|strong=\"H1121\"* Micah|strong=\"H4318\"*: Isshiah|strong=\"H3449\"*; of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Isshiah|strong=\"H3449\"*, Zechariah|strong=\"H2148\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*: Mahli|strong=\"H4249\"* and|strong=\"H1121\"* Mushi|strong=\"H4187\"*. The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jaaziah|strong=\"H3269\"*: Beno|strong=\"H1121\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"* by|strong=\"H4847\"* Jaaziah|strong=\"H3269\"*: Beno|strong=\"H1121\"*, Shoham|strong=\"H7719\"*, Zaccur|strong=\"H2139\"*, and|strong=\"H1121\"* Ibri|strong=\"H5681\"*." + }, + { + "verseNum": 28, + "text": "Of|strong=\"H1121\"* Mahli|strong=\"H4249\"*: Eleazar, who|strong=\"H1121\"* had|strong=\"H1961\"* no|strong=\"H3808\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 29, + "text": "Of|strong=\"H1121\"* Kish|strong=\"H7027\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kish|strong=\"H7027\"*: Jerahmeel|strong=\"H3396\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Mushi|strong=\"H4187\"*: Mahli|strong=\"H4249\"*, Eder|strong=\"H5740\"*, and|strong=\"H1121\"* Jerimoth|strong=\"H3406\"*. These|strong=\"H3881\"* were|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Levites|strong=\"H3881\"* after|strong=\"H1004\"* their|strong=\"H3881\"* fathers’ houses|strong=\"H1004\"*." + }, + { + "verseNum": 31, + "text": "These|strong=\"H1992\"* likewise|strong=\"H1571\"* cast|strong=\"H5307\"* lots|strong=\"H1486\"* even|strong=\"H1571\"* as|strong=\"H1571\"* their|strong=\"H6440\"* brothers|strong=\"H1121\"* the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron in|strong=\"H4428\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H1121\"* David|strong=\"H1732\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, Zadok|strong=\"H6659\"*, Ahimelech, and|strong=\"H1121\"* the|strong=\"H6440\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H6440\"* fathers’ households|strong=\"H3881\"* of|strong=\"H1121\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Levites|strong=\"H3881\"*, the|strong=\"H6440\"* fathers’ households|strong=\"H3881\"* of|strong=\"H1121\"* the|strong=\"H6440\"* chief|strong=\"H7218\"* even|strong=\"H1571\"* as|strong=\"H1571\"* those|strong=\"H1992\"* of|strong=\"H1121\"* his|strong=\"H1732\"* younger|strong=\"H6996\"* brother." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Moreover|strong=\"H1961\"*, David|strong=\"H1732\"* and|strong=\"H1121\"* the|strong=\"H1961\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H1961\"* army|strong=\"H6635\"* set apart for|strong=\"H1121\"* the|strong=\"H1961\"* service|strong=\"H5656\"* certain of|strong=\"H1121\"* the|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asaph, of|strong=\"H1121\"* Heman|strong=\"H1968\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* Jeduthun|strong=\"H3038\"*, who|strong=\"H1121\"* were|strong=\"H1961\"* to|strong=\"H1961\"* prophesy|strong=\"H5030\"* with|strong=\"H1732\"* harps|strong=\"H3658\"*, with|strong=\"H1732\"* stringed instruments, and|strong=\"H1121\"* with|strong=\"H1732\"* cymbals|strong=\"H4700\"*. The|strong=\"H1961\"* number|strong=\"H4557\"* of|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* did|strong=\"H1732\"* the|strong=\"H1961\"* work|strong=\"H4399\"* according to|strong=\"H1961\"* their|strong=\"H1961\"* service|strong=\"H5656\"* was|strong=\"H1961\"*:" + }, + { + "verseNum": 2, + "text": "of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asaph: Zaccur|strong=\"H2139\"*, Joseph|strong=\"H3130\"*, Nethaniah|strong=\"H5418\"*, and|strong=\"H1121\"* Asharelah. The|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asaph were|strong=\"H1121\"* under|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Asaph, who|strong=\"H1121\"* prophesied|strong=\"H5012\"* at|strong=\"H5921\"* the|strong=\"H5921\"* order|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5921\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 3, + "text": "Of|strong=\"H1121\"* Jeduthun|strong=\"H3038\"*, the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jeduthun|strong=\"H3038\"*: Gedaliah|strong=\"H1436\"*, Zeri|strong=\"H6874\"*, Jeshaiah|strong=\"H3470\"*, Shimei, Hashabiah|strong=\"H2811\"*, and|strong=\"H1121\"* Mattithiah|strong=\"H4993\"*, six|strong=\"H8337\"*, under|strong=\"H5921\"* the|strong=\"H5921\"* hands|strong=\"H3027\"* of|strong=\"H1121\"* their|strong=\"H3068\"* father|strong=\"H1121\"* Jeduthun|strong=\"H3038\"*, who|strong=\"H3068\"* prophesied|strong=\"H5012\"* in|strong=\"H5921\"* giving|strong=\"H3034\"* thanks|strong=\"H3034\"* and|strong=\"H1121\"* praising|strong=\"H1984\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* the|strong=\"H5921\"* harp|strong=\"H3658\"*." + }, + { + "verseNum": 4, + "text": "Of|strong=\"H1121\"* Heman|strong=\"H1968\"*, the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Heman|strong=\"H1968\"*: Bukkiah|strong=\"H1232\"*, Mattaniah|strong=\"H4983\"*, Uzziel|strong=\"H5816\"*, Shebuel|strong=\"H7619\"*, Jerimoth|strong=\"H3406\"*, Hananiah|strong=\"H2608\"*, Hanani|strong=\"H2607\"*, Eliathah, Giddalti|strong=\"H1437\"*, Romamti-Ezer|strong=\"H7320\"*, Joshbekashah|strong=\"H3436\"*, Mallothi|strong=\"H4413\"*, Hothir|strong=\"H1956\"*, and|strong=\"H1121\"* Mahazioth|strong=\"H4238\"*." + }, + { + "verseNum": 5, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Heman|strong=\"H1968\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s seer|strong=\"H2374\"* in|strong=\"H4428\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1121\"* God|strong=\"H5414\"*, to|strong=\"H5414\"* lift|strong=\"H7311\"* up|strong=\"H7311\"* the|strong=\"H3605\"* horn|strong=\"H7161\"*. God|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* Heman|strong=\"H1968\"* fourteen|strong=\"H6240\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* three|strong=\"H7969\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 6, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H3027\"* under|strong=\"H5921\"* the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* their|strong=\"H3605\"* father for|strong=\"H5921\"* song|strong=\"H7892\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, with|strong=\"H1004\"* cymbals|strong=\"H4700\"*, stringed instruments|strong=\"H7892\"*, and|strong=\"H3068\"* harps|strong=\"H3658\"*, for|strong=\"H5921\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H4428\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"*: Asaph, Jeduthun|strong=\"H3038\"*, and|strong=\"H3068\"* Heman|strong=\"H1968\"* being|strong=\"H1004\"* under|strong=\"H5921\"* the|strong=\"H3605\"* order|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H3068\"* them|strong=\"H1961\"*, with|strong=\"H5973\"* their|strong=\"H3605\"* brothers who|strong=\"H3605\"* were|strong=\"H1961\"* instructed|strong=\"H3925\"* in|strong=\"H3068\"* singing|strong=\"H7892\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, even|strong=\"H3068\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1961\"* skillful|strong=\"H3925\"*, was|strong=\"H3068\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* eighty-eight|strong=\"H8084\"*." + }, + { + "verseNum": 8, + "text": "They cast|strong=\"H5307\"* lots|strong=\"H1486\"* for|strong=\"H5973\"* their|strong=\"H5307\"* offices|strong=\"H4931\"*, all|strong=\"H1419\"* alike|strong=\"H5973\"*, the|strong=\"H5973\"* small|strong=\"H6996\"* as|strong=\"H5973\"* well|strong=\"H5980\"* as|strong=\"H5973\"* the|strong=\"H5973\"* great|strong=\"H1419\"*, the|strong=\"H5973\"* teacher as|strong=\"H5973\"* well|strong=\"H5980\"* as|strong=\"H5973\"* the|strong=\"H5973\"* student." + }, + { + "verseNum": 9, + "text": "Now the|strong=\"H3318\"* first|strong=\"H7223\"* lot|strong=\"H1486\"* came|strong=\"H3318\"* out|strong=\"H3318\"* for|strong=\"H1121\"* Asaph to|strong=\"H3318\"* Joseph|strong=\"H3130\"*; the|strong=\"H3318\"* second|strong=\"H8145\"* to|strong=\"H3318\"* Gedaliah|strong=\"H1436\"*, he|strong=\"H1931\"* and|strong=\"H1121\"* his|strong=\"H3318\"* brothers|strong=\"H1121\"* and|strong=\"H1121\"* sons|strong=\"H1121\"* were|strong=\"H1121\"* twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 10, + "text": "the|strong=\"H1121\"* third|strong=\"H7992\"* to|strong=\"H1121\"* Zaccur|strong=\"H2139\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 11, + "text": "the|strong=\"H1121\"* fourth|strong=\"H7243\"* to|strong=\"H1121\"* Izri|strong=\"H3339\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 12, + "text": "the|strong=\"H1121\"* fifth|strong=\"H2549\"* to|strong=\"H1121\"* Nethaniah|strong=\"H5418\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 13, + "text": "the|strong=\"H1121\"* sixth|strong=\"H8345\"* to|strong=\"H1121\"* Bukkiah|strong=\"H1232\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 14, + "text": "the|strong=\"H1121\"* seventh|strong=\"H7637\"* to|strong=\"H1121\"* Jesharelah|strong=\"H3480\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 15, + "text": "the|strong=\"H3470\"* eighth|strong=\"H8066\"* to|strong=\"H1121\"* Jeshaiah|strong=\"H3470\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 16, + "text": "the|strong=\"H1121\"* ninth|strong=\"H8671\"* to|strong=\"H1121\"* Mattaniah|strong=\"H4983\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 17, + "text": "the|strong=\"H1121\"* tenth|strong=\"H6224\"* to|strong=\"H1121\"* Shimei|strong=\"H8096\"*, his|strong=\"H8096\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8096\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 18, + "text": "the|strong=\"H1121\"* eleventh|strong=\"H6249\"* to|strong=\"H1121\"* Azarel|strong=\"H5832\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 19, + "text": "the|strong=\"H1121\"* twelfth|strong=\"H8147\"* to|strong=\"H1121\"* Hashabiah|strong=\"H2811\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 20, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* thirteenth|strong=\"H7969\"*, Shubael|strong=\"H7619\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 21, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* fourteenth|strong=\"H6240\"*, Mattithiah|strong=\"H4993\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 22, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* fifteenth|strong=\"H2568\"* to|strong=\"H1121\"* Jeremoth|strong=\"H3406\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 23, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* sixteenth|strong=\"H8337\"* to|strong=\"H1121\"* Hananiah|strong=\"H2608\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 24, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* seventeenth|strong=\"H7651\"* to|strong=\"H1121\"* Joshbekashah|strong=\"H3436\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 25, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* eighteenth|strong=\"H8083\"* to|strong=\"H1121\"* Hanani|strong=\"H2607\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 26, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* nineteenth|strong=\"H8672\"* to|strong=\"H1121\"* Mallothi|strong=\"H4413\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 27, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* twentieth|strong=\"H6242\"* to|strong=\"H1121\"* Eliathah, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 28, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* twenty-first|strong=\"H6242\"* to|strong=\"H1121\"* Hothir|strong=\"H1956\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 29, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* twenty-second|strong=\"H6242\"* to|strong=\"H1121\"* Giddalti|strong=\"H1437\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 30, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* twenty-third|strong=\"H6242\"* to|strong=\"H1121\"* Mahazioth|strong=\"H4238\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 31, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* twenty-fourth|strong=\"H6242\"* to|strong=\"H1121\"* Romamti-Ezer|strong=\"H7320\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"H1121\"* the|strong=\"H4480\"* divisions|strong=\"H4256\"* of|strong=\"H1121\"* the|strong=\"H4480\"* doorkeepers|strong=\"H7778\"*: of|strong=\"H1121\"* the|strong=\"H4480\"* Korahites|strong=\"H7145\"*, Meshelemiah|strong=\"H4920\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kore|strong=\"H6981\"*, of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asaph." + }, + { + "verseNum": 2, + "text": "Meshelemiah|strong=\"H4920\"* had|strong=\"H1121\"* sons|strong=\"H1121\"*: Zechariah|strong=\"H2148\"* the|strong=\"H1121\"* firstborn|strong=\"H1060\"*, Jediael|strong=\"H3043\"* the|strong=\"H1121\"* second|strong=\"H8145\"*, Zebadiah|strong=\"H2069\"* the|strong=\"H1121\"* third|strong=\"H7992\"*, Jathniel|strong=\"H3496\"* the|strong=\"H1121\"* fourth|strong=\"H7243\"*," + }, + { + "verseNum": 3, + "text": "Elam|strong=\"H5867\"* the|strong=\"H3076\"* fifth|strong=\"H2549\"*, Jehohanan|strong=\"H3076\"* the|strong=\"H3076\"* sixth|strong=\"H8345\"*, and|strong=\"H5867\"* Eliehoenai the|strong=\"H3076\"* seventh|strong=\"H7637\"*." + }, + { + "verseNum": 4, + "text": "Obed-Edom|strong=\"H5654\"* had|strong=\"H1121\"* sons|strong=\"H1121\"*: Shemaiah|strong=\"H8098\"* the|strong=\"H8098\"* firstborn|strong=\"H1060\"*, Jehozabad|strong=\"H3075\"* the|strong=\"H8098\"* second|strong=\"H8145\"*, Joah|strong=\"H3098\"* the|strong=\"H8098\"* third|strong=\"H7992\"*, Sacar|strong=\"H7940\"* the|strong=\"H8098\"* fourth|strong=\"H7243\"*, Nethanel|strong=\"H5417\"* the|strong=\"H8098\"* fifth|strong=\"H2549\"*," + }, + { + "verseNum": 5, + "text": "Ammiel|strong=\"H5988\"* the|strong=\"H3588\"* sixth|strong=\"H8345\"*, Issachar|strong=\"H3485\"* the|strong=\"H3588\"* seventh|strong=\"H7637\"*, and|strong=\"H3485\"* Peullethai|strong=\"H6469\"* the|strong=\"H3588\"* eighth|strong=\"H8066\"*; for|strong=\"H3588\"* God blessed|strong=\"H1288\"* him|strong=\"H1288\"*." + }, + { + "verseNum": 6, + "text": "Sons|strong=\"H1121\"* were|strong=\"H1121\"* also|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H3205\"* Shemaiah|strong=\"H8098\"* his|strong=\"H3588\"* son|strong=\"H1121\"*, who|strong=\"H1121\"* ruled|strong=\"H4474\"* over the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1121\"* their|strong=\"H1992\"* father|strong=\"H3205\"*; for|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H1121\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H8098\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shemaiah|strong=\"H8098\"*: Othni|strong=\"H6273\"*, Rephael|strong=\"H7501\"*, Obed|strong=\"H5744\"*, and|strong=\"H1121\"* Elzabad, whose|strong=\"H1121\"* relatives|strong=\"H1121\"* were|strong=\"H1121\"* valiant|strong=\"H2428\"* men|strong=\"H1121\"*, Elihu, and|strong=\"H1121\"* Semachiah|strong=\"H5565\"*." + }, + { + "verseNum": 8, + "text": "All|strong=\"H3605\"* these|strong=\"H1992\"* were|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Obed-Edom|strong=\"H5654\"* with|strong=\"H3605\"* their|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H3605\"* brothers|strong=\"H1121\"*, able|strong=\"H2428\"* men|strong=\"H1121\"* in|strong=\"H1121\"* strength|strong=\"H3581\"* for|strong=\"H1121\"* the|strong=\"H3605\"* service|strong=\"H5656\"*: sixty-two|strong=\"H8346\"* of|strong=\"H1121\"* Obed-Edom|strong=\"H5654\"*." + }, + { + "verseNum": 9, + "text": "Meshelemiah|strong=\"H4920\"* had|strong=\"H1121\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* brothers|strong=\"H1121\"*, eighteen|strong=\"H8083\"* valiant|strong=\"H2428\"* men|strong=\"H1121\"*." + }, + { + "verseNum": 10, + "text": "Also|strong=\"H1121\"* Hosah|strong=\"H2621\"*, of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, had|strong=\"H1961\"* sons|strong=\"H1121\"*: Shimri|strong=\"H8113\"* the|strong=\"H3588\"* chief|strong=\"H7218\"* (for|strong=\"H3588\"* though|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H1961\"* not|strong=\"H3808\"* the|strong=\"H3588\"* firstborn|strong=\"H1060\"*, yet|strong=\"H3588\"* his|strong=\"H7760\"* father|strong=\"H1121\"* made|strong=\"H7760\"* him|strong=\"H7760\"* chief|strong=\"H7218\"*)," + }, + { + "verseNum": 11, + "text": "Hilkiah|strong=\"H2518\"* the|strong=\"H3605\"* second|strong=\"H8145\"*, Tebaliah|strong=\"H2882\"* the|strong=\"H3605\"* third|strong=\"H7992\"*, and|strong=\"H1121\"* Zechariah|strong=\"H2148\"* the|strong=\"H3605\"* fourth|strong=\"H7243\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* brothers|strong=\"H1121\"* of|strong=\"H1121\"* Hosah|strong=\"H2621\"* were|strong=\"H1121\"* thirteen|strong=\"H7969\"*." + }, + { + "verseNum": 12, + "text": "Of|strong=\"H1004\"* these|strong=\"H1004\"* were|strong=\"H7218\"* the|strong=\"H3068\"* divisions|strong=\"H4256\"* of|strong=\"H1004\"* the|strong=\"H3068\"* doorkeepers|strong=\"H7778\"*, even|strong=\"H3068\"* of|strong=\"H1004\"* the|strong=\"H3068\"* chief|strong=\"H7218\"* men|strong=\"H1397\"*, having offices|strong=\"H4931\"* like|strong=\"H1004\"* their|strong=\"H3068\"* brothers, to|strong=\"H3068\"* minister|strong=\"H8334\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"H8179\"* cast|strong=\"H5307\"* lots|strong=\"H1486\"*, the|strong=\"H1004\"* small|strong=\"H6996\"* as|strong=\"H1004\"* well as|strong=\"H1004\"* the|strong=\"H1004\"* great|strong=\"H1419\"*, according to|strong=\"H1004\"* their|strong=\"H5307\"* fathers’ houses|strong=\"H1004\"*, for|strong=\"H1004\"* every|strong=\"H8179\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3318\"* lot|strong=\"H1486\"* eastward|strong=\"H4217\"* fell|strong=\"H5307\"* to|strong=\"H3318\"* Shelemiah|strong=\"H8018\"*. Then|strong=\"H3318\"* for|strong=\"H1121\"* Zechariah|strong=\"H2148\"* his|strong=\"H3318\"* son|strong=\"H1121\"*, a|strong=\"H3068\"* wise|strong=\"H7922\"* counselor|strong=\"H3289\"*, they|strong=\"H3289\"* cast|strong=\"H5307\"* lots|strong=\"H1486\"*; and|strong=\"H1121\"* his|strong=\"H3318\"* lot|strong=\"H1486\"* came|strong=\"H3318\"* out|strong=\"H3318\"* northward|strong=\"H6828\"*." + }, + { + "verseNum": 15, + "text": "To|strong=\"H1121\"* Obed-Edom|strong=\"H5654\"* southward|strong=\"H5045\"*; and|strong=\"H1121\"* to|strong=\"H1121\"* his|strong=\"H1121\"* sons|strong=\"H1121\"* the|strong=\"H1121\"* storehouse." + }, + { + "verseNum": 16, + "text": "To|strong=\"H5927\"* Shuppim|strong=\"H8206\"* and|strong=\"H5927\"* Hosah|strong=\"H2621\"* westward|strong=\"H4628\"*, by|strong=\"H5973\"* the|strong=\"H5927\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Shallecheth|strong=\"H7996\"*, at|strong=\"H5927\"* the|strong=\"H5927\"* causeway|strong=\"H4546\"* that|strong=\"H8179\"* goes|strong=\"H5927\"* up|strong=\"H5927\"*, watchman opposite watchman." + }, + { + "verseNum": 17, + "text": "Eastward|strong=\"H4217\"* were|strong=\"H3881\"* six|strong=\"H8337\"* Levites|strong=\"H3881\"*, northward|strong=\"H6828\"* four a|strong=\"H3068\"* day|strong=\"H3117\"*, southward|strong=\"H5045\"* four a|strong=\"H3068\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* for|strong=\"H3117\"* the|strong=\"H3117\"* storehouse two|strong=\"H8147\"* and|strong=\"H3117\"* two|strong=\"H8147\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H8147\"* Parbar|strong=\"H6503\"* westward|strong=\"H4628\"*, four at|strong=\"H8147\"* the|strong=\"H8147\"* causeway|strong=\"H4546\"*, and|strong=\"H8147\"* two|strong=\"H8147\"* at|strong=\"H8147\"* Parbar|strong=\"H6503\"*." + }, + { + "verseNum": 19, + "text": "These were|strong=\"H1121\"* the|strong=\"H1121\"* divisions|strong=\"H4256\"* of|strong=\"H1121\"* the|strong=\"H1121\"* doorkeepers|strong=\"H7778\"*; of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Korahites|strong=\"H7145\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*." + }, + { + "verseNum": 20, + "text": "Of|strong=\"H1004\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*, Ahijah was|strong=\"H1004\"* over|strong=\"H5921\"* the|strong=\"H5921\"* treasures of|strong=\"H1004\"* God’s house|strong=\"H1004\"* and|strong=\"H1004\"* over|strong=\"H5921\"* the|strong=\"H5921\"* treasures of|strong=\"H1004\"* the|strong=\"H5921\"* dedicated|strong=\"H6944\"* things|strong=\"H6944\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ladan|strong=\"H3936\"*, the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Gershonites|strong=\"H1649\"* belonging to|strong=\"H1121\"* Ladan|strong=\"H3936\"*, the|strong=\"H1121\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H1121\"* fathers’ households belonging to|strong=\"H1121\"* Ladan|strong=\"H3936\"* the|strong=\"H1121\"* Gershonite|strong=\"H1649\"*: Jehieli|strong=\"H3172\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jehieli|strong=\"H3172\"*: Zetham|strong=\"H2241\"*, and|strong=\"H1121\"* Joel|strong=\"H3100\"* his|strong=\"H3068\"* brother, over|strong=\"H5921\"* the|strong=\"H5921\"* treasures of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 23, + "text": "Of the Amramites|strong=\"H6020\"*, of the Izharites|strong=\"H3325\"*, of the Hebronites|strong=\"H2276\"*, of the Uzzielites|strong=\"H5817\"*:" + }, + { + "verseNum": 24, + "text": "Shebuel|strong=\"H7619\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gershom|strong=\"H1647\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*, was|strong=\"H4872\"* ruler|strong=\"H5057\"* over|strong=\"H5921\"* the|strong=\"H5921\"* treasuries." + }, + { + "verseNum": 25, + "text": "His|strong=\"H3141\"* brothers|strong=\"H1121\"*: of|strong=\"H1121\"* Eliezer, Rehabiah|strong=\"H7345\"* his|strong=\"H3141\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Jeshaiah|strong=\"H3470\"* his|strong=\"H3141\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Joram|strong=\"H3141\"* his|strong=\"H3141\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Zichri|strong=\"H2147\"* his|strong=\"H3141\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Shelomoth|strong=\"H8013\"* his|strong=\"H3141\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 26, + "text": "This|strong=\"H1931\"* Shelomoth|strong=\"H8013\"* and|strong=\"H3967\"* his|strong=\"H3605\"* brothers were|strong=\"H1732\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* treasuries of|strong=\"H4428\"* the|strong=\"H3605\"* dedicated|strong=\"H6942\"* things|strong=\"H6944\"*, which|strong=\"H1931\"* David|strong=\"H1732\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H3967\"* the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H4428\"* the|strong=\"H3605\"* fathers’ households, the|strong=\"H3605\"* captains|strong=\"H8269\"* over|strong=\"H5921\"* thousands and|strong=\"H3967\"* hundreds|strong=\"H3967\"*, and|strong=\"H3967\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* army|strong=\"H6635\"*, had|strong=\"H1732\"* dedicated|strong=\"H6942\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"H3068\"* dedicated|strong=\"H6942\"* some|strong=\"H4480\"* of|strong=\"H1004\"* the|strong=\"H3068\"* plunder|strong=\"H7998\"* won in|strong=\"H3068\"* battles|strong=\"H4421\"* to|strong=\"H3068\"* repair|strong=\"H2388\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 28, + "text": "All|strong=\"H3605\"* that|strong=\"H7200\"* Samuel|strong=\"H8050\"* the|strong=\"H3605\"* seer|strong=\"H7200\"*, Saul|strong=\"H7586\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kish|strong=\"H7027\"*, Abner the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"*, and|strong=\"H1121\"* Joab|strong=\"H3097\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* had|strong=\"H7586\"* dedicated|strong=\"H6942\"*, whoever|strong=\"H3605\"* had|strong=\"H7586\"* dedicated|strong=\"H6942\"* anything|strong=\"H3605\"*, it|strong=\"H5921\"* was|strong=\"H7586\"* under|strong=\"H5921\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Shelomoth|strong=\"H8019\"* and|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H3605\"* brothers|strong=\"H1121\"*." + }, + { + "verseNum": 29, + "text": "Of|strong=\"H1121\"* the|strong=\"H5921\"* Izharites|strong=\"H3325\"*, Chenaniah|strong=\"H3663\"* and|strong=\"H1121\"* his|strong=\"H5921\"* sons|strong=\"H1121\"* were|strong=\"H3478\"* appointed|strong=\"H1121\"* to|strong=\"H3478\"* the|strong=\"H5921\"* outward|strong=\"H2435\"* business|strong=\"H4399\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*, for|strong=\"H5921\"* officers|strong=\"H7860\"* and|strong=\"H1121\"* judges|strong=\"H8199\"*." + }, + { + "verseNum": 30, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* Hebronites|strong=\"H2276\"*, Hashabiah|strong=\"H2811\"* and|strong=\"H3967\"* his|strong=\"H3605\"* brothers|strong=\"H1121\"*, one|strong=\"H3605\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* men|strong=\"H1121\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*, had|strong=\"H3068\"* the|strong=\"H3605\"* oversight|strong=\"H6486\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* westward|strong=\"H4628\"*, for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* business|strong=\"H4399\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* and|strong=\"H3967\"* for|strong=\"H5921\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 31, + "text": "Of|strong=\"H8141\"* the|strong=\"H1875\"* Hebronites|strong=\"H2276\"*, Jerijah|strong=\"H3404\"* was|strong=\"H1732\"* the|strong=\"H1875\"* chief|strong=\"H7218\"* of|strong=\"H8141\"* the|strong=\"H1875\"* Hebronites|strong=\"H2276\"*, according to|strong=\"H1732\"* their|strong=\"H1875\"* generations|strong=\"H8435\"* by|strong=\"H8141\"* fathers’ households. They|strong=\"H8141\"* were|strong=\"H1732\"* sought|strong=\"H1875\"* for|strong=\"H2428\"* in|strong=\"H8141\"* the|strong=\"H1875\"* fortieth year|strong=\"H8141\"* of|strong=\"H8141\"* the|strong=\"H1875\"* reign|strong=\"H4438\"* of|strong=\"H8141\"* David|strong=\"H1732\"*, and|strong=\"H1732\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H8141\"* valor|strong=\"H2428\"* were|strong=\"H1732\"* found|strong=\"H4672\"* among|strong=\"H4672\"* them|strong=\"H4672\"* at|strong=\"H1732\"* Jazer|strong=\"H3270\"* of|strong=\"H8141\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 32, + "text": "His|strong=\"H3605\"* relatives|strong=\"H1121\"*, men|strong=\"H1121\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*, were|strong=\"H1121\"* two|strong=\"H2677\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"*, heads|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ households, whom King|strong=\"H4428\"* David|strong=\"H1732\"* made|strong=\"H6485\"* overseers|strong=\"H6485\"* over|strong=\"H5921\"* the|strong=\"H3605\"* Reubenites|strong=\"H7206\"*, the|strong=\"H3605\"* Gadites|strong=\"H1425\"*, and|strong=\"H3967\"* the|strong=\"H3605\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Manassites|strong=\"H4520\"*, for|strong=\"H5921\"* every|strong=\"H3605\"* matter|strong=\"H1697\"* pertaining|strong=\"H5921\"* to|strong=\"H5921\"* God and|strong=\"H3967\"* for|strong=\"H5921\"* the|strong=\"H3605\"* affairs|strong=\"H1697\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* after|strong=\"H3318\"* their|strong=\"H3605\"* number|strong=\"H4557\"*, the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ households and|strong=\"H3967\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* thousands and|strong=\"H3967\"* of|strong=\"H1121\"* hundreds|strong=\"H3967\"*, and|strong=\"H3967\"* their|strong=\"H3605\"* officers|strong=\"H7860\"* who|strong=\"H3605\"* served|strong=\"H8334\"* the|strong=\"H3605\"* king|strong=\"H4428\"* in|strong=\"H8141\"* any|strong=\"H3605\"* matter|strong=\"H1697\"* of|strong=\"H1121\"* the|strong=\"H3605\"* divisions|strong=\"H4256\"* which|strong=\"H1697\"* came|strong=\"H3318\"* in|strong=\"H8141\"* and|strong=\"H3967\"* went|strong=\"H3318\"* out|strong=\"H3318\"* month|strong=\"H2320\"* by|strong=\"H8141\"* month|strong=\"H2320\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* months|strong=\"H2320\"* of|strong=\"H1121\"* the|strong=\"H3605\"* year|strong=\"H8141\"*—of|strong=\"H1121\"* every|strong=\"H3605\"* division|strong=\"H4256\"* were|strong=\"H3478\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 2, + "text": "Over|strong=\"H5921\"* the|strong=\"H5921\"* first|strong=\"H7223\"* division|strong=\"H4256\"* for|strong=\"H5921\"* the|strong=\"H5921\"* first|strong=\"H7223\"* month|strong=\"H2320\"* was|strong=\"H1121\"* Jashobeam|strong=\"H3434\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zabdiel|strong=\"H2068\"*. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H1121\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3605\"* was|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Perez|strong=\"H6557\"*, the|strong=\"H3605\"* chief|strong=\"H7218\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* army|strong=\"H6635\"* for|strong=\"H1121\"* the|strong=\"H3605\"* first|strong=\"H7223\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 4, + "text": "Over|strong=\"H5921\"* the|strong=\"H5921\"* division|strong=\"H4256\"* of|strong=\"H5921\"* the|strong=\"H5921\"* second|strong=\"H8145\"* month|strong=\"H2320\"* was|strong=\"H2320\"* Dodai|strong=\"H1737\"* the|strong=\"H5921\"* Ahohite and|strong=\"H6242\"* his|strong=\"H5921\"* division|strong=\"H4256\"*, and|strong=\"H6242\"* Mikloth|strong=\"H4732\"* the|strong=\"H5921\"* ruler|strong=\"H5057\"*; and|strong=\"H6242\"* in|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H5921\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5921\"* third|strong=\"H7992\"* captain|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H5921\"* army|strong=\"H6635\"* for|strong=\"H5921\"* the|strong=\"H5921\"* third|strong=\"H7992\"* month|strong=\"H2320\"* was|strong=\"H1121\"* Benaiah|strong=\"H1141\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* the|strong=\"H5921\"* chief|strong=\"H7218\"* priest|strong=\"H3548\"*. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H1121\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 6, + "text": "This|strong=\"H1931\"* is|strong=\"H1931\"* that|strong=\"H1931\"* Benaiah|strong=\"H1141\"* who|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H5921\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* of|strong=\"H1121\"* the|strong=\"H5921\"* thirty|strong=\"H7970\"* and|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* thirty|strong=\"H7970\"*. Of|strong=\"H1121\"* his|strong=\"H5921\"* division|strong=\"H4256\"* was|strong=\"H1931\"* Ammizabad|strong=\"H5990\"* his|strong=\"H5921\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5921\"* fourth|strong=\"H7243\"* captain for|strong=\"H5921\"* the|strong=\"H5921\"* fourth|strong=\"H7243\"* month|strong=\"H2320\"* was|strong=\"H1121\"* Asahel|strong=\"H6214\"* the|strong=\"H5921\"* brother of|strong=\"H1121\"* Joab|strong=\"H3097\"*, and|strong=\"H1121\"* Zebadiah|strong=\"H2069\"* his|strong=\"H5921\"* son|strong=\"H1121\"* after|strong=\"H5921\"* him|strong=\"H5921\"*. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H1121\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* fifth|strong=\"H2549\"* captain|strong=\"H8269\"* for|strong=\"H5921\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* month|strong=\"H2320\"* was|strong=\"H2320\"* Shamhuth|strong=\"H8049\"* the|strong=\"H5921\"* Izrahite|strong=\"H3155\"*. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H8269\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 9, + "text": "The|strong=\"H5921\"* sixth|strong=\"H8345\"* captain for|strong=\"H5921\"* the|strong=\"H5921\"* sixth|strong=\"H8345\"* month|strong=\"H2320\"* was|strong=\"H1121\"* Ira|strong=\"H5896\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ikkesh|strong=\"H6142\"* the|strong=\"H5921\"* Tekoite|strong=\"H8621\"*. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H1121\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5921\"* seventh|strong=\"H7637\"* captain for|strong=\"H5921\"* the|strong=\"H5921\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"* was|strong=\"H1121\"* Helez|strong=\"H2503\"* the|strong=\"H5921\"* Pelonite|strong=\"H6397\"*, of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H1121\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* eighth|strong=\"H8066\"* captain for|strong=\"H5921\"* the|strong=\"H5921\"* eighth|strong=\"H8066\"* month|strong=\"H2320\"* was|strong=\"H4256\"* Sibbecai|strong=\"H5444\"* the|strong=\"H5921\"* Hushathite|strong=\"H2843\"*, of|strong=\"H5921\"* the|strong=\"H5921\"* Zerahites|strong=\"H2227\"*. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H5921\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* ninth|strong=\"H8671\"* captain for|strong=\"H5921\"* the|strong=\"H5921\"* ninth|strong=\"H8671\"* month|strong=\"H2320\"* was|strong=\"H4256\"* Abiezer the|strong=\"H5921\"* Anathothite|strong=\"H6069\"*, of|strong=\"H5921\"* the|strong=\"H5921\"* Benjamites|strong=\"H1145\"*. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H5921\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5921\"* tenth|strong=\"H6224\"* captain for|strong=\"H5921\"* the|strong=\"H5921\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"* was|strong=\"H4256\"* Maharai|strong=\"H4121\"* the|strong=\"H5921\"* Netophathite|strong=\"H5200\"*, of|strong=\"H5921\"* the|strong=\"H5921\"* Zerahites|strong=\"H2227\"*. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H5921\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 14, + "text": "The|strong=\"H5921\"* eleventh|strong=\"H6249\"* captain for|strong=\"H5921\"* the|strong=\"H5921\"* eleventh|strong=\"H6249\"* month|strong=\"H2320\"* was|strong=\"H1121\"* Benaiah|strong=\"H1141\"* the|strong=\"H5921\"* Pirathonite|strong=\"H6553\"*, of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H1121\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* twelfth|strong=\"H8147\"* captain for|strong=\"H5921\"* the|strong=\"H5921\"* twelfth|strong=\"H8147\"* month|strong=\"H2320\"* was|strong=\"H2320\"* Heldai|strong=\"H2469\"* the|strong=\"H5921\"* Netophathite|strong=\"H5200\"*, of|strong=\"H5921\"* Othniel|strong=\"H6274\"*. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H8147\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 16, + "text": "Furthermore over|strong=\"H5921\"* the|strong=\"H5921\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*: of|strong=\"H1121\"* the|strong=\"H5921\"* Reubenites|strong=\"H7206\"*, Eliezer the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zichri|strong=\"H2147\"* was|strong=\"H3478\"* the|strong=\"H5921\"* ruler|strong=\"H5057\"*; of|strong=\"H1121\"* the|strong=\"H5921\"* Simeonites|strong=\"H8099\"*, Shephatiah|strong=\"H8203\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maacah|strong=\"H4601\"*;" + }, + { + "verseNum": 17, + "text": "of|strong=\"H1121\"* Levi|strong=\"H3881\"*, Hashabiah|strong=\"H2811\"* the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kemuel|strong=\"H7055\"*; of|strong=\"H1121\"* Aaron, Zadok|strong=\"H6659\"*;" + }, + { + "verseNum": 18, + "text": "of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Elihu, one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1732\"* brothers|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"*; of|strong=\"H1121\"* Issachar|strong=\"H3485\"*, Omri|strong=\"H6018\"* the|strong=\"H1732\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Michael|strong=\"H4317\"*;" + }, + { + "verseNum": 19, + "text": "of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*, Ishmaiah|strong=\"H3460\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Obadiah|strong=\"H5662\"*; of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*, Jeremoth|strong=\"H3406\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azriel|strong=\"H5837\"*;" + }, + { + "verseNum": 20, + "text": "of|strong=\"H1121\"* the|strong=\"H2677\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim, Hoshea|strong=\"H1954\"* the|strong=\"H2677\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azaziah|strong=\"H5812\"*; of|strong=\"H1121\"* the|strong=\"H2677\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, Joel|strong=\"H3100\"* the|strong=\"H2677\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pedaiah|strong=\"H6305\"*;" + }, + { + "verseNum": 21, + "text": "of|strong=\"H1121\"* the|strong=\"H2677\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* in|strong=\"H1121\"* Gilead|strong=\"H1568\"*, Iddo|strong=\"H3035\"* the|strong=\"H2677\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zechariah|strong=\"H2148\"*; of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, Jaasiel|strong=\"H3300\"* the|strong=\"H2677\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abner;" + }, + { + "verseNum": 22, + "text": "of|strong=\"H1121\"* Dan|strong=\"H1835\"*, Azarel|strong=\"H5832\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeroham|strong=\"H3395\"*. These were|strong=\"H3478\"* the|strong=\"H1121\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"H3588\"* David|strong=\"H1732\"* didn’t take|strong=\"H5375\"* the|strong=\"H3588\"* number|strong=\"H4557\"* of|strong=\"H1121\"* them|strong=\"H5375\"* from|strong=\"H3478\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* under|strong=\"H4295\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* said he|strong=\"H3588\"* would|strong=\"H3068\"* increase|strong=\"H7235\"* Israel|strong=\"H3478\"* like|strong=\"H3478\"* the|strong=\"H3588\"* stars|strong=\"H3556\"* of|strong=\"H1121\"* the|strong=\"H3588\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 24, + "text": "Joab|strong=\"H3097\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* began|strong=\"H2490\"* to|strong=\"H3478\"* take|strong=\"H1961\"* a|strong=\"H3068\"* census, but|strong=\"H3808\"* didn’t finish|strong=\"H3615\"*; and|strong=\"H1121\"* wrath|strong=\"H7110\"* came|strong=\"H1961\"* on|strong=\"H5921\"* Israel|strong=\"H3478\"* for|strong=\"H5921\"* this|strong=\"H2063\"*. The|strong=\"H5921\"* number|strong=\"H4557\"* wasn’t put|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H5921\"* account|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H1121\"* King|strong=\"H4428\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 25, + "text": "Over|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s treasures was|strong=\"H5892\"* Azmaveth|strong=\"H5820\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Adiel|strong=\"H5717\"*. Over|strong=\"H5921\"* the|strong=\"H5921\"* treasures in|strong=\"H5921\"* the|strong=\"H5921\"* fields|strong=\"H7704\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* cities|strong=\"H5892\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* villages|strong=\"H3723\"*, and|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H5921\"* towers|strong=\"H4026\"* was|strong=\"H5892\"* Jonathan|strong=\"H3083\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uzziah|strong=\"H5818\"*;" + }, + { + "verseNum": 26, + "text": "Over|strong=\"H5921\"* those|strong=\"H5921\"* who|strong=\"H1121\"* did|strong=\"H6213\"* the|strong=\"H5921\"* work|strong=\"H4399\"* of|strong=\"H1121\"* the|strong=\"H5921\"* field|strong=\"H7704\"* for|strong=\"H5921\"* tillage|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H5921\"* ground|strong=\"H7704\"* was|strong=\"H1121\"* Ezri|strong=\"H5836\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Chelub|strong=\"H3620\"*." + }, + { + "verseNum": 27, + "text": "Over|strong=\"H5921\"* the|strong=\"H5921\"* vineyards|strong=\"H3754\"* was|strong=\"H2067\"* Shimei|strong=\"H8096\"* the|strong=\"H5921\"* Ramathite|strong=\"H7435\"*. Over|strong=\"H5921\"* the|strong=\"H5921\"* increase of|strong=\"H5921\"* the|strong=\"H5921\"* vineyards|strong=\"H3754\"* for|strong=\"H5921\"* the|strong=\"H5921\"* wine|strong=\"H3196\"* cellars was|strong=\"H2067\"* Zabdi|strong=\"H2067\"* the|strong=\"H5921\"* Shiphmite|strong=\"H8225\"*." + }, + { + "verseNum": 28, + "text": "Over|strong=\"H5921\"* the|strong=\"H5921\"* olive|strong=\"H2132\"* trees|strong=\"H2132\"* and|strong=\"H8081\"* the|strong=\"H5921\"* sycamore|strong=\"H8256\"* trees|strong=\"H2132\"* that|strong=\"H8081\"* were|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* lowland|strong=\"H8219\"* was|strong=\"H8081\"* Baal Hanan the|strong=\"H5921\"* Gederite|strong=\"H1451\"*. Over|strong=\"H5921\"* the|strong=\"H5921\"* cellars of|strong=\"H5921\"* oil|strong=\"H8081\"* was|strong=\"H8081\"* Joash|strong=\"H3135\"*." + }, + { + "verseNum": 29, + "text": "Over|strong=\"H5921\"* the|strong=\"H5921\"* herds|strong=\"H1241\"* that|strong=\"H1121\"* fed|strong=\"H7462\"* in|strong=\"H5921\"* Sharon|strong=\"H8289\"* was|strong=\"H1121\"* Shitrai|strong=\"H7861\"* the|strong=\"H5921\"* Sharonite|strong=\"H8290\"*. Over|strong=\"H5921\"* the|strong=\"H5921\"* herds|strong=\"H1241\"* that|strong=\"H1121\"* were|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H5921\"* valleys|strong=\"H6010\"* was|strong=\"H1121\"* Shaphat|strong=\"H8202\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Adlai|strong=\"H5724\"*." + }, + { + "verseNum": 30, + "text": "Over|strong=\"H5921\"* the|strong=\"H5921\"* camels|strong=\"H1581\"* was|strong=\"H3459\"* Obil the|strong=\"H5921\"* Ishmaelite|strong=\"H3459\"*. Over|strong=\"H5921\"* the|strong=\"H5921\"* donkeys was|strong=\"H3459\"* Jehdeiah|strong=\"H3165\"* the|strong=\"H5921\"* Meronothite|strong=\"H4824\"*. Over|strong=\"H5921\"* the|strong=\"H5921\"* flocks was|strong=\"H3459\"* Jaziz the|strong=\"H5921\"* Hagrite." + }, + { + "verseNum": 31, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1732\"* the|strong=\"H3605\"* rulers|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* property|strong=\"H7399\"* which|strong=\"H8269\"* was|strong=\"H1732\"* King|strong=\"H4428\"* David|strong=\"H1732\"*’s." + }, + { + "verseNum": 32, + "text": "Also|strong=\"H1732\"* Jonathan|strong=\"H3083\"*, David|strong=\"H1732\"*’s uncle|strong=\"H1730\"*, was|strong=\"H1732\"* a|strong=\"H3068\"* counselor|strong=\"H3289\"*, a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* understanding, and|strong=\"H1121\"* a|strong=\"H3068\"* scribe|strong=\"H5608\"*. Jehiel|strong=\"H3171\"* the|strong=\"H5973\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hachmoni|strong=\"H2453\"* was|strong=\"H1732\"* with|strong=\"H5973\"* the|strong=\"H5973\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"*." + }, + { + "verseNum": 33, + "text": "Ahithophel was|strong=\"H4428\"* the|strong=\"H2365\"* king|strong=\"H4428\"*’s counselor|strong=\"H3289\"*. Hushai|strong=\"H2365\"* the|strong=\"H2365\"* Archite was|strong=\"H4428\"* the|strong=\"H2365\"* king|strong=\"H4428\"*’s friend|strong=\"H7453\"*." + }, + { + "verseNum": 34, + "text": "After Ahithophel was|strong=\"H4428\"* Jehoiada|strong=\"H3077\"* the|strong=\"H1141\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Benaiah|strong=\"H1141\"*, and|strong=\"H1121\"* Abiathar. Joab|strong=\"H3097\"* was|strong=\"H4428\"* the|strong=\"H1141\"* captain|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H1141\"* king|strong=\"H4428\"*’s army|strong=\"H6635\"*." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* assembled|strong=\"H6950\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"*, the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* companies|strong=\"H4256\"* who|strong=\"H3605\"* served|strong=\"H8334\"* the|strong=\"H3605\"* king|strong=\"H4428\"* by|strong=\"H3478\"* division|strong=\"H4256\"*, the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* thousands, the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* hundreds|strong=\"H3967\"*, and|strong=\"H3967\"* the|strong=\"H3605\"* rulers|strong=\"H8269\"* over|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* substance|strong=\"H7399\"* and|strong=\"H3967\"* possessions|strong=\"H7399\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H3967\"* of|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*, with|strong=\"H5973\"* the|strong=\"H3605\"* officers|strong=\"H8269\"* and|strong=\"H3967\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*, even all|strong=\"H3605\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*, to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H6965\"* David|strong=\"H1732\"* the|strong=\"H5921\"* king|strong=\"H4428\"* stood|strong=\"H6965\"* up|strong=\"H6965\"* on|strong=\"H5921\"* his|strong=\"H3068\"* feet|strong=\"H7272\"* and|strong=\"H6965\"* said|strong=\"H8085\"*, “Hear|strong=\"H8085\"* me|strong=\"H5921\"*, my|strong=\"H8085\"* brothers and|strong=\"H6965\"* my|strong=\"H8085\"* people|strong=\"H5971\"*! As|strong=\"H3824\"* for|strong=\"H5921\"* me|strong=\"H5921\"*, it|strong=\"H5921\"* was|strong=\"H3068\"* in|strong=\"H5921\"* my|strong=\"H8085\"* heart|strong=\"H3824\"* to|strong=\"H3068\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H4428\"* rest|strong=\"H4496\"* for|strong=\"H5921\"* the|strong=\"H5921\"* ark of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, and|strong=\"H6965\"* for|strong=\"H5921\"* the|strong=\"H5921\"* footstool|strong=\"H1916\"* of|strong=\"H4428\"* our|strong=\"H3068\"* God|strong=\"H3068\"*; and|strong=\"H6965\"* I|strong=\"H5921\"* had|strong=\"H3068\"* prepared|strong=\"H3559\"* for|strong=\"H5921\"* the|strong=\"H5921\"* building|strong=\"H1129\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"H3588\"* God|strong=\"H3808\"* said to|strong=\"H1004\"* me|strong=\"H3808\"*, ‘You|strong=\"H3588\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H3588\"* my|strong=\"H8210\"* name|strong=\"H8034\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1004\"* a|strong=\"H3068\"* man of|strong=\"H1004\"* war|strong=\"H4421\"* and|strong=\"H1004\"* have|strong=\"H1129\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"*.’" + }, + { + "verseNum": 4, + "text": "However|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, chose me|strong=\"H5921\"* out|strong=\"H5921\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* my|strong=\"H3605\"* father|strong=\"H1121\"* to|strong=\"H3478\"* be|strong=\"H1961\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* forever|strong=\"H5769\"*. For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* chosen Judah|strong=\"H3063\"* to|strong=\"H3478\"* be|strong=\"H1961\"* prince|strong=\"H5057\"*; and|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* my|strong=\"H3605\"* father|strong=\"H1121\"*; and|strong=\"H1121\"* among|strong=\"H5921\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* my|strong=\"H3605\"* father|strong=\"H1121\"* he|strong=\"H3588\"* took|strong=\"H1961\"* pleasure|strong=\"H7521\"* in|strong=\"H5921\"* me|strong=\"H5921\"* to|strong=\"H3478\"* make|strong=\"H4427\"* me|strong=\"H5921\"* king|strong=\"H4428\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 5, + "text": "Of|strong=\"H1121\"* all|strong=\"H3605\"* my|strong=\"H5414\"* sons|strong=\"H1121\"* (for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* me|strong=\"H5414\"* many|strong=\"H7227\"* sons|strong=\"H1121\"*), he|strong=\"H3588\"* has|strong=\"H3068\"* chosen Solomon|strong=\"H8010\"* my|strong=\"H5414\"* son|strong=\"H1121\"* to|strong=\"H3478\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H3605\"* throne|strong=\"H3678\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s kingdom|strong=\"H4438\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H1931\"* said to|strong=\"H1961\"* me|strong=\"H1961\"*, ‘Solomon|strong=\"H8010\"*, your|strong=\"H3588\"* son|strong=\"H1121\"*, shall|strong=\"H1121\"* build|strong=\"H1129\"* my|strong=\"H1961\"* house|strong=\"H1004\"* and|strong=\"H1121\"* my|strong=\"H1961\"* courts|strong=\"H2691\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* chosen him|strong=\"H1931\"* to|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H1961\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* I|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* his|strong=\"H1961\"* father|strong=\"H1121\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H3117\"* will|strong=\"H3117\"* establish|strong=\"H3559\"* his|strong=\"H3559\"* kingdom|strong=\"H4438\"* forever|strong=\"H5769\"* if he|strong=\"H3117\"* continues to|strong=\"H5704\"* do|strong=\"H6213\"* my|strong=\"H6213\"* commandments|strong=\"H4687\"* and|strong=\"H3117\"* my|strong=\"H6213\"* ordinances|strong=\"H4941\"*, as|strong=\"H5704\"* it|strong=\"H6213\"* is|strong=\"H2088\"* today|strong=\"H3117\"*.’" + }, + { + "verseNum": 8, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, in|strong=\"H3478\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H1121\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, Yahweh|strong=\"H3068\"*’s assembly|strong=\"H6951\"*, and|strong=\"H1121\"* in|strong=\"H3478\"* the|strong=\"H3605\"* audience of|strong=\"H1121\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, observe|strong=\"H8104\"* and|strong=\"H1121\"* seek|strong=\"H1875\"* out|strong=\"H3423\"* all|strong=\"H3605\"* the|strong=\"H3605\"* commandments|strong=\"H4687\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H3068\"* possess|strong=\"H3423\"* this|strong=\"H6258\"* good|strong=\"H2896\"* land, and|strong=\"H1121\"* leave|strong=\"H4616\"* it|strong=\"H3423\"* for|strong=\"H5704\"* an|strong=\"H5157\"* inheritance|strong=\"H5157\"* to|strong=\"H5704\"* your|strong=\"H3068\"* children|strong=\"H1121\"* after|strong=\"H1875\"* you|strong=\"H3605\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3588\"*, Solomon|strong=\"H8010\"* my|strong=\"H3605\"* son|strong=\"H1121\"*, know|strong=\"H3045\"* the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* your|strong=\"H3068\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* serve|strong=\"H5647\"* him|strong=\"H4672\"* with|strong=\"H3068\"* a|strong=\"H3068\"* perfect|strong=\"H8003\"* heart|strong=\"H3820\"* and|strong=\"H1121\"* with|strong=\"H3068\"* a|strong=\"H3068\"* willing|strong=\"H2655\"* mind|strong=\"H3820\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* searches|strong=\"H1875\"* all|strong=\"H3605\"* hearts|strong=\"H3820\"*, and|strong=\"H1121\"* understands|strong=\"H3045\"* all|strong=\"H3605\"* the|strong=\"H3605\"* imaginations|strong=\"H4284\"* of|strong=\"H1121\"* the|strong=\"H3605\"* thoughts|strong=\"H4284\"*. If|strong=\"H3588\"* you|strong=\"H3588\"* seek|strong=\"H1875\"* him|strong=\"H4672\"*, he|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* found|strong=\"H4672\"* by|strong=\"H3068\"* you|strong=\"H3588\"*; but|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* forsake|strong=\"H5800\"* him|strong=\"H4672\"*, he|strong=\"H3588\"* will|strong=\"H3068\"* cast|strong=\"H3068\"* you|strong=\"H3588\"* off|strong=\"H2186\"* forever|strong=\"H5703\"*." + }, + { + "verseNum": 10, + "text": "Take|strong=\"H2388\"* heed|strong=\"H7200\"* now|strong=\"H6258\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* chosen you|strong=\"H3588\"* to|strong=\"H3068\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H3588\"* the|strong=\"H7200\"* sanctuary|strong=\"H4720\"*. Be|strong=\"H3068\"* strong|strong=\"H2388\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H3588\"*.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H5414\"* David|strong=\"H1732\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* Solomon|strong=\"H8010\"* his|strong=\"H5414\"* son|strong=\"H1121\"* the|strong=\"H5414\"* plans for|strong=\"H1004\"* the|strong=\"H5414\"* porch of|strong=\"H1121\"* the|strong=\"H5414\"* temple|strong=\"H1004\"*, for|strong=\"H1004\"* its|strong=\"H5414\"* houses|strong=\"H1004\"*, for|strong=\"H1004\"* its|strong=\"H5414\"* treasuries|strong=\"H1597\"*, for|strong=\"H1004\"* its|strong=\"H5414\"* upper|strong=\"H5944\"* rooms|strong=\"H2315\"*, for|strong=\"H1004\"* its|strong=\"H5414\"* inner|strong=\"H6442\"* rooms|strong=\"H2315\"*, for|strong=\"H1004\"* the|strong=\"H5414\"* place|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H5414\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"*;" + }, + { + "verseNum": 12, + "text": "and|strong=\"H3068\"* the|strong=\"H3605\"* plans of|strong=\"H1004\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3068\"* had|strong=\"H3068\"* by|strong=\"H3068\"* the|strong=\"H3605\"* Spirit|strong=\"H7307\"*, for|strong=\"H3068\"* the|strong=\"H3605\"* courts|strong=\"H2691\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, for|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* surrounding|strong=\"H5439\"* rooms|strong=\"H3957\"*, for|strong=\"H3068\"* the|strong=\"H3605\"* treasuries of|strong=\"H1004\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* for|strong=\"H3068\"* the|strong=\"H3605\"* treasuries of|strong=\"H1004\"* the|strong=\"H3605\"* dedicated|strong=\"H6944\"* things|strong=\"H6944\"*;" + }, + { + "verseNum": 13, + "text": "also|strong=\"H3068\"* for|strong=\"H3068\"* the|strong=\"H3605\"* divisions|strong=\"H4256\"* of|strong=\"H1004\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, for|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H1004\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* for|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H1004\"* service|strong=\"H5656\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*—" + }, + { + "verseNum": 14, + "text": "of|strong=\"H3627\"* gold|strong=\"H2091\"* by|strong=\"H2091\"* weight|strong=\"H4948\"* for|strong=\"H3627\"* the|strong=\"H3605\"* gold|strong=\"H2091\"* for|strong=\"H3627\"* all|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* every|strong=\"H3605\"* kind|strong=\"H5656\"* of|strong=\"H3627\"* service|strong=\"H5656\"*, for|strong=\"H3627\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* silver|strong=\"H3701\"* by|strong=\"H2091\"* weight|strong=\"H4948\"*, for|strong=\"H3627\"* all|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* every|strong=\"H3605\"* kind|strong=\"H5656\"* of|strong=\"H3627\"* service|strong=\"H5656\"*;" + }, + { + "verseNum": 15, + "text": "by|strong=\"H2091\"* weight|strong=\"H4948\"* also for|strong=\"H3701\"* the|strong=\"H5656\"* lamp|strong=\"H5216\"* stands of|strong=\"H2091\"* gold|strong=\"H2091\"*, and|strong=\"H3701\"* for|strong=\"H3701\"* its lamps|strong=\"H5216\"*, of|strong=\"H2091\"* gold|strong=\"H2091\"*, by|strong=\"H2091\"* weight|strong=\"H4948\"* for|strong=\"H3701\"* every lamp|strong=\"H5216\"* stand and|strong=\"H3701\"* for|strong=\"H3701\"* its lamps|strong=\"H5216\"*; and|strong=\"H3701\"* for|strong=\"H3701\"* the|strong=\"H5656\"* lamp|strong=\"H5216\"* stands of|strong=\"H2091\"* silver|strong=\"H3701\"*, by|strong=\"H2091\"* weight|strong=\"H4948\"* for|strong=\"H3701\"* every lamp|strong=\"H5216\"* stand and|strong=\"H3701\"* for|strong=\"H3701\"* its lamps|strong=\"H5216\"*, according|strong=\"H3701\"* to|strong=\"H3701\"* the|strong=\"H5656\"* use|strong=\"H5656\"* of|strong=\"H2091\"* every lamp|strong=\"H5216\"* stand;" + }, + { + "verseNum": 16, + "text": "and|strong=\"H3701\"* the gold|strong=\"H2091\"* by|strong=\"H2091\"* weight|strong=\"H4948\"* for|strong=\"H3701\"* the tables|strong=\"H7979\"* of|strong=\"H2091\"* show bread, for|strong=\"H3701\"* every table|strong=\"H7979\"*; and|strong=\"H3701\"* silver|strong=\"H3701\"* for|strong=\"H3701\"* the tables|strong=\"H7979\"* of|strong=\"H2091\"* silver|strong=\"H3701\"*;" + }, + { + "verseNum": 17, + "text": "and|strong=\"H3701\"* the forks|strong=\"H4207\"*, the basins|strong=\"H4219\"*, and|strong=\"H3701\"* the cups|strong=\"H7184\"*, of|strong=\"H4219\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*; and|strong=\"H3701\"* for|strong=\"H3701\"* the golden|strong=\"H2091\"* bowls|strong=\"H4219\"* by|strong=\"H2091\"* weight|strong=\"H4948\"* for|strong=\"H3701\"* every bowl|strong=\"H4219\"*; and|strong=\"H3701\"* for|strong=\"H3701\"* the silver|strong=\"H3701\"* bowls|strong=\"H4219\"* by|strong=\"H2091\"* weight|strong=\"H4948\"* for|strong=\"H3701\"* every bowl|strong=\"H4219\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H3068\"* for|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* incense|strong=\"H7004\"*, refined|strong=\"H2212\"* gold|strong=\"H2091\"* by|strong=\"H5921\"* weight|strong=\"H4948\"*; and|strong=\"H3068\"* gold|strong=\"H2091\"* for|strong=\"H5921\"* the|strong=\"H5921\"* plans for|strong=\"H5921\"* the|strong=\"H5921\"* chariot|strong=\"H4818\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* that|strong=\"H3068\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* and|strong=\"H3068\"* cover|strong=\"H5526\"* the|strong=\"H5921\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*." + }, + { + "verseNum": 19, + "text": "“All|strong=\"H3605\"* this|strong=\"H3068\"*”, David|strong=\"H3027\"* said, “I|strong=\"H5921\"* have|strong=\"H3068\"* been|strong=\"H3605\"* made|strong=\"H4399\"* to|strong=\"H3068\"* understand|strong=\"H7919\"* in|strong=\"H5921\"* writing|strong=\"H3791\"* from|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"*, even|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* works|strong=\"H4399\"* of|strong=\"H3068\"* this|strong=\"H3068\"* pattern|strong=\"H8403\"*.”" + }, + { + "verseNum": 20, + "text": "David|strong=\"H1732\"* said to|strong=\"H5704\"* Solomon|strong=\"H8010\"* his|strong=\"H3605\"* son|strong=\"H1121\"*, “Be|strong=\"H3808\"* strong|strong=\"H2388\"* and|strong=\"H1121\"* courageous|strong=\"H2388\"*, and|strong=\"H1121\"* do|strong=\"H6213\"* it|strong=\"H3588\"*. Don’t be|strong=\"H3808\"* afraid|strong=\"H3372\"*, nor|strong=\"H3808\"* be|strong=\"H3808\"* dismayed|strong=\"H2865\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*, even|strong=\"H5704\"* my|strong=\"H3605\"* God|strong=\"H3068\"*, is|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3588\"*. He|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* fail|strong=\"H3615\"* you|strong=\"H3588\"* nor|strong=\"H3808\"* forsake|strong=\"H5800\"* you|strong=\"H3588\"*, until|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"* for|strong=\"H3588\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* is|strong=\"H3068\"* finished|strong=\"H3615\"*." + }, + { + "verseNum": 21, + "text": "Behold|strong=\"H2009\"*, there|strong=\"H2009\"* are|strong=\"H5971\"* the|strong=\"H3605\"* divisions|strong=\"H4256\"* of|strong=\"H1004\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H1004\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* for|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1004\"* God|strong=\"H2451\"*’s house|strong=\"H1004\"*. Every|strong=\"H3605\"* willing|strong=\"H5081\"* man|strong=\"H5081\"* who|strong=\"H3605\"* has|strong=\"H1697\"* skill|strong=\"H2451\"* for|strong=\"H1004\"* any|strong=\"H3605\"* kind|strong=\"H5656\"* of|strong=\"H1004\"* service|strong=\"H5656\"* shall|strong=\"H3548\"* be|strong=\"H1697\"* with|strong=\"H5973\"* you|strong=\"H3605\"* in|strong=\"H1004\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H1004\"* work|strong=\"H4399\"*. Also|strong=\"H5971\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* and|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* will|strong=\"H5971\"* be|strong=\"H1697\"* entirely|strong=\"H3605\"* at|strong=\"H1004\"* your|strong=\"H3605\"* command|strong=\"H1697\"*.”" + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* the|strong=\"H3605\"* king|strong=\"H4428\"* said to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*, “Solomon|strong=\"H8010\"* my|strong=\"H3605\"* son|strong=\"H1121\"*, whom|strong=\"H3588\"* alone God|strong=\"H3068\"* has|strong=\"H3068\"* chosen, is|strong=\"H3068\"* yet|strong=\"H3588\"* young|strong=\"H5288\"* and|strong=\"H1121\"* tender|strong=\"H7390\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* work|strong=\"H4399\"* is|strong=\"H3068\"* great|strong=\"H1419\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* palace|strong=\"H1002\"* is|strong=\"H3068\"* not|strong=\"H3808\"* for|strong=\"H3588\"* man|strong=\"H5288\"*, but|strong=\"H3588\"* for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "Now I|strong=\"H3559\"* have|strong=\"H3605\"* prepared|strong=\"H3559\"* with|strong=\"H1004\"* all|strong=\"H3605\"* my|strong=\"H3605\"* might|strong=\"H3581\"* for|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* my|strong=\"H3605\"* God the|strong=\"H3605\"* gold|strong=\"H2091\"* for|strong=\"H1004\"* the|strong=\"H3605\"* things|strong=\"H3605\"* of|strong=\"H1004\"* gold|strong=\"H2091\"*, the|strong=\"H3605\"* silver|strong=\"H3701\"* for|strong=\"H1004\"* the|strong=\"H3605\"* things|strong=\"H3605\"* of|strong=\"H1004\"* silver|strong=\"H3701\"*, the|strong=\"H3605\"* bronze|strong=\"H5178\"* for|strong=\"H1004\"* the|strong=\"H3605\"* things|strong=\"H3605\"* of|strong=\"H1004\"* bronze|strong=\"H5178\"*, iron|strong=\"H1270\"* for|strong=\"H1004\"* the|strong=\"H3605\"* things|strong=\"H3605\"* of|strong=\"H1004\"* iron|strong=\"H1270\"*, and|strong=\"H3701\"* wood|strong=\"H6086\"* for|strong=\"H1004\"* the|strong=\"H3605\"* things|strong=\"H3605\"* of|strong=\"H1004\"* wood|strong=\"H6086\"*, also onyx|strong=\"H7718\"* stones|strong=\"H7553\"*, stones|strong=\"H7553\"* to|strong=\"H1004\"* be|strong=\"H6086\"* set|strong=\"H3559\"*, stones|strong=\"H7553\"* for|strong=\"H1004\"* inlaid|strong=\"H4394\"* work|strong=\"H7553\"* of|strong=\"H1004\"* various|strong=\"H7553\"* colors|strong=\"H7553\"*, all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H1004\"* precious|strong=\"H3368\"* stones|strong=\"H7553\"*, and|strong=\"H3701\"* marble|strong=\"H7893\"* stones|strong=\"H7553\"* in|strong=\"H1004\"* abundance|strong=\"H7230\"*." + }, + { + "verseNum": 3, + "text": "In|strong=\"H1004\"* addition, because|strong=\"H3605\"* I|strong=\"H5414\"* have|strong=\"H3426\"* set|strong=\"H5414\"* my|strong=\"H5414\"* affection|strong=\"H7521\"* on|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* my|strong=\"H5414\"* God|strong=\"H5414\"*, since|strong=\"H5750\"* I|strong=\"H5414\"* have|strong=\"H3426\"* a|strong=\"H3068\"* treasure|strong=\"H5459\"* of|strong=\"H1004\"* my|strong=\"H5414\"* own of|strong=\"H1004\"* gold|strong=\"H2091\"* and|strong=\"H3701\"* silver|strong=\"H3701\"*, I|strong=\"H5414\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* my|strong=\"H5414\"* God|strong=\"H5414\"*, over|strong=\"H5414\"* and|strong=\"H3701\"* above|strong=\"H4605\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H5414\"* have|strong=\"H3426\"* prepared|strong=\"H3559\"* for|strong=\"H1004\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* house|strong=\"H1004\"*:" + }, + { + "verseNum": 4, + "text": "even|strong=\"H7651\"* three|strong=\"H7969\"* thousand talents|strong=\"H3603\"* of|strong=\"H1004\"* gold|strong=\"H2091\"*,+ 29:4 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 3000 talents is about 90 metric tons* of|strong=\"H1004\"* the|strong=\"H1004\"* gold|strong=\"H2091\"* of|strong=\"H1004\"* Ophir, and|strong=\"H3701\"* seven|strong=\"H7651\"* thousand talents|strong=\"H3603\"*+ 29:4 about 210 metric tons* of|strong=\"H1004\"* refined|strong=\"H2212\"* silver|strong=\"H3701\"*, with|strong=\"H1004\"* which|strong=\"H1004\"* to|strong=\"H1004\"* overlay|strong=\"H2902\"* the|strong=\"H1004\"* walls|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H1004\"* houses|strong=\"H1004\"*;" + }, + { + "verseNum": 5, + "text": "of|strong=\"H3068\"* gold|strong=\"H2091\"* for|strong=\"H3027\"* the|strong=\"H3605\"* things|strong=\"H3605\"* of|strong=\"H3068\"* gold|strong=\"H2091\"*, and|strong=\"H3068\"* of|strong=\"H3068\"* silver|strong=\"H3701\"* for|strong=\"H3027\"* the|strong=\"H3605\"* things|strong=\"H3605\"* of|strong=\"H3068\"* silver|strong=\"H3701\"*, and|strong=\"H3068\"* for|strong=\"H3027\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H3068\"* work|strong=\"H4399\"* to|strong=\"H3068\"* be|strong=\"H3027\"* made|strong=\"H4399\"* by|strong=\"H3027\"* the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H3068\"* artisans. Who|strong=\"H4310\"* then|strong=\"H3068\"* offers willingly|strong=\"H5068\"* to|strong=\"H3068\"* consecrate|strong=\"H4390\"* himself|strong=\"H3027\"* today|strong=\"H3117\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*?”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H4428\"* the|strong=\"H3478\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3478\"* fathers’ households, and|strong=\"H3967\"* the|strong=\"H3478\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3478\"* tribes|strong=\"H7626\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, and|strong=\"H3967\"* the|strong=\"H3478\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* thousands and|strong=\"H3967\"* of|strong=\"H4428\"* hundreds|strong=\"H3967\"*, with|strong=\"H4428\"* the|strong=\"H3478\"* rulers|strong=\"H8269\"* over|strong=\"H4428\"* the|strong=\"H3478\"* king|strong=\"H4428\"*’s work|strong=\"H4399\"*, offered|strong=\"H5068\"* willingly|strong=\"H5068\"*;" + }, + { + "verseNum": 7, + "text": "and|strong=\"H3967\"* they|strong=\"H5414\"* gave|strong=\"H5414\"* for|strong=\"H1004\"* the|strong=\"H5414\"* service|strong=\"H5656\"* of|strong=\"H1004\"* God|strong=\"H5414\"*’s house|strong=\"H1004\"* of|strong=\"H1004\"* gold|strong=\"H2091\"* five|strong=\"H2568\"* thousand|strong=\"H7239\"* talents|strong=\"H3603\"*+ 29:7 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 5000 talents is about 150 metric tons* and|strong=\"H3967\"* ten|strong=\"H6235\"* thousand|strong=\"H7239\"* darics,+ 29:7 a daric was a gold coin issued by a Persian king, weighing about 8.4 grams or about 0.27 troy ounces each.* of|strong=\"H1004\"* silver|strong=\"H3701\"* ten|strong=\"H6235\"* thousand|strong=\"H7239\"* talents|strong=\"H3603\"*, of|strong=\"H1004\"* bronze|strong=\"H5178\"* eighteen|strong=\"H8083\"* thousand|strong=\"H7239\"* talents|strong=\"H3603\"*, and|strong=\"H3967\"* of|strong=\"H1004\"* iron|strong=\"H1270\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* thousand|strong=\"H7239\"* talents|strong=\"H3603\"*." + }, + { + "verseNum": 8, + "text": "People with|strong=\"H1004\"* whom precious stones were|strong=\"H3027\"* found|strong=\"H4672\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3068\"* the|strong=\"H5921\"* treasure of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, under|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* Jehiel|strong=\"H3171\"* the|strong=\"H5921\"* Gershonite|strong=\"H1649\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H1571\"* the|strong=\"H5921\"* people|strong=\"H5971\"* rejoiced|strong=\"H8055\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* offered|strong=\"H5068\"* willingly|strong=\"H5068\"*, because|strong=\"H3588\"* with|strong=\"H3068\"* a|strong=\"H3068\"* perfect|strong=\"H8003\"* heart|strong=\"H3820\"* they|strong=\"H3588\"* offered|strong=\"H5068\"* willingly|strong=\"H5068\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* David|strong=\"H1732\"* the|strong=\"H5921\"* king|strong=\"H4428\"* also|strong=\"H1571\"* rejoiced|strong=\"H8055\"* with|strong=\"H3068\"* great|strong=\"H1419\"* joy|strong=\"H8057\"*." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H1732\"* David|strong=\"H1732\"* blessed|strong=\"H1288\"* Yahweh|strong=\"H3068\"* before|strong=\"H5869\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*; and|strong=\"H3478\"* David|strong=\"H1732\"* said, “You|strong=\"H3605\"* are|strong=\"H3478\"* blessed|strong=\"H1288\"*, Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* our|strong=\"H3068\"* father, forever|strong=\"H5769\"* and|strong=\"H3478\"* ever|strong=\"H5769\"*." + }, + { + "verseNum": 11, + "text": "Yours, Yahweh|strong=\"H3068\"*, is|strong=\"H3068\"* the|strong=\"H3605\"* greatness|strong=\"H1420\"*, the|strong=\"H3605\"* power|strong=\"H1369\"*, the|strong=\"H3605\"* glory|strong=\"H8597\"*, the|strong=\"H3605\"* victory|strong=\"H5331\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* majesty|strong=\"H1935\"*! For|strong=\"H3588\"* all|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3605\"* heavens|strong=\"H8064\"* and|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3605\"* earth|strong=\"H8064\"* is|strong=\"H3068\"* yours. Yours is|strong=\"H3068\"* the|strong=\"H3605\"* kingdom|strong=\"H4467\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* are|strong=\"H8064\"* exalted|strong=\"H4984\"* as|strong=\"H3068\"* head|strong=\"H7218\"* above all|strong=\"H3605\"*." + }, + { + "verseNum": 12, + "text": "Both|strong=\"H3605\"* riches|strong=\"H6239\"* and|strong=\"H3027\"* honor|strong=\"H3519\"* come from|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H3027\"* you|strong=\"H6440\"* rule|strong=\"H4910\"* over|strong=\"H3027\"* all|strong=\"H3605\"*! In|strong=\"H6440\"* your|strong=\"H3605\"* hand|strong=\"H3027\"* is|strong=\"H3027\"* power|strong=\"H3027\"* and|strong=\"H3027\"* might|strong=\"H1369\"*! It|strong=\"H6440\"* is|strong=\"H3027\"* in|strong=\"H6440\"* your|strong=\"H3605\"* hand|strong=\"H3027\"* to|strong=\"H6440\"* make|strong=\"H1431\"* great|strong=\"H1431\"*, and|strong=\"H3027\"* to|strong=\"H6440\"* give strength|strong=\"H3581\"* to|strong=\"H6440\"* all|strong=\"H3605\"*!" + }, + { + "verseNum": 13, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, our God, we|strong=\"H3068\"* thank|strong=\"H3034\"* you|strong=\"H3034\"* and|strong=\"H3034\"* praise|strong=\"H1984\"* your|strong=\"H3034\"* glorious|strong=\"H8597\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"H3588\"* who|strong=\"H4310\"* am I|strong=\"H3588\"*, and|strong=\"H3027\"* what|strong=\"H4310\"* is|strong=\"H4310\"* my|strong=\"H5414\"* people|strong=\"H5971\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* should|strong=\"H3588\"* be|strong=\"H3027\"* able|strong=\"H3027\"* to|strong=\"H5414\"* offer|strong=\"H5414\"* so|strong=\"H4480\"* willingly|strong=\"H5068\"* as|strong=\"H3588\"* this|strong=\"H2063\"*? For|strong=\"H3588\"* all|strong=\"H3605\"* things|strong=\"H3605\"* come|strong=\"H5971\"* from|strong=\"H4480\"* you|strong=\"H3588\"*, and|strong=\"H3027\"* we|strong=\"H3068\"* have|strong=\"H5971\"* given|strong=\"H5414\"* you|strong=\"H3588\"* of|strong=\"H3027\"* your|strong=\"H3605\"* own|strong=\"H5971\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H3117\"* strangers|strong=\"H1616\"* before|strong=\"H6440\"* you|strong=\"H3588\"* and|strong=\"H3117\"* foreigners|strong=\"H1616\"*, as|strong=\"H3117\"* all|strong=\"H3605\"* our|strong=\"H3605\"* fathers were|strong=\"H3117\"*. Our|strong=\"H3605\"* days|strong=\"H3117\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth are|strong=\"H3117\"* as|strong=\"H3117\"* a|strong=\"H3068\"* shadow|strong=\"H6738\"*, and|strong=\"H3117\"* there|strong=\"H3117\"* is|strong=\"H3117\"* no|strong=\"H3605\"* remaining." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, all|strong=\"H3605\"* this|strong=\"H2088\"* store|strong=\"H1995\"* that|strong=\"H3605\"* we|strong=\"H3068\"* have|strong=\"H3068\"* prepared|strong=\"H3559\"* to|strong=\"H3068\"* build|strong=\"H1129\"* you|strong=\"H3605\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H3027\"* your|strong=\"H3068\"* holy|strong=\"H6944\"* name|strong=\"H8034\"* comes from|strong=\"H3027\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* is|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* own|strong=\"H3027\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H3588\"* know|strong=\"H3045\"* also|strong=\"H5971\"*, my|strong=\"H3605\"* God, that|strong=\"H3588\"* you|strong=\"H3588\"* try the|strong=\"H3605\"* heart|strong=\"H3824\"* and|strong=\"H5971\"* have|strong=\"H5971\"* pleasure|strong=\"H7521\"* in|strong=\"H4672\"* uprightness|strong=\"H3476\"*. As|strong=\"H3824\"* for|strong=\"H3588\"* me|strong=\"H7200\"*, in|strong=\"H4672\"* the|strong=\"H3605\"* uprightness|strong=\"H3476\"* of|strong=\"H5971\"* my|strong=\"H3605\"* heart|strong=\"H3824\"* I|strong=\"H3588\"* have|strong=\"H5971\"* willingly|strong=\"H5068\"* offered|strong=\"H5068\"* all|strong=\"H3605\"* these|strong=\"H3605\"* things|strong=\"H3605\"*. Now|strong=\"H6258\"* I|strong=\"H3588\"* have|strong=\"H5971\"* seen|strong=\"H7200\"* with|strong=\"H3045\"* joy|strong=\"H8057\"* your|strong=\"H3605\"* people|strong=\"H5971\"*, who|strong=\"H3605\"* are|strong=\"H5971\"* present|strong=\"H4672\"* here|strong=\"H6311\"*, offer|strong=\"H5068\"* willingly|strong=\"H5068\"* to|strong=\"H3824\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H8104\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Abraham, of|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H3478\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, our|strong=\"H3068\"* fathers, keep|strong=\"H8104\"* this|strong=\"H2063\"* desire|strong=\"H3824\"* forever|strong=\"H5769\"* in|strong=\"H3478\"* the|strong=\"H8104\"* thoughts|strong=\"H4284\"* of|strong=\"H3068\"* the|strong=\"H8104\"* heart|strong=\"H3824\"* of|strong=\"H3068\"* your|strong=\"H3068\"* people|strong=\"H5971\"*, and|strong=\"H3478\"* prepare|strong=\"H3559\"* their|strong=\"H3068\"* heart|strong=\"H3824\"* for|strong=\"H3068\"* you|strong=\"H8104\"*;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H1121\"* give|strong=\"H5414\"* to|strong=\"H6213\"* Solomon|strong=\"H8010\"* my|strong=\"H8104\"* son|strong=\"H1121\"* a|strong=\"H3068\"* perfect|strong=\"H8003\"* heart|strong=\"H3824\"*, to|strong=\"H6213\"* keep|strong=\"H8104\"* your|strong=\"H3605\"* commandments|strong=\"H4687\"*, your|strong=\"H3605\"* testimonies|strong=\"H5715\"*, and|strong=\"H1121\"* your|strong=\"H3605\"* statutes|strong=\"H2708\"*, and|strong=\"H1121\"* to|strong=\"H6213\"* do|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* things|strong=\"H3605\"*, and|strong=\"H1121\"* to|strong=\"H6213\"* build|strong=\"H1129\"* the|strong=\"H3605\"* palace|strong=\"H1002\"*, for|strong=\"H6213\"* which|strong=\"H1002\"* I|strong=\"H5414\"* have|strong=\"H1121\"* made|strong=\"H6213\"* provision|strong=\"H3559\"*.”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H4428\"* David|strong=\"H1732\"* said to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*, “Now|strong=\"H4994\"* bless|strong=\"H1288\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*!”" + }, + { + "verseNum": 21, + "text": "They|strong=\"H3117\"* sacrificed|strong=\"H2076\"* sacrifices|strong=\"H2077\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* and|strong=\"H3478\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* on|strong=\"H3117\"* the|strong=\"H3605\"* next|strong=\"H4283\"* day|strong=\"H3117\"* after|strong=\"H4283\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, even|strong=\"H3068\"* one|strong=\"H3532\"* thousand bulls|strong=\"H6499\"*, one|strong=\"H3532\"* thousand rams, and|strong=\"H3478\"* one|strong=\"H3532\"* thousand lambs|strong=\"H3532\"*, with|strong=\"H3068\"* their|strong=\"H3605\"* drink|strong=\"H5262\"* offerings|strong=\"H5930\"* and|strong=\"H3478\"* sacrifices|strong=\"H2077\"* in|strong=\"H3478\"* abundance|strong=\"H7230\"* for|strong=\"H3068\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 22, + "text": "and|strong=\"H1121\"* ate and|strong=\"H1121\"* drank|strong=\"H8354\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* on|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* with|strong=\"H3068\"* great|strong=\"H1419\"* gladness|strong=\"H8057\"*. They|strong=\"H3117\"* made|strong=\"H4427\"* Solomon|strong=\"H8010\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"* king|strong=\"H4427\"* the|strong=\"H6440\"* second|strong=\"H8145\"* time|strong=\"H3117\"*, and|strong=\"H1121\"* anointed|strong=\"H4886\"* him|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* be|strong=\"H3068\"* prince|strong=\"H5057\"*, and|strong=\"H1121\"* Zadok|strong=\"H6659\"* to|strong=\"H3068\"* be|strong=\"H3068\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 23, + "text": "Then|strong=\"H8085\"* Solomon|strong=\"H8010\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H3605\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"* as|strong=\"H3068\"* king|strong=\"H4428\"* instead|strong=\"H8478\"* of|strong=\"H4428\"* David|strong=\"H1732\"* his|strong=\"H3605\"* father, and|strong=\"H3478\"* prospered|strong=\"H6743\"*; and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* obeyed|strong=\"H8085\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 24, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"*, the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*, and|strong=\"H1121\"* also|strong=\"H1571\"* all|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* King|strong=\"H4428\"* David|strong=\"H1732\"* submitted|strong=\"H5414\"* themselves|strong=\"H5414\"* to|strong=\"H5414\"* Solomon|strong=\"H8010\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* magnified|strong=\"H1431\"* Solomon|strong=\"H8010\"* exceedingly|strong=\"H4605\"* in|strong=\"H5921\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H4428\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* gave|strong=\"H5414\"* to|strong=\"H3478\"* him|strong=\"H5414\"* such|strong=\"H1961\"* royal|strong=\"H4438\"* majesty|strong=\"H1935\"* as|strong=\"H1961\"* had|strong=\"H3068\"* not|strong=\"H3808\"* been|strong=\"H1961\"* on|strong=\"H5921\"* any|strong=\"H3605\"* king|strong=\"H4428\"* before|strong=\"H6440\"* him|strong=\"H5414\"* in|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 26, + "text": "Now|strong=\"H3478\"* David|strong=\"H1732\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H5921\"* time|strong=\"H3117\"* that|strong=\"H3117\"* he|strong=\"H3117\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* was|strong=\"H3478\"* forty years|strong=\"H8141\"*; he|strong=\"H3117\"* reigned|strong=\"H4427\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Hebron|strong=\"H2275\"*, and|strong=\"H3478\"* he|strong=\"H3117\"* reigned|strong=\"H4427\"* thirty-three|strong=\"H7970\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H3117\"* died|strong=\"H4191\"* at|strong=\"H3117\"* a|strong=\"H3068\"* good|strong=\"H2896\"* old|strong=\"H1121\"* age|strong=\"H3117\"*, full|strong=\"H3117\"* of|strong=\"H1121\"* days|strong=\"H3117\"*, riches|strong=\"H6239\"*, and|strong=\"H1121\"* honor|strong=\"H3519\"*; and|strong=\"H1121\"* Solomon|strong=\"H8010\"* his|strong=\"H8010\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8010\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 29, + "text": "Now|strong=\"H2009\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* David|strong=\"H1732\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, first|strong=\"H7223\"* and|strong=\"H4428\"* last, behold|strong=\"H2009\"*, they|strong=\"H5921\"* are|strong=\"H1697\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* history of|strong=\"H4428\"* Samuel|strong=\"H8050\"* the|strong=\"H5921\"* seer|strong=\"H2374\"*, and|strong=\"H4428\"* in|strong=\"H5921\"* the|strong=\"H5921\"* history of|strong=\"H4428\"* Nathan|strong=\"H5416\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"*, and|strong=\"H4428\"* in|strong=\"H5921\"* the|strong=\"H5921\"* history of|strong=\"H4428\"* Gad|strong=\"H1410\"* the|strong=\"H5921\"* seer|strong=\"H2374\"*," + }, + { + "verseNum": 30, + "text": "with|strong=\"H5973\"* all|strong=\"H3605\"* his|strong=\"H3605\"* reign|strong=\"H4438\"* and|strong=\"H3478\"* his|strong=\"H3605\"* might|strong=\"H1369\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* events that|strong=\"H3605\"* involved him|strong=\"H5921\"*, Israel|strong=\"H3478\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H5921\"* the|strong=\"H3605\"* lands." + } + ] + } + ] + }, + { + "name": "2 Chronicles", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Solomon|strong=\"H8010\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"* was|strong=\"H3068\"* firmly|strong=\"H2388\"* established|strong=\"H2388\"* in|strong=\"H5921\"* his|strong=\"H3068\"* kingdom|strong=\"H4438\"*, and|strong=\"H1121\"* Yahweh|strong=\"H3068\"*+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* his|strong=\"H3068\"* God|strong=\"H3068\"*+ 1:1 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* was|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* made|strong=\"H2388\"* him|strong=\"H5921\"* exceedingly|strong=\"H4605\"* great|strong=\"H1431\"*." + }, + { + "verseNum": 2, + "text": "Solomon|strong=\"H8010\"* spoke to|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* thousands and|strong=\"H3967\"* of|strong=\"H8269\"* hundreds|strong=\"H3967\"*, to|strong=\"H3478\"* the|strong=\"H3605\"* judges|strong=\"H8199\"*, and|strong=\"H3967\"* to|strong=\"H3478\"* every|strong=\"H3605\"* prince|strong=\"H5387\"* in|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H8269\"* the|strong=\"H3605\"* fathers’ households." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H1961\"* Solomon|strong=\"H8010\"*, and|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* with|strong=\"H5973\"* him|strong=\"H6213\"*, went|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3605\"* high|strong=\"H1116\"* place|strong=\"H1116\"* that|strong=\"H3588\"* was|strong=\"H3068\"* at|strong=\"H3068\"* Gibeon|strong=\"H1391\"*; for|strong=\"H3588\"* God|strong=\"H3068\"*’s Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"* was|strong=\"H3068\"* there|strong=\"H8033\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s servant|strong=\"H5650\"* Moses|strong=\"H4872\"* had|strong=\"H3068\"* made|strong=\"H6213\"* in|strong=\"H3068\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3588\"* David|strong=\"H1732\"* had|strong=\"H1732\"* brought|strong=\"H5927\"* God’s ark up|strong=\"H5927\"* from|strong=\"H5927\"* Kiriath|strong=\"H7157\"* Jearim to|strong=\"H5927\"* the|strong=\"H3588\"* place|strong=\"H3559\"* that|strong=\"H3588\"* David|strong=\"H1732\"* had|strong=\"H1732\"* prepared|strong=\"H3559\"* for|strong=\"H3588\"* it|strong=\"H3588\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1732\"* pitched|strong=\"H5186\"* a|strong=\"H3068\"* tent for|strong=\"H3588\"* it|strong=\"H3588\"* at|strong=\"H1732\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 5, + "text": "Moreover the|strong=\"H6440\"* bronze|strong=\"H5178\"* altar|strong=\"H4196\"* that|strong=\"H3068\"* Bezalel|strong=\"H1212\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uri, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hur|strong=\"H2354\"*, had|strong=\"H3068\"* made|strong=\"H6213\"* was|strong=\"H3068\"* there|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s tabernacle|strong=\"H4908\"*; and|strong=\"H1121\"* Solomon|strong=\"H8010\"* and|strong=\"H1121\"* the|strong=\"H6440\"* assembly|strong=\"H6951\"* were|strong=\"H1121\"* seeking|strong=\"H1875\"* counsel there|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "Solomon|strong=\"H8010\"* went|strong=\"H5927\"* up|strong=\"H5927\"* there|strong=\"H8033\"* to|strong=\"H3068\"* the|strong=\"H6440\"* bronze|strong=\"H5178\"* altar|strong=\"H4196\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, which|strong=\"H3068\"* was|strong=\"H3068\"* at|strong=\"H5921\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, and|strong=\"H3068\"* offered|strong=\"H5927\"* one|strong=\"H3068\"* thousand burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 7, + "text": "That|strong=\"H7200\"* night|strong=\"H3915\"*, God|strong=\"H5414\"* appeared|strong=\"H7200\"* to|strong=\"H5414\"* Solomon|strong=\"H8010\"* and|strong=\"H3915\"* said to|strong=\"H5414\"* him|strong=\"H5414\"*, “Ask|strong=\"H7592\"* for|strong=\"H7592\"* what|strong=\"H4100\"* you|strong=\"H5414\"* want me|strong=\"H5414\"* to|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 8, + "text": "Solomon|strong=\"H8010\"* said to|strong=\"H6213\"* God, “You|strong=\"H6213\"* have|strong=\"H5973\"* shown|strong=\"H6213\"* great|strong=\"H1419\"* loving kindness|strong=\"H2617\"* to|strong=\"H6213\"* David|strong=\"H1732\"* my|strong=\"H1732\"* father, and|strong=\"H1419\"* have|strong=\"H5973\"* made|strong=\"H6213\"* me|strong=\"H6213\"* king|strong=\"H4427\"* in|strong=\"H6213\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 9, + "text": "Now|strong=\"H6258\"*, Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*, let|strong=\"H6258\"* your|strong=\"H3068\"* promise|strong=\"H1697\"* to|strong=\"H3068\"* David|strong=\"H1732\"* my|strong=\"H3068\"* father be|strong=\"H1697\"* established; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* made|strong=\"H4427\"* me|strong=\"H5921\"* king|strong=\"H4427\"* over|strong=\"H5921\"* a|strong=\"H3068\"* people|strong=\"H5971\"* like|strong=\"H5973\"* the|strong=\"H5921\"* dust|strong=\"H6083\"* of|strong=\"H3068\"* the|strong=\"H5921\"* earth|strong=\"H6083\"* in|strong=\"H5921\"* multitude|strong=\"H7227\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H6258\"* give|strong=\"H5414\"* me|strong=\"H5414\"* wisdom|strong=\"H2451\"* and|strong=\"H1419\"* knowledge|strong=\"H4093\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H5971\"* go|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H1419\"* come|strong=\"H3318\"* in|strong=\"H6440\"* before|strong=\"H6440\"* this|strong=\"H2088\"* people|strong=\"H5971\"*; for|strong=\"H3588\"* who|strong=\"H4310\"* can|strong=\"H4310\"* judge|strong=\"H8199\"* this|strong=\"H2088\"* great|strong=\"H1419\"* people|strong=\"H5971\"* of|strong=\"H6440\"* yours|strong=\"H5414\"*?”" + }, + { + "verseNum": 11, + "text": "God|strong=\"H3808\"* said to|strong=\"H1961\"* Solomon|strong=\"H8010\"*, “Because|strong=\"H5921\"* this|strong=\"H2063\"* was|strong=\"H1961\"* in|strong=\"H5921\"* your|strong=\"H5921\"* heart|strong=\"H3824\"*, and|strong=\"H3117\"* you|strong=\"H5921\"* have|strong=\"H1961\"* not|strong=\"H3808\"* asked|strong=\"H7592\"* riches|strong=\"H6239\"*, wealth|strong=\"H6239\"*, honor|strong=\"H3519\"*, or|strong=\"H3808\"* the|strong=\"H5921\"* life|strong=\"H5315\"* of|strong=\"H3117\"* those|strong=\"H5921\"* who|strong=\"H5971\"* hate|strong=\"H8130\"* you|strong=\"H5921\"*, nor|strong=\"H3808\"* yet|strong=\"H1571\"* have|strong=\"H1961\"* you|strong=\"H5921\"* asked|strong=\"H7592\"* for|strong=\"H5921\"* long|strong=\"H3117\"* life|strong=\"H5315\"*; but|strong=\"H3808\"* have|strong=\"H1961\"* asked|strong=\"H7592\"* for|strong=\"H5921\"* wisdom|strong=\"H2451\"* and|strong=\"H3117\"* knowledge|strong=\"H4093\"* for|strong=\"H5921\"* yourself|strong=\"H5315\"*, that|strong=\"H5971\"* you|strong=\"H5921\"* may|strong=\"H1961\"* judge|strong=\"H8199\"* my|strong=\"H5921\"* people|strong=\"H5971\"*, over|strong=\"H5921\"* whom|strong=\"H5971\"* I|strong=\"H3117\"* have|strong=\"H1961\"* made|strong=\"H4427\"* you|strong=\"H5921\"* king|strong=\"H4427\"*," + }, + { + "verseNum": 12, + "text": "therefore|strong=\"H3651\"* wisdom|strong=\"H2451\"* and|strong=\"H4428\"* knowledge|strong=\"H4093\"* is|strong=\"H3651\"* granted|strong=\"H5414\"* to|strong=\"H1961\"* you|strong=\"H5414\"*. I|strong=\"H5414\"* will|strong=\"H1961\"* give|strong=\"H5414\"* you|strong=\"H5414\"* riches|strong=\"H6239\"*, wealth|strong=\"H6239\"*, and|strong=\"H4428\"* honor|strong=\"H3519\"*, such|strong=\"H3651\"* as|strong=\"H1961\"* none|strong=\"H3808\"* of|strong=\"H4428\"* the|strong=\"H6440\"* kings|strong=\"H4428\"* have|strong=\"H1961\"* had|strong=\"H1961\"* who|strong=\"H4428\"* have|strong=\"H1961\"* been|strong=\"H1961\"* before|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H4428\"* none|strong=\"H3808\"* after|strong=\"H1961\"* you|strong=\"H5414\"* will|strong=\"H1961\"* have|strong=\"H1961\"*.”" + }, + { + "verseNum": 13, + "text": "So|strong=\"H5921\"* Solomon|strong=\"H8010\"* came|strong=\"H3478\"* from|strong=\"H6440\"* the|strong=\"H6440\"* high|strong=\"H1116\"* place|strong=\"H1116\"* that|strong=\"H3478\"* was|strong=\"H3478\"* at|strong=\"H5921\"* Gibeon|strong=\"H1391\"*, from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Tent of|strong=\"H6440\"* Meeting|strong=\"H4150\"*, to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H3478\"* he|strong=\"H3389\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 14, + "text": "Solomon|strong=\"H8010\"* gathered|strong=\"H8010\"* chariots|strong=\"H7393\"* and|strong=\"H3967\"* horsemen|strong=\"H6571\"*. He|strong=\"H8147\"* had|strong=\"H1961\"* one|strong=\"H1961\"* thousand four hundred|strong=\"H3967\"* chariots|strong=\"H7393\"* and|strong=\"H3967\"* twelve|strong=\"H8147\"* thousand horsemen|strong=\"H6571\"* that|strong=\"H4428\"* he|strong=\"H8147\"* placed|strong=\"H3240\"* in|strong=\"H4428\"* the|strong=\"H1961\"* chariot|strong=\"H7393\"* cities|strong=\"H5892\"*, and|strong=\"H3967\"* with|strong=\"H5973\"* the|strong=\"H1961\"* king|strong=\"H4428\"* at|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* made|strong=\"H5414\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* gold|strong=\"H2091\"* to|strong=\"H5414\"* be|strong=\"H5414\"* as|strong=\"H7230\"* common|strong=\"H7230\"* as|strong=\"H7230\"* stones in|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3701\"* he|strong=\"H5414\"* made|strong=\"H5414\"* cedars to|strong=\"H5414\"* be|strong=\"H5414\"* as|strong=\"H7230\"* common|strong=\"H7230\"* as|strong=\"H7230\"* the|strong=\"H5414\"* sycamore|strong=\"H8256\"* trees|strong=\"H8256\"* that|strong=\"H5414\"* are|strong=\"H4428\"* in|strong=\"H4428\"* the|strong=\"H5414\"* lowland|strong=\"H8219\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3947\"* horses|strong=\"H5483\"* which|strong=\"H5483\"* Solomon|strong=\"H8010\"* had|strong=\"H8010\"* were|strong=\"H4714\"* brought|strong=\"H3947\"* out|strong=\"H4161\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* and|strong=\"H4428\"* from|strong=\"H3947\"* Kue. The|strong=\"H3947\"* king|strong=\"H4428\"*’s merchants|strong=\"H5503\"* purchased them|strong=\"H3947\"* from|strong=\"H3947\"* Kue." + }, + { + "verseNum": 17, + "text": "They|strong=\"H3651\"* imported|strong=\"H5927\"* from|strong=\"H3318\"* Egypt|strong=\"H4714\"* then|strong=\"H3318\"* exported|strong=\"H3318\"* a|strong=\"H3068\"* chariot|strong=\"H4818\"* for|strong=\"H3027\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* pieces of|strong=\"H4428\"* silver|strong=\"H3701\"* and|strong=\"H3967\"* a|strong=\"H3068\"* horse|strong=\"H5483\"* for|strong=\"H3027\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*.+ 1:17 The pieces of silver were probably shekels, so 600 pieces would be about 13.2 pounds or 6 kilograms of silver, and 150 would be about 3.3 pounds or 1.5 kilograms of silver.* They|strong=\"H3651\"* also|strong=\"H3027\"* exported|strong=\"H3318\"* them|strong=\"H3027\"* to|strong=\"H3318\"* the|strong=\"H3605\"* Hittite|strong=\"H2850\"* kings|strong=\"H4428\"* and|strong=\"H3967\"* the|strong=\"H3605\"* Syrian+ 1:17 or, Aramean* kings|strong=\"H4428\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H5921\"* Solomon|strong=\"H8010\"* decided to|strong=\"H5921\"* build a|strong=\"H3068\"* house for|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s name, and|strong=\"H3967\"* a|strong=\"H3068\"* house for|strong=\"H5921\"* his|strong=\"H5921\"* kingdom." + }, + { + "verseNum": 2, + "text": "Solomon|strong=\"H8010\"* counted out|strong=\"H7971\"* seventy thousand men|strong=\"H6213\"* to|strong=\"H7971\"* bear|strong=\"H6213\"* burdens, eighty thousand men|strong=\"H6213\"* who|strong=\"H3427\"* were|strong=\"H1732\"* stone cutters in|strong=\"H3427\"* the|strong=\"H6213\"* mountains, and|strong=\"H7971\"* three thousand six hundred to|strong=\"H7971\"* oversee them|strong=\"H7971\"*." + }, + { + "verseNum": 3, + "text": "Solomon sent|strong=\"H3068\"* to|strong=\"H3478\"* Huram the|strong=\"H6440\"* king|strong=\"H5921\"* of|strong=\"H1004\"* Tyre, saying, “As|strong=\"H3068\"* you|strong=\"H6440\"* dealt with|strong=\"H1004\"* David my|strong=\"H3068\"* father, and|strong=\"H3478\"* sent|strong=\"H3068\"* him|strong=\"H6440\"* cedars to|strong=\"H3478\"* build|strong=\"H1129\"* him|strong=\"H6440\"* a|strong=\"H3068\"* house|strong=\"H1004\"* in|strong=\"H5921\"* which|strong=\"H3068\"* to|strong=\"H3478\"* dwell, so|strong=\"H2063\"* deal with|strong=\"H1004\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 4, + "text": "Behold,+ 2:4 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"H3588\"* am about|strong=\"H3605\"* to|strong=\"H1004\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H3588\"* the|strong=\"H3605\"* name of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* my|strong=\"H3605\"* God, to|strong=\"H1004\"* dedicate it|strong=\"H3588\"* to|strong=\"H1004\"* him|strong=\"H3605\"*, to|strong=\"H1004\"* burn before him|strong=\"H3605\"* incense of|strong=\"H1004\"* sweet spices, for|strong=\"H3588\"* the|strong=\"H3605\"* continual show bread, and|strong=\"H1419\"* for|strong=\"H3588\"* the|strong=\"H3605\"* burnt offerings|strong=\"H3588\"* morning and|strong=\"H1419\"* evening, on|strong=\"H1004\"* the|strong=\"H3605\"* Sabbaths, on|strong=\"H1004\"* the|strong=\"H3605\"* new moons, and|strong=\"H1419\"* on|strong=\"H1004\"* the|strong=\"H3605\"* set|strong=\"H1129\"* feasts of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* our|strong=\"H3605\"* God. This|strong=\"H3588\"* is|strong=\"H3605\"* an|strong=\"H1129\"* ordinance forever|strong=\"H3605\"* to|strong=\"H1004\"* Israel." + }, + { + "verseNum": 5, + "text": "“The|strong=\"H6440\"* house|strong=\"H1004\"* which|strong=\"H4310\"* I|strong=\"H3588\"* am building|strong=\"H1129\"* will|strong=\"H4310\"* be|strong=\"H3808\"* great|strong=\"H6440\"*, for|strong=\"H3588\"* our|strong=\"H3588\"* God|strong=\"H3808\"* is|strong=\"H4310\"* greater than|strong=\"H3808\"* all|strong=\"H6440\"* gods." + }, + { + "verseNum": 6, + "text": "But|strong=\"H6258\"* who|strong=\"H3063\"* is|strong=\"H3701\"* able to|strong=\"H7971\"* build|strong=\"H6213\"* him|strong=\"H7971\"* a|strong=\"H3068\"* house, since|strong=\"H6258\"* heaven and|strong=\"H3063\"* the|strong=\"H6213\"* heaven of|strong=\"H6213\"* heavens can|strong=\"H6213\"*’t contain him|strong=\"H7971\"*? Who|strong=\"H3063\"* am I|strong=\"H6258\"* then|strong=\"H6258\"*, that|strong=\"H3045\"* I|strong=\"H6258\"* should|strong=\"H6213\"* build|strong=\"H6213\"* him|strong=\"H7971\"* a|strong=\"H3068\"* house, except just|strong=\"H6213\"* to|strong=\"H7971\"* burn incense before|strong=\"H5973\"* him|strong=\"H7971\"*?" + }, + { + "verseNum": 7, + "text": "“Now|strong=\"H2009\"* therefore|strong=\"H3588\"* send|strong=\"H7971\"* me|strong=\"H7971\"* a|strong=\"H3068\"* man|strong=\"H3045\"* skillful|strong=\"H3045\"* to|strong=\"H7971\"* work in|strong=\"H5650\"* gold, in|strong=\"H5650\"* silver, in|strong=\"H5650\"* bronze, in|strong=\"H5650\"* iron, and|strong=\"H7971\"* in|strong=\"H5650\"* purple, crimson, and|strong=\"H7971\"* blue, and|strong=\"H7971\"* who|strong=\"H5650\"* knows|strong=\"H3045\"* how|strong=\"H3588\"* to|strong=\"H7971\"* engrave engravings, to|strong=\"H7971\"* be|strong=\"H6086\"* with|strong=\"H5973\"* the|strong=\"H3588\"* skillful|strong=\"H3045\"* men|strong=\"H5650\"* who|strong=\"H5650\"* are|strong=\"H5650\"* with|strong=\"H5973\"* me|strong=\"H7971\"* in|strong=\"H5650\"* Judah and|strong=\"H7971\"* in|strong=\"H5650\"* Jerusalem, whom|strong=\"H3588\"* David|strong=\"H5973\"* my|strong=\"H3045\"* father provided|strong=\"H3045\"*." + }, + { + "verseNum": 8, + "text": "“Send me|strong=\"H3559\"* also|strong=\"H3588\"* cedar trees|strong=\"H6086\"*, cypress trees|strong=\"H6086\"*, and|strong=\"H1419\"* algum trees|strong=\"H6086\"* out|strong=\"H1419\"* of|strong=\"H1004\"* Lebanon, for|strong=\"H3588\"* I|strong=\"H3588\"* know that|strong=\"H3588\"* your|strong=\"H3588\"* servants know how|strong=\"H3588\"* to|strong=\"H1004\"* cut timber|strong=\"H6086\"* in|strong=\"H1004\"* Lebanon. Behold, my|strong=\"H3588\"* servants will|strong=\"H1004\"* be|strong=\"H6086\"* with|strong=\"H1004\"* your|strong=\"H3588\"* servants," + }, + { + "verseNum": 9, + "text": "even to|strong=\"H5414\"* prepare me|strong=\"H5414\"* timber|strong=\"H6086\"* in|strong=\"H5650\"* abundance; for|strong=\"H6086\"* the|strong=\"H5414\"* house which|strong=\"H6086\"* I|strong=\"H5414\"* am about|strong=\"H2009\"* to|strong=\"H5414\"* build will|strong=\"H5650\"* be|strong=\"H5414\"* great and|strong=\"H6242\"* wonderful." + }, + { + "verseNum": 10, + "text": "Behold, I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* your|strong=\"H3068\"* servants, the|strong=\"H5921\"* cutters who|strong=\"H5971\"* cut timber, twenty thousand cors+ 2:10 1 cor is the same as a homer, or about 55.9 U. S. gallons (liquid) or 211 liters or 6 bushels, so 20,000 cors of wheat would weigh about 545 metric tons* of|strong=\"H4428\"* beaten wheat, twenty thousand baths+ 2:10 1 bath is one tenth of a cor, or about 5.6 U. S. gallons or 21 liters or 2.4 pecks. 20,000 baths of barley would weigh about 262 metric tons.* of|strong=\"H4428\"* barley, twenty thousand baths of|strong=\"H4428\"* wine, and|strong=\"H3068\"* twenty thousand baths of|strong=\"H4428\"* oil.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H5414\"* Huram|strong=\"H2361\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Tyre answered in|strong=\"H3478\"* writing|strong=\"H6213\"*, which|strong=\"H3068\"* he|strong=\"H6213\"* sent|strong=\"H5414\"* to|strong=\"H3478\"* Solomon, “Because|strong=\"H3068\"* Yahweh|strong=\"H3068\"* loves his|strong=\"H5414\"* people|strong=\"H1121\"*, he|strong=\"H6213\"* has|strong=\"H3068\"* made|strong=\"H6213\"* you|strong=\"H5414\"* king|strong=\"H4428\"* over|strong=\"H4428\"* them|strong=\"H5414\"*.”" + }, + { + "verseNum": 12, + "text": "Huram|strong=\"H2361\"* continued, “Blessed be|strong=\"H6258\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3045\"* God|strong=\"H7971\"* of|strong=\"H3045\"* Israel, who|strong=\"H3045\"* made|strong=\"H3045\"* heaven and|strong=\"H7971\"* earth, who|strong=\"H3045\"* has|strong=\"H3045\"* given to|strong=\"H7971\"* David|strong=\"H7971\"* the|strong=\"H3045\"* king a|strong=\"H3068\"* wise|strong=\"H2450\"* son|strong=\"H2450\"*, endowed|strong=\"H3045\"* with|strong=\"H3045\"* discretion and|strong=\"H7971\"* understanding, who|strong=\"H3045\"* would build a|strong=\"H3068\"* house for|strong=\"H7971\"* Yahweh|strong=\"H3068\"* and|strong=\"H7971\"* a|strong=\"H3068\"* house for|strong=\"H7971\"* his|strong=\"H7971\"* kingdom." + }, + { + "verseNum": 13, + "text": "Now|strong=\"H5414\"* I|strong=\"H5414\"* have|strong=\"H3045\"* sent|strong=\"H5414\"* a|strong=\"H3068\"* skillful|strong=\"H2803\"* man|strong=\"H2450\"*, endowed|strong=\"H3045\"* with|strong=\"H5973\"* understanding, Huram-abi,+ 2:13 or, Huram, my father*" + }, + { + "verseNum": 14, + "text": "the|strong=\"H7971\"* son of|strong=\"H5650\"* a|strong=\"H3068\"* woman of|strong=\"H5650\"* the|strong=\"H7971\"* daughters of|strong=\"H5650\"* Dan; and|strong=\"H7971\"* his|strong=\"H7971\"* father was|strong=\"H5650\"* a|strong=\"H3068\"* man of|strong=\"H5650\"* Tyre. He|strong=\"H7971\"* is|strong=\"H5650\"* skillful to|strong=\"H7971\"* work in|strong=\"H5650\"* gold, in|strong=\"H5650\"* silver, in|strong=\"H5650\"* bronze, in|strong=\"H5650\"* iron, in|strong=\"H5650\"* stone, in|strong=\"H5650\"* timber, in|strong=\"H5650\"* purple, in|strong=\"H5650\"* blue, in|strong=\"H5650\"* fine linen, and|strong=\"H7971\"* in|strong=\"H5650\"* crimson, also to|strong=\"H7971\"* engrave any kind of|strong=\"H5650\"* engraving and|strong=\"H7971\"* to|strong=\"H7971\"* devise any device, that|strong=\"H8081\"* there|strong=\"H6258\"* may|strong=\"H3196\"* be|strong=\"H5650\"* a|strong=\"H3068\"* place appointed to|strong=\"H7971\"* him|strong=\"H7971\"* with|strong=\"H7971\"* your|strong=\"H7971\"* skillful men|strong=\"H5650\"*, and|strong=\"H7971\"* with|strong=\"H7971\"* the|strong=\"H7971\"* skillful men|strong=\"H5650\"* of|strong=\"H5650\"* my|strong=\"H7971\"* lord David|strong=\"H7971\"* your|strong=\"H7971\"* father." + }, + { + "verseNum": 15, + "text": "“Now|strong=\"H5921\"* therefore|strong=\"H5921\"*, the|strong=\"H3605\"* wheat, the|strong=\"H3605\"* barley, the|strong=\"H3605\"* oil, and|strong=\"H6086\"* the|strong=\"H3605\"* wine which|strong=\"H6086\"* my|strong=\"H3605\"* lord has|strong=\"H3389\"* spoken of|strong=\"H4480\"*, let him|strong=\"H5921\"* send|strong=\"H5927\"* to|strong=\"H5927\"* his|strong=\"H3605\"* servants;" + }, + { + "verseNum": 16, + "text": "and|strong=\"H3967\"* we|strong=\"H3068\"* will|strong=\"H3478\"* cut|strong=\"H3478\"* wood out|strong=\"H4672\"* of|strong=\"H3605\"* Lebanon, as|strong=\"H3605\"* much|strong=\"H3605\"* as|strong=\"H3605\"* you|strong=\"H3605\"* need. We|strong=\"H3605\"* will|strong=\"H3478\"* bring|strong=\"H1732\"* it|strong=\"H4672\"* to|strong=\"H3478\"* you|strong=\"H3605\"* in|strong=\"H3478\"* rafts by|strong=\"H3478\"* sea to|strong=\"H3478\"* Joppa; then|strong=\"H1732\"* you|strong=\"H3605\"* shall|strong=\"H3478\"* carry it|strong=\"H4672\"* up|strong=\"H3605\"* to|strong=\"H3478\"* Jerusalem.”" + }, + { + "verseNum": 17, + "text": "Solomon counted all|strong=\"H6213\"* the|strong=\"H6213\"* foreigners who|strong=\"H5971\"* were|strong=\"H5971\"* in|strong=\"H6213\"* the|strong=\"H6213\"* land of|strong=\"H2022\"* Israel|strong=\"H5971\"*, after|strong=\"H1992\"* the|strong=\"H6213\"* census with|strong=\"H6213\"* which|strong=\"H1992\"* David his|strong=\"H6213\"* father had|strong=\"H5971\"* counted them|strong=\"H1992\"*; and|strong=\"H3967\"* they|strong=\"H1992\"* found one|strong=\"H6213\"* hundred|strong=\"H3967\"* fifty-three thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 18, + "text": "He set seventy thousand of them to bear burdens, eighty thousand who were stone cutters in the mountains, and three thousand six hundred overseers to assign the people their work." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H7200\"* Solomon|strong=\"H8010\"* began|strong=\"H2490\"* to|strong=\"H3068\"* build|strong=\"H1129\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* at|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* on|strong=\"H7200\"* Mount|strong=\"H2022\"* Moriah|strong=\"H4179\"*, where|strong=\"H4725\"* Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* David|strong=\"H1732\"* his|strong=\"H3068\"* father, which|strong=\"H3068\"* he|strong=\"H3068\"* prepared|strong=\"H3559\"* in|strong=\"H3068\"* the|strong=\"H7200\"* place|strong=\"H4725\"* that|strong=\"H7200\"* David|strong=\"H1732\"* had|strong=\"H3068\"* appointed|strong=\"H3559\"*, on|strong=\"H7200\"* the|strong=\"H7200\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* of|strong=\"H1004\"* Ornan the|strong=\"H7200\"* Jebusite|strong=\"H2983\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H8141\"* began|strong=\"H2490\"* to|strong=\"H2490\"* build|strong=\"H1129\"* in|strong=\"H8141\"* the|strong=\"H1129\"* second|strong=\"H8145\"* day|strong=\"H2320\"* of|strong=\"H8141\"* the|strong=\"H1129\"* second|strong=\"H8145\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H1129\"* fourth year|strong=\"H8141\"* of|strong=\"H8141\"* his|strong=\"H1129\"* reign|strong=\"H4438\"*." + }, + { + "verseNum": 3, + "text": "Now these|strong=\"H1004\"* are|strong=\"H1004\"* the|strong=\"H1129\"* foundations|strong=\"H3245\"* which|strong=\"H1004\"* Solomon|strong=\"H8010\"* laid|strong=\"H3245\"* for|strong=\"H1004\"* the|strong=\"H1129\"* building|strong=\"H1129\"* of|strong=\"H1004\"* God’s house|strong=\"H1004\"*: the|strong=\"H1129\"* length by|strong=\"H8010\"* cubits+ 3:3 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* after|strong=\"H1004\"* the|strong=\"H1129\"* first|strong=\"H7223\"* measure|strong=\"H4060\"* was|strong=\"H1004\"* sixty|strong=\"H8346\"* cubits, and|strong=\"H6242\"* the|strong=\"H1129\"* width|strong=\"H7341\"* twenty|strong=\"H6242\"* cubits." + }, + { + "verseNum": 4, + "text": "The|strong=\"H6440\"* porch that|strong=\"H1004\"* was|strong=\"H1004\"* in|strong=\"H5921\"* front|strong=\"H6440\"*, its|strong=\"H5921\"* length|strong=\"H5921\"*, across|strong=\"H5921\"* the|strong=\"H6440\"* width|strong=\"H7341\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"*, was|strong=\"H1004\"* twenty|strong=\"H6242\"* cubits, and|strong=\"H3967\"* the|strong=\"H6440\"* height|strong=\"H1363\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"*; and|strong=\"H3967\"* he|strong=\"H1004\"* overlaid|strong=\"H6823\"* it|strong=\"H5921\"* within|strong=\"H1004\"* with|strong=\"H1004\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H1004\"* made|strong=\"H5927\"* the|strong=\"H5921\"* larger|strong=\"H1419\"* room|strong=\"H1004\"* with|strong=\"H1004\"* a|strong=\"H3068\"* ceiling of|strong=\"H1004\"* cypress|strong=\"H1265\"* wood|strong=\"H6086\"*, which|strong=\"H1004\"* he|strong=\"H1004\"* overlaid|strong=\"H2645\"* with|strong=\"H1004\"* fine|strong=\"H2896\"* gold|strong=\"H2091\"*, and|strong=\"H1419\"* ornamented|strong=\"H5927\"* it|strong=\"H5921\"* with|strong=\"H1004\"* palm|strong=\"H8561\"* trees|strong=\"H6086\"* and|strong=\"H1419\"* chains|strong=\"H8333\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H1004\"* decorated the|strong=\"H6823\"* house|strong=\"H1004\"* with|strong=\"H1004\"* precious|strong=\"H3368\"* stones for|strong=\"H1004\"* beauty|strong=\"H8597\"*. The|strong=\"H6823\"* gold|strong=\"H2091\"* was|strong=\"H1004\"* gold|strong=\"H2091\"* from|strong=\"H2091\"* Parvaim|strong=\"H6516\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H1004\"* also|strong=\"H1817\"* overlaid|strong=\"H2645\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, the|strong=\"H5921\"* beams|strong=\"H6982\"*, the|strong=\"H5921\"* thresholds|strong=\"H5592\"*, its|strong=\"H5921\"* walls|strong=\"H7023\"*, and|strong=\"H1004\"* its|strong=\"H5921\"* doors|strong=\"H1817\"* with|strong=\"H1004\"* gold|strong=\"H2091\"*, and|strong=\"H1004\"* engraved|strong=\"H6605\"* cherubim|strong=\"H3742\"* on|strong=\"H5921\"* the|strong=\"H5921\"* walls|strong=\"H7023\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6440\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*. Its|strong=\"H5921\"* length|strong=\"H5921\"*, according|strong=\"H5921\"* to|strong=\"H6213\"* the|strong=\"H6440\"* width|strong=\"H7341\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"*, was|strong=\"H1004\"* twenty|strong=\"H6242\"* cubits, and|strong=\"H3967\"* its|strong=\"H5921\"* width|strong=\"H7341\"* twenty|strong=\"H6242\"* cubits; and|strong=\"H3967\"* he|strong=\"H6213\"* overlaid|strong=\"H2645\"* it|strong=\"H5921\"* with|strong=\"H1004\"* fine|strong=\"H2896\"* gold|strong=\"H2091\"*, amounting to|strong=\"H6213\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"*.+ 3:8 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 600 talents is about 18 metric tons*" + }, + { + "verseNum": 9, + "text": "The|strong=\"H2645\"* weight|strong=\"H4948\"* of|strong=\"H8255\"* the|strong=\"H2645\"* nails|strong=\"H4548\"* was|strong=\"H4948\"* fifty|strong=\"H2572\"* shekels|strong=\"H8255\"*+ 3:9 A shekel is about 10 grams or about 0.32 Troy ounces, so 50 shekels was about 0.5 kilograms or about 16 Troy ounces.* of|strong=\"H8255\"* gold|strong=\"H2091\"*. He overlaid|strong=\"H2645\"* the|strong=\"H2645\"* upper|strong=\"H5944\"* rooms|strong=\"H5944\"* with|strong=\"H2645\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"H6213\"* the|strong=\"H6213\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* place|strong=\"H6944\"* he|strong=\"H6213\"* made|strong=\"H6213\"* two|strong=\"H8147\"* cherubim|strong=\"H3742\"* by|strong=\"H2091\"* carving, and|strong=\"H1004\"* they|strong=\"H6213\"* overlaid|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H1004\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5060\"* wings|strong=\"H3671\"* of|strong=\"H1004\"* the|strong=\"H5060\"* cherubim|strong=\"H3742\"* were|strong=\"H3742\"* twenty|strong=\"H6242\"* cubits|strong=\"H2568\"* long: the|strong=\"H5060\"* wing|strong=\"H3671\"* of|strong=\"H1004\"* the|strong=\"H5060\"* one|strong=\"H3671\"* was|strong=\"H1004\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*, reaching|strong=\"H5060\"* to|strong=\"H1004\"* the|strong=\"H5060\"* wall|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H5060\"* house|strong=\"H1004\"*; and|strong=\"H6242\"* the|strong=\"H5060\"* other|strong=\"H3671\"* wing|strong=\"H3671\"* was|strong=\"H1004\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*, reaching|strong=\"H5060\"* to|strong=\"H1004\"* the|strong=\"H5060\"* wing|strong=\"H3671\"* of|strong=\"H1004\"* the|strong=\"H5060\"* other|strong=\"H3671\"* cherub|strong=\"H3742\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5060\"* wing|strong=\"H3671\"* of|strong=\"H1004\"* the|strong=\"H5060\"* other|strong=\"H3671\"* cherub|strong=\"H3742\"* was|strong=\"H1004\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*, reaching|strong=\"H5060\"* to|strong=\"H1004\"* the|strong=\"H5060\"* wall|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H5060\"* house|strong=\"H1004\"*; and|strong=\"H1004\"* the|strong=\"H5060\"* other|strong=\"H3671\"* wing|strong=\"H3671\"* was|strong=\"H1004\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*, joining|strong=\"H1695\"* to|strong=\"H1004\"* the|strong=\"H5060\"* wing|strong=\"H3671\"* of|strong=\"H1004\"* the|strong=\"H5060\"* other|strong=\"H3671\"* cherub|strong=\"H3742\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H6440\"* wings|strong=\"H3671\"* of|strong=\"H1004\"* these|strong=\"H1992\"* cherubim|strong=\"H3742\"* spread|strong=\"H6566\"* themselves|strong=\"H1992\"* out|strong=\"H6566\"* twenty|strong=\"H6242\"* cubits. They|strong=\"H1992\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* their|strong=\"H6440\"* feet|strong=\"H7272\"*, and|strong=\"H6242\"* their|strong=\"H6440\"* faces|strong=\"H6440\"* were|strong=\"H1992\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H5921\"* veil|strong=\"H6532\"* of|strong=\"H5921\"* blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, crimson|strong=\"H3758\"*, and|strong=\"H8504\"* fine|strong=\"H6213\"* linen, and|strong=\"H8504\"* ornamented|strong=\"H5927\"* it|strong=\"H5921\"* with|strong=\"H6213\"* cherubim|strong=\"H3742\"*." + }, + { + "verseNum": 15, + "text": "Also|strong=\"H6213\"* he|strong=\"H6213\"* made|strong=\"H6213\"* before|strong=\"H6440\"* the|strong=\"H6440\"* house|strong=\"H1004\"* two|strong=\"H8147\"* pillars|strong=\"H5982\"* thirty-five|strong=\"H7970\"* cubits|strong=\"H2568\"* high|strong=\"H7218\"*, and|strong=\"H1004\"* the|strong=\"H6440\"* capital|strong=\"H6858\"* that|strong=\"H6213\"* was|strong=\"H1004\"* on|strong=\"H5921\"* the|strong=\"H6440\"* top|strong=\"H7218\"* of|strong=\"H1004\"* each|strong=\"H8147\"* of|strong=\"H1004\"* them|strong=\"H5921\"* was|strong=\"H1004\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* chains|strong=\"H8333\"* in|strong=\"H5921\"* the|strong=\"H5921\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"*, and|strong=\"H3967\"* put|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tops|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*; and|strong=\"H3967\"* he|strong=\"H6213\"* made|strong=\"H6213\"* one|strong=\"H6213\"* hundred|strong=\"H3967\"* pomegranates|strong=\"H7416\"*, and|strong=\"H3967\"* put|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* chains|strong=\"H8333\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H5921\"* set|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H6440\"* pillars|strong=\"H5982\"* before|strong=\"H6440\"* the|strong=\"H6440\"* temple|strong=\"H1964\"*, one|strong=\"H3225\"* on|strong=\"H5921\"* the|strong=\"H6440\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H6965\"* the|strong=\"H6440\"* other|strong=\"H7121\"* on|strong=\"H5921\"* the|strong=\"H6440\"* left|strong=\"H8040\"*; and|strong=\"H6965\"* called|strong=\"H7121\"* the|strong=\"H6440\"* name|strong=\"H8034\"* of|strong=\"H6440\"* that|strong=\"H7121\"* on|strong=\"H5921\"* the|strong=\"H6440\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* Jachin|strong=\"H3199\"*, and|strong=\"H6965\"* the|strong=\"H6440\"* name|strong=\"H8034\"* of|strong=\"H6440\"* that|strong=\"H7121\"* on|strong=\"H5921\"* the|strong=\"H6440\"* left|strong=\"H8040\"* Boaz|strong=\"H1162\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6213\"* he|strong=\"H6213\"* made|strong=\"H6213\"* an|strong=\"H6213\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* bronze|strong=\"H5178\"*, twenty|strong=\"H6242\"* cubits+ 4:1 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* long, twenty|strong=\"H6242\"* cubits wide|strong=\"H7341\"*, and|strong=\"H6242\"* ten|strong=\"H6235\"* cubits high|strong=\"H6967\"*." + }, + { + "verseNum": 2, + "text": "Also|strong=\"H6213\"* he|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* molten|strong=\"H3332\"* sea|strong=\"H3220\"*+ 4:2 or, pool, or, reservoir* of|strong=\"H8193\"* ten|strong=\"H6235\"* cubits|strong=\"H2568\"* from|strong=\"H5437\"* brim|strong=\"H8193\"* to|strong=\"H6213\"* brim|strong=\"H8193\"*. It|strong=\"H6213\"* was|strong=\"H6967\"* round|strong=\"H5439\"*, five|strong=\"H2568\"* cubits|strong=\"H2568\"* high|strong=\"H6967\"*, and|strong=\"H7970\"* thirty|strong=\"H7970\"* cubits|strong=\"H2568\"* in|strong=\"H6213\"* circumference|strong=\"H5437\"*." + }, + { + "verseNum": 3, + "text": "Under|strong=\"H8478\"* it|strong=\"H5439\"* was|strong=\"H3220\"* the|strong=\"H8478\"* likeness|strong=\"H1823\"* of|strong=\"H8478\"* oxen|strong=\"H1241\"*, which|strong=\"H1823\"* encircled|strong=\"H5437\"* it|strong=\"H5439\"*, for|strong=\"H8478\"* ten|strong=\"H6235\"* cubits, encircling|strong=\"H5437\"* the|strong=\"H8478\"* sea|strong=\"H3220\"*. The|strong=\"H8478\"* oxen|strong=\"H1241\"* were|strong=\"H1241\"* in|strong=\"H3220\"* two|strong=\"H8147\"* rows|strong=\"H2905\"*, cast|strong=\"H3332\"* when it|strong=\"H5439\"* was|strong=\"H3220\"* cast|strong=\"H3332\"*." + }, + { + "verseNum": 4, + "text": "It|strong=\"H5921\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* twelve|strong=\"H8147\"* oxen|strong=\"H1241\"*, three|strong=\"H7969\"* looking|strong=\"H6437\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* north|strong=\"H6828\"*, three|strong=\"H7969\"* looking|strong=\"H6437\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* west|strong=\"H3220\"*, three|strong=\"H7969\"* looking|strong=\"H6437\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* south|strong=\"H5045\"*, and|strong=\"H1004\"* three|strong=\"H7969\"* looking|strong=\"H6437\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* east|strong=\"H4217\"*; and|strong=\"H1004\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* was|strong=\"H1004\"* set|strong=\"H5975\"* on|strong=\"H5921\"* them|strong=\"H5921\"* above|strong=\"H4605\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* their|strong=\"H3605\"* hindquarters were|strong=\"H1241\"* inward|strong=\"H1004\"*." + }, + { + "verseNum": 5, + "text": "It|strong=\"H2388\"* was|strong=\"H8193\"* a|strong=\"H3068\"* handbreadth|strong=\"H2947\"* thick|strong=\"H5672\"*. Its brim|strong=\"H8193\"* was|strong=\"H8193\"* made|strong=\"H2388\"* like|strong=\"H7799\"* the|strong=\"H2388\"* brim|strong=\"H8193\"* of|strong=\"H4639\"* a|strong=\"H3068\"* cup|strong=\"H3563\"*, like|strong=\"H7799\"* the|strong=\"H2388\"* flower|strong=\"H6525\"* of|strong=\"H4639\"* a|strong=\"H3068\"* lily|strong=\"H7799\"*. It|strong=\"H2388\"* received|strong=\"H2388\"* and|strong=\"H2388\"* held|strong=\"H2388\"* three|strong=\"H7969\"* thousand baths|strong=\"H1324\"*.+ 4:5 A bath is about 5.6 U. S. gallons or 21.1 liters, so 3,000 baths is about 16,800 gallons or 63.3 kiloliters.*" + }, + { + "verseNum": 6, + "text": "He|strong=\"H6213\"* also|strong=\"H6213\"* made|strong=\"H6213\"* ten|strong=\"H6235\"* basins|strong=\"H3595\"*, and|strong=\"H3548\"* put|strong=\"H5414\"* five|strong=\"H2568\"* on|strong=\"H6213\"* the|strong=\"H5414\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H3548\"* five|strong=\"H2568\"* on|strong=\"H6213\"* the|strong=\"H5414\"* left|strong=\"H8040\"*, to|strong=\"H6213\"* wash|strong=\"H7364\"* in|strong=\"H6213\"* them|strong=\"H5414\"*. The|strong=\"H5414\"* things|strong=\"H4639\"* that|strong=\"H5414\"* belonged to|strong=\"H6213\"* the|strong=\"H5414\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* were|strong=\"H5414\"* washed|strong=\"H7364\"* in|strong=\"H6213\"* them|strong=\"H5414\"*, but|strong=\"H3225\"* the|strong=\"H5414\"* sea|strong=\"H3220\"* was|strong=\"H5414\"* for|strong=\"H6213\"* the|strong=\"H5414\"* priests|strong=\"H3548\"* to|strong=\"H6213\"* wash|strong=\"H7364\"* in|strong=\"H6213\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H5414\"* ten|strong=\"H6235\"* lamp stands of|strong=\"H4941\"* gold|strong=\"H2091\"* according|strong=\"H4941\"* to|strong=\"H6213\"* the|strong=\"H5414\"* ordinance|strong=\"H4941\"* concerning them|strong=\"H5414\"*; and|strong=\"H4941\"* he|strong=\"H6213\"* set|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H6213\"* the|strong=\"H5414\"* temple|strong=\"H1964\"*, five|strong=\"H2568\"* on|strong=\"H2091\"* the|strong=\"H5414\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H4941\"* five|strong=\"H2568\"* on|strong=\"H2091\"* the|strong=\"H5414\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* also|strong=\"H6213\"* ten|strong=\"H6235\"* tables|strong=\"H7979\"*, and|strong=\"H3967\"* placed|strong=\"H3240\"* them|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H6213\"* temple|strong=\"H1964\"*, five|strong=\"H2568\"* on|strong=\"H2091\"* the|strong=\"H6213\"* right|strong=\"H3225\"* side|strong=\"H3225\"* and|strong=\"H3967\"* five|strong=\"H2568\"* on|strong=\"H2091\"* the|strong=\"H6213\"* left|strong=\"H8040\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* one|strong=\"H6213\"* hundred|strong=\"H3967\"* basins|strong=\"H4219\"* of|strong=\"H4219\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 9, + "text": "Furthermore he|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* court|strong=\"H2691\"* of|strong=\"H3548\"* the|strong=\"H6213\"* priests|strong=\"H3548\"*, the|strong=\"H6213\"* great|strong=\"H1419\"* court|strong=\"H2691\"*, and|strong=\"H1419\"* doors|strong=\"H1817\"* for|strong=\"H6213\"* the|strong=\"H6213\"* court|strong=\"H2691\"*, and|strong=\"H1419\"* overlaid|strong=\"H6823\"* their|strong=\"H6213\"* doors|strong=\"H1817\"* with|strong=\"H6213\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H5414\"* set|strong=\"H5414\"* the|strong=\"H5414\"* sea|strong=\"H3220\"* on|strong=\"H3220\"* the|strong=\"H5414\"* right|strong=\"H3233\"* side|strong=\"H3802\"* of|strong=\"H5045\"* the|strong=\"H5414\"* house eastward|strong=\"H6924\"*, toward|strong=\"H4136\"* the|strong=\"H5414\"* south|strong=\"H5045\"*." + }, + { + "verseNum": 11, + "text": "Huram|strong=\"H2361\"* made|strong=\"H6213\"* the|strong=\"H6213\"* pots|strong=\"H5518\"*, the|strong=\"H6213\"* shovels|strong=\"H3257\"*, and|strong=\"H4428\"* the|strong=\"H6213\"* basins|strong=\"H4219\"*." + }, + { + "verseNum": 12, + "text": "the|strong=\"H5921\"* two|strong=\"H8147\"* pillars|strong=\"H5982\"*, the|strong=\"H5921\"* bowls|strong=\"H1543\"*, the|strong=\"H5921\"* two|strong=\"H8147\"* capitals|strong=\"H3805\"* which|strong=\"H3805\"* were|strong=\"H7218\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*, the|strong=\"H5921\"* two|strong=\"H8147\"* networks|strong=\"H7639\"* to|strong=\"H5921\"* cover|strong=\"H3680\"* the|strong=\"H5921\"* two|strong=\"H8147\"* bowls|strong=\"H1543\"* of|strong=\"H7218\"* the|strong=\"H5921\"* capitals|strong=\"H3805\"* that|strong=\"H3805\"* were|strong=\"H7218\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*," + }, + { + "verseNum": 13, + "text": "and|strong=\"H3967\"* the|strong=\"H6440\"* four hundred|strong=\"H3967\"* pomegranates|strong=\"H7416\"* for|strong=\"H5921\"* the|strong=\"H6440\"* two|strong=\"H8147\"* networks|strong=\"H7639\"*—two|strong=\"H8147\"* rows|strong=\"H2905\"* of|strong=\"H6440\"* pomegranates|strong=\"H7416\"* for|strong=\"H5921\"* each|strong=\"H8147\"* network|strong=\"H7639\"*, to|strong=\"H5921\"* cover|strong=\"H3680\"* the|strong=\"H6440\"* two|strong=\"H8147\"* bowls|strong=\"H1543\"* of|strong=\"H6440\"* the|strong=\"H6440\"* capitals|strong=\"H3805\"* that|strong=\"H3805\"* were|strong=\"H8147\"* on|strong=\"H5921\"* the|strong=\"H6440\"* pillars|strong=\"H5982\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H6213\"* also|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H5921\"* bases|strong=\"H4350\"*, and|strong=\"H6213\"* he|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H5921\"* basins|strong=\"H3595\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bases|strong=\"H4350\"*—" + }, + { + "verseNum": 15, + "text": "one|strong=\"H8147\"* sea|strong=\"H3220\"*, and|strong=\"H1241\"* the|strong=\"H8478\"* twelve|strong=\"H8147\"* oxen|strong=\"H1241\"* under|strong=\"H8478\"* it|strong=\"H8478\"*." + }, + { + "verseNum": 16, + "text": "Huram-abi|strong=\"H2361\"*+ 4:16 “abi” means “his father”* also|strong=\"H3068\"* made|strong=\"H6213\"* the|strong=\"H3605\"* pots|strong=\"H5518\"*, the|strong=\"H3605\"* shovels|strong=\"H3257\"*, the|strong=\"H3605\"* forks|strong=\"H4207\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"* for|strong=\"H6213\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*, for|strong=\"H6213\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, of|strong=\"H4428\"* bright|strong=\"H4838\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3332\"* king|strong=\"H4428\"* cast|strong=\"H3332\"* them in|strong=\"H4428\"* the|strong=\"H3332\"* plain|strong=\"H3603\"* of|strong=\"H4428\"* the|strong=\"H3332\"* Jordan|strong=\"H3383\"*, in|strong=\"H4428\"* the|strong=\"H3332\"* clay|strong=\"H5645\"* ground between Succoth|strong=\"H5523\"* and|strong=\"H4428\"* Zeredah|strong=\"H6868\"*." + }, + { + "verseNum": 18, + "text": "Thus|strong=\"H3808\"* Solomon|strong=\"H8010\"* made|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* vessels|strong=\"H3627\"* in|strong=\"H6213\"* great|strong=\"H3966\"* abundance|strong=\"H7230\"*, so|strong=\"H6213\"* that|strong=\"H3588\"* the|strong=\"H3605\"* weight|strong=\"H4948\"* of|strong=\"H3627\"* the|strong=\"H3605\"* bronze|strong=\"H5178\"* could not|strong=\"H3808\"* be|strong=\"H3808\"* determined." + }, + { + "verseNum": 19, + "text": "Solomon|strong=\"H8010\"* made|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* that|strong=\"H3605\"* were|strong=\"H3627\"* in|strong=\"H5921\"* God’s house|strong=\"H1004\"*: the|strong=\"H3605\"* golden|strong=\"H2091\"* altar|strong=\"H4196\"*, the|strong=\"H3605\"* tables|strong=\"H7979\"* with|strong=\"H1004\"* the|strong=\"H3605\"* show|strong=\"H6213\"* bread|strong=\"H3899\"* on|strong=\"H5921\"* them|strong=\"H5921\"*," + }, + { + "verseNum": 20, + "text": "and|strong=\"H4941\"* the|strong=\"H6440\"* lamp|strong=\"H5216\"* stands with|strong=\"H6440\"* their|strong=\"H6440\"* lamps|strong=\"H5216\"* to|strong=\"H6440\"* burn|strong=\"H1197\"* according|strong=\"H4941\"* to|strong=\"H6440\"* the|strong=\"H6440\"* ordinance|strong=\"H4941\"* before|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"*, of|strong=\"H6440\"* pure|strong=\"H5462\"* gold|strong=\"H2091\"*;" + }, + { + "verseNum": 21, + "text": "and|strong=\"H2091\"* the|strong=\"H1931\"* flowers|strong=\"H6525\"*, the|strong=\"H1931\"* lamps|strong=\"H5216\"*, and|strong=\"H2091\"* the|strong=\"H1931\"* tongs|strong=\"H4457\"* of|strong=\"H2091\"* gold|strong=\"H2091\"* that|strong=\"H1931\"* was|strong=\"H1931\"* purest|strong=\"H4357\"* gold|strong=\"H2091\"*;" + }, + { + "verseNum": 22, + "text": "and|strong=\"H1004\"* the|strong=\"H5462\"* snuffers|strong=\"H4212\"*, the|strong=\"H5462\"* basins|strong=\"H4219\"*, the|strong=\"H5462\"* spoons|strong=\"H3709\"*, and|strong=\"H1004\"* the|strong=\"H5462\"* fire pans|strong=\"H3709\"* of|strong=\"H1004\"* pure|strong=\"H5462\"* gold|strong=\"H2091\"*. As|strong=\"H1004\"* for|strong=\"H1004\"* the|strong=\"H5462\"* entry|strong=\"H6607\"* of|strong=\"H1004\"* the|strong=\"H5462\"* house|strong=\"H1004\"*, its inner|strong=\"H6442\"* doors|strong=\"H1817\"* for|strong=\"H1004\"* the|strong=\"H5462\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* place|strong=\"H6944\"* and|strong=\"H1004\"* the|strong=\"H5462\"* doors|strong=\"H1817\"* of|strong=\"H1004\"* the|strong=\"H5462\"* main hall|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5462\"* temple|strong=\"H1004\"* were|strong=\"H3709\"* of|strong=\"H1004\"* gold|strong=\"H2091\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Thus all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"* that|strong=\"H3605\"* Solomon|strong=\"H8010\"* did|strong=\"H6213\"* for|strong=\"H6213\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* was|strong=\"H3068\"* finished|strong=\"H7999\"*. Solomon|strong=\"H8010\"* brought|strong=\"H5414\"* in|strong=\"H3068\"* the|strong=\"H3605\"* things|strong=\"H6944\"* that|strong=\"H3605\"* David|strong=\"H1732\"* his|strong=\"H3605\"* father had|strong=\"H3068\"* dedicated|strong=\"H6944\"*, even|strong=\"H6213\"* the|strong=\"H3605\"* silver|strong=\"H3701\"*, the|strong=\"H3605\"* gold|strong=\"H2091\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"*, and|strong=\"H3068\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H3068\"* the|strong=\"H3605\"* treasuries of|strong=\"H1004\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H5927\"* Solomon|strong=\"H8010\"* assembled|strong=\"H6950\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3605\"* tribes|strong=\"H4294\"*, the|strong=\"H3605\"* princes|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3605\"* fathers’ households of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, to|strong=\"H3478\"* bring|strong=\"H5927\"* up|strong=\"H5927\"* the|strong=\"H3605\"* ark of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* out|strong=\"H3605\"* of|strong=\"H1121\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, which|strong=\"H1931\"* is|strong=\"H3068\"* Zion|strong=\"H6726\"*." + }, + { + "verseNum": 3, + "text": "So|strong=\"H1931\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* assembled|strong=\"H6950\"* themselves|strong=\"H6950\"* to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* at|strong=\"H3478\"* the|strong=\"H3605\"* feast|strong=\"H2282\"*, which|strong=\"H1931\"* was|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 4, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H2205\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"*. The|strong=\"H3605\"* Levites|strong=\"H3881\"* took|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H3605\"* ark." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3605\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* the|strong=\"H3605\"* ark, the|strong=\"H3605\"* Tent of|strong=\"H3627\"* Meeting|strong=\"H4150\"*, and|strong=\"H3548\"* all|strong=\"H3605\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* vessels|strong=\"H3627\"* that|strong=\"H3605\"* were|strong=\"H3881\"* in|strong=\"H5927\"* the|strong=\"H3605\"* Tent. The|strong=\"H3605\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"* brought|strong=\"H5927\"* these|strong=\"H3605\"* up|strong=\"H5927\"*." + }, + { + "verseNum": 6, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* who|strong=\"H3605\"* were|strong=\"H3478\"* assembled|strong=\"H3259\"* to|strong=\"H3478\"* him|strong=\"H6440\"* were|strong=\"H3478\"* before|strong=\"H6440\"* the|strong=\"H3605\"* ark, sacrificing|strong=\"H2076\"* sheep|strong=\"H6629\"* and|strong=\"H3478\"* cattle|strong=\"H1241\"* that|strong=\"H3605\"* could not|strong=\"H3808\"* be|strong=\"H3808\"* counted|strong=\"H5608\"* or|strong=\"H3808\"* numbered|strong=\"H5608\"* for|strong=\"H5921\"* multitude|strong=\"H7230\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3068\"* priests|strong=\"H3548\"* brought|strong=\"H3548\"* in|strong=\"H3068\"* the|strong=\"H3068\"* ark of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* to|strong=\"H3068\"* its|strong=\"H8478\"* place|strong=\"H4725\"*, into the|strong=\"H3068\"* inner|strong=\"H1687\"* sanctuary|strong=\"H6944\"* of|strong=\"H1004\"* the|strong=\"H3068\"* house|strong=\"H1004\"*, to|strong=\"H3068\"* the|strong=\"H3068\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* place|strong=\"H4725\"*, even|strong=\"H3068\"* under|strong=\"H8478\"* the|strong=\"H3068\"* wings|strong=\"H3671\"* of|strong=\"H1004\"* the|strong=\"H3068\"* cherubim|strong=\"H3742\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H5921\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* their|strong=\"H5921\"* wings|strong=\"H3671\"* over|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* of|strong=\"H5921\"* the|strong=\"H5921\"* ark, and|strong=\"H4725\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* covered|strong=\"H3680\"* the|strong=\"H5921\"* ark and|strong=\"H4725\"* its|strong=\"H5921\"* poles above|strong=\"H4605\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H6440\"* poles were|strong=\"H1961\"* so|strong=\"H4480\"* long|strong=\"H5704\"* that|strong=\"H7200\"* the|strong=\"H6440\"* ends|strong=\"H7218\"* of|strong=\"H3117\"* the|strong=\"H6440\"* poles were|strong=\"H1961\"* seen|strong=\"H7200\"* from|strong=\"H4480\"* the|strong=\"H6440\"* ark in|strong=\"H5921\"* front|strong=\"H6440\"* of|strong=\"H3117\"* the|strong=\"H6440\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"*, but|strong=\"H3808\"* they|strong=\"H3117\"* were|strong=\"H1961\"* not|strong=\"H3808\"* seen|strong=\"H7200\"* outside|strong=\"H2351\"*; and|strong=\"H3117\"* it|strong=\"H5921\"* is|strong=\"H2088\"* there|strong=\"H8033\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 10, + "text": "There|strong=\"H3068\"* was|strong=\"H3068\"* nothing in|strong=\"H3478\"* the|strong=\"H5414\"* ark except|strong=\"H7535\"* the|strong=\"H5414\"* two|strong=\"H8147\"* tablets|strong=\"H3871\"* which|strong=\"H3068\"* Moses|strong=\"H4872\"* put|strong=\"H5414\"* there|strong=\"H3068\"* at|strong=\"H3478\"* Horeb|strong=\"H2722\"*, when|strong=\"H3318\"* Yahweh|strong=\"H3068\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant with|strong=\"H5973\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, when|strong=\"H3318\"* they|strong=\"H3068\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H3588\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* had|strong=\"H1961\"* come|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H4480\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* place|strong=\"H6944\"* (for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* who|strong=\"H3605\"* were|strong=\"H1961\"* present|strong=\"H4672\"* had|strong=\"H1961\"* sanctified|strong=\"H6942\"* themselves|strong=\"H6942\"*, and|strong=\"H3548\"* didn’t keep|strong=\"H8104\"* their|strong=\"H3605\"* divisions|strong=\"H4256\"*;" + }, + { + "verseNum": 12, + "text": "also|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* who|strong=\"H3605\"* were|strong=\"H1121\"* the|strong=\"H3605\"* singers|strong=\"H7891\"*, all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H5975\"*, even Asaph, Heman|strong=\"H1968\"*, Jeduthun|strong=\"H3038\"*, and|strong=\"H3967\"* their|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* their|strong=\"H3605\"* brothers|strong=\"H1121\"*, arrayed|strong=\"H3847\"* in|strong=\"H3847\"* fine linen, with|strong=\"H5973\"* cymbals|strong=\"H4700\"* and|strong=\"H3967\"* stringed instruments and|strong=\"H3967\"* harps|strong=\"H3658\"*, stood|strong=\"H5975\"* at|strong=\"H5975\"* the|strong=\"H3605\"* east|strong=\"H4217\"* end|strong=\"H4217\"* of|strong=\"H1121\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, and|strong=\"H3967\"* with|strong=\"H5973\"* them|strong=\"H5975\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* priests|strong=\"H3548\"* sounding|strong=\"H2690\"* with|strong=\"H5973\"* trumpets|strong=\"H2689\"*);" + }, + { + "verseNum": 13, + "text": "when|strong=\"H3588\"* the|strong=\"H8085\"* trumpeters|strong=\"H2689\"* and|strong=\"H3068\"* singers|strong=\"H7891\"* were|strong=\"H1961\"* as|strong=\"H1961\"* one|strong=\"H2896\"*, to|strong=\"H3068\"* make|strong=\"H8085\"* one|strong=\"H2896\"* sound|strong=\"H6963\"* to|strong=\"H3068\"* be|strong=\"H1961\"* heard|strong=\"H8085\"* in|strong=\"H3068\"* praising|strong=\"H1984\"* and|strong=\"H3068\"* thanking|strong=\"H3034\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* when|strong=\"H3588\"* they|strong=\"H3588\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* their|strong=\"H3068\"* voice|strong=\"H6963\"* with|strong=\"H4390\"* the|strong=\"H8085\"* trumpets|strong=\"H2689\"* and|strong=\"H3068\"* cymbals|strong=\"H4700\"* and|strong=\"H3068\"* instruments|strong=\"H3627\"* of|strong=\"H1004\"* music|strong=\"H7892\"*, and|strong=\"H3068\"* praised|strong=\"H1984\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H6963\"*," + }, + { + "verseNum": 14, + "text": "so|strong=\"H3808\"* that|strong=\"H3588\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* could|strong=\"H3201\"* not|strong=\"H3808\"* stand|strong=\"H5975\"* to|strong=\"H3201\"* minister|strong=\"H8334\"* by|strong=\"H3068\"* reason|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* cloud|strong=\"H6051\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* filled|strong=\"H4390\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3068\"* Solomon|strong=\"H8010\"* said, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* said that|strong=\"H3068\"* he|strong=\"H3068\"* would|strong=\"H3068\"* dwell|strong=\"H7931\"* in|strong=\"H3068\"* the|strong=\"H3068\"* thick|strong=\"H6205\"* darkness|strong=\"H6205\"*." + }, + { + "verseNum": 2, + "text": "But I|strong=\"H1004\"* have|strong=\"H1129\"* built|strong=\"H1129\"* you|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* and|strong=\"H1004\"* home|strong=\"H1004\"*, a|strong=\"H3068\"* place|strong=\"H4349\"* for|strong=\"H3427\"* you|strong=\"H1129\"* to|strong=\"H1004\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* forever|strong=\"H5769\"*.”" + }, + { + "verseNum": 3, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* turned|strong=\"H5437\"* his|strong=\"H3605\"* face|strong=\"H6440\"*, and|strong=\"H3478\"* blessed|strong=\"H1288\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* stood|strong=\"H5975\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3068\"* said|strong=\"H1696\"*, “Blessed|strong=\"H1288\"* be|strong=\"H3027\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, who|strong=\"H3068\"* spoke|strong=\"H1696\"* with|strong=\"H4390\"* his|strong=\"H3068\"* mouth|strong=\"H6310\"* to|strong=\"H1696\"* David|strong=\"H1732\"* my|strong=\"H3068\"* father, and|strong=\"H3478\"* has|strong=\"H3068\"* with|strong=\"H4390\"* his|strong=\"H3068\"* hands|strong=\"H3027\"* fulfilled|strong=\"H4390\"* it|strong=\"H1696\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 5, + "text": "‘Since|strong=\"H4480\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H5971\"* I|strong=\"H3117\"* brought|strong=\"H3318\"* my|strong=\"H3605\"* people|strong=\"H5971\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3605\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, I|strong=\"H3117\"* chose no|strong=\"H3808\"* city|strong=\"H5892\"* out|strong=\"H3318\"* of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* to|strong=\"H3318\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* in|strong=\"H5921\"*, that|strong=\"H5971\"* my|strong=\"H3605\"* name|strong=\"H8034\"* might|strong=\"H3478\"* be|strong=\"H1961\"* there|strong=\"H8033\"*, and|strong=\"H3478\"* I|strong=\"H3117\"* chose no|strong=\"H3808\"* man|strong=\"H3605\"* to|strong=\"H3318\"* be|strong=\"H1961\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* my|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*;" + }, + { + "verseNum": 6, + "text": "but|strong=\"H1961\"* now|strong=\"H1961\"* I|strong=\"H5921\"* have|strong=\"H1961\"* chosen Jerusalem|strong=\"H3389\"*, that|strong=\"H5971\"* my|strong=\"H1732\"* name|strong=\"H8034\"* might|strong=\"H3478\"* be|strong=\"H1961\"* there|strong=\"H8033\"*; and|strong=\"H3478\"* I|strong=\"H5921\"* have|strong=\"H1961\"* chosen David|strong=\"H1732\"* to|strong=\"H3478\"* be|strong=\"H1961\"* over|strong=\"H5921\"* my|strong=\"H1732\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*.’" + }, + { + "verseNum": 7, + "text": "Now|strong=\"H1961\"* it|strong=\"H8034\"* was|strong=\"H3068\"* in|strong=\"H3478\"* the|strong=\"H3068\"* heart|strong=\"H3824\"* of|strong=\"H1004\"* David|strong=\"H1732\"* my|strong=\"H3068\"* father to|strong=\"H3478\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H8034\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H3588\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* David|strong=\"H1732\"* my|strong=\"H3068\"* father, ‘Whereas|strong=\"H3282\"* it|strong=\"H3588\"* was|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* to|strong=\"H3068\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H3588\"* my|strong=\"H3068\"* name|strong=\"H8034\"*, you|strong=\"H3588\"* did|strong=\"H3068\"* well|strong=\"H2895\"* that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*;" + }, + { + "verseNum": 9, + "text": "nevertheless|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* build|strong=\"H1129\"* the|strong=\"H3588\"* house|strong=\"H1004\"*, but|strong=\"H3588\"* your|strong=\"H3588\"* son|strong=\"H1121\"* who|strong=\"H1931\"* will|strong=\"H1121\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* your|strong=\"H3588\"* body, he|strong=\"H1931\"* shall|strong=\"H1121\"* build|strong=\"H1129\"* the|strong=\"H3588\"* house|strong=\"H1004\"* for|strong=\"H3588\"* my|strong=\"H3318\"* name|strong=\"H8034\"*.’" + }, + { + "verseNum": 10, + "text": "“Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* performed|strong=\"H6965\"* his|strong=\"H3068\"* word|strong=\"H1697\"* that|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"*; for|strong=\"H5921\"* I|strong=\"H5921\"* have|strong=\"H3068\"* risen|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H3427\"* the|strong=\"H5921\"* place|strong=\"H8478\"* of|strong=\"H1004\"* David|strong=\"H1732\"* my|strong=\"H3068\"* father, and|strong=\"H6965\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, as|strong=\"H1697\"* Yahweh|strong=\"H3068\"* promised|strong=\"H1696\"*, and|strong=\"H6965\"* have|strong=\"H3068\"* built|strong=\"H1129\"* the|strong=\"H5921\"* house|strong=\"H1004\"* for|strong=\"H5921\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 11, + "text": "There|strong=\"H8033\"* I|strong=\"H7760\"* have|strong=\"H3068\"* set|strong=\"H7760\"* the|strong=\"H3068\"* ark, in|strong=\"H3478\"* which|strong=\"H3068\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, which|strong=\"H3068\"* he|strong=\"H8033\"* made|strong=\"H3772\"* with|strong=\"H5973\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 12, + "text": "He|strong=\"H3068\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"* in|strong=\"H3478\"* the|strong=\"H3605\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* his|strong=\"H3605\"* hands|strong=\"H3709\"*" + }, + { + "verseNum": 13, + "text": "(for|strong=\"H3588\"* Solomon|strong=\"H8010\"* had|strong=\"H3478\"* made|strong=\"H6213\"* a|strong=\"H3068\"* bronze|strong=\"H5178\"* platform|strong=\"H3595\"*, five|strong=\"H2568\"* cubits|strong=\"H2568\"*+ 6:13 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* long|strong=\"H3605\"*, five|strong=\"H2568\"* cubits|strong=\"H2568\"* wide|strong=\"H7341\"*, and|strong=\"H3478\"* three|strong=\"H7969\"* cubits|strong=\"H2568\"* high|strong=\"H6967\"*, and|strong=\"H3478\"* had|strong=\"H3478\"* set|strong=\"H5414\"* it|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H3605\"* court|strong=\"H5835\"*; and|strong=\"H3478\"* he|strong=\"H3588\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H3478\"* knelt|strong=\"H1288\"* down|strong=\"H1288\"* on|strong=\"H5921\"* his|strong=\"H3605\"* knees|strong=\"H1290\"* before|strong=\"H5048\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H8432\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* his|strong=\"H3605\"* hands|strong=\"H3709\"* toward|strong=\"H5921\"* heaven|strong=\"H8064\"*)." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H1980\"* he|strong=\"H3068\"* said, “Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, there|strong=\"H3605\"* is|strong=\"H3068\"* no|strong=\"H3605\"* God|strong=\"H3068\"* like|strong=\"H3644\"* you|strong=\"H6440\"* in|strong=\"H1980\"* heaven|strong=\"H8064\"* or|strong=\"H3068\"* on|strong=\"H1980\"* earth|strong=\"H8064\"*—you|strong=\"H6440\"* who|strong=\"H3605\"* keep|strong=\"H8104\"* covenant|strong=\"H1285\"* and|strong=\"H1980\"* loving kindness|strong=\"H2617\"* with|strong=\"H1980\"* your|strong=\"H3068\"* servants|strong=\"H5650\"* who|strong=\"H3605\"* walk|strong=\"H1980\"* before|strong=\"H6440\"* you|strong=\"H6440\"* with|strong=\"H1980\"* all|strong=\"H3605\"* their|strong=\"H3605\"* heart|strong=\"H3820\"*;" + }, + { + "verseNum": 15, + "text": "who|strong=\"H5650\"* have|strong=\"H5650\"* kept|strong=\"H8104\"* with|strong=\"H4390\"* your|strong=\"H8104\"* servant|strong=\"H5650\"* David|strong=\"H1732\"* my|strong=\"H8104\"* father that|strong=\"H3117\"* which|strong=\"H2088\"* you|strong=\"H3117\"* promised|strong=\"H1696\"* him|strong=\"H3027\"*. Yes, you|strong=\"H3117\"* spoke|strong=\"H1696\"* with|strong=\"H4390\"* your|strong=\"H8104\"* mouth|strong=\"H6310\"*, and|strong=\"H3117\"* have|strong=\"H5650\"* fulfilled|strong=\"H4390\"* it|strong=\"H1696\"* with|strong=\"H4390\"* your|strong=\"H8104\"* hand|strong=\"H3027\"*, as|strong=\"H3117\"* it|strong=\"H1696\"* is|strong=\"H2088\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 16, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, keep|strong=\"H8104\"* with|strong=\"H1980\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* David|strong=\"H1732\"* my|strong=\"H8104\"* father|strong=\"H1121\"* that|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H6440\"* have|strong=\"H3068\"* promised|strong=\"H1696\"* him|strong=\"H6440\"*, saying|strong=\"H1696\"*, ‘There|strong=\"H3427\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* fail|strong=\"H3772\"* you|strong=\"H6440\"* a|strong=\"H3068\"* man|strong=\"H1121\"* in|strong=\"H3427\"* my|strong=\"H8104\"* sight|strong=\"H6440\"* to|strong=\"H1696\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H6440\"* throne|strong=\"H3678\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, if|strong=\"H1121\"* only|strong=\"H7535\"* your|strong=\"H3068\"* children|strong=\"H1121\"* take|strong=\"H8104\"* heed|strong=\"H8104\"* to|strong=\"H1696\"* their|strong=\"H3068\"* way|strong=\"H1870\"*, to|strong=\"H1696\"* walk|strong=\"H1980\"* in|strong=\"H3427\"* my|strong=\"H8104\"* law|strong=\"H8451\"* as|strong=\"H3068\"* you|strong=\"H6440\"* have|strong=\"H3068\"* walked|strong=\"H1980\"* before|strong=\"H6440\"* me|strong=\"H6440\"*.’" + }, + { + "verseNum": 17, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, let|strong=\"H6258\"* your|strong=\"H3068\"* word|strong=\"H1697\"* be|strong=\"H1697\"* verified, which|strong=\"H3068\"* you|strong=\"H1696\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 18, + "text": "“But|strong=\"H3588\"* will|strong=\"H1004\"* God|strong=\"H3808\"* indeed|strong=\"H3588\"* dwell|strong=\"H3427\"* with|strong=\"H1004\"* men on|strong=\"H5921\"* the|strong=\"H5921\"* earth|strong=\"H8064\"*? Behold|strong=\"H2009\"*, heaven|strong=\"H8064\"* and|strong=\"H8064\"* the|strong=\"H5921\"* heaven|strong=\"H8064\"* of|strong=\"H1004\"* heavens|strong=\"H8064\"* can|strong=\"H3808\"*’t contain|strong=\"H3557\"* you|strong=\"H3588\"*; how|strong=\"H3588\"* much|strong=\"H5921\"* less|strong=\"H3588\"* this|strong=\"H2088\"* house|strong=\"H1004\"* which|strong=\"H1004\"* I|strong=\"H3588\"* have|strong=\"H1129\"* built|strong=\"H1129\"*!" + }, + { + "verseNum": 19, + "text": "Yet|strong=\"H3068\"* have|strong=\"H3068\"* respect|strong=\"H6437\"* for|strong=\"H6440\"* the|strong=\"H6440\"* prayer|strong=\"H8605\"* of|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* and|strong=\"H3068\"* to|strong=\"H3068\"* his|strong=\"H3068\"* supplication|strong=\"H8467\"*, Yahweh|strong=\"H3068\"* my|strong=\"H8085\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* the|strong=\"H6440\"* cry|strong=\"H7440\"* and|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H6440\"* prayer|strong=\"H8605\"* which|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* prays|strong=\"H6419\"* before|strong=\"H6440\"* you|strong=\"H6440\"*;" + }, + { + "verseNum": 20, + "text": "that|strong=\"H8085\"* your|strong=\"H7760\"* eyes|strong=\"H5869\"* may|strong=\"H1961\"* be|strong=\"H1961\"* open|strong=\"H6605\"* toward this|strong=\"H2088\"* house|strong=\"H1004\"* day|strong=\"H3119\"* and|strong=\"H1004\"* night|strong=\"H3915\"*, even|strong=\"H5869\"* toward the|strong=\"H8085\"* place|strong=\"H4725\"* where|strong=\"H8033\"* you|strong=\"H7760\"* have|strong=\"H1961\"* said|strong=\"H8085\"* that|strong=\"H8085\"* you|strong=\"H7760\"* would|strong=\"H5650\"* put|strong=\"H7760\"* your|strong=\"H7760\"* name|strong=\"H8034\"*, to|strong=\"H1961\"* listen|strong=\"H8085\"* to|strong=\"H1961\"* the|strong=\"H8085\"* prayer|strong=\"H8605\"* which|strong=\"H1004\"* your|strong=\"H7760\"* servant|strong=\"H5650\"* will|strong=\"H1961\"* pray|strong=\"H6419\"* toward this|strong=\"H2088\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 21, + "text": "Listen|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H8085\"* petitions of|strong=\"H3427\"* your|strong=\"H8085\"* servant|strong=\"H5650\"* and|strong=\"H3478\"* of|strong=\"H3427\"* your|strong=\"H8085\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, when|strong=\"H8085\"* they|strong=\"H5971\"* pray|strong=\"H6419\"* toward|strong=\"H4480\"* this|strong=\"H2088\"* place|strong=\"H4725\"*. Yes, hear|strong=\"H8085\"* from|strong=\"H4480\"* your|strong=\"H8085\"* dwelling|strong=\"H3427\"* place|strong=\"H4725\"*, even from|strong=\"H4480\"* heaven|strong=\"H8064\"*; and|strong=\"H3478\"* when|strong=\"H8085\"* you|strong=\"H4480\"* hear|strong=\"H8085\"*, forgive|strong=\"H5545\"*." + }, + { + "verseNum": 22, + "text": "“If|strong=\"H2398\"* a|strong=\"H3068\"* man|strong=\"H5375\"* sins|strong=\"H2398\"* against|strong=\"H6440\"* his|strong=\"H5375\"* neighbor|strong=\"H7453\"*, and|strong=\"H1004\"* an|strong=\"H5375\"* oath is|strong=\"H2088\"* laid|strong=\"H5375\"* on|strong=\"H1004\"* him|strong=\"H6440\"* to|strong=\"H6440\"* cause him|strong=\"H6440\"* to|strong=\"H6440\"* swear|strong=\"H5375\"*, and|strong=\"H1004\"* he|strong=\"H1004\"* comes|strong=\"H6440\"* and|strong=\"H1004\"* swears before|strong=\"H6440\"* your|strong=\"H5375\"* altar|strong=\"H4196\"* in|strong=\"H1004\"* this|strong=\"H2088\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 23, + "text": "then|strong=\"H5414\"* hear|strong=\"H8085\"* from|strong=\"H4480\"* heaven|strong=\"H8064\"*, act|strong=\"H6213\"*, and|strong=\"H7725\"* judge|strong=\"H8199\"* your|strong=\"H5414\"* servants|strong=\"H5650\"*, bringing|strong=\"H7725\"* retribution to|strong=\"H7725\"* the|strong=\"H8085\"* wicked|strong=\"H7563\"*, to|strong=\"H7725\"* bring|strong=\"H7725\"* his|strong=\"H5414\"* way|strong=\"H1870\"* on|strong=\"H1870\"* his|strong=\"H5414\"* own head|strong=\"H7218\"*; and|strong=\"H7725\"* justifying|strong=\"H6663\"* the|strong=\"H8085\"* righteous|strong=\"H6662\"*, to|strong=\"H7725\"* give|strong=\"H5414\"* him|strong=\"H5414\"* according|strong=\"H4480\"* to|strong=\"H7725\"* his|strong=\"H5414\"* righteousness|strong=\"H6666\"*." + }, + { + "verseNum": 24, + "text": "“If|strong=\"H3588\"* your|strong=\"H6440\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* are|strong=\"H5971\"* struck|strong=\"H5062\"* down|strong=\"H5062\"* before|strong=\"H6440\"* the|strong=\"H6440\"* enemy because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H5971\"* sinned|strong=\"H2398\"* against|strong=\"H6440\"* you|strong=\"H3588\"*, and|strong=\"H3478\"* they|strong=\"H3588\"* turn|strong=\"H7725\"* again|strong=\"H7725\"* and|strong=\"H3478\"* confess|strong=\"H3034\"* your|strong=\"H6440\"* name|strong=\"H8034\"*, and|strong=\"H3478\"* pray|strong=\"H6419\"* and|strong=\"H3478\"* make|strong=\"H2603\"* supplication|strong=\"H2603\"* before|strong=\"H6440\"* you|strong=\"H3588\"* in|strong=\"H3478\"* this|strong=\"H2088\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 25, + "text": "then|strong=\"H5414\"* hear|strong=\"H8085\"* from|strong=\"H4480\"* heaven|strong=\"H8064\"*, and|strong=\"H3478\"* forgive|strong=\"H5545\"* the|strong=\"H8085\"* sin|strong=\"H2403\"* of|strong=\"H4480\"* your|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* bring|strong=\"H7725\"* them|strong=\"H5414\"* again|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H8085\"* land|strong=\"H8064\"* which|strong=\"H1992\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H7725\"* them|strong=\"H5414\"* and|strong=\"H3478\"* to|strong=\"H7725\"* their|strong=\"H5414\"* fathers." + }, + { + "verseNum": 26, + "text": "“When|strong=\"H3588\"* the|strong=\"H3588\"* sky|strong=\"H8064\"* is|strong=\"H2088\"* shut|strong=\"H6113\"* up|strong=\"H6113\"* and|strong=\"H7725\"* there|strong=\"H1961\"* is|strong=\"H2088\"* no|strong=\"H3808\"* rain|strong=\"H4306\"* because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* you|strong=\"H3588\"*, if|strong=\"H3588\"* they|strong=\"H3588\"* pray|strong=\"H6419\"* toward|strong=\"H7725\"* this|strong=\"H2088\"* place|strong=\"H4725\"* and|strong=\"H7725\"* confess|strong=\"H3034\"* your|strong=\"H7725\"* name|strong=\"H8034\"*, and|strong=\"H7725\"* turn|strong=\"H7725\"* from|strong=\"H7725\"* their|strong=\"H7725\"* sin|strong=\"H2403\"* when|strong=\"H3588\"* you|strong=\"H3588\"* afflict|strong=\"H6031\"* them|strong=\"H7725\"*," + }, + { + "verseNum": 27, + "text": "then|strong=\"H5414\"* hear|strong=\"H8085\"* in|strong=\"H5921\"* heaven|strong=\"H8064\"*, and|strong=\"H3478\"* forgive|strong=\"H5545\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* of|strong=\"H1870\"* your|strong=\"H5414\"* servants|strong=\"H5650\"*, your|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* teach|strong=\"H3384\"* them|strong=\"H5414\"* the|strong=\"H5921\"* good|strong=\"H2896\"* way|strong=\"H1870\"* in|strong=\"H5921\"* which|strong=\"H5971\"* they|strong=\"H3588\"* should|strong=\"H3588\"* walk|strong=\"H3212\"*, and|strong=\"H3478\"* send|strong=\"H5414\"* rain|strong=\"H4306\"* on|strong=\"H5921\"* your|strong=\"H5414\"* land|strong=\"H5159\"*, which|strong=\"H5971\"* you|strong=\"H3588\"* have|strong=\"H5971\"* given|strong=\"H5414\"* to|strong=\"H3478\"* your|strong=\"H5414\"* people|strong=\"H5971\"* for|strong=\"H3588\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 28, + "text": "“If|strong=\"H3588\"* there|strong=\"H1961\"* is|strong=\"H3605\"* famine|strong=\"H7458\"* in|strong=\"H7458\"* the|strong=\"H3605\"* land, if|strong=\"H3588\"* there|strong=\"H1961\"* is|strong=\"H3605\"* pestilence|strong=\"H1698\"*, if|strong=\"H3588\"* there|strong=\"H1961\"* is|strong=\"H3605\"* blight|strong=\"H7711\"* or|strong=\"H5061\"* mildew|strong=\"H3420\"*, locust|strong=\"H2625\"* or|strong=\"H5061\"* caterpillar|strong=\"H2625\"*; if|strong=\"H3588\"* their|strong=\"H3605\"* enemies besiege|strong=\"H6696\"* them|strong=\"H1961\"* in|strong=\"H7458\"* the|strong=\"H3605\"* land of|strong=\"H8179\"* their|strong=\"H3605\"* cities|strong=\"H8179\"*; whatever|strong=\"H3605\"* plague|strong=\"H5061\"* or|strong=\"H5061\"* whatever|strong=\"H3605\"* sickness|strong=\"H4245\"* there|strong=\"H1961\"* is|strong=\"H3605\"*—" + }, + { + "verseNum": 29, + "text": "whatever|strong=\"H3605\"* prayer|strong=\"H8605\"* and|strong=\"H3478\"* supplication|strong=\"H8467\"* is|strong=\"H2088\"* made|strong=\"H3045\"* by|strong=\"H3478\"* any|strong=\"H3605\"* man|strong=\"H3605\"*, or|strong=\"H1004\"* by|strong=\"H3478\"* all|strong=\"H3605\"* your|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, who|strong=\"H3605\"* will|strong=\"H1961\"* each|strong=\"H3605\"* know|strong=\"H3045\"* his|strong=\"H3605\"* own|strong=\"H1961\"* plague|strong=\"H5061\"* and|strong=\"H3478\"* his|strong=\"H3605\"* own|strong=\"H1961\"* sorrow|strong=\"H4341\"*, and|strong=\"H3478\"* shall|strong=\"H5971\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* his|strong=\"H3605\"* hands|strong=\"H3709\"* toward|strong=\"H3709\"* this|strong=\"H2088\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 30, + "text": "then|strong=\"H5414\"* hear|strong=\"H8085\"* from|strong=\"H4480\"* heaven|strong=\"H8064\"* your|strong=\"H3605\"* dwelling|strong=\"H3427\"* place|strong=\"H4349\"* and|strong=\"H1121\"* forgive|strong=\"H5545\"*, and|strong=\"H1121\"* give|strong=\"H5414\"* to|strong=\"H5414\"* every|strong=\"H3605\"* man|strong=\"H1121\"* according|strong=\"H4480\"* to|strong=\"H5414\"* all|strong=\"H3605\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, whose|strong=\"H1121\"* heart|strong=\"H3824\"* you|strong=\"H3588\"* know|strong=\"H3045\"* (for|strong=\"H3588\"* you|strong=\"H3588\"*, even|strong=\"H3588\"* you|strong=\"H3588\"* only|strong=\"H3588\"*, know|strong=\"H3045\"* the|strong=\"H3605\"* hearts|strong=\"H3824\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"*)," + }, + { + "verseNum": 31, + "text": "that|strong=\"H3605\"* they|strong=\"H1992\"* may|strong=\"H5414\"* fear|strong=\"H3372\"* you|strong=\"H5414\"*, to|strong=\"H3212\"* walk|strong=\"H3212\"* in|strong=\"H5921\"* your|strong=\"H3605\"* ways|strong=\"H1870\"* as|strong=\"H3117\"* long|strong=\"H3117\"* as|strong=\"H3117\"* they|strong=\"H1992\"* live|strong=\"H2416\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land|strong=\"H6440\"* which|strong=\"H1992\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H3212\"* our|strong=\"H3605\"* fathers." + }, + { + "verseNum": 32, + "text": "“Moreover|strong=\"H1571\"*, concerning|strong=\"H3478\"* the|strong=\"H3027\"* foreigner|strong=\"H5237\"*, who|strong=\"H1931\"* is|strong=\"H2088\"* not|strong=\"H3808\"* of|strong=\"H1004\"* your|strong=\"H5186\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, when|strong=\"H1571\"* he|strong=\"H1931\"* comes from|strong=\"H3478\"* a|strong=\"H3068\"* far|strong=\"H7350\"* country for|strong=\"H3027\"* your|strong=\"H5186\"* great|strong=\"H1419\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"* and|strong=\"H3478\"* your|strong=\"H5186\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"* and|strong=\"H3478\"* your|strong=\"H5186\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*, when|strong=\"H1571\"* they|strong=\"H3808\"* come|strong=\"H7350\"* and|strong=\"H3478\"* pray|strong=\"H6419\"* toward|strong=\"H3027\"* this|strong=\"H2088\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 33, + "text": "then|strong=\"H2088\"* hear|strong=\"H8085\"* from|strong=\"H4480\"* heaven|strong=\"H8064\"*, even|strong=\"H3588\"* from|strong=\"H4480\"* your|strong=\"H3605\"* dwelling|strong=\"H3427\"* place|strong=\"H4349\"*, and|strong=\"H3478\"* do|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3588\"* the|strong=\"H3605\"* foreigner|strong=\"H5237\"* calls|strong=\"H7121\"* to|strong=\"H3478\"* you|strong=\"H3588\"* for|strong=\"H3588\"*; that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H1004\"* the|strong=\"H3605\"* earth|strong=\"H8064\"* may|strong=\"H5971\"* know|strong=\"H3045\"* your|strong=\"H3605\"* name|strong=\"H8034\"* and|strong=\"H3478\"* fear|strong=\"H3372\"* you|strong=\"H3588\"*, as|strong=\"H6213\"* do|strong=\"H6213\"* your|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H5971\"* know|strong=\"H3045\"* that|strong=\"H3588\"* this|strong=\"H2088\"* house|strong=\"H1004\"* which|strong=\"H1004\"* I|strong=\"H3588\"* have|strong=\"H5971\"* built|strong=\"H1129\"* is|strong=\"H2088\"* called|strong=\"H7121\"* by|strong=\"H5921\"* your|strong=\"H3605\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 34, + "text": "“If|strong=\"H3588\"* your|strong=\"H5921\"* people|strong=\"H5971\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* battle|strong=\"H4421\"* against|strong=\"H5921\"* their|strong=\"H5921\"* enemies, by|strong=\"H5921\"* whatever way|strong=\"H1870\"* you|strong=\"H3588\"* send|strong=\"H7971\"* them|strong=\"H5921\"*, and|strong=\"H7971\"* they|strong=\"H3588\"* pray|strong=\"H6419\"* to|strong=\"H3318\"* you|strong=\"H3588\"* toward|strong=\"H1870\"* this|strong=\"H2063\"* city|strong=\"H5892\"* which|strong=\"H1004\"* you|strong=\"H3588\"* have|strong=\"H5971\"* chosen, and|strong=\"H7971\"* the|strong=\"H5921\"* house|strong=\"H1004\"* which|strong=\"H1004\"* I|strong=\"H3588\"* have|strong=\"H5971\"* built|strong=\"H1129\"* for|strong=\"H3588\"* your|strong=\"H5921\"* name|strong=\"H8034\"*;" + }, + { + "verseNum": 35, + "text": "then|strong=\"H6213\"* hear|strong=\"H8085\"* from|strong=\"H4480\"* heaven|strong=\"H8064\"* their|strong=\"H8085\"* prayer|strong=\"H8605\"* and|strong=\"H8064\"* their|strong=\"H8085\"* supplication|strong=\"H8467\"*, and|strong=\"H8064\"* maintain|strong=\"H6213\"* their|strong=\"H8085\"* cause|strong=\"H4941\"*." + }, + { + "verseNum": 36, + "text": "“If|strong=\"H3588\"* they|strong=\"H3588\"* sin|strong=\"H2398\"* against|strong=\"H6440\"* you|strong=\"H3588\"* (for|strong=\"H3588\"* there|strong=\"H6440\"* is|strong=\"H6440\"* no|strong=\"H3808\"* man|strong=\"H6440\"* who|strong=\"H7350\"* doesn’t sin|strong=\"H2398\"*), and|strong=\"H6440\"* you|strong=\"H3588\"* are|strong=\"H7350\"* angry with|strong=\"H6440\"* them|strong=\"H5414\"* and|strong=\"H6440\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H6440\"* enemy, so|strong=\"H5414\"* that|strong=\"H3588\"* they|strong=\"H3588\"* carry them|strong=\"H5414\"* away|strong=\"H7617\"* captive|strong=\"H7617\"* to|strong=\"H5414\"* a|strong=\"H3068\"* land|strong=\"H6440\"* far|strong=\"H7350\"* off|strong=\"H7350\"* or|strong=\"H3808\"* near|strong=\"H7138\"*;" + }, + { + "verseNum": 37, + "text": "yet|strong=\"H2398\"* if|strong=\"H2603\"* they|strong=\"H8033\"* come|strong=\"H7725\"* to|strong=\"H7725\"* their|strong=\"H7725\"* senses in|strong=\"H7725\"* the|strong=\"H7725\"* land where|strong=\"H8033\"* they|strong=\"H8033\"* are|strong=\"H3824\"* carried|strong=\"H7617\"* captive|strong=\"H7617\"*, and|strong=\"H7725\"* turn|strong=\"H7725\"* again|strong=\"H7725\"*, and|strong=\"H7725\"* make|strong=\"H2603\"* supplication|strong=\"H2603\"* to|strong=\"H7725\"* you|strong=\"H7725\"* in|strong=\"H7725\"* the|strong=\"H7725\"* land of|strong=\"H3824\"* their|strong=\"H7725\"* captivity|strong=\"H7633\"*, saying, ‘We|strong=\"H8033\"* have|strong=\"H7617\"* sinned|strong=\"H2398\"*, we|strong=\"H3068\"* have|strong=\"H7617\"* done|strong=\"H2398\"* perversely|strong=\"H5753\"*, and|strong=\"H7725\"* have|strong=\"H7617\"* dealt|strong=\"H2603\"* wickedly|strong=\"H7561\"*;’" + }, + { + "verseNum": 38, + "text": "if they|strong=\"H5315\"* return|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H5414\"* with|strong=\"H1004\"* all|strong=\"H3605\"* their|strong=\"H3605\"* heart|strong=\"H3820\"* and|strong=\"H7725\"* with|strong=\"H1004\"* all|strong=\"H3605\"* their|strong=\"H3605\"* soul|strong=\"H5315\"* in|strong=\"H1004\"* the|strong=\"H3605\"* land of|strong=\"H1004\"* their|strong=\"H3605\"* captivity|strong=\"H7633\"*, where|strong=\"H1004\"* they|strong=\"H5315\"* have|strong=\"H5414\"* been|strong=\"H3605\"* taken|strong=\"H7617\"* captive|strong=\"H7617\"*, and|strong=\"H7725\"* pray|strong=\"H6419\"* toward|strong=\"H1870\"* their|strong=\"H3605\"* land which|strong=\"H1004\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H7725\"* their|strong=\"H3605\"* fathers, and|strong=\"H7725\"* the|strong=\"H3605\"* city|strong=\"H5892\"* which|strong=\"H1004\"* you|strong=\"H5414\"* have|strong=\"H5414\"* chosen, and|strong=\"H7725\"* toward|strong=\"H1870\"* the|strong=\"H3605\"* house|strong=\"H1004\"* which|strong=\"H1004\"* I|strong=\"H5414\"* have|strong=\"H5414\"* built|strong=\"H1129\"* for|strong=\"H8034\"* your|strong=\"H3605\"* name|strong=\"H8034\"*;" + }, + { + "verseNum": 39, + "text": "then|strong=\"H6213\"* hear|strong=\"H8085\"* from|strong=\"H4480\"* heaven|strong=\"H8064\"*, even|strong=\"H6213\"* from|strong=\"H4480\"* your|strong=\"H8085\"* dwelling|strong=\"H3427\"* place|strong=\"H4349\"*, their|strong=\"H8085\"* prayer|strong=\"H8605\"* and|strong=\"H8064\"* their|strong=\"H8085\"* petitions, and|strong=\"H8064\"* maintain|strong=\"H6213\"* their|strong=\"H8085\"* cause|strong=\"H4941\"*, and|strong=\"H8064\"* forgive|strong=\"H5545\"* your|strong=\"H8085\"* people|strong=\"H5971\"* who|strong=\"H5971\"* have|strong=\"H5971\"* sinned|strong=\"H2398\"* against|strong=\"H4480\"* you|strong=\"H6213\"*." + }, + { + "verseNum": 40, + "text": "“Now|strong=\"H6258\"*, my|strong=\"H1961\"* God, let|strong=\"H4994\"*, I|strong=\"H6258\"* beg|strong=\"H4994\"* you|strong=\"H5869\"*, your|strong=\"H1961\"* eyes|strong=\"H5869\"* be|strong=\"H1961\"* open|strong=\"H6605\"*, and|strong=\"H5869\"* let|strong=\"H4994\"* your|strong=\"H1961\"* ears be|strong=\"H1961\"* attentive|strong=\"H7183\"* to|strong=\"H1961\"* the|strong=\"H1961\"* prayer|strong=\"H8605\"* that|strong=\"H2088\"* is|strong=\"H2088\"* made|strong=\"H1961\"* in|strong=\"H4725\"* this|strong=\"H2088\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 41, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H6258\"* arise|strong=\"H6965\"*, Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*, into|strong=\"H5797\"* your|strong=\"H3068\"* resting|strong=\"H5118\"* place, you|strong=\"H2623\"*, and|strong=\"H6965\"* the|strong=\"H3068\"* ark of|strong=\"H3068\"* your|strong=\"H3068\"* strength|strong=\"H5797\"*. Let|strong=\"H8055\"* your|strong=\"H3068\"* priests|strong=\"H3548\"*, Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*, be|strong=\"H3068\"* clothed|strong=\"H3847\"* with|strong=\"H3847\"* salvation|strong=\"H8668\"*, and|strong=\"H6965\"* let|strong=\"H8055\"* your|strong=\"H3068\"* saints|strong=\"H2623\"* rejoice|strong=\"H8055\"* in|strong=\"H3068\"* goodness|strong=\"H2896\"*." + }, + { + "verseNum": 42, + "text": "“Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*, don’t turn|strong=\"H7725\"* away|strong=\"H7725\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H3068\"* your|strong=\"H3068\"* anointed|strong=\"H4899\"*. Remember|strong=\"H2142\"* your|strong=\"H3068\"* loving kindnesses|strong=\"H2617\"* to|strong=\"H7725\"* David|strong=\"H1732\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*.”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3519\"* when|strong=\"H3615\"* Solomon|strong=\"H8010\"* had|strong=\"H3068\"* finished|strong=\"H3615\"* praying|strong=\"H6419\"*, fire came|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H3381\"* heaven|strong=\"H8064\"* and|strong=\"H3068\"* consumed|strong=\"H3615\"* the|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H3068\"* the|strong=\"H3068\"* sacrifices|strong=\"H2077\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* filled|strong=\"H4390\"* the|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3588\"* priests|strong=\"H3548\"* could|strong=\"H3201\"* not|strong=\"H3808\"* enter into|strong=\"H3519\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* filled|strong=\"H4390\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 3, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* looked|strong=\"H7200\"* on|strong=\"H5921\"*, when|strong=\"H3588\"* the|strong=\"H3605\"* fire came|strong=\"H3381\"* down|strong=\"H3381\"*, and|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* was|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"*. They|strong=\"H3588\"* bowed|strong=\"H7812\"* themselves|strong=\"H7812\"* with|strong=\"H1004\"* their|strong=\"H3605\"* faces|strong=\"H5921\"* to|strong=\"H3381\"* the|strong=\"H3605\"* ground on|strong=\"H5921\"* the|strong=\"H3605\"* pavement|strong=\"H7531\"*, worshiped|strong=\"H7812\"*, and|strong=\"H1121\"* gave|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3381\"* Yahweh|strong=\"H3068\"*, saying," + }, + { + "verseNum": 4, + "text": "Then|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* offered|strong=\"H2076\"* sacrifices|strong=\"H2077\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* offered|strong=\"H2076\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H4428\"* twenty-two|strong=\"H6242\"* thousand head of|strong=\"H4428\"* cattle|strong=\"H1241\"* and|strong=\"H3967\"* a|strong=\"H3068\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* thousand sheep|strong=\"H6629\"*. So the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H3967\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* dedicated|strong=\"H2596\"* God’s house|strong=\"H1004\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3605\"* priests|strong=\"H3548\"* stood|strong=\"H5975\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* their|strong=\"H3605\"* positions; the|strong=\"H3605\"* Levites|strong=\"H3881\"* also|strong=\"H3068\"* with|strong=\"H3068\"* instruments|strong=\"H3627\"* of|strong=\"H4428\"* music|strong=\"H7892\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*, which|strong=\"H3068\"* David|strong=\"H1732\"* the|strong=\"H3605\"* king|strong=\"H4428\"* had|strong=\"H3068\"* made|strong=\"H6213\"* to|strong=\"H3478\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, when|strong=\"H3588\"* David|strong=\"H1732\"* praised|strong=\"H1984\"* by|strong=\"H3027\"* their|strong=\"H3605\"* ministry|strong=\"H3027\"*, saying “For|strong=\"H3588\"* his|strong=\"H3605\"* loving kindness|strong=\"H2617\"* endures|strong=\"H5769\"* forever|strong=\"H5769\"*.” The|strong=\"H3605\"* priests|strong=\"H3548\"* sounded|strong=\"H2690\"* trumpets|strong=\"H2690\"* before|strong=\"H5048\"* them|strong=\"H5921\"*; and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* stood|strong=\"H5975\"*." + }, + { + "verseNum": 7, + "text": "Moreover|strong=\"H3588\"* Solomon|strong=\"H8010\"* made|strong=\"H6213\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H1004\"* the|strong=\"H6440\"* court|strong=\"H2691\"* that|strong=\"H3588\"* was|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* holy|strong=\"H6942\"*; for|strong=\"H3588\"* there|strong=\"H8033\"* he|strong=\"H3588\"* offered|strong=\"H6213\"* the|strong=\"H6440\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H3068\"* the|strong=\"H6440\"* fat|strong=\"H2459\"* of|strong=\"H1004\"* the|strong=\"H6440\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, because|strong=\"H3588\"* the|strong=\"H6440\"* bronze|strong=\"H5178\"* altar|strong=\"H4196\"* which|strong=\"H3068\"* Solomon|strong=\"H8010\"* had|strong=\"H3068\"* made|strong=\"H6213\"* was|strong=\"H3068\"* not|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* receive|strong=\"H3557\"* the|strong=\"H6440\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, the|strong=\"H6440\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* fat|strong=\"H2459\"*." + }, + { + "verseNum": 8, + "text": "So|strong=\"H6213\"* Solomon|strong=\"H8010\"* held|strong=\"H6213\"* the|strong=\"H3605\"* feast|strong=\"H2282\"* at|strong=\"H3478\"* that|strong=\"H3605\"* time|strong=\"H6256\"* for|strong=\"H5704\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H6213\"*, a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* assembly|strong=\"H6951\"*, from|strong=\"H3478\"* the|strong=\"H3605\"* entrance of|strong=\"H3117\"* Hamath|strong=\"H2574\"* to|strong=\"H5704\"* the|strong=\"H3605\"* brook|strong=\"H5158\"* of|strong=\"H3117\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 9, + "text": "On|strong=\"H3117\"* the|strong=\"H3588\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"*, they|strong=\"H3588\"* held|strong=\"H6213\"* a|strong=\"H3068\"* solemn|strong=\"H6116\"* assembly|strong=\"H6116\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* kept|strong=\"H6213\"* the|strong=\"H3588\"* dedication|strong=\"H2598\"* of|strong=\"H3117\"* the|strong=\"H3588\"* altar|strong=\"H4196\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, and|strong=\"H3117\"* the|strong=\"H3588\"* feast|strong=\"H2282\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 10, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* twenty-third|strong=\"H6242\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H5921\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*, he|strong=\"H3117\"* sent|strong=\"H7971\"* the|strong=\"H5921\"* people|strong=\"H5971\"* away|strong=\"H7971\"* to|strong=\"H3478\"* their|strong=\"H3068\"* tents, joyful|strong=\"H8056\"* and|strong=\"H3478\"* glad|strong=\"H8056\"* of|strong=\"H3068\"* heart|strong=\"H3820\"* for|strong=\"H5921\"* the|strong=\"H5921\"* goodness|strong=\"H2896\"* that|strong=\"H5971\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* shown|strong=\"H6213\"* to|strong=\"H3478\"* David|strong=\"H1732\"*, to|strong=\"H3478\"* Solomon|strong=\"H8010\"*, and|strong=\"H3478\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"* his|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 11, + "text": "Thus Solomon|strong=\"H8010\"* finished|strong=\"H3615\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*; and|strong=\"H3068\"* he|strong=\"H6213\"* successfully|strong=\"H6743\"* completed|strong=\"H3615\"* all|strong=\"H3605\"* that|strong=\"H3605\"* came|strong=\"H3068\"* into|strong=\"H5921\"* Solomon|strong=\"H8010\"*’s heart|strong=\"H3820\"* to|strong=\"H3068\"* make|strong=\"H6213\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* in|strong=\"H5921\"* his|strong=\"H3605\"* own house|strong=\"H1004\"*." + }, + { + "verseNum": 12, + "text": "Then|strong=\"H2088\"* Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* Solomon|strong=\"H8010\"* by|strong=\"H3068\"* night|strong=\"H3915\"*, and|strong=\"H3068\"* said|strong=\"H8085\"* to|strong=\"H3068\"* him|strong=\"H7200\"*, “I|strong=\"H7200\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* your|strong=\"H3068\"* prayer|strong=\"H8605\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* chosen this|strong=\"H2088\"* place|strong=\"H4725\"* for|strong=\"H3068\"* myself for|strong=\"H3068\"* a|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* sacrifice|strong=\"H2077\"*." + }, + { + "verseNum": 13, + "text": "“If|strong=\"H2005\"* I|strong=\"H2005\"* shut|strong=\"H6113\"* up|strong=\"H6113\"* the|strong=\"H5921\"* sky|strong=\"H8064\"* so|strong=\"H7971\"* that|strong=\"H5971\"* there|strong=\"H1961\"* is|strong=\"H1961\"* no|strong=\"H3808\"* rain|strong=\"H4306\"*, or|strong=\"H3808\"* if|strong=\"H2005\"* I|strong=\"H2005\"* command|strong=\"H6680\"* the|strong=\"H5921\"* locust|strong=\"H2284\"* to|strong=\"H7971\"* devour the|strong=\"H5921\"* land|strong=\"H8064\"*, or|strong=\"H3808\"* if|strong=\"H2005\"* I|strong=\"H2005\"* send|strong=\"H7971\"* pestilence|strong=\"H1698\"* among|strong=\"H5921\"* my|strong=\"H5921\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 14, + "text": "if my|strong=\"H8085\"* people|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* called|strong=\"H7121\"* by|strong=\"H5921\"* my|strong=\"H8085\"* name|strong=\"H8034\"* will|strong=\"H5971\"* humble|strong=\"H3665\"* themselves|strong=\"H6440\"*, pray|strong=\"H6419\"*, seek|strong=\"H1245\"* my|strong=\"H8085\"* face|strong=\"H6440\"*, and|strong=\"H7725\"* turn|strong=\"H7725\"* from|strong=\"H4480\"* their|strong=\"H6440\"* wicked|strong=\"H7451\"* ways|strong=\"H1870\"*, then|strong=\"H7725\"* I|strong=\"H5921\"* will|strong=\"H5971\"* hear|strong=\"H8085\"* from|strong=\"H4480\"* heaven|strong=\"H8064\"*, will|strong=\"H5971\"* forgive|strong=\"H5545\"* their|strong=\"H6440\"* sin|strong=\"H2403\"*, and|strong=\"H7725\"* will|strong=\"H5971\"* heal|strong=\"H7495\"* their|strong=\"H6440\"* land|strong=\"H6440\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H6258\"* my|strong=\"H1961\"* eyes|strong=\"H5869\"* will|strong=\"H1961\"* be|strong=\"H1961\"* open|strong=\"H6605\"* and|strong=\"H5869\"* my|strong=\"H1961\"* ears attentive|strong=\"H7183\"* to|strong=\"H1961\"* prayer|strong=\"H8605\"* that|strong=\"H2088\"* is|strong=\"H2088\"* made|strong=\"H1961\"* in|strong=\"H4725\"* this|strong=\"H2088\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H5704\"* now|strong=\"H6258\"* I|strong=\"H3117\"* have|strong=\"H1961\"* chosen and|strong=\"H3117\"* made|strong=\"H1961\"* this|strong=\"H2088\"* house|strong=\"H1004\"* holy|strong=\"H6942\"*, that|strong=\"H3605\"* my|strong=\"H3605\"* name|strong=\"H8034\"* may|strong=\"H1961\"* be|strong=\"H1961\"* there|strong=\"H8033\"* forever|strong=\"H5769\"*; and|strong=\"H3117\"* my|strong=\"H3605\"* eyes|strong=\"H5869\"* and|strong=\"H3117\"* my|strong=\"H3605\"* heart|strong=\"H3820\"* will|strong=\"H1961\"* be|strong=\"H1961\"* there|strong=\"H8033\"* perpetually|strong=\"H3605\"*." + }, + { + "verseNum": 17, + "text": "“As|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H6440\"*, if you|strong=\"H6440\"* will|strong=\"H6213\"* walk|strong=\"H1980\"* before|strong=\"H6440\"* me|strong=\"H6440\"* as|strong=\"H6213\"* David|strong=\"H1732\"* your|strong=\"H3605\"* father walked|strong=\"H1980\"*, and|strong=\"H1980\"* do|strong=\"H6213\"* according|strong=\"H4941\"* to|strong=\"H1980\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H6680\"* have|strong=\"H3605\"* commanded|strong=\"H6680\"* you|strong=\"H6440\"*, and|strong=\"H1980\"* will|strong=\"H6213\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* statutes|strong=\"H2706\"* and|strong=\"H1980\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*," + }, + { + "verseNum": 18, + "text": "then|strong=\"H6965\"* I|strong=\"H3808\"* will|strong=\"H3478\"* establish|strong=\"H6965\"* the|strong=\"H3772\"* throne|strong=\"H3678\"* of|strong=\"H3678\"* your|strong=\"H3808\"* kingdom|strong=\"H4438\"*, according as|strong=\"H6965\"* I|strong=\"H3808\"* covenanted|strong=\"H3772\"* with|strong=\"H1732\"* David|strong=\"H1732\"* your|strong=\"H3808\"* father, saying, ‘There|strong=\"H6965\"* shall|strong=\"H3478\"* not|strong=\"H3808\"* fail|strong=\"H3772\"* you|strong=\"H3808\"* a|strong=\"H3068\"* man to|strong=\"H3478\"* be|strong=\"H3808\"* ruler|strong=\"H4910\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*.’" + }, + { + "verseNum": 19, + "text": "But|strong=\"H5800\"* if you|strong=\"H5414\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* and|strong=\"H1980\"* forsake|strong=\"H5800\"* my|strong=\"H5414\"* statutes|strong=\"H2708\"* and|strong=\"H1980\"* my|strong=\"H5414\"* commandments|strong=\"H4687\"* which|strong=\"H2708\"* I|strong=\"H5414\"* have|strong=\"H5414\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H1980\"* go|strong=\"H1980\"* and|strong=\"H1980\"* serve|strong=\"H5647\"* other gods|strong=\"H1980\"* and|strong=\"H1980\"* worship|strong=\"H7812\"* them|strong=\"H5414\"*," + }, + { + "verseNum": 20, + "text": "then|strong=\"H2088\"* I|strong=\"H5414\"* will|strong=\"H5971\"* pluck|strong=\"H5428\"* them|strong=\"H5414\"* up|strong=\"H5414\"* by|strong=\"H5921\"* the|strong=\"H3605\"* roots|strong=\"H5428\"* out|strong=\"H7993\"* of|strong=\"H1004\"* my|strong=\"H5414\"* land|strong=\"H6440\"* which|strong=\"H1004\"* I|strong=\"H5414\"* have|strong=\"H5971\"* given|strong=\"H5414\"* them|strong=\"H5414\"*; and|strong=\"H1004\"* this|strong=\"H2088\"* house|strong=\"H1004\"*, which|strong=\"H1004\"* I|strong=\"H5414\"* have|strong=\"H5971\"* made|strong=\"H5414\"* holy|strong=\"H6942\"* for|strong=\"H5921\"* my|strong=\"H5414\"* name|strong=\"H8034\"*, I|strong=\"H5414\"* will|strong=\"H5971\"* cast|strong=\"H7993\"* out|strong=\"H7993\"* of|strong=\"H1004\"* my|strong=\"H5414\"* sight|strong=\"H6440\"*, and|strong=\"H1004\"* I|strong=\"H5414\"* will|strong=\"H5971\"* make|strong=\"H5414\"* it|strong=\"H5414\"* a|strong=\"H3068\"* proverb|strong=\"H4912\"* and|strong=\"H1004\"* a|strong=\"H3068\"* byword|strong=\"H8148\"* among|strong=\"H5921\"* all|strong=\"H3605\"* peoples|strong=\"H5971\"*." + }, + { + "verseNum": 21, + "text": "This|strong=\"H2088\"* house|strong=\"H1004\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* so|strong=\"H6213\"* high|strong=\"H5945\"*, everyone|strong=\"H3605\"* who|strong=\"H3605\"* passes|strong=\"H5674\"* by|strong=\"H5921\"* it|strong=\"H5921\"* will|strong=\"H3068\"* be|strong=\"H1961\"* astonished|strong=\"H8074\"* and|strong=\"H3068\"* say, ‘Why|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* done|strong=\"H6213\"* this|strong=\"H2088\"* to|strong=\"H3068\"* this|strong=\"H2088\"* land and|strong=\"H3068\"* to|strong=\"H3068\"* this|strong=\"H2088\"* house|strong=\"H1004\"*?’" + }, + { + "verseNum": 22, + "text": "They|strong=\"H3651\"* shall|strong=\"H3068\"* answer, ‘Because|strong=\"H5921\"* they|strong=\"H3651\"* abandoned|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* their|strong=\"H3605\"* fathers, who|strong=\"H3605\"* brought|strong=\"H3318\"* them|strong=\"H5921\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* took|strong=\"H2388\"* other|strong=\"H3605\"* gods, worshiped|strong=\"H7812\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* served|strong=\"H5647\"* them|strong=\"H5921\"*. Therefore|strong=\"H3651\"* he|strong=\"H3651\"* has|strong=\"H3068\"* brought|strong=\"H3318\"* all|strong=\"H3605\"* this|strong=\"H2063\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* them|strong=\"H5921\"*.’”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"H3068\"* the|strong=\"H3068\"* end|strong=\"H7093\"* of|strong=\"H1004\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"*, in|strong=\"H8141\"* which|strong=\"H3068\"* Solomon|strong=\"H8010\"* had|strong=\"H3068\"* built|strong=\"H1129\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* his|strong=\"H3068\"* own|strong=\"H1961\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 2, + "text": "Solomon|strong=\"H8010\"* built|strong=\"H1129\"* the|strong=\"H5414\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* Huram|strong=\"H2361\"* had|strong=\"H3478\"* given|strong=\"H5414\"* to|strong=\"H3478\"* Solomon|strong=\"H8010\"*, and|strong=\"H1121\"* caused|strong=\"H5414\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* dwell|strong=\"H3427\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 3, + "text": "Solomon|strong=\"H8010\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Hamath Zobah, and|strong=\"H3212\"* prevailed|strong=\"H2388\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3605\"* built|strong=\"H1129\"* Tadmor|strong=\"H8412\"* in|strong=\"H5892\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* storage|strong=\"H4543\"* cities|strong=\"H5892\"*, which|strong=\"H5892\"* he|strong=\"H3605\"* built|strong=\"H1129\"* in|strong=\"H5892\"* Hamath|strong=\"H2574\"*." + }, + { + "verseNum": 5, + "text": "Also|strong=\"H1817\"* he|strong=\"H5892\"* built|strong=\"H1129\"* Beth Horon the|strong=\"H1129\"* upper|strong=\"H5945\"* and|strong=\"H5892\"* Beth Horon the|strong=\"H1129\"* lower|strong=\"H8481\"*, fortified|strong=\"H1129\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* walls|strong=\"H2346\"*, gates|strong=\"H1817\"*, and|strong=\"H5892\"* bars|strong=\"H1280\"*;" + }, + { + "verseNum": 6, + "text": "and|strong=\"H5892\"* Baalath|strong=\"H1191\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* storage|strong=\"H4543\"* cities|strong=\"H5892\"* that|strong=\"H3605\"* Solomon|strong=\"H8010\"* had|strong=\"H1961\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* for|strong=\"H3389\"* his|strong=\"H3605\"* chariots|strong=\"H7393\"*, the|strong=\"H3605\"* cities|strong=\"H5892\"* for|strong=\"H3389\"* his|strong=\"H3605\"* horsemen|strong=\"H6571\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Solomon|strong=\"H8010\"* desired|strong=\"H2836\"* to|strong=\"H1961\"* build|strong=\"H1129\"* for|strong=\"H3389\"* his|strong=\"H3605\"* pleasure|strong=\"H2837\"* in|strong=\"H5892\"* Jerusalem|strong=\"H3389\"*, in|strong=\"H5892\"* Lebanon|strong=\"H3844\"*, and|strong=\"H5892\"* in|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H5892\"* his|strong=\"H3605\"* dominion|strong=\"H4474\"*." + }, + { + "verseNum": 7, + "text": "As|strong=\"H5971\"* for|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H3478\"* left|strong=\"H3498\"* of|strong=\"H4480\"* the|strong=\"H3605\"* Hittites|strong=\"H2850\"*, the|strong=\"H3605\"* Amorites, the|strong=\"H3605\"* Perizzites|strong=\"H6522\"*, the|strong=\"H3605\"* Hivites|strong=\"H2340\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* Jebusites|strong=\"H2983\"*, who|strong=\"H3605\"* were|strong=\"H3478\"* not|strong=\"H3808\"* of|strong=\"H4480\"* Israel|strong=\"H3478\"*—" + }, + { + "verseNum": 8, + "text": "of|strong=\"H1121\"* their|strong=\"H3117\"* children|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H3478\"* left|strong=\"H3498\"* after|strong=\"H4480\"* them|strong=\"H3615\"* in|strong=\"H3478\"* the|strong=\"H4480\"* land, whom the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* didn’t consume|strong=\"H3615\"*—of|strong=\"H1121\"* them|strong=\"H3615\"* Solomon|strong=\"H8010\"* conscripted|strong=\"H5927\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H3588\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, Solomon|strong=\"H8010\"* made|strong=\"H5414\"* no|strong=\"H3808\"* servants|strong=\"H5650\"* for|strong=\"H3588\"* his|strong=\"H5414\"* work|strong=\"H4399\"*, but|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H3478\"* men|strong=\"H1121\"* of|strong=\"H1121\"* war|strong=\"H4421\"*, chief|strong=\"H8269\"* of|strong=\"H1121\"* his|strong=\"H5414\"* captains|strong=\"H8269\"*, and|strong=\"H1121\"* rulers|strong=\"H8269\"* of|strong=\"H1121\"* his|strong=\"H5414\"* chariots|strong=\"H7393\"* and|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H5414\"* horsemen|strong=\"H6571\"*." + }, + { + "verseNum": 10, + "text": "These|strong=\"H5971\"* were|strong=\"H5971\"* the|strong=\"H8010\"* chief|strong=\"H8269\"* officers|strong=\"H8269\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*, even two-hundred fifty|strong=\"H2572\"*, who|strong=\"H5971\"* ruled|strong=\"H7287\"* over|strong=\"H4428\"* the|strong=\"H8010\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 11, + "text": "Solomon|strong=\"H8010\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* Pharaoh|strong=\"H6547\"*’s daughter|strong=\"H1323\"* out|strong=\"H3427\"* of|strong=\"H4428\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"* to|strong=\"H3478\"* the|strong=\"H3588\"* house|strong=\"H1004\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3068\"* built|strong=\"H1129\"* for|strong=\"H3588\"* her|strong=\"H1129\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* said, “My|strong=\"H3068\"* wife shall|strong=\"H3068\"* not|strong=\"H3808\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H4428\"* David|strong=\"H1732\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, because|strong=\"H3588\"* the|strong=\"H3588\"* places|strong=\"H1004\"* where|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s ark has|strong=\"H3068\"* come|strong=\"H5927\"* are|strong=\"H1992\"* holy|strong=\"H6944\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H5927\"* Solomon|strong=\"H8010\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* on|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"* which|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* built|strong=\"H1129\"* before|strong=\"H6440\"* the|strong=\"H6440\"* porch," + }, + { + "verseNum": 13, + "text": "even as|strong=\"H1697\"* the|strong=\"H3117\"* duty|strong=\"H1697\"* of|strong=\"H3117\"* every|strong=\"H3117\"* day|strong=\"H3117\"* required|strong=\"H3117\"*, offering|strong=\"H5927\"* according to|strong=\"H5927\"* the|strong=\"H3117\"* commandment|strong=\"H4687\"* of|strong=\"H3117\"* Moses|strong=\"H4872\"* on|strong=\"H3117\"* the|strong=\"H3117\"* Sabbaths|strong=\"H7676\"*, on|strong=\"H3117\"* the|strong=\"H3117\"* new|strong=\"H2320\"* moons|strong=\"H2320\"*, and|strong=\"H4872\"* on|strong=\"H3117\"* the|strong=\"H3117\"* set|strong=\"H5927\"* feasts|strong=\"H4150\"*, three|strong=\"H7969\"* times|strong=\"H6471\"* per year|strong=\"H8141\"*, during|strong=\"H3117\"* the|strong=\"H3117\"* feast|strong=\"H2282\"* of|strong=\"H3117\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*, during|strong=\"H3117\"* the|strong=\"H3117\"* feast|strong=\"H2282\"* of|strong=\"H3117\"* weeks|strong=\"H7620\"*, and|strong=\"H4872\"* during|strong=\"H3117\"* the|strong=\"H3117\"* feast|strong=\"H2282\"* of|strong=\"H3117\"* booths|strong=\"H5521\"*.+ 8:13 or, feast of tents (Sukkot)*" + }, + { + "verseNum": 14, + "text": "He|strong=\"H3588\"* appointed|strong=\"H5975\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* ordinance|strong=\"H4941\"* of|strong=\"H3117\"* David|strong=\"H1732\"* his|strong=\"H1732\"* father, the|strong=\"H5921\"* divisions|strong=\"H4256\"* of|strong=\"H3117\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* to|strong=\"H5921\"* their|strong=\"H5921\"* service|strong=\"H5656\"*, and|strong=\"H3117\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* to|strong=\"H5921\"* their|strong=\"H5921\"* offices|strong=\"H4931\"*, to|strong=\"H5921\"* praise|strong=\"H1984\"* and|strong=\"H3117\"* to|strong=\"H5921\"* minister|strong=\"H8334\"* before|strong=\"H5048\"* the|strong=\"H5921\"* priests|strong=\"H3548\"*, as|strong=\"H1697\"* the|strong=\"H5921\"* duty|strong=\"H1697\"* of|strong=\"H3117\"* every|strong=\"H3117\"* day|strong=\"H3117\"* required|strong=\"H3117\"*, the|strong=\"H5921\"* doorkeepers|strong=\"H7778\"* also|strong=\"H1732\"* by|strong=\"H5921\"* their|strong=\"H5921\"* divisions|strong=\"H4256\"* at|strong=\"H5921\"* every|strong=\"H3117\"* gate|strong=\"H8179\"*, for|strong=\"H3588\"* David|strong=\"H1732\"* the|strong=\"H5921\"* man|strong=\"H8179\"* of|strong=\"H3117\"* God had|strong=\"H1732\"* so|strong=\"H3651\"* commanded|strong=\"H4687\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"H3808\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* the|strong=\"H3605\"* commandment|strong=\"H4687\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* to|strong=\"H5921\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H4428\"* Levites|strong=\"H3881\"* concerning|strong=\"H5921\"* any|strong=\"H3605\"* matter|strong=\"H1697\"* or|strong=\"H3808\"* concerning|strong=\"H5921\"* the|strong=\"H3605\"* treasures." + }, + { + "verseNum": 16, + "text": "Now|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H1004\"* Solomon|strong=\"H8010\"* was|strong=\"H3068\"* accomplished|strong=\"H3615\"* from|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H1004\"* the|strong=\"H3605\"* foundation|strong=\"H4143\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* until|strong=\"H5704\"* it|strong=\"H3559\"* was|strong=\"H3068\"* finished|strong=\"H3615\"*. So|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* was|strong=\"H3068\"* completed|strong=\"H3615\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H1980\"* Solomon|strong=\"H8010\"* went|strong=\"H1980\"* to|strong=\"H1980\"* Ezion Geber and|strong=\"H1980\"* to|strong=\"H1980\"* Eloth, on|strong=\"H5921\"* the|strong=\"H5921\"* seashore|strong=\"H3220\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H5921\"* Edom." + }, + { + "verseNum": 18, + "text": "Huram|strong=\"H2361\"* sent|strong=\"H7971\"* him|strong=\"H7971\"* ships and|strong=\"H3967\"* servants|strong=\"H5650\"* who|strong=\"H5650\"* had|strong=\"H8010\"* knowledge|strong=\"H3045\"* of|strong=\"H4428\"* the|strong=\"H3947\"* sea|strong=\"H3220\"* by|strong=\"H3027\"* the|strong=\"H3947\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* his|strong=\"H7971\"* servants|strong=\"H5650\"*; and|strong=\"H3967\"* they|strong=\"H8033\"* came|strong=\"H5650\"* with|strong=\"H5973\"* the|strong=\"H3947\"* servants|strong=\"H5650\"* of|strong=\"H4428\"* Solomon|strong=\"H8010\"* to|strong=\"H7971\"* Ophir, and|strong=\"H3967\"* brought|strong=\"H3947\"* from|strong=\"H3027\"* there|strong=\"H8033\"* four hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* talents|strong=\"H3603\"*+ 8:18 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 450 talents is about 13.5 metric tons* of|strong=\"H4428\"* gold|strong=\"H2091\"*, and|strong=\"H3967\"* brought|strong=\"H3947\"* them|strong=\"H7971\"* to|strong=\"H7971\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* the|strong=\"H3605\"* queen|strong=\"H4436\"* of|strong=\"H7230\"* Sheba|strong=\"H7614\"* heard|strong=\"H8085\"* of|strong=\"H7230\"* the|strong=\"H3605\"* fame|strong=\"H8088\"* of|strong=\"H7230\"* Solomon|strong=\"H8010\"*, she|strong=\"H5973\"* came|strong=\"H1961\"* to|strong=\"H1696\"* test|strong=\"H5254\"* Solomon|strong=\"H8010\"* with|strong=\"H5973\"* hard|strong=\"H3515\"* questions|strong=\"H2420\"* at|strong=\"H1961\"* Jerusalem|strong=\"H3389\"*, with|strong=\"H5973\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H3966\"* caravan, including|strong=\"H3605\"* camels|strong=\"H1581\"* that|strong=\"H3605\"* bore|strong=\"H5375\"* spices|strong=\"H1314\"*, gold|strong=\"H2091\"* in|strong=\"H8085\"* abundance|strong=\"H7230\"*, and|strong=\"H2091\"* precious|strong=\"H3368\"* stones. When|strong=\"H1961\"* she|strong=\"H5973\"* had|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1696\"* Solomon|strong=\"H8010\"*, she|strong=\"H5973\"* talked|strong=\"H1696\"* with|strong=\"H5973\"* him|strong=\"H5973\"* about|strong=\"H1961\"* all|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H1961\"* in|strong=\"H8085\"* her|strong=\"H3605\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 2, + "text": "Solomon|strong=\"H8010\"* answered|strong=\"H5046\"* all|strong=\"H3605\"* her|strong=\"H3605\"* questions|strong=\"H1697\"*. There|strong=\"H3605\"* wasn’t anything|strong=\"H3605\"* hidden|strong=\"H5956\"* from|strong=\"H1697\"* Solomon|strong=\"H8010\"* which|strong=\"H1697\"* he|strong=\"H3605\"* didn’t tell|strong=\"H5046\"* her|strong=\"H3605\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"H7200\"* the|strong=\"H7200\"* queen|strong=\"H4436\"* of|strong=\"H1004\"* Sheba|strong=\"H7614\"* had|strong=\"H8010\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* wisdom|strong=\"H2451\"* of|strong=\"H1004\"* Solomon|strong=\"H8010\"*, the|strong=\"H7200\"* house|strong=\"H1004\"* that|strong=\"H7200\"* he|strong=\"H1004\"* had|strong=\"H8010\"* built|strong=\"H1129\"*," + }, + { + "verseNum": 4, + "text": "the|strong=\"H3068\"* food|strong=\"H3978\"* of|strong=\"H1004\"* his|strong=\"H3068\"* table|strong=\"H7979\"*, the|strong=\"H3068\"* seating|strong=\"H4186\"* of|strong=\"H1004\"* his|strong=\"H3068\"* servants|strong=\"H5650\"*, the|strong=\"H3068\"* attendance|strong=\"H4612\"* of|strong=\"H1004\"* his|strong=\"H3068\"* ministers|strong=\"H8334\"*, their|strong=\"H3068\"* clothing, his|strong=\"H3068\"* cup bearers and|strong=\"H3068\"* their|strong=\"H3068\"* clothing, and|strong=\"H3068\"* his|strong=\"H3068\"* ascent|strong=\"H5927\"* by|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3068\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, there|strong=\"H1961\"* was|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H5750\"* spirit|strong=\"H7307\"* in|strong=\"H3068\"* her|strong=\"H1961\"*.+ 9:4 or, she was breathless.*" + }, + { + "verseNum": 5, + "text": "She|strong=\"H5921\"* said|strong=\"H1697\"* to|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, “It|strong=\"H5921\"* was|strong=\"H1697\"* a|strong=\"H3068\"* true report|strong=\"H1697\"* that|strong=\"H8085\"* I|strong=\"H5921\"* heard|strong=\"H8085\"* in|strong=\"H5921\"* my|strong=\"H8085\"* own land of|strong=\"H4428\"* your|strong=\"H5921\"* acts|strong=\"H1697\"* and|strong=\"H4428\"* of|strong=\"H4428\"* your|strong=\"H5921\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 6, + "text": "However|strong=\"H8085\"* I|strong=\"H5704\"* didn’t believe their|strong=\"H8085\"* words|strong=\"H1697\"* until|strong=\"H5704\"* I|strong=\"H5704\"* came|strong=\"H1697\"*, and|strong=\"H5869\"* my|strong=\"H8085\"* eyes|strong=\"H5869\"* had|strong=\"H5869\"* seen|strong=\"H7200\"* it|strong=\"H5921\"*; and|strong=\"H5869\"* behold|strong=\"H2009\"* half|strong=\"H2677\"* of|strong=\"H1697\"* the|strong=\"H5921\"* greatness|strong=\"H4768\"* of|strong=\"H1697\"* your|strong=\"H5921\"* wisdom|strong=\"H2451\"* wasn’t told|strong=\"H5046\"* me|strong=\"H7200\"*. You|strong=\"H5921\"* exceed|strong=\"H3254\"* the|strong=\"H5921\"* fame|strong=\"H8052\"* that|strong=\"H7200\"* I|strong=\"H5704\"* heard|strong=\"H8085\"*!" + }, + { + "verseNum": 7, + "text": "Happy are|strong=\"H5650\"* your|strong=\"H6440\"* men|strong=\"H5650\"*, and|strong=\"H5650\"* happy are|strong=\"H5650\"* these|strong=\"H8085\"* your|strong=\"H6440\"* servants|strong=\"H5650\"*, who|strong=\"H5650\"* stand|strong=\"H5975\"* continually|strong=\"H8548\"* before|strong=\"H6440\"* you|strong=\"H6440\"* and|strong=\"H5650\"* hear|strong=\"H8085\"* your|strong=\"H6440\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 8, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* delighted|strong=\"H2654\"* in|strong=\"H5921\"* you|strong=\"H5414\"* and|strong=\"H3478\"* set|strong=\"H5414\"* you|strong=\"H5414\"* on|strong=\"H5921\"* his|strong=\"H5414\"* throne|strong=\"H3678\"* to|strong=\"H3478\"* be|strong=\"H1961\"* king|strong=\"H4428\"* for|strong=\"H5921\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, because|strong=\"H5921\"* your|strong=\"H3068\"* God|strong=\"H3068\"* loved Israel|strong=\"H3478\"*, to|strong=\"H3478\"* establish|strong=\"H5975\"* them|strong=\"H5414\"* forever|strong=\"H5769\"*. Therefore|strong=\"H5921\"* he|strong=\"H6213\"* made|strong=\"H6213\"* you|strong=\"H5414\"* king|strong=\"H4428\"* over|strong=\"H5921\"* them|strong=\"H5414\"*, to|strong=\"H3478\"* do|strong=\"H6213\"* justice|strong=\"H4941\"* and|strong=\"H3478\"* righteousness|strong=\"H6666\"*.”" + }, + { + "verseNum": 9, + "text": "She|strong=\"H1931\"* gave|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"* one|strong=\"H3808\"* hundred|strong=\"H3967\"* and|strong=\"H3967\"* twenty|strong=\"H6242\"* talents|strong=\"H3603\"*+ 9:9 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 120 talents is about 3.6 metric tons* of|strong=\"H4428\"* gold|strong=\"H2091\"*, spices|strong=\"H1314\"* in|strong=\"H4428\"* great|strong=\"H3966\"* abundance|strong=\"H7230\"*, and|strong=\"H3967\"* precious|strong=\"H3368\"* stones. There|strong=\"H1961\"* was|strong=\"H1961\"* never|strong=\"H3808\"* before|strong=\"H3808\"* such|strong=\"H1931\"* spice|strong=\"H1314\"* as|strong=\"H1961\"* the|strong=\"H5414\"* queen|strong=\"H4436\"* of|strong=\"H4428\"* Sheba|strong=\"H7614\"* gave|strong=\"H5414\"* to|strong=\"H1961\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H1571\"* servants|strong=\"H5650\"* of|strong=\"H5650\"* Huram and|strong=\"H6086\"* the|strong=\"H1571\"* servants|strong=\"H5650\"* of|strong=\"H5650\"* Solomon|strong=\"H8010\"*, who|strong=\"H5650\"* brought|strong=\"H8010\"* gold|strong=\"H2091\"* from|strong=\"H2091\"* Ophir, also|strong=\"H1571\"* brought|strong=\"H8010\"* algum trees|strong=\"H6086\"*+ 9:10 possibly Indian sandalwood, which has nice grain and a pleasant scent and is good for woodworking* and|strong=\"H6086\"* precious|strong=\"H3368\"* stones." + }, + { + "verseNum": 11, + "text": "The|strong=\"H6440\"* king|strong=\"H4428\"* used|strong=\"H6213\"* algum tree|strong=\"H6086\"* wood|strong=\"H6086\"* to|strong=\"H3068\"* make|strong=\"H6213\"* terraces|strong=\"H4546\"* for|strong=\"H6213\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3063\"* for|strong=\"H6213\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H3063\"* harps|strong=\"H3658\"* and|strong=\"H3063\"* stringed instruments for|strong=\"H6213\"* the|strong=\"H6440\"* singers|strong=\"H7891\"*. There|strong=\"H1992\"* were|strong=\"H1992\"* none|strong=\"H3808\"* like|strong=\"H1004\"* these|strong=\"H1992\"* seen|strong=\"H7200\"* before|strong=\"H6440\"* in|strong=\"H3068\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 12, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* gave|strong=\"H5414\"* to|strong=\"H3212\"* the|strong=\"H3605\"* queen|strong=\"H4436\"* of|strong=\"H4428\"* Sheba|strong=\"H7614\"* all|strong=\"H3605\"* her|strong=\"H3605\"* desire|strong=\"H2656\"*, whatever|strong=\"H3605\"* she|strong=\"H1931\"* asked|strong=\"H7592\"*, more than|strong=\"H4428\"* that|strong=\"H3605\"* which|strong=\"H1931\"* she|strong=\"H1931\"* had|strong=\"H8010\"* brought|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3605\"* king|strong=\"H4428\"*. So|strong=\"H5414\"* she|strong=\"H1931\"* turned|strong=\"H2015\"* and|strong=\"H4428\"* went|strong=\"H3212\"* to|strong=\"H3212\"* her|strong=\"H3605\"* own land, she|strong=\"H1931\"* and|strong=\"H4428\"* her|strong=\"H3605\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"H1961\"* the|strong=\"H1961\"* weight|strong=\"H4948\"* of|strong=\"H8141\"* gold|strong=\"H2091\"* that|strong=\"H8141\"* came|strong=\"H1961\"* to|strong=\"H1961\"* Solomon|strong=\"H8010\"* in|strong=\"H8141\"* one|strong=\"H1961\"* year|strong=\"H8141\"* was|strong=\"H1961\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* sixty-six|strong=\"H8346\"* talents|strong=\"H3603\"*+ 9:13 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 666 talents is about 20 metric tons* of|strong=\"H8141\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 14, + "text": "in|strong=\"H4428\"* addition to|strong=\"H4428\"* that|strong=\"H3605\"* which|strong=\"H2091\"* the|strong=\"H3605\"* traders|strong=\"H5503\"* and|strong=\"H3701\"* merchants|strong=\"H5503\"* brought|strong=\"H8010\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Arabia|strong=\"H6152\"* and|strong=\"H3701\"* the|strong=\"H3605\"* governors|strong=\"H6346\"* of|strong=\"H4428\"* the|strong=\"H3605\"* country brought|strong=\"H8010\"* gold|strong=\"H2091\"* and|strong=\"H3701\"* silver|strong=\"H3701\"* to|strong=\"H4428\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 15, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* made|strong=\"H6213\"* two|strong=\"H6213\"* hundred|strong=\"H3967\"* large|strong=\"H6793\"* shields|strong=\"H6793\"* of|strong=\"H4428\"* beaten|strong=\"H7820\"* gold|strong=\"H2091\"*. Six|strong=\"H8337\"* hundred|strong=\"H3967\"* shekels+ 9:15 A shekel is about 10 grams or about 0.32 Troy ounces, so 600 shekels was about 6 kilograms or about 192 Troy ounces.* of|strong=\"H4428\"* beaten|strong=\"H7820\"* gold|strong=\"H2091\"* went|strong=\"H5927\"* to|strong=\"H5927\"* one|strong=\"H6213\"* large|strong=\"H6793\"* shield|strong=\"H6793\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H1004\"* made|strong=\"H5414\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* shields|strong=\"H4043\"* of|strong=\"H4428\"* beaten|strong=\"H7820\"* gold|strong=\"H2091\"*. Three|strong=\"H7969\"* hundred|strong=\"H3967\"* shekels+ 9:16 A shekel is about 10 grams or about 0.32 Troy ounces, so 300 shekels was about 3 kilograms or about 96 Troy ounces.* of|strong=\"H4428\"* gold|strong=\"H2091\"* went|strong=\"H5927\"* to|strong=\"H5927\"* one|strong=\"H3967\"* shield|strong=\"H4043\"*. The|strong=\"H5921\"* king|strong=\"H4428\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H5921\"* House|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H5921\"* Forest|strong=\"H3293\"* of|strong=\"H4428\"* Lebanon|strong=\"H3844\"*." + }, + { + "verseNum": 17, + "text": "Moreover the|strong=\"H6213\"* king|strong=\"H4428\"* made|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* ivory|strong=\"H8127\"*, and|strong=\"H4428\"* overlaid|strong=\"H6823\"* it|strong=\"H6213\"* with|strong=\"H6213\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 18, + "text": "There|strong=\"H3427\"* were|strong=\"H3027\"* six|strong=\"H8337\"* steps|strong=\"H4609\"* to|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"*, with|strong=\"H5921\"* a|strong=\"H3068\"* footstool|strong=\"H3534\"* of|strong=\"H3027\"* gold|strong=\"H2091\"*, which|strong=\"H2091\"* were|strong=\"H3027\"* fastened to|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"*, and|strong=\"H3027\"* armrests on|strong=\"H5921\"* either|strong=\"H2088\"* side|strong=\"H2088\"* by|strong=\"H3027\"* the|strong=\"H5921\"* place|strong=\"H4725\"* of|strong=\"H3027\"* the|strong=\"H5921\"* seat|strong=\"H3678\"*, and|strong=\"H3027\"* two|strong=\"H8147\"* lions standing|strong=\"H5975\"* beside|strong=\"H5921\"* the|strong=\"H5921\"* armrests." + }, + { + "verseNum": 19, + "text": "Twelve|strong=\"H8147\"* lions stood|strong=\"H5975\"* there|strong=\"H8033\"* on|strong=\"H5921\"* the|strong=\"H3605\"* one|strong=\"H2088\"* side|strong=\"H2088\"* and|strong=\"H8033\"* on|strong=\"H5921\"* the|strong=\"H3605\"* other|strong=\"H2088\"* on|strong=\"H5921\"* the|strong=\"H3605\"* six|strong=\"H8337\"* steps|strong=\"H4609\"*. There|strong=\"H8033\"* was|strong=\"H4467\"* nothing|strong=\"H3808\"* like|strong=\"H3651\"* it|strong=\"H5921\"* made|strong=\"H6213\"* in|strong=\"H5921\"* any|strong=\"H3605\"* other|strong=\"H2088\"* kingdom|strong=\"H4467\"*." + }, + { + "verseNum": 20, + "text": "All|strong=\"H3605\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*’s drinking|strong=\"H4945\"* vessels|strong=\"H3627\"* were|strong=\"H3117\"* of|strong=\"H4428\"* gold|strong=\"H2091\"*, and|strong=\"H3701\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* the|strong=\"H3605\"* House|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Forest|strong=\"H3293\"* of|strong=\"H4428\"* Lebanon|strong=\"H3844\"* were|strong=\"H3117\"* of|strong=\"H4428\"* pure|strong=\"H5462\"* gold|strong=\"H2091\"*. Silver|strong=\"H3701\"* was|strong=\"H3117\"* not|strong=\"H2803\"* considered|strong=\"H2803\"* valuable|strong=\"H3972\"* in|strong=\"H1004\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"* had|strong=\"H4428\"* ships that|strong=\"H3588\"* went|strong=\"H1980\"* to|strong=\"H1980\"* Tarshish|strong=\"H8659\"* with|strong=\"H5973\"* Huram|strong=\"H2361\"*’s servants|strong=\"H5650\"*. Once|strong=\"H1980\"* every|strong=\"H1980\"* three|strong=\"H7969\"* years|strong=\"H8141\"*, the|strong=\"H3588\"* ships of|strong=\"H4428\"* Tarshish|strong=\"H8659\"* came|strong=\"H1980\"* bringing|strong=\"H5375\"* gold|strong=\"H2091\"*, silver|strong=\"H3701\"*, ivory|strong=\"H8143\"*, apes|strong=\"H6971\"*, and|strong=\"H1980\"* peacocks|strong=\"H8500\"*." + }, + { + "verseNum": 22, + "text": "So|strong=\"H1431\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* exceeded|strong=\"H1431\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* earth in|strong=\"H4428\"* riches|strong=\"H6239\"* and|strong=\"H4428\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 23, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* earth sought|strong=\"H1245\"* the|strong=\"H3605\"* presence|strong=\"H6440\"* of|strong=\"H4428\"* Solomon|strong=\"H8010\"* to|strong=\"H5414\"* hear|strong=\"H8085\"* his|strong=\"H3605\"* wisdom|strong=\"H2451\"*, which|strong=\"H4428\"* God|strong=\"H5414\"* had|strong=\"H8010\"* put|strong=\"H5414\"* in|strong=\"H4428\"* his|strong=\"H3605\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H1992\"* each brought tribute|strong=\"H4503\"*: vessels|strong=\"H3627\"* of|strong=\"H1697\"* silver|strong=\"H3701\"*, vessels|strong=\"H3627\"* of|strong=\"H1697\"* gold|strong=\"H2091\"*, clothing|strong=\"H3627\"*, armor|strong=\"H3627\"*, spices|strong=\"H1314\"*, horses|strong=\"H5483\"*, and|strong=\"H3701\"* mules|strong=\"H6505\"* every|strong=\"H1697\"* year|strong=\"H8141\"*." + }, + { + "verseNum": 25, + "text": "Solomon|strong=\"H8010\"* had|strong=\"H1961\"* four thousand stalls for|strong=\"H3389\"* horses|strong=\"H5483\"* and|strong=\"H4428\"* chariots|strong=\"H7393\"*, and|strong=\"H4428\"* twelve|strong=\"H8147\"* thousand horsemen|strong=\"H6571\"* that|strong=\"H4428\"* he|strong=\"H8147\"* stationed in|strong=\"H4428\"* the|strong=\"H1961\"* chariot|strong=\"H7393\"* cities|strong=\"H5892\"* and|strong=\"H4428\"* with|strong=\"H5973\"* the|strong=\"H1961\"* king|strong=\"H4428\"* at|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"H5704\"* ruled|strong=\"H4910\"* over|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* from|strong=\"H4480\"* the|strong=\"H3605\"* River|strong=\"H5104\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* land|strong=\"H1366\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, and|strong=\"H4428\"* to|strong=\"H5704\"* the|strong=\"H3605\"* border|strong=\"H1366\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* made|strong=\"H5414\"* silver|strong=\"H3701\"* as|strong=\"H7230\"* common|strong=\"H7230\"* in|strong=\"H4428\"* Jerusalem|strong=\"H3389\"* as|strong=\"H7230\"* stones, and|strong=\"H3701\"* he|strong=\"H5414\"* made|strong=\"H5414\"* cedars to|strong=\"H5414\"* be|strong=\"H5414\"* as|strong=\"H7230\"* abundant|strong=\"H7230\"* as|strong=\"H7230\"* the|strong=\"H5414\"* sycamore|strong=\"H8256\"* trees|strong=\"H8256\"* that|strong=\"H5414\"* are|strong=\"H4428\"* in|strong=\"H4428\"* the|strong=\"H5414\"* lowland|strong=\"H8219\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"H3605\"* brought|strong=\"H3318\"* horses|strong=\"H5483\"* for|strong=\"H4714\"* Solomon|strong=\"H8010\"* out|strong=\"H3318\"* of|strong=\"H3605\"* Egypt|strong=\"H4714\"* and|strong=\"H4714\"* out|strong=\"H3318\"* of|strong=\"H3605\"* all|strong=\"H3605\"* lands." + }, + { + "verseNum": 29, + "text": "Now|strong=\"H5921\"* the|strong=\"H5921\"* rest|strong=\"H7605\"* of|strong=\"H1121\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*, first|strong=\"H7223\"* and|strong=\"H1121\"* last, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* history of|strong=\"H1121\"* Nathan|strong=\"H5416\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"*, and|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H5921\"* prophecy|strong=\"H5016\"* of|strong=\"H1121\"* Ahijah the|strong=\"H5921\"* Shilonite|strong=\"H7888\"*, and|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H5921\"* visions|strong=\"H2378\"* of|strong=\"H1121\"* Iddo|strong=\"H3260\"* the|strong=\"H5921\"* seer|strong=\"H2374\"* concerning|strong=\"H5921\"* Jeroboam|strong=\"H3379\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*?" + }, + { + "verseNum": 30, + "text": "Solomon|strong=\"H8010\"* reigned|strong=\"H4427\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* forty years|strong=\"H8141\"*." + }, + { + "verseNum": 31, + "text": "Solomon|strong=\"H8010\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* he|strong=\"H1732\"* was|strong=\"H1732\"* buried|strong=\"H6912\"* in|strong=\"H6912\"* his|strong=\"H1732\"* father|strong=\"H1121\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Rehoboam|strong=\"H7346\"* his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Rehoboam|strong=\"H7346\"* went|strong=\"H3212\"* to|strong=\"H3478\"* Shechem|strong=\"H7927\"*, for|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* come|strong=\"H3212\"* to|strong=\"H3478\"* Shechem|strong=\"H7927\"* to|strong=\"H3478\"* make|strong=\"H4427\"* him|strong=\"H4427\"* king|strong=\"H4427\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H1961\"* Jeroboam|strong=\"H3379\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"* heard|strong=\"H8085\"* of|strong=\"H1121\"* it|strong=\"H1931\"* (for|strong=\"H6440\"* he|strong=\"H1931\"* was|strong=\"H1961\"* in|strong=\"H4428\"* Egypt|strong=\"H4714\"*, where he|strong=\"H1931\"* had|strong=\"H1961\"* fled|strong=\"H1272\"* from|strong=\"H7725\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H1121\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*), Jeroboam|strong=\"H3379\"* returned|strong=\"H7725\"* out|strong=\"H6440\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H3478\"* sent|strong=\"H7971\"* and|strong=\"H3478\"* called|strong=\"H7121\"* him|strong=\"H7121\"*; and|strong=\"H3478\"* Jeroboam|strong=\"H3379\"* and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"*, and|strong=\"H3478\"* they|strong=\"H3478\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Rehoboam|strong=\"H7346\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 4, + "text": "“Your|strong=\"H5414\"* father made|strong=\"H5414\"* our|strong=\"H5414\"* yoke|strong=\"H5923\"* grievous|strong=\"H3515\"*. Now|strong=\"H6258\"* therefore|strong=\"H5921\"* make|strong=\"H5414\"* the|strong=\"H5921\"* grievous|strong=\"H3515\"* service|strong=\"H5656\"* of|strong=\"H5921\"* your|strong=\"H5414\"* father and|strong=\"H5647\"* his|strong=\"H5414\"* heavy|strong=\"H3515\"* yoke|strong=\"H5923\"* which he|strong=\"H5414\"* put|strong=\"H5414\"* on|strong=\"H5921\"* us|strong=\"H5414\"*, lighter|strong=\"H7043\"*, and|strong=\"H5647\"* we|strong=\"H3068\"* will|strong=\"H5414\"* serve|strong=\"H5647\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H3117\"* said to|strong=\"H7725\"* them|strong=\"H7725\"*, “Come|strong=\"H3212\"* again|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H7725\"* after|strong=\"H3117\"* three|strong=\"H7969\"* days|strong=\"H3117\"*.”" + }, + { + "verseNum": 6, + "text": "King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"* took|strong=\"H1961\"* counsel|strong=\"H3289\"* with|strong=\"H1697\"* the|strong=\"H6440\"* old|strong=\"H2205\"* men|strong=\"H2205\"*, who|strong=\"H5971\"* had|strong=\"H1961\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Solomon|strong=\"H8010\"* his|strong=\"H7725\"* father while|strong=\"H1961\"* he|strong=\"H8010\"* yet|strong=\"H5975\"* lived|strong=\"H2416\"*, saying|strong=\"H1697\"*, “What|strong=\"H1697\"* counsel|strong=\"H3289\"* do|strong=\"H1697\"* you|strong=\"H6440\"* give|strong=\"H3289\"* me|strong=\"H6440\"* about|strong=\"H1961\"* how to|strong=\"H7725\"* answer|strong=\"H7725\"* these|strong=\"H2088\"* people|strong=\"H5971\"*?”" + }, + { + "verseNum": 7, + "text": "They|strong=\"H3117\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H3605\"*, saying|strong=\"H1697\"*, “If|strong=\"H1961\"* you|strong=\"H3605\"* are|strong=\"H3117\"* kind|strong=\"H2896\"* to|strong=\"H1696\"* these|strong=\"H2088\"* people|strong=\"H5971\"*, please|strong=\"H7521\"* them|strong=\"H1961\"*, and|strong=\"H3117\"* speak|strong=\"H1696\"* good|strong=\"H2896\"* words|strong=\"H1697\"* to|strong=\"H1696\"* them|strong=\"H1961\"*, then|strong=\"H1961\"* they|strong=\"H3117\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H3605\"* servants|strong=\"H5650\"* forever|strong=\"H3605\"*.”" + }, + { + "verseNum": 8, + "text": "But|strong=\"H5800\"* he|strong=\"H6440\"* abandoned|strong=\"H5800\"* the|strong=\"H6440\"* counsel|strong=\"H6098\"* of|strong=\"H6440\"* the|strong=\"H6440\"* old|strong=\"H2205\"* men|strong=\"H2205\"* which|strong=\"H3206\"* they|strong=\"H3289\"* had given|strong=\"H3289\"* him|strong=\"H6440\"*, and|strong=\"H6440\"* took|strong=\"H5975\"* counsel|strong=\"H6098\"* with|strong=\"H6440\"* the|strong=\"H6440\"* young|strong=\"H3206\"* men|strong=\"H2205\"* who|strong=\"H5975\"* had grown|strong=\"H1431\"* up|strong=\"H5975\"* with|strong=\"H6440\"* him|strong=\"H6440\"*, who|strong=\"H5975\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H5414\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5414\"*, “What|strong=\"H4100\"* counsel|strong=\"H3289\"* do|strong=\"H4100\"* you|strong=\"H5414\"* give|strong=\"H5414\"*, that|strong=\"H5971\"* we|strong=\"H3068\"* may|strong=\"H5971\"* give|strong=\"H5414\"* an|strong=\"H5414\"* answer|strong=\"H7725\"* to|strong=\"H1696\"* these|strong=\"H2088\"* people|strong=\"H5971\"*, who|strong=\"H5971\"* have|strong=\"H5971\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5414\"*, saying|strong=\"H1697\"*, ‘Make|strong=\"H5414\"* the|strong=\"H5921\"* yoke|strong=\"H5923\"* that|strong=\"H5971\"* your|strong=\"H5414\"* father put|strong=\"H5414\"* on|strong=\"H5921\"* us|strong=\"H5414\"* lighter|strong=\"H7043\"*’?”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H5921\"* young|strong=\"H3206\"* men|strong=\"H3206\"* who|strong=\"H5971\"* had|strong=\"H5971\"* grown|strong=\"H1431\"* up|strong=\"H1431\"* with|strong=\"H1696\"* him|strong=\"H5921\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*, saying|strong=\"H1696\"*, “Thus|strong=\"H3541\"* you|strong=\"H5921\"* shall|strong=\"H5971\"* tell|strong=\"H1696\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5921\"*, saying|strong=\"H1696\"*, ‘Your|strong=\"H5921\"* father made|strong=\"H3513\"* our|strong=\"H5921\"* yoke|strong=\"H5923\"* heavy|strong=\"H3513\"*, but|strong=\"H1696\"* make|strong=\"H1431\"* it|strong=\"H5921\"* lighter|strong=\"H7043\"* on|strong=\"H5921\"* us|strong=\"H5921\"*;’ thus|strong=\"H3541\"* you|strong=\"H5921\"* shall|strong=\"H5971\"* say|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5921\"*, ‘My|strong=\"H5921\"* little|strong=\"H6995\"* finger|strong=\"H6995\"* is|strong=\"H3206\"* thicker|strong=\"H5666\"* than|strong=\"H5921\"* my|strong=\"H5921\"* father’s waist|strong=\"H4975\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H6258\"* whereas|strong=\"H6258\"* my|strong=\"H5921\"* father burdened you|strong=\"H5921\"* with|strong=\"H5921\"* a|strong=\"H3068\"* heavy|strong=\"H3515\"* yoke|strong=\"H5923\"*, I|strong=\"H5921\"* will|strong=\"H3254\"* add|strong=\"H3254\"* to|strong=\"H5921\"* your|strong=\"H5921\"* yoke|strong=\"H5923\"*. My|strong=\"H5921\"* father chastised|strong=\"H3256\"* you|strong=\"H5921\"* with|strong=\"H5921\"* whips|strong=\"H7752\"*, but|strong=\"H6258\"* I|strong=\"H5921\"* will|strong=\"H3254\"* chastise|strong=\"H3256\"* you|strong=\"H5921\"* with|strong=\"H5921\"* scorpions|strong=\"H6137\"*.’”" + }, + { + "verseNum": 12, + "text": "So|strong=\"H7725\"* Jeroboam|strong=\"H3379\"* and|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* came|strong=\"H5971\"* to|strong=\"H1696\"* Rehoboam|strong=\"H7346\"* the|strong=\"H3605\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, as|strong=\"H3117\"* the|strong=\"H3605\"* king|strong=\"H4428\"* asked|strong=\"H1696\"*, saying|strong=\"H1696\"*, “Come|strong=\"H7725\"* to|strong=\"H1696\"* me|strong=\"H7725\"* again|strong=\"H7725\"* the|strong=\"H3605\"* third|strong=\"H7992\"* day|strong=\"H3117\"*.”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H5800\"* king|strong=\"H4428\"* answered|strong=\"H6030\"* them|strong=\"H6030\"* roughly|strong=\"H7186\"*; and|strong=\"H6030\"* King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"* abandoned|strong=\"H5800\"* the|strong=\"H5800\"* counsel|strong=\"H6098\"* of|strong=\"H4428\"* the|strong=\"H5800\"* old|strong=\"H2205\"* men|strong=\"H2205\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H6098\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5921\"* after|strong=\"H5921\"* the|strong=\"H5921\"* counsel|strong=\"H6098\"* of|strong=\"H5921\"* the|strong=\"H5921\"* young|strong=\"H3206\"* men|strong=\"H3206\"*, saying|strong=\"H1696\"*, “My|strong=\"H5921\"* father made|strong=\"H3513\"* your|strong=\"H5921\"* yoke|strong=\"H5923\"* heavy|strong=\"H3513\"*, but|strong=\"H1696\"* I|strong=\"H5921\"* will|strong=\"H3206\"* add|strong=\"H3254\"* to|strong=\"H1696\"* it|strong=\"H5921\"*. My|strong=\"H5921\"* father chastised|strong=\"H3256\"* you|strong=\"H5921\"* with|strong=\"H1696\"* whips|strong=\"H7752\"*, but|strong=\"H1696\"* I|strong=\"H5921\"* will|strong=\"H3206\"* chastise|strong=\"H3256\"* you|strong=\"H5921\"* with|strong=\"H1696\"* scorpions|strong=\"H6137\"*.”" + }, + { + "verseNum": 15, + "text": "So|strong=\"H4616\"* the|strong=\"H8085\"* king|strong=\"H4428\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1696\"* the|strong=\"H8085\"* people|strong=\"H5971\"*; for|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3068\"* brought|strong=\"H1961\"* about|strong=\"H1961\"* by|strong=\"H3027\"* God|strong=\"H3068\"*, that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* might|strong=\"H3068\"* establish|strong=\"H6965\"* his|strong=\"H3068\"* word|strong=\"H1697\"*, which|strong=\"H3068\"* he|strong=\"H3588\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* Ahijah the|strong=\"H8085\"* Shilonite|strong=\"H7888\"* to|strong=\"H1696\"* Jeroboam|strong=\"H3379\"* the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* didn’t listen|strong=\"H8085\"* to|strong=\"H7725\"* them|strong=\"H1992\"*, the|strong=\"H3605\"* people|strong=\"H5971\"* answered|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, saying, “What|strong=\"H4100\"* portion|strong=\"H2506\"* do|strong=\"H4100\"* we|strong=\"H3068\"* have|strong=\"H5971\"* in|strong=\"H3478\"* David|strong=\"H1732\"*? We|strong=\"H3588\"* don’t have|strong=\"H5971\"* an|strong=\"H7200\"* inheritance|strong=\"H5159\"* in|strong=\"H3478\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"*! Every|strong=\"H3605\"* man|strong=\"H1121\"* to|strong=\"H7725\"* your|strong=\"H3605\"* tents, Israel|strong=\"H3478\"*! Now|strong=\"H6258\"* see|strong=\"H7200\"* to|strong=\"H7725\"* your|strong=\"H3605\"* own|strong=\"H5971\"* house|strong=\"H1004\"*, David|strong=\"H1732\"*.” So|strong=\"H3808\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* departed|strong=\"H3212\"* to|strong=\"H7725\"* their|strong=\"H3605\"* tents." + }, + { + "verseNum": 17, + "text": "But|strong=\"H5921\"* as|strong=\"H4427\"* for|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Rehoboam|strong=\"H7346\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H7971\"* King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"* sent|strong=\"H7971\"* Hadoram|strong=\"H1913\"*, who|strong=\"H1121\"* was|strong=\"H3478\"* over|strong=\"H5921\"* the|strong=\"H5921\"* men|strong=\"H1121\"* subject to|strong=\"H3478\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"*; and|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* stoned|strong=\"H7275\"* him|strong=\"H5921\"* to|strong=\"H3478\"* death|strong=\"H4191\"* with|strong=\"H5921\"* stones. King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"* hurried|strong=\"H5127\"* to|strong=\"H3478\"* get|strong=\"H5927\"* himself up|strong=\"H5927\"* to|strong=\"H3478\"* his|strong=\"H7971\"* chariot|strong=\"H4818\"*, to|strong=\"H3478\"* flee|strong=\"H5127\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 19, + "text": "So|strong=\"H2088\"* Israel|strong=\"H3478\"* rebelled|strong=\"H6586\"* against|strong=\"H6586\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H7725\"* Rehoboam|strong=\"H7346\"* had|strong=\"H3478\"* come|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*, he|strong=\"H6213\"* assembled|strong=\"H6950\"* the|strong=\"H6213\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* and|strong=\"H3967\"* Benjamin|strong=\"H1144\"*, one|strong=\"H6213\"* hundred|strong=\"H3967\"* eighty|strong=\"H8084\"* thousand chosen men|strong=\"H6213\"* who|strong=\"H3478\"* were|strong=\"H3478\"* warriors|strong=\"H4421\"*, to|strong=\"H7725\"* fight|strong=\"H3898\"* against|strong=\"H5973\"* Israel|strong=\"H3478\"*, to|strong=\"H7725\"* bring|strong=\"H7725\"* the|strong=\"H6213\"* kingdom|strong=\"H4467\"* again|strong=\"H7725\"* to|strong=\"H7725\"* Rehoboam|strong=\"H7346\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Shemaiah|strong=\"H8098\"* the|strong=\"H3068\"* man of|strong=\"H3068\"* God|strong=\"H3068\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 3, + "text": "“Speak to|strong=\"H3478\"* Rehoboam|strong=\"H7346\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, saying," + }, + { + "verseNum": 4, + "text": "‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3212\"* up|strong=\"H5927\"*, nor|strong=\"H3808\"* fight|strong=\"H3898\"* against|strong=\"H5973\"* your|strong=\"H3068\"* brothers! Every|strong=\"H3212\"* man|strong=\"H2088\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H3068\"* house|strong=\"H1004\"*; for|strong=\"H3588\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* is|strong=\"H3068\"* of|strong=\"H1004\"* me|strong=\"H7725\"*.”’” So|strong=\"H3541\"* they|strong=\"H3588\"* listened|strong=\"H8085\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"*, and|strong=\"H3068\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* going|strong=\"H5927\"* against|strong=\"H5973\"* Jeroboam|strong=\"H3379\"*." + }, + { + "verseNum": 5, + "text": "Rehoboam|strong=\"H7346\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* built|strong=\"H1129\"* cities|strong=\"H5892\"* for|strong=\"H3427\"* defense|strong=\"H4692\"* in|strong=\"H3427\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H1129\"* built|strong=\"H1129\"* Bethlehem|strong=\"H1035\"*, Etam|strong=\"H5862\"*, Tekoa|strong=\"H8620\"*," + }, + { + "verseNum": 7, + "text": "Beth Zur, Soco|strong=\"H7755\"*, Adullam|strong=\"H5725\"*," + }, + { + "verseNum": 8, + "text": "Gath|strong=\"H1661\"*, Mareshah|strong=\"H4762\"*, Ziph|strong=\"H2128\"*," + }, + { + "verseNum": 9, + "text": "Adoraim, Lachish|strong=\"H3923\"*, Azekah|strong=\"H5825\"*," + }, + { + "verseNum": 10, + "text": "Zorah|strong=\"H6881\"*, Aijalon, and|strong=\"H3063\"* Hebron|strong=\"H2275\"*, which|strong=\"H5892\"* are|strong=\"H5892\"* fortified|strong=\"H4694\"* cities|strong=\"H5892\"* in|strong=\"H5892\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* in|strong=\"H5892\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H5414\"* fortified|strong=\"H4694\"* the|strong=\"H5414\"* strongholds and|strong=\"H2388\"* put|strong=\"H5414\"* captains|strong=\"H5057\"* in|strong=\"H5414\"* them|strong=\"H5414\"* with|strong=\"H8081\"* stores of|strong=\"H8081\"* food|strong=\"H3978\"*, oil|strong=\"H8081\"* and|strong=\"H2388\"* wine|strong=\"H3196\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H3605\"* put|strong=\"H2388\"* shields|strong=\"H6793\"* and|strong=\"H3063\"* spears|strong=\"H7420\"* in|strong=\"H5892\"* every|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H3063\"* made|strong=\"H2388\"* them|strong=\"H1961\"* exceedingly|strong=\"H3966\"* strong|strong=\"H2388\"*. Judah|strong=\"H3063\"* and|strong=\"H3063\"* Benjamin|strong=\"H1144\"* belonged|strong=\"H1961\"* to|strong=\"H1961\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3478\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* who|strong=\"H3605\"* were|strong=\"H3478\"* in|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* stood|strong=\"H3320\"* with|strong=\"H5921\"* him|strong=\"H5921\"* out|strong=\"H5921\"* of|strong=\"H1366\"* all|strong=\"H3605\"* their|strong=\"H3605\"* territory|strong=\"H1366\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"* left|strong=\"H5800\"* their|strong=\"H3068\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* and|strong=\"H1121\"* their|strong=\"H3068\"* possessions, and|strong=\"H1121\"* came|strong=\"H3068\"* to|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*; for|strong=\"H3588\"* Jeroboam|strong=\"H3379\"* and|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"* cast|strong=\"H3068\"* them|strong=\"H1121\"* off|strong=\"H2186\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* should|strong=\"H3068\"* not|strong=\"H3588\"* execute the|strong=\"H3588\"* priest|strong=\"H3547\"*’s office to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H6213\"* himself|strong=\"H6213\"* appointed|strong=\"H5975\"* priests|strong=\"H3548\"* for|strong=\"H6213\"* the|strong=\"H6213\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, for|strong=\"H6213\"* the|strong=\"H6213\"* male|strong=\"H8163\"* goat|strong=\"H8163\"* and|strong=\"H3548\"* calf|strong=\"H5695\"* idols which|strong=\"H1116\"* he|strong=\"H6213\"* had|strong=\"H3548\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 16, + "text": "After|strong=\"H1245\"* them|strong=\"H5414\"*, out|strong=\"H5414\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, those|strong=\"H3605\"* who|strong=\"H3605\"* set|strong=\"H5414\"* their|strong=\"H3605\"* hearts|strong=\"H3824\"* to|strong=\"H3478\"* seek|strong=\"H1245\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, came|strong=\"H3478\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3478\"* sacrifice|strong=\"H2076\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* their|strong=\"H3605\"* fathers." + }, + { + "verseNum": 17, + "text": "So|strong=\"H1980\"* they|strong=\"H3588\"* strengthened|strong=\"H2388\"* the|strong=\"H3588\"* kingdom|strong=\"H4438\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* made|strong=\"H2388\"* Rehoboam|strong=\"H7346\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"* strong|strong=\"H2388\"* for|strong=\"H3588\"* three|strong=\"H7969\"* years|strong=\"H8141\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* walked|strong=\"H1980\"* three|strong=\"H7969\"* years|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H3588\"* way|strong=\"H1870\"* of|strong=\"H1121\"* David|strong=\"H1732\"* and|strong=\"H1121\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 18, + "text": "Rehoboam|strong=\"H7346\"* took|strong=\"H3947\"* a|strong=\"H3068\"* wife for|strong=\"H1121\"* himself, Mahalath|strong=\"H4258\"* the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Jerimoth the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"* and|strong=\"H1121\"* of|strong=\"H1121\"* Abihail the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Eliab the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"*." + }, + { + "verseNum": 19, + "text": "She bore|strong=\"H3205\"* him|strong=\"H3205\"* sons|strong=\"H1121\"*: Jeush|strong=\"H3266\"*, Shemariah|strong=\"H8114\"*, and|strong=\"H1121\"* Zaham|strong=\"H2093\"*." + }, + { + "verseNum": 20, + "text": "After her|strong=\"H3947\"*, he|strong=\"H3947\"* took|strong=\"H3947\"* Maacah|strong=\"H4601\"* the|strong=\"H3947\"* granddaughter|strong=\"H1323\"* of|strong=\"H1323\"* Absalom; and|strong=\"H1323\"* she bore|strong=\"H3205\"* him|strong=\"H3205\"* Abijah, Attai|strong=\"H6262\"*, Ziza|strong=\"H2124\"*, and|strong=\"H1323\"* Shelomith|strong=\"H8019\"*." + }, + { + "verseNum": 21, + "text": "Rehoboam|strong=\"H7346\"* loved Maacah|strong=\"H4601\"* the|strong=\"H3605\"* granddaughter|strong=\"H1323\"* of|strong=\"H1121\"* Absalom above all|strong=\"H3605\"* his|strong=\"H3605\"* wives and|strong=\"H1121\"* his|strong=\"H3605\"* concubines|strong=\"H6370\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* took|strong=\"H5375\"* eighteen|strong=\"H8083\"* wives and|strong=\"H1121\"* sixty|strong=\"H8346\"* concubines|strong=\"H6370\"*, and|strong=\"H1121\"* became|strong=\"H3205\"* the|strong=\"H3605\"* father|strong=\"H3205\"* of|strong=\"H1121\"* twenty-eight|strong=\"H6242\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* sixty|strong=\"H8346\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 22, + "text": "Rehoboam|strong=\"H7346\"* appointed|strong=\"H5975\"* Abijah the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maacah|strong=\"H4601\"* to|strong=\"H1121\"* be|strong=\"H1121\"* chief|strong=\"H7218\"*, the|strong=\"H3588\"* prince|strong=\"H5057\"* among|strong=\"H7218\"* his|strong=\"H3588\"* brothers|strong=\"H1121\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* intended to|strong=\"H1121\"* make|strong=\"H4427\"* him|strong=\"H4427\"* king|strong=\"H4427\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H3605\"* dealt wisely, and|strong=\"H1121\"* dispersed|strong=\"H6555\"* some|strong=\"H3605\"* of|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* lands of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, to|strong=\"H5414\"* every|strong=\"H3605\"* fortified|strong=\"H4694\"* city|strong=\"H5892\"*. He|strong=\"H3605\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* food|strong=\"H4202\"* in|strong=\"H5892\"* abundance|strong=\"H7230\"*; and|strong=\"H1121\"* he|strong=\"H3605\"* sought|strong=\"H7592\"* many|strong=\"H7230\"* wives for|strong=\"H1121\"* them|strong=\"H5414\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* the|strong=\"H3605\"* kingdom|strong=\"H4438\"* of|strong=\"H3068\"* Rehoboam|strong=\"H7346\"* was|strong=\"H3068\"* established|strong=\"H3559\"* and|strong=\"H3478\"* he|strong=\"H3068\"* was|strong=\"H3068\"* strong|strong=\"H2393\"*, he|strong=\"H3068\"* abandoned|strong=\"H5800\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 2, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"*, Shishak|strong=\"H7895\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* came|strong=\"H1961\"* up|strong=\"H5927\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* trespassed|strong=\"H4603\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 3, + "text": "with|strong=\"H5973\"* twelve hundred|strong=\"H3967\"* chariots|strong=\"H7393\"* and|strong=\"H3967\"* sixty|strong=\"H8346\"* thousand horsemen|strong=\"H6571\"*. The|strong=\"H5973\"* people|strong=\"H5971\"* were|strong=\"H5971\"* without number|strong=\"H4557\"* who|strong=\"H5971\"* came|strong=\"H4714\"* with|strong=\"H5973\"* him|strong=\"H5973\"* out of|strong=\"H4557\"* Egypt|strong=\"H4714\"*: the|strong=\"H5973\"* Lubim|strong=\"H3864\"*, the|strong=\"H5973\"* Sukkiim|strong=\"H5525\"*, and|strong=\"H3967\"* the|strong=\"H5973\"* Ethiopians|strong=\"H3569\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H5704\"* took|strong=\"H3920\"* the|strong=\"H5704\"* fortified|strong=\"H4694\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* belonged to|strong=\"H5704\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* came|strong=\"H3063\"* to|strong=\"H5704\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"H3541\"* Shemaiah|strong=\"H8098\"* the|strong=\"H6440\"* prophet|strong=\"H5030\"* came|strong=\"H3068\"* to|strong=\"H3068\"* Rehoboam|strong=\"H7346\"* and|strong=\"H3063\"* to|strong=\"H3068\"* the|strong=\"H6440\"* princes|strong=\"H8269\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, who|strong=\"H3068\"* were|strong=\"H3063\"* gathered together to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* because|strong=\"H6440\"* of|strong=\"H3068\"* Shishak|strong=\"H7895\"*, and|strong=\"H3063\"* said to|strong=\"H3068\"* them|strong=\"H6440\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘You|strong=\"H6440\"* have|strong=\"H3068\"* forsaken|strong=\"H5800\"* me|strong=\"H6440\"*, therefore|strong=\"H3068\"* I|strong=\"H3541\"* have|strong=\"H3068\"* also|strong=\"H3068\"* left|strong=\"H5800\"* you|strong=\"H6440\"* in|strong=\"H3068\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Shishak|strong=\"H7895\"*.’”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H4428\"* the|strong=\"H3068\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* the|strong=\"H3068\"* king|strong=\"H4428\"* humbled|strong=\"H3665\"* themselves|strong=\"H3665\"*; and|strong=\"H3478\"* they|strong=\"H3068\"* said, “Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* righteous|strong=\"H6662\"*.”" + }, + { + "verseNum": 7, + "text": "When|strong=\"H3588\"* Yahweh|strong=\"H3068\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H1992\"* humbled|strong=\"H3665\"* themselves|strong=\"H1992\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Shemaiah|strong=\"H8098\"*, saying|strong=\"H1697\"*, “They|strong=\"H1992\"* have|strong=\"H1961\"* humbled|strong=\"H3665\"* themselves|strong=\"H1992\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* destroy|strong=\"H7843\"* them|strong=\"H5414\"*, but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* grant|strong=\"H5414\"* them|strong=\"H5414\"* some|strong=\"H4592\"* deliverance|strong=\"H6413\"*, and|strong=\"H3068\"* my|strong=\"H5414\"* wrath|strong=\"H2534\"* won’t be|strong=\"H1961\"* poured|strong=\"H5413\"* out|strong=\"H5414\"* on|strong=\"H7200\"* Jerusalem|strong=\"H3389\"* by|strong=\"H3027\"* the|strong=\"H7200\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Shishak|strong=\"H7895\"*." + }, + { + "verseNum": 8, + "text": "Nevertheless|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* his|strong=\"H3045\"* servants|strong=\"H5650\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H1961\"* know|strong=\"H3045\"* my|strong=\"H3045\"* service|strong=\"H5656\"*, and|strong=\"H5650\"* the|strong=\"H3588\"* service|strong=\"H5656\"* of|strong=\"H5650\"* the|strong=\"H3588\"* kingdoms|strong=\"H4467\"* of|strong=\"H5650\"* the|strong=\"H3588\"* countries.”" + }, + { + "verseNum": 9, + "text": "So|strong=\"H6213\"* Shishak|strong=\"H7895\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* came|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3068\"* took|strong=\"H3947\"* away|strong=\"H3947\"* the|strong=\"H3605\"* treasures of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* the|strong=\"H3605\"* treasures of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*. He|strong=\"H6213\"* took|strong=\"H3947\"* it|strong=\"H5921\"* all|strong=\"H3605\"* away|strong=\"H3947\"*. He|strong=\"H6213\"* also|strong=\"H3068\"* took|strong=\"H3947\"* away|strong=\"H3947\"* the|strong=\"H3605\"* shields|strong=\"H4043\"* of|strong=\"H4428\"* gold|strong=\"H2091\"* which|strong=\"H3068\"* Solomon|strong=\"H8010\"* had|strong=\"H3068\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 10, + "text": "King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"* made|strong=\"H6213\"* shields|strong=\"H4043\"* of|strong=\"H4428\"* bronze|strong=\"H5178\"* in|strong=\"H5921\"* their|strong=\"H5921\"* place|strong=\"H8478\"*, and|strong=\"H4428\"* committed|strong=\"H6213\"* them|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5921\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H5921\"* guard|strong=\"H8104\"*, who|strong=\"H8104\"* kept|strong=\"H8104\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 11, + "text": "As|strong=\"H1961\"* often|strong=\"H1767\"* as|strong=\"H1961\"* the|strong=\"H5375\"* king|strong=\"H4428\"* entered into|strong=\"H7725\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, the|strong=\"H5375\"* guard|strong=\"H7323\"* came|strong=\"H1961\"* and|strong=\"H3068\"* bore|strong=\"H5375\"* them|strong=\"H7725\"*, then|strong=\"H1961\"* brought|strong=\"H7725\"* them|strong=\"H7725\"* back|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H5375\"* guard|strong=\"H7323\"* room|strong=\"H1004\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"H1961\"* he|strong=\"H3068\"* humbled|strong=\"H3665\"* himself|strong=\"H3665\"*, Yahweh|strong=\"H3068\"*’s wrath turned|strong=\"H7725\"* from|strong=\"H4480\"* him|strong=\"H7725\"*, so|strong=\"H4480\"* as|strong=\"H1697\"* not|strong=\"H3808\"* to|strong=\"H7725\"* destroy|strong=\"H7843\"* him|strong=\"H7725\"* altogether|strong=\"H3617\"*. Moreover|strong=\"H1571\"*, there|strong=\"H1961\"* were|strong=\"H1961\"* good|strong=\"H2896\"* things|strong=\"H1697\"* found|strong=\"H1571\"* in|strong=\"H3068\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 13, + "text": "So|strong=\"H7760\"* King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"* strengthened|strong=\"H2388\"* himself|strong=\"H2388\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"* and|strong=\"H1121\"* reigned|strong=\"H4427\"*; for|strong=\"H3588\"* Rehoboam|strong=\"H7346\"* was|strong=\"H3068\"* forty-one years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H3588\"* he|strong=\"H3588\"* began|strong=\"H3478\"* to|strong=\"H3478\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H3588\"* reigned|strong=\"H4427\"* seventeen|strong=\"H7651\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*, the|strong=\"H3605\"* city|strong=\"H5892\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* chosen out|strong=\"H2388\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* put|strong=\"H7760\"* his|strong=\"H3605\"* name|strong=\"H8034\"* there|strong=\"H8033\"*. His|strong=\"H3605\"* mother’s name|strong=\"H8034\"* was|strong=\"H3068\"* Naamah|strong=\"H5279\"* the|strong=\"H3605\"* Ammonitess|strong=\"H5985\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3588\"* did|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* didn’t set|strong=\"H3559\"* his|strong=\"H3068\"* heart|strong=\"H3820\"* to|strong=\"H3068\"* seek|strong=\"H1875\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H3117\"* Rehoboam|strong=\"H7346\"*, first|strong=\"H7223\"* and|strong=\"H3117\"* last, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H3117\"* the|strong=\"H3605\"* histories of|strong=\"H3117\"* Shemaiah|strong=\"H8098\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* and|strong=\"H3117\"* of|strong=\"H3117\"* Iddo|strong=\"H5714\"* the|strong=\"H3605\"* seer|strong=\"H2374\"*, in|strong=\"H3117\"* the|strong=\"H3605\"* genealogies|strong=\"H3187\"*? There|strong=\"H1992\"* were|strong=\"H3117\"* wars|strong=\"H4421\"* between|strong=\"H4421\"* Rehoboam|strong=\"H7346\"* and|strong=\"H3117\"* Jeroboam|strong=\"H3379\"* continually|strong=\"H3605\"*." + }, + { + "verseNum": 16, + "text": "Rehoboam|strong=\"H7346\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* was|strong=\"H1732\"* buried|strong=\"H6912\"* in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Abijah his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* eighteenth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Jeroboam|strong=\"H3379\"*, Abijah began|strong=\"H3063\"* to|strong=\"H5921\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H4480\"* reigned|strong=\"H4427\"* three|strong=\"H7969\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H1961\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Micaiah|strong=\"H4322\"* the|strong=\"H4480\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Uriel of|strong=\"H1323\"* Gibeah|strong=\"H1390\"*. There|strong=\"H1961\"* was|strong=\"H8034\"* war|strong=\"H4421\"* between|strong=\"H4421\"* Abijah and|strong=\"H3389\"* Jeroboam|strong=\"H3379\"*." + }, + { + "verseNum": 3, + "text": "Abijah joined|strong=\"H6186\"* battle|strong=\"H4421\"* with|strong=\"H5973\"* an army|strong=\"H2428\"* of|strong=\"H1368\"* valiant|strong=\"H2428\"* men|strong=\"H1368\"* of|strong=\"H1368\"* war|strong=\"H4421\"*, even four hundred|strong=\"H3967\"* thousand chosen men|strong=\"H1368\"*; and|strong=\"H3967\"* Jeroboam|strong=\"H3379\"* set|strong=\"H6186\"* the|strong=\"H3379\"* battle|strong=\"H4421\"* in|strong=\"H4421\"* array|strong=\"H6186\"* against|strong=\"H5973\"* him|strong=\"H5973\"* with|strong=\"H5973\"* eight|strong=\"H8083\"* hundred|strong=\"H3967\"* thousand chosen men|strong=\"H1368\"*, who|strong=\"H1368\"* were|strong=\"H2428\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1368\"* valor|strong=\"H2428\"*." + }, + { + "verseNum": 4, + "text": "Abijah stood|strong=\"H6965\"* up|strong=\"H6965\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Zemaraim|strong=\"H6787\"*, which|strong=\"H3478\"* is|strong=\"H3478\"* in|strong=\"H5921\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim, and|strong=\"H6965\"* said|strong=\"H8085\"*, “Hear|strong=\"H8085\"* me|strong=\"H5921\"*, Jeroboam|strong=\"H3379\"* and|strong=\"H6965\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*:" + }, + { + "verseNum": 5, + "text": "Ought you|strong=\"H3588\"* not|strong=\"H3808\"* to|strong=\"H3478\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, gave|strong=\"H5414\"* the|strong=\"H5921\"* kingdom|strong=\"H4467\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* David|strong=\"H1732\"* forever|strong=\"H5769\"*, even|strong=\"H3588\"* to|strong=\"H3478\"* him|strong=\"H5414\"* and|strong=\"H1121\"* to|strong=\"H3478\"* his|strong=\"H5414\"* sons|strong=\"H1121\"* by|strong=\"H5921\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H1121\"* salt|strong=\"H4417\"*?" + }, + { + "verseNum": 6, + "text": "Yet|strong=\"H5921\"* Jeroboam|strong=\"H3379\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, the|strong=\"H5921\"* servant|strong=\"H5650\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"*, rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H1121\"* rebelled|strong=\"H4775\"* against|strong=\"H5921\"* his|strong=\"H1732\"* lord." + }, + { + "verseNum": 7, + "text": "Worthless|strong=\"H1100\"* men|strong=\"H5288\"* were|strong=\"H1961\"* gathered|strong=\"H6908\"* to|strong=\"H1961\"* him|strong=\"H6440\"*, wicked|strong=\"H1100\"* fellows|strong=\"H1121\"* who|strong=\"H1121\"* strengthened|strong=\"H2388\"* themselves|strong=\"H6908\"* against|strong=\"H5921\"* Rehoboam|strong=\"H7346\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*, when|strong=\"H1961\"* Rehoboam|strong=\"H7346\"* was|strong=\"H1961\"* young|strong=\"H5288\"* and|strong=\"H1121\"* tender|strong=\"H7390\"* hearted, and|strong=\"H1121\"* could|strong=\"H3824\"* not|strong=\"H3808\"* withstand|strong=\"H2388\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "“Now|strong=\"H6258\"* you|strong=\"H6440\"* intend to|strong=\"H3068\"* withstand|strong=\"H2388\"* the|strong=\"H6440\"* kingdom|strong=\"H4467\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"*. You|strong=\"H6440\"* are|strong=\"H1121\"* a|strong=\"H3068\"* great|strong=\"H7227\"* multitude|strong=\"H1995\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* golden|strong=\"H2091\"* calves|strong=\"H5695\"* which|strong=\"H3068\"* Jeroboam|strong=\"H3379\"* made|strong=\"H6213\"* you|strong=\"H6440\"* for|strong=\"H6213\"* gods are|strong=\"H1121\"* with|strong=\"H5973\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 9, + "text": "Haven’t you|strong=\"H3605\"* driven|strong=\"H5080\"* out|strong=\"H5080\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, and|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, and|strong=\"H1121\"* made|strong=\"H6213\"* priests|strong=\"H3548\"* for|strong=\"H6213\"* yourselves|strong=\"H3027\"* according|strong=\"H3027\"* to|strong=\"H3068\"* the|strong=\"H3605\"* ways of|strong=\"H1121\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H1121\"* other|strong=\"H3605\"* lands? Whoever|strong=\"H3605\"* comes|strong=\"H1961\"* to|strong=\"H3068\"* consecrate|strong=\"H4390\"* himself|strong=\"H3027\"* with|strong=\"H4390\"* a|strong=\"H3068\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* and|strong=\"H1121\"* seven|strong=\"H7651\"* rams may|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* priest|strong=\"H3548\"* of|strong=\"H1121\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H5971\"* no|strong=\"H3808\"* gods." + }, + { + "verseNum": 10, + "text": "“But|strong=\"H3808\"* as|strong=\"H3068\"* for|strong=\"H3068\"* us|strong=\"H5800\"*, Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H1121\"* we|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* forsaken|strong=\"H5800\"* him|strong=\"H5800\"*. We have|strong=\"H3068\"* priests|strong=\"H3548\"* serving|strong=\"H8334\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, and|strong=\"H1121\"* the|strong=\"H3068\"* Levites|strong=\"H3881\"* in|strong=\"H3068\"* their|strong=\"H3068\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3588\"* burn|strong=\"H6999\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* every|strong=\"H1242\"* morning|strong=\"H1242\"* and|strong=\"H3068\"* every|strong=\"H1242\"* evening|strong=\"H6153\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* and|strong=\"H3068\"* sweet|strong=\"H5561\"* incense|strong=\"H7004\"*. They|strong=\"H3588\"* also|strong=\"H3068\"* set|strong=\"H1197\"* the|strong=\"H5921\"* show bread|strong=\"H3899\"* in|strong=\"H5921\"* order on|strong=\"H5921\"* the|strong=\"H5921\"* pure|strong=\"H2889\"* table|strong=\"H7979\"*, and|strong=\"H3068\"* care|strong=\"H4931\"* for|strong=\"H3588\"* the|strong=\"H5921\"* gold|strong=\"H2091\"* lamp|strong=\"H5216\"* stand with|strong=\"H3068\"* its|strong=\"H5921\"* lamps|strong=\"H5216\"*, to|strong=\"H3068\"* burn|strong=\"H6999\"* every|strong=\"H1242\"* evening|strong=\"H6153\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* keep|strong=\"H8104\"* the|strong=\"H5921\"* instruction of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* forsaken|strong=\"H5800\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "Behold|strong=\"H2009\"*, God|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H5973\"* us|strong=\"H5921\"* at|strong=\"H5921\"* our|strong=\"H3068\"* head|strong=\"H7218\"*, and|strong=\"H1121\"* his|strong=\"H3068\"* priests|strong=\"H3548\"* with|strong=\"H5973\"* the|strong=\"H5921\"* trumpets|strong=\"H2689\"* of|strong=\"H1121\"* alarm|strong=\"H8643\"* to|strong=\"H3478\"* sound|strong=\"H7321\"* an|strong=\"H3588\"* alarm|strong=\"H8643\"* against|strong=\"H5921\"* you|strong=\"H3588\"*. Children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, don’t fight|strong=\"H3898\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H1121\"* your|strong=\"H3068\"* fathers; for|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* prosper|strong=\"H6743\"*.”" + }, + { + "verseNum": 13, + "text": "But|strong=\"H1961\"* Jeroboam|strong=\"H3379\"* caused|strong=\"H1961\"* an|strong=\"H1961\"* ambush|strong=\"H3993\"* to|strong=\"H1961\"* come|strong=\"H1961\"* about|strong=\"H5437\"* behind them|strong=\"H6440\"*; so|strong=\"H1961\"* they|strong=\"H6440\"* were|strong=\"H1961\"* before|strong=\"H6440\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* the|strong=\"H6440\"* ambush|strong=\"H3993\"* was|strong=\"H1961\"* behind them|strong=\"H6440\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H3068\"* Judah|strong=\"H3063\"* looked|strong=\"H6437\"* back|strong=\"H6437\"*, behold|strong=\"H2009\"*, the|strong=\"H6440\"* battle|strong=\"H4421\"* was|strong=\"H3068\"* before|strong=\"H6440\"* and|strong=\"H3063\"* behind them|strong=\"H6440\"*; and|strong=\"H3063\"* they|strong=\"H3068\"* cried|strong=\"H6817\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3063\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* sounded|strong=\"H2690\"* with|strong=\"H3068\"* the|strong=\"H6440\"* trumpets|strong=\"H2689\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H1961\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H6440\"* Judah|strong=\"H3063\"* gave|strong=\"H7321\"* a|strong=\"H3068\"* shout|strong=\"H7321\"*. As|strong=\"H1961\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H6440\"* Judah|strong=\"H3063\"* shouted|strong=\"H7321\"*, God struck|strong=\"H5062\"* Jeroboam|strong=\"H3379\"* and|strong=\"H3063\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* before|strong=\"H6440\"* Abijah and|strong=\"H3063\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* fled|strong=\"H5127\"* before|strong=\"H6440\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* God|strong=\"H5414\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* their|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 17, + "text": "Abijah and|strong=\"H3967\"* his|strong=\"H5221\"* people|strong=\"H5971\"* killed|strong=\"H5221\"* them|strong=\"H5221\"* with|strong=\"H5971\"* a|strong=\"H3068\"* great|strong=\"H7227\"* slaughter|strong=\"H4347\"*, so five|strong=\"H2568\"* hundred|strong=\"H3967\"* thousand chosen men|strong=\"H5971\"* of|strong=\"H5971\"* Israel|strong=\"H3478\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* slain|strong=\"H2491\"*." + }, + { + "verseNum": 18, + "text": "Thus the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* brought|strong=\"H3478\"* under|strong=\"H5921\"* at|strong=\"H5921\"* that|strong=\"H3588\"* time|strong=\"H6256\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* prevailed, because|strong=\"H3588\"* they|strong=\"H3588\"* relied|strong=\"H8172\"* on|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H1121\"* their|strong=\"H3068\"* fathers." + }, + { + "verseNum": 19, + "text": "Abijah pursued|strong=\"H7291\"* Jeroboam|strong=\"H3379\"*, and|strong=\"H5892\"* took|strong=\"H3920\"* cities|strong=\"H5892\"* from|strong=\"H4480\"* him|strong=\"H7291\"*: Bethel|strong=\"H1008\"* with|strong=\"H5892\"* its|strong=\"H3920\"* villages|strong=\"H1323\"*, Jeshanah|strong=\"H3466\"* with|strong=\"H5892\"* its|strong=\"H3920\"* villages|strong=\"H1323\"*, and|strong=\"H5892\"* Ephron|strong=\"H6085\"* with|strong=\"H5892\"* its|strong=\"H3920\"* villages|strong=\"H1323\"*." + }, + { + "verseNum": 20, + "text": "Jeroboam|strong=\"H3379\"* didn’t recover|strong=\"H6113\"* strength|strong=\"H3581\"* again|strong=\"H5750\"* in|strong=\"H3068\"* the|strong=\"H3068\"* days|strong=\"H3117\"* of|strong=\"H3068\"* Abijah. Yahweh|strong=\"H3068\"* struck|strong=\"H5062\"* him|strong=\"H4191\"*, and|strong=\"H3068\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"H2388\"* Abijah grew|strong=\"H1121\"* mighty|strong=\"H2388\"* and|strong=\"H1121\"* took|strong=\"H5375\"* for|strong=\"H1121\"* himself|strong=\"H2388\"* fourteen|strong=\"H6240\"* wives, and|strong=\"H1121\"* became|strong=\"H3205\"* the|strong=\"H5375\"* father|strong=\"H3205\"* of|strong=\"H1121\"* twenty-two|strong=\"H6242\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* sixteen|strong=\"H8337\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H1870\"* rest|strong=\"H3499\"* of|strong=\"H1697\"* the|strong=\"H1870\"* acts|strong=\"H1697\"* of|strong=\"H1697\"* Abijah, his|strong=\"H5714\"* ways|strong=\"H1870\"*, and|strong=\"H1870\"* his|strong=\"H5714\"* sayings|strong=\"H1697\"* are|strong=\"H1697\"* written|strong=\"H3789\"* in|strong=\"H3789\"* the|strong=\"H1870\"* commentary of|strong=\"H1697\"* the|strong=\"H1870\"* prophet|strong=\"H5030\"* Iddo|strong=\"H5714\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "So|strong=\"H6213\"* Abijah slept with|strong=\"H3068\"* his|strong=\"H3068\"* fathers, and|strong=\"H3068\"* they|strong=\"H3068\"* buried|strong=\"H6213\"* him|strong=\"H6213\"* in|strong=\"H3068\"* David’s city; and|strong=\"H3068\"* Asa his|strong=\"H3068\"* son reigned in|strong=\"H3068\"* his|strong=\"H3068\"* place. In|strong=\"H3068\"* his|strong=\"H3068\"* days, the|strong=\"H6213\"* land was|strong=\"H3068\"* quiet ten years." + }, + { + "verseNum": 2, + "text": "Asa did that|strong=\"H4196\"* which|strong=\"H1116\"* was good and|strong=\"H4196\"* right in|strong=\"H5493\"* Yahweh|strong=\"H3068\"* his|strong=\"H5493\"* God’s eyes," + }, + { + "verseNum": 3, + "text": "for|strong=\"H6213\"* he|strong=\"H6213\"* took|strong=\"H3063\"* away the|strong=\"H6213\"* foreign altars and|strong=\"H3063\"* the|strong=\"H6213\"* high|strong=\"H6213\"* places, broke down the|strong=\"H6213\"* pillars, cut down the|strong=\"H6213\"* Asherah poles," + }, + { + "verseNum": 4, + "text": "and|strong=\"H3063\"* commanded Judah|strong=\"H3063\"* to|strong=\"H6440\"* seek Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God of|strong=\"H5892\"* their|strong=\"H3605\"* fathers, and|strong=\"H3063\"* to|strong=\"H6440\"* obey his|strong=\"H3605\"* law and|strong=\"H3063\"* command." + }, + { + "verseNum": 5, + "text": "Also|strong=\"H3068\"* he|strong=\"H3588\"* took|strong=\"H3063\"* away|strong=\"H5973\"* out of|strong=\"H3068\"* all|strong=\"H5973\"* the|strong=\"H3588\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* the|strong=\"H3588\"* high|strong=\"H1129\"* places and|strong=\"H3063\"* the|strong=\"H3588\"* sun images; and|strong=\"H3063\"* the|strong=\"H3588\"* kingdom was|strong=\"H3068\"* quiet|strong=\"H8252\"* before|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3588\"* built|strong=\"H1129\"* fortified|strong=\"H1129\"* cities|strong=\"H5892\"* in|strong=\"H3068\"* Judah|strong=\"H3063\"*; for|strong=\"H3588\"* the|strong=\"H6440\"* land|strong=\"H6440\"* was|strong=\"H3068\"* quiet|strong=\"H5117\"*, and|strong=\"H3063\"* he|strong=\"H3588\"* had|strong=\"H3068\"* no|strong=\"H6440\"* war in|strong=\"H3068\"* those|strong=\"H5437\"* years, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* given|strong=\"H5117\"* him|strong=\"H6440\"* rest|strong=\"H5117\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3605\"* he|strong=\"H3605\"* said to|strong=\"H1961\"* Judah|strong=\"H3063\"*, “Let|strong=\"H1961\"*’s build these|strong=\"H3605\"* cities and|strong=\"H3967\"* make|strong=\"H5375\"* walls around them|strong=\"H5375\"*, with|strong=\"H3605\"* towers|strong=\"H5375\"*, gates, and|strong=\"H3967\"* bars. The|strong=\"H3605\"* land is|strong=\"H3605\"* yet|strong=\"H3605\"* before|strong=\"H1961\"* us|strong=\"H1961\"*, because|strong=\"H3605\"* we|strong=\"H3068\"* have|strong=\"H1961\"* sought Yahweh|strong=\"H3068\"* our|strong=\"H3605\"* God. We|strong=\"H3605\"* have|strong=\"H1961\"* sought him|strong=\"H3605\"*, and|strong=\"H3967\"* he|strong=\"H3605\"* has|strong=\"H1961\"* given|strong=\"H5375\"* us|strong=\"H1961\"* rest|strong=\"H1961\"* on|strong=\"H1961\"* every|strong=\"H3605\"* side.” So|strong=\"H1961\"* they|strong=\"H3605\"* built and|strong=\"H3967\"* prospered." + }, + { + "verseNum": 8, + "text": "Asa had|strong=\"H2428\"* an|strong=\"H3318\"* army|strong=\"H2428\"* of|strong=\"H3318\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* thousand out|strong=\"H3318\"* of|strong=\"H3318\"* Judah who bore bucklers and|strong=\"H3967\"* spears, and|strong=\"H3967\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* eighty thousand out|strong=\"H3318\"* of|strong=\"H3318\"* Benjamin who bore shields and|strong=\"H3967\"* drew bows. All|strong=\"H5704\"* these were|strong=\"H2428\"* mighty|strong=\"H7969\"* men|strong=\"H2428\"* of|strong=\"H3318\"* valor|strong=\"H2428\"*." + }, + { + "verseNum": 9, + "text": "Zerah the|strong=\"H6440\"* Ethiopian came|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H6440\"* them|strong=\"H6440\"* with|strong=\"H6440\"* an|strong=\"H6440\"* army|strong=\"H4421\"* of|strong=\"H6440\"* a|strong=\"H3068\"* million troops and|strong=\"H6440\"* three hundred chariots, and|strong=\"H6440\"* he|strong=\"H6440\"* came|strong=\"H3318\"* to|strong=\"H3318\"* Mareshah|strong=\"H4762\"*." + }, + { + "verseNum": 10, + "text": "Then|strong=\"H2088\"* Asa went|strong=\"H3068\"* out|strong=\"H5921\"* to|strong=\"H3068\"* meet him|strong=\"H7121\"*, and|strong=\"H3068\"* they|strong=\"H3588\"* set the|strong=\"H5921\"* battle in|strong=\"H5921\"* array in|strong=\"H5921\"* the|strong=\"H5921\"* valley of|strong=\"H3068\"* Zephathah at|strong=\"H5921\"* Mareshah." + }, + { + "verseNum": 11, + "text": "Asa cried to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3063\"* said, “Yahweh|strong=\"H3068\"*, there|strong=\"H3068\"* is|strong=\"H3068\"* no|strong=\"H6440\"* one|strong=\"H3068\"* besides you|strong=\"H6440\"* to|strong=\"H3068\"* help, between the|strong=\"H6440\"* mighty and|strong=\"H3063\"* him|strong=\"H6440\"* who|strong=\"H3068\"* has|strong=\"H3068\"* no|strong=\"H6440\"* strength. Help us|strong=\"H6440\"*, Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*; for|strong=\"H6440\"* we|strong=\"H3068\"* rely on|strong=\"H3068\"* you|strong=\"H6440\"*, and|strong=\"H3063\"* in|strong=\"H3068\"* your|strong=\"H3068\"* name are|strong=\"H3068\"* we|strong=\"H3068\"* come|strong=\"H3063\"* against|strong=\"H6440\"* this|strong=\"H6440\"* multitude. Yahweh|strong=\"H3068\"*, you|strong=\"H6440\"* are|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*. Don’t let man|strong=\"H6440\"* prevail against|strong=\"H6440\"* you|strong=\"H6440\"*.”" + }, + { + "verseNum": 12, + "text": "So|strong=\"H5375\"* Yahweh|strong=\"H3068\"* struck|strong=\"H5307\"* the|strong=\"H6440\"* Ethiopians|strong=\"H3569\"* before|strong=\"H6440\"* Asa and|strong=\"H3068\"* before|strong=\"H6440\"* Judah; and|strong=\"H3068\"* the|strong=\"H6440\"* Ethiopians|strong=\"H3569\"* fled." + }, + { + "verseNum": 13, + "text": "Asa and|strong=\"H3068\"* the|strong=\"H3605\"* people who|strong=\"H3605\"* were|strong=\"H1961\"* with|strong=\"H3068\"* him|strong=\"H5921\"* pursued them|strong=\"H5921\"* to|strong=\"H3068\"* Gerar|strong=\"H1642\"*. So|strong=\"H1961\"* many|strong=\"H7227\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Ethiopians fell|strong=\"H1961\"* that|strong=\"H3588\"* they|strong=\"H3588\"* could not|strong=\"H1961\"* recover themselves|strong=\"H5921\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H1961\"* destroyed|strong=\"H5221\"* before|strong=\"H5921\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* before|strong=\"H5921\"* his|strong=\"H3605\"* army. Judah’s army carried|strong=\"H3068\"* away|strong=\"H3605\"* very|strong=\"H7227\"* much|strong=\"H7227\"* booty." + }, + { + "verseNum": 14, + "text": "They|strong=\"H5221\"* struck|strong=\"H5221\"* all|strong=\"H7725\"* the|strong=\"H5221\"* cities around|strong=\"H7725\"* Gerar, for|strong=\"H3389\"* the|strong=\"H5221\"* fear of|strong=\"H7230\"* Yahweh|strong=\"H3068\"* came|strong=\"H7725\"* on|strong=\"H3389\"* them|strong=\"H7725\"*. They|strong=\"H5221\"* plundered all|strong=\"H7725\"* the|strong=\"H5221\"* cities, for|strong=\"H3389\"* there|strong=\"H7725\"* was|strong=\"H3389\"* much|strong=\"H7230\"* plunder in|strong=\"H7725\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 15, + "text": "They also struck the tents of those who had livestock, and carried away sheep and camels in abundance, then returned to Jerusalem." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5921\"* Spirit|strong=\"H7307\"* of|strong=\"H1121\"* God came|strong=\"H1961\"* on|strong=\"H5921\"* Azariah|strong=\"H5838\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Oded|strong=\"H5752\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3068\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H6440\"* Asa, and|strong=\"H3063\"* said|strong=\"H8085\"* to|strong=\"H3318\"* him|strong=\"H6440\"*, “Hear|strong=\"H8085\"* me|strong=\"H6440\"*, Asa, and|strong=\"H3063\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Benjamin|strong=\"H1144\"*! Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H6440\"* while|strong=\"H1961\"* you|strong=\"H6440\"* are|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H6440\"*; and|strong=\"H3063\"* if|strong=\"H1961\"* you|strong=\"H6440\"* seek|strong=\"H1875\"* him|strong=\"H6440\"*, he|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* found|strong=\"H4672\"* by|strong=\"H3068\"* you|strong=\"H6440\"*; but|strong=\"H1961\"* if|strong=\"H1961\"* you|strong=\"H6440\"* forsake|strong=\"H5800\"* him|strong=\"H6440\"*, he|strong=\"H3068\"* will|strong=\"H3068\"* forsake|strong=\"H5800\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 3, + "text": "Now|strong=\"H3117\"* for|strong=\"H3117\"* a|strong=\"H3068\"* long|strong=\"H3117\"* time|strong=\"H3117\"* Israel|strong=\"H3478\"* was|strong=\"H3478\"* without|strong=\"H3808\"* the|strong=\"H3117\"* true God|strong=\"H3808\"*, without|strong=\"H3808\"* a|strong=\"H3068\"* teaching|strong=\"H8451\"* priest|strong=\"H3548\"*, and|strong=\"H3478\"* without|strong=\"H3808\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H7725\"* when|strong=\"H7725\"* in|strong=\"H5921\"* their|strong=\"H3068\"* distress|strong=\"H6862\"* they|strong=\"H3068\"* turned|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* sought|strong=\"H1245\"* him|strong=\"H5921\"*, he|strong=\"H3068\"* was|strong=\"H3068\"* found|strong=\"H4672\"* by|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "In|strong=\"H3427\"* those|strong=\"H1992\"* times|strong=\"H7227\"* there|strong=\"H3427\"* was|strong=\"H3605\"* no|strong=\"H3605\"* peace|strong=\"H7965\"* to|strong=\"H3318\"* him|strong=\"H5921\"* who|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, nor|strong=\"H3588\"* to|strong=\"H3318\"* him|strong=\"H5921\"* who|strong=\"H3605\"* came|strong=\"H3318\"* in|strong=\"H3427\"*; but|strong=\"H3588\"* great|strong=\"H7227\"* troubles were|strong=\"H1992\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3605\"* lands." + }, + { + "verseNum": 6, + "text": "They|strong=\"H3588\"* were|strong=\"H1471\"* broken|strong=\"H3807\"* in|strong=\"H5892\"* pieces|strong=\"H3807\"*, nation|strong=\"H1471\"* against|strong=\"H1471\"* nation|strong=\"H1471\"*, and|strong=\"H5892\"* city|strong=\"H5892\"* against|strong=\"H1471\"* city|strong=\"H5892\"*; for|strong=\"H3588\"* God troubled|strong=\"H2000\"* them|strong=\"H2000\"* with|strong=\"H5892\"* all|strong=\"H3605\"* adversity|strong=\"H6869\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* be|strong=\"H3426\"* strong|strong=\"H2388\"*! Don’t let|strong=\"H7503\"* your|strong=\"H3588\"* hands|strong=\"H3027\"* be|strong=\"H3426\"* slack|strong=\"H7503\"*, for|strong=\"H3588\"* your|strong=\"H3588\"* work|strong=\"H6468\"* will|strong=\"H3027\"* be|strong=\"H3426\"* rewarded|strong=\"H7939\"*.”" + }, + { + "verseNum": 8, + "text": "When|strong=\"H8085\"* Asa heard|strong=\"H8085\"* these|strong=\"H8085\"* words|strong=\"H1697\"* and|strong=\"H3063\"* the|strong=\"H3605\"* prophecy|strong=\"H5016\"* of|strong=\"H3068\"* Oded|strong=\"H5752\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"*, he|strong=\"H3068\"* took|strong=\"H3920\"* courage|strong=\"H2388\"*, and|strong=\"H3063\"* put|strong=\"H3068\"* away|strong=\"H5674\"* the|strong=\"H3605\"* abominations|strong=\"H8251\"* out|strong=\"H4480\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Benjamin|strong=\"H1144\"*, and|strong=\"H3063\"* out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* which|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* taken|strong=\"H3920\"* from|strong=\"H4480\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H3068\"* Ephraim; and|strong=\"H3063\"* he|strong=\"H3068\"* renewed|strong=\"H2318\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"* that|strong=\"H3605\"* was|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s porch." + }, + { + "verseNum": 9, + "text": "He|strong=\"H3588\"* gathered|strong=\"H6908\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Benjamin|strong=\"H1144\"*, and|strong=\"H3063\"* those|strong=\"H3605\"* who|strong=\"H3605\"* lived|strong=\"H1481\"* with|strong=\"H5973\"* them|strong=\"H5921\"* out|strong=\"H7200\"* of|strong=\"H3068\"* Ephraim, Manasseh|strong=\"H4519\"*, and|strong=\"H3063\"* Simeon|strong=\"H8095\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* came|strong=\"H3478\"* to|strong=\"H3478\"* him|strong=\"H5921\"* out|strong=\"H7200\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* abundance|strong=\"H7230\"* when|strong=\"H3588\"* they|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* his|strong=\"H3605\"* God|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "So they|strong=\"H8141\"* gathered|strong=\"H6908\"* themselves|strong=\"H6908\"* together|strong=\"H6908\"* at|strong=\"H2320\"* Jerusalem|strong=\"H3389\"* in|strong=\"H8141\"* the|strong=\"H6908\"* third|strong=\"H7992\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H6908\"* fifteenth|strong=\"H2568\"* year|strong=\"H8141\"* of|strong=\"H8141\"* Asa’s reign|strong=\"H4438\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3117\"* sacrificed|strong=\"H2076\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, of|strong=\"H3068\"* the|strong=\"H3068\"* plunder|strong=\"H7998\"* which|strong=\"H1931\"* they|strong=\"H3117\"* had|strong=\"H3068\"* brought|strong=\"H3068\"*, seven|strong=\"H7651\"* hundred|strong=\"H3967\"* head of|strong=\"H3068\"* cattle|strong=\"H1241\"* and|strong=\"H3967\"* seven|strong=\"H7651\"* thousand sheep|strong=\"H6629\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3068\"* entered into the|strong=\"H3605\"* covenant|strong=\"H1285\"* to|strong=\"H3068\"* seek|strong=\"H1875\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* their|strong=\"H3605\"* fathers, with|strong=\"H3068\"* all|strong=\"H3605\"* their|strong=\"H3605\"* heart|strong=\"H3824\"* and|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* their|strong=\"H3605\"* soul|strong=\"H5315\"*;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H3478\"* that|strong=\"H3605\"* whoever|strong=\"H3605\"* would|strong=\"H3068\"* not|strong=\"H3808\"* seek|strong=\"H1875\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, should|strong=\"H3068\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H5704\"* death|strong=\"H4191\"*, whether|strong=\"H4480\"* small|strong=\"H6996\"* or|strong=\"H3808\"* great|strong=\"H1419\"*, whether|strong=\"H4480\"* man|strong=\"H4191\"* or|strong=\"H3808\"* woman." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*, with|strong=\"H3068\"* shouting|strong=\"H8643\"*, with|strong=\"H3068\"* trumpets|strong=\"H2689\"*, and|strong=\"H3068\"* with|strong=\"H3068\"* cornets|strong=\"H7782\"*." + }, + { + "verseNum": 15, + "text": "All|strong=\"H3605\"* Judah|strong=\"H3063\"* rejoiced|strong=\"H8055\"* at|strong=\"H5921\"* the|strong=\"H3605\"* oath|strong=\"H7621\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* sworn|strong=\"H7650\"* with|strong=\"H3068\"* all|strong=\"H3605\"* their|strong=\"H3605\"* heart|strong=\"H3824\"* and|strong=\"H3063\"* sought|strong=\"H1245\"* him|strong=\"H5921\"* with|strong=\"H3068\"* their|strong=\"H3605\"* whole|strong=\"H3605\"* desire|strong=\"H7522\"*; and|strong=\"H3063\"* he|strong=\"H3588\"* was|strong=\"H3068\"* found|strong=\"H4672\"* by|strong=\"H5921\"* them|strong=\"H5921\"*. Then|strong=\"H3588\"* Yahweh|strong=\"H3068\"* gave|strong=\"H5117\"* them|strong=\"H5921\"* rest|strong=\"H5117\"* all|strong=\"H3605\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 16, + "text": "Also|strong=\"H1571\"* Maacah|strong=\"H4601\"*, the|strong=\"H6213\"* mother|strong=\"H1377\"* of|strong=\"H4428\"* Asa the|strong=\"H6213\"* king|strong=\"H4428\"*, he|strong=\"H6213\"* removed|strong=\"H5493\"* from|strong=\"H5493\"* being|strong=\"H3772\"* queen|strong=\"H1377\"* mother|strong=\"H1377\"*, because she|strong=\"H1571\"* had|strong=\"H4428\"* made|strong=\"H6213\"* an|strong=\"H6213\"* abominable image|strong=\"H4656\"* for|strong=\"H6213\"* an|strong=\"H6213\"* Asherah; so|strong=\"H6213\"* Asa cut|strong=\"H3772\"* down|strong=\"H3772\"* her|strong=\"H3772\"* image|strong=\"H4656\"*, ground|strong=\"H1854\"* it|strong=\"H6213\"* into|strong=\"H6213\"* dust|strong=\"H1854\"*, and|strong=\"H4428\"* burned|strong=\"H8313\"* it|strong=\"H6213\"* at|strong=\"H4428\"* the|strong=\"H6213\"* brook|strong=\"H5158\"* Kidron|strong=\"H6939\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H7535\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* were|strong=\"H3478\"* not|strong=\"H3808\"* taken|strong=\"H5493\"* away|strong=\"H5493\"* out|strong=\"H3605\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*; nevertheless|strong=\"H7535\"* the|strong=\"H3605\"* heart|strong=\"H3824\"* of|strong=\"H3117\"* Asa was|strong=\"H1961\"* perfect|strong=\"H8003\"* all|strong=\"H3605\"* his|strong=\"H3605\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H1004\"* brought the|strong=\"H6942\"* things|strong=\"H6944\"* that|strong=\"H3627\"* his|strong=\"H6942\"* father had|strong=\"H6944\"* dedicated|strong=\"H6942\"* and|strong=\"H3701\"* that|strong=\"H3627\"* he|strong=\"H1004\"* himself|strong=\"H6942\"* had|strong=\"H6944\"* dedicated|strong=\"H6942\"*, silver|strong=\"H3701\"*, gold|strong=\"H2091\"*, and|strong=\"H3701\"* vessels|strong=\"H3627\"* into|strong=\"H3701\"* God’s house|strong=\"H1004\"*." + }, + { + "verseNum": 19, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H3808\"* war|strong=\"H4421\"* to|strong=\"H5704\"* the|strong=\"H5704\"* thirty-fifth|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H8141\"* Asa’s reign|strong=\"H4438\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* thirty-sixth|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Asa’s reign|strong=\"H4438\"*, Baasha|strong=\"H1201\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* went|strong=\"H3318\"* up|strong=\"H5927\"* against|strong=\"H5921\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* built|strong=\"H1129\"* Ramah|strong=\"H7414\"*, that|strong=\"H3478\"* he|strong=\"H5414\"* might|strong=\"H3478\"* not|strong=\"H1115\"* allow|strong=\"H5414\"* anyone to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* or|strong=\"H1115\"* come|strong=\"H5927\"* in|strong=\"H8141\"* to|strong=\"H3318\"* Asa king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H3318\"* Asa brought|strong=\"H3318\"* out|strong=\"H3318\"* silver|strong=\"H3701\"* and|strong=\"H3068\"* gold|strong=\"H2091\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H3068\"* treasures of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* of|strong=\"H4428\"* the|strong=\"H3068\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* sent|strong=\"H7971\"* to|strong=\"H3318\"* Ben Hadad king|strong=\"H4428\"* of|strong=\"H4428\"* Syria, who|strong=\"H3068\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Damascus|strong=\"H1834\"*, saying," + }, + { + "verseNum": 3, + "text": "“Let|strong=\"H7971\"* there|strong=\"H2009\"* be|strong=\"H3478\"* a|strong=\"H3068\"* treaty|strong=\"H1285\"* between|strong=\"H5921\"* me|strong=\"H7971\"* and|strong=\"H3478\"* you|strong=\"H7971\"*, as|strong=\"H5927\"* there|strong=\"H2009\"* was|strong=\"H3478\"* between|strong=\"H5921\"* my|strong=\"H5921\"* father and|strong=\"H3478\"* your|strong=\"H5921\"* father. Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H3478\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* silver|strong=\"H3701\"* and|strong=\"H3478\"* gold|strong=\"H2091\"*. Go|strong=\"H3212\"*, break|strong=\"H6565\"* your|strong=\"H5921\"* treaty|strong=\"H1285\"* with|strong=\"H1285\"* Baasha|strong=\"H1201\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, that|strong=\"H3478\"* he|strong=\"H5921\"* may|strong=\"H3478\"* depart|strong=\"H3212\"* from|strong=\"H5921\"* me|strong=\"H7971\"*.”" + }, + { + "verseNum": 4, + "text": "Ben Hadad listened|strong=\"H8085\"* to|strong=\"H3478\"* King|strong=\"H4428\"* Asa, and|strong=\"H3478\"* sent|strong=\"H7971\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* his|strong=\"H3605\"* armies|strong=\"H2428\"* against|strong=\"H7971\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* they|strong=\"H3478\"* struck|strong=\"H5221\"* Ijon|strong=\"H5859\"*, Dan|strong=\"H1835\"*, Abel Maim, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* storage|strong=\"H4543\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Naphtali|strong=\"H5321\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H1961\"* Baasha|strong=\"H1201\"* heard|strong=\"H8085\"* of|strong=\"H8085\"* it|strong=\"H1961\"*, he|strong=\"H1129\"* stopped|strong=\"H2308\"* building|strong=\"H1129\"* Ramah|strong=\"H7414\"*, and|strong=\"H8085\"* let|strong=\"H2308\"* his|strong=\"H8085\"* work|strong=\"H4399\"* cease|strong=\"H7673\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H3947\"* Asa the|strong=\"H3605\"* king|strong=\"H4428\"* took|strong=\"H3947\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* they|strong=\"H3605\"* carried|strong=\"H5375\"* away|strong=\"H3947\"* the|strong=\"H3605\"* stones and|strong=\"H3063\"* timber|strong=\"H6086\"* of|strong=\"H4428\"* Ramah|strong=\"H7414\"*, with|strong=\"H4428\"* which|strong=\"H6086\"* Baasha|strong=\"H1201\"* had|strong=\"H4428\"* built|strong=\"H1129\"*; and|strong=\"H3063\"* he|strong=\"H3605\"* built|strong=\"H1129\"* Geba|strong=\"H1387\"* and|strong=\"H3063\"* Mizpah|strong=\"H4709\"* with|strong=\"H4428\"* them|strong=\"H3947\"*." + }, + { + "verseNum": 7, + "text": "At|strong=\"H5921\"* that|strong=\"H7200\"* time|strong=\"H6256\"* Hanani|strong=\"H2607\"* the|strong=\"H5921\"* seer|strong=\"H7200\"* came|strong=\"H3068\"* to|strong=\"H3068\"* Asa king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* said|strong=\"H3651\"* to|strong=\"H3068\"* him|strong=\"H5921\"*, “Because|strong=\"H5921\"* you|strong=\"H5921\"* have|strong=\"H3068\"* relied|strong=\"H8172\"* on|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria, and|strong=\"H3063\"* have|strong=\"H3068\"* not|strong=\"H3808\"* relied|strong=\"H8172\"* on|strong=\"H5921\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, therefore|strong=\"H3651\"* the|strong=\"H5921\"* army|strong=\"H2426\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria has|strong=\"H3068\"* escaped|strong=\"H4422\"* out|strong=\"H7200\"* of|strong=\"H4428\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 8, + "text": "Weren’t the|strong=\"H5921\"* Ethiopians|strong=\"H3569\"* and|strong=\"H3068\"* the|strong=\"H5921\"* Lubim|strong=\"H3864\"* a|strong=\"H3068\"* huge|strong=\"H7230\"* army|strong=\"H2428\"*, with|strong=\"H3068\"* chariots|strong=\"H7393\"* and|strong=\"H3068\"* exceedingly|strong=\"H3966\"* many|strong=\"H7230\"* horsemen|strong=\"H6571\"*? Yet|strong=\"H3068\"*, because|strong=\"H5921\"* you|strong=\"H5414\"* relied|strong=\"H8172\"* on|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, he|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5921\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"* run|strong=\"H5869\"* back|strong=\"H7751\"* and|strong=\"H3068\"* forth|strong=\"H7751\"* throughout|strong=\"H3605\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth, to|strong=\"H3068\"* show|strong=\"H2388\"* himself|strong=\"H3824\"* strong|strong=\"H2388\"* in|strong=\"H5921\"* the|strong=\"H3605\"* behalf|strong=\"H5921\"* of|strong=\"H3068\"* them|strong=\"H5921\"* whose|strong=\"H3605\"* heart|strong=\"H3824\"* is|strong=\"H3068\"* perfect|strong=\"H8003\"* toward|strong=\"H5921\"* him|strong=\"H5921\"*. You|strong=\"H3588\"* have|strong=\"H3426\"* done|strong=\"H5528\"* foolishly|strong=\"H5528\"* in|strong=\"H5921\"* this|strong=\"H2063\"*; for|strong=\"H3588\"* from|strong=\"H5921\"* now|strong=\"H6258\"* on|strong=\"H5921\"* you|strong=\"H3588\"* will|strong=\"H3068\"* have|strong=\"H3426\"* wars|strong=\"H4421\"*.”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H5414\"* Asa was|strong=\"H1931\"* angry|strong=\"H3707\"* with|strong=\"H5973\"* the|strong=\"H5921\"* seer|strong=\"H7200\"*, and|strong=\"H1004\"* put|strong=\"H5414\"* him|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H5921\"* prison|strong=\"H1004\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* in|strong=\"H5921\"* a|strong=\"H3068\"* rage|strong=\"H2197\"* with|strong=\"H5973\"* him|strong=\"H5414\"* because|strong=\"H3588\"* of|strong=\"H1004\"* this|strong=\"H2063\"* thing|strong=\"H2063\"*. Asa oppressed|strong=\"H7533\"* some|strong=\"H4480\"* of|strong=\"H1004\"* the|strong=\"H5921\"* people|strong=\"H5971\"* at|strong=\"H5921\"* the|strong=\"H5921\"* same|strong=\"H1931\"* time|strong=\"H6256\"*." + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Asa, first|strong=\"H7223\"* and|strong=\"H3063\"* last, behold|strong=\"H2009\"*, they|strong=\"H5921\"* are|strong=\"H3478\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 12, + "text": "In|strong=\"H8141\"* the|strong=\"H3588\"* thirty-ninth|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H3068\"* his|strong=\"H3068\"* reign|strong=\"H4438\"*, Asa was|strong=\"H3068\"* diseased|strong=\"H2456\"* in|strong=\"H8141\"* his|strong=\"H3068\"* feet|strong=\"H7272\"*. His|strong=\"H3068\"* disease|strong=\"H2483\"* was|strong=\"H3068\"* exceedingly|strong=\"H4605\"* great; yet|strong=\"H3588\"* in|strong=\"H8141\"* his|strong=\"H3068\"* disease|strong=\"H2483\"* he|strong=\"H3588\"* didn’t seek|strong=\"H1875\"* Yahweh|strong=\"H3068\"*, but|strong=\"H3588\"* just|strong=\"H1571\"* the|strong=\"H3588\"* physicians|strong=\"H7495\"*." + }, + { + "verseNum": 13, + "text": "Asa slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H4191\"* fathers, and|strong=\"H8141\"* died|strong=\"H4191\"* in|strong=\"H8141\"* the|strong=\"H5973\"* forty-first year|strong=\"H8141\"* of|strong=\"H8141\"* his|strong=\"H4191\"* reign|strong=\"H4427\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H5704\"* buried|strong=\"H6912\"* him|strong=\"H6912\"* in|strong=\"H6912\"* his|strong=\"H1732\"* own tomb|strong=\"H6913\"*, which|strong=\"H5892\"* he|strong=\"H5704\"* had|strong=\"H1732\"* dug|strong=\"H3738\"* out|strong=\"H5704\"* for|strong=\"H5704\"* himself in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, and|strong=\"H1419\"* laid|strong=\"H7901\"* him|strong=\"H6912\"* in|strong=\"H6912\"* the|strong=\"H5704\"* bed|strong=\"H4904\"* which|strong=\"H5892\"* was|strong=\"H1732\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* sweet|strong=\"H1314\"* odors and|strong=\"H1419\"* various kinds|strong=\"H2177\"* of|strong=\"H5892\"* spices|strong=\"H1314\"* prepared|strong=\"H3738\"* by|strong=\"H5892\"* the|strong=\"H5704\"* perfumers’ art|strong=\"H4639\"*; and|strong=\"H1419\"* they|strong=\"H5704\"* made|strong=\"H4639\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* fire|strong=\"H8316\"* for|strong=\"H5704\"* him|strong=\"H6912\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Jehoshaphat|strong=\"H3092\"* his|strong=\"H5921\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H5921\"* his|strong=\"H5921\"* place|strong=\"H8478\"*, and|strong=\"H1121\"* strengthened|strong=\"H2388\"* himself|strong=\"H2388\"* against|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3605\"* placed|strong=\"H5414\"* forces|strong=\"H2428\"* in|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* set|strong=\"H5414\"* garrisons|strong=\"H5333\"* in|strong=\"H5892\"* the|strong=\"H3605\"* land of|strong=\"H5892\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* in|strong=\"H5892\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Ephraim, which|strong=\"H5892\"* Asa his|strong=\"H3605\"* father had|strong=\"H3063\"* taken|strong=\"H3920\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* Jehoshaphat|strong=\"H3092\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* the|strong=\"H3588\"* first|strong=\"H7223\"* ways|strong=\"H1870\"* of|strong=\"H3068\"* his|strong=\"H3068\"* father David|strong=\"H1732\"*, and|strong=\"H1980\"* didn’t seek|strong=\"H1875\"* the|strong=\"H3588\"* Baals|strong=\"H1168\"*," + }, + { + "verseNum": 4, + "text": "but|strong=\"H3588\"* sought|strong=\"H1875\"* the|strong=\"H3588\"* God|strong=\"H3808\"* of|strong=\"H4639\"* his|strong=\"H3478\"* father, and|strong=\"H1980\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* his|strong=\"H3478\"* commandments|strong=\"H4687\"*, and|strong=\"H1980\"* not|strong=\"H3808\"* in|strong=\"H1980\"* the|strong=\"H3588\"* ways of|strong=\"H4639\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"H3068\"* Yahweh|strong=\"H3068\"* established|strong=\"H3559\"* the|strong=\"H3605\"* kingdom|strong=\"H4467\"* in|strong=\"H3068\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*. All|strong=\"H3605\"* Judah|strong=\"H3063\"* brought|strong=\"H5414\"* tribute|strong=\"H4503\"* to|strong=\"H3068\"* Jehoshaphat|strong=\"H3092\"*, and|strong=\"H3063\"* he|strong=\"H3068\"* had|strong=\"H3068\"* riches|strong=\"H6239\"* and|strong=\"H3063\"* honor|strong=\"H3519\"* in|strong=\"H3068\"* abundance|strong=\"H7230\"*." + }, + { + "verseNum": 6, + "text": "His|strong=\"H3068\"* heart|strong=\"H3820\"* was|strong=\"H3068\"* lifted|strong=\"H1361\"* up|strong=\"H1361\"* in|strong=\"H3068\"* the|strong=\"H3068\"* ways|strong=\"H1870\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Furthermore|strong=\"H5750\"*, he|strong=\"H3068\"* took|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H3068\"* high|strong=\"H1116\"* places|strong=\"H1116\"* and|strong=\"H3063\"* the|strong=\"H3068\"* Asherah poles out|strong=\"H5493\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 7, + "text": "Also|strong=\"H3063\"* in|strong=\"H8141\"* the|strong=\"H7971\"* third|strong=\"H7969\"* year|strong=\"H8141\"* of|strong=\"H8141\"* his|strong=\"H7971\"* reign|strong=\"H4427\"* he|strong=\"H8141\"* sent|strong=\"H7971\"* his|strong=\"H7971\"* princes|strong=\"H8269\"*, even Ben Hail, Obadiah|strong=\"H5662\"*, Zechariah|strong=\"H2148\"*, Nethanel|strong=\"H5417\"*, and|strong=\"H3063\"* Micaiah|strong=\"H4322\"*, to|strong=\"H7971\"* teach|strong=\"H3925\"* in|strong=\"H8141\"* the|strong=\"H7971\"* cities|strong=\"H5892\"* of|strong=\"H8141\"* Judah|strong=\"H3063\"*;" + }, + { + "verseNum": 8, + "text": "and|strong=\"H3548\"* with|strong=\"H5973\"* them Levites|strong=\"H3881\"*, even Shemaiah|strong=\"H8098\"*, Nethaniah|strong=\"H5418\"*, Zebadiah|strong=\"H2069\"*, Asahel|strong=\"H6214\"*, Shemiramoth|strong=\"H8070\"*, Jehonathan|strong=\"H3083\"*, Adonijah, Tobijah|strong=\"H2900\"*, and|strong=\"H3548\"* Tobadonijah|strong=\"H2899\"*, the|strong=\"H5973\"* Levites|strong=\"H3881\"*; and|strong=\"H3548\"* with|strong=\"H5973\"* them Elishama and|strong=\"H3548\"* Jehoram|strong=\"H3088\"*, the|strong=\"H5973\"* priests|strong=\"H3548\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H3068\"* taught|strong=\"H3925\"* in|strong=\"H3068\"* Judah|strong=\"H3063\"*, having the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"* with|strong=\"H5973\"* them|strong=\"H3925\"*. They|strong=\"H3068\"* went|strong=\"H3063\"* about|strong=\"H5437\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* taught|strong=\"H3925\"* among|strong=\"H5973\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3605\"* fear|strong=\"H6343\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* fell|strong=\"H1961\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* lands that|strong=\"H3605\"* were|strong=\"H1961\"* around|strong=\"H5439\"* Judah|strong=\"H3063\"*, so|strong=\"H1961\"* that|strong=\"H3605\"* they|strong=\"H3068\"* made|strong=\"H1961\"* no|strong=\"H3808\"* war|strong=\"H3898\"* against|strong=\"H5921\"* Jehoshaphat|strong=\"H3092\"*." + }, + { + "verseNum": 11, + "text": "Some|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* Philistines|strong=\"H6430\"* brought|strong=\"H6430\"* Jehoshaphat|strong=\"H3092\"* presents|strong=\"H4503\"* and|strong=\"H3967\"* silver|strong=\"H3701\"* for|strong=\"H3701\"* tribute|strong=\"H4503\"*. The|strong=\"H4480\"* Arabians|strong=\"H6163\"* also|strong=\"H1571\"* brought|strong=\"H6430\"* him|strong=\"H4480\"* flocks|strong=\"H6629\"*: seven|strong=\"H7651\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* rams and|strong=\"H3967\"* seven|strong=\"H7651\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* male|strong=\"H8495\"* goats|strong=\"H8495\"*." + }, + { + "verseNum": 12, + "text": "Jehoshaphat|strong=\"H3092\"* grew|strong=\"H1980\"* great|strong=\"H1432\"* exceedingly|strong=\"H4605\"*; and|strong=\"H1980\"* he|strong=\"H5704\"* built|strong=\"H1129\"* fortresses|strong=\"H1003\"* and|strong=\"H1980\"* store|strong=\"H4543\"* cities|strong=\"H5892\"* in|strong=\"H1980\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3389\"* had|strong=\"H1961\"* many|strong=\"H7227\"* works|strong=\"H4399\"* in|strong=\"H5892\"* the|strong=\"H1961\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"*; and|strong=\"H3063\"* men|strong=\"H1368\"* of|strong=\"H5892\"* war|strong=\"H4421\"*, mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H5892\"* valor|strong=\"H2428\"*, in|strong=\"H5892\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 14, + "text": "This|strong=\"H1004\"* was|strong=\"H1004\"* the|strong=\"H5973\"* numbering of|strong=\"H1004\"* them according to|strong=\"H1004\"* their|strong=\"H5973\"* fathers’ houses|strong=\"H1004\"*: From|strong=\"H5973\"* Judah|strong=\"H3063\"*, the|strong=\"H5973\"* captains|strong=\"H8269\"* of|strong=\"H1004\"* thousands: Adnah|strong=\"H5734\"* the|strong=\"H5973\"* captain|strong=\"H8269\"*, and|strong=\"H3967\"* with|strong=\"H5973\"* him|strong=\"H5973\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* thousand mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1004\"* valor|strong=\"H2428\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"H3967\"* next|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"* Jehohanan|strong=\"H3076\"* the|strong=\"H5921\"* captain|strong=\"H8269\"*, and|strong=\"H3967\"* with|strong=\"H5973\"* him|strong=\"H5921\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* eighty|strong=\"H8084\"* thousand;" + }, + { + "verseNum": 16, + "text": "and|strong=\"H3967\"* next|strong=\"H5921\"* to|strong=\"H3068\"* him|strong=\"H5921\"* Amasiah|strong=\"H6007\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zichri|strong=\"H2147\"*, who|strong=\"H3068\"* willingly|strong=\"H5068\"* offered|strong=\"H5068\"* himself|strong=\"H3027\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3967\"* with|strong=\"H5973\"* him|strong=\"H5921\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* thousand mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*." + }, + { + "verseNum": 17, + "text": "From|strong=\"H4480\"* Benjamin|strong=\"H1144\"*: Eliada, a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* of|strong=\"H4480\"* valor|strong=\"H2428\"*, and|strong=\"H3967\"* with|strong=\"H5973\"* him|strong=\"H5973\"* two|strong=\"H4480\"* hundred|strong=\"H3967\"* thousand armed|strong=\"H4043\"* with|strong=\"H5973\"* bow|strong=\"H7198\"* and|strong=\"H3967\"* shield|strong=\"H4043\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H3967\"* next|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"* Jehozabad|strong=\"H3075\"*, and|strong=\"H3967\"* with|strong=\"H5973\"* him|strong=\"H5921\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* eighty|strong=\"H8084\"* thousand ready and|strong=\"H3967\"* prepared|strong=\"H2502\"* for|strong=\"H5921\"* war|strong=\"H6635\"*." + }, + { + "verseNum": 19, + "text": "These|strong=\"H3605\"* were|strong=\"H3063\"* those|strong=\"H3605\"* who|strong=\"H3605\"* waited|strong=\"H8334\"* on|strong=\"H5892\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, in|strong=\"H4428\"* addition to|strong=\"H5414\"* those|strong=\"H3605\"* whom the|strong=\"H3605\"* king|strong=\"H4428\"* put|strong=\"H5414\"* in|strong=\"H4428\"* the|strong=\"H3605\"* fortified|strong=\"H4013\"* cities|strong=\"H5892\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"*." + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* Jehoshaphat|strong=\"H3092\"* had|strong=\"H1961\"* riches|strong=\"H6239\"* and|strong=\"H6239\"* honor|strong=\"H3519\"* in|strong=\"H1961\"* abundance|strong=\"H7230\"*; and|strong=\"H6239\"* he allied|strong=\"H2859\"* himself with|strong=\"H2859\"* Ahab." + }, + { + "verseNum": 2, + "text": "After|strong=\"H7093\"* some|strong=\"H7093\"* years|strong=\"H8141\"*, he|strong=\"H8141\"* went|strong=\"H5927\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Ahab to|strong=\"H3381\"* Samaria|strong=\"H8111\"*. Ahab killed|strong=\"H2076\"* sheep|strong=\"H6629\"* and|strong=\"H5971\"* cattle|strong=\"H1241\"* for|strong=\"H5971\"* him|strong=\"H5973\"* in|strong=\"H8141\"* abundance|strong=\"H7230\"*, and|strong=\"H5971\"* for|strong=\"H5971\"* the|strong=\"H5927\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, and|strong=\"H5971\"* moved|strong=\"H5496\"* him|strong=\"H5973\"* to|strong=\"H3381\"* go|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* him|strong=\"H5973\"* to|strong=\"H3381\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 3, + "text": "Ahab king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Jehoshaphat|strong=\"H3092\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, “Will|strong=\"H4428\"* you|strong=\"H5973\"* go|strong=\"H3212\"* with|strong=\"H5973\"* me|strong=\"H5973\"* to|strong=\"H3478\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*?”" + }, + { + "verseNum": 4, + "text": "Jehoshaphat|strong=\"H3092\"* said|strong=\"H1697\"* to|strong=\"H3478\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, “Please|strong=\"H4994\"* inquire|strong=\"H1875\"* first|strong=\"H3117\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*.”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* gathered|strong=\"H6908\"* the|strong=\"H5414\"* prophets|strong=\"H5030\"* together|strong=\"H6908\"*, four hundred|strong=\"H3967\"* men|strong=\"H3478\"*, and|strong=\"H3967\"* said to|strong=\"H3478\"* them|strong=\"H5414\"*, “Shall|strong=\"H3478\"* we|strong=\"H3068\"* go|strong=\"H3212\"* to|strong=\"H3478\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"* to|strong=\"H3478\"* battle|strong=\"H4421\"*, or|strong=\"H3027\"* shall|strong=\"H3478\"* I|strong=\"H5414\"* forbear|strong=\"H2308\"*?”" + }, + { + "verseNum": 6, + "text": "But|strong=\"H3068\"* Jehoshaphat|strong=\"H3092\"* said, “Isn’t there|strong=\"H3068\"* here|strong=\"H6311\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* besides|strong=\"H5750\"*, that|strong=\"H3068\"* we|strong=\"H3068\"* may|strong=\"H3068\"* inquire|strong=\"H1875\"* of|strong=\"H3068\"* him|strong=\"H1875\"*?”" + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said|strong=\"H3651\"* to|strong=\"H3478\"* Jehoshaphat|strong=\"H3092\"*, “There|strong=\"H3117\"* is|strong=\"H3068\"* yet|strong=\"H5750\"* one|strong=\"H3605\"* man|strong=\"H1121\"* by|strong=\"H5921\"* whom|strong=\"H3588\"* we|strong=\"H3068\"* may|strong=\"H3068\"* inquire|strong=\"H1875\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* hate|strong=\"H8130\"* him|strong=\"H5921\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* never prophesies|strong=\"H5012\"* good|strong=\"H2896\"* concerning|strong=\"H5921\"* me|strong=\"H8130\"*, but|strong=\"H3588\"* always|strong=\"H3605\"* evil|strong=\"H7451\"*. He|strong=\"H1931\"* is|strong=\"H3068\"* Micaiah|strong=\"H4321\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Imla|strong=\"H3229\"*.”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H4428\"* the|strong=\"H7121\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* called|strong=\"H7121\"* an|strong=\"H7121\"* officer|strong=\"H5631\"*, and|strong=\"H1121\"* said|strong=\"H7121\"*, “Get Micaiah|strong=\"H4318\"* the|strong=\"H7121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Imla|strong=\"H3229\"* quickly|strong=\"H4116\"*.”" + }, + { + "verseNum": 9, + "text": "Now|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Jehoshaphat|strong=\"H3092\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* each|strong=\"H3605\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H3605\"* throne|strong=\"H3678\"*, arrayed|strong=\"H3847\"* in|strong=\"H3427\"* their|strong=\"H3605\"* robes, and|strong=\"H3063\"* they|strong=\"H5921\"* were|strong=\"H3478\"* sitting|strong=\"H3427\"* in|strong=\"H3427\"* an|strong=\"H6440\"* open|strong=\"H6440\"* place|strong=\"H1637\"* at|strong=\"H3427\"* the|strong=\"H3605\"* entrance|strong=\"H6607\"* of|strong=\"H4428\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H4428\"* Samaria|strong=\"H8111\"*; and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* were|strong=\"H3478\"* prophesying|strong=\"H5012\"* before|strong=\"H6440\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "Zedekiah|strong=\"H6667\"* the|strong=\"H3541\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Chenaanah|strong=\"H3668\"* made|strong=\"H6213\"* himself|strong=\"H6213\"* horns|strong=\"H7161\"* of|strong=\"H1121\"* iron|strong=\"H1270\"* and|strong=\"H1121\"* said, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘With|strong=\"H3068\"* these|strong=\"H6213\"* you|strong=\"H5704\"* shall|strong=\"H3068\"* push|strong=\"H5055\"* the|strong=\"H3541\"* Syrians, until|strong=\"H5704\"* they|strong=\"H3068\"* are|strong=\"H1121\"* consumed|strong=\"H3615\"*.’”" + }, + { + "verseNum": 11, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* prophesied|strong=\"H5012\"* so|strong=\"H3651\"*, saying, “Go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*, and|strong=\"H3068\"* prosper|strong=\"H6743\"*; for|strong=\"H3027\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H5927\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*.”" + }, + { + "verseNum": 12, + "text": "The|strong=\"H7121\"* messenger|strong=\"H4397\"* who|strong=\"H5030\"* went|strong=\"H1980\"* to|strong=\"H1696\"* call|strong=\"H7121\"* Micaiah|strong=\"H4321\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7121\"*, saying|strong=\"H1697\"*, “Behold|strong=\"H2009\"*, the|strong=\"H7121\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H7121\"* prophets|strong=\"H5030\"* declare|strong=\"H1696\"* good|strong=\"H2896\"* to|strong=\"H1696\"* the|strong=\"H7121\"* king|strong=\"H4428\"* with|strong=\"H1980\"* one|strong=\"H2896\"* mouth|strong=\"H6310\"*. Let|strong=\"H4994\"* your|strong=\"H1961\"* word|strong=\"H1697\"* therefore|strong=\"H1961\"*, please|strong=\"H4994\"* be|strong=\"H1961\"* like|strong=\"H1961\"* one|strong=\"H2896\"* of|strong=\"H4428\"* theirs|strong=\"H1992\"*, and|strong=\"H1980\"* speak|strong=\"H1696\"* good|strong=\"H2896\"*.”" + }, + { + "verseNum": 13, + "text": "Micaiah|strong=\"H4321\"* said|strong=\"H1696\"*, “As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* say|strong=\"H1696\"* what|strong=\"H1696\"* my|strong=\"H3068\"* God|strong=\"H3068\"* says|strong=\"H1696\"*.”" + }, + { + "verseNum": 14, + "text": "When|strong=\"H5927\"* he|strong=\"H5414\"* had|strong=\"H4428\"* come|strong=\"H5927\"* to|strong=\"H3212\"* the|strong=\"H5414\"* king|strong=\"H4428\"*, the|strong=\"H5414\"* king|strong=\"H4428\"* said to|strong=\"H3212\"* him|strong=\"H5414\"*, “Micaiah|strong=\"H4318\"*, shall|strong=\"H4428\"* we|strong=\"H3068\"* go|strong=\"H3212\"* to|strong=\"H3212\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"* to|strong=\"H3212\"* battle|strong=\"H4421\"*, or|strong=\"H3027\"* shall|strong=\"H4428\"* I|strong=\"H5414\"* forbear|strong=\"H2308\"*?”" + }, + { + "verseNum": 15, + "text": "The|strong=\"H3068\"* king|strong=\"H4428\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H4428\"*, “How|strong=\"H4100\"* many|strong=\"H4100\"* times|strong=\"H6471\"* shall|strong=\"H3068\"* I|strong=\"H5704\"* adjure|strong=\"H7650\"* you|strong=\"H5704\"* that|strong=\"H3068\"* you|strong=\"H5704\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"* nothing|strong=\"H3808\"* but|strong=\"H7535\"* the|strong=\"H3068\"* truth|strong=\"H3808\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*?”" + }, + { + "verseNum": 16, + "text": "He|strong=\"H3068\"* said, “I|strong=\"H5921\"* saw|strong=\"H7200\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* scattered|strong=\"H6327\"* on|strong=\"H5921\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*, as|strong=\"H3068\"* sheep|strong=\"H6629\"* that|strong=\"H7200\"* have|strong=\"H3068\"* no|strong=\"H3808\"* shepherd|strong=\"H7462\"*. Yahweh|strong=\"H3068\"* said, ‘These|strong=\"H3605\"* have|strong=\"H3068\"* no|strong=\"H3808\"* master. Let|strong=\"H3808\"* them|strong=\"H5921\"* each|strong=\"H3605\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H3605\"* house|strong=\"H1004\"* in|strong=\"H5921\"* peace|strong=\"H7965\"*.’”" + }, + { + "verseNum": 17, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Jehoshaphat|strong=\"H3092\"*, “Didn’t I|strong=\"H3588\"* tell you|strong=\"H3588\"* that|strong=\"H3588\"* he|strong=\"H3588\"* would|strong=\"H3478\"* not|strong=\"H3808\"* prophesy|strong=\"H5012\"* good|strong=\"H2896\"* concerning|strong=\"H5921\"* me|strong=\"H5921\"*, but|strong=\"H3588\"* evil|strong=\"H7451\"*?”" + }, + { + "verseNum": 18, + "text": "Micaiah said|strong=\"H1697\"*, “Therefore|strong=\"H3651\"* hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*: I|strong=\"H5921\"* saw|strong=\"H7200\"* Yahweh|strong=\"H3068\"* sitting|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H3605\"* throne|strong=\"H3678\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H3068\"* heaven|strong=\"H8064\"* standing|strong=\"H5975\"* on|strong=\"H5921\"* his|strong=\"H3605\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H3068\"* on|strong=\"H5921\"* his|strong=\"H3605\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* said, ‘Who|strong=\"H4310\"* will|strong=\"H3068\"* entice|strong=\"H6601\"* Ahab king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, that|strong=\"H3068\"* he|strong=\"H3068\"* may|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H3478\"* fall|strong=\"H5307\"* at|strong=\"H3478\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*?’ One|strong=\"H2088\"* spoke saying in|strong=\"H3478\"* this|strong=\"H2088\"* way|strong=\"H2088\"*, and|strong=\"H3478\"* another|strong=\"H2088\"* saying in|strong=\"H3478\"* that|strong=\"H3068\"* way|strong=\"H2088\"*." + }, + { + "verseNum": 20, + "text": "A|strong=\"H3068\"* spirit|strong=\"H7307\"* came|strong=\"H3318\"* out|strong=\"H3318\"*, stood|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H3318\"*, ‘I|strong=\"H4100\"* will|strong=\"H3068\"* entice|strong=\"H6601\"* him|strong=\"H6440\"*.’" + }, + { + "verseNum": 21, + "text": "“He|strong=\"H3651\"* said|strong=\"H3651\"*, ‘I|strong=\"H3651\"* will|strong=\"H1961\"* go|strong=\"H3318\"*, and|strong=\"H6213\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* lying|strong=\"H8267\"* spirit|strong=\"H7307\"* in|strong=\"H6213\"* the|strong=\"H3605\"* mouth|strong=\"H6310\"* of|strong=\"H7307\"* all|strong=\"H3605\"* his|strong=\"H3605\"* prophets|strong=\"H5030\"*.’" + }, + { + "verseNum": 22, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* put|strong=\"H5414\"* a|strong=\"H3068\"* lying|strong=\"H8267\"* spirit|strong=\"H7307\"* in|strong=\"H5921\"* the|strong=\"H5921\"* mouth|strong=\"H6310\"* of|strong=\"H3068\"* these|strong=\"H1696\"* your|strong=\"H3068\"* prophets|strong=\"H5030\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* evil|strong=\"H7451\"* concerning|strong=\"H5921\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 23, + "text": "Then|strong=\"H1696\"* Zedekiah|strong=\"H6667\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Chenaanah|strong=\"H3668\"* came|strong=\"H5066\"* near|strong=\"H5066\"*, and|strong=\"H1121\"* struck|strong=\"H5221\"* Micaiah|strong=\"H4321\"* on|strong=\"H5921\"* the|strong=\"H5921\"* cheek|strong=\"H3895\"*, and|strong=\"H1121\"* said|strong=\"H1696\"*, “Which|strong=\"H3068\"* way|strong=\"H1870\"* did|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* go|strong=\"H5674\"* from|strong=\"H5921\"* me|strong=\"H5921\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5921\"*?”" + }, + { + "verseNum": 24, + "text": "Micaiah|strong=\"H4321\"* said, “Behold|strong=\"H2005\"*, you|strong=\"H3117\"* shall|strong=\"H3117\"* see|strong=\"H7200\"* on|strong=\"H3117\"* that|strong=\"H7200\"* day|strong=\"H3117\"*, when|strong=\"H3117\"* you|strong=\"H3117\"* go into|strong=\"H7200\"* an|strong=\"H7200\"* inner|strong=\"H2315\"* room|strong=\"H2315\"* to|strong=\"H3117\"* hide|strong=\"H2244\"* yourself.”" + }, + { + "verseNum": 25, + "text": "The|strong=\"H3947\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said, “Take|strong=\"H3947\"* Micaiah|strong=\"H4321\"*, and|strong=\"H1121\"* carry|strong=\"H3947\"* him|strong=\"H7725\"* back|strong=\"H7725\"* to|strong=\"H7725\"* Amon the|strong=\"H3947\"* governor|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3947\"* city|strong=\"H5892\"*, and|strong=\"H1121\"* to|strong=\"H7725\"* Joash|strong=\"H3101\"* the|strong=\"H3947\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"*;" + }, + { + "verseNum": 26, + "text": "and|strong=\"H7725\"* say|strong=\"H7725\"*, ‘The|strong=\"H3541\"* king|strong=\"H4428\"* says|strong=\"H3541\"*, “Put|strong=\"H7760\"* this|strong=\"H2088\"* fellow in|strong=\"H1004\"* the|strong=\"H3541\"* prison|strong=\"H1004\"*, and|strong=\"H7725\"* feed him|strong=\"H7725\"* with|strong=\"H1004\"* bread|strong=\"H3899\"* of|strong=\"H4428\"* affliction|strong=\"H3906\"* and|strong=\"H7725\"* with|strong=\"H1004\"* water|strong=\"H4325\"* of|strong=\"H4428\"* affliction|strong=\"H3906\"*, until|strong=\"H5704\"* I|strong=\"H5704\"* return|strong=\"H7725\"* in|strong=\"H1004\"* peace|strong=\"H7965\"*.”’”" + }, + { + "verseNum": 27, + "text": "Micaiah|strong=\"H4321\"* said|strong=\"H1696\"*, “If you|strong=\"H3605\"* return|strong=\"H7725\"* at|strong=\"H3068\"* all|strong=\"H3605\"* in|strong=\"H3068\"* peace|strong=\"H7965\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* spoken|strong=\"H1696\"* by|strong=\"H3068\"* me|strong=\"H7725\"*.” He|strong=\"H3068\"* said|strong=\"H1696\"*, “Listen|strong=\"H8085\"*, you|strong=\"H3605\"* people|strong=\"H5971\"*, all|strong=\"H3605\"* of|strong=\"H3068\"* you|strong=\"H3605\"*!”" + }, + { + "verseNum": 28, + "text": "So|strong=\"H5927\"* the|strong=\"H5927\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Jehoshaphat|strong=\"H3092\"* the|strong=\"H5927\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3092\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Jehoshaphat|strong=\"H3092\"*, “I|strong=\"H3478\"* will|strong=\"H4428\"* disguise|strong=\"H2664\"* myself, and|strong=\"H3478\"* go|strong=\"H4428\"* into the|strong=\"H3092\"* battle|strong=\"H4421\"*; but|strong=\"H4428\"* you|strong=\"H3847\"* put|strong=\"H3847\"* on|strong=\"H3847\"* your|strong=\"H3478\"* robes.” So the|strong=\"H3092\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* disguised|strong=\"H2664\"* himself; and|strong=\"H3478\"* they|strong=\"H3478\"* went|strong=\"H3478\"* into the|strong=\"H3092\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 30, + "text": "Now|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria had|strong=\"H3478\"* commanded|strong=\"H6680\"* the|strong=\"H3588\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* his|strong=\"H6680\"* chariots|strong=\"H7393\"*, saying, “Don’t fight|strong=\"H3898\"* with|strong=\"H3898\"* small|strong=\"H6996\"* nor|strong=\"H3808\"* great|strong=\"H1419\"*, except|strong=\"H3588\"* only|strong=\"H3588\"* with|strong=\"H3898\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 31, + "text": "When|strong=\"H1961\"* the|strong=\"H5921\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chariots|strong=\"H7393\"* saw|strong=\"H7200\"* Jehoshaphat|strong=\"H3092\"*, they|strong=\"H1992\"* said, “It|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*!” Therefore|strong=\"H5921\"* they|strong=\"H1992\"* turned|strong=\"H5437\"* around|strong=\"H5437\"* to|strong=\"H3478\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* him|strong=\"H5921\"*. But|strong=\"H1961\"* Jehoshaphat|strong=\"H3092\"* cried|strong=\"H2199\"* out|strong=\"H2199\"*, and|strong=\"H3478\"* Yahweh|strong=\"H3068\"* helped|strong=\"H5826\"* him|strong=\"H5921\"*; and|strong=\"H3478\"* God|strong=\"H3068\"* moved|strong=\"H5496\"* them|strong=\"H1992\"* to|strong=\"H3478\"* depart from|strong=\"H4480\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 32, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H7200\"* chariots|strong=\"H7393\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H1961\"* not|strong=\"H3808\"* the|strong=\"H7200\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, they|strong=\"H3588\"* turned|strong=\"H7725\"* back|strong=\"H7725\"* from|strong=\"H7725\"* pursuing him|strong=\"H7725\"*." + }, + { + "verseNum": 33, + "text": "A|strong=\"H3068\"* certain man drew|strong=\"H4900\"* his|strong=\"H5221\"* bow|strong=\"H7198\"* at|strong=\"H3478\"* random|strong=\"H8537\"*, and|strong=\"H3478\"* struck|strong=\"H5221\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* between|strong=\"H4480\"* the|strong=\"H3588\"* joints|strong=\"H1694\"* of|strong=\"H4428\"* the|strong=\"H3588\"* armor|strong=\"H8302\"*. Therefore|strong=\"H3588\"* he|strong=\"H3588\"* said|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3588\"* driver|strong=\"H7395\"* of|strong=\"H4428\"* the|strong=\"H3588\"* chariot|strong=\"H7395\"*, “Turn|strong=\"H2015\"* around|strong=\"H3027\"* and|strong=\"H3478\"* carry|strong=\"H3318\"* me|strong=\"H4480\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H3588\"* battle|strong=\"H4264\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H2470\"* severely|strong=\"H2470\"* wounded|strong=\"H5221\"*.”" + }, + { + "verseNum": 34, + "text": "The|strong=\"H3117\"* battle|strong=\"H4421\"* increased|strong=\"H5927\"* that|strong=\"H3117\"* day|strong=\"H3117\"*. However, the|strong=\"H3117\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* propped|strong=\"H5975\"* himself|strong=\"H1931\"* up|strong=\"H5927\"* in|strong=\"H3478\"* his|strong=\"H3478\"* chariot|strong=\"H4818\"* against|strong=\"H5927\"* the|strong=\"H3117\"* Syrians until|strong=\"H5704\"* the|strong=\"H3117\"* evening|strong=\"H6153\"*; and|strong=\"H3478\"* at|strong=\"H3478\"* about|strong=\"H1961\"* sunset|strong=\"H8121\"*, he|strong=\"H1931\"* died|strong=\"H4191\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Jehoshaphat|strong=\"H3092\"* the|strong=\"H7725\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* house|strong=\"H1004\"* in|strong=\"H1004\"* peace|strong=\"H7965\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "Jehu|strong=\"H3058\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hanani|strong=\"H2607\"* the|strong=\"H6440\"* seer|strong=\"H2374\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H1121\"* said|strong=\"H3318\"* to|strong=\"H3318\"* King|strong=\"H4428\"* Jehoshaphat|strong=\"H3092\"*, “Should|strong=\"H3068\"* you|strong=\"H6440\"* help|strong=\"H5826\"* the|strong=\"H6440\"* wicked|strong=\"H7563\"*, and|strong=\"H1121\"* love those|strong=\"H5921\"* who|strong=\"H3068\"* hate|strong=\"H8130\"* Yahweh|strong=\"H3068\"*? Because|strong=\"H5921\"* of|strong=\"H1121\"* this|strong=\"H2063\"*, wrath|strong=\"H7110\"* is|strong=\"H3068\"* on|strong=\"H5921\"* you|strong=\"H6440\"* from|strong=\"H3318\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "Nevertheless|strong=\"H3588\"* there|strong=\"H4672\"* are|strong=\"H1697\"* good|strong=\"H2896\"* things|strong=\"H1697\"* found|strong=\"H4672\"* in|strong=\"H4672\"* you|strong=\"H3588\"*, in|strong=\"H4672\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H4672\"* put|strong=\"H1197\"* away|strong=\"H1197\"* the|strong=\"H3588\"* Asheroth out|strong=\"H4672\"* of|strong=\"H1697\"* the|strong=\"H3588\"* land, and|strong=\"H1697\"* have|strong=\"H4672\"* set|strong=\"H3559\"* your|strong=\"H3588\"* heart|strong=\"H3824\"* to|strong=\"H1697\"* seek|strong=\"H1875\"* God.”" + }, + { + "verseNum": 4, + "text": "Jehoshaphat|strong=\"H3092\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H3068\"* he|strong=\"H5704\"* went|strong=\"H3318\"* out|strong=\"H3318\"* again|strong=\"H7725\"* among|strong=\"H3427\"* the|strong=\"H3068\"* people|strong=\"H5971\"* from|strong=\"H7725\"* Beersheba to|strong=\"H5704\"* the|strong=\"H3068\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H3068\"* Ephraim, and|strong=\"H3068\"* brought|strong=\"H3318\"* them|strong=\"H7725\"* back|strong=\"H7725\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* their|strong=\"H3068\"* fathers." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3605\"* set|strong=\"H5975\"* judges|strong=\"H8199\"* in|strong=\"H5892\"* the|strong=\"H3605\"* land throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"*, city|strong=\"H5892\"* by|strong=\"H5975\"* city|strong=\"H5892\"*," + }, + { + "verseNum": 6, + "text": "and|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3068\"* the|strong=\"H7200\"* judges|strong=\"H8199\"*, “Consider|strong=\"H7200\"* what|strong=\"H4100\"* you|strong=\"H3588\"* do|strong=\"H6213\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* don’t judge|strong=\"H8199\"* for|strong=\"H3588\"* man|strong=\"H7200\"*, but|strong=\"H3588\"* for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* he|strong=\"H3588\"* is|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3588\"* in|strong=\"H3068\"* the|strong=\"H7200\"* judgment|strong=\"H4941\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* let|strong=\"H6258\"* the|strong=\"H6440\"* fear|strong=\"H6343\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* be|strong=\"H1961\"* on|strong=\"H5921\"* you|strong=\"H3588\"*. Take|strong=\"H8104\"* heed|strong=\"H8104\"* and|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H5921\"*; for|strong=\"H3588\"* there|strong=\"H1961\"* is|strong=\"H3068\"* no|strong=\"H6213\"* iniquity|strong=\"H5766\"* with|strong=\"H5973\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, nor|strong=\"H3588\"* respect|strong=\"H4856\"* of|strong=\"H3068\"* persons|strong=\"H6440\"*, nor|strong=\"H3588\"* taking|strong=\"H4727\"* of|strong=\"H3068\"* bribes|strong=\"H7810\"*.”" + }, + { + "verseNum": 8, + "text": "Moreover|strong=\"H1571\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"* Jehoshaphat|strong=\"H3092\"* appointed|strong=\"H5975\"* certain Levites|strong=\"H3881\"*, priests|strong=\"H3548\"*, and|strong=\"H3478\"* heads|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H3068\"* fathers’ households|strong=\"H3881\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* to|strong=\"H7725\"* give|strong=\"H7725\"* judgment|strong=\"H4941\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"* and|strong=\"H3478\"* for|strong=\"H3068\"* controversies|strong=\"H7379\"*. They|strong=\"H3068\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H6213\"* commanded|strong=\"H6680\"* them|strong=\"H5921\"*, saying, “You|strong=\"H6680\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* this|strong=\"H6213\"* in|strong=\"H5921\"* the|strong=\"H5921\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, faithfully, and|strong=\"H3068\"* with|strong=\"H3068\"* a|strong=\"H3068\"* perfect|strong=\"H8003\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 10, + "text": "Whenever|strong=\"H3605\"* any|strong=\"H3605\"* controversy|strong=\"H7379\"* comes|strong=\"H1961\"* to|strong=\"H3068\"* you|strong=\"H3605\"* from|strong=\"H5921\"* your|strong=\"H3068\"* brothers who|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3605\"* cities|strong=\"H5892\"*, between|strong=\"H3427\"* blood|strong=\"H1818\"* and|strong=\"H3068\"* blood|strong=\"H1818\"*, between|strong=\"H3427\"* law|strong=\"H8451\"* and|strong=\"H3068\"* commandment|strong=\"H4687\"*, statutes|strong=\"H2706\"* and|strong=\"H3068\"* ordinances|strong=\"H4941\"*, you|strong=\"H3605\"* must|strong=\"H1818\"* warn|strong=\"H2094\"* them|strong=\"H5921\"*, that|strong=\"H3605\"* they|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* guilty toward|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* so|strong=\"H6213\"* wrath|strong=\"H7110\"* come|strong=\"H1961\"* on|strong=\"H5921\"* you|strong=\"H3605\"* and|strong=\"H3068\"* on|strong=\"H5921\"* your|strong=\"H3068\"* brothers. Do|strong=\"H6213\"* this|strong=\"H6213\"*, and|strong=\"H3068\"* you|strong=\"H3605\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* guilty." + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2009\"*, Amariah the|strong=\"H3605\"* chief|strong=\"H7218\"* priest|strong=\"H3548\"* is|strong=\"H3068\"* over|strong=\"H5921\"* you|strong=\"H6440\"* in|strong=\"H5921\"* all|strong=\"H3605\"* matters|strong=\"H1697\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*; and|strong=\"H1121\"* Zebadiah|strong=\"H2069\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ishmael|strong=\"H3458\"*, the|strong=\"H3605\"* ruler|strong=\"H5057\"* of|strong=\"H1121\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, in|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s matters|strong=\"H1697\"*. Also|strong=\"H3068\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* officers|strong=\"H7860\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. Deal|strong=\"H6213\"* courageously|strong=\"H2388\"*, and|strong=\"H1121\"* may|strong=\"H1961\"* Yahweh|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* the|strong=\"H3605\"* good|strong=\"H2896\"*.”" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H5921\"* this|strong=\"H5973\"*, the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* with|strong=\"H5973\"* them|strong=\"H5921\"* some of|strong=\"H1121\"* the|strong=\"H5921\"* Ammonites|strong=\"H5984\"*, came|strong=\"H1961\"* against|strong=\"H5921\"* Jehoshaphat|strong=\"H3092\"* to|strong=\"H1961\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H2009\"* some|strong=\"H7227\"* came who|strong=\"H1931\"* told|strong=\"H5046\"* Jehoshaphat|strong=\"H3092\"*, saying, “A|strong=\"H3068\"* great|strong=\"H7227\"* multitude|strong=\"H1995\"* is|strong=\"H1931\"* coming|strong=\"H2009\"* against|strong=\"H5921\"* you|strong=\"H5921\"* from|strong=\"H5921\"* beyond|strong=\"H5676\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* from|strong=\"H5921\"* Syria. Behold|strong=\"H2009\"*, they|strong=\"H5921\"* are|strong=\"H7227\"* in|strong=\"H5921\"* Hazazon Tamar” (that|strong=\"H1931\"* is|strong=\"H1931\"*, En Gedi)." + }, + { + "verseNum": 3, + "text": "Jehoshaphat|strong=\"H3092\"* was|strong=\"H3068\"* alarmed, and|strong=\"H3063\"* set|strong=\"H5414\"* himself|strong=\"H6440\"* to|strong=\"H3068\"* seek|strong=\"H1875\"* Yahweh|strong=\"H3068\"*. He|strong=\"H3068\"* proclaimed|strong=\"H7121\"* a|strong=\"H3068\"* fast|strong=\"H6685\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 4, + "text": "Judah|strong=\"H3063\"* gathered|strong=\"H6908\"* themselves|strong=\"H6908\"* together|strong=\"H6908\"* to|strong=\"H3068\"* seek|strong=\"H1245\"* help from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. They|strong=\"H3068\"* came|strong=\"H3068\"* out|strong=\"H1245\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* to|strong=\"H3068\"* seek|strong=\"H1245\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "Jehoshaphat|strong=\"H3092\"* stood|strong=\"H5975\"* in|strong=\"H3068\"* the|strong=\"H6440\"* assembly|strong=\"H6951\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*, in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, before|strong=\"H6440\"* the|strong=\"H6440\"* new|strong=\"H2319\"* court|strong=\"H2691\"*;" + }, + { + "verseNum": 6, + "text": "and|strong=\"H3068\"* he|strong=\"H1931\"* said, “Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* our|strong=\"H3068\"* fathers, aren’t you|strong=\"H3605\"* God|strong=\"H3068\"* in|strong=\"H3068\"* heaven|strong=\"H8064\"*? Aren’t you|strong=\"H3605\"* ruler|strong=\"H4910\"* over|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*? Power|strong=\"H3027\"* and|strong=\"H3068\"* might|strong=\"H1369\"* are|strong=\"H1471\"* in|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, so|strong=\"H3808\"* that|strong=\"H3605\"* no|strong=\"H3808\"* one|strong=\"H3605\"* is|strong=\"H3068\"* able|strong=\"H3027\"* to|strong=\"H3068\"* withstand|strong=\"H3320\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 7, + "text": "Didn’t you|strong=\"H5414\"*, our|strong=\"H5414\"* God|strong=\"H5414\"*, drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* this|strong=\"H2063\"* land|strong=\"H6440\"* before|strong=\"H6440\"* your|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H6440\"* offspring|strong=\"H2233\"*+ 20:7 or, seed* of|strong=\"H3427\"* Abraham your|strong=\"H5414\"* friend forever|strong=\"H5769\"*?" + }, + { + "verseNum": 8, + "text": "They|strong=\"H8034\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H8034\"*, and|strong=\"H3427\"* have|strong=\"H1129\"* built|strong=\"H1129\"* you|strong=\"H1129\"* a|strong=\"H3068\"* sanctuary|strong=\"H4720\"* in|strong=\"H3427\"* it|strong=\"H8034\"* for|strong=\"H3427\"* your|strong=\"H1129\"* name|strong=\"H8034\"*, saying," + }, + { + "verseNum": 9, + "text": "‘If|strong=\"H3588\"* evil|strong=\"H7451\"* comes|strong=\"H6440\"* on|strong=\"H5921\"* us|strong=\"H5921\"*—the|strong=\"H6440\"* sword|strong=\"H2719\"*, judgment|strong=\"H8196\"*, pestilence|strong=\"H1698\"*, or|strong=\"H8085\"* famine|strong=\"H7458\"*—we|strong=\"H3068\"* will|strong=\"H2719\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* this|strong=\"H2088\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* before|strong=\"H6440\"* you|strong=\"H3588\"* (for|strong=\"H3588\"* your|strong=\"H5921\"* name|strong=\"H8034\"* is|strong=\"H2088\"* in|strong=\"H5921\"* this|strong=\"H2088\"* house|strong=\"H1004\"*), and|strong=\"H1004\"* cry|strong=\"H2199\"* to|strong=\"H5921\"* you|strong=\"H3588\"* in|strong=\"H5921\"* our|strong=\"H5921\"* affliction|strong=\"H6869\"*, and|strong=\"H1004\"* you|strong=\"H3588\"* will|strong=\"H2719\"* hear|strong=\"H8085\"* and|strong=\"H1004\"* save|strong=\"H3467\"*.’" + }, + { + "verseNum": 10, + "text": "Now|strong=\"H6258\"*, behold|strong=\"H2009\"*, the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* and|strong=\"H1121\"* Moab|strong=\"H4124\"* and|strong=\"H1121\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"*, whom|strong=\"H3588\"* you|strong=\"H3588\"* would|strong=\"H3478\"* not|strong=\"H3808\"* let|strong=\"H5414\"* Israel|strong=\"H3478\"* invade when|strong=\"H3588\"* they|strong=\"H3588\"* came|strong=\"H3478\"* out|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* turned|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* them|strong=\"H5414\"*, and|strong=\"H1121\"* didn’t destroy|strong=\"H8045\"* them|strong=\"H5414\"*;" + }, + { + "verseNum": 11, + "text": "behold|strong=\"H2009\"*, how|strong=\"H2009\"* they|strong=\"H1992\"* reward|strong=\"H1580\"* us|strong=\"H5921\"*, to|strong=\"H5921\"* come|strong=\"H3423\"* to|strong=\"H5921\"* cast|strong=\"H3423\"* us|strong=\"H5921\"* out|strong=\"H3423\"* of|strong=\"H5921\"* your|strong=\"H5921\"* possession|strong=\"H3423\"*, which|strong=\"H1992\"* you|strong=\"H5921\"* have|strong=\"H3423\"* given|strong=\"H3423\"* us|strong=\"H5921\"* to|strong=\"H5921\"* inherit|strong=\"H3423\"*." + }, + { + "verseNum": 12, + "text": "Our|strong=\"H5921\"* God|strong=\"H3808\"*, will|strong=\"H5869\"* you|strong=\"H3588\"* not|strong=\"H3808\"* judge|strong=\"H8199\"* them|strong=\"H5921\"*? For|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H5869\"* no|strong=\"H3808\"* might|strong=\"H3581\"* against|strong=\"H5921\"* this|strong=\"H2088\"* great|strong=\"H7227\"* company|strong=\"H1995\"* that|strong=\"H3588\"* comes|strong=\"H6440\"* against|strong=\"H5921\"* us|strong=\"H5921\"*. We|strong=\"H3588\"* don’t know|strong=\"H3045\"* what|strong=\"H4100\"* to|strong=\"H5921\"* do|strong=\"H6213\"*, but|strong=\"H3588\"* our|strong=\"H5921\"* eyes|strong=\"H5869\"* are|strong=\"H5869\"* on|strong=\"H5921\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 13, + "text": "All|strong=\"H3605\"* Judah|strong=\"H3063\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, with|strong=\"H3068\"* their|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, their|strong=\"H3605\"* wives, and|strong=\"H1121\"* their|strong=\"H3605\"* children|strong=\"H1121\"*." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* came|strong=\"H1961\"* on|strong=\"H5921\"* Jahaziel|strong=\"H3166\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zechariah|strong=\"H2148\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Benaiah|strong=\"H1141\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeiel|strong=\"H3273\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mattaniah|strong=\"H4983\"*, the|strong=\"H5921\"* Levite|strong=\"H3881\"*, of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asaph, in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H5921\"* assembly|strong=\"H6951\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"H3063\"* he|strong=\"H3588\"* said, “Listen|strong=\"H7181\"*, all|strong=\"H3605\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* you|strong=\"H3588\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* you|strong=\"H3588\"*, King|strong=\"H4428\"* Jehoshaphat|strong=\"H3092\"*. Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3068\"* you|strong=\"H3588\"*, ‘Don’t be|strong=\"H3808\"* afraid|strong=\"H3372\"*, and|strong=\"H3063\"* don’t be|strong=\"H3808\"* dismayed|strong=\"H2865\"* because|strong=\"H3588\"* of|strong=\"H4428\"* this|strong=\"H2088\"* great|strong=\"H7227\"* multitude|strong=\"H1995\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* battle|strong=\"H4421\"* is|strong=\"H3068\"* not|strong=\"H3808\"* yours, but|strong=\"H3588\"* God|strong=\"H3068\"*’s." + }, + { + "verseNum": 16, + "text": "Tomorrow|strong=\"H4279\"*, go|strong=\"H5927\"* down|strong=\"H3381\"* against|strong=\"H5921\"* them|strong=\"H5921\"*. Behold|strong=\"H2005\"*, they|strong=\"H5921\"* are|strong=\"H6440\"* coming|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H5921\"* the|strong=\"H6440\"* ascent|strong=\"H4608\"* of|strong=\"H6440\"* Ziz|strong=\"H6732\"*. You|strong=\"H6440\"* will|strong=\"H5158\"* find|strong=\"H4672\"* them|strong=\"H5921\"* at|strong=\"H5921\"* the|strong=\"H6440\"* end|strong=\"H5490\"* of|strong=\"H6440\"* the|strong=\"H6440\"* valley|strong=\"H5158\"*, before|strong=\"H6440\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"* of|strong=\"H6440\"* Jeruel|strong=\"H3385\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H6440\"* will|strong=\"H3068\"* not|strong=\"H3808\"* need to|strong=\"H3318\"* fight|strong=\"H3898\"* this|strong=\"H2063\"* battle|strong=\"H3898\"*. Set|strong=\"H5975\"* yourselves|strong=\"H3320\"*, stand|strong=\"H5975\"* still|strong=\"H5975\"*, and|strong=\"H3063\"* see|strong=\"H7200\"* the|strong=\"H6440\"* salvation|strong=\"H3444\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H6440\"*, O|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*. Don’t be|strong=\"H3808\"* afraid|strong=\"H3372\"*, nor|strong=\"H3808\"* be|strong=\"H3808\"* dismayed|strong=\"H2865\"*. Go|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H5973\"* them|strong=\"H6440\"* tomorrow|strong=\"H4279\"*, for|strong=\"H6440\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H6440\"*.’”" + }, + { + "verseNum": 18, + "text": "Jehoshaphat|strong=\"H3092\"* bowed|strong=\"H7812\"* his|strong=\"H3605\"* head|strong=\"H6915\"* with|strong=\"H3068\"* his|strong=\"H3605\"* face|strong=\"H6440\"* to|strong=\"H3068\"* the|strong=\"H3605\"* ground|strong=\"H6440\"*; and|strong=\"H3063\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, worshiping|strong=\"H7812\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H3068\"* Levites|strong=\"H3881\"*, of|strong=\"H1121\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3068\"* Kohathites|strong=\"H6956\"* and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3068\"* Korahites|strong=\"H7145\"*, stood|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H3478\"* praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, with|strong=\"H3068\"* an|strong=\"H6965\"* exceedingly|strong=\"H4605\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H3068\"* rose|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3427\"* the|strong=\"H8085\"* morning|strong=\"H1242\"* and|strong=\"H3063\"* went|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H8085\"* wilderness|strong=\"H4057\"* of|strong=\"H3068\"* Tekoa|strong=\"H8620\"*. As|strong=\"H3068\"* they|strong=\"H3068\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, Jehoshaphat|strong=\"H3092\"* stood|strong=\"H5975\"* and|strong=\"H3063\"* said|strong=\"H8085\"*, “Listen|strong=\"H8085\"* to|strong=\"H3318\"* me|strong=\"H3318\"*, Judah|strong=\"H3063\"* and|strong=\"H3063\"* you|strong=\"H3318\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*! Believe in|strong=\"H3427\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, so|strong=\"H3318\"* you|strong=\"H3318\"* will|strong=\"H3068\"* be|strong=\"H3068\"* established|strong=\"H5975\"*! Believe his|strong=\"H3068\"* prophets|strong=\"H5030\"*, so|strong=\"H3318\"* you|strong=\"H3318\"* will|strong=\"H3068\"* prosper|strong=\"H6743\"*.”" + }, + { + "verseNum": 21, + "text": "When|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3068\"* taken|strong=\"H3289\"* counsel|strong=\"H3289\"* with|strong=\"H3068\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, he|strong=\"H3588\"* appointed|strong=\"H5975\"* those|strong=\"H3318\"* who|strong=\"H5971\"* were|strong=\"H5971\"* to|strong=\"H3318\"* sing|strong=\"H7891\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* give|strong=\"H3034\"* praise|strong=\"H1984\"* in|strong=\"H3068\"* holy|strong=\"H6944\"* array|strong=\"H1927\"* as|strong=\"H3068\"* they|strong=\"H3588\"* go|strong=\"H3318\"* out|strong=\"H3318\"* before|strong=\"H6440\"* the|strong=\"H6440\"* army|strong=\"H5971\"*, and|strong=\"H3068\"* say, “Give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* his|strong=\"H3068\"* loving kindness|strong=\"H2617\"* endures|strong=\"H5769\"* forever|strong=\"H5769\"*.”" + }, + { + "verseNum": 22, + "text": "When|strong=\"H6256\"* they|strong=\"H3068\"* began|strong=\"H2490\"* to|strong=\"H3068\"* sing|strong=\"H5414\"* and|strong=\"H1121\"* to|strong=\"H3068\"* praise|strong=\"H8416\"*, Yahweh|strong=\"H3068\"* set|strong=\"H5414\"* ambushers against|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, Moab|strong=\"H4124\"*, and|strong=\"H1121\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"*, who|strong=\"H3068\"* had|strong=\"H3068\"* come|strong=\"H3063\"* against|strong=\"H5921\"* Judah|strong=\"H3063\"*; and|strong=\"H1121\"* they|strong=\"H3068\"* were|strong=\"H1121\"* struck|strong=\"H5062\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* and|strong=\"H1121\"* Moab|strong=\"H4124\"* stood|strong=\"H5975\"* up|strong=\"H5975\"* against|strong=\"H5921\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"* to|strong=\"H5921\"* utterly|strong=\"H2763\"* kill and|strong=\"H1121\"* destroy|strong=\"H8045\"* them|strong=\"H5921\"*. When|strong=\"H3615\"* they|strong=\"H5921\"* had|strong=\"H1121\"* finished|strong=\"H3615\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Seir|strong=\"H8165\"*, everyone helped|strong=\"H5826\"* to|strong=\"H5921\"* destroy|strong=\"H8045\"* each other|strong=\"H7453\"*." + }, + { + "verseNum": 24, + "text": "When|strong=\"H5307\"* Judah|strong=\"H3063\"* came|strong=\"H3063\"* to|strong=\"H5921\"* the|strong=\"H5921\"* place overlooking|strong=\"H2005\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*, they|strong=\"H5921\"* looked|strong=\"H6437\"* at|strong=\"H5921\"* the|strong=\"H5921\"* multitude|strong=\"H1995\"*; and|strong=\"H3063\"* behold|strong=\"H2005\"*, they|strong=\"H5921\"* were|strong=\"H3063\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* fallen|strong=\"H5307\"* to|strong=\"H5921\"* the|strong=\"H5921\"* earth, and|strong=\"H3063\"* there were|strong=\"H3063\"* none who|strong=\"H3063\"* escaped|strong=\"H6413\"*." + }, + { + "verseNum": 25, + "text": "When|strong=\"H3588\"* Jehoshaphat|strong=\"H3092\"* and|strong=\"H3117\"* his|strong=\"H1961\"* people|strong=\"H5971\"* came|strong=\"H1961\"* to|strong=\"H1961\"* take|strong=\"H1961\"* their|strong=\"H3588\"* plunder|strong=\"H7998\"*, they|strong=\"H3588\"* found|strong=\"H4672\"* among|strong=\"H4672\"* them|strong=\"H4672\"* in|strong=\"H3117\"* abundance|strong=\"H7230\"* both|strong=\"H7230\"* riches|strong=\"H7399\"* and|strong=\"H3117\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* with|strong=\"H3117\"* precious|strong=\"H2530\"* jewels|strong=\"H3627\"*, which|strong=\"H1931\"* they|strong=\"H3588\"* stripped|strong=\"H5337\"* off|strong=\"H5337\"* for|strong=\"H3588\"* themselves, more|strong=\"H7227\"* than|strong=\"H3588\"* they|strong=\"H3588\"* could|strong=\"H5337\"* carry|strong=\"H4853\"* away|strong=\"H5337\"*. They|strong=\"H3588\"* took|strong=\"H1961\"* plunder|strong=\"H7998\"* for|strong=\"H3588\"* three|strong=\"H7969\"* days|strong=\"H3117\"*, it|strong=\"H1931\"* was|strong=\"H1961\"* so|strong=\"H1961\"* much|strong=\"H7227\"*." + }, + { + "verseNum": 26, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* fourth|strong=\"H7243\"* day|strong=\"H3117\"*, they|strong=\"H3588\"* assembled|strong=\"H6950\"* themselves|strong=\"H7121\"* in|strong=\"H5921\"* Beracah|strong=\"H1294\"*+ 20:26 “Beracah” means “blessing”.* Valley|strong=\"H6010\"*, for|strong=\"H3588\"* there|strong=\"H8033\"* they|strong=\"H3588\"* blessed|strong=\"H1288\"* Yahweh|strong=\"H3068\"*. Therefore|strong=\"H3651\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3068\"* that|strong=\"H3588\"* place|strong=\"H4725\"* was|strong=\"H3068\"* called|strong=\"H7121\"* “Beracah|strong=\"H1294\"* Valley|strong=\"H6010\"*” to|strong=\"H5704\"* this|strong=\"H3651\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 27, + "text": "Then|strong=\"H7725\"* they|strong=\"H3588\"* returned|strong=\"H7725\"*, every|strong=\"H3605\"* man|strong=\"H3605\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*, with|strong=\"H3068\"* Jehoshaphat|strong=\"H3092\"* in|strong=\"H3068\"* front of|strong=\"H3068\"* them|strong=\"H7725\"*, to|strong=\"H7725\"* go|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"* with|strong=\"H3068\"* joy|strong=\"H8057\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* made|strong=\"H7725\"* them|strong=\"H7725\"* to|strong=\"H7725\"* rejoice|strong=\"H8055\"* over|strong=\"H7218\"* their|strong=\"H3605\"* enemies|strong=\"H3389\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"H3068\"* came|strong=\"H3068\"* to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* with|strong=\"H1004\"* stringed instruments, harps|strong=\"H3658\"*, and|strong=\"H3068\"* trumpets|strong=\"H2689\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3605\"* fear|strong=\"H6343\"* of|strong=\"H3068\"* God|strong=\"H3068\"* was|strong=\"H3068\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* countries when|strong=\"H3588\"* they|strong=\"H3588\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* fought|strong=\"H3898\"* against|strong=\"H5921\"* the|strong=\"H3605\"* enemies of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 30, + "text": "So the|strong=\"H5439\"* realm|strong=\"H4438\"* of|strong=\"H4438\"* Jehoshaphat|strong=\"H3092\"* was|strong=\"H4438\"* quiet|strong=\"H8252\"*, for|strong=\"H8252\"* his|strong=\"H3092\"* God gave|strong=\"H5117\"* him|strong=\"H5117\"* rest|strong=\"H5117\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 31, + "text": "So|strong=\"H5921\"* Jehoshaphat|strong=\"H3092\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Judah|strong=\"H3063\"*. He|strong=\"H2568\"* was|strong=\"H8034\"* thirty-five|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H2568\"* began|strong=\"H3063\"* to|strong=\"H5921\"* reign|strong=\"H4427\"*. He|strong=\"H2568\"* reigned|strong=\"H4427\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H5921\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Azubah|strong=\"H5806\"* the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Shilhi|strong=\"H7977\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"H6213\"* walked|strong=\"H3212\"* in|strong=\"H3068\"* the|strong=\"H6213\"* way|strong=\"H1870\"* of|strong=\"H3068\"* Asa his|strong=\"H3068\"* father, and|strong=\"H3068\"* didn’t turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* it|strong=\"H6213\"*, doing|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*." + }, + { + "verseNum": 33, + "text": "However the|strong=\"H5493\"* high|strong=\"H1116\"* places|strong=\"H1116\"* were|strong=\"H5971\"* not|strong=\"H3808\"* taken|strong=\"H5493\"* away|strong=\"H5493\"*, and|strong=\"H5971\"* the|strong=\"H5493\"* people|strong=\"H5971\"* had|strong=\"H5971\"* still|strong=\"H5750\"* not|strong=\"H3808\"* set|strong=\"H3559\"* their|strong=\"H3559\"* hearts|strong=\"H3824\"* on|strong=\"H3824\"* the|strong=\"H5493\"* God|strong=\"H3808\"* of|strong=\"H5971\"* their|strong=\"H3559\"* fathers." + }, + { + "verseNum": 34, + "text": "Now|strong=\"H2005\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H1121\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"*, first|strong=\"H7223\"* and|strong=\"H1121\"* last, behold|strong=\"H2005\"*, they|strong=\"H5921\"* are|strong=\"H1121\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* history of|strong=\"H1121\"* Jehu|strong=\"H3058\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hanani|strong=\"H2607\"*, which|strong=\"H1697\"* is|strong=\"H1697\"* included|strong=\"H5927\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H1121\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 35, + "text": "After this|strong=\"H6213\"*, Jehoshaphat|strong=\"H3092\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* joined|strong=\"H2266\"* himself|strong=\"H1931\"* with|strong=\"H5973\"* Ahaziah king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*. The|strong=\"H6213\"* same|strong=\"H1931\"* did|strong=\"H6213\"* very|strong=\"H6213\"* wickedly|strong=\"H7561\"*." + }, + { + "verseNum": 36, + "text": "He|strong=\"H6213\"* joined|strong=\"H2266\"* himself|strong=\"H6213\"* with|strong=\"H5973\"* him|strong=\"H6213\"* to|strong=\"H3212\"* make|strong=\"H6213\"* ships to|strong=\"H3212\"* go|strong=\"H3212\"* to|strong=\"H3212\"* Tarshish|strong=\"H8659\"*. They|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* ships in|strong=\"H6213\"* Ezion Geber." + }, + { + "verseNum": 37, + "text": "Then|strong=\"H3068\"* Eliezer the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Dodavahu|strong=\"H1735\"* of|strong=\"H1121\"* Mareshah|strong=\"H4762\"* prophesied|strong=\"H5012\"* against|strong=\"H5921\"* Jehoshaphat|strong=\"H3092\"*, saying, “Because|strong=\"H5921\"* you|strong=\"H5921\"* have|strong=\"H3068\"* joined|strong=\"H2266\"* yourself|strong=\"H5921\"* with|strong=\"H5973\"* Ahaziah, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* destroyed|strong=\"H7665\"* your|strong=\"H3068\"* works|strong=\"H4639\"*.” The|strong=\"H5921\"* ships were|strong=\"H1121\"* wrecked, so|strong=\"H3808\"* that|strong=\"H3068\"* they|strong=\"H3068\"* were|strong=\"H1121\"* not|strong=\"H3808\"* able|strong=\"H6113\"* to|strong=\"H3068\"* go|strong=\"H3212\"* to|strong=\"H3068\"* Tarshish|strong=\"H8659\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Jehoshaphat|strong=\"H3092\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* was|strong=\"H1732\"* buried|strong=\"H6912\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Jehoram|strong=\"H3088\"* his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3605\"* had|strong=\"H3478\"* brothers|strong=\"H1121\"*, the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"*: Azariah|strong=\"H5838\"*, Jehiel|strong=\"H3171\"*, Zechariah|strong=\"H2148\"*, Azariah|strong=\"H5838\"*, Michael|strong=\"H4317\"*, and|strong=\"H1121\"* Shephatiah|strong=\"H8203\"*. All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H3478\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 3, + "text": "Their|strong=\"H5414\"* father gave|strong=\"H5414\"* them|strong=\"H5414\"* great|strong=\"H7227\"* gifts|strong=\"H4979\"* of|strong=\"H5892\"* silver|strong=\"H3701\"*, of|strong=\"H5892\"* gold|strong=\"H2091\"*, and|strong=\"H3063\"* of|strong=\"H5892\"* precious|strong=\"H4030\"* things|strong=\"H4030\"*, with|strong=\"H5973\"* fortified|strong=\"H4694\"* cities|strong=\"H5892\"* in|strong=\"H5892\"* Judah|strong=\"H3063\"*; but|strong=\"H3588\"* he|strong=\"H1931\"* gave|strong=\"H5414\"* the|strong=\"H3588\"* kingdom|strong=\"H4467\"* to|strong=\"H5414\"* Jehoram|strong=\"H3088\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H3588\"* firstborn|strong=\"H1060\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H1571\"* when|strong=\"H2026\"* Jehoram|strong=\"H3088\"* had|strong=\"H3478\"* risen|strong=\"H6965\"* up|strong=\"H6965\"* over|strong=\"H5921\"* the|strong=\"H3605\"* kingdom|strong=\"H4467\"* of|strong=\"H8269\"* his|strong=\"H3605\"* father, and|strong=\"H6965\"* had|strong=\"H3478\"* strengthened|strong=\"H2388\"* himself|strong=\"H2388\"*, he|strong=\"H3605\"* killed|strong=\"H2026\"* all|strong=\"H3605\"* his|strong=\"H3605\"* brothers with|strong=\"H5921\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, and|strong=\"H6965\"* also|strong=\"H1571\"* some|strong=\"H3605\"* of|strong=\"H8269\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 5, + "text": "Jehoram|strong=\"H3088\"* was|strong=\"H1121\"* thirty-two|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8147\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H8147\"* reigned|strong=\"H4427\"* eight|strong=\"H8083\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3588\"* walked|strong=\"H3212\"* in|strong=\"H3478\"* the|strong=\"H3588\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H3588\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, as|strong=\"H1961\"* did|strong=\"H6213\"* Ahab’s house|strong=\"H1004\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3068\"* Ahab’s daughter|strong=\"H1323\"* as|strong=\"H1961\"* his|strong=\"H3068\"* wife. He|strong=\"H3588\"* did|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*." + }, + { + "verseNum": 7, + "text": "However Yahweh|strong=\"H3068\"* would|strong=\"H3068\"* not|strong=\"H3808\"* destroy|strong=\"H7843\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"*, because|strong=\"H4616\"* of|strong=\"H1121\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* that|strong=\"H3605\"* he|strong=\"H3117\"* had|strong=\"H3068\"* made|strong=\"H3772\"* with|strong=\"H1004\"* David|strong=\"H1732\"*, and|strong=\"H1121\"* as|strong=\"H3117\"* he|strong=\"H3117\"* promised|strong=\"H5414\"* to|strong=\"H3068\"* give|strong=\"H5414\"* a|strong=\"H3068\"* lamp|strong=\"H5216\"* to|strong=\"H3068\"* him|strong=\"H5414\"* and|strong=\"H1121\"* to|strong=\"H3068\"* his|strong=\"H3605\"* children|strong=\"H1121\"* always|strong=\"H3605\"*." + }, + { + "verseNum": 8, + "text": "In|strong=\"H5921\"* his|strong=\"H5921\"* days|strong=\"H3117\"* Edom revolted|strong=\"H6586\"* from|strong=\"H5921\"* under|strong=\"H8478\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* made|strong=\"H4427\"* a|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* themselves|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H1961\"* Jehoram|strong=\"H3088\"* went|strong=\"H5674\"* there|strong=\"H1961\"* with|strong=\"H5973\"* his|strong=\"H3605\"* captains|strong=\"H8269\"* and|strong=\"H6965\"* all|strong=\"H3605\"* his|strong=\"H3605\"* chariots|strong=\"H7393\"* with|strong=\"H5973\"* him|strong=\"H5221\"*. He|strong=\"H3605\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* by|strong=\"H5674\"* night|strong=\"H3915\"* and|strong=\"H6965\"* struck|strong=\"H5221\"* the|strong=\"H3605\"* Edomites who|strong=\"H3605\"* surrounded|strong=\"H5437\"* him|strong=\"H5221\"*, along|strong=\"H5973\"* with|strong=\"H5973\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H3605\"* chariots|strong=\"H7393\"*." + }, + { + "verseNum": 10, + "text": "So|strong=\"H2088\"* Edom has|strong=\"H3068\"* been|strong=\"H6586\"* in|strong=\"H3068\"* revolt|strong=\"H6586\"* from|strong=\"H3027\"* under|strong=\"H8478\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*. Then|strong=\"H2088\"* Libnah|strong=\"H3841\"* revolted|strong=\"H6586\"* at|strong=\"H3068\"* the|strong=\"H3588\"* same|strong=\"H1931\"* time|strong=\"H6256\"* from|strong=\"H3027\"* under|strong=\"H8478\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* had|strong=\"H3068\"* forsaken|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H3068\"* his|strong=\"H3068\"* fathers." + }, + { + "verseNum": 11, + "text": "Moreover|strong=\"H1571\"* he|strong=\"H1931\"* made|strong=\"H6213\"* high|strong=\"H1116\"* places|strong=\"H1116\"* in|strong=\"H3427\"* the|strong=\"H6213\"* mountains|strong=\"H2022\"* of|strong=\"H3427\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* made|strong=\"H6213\"* the|strong=\"H6213\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* play|strong=\"H2181\"* the|strong=\"H6213\"* prostitute|strong=\"H2181\"*, and|strong=\"H3063\"* led|strong=\"H5080\"* Judah|strong=\"H3063\"* astray|strong=\"H5080\"*." + }, + { + "verseNum": 12, + "text": "A|strong=\"H3068\"* letter|strong=\"H4385\"* came|strong=\"H1980\"* to|strong=\"H1980\"* him|strong=\"H8478\"* from|strong=\"H1980\"* Elijah the|strong=\"H3541\"* prophet|strong=\"H5030\"*, saying, “Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H4428\"* David|strong=\"H1732\"* your|strong=\"H3068\"* father, says|strong=\"H3541\"*, ‘Because|strong=\"H8478\"* you|strong=\"H3808\"* have|strong=\"H3068\"* not|strong=\"H3808\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* the|strong=\"H3541\"* ways|strong=\"H1870\"* of|strong=\"H4428\"* Jehoshaphat|strong=\"H3092\"* your|strong=\"H3068\"* father, nor|strong=\"H3808\"* in|strong=\"H1980\"* the|strong=\"H3541\"* ways|strong=\"H1870\"* of|strong=\"H4428\"* Asa king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*," + }, + { + "verseNum": 13, + "text": "but|strong=\"H1571\"* have|strong=\"H1571\"* walked|strong=\"H3212\"* in|strong=\"H3427\"* the|strong=\"H4480\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H4480\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, and|strong=\"H3063\"* have|strong=\"H1571\"* made|strong=\"H3478\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* the|strong=\"H4480\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3478\"* play|strong=\"H2181\"* the|strong=\"H4480\"* prostitute|strong=\"H2181\"* like|strong=\"H1004\"* Ahab’s house|strong=\"H1004\"* did|strong=\"H3478\"*, and|strong=\"H3063\"* also|strong=\"H1571\"* have|strong=\"H1571\"* slain|strong=\"H2026\"* your|strong=\"H4480\"* brothers of|strong=\"H4428\"* your|strong=\"H4480\"* father’s house|strong=\"H1004\"*, who|strong=\"H3478\"* were|strong=\"H3478\"* better|strong=\"H2896\"* than|strong=\"H4480\"* yourself," + }, + { + "verseNum": 14, + "text": "behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5062\"* your|strong=\"H3068\"* people|strong=\"H5971\"* with|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* plague|strong=\"H4046\"*, including|strong=\"H3605\"* your|strong=\"H3068\"* children|strong=\"H1121\"*, your|strong=\"H3068\"* wives, and|strong=\"H1121\"* all|strong=\"H3605\"* your|strong=\"H3068\"* possessions|strong=\"H7399\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"H3117\"* you|strong=\"H5921\"* will|strong=\"H7227\"* have|strong=\"H3117\"* great|strong=\"H7227\"* sickness|strong=\"H2483\"* with|strong=\"H5921\"* a|strong=\"H3068\"* disease|strong=\"H2483\"* of|strong=\"H3117\"* your|strong=\"H5921\"* bowels|strong=\"H4578\"*, until|strong=\"H5704\"* your|strong=\"H5921\"* bowels|strong=\"H4578\"* fall|strong=\"H4578\"* out|strong=\"H3318\"* by|strong=\"H5921\"* reason|strong=\"H5921\"* of|strong=\"H3117\"* the|strong=\"H5921\"* sickness|strong=\"H2483\"*, day|strong=\"H3117\"* by|strong=\"H5921\"* day|strong=\"H3117\"*.’”" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* stirred|strong=\"H5782\"* up|strong=\"H5782\"* against|strong=\"H5921\"* Jehoram|strong=\"H3088\"* the|strong=\"H5921\"* spirit|strong=\"H7307\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"* and|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Arabians|strong=\"H6163\"* who|strong=\"H3068\"* are|strong=\"H3027\"* beside|strong=\"H5921\"* the|strong=\"H5921\"* Ethiopians|strong=\"H3569\"*;" + }, + { + "verseNum": 17, + "text": "and|strong=\"H1121\"* they|strong=\"H3588\"* came|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5927\"* Judah|strong=\"H3063\"*, broke|strong=\"H1234\"* into|strong=\"H5927\"* it|strong=\"H3588\"*, and|strong=\"H1121\"* carried|strong=\"H7617\"* away|strong=\"H7617\"* all|strong=\"H3605\"* the|strong=\"H3605\"* possessions|strong=\"H7399\"* that|strong=\"H3588\"* were|strong=\"H1121\"* found|strong=\"H4672\"* in|strong=\"H1004\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, including|strong=\"H3605\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H3605\"* wives, so|strong=\"H5927\"* that|strong=\"H3588\"* there|strong=\"H5927\"* was|strong=\"H4428\"* no|strong=\"H3808\"* son|strong=\"H1121\"* left|strong=\"H7604\"* to|strong=\"H5927\"* him|strong=\"H4672\"* except|strong=\"H3588\"* Jehoahaz|strong=\"H3059\"*, the|strong=\"H3605\"* youngest|strong=\"H6996\"* of|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 18, + "text": "After all|strong=\"H3605\"* this|strong=\"H2063\"* Yahweh|strong=\"H3068\"* struck|strong=\"H5062\"* him|strong=\"H3605\"* in|strong=\"H3068\"* his|strong=\"H3605\"* bowels|strong=\"H4578\"* with|strong=\"H3068\"* an|strong=\"H3068\"* incurable disease|strong=\"H2483\"*." + }, + { + "verseNum": 19, + "text": "In|strong=\"H6213\"* process|strong=\"H7093\"* of|strong=\"H3117\"* time|strong=\"H6256\"*, at|strong=\"H3117\"* the|strong=\"H6213\"* end|strong=\"H7093\"* of|strong=\"H3117\"* two|strong=\"H8147\"* years|strong=\"H3117\"*, his|strong=\"H1961\"* bowels|strong=\"H4578\"* fell|strong=\"H3318\"* out|strong=\"H3318\"* by|strong=\"H3117\"* reason|strong=\"H5973\"* of|strong=\"H3117\"* his|strong=\"H1961\"* sickness|strong=\"H2483\"*, and|strong=\"H3117\"* he|strong=\"H3117\"* died|strong=\"H4191\"* of|strong=\"H3117\"* severe|strong=\"H7451\"* diseases|strong=\"H8463\"*. His|strong=\"H1961\"* people|strong=\"H5971\"* made|strong=\"H6213\"* no|strong=\"H3808\"* burning|strong=\"H8316\"* for|strong=\"H6213\"* him|strong=\"H6213\"*, like|strong=\"H1961\"* the|strong=\"H6213\"* burning|strong=\"H8316\"* of|strong=\"H3117\"* his|strong=\"H1961\"* fathers." + }, + { + "verseNum": 20, + "text": "He|strong=\"H1732\"* was|strong=\"H1961\"* thirty-two|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* he|strong=\"H1732\"* began|strong=\"H1961\"* to|strong=\"H3212\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H1732\"* reigned|strong=\"H4427\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"* eight|strong=\"H8083\"* years|strong=\"H8141\"*. He|strong=\"H1732\"* departed|strong=\"H3212\"* with|strong=\"H3389\"* no|strong=\"H3808\"* one|strong=\"H3808\"*’s regret|strong=\"H2532\"*. They|strong=\"H3808\"* buried|strong=\"H6912\"* him|strong=\"H4427\"* in|strong=\"H8141\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* in|strong=\"H8141\"* the|strong=\"H1961\"* tombs|strong=\"H6913\"* of|strong=\"H1121\"* the|strong=\"H1961\"* kings|strong=\"H4428\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* made|strong=\"H4427\"* Ahaziah his|strong=\"H3605\"* youngest|strong=\"H6996\"* son|strong=\"H1121\"* king|strong=\"H4428\"* in|strong=\"H3427\"* his|strong=\"H3605\"* place|strong=\"H8478\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* band|strong=\"H1416\"* of|strong=\"H1121\"* men|strong=\"H1121\"* who|strong=\"H3605\"* came|strong=\"H3063\"* with|strong=\"H3427\"* the|strong=\"H3605\"* Arabians|strong=\"H6163\"* to|strong=\"H3389\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* had|strong=\"H4428\"* slain|strong=\"H2026\"* all|strong=\"H3605\"* the|strong=\"H3605\"* oldest. So|strong=\"H3588\"* Ahaziah the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoram|strong=\"H3088\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* reigned|strong=\"H4427\"*." + }, + { + "verseNum": 2, + "text": "Ahaziah was|strong=\"H8034\"* forty-two|strong=\"H8147\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8147\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H8147\"* reigned|strong=\"H4427\"* one|strong=\"H1121\"* year|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H8147\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Athaliah|strong=\"H6271\"* the|strong=\"H8034\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Omri|strong=\"H6018\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H1931\"* also|strong=\"H1571\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* the|strong=\"H3588\"* ways|strong=\"H1870\"* of|strong=\"H1004\"* Ahab’s house|strong=\"H1004\"*, because|strong=\"H3588\"* his|strong=\"H1961\"* mother was|strong=\"H1961\"* his|strong=\"H1961\"* counselor|strong=\"H3289\"* in|strong=\"H1980\"* acting|strong=\"H1980\"* wickedly|strong=\"H7561\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3588\"* did|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, as|strong=\"H1961\"* did|strong=\"H6213\"* Ahab’s house|strong=\"H1004\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H1961\"* his|strong=\"H3068\"* counselors|strong=\"H3289\"* after|strong=\"H1961\"* the|strong=\"H3588\"* death|strong=\"H4194\"* of|strong=\"H1004\"* his|strong=\"H3068\"* father, to|strong=\"H3068\"* his|strong=\"H3068\"* destruction|strong=\"H4889\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H5921\"* also|strong=\"H1571\"* followed|strong=\"H1980\"* their|strong=\"H5921\"* counsel|strong=\"H6098\"*, and|strong=\"H1121\"* went|strong=\"H1980\"* with|strong=\"H1980\"* Jehoram|strong=\"H3088\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahab king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H1980\"* war|strong=\"H4421\"* against|strong=\"H5921\"* Hazael|strong=\"H2371\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria at|strong=\"H5921\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*; and|strong=\"H1121\"* the|strong=\"H5921\"* Syrians|strong=\"H7421\"* wounded|strong=\"H5221\"* Joram|strong=\"H3141\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H1931\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* be|strong=\"H1121\"* healed|strong=\"H7495\"* in|strong=\"H4428\"* Jezreel|strong=\"H3157\"* of|strong=\"H1121\"* the|strong=\"H7200\"* wounds|strong=\"H4347\"* which|strong=\"H1931\"* they|strong=\"H3588\"* had|strong=\"H4428\"* given|strong=\"H5221\"* him|strong=\"H5221\"* at|strong=\"H4428\"* Ramah|strong=\"H7414\"*, when|strong=\"H3588\"* he|strong=\"H1931\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* Hazael|strong=\"H2371\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria. Azariah|strong=\"H5838\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoram|strong=\"H3088\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H7725\"* see|strong=\"H7200\"* Jehoram|strong=\"H3088\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahab in|strong=\"H4428\"* Jezreel|strong=\"H3157\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* sick|strong=\"H2470\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H1961\"* the|strong=\"H3068\"* destruction|strong=\"H8395\"* of|strong=\"H1121\"* Ahaziah was|strong=\"H3068\"* of|strong=\"H1121\"* God|strong=\"H3068\"*, in|strong=\"H3068\"* that|strong=\"H3068\"* he|strong=\"H3068\"* went|strong=\"H3318\"* to|strong=\"H3318\"* Joram|strong=\"H3141\"*; for|strong=\"H3068\"* when|strong=\"H1961\"* he|strong=\"H3068\"* had|strong=\"H3068\"* come|strong=\"H1961\"*, he|strong=\"H3068\"* went|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H5973\"* Jehoram|strong=\"H3088\"* against|strong=\"H5973\"* Jehu|strong=\"H3058\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nimshi|strong=\"H5250\"*, whom Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* anointed|strong=\"H4886\"* to|strong=\"H3318\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* Ahab’s house|strong=\"H1004\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H1961\"* Jehu|strong=\"H3058\"* was|strong=\"H1961\"* executing|strong=\"H8199\"* judgment|strong=\"H8199\"* on|strong=\"H1961\"* Ahab’s house|strong=\"H1004\"*, he|strong=\"H1004\"* found|strong=\"H4672\"* the|strong=\"H8199\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* the|strong=\"H8199\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H8199\"* brothers|strong=\"H1121\"* of|strong=\"H1121\"* Ahaziah serving|strong=\"H8334\"* Ahaziah, and|strong=\"H1121\"* killed|strong=\"H2026\"* them|strong=\"H4672\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H1931\"* sought|strong=\"H1245\"* Ahaziah, and|strong=\"H1121\"* they|strong=\"H3588\"* caught|strong=\"H3920\"* him|strong=\"H4191\"* (now|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3068\"* hiding|strong=\"H2244\"* in|strong=\"H3068\"* Samaria|strong=\"H8111\"*), and|strong=\"H1121\"* they|strong=\"H3588\"* brought|strong=\"H3068\"* him|strong=\"H4191\"* to|strong=\"H4191\"* Jehu|strong=\"H3058\"* and|strong=\"H1121\"* killed|strong=\"H4191\"* him|strong=\"H4191\"*; and|strong=\"H1121\"* they|strong=\"H3588\"* buried|strong=\"H6912\"* him|strong=\"H4191\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* said, “He|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"*, who|strong=\"H3605\"* sought|strong=\"H1245\"* Yahweh|strong=\"H3068\"* with|strong=\"H1004\"* all|strong=\"H3605\"* his|strong=\"H3605\"* heart|strong=\"H3824\"*.” The|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Ahaziah had|strong=\"H3068\"* no|strong=\"H3605\"* power|strong=\"H3581\"* to|strong=\"H4191\"* hold|strong=\"H1004\"* the|strong=\"H3605\"* kingdom|strong=\"H4467\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H3588\"* when|strong=\"H3588\"* Athaliah|strong=\"H6271\"* the|strong=\"H3605\"* mother of|strong=\"H1121\"* Ahaziah saw|strong=\"H7200\"* that|strong=\"H3588\"* her|strong=\"H3605\"* son|strong=\"H1121\"* was|strong=\"H1004\"* dead|strong=\"H4191\"*, she|strong=\"H3588\"* arose|strong=\"H6965\"* and|strong=\"H1121\"* destroyed|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* royal|strong=\"H4467\"* offspring|strong=\"H2233\"* of|strong=\"H1121\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H3588\"* Jehoshabeath|strong=\"H3090\"*, the|strong=\"H6440\"* king|strong=\"H4428\"*’s daughter|strong=\"H1323\"*, took|strong=\"H3947\"* Joash|strong=\"H3101\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahaziah, and|strong=\"H1121\"* stealthily|strong=\"H1589\"* rescued him|strong=\"H5414\"* from|strong=\"H6440\"* among|strong=\"H8432\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"* who|strong=\"H1931\"* were|strong=\"H1961\"* slain|strong=\"H4191\"*, and|strong=\"H1121\"* put|strong=\"H5414\"* him|strong=\"H5414\"* and|strong=\"H1121\"* his|strong=\"H5414\"* nurse|strong=\"H3243\"* in|strong=\"H4428\"* the|strong=\"H6440\"* bedroom|strong=\"H2315\"*. So|strong=\"H3947\"* Jehoshabeath|strong=\"H3090\"*, the|strong=\"H6440\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* King|strong=\"H4428\"* Jehoram|strong=\"H3088\"*, the|strong=\"H6440\"* wife of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* (for|strong=\"H3588\"* she|strong=\"H1931\"* was|strong=\"H1961\"* the|strong=\"H6440\"* sister of|strong=\"H1121\"* Ahaziah), hid|strong=\"H5641\"* him|strong=\"H5414\"* from|strong=\"H6440\"* Athaliah|strong=\"H6271\"*, so|strong=\"H3947\"* that|strong=\"H3588\"* she|strong=\"H1931\"* didn’t kill|strong=\"H4191\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H1004\"* was|strong=\"H1961\"* with|strong=\"H1004\"* them|strong=\"H5921\"* hidden|strong=\"H2244\"* in|strong=\"H8141\"* God’s house|strong=\"H1004\"* six|strong=\"H8337\"* years|strong=\"H8141\"* while|strong=\"H1961\"* Athaliah|strong=\"H6271\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* the|strong=\"H5921\"* land." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3947\"* seventh|strong=\"H7637\"* year|strong=\"H8141\"*, Jehoiada|strong=\"H3077\"* strengthened|strong=\"H2388\"* himself|strong=\"H2388\"*, and|strong=\"H3967\"* took|strong=\"H3947\"* the|strong=\"H3947\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* hundreds|strong=\"H3967\"*—Azariah|strong=\"H5838\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeroham|strong=\"H3395\"*, Ishmael|strong=\"H3458\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehohanan|strong=\"H3076\"*, Azariah|strong=\"H5838\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Obed|strong=\"H5744\"*, Maaseiah|strong=\"H4641\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Adaiah|strong=\"H5718\"*, and|strong=\"H3967\"* Elishaphat the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zichri|strong=\"H2147\"*—into|strong=\"H3947\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H3478\"* went|strong=\"H3478\"* around|strong=\"H5437\"* in|strong=\"H3478\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* gathered|strong=\"H6908\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* out|strong=\"H3605\"* of|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H5892\"* fathers’ households|strong=\"H3881\"* of|strong=\"H5892\"* Israel|strong=\"H3478\"*, and|strong=\"H3063\"* they|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 3, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H5973\"* the|strong=\"H3605\"* king|strong=\"H4428\"* in|strong=\"H5921\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"*. Jehoiada+ 23:3 Hebrew He* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H1992\"*, “Behold|strong=\"H2009\"*, the|strong=\"H3605\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"* must|strong=\"H1121\"* reign|strong=\"H4427\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* concerning|strong=\"H5921\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 4, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H6213\"* thing|strong=\"H1697\"* that|strong=\"H1697\"* you|strong=\"H6213\"* must do|strong=\"H6213\"*: a|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* of|strong=\"H1697\"* you|strong=\"H6213\"*, who|strong=\"H3548\"* come in|strong=\"H6213\"* on|strong=\"H6213\"* the|strong=\"H6213\"* Sabbath|strong=\"H7676\"*, of|strong=\"H1697\"* the|strong=\"H6213\"* priests|strong=\"H3548\"* and|strong=\"H3548\"* of|strong=\"H1697\"* the|strong=\"H6213\"* Levites|strong=\"H3881\"*, shall|strong=\"H3548\"* be|strong=\"H1697\"* gatekeepers|strong=\"H7778\"* of|strong=\"H1697\"* the|strong=\"H6213\"* thresholds|strong=\"H5592\"*." + }, + { + "verseNum": 5, + "text": "A|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* at|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*; and|strong=\"H3068\"* a|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* at|strong=\"H3068\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H4428\"* the|strong=\"H3605\"* foundation|strong=\"H3247\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* will|strong=\"H3068\"* be|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3605\"* courts|strong=\"H2691\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"H3588\"* let no|strong=\"H3605\"* one|strong=\"H3605\"* come|strong=\"H5971\"* into Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* except|strong=\"H3588\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* those|strong=\"H1992\"* who|strong=\"H3605\"* minister|strong=\"H8334\"* of|strong=\"H1004\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*. They|strong=\"H1992\"* shall|strong=\"H3548\"* come|strong=\"H5971\"* in|strong=\"H3068\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* holy|strong=\"H6944\"*, but|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* shall|strong=\"H3548\"* follow|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s instructions|strong=\"H8104\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3318\"* Levites|strong=\"H3881\"* shall|strong=\"H4428\"* surround|strong=\"H5439\"* the|strong=\"H3318\"* king|strong=\"H4428\"*, every|strong=\"H5439\"* man|strong=\"H4191\"* with|strong=\"H1004\"* his|strong=\"H3027\"* weapons|strong=\"H3627\"* in|strong=\"H1004\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*. Whoever|strong=\"H4191\"* comes|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3318\"* house|strong=\"H1004\"*, let|strong=\"H1961\"* him|strong=\"H3027\"* be|strong=\"H1961\"* slain|strong=\"H4191\"*. Be|strong=\"H1961\"* with|strong=\"H1004\"* the|strong=\"H3318\"* king|strong=\"H4428\"* when|strong=\"H1961\"* he|strong=\"H1004\"* comes|strong=\"H3318\"* in|strong=\"H1004\"* and|strong=\"H4428\"* when|strong=\"H1961\"* he|strong=\"H1004\"* goes|strong=\"H3318\"* out|strong=\"H3318\"*.”" + }, + { + "verseNum": 8, + "text": "So|strong=\"H6213\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* and|strong=\"H3063\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* did|strong=\"H6213\"* according to|strong=\"H3318\"* all|strong=\"H3605\"* that|strong=\"H3588\"* Jehoiada|strong=\"H3077\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* commanded|strong=\"H6680\"*. They|strong=\"H3588\"* each|strong=\"H3605\"* took|strong=\"H3947\"* his|strong=\"H3605\"* men|strong=\"H6213\"*, those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3881\"* to|strong=\"H3318\"* come|strong=\"H3318\"* in|strong=\"H6213\"* on|strong=\"H3318\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"*, with|strong=\"H5973\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3881\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* on|strong=\"H3318\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"*, for|strong=\"H3588\"* Jehoiada|strong=\"H3077\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* didn’t dismiss|strong=\"H6362\"* the|strong=\"H3605\"* shift." + }, + { + "verseNum": 9, + "text": "Jehoiada|strong=\"H3077\"* the|strong=\"H5414\"* priest|strong=\"H3548\"* delivered|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* hundreds|strong=\"H3967\"* the|strong=\"H5414\"* spears|strong=\"H2595\"*, bucklers|strong=\"H4043\"*, and|strong=\"H3967\"* shields|strong=\"H4043\"* that|strong=\"H5414\"* had|strong=\"H1732\"* been king|strong=\"H4428\"* David|strong=\"H1732\"*’s, which|strong=\"H1004\"* were|strong=\"H1732\"* in|strong=\"H1004\"* God|strong=\"H5414\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H5704\"* set|strong=\"H5975\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, every|strong=\"H3605\"* man|strong=\"H3605\"* with|strong=\"H1004\"* his|strong=\"H3605\"* weapon|strong=\"H7973\"* in|strong=\"H5921\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, from|strong=\"H5921\"* the|strong=\"H3605\"* right|strong=\"H3233\"* side|strong=\"H3802\"* of|strong=\"H4428\"* the|strong=\"H3605\"* house|strong=\"H1004\"* to|strong=\"H5704\"* the|strong=\"H3605\"* left|strong=\"H8042\"* side|strong=\"H3802\"* of|strong=\"H4428\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, near|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* and|strong=\"H4428\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, around|strong=\"H5439\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H3318\"* they|strong=\"H5921\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"*, put|strong=\"H5414\"* the|strong=\"H5921\"* crown|strong=\"H5145\"* on|strong=\"H5921\"* him|strong=\"H5414\"*, gave|strong=\"H5414\"* him|strong=\"H5414\"* the|strong=\"H5921\"* covenant, and|strong=\"H1121\"* made|strong=\"H5414\"* him|strong=\"H5414\"* king|strong=\"H4428\"*. Jehoiada|strong=\"H3077\"* and|strong=\"H1121\"* his|strong=\"H5414\"* sons|strong=\"H1121\"* anointed|strong=\"H4886\"* him|strong=\"H5414\"*, and|strong=\"H1121\"* they|strong=\"H5921\"* said|strong=\"H3318\"*, “Long|strong=\"H5921\"* live|strong=\"H2421\"* the|strong=\"H5921\"* king|strong=\"H4428\"*!”" + }, + { + "verseNum": 12, + "text": "When|strong=\"H8085\"* Athaliah|strong=\"H6271\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H4428\"* the|strong=\"H8085\"* people|strong=\"H5971\"* running|strong=\"H7323\"* and|strong=\"H3068\"* praising|strong=\"H1984\"* the|strong=\"H8085\"* king|strong=\"H4428\"*, she came|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H8085\"* people|strong=\"H5971\"* into Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H2009\"* she|strong=\"H5921\"* looked|strong=\"H7200\"*, and|strong=\"H4428\"* behold|strong=\"H2009\"*, the|strong=\"H3605\"* king|strong=\"H4428\"* stood|strong=\"H5975\"* by|strong=\"H5921\"* his|strong=\"H3605\"* pillar|strong=\"H5982\"* at|strong=\"H5921\"* the|strong=\"H3605\"* entrance|strong=\"H3996\"*, with|strong=\"H5921\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* and|strong=\"H4428\"* the|strong=\"H3605\"* trumpeters|strong=\"H2689\"* by|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land rejoiced|strong=\"H8055\"* and|strong=\"H4428\"* blew|strong=\"H8628\"* trumpets|strong=\"H2689\"*. The|strong=\"H3605\"* singers|strong=\"H7891\"* also|strong=\"H4428\"* played musical|strong=\"H7892\"* instruments|strong=\"H3627\"*, and|strong=\"H4428\"* led the|strong=\"H3605\"* singing|strong=\"H7891\"* of|strong=\"H4428\"* praise|strong=\"H1984\"*. Then|strong=\"H2009\"* Athaliah|strong=\"H6271\"* tore|strong=\"H7167\"* her|strong=\"H3605\"* clothes, and|strong=\"H4428\"* said, “Treason|strong=\"H7195\"*! treason|strong=\"H7195\"*!”" + }, + { + "verseNum": 14, + "text": "Jehoiada|strong=\"H3077\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H3588\"* captains|strong=\"H8269\"* of|strong=\"H1004\"* hundreds|strong=\"H3967\"* who|strong=\"H3068\"* were|strong=\"H8269\"* set|strong=\"H6485\"* over|strong=\"H8269\"* the|strong=\"H3588\"* army|strong=\"H2428\"*, and|strong=\"H3967\"* said|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H3318\"*, “Bring|strong=\"H3318\"* her|strong=\"H3318\"* out|strong=\"H3318\"* between the|strong=\"H3588\"* ranks|strong=\"H7713\"*; and|strong=\"H3967\"* whoever|strong=\"H4191\"* follows her|strong=\"H3318\"*, let|strong=\"H6485\"* him|strong=\"H3318\"* be|strong=\"H4191\"* slain|strong=\"H4191\"* with|strong=\"H1004\"* the|strong=\"H3588\"* sword|strong=\"H2719\"*.” For|strong=\"H3588\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* said|strong=\"H3318\"*, “Don’t kill|strong=\"H4191\"* her|strong=\"H3318\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 15, + "text": "So|strong=\"H4191\"* they|strong=\"H8033\"* made|strong=\"H7760\"* way for|strong=\"H3027\"* her|strong=\"H7760\"*. She went|strong=\"H4428\"* to|strong=\"H4191\"* the|strong=\"H7760\"* entrance|strong=\"H3996\"* of|strong=\"H4428\"* the|strong=\"H7760\"* horse|strong=\"H5483\"* gate|strong=\"H8179\"* to|strong=\"H4191\"* the|strong=\"H7760\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*; and|strong=\"H4428\"* they|strong=\"H8033\"* killed|strong=\"H4191\"* her|strong=\"H7760\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 16, + "text": "Jehoiada|strong=\"H3077\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* between himself|strong=\"H3068\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* should|strong=\"H3068\"* be|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s people|strong=\"H5971\"*." + }, + { + "verseNum": 17, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* went|strong=\"H5971\"* to|strong=\"H6440\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"*, broke|strong=\"H7665\"* it|strong=\"H6440\"* down|strong=\"H5422\"*, broke|strong=\"H7665\"* his|strong=\"H3605\"* altars|strong=\"H4196\"* and|strong=\"H1004\"* his|strong=\"H3605\"* images|strong=\"H6754\"* in|strong=\"H1004\"* pieces|strong=\"H7665\"*, and|strong=\"H1004\"* killed|strong=\"H2026\"* Mattan|strong=\"H4977\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"* before|strong=\"H6440\"* the|strong=\"H3605\"* altars|strong=\"H4196\"*." + }, + { + "verseNum": 18, + "text": "Jehoiada|strong=\"H3077\"* appointed|strong=\"H7760\"* the|strong=\"H5921\"* officers|strong=\"H6486\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* under|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* the|strong=\"H5921\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"*, whom David|strong=\"H1732\"* had|strong=\"H3068\"* distributed|strong=\"H2505\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, to|strong=\"H3068\"* offer|strong=\"H5927\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, as|strong=\"H3068\"* it|strong=\"H7760\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* law|strong=\"H8451\"* of|strong=\"H1004\"* Moses|strong=\"H4872\"*, with|strong=\"H1004\"* rejoicing|strong=\"H8057\"* and|strong=\"H4872\"* with|strong=\"H1004\"* singing|strong=\"H7892\"*, as|strong=\"H3068\"* David|strong=\"H1732\"* had|strong=\"H3068\"* ordered." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3068\"* set|strong=\"H5975\"* the|strong=\"H3605\"* gatekeepers|strong=\"H7778\"* at|strong=\"H5921\"* the|strong=\"H3605\"* gates|strong=\"H8179\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, that|strong=\"H3605\"* no|strong=\"H3808\"* one|strong=\"H3605\"* who|strong=\"H3605\"* was|strong=\"H3068\"* unclean|strong=\"H2931\"* in|strong=\"H5921\"* anything|strong=\"H3605\"* should|strong=\"H3068\"* enter|strong=\"H5975\"* in|strong=\"H5921\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H3068\"* took|strong=\"H3947\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* hundreds|strong=\"H3967\"*, the|strong=\"H3605\"* nobles, the|strong=\"H3605\"* governors|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3967\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land, and|strong=\"H3967\"* brought|strong=\"H3947\"* the|strong=\"H3605\"* king|strong=\"H4428\"* down|strong=\"H3381\"* from|strong=\"H3381\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*. They|strong=\"H3068\"* came|strong=\"H3381\"* through|strong=\"H8432\"* the|strong=\"H3605\"* upper|strong=\"H5945\"* gate|strong=\"H8179\"* to|strong=\"H3381\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H3967\"* set|strong=\"H3427\"* the|strong=\"H3605\"* king|strong=\"H4428\"* on|strong=\"H5921\"* the|strong=\"H3605\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kingdom|strong=\"H4467\"*." + }, + { + "verseNum": 21, + "text": "So|strong=\"H4191\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H5892\"* the|strong=\"H3605\"* land rejoiced|strong=\"H8055\"*, and|strong=\"H5971\"* the|strong=\"H3605\"* city|strong=\"H5892\"* was|strong=\"H5892\"* quiet|strong=\"H8252\"*. They|strong=\"H5971\"* had|strong=\"H5971\"* slain|strong=\"H4191\"* Athaliah|strong=\"H6271\"* with|strong=\"H5971\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Joash|strong=\"H3101\"* was|strong=\"H8034\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H3389\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H3389\"* reigned|strong=\"H4427\"* forty years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H3101\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Zibiah|strong=\"H6645\"*, of|strong=\"H1121\"* Beersheba." + }, + { + "verseNum": 2, + "text": "Joash|strong=\"H3101\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* Jehoiada|strong=\"H3077\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 3, + "text": "Jehoiada|strong=\"H3077\"* took|strong=\"H5375\"* for|strong=\"H1121\"* him|strong=\"H3205\"* two|strong=\"H8147\"* wives, and|strong=\"H1121\"* he|strong=\"H8147\"* became|strong=\"H3205\"* the|strong=\"H5375\"* father|strong=\"H3205\"* of|strong=\"H1121\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 4, + "text": "After|strong=\"H1961\"* this|strong=\"H3068\"*, Joash|strong=\"H3101\"* intended to|strong=\"H3068\"* restore|strong=\"H2318\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3605\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3063\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, and|strong=\"H3063\"* said|strong=\"H1697\"* to|strong=\"H3318\"* them|strong=\"H3318\"*, “Go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* gather|strong=\"H6908\"* money|strong=\"H3701\"* to|strong=\"H3318\"* repair|strong=\"H2388\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* your|strong=\"H3605\"* God|strong=\"H3808\"* from|strong=\"H3318\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* from|strong=\"H3318\"* year|strong=\"H8141\"* to|strong=\"H3318\"* year|strong=\"H8141\"*. See that|strong=\"H3605\"* you|strong=\"H3605\"* expedite this|strong=\"H1697\"* matter|strong=\"H1697\"*.” However the|strong=\"H3605\"* Levites|strong=\"H3881\"* didn’t do|strong=\"H3318\"* it|strong=\"H3808\"* right|strong=\"H3478\"* away|strong=\"H3318\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* called|strong=\"H7121\"* for|strong=\"H5921\"* Jehoiada|strong=\"H3077\"* the|strong=\"H5921\"* chief|strong=\"H7218\"*, and|strong=\"H3063\"* said|strong=\"H7121\"* to|strong=\"H3478\"* him|strong=\"H7121\"*, “Why|strong=\"H4069\"* haven’t you|strong=\"H5921\"* required|strong=\"H1875\"* of|strong=\"H4428\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* to|strong=\"H3478\"* bring|strong=\"H3881\"* in|strong=\"H5921\"* the|strong=\"H5921\"* tax|strong=\"H4864\"* of|strong=\"H4428\"* Moses|strong=\"H4872\"* the|strong=\"H5921\"* servant|strong=\"H5650\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3063\"* of|strong=\"H4428\"* the|strong=\"H5921\"* assembly|strong=\"H6951\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, out|strong=\"H5921\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* out|strong=\"H5921\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, for|strong=\"H5921\"* the|strong=\"H5921\"* Tent of|strong=\"H4428\"* the|strong=\"H5921\"* Testimony|strong=\"H5715\"*?”" + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Athaliah|strong=\"H6271\"*, that|strong=\"H3588\"* wicked|strong=\"H4849\"* woman|strong=\"H1004\"*, had|strong=\"H3068\"* broken|strong=\"H6555\"* up|strong=\"H6555\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H1121\"* they|strong=\"H3588\"* also|strong=\"H1571\"* gave|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* dedicated|strong=\"H6944\"* things|strong=\"H6944\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* to|strong=\"H3068\"* the|strong=\"H3605\"* Baals|strong=\"H1168\"*." + }, + { + "verseNum": 8, + "text": "So|strong=\"H6213\"* the|strong=\"H5414\"* king|strong=\"H4428\"* commanded, and|strong=\"H3068\"* they|strong=\"H3068\"* made|strong=\"H6213\"* a|strong=\"H3068\"* chest, and|strong=\"H3068\"* set|strong=\"H5414\"* it|strong=\"H5414\"* outside|strong=\"H2351\"* at|strong=\"H3068\"* the|strong=\"H5414\"* gate|strong=\"H8179\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H3068\"* made|strong=\"H5414\"* a|strong=\"H3068\"* proclamation|strong=\"H6963\"* through|strong=\"H5921\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*, to|strong=\"H3478\"* bring|strong=\"H5414\"* in|strong=\"H5921\"* for|strong=\"H5921\"* Yahweh|strong=\"H3068\"* the|strong=\"H5921\"* tax|strong=\"H4864\"* that|strong=\"H3068\"* Moses|strong=\"H4872\"* the|strong=\"H5921\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* God|strong=\"H3068\"* laid|strong=\"H5414\"* on|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* rejoiced|strong=\"H8055\"*, and|strong=\"H5971\"* brought|strong=\"H3615\"* in|strong=\"H8055\"*, and|strong=\"H5971\"* cast|strong=\"H7993\"* into|strong=\"H7993\"* the|strong=\"H3605\"* chest, until|strong=\"H5704\"* they|strong=\"H5704\"* had|strong=\"H5971\"* filled it|strong=\"H7993\"*." + }, + { + "verseNum": 11, + "text": "Whenever|strong=\"H1961\"* the|strong=\"H7200\"* chest was|strong=\"H1961\"* brought|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H7200\"* king|strong=\"H4428\"*’s officers|strong=\"H6496\"* by|strong=\"H3027\"* the|strong=\"H7200\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H7200\"* Levites|strong=\"H3881\"*, and|strong=\"H3701\"* when|strong=\"H3588\"* they|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* there|strong=\"H1961\"* was|strong=\"H1961\"* much|strong=\"H7227\"* money|strong=\"H3701\"*, the|strong=\"H7200\"* king|strong=\"H4428\"*’s scribe|strong=\"H5608\"* and|strong=\"H3701\"* the|strong=\"H7200\"* chief|strong=\"H7218\"* priest|strong=\"H3548\"*’s officer|strong=\"H6496\"* came|strong=\"H1961\"* and|strong=\"H3701\"* emptied|strong=\"H6168\"* the|strong=\"H7200\"* chest, and|strong=\"H3701\"* took|strong=\"H5375\"* it|strong=\"H3588\"*, and|strong=\"H3701\"* carried|strong=\"H5375\"* it|strong=\"H3588\"* to|strong=\"H7725\"* its|strong=\"H7725\"* place|strong=\"H4725\"* again|strong=\"H7725\"*. Thus|strong=\"H3541\"* they|strong=\"H3588\"* did|strong=\"H6213\"* day|strong=\"H3117\"* by|strong=\"H3027\"* day|strong=\"H3117\"*, and|strong=\"H3701\"* gathered|strong=\"H6213\"* money|strong=\"H3701\"* in|strong=\"H6213\"* abundance|strong=\"H7230\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* and|strong=\"H3068\"* Jehoiada|strong=\"H3077\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* those|strong=\"H2388\"* who|strong=\"H3068\"* did|strong=\"H6213\"* the|strong=\"H5414\"* work|strong=\"H4399\"* of|strong=\"H4428\"* the|strong=\"H5414\"* service|strong=\"H5656\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*. They|strong=\"H3068\"* hired|strong=\"H7936\"* masons|strong=\"H2672\"* and|strong=\"H3068\"* carpenters|strong=\"H2796\"* to|strong=\"H3068\"* restore|strong=\"H2318\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* also|strong=\"H1571\"* those|strong=\"H2388\"* who|strong=\"H3068\"* worked|strong=\"H2388\"* iron|strong=\"H1270\"* and|strong=\"H3068\"* bronze|strong=\"H5178\"* to|strong=\"H3068\"* repair|strong=\"H2388\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 13, + "text": "So|strong=\"H6213\"* the|strong=\"H5921\"* workmen|strong=\"H4399\"* worked|strong=\"H6213\"*, and|strong=\"H3027\"* the|strong=\"H5921\"* work|strong=\"H4399\"* of|strong=\"H1004\"* repairing went|strong=\"H5927\"* forward in|strong=\"H5921\"* their|strong=\"H5921\"* hands|strong=\"H3027\"*. They|strong=\"H5921\"* set|strong=\"H5975\"* up|strong=\"H5927\"* God|strong=\"H3027\"*’s house|strong=\"H1004\"* as|strong=\"H6213\"* it|strong=\"H5921\"* was|strong=\"H1004\"* designed, and|strong=\"H3027\"* strengthened it|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H1961\"* they|strong=\"H3117\"* had|strong=\"H3068\"* finished|strong=\"H3615\"*, they|strong=\"H3117\"* brought|strong=\"H5927\"* the|strong=\"H3605\"* rest|strong=\"H7605\"* of|strong=\"H4428\"* the|strong=\"H3605\"* money|strong=\"H3701\"* before|strong=\"H6440\"* the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H3068\"* Jehoiada|strong=\"H3077\"*, from|strong=\"H6440\"* which|strong=\"H3068\"* were|strong=\"H1961\"* made|strong=\"H6213\"* vessels|strong=\"H3627\"* for|strong=\"H6213\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, even|strong=\"H6213\"* vessels|strong=\"H3627\"* with|strong=\"H1004\"* which|strong=\"H3068\"* to|strong=\"H3068\"* minister|strong=\"H8335\"* and|strong=\"H3068\"* to|strong=\"H3068\"* offer|strong=\"H5927\"*, including|strong=\"H3605\"* spoons|strong=\"H3709\"* and|strong=\"H3068\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* gold|strong=\"H2091\"* and|strong=\"H3068\"* silver|strong=\"H3701\"*. They|strong=\"H3117\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* continually|strong=\"H8548\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Jehoiada|strong=\"H3077\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H4191\"* Jehoiada|strong=\"H3077\"* grew|strong=\"H7646\"* old|strong=\"H1121\"* and|strong=\"H3967\"* was|strong=\"H3117\"* full|strong=\"H7646\"* of|strong=\"H1121\"* days|strong=\"H3117\"*, and|strong=\"H3967\"* he|strong=\"H3117\"* died|strong=\"H4191\"*. He|strong=\"H3117\"* was|strong=\"H3117\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H3117\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"H3588\"* buried|strong=\"H6912\"* him|strong=\"H6213\"* in|strong=\"H3478\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"* among|strong=\"H5973\"* the|strong=\"H3588\"* kings|strong=\"H4428\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3478\"* done|strong=\"H6213\"* good|strong=\"H2896\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* toward|strong=\"H5973\"* God and|strong=\"H3478\"* his|strong=\"H1732\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"H8085\"* after the|strong=\"H8085\"* death|strong=\"H4194\"* of|strong=\"H4428\"* Jehoiada|strong=\"H3077\"*, the|strong=\"H8085\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* came|strong=\"H3063\"* and|strong=\"H3063\"* bowed|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H8085\"* the|strong=\"H8085\"* king|strong=\"H4428\"*. Then|strong=\"H8085\"* the|strong=\"H8085\"* king|strong=\"H4428\"* listened|strong=\"H8085\"* to|strong=\"H8085\"* them|strong=\"H8085\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"H3068\"* abandoned|strong=\"H5800\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H1004\"* their|strong=\"H3068\"* fathers, and|strong=\"H3063\"* served|strong=\"H5647\"* the|strong=\"H5921\"* Asherah poles and|strong=\"H3063\"* the|strong=\"H5921\"* idols|strong=\"H6091\"*, so|strong=\"H1961\"* wrath|strong=\"H7110\"* came|strong=\"H1961\"* on|strong=\"H5921\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"* for|strong=\"H5921\"* this|strong=\"H2063\"* their|strong=\"H3068\"* guiltiness." + }, + { + "verseNum": 19, + "text": "Yet|strong=\"H3068\"* he|strong=\"H3068\"* sent|strong=\"H7971\"* prophets|strong=\"H5030\"* to|strong=\"H7725\"* them|strong=\"H7725\"* to|strong=\"H7725\"* bring|strong=\"H7725\"* them|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* testified|strong=\"H5749\"* against|strong=\"H5749\"* them|strong=\"H7725\"*; but|strong=\"H3808\"* they|strong=\"H3068\"* would|strong=\"H3068\"* not|strong=\"H3808\"* listen." + }, + { + "verseNum": 20, + "text": "The|strong=\"H5921\"* Spirit|strong=\"H7307\"* of|strong=\"H1121\"* God|strong=\"H3068\"* came|strong=\"H3068\"* on|strong=\"H5921\"* Zechariah|strong=\"H2148\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*; and|strong=\"H1121\"* he|strong=\"H3588\"* stood|strong=\"H5975\"* above|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"*, and|strong=\"H1121\"* said to|strong=\"H3068\"* them|strong=\"H5921\"*, “God|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Why|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H3588\"* disobey Yahweh|strong=\"H3068\"*’s commandments|strong=\"H4687\"*, so|strong=\"H3541\"* that|strong=\"H3588\"* you|strong=\"H3588\"* can|strong=\"H4100\"*’t prosper|strong=\"H6743\"*? Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* forsaken|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, he|strong=\"H3588\"* has|strong=\"H3068\"* also|strong=\"H3068\"* forsaken|strong=\"H5800\"* you|strong=\"H3588\"*.’”" + }, + { + "verseNum": 21, + "text": "They|strong=\"H3068\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3068\"* stoned|strong=\"H7275\"* him|strong=\"H5921\"* with|strong=\"H1004\"* stones at|strong=\"H5921\"* the|strong=\"H5921\"* commandment|strong=\"H4687\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* in|strong=\"H5921\"* the|strong=\"H5921\"* court|strong=\"H2691\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 22, + "text": "Thus|strong=\"H3808\"* Joash|strong=\"H3101\"* the|strong=\"H7200\"* king|strong=\"H4428\"* didn’t remember|strong=\"H2142\"* the|strong=\"H7200\"* kindness|strong=\"H2617\"* which|strong=\"H3068\"* Jehoiada|strong=\"H3077\"* his|strong=\"H3068\"* father|strong=\"H1121\"* had|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H4191\"* him|strong=\"H6213\"*, but|strong=\"H3808\"* killed|strong=\"H2026\"* his|strong=\"H3068\"* son|strong=\"H1121\"*. When|strong=\"H7200\"* he|strong=\"H6213\"* died|strong=\"H4191\"*, he|strong=\"H6213\"* said, “May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* look|strong=\"H7200\"* at|strong=\"H3068\"* it|strong=\"H6213\"*, and|strong=\"H1121\"* repay it|strong=\"H6213\"*.”" + }, + { + "verseNum": 23, + "text": "At|strong=\"H5921\"* the|strong=\"H3605\"* end|strong=\"H8622\"* of|strong=\"H4428\"* the|strong=\"H3605\"* year|strong=\"H8141\"*, the|strong=\"H3605\"* army|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Syrians came|strong=\"H1961\"* up|strong=\"H5927\"* against|strong=\"H5921\"* him|strong=\"H5921\"*. They|strong=\"H5921\"* came|strong=\"H1961\"* to|strong=\"H7971\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* destroyed|strong=\"H7843\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* people|strong=\"H5971\"* from|strong=\"H5921\"* among|strong=\"H5921\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3063\"* sent|strong=\"H7971\"* all|strong=\"H3605\"* their|strong=\"H3605\"* plunder|strong=\"H7998\"* to|strong=\"H7971\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Damascus|strong=\"H1834\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* army|strong=\"H2428\"* of|strong=\"H3068\"* the|strong=\"H3588\"* Syrians came|strong=\"H3068\"* with|strong=\"H3068\"* a|strong=\"H3068\"* small|strong=\"H4705\"* company|strong=\"H2428\"* of|strong=\"H3068\"* men|strong=\"H2428\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H3966\"* army|strong=\"H2428\"* into|strong=\"H6213\"* their|strong=\"H3068\"* hand|strong=\"H3027\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* forsaken|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H3068\"* their|strong=\"H3068\"* fathers. So|strong=\"H6213\"* they|strong=\"H3588\"* executed|strong=\"H6213\"* judgment|strong=\"H8201\"* on|strong=\"H3027\"* Joash|strong=\"H3101\"*." + }, + { + "verseNum": 25, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H1732\"* departed|strong=\"H3212\"* from|strong=\"H4480\"* him|strong=\"H5921\"* (for|strong=\"H3588\"* they|strong=\"H3588\"* left|strong=\"H5800\"* him|strong=\"H5921\"* seriously wounded), his|strong=\"H1732\"* own|strong=\"H3548\"* servants|strong=\"H5650\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* him|strong=\"H5921\"* for|strong=\"H3588\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* killed|strong=\"H2026\"* him|strong=\"H5921\"* on|strong=\"H5921\"* his|strong=\"H1732\"* bed|strong=\"H4296\"*, and|strong=\"H1121\"* he|strong=\"H3588\"* died|strong=\"H4191\"*. They|strong=\"H3588\"* buried|strong=\"H6912\"* him|strong=\"H5921\"* in|strong=\"H5921\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* didn’t bury|strong=\"H6912\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* tombs|strong=\"H6913\"* of|strong=\"H1121\"* the|strong=\"H5921\"* kings|strong=\"H4428\"*." + }, + { + "verseNum": 26, + "text": "These are|strong=\"H1121\"* those|strong=\"H5921\"* who|strong=\"H1121\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* him|strong=\"H5921\"*: Zabad|strong=\"H2066\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimeath|strong=\"H8100\"* the|strong=\"H5921\"* Ammonitess|strong=\"H5985\"* and|strong=\"H1121\"* Jehozabad|strong=\"H3075\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimrith|strong=\"H8116\"* the|strong=\"H5921\"* Moabitess|strong=\"H4125\"*." + }, + { + "verseNum": 27, + "text": "Now|strong=\"H2005\"* concerning|strong=\"H5921\"* his|strong=\"H5921\"* sons|strong=\"H1121\"*, the|strong=\"H5921\"* greatness|strong=\"H7230\"* of|strong=\"H1121\"* the|strong=\"H5921\"* burdens|strong=\"H4853\"* laid on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* rebuilding of|strong=\"H1121\"* God’s house|strong=\"H1004\"*, behold|strong=\"H2005\"*, they|strong=\"H5921\"* are|strong=\"H1121\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* commentary of|strong=\"H1121\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H1121\"* the|strong=\"H5921\"* kings|strong=\"H4428\"*. Amaziah his|strong=\"H5921\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H5921\"* his|strong=\"H5921\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Amaziah was|strong=\"H8034\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H2568\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H2568\"* reigned|strong=\"H4427\"* twenty-nine|strong=\"H6242\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H4427\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Jehoaddan|strong=\"H3086\"*, of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, but|strong=\"H7535\"* not|strong=\"H3808\"* with|strong=\"H3068\"* a|strong=\"H3068\"* perfect|strong=\"H8003\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 3, + "text": "Now|strong=\"H1961\"* when|strong=\"H1961\"* the|strong=\"H5921\"* kingdom|strong=\"H4467\"* was|strong=\"H1961\"* established|strong=\"H2388\"* to|strong=\"H1961\"* him|strong=\"H5921\"*, he|strong=\"H5921\"* killed|strong=\"H2026\"* his|strong=\"H5921\"* servants|strong=\"H5650\"* who|strong=\"H5650\"* had|strong=\"H1961\"* killed|strong=\"H2026\"* his|strong=\"H5921\"* father the|strong=\"H5921\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3588\"* he|strong=\"H3588\"* didn’t put|strong=\"H4191\"* their|strong=\"H3068\"* children|strong=\"H1121\"* to|strong=\"H4191\"* death|strong=\"H4191\"*, but|strong=\"H3588\"* did|strong=\"H3068\"* according|strong=\"H5921\"* to|strong=\"H4191\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* law|strong=\"H8451\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"*, saying, “The|strong=\"H5921\"* fathers shall|strong=\"H3068\"* not|strong=\"H3808\"* die|strong=\"H4191\"* for|strong=\"H3588\"* the|strong=\"H5921\"* children|strong=\"H1121\"*, neither|strong=\"H3808\"* shall|strong=\"H3068\"* the|strong=\"H5921\"* children|strong=\"H1121\"* die|strong=\"H4191\"* for|strong=\"H3588\"* the|strong=\"H5921\"* fathers; but|strong=\"H3588\"* every|strong=\"H3068\"* man|strong=\"H1121\"* shall|strong=\"H3068\"* die|strong=\"H4191\"* for|strong=\"H3588\"* his|strong=\"H3068\"* own sin|strong=\"H2399\"*.”" + }, + { + "verseNum": 5, + "text": "Moreover Amaziah gathered|strong=\"H6908\"* Judah|strong=\"H3063\"* together|strong=\"H6908\"* and|strong=\"H3967\"* ordered|strong=\"H6485\"* them|strong=\"H5975\"* according to|strong=\"H3318\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, under|strong=\"H6485\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* thousands and|strong=\"H3967\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* hundreds|strong=\"H3967\"*, even all|strong=\"H3605\"* Judah|strong=\"H3063\"* and|strong=\"H3967\"* Benjamin|strong=\"H1144\"*. He|strong=\"H3605\"* counted|strong=\"H6485\"* them|strong=\"H5975\"* from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H3967\"* upward|strong=\"H4605\"*, and|strong=\"H3967\"* found|strong=\"H4672\"* that|strong=\"H3605\"* there|strong=\"H5975\"* were|strong=\"H1121\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* thousand chosen men|strong=\"H1121\"*, able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*, who|strong=\"H3605\"* could handle spear|strong=\"H7420\"* and|strong=\"H3967\"* shield|strong=\"H6793\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3478\"* also|strong=\"H3478\"* hired|strong=\"H7936\"* one|strong=\"H1368\"* hundred|strong=\"H3967\"* thousand mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H3603\"* valor|strong=\"H2428\"* out|strong=\"H7936\"* of|strong=\"H3603\"* Israel|strong=\"H3478\"* for|strong=\"H3478\"* one|strong=\"H1368\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"*+ 25:6 A talent is about 30 kilograms or 66 pounds* of|strong=\"H3603\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 7, + "text": "A|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God|strong=\"H3068\"* came|strong=\"H3478\"* to|strong=\"H3478\"* him|strong=\"H5973\"*, saying, “O|strong=\"H3068\"* king|strong=\"H4428\"*, don’t let the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* go|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* not|strong=\"H3588\"* with|strong=\"H5973\"* Israel|strong=\"H3478\"*, with|strong=\"H5973\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim." + }, + { + "verseNum": 8, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H5826\"* go, take|strong=\"H2388\"* action|strong=\"H6213\"*, and|strong=\"H6440\"* be|strong=\"H3426\"* strong|strong=\"H2388\"* for|strong=\"H3588\"* the|strong=\"H6440\"* battle|strong=\"H4421\"*. God will|strong=\"H5826\"* overthrow you|strong=\"H3588\"* before|strong=\"H6440\"* the|strong=\"H6440\"* enemy; for|strong=\"H3588\"* God has|strong=\"H3588\"* power|strong=\"H3581\"* to|strong=\"H6213\"* help|strong=\"H5826\"*, and|strong=\"H6440\"* to|strong=\"H6213\"* overthrow.”" + }, + { + "verseNum": 9, + "text": "Amaziah said to|strong=\"H3478\"* the|strong=\"H5414\"* man|strong=\"H2088\"* of|strong=\"H3068\"* God|strong=\"H3068\"*, “But|strong=\"H3068\"* what|strong=\"H4100\"* shall|strong=\"H3068\"* we|strong=\"H3068\"* do|strong=\"H6213\"* for|strong=\"H6213\"* the|strong=\"H5414\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"*+ 25:9 A talent is about 30 kilograms or 66 pounds* which|strong=\"H3068\"* I|strong=\"H5414\"* have|strong=\"H3426\"* given|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H5414\"* army|strong=\"H1416\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*?”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H7725\"* Amaziah separated them|strong=\"H7725\"*, the|strong=\"H7725\"* army|strong=\"H1416\"* that|strong=\"H3063\"* had|strong=\"H3063\"* come|strong=\"H3212\"* to|strong=\"H7725\"* him|strong=\"H7725\"* out|strong=\"H3212\"* of|strong=\"H4725\"* Ephraim, to|strong=\"H7725\"* go|strong=\"H3212\"* home|strong=\"H4725\"* again|strong=\"H7725\"*. Therefore their|strong=\"H7725\"* anger was|strong=\"H3063\"* greatly|strong=\"H3966\"* kindled|strong=\"H2734\"* against|strong=\"H2734\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* they|strong=\"H3063\"* returned|strong=\"H7725\"* home|strong=\"H4725\"* in|strong=\"H3212\"* fierce|strong=\"H2750\"* anger." + }, + { + "verseNum": 11, + "text": "Amaziah took|strong=\"H2388\"* courage|strong=\"H2388\"*, and|strong=\"H1121\"* led|strong=\"H3212\"* his|strong=\"H5221\"* people|strong=\"H5971\"* out|strong=\"H2388\"* and|strong=\"H1121\"* went|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H5221\"* Valley|strong=\"H1516\"* of|strong=\"H1121\"* Salt|strong=\"H4417\"*, and|strong=\"H1121\"* struck|strong=\"H5221\"* ten|strong=\"H6235\"* thousand of|strong=\"H1121\"* the|strong=\"H5221\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Seir|strong=\"H8165\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* carried|strong=\"H7617\"* away|strong=\"H7993\"* ten|strong=\"H6235\"* thousand alive|strong=\"H2416\"*, and|strong=\"H1121\"* brought them|strong=\"H7617\"* to|strong=\"H1121\"* the|strong=\"H3605\"* top|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3605\"* rock|strong=\"H5553\"*, and|strong=\"H1121\"* threw|strong=\"H7993\"* them|strong=\"H7617\"* down|strong=\"H7993\"* from|strong=\"H1121\"* the|strong=\"H3605\"* top|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3605\"* rock|strong=\"H5553\"*, so that|strong=\"H3605\"* they|strong=\"H3605\"* all|strong=\"H3605\"* were|strong=\"H1121\"* broken|strong=\"H1234\"* in|strong=\"H1121\"* pieces|strong=\"H1234\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"H1992\"* the|strong=\"H5221\"* men|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5221\"* army|strong=\"H1416\"* whom|strong=\"H1992\"* Amaziah sent|strong=\"H7725\"* back|strong=\"H7725\"*, that|strong=\"H5892\"* they|strong=\"H1992\"* should|strong=\"H4421\"* not|strong=\"H7725\"* go|strong=\"H3212\"* with|strong=\"H5973\"* him|strong=\"H5221\"* to|strong=\"H5704\"* battle|strong=\"H4421\"*, fell|strong=\"H6584\"* on|strong=\"H3212\"* the|strong=\"H5221\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* from|strong=\"H7725\"* Samaria|strong=\"H8111\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Beth Horon, and|strong=\"H1121\"* struck|strong=\"H5221\"* of|strong=\"H1121\"* them|strong=\"H1992\"* three|strong=\"H7969\"* thousand, and|strong=\"H1121\"* took|strong=\"H7725\"* much|strong=\"H7227\"* plunder." + }, + { + "verseNum": 14, + "text": "Now|strong=\"H1961\"* after|strong=\"H1961\"* Amaziah had|strong=\"H1961\"* come|strong=\"H1961\"* from|strong=\"H6440\"* the|strong=\"H6440\"* slaughter|strong=\"H5221\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Edomites|strong=\"H8165\"*, he|strong=\"H5221\"* brought|strong=\"H1961\"* the|strong=\"H6440\"* gods of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Seir|strong=\"H8165\"*, and|strong=\"H1121\"* set|strong=\"H5975\"* them|strong=\"H6440\"* up|strong=\"H5975\"* to|strong=\"H1961\"* be|strong=\"H1961\"* his|strong=\"H6440\"* gods, and|strong=\"H1121\"* bowed|strong=\"H7812\"* down|strong=\"H7812\"* himself|strong=\"H7812\"* before|strong=\"H6440\"* them|strong=\"H6440\"* and|strong=\"H1121\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H1961\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"H7971\"* Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* Amaziah, and|strong=\"H3068\"* he|strong=\"H3068\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* him|strong=\"H7971\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* who|strong=\"H5971\"* said to|strong=\"H3068\"* him|strong=\"H7971\"*, “Why|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H7971\"* sought|strong=\"H1875\"* after|strong=\"H1875\"* the|strong=\"H3068\"* gods of|strong=\"H3068\"* the|strong=\"H3068\"* people|strong=\"H5971\"*, which|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* delivered|strong=\"H5337\"* their|strong=\"H3068\"* own|strong=\"H5971\"* people|strong=\"H5971\"* out|strong=\"H7971\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*?”" + }, + { + "verseNum": 16, + "text": "As|strong=\"H1961\"* he|strong=\"H3588\"* talked|strong=\"H1696\"* with|strong=\"H6213\"* him|strong=\"H5414\"*, the|strong=\"H8085\"* king|strong=\"H4428\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5414\"*, “Have|strong=\"H1961\"* we|strong=\"H3068\"* made|strong=\"H6213\"* you|strong=\"H3588\"* one|strong=\"H3808\"* of|strong=\"H4428\"* the|strong=\"H8085\"* king|strong=\"H4428\"*’s counselors|strong=\"H3289\"*? Stop|strong=\"H2308\"*! Why|strong=\"H4100\"* should|strong=\"H4100\"* you|strong=\"H3588\"* be|strong=\"H1961\"* struck|strong=\"H5221\"* down|strong=\"H5221\"*?”" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H1980\"* Amaziah|strong=\"H3289\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* consulted|strong=\"H3289\"* his|strong=\"H7971\"* advisers|strong=\"H3289\"*, and|strong=\"H1121\"* sent|strong=\"H7971\"* to|strong=\"H1980\"* Joash|strong=\"H3101\"*, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoahaz|strong=\"H3059\"*, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehu|strong=\"H3058\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying, “Come|strong=\"H1980\"*! Let|strong=\"H7971\"*’s look|strong=\"H7200\"* one|strong=\"H1121\"* another|strong=\"H7200\"* in|strong=\"H1980\"* the|strong=\"H6440\"* face|strong=\"H6440\"*.”" + }, + { + "verseNum": 18, + "text": "Joash|strong=\"H3101\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* Amaziah king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, saying, “The|strong=\"H5414\"* thistle|strong=\"H2336\"* that|strong=\"H3478\"* was|strong=\"H3478\"* in|strong=\"H3478\"* Lebanon|strong=\"H3844\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* the|strong=\"H5414\"* cedar that|strong=\"H3478\"* was|strong=\"H3478\"* in|strong=\"H3478\"* Lebanon|strong=\"H3844\"*, saying, ‘Give|strong=\"H5414\"* your|strong=\"H5414\"* daughter|strong=\"H1323\"* to|strong=\"H3478\"* my|strong=\"H5414\"* son|strong=\"H1121\"* as|strong=\"H3063\"* his|strong=\"H5414\"* wife|strong=\"H2416\"*. Then|strong=\"H7971\"* a|strong=\"H3068\"* wild|strong=\"H7704\"* animal|strong=\"H2416\"* that|strong=\"H3478\"* was|strong=\"H3478\"* in|strong=\"H3478\"* Lebanon|strong=\"H3844\"* passed|strong=\"H5674\"* by|strong=\"H5674\"* and|strong=\"H1121\"* trampled|strong=\"H7429\"* down|strong=\"H7429\"* the|strong=\"H5414\"* thistle|strong=\"H2336\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H5973\"* say to|strong=\"H3820\"* yourself|strong=\"H5307\"* that|strong=\"H5307\"* you|strong=\"H5973\"* have|strong=\"H3063\"* struck|strong=\"H5221\"* Edom; and|strong=\"H3063\"* your|strong=\"H5375\"* heart|strong=\"H3820\"* lifts|strong=\"H5375\"* you|strong=\"H5973\"* up|strong=\"H5375\"* to|strong=\"H3820\"* boast|strong=\"H3513\"*. Now|strong=\"H6258\"* stay|strong=\"H3427\"* at|strong=\"H3427\"* home|strong=\"H1004\"*. Why|strong=\"H4100\"* should|strong=\"H4100\"* you|strong=\"H5973\"* meddle|strong=\"H1624\"* with|strong=\"H5973\"* trouble|strong=\"H7451\"*, that|strong=\"H5307\"* you|strong=\"H5973\"* should|strong=\"H4100\"* fall|strong=\"H5307\"*, even you|strong=\"H5973\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"* with|strong=\"H5973\"* you|strong=\"H5973\"*?’”" + }, + { + "verseNum": 20, + "text": "But|strong=\"H3588\"* Amaziah would not|strong=\"H3808\"* listen|strong=\"H8085\"*; for|strong=\"H3588\"* it|strong=\"H5414\"* was|strong=\"H1931\"* of|strong=\"H3027\"* God|strong=\"H5414\"*, that|strong=\"H3588\"* he|strong=\"H1931\"* might|strong=\"H4616\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H8085\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* their|strong=\"H5414\"* enemies|strong=\"H3027\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3588\"* sought|strong=\"H1875\"* after|strong=\"H3588\"* the|strong=\"H8085\"* gods of|strong=\"H3027\"* Edom." + }, + { + "verseNum": 21, + "text": "So|strong=\"H5927\"* Joash|strong=\"H3101\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H3063\"* he|strong=\"H1931\"* and|strong=\"H3063\"* Amaziah king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* looked|strong=\"H7200\"* one|strong=\"H1931\"* another|strong=\"H7200\"* in|strong=\"H3478\"* the|strong=\"H6440\"* face|strong=\"H6440\"* at|strong=\"H3478\"* Beth Shemesh, which|strong=\"H1931\"* belongs to|strong=\"H3478\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 22, + "text": "Judah|strong=\"H3063\"* was|strong=\"H3478\"* defeated|strong=\"H5062\"* by|strong=\"H3478\"* Israel|strong=\"H3478\"*; so|strong=\"H6440\"* every|strong=\"H5127\"* man|strong=\"H6440\"* fled|strong=\"H5127\"* to|strong=\"H3478\"* his|strong=\"H6440\"* tent." + }, + { + "verseNum": 23, + "text": "Joash|strong=\"H3101\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* took|strong=\"H8610\"* Amaziah king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoahaz|strong=\"H3059\"*, at|strong=\"H3478\"* Beth Shemesh and|strong=\"H3967\"* brought|strong=\"H3478\"* him|strong=\"H4428\"* to|strong=\"H5704\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3967\"* broke|strong=\"H6555\"* down|strong=\"H6555\"* the|strong=\"H5704\"* wall|strong=\"H2346\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* from|strong=\"H3478\"* the|strong=\"H5704\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* Ephraim to|strong=\"H5704\"* the|strong=\"H5704\"* corner|strong=\"H6437\"* gate|strong=\"H8179\"*, four hundred|strong=\"H3967\"* cubits.+ 25:23 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters, so 400 cubits is about 200 yards or 184 meters.*" + }, + { + "verseNum": 24, + "text": "He|strong=\"H3605\"* took|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gold|strong=\"H2091\"* and|strong=\"H1121\"* silver|strong=\"H3701\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* that|strong=\"H3605\"* were|strong=\"H1121\"* found|strong=\"H4672\"* in|strong=\"H1004\"* God’s house|strong=\"H1004\"* with|strong=\"H5973\"* Obed-Edom|strong=\"H5654\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* treasures of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* hostages|strong=\"H8594\"*, and|strong=\"H1121\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 25, + "text": "Amaziah the|strong=\"H4191\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, lived|strong=\"H2421\"* for|strong=\"H1121\"* fifteen|strong=\"H2568\"* years|strong=\"H8141\"* after|strong=\"H8141\"* the|strong=\"H4191\"* death|strong=\"H4191\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoahaz|strong=\"H3059\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 26, + "text": "Now|strong=\"H2005\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Amaziah, first|strong=\"H7223\"* and|strong=\"H3063\"* last, behold|strong=\"H2005\"*, aren’t they|strong=\"H3808\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 27, + "text": "Now|strong=\"H6256\"* from|strong=\"H5493\"* the|strong=\"H5921\"* time|strong=\"H6256\"* that|strong=\"H3068\"* Amaziah turned|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* following Yahweh|strong=\"H3068\"*, they|strong=\"H8033\"* made|strong=\"H7194\"* a|strong=\"H3068\"* conspiracy|strong=\"H7195\"* against|strong=\"H5921\"* him|strong=\"H5921\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*. He|strong=\"H8033\"* fled|strong=\"H5127\"* to|strong=\"H4191\"* Lachish|strong=\"H3923\"*, but|strong=\"H3068\"* they|strong=\"H8033\"* sent|strong=\"H7971\"* after|strong=\"H5921\"* him|strong=\"H5921\"* to|strong=\"H4191\"* Lachish|strong=\"H3923\"* and|strong=\"H3068\"* killed|strong=\"H4191\"* him|strong=\"H5921\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"H5921\"* brought|strong=\"H5375\"* him|strong=\"H5921\"* on|strong=\"H5921\"* horses|strong=\"H5483\"* and|strong=\"H3063\"* buried|strong=\"H6912\"* him|strong=\"H5921\"* with|strong=\"H5973\"* his|strong=\"H5375\"* fathers in|strong=\"H5921\"* the|strong=\"H5921\"* City|strong=\"H5892\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"*." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* took|strong=\"H3947\"* Uzziah|strong=\"H5818\"*, who|strong=\"H3605\"* was|strong=\"H1931\"* sixteen|strong=\"H8337\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, and|strong=\"H1121\"* made|strong=\"H4427\"* him|strong=\"H4427\"* king|strong=\"H4427\"* in|strong=\"H8141\"* the|strong=\"H3605\"* place|strong=\"H8478\"* of|strong=\"H1121\"* his|strong=\"H3605\"* father|strong=\"H1121\"* Amaziah." + }, + { + "verseNum": 2, + "text": "He|strong=\"H1931\"* built|strong=\"H1129\"* Eloth and|strong=\"H3063\"* restored|strong=\"H7725\"* it|strong=\"H1931\"* to|strong=\"H7725\"* Judah|strong=\"H3063\"*. After that|strong=\"H1931\"* the|strong=\"H7725\"* king|strong=\"H4428\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H7725\"* fathers." + }, + { + "verseNum": 3, + "text": "Uzziah|strong=\"H5818\"* was|strong=\"H8034\"* sixteen|strong=\"H8337\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8147\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*; and|strong=\"H1121\"* he|strong=\"H8147\"* reigned|strong=\"H4427\"* fifty-two|strong=\"H2572\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H4480\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Jechiliah|strong=\"H3203\"*, of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* his|strong=\"H3605\"* father Amaziah had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3117\"* set himself|strong=\"H3068\"* to|strong=\"H3068\"* seek|strong=\"H1875\"* God|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H7200\"* days|strong=\"H3117\"* of|strong=\"H3068\"* Zechariah|strong=\"H2148\"*, who|strong=\"H3068\"* had|strong=\"H3068\"* understanding in|strong=\"H3068\"* the|strong=\"H7200\"* vision|strong=\"H7200\"* of|strong=\"H3068\"* God|strong=\"H3068\"*; and|strong=\"H3068\"* as|strong=\"H3117\"* long|strong=\"H3117\"* as|strong=\"H3117\"* he|strong=\"H3117\"* sought|strong=\"H1875\"* Yahweh|strong=\"H3068\"*, God|strong=\"H3068\"* made|strong=\"H1961\"* him|strong=\"H7200\"* prosper|strong=\"H6743\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3318\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H5892\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* the|strong=\"H1129\"* Philistines|strong=\"H6430\"*, and|strong=\"H5892\"* broke|strong=\"H6555\"* down|strong=\"H6555\"* the|strong=\"H1129\"* wall|strong=\"H2346\"* of|strong=\"H5892\"* Gath|strong=\"H1661\"*, the|strong=\"H1129\"* wall|strong=\"H2346\"* of|strong=\"H5892\"* Jabneh|strong=\"H2996\"*, and|strong=\"H5892\"* the|strong=\"H1129\"* wall|strong=\"H2346\"* of|strong=\"H5892\"* Ashdod; and|strong=\"H5892\"* he|strong=\"H3318\"* built|strong=\"H1129\"* cities|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H1129\"* country of|strong=\"H5892\"* Ashdod, and|strong=\"H5892\"* among the|strong=\"H1129\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 7, + "text": "God helped|strong=\"H5826\"* him|strong=\"H5921\"* against|strong=\"H5921\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"*, and|strong=\"H6430\"* against|strong=\"H5921\"* the|strong=\"H5921\"* Arabians|strong=\"H6163\"* who|strong=\"H3427\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Gur Baal, and|strong=\"H6430\"* the|strong=\"H5921\"* Meunim|strong=\"H4586\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3588\"* Ammonites|strong=\"H5984\"* gave|strong=\"H5414\"* tribute|strong=\"H4503\"* to|strong=\"H5704\"* Uzziah|strong=\"H5818\"*. His|strong=\"H5414\"* name|strong=\"H8034\"* spread|strong=\"H5414\"* abroad|strong=\"H3212\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3588\"* entrance of|strong=\"H8034\"* Egypt|strong=\"H4714\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* grew exceedingly|strong=\"H4605\"* strong|strong=\"H2388\"*." + }, + { + "verseNum": 9, + "text": "Moreover Uzziah|strong=\"H5818\"* built|strong=\"H1129\"* towers|strong=\"H4026\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* at|strong=\"H5921\"* the|strong=\"H5921\"* corner|strong=\"H6438\"* gate|strong=\"H8179\"*, at|strong=\"H5921\"* the|strong=\"H5921\"* valley|strong=\"H1516\"* gate|strong=\"H8179\"*, and|strong=\"H3389\"* at|strong=\"H5921\"* the|strong=\"H5921\"* turning|strong=\"H4740\"* of|strong=\"H8179\"* the|strong=\"H5921\"* wall, and|strong=\"H3389\"* fortified|strong=\"H2388\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H3588\"* built|strong=\"H1129\"* towers|strong=\"H4026\"* in|strong=\"H7227\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"*, and|strong=\"H2022\"* dug out|strong=\"H2672\"* many|strong=\"H7227\"* cisterns, for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1961\"* much|strong=\"H7227\"* livestock|strong=\"H4735\"*, both in|strong=\"H7227\"* the|strong=\"H3588\"* lowlands and|strong=\"H2022\"* in|strong=\"H7227\"* the|strong=\"H3588\"* plains|strong=\"H4334\"*. He|strong=\"H3588\"* had|strong=\"H1961\"* farmers and|strong=\"H2022\"* vineyard keepers in|strong=\"H7227\"* the|strong=\"H3588\"* mountains|strong=\"H2022\"* and|strong=\"H2022\"* in|strong=\"H7227\"* the|strong=\"H3588\"* fruitful fields, for|strong=\"H3588\"* he|strong=\"H3588\"* loved farming." + }, + { + "verseNum": 11, + "text": "Moreover|strong=\"H1961\"* Uzziah|strong=\"H5818\"* had|strong=\"H1961\"* an|strong=\"H6213\"* army|strong=\"H2428\"* of|strong=\"H4428\"* fighting|strong=\"H4421\"* men|strong=\"H2428\"* who|strong=\"H4428\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H4421\"* by|strong=\"H3027\"* bands|strong=\"H1416\"*, according|strong=\"H5921\"* to|strong=\"H3318\"* the|strong=\"H5921\"* number|strong=\"H4557\"* of|strong=\"H4428\"* their|strong=\"H5921\"* reckoning|strong=\"H6486\"* made|strong=\"H6213\"* by|strong=\"H3027\"* Jeiel|strong=\"H3273\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"* and|strong=\"H4428\"* Maaseiah|strong=\"H4641\"* the|strong=\"H5921\"* officer|strong=\"H7860\"*, under|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Hananiah|strong=\"H2608\"*, one|strong=\"H1961\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s captains|strong=\"H8269\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3605\"* whole|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H7218\"* the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H7218\"* fathers’ households, even the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H7218\"* valor|strong=\"H2428\"*, was|strong=\"H7218\"* two|strong=\"H3967\"* thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 13, + "text": "Under|strong=\"H5921\"* their|strong=\"H5921\"* hand|strong=\"H3027\"* was|strong=\"H4428\"* an|strong=\"H6213\"* army|strong=\"H2428\"*, three|strong=\"H7969\"* hundred|strong=\"H3967\"* seven|strong=\"H7651\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*, who|strong=\"H4428\"* made|strong=\"H6213\"* war|strong=\"H4421\"* with|strong=\"H6213\"* mighty|strong=\"H7969\"* power|strong=\"H3027\"*, to|strong=\"H6213\"* help|strong=\"H5826\"* the|strong=\"H5921\"* king|strong=\"H4428\"* against|strong=\"H5921\"* the|strong=\"H5921\"* enemy." + }, + { + "verseNum": 14, + "text": "Uzziah|strong=\"H5818\"* prepared|strong=\"H3559\"* for|strong=\"H3559\"* them|strong=\"H1992\"*, even for|strong=\"H3559\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"*, shields|strong=\"H4043\"*, spears|strong=\"H7420\"*, helmets|strong=\"H3553\"*, coats of|strong=\"H6635\"* mail|strong=\"H8302\"*, bows|strong=\"H7198\"*, and|strong=\"H4043\"* stones for|strong=\"H3559\"* slinging." + }, + { + "verseNum": 15, + "text": "In|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, he|strong=\"H3588\"* made|strong=\"H6213\"* devices|strong=\"H4284\"*, invented|strong=\"H4284\"* by|strong=\"H5921\"* skillful|strong=\"H2803\"* men|strong=\"H1419\"*, to|strong=\"H5704\"* be|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* towers|strong=\"H4026\"* and|strong=\"H1419\"* on|strong=\"H5921\"* the|strong=\"H5921\"* battlements, with|strong=\"H6213\"* which|strong=\"H3588\"* to|strong=\"H5704\"* shoot|strong=\"H3384\"* arrows|strong=\"H2678\"* and|strong=\"H1419\"* great|strong=\"H1419\"* stones. His|strong=\"H5921\"* name|strong=\"H8034\"* spread|strong=\"H3318\"* far|strong=\"H5704\"* abroad|strong=\"H7350\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H8034\"* marvelously|strong=\"H6381\"* helped|strong=\"H5826\"* until|strong=\"H5704\"* he|strong=\"H3588\"* was|strong=\"H8034\"* strong|strong=\"H2388\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"H3068\"* when|strong=\"H5704\"* he|strong=\"H5704\"* was|strong=\"H3068\"* strong|strong=\"H2393\"*, his|strong=\"H3068\"* heart|strong=\"H3820\"* was|strong=\"H3068\"* lifted|strong=\"H1361\"* up|strong=\"H1361\"*, so|strong=\"H5921\"* that|strong=\"H3068\"* he|strong=\"H5704\"* did|strong=\"H3068\"* corruptly|strong=\"H7843\"* and|strong=\"H3068\"* he|strong=\"H5704\"* trespassed|strong=\"H4603\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*, for|strong=\"H5704\"* he|strong=\"H5704\"* went|strong=\"H3068\"* into|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"* to|strong=\"H5704\"* burn|strong=\"H6999\"* incense|strong=\"H7004\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* incense|strong=\"H7004\"*." + }, + { + "verseNum": 17, + "text": "Azariah|strong=\"H5838\"* the|strong=\"H3068\"* priest|strong=\"H3548\"* went|strong=\"H3068\"* in|strong=\"H3068\"* after him|strong=\"H5973\"*, and|strong=\"H1121\"* with|strong=\"H5973\"* him|strong=\"H5973\"* eighty|strong=\"H8084\"* priests|strong=\"H3548\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* were|strong=\"H1121\"* valiant|strong=\"H2428\"* men|strong=\"H1121\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"H3588\"* resisted Uzziah|strong=\"H5818\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, and|strong=\"H1121\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H5921\"*, “It|strong=\"H5921\"* isn’t for|strong=\"H3588\"* you|strong=\"H3588\"*, Uzziah|strong=\"H5818\"*, to|strong=\"H3318\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*, but|strong=\"H3588\"* for|strong=\"H3588\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, who|strong=\"H3068\"* are|strong=\"H1121\"* consecrated|strong=\"H6942\"* to|strong=\"H3318\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"*. Go|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sanctuary|strong=\"H4720\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* trespassed|strong=\"H4603\"*. It|strong=\"H5921\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* for|strong=\"H3588\"* your|strong=\"H3068\"* honor|strong=\"H3519\"* from|strong=\"H4480\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*.”" + }, + { + "verseNum": 19, + "text": "Then|strong=\"H3068\"* Uzziah|strong=\"H5818\"* was|strong=\"H3068\"* angry. He|strong=\"H3068\"* had|strong=\"H3068\"* a|strong=\"H3068\"* censer|strong=\"H4730\"* in|strong=\"H5921\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H3068\"* burn|strong=\"H6999\"* incense|strong=\"H7004\"*, and|strong=\"H3068\"* while|strong=\"H5973\"* he|strong=\"H3068\"* was|strong=\"H3068\"* angry with|strong=\"H5973\"* the|strong=\"H6440\"* priests|strong=\"H3548\"*, the|strong=\"H6440\"* leprosy|strong=\"H6883\"* broke|strong=\"H2224\"* out|strong=\"H5921\"* on|strong=\"H5921\"* his|strong=\"H3068\"* forehead|strong=\"H4696\"* before|strong=\"H6440\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, beside|strong=\"H5921\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* of|strong=\"H1004\"* incense|strong=\"H7004\"*." + }, + { + "verseNum": 20, + "text": "Azariah|strong=\"H5838\"* the|strong=\"H3605\"* chief|strong=\"H7218\"* priest|strong=\"H3548\"* and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* looked|strong=\"H6437\"* at|strong=\"H3068\"* him|strong=\"H3318\"*, and|strong=\"H3068\"* behold|strong=\"H2009\"*, he|strong=\"H1931\"* was|strong=\"H3068\"* leprous|strong=\"H6879\"* in|strong=\"H3068\"* his|strong=\"H3605\"* forehead|strong=\"H4696\"*; and|strong=\"H3068\"* they|strong=\"H3588\"* thrust him|strong=\"H3318\"* out|strong=\"H3318\"* quickly|strong=\"H1765\"* from|strong=\"H3318\"* there|strong=\"H8033\"*. Indeed|strong=\"H3588\"*, he|strong=\"H1931\"* himself|strong=\"H1931\"* also|strong=\"H1571\"* hurried|strong=\"H1765\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* struck|strong=\"H5060\"* him|strong=\"H3318\"*." + }, + { + "verseNum": 21, + "text": "Uzziah|strong=\"H5818\"* the|strong=\"H5921\"* king|strong=\"H4428\"* was|strong=\"H3068\"* a|strong=\"H3068\"* leper|strong=\"H6879\"* to|strong=\"H5704\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H1121\"* his|strong=\"H3068\"* death|strong=\"H4194\"*, and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* separate|strong=\"H2669\"* house|strong=\"H1004\"*, being|strong=\"H1961\"* a|strong=\"H3068\"* leper|strong=\"H6879\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H3068\"* cut|strong=\"H1504\"* off|strong=\"H1504\"* from|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*. Jotham|strong=\"H3147\"* his|strong=\"H3068\"* son|strong=\"H1121\"* was|strong=\"H3068\"* over|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, judging|strong=\"H8199\"* the|strong=\"H5921\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H5921\"* land." + }, + { + "verseNum": 22, + "text": "Now the|strong=\"H1697\"* rest|strong=\"H3499\"* of|strong=\"H1121\"* the|strong=\"H1697\"* acts|strong=\"H1697\"* of|strong=\"H1121\"* Uzziah|strong=\"H5818\"*, first|strong=\"H7223\"* and|strong=\"H1121\"* last, Isaiah|strong=\"H3470\"* the|strong=\"H1697\"* prophet|strong=\"H5030\"*, the|strong=\"H1697\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz, wrote|strong=\"H3789\"*." + }, + { + "verseNum": 23, + "text": "So|strong=\"H3588\"* Uzziah|strong=\"H5818\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H3588\"* fathers; and|strong=\"H1121\"* they|strong=\"H3588\"* buried|strong=\"H6912\"* him|strong=\"H4427\"* with|strong=\"H5973\"* his|strong=\"H3588\"* fathers in|strong=\"H4428\"* the|strong=\"H3588\"* field|strong=\"H7704\"* of|strong=\"H1121\"* burial|strong=\"H6900\"* which|strong=\"H1931\"* belonged to|strong=\"H1121\"* the|strong=\"H3588\"* kings|strong=\"H4428\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* said, “He|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* leper|strong=\"H6879\"*.” Jotham|strong=\"H3147\"* his|strong=\"H3588\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H4428\"* his|strong=\"H3588\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Jotham|strong=\"H3147\"* was|strong=\"H8034\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H2568\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H2568\"* reigned|strong=\"H4427\"* sixteen|strong=\"H8337\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H3147\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Jerushah|strong=\"H3388\"* the|strong=\"H6659\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H5971\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H5971\"* his|strong=\"H3605\"* father Uzziah|strong=\"H5818\"* had|strong=\"H3068\"* done|strong=\"H6213\"*. However|strong=\"H7535\"* he|strong=\"H6213\"* didn’t enter into|strong=\"H6213\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*. The|strong=\"H3605\"* people|strong=\"H5971\"* still|strong=\"H5750\"* acted|strong=\"H6213\"* corruptly|strong=\"H7843\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H1931\"* built|strong=\"H1129\"* the|strong=\"H3068\"* upper|strong=\"H5945\"* gate|strong=\"H8179\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* he|strong=\"H1931\"* built|strong=\"H1129\"* much|strong=\"H7230\"* on|strong=\"H3068\"* the|strong=\"H3068\"* wall|strong=\"H2346\"* of|strong=\"H1004\"* Ophel|strong=\"H6077\"*." + }, + { + "verseNum": 4, + "text": "Moreover he|strong=\"H3063\"* built|strong=\"H1129\"* cities|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H1129\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* in|strong=\"H5892\"* the|strong=\"H1129\"* forests|strong=\"H2793\"* he|strong=\"H3063\"* built|strong=\"H1129\"* fortresses|strong=\"H1003\"* and|strong=\"H3063\"* towers|strong=\"H4026\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H1931\"* also|strong=\"H4428\"* fought|strong=\"H3898\"* with|strong=\"H5973\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H3967\"* prevailed|strong=\"H2388\"* against|strong=\"H5921\"* them|strong=\"H5414\"*. The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* the|strong=\"H5921\"* same|strong=\"H1931\"* year|strong=\"H8141\"* one|strong=\"H7992\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"*+ 27:5 A talent is about 30 kilograms or 66 pounds* of|strong=\"H1121\"* silver|strong=\"H3701\"*, ten|strong=\"H6235\"* thousand cors|strong=\"H3734\"*+ 27:5 1 cor is the same as a homer, or about 55.9 U. S. gallons (liquid) or 211 liters or 6 bushels. 10,000 cors of wheat would weigh about 1,640 metric tons.* of|strong=\"H1121\"* wheat|strong=\"H2406\"*, and|strong=\"H3967\"* ten|strong=\"H6235\"* thousand cors|strong=\"H3734\"* of|strong=\"H1121\"* barley|strong=\"H8184\"*.+ 27:5 10,000 cors of barley would weigh about 1,310 metric tons.* The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* also|strong=\"H4428\"* gave|strong=\"H5414\"* that|strong=\"H1931\"* much|strong=\"H5921\"* to|strong=\"H7725\"* him|strong=\"H5414\"* in|strong=\"H8141\"* the|strong=\"H5921\"* second|strong=\"H8145\"* year|strong=\"H8141\"*, and|strong=\"H3967\"* in|strong=\"H8141\"* the|strong=\"H5921\"* third|strong=\"H7992\"*." + }, + { + "verseNum": 6, + "text": "So|strong=\"H3588\"* Jotham|strong=\"H3147\"* became|strong=\"H2388\"* mighty|strong=\"H2388\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* ordered|strong=\"H3559\"* his|strong=\"H3068\"* ways|strong=\"H1870\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H2005\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Jotham|strong=\"H3147\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* his|strong=\"H3605\"* wars|strong=\"H4421\"* and|strong=\"H3063\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, behold|strong=\"H2005\"*, they|strong=\"H5921\"* are|strong=\"H3478\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H2568\"* was|strong=\"H1961\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* he|strong=\"H2568\"* began|strong=\"H1961\"* to|strong=\"H1961\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* reigned|strong=\"H4427\"* sixteen|strong=\"H8337\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 9, + "text": "Jotham|strong=\"H3147\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* they|strong=\"H5892\"* buried|strong=\"H6912\"* him|strong=\"H4427\"* in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Ahaz his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "Ahaz was|strong=\"H3068\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H6213\"* he|strong=\"H6213\"* began to|strong=\"H3068\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H6213\"* reigned|strong=\"H4427\"* sixteen|strong=\"H8337\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. He|strong=\"H6213\"* didn’t do|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H8141\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, like|strong=\"H3808\"* David|strong=\"H1732\"* his|strong=\"H3068\"* father|strong=\"H1121\"*," + }, + { + "verseNum": 2, + "text": "but|strong=\"H1571\"* he|strong=\"H6213\"* walked|strong=\"H3212\"* in|strong=\"H3478\"* the|strong=\"H6213\"* ways|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H6213\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* also|strong=\"H1571\"* made|strong=\"H6213\"* molten|strong=\"H4541\"* images|strong=\"H4541\"* for|strong=\"H6213\"* the|strong=\"H6213\"* Baals|strong=\"H1168\"*." + }, + { + "verseNum": 3, + "text": "Moreover he|strong=\"H1931\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* in|strong=\"H3478\"* the|strong=\"H6440\"* valley|strong=\"H1516\"* of|strong=\"H1121\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"*, and|strong=\"H1121\"* burned|strong=\"H6999\"* his|strong=\"H6440\"* children|strong=\"H1121\"* in|strong=\"H3478\"* the|strong=\"H6440\"* fire, according to|strong=\"H3478\"* the|strong=\"H6440\"* abominations|strong=\"H8441\"* of|strong=\"H1121\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* cast|strong=\"H3423\"* out|strong=\"H3423\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3605\"* sacrificed|strong=\"H2076\"* and|strong=\"H6086\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* in|strong=\"H5921\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, and|strong=\"H6086\"* on|strong=\"H5921\"* the|strong=\"H3605\"* hills|strong=\"H1389\"*, and|strong=\"H6086\"* under|strong=\"H8478\"* every|strong=\"H3605\"* green|strong=\"H7488\"* tree|strong=\"H6086\"*." + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"H1571\"* Yahweh|strong=\"H3068\"* his|strong=\"H5414\"* God|strong=\"H3068\"* delivered|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria. They|strong=\"H3068\"* struck|strong=\"H5221\"* him|strong=\"H5414\"*, and|strong=\"H3478\"* carried|strong=\"H7617\"* away|strong=\"H7617\"* from|strong=\"H4480\"* him|strong=\"H5414\"* a|strong=\"H3068\"* great|strong=\"H1419\"* multitude|strong=\"H1419\"* of|strong=\"H4428\"* captives|strong=\"H7617\"*, and|strong=\"H3478\"* brought|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3478\"* Damascus|strong=\"H1834\"*. He|strong=\"H3068\"* was|strong=\"H3068\"* also|strong=\"H1571\"* delivered|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, who|strong=\"H3068\"* struck|strong=\"H5221\"* him|strong=\"H5414\"* with|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* slaughter|strong=\"H4347\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3068\"* Pekah|strong=\"H6492\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"* killed|strong=\"H2026\"* in|strong=\"H3068\"* Judah|strong=\"H3063\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* thousand in|strong=\"H3068\"* one|strong=\"H3605\"* day|strong=\"H3117\"*, all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H2026\"* valiant|strong=\"H2428\"* men|strong=\"H1121\"*, because|strong=\"H3117\"* they|strong=\"H3117\"* had|strong=\"H3068\"* forsaken|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* their|strong=\"H3605\"* fathers." + }, + { + "verseNum": 7, + "text": "Zichri|strong=\"H2147\"*, a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* of|strong=\"H1121\"* Ephraim, killed|strong=\"H2026\"* Maaseiah|strong=\"H4641\"* the|strong=\"H2026\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"*, Azrikam|strong=\"H5840\"* the|strong=\"H2026\"* ruler|strong=\"H5057\"* of|strong=\"H1121\"* the|strong=\"H2026\"* house|strong=\"H1004\"*, and|strong=\"H1121\"* Elkanah who|strong=\"H1121\"* was|strong=\"H4428\"* next|strong=\"H4932\"* to|strong=\"H1121\"* the|strong=\"H2026\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H1571\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* carried|strong=\"H7617\"* away|strong=\"H7617\"* captive|strong=\"H7617\"* of|strong=\"H1121\"* their|strong=\"H1992\"* brothers|strong=\"H1121\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* thousand women|strong=\"H1323\"*, sons|strong=\"H1121\"*, and|strong=\"H3967\"* daughters|strong=\"H1323\"*, and|strong=\"H3967\"* also|strong=\"H1571\"* took|strong=\"H7617\"* away|strong=\"H7617\"* much|strong=\"H7227\"* plunder|strong=\"H7998\"* from|strong=\"H3478\"* them|strong=\"H1992\"*, and|strong=\"H3967\"* brought|strong=\"H3478\"* the|strong=\"H1571\"* plunder|strong=\"H7998\"* to|strong=\"H3478\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H1961\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* there|strong=\"H8033\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H3068\"* Oded|strong=\"H5752\"*; and|strong=\"H3063\"* he|strong=\"H5704\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H5704\"* meet|strong=\"H6440\"* the|strong=\"H6440\"* army|strong=\"H6635\"* that|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H5704\"* Samaria|strong=\"H8111\"*, and|strong=\"H3063\"* said|strong=\"H3318\"* to|strong=\"H5704\"* them|strong=\"H5414\"*, “Behold|strong=\"H2009\"*, because|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers, was|strong=\"H3068\"* angry|strong=\"H2534\"* with|strong=\"H3068\"* Judah|strong=\"H3063\"*, he|strong=\"H5704\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5921\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3063\"* you|strong=\"H5414\"* have|strong=\"H1961\"* slain|strong=\"H2026\"* them|strong=\"H5414\"* in|strong=\"H5921\"* a|strong=\"H3068\"* rage|strong=\"H2534\"* which|strong=\"H3068\"* has|strong=\"H3068\"* reached|strong=\"H5060\"* up|strong=\"H5414\"* to|strong=\"H5704\"* heaven|strong=\"H8064\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H6258\"* you|strong=\"H5973\"* intend to|strong=\"H3068\"* degrade the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* as|strong=\"H3068\"* male|strong=\"H5650\"* and|strong=\"H1121\"* female|strong=\"H8198\"* slaves|strong=\"H5650\"* for|strong=\"H3068\"* yourselves|strong=\"H3068\"*. Aren’t there|strong=\"H6258\"* even|strong=\"H3808\"* with|strong=\"H5973\"* you|strong=\"H5973\"* trespasses of|strong=\"H1121\"* your|strong=\"H3068\"* own|strong=\"H5973\"* against|strong=\"H5973\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*?" + }, + { + "verseNum": 11, + "text": "Now|strong=\"H6258\"* hear|strong=\"H8085\"* me|strong=\"H7725\"* therefore|strong=\"H5921\"*, and|strong=\"H3068\"* send back|strong=\"H7725\"* the|strong=\"H5921\"* captives|strong=\"H7617\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* taken|strong=\"H7617\"* captive|strong=\"H7617\"* from|strong=\"H7725\"* your|strong=\"H3068\"* brothers, for|strong=\"H3588\"* the|strong=\"H5921\"* fierce|strong=\"H2740\"* wrath|strong=\"H2740\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H5921\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H6965\"* some|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H5921\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim, Azariah|strong=\"H5838\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Johanan|strong=\"H3076\"*, Berechiah|strong=\"H1296\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshillemoth|strong=\"H4919\"*, Jehizkiah|strong=\"H3169\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shallum|strong=\"H7967\"*, and|strong=\"H1121\"* Amasa|strong=\"H6021\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hadlai|strong=\"H2311\"*, stood|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* those|strong=\"H4480\"* who|strong=\"H1121\"* came|strong=\"H6635\"* from|strong=\"H4480\"* the|strong=\"H5921\"* war|strong=\"H6635\"*," + }, + { + "verseNum": 13, + "text": "and|strong=\"H3478\"* said to|strong=\"H3478\"* them|strong=\"H5921\"*, “You|strong=\"H3588\"* must|strong=\"H3478\"* not|strong=\"H3808\"* bring|strong=\"H3254\"* in|strong=\"H5921\"* the|strong=\"H5921\"* captives|strong=\"H7633\"* here|strong=\"H2008\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* intend that|strong=\"H3588\"* which|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H3254\"* on|strong=\"H5921\"* us|strong=\"H5921\"* a|strong=\"H3068\"* trespass against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3478\"* add|strong=\"H3254\"* to|strong=\"H3478\"* our|strong=\"H3068\"* sins|strong=\"H2403\"* and|strong=\"H3478\"* to|strong=\"H3478\"* our|strong=\"H3068\"* guilt; for|strong=\"H3588\"* our|strong=\"H3068\"* guilt is|strong=\"H3068\"* great|strong=\"H7227\"*, and|strong=\"H3478\"* there|strong=\"H2008\"* is|strong=\"H3068\"* fierce|strong=\"H2740\"* wrath|strong=\"H2740\"* against|strong=\"H5921\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 14, + "text": "So|strong=\"H5800\"* the|strong=\"H3605\"* armed|strong=\"H2502\"* men|strong=\"H2502\"* left|strong=\"H5800\"* the|strong=\"H3605\"* captives|strong=\"H7633\"* and|strong=\"H6440\"* the|strong=\"H3605\"* plunder before|strong=\"H6440\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3605\"* men|strong=\"H3605\"* who|strong=\"H3605\"* have|strong=\"H3605\"* been|strong=\"H3605\"* mentioned by|strong=\"H6965\"* name|strong=\"H8034\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* took|strong=\"H2388\"* the|strong=\"H3605\"* captives|strong=\"H7633\"*, and|strong=\"H6965\"* with|strong=\"H3847\"* the|strong=\"H3605\"* plunder|strong=\"H7998\"* clothed|strong=\"H3847\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H5892\"* naked|strong=\"H4636\"* among|strong=\"H4480\"* them|strong=\"H7725\"*, dressed|strong=\"H3847\"* them|strong=\"H7725\"*, gave|strong=\"H8248\"* them|strong=\"H7725\"* sandals|strong=\"H5274\"*, gave|strong=\"H8248\"* them|strong=\"H7725\"* something|strong=\"H3605\"* to|strong=\"H7725\"* eat and|strong=\"H6965\"* to|strong=\"H7725\"* drink|strong=\"H8248\"*, anointed|strong=\"H5480\"* them|strong=\"H7725\"*, carried|strong=\"H2388\"* all|strong=\"H3605\"* the|strong=\"H3605\"* feeble|strong=\"H3782\"* of|strong=\"H5892\"* them|strong=\"H7725\"* on|strong=\"H3847\"* donkeys|strong=\"H2543\"*, and|strong=\"H6965\"* brought|strong=\"H7725\"* them|strong=\"H7725\"* to|strong=\"H7725\"* Jericho|strong=\"H3405\"*, the|strong=\"H3605\"* city|strong=\"H5892\"* of|strong=\"H5892\"* palm|strong=\"H8558\"* trees|strong=\"H8558\"*, to|strong=\"H7725\"* their|strong=\"H3605\"* brothers. Then|strong=\"H6965\"* they|strong=\"H3605\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 16, + "text": "At|strong=\"H5921\"* that|strong=\"H1931\"* time|strong=\"H6256\"* King|strong=\"H4428\"* Ahaz sent|strong=\"H7971\"* to|strong=\"H7971\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Assyria to|strong=\"H7971\"* help|strong=\"H5826\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H7628\"* again|strong=\"H5750\"* the|strong=\"H5221\"* Edomites had|strong=\"H3063\"* come|strong=\"H3063\"* and|strong=\"H3063\"* struck|strong=\"H5221\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* carried|strong=\"H7617\"* away|strong=\"H7617\"* captives|strong=\"H7617\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H8033\"* Philistines|strong=\"H6430\"* also|strong=\"H6430\"* had|strong=\"H3063\"* invaded|strong=\"H6584\"* the|strong=\"H8033\"* cities|strong=\"H5892\"* of|strong=\"H1323\"* the|strong=\"H8033\"* lowland|strong=\"H8219\"* and|strong=\"H3063\"* of|strong=\"H1323\"* the|strong=\"H8033\"* South|strong=\"H5045\"* of|strong=\"H1323\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* had|strong=\"H3063\"* taken|strong=\"H3920\"* Beth Shemesh, Aijalon, Gederoth|strong=\"H1450\"*, Soco|strong=\"H7755\"* with|strong=\"H3427\"* its|strong=\"H3920\"* villages|strong=\"H1323\"*, Timnah|strong=\"H8553\"* with|strong=\"H3427\"* its|strong=\"H3920\"* villages|strong=\"H1323\"*, and|strong=\"H3063\"* also|strong=\"H6430\"* Gimzo|strong=\"H1579\"* and|strong=\"H3063\"* its|strong=\"H3920\"* villages|strong=\"H1323\"*; and|strong=\"H3063\"* they|strong=\"H8033\"* lived|strong=\"H3427\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* brought|strong=\"H3478\"* Judah|strong=\"H3063\"* low|strong=\"H3665\"* because|strong=\"H3588\"* of|strong=\"H4428\"* Ahaz king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* acted|strong=\"H4603\"* without|strong=\"H3588\"* restraint|strong=\"H6544\"* in|strong=\"H3478\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* trespassed|strong=\"H4603\"* severely against|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 20, + "text": "Tilgath-pilneser|strong=\"H8407\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria came|strong=\"H4428\"* to|strong=\"H5921\"* him|strong=\"H5921\"* and|strong=\"H4428\"* gave|strong=\"H2388\"* him|strong=\"H5921\"* trouble, but|strong=\"H3808\"* didn’t strengthen|strong=\"H2388\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* Ahaz took|strong=\"H4428\"* away|strong=\"H5414\"* a|strong=\"H3068\"* portion|strong=\"H2505\"* out|strong=\"H5414\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* out|strong=\"H5414\"* of|strong=\"H4428\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H3588\"* king|strong=\"H4428\"* and|strong=\"H3068\"* of|strong=\"H4428\"* the|strong=\"H3588\"* princes|strong=\"H8269\"*, and|strong=\"H3068\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria; but|strong=\"H3588\"* it|strong=\"H5414\"* didn’t help|strong=\"H5833\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 22, + "text": "In|strong=\"H3068\"* the|strong=\"H3068\"* time|strong=\"H6256\"* of|strong=\"H4428\"* his|strong=\"H3068\"* distress|strong=\"H6887\"*, he|strong=\"H1931\"* trespassed|strong=\"H4603\"* yet|strong=\"H3254\"* more|strong=\"H3254\"* against|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, this|strong=\"H1931\"* same|strong=\"H1931\"* King|strong=\"H4428\"* Ahaz." + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* sacrificed|strong=\"H2076\"* to|strong=\"H3478\"* the|strong=\"H3605\"* gods of|strong=\"H4428\"* Damascus|strong=\"H1834\"* which|strong=\"H1992\"* had|strong=\"H1961\"* defeated|strong=\"H5221\"* him|strong=\"H5221\"*. He|strong=\"H3588\"* said, “Because|strong=\"H3588\"* the|strong=\"H3605\"* gods of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Syria helped|strong=\"H5826\"* them|strong=\"H1992\"*, I|strong=\"H3588\"* will|strong=\"H1961\"* sacrifice|strong=\"H2076\"* to|strong=\"H3478\"* them|strong=\"H1992\"*, that|strong=\"H3588\"* they|strong=\"H1992\"* may|strong=\"H1961\"* help|strong=\"H5826\"* me|strong=\"H5221\"*.” But|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H3478\"* the|strong=\"H3605\"* ruin|strong=\"H3782\"* of|strong=\"H4428\"* him|strong=\"H5221\"* and|strong=\"H3478\"* of|strong=\"H4428\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 24, + "text": "Ahaz gathered|strong=\"H6213\"* together|strong=\"H5462\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H1004\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"*, cut|strong=\"H7112\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H1004\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"* in|strong=\"H3068\"* pieces|strong=\"H7112\"*, and|strong=\"H3068\"* shut|strong=\"H5462\"* up|strong=\"H5462\"* the|strong=\"H3605\"* doors|strong=\"H1817\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* himself|strong=\"H6213\"* altars|strong=\"H4196\"* in|strong=\"H3068\"* every|strong=\"H3605\"* corner|strong=\"H6438\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 25, + "text": "In|strong=\"H3068\"* every|strong=\"H3605\"* city|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* he|strong=\"H6213\"* made|strong=\"H6213\"* high|strong=\"H1116\"* places|strong=\"H1116\"* to|strong=\"H3068\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H3068\"* other|strong=\"H3605\"* gods, and|strong=\"H3063\"* provoked|strong=\"H3707\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* his|strong=\"H3605\"* fathers, to|strong=\"H3068\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 26, + "text": "Now|strong=\"H2005\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* his|strong=\"H3605\"* acts|strong=\"H1697\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, first|strong=\"H7223\"* and|strong=\"H3063\"* last, behold|strong=\"H2005\"*, they|strong=\"H5921\"* are|strong=\"H3478\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 27, + "text": "Ahaz slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H3478\"* fathers, and|strong=\"H1121\"* they|strong=\"H3588\"* buried|strong=\"H6912\"* him|strong=\"H4427\"* in|strong=\"H3478\"* the|strong=\"H3588\"* city|strong=\"H5892\"*, even|strong=\"H3588\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* didn’t bring him|strong=\"H4427\"* into|strong=\"H5892\"* the|strong=\"H3588\"* tombs|strong=\"H6913\"* of|strong=\"H1121\"* the|strong=\"H3588\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* Hezekiah|strong=\"H2396\"* his|strong=\"H3478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H3478\"* his|strong=\"H3478\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "Hezekiah|strong=\"H2396\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"* when|strong=\"H1121\"* he|strong=\"H2568\"* was|strong=\"H8034\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H2568\"* reigned|strong=\"H4427\"* twenty-nine|strong=\"H6242\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H2396\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Abijah, the|strong=\"H8034\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Zechariah|strong=\"H2148\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* David|strong=\"H1732\"* his|strong=\"H3605\"* father had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 3, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* first|strong=\"H7223\"* year|strong=\"H8141\"* of|strong=\"H1004\"* his|strong=\"H3068\"* reign|strong=\"H4427\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, he|strong=\"H1931\"* opened|strong=\"H6605\"* the|strong=\"H3068\"* doors|strong=\"H1817\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* repaired|strong=\"H2388\"* them|strong=\"H2388\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H4217\"* brought|strong=\"H3548\"* in|strong=\"H3881\"* the|strong=\"H3548\"* priests|strong=\"H3548\"* and|strong=\"H3548\"* the|strong=\"H3548\"* Levites|strong=\"H3881\"* and|strong=\"H3548\"* gathered them together into|strong=\"H4217\"* the|strong=\"H3548\"* wide place on the|strong=\"H3548\"* east|strong=\"H4217\"*," + }, + { + "verseNum": 5, + "text": "and|strong=\"H3068\"* said|strong=\"H8085\"* to|strong=\"H3318\"* them|strong=\"H3318\"*, “Listen|strong=\"H8085\"* to|strong=\"H3318\"* me|strong=\"H4480\"*, you|strong=\"H4480\"* Levites|strong=\"H3881\"*! Now|strong=\"H6258\"* sanctify|strong=\"H6942\"* yourselves|strong=\"H6942\"*, and|strong=\"H3068\"* sanctify|strong=\"H6942\"* the|strong=\"H8085\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H1004\"* your|strong=\"H3068\"* fathers, and|strong=\"H3068\"* carry|strong=\"H3318\"* the|strong=\"H8085\"* filthiness|strong=\"H5079\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H8085\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* our|strong=\"H3068\"* fathers were|strong=\"H5869\"* unfaithful|strong=\"H4603\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* done|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* forsaken|strong=\"H5800\"* him|strong=\"H5414\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* turned|strong=\"H5437\"* away|strong=\"H5437\"* their|strong=\"H3068\"* faces|strong=\"H6440\"* from|strong=\"H6440\"* the|strong=\"H6440\"* habitation|strong=\"H4908\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* turned|strong=\"H5437\"* their|strong=\"H3068\"* backs|strong=\"H6203\"*." + }, + { + "verseNum": 7, + "text": "Also|strong=\"H1571\"* they|strong=\"H3808\"* have|strong=\"H1571\"* shut|strong=\"H5462\"* up|strong=\"H5927\"* the|strong=\"H5927\"* doors|strong=\"H1817\"* of|strong=\"H1817\"* the|strong=\"H5927\"* porch, and|strong=\"H3478\"* put|strong=\"H5927\"* out|strong=\"H3518\"* the|strong=\"H5927\"* lamps|strong=\"H5216\"*, and|strong=\"H3478\"* have|strong=\"H1571\"* not|strong=\"H3808\"* burned|strong=\"H6999\"* incense|strong=\"H7004\"* nor|strong=\"H3808\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* in|strong=\"H3478\"* the|strong=\"H5927\"* holy|strong=\"H6944\"* place|strong=\"H6944\"* to|strong=\"H3478\"* the|strong=\"H5927\"* God|strong=\"H3808\"* of|strong=\"H1817\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s wrath|strong=\"H7110\"* was|strong=\"H3068\"* on|strong=\"H5921\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* he|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3068\"* be|strong=\"H1961\"* tossed back and|strong=\"H3063\"* forth|strong=\"H5414\"*, to|strong=\"H3068\"* be|strong=\"H1961\"* an|strong=\"H1961\"* astonishment|strong=\"H8047\"* and|strong=\"H3063\"* a|strong=\"H3068\"* hissing|strong=\"H8322\"*, as|strong=\"H1961\"* you|strong=\"H5414\"* see|strong=\"H7200\"* with|strong=\"H3068\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H5921\"* behold|strong=\"H2009\"*, our|strong=\"H5921\"* fathers have|strong=\"H1121\"* fallen|strong=\"H5307\"* by|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*, and|strong=\"H1121\"* our|strong=\"H5921\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* our|strong=\"H5921\"* daughters|strong=\"H1323\"* and|strong=\"H1121\"* our|strong=\"H5921\"* wives are|strong=\"H1121\"* in|strong=\"H5921\"* captivity|strong=\"H7628\"* for|strong=\"H5921\"* this|strong=\"H2063\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H6258\"* it|strong=\"H7725\"* is|strong=\"H3068\"* in|strong=\"H3478\"* my|strong=\"H3068\"* heart|strong=\"H3824\"* to|strong=\"H7725\"* make|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H5973\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, that|strong=\"H3068\"* his|strong=\"H3068\"* fierce|strong=\"H2740\"* anger|strong=\"H2740\"* may|strong=\"H3068\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H4480\"* us|strong=\"H7725\"*." + }, + { + "verseNum": 11, + "text": "My|strong=\"H3068\"* sons|strong=\"H1121\"*, don’t be|strong=\"H1961\"* negligent|strong=\"H7952\"* now|strong=\"H6258\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* chosen you|strong=\"H3588\"* to|strong=\"H3068\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, to|strong=\"H3068\"* minister|strong=\"H8334\"* to|strong=\"H3068\"* him|strong=\"H6440\"*, and|strong=\"H1121\"* that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H3068\"* be|strong=\"H1961\"* his|strong=\"H3068\"* ministers|strong=\"H8334\"* and|strong=\"H1121\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H6965\"* the|strong=\"H4480\"* Levites|strong=\"H3881\"* arose|strong=\"H6965\"*: Mahath|strong=\"H4287\"*, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amasai|strong=\"H6022\"*, and|strong=\"H1121\"* Joel|strong=\"H3100\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azariah|strong=\"H5838\"*, of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* Kohathites|strong=\"H6956\"*; and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, Kish|strong=\"H7027\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abdi|strong=\"H5660\"*, and|strong=\"H1121\"* Azariah|strong=\"H5838\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehallelel|strong=\"H3094\"*; and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* Gershonites|strong=\"H1649\"*, Joah|strong=\"H3098\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zimmah|strong=\"H2155\"*, and|strong=\"H1121\"* Eden|strong=\"H5731\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joah|strong=\"H3098\"*;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Elizaphan, Shimri|strong=\"H8113\"* and|strong=\"H1121\"* Jeuel|strong=\"H3273\"*; and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asaph, Zechariah|strong=\"H2148\"* and|strong=\"H1121\"* Mattaniah|strong=\"H4983\"*;" + }, + { + "verseNum": 14, + "text": "and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Heman|strong=\"H1968\"*, Jehuel and|strong=\"H1121\"* Shimei|strong=\"H8096\"*; and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jeduthun|strong=\"H3038\"*, Shemaiah|strong=\"H8098\"* and|strong=\"H1121\"* Uzziel|strong=\"H5816\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"H3068\"* gathered their|strong=\"H3068\"* brothers, sanctified|strong=\"H6942\"* themselves|strong=\"H6942\"*, and|strong=\"H3068\"* went|strong=\"H3068\"* in|strong=\"H3068\"*, according to|strong=\"H3068\"* the|strong=\"H3068\"* commandment|strong=\"H4687\"* of|strong=\"H4428\"* the|strong=\"H3068\"* king|strong=\"H4428\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"*, to|strong=\"H3068\"* cleanse|strong=\"H2891\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* priests|strong=\"H3548\"* went|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3605\"* inner|strong=\"H6441\"* part|strong=\"H6441\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* to|strong=\"H3318\"* cleanse|strong=\"H2891\"* it|strong=\"H4672\"*, and|strong=\"H3068\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* uncleanness|strong=\"H2932\"* that|strong=\"H3605\"* they|strong=\"H3068\"* found|strong=\"H4672\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1004\"* into|strong=\"H3318\"* the|strong=\"H3605\"* court|strong=\"H2691\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*. The|strong=\"H3605\"* Levites|strong=\"H3881\"* took|strong=\"H3318\"* it|strong=\"H4672\"* from|strong=\"H3318\"* there|strong=\"H4672\"* to|strong=\"H3318\"* carry|strong=\"H3318\"* it|strong=\"H4672\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3605\"* brook|strong=\"H5158\"* Kidron|strong=\"H6939\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"H3117\"* they|strong=\"H3117\"* began|strong=\"H2490\"* on|strong=\"H3117\"* the|strong=\"H3068\"* first|strong=\"H7223\"* day|strong=\"H3117\"* of|strong=\"H1004\"* the|strong=\"H3068\"* first|strong=\"H7223\"* month|strong=\"H2320\"* to|strong=\"H3068\"* sanctify|strong=\"H6942\"*, and|strong=\"H3068\"* on|strong=\"H3117\"* the|strong=\"H3068\"* eighth|strong=\"H8083\"* day|strong=\"H3117\"* of|strong=\"H1004\"* the|strong=\"H3068\"* month|strong=\"H2320\"* they|strong=\"H3117\"* came|strong=\"H3068\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s porch. They|strong=\"H3117\"* sanctified|strong=\"H6942\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* in|strong=\"H3068\"* eight|strong=\"H8083\"* days|strong=\"H3117\"*, and|strong=\"H3068\"* on|strong=\"H3117\"* the|strong=\"H3068\"* sixteenth|strong=\"H8337\"* day|strong=\"H3117\"* of|strong=\"H1004\"* the|strong=\"H3068\"* first|strong=\"H7223\"* month|strong=\"H2320\"* they|strong=\"H3117\"* finished|strong=\"H3615\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H4428\"* they|strong=\"H3068\"* went|strong=\"H3068\"* in|strong=\"H3068\"* to|strong=\"H3068\"* Hezekiah|strong=\"H2396\"* the|strong=\"H3605\"* king|strong=\"H4428\"* within|strong=\"H1004\"* the|strong=\"H3605\"* palace|strong=\"H1004\"* and|strong=\"H3068\"* said, “We|strong=\"H3605\"* have|strong=\"H3068\"* cleansed|strong=\"H2891\"* all|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, including|strong=\"H3605\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H4428\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* with|strong=\"H1004\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* table|strong=\"H7979\"* of|strong=\"H4428\"* show bread with|strong=\"H1004\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*." + }, + { + "verseNum": 19, + "text": "Moreover, we|strong=\"H3068\"* have|strong=\"H3068\"* prepared|strong=\"H3559\"* and|strong=\"H3068\"* sanctified|strong=\"H6942\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* which|strong=\"H3068\"* King|strong=\"H4428\"* Ahaz threw away|strong=\"H3605\"* in|strong=\"H3068\"* his|strong=\"H3605\"* reign|strong=\"H4438\"* when|strong=\"H3068\"* he|strong=\"H3068\"* was|strong=\"H3068\"* unfaithful|strong=\"H4604\"*. Behold|strong=\"H2005\"*, they|strong=\"H3068\"* are|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"*.”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* the|strong=\"H3068\"* king|strong=\"H4428\"* arose|strong=\"H7925\"* early|strong=\"H7925\"*, gathered the|strong=\"H3068\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3068\"* city|strong=\"H5892\"*, and|strong=\"H3068\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"H3068\"* brought|strong=\"H5927\"* seven|strong=\"H7651\"* bulls|strong=\"H6499\"*, seven|strong=\"H7651\"* rams, seven|strong=\"H7651\"* lambs|strong=\"H3532\"*, and|strong=\"H1121\"* seven|strong=\"H7651\"* male|strong=\"H3532\"* goats|strong=\"H5795\"*, for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* for|strong=\"H5921\"* the|strong=\"H5921\"* kingdom|strong=\"H4467\"*, for|strong=\"H5921\"* the|strong=\"H5921\"* sanctuary|strong=\"H4720\"*, and|strong=\"H1121\"* for|strong=\"H5921\"* Judah|strong=\"H3063\"*. He|strong=\"H3068\"* commanded the|strong=\"H5921\"* priests|strong=\"H3548\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron to|strong=\"H3068\"* offer|strong=\"H5927\"* them|strong=\"H5921\"* on|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"*." + }, + { + "verseNum": 22, + "text": "So they|strong=\"H4196\"* killed|strong=\"H7819\"* the|strong=\"H7819\"* bulls|strong=\"H1241\"*, and|strong=\"H3548\"* the|strong=\"H7819\"* priests|strong=\"H3548\"* received|strong=\"H6901\"* the|strong=\"H7819\"* blood|strong=\"H1818\"* and|strong=\"H3548\"* sprinkled|strong=\"H2236\"* it|strong=\"H7819\"* on|strong=\"H4196\"* the|strong=\"H7819\"* altar|strong=\"H4196\"*. They|strong=\"H4196\"* killed|strong=\"H7819\"* the|strong=\"H7819\"* rams and|strong=\"H3548\"* sprinkled|strong=\"H2236\"* the|strong=\"H7819\"* blood|strong=\"H1818\"* on|strong=\"H4196\"* the|strong=\"H7819\"* altar|strong=\"H4196\"*. They|strong=\"H4196\"* also|strong=\"H6901\"* killed|strong=\"H7819\"* the|strong=\"H7819\"* lambs|strong=\"H3532\"* and|strong=\"H3548\"* sprinkled|strong=\"H2236\"* the|strong=\"H7819\"* blood|strong=\"H1818\"* on|strong=\"H4196\"* the|strong=\"H7819\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H5921\"* brought|strong=\"H5066\"* near|strong=\"H5066\"* the|strong=\"H6440\"* male|strong=\"H8163\"* goats|strong=\"H8163\"* for|strong=\"H5921\"* the|strong=\"H6440\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"* and|strong=\"H4428\"* the|strong=\"H6440\"* assembly|strong=\"H6951\"*; and|strong=\"H4428\"* they|strong=\"H5921\"* laid|strong=\"H5564\"* their|strong=\"H5564\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 24, + "text": "Then|strong=\"H4428\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* killed|strong=\"H7819\"* them|strong=\"H5921\"*, and|strong=\"H3478\"* they|strong=\"H3588\"* made|strong=\"H3722\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* with|strong=\"H5921\"* their|strong=\"H3605\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, to|strong=\"H3478\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* commanded that|strong=\"H3588\"* the|strong=\"H3605\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H3478\"* the|strong=\"H3605\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* should|strong=\"H3588\"* be|strong=\"H3478\"* made|strong=\"H3722\"* for|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H3588\"* set|strong=\"H5975\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* with|strong=\"H1004\"* cymbals|strong=\"H4700\"*, with|strong=\"H1004\"* stringed instruments, and|strong=\"H3068\"* with|strong=\"H1004\"* harps|strong=\"H3658\"*, according|strong=\"H3027\"* to|strong=\"H3068\"* the|strong=\"H3588\"* commandment|strong=\"H4687\"* of|strong=\"H4428\"* David|strong=\"H1732\"*, of|strong=\"H4428\"* Gad|strong=\"H1410\"* the|strong=\"H3588\"* king|strong=\"H4428\"*’s seer|strong=\"H2374\"*, and|strong=\"H3068\"* Nathan|strong=\"H5416\"* the|strong=\"H3588\"* prophet|strong=\"H5030\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* commandment|strong=\"H4687\"* was|strong=\"H3068\"* from|strong=\"H3027\"* Yahweh|strong=\"H3068\"* by|strong=\"H3027\"* his|strong=\"H3068\"* prophets|strong=\"H5030\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H5975\"* Levites|strong=\"H3881\"* stood|strong=\"H5975\"* with|strong=\"H3548\"* David|strong=\"H1732\"*’s instruments|strong=\"H3627\"*, and|strong=\"H3548\"* the|strong=\"H5975\"* priests|strong=\"H3548\"* with|strong=\"H3548\"* the|strong=\"H5975\"* trumpets|strong=\"H2689\"*." + }, + { + "verseNum": 27, + "text": "Hezekiah|strong=\"H2396\"* commanded them|strong=\"H5921\"* to|strong=\"H3478\"* offer|strong=\"H5927\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*. When|strong=\"H6256\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* began|strong=\"H2490\"*, Yahweh|strong=\"H3068\"*’s song|strong=\"H7892\"* also|strong=\"H3068\"* began|strong=\"H2490\"*, along|strong=\"H5921\"* with|strong=\"H3068\"* the|strong=\"H5921\"* trumpets|strong=\"H2689\"* and|strong=\"H3478\"* instruments|strong=\"H3627\"* of|strong=\"H4428\"* David|strong=\"H1732\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 28, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* worshiped|strong=\"H7812\"*, the|strong=\"H3605\"* singers|strong=\"H7891\"* sang|strong=\"H7891\"*, and|strong=\"H5930\"* the|strong=\"H3605\"* trumpeters|strong=\"H2689\"* sounded|strong=\"H2690\"*. All|strong=\"H3605\"* this|strong=\"H3605\"* continued until|strong=\"H5704\"* the|strong=\"H3605\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* was|strong=\"H3605\"* finished|strong=\"H3615\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"H3615\"* they|strong=\"H3605\"* had|strong=\"H4428\"* finished|strong=\"H3615\"* offering|strong=\"H5927\"*, the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H4428\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H4428\"* present|strong=\"H4672\"* with|strong=\"H5927\"* him|strong=\"H4672\"* bowed|strong=\"H7812\"* themselves|strong=\"H7812\"* and|strong=\"H4428\"* worshiped|strong=\"H7812\"*." + }, + { + "verseNum": 30, + "text": "Moreover Hezekiah|strong=\"H2396\"* the|strong=\"H3068\"* king|strong=\"H4428\"* and|strong=\"H3068\"* the|strong=\"H3068\"* princes|strong=\"H8269\"* commanded the|strong=\"H3068\"* Levites|strong=\"H3881\"* to|strong=\"H5704\"* sing|strong=\"H1984\"* praises|strong=\"H1984\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* the|strong=\"H3068\"* words|strong=\"H1697\"* of|strong=\"H4428\"* David|strong=\"H1732\"*, and|strong=\"H3068\"* of|strong=\"H4428\"* Asaph the|strong=\"H3068\"* seer|strong=\"H2374\"*. They|strong=\"H3068\"* sang|strong=\"H1984\"* praises|strong=\"H1984\"* with|strong=\"H3068\"* gladness|strong=\"H8057\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* bowed|strong=\"H7812\"* their|strong=\"H3068\"* heads|strong=\"H6915\"* and|strong=\"H3068\"* worshiped|strong=\"H7812\"*." + }, + { + "verseNum": 31, + "text": "Then|strong=\"H6030\"* Hezekiah|strong=\"H2396\"* answered|strong=\"H6030\"*, “Now|strong=\"H6258\"* you|strong=\"H3605\"* have|strong=\"H3068\"* consecrated|strong=\"H4390\"* yourselves|strong=\"H3027\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Come|strong=\"H5066\"* near|strong=\"H5066\"* and|strong=\"H3068\"* bring|strong=\"H5066\"* sacrifices|strong=\"H2077\"* and|strong=\"H3068\"* thank|strong=\"H8426\"* offerings|strong=\"H5930\"* into|strong=\"H3027\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*.” The|strong=\"H3605\"* assembly|strong=\"H6951\"* brought|strong=\"H5066\"* in|strong=\"H3068\"* sacrifices|strong=\"H2077\"* and|strong=\"H3068\"* thank|strong=\"H8426\"* offerings|strong=\"H5930\"*, and|strong=\"H3068\"* as|strong=\"H3068\"* many as|strong=\"H3068\"* were|strong=\"H3027\"* of|strong=\"H1004\"* a|strong=\"H3068\"* willing|strong=\"H5081\"* heart|strong=\"H3820\"* brought|strong=\"H5066\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H3068\"* the|strong=\"H3605\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* which|strong=\"H3068\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* brought|strong=\"H1961\"* was|strong=\"H3068\"* seventy|strong=\"H7657\"* bulls|strong=\"H1241\"*, one|strong=\"H3532\"* hundred|strong=\"H3967\"* rams, and|strong=\"H3967\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* lambs|strong=\"H3532\"*. All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1961\"* for|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H6942\"* consecrated|strong=\"H6942\"* things|strong=\"H7969\"* were|strong=\"H6629\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* head of|strong=\"H6629\"* cattle|strong=\"H1241\"* and|strong=\"H3967\"* three|strong=\"H7969\"* thousand sheep|strong=\"H6629\"*." + }, + { + "verseNum": 34, + "text": "But|strong=\"H3588\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* were|strong=\"H1961\"* too|strong=\"H1961\"* few|strong=\"H4592\"*, so|strong=\"H1961\"* that|strong=\"H3588\"* they|strong=\"H3588\"* could|strong=\"H3201\"* not|strong=\"H3808\"* skin|strong=\"H6584\"* all|strong=\"H3605\"* the|strong=\"H3605\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*. Therefore|strong=\"H3588\"* their|strong=\"H3605\"* brothers the|strong=\"H3605\"* Levites|strong=\"H3881\"* helped|strong=\"H2388\"* them|strong=\"H3615\"* until|strong=\"H5704\"* the|strong=\"H3605\"* work|strong=\"H4399\"* was|strong=\"H1961\"* ended|strong=\"H1961\"*, and|strong=\"H3548\"* until|strong=\"H5704\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* had|strong=\"H1961\"* sanctified|strong=\"H6942\"* themselves|strong=\"H6942\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* were|strong=\"H1961\"* more|strong=\"H3808\"* upright|strong=\"H3477\"* in|strong=\"H3477\"* heart|strong=\"H3824\"* to|strong=\"H5704\"* sanctify|strong=\"H6942\"* themselves|strong=\"H6942\"* than|strong=\"H3808\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*." + }, + { + "verseNum": 35, + "text": "Also|strong=\"H1571\"* the|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* were|strong=\"H1004\"* in|strong=\"H3068\"* abundance|strong=\"H7230\"*, with|strong=\"H1004\"* the|strong=\"H3068\"* fat|strong=\"H2459\"* of|strong=\"H1004\"* the|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* and|strong=\"H3068\"* with|strong=\"H1004\"* the|strong=\"H3068\"* drink|strong=\"H5262\"* offerings|strong=\"H8002\"* for|strong=\"H3068\"* every|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*. So|strong=\"H1571\"* the|strong=\"H3068\"* service|strong=\"H5656\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* was|strong=\"H3068\"* set|strong=\"H3559\"* in|strong=\"H3068\"* order|strong=\"H3559\"*." + }, + { + "verseNum": 36, + "text": "Hezekiah|strong=\"H2396\"* and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* rejoiced|strong=\"H8055\"* because|strong=\"H3588\"* of|strong=\"H1697\"* that|strong=\"H3588\"* which|strong=\"H1697\"* God had|strong=\"H1961\"* prepared|strong=\"H3559\"* for|strong=\"H3588\"* the|strong=\"H3605\"* people|strong=\"H5971\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* thing|strong=\"H1697\"* was|strong=\"H1961\"* done|strong=\"H1961\"* suddenly|strong=\"H6597\"*." + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "Hezekiah|strong=\"H2396\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* wrote|strong=\"H3789\"* letters also|strong=\"H1571\"* to|strong=\"H3478\"* Ephraim and|strong=\"H3063\"* Manasseh|strong=\"H4519\"*, that|strong=\"H3605\"* they|strong=\"H3068\"* should|strong=\"H3068\"* come|strong=\"H3478\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* at|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, to|strong=\"H3478\"* keep|strong=\"H6213\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"* had|strong=\"H4428\"* taken|strong=\"H3289\"* counsel|strong=\"H3289\"* with|strong=\"H6213\"* his|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* in|strong=\"H6213\"* Jerusalem|strong=\"H3389\"* to|strong=\"H6213\"* keep|strong=\"H6213\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"* in|strong=\"H6213\"* the|strong=\"H3605\"* second|strong=\"H8145\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* could|strong=\"H3201\"* not|strong=\"H3808\"* keep|strong=\"H6213\"* it|strong=\"H1931\"* at|strong=\"H6213\"* that|strong=\"H3588\"* time|strong=\"H6256\"*, because|strong=\"H3588\"* the|strong=\"H3588\"* priests|strong=\"H3548\"* had|strong=\"H3588\"* not|strong=\"H3808\"* sanctified|strong=\"H6942\"* themselves|strong=\"H6942\"* in|strong=\"H6213\"* sufficient number, and|strong=\"H3548\"* the|strong=\"H3588\"* people|strong=\"H5971\"* had|strong=\"H3588\"* not|strong=\"H3808\"* gathered|strong=\"H6213\"* themselves|strong=\"H6942\"* together|strong=\"H5971\"* to|strong=\"H3201\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* thing|strong=\"H1697\"* was|strong=\"H1697\"* right|strong=\"H3474\"* in|strong=\"H4428\"* the|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H4428\"* of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*." + }, + { + "verseNum": 5, + "text": "So|strong=\"H6213\"* they|strong=\"H3588\"* established|strong=\"H5975\"* a|strong=\"H3068\"* decree|strong=\"H1697\"* to|strong=\"H5704\"* make|strong=\"H6213\"* proclamation|strong=\"H6963\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, from|strong=\"H3478\"* Beersheba even|strong=\"H5704\"* to|strong=\"H5704\"* Dan|strong=\"H1835\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* should|strong=\"H3068\"* come|strong=\"H5674\"* to|strong=\"H5704\"* keep|strong=\"H6213\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, at|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* not|strong=\"H3808\"* kept|strong=\"H6213\"* it|strong=\"H3588\"* in|strong=\"H3478\"* great|strong=\"H7230\"* numbers|strong=\"H7230\"* in|strong=\"H3478\"* the|strong=\"H3605\"* way|strong=\"H1697\"* it|strong=\"H3588\"* is|strong=\"H3068\"* written|strong=\"H3789\"*." + }, + { + "verseNum": 6, + "text": "So|strong=\"H7725\"* the|strong=\"H3605\"* couriers|strong=\"H7323\"* went|strong=\"H3212\"* with|strong=\"H3068\"* the|strong=\"H3605\"* letters from|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H1121\"* his|strong=\"H3605\"* princes|strong=\"H8269\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* Judah|strong=\"H3063\"*, according|strong=\"H3027\"* to|strong=\"H7725\"* the|strong=\"H3605\"* commandment|strong=\"H4687\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, saying, “You|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, turn|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Abraham, Isaac|strong=\"H3327\"*, and|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H3605\"* he|strong=\"H3068\"* may|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3605\"* remnant|strong=\"H7604\"* of|strong=\"H1121\"* you|strong=\"H3605\"* that|strong=\"H3605\"* have|strong=\"H3068\"* escaped|strong=\"H6413\"* out|strong=\"H3212\"* of|strong=\"H1121\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Assyria." + }, + { + "verseNum": 7, + "text": "Don’t be|strong=\"H1961\"* like|strong=\"H1961\"* your|strong=\"H3068\"* fathers and|strong=\"H3068\"* like|strong=\"H1961\"* your|strong=\"H3068\"* brothers, who|strong=\"H3068\"* trespassed|strong=\"H4603\"* against|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H7200\"* God|strong=\"H3068\"* of|strong=\"H3068\"* their|strong=\"H3068\"* fathers, so|strong=\"H1961\"* that|strong=\"H7200\"* he|strong=\"H3068\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* up|strong=\"H5414\"* to|strong=\"H3068\"* desolation|strong=\"H8047\"*, as|strong=\"H1961\"* you|strong=\"H5414\"* see|strong=\"H7200\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H6258\"* don’t be|strong=\"H3027\"* stiff-necked, as|strong=\"H3068\"* your|strong=\"H3068\"* fathers were|strong=\"H3027\"*, but|strong=\"H6258\"* yield|strong=\"H5414\"* yourselves|strong=\"H3027\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* enter into|strong=\"H7725\"* his|strong=\"H5414\"* sanctuary|strong=\"H4720\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* sanctified|strong=\"H6942\"* forever|strong=\"H5769\"*, and|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, that|strong=\"H3068\"* his|strong=\"H5414\"* fierce|strong=\"H2740\"* anger|strong=\"H2740\"* may|strong=\"H3068\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H4480\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* turn|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, your|strong=\"H3068\"* brothers|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H3068\"* children|strong=\"H1121\"* will|strong=\"H3068\"* find compassion|strong=\"H7356\"* with|strong=\"H3068\"* those|strong=\"H4480\"* who|strong=\"H3068\"* led|strong=\"H6440\"* them|strong=\"H5921\"* captive|strong=\"H7617\"*, and|strong=\"H1121\"* will|strong=\"H3068\"* come|strong=\"H7725\"* again|strong=\"H7725\"* into|strong=\"H7725\"* this|strong=\"H2063\"* land|strong=\"H6440\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* is|strong=\"H3068\"* gracious|strong=\"H2587\"* and|strong=\"H1121\"* merciful|strong=\"H7349\"*, and|strong=\"H1121\"* will|strong=\"H3068\"* not|strong=\"H3808\"* turn|strong=\"H7725\"* away|strong=\"H5493\"* his|strong=\"H3068\"* face|strong=\"H6440\"* from|strong=\"H4480\"* you|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* return|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H6440\"*.”" + }, + { + "verseNum": 10, + "text": "So|strong=\"H1961\"* the|strong=\"H5921\"* couriers|strong=\"H7323\"* passed|strong=\"H5674\"* from|strong=\"H5921\"* city|strong=\"H5892\"* to|strong=\"H5704\"* city|strong=\"H5892\"* through|strong=\"H5674\"* the|strong=\"H5921\"* country of|strong=\"H5892\"* Ephraim and|strong=\"H5892\"* Manasseh|strong=\"H4519\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* Zebulun|strong=\"H2074\"*, but|strong=\"H1961\"* people ridiculed them|strong=\"H5921\"* and|strong=\"H5892\"* mocked|strong=\"H3932\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 11, + "text": "Nevertheless some men of|strong=\"H3389\"* Asher, Manasseh|strong=\"H4519\"*, and|strong=\"H3389\"* Zebulun|strong=\"H2074\"* humbled|strong=\"H3665\"* themselves|strong=\"H3665\"* and|strong=\"H3389\"* came to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 12, + "text": "Also|strong=\"H1571\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* God|strong=\"H3068\"* came|strong=\"H1961\"* on|strong=\"H3027\"* Judah|strong=\"H3063\"* to|strong=\"H3068\"* give|strong=\"H5414\"* them|strong=\"H5414\"* one|strong=\"H1961\"* heart|strong=\"H3820\"*, to|strong=\"H3068\"* do|strong=\"H6213\"* the|strong=\"H5414\"* commandment|strong=\"H4687\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* and|strong=\"H3063\"* of|strong=\"H4428\"* the|strong=\"H5414\"* princes|strong=\"H8269\"* by|strong=\"H3027\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + }, + { + "verseNum": 13, + "text": "Many|strong=\"H7227\"* people|strong=\"H5971\"* assembled|strong=\"H6951\"* at|strong=\"H2320\"* Jerusalem|strong=\"H3389\"* to|strong=\"H6213\"* keep|strong=\"H6213\"* the|strong=\"H6213\"* feast|strong=\"H2282\"* of|strong=\"H6951\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* in|strong=\"H6213\"* the|strong=\"H6213\"* second|strong=\"H8145\"* month|strong=\"H2320\"*, a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H7227\"* assembly|strong=\"H6951\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3605\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* took|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H3605\"* altars|strong=\"H4196\"* that|strong=\"H3605\"* were|strong=\"H3605\"* in|strong=\"H5493\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H6965\"* they|strong=\"H3605\"* took|strong=\"H5493\"* away|strong=\"H5493\"* all|strong=\"H3605\"* the|strong=\"H3605\"* altars|strong=\"H4196\"* for|strong=\"H4196\"* incense|strong=\"H6999\"* and|strong=\"H6965\"* threw|strong=\"H7993\"* them|strong=\"H7993\"* into|strong=\"H7993\"* the|strong=\"H3605\"* brook|strong=\"H5158\"* Kidron|strong=\"H6939\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H3068\"* they|strong=\"H3068\"* killed|strong=\"H7819\"* the|strong=\"H3068\"* Passover|strong=\"H6453\"* on|strong=\"H3068\"* the|strong=\"H3068\"* fourteenth|strong=\"H6240\"* day|strong=\"H2320\"* of|strong=\"H1004\"* the|strong=\"H3068\"* second|strong=\"H8145\"* month|strong=\"H2320\"*. The|strong=\"H3068\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H3068\"* Levites|strong=\"H3881\"* were|strong=\"H3881\"* ashamed|strong=\"H3637\"*, and|strong=\"H3068\"* sanctified|strong=\"H6942\"* themselves|strong=\"H6942\"*, and|strong=\"H3068\"* brought|strong=\"H3548\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* into Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"H5921\"* stood|strong=\"H5975\"* in|strong=\"H5921\"* their|strong=\"H5921\"* place|strong=\"H3027\"* after|strong=\"H5921\"* their|strong=\"H5921\"* order|strong=\"H4941\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* law|strong=\"H8451\"* of|strong=\"H3027\"* Moses|strong=\"H4872\"* the|strong=\"H5921\"* man of|strong=\"H3027\"* God|strong=\"H3027\"*. The|strong=\"H5921\"* priests|strong=\"H3548\"* sprinkled|strong=\"H2236\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* which|strong=\"H3548\"* they|strong=\"H5921\"* received|strong=\"H5921\"* of|strong=\"H3027\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* there|strong=\"H3605\"* were|strong=\"H3881\"* many|strong=\"H7227\"* in|strong=\"H5921\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* who|strong=\"H3605\"* had|strong=\"H3068\"* not|strong=\"H3808\"* sanctified|strong=\"H6942\"* themselves|strong=\"H6942\"*; therefore|strong=\"H5921\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* were|strong=\"H3881\"* in|strong=\"H5921\"* charge|strong=\"H5921\"* of|strong=\"H3068\"* killing|strong=\"H7821\"* the|strong=\"H3605\"* Passovers|strong=\"H6453\"* for|strong=\"H3588\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* was|strong=\"H3068\"* not|strong=\"H3808\"* clean|strong=\"H2889\"*, to|strong=\"H3068\"* sanctify|strong=\"H6942\"* them|strong=\"H5921\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* a|strong=\"H3068\"* multitude|strong=\"H7227\"* of|strong=\"H3068\"* the|strong=\"H5921\"* people|strong=\"H5971\"*, even|strong=\"H3588\"* many|strong=\"H7227\"* of|strong=\"H3068\"* Ephraim, Manasseh|strong=\"H4519\"*, Issachar|strong=\"H3485\"*, and|strong=\"H3068\"* Zebulun|strong=\"H2074\"*, had|strong=\"H3068\"* not|strong=\"H3808\"* cleansed|strong=\"H2891\"* themselves|strong=\"H2896\"*, yet|strong=\"H3588\"* they|strong=\"H3588\"* ate the|strong=\"H5921\"* Passover|strong=\"H6453\"* other than|strong=\"H2896\"* the|strong=\"H5921\"* way|strong=\"H5921\"* it|strong=\"H5921\"* is|strong=\"H3068\"* written|strong=\"H3789\"*. For|strong=\"H3588\"* Hezekiah|strong=\"H2396\"* had|strong=\"H3068\"* prayed|strong=\"H6419\"* for|strong=\"H3588\"* them|strong=\"H5921\"*, saying, “May|strong=\"H3068\"* the|strong=\"H5921\"* good|strong=\"H2896\"* Yahweh|strong=\"H3068\"* pardon|strong=\"H3722\"* everyone" + }, + { + "verseNum": 19, + "text": "who|strong=\"H3605\"* sets his|strong=\"H3605\"* heart|strong=\"H3824\"* to|strong=\"H3068\"* seek|strong=\"H1875\"* God|strong=\"H3068\"*, Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* his|strong=\"H3605\"* fathers, even|strong=\"H3808\"* if they|strong=\"H3068\"* aren’t clean|strong=\"H2893\"* according to|strong=\"H3068\"* the|strong=\"H3605\"* purification|strong=\"H2893\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*.”" + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* Hezekiah|strong=\"H2396\"*, and|strong=\"H3068\"* healed|strong=\"H7495\"* the|strong=\"H8085\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H3068\"* were|strong=\"H3478\"* present|strong=\"H4672\"* at|strong=\"H3478\"* Jerusalem|strong=\"H3389\"* kept|strong=\"H6213\"* the|strong=\"H6213\"* feast|strong=\"H2282\"* of|strong=\"H1121\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* with|strong=\"H3068\"* great|strong=\"H1419\"* gladness|strong=\"H8057\"*. The|strong=\"H6213\"* Levites|strong=\"H3881\"* and|strong=\"H1121\"* the|strong=\"H6213\"* priests|strong=\"H3548\"* praised|strong=\"H1984\"* Yahweh|strong=\"H3068\"* day|strong=\"H3117\"* by|strong=\"H3117\"* day|strong=\"H3117\"*, singing with|strong=\"H3068\"* loud|strong=\"H1419\"* instruments|strong=\"H3627\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "Hezekiah|strong=\"H2396\"* spoke|strong=\"H1696\"* encouragingly|strong=\"H5921\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* who|strong=\"H3605\"* had|strong=\"H3068\"* good|strong=\"H2896\"* understanding|strong=\"H3820\"* in|strong=\"H5921\"* the|strong=\"H3605\"* service of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. So|strong=\"H1696\"* they|strong=\"H3117\"* ate throughout|strong=\"H3605\"* the|strong=\"H3605\"* feast|strong=\"H4150\"* for|strong=\"H5921\"* the|strong=\"H3605\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, offering|strong=\"H8002\"* sacrifices|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* and|strong=\"H3068\"* making|strong=\"H3605\"* confession|strong=\"H3034\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* their|strong=\"H3605\"* fathers." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3605\"* whole|strong=\"H3605\"* assembly|strong=\"H6951\"* took|strong=\"H6951\"* counsel|strong=\"H3289\"* to|strong=\"H6213\"* keep|strong=\"H6213\"* another seven|strong=\"H7651\"* days|strong=\"H3117\"*, and|strong=\"H3117\"* they|strong=\"H3117\"* kept|strong=\"H6213\"* another seven|strong=\"H7651\"* days|strong=\"H3117\"* with|strong=\"H6213\"* gladness|strong=\"H8057\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"H3588\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* gave|strong=\"H7311\"* to|strong=\"H4428\"* the|strong=\"H3588\"* assembly|strong=\"H6951\"* for|strong=\"H3588\"* offerings|strong=\"H3588\"* one|strong=\"H3588\"* thousand bulls|strong=\"H6499\"* and|strong=\"H3063\"* seven|strong=\"H7651\"* thousand sheep|strong=\"H6629\"*; and|strong=\"H3063\"* the|strong=\"H3588\"* princes|strong=\"H8269\"* gave|strong=\"H7311\"* to|strong=\"H4428\"* the|strong=\"H3588\"* assembly|strong=\"H6951\"* a|strong=\"H3068\"* thousand bulls|strong=\"H6499\"* and|strong=\"H3063\"* ten|strong=\"H6235\"* thousand sheep|strong=\"H6629\"*; and|strong=\"H3063\"* a|strong=\"H3068\"* great|strong=\"H7230\"* number|strong=\"H7230\"* of|strong=\"H4428\"* priests|strong=\"H3548\"* sanctified|strong=\"H6942\"* themselves|strong=\"H6942\"*." + }, + { + "verseNum": 25, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H3427\"* Judah|strong=\"H3063\"*, with|strong=\"H3427\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3063\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* who|strong=\"H3605\"* came|strong=\"H3478\"* out|strong=\"H3605\"* of|strong=\"H3427\"* Israel|strong=\"H3478\"*, and|strong=\"H3063\"* the|strong=\"H3605\"* foreigners|strong=\"H1616\"* who|strong=\"H3605\"* came|strong=\"H3478\"* out|strong=\"H3605\"* of|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H3427\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* who|strong=\"H3605\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Judah|strong=\"H3063\"*, rejoiced|strong=\"H8055\"*." + }, + { + "verseNum": 26, + "text": "So|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* great|strong=\"H1419\"* joy|strong=\"H8057\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*; for|strong=\"H3588\"* since|strong=\"H3588\"* the|strong=\"H3588\"* time|strong=\"H3117\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* there|strong=\"H1961\"* was|strong=\"H1961\"* nothing|strong=\"H3808\"* like|strong=\"H1961\"* this|strong=\"H2063\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 27, + "text": "Then|strong=\"H6965\"* the|strong=\"H8085\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* blessed|strong=\"H1288\"* the|strong=\"H8085\"* people|strong=\"H5971\"*. Their|strong=\"H8085\"* voice|strong=\"H6963\"* was|strong=\"H6963\"* heard|strong=\"H8085\"*, and|strong=\"H6965\"* their|strong=\"H8085\"* prayer|strong=\"H8605\"* came|strong=\"H5971\"* up|strong=\"H6965\"* to|strong=\"H8085\"* his|strong=\"H8085\"* holy|strong=\"H6944\"* habitation|strong=\"H4583\"*, even to|strong=\"H8085\"* heaven|strong=\"H8064\"*." + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* when|strong=\"H3615\"* all|strong=\"H3605\"* this|strong=\"H2063\"* was|strong=\"H3478\"* finished|strong=\"H3615\"*, all|strong=\"H3605\"* Israel|strong=\"H3478\"* who|strong=\"H3605\"* were|strong=\"H3478\"* present|strong=\"H4672\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H5704\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* broke|strong=\"H7665\"* the|strong=\"H3605\"* pillars|strong=\"H4676\"* in|strong=\"H3478\"* pieces|strong=\"H7665\"*, cut|strong=\"H1438\"* down|strong=\"H5422\"* the|strong=\"H3605\"* Asherah poles, and|strong=\"H1121\"* broke|strong=\"H7665\"* down|strong=\"H5422\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* and|strong=\"H1121\"* the|strong=\"H3605\"* altars|strong=\"H4196\"* out|strong=\"H3318\"* of|strong=\"H1121\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, also|strong=\"H3478\"* in|strong=\"H3478\"* Ephraim and|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, until|strong=\"H5704\"* they|strong=\"H5704\"* had|strong=\"H3478\"* destroyed|strong=\"H7665\"* them|strong=\"H7725\"* all|strong=\"H3605\"*. Then|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* returned|strong=\"H7725\"*, every|strong=\"H3605\"* man|strong=\"H1121\"* to|strong=\"H5704\"* his|strong=\"H3605\"* possession, into|strong=\"H7725\"* their|strong=\"H3605\"* own cities|strong=\"H5892\"*." + }, + { + "verseNum": 2, + "text": "Hezekiah|strong=\"H2396\"* appointed|strong=\"H5975\"* the|strong=\"H5921\"* divisions|strong=\"H4256\"* of|strong=\"H3068\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* after|strong=\"H5921\"* their|strong=\"H3068\"* divisions|strong=\"H4256\"*, every|strong=\"H5975\"* man|strong=\"H8179\"* according|strong=\"H5921\"* to|strong=\"H3068\"* his|strong=\"H3068\"* service|strong=\"H5656\"*, both|strong=\"H5921\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*, for|strong=\"H5921\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H3068\"* for|strong=\"H5921\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, to|strong=\"H3068\"* minister|strong=\"H8334\"*, to|strong=\"H3068\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* praise|strong=\"H1984\"* in|strong=\"H5921\"* the|strong=\"H5921\"* gates|strong=\"H8179\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s camp|strong=\"H4264\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3068\"* also|strong=\"H3068\"* appointed|strong=\"H4150\"* the|strong=\"H3068\"* king|strong=\"H4428\"*’s portion|strong=\"H4521\"* of|strong=\"H4428\"* his|strong=\"H3068\"* possessions|strong=\"H7399\"* for|strong=\"H3068\"* the|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*: for|strong=\"H3068\"* the|strong=\"H3068\"* morning|strong=\"H1242\"* and|strong=\"H3068\"* evening|strong=\"H6153\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* for|strong=\"H3068\"* the|strong=\"H3068\"* Sabbaths|strong=\"H7676\"*, for|strong=\"H3068\"* the|strong=\"H3068\"* new|strong=\"H2320\"* moons|strong=\"H2320\"*, and|strong=\"H3068\"* for|strong=\"H3068\"* the|strong=\"H3068\"* set|strong=\"H4150\"* feasts|strong=\"H4150\"*, as|strong=\"H3068\"* it|strong=\"H1242\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"*." + }, + { + "verseNum": 4, + "text": "Moreover he|strong=\"H3068\"* commanded the|strong=\"H5414\"* people|strong=\"H5971\"* who|strong=\"H5971\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3068\"* give|strong=\"H5414\"* the|strong=\"H5414\"* portion|strong=\"H4521\"* of|strong=\"H3068\"* the|strong=\"H5414\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* might|strong=\"H3068\"* give|strong=\"H5414\"* themselves|strong=\"H2388\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"*." + }, + { + "verseNum": 5, + "text": "As|strong=\"H1697\"* soon as|strong=\"H1697\"* the|strong=\"H3605\"* commandment|strong=\"H1697\"* went|strong=\"H3478\"* out|strong=\"H6555\"*, the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* gave|strong=\"H7235\"* in|strong=\"H3478\"* abundance|strong=\"H7230\"* the|strong=\"H3605\"* first|strong=\"H1121\"* fruits|strong=\"H7225\"* of|strong=\"H1121\"* grain|strong=\"H1715\"*, new|strong=\"H8492\"* wine|strong=\"H8492\"*, oil|strong=\"H3323\"*, honey|strong=\"H1706\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* increase|strong=\"H8393\"* of|strong=\"H1121\"* the|strong=\"H3605\"* field|strong=\"H7704\"*; and|strong=\"H1121\"* they|strong=\"H1697\"* brought|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3605\"* tithe|strong=\"H4643\"* of|strong=\"H1121\"* all|strong=\"H3605\"* things|strong=\"H1697\"* abundantly|strong=\"H7230\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* Judah|strong=\"H3063\"*, who|strong=\"H3068\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5414\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, also|strong=\"H1571\"* brought|strong=\"H5414\"* in|strong=\"H3427\"* the|strong=\"H5414\"* tithe|strong=\"H4643\"* of|strong=\"H1121\"* cattle|strong=\"H1241\"* and|strong=\"H1121\"* sheep|strong=\"H6629\"*, and|strong=\"H1121\"* the|strong=\"H5414\"* tithe|strong=\"H4643\"* of|strong=\"H1121\"* dedicated|strong=\"H6942\"* things|strong=\"H6944\"* which|strong=\"H3068\"* were|strong=\"H3478\"* consecrated|strong=\"H6942\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H1121\"* laid|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H3427\"* heaps|strong=\"H6194\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H2320\"* the|strong=\"H3615\"* third|strong=\"H7992\"* month|strong=\"H2320\"*, they|strong=\"H2320\"* began|strong=\"H2490\"* to|strong=\"H2490\"* lay|strong=\"H3245\"* the|strong=\"H3615\"* foundation|strong=\"H3245\"* of|strong=\"H3615\"* the|strong=\"H3615\"* heaps|strong=\"H6194\"*, and|strong=\"H2320\"* finished|strong=\"H3615\"* them|strong=\"H3615\"* in|strong=\"H2320\"* the|strong=\"H3615\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H7200\"* Hezekiah|strong=\"H2396\"* and|strong=\"H3478\"* the|strong=\"H7200\"* princes|strong=\"H8269\"* came|strong=\"H3478\"* and|strong=\"H3478\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* heaps|strong=\"H6194\"*, they|strong=\"H3068\"* blessed|strong=\"H1288\"* Yahweh|strong=\"H3068\"* and|strong=\"H3478\"* his|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H3548\"* Hezekiah|strong=\"H2396\"* questioned|strong=\"H1875\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* and|strong=\"H3548\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* about|strong=\"H5921\"* the|strong=\"H5921\"* heaps|strong=\"H6194\"*." + }, + { + "verseNum": 10, + "text": "Azariah|strong=\"H5838\"* the|strong=\"H3588\"* chief|strong=\"H7218\"* priest|strong=\"H3548\"*, of|strong=\"H1004\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Zadok|strong=\"H6659\"*, answered him|strong=\"H1288\"* and|strong=\"H3068\"* said, “Since|strong=\"H3588\"* people|strong=\"H5971\"* began|strong=\"H2490\"* to|strong=\"H5704\"* bring the|strong=\"H3588\"* offerings|strong=\"H8641\"* into|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, we|strong=\"H3068\"* have|strong=\"H3068\"* eaten|strong=\"H2490\"* and|strong=\"H3068\"* had|strong=\"H3068\"* enough|strong=\"H7646\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* plenty|strong=\"H7646\"* left|strong=\"H3498\"* over|strong=\"H3498\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* blessed|strong=\"H1288\"* his|strong=\"H3068\"* people|strong=\"H5971\"*; and|strong=\"H3068\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* left|strong=\"H3498\"* is|strong=\"H3068\"* this|strong=\"H2088\"* great|strong=\"H7230\"* store|strong=\"H1995\"*.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H3068\"* Hezekiah|strong=\"H2396\"* commanded them|strong=\"H3068\"* to|strong=\"H3068\"* prepare|strong=\"H3559\"* rooms|strong=\"H3957\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* prepared|strong=\"H3559\"* them|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H5921\"* brought in|strong=\"H5921\"* the|strong=\"H5921\"* offerings|strong=\"H8641\"*, the|strong=\"H5921\"* tithes|strong=\"H4643\"*, and|strong=\"H6944\"* the|strong=\"H5921\"* dedicated|strong=\"H6944\"* things|strong=\"H6944\"* faithfully. Conaniah|strong=\"H3562\"* the|strong=\"H5921\"* Levite|strong=\"H3881\"* was|strong=\"H3881\"* ruler|strong=\"H5057\"* over|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H6944\"* Shimei|strong=\"H8096\"* his|strong=\"H5921\"* brother was|strong=\"H3881\"* second|strong=\"H4932\"*." + }, + { + "verseNum": 13, + "text": "Jehiel|strong=\"H3171\"*, Azaziah|strong=\"H5812\"*, Nahath|strong=\"H5184\"*, Asahel|strong=\"H6214\"*, Jerimoth|strong=\"H3406\"*, Jozabad|strong=\"H3107\"*, Eliel, Ismachiah|strong=\"H3253\"*, Mahath|strong=\"H4287\"*, and|strong=\"H4428\"* Benaiah|strong=\"H1141\"* were|strong=\"H3027\"* overseers|strong=\"H6496\"* under|strong=\"H3027\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Conaniah|strong=\"H3562\"* and|strong=\"H4428\"* Shimei|strong=\"H8096\"* his|strong=\"H3027\"* brother, by|strong=\"H3027\"* the|strong=\"H3027\"* appointment|strong=\"H4662\"* of|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* the|strong=\"H3027\"* king|strong=\"H4428\"* and|strong=\"H4428\"* Azariah|strong=\"H5838\"* the|strong=\"H3027\"* ruler|strong=\"H5057\"* of|strong=\"H4428\"* God|strong=\"H3027\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 14, + "text": "Kore|strong=\"H6981\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Imnah|strong=\"H3232\"* the|strong=\"H5921\"* Levite|strong=\"H3881\"*, the|strong=\"H5921\"* gatekeeper|strong=\"H7778\"* at|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H4217\"* gate, was|strong=\"H3068\"* over|strong=\"H5921\"* the|strong=\"H5921\"* free will|strong=\"H3068\"* offerings|strong=\"H5071\"* of|strong=\"H1121\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* distribute|strong=\"H5414\"* Yahweh|strong=\"H3068\"*’s offerings|strong=\"H5071\"* and|strong=\"H1121\"* the|strong=\"H5921\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*." + }, + { + "verseNum": 15, + "text": "Under|strong=\"H5921\"* him|strong=\"H5414\"* were|strong=\"H3027\"* Eden|strong=\"H5731\"*, Miniamin|strong=\"H4509\"*, Jeshua|strong=\"H3442\"*, Shemaiah|strong=\"H8098\"*, Amariah, and|strong=\"H1419\"* Shecaniah|strong=\"H7935\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* of|strong=\"H3027\"* the|strong=\"H5921\"* priests|strong=\"H3548\"*, in|strong=\"H5921\"* their|strong=\"H5414\"* office of|strong=\"H3027\"* trust, to|strong=\"H5921\"* give|strong=\"H5414\"* to|strong=\"H5921\"* their|strong=\"H5414\"* brothers by|strong=\"H3027\"* divisions|strong=\"H4256\"*, to|strong=\"H5921\"* the|strong=\"H5921\"* great|strong=\"H1419\"* as|strong=\"H5892\"* well as|strong=\"H5892\"* to|strong=\"H5921\"* the|strong=\"H5921\"* small|strong=\"H6996\"*;" + }, + { + "verseNum": 16, + "text": "in|strong=\"H8141\"* addition to|strong=\"H3068\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* listed|strong=\"H3187\"* by|strong=\"H8141\"* genealogy|strong=\"H3187\"* of|strong=\"H1121\"* males|strong=\"H2145\"*, from|strong=\"H1121\"* three|strong=\"H7969\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, even|strong=\"H3068\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* entered into|strong=\"H1697\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, as|strong=\"H1697\"* the|strong=\"H3605\"* duty|strong=\"H1697\"* of|strong=\"H1121\"* every|strong=\"H3605\"* day|strong=\"H3117\"* required|strong=\"H3117\"*, for|strong=\"H3068\"* their|strong=\"H3605\"* service|strong=\"H5656\"* in|strong=\"H8141\"* their|strong=\"H3605\"* offices|strong=\"H4931\"* according to|strong=\"H3068\"* their|strong=\"H3605\"* divisions|strong=\"H4256\"*;" + }, + { + "verseNum": 17, + "text": "and|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H3548\"* were|strong=\"H1121\"* listed|strong=\"H1004\"* by|strong=\"H8141\"* genealogy|strong=\"H3188\"* of|strong=\"H1121\"* the|strong=\"H3548\"* priests|strong=\"H3548\"* by|strong=\"H8141\"* their|strong=\"H3548\"* fathers’ houses|strong=\"H1004\"*, and|strong=\"H1121\"* the|strong=\"H3548\"* Levites|strong=\"H3881\"* from|strong=\"H1121\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, in|strong=\"H8141\"* their|strong=\"H3548\"* offices|strong=\"H4931\"* by|strong=\"H8141\"* their|strong=\"H3548\"* divisions|strong=\"H4256\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H1121\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* listed by|strong=\"H3605\"* genealogy|strong=\"H3188\"* of|strong=\"H1121\"* all|strong=\"H3605\"* their|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, their|strong=\"H3605\"* wives, their|strong=\"H3605\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* their|strong=\"H3605\"* daughters|strong=\"H1323\"*, through|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H6951\"*; for|strong=\"H3588\"* in|strong=\"H1121\"* their|strong=\"H3605\"* office of|strong=\"H1121\"* trust they|strong=\"H3588\"* sanctified|strong=\"H6942\"* themselves|strong=\"H6942\"* in|strong=\"H1121\"* holiness|strong=\"H6944\"*." + }, + { + "verseNum": 19, + "text": "Also|strong=\"H8034\"* for|strong=\"H8034\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H3605\"* priests|strong=\"H3548\"*, who|strong=\"H3605\"* were|strong=\"H1121\"* in|strong=\"H5892\"* the|strong=\"H3605\"* fields|strong=\"H7704\"* of|strong=\"H1121\"* the|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* of|strong=\"H1121\"* their|strong=\"H3605\"* cities|strong=\"H5892\"*, in|strong=\"H5892\"* every|strong=\"H3605\"* city|strong=\"H5892\"*, there|strong=\"H3605\"* were|strong=\"H1121\"* men|strong=\"H1121\"* who|strong=\"H3605\"* were|strong=\"H1121\"* mentioned by|strong=\"H3187\"* name|strong=\"H8034\"* to|strong=\"H5414\"* give|strong=\"H5414\"* portions|strong=\"H4490\"* to|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* males|strong=\"H2145\"* among|strong=\"H8034\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H1121\"* to|strong=\"H5414\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* listed|strong=\"H3187\"* by|strong=\"H3187\"* genealogy|strong=\"H3187\"* among|strong=\"H8034\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 20, + "text": "Hezekiah|strong=\"H2396\"* did|strong=\"H6213\"* so|strong=\"H6213\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"*; and|strong=\"H3063\"* he|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* good|strong=\"H2896\"*, right|strong=\"H3477\"*, and|strong=\"H3063\"* faithful|strong=\"H2896\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* his|strong=\"H3605\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 21, + "text": "In|strong=\"H6213\"* every|strong=\"H3605\"* work|strong=\"H4639\"* that|strong=\"H3605\"* he|strong=\"H6213\"* began|strong=\"H2490\"* in|strong=\"H6213\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1004\"* God’s house|strong=\"H1004\"*, in|strong=\"H6213\"* the|strong=\"H3605\"* law|strong=\"H8451\"*, and|strong=\"H1004\"* in|strong=\"H6213\"* the|strong=\"H3605\"* commandments|strong=\"H4687\"*, to|strong=\"H6213\"* seek|strong=\"H1875\"* his|strong=\"H3605\"* God, he|strong=\"H6213\"* did|strong=\"H6213\"* it|strong=\"H6213\"* with|strong=\"H1004\"* all|strong=\"H3605\"* his|strong=\"H3605\"* heart|strong=\"H3824\"* and|strong=\"H1004\"* prospered|strong=\"H6743\"*." + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H5921\"* these|strong=\"H4428\"* things|strong=\"H1697\"* and|strong=\"H3063\"* this|strong=\"H1697\"* faithfulness, Sennacherib|strong=\"H5576\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria came|strong=\"H1697\"*, entered into|strong=\"H5921\"* Judah|strong=\"H3063\"*, encamped|strong=\"H2583\"* against|strong=\"H5921\"* the|strong=\"H5921\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"*, and|strong=\"H3063\"* intended to|strong=\"H5921\"* win|strong=\"H1234\"* them|strong=\"H5921\"* for|strong=\"H5921\"* himself." + }, + { + "verseNum": 2, + "text": "When|strong=\"H3588\"* Hezekiah|strong=\"H2396\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Sennacherib|strong=\"H5576\"* had|strong=\"H3588\"* come, and|strong=\"H3389\"* that|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H3389\"* planning to|strong=\"H5921\"* fight|strong=\"H4421\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 3, + "text": "he|strong=\"H5892\"* took|strong=\"H3289\"* counsel|strong=\"H3289\"* with|strong=\"H5973\"* his|strong=\"H5973\"* princes|strong=\"H8269\"* and|strong=\"H5892\"* his|strong=\"H5973\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* to|strong=\"H4325\"* stop|strong=\"H5640\"* the|strong=\"H2351\"* waters|strong=\"H4325\"* of|strong=\"H8269\"* the|strong=\"H2351\"* springs which|strong=\"H5869\"* were|strong=\"H4325\"* outside|strong=\"H2351\"* of|strong=\"H8269\"* the|strong=\"H2351\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* they|strong=\"H3289\"* helped|strong=\"H5826\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H4428\"* many|strong=\"H7227\"* people|strong=\"H5971\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* and|strong=\"H4428\"* they|strong=\"H4100\"* stopped|strong=\"H5640\"* all|strong=\"H3605\"* the|strong=\"H3605\"* springs|strong=\"H4599\"* and|strong=\"H4428\"* the|strong=\"H3605\"* brook|strong=\"H5158\"* that|strong=\"H5971\"* flowed|strong=\"H7857\"* through|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land, saying, “Why|strong=\"H4100\"* should|strong=\"H4100\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Assyria come|strong=\"H4672\"*, and|strong=\"H4428\"* find|strong=\"H4672\"* abundant|strong=\"H7227\"* water|strong=\"H4325\"*?”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H6213\"* took|strong=\"H2388\"* courage|strong=\"H2388\"*, built|strong=\"H1129\"* up|strong=\"H5927\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wall|strong=\"H2346\"* that|strong=\"H3605\"* was|strong=\"H1732\"* broken|strong=\"H6555\"* down|strong=\"H6555\"*, and|strong=\"H5892\"* raised|strong=\"H5927\"* it|strong=\"H5921\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H3605\"* towers|strong=\"H4026\"*, with|strong=\"H6213\"* the|strong=\"H3605\"* other|strong=\"H3605\"* wall|strong=\"H2346\"* outside|strong=\"H2351\"*, and|strong=\"H5892\"* strengthened|strong=\"H2388\"* Millo|strong=\"H4407\"* in|strong=\"H5921\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, and|strong=\"H5892\"* made|strong=\"H6213\"* weapons|strong=\"H7973\"* and|strong=\"H5892\"* shields|strong=\"H4043\"* in|strong=\"H5921\"* abundance|strong=\"H7230\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H5414\"* set|strong=\"H5414\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* war|strong=\"H4421\"* over|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"*, gathered|strong=\"H6908\"* them|strong=\"H5414\"* together|strong=\"H6908\"* to|strong=\"H1696\"* him|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wide place|strong=\"H5414\"* at|strong=\"H5921\"* the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H8269\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, and|strong=\"H5971\"* spoke|strong=\"H1696\"* encouragingly|strong=\"H5921\"* to|strong=\"H1696\"* them|strong=\"H5414\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 7, + "text": "“Be|strong=\"H4428\"* strong|strong=\"H2388\"* and|strong=\"H4428\"* courageous|strong=\"H2388\"*. Don’t be|strong=\"H4428\"* afraid|strong=\"H3372\"* or|strong=\"H4428\"* dismayed|strong=\"H2865\"* because|strong=\"H3588\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, nor|strong=\"H3372\"* for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* multitude|strong=\"H1995\"* who|strong=\"H3605\"* is|strong=\"H3605\"* with|strong=\"H5973\"* him|strong=\"H6440\"*; for|strong=\"H3588\"* there|strong=\"H3605\"* is|strong=\"H3605\"* a|strong=\"H3068\"* greater|strong=\"H7227\"* one|strong=\"H3605\"* with|strong=\"H5973\"* us|strong=\"H6440\"* than|strong=\"H3588\"* with|strong=\"H5973\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "An|strong=\"H3068\"* arm|strong=\"H2220\"* of|strong=\"H4428\"* flesh|strong=\"H1320\"* is|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H5921\"*, but|strong=\"H5971\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H5973\"* us|strong=\"H5921\"* to|strong=\"H3068\"* help|strong=\"H5826\"* us|strong=\"H5921\"* and|strong=\"H3063\"* to|strong=\"H3068\"* fight|strong=\"H3898\"* our|strong=\"H3068\"* battles|strong=\"H4421\"*.” The|strong=\"H5921\"* people|strong=\"H5971\"* rested|strong=\"H5564\"* themselves|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 9, + "text": "After|strong=\"H5921\"* this|strong=\"H2088\"*, Sennacherib|strong=\"H5576\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria sent|strong=\"H7971\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* to|strong=\"H7971\"* Jerusalem|strong=\"H3389\"*, (now|strong=\"H2088\"* he|strong=\"H1931\"* was|strong=\"H1931\"* attacking Lachish|strong=\"H3923\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* his|strong=\"H3605\"* forces|strong=\"H4475\"* were|strong=\"H3063\"* with|strong=\"H5973\"* him|strong=\"H5921\"*), to|strong=\"H7971\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* to|strong=\"H7971\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* who|strong=\"H3605\"* were|strong=\"H3063\"* at|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, saying," + }, + { + "verseNum": 10, + "text": "Sennacherib|strong=\"H5576\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria says|strong=\"H3541\"*, “In|strong=\"H3427\"* whom do|strong=\"H4100\"* you|strong=\"H5921\"* trust, that|strong=\"H4428\"* you|strong=\"H5921\"* remain|strong=\"H3427\"* under|strong=\"H5921\"* siege|strong=\"H4692\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*?" + }, + { + "verseNum": 11, + "text": "Doesn’t Hezekiah|strong=\"H2396\"* persuade|strong=\"H5496\"* you|strong=\"H5414\"* to|strong=\"H4191\"* give|strong=\"H5414\"* you|strong=\"H5414\"* over|strong=\"H4428\"* to|strong=\"H4191\"* die|strong=\"H4191\"* by|strong=\"H3068\"* famine|strong=\"H7458\"* and|strong=\"H3068\"* by|strong=\"H3068\"* thirst|strong=\"H6772\"*, saying, ‘Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5337\"* us|strong=\"H5414\"* out|strong=\"H5414\"* of|strong=\"H4428\"* the|strong=\"H5414\"* hand|strong=\"H3709\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria’?" + }, + { + "verseNum": 12, + "text": "Hasn’t the|strong=\"H6440\"* same|strong=\"H1931\"* Hezekiah|strong=\"H2396\"* taken|strong=\"H5493\"* away|strong=\"H5493\"* his|strong=\"H6440\"* high|strong=\"H1116\"* places|strong=\"H1116\"* and|strong=\"H3063\"* his|strong=\"H6440\"* altars|strong=\"H4196\"*, and|strong=\"H3063\"* commanded Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*, saying, ‘You|strong=\"H6440\"* shall|strong=\"H3063\"* worship|strong=\"H7812\"* before|strong=\"H6440\"* one|strong=\"H3808\"* altar|strong=\"H4196\"*, and|strong=\"H3063\"* you|strong=\"H6440\"* shall|strong=\"H3063\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"* on|strong=\"H5921\"* it|strong=\"H1931\"*’?" + }, + { + "verseNum": 13, + "text": "Don’t you|strong=\"H3605\"* know|strong=\"H3045\"* what|strong=\"H4100\"* I|strong=\"H3045\"* and|strong=\"H3027\"* my|strong=\"H3605\"* fathers have|strong=\"H5971\"* done|strong=\"H6213\"* to|strong=\"H3201\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H3027\"* the|strong=\"H3605\"* lands? Were|strong=\"H5971\"* the|strong=\"H3605\"* gods of|strong=\"H3027\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* of|strong=\"H3027\"* those|strong=\"H3605\"* lands in|strong=\"H6213\"* any|strong=\"H3605\"* way|strong=\"H3201\"* able|strong=\"H3201\"* to|strong=\"H3201\"* deliver|strong=\"H5337\"* their|strong=\"H3605\"* land out|strong=\"H6213\"* of|strong=\"H3027\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*?" + }, + { + "verseNum": 14, + "text": "Who|strong=\"H4310\"* was|strong=\"H3027\"* there|strong=\"H3605\"* among|strong=\"H4310\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gods of|strong=\"H3027\"* those|strong=\"H3605\"* nations|strong=\"H1471\"* which|strong=\"H4310\"* my|strong=\"H3605\"* fathers utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* that|strong=\"H3588\"* could|strong=\"H3201\"* deliver|strong=\"H5337\"* his|strong=\"H3605\"* people|strong=\"H5971\"* out|strong=\"H5337\"* of|strong=\"H3027\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*, that|strong=\"H3588\"* your|strong=\"H3605\"* God|strong=\"H4310\"* should|strong=\"H3588\"* be|strong=\"H3027\"* able|strong=\"H3201\"* to|strong=\"H3201\"* deliver|strong=\"H5337\"* you|strong=\"H3588\"* out|strong=\"H5337\"* of|strong=\"H3027\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*?" + }, + { + "verseNum": 15, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* don’t let|strong=\"H6258\"* Hezekiah|strong=\"H2396\"* deceive|strong=\"H5377\"* you|strong=\"H3588\"* nor|strong=\"H3808\"* persuade|strong=\"H5496\"* you|strong=\"H3588\"* in|strong=\"H3027\"* this|strong=\"H2063\"* way|strong=\"H2063\"*. Don’t believe him|strong=\"H3027\"*, for|strong=\"H3588\"* no|strong=\"H3808\"* god|strong=\"H3808\"* of|strong=\"H3027\"* any|strong=\"H3605\"* nation|strong=\"H1471\"* or|strong=\"H3808\"* kingdom|strong=\"H4467\"* was|strong=\"H4467\"* able|strong=\"H3201\"* to|strong=\"H3201\"* deliver|strong=\"H5337\"* his|strong=\"H3605\"* people|strong=\"H5971\"* out|strong=\"H5337\"* of|strong=\"H3027\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* out|strong=\"H5337\"* of|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* my|strong=\"H3605\"* fathers. How|strong=\"H3588\"* much|strong=\"H3027\"* less|strong=\"H3588\"* will|strong=\"H1471\"* your|strong=\"H3605\"* God|strong=\"H3808\"* deliver|strong=\"H5337\"* you|strong=\"H3588\"* out|strong=\"H5337\"* of|strong=\"H3027\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*?”" + }, + { + "verseNum": 16, + "text": "His|strong=\"H3068\"* servants|strong=\"H5650\"* spoke|strong=\"H1696\"* yet|strong=\"H5750\"* more|strong=\"H5750\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* and|strong=\"H3068\"* against|strong=\"H5921\"* his|strong=\"H3068\"* servant|strong=\"H5650\"* Hezekiah|strong=\"H2396\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H3651\"* also|strong=\"H3068\"* wrote|strong=\"H3789\"* letters|strong=\"H5612\"* insulting Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* speaking against|strong=\"H5921\"* him|strong=\"H5921\"*, saying, “As|strong=\"H3651\"* the|strong=\"H5921\"* gods of|strong=\"H3068\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* of|strong=\"H3068\"* the|strong=\"H5921\"* lands, which|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* delivered|strong=\"H5337\"* their|strong=\"H3068\"* people|strong=\"H5971\"* out|strong=\"H5921\"* of|strong=\"H3068\"* my|strong=\"H3068\"* hand|strong=\"H3027\"*, so|strong=\"H3651\"* shall|strong=\"H3068\"* the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Hezekiah|strong=\"H2396\"* not|strong=\"H3808\"* deliver|strong=\"H5337\"* his|strong=\"H3068\"* people|strong=\"H5971\"* out|strong=\"H5921\"* of|strong=\"H3068\"* my|strong=\"H3068\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 18, + "text": "They|strong=\"H5921\"* called|strong=\"H7121\"* out|strong=\"H5921\"* with|strong=\"H5921\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"* in|strong=\"H5921\"* the|strong=\"H5921\"* Jews’ language|strong=\"H3066\"* to|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"* of|strong=\"H5892\"* Jerusalem|strong=\"H3389\"* who|strong=\"H5971\"* were|strong=\"H5971\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*, to|strong=\"H5921\"* frighten|strong=\"H3372\"* them|strong=\"H5921\"* and|strong=\"H1419\"* to|strong=\"H5921\"* trouble them|strong=\"H5921\"*, that|strong=\"H5971\"* they|strong=\"H5921\"* might|strong=\"H4616\"* take|strong=\"H3920\"* the|strong=\"H5921\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"H5921\"* spoke|strong=\"H1696\"* of|strong=\"H3027\"* the|strong=\"H5921\"* God|strong=\"H3027\"* of|strong=\"H3027\"* Jerusalem|strong=\"H3389\"* as|strong=\"H3389\"* of|strong=\"H3027\"* the|strong=\"H5921\"* gods of|strong=\"H3027\"* the|strong=\"H5921\"* peoples|strong=\"H5971\"* of|strong=\"H3027\"* the|strong=\"H5921\"* earth, which|strong=\"H5971\"* are|strong=\"H5971\"* the|strong=\"H5921\"* work|strong=\"H4639\"* of|strong=\"H3027\"* men|strong=\"H5971\"*’s hands|strong=\"H3027\"*." + }, + { + "verseNum": 20, + "text": "Hezekiah|strong=\"H2396\"* the|strong=\"H5921\"* king|strong=\"H4428\"* and|strong=\"H1121\"* Isaiah|strong=\"H3470\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz, prayed|strong=\"H6419\"* because|strong=\"H5921\"* of|strong=\"H1121\"* this|strong=\"H2063\"*, and|strong=\"H1121\"* cried|strong=\"H2199\"* to|strong=\"H5921\"* heaven|strong=\"H8064\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* an|strong=\"H7971\"* angel|strong=\"H4397\"*, who|strong=\"H3605\"* cut|strong=\"H3582\"* off|strong=\"H3582\"* all|strong=\"H3605\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H4428\"* valor|strong=\"H2428\"*, the|strong=\"H3605\"* leaders|strong=\"H8269\"*, and|strong=\"H3068\"* captains|strong=\"H8269\"* in|strong=\"H3068\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria. So|strong=\"H7971\"* he|strong=\"H8033\"* returned|strong=\"H7725\"* with|strong=\"H1004\"* shame|strong=\"H1322\"* of|strong=\"H4428\"* face|strong=\"H6440\"* to|strong=\"H7725\"* his|strong=\"H3605\"* own|strong=\"H4578\"* land|strong=\"H6440\"*. When|strong=\"H7725\"* he|strong=\"H8033\"* had|strong=\"H3068\"* come|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H4428\"* his|strong=\"H3605\"* god|strong=\"H3068\"*, those|strong=\"H3605\"* who|strong=\"H3605\"* came|strong=\"H3068\"* out|strong=\"H7971\"* of|strong=\"H4428\"* his|strong=\"H3605\"* own|strong=\"H4578\"* body|strong=\"H4578\"*+ 32:21 i.e., his own sons* killed|strong=\"H2719\"* him|strong=\"H6440\"* there|strong=\"H8033\"* with|strong=\"H1004\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 22, + "text": "Thus Yahweh|strong=\"H3068\"* saved|strong=\"H3467\"* Hezekiah|strong=\"H2396\"* and|strong=\"H3068\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"* from|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Sennacherib|strong=\"H5576\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria and|strong=\"H3068\"* from|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* all|strong=\"H3605\"* others, and|strong=\"H3068\"* guided|strong=\"H5095\"* them|strong=\"H3027\"* on|strong=\"H3427\"* every|strong=\"H3605\"* side|strong=\"H5439\"*." + }, + { + "verseNum": 23, + "text": "Many|strong=\"H7227\"* brought|strong=\"H5375\"* gifts|strong=\"H4503\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* precious|strong=\"H4030\"* things|strong=\"H3605\"* to|strong=\"H3068\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, so|strong=\"H3651\"* that|strong=\"H3605\"* he|strong=\"H3651\"* was|strong=\"H3068\"* exalted|strong=\"H5375\"* in|strong=\"H3068\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H4428\"* all|strong=\"H3605\"* nations|strong=\"H1471\"* from|strong=\"H1471\"* then|strong=\"H3651\"* on|strong=\"H3068\"*." + }, + { + "verseNum": 24, + "text": "In|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"* Hezekiah|strong=\"H2396\"* was|strong=\"H3068\"* terminally ill|strong=\"H2470\"*, and|strong=\"H3068\"* he|strong=\"H3117\"* prayed|strong=\"H6419\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* he|strong=\"H3117\"* spoke to|strong=\"H5704\"* him|strong=\"H5414\"*, and|strong=\"H3068\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* a|strong=\"H3068\"* sign|strong=\"H4159\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"H3588\"* Hezekiah|strong=\"H2396\"* didn’t reciprocate appropriate to|strong=\"H7725\"* the|strong=\"H5921\"* benefit|strong=\"H1576\"* done|strong=\"H1961\"* for|strong=\"H3588\"* him|strong=\"H5921\"*, because|strong=\"H3588\"* his|strong=\"H7725\"* heart|strong=\"H3820\"* was|strong=\"H1961\"* lifted|strong=\"H1361\"* up|strong=\"H1361\"*. Therefore|strong=\"H5921\"* there|strong=\"H1961\"* was|strong=\"H1961\"* wrath|strong=\"H7110\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, Judah|strong=\"H3063\"*, and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 26, + "text": "However, Hezekiah|strong=\"H2396\"* humbled|strong=\"H3665\"* himself|strong=\"H1931\"* for|strong=\"H5921\"* the|strong=\"H5921\"* pride|strong=\"H1363\"* of|strong=\"H3068\"* his|strong=\"H3068\"* heart|strong=\"H3820\"*, both|strong=\"H5921\"* he|strong=\"H1931\"* and|strong=\"H3068\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, so|strong=\"H3808\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"*’s wrath|strong=\"H7110\"* didn’t come on|strong=\"H5921\"* them|strong=\"H5921\"* in|strong=\"H3427\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H3068\"* Hezekiah|strong=\"H2396\"*." + }, + { + "verseNum": 27, + "text": "Hezekiah|strong=\"H2396\"* had|strong=\"H1961\"* exceedingly|strong=\"H3966\"* great|strong=\"H3966\"* riches|strong=\"H6239\"* and|strong=\"H3701\"* honor|strong=\"H3519\"*. He|strong=\"H6213\"* provided|strong=\"H6213\"* himself|strong=\"H6213\"* with|strong=\"H6213\"* treasuries for|strong=\"H6213\"* silver|strong=\"H3701\"*, for|strong=\"H6213\"* gold|strong=\"H2091\"*, for|strong=\"H6213\"* precious|strong=\"H3368\"* stones, for|strong=\"H6213\"* spices|strong=\"H1314\"*, for|strong=\"H6213\"* shields|strong=\"H4043\"*, and|strong=\"H3701\"* for|strong=\"H6213\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H3627\"* valuable|strong=\"H3368\"* vessels|strong=\"H3627\"*;" + }, + { + "verseNum": 28, + "text": "also storehouses|strong=\"H4543\"* for|strong=\"H3605\"* the|strong=\"H3605\"* increase|strong=\"H8393\"* of|strong=\"H3605\"* grain|strong=\"H1715\"*, new|strong=\"H8492\"* wine|strong=\"H8492\"*, and|strong=\"H1715\"* oil|strong=\"H3323\"*; and|strong=\"H1715\"* stalls for|strong=\"H3605\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H3605\"* animals, and|strong=\"H1715\"* flocks|strong=\"H5739\"* in|strong=\"H3605\"* folds." + }, + { + "verseNum": 29, + "text": "Moreover|strong=\"H3588\"* he|strong=\"H3588\"* provided|strong=\"H5414\"* for|strong=\"H3588\"* himself|strong=\"H6213\"* cities|strong=\"H5892\"*, and|strong=\"H5892\"* possessions|strong=\"H7399\"* of|strong=\"H5892\"* flocks|strong=\"H6629\"* and|strong=\"H5892\"* herds|strong=\"H1241\"* in|strong=\"H6213\"* abundance|strong=\"H7230\"*; for|strong=\"H3588\"* God|strong=\"H5414\"* had|strong=\"H3588\"* given|strong=\"H5414\"* him|strong=\"H5414\"* abundant|strong=\"H7227\"* possessions|strong=\"H7399\"*." + }, + { + "verseNum": 30, + "text": "This|strong=\"H1931\"* same|strong=\"H1931\"* Hezekiah|strong=\"H2396\"* also|strong=\"H1732\"* stopped|strong=\"H5640\"* the|strong=\"H3605\"* upper|strong=\"H5945\"* spring|strong=\"H4161\"* of|strong=\"H5892\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H5892\"* Gihon|strong=\"H1521\"*, and|strong=\"H5892\"* brought|strong=\"H4161\"* them|strong=\"H5640\"* straight|strong=\"H3474\"* down|strong=\"H4295\"* on|strong=\"H5892\"* the|strong=\"H3605\"* west|strong=\"H4628\"* side|strong=\"H4628\"* of|strong=\"H5892\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*. Hezekiah|strong=\"H2396\"* prospered|strong=\"H6743\"* in|strong=\"H5892\"* all|strong=\"H3605\"* his|strong=\"H3605\"* works|strong=\"H4639\"*." + }, + { + "verseNum": 31, + "text": "However, concerning|strong=\"H5921\"* the|strong=\"H3605\"* ambassadors|strong=\"H3887\"* of|strong=\"H8269\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Babylon, who|strong=\"H3605\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* him|strong=\"H5921\"* to|strong=\"H7971\"* inquire|strong=\"H1875\"* of|strong=\"H8269\"* the|strong=\"H3605\"* wonder|strong=\"H4159\"* that|strong=\"H3045\"* was|strong=\"H1961\"* done|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land, God|strong=\"H7971\"* left|strong=\"H5800\"* him|strong=\"H5921\"* to|strong=\"H7971\"* test|strong=\"H5254\"* him|strong=\"H5921\"*, that|strong=\"H3045\"* he|strong=\"H3651\"* might know|strong=\"H3045\"* all|strong=\"H3605\"* that|strong=\"H3045\"* was|strong=\"H1961\"* in|strong=\"H5921\"* his|strong=\"H3605\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 32, + "text": "Now|strong=\"H2005\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H1121\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H1121\"* Hezekiah|strong=\"H2396\"* and|strong=\"H1121\"* his|strong=\"H5921\"* good|strong=\"H2005\"* deeds|strong=\"H1697\"*, behold|strong=\"H2005\"*, they|strong=\"H5921\"* are|strong=\"H1121\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* vision|strong=\"H2377\"* of|strong=\"H1121\"* Isaiah|strong=\"H3470\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz, in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H1121\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 33, + "text": "Hezekiah|strong=\"H2396\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H3605\"* fathers, and|strong=\"H1121\"* they|strong=\"H6213\"* buried|strong=\"H6912\"* him|strong=\"H6213\"* in|strong=\"H3427\"* the|strong=\"H3605\"* ascent|strong=\"H4608\"* to|strong=\"H6213\"* the|strong=\"H3605\"* tombs|strong=\"H6913\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"*. All|strong=\"H3605\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* honored|strong=\"H3519\"* him|strong=\"H6213\"* at|strong=\"H3427\"* his|strong=\"H3605\"* death|strong=\"H4194\"*. Manasseh|strong=\"H4519\"* his|strong=\"H3605\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H3427\"* his|strong=\"H3605\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Manasseh|strong=\"H4519\"* was|strong=\"H1121\"* twelve|strong=\"H8147\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H2568\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H2568\"* reigned|strong=\"H4427\"* fifty-five|strong=\"H2572\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, after the|strong=\"H6440\"* abominations|strong=\"H8441\"* of|strong=\"H1121\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* cast|strong=\"H3068\"* out|strong=\"H3423\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H6213\"* he|strong=\"H6213\"* built|strong=\"H1129\"* again|strong=\"H7725\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* which|strong=\"H1116\"* Hezekiah|strong=\"H2396\"* his|strong=\"H3605\"* father had|strong=\"H6635\"* broken|strong=\"H5422\"* down|strong=\"H5422\"*; and|strong=\"H6965\"* he|strong=\"H6213\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* altars|strong=\"H4196\"* for|strong=\"H6213\"* the|strong=\"H3605\"* Baals|strong=\"H1168\"*, made|strong=\"H6213\"* Asheroth, and|strong=\"H6965\"* worshiped|strong=\"H7812\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H4196\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H6965\"* served|strong=\"H5647\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3068\"* built|strong=\"H1129\"* altars|strong=\"H4196\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, of|strong=\"H1004\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* said, “My|strong=\"H3068\"* name|strong=\"H8034\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* forever|strong=\"H5769\"*.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H3068\"* built|strong=\"H1129\"* altars|strong=\"H4196\"* for|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H1004\"* the|strong=\"H3605\"* sky|strong=\"H8064\"* in|strong=\"H3068\"* the|strong=\"H3605\"* two|strong=\"H8147\"* courts|strong=\"H2691\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H1931\"* also|strong=\"H3068\"* made|strong=\"H6213\"* his|strong=\"H3068\"* children|strong=\"H1121\"* to|strong=\"H3068\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H6213\"* fire in|strong=\"H3068\"* the|strong=\"H6213\"* valley|strong=\"H1516\"* of|strong=\"H1121\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"*. He|strong=\"H1931\"* practiced|strong=\"H6213\"* sorcery|strong=\"H3784\"*, divination|strong=\"H5172\"*, and|strong=\"H1121\"* witchcraft|strong=\"H6049\"*, and|strong=\"H1121\"* dealt|strong=\"H6213\"* with|strong=\"H3068\"* those|strong=\"H1121\"* who|strong=\"H1931\"* had|strong=\"H3068\"* familiar spirits and|strong=\"H1121\"* with|strong=\"H3068\"* wizards|strong=\"H3049\"*. He|strong=\"H1931\"* did|strong=\"H6213\"* much|strong=\"H7235\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, to|strong=\"H3068\"* provoke|strong=\"H3707\"* him|strong=\"H6213\"* to|strong=\"H3068\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H6213\"* set|strong=\"H7760\"* the|strong=\"H3605\"* engraved image|strong=\"H6459\"* of|strong=\"H1121\"* the|strong=\"H3605\"* idol|strong=\"H6459\"*, which|strong=\"H1004\"* he|strong=\"H6213\"* had|strong=\"H3478\"* made|strong=\"H6213\"*, in|strong=\"H3478\"* God’s house|strong=\"H1004\"*, of|strong=\"H1121\"* which|strong=\"H1004\"* God said to|strong=\"H3478\"* David|strong=\"H1732\"* and|strong=\"H1121\"* to|strong=\"H3478\"* Solomon|strong=\"H8010\"* his|strong=\"H3605\"* son|strong=\"H1121\"*, “In|strong=\"H3478\"* this|strong=\"H2088\"* house|strong=\"H1004\"*, and|strong=\"H1121\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, which|strong=\"H1004\"* I|strong=\"H7760\"* have|strong=\"H1121\"* chosen out|strong=\"H6213\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, I|strong=\"H7760\"* will|strong=\"H3478\"* put|strong=\"H7760\"* my|strong=\"H3605\"* name|strong=\"H8034\"* forever|strong=\"H3605\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5921\"* will|strong=\"H3478\"* not|strong=\"H3808\"* any|strong=\"H3605\"* more|strong=\"H3254\"* remove|strong=\"H5493\"* the|strong=\"H3605\"* foot|strong=\"H7272\"* of|strong=\"H3027\"* Israel|strong=\"H3478\"* from|strong=\"H5493\"* off|strong=\"H5493\"* the|strong=\"H3605\"* land which|strong=\"H3478\"* I|strong=\"H5921\"* have|strong=\"H3478\"* appointed|strong=\"H5975\"* for|strong=\"H5921\"* your|strong=\"H3605\"* fathers, if only|strong=\"H7535\"* they|strong=\"H3808\"* will|strong=\"H3478\"* observe|strong=\"H8104\"* to|strong=\"H3478\"* do|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H5921\"* have|strong=\"H3478\"* commanded|strong=\"H6680\"* them|strong=\"H5921\"*, even|strong=\"H3808\"* all|strong=\"H3605\"* the|strong=\"H3605\"* law|strong=\"H8451\"*, the|strong=\"H3605\"* statutes|strong=\"H2706\"*, and|strong=\"H4872\"* the|strong=\"H3605\"* ordinances|strong=\"H4941\"* given|strong=\"H6680\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*.”" + }, + { + "verseNum": 9, + "text": "Manasseh|strong=\"H4519\"* seduced|strong=\"H8582\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*, so|strong=\"H6213\"* that|strong=\"H3068\"* they|strong=\"H3068\"* did|strong=\"H6213\"* more|strong=\"H4480\"* evil|strong=\"H7451\"* than|strong=\"H4480\"* did|strong=\"H6213\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* destroyed|strong=\"H8045\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Manasseh|strong=\"H4519\"* and|strong=\"H3068\"* to|strong=\"H1696\"* his|strong=\"H3068\"* people|strong=\"H5971\"*, but|strong=\"H3808\"* they|strong=\"H3068\"* didn’t listen|strong=\"H7181\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H5921\"* Yahweh|strong=\"H3068\"* brought|strong=\"H3212\"* on|strong=\"H5921\"* them|strong=\"H5921\"* the|strong=\"H5921\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, who|strong=\"H3068\"* took|strong=\"H3920\"* Manasseh|strong=\"H4519\"* in|strong=\"H5921\"* chains|strong=\"H5178\"*, bound him|strong=\"H5921\"* with|strong=\"H3068\"* fetters|strong=\"H5178\"*, and|strong=\"H3068\"* carried|strong=\"H3212\"* him|strong=\"H5921\"* to|strong=\"H3068\"* Babylon." + }, + { + "verseNum": 12, + "text": "When|strong=\"H3068\"* he|strong=\"H3068\"* was|strong=\"H3068\"* in|strong=\"H3068\"* distress|strong=\"H6887\"*, he|strong=\"H3068\"* begged Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* humbled|strong=\"H3665\"* himself|strong=\"H3665\"* greatly|strong=\"H3966\"* before|strong=\"H6440\"* the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* his|strong=\"H3068\"* fathers." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1931\"* prayed|strong=\"H6419\"* to|strong=\"H7725\"* him|strong=\"H7725\"*; and|strong=\"H3068\"* he|strong=\"H1931\"* was|strong=\"H3068\"* entreated|strong=\"H6279\"* by|strong=\"H3068\"* him|strong=\"H7725\"*, and|strong=\"H3068\"* heard|strong=\"H8085\"* his|strong=\"H3068\"* supplication|strong=\"H8467\"*, and|strong=\"H3068\"* brought|strong=\"H7725\"* him|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"* into|strong=\"H7725\"* his|strong=\"H3068\"* kingdom|strong=\"H4438\"*. Then|strong=\"H7725\"* Manasseh|strong=\"H4519\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"H7760\"* after this|strong=\"H3651\"*, he|strong=\"H3651\"* built|strong=\"H1129\"* an|strong=\"H1129\"* outer|strong=\"H2435\"* wall|strong=\"H2346\"* to|strong=\"H1732\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"* on|strong=\"H7760\"* the|strong=\"H3605\"* west|strong=\"H4628\"* side|strong=\"H4628\"* of|strong=\"H8269\"* Gihon|strong=\"H1521\"*, in|strong=\"H5892\"* the|strong=\"H3605\"* valley|strong=\"H5158\"*, even|strong=\"H3651\"* to|strong=\"H1732\"* the|strong=\"H3605\"* entrance|strong=\"H8179\"* at|strong=\"H1732\"* the|strong=\"H3605\"* fish|strong=\"H1709\"* gate|strong=\"H8179\"*. He|strong=\"H3651\"* encircled|strong=\"H5437\"* Ophel|strong=\"H6077\"* with|strong=\"H5892\"* it|strong=\"H7760\"*, and|strong=\"H3063\"* raised|strong=\"H1361\"* it|strong=\"H7760\"* up|strong=\"H1129\"* to|strong=\"H1732\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H3966\"* height|strong=\"H3966\"*; and|strong=\"H3063\"* he|strong=\"H3651\"* put|strong=\"H7760\"* valiant|strong=\"H2428\"* captains|strong=\"H8269\"* in|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"* of|strong=\"H8269\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3068\"* took|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H3605\"* foreign|strong=\"H5236\"* gods and|strong=\"H3068\"* the|strong=\"H3605\"* idol|strong=\"H5566\"* out|strong=\"H2351\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* altars|strong=\"H4196\"* that|strong=\"H3605\"* he|strong=\"H3068\"* had|strong=\"H3068\"* built|strong=\"H1129\"* in|strong=\"H3068\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3068\"* cast|strong=\"H7993\"* them|strong=\"H7993\"* out|strong=\"H2351\"* of|strong=\"H1004\"* the|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H3068\"* built up|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"*, and|strong=\"H3063\"* offered|strong=\"H2076\"* sacrifices|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* and|strong=\"H3063\"* of|strong=\"H3068\"* thanksgiving|strong=\"H8426\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H3063\"* commanded Judah|strong=\"H3063\"* to|strong=\"H3478\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 17, + "text": "Nevertheless|strong=\"H7535\"* the|strong=\"H3068\"* people|strong=\"H5971\"* still|strong=\"H5750\"* sacrificed|strong=\"H2076\"* in|strong=\"H3068\"* the|strong=\"H3068\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, but|strong=\"H7535\"* only|strong=\"H7535\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"H2005\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Manasseh|strong=\"H4519\"*, and|strong=\"H3478\"* his|strong=\"H3068\"* prayer|strong=\"H8605\"* to|strong=\"H1696\"* his|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3478\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* seers|strong=\"H2374\"* who|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, behold|strong=\"H2005\"*, they|strong=\"H3068\"* are|strong=\"H3478\"* written among|strong=\"H5921\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 19, + "text": "His|strong=\"H3605\"* prayer|strong=\"H8605\"* also|strong=\"H3789\"*, and|strong=\"H6440\"* how God listened|strong=\"H6279\"* to|strong=\"H5921\"* his|strong=\"H3605\"* request|strong=\"H1697\"*, and|strong=\"H6440\"* all|strong=\"H3605\"* his|strong=\"H3605\"* sin|strong=\"H2403\"* and|strong=\"H6440\"* his|strong=\"H3605\"* trespass|strong=\"H4604\"*, and|strong=\"H6440\"* the|strong=\"H3605\"* places|strong=\"H1116\"* in|strong=\"H5921\"* which|strong=\"H1697\"* he|strong=\"H3605\"* built|strong=\"H1129\"* high|strong=\"H1116\"* places|strong=\"H1116\"* and|strong=\"H6440\"* set|strong=\"H5975\"* up|strong=\"H5975\"* the|strong=\"H3605\"* Asherah poles and|strong=\"H6440\"* the|strong=\"H3605\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"* before|strong=\"H6440\"* he|strong=\"H3605\"* humbled|strong=\"H3665\"* himself|strong=\"H3665\"*: behold|strong=\"H2005\"*, they|strong=\"H5921\"* are|strong=\"H1697\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* history of|strong=\"H1697\"* Hozai|strong=\"H2335\"*.+ 33:19 or, the seers*" + }, + { + "verseNum": 20, + "text": "So Manasseh|strong=\"H4519\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers, and|strong=\"H1121\"* they|strong=\"H8478\"* buried|strong=\"H6912\"* him|strong=\"H4427\"* in|strong=\"H1004\"* his|strong=\"H8478\"* own|strong=\"H5973\"* house|strong=\"H1004\"*; and|strong=\"H1121\"* Amon his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H1004\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 21, + "text": "Amon was|strong=\"H1121\"* twenty-two|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8147\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*; and|strong=\"H1121\"* he|strong=\"H8147\"* reigned|strong=\"H4427\"* two|strong=\"H8147\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, as|strong=\"H6213\"* did|strong=\"H6213\"* Manasseh|strong=\"H4519\"* his|strong=\"H3605\"* father; and|strong=\"H3068\"* Amon sacrificed|strong=\"H2076\"* to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"* which|strong=\"H3068\"* Manasseh|strong=\"H4519\"* his|strong=\"H3605\"* father had|strong=\"H3068\"* made|strong=\"H6213\"*, and|strong=\"H3068\"* served|strong=\"H5647\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H1931\"* didn’t humble|strong=\"H3665\"* himself|strong=\"H1931\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, as|strong=\"H3068\"* Manasseh|strong=\"H4519\"* his|strong=\"H3068\"* father had|strong=\"H3068\"* humbled|strong=\"H3665\"* himself|strong=\"H1931\"*; but|strong=\"H3588\"* this|strong=\"H1931\"* same|strong=\"H1931\"* Amon trespassed more|strong=\"H7235\"* and|strong=\"H3068\"* more|strong=\"H7235\"*." + }, + { + "verseNum": 24, + "text": "His|strong=\"H5921\"* servants|strong=\"H5650\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H1004\"* put|strong=\"H4191\"* him|strong=\"H5921\"* to|strong=\"H4191\"* death|strong=\"H4191\"* in|strong=\"H5921\"* his|strong=\"H5921\"* own house|strong=\"H1004\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"H5221\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land killed|strong=\"H5221\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* had|strong=\"H4428\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* King|strong=\"H4428\"* Amon; and|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land made|strong=\"H4427\"* Josiah|strong=\"H2977\"* his|strong=\"H3605\"* son|strong=\"H1121\"* king|strong=\"H4428\"* in|strong=\"H5921\"* his|strong=\"H3605\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Josiah|strong=\"H2977\"* was|strong=\"H1121\"* eight|strong=\"H8083\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H3389\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H3389\"* reigned|strong=\"H4427\"* thirty-one|strong=\"H7970\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3225\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, and|strong=\"H3068\"* walked|strong=\"H3212\"* in|strong=\"H3068\"* the|strong=\"H6213\"* ways|strong=\"H1870\"* of|strong=\"H3068\"* David|strong=\"H1732\"* his|strong=\"H3068\"* father, and|strong=\"H3068\"* didn’t turn|strong=\"H5493\"* away|strong=\"H5493\"* to|strong=\"H3212\"* the|strong=\"H6213\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* or|strong=\"H3808\"* to|strong=\"H3212\"* the|strong=\"H6213\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3389\"* in|strong=\"H8141\"* the|strong=\"H4480\"* eighth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H8141\"* his|strong=\"H1732\"* reign|strong=\"H4427\"*, while|strong=\"H5750\"* he|strong=\"H1931\"* was|strong=\"H1732\"* yet|strong=\"H5750\"* young|strong=\"H5288\"*, he|strong=\"H1931\"* began|strong=\"H2490\"* to|strong=\"H3389\"* seek|strong=\"H1875\"* after|strong=\"H4480\"* the|strong=\"H4480\"* God of|strong=\"H8141\"* David|strong=\"H1732\"* his|strong=\"H1732\"* father; and|strong=\"H3063\"* in|strong=\"H8141\"* the|strong=\"H4480\"* twelfth|strong=\"H8147\"* year|strong=\"H8141\"* he|strong=\"H1931\"* began|strong=\"H2490\"* to|strong=\"H3389\"* purge|strong=\"H2891\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"* from|strong=\"H4480\"* the|strong=\"H4480\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, the|strong=\"H4480\"* Asherah poles, the|strong=\"H4480\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"*, and|strong=\"H3063\"* the|strong=\"H4480\"* molten|strong=\"H4541\"* images|strong=\"H6456\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H5921\"* broke|strong=\"H7665\"* down|strong=\"H5422\"* the|strong=\"H6440\"* altars|strong=\"H4196\"* of|strong=\"H6440\"* the|strong=\"H6440\"* Baals|strong=\"H1168\"* in|strong=\"H5921\"* his|strong=\"H6440\"* presence|strong=\"H6440\"*; and|strong=\"H6440\"* he|strong=\"H5921\"* cut|strong=\"H1438\"* down|strong=\"H5422\"* the|strong=\"H6440\"* incense|strong=\"H2553\"* altars|strong=\"H4196\"* that|strong=\"H4196\"* were|strong=\"H5921\"* on|strong=\"H5921\"* high|strong=\"H4605\"* above|strong=\"H4605\"* them|strong=\"H5921\"*. He|strong=\"H5921\"* broke|strong=\"H7665\"* the|strong=\"H6440\"* Asherah poles, the|strong=\"H6440\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"*, and|strong=\"H6440\"* the|strong=\"H6440\"* molten|strong=\"H4541\"* images|strong=\"H6456\"* in|strong=\"H5921\"* pieces|strong=\"H7665\"*, made|strong=\"H2076\"* dust|strong=\"H1854\"* of|strong=\"H6440\"* them|strong=\"H5921\"*, and|strong=\"H6440\"* scattered|strong=\"H2236\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H6440\"* graves|strong=\"H6913\"* of|strong=\"H6440\"* those|strong=\"H5921\"* who|strong=\"H4605\"* had sacrificed|strong=\"H2076\"* to|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3389\"* burned|strong=\"H8313\"* the|strong=\"H5921\"* bones|strong=\"H6106\"* of|strong=\"H4196\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* on|strong=\"H5921\"* their|strong=\"H8313\"* altars|strong=\"H4196\"*, and|strong=\"H3063\"* purged|strong=\"H2891\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H5704\"* did|strong=\"H2022\"* this|strong=\"H1004\"* in|strong=\"H1004\"* the|strong=\"H5704\"* cities|strong=\"H5892\"* of|strong=\"H1004\"* Manasseh|strong=\"H4519\"*, Ephraim, and|strong=\"H1004\"* Simeon|strong=\"H8095\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* Naphtali|strong=\"H5321\"*, around|strong=\"H5439\"* in|strong=\"H1004\"* their|strong=\"H5439\"* ruins|strong=\"H5892\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3605\"* broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H3605\"* altars|strong=\"H4196\"*, beat|strong=\"H3807\"* the|strong=\"H3605\"* Asherah poles and|strong=\"H3478\"* the|strong=\"H3605\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"* into|strong=\"H7725\"* powder|strong=\"H1854\"*, and|strong=\"H3478\"* cut|strong=\"H1438\"* down|strong=\"H5422\"* all|strong=\"H3605\"* the|strong=\"H3605\"* incense|strong=\"H2553\"* altars|strong=\"H4196\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H4196\"* Israel|strong=\"H3478\"*, then|strong=\"H7725\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H7971\"* in|strong=\"H8141\"* the|strong=\"H3068\"* eighteenth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H1121\"* his|strong=\"H3068\"* reign|strong=\"H4427\"*, when|strong=\"H7971\"* he|strong=\"H3068\"* had|strong=\"H3068\"* purged|strong=\"H2891\"* the|strong=\"H3068\"* land and|strong=\"H1121\"* the|strong=\"H3068\"* house|strong=\"H1004\"*, he|strong=\"H3068\"* sent|strong=\"H7971\"* Shaphan|strong=\"H8227\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azaliah, Maaseiah|strong=\"H4641\"* the|strong=\"H3068\"* governor|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3068\"* city|strong=\"H5892\"*, and|strong=\"H1121\"* Joah|strong=\"H3098\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joahaz|strong=\"H3099\"* the|strong=\"H3068\"* recorder|strong=\"H2142\"* to|strong=\"H3068\"* repair|strong=\"H2388\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* Hilkiah|strong=\"H2518\"* the|strong=\"H3605\"* high|strong=\"H1419\"* priest|strong=\"H3548\"* and|strong=\"H3063\"* delivered|strong=\"H5414\"* the|strong=\"H3605\"* money|strong=\"H3701\"* that|strong=\"H3605\"* was|strong=\"H3478\"* brought|strong=\"H5414\"* into|strong=\"H3027\"* God|strong=\"H5414\"*’s house|strong=\"H1004\"*, which|strong=\"H1004\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, the|strong=\"H3605\"* keepers|strong=\"H8104\"* of|strong=\"H1004\"* the|strong=\"H3605\"* threshold|strong=\"H5592\"*, had|strong=\"H3478\"* gathered|strong=\"H3478\"* from|strong=\"H3478\"* the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H1004\"* Manasseh|strong=\"H4519\"*, Ephraim, of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, of|strong=\"H1004\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Benjamin|strong=\"H1144\"*, and|strong=\"H3063\"* of|strong=\"H1004\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H3068\"* delivered|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H5921\"* the|strong=\"H5921\"* hands|strong=\"H3027\"* of|strong=\"H1004\"* the|strong=\"H5921\"* workmen|strong=\"H4399\"* who|strong=\"H3068\"* had|strong=\"H3068\"* the|strong=\"H5921\"* oversight|strong=\"H6485\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H3068\"* the|strong=\"H5921\"* workmen|strong=\"H4399\"* who|strong=\"H3068\"* labored|strong=\"H6213\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* mend|strong=\"H2388\"* and|strong=\"H3068\"* repair|strong=\"H2388\"* the|strong=\"H5921\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H5414\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* carpenters|strong=\"H2796\"* and|strong=\"H3063\"* to|strong=\"H5414\"* the|strong=\"H5414\"* builders|strong=\"H1129\"* to|strong=\"H5414\"* buy|strong=\"H7069\"* cut stone and|strong=\"H3063\"* timber|strong=\"H6086\"* for|strong=\"H1004\"* couplings|strong=\"H4226\"*, and|strong=\"H3063\"* to|strong=\"H5414\"* make|strong=\"H5414\"* beams|strong=\"H7136\"* for|strong=\"H1004\"* the|strong=\"H5414\"* houses|strong=\"H1004\"* which|strong=\"H1004\"* the|strong=\"H5414\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* had|strong=\"H4428\"* destroyed|strong=\"H7843\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3605\"* men|strong=\"H1121\"* did|strong=\"H6213\"* the|strong=\"H3605\"* work|strong=\"H4399\"* faithfully. Their|strong=\"H3605\"* overseers|strong=\"H5329\"* were|strong=\"H1121\"* Jahath|strong=\"H3189\"* and|strong=\"H1121\"* Obadiah|strong=\"H5662\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*; and|strong=\"H1121\"* Zechariah|strong=\"H2148\"* and|strong=\"H1121\"* Meshullam|strong=\"H4918\"*, of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Kohathites|strong=\"H6956\"*, to|strong=\"H6213\"* give|strong=\"H6213\"* direction; and|strong=\"H1121\"* others of|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, who|strong=\"H3605\"* were|strong=\"H1121\"* all|strong=\"H3605\"* skillful with|strong=\"H6213\"* musical|strong=\"H7892\"* instruments|strong=\"H3627\"*." + }, + { + "verseNum": 13, + "text": "Also|strong=\"H6213\"* they|strong=\"H5921\"* were|strong=\"H3881\"* over|strong=\"H5921\"* the|strong=\"H3605\"* bearers|strong=\"H5449\"* of|strong=\"H5921\"* burdens|strong=\"H5449\"*, and|strong=\"H6213\"* directed all|strong=\"H3605\"* who|strong=\"H3605\"* did|strong=\"H6213\"* the|strong=\"H3605\"* work|strong=\"H4399\"* in|strong=\"H5921\"* every|strong=\"H3605\"* kind|strong=\"H5656\"* of|strong=\"H5921\"* service|strong=\"H5656\"*. Of|strong=\"H5921\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, there|strong=\"H3605\"* were|strong=\"H3881\"* scribes|strong=\"H5608\"*, officials|strong=\"H7860\"*, and|strong=\"H6213\"* gatekeepers|strong=\"H7778\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H3318\"* they|strong=\"H3068\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H3068\"* money|strong=\"H3701\"* that|strong=\"H3068\"* was|strong=\"H3068\"* brought|strong=\"H3318\"* into|strong=\"H3318\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, Hilkiah|strong=\"H2518\"* the|strong=\"H3068\"* priest|strong=\"H3548\"* found|strong=\"H4672\"* the|strong=\"H3068\"* book|strong=\"H5612\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"* given|strong=\"H3027\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 15, + "text": "Hilkiah|strong=\"H2518\"* answered|strong=\"H6030\"* Shaphan|strong=\"H8227\"* the|strong=\"H5414\"* scribe|strong=\"H5608\"*, “I|strong=\"H5414\"* have|strong=\"H3068\"* found|strong=\"H4672\"* the|strong=\"H5414\"* book|strong=\"H5612\"* of|strong=\"H1004\"* the|strong=\"H5414\"* law|strong=\"H8451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*.” So|strong=\"H5414\"* Hilkiah|strong=\"H2518\"* delivered|strong=\"H5414\"* the|strong=\"H5414\"* book|strong=\"H5612\"* to|strong=\"H3068\"* Shaphan|strong=\"H8227\"*." + }, + { + "verseNum": 16, + "text": "Shaphan|strong=\"H8227\"* carried|strong=\"H6213\"* the|strong=\"H3605\"* book|strong=\"H5612\"* to|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H7725\"* moreover|strong=\"H5750\"* brought|strong=\"H7725\"* back|strong=\"H7725\"* word|strong=\"H1697\"* to|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, saying|strong=\"H1697\"*, “All|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H1697\"* committed|strong=\"H6213\"* to|strong=\"H7725\"* your|strong=\"H3605\"* servants|strong=\"H5650\"*, they|strong=\"H1992\"* are|strong=\"H1992\"* doing|strong=\"H6213\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H3068\"* have|strong=\"H3068\"* emptied|strong=\"H5413\"* out|strong=\"H4672\"* the|strong=\"H5921\"* money|strong=\"H3701\"* that|strong=\"H3068\"* was|strong=\"H3068\"* found|strong=\"H4672\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* delivered|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* the|strong=\"H5921\"* overseers|strong=\"H6485\"* and|strong=\"H3068\"* into|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* the|strong=\"H5921\"* workmen|strong=\"H4399\"*.”" + }, + { + "verseNum": 18, + "text": "Shaphan|strong=\"H8227\"* the|strong=\"H6440\"* scribe|strong=\"H5608\"* told|strong=\"H5046\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, saying, “Hilkiah|strong=\"H2518\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* has|strong=\"H4428\"* delivered|strong=\"H5414\"* me|strong=\"H5414\"* a|strong=\"H3068\"* book|strong=\"H5612\"*.” Shaphan|strong=\"H8227\"* read|strong=\"H7121\"* from|strong=\"H6440\"* it|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H6440\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H1961\"* the|strong=\"H8085\"* king|strong=\"H4428\"* had|strong=\"H1961\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H8085\"* law|strong=\"H8451\"*, he|strong=\"H4428\"* tore|strong=\"H7167\"* his|strong=\"H8085\"* clothes." + }, + { + "verseNum": 20, + "text": "The|strong=\"H6680\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"* Hilkiah|strong=\"H2518\"*, Ahikam the|strong=\"H6680\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"*, Abdon|strong=\"H5658\"* the|strong=\"H6680\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Micah|strong=\"H4318\"*, Shaphan|strong=\"H8227\"* the|strong=\"H6680\"* scribe|strong=\"H5608\"*, and|strong=\"H1121\"* Asaiah|strong=\"H6222\"* the|strong=\"H6680\"* king|strong=\"H4428\"*’s servant|strong=\"H5650\"*, saying," + }, + { + "verseNum": 21, + "text": "“Go|strong=\"H3212\"* inquire|strong=\"H1875\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* for|strong=\"H3588\"* me|strong=\"H5921\"*, and|strong=\"H3063\"* for|strong=\"H3588\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H3478\"* left|strong=\"H7604\"* in|strong=\"H5921\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* in|strong=\"H5921\"* Judah|strong=\"H3063\"*, concerning|strong=\"H5921\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* the|strong=\"H3605\"* book|strong=\"H5612\"* that|strong=\"H3588\"* is|strong=\"H3068\"* found|strong=\"H4672\"*; for|strong=\"H3588\"* great|strong=\"H1419\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s wrath|strong=\"H2534\"* that|strong=\"H3588\"* is|strong=\"H3068\"* poured|strong=\"H5413\"* out|strong=\"H4672\"* on|strong=\"H5921\"* us|strong=\"H5921\"*, because|strong=\"H3588\"* our|strong=\"H3068\"* fathers have|strong=\"H3068\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, to|strong=\"H3478\"* do|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H5921\"* this|strong=\"H2088\"* book|strong=\"H5612\"*.”" + }, + { + "verseNum": 22, + "text": "So|strong=\"H2063\"* Hilkiah|strong=\"H2518\"* and|strong=\"H1121\"* those|strong=\"H1121\"* whom the|strong=\"H8104\"* king|strong=\"H4428\"* had|strong=\"H4428\"* commanded|strong=\"H1696\"* went|strong=\"H3212\"* to|strong=\"H1696\"* Huldah|strong=\"H2468\"* the|strong=\"H8104\"* prophetess|strong=\"H5031\"*, the|strong=\"H8104\"* wife|strong=\"H1696\"* of|strong=\"H1121\"* Shallum|strong=\"H7967\"* the|strong=\"H8104\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Tokhath|strong=\"H8445\"*, the|strong=\"H8104\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hasrah|strong=\"H2641\"*, keeper|strong=\"H8104\"* of|strong=\"H1121\"* the|strong=\"H8104\"* wardrobe (now|strong=\"H3212\"* she|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* in|strong=\"H3427\"* the|strong=\"H8104\"* second|strong=\"H4932\"* quarter), and|strong=\"H1121\"* they|strong=\"H1931\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* her|strong=\"H1931\"* to|strong=\"H1696\"* that|strong=\"H1931\"* effect." + }, + { + "verseNum": 23, + "text": "She said to|strong=\"H3478\"* them|strong=\"H7971\"*, “Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*: ‘Tell the|strong=\"H3541\"* man who|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* to|strong=\"H3478\"* me|strong=\"H7971\"*," + }, + { + "verseNum": 24, + "text": "“Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* bring|strong=\"H7451\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"* and|strong=\"H3063\"* on|strong=\"H5921\"* its|strong=\"H3605\"* inhabitants|strong=\"H3427\"*, even|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* curses that|strong=\"H3605\"* are|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H3427\"* the|strong=\"H3605\"* book|strong=\"H5612\"* which|strong=\"H3068\"* they|strong=\"H3068\"* have|strong=\"H3068\"* read|strong=\"H7121\"* before|strong=\"H6440\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 25, + "text": "Because|strong=\"H4616\"* they|strong=\"H3808\"* have|strong=\"H3027\"* forsaken|strong=\"H5800\"* me|strong=\"H5800\"*, and|strong=\"H3027\"* have|strong=\"H3027\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H3027\"* other|strong=\"H2088\"* gods, that|strong=\"H3605\"* they|strong=\"H3808\"* might|strong=\"H4616\"* provoke|strong=\"H3707\"* me|strong=\"H5800\"* to|strong=\"H3027\"* anger|strong=\"H3707\"* with|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* works|strong=\"H4639\"* of|strong=\"H3027\"* their|strong=\"H3605\"* hands|strong=\"H3027\"*, therefore|strong=\"H4616\"* my|strong=\"H3605\"* wrath|strong=\"H2534\"* is|strong=\"H2088\"* poured|strong=\"H5413\"* out|strong=\"H5413\"* on|strong=\"H3027\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, and|strong=\"H3027\"* it|strong=\"H3808\"* will|strong=\"H3027\"* not|strong=\"H3808\"* be|strong=\"H3808\"* quenched|strong=\"H3518\"*.’”’" + }, + { + "verseNum": 26, + "text": "But|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, who|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* to|strong=\"H3478\"* inquire|strong=\"H1875\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*, you|strong=\"H7971\"* shall|strong=\"H3068\"* tell|strong=\"H8085\"* him|strong=\"H7971\"* this|strong=\"H3541\"*, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*: “About|strong=\"H1697\"* the|strong=\"H8085\"* words|strong=\"H1697\"* which|strong=\"H3068\"* you|strong=\"H7971\"* have|strong=\"H3068\"* heard|strong=\"H8085\"*," + }, + { + "verseNum": 27, + "text": "because|strong=\"H5921\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* was|strong=\"H3068\"* tender|strong=\"H7401\"*, and|strong=\"H3068\"* you|strong=\"H6440\"* humbled|strong=\"H3665\"* yourself|strong=\"H3665\"* before|strong=\"H6440\"* God|strong=\"H3068\"* when|strong=\"H8085\"* you|strong=\"H6440\"* heard|strong=\"H8085\"* his|strong=\"H3068\"* words|strong=\"H1697\"* against|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"* and|strong=\"H3068\"* against|strong=\"H5921\"* its|strong=\"H5921\"* inhabitants|strong=\"H3427\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* humbled|strong=\"H3665\"* yourself|strong=\"H3665\"* before|strong=\"H6440\"* me|strong=\"H6440\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* torn|strong=\"H7167\"* your|strong=\"H3068\"* clothes and|strong=\"H3068\"* wept|strong=\"H1058\"* before|strong=\"H6440\"* me|strong=\"H6440\"*, I|strong=\"H5921\"* also|strong=\"H1571\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* you|strong=\"H6440\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 28, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H4428\"* gather you|strong=\"H3605\"* to|strong=\"H7725\"* your|strong=\"H3605\"* fathers, and|strong=\"H7725\"* you|strong=\"H3605\"* will|strong=\"H4428\"* be|strong=\"H3808\"* gathered to|strong=\"H7725\"* your|strong=\"H3605\"* grave|strong=\"H6913\"* in|strong=\"H3427\"* peace|strong=\"H7965\"*. Your|strong=\"H3605\"* eyes|strong=\"H5869\"* won’t see|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H7200\"* I|strong=\"H2005\"* will|strong=\"H4428\"* bring|strong=\"H7725\"* on|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"* and|strong=\"H7725\"* on|strong=\"H5921\"* its|strong=\"H3605\"* inhabitants|strong=\"H3427\"*.”’”" + }, + { + "verseNum": 29, + "text": "Then|strong=\"H7971\"* the|strong=\"H3605\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* and|strong=\"H3063\"* gathered together all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* with|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1419\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*—the|strong=\"H3605\"* priests|strong=\"H3548\"*, the|strong=\"H3605\"* Levites|strong=\"H3881\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, both|strong=\"H3605\"* great|strong=\"H1419\"* and|strong=\"H3063\"* small|strong=\"H6996\"*—and|strong=\"H3063\"* he|strong=\"H5704\"* read|strong=\"H7121\"* in|strong=\"H3427\"* their|strong=\"H3605\"* hearing all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* that|strong=\"H5971\"* was|strong=\"H3068\"* found|strong=\"H4672\"* in|strong=\"H3427\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* stood|strong=\"H5975\"* in|strong=\"H5921\"* his|strong=\"H3605\"* place|strong=\"H5977\"* and|strong=\"H3068\"* made|strong=\"H6213\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* walk|strong=\"H3212\"* after|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"*, his|strong=\"H3605\"* testimonies|strong=\"H5715\"*, and|strong=\"H3068\"* his|strong=\"H3605\"* statutes|strong=\"H2706\"* with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* heart|strong=\"H3824\"* and|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* soul|strong=\"H5315\"*, to|strong=\"H3068\"* perform|strong=\"H6213\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* that|strong=\"H3605\"* were|strong=\"H1697\"* written|strong=\"H3789\"* in|strong=\"H5921\"* this|strong=\"H2088\"* book|strong=\"H5612\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"H6213\"* caused|strong=\"H6213\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1144\"* found|strong=\"H4672\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3389\"* Benjamin|strong=\"H1144\"* to|strong=\"H6213\"* stand|strong=\"H5975\"*. The|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* did|strong=\"H6213\"* according to|strong=\"H6213\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* of|strong=\"H3427\"* God, the|strong=\"H3605\"* God of|strong=\"H3427\"* their|strong=\"H3605\"* fathers." + }, + { + "verseNum": 33, + "text": "Josiah|strong=\"H2977\"* took|strong=\"H5493\"* away|strong=\"H5493\"* all|strong=\"H3605\"* the|strong=\"H3605\"* abominations|strong=\"H8441\"* out|strong=\"H4672\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* countries that|strong=\"H3605\"* belonged to|strong=\"H3478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* made|strong=\"H5647\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3478\"* found|strong=\"H4672\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* serve|strong=\"H5647\"*, even|strong=\"H3808\"* to|strong=\"H3478\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"*. All|strong=\"H3605\"* his|strong=\"H3605\"* days|strong=\"H3117\"* they|strong=\"H3117\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* following Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* their|strong=\"H3605\"* fathers." + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "Josiah|strong=\"H2977\"* kept|strong=\"H6213\"* a|strong=\"H3068\"* Passover|strong=\"H6453\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*. They|strong=\"H3068\"* killed|strong=\"H7819\"* the|strong=\"H6213\"* Passover|strong=\"H6453\"* on|strong=\"H3068\"* the|strong=\"H6213\"* fourteenth|strong=\"H6240\"* day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H6213\"* first|strong=\"H7223\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3068\"* set|strong=\"H5975\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* in|strong=\"H5921\"* their|strong=\"H3068\"* offices|strong=\"H4931\"* and|strong=\"H3068\"* encouraged|strong=\"H2388\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* service|strong=\"H5656\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3068\"* said to|strong=\"H3478\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* who|strong=\"H3605\"* taught all|strong=\"H3605\"* Israel|strong=\"H3478\"*, who|strong=\"H3605\"* were|strong=\"H3478\"* holy|strong=\"H6944\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, “Put|strong=\"H5414\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* ark in|strong=\"H3478\"* the|strong=\"H3605\"* house|strong=\"H1004\"* which|strong=\"H3068\"* Solomon|strong=\"H8010\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* built|strong=\"H1129\"*. It|strong=\"H5414\"* will|strong=\"H3068\"* no|strong=\"H3605\"* longer be|strong=\"H3068\"* a|strong=\"H3068\"* burden|strong=\"H4853\"* on|strong=\"H3068\"* your|strong=\"H3068\"* shoulders|strong=\"H3802\"*. Now|strong=\"H6258\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* and|strong=\"H1121\"* his|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "Prepare|strong=\"H3559\"* yourselves after|strong=\"H1004\"* your|strong=\"H3559\"* fathers’ houses|strong=\"H1004\"* by|strong=\"H3478\"* your|strong=\"H3559\"* divisions|strong=\"H4256\"*, according to|strong=\"H3478\"* the|strong=\"H3559\"* writing|strong=\"H3791\"* of|strong=\"H1121\"* David|strong=\"H1732\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* according to|strong=\"H3478\"* the|strong=\"H3559\"* writing|strong=\"H3791\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"* his|strong=\"H1732\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 5, + "text": "Stand|strong=\"H5975\"* in|strong=\"H1004\"* the|strong=\"H5975\"* holy|strong=\"H6944\"* place|strong=\"H6944\"* according to|strong=\"H1121\"* the|strong=\"H5975\"* divisions|strong=\"H2515\"* of|strong=\"H1121\"* the|strong=\"H5975\"* fathers’ houses|strong=\"H1004\"* of|strong=\"H1121\"* your|strong=\"H1121\"* brothers|strong=\"H1121\"* the|strong=\"H5975\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5975\"* people|strong=\"H5971\"*, and|strong=\"H1121\"* let there|strong=\"H5975\"* be|strong=\"H1121\"* for|strong=\"H1004\"* each|strong=\"H5971\"* a|strong=\"H3068\"* portion|strong=\"H6944\"* of|strong=\"H1121\"* a|strong=\"H3068\"* fathers’ house|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H5975\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 6, + "text": "Kill|strong=\"H7819\"* the|strong=\"H6213\"* Passover|strong=\"H6453\"* lamb, sanctify|strong=\"H6942\"* yourselves|strong=\"H3027\"*, and|strong=\"H4872\"* prepare|strong=\"H3559\"* for|strong=\"H6213\"* your|strong=\"H3068\"* brothers, to|strong=\"H3068\"* do|strong=\"H6213\"* according|strong=\"H3027\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*.”" + }, + { + "verseNum": 7, + "text": "Josiah|strong=\"H2977\"* gave|strong=\"H7311\"* to|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, of|strong=\"H1121\"* the|strong=\"H3605\"* flock|strong=\"H6629\"*, lambs|strong=\"H3532\"* and|strong=\"H1121\"* young|strong=\"H1121\"* goats|strong=\"H5795\"*, all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H4672\"* for|strong=\"H1121\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"* offerings|strong=\"H6453\"*, to|strong=\"H1121\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H5971\"* present|strong=\"H4672\"*, to|strong=\"H1121\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* thirty|strong=\"H7970\"* thousand, and|strong=\"H1121\"* three|strong=\"H7969\"* thousand bulls|strong=\"H1241\"*. These|strong=\"H3605\"* were|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s substance|strong=\"H7399\"*." + }, + { + "verseNum": 8, + "text": "His|strong=\"H5414\"* princes|strong=\"H8269\"* gave|strong=\"H5414\"* a|strong=\"H3068\"* free will|strong=\"H5971\"* offering|strong=\"H5071\"* to|strong=\"H5414\"* the|strong=\"H5414\"* people|strong=\"H5971\"*, to|strong=\"H5414\"* the|strong=\"H5414\"* priests|strong=\"H3548\"*, and|strong=\"H3967\"* to|strong=\"H5414\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"*. Hilkiah|strong=\"H2518\"*, Zechariah|strong=\"H2148\"*, and|strong=\"H3967\"* Jehiel|strong=\"H3171\"*, the|strong=\"H5414\"* rulers|strong=\"H8269\"* of|strong=\"H1004\"* God|strong=\"H5414\"*’s house|strong=\"H1004\"*, gave|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* priests|strong=\"H3548\"* for|strong=\"H1004\"* the|strong=\"H5414\"* Passover|strong=\"H6453\"* offerings|strong=\"H5071\"* two|strong=\"H1004\"* thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"* small livestock, and|strong=\"H3967\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* head|strong=\"H8269\"* of|strong=\"H1004\"* cattle|strong=\"H1241\"*." + }, + { + "verseNum": 9, + "text": "Conaniah|strong=\"H3562\"* also|strong=\"H8269\"*, and|strong=\"H3967\"* Shemaiah|strong=\"H8098\"* and|strong=\"H3967\"* Nethanel|strong=\"H5417\"*, his|strong=\"H7311\"* brothers, and|strong=\"H3967\"* Hashabiah|strong=\"H2811\"*, Jeiel|strong=\"H3273\"*, and|strong=\"H3967\"* Jozabad|strong=\"H3107\"*, the|strong=\"H7311\"* chiefs|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H7311\"* Levites|strong=\"H3881\"*, gave|strong=\"H7311\"* to|strong=\"H3881\"* the|strong=\"H7311\"* Levites|strong=\"H3881\"* for|strong=\"H1241\"* the|strong=\"H7311\"* Passover|strong=\"H6453\"* offerings|strong=\"H6453\"* five|strong=\"H2568\"* thousand small livestock and|strong=\"H3967\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* head|strong=\"H8269\"* of|strong=\"H8269\"* cattle|strong=\"H1241\"*." + }, + { + "verseNum": 10, + "text": "So|strong=\"H5975\"* the|strong=\"H5921\"* service|strong=\"H5656\"* was|strong=\"H4428\"* prepared|strong=\"H3559\"*, and|strong=\"H4428\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* stood|strong=\"H5975\"* in|strong=\"H5921\"* their|strong=\"H5921\"* place|strong=\"H5975\"*, and|strong=\"H4428\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* by|strong=\"H5921\"* their|strong=\"H5921\"* divisions|strong=\"H4256\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s commandment|strong=\"H4687\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3027\"* killed|strong=\"H7819\"* the|strong=\"H7819\"* Passover|strong=\"H6453\"* lambs, and|strong=\"H3027\"* the|strong=\"H7819\"* priests|strong=\"H3548\"* sprinkled|strong=\"H2236\"* the|strong=\"H7819\"* blood which|strong=\"H3548\"* they|strong=\"H3027\"* received from|strong=\"H3027\"* their|strong=\"H6584\"* hands|strong=\"H3027\"*, and|strong=\"H3027\"* the|strong=\"H7819\"* Levites|strong=\"H3881\"* skinned|strong=\"H6584\"* them|strong=\"H3027\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3651\"* removed|strong=\"H5493\"* the|strong=\"H5414\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*, that|strong=\"H5971\"* they|strong=\"H3651\"* might|strong=\"H3068\"* give|strong=\"H5414\"* them|strong=\"H5414\"* according to|strong=\"H3068\"* the|strong=\"H5414\"* divisions|strong=\"H4653\"* of|strong=\"H1121\"* the|strong=\"H5414\"* fathers’ houses|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5414\"* people|strong=\"H5971\"*, to|strong=\"H3068\"* offer|strong=\"H7126\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, as|strong=\"H3651\"* it|strong=\"H5414\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H3068\"* the|strong=\"H5414\"* book|strong=\"H5612\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*. They|strong=\"H3651\"* did|strong=\"H5971\"* the|strong=\"H5414\"* same|strong=\"H3651\"* with|strong=\"H1004\"* the|strong=\"H5414\"* cattle|strong=\"H1241\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"H7323\"* roasted|strong=\"H1310\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"* with|strong=\"H5971\"* fire according|strong=\"H4941\"* to|strong=\"H1121\"* the|strong=\"H3605\"* ordinance|strong=\"H4941\"*. They|strong=\"H7323\"* boiled|strong=\"H1310\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* offerings|strong=\"H6453\"* in|strong=\"H1121\"* pots|strong=\"H5518\"*, in|strong=\"H1121\"* cauldrons, and|strong=\"H1121\"* in|strong=\"H1121\"* pans|strong=\"H6745\"*, and|strong=\"H1121\"* carried|strong=\"H7323\"* them|strong=\"H7323\"* quickly|strong=\"H7323\"* to|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 14, + "text": "Afterward they|strong=\"H1992\"* prepared|strong=\"H3559\"* for|strong=\"H3588\"* themselves|strong=\"H1992\"* and|strong=\"H1121\"* for|strong=\"H3588\"* the|strong=\"H3588\"* priests|strong=\"H3548\"*, because|strong=\"H3588\"* the|strong=\"H3588\"* priests|strong=\"H3548\"* the|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron were|strong=\"H1121\"* busy with|strong=\"H3548\"* offering|strong=\"H5930\"* the|strong=\"H3588\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* and|strong=\"H1121\"* the|strong=\"H3588\"* fat|strong=\"H2459\"* until|strong=\"H5704\"* night|strong=\"H3915\"*. Therefore|strong=\"H3588\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"* prepared|strong=\"H3559\"* for|strong=\"H3588\"* themselves|strong=\"H1992\"* and|strong=\"H1121\"* for|strong=\"H3588\"* the|strong=\"H3588\"* priests|strong=\"H3548\"* the|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* singers|strong=\"H7891\"*, the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asaph, were|strong=\"H1121\"* in|strong=\"H5921\"* their|strong=\"H5921\"* place|strong=\"H4612\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* commandment|strong=\"H4687\"* of|strong=\"H1121\"* David|strong=\"H1732\"*, Asaph, Heman|strong=\"H1968\"*, and|strong=\"H1121\"* Jeduthun|strong=\"H3038\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s seer|strong=\"H2374\"*; and|strong=\"H1121\"* the|strong=\"H5921\"* gatekeepers|strong=\"H7778\"* were|strong=\"H1121\"* at|strong=\"H5921\"* every|strong=\"H8179\"* gate|strong=\"H8179\"*. They|strong=\"H3588\"* didn’t need to|strong=\"H5921\"* depart|strong=\"H5493\"* from|strong=\"H5493\"* their|strong=\"H5921\"* service|strong=\"H5656\"*, because|strong=\"H3588\"* their|strong=\"H5921\"* brothers|strong=\"H1121\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* prepared|strong=\"H3559\"* for|strong=\"H3588\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "So|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* prepared|strong=\"H3559\"* the|strong=\"H3605\"* same|strong=\"H1931\"* day|strong=\"H3117\"*, to|strong=\"H3068\"* keep|strong=\"H6213\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* on|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"*, according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H3605\"* commandment|strong=\"H4687\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Josiah|strong=\"H2977\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H1931\"* were|strong=\"H3478\"* present|strong=\"H4672\"* kept|strong=\"H6213\"* the|strong=\"H6213\"* Passover|strong=\"H6453\"* at|strong=\"H3478\"* that|strong=\"H3117\"* time|strong=\"H6256\"*, and|strong=\"H1121\"* the|strong=\"H6213\"* feast|strong=\"H2282\"* of|strong=\"H1121\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 18, + "text": "There|strong=\"H3427\"* was|strong=\"H3478\"* no|strong=\"H3808\"* Passover|strong=\"H6453\"* like|strong=\"H3644\"* that|strong=\"H3605\"* kept|strong=\"H6213\"* in|strong=\"H3427\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Samuel|strong=\"H8050\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"*, nor|strong=\"H3808\"* did|strong=\"H6213\"* any|strong=\"H3605\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* keep|strong=\"H6213\"* such|strong=\"H3644\"* a|strong=\"H3068\"* Passover|strong=\"H6453\"* as|strong=\"H3117\"* Josiah|strong=\"H2977\"* kept|strong=\"H6213\"*—with|strong=\"H6213\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, the|strong=\"H3605\"* Levites|strong=\"H3881\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Israel|strong=\"H3478\"* who|strong=\"H3605\"* were|strong=\"H3478\"* present|strong=\"H4672\"*, and|strong=\"H3063\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 19, + "text": "This|strong=\"H2088\"* Passover|strong=\"H6453\"* was|strong=\"H8141\"* kept|strong=\"H6213\"* in|strong=\"H8141\"* the|strong=\"H6213\"* eighteenth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H8141\"* the|strong=\"H6213\"* reign|strong=\"H4438\"* of|strong=\"H8141\"* Josiah|strong=\"H2977\"*." + }, + { + "verseNum": 20, + "text": "After|strong=\"H5921\"* all|strong=\"H3605\"* this|strong=\"H2063\"*, when|strong=\"H3318\"* Josiah|strong=\"H2977\"* had|strong=\"H4428\"* prepared|strong=\"H3559\"* the|strong=\"H3605\"* temple|strong=\"H1004\"*, Neco|strong=\"H5224\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* went|strong=\"H3318\"* up|strong=\"H5927\"* to|strong=\"H3318\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* Carchemish|strong=\"H3751\"* by|strong=\"H5921\"* the|strong=\"H3605\"* Euphrates|strong=\"H6578\"*, and|strong=\"H4428\"* Josiah|strong=\"H2977\"* went|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"H3588\"* he|strong=\"H3588\"* sent|strong=\"H7971\"* ambassadors|strong=\"H4397\"* to|strong=\"H7971\"* him|strong=\"H5921\"*, saying, “What|strong=\"H4100\"* have|strong=\"H3063\"* I|strong=\"H3588\"* to|strong=\"H7971\"* do|strong=\"H4100\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*? I|strong=\"H3588\"* come|strong=\"H3063\"* not|strong=\"H3808\"* against|strong=\"H5921\"* you|strong=\"H3588\"* today|strong=\"H3117\"*, but|strong=\"H3588\"* against|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* with|strong=\"H5973\"* which|strong=\"H1004\"* I|strong=\"H3588\"* have|strong=\"H3063\"* war|strong=\"H4421\"*. God|strong=\"H3808\"* has|strong=\"H4428\"* commanded me|strong=\"H7971\"* to|strong=\"H7971\"* make|strong=\"H3588\"* haste. Beware that|strong=\"H3588\"* it|strong=\"H5921\"* is|strong=\"H4100\"* God|strong=\"H3808\"* who|strong=\"H3063\"* is|strong=\"H4100\"* with|strong=\"H5973\"* me|strong=\"H7971\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* not|strong=\"H3808\"* destroy|strong=\"H7843\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 22, + "text": "Nevertheless|strong=\"H3588\"* Josiah|strong=\"H2977\"* would|strong=\"H1697\"* not|strong=\"H3808\"* turn|strong=\"H5437\"* his|strong=\"H8085\"* face|strong=\"H6440\"* from|strong=\"H4480\"* him|strong=\"H6440\"*, but|strong=\"H3588\"* disguised|strong=\"H2664\"* himself|strong=\"H6440\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* might fight|strong=\"H3898\"* with|strong=\"H3898\"* him|strong=\"H6440\"*, and|strong=\"H6440\"* didn’t listen|strong=\"H8085\"* to|strong=\"H6440\"* the|strong=\"H6440\"* words|strong=\"H1697\"* of|strong=\"H1697\"* Neco|strong=\"H5224\"* from|strong=\"H4480\"* the|strong=\"H6440\"* mouth|strong=\"H6310\"* of|strong=\"H1697\"* God|strong=\"H3808\"*, and|strong=\"H6440\"* came|strong=\"H1697\"* to|strong=\"H6440\"* fight|strong=\"H3898\"* in|strong=\"H8085\"* the|strong=\"H6440\"* valley|strong=\"H1237\"* of|strong=\"H1697\"* Megiddo|strong=\"H4023\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3588\"* archers|strong=\"H3384\"* shot|strong=\"H3384\"* at|strong=\"H4428\"* King|strong=\"H4428\"* Josiah|strong=\"H2977\"*; and|strong=\"H4428\"* the|strong=\"H3588\"* king|strong=\"H4428\"* said to|strong=\"H4428\"* his|strong=\"H3588\"* servants|strong=\"H5650\"*, “Take|strong=\"H5674\"* me|strong=\"H5674\"* away|strong=\"H5674\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H2470\"* seriously wounded|strong=\"H2470\"*!”" + }, + { + "verseNum": 24, + "text": "So|strong=\"H4480\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* took|strong=\"H7392\"* him|strong=\"H5921\"* out|strong=\"H4480\"* of|strong=\"H5650\"* the|strong=\"H3605\"* chariot|strong=\"H7393\"*, and|strong=\"H3063\"* put|strong=\"H4191\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* second|strong=\"H4932\"* chariot|strong=\"H7393\"* that|strong=\"H3605\"* he|strong=\"H3605\"* had|strong=\"H3063\"*, and|strong=\"H3063\"* brought|strong=\"H3212\"* him|strong=\"H5921\"* to|strong=\"H4191\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H3063\"* he|strong=\"H3605\"* died|strong=\"H4191\"*, and|strong=\"H3063\"* was|strong=\"H3063\"* buried|strong=\"H6912\"* in|strong=\"H5921\"* the|strong=\"H3605\"* tombs|strong=\"H6913\"* of|strong=\"H5650\"* his|strong=\"H3605\"* fathers. All|strong=\"H3605\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"* mourned for|strong=\"H5921\"* Josiah|strong=\"H2977\"*." + }, + { + "verseNum": 25, + "text": "Jeremiah|strong=\"H3414\"* lamented|strong=\"H6969\"* for|strong=\"H5704\"* Josiah|strong=\"H2977\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* singing|strong=\"H7891\"* men|strong=\"H7891\"* and|strong=\"H3478\"* singing|strong=\"H7891\"* women|strong=\"H7891\"* spoke of|strong=\"H3117\"* Josiah|strong=\"H2977\"* in|strong=\"H5921\"* their|strong=\"H3605\"* lamentations|strong=\"H7015\"* to|strong=\"H5704\"* this|strong=\"H5414\"* day|strong=\"H3117\"*; and|strong=\"H3478\"* they|strong=\"H3117\"* made|strong=\"H5414\"* them|strong=\"H5414\"* an|strong=\"H5414\"* ordinance|strong=\"H2706\"* in|strong=\"H5921\"* Israel|strong=\"H3478\"*. Behold|strong=\"H2005\"*, they|strong=\"H3117\"* are|strong=\"H3117\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* lamentations|strong=\"H7015\"*." + }, + { + "verseNum": 26, + "text": "Now the|strong=\"H3068\"* rest|strong=\"H3499\"* of|strong=\"H3068\"* the|strong=\"H3068\"* acts|strong=\"H1697\"* of|strong=\"H3068\"* Josiah|strong=\"H2977\"* and|strong=\"H3068\"* his|strong=\"H3068\"* good|strong=\"H2617\"* deeds|strong=\"H1697\"*, according to|strong=\"H3068\"* that|strong=\"H3068\"* which|strong=\"H3068\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"*," + }, + { + "verseNum": 27, + "text": "and|strong=\"H3063\"* his|strong=\"H5921\"* acts|strong=\"H1697\"*, first|strong=\"H7223\"* and|strong=\"H3063\"* last, behold|strong=\"H2005\"*, they|strong=\"H5921\"* are|strong=\"H3478\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"*." + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3947\"* the|strong=\"H3947\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H3947\"* land took|strong=\"H3947\"* Jehoahaz|strong=\"H3059\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, and|strong=\"H1121\"* made|strong=\"H4427\"* him|strong=\"H4427\"* king|strong=\"H4427\"* in|strong=\"H4427\"* his|strong=\"H3947\"* father|strong=\"H1121\"*’s place|strong=\"H8478\"* in|strong=\"H4427\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "Joahaz|strong=\"H3099\"* was|strong=\"H1121\"* twenty-three|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H3389\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*; and|strong=\"H1121\"* he|strong=\"H3389\"* reigned|strong=\"H4427\"* three|strong=\"H7969\"* months|strong=\"H2320\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H5493\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* removed|strong=\"H5493\"* him|strong=\"H4428\"* from|strong=\"H5493\"* office at|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3967\"* fined|strong=\"H6064\"* the|strong=\"H5493\"* land one|strong=\"H3967\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"* of|strong=\"H4428\"* silver|strong=\"H3701\"* and|strong=\"H3967\"* a|strong=\"H3068\"* talent|strong=\"H3603\"*+ 36:3 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces* of|strong=\"H4428\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* made|strong=\"H4427\"* Eliakim his|strong=\"H3947\"* brother king|strong=\"H4428\"* over|strong=\"H5921\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* changed|strong=\"H5437\"* his|strong=\"H3947\"* name|strong=\"H8034\"* to|strong=\"H5921\"* Jehoiakim|strong=\"H3079\"*. Neco|strong=\"H5224\"* took|strong=\"H3947\"* Joahaz|strong=\"H3099\"* his|strong=\"H3947\"* brother, and|strong=\"H3063\"* carried|strong=\"H5437\"* him|strong=\"H5921\"* to|strong=\"H5921\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 5, + "text": "Jehoiakim|strong=\"H3079\"* was|strong=\"H3068\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H6213\"* he|strong=\"H6213\"* began to|strong=\"H3068\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H6213\"* reigned|strong=\"H4427\"* eleven|strong=\"H6240\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H8141\"* Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*’s sight|strong=\"H5869\"*." + }, + { + "verseNum": 6, + "text": "Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon came|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H4428\"* bound him|strong=\"H5921\"* in|strong=\"H5921\"* fetters|strong=\"H5178\"* to|strong=\"H3212\"* carry|strong=\"H5927\"* him|strong=\"H5921\"* to|strong=\"H3212\"* Babylon." + }, + { + "verseNum": 7, + "text": "Nebuchadnezzar|strong=\"H5019\"* also|strong=\"H3068\"* carried|strong=\"H3068\"* some of|strong=\"H1004\"* the|strong=\"H5414\"* vessels|strong=\"H3627\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* to|strong=\"H3068\"* Babylon, and|strong=\"H3068\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H3068\"* his|strong=\"H5414\"* temple|strong=\"H1004\"* at|strong=\"H3068\"* Babylon." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H2005\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H1121\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"*, and|strong=\"H1121\"* his|strong=\"H5921\"* abominations|strong=\"H8441\"* which|strong=\"H1697\"* he|strong=\"H6213\"* did|strong=\"H6213\"*, and|strong=\"H1121\"* that|strong=\"H1697\"* which|strong=\"H1697\"* was|strong=\"H3478\"* found|strong=\"H4672\"* in|strong=\"H5921\"* him|strong=\"H5921\"*, behold|strong=\"H2005\"*, they|strong=\"H5921\"* are|strong=\"H1121\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H1121\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* Judah|strong=\"H3063\"*; and|strong=\"H1121\"* Jehoiachin|strong=\"H3078\"* his|strong=\"H5921\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H5921\"* his|strong=\"H5921\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 9, + "text": "Jehoiachin|strong=\"H3078\"* was|strong=\"H3068\"* eight|strong=\"H8083\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H3117\"* he|strong=\"H3117\"* began to|strong=\"H3068\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H3117\"* reigned|strong=\"H4427\"* three|strong=\"H7969\"* months|strong=\"H2320\"* and|strong=\"H1121\"* ten|strong=\"H6235\"* days|strong=\"H3117\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. He|strong=\"H3117\"* did|strong=\"H6213\"* that|strong=\"H3117\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H8141\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*." + }, + { + "verseNum": 10, + "text": "At|strong=\"H5921\"* the|strong=\"H5921\"* return|strong=\"H8666\"* of|strong=\"H4428\"* the|strong=\"H5921\"* year|strong=\"H8141\"*, King|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"* sent|strong=\"H7971\"* and|strong=\"H3063\"* brought|strong=\"H3068\"* him|strong=\"H5921\"* to|strong=\"H3068\"* Babylon, with|strong=\"H5973\"* the|strong=\"H5921\"* valuable|strong=\"H2532\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3063\"* made|strong=\"H4427\"* Zedekiah|strong=\"H6667\"* his|strong=\"H3068\"* brother king|strong=\"H4428\"* over|strong=\"H5921\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 11, + "text": "Zedekiah|strong=\"H6667\"* was|strong=\"H1121\"* twenty-one|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H3389\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H3389\"* reigned|strong=\"H4427\"* eleven|strong=\"H6240\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*’s sight|strong=\"H5869\"*. He|strong=\"H6213\"* didn’t humble|strong=\"H3665\"* himself|strong=\"H3665\"* before|strong=\"H6440\"* Jeremiah|strong=\"H3414\"* the|strong=\"H6440\"* prophet|strong=\"H5030\"* speaking from|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s mouth|strong=\"H6310\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3068\"* also|strong=\"H1571\"* rebelled|strong=\"H4775\"* against|strong=\"H4775\"* King|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"*, who|strong=\"H3068\"* had|strong=\"H3068\"* made|strong=\"H7185\"* him|strong=\"H7725\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* God|strong=\"H3068\"*; but|strong=\"H1571\"* he|strong=\"H3068\"* stiffened|strong=\"H7185\"* his|strong=\"H3068\"* neck|strong=\"H6203\"*, and|strong=\"H3478\"* hardened|strong=\"H7185\"* his|strong=\"H3068\"* heart|strong=\"H3824\"* against|strong=\"H4775\"* turning|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 14, + "text": "Moreover|strong=\"H1571\"* all|strong=\"H3605\"* the|strong=\"H3605\"* chiefs|strong=\"H8269\"* of|strong=\"H1004\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"* trespassed|strong=\"H4603\"* very|strong=\"H7235\"* greatly|strong=\"H7235\"* after|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* abominations|strong=\"H8441\"* of|strong=\"H1004\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* polluted|strong=\"H2930\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* which|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* made|strong=\"H7235\"* holy|strong=\"H6942\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* their|strong=\"H3068\"* fathers, sent|strong=\"H7971\"* to|strong=\"H3068\"* them|strong=\"H5921\"* by|strong=\"H3027\"* his|strong=\"H3068\"* messengers|strong=\"H4397\"*, rising|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H3068\"* sending|strong=\"H7971\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3068\"* compassion|strong=\"H2550\"* on|strong=\"H5921\"* his|strong=\"H3068\"* people|strong=\"H5971\"* and|strong=\"H3068\"* on|strong=\"H5921\"* his|strong=\"H3068\"* dwelling|strong=\"H4583\"* place|strong=\"H3027\"*;" + }, + { + "verseNum": 16, + "text": "but|strong=\"H1961\"* they|strong=\"H3068\"* mocked|strong=\"H3931\"* the|strong=\"H3068\"* messengers|strong=\"H4397\"* of|strong=\"H3068\"* God|strong=\"H3068\"*, despised his|strong=\"H3068\"* words|strong=\"H1697\"*, and|strong=\"H3068\"* scoffed|strong=\"H8591\"* at|strong=\"H3068\"* his|strong=\"H3068\"* prophets|strong=\"H5030\"*, until|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s wrath|strong=\"H2534\"* arose|strong=\"H5927\"* against|strong=\"H5927\"* his|strong=\"H3068\"* people|strong=\"H5971\"*, until|strong=\"H5704\"* there|strong=\"H1961\"* was|strong=\"H3068\"* no|strong=\"H5927\"* remedy|strong=\"H4832\"*." + }, + { + "verseNum": 17, + "text": "Therefore|strong=\"H5921\"* he|strong=\"H3605\"* brought|strong=\"H5927\"* on|strong=\"H5921\"* them|strong=\"H5414\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"*, who|strong=\"H3605\"* killed|strong=\"H2026\"* their|strong=\"H3605\"* young men|strong=\"H2205\"* with|strong=\"H1004\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* in|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H4428\"* their|strong=\"H3605\"* sanctuary|strong=\"H4720\"*, and|strong=\"H4428\"* had|strong=\"H4428\"* no|strong=\"H3808\"* compassion|strong=\"H2550\"* on|strong=\"H5921\"* young man|strong=\"H2205\"* or|strong=\"H3808\"* virgin|strong=\"H1330\"*, old|strong=\"H2205\"* man|strong=\"H2205\"* or|strong=\"H3808\"* infirm|strong=\"H3486\"*. He|strong=\"H3605\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* all|strong=\"H3605\"* into|strong=\"H5927\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 18, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"*, great|strong=\"H1419\"* and|strong=\"H3068\"* small|strong=\"H6996\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* treasures of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* treasures of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H3068\"* of|strong=\"H4428\"* his|strong=\"H3605\"* princes|strong=\"H8269\"*, all|strong=\"H3605\"* these|strong=\"H3605\"* he|strong=\"H3068\"* brought|strong=\"H3068\"* to|strong=\"H3068\"* Babylon." + }, + { + "verseNum": 19, + "text": "They|strong=\"H3605\"* burned|strong=\"H8313\"* God’s house|strong=\"H1004\"*, broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H3605\"* wall|strong=\"H2346\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*, burned|strong=\"H8313\"* all|strong=\"H3605\"* its|strong=\"H3605\"* palaces with|strong=\"H8313\"* fire, and|strong=\"H1004\"* destroyed|strong=\"H7843\"* all|strong=\"H3605\"* of|strong=\"H1004\"* its|strong=\"H3605\"* valuable|strong=\"H4261\"* vessels|strong=\"H3627\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H5704\"* carried|strong=\"H1540\"* those|strong=\"H4480\"* who|strong=\"H1121\"* had|strong=\"H1961\"* escaped|strong=\"H7611\"* from|strong=\"H4480\"* the|strong=\"H4480\"* sword|strong=\"H2719\"* away|strong=\"H1540\"* to|strong=\"H5704\"* Babylon, and|strong=\"H1121\"* they|strong=\"H5704\"* were|strong=\"H1961\"* servants|strong=\"H5650\"* to|strong=\"H5704\"* him|strong=\"H4427\"* and|strong=\"H1121\"* his|strong=\"H1540\"* sons|strong=\"H1121\"* until|strong=\"H5704\"* the|strong=\"H4480\"* reign|strong=\"H4427\"* of|strong=\"H1121\"* the|strong=\"H4480\"* kingdom|strong=\"H4438\"* of|strong=\"H1121\"* Persia|strong=\"H6539\"*," + }, + { + "verseNum": 21, + "text": "to|strong=\"H5704\"* fulfill|strong=\"H4390\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* by|strong=\"H8141\"* Jeremiah|strong=\"H3414\"*’s mouth|strong=\"H6310\"*, until|strong=\"H5704\"* the|strong=\"H3605\"* land had|strong=\"H3068\"* enjoyed|strong=\"H7521\"* its|strong=\"H3605\"* Sabbaths|strong=\"H7676\"*. As|strong=\"H5704\"* long|strong=\"H5704\"* as|strong=\"H5704\"* it|strong=\"H5704\"* lay desolate|strong=\"H8074\"*, it|strong=\"H5704\"* kept|strong=\"H7673\"* Sabbath|strong=\"H7676\"*, to|strong=\"H5704\"* fulfill|strong=\"H4390\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 22, + "text": "Now|strong=\"H1571\"* in|strong=\"H8141\"* the|strong=\"H3605\"* first year|strong=\"H8141\"* of|strong=\"H4428\"* Cyrus|strong=\"H3566\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"*, that|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* by|strong=\"H5674\"* the|strong=\"H3605\"* mouth|strong=\"H6310\"* of|strong=\"H4428\"* Jeremiah|strong=\"H3414\"* might|strong=\"H3068\"* be|strong=\"H1697\"* accomplished|strong=\"H3615\"*, Yahweh|strong=\"H3068\"* stirred|strong=\"H5782\"* up|strong=\"H5782\"* the|strong=\"H3605\"* spirit|strong=\"H7307\"* of|strong=\"H4428\"* Cyrus|strong=\"H3566\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"*, so|strong=\"H1571\"* that|strong=\"H3605\"* he|strong=\"H3068\"* made|strong=\"H8141\"* a|strong=\"H3068\"* proclamation|strong=\"H6963\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* his|strong=\"H3605\"* kingdom|strong=\"H4438\"*, and|strong=\"H3068\"* put|strong=\"H3068\"* it|strong=\"H3615\"* also|strong=\"H1571\"* in|strong=\"H8141\"* writing|strong=\"H4385\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 23, + "text": "“Cyrus|strong=\"H3566\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"* says|strong=\"H3541\"*, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H4428\"* heaven|strong=\"H8064\"*, has|strong=\"H3068\"* given|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H4428\"* the|strong=\"H3605\"* earth|strong=\"H5927\"* to|strong=\"H3068\"* me|strong=\"H5414\"*; and|strong=\"H3063\"* he|strong=\"H1931\"* has|strong=\"H3068\"* commanded me|strong=\"H5414\"* to|strong=\"H3068\"* build|strong=\"H1129\"* him|strong=\"H5414\"* a|strong=\"H3068\"* house|strong=\"H1004\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, which|strong=\"H1931\"* is|strong=\"H3068\"* in|strong=\"H5921\"* Judah|strong=\"H3063\"*. Whoever|strong=\"H3605\"* there|strong=\"H5927\"* is|strong=\"H3068\"* among|strong=\"H5973\"* you|strong=\"H5414\"* of|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, Yahweh|strong=\"H3068\"* his|strong=\"H3605\"* God|strong=\"H3068\"* be|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H5414\"*, and|strong=\"H3063\"* let|strong=\"H5414\"* him|strong=\"H5414\"* go|strong=\"H5927\"* up|strong=\"H5927\"*.’”" + } + ] + } + ] + }, + { + "name": "Ezra", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1571\"* in|strong=\"H8141\"* the|strong=\"H3605\"* first year|strong=\"H8141\"* of|strong=\"H4428\"* Cyrus|strong=\"H3566\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"*, that|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* by|strong=\"H5674\"* Jeremiah|strong=\"H3414\"*’s mouth|strong=\"H6310\"* might|strong=\"H3068\"* be|strong=\"H1697\"* accomplished|strong=\"H3615\"*, Yahweh|strong=\"H3068\"* stirred|strong=\"H5782\"* up|strong=\"H5782\"* the|strong=\"H3605\"* spirit|strong=\"H7307\"* of|strong=\"H4428\"* Cyrus|strong=\"H3566\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"*, so|strong=\"H1571\"* that|strong=\"H3605\"* he|strong=\"H3068\"* made|strong=\"H8141\"* a|strong=\"H3068\"* proclamation|strong=\"H6963\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* his|strong=\"H3605\"* kingdom|strong=\"H4438\"*, and|strong=\"H3068\"* put|strong=\"H3068\"* it|strong=\"H3615\"* also|strong=\"H1571\"* in|strong=\"H8141\"* writing|strong=\"H4385\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Cyrus|strong=\"H3566\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"* says|strong=\"H3541\"*, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"*+ 1:2 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* of|strong=\"H4428\"* heaven|strong=\"H8064\"*, has|strong=\"H3068\"* given|strong=\"H5414\"* me|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H4428\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*; and|strong=\"H3063\"* he|strong=\"H1931\"* has|strong=\"H3068\"* commanded me|strong=\"H5414\"* to|strong=\"H3068\"* build|strong=\"H1129\"* him|strong=\"H5414\"* a|strong=\"H3068\"* house|strong=\"H1004\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, which|strong=\"H1931\"* is|strong=\"H3068\"* in|strong=\"H5921\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 3, + "text": "Whoever|strong=\"H3605\"* there|strong=\"H1961\"* is|strong=\"H3068\"* among|strong=\"H5973\"* you|strong=\"H3605\"* of|strong=\"H1004\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, may|strong=\"H1961\"* his|strong=\"H3605\"* God|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, and|strong=\"H3063\"* let|strong=\"H1961\"* him|strong=\"H5973\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, which|strong=\"H1931\"* is|strong=\"H3068\"* in|strong=\"H3478\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* build|strong=\"H1129\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* (he|strong=\"H1931\"* is|strong=\"H3068\"* God|strong=\"H3068\"*), which|strong=\"H1931\"* is|strong=\"H3068\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 4, + "text": "Whoever|strong=\"H3605\"* is|strong=\"H1931\"* left|strong=\"H7604\"*, in|strong=\"H1004\"* any|strong=\"H3605\"* place|strong=\"H4725\"* where|strong=\"H8033\"* he|strong=\"H1931\"* lives|strong=\"H1481\"*, let|strong=\"H7604\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H1004\"* his|strong=\"H3605\"* place|strong=\"H4725\"* help|strong=\"H5375\"* him|strong=\"H5973\"* with|strong=\"H5973\"* silver|strong=\"H3701\"*, with|strong=\"H5973\"* gold|strong=\"H2091\"*, with|strong=\"H5973\"* goods|strong=\"H7399\"*, and|strong=\"H3701\"* with|strong=\"H5973\"* animals, in|strong=\"H1004\"* addition to|strong=\"H3389\"* the|strong=\"H3605\"* free|strong=\"H5973\"* will|strong=\"H1004\"* offering|strong=\"H5071\"* for|strong=\"H1004\"* God’s house|strong=\"H1004\"* which|strong=\"H1931\"* is|strong=\"H1931\"* in|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*.’”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6965\"* the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H1004\"* fathers’ households|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Benjamin|strong=\"H1144\"*, the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3063\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, all|strong=\"H3605\"* whose|strong=\"H1144\"* spirit|strong=\"H7307\"* God|strong=\"H3068\"* had|strong=\"H3068\"* stirred|strong=\"H5782\"* to|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"*, rose|strong=\"H6965\"* up|strong=\"H5927\"* to|strong=\"H3068\"* build|strong=\"H1129\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* which|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 6, + "text": "All|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3027\"* around|strong=\"H5439\"* them|strong=\"H5921\"* strengthened|strong=\"H2388\"* their|strong=\"H3605\"* hands|strong=\"H3027\"* with|strong=\"H5921\"* vessels|strong=\"H3627\"* of|strong=\"H3027\"* silver|strong=\"H3701\"*, with|strong=\"H5921\"* gold|strong=\"H2091\"*, with|strong=\"H5921\"* goods|strong=\"H7399\"*, with|strong=\"H5921\"* animals, and|strong=\"H3701\"* with|strong=\"H5921\"* precious|strong=\"H4030\"* things|strong=\"H3605\"*, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H3027\"* willingly|strong=\"H5068\"* offered|strong=\"H5068\"*." + }, + { + "verseNum": 7, + "text": "Also|strong=\"H3068\"* Cyrus|strong=\"H3566\"* the|strong=\"H5414\"* king|strong=\"H4428\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H5414\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, which|strong=\"H3068\"* Nebuchadnezzar|strong=\"H5019\"* had|strong=\"H3068\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3068\"* had|strong=\"H3068\"* put|strong=\"H5414\"* in|strong=\"H3068\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H4428\"* his|strong=\"H5414\"* gods;" + }, + { + "verseNum": 8, + "text": "even|strong=\"H5921\"* those|strong=\"H5921\"*, Cyrus|strong=\"H3566\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* by|strong=\"H3027\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Mithredath|strong=\"H4990\"* the|strong=\"H5921\"* treasurer|strong=\"H1489\"*, and|strong=\"H3063\"* counted|strong=\"H5608\"* them|strong=\"H5921\"* out|strong=\"H3318\"* to|strong=\"H3318\"* Sheshbazzar|strong=\"H8339\"* the|strong=\"H5921\"* prince|strong=\"H5387\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 9, + "text": "This is|strong=\"H3701\"* the|strong=\"H4557\"* number|strong=\"H4557\"* of|strong=\"H4557\"* them: thirty|strong=\"H7970\"* platters of|strong=\"H4557\"* gold|strong=\"H2091\"*, one thousand platters of|strong=\"H4557\"* silver|strong=\"H3701\"*, twenty-nine|strong=\"H6242\"* knives|strong=\"H4252\"*," + }, + { + "verseNum": 10, + "text": "thirty|strong=\"H7970\"* bowls|strong=\"H3713\"* of|strong=\"H3627\"* gold|strong=\"H2091\"*, four hundred|strong=\"H3967\"* ten|strong=\"H6235\"* silver|strong=\"H3701\"* bowls|strong=\"H3713\"* of|strong=\"H3627\"* a|strong=\"H3068\"* second|strong=\"H4932\"* kind, and|strong=\"H3967\"* one|strong=\"H3967\"* thousand other|strong=\"H4932\"* vessels|strong=\"H3627\"*." + }, + { + "verseNum": 11, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* gold|strong=\"H2091\"* and|strong=\"H3967\"* of|strong=\"H3627\"* silver|strong=\"H3701\"* were|strong=\"H3627\"* five|strong=\"H2568\"* thousand four hundred|strong=\"H3967\"*. Sheshbazzar|strong=\"H8339\"* brought|strong=\"H5927\"* all|strong=\"H3605\"* these|strong=\"H3605\"* up|strong=\"H5927\"* when|strong=\"H5927\"* the|strong=\"H3605\"* captives|strong=\"H1473\"* were|strong=\"H3627\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* Babylon to|strong=\"H5927\"* Jerusalem|strong=\"H3389\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H4428\"* these|strong=\"H4428\"* are|strong=\"H1121\"* the|strong=\"H7725\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H7725\"* province|strong=\"H4082\"* who|strong=\"H1121\"* went|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H7725\"* of|strong=\"H1121\"* the|strong=\"H7725\"* captivity|strong=\"H7628\"* of|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* had|strong=\"H4428\"* been|strong=\"H5927\"* carried|strong=\"H1540\"* away|strong=\"H7725\"*, whom Nebuchadnezzar|strong=\"H5020\"* the|strong=\"H7725\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon had|strong=\"H4428\"* carried|strong=\"H1540\"* away|strong=\"H7725\"* to|strong=\"H7725\"* Babylon, and|strong=\"H1121\"* who|strong=\"H1121\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"* and|strong=\"H1121\"* Judah|strong=\"H3063\"*, everyone to|strong=\"H7725\"* his|strong=\"H7725\"* city|strong=\"H5892\"*;" + }, + { + "verseNum": 2, + "text": "who|strong=\"H5971\"* came|strong=\"H3478\"* with|strong=\"H5973\"* Zerubbabel|strong=\"H2216\"*, Jeshua|strong=\"H3442\"*, Nehemiah|strong=\"H5166\"*, Seraiah|strong=\"H8304\"*, Reelaiah|strong=\"H7480\"*, Mordecai|strong=\"H4782\"*, Bilshan|strong=\"H1114\"*, Mispar|strong=\"H4558\"*, Bigvai, Rehum|strong=\"H7348\"*, and|strong=\"H3478\"* Baanah|strong=\"H1196\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Parosh|strong=\"H6551\"*, two|strong=\"H8147\"* thousand one|strong=\"H1121\"* hundred|strong=\"H3967\"* seventy-two." + }, + { + "verseNum": 4, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Shephatiah|strong=\"H8203\"*, three|strong=\"H7969\"* hundred|strong=\"H3967\"* seventy-two." + }, + { + "verseNum": 5, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Arah, seven|strong=\"H7651\"* hundred|strong=\"H3967\"* seventy-five|strong=\"H7657\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3097\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Pahathmoab, of|strong=\"H1121\"* the|strong=\"H3097\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Jeshua|strong=\"H3442\"* and|strong=\"H3967\"* Joab|strong=\"H3097\"*, two|strong=\"H8147\"* thousand eight|strong=\"H8083\"* hundred|strong=\"H3967\"* twelve|strong=\"H8147\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Elam|strong=\"H5867\"*, one|strong=\"H1121\"* thousand two|strong=\"H3967\"* hundred|strong=\"H3967\"* fifty-four." + }, + { + "verseNum": 8, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zattu|strong=\"H2240\"*, nine|strong=\"H8672\"* hundred|strong=\"H3967\"* forty-five." + }, + { + "verseNum": 9, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zaccai|strong=\"H2140\"*, seven|strong=\"H7651\"* hundred|strong=\"H3967\"* sixty|strong=\"H8346\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Bani|strong=\"H1137\"*, six|strong=\"H8337\"* hundred|strong=\"H3967\"* forty-two|strong=\"H8147\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Bebai, six|strong=\"H8337\"* hundred|strong=\"H3967\"* twenty-three|strong=\"H6242\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Azgad|strong=\"H5803\"*, one|strong=\"H1121\"* thousand two|strong=\"H8147\"* hundred|strong=\"H3967\"* twenty-two|strong=\"H6242\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Adonikam, six|strong=\"H8337\"* hundred|strong=\"H3967\"* sixty-six|strong=\"H8346\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Bigvai, two thousand fifty-six." + }, + { + "verseNum": 15, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Adin|strong=\"H5720\"*, four hundred|strong=\"H3967\"* fifty-four." + }, + { + "verseNum": 16, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ater, of|strong=\"H1121\"* Hezekiah|strong=\"H2396\"*, ninety-eight|strong=\"H8673\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Bezai|strong=\"H1209\"*, three|strong=\"H7969\"* hundred|strong=\"H3967\"* twenty-three|strong=\"H6242\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Jorah|strong=\"H3139\"*, one|strong=\"H1121\"* hundred|strong=\"H3967\"* twelve|strong=\"H8147\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hashum|strong=\"H2828\"*, two|strong=\"H3967\"* hundred|strong=\"H3967\"* twenty-three|strong=\"H6242\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gibbar|strong=\"H1402\"*, ninety-five|strong=\"H8673\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Bethlehem|strong=\"H1035\"*, one|strong=\"H1121\"* hundred|strong=\"H3967\"* twenty-three|strong=\"H6242\"*." + }, + { + "verseNum": 22, + "text": "The men of Netophah|strong=\"H5199\"*, fifty-six." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3967\"* men of|strong=\"H3967\"* Anathoth|strong=\"H6068\"*, one|strong=\"H3967\"* hundred|strong=\"H3967\"* twenty-eight|strong=\"H6242\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Azmaveth|strong=\"H5820\"*, forty-two|strong=\"H8147\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Kiriath|strong=\"H7157\"* Arim, Chephirah|strong=\"H3716\"*, and|strong=\"H3967\"* Beeroth, seven|strong=\"H7651\"* hundred|strong=\"H3967\"* forty-three." + }, + { + "verseNum": 26, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ramah|strong=\"H7414\"* and|strong=\"H3967\"* Geba|strong=\"H1387\"*, six|strong=\"H8337\"* hundred|strong=\"H3967\"* twenty-one|strong=\"H6242\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H8147\"* men|strong=\"H8147\"* of|strong=\"H8147\"* Michmas|strong=\"H4363\"*, one|strong=\"H8147\"* hundred|strong=\"H3967\"* twenty-two|strong=\"H6242\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H3967\"* men of|strong=\"H3967\"* Bethel|strong=\"H1008\"* and|strong=\"H3967\"* Ai|strong=\"H5857\"*, two|strong=\"H3967\"* hundred|strong=\"H3967\"* twenty-three|strong=\"H6242\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Nebo|strong=\"H5015\"*, fifty-two|strong=\"H2572\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Magbish|strong=\"H4019\"*, one|strong=\"H1121\"* hundred|strong=\"H3967\"* fifty-six." + }, + { + "verseNum": 31, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* other Elam|strong=\"H5867\"*, one|strong=\"H1121\"* thousand two|strong=\"H3967\"* hundred|strong=\"H3967\"* fifty-four." + }, + { + "verseNum": 32, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Harim|strong=\"H2766\"*, three|strong=\"H7969\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Lod|strong=\"H3850\"*, Hadid|strong=\"H2307\"*, and|strong=\"H3967\"* Ono, seven|strong=\"H7651\"* hundred|strong=\"H3967\"* twenty-five|strong=\"H6242\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Jericho|strong=\"H3405\"*, three|strong=\"H7969\"* hundred|strong=\"H3967\"* forty-five." + }, + { + "verseNum": 35, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Senaah|strong=\"H5570\"*, three|strong=\"H7969\"* thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"H3548\"* priests|strong=\"H3548\"*: the|strong=\"H3548\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Jedaiah|strong=\"H3048\"*, of|strong=\"H1121\"* the|strong=\"H3548\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Jeshua|strong=\"H3442\"*, nine|strong=\"H8672\"* hundred|strong=\"H3967\"* seventy-three." + }, + { + "verseNum": 37, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Immer, one|strong=\"H1121\"* thousand fifty-two|strong=\"H2572\"*." + }, + { + "verseNum": 38, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Pashhur|strong=\"H6583\"*, one|strong=\"H1121\"* thousand two|strong=\"H3967\"* hundred|strong=\"H3967\"* forty-seven." + }, + { + "verseNum": 39, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Harim|strong=\"H2766\"*, one|strong=\"H1121\"* thousand seventeen|strong=\"H7651\"*." + }, + { + "verseNum": 40, + "text": "The|strong=\"H1121\"* Levites|strong=\"H3881\"*: the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Jeshua|strong=\"H3442\"* and|strong=\"H1121\"* Kadmiel|strong=\"H6934\"*, of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hodaviah|strong=\"H1938\"*, seventy-four." + }, + { + "verseNum": 41, + "text": "The|strong=\"H1121\"* singers|strong=\"H7891\"*: the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asaph, one|strong=\"H1121\"* hundred|strong=\"H3967\"* twenty-eight|strong=\"H6242\"*." + }, + { + "verseNum": 42, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* gatekeepers|strong=\"H7778\"*: the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Shallum|strong=\"H7967\"*, the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ater, the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Talmon|strong=\"H2929\"*, the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Akkub|strong=\"H6126\"*, the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hatita|strong=\"H2410\"*, the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Shobai|strong=\"H7630\"*, in|strong=\"H1121\"* all|strong=\"H3605\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* thirty-nine." + }, + { + "verseNum": 43, + "text": "The|strong=\"H1121\"* temple|strong=\"H5411\"* servants|strong=\"H5411\"*: the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ziha|strong=\"H6727\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hasupha|strong=\"H2817\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Tabbaoth|strong=\"H2884\"*," + }, + { + "verseNum": 44, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Keros|strong=\"H7026\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Siaha|strong=\"H5517\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Padon|strong=\"H6303\"*," + }, + { + "verseNum": 45, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Lebanah|strong=\"H3838\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hagabah|strong=\"H2286\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Akkub|strong=\"H6126\"*," + }, + { + "verseNum": 46, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hagab|strong=\"H2285\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Shamlai, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hanan|strong=\"H2605\"*," + }, + { + "verseNum": 47, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Giddel|strong=\"H1435\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gahar|strong=\"H1515\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reaiah|strong=\"H7211\"*," + }, + { + "verseNum": 48, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Rezin|strong=\"H7526\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Nekoda|strong=\"H5353\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gazzam|strong=\"H1502\"*," + }, + { + "verseNum": 49, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Uzza|strong=\"H5798\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Paseah|strong=\"H6454\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Besai|strong=\"H1153\"*," + }, + { + "verseNum": 50, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asnah, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Meunim|strong=\"H4586\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Nephisim|strong=\"H5304\"*," + }, + { + "verseNum": 51, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Bakbuk|strong=\"H1227\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hakupha|strong=\"H2709\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Harhur|strong=\"H2744\"*," + }, + { + "verseNum": 52, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Bazluth|strong=\"H1213\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Mehida|strong=\"H4240\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Harsha|strong=\"H2797\"*," + }, + { + "verseNum": 53, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Barkos|strong=\"H1302\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Sisera|strong=\"H5516\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Temah|strong=\"H8547\"*," + }, + { + "verseNum": 54, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Neziah|strong=\"H5335\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hatipha|strong=\"H2412\"*." + }, + { + "verseNum": 55, + "text": "The|strong=\"H5650\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*’s servants|strong=\"H5650\"*: the|strong=\"H5650\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Sotai|strong=\"H5479\"*, the|strong=\"H5650\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hassophereth|strong=\"H5618\"*, the|strong=\"H5650\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Peruda|strong=\"H6514\"*," + }, + { + "verseNum": 56, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Jaalah|strong=\"H3279\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Darkon|strong=\"H1874\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Giddel|strong=\"H1435\"*," + }, + { + "verseNum": 57, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Shephatiah|strong=\"H8203\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hattil|strong=\"H2411\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Pochereth Hazzebaim, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ami." + }, + { + "verseNum": 58, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* temple|strong=\"H5411\"* servants|strong=\"H5650\"*, and|strong=\"H3967\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*’s servants|strong=\"H5650\"*, were|strong=\"H1121\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* ninety-two." + }, + { + "verseNum": 59, + "text": "These|strong=\"H1992\"* were|strong=\"H3478\"* those|strong=\"H1992\"* who|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* Tel Melah, Tel Harsha, Cherub|strong=\"H3743\"*, Addan, and|strong=\"H3478\"* Immer; but|strong=\"H3808\"* they|strong=\"H1992\"* could|strong=\"H3201\"* not|strong=\"H3808\"* show|strong=\"H5046\"* their|strong=\"H1992\"* fathers’ houses|strong=\"H1004\"* and|strong=\"H3478\"* their|strong=\"H1992\"* offspring|strong=\"H2233\"*,+ 2:59 or, seed* whether they|strong=\"H1992\"* were|strong=\"H3478\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*:" + }, + { + "verseNum": 60, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Delaiah|strong=\"H1806\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Tobiah|strong=\"H2900\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Nekoda|strong=\"H5353\"*, six|strong=\"H8337\"* hundred|strong=\"H3967\"* fifty-two|strong=\"H2572\"*." + }, + { + "verseNum": 61, + "text": "Of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* priests|strong=\"H3548\"*: the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Habaiah|strong=\"H2252\"*, the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hakkoz|strong=\"H6976\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Barzillai|strong=\"H1271\"*, who|strong=\"H3548\"* took|strong=\"H3947\"* a|strong=\"H3068\"* wife of|strong=\"H1121\"* the|strong=\"H5921\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* Barzillai|strong=\"H1271\"* the|strong=\"H5921\"* Gileadite|strong=\"H1569\"*, and|strong=\"H1121\"* was|strong=\"H8034\"* called|strong=\"H7121\"* after|strong=\"H5921\"* their|strong=\"H3947\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 62, + "text": "These sought|strong=\"H1245\"* their|strong=\"H1245\"* place among|strong=\"H4480\"* those|strong=\"H4480\"* who|strong=\"H4672\"* were|strong=\"H4672\"* registered by|strong=\"H3187\"* genealogy|strong=\"H3187\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* were|strong=\"H4672\"* not|strong=\"H3808\"* found|strong=\"H4672\"*; therefore they|strong=\"H3808\"* were|strong=\"H4672\"* deemed disqualified and|strong=\"H4480\"* removed|strong=\"H4480\"* from|strong=\"H4480\"* the|strong=\"H4480\"* priesthood|strong=\"H3550\"*." + }, + { + "verseNum": 63, + "text": "The|strong=\"H5704\"* governor|strong=\"H8660\"* told them|strong=\"H5975\"* that|strong=\"H3548\"* they|strong=\"H3808\"* should|strong=\"H3548\"* not|strong=\"H3808\"* eat of|strong=\"H3548\"* the|strong=\"H5704\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* until|strong=\"H5704\"* a|strong=\"H3068\"* priest|strong=\"H3548\"* stood|strong=\"H5975\"* up|strong=\"H5975\"* to|strong=\"H5704\"* serve|strong=\"H5975\"* with|strong=\"H3548\"* Urim and|strong=\"H3548\"* with|strong=\"H3548\"* Thummim|strong=\"H8550\"*." + }, + { + "verseNum": 64, + "text": "The|strong=\"H3605\"* whole|strong=\"H3605\"* assembly|strong=\"H6951\"* together|strong=\"H6951\"* was|strong=\"H3605\"* forty-two thousand|strong=\"H7239\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* sixty|strong=\"H8346\"*," + }, + { + "verseNum": 65, + "text": "in|strong=\"H5650\"* addition to|strong=\"H5650\"* their male|strong=\"H5650\"* servants|strong=\"H5650\"* and|strong=\"H3967\"* their female servants|strong=\"H5650\"*, of|strong=\"H5650\"* whom there were|strong=\"H5650\"* seven|strong=\"H7651\"* thousand three|strong=\"H7969\"* hundred|strong=\"H3967\"* thirty-seven|strong=\"H7970\"*; and|strong=\"H3967\"* they had|strong=\"H7891\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* singing|strong=\"H7891\"* men|strong=\"H5650\"* and|strong=\"H3967\"* singing|strong=\"H7891\"* women|strong=\"H7891\"*." + }, + { + "verseNum": 66, + "text": "Their|strong=\"H5483\"* horses|strong=\"H5483\"* were|strong=\"H5483\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* thirty-six|strong=\"H7970\"*; their|strong=\"H5483\"* mules|strong=\"H6505\"*, two|strong=\"H3967\"* hundred|strong=\"H3967\"* forty-five;" + }, + { + "verseNum": 67, + "text": "their camels|strong=\"H1581\"*, four hundred|strong=\"H3967\"* thirty-five|strong=\"H7970\"*; their donkeys|strong=\"H2543\"*, six|strong=\"H8337\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"*." + }, + { + "verseNum": 68, + "text": "Some of|strong=\"H1004\"* the|strong=\"H5921\"* heads|strong=\"H7218\"* of|strong=\"H1004\"* fathers’ households|strong=\"H1004\"*, when|strong=\"H3068\"* they|strong=\"H3068\"* came|strong=\"H3068\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* which|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, offered|strong=\"H5068\"* willingly|strong=\"H5068\"* for|strong=\"H5921\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"* to|strong=\"H3068\"* set|strong=\"H5975\"* it|strong=\"H5921\"* up|strong=\"H5975\"* in|strong=\"H5921\"* its|strong=\"H5921\"* place|strong=\"H4349\"*." + }, + { + "verseNum": 69, + "text": "They|strong=\"H5414\"* gave|strong=\"H5414\"* according|strong=\"H3701\"* to|strong=\"H5414\"* their|strong=\"H5414\"* ability|strong=\"H3581\"* into|strong=\"H3701\"* the|strong=\"H5414\"* treasury of|strong=\"H3548\"* the|strong=\"H5414\"* work|strong=\"H4399\"* sixty-one thousand|strong=\"H7239\"* darics of|strong=\"H3548\"* gold|strong=\"H2091\"*,+ 2:69 a daric was a gold coin issued by a Persian king, weighing about 8.4 grams or about 0.27 troy ounces each.* five|strong=\"H2568\"* thousand|strong=\"H7239\"* minas|strong=\"H4488\"*+ 2:69 A mina is about 600 grams or 1.3 U. S. pounds, so 5,000 minas is about 3 metric tons.* of|strong=\"H3548\"* silver|strong=\"H3701\"*, and|strong=\"H3967\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* priests|strong=\"H3548\"*’ garments|strong=\"H3801\"*." + }, + { + "verseNum": 70, + "text": "So|strong=\"H4480\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3478\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, with|strong=\"H3427\"* some|strong=\"H4480\"* of|strong=\"H3427\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, the|strong=\"H3605\"* singers|strong=\"H7891\"*, the|strong=\"H3605\"* gatekeepers|strong=\"H7778\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* temple|strong=\"H5411\"* servants|strong=\"H5411\"*, lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3605\"* cities|strong=\"H5892\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* in|strong=\"H3427\"* their|strong=\"H3605\"* cities|strong=\"H5892\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1121\"* the|strong=\"H5060\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"* had|strong=\"H3478\"* come|strong=\"H5060\"*, and|strong=\"H1121\"* the|strong=\"H5060\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H5060\"* cities|strong=\"H5892\"*, the|strong=\"H5060\"* people|strong=\"H5971\"* gathered|strong=\"H3478\"* themselves together|strong=\"H5971\"* as|strong=\"H3389\"* one|strong=\"H1121\"* man|strong=\"H1121\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H6965\"* Jeshua|strong=\"H3442\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jozadak|strong=\"H3136\"* stood|strong=\"H6965\"* up|strong=\"H5927\"* with|strong=\"H5921\"* his|strong=\"H5921\"* brothers|strong=\"H1121\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* and|strong=\"H1121\"* Zerubbabel|strong=\"H2216\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shealtiel|strong=\"H7597\"* and|strong=\"H1121\"* his|strong=\"H5921\"* relatives|strong=\"H1121\"*, and|strong=\"H1121\"* built|strong=\"H1129\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H1121\"* the|strong=\"H5921\"* God of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, as|strong=\"H5927\"* it|strong=\"H5921\"* is|strong=\"H3478\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* law|strong=\"H8451\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"* the|strong=\"H5921\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God." + }, + { + "verseNum": 3, + "text": "In|strong=\"H5921\"* spite|strong=\"H5921\"* of|strong=\"H3068\"* their|strong=\"H3068\"* fear because|strong=\"H3588\"* of|strong=\"H3068\"* the|strong=\"H5921\"* peoples|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H5921\"* surrounding lands, they|strong=\"H3588\"* set|strong=\"H3559\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* on|strong=\"H5921\"* its|strong=\"H5921\"* base|strong=\"H4350\"*; and|strong=\"H3068\"* they|strong=\"H3588\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* on|strong=\"H5921\"* it|strong=\"H5921\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, even|strong=\"H6153\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* morning|strong=\"H1242\"* and|strong=\"H3068\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H3117\"* kept|strong=\"H6213\"* the|strong=\"H6213\"* feast|strong=\"H2282\"* of|strong=\"H3117\"* booths|strong=\"H5521\"*, as|strong=\"H1697\"* it|strong=\"H6213\"* is|strong=\"H3117\"* written|strong=\"H3789\"*, and|strong=\"H3117\"* offered|strong=\"H6213\"* the|strong=\"H6213\"* daily|strong=\"H3117\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* by|strong=\"H3117\"* number|strong=\"H4557\"*, according|strong=\"H4941\"* to|strong=\"H6213\"* the|strong=\"H6213\"* ordinance|strong=\"H4941\"*, as|strong=\"H1697\"* the|strong=\"H6213\"* duty|strong=\"H1697\"* of|strong=\"H3117\"* every|strong=\"H3117\"* day|strong=\"H3117\"* required|strong=\"H3117\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"H3068\"* afterward the|strong=\"H3605\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, the|strong=\"H3605\"* offerings|strong=\"H5930\"* of|strong=\"H3068\"* the|strong=\"H3605\"* new|strong=\"H2320\"* moons|strong=\"H2320\"*, of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* set|strong=\"H6942\"* feasts|strong=\"H4150\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* that|strong=\"H3605\"* were|strong=\"H3068\"* consecrated|strong=\"H6942\"*, and|strong=\"H3068\"* of|strong=\"H3068\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* willingly|strong=\"H5068\"* offered|strong=\"H5068\"* a|strong=\"H3068\"* free will|strong=\"H3068\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "From|strong=\"H5927\"* the|strong=\"H3068\"* first|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3068\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*, they|strong=\"H3117\"* began|strong=\"H2490\"* to|strong=\"H3068\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; but|strong=\"H3808\"* the|strong=\"H3068\"* foundation|strong=\"H3245\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"* was|strong=\"H3068\"* not|strong=\"H3808\"* yet|strong=\"H3068\"* laid|strong=\"H3245\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H5921\"* also|strong=\"H4428\"* gave|strong=\"H5414\"* money|strong=\"H3701\"* to|strong=\"H5921\"* the|strong=\"H5921\"* masons|strong=\"H2672\"* and|strong=\"H3701\"* to|strong=\"H5921\"* the|strong=\"H5921\"* carpenters|strong=\"H2796\"*. They|strong=\"H5921\"* also|strong=\"H4428\"* gave|strong=\"H5414\"* food|strong=\"H3978\"*, drink|strong=\"H4960\"*, and|strong=\"H3701\"* oil|strong=\"H8081\"* to|strong=\"H5921\"* the|strong=\"H5921\"* people of|strong=\"H4428\"* Sidon and|strong=\"H3701\"* Tyre|strong=\"H6876\"* to|strong=\"H5921\"* bring|strong=\"H5414\"* cedar trees|strong=\"H6086\"* from|strong=\"H4480\"* Lebanon|strong=\"H3844\"* to|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*, to|strong=\"H5921\"* Joppa|strong=\"H3305\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* grant|strong=\"H5414\"* that|strong=\"H5414\"* they|strong=\"H5921\"* had|strong=\"H4428\"* from|strong=\"H4480\"* Cyrus|strong=\"H3566\"* King|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H5921\"* in|strong=\"H8141\"* the|strong=\"H3605\"* second|strong=\"H8145\"* year|strong=\"H8141\"* of|strong=\"H1121\"* their|strong=\"H3605\"* coming to|strong=\"H3068\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"* at|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* second|strong=\"H8145\"* month|strong=\"H2320\"*, Zerubbabel|strong=\"H2216\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shealtiel|strong=\"H7597\"*, Jeshua|strong=\"H3442\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jozadak|strong=\"H3136\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* rest|strong=\"H7605\"* of|strong=\"H1121\"* their|strong=\"H3605\"* brothers|strong=\"H1121\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* had|strong=\"H3068\"* come out|strong=\"H5921\"* of|strong=\"H1121\"* the|strong=\"H3605\"* captivity|strong=\"H7628\"* to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, began|strong=\"H2490\"* the|strong=\"H3605\"* work|strong=\"H4399\"* and|strong=\"H1121\"* appointed|strong=\"H5975\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, from|strong=\"H5921\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, to|strong=\"H3068\"* have|strong=\"H3068\"* the|strong=\"H3605\"* oversight of|strong=\"H1121\"* the|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H6213\"* Jeshua|strong=\"H3442\"* stood|strong=\"H5975\"* with|strong=\"H1004\"* his|strong=\"H5921\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H5921\"* brothers|strong=\"H1121\"*, Kadmiel|strong=\"H6934\"* and|strong=\"H1121\"* his|strong=\"H5921\"* sons|strong=\"H1121\"*, the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, together|strong=\"H5921\"* to|strong=\"H6213\"* have|strong=\"H1121\"* the|strong=\"H5921\"* oversight of|strong=\"H1121\"* the|strong=\"H5921\"* workmen|strong=\"H4399\"* in|strong=\"H5921\"* God’s house|strong=\"H1004\"*: the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Henadad|strong=\"H2582\"*, with|strong=\"H1004\"* their|strong=\"H5921\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H5921\"* brothers|strong=\"H1121\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H3068\"* the|strong=\"H5921\"* builders|strong=\"H1129\"* laid|strong=\"H3245\"* the|strong=\"H5921\"* foundation|strong=\"H3245\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*, they|strong=\"H3068\"* set|strong=\"H5975\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* in|strong=\"H5921\"* their|strong=\"H3068\"* vestments with|strong=\"H3847\"* trumpets|strong=\"H2689\"*, with|strong=\"H3847\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asaph with|strong=\"H3847\"* cymbals|strong=\"H4700\"*, to|strong=\"H3478\"* praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H5921\"* directions|strong=\"H3027\"* of|strong=\"H1121\"* David|strong=\"H1732\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3588\"* sang|strong=\"H1984\"* to|strong=\"H3478\"* one|strong=\"H3605\"* another in|strong=\"H5921\"* praising|strong=\"H1984\"* and|strong=\"H3478\"* giving|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, “For|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H3068\"* good|strong=\"H2896\"*, for|strong=\"H3588\"* his|strong=\"H3605\"* loving|strong=\"H2896\"* kindness|strong=\"H2617\"* endures|strong=\"H5769\"* forever|strong=\"H5769\"* toward|strong=\"H5921\"* Israel|strong=\"H3478\"*.” All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* shouted|strong=\"H7321\"* with|strong=\"H1004\"* a|strong=\"H3068\"* great|strong=\"H1419\"* shout|strong=\"H7321\"*, when|strong=\"H3588\"* they|strong=\"H3588\"* praised|strong=\"H1984\"* Yahweh|strong=\"H3068\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* foundation|strong=\"H3245\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* had|strong=\"H3068\"* been|strong=\"H5769\"* laid|strong=\"H3245\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H7200\"* many|strong=\"H7227\"* of|strong=\"H1004\"* the|strong=\"H7200\"* priests|strong=\"H3548\"* and|strong=\"H1419\"* Levites|strong=\"H3881\"* and|strong=\"H1419\"* heads|strong=\"H7218\"* of|strong=\"H1004\"* fathers’ households|strong=\"H1004\"*, the|strong=\"H7200\"* old|strong=\"H2205\"* men|strong=\"H2205\"* who|strong=\"H3548\"* had|strong=\"H5869\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* first|strong=\"H7223\"* house|strong=\"H1004\"*, when|strong=\"H7200\"* the|strong=\"H7200\"* foundation|strong=\"H3245\"* of|strong=\"H1004\"* this|strong=\"H2088\"* house|strong=\"H1004\"* was|strong=\"H1004\"* laid|strong=\"H3245\"* before|strong=\"H5869\"* their|strong=\"H7200\"* eyes|strong=\"H5869\"*, wept|strong=\"H1058\"* with|strong=\"H1004\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*. Many|strong=\"H7227\"* also|strong=\"H2088\"* shouted|strong=\"H8643\"* aloud|strong=\"H7311\"* for|strong=\"H1004\"* joy|strong=\"H8057\"*," + }, + { + "verseNum": 13, + "text": "so|strong=\"H3588\"* that|strong=\"H3588\"* the|strong=\"H8085\"* people|strong=\"H5971\"* could|strong=\"H5234\"* not|strong=\"H3588\"* discern|strong=\"H5234\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* shout|strong=\"H7321\"* of|strong=\"H6963\"* joy|strong=\"H8057\"* from|strong=\"H8085\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* weeping|strong=\"H1065\"* of|strong=\"H6963\"* the|strong=\"H8085\"* people|strong=\"H5971\"*; for|strong=\"H3588\"* the|strong=\"H8085\"* people|strong=\"H5971\"* shouted|strong=\"H7321\"* with|strong=\"H5971\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* shout|strong=\"H7321\"*, and|strong=\"H1419\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* was|strong=\"H6963\"* heard|strong=\"H8085\"* far|strong=\"H5704\"* away|strong=\"H7350\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3588\"* when|strong=\"H3588\"* the|strong=\"H8085\"* adversaries|strong=\"H6862\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Benjamin|strong=\"H1144\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H8085\"* captivity|strong=\"H1473\"* were|strong=\"H3478\"* building|strong=\"H1129\"* a|strong=\"H3068\"* temple|strong=\"H1964\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 2, + "text": "they|strong=\"H1992\"* came|strong=\"H5927\"* near|strong=\"H5066\"* to|strong=\"H5927\"* Zerubbabel|strong=\"H2216\"*, and|strong=\"H4428\"* to|strong=\"H5927\"* the|strong=\"H3588\"* heads|strong=\"H7218\"* of|strong=\"H4428\"* fathers’ households, and|strong=\"H4428\"* said to|strong=\"H5927\"* them|strong=\"H1992\"*, “Let|strong=\"H3808\"* us|strong=\"H3588\"* build|strong=\"H1129\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* we|strong=\"H3068\"* seek|strong=\"H1875\"* your|strong=\"H3588\"* God|strong=\"H3808\"* as|strong=\"H3117\"* you|strong=\"H3588\"* do; and|strong=\"H4428\"* we|strong=\"H3068\"* have|strong=\"H3117\"* been|strong=\"H3808\"* sacrificing|strong=\"H2076\"* to|strong=\"H5927\"* him|strong=\"H5973\"* since|strong=\"H3588\"* the|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Esar Haddon king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, who|strong=\"H1992\"* brought|strong=\"H5927\"* us|strong=\"H3588\"* up|strong=\"H5927\"* here|strong=\"H6311\"*.”" + }, + { + "verseNum": 3, + "text": "But|strong=\"H3588\"* Zerubbabel|strong=\"H2216\"*, Jeshua|strong=\"H3442\"*, and|strong=\"H3478\"* the|strong=\"H3588\"* rest|strong=\"H7605\"* of|strong=\"H4428\"* the|strong=\"H3588\"* heads|strong=\"H7218\"* of|strong=\"H4428\"* fathers’ households|strong=\"H1004\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* them|strong=\"H6680\"*, “You|strong=\"H3588\"* have|strong=\"H3068\"* nothing|strong=\"H3808\"* to|strong=\"H3478\"* do|strong=\"H3068\"* with|strong=\"H1004\"* us|strong=\"H3588\"* in|strong=\"H3478\"* building|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* to|strong=\"H3478\"* our|strong=\"H3068\"* God|strong=\"H3068\"*; but|strong=\"H3588\"* we|strong=\"H3068\"* ourselves|strong=\"H1129\"* together|strong=\"H3162\"* will|strong=\"H3068\"* build|strong=\"H1129\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, as|strong=\"H3068\"* King|strong=\"H4428\"* Cyrus|strong=\"H3566\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* us|strong=\"H3588\"*.”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H1961\"* the|strong=\"H1129\"* people|strong=\"H5971\"* of|strong=\"H3027\"* the|strong=\"H1129\"* land weakened|strong=\"H7503\"* the|strong=\"H1129\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H1129\"* people|strong=\"H5971\"* of|strong=\"H3027\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* troubled them|strong=\"H3027\"* in|strong=\"H1129\"* building|strong=\"H1129\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3117\"* hired|strong=\"H7936\"* counselors|strong=\"H3289\"* against|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H5704\"* frustrate|strong=\"H6565\"* their|strong=\"H3605\"* purpose|strong=\"H6098\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Cyrus|strong=\"H3566\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"*, even|strong=\"H5704\"* until|strong=\"H5704\"* the|strong=\"H3605\"* reign|strong=\"H4438\"* of|strong=\"H4428\"* Darius|strong=\"H1867\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"H3427\"* the|strong=\"H5921\"* reign|strong=\"H4438\"* of|strong=\"H3427\"* Ahasuerus, in|strong=\"H3427\"* the|strong=\"H5921\"* beginning|strong=\"H8462\"* of|strong=\"H3427\"* his|strong=\"H5921\"* reign|strong=\"H4438\"*, they|strong=\"H5921\"* wrote|strong=\"H3789\"* an|strong=\"H3427\"* accusation|strong=\"H7855\"* against|strong=\"H5921\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Artaxerxes, Bishlam|strong=\"H1312\"*, Mithredath|strong=\"H4990\"*, Tabeel|strong=\"H2870\"*, and|strong=\"H4428\"* the|strong=\"H5921\"* rest|strong=\"H7605\"* of|strong=\"H4428\"* his|strong=\"H5921\"* companions|strong=\"H3674\"* wrote|strong=\"H3789\"* to|strong=\"H5921\"* Artaxerxes king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"*; and|strong=\"H4428\"* the|strong=\"H5921\"* writing|strong=\"H3791\"* of|strong=\"H4428\"* the|strong=\"H5921\"* letter|strong=\"H5406\"* was|strong=\"H3117\"* written|strong=\"H3789\"* in|strong=\"H5921\"* Syrian and|strong=\"H4428\"* delivered in|strong=\"H5921\"* the|strong=\"H5921\"* Syrian language." + }, + { + "verseNum": 8, + "text": "Rehum|strong=\"H7348\"* the|strong=\"H5922\"* chancellor|strong=\"H1169\"* and|strong=\"H4430\"* Shimshai|strong=\"H8124\"* the|strong=\"H5922\"* scribe|strong=\"H5613\"* wrote|strong=\"H3790\"* a|strong=\"H3068\"* letter against|strong=\"H5922\"* Jerusalem|strong=\"H3390\"* to|strong=\"H5922\"* Artaxerxes the|strong=\"H5922\"* king|strong=\"H4430\"* as follows|strong=\"H3660\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H1768\"* Rehum|strong=\"H7348\"* the|strong=\"H1768\"* chancellor|strong=\"H1169\"*, Shimshai|strong=\"H8124\"* the|strong=\"H1768\"* scribe|strong=\"H5613\"*, and|strong=\"H5613\"* the|strong=\"H1768\"* rest|strong=\"H7606\"* of|strong=\"H1768\"* their companions|strong=\"H3675\"*, the|strong=\"H1768\"* Dinaites|strong=\"H1784\"*, and|strong=\"H5613\"* the|strong=\"H1768\"* Apharsathchites, the|strong=\"H1768\"* Tarpelites|strong=\"H2967\"*, the|strong=\"H1768\"* Apharsites, the|strong=\"H1768\"* Archevites, the|strong=\"H1768\"* Babylonians, the|strong=\"H1768\"* Shushanchites, the|strong=\"H1768\"* Dehaites, the|strong=\"H1768\"* Elamites|strong=\"H5962\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"H7229\"* the|strong=\"H5675\"* rest|strong=\"H7606\"* of|strong=\"H1768\"* the|strong=\"H5675\"* nations whom|strong=\"H1768\"* the|strong=\"H5675\"* great|strong=\"H7229\"* and|strong=\"H7229\"* noble|strong=\"H3358\"* Osnappar brought over|strong=\"H1541\"* and|strong=\"H7229\"* settled|strong=\"H3488\"* in|strong=\"H3488\"* the|strong=\"H5675\"* city|strong=\"H7149\"* of|strong=\"H1768\"* Samaria|strong=\"H8115\"*, and|strong=\"H7229\"* in|strong=\"H3488\"* the|strong=\"H5675\"* rest|strong=\"H7606\"* of|strong=\"H1768\"* the|strong=\"H5675\"* country beyond|strong=\"H5675\"* the|strong=\"H5675\"* River|strong=\"H5103\"*, and|strong=\"H7229\"* so|strong=\"H1768\"* forth, wrote." + }, + { + "verseNum": 11, + "text": "This|strong=\"H1836\"* is|strong=\"H1768\"* the|strong=\"H5922\"* copy|strong=\"H6573\"* of|strong=\"H4430\"* the|strong=\"H5922\"* letter that|strong=\"H1768\"* they|strong=\"H1768\"* sent|strong=\"H7972\"*:" + }, + { + "verseNum": 12, + "text": "Be|strong=\"H1934\"* it|strong=\"H5922\"* known|strong=\"H3046\"* to|strong=\"H5922\"* the|strong=\"H5922\"* king|strong=\"H4430\"* that|strong=\"H1768\"* the|strong=\"H5922\"* Jews|strong=\"H3062\"* who|strong=\"H1768\"* came|strong=\"H5559\"* up|strong=\"H3635\"* from|strong=\"H4481\"* you|strong=\"H1768\"* have|strong=\"H1934\"* come to|strong=\"H5922\"* us|strong=\"H5922\"* to|strong=\"H5922\"* Jerusalem|strong=\"H3390\"*. They|strong=\"H1768\"* are|strong=\"H1768\"* building|strong=\"H1124\"* the|strong=\"H5922\"* rebellious|strong=\"H4779\"* and|strong=\"H4430\"* bad city|strong=\"H7149\"*, and|strong=\"H4430\"* have|strong=\"H1934\"* finished|strong=\"H3635\"* the|strong=\"H5922\"* walls|strong=\"H7792\"* and|strong=\"H4430\"* repaired the|strong=\"H5922\"* foundations." + }, + { + "verseNum": 13, + "text": "Be|strong=\"H1934\"* it|strong=\"H1934\"* known|strong=\"H3046\"* now|strong=\"H3705\"* to|strong=\"H3046\"* the|strong=\"H3046\"* king|strong=\"H4430\"* that|strong=\"H1768\"* if|strong=\"H2006\"* this|strong=\"H1791\"* city|strong=\"H7149\"* is|strong=\"H1768\"* built|strong=\"H1124\"* and|strong=\"H4430\"* the|strong=\"H3046\"* walls|strong=\"H7792\"* finished|strong=\"H3635\"*, they|strong=\"H1768\"* will|strong=\"H1768\"* not|strong=\"H3809\"* pay|strong=\"H5415\"* tribute|strong=\"H4061\"*, custom|strong=\"H1093\"*, or|strong=\"H2006\"* toll|strong=\"H1983\"*, and|strong=\"H4430\"* in|strong=\"H4430\"* the|strong=\"H3046\"* end it|strong=\"H1934\"* will|strong=\"H1768\"* be|strong=\"H1934\"* hurtful|strong=\"H5142\"* to|strong=\"H3046\"* the|strong=\"H3046\"* kings|strong=\"H4430\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"H3705\"* because|strong=\"H6903\"* we|strong=\"H3068\"* eat the|strong=\"H3606\"* salt|strong=\"H4416\"* of|strong=\"H4430\"* the|strong=\"H3606\"* palace|strong=\"H1965\"* and|strong=\"H4430\"* it|strong=\"H5922\"* is|strong=\"H1768\"* not|strong=\"H3809\"* appropriate for|strong=\"H5922\"* us|strong=\"H5922\"* to|strong=\"H5922\"* see|strong=\"H2370\"* the|strong=\"H3606\"* king|strong=\"H4430\"*’s dishonor|strong=\"H6173\"*, therefore|strong=\"H3606\"* we|strong=\"H3068\"* have|strong=\"H1768\"* sent|strong=\"H7972\"* and|strong=\"H4430\"* informed|strong=\"H3046\"* the|strong=\"H3606\"* king|strong=\"H4430\"*," + }, + { + "verseNum": 15, + "text": "that|strong=\"H1768\"* search|strong=\"H1240\"* may be|strong=\"H7149\"* made|strong=\"H5648\"* in|strong=\"H5922\"* the|strong=\"H5922\"* book|strong=\"H5609\"* of|strong=\"H4481\"* the|strong=\"H5922\"* records|strong=\"H1799\"* of|strong=\"H4481\"* your|strong=\"H1768\"* fathers. You|strong=\"H1768\"* will|strong=\"H1768\"* see in|strong=\"H5922\"* the|strong=\"H5922\"* book|strong=\"H5609\"* of|strong=\"H4481\"* the|strong=\"H5922\"* records|strong=\"H1799\"*, and|strong=\"H4430\"* know|strong=\"H3046\"* that|strong=\"H1768\"* this|strong=\"H1836\"* city|strong=\"H7149\"* is|strong=\"H1768\"* a|strong=\"H3068\"* rebellious|strong=\"H4779\"* city|strong=\"H7149\"*, and|strong=\"H4430\"* hurtful|strong=\"H5142\"* to|strong=\"H5922\"* kings|strong=\"H4430\"* and|strong=\"H4430\"* provinces|strong=\"H4083\"*, and|strong=\"H4430\"* that|strong=\"H1768\"* they|strong=\"H1768\"* have|strong=\"H1768\"* started rebellions within|strong=\"H1459\"* it|strong=\"H5922\"* in|strong=\"H5922\"* the|strong=\"H5922\"* past|strong=\"H5957\"*. That|strong=\"H1768\"* is|strong=\"H1768\"* why this|strong=\"H1836\"* city|strong=\"H7149\"* was|strong=\"H4430\"* destroyed|strong=\"H2718\"*." + }, + { + "verseNum": 16, + "text": "We|strong=\"H1768\"* inform|strong=\"H3046\"* the|strong=\"H5675\"* king|strong=\"H4430\"* that|strong=\"H1768\"* if|strong=\"H2006\"* this|strong=\"H1836\"* city|strong=\"H7149\"* is|strong=\"H1768\"* built|strong=\"H1124\"* and|strong=\"H4430\"* the|strong=\"H5675\"* walls|strong=\"H7792\"* finished|strong=\"H3635\"*, then|strong=\"H6903\"* you|strong=\"H1768\"* will|strong=\"H1768\"* have|strong=\"H1768\"* no|strong=\"H3809\"* possession|strong=\"H2508\"* beyond|strong=\"H5675\"* the|strong=\"H5675\"* River|strong=\"H5103\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H1768\"* the|strong=\"H5922\"* king|strong=\"H4430\"* sent|strong=\"H7972\"* an|strong=\"H4430\"* answer|strong=\"H6600\"* to|strong=\"H5922\"* Rehum|strong=\"H7348\"* the|strong=\"H5922\"* chancellor|strong=\"H1169\"*, and|strong=\"H4430\"* to|strong=\"H5922\"* Shimshai|strong=\"H8124\"* the|strong=\"H5922\"* scribe|strong=\"H5613\"*, and|strong=\"H4430\"* to|strong=\"H5922\"* the|strong=\"H5922\"* rest|strong=\"H7606\"* of|strong=\"H4430\"* their companions|strong=\"H3675\"* who|strong=\"H1768\"* live|strong=\"H3488\"* in|strong=\"H5922\"* Samaria|strong=\"H8115\"*, and|strong=\"H4430\"* in|strong=\"H5922\"* the|strong=\"H5922\"* rest|strong=\"H7606\"* of|strong=\"H4430\"* the|strong=\"H5922\"* country beyond|strong=\"H5675\"* the|strong=\"H5922\"* River|strong=\"H5103\"*:" + }, + { + "verseNum": 18, + "text": "The|strong=\"H5922\"* letter|strong=\"H5407\"* which|strong=\"H1768\"* you|strong=\"H1768\"* sent|strong=\"H7972\"* to|strong=\"H5922\"* us|strong=\"H5922\"* has|strong=\"H1768\"* been plainly|strong=\"H6568\"* read|strong=\"H7123\"* before|strong=\"H6925\"* me|strong=\"H5922\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"H4481\"* decreed, and|strong=\"H4430\"* search|strong=\"H1240\"* has|strong=\"H1768\"* been made|strong=\"H5648\"*, and|strong=\"H4430\"* it|strong=\"H5922\"* was|strong=\"H4430\"* found|strong=\"H7912\"* that|strong=\"H1768\"* this|strong=\"H1791\"* city|strong=\"H7149\"* has|strong=\"H1768\"* made|strong=\"H5648\"* insurrection|strong=\"H5376\"* against|strong=\"H5922\"* kings|strong=\"H4430\"* in|strong=\"H5922\"* the|strong=\"H5922\"* past|strong=\"H5957\"*, and|strong=\"H4430\"* that|strong=\"H1768\"* rebellion|strong=\"H4776\"* and|strong=\"H4430\"* revolts have|strong=\"H7761\"* been made|strong=\"H5648\"* in|strong=\"H5922\"* it|strong=\"H5922\"*." + }, + { + "verseNum": 20, + "text": "There have|strong=\"H1934\"* also|strong=\"H4430\"* been|strong=\"H1934\"* mighty|strong=\"H8624\"* kings|strong=\"H4430\"* over|strong=\"H5922\"* Jerusalem|strong=\"H3390\"* who have|strong=\"H1934\"* ruled|strong=\"H7990\"* over|strong=\"H5922\"* all|strong=\"H3606\"* the|strong=\"H3606\"* country beyond|strong=\"H5675\"* the|strong=\"H3606\"* River|strong=\"H5103\"*; and|strong=\"H4430\"* tribute|strong=\"H4061\"*, custom|strong=\"H1093\"*, and|strong=\"H4430\"* toll|strong=\"H1983\"* was|strong=\"H1934\"* paid|strong=\"H3052\"* to|strong=\"H5922\"* them|strong=\"H5922\"*." + }, + { + "verseNum": 21, + "text": "Make|strong=\"H7761\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* now|strong=\"H3705\"* to|strong=\"H2942\"* cause these|strong=\"H4481\"* men|strong=\"H1400\"* to|strong=\"H2942\"* cease, and|strong=\"H7149\"* that|strong=\"H2942\"* this|strong=\"H1791\"* city|strong=\"H7149\"* not|strong=\"H3809\"* be|strong=\"H3809\"* built|strong=\"H1124\"* until|strong=\"H5705\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* is|strong=\"H7149\"* made|strong=\"H7761\"* by|strong=\"H4481\"* me|strong=\"H4481\"*." + }, + { + "verseNum": 22, + "text": "Be|strong=\"H1934\"* careful that|strong=\"H5922\"* you|strong=\"H5922\"* not be|strong=\"H1934\"* slack doing|strong=\"H5648\"* so. Why|strong=\"H4101\"* should|strong=\"H4101\"* damage|strong=\"H5142\"* grow|strong=\"H7680\"* to|strong=\"H5922\"* the|strong=\"H5922\"* hurt|strong=\"H2257\"* of|strong=\"H4430\"* the|strong=\"H5922\"* kings|strong=\"H4430\"*?" + }, + { + "verseNum": 23, + "text": "Then|strong=\"H1768\"* when|strong=\"H1768\"* the|strong=\"H5922\"* copy|strong=\"H6573\"* of|strong=\"H4481\"* King|strong=\"H4430\"* Artaxerxes’ letter|strong=\"H5407\"* was|strong=\"H4430\"* read|strong=\"H7123\"* before|strong=\"H6925\"* Rehum|strong=\"H7348\"*, Shimshai|strong=\"H8124\"* the|strong=\"H5922\"* scribe|strong=\"H5613\"*, and|strong=\"H4430\"* their companions|strong=\"H3675\"*, they|strong=\"H1768\"* went|strong=\"H5613\"* in|strong=\"H5922\"* haste to|strong=\"H5922\"* Jerusalem|strong=\"H3390\"* to|strong=\"H5922\"* the|strong=\"H5922\"* Jews|strong=\"H3062\"*, and|strong=\"H4430\"* made|strong=\"H7123\"* them|strong=\"H1994\"* to|strong=\"H5922\"* cease by|strong=\"H6925\"* force of|strong=\"H4481\"* arms|strong=\"H2429\"*." + }, + { + "verseNum": 24, + "text": "Then|strong=\"H1768\"* work|strong=\"H5673\"* stopped on|strong=\"H5705\"* God’s house|strong=\"H1005\"* which|strong=\"H1768\"* is|strong=\"H1768\"* at|strong=\"H5705\"* Jerusalem|strong=\"H3390\"*. It|strong=\"H1934\"* stopped until|strong=\"H5705\"* the|strong=\"H1768\"* second|strong=\"H8648\"* year|strong=\"H8140\"* of|strong=\"H1005\"* the|strong=\"H1768\"* reign|strong=\"H4437\"* of|strong=\"H1005\"* Darius|strong=\"H1868\"* king|strong=\"H4430\"* of|strong=\"H1005\"* Persia|strong=\"H6540\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Now the|strong=\"H5922\"* prophets, Haggai|strong=\"H2292\"* the|strong=\"H5922\"* prophet and|strong=\"H2148\"* Zechariah|strong=\"H2148\"* the|strong=\"H5922\"* son|strong=\"H1247\"* of|strong=\"H1247\"* Iddo|strong=\"H5714\"*, prophesied|strong=\"H5013\"* to|strong=\"H5922\"* the|strong=\"H5922\"* Jews|strong=\"H3062\"* who|strong=\"H1768\"* were|strong=\"H1768\"* in|strong=\"H5922\"* Judah|strong=\"H3061\"* and|strong=\"H2148\"* Jerusalem|strong=\"H3390\"*. They|strong=\"H1768\"* prophesied|strong=\"H5013\"* to|strong=\"H5922\"* them|strong=\"H5922\"* in|strong=\"H5922\"* the|strong=\"H5922\"* name|strong=\"H8036\"* of|strong=\"H1247\"* the|strong=\"H5922\"* God of|strong=\"H1247\"* Israel|strong=\"H3479\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H1768\"* Zerubbabel|strong=\"H2217\"* the|strong=\"H1768\"* son|strong=\"H1247\"* of|strong=\"H1005\"* Shealtiel|strong=\"H7598\"*, and|strong=\"H1005\"* Jeshua|strong=\"H3443\"* the|strong=\"H1768\"* son|strong=\"H1247\"* of|strong=\"H1005\"* Jozadak|strong=\"H3136\"* rose up|strong=\"H6966\"* and|strong=\"H1005\"* began|strong=\"H8271\"* to|strong=\"H5974\"* build|strong=\"H1124\"* God’s house|strong=\"H1005\"* which|strong=\"H1768\"* is|strong=\"H1768\"* at|strong=\"H6966\"* Jerusalem|strong=\"H3390\"*; and|strong=\"H1005\"* with|strong=\"H5974\"* them|strong=\"H5974\"* were|strong=\"H1768\"* the|strong=\"H1768\"* prophets|strong=\"H5029\"* of|strong=\"H1005\"* God, helping|strong=\"H5583\"* them|strong=\"H5974\"*." + }, + { + "verseNum": 3, + "text": "At the|strong=\"H5922\"* same time|strong=\"H2166\"* Tattenai|strong=\"H8674\"*, the|strong=\"H5922\"* governor|strong=\"H6347\"* beyond|strong=\"H5675\"* the|strong=\"H5922\"* River|strong=\"H5103\"*, came to|strong=\"H5922\"* them|strong=\"H5922\"*, with|strong=\"H1124\"* Shetharbozenai and|strong=\"H1005\"* their companions|strong=\"H3675\"*, and|strong=\"H1005\"* asked them|strong=\"H5922\"*, “Who|strong=\"H4479\"* gave|strong=\"H7761\"* you|strong=\"H5922\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* to|strong=\"H5922\"* build|strong=\"H1124\"* this|strong=\"H1836\"* house|strong=\"H1005\"* and|strong=\"H1005\"* to|strong=\"H5922\"* finish|strong=\"H3635\"* this|strong=\"H1836\"* wall?”" + }, + { + "verseNum": 4, + "text": "They|strong=\"H3660\"* also|strong=\"H3660\"* asked for|strong=\"H1768\"* the|strong=\"H1768\"* names|strong=\"H8036\"* of|strong=\"H1768\"* the|strong=\"H1768\"* men|strong=\"H1400\"* who|strong=\"H1768\"* were|strong=\"H1400\"* making this|strong=\"H1836\"* building|strong=\"H1124\"*." + }, + { + "verseNum": 5, + "text": "But the|strong=\"H5922\"* eye|strong=\"H5870\"* of|strong=\"H5922\"* their God was|strong=\"H1934\"* on|strong=\"H5922\"* the|strong=\"H5922\"* elders|strong=\"H7868\"* of|strong=\"H5922\"* the|strong=\"H5922\"* Jews|strong=\"H3062\"*, and|strong=\"H1934\"* they|strong=\"H3809\"* didn’t make|strong=\"H3809\"* them|strong=\"H1994\"* cease until|strong=\"H5705\"* the|strong=\"H5922\"* matter|strong=\"H2941\"* should come to|strong=\"H5922\"* Darius|strong=\"H1868\"*, and|strong=\"H1934\"* an|strong=\"H5705\"* answer|strong=\"H8421\"* should be|strong=\"H1934\"* returned|strong=\"H8421\"* by|strong=\"H8421\"* letter|strong=\"H5407\"* concerning|strong=\"H5922\"* it|strong=\"H5922\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5922\"* copy|strong=\"H6573\"* of|strong=\"H4430\"* the|strong=\"H5922\"* letter that|strong=\"H1768\"* Tattenai|strong=\"H8674\"*, the|strong=\"H5922\"* governor|strong=\"H6347\"* beyond|strong=\"H5675\"* the|strong=\"H5922\"* River|strong=\"H5103\"*, and|strong=\"H4430\"* Shetharbozenai, and|strong=\"H4430\"* his|strong=\"H5922\"* companions|strong=\"H3675\"* the|strong=\"H5922\"* Apharsachites who|strong=\"H1768\"* were|strong=\"H1768\"* beyond|strong=\"H5675\"* the|strong=\"H5922\"* River|strong=\"H5103\"*, sent|strong=\"H7972\"* to|strong=\"H5922\"* Darius|strong=\"H1868\"* the|strong=\"H5922\"* king|strong=\"H4430\"* follows." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3606\"* sent|strong=\"H7972\"* a|strong=\"H3068\"* letter|strong=\"H6600\"* to|strong=\"H5922\"* him|strong=\"H5922\"*, in|strong=\"H5922\"* which|strong=\"H1836\"* was|strong=\"H4430\"* written|strong=\"H3790\"*:" + }, + { + "verseNum": 8, + "text": "Be|strong=\"H1934\"* it|strong=\"H1934\"* known|strong=\"H3046\"* to|strong=\"H3046\"* the|strong=\"H1768\"* king|strong=\"H4430\"* that|strong=\"H1768\"* we|strong=\"H3068\"* went into the|strong=\"H1768\"* province|strong=\"H4083\"* of|strong=\"H1005\"* Judah|strong=\"H3061\"*, to|strong=\"H3046\"* the|strong=\"H1768\"* house|strong=\"H1005\"* of|strong=\"H1005\"* the|strong=\"H1768\"* great|strong=\"H7229\"* God, which|strong=\"H1768\"* is|strong=\"H1768\"* being built|strong=\"H1124\"* with|strong=\"H1124\"* great|strong=\"H7229\"* stones and|strong=\"H4430\"* timber is|strong=\"H1768\"* laid|strong=\"H7761\"* in|strong=\"H4430\"* the|strong=\"H1768\"* walls|strong=\"H3797\"*. This|strong=\"H1791\"* work|strong=\"H5673\"* goes on with|strong=\"H1124\"* diligence and|strong=\"H4430\"* prospers in|strong=\"H4430\"* their hands|strong=\"H3028\"*." + }, + { + "verseNum": 9, + "text": "Then we|strong=\"H3068\"* asked|strong=\"H7593\"* those elders|strong=\"H7868\"*, and|strong=\"H1005\"* said to|strong=\"H2942\"* them thus|strong=\"H1836\"*, “Who|strong=\"H4479\"* gave|strong=\"H7761\"* you a|strong=\"H3068\"* decree|strong=\"H2942\"* to|strong=\"H2942\"* build|strong=\"H1124\"* this|strong=\"H1836\"* house|strong=\"H1005\"*, and|strong=\"H1005\"* to|strong=\"H2942\"* finish|strong=\"H3635\"* this|strong=\"H1836\"* wall?”" + }, + { + "verseNum": 10, + "text": "We|strong=\"H1768\"* asked|strong=\"H7593\"* them their|strong=\"H7593\"* names|strong=\"H8036\"* also, to|strong=\"H3046\"* inform|strong=\"H3046\"* you|strong=\"H1768\"* that|strong=\"H1768\"* we|strong=\"H3068\"* might write|strong=\"H3790\"* the|strong=\"H1768\"* names|strong=\"H8036\"* of|strong=\"H1768\"* the|strong=\"H1768\"* men|strong=\"H1400\"* who|strong=\"H1768\"* were|strong=\"H1400\"* at their|strong=\"H7593\"* head|strong=\"H7217\"*." + }, + { + "verseNum": 11, + "text": "Thus|strong=\"H1836\"* they|strong=\"H3660\"* returned|strong=\"H8421\"* us|strong=\"H8421\"* answer|strong=\"H6600\"*, saying, “We|strong=\"H1768\"* are|strong=\"H1768\"* the|strong=\"H1768\"* servants|strong=\"H5649\"* of|strong=\"H1005\"* the|strong=\"H1768\"* God of|strong=\"H1005\"* heaven|strong=\"H8065\"* and|strong=\"H4430\"* earth and|strong=\"H4430\"* are|strong=\"H1768\"* building|strong=\"H1124\"* the|strong=\"H1768\"* house|strong=\"H1005\"* that|strong=\"H1768\"* was|strong=\"H1934\"* built|strong=\"H1124\"* these|strong=\"H1836\"* many|strong=\"H7690\"* years|strong=\"H8140\"* ago|strong=\"H6928\"*, which|strong=\"H1768\"* a|strong=\"H3068\"* great|strong=\"H7229\"* king|strong=\"H4430\"* of|strong=\"H1005\"* Israel|strong=\"H3479\"* built|strong=\"H1124\"* and|strong=\"H4430\"* finished|strong=\"H3635\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H3861\"* after|strong=\"H4481\"* our|strong=\"H4481\"* fathers had|strong=\"H4430\"* provoked|strong=\"H7265\"* the|strong=\"H4481\"* God of|strong=\"H4481\"* heaven|strong=\"H8065\"* to|strong=\"H1994\"* wrath|strong=\"H7265\"*, he|strong=\"H1768\"* gave|strong=\"H3052\"* them|strong=\"H1994\"* into|strong=\"H1541\"* the|strong=\"H4481\"* hand|strong=\"H3028\"* of|strong=\"H4481\"* Nebuchadnezzar|strong=\"H5020\"* king|strong=\"H4430\"* of|strong=\"H4481\"* Babylon, the|strong=\"H4481\"* Chaldean|strong=\"H3679\"*, who|strong=\"H1768\"* destroyed|strong=\"H5642\"* this|strong=\"H1836\"* house|strong=\"H1005\"* and|strong=\"H4430\"* carried|strong=\"H1541\"* the|strong=\"H4481\"* people|strong=\"H5972\"* away|strong=\"H1541\"* into|strong=\"H1541\"* Babylon." + }, + { + "verseNum": 13, + "text": "But|strong=\"H1297\"* in|strong=\"H4430\"* the|strong=\"H1768\"* first|strong=\"H2298\"* year|strong=\"H8140\"* of|strong=\"H1005\"* Cyrus|strong=\"H3567\"* king|strong=\"H4430\"* of|strong=\"H1005\"* Babylon, Cyrus|strong=\"H3567\"* the|strong=\"H1768\"* king|strong=\"H4430\"* made|strong=\"H7761\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* to|strong=\"H2942\"* build|strong=\"H1124\"* this|strong=\"H1836\"* house|strong=\"H1005\"* of|strong=\"H1005\"* God." + }, + { + "verseNum": 14, + "text": "The|strong=\"H4481\"* gold|strong=\"H1722\"* and|strong=\"H4430\"* silver|strong=\"H3702\"* vessels|strong=\"H3984\"* of|strong=\"H4481\"* God’s house|strong=\"H1005\"*, which|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* took|strong=\"H5312\"* out|strong=\"H5312\"* of|strong=\"H4481\"* the|strong=\"H4481\"* temple|strong=\"H1005\"* that|strong=\"H1768\"* was|strong=\"H4430\"* in|strong=\"H4430\"* Jerusalem|strong=\"H3390\"* and|strong=\"H4430\"* brought|strong=\"H2987\"* into the|strong=\"H4481\"* temple|strong=\"H1005\"* of|strong=\"H4481\"* Babylon, those|strong=\"H1994\"* Cyrus|strong=\"H3567\"* the|strong=\"H4481\"* king|strong=\"H4430\"* also|strong=\"H4430\"* took|strong=\"H5312\"* out|strong=\"H5312\"* of|strong=\"H4481\"* the|strong=\"H4481\"* temple|strong=\"H1005\"* of|strong=\"H4481\"* Babylon, and|strong=\"H4430\"* they|strong=\"H1768\"* were|strong=\"H1768\"* delivered|strong=\"H3052\"* to|strong=\"H1994\"* one whose|strong=\"H1768\"* name|strong=\"H8036\"* was|strong=\"H4430\"* Sheshbazzar|strong=\"H8340\"*, whom|strong=\"H1768\"* he|strong=\"H1768\"* had|strong=\"H4430\"* made|strong=\"H7761\"* governor|strong=\"H6347\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H1768\"* said to|strong=\"H5922\"* him|strong=\"H5922\"*, ‘Take|strong=\"H5376\"* these|strong=\"H1994\"* vessels|strong=\"H3984\"*, go, put|strong=\"H5182\"* them|strong=\"H1994\"* in|strong=\"H5922\"* the|strong=\"H5922\"* temple|strong=\"H1005\"* that|strong=\"H1768\"* is|strong=\"H1768\"* in|strong=\"H5922\"* Jerusalem|strong=\"H3390\"*, and|strong=\"H1005\"* let God’s house|strong=\"H1005\"* be|strong=\"H1005\"* built|strong=\"H1124\"* in|strong=\"H5922\"* its place|strong=\"H5182\"*.’" + }, + { + "verseNum": 16, + "text": "Then|strong=\"H1768\"* the|strong=\"H4481\"* same|strong=\"H1791\"* Sheshbazzar|strong=\"H8340\"* came|strong=\"H1768\"* and|strong=\"H1005\"* laid|strong=\"H3052\"* the|strong=\"H4481\"* foundations of|strong=\"H4481\"* God’s house|strong=\"H1005\"* which|strong=\"H1768\"* is|strong=\"H1768\"* in|strong=\"H8000\"* Jerusalem|strong=\"H3390\"*. Since|strong=\"H1768\"* that|strong=\"H1768\"* time even|strong=\"H1768\"* until|strong=\"H5705\"* now|strong=\"H3705\"* it|strong=\"H4481\"* has|strong=\"H1768\"* been being built|strong=\"H1124\"*, and|strong=\"H1005\"* yet it|strong=\"H4481\"* is|strong=\"H1768\"* not|strong=\"H3809\"* completed|strong=\"H8000\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"H3705\"* therefore|strong=\"H5922\"*, if|strong=\"H2006\"* it|strong=\"H5922\"* seems good|strong=\"H2869\"* to|strong=\"H5922\"* the|strong=\"H5922\"* king|strong=\"H4430\"*, let|strong=\"H3705\"* a|strong=\"H3068\"* search|strong=\"H1240\"* be|strong=\"H1005\"* made|strong=\"H7761\"* in|strong=\"H5922\"* the|strong=\"H5922\"* king|strong=\"H4430\"*’s treasure|strong=\"H1596\"* house|strong=\"H1005\"*, which|strong=\"H1768\"* is|strong=\"H1768\"* there|strong=\"H8536\"* at|strong=\"H8536\"* Babylon, whether|strong=\"H2006\"* it|strong=\"H5922\"* is|strong=\"H1768\"* so|strong=\"H1768\"* that|strong=\"H1768\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* was|strong=\"H4430\"* made|strong=\"H7761\"* by|strong=\"H4481\"* Cyrus|strong=\"H3567\"* the|strong=\"H5922\"* king|strong=\"H4430\"* to|strong=\"H5922\"* build|strong=\"H1124\"* this|strong=\"H1836\"* house|strong=\"H1005\"* of|strong=\"H4481\"* God at|strong=\"H8536\"* Jerusalem|strong=\"H3390\"*; and|strong=\"H4430\"* let|strong=\"H3705\"* the|strong=\"H5922\"* king|strong=\"H4430\"* send|strong=\"H7972\"* his|strong=\"H5922\"* pleasure|strong=\"H7470\"* to|strong=\"H5922\"* us|strong=\"H5922\"* concerning|strong=\"H5922\"* this|strong=\"H1836\"* matter|strong=\"H1836\"*.”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H1768\"* Darius|strong=\"H1868\"* the|strong=\"H1768\"* king|strong=\"H4430\"* made|strong=\"H7761\"* a|strong=\"H3068\"* decree|strong=\"H2942\"*, and|strong=\"H4430\"* the|strong=\"H1768\"* house|strong=\"H1005\"* of|strong=\"H1005\"* the|strong=\"H1768\"* archives|strong=\"H1005\"*, where|strong=\"H1768\"* the|strong=\"H1768\"* treasures|strong=\"H1596\"* were|strong=\"H1768\"* laid|strong=\"H7761\"* up|strong=\"H5182\"* in|strong=\"H4430\"* Babylon, was|strong=\"H4430\"* searched." + }, + { + "verseNum": 2, + "text": "A|strong=\"H3068\"* scroll|strong=\"H4040\"* was|strong=\"H1459\"* found|strong=\"H7912\"* at|strong=\"H7912\"* Achmetha, in|strong=\"H7912\"* the|strong=\"H1768\"* palace|strong=\"H1001\"* that|strong=\"H1768\"* is|strong=\"H1768\"* in|strong=\"H7912\"* the|strong=\"H1768\"* province|strong=\"H4083\"* of|strong=\"H4083\"* Media|strong=\"H4076\"*, and|strong=\"H4076\"* in|strong=\"H7912\"* it this was|strong=\"H1459\"* written|strong=\"H3790\"* for|strong=\"H1768\"* a|strong=\"H3068\"* record|strong=\"H1799\"*:" + }, + { + "verseNum": 3, + "text": "In|strong=\"H4430\"* the|strong=\"H1768\"* first|strong=\"H2298\"* year|strong=\"H8140\"* of|strong=\"H1005\"* Cyrus|strong=\"H3567\"* the|strong=\"H1768\"* king|strong=\"H4430\"*, Cyrus|strong=\"H3567\"* the|strong=\"H1768\"* king|strong=\"H4430\"* made|strong=\"H7761\"* a|strong=\"H3068\"* decree|strong=\"H2942\"*: Concerning|strong=\"H2942\"* God’s house|strong=\"H1005\"* at Jerusalem|strong=\"H3390\"*, let the|strong=\"H1768\"* house|strong=\"H1005\"* be|strong=\"H1005\"* built|strong=\"H1124\"*, the|strong=\"H1768\"* place where|strong=\"H1768\"* they|strong=\"H1768\"* offer sacrifices|strong=\"H1685\"*, and|strong=\"H4430\"* let its foundations be|strong=\"H1005\"* strongly laid|strong=\"H7761\"*, with|strong=\"H1124\"* its height|strong=\"H7314\"* sixty|strong=\"H8361\"* cubits+ 6:3 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H4430\"* its width|strong=\"H6613\"* sixty|strong=\"H8361\"* cubits;" + }, + { + "verseNum": 4, + "text": "with three|strong=\"H8532\"* courses of|strong=\"H4481\"* great|strong=\"H1560\"* stones and|strong=\"H4430\"* a|strong=\"H3068\"* course of|strong=\"H4481\"* new|strong=\"H2323\"* timber. Let the|strong=\"H4481\"* expenses|strong=\"H5313\"* be|strong=\"H1005\"* given|strong=\"H3052\"* out|strong=\"H3052\"* of|strong=\"H4481\"* the|strong=\"H4481\"* king|strong=\"H4430\"*’s house|strong=\"H1005\"*." + }, + { + "verseNum": 5, + "text": "Also|strong=\"H4481\"* let the|strong=\"H4481\"* gold|strong=\"H1722\"* and|strong=\"H1722\"* silver|strong=\"H3702\"* vessels|strong=\"H3984\"* of|strong=\"H4481\"* God’s house|strong=\"H1005\"*, which|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* took|strong=\"H5312\"* out|strong=\"H5312\"* of|strong=\"H4481\"* the|strong=\"H4481\"* temple|strong=\"H1005\"* which|strong=\"H1768\"* is|strong=\"H1768\"* at Jerusalem|strong=\"H3390\"* and|strong=\"H1722\"* brought|strong=\"H2987\"* to|strong=\"H3390\"* Babylon, be|strong=\"H1005\"* restored|strong=\"H8421\"* and|strong=\"H1722\"* brought|strong=\"H2987\"* again|strong=\"H1946\"* to|strong=\"H3390\"* the|strong=\"H4481\"* temple|strong=\"H1005\"* which|strong=\"H1768\"* is|strong=\"H1768\"* at Jerusalem|strong=\"H3390\"*, everything to|strong=\"H3390\"* its|strong=\"H4481\"* place|strong=\"H5182\"*. You|strong=\"H1768\"* shall put|strong=\"H5182\"* them in|strong=\"H5182\"* God’s house|strong=\"H1005\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"H3705\"* therefore|strong=\"H4481\"*, Tattenai|strong=\"H8674\"*, governor|strong=\"H6347\"* beyond|strong=\"H5675\"* the|strong=\"H4481\"* River|strong=\"H5103\"*, Shetharbozenai, and|strong=\"H1934\"* your|strong=\"H1768\"* companions|strong=\"H3675\"* the|strong=\"H4481\"* Apharsachites, who|strong=\"H1768\"* are|strong=\"H1768\"* beyond|strong=\"H5675\"* the|strong=\"H4481\"* River|strong=\"H5103\"*, you|strong=\"H1768\"* must stay far|strong=\"H7352\"* from|strong=\"H4481\"* there|strong=\"H8536\"*." + }, + { + "verseNum": 7, + "text": "Leave|strong=\"H7662\"* the|strong=\"H5922\"* work|strong=\"H5673\"* of|strong=\"H1005\"* this|strong=\"H1791\"* house|strong=\"H1005\"* of|strong=\"H1005\"* God alone|strong=\"H7662\"*; let the|strong=\"H5922\"* governor|strong=\"H6347\"* of|strong=\"H1005\"* the|strong=\"H5922\"* Jews|strong=\"H3062\"* and|strong=\"H1005\"* the|strong=\"H5922\"* elders|strong=\"H7868\"* of|strong=\"H1005\"* the|strong=\"H5922\"* Jews|strong=\"H3062\"* build|strong=\"H1124\"* this|strong=\"H1791\"* house|strong=\"H1005\"* of|strong=\"H1005\"* God in|strong=\"H5922\"* its place." + }, + { + "verseNum": 8, + "text": "Moreover I|strong=\"H4481\"* make|strong=\"H7761\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* regarding what|strong=\"H1768\"* you|strong=\"H1768\"* shall|strong=\"H1934\"* do|strong=\"H5648\"* for|strong=\"H1768\"* these|strong=\"H4481\"* elders|strong=\"H7868\"* of|strong=\"H4481\"* the|strong=\"H4481\"* Jews|strong=\"H3062\"* for|strong=\"H1768\"* the|strong=\"H4481\"* building|strong=\"H1124\"* of|strong=\"H4481\"* this|strong=\"H1791\"* house|strong=\"H1005\"* of|strong=\"H4481\"* God: that|strong=\"H1768\"* of|strong=\"H4481\"* the|strong=\"H4481\"* king|strong=\"H4430\"*’s goods|strong=\"H5232\"*, even|strong=\"H1768\"* of|strong=\"H4481\"* the|strong=\"H4481\"* tribute|strong=\"H4061\"* beyond|strong=\"H5675\"* the|strong=\"H4481\"* River|strong=\"H5103\"*, expenses|strong=\"H5313\"* must be|strong=\"H1934\"* given|strong=\"H3052\"* with|strong=\"H5974\"* all diligence to|strong=\"H2942\"* these|strong=\"H4481\"* men|strong=\"H1400\"*, that|strong=\"H1768\"* they|strong=\"H1768\"* not|strong=\"H3809\"* be|strong=\"H1934\"* hindered." + }, + { + "verseNum": 9, + "text": "That|strong=\"H1768\"* which|strong=\"H1768\"* they|strong=\"H1768\"* have|strong=\"H1934\"* need|strong=\"H2818\"* of|strong=\"H1123\"*, including young|strong=\"H1123\"* bulls|strong=\"H8450\"*, rams|strong=\"H1798\"*, and|strong=\"H8065\"* lambs, for|strong=\"H1768\"* burnt|strong=\"H5928\"* offerings|strong=\"H5928\"* to|strong=\"H3390\"* the|strong=\"H1768\"* God of|strong=\"H1123\"* heaven|strong=\"H8065\"*; also wheat|strong=\"H2591\"*, salt|strong=\"H4416\"*, wine|strong=\"H2562\"*, and|strong=\"H8065\"* oil|strong=\"H4887\"*, according to|strong=\"H3390\"* the|strong=\"H1768\"* word|strong=\"H3983\"* of|strong=\"H1123\"* the|strong=\"H1768\"* priests|strong=\"H3549\"* who|strong=\"H1768\"* are|strong=\"H1768\"* at|strong=\"H1934\"* Jerusalem|strong=\"H3390\"*, let it|strong=\"H1934\"* be|strong=\"H1934\"* given|strong=\"H3052\"* them|strong=\"H3052\"* day|strong=\"H3118\"* by|strong=\"H3549\"* day|strong=\"H3118\"* without|strong=\"H3809\"* fail|strong=\"H7960\"*," + }, + { + "verseNum": 10, + "text": "that|strong=\"H1768\"* they|strong=\"H1768\"* may|strong=\"H2417\"* offer|strong=\"H7127\"* sacrifices|strong=\"H5208\"* of|strong=\"H4430\"* pleasant aroma to|strong=\"H4430\"* the|strong=\"H1768\"* God of|strong=\"H4430\"* heaven|strong=\"H8065\"*, and|strong=\"H4430\"* pray|strong=\"H6739\"* for|strong=\"H1768\"* the|strong=\"H1768\"* life|strong=\"H2417\"* of|strong=\"H4430\"* the|strong=\"H1768\"* king|strong=\"H4430\"* and|strong=\"H4430\"* of|strong=\"H4430\"* his|strong=\"H1768\"* sons|strong=\"H1123\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H4481\"* have|strong=\"H7761\"* also|strong=\"H4481\"* made|strong=\"H5648\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* that|strong=\"H1768\"* whoever alters this|strong=\"H1836\"* message, let a|strong=\"H3068\"* beam be|strong=\"H1005\"* pulled out|strong=\"H5648\"* from|strong=\"H4481\"* his|strong=\"H5922\"* house|strong=\"H1005\"*, and|strong=\"H1005\"* let him|strong=\"H5922\"* be|strong=\"H1005\"* lifted up|strong=\"H2211\"* and|strong=\"H1005\"* fastened on|strong=\"H5922\"* it|strong=\"H5922\"*; and|strong=\"H1005\"* let his|strong=\"H5922\"* house|strong=\"H1005\"* be|strong=\"H1005\"* made|strong=\"H5648\"* a|strong=\"H3068\"* dunghill|strong=\"H5122\"* for|strong=\"H5922\"* this|strong=\"H1836\"*." + }, + { + "verseNum": 12, + "text": "May the|strong=\"H3606\"* God who|strong=\"H1768\"* has|strong=\"H1768\"* caused his|strong=\"H7972\"* name|strong=\"H8036\"* to|strong=\"H2942\"* dwell|strong=\"H7932\"* there|strong=\"H8536\"* overthrow|strong=\"H4049\"* all|strong=\"H3606\"* kings|strong=\"H4430\"* and|strong=\"H4430\"* peoples|strong=\"H5972\"* who|strong=\"H1768\"* stretch out|strong=\"H5648\"* their|strong=\"H3606\"* hand|strong=\"H3028\"* to|strong=\"H2942\"* alter|strong=\"H8133\"* this|strong=\"H1791\"*, to|strong=\"H2942\"* destroy|strong=\"H2255\"* this|strong=\"H1791\"* house|strong=\"H1005\"* of|strong=\"H1005\"* God which|strong=\"H1768\"* is|strong=\"H1768\"* at|strong=\"H8536\"* Jerusalem|strong=\"H3390\"*. I|strong=\"H1768\"* Darius|strong=\"H1868\"* have|strong=\"H7761\"* made|strong=\"H5648\"* a|strong=\"H3068\"* decree|strong=\"H2942\"*. Let it be|strong=\"H1005\"* done|strong=\"H5648\"* with|strong=\"H5648\"* all|strong=\"H3606\"* diligence." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H6903\"* Tattenai|strong=\"H8674\"*, the|strong=\"H5675\"* governor|strong=\"H6347\"* beyond|strong=\"H5675\"* the|strong=\"H5675\"* River|strong=\"H5103\"*, Shetharbozenai, and|strong=\"H4430\"* their companions|strong=\"H3675\"* did|strong=\"H5648\"* accordingly|strong=\"H3660\"* with|strong=\"H5648\"* all diligence, because|strong=\"H6903\"* Darius|strong=\"H1868\"* the|strong=\"H5675\"* king|strong=\"H4430\"* had|strong=\"H4430\"* sent|strong=\"H7972\"* a|strong=\"H3068\"* decree." + }, + { + "verseNum": 14, + "text": "The|strong=\"H4481\"* elders|strong=\"H7868\"* of|strong=\"H4481\"* the|strong=\"H4481\"* Jews|strong=\"H3062\"* built|strong=\"H1124\"* and|strong=\"H4430\"* prospered|strong=\"H6744\"*, through the|strong=\"H4481\"* prophesying|strong=\"H5017\"* of|strong=\"H4481\"* Haggai|strong=\"H2292\"* the|strong=\"H4481\"* prophet|strong=\"H5029\"* and|strong=\"H4430\"* Zechariah|strong=\"H2148\"* the|strong=\"H4481\"* son|strong=\"H1247\"* of|strong=\"H4481\"* Iddo|strong=\"H5714\"*. They built|strong=\"H1124\"* and|strong=\"H4430\"* finished|strong=\"H3635\"* it|strong=\"H4481\"*, according|strong=\"H4481\"* to|strong=\"H2942\"* the|strong=\"H4481\"* commandment|strong=\"H2941\"* of|strong=\"H4481\"* the|strong=\"H4481\"* God of|strong=\"H4481\"* Israel|strong=\"H3479\"*, and|strong=\"H4430\"* according|strong=\"H4481\"* to|strong=\"H2942\"* the|strong=\"H4481\"* decree|strong=\"H2942\"* of|strong=\"H4481\"* Cyrus|strong=\"H3567\"*, Darius|strong=\"H1868\"*, and|strong=\"H4430\"* Artaxerxes king|strong=\"H4430\"* of|strong=\"H4481\"* Persia|strong=\"H6540\"*." + }, + { + "verseNum": 15, + "text": "This|strong=\"H1836\"* house|strong=\"H1005\"* was|strong=\"H4430\"* finished|strong=\"H3319\"* on|strong=\"H5705\"* the|strong=\"H1768\"* third|strong=\"H8532\"* day|strong=\"H3118\"* of|strong=\"H1005\"* the|strong=\"H1768\"* month|strong=\"H3393\"* Adar, which|strong=\"H1768\"* was|strong=\"H4430\"* in|strong=\"H4430\"* the|strong=\"H1768\"* sixth|strong=\"H8353\"* year|strong=\"H8140\"* of|strong=\"H1005\"* the|strong=\"H1768\"* reign|strong=\"H4437\"* of|strong=\"H1005\"* Darius|strong=\"H1868\"* the|strong=\"H1768\"* king|strong=\"H4430\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H5648\"* children|strong=\"H1123\"* of|strong=\"H1005\"* Israel|strong=\"H3479\"*, the|strong=\"H5648\"* priests|strong=\"H3549\"*, the|strong=\"H5648\"* Levites|strong=\"H3879\"*, and|strong=\"H1005\"* the|strong=\"H5648\"* rest|strong=\"H7606\"* of|strong=\"H1005\"* the|strong=\"H5648\"* children|strong=\"H1123\"* of|strong=\"H1005\"* the|strong=\"H5648\"* captivity|strong=\"H1547\"*, kept|strong=\"H5648\"* the|strong=\"H5648\"* dedication|strong=\"H2597\"* of|strong=\"H1005\"* this|strong=\"H1836\"* house|strong=\"H1005\"* of|strong=\"H1005\"* God with|strong=\"H5648\"* joy|strong=\"H2305\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H3606\"* offered|strong=\"H7127\"* at the|strong=\"H3606\"* dedication|strong=\"H2597\"* of|strong=\"H1005\"* this|strong=\"H1836\"* house|strong=\"H1005\"* of|strong=\"H1005\"* God one|strong=\"H1836\"* hundred|strong=\"H3969\"* bulls|strong=\"H8450\"*, two|strong=\"H8648\"* hundred|strong=\"H3969\"* rams|strong=\"H1798\"*, four hundred|strong=\"H3969\"* lambs; and|strong=\"H1005\"* for|strong=\"H5922\"* a|strong=\"H3068\"* sin|strong=\"H2409\"* offering|strong=\"H7127\"* for|strong=\"H5922\"* all|strong=\"H3606\"* Israel|strong=\"H3479\"*, twelve|strong=\"H8648\"* male|strong=\"H6841\"* goats|strong=\"H5796\"*, according to|strong=\"H5922\"* the|strong=\"H3606\"* number|strong=\"H4510\"* of|strong=\"H1005\"* the|strong=\"H3606\"* tribes|strong=\"H7625\"* of|strong=\"H1005\"* Israel|strong=\"H3479\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"H1768\"* set|strong=\"H6966\"* the|strong=\"H5922\"* priests|strong=\"H3549\"* in|strong=\"H5922\"* their divisions|strong=\"H6392\"* and|strong=\"H3792\"* the|strong=\"H5922\"* Levites|strong=\"H3879\"* in|strong=\"H5922\"* their courses|strong=\"H4255\"*, for|strong=\"H5922\"* the|strong=\"H5922\"* service|strong=\"H5673\"* of|strong=\"H5922\"* God which|strong=\"H1768\"* is|strong=\"H1768\"* at|strong=\"H6966\"* Jerusalem|strong=\"H3390\"*, as|strong=\"H1768\"* it|strong=\"H5922\"* is|strong=\"H1768\"* written|strong=\"H3792\"* in|strong=\"H5922\"* the|strong=\"H5922\"* book|strong=\"H5609\"* of|strong=\"H5922\"* Moses|strong=\"H4873\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6213\"* captivity|strong=\"H1473\"* kept|strong=\"H6213\"* the|strong=\"H6213\"* Passover|strong=\"H6453\"* on|strong=\"H6213\"* the|strong=\"H6213\"* fourteenth|strong=\"H6240\"* day|strong=\"H2320\"* of|strong=\"H1121\"* the|strong=\"H6213\"* first|strong=\"H7223\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 20, + "text": "Because|strong=\"H3588\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* had|strong=\"H3588\"* purified|strong=\"H2891\"* themselves|strong=\"H1992\"* together, all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H1992\"* were|strong=\"H1121\"* pure|strong=\"H2889\"*. They|strong=\"H1992\"* killed|strong=\"H7819\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"* for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* captivity|strong=\"H1473\"*, for|strong=\"H3588\"* their|strong=\"H3605\"* brothers|strong=\"H1121\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, and|strong=\"H1121\"* for|strong=\"H3588\"* themselves|strong=\"H1992\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H3605\"* had|strong=\"H3068\"* returned|strong=\"H7725\"* out|strong=\"H1875\"* of|strong=\"H1121\"* the|strong=\"H3605\"* captivity|strong=\"H1473\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* who|strong=\"H3605\"* had|strong=\"H3068\"* separated themselves to|strong=\"H7725\"* them|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H3605\"* filthiness|strong=\"H2932\"* of|strong=\"H1121\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land to|strong=\"H7725\"* seek|strong=\"H1875\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, ate," + }, + { + "verseNum": 22, + "text": "and|strong=\"H3478\"* kept|strong=\"H6213\"* the|strong=\"H5921\"* feast|strong=\"H2282\"* of|strong=\"H4428\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* with|strong=\"H1004\"* joy|strong=\"H8057\"*; because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* made|strong=\"H6213\"* them|strong=\"H5921\"* joyful|strong=\"H8055\"*, and|strong=\"H3478\"* had|strong=\"H3068\"* turned|strong=\"H5437\"* the|strong=\"H5921\"* heart|strong=\"H3820\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria to|strong=\"H3478\"* them|strong=\"H5921\"*, to|strong=\"H3478\"* strengthen|strong=\"H2388\"* their|strong=\"H3068\"* hands|strong=\"H3027\"* in|strong=\"H5921\"* the|strong=\"H5921\"* work|strong=\"H4399\"* of|strong=\"H4428\"* God|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*’s house|strong=\"H1004\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H4428\"* after these|strong=\"H4428\"* things|strong=\"H1697\"*, in|strong=\"H4428\"* the|strong=\"H1697\"* reign|strong=\"H4438\"* of|strong=\"H1121\"* Artaxerxes king|strong=\"H4428\"* of|strong=\"H1121\"* Persia|strong=\"H6539\"*, Ezra|strong=\"H5830\"* the|strong=\"H1697\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Seraiah|strong=\"H8304\"*, the|strong=\"H1697\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azariah|strong=\"H5838\"*, the|strong=\"H1697\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*," + }, + { + "verseNum": 2, + "text": "the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shallum|strong=\"H7967\"*, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub," + }, + { + "verseNum": 3, + "text": "the|strong=\"H5838\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amariah, the|strong=\"H5838\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azariah|strong=\"H5838\"*, the|strong=\"H5838\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meraioth|strong=\"H4812\"*," + }, + { + "verseNum": 4, + "text": "the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zerahiah|strong=\"H2228\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uzzi|strong=\"H5813\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bukki|strong=\"H1231\"*," + }, + { + "verseNum": 5, + "text": "the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abishua, the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Phinehas|strong=\"H6372\"*, the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar, the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H3548\"* chief|strong=\"H7218\"* priest|strong=\"H3548\"*—" + }, + { + "verseNum": 6, + "text": "this|strong=\"H1931\"* Ezra|strong=\"H5830\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* Babylon. He|strong=\"H1931\"* was|strong=\"H3068\"* a|strong=\"H3068\"* skilled|strong=\"H4106\"* scribe|strong=\"H5608\"* in|strong=\"H5921\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H4428\"* Moses|strong=\"H4872\"*, which|strong=\"H1931\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, had|strong=\"H3068\"* given|strong=\"H5414\"*; and|strong=\"H4872\"* the|strong=\"H3605\"* king|strong=\"H4428\"* granted|strong=\"H5414\"* him|strong=\"H5414\"* all|strong=\"H3605\"* his|strong=\"H3605\"* request|strong=\"H1246\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* his|strong=\"H3605\"* God|strong=\"H3068\"*’s hand|strong=\"H3027\"* on|strong=\"H5921\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 7, + "text": "Some|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, including|strong=\"H4428\"* some|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* priests|strong=\"H3548\"*, the|strong=\"H4480\"* Levites|strong=\"H3881\"*, the|strong=\"H4480\"* singers|strong=\"H7891\"*, the|strong=\"H4480\"* gatekeepers|strong=\"H7778\"*, and|strong=\"H1121\"* the|strong=\"H4480\"* temple|strong=\"H5411\"* servants|strong=\"H5411\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"* in|strong=\"H8141\"* the|strong=\"H4480\"* seventh|strong=\"H7651\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Artaxerxes the|strong=\"H4480\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H1931\"* came|strong=\"H4428\"* to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"* in|strong=\"H8141\"* the|strong=\"H8141\"* fifth|strong=\"H2549\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* was|strong=\"H1931\"* in|strong=\"H8141\"* the|strong=\"H8141\"* seventh|strong=\"H7637\"* year|strong=\"H8141\"* of|strong=\"H4428\"* the|strong=\"H8141\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* on|strong=\"H5921\"* the|strong=\"H5921\"* first|strong=\"H7223\"* day|strong=\"H2320\"* of|strong=\"H3027\"* the|strong=\"H5921\"* first|strong=\"H7223\"* month|strong=\"H2320\"* he|strong=\"H1931\"* began|strong=\"H3246\"* to|strong=\"H5921\"* go|strong=\"H4609\"* up|strong=\"H5921\"* from|strong=\"H5921\"* Babylon; and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* first|strong=\"H7223\"* day|strong=\"H2320\"* of|strong=\"H3027\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* month|strong=\"H2320\"* he|strong=\"H1931\"* came|strong=\"H7223\"* to|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* good|strong=\"H2896\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* his|strong=\"H5921\"* God|strong=\"H3027\"* on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* Ezra|strong=\"H5830\"* had|strong=\"H3068\"* set|strong=\"H3559\"* his|strong=\"H3068\"* heart|strong=\"H3824\"* to|strong=\"H3478\"* seek|strong=\"H1875\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"*, and|strong=\"H3478\"* to|strong=\"H3478\"* do|strong=\"H6213\"* it|strong=\"H3588\"*, and|strong=\"H3478\"* to|strong=\"H3478\"* teach|strong=\"H3925\"* statutes|strong=\"H2706\"* and|strong=\"H3478\"* ordinances|strong=\"H4941\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H2088\"* this|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H5921\"* copy|strong=\"H6572\"* of|strong=\"H4428\"* the|strong=\"H5921\"* letter|strong=\"H5406\"* that|strong=\"H3068\"* King|strong=\"H4428\"* Artaxerxes gave|strong=\"H5414\"* to|strong=\"H3478\"* Ezra|strong=\"H5830\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*, the|strong=\"H5921\"* scribe|strong=\"H5608\"*, even|strong=\"H3068\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"* of|strong=\"H4428\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s commandments|strong=\"H4687\"*, and|strong=\"H3478\"* of|strong=\"H4428\"* his|strong=\"H5414\"* statutes|strong=\"H2706\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"*:" + }, + { + "verseNum": 12, + "text": "Artaxerxes, king|strong=\"H4430\"* of|strong=\"H4430\"* kings|strong=\"H4430\"*," + }, + { + "verseNum": 13, + "text": "I|strong=\"H4481\"* make|strong=\"H7761\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* that|strong=\"H1768\"* all|strong=\"H3606\"* those|strong=\"H1768\"* of|strong=\"H4481\"* the|strong=\"H3606\"* people|strong=\"H5972\"* of|strong=\"H4481\"* Israel|strong=\"H3479\"* and|strong=\"H4437\"* their|strong=\"H3606\"* priests|strong=\"H3549\"* and|strong=\"H4437\"* the|strong=\"H3606\"* Levites|strong=\"H3879\"* in|strong=\"H4437\"* my|strong=\"H4481\"* realm|strong=\"H4437\"*, who|strong=\"H1768\"* intend of|strong=\"H4481\"* their|strong=\"H3606\"* own free will|strong=\"H1768\"* to|strong=\"H2942\"* go|strong=\"H1946\"* to|strong=\"H2942\"* Jerusalem|strong=\"H3390\"*, go|strong=\"H1946\"* with|strong=\"H5974\"* you|strong=\"H1768\"*." + }, + { + "verseNum": 14, + "text": "Because|strong=\"H6903\"* you|strong=\"H1768\"* are|strong=\"H1768\"* sent|strong=\"H7972\"* by|strong=\"H6925\"* the|strong=\"H3606\"* king|strong=\"H4430\"* and|strong=\"H4430\"* his|strong=\"H5922\"* seven|strong=\"H7655\"* counselors|strong=\"H3272\"* to|strong=\"H5922\"* inquire|strong=\"H1240\"* concerning|strong=\"H5922\"* Judah|strong=\"H3061\"* and|strong=\"H4430\"* Jerusalem|strong=\"H3390\"*, according|strong=\"H4481\"* to|strong=\"H5922\"* the|strong=\"H3606\"* law|strong=\"H1882\"* of|strong=\"H4481\"* your|strong=\"H5922\"* God which|strong=\"H1768\"* is|strong=\"H1768\"* in|strong=\"H5922\"* your|strong=\"H5922\"* hand|strong=\"H3028\"*," + }, + { + "verseNum": 15, + "text": "and|strong=\"H4430\"* to|strong=\"H4430\"* carry|strong=\"H2987\"* the|strong=\"H1768\"* silver|strong=\"H3702\"* and|strong=\"H4430\"* gold|strong=\"H1722\"*, which|strong=\"H1768\"* the|strong=\"H1768\"* king|strong=\"H4430\"* and|strong=\"H4430\"* his|strong=\"H1768\"* counselors|strong=\"H3272\"* have|strong=\"H1768\"* freely|strong=\"H5069\"* offered|strong=\"H5069\"* to|strong=\"H4430\"* the|strong=\"H1768\"* God of|strong=\"H4430\"* Israel|strong=\"H3479\"*, whose|strong=\"H1768\"* habitation|strong=\"H4907\"* is|strong=\"H1768\"* in|strong=\"H4430\"* Jerusalem|strong=\"H3390\"*," + }, + { + "verseNum": 16, + "text": "and|strong=\"H1722\"* all|strong=\"H3606\"* the|strong=\"H3606\"* silver|strong=\"H3702\"* and|strong=\"H1722\"* gold|strong=\"H1722\"* that|strong=\"H1768\"* you|strong=\"H1768\"* will|strong=\"H1768\"* find|strong=\"H7912\"* in|strong=\"H7912\"* all|strong=\"H3606\"* the|strong=\"H3606\"* province|strong=\"H4083\"* of|strong=\"H1005\"* Babylon, with|strong=\"H5974\"* the|strong=\"H3606\"* free will|strong=\"H1768\"* offering|strong=\"H5069\"* of|strong=\"H1005\"* the|strong=\"H3606\"* people|strong=\"H5972\"* and|strong=\"H1722\"* of|strong=\"H1005\"* the|strong=\"H3606\"* priests|strong=\"H3549\"*, offering|strong=\"H5069\"* willingly|strong=\"H5069\"* for|strong=\"H1768\"* the|strong=\"H3606\"* house|strong=\"H1005\"* of|strong=\"H1005\"* their|strong=\"H3606\"* God which|strong=\"H1768\"* is|strong=\"H1768\"* in|strong=\"H7912\"* Jerusalem|strong=\"H3390\"*." + }, + { + "verseNum": 17, + "text": "Therefore|strong=\"H3606\"* you|strong=\"H1768\"* shall|strong=\"H3606\"* with|strong=\"H5922\"* all|strong=\"H3606\"* diligence buy|strong=\"H7066\"* with|strong=\"H5922\"* this|strong=\"H1836\"* money|strong=\"H3702\"* bulls|strong=\"H8450\"*, rams|strong=\"H1798\"*, and|strong=\"H3702\"* lambs with|strong=\"H5922\"* their|strong=\"H3606\"* meal offerings|strong=\"H5261\"* and|strong=\"H3702\"* their|strong=\"H3606\"* drink|strong=\"H5261\"* offerings|strong=\"H5261\"*, and|strong=\"H3702\"* shall|strong=\"H3606\"* offer|strong=\"H7127\"* them|strong=\"H1994\"* on|strong=\"H5922\"* the|strong=\"H3606\"* altar|strong=\"H4056\"* of|strong=\"H1005\"* the|strong=\"H3606\"* house|strong=\"H1005\"* of|strong=\"H1005\"* your|strong=\"H1768\"* God which|strong=\"H1768\"* is|strong=\"H1768\"* in|strong=\"H5922\"* Jerusalem|strong=\"H3390\"*." + }, + { + "verseNum": 18, + "text": "Whatever|strong=\"H4101\"* seems good|strong=\"H3191\"* to|strong=\"H5921\"* you|strong=\"H5921\"* and|strong=\"H1722\"* to|strong=\"H5921\"* your|strong=\"H5921\"* brothers to|strong=\"H5921\"* do|strong=\"H5648\"* with|strong=\"H5921\"* the|strong=\"H5921\"* rest|strong=\"H7606\"* of|strong=\"H5921\"* the|strong=\"H5921\"* silver|strong=\"H3702\"* and|strong=\"H1722\"* the|strong=\"H5921\"* gold|strong=\"H1722\"*, do|strong=\"H5648\"* that|strong=\"H1768\"* according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* will|strong=\"H4101\"* of|strong=\"H5921\"* your|strong=\"H5921\"* God." + }, + { + "verseNum": 19, + "text": "The|strong=\"H6925\"* vessels|strong=\"H3984\"* that|strong=\"H1768\"* are|strong=\"H1768\"* given|strong=\"H3052\"* to|strong=\"H6925\"* you|strong=\"H1768\"* for|strong=\"H1768\"* the|strong=\"H6925\"* service|strong=\"H6402\"* of|strong=\"H1005\"* the|strong=\"H6925\"* house|strong=\"H1005\"* of|strong=\"H1005\"* your|strong=\"H3052\"* God, deliver|strong=\"H8000\"* before|strong=\"H6925\"* the|strong=\"H6925\"* God of|strong=\"H1005\"* Jerusalem|strong=\"H3390\"*." + }, + { + "verseNum": 20, + "text": "Whatever more|strong=\"H4481\"* will|strong=\"H1768\"* be|strong=\"H1005\"* needed|strong=\"H2819\"* for|strong=\"H1768\"* the|strong=\"H4481\"* house|strong=\"H1005\"* of|strong=\"H4481\"* your|strong=\"H1768\"* God, which|strong=\"H1768\"* you|strong=\"H1768\"* may have|strong=\"H1768\"* occasion|strong=\"H5308\"* to|strong=\"H4481\"* give|strong=\"H5415\"*, give|strong=\"H5415\"* it|strong=\"H4481\"* out of|strong=\"H4481\"* the|strong=\"H4481\"* king|strong=\"H4430\"*’s treasure|strong=\"H1596\"* house|strong=\"H1005\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"H4481\"*, even|strong=\"H1768\"* I|strong=\"H4481\"*, Artaxerxes the|strong=\"H3606\"* king|strong=\"H4430\"*, make|strong=\"H7761\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* to|strong=\"H2942\"* all|strong=\"H3606\"* the|strong=\"H3606\"* treasurers|strong=\"H1490\"* who|strong=\"H1768\"* are|strong=\"H1768\"* beyond|strong=\"H5675\"* the|strong=\"H3606\"* River|strong=\"H5103\"*, that|strong=\"H1768\"* whatever|strong=\"H3606\"* Ezra|strong=\"H5831\"* the|strong=\"H3606\"* priest|strong=\"H3549\"*, the|strong=\"H3606\"* scribe|strong=\"H5613\"* of|strong=\"H4481\"* the|strong=\"H3606\"* law|strong=\"H1882\"* of|strong=\"H4481\"* the|strong=\"H3606\"* God of|strong=\"H4481\"* heaven|strong=\"H8065\"*, requires of|strong=\"H4481\"* you|strong=\"H1768\"*, it|strong=\"H4481\"* shall|strong=\"H3606\"* be done|strong=\"H5648\"* with|strong=\"H5648\"* all|strong=\"H3606\"* diligence," + }, + { + "verseNum": 22, + "text": "up to|strong=\"H5705\"* one hundred|strong=\"H3969\"* talents|strong=\"H3604\"*+ 7:22 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces* of|strong=\"H3734\"* silver|strong=\"H3702\"*, and|strong=\"H3702\"* to|strong=\"H5705\"* one hundred|strong=\"H3969\"* cors|strong=\"H3734\"*+ 7:22 1 cor is the same as a homer, or about 55.9 U. S. gallons (liquid) or 211 liters or 6 bushels.* of|strong=\"H3734\"* wheat|strong=\"H2591\"*, and|strong=\"H3702\"* to|strong=\"H5705\"* one hundred|strong=\"H3969\"* baths|strong=\"H1325\"*+ 7:22 1 bath is one tenth of a cor, or about 5.6 U. S. gallons or 21 liters or 2.4 pecks. 100 baths would be about 2,100 liters.* of|strong=\"H3734\"* wine|strong=\"H2562\"*, and|strong=\"H3702\"* to|strong=\"H5705\"* one hundred|strong=\"H3969\"* baths|strong=\"H1325\"* of|strong=\"H3734\"* oil|strong=\"H4887\"*, and|strong=\"H3702\"* salt|strong=\"H4416\"* without|strong=\"H3809\"* prescribing|strong=\"H3792\"* how much." + }, + { + "verseNum": 23, + "text": "Whatever|strong=\"H4101\"* is|strong=\"H1768\"* commanded|strong=\"H4481\"* by|strong=\"H4481\"* the|strong=\"H3606\"* God of|strong=\"H4481\"* heaven|strong=\"H8065\"*, let it|strong=\"H5922\"* be|strong=\"H1934\"* done|strong=\"H5648\"* exactly for|strong=\"H5922\"* the|strong=\"H3606\"* house|strong=\"H1005\"* of|strong=\"H4481\"* the|strong=\"H3606\"* God of|strong=\"H4481\"* heaven|strong=\"H8065\"*; for|strong=\"H5922\"* why|strong=\"H4101\"* should|strong=\"H4101\"* there|strong=\"H1768\"* be|strong=\"H1934\"* wrath|strong=\"H7109\"* against|strong=\"H5922\"* the|strong=\"H3606\"* realm|strong=\"H4437\"* of|strong=\"H4481\"* the|strong=\"H3606\"* king|strong=\"H4430\"* and|strong=\"H4430\"* his|strong=\"H5922\"* sons|strong=\"H1123\"*?" + }, + { + "verseNum": 24, + "text": "Also we|strong=\"H3068\"* inform|strong=\"H3046\"* you|strong=\"H1768\"* that|strong=\"H1768\"* it|strong=\"H5922\"* shall|strong=\"H3606\"* not|strong=\"H3809\"* be|strong=\"H3809\"* lawful|strong=\"H7990\"* to|strong=\"H5922\"* impose|strong=\"H7412\"* tribute|strong=\"H4061\"*, custom|strong=\"H1093\"*, or|strong=\"H3809\"* toll|strong=\"H1983\"* on|strong=\"H5922\"* any|strong=\"H3606\"* of|strong=\"H1005\"* the|strong=\"H3606\"* priests|strong=\"H3549\"*, Levites|strong=\"H3879\"*, singers|strong=\"H2171\"*, gatekeepers, temple|strong=\"H1005\"* servants|strong=\"H6399\"*, or|strong=\"H3809\"* laborers of|strong=\"H1005\"* this|strong=\"H1836\"* house|strong=\"H1005\"* of|strong=\"H1005\"* God." + }, + { + "verseNum": 25, + "text": "You|strong=\"H1768\"*, Ezra|strong=\"H5831\"*, according to|strong=\"H3046\"* the|strong=\"H3606\"* wisdom|strong=\"H2452\"* of|strong=\"H1768\"* your|strong=\"H1768\"* God that|strong=\"H1768\"* is|strong=\"H1768\"* in|strong=\"H1768\"* your|strong=\"H1768\"* hand|strong=\"H3028\"*, appoint|strong=\"H4483\"* magistrates|strong=\"H8200\"* and|strong=\"H2452\"* judges|strong=\"H1782\"* who|strong=\"H1768\"* may judge|strong=\"H1934\"* all|strong=\"H3606\"* the|strong=\"H3606\"* people|strong=\"H5972\"* who|strong=\"H1768\"* are|strong=\"H1768\"* beyond|strong=\"H5675\"* the|strong=\"H3606\"* River|strong=\"H5103\"*, who|strong=\"H1768\"* all|strong=\"H3606\"* know|strong=\"H3046\"* the|strong=\"H3606\"* laws|strong=\"H1882\"* of|strong=\"H1768\"* your|strong=\"H1768\"* God; and|strong=\"H2452\"* teach|strong=\"H3046\"* him who|strong=\"H1768\"* doesn’t know|strong=\"H3046\"* them." + }, + { + "verseNum": 26, + "text": "Whoever will|strong=\"H1768\"* not|strong=\"H3809\"* do|strong=\"H5648\"* the|strong=\"H3606\"* law|strong=\"H1882\"* of|strong=\"H4481\"* your|strong=\"H1768\"* God and|strong=\"H4430\"* the|strong=\"H3606\"* law|strong=\"H1882\"* of|strong=\"H4481\"* the|strong=\"H3606\"* king|strong=\"H4430\"*, let judgment|strong=\"H1780\"* be|strong=\"H1934\"* executed|strong=\"H5648\"* on him|strong=\"H4481\"* with|strong=\"H5648\"* all|strong=\"H3606\"* diligence, whether|strong=\"H2006\"* it|strong=\"H1934\"* is|strong=\"H1768\"* to|strong=\"H4430\"* death|strong=\"H4193\"*, or|strong=\"H2006\"* to|strong=\"H4430\"* banishment|strong=\"H8332\"*, or|strong=\"H2006\"* to|strong=\"H4430\"* confiscation|strong=\"H6065\"* of|strong=\"H4481\"* goods|strong=\"H5232\"*, or|strong=\"H2006\"* to|strong=\"H4430\"* imprisonment." + }, + { + "verseNum": 27, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H4428\"* our|strong=\"H3068\"* fathers, who|strong=\"H3068\"* has|strong=\"H3068\"* put|strong=\"H5414\"* such|strong=\"H2063\"* a|strong=\"H3068\"* thing|strong=\"H2063\"* as|strong=\"H3068\"* this|strong=\"H2063\"* in|strong=\"H3068\"* the|strong=\"H5414\"* king|strong=\"H4428\"*’s heart|strong=\"H3820\"*, to|strong=\"H3068\"* beautify|strong=\"H6286\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* which|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*;" + }, + { + "verseNum": 28, + "text": "and|strong=\"H3478\"* has|strong=\"H3068\"* extended|strong=\"H5186\"* loving kindness|strong=\"H2617\"* to|strong=\"H3478\"* me|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H3478\"* his|strong=\"H3605\"* counselors|strong=\"H3289\"*, and|strong=\"H3478\"* before|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s mighty|strong=\"H1368\"* princes|strong=\"H8269\"*. I|strong=\"H5921\"* was|strong=\"H3068\"* strengthened|strong=\"H2388\"* according|strong=\"H5921\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* my|strong=\"H3605\"* God|strong=\"H3068\"*’s hand|strong=\"H3027\"* on|strong=\"H5921\"* me|strong=\"H6440\"*, and|strong=\"H3478\"* I|strong=\"H5921\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* chief|strong=\"H7218\"* men|strong=\"H1368\"* out|strong=\"H5186\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* go|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* me|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H4428\"* these|strong=\"H4428\"* are|strong=\"H4428\"* the|strong=\"H5927\"* heads|strong=\"H7218\"* of|strong=\"H4428\"* their|strong=\"H5973\"* fathers’ households, and|strong=\"H4428\"* this|strong=\"H5927\"* is|strong=\"H4428\"* the|strong=\"H5927\"* genealogy|strong=\"H3187\"* of|strong=\"H4428\"* those|strong=\"H5973\"* who|strong=\"H4428\"* went|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* me|strong=\"H5973\"* from|strong=\"H5927\"* Babylon, in|strong=\"H4428\"* the|strong=\"H5927\"* reign|strong=\"H4438\"* of|strong=\"H4428\"* Artaxerxes the|strong=\"H5927\"* king|strong=\"H4428\"*:" + }, + { + "verseNum": 2, + "text": "Of the sons of Phinehas, Gershom." + }, + { + "verseNum": 3, + "text": "Of the sons of Shecaniah, of the sons of Parosh, Zechariah; and with him were listed by genealogy of the males one hundred fifty." + }, + { + "verseNum": 4, + "text": "Of the sons of Pahathmoab, Eliehoenai the son of Zerahiah; and with him two hundred males." + }, + { + "verseNum": 5, + "text": "Of the sons of Shecaniah, the son of Jahaziel; and with him three hundred males." + }, + { + "verseNum": 6, + "text": "Of the sons of Adin, Ebed the son of Jonathan; and with him fifty males." + }, + { + "verseNum": 7, + "text": "Of the sons of Elam, Jeshaiah the son of Athaliah; and with him seventy males." + }, + { + "verseNum": 8, + "text": "Of the sons of Shephatiah, Zebadiah the son of Michael; and with him eighty males." + }, + { + "verseNum": 9, + "text": "Of the sons of Joab, Obadiah the son of Jehiel; and with him two hundred eighteen males." + }, + { + "verseNum": 10, + "text": "Of the sons of Shelomith, the son of Josiphiah; and with him one hundred sixty males." + }, + { + "verseNum": 11, + "text": "Of the sons of Bebai, Zechariah the son of Bebai; and with him twenty-eight males." + }, + { + "verseNum": 12, + "text": "Of the sons of Azgad, Johanan the son of Hakkatan; and with him one hundred ten males." + }, + { + "verseNum": 13, + "text": "Of the sons of Adonikam, who were the last, their names are: Eliphelet, Jeuel, and Shemaiah; and with them sixty males." + }, + { + "verseNum": 14, + "text": "Of the sons of Bigvai, Uthai and Zabbud; and with them seventy males." + }, + { + "verseNum": 15, + "text": "I|strong=\"H3117\"* gathered|strong=\"H6908\"* them|strong=\"H4672\"* together|strong=\"H6908\"* to|strong=\"H3117\"* the|strong=\"H3117\"* river|strong=\"H5104\"* that|strong=\"H5971\"* runs to|strong=\"H3117\"* Ahava; and|strong=\"H1121\"* there|strong=\"H8033\"* we|strong=\"H3068\"* encamped|strong=\"H2583\"* three|strong=\"H7969\"* days|strong=\"H3117\"*. Then|strong=\"H3808\"* I|strong=\"H3117\"* looked around at|strong=\"H2583\"* the|strong=\"H3117\"* people|strong=\"H5971\"* and|strong=\"H1121\"* the|strong=\"H3117\"* priests|strong=\"H3548\"*, and|strong=\"H1121\"* found|strong=\"H4672\"* there|strong=\"H8033\"* were|strong=\"H5971\"* none|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H3117\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H7971\"* I|strong=\"H7971\"* sent|strong=\"H7971\"* for|strong=\"H7971\"* Eliezer, for|strong=\"H7971\"* Ariel, for|strong=\"H7971\"* Shemaiah|strong=\"H8098\"*, for|strong=\"H7971\"* Elnathan, for|strong=\"H7971\"* Jarib|strong=\"H3402\"*, for|strong=\"H7971\"* Elnathan, for|strong=\"H7971\"* Nathan|strong=\"H5416\"*, for|strong=\"H7971\"* Zechariah|strong=\"H2148\"*, and|strong=\"H7971\"* for|strong=\"H7971\"* Meshullam|strong=\"H4918\"*, chief|strong=\"H7218\"* men|strong=\"H7218\"*; also for|strong=\"H7971\"* Joiarib|strong=\"H3114\"* and|strong=\"H7971\"* for|strong=\"H7971\"* Elnathan, who were|strong=\"H7218\"* teachers." + }, + { + "verseNum": 17, + "text": "I|strong=\"H5921\"* sent|strong=\"H3318\"* them|strong=\"H5921\"* out|strong=\"H3318\"* to|strong=\"H1696\"* Iddo the|strong=\"H5921\"* chief|strong=\"H7218\"* at|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* Casiphia|strong=\"H3703\"*; and|strong=\"H1004\"* I|strong=\"H5921\"* told|strong=\"H1696\"* them|strong=\"H5921\"* what|strong=\"H1697\"* they|strong=\"H5921\"* should|strong=\"H4725\"* tell|strong=\"H1696\"* Iddo and|strong=\"H1004\"* his|strong=\"H7760\"* brothers the|strong=\"H5921\"* temple|strong=\"H1004\"* servants|strong=\"H5411\"* at|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* Casiphia|strong=\"H3703\"*, that|strong=\"H1697\"* they|strong=\"H5921\"* should|strong=\"H4725\"* bring|strong=\"H3318\"* to|strong=\"H1696\"* us|strong=\"H5921\"* ministers|strong=\"H8334\"* for|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* our|strong=\"H5921\"* God." + }, + { + "verseNum": 18, + "text": "According|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H5921\"* good|strong=\"H2896\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* our|strong=\"H5921\"* God|strong=\"H3027\"* on|strong=\"H5921\"* us|strong=\"H5921\"* they|strong=\"H5921\"* brought|strong=\"H3478\"* us|strong=\"H5921\"* a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* discretion|strong=\"H7922\"*, of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Mahli|strong=\"H4249\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, namely Sherebiah|strong=\"H8274\"*, with|strong=\"H5921\"* his|strong=\"H5921\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H5921\"* brothers|strong=\"H1121\"*, eighteen|strong=\"H8083\"*;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H1121\"* Hashabiah|strong=\"H2811\"*, and|strong=\"H1121\"* with|strong=\"H6242\"* him|strong=\"H1121\"* Jeshaiah|strong=\"H3470\"* of|strong=\"H1121\"* the|strong=\"H3470\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, his|strong=\"H3470\"* brothers|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H4847\"* sons|strong=\"H1121\"*, twenty|strong=\"H6242\"*;" + }, + { + "verseNum": 20, + "text": "and|strong=\"H3967\"* of|strong=\"H8269\"* the|strong=\"H3605\"* temple|strong=\"H5411\"* servants|strong=\"H5411\"*, whom David|strong=\"H1732\"* and|strong=\"H3967\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* had|strong=\"H1732\"* given|strong=\"H5414\"* for|strong=\"H8034\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H8269\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, two|strong=\"H4480\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* temple|strong=\"H5411\"* servants|strong=\"H5411\"*. All|strong=\"H3605\"* of|strong=\"H8269\"* them|strong=\"H5414\"* were|strong=\"H3881\"* mentioned by|strong=\"H5344\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 21, + "text": "Then|strong=\"H7121\"* I|strong=\"H5921\"* proclaimed|strong=\"H7121\"* a|strong=\"H3068\"* fast|strong=\"H6685\"* there|strong=\"H8033\"* at|strong=\"H5921\"* the|strong=\"H3605\"* river|strong=\"H5104\"* Ahava, that|strong=\"H3605\"* we|strong=\"H3068\"* might|strong=\"H3477\"* humble|strong=\"H6031\"* ourselves|strong=\"H6031\"* before|strong=\"H6440\"* our|strong=\"H3605\"* God, to|strong=\"H5921\"* seek|strong=\"H1245\"* from|strong=\"H4480\"* him|strong=\"H6440\"* a|strong=\"H3068\"* straight|strong=\"H3477\"* way|strong=\"H1870\"* for|strong=\"H5921\"* us|strong=\"H5921\"*, for|strong=\"H5921\"* our|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, and|strong=\"H6440\"* for|strong=\"H5921\"* all|strong=\"H3605\"* our|strong=\"H3605\"* possessions|strong=\"H7399\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H4428\"* ashamed to|strong=\"H5921\"* ask|strong=\"H7592\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* a|strong=\"H3068\"* band of|strong=\"H4428\"* soldiers|strong=\"H2428\"* and|strong=\"H4428\"* horsemen|strong=\"H6571\"* to|strong=\"H5921\"* help|strong=\"H5826\"* us|strong=\"H5921\"* against|strong=\"H5921\"* the|strong=\"H3605\"* enemy on|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"*, because|strong=\"H3588\"* we|strong=\"H3068\"* had|strong=\"H4428\"* spoken to|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, saying, “The|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* our|strong=\"H3605\"* God|strong=\"H3027\"* is|strong=\"H3027\"* on|strong=\"H5921\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* seek|strong=\"H1245\"* him|strong=\"H5921\"*, for|strong=\"H3588\"* good|strong=\"H2896\"*; but|strong=\"H3588\"* his|strong=\"H3605\"* power|strong=\"H3027\"* and|strong=\"H4428\"* his|strong=\"H3605\"* wrath is|strong=\"H3027\"* against|strong=\"H5921\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* forsake|strong=\"H5800\"* him|strong=\"H5921\"*.”" + }, + { + "verseNum": 23, + "text": "So|strong=\"H2063\"* we|strong=\"H3068\"* fasted|strong=\"H6684\"* and|strong=\"H6684\"* begged our|strong=\"H5921\"* God for|strong=\"H5921\"* this|strong=\"H2063\"*, and|strong=\"H6684\"* he|strong=\"H5921\"* granted our|strong=\"H5921\"* request|strong=\"H1245\"*." + }, + { + "verseNum": 24, + "text": "Then|strong=\"H3548\"* I|strong=\"H8147\"* set apart twelve|strong=\"H8147\"* of|strong=\"H8269\"* the|strong=\"H5973\"* chiefs|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H5973\"* priests|strong=\"H3548\"*, even Sherebiah|strong=\"H8274\"*, Hashabiah|strong=\"H2811\"*, and|strong=\"H3548\"* ten|strong=\"H6235\"* of|strong=\"H8269\"* their|strong=\"H8147\"* brothers with|strong=\"H5973\"* them|strong=\"H8147\"*," + }, + { + "verseNum": 25, + "text": "and|strong=\"H3478\"* weighed|strong=\"H8254\"* to|strong=\"H3478\"* them|strong=\"H1992\"* the|strong=\"H3605\"* silver|strong=\"H3701\"*, the|strong=\"H3605\"* gold|strong=\"H2091\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"*, even the|strong=\"H3605\"* offering|strong=\"H8641\"* for|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H4428\"* our|strong=\"H3605\"* God, which|strong=\"H1992\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, his|strong=\"H3605\"* counselors|strong=\"H3289\"*, his|strong=\"H3605\"* princes|strong=\"H8269\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* there|strong=\"H1992\"* present|strong=\"H4672\"*, had|strong=\"H3478\"* offered|strong=\"H7311\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H5921\"* weighed|strong=\"H8254\"* into|strong=\"H5921\"* their|strong=\"H5921\"* hand|strong=\"H3027\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* talents|strong=\"H3603\"* of|strong=\"H3027\"* silver|strong=\"H3701\"*,+ 8:26 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces* one|strong=\"H3967\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"* of|strong=\"H3027\"* silver|strong=\"H3701\"* vessels|strong=\"H3627\"*, one|strong=\"H3967\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"* of|strong=\"H3027\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 27, + "text": "twenty|strong=\"H6242\"* bowls|strong=\"H3713\"* of|strong=\"H3627\"* gold|strong=\"H2091\"* weighing one|strong=\"H2896\"* thousand darics,+ 8:27 a daric was a gold coin issued by a Persian king, weighing about 8.4 grams or about 0.27 troy ounces each.* and|strong=\"H6242\"* two|strong=\"H8147\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* fine|strong=\"H2896\"* bright bronze|strong=\"H5178\"*, precious|strong=\"H2532\"* as|strong=\"H2532\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 28, + "text": "I|strong=\"H3068\"* said to|strong=\"H3068\"* them|strong=\"H3068\"*, “You are|strong=\"H3068\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* vessels|strong=\"H3627\"* are|strong=\"H3068\"* holy|strong=\"H6944\"*. The|strong=\"H3068\"* silver|strong=\"H3701\"* and|strong=\"H3068\"* the|strong=\"H3068\"* gold|strong=\"H2091\"* are|strong=\"H3068\"* a|strong=\"H3068\"* free will|strong=\"H3068\"* offering|strong=\"H5071\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers." + }, + { + "verseNum": 29, + "text": "Watch|strong=\"H8104\"* and|strong=\"H3478\"* keep|strong=\"H8104\"* them|strong=\"H6440\"* until|strong=\"H5704\"* you|strong=\"H6440\"* weigh|strong=\"H8254\"* them|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* chiefs|strong=\"H8269\"* of|strong=\"H1004\"* the|strong=\"H6440\"* priests|strong=\"H3548\"*, the|strong=\"H6440\"* Levites|strong=\"H3881\"*, and|strong=\"H3478\"* the|strong=\"H6440\"* princes|strong=\"H8269\"* of|strong=\"H1004\"* the|strong=\"H6440\"* fathers’ households|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* at|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, in|strong=\"H3478\"* the|strong=\"H6440\"* rooms|strong=\"H3957\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 30, + "text": "So the|strong=\"H3548\"* priests|strong=\"H3548\"* and|strong=\"H3701\"* the|strong=\"H3548\"* Levites|strong=\"H3881\"* received|strong=\"H6901\"* the|strong=\"H3548\"* weight|strong=\"H4948\"* of|strong=\"H1004\"* the|strong=\"H3548\"* silver|strong=\"H3701\"*, the|strong=\"H3548\"* gold|strong=\"H2091\"*, and|strong=\"H3701\"* the|strong=\"H3548\"* vessels|strong=\"H3627\"*, to|strong=\"H3389\"* bring|strong=\"H3881\"* them to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3389\"* the|strong=\"H3548\"* house|strong=\"H1004\"* of|strong=\"H1004\"* our God." + }, + { + "verseNum": 31, + "text": "Then|strong=\"H1961\"* we|strong=\"H3068\"* departed|strong=\"H3212\"* from|strong=\"H5265\"* the|strong=\"H5921\"* river|strong=\"H5104\"* Ahava on|strong=\"H5921\"* the|strong=\"H5921\"* twelfth|strong=\"H8147\"* day|strong=\"H2320\"* of|strong=\"H3027\"* the|strong=\"H5921\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, to|strong=\"H3212\"* go|strong=\"H3212\"* to|strong=\"H3212\"* Jerusalem|strong=\"H3389\"*. The|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* our|strong=\"H5921\"* God|strong=\"H3027\"* was|strong=\"H1961\"* on|strong=\"H5921\"* us|strong=\"H5921\"*, and|strong=\"H3027\"* he|strong=\"H8147\"* delivered|strong=\"H5337\"* us|strong=\"H5921\"* from|strong=\"H5265\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* enemy and|strong=\"H3027\"* the|strong=\"H5921\"* bandits by|strong=\"H3027\"* the|strong=\"H5921\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 32, + "text": "We|strong=\"H3117\"* came|strong=\"H7969\"* to|strong=\"H3117\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3117\"* stayed|strong=\"H3427\"* there|strong=\"H8033\"* three|strong=\"H7969\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 33, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* fourth|strong=\"H7243\"* day|strong=\"H3117\"* the|strong=\"H5921\"* silver|strong=\"H3701\"* and|strong=\"H1121\"* the|strong=\"H5921\"* gold|strong=\"H2091\"* and|strong=\"H1121\"* the|strong=\"H5921\"* vessels|strong=\"H3627\"* were|strong=\"H1121\"* weighed|strong=\"H8254\"* in|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1121\"* our|strong=\"H5921\"* God|strong=\"H3027\"* into|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Meremoth|strong=\"H4822\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uriah the|strong=\"H5921\"* priest|strong=\"H3548\"*; and|strong=\"H1121\"* with|strong=\"H5973\"* him|strong=\"H5921\"* was|strong=\"H3117\"* Eleazar the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Phinehas|strong=\"H6372\"*; and|strong=\"H1121\"* with|strong=\"H5973\"* them|strong=\"H5921\"* were|strong=\"H1121\"* Jozabad|strong=\"H3107\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeshua|strong=\"H3442\"*, and|strong=\"H1121\"* Noadiah|strong=\"H5129\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Binnui|strong=\"H1131\"*, the|strong=\"H5921\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 34, + "text": "Everything|strong=\"H3605\"* was|strong=\"H1931\"* counted|strong=\"H4557\"* and|strong=\"H6256\"* weighed|strong=\"H4948\"*; and|strong=\"H6256\"* all|strong=\"H3605\"* the|strong=\"H3605\"* weight|strong=\"H4948\"* was|strong=\"H1931\"* written|strong=\"H3789\"* at|strong=\"H3605\"* that|strong=\"H3605\"* time|strong=\"H6256\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* captivity|strong=\"H7628\"*, who|strong=\"H3605\"* had|strong=\"H3068\"* come|strong=\"H7126\"* out|strong=\"H5921\"* of|strong=\"H1121\"* exile|strong=\"H1473\"*, offered|strong=\"H7126\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* to|strong=\"H3478\"* the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*: twelve|strong=\"H8147\"* bulls|strong=\"H6499\"* for|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, ninety-six|strong=\"H8337\"* rams, seventy-seven|strong=\"H7657\"* lambs|strong=\"H3532\"*, and|strong=\"H1121\"* twelve|strong=\"H8147\"* male|strong=\"H3532\"* goats|strong=\"H6842\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*. All|strong=\"H3605\"* this|strong=\"H3068\"* was|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 36, + "text": "They|strong=\"H5971\"* delivered|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"*’s commissions|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"*’s local governors|strong=\"H6346\"* and|strong=\"H4428\"* to|strong=\"H5414\"* the|strong=\"H5414\"* governors|strong=\"H6346\"* beyond|strong=\"H5676\"* the|strong=\"H5414\"* River|strong=\"H5104\"*. So|strong=\"H5414\"* they|strong=\"H5971\"* supported|strong=\"H5375\"* the|strong=\"H5414\"* people|strong=\"H5971\"* and|strong=\"H4428\"* God|strong=\"H5414\"*’s house|strong=\"H1004\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* when|strong=\"H3615\"* these|strong=\"H5971\"* things|strong=\"H8441\"* were|strong=\"H3478\"* done|strong=\"H3615\"*, the|strong=\"H3548\"* princes|strong=\"H8269\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3478\"* me|strong=\"H5066\"*, saying, “The|strong=\"H3548\"* people|strong=\"H5971\"* of|strong=\"H8269\"* Israel|strong=\"H3478\"*, the|strong=\"H3548\"* priests|strong=\"H3548\"*, and|strong=\"H3478\"* the|strong=\"H3548\"* Levites|strong=\"H3881\"* have|strong=\"H5971\"* not|strong=\"H3808\"* separated themselves from|strong=\"H3478\"* the|strong=\"H3548\"* peoples|strong=\"H5971\"* of|strong=\"H8269\"* the|strong=\"H3548\"* lands, following their|strong=\"H3808\"* abominations|strong=\"H8441\"*, even|strong=\"H3808\"* those of|strong=\"H8269\"* the|strong=\"H3548\"* Canaanites|strong=\"H3669\"*, the|strong=\"H3548\"* Hittites|strong=\"H2850\"*, the|strong=\"H3548\"* Perizzites|strong=\"H6522\"*, the|strong=\"H3548\"* Jebusites|strong=\"H2983\"*, the|strong=\"H3548\"* Ammonites|strong=\"H5984\"*, the|strong=\"H3548\"* Moabites|strong=\"H4125\"*, the|strong=\"H3548\"* Egyptians|strong=\"H4713\"*, and|strong=\"H3478\"* the|strong=\"H3548\"* Amorites." + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* they|strong=\"H1992\"* have|strong=\"H1961\"* taken|strong=\"H5375\"* of|strong=\"H1121\"* their|strong=\"H5375\"* daughters|strong=\"H1323\"* for|strong=\"H3588\"* themselves|strong=\"H1992\"* and|strong=\"H1121\"* for|strong=\"H3588\"* their|strong=\"H5375\"* sons|strong=\"H1121\"*, so|strong=\"H1961\"* that|strong=\"H3588\"* the|strong=\"H3588\"* holy|strong=\"H6944\"* offspring|strong=\"H2233\"* have|strong=\"H1961\"* mixed themselves|strong=\"H1992\"* with|strong=\"H5971\"* the|strong=\"H3588\"* peoples|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H3588\"* lands. Yes|strong=\"H3588\"*, the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3588\"* princes|strong=\"H8269\"* and|strong=\"H1121\"* rulers|strong=\"H8269\"* has|strong=\"H1961\"* been|strong=\"H1961\"* chief|strong=\"H8269\"* in|strong=\"H1121\"* this|strong=\"H2088\"* trespass|strong=\"H4604\"*.”" + }, + { + "verseNum": 3, + "text": "When|strong=\"H8085\"* I|strong=\"H1697\"* heard|strong=\"H8085\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*, I|strong=\"H1697\"* tore|strong=\"H7167\"* my|strong=\"H8085\"* garment and|strong=\"H7218\"* my|strong=\"H8085\"* robe|strong=\"H4598\"*, and|strong=\"H7218\"* pulled|strong=\"H4803\"* the|strong=\"H8085\"* hair|strong=\"H8181\"* out|strong=\"H3427\"* of|strong=\"H1697\"* my|strong=\"H8085\"* head|strong=\"H7218\"* and|strong=\"H7218\"* of|strong=\"H1697\"* my|strong=\"H8085\"* beard|strong=\"H2206\"*, and|strong=\"H7218\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* confounded." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H3605\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* trembled|strong=\"H2730\"* at|strong=\"H3427\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H3605\"* God of|strong=\"H1697\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* assembled|strong=\"H3478\"* to|strong=\"H5704\"* me|strong=\"H5921\"* because|strong=\"H5921\"* of|strong=\"H1697\"* the|strong=\"H3605\"* trespass|strong=\"H4604\"* of|strong=\"H1697\"* the|strong=\"H3605\"* exiles|strong=\"H1473\"*; and|strong=\"H3478\"* I|strong=\"H5704\"* sat|strong=\"H3427\"* confounded until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 5, + "text": "At|strong=\"H5921\"* the|strong=\"H5921\"* evening|strong=\"H6153\"* offering|strong=\"H4503\"* I|strong=\"H5921\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* from|strong=\"H5921\"* my|strong=\"H3068\"* humiliation|strong=\"H8589\"*, even|strong=\"H6153\"* with|strong=\"H3068\"* my|strong=\"H3068\"* garment and|strong=\"H6965\"* my|strong=\"H3068\"* robe|strong=\"H4598\"* torn|strong=\"H7167\"*; and|strong=\"H6965\"* I|strong=\"H5921\"* fell|strong=\"H3766\"* on|strong=\"H5921\"* my|strong=\"H3068\"* knees|strong=\"H1290\"*, and|strong=\"H6965\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* my|strong=\"H3068\"* hands|strong=\"H3709\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*;" + }, + { + "verseNum": 6, + "text": "and|strong=\"H8064\"* I|strong=\"H3588\"* said, “My|strong=\"H7311\"* God|strong=\"H8064\"*, I|strong=\"H3588\"* am ashamed|strong=\"H3637\"* and|strong=\"H8064\"* blush|strong=\"H3637\"* to|strong=\"H5704\"* lift|strong=\"H7311\"* up|strong=\"H7311\"* my|strong=\"H7311\"* face|strong=\"H6440\"* to|strong=\"H5704\"* you|strong=\"H3588\"*, my|strong=\"H7311\"* God|strong=\"H8064\"*, for|strong=\"H3588\"* our|strong=\"H3588\"* iniquities|strong=\"H5771\"* have|strong=\"H5771\"* increased|strong=\"H7235\"* over|strong=\"H4605\"* our|strong=\"H3588\"* head|strong=\"H7218\"*, and|strong=\"H8064\"* our|strong=\"H3588\"* guiltiness has|strong=\"H3588\"* grown|strong=\"H1431\"* up|strong=\"H7311\"* to|strong=\"H5704\"* the|strong=\"H6440\"* heavens|strong=\"H8064\"*." + }, + { + "verseNum": 7, + "text": "Since|strong=\"H3117\"* the|strong=\"H6440\"* days|strong=\"H3117\"* of|strong=\"H4428\"* our|strong=\"H5414\"* fathers we|strong=\"H3068\"* have|strong=\"H3027\"* been exceedingly|strong=\"H1419\"* guilty|strong=\"H5771\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*; and|strong=\"H4428\"* for|strong=\"H5704\"* our|strong=\"H5414\"* iniquities|strong=\"H5771\"* we|strong=\"H3068\"*, our|strong=\"H5414\"* kings|strong=\"H4428\"*, and|strong=\"H4428\"* our|strong=\"H5414\"* priests|strong=\"H3548\"* have|strong=\"H3027\"* been delivered|strong=\"H5414\"* into|strong=\"H2719\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H6440\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H6440\"* lands, to|strong=\"H5704\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*, to|strong=\"H5704\"* captivity|strong=\"H7628\"*, to|strong=\"H5704\"* plunder, and|strong=\"H4428\"* to|strong=\"H5704\"* confusion|strong=\"H1322\"* of|strong=\"H4428\"* face|strong=\"H6440\"*, as|strong=\"H5704\"* it|strong=\"H5414\"* is|strong=\"H2088\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H6258\"* for|strong=\"H3068\"* a|strong=\"H3068\"* little|strong=\"H4592\"* moment|strong=\"H7281\"* grace|strong=\"H8467\"* has|strong=\"H3068\"* been|strong=\"H1961\"* shown from|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* leave|strong=\"H7604\"* us|strong=\"H5414\"* a|strong=\"H3068\"* remnant|strong=\"H7604\"* to|strong=\"H3068\"* escape|strong=\"H6413\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* give|strong=\"H5414\"* us|strong=\"H5414\"* a|strong=\"H3068\"* stake in|strong=\"H3068\"* his|strong=\"H5414\"* holy|strong=\"H6944\"* place|strong=\"H4725\"*, that|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* may|strong=\"H1961\"* lighten our|strong=\"H3068\"* eyes|strong=\"H5869\"*, and|strong=\"H3068\"* revive us|strong=\"H5414\"* a|strong=\"H3068\"* little|strong=\"H4592\"* in|strong=\"H3068\"* our|strong=\"H3068\"* bondage|strong=\"H5659\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H5650\"* bondservants; yet|strong=\"H3588\"* our|strong=\"H5414\"* God|strong=\"H5414\"* has|strong=\"H4428\"* not|strong=\"H3808\"* forsaken|strong=\"H5800\"* us|strong=\"H5414\"* in|strong=\"H5921\"* our|strong=\"H5414\"* bondage|strong=\"H5650\"*, but|strong=\"H3588\"* has|strong=\"H4428\"* extended|strong=\"H5186\"* loving kindness|strong=\"H2617\"* to|strong=\"H5921\"* us|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H6440\"* sight|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H6440\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"*, to|strong=\"H5921\"* revive us|strong=\"H5414\"*, to|strong=\"H5921\"* set|strong=\"H5414\"* up|strong=\"H7311\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H4428\"* our|strong=\"H5414\"* God|strong=\"H5414\"*, and|strong=\"H3063\"* to|strong=\"H5921\"* repair|strong=\"H5975\"* its|strong=\"H5414\"* ruins|strong=\"H2723\"*, and|strong=\"H3063\"* to|strong=\"H5921\"* give|strong=\"H5414\"* us|strong=\"H5414\"* a|strong=\"H3068\"* wall|strong=\"H1447\"* in|strong=\"H5921\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 10, + "text": "“Now|strong=\"H6258\"*, our|strong=\"H3588\"* God, what|strong=\"H4100\"* shall|strong=\"H2063\"* we|strong=\"H3068\"* say after|strong=\"H3588\"* this|strong=\"H2063\"*? For|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H6258\"* forsaken|strong=\"H5800\"* your|strong=\"H3588\"* commandments|strong=\"H4687\"*," + }, + { + "verseNum": 11, + "text": "which|strong=\"H1931\"* you|strong=\"H6680\"* have|strong=\"H5971\"* commanded|strong=\"H6680\"* by|strong=\"H3027\"* your|strong=\"H6680\"* servants|strong=\"H5650\"* the|strong=\"H3423\"* prophets|strong=\"H5030\"*, saying|strong=\"H6310\"*, ‘The|strong=\"H3423\"* land to|strong=\"H3027\"* which|strong=\"H1931\"* you|strong=\"H6680\"* go|strong=\"H5971\"* to|strong=\"H3027\"* possess|strong=\"H3423\"* is|strong=\"H1931\"* an|strong=\"H5971\"* unclean|strong=\"H2932\"* land through|strong=\"H3027\"* the|strong=\"H3423\"* uncleanness|strong=\"H2932\"* of|strong=\"H3027\"* the|strong=\"H3423\"* peoples|strong=\"H5971\"* of|strong=\"H3027\"* the|strong=\"H3423\"* lands, through|strong=\"H3027\"* their|strong=\"H4390\"* abominations|strong=\"H8441\"*, which|strong=\"H1931\"* have|strong=\"H5971\"* filled|strong=\"H4390\"* it|strong=\"H1931\"* from|strong=\"H3027\"* one|strong=\"H1931\"* end|strong=\"H6310\"* to|strong=\"H3027\"* another|strong=\"H6310\"* with|strong=\"H4390\"* their|strong=\"H4390\"* filthiness|strong=\"H2932\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* don’t give|strong=\"H5414\"* your|strong=\"H5414\"* daughters|strong=\"H1323\"* to|strong=\"H5704\"* their|strong=\"H5375\"* sons|strong=\"H1121\"*. Don’t take|strong=\"H5375\"* their|strong=\"H5375\"* daughters|strong=\"H1323\"* to|strong=\"H5704\"* your|strong=\"H5414\"* sons|strong=\"H1121\"*, nor|strong=\"H3808\"* seek|strong=\"H1875\"* their|strong=\"H5375\"* peace|strong=\"H7965\"* or|strong=\"H3808\"* their|strong=\"H5375\"* prosperity|strong=\"H7965\"* forever|strong=\"H5769\"*, that|strong=\"H4616\"* you|strong=\"H5414\"* may|strong=\"H1121\"* be|strong=\"H3808\"* strong|strong=\"H2388\"* and|strong=\"H1121\"* eat the|strong=\"H5414\"* good|strong=\"H2896\"* of|strong=\"H1121\"* the|strong=\"H5414\"* land, and|strong=\"H1121\"* leave|strong=\"H5414\"* it|strong=\"H5414\"* for|strong=\"H5704\"* an|strong=\"H5414\"* inheritance|strong=\"H3423\"* to|strong=\"H5704\"* your|strong=\"H5414\"* children|strong=\"H1121\"* forever|strong=\"H5769\"*.’" + }, + { + "verseNum": 13, + "text": "“After|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3588\"* has|strong=\"H3588\"* come on|strong=\"H5921\"* us|strong=\"H5414\"* for|strong=\"H3588\"* our|strong=\"H3605\"* evil|strong=\"H7451\"* deeds|strong=\"H4639\"* and|strong=\"H1419\"* for|strong=\"H3588\"* our|strong=\"H3605\"* great|strong=\"H1419\"* guilt|strong=\"H5771\"*, since|strong=\"H3588\"* you|strong=\"H3588\"*, our|strong=\"H3605\"* God|strong=\"H5414\"*, have|strong=\"H5771\"* punished|strong=\"H2820\"* us|strong=\"H5414\"* less|strong=\"H3588\"* than|strong=\"H5921\"* our|strong=\"H3605\"* iniquities|strong=\"H5771\"* deserve, and|strong=\"H1419\"* have|strong=\"H5771\"* given|strong=\"H5414\"* us|strong=\"H5414\"* such|strong=\"H2063\"* a|strong=\"H3068\"* remnant|strong=\"H6413\"*," + }, + { + "verseNum": 14, + "text": "shall|strong=\"H5971\"* we|strong=\"H3068\"* again|strong=\"H7725\"* break|strong=\"H6565\"* your|strong=\"H7725\"* commandments|strong=\"H4687\"*, and|strong=\"H7725\"* join ourselves with|strong=\"H5971\"* the|strong=\"H7725\"* peoples|strong=\"H5971\"* that|strong=\"H5971\"* do|strong=\"H6565\"* these|strong=\"H5971\"* abominations|strong=\"H8441\"*? Wouldn’t you|strong=\"H5704\"* be|strong=\"H3808\"* angry with|strong=\"H5971\"* us|strong=\"H7725\"* until|strong=\"H5704\"* you|strong=\"H5704\"* had|strong=\"H5971\"* consumed|strong=\"H3615\"* us|strong=\"H7725\"*, so|strong=\"H3808\"* that|strong=\"H5971\"* there|strong=\"H7725\"* would|strong=\"H5971\"* be|strong=\"H3808\"* no|strong=\"H3808\"* remnant|strong=\"H7611\"*, nor|strong=\"H3808\"* any|strong=\"H3808\"* to|strong=\"H5704\"* escape|strong=\"H6413\"*?" + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, you|strong=\"H3588\"* are|strong=\"H3117\"* righteous|strong=\"H6662\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H3117\"* left|strong=\"H7604\"* a|strong=\"H3068\"* remnant|strong=\"H7604\"* that|strong=\"H3588\"* has|strong=\"H3068\"* escaped|strong=\"H6413\"*, as|strong=\"H3117\"* it|strong=\"H5921\"* is|strong=\"H3068\"* today|strong=\"H3117\"*. Behold|strong=\"H2005\"*,+ 9:15 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* we|strong=\"H3068\"* are|strong=\"H3117\"* before|strong=\"H6440\"* you|strong=\"H3588\"* in|strong=\"H5921\"* our|strong=\"H3068\"* guiltiness; for|strong=\"H3588\"* no|strong=\"H5975\"* one|strong=\"H2088\"* can|strong=\"H5975\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* you|strong=\"H3588\"* because|strong=\"H3588\"* of|strong=\"H3068\"* this|strong=\"H2088\"*.”" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3588\"* while|strong=\"H3588\"* Ezra|strong=\"H5830\"* prayed|strong=\"H6419\"* and|strong=\"H3478\"* made|strong=\"H7235\"* confession|strong=\"H3034\"*, weeping|strong=\"H1058\"* and|strong=\"H3478\"* casting himself|strong=\"H6440\"* down|strong=\"H5307\"* before|strong=\"H6440\"* God’s house|strong=\"H1004\"*, there|strong=\"H6440\"* was|strong=\"H3478\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* to|strong=\"H3478\"* him|strong=\"H6440\"* out|strong=\"H6440\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H7227\"* assembly|strong=\"H6951\"* of|strong=\"H1004\"* men|strong=\"H3206\"* and|strong=\"H3478\"* women and|strong=\"H3478\"* children|strong=\"H3206\"*; for|strong=\"H3588\"* the|strong=\"H6440\"* people|strong=\"H5971\"* wept|strong=\"H1058\"* very|strong=\"H3966\"* bitterly|strong=\"H1058\"*." + }, + { + "verseNum": 2, + "text": "Shecaniah|strong=\"H7935\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehiel|strong=\"H3171\"*, one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Elam|strong=\"H5867\"*, answered|strong=\"H6030\"* Ezra|strong=\"H5830\"*, “We|strong=\"H6258\"* have|strong=\"H3426\"* trespassed|strong=\"H4603\"* against|strong=\"H5921\"* our|strong=\"H5921\"* God, and|strong=\"H1121\"* have|strong=\"H3426\"* married|strong=\"H3427\"* foreign|strong=\"H5237\"* women of|strong=\"H1121\"* the|strong=\"H5921\"* peoples|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H5921\"* land. Yet|strong=\"H6258\"* now|strong=\"H6258\"* there|strong=\"H3426\"* is|strong=\"H3426\"* hope|strong=\"H4723\"* for|strong=\"H5921\"* Israel|strong=\"H3478\"* concerning|strong=\"H5921\"* this|strong=\"H2063\"* thing|strong=\"H2063\"*." + }, + { + "verseNum": 3, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* let|strong=\"H6258\"*’s make|strong=\"H6213\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* our|strong=\"H3605\"* God to|strong=\"H3318\"* put|strong=\"H6213\"* away|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wives and|strong=\"H6213\"* those|strong=\"H1992\"* who|strong=\"H3605\"* are|strong=\"H1992\"* born|strong=\"H3205\"* of|strong=\"H3205\"* them|strong=\"H1992\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* counsel|strong=\"H6098\"* of|strong=\"H3205\"* my|strong=\"H3605\"* lord and|strong=\"H6213\"* of|strong=\"H3205\"* those|strong=\"H1992\"* who|strong=\"H3605\"* tremble|strong=\"H2730\"* at|strong=\"H6213\"* the|strong=\"H3605\"* commandment|strong=\"H4687\"* of|strong=\"H3205\"* our|strong=\"H3605\"* God. Let|strong=\"H6258\"* it|strong=\"H6213\"* be|strong=\"H1285\"* done|strong=\"H6213\"* according to|strong=\"H3318\"* the|strong=\"H3605\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 4, + "text": "Arise|strong=\"H6965\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* matter|strong=\"H1697\"* belongs to|strong=\"H6213\"* you|strong=\"H3588\"* and|strong=\"H6965\"* we|strong=\"H3068\"* are|strong=\"H1697\"* with|strong=\"H5973\"* you|strong=\"H3588\"*. Be|strong=\"H1697\"* courageous|strong=\"H2388\"*, and|strong=\"H6965\"* do|strong=\"H6213\"* it|strong=\"H5921\"*.”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6965\"* Ezra|strong=\"H5830\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* made|strong=\"H6213\"* the|strong=\"H3605\"* chiefs|strong=\"H8269\"* of|strong=\"H1697\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, the|strong=\"H3605\"* Levites|strong=\"H3881\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* swear|strong=\"H7650\"* that|strong=\"H3605\"* they|strong=\"H6213\"* would|strong=\"H3478\"* do|strong=\"H6213\"* according to|strong=\"H3478\"* this|strong=\"H2088\"* word|strong=\"H1697\"*. So|strong=\"H6213\"* they|strong=\"H6213\"* swore|strong=\"H7650\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H6965\"* Ezra|strong=\"H5830\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* from|strong=\"H6440\"* before|strong=\"H6440\"* God|strong=\"H3808\"*’s house|strong=\"H1004\"*, and|strong=\"H1121\"* went|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H6440\"* room|strong=\"H1004\"* of|strong=\"H1121\"* Jehohanan|strong=\"H3076\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eliashib. When|strong=\"H3588\"* he|strong=\"H3588\"* came|strong=\"H3212\"* there|strong=\"H8033\"*, he|strong=\"H3588\"* didn’t eat|strong=\"H3899\"* bread|strong=\"H3899\"* or|strong=\"H3808\"* drink|strong=\"H8354\"* water|strong=\"H4325\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* mourned because|strong=\"H3588\"* of|strong=\"H1121\"* the|strong=\"H6440\"* trespass|strong=\"H4604\"* of|strong=\"H1121\"* the|strong=\"H6440\"* exiles|strong=\"H1473\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3605\"* made|strong=\"H5674\"* a|strong=\"H3068\"* proclamation|strong=\"H6963\"* throughout|strong=\"H3605\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3389\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* captivity|strong=\"H1473\"*, that|strong=\"H3605\"* they|strong=\"H3605\"* should gather|strong=\"H6908\"* themselves|strong=\"H6908\"* together|strong=\"H6908\"* to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"*;" + }, + { + "verseNum": 8, + "text": "and|strong=\"H3117\"* that|strong=\"H3605\"* whoever|strong=\"H3605\"* didn’t come within three|strong=\"H7969\"* days|strong=\"H3117\"*, according to|strong=\"H3117\"* the|strong=\"H3605\"* counsel|strong=\"H6098\"* of|strong=\"H3117\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H3117\"* the|strong=\"H3605\"* elders|strong=\"H2205\"*, all|strong=\"H3605\"* his|strong=\"H3605\"* possessions|strong=\"H7399\"* should|strong=\"H3117\"* be|strong=\"H3808\"* forfeited|strong=\"H2763\"*, and|strong=\"H3117\"* he|strong=\"H1931\"* himself|strong=\"H1931\"* separated from|strong=\"H3117\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H3117\"* the|strong=\"H3605\"* captivity|strong=\"H1473\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H6908\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Benjamin|strong=\"H1144\"* gathered|strong=\"H6908\"* themselves|strong=\"H6908\"* together|strong=\"H6908\"* to|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* within|strong=\"H1004\"* the|strong=\"H3605\"* three|strong=\"H7969\"* days|strong=\"H3117\"*. It|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H3605\"* ninth|strong=\"H8671\"* month|strong=\"H2320\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* twentieth|strong=\"H6242\"* day|strong=\"H3117\"* of|strong=\"H1004\"* the|strong=\"H3605\"* month|strong=\"H2320\"*; and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* wide place|strong=\"H1004\"* in|strong=\"H3427\"* front of|strong=\"H1004\"* God’s house|strong=\"H1004\"*, trembling|strong=\"H7460\"* because|strong=\"H5921\"* of|strong=\"H1004\"* this|strong=\"H1931\"* matter|strong=\"H1697\"*, and|strong=\"H3063\"* because|strong=\"H5921\"* of|strong=\"H1004\"* the|strong=\"H3605\"* great rain|strong=\"H1653\"*." + }, + { + "verseNum": 10, + "text": "Ezra|strong=\"H5830\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* stood|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* said to|strong=\"H3478\"* them|strong=\"H5921\"*, “You|strong=\"H5921\"* have|strong=\"H3478\"* trespassed|strong=\"H4603\"*, and|strong=\"H6965\"* have|strong=\"H3478\"* married|strong=\"H3427\"* foreign|strong=\"H5237\"* women, increasing|strong=\"H3254\"* the|strong=\"H5921\"* guilt of|strong=\"H3427\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* make|strong=\"H6213\"* confession|strong=\"H8426\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers and|strong=\"H3068\"* do|strong=\"H6213\"* his|strong=\"H5414\"* pleasure|strong=\"H7522\"*. Separate yourselves|strong=\"H3068\"* from|strong=\"H4480\"* the|strong=\"H5414\"* peoples|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H5414\"* land and|strong=\"H3068\"* from|strong=\"H4480\"* the|strong=\"H5414\"* foreign|strong=\"H5237\"* women.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H6030\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* answered|strong=\"H6030\"* with|strong=\"H6213\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*, “We|strong=\"H6213\"* must do|strong=\"H6213\"* as|strong=\"H1697\"* you|strong=\"H3605\"* have|strong=\"H1697\"* said|strong=\"H1697\"* concerning|strong=\"H5921\"* us|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* are|strong=\"H3117\"* many|strong=\"H7227\"*, and|strong=\"H3117\"* it|strong=\"H3588\"* is|strong=\"H2088\"* a|strong=\"H3068\"* time|strong=\"H6256\"* of|strong=\"H3117\"* much|strong=\"H7227\"* rain|strong=\"H1653\"*, and|strong=\"H3117\"* we|strong=\"H3068\"* are|strong=\"H3117\"* not|strong=\"H3808\"* able|strong=\"H3581\"* to|strong=\"H6256\"* stand|strong=\"H5975\"* outside|strong=\"H2351\"*. This|strong=\"H2088\"* is|strong=\"H2088\"* not|strong=\"H3808\"* a|strong=\"H3068\"* work|strong=\"H4399\"* of|strong=\"H3117\"* one|strong=\"H2088\"* day|strong=\"H3117\"* or|strong=\"H3808\"* two|strong=\"H8147\"*, for|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H5971\"* greatly|strong=\"H7227\"* transgressed|strong=\"H6586\"* in|strong=\"H3117\"* this|strong=\"H2088\"* matter|strong=\"H1697\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"H4994\"* let|strong=\"H4994\"* our|strong=\"H3605\"* princes|strong=\"H8269\"* be|strong=\"H1697\"* appointed|strong=\"H5975\"* for|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*, and|strong=\"H7725\"* let|strong=\"H4994\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1697\"* in|strong=\"H3427\"* our|strong=\"H3605\"* cities|strong=\"H5892\"* who|strong=\"H3605\"* have|strong=\"H1697\"* married|strong=\"H3427\"* foreign|strong=\"H5237\"* women|strong=\"H2205\"* come|strong=\"H7725\"* at|strong=\"H3427\"* appointed|strong=\"H5975\"* times|strong=\"H6256\"*, and|strong=\"H7725\"* with|strong=\"H5973\"* them|strong=\"H7725\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1697\"* every|strong=\"H3605\"* city|strong=\"H5892\"* and|strong=\"H7725\"* its|strong=\"H3605\"* judges|strong=\"H8199\"*, until|strong=\"H5704\"* the|strong=\"H3605\"* fierce|strong=\"H2740\"* wrath|strong=\"H2740\"* of|strong=\"H1697\"* our|strong=\"H3605\"* God is|strong=\"H2088\"* turned|strong=\"H7725\"* from|strong=\"H4480\"* us|strong=\"H4994\"*, until|strong=\"H5704\"* this|strong=\"H2088\"* matter|strong=\"H1697\"* is|strong=\"H2088\"* resolved.”" + }, + { + "verseNum": 15, + "text": "Only Jonathan|strong=\"H3129\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asahel|strong=\"H6214\"* and|strong=\"H1121\"* Jahzeiah|strong=\"H3167\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Tikvah|strong=\"H8616\"* stood|strong=\"H5975\"* up|strong=\"H5975\"* against|strong=\"H5921\"* this|strong=\"H2063\"*; and|strong=\"H1121\"* Meshullam|strong=\"H4918\"* and|strong=\"H1121\"* Shabbethai|strong=\"H7678\"* the|strong=\"H5921\"* Levite|strong=\"H3881\"* helped|strong=\"H5826\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* captivity|strong=\"H1473\"* did|strong=\"H6213\"* so|strong=\"H3651\"*. Ezra|strong=\"H5830\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*, with|strong=\"H1004\"* certain heads|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ households|strong=\"H1004\"*, after|strong=\"H3117\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H6213\"* by|strong=\"H3117\"* their|strong=\"H3605\"* names|strong=\"H8034\"*, were|strong=\"H1121\"* set|strong=\"H3427\"* apart; and|strong=\"H1121\"* they|strong=\"H3117\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* first|strong=\"H1121\"* day|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H3605\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"* to|strong=\"H6213\"* examine|strong=\"H1875\"* the|strong=\"H3605\"* matter|strong=\"H1697\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H3117\"* finished|strong=\"H3615\"* with|strong=\"H3427\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* who|strong=\"H3605\"* had|strong=\"H3427\"* married|strong=\"H3427\"* foreign|strong=\"H5237\"* women by|strong=\"H3117\"* the|strong=\"H3605\"* first|strong=\"H7223\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* first|strong=\"H7223\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 18, + "text": "Among|strong=\"H3427\"* the|strong=\"H4672\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4672\"* priests|strong=\"H3548\"* there|strong=\"H3427\"* were|strong=\"H1121\"* found|strong=\"H4672\"* who|strong=\"H3548\"* had|strong=\"H3548\"* married|strong=\"H3427\"* foreign|strong=\"H5237\"* women:" + }, + { + "verseNum": 19, + "text": "They gave their hand that they would put away their wives; and being guilty, they offered a ram of the flock for their guilt." + }, + { + "verseNum": 20, + "text": "Of the sons of Immer: Hanani and Zebadiah." + }, + { + "verseNum": 21, + "text": "Of the sons of Harim: Maaseiah, Elijah, Shemaiah, Jehiel, and Uzziah." + }, + { + "verseNum": 22, + "text": "Of the sons of Pashhur: Elioenai, Maaseiah, Ishmael, Nethanel, Jozabad, and Elasah." + }, + { + "verseNum": 23, + "text": "Of the Levites: Jozabad, Shimei, Kelaiah (also called Kelita), Pethahiah, Judah, and Eliezer." + }, + { + "verseNum": 24, + "text": "Of the singers: Eliashib." + }, + { + "verseNum": 25, + "text": "Of Israel: Of the sons of Parosh: Ramiah, Izziah, Malchijah, Mijamin, Eleazar, Malchijah, and Benaiah." + }, + { + "verseNum": 26, + "text": "Of the sons of Elam: Mattaniah, Zechariah, Jehiel, Abdi, Jeremoth, and Elijah." + }, + { + "verseNum": 27, + "text": "Of the sons of Zattu: Elioenai, Eliashib, Mattaniah, Jeremoth, Zabad, and Aziza." + }, + { + "verseNum": 28, + "text": "Of the sons of Bebai: Jehohanan, Hananiah, Zabbai, and Athlai." + }, + { + "verseNum": 29, + "text": "Of the sons of Bani: Meshullam, Malluch, Adaiah, Jashub, Sheal, and Jeremoth." + }, + { + "verseNum": 30, + "text": "Of the sons of Pahathmoab: Adna, Chelal, Benaiah, Maaseiah, Mattaniah, Bezalel, Binnui, and Manasseh." + }, + { + "verseNum": 31, + "text": "Of the sons of Harim: Eliezer, Isshijah, Malchijah, Shemaiah, Shimeon," + }, + { + "verseNum": 32, + "text": "Benjamin, Malluch, and Shemariah." + }, + { + "verseNum": 33, + "text": "Of the sons of Hashum: Mattenai, Mattattah, Zabad, Eliphelet, Jeremai, Manasseh, and Shimei." + }, + { + "verseNum": 34, + "text": "Of the sons of Bani: Maadai, Amram, Uel," + }, + { + "verseNum": 35, + "text": "Benaiah, Bedeiah, Cheluhi," + }, + { + "verseNum": 36, + "text": "Vaniah, Meremoth, Eliashib," + }, + { + "verseNum": 37, + "text": "Mattaniah, Mattenai, Jaasu," + }, + { + "verseNum": 38, + "text": "Bani, Binnui, Shimei," + }, + { + "verseNum": 39, + "text": "Shelemiah, Nathan, Adaiah," + }, + { + "verseNum": 40, + "text": "Machnadebai, Shashai, Sharai," + }, + { + "verseNum": 41, + "text": "Azarel, Shelemiah, Shemariah," + }, + { + "verseNum": 42, + "text": "Shallum, Amariah, and Joseph." + }, + { + "verseNum": 43, + "text": "Of the sons of Nebo: Jeiel, Mattithiah, Zabad, Zebina, Iddo, Joel, and Benaiah." + }, + { + "verseNum": 44, + "text": "All|strong=\"H3605\"* these|strong=\"H1992\"* had|strong=\"H3426\"* taken|strong=\"H5375\"* foreign|strong=\"H5237\"* wives. Some|strong=\"H1992\"* of|strong=\"H1121\"* them|strong=\"H1992\"* had|strong=\"H3426\"* wives by|strong=\"H3605\"* whom|strong=\"H1992\"* they|strong=\"H1992\"* had|strong=\"H3426\"* children|strong=\"H1121\"*." + } + ] + } + ] + }, + { + "name": "Nehemiah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Nehemiah|strong=\"H5166\"* the|strong=\"H1697\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hacaliah|strong=\"H2446\"*." + }, + { + "verseNum": 2, + "text": "Hanani|strong=\"H2607\"*, one|strong=\"H4480\"* of|strong=\"H4480\"* my|strong=\"H5921\"* brothers, came|strong=\"H3063\"*, he|strong=\"H1931\"* and|strong=\"H3063\"* certain men out|strong=\"H4480\"* of|strong=\"H4480\"* Judah|strong=\"H3063\"*; and|strong=\"H3063\"* I|strong=\"H5921\"* asked|strong=\"H7592\"* them|strong=\"H5921\"* about|strong=\"H5921\"* the|strong=\"H5921\"* Jews|strong=\"H3064\"* who|strong=\"H1931\"* had|strong=\"H3063\"* escaped|strong=\"H6413\"*, who|strong=\"H1931\"* were|strong=\"H3063\"* left|strong=\"H7604\"* of|strong=\"H4480\"* the|strong=\"H5921\"* captivity|strong=\"H7628\"*, and|strong=\"H3063\"* concerning|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H8033\"* said to|strong=\"H3389\"* me|strong=\"H4480\"*, “The|strong=\"H4480\"* remnant|strong=\"H7604\"* who|strong=\"H7604\"* are|strong=\"H8179\"* left|strong=\"H7604\"* of|strong=\"H8179\"* the|strong=\"H4480\"* captivity|strong=\"H7628\"* there|strong=\"H8033\"* in|strong=\"H7604\"* the|strong=\"H4480\"* province|strong=\"H4082\"* are|strong=\"H8179\"* in|strong=\"H7604\"* great|strong=\"H1419\"* affliction|strong=\"H7451\"* and|strong=\"H1419\"* reproach|strong=\"H2781\"*. The|strong=\"H4480\"* wall|strong=\"H2346\"* of|strong=\"H8179\"* Jerusalem|strong=\"H3389\"* is|strong=\"H7451\"* also|strong=\"H3389\"* broken|strong=\"H6555\"* down|strong=\"H6555\"*, and|strong=\"H1419\"* its|strong=\"H6555\"* gates|strong=\"H8179\"* are|strong=\"H8179\"* burned|strong=\"H3341\"* with|strong=\"H3389\"* fire|strong=\"H3341\"*.”" + }, + { + "verseNum": 4, + "text": "When|strong=\"H1961\"* I|strong=\"H3117\"* heard|strong=\"H8085\"* these|strong=\"H8085\"* words|strong=\"H1697\"*, I|strong=\"H3117\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* and|strong=\"H3117\"* wept|strong=\"H1058\"*, and|strong=\"H3117\"* mourned|strong=\"H1058\"* several days|strong=\"H3117\"*; and|strong=\"H3117\"* I|strong=\"H3117\"* fasted|strong=\"H6684\"* and|strong=\"H3117\"* prayed|strong=\"H6419\"* before|strong=\"H6440\"* the|strong=\"H6440\"* God|strong=\"H8064\"*+ 1:4 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* of|strong=\"H3117\"* heaven|strong=\"H8064\"*," + }, + { + "verseNum": 5, + "text": "and|strong=\"H3068\"* said, “I|strong=\"H3068\"* beg you|strong=\"H3372\"*, Yahweh|strong=\"H3068\"*,+ 1:5 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* the|strong=\"H8104\"* God|strong=\"H3068\"* of|strong=\"H3068\"* heaven|strong=\"H8064\"*, the|strong=\"H8104\"* great|strong=\"H1419\"* and|strong=\"H3068\"* awesome|strong=\"H3372\"* God|strong=\"H3068\"* who|strong=\"H3068\"* keeps|strong=\"H8104\"* covenant|strong=\"H1285\"* and|strong=\"H3068\"* loving kindness|strong=\"H2617\"* with|strong=\"H3068\"* those who|strong=\"H3068\"* love|strong=\"H2617\"* him|strong=\"H8104\"* and|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H8104\"* commandments|strong=\"H4687\"*," + }, + { + "verseNum": 6, + "text": "let|strong=\"H4994\"* your|strong=\"H5921\"* ear|strong=\"H8085\"* now|strong=\"H4994\"* be|strong=\"H1961\"* attentive|strong=\"H7183\"* and|strong=\"H1121\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"* open|strong=\"H6605\"*, that|strong=\"H3117\"* you|strong=\"H6440\"* may|strong=\"H1961\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H6440\"* prayer|strong=\"H8605\"* of|strong=\"H1121\"* your|strong=\"H5921\"* servant|strong=\"H5650\"* which|strong=\"H1004\"* I|strong=\"H3117\"* pray|strong=\"H6419\"* before|strong=\"H6440\"* you|strong=\"H6440\"* at|strong=\"H5921\"* this|strong=\"H6440\"* time|strong=\"H3117\"*, day|strong=\"H3117\"* and|strong=\"H1121\"* night|strong=\"H3915\"*, for|strong=\"H5921\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* your|strong=\"H5921\"* servants|strong=\"H5650\"*, while|strong=\"H1961\"* I|strong=\"H3117\"* confess|strong=\"H3034\"* the|strong=\"H6440\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* which|strong=\"H1004\"* we|strong=\"H3068\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"* against|strong=\"H5921\"* you|strong=\"H6440\"*. Yes, I|strong=\"H3117\"* and|strong=\"H1121\"* my|strong=\"H8085\"* father|strong=\"H1121\"*’s house|strong=\"H1004\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"*." + }, + { + "verseNum": 7, + "text": "We have|strong=\"H5650\"* dealt very|strong=\"H2254\"* corruptly|strong=\"H2254\"* against|strong=\"H6680\"* you|strong=\"H6680\"*, and|strong=\"H4872\"* have|strong=\"H5650\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* the|strong=\"H8104\"* commandments|strong=\"H4687\"*, nor|strong=\"H3808\"* the|strong=\"H8104\"* statutes|strong=\"H2706\"*, nor|strong=\"H3808\"* the|strong=\"H8104\"* ordinances|strong=\"H4941\"*, which|strong=\"H2706\"* you|strong=\"H6680\"* commanded|strong=\"H6680\"* your|strong=\"H8104\"* servant|strong=\"H5650\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 8, + "text": "“Remember|strong=\"H2142\"*, I|strong=\"H1697\"* beg|strong=\"H4994\"* you|strong=\"H6680\"*, the|strong=\"H6680\"* word|strong=\"H1697\"* that|strong=\"H5971\"* you|strong=\"H6680\"* commanded|strong=\"H6680\"* your|strong=\"H6680\"* servant|strong=\"H5650\"* Moses|strong=\"H4872\"*, saying|strong=\"H1697\"*, ‘If you|strong=\"H6680\"* trespass|strong=\"H4603\"*, I|strong=\"H1697\"* will|strong=\"H5971\"* scatter|strong=\"H6327\"* you|strong=\"H6680\"* among|strong=\"H5971\"* the|strong=\"H6680\"* peoples|strong=\"H5971\"*;" + }, + { + "verseNum": 9, + "text": "but|strong=\"H1961\"* if|strong=\"H1961\"* you|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H7725\"*, and|strong=\"H7725\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"* and|strong=\"H7725\"* do|strong=\"H6213\"* them|strong=\"H7725\"*, though your|strong=\"H8104\"* outcasts|strong=\"H5080\"* were|strong=\"H1961\"* in|strong=\"H6213\"* the|strong=\"H6213\"* uttermost|strong=\"H7097\"* part|strong=\"H7097\"* of|strong=\"H8034\"* the|strong=\"H6213\"* heavens|strong=\"H8064\"*, yet I|strong=\"H6213\"* will|strong=\"H1961\"* gather|strong=\"H6908\"* them|strong=\"H7725\"* from|strong=\"H7725\"* there|strong=\"H8033\"*, and|strong=\"H7725\"* will|strong=\"H1961\"* bring|strong=\"H7725\"* them|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H6213\"* place|strong=\"H4725\"* that|strong=\"H6213\"* I|strong=\"H6213\"* have|strong=\"H1961\"* chosen, to|strong=\"H7725\"* cause|strong=\"H6213\"* my|strong=\"H8104\"* name|strong=\"H8034\"* to|strong=\"H7725\"* dwell|strong=\"H7931\"* there|strong=\"H8033\"*.’" + }, + { + "verseNum": 10, + "text": "“Now|strong=\"H1419\"* these|strong=\"H1992\"* are|strong=\"H1992\"* your|strong=\"H3027\"* servants|strong=\"H5650\"* and|strong=\"H1419\"* your|strong=\"H3027\"* people|strong=\"H5971\"*, whom|strong=\"H1992\"* you|strong=\"H3027\"* have|strong=\"H5971\"* redeemed|strong=\"H6299\"* by|strong=\"H3027\"* your|strong=\"H3027\"* great|strong=\"H1419\"* power|strong=\"H3027\"* and|strong=\"H1419\"* by|strong=\"H3027\"* your|strong=\"H3027\"* strong|strong=\"H2389\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 11, + "text": "Lord,+ 1:11 The word translated “Lord” is “Adonai.”* I|strong=\"H3117\"* beg|strong=\"H4994\"* you|strong=\"H5414\"*, let|strong=\"H4994\"* your|strong=\"H5414\"* ear be|strong=\"H1961\"* attentive|strong=\"H7183\"* now|strong=\"H4994\"* to|strong=\"H1961\"* the|strong=\"H6440\"* prayer|strong=\"H8605\"* of|strong=\"H4428\"* your|strong=\"H5414\"* servant|strong=\"H5650\"*, and|strong=\"H4428\"* to|strong=\"H1961\"* the|strong=\"H6440\"* prayer|strong=\"H8605\"* of|strong=\"H4428\"* your|strong=\"H5414\"* servants|strong=\"H5650\"* who|strong=\"H5650\"* delight|strong=\"H2655\"* to|strong=\"H1961\"* fear|strong=\"H3372\"* your|strong=\"H5414\"* name|strong=\"H8034\"*; and|strong=\"H4428\"* please|strong=\"H4994\"* prosper|strong=\"H6743\"* your|strong=\"H5414\"* servant|strong=\"H5650\"* today|strong=\"H3117\"*, and|strong=\"H4428\"* grant|strong=\"H5414\"* him|strong=\"H5414\"* mercy|strong=\"H7356\"* in|strong=\"H4428\"* the|strong=\"H6440\"* sight|strong=\"H6440\"* of|strong=\"H4428\"* this|strong=\"H2088\"* man|strong=\"H2088\"*.”" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H6440\"* month|strong=\"H2320\"* Nisan|strong=\"H5212\"*, in|strong=\"H8141\"* the|strong=\"H6440\"* twentieth|strong=\"H6242\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Artaxerxes the|strong=\"H6440\"* king|strong=\"H4428\"*, when|strong=\"H1961\"* wine|strong=\"H3196\"* was|strong=\"H1961\"* before|strong=\"H6440\"* him|strong=\"H5414\"*, I|strong=\"H5414\"* picked|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H6440\"* wine|strong=\"H3196\"*, and|strong=\"H6242\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H1961\"* the|strong=\"H6440\"* king|strong=\"H4428\"*. Now|strong=\"H1961\"* I|strong=\"H5414\"* had|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"* sad|strong=\"H7451\"* before|strong=\"H6440\"* in|strong=\"H8141\"* his|strong=\"H5375\"* presence|strong=\"H6440\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H6440\"* king|strong=\"H4428\"* said to|strong=\"H3820\"* me|strong=\"H6440\"*, “Why|strong=\"H4069\"* is|strong=\"H2088\"* your|strong=\"H6440\"* face|strong=\"H6440\"* sad|strong=\"H7451\"*, since|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H4428\"* not|strong=\"H2088\"* sick|strong=\"H2470\"*? This|strong=\"H2088\"* is|strong=\"H2088\"* nothing else|strong=\"H3588\"* but|strong=\"H3588\"* sorrow|strong=\"H7451\"* of|strong=\"H4428\"* heart|strong=\"H3820\"*.”" + }, + { + "verseNum": 3, + "text": "I|strong=\"H3808\"* said to|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, “Let|strong=\"H3808\"* the|strong=\"H6440\"* king|strong=\"H4428\"* live|strong=\"H2421\"* forever|strong=\"H5769\"*! Why|strong=\"H4069\"* shouldn’t my|strong=\"H6440\"* face|strong=\"H6440\"* be|strong=\"H3808\"* sad|strong=\"H7489\"*, when|strong=\"H2421\"* the|strong=\"H6440\"* city|strong=\"H5892\"*, the|strong=\"H6440\"* place|strong=\"H1004\"* of|strong=\"H4428\"* my|strong=\"H6440\"* fathers’ tombs|strong=\"H6913\"*, lies waste|strong=\"H2717\"*, and|strong=\"H4428\"* its|strong=\"H5892\"* gates|strong=\"H8179\"* have|strong=\"H5892\"* been|strong=\"H5769\"* consumed with|strong=\"H1004\"* fire?”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H2088\"* the|strong=\"H5921\"* king|strong=\"H4428\"* said to|strong=\"H5921\"* me|strong=\"H5921\"*, “What|strong=\"H4100\"* is|strong=\"H2088\"* your|strong=\"H5921\"* request|strong=\"H1245\"*?”" + }, + { + "verseNum": 5, + "text": "I|strong=\"H5921\"* said to|strong=\"H7971\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, “If it|strong=\"H5921\"* pleases|strong=\"H2895\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, and|strong=\"H3063\"* if your|strong=\"H5921\"* servant|strong=\"H5650\"* has|strong=\"H4428\"* found|strong=\"H3190\"* favor|strong=\"H6440\"* in|strong=\"H5921\"* your|strong=\"H5921\"* sight|strong=\"H6440\"*, I|strong=\"H5921\"* ask|strong=\"H4428\"* that|strong=\"H4428\"* you|strong=\"H6440\"* would|strong=\"H5650\"* send|strong=\"H7971\"* me|strong=\"H6440\"* to|strong=\"H7971\"* Judah|strong=\"H3063\"*, to|strong=\"H7971\"* the|strong=\"H6440\"* city|strong=\"H5892\"* of|strong=\"H4428\"* my|strong=\"H5921\"* fathers’ tombs|strong=\"H6913\"*, that|strong=\"H4428\"* I|strong=\"H5921\"* may|strong=\"H4428\"* build|strong=\"H1129\"* it|strong=\"H5921\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H6440\"* king|strong=\"H4428\"* said to|strong=\"H5704\"* me|strong=\"H5414\"* (the|strong=\"H6440\"* queen|strong=\"H7694\"* was|strong=\"H1961\"* also|strong=\"H4428\"* sitting|strong=\"H3427\"* by|strong=\"H5414\"* him|strong=\"H5414\"*), “How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H1961\"* your|strong=\"H5414\"* journey|strong=\"H4109\"* be|strong=\"H1961\"*? When|strong=\"H1961\"* will|strong=\"H1961\"* you|strong=\"H5414\"* return|strong=\"H7725\"*?”" + }, + { + "verseNum": 7, + "text": "Moreover I|strong=\"H5414\"* said to|strong=\"H5704\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, “If it|strong=\"H5414\"* pleases|strong=\"H2895\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, let|strong=\"H5414\"* letters be|strong=\"H5414\"* given|strong=\"H5414\"* me|strong=\"H5414\"* to|strong=\"H5704\"* the|strong=\"H5921\"* governors|strong=\"H6346\"* beyond|strong=\"H5676\"* the|strong=\"H5921\"* River|strong=\"H5104\"*, that|strong=\"H5414\"* they|strong=\"H5921\"* may|strong=\"H4428\"* let|strong=\"H5414\"* me|strong=\"H5414\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* until|strong=\"H5704\"* I|strong=\"H5414\"* come|strong=\"H5674\"* to|strong=\"H5704\"* Judah|strong=\"H3063\"*;" + }, + { + "verseNum": 8, + "text": "and|strong=\"H4428\"* a|strong=\"H3068\"* letter to|strong=\"H5921\"* Asaph the|strong=\"H5921\"* keeper|strong=\"H8104\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s forest|strong=\"H6508\"*, that|strong=\"H5414\"* he|strong=\"H1004\"* may|strong=\"H4428\"* give|strong=\"H5414\"* me|strong=\"H5414\"* timber|strong=\"H6086\"* to|strong=\"H5921\"* make|strong=\"H5414\"* beams|strong=\"H7136\"* for|strong=\"H5921\"* the|strong=\"H5921\"* gates|strong=\"H8179\"* of|strong=\"H4428\"* the|strong=\"H5921\"* citadel|strong=\"H1002\"* by|strong=\"H3027\"* the|strong=\"H5921\"* temple|strong=\"H1004\"*, for|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"* of|strong=\"H4428\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, and|strong=\"H4428\"* for|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* that|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H4428\"* occupy.”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H7971\"* I|strong=\"H5414\"* came|strong=\"H4428\"* to|strong=\"H7971\"* the|strong=\"H5414\"* governors|strong=\"H6346\"* beyond|strong=\"H5676\"* the|strong=\"H5414\"* River|strong=\"H5104\"*, and|strong=\"H7971\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"*’s letters. Now|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"* had|strong=\"H4428\"* sent|strong=\"H7971\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H5414\"* army|strong=\"H2428\"* and|strong=\"H7971\"* horsemen|strong=\"H6571\"* with|strong=\"H5973\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H8085\"* Sanballat|strong=\"H5571\"* the|strong=\"H8085\"* Horonite|strong=\"H2772\"* and|strong=\"H1121\"* Tobiah|strong=\"H2900\"* the|strong=\"H8085\"* Ammonite|strong=\"H5984\"* servant|strong=\"H5650\"* heard|strong=\"H8085\"* of|strong=\"H1121\"* it|strong=\"H2896\"*, it|strong=\"H2896\"* grieved|strong=\"H7489\"* them|strong=\"H1992\"* exceedingly|strong=\"H1419\"*, because a|strong=\"H3068\"* man|strong=\"H1121\"* had|strong=\"H3478\"* come|strong=\"H3478\"* to|strong=\"H3478\"* seek|strong=\"H1245\"* the|strong=\"H8085\"* welfare|strong=\"H2896\"* of|strong=\"H1121\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 11, + "text": "So|strong=\"H1961\"* I|strong=\"H3117\"* came|strong=\"H1961\"* to|strong=\"H1961\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3117\"* was|strong=\"H1961\"* there|strong=\"H8033\"* three|strong=\"H7969\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H3588\"* arose|strong=\"H6965\"* in|strong=\"H6213\"* the|strong=\"H3588\"* night|strong=\"H3915\"*, I|strong=\"H3588\"* and|strong=\"H6965\"* a|strong=\"H3068\"* few|strong=\"H4592\"* men|strong=\"H6213\"* with|strong=\"H5973\"* me|strong=\"H5414\"*. I|strong=\"H3588\"* didn’t tell|strong=\"H5046\"* anyone|strong=\"H3588\"* what|strong=\"H4100\"* my|strong=\"H5414\"* God|strong=\"H5414\"* put|strong=\"H5414\"* into|strong=\"H6213\"* my|strong=\"H5414\"* heart|strong=\"H3820\"* to|strong=\"H6213\"* do|strong=\"H6213\"* for|strong=\"H3588\"* Jerusalem|strong=\"H3389\"*. There|strong=\"H6965\"* wasn’t any|strong=\"H6213\"* animal with|strong=\"H5973\"* me|strong=\"H5414\"* except|strong=\"H3588\"* the|strong=\"H3588\"* animal that|strong=\"H3588\"* I|strong=\"H3588\"* rode|strong=\"H7392\"* on|strong=\"H7392\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H6440\"* went|strong=\"H3318\"* out|strong=\"H3318\"* by|strong=\"H3318\"* night|strong=\"H3915\"* by|strong=\"H3318\"* the|strong=\"H6440\"* valley|strong=\"H1516\"* gate|strong=\"H8179\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* jackal’s well|strong=\"H5869\"*, then|strong=\"H1961\"* to|strong=\"H3318\"* the|strong=\"H6440\"* dung gate|strong=\"H8179\"*; and|strong=\"H5869\"* I|strong=\"H6440\"* inspected|strong=\"H7663\"* the|strong=\"H6440\"* walls|strong=\"H2346\"* of|strong=\"H6440\"* Jerusalem|strong=\"H3389\"*, which|strong=\"H5869\"* were|strong=\"H1961\"* broken|strong=\"H6555\"* down|strong=\"H6555\"*, and|strong=\"H5869\"* its|strong=\"H6555\"* gates|strong=\"H8179\"* were|strong=\"H1961\"* consumed with|strong=\"H3389\"* fire." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H5674\"* I|strong=\"H8478\"* went|strong=\"H5674\"* on|strong=\"H5674\"* to|strong=\"H4428\"* the|strong=\"H8478\"* spring|strong=\"H5869\"* gate|strong=\"H8179\"* and|strong=\"H4428\"* to|strong=\"H4428\"* the|strong=\"H8478\"* king|strong=\"H4428\"*’s pool|strong=\"H1295\"*, but|strong=\"H4428\"* there|strong=\"H8478\"* was|strong=\"H4428\"* no place|strong=\"H4725\"* for|strong=\"H8478\"* the|strong=\"H8478\"* animal that|strong=\"H4428\"* was|strong=\"H4428\"* under|strong=\"H8478\"* me|strong=\"H5674\"* to|strong=\"H4428\"* pass|strong=\"H5674\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H1961\"* I|strong=\"H1961\"* went|strong=\"H5927\"* up|strong=\"H5927\"* in|strong=\"H7725\"* the|strong=\"H7725\"* night|strong=\"H3915\"* by|strong=\"H1961\"* the|strong=\"H7725\"* brook|strong=\"H5158\"* and|strong=\"H7725\"* inspected|strong=\"H7663\"* the|strong=\"H7725\"* wall|strong=\"H2346\"*; and|strong=\"H7725\"* I|strong=\"H1961\"* turned|strong=\"H7725\"* back|strong=\"H7725\"*, and|strong=\"H7725\"* entered|strong=\"H5927\"* by|strong=\"H1961\"* the|strong=\"H7725\"* valley|strong=\"H1516\"* gate|strong=\"H8179\"*, and|strong=\"H7725\"* so|strong=\"H1961\"* returned|strong=\"H7725\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H6213\"* rulers|strong=\"H5461\"* didn’t know|strong=\"H3045\"* where|strong=\"H4100\"* I|strong=\"H5704\"* went|strong=\"H1980\"*, or|strong=\"H3808\"* what|strong=\"H4100\"* I|strong=\"H5704\"* did|strong=\"H6213\"*. I|strong=\"H5704\"* had|strong=\"H3045\"* not|strong=\"H3808\"* as|strong=\"H5704\"* yet|strong=\"H5704\"* told|strong=\"H5046\"* it|strong=\"H6213\"* to|strong=\"H5704\"* the|strong=\"H6213\"* Jews|strong=\"H3064\"*, nor|strong=\"H3808\"* to|strong=\"H5704\"* the|strong=\"H6213\"* priests|strong=\"H3548\"*, nor|strong=\"H3808\"* to|strong=\"H5704\"* the|strong=\"H6213\"* nobles|strong=\"H2715\"*, nor|strong=\"H3808\"* to|strong=\"H5704\"* the|strong=\"H6213\"* rulers|strong=\"H5461\"*, nor|strong=\"H3808\"* to|strong=\"H5704\"* the|strong=\"H6213\"* rest|strong=\"H3499\"* who|strong=\"H3548\"* did|strong=\"H6213\"* the|strong=\"H6213\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H1961\"* I|strong=\"H7200\"* said to|strong=\"H3212\"* them|strong=\"H7200\"*, “You|strong=\"H3808\"* see|strong=\"H7200\"* the|strong=\"H7200\"* bad|strong=\"H7451\"* situation that|strong=\"H7200\"* we|strong=\"H3068\"* are|strong=\"H8179\"* in|strong=\"H3212\"*, how Jerusalem|strong=\"H3389\"* lies|strong=\"H1961\"* waste|strong=\"H2717\"*, and|strong=\"H3212\"* its|strong=\"H1961\"* gates|strong=\"H8179\"* are|strong=\"H8179\"* burned|strong=\"H3341\"* with|strong=\"H3389\"* fire|strong=\"H3341\"*. Come|strong=\"H1961\"*, let|strong=\"H3808\"*’s build|strong=\"H1129\"* up|strong=\"H1129\"* the|strong=\"H7200\"* wall|strong=\"H2346\"* of|strong=\"H8179\"* Jerusalem|strong=\"H3389\"*, that|strong=\"H7200\"* we|strong=\"H3068\"* won’t be|strong=\"H1961\"* disgraced.”" + }, + { + "verseNum": 18, + "text": "I|strong=\"H5921\"* told|strong=\"H5046\"* them|strong=\"H5921\"* about|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* my|strong=\"H5921\"* God|strong=\"H3027\"* which|strong=\"H1931\"* was|strong=\"H1931\"* good|strong=\"H2896\"* on|strong=\"H5921\"* me|strong=\"H5046\"*, and|strong=\"H6965\"* also|strong=\"H3027\"* about|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s words|strong=\"H1697\"* that|strong=\"H1931\"* he|strong=\"H1931\"* had|strong=\"H4428\"* spoken|strong=\"H1697\"* to|strong=\"H5921\"* me|strong=\"H5046\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"H8085\"* when|strong=\"H8085\"* Sanballat|strong=\"H5571\"* the|strong=\"H5921\"* Horonite|strong=\"H2772\"*, Tobiah|strong=\"H2900\"* the|strong=\"H5921\"* Ammonite|strong=\"H5984\"* servant|strong=\"H5650\"*, and|strong=\"H4428\"* Geshem|strong=\"H1654\"* the|strong=\"H5921\"* Arabian|strong=\"H6163\"*, heard|strong=\"H8085\"* it|strong=\"H5921\"*, they|strong=\"H5921\"* ridiculed us|strong=\"H5921\"* and|strong=\"H4428\"* despised us|strong=\"H5921\"*, and|strong=\"H4428\"* said|strong=\"H1697\"*, “What|strong=\"H4100\"* is|strong=\"H2088\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* that|strong=\"H8085\"* you|strong=\"H5921\"* are|strong=\"H4100\"* doing|strong=\"H6213\"*? Will|strong=\"H4428\"* you|strong=\"H5921\"* rebel|strong=\"H4775\"* against|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*?”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H6965\"* I|strong=\"H1697\"* answered|strong=\"H7725\"* them|strong=\"H7725\"*, and|strong=\"H6965\"* said|strong=\"H1697\"* to|strong=\"H7725\"* them|strong=\"H7725\"*, “The|strong=\"H7725\"* God|strong=\"H8064\"* of|strong=\"H1697\"* heaven|strong=\"H8064\"* will|strong=\"H5650\"* prosper|strong=\"H6743\"* us|strong=\"H7725\"*. Therefore|strong=\"H5650\"* we|strong=\"H3068\"*, his|strong=\"H7725\"* servants|strong=\"H5650\"*, will|strong=\"H5650\"* arise|strong=\"H6965\"* and|strong=\"H6965\"* build|strong=\"H1129\"*; but|strong=\"H1931\"* you|strong=\"H7725\"* have|strong=\"H5650\"* no|strong=\"H2506\"* portion|strong=\"H2506\"*, nor|strong=\"H2506\"* right|strong=\"H6666\"*, nor|strong=\"H2506\"* memorial|strong=\"H2146\"* in|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*.”" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6965\"* Eliashib the|strong=\"H1129\"* high|strong=\"H1419\"* priest|strong=\"H3548\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* with|strong=\"H3548\"* his|strong=\"H6965\"* brothers the|strong=\"H1129\"* priests|strong=\"H3548\"*, and|strong=\"H6965\"* they|strong=\"H1992\"* built|strong=\"H1129\"* the|strong=\"H1129\"* sheep|strong=\"H6629\"* gate|strong=\"H8179\"*. They|strong=\"H1992\"* sanctified|strong=\"H6942\"* it|strong=\"H5704\"*, and|strong=\"H6965\"* set|strong=\"H5975\"* up|strong=\"H6965\"* its|strong=\"H5975\"* doors|strong=\"H1817\"*. They|strong=\"H1992\"* sanctified|strong=\"H6942\"* it|strong=\"H5704\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H1129\"* tower|strong=\"H4026\"* of|strong=\"H8179\"* Hammeah, to|strong=\"H5704\"* the|strong=\"H1129\"* tower|strong=\"H4026\"* of|strong=\"H8179\"* Hananel|strong=\"H2606\"*." + }, + { + "verseNum": 2, + "text": "Next|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"* the|strong=\"H5921\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Jericho|strong=\"H3405\"* built|strong=\"H1129\"*. Next|strong=\"H5921\"* to|strong=\"H5921\"* them|strong=\"H5921\"* Zaccur|strong=\"H2139\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Imri built|strong=\"H1129\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H1129\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hassenaah|strong=\"H5570\"* built|strong=\"H1129\"* the|strong=\"H1129\"* fish|strong=\"H1709\"* gate|strong=\"H8179\"*. They|strong=\"H1992\"* laid|strong=\"H7136\"* its|strong=\"H5975\"* beams|strong=\"H7136\"*, and|strong=\"H1121\"* set|strong=\"H5975\"* up|strong=\"H5975\"* its|strong=\"H5975\"* doors|strong=\"H1817\"*, its|strong=\"H5975\"* bolts|strong=\"H4514\"*, and|strong=\"H1121\"* its|strong=\"H5975\"* bars|strong=\"H1280\"*." + }, + { + "verseNum": 4, + "text": "Next|strong=\"H5921\"* to|strong=\"H5921\"* them|strong=\"H5921\"*, Meremoth|strong=\"H4822\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uriah, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hakkoz|strong=\"H6976\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"*. Next|strong=\"H5921\"* to|strong=\"H5921\"* them|strong=\"H5921\"*, Meshullam|strong=\"H4918\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Berechiah|strong=\"H1296\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshezabel|strong=\"H4898\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"*. Next|strong=\"H5921\"* to|strong=\"H5921\"* them|strong=\"H5921\"*, Zadok|strong=\"H6659\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Baana|strong=\"H1195\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"*." + }, + { + "verseNum": 5, + "text": "Next|strong=\"H5921\"* to|strong=\"H5921\"* them|strong=\"H5921\"*, the|strong=\"H5921\"* Tekoites|strong=\"H8621\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"*; but|strong=\"H3808\"* their|strong=\"H5921\"* nobles didn’t put|strong=\"H2388\"* their|strong=\"H5921\"* necks|strong=\"H6677\"* to|strong=\"H5921\"* the|strong=\"H5921\"* Lord’s work|strong=\"H5656\"*." + }, + { + "verseNum": 6, + "text": "Joiada|strong=\"H3111\"* the|strong=\"H2388\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Paseah|strong=\"H6454\"* and|strong=\"H1121\"* Meshullam|strong=\"H4918\"* the|strong=\"H2388\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Besodeiah|strong=\"H1152\"* repaired|strong=\"H2388\"* the|strong=\"H2388\"* old|strong=\"H1121\"* gate|strong=\"H8179\"*. They|strong=\"H1992\"* laid|strong=\"H7136\"* its|strong=\"H5975\"* beams|strong=\"H7136\"* and|strong=\"H1121\"* set|strong=\"H5975\"* up|strong=\"H5975\"* its|strong=\"H5975\"* doors|strong=\"H1817\"*, its|strong=\"H5975\"* bolts|strong=\"H4514\"*, and|strong=\"H1121\"* its|strong=\"H5975\"* bars|strong=\"H1280\"*." + }, + { + "verseNum": 7, + "text": "Next|strong=\"H5921\"* to|strong=\"H5921\"* them|strong=\"H5921\"*, Melatiah|strong=\"H4424\"* the|strong=\"H5921\"* Gibeonite|strong=\"H1393\"* and|strong=\"H3027\"* Jadon|strong=\"H3036\"* the|strong=\"H5921\"* Meronothite|strong=\"H4824\"*, the|strong=\"H5921\"* men|strong=\"H2388\"* of|strong=\"H3027\"* Gibeon|strong=\"H1391\"* and|strong=\"H3027\"* of|strong=\"H3027\"* Mizpah|strong=\"H4709\"*, repaired|strong=\"H2388\"* the|strong=\"H5921\"* residence of|strong=\"H3027\"* the|strong=\"H5921\"* governor|strong=\"H6346\"* beyond|strong=\"H5676\"* the|strong=\"H5921\"* River|strong=\"H5104\"*." + }, + { + "verseNum": 8, + "text": "Next|strong=\"H5921\"* to|strong=\"H5704\"* him|strong=\"H5921\"*, Uzziel|strong=\"H5816\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Harhaiah|strong=\"H2736\"*, goldsmiths|strong=\"H6884\"*, made|strong=\"H2388\"* repairs|strong=\"H2388\"*. Next|strong=\"H5921\"* to|strong=\"H5704\"* him|strong=\"H5921\"*, Hananiah|strong=\"H2608\"*, one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* perfumers|strong=\"H7546\"*, made|strong=\"H2388\"* repairs|strong=\"H2388\"*, and|strong=\"H1121\"* they|strong=\"H5921\"* fortified|strong=\"H2388\"* Jerusalem|strong=\"H3389\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5921\"* wide|strong=\"H7342\"* wall|strong=\"H2346\"*." + }, + { + "verseNum": 9, + "text": "Next|strong=\"H5921\"* to|strong=\"H5921\"* them|strong=\"H5921\"*, Rephaiah|strong=\"H7509\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hur|strong=\"H2354\"*, the|strong=\"H5921\"* ruler|strong=\"H8269\"* of|strong=\"H1121\"* half|strong=\"H2677\"* the|strong=\"H5921\"* district|strong=\"H6418\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*, made|strong=\"H2388\"* repairs|strong=\"H2388\"*." + }, + { + "verseNum": 10, + "text": "Next|strong=\"H5921\"* to|strong=\"H5921\"* them|strong=\"H5921\"*, Jedaiah|strong=\"H3042\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Harumaph|strong=\"H2739\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"* across|strong=\"H5921\"* from|strong=\"H5921\"* his|strong=\"H5921\"* house|strong=\"H1004\"*. Next|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"*, Hattush|strong=\"H2407\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hashabneiah|strong=\"H2813\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"*." + }, + { + "verseNum": 11, + "text": "Malchijah|strong=\"H4441\"* the|strong=\"H2388\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Harim|strong=\"H2766\"* and|strong=\"H1121\"* Hasshub|strong=\"H2815\"* the|strong=\"H2388\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pahathmoab repaired|strong=\"H2388\"* another|strong=\"H8145\"* portion and|strong=\"H1121\"* the|strong=\"H2388\"* tower|strong=\"H4026\"* of|strong=\"H1121\"* the|strong=\"H2388\"* furnaces|strong=\"H8574\"*." + }, + { + "verseNum": 12, + "text": "Next|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"*, Shallum|strong=\"H7967\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hallohesh|strong=\"H3873\"*, the|strong=\"H5921\"* ruler|strong=\"H8269\"* of|strong=\"H1121\"* half|strong=\"H2677\"* the|strong=\"H5921\"* district|strong=\"H6418\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*, he|strong=\"H1931\"* and|strong=\"H1121\"* his|strong=\"H5921\"* daughters|strong=\"H1323\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"*." + }, + { + "verseNum": 13, + "text": "Hanun|strong=\"H2586\"* and|strong=\"H2388\"* the|strong=\"H1129\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Zanoah|strong=\"H2182\"* repaired|strong=\"H2388\"* the|strong=\"H1129\"* valley|strong=\"H1516\"* gate|strong=\"H8179\"*. They|strong=\"H1992\"* built|strong=\"H1129\"* it|strong=\"H5704\"*, and|strong=\"H2388\"* set|strong=\"H5975\"* up|strong=\"H5975\"* its|strong=\"H5975\"* doors|strong=\"H1817\"*, its|strong=\"H5975\"* bolts|strong=\"H4514\"*, and|strong=\"H2388\"* its|strong=\"H5975\"* bars|strong=\"H1280\"*, and|strong=\"H2388\"* one thousand cubits+ 3:13 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* of|strong=\"H3427\"* the|strong=\"H1129\"* wall|strong=\"H2346\"* to|strong=\"H5704\"* the|strong=\"H1129\"* dung gate|strong=\"H8179\"*." + }, + { + "verseNum": 14, + "text": "Malchijah|strong=\"H4441\"* the|strong=\"H1129\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Rechab|strong=\"H7394\"*, the|strong=\"H1129\"* ruler|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H1129\"* district|strong=\"H6418\"* of|strong=\"H1121\"* Beth Haccherem, repaired|strong=\"H2388\"* the|strong=\"H1129\"* dung gate|strong=\"H8179\"*. He|strong=\"H1931\"* built|strong=\"H1129\"* it|strong=\"H1931\"*, and|strong=\"H1121\"* set|strong=\"H5975\"* up|strong=\"H5975\"* its|strong=\"H5975\"* doors|strong=\"H1817\"*, its|strong=\"H5975\"* bolts|strong=\"H4514\"*, and|strong=\"H1121\"* its|strong=\"H5975\"* bars|strong=\"H1280\"*." + }, + { + "verseNum": 15, + "text": "Shallun|strong=\"H7968\"* the|strong=\"H1129\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Colhozeh, the|strong=\"H1129\"* ruler|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H1129\"* district|strong=\"H6418\"* of|strong=\"H1121\"* Mizpah|strong=\"H4709\"*, repaired|strong=\"H2388\"* the|strong=\"H1129\"* spring|strong=\"H5869\"* gate|strong=\"H8179\"*. He|strong=\"H1931\"* built|strong=\"H1129\"* it|strong=\"H1931\"*, covered|strong=\"H2926\"* it|strong=\"H1931\"*, and|strong=\"H1121\"* set|strong=\"H5975\"* up|strong=\"H5975\"* its|strong=\"H5975\"* doors|strong=\"H1817\"*, its|strong=\"H5975\"* bolts|strong=\"H4514\"*, and|strong=\"H1121\"* its|strong=\"H5975\"* bars|strong=\"H1280\"*; and|strong=\"H1121\"* he|strong=\"H1931\"* repaired|strong=\"H2388\"* the|strong=\"H1129\"* wall|strong=\"H2346\"* of|strong=\"H1121\"* the|strong=\"H1129\"* pool|strong=\"H1295\"* of|strong=\"H1121\"* Shelah|strong=\"H7975\"* by|strong=\"H5975\"* the|strong=\"H1129\"* king|strong=\"H4428\"*’s garden|strong=\"H1588\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H1129\"* stairs|strong=\"H4609\"* that|strong=\"H1931\"* go|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H3381\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*." + }, + { + "verseNum": 16, + "text": "After|strong=\"H1004\"* him|strong=\"H6213\"*, Nehemiah|strong=\"H5166\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azbuk|strong=\"H5802\"*, the|strong=\"H6213\"* ruler|strong=\"H8269\"* of|strong=\"H1121\"* half|strong=\"H2677\"* the|strong=\"H6213\"* district|strong=\"H6418\"* of|strong=\"H1121\"* Beth|strong=\"H1004\"* Zur, made|strong=\"H6213\"* repairs|strong=\"H2388\"* to|strong=\"H5704\"* the|strong=\"H6213\"* place|strong=\"H1004\"* opposite|strong=\"H5048\"* the|strong=\"H6213\"* tombs|strong=\"H6913\"* of|strong=\"H1121\"* David|strong=\"H1732\"*, and|strong=\"H1121\"* to|strong=\"H5704\"* the|strong=\"H6213\"* pool|strong=\"H1295\"* that|strong=\"H1121\"* was|strong=\"H1732\"* made|strong=\"H6213\"*, and|strong=\"H1121\"* to|strong=\"H5704\"* the|strong=\"H6213\"* house|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H6213\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*." + }, + { + "verseNum": 17, + "text": "After|strong=\"H5921\"* him|strong=\"H5921\"*, the|strong=\"H5921\"* Levites|strong=\"H3881\"*—Rehum|strong=\"H7348\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bani|strong=\"H1137\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"*. Next|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"*, Hashabiah|strong=\"H2811\"*, the|strong=\"H5921\"* ruler|strong=\"H8269\"* of|strong=\"H1121\"* half|strong=\"H2677\"* the|strong=\"H5921\"* district|strong=\"H6418\"* of|strong=\"H1121\"* Keilah|strong=\"H7084\"*, made|strong=\"H2388\"* repairs|strong=\"H2388\"* for|strong=\"H5921\"* his|strong=\"H5921\"* district|strong=\"H6418\"*." + }, + { + "verseNum": 18, + "text": "After him|strong=\"H2388\"*, their|strong=\"H2388\"* brothers|strong=\"H1121\"*, Bavvai the|strong=\"H2388\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Henadad|strong=\"H2582\"*, the|strong=\"H2388\"* ruler|strong=\"H8269\"* of|strong=\"H1121\"* half|strong=\"H2677\"* the|strong=\"H2388\"* district|strong=\"H6418\"* of|strong=\"H1121\"* Keilah|strong=\"H7084\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"*." + }, + { + "verseNum": 19, + "text": "Next|strong=\"H5921\"* to|strong=\"H5927\"* him|strong=\"H5921\"*, Ezer|strong=\"H5829\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeshua|strong=\"H3442\"*, the|strong=\"H5921\"* ruler|strong=\"H8269\"* of|strong=\"H1121\"* Mizpah|strong=\"H4709\"*, repaired|strong=\"H2388\"* another|strong=\"H8145\"* portion across|strong=\"H5921\"* from|strong=\"H5921\"* the|strong=\"H5921\"* ascent|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H5921\"* armory|strong=\"H5402\"* at|strong=\"H5921\"* the|strong=\"H5921\"* turning|strong=\"H4740\"* of|strong=\"H1121\"* the|strong=\"H5921\"* wall." + }, + { + "verseNum": 20, + "text": "After|strong=\"H4480\"* him|strong=\"H4480\"*, Baruch|strong=\"H1263\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zabbai|strong=\"H2079\"* earnestly|strong=\"H2734\"* repaired|strong=\"H2388\"* another|strong=\"H8145\"* portion|strong=\"H4480\"*, from|strong=\"H4480\"* the|strong=\"H4480\"* turning|strong=\"H4740\"* of|strong=\"H1121\"* the|strong=\"H4480\"* wall to|strong=\"H5704\"* the|strong=\"H4480\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H4480\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Eliashib the|strong=\"H4480\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 21, + "text": "After|strong=\"H8145\"* him|strong=\"H5704\"*, Meremoth|strong=\"H4822\"* the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uriah the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hakkoz|strong=\"H6976\"* repaired|strong=\"H2388\"* another|strong=\"H8145\"* portion, from|strong=\"H1121\"* the|strong=\"H5704\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H5704\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Eliashib even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* end|strong=\"H8503\"* of|strong=\"H1121\"* the|strong=\"H5704\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Eliashib." + }, + { + "verseNum": 22, + "text": "After him|strong=\"H2388\"*, the|strong=\"H2388\"* priests|strong=\"H3548\"*, the|strong=\"H2388\"* men|strong=\"H2388\"* of|strong=\"H3603\"* the|strong=\"H2388\"* surrounding area made|strong=\"H2388\"* repairs|strong=\"H2388\"*." + }, + { + "verseNum": 23, + "text": "After|strong=\"H1004\"* them|strong=\"H2388\"*, Benjamin|strong=\"H1144\"* and|strong=\"H1121\"* Hasshub|strong=\"H2815\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"* across from|strong=\"H1121\"* their|strong=\"H2388\"* house|strong=\"H1004\"*. After|strong=\"H1004\"* them|strong=\"H2388\"*, Azariah|strong=\"H5838\"* the|strong=\"H2388\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maaseiah|strong=\"H4641\"* the|strong=\"H2388\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ananiah|strong=\"H6055\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"* beside his|strong=\"H2388\"* own|strong=\"H2388\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 24, + "text": "After|strong=\"H8145\"* him|strong=\"H5704\"*, Binnui|strong=\"H1131\"* the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Henadad|strong=\"H2582\"* repaired|strong=\"H2388\"* another|strong=\"H8145\"* portion, from|strong=\"H1121\"* the|strong=\"H5704\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Azariah|strong=\"H5838\"* to|strong=\"H5704\"* the|strong=\"H5704\"* turning|strong=\"H4740\"* of|strong=\"H1121\"* the|strong=\"H5704\"* wall, and|strong=\"H1121\"* to|strong=\"H5704\"* the|strong=\"H5704\"* corner|strong=\"H6438\"*." + }, + { + "verseNum": 25, + "text": "Palal|strong=\"H6420\"* the|strong=\"H3318\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uzai made repairs opposite|strong=\"H5048\"* the|strong=\"H3318\"* turning|strong=\"H4740\"* of|strong=\"H1121\"* the|strong=\"H3318\"* wall, and|strong=\"H1121\"* the|strong=\"H3318\"* tower|strong=\"H4026\"* that|strong=\"H4428\"* stands out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3318\"* upper|strong=\"H5945\"* house|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H3318\"* king|strong=\"H4428\"*, which|strong=\"H1004\"* is|strong=\"H4428\"* by|strong=\"H3318\"* the|strong=\"H3318\"* court|strong=\"H2691\"* of|strong=\"H1121\"* the|strong=\"H3318\"* guard|strong=\"H4307\"*. After|strong=\"H3318\"* him|strong=\"H3318\"* Pedaiah|strong=\"H6305\"* the|strong=\"H3318\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Parosh|strong=\"H6551\"* made repairs." + }, + { + "verseNum": 26, + "text": "(Now|strong=\"H1961\"* the|strong=\"H5704\"* temple|strong=\"H5411\"* servants|strong=\"H5411\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Ophel|strong=\"H6077\"*, to|strong=\"H5704\"* the|strong=\"H5704\"* place|strong=\"H1961\"* opposite|strong=\"H5048\"* the|strong=\"H5704\"* water|strong=\"H4325\"* gate|strong=\"H8179\"* toward|strong=\"H5704\"* the|strong=\"H5704\"* east|strong=\"H4217\"*, and|strong=\"H3318\"* the|strong=\"H5704\"* tower|strong=\"H4026\"* that|strong=\"H4325\"* stands out|strong=\"H3318\"*.)" + }, + { + "verseNum": 27, + "text": "After|strong=\"H3318\"* him|strong=\"H3318\"* the|strong=\"H5704\"* Tekoites|strong=\"H8621\"* repaired|strong=\"H2388\"* another|strong=\"H8145\"* portion, opposite|strong=\"H5048\"* the|strong=\"H5704\"* great|strong=\"H1419\"* tower|strong=\"H4026\"* that|strong=\"H5704\"* stands|strong=\"H2388\"* out|strong=\"H3318\"*, and|strong=\"H1419\"* to|strong=\"H5704\"* the|strong=\"H5704\"* wall|strong=\"H2346\"* of|strong=\"H2346\"* Ophel|strong=\"H6077\"*." + }, + { + "verseNum": 28, + "text": "Above|strong=\"H5921\"* the|strong=\"H5921\"* horse|strong=\"H5483\"* gate|strong=\"H8179\"*, the|strong=\"H5921\"* priests|strong=\"H3548\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"*, everyone across|strong=\"H5921\"* from|strong=\"H5921\"* his|strong=\"H5921\"* own|strong=\"H3548\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 29, + "text": "After|strong=\"H1004\"* them|strong=\"H2388\"*, Zadok|strong=\"H6659\"* the|strong=\"H8104\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Immer made|strong=\"H2388\"* repairs|strong=\"H2388\"* across from|strong=\"H1121\"* his|strong=\"H8104\"* own|strong=\"H2388\"* house|strong=\"H1004\"*. After|strong=\"H1004\"* him|strong=\"H5048\"*, Shemaiah|strong=\"H8098\"* the|strong=\"H8104\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shecaniah|strong=\"H7935\"*, the|strong=\"H8104\"* keeper|strong=\"H8104\"* of|strong=\"H1121\"* the|strong=\"H8104\"* east|strong=\"H4217\"* gate|strong=\"H8179\"*, made|strong=\"H2388\"* repairs|strong=\"H2388\"*." + }, + { + "verseNum": 30, + "text": "After|strong=\"H8145\"* him|strong=\"H5048\"*, Hananiah|strong=\"H2608\"* the|strong=\"H2388\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shelemiah|strong=\"H8018\"*, and|strong=\"H1121\"* Hanun|strong=\"H2586\"*, the|strong=\"H2388\"* sixth|strong=\"H8345\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zalaph|strong=\"H6764\"*, repaired|strong=\"H2388\"* another|strong=\"H8145\"* portion. After|strong=\"H8145\"* him|strong=\"H5048\"*, Meshullam|strong=\"H4918\"* the|strong=\"H2388\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Berechiah|strong=\"H1296\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"* across from|strong=\"H1121\"* his|strong=\"H2388\"* room|strong=\"H5393\"*." + }, + { + "verseNum": 31, + "text": "After|strong=\"H1004\"* him|strong=\"H5048\"*, Malchijah|strong=\"H4441\"*, one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5704\"* goldsmiths|strong=\"H6885\"* to|strong=\"H5704\"* the|strong=\"H5704\"* house|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H5704\"* temple|strong=\"H1004\"* servants|strong=\"H5411\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5704\"* merchants|strong=\"H7402\"*, made|strong=\"H2388\"* repairs|strong=\"H2388\"* opposite|strong=\"H5048\"* the|strong=\"H5704\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* Hammiphkad and|strong=\"H1121\"* to|strong=\"H5704\"* the|strong=\"H5704\"* ascent|strong=\"H5944\"* of|strong=\"H1121\"* the|strong=\"H5704\"* corner|strong=\"H6438\"*." + }, + { + "verseNum": 32, + "text": "Between the|strong=\"H2388\"* ascent|strong=\"H5944\"* of|strong=\"H8179\"* the|strong=\"H2388\"* corner|strong=\"H6438\"* and|strong=\"H6629\"* the|strong=\"H2388\"* sheep|strong=\"H6629\"* gate|strong=\"H8179\"*, the|strong=\"H2388\"* goldsmiths|strong=\"H6884\"* and|strong=\"H6629\"* the|strong=\"H2388\"* merchants|strong=\"H7402\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"H3588\"* when|strong=\"H3588\"* Sanballat|strong=\"H5571\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* we|strong=\"H3068\"* were|strong=\"H1961\"* building the|strong=\"H8085\"* wall|strong=\"H2346\"*, he|strong=\"H3588\"* was|strong=\"H1961\"* angry|strong=\"H2734\"*, and|strong=\"H3389\"* was|strong=\"H1961\"* very|strong=\"H3966\"* indignant, and|strong=\"H3389\"* mocked the|strong=\"H8085\"* Jews." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* spoke before his|strong=\"H3605\"* brothers and|strong=\"H3389\"* the|strong=\"H3605\"* army|strong=\"H3389\"* of|strong=\"H3605\"* Samaria, and|strong=\"H3389\"* said, “What|strong=\"H6213\"* are|strong=\"H6213\"* these|strong=\"H6213\"* feeble Jews doing|strong=\"H6213\"*? Will|strong=\"H3389\"* they|strong=\"H6213\"* fortify themselves|strong=\"H6213\"*? Will|strong=\"H3389\"* they|strong=\"H6213\"* sacrifice|strong=\"H6213\"*? Will|strong=\"H3389\"* they|strong=\"H6213\"* finish in|strong=\"H6213\"* a|strong=\"H3068\"* day? Will|strong=\"H3389\"* they|strong=\"H6213\"* revive the|strong=\"H3605\"* stones out|strong=\"H6213\"* of|strong=\"H3605\"* the|strong=\"H3605\"* heaps of|strong=\"H3605\"* rubbish, since they|strong=\"H6213\"* are|strong=\"H6213\"* burned?”" + }, + { + "verseNum": 3, + "text": "Now|strong=\"H5921\"* Tobiah the|strong=\"H6440\"* Ammonite was|strong=\"H6440\"* by|strong=\"H5921\"* him|strong=\"H6440\"*, and|strong=\"H3119\"* he|strong=\"H5921\"* said, “What|strong=\"H5921\"* they|strong=\"H5921\"* are|strong=\"H6440\"* building, if a|strong=\"H3068\"* fox climbed up|strong=\"H5975\"* it|strong=\"H5921\"*, he|strong=\"H5921\"* would break down|strong=\"H6440\"* their|strong=\"H6440\"* stone wall.”" + }, + { + "verseNum": 4, + "text": "“Hear, our God|strong=\"H3808\"*, for|strong=\"H1129\"* we|strong=\"H3068\"* are|strong=\"H3782\"* despised. Turn back their|strong=\"H3808\"* reproach on|strong=\"H7235\"* their|strong=\"H3808\"* own head. Give|strong=\"H7235\"* them|strong=\"H1129\"* up|strong=\"H1129\"* for|strong=\"H1129\"* a|strong=\"H3068\"* plunder in|strong=\"H1129\"* a|strong=\"H3068\"* land of|strong=\"H2346\"* captivity." + }, + { + "verseNum": 5, + "text": "Don’t cover their|strong=\"H7200\"* iniquity. Don’t let|strong=\"H3808\"* their|strong=\"H7200\"* sin be|strong=\"H3808\"* blotted out|strong=\"H7200\"* from|strong=\"H5704\"* before|strong=\"H5704\"* you|strong=\"H5704\"*; for|strong=\"H5704\"* they|strong=\"H3808\"* have|strong=\"H3045\"* insulted the|strong=\"H7200\"* builders.”" + }, + { + "verseNum": 6, + "text": "So|strong=\"H1961\"* we|strong=\"H3068\"* built the|strong=\"H3605\"* wall; and|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wall was|strong=\"H1961\"* joined together|strong=\"H5921\"* to|strong=\"H7725\"* half its|strong=\"H3605\"* height, for|strong=\"H5921\"* the|strong=\"H3605\"* people|strong=\"H3427\"* had|strong=\"H1961\"* a|strong=\"H3068\"* mind to|strong=\"H7725\"* work." + }, + { + "verseNum": 7, + "text": "But|strong=\"H5971\"* when|strong=\"H5975\"* Sanballat, Tobiah, the|strong=\"H5975\"* Arabians, the|strong=\"H5975\"* Ammonites, and|strong=\"H5971\"* the|strong=\"H5975\"* Ashdodites heard that|strong=\"H5971\"* the|strong=\"H5975\"* repairing of|strong=\"H2346\"* the|strong=\"H5975\"* walls|strong=\"H2346\"* of|strong=\"H2346\"* Jerusalem went|strong=\"H5971\"* forward, and|strong=\"H5971\"* that|strong=\"H5971\"* the|strong=\"H5975\"* breaches began to|strong=\"H5971\"* be|strong=\"H5971\"* filled, they|strong=\"H5971\"* were|strong=\"H5971\"* very angry;" + }, + { + "verseNum": 8, + "text": "and|strong=\"H1121\"* they|strong=\"H5921\"* all|strong=\"H7200\"* conspired together|strong=\"H5921\"* to|strong=\"H5921\"* come|strong=\"H5971\"* and|strong=\"H1121\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* Jerusalem, and|strong=\"H1121\"* to|strong=\"H5921\"* cause|strong=\"H5971\"* confusion among|strong=\"H5921\"* us|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H3588\"* we|strong=\"H3068\"* made|strong=\"H3045\"* our|strong=\"H3605\"* prayer to|strong=\"H7725\"* our|strong=\"H3605\"* God, and|strong=\"H7725\"* set|strong=\"H7725\"* a|strong=\"H3068\"* watch|strong=\"H3045\"* against|strong=\"H8085\"* them|strong=\"H7725\"* day and|strong=\"H7725\"* night because|strong=\"H3588\"* of|strong=\"H2346\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 10, + "text": "Judah|strong=\"H3063\"* said, “The|strong=\"H3605\"* strength|strong=\"H2388\"* of|strong=\"H1004\"* the|strong=\"H3605\"* bearers of|strong=\"H1004\"* burdens is|strong=\"H1931\"* fading and|strong=\"H3063\"* there|strong=\"H1961\"* is|strong=\"H1931\"* much|strong=\"H6213\"* rubble, so|strong=\"H6213\"* that|strong=\"H3605\"* we|strong=\"H3068\"* are|strong=\"H3117\"* not|strong=\"H6213\"* able to|strong=\"H1961\"* build|strong=\"H6213\"* the|strong=\"H3605\"* wall.”" + }, + { + "verseNum": 11, + "text": "Our|strong=\"H6213\"* adversaries said, “They|strong=\"H6213\"* will|strong=\"H3027\"* not|strong=\"H6213\"* know or|strong=\"H3027\"* see, until we|strong=\"H3068\"* come|strong=\"H2346\"* in|strong=\"H6213\"* among them|strong=\"H3027\"* and|strong=\"H3027\"* kill them|strong=\"H3027\"*, and|strong=\"H3027\"* cause|strong=\"H6213\"* the|strong=\"H5375\"* work|strong=\"H4399\"* to|strong=\"H6213\"* cease.”" + }, + { + "verseNum": 12, + "text": "When|strong=\"H8628\"* the|strong=\"H5921\"* Jews who|strong=\"H1129\"* lived by|strong=\"H5921\"* them|strong=\"H5921\"* came, they|strong=\"H5921\"* said to|strong=\"H5921\"* us|strong=\"H5921\"* ten times from|strong=\"H5921\"* all|strong=\"H5921\"* places, “Wherever|strong=\"H5921\"* you|strong=\"H5921\"* turn, they|strong=\"H5921\"* will|strong=\"H2719\"* attack us|strong=\"H5921\"*.”" + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"H5921\"* I|strong=\"H5921\"* set guards in|strong=\"H5921\"* the|strong=\"H5921\"* lowest parts|strong=\"H6504\"* of|strong=\"H2346\"* the|strong=\"H5921\"* space|strong=\"H7350\"* behind|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* open places. I|strong=\"H5921\"* set the|strong=\"H5921\"* people|strong=\"H5971\"* by|strong=\"H5921\"* family groups with|strong=\"H5921\"* their|strong=\"H5921\"* swords, their|strong=\"H5921\"* spears, and|strong=\"H5971\"* their|strong=\"H5921\"* bows." + }, + { + "verseNum": 14, + "text": "I|strong=\"H8085\"* looked, and|strong=\"H6963\"* rose up|strong=\"H6908\"*, and|strong=\"H6963\"* said|strong=\"H8085\"* to|strong=\"H8085\"* the|strong=\"H8085\"* nobles, to|strong=\"H8085\"* the|strong=\"H8085\"* rulers, and|strong=\"H6963\"* to|strong=\"H8085\"* the|strong=\"H8085\"* rest of|strong=\"H6963\"* the|strong=\"H8085\"* people|strong=\"H6908\"*, “Don’t be|strong=\"H6963\"* afraid of|strong=\"H6963\"* them|strong=\"H8085\"*! Remember the|strong=\"H8085\"* Lord, who is|strong=\"H4725\"* great and|strong=\"H6963\"* awesome, and|strong=\"H6963\"* fight|strong=\"H3898\"* for|strong=\"H4725\"* your|strong=\"H8085\"* brothers, your|strong=\"H8085\"* sons, your|strong=\"H8085\"* daughters, your|strong=\"H8085\"* wives, and|strong=\"H6963\"* your|strong=\"H8085\"* houses.”" + }, + { + "verseNum": 15, + "text": "When|strong=\"H3318\"* our|strong=\"H3318\"* enemies heard that|strong=\"H6213\"* it|strong=\"H6213\"* was|strong=\"H4399\"* known|strong=\"H3318\"* to|strong=\"H5704\"* us|strong=\"H6213\"*, and|strong=\"H2388\"* God had|strong=\"H4399\"* brought|strong=\"H3318\"* their|strong=\"H2388\"* counsel to|strong=\"H5704\"* nothing, all|strong=\"H5704\"* of|strong=\"H3318\"* us|strong=\"H6213\"* returned|strong=\"H5927\"* to|strong=\"H5704\"* the|strong=\"H6213\"* wall, everyone to|strong=\"H5704\"* his|strong=\"H6213\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 16, + "text": "From|strong=\"H3117\"* that|strong=\"H5971\"* time|strong=\"H6256\"* forth|strong=\"H6256\"*, half|strong=\"H8432\"* of|strong=\"H3117\"* my|strong=\"H1961\"* servants|strong=\"H5288\"* did|strong=\"H5971\"* the|strong=\"H8432\"* work|strong=\"H4399\"*, and|strong=\"H3117\"* half|strong=\"H8432\"* of|strong=\"H3117\"* them|strong=\"H8432\"* held|strong=\"H1961\"* the|strong=\"H8432\"* spears, the|strong=\"H8432\"* shields, the|strong=\"H8432\"* bows, and|strong=\"H3117\"* the|strong=\"H8432\"* coats of|strong=\"H3117\"* mail; and|strong=\"H3117\"* the|strong=\"H8432\"* rulers were|strong=\"H1961\"* behind all|strong=\"H3885\"* the|strong=\"H8432\"* house of|strong=\"H3117\"* Judah." + }, + { + "verseNum": 17, + "text": "Those who|strong=\"H5288\"* built the|strong=\"H6584\"* wall, and|strong=\"H5288\"* those who|strong=\"H5288\"* bore burdens loaded themselves; everyone with|strong=\"H4325\"* one of|strong=\"H4325\"* his|strong=\"H6584\"* hands did|strong=\"H5288\"* the|strong=\"H6584\"* work, and|strong=\"H5288\"* with|strong=\"H4325\"* the|strong=\"H6584\"* other held his|strong=\"H6584\"* weapon|strong=\"H7973\"*." + }, + { + "verseNum": 18, + "text": "Among the builders, everyone wore his sword at his side, and so built. He who sounded the trumpet was by me." + }, + { + "verseNum": 19, + "text": "I said to the nobles, and to the rulers and to the rest of the people, “The work is great and widely spread out, and we|strong=\"H3068\"* are separated on the wall, far from one another." + }, + { + "verseNum": 20, + "text": "Wherever you hear the sound of the trumpet, rally there to us. Our God will fight for us.”" + }, + { + "verseNum": 21, + "text": "So we|strong=\"H3068\"* did the work. Half of the people held the spears from the rising of the morning until the stars appeared." + }, + { + "verseNum": 22, + "text": "Likewise at the same time I said to the people, “Let everyone with his servant lodge within Jerusalem, that in the night they may be a|strong=\"H3068\"* guard to us, and may labor in the day.”" + }, + { + "verseNum": 23, + "text": "So neither I, nor my brothers, nor my servants, nor the men of the guard who followed me took off our clothes. Everyone took his weapon to the water." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H1961\"* there|strong=\"H1961\"* arose|strong=\"H1419\"* a|strong=\"H3068\"* great|strong=\"H1419\"* cry|strong=\"H6818\"* of|strong=\"H5971\"* the|strong=\"H1961\"* people|strong=\"H5971\"* and|strong=\"H1419\"* of|strong=\"H5971\"* their|strong=\"H1961\"* wives against their|strong=\"H1961\"* brothers the|strong=\"H1961\"* Jews|strong=\"H3064\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"H1121\"* there|strong=\"H3426\"* were|strong=\"H1121\"* some|strong=\"H7227\"* who|strong=\"H1121\"* said, “We, our|strong=\"H3947\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* our|strong=\"H3947\"* daughters|strong=\"H1323\"*, are|strong=\"H1121\"* many|strong=\"H7227\"*. Let us|strong=\"H2421\"* get|strong=\"H3947\"* grain|strong=\"H1715\"*, that|strong=\"H1121\"* we|strong=\"H3068\"* may|strong=\"H1121\"* eat and|strong=\"H1121\"* live|strong=\"H2421\"*.”" + }, + { + "verseNum": 3, + "text": "There|strong=\"H3426\"* were|strong=\"H3426\"* also some who|strong=\"H3426\"* said, “We are|strong=\"H3426\"* mortgaging|strong=\"H6148\"* our|strong=\"H3947\"* fields|strong=\"H7704\"*, our|strong=\"H3947\"* vineyards|strong=\"H3754\"*, and|strong=\"H1004\"* our|strong=\"H3947\"* houses|strong=\"H1004\"*. Let us|strong=\"H7704\"* get|strong=\"H3947\"* grain|strong=\"H1715\"*, because of|strong=\"H1004\"* the|strong=\"H3947\"* famine|strong=\"H7458\"*.”" + }, + { + "verseNum": 4, + "text": "There|strong=\"H3426\"* were|strong=\"H3426\"* also|strong=\"H4428\"* some who|strong=\"H4428\"* said, “We have|strong=\"H3426\"* borrowed|strong=\"H3867\"* money|strong=\"H3701\"* for|strong=\"H4428\"* the|strong=\"H3426\"* king|strong=\"H4428\"*’s tribute|strong=\"H4060\"* using our|strong=\"H3426\"* fields|strong=\"H7704\"* and|strong=\"H3701\"* our|strong=\"H3426\"* vineyards|strong=\"H3754\"* as|strong=\"H4428\"* collateral." + }, + { + "verseNum": 5, + "text": "Yet|strong=\"H6258\"* now|strong=\"H6258\"* our|strong=\"H5650\"* flesh|strong=\"H1320\"* is|strong=\"H3426\"* as|strong=\"H1121\"* the|strong=\"H3027\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* our|strong=\"H5650\"* brothers|strong=\"H1121\"*, our|strong=\"H5650\"* children|strong=\"H1121\"* as|strong=\"H1121\"* their|strong=\"H6258\"* children|strong=\"H1121\"*. Behold|strong=\"H2009\"*,+ 5:5 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* we|strong=\"H3068\"* bring|strong=\"H1323\"* our|strong=\"H5650\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* our|strong=\"H5650\"* daughters|strong=\"H1323\"* into|strong=\"H3027\"* bondage|strong=\"H5650\"* to|strong=\"H3027\"* be|strong=\"H3426\"* servants|strong=\"H5650\"*, and|strong=\"H1121\"* some|strong=\"H3027\"* of|strong=\"H1121\"* our|strong=\"H5650\"* daughters|strong=\"H1323\"* have|strong=\"H3426\"* been|strong=\"H3426\"* brought|strong=\"H3533\"* into|strong=\"H3027\"* bondage|strong=\"H5650\"*. It|strong=\"H3533\"* is|strong=\"H3426\"* also|strong=\"H3027\"* not|strong=\"H1121\"* in|strong=\"H1320\"* our|strong=\"H5650\"* power|strong=\"H3027\"* to|strong=\"H3027\"* help|strong=\"H1323\"* it|strong=\"H3533\"*, because|strong=\"H3027\"* other men|strong=\"H1121\"* have|strong=\"H3426\"* our|strong=\"H5650\"* fields|strong=\"H7704\"* and|strong=\"H1121\"* our|strong=\"H5650\"* vineyards|strong=\"H3754\"*.”" + }, + { + "verseNum": 6, + "text": "I|strong=\"H1697\"* was|strong=\"H1697\"* very|strong=\"H3966\"* angry|strong=\"H2734\"* when|strong=\"H8085\"* I|strong=\"H1697\"* heard|strong=\"H8085\"* their|strong=\"H8085\"* cry|strong=\"H2201\"* and|strong=\"H8085\"* these|strong=\"H8085\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H5414\"* I|strong=\"H5414\"* consulted|strong=\"H4427\"* with|strong=\"H5921\"* myself|strong=\"H3820\"*, and|strong=\"H1419\"* contended|strong=\"H7378\"* with|strong=\"H5921\"* the|strong=\"H5921\"* nobles|strong=\"H2715\"* and|strong=\"H1419\"* the|strong=\"H5921\"* rulers|strong=\"H5461\"*, and|strong=\"H1419\"* said to|strong=\"H5921\"* them|strong=\"H5414\"*, “You|strong=\"H5414\"* exact|strong=\"H5383\"* usury|strong=\"H4855\"*, everyone of|strong=\"H5921\"* his|strong=\"H5414\"* brother.” I|strong=\"H5414\"* held|strong=\"H5414\"* a|strong=\"H3068\"* great|strong=\"H1419\"* assembly|strong=\"H6952\"* against|strong=\"H5921\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H1697\"* said|strong=\"H1697\"* to|strong=\"H1697\"* them|strong=\"H4672\"*, “We|strong=\"H1697\"*, after|strong=\"H1767\"* our|strong=\"H7069\"* ability|strong=\"H1767\"*, have|strong=\"H1571\"* redeemed|strong=\"H7069\"* our|strong=\"H7069\"* brothers the|strong=\"H1697\"* Jews|strong=\"H3064\"* that|strong=\"H1471\"* were|strong=\"H1697\"* sold|strong=\"H4376\"* to|strong=\"H1697\"* the|strong=\"H1697\"* nations|strong=\"H1471\"*; and|strong=\"H1471\"* would|strong=\"H1697\"* you|strong=\"H3808\"* even|strong=\"H1571\"* sell|strong=\"H4376\"* your|strong=\"H3808\"* brothers, and|strong=\"H1471\"* should they|strong=\"H3808\"* be|strong=\"H3808\"* sold|strong=\"H4376\"* to|strong=\"H1697\"* us|strong=\"H4672\"*?” Then|strong=\"H1571\"* they|strong=\"H3808\"* held their|strong=\"H3808\"* peace|strong=\"H2790\"*, and|strong=\"H1471\"* found|strong=\"H4672\"* not|strong=\"H3808\"* a|strong=\"H3068\"* word|strong=\"H1697\"* to|strong=\"H1697\"* say|strong=\"H1697\"*." + }, + { + "verseNum": 9, + "text": "Also|strong=\"H6213\"* I|strong=\"H1697\"* said|strong=\"H1697\"*, “The|strong=\"H6213\"* thing|strong=\"H1697\"* that|strong=\"H1471\"* you|strong=\"H6213\"* do|strong=\"H6213\"* is|strong=\"H1697\"* not|strong=\"H3808\"* good|strong=\"H2896\"*. Shouldn’t you|strong=\"H6213\"* walk|strong=\"H3212\"* in|strong=\"H6213\"* the|strong=\"H6213\"* fear|strong=\"H3374\"* of|strong=\"H1697\"* our|strong=\"H6213\"* God|strong=\"H3808\"* because|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H6213\"* reproach|strong=\"H2781\"* of|strong=\"H1697\"* the|strong=\"H6213\"* nations|strong=\"H1471\"*, our|strong=\"H6213\"* enemies?" + }, + { + "verseNum": 10, + "text": "I|strong=\"H2088\"* likewise|strong=\"H1571\"*, my|strong=\"H5800\"* brothers and|strong=\"H3701\"* my|strong=\"H5800\"* servants|strong=\"H5288\"*, lend|strong=\"H5383\"* them|strong=\"H5800\"* money|strong=\"H3701\"* and|strong=\"H3701\"* grain|strong=\"H1715\"*. Please|strong=\"H4994\"* let|strong=\"H4994\"* us|strong=\"H4994\"* stop this|strong=\"H2088\"* usury|strong=\"H4855\"*." + }, + { + "verseNum": 11, + "text": "Please|strong=\"H4994\"* restore|strong=\"H7725\"* to|strong=\"H7725\"* them|strong=\"H7725\"*, even today|strong=\"H3117\"*, their|strong=\"H7725\"* fields|strong=\"H7704\"*, their|strong=\"H7725\"* vineyards|strong=\"H3754\"*, their|strong=\"H7725\"* olive|strong=\"H2132\"* groves|strong=\"H2132\"*, and|strong=\"H3967\"* their|strong=\"H7725\"* houses|strong=\"H1004\"*, also|strong=\"H3117\"* the|strong=\"H3117\"* hundredth|strong=\"H3967\"* part of|strong=\"H1004\"* the|strong=\"H3117\"* money|strong=\"H3701\"*, and|strong=\"H3967\"* of|strong=\"H1004\"* the|strong=\"H3117\"* grain|strong=\"H1715\"*, the|strong=\"H3117\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, and|strong=\"H3967\"* the|strong=\"H3117\"* oil|strong=\"H3323\"*, that|strong=\"H3117\"* you|strong=\"H3117\"* are|strong=\"H3117\"* charging them|strong=\"H7725\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H2088\"* they|strong=\"H1992\"* said|strong=\"H1697\"*, “We|strong=\"H6213\"* will|strong=\"H1697\"* restore|strong=\"H7725\"* them|strong=\"H1992\"*, and|strong=\"H7725\"* will|strong=\"H1697\"* require|strong=\"H1245\"* nothing|strong=\"H3808\"* of|strong=\"H1697\"* them|strong=\"H1992\"*. We|strong=\"H6213\"* will|strong=\"H1697\"* do|strong=\"H6213\"* so|strong=\"H3651\"*, even|strong=\"H3651\"* as|strong=\"H1697\"* you|strong=\"H7725\"* say|strong=\"H7725\"*.”" + }, + { + "verseNum": 13, + "text": "Also|strong=\"H1571\"* I|strong=\"H1697\"* shook|strong=\"H5287\"* out|strong=\"H6213\"* my|strong=\"H3605\"* lap|strong=\"H2684\"*, and|strong=\"H6965\"* said|strong=\"H1697\"*, “So|strong=\"H6213\"* may|strong=\"H1961\"* God|strong=\"H3068\"* shake|strong=\"H5287\"* out|strong=\"H6213\"* every|strong=\"H3605\"* man|strong=\"H3605\"* from|strong=\"H6965\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, and|strong=\"H6965\"* from|strong=\"H6965\"* his|strong=\"H3605\"* labor|strong=\"H3018\"*, that|strong=\"H5971\"* doesn’t perform|strong=\"H6213\"* this|strong=\"H2088\"* promise|strong=\"H1697\"*; even|strong=\"H1571\"* may|strong=\"H1961\"* he|strong=\"H6213\"* be|strong=\"H1961\"* shaken|strong=\"H5287\"* out|strong=\"H6213\"* and|strong=\"H6965\"* emptied|strong=\"H7386\"* like|strong=\"H1961\"* this|strong=\"H2088\"*.”" + }, + { + "verseNum": 14, + "text": "Moreover|strong=\"H1571\"* from|strong=\"H3117\"* the|strong=\"H3117\"* time|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* was|strong=\"H1961\"* appointed|strong=\"H6680\"* to|strong=\"H5704\"* be|strong=\"H1961\"* their|strong=\"H1961\"* governor|strong=\"H6346\"* in|strong=\"H8141\"* the|strong=\"H3117\"* land of|strong=\"H4428\"* Judah|strong=\"H3063\"*, from|strong=\"H3117\"* the|strong=\"H3117\"* twentieth|strong=\"H6242\"* year|strong=\"H8141\"* even|strong=\"H1571\"* to|strong=\"H5704\"* the|strong=\"H3117\"* thirty-second|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Artaxerxes the|strong=\"H3117\"* king|strong=\"H4428\"*, that|strong=\"H3117\"* is|strong=\"H3117\"*, twelve|strong=\"H8147\"* years|strong=\"H8141\"*, I|strong=\"H3117\"* and|strong=\"H3063\"* my|strong=\"H1961\"* brothers have|strong=\"H1961\"* not|strong=\"H3808\"* eaten the|strong=\"H3117\"* bread|strong=\"H3899\"* of|strong=\"H4428\"* the|strong=\"H3117\"* governor|strong=\"H6346\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H3808\"* the|strong=\"H6440\"* former|strong=\"H7223\"* governors|strong=\"H6346\"* who|strong=\"H5971\"* were|strong=\"H5971\"* before|strong=\"H6440\"* me|strong=\"H6440\"* were|strong=\"H5971\"* supported|strong=\"H3651\"* by|strong=\"H5921\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, and|strong=\"H3701\"* took|strong=\"H3947\"* bread|strong=\"H3899\"* and|strong=\"H3701\"* wine|strong=\"H3196\"* from|strong=\"H6440\"* them|strong=\"H1992\"*, plus forty shekels|strong=\"H8255\"*+ 5:15 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H6440\"* silver|strong=\"H3701\"*; yes|strong=\"H1571\"*, even|strong=\"H1571\"* their|strong=\"H3947\"* servants|strong=\"H5288\"* ruled over|strong=\"H5921\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, but|strong=\"H3808\"* I|strong=\"H5921\"* didn’t do|strong=\"H6213\"* so|strong=\"H3651\"*, because|strong=\"H5921\"* of|strong=\"H6440\"* the|strong=\"H6440\"* fear|strong=\"H3374\"* of|strong=\"H6440\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 16, + "text": "Yes|strong=\"H1571\"*, I|strong=\"H5921\"* also|strong=\"H1571\"* continued|strong=\"H2388\"* in|strong=\"H5921\"* the|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H7704\"* this|strong=\"H2063\"* wall|strong=\"H2346\"*. We|strong=\"H8033\"* didn’t buy|strong=\"H7069\"* any|strong=\"H3605\"* land|strong=\"H7704\"*. All|strong=\"H3605\"* my|strong=\"H3605\"* servants|strong=\"H5288\"* were|strong=\"H5288\"* gathered|strong=\"H6908\"* there|strong=\"H8033\"* to|strong=\"H5921\"* the|strong=\"H3605\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 17, + "text": "Moreover there|strong=\"H4480\"* were|strong=\"H1471\"* at|strong=\"H5921\"* my|strong=\"H5921\"* table|strong=\"H7979\"*, of|strong=\"H4480\"* the|strong=\"H5921\"* Jews|strong=\"H3064\"* and|strong=\"H3967\"* the|strong=\"H5921\"* rulers|strong=\"H5461\"*, one|strong=\"H4480\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* men, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H5921\"* those|strong=\"H4480\"* who|strong=\"H1471\"* came to|strong=\"H5921\"* us|strong=\"H5921\"* from|strong=\"H4480\"* among|strong=\"H4480\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* that|strong=\"H1471\"* were|strong=\"H1471\"* around|strong=\"H5439\"* us|strong=\"H5921\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"H1961\"* that|strong=\"H3588\"* which|strong=\"H5971\"* was|strong=\"H1961\"* prepared|strong=\"H6213\"* for|strong=\"H3588\"* one|strong=\"H2088\"* day|strong=\"H3117\"* was|strong=\"H1961\"* one|strong=\"H2088\"* ox|strong=\"H7794\"* and|strong=\"H3117\"* six|strong=\"H8337\"* choice|strong=\"H1305\"* sheep|strong=\"H6629\"*. Also|strong=\"H6213\"* fowls|strong=\"H6833\"* were|strong=\"H1961\"* prepared|strong=\"H6213\"* for|strong=\"H3588\"* me|strong=\"H5921\"*, and|strong=\"H3117\"* once|strong=\"H3117\"* in|strong=\"H5921\"* ten|strong=\"H6235\"* days|strong=\"H3117\"* a|strong=\"H3068\"* store|strong=\"H7235\"* of|strong=\"H3117\"* all|strong=\"H3605\"* sorts of|strong=\"H3117\"* wine|strong=\"H3196\"*. Yet|strong=\"H3588\"* for|strong=\"H3588\"* all|strong=\"H3605\"* this|strong=\"H2088\"*, I|strong=\"H3588\"* didn’t demand|strong=\"H1245\"* the|strong=\"H3605\"* governor|strong=\"H6346\"*’s pay|strong=\"H7235\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* bondage|strong=\"H5656\"* was|strong=\"H1961\"* heavy|strong=\"H3513\"* on|strong=\"H5921\"* this|strong=\"H2088\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 19, + "text": "Remember|strong=\"H2142\"* me|strong=\"H5921\"*, my|strong=\"H3605\"* God, for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* good|strong=\"H2896\"* that|strong=\"H5971\"* I|strong=\"H5921\"* have|strong=\"H5971\"* done|strong=\"H6213\"* for|strong=\"H5921\"* this|strong=\"H2088\"* people|strong=\"H5971\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* when|strong=\"H3588\"* it|strong=\"H1931\"* was|strong=\"H1961\"* reported|strong=\"H8085\"* to|strong=\"H5704\"* Sanballat|strong=\"H5571\"*, Tobiah|strong=\"H2900\"*, Geshem|strong=\"H1654\"* the|strong=\"H8085\"* Arabian|strong=\"H6163\"*, and|strong=\"H8085\"* to|strong=\"H5704\"* the|strong=\"H8085\"* rest|strong=\"H3499\"* of|strong=\"H8179\"* our|strong=\"H8085\"* enemies that|strong=\"H3588\"* I|strong=\"H3588\"* had|strong=\"H1961\"* built|strong=\"H1129\"* the|strong=\"H8085\"* wall|strong=\"H2346\"*, and|strong=\"H8085\"* that|strong=\"H3588\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* breach|strong=\"H6556\"* left|strong=\"H3498\"* in|strong=\"H8085\"* it|strong=\"H1931\"* (though|strong=\"H3588\"* even|strong=\"H1571\"* to|strong=\"H5704\"* that|strong=\"H3588\"* time|strong=\"H6256\"* I|strong=\"H3588\"* had|strong=\"H1961\"* not|strong=\"H3808\"* set|strong=\"H5975\"* up|strong=\"H5975\"* the|strong=\"H8085\"* doors|strong=\"H1817\"* in|strong=\"H8085\"* the|strong=\"H8085\"* gates|strong=\"H8179\"*)," + }, + { + "verseNum": 2, + "text": "Sanballat|strong=\"H5571\"* and|strong=\"H7971\"* Geshem|strong=\"H1654\"* sent|strong=\"H7971\"* to|strong=\"H3212\"* me|strong=\"H7971\"*, saying, “Come|strong=\"H3212\"*! Let|strong=\"H7971\"*’s meet|strong=\"H3259\"* together|strong=\"H3162\"* in|strong=\"H6213\"* the|strong=\"H6213\"* villages|strong=\"H3715\"* in|strong=\"H6213\"* the|strong=\"H6213\"* plain|strong=\"H1237\"* of|strong=\"H1237\"* Ono.” But|strong=\"H1992\"* they|strong=\"H1992\"* intended|strong=\"H2803\"* to|strong=\"H3212\"* harm|strong=\"H7451\"* me|strong=\"H7971\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H5921\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H3381\"* them|strong=\"H5921\"*, saying, “I|strong=\"H5921\"* am doing|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* work|strong=\"H4399\"*, so|strong=\"H6213\"* that|strong=\"H4397\"* I|strong=\"H5921\"* can|strong=\"H3201\"*’t come|strong=\"H3381\"* down|strong=\"H3381\"*. Why|strong=\"H4100\"* should|strong=\"H4100\"* the|strong=\"H5921\"* work|strong=\"H4399\"* cease|strong=\"H7673\"* while|strong=\"H5921\"* I|strong=\"H5921\"* leave|strong=\"H7503\"* it|strong=\"H5921\"* and|strong=\"H7971\"* come|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* you|strong=\"H7971\"*?”" + }, + { + "verseNum": 4, + "text": "They|strong=\"H1697\"* sent|strong=\"H7971\"* to|strong=\"H7725\"* me|strong=\"H7971\"* four times|strong=\"H6471\"* like|strong=\"H1697\"* this|strong=\"H2088\"*; and|strong=\"H7971\"* I|strong=\"H1697\"* answered|strong=\"H7725\"* them|strong=\"H7725\"* the|strong=\"H7725\"* same|strong=\"H2088\"* way|strong=\"H1697\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H2088\"* Sanballat|strong=\"H5571\"* sent|strong=\"H7971\"* his|strong=\"H7971\"* servant|strong=\"H5288\"* to|strong=\"H7971\"* me|strong=\"H7971\"* the|strong=\"H7971\"* same|strong=\"H2088\"* way|strong=\"H1697\"* the|strong=\"H7971\"* fifth|strong=\"H2549\"* time|strong=\"H6471\"* with|strong=\"H1697\"* an|strong=\"H7971\"* open|strong=\"H6605\"* letter in|strong=\"H1697\"* his|strong=\"H7971\"* hand|strong=\"H3027\"*," + }, + { + "verseNum": 6, + "text": "in|strong=\"H5921\"* which|strong=\"H1471\"* was|strong=\"H1697\"* written|strong=\"H3789\"*, “It|strong=\"H5921\"* is|strong=\"H1697\"* reported|strong=\"H8085\"* among|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*, and|strong=\"H4428\"* Gashmu|strong=\"H1654\"* says|strong=\"H1697\"* it|strong=\"H5921\"*, that|strong=\"H8085\"* you|strong=\"H5921\"* and|strong=\"H4428\"* the|strong=\"H5921\"* Jews|strong=\"H3064\"* intend|strong=\"H2803\"* to|strong=\"H5921\"* rebel|strong=\"H4775\"*. Because|strong=\"H5921\"* of|strong=\"H4428\"* that|strong=\"H8085\"*, you|strong=\"H5921\"* are|strong=\"H1471\"* building|strong=\"H1129\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*. You|strong=\"H5921\"* would|strong=\"H1697\"* be|strong=\"H1697\"* their|strong=\"H8085\"* king|strong=\"H4428\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* these|strong=\"H8085\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H5921\"* have|strong=\"H1571\"* also|strong=\"H1571\"* appointed|strong=\"H5975\"* prophets|strong=\"H5030\"* to|strong=\"H3212\"* proclaim|strong=\"H7121\"* of|strong=\"H4428\"* you|strong=\"H5921\"* at|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, saying|strong=\"H1697\"*, ‘There|strong=\"H5975\"* is|strong=\"H1571\"* a|strong=\"H3068\"* king|strong=\"H4428\"* in|strong=\"H5921\"* Judah|strong=\"H3063\"*!’ Now|strong=\"H6258\"* it|strong=\"H7121\"* will|strong=\"H4428\"* be|strong=\"H1697\"* reported|strong=\"H8085\"* to|strong=\"H3212\"* the|strong=\"H5921\"* king|strong=\"H4428\"* according|strong=\"H5921\"* to|strong=\"H3212\"* these|strong=\"H7121\"* words|strong=\"H1697\"*. Come|strong=\"H3212\"* now|strong=\"H6258\"* therefore|strong=\"H5921\"*, and|strong=\"H3063\"* let|strong=\"H6258\"*’s take|strong=\"H5975\"* counsel|strong=\"H3289\"* together|strong=\"H3162\"*.”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H1961\"* I|strong=\"H3588\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* him|strong=\"H7971\"*, saying|strong=\"H1697\"*, “There|strong=\"H1961\"* are|strong=\"H1697\"* no|strong=\"H3808\"* such|strong=\"H1697\"* things|strong=\"H1697\"* done|strong=\"H1961\"* as|strong=\"H1697\"* you|strong=\"H3588\"* say|strong=\"H1697\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* imagine them|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H1697\"* your|strong=\"H3588\"* own|strong=\"H1961\"* heart|strong=\"H3820\"*.”" + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* all|strong=\"H3605\"* would|strong=\"H6213\"* have|strong=\"H3027\"* made|strong=\"H6213\"* us|strong=\"H6213\"* afraid|strong=\"H3372\"*, saying, “Their|strong=\"H3605\"* hands|strong=\"H3027\"* will|strong=\"H3027\"* be|strong=\"H3808\"* weakened|strong=\"H7503\"* from|strong=\"H4480\"* the|strong=\"H3605\"* work|strong=\"H4399\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* not|strong=\"H3808\"* be|strong=\"H3808\"* done|strong=\"H6213\"*.” But|strong=\"H3588\"* now|strong=\"H6258\"*, strengthen|strong=\"H2388\"* my|strong=\"H3605\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"H3588\"* went|strong=\"H1121\"* to|strong=\"H1121\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Shemaiah|strong=\"H8098\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Delaiah|strong=\"H1806\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mehetabel|strong=\"H4105\"*, who|strong=\"H1931\"* was|strong=\"H1931\"* shut|strong=\"H5462\"* in|strong=\"H1004\"* at|strong=\"H1004\"* his|strong=\"H3588\"* home|strong=\"H1004\"*; and|strong=\"H1121\"* he|strong=\"H1931\"* said, “Let us|strong=\"H3588\"* meet|strong=\"H3259\"* together|strong=\"H3259\"* in|strong=\"H1004\"* God’s house|strong=\"H1004\"*, within|strong=\"H8432\"* the|strong=\"H3588\"* temple|strong=\"H1004\"*, and|strong=\"H1121\"* let’s shut|strong=\"H5462\"* the|strong=\"H3588\"* doors|strong=\"H1817\"* of|strong=\"H1121\"* the|strong=\"H3588\"* temple|strong=\"H1004\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H1121\"* come to|strong=\"H1121\"* kill|strong=\"H2026\"* you|strong=\"H3588\"*. Yes|strong=\"H3588\"*, in|strong=\"H1004\"* the|strong=\"H3588\"* night|strong=\"H3915\"* they|strong=\"H3588\"* will|strong=\"H1121\"* come to|strong=\"H1121\"* kill|strong=\"H2026\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 11, + "text": "I|strong=\"H3808\"* said, “Should|strong=\"H4310\"* a|strong=\"H3068\"* man like|strong=\"H3644\"* me|strong=\"H3808\"* flee|strong=\"H1272\"*? Who|strong=\"H4310\"* is|strong=\"H4310\"* there that|strong=\"H3808\"*, being such|strong=\"H3644\"* as|strong=\"H3644\"* I|strong=\"H3808\"*, would|strong=\"H4310\"* go into|strong=\"H1272\"* the|strong=\"H3808\"* temple|strong=\"H1964\"* to|strong=\"H1272\"* save his|strong=\"H3808\"* life|strong=\"H2425\"*? I|strong=\"H3808\"* will|strong=\"H4310\"* not|strong=\"H3808\"* go in|strong=\"H3808\"*.”" + }, + { + "verseNum": 12, + "text": "I|strong=\"H3588\"* discerned|strong=\"H5234\"*, and|strong=\"H7971\"* behold|strong=\"H2009\"*, God|strong=\"H3808\"* had|strong=\"H3588\"* not|strong=\"H3808\"* sent|strong=\"H7971\"* him|strong=\"H5921\"*, but|strong=\"H3588\"* he|strong=\"H3588\"* pronounced|strong=\"H1696\"* this|strong=\"H1696\"* prophecy|strong=\"H5016\"* against|strong=\"H5921\"* me|strong=\"H7971\"*. Tobiah|strong=\"H2900\"* and|strong=\"H7971\"* Sanballat|strong=\"H5571\"* had|strong=\"H3588\"* hired|strong=\"H7936\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1931\"* was|strong=\"H8034\"* hired|strong=\"H7936\"* so|strong=\"H3651\"* that|strong=\"H1931\"* I|strong=\"H3651\"* would|strong=\"H6213\"* be|strong=\"H1961\"* afraid|strong=\"H3372\"*, do|strong=\"H6213\"* so|strong=\"H3651\"*, and|strong=\"H6213\"* sin|strong=\"H2398\"*, and|strong=\"H6213\"* that|strong=\"H1931\"* they|strong=\"H1992\"* might|strong=\"H4616\"* have|strong=\"H1961\"* material for|strong=\"H6213\"* an|strong=\"H6213\"* evil|strong=\"H7451\"* report|strong=\"H8034\"*, that|strong=\"H1931\"* they|strong=\"H1992\"* might|strong=\"H4616\"* reproach|strong=\"H2778\"* me|strong=\"H6213\"*." + }, + { + "verseNum": 14, + "text": "“Remember|strong=\"H2142\"*, my|strong=\"H1961\"* God, Tobiah|strong=\"H2900\"* and|strong=\"H3372\"* Sanballat|strong=\"H5571\"* according to|strong=\"H1961\"* these|strong=\"H2142\"* their|strong=\"H2142\"* works|strong=\"H4639\"*, and|strong=\"H3372\"* also|strong=\"H1571\"* the|strong=\"H2142\"* prophetess|strong=\"H5031\"* Noadiah|strong=\"H5129\"* and|strong=\"H3372\"* the|strong=\"H2142\"* rest|strong=\"H3499\"* of|strong=\"H4639\"* the|strong=\"H2142\"* prophets|strong=\"H5030\"* that|strong=\"H5030\"* would|strong=\"H4639\"* have|strong=\"H1961\"* put|strong=\"H2142\"* me|strong=\"H3372\"* in|strong=\"H1961\"* fear|strong=\"H3372\"*.”" + }, + { + "verseNum": 15, + "text": "So the|strong=\"H3117\"* wall|strong=\"H2346\"* was|strong=\"H3117\"* finished|strong=\"H7999\"* in|strong=\"H3117\"* the|strong=\"H3117\"* twenty-fifth|strong=\"H6242\"* day|strong=\"H3117\"* of|strong=\"H3117\"* Elul, in|strong=\"H3117\"* fifty-two|strong=\"H2572\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* all|strong=\"H3605\"* our|strong=\"H3605\"* enemies heard|strong=\"H8085\"* of|strong=\"H5869\"* it|strong=\"H3588\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H3588\"* were|strong=\"H1961\"* around|strong=\"H5439\"* us|strong=\"H6213\"* were|strong=\"H1961\"* afraid, and|strong=\"H5869\"* they|strong=\"H3588\"* lost|strong=\"H5307\"* their|strong=\"H3605\"* confidence|strong=\"H5869\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* perceived|strong=\"H3045\"* that|strong=\"H3588\"* this|strong=\"H2063\"* work|strong=\"H4399\"* was|strong=\"H1961\"* done|strong=\"H6213\"* by|strong=\"H1961\"* our|strong=\"H3605\"* God." + }, + { + "verseNum": 17, + "text": "Moreover|strong=\"H1571\"* in|strong=\"H5921\"* those|strong=\"H1992\"* days|strong=\"H3117\"* the|strong=\"H5921\"* nobles|strong=\"H2715\"* of|strong=\"H3117\"* Judah|strong=\"H3063\"* sent|strong=\"H1980\"* many|strong=\"H7235\"* letters to|strong=\"H1980\"* Tobiah|strong=\"H2900\"*, and|strong=\"H1980\"* Tobiah|strong=\"H2900\"*’s letters came|strong=\"H1980\"* to|strong=\"H1980\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* there were|strong=\"H1121\"* many|strong=\"H7227\"* in|strong=\"H7227\"* Judah|strong=\"H3063\"* sworn|strong=\"H7621\"* to|strong=\"H1121\"* him|strong=\"H3947\"* because|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H3588\"* son-in-law|strong=\"H2860\"* of|strong=\"H1121\"* Shecaniah|strong=\"H7935\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Arah; and|strong=\"H1121\"* his|strong=\"H3947\"* son|strong=\"H1121\"* Jehohanan|strong=\"H3076\"* had|strong=\"H3063\"* taken|strong=\"H3947\"* the|strong=\"H3588\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Meshullam|strong=\"H4918\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Berechiah|strong=\"H1296\"* as|strong=\"H3588\"* wife." + }, + { + "verseNum": 19, + "text": "Also|strong=\"H1571\"* they|strong=\"H1697\"* spoke|strong=\"H1697\"* of|strong=\"H1697\"* his|strong=\"H7971\"* good|strong=\"H2896\"* deeds|strong=\"H1697\"* before|strong=\"H6440\"* me|strong=\"H6440\"*, and|strong=\"H7971\"* reported|strong=\"H3318\"* my|strong=\"H7971\"* words|strong=\"H1697\"* to|strong=\"H3318\"* him|strong=\"H6440\"*. Tobiah|strong=\"H2900\"* sent|strong=\"H7971\"* letters to|strong=\"H3318\"* put|strong=\"H7971\"* me|strong=\"H6440\"* in|strong=\"H6440\"* fear|strong=\"H3372\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* when|strong=\"H1961\"* the|strong=\"H1129\"* wall|strong=\"H2346\"* was|strong=\"H1961\"* built|strong=\"H1129\"* and|strong=\"H5975\"* I|strong=\"H7891\"* had|strong=\"H1961\"* set|strong=\"H5975\"* up|strong=\"H5975\"* the|strong=\"H1129\"* doors|strong=\"H1817\"*, and|strong=\"H5975\"* the|strong=\"H1129\"* gatekeepers|strong=\"H7778\"* and|strong=\"H5975\"* the|strong=\"H1129\"* singers|strong=\"H7891\"* and|strong=\"H5975\"* the|strong=\"H1129\"* Levites|strong=\"H3881\"* were|strong=\"H1961\"* appointed|strong=\"H5975\"*," + }, + { + "verseNum": 2, + "text": "I|strong=\"H3588\"* put|strong=\"H6680\"* my|strong=\"H5921\"* brother Hanani|strong=\"H2607\"*, and|strong=\"H3389\"* Hananiah|strong=\"H2608\"* the|strong=\"H5921\"* governor|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H5921\"* fortress|strong=\"H1002\"*, in|strong=\"H5921\"* charge|strong=\"H5921\"* of|strong=\"H8269\"* Jerusalem|strong=\"H3389\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* a|strong=\"H3068\"* faithful man and|strong=\"H3389\"* feared|strong=\"H3372\"* God above|strong=\"H5921\"* many|strong=\"H7227\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H5704\"* said to|strong=\"H5704\"* them|strong=\"H1992\"*, “Don’t let|strong=\"H3808\"* the|strong=\"H5704\"* gates|strong=\"H8179\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"* be|strong=\"H3808\"* opened|strong=\"H6605\"* until|strong=\"H5704\"* the|strong=\"H5704\"* sun|strong=\"H8121\"* is|strong=\"H1004\"* hot|strong=\"H2527\"*; and|strong=\"H1004\"* while|strong=\"H5704\"* they|strong=\"H1992\"* stand|strong=\"H5975\"* guard|strong=\"H4929\"*, let|strong=\"H3808\"* them|strong=\"H1992\"* shut|strong=\"H1479\"* the|strong=\"H5704\"* doors|strong=\"H1817\"*, and|strong=\"H1004\"* you|strong=\"H5704\"* bar them|strong=\"H1992\"*; and|strong=\"H1004\"* appoint|strong=\"H5975\"* watches|strong=\"H4931\"* of|strong=\"H1004\"* the|strong=\"H5704\"* inhabitants|strong=\"H3427\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*, everyone in|strong=\"H3427\"* his|strong=\"H6605\"* watch|strong=\"H4931\"*, with|strong=\"H1004\"* everyone near|strong=\"H5048\"* his|strong=\"H6605\"* house|strong=\"H1004\"*.”" + }, + { + "verseNum": 4, + "text": "Now|strong=\"H1419\"* the|strong=\"H8432\"* city|strong=\"H5892\"* was|strong=\"H5892\"* wide|strong=\"H7342\"* and|strong=\"H1419\"* large|strong=\"H1419\"*; but|strong=\"H5971\"* the|strong=\"H8432\"* people|strong=\"H5971\"* were|strong=\"H5971\"* few|strong=\"H4592\"* therein|strong=\"H8432\"*, and|strong=\"H1419\"* the|strong=\"H8432\"* houses|strong=\"H1004\"* were|strong=\"H5971\"* not|strong=\"H5971\"* built|strong=\"H1129\"*." + }, + { + "verseNum": 5, + "text": "My|strong=\"H5414\"* God|strong=\"H5414\"* put|strong=\"H5414\"* into|strong=\"H5927\"* my|strong=\"H5414\"* heart|strong=\"H3820\"* to|strong=\"H5927\"* gather|strong=\"H6908\"* together|strong=\"H6908\"* the|strong=\"H5414\"* nobles|strong=\"H2715\"*, and|strong=\"H5971\"* the|strong=\"H5414\"* rulers|strong=\"H5461\"*, and|strong=\"H5971\"* the|strong=\"H5414\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* they|strong=\"H5971\"* might|strong=\"H5971\"* be|strong=\"H3820\"* listed|strong=\"H3187\"* by|strong=\"H3187\"* genealogy|strong=\"H3187\"*. I|strong=\"H5414\"* found|strong=\"H4672\"* the|strong=\"H5414\"* book|strong=\"H5612\"* of|strong=\"H5971\"* the|strong=\"H5414\"* genealogy|strong=\"H3187\"* of|strong=\"H5971\"* those who|strong=\"H5971\"* came|strong=\"H5927\"* up|strong=\"H5927\"* at|strong=\"H6908\"* the|strong=\"H5414\"* first|strong=\"H7223\"*, and|strong=\"H5971\"* I|strong=\"H5414\"* found|strong=\"H4672\"* this|strong=\"H5414\"* written|strong=\"H3789\"* in|strong=\"H3789\"* it|strong=\"H5414\"*:" + }, + { + "verseNum": 6, + "text": "These|strong=\"H4428\"* are|strong=\"H1121\"* the|strong=\"H7725\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H7725\"* province|strong=\"H4082\"* who|strong=\"H1121\"* went|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H7725\"* of|strong=\"H1121\"* the|strong=\"H7725\"* captivity|strong=\"H7628\"* of|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* had|strong=\"H4428\"* been|strong=\"H5927\"* carried|strong=\"H1540\"* away|strong=\"H7725\"*, whom Nebuchadnezzar|strong=\"H5019\"* the|strong=\"H7725\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon had|strong=\"H4428\"* carried|strong=\"H1540\"* away|strong=\"H7725\"*, and|strong=\"H1121\"* who|strong=\"H1121\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"* and|strong=\"H1121\"* to|strong=\"H7725\"* Judah|strong=\"H3063\"*, everyone to|strong=\"H7725\"* his|strong=\"H7725\"* city|strong=\"H5892\"*," + }, + { + "verseNum": 7, + "text": "who|strong=\"H5971\"* came|strong=\"H3478\"* with|strong=\"H5973\"* Zerubbabel|strong=\"H2216\"*, Jeshua|strong=\"H3442\"*, Nehemiah|strong=\"H5166\"*, Azariah|strong=\"H5838\"*, Raamiah|strong=\"H7485\"*, Nahamani|strong=\"H5167\"*, Mordecai|strong=\"H4782\"*, Bilshan|strong=\"H1114\"*, Mispereth|strong=\"H4559\"*, Bigvai, Nehum|strong=\"H5149\"*, and|strong=\"H3478\"* Baanah|strong=\"H1196\"*." + }, + { + "verseNum": 8, + "text": "The children of Parosh: two thousand one hundred seventy-two." + }, + { + "verseNum": 9, + "text": "The children of Shephatiah: three hundred seventy-two." + }, + { + "verseNum": 10, + "text": "The children of Arah: six hundred fifty-two." + }, + { + "verseNum": 11, + "text": "The children of Pahathmoab, of the children of Jeshua and Joab: two thousand eight hundred eighteen." + }, + { + "verseNum": 12, + "text": "The children of Elam: one thousand two hundred fifty-four." + }, + { + "verseNum": 13, + "text": "The children of Zattu: eight hundred forty-five." + }, + { + "verseNum": 14, + "text": "The children of Zaccai: seven hundred sixty." + }, + { + "verseNum": 15, + "text": "The children of Binnui: six hundred forty-eight." + }, + { + "verseNum": 16, + "text": "The children of Bebai: six hundred twenty-eight." + }, + { + "verseNum": 17, + "text": "The children of Azgad: two thousand three hundred twenty-two." + }, + { + "verseNum": 18, + "text": "The children of Adonikam: six hundred sixty-seven." + }, + { + "verseNum": 19, + "text": "The children of Bigvai: two thousand sixty-seven." + }, + { + "verseNum": 20, + "text": "The children of Adin: six hundred fifty-five." + }, + { + "verseNum": 21, + "text": "The children of Ater: of Hezekiah, ninety-eight." + }, + { + "verseNum": 22, + "text": "The children of Hashum: three hundred twenty-eight." + }, + { + "verseNum": 23, + "text": "The children of Bezai: three hundred twenty-four." + }, + { + "verseNum": 24, + "text": "The children of Hariph: one hundred twelve." + }, + { + "verseNum": 25, + "text": "The children of Gibeon: ninety-five." + }, + { + "verseNum": 26, + "text": "The men of Bethlehem and Netophah: one hundred eighty-eight." + }, + { + "verseNum": 27, + "text": "The men of Anathoth: one hundred twenty-eight." + }, + { + "verseNum": 28, + "text": "The men of Beth Azmaveth: forty-two." + }, + { + "verseNum": 29, + "text": "The men of Kiriath Jearim, Chephirah, and Beeroth: seven hundred forty-three." + }, + { + "verseNum": 30, + "text": "The men of Ramah and Geba: six hundred twenty-one." + }, + { + "verseNum": 31, + "text": "The men of Michmas: one hundred twenty-two." + }, + { + "verseNum": 32, + "text": "The men of Bethel and Ai: one hundred twenty-three." + }, + { + "verseNum": 33, + "text": "The men of the other Nebo: fifty-two." + }, + { + "verseNum": 34, + "text": "The children of the other Elam: one thousand two hundred fifty-four." + }, + { + "verseNum": 35, + "text": "The children of Harim: three hundred twenty." + }, + { + "verseNum": 36, + "text": "The children of Jericho: three hundred forty-five." + }, + { + "verseNum": 37, + "text": "The children of Lod, Hadid, and Ono: seven hundred twenty-one." + }, + { + "verseNum": 38, + "text": "The children of Senaah: three thousand nine hundred thirty." + }, + { + "verseNum": 39, + "text": "The priests: The children of Jedaiah, of the house of Jeshua: nine hundred seventy-three." + }, + { + "verseNum": 40, + "text": "The children of Immer: one thousand fifty-two." + }, + { + "verseNum": 41, + "text": "The children of Pashhur: one thousand two hundred forty-seven." + }, + { + "verseNum": 42, + "text": "The children of Harim: one thousand seventeen." + }, + { + "verseNum": 43, + "text": "The Levites: the children of Jeshua, of Kadmiel, of the children of Hodevah: seventy-four." + }, + { + "verseNum": 44, + "text": "The singers: the children of Asaph: one hundred forty-eight." + }, + { + "verseNum": 45, + "text": "The gatekeepers: the children of Shallum, the children of Ater, the children of Talmon, the children of Akkub, the children of Hatita, the children of Shobai: one hundred thirty-eight." + }, + { + "verseNum": 46, + "text": "The|strong=\"H1121\"* temple|strong=\"H5411\"* servants|strong=\"H5411\"*: the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ziha|strong=\"H6727\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hasupha|strong=\"H2817\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Tabbaoth|strong=\"H2884\"*," + }, + { + "verseNum": 47, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Keros|strong=\"H7026\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Sia|strong=\"H5517\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Padon|strong=\"H6303\"*," + }, + { + "verseNum": 48, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Lebana|strong=\"H3838\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hagaba|strong=\"H2286\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Salmai," + }, + { + "verseNum": 49, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hanan|strong=\"H2605\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Giddel|strong=\"H1435\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gahar|strong=\"H1515\"*," + }, + { + "verseNum": 50, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reaiah|strong=\"H7211\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Rezin|strong=\"H7526\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Nekoda|strong=\"H5353\"*," + }, + { + "verseNum": 51, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gazzam|strong=\"H1502\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Uzza|strong=\"H5798\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Paseah|strong=\"H6454\"*," + }, + { + "verseNum": 52, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Besai|strong=\"H1153\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Meunim|strong=\"H4586\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Nephushesim," + }, + { + "verseNum": 53, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Bakbuk|strong=\"H1227\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hakupha|strong=\"H2709\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Harhur|strong=\"H2744\"*," + }, + { + "verseNum": 54, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Bazlith|strong=\"H1213\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Mehida|strong=\"H4240\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Harsha|strong=\"H2797\"*," + }, + { + "verseNum": 55, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Barkos|strong=\"H1302\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Sisera|strong=\"H5516\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Temah|strong=\"H8547\"*," + }, + { + "verseNum": 56, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Neziah|strong=\"H5335\"*, and|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hatipha|strong=\"H2412\"*." + }, + { + "verseNum": 57, + "text": "The|strong=\"H5650\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*’s servants|strong=\"H5650\"*: the|strong=\"H5650\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Sotai|strong=\"H5479\"*, the|strong=\"H5650\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Sophereth|strong=\"H5618\"*, the|strong=\"H5650\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Perida|strong=\"H6514\"*," + }, + { + "verseNum": 58, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Jaala|strong=\"H3279\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Darkon|strong=\"H1874\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Giddel|strong=\"H1435\"*," + }, + { + "verseNum": 59, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Shephatiah|strong=\"H8203\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hattil|strong=\"H2411\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Pochereth Hazzebaim, and|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Amon." + }, + { + "verseNum": 60, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* temple|strong=\"H5411\"* servants|strong=\"H5650\"* and|strong=\"H3967\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*’s servants|strong=\"H5650\"* were|strong=\"H1121\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* ninety-two." + }, + { + "verseNum": 61, + "text": "These|strong=\"H1992\"* were|strong=\"H3478\"* those|strong=\"H1992\"* who|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* Tel Melah, Tel Harsha, Cherub|strong=\"H3743\"*, Addon, and|strong=\"H3478\"* Immer; but|strong=\"H3808\"* they|strong=\"H1992\"* could|strong=\"H3201\"* not|strong=\"H3808\"* show|strong=\"H5046\"* their|strong=\"H1992\"* fathers’ houses|strong=\"H1004\"*, nor|strong=\"H3808\"* their|strong=\"H1992\"* offspring|strong=\"H2233\"*,+ 7:61 or, seed* whether they|strong=\"H1992\"* were|strong=\"H3478\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*:" + }, + { + "verseNum": 62, + "text": "The children of Delaiah, the children of Tobiah, the children of Nekoda: six hundred forty-two." + }, + { + "verseNum": 63, + "text": "Of the priests: the children of Hobaiah, the children of Hakkoz, the children of Barzillai, who took a wife of the daughters of Barzillai the Gileadite, and was called after their name." + }, + { + "verseNum": 64, + "text": "These searched|strong=\"H1245\"* for|strong=\"H1245\"* their|strong=\"H1245\"* genealogical|strong=\"H3187\"* records, but|strong=\"H3808\"* couldn’t find|strong=\"H4672\"* them|strong=\"H4672\"*. Therefore they|strong=\"H3808\"* were|strong=\"H4672\"* deemed disqualified and|strong=\"H4480\"* removed|strong=\"H4480\"* from|strong=\"H4480\"* the|strong=\"H4480\"* priesthood|strong=\"H3550\"*." + }, + { + "verseNum": 65, + "text": "The|strong=\"H5704\"* governor|strong=\"H8660\"* told them|strong=\"H5975\"* not|strong=\"H3808\"* to|strong=\"H5704\"* eat of|strong=\"H3548\"* the|strong=\"H5704\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* until|strong=\"H5704\"* a|strong=\"H3068\"* priest|strong=\"H3548\"* stood|strong=\"H5975\"* up|strong=\"H5975\"* to|strong=\"H5704\"* minister with|strong=\"H3548\"* Urim and|strong=\"H3548\"* Thummim|strong=\"H8550\"*." + }, + { + "verseNum": 66, + "text": "The|strong=\"H3605\"* whole|strong=\"H3605\"* assembly|strong=\"H6951\"* together|strong=\"H6951\"* was|strong=\"H3605\"* forty-two thousand|strong=\"H7239\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* sixty|strong=\"H8346\"*," + }, + { + "verseNum": 67, + "text": "in|strong=\"H5650\"* addition to|strong=\"H5650\"* their male|strong=\"H5650\"* servants|strong=\"H5650\"* and|strong=\"H3967\"* their female servants|strong=\"H5650\"*, of|strong=\"H5650\"* whom there were|strong=\"H5650\"* seven|strong=\"H7651\"* thousand three|strong=\"H7969\"* hundred|strong=\"H3967\"* thirty-seven|strong=\"H7970\"*. They had|strong=\"H7891\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* forty-five singing|strong=\"H7891\"* men|strong=\"H5650\"* and|strong=\"H3967\"* singing|strong=\"H7891\"* women|strong=\"H7891\"*." + }, + { + "verseNum": 68, + "text": "Their horses were|strong=\"H1581\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* thirty-six|strong=\"H7970\"*; their mules, two|strong=\"H2543\"* hundred|strong=\"H3967\"* forty-five;" + }, + { + "verseNum": 69, + "text": "their|strong=\"H5414\"* camels, four hundred|strong=\"H3967\"* thirty-five|strong=\"H7970\"*; their|strong=\"H5414\"* donkeys, six thousand seven hundred|strong=\"H3967\"* twenty." + }, + { + "verseNum": 70, + "text": "Some from|strong=\"H2091\"* among|strong=\"H7218\"* the|strong=\"H5414\"* heads|strong=\"H7218\"* of|strong=\"H7218\"* fathers’ households gave|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* work|strong=\"H4399\"*. The|strong=\"H5414\"* governor gave|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* treasury one|strong=\"H3967\"* thousand|strong=\"H7239\"* darics of|strong=\"H7218\"* gold|strong=\"H2091\"*,+ 7:70 a daric was a gold coin issued by a Persian king, weighing about 8.4 grams or about 0.27 troy ounces each.* fifty basins, and|strong=\"H3967\"* five hundred|strong=\"H3967\"* thirty priests’ garments." + }, + { + "verseNum": 71, + "text": "Some|strong=\"H5971\"* of|strong=\"H7611\"* the|strong=\"H5414\"* heads of|strong=\"H7611\"* fathers’ households gave|strong=\"H5414\"* into|strong=\"H3701\"* the|strong=\"H5414\"* treasury of|strong=\"H7611\"* the|strong=\"H5414\"* work|strong=\"H5414\"* twenty|strong=\"H8147\"* thousand|strong=\"H7239\"* darics of|strong=\"H7611\"* gold|strong=\"H2091\"*, and|strong=\"H3701\"* two|strong=\"H8147\"* thousand|strong=\"H7239\"* two|strong=\"H8147\"* hundred minas|strong=\"H4488\"*+ 7:71 A mina is about 600 grams or 1.3 U. S. pounds, so 2,200 minas is about 1.3 metric tons.* of|strong=\"H7611\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 72, + "text": "That|strong=\"H5971\"* which|strong=\"H5971\"* the|strong=\"H3605\"* rest of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"* gave was|strong=\"H3478\"* twenty thousand darics of|strong=\"H1121\"* gold, plus two|strong=\"H4480\"* thousand minas of|strong=\"H1121\"* silver, and|strong=\"H1121\"* sixty-seven priests|strong=\"H3548\"*’ garments." + }, + { + "verseNum": 73, + "text": "So the priests, the Levites, the gatekeepers, the singers, some of the people, the temple servants, and all Israel lived in their cities." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* gathered|strong=\"H3478\"* themselves|strong=\"H6440\"* together|strong=\"H5971\"* as|strong=\"H3068\"* one|strong=\"H3605\"* man|strong=\"H3605\"* into|strong=\"H4325\"* the|strong=\"H3605\"* wide place|strong=\"H3605\"* that|strong=\"H5971\"* was|strong=\"H3068\"* in|strong=\"H3478\"* front|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H3605\"* water|strong=\"H4325\"* gate|strong=\"H8179\"*; and|strong=\"H4872\"* they|strong=\"H3068\"* spoke to|strong=\"H3478\"* Ezra|strong=\"H5830\"* the|strong=\"H3605\"* scribe|strong=\"H5608\"* to|strong=\"H3478\"* bring the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H3068\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H3068\"* Moses|strong=\"H4872\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "Ezra|strong=\"H5830\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* brought|strong=\"H3548\"* the|strong=\"H3605\"* law|strong=\"H8451\"* before|strong=\"H6440\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*, both|strong=\"H3605\"* men|strong=\"H3605\"* and|strong=\"H3117\"* women, and|strong=\"H3117\"* all|strong=\"H3605\"* who|strong=\"H3605\"* could hear|strong=\"H8085\"* with|strong=\"H6440\"* understanding|strong=\"H8085\"*, on|strong=\"H3117\"* the|strong=\"H3605\"* first|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3117\"* read|strong=\"H7121\"* from|strong=\"H4480\"* it|strong=\"H7121\"* before|strong=\"H6440\"* the|strong=\"H3605\"* wide place|strong=\"H3605\"* that|strong=\"H5971\"* was|strong=\"H3117\"* in|strong=\"H3117\"* front|strong=\"H6440\"* of|strong=\"H3117\"* the|strong=\"H3605\"* water|strong=\"H4325\"* gate|strong=\"H8179\"* from|strong=\"H4480\"* early morning until|strong=\"H5704\"* midday|strong=\"H4276\"*, in|strong=\"H3117\"* the|strong=\"H3605\"* presence|strong=\"H6440\"* of|strong=\"H3117\"* the|strong=\"H3605\"* men|strong=\"H5971\"* and|strong=\"H3117\"* the|strong=\"H3605\"* women, and|strong=\"H3117\"* of|strong=\"H3117\"* those|strong=\"H3605\"* who|strong=\"H3605\"* could|strong=\"H5971\"* understand. The|strong=\"H3605\"* ears of|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* were|strong=\"H5971\"* attentive to|strong=\"H5704\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H3117\"* the|strong=\"H3605\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 4, + "text": "Ezra|strong=\"H5830\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* a|strong=\"H3068\"* pulpit|strong=\"H4026\"* of|strong=\"H1697\"* wood|strong=\"H6086\"*, which|strong=\"H1697\"* they|strong=\"H5921\"* had|strong=\"H5830\"* made|strong=\"H6213\"* for|strong=\"H5921\"* the|strong=\"H5921\"* purpose|strong=\"H1697\"*; and|strong=\"H6086\"* beside|strong=\"H5921\"* him|strong=\"H5921\"* stood|strong=\"H5975\"* Mattithiah|strong=\"H4993\"*, Shema|strong=\"H8087\"*, Anaiah|strong=\"H6043\"*, Uriah, Hilkiah|strong=\"H2518\"*, and|strong=\"H6086\"* Maaseiah|strong=\"H4641\"*, on|strong=\"H5921\"* his|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*; and|strong=\"H6086\"* on|strong=\"H5921\"* his|strong=\"H5921\"* left|strong=\"H8040\"* hand|strong=\"H3225\"*, Pedaiah|strong=\"H6305\"*, Mishael|strong=\"H4332\"*, Malchijah|strong=\"H4441\"*, Hashum|strong=\"H2828\"*, Hashbaddanah|strong=\"H2806\"*, Zechariah|strong=\"H2148\"*, and|strong=\"H6086\"* Meshullam|strong=\"H4918\"*." + }, + { + "verseNum": 5, + "text": "Ezra|strong=\"H5830\"* opened|strong=\"H6605\"* the|strong=\"H3605\"* book|strong=\"H5612\"* in|strong=\"H5921\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* (for|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H1961\"* above|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*), and|strong=\"H5971\"* when|strong=\"H3588\"* he|strong=\"H3588\"* opened|strong=\"H6605\"* it|strong=\"H5921\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* stood|strong=\"H5975\"* up|strong=\"H5975\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H6030\"* Ezra|strong=\"H5830\"* blessed|strong=\"H1288\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* great|strong=\"H1419\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "Also|strong=\"H5971\"* Jeshua|strong=\"H3442\"*, Bani|strong=\"H1137\"*, Sherebiah|strong=\"H8274\"*, Jamin|strong=\"H3226\"*, Akkub|strong=\"H6126\"*, Shabbethai|strong=\"H7678\"*, Hodiah|strong=\"H1941\"*, Maaseiah|strong=\"H4641\"*, Kelita|strong=\"H7042\"*, Azariah|strong=\"H5838\"*, Jozabad|strong=\"H3107\"*, Hanan|strong=\"H2605\"*, Pelaiah|strong=\"H6411\"*, and|strong=\"H5971\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*, caused the|strong=\"H5921\"* people|strong=\"H5971\"* to|strong=\"H5921\"* understand the|strong=\"H5921\"* law|strong=\"H8451\"*; and|strong=\"H5971\"* the|strong=\"H5921\"* people|strong=\"H5971\"* stayed in|strong=\"H5921\"* their|strong=\"H5921\"* place|strong=\"H5977\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H7760\"* read|strong=\"H7121\"* in|strong=\"H7121\"* the|strong=\"H7760\"* book|strong=\"H5612\"*, in|strong=\"H7121\"* the|strong=\"H7760\"* law|strong=\"H8451\"* of|strong=\"H8451\"* God, distinctly|strong=\"H6567\"*; and|strong=\"H8451\"* they|strong=\"H7760\"* gave|strong=\"H7121\"* the|strong=\"H7760\"* sense|strong=\"H7922\"*, so|strong=\"H7121\"* that|strong=\"H7121\"* they|strong=\"H7760\"* understood the|strong=\"H7760\"* reading|strong=\"H7121\"*." + }, + { + "verseNum": 9, + "text": "Nehemiah|strong=\"H5166\"*, who|strong=\"H3605\"* was|strong=\"H3068\"* the|strong=\"H3605\"* governor|strong=\"H8660\"*, Ezra|strong=\"H5830\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* and|strong=\"H3068\"* scribe|strong=\"H5608\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* who|strong=\"H3605\"* taught the|strong=\"H3605\"* people|strong=\"H5971\"* said|strong=\"H1697\"* to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, “Today|strong=\"H3117\"* is|strong=\"H3068\"* holy|strong=\"H6918\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. Don’t mourn|strong=\"H1058\"*, nor|strong=\"H3117\"* weep|strong=\"H1058\"*.” For|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* wept|strong=\"H1058\"* when|strong=\"H3588\"* they|strong=\"H3588\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* the|strong=\"H3605\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 10, + "text": "Then|strong=\"H7971\"* he|strong=\"H1931\"* said to|strong=\"H3068\"* them|strong=\"H7971\"*, “Go|strong=\"H3212\"* your|strong=\"H3068\"* way|strong=\"H3212\"*. Eat the|strong=\"H3588\"* fat|strong=\"H4924\"*, drink|strong=\"H8354\"* the|strong=\"H3588\"* sweet|strong=\"H4477\"*, and|strong=\"H3068\"* send|strong=\"H7971\"* portions|strong=\"H4490\"* to|strong=\"H3068\"* him|strong=\"H7971\"* for|strong=\"H3588\"* whom|strong=\"H3588\"* nothing is|strong=\"H3068\"* prepared|strong=\"H3559\"*, for|strong=\"H3588\"* today|strong=\"H3117\"* is|strong=\"H3068\"* holy|strong=\"H6918\"* to|strong=\"H3068\"* our|strong=\"H3068\"* Lord|strong=\"H3068\"*. Don’t be|strong=\"H3068\"* grieved|strong=\"H6087\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* joy|strong=\"H2304\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* your|strong=\"H3068\"* strength|strong=\"H4581\"*.”" + }, + { + "verseNum": 11, + "text": "So|strong=\"H3588\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* calmed|strong=\"H2814\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying, “Hold your|strong=\"H3605\"* peace|strong=\"H2814\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* day|strong=\"H3117\"* is|strong=\"H3117\"* holy|strong=\"H6918\"*. Don’t be|strong=\"H3117\"* grieved|strong=\"H6087\"*.”" + }, + { + "verseNum": 12, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* went|strong=\"H3212\"* their|strong=\"H3605\"* way|strong=\"H3212\"* to|strong=\"H3212\"* eat, to|strong=\"H3212\"* drink|strong=\"H8354\"*, to|strong=\"H3212\"* send|strong=\"H7971\"* portions|strong=\"H4490\"*, and|strong=\"H7971\"* to|strong=\"H3212\"* celebrate|strong=\"H6213\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3588\"* understood|strong=\"H3045\"* the|strong=\"H3605\"* words|strong=\"H1697\"* that|strong=\"H3588\"* were|strong=\"H5971\"* declared|strong=\"H3045\"* to|strong=\"H3212\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 13, + "text": "On|strong=\"H3117\"* the|strong=\"H3605\"* second|strong=\"H8145\"* day|strong=\"H3117\"*, the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H3117\"* fathers’ households|strong=\"H3881\"* of|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, the|strong=\"H3605\"* priests|strong=\"H3548\"*, and|strong=\"H3117\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* were|strong=\"H5971\"* gathered together|strong=\"H5971\"* to|strong=\"H3117\"* Ezra|strong=\"H5830\"* the|strong=\"H3605\"* scribe|strong=\"H5608\"*, to|strong=\"H3117\"* study the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3117\"* the|strong=\"H3605\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3068\"* found|strong=\"H4672\"* written|strong=\"H3789\"* in|strong=\"H3427\"* the|strong=\"H3068\"* law|strong=\"H8451\"* how Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"* that|strong=\"H3068\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* should|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* booths|strong=\"H5521\"* in|strong=\"H3427\"* the|strong=\"H3068\"* feast|strong=\"H2282\"* of|strong=\"H1121\"* the|strong=\"H3068\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"H6086\"* that|strong=\"H3605\"* they|strong=\"H6213\"* should|strong=\"H6213\"* publish|strong=\"H8085\"* and|strong=\"H6086\"* proclaim|strong=\"H8085\"* in|strong=\"H6213\"* all|strong=\"H3605\"* their|strong=\"H3605\"* cities|strong=\"H5892\"* and|strong=\"H6086\"* in|strong=\"H6213\"* Jerusalem|strong=\"H3389\"*, saying|strong=\"H6963\"*, “Go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"*, and|strong=\"H6086\"* get|strong=\"H3318\"* olive|strong=\"H2132\"* branches|strong=\"H5929\"*, branches|strong=\"H5929\"* of|strong=\"H5892\"* wild|strong=\"H6213\"* olive|strong=\"H2132\"*, myrtle|strong=\"H1918\"* branches|strong=\"H5929\"*, palm|strong=\"H8558\"* branches|strong=\"H5929\"*, and|strong=\"H6086\"* branches|strong=\"H5929\"* of|strong=\"H5892\"* thick|strong=\"H5687\"* trees|strong=\"H6086\"*, to|strong=\"H3318\"* make|strong=\"H6213\"* temporary|strong=\"H5521\"* shelters|strong=\"H5521\"*,+ 8:15 or, booths* as|strong=\"H6213\"* it|strong=\"H6213\"* is|strong=\"H3605\"* written|strong=\"H3789\"*.”" + }, + { + "verseNum": 16, + "text": "So|strong=\"H6213\"* the|strong=\"H5921\"* people|strong=\"H5971\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H1004\"* brought|strong=\"H3318\"* them|strong=\"H1992\"*, and|strong=\"H1004\"* made|strong=\"H6213\"* themselves|strong=\"H1992\"* temporary|strong=\"H5521\"* shelters|strong=\"H5521\"*,+ 8:16 or, booths* everyone on|strong=\"H5921\"* the|strong=\"H5921\"* roof|strong=\"H1406\"* of|strong=\"H1004\"* his|strong=\"H5921\"* house|strong=\"H1004\"*, in|strong=\"H5921\"* their|strong=\"H1992\"* courts|strong=\"H2691\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* courts|strong=\"H2691\"* of|strong=\"H1004\"* God’s house|strong=\"H1004\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* wide place|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5921\"* water|strong=\"H4325\"* gate|strong=\"H8179\"*, and|strong=\"H1004\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wide place|strong=\"H1004\"* of|strong=\"H1004\"* Ephraim’s gate|strong=\"H8179\"*." + }, + { + "verseNum": 17, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H1121\"* those|strong=\"H3605\"* who|strong=\"H3605\"* had|strong=\"H1961\"* come|strong=\"H1961\"* back|strong=\"H7725\"* out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H3605\"* captivity|strong=\"H7628\"* made|strong=\"H6213\"* temporary|strong=\"H5521\"* shelters|strong=\"H5521\"*+ 8:17 or, booths* and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* temporary|strong=\"H5521\"* shelters|strong=\"H5521\"*, for|strong=\"H3588\"* since|strong=\"H3588\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Joshua the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"* to|strong=\"H5704\"* that|strong=\"H3588\"* day|strong=\"H3117\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H1961\"* not|strong=\"H3808\"* done|strong=\"H6213\"* so|strong=\"H3651\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* very|strong=\"H3966\"* great|strong=\"H1419\"* gladness|strong=\"H8057\"*." + }, + { + "verseNum": 18, + "text": "Also|strong=\"H6213\"* day|strong=\"H3117\"* by|strong=\"H3117\"* day|strong=\"H3117\"*, from|strong=\"H4480\"* the|strong=\"H6213\"* first|strong=\"H7223\"* day|strong=\"H3117\"* to|strong=\"H5704\"* the|strong=\"H6213\"* last day|strong=\"H3117\"*, he|strong=\"H3117\"* read|strong=\"H7121\"* in|strong=\"H6213\"* the|strong=\"H6213\"* book|strong=\"H5612\"* of|strong=\"H3117\"* the|strong=\"H6213\"* law|strong=\"H8451\"* of|strong=\"H3117\"* God. They|strong=\"H3117\"* kept|strong=\"H6213\"* the|strong=\"H6213\"* feast|strong=\"H2282\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*; and|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H6213\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* was|strong=\"H3117\"* a|strong=\"H3068\"* solemn|strong=\"H6116\"* assembly|strong=\"H6116\"*, according|strong=\"H4941\"* to|strong=\"H5704\"* the|strong=\"H6213\"* ordinance|strong=\"H4941\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* twenty-fourth|strong=\"H6242\"* day|strong=\"H3117\"* of|strong=\"H1121\"* this|strong=\"H2088\"* month|strong=\"H2320\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* assembled|strong=\"H3478\"* with|strong=\"H5921\"* fasting|strong=\"H6685\"*, with|strong=\"H5921\"* sackcloth|strong=\"H8242\"*, and|strong=\"H1121\"* dirt on|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* offspring|strong=\"H2233\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* separated themselves|strong=\"H5921\"* from|strong=\"H5921\"* all|strong=\"H3605\"* foreigners|strong=\"H1121\"* and|strong=\"H1121\"* stood|strong=\"H5975\"* and|strong=\"H1121\"* confessed|strong=\"H3034\"* their|strong=\"H3605\"* sins|strong=\"H2403\"* and|strong=\"H1121\"* the|strong=\"H3605\"* iniquities|strong=\"H5771\"* of|strong=\"H1121\"* their|strong=\"H3605\"* fathers." + }, + { + "verseNum": 3, + "text": "They|strong=\"H3117\"* stood|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H5921\"* their|strong=\"H3068\"* place|strong=\"H5977\"*, and|strong=\"H6965\"* read|strong=\"H7121\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H3068\"* the|strong=\"H5921\"* law|strong=\"H8451\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"* a|strong=\"H3068\"* fourth|strong=\"H7243\"* part|strong=\"H7243\"* of|strong=\"H3068\"* the|strong=\"H5921\"* day|strong=\"H3117\"*; and|strong=\"H6965\"* a|strong=\"H3068\"* fourth|strong=\"H7243\"* part|strong=\"H7243\"* they|strong=\"H3117\"* confessed|strong=\"H3034\"* and|strong=\"H6965\"* worshiped|strong=\"H7812\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H6965\"* Jeshua|strong=\"H3442\"*, Bani|strong=\"H1137\"*, Kadmiel|strong=\"H6934\"*, Shebaniah|strong=\"H7645\"*, Bunni|strong=\"H1138\"*, Sherebiah|strong=\"H8274\"*, Bani|strong=\"H1137\"*, and|strong=\"H6965\"* Chenani|strong=\"H3662\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* stood|strong=\"H6965\"* up|strong=\"H6965\"* on|strong=\"H5921\"* the|strong=\"H5921\"* stairs|strong=\"H4608\"*, and|strong=\"H6965\"* cried|strong=\"H2199\"* with|strong=\"H3068\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6965\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, Jeshua|strong=\"H3442\"*, and|strong=\"H6965\"* Kadmiel|strong=\"H6934\"*, Bani|strong=\"H1137\"*, Hashabneiah|strong=\"H2813\"*, Sherebiah|strong=\"H8274\"*, Hodiah|strong=\"H1941\"*, Shebaniah|strong=\"H7645\"*, and|strong=\"H6965\"* Pethahiah|strong=\"H6611\"*, said, “Stand|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* bless|strong=\"H1288\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* from|strong=\"H4480\"* everlasting|strong=\"H5769\"* to|strong=\"H5704\"* everlasting|strong=\"H5769\"*! Blessed|strong=\"H1288\"* be|strong=\"H3068\"* your|strong=\"H3068\"* glorious|strong=\"H3519\"* name|strong=\"H8034\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* exalted|strong=\"H7311\"* above|strong=\"H5921\"* all|strong=\"H3605\"* blessing|strong=\"H1293\"* and|strong=\"H6965\"* praise|strong=\"H8416\"*!" + }, + { + "verseNum": 6, + "text": "You|strong=\"H3605\"* are|strong=\"H8064\"* Yahweh|strong=\"H3068\"*, even|strong=\"H6213\"* you|strong=\"H3605\"* alone|strong=\"H1931\"*. You|strong=\"H3605\"* have|strong=\"H3068\"* made|strong=\"H6213\"* heaven|strong=\"H8064\"*, the|strong=\"H3605\"* heaven|strong=\"H8064\"* of|strong=\"H3068\"* heavens|strong=\"H8064\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* their|strong=\"H3605\"* army|strong=\"H6635\"*, the|strong=\"H3605\"* earth|strong=\"H8064\"* and|strong=\"H3068\"* all|strong=\"H3605\"* things|strong=\"H3605\"* that|strong=\"H3605\"* are|strong=\"H8064\"* on|strong=\"H5921\"* it|strong=\"H1931\"*, the|strong=\"H3605\"* seas|strong=\"H3220\"* and|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3068\"* in|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* you|strong=\"H3605\"* preserve|strong=\"H2421\"* them|strong=\"H5921\"* all|strong=\"H3605\"*. The|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H3068\"* heaven|strong=\"H8064\"* worships|strong=\"H7812\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H7760\"* are|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* who|strong=\"H1931\"* chose Abram, brought|strong=\"H3318\"* him|strong=\"H7760\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Ur of|strong=\"H3068\"* the|strong=\"H3068\"* Chaldees|strong=\"H3778\"*, gave|strong=\"H7760\"* him|strong=\"H7760\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Abraham," + }, + { + "verseNum": 8, + "text": "found|strong=\"H4672\"* his|strong=\"H5414\"* heart|strong=\"H3824\"* faithful before|strong=\"H6440\"* you|strong=\"H3588\"*, and|strong=\"H6965\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H5973\"* him|strong=\"H5414\"* to|strong=\"H5414\"* give|strong=\"H5414\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H1697\"* the|strong=\"H6440\"* Canaanite|strong=\"H3669\"*, the|strong=\"H6440\"* Hittite|strong=\"H2850\"*, the|strong=\"H6440\"* Amorite, the|strong=\"H6440\"* Perizzite|strong=\"H6522\"*, the|strong=\"H6440\"* Jebusite|strong=\"H2983\"*, and|strong=\"H6965\"* the|strong=\"H6440\"* Girgashite|strong=\"H1622\"*, to|strong=\"H5414\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* his|strong=\"H5414\"* offspring|strong=\"H2233\"*, and|strong=\"H6965\"* have|strong=\"H4672\"* performed|strong=\"H6965\"* your|strong=\"H5414\"* words|strong=\"H1697\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1697\"* righteous|strong=\"H6662\"*." + }, + { + "verseNum": 9, + "text": "“You|strong=\"H5921\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* affliction|strong=\"H6040\"* of|strong=\"H5921\"* our|strong=\"H7200\"* fathers in|strong=\"H5921\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* heard|strong=\"H8085\"* their|strong=\"H8085\"* cry|strong=\"H2201\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"H3117\"* showed|strong=\"H6213\"* signs and|strong=\"H3117\"* wonders|strong=\"H4159\"* against|strong=\"H5921\"* Pharaoh|strong=\"H6547\"*, against|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*, and|strong=\"H3117\"* against|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H3117\"* his|strong=\"H3605\"* land, for|strong=\"H3588\"* you|strong=\"H3588\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* they|strong=\"H3588\"* dealt|strong=\"H6213\"* proudly|strong=\"H2102\"* against|strong=\"H5921\"* them|strong=\"H5414\"*, and|strong=\"H3117\"* made|strong=\"H6213\"* a|strong=\"H3068\"* name|strong=\"H8034\"* for|strong=\"H3588\"* yourself|strong=\"H6213\"*, as|strong=\"H3117\"* it|strong=\"H5414\"* is|strong=\"H2088\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H6440\"* divided|strong=\"H1234\"* the|strong=\"H6440\"* sea|strong=\"H3220\"* before|strong=\"H6440\"* them|strong=\"H6440\"*, so|strong=\"H3644\"* that|strong=\"H4325\"* they|strong=\"H6440\"* went|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H6440\"* the|strong=\"H6440\"* sea|strong=\"H3220\"* on|strong=\"H5674\"* the|strong=\"H6440\"* dry|strong=\"H3004\"* land|strong=\"H3004\"*; and|strong=\"H6440\"* you|strong=\"H6440\"* cast|strong=\"H7993\"* their|strong=\"H6440\"* pursuers|strong=\"H7291\"* into|strong=\"H8432\"* the|strong=\"H6440\"* depths|strong=\"H4688\"*, as|strong=\"H3644\"* a|strong=\"H3068\"* stone into|strong=\"H8432\"* the|strong=\"H6440\"* mighty|strong=\"H5794\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 12, + "text": "Moreover, in|strong=\"H3212\"* a|strong=\"H3068\"* pillar|strong=\"H5982\"* of|strong=\"H1870\"* cloud|strong=\"H6051\"* you|strong=\"H3915\"* led|strong=\"H3212\"* them|strong=\"H1992\"* by|strong=\"H1870\"* day|strong=\"H3119\"*; and|strong=\"H3212\"* in|strong=\"H3212\"* a|strong=\"H3068\"* pillar|strong=\"H5982\"* of|strong=\"H1870\"* fire by|strong=\"H1870\"* night|strong=\"H3915\"*, to|strong=\"H3212\"* give them|strong=\"H1992\"* light in|strong=\"H3212\"* the|strong=\"H1870\"* way|strong=\"H1870\"* in|strong=\"H3212\"* which|strong=\"H1992\"* they|strong=\"H1992\"* should go|strong=\"H3212\"*." + }, + { + "verseNum": 13, + "text": "“You|strong=\"H5414\"* also|strong=\"H8064\"* came|strong=\"H3381\"* down|strong=\"H3381\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*, and|strong=\"H8064\"* spoke|strong=\"H1696\"* with|strong=\"H5973\"* them|strong=\"H5414\"* from|strong=\"H3381\"* heaven|strong=\"H8064\"*, and|strong=\"H8064\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* right|strong=\"H3477\"* ordinances|strong=\"H4941\"* and|strong=\"H8064\"* true laws|strong=\"H8451\"*, good|strong=\"H2896\"* statutes|strong=\"H2706\"* and|strong=\"H8064\"* commandments|strong=\"H4687\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H4872\"* made|strong=\"H3045\"* known|strong=\"H3045\"* to|strong=\"H3027\"* them|strong=\"H3027\"* your|strong=\"H3045\"* holy|strong=\"H6944\"* Sabbath|strong=\"H7676\"*, and|strong=\"H4872\"* commanded|strong=\"H6680\"* them|strong=\"H3027\"* commandments|strong=\"H4687\"*, statutes|strong=\"H2706\"*, and|strong=\"H4872\"* a|strong=\"H3068\"* law|strong=\"H8451\"*, by|strong=\"H3027\"* Moses|strong=\"H4872\"* your|strong=\"H3045\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 15, + "text": "and|strong=\"H8064\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* bread|strong=\"H3899\"* from|strong=\"H3318\"* the|strong=\"H5414\"* sky|strong=\"H8064\"* for|strong=\"H3027\"* their|strong=\"H5375\"* hunger|strong=\"H7458\"*, and|strong=\"H8064\"* brought|strong=\"H3318\"* water|strong=\"H4325\"* out|strong=\"H3318\"* of|strong=\"H3027\"* the|strong=\"H5414\"* rock|strong=\"H5553\"* for|strong=\"H3027\"* them|strong=\"H5414\"* for|strong=\"H3027\"* their|strong=\"H5375\"* thirst|strong=\"H6772\"*, and|strong=\"H8064\"* commanded them|strong=\"H5414\"* that|strong=\"H5414\"* they|strong=\"H5375\"* should|strong=\"H3899\"* go|strong=\"H3318\"* in|strong=\"H3899\"* to|strong=\"H3318\"* possess|strong=\"H3423\"* the|strong=\"H5414\"* land|strong=\"H8064\"* which|strong=\"H4325\"* you|strong=\"H5414\"* had|strong=\"H5414\"* sworn|strong=\"H3027\"* to|strong=\"H3318\"* give|strong=\"H5414\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 16, + "text": "“But|strong=\"H3808\"* they|strong=\"H1992\"* and|strong=\"H8085\"* our|strong=\"H8085\"* fathers behaved proudly|strong=\"H2102\"*, hardened|strong=\"H7185\"* their|strong=\"H8085\"* neck|strong=\"H6203\"*, didn’t listen|strong=\"H8085\"* to|strong=\"H8085\"* your|strong=\"H8085\"* commandments|strong=\"H4687\"*," + }, + { + "verseNum": 17, + "text": "and|strong=\"H7725\"* refused|strong=\"H3985\"* to|strong=\"H7725\"* obey|strong=\"H8085\"*. They|strong=\"H3808\"* weren’t mindful|strong=\"H2142\"* of|strong=\"H7218\"* your|strong=\"H5414\"* wonders|strong=\"H6381\"* that|strong=\"H8085\"* you|strong=\"H5414\"* did|strong=\"H6213\"* among|strong=\"H5973\"* them|strong=\"H5414\"*, but|strong=\"H3808\"* hardened|strong=\"H7185\"* their|strong=\"H5414\"* neck|strong=\"H6203\"*, and|strong=\"H7725\"* in|strong=\"H6213\"* their|strong=\"H5414\"* rebellion|strong=\"H4805\"* appointed|strong=\"H5414\"* a|strong=\"H3068\"* captain|strong=\"H7227\"* to|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* their|strong=\"H5414\"* bondage|strong=\"H5659\"*. But|strong=\"H3808\"* you|strong=\"H5414\"* are|strong=\"H7227\"* a|strong=\"H3068\"* God|strong=\"H5414\"* ready|strong=\"H6213\"* to|strong=\"H7725\"* pardon|strong=\"H5547\"*, gracious|strong=\"H2587\"* and|strong=\"H7725\"* merciful|strong=\"H7349\"*, slow to|strong=\"H7725\"* anger, and|strong=\"H7725\"* abundant|strong=\"H7227\"* in|strong=\"H6213\"* loving kindness|strong=\"H2617\"*, and|strong=\"H7725\"* didn’t forsake|strong=\"H5800\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 18, + "text": "Yes|strong=\"H3588\"*, when|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3588\"* made|strong=\"H6213\"* themselves|strong=\"H6213\"* a|strong=\"H3068\"* molded calf|strong=\"H5695\"*, and|strong=\"H1419\"* said, ‘This|strong=\"H2088\"* is|strong=\"H2088\"* your|strong=\"H6213\"* God who|strong=\"H2088\"* brought|strong=\"H5927\"* you|strong=\"H3588\"* up|strong=\"H5927\"* out|strong=\"H6213\"* of|strong=\"H6213\"* Egypt|strong=\"H4714\"*,’ and|strong=\"H1419\"* had|strong=\"H3588\"* committed|strong=\"H6213\"* awful blasphemies|strong=\"H5007\"*," + }, + { + "verseNum": 19, + "text": "yet|strong=\"H3808\"* you|strong=\"H5921\"* in|strong=\"H5921\"* your|strong=\"H5921\"* manifold|strong=\"H7227\"* mercies|strong=\"H7356\"* didn’t forsake|strong=\"H5800\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*. The|strong=\"H5921\"* pillar|strong=\"H5982\"* of|strong=\"H1870\"* cloud|strong=\"H6051\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* over|strong=\"H5921\"* them|strong=\"H5921\"* by|strong=\"H5921\"* day|strong=\"H3119\"*, to|strong=\"H3212\"* lead|strong=\"H5148\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"*; neither|strong=\"H3808\"* did|strong=\"H3808\"* the|strong=\"H5921\"* pillar|strong=\"H5982\"* of|strong=\"H1870\"* fire by|strong=\"H5921\"* night|strong=\"H3915\"*, to|strong=\"H3212\"* show|strong=\"H7356\"* them|strong=\"H5921\"* light, and|strong=\"H3212\"* the|strong=\"H5921\"* way|strong=\"H1870\"* in|strong=\"H5921\"* which|strong=\"H4057\"* they|strong=\"H3808\"* should go|strong=\"H3212\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H5414\"* gave|strong=\"H5414\"* also your|strong=\"H5414\"* good|strong=\"H2896\"* Spirit|strong=\"H7307\"* to|strong=\"H5414\"* instruct|strong=\"H7919\"* them|strong=\"H5414\"*, and|strong=\"H2896\"* didn’t withhold|strong=\"H4513\"* your|strong=\"H5414\"* manna|strong=\"H4478\"* from|strong=\"H7307\"* their|strong=\"H5414\"* mouth|strong=\"H6310\"*, and|strong=\"H2896\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* water|strong=\"H4325\"* for|strong=\"H4325\"* their|strong=\"H5414\"* thirst|strong=\"H6772\"*." + }, + { + "verseNum": 21, + "text": "“Yes, forty years|strong=\"H8141\"* you|strong=\"H3808\"* sustained|strong=\"H3557\"* them|strong=\"H1086\"* in|strong=\"H8141\"* the|strong=\"H3808\"* wilderness|strong=\"H4057\"*. They|strong=\"H3808\"* lacked|strong=\"H2637\"* nothing|strong=\"H3808\"*. Their|strong=\"H3808\"* clothes|strong=\"H8008\"* didn’t grow old|strong=\"H1086\"*, and|strong=\"H8141\"* their|strong=\"H3808\"* feet|strong=\"H7272\"* didn’t swell|strong=\"H1216\"*." + }, + { + "verseNum": 22, + "text": "Moreover you|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* kingdoms|strong=\"H4467\"* and|strong=\"H4428\"* peoples|strong=\"H5971\"*, which|strong=\"H5971\"* you|strong=\"H5414\"* allotted|strong=\"H2505\"* according to|strong=\"H5414\"* their|strong=\"H5414\"* portions. So|strong=\"H5414\"* they|strong=\"H5971\"* possessed|strong=\"H3423\"* the|strong=\"H5414\"* land of|strong=\"H4428\"* Sihon|strong=\"H5511\"*, even the|strong=\"H5414\"* land of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Heshbon|strong=\"H2809\"*, and|strong=\"H4428\"* the|strong=\"H5414\"* land of|strong=\"H4428\"* Og|strong=\"H5747\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"*." + }, + { + "verseNum": 23, + "text": "You|strong=\"H7235\"* also|strong=\"H1121\"* multiplied|strong=\"H7235\"* their|strong=\"H3423\"* children|strong=\"H1121\"* as|strong=\"H1121\"* the|strong=\"H3423\"* stars|strong=\"H3556\"* of|strong=\"H1121\"* the|strong=\"H3423\"* sky|strong=\"H8064\"*, and|strong=\"H1121\"* brought them|strong=\"H3423\"* into|strong=\"H3423\"* the|strong=\"H3423\"* land|strong=\"H8064\"* concerning which you|strong=\"H7235\"* said to|strong=\"H1121\"* their|strong=\"H3423\"* fathers that|strong=\"H1121\"* they|strong=\"H3423\"* should go in|strong=\"H1121\"* to|strong=\"H1121\"* possess|strong=\"H3423\"* it|strong=\"H3423\"*." + }, + { + "verseNum": 24, + "text": "“So|strong=\"H6213\"* the|strong=\"H6440\"* children|strong=\"H1121\"* went|strong=\"H5971\"* in|strong=\"H3427\"* and|strong=\"H1121\"* possessed|strong=\"H3423\"* the|strong=\"H6440\"* land|strong=\"H6440\"*; and|strong=\"H1121\"* you|strong=\"H5414\"* subdued|strong=\"H3665\"* before|strong=\"H6440\"* them|strong=\"H5414\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, the|strong=\"H6440\"* Canaanites|strong=\"H3669\"*, and|strong=\"H1121\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H6213\"* their|strong=\"H5414\"* hands|strong=\"H3027\"*, with|strong=\"H6213\"* their|strong=\"H5414\"* kings|strong=\"H4428\"* and|strong=\"H1121\"* the|strong=\"H6440\"* peoples|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, that|strong=\"H5971\"* they|strong=\"H6213\"* might|strong=\"H1121\"* do|strong=\"H6213\"* with|strong=\"H6213\"* them|strong=\"H5414\"* as|strong=\"H6213\"* they|strong=\"H6213\"* pleased|strong=\"H7522\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"H3920\"* took|strong=\"H3920\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"* and|strong=\"H1419\"* a|strong=\"H3068\"* rich|strong=\"H8082\"* land, and|strong=\"H1419\"* possessed|strong=\"H3423\"* houses|strong=\"H1004\"* full|strong=\"H4392\"* of|strong=\"H1004\"* all|strong=\"H3605\"* good|strong=\"H2898\"* things|strong=\"H1419\"*, cisterns dug out|strong=\"H3423\"*, vineyards|strong=\"H3754\"*, olive|strong=\"H2132\"* groves|strong=\"H2132\"*, and|strong=\"H1419\"* fruit|strong=\"H3978\"* trees|strong=\"H6086\"* in|strong=\"H1004\"* abundance|strong=\"H7230\"*. So|strong=\"H7230\"* they|strong=\"H3920\"* ate, were|strong=\"H1419\"* filled|strong=\"H7646\"*, became|strong=\"H7646\"* fat|strong=\"H8080\"*, and|strong=\"H1419\"* delighted|strong=\"H5727\"* themselves in|strong=\"H1004\"* your|strong=\"H3605\"* great|strong=\"H1419\"* goodness|strong=\"H2898\"*." + }, + { + "verseNum": 26, + "text": "“Nevertheless they|strong=\"H6213\"* were|strong=\"H5030\"* disobedient|strong=\"H4784\"* and|strong=\"H7725\"* rebelled|strong=\"H4784\"* against|strong=\"H4784\"* you|strong=\"H7725\"*, cast|strong=\"H7993\"* your|strong=\"H7725\"* law|strong=\"H8451\"* behind their|strong=\"H7725\"* back|strong=\"H7725\"*, killed|strong=\"H2026\"* your|strong=\"H7725\"* prophets|strong=\"H5030\"* that|strong=\"H5030\"* testified|strong=\"H5749\"* against|strong=\"H4784\"* them|strong=\"H7725\"* to|strong=\"H7725\"* turn|strong=\"H7725\"* them|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H7725\"*, and|strong=\"H7725\"* they|strong=\"H6213\"* committed|strong=\"H6213\"* awful blasphemies|strong=\"H5007\"*." + }, + { + "verseNum": 27, + "text": "Therefore you|strong=\"H5414\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H8085\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* their|strong=\"H5414\"* adversaries|strong=\"H6862\"*, who|strong=\"H7227\"* distressed|strong=\"H3334\"* them|strong=\"H5414\"*. In|strong=\"H8085\"* the|strong=\"H8085\"* time|strong=\"H6256\"* of|strong=\"H3027\"* their|strong=\"H5414\"* trouble|strong=\"H6869\"*, when|strong=\"H6256\"* they|strong=\"H6256\"* cried|strong=\"H6817\"* to|strong=\"H6256\"* you|strong=\"H5414\"*, you|strong=\"H5414\"* heard|strong=\"H8085\"* from|strong=\"H3027\"* heaven|strong=\"H8064\"*; and|strong=\"H8064\"* according|strong=\"H3027\"* to|strong=\"H6256\"* your|strong=\"H5414\"* manifold|strong=\"H7227\"* mercies|strong=\"H7356\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* saviors who|strong=\"H7227\"* saved|strong=\"H3467\"* them|strong=\"H5414\"* out|strong=\"H5414\"* of|strong=\"H3027\"* the|strong=\"H8085\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* their|strong=\"H5414\"* adversaries|strong=\"H6862\"*." + }, + { + "verseNum": 28, + "text": "But|strong=\"H5800\"* after|strong=\"H6256\"* they|strong=\"H6256\"* had|strong=\"H3027\"* rest|strong=\"H5117\"*, they|strong=\"H6256\"* did|strong=\"H6213\"* evil|strong=\"H7451\"* again|strong=\"H7725\"* before|strong=\"H6440\"* you|strong=\"H6440\"*; therefore|strong=\"H6213\"* you|strong=\"H6440\"* left|strong=\"H5800\"* them|strong=\"H7725\"* in|strong=\"H6213\"* the|strong=\"H6440\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* their|strong=\"H6440\"* enemies|strong=\"H3027\"*, so|strong=\"H6213\"* that|strong=\"H8085\"* they|strong=\"H6256\"* had|strong=\"H3027\"* the|strong=\"H6440\"* dominion|strong=\"H7287\"* over|strong=\"H3027\"* them|strong=\"H7725\"*; yet|strong=\"H6256\"* when|strong=\"H6256\"* they|strong=\"H6256\"* returned|strong=\"H7725\"* and|strong=\"H7725\"* cried|strong=\"H2199\"* to|strong=\"H7725\"* you|strong=\"H6440\"*, you|strong=\"H6440\"* heard|strong=\"H8085\"* from|strong=\"H7725\"* heaven|strong=\"H8064\"*; and|strong=\"H7725\"* many|strong=\"H7227\"* times|strong=\"H6256\"* you|strong=\"H6440\"* delivered|strong=\"H5337\"* them|strong=\"H7725\"* according|strong=\"H3027\"* to|strong=\"H7725\"* your|strong=\"H6440\"* mercies|strong=\"H7356\"*," + }, + { + "verseNum": 29, + "text": "and|strong=\"H7725\"* testified|strong=\"H5749\"* against|strong=\"H2398\"* them|strong=\"H5414\"*, that|strong=\"H8085\"* you|strong=\"H5414\"* might|strong=\"H4941\"* bring|strong=\"H7725\"* them|strong=\"H5414\"* again|strong=\"H7725\"* to|strong=\"H7725\"* your|strong=\"H5414\"* law|strong=\"H8451\"*. Yet|strong=\"H3808\"* they|strong=\"H1992\"* were|strong=\"H1992\"* arrogant|strong=\"H2102\"*, and|strong=\"H7725\"* didn’t listen|strong=\"H8085\"* to|strong=\"H7725\"* your|strong=\"H5414\"* commandments|strong=\"H4687\"*, but|strong=\"H3808\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* your|strong=\"H5414\"* ordinances|strong=\"H4941\"* (which|strong=\"H1992\"* if|strong=\"H2398\"* a|strong=\"H3068\"* man does|strong=\"H6213\"*, he|strong=\"H6213\"* shall|strong=\"H3808\"* live|strong=\"H2421\"* in|strong=\"H6213\"* them|strong=\"H5414\"*), turned|strong=\"H7725\"* their|strong=\"H5414\"* backs|strong=\"H6203\"*, stiffened|strong=\"H7185\"* their|strong=\"H5414\"* neck|strong=\"H6203\"*, and|strong=\"H7725\"* would|strong=\"H6213\"* not|strong=\"H3808\"* hear|strong=\"H8085\"*." + }, + { + "verseNum": 30, + "text": "Yet|strong=\"H3808\"* many|strong=\"H7227\"* years|strong=\"H8141\"* you|strong=\"H5414\"* put|strong=\"H5414\"* up|strong=\"H5414\"* with|strong=\"H5921\"* them|strong=\"H5414\"*, and|strong=\"H3027\"* testified|strong=\"H5749\"* against|strong=\"H5921\"* them|strong=\"H5414\"* by|strong=\"H3027\"* your|strong=\"H5414\"* Spirit|strong=\"H7307\"* through|strong=\"H3027\"* your|strong=\"H5414\"* prophets|strong=\"H5030\"*. Yet|strong=\"H3808\"* they|strong=\"H3808\"* would|strong=\"H5971\"* not|strong=\"H3808\"* listen. Therefore|strong=\"H5921\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* peoples|strong=\"H5971\"* of|strong=\"H3027\"* the|strong=\"H5921\"* lands." + }, + { + "verseNum": 31, + "text": "“Nevertheless|strong=\"H3588\"* in|strong=\"H6213\"* your|strong=\"H6213\"* manifold|strong=\"H7227\"* mercies|strong=\"H7356\"* you|strong=\"H3588\"* didn’t make|strong=\"H6213\"* a|strong=\"H3068\"* full|strong=\"H7227\"* end|strong=\"H3617\"* of|strong=\"H6213\"* them|strong=\"H6213\"*, nor|strong=\"H3808\"* forsake|strong=\"H5800\"* them|strong=\"H6213\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H7227\"* a|strong=\"H3068\"* gracious|strong=\"H2587\"* and|strong=\"H6213\"* merciful|strong=\"H7349\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 32, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, our|strong=\"H3605\"* God, the|strong=\"H3605\"* great|strong=\"H1419\"*, the|strong=\"H3605\"* mighty|strong=\"H1368\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* awesome|strong=\"H3372\"* God, who|strong=\"H3605\"* keeps|strong=\"H8104\"* covenant|strong=\"H1285\"* and|strong=\"H4428\"* loving kindness|strong=\"H2617\"*, don’t let|strong=\"H6258\"* all|strong=\"H3605\"* the|strong=\"H3605\"* travail|strong=\"H8513\"* seem|strong=\"H8513\"* little|strong=\"H4591\"* before|strong=\"H6440\"* you|strong=\"H6440\"* that|strong=\"H5971\"* has|strong=\"H4428\"* come|strong=\"H4672\"* on|strong=\"H3117\"* us|strong=\"H6440\"*, on|strong=\"H3117\"* our|strong=\"H3605\"* kings|strong=\"H4428\"*, on|strong=\"H3117\"* our|strong=\"H3605\"* princes|strong=\"H8269\"*, on|strong=\"H3117\"* our|strong=\"H3605\"* priests|strong=\"H3548\"*, on|strong=\"H3117\"* our|strong=\"H3605\"* prophets|strong=\"H5030\"*, on|strong=\"H3117\"* our|strong=\"H3605\"* fathers, and|strong=\"H4428\"* on|strong=\"H3117\"* all|strong=\"H3605\"* your|strong=\"H3605\"* people|strong=\"H5971\"*, since|strong=\"H3117\"* the|strong=\"H3605\"* time|strong=\"H3117\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Assyria to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 33, + "text": "However|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H6662\"* just|strong=\"H6662\"* in|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3588\"* has|strong=\"H3588\"* come on|strong=\"H5921\"* us|strong=\"H5921\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3605\"* dealt|strong=\"H6213\"* truly|strong=\"H3588\"*, but|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3605\"* done|strong=\"H6213\"* wickedly|strong=\"H7561\"*." + }, + { + "verseNum": 34, + "text": "Also|strong=\"H6213\"* our|strong=\"H6213\"* kings|strong=\"H4428\"*, our|strong=\"H6213\"* princes|strong=\"H8269\"*, our|strong=\"H6213\"* priests|strong=\"H3548\"*, and|strong=\"H4428\"* our|strong=\"H6213\"* fathers have|strong=\"H3548\"* not|strong=\"H3808\"* kept|strong=\"H6213\"* your|strong=\"H6213\"* law|strong=\"H8451\"*, nor|strong=\"H3808\"* listened|strong=\"H7181\"* to|strong=\"H6213\"* your|strong=\"H6213\"* commandments|strong=\"H4687\"* and|strong=\"H4428\"* your|strong=\"H6213\"* testimonies|strong=\"H5715\"* with|strong=\"H6213\"* which|strong=\"H3548\"* you|strong=\"H6213\"* testified|strong=\"H5749\"* against|strong=\"H5749\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 35, + "text": "For|strong=\"H6440\"* they|strong=\"H1992\"* have|strong=\"H5414\"* not|strong=\"H3808\"* served|strong=\"H5647\"* you|strong=\"H5414\"* in|strong=\"H7227\"* their|strong=\"H5414\"* kingdom|strong=\"H4438\"*, and|strong=\"H7725\"* in|strong=\"H7227\"* your|strong=\"H5414\"* great|strong=\"H7227\"* goodness|strong=\"H2898\"* that|strong=\"H5414\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"*, and|strong=\"H7725\"* in|strong=\"H7227\"* the|strong=\"H6440\"* large|strong=\"H7342\"* and|strong=\"H7725\"* rich|strong=\"H8082\"* land|strong=\"H6440\"* which|strong=\"H1992\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* before|strong=\"H6440\"* them|strong=\"H5414\"*. They|strong=\"H1992\"* didn’t turn|strong=\"H7725\"* from|strong=\"H7725\"* their|strong=\"H5414\"* wicked|strong=\"H7451\"* works|strong=\"H4611\"*." + }, + { + "verseNum": 36, + "text": "“Behold|strong=\"H2009\"*, we|strong=\"H3068\"* are|strong=\"H3117\"* servants|strong=\"H5650\"* today|strong=\"H3117\"*, and|strong=\"H3117\"* as|strong=\"H3117\"* for|strong=\"H5921\"* the|strong=\"H5921\"* land that|strong=\"H3117\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5921\"* our|strong=\"H5414\"* fathers to|strong=\"H5921\"* eat its|strong=\"H5414\"* fruit|strong=\"H6529\"* and|strong=\"H3117\"* its|strong=\"H5414\"* good|strong=\"H2898\"*, behold|strong=\"H2009\"*, we|strong=\"H3068\"* are|strong=\"H3117\"* servants|strong=\"H5650\"* in|strong=\"H5921\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 37, + "text": "It|strong=\"H5414\"* yields|strong=\"H5414\"* much|strong=\"H7235\"* increase|strong=\"H8393\"* to|strong=\"H5921\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* whom you|strong=\"H5414\"* have|strong=\"H5414\"* set|strong=\"H5414\"* over|strong=\"H5921\"* us|strong=\"H5414\"* because|strong=\"H5921\"* of|strong=\"H4428\"* our|strong=\"H5414\"* sins|strong=\"H2403\"*. Also|strong=\"H4428\"* they|strong=\"H5921\"* have|strong=\"H5414\"* power|strong=\"H4910\"* over|strong=\"H5921\"* our|strong=\"H5414\"* bodies|strong=\"H1472\"* and|strong=\"H4428\"* over|strong=\"H5921\"* our|strong=\"H5414\"* livestock, at|strong=\"H5921\"* their|strong=\"H5414\"* pleasure|strong=\"H7522\"*, and|strong=\"H4428\"* we|strong=\"H3068\"* are|strong=\"H4428\"* in|strong=\"H5921\"* great|strong=\"H1419\"* distress|strong=\"H6869\"*." + }, + { + "verseNum": 38, + "text": "Yet for all this, we|strong=\"H3068\"* make a|strong=\"H3068\"* sure covenant, and write it; and our princes, our Levites, and our priests, seal it.”" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H5921\"* those|strong=\"H3605\"* who|strong=\"H3605\"* sealed|strong=\"H2856\"* were|strong=\"H3881\"*: Nehemiah the|strong=\"H3605\"* governor|strong=\"H8269\"*, the|strong=\"H3605\"* son of|strong=\"H8269\"* Hacaliah, and|strong=\"H3548\"* Zedekiah," + }, + { + "verseNum": 2, + "text": "Seraiah, Azariah, Jeremiah," + }, + { + "verseNum": 3, + "text": "Pashhur, Amariah, Malchijah," + }, + { + "verseNum": 4, + "text": "Hattush, Shebaniah, Malluch," + }, + { + "verseNum": 5, + "text": "Harim, Meremoth, Obadiah," + }, + { + "verseNum": 6, + "text": "Daniel, Ginnethon, Baruch," + }, + { + "verseNum": 7, + "text": "Meshullam, Abijah, Mijamin," + }, + { + "verseNum": 8, + "text": "Maaziah, Bilgai, and|strong=\"H4918\"* Shemaiah. These were the|strong=\"H4918\"* priests." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3548\"* Levites: Jeshua the|strong=\"H3548\"* son of|strong=\"H3548\"* Azaniah, Binnui of|strong=\"H3548\"* the|strong=\"H3548\"* sons of|strong=\"H3548\"* Henadad, Kadmiel;" + }, + { + "verseNum": 10, + "text": "and|strong=\"H1121\"* their|strong=\"H3881\"* brothers|strong=\"H1121\"*, Shebaniah, Hodiah, Kelita, Pelaiah, Hanan," + }, + { + "verseNum": 11, + "text": "Mica, Rehob, Hashabiah," + }, + { + "verseNum": 12, + "text": "Zaccur, Sherebiah, Shebaniah," + }, + { + "verseNum": 13, + "text": "Hodiah, Bani, and|strong=\"H8274\"* Beninu." + }, + { + "verseNum": 14, + "text": "The|strong=\"H1137\"* chiefs of the|strong=\"H1137\"* people: Parosh, Pahathmoab, Elam, Zattu, Bani|strong=\"H1137\"*," + }, + { + "verseNum": 15, + "text": "Bunni, Azgad, Bebai," + }, + { + "verseNum": 16, + "text": "Adonijah, Bigvai, Adin," + }, + { + "verseNum": 17, + "text": "Ater, Hezekiah, Azzur," + }, + { + "verseNum": 18, + "text": "Hodiah, Hashum, Bezai," + }, + { + "verseNum": 19, + "text": "Hariph, Anathoth, Nobai," + }, + { + "verseNum": 20, + "text": "Magpiash, Meshullam, Hezir," + }, + { + "verseNum": 21, + "text": "Meshezabel, Zadok, Jaddua," + }, + { + "verseNum": 22, + "text": "Pelatiah, Hanan, Anaiah," + }, + { + "verseNum": 23, + "text": "Hoshea, Hananiah, Hasshub," + }, + { + "verseNum": 24, + "text": "Hallohesh, Pilha, Shobek," + }, + { + "verseNum": 25, + "text": "Rehum, Hashabnah, Maaseiah," + }, + { + "verseNum": 26, + "text": "Ahiah, Hanan, Anan," + }, + { + "verseNum": 27, + "text": "Malluch, Harim, and Baanah." + }, + { + "verseNum": 28, + "text": "The|strong=\"H1196\"* rest of the|strong=\"H1196\"* people, the|strong=\"H1196\"* priests, the|strong=\"H1196\"* Levites, the|strong=\"H1196\"* gatekeepers, the|strong=\"H1196\"* singers, the|strong=\"H1196\"* temple servants, and|strong=\"H2766\"* all those who had separated themselves from the|strong=\"H1196\"* peoples of the|strong=\"H1196\"* lands to the|strong=\"H1196\"* law of God, their wives, their sons, and|strong=\"H2766\"* their daughters—everyone who had knowledge and|strong=\"H2766\"* understanding—" + }, + { + "verseNum": 29, + "text": "joined with|strong=\"H3045\"* their|strong=\"H3605\"* brothers|strong=\"H1121\"*, their|strong=\"H3605\"* nobles, and|strong=\"H1121\"* entered into|strong=\"H1323\"* a|strong=\"H3068\"* curse and|strong=\"H1121\"* into|strong=\"H1323\"* an|strong=\"H5971\"* oath, to|strong=\"H1121\"* walk in|strong=\"H1121\"* God’s law|strong=\"H8451\"*, which|strong=\"H5971\"* was|strong=\"H1121\"* given by|strong=\"H3605\"* Moses the|strong=\"H3605\"* servant of|strong=\"H1121\"* God, and|strong=\"H1121\"* to|strong=\"H1121\"* observe|strong=\"H3045\"* and|strong=\"H1121\"* do|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* commandments of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* our|strong=\"H3605\"* Lord, and|strong=\"H1121\"* his|strong=\"H3605\"* ordinances and|strong=\"H1121\"* his|strong=\"H3605\"* statutes;" + }, + { + "verseNum": 30, + "text": "and|strong=\"H4872\"* that|strong=\"H3605\"* we|strong=\"H3068\"* would|strong=\"H3068\"* not|strong=\"H6213\"* give|strong=\"H5414\"* our|strong=\"H3068\"* daughters to|strong=\"H3068\"* the|strong=\"H3605\"* peoples of|strong=\"H3068\"* the|strong=\"H3605\"* land, nor take|strong=\"H2388\"* their|strong=\"H3605\"* daughters for|strong=\"H5921\"* our|strong=\"H3068\"* sons;" + }, + { + "verseNum": 31, + "text": "and|strong=\"H1121\"* if|strong=\"H1121\"* the|strong=\"H5414\"* peoples|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H5414\"* land bring|strong=\"H3947\"* wares or|strong=\"H3808\"* any|strong=\"H5414\"* grain on|strong=\"H5414\"* the|strong=\"H5414\"* Sabbath day to|strong=\"H5414\"* sell|strong=\"H5414\"*, that|strong=\"H5971\"* we|strong=\"H3068\"* would|strong=\"H5971\"* not|strong=\"H3808\"* buy|strong=\"H3947\"* from|strong=\"H1121\"* them|strong=\"H5414\"* on|strong=\"H5414\"* the|strong=\"H5414\"* Sabbath, or|strong=\"H3808\"* on|strong=\"H5414\"* a|strong=\"H3068\"* holy day; and|strong=\"H1121\"* that|strong=\"H5971\"* we|strong=\"H3068\"* would|strong=\"H5971\"* forego the|strong=\"H5414\"* seventh year|strong=\"H1121\"* crops and|strong=\"H1121\"* the|strong=\"H5414\"* exaction of|strong=\"H1121\"* every|strong=\"H3947\"* debt." + }, + { + "verseNum": 32, + "text": "Also|strong=\"H3027\"* we|strong=\"H3068\"* made|strong=\"H8141\"* ordinances for|strong=\"H3027\"* ourselves, to|strong=\"H3027\"* charge|strong=\"H3027\"* ourselves yearly|strong=\"H3117\"* with|strong=\"H3117\"* the|strong=\"H3605\"* third part|strong=\"H1992\"* of|strong=\"H3117\"* a|strong=\"H3068\"* shekel+ 10:32 A shekel is about 10 grams or about 0.35 ounces.* for|strong=\"H3027\"* the|strong=\"H3605\"* service|strong=\"H3027\"* of|strong=\"H3117\"* the|strong=\"H3605\"* house of|strong=\"H3117\"* our|strong=\"H3605\"* God|strong=\"H3808\"*:" + }, + { + "verseNum": 33, + "text": "for|strong=\"H5921\"* the|strong=\"H5921\"* show|strong=\"H5414\"* bread, for|strong=\"H5921\"* the|strong=\"H5921\"* continual meal offering, for|strong=\"H5921\"* the|strong=\"H5921\"* continual burnt offering, for|strong=\"H5921\"* the|strong=\"H5921\"* Sabbaths, for|strong=\"H5921\"* the|strong=\"H5921\"* new moons, for|strong=\"H5921\"* the|strong=\"H5921\"* set|strong=\"H5414\"* feasts, for|strong=\"H5921\"* the|strong=\"H5921\"* holy things|strong=\"H4687\"*, for|strong=\"H5921\"* the|strong=\"H5921\"* sin offerings to|strong=\"H5921\"* make|strong=\"H5414\"* atonement for|strong=\"H5921\"* Israel, and|strong=\"H1004\"* for|strong=\"H5921\"* all|strong=\"H5414\"* the|strong=\"H5921\"* work|strong=\"H5656\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* our|strong=\"H5414\"* God|strong=\"H5414\"*." + }, + { + "verseNum": 34, + "text": "We|strong=\"H3605\"*, the|strong=\"H3605\"* priests, the|strong=\"H3605\"* Levites, and|strong=\"H3478\"* the|strong=\"H3605\"* people, cast lots for|strong=\"H5921\"* the|strong=\"H3605\"* wood offering|strong=\"H4503\"*, to|strong=\"H3478\"* bring it|strong=\"H5921\"* into|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* our|strong=\"H3605\"* God, according|strong=\"H5921\"* to|strong=\"H3478\"* our|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, at|strong=\"H5921\"* times|strong=\"H4150\"* appointed|strong=\"H4150\"* year by|strong=\"H5921\"* year, to|strong=\"H3478\"* burn on|strong=\"H5921\"* Yahweh|strong=\"H3068\"* our|strong=\"H3605\"* God’s altar, as|strong=\"H1004\"* it|strong=\"H5921\"* is|strong=\"H3478\"* written in|strong=\"H5921\"* the|strong=\"H3605\"* law;" + }, + { + "verseNum": 35, + "text": "and|strong=\"H3068\"* to|strong=\"H3068\"* bring|strong=\"H3881\"* the|strong=\"H5921\"* first fruits of|strong=\"H1004\"* our|strong=\"H3068\"* ground and|strong=\"H3068\"* the|strong=\"H5921\"* first fruits of|strong=\"H1004\"* all|strong=\"H5921\"* fruit|strong=\"H6086\"* of|strong=\"H1004\"* all|strong=\"H5921\"* kinds of|strong=\"H1004\"* trees|strong=\"H6086\"*, year|strong=\"H8141\"* by|strong=\"H5921\"* year|strong=\"H8141\"*, to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*;" + }, + { + "verseNum": 36, + "text": "also|strong=\"H3068\"* the|strong=\"H3605\"* firstborn of|strong=\"H1004\"* our|strong=\"H3068\"* sons and|strong=\"H3068\"* of|strong=\"H1004\"* our|strong=\"H3068\"* livestock, as|strong=\"H3068\"* it|strong=\"H3068\"* is|strong=\"H3068\"* written in|strong=\"H8141\"* the|strong=\"H3605\"* law, and|strong=\"H3068\"* the|strong=\"H3605\"* firstborn of|strong=\"H1004\"* our|strong=\"H3068\"* herds and|strong=\"H3068\"* of|strong=\"H1004\"* our|strong=\"H3068\"* flocks, to|strong=\"H3068\"* bring to|strong=\"H3068\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* the|strong=\"H3605\"* priests who|strong=\"H3605\"* minister in|strong=\"H8141\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* our|strong=\"H3068\"* God|strong=\"H3068\"*;" + }, + { + "verseNum": 37, + "text": "and|strong=\"H1121\"* that|strong=\"H3548\"* we|strong=\"H3068\"* should|strong=\"H3548\"* bring the|strong=\"H3548\"* first|strong=\"H1121\"* fruits of|strong=\"H1121\"* our dough, our wave offerings, the|strong=\"H3548\"* fruit of|strong=\"H1121\"* all kinds of|strong=\"H1121\"* trees, and|strong=\"H1121\"* the|strong=\"H3548\"* new wine and|strong=\"H1121\"* the|strong=\"H3548\"* oil, to|strong=\"H1121\"* the|strong=\"H3548\"* priests|strong=\"H3548\"*, to|strong=\"H1121\"* the|strong=\"H3548\"* rooms|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H3548\"* house|strong=\"H1004\"* of|strong=\"H1121\"* our God; and|strong=\"H1121\"* the|strong=\"H3548\"* tithes of|strong=\"H1121\"* our ground to|strong=\"H1121\"* the|strong=\"H3548\"* Levites|strong=\"H1121\"*; for|strong=\"H1004\"* they|strong=\"H3789\"*, the|strong=\"H3548\"* Levites|strong=\"H1121\"*, take|strong=\"H1121\"* the|strong=\"H3548\"* tithes in|strong=\"H1004\"* all our farming villages." + }, + { + "verseNum": 38, + "text": "The|strong=\"H3605\"* priest|strong=\"H3548\"*, the|strong=\"H3605\"* descendent of|strong=\"H1004\"* Aaron, shall|strong=\"H3548\"* be|strong=\"H6086\"* with|strong=\"H1004\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* when|strong=\"H5656\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* take|strong=\"H6237\"* tithes|strong=\"H4643\"*. The|strong=\"H3605\"* Levites|strong=\"H3881\"* shall|strong=\"H3548\"* bring|strong=\"H3881\"* up|strong=\"H3605\"* the|strong=\"H3605\"* tithe|strong=\"H4643\"* of|strong=\"H1004\"* the|strong=\"H3605\"* tithes|strong=\"H4643\"* to|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* our|strong=\"H3605\"* God, to|strong=\"H1004\"* the|strong=\"H3605\"* rooms|strong=\"H3957\"*, into|strong=\"H5892\"* the|strong=\"H3605\"* treasure house|strong=\"H1004\"*." + }, + { + "verseNum": 39, + "text": "For|strong=\"H1004\"* the|strong=\"H5927\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel and|strong=\"H1121\"* the|strong=\"H5927\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3881\"* shall|strong=\"H3548\"* bring|strong=\"H5927\"* the|strong=\"H5927\"* wave offering|strong=\"H5927\"* of|strong=\"H1121\"* the|strong=\"H5927\"* grain, of|strong=\"H1121\"* the|strong=\"H5927\"* new wine, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5927\"* oil, to|strong=\"H5927\"* the|strong=\"H5927\"* rooms|strong=\"H3957\"* where|strong=\"H1004\"* the|strong=\"H5927\"* vessels of|strong=\"H1121\"* the|strong=\"H5927\"* sanctuary|strong=\"H1004\"* are|strong=\"H1121\"*, and|strong=\"H1121\"* the|strong=\"H5927\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* minister, with|strong=\"H5973\"* the|strong=\"H5927\"* gatekeepers and|strong=\"H1121\"* the|strong=\"H5927\"* singers. We will|strong=\"H1961\"* not|strong=\"H1961\"* forsake the|strong=\"H5927\"* house|strong=\"H1004\"* of|strong=\"H1121\"* our|strong=\"H1961\"* God." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H4480\"* princes|strong=\"H8269\"* of|strong=\"H3027\"* the|strong=\"H4480\"* people|strong=\"H5971\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*. The|strong=\"H4480\"* rest|strong=\"H7605\"* of|strong=\"H3027\"* the|strong=\"H4480\"* people|strong=\"H5971\"* also|strong=\"H3027\"* cast|strong=\"H5307\"* lots|strong=\"H1486\"* to|strong=\"H3027\"* bring|strong=\"H5307\"* one|strong=\"H4480\"* of|strong=\"H3027\"* ten|strong=\"H6235\"* to|strong=\"H3027\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*, the|strong=\"H4480\"* holy|strong=\"H6944\"* city|strong=\"H5892\"*, and|strong=\"H3027\"* nine|strong=\"H8672\"* parts|strong=\"H3027\"* in|strong=\"H3427\"* the|strong=\"H4480\"* other|strong=\"H7605\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* people|strong=\"H5971\"* blessed|strong=\"H1288\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H5971\"* who|strong=\"H3605\"* willingly|strong=\"H5068\"* offered|strong=\"H5068\"* themselves to|strong=\"H3389\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 3, + "text": "Now|strong=\"H3478\"* these|strong=\"H3881\"* are|strong=\"H1121\"* the|strong=\"H5650\"* chiefs|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5650\"* province|strong=\"H4082\"* who|strong=\"H3548\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*; but|strong=\"H3881\"* in|strong=\"H3427\"* the|strong=\"H5650\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, everyone lived|strong=\"H3427\"* in|strong=\"H3427\"* his|strong=\"H3478\"* possession in|strong=\"H3427\"* their|strong=\"H3427\"* cities|strong=\"H5892\"*—Israel|strong=\"H3478\"*, the|strong=\"H5650\"* priests|strong=\"H3548\"*, the|strong=\"H5650\"* Levites|strong=\"H3881\"*, the|strong=\"H5650\"* temple|strong=\"H5411\"* servants|strong=\"H5650\"*, and|strong=\"H1121\"* the|strong=\"H5650\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*’s servants|strong=\"H5650\"*." + }, + { + "verseNum": 4, + "text": "Some of|strong=\"H1121\"* the|strong=\"H3427\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3427\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*. Of|strong=\"H1121\"* the|strong=\"H3427\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*: Athaiah|strong=\"H6265\"* the|strong=\"H3427\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uzziah|strong=\"H5818\"*, the|strong=\"H3427\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zechariah|strong=\"H2148\"*, the|strong=\"H3427\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amariah, the|strong=\"H3427\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shephatiah|strong=\"H8203\"*, the|strong=\"H3427\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mahalalel|strong=\"H4111\"*, of|strong=\"H1121\"* the|strong=\"H3427\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Perez|strong=\"H6557\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"H1121\"* Maaseiah|strong=\"H4641\"* the|strong=\"H1263\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Baruch|strong=\"H1263\"*, the|strong=\"H1263\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Colhozeh, the|strong=\"H1263\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hazaiah|strong=\"H2382\"*, the|strong=\"H1263\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Adaiah|strong=\"H5718\"*, the|strong=\"H1263\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joiarib|strong=\"H3114\"*, the|strong=\"H1263\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zechariah|strong=\"H2148\"*, the|strong=\"H1263\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1263\"* Shilonite." + }, + { + "verseNum": 6, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Perez|strong=\"H6557\"* who|strong=\"H3605\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* were|strong=\"H1121\"* four hundred|strong=\"H3967\"* sixty-eight valiant|strong=\"H2428\"* men|strong=\"H1121\"*." + }, + { + "verseNum": 7, + "text": "These are|strong=\"H1121\"* the|strong=\"H3470\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*: Sallu|strong=\"H5543\"* the|strong=\"H3470\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshullam|strong=\"H4918\"*, the|strong=\"H3470\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joed|strong=\"H3133\"*, the|strong=\"H3470\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pedaiah|strong=\"H6305\"*, the|strong=\"H3470\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kolaiah|strong=\"H6964\"*, the|strong=\"H3470\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maaseiah|strong=\"H4641\"*, the|strong=\"H3470\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ithiel, the|strong=\"H3470\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeshaiah|strong=\"H3470\"*." + }, + { + "verseNum": 8, + "text": "After him Gabbai|strong=\"H1373\"* and|strong=\"H3967\"* Sallai|strong=\"H5543\"*, nine|strong=\"H8672\"* hundred|strong=\"H3967\"* twenty-eight|strong=\"H6242\"*." + }, + { + "verseNum": 9, + "text": "Joel|strong=\"H3100\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zichri|strong=\"H2147\"* was|strong=\"H5892\"* their|strong=\"H5921\"* overseer|strong=\"H6496\"*; and|strong=\"H1121\"* Judah|strong=\"H3063\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hassenuah|strong=\"H5574\"* was|strong=\"H5892\"* second|strong=\"H4932\"* over|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 10, + "text": "Of|strong=\"H1121\"* the|strong=\"H4480\"* priests|strong=\"H3548\"*: Jedaiah|strong=\"H3048\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joiarib|strong=\"H3114\"*, Jachin|strong=\"H3199\"*," + }, + { + "verseNum": 11, + "text": "Seraiah|strong=\"H8304\"* the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshullam|strong=\"H4918\"*, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meraioth|strong=\"H4812\"*, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub, the|strong=\"H6659\"* ruler|strong=\"H5057\"* of|strong=\"H1121\"* God’s house|strong=\"H1004\"*," + }, + { + "verseNum": 12, + "text": "and|strong=\"H3967\"* their|strong=\"H6213\"* brothers|strong=\"H1121\"* who|strong=\"H1121\"* did|strong=\"H6213\"* the|strong=\"H6213\"* work|strong=\"H4399\"* of|strong=\"H1121\"* the|strong=\"H6213\"* house|strong=\"H1004\"*, eight|strong=\"H8083\"* hundred|strong=\"H3967\"* twenty-two|strong=\"H6242\"*; and|strong=\"H3967\"* Adaiah|strong=\"H5718\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeroham|strong=\"H3395\"*, the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pelaliah|strong=\"H6421\"*, the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amzi, the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zechariah|strong=\"H2148\"*, the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pashhur|strong=\"H6583\"*, the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Malchijah|strong=\"H4441\"*," + }, + { + "verseNum": 13, + "text": "and|strong=\"H3967\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, chiefs|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ households, two|strong=\"H8147\"* hundred|strong=\"H3967\"* forty-two|strong=\"H8147\"*; and|strong=\"H3967\"* Amashsai|strong=\"H6023\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azarel|strong=\"H5832\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahzai, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshillemoth|strong=\"H4919\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Immer," + }, + { + "verseNum": 14, + "text": "and|strong=\"H3967\"* their|strong=\"H5921\"* brothers|strong=\"H1121\"*, mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*, one|strong=\"H1121\"* hundred|strong=\"H3967\"* twenty-eight|strong=\"H6242\"*; and|strong=\"H3967\"* their|strong=\"H5921\"* overseer|strong=\"H6496\"* was|strong=\"H1121\"* Zabdiel|strong=\"H2068\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Haggedolim." + }, + { + "verseNum": 15, + "text": "Of|strong=\"H1121\"* the|strong=\"H4480\"* Levites|strong=\"H3881\"*: Shemaiah|strong=\"H8098\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hasshub|strong=\"H2815\"*, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azrikam|strong=\"H5840\"*, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hashabiah|strong=\"H2811\"*, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bunni|strong=\"H1138\"*;" + }, + { + "verseNum": 16, + "text": "and|strong=\"H1004\"* Shabbethai|strong=\"H7678\"* and|strong=\"H1004\"* Jozabad|strong=\"H3107\"*, of|strong=\"H1004\"* the|strong=\"H5921\"* chiefs|strong=\"H7218\"* of|strong=\"H1004\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*, who|strong=\"H3881\"* had|strong=\"H3881\"* the|strong=\"H5921\"* oversight of|strong=\"H1004\"* the|strong=\"H5921\"* outward|strong=\"H2435\"* business|strong=\"H4399\"* of|strong=\"H1004\"* God’s house|strong=\"H1004\"*;" + }, + { + "verseNum": 17, + "text": "and|strong=\"H1121\"* Mattaniah|strong=\"H4983\"* the|strong=\"H3034\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mica, the|strong=\"H3034\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zabdi|strong=\"H2067\"*, the|strong=\"H3034\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asaph, who|strong=\"H1121\"* was|strong=\"H1121\"* the|strong=\"H3034\"* chief|strong=\"H7218\"* to|strong=\"H1121\"* begin|strong=\"H8462\"* the|strong=\"H3034\"* thanksgiving|strong=\"H3034\"* in|strong=\"H1121\"* prayer|strong=\"H8605\"*, and|strong=\"H1121\"* Bakbukiah|strong=\"H1229\"*, the|strong=\"H3034\"* second|strong=\"H4932\"* among|strong=\"H7218\"* his|strong=\"H4318\"* brothers|strong=\"H1121\"*; and|strong=\"H1121\"* Abda|strong=\"H5653\"* the|strong=\"H3034\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shammua|strong=\"H8051\"*, the|strong=\"H3034\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Galal|strong=\"H1559\"*, the|strong=\"H3034\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeduthun|strong=\"H3038\"*." + }, + { + "verseNum": 18, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* in|strong=\"H5892\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* city|strong=\"H5892\"* were|strong=\"H3881\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* eighty-four." + }, + { + "verseNum": 19, + "text": "Moreover the|strong=\"H8104\"* gatekeepers|strong=\"H7778\"*, Akkub|strong=\"H6126\"*, Talmon|strong=\"H2929\"*, and|strong=\"H3967\"* their|strong=\"H8104\"* brothers, who|strong=\"H8104\"* kept|strong=\"H8104\"* watch|strong=\"H8104\"* at|strong=\"H8147\"* the|strong=\"H8104\"* gates|strong=\"H8179\"*, were|strong=\"H8147\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* seventy-two." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3605\"* residue|strong=\"H7605\"* of|strong=\"H5892\"* Israel|strong=\"H3478\"*, of|strong=\"H5892\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, and|strong=\"H3063\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* were|strong=\"H3478\"* in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"*, everyone|strong=\"H3605\"* in|strong=\"H3478\"* his|strong=\"H3605\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"H5921\"* the|strong=\"H5921\"* temple|strong=\"H5411\"* servants|strong=\"H5411\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Ophel|strong=\"H6077\"*; and|strong=\"H3427\"* Ziha|strong=\"H6727\"* and|strong=\"H3427\"* Gishpa|strong=\"H1658\"* were|strong=\"H3427\"* over|strong=\"H5921\"* the|strong=\"H5921\"* temple|strong=\"H5411\"* servants|strong=\"H5411\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H5048\"* overseer|strong=\"H6496\"* also|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5048\"* Levites|strong=\"H3881\"* at|strong=\"H1004\"* Jerusalem|strong=\"H3389\"* was|strong=\"H1004\"* Uzzi|strong=\"H5813\"* the|strong=\"H5048\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bani|strong=\"H1137\"*, the|strong=\"H5048\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hashabiah|strong=\"H2811\"*, the|strong=\"H5048\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mattaniah|strong=\"H4983\"*, the|strong=\"H5048\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mica|strong=\"H4316\"*, of|strong=\"H1121\"* the|strong=\"H5048\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asaph, the|strong=\"H5048\"* singers|strong=\"H7891\"* responsible|strong=\"H5048\"* for|strong=\"H1004\"* the|strong=\"H5048\"* service|strong=\"H4399\"* of|strong=\"H1121\"* God’s house|strong=\"H1004\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* there|strong=\"H3117\"* was|strong=\"H1697\"* a|strong=\"H3068\"* commandment|strong=\"H4687\"* from|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* concerning|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H4428\"* a|strong=\"H3068\"* settled|strong=\"H5921\"* provision|strong=\"H1697\"* for|strong=\"H3588\"* the|strong=\"H5921\"* singers|strong=\"H7891\"*, as|strong=\"H1697\"* every|strong=\"H3117\"* day|strong=\"H3117\"* required|strong=\"H3117\"*." + }, + { + "verseNum": 24, + "text": "Pethahiah|strong=\"H6611\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshezabel|strong=\"H4898\"*, of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zerah|strong=\"H2226\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, was|strong=\"H1697\"* at|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s hand|strong=\"H3027\"* in|strong=\"H4428\"* all|strong=\"H3605\"* matters|strong=\"H1697\"* concerning|strong=\"H1697\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 25, + "text": "As|strong=\"H3427\"* for|strong=\"H3427\"* the|strong=\"H3427\"* villages|strong=\"H2691\"* with|strong=\"H3427\"* their|strong=\"H3427\"* fields|strong=\"H7704\"*, some of|strong=\"H1121\"* the|strong=\"H3427\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Kiriath Arba and|strong=\"H1121\"* its towns|strong=\"H1323\"*, in|strong=\"H3427\"* Dibon|strong=\"H1769\"* and|strong=\"H1121\"* its towns|strong=\"H1323\"*, in|strong=\"H3427\"* Jekabzeel|strong=\"H3343\"* and|strong=\"H1121\"* its villages|strong=\"H2691\"*," + }, + { + "verseNum": 26, + "text": "in Jeshua|strong=\"H3442\"*, in Moladah|strong=\"H4137\"*, Beth Pelet," + }, + { + "verseNum": 27, + "text": "in|strong=\"H1323\"* Hazar Shual, in|strong=\"H1323\"* Beersheba and|strong=\"H1323\"* its towns|strong=\"H1323\"*," + }, + { + "verseNum": 28, + "text": "in|strong=\"H1323\"* Ziklag|strong=\"H6860\"*, in|strong=\"H1323\"* Meconah|strong=\"H4368\"* and|strong=\"H1323\"* in|strong=\"H1323\"* its towns|strong=\"H1323\"*," + }, + { + "verseNum": 29, + "text": "in En Rimmon, in Zorah|strong=\"H6881\"*, in Jarmuth|strong=\"H3412\"*," + }, + { + "verseNum": 30, + "text": "Zanoah|strong=\"H2182\"*, Adullam|strong=\"H5725\"*, and|strong=\"H7704\"* their|strong=\"H5704\"* villages|strong=\"H2691\"*, Lachish|strong=\"H3923\"* and|strong=\"H7704\"* its|strong=\"H1516\"* fields|strong=\"H7704\"*, and|strong=\"H7704\"* Azekah|strong=\"H5825\"* and|strong=\"H7704\"* its|strong=\"H1516\"* towns|strong=\"H1323\"*. So|strong=\"H5704\"* they|strong=\"H5704\"* encamped|strong=\"H2583\"* from|strong=\"H5704\"* Beersheba to|strong=\"H5704\"* the|strong=\"H5704\"* valley|strong=\"H1516\"* of|strong=\"H1323\"* Hinnom|strong=\"H2011\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* also|strong=\"H1121\"* lived from|strong=\"H1121\"* Geba|strong=\"H1387\"* onward, at|strong=\"H1121\"* Michmash|strong=\"H4363\"* and|strong=\"H1121\"* Aija|strong=\"H5857\"*, and|strong=\"H1121\"* at|strong=\"H1121\"* Bethel|strong=\"H1008\"* and|strong=\"H1121\"* its towns|strong=\"H1323\"*," + }, + { + "verseNum": 32, + "text": "at Anathoth|strong=\"H6068\"*, Nob|strong=\"H5011\"*, Ananiah|strong=\"H6055\"*," + }, + { + "verseNum": 33, + "text": "Hazor|strong=\"H2674\"*, Ramah|strong=\"H7414\"*, Gittaim|strong=\"H1664\"*," + }, + { + "verseNum": 34, + "text": "Hadid|strong=\"H2307\"*, Zeboim|strong=\"H6650\"*, Neballat|strong=\"H5041\"*," + }, + { + "verseNum": 35, + "text": "Lod|strong=\"H3850\"*, and|strong=\"H1516\"* Ono, the valley|strong=\"H1516\"* of|strong=\"H1516\"* craftsmen|strong=\"H2791\"*." + }, + { + "verseNum": 36, + "text": "Of|strong=\"H4480\"* the|strong=\"H4480\"* Levites|strong=\"H3881\"*, certain divisions|strong=\"H4256\"* in|strong=\"H3063\"* Judah|strong=\"H3063\"* settled in|strong=\"H3063\"* Benjamin|strong=\"H1144\"*’s territory." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Now these|strong=\"H3881\"* are|strong=\"H1121\"* the|strong=\"H5927\"* priests|strong=\"H3548\"* and|strong=\"H1121\"* the|strong=\"H5927\"* Levites|strong=\"H3881\"* who|strong=\"H3548\"* went|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* Zerubbabel|strong=\"H2216\"* the|strong=\"H5927\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shealtiel|strong=\"H7597\"*, and|strong=\"H1121\"* Jeshua|strong=\"H3442\"*: Seraiah|strong=\"H8304\"*, Jeremiah|strong=\"H3414\"*, Ezra|strong=\"H5830\"*," + }, + { + "verseNum": 2, + "text": "Amariah, Malluch|strong=\"H4409\"*, Hattush|strong=\"H2407\"*," + }, + { + "verseNum": 3, + "text": "Shecaniah|strong=\"H7935\"*, Rehum|strong=\"H7348\"*, Meremoth|strong=\"H4822\"*," + }, + { + "verseNum": 4, + "text": "Iddo|strong=\"H5714\"*, Ginnethoi|strong=\"H1599\"*, Abijah," + }, + { + "verseNum": 5, + "text": "Mijamin|strong=\"H4326\"*, Maadiah|strong=\"H4573\"*, Bilgah|strong=\"H1083\"*," + }, + { + "verseNum": 6, + "text": "Shemaiah|strong=\"H8098\"*, Joiarib|strong=\"H3114\"*, Jedaiah|strong=\"H3048\"*," + }, + { + "verseNum": 7, + "text": "Sallu|strong=\"H5543\"*, Amok|strong=\"H5987\"*, Hilkiah|strong=\"H2518\"*, and|strong=\"H3117\"* Jedaiah|strong=\"H3048\"*. These|strong=\"H3117\"* were|strong=\"H3117\"* the|strong=\"H3117\"* chiefs|strong=\"H7218\"* of|strong=\"H3117\"* the|strong=\"H3117\"* priests|strong=\"H3548\"* and|strong=\"H3117\"* of|strong=\"H3117\"* their|strong=\"H3117\"* brothers in|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Jeshua|strong=\"H3442\"*." + }, + { + "verseNum": 8, + "text": "Moreover the|strong=\"H5921\"* Levites|strong=\"H3881\"* were|strong=\"H3881\"* Jeshua|strong=\"H3442\"*, Binnui|strong=\"H1131\"*, Kadmiel|strong=\"H6934\"*, Sherebiah|strong=\"H8274\"*, Judah|strong=\"H3063\"*, and|strong=\"H3063\"* Mattaniah|strong=\"H4983\"*, who|strong=\"H1931\"* was|strong=\"H1931\"* over|strong=\"H5921\"* the|strong=\"H5921\"* thanksgiving|strong=\"H1960\"* songs|strong=\"H1960\"*, he|strong=\"H1931\"* and|strong=\"H3063\"* his|strong=\"H5921\"* brothers." + }, + { + "verseNum": 9, + "text": "Also Bakbukiah|strong=\"H1229\"* and|strong=\"H4931\"* Unno, their|strong=\"H5048\"* brothers, were close to them|strong=\"H5048\"* according to their|strong=\"H5048\"* offices|strong=\"H4931\"*." + }, + { + "verseNum": 10, + "text": "Jeshua|strong=\"H3442\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Joiakim|strong=\"H3113\"*, and|strong=\"H3205\"* Joiakim|strong=\"H3113\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Eliashib, and|strong=\"H3205\"* Eliashib became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Joiada|strong=\"H3111\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H3205\"* Joiada|strong=\"H3111\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jonathan|strong=\"H3129\"*, and|strong=\"H3205\"* Jonathan|strong=\"H3129\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jaddua|strong=\"H3037\"*." + }, + { + "verseNum": 12, + "text": "In|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Joiakim|strong=\"H3113\"* were|strong=\"H1961\"* priests|strong=\"H3548\"*, heads|strong=\"H7218\"* of|strong=\"H3117\"* fathers’ households: of|strong=\"H3117\"* Seraiah|strong=\"H8304\"*, Meraiah|strong=\"H4811\"*; of|strong=\"H3117\"* Jeremiah|strong=\"H3414\"*, Hananiah|strong=\"H2608\"*;" + }, + { + "verseNum": 13, + "text": "of Ezra|strong=\"H5830\"*, Meshullam|strong=\"H4918\"*; of Amariah, Jehohanan|strong=\"H3076\"*;" + }, + { + "verseNum": 14, + "text": "of|strong=\"H3130\"* Malluchi, Jonathan|strong=\"H3129\"*; of|strong=\"H3130\"* Shebaniah|strong=\"H7645\"*, Joseph|strong=\"H3130\"*;" + }, + { + "verseNum": 15, + "text": "of Harim|strong=\"H2766\"*, Adna|strong=\"H5733\"*; of Meraioth|strong=\"H4812\"*, Helkai|strong=\"H2517\"*;" + }, + { + "verseNum": 16, + "text": "of|strong=\"H2148\"* Iddo|strong=\"H5714\"*, Zechariah|strong=\"H2148\"*; of|strong=\"H2148\"* Ginnethon|strong=\"H1599\"*, Meshullam|strong=\"H4918\"*;" + }, + { + "verseNum": 17, + "text": "of Abijah, Zichri|strong=\"H2147\"*; of Miniamin|strong=\"H4509\"*, of Moadiah|strong=\"H4153\"*, Piltai|strong=\"H6408\"*;" + }, + { + "verseNum": 18, + "text": "of|strong=\"H8098\"* Bilgah|strong=\"H1083\"*, Shammua|strong=\"H8051\"*; of|strong=\"H8098\"* Shemaiah|strong=\"H8098\"*, Jehonathan|strong=\"H3083\"*;" + }, + { + "verseNum": 19, + "text": "of Joiarib|strong=\"H3114\"*, Mattenai|strong=\"H4982\"*; of Jedaiah|strong=\"H3048\"*, Uzzi|strong=\"H5813\"*;" + }, + { + "verseNum": 20, + "text": "of Sallai|strong=\"H5543\"*, Kallai|strong=\"H7040\"*; of Amok|strong=\"H5987\"*, Eber|strong=\"H5677\"*;" + }, + { + "verseNum": 21, + "text": "of Hilkiah|strong=\"H2518\"*, Hashabiah|strong=\"H2811\"*; of Jedaiah|strong=\"H3048\"*, Nethanel|strong=\"H5417\"*." + }, + { + "verseNum": 22, + "text": "As|strong=\"H3117\"* for|strong=\"H5921\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Eliashib, Joiada|strong=\"H3111\"*, Johanan|strong=\"H3110\"*, and|strong=\"H3117\"* Jaddua|strong=\"H3037\"*, there|strong=\"H3117\"* were|strong=\"H3881\"* recorded|strong=\"H3789\"* the|strong=\"H5921\"* heads|strong=\"H7218\"* of|strong=\"H3117\"* fathers’ households|strong=\"H3881\"*; also|strong=\"H3117\"* the|strong=\"H5921\"* priests|strong=\"H3548\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* reign|strong=\"H4438\"* of|strong=\"H3117\"* Darius|strong=\"H1867\"* the|strong=\"H5921\"* Persian|strong=\"H6542\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*, heads|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ households, were|strong=\"H1121\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H1121\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"*, even|strong=\"H5704\"* until|strong=\"H5704\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Johanan|strong=\"H3110\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eliashib." + }, + { + "verseNum": 24, + "text": "The|strong=\"H1984\"* chiefs|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H1984\"* Levites|strong=\"H3881\"*: Hashabiah|strong=\"H2811\"*, Sherebiah|strong=\"H8274\"*, and|strong=\"H1121\"* Jeshua|strong=\"H3442\"* the|strong=\"H1984\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kadmiel|strong=\"H6934\"*, with|strong=\"H1732\"* their|strong=\"H5980\"* brothers|strong=\"H1121\"* close|strong=\"H5980\"* to|strong=\"H1121\"* them|strong=\"H1121\"*, to|strong=\"H1121\"* praise|strong=\"H1984\"* and|strong=\"H1121\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"* according to|strong=\"H1121\"* the|strong=\"H1984\"* commandment|strong=\"H4687\"* of|strong=\"H1121\"* David|strong=\"H1732\"* the|strong=\"H1984\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God, section next to|strong=\"H1121\"* section." + }, + { + "verseNum": 25, + "text": "Mattaniah|strong=\"H4983\"*, Bakbukiah|strong=\"H1229\"*, Obadiah|strong=\"H5662\"*, Meshullam|strong=\"H4918\"*, Talmon|strong=\"H2929\"*, and|strong=\"H8104\"* Akkub|strong=\"H6126\"* were|strong=\"H7778\"* gatekeepers|strong=\"H7778\"* keeping|strong=\"H8104\"* the|strong=\"H8104\"* watch|strong=\"H8104\"* at|strong=\"H7778\"* the|strong=\"H8104\"* storehouses of|strong=\"H8179\"* the|strong=\"H8104\"* gates|strong=\"H8179\"*." + }, + { + "verseNum": 26, + "text": "These|strong=\"H3117\"* were|strong=\"H1121\"* in|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Joiakim|strong=\"H3113\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeshua|strong=\"H3442\"*, the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jozadak|strong=\"H3136\"*, and|strong=\"H1121\"* in|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Nehemiah|strong=\"H5166\"* the|strong=\"H3117\"* governor|strong=\"H6346\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* Ezra|strong=\"H5830\"* the|strong=\"H3117\"* priest|strong=\"H3548\"* and|strong=\"H1121\"* scribe|strong=\"H5608\"*." + }, + { + "verseNum": 27, + "text": "At|strong=\"H6213\"* the|strong=\"H3605\"* dedication|strong=\"H2598\"* of|strong=\"H2346\"* the|strong=\"H3605\"* wall|strong=\"H2346\"* of|strong=\"H2346\"* Jerusalem|strong=\"H3389\"*, they|strong=\"H6213\"* sought|strong=\"H1245\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* out|strong=\"H1245\"* of|strong=\"H2346\"* all|strong=\"H3605\"* their|strong=\"H3605\"* places|strong=\"H4725\"*, to|strong=\"H6213\"* bring|strong=\"H6213\"* them|strong=\"H6213\"* to|strong=\"H6213\"* Jerusalem|strong=\"H3389\"* to|strong=\"H6213\"* keep|strong=\"H6213\"* the|strong=\"H3605\"* dedication|strong=\"H2598\"* with|strong=\"H6213\"* gladness|strong=\"H8057\"*, both|strong=\"H3605\"* with|strong=\"H6213\"* giving thanks|strong=\"H8426\"* and|strong=\"H3389\"* with|strong=\"H6213\"* singing|strong=\"H7892\"*, with|strong=\"H6213\"* cymbals|strong=\"H4700\"*, stringed instruments|strong=\"H7892\"*, and|strong=\"H3389\"* with|strong=\"H6213\"* harps|strong=\"H3658\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* singers|strong=\"H7891\"* gathered themselves together, both|strong=\"H4480\"* out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* plain|strong=\"H3603\"* around|strong=\"H5439\"* Jerusalem|strong=\"H3389\"* and|strong=\"H1121\"* from|strong=\"H4480\"* the|strong=\"H4480\"* villages|strong=\"H2691\"* of|strong=\"H1121\"* the|strong=\"H4480\"* Netophathites|strong=\"H5200\"*;" + }, + { + "verseNum": 29, + "text": "also|strong=\"H3389\"* from|strong=\"H3389\"* Beth|strong=\"H1004\"* Gilgal|strong=\"H1537\"* and|strong=\"H1004\"* out of|strong=\"H1004\"* the|strong=\"H3588\"* fields|strong=\"H7704\"* of|strong=\"H1004\"* Geba|strong=\"H1387\"* and|strong=\"H1004\"* Azmaveth|strong=\"H5820\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* singers|strong=\"H7891\"* had|strong=\"H3588\"* built|strong=\"H1129\"* themselves|strong=\"H1992\"* villages|strong=\"H2691\"* around|strong=\"H5439\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H3548\"* priests|strong=\"H3548\"* and|strong=\"H3548\"* the|strong=\"H3548\"* Levites|strong=\"H3881\"* purified|strong=\"H2891\"* themselves|strong=\"H2891\"*; and|strong=\"H3548\"* they|strong=\"H5971\"* purified|strong=\"H2891\"* the|strong=\"H3548\"* people|strong=\"H5971\"*, the|strong=\"H3548\"* gates|strong=\"H8179\"*, and|strong=\"H3548\"* the|strong=\"H3548\"* wall|strong=\"H2346\"*." + }, + { + "verseNum": 31, + "text": "Then|strong=\"H5975\"* I|strong=\"H5921\"* brought|strong=\"H5927\"* the|strong=\"H5921\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Judah|strong=\"H3063\"* up|strong=\"H5927\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*, and|strong=\"H3063\"* appointed|strong=\"H5975\"* two|strong=\"H8147\"* great|strong=\"H1419\"* companies who|strong=\"H3063\"* gave thanks|strong=\"H8426\"* and|strong=\"H3063\"* went|strong=\"H5927\"* in|strong=\"H5921\"* procession. One|strong=\"H8147\"* went|strong=\"H5927\"* on|strong=\"H5921\"* the|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* dung gate|strong=\"H8179\"*;" + }, + { + "verseNum": 32, + "text": "and|strong=\"H3063\"* after them went|strong=\"H3212\"* Hoshaiah|strong=\"H1955\"*, with|strong=\"H3212\"* half|strong=\"H2677\"* of|strong=\"H8269\"* the|strong=\"H2677\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Judah|strong=\"H3063\"*," + }, + { + "verseNum": 33, + "text": "and|strong=\"H4918\"* Azariah|strong=\"H5838\"*, Ezra|strong=\"H5830\"*, and|strong=\"H4918\"* Meshullam|strong=\"H4918\"*," + }, + { + "verseNum": 34, + "text": "Judah|strong=\"H3063\"*, Benjamin|strong=\"H1144\"*, Shemaiah|strong=\"H8098\"*, Jeremiah|strong=\"H3414\"*," + }, + { + "verseNum": 35, + "text": "and|strong=\"H1121\"* some of|strong=\"H1121\"* the|strong=\"H3548\"* priests|strong=\"H3548\"*’ sons|strong=\"H1121\"* with|strong=\"H3548\"* trumpets|strong=\"H2689\"*: Zechariah|strong=\"H2148\"* the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jonathan|strong=\"H3129\"*, the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shemaiah|strong=\"H8098\"*, the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mattaniah|strong=\"H4983\"*, the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Micaiah|strong=\"H4320\"*, the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zaccur|strong=\"H2139\"*, the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asaph;" + }, + { + "verseNum": 36, + "text": "and|strong=\"H3063\"* his|strong=\"H1732\"* brothers, Shemaiah|strong=\"H8098\"*, Azarel|strong=\"H5832\"*, Milalai|strong=\"H4450\"*, Gilalai|strong=\"H1562\"*, Maai|strong=\"H4597\"*, Nethanel|strong=\"H5417\"*, Judah|strong=\"H3063\"*, and|strong=\"H3063\"* Hanani|strong=\"H2607\"*, with|strong=\"H6440\"* the|strong=\"H6440\"* musical|strong=\"H7892\"* instruments|strong=\"H3627\"* of|strong=\"H3627\"* David|strong=\"H1732\"* the|strong=\"H6440\"* man|strong=\"H6440\"* of|strong=\"H3627\"* God; and|strong=\"H3063\"* Ezra|strong=\"H5830\"* the|strong=\"H6440\"* scribe|strong=\"H5608\"* was|strong=\"H1732\"* before|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 37, + "text": "By|strong=\"H5921\"* the|strong=\"H5921\"* spring|strong=\"H5927\"* gate|strong=\"H8179\"*, and|strong=\"H1004\"* straight|strong=\"H5048\"* before|strong=\"H5048\"* them|strong=\"H5921\"*, they|strong=\"H5921\"* went|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H5921\"* the|strong=\"H5921\"* stairs|strong=\"H4609\"* of|strong=\"H1004\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, at|strong=\"H5921\"* the|strong=\"H5921\"* ascent|strong=\"H4608\"* of|strong=\"H1004\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*, above|strong=\"H5921\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5921\"* water|strong=\"H4325\"* gate|strong=\"H8179\"* eastward|strong=\"H4217\"*." + }, + { + "verseNum": 38, + "text": "The|strong=\"H5921\"* other|strong=\"H8145\"* company of|strong=\"H2346\"* those|strong=\"H5921\"* who|strong=\"H5971\"* gave thanks|strong=\"H8426\"* went|strong=\"H1980\"* to|strong=\"H5704\"* meet|strong=\"H1980\"* them|strong=\"H5921\"*, and|strong=\"H1980\"* I|strong=\"H5704\"* after|strong=\"H5921\"* them|strong=\"H5921\"*, with|strong=\"H1980\"* the|strong=\"H5921\"* half|strong=\"H2677\"* of|strong=\"H2346\"* the|strong=\"H5921\"* people|strong=\"H5971\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"* above|strong=\"H5921\"* the|strong=\"H5921\"* tower|strong=\"H4026\"* of|strong=\"H2346\"* the|strong=\"H5921\"* furnaces|strong=\"H8574\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5921\"* wide|strong=\"H7342\"* wall|strong=\"H2346\"*," + }, + { + "verseNum": 39, + "text": "and|strong=\"H6629\"* above|strong=\"H5921\"* the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Ephraim, and|strong=\"H6629\"* by|strong=\"H5921\"* the|strong=\"H5921\"* old|strong=\"H5975\"* gate|strong=\"H8179\"*, and|strong=\"H6629\"* by|strong=\"H5921\"* the|strong=\"H5921\"* fish|strong=\"H1709\"* gate|strong=\"H8179\"*, the|strong=\"H5921\"* tower|strong=\"H4026\"* of|strong=\"H8179\"* Hananel|strong=\"H2606\"*, and|strong=\"H6629\"* the|strong=\"H5921\"* tower|strong=\"H4026\"* of|strong=\"H8179\"* Hammeah, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5921\"* sheep|strong=\"H6629\"* gate|strong=\"H8179\"*; and|strong=\"H6629\"* they|strong=\"H5921\"* stood|strong=\"H5975\"* still|strong=\"H5975\"* in|strong=\"H5921\"* the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* the|strong=\"H5921\"* guard|strong=\"H4307\"*." + }, + { + "verseNum": 40, + "text": "So|strong=\"H5975\"* the|strong=\"H5975\"* two|strong=\"H8147\"* companies of|strong=\"H1004\"* those|strong=\"H5973\"* who|strong=\"H5975\"* gave thanks|strong=\"H8426\"* in|strong=\"H1004\"* God’s house|strong=\"H1004\"* stood|strong=\"H5975\"*, and|strong=\"H1004\"* I|strong=\"H1004\"* and|strong=\"H1004\"* the|strong=\"H5975\"* half|strong=\"H2677\"* of|strong=\"H1004\"* the|strong=\"H5975\"* rulers|strong=\"H5461\"* with|strong=\"H5973\"* me|strong=\"H5973\"*;" + }, + { + "verseNum": 41, + "text": "and|strong=\"H3548\"* the|strong=\"H3548\"* priests|strong=\"H3548\"*, Eliakim, Maaseiah|strong=\"H4641\"*, Miniamin|strong=\"H4509\"*, Micaiah|strong=\"H4320\"*, Elioenai, Zechariah|strong=\"H2148\"*, and|strong=\"H3548\"* Hananiah|strong=\"H2608\"*, with|strong=\"H3548\"* trumpets|strong=\"H2689\"*;" + }, + { + "verseNum": 42, + "text": "and|strong=\"H8085\"* Maaseiah|strong=\"H4641\"*, Shemaiah|strong=\"H8098\"*, Eleazar, Uzzi|strong=\"H5813\"*, Jehohanan|strong=\"H3076\"*, Malchijah|strong=\"H4441\"*, Elam|strong=\"H5867\"*, and|strong=\"H8085\"* Ezer|strong=\"H5829\"*. The|strong=\"H8085\"* singers|strong=\"H7891\"* sang|strong=\"H7891\"* loud|strong=\"H8085\"*, with|strong=\"H8085\"* Jezrahiah|strong=\"H3156\"* their|strong=\"H8085\"* overseer|strong=\"H6496\"*." + }, + { + "verseNum": 43, + "text": "They|strong=\"H3588\"* offered|strong=\"H2076\"* great|strong=\"H1419\"* sacrifices|strong=\"H2077\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* rejoiced|strong=\"H8055\"*, for|strong=\"H3588\"* God had|strong=\"H3588\"* made|strong=\"H8055\"* them|strong=\"H8055\"* rejoice|strong=\"H8055\"* with|strong=\"H3389\"* great|strong=\"H1419\"* joy|strong=\"H8057\"*; and|strong=\"H3117\"* the|strong=\"H8085\"* women and|strong=\"H3117\"* the|strong=\"H8085\"* children|strong=\"H3206\"* also|strong=\"H1571\"* rejoiced|strong=\"H8055\"*, so|strong=\"H1571\"* that|strong=\"H3588\"* the|strong=\"H8085\"* joy|strong=\"H8057\"* of|strong=\"H3117\"* Jerusalem|strong=\"H3389\"* was|strong=\"H1931\"* heard|strong=\"H8085\"* even|strong=\"H1571\"* far|strong=\"H7350\"* away|strong=\"H7350\"*." + }, + { + "verseNum": 44, + "text": "On|strong=\"H5921\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, men|strong=\"H6485\"* were|strong=\"H3881\"* appointed|strong=\"H5975\"* over|strong=\"H5921\"* the|strong=\"H5921\"* rooms for|strong=\"H3588\"* the|strong=\"H5921\"* treasures, for|strong=\"H3588\"* the|strong=\"H5921\"* wave offerings|strong=\"H8641\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* first|strong=\"H7225\"* fruits|strong=\"H7225\"*, and|strong=\"H3063\"* for|strong=\"H3588\"* the|strong=\"H5921\"* tithes|strong=\"H4643\"*, to|strong=\"H5921\"* gather|strong=\"H3664\"* into|strong=\"H5921\"* them|strong=\"H5921\"* according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* fields|strong=\"H7704\"* of|strong=\"H3117\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* the|strong=\"H5921\"* portions|strong=\"H4521\"* appointed|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H5921\"* law|strong=\"H8451\"* for|strong=\"H3588\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* and|strong=\"H3063\"* Levites|strong=\"H3881\"*; for|strong=\"H3588\"* Judah|strong=\"H3063\"* rejoiced|strong=\"H8057\"* for|strong=\"H3588\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* and|strong=\"H3063\"* for|strong=\"H3588\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* who|strong=\"H1931\"* served|strong=\"H5975\"*." + }, + { + "verseNum": 45, + "text": "They performed|strong=\"H8104\"* the|strong=\"H8104\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* their|strong=\"H8104\"* God and|strong=\"H1121\"* the|strong=\"H8104\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H8104\"* purification|strong=\"H2893\"*, and|strong=\"H1121\"* so did|strong=\"H1732\"* the|strong=\"H8104\"* singers|strong=\"H7891\"* and|strong=\"H1121\"* the|strong=\"H8104\"* gatekeepers|strong=\"H7778\"*, according to|strong=\"H8104\"* the|strong=\"H8104\"* commandment|strong=\"H4687\"* of|strong=\"H1121\"* David|strong=\"H1732\"* and|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"* his|strong=\"H8104\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 46, + "text": "For|strong=\"H3588\"* in|strong=\"H3117\"* the|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H3117\"* David|strong=\"H1732\"* and|strong=\"H3117\"* Asaph of|strong=\"H3117\"* old|strong=\"H6924\"* there|strong=\"H3117\"* was|strong=\"H1732\"* a|strong=\"H3068\"* chief|strong=\"H7218\"* of|strong=\"H3117\"* the|strong=\"H3588\"* singers|strong=\"H7891\"*, and|strong=\"H3117\"* songs|strong=\"H7892\"* of|strong=\"H3117\"* praise|strong=\"H8416\"* and|strong=\"H3117\"* thanksgiving|strong=\"H3034\"* to|strong=\"H3117\"* God." + }, + { + "verseNum": 47, + "text": "All|strong=\"H3605\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Zerubbabel|strong=\"H2216\"* and|strong=\"H1121\"* in|strong=\"H3478\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Nehemiah|strong=\"H5166\"* gave|strong=\"H5414\"* the|strong=\"H3605\"* portions|strong=\"H4521\"* of|strong=\"H1121\"* the|strong=\"H3605\"* singers|strong=\"H7891\"* and|strong=\"H1121\"* the|strong=\"H3605\"* gatekeepers|strong=\"H7778\"*, as|strong=\"H1697\"* every|strong=\"H3605\"* day|strong=\"H3117\"* required|strong=\"H3117\"*; and|strong=\"H1121\"* they|strong=\"H3117\"* set|strong=\"H5414\"* apart|strong=\"H6942\"* that|strong=\"H3605\"* which|strong=\"H1697\"* was|strong=\"H3478\"* for|strong=\"H3117\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*; and|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* set|strong=\"H5414\"* apart|strong=\"H6942\"* that|strong=\"H3605\"* which|strong=\"H1697\"* was|strong=\"H3478\"* for|strong=\"H3117\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "On|strong=\"H3117\"* that|strong=\"H5971\"* day|strong=\"H3117\"* they|strong=\"H3117\"* read|strong=\"H7121\"* in|strong=\"H3117\"* the|strong=\"H3117\"* book|strong=\"H5612\"* of|strong=\"H3117\"* Moses|strong=\"H4872\"* in|strong=\"H3117\"* the|strong=\"H3117\"* hearing of|strong=\"H3117\"* the|strong=\"H3117\"* people|strong=\"H5971\"*; and|strong=\"H4872\"* it|strong=\"H1931\"* was|strong=\"H1931\"* found|strong=\"H4672\"* written|strong=\"H3789\"* in|strong=\"H3117\"* it|strong=\"H1931\"* that|strong=\"H5971\"* an|strong=\"H4672\"* Ammonite|strong=\"H5984\"* and|strong=\"H4872\"* a|strong=\"H3068\"* Moabite|strong=\"H4125\"* should|strong=\"H3117\"* not|strong=\"H3808\"* enter into|strong=\"H5704\"* the|strong=\"H3117\"* assembly|strong=\"H6951\"* of|strong=\"H3117\"* God|strong=\"H3808\"* forever|strong=\"H5769\"*," + }, + { + "verseNum": 2, + "text": "because|strong=\"H3588\"* they|strong=\"H3588\"* didn’t meet|strong=\"H6923\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* with|strong=\"H5921\"* bread|strong=\"H3899\"* and|strong=\"H1121\"* with|strong=\"H5921\"* water|strong=\"H4325\"*, but|strong=\"H3588\"* hired|strong=\"H7936\"* Balaam|strong=\"H1109\"* against|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H3478\"* curse|strong=\"H7045\"* them|strong=\"H5921\"*; however|strong=\"H3588\"*, our|strong=\"H5921\"* God|strong=\"H3808\"* turned|strong=\"H2015\"* the|strong=\"H5921\"* curse|strong=\"H7045\"* into|strong=\"H2015\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H1961\"* came|strong=\"H1961\"* to|strong=\"H3478\"* pass|strong=\"H1961\"*, when|strong=\"H1961\"* they|strong=\"H3605\"* had|strong=\"H1961\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* law|strong=\"H8451\"*, that|strong=\"H3605\"* they|strong=\"H3605\"* separated all|strong=\"H3605\"* the|strong=\"H3605\"* mixed|strong=\"H6154\"* multitude|strong=\"H6154\"* from|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H2088\"* before|strong=\"H6440\"* this|strong=\"H2088\"*, Eliashib the|strong=\"H6440\"* priest|strong=\"H3548\"*, who|strong=\"H3548\"* was|strong=\"H1004\"* appointed|strong=\"H5414\"* over|strong=\"H5414\"* the|strong=\"H6440\"* rooms|strong=\"H3957\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* our|strong=\"H5414\"* God|strong=\"H5414\"*, being|strong=\"H1004\"* allied|strong=\"H7138\"* to|strong=\"H5414\"* Tobiah|strong=\"H2900\"*," + }, + { + "verseNum": 5, + "text": "had|strong=\"H1961\"* prepared|strong=\"H6213\"* for|strong=\"H6213\"* him|strong=\"H5414\"* a|strong=\"H3068\"* great|strong=\"H1419\"* room|strong=\"H3957\"*, where|strong=\"H8033\"* before|strong=\"H6440\"* they|strong=\"H8033\"* laid|strong=\"H5414\"* the|strong=\"H6440\"* meal|strong=\"H4503\"* offerings|strong=\"H4503\"*, the|strong=\"H6440\"* frankincense|strong=\"H3828\"*, the|strong=\"H6440\"* vessels|strong=\"H3627\"*, and|strong=\"H1419\"* the|strong=\"H6440\"* tithes|strong=\"H4643\"* of|strong=\"H3627\"* the|strong=\"H6440\"* grain|strong=\"H1715\"*, the|strong=\"H6440\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, and|strong=\"H1419\"* the|strong=\"H6440\"* oil|strong=\"H3323\"*, which|strong=\"H8033\"* were|strong=\"H1961\"* given|strong=\"H5414\"* by|strong=\"H5414\"* commandment|strong=\"H4687\"* to|strong=\"H1961\"* the|strong=\"H6440\"* Levites|strong=\"H3881\"*, the|strong=\"H6440\"* singers|strong=\"H7891\"*, and|strong=\"H1419\"* the|strong=\"H6440\"* gatekeepers|strong=\"H7778\"*; and|strong=\"H1419\"* the|strong=\"H6440\"* wave offerings|strong=\"H4503\"* for|strong=\"H6213\"* the|strong=\"H6440\"* priests|strong=\"H3548\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"H3588\"* in|strong=\"H8141\"* all|strong=\"H3605\"* this|strong=\"H2088\"*, I|strong=\"H3588\"* was|strong=\"H1961\"* not|strong=\"H3808\"* at|strong=\"H3117\"* Jerusalem|strong=\"H3389\"*; for|strong=\"H3588\"* in|strong=\"H8141\"* the|strong=\"H3605\"* thirty-second|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Artaxerxes king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon I|strong=\"H3588\"* went|strong=\"H4428\"* to|strong=\"H1961\"* the|strong=\"H3605\"* king|strong=\"H4428\"*; and|strong=\"H4428\"* after|strong=\"H7093\"* some|strong=\"H4480\"* days|strong=\"H3117\"* I|strong=\"H3588\"* asked|strong=\"H7592\"* leave|strong=\"H4480\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"H1004\"* I|strong=\"H1004\"* came|strong=\"H7451\"* to|strong=\"H6213\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H1004\"* understood the|strong=\"H6213\"* evil|strong=\"H7451\"* that|strong=\"H2691\"* Eliashib had|strong=\"H3389\"* done|strong=\"H6213\"* for|strong=\"H6213\"* Tobiah|strong=\"H2900\"*, in|strong=\"H6213\"* preparing|strong=\"H6213\"* him|strong=\"H6213\"* a|strong=\"H3068\"* room|strong=\"H1004\"* in|strong=\"H6213\"* the|strong=\"H6213\"* courts|strong=\"H2691\"* of|strong=\"H1004\"* God’s house|strong=\"H1004\"*." + }, + { + "verseNum": 8, + "text": "It|strong=\"H7993\"* grieved|strong=\"H7489\"* me|strong=\"H4480\"* severely|strong=\"H3966\"*. Therefore I|strong=\"H4480\"* threw|strong=\"H7993\"* all|strong=\"H3605\"* Tobiah|strong=\"H2900\"*’s household|strong=\"H1004\"* stuff|strong=\"H3627\"* out|strong=\"H2351\"* of|strong=\"H1004\"* the|strong=\"H3605\"* room|strong=\"H1004\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H7725\"* I|strong=\"H1004\"* commanded, and|strong=\"H7725\"* they|strong=\"H8033\"* cleansed|strong=\"H2891\"* the|strong=\"H7725\"* rooms|strong=\"H3957\"*. I|strong=\"H1004\"* brought|strong=\"H7725\"* into|strong=\"H7725\"* them|strong=\"H7725\"* the|strong=\"H7725\"* vessels|strong=\"H3627\"* of|strong=\"H1004\"* God’s house|strong=\"H1004\"*, with|strong=\"H1004\"* the|strong=\"H7725\"* meal|strong=\"H4503\"* offerings|strong=\"H4503\"* and|strong=\"H7725\"* the|strong=\"H7725\"* frankincense|strong=\"H3828\"* again|strong=\"H7725\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"H3588\"* perceived|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3588\"* portions|strong=\"H4521\"* of|strong=\"H7704\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"* had|strong=\"H3588\"* not|strong=\"H3808\"* been|strong=\"H3808\"* given|strong=\"H5414\"* them|strong=\"H5414\"*, so|strong=\"H6213\"* that|strong=\"H3588\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"* and|strong=\"H7704\"* the|strong=\"H3588\"* singers|strong=\"H7891\"*, who|strong=\"H3881\"* did|strong=\"H6213\"* the|strong=\"H3588\"* work|strong=\"H4399\"*, had|strong=\"H3588\"* each|strong=\"H5414\"* fled|strong=\"H1272\"* to|strong=\"H6213\"* his|strong=\"H5414\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H5975\"* I|strong=\"H5921\"* contended|strong=\"H7378\"* with|strong=\"H1004\"* the|strong=\"H5921\"* rulers|strong=\"H5461\"*, and|strong=\"H1004\"* said, “Why|strong=\"H4069\"* is|strong=\"H1004\"* God’s house|strong=\"H1004\"* forsaken|strong=\"H5800\"*?” I|strong=\"H5921\"* gathered|strong=\"H6908\"* them|strong=\"H5921\"* together|strong=\"H6908\"*, and|strong=\"H1004\"* set|strong=\"H5975\"* them|strong=\"H5921\"* in|strong=\"H5921\"* their|strong=\"H5921\"* place|strong=\"H1004\"*." + }, + { + "verseNum": 12, + "text": "Then|strong=\"H3063\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* brought the|strong=\"H3605\"* tithe|strong=\"H4643\"* of|strong=\"H3605\"* the|strong=\"H3605\"* grain|strong=\"H1715\"*, the|strong=\"H3605\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, and|strong=\"H3063\"* the|strong=\"H3605\"* oil|strong=\"H3323\"* to|strong=\"H3063\"* the|strong=\"H3605\"* treasuries." + }, + { + "verseNum": 13, + "text": "I|strong=\"H3588\"* made|strong=\"H2803\"* treasurers over|strong=\"H5921\"* the|strong=\"H5921\"* treasuries, Shelemiah|strong=\"H8018\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* Zadok|strong=\"H6659\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*, Pedaiah|strong=\"H6305\"*: and|strong=\"H1121\"* next|strong=\"H5921\"* to|strong=\"H5921\"* them|strong=\"H5921\"* was|strong=\"H1121\"* Hanan|strong=\"H2605\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zaccur|strong=\"H2139\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mattaniah|strong=\"H4983\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H1121\"* counted|strong=\"H2803\"* faithful, and|strong=\"H1121\"* their|strong=\"H5921\"* business was|strong=\"H1121\"* to|strong=\"H5921\"* distribute|strong=\"H2505\"* to|strong=\"H5921\"* their|strong=\"H5921\"* brothers|strong=\"H1121\"*." + }, + { + "verseNum": 14, + "text": "Remember|strong=\"H2142\"* me|strong=\"H5921\"*, my|strong=\"H5921\"* God, concerning|strong=\"H5921\"* this|strong=\"H2063\"*, and|strong=\"H1004\"* don’t wipe|strong=\"H4229\"* out|strong=\"H4229\"* my|strong=\"H5921\"* good|strong=\"H2617\"* deeds|strong=\"H2617\"* that|strong=\"H6213\"* I|strong=\"H5921\"* have|strong=\"H1004\"* done|strong=\"H6213\"* for|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* my|strong=\"H5921\"* God, and|strong=\"H1004\"* for|strong=\"H5921\"* its|strong=\"H5921\"* observances." + }, + { + "verseNum": 15, + "text": "In|strong=\"H5921\"* those|strong=\"H1992\"* days|strong=\"H3117\"* I|strong=\"H3117\"* saw|strong=\"H7200\"* some|strong=\"H1992\"* men|strong=\"H3605\"* treading|strong=\"H1869\"* wine|strong=\"H3196\"* presses|strong=\"H1660\"* on|strong=\"H5921\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* in|strong=\"H5921\"* Judah|strong=\"H3063\"*, bringing in|strong=\"H5921\"* sheaves|strong=\"H6194\"*, and|strong=\"H3063\"* loading|strong=\"H6006\"* donkeys|strong=\"H2543\"* with|strong=\"H5921\"* wine|strong=\"H3196\"*, grapes|strong=\"H6025\"*, figs|strong=\"H8384\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H3117\"* burdens|strong=\"H4853\"* which|strong=\"H1992\"* they|strong=\"H1992\"* brought into|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* on|strong=\"H5921\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*; and|strong=\"H3063\"* I|strong=\"H3117\"* testified|strong=\"H5749\"* against|strong=\"H5921\"* them|strong=\"H1992\"* in|strong=\"H5921\"* the|strong=\"H3605\"* day|strong=\"H3117\"* in|strong=\"H5921\"* which|strong=\"H1992\"* they|strong=\"H1992\"* sold|strong=\"H4376\"* food|strong=\"H6718\"*." + }, + { + "verseNum": 16, + "text": "Some|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Tyre|strong=\"H6876\"* also|strong=\"H1121\"* lived|strong=\"H3427\"* there|strong=\"H3427\"*, who|strong=\"H3605\"* brought in|strong=\"H3427\"* fish|strong=\"H1709\"* and|strong=\"H1121\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H1121\"* wares, and|strong=\"H1121\"* sold|strong=\"H4376\"* on|strong=\"H3427\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* to|strong=\"H3389\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H2088\"* I|strong=\"H3117\"* contended|strong=\"H7378\"* with|strong=\"H6213\"* the|strong=\"H6213\"* nobles|strong=\"H2715\"* of|strong=\"H3117\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* said|strong=\"H1697\"* to|strong=\"H6213\"* them|strong=\"H6213\"*, “What|strong=\"H4100\"* evil|strong=\"H7451\"* thing|strong=\"H1697\"* is|strong=\"H2088\"* this|strong=\"H2088\"* that|strong=\"H3117\"* you|strong=\"H3117\"* do|strong=\"H6213\"*, and|strong=\"H3063\"* profane|strong=\"H2490\"* the|strong=\"H6213\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*?" + }, + { + "verseNum": 18, + "text": "Didn’t your|strong=\"H3605\"* fathers do|strong=\"H6213\"* this|strong=\"H2063\"*, and|strong=\"H3478\"* didn’t our|strong=\"H3605\"* God|strong=\"H3808\"* bring|strong=\"H6213\"* all|strong=\"H3605\"* this|strong=\"H2063\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* us|strong=\"H5921\"* and|strong=\"H3478\"* on|strong=\"H5921\"* this|strong=\"H2063\"* city|strong=\"H5892\"*? Yet|strong=\"H3808\"* you|strong=\"H3605\"* bring|strong=\"H6213\"* more|strong=\"H3808\"* wrath|strong=\"H2740\"* on|strong=\"H5921\"* Israel|strong=\"H3478\"* by|strong=\"H5921\"* profaning|strong=\"H2490\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"*.”" + }, + { + "verseNum": 19, + "text": "It|strong=\"H5921\"* came|strong=\"H1961\"* to|strong=\"H5704\"* pass|strong=\"H1961\"* that|strong=\"H3117\"* when|strong=\"H1961\"* the|strong=\"H6440\"* gates|strong=\"H8179\"* of|strong=\"H3117\"* Jerusalem|strong=\"H3389\"* began|strong=\"H1961\"* to|strong=\"H5704\"* be|strong=\"H1961\"* dark|strong=\"H6751\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Sabbath|strong=\"H7676\"*, I|strong=\"H3117\"* commanded that|strong=\"H3117\"* the|strong=\"H6440\"* doors|strong=\"H1817\"* should|strong=\"H3117\"* be|strong=\"H1961\"* shut|strong=\"H5462\"*, and|strong=\"H3117\"* commanded that|strong=\"H3117\"* they|strong=\"H3117\"* should|strong=\"H3117\"* not|strong=\"H3808\"* be|strong=\"H1961\"* opened|strong=\"H6605\"* until|strong=\"H5704\"* after|strong=\"H5921\"* the|strong=\"H6440\"* Sabbath|strong=\"H7676\"*. I|strong=\"H3117\"* set|strong=\"H5975\"* some|strong=\"H3117\"* of|strong=\"H3117\"* my|strong=\"H5921\"* servants|strong=\"H5288\"* over|strong=\"H5921\"* the|strong=\"H6440\"* gates|strong=\"H8179\"*, so|strong=\"H1961\"* that|strong=\"H3117\"* no|strong=\"H3808\"* burden|strong=\"H4853\"* should|strong=\"H3117\"* be|strong=\"H1961\"* brought|strong=\"H1961\"* in|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H6440\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 20, + "text": "So the|strong=\"H3605\"* merchants|strong=\"H7402\"* and|strong=\"H3389\"* sellers|strong=\"H4376\"* of|strong=\"H3605\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H3605\"* wares camped outside|strong=\"H2351\"* of|strong=\"H3605\"* Jerusalem|strong=\"H3389\"* once|strong=\"H6471\"* or|strong=\"H4376\"* twice|strong=\"H6471\"*." + }, + { + "verseNum": 21, + "text": "Then|strong=\"H7971\"* I|strong=\"H6256\"* testified|strong=\"H5749\"* against|strong=\"H4480\"* them|strong=\"H7971\"*, and|strong=\"H7971\"* said to|strong=\"H7971\"* them|strong=\"H7971\"*, “Why|strong=\"H4069\"* do|strong=\"H8138\"* you|strong=\"H7971\"* stay|strong=\"H3885\"* around|strong=\"H3027\"* the|strong=\"H4480\"* wall|strong=\"H2346\"*? If|strong=\"H1931\"* you|strong=\"H7971\"* do|strong=\"H8138\"* so|strong=\"H4480\"* again|strong=\"H7971\"*, I|strong=\"H6256\"* will|strong=\"H3027\"* lay|strong=\"H7971\"* hands|strong=\"H3027\"* on|strong=\"H3027\"* you|strong=\"H7971\"*.” From|strong=\"H4480\"* that|strong=\"H1931\"* time|strong=\"H6256\"* on|strong=\"H3027\"*, they|strong=\"H3808\"* didn’t come|strong=\"H2346\"* on|strong=\"H3027\"* the|strong=\"H4480\"* Sabbath|strong=\"H7676\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"H3117\"* commanded|strong=\"H1571\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* that|strong=\"H3117\"* they|strong=\"H3117\"* should|strong=\"H3117\"* purify|strong=\"H2891\"* themselves|strong=\"H6942\"*, and|strong=\"H3117\"* that|strong=\"H3117\"* they|strong=\"H3117\"* should|strong=\"H3117\"* come|strong=\"H1961\"* and|strong=\"H3117\"* keep|strong=\"H8104\"* the|strong=\"H5921\"* gates|strong=\"H8179\"*, to|strong=\"H1961\"* sanctify|strong=\"H6942\"* the|strong=\"H5921\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*. Remember|strong=\"H2142\"* me|strong=\"H5921\"* for|strong=\"H5921\"* this|strong=\"H2063\"* also|strong=\"H1571\"*, my|strong=\"H8104\"* God, and|strong=\"H3117\"* spare|strong=\"H2347\"* me|strong=\"H5921\"* according|strong=\"H5921\"* to|strong=\"H1961\"* the|strong=\"H5921\"* greatness|strong=\"H7230\"* of|strong=\"H3117\"* your|strong=\"H5921\"* loving kindness|strong=\"H2617\"*." + }, + { + "verseNum": 23, + "text": "In|strong=\"H3427\"* those|strong=\"H1992\"* days|strong=\"H3117\"* I|strong=\"H3117\"* also|strong=\"H1571\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* Jews|strong=\"H3064\"* who|strong=\"H3427\"* had|strong=\"H3064\"* married|strong=\"H3427\"* women|strong=\"H1992\"* of|strong=\"H3117\"* Ashdod, of|strong=\"H3117\"* Ammon|strong=\"H4125\"*, and|strong=\"H3117\"* of|strong=\"H3117\"* Moab|strong=\"H4125\"*;" + }, + { + "verseNum": 24, + "text": "and|strong=\"H1121\"* their|strong=\"H5234\"* children|strong=\"H1121\"* spoke|strong=\"H1696\"* half|strong=\"H2677\"* in|strong=\"H1696\"* the|strong=\"H1696\"* speech|strong=\"H3956\"* of|strong=\"H1121\"* Ashdod, and|strong=\"H1121\"* could|strong=\"H5234\"* not|strong=\"H1696\"* speak|strong=\"H1696\"* in|strong=\"H1696\"* the|strong=\"H1696\"* Jews’ language|strong=\"H3956\"*, but|strong=\"H1696\"* according to|strong=\"H1696\"* the|strong=\"H1696\"* language|strong=\"H3956\"* of|strong=\"H1121\"* each|strong=\"H5971\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 25, + "text": "I|strong=\"H5414\"* contended|strong=\"H7378\"* with|strong=\"H5973\"* them|strong=\"H5414\"*, cursed|strong=\"H7043\"* them|strong=\"H5414\"*, struck|strong=\"H5221\"* certain of|strong=\"H1121\"* them|strong=\"H5414\"*, plucked off|strong=\"H5375\"* their|strong=\"H5375\"* hair|strong=\"H4803\"*, and|strong=\"H1121\"* made|strong=\"H5414\"* them|strong=\"H5414\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* God|strong=\"H5414\"*, “You|strong=\"H5414\"* shall|strong=\"H1121\"* not|strong=\"H5414\"* give|strong=\"H5414\"* your|strong=\"H5414\"* daughters|strong=\"H1323\"* to|strong=\"H5414\"* their|strong=\"H5375\"* sons|strong=\"H1121\"*, nor|strong=\"H1121\"* take|strong=\"H5375\"* their|strong=\"H5375\"* daughters|strong=\"H1323\"* for|strong=\"H1121\"* your|strong=\"H5414\"* sons|strong=\"H1121\"*, or|strong=\"H1121\"* for|strong=\"H1121\"* yourselves|strong=\"H5375\"*." + }, + { + "verseNum": 26, + "text": "Didn’t Solomon|strong=\"H8010\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* sin|strong=\"H2398\"* by|strong=\"H5921\"* these|strong=\"H3605\"* things|strong=\"H3605\"*? Yet|strong=\"H1571\"* among|strong=\"H5921\"* many|strong=\"H7227\"* nations|strong=\"H1471\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* king|strong=\"H4428\"* like|strong=\"H3644\"* him|strong=\"H5414\"*, and|strong=\"H3478\"* he|strong=\"H3605\"* was|strong=\"H1961\"* loved by|strong=\"H5921\"* his|strong=\"H3605\"* God|strong=\"H5414\"*, and|strong=\"H3478\"* God|strong=\"H5414\"* made|strong=\"H5414\"* him|strong=\"H5414\"* king|strong=\"H4428\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*. Nevertheless|strong=\"H1571\"* foreign|strong=\"H5237\"* women caused|strong=\"H5414\"* even|strong=\"H1571\"* him|strong=\"H5414\"* to|strong=\"H3478\"* sin|strong=\"H2398\"*." + }, + { + "verseNum": 27, + "text": "Shall|strong=\"H7451\"* we|strong=\"H3068\"* then|strong=\"H6213\"* listen|strong=\"H8085\"* to|strong=\"H6213\"* you|strong=\"H3605\"* to|strong=\"H6213\"* do|strong=\"H6213\"* all|strong=\"H3605\"* this|strong=\"H2063\"* great|strong=\"H1419\"* evil|strong=\"H7451\"*, to|strong=\"H6213\"* trespass|strong=\"H4603\"* against|strong=\"H2063\"* our|strong=\"H3605\"* God in|strong=\"H3427\"* marrying|strong=\"H3427\"* foreign|strong=\"H5237\"* women|strong=\"H7451\"*?”" + }, + { + "verseNum": 28, + "text": "One|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Joiada|strong=\"H3111\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eliashib the|strong=\"H5921\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*, was|strong=\"H1121\"* son-in-law|strong=\"H2860\"* to|strong=\"H5921\"* Sanballat|strong=\"H5571\"* the|strong=\"H5921\"* Horonite|strong=\"H2772\"*; therefore|strong=\"H5921\"* I|strong=\"H5921\"* chased|strong=\"H1272\"* him|strong=\"H5921\"* from|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 29, + "text": "Remember|strong=\"H2142\"* them|strong=\"H1992\"*, my|strong=\"H5921\"* God, because|strong=\"H5921\"* they|strong=\"H1992\"* have|strong=\"H1992\"* defiled|strong=\"H1352\"* the|strong=\"H5921\"* priesthood|strong=\"H3550\"* and|strong=\"H1285\"* the|strong=\"H5921\"* covenant|strong=\"H1285\"* of|strong=\"H5921\"* the|strong=\"H5921\"* priesthood|strong=\"H3550\"* and|strong=\"H1285\"* of|strong=\"H5921\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 30, + "text": "Thus I|strong=\"H3605\"* cleansed|strong=\"H2891\"* them|strong=\"H5975\"* from|strong=\"H3881\"* all|strong=\"H3605\"* foreigners|strong=\"H5236\"* and|strong=\"H3548\"* appointed|strong=\"H5975\"* duties|strong=\"H4931\"* for|strong=\"H5975\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3548\"* for|strong=\"H5975\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, everyone|strong=\"H3605\"* in|strong=\"H5975\"* his|strong=\"H3605\"* work|strong=\"H4399\"*;" + }, + { + "verseNum": 31, + "text": "and|strong=\"H6086\"* for|strong=\"H6086\"* the|strong=\"H2142\"* wood|strong=\"H6086\"* offering|strong=\"H7133\"*, at|strong=\"H2896\"* appointed|strong=\"H2163\"* times|strong=\"H6256\"*, and|strong=\"H6086\"* for|strong=\"H6086\"* the|strong=\"H2142\"* first|strong=\"H1061\"* fruits|strong=\"H1061\"*. Remember|strong=\"H2142\"* me|strong=\"H2142\"*, my|strong=\"H2142\"* God, for|strong=\"H6086\"* good|strong=\"H2896\"*." + } + ] + } + ] + }, + { + "name": "Esther", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* in|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Ahasuerus (this|strong=\"H1931\"* is|strong=\"H1931\"* Ahasuerus who|strong=\"H1931\"* reigned|strong=\"H4427\"* from|strong=\"H3117\"* India|strong=\"H1912\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Ethiopia|strong=\"H3568\"*, over|strong=\"H4427\"* one|strong=\"H1931\"* hundred|strong=\"H3967\"* twenty-seven|strong=\"H6242\"* provinces|strong=\"H4082\"*)," + }, + { + "verseNum": 2, + "text": "in|strong=\"H5921\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, when|strong=\"H3117\"* the|strong=\"H5921\"* King|strong=\"H4428\"* Ahasuerus sat|strong=\"H7675\"* on|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* his|strong=\"H5921\"* kingdom|strong=\"H4438\"*, which|strong=\"H1992\"* was|strong=\"H3117\"* in|strong=\"H5921\"* Susa|strong=\"H7800\"* the|strong=\"H5921\"* palace|strong=\"H1002\"*," + }, + { + "verseNum": 3, + "text": "in|strong=\"H8141\"* the|strong=\"H3605\"* third|strong=\"H7969\"* year|strong=\"H8141\"* of|strong=\"H8141\"* his|strong=\"H3605\"* reign|strong=\"H4427\"*, he|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H4960\"* for|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H5650\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*; the|strong=\"H3605\"* army|strong=\"H2426\"* of|strong=\"H8141\"* Persia|strong=\"H6539\"* and|strong=\"H5650\"* Media|strong=\"H4074\"*, the|strong=\"H3605\"* nobles|strong=\"H6579\"* and|strong=\"H5650\"* princes|strong=\"H8269\"* of|strong=\"H8141\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"* being|strong=\"H4427\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3117\"* displayed|strong=\"H7200\"* the|strong=\"H7200\"* riches|strong=\"H6239\"* of|strong=\"H3117\"* his|strong=\"H7200\"* glorious|strong=\"H8597\"* kingdom|strong=\"H4438\"* and|strong=\"H3967\"* the|strong=\"H7200\"* honor|strong=\"H3519\"* of|strong=\"H3117\"* his|strong=\"H7200\"* excellent|strong=\"H8597\"* majesty|strong=\"H1420\"* many|strong=\"H7227\"* days|strong=\"H3117\"*, even one|strong=\"H7200\"* hundred|strong=\"H3967\"* eighty|strong=\"H8084\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H3117\"* these|strong=\"H6213\"* days|strong=\"H3117\"* were|strong=\"H5971\"* fulfilled|strong=\"H4390\"*, the|strong=\"H3605\"* king|strong=\"H4428\"* made|strong=\"H6213\"* a|strong=\"H3068\"* seven|strong=\"H7651\"* day|strong=\"H3117\"* feast|strong=\"H4960\"* for|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* present|strong=\"H4672\"* in|strong=\"H6213\"* Susa|strong=\"H7800\"* the|strong=\"H3605\"* palace|strong=\"H1002\"*, both|strong=\"H3605\"* great|strong=\"H1419\"* and|strong=\"H4428\"* small|strong=\"H6996\"*, in|strong=\"H6213\"* the|strong=\"H3605\"* court|strong=\"H2691\"* of|strong=\"H4428\"* the|strong=\"H3605\"* garden|strong=\"H1594\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s palace|strong=\"H1002\"*." + }, + { + "verseNum": 6, + "text": "There were|strong=\"H5921\"* hangings of|strong=\"H5982\"* white|strong=\"H2353\"* and|strong=\"H3701\"* blue|strong=\"H8504\"* material, fastened with|strong=\"H5921\"* cords|strong=\"H2256\"* of|strong=\"H5982\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"* and|strong=\"H3701\"* purple|strong=\"H8504\"* to|strong=\"H5921\"* silver|strong=\"H3701\"* rings|strong=\"H1550\"* and|strong=\"H3701\"* marble|strong=\"H8336\"* pillars|strong=\"H5982\"*. The|strong=\"H5921\"* couches|strong=\"H4296\"* were|strong=\"H5921\"* of|strong=\"H5982\"* gold|strong=\"H2091\"* and|strong=\"H3701\"* silver|strong=\"H3701\"*, on|strong=\"H5921\"* a|strong=\"H3068\"* pavement|strong=\"H7531\"* of|strong=\"H5982\"* red, white|strong=\"H2353\"*, yellow, and|strong=\"H3701\"* black|strong=\"H5508\"* marble|strong=\"H8336\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3027\"* gave|strong=\"H8248\"* them|strong=\"H3027\"* drinks|strong=\"H8248\"* in|strong=\"H4428\"* golden|strong=\"H2091\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* various kinds|strong=\"H3627\"*, including|strong=\"H4428\"* royal|strong=\"H4438\"* wine|strong=\"H3196\"* in|strong=\"H4428\"* abundance|strong=\"H7227\"*, according|strong=\"H3027\"* to|strong=\"H3027\"* the|strong=\"H3027\"* bounty|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3027\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 8, + "text": "In|strong=\"H5921\"* accordance|strong=\"H5921\"* with|strong=\"H1004\"* the|strong=\"H3605\"* law|strong=\"H1881\"*, the|strong=\"H3605\"* drinking|strong=\"H8360\"* was|strong=\"H4428\"* not|strong=\"H6213\"* compulsory; for|strong=\"H3588\"* so|strong=\"H3651\"* the|strong=\"H3605\"* king|strong=\"H4428\"* had|strong=\"H4428\"* instructed|strong=\"H3245\"* all|strong=\"H3605\"* the|strong=\"H3605\"* officials of|strong=\"H4428\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* should|strong=\"H3588\"* do|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H6213\"* every|strong=\"H3605\"* man|strong=\"H3605\"*’s pleasure|strong=\"H7522\"*." + }, + { + "verseNum": 9, + "text": "Also|strong=\"H1571\"* Vashti|strong=\"H2060\"* the|strong=\"H6213\"* queen|strong=\"H4436\"* made|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H4960\"* for|strong=\"H6213\"* the|strong=\"H6213\"* women in|strong=\"H6213\"* the|strong=\"H6213\"* royal|strong=\"H4438\"* house|strong=\"H1004\"* which|strong=\"H1004\"* belonged to|strong=\"H6213\"* King|strong=\"H4428\"* Ahasuerus." + }, + { + "verseNum": 10, + "text": "On|strong=\"H3117\"* the|strong=\"H6440\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, when|strong=\"H3117\"* the|strong=\"H6440\"* heart|strong=\"H3820\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* was|strong=\"H3820\"* merry|strong=\"H2896\"* with|strong=\"H6440\"* wine|strong=\"H3196\"*, he|strong=\"H3117\"* commanded Mehuman|strong=\"H4104\"*, Biztha, Harbona|strong=\"H2726\"*, Bigtha, and|strong=\"H4428\"* Abagtha, Zethar|strong=\"H2242\"*, and|strong=\"H4428\"* Carcass, the|strong=\"H6440\"* seven|strong=\"H7651\"* eunuchs|strong=\"H5631\"* who|strong=\"H4428\"* served|strong=\"H8334\"* in|strong=\"H4428\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H4428\"* Ahasuerus the|strong=\"H6440\"* king|strong=\"H4428\"*," + }, + { + "verseNum": 11, + "text": "to|strong=\"H6440\"* bring Vashti|strong=\"H2060\"* the|strong=\"H6440\"* queen|strong=\"H4436\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"* wearing the|strong=\"H6440\"* royal|strong=\"H4438\"* crown|strong=\"H3804\"*, to|strong=\"H6440\"* show|strong=\"H7200\"* the|strong=\"H6440\"* people|strong=\"H5971\"* and|strong=\"H4428\"* the|strong=\"H6440\"* princes|strong=\"H8269\"* her|strong=\"H7200\"* beauty|strong=\"H3308\"*; for|strong=\"H3588\"* she|strong=\"H1931\"* was|strong=\"H1931\"* beautiful|strong=\"H2896\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H4428\"* the|strong=\"H1697\"* queen|strong=\"H4436\"* Vashti|strong=\"H2060\"* refused|strong=\"H3985\"* to|strong=\"H3027\"* come|strong=\"H2534\"* at|strong=\"H4428\"* the|strong=\"H1697\"* king|strong=\"H4428\"*’s commandment|strong=\"H1697\"* by|strong=\"H3027\"* the|strong=\"H1697\"* eunuchs|strong=\"H5631\"*. Therefore the|strong=\"H1697\"* king|strong=\"H4428\"* was|strong=\"H1697\"* very|strong=\"H3966\"* angry|strong=\"H7107\"*, and|strong=\"H4428\"* his|strong=\"H3027\"* anger|strong=\"H2534\"* burned|strong=\"H1197\"* in|strong=\"H4428\"* him|strong=\"H3027\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H3651\"* the|strong=\"H3605\"* king|strong=\"H4428\"* said|strong=\"H1697\"* to|strong=\"H6256\"* the|strong=\"H3605\"* wise|strong=\"H2450\"* men|strong=\"H2450\"*, who|strong=\"H3605\"* knew|strong=\"H3045\"* the|strong=\"H3605\"* times|strong=\"H6256\"* (for|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H1697\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s custom|strong=\"H3651\"* to|strong=\"H6256\"* consult those|strong=\"H3605\"* who|strong=\"H3605\"* knew|strong=\"H3045\"* law|strong=\"H1881\"* and|strong=\"H4428\"* judgment|strong=\"H1779\"*;" + }, + { + "verseNum": 14, + "text": "and|strong=\"H4428\"* next|strong=\"H7138\"* to|strong=\"H6440\"* him|strong=\"H6440\"* were|strong=\"H8269\"* Carshena|strong=\"H3771\"*, Shethar|strong=\"H8369\"*, Admatha, Tarshish|strong=\"H8659\"*, Meres|strong=\"H4825\"*, Marsena|strong=\"H4826\"*, and|strong=\"H4428\"* Memucan|strong=\"H4462\"*, the|strong=\"H6440\"* seven|strong=\"H7651\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"* and|strong=\"H4428\"* Media|strong=\"H4074\"*, who|strong=\"H3427\"* saw|strong=\"H7200\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s face|strong=\"H6440\"*, and|strong=\"H4428\"* sat|strong=\"H3427\"* first|strong=\"H7223\"* in|strong=\"H3427\"* the|strong=\"H6440\"* kingdom|strong=\"H4438\"*)," + }, + { + "verseNum": 15, + "text": "“What|strong=\"H4100\"* shall|strong=\"H4428\"* we|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H6213\"* Queen|strong=\"H4436\"* Vashti|strong=\"H2060\"* according|strong=\"H5921\"* to|strong=\"H6213\"* law|strong=\"H1881\"*, because|strong=\"H5921\"* she|strong=\"H5921\"* has|strong=\"H4428\"* not|strong=\"H3808\"* done|strong=\"H6213\"* the|strong=\"H5921\"* bidding of|strong=\"H4428\"* the|strong=\"H5921\"* King|strong=\"H4428\"* Ahasuerus by|strong=\"H3027\"* the|strong=\"H5921\"* eunuchs|strong=\"H5631\"*?”" + }, + { + "verseNum": 16, + "text": "Memucan|strong=\"H4462\"* answered before|strong=\"H6440\"* the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H4428\"* the|strong=\"H3605\"* princes|strong=\"H8269\"*, “Vashti|strong=\"H2060\"* the|strong=\"H3605\"* queen|strong=\"H4436\"* has|strong=\"H4428\"* not|strong=\"H3808\"* done|strong=\"H3605\"* wrong|strong=\"H5753\"* to|strong=\"H5921\"* just|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, but|strong=\"H3588\"* also|strong=\"H4428\"* to|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"*, and|strong=\"H4428\"* to|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H5971\"* in|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"* of|strong=\"H4428\"* the|strong=\"H3605\"* King|strong=\"H4428\"* Ahasuerus." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* this|strong=\"H1697\"* deed|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* queen|strong=\"H4436\"* will|strong=\"H4428\"* become|strong=\"H3318\"* known|strong=\"H3808\"* to|strong=\"H3318\"* all|strong=\"H3605\"* women, causing them|strong=\"H5921\"* to|strong=\"H3318\"* show contempt for|strong=\"H3588\"* their|strong=\"H3605\"* husbands|strong=\"H1167\"* when|strong=\"H3588\"* it|strong=\"H5921\"* is|strong=\"H1697\"* reported|strong=\"H3318\"*, ‘King|strong=\"H4428\"* Ahasuerus commanded Vashti|strong=\"H2060\"* the|strong=\"H3605\"* queen|strong=\"H4436\"* to|strong=\"H3318\"* be|strong=\"H3808\"* brought|strong=\"H3318\"* in|strong=\"H5921\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, but|strong=\"H3588\"* she|strong=\"H3588\"* didn’t come|strong=\"H3318\"*.’" + }, + { + "verseNum": 18, + "text": "Today|strong=\"H3117\"*, the|strong=\"H3605\"* princesses|strong=\"H8282\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"* and|strong=\"H4428\"* Media|strong=\"H4074\"* who|strong=\"H3605\"* have|strong=\"H1697\"* heard|strong=\"H8085\"* of|strong=\"H4428\"* the|strong=\"H3605\"* queen|strong=\"H4436\"*’s deed|strong=\"H1697\"* will|strong=\"H4428\"* tell|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s princes|strong=\"H8269\"*. This|strong=\"H2088\"* will|strong=\"H4428\"* cause|strong=\"H1697\"* much|strong=\"H1697\"* contempt and|strong=\"H4428\"* wrath|strong=\"H7110\"*." + }, + { + "verseNum": 19, + "text": "“If it|strong=\"H5414\"* pleases|strong=\"H2895\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, let|strong=\"H5414\"* a|strong=\"H3068\"* royal|strong=\"H4438\"* commandment|strong=\"H1697\"* go|strong=\"H3318\"* from|strong=\"H4480\"* him|strong=\"H5414\"*, and|strong=\"H4428\"* let|strong=\"H5414\"* it|strong=\"H5414\"* be|strong=\"H3808\"* written|strong=\"H3789\"* among|strong=\"H4480\"* the|strong=\"H6440\"* laws|strong=\"H1881\"* of|strong=\"H4428\"* the|strong=\"H6440\"* Persians|strong=\"H6539\"* and|strong=\"H4428\"* the|strong=\"H6440\"* Medes|strong=\"H4074\"*, so|strong=\"H4480\"* that|strong=\"H1697\"* it|strong=\"H5414\"* cannot|strong=\"H3808\"* be|strong=\"H3808\"* altered|strong=\"H5674\"*, that|strong=\"H1697\"* Vashti|strong=\"H2060\"* may|strong=\"H4428\"* never|strong=\"H3808\"* again|strong=\"H6440\"* come|strong=\"H3318\"* before|strong=\"H6440\"* King|strong=\"H4428\"* Ahasuerus; and|strong=\"H4428\"* let|strong=\"H5414\"* the|strong=\"H6440\"* king|strong=\"H4428\"* give|strong=\"H5414\"* her|strong=\"H5414\"* royal|strong=\"H4438\"* estate|strong=\"H4438\"* to|strong=\"H3318\"* another|strong=\"H7468\"* who|strong=\"H4428\"* is|strong=\"H1697\"* better|strong=\"H2896\"* than|strong=\"H4480\"* she|strong=\"H5921\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s decree|strong=\"H6599\"* which|strong=\"H1931\"* he|strong=\"H1931\"* shall|strong=\"H4428\"* make|strong=\"H6213\"* is|strong=\"H1931\"* published|strong=\"H8085\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* his|strong=\"H3605\"* kingdom|strong=\"H4438\"* (for|strong=\"H3588\"* it|strong=\"H5414\"* is|strong=\"H1931\"* great|strong=\"H1419\"*), all|strong=\"H3605\"* the|strong=\"H3605\"* wives will|strong=\"H4428\"* give|strong=\"H5414\"* their|strong=\"H3605\"* husbands|strong=\"H1167\"* honor|strong=\"H3366\"*, both|strong=\"H3605\"* great|strong=\"H1419\"* and|strong=\"H4428\"* small|strong=\"H6996\"*.”" + }, + { + "verseNum": 21, + "text": "This|strong=\"H6213\"* advice|strong=\"H1697\"* pleased|strong=\"H3190\"* the|strong=\"H6213\"* king|strong=\"H4428\"* and|strong=\"H4428\"* the|strong=\"H6213\"* princes|strong=\"H8269\"*, and|strong=\"H4428\"* the|strong=\"H6213\"* king|strong=\"H4428\"* did|strong=\"H6213\"* according to|strong=\"H6213\"* the|strong=\"H6213\"* word|strong=\"H1697\"* of|strong=\"H4428\"* Memucan|strong=\"H4462\"*:" + }, + { + "verseNum": 22, + "text": "for|strong=\"H7971\"* he|strong=\"H3605\"* sent|strong=\"H7971\"* letters|strong=\"H5612\"* into|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s provinces|strong=\"H4082\"*, into|strong=\"H1961\"* every|strong=\"H3605\"* province|strong=\"H4082\"* according to|strong=\"H1696\"* its|strong=\"H3605\"* writing|strong=\"H3791\"*, and|strong=\"H7971\"* to|strong=\"H1696\"* every|strong=\"H3605\"* people|strong=\"H5971\"* in|strong=\"H1004\"* their|strong=\"H3605\"* language|strong=\"H3956\"*, that|strong=\"H5971\"* every|strong=\"H3605\"* man|strong=\"H3605\"* should|strong=\"H4428\"* rule|strong=\"H8323\"* his|strong=\"H3605\"* own|strong=\"H1961\"* house|strong=\"H1004\"*, speaking|strong=\"H1696\"* in|strong=\"H1004\"* the|strong=\"H3605\"* language|strong=\"H3956\"* of|strong=\"H4428\"* his|strong=\"H3605\"* own|strong=\"H1961\"* people|strong=\"H5971\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H5921\"* these|strong=\"H6213\"* things|strong=\"H1697\"*, when|strong=\"H6213\"* the|strong=\"H5921\"* wrath|strong=\"H2534\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Ahasuerus was|strong=\"H1697\"* pacified|strong=\"H7918\"*, he|strong=\"H6213\"* remembered|strong=\"H2142\"* Vashti|strong=\"H2060\"*, and|strong=\"H4428\"* what|strong=\"H1697\"* she|strong=\"H5921\"* had|strong=\"H4428\"* done|strong=\"H6213\"*, and|strong=\"H4428\"* what|strong=\"H1697\"* was|strong=\"H1697\"* decreed|strong=\"H1504\"* against|strong=\"H5921\"* her|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H4428\"* the|strong=\"H1245\"* king|strong=\"H4428\"*’s servants|strong=\"H5288\"* who|strong=\"H5288\"* served|strong=\"H8334\"* him|strong=\"H1245\"* said, “Let beautiful|strong=\"H2896\"* young|strong=\"H5288\"* virgins|strong=\"H1330\"* be|strong=\"H4428\"* sought|strong=\"H1245\"* for|strong=\"H4428\"* the|strong=\"H1245\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 3, + "text": "Let|strong=\"H5414\"* the|strong=\"H3605\"* king|strong=\"H4428\"* appoint|strong=\"H6485\"* officers|strong=\"H5631\"* in|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"* of|strong=\"H4428\"* his|strong=\"H3605\"* kingdom|strong=\"H4438\"*, that|strong=\"H3605\"* they|strong=\"H3605\"* may|strong=\"H4428\"* gather|strong=\"H6908\"* together|strong=\"H6908\"* all|strong=\"H3605\"* the|strong=\"H3605\"* beautiful|strong=\"H2896\"* young|strong=\"H5291\"* virgins|strong=\"H1330\"* to|strong=\"H5414\"* the|strong=\"H3605\"* citadel|strong=\"H1002\"* of|strong=\"H4428\"* Susa|strong=\"H7800\"*, to|strong=\"H5414\"* the|strong=\"H3605\"* women|strong=\"H1330\"*’s house|strong=\"H1004\"*, to|strong=\"H5414\"* the|strong=\"H3605\"* custody|strong=\"H3027\"* of|strong=\"H4428\"* Hegai|strong=\"H1896\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s eunuch|strong=\"H5631\"*, keeper|strong=\"H8104\"* of|strong=\"H4428\"* the|strong=\"H3605\"* women|strong=\"H1330\"*. Let|strong=\"H5414\"* cosmetics|strong=\"H8562\"* be|strong=\"H3027\"* given|strong=\"H5414\"* them|strong=\"H5414\"*;" + }, + { + "verseNum": 4, + "text": "and|strong=\"H4428\"* let|strong=\"H3651\"* the|strong=\"H6213\"* maiden|strong=\"H5291\"* who|strong=\"H4428\"* pleases|strong=\"H5869\"* the|strong=\"H6213\"* king|strong=\"H4428\"* be|strong=\"H1697\"* queen|strong=\"H4427\"* instead|strong=\"H8478\"* of|strong=\"H4428\"* Vashti|strong=\"H2060\"*.” The|strong=\"H6213\"* thing|strong=\"H1697\"* pleased|strong=\"H3190\"* the|strong=\"H6213\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* he|strong=\"H3651\"* did|strong=\"H6213\"* so|strong=\"H3651\"*." + }, + { + "verseNum": 5, + "text": "There|strong=\"H1961\"* was|strong=\"H8034\"* a|strong=\"H3068\"* certain Jew|strong=\"H3064\"* in|strong=\"H1121\"* the|strong=\"H1961\"* citadel|strong=\"H1002\"* of|strong=\"H1121\"* Susa|strong=\"H7800\"* whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Mordecai|strong=\"H4782\"*, the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jair|strong=\"H2971\"*, the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimei|strong=\"H8096\"*, the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kish|strong=\"H7027\"*, a|strong=\"H3068\"* Benjamite|strong=\"H1145\"*," + }, + { + "verseNum": 6, + "text": "who|strong=\"H3063\"* had|strong=\"H4428\"* been carried|strong=\"H1540\"* away|strong=\"H1540\"* from|strong=\"H1540\"* Jerusalem|strong=\"H3389\"* with|strong=\"H5973\"* the|strong=\"H5973\"* captives|strong=\"H1473\"* who|strong=\"H3063\"* had|strong=\"H4428\"* been carried|strong=\"H1540\"* away|strong=\"H1540\"* with|strong=\"H5973\"* Jeconiah|strong=\"H3204\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, whom Nebuchadnezzar|strong=\"H5019\"* the|strong=\"H5973\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon had|strong=\"H4428\"* carried|strong=\"H1540\"* away|strong=\"H1540\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H1931\"* brought|strong=\"H3947\"* up|strong=\"H3947\"* Hadassah|strong=\"H1919\"*, that|strong=\"H3588\"* is|strong=\"H1931\"*, Esther, his|strong=\"H3947\"* uncle|strong=\"H1730\"*’s daughter|strong=\"H1323\"*; for|strong=\"H3588\"* she|strong=\"H1931\"* had|strong=\"H1961\"* neither father nor|strong=\"H8389\"* mother. The|strong=\"H3588\"* maiden|strong=\"H5291\"* was|strong=\"H1961\"* fair|strong=\"H3303\"* and|strong=\"H2896\"* beautiful|strong=\"H3303\"*; and|strong=\"H2896\"* when|strong=\"H3588\"* her|strong=\"H3947\"* father and|strong=\"H2896\"* mother were|strong=\"H1961\"* dead|strong=\"H4194\"*, Mordecai|strong=\"H4782\"* took|strong=\"H3947\"* her|strong=\"H3947\"* for|strong=\"H3588\"* his|strong=\"H3947\"* own|strong=\"H1961\"* daughter|strong=\"H1323\"*." + }, + { + "verseNum": 8, + "text": "So|strong=\"H3947\"*, when|strong=\"H1961\"* the|strong=\"H8085\"* king|strong=\"H4428\"*’s commandment|strong=\"H1697\"* and|strong=\"H4428\"* his|strong=\"H8104\"* decree|strong=\"H1881\"* was|strong=\"H1961\"* heard|strong=\"H8085\"*, and|strong=\"H4428\"* when|strong=\"H1961\"* many|strong=\"H7227\"* maidens|strong=\"H5291\"* were|strong=\"H1961\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* to|strong=\"H1961\"* the|strong=\"H8085\"* citadel|strong=\"H1002\"* of|strong=\"H4428\"* Susa|strong=\"H7800\"*, to|strong=\"H1961\"* the|strong=\"H8085\"* custody|strong=\"H3027\"* of|strong=\"H4428\"* Hegai|strong=\"H1896\"*, Esther was|strong=\"H1961\"* taken|strong=\"H3947\"* into|strong=\"H3027\"* the|strong=\"H8085\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, to|strong=\"H1961\"* the|strong=\"H8085\"* custody|strong=\"H3027\"* of|strong=\"H4428\"* Hegai|strong=\"H1896\"*, keeper|strong=\"H8104\"* of|strong=\"H4428\"* the|strong=\"H8085\"* women|strong=\"H5291\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H6440\"* maiden|strong=\"H5291\"* pleased|strong=\"H3190\"* him|strong=\"H5414\"*, and|strong=\"H4428\"* she|strong=\"H6440\"* obtained|strong=\"H5375\"* kindness|strong=\"H2617\"* from|strong=\"H6440\"* him|strong=\"H5414\"*. He|strong=\"H1004\"* quickly gave|strong=\"H5414\"* her|strong=\"H5414\"* cosmetics|strong=\"H8562\"* and|strong=\"H4428\"* her|strong=\"H5414\"* portions|strong=\"H4490\"* of|strong=\"H4428\"* food|strong=\"H1004\"*, and|strong=\"H4428\"* the|strong=\"H6440\"* seven|strong=\"H7651\"* choice|strong=\"H2896\"* maidens|strong=\"H5291\"* who|strong=\"H4428\"* were|strong=\"H5869\"* to|strong=\"H5414\"* be|strong=\"H5414\"* given|strong=\"H5414\"* her|strong=\"H5414\"* out|strong=\"H5414\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*. He|strong=\"H1004\"* moved her|strong=\"H5414\"* and|strong=\"H4428\"* her|strong=\"H5414\"* maidens|strong=\"H5291\"* to|strong=\"H5414\"* the|strong=\"H6440\"* best|strong=\"H2896\"* place|strong=\"H5414\"* in|strong=\"H1004\"* the|strong=\"H6440\"* women|strong=\"H5291\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 10, + "text": "Esther had|strong=\"H3588\"* not|strong=\"H3808\"* made|strong=\"H5046\"* known|strong=\"H5046\"* her|strong=\"H5046\"* people|strong=\"H5971\"* nor|strong=\"H3808\"* her|strong=\"H5046\"* relatives|strong=\"H4138\"*, because|strong=\"H3588\"* Mordecai|strong=\"H4782\"* had|strong=\"H3588\"* instructed|strong=\"H6680\"* her|strong=\"H5046\"* that|strong=\"H3588\"* she|strong=\"H3588\"* should|strong=\"H3588\"* not|strong=\"H3808\"* make|strong=\"H5046\"* it|strong=\"H5921\"* known|strong=\"H5046\"*." + }, + { + "verseNum": 11, + "text": "Mordecai|strong=\"H4782\"* walked|strong=\"H1980\"* every|strong=\"H3605\"* day|strong=\"H3117\"* in|strong=\"H1980\"* front|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H3605\"* court|strong=\"H2691\"* of|strong=\"H1004\"* the|strong=\"H3605\"* women’s house|strong=\"H1004\"*, to|strong=\"H1980\"* find|strong=\"H3045\"* out|strong=\"H6213\"* how|strong=\"H4100\"* Esther was|strong=\"H3117\"* doing|strong=\"H6213\"*, and|strong=\"H1980\"* what|strong=\"H4100\"* would|strong=\"H6213\"* become|strong=\"H6213\"* of|strong=\"H1004\"* her|strong=\"H3605\"*." + }, + { + "verseNum": 12, + "text": "Each|strong=\"H3117\"* young|strong=\"H5291\"* woman|strong=\"H5291\"*’s turn|strong=\"H8447\"* came|strong=\"H1961\"* to|strong=\"H1961\"* go|strong=\"H1961\"* in|strong=\"H4428\"* to|strong=\"H1961\"* King|strong=\"H4428\"* Ahasuerus after|strong=\"H7093\"* her|strong=\"H4390\"* purification|strong=\"H8562\"* for|strong=\"H3588\"* twelve|strong=\"H8147\"* months|strong=\"H2320\"* (for|strong=\"H3588\"* so|strong=\"H3651\"* were|strong=\"H1961\"* the|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H4428\"* their|strong=\"H4390\"* purification|strong=\"H8562\"* accomplished|strong=\"H4390\"*, six|strong=\"H8337\"* months|strong=\"H2320\"* with|strong=\"H4390\"* oil|strong=\"H8081\"* of|strong=\"H4428\"* myrrh|strong=\"H4753\"*, and|strong=\"H4428\"* six|strong=\"H8337\"* months|strong=\"H2320\"* with|strong=\"H4390\"* sweet|strong=\"H1314\"* fragrances and|strong=\"H4428\"* with|strong=\"H4390\"* preparations for|strong=\"H3588\"* beautifying women|strong=\"H5291\"*)." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3605\"* young|strong=\"H5291\"* woman|strong=\"H5291\"* then|strong=\"H2088\"* came|strong=\"H4428\"* to|strong=\"H5704\"* the|strong=\"H3605\"* king|strong=\"H4428\"* like|strong=\"H5973\"* this|strong=\"H2088\"*: whatever|strong=\"H3605\"* she|strong=\"H5704\"* desired was|strong=\"H4428\"* given|strong=\"H5414\"* her|strong=\"H3605\"* to|strong=\"H5704\"* go|strong=\"H4428\"* with|strong=\"H5973\"* her|strong=\"H3605\"* out|strong=\"H5414\"* of|strong=\"H4428\"* the|strong=\"H3605\"* women|strong=\"H5291\"*’s house|strong=\"H1004\"* to|strong=\"H5704\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 14, + "text": "In|strong=\"H1004\"* the|strong=\"H3588\"* evening|strong=\"H6153\"* she|strong=\"H1931\"* went|strong=\"H4428\"*, and|strong=\"H7725\"* on|strong=\"H3027\"* the|strong=\"H3588\"* next|strong=\"H3027\"* day|strong=\"H1242\"* she|strong=\"H1931\"* returned|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H3588\"* second|strong=\"H8145\"* women’s house|strong=\"H1004\"*, to|strong=\"H7725\"* the|strong=\"H3588\"* custody|strong=\"H3027\"* of|strong=\"H4428\"* Shaashgaz|strong=\"H8190\"*, the|strong=\"H3588\"* king|strong=\"H4428\"*’s eunuch|strong=\"H5631\"*, who|strong=\"H1931\"* kept|strong=\"H8104\"* the|strong=\"H3588\"* concubines|strong=\"H6370\"*. She|strong=\"H1931\"* came|strong=\"H7725\"* in|strong=\"H1004\"* to|strong=\"H7725\"* the|strong=\"H3588\"* king|strong=\"H4428\"* no|strong=\"H3808\"* more|strong=\"H5750\"*, unless|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"* delighted|strong=\"H2654\"* in|strong=\"H1004\"* her|strong=\"H7121\"*, and|strong=\"H7725\"* she|strong=\"H1931\"* was|strong=\"H8034\"* called|strong=\"H7121\"* by|strong=\"H3027\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H1961\"* when|strong=\"H3588\"* the|strong=\"H3605\"* turn|strong=\"H8447\"* of|strong=\"H4428\"* Esther, the|strong=\"H3605\"* daughter|strong=\"H1323\"* of|strong=\"H4428\"* Abihail the|strong=\"H3605\"* uncle|strong=\"H1730\"* of|strong=\"H4428\"* Mordecai|strong=\"H4782\"*, who|strong=\"H3605\"* had|strong=\"H1961\"* taken|strong=\"H3947\"* her|strong=\"H3605\"* for|strong=\"H3588\"* his|strong=\"H3605\"* daughter|strong=\"H1323\"*, came|strong=\"H1961\"* to|strong=\"H1961\"* go|strong=\"H1961\"* in|strong=\"H4428\"* to|strong=\"H1961\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, she|strong=\"H3588\"* required|strong=\"H1245\"* nothing|strong=\"H3808\"* but|strong=\"H3588\"* what|strong=\"H1697\"* Hegai|strong=\"H1896\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s eunuch|strong=\"H5631\"*, the|strong=\"H3605\"* keeper|strong=\"H8104\"* of|strong=\"H4428\"* the|strong=\"H3605\"* women|strong=\"H1323\"*, advised. Esther obtained|strong=\"H5375\"* favor|strong=\"H2580\"* in|strong=\"H4428\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H4428\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* looked|strong=\"H7200\"* at|strong=\"H4428\"* her|strong=\"H3605\"*." + }, + { + "verseNum": 16, + "text": "So|strong=\"H3947\"* Esther was|strong=\"H1931\"* taken|strong=\"H3947\"* to|strong=\"H4428\"* King|strong=\"H4428\"* Ahasuerus into|strong=\"H3947\"* his|strong=\"H3947\"* royal|strong=\"H4438\"* house|strong=\"H1004\"* in|strong=\"H8141\"* the|strong=\"H3947\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3947\"* month|strong=\"H2320\"* Tebeth|strong=\"H2887\"*, in|strong=\"H8141\"* the|strong=\"H3947\"* seventh|strong=\"H7651\"* year|strong=\"H8141\"* of|strong=\"H4428\"* his|strong=\"H3947\"* reign|strong=\"H4438\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* loved Esther more than|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* women|strong=\"H1330\"*, and|strong=\"H4428\"* she|strong=\"H6440\"* obtained|strong=\"H5375\"* favor|strong=\"H2580\"* and|strong=\"H4428\"* kindness|strong=\"H2617\"* in|strong=\"H4428\"* his|strong=\"H3605\"* sight|strong=\"H6440\"* more than|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* virgins|strong=\"H1330\"*; so|strong=\"H5375\"* that|strong=\"H3605\"* he|strong=\"H3605\"* set|strong=\"H7760\"* the|strong=\"H3605\"* royal|strong=\"H4438\"* crown|strong=\"H3804\"* on|strong=\"H7760\"* her|strong=\"H3605\"* head|strong=\"H7218\"*, and|strong=\"H4428\"* made|strong=\"H7760\"* her|strong=\"H3605\"* queen|strong=\"H4427\"* instead|strong=\"H8478\"* of|strong=\"H4428\"* Vashti|strong=\"H2060\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H5414\"* the|strong=\"H3605\"* king|strong=\"H4428\"* made|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* feast|strong=\"H4960\"* for|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H4428\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*, even|strong=\"H6213\"* Esther’s feast|strong=\"H4960\"*; and|strong=\"H4428\"* he|strong=\"H6213\"* proclaimed a|strong=\"H3068\"* holiday|strong=\"H2010\"* in|strong=\"H6213\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"*, and|strong=\"H4428\"* gave|strong=\"H5414\"* gifts|strong=\"H4864\"* according|strong=\"H3027\"* to|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s bounty|strong=\"H3027\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3427\"* the|strong=\"H6908\"* virgins|strong=\"H1330\"* were|strong=\"H4428\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* the|strong=\"H6908\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, Mordecai|strong=\"H4782\"* was|strong=\"H4428\"* sitting|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6908\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"*." + }, + { + "verseNum": 20, + "text": "Esther had|strong=\"H1961\"* not|strong=\"H6213\"* yet|strong=\"H5921\"* made|strong=\"H6213\"* known|strong=\"H5046\"* her|strong=\"H5046\"* relatives|strong=\"H4138\"* nor her|strong=\"H5046\"* people|strong=\"H5971\"*, as|strong=\"H1961\"* Mordecai|strong=\"H4782\"* had|strong=\"H1961\"* commanded|strong=\"H6680\"* her|strong=\"H5046\"*; for|strong=\"H5921\"* Esther obeyed Mordecai|strong=\"H4782\"*, like|strong=\"H1961\"* she|strong=\"H5921\"* did|strong=\"H6213\"* when|strong=\"H1961\"* she|strong=\"H5921\"* was|strong=\"H1961\"* brought|strong=\"H6213\"* up|strong=\"H5921\"* by|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "In|strong=\"H3427\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, while|strong=\"H3117\"* Mordecai|strong=\"H4782\"* was|strong=\"H3117\"* sitting|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H8104\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"*, two|strong=\"H8147\"* of|strong=\"H4428\"* the|strong=\"H8104\"* king|strong=\"H4428\"*’s eunuchs|strong=\"H5631\"*, Bigthan and|strong=\"H7971\"* Teresh|strong=\"H8657\"*, who|strong=\"H3427\"* were|strong=\"H3117\"* doorkeepers|strong=\"H8104\"*, were|strong=\"H3117\"* angry|strong=\"H7107\"*, and|strong=\"H7971\"* sought|strong=\"H1245\"* to|strong=\"H7971\"* lay|strong=\"H7971\"* hands|strong=\"H3027\"* on|strong=\"H3117\"* the|strong=\"H8104\"* King|strong=\"H4428\"* Ahasuerus." + }, + { + "verseNum": 22, + "text": "This|strong=\"H1697\"* thing|strong=\"H1697\"* became|strong=\"H1697\"* known|strong=\"H3045\"* to|strong=\"H4428\"* Mordecai|strong=\"H4782\"*, who|strong=\"H4428\"* informed|strong=\"H3045\"* Esther the|strong=\"H3045\"* queen|strong=\"H4436\"*; and|strong=\"H4428\"* Esther informed|strong=\"H3045\"* the|strong=\"H3045\"* king|strong=\"H4428\"* in|strong=\"H4428\"* Mordecai|strong=\"H4782\"*’s name|strong=\"H8034\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"H3117\"* this|strong=\"H1697\"* matter|strong=\"H1697\"* was|strong=\"H1697\"* investigated|strong=\"H1245\"*, and|strong=\"H4428\"* it|strong=\"H5921\"* was|strong=\"H1697\"* found|strong=\"H4672\"* to|strong=\"H5921\"* be|strong=\"H1697\"* so|strong=\"H1697\"*, they|strong=\"H3117\"* were|strong=\"H3117\"* both|strong=\"H8147\"* hanged|strong=\"H8518\"* on|strong=\"H5921\"* a|strong=\"H3068\"* gallows|strong=\"H6086\"*; and|strong=\"H4428\"* it|strong=\"H5921\"* was|strong=\"H1697\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H6440\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H6440\"* chronicles|strong=\"H1697\"* in|strong=\"H5921\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s presence|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H5921\"* these|strong=\"H7760\"* things|strong=\"H1697\"* King|strong=\"H4428\"* Ahasuerus promoted|strong=\"H1431\"* Haman|strong=\"H2001\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hammedatha|strong=\"H4099\"* the|strong=\"H3605\"* Agagite, and|strong=\"H1121\"* advanced|strong=\"H5375\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* set|strong=\"H7760\"* his|strong=\"H3605\"* seat|strong=\"H3678\"* above|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* who|strong=\"H3605\"* were|strong=\"H1121\"* with|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s servants|strong=\"H5650\"* who|strong=\"H3605\"* were|strong=\"H5650\"* in|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"* bowed|strong=\"H7812\"* down|strong=\"H7812\"* and|strong=\"H4428\"* paid|strong=\"H7812\"* homage|strong=\"H7812\"* to|strong=\"H4428\"* Haman|strong=\"H2001\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* had|strong=\"H4428\"* so|strong=\"H3651\"* commanded|strong=\"H6680\"* concerning|strong=\"H6680\"* him|strong=\"H6680\"*. But|strong=\"H3588\"* Mordecai|strong=\"H4782\"* didn’t bow|strong=\"H7812\"* down|strong=\"H7812\"* or|strong=\"H3808\"* pay him|strong=\"H6680\"* homage|strong=\"H7812\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H5674\"* the|strong=\"H5674\"* king|strong=\"H4428\"*’s servants|strong=\"H5650\"* who|strong=\"H5650\"* were|strong=\"H5650\"* in|strong=\"H4428\"* the|strong=\"H5674\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"* said to|strong=\"H4428\"* Mordecai|strong=\"H4782\"*, “Why|strong=\"H4069\"* do you|strong=\"H4428\"* disobey the|strong=\"H5674\"* king|strong=\"H4428\"*’s commandment|strong=\"H4687\"*?”" + }, + { + "verseNum": 4, + "text": "Now|strong=\"H1961\"* it|strong=\"H1931\"* came|strong=\"H1961\"* to|strong=\"H1961\"* pass|strong=\"H1961\"*, when|strong=\"H3588\"* they|strong=\"H1992\"* spoke|strong=\"H1697\"* daily|strong=\"H3117\"* to|strong=\"H1961\"* him|strong=\"H5046\"*, and|strong=\"H3117\"* he|strong=\"H1931\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1961\"* them|strong=\"H1992\"*, that|strong=\"H3588\"* they|strong=\"H1992\"* told|strong=\"H5046\"* Haman|strong=\"H2001\"*, to|strong=\"H1961\"* see|strong=\"H7200\"* whether|strong=\"H7200\"* Mordecai|strong=\"H4782\"*’s reason|strong=\"H1697\"* would|strong=\"H1697\"* stand|strong=\"H5975\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* had|strong=\"H1961\"* told|strong=\"H5046\"* them|strong=\"H1992\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1961\"* a|strong=\"H3068\"* Jew|strong=\"H3064\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H3588\"* Haman|strong=\"H2001\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Mordecai|strong=\"H4782\"* didn’t bow|strong=\"H7812\"* down|strong=\"H7812\"* nor|strong=\"H3588\"* pay him|strong=\"H7200\"* homage|strong=\"H7812\"*, Haman|strong=\"H2001\"* was|strong=\"H2001\"* full|strong=\"H4390\"* of|strong=\"H4390\"* wrath|strong=\"H2534\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"H3588\"* he|strong=\"H3588\"* scorned the|strong=\"H3605\"* thought|strong=\"H5869\"* of|strong=\"H3027\"* laying hands|strong=\"H3027\"* on|strong=\"H3027\"* Mordecai|strong=\"H4782\"* alone, for|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3588\"* made|strong=\"H3605\"* known|strong=\"H5046\"* to|strong=\"H7971\"* him|strong=\"H7971\"* Mordecai|strong=\"H4782\"*’s people|strong=\"H5971\"*. Therefore|strong=\"H3588\"* Haman|strong=\"H2001\"* sought|strong=\"H1245\"* to|strong=\"H7971\"* destroy|strong=\"H8045\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* who|strong=\"H3605\"* were|strong=\"H5971\"* throughout|strong=\"H3605\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* kingdom|strong=\"H4438\"* of|strong=\"H3027\"* Ahasuerus, even|strong=\"H3588\"* Mordecai|strong=\"H4782\"*’s people|strong=\"H5971\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H8141\"* the|strong=\"H6440\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H6440\"* month|strong=\"H2320\"* Nisan|strong=\"H5212\"*, in|strong=\"H8141\"* the|strong=\"H6440\"* twelfth|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Ahasuerus, they|strong=\"H3117\"* cast|strong=\"H5307\"* Pur|strong=\"H6332\"*, that|strong=\"H3117\"* is|strong=\"H1931\"*, the|strong=\"H6440\"* lot|strong=\"H1486\"*, before|strong=\"H6440\"* Haman|strong=\"H2001\"* from|strong=\"H6440\"* day|strong=\"H3117\"* to|strong=\"H6440\"* day|strong=\"H3117\"*, and|strong=\"H4428\"* from|strong=\"H6440\"* month|strong=\"H2320\"* to|strong=\"H6440\"* month|strong=\"H2320\"*, and|strong=\"H4428\"* chose the|strong=\"H6440\"* twelfth|strong=\"H8147\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H6440\"* month|strong=\"H2320\"* Adar." + }, + { + "verseNum": 8, + "text": "Haman|strong=\"H2001\"* said to|strong=\"H6213\"* King|strong=\"H4428\"* Ahasuerus, “There|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* certain people|strong=\"H5971\"* scattered|strong=\"H6340\"* abroad|strong=\"H6504\"* and|strong=\"H4428\"* dispersed|strong=\"H6504\"* among|strong=\"H5971\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* in|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"* of|strong=\"H4428\"* your|strong=\"H3605\"* kingdom|strong=\"H4438\"*, and|strong=\"H4428\"* their|strong=\"H3605\"* laws|strong=\"H1881\"* are|strong=\"H5971\"* different from|strong=\"H5971\"* other|strong=\"H3605\"* people|strong=\"H5971\"*’s. They|strong=\"H6213\"* don’t keep|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s laws|strong=\"H1881\"*. Therefore|strong=\"H5971\"* it|strong=\"H6213\"* is|strong=\"H3426\"* not|strong=\"H6213\"* for|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s profit|strong=\"H7737\"* to|strong=\"H6213\"* allow|strong=\"H3240\"* them|strong=\"H6213\"* to|strong=\"H6213\"* remain." + }, + { + "verseNum": 9, + "text": "If it|strong=\"H5921\"* pleases|strong=\"H2895\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, let it|strong=\"H5921\"* be|strong=\"H3027\"* written|strong=\"H3789\"* that|strong=\"H4428\"* they|strong=\"H5921\"* be|strong=\"H3027\"* destroyed; and|strong=\"H3701\"* I|strong=\"H5921\"* will|strong=\"H4428\"* pay|strong=\"H8254\"* ten|strong=\"H6235\"* thousand talents|strong=\"H3603\"*+ 3:9 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces* of|strong=\"H4428\"* silver|strong=\"H3701\"* into|strong=\"H5921\"* the|strong=\"H5921\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* those|strong=\"H5921\"* who|strong=\"H4428\"* are|strong=\"H3027\"* in|strong=\"H5921\"* charge|strong=\"H5921\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s business|strong=\"H4399\"*, to|strong=\"H6213\"* bring|strong=\"H6213\"* it|strong=\"H5921\"* into|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s treasuries|strong=\"H1595\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* took|strong=\"H5493\"* his|strong=\"H5414\"* ring|strong=\"H2885\"* from|strong=\"H5493\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*, and|strong=\"H1121\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5921\"* Haman|strong=\"H2001\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hammedatha|strong=\"H4099\"* the|strong=\"H5921\"* Agagite, the|strong=\"H5921\"* Jews|strong=\"H3064\"*’ enemy|strong=\"H6887\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* said to|strong=\"H6213\"* Haman|strong=\"H2001\"*, “The|strong=\"H5414\"* silver|strong=\"H3701\"* is|strong=\"H2896\"* given|strong=\"H5414\"* to|strong=\"H6213\"* you|strong=\"H5414\"*, the|strong=\"H5414\"* people|strong=\"H5971\"* also|strong=\"H6213\"*, to|strong=\"H6213\"* do|strong=\"H6213\"* with|strong=\"H6213\"* them|strong=\"H5414\"* as|strong=\"H6213\"* it|strong=\"H5414\"* seems|strong=\"H2896\"* good|strong=\"H2896\"* to|strong=\"H6213\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s scribes|strong=\"H5608\"* were|strong=\"H5971\"* called|strong=\"H7121\"* in|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* thirteenth|strong=\"H7969\"* day|strong=\"H3117\"* of|strong=\"H4428\"* the|strong=\"H3605\"* month|strong=\"H2320\"*; and|strong=\"H4428\"* all|strong=\"H3605\"* that|strong=\"H5971\"* Haman|strong=\"H2001\"* commanded|strong=\"H6680\"* was|strong=\"H8034\"* written|strong=\"H3789\"* to|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s local governors|strong=\"H6346\"*, and|strong=\"H4428\"* to|strong=\"H5921\"* the|strong=\"H3605\"* governors|strong=\"H6346\"* who|strong=\"H3605\"* were|strong=\"H5971\"* over|strong=\"H5921\"* every|strong=\"H3605\"* province|strong=\"H4082\"*, and|strong=\"H4428\"* to|strong=\"H5921\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* every|strong=\"H3605\"* people|strong=\"H5971\"*, to|strong=\"H5921\"* every|strong=\"H3605\"* province|strong=\"H4082\"* according|strong=\"H5921\"* to|strong=\"H5921\"* its|strong=\"H3605\"* writing|strong=\"H3791\"*, and|strong=\"H4428\"* to|strong=\"H5921\"* every|strong=\"H3605\"* people|strong=\"H5971\"* in|strong=\"H5921\"* their|strong=\"H3605\"* language|strong=\"H3956\"*. It|strong=\"H7121\"* was|strong=\"H8034\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Ahasuerus, and|strong=\"H4428\"* it|strong=\"H7121\"* was|strong=\"H8034\"* sealed|strong=\"H2856\"* with|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s ring|strong=\"H2885\"*." + }, + { + "verseNum": 13, + "text": "Letters|strong=\"H5612\"* were|strong=\"H3117\"* sent|strong=\"H7971\"* by|strong=\"H3027\"* couriers|strong=\"H7323\"* into|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s provinces|strong=\"H4082\"*, to|strong=\"H5704\"* destroy|strong=\"H8045\"*, to|strong=\"H5704\"* kill|strong=\"H2026\"*, and|strong=\"H7971\"* to|strong=\"H5704\"* cause to|strong=\"H5704\"* perish, all|strong=\"H3605\"* Jews|strong=\"H3064\"*, both|strong=\"H8147\"* young|strong=\"H5288\"* and|strong=\"H7971\"* old|strong=\"H2205\"*, little|strong=\"H2945\"* children|strong=\"H2945\"* and|strong=\"H7971\"* women|strong=\"H2205\"*, in|strong=\"H4428\"* one|strong=\"H3605\"* day|strong=\"H3117\"*, even|strong=\"H5704\"* on|strong=\"H3117\"* the|strong=\"H3605\"* thirteenth|strong=\"H7969\"* day|strong=\"H3117\"* of|strong=\"H4428\"* the|strong=\"H3605\"* twelfth|strong=\"H8147\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* month|strong=\"H2320\"* Adar, and|strong=\"H7971\"* to|strong=\"H5704\"* plunder|strong=\"H7998\"* their|strong=\"H3605\"* possessions|strong=\"H7998\"*." + }, + { + "verseNum": 14, + "text": "A|strong=\"H3068\"* copy|strong=\"H6572\"* of|strong=\"H3117\"* the|strong=\"H3605\"* letter|strong=\"H3791\"*, that|strong=\"H5971\"* the|strong=\"H3605\"* decree|strong=\"H1881\"* should|strong=\"H3117\"* be|strong=\"H1961\"* given|strong=\"H5414\"* out|strong=\"H5414\"* in|strong=\"H3117\"* every|strong=\"H3605\"* province|strong=\"H4082\"*, was|strong=\"H1961\"* published|strong=\"H1540\"* to|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"*, that|strong=\"H5971\"* they|strong=\"H3117\"* should|strong=\"H3117\"* be|strong=\"H1961\"* ready|strong=\"H6264\"* against|strong=\"H3605\"* that|strong=\"H5971\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5414\"* couriers|strong=\"H7323\"* went|strong=\"H3318\"* out|strong=\"H3318\"* in|strong=\"H3427\"* haste by|strong=\"H3318\"* the|strong=\"H5414\"* king|strong=\"H4428\"*’s commandment|strong=\"H1697\"*, and|strong=\"H4428\"* the|strong=\"H5414\"* decree|strong=\"H1881\"* was|strong=\"H1697\"* given|strong=\"H5414\"* out|strong=\"H3318\"* in|strong=\"H3427\"* the|strong=\"H5414\"* citadel|strong=\"H1002\"* of|strong=\"H4428\"* Susa|strong=\"H7800\"*. The|strong=\"H5414\"* king|strong=\"H4428\"* and|strong=\"H4428\"* Haman|strong=\"H2001\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* to|strong=\"H3318\"* drink|strong=\"H8354\"*; but|strong=\"H4428\"* the|strong=\"H5414\"* city|strong=\"H5892\"* of|strong=\"H4428\"* Susa|strong=\"H7800\"* was|strong=\"H1697\"* perplexed." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3847\"* when|strong=\"H3318\"* Mordecai|strong=\"H4782\"* found|strong=\"H3045\"* out|strong=\"H3318\"* all|strong=\"H3605\"* that|strong=\"H3045\"* was|strong=\"H5892\"* done|strong=\"H6213\"*, Mordecai|strong=\"H4782\"* tore|strong=\"H7167\"* his|strong=\"H3605\"* clothes|strong=\"H3847\"* and|strong=\"H1419\"* put|strong=\"H3847\"* on|strong=\"H3847\"* sackcloth|strong=\"H8242\"* with|strong=\"H3847\"* ashes, and|strong=\"H1419\"* went|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H1419\"* wailed|strong=\"H2199\"* loudly|strong=\"H1419\"* and|strong=\"H1419\"* bitterly|strong=\"H4751\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3588\"* came|strong=\"H4428\"* even|strong=\"H5704\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"*, for|strong=\"H3588\"* no|strong=\"H6440\"* one|strong=\"H3588\"* is|strong=\"H4428\"* allowed inside|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"* clothed|strong=\"H3830\"* with|strong=\"H6440\"* sackcloth|strong=\"H8242\"*." + }, + { + "verseNum": 3, + "text": "In|strong=\"H4428\"* every|strong=\"H3605\"* province|strong=\"H4082\"*, wherever|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s commandment|strong=\"H1697\"* and|strong=\"H4428\"* his|strong=\"H3605\"* decree|strong=\"H1881\"* came|strong=\"H5060\"*, there|strong=\"H3605\"* was|strong=\"H1697\"* great|strong=\"H1419\"* mourning|strong=\"H4553\"* among|strong=\"H7227\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"*, and|strong=\"H4428\"* fasting|strong=\"H6685\"*, and|strong=\"H4428\"* weeping|strong=\"H1065\"*, and|strong=\"H4428\"* wailing|strong=\"H4553\"*; and|strong=\"H4428\"* many|strong=\"H7227\"* lay|strong=\"H3331\"* in|strong=\"H4428\"* sackcloth|strong=\"H8242\"* and|strong=\"H4428\"* ashes." + }, + { + "verseNum": 4, + "text": "Esther’s maidens|strong=\"H5291\"* and|strong=\"H7971\"* her|strong=\"H7971\"* eunuchs|strong=\"H5631\"* came|strong=\"H3847\"* and|strong=\"H7971\"* told|strong=\"H5046\"* her|strong=\"H7971\"* this|strong=\"H5046\"*, and|strong=\"H7971\"* the|strong=\"H5921\"* queen|strong=\"H4436\"* was|strong=\"H3966\"* exceedingly|strong=\"H3966\"* grieved|strong=\"H2342\"*. She|strong=\"H5921\"* sent|strong=\"H7971\"* clothing|strong=\"H3847\"* to|strong=\"H7971\"* Mordecai|strong=\"H4782\"*, to|strong=\"H7971\"* replace his|strong=\"H7971\"* sackcloth|strong=\"H8242\"*, but|strong=\"H3808\"* he|strong=\"H3808\"* didn’t receive|strong=\"H6901\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H2088\"* Esther called|strong=\"H7121\"* for|strong=\"H5921\"* Hathach|strong=\"H2047\"*, one|strong=\"H2088\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s eunuchs|strong=\"H5631\"*, whom|strong=\"H6440\"* he|strong=\"H5921\"* had|strong=\"H4428\"* appointed|strong=\"H5975\"* to|strong=\"H5921\"* attend|strong=\"H6440\"* her|strong=\"H5921\"*, and|strong=\"H4428\"* commanded|strong=\"H6680\"* him|strong=\"H6440\"* to|strong=\"H5921\"* go|strong=\"H4428\"* to|strong=\"H5921\"* Mordecai|strong=\"H4782\"*, to|strong=\"H5921\"* find|strong=\"H3045\"* out|strong=\"H5921\"* what|strong=\"H4100\"* this|strong=\"H2088\"* was|strong=\"H4428\"*, and|strong=\"H4428\"* why|strong=\"H4100\"* it|strong=\"H7121\"* was|strong=\"H4428\"*." + }, + { + "verseNum": 6, + "text": "So|strong=\"H3318\"* Hathach|strong=\"H2047\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* Mordecai|strong=\"H4782\"*, to|strong=\"H3318\"* the|strong=\"H6440\"* city|strong=\"H5892\"* square|strong=\"H7339\"* which|strong=\"H5892\"* was|strong=\"H5892\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"*." + }, + { + "verseNum": 7, + "text": "Mordecai|strong=\"H4782\"* told|strong=\"H5046\"* him|strong=\"H5921\"* of|strong=\"H4428\"* all|strong=\"H3605\"* that|strong=\"H3605\"* had|strong=\"H4428\"* happened|strong=\"H7136\"* to|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3701\"* the|strong=\"H3605\"* exact|strong=\"H6575\"* sum|strong=\"H6575\"* of|strong=\"H4428\"* the|strong=\"H3605\"* money|strong=\"H3701\"* that|strong=\"H3605\"* Haman|strong=\"H2001\"* had|strong=\"H4428\"* promised to|strong=\"H5921\"* pay|strong=\"H8254\"* to|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s treasuries|strong=\"H1595\"* for|strong=\"H5921\"* the|strong=\"H3605\"* destruction of|strong=\"H4428\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H5414\"* also|strong=\"H4428\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* the|strong=\"H6440\"* copy|strong=\"H6572\"* of|strong=\"H4428\"* the|strong=\"H6440\"* writing|strong=\"H3791\"* of|strong=\"H4428\"* the|strong=\"H6440\"* decree|strong=\"H1881\"* that|strong=\"H5971\"* was|strong=\"H4428\"* given|strong=\"H5414\"* out|strong=\"H5414\"* in|strong=\"H5921\"* Susa|strong=\"H7800\"* to|strong=\"H5921\"* destroy|strong=\"H8045\"* them|strong=\"H5414\"*, to|strong=\"H5921\"* show|strong=\"H7200\"* it|strong=\"H5414\"* to|strong=\"H5921\"* Esther, and|strong=\"H4428\"* to|strong=\"H5921\"* declare|strong=\"H5046\"* it|strong=\"H5414\"* to|strong=\"H5921\"* her|strong=\"H5414\"*, and|strong=\"H4428\"* to|strong=\"H5921\"* urge her|strong=\"H5414\"* to|strong=\"H5921\"* go|strong=\"H5971\"* in|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H6440\"* king|strong=\"H4428\"* to|strong=\"H5921\"* make|strong=\"H5414\"* supplication|strong=\"H2603\"* to|strong=\"H5921\"* him|strong=\"H5414\"*, and|strong=\"H4428\"* to|strong=\"H5921\"* make|strong=\"H5414\"* request|strong=\"H1245\"* before|strong=\"H6440\"* him|strong=\"H5414\"* for|strong=\"H5921\"* her|strong=\"H5414\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 9, + "text": "Hathach|strong=\"H2047\"* came|strong=\"H1697\"* and|strong=\"H1697\"* told|strong=\"H5046\"* Esther the|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H1697\"* Mordecai|strong=\"H4782\"*." + }, + { + "verseNum": 10, + "text": "Then|strong=\"H6680\"* Esther spoke to|strong=\"H6680\"* Hathach|strong=\"H2047\"*, and|strong=\"H6680\"* gave|strong=\"H6680\"* him|strong=\"H6680\"* a|strong=\"H3068\"* message to|strong=\"H6680\"* Mordecai|strong=\"H4782\"*:" + }, + { + "verseNum": 11, + "text": "“All|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s servants|strong=\"H5650\"* and|strong=\"H4428\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s provinces|strong=\"H4082\"* know|strong=\"H3045\"* that|strong=\"H3045\"* whoever|strong=\"H3605\"*, whether|strong=\"H3045\"* man|strong=\"H4191\"* or|strong=\"H3808\"* woman|strong=\"H2088\"*, comes|strong=\"H3117\"* to|strong=\"H4191\"* the|strong=\"H3605\"* king|strong=\"H4428\"* into|strong=\"H3045\"* the|strong=\"H3605\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* without|strong=\"H3808\"* being|strong=\"H5971\"* called|strong=\"H7121\"*, there|strong=\"H2088\"* is|strong=\"H2088\"* one|strong=\"H2088\"* law|strong=\"H1881\"* for|strong=\"H7121\"* him|strong=\"H7121\"*, that|strong=\"H3045\"* he|strong=\"H3117\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*, except|strong=\"H3808\"* those|strong=\"H3605\"* to|strong=\"H4191\"* whom|strong=\"H5971\"* the|strong=\"H3605\"* king|strong=\"H4428\"* might|strong=\"H5971\"* hold out|strong=\"H3447\"* the|strong=\"H3605\"* golden|strong=\"H2091\"* scepter|strong=\"H8275\"*, that|strong=\"H3045\"* he|strong=\"H3117\"* may|strong=\"H5971\"* live|strong=\"H2421\"*. I|strong=\"H3117\"* have|strong=\"H5971\"* not|strong=\"H3808\"* been|strong=\"H5971\"* called|strong=\"H7121\"* to|strong=\"H4191\"* come|strong=\"H2421\"* in|strong=\"H4428\"* to|strong=\"H4191\"* the|strong=\"H3605\"* king|strong=\"H4428\"* these|strong=\"H2088\"* thirty|strong=\"H7970\"* days|strong=\"H3117\"*.”" + }, + { + "verseNum": 12, + "text": "They|strong=\"H1697\"* told|strong=\"H5046\"* Esther’s words|strong=\"H1697\"* to|strong=\"H1697\"* Mordecai|strong=\"H4782\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H7725\"* Mordecai|strong=\"H4782\"* asked them|strong=\"H7725\"* to|strong=\"H7725\"* return|strong=\"H7725\"* this|strong=\"H7725\"* answer|strong=\"H7725\"* to|strong=\"H7725\"* Esther: “Don’t think|strong=\"H1819\"* to|strong=\"H7725\"* yourself|strong=\"H5315\"* that|strong=\"H3605\"* you|strong=\"H3605\"* will|strong=\"H4428\"* escape|strong=\"H4422\"* in|strong=\"H1004\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"* any|strong=\"H3605\"* more|strong=\"H7725\"* than|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* remain|strong=\"H5975\"* silent|strong=\"H2790\"* now|strong=\"H3588\"*, then|strong=\"H5975\"* relief|strong=\"H7305\"* and|strong=\"H1004\"* deliverance|strong=\"H2020\"* will|strong=\"H4310\"* come|strong=\"H5060\"* to|strong=\"H6256\"* the|strong=\"H3588\"* Jews|strong=\"H3064\"* from|strong=\"H3064\"* another place|strong=\"H4725\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* and|strong=\"H1004\"* your|strong=\"H3045\"* father’s house|strong=\"H1004\"* will|strong=\"H4310\"* perish. Who|strong=\"H4310\"* knows|strong=\"H3045\"* if|strong=\"H3588\"* you|strong=\"H3588\"* haven’t come|strong=\"H5060\"* to|strong=\"H6256\"* the|strong=\"H3588\"* kingdom|strong=\"H4438\"* for|strong=\"H3588\"* such|strong=\"H2063\"* a|strong=\"H3068\"* time|strong=\"H6256\"* as|strong=\"H3588\"* this|strong=\"H2063\"*?”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H7725\"* Esther asked them|strong=\"H7725\"* to|strong=\"H7725\"* answer|strong=\"H7725\"* Mordecai|strong=\"H4782\"*," + }, + { + "verseNum": 16, + "text": "“Go|strong=\"H3212\"*, gather|strong=\"H3664\"* together|strong=\"H3664\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* who|strong=\"H3605\"* are|strong=\"H3117\"* present|strong=\"H4672\"* in|strong=\"H5921\"* Susa|strong=\"H7800\"*, and|strong=\"H4428\"* fast|strong=\"H6684\"* for|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H4428\"* neither|strong=\"H3808\"* eat nor|strong=\"H3808\"* drink|strong=\"H8354\"* three|strong=\"H7969\"* days|strong=\"H3117\"*, night|strong=\"H3915\"* or|strong=\"H3808\"* day|strong=\"H3117\"*. I|strong=\"H3117\"* and|strong=\"H4428\"* my|strong=\"H3605\"* maidens|strong=\"H5291\"* will|strong=\"H4428\"* also|strong=\"H1571\"* fast|strong=\"H6684\"* the|strong=\"H3605\"* same|strong=\"H3651\"* way|strong=\"H3212\"*. Then|strong=\"H3651\"* I|strong=\"H3117\"* will|strong=\"H4428\"* go|strong=\"H3212\"* in|strong=\"H5921\"* to|strong=\"H3212\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, which|strong=\"H3064\"* is|strong=\"H3117\"* against|strong=\"H5921\"* the|strong=\"H3605\"* law|strong=\"H1881\"*; and|strong=\"H4428\"* if|strong=\"H3651\"* I|strong=\"H3117\"* perish, I|strong=\"H3117\"* perish.”" + }, + { + "verseNum": 17, + "text": "So|strong=\"H6213\"* Mordecai|strong=\"H4782\"* went|strong=\"H5674\"* his|strong=\"H3605\"* way|strong=\"H5674\"*, and|strong=\"H6213\"* did|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Esther had|strong=\"H4782\"* commanded|strong=\"H6680\"* him|strong=\"H5921\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, Esther put|strong=\"H3847\"* on|strong=\"H5921\"* her|strong=\"H5921\"* royal|strong=\"H4438\"* clothing|strong=\"H3847\"* and|strong=\"H4428\"* stood|strong=\"H5975\"* in|strong=\"H3427\"* the|strong=\"H5921\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, next|strong=\"H5921\"* to|strong=\"H1961\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*. The|strong=\"H5921\"* king|strong=\"H4428\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H5921\"* royal|strong=\"H4438\"* throne|strong=\"H3678\"* in|strong=\"H3427\"* the|strong=\"H5921\"* royal|strong=\"H4438\"* house|strong=\"H1004\"*, next|strong=\"H5921\"* to|strong=\"H1961\"* the|strong=\"H5921\"* entrance|strong=\"H6607\"* of|strong=\"H4428\"* the|strong=\"H5921\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H1961\"* the|strong=\"H7200\"* king|strong=\"H4428\"* saw|strong=\"H7200\"* Esther the|strong=\"H7200\"* queen|strong=\"H4436\"* standing|strong=\"H5975\"* in|strong=\"H4428\"* the|strong=\"H7200\"* court|strong=\"H2691\"*, she obtained|strong=\"H5375\"* favor|strong=\"H2580\"* in|strong=\"H4428\"* his|strong=\"H5375\"* sight|strong=\"H5869\"*; and|strong=\"H4428\"* the|strong=\"H7200\"* king|strong=\"H4428\"* held|strong=\"H4428\"* out|strong=\"H7200\"* to|strong=\"H1961\"* Esther the|strong=\"H7200\"* golden|strong=\"H2091\"* scepter|strong=\"H8275\"* that|strong=\"H7200\"* was|strong=\"H1961\"* in|strong=\"H4428\"* his|strong=\"H5375\"* hand|strong=\"H3027\"*. So|strong=\"H1961\"* Esther came|strong=\"H1961\"* near|strong=\"H7126\"* and|strong=\"H4428\"* touched|strong=\"H5060\"* the|strong=\"H7200\"* top|strong=\"H7218\"* of|strong=\"H4428\"* the|strong=\"H7200\"* scepter|strong=\"H8275\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"* asked|strong=\"H4100\"* her|strong=\"H5414\"*, “What|strong=\"H4100\"* would|strong=\"H4100\"* you|strong=\"H5414\"* like|strong=\"H5704\"*, queen|strong=\"H4436\"* Esther? What|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H5414\"* request|strong=\"H1246\"*? It|strong=\"H5414\"* shall|strong=\"H4428\"* be|strong=\"H5414\"* given|strong=\"H5414\"* you|strong=\"H5414\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5414\"* half|strong=\"H2677\"* of|strong=\"H4428\"* the|strong=\"H5414\"* kingdom|strong=\"H4438\"*.”" + }, + { + "verseNum": 4, + "text": "Esther said, “If it|strong=\"H5921\"* seems good|strong=\"H2895\"* to|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, let the|strong=\"H5921\"* king|strong=\"H4428\"* and|strong=\"H4428\"* Haman|strong=\"H2001\"* come today|strong=\"H3117\"* to|strong=\"H5921\"* the|strong=\"H5921\"* banquet|strong=\"H4960\"* that|strong=\"H3117\"* I|strong=\"H3117\"* have|strong=\"H3117\"* prepared|strong=\"H6213\"* for|strong=\"H5921\"* him|strong=\"H5921\"*.”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6213\"* the|strong=\"H6213\"* king|strong=\"H4428\"* said|strong=\"H1697\"*, “Bring|strong=\"H6213\"* Haman|strong=\"H2001\"* quickly|strong=\"H4116\"*, so|strong=\"H6213\"* that|strong=\"H1697\"* it|strong=\"H6213\"* may|strong=\"H4428\"* be|strong=\"H1697\"* done|strong=\"H6213\"* as|strong=\"H1697\"* Esther has|strong=\"H4428\"* said|strong=\"H1697\"*.” So|strong=\"H6213\"* the|strong=\"H6213\"* king|strong=\"H4428\"* and|strong=\"H4428\"* Haman|strong=\"H2001\"* came|strong=\"H1697\"* to|strong=\"H6213\"* the|strong=\"H6213\"* banquet|strong=\"H4960\"* that|strong=\"H1697\"* Esther had|strong=\"H4428\"* prepared|strong=\"H6213\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* said to|strong=\"H5704\"* Esther at|strong=\"H4428\"* the|strong=\"H5414\"* banquet|strong=\"H4960\"* of|strong=\"H4428\"* wine|strong=\"H3196\"*, “What|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H5414\"* petition|strong=\"H7596\"*? It|strong=\"H5414\"* shall|strong=\"H4428\"* be|strong=\"H5414\"* granted|strong=\"H5414\"* you|strong=\"H5414\"*. What|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H5414\"* request|strong=\"H1246\"*? Even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5414\"* half|strong=\"H2677\"* of|strong=\"H4428\"* the|strong=\"H5414\"* kingdom|strong=\"H4438\"* it|strong=\"H5414\"* shall|strong=\"H4428\"* be|strong=\"H5414\"* performed|strong=\"H6213\"*.”" + }, + { + "verseNum": 7, + "text": "Then|strong=\"H6030\"* Esther answered|strong=\"H6030\"* and|strong=\"H6030\"* said|strong=\"H6030\"*, “My|strong=\"H6030\"* petition|strong=\"H7596\"* and|strong=\"H6030\"* my|strong=\"H6030\"* request|strong=\"H1246\"* is this." + }, + { + "verseNum": 8, + "text": "If I|strong=\"H5414\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* the|strong=\"H5921\"* sight|strong=\"H5869\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* if it|strong=\"H5414\"* pleases|strong=\"H2895\"* the|strong=\"H5921\"* king|strong=\"H4428\"* to|strong=\"H6213\"* grant|strong=\"H5414\"* my|strong=\"H5414\"* petition|strong=\"H7596\"* and|strong=\"H4428\"* to|strong=\"H6213\"* perform|strong=\"H6213\"* my|strong=\"H5414\"* request|strong=\"H1246\"*, let|strong=\"H5414\"* the|strong=\"H5921\"* king|strong=\"H4428\"* and|strong=\"H4428\"* Haman|strong=\"H2001\"* come|strong=\"H4279\"* to|strong=\"H6213\"* the|strong=\"H5921\"* banquet|strong=\"H4960\"* that|strong=\"H1697\"* I|strong=\"H5414\"* will|strong=\"H4428\"* prepare|strong=\"H6213\"* for|strong=\"H5921\"* them|strong=\"H5414\"*, and|strong=\"H4428\"* I|strong=\"H5414\"* will|strong=\"H4428\"* do|strong=\"H6213\"* tomorrow|strong=\"H4279\"* as|strong=\"H1697\"* the|strong=\"H5921\"* king|strong=\"H4428\"* has|strong=\"H4428\"* said|strong=\"H1697\"*.”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H6965\"* Haman|strong=\"H2001\"* went|strong=\"H3318\"* out|strong=\"H3318\"* that|strong=\"H7200\"* day|strong=\"H3117\"* joyful|strong=\"H8056\"* and|strong=\"H6965\"* glad|strong=\"H8056\"* of|strong=\"H4428\"* heart|strong=\"H3820\"*, but|strong=\"H3808\"* when|strong=\"H3117\"* Haman|strong=\"H2001\"* saw|strong=\"H7200\"* Mordecai|strong=\"H4782\"* in|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"*, that|strong=\"H7200\"* he|strong=\"H1931\"* didn’t stand|strong=\"H6965\"* up|strong=\"H6965\"* nor|strong=\"H3808\"* move for|strong=\"H5921\"* him|strong=\"H5921\"*, he|strong=\"H1931\"* was|strong=\"H3820\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* wrath|strong=\"H2534\"* against|strong=\"H5921\"* Mordecai|strong=\"H4782\"*." + }, + { + "verseNum": 10, + "text": "Nevertheless Haman|strong=\"H2001\"* restrained himself, and|strong=\"H7971\"* went|strong=\"H1004\"* home|strong=\"H1004\"*. There, he|strong=\"H1004\"* sent|strong=\"H7971\"* and|strong=\"H7971\"* called for|strong=\"H7971\"* his|strong=\"H7971\"* friends and|strong=\"H7971\"* Zeresh|strong=\"H2238\"* his|strong=\"H7971\"* wife." + }, + { + "verseNum": 11, + "text": "Haman|strong=\"H2001\"* recounted|strong=\"H5608\"* to|strong=\"H5921\"* them|strong=\"H1992\"* the|strong=\"H3605\"* glory|strong=\"H3519\"* of|strong=\"H1121\"* his|strong=\"H3605\"* riches|strong=\"H6239\"*, the|strong=\"H3605\"* multitude|strong=\"H7230\"* of|strong=\"H1121\"* his|strong=\"H3605\"* children|strong=\"H1121\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* things|strong=\"H3605\"* in|strong=\"H5921\"* which|strong=\"H1992\"* the|strong=\"H3605\"* king|strong=\"H4428\"* had|strong=\"H4428\"* promoted|strong=\"H1431\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* how|strong=\"H1431\"* he|strong=\"H3605\"* had|strong=\"H4428\"* advanced|strong=\"H5375\"* him|strong=\"H5921\"* above|strong=\"H5921\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H1121\"* servants|strong=\"H5650\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 12, + "text": "Haman|strong=\"H2001\"* also|strong=\"H1571\"* said|strong=\"H7121\"*, “Yes|strong=\"H3588\"*, Esther the|strong=\"H3588\"* queen|strong=\"H4436\"* let|strong=\"H3808\"* no|strong=\"H3808\"* man come|strong=\"H4279\"* in|strong=\"H6213\"* with|strong=\"H5973\"* the|strong=\"H3588\"* king|strong=\"H4428\"* to|strong=\"H6213\"* the|strong=\"H3588\"* banquet|strong=\"H4960\"* that|strong=\"H3588\"* she|strong=\"H3588\"* had|strong=\"H4428\"* prepared|strong=\"H6213\"* but|strong=\"H3588\"* myself|strong=\"H1571\"*; and|strong=\"H4428\"* tomorrow|strong=\"H4279\"* I|strong=\"H3588\"* am also|strong=\"H1571\"* invited|strong=\"H7121\"* by|strong=\"H7121\"* her|strong=\"H7121\"* together|strong=\"H5973\"* with|strong=\"H5973\"* the|strong=\"H3588\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 13, + "text": "Yet|strong=\"H3605\"* all|strong=\"H3605\"* this|strong=\"H2088\"* avails me|strong=\"H7200\"* nothing|strong=\"H3605\"*, so|strong=\"H2088\"* long|strong=\"H3605\"* as|strong=\"H3427\"* I|strong=\"H7200\"* see|strong=\"H7200\"* Mordecai|strong=\"H4782\"* the|strong=\"H3605\"* Jew|strong=\"H3064\"* sitting|strong=\"H3427\"* at|strong=\"H3427\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"*.”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H6213\"* Zeresh|strong=\"H2238\"* his|strong=\"H3605\"* wife and|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* friends said|strong=\"H1697\"* to|strong=\"H6213\"* him|strong=\"H6440\"*, “Let|strong=\"H8056\"* a|strong=\"H3068\"* gallows|strong=\"H6086\"* be|strong=\"H1697\"* made|strong=\"H6213\"* fifty|strong=\"H2572\"* cubits+ 5:14 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* high|strong=\"H1364\"*, and|strong=\"H4428\"* in|strong=\"H5921\"* the|strong=\"H3605\"* morning|strong=\"H1242\"* speak|strong=\"H1697\"* to|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"* about|strong=\"H5921\"* hanging|strong=\"H8518\"* Mordecai|strong=\"H4782\"* on|strong=\"H5921\"* it|strong=\"H5921\"*. Then|strong=\"H6213\"* go|strong=\"H3190\"* in|strong=\"H5921\"* merrily|strong=\"H8056\"* with|strong=\"H5973\"* the|strong=\"H3605\"* king|strong=\"H4428\"* to|strong=\"H6213\"* the|strong=\"H3605\"* banquet|strong=\"H4960\"*.” This|strong=\"H6213\"* pleased|strong=\"H3190\"* Haman|strong=\"H2001\"*, so|strong=\"H6213\"* he|strong=\"H6213\"* had|strong=\"H4428\"* the|strong=\"H3605\"* gallows|strong=\"H6086\"* made|strong=\"H6213\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "On|strong=\"H3117\"* that|strong=\"H3117\"* night|strong=\"H3915\"*, the|strong=\"H6440\"* king|strong=\"H4428\"* couldn’t sleep|strong=\"H8142\"*. He|strong=\"H1931\"* commanded the|strong=\"H6440\"* book|strong=\"H5612\"* of|strong=\"H4428\"* records|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H6440\"* chronicles|strong=\"H1697\"* to|strong=\"H1961\"* be|strong=\"H1961\"* brought|strong=\"H1961\"*, and|strong=\"H4428\"* they|strong=\"H3117\"* were|strong=\"H1961\"* read|strong=\"H7121\"* to|strong=\"H1961\"* the|strong=\"H6440\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H5921\"* was|strong=\"H4428\"* found|strong=\"H4672\"* written|strong=\"H3789\"* that|strong=\"H4428\"* Mordecai|strong=\"H4782\"* had|strong=\"H4428\"* told|strong=\"H5046\"* of|strong=\"H4428\"* Bigthana and|strong=\"H7971\"* Teresh|strong=\"H8657\"*, two|strong=\"H8147\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s eunuchs|strong=\"H5631\"*, who|strong=\"H8104\"* were|strong=\"H3027\"* doorkeepers|strong=\"H8104\"*, who|strong=\"H8104\"* had|strong=\"H4428\"* tried|strong=\"H1245\"* to|strong=\"H7971\"* lay|strong=\"H7971\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* King|strong=\"H4428\"* Ahasuerus." + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* said|strong=\"H1697\"*, “What|strong=\"H4100\"* honor|strong=\"H3366\"* and|strong=\"H4428\"* dignity|strong=\"H1420\"* has|strong=\"H4428\"* been|strong=\"H3808\"* given|strong=\"H6213\"* to|strong=\"H5921\"* Mordecai|strong=\"H4782\"* for|strong=\"H5921\"* this|strong=\"H2088\"*?”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* said, “Who|strong=\"H4310\"* is|strong=\"H4310\"* in|strong=\"H5921\"* the|strong=\"H5921\"* court|strong=\"H2691\"*?” Now|strong=\"H4428\"* Haman|strong=\"H2001\"* had|strong=\"H4428\"* come into|strong=\"H5921\"* the|strong=\"H5921\"* outer|strong=\"H2435\"* court|strong=\"H2691\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, to|strong=\"H5921\"* speak to|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* about|strong=\"H5921\"* hanging|strong=\"H8518\"* Mordecai|strong=\"H4782\"* on|strong=\"H5921\"* the|strong=\"H5921\"* gallows|strong=\"H6086\"* that|strong=\"H4428\"* he|strong=\"H1004\"* had|strong=\"H4428\"* prepared|strong=\"H3559\"* for|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5975\"* king|strong=\"H4428\"*’s servants|strong=\"H5288\"* said to|strong=\"H4428\"* him|strong=\"H5975\"*, “Behold|strong=\"H2009\"*,+ 6:5 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* Haman|strong=\"H2001\"* stands|strong=\"H5975\"* in|strong=\"H4428\"* the|strong=\"H5975\"* court|strong=\"H2691\"*.”" + }, + { + "verseNum": 6, + "text": "So|strong=\"H6213\"* Haman|strong=\"H2001\"* came|strong=\"H4428\"* in|strong=\"H6213\"*. The|strong=\"H6213\"* king|strong=\"H4428\"* said to|strong=\"H6213\"* him|strong=\"H6213\"*, “What|strong=\"H4100\"* shall|strong=\"H4428\"* be|strong=\"H3820\"* done|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H6213\"* man|strong=\"H3820\"* whom|strong=\"H4310\"* the|strong=\"H6213\"* king|strong=\"H4428\"* delights|strong=\"H2654\"* to|strong=\"H6213\"* honor|strong=\"H3366\"*?”" + }, + { + "verseNum": 7, + "text": "Haman|strong=\"H2001\"* said to|strong=\"H4428\"* the|strong=\"H2001\"* king|strong=\"H4428\"*, “For|strong=\"H4428\"* the|strong=\"H2001\"* man whom the|strong=\"H2001\"* king|strong=\"H4428\"* delights|strong=\"H2654\"* to|strong=\"H4428\"* honor|strong=\"H3366\"*," + }, + { + "verseNum": 8, + "text": "let|strong=\"H5414\"* royal|strong=\"H4438\"* clothing|strong=\"H3830\"* be|strong=\"H5414\"* brought|strong=\"H5414\"* which|strong=\"H5483\"* the|strong=\"H5921\"* king|strong=\"H4428\"* uses to|strong=\"H5921\"* wear|strong=\"H3847\"*, and|strong=\"H4428\"* the|strong=\"H5921\"* horse|strong=\"H5483\"* that|strong=\"H5414\"* the|strong=\"H5921\"* king|strong=\"H4428\"* rides|strong=\"H7392\"* on|strong=\"H5921\"*, and|strong=\"H4428\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H4428\"* which|strong=\"H5483\"* a|strong=\"H3068\"* royal|strong=\"H4438\"* crown|strong=\"H3804\"* is|strong=\"H4428\"* set|strong=\"H5414\"*." + }, + { + "verseNum": 9, + "text": "Let|strong=\"H5414\"* the|strong=\"H6440\"* clothing|strong=\"H3830\"* and|strong=\"H4428\"* the|strong=\"H6440\"* horse|strong=\"H5483\"* be|strong=\"H3027\"* delivered|strong=\"H5414\"* to|strong=\"H6213\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* one|strong=\"H6213\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s most|strong=\"H4428\"* noble|strong=\"H6579\"* princes|strong=\"H8269\"*, that|strong=\"H5414\"* they|strong=\"H5921\"* may|strong=\"H4428\"* array|strong=\"H3847\"* the|strong=\"H6440\"* man|strong=\"H6440\"* whom|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"* delights|strong=\"H2654\"* to|strong=\"H6213\"* honor|strong=\"H3366\"* with|strong=\"H3847\"* them|strong=\"H5414\"*, and|strong=\"H4428\"* have|strong=\"H3027\"* him|strong=\"H5414\"* ride|strong=\"H7392\"* on|strong=\"H5921\"* horseback|strong=\"H5483\"* through|strong=\"H3027\"* the|strong=\"H6440\"* city|strong=\"H5892\"* square|strong=\"H7339\"*, and|strong=\"H4428\"* proclaim|strong=\"H7121\"* before|strong=\"H6440\"* him|strong=\"H5414\"*, ‘Thus|strong=\"H3602\"* it|strong=\"H5414\"* shall|strong=\"H4428\"* be|strong=\"H3027\"* done|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H6440\"* man|strong=\"H6440\"* whom|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"* delights|strong=\"H2654\"* to|strong=\"H6213\"* honor|strong=\"H3366\"*!’”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H1696\"* the|strong=\"H3605\"* king|strong=\"H4428\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Haman|strong=\"H2001\"*, “Hurry|strong=\"H4116\"* and|strong=\"H4428\"* take|strong=\"H3947\"* the|strong=\"H3605\"* clothing|strong=\"H3830\"* and|strong=\"H4428\"* the|strong=\"H3605\"* horse|strong=\"H5483\"*, as|strong=\"H1697\"* you|strong=\"H3605\"* have|strong=\"H1697\"* said|strong=\"H1696\"*, and|strong=\"H4428\"* do|strong=\"H6213\"* this|strong=\"H3651\"* for|strong=\"H6213\"* Mordecai|strong=\"H4782\"* the|strong=\"H3605\"* Jew|strong=\"H3064\"*, who|strong=\"H3605\"* sits|strong=\"H3427\"* at|strong=\"H3427\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"*. Let|strong=\"H3651\"* nothing|strong=\"H1697\"* fail|strong=\"H5307\"* of|strong=\"H4428\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H1697\"* spoken|strong=\"H1696\"*.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H3947\"* Haman|strong=\"H2001\"* took|strong=\"H3947\"* the|strong=\"H6440\"* clothing|strong=\"H3830\"* and|strong=\"H4428\"* the|strong=\"H6440\"* horse|strong=\"H5483\"*, and|strong=\"H4428\"* arrayed|strong=\"H3847\"* Mordecai|strong=\"H4782\"*, and|strong=\"H4428\"* had|strong=\"H4428\"* him|strong=\"H6440\"* ride|strong=\"H7392\"* through|strong=\"H6213\"* the|strong=\"H6440\"* city|strong=\"H5892\"* square|strong=\"H7339\"*, and|strong=\"H4428\"* proclaimed|strong=\"H7121\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, “Thus|strong=\"H3602\"* it|strong=\"H7121\"* shall|strong=\"H4428\"* be|strong=\"H5892\"* done|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H6440\"* man|strong=\"H6440\"* whom|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"* delights|strong=\"H2654\"* to|strong=\"H6213\"* honor|strong=\"H3366\"*!”" + }, + { + "verseNum": 12, + "text": "Mordecai|strong=\"H4782\"* came|strong=\"H7725\"* back|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H7725\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"*, but|strong=\"H7725\"* Haman|strong=\"H2001\"* hurried|strong=\"H1765\"* to|strong=\"H7725\"* his|strong=\"H7725\"* house|strong=\"H1004\"*, mourning and|strong=\"H7725\"* having|strong=\"H4428\"* his|strong=\"H7725\"* head|strong=\"H7218\"* covered|strong=\"H2645\"*." + }, + { + "verseNum": 13, + "text": "Haman|strong=\"H2001\"* recounted|strong=\"H5608\"* to|strong=\"H3201\"* Zeresh|strong=\"H2238\"* his|strong=\"H3605\"* wife and|strong=\"H6440\"* all|strong=\"H3605\"* his|strong=\"H3605\"* friends everything|strong=\"H3605\"* that|strong=\"H3588\"* had|strong=\"H3588\"* happened|strong=\"H7136\"* to|strong=\"H3201\"* him|strong=\"H6440\"*. Then|strong=\"H5307\"* his|strong=\"H3605\"* wise|strong=\"H2450\"* men|strong=\"H2450\"* and|strong=\"H6440\"* Zeresh|strong=\"H2238\"* his|strong=\"H3605\"* wife said to|strong=\"H3201\"* him|strong=\"H6440\"*, “If|strong=\"H3588\"* Mordecai|strong=\"H4782\"*, before|strong=\"H6440\"* whom|strong=\"H6440\"* you|strong=\"H3588\"* have|strong=\"H3605\"* begun|strong=\"H2490\"* to|strong=\"H3201\"* fall|strong=\"H5307\"*, is|strong=\"H3605\"* of|strong=\"H6440\"* Jewish|strong=\"H3064\"* descent|strong=\"H2233\"*, you|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* prevail|strong=\"H3201\"* against|strong=\"H6440\"* him|strong=\"H6440\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3808\"* surely|strong=\"H3588\"* fall|strong=\"H5307\"* before|strong=\"H6440\"* him|strong=\"H6440\"*.”" + }, + { + "verseNum": 14, + "text": "While|strong=\"H5750\"* they|strong=\"H6213\"* were|strong=\"H4428\"* yet|strong=\"H5750\"* talking|strong=\"H1696\"* with|strong=\"H5973\"* him|strong=\"H6213\"*, the|strong=\"H6213\"* king|strong=\"H4428\"*’s eunuchs|strong=\"H5631\"* came|strong=\"H5060\"*, and|strong=\"H4428\"* hurried to|strong=\"H1696\"* bring|strong=\"H6213\"* Haman|strong=\"H2001\"* to|strong=\"H1696\"* the|strong=\"H6213\"* banquet|strong=\"H4960\"* that|strong=\"H4428\"* Esther had|strong=\"H4428\"* prepared|strong=\"H6213\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "So the|strong=\"H5973\"* king|strong=\"H4428\"* and|strong=\"H4428\"* Haman|strong=\"H2001\"* came|strong=\"H4428\"* to|strong=\"H4428\"* banquet|strong=\"H8354\"* with|strong=\"H5973\"* Esther the|strong=\"H5973\"* queen|strong=\"H4436\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* said again|strong=\"H8145\"* to|strong=\"H5704\"* Esther on|strong=\"H3117\"* the|strong=\"H5414\"* second|strong=\"H8145\"* day|strong=\"H3117\"* at|strong=\"H3117\"* the|strong=\"H5414\"* banquet|strong=\"H4960\"* of|strong=\"H4428\"* wine|strong=\"H3196\"*, “What|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H5414\"* petition|strong=\"H7596\"*, queen|strong=\"H4436\"* Esther? It|strong=\"H5414\"* shall|strong=\"H4428\"* be|strong=\"H1571\"* granted|strong=\"H5414\"* you|strong=\"H5414\"*. What|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H5414\"* request|strong=\"H1246\"*? Even|strong=\"H1571\"* to|strong=\"H5704\"* the|strong=\"H5414\"* half|strong=\"H2677\"* of|strong=\"H4428\"* the|strong=\"H5414\"* kingdom|strong=\"H4438\"* it|strong=\"H5414\"* shall|strong=\"H4428\"* be|strong=\"H1571\"* performed|strong=\"H6213\"*.”" + }, + { + "verseNum": 3, + "text": "Then|strong=\"H6030\"* Esther the|strong=\"H5921\"* queen|strong=\"H4436\"* answered|strong=\"H6030\"*, “If I|strong=\"H5414\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* your|strong=\"H5414\"* sight|strong=\"H5869\"*, O|strong=\"H3068\"* king|strong=\"H4428\"*, and|strong=\"H6030\"* if it|strong=\"H5414\"* pleases|strong=\"H2895\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, let|strong=\"H5414\"* my|strong=\"H5414\"* life|strong=\"H5315\"* be|strong=\"H5315\"* given|strong=\"H5414\"* me|strong=\"H5414\"* at|strong=\"H5921\"* my|strong=\"H5414\"* petition|strong=\"H7596\"*, and|strong=\"H6030\"* my|strong=\"H5414\"* people|strong=\"H5971\"* at|strong=\"H5921\"* my|strong=\"H5414\"* request|strong=\"H1246\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H5971\"* sold|strong=\"H4376\"*, I|strong=\"H3588\"* and|strong=\"H4428\"* my|strong=\"H3588\"* people|strong=\"H5971\"*, to|strong=\"H4428\"* be|strong=\"H4428\"* destroyed|strong=\"H8045\"*, to|strong=\"H4428\"* be|strong=\"H4428\"* slain|strong=\"H2026\"*, and|strong=\"H4428\"* to|strong=\"H4428\"* perish. But|strong=\"H3588\"* if|strong=\"H3588\"* we|strong=\"H3068\"* had|strong=\"H4428\"* been|strong=\"H5971\"* sold|strong=\"H4376\"* for|strong=\"H3588\"* male|strong=\"H5650\"* and|strong=\"H4428\"* female|strong=\"H8198\"* slaves|strong=\"H5650\"*, I|strong=\"H3588\"* would|strong=\"H5971\"* have|strong=\"H5971\"* held|strong=\"H4428\"* my|strong=\"H3588\"* peace|strong=\"H2790\"*, although|strong=\"H3588\"* the|strong=\"H3588\"* adversary|strong=\"H6862\"* could|strong=\"H5971\"* not|strong=\"H3588\"* have|strong=\"H5971\"* compensated for|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"*’s loss.”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H2088\"* King|strong=\"H4428\"* Ahasuerus said|strong=\"H3651\"* to|strong=\"H6213\"* Esther the|strong=\"H6213\"* queen|strong=\"H4436\"*, “Who|strong=\"H4310\"* is|strong=\"H2088\"* he|strong=\"H1931\"*, and|strong=\"H4428\"* where|strong=\"H2088\"* is|strong=\"H2088\"* he|strong=\"H1931\"* who|strong=\"H4310\"* dared presume|strong=\"H4390\"* in|strong=\"H6213\"* his|strong=\"H6213\"* heart|strong=\"H3820\"* to|strong=\"H6213\"* do|strong=\"H6213\"* so|strong=\"H3651\"*?”" + }, + { + "verseNum": 6, + "text": "Esther said, “An|strong=\"H6440\"* adversary|strong=\"H6862\"* and|strong=\"H4428\"* an|strong=\"H6440\"* enemy|strong=\"H6862\"*, even this|strong=\"H2088\"* wicked|strong=\"H7451\"* Haman|strong=\"H2001\"*!”" + }, + { + "verseNum": 7, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* arose|strong=\"H6965\"* in|strong=\"H5921\"* his|strong=\"H5921\"* wrath|strong=\"H2534\"* from|strong=\"H5921\"* the|strong=\"H5921\"* banquet|strong=\"H4960\"* of|strong=\"H4428\"* wine|strong=\"H3196\"* and|strong=\"H6965\"* went|strong=\"H4428\"* into|strong=\"H5921\"* the|strong=\"H5921\"* palace|strong=\"H1055\"* garden|strong=\"H1594\"*. Haman|strong=\"H2001\"* stood|strong=\"H5975\"* up|strong=\"H6965\"* to|strong=\"H5921\"* make|strong=\"H7200\"* request|strong=\"H1245\"* for|strong=\"H3588\"* his|strong=\"H5921\"* life|strong=\"H5315\"* to|strong=\"H5921\"* Esther the|strong=\"H5921\"* queen|strong=\"H4436\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* there|strong=\"H5975\"* was|strong=\"H4428\"* evil|strong=\"H7451\"* determined|strong=\"H3615\"* against|strong=\"H5921\"* him|strong=\"H5921\"* by|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H3318\"* the|strong=\"H6440\"* king|strong=\"H4428\"* returned|strong=\"H7725\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H6440\"* palace|strong=\"H1004\"* garden|strong=\"H1594\"* into|strong=\"H7725\"* the|strong=\"H6440\"* place|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H6440\"* banquet|strong=\"H4960\"* of|strong=\"H4428\"* wine|strong=\"H3196\"*; and|strong=\"H7725\"* Haman|strong=\"H2001\"* had|strong=\"H4428\"* fallen|strong=\"H5307\"* on|strong=\"H5921\"* the|strong=\"H6440\"* couch|strong=\"H4296\"* where|strong=\"H1004\"* Esther was|strong=\"H1697\"*. Then|strong=\"H3318\"* the|strong=\"H6440\"* king|strong=\"H4428\"* said|strong=\"H1697\"*, “Will|strong=\"H4428\"* he|strong=\"H1004\"* even|strong=\"H1571\"* assault|strong=\"H3533\"* the|strong=\"H6440\"* queen|strong=\"H4436\"* in|strong=\"H5921\"* front|strong=\"H6440\"* of|strong=\"H4428\"* me|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* house|strong=\"H1004\"*?” As|strong=\"H1697\"* the|strong=\"H6440\"* word|strong=\"H1697\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s mouth|strong=\"H6310\"*, they|strong=\"H5921\"* covered|strong=\"H2645\"* Haman|strong=\"H2001\"*’s face|strong=\"H6440\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H1696\"* Harbonah|strong=\"H2726\"*, one|strong=\"H4480\"* of|strong=\"H4428\"* the|strong=\"H6440\"* eunuchs|strong=\"H5631\"* who|strong=\"H4428\"* were|strong=\"H4428\"* with|strong=\"H1004\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, said|strong=\"H1696\"*, “Behold|strong=\"H2009\"*, the|strong=\"H6440\"* gallows|strong=\"H6086\"* fifty|strong=\"H2572\"* cubits+ 7:9 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* high|strong=\"H1364\"*, which|strong=\"H1004\"* Haman|strong=\"H2001\"* has|strong=\"H4428\"* made|strong=\"H6213\"* for|strong=\"H5921\"* Mordecai|strong=\"H4782\"*, who|strong=\"H4428\"* spoke|strong=\"H1696\"* good|strong=\"H2896\"* for|strong=\"H5921\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, is|strong=\"H1571\"* standing|strong=\"H5975\"* at|strong=\"H5921\"* Haman|strong=\"H2001\"*’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 10, + "text": "So|strong=\"H5921\"* they|strong=\"H5921\"* hanged|strong=\"H8518\"* Haman|strong=\"H2001\"* on|strong=\"H5921\"* the|strong=\"H5921\"* gallows|strong=\"H6086\"* that|strong=\"H4428\"* he|strong=\"H5921\"* had|strong=\"H4428\"* prepared|strong=\"H3559\"* for|strong=\"H5921\"* Mordecai|strong=\"H4782\"*. Then|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s wrath|strong=\"H2534\"* was|strong=\"H4428\"* pacified|strong=\"H7918\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "On|strong=\"H3117\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, King|strong=\"H4428\"* Ahasuerus gave|strong=\"H5414\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Haman|strong=\"H2001\"*, the|strong=\"H6440\"* Jews|strong=\"H3064\"*’ enemy|strong=\"H6887\"*, to|strong=\"H5414\"* Esther the|strong=\"H6440\"* queen|strong=\"H4436\"*. Mordecai|strong=\"H4782\"* came|strong=\"H4428\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*; for|strong=\"H3588\"* Esther had|strong=\"H4428\"* told|strong=\"H5046\"* what|strong=\"H4100\"* he|strong=\"H1931\"* was|strong=\"H1931\"* to|strong=\"H5414\"* her|strong=\"H5414\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* took|strong=\"H5493\"* off|strong=\"H5493\"* his|strong=\"H5414\"* ring|strong=\"H2885\"*, which|strong=\"H1004\"* he|strong=\"H1004\"* had|strong=\"H4428\"* taken|strong=\"H5493\"* from|strong=\"H5493\"* Haman|strong=\"H2001\"*, and|strong=\"H4428\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5921\"* Mordecai|strong=\"H4782\"*. Esther set|strong=\"H7760\"* Mordecai|strong=\"H4782\"* over|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Haman|strong=\"H2001\"*." + }, + { + "verseNum": 3, + "text": "Esther spoke|strong=\"H1696\"* yet|strong=\"H3254\"* again|strong=\"H3254\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* at|strong=\"H5921\"* his|strong=\"H6440\"* feet|strong=\"H7272\"* and|strong=\"H4428\"* begged|strong=\"H2603\"* him|strong=\"H6440\"* with|strong=\"H1696\"* tears|strong=\"H1058\"* to|strong=\"H1696\"* put|strong=\"H3254\"* away|strong=\"H5674\"* the|strong=\"H6440\"* mischief|strong=\"H7451\"* of|strong=\"H4428\"* Haman|strong=\"H2001\"* the|strong=\"H6440\"* Agagite, and|strong=\"H4428\"* his|strong=\"H6440\"* plan|strong=\"H2803\"* that|strong=\"H4428\"* he|strong=\"H5921\"* had|strong=\"H4428\"* planned|strong=\"H2803\"* against|strong=\"H5921\"* the|strong=\"H6440\"* Jews|strong=\"H3064\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H6965\"* the|strong=\"H6440\"* king|strong=\"H4428\"* held|strong=\"H4428\"* out|strong=\"H3447\"* to|strong=\"H6440\"* Esther the|strong=\"H6440\"* golden|strong=\"H2091\"* scepter|strong=\"H8275\"*. So|strong=\"H6965\"* Esther arose|strong=\"H6965\"*, and|strong=\"H6965\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 5, + "text": "She|strong=\"H5921\"* said|strong=\"H1697\"*, “If|strong=\"H1121\"* it|strong=\"H5921\"* pleases|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H1121\"* if|strong=\"H1121\"* I|strong=\"H5921\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* his|strong=\"H3605\"* sight|strong=\"H5869\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* thing|strong=\"H1697\"* seems|strong=\"H3605\"* right|strong=\"H3787\"* to|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H1121\"* I|strong=\"H5921\"* am pleasing|strong=\"H2896\"* in|strong=\"H5921\"* his|strong=\"H3605\"* eyes|strong=\"H5869\"*, let|strong=\"H7725\"* it|strong=\"H5921\"* be|strong=\"H1697\"* written|strong=\"H3789\"* to|strong=\"H7725\"* reverse|strong=\"H7725\"* the|strong=\"H3605\"* letters|strong=\"H5612\"* devised|strong=\"H4284\"* by|strong=\"H5921\"* Haman|strong=\"H2001\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hammedatha|strong=\"H4099\"* the|strong=\"H3605\"* Agagite, which|strong=\"H1697\"* he|strong=\"H3605\"* wrote|strong=\"H3789\"* to|strong=\"H7725\"* destroy|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* who|strong=\"H3605\"* are|strong=\"H1121\"* in|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s provinces|strong=\"H4082\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* how|strong=\"H3588\"* can|strong=\"H3201\"* I|strong=\"H3588\"* endure|strong=\"H3201\"* to|strong=\"H3201\"* see|strong=\"H7200\"* the|strong=\"H7200\"* evil|strong=\"H7451\"* that|strong=\"H3588\"* would|strong=\"H5971\"* come|strong=\"H4672\"* to|strong=\"H3201\"* my|strong=\"H7200\"* people|strong=\"H5971\"*? How|strong=\"H3588\"* can|strong=\"H3201\"* I|strong=\"H3588\"* endure|strong=\"H3201\"* to|strong=\"H3201\"* see|strong=\"H7200\"* the|strong=\"H7200\"* destruction|strong=\"H7451\"* of|strong=\"H5971\"* my|strong=\"H7200\"* relatives|strong=\"H4138\"*?”" + }, + { + "verseNum": 7, + "text": "Then|strong=\"H2009\"* King|strong=\"H4428\"* Ahasuerus said to|strong=\"H7971\"* Esther the|strong=\"H5921\"* queen|strong=\"H4436\"* and|strong=\"H7971\"* to|strong=\"H7971\"* Mordecai|strong=\"H4782\"* the|strong=\"H5921\"* Jew|strong=\"H3064\"*, “See|strong=\"H2009\"*, I|strong=\"H5414\"* have|strong=\"H3027\"* given|strong=\"H5414\"* Esther the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Haman|strong=\"H2001\"*, and|strong=\"H7971\"* they|strong=\"H5921\"* have|strong=\"H3027\"* hanged|strong=\"H8518\"* him|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* gallows|strong=\"H6086\"* because|strong=\"H5921\"* he|strong=\"H1004\"* laid|strong=\"H5414\"* his|strong=\"H5414\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* Jews|strong=\"H3064\"*." + }, + { + "verseNum": 8, + "text": "Write|strong=\"H3789\"* also|strong=\"H8034\"* to|strong=\"H7725\"* the|strong=\"H5921\"* Jews|strong=\"H3064\"* as|strong=\"H3588\"* it|strong=\"H5921\"* pleases|strong=\"H5921\"* you|strong=\"H3588\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s name|strong=\"H8034\"*, and|strong=\"H7725\"* seal|strong=\"H2856\"* it|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s ring|strong=\"H2885\"*; for|strong=\"H3588\"* the|strong=\"H5921\"* writing|strong=\"H3791\"* which|strong=\"H3064\"* is|strong=\"H8034\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s name|strong=\"H8034\"*, and|strong=\"H7725\"* sealed|strong=\"H2856\"* with|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s ring|strong=\"H2885\"*, may|strong=\"H4428\"* not|strong=\"H3588\"* be|strong=\"H8034\"* reversed by|strong=\"H5921\"* any|strong=\"H3588\"* man|strong=\"H2896\"*.”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s scribes|strong=\"H5608\"* were|strong=\"H5971\"* called|strong=\"H7121\"* at|strong=\"H2320\"* that|strong=\"H5971\"* time|strong=\"H6256\"*, in|strong=\"H4428\"* the|strong=\"H3605\"* third|strong=\"H7992\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* month|strong=\"H2320\"* Sivan|strong=\"H5510\"*, on|strong=\"H7121\"* the|strong=\"H3605\"* twenty-third|strong=\"H6242\"* day|strong=\"H2320\"* of|strong=\"H4428\"* the|strong=\"H3605\"* month|strong=\"H2320\"*; and|strong=\"H3967\"* it|strong=\"H1931\"* was|strong=\"H1931\"* written|strong=\"H3789\"* according to|strong=\"H5704\"* all|strong=\"H3605\"* that|strong=\"H5971\"* Mordecai|strong=\"H4782\"* commanded|strong=\"H6680\"* to|strong=\"H5704\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"*, and|strong=\"H3967\"* to|strong=\"H5704\"* the|strong=\"H3605\"* local governors|strong=\"H6346\"*, and|strong=\"H3967\"* the|strong=\"H3605\"* governors|strong=\"H6346\"* and|strong=\"H3967\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"* which|strong=\"H1931\"* are|strong=\"H5971\"* from|strong=\"H5704\"* India|strong=\"H1912\"* to|strong=\"H5704\"* Ethiopia|strong=\"H3568\"*, one|strong=\"H3605\"* hundred|strong=\"H3967\"* twenty-seven|strong=\"H6242\"* provinces|strong=\"H4082\"*, to|strong=\"H5704\"* every|strong=\"H3605\"* province|strong=\"H4082\"* according to|strong=\"H5704\"* its|strong=\"H3605\"* writing|strong=\"H3789\"*, and|strong=\"H3967\"* to|strong=\"H5704\"* every|strong=\"H3605\"* people|strong=\"H5971\"* in|strong=\"H4428\"* their|strong=\"H3605\"* language|strong=\"H3956\"*, and|strong=\"H3967\"* to|strong=\"H5704\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* in|strong=\"H4428\"* their|strong=\"H3605\"* writing|strong=\"H3789\"*, and|strong=\"H3967\"* in|strong=\"H4428\"* their|strong=\"H3605\"* language|strong=\"H3956\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H3027\"* wrote|strong=\"H3789\"* in|strong=\"H4428\"* the|strong=\"H7971\"* name|strong=\"H8034\"* of|strong=\"H1121\"* King|strong=\"H4428\"* Ahasuerus, and|strong=\"H1121\"* sealed|strong=\"H2856\"* it|strong=\"H8034\"* with|strong=\"H3027\"* the|strong=\"H7971\"* king|strong=\"H4428\"*’s ring|strong=\"H2885\"*, and|strong=\"H1121\"* sent|strong=\"H7971\"* letters|strong=\"H5612\"* by|strong=\"H3027\"* courier|strong=\"H7323\"* on|strong=\"H7392\"* horseback|strong=\"H5483\"*, riding|strong=\"H7392\"* on|strong=\"H7392\"* royal|strong=\"H4428\"* horses|strong=\"H5483\"* that|strong=\"H4428\"* were|strong=\"H1121\"* bred from|strong=\"H3027\"* swift|strong=\"H7409\"* steeds|strong=\"H7409\"*." + }, + { + "verseNum": 11, + "text": "In|strong=\"H5921\"* those|strong=\"H3605\"* letters, the|strong=\"H3605\"* king|strong=\"H4428\"* granted|strong=\"H5414\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* who|strong=\"H3605\"* were|strong=\"H5971\"* in|strong=\"H5921\"* every|strong=\"H3605\"* city|strong=\"H5892\"* to|strong=\"H5921\"* gather|strong=\"H6950\"* themselves|strong=\"H5315\"* together|strong=\"H6950\"* and|strong=\"H4428\"* to|strong=\"H5921\"* defend|strong=\"H5975\"* their|strong=\"H3605\"* lives|strong=\"H5315\"*—to|strong=\"H5921\"* destroy|strong=\"H8045\"*, to|strong=\"H5921\"* kill|strong=\"H2026\"*, and|strong=\"H4428\"* to|strong=\"H5921\"* cause|strong=\"H5414\"* to|strong=\"H5921\"* perish all|strong=\"H3605\"* the|strong=\"H3605\"* power of|strong=\"H4428\"* the|strong=\"H3605\"* people|strong=\"H5971\"* and|strong=\"H4428\"* province|strong=\"H4082\"* that|strong=\"H5971\"* would|strong=\"H5971\"* assault|strong=\"H6696\"* them|strong=\"H5414\"*, their|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"* and|strong=\"H4428\"* women, and|strong=\"H4428\"* to|strong=\"H5921\"* plunder|strong=\"H7998\"* their|strong=\"H3605\"* possessions|strong=\"H7998\"*," + }, + { + "verseNum": 12, + "text": "on|strong=\"H3117\"* one|strong=\"H3605\"* day|strong=\"H3117\"* in|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Ahasuerus, on|strong=\"H3117\"* the|strong=\"H3605\"* thirteenth|strong=\"H7969\"* day|strong=\"H3117\"* of|strong=\"H4428\"* the|strong=\"H3605\"* twelfth|strong=\"H8147\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* month|strong=\"H2320\"* Adar." + }, + { + "verseNum": 13, + "text": "A|strong=\"H3068\"* copy|strong=\"H6572\"* of|strong=\"H3117\"* the|strong=\"H3605\"* letter|strong=\"H3791\"*, that|strong=\"H5971\"* the|strong=\"H3605\"* decree|strong=\"H1881\"* should|strong=\"H3117\"* be|strong=\"H1961\"* given|strong=\"H5414\"* out|strong=\"H5414\"* in|strong=\"H3117\"* every|strong=\"H3605\"* province|strong=\"H4082\"*, was|strong=\"H1961\"* published|strong=\"H1540\"* to|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"*, that|strong=\"H5971\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* should|strong=\"H3117\"* be|strong=\"H1961\"* ready for|strong=\"H3117\"* that|strong=\"H5971\"* day|strong=\"H3117\"* to|strong=\"H1961\"* avenge|strong=\"H5358\"* themselves|strong=\"H5414\"* on|strong=\"H3117\"* their|strong=\"H3605\"* enemies." + }, + { + "verseNum": 14, + "text": "So|strong=\"H5414\"* the|strong=\"H5414\"* couriers|strong=\"H7323\"* who|strong=\"H4428\"* rode|strong=\"H7392\"* on|strong=\"H7392\"* royal|strong=\"H4428\"* horses|strong=\"H7409\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, hastened|strong=\"H1765\"* and|strong=\"H4428\"* pressed on|strong=\"H7392\"* by|strong=\"H3318\"* the|strong=\"H5414\"* king|strong=\"H4428\"*’s commandment|strong=\"H1697\"*. The|strong=\"H5414\"* decree|strong=\"H1881\"* was|strong=\"H1697\"* given|strong=\"H5414\"* out|strong=\"H3318\"* in|strong=\"H4428\"* the|strong=\"H5414\"* citadel|strong=\"H1002\"* of|strong=\"H4428\"* Susa|strong=\"H7800\"*." + }, + { + "verseNum": 15, + "text": "Mordecai|strong=\"H4782\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* in|strong=\"H4428\"* royal|strong=\"H4438\"* clothing|strong=\"H3830\"* of|strong=\"H4428\"* blue|strong=\"H8504\"* and|strong=\"H4428\"* white|strong=\"H2353\"*, and|strong=\"H4428\"* with|strong=\"H6440\"* a|strong=\"H3068\"* great|strong=\"H1419\"* crown|strong=\"H5850\"* of|strong=\"H4428\"* gold|strong=\"H2091\"*, and|strong=\"H4428\"* with|strong=\"H6440\"* a|strong=\"H3068\"* robe|strong=\"H3830\"* of|strong=\"H4428\"* fine linen and|strong=\"H4428\"* purple|strong=\"H8504\"*; and|strong=\"H4428\"* the|strong=\"H6440\"* city|strong=\"H5892\"* of|strong=\"H4428\"* Susa|strong=\"H7800\"* shouted|strong=\"H6670\"* and|strong=\"H4428\"* was|strong=\"H5892\"* glad|strong=\"H8055\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H1961\"* Jews|strong=\"H3064\"* had|strong=\"H1961\"* light, gladness|strong=\"H8057\"*, joy|strong=\"H8057\"*, and|strong=\"H8057\"* honor|strong=\"H3366\"*." + }, + { + "verseNum": 17, + "text": "In|strong=\"H5921\"* every|strong=\"H3605\"* province|strong=\"H4082\"* and|strong=\"H4428\"* in|strong=\"H5921\"* every|strong=\"H3605\"* city|strong=\"H5892\"*, wherever|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s commandment|strong=\"H1697\"* and|strong=\"H4428\"* his|strong=\"H3605\"* decree|strong=\"H1881\"* came|strong=\"H5060\"*, the|strong=\"H3605\"* Jews|strong=\"H3064\"* had|strong=\"H4428\"* gladness|strong=\"H8057\"*, joy|strong=\"H8057\"*, a|strong=\"H3068\"* feast|strong=\"H4960\"* and|strong=\"H4428\"* a|strong=\"H3068\"* holiday|strong=\"H2896\"*. Many|strong=\"H7227\"* from|strong=\"H5921\"* among|strong=\"H5921\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land|strong=\"H4725\"* became|strong=\"H1697\"* Jews|strong=\"H3064\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* fear|strong=\"H6343\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* had|strong=\"H4428\"* fallen|strong=\"H5307\"* on|strong=\"H5921\"* them|strong=\"H5921\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3117\"* in|strong=\"H6213\"* the|strong=\"H6213\"* twelfth|strong=\"H8147\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H6213\"* month|strong=\"H2320\"* Adar, on|strong=\"H3117\"* the|strong=\"H6213\"* thirteenth|strong=\"H7969\"* day|strong=\"H3117\"* of|strong=\"H4428\"* the|strong=\"H6213\"* month|strong=\"H2320\"*, when|strong=\"H3117\"* the|strong=\"H6213\"* king|strong=\"H4428\"*’s commandment|strong=\"H1697\"* and|strong=\"H4428\"* his|strong=\"H6213\"* decree|strong=\"H1881\"* came|strong=\"H5060\"* near|strong=\"H5060\"* to|strong=\"H6213\"* be|strong=\"H1697\"* put|strong=\"H6213\"* in|strong=\"H6213\"* execution|strong=\"H6213\"*, on|strong=\"H3117\"* the|strong=\"H6213\"* day|strong=\"H3117\"* that|strong=\"H3117\"* the|strong=\"H6213\"* enemies|strong=\"H8130\"* of|strong=\"H4428\"* the|strong=\"H6213\"* Jews|strong=\"H3064\"* hoped|strong=\"H7663\"* to|strong=\"H6213\"* conquer them|strong=\"H1992\"*, (but|strong=\"H1992\"* it|strong=\"H1931\"* turned|strong=\"H2015\"* out|strong=\"H6213\"* that|strong=\"H3117\"* the|strong=\"H6213\"* opposite|strong=\"H8147\"* happened|strong=\"H1697\"*, that|strong=\"H3117\"* the|strong=\"H6213\"* Jews|strong=\"H3064\"* conquered those|strong=\"H1992\"* who|strong=\"H1931\"* hated|strong=\"H8130\"* them|strong=\"H1992\"*)," + }, + { + "verseNum": 2, + "text": "the|strong=\"H3605\"* Jews|strong=\"H3064\"* gathered|strong=\"H6950\"* themselves|strong=\"H6440\"* together|strong=\"H6950\"* in|strong=\"H5921\"* their|strong=\"H3605\"* cities|strong=\"H5892\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"* of|strong=\"H4428\"* the|strong=\"H3605\"* King|strong=\"H4428\"* Ahasuerus, to|strong=\"H7971\"* lay|strong=\"H7971\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* those|strong=\"H3605\"* who|strong=\"H3605\"* wanted|strong=\"H1245\"* to|strong=\"H7971\"* harm|strong=\"H7451\"* them|strong=\"H5921\"*. No|strong=\"H3808\"* one|strong=\"H3605\"* could|strong=\"H5971\"* withstand|strong=\"H5975\"* them|strong=\"H5921\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* fear|strong=\"H6343\"* of|strong=\"H4428\"* them|strong=\"H5921\"* had|strong=\"H4428\"* fallen|strong=\"H5307\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 3, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"*, the|strong=\"H3605\"* local governors|strong=\"H6346\"*, the|strong=\"H3605\"* governors|strong=\"H6346\"*, and|strong=\"H4428\"* those|strong=\"H3605\"* who|strong=\"H3605\"* did|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s business|strong=\"H4399\"* helped|strong=\"H5375\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* fear|strong=\"H6343\"* of|strong=\"H4428\"* Mordecai|strong=\"H4782\"* had|strong=\"H4428\"* fallen|strong=\"H5307\"* on|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Mordecai|strong=\"H4782\"* was|strong=\"H4428\"* great|strong=\"H1419\"* in|strong=\"H1980\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H1980\"* his|strong=\"H3605\"* fame|strong=\"H8089\"* went|strong=\"H1980\"* out|strong=\"H1980\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* man|strong=\"H1419\"* Mordecai|strong=\"H4782\"* grew|strong=\"H1980\"* greater|strong=\"H1419\"* and|strong=\"H1980\"* greater|strong=\"H1419\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3605\"* Jews|strong=\"H3064\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* their|strong=\"H3605\"* enemies|strong=\"H8130\"* with|strong=\"H6213\"* the|strong=\"H3605\"* stroke|strong=\"H4347\"* of|strong=\"H3605\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, and|strong=\"H2719\"* with|strong=\"H6213\"* slaughter|strong=\"H4347\"* and|strong=\"H2719\"* destruction, and|strong=\"H2719\"* did|strong=\"H6213\"* what|strong=\"H6213\"* they|strong=\"H6213\"* wanted to|strong=\"H6213\"* those|strong=\"H3605\"* who|strong=\"H3605\"* hated|strong=\"H8130\"* them|strong=\"H5221\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"H1002\"* the|strong=\"H2026\"* citadel|strong=\"H1002\"* of|strong=\"H1002\"* Susa|strong=\"H7800\"*, the|strong=\"H2026\"* Jews|strong=\"H3064\"* killed|strong=\"H2026\"* and|strong=\"H3967\"* destroyed|strong=\"H2026\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* men." + }, + { + "verseNum": 7, + "text": "They killed Parshandatha|strong=\"H6577\"*, Dalphon|strong=\"H1813\"*, Aspatha," + }, + { + "verseNum": 8, + "text": "Poratha|strong=\"H6334\"*, Adalia, Aridatha," + }, + { + "verseNum": 9, + "text": "Parmashta|strong=\"H6534\"*, Arisai, Aridai, and Vaizatha|strong=\"H2055\"*," + }, + { + "verseNum": 10, + "text": "the|strong=\"H7971\"* ten|strong=\"H6235\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Haman|strong=\"H2001\"* the|strong=\"H7971\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hammedatha|strong=\"H4099\"*, the|strong=\"H7971\"* Jews|strong=\"H3064\"*’ enemy|strong=\"H6887\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* didn’t lay|strong=\"H7971\"* their|strong=\"H7971\"* hand|strong=\"H3027\"* on|strong=\"H3027\"* the|strong=\"H7971\"* plunder." + }, + { + "verseNum": 11, + "text": "On|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, the|strong=\"H6440\"* number|strong=\"H4557\"* of|strong=\"H4428\"* those|strong=\"H1931\"* who|strong=\"H1931\"* were|strong=\"H3117\"* slain|strong=\"H2026\"* in|strong=\"H4428\"* the|strong=\"H6440\"* citadel|strong=\"H1002\"* of|strong=\"H4428\"* Susa|strong=\"H7800\"* was|strong=\"H1931\"* brought|strong=\"H4428\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* said to|strong=\"H6213\"* Esther the|strong=\"H5414\"* queen|strong=\"H4436\"*, “The|strong=\"H5414\"* Jews|strong=\"H3064\"* have|strong=\"H1121\"* slain|strong=\"H2026\"* and|strong=\"H3967\"* destroyed|strong=\"H2026\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* men|strong=\"H1121\"* in|strong=\"H6213\"* the|strong=\"H5414\"* citadel|strong=\"H1002\"* of|strong=\"H1121\"* Susa|strong=\"H7800\"*, including|strong=\"H4428\"* the|strong=\"H5414\"* ten|strong=\"H6235\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Haman|strong=\"H2001\"*; what|strong=\"H4100\"* then|strong=\"H5414\"* have|strong=\"H1121\"* they|strong=\"H4100\"* done|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H5414\"* rest|strong=\"H7605\"* of|strong=\"H1121\"* the|strong=\"H5414\"* king|strong=\"H4428\"*’s provinces|strong=\"H4082\"*! Now|strong=\"H5414\"* what|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H5414\"* petition|strong=\"H7596\"*? It|strong=\"H5414\"* shall|strong=\"H1121\"* be|strong=\"H5750\"* granted|strong=\"H5414\"* you|strong=\"H5414\"*. What|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H5414\"* further|strong=\"H5750\"* request|strong=\"H1246\"*? It|strong=\"H5414\"* shall|strong=\"H1121\"* be|strong=\"H5750\"* done|strong=\"H6213\"*.”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H1571\"* Esther said, “If|strong=\"H1121\"* it|strong=\"H5414\"* pleases|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, let|strong=\"H5414\"* it|strong=\"H5414\"* be|strong=\"H1121\"* granted|strong=\"H5414\"* to|strong=\"H6213\"* the|strong=\"H5921\"* Jews|strong=\"H3064\"* who|strong=\"H1121\"* are|strong=\"H3117\"* in|strong=\"H5921\"* Susa|strong=\"H7800\"* to|strong=\"H6213\"* do|strong=\"H6213\"* tomorrow|strong=\"H4279\"* also|strong=\"H1571\"* according|strong=\"H5921\"* to|strong=\"H6213\"* today|strong=\"H3117\"*’s decree|strong=\"H1881\"*, and|strong=\"H1121\"* let|strong=\"H5414\"* Haman|strong=\"H2001\"*’s ten|strong=\"H6235\"* sons|strong=\"H1121\"* be|strong=\"H1121\"* hanged|strong=\"H8518\"* on|strong=\"H5921\"* the|strong=\"H5921\"* gallows|strong=\"H6086\"*.”" + }, + { + "verseNum": 14, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* commanded this|strong=\"H3651\"* to|strong=\"H6213\"* be|strong=\"H1121\"* done|strong=\"H6213\"*. A|strong=\"H3068\"* decree|strong=\"H1881\"* was|strong=\"H4428\"* given|strong=\"H5414\"* out|strong=\"H5414\"* in|strong=\"H6213\"* Susa|strong=\"H7800\"*; and|strong=\"H1121\"* they|strong=\"H3651\"* hanged|strong=\"H8518\"* Haman|strong=\"H2001\"*’s ten|strong=\"H6235\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3117\"* Jews|strong=\"H3064\"* who|strong=\"H3808\"* were|strong=\"H3117\"* in|strong=\"H3117\"* Susa|strong=\"H7800\"* gathered|strong=\"H6950\"* themselves|strong=\"H6950\"* together|strong=\"H6950\"* on|strong=\"H3117\"* the|strong=\"H3117\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* also|strong=\"H1571\"* of|strong=\"H3117\"* the|strong=\"H3117\"* month|strong=\"H2320\"* Adar, and|strong=\"H3967\"* killed|strong=\"H2026\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* men in|strong=\"H3117\"* Susa|strong=\"H7800\"*; but|strong=\"H3808\"* they|strong=\"H3117\"* didn’t lay|strong=\"H7971\"* their|strong=\"H7971\"* hand|strong=\"H3027\"* on|strong=\"H3117\"* the|strong=\"H3117\"* plunder." + }, + { + "verseNum": 16, + "text": "The|strong=\"H5921\"* other|strong=\"H7605\"* Jews|strong=\"H3064\"* who|strong=\"H5315\"* were|strong=\"H3027\"* in|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s provinces|strong=\"H4082\"* gathered|strong=\"H6950\"* themselves|strong=\"H5315\"* together|strong=\"H6950\"*, defended their|strong=\"H5921\"* lives|strong=\"H5315\"*, had|strong=\"H4428\"* rest|strong=\"H7605\"* from|strong=\"H5921\"* their|strong=\"H5921\"* enemies|strong=\"H8130\"*, and|strong=\"H7971\"* killed|strong=\"H2026\"* seventy-five|strong=\"H7657\"* thousand of|strong=\"H4428\"* those|strong=\"H5921\"* who|strong=\"H5315\"* hated|strong=\"H8130\"* them|strong=\"H5921\"*; but|strong=\"H3808\"* they|strong=\"H3808\"* didn’t lay|strong=\"H7971\"* their|strong=\"H5921\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* plunder." + }, + { + "verseNum": 17, + "text": "This|strong=\"H6213\"* was|strong=\"H3117\"* done|strong=\"H6213\"* on|strong=\"H3117\"* the|strong=\"H6213\"* thirteenth|strong=\"H7969\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H6213\"* month|strong=\"H2320\"* Adar; and|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H6213\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* of|strong=\"H3117\"* that|strong=\"H3117\"* month|strong=\"H2320\"* they|strong=\"H3117\"* rested|strong=\"H5117\"* and|strong=\"H3117\"* made|strong=\"H6213\"* it|strong=\"H6213\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* feasting|strong=\"H4960\"* and|strong=\"H3117\"* gladness|strong=\"H8057\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H3117\"* the|strong=\"H6213\"* Jews|strong=\"H3064\"* who|strong=\"H6213\"* were|strong=\"H3117\"* in|strong=\"H6213\"* Susa|strong=\"H7800\"* assembled|strong=\"H6950\"* together|strong=\"H6950\"* on|strong=\"H3117\"* the|strong=\"H6213\"* thirteenth|strong=\"H7969\"* and|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H6213\"* fourteenth|strong=\"H6240\"* days|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H6213\"* month; and|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H6213\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* of|strong=\"H3117\"* that|strong=\"H3117\"* month, they|strong=\"H3117\"* rested|strong=\"H5117\"*, and|strong=\"H3117\"* made|strong=\"H6213\"* it|strong=\"H6213\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* feasting|strong=\"H4960\"* and|strong=\"H3117\"* gladness|strong=\"H8057\"*." + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5921\"* Jews|strong=\"H3064\"* of|strong=\"H3117\"* the|strong=\"H5921\"* villages|strong=\"H6519\"*, who|strong=\"H3427\"* live|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* unwalled|strong=\"H6521\"* towns|strong=\"H5892\"*, make|strong=\"H6213\"* the|strong=\"H5921\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H5921\"* month|strong=\"H2320\"* Adar a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* gladness|strong=\"H8057\"* and|strong=\"H3117\"* feasting|strong=\"H4960\"*, a|strong=\"H3068\"* holiday|strong=\"H2896\"*, and|strong=\"H3117\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* sending|strong=\"H4916\"* presents of|strong=\"H3117\"* food|strong=\"H4490\"* to|strong=\"H6213\"* one|strong=\"H2896\"* another|strong=\"H7453\"*." + }, + { + "verseNum": 20, + "text": "Mordecai|strong=\"H4782\"* wrote|strong=\"H3789\"* these|strong=\"H3789\"* things|strong=\"H1697\"*, and|strong=\"H7971\"* sent|strong=\"H7971\"* letters|strong=\"H5612\"* to|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* who|strong=\"H3605\"* were|strong=\"H1697\"* in|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"* of|strong=\"H4428\"* the|strong=\"H3605\"* King|strong=\"H4428\"* Ahasuerus, both|strong=\"H3605\"* near|strong=\"H7138\"* and|strong=\"H7971\"* far|strong=\"H7350\"*," + }, + { + "verseNum": 21, + "text": "to|strong=\"H1961\"* enjoin them|strong=\"H5921\"* that|strong=\"H3605\"* they|strong=\"H3117\"* should|strong=\"H8141\"* keep|strong=\"H6213\"* the|strong=\"H3605\"* fourteenth|strong=\"H6240\"* and|strong=\"H6965\"* fifteenth|strong=\"H2568\"* days|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* month|strong=\"H2320\"* Adar yearly|strong=\"H3117\"*," + }, + { + "verseNum": 22, + "text": "as|strong=\"H3117\"* the|strong=\"H6213\"* days|strong=\"H3117\"* in|strong=\"H6213\"* which|strong=\"H1992\"* the|strong=\"H6213\"* Jews|strong=\"H3064\"* had|strong=\"H3064\"* rest|strong=\"H5117\"* from|strong=\"H3117\"* their|strong=\"H1992\"* enemies, and|strong=\"H3117\"* the|strong=\"H6213\"* month|strong=\"H2320\"* which|strong=\"H1992\"* was|strong=\"H3117\"* turned|strong=\"H2015\"* to|strong=\"H6213\"* them|strong=\"H1992\"* from|strong=\"H3117\"* sorrow|strong=\"H3015\"* to|strong=\"H6213\"* gladness|strong=\"H8057\"*, and|strong=\"H3117\"* from|strong=\"H3117\"* mourning into|strong=\"H2015\"* a|strong=\"H3068\"* holiday|strong=\"H2896\"*; that|strong=\"H3117\"* they|strong=\"H1992\"* should|strong=\"H3117\"* make|strong=\"H6213\"* them|strong=\"H1992\"* days|strong=\"H3117\"* of|strong=\"H3117\"* feasting|strong=\"H4960\"* and|strong=\"H3117\"* gladness|strong=\"H8057\"*, and|strong=\"H3117\"* of|strong=\"H3117\"* sending|strong=\"H4916\"* presents|strong=\"H4979\"* of|strong=\"H3117\"* food|strong=\"H4490\"* to|strong=\"H6213\"* one|strong=\"H2896\"* another|strong=\"H7453\"*, and|strong=\"H3117\"* gifts|strong=\"H4979\"* to|strong=\"H6213\"* the|strong=\"H6213\"* needy." + }, + { + "verseNum": 23, + "text": "The|strong=\"H6213\"* Jews|strong=\"H3064\"* accepted|strong=\"H6901\"* the|strong=\"H6213\"* custom|strong=\"H6901\"* that|strong=\"H3064\"* they|strong=\"H6213\"* had|strong=\"H4782\"* begun|strong=\"H2490\"*, as|strong=\"H6213\"* Mordecai|strong=\"H4782\"* had|strong=\"H4782\"* written|strong=\"H3789\"* to|strong=\"H6213\"* them|strong=\"H6213\"*," + }, + { + "verseNum": 24, + "text": "because|strong=\"H3588\"* Haman|strong=\"H2001\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hammedatha|strong=\"H4099\"*, the|strong=\"H3605\"* Agagite, the|strong=\"H3605\"* enemy|strong=\"H6887\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"*, had|strong=\"H3588\"* plotted|strong=\"H2803\"* against|strong=\"H5921\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* to|strong=\"H5921\"* destroy|strong=\"H2000\"* them|strong=\"H5921\"*, and|strong=\"H1121\"* had|strong=\"H3588\"* cast|strong=\"H5307\"* “Pur|strong=\"H6332\"*”, that|strong=\"H3588\"* is|strong=\"H1931\"* the|strong=\"H3605\"* lot|strong=\"H1486\"*, to|strong=\"H5921\"* consume|strong=\"H2000\"* them|strong=\"H5921\"* and|strong=\"H1121\"* to|strong=\"H5921\"* destroy|strong=\"H2000\"* them|strong=\"H5921\"*;" + }, + { + "verseNum": 25, + "text": "but|strong=\"H7725\"* when|strong=\"H7725\"* this|strong=\"H6440\"* became|strong=\"H7725\"* known to|strong=\"H7725\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, he|strong=\"H5921\"* commanded by|strong=\"H5921\"* letters|strong=\"H5612\"* that|strong=\"H4428\"* his|strong=\"H7725\"* wicked|strong=\"H7451\"* plan|strong=\"H2803\"*, which|strong=\"H3064\"* he|strong=\"H5921\"* had|strong=\"H4428\"* planned|strong=\"H2803\"* against|strong=\"H5921\"* the|strong=\"H6440\"* Jews|strong=\"H3064\"*, should|strong=\"H4428\"* return|strong=\"H7725\"* on|strong=\"H5921\"* his|strong=\"H7725\"* own|strong=\"H5973\"* head|strong=\"H7218\"*, and|strong=\"H1121\"* that|strong=\"H4428\"* he|strong=\"H5921\"* and|strong=\"H1121\"* his|strong=\"H7725\"* sons|strong=\"H1121\"* should|strong=\"H4428\"* be|strong=\"H1121\"* hanged|strong=\"H8518\"* on|strong=\"H5921\"* the|strong=\"H6440\"* gallows|strong=\"H6086\"*." + }, + { + "verseNum": 26, + "text": "Therefore|strong=\"H3651\"* they|strong=\"H3117\"* called|strong=\"H7121\"* these|strong=\"H2063\"* days|strong=\"H3117\"* “Purim|strong=\"H6332\"*”,+ 9:26 Purim is the Hebrew plural for pur, which means lot.* from|strong=\"H5921\"* the|strong=\"H3605\"* word|strong=\"H1697\"* “Pur|strong=\"H6332\"*.” Therefore|strong=\"H3651\"* because|strong=\"H5921\"* of|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3117\"* this|strong=\"H2063\"* letter, and|strong=\"H3117\"* of|strong=\"H3117\"* that|strong=\"H7200\"* which|strong=\"H1697\"* they|strong=\"H3117\"* had|strong=\"H4100\"* seen|strong=\"H7200\"* concerning|strong=\"H5921\"* this|strong=\"H2063\"* matter|strong=\"H1697\"*, and|strong=\"H3117\"* that|strong=\"H7200\"* which|strong=\"H1697\"* had|strong=\"H4100\"* come|strong=\"H5060\"* to|strong=\"H5921\"* them|strong=\"H5921\"*," + }, + { + "verseNum": 27, + "text": "the|strong=\"H3605\"* Jews|strong=\"H3064\"* established|strong=\"H6965\"* and|strong=\"H6965\"* imposed on|strong=\"H5921\"* themselves|strong=\"H6213\"*, on|strong=\"H5921\"* their|strong=\"H3605\"* descendants|strong=\"H2233\"*, and|strong=\"H6965\"* on|strong=\"H5921\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* joined|strong=\"H3867\"* themselves|strong=\"H6213\"* to|strong=\"H1961\"* them|strong=\"H5921\"*, so|strong=\"H6213\"* that|strong=\"H3605\"* it|strong=\"H5921\"* should|strong=\"H8141\"* not|strong=\"H3808\"* fail|strong=\"H5674\"* that|strong=\"H3605\"* they|strong=\"H3117\"* would|strong=\"H6213\"* keep|strong=\"H6213\"* these|strong=\"H6213\"* two|strong=\"H8147\"* days|strong=\"H3117\"* according|strong=\"H5921\"* to|strong=\"H1961\"* what|strong=\"H6213\"* was|strong=\"H1961\"* written and|strong=\"H6965\"* according|strong=\"H5921\"* to|strong=\"H1961\"* its|strong=\"H3605\"* appointed|strong=\"H6213\"* time|strong=\"H3117\"* every|strong=\"H3605\"* year|strong=\"H8141\"*;" + }, + { + "verseNum": 28, + "text": "and|strong=\"H3117\"* that|strong=\"H3605\"* these|strong=\"H6213\"* days|strong=\"H3117\"* should|strong=\"H3117\"* be|strong=\"H3808\"* remembered|strong=\"H2142\"* and|strong=\"H3117\"* kept|strong=\"H6213\"* throughout|strong=\"H3605\"* every|strong=\"H3605\"* generation|strong=\"H1755\"*, every|strong=\"H3605\"* family|strong=\"H4940\"*, every|strong=\"H3605\"* province|strong=\"H4082\"*, and|strong=\"H3117\"* every|strong=\"H3605\"* city|strong=\"H5892\"*; and|strong=\"H3117\"* that|strong=\"H3605\"* these|strong=\"H6213\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Purim|strong=\"H6332\"* should|strong=\"H3117\"* not|strong=\"H3808\"* fail|strong=\"H5674\"* from|strong=\"H3117\"* among|strong=\"H8432\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"*, nor|strong=\"H3808\"* their|strong=\"H3605\"* memory|strong=\"H2143\"* perish|strong=\"H5674\"* from|strong=\"H3117\"* their|strong=\"H3605\"* offspring|strong=\"H2233\"*.+ 9:28 or, seed*" + }, + { + "verseNum": 29, + "text": "Then|strong=\"H6965\"* Esther the|strong=\"H3605\"* queen|strong=\"H4436\"*, the|strong=\"H3605\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Abihail, and|strong=\"H6965\"* Mordecai|strong=\"H4782\"* the|strong=\"H3605\"* Jew|strong=\"H3064\"* wrote|strong=\"H3789\"* with|strong=\"H3605\"* all|strong=\"H3605\"* authority|strong=\"H8633\"* to|strong=\"H6965\"* confirm|strong=\"H6965\"* this|strong=\"H2063\"* second|strong=\"H8145\"* letter of|strong=\"H1323\"* Purim|strong=\"H6332\"*." + }, + { + "verseNum": 30, + "text": "He|strong=\"H3605\"* sent|strong=\"H7971\"* letters|strong=\"H5612\"* to|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* in|strong=\"H1697\"* the|strong=\"H3605\"* hundred|strong=\"H3967\"* twenty-seven|strong=\"H6242\"* provinces|strong=\"H4082\"* of|strong=\"H1697\"* the|strong=\"H3605\"* kingdom|strong=\"H4438\"* of|strong=\"H1697\"* Ahasuerus with|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H1697\"* peace|strong=\"H7965\"* and|strong=\"H3967\"* truth," + }, + { + "verseNum": 31, + "text": "to|strong=\"H5921\"* confirm|strong=\"H6965\"* these|strong=\"H6965\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Purim|strong=\"H6332\"* in|strong=\"H5921\"* their|strong=\"H5921\"* appointed|strong=\"H2165\"* times|strong=\"H3117\"*, as|strong=\"H1697\"* Mordecai|strong=\"H4782\"* the|strong=\"H5921\"* Jew|strong=\"H3064\"* and|strong=\"H6965\"* Esther the|strong=\"H5921\"* queen|strong=\"H4436\"* had|strong=\"H4782\"* decreed|strong=\"H6965\"*, and|strong=\"H6965\"* as|strong=\"H1697\"* they|strong=\"H3117\"* had|strong=\"H4782\"* imposed upon|strong=\"H5921\"* themselves|strong=\"H5315\"* and|strong=\"H6965\"* their|strong=\"H5921\"* descendants|strong=\"H2233\"* in|strong=\"H5921\"* the|strong=\"H5921\"* matter|strong=\"H1697\"* of|strong=\"H3117\"* the|strong=\"H5921\"* fastings|strong=\"H6685\"* and|strong=\"H6965\"* their|strong=\"H5921\"* mourning." + }, + { + "verseNum": 32, + "text": "The|strong=\"H6965\"* commandment|strong=\"H1697\"* of|strong=\"H1697\"* Esther confirmed|strong=\"H6965\"* these|strong=\"H3789\"* matters|strong=\"H1697\"* of|strong=\"H1697\"* Purim|strong=\"H6332\"*; and|strong=\"H6965\"* it|strong=\"H3789\"* was|strong=\"H1697\"* written|strong=\"H3789\"* in|strong=\"H3789\"* the|strong=\"H6965\"* book|strong=\"H5612\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "King|strong=\"H4428\"* Ahasuerus laid|strong=\"H7760\"* a|strong=\"H3068\"* tribute|strong=\"H4522\"* on|strong=\"H5921\"* the|strong=\"H5921\"* land and|strong=\"H4428\"* on|strong=\"H5921\"* the|strong=\"H5921\"* islands of|strong=\"H4428\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 2, + "text": "Aren’t all|strong=\"H3605\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* his|strong=\"H3605\"* power|strong=\"H1369\"* and|strong=\"H4428\"* of|strong=\"H4428\"* his|strong=\"H3605\"* might|strong=\"H1369\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* full|strong=\"H3117\"* account|strong=\"H5921\"* of|strong=\"H4428\"* the|strong=\"H3605\"* greatness|strong=\"H1420\"* of|strong=\"H4428\"* Mordecai|strong=\"H4782\"*, to|strong=\"H5921\"* which|strong=\"H1992\"* the|strong=\"H3605\"* king|strong=\"H4428\"* advanced|strong=\"H1431\"* him|strong=\"H5921\"*, written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Media|strong=\"H4074\"* and|strong=\"H4428\"* Persia|strong=\"H6539\"*?" + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* Mordecai|strong=\"H4782\"* the|strong=\"H3605\"* Jew|strong=\"H3064\"* was|strong=\"H4428\"* next|strong=\"H4932\"* to|strong=\"H1696\"* King|strong=\"H4428\"* Ahasuerus, and|strong=\"H4428\"* great|strong=\"H1419\"* among|strong=\"H5971\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* and|strong=\"H4428\"* accepted|strong=\"H7521\"* by|strong=\"H3605\"* the|strong=\"H3605\"* multitude|strong=\"H7230\"* of|strong=\"H4428\"* his|strong=\"H3605\"* brothers, seeking|strong=\"H1875\"* the|strong=\"H3605\"* good|strong=\"H2896\"* of|strong=\"H4428\"* his|strong=\"H3605\"* people|strong=\"H5971\"* and|strong=\"H4428\"* speaking|strong=\"H1696\"* peace|strong=\"H7965\"* to|strong=\"H1696\"* all|strong=\"H3605\"* his|strong=\"H3605\"* descendants|strong=\"H2233\"*." + } + ] + } + ] + }, + { + "name": "Job", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "There|strong=\"H1961\"* was|strong=\"H8034\"* a|strong=\"H3068\"* man|strong=\"H7451\"* in|strong=\"H3477\"* the|strong=\"H5493\"* land of|strong=\"H8034\"* Uz|strong=\"H5780\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Job. That|strong=\"H1931\"* man|strong=\"H7451\"* was|strong=\"H8034\"* blameless|strong=\"H8535\"* and|strong=\"H8034\"* upright|strong=\"H3477\"*, and|strong=\"H8034\"* one|strong=\"H1931\"* who|strong=\"H1931\"* feared|strong=\"H3373\"* God,+ 1:1 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* and|strong=\"H8034\"* turned|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 2, + "text": "There were|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H3205\"* him|strong=\"H3205\"* seven|strong=\"H7651\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* three|strong=\"H7969\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 3, + "text": "His|strong=\"H3605\"* possessions|strong=\"H4735\"* also|strong=\"H1121\"* were|strong=\"H1961\"* seven|strong=\"H7651\"* thousand sheep|strong=\"H6629\"*, three|strong=\"H7969\"* thousand camels|strong=\"H1581\"*, five|strong=\"H2568\"* hundred|strong=\"H3967\"* yoke|strong=\"H6776\"* of|strong=\"H1121\"* oxen|strong=\"H1241\"*, five|strong=\"H2568\"* hundred|strong=\"H3967\"* female donkeys, and|strong=\"H3967\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* household|strong=\"H5657\"*; so|strong=\"H1961\"* that|strong=\"H3605\"* this|strong=\"H1931\"* man|strong=\"H1121\"* was|strong=\"H1961\"* the|strong=\"H3605\"* greatest|strong=\"H1419\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* east|strong=\"H6924\"*." + }, + { + "verseNum": 4, + "text": "His|strong=\"H7121\"* sons|strong=\"H1121\"* went|strong=\"H1980\"* and|strong=\"H1121\"* held|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H4960\"* in|strong=\"H1980\"* the|strong=\"H6213\"* house|strong=\"H1004\"* of|strong=\"H1121\"* each|strong=\"H3117\"* one|strong=\"H1121\"* on|strong=\"H3117\"* his|strong=\"H7121\"* birthday|strong=\"H3117\"*; and|strong=\"H1121\"* they|strong=\"H3117\"* sent|strong=\"H7971\"* and|strong=\"H1121\"* called|strong=\"H7121\"* for|strong=\"H7121\"* their|strong=\"H7971\"* three|strong=\"H7969\"* sisters to|strong=\"H1980\"* eat and|strong=\"H1121\"* to|strong=\"H1980\"* drink|strong=\"H8354\"* with|strong=\"H5973\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 5, + "text": "It|strong=\"H3588\"* was|strong=\"H1961\"* so|strong=\"H6213\"*, when|strong=\"H3588\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H1121\"* their|strong=\"H3605\"* feasting|strong=\"H4960\"* had|strong=\"H1961\"* run their|strong=\"H3605\"* course, that|strong=\"H3588\"* Job sent|strong=\"H7971\"* and|strong=\"H1121\"* sanctified|strong=\"H6942\"* them|strong=\"H7971\"*, and|strong=\"H1121\"* rose|strong=\"H7925\"* up|strong=\"H5927\"* early|strong=\"H7925\"* in|strong=\"H6213\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*, and|strong=\"H1121\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* according|strong=\"H3602\"* to|strong=\"H7971\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* them|strong=\"H7971\"* all|strong=\"H3605\"*. For|strong=\"H3588\"* Job said, “It|strong=\"H3588\"* may|strong=\"H1961\"* be|strong=\"H1961\"* that|strong=\"H3588\"* my|strong=\"H3605\"* sons|strong=\"H1121\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"*, and|strong=\"H1121\"* renounced God|strong=\"H7971\"* in|strong=\"H6213\"* their|strong=\"H3605\"* hearts|strong=\"H3824\"*.” Job did|strong=\"H6213\"* so|strong=\"H6213\"* continually|strong=\"H3605\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* when|strong=\"H1961\"* God|strong=\"H3068\"*’s sons|strong=\"H1121\"* came|strong=\"H1961\"* to|strong=\"H3068\"* present|strong=\"H3320\"* themselves|strong=\"H3320\"* before|strong=\"H5921\"* Yahweh|strong=\"H3068\"*,+ 1:6 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* Satan|strong=\"H7854\"* also|strong=\"H1571\"* came|strong=\"H1961\"* among|strong=\"H8432\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H6030\"* to|strong=\"H1980\"* Satan|strong=\"H7854\"*, “Where have|strong=\"H3068\"* you|strong=\"H6030\"* come|strong=\"H1980\"* from|strong=\"H1980\"*?”" + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Satan|strong=\"H7854\"*, “Have|strong=\"H3068\"* you|strong=\"H3588\"* considered|strong=\"H7760\"* my|strong=\"H3068\"* servant|strong=\"H5650\"*, Job? For|strong=\"H3588\"* there|strong=\"H3068\"* is|strong=\"H3068\"* no|strong=\"H7760\"* one|strong=\"H3588\"* like|strong=\"H3644\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* earth, a|strong=\"H3068\"* blameless|strong=\"H8535\"* and|strong=\"H3068\"* an|strong=\"H7760\"* upright|strong=\"H3477\"* man|strong=\"H7451\"*, one|strong=\"H3588\"* who|strong=\"H3068\"* fears|strong=\"H3373\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* turns|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* evil|strong=\"H7451\"*.”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H6030\"* Satan|strong=\"H7854\"* answered|strong=\"H6030\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H6030\"*, “Does|strong=\"H3068\"* Job fear|strong=\"H3372\"* God|strong=\"H3068\"* for|strong=\"H3068\"* nothing|strong=\"H2600\"*?" + }, + { + "verseNum": 10, + "text": "Haven’t you|strong=\"H3605\"* made|strong=\"H4639\"* a|strong=\"H3068\"* hedge|strong=\"H7753\"* around|strong=\"H5439\"* him|strong=\"H3027\"*, and|strong=\"H3027\"* around|strong=\"H5439\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, and|strong=\"H3027\"* around|strong=\"H5439\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3605\"* has|strong=\"H3027\"*, on|strong=\"H3027\"* every|strong=\"H3605\"* side|strong=\"H5439\"*? You|strong=\"H3605\"* have|strong=\"H3027\"* blessed|strong=\"H1288\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H1004\"* his|strong=\"H3605\"* hands|strong=\"H3027\"*, and|strong=\"H3027\"* his|strong=\"H3605\"* substance|strong=\"H4735\"* is|strong=\"H3027\"* increased|strong=\"H6555\"* in|strong=\"H1004\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 11, + "text": "But|strong=\"H3808\"* stretch|strong=\"H7971\"* out|strong=\"H7971\"* your|strong=\"H3605\"* hand|strong=\"H3027\"* now|strong=\"H4994\"*, and|strong=\"H7971\"* touch|strong=\"H5060\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3605\"* has|strong=\"H3027\"*, and|strong=\"H7971\"* he|strong=\"H3605\"* will|strong=\"H3027\"* renounce you|strong=\"H6440\"* to|strong=\"H7971\"* your|strong=\"H3605\"* face|strong=\"H6440\"*.”" + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Satan|strong=\"H7854\"*, “Behold|strong=\"H2009\"*,+ 1:12 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3068\"* has|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* power|strong=\"H3027\"*. Only|strong=\"H7535\"* on|strong=\"H3027\"* himself|strong=\"H3027\"* don’t stretch|strong=\"H7971\"* out|strong=\"H3318\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 13, + "text": "It|strong=\"H1961\"* fell|strong=\"H1961\"* on|strong=\"H3117\"* a|strong=\"H3068\"* day|strong=\"H3117\"* when|strong=\"H1961\"* his|strong=\"H1961\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H1961\"* daughters|strong=\"H1323\"* were|strong=\"H1961\"* eating and|strong=\"H1121\"* drinking|strong=\"H8354\"* wine|strong=\"H3196\"* in|strong=\"H1004\"* their|strong=\"H1961\"* oldest|strong=\"H1060\"* brother’s house|strong=\"H1004\"*," + }, + { + "verseNum": 14, + "text": "that|strong=\"H4397\"* a|strong=\"H3068\"* messenger|strong=\"H4397\"* came|strong=\"H1961\"* to|strong=\"H1961\"* Job, and|strong=\"H3027\"* said|strong=\"H2790\"*, “The|strong=\"H5921\"* oxen|strong=\"H1241\"* were|strong=\"H1961\"* plowing|strong=\"H2790\"*, and|strong=\"H3027\"* the|strong=\"H5921\"* donkeys feeding|strong=\"H7462\"* beside|strong=\"H5921\"* them|strong=\"H5921\"*," + }, + { + "verseNum": 15, + "text": "and|strong=\"H2719\"* the|strong=\"H3947\"* Sabeans|strong=\"H7614\"* attacked|strong=\"H5221\"*, and|strong=\"H2719\"* took|strong=\"H3947\"* them|strong=\"H5221\"* away|strong=\"H3947\"*. Yes, they|strong=\"H6310\"* have|strong=\"H5288\"* killed|strong=\"H5221\"* the|strong=\"H3947\"* servants|strong=\"H5288\"* with|strong=\"H6310\"* the|strong=\"H3947\"* edge|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H3947\"* sword|strong=\"H2719\"*, and|strong=\"H2719\"* I|strong=\"H5288\"* alone|strong=\"H4422\"* have|strong=\"H5288\"* escaped|strong=\"H4422\"* to|strong=\"H6310\"* tell|strong=\"H5046\"* you|strong=\"H3947\"*.”" + }, + { + "verseNum": 16, + "text": "While|strong=\"H5750\"* he|strong=\"H4480\"* was|strong=\"H5288\"* still|strong=\"H5750\"* speaking|strong=\"H1696\"*, another|strong=\"H2088\"* also|strong=\"H5750\"* came|strong=\"H5307\"* and|strong=\"H8064\"* said|strong=\"H1696\"*, “The|strong=\"H4480\"* fire of|strong=\"H4480\"* God|strong=\"H8064\"* has|strong=\"H2088\"* fallen|strong=\"H5307\"* from|strong=\"H4480\"* the|strong=\"H4480\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* has|strong=\"H2088\"* burned|strong=\"H1197\"* up|strong=\"H1197\"* the|strong=\"H4480\"* sheep|strong=\"H6629\"* and|strong=\"H8064\"* the|strong=\"H4480\"* servants|strong=\"H5288\"*, and|strong=\"H8064\"* consumed|strong=\"H1197\"* them|strong=\"H5307\"*, and|strong=\"H8064\"* I|strong=\"H2088\"* alone|strong=\"H4480\"* have|strong=\"H5288\"* escaped|strong=\"H4422\"* to|strong=\"H1696\"* tell|strong=\"H5046\"* you|strong=\"H5046\"*.”" + }, + { + "verseNum": 17, + "text": "While|strong=\"H5750\"* he|strong=\"H5921\"* was|strong=\"H5288\"* still|strong=\"H5750\"* speaking|strong=\"H1696\"*, another|strong=\"H2088\"* also|strong=\"H5750\"* came|strong=\"H7969\"* and|strong=\"H7218\"* said|strong=\"H1696\"*, “The|strong=\"H5921\"* Chaldeans|strong=\"H3778\"* made|strong=\"H7760\"* three|strong=\"H7969\"* bands|strong=\"H7218\"*, and|strong=\"H7218\"* swept down|strong=\"H5221\"* on|strong=\"H5921\"* the|strong=\"H5921\"* camels|strong=\"H1581\"*, and|strong=\"H7218\"* have|strong=\"H5288\"* taken|strong=\"H3947\"* them|strong=\"H5921\"* away|strong=\"H3947\"*, yes, and|strong=\"H7218\"* killed|strong=\"H5221\"* the|strong=\"H5921\"* servants|strong=\"H5288\"* with|strong=\"H1696\"* the|strong=\"H5921\"* edge|strong=\"H6310\"* of|strong=\"H7218\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*; and|strong=\"H7218\"* I|strong=\"H5921\"* alone|strong=\"H4422\"* have|strong=\"H5288\"* escaped|strong=\"H4422\"* to|strong=\"H1696\"* tell|strong=\"H5046\"* you|strong=\"H5921\"*.”" + }, + { + "verseNum": 18, + "text": "While|strong=\"H5704\"* he|strong=\"H5704\"* was|strong=\"H1004\"* still|strong=\"H5704\"* speaking|strong=\"H1696\"*, there|strong=\"H2088\"* came|strong=\"H1323\"* also|strong=\"H2088\"* another|strong=\"H2088\"*, and|strong=\"H1121\"* said|strong=\"H1696\"*, “Your|strong=\"H5704\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H5704\"* daughters|strong=\"H1323\"* were|strong=\"H1121\"* eating and|strong=\"H1121\"* drinking|strong=\"H8354\"* wine|strong=\"H3196\"* in|strong=\"H1004\"* their|strong=\"H8354\"* oldest|strong=\"H1060\"* brother’s house|strong=\"H1004\"*," + }, + { + "verseNum": 19, + "text": "and|strong=\"H1419\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* came|strong=\"H5060\"* a|strong=\"H3068\"* great|strong=\"H1419\"* wind|strong=\"H7307\"* from|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*, and|strong=\"H1419\"* struck|strong=\"H5060\"* the|strong=\"H5921\"* four corners|strong=\"H6438\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, and|strong=\"H1419\"* it|strong=\"H5921\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* the|strong=\"H5921\"* young|strong=\"H5288\"* men|strong=\"H5288\"*, and|strong=\"H1419\"* they|strong=\"H5921\"* are|strong=\"H1004\"* dead|strong=\"H4191\"*. I|strong=\"H2009\"* alone|strong=\"H4422\"* have|strong=\"H5288\"* escaped|strong=\"H4422\"* to|strong=\"H4191\"* tell|strong=\"H5046\"* you|strong=\"H5921\"*.”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H6965\"* Job arose|strong=\"H6965\"*, and|strong=\"H6965\"* tore|strong=\"H7167\"* his|strong=\"H7167\"* robe|strong=\"H4598\"*, and|strong=\"H6965\"* shaved|strong=\"H1494\"* his|strong=\"H7167\"* head|strong=\"H7218\"*, and|strong=\"H6965\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* on|strong=\"H5307\"* the|strong=\"H6965\"* ground, and|strong=\"H6965\"* worshiped|strong=\"H7812\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H8033\"* said|strong=\"H3318\"*, “Naked|strong=\"H6174\"* I|strong=\"H5414\"* came|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H3068\"* my|strong=\"H5414\"* mother’s womb, and|strong=\"H3068\"* naked|strong=\"H6174\"* will|strong=\"H3068\"* I|strong=\"H5414\"* return|strong=\"H7725\"* there|strong=\"H8033\"*. Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* taken|strong=\"H3947\"* away|strong=\"H7725\"*. Blessed|strong=\"H1288\"* be|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*.”" + }, + { + "verseNum": 22, + "text": "In|strong=\"H5414\"* all|strong=\"H3605\"* this|strong=\"H2063\"*, Job|strong=\"H3808\"* didn’t sin|strong=\"H2398\"*, nor|strong=\"H3808\"* charge|strong=\"H5414\"* God|strong=\"H5414\"* with|strong=\"H3605\"* wrongdoing." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Again|strong=\"H1961\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* when|strong=\"H1961\"* God|strong=\"H3068\"*’s sons|strong=\"H1121\"* came|strong=\"H1961\"* to|strong=\"H3068\"* present|strong=\"H3320\"* themselves|strong=\"H3320\"* before|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, Satan|strong=\"H7854\"* came|strong=\"H1961\"* also|strong=\"H1571\"* among|strong=\"H8432\"* them|strong=\"H5921\"* to|strong=\"H3068\"* present|strong=\"H3320\"* himself|strong=\"H3320\"* before|strong=\"H5921\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H6030\"* to|strong=\"H1980\"* Satan|strong=\"H7854\"*, “Where|strong=\"H2088\"* have|strong=\"H3068\"* you|strong=\"H6030\"* come|strong=\"H1980\"* from|strong=\"H1980\"*?”" + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Satan|strong=\"H7854\"*, “Have|strong=\"H3068\"* you|strong=\"H3588\"* considered|strong=\"H7760\"* my|strong=\"H3068\"* servant|strong=\"H5650\"* Job? For|strong=\"H3588\"* there|strong=\"H3068\"* is|strong=\"H3068\"* no|strong=\"H7760\"* one|strong=\"H3588\"* like|strong=\"H3644\"* him|strong=\"H7760\"* in|strong=\"H3068\"* the|strong=\"H3588\"* earth, a|strong=\"H3068\"* blameless|strong=\"H8535\"* and|strong=\"H3068\"* an|strong=\"H7760\"* upright|strong=\"H3477\"* man|strong=\"H7451\"*, one|strong=\"H3588\"* who|strong=\"H3068\"* fears|strong=\"H3373\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* turns|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* evil|strong=\"H7451\"*. He|strong=\"H3588\"* still|strong=\"H5750\"* maintains his|strong=\"H7760\"* integrity|strong=\"H8538\"*, although|strong=\"H3588\"* you|strong=\"H3588\"* incited|strong=\"H5496\"* me|strong=\"H7760\"* against|strong=\"H2388\"* him|strong=\"H7760\"*, to|strong=\"H3068\"* ruin|strong=\"H7451\"* him|strong=\"H7760\"* without|strong=\"H2600\"* cause|strong=\"H2600\"*.”" + }, + { + "verseNum": 4, + "text": "Satan|strong=\"H7854\"* answered|strong=\"H6030\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H6030\"*, “Skin|strong=\"H5785\"* for|strong=\"H1157\"* skin|strong=\"H5785\"*. Yes, all|strong=\"H3605\"* that|strong=\"H3605\"* a|strong=\"H3068\"* man|strong=\"H5315\"* has|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5414\"* for|strong=\"H1157\"* his|strong=\"H3605\"* life|strong=\"H5315\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H3808\"* stretch|strong=\"H7971\"* out|strong=\"H7971\"* your|strong=\"H6440\"* hand|strong=\"H3027\"* now|strong=\"H4994\"*, and|strong=\"H7971\"* touch|strong=\"H5060\"* his|strong=\"H7971\"* bone|strong=\"H6106\"* and|strong=\"H7971\"* his|strong=\"H7971\"* flesh|strong=\"H1320\"*, and|strong=\"H7971\"* he|strong=\"H3027\"* will|strong=\"H1320\"* renounce you|strong=\"H6440\"* to|strong=\"H7971\"* your|strong=\"H6440\"* face|strong=\"H6440\"*.”" + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Satan|strong=\"H7854\"*, “Behold|strong=\"H2005\"*, he|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*. Only spare|strong=\"H8104\"* his|strong=\"H8104\"* life|strong=\"H5315\"*.”" + }, + { + "verseNum": 7, + "text": "So|strong=\"H3318\"* Satan|strong=\"H7854\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* struck|strong=\"H5221\"* Job|strong=\"H6440\"* with|strong=\"H3068\"* painful sores from|strong=\"H3318\"* the|strong=\"H6440\"* sole|strong=\"H3709\"* of|strong=\"H3068\"* his|strong=\"H3068\"* foot|strong=\"H7272\"* to|strong=\"H5704\"* his|strong=\"H3068\"* head|strong=\"H6936\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H1931\"* took|strong=\"H3947\"* for|strong=\"H3427\"* himself|strong=\"H1931\"* a|strong=\"H3068\"* potsherd|strong=\"H2789\"* to|strong=\"H3427\"* scrape|strong=\"H1623\"* himself|strong=\"H1931\"* with|strong=\"H3427\"*, and|strong=\"H3427\"* he|strong=\"H1931\"* sat|strong=\"H3427\"* among|strong=\"H8432\"* the|strong=\"H3947\"* ashes." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H4191\"* his|strong=\"H1288\"* wife said to|strong=\"H4191\"* him|strong=\"H4191\"*, “Do you|strong=\"H1288\"* still|strong=\"H5750\"* maintain|strong=\"H2388\"* your|strong=\"H2388\"* integrity|strong=\"H8538\"*? Renounce God, and|strong=\"H2388\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 10, + "text": "But|strong=\"H3808\"* he|strong=\"H3605\"* said|strong=\"H1696\"* to|strong=\"H1696\"* her|strong=\"H3605\"*, “You|strong=\"H3605\"* speak|strong=\"H1696\"* as|strong=\"H1571\"* one|strong=\"H3605\"* of|strong=\"H3605\"* the|strong=\"H3605\"* foolish|strong=\"H5036\"* women|strong=\"H5036\"* would|strong=\"H7451\"* speak|strong=\"H1696\"*. What|strong=\"H2896\"*? Shall|strong=\"H3808\"* we|strong=\"H3068\"* receive|strong=\"H6901\"* good|strong=\"H2896\"* at|strong=\"H3808\"* the|strong=\"H3605\"* hand of|strong=\"H3605\"* God|strong=\"H3808\"*, and|strong=\"H2896\"* shall|strong=\"H3808\"* we|strong=\"H3068\"* not|strong=\"H3808\"* receive|strong=\"H6901\"* evil|strong=\"H7451\"*?”" + }, + { + "verseNum": 11, + "text": "Now|strong=\"H8085\"* when|strong=\"H8085\"* Job’s three|strong=\"H7969\"* friends|strong=\"H7453\"* heard|strong=\"H8085\"* of|strong=\"H5921\"* all|strong=\"H3605\"* this|strong=\"H2063\"* evil|strong=\"H7451\"* that|strong=\"H3605\"* had|strong=\"H7969\"* come on|strong=\"H5921\"* him|strong=\"H5921\"*, they|strong=\"H5921\"* each|strong=\"H3605\"* came|strong=\"H7451\"* from|strong=\"H5921\"* his|strong=\"H3605\"* own place|strong=\"H4725\"*: Eliphaz the|strong=\"H3605\"* Temanite|strong=\"H8489\"*, Bildad|strong=\"H1085\"* the|strong=\"H3605\"* Shuhite|strong=\"H7747\"*, and|strong=\"H8085\"* Zophar|strong=\"H6691\"* the|strong=\"H3605\"* Naamathite|strong=\"H5284\"*; and|strong=\"H8085\"* they|strong=\"H5921\"* made|strong=\"H3259\"* an|strong=\"H3259\"* appointment|strong=\"H3259\"* together|strong=\"H3162\"* to|strong=\"H5921\"* come to|strong=\"H5921\"* sympathize|strong=\"H5110\"* with|strong=\"H5921\"* him|strong=\"H5921\"* and|strong=\"H8085\"* to|strong=\"H5921\"* comfort|strong=\"H5162\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"H5375\"* they|strong=\"H3808\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H5375\"* eyes|strong=\"H5869\"* from|strong=\"H5921\"* a|strong=\"H3068\"* distance|strong=\"H7350\"*, and|strong=\"H8064\"* didn’t recognize|strong=\"H5234\"* him|strong=\"H5921\"*, they|strong=\"H3808\"* raised|strong=\"H5375\"* their|strong=\"H5375\"* voices|strong=\"H6963\"*, and|strong=\"H8064\"* wept|strong=\"H1058\"*; and|strong=\"H8064\"* they|strong=\"H3808\"* each tore|strong=\"H7167\"* his|strong=\"H5375\"* robe|strong=\"H4598\"*, and|strong=\"H8064\"* sprinkled|strong=\"H2236\"* dust|strong=\"H6083\"* on|strong=\"H5921\"* their|strong=\"H5375\"* heads|strong=\"H7218\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 13, + "text": "So|strong=\"H3966\"* they|strong=\"H3588\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* with|strong=\"H1696\"* him|strong=\"H7200\"* on|strong=\"H3117\"* the|strong=\"H7200\"* ground seven|strong=\"H7651\"* days|strong=\"H3117\"* and|strong=\"H3117\"* seven|strong=\"H7651\"* nights|strong=\"H3915\"*, and|strong=\"H3117\"* no|strong=\"H7200\"* one|strong=\"H3588\"* spoke|strong=\"H1696\"* a|strong=\"H3068\"* word|strong=\"H1697\"* to|strong=\"H1696\"* him|strong=\"H7200\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* his|strong=\"H7200\"* grief|strong=\"H3511\"* was|strong=\"H1697\"* very|strong=\"H3966\"* great|strong=\"H1431\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H3117\"* this|strong=\"H3651\"* Job opened|strong=\"H6605\"* his|strong=\"H7043\"* mouth|strong=\"H6310\"*, and|strong=\"H3117\"* cursed|strong=\"H7043\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H7043\"* birth." + }, + { + "verseNum": 2, + "text": "Job answered|strong=\"H6030\"*:" + }, + { + "verseNum": 3, + "text": "“Let the|strong=\"H3205\"* day|strong=\"H3117\"* perish in|strong=\"H3117\"* which|strong=\"H3117\"* I|strong=\"H3117\"* was|strong=\"H3117\"* born|strong=\"H3205\"*," + }, + { + "verseNum": 4, + "text": "Let|strong=\"H1961\"* that|strong=\"H3117\"* day|strong=\"H3117\"* be|strong=\"H1961\"* darkness|strong=\"H2822\"*." + }, + { + "verseNum": 5, + "text": "Let|strong=\"H1350\"* darkness|strong=\"H2822\"* and|strong=\"H3117\"* the|strong=\"H5921\"* shadow|strong=\"H6757\"* of|strong=\"H3117\"* death|strong=\"H6757\"* claim|strong=\"H1350\"* it|strong=\"H5921\"* for|strong=\"H5921\"* their|strong=\"H5921\"* own." + }, + { + "verseNum": 6, + "text": "As|strong=\"H3117\"* for|strong=\"H3117\"* that|strong=\"H3117\"* night|strong=\"H3915\"*, let thick darkness seize|strong=\"H3947\"* on|strong=\"H3117\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 7, + "text": "Behold|strong=\"H2009\"*, let|strong=\"H1961\"* that|strong=\"H1931\"* night|strong=\"H3915\"* be|strong=\"H1961\"* barren|strong=\"H1565\"*." + }, + { + "verseNum": 8, + "text": "Let them|strong=\"H3117\"* curse|strong=\"H5344\"* it|strong=\"H3117\"* who curse|strong=\"H5344\"* the|strong=\"H3117\"* day|strong=\"H3117\"*," + }, + { + "verseNum": 9, + "text": "Let|strong=\"H6079\"* the|strong=\"H7200\"* stars|strong=\"H3556\"* of|strong=\"H3556\"* its twilight|strong=\"H5399\"* be|strong=\"H6079\"* dark|strong=\"H2821\"*." + }, + { + "verseNum": 10, + "text": "because|strong=\"H3588\"* it|strong=\"H3588\"* didn’t shut|strong=\"H5462\"* up|strong=\"H5462\"* the|strong=\"H3588\"* doors|strong=\"H1817\"* of|strong=\"H5869\"* my|strong=\"H5641\"* mother’s womb," + }, + { + "verseNum": 11, + "text": "“Why|strong=\"H4100\"* didn’t I|strong=\"H3808\"* die|strong=\"H4191\"* from|strong=\"H3318\"* the|strong=\"H3318\"* womb|strong=\"H7358\"*?" + }, + { + "verseNum": 12, + "text": "Why|strong=\"H4100\"* did|strong=\"H4100\"* the|strong=\"H3588\"* knees|strong=\"H1290\"* receive|strong=\"H6923\"* me|strong=\"H6923\"*?" + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* now|strong=\"H6258\"* I|strong=\"H3588\"* should|strong=\"H3588\"* have|strong=\"H6258\"* lain|strong=\"H7901\"* down|strong=\"H7901\"* and|strong=\"H8252\"* been|strong=\"H8252\"* quiet|strong=\"H8252\"*." + }, + { + "verseNum": 14, + "text": "with|strong=\"H5973\"* kings|strong=\"H4428\"* and|strong=\"H4428\"* counselors|strong=\"H3289\"* of|strong=\"H4428\"* the|strong=\"H1129\"* earth," + }, + { + "verseNum": 15, + "text": "or|strong=\"H3701\"* with|strong=\"H5973\"* princes|strong=\"H8269\"* who|strong=\"H1992\"* had|strong=\"H8269\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 16, + "text": "or|strong=\"H3808\"* as|strong=\"H1961\"* a|strong=\"H3068\"* hidden|strong=\"H2934\"* untimely|strong=\"H2934\"* birth|strong=\"H5309\"* I|strong=\"H7200\"* had|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"*," + }, + { + "verseNum": 17, + "text": "There|strong=\"H8033\"* the|strong=\"H8033\"* wicked|strong=\"H7563\"* cease|strong=\"H2308\"* from|strong=\"H5117\"* troubling|strong=\"H7267\"*." + }, + { + "verseNum": 18, + "text": "There the|strong=\"H8085\"* prisoners are|strong=\"H3808\"* at|strong=\"H3808\"* ease|strong=\"H7599\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5650\"* small|strong=\"H6996\"* and|strong=\"H1419\"* the|strong=\"H5650\"* great|strong=\"H1419\"* are|strong=\"H5650\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 20, + "text": "“Why|strong=\"H4100\"* is|strong=\"H4100\"* light given|strong=\"H5414\"* to|strong=\"H5414\"* him|strong=\"H5414\"* who|strong=\"H5315\"* is|strong=\"H4100\"* in|strong=\"H5315\"* misery|strong=\"H6001\"*," + }, + { + "verseNum": 21, + "text": "who long|strong=\"H2442\"* for|strong=\"H2442\"* death|strong=\"H4194\"*, but it|strong=\"H4301\"* doesn’t come;" + }, + { + "verseNum": 22, + "text": "who|strong=\"H4672\"* rejoice|strong=\"H8055\"* exceedingly|strong=\"H1524\"*," + }, + { + "verseNum": 23, + "text": "Why is|strong=\"H1870\"* light given to|strong=\"H1870\"* a|strong=\"H3068\"* man|strong=\"H1397\"* whose|strong=\"H1397\"* way|strong=\"H1870\"* is|strong=\"H1870\"* hidden|strong=\"H5641\"*," + }, + { + "verseNum": 24, + "text": "For|strong=\"H3588\"* my|strong=\"H3588\"* sighing comes|strong=\"H6440\"* before|strong=\"H6440\"* I|strong=\"H3588\"* eat|strong=\"H3899\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* thing|strong=\"H3588\"* which|strong=\"H3588\"* I|strong=\"H3588\"* fear|strong=\"H6343\"* comes on me|strong=\"H3588\"*," + }, + { + "verseNum": 26, + "text": "I|strong=\"H3808\"* am not|strong=\"H3808\"* at|strong=\"H3808\"* ease|strong=\"H7951\"*, neither|strong=\"H3808\"* am I|strong=\"H3808\"* quiet|strong=\"H8252\"*, neither|strong=\"H3808\"* do I|strong=\"H3808\"* have|strong=\"H3808\"* rest|strong=\"H5117\"*;" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Eliphaz the|strong=\"H6030\"* Temanite|strong=\"H8489\"* answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“If someone|strong=\"H4310\"* ventures|strong=\"H5254\"* to|strong=\"H3201\"* talk|strong=\"H1697\"* with|strong=\"H1697\"* you|strong=\"H4310\"*, will|strong=\"H4310\"* you|strong=\"H4310\"* be|strong=\"H1697\"* grieved|strong=\"H3811\"*?" + }, + { + "verseNum": 3, + "text": "Behold|strong=\"H2009\"*, you|strong=\"H3256\"* have|strong=\"H3027\"* instructed|strong=\"H3256\"* many|strong=\"H7227\"*," + }, + { + "verseNum": 4, + "text": "Your|strong=\"H6965\"* words|strong=\"H4405\"* have|strong=\"H4405\"* supported him|strong=\"H3766\"* who was falling|strong=\"H3782\"*," + }, + { + "verseNum": 5, + "text": "But|strong=\"H3588\"* now|strong=\"H6258\"* it|strong=\"H3588\"* has|strong=\"H3588\"* come|strong=\"H5060\"* to|strong=\"H5704\"* you|strong=\"H3588\"*, and|strong=\"H6258\"* you|strong=\"H3588\"* faint." + }, + { + "verseNum": 6, + "text": "Isn’t your|strong=\"H3808\"* piety your|strong=\"H3808\"* confidence|strong=\"H3690\"*?" + }, + { + "verseNum": 7, + "text": "“Remember|strong=\"H2142\"*, now|strong=\"H4994\"*, who|strong=\"H4310\"* ever|strong=\"H4310\"* perished, being innocent|strong=\"H5355\"*?" + }, + { + "verseNum": 8, + "text": "According to|strong=\"H7200\"* what|strong=\"H7200\"* I|strong=\"H7200\"* have|strong=\"H7200\"* seen|strong=\"H7200\"*, those who plow|strong=\"H2790\"* iniquity|strong=\"H5999\"*" + }, + { + "verseNum": 9, + "text": "By|strong=\"H3615\"* the|strong=\"H3615\"* breath|strong=\"H7307\"* of|strong=\"H7307\"* God they perish|strong=\"H3615\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H6963\"* roaring|strong=\"H7581\"* of|strong=\"H6963\"* the|strong=\"H6963\"* lion|strong=\"H3715\"*," + }, + { + "verseNum": 11, + "text": "The|strong=\"H1121\"* old|strong=\"H1121\"* lion|strong=\"H3833\"* perishes for|strong=\"H1121\"* lack|strong=\"H1097\"* of|strong=\"H1121\"* prey|strong=\"H2964\"*." + }, + { + "verseNum": 12, + "text": "“Now|strong=\"H3947\"* a|strong=\"H3068\"* thing|strong=\"H1697\"* was|strong=\"H1697\"* secretly brought|strong=\"H3947\"* to|strong=\"H1697\"* me|strong=\"H4480\"*." + }, + { + "verseNum": 13, + "text": "In|strong=\"H5921\"* thoughts|strong=\"H5587\"* from|strong=\"H5921\"* the|strong=\"H5921\"* visions|strong=\"H2384\"* of|strong=\"H5921\"* the|strong=\"H5921\"* night|strong=\"H3915\"*," + }, + { + "verseNum": 14, + "text": "fear|strong=\"H6343\"* came|strong=\"H7122\"* on me, and|strong=\"H6106\"* trembling|strong=\"H7460\"*," + }, + { + "verseNum": 15, + "text": "Then|strong=\"H7307\"* a|strong=\"H3068\"* spirit|strong=\"H7307\"* passed|strong=\"H2498\"* before|strong=\"H6440\"* my|strong=\"H5921\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 16, + "text": "It|strong=\"H3808\"* stood|strong=\"H5975\"* still|strong=\"H5975\"*, but|strong=\"H3808\"* I|strong=\"H3808\"* couldn’t discern|strong=\"H5234\"* its|strong=\"H5975\"* appearance|strong=\"H4758\"*." + }, + { + "verseNum": 17, + "text": "‘Shall|strong=\"H2891\"* mortal man|strong=\"H1397\"* be|strong=\"H1397\"* more|strong=\"H6213\"* just|strong=\"H6663\"* than|strong=\"H6663\"* God?" + }, + { + "verseNum": 18, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H3808\"* puts|strong=\"H7760\"* no|strong=\"H3808\"* trust in|strong=\"H5650\"* his|strong=\"H7760\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 19, + "text": "How much more those who dwell|strong=\"H7931\"* in|strong=\"H1004\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* clay|strong=\"H2563\"*," + }, + { + "verseNum": 20, + "text": "Between morning|strong=\"H1242\"* and|strong=\"H1242\"* evening|strong=\"H6153\"* they|strong=\"H7760\"* are destroyed|strong=\"H3807\"*." + }, + { + "verseNum": 21, + "text": "Isn’t their|strong=\"H3808\"* tent cord|strong=\"H3499\"* plucked|strong=\"H5265\"* up within them|strong=\"H4191\"*?" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "“Call|strong=\"H7121\"* now|strong=\"H4994\"*; is|strong=\"H3426\"* there|strong=\"H3426\"* any|strong=\"H3426\"* who|strong=\"H4310\"* will|strong=\"H4310\"* answer|strong=\"H6030\"* you|strong=\"H6030\"*?" + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* resentment kills|strong=\"H4191\"* the|strong=\"H3588\"* foolish man|strong=\"H4191\"*," + }, + { + "verseNum": 3, + "text": "I|strong=\"H7200\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* foolish taking|strong=\"H8327\"* root|strong=\"H8327\"*," + }, + { + "verseNum": 4, + "text": "His|strong=\"H5337\"* children|strong=\"H1121\"* are|strong=\"H1121\"* far|strong=\"H7368\"* from|strong=\"H1121\"* safety|strong=\"H3468\"*." + }, + { + "verseNum": 5, + "text": "whose harvest|strong=\"H7105\"* the|strong=\"H3947\"* hungry|strong=\"H7456\"* eat up|strong=\"H7602\"*," + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* affliction doesn’t come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3318\"* the|strong=\"H3588\"* dust|strong=\"H6083\"*," + }, + { + "verseNum": 7, + "text": "but|strong=\"H3588\"* man|strong=\"H1121\"* is|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H3205\"* trouble|strong=\"H5999\"*," + }, + { + "verseNum": 8, + "text": "“But as|strong=\"H7760\"* for|strong=\"H1875\"* me|strong=\"H7760\"*, I|strong=\"H7760\"* would seek|strong=\"H1875\"* God." + }, + { + "verseNum": 9, + "text": "who|strong=\"H6213\"* does|strong=\"H6213\"* great|strong=\"H1419\"* things|strong=\"H1419\"* that|strong=\"H6213\"* can|strong=\"H6213\"*’t be fathomed," + }, + { + "verseNum": 10, + "text": "who gives|strong=\"H5414\"* rain|strong=\"H4306\"* on|strong=\"H5921\"* the|strong=\"H6440\"* earth," + }, + { + "verseNum": 11, + "text": "so|strong=\"H7760\"* that|strong=\"H7760\"* he|strong=\"H7760\"* sets|strong=\"H7760\"* up|strong=\"H7760\"* on|strong=\"H7760\"* high|strong=\"H4791\"* those who are|strong=\"H6937\"* low|strong=\"H8217\"*," + }, + { + "verseNum": 12, + "text": "He|strong=\"H6213\"* frustrates|strong=\"H6565\"* the|strong=\"H6213\"* plans|strong=\"H4284\"* of|strong=\"H3027\"* the|strong=\"H6213\"* crafty|strong=\"H6175\"*," + }, + { + "verseNum": 13, + "text": "He takes|strong=\"H3920\"* the|strong=\"H3920\"* wise|strong=\"H2450\"* in|strong=\"H2450\"* their own craftiness|strong=\"H6193\"*;" + }, + { + "verseNum": 14, + "text": "They|strong=\"H3915\"* meet|strong=\"H6298\"* with|strong=\"H2822\"* darkness|strong=\"H2822\"* in|strong=\"H4959\"* the|strong=\"H3915\"* day|strong=\"H3119\"* time|strong=\"H3119\"*," + }, + { + "verseNum": 15, + "text": "But he|strong=\"H3027\"* saves|strong=\"H3467\"* from|strong=\"H3027\"* the|strong=\"H3027\"* sword|strong=\"H2719\"* of|strong=\"H3027\"* their|strong=\"H3027\"* mouth|strong=\"H6310\"*," + }, + { + "verseNum": 16, + "text": "So|strong=\"H1961\"* the|strong=\"H1961\"* poor|strong=\"H1800\"* has|strong=\"H1961\"* hope|strong=\"H8615\"*," + }, + { + "verseNum": 17, + "text": "“Behold|strong=\"H2009\"*, happy is|strong=\"H2009\"* the|strong=\"H2009\"* man whom God corrects|strong=\"H3198\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* he|strong=\"H1931\"* wounds|strong=\"H4272\"* and|strong=\"H3027\"* binds|strong=\"H2280\"* up|strong=\"H2280\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3808\"* will|strong=\"H3808\"* deliver|strong=\"H5337\"* you|strong=\"H3808\"* in|strong=\"H3808\"* six|strong=\"H8337\"* troubles|strong=\"H6869\"*;" + }, + { + "verseNum": 20, + "text": "In|strong=\"H4421\"* famine|strong=\"H7458\"* he|strong=\"H3027\"* will|strong=\"H2719\"* redeem|strong=\"H6299\"* you|strong=\"H3027\"* from|strong=\"H3027\"* death|strong=\"H4194\"*;" + }, + { + "verseNum": 21, + "text": "You|strong=\"H3588\"* will|strong=\"H3808\"* be|strong=\"H3808\"* hidden|strong=\"H2244\"* from|strong=\"H3956\"* the|strong=\"H3588\"* scourge|strong=\"H7752\"* of|strong=\"H3372\"* the|strong=\"H3588\"* tongue|strong=\"H3956\"*," + }, + { + "verseNum": 22, + "text": "You|strong=\"H3372\"* will|strong=\"H2416\"* laugh|strong=\"H7832\"* at|strong=\"H7832\"* destruction|strong=\"H7701\"* and|strong=\"H3372\"* famine|strong=\"H3720\"*," + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H7704\"* be|strong=\"H2416\"* allied|strong=\"H1285\"* with|strong=\"H5973\"* the|strong=\"H3588\"* stones of|strong=\"H7704\"* the|strong=\"H3588\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H3588\"* will|strong=\"H3808\"* know|strong=\"H3045\"* that|strong=\"H3588\"* your|strong=\"H3045\"* tent is|strong=\"H2398\"* in|strong=\"H3808\"* peace|strong=\"H7965\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"H3588\"* will|strong=\"H7227\"* know|strong=\"H3045\"* also|strong=\"H3588\"* that|strong=\"H3588\"* your|strong=\"H3045\"* offspring|strong=\"H2233\"*+ 5:25 or, seed* will|strong=\"H7227\"* be|strong=\"H3588\"* great|strong=\"H7227\"*," + }, + { + "verseNum": 26, + "text": "You|strong=\"H6256\"* will|strong=\"H6256\"* come|strong=\"H5927\"* to|strong=\"H5927\"* your|strong=\"H5927\"* grave|strong=\"H6913\"* in|strong=\"H6913\"* a|strong=\"H3068\"* full|strong=\"H3624\"* age|strong=\"H3624\"*," + }, + { + "verseNum": 27, + "text": "Behold|strong=\"H2009\"*, we|strong=\"H3068\"* have|strong=\"H3045\"* researched it|strong=\"H1931\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* so|strong=\"H3651\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Job answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Oh|strong=\"H3863\"* that|strong=\"H3863\"* my|strong=\"H5375\"* anguish were|strong=\"H3708\"* weighed|strong=\"H8254\"*," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* now|strong=\"H6258\"* it|strong=\"H5921\"* would|strong=\"H1697\"* be|strong=\"H1697\"* heavier|strong=\"H3513\"* than|strong=\"H5921\"* the|strong=\"H5921\"* sand|strong=\"H2344\"* of|strong=\"H1697\"* the|strong=\"H5921\"* seas|strong=\"H3220\"*," + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* arrows|strong=\"H2671\"* of|strong=\"H7307\"* the|strong=\"H3588\"* Almighty|strong=\"H7706\"* are|strong=\"H2671\"* within|strong=\"H5978\"* me|strong=\"H5978\"*." + }, + { + "verseNum": 5, + "text": "Does the|strong=\"H5921\"* wild|strong=\"H6501\"* donkey|strong=\"H6501\"* bray|strong=\"H5101\"* when|strong=\"H5921\"* he|strong=\"H5921\"* has grass|strong=\"H1877\"*?" + }, + { + "verseNum": 6, + "text": "Can|strong=\"H3426\"* that|strong=\"H3426\"* which|strong=\"H3426\"* has|strong=\"H3426\"* no|strong=\"H1097\"* flavor|strong=\"H2940\"* be|strong=\"H3426\"* eaten without|strong=\"H1097\"* salt|strong=\"H4417\"*?" + }, + { + "verseNum": 7, + "text": "My|strong=\"H5060\"* soul|strong=\"H5315\"* refuses|strong=\"H3985\"* to|strong=\"H3985\"* touch|strong=\"H5060\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 8, + "text": "“Oh|strong=\"H4310\"* that|strong=\"H5414\"* I|strong=\"H5414\"* might|strong=\"H7596\"* have|strong=\"H5414\"* my|strong=\"H5414\"* request|strong=\"H7596\"*," + }, + { + "verseNum": 9, + "text": "even that|strong=\"H3027\"* it|strong=\"H1214\"* would|strong=\"H2974\"* please|strong=\"H2974\"* God|strong=\"H3027\"* to|strong=\"H3027\"* crush|strong=\"H1792\"* me|strong=\"H1792\"*;" + }, + { + "verseNum": 10, + "text": "Let|strong=\"H3808\"* it|strong=\"H3588\"* still|strong=\"H5750\"* be|strong=\"H1961\"* my|strong=\"H1961\"* consolation|strong=\"H5165\"*," + }, + { + "verseNum": 11, + "text": "What|strong=\"H4100\"* is|strong=\"H4100\"* my|strong=\"H3588\"* strength|strong=\"H3581\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H4100\"* wait|strong=\"H3176\"*?" + }, + { + "verseNum": 12, + "text": "Is|strong=\"H1320\"* my|strong=\"H1320\"* strength|strong=\"H3581\"* the|strong=\"H3581\"* strength|strong=\"H3581\"* of|strong=\"H1320\"* stones?" + }, + { + "verseNum": 13, + "text": "Isn’t it that|strong=\"H4480\"* I|strong=\"H4480\"* have no|strong=\"H4480\"* help|strong=\"H5833\"* in|strong=\"H4480\"* me|strong=\"H4480\"*," + }, + { + "verseNum": 14, + "text": "“To|strong=\"H2617\"* him|strong=\"H5800\"* who|strong=\"H7706\"* is|strong=\"H2617\"* ready to|strong=\"H2617\"* faint, kindness|strong=\"H2617\"* should be|strong=\"H2617\"* shown|strong=\"H5800\"* from his|strong=\"H5800\"* friend|strong=\"H7453\"*;" + }, + { + "verseNum": 15, + "text": "My|strong=\"H5674\"* brothers have dealt deceitfully as|strong=\"H3644\"* a|strong=\"H3068\"* brook|strong=\"H5158\"*," + }, + { + "verseNum": 16, + "text": "which are|strong=\"H6937\"* black|strong=\"H6937\"* by|strong=\"H5921\"* reason|strong=\"H5921\"* of|strong=\"H4480\"* the|strong=\"H5921\"* ice|strong=\"H7140\"*," + }, + { + "verseNum": 17, + "text": "In|strong=\"H4725\"* the|strong=\"H6256\"* dry season|strong=\"H6256\"*, they|strong=\"H6256\"* vanish|strong=\"H1846\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5927\"* caravans that|strong=\"H5927\"* travel beside them|strong=\"H5927\"* turn away|strong=\"H5927\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5027\"* caravans of|strong=\"H1979\"* Tema|strong=\"H8485\"* looked|strong=\"H5027\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H3588\"* were distressed because|strong=\"H3588\"* they|strong=\"H3588\"* were confident." + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* now|strong=\"H6258\"* you|strong=\"H3588\"* are|strong=\"H1961\"* nothing|strong=\"H3808\"*." + }, + { + "verseNum": 22, + "text": "Did I|strong=\"H3588\"* ever say, ‘Give|strong=\"H3051\"* to|strong=\"H3581\"* me|strong=\"H1157\"*’?" + }, + { + "verseNum": 23, + "text": "or|strong=\"H3027\"*, ‘Deliver|strong=\"H4422\"* me|strong=\"H3027\"* from|strong=\"H3027\"* the|strong=\"H3027\"* adversary|strong=\"H6862\"*’s hand|strong=\"H3027\"*’?" + }, + { + "verseNum": 24, + "text": "“Teach|strong=\"H3384\"* me|strong=\"H4100\"*, and|strong=\"H2790\"* I|strong=\"H4100\"* will|strong=\"H4100\"* hold my|strong=\"H4100\"* peace|strong=\"H2790\"*." + }, + { + "verseNum": 25, + "text": "How|strong=\"H4100\"* forcible|strong=\"H4834\"* are|strong=\"H4100\"* words of|strong=\"H4480\"* uprightness|strong=\"H3476\"*!" + }, + { + "verseNum": 26, + "text": "Do you|strong=\"H3198\"* intend|strong=\"H2803\"* to|strong=\"H2803\"* reprove|strong=\"H3198\"* words|strong=\"H4405\"*," + }, + { + "verseNum": 27, + "text": "Yes, you|strong=\"H5921\"* would even|strong=\"H5921\"* cast|strong=\"H5307\"* lots for|strong=\"H5921\"* the|strong=\"H5921\"* fatherless|strong=\"H3490\"*," + }, + { + "verseNum": 28, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* be|strong=\"H6440\"* pleased|strong=\"H2974\"* to|strong=\"H5921\"* look|strong=\"H6437\"* at|strong=\"H5921\"* me|strong=\"H6440\"*," + }, + { + "verseNum": 29, + "text": "Please|strong=\"H4994\"* return|strong=\"H7725\"*." + }, + { + "verseNum": 30, + "text": "Is|strong=\"H3426\"* there|strong=\"H3426\"* injustice|strong=\"H5766\"* on|strong=\"H3808\"* my|strong=\"H3808\"* tongue|strong=\"H3956\"*?" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "“Isn’t a|strong=\"H3068\"* man|strong=\"H7916\"* forced|strong=\"H6635\"* to|strong=\"H5921\"* labor|strong=\"H6635\"* on|strong=\"H5921\"* earth?" + }, + { + "verseNum": 2, + "text": "As|strong=\"H5650\"* a|strong=\"H3068\"* servant|strong=\"H5650\"* who|strong=\"H5650\"* earnestly|strong=\"H5650\"* desires the|strong=\"H5650\"* shadow|strong=\"H6738\"*," + }, + { + "verseNum": 3, + "text": "so|strong=\"H3651\"* I|strong=\"H3651\"* am made to|strong=\"H3915\"* possess|strong=\"H5157\"* months|strong=\"H3391\"* of|strong=\"H5999\"* misery|strong=\"H5999\"*," + }, + { + "verseNum": 4, + "text": "When|strong=\"H4970\"* I|strong=\"H5704\"* lie|strong=\"H7901\"* down|strong=\"H7901\"*, I|strong=\"H5704\"* say," + }, + { + "verseNum": 5, + "text": "My|strong=\"H3988\"* flesh|strong=\"H1320\"* is|strong=\"H1320\"* clothed|strong=\"H3847\"* with|strong=\"H3847\"* worms|strong=\"H7415\"* and|strong=\"H6083\"* clods|strong=\"H1487\"* of|strong=\"H1320\"* dust|strong=\"H6083\"*." + }, + { + "verseNum": 6, + "text": "My|strong=\"H3615\"* days|strong=\"H3117\"* are|strong=\"H3117\"* swifter|strong=\"H7043\"* than|strong=\"H4480\"* a|strong=\"H3068\"* weaver’s shuttle," + }, + { + "verseNum": 7, + "text": "Oh remember|strong=\"H2142\"* that|strong=\"H3588\"* my|strong=\"H7200\"* life|strong=\"H2416\"* is|strong=\"H2896\"* a|strong=\"H3068\"* breath|strong=\"H7307\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3808\"* eye|strong=\"H5869\"* of|strong=\"H5869\"* him|strong=\"H5869\"* who|strong=\"H7210\"* sees|strong=\"H7210\"* me|strong=\"H5869\"* will|strong=\"H5869\"* see|strong=\"H5869\"* me|strong=\"H5869\"* no|strong=\"H3808\"* more|strong=\"H3808\"*." + }, + { + "verseNum": 9, + "text": "As|strong=\"H3651\"* the|strong=\"H5927\"* cloud|strong=\"H6051\"* is|strong=\"H3651\"* consumed|strong=\"H3615\"* and|strong=\"H3212\"* vanishes|strong=\"H3615\"* away|strong=\"H3212\"*," + }, + { + "verseNum": 10, + "text": "He|strong=\"H1004\"* will|strong=\"H1004\"* return|strong=\"H7725\"* no|strong=\"H3808\"* more|strong=\"H5750\"* to|strong=\"H7725\"* his|strong=\"H7725\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 11, + "text": "“Therefore|strong=\"H1571\"* I|strong=\"H5315\"* will|strong=\"H1571\"* not|strong=\"H3808\"* keep|strong=\"H2820\"* silent|strong=\"H6310\"*." + }, + { + "verseNum": 12, + "text": "Am I|strong=\"H3588\"* a|strong=\"H3068\"* sea|strong=\"H3220\"*, or|strong=\"H3588\"* a|strong=\"H3068\"* sea|strong=\"H3220\"* monster|strong=\"H8577\"*," + }, + { + "verseNum": 13, + "text": "When|strong=\"H3588\"* I|strong=\"H3588\"* say, ‘My|strong=\"H5375\"* bed|strong=\"H4904\"* will|strong=\"H6210\"* comfort|strong=\"H5162\"* me|strong=\"H3588\"*." + }, + { + "verseNum": 14, + "text": "then you|strong=\"H2865\"* scare me|strong=\"H2472\"* with dreams|strong=\"H2472\"*" + }, + { + "verseNum": 15, + "text": "so that|strong=\"H5315\"* my|strong=\"H6106\"* soul|strong=\"H5315\"* chooses strangling|strong=\"H4267\"*," + }, + { + "verseNum": 16, + "text": "I|strong=\"H3588\"* loathe|strong=\"H3988\"* my|strong=\"H3588\"* life|strong=\"H3117\"*." + }, + { + "verseNum": 17, + "text": "What|strong=\"H4100\"* is|strong=\"H3820\"* man|strong=\"H3820\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H4100\"* magnify|strong=\"H1431\"* him|strong=\"H7896\"*," + }, + { + "verseNum": 18, + "text": "that|strong=\"H6485\"* you|strong=\"H6485\"* should visit|strong=\"H6485\"* him|strong=\"H6485\"* every|strong=\"H1242\"* morning|strong=\"H1242\"*," + }, + { + "verseNum": 19, + "text": "How|strong=\"H4100\"* long|strong=\"H5704\"* will|strong=\"H3808\"* you|strong=\"H5704\"* not|strong=\"H3808\"* look|strong=\"H8159\"* away|strong=\"H4480\"* from|strong=\"H4480\"* me|strong=\"H4480\"*," + }, + { + "verseNum": 20, + "text": "If|strong=\"H1961\"* I|strong=\"H5921\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"*, what|strong=\"H4100\"* do|strong=\"H6466\"* I|strong=\"H5921\"* do|strong=\"H6466\"* to|strong=\"H1961\"* you|strong=\"H5921\"*, you|strong=\"H5921\"* watcher|strong=\"H5341\"* of|strong=\"H5921\"* men?" + }, + { + "verseNum": 21, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3588\"* not|strong=\"H3808\"* pardon|strong=\"H5375\"* my|strong=\"H5375\"* disobedience, and|strong=\"H5674\"* take|strong=\"H5375\"* away|strong=\"H5375\"* my|strong=\"H5375\"* iniquity|strong=\"H5771\"*?" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Bildad|strong=\"H1085\"* the|strong=\"H6030\"* Shuhite|strong=\"H7747\"* answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“How|strong=\"H5704\"* long|strong=\"H5704\"* will|strong=\"H7307\"* you|strong=\"H5704\"* speak|strong=\"H4448\"* these|strong=\"H4448\"* things?" + }, + { + "verseNum": 3, + "text": "Does God pervert|strong=\"H5791\"* justice|strong=\"H4941\"*?" + }, + { + "verseNum": 4, + "text": "If|strong=\"H2398\"* your|strong=\"H7971\"* children|strong=\"H1121\"* have|strong=\"H1121\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* him|strong=\"H7971\"*," + }, + { + "verseNum": 5, + "text": "If|strong=\"H2603\"* you|strong=\"H7836\"* want to|strong=\"H2603\"* seek|strong=\"H7836\"* God diligently|strong=\"H7836\"*," + }, + { + "verseNum": 6, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H5921\"* pure|strong=\"H2134\"* and|strong=\"H6664\"* upright|strong=\"H3477\"*," + }, + { + "verseNum": 7, + "text": "Though your|strong=\"H1961\"* beginning|strong=\"H7225\"* was|strong=\"H1961\"* small|strong=\"H4705\"*," + }, + { + "verseNum": 8, + "text": "“Please|strong=\"H4994\"* inquire|strong=\"H7592\"* of|strong=\"H7592\"* past|strong=\"H7223\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 9, + "text": "(For|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H3117\"* but|strong=\"H3588\"* of|strong=\"H3117\"* yesterday|strong=\"H8543\"*, and|strong=\"H3117\"* know|strong=\"H3045\"* nothing|strong=\"H3808\"*," + }, + { + "verseNum": 10, + "text": "Shall|strong=\"H3820\"* they|strong=\"H1992\"* not|strong=\"H3808\"* teach|strong=\"H3384\"* you|strong=\"H3808\"*, tell you|strong=\"H3808\"*," + }, + { + "verseNum": 11, + "text": "“Can|strong=\"H7685\"* the|strong=\"H3808\"* papyrus|strong=\"H1573\"* grow|strong=\"H7685\"* up|strong=\"H1342\"* without|strong=\"H3808\"* mire|strong=\"H1207\"*?" + }, + { + "verseNum": 12, + "text": "While|strong=\"H5750\"* it|strong=\"H6440\"* is|strong=\"H3605\"* yet|strong=\"H5750\"* in|strong=\"H6440\"* its|strong=\"H3605\"* greenness, not|strong=\"H3808\"* cut|strong=\"H6998\"* down|strong=\"H6440\"*," + }, + { + "verseNum": 13, + "text": "So|strong=\"H3651\"* are the|strong=\"H3605\"* paths of|strong=\"H3605\"* all|strong=\"H3605\"* who|strong=\"H3605\"* forget|strong=\"H7911\"* God." + }, + { + "verseNum": 14, + "text": "whose confidence|strong=\"H4009\"* will|strong=\"H1004\"* break apart," + }, + { + "verseNum": 15, + "text": "He|strong=\"H1004\"* will|strong=\"H1004\"* lean|strong=\"H8172\"* on|strong=\"H5921\"* his|strong=\"H5921\"* house|strong=\"H1004\"*, but|strong=\"H3808\"* it|strong=\"H5921\"* will|strong=\"H1004\"* not|strong=\"H3808\"* stand|strong=\"H5975\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H1931\"* is|strong=\"H1931\"* green|strong=\"H7373\"* before|strong=\"H6440\"* the|strong=\"H6440\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 17, + "text": "His|strong=\"H5921\"* roots|strong=\"H8328\"* are|strong=\"H1004\"* wrapped around|strong=\"H5921\"* the|strong=\"H5921\"* rock|strong=\"H1530\"* pile|strong=\"H1530\"*." + }, + { + "verseNum": 18, + "text": "If|strong=\"H7200\"* he|strong=\"H3808\"* is|strong=\"H4725\"* destroyed|strong=\"H1104\"* from|strong=\"H7200\"* his|strong=\"H7200\"* place|strong=\"H4725\"*," + }, + { + "verseNum": 19, + "text": "Behold|strong=\"H2005\"*, this|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H1870\"* joy|strong=\"H4885\"* of|strong=\"H1870\"* his|strong=\"H1931\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 20, + "text": "“Behold|strong=\"H2005\"*, God|strong=\"H3808\"* will|strong=\"H3027\"* not|strong=\"H3808\"* cast|strong=\"H3988\"* away|strong=\"H3988\"* a|strong=\"H3068\"* blameless|strong=\"H8535\"* man|strong=\"H8535\"*," + }, + { + "verseNum": 21, + "text": "He|strong=\"H5704\"* will|strong=\"H5704\"* still|strong=\"H5704\"* fill|strong=\"H4390\"* your|strong=\"H5704\"* mouth|strong=\"H6310\"* with|strong=\"H4390\"* laughter|strong=\"H7814\"*," + }, + { + "verseNum": 22, + "text": "Those|strong=\"H8130\"* who|strong=\"H7563\"* hate|strong=\"H8130\"* you|strong=\"H3847\"* will|strong=\"H7563\"* be|strong=\"H7563\"* clothed|strong=\"H3847\"* with|strong=\"H3847\"* shame|strong=\"H1322\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Job answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Truly|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H4100\"* so|strong=\"H3651\"*," + }, + { + "verseNum": 3, + "text": "If he|strong=\"H4480\"* is|strong=\"H3808\"* pleased|strong=\"H2654\"* to|strong=\"H2654\"* contend|strong=\"H7378\"* with|strong=\"H5973\"* him|strong=\"H5973\"*," + }, + { + "verseNum": 4, + "text": "God|strong=\"H4310\"* is|strong=\"H4310\"* wise|strong=\"H2450\"* in|strong=\"H2450\"* heart|strong=\"H3824\"*, and|strong=\"H3824\"* mighty|strong=\"H3581\"* in|strong=\"H2450\"* strength|strong=\"H3581\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3808\"* removes|strong=\"H6275\"* the|strong=\"H3045\"* mountains|strong=\"H2022\"*, and|strong=\"H2022\"* they|strong=\"H3808\"* don’t know|strong=\"H3045\"* it|strong=\"H3045\"*," + }, + { + "verseNum": 6, + "text": "He shakes|strong=\"H7264\"* the|strong=\"H4725\"* earth out|strong=\"H4725\"* of|strong=\"H5982\"* its place|strong=\"H4725\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3808\"* commands the|strong=\"H3808\"* sun|strong=\"H2775\"* and|strong=\"H3808\"* it|strong=\"H3808\"* doesn’t rise|strong=\"H2224\"*," + }, + { + "verseNum": 8, + "text": "He|strong=\"H5921\"* alone stretches|strong=\"H5186\"* out|strong=\"H5186\"* the|strong=\"H5921\"* heavens|strong=\"H8064\"*," + }, + { + "verseNum": 9, + "text": "He|strong=\"H6213\"* makes|strong=\"H6213\"* the|strong=\"H6213\"* Bear|strong=\"H6213\"*, Orion|strong=\"H3685\"*, and|strong=\"H6213\"* the|strong=\"H6213\"* Pleiades|strong=\"H3598\"*," + }, + { + "verseNum": 10, + "text": "He|strong=\"H5704\"* does|strong=\"H6213\"* great|strong=\"H1419\"* things|strong=\"H1419\"* past finding out|strong=\"H6213\"*;" + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H3808\"* goes|strong=\"H5674\"* by|strong=\"H5921\"* me|strong=\"H7200\"*, and|strong=\"H7200\"* I|strong=\"H2005\"* don’t see|strong=\"H7200\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H6213\"* snatches away|strong=\"H7725\"*." + }, + { + "verseNum": 13, + "text": "“God|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* withdraw|strong=\"H7725\"* his|strong=\"H7725\"* anger." + }, + { + "verseNum": 14, + "text": "How|strong=\"H3588\"* much|strong=\"H1697\"* less|strong=\"H3588\"* will|strong=\"H1697\"* I|strong=\"H3588\"* answer|strong=\"H6030\"* him|strong=\"H5973\"*," + }, + { + "verseNum": 15, + "text": "Though I|strong=\"H3808\"* were|strong=\"H8199\"* righteous|strong=\"H6663\"*, yet|strong=\"H3808\"* I|strong=\"H3808\"* wouldn’t answer|strong=\"H6030\"* him|strong=\"H6030\"*." + }, + { + "verseNum": 16, + "text": "If|strong=\"H3588\"* I|strong=\"H3588\"* had|strong=\"H3588\"* called|strong=\"H7121\"*, and|strong=\"H6030\"* he|strong=\"H3588\"* had|strong=\"H3588\"* answered|strong=\"H6030\"* me|strong=\"H6963\"*," + }, + { + "verseNum": 17, + "text": "For|strong=\"H6482\"* he|strong=\"H7235\"* breaks me|strong=\"H2600\"* with|strong=\"H7235\"* a|strong=\"H3068\"* storm|strong=\"H8183\"*," + }, + { + "verseNum": 18, + "text": "He|strong=\"H3588\"* will|strong=\"H7307\"* not|strong=\"H3808\"* allow|strong=\"H5414\"* me|strong=\"H5414\"* to|strong=\"H7725\"* catch my|strong=\"H5414\"* breath|strong=\"H7307\"*," + }, + { + "verseNum": 19, + "text": "If|strong=\"H2009\"* it|strong=\"H4941\"* is|strong=\"H4310\"* a|strong=\"H3068\"* matter of|strong=\"H4941\"* strength|strong=\"H3581\"*, behold|strong=\"H2009\"*, he|strong=\"H4310\"* is|strong=\"H4310\"* mighty|strong=\"H3581\"*!" + }, + { + "verseNum": 20, + "text": "Though I am righteous|strong=\"H6663\"*, my|strong=\"H6310\"* own mouth|strong=\"H6310\"* will|strong=\"H6310\"* condemn|strong=\"H7561\"* me|strong=\"H7561\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"H3045\"* am blameless|strong=\"H8535\"*." + }, + { + "verseNum": 22, + "text": "“It|strong=\"H1931\"* is|strong=\"H1931\"* all|strong=\"H5921\"* the|strong=\"H5921\"* same|strong=\"H1931\"*." + }, + { + "verseNum": 23, + "text": "If the|strong=\"H4191\"* scourge|strong=\"H7752\"* kills|strong=\"H4191\"* suddenly|strong=\"H6597\"*," + }, + { + "verseNum": 24, + "text": "The|strong=\"H6440\"* earth is|strong=\"H1931\"* given|strong=\"H5414\"* into|strong=\"H8199\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H6440\"* wicked|strong=\"H7563\"*." + }, + { + "verseNum": 25, + "text": "“Now|strong=\"H3117\"* my|strong=\"H7200\"* days|strong=\"H3117\"* are|strong=\"H3117\"* swifter|strong=\"H7043\"* than|strong=\"H4480\"* a|strong=\"H3068\"* runner|strong=\"H7323\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H5921\"* have|strong=\"H5921\"* passed|strong=\"H2498\"* away|strong=\"H5973\"* as|strong=\"H5973\"* the|strong=\"H5921\"* swift ships," + }, + { + "verseNum": 27, + "text": "If I|strong=\"H6440\"* say, ‘I|strong=\"H6440\"* will|strong=\"H6440\"* forget|strong=\"H7911\"* my|strong=\"H5800\"* complaint|strong=\"H7879\"*," + }, + { + "verseNum": 28, + "text": "I|strong=\"H3588\"* am afraid|strong=\"H3025\"* of|strong=\"H3605\"* all|strong=\"H3605\"* my|strong=\"H3605\"* sorrows|strong=\"H6094\"*." + }, + { + "verseNum": 29, + "text": "I|strong=\"H2088\"* will|strong=\"H4100\"* be condemned|strong=\"H7561\"*." + }, + { + "verseNum": 30, + "text": "If I wash|strong=\"H7364\"* myself|strong=\"H7364\"* with|strong=\"H7364\"* snow|strong=\"H7950\"*," + }, + { + "verseNum": 31, + "text": "yet you|strong=\"H8581\"* will|strong=\"H7845\"* plunge|strong=\"H2881\"* me|strong=\"H8581\"* in|strong=\"H8581\"* the|strong=\"H2881\"* ditch|strong=\"H7845\"*." + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H4941\"* not|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H6030\"*, as|strong=\"H3644\"* I|strong=\"H3588\"* am, that|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* answer|strong=\"H6030\"* him|strong=\"H6030\"*," + }, + { + "verseNum": 33, + "text": "There|strong=\"H3426\"* is|strong=\"H3426\"* no|strong=\"H3426\"* umpire|strong=\"H3198\"* between|strong=\"H5921\"* us|strong=\"H5921\"*," + }, + { + "verseNum": 34, + "text": "Let him|strong=\"H5921\"* take|strong=\"H5493\"* his|strong=\"H5921\"* rod|strong=\"H7626\"* away|strong=\"H5493\"* from|strong=\"H5493\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 35, + "text": "then|strong=\"H1696\"* I|strong=\"H3588\"* would|strong=\"H5978\"* speak|strong=\"H1696\"*, and|strong=\"H3372\"* not|strong=\"H3808\"* fear|strong=\"H3372\"* him|strong=\"H3588\"*," + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "“My|strong=\"H5921\"* soul|strong=\"H5315\"* is|strong=\"H5315\"* weary|strong=\"H5354\"* of|strong=\"H5921\"* my|strong=\"H5921\"* life|strong=\"H5315\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H5921\"* will|strong=\"H4100\"* tell|strong=\"H3045\"* God, ‘Do|strong=\"H4100\"* not|strong=\"H3045\"* condemn|strong=\"H7561\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "Is|strong=\"H2896\"* it|strong=\"H5921\"* good|strong=\"H2896\"* to|strong=\"H5921\"* you|strong=\"H3588\"* that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H3588\"* oppress|strong=\"H6231\"*," + }, + { + "verseNum": 4, + "text": "Do|strong=\"H5869\"* you|strong=\"H7200\"* have|strong=\"H5869\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* flesh|strong=\"H1320\"*?" + }, + { + "verseNum": 5, + "text": "Are|strong=\"H3117\"* your|strong=\"H3117\"* days|strong=\"H3117\"* as|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* mortals," + }, + { + "verseNum": 6, + "text": "that|strong=\"H3588\"* you|strong=\"H3588\"* inquire|strong=\"H1875\"* after|strong=\"H3588\"* my|strong=\"H1245\"* iniquity|strong=\"H5771\"*," + }, + { + "verseNum": 7, + "text": "Although|strong=\"H3588\"* you|strong=\"H3588\"* know|strong=\"H1847\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am not|strong=\"H3808\"* wicked|strong=\"H7561\"*," + }, + { + "verseNum": 8, + "text": "“‘Your|strong=\"H6213\"* hands|strong=\"H3027\"* have|strong=\"H3027\"* framed me|strong=\"H6213\"* and|strong=\"H3027\"* fashioned|strong=\"H6213\"* me|strong=\"H6213\"* altogether|strong=\"H3162\"*," + }, + { + "verseNum": 9, + "text": "Remember|strong=\"H2142\"*, I|strong=\"H3588\"* beg|strong=\"H4994\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* fashioned|strong=\"H6213\"* me|strong=\"H4994\"* as|strong=\"H6213\"* clay|strong=\"H2563\"*." + }, + { + "verseNum": 10, + "text": "Haven’t you|strong=\"H3808\"* poured|strong=\"H5413\"* me|strong=\"H3808\"* out|strong=\"H5413\"* like|strong=\"H3808\"* milk|strong=\"H2461\"*," + }, + { + "verseNum": 11, + "text": "You|strong=\"H3847\"* have clothed|strong=\"H3847\"* me|strong=\"H5526\"* with|strong=\"H3847\"* skin|strong=\"H5785\"* and|strong=\"H1320\"* flesh|strong=\"H1320\"*," + }, + { + "verseNum": 12, + "text": "You|strong=\"H6213\"* have|strong=\"H8104\"* granted|strong=\"H6213\"* me|strong=\"H5978\"* life|strong=\"H2416\"* and|strong=\"H2617\"* loving kindness|strong=\"H2617\"*." + }, + { + "verseNum": 13, + "text": "Yet|strong=\"H3588\"* you|strong=\"H3588\"* hid|strong=\"H6845\"* these|strong=\"H2063\"* things|strong=\"H5973\"* in|strong=\"H3045\"* your|strong=\"H3045\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 14, + "text": "if|strong=\"H2398\"* I|strong=\"H3808\"* sin|strong=\"H2398\"*, then|strong=\"H3808\"* you|strong=\"H3808\"* mark|strong=\"H8104\"* me|strong=\"H8104\"*." + }, + { + "verseNum": 15, + "text": "If I|strong=\"H3808\"* am wicked|strong=\"H7561\"*, woe to|strong=\"H3808\"* me|strong=\"H3808\"*." + }, + { + "verseNum": 16, + "text": "If|strong=\"H1342\"* my|strong=\"H7725\"* head is|strong=\"H6381\"* held high|strong=\"H6381\"*, you|strong=\"H7725\"* hunt|strong=\"H6679\"* me|strong=\"H7725\"* like|strong=\"H7725\"* a|strong=\"H3068\"* lion|strong=\"H7826\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H5973\"* renew|strong=\"H2318\"* your|strong=\"H7235\"* witnesses|strong=\"H5707\"* against|strong=\"H5973\"* me|strong=\"H5978\"*," + }, + { + "verseNum": 18, + "text": "“‘Why|strong=\"H4100\"*, then|strong=\"H3318\"*, have|strong=\"H5869\"* you|strong=\"H3808\"* brought|strong=\"H3318\"* me|strong=\"H7200\"* out|strong=\"H3318\"* of|strong=\"H5869\"* the|strong=\"H7200\"* womb|strong=\"H7358\"*?" + }, + { + "verseNum": 19, + "text": "I|strong=\"H3808\"* should have|strong=\"H1961\"* been|strong=\"H1961\"* as|strong=\"H1961\"* though I|strong=\"H3808\"* had|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"*." + }, + { + "verseNum": 20, + "text": "Aren’t my|strong=\"H4480\"* days|strong=\"H3117\"* few|strong=\"H4592\"*?" + }, + { + "verseNum": 21, + "text": "before|strong=\"H2962\"* I|strong=\"H2962\"* go|strong=\"H3212\"* where|strong=\"H3808\"* I|strong=\"H2962\"* will|strong=\"H3808\"* not|strong=\"H3808\"* return|strong=\"H7725\"* from|strong=\"H7725\"*," + }, + { + "verseNum": 22, + "text": "the|strong=\"H3808\"* land dark|strong=\"H6757\"* as|strong=\"H3644\"* midnight," + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Zophar|strong=\"H6691\"*, the|strong=\"H6030\"* Naamathite|strong=\"H5284\"*, answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Shouldn’t the|strong=\"H1697\"* multitude|strong=\"H7230\"* of|strong=\"H1697\"* words|strong=\"H1697\"* be|strong=\"H3808\"* answered|strong=\"H6030\"*?" + }, + { + "verseNum": 3, + "text": "Should your|strong=\"H4962\"* boastings make|strong=\"H2790\"* men|strong=\"H4962\"* hold their|strong=\"H4962\"* peace|strong=\"H2790\"*?" + }, + { + "verseNum": 4, + "text": "For|strong=\"H5869\"* you|strong=\"H5869\"* say, ‘My|strong=\"H1961\"* doctrine|strong=\"H3948\"* is|strong=\"H1961\"* pure|strong=\"H2134\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H1696\"* oh|strong=\"H4310\"* that|strong=\"H5414\"* God|strong=\"H5414\"* would|strong=\"H4310\"* speak|strong=\"H1696\"*," + }, + { + "verseNum": 6, + "text": "that|strong=\"H3588\"* he|strong=\"H3588\"* would show|strong=\"H3045\"* you|strong=\"H3588\"* the|strong=\"H3588\"* secrets|strong=\"H8587\"* of|strong=\"H5771\"* wisdom|strong=\"H2451\"*!" + }, + { + "verseNum": 7, + "text": "“Can you|strong=\"H5704\"* fathom the|strong=\"H5704\"* mystery of|strong=\"H2714\"* God?" + }, + { + "verseNum": 8, + "text": "They|strong=\"H4100\"* are|strong=\"H4100\"* high|strong=\"H1363\"* as|strong=\"H1363\"* heaven|strong=\"H8064\"*. What|strong=\"H4100\"* can|strong=\"H4100\"* you|strong=\"H3045\"* do|strong=\"H6466\"*?" + }, + { + "verseNum": 9, + "text": "Its|strong=\"H3220\"* measure|strong=\"H4055\"* is|strong=\"H4480\"* longer than|strong=\"H4480\"* the|strong=\"H4480\"* earth," + }, + { + "verseNum": 10, + "text": "If|strong=\"H2498\"* he|strong=\"H7725\"* passes|strong=\"H2498\"* by|strong=\"H7725\"*, or|strong=\"H4310\"* confines," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* he|strong=\"H1931\"* knows|strong=\"H3045\"* false|strong=\"H7723\"* men|strong=\"H4962\"*." + }, + { + "verseNum": 12, + "text": "An|strong=\"H3205\"* empty-headed man becomes wise|strong=\"H3823\"*" + }, + { + "verseNum": 13, + "text": "“If you|strong=\"H3820\"* set|strong=\"H3559\"* your|strong=\"H3559\"* heart|strong=\"H3820\"* aright|strong=\"H3559\"*," + }, + { + "verseNum": 14, + "text": "If iniquity|strong=\"H5766\"* is|strong=\"H3027\"* in|strong=\"H7931\"* your|strong=\"H3027\"* hand|strong=\"H3027\"*, put|strong=\"H7368\"* it|strong=\"H7368\"* far|strong=\"H7368\"* away|strong=\"H7368\"*." + }, + { + "verseNum": 15, + "text": "Surely|strong=\"H3588\"* then|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H1961\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5375\"* face|strong=\"H6440\"* without|strong=\"H3808\"* spot|strong=\"H3971\"*." + }, + { + "verseNum": 16, + "text": "for|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H4325\"* forget|strong=\"H7911\"* your|strong=\"H3588\"* misery|strong=\"H5999\"*." + }, + { + "verseNum": 17, + "text": "Life|strong=\"H2465\"* will|strong=\"H1961\"* be|strong=\"H1961\"* clearer|strong=\"H6965\"* than the|strong=\"H6965\"* noonday|strong=\"H6672\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H3588\"* will|strong=\"H3426\"* be|strong=\"H3426\"* secure, because|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3426\"* hope|strong=\"H8615\"*." + }, + { + "verseNum": 19, + "text": "Also you|strong=\"H6440\"* will|strong=\"H7227\"* lie|strong=\"H7257\"* down|strong=\"H7257\"*, and|strong=\"H6440\"* no|strong=\"H6440\"* one|strong=\"H7227\"* will|strong=\"H7227\"* make|strong=\"H2729\"* you|strong=\"H6440\"* afraid|strong=\"H2729\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H7563\"* the|strong=\"H4480\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H4480\"* wicked|strong=\"H7563\"* will|strong=\"H5869\"* fail|strong=\"H3615\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Job answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“No doubt, but|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* the|strong=\"H3588\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 3, + "text": "But|strong=\"H3808\"* I|strong=\"H3808\"* have|strong=\"H1571\"* understanding|strong=\"H3824\"* as|strong=\"H3644\"* well|strong=\"H1571\"* as|strong=\"H3644\"* you|strong=\"H3808\"*;" + }, + { + "verseNum": 4, + "text": "I|strong=\"H7121\"* am|strong=\"H1961\"* like|strong=\"H1961\"* one|strong=\"H6662\"* who|strong=\"H6662\"* is|strong=\"H6662\"* a|strong=\"H3068\"* joke|strong=\"H7814\"* to|strong=\"H1961\"* his|strong=\"H7121\"* neighbor|strong=\"H7453\"*," + }, + { + "verseNum": 5, + "text": "In|strong=\"H3559\"* the|strong=\"H3559\"* thought|strong=\"H6248\"* of|strong=\"H7272\"* him|strong=\"H3559\"* who|strong=\"H7600\"* is at ease|strong=\"H7600\"* there is contempt for|strong=\"H3559\"* misfortune." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3027\"* tents of|strong=\"H3027\"* robbers|strong=\"H7703\"* prosper|strong=\"H7951\"*." + }, + { + "verseNum": 7, + "text": "“But ask|strong=\"H7592\"* the|strong=\"H5046\"* animals now|strong=\"H4994\"*, and|strong=\"H8064\"* they will|strong=\"H8064\"* teach|strong=\"H3384\"* you|strong=\"H5046\"*;" + }, + { + "verseNum": 8, + "text": "Or|strong=\"H5608\"* speak|strong=\"H7878\"* to|strong=\"H3220\"* the|strong=\"H5608\"* earth, and|strong=\"H3220\"* it will|strong=\"H3220\"* teach|strong=\"H3384\"* you|strong=\"H3384\"*." + }, + { + "verseNum": 9, + "text": "Who|strong=\"H4310\"* doesn’t know|strong=\"H3045\"* that|strong=\"H3588\"* in|strong=\"H3068\"* all|strong=\"H3605\"* these|strong=\"H2063\"*," + }, + { + "verseNum": 10, + "text": "in|strong=\"H5315\"* whose|strong=\"H3605\"* hand|strong=\"H3027\"* is|strong=\"H5315\"* the|strong=\"H3605\"* life|strong=\"H5315\"* of|strong=\"H3027\"* every|strong=\"H3605\"* living|strong=\"H2416\"* thing|strong=\"H2416\"*," + }, + { + "verseNum": 11, + "text": "Doesn’t the|strong=\"H3808\"* ear try words|strong=\"H4405\"*," + }, + { + "verseNum": 12, + "text": "With|strong=\"H3117\"* aged|strong=\"H3453\"* men|strong=\"H3453\"* is|strong=\"H3117\"* wisdom|strong=\"H2451\"*," + }, + { + "verseNum": 13, + "text": "“With|strong=\"H5973\"* God|strong=\"H2451\"* is|strong=\"H2451\"* wisdom|strong=\"H2451\"* and|strong=\"H2451\"* might|strong=\"H1369\"*." + }, + { + "verseNum": 14, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H3808\"* breaks down|strong=\"H2040\"*, and|strong=\"H1129\"* it|strong=\"H5921\"* can|strong=\"H3808\"*’t be|strong=\"H3808\"* built|strong=\"H1129\"* again|strong=\"H1129\"*." + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H7971\"* withholds the|strong=\"H7971\"* waters|strong=\"H4325\"*, and|strong=\"H7971\"* they dry|strong=\"H3001\"* up|strong=\"H3001\"*." + }, + { + "verseNum": 16, + "text": "With|strong=\"H5973\"* him|strong=\"H5973\"* is|strong=\"H8454\"* strength|strong=\"H5797\"* and|strong=\"H5797\"* wisdom|strong=\"H8454\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H8199\"* leads counselors|strong=\"H3289\"* away|strong=\"H3212\"* stripped|strong=\"H7758\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H4428\"* loosens|strong=\"H6605\"* the|strong=\"H6605\"* bond|strong=\"H4148\"* of|strong=\"H4428\"* kings|strong=\"H4428\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3212\"* leads priests|strong=\"H3548\"* away|strong=\"H3212\"* stripped|strong=\"H7758\"*," + }, + { + "verseNum": 20, + "text": "He|strong=\"H2205\"* removes the|strong=\"H3947\"* speech|strong=\"H8193\"* of|strong=\"H2205\"* those who|strong=\"H5493\"* are|strong=\"H8193\"* trusted," + }, + { + "verseNum": 21, + "text": "He|strong=\"H5921\"* pours|strong=\"H8210\"* contempt on|strong=\"H5921\"* princes|strong=\"H5081\"*," + }, + { + "verseNum": 22, + "text": "He|strong=\"H4480\"* uncovers|strong=\"H1540\"* deep|strong=\"H6013\"* things|strong=\"H1540\"* out|strong=\"H3318\"* of|strong=\"H4480\"* darkness|strong=\"H2822\"*," + }, + { + "verseNum": 23, + "text": "He increases the|strong=\"H5148\"* nations|strong=\"H1471\"*, and|strong=\"H1471\"* he destroys them|strong=\"H5148\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H3808\"* takes|strong=\"H5493\"* away|strong=\"H5493\"* understanding|strong=\"H3820\"* from|strong=\"H5493\"* the|strong=\"H5493\"* chiefs|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5493\"* people|strong=\"H5971\"* of|strong=\"H7218\"* the|strong=\"H5493\"* earth," + }, + { + "verseNum": 25, + "text": "They|strong=\"H3808\"* grope|strong=\"H4959\"* in|strong=\"H3808\"* the|strong=\"H3808\"* dark|strong=\"H2822\"* without|strong=\"H3808\"* light." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "“Behold|strong=\"H2005\"*, my|strong=\"H8085\"* eye|strong=\"H5869\"* has|strong=\"H5869\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* this|strong=\"H7200\"*." + }, + { + "verseNum": 2, + "text": "What|strong=\"H3045\"* you|strong=\"H3045\"* know|strong=\"H3045\"*, I|strong=\"H3045\"* know|strong=\"H3045\"* also|strong=\"H1571\"*." + }, + { + "verseNum": 3, + "text": "“Surely|strong=\"H3198\"* I would|strong=\"H7706\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1696\"* Almighty|strong=\"H7706\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3605\"* you|strong=\"H3605\"* are|strong=\"H8267\"* forgers|strong=\"H2950\"* of|strong=\"H3605\"* lies|strong=\"H8267\"*." + }, + { + "verseNum": 5, + "text": "Oh|strong=\"H4310\"* that|strong=\"H5414\"* you|strong=\"H5414\"* would|strong=\"H4310\"* be|strong=\"H1961\"* completely|strong=\"H2790\"* silent|strong=\"H2790\"*!" + }, + { + "verseNum": 6, + "text": "Hear|strong=\"H8085\"* now|strong=\"H4994\"* my|strong=\"H8085\"* reasoning|strong=\"H8433\"*." + }, + { + "verseNum": 7, + "text": "Will you|strong=\"H1696\"* speak|strong=\"H1696\"* unrighteously|strong=\"H5766\"* for|strong=\"H5766\"* God," + }, + { + "verseNum": 8, + "text": "Will|strong=\"H6440\"* you|strong=\"H6440\"* show|strong=\"H5375\"* partiality|strong=\"H5375\"* to|strong=\"H6440\"* him|strong=\"H6440\"*?" + }, + { + "verseNum": 9, + "text": "Is|strong=\"H2896\"* it|strong=\"H3588\"* good|strong=\"H2896\"* that|strong=\"H3588\"* he|strong=\"H3588\"* should|strong=\"H3588\"* search|strong=\"H2713\"* you|strong=\"H3588\"* out|strong=\"H2713\"*?" + }, + { + "verseNum": 10, + "text": "He|strong=\"H6440\"* will|strong=\"H6440\"* surely|strong=\"H3198\"* reprove|strong=\"H3198\"* you|strong=\"H6440\"*" + }, + { + "verseNum": 11, + "text": "Won’t his|strong=\"H5921\"* majesty|strong=\"H7613\"* make you|strong=\"H5921\"* afraid|strong=\"H1204\"*" + }, + { + "verseNum": 12, + "text": "Your memorable|strong=\"H2146\"* sayings|strong=\"H2146\"* are|strong=\"H1354\"* proverbs|strong=\"H4911\"* of|strong=\"H2563\"* ashes." + }, + { + "verseNum": 13, + "text": "“Be|strong=\"H4480\"* silent|strong=\"H2790\"*!" + }, + { + "verseNum": 14, + "text": "Why|strong=\"H4100\"* should|strong=\"H4100\"* I|strong=\"H5921\"* take|strong=\"H5375\"* my|strong=\"H7760\"* flesh|strong=\"H1320\"* in|strong=\"H5921\"* my|strong=\"H7760\"* teeth|strong=\"H8127\"*," + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H3808\"* will|strong=\"H3808\"* kill me|strong=\"H6440\"*." + }, + { + "verseNum": 16, + "text": "This|strong=\"H1931\"* also|strong=\"H1571\"* will|strong=\"H1571\"* be|strong=\"H3808\"* my|strong=\"H3588\"* salvation|strong=\"H3444\"*," + }, + { + "verseNum": 17, + "text": "Listen|strong=\"H8085\"* carefully|strong=\"H8085\"* to|strong=\"H8085\"* my|strong=\"H8085\"* speech|strong=\"H4405\"*." + }, + { + "verseNum": 18, + "text": "See|strong=\"H2009\"* now|strong=\"H4994\"*, I|strong=\"H3588\"* have|strong=\"H3045\"* set|strong=\"H6186\"* my|strong=\"H3045\"* cause|strong=\"H4941\"* in|strong=\"H3045\"* order|strong=\"H6186\"*." + }, + { + "verseNum": 19, + "text": "Who|strong=\"H4310\"* is|strong=\"H1931\"* he|strong=\"H1931\"* who|strong=\"H4310\"* will|strong=\"H4310\"* contend|strong=\"H7378\"* with|strong=\"H7378\"* me|strong=\"H5978\"*?" + }, + { + "verseNum": 20, + "text": "“Only don’t do|strong=\"H6213\"* two|strong=\"H8147\"* things|strong=\"H8147\"* to|strong=\"H6213\"* me|strong=\"H6440\"*," + }, + { + "verseNum": 21, + "text": "withdraw|strong=\"H7368\"* your|strong=\"H5921\"* hand|strong=\"H3709\"* far|strong=\"H7368\"* from|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 22, + "text": "Then|strong=\"H6030\"* call|strong=\"H7121\"*, and|strong=\"H6030\"* I|strong=\"H7121\"* will|strong=\"H7725\"* answer|strong=\"H6030\"*," + }, + { + "verseNum": 23, + "text": "How|strong=\"H4100\"* many|strong=\"H4100\"* are|strong=\"H4100\"* my|strong=\"H3045\"* iniquities|strong=\"H5771\"* and|strong=\"H3045\"* sins|strong=\"H2403\"*?" + }, + { + "verseNum": 24, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H6440\"* hide|strong=\"H5641\"* your|strong=\"H6440\"* face|strong=\"H6440\"*," + }, + { + "verseNum": 25, + "text": "Will|strong=\"H5929\"* you|strong=\"H7291\"* harass a|strong=\"H3068\"* driven|strong=\"H5086\"* leaf|strong=\"H5929\"*?" + }, + { + "verseNum": 26, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* write|strong=\"H3789\"* bitter|strong=\"H4846\"* things|strong=\"H4846\"* against|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 27, + "text": "You|strong=\"H3605\"* also put|strong=\"H7760\"* my|strong=\"H8104\"* feet|strong=\"H7272\"* in|strong=\"H5921\"* the|strong=\"H3605\"* stocks|strong=\"H5465\"*," + }, + { + "verseNum": 28, + "text": "though|strong=\"H1931\"* I am decaying|strong=\"H1086\"* like|strong=\"H6211\"* a|strong=\"H3068\"* rotten|strong=\"H7538\"* thing|strong=\"H7538\"*," + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "“Man|strong=\"H7116\"*, who|strong=\"H3205\"* is|strong=\"H3117\"* born|strong=\"H3205\"* of|strong=\"H3117\"* a|strong=\"H3068\"* woman|strong=\"H3205\"*," + }, + { + "verseNum": 2, + "text": "He|strong=\"H3808\"* grows|strong=\"H3318\"* up|strong=\"H5975\"* like|strong=\"H3318\"* a|strong=\"H3068\"* flower|strong=\"H6731\"*, and|strong=\"H5975\"* is|strong=\"H5975\"* cut down|strong=\"H5243\"*." + }, + { + "verseNum": 3, + "text": "Do|strong=\"H5869\"* you|strong=\"H5921\"* open|strong=\"H6491\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"* on|strong=\"H5921\"* such|strong=\"H2088\"* a|strong=\"H3068\"* one|strong=\"H2088\"*," + }, + { + "verseNum": 4, + "text": "Who|strong=\"H4310\"* can|strong=\"H4310\"* bring|strong=\"H5414\"* a|strong=\"H3068\"* clean|strong=\"H2889\"* thing|strong=\"H2931\"* out|strong=\"H5414\"* of|strong=\"H3808\"* an|strong=\"H5414\"* unclean|strong=\"H2931\"*?" + }, + { + "verseNum": 5, + "text": "Seeing his|strong=\"H6213\"* days|strong=\"H3117\"* are|strong=\"H3117\"* determined|strong=\"H2782\"*," + }, + { + "verseNum": 6, + "text": "Look|strong=\"H8159\"* away|strong=\"H8159\"* from|strong=\"H5921\"* him|strong=\"H5921\"*, that|strong=\"H3117\"* he|strong=\"H3117\"* may|strong=\"H3117\"* rest|strong=\"H2308\"*," + }, + { + "verseNum": 7, + "text": "“For|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3426\"* hope|strong=\"H8615\"* for|strong=\"H3588\"* a|strong=\"H3068\"* tree|strong=\"H6086\"* if|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3426\"* cut|strong=\"H3772\"* down|strong=\"H3772\"*," + }, + { + "verseNum": 8, + "text": "Though its root|strong=\"H8328\"* grows old|strong=\"H2204\"* in|strong=\"H4191\"* the|strong=\"H4191\"* earth|strong=\"H6083\"*," + }, + { + "verseNum": 9, + "text": "yet through|strong=\"H6213\"* the|strong=\"H6213\"* scent|strong=\"H7381\"* of|strong=\"H4325\"* water|strong=\"H4325\"* it|strong=\"H6213\"* will|strong=\"H4325\"* bud|strong=\"H6524\"*," + }, + { + "verseNum": 10, + "text": "But|strong=\"H4191\"* man|strong=\"H1397\"* dies|strong=\"H4191\"*, and|strong=\"H4191\"* is|strong=\"H1397\"* laid low." + }, + { + "verseNum": 11, + "text": "As|strong=\"H4325\"* the|strong=\"H4480\"* waters|strong=\"H4325\"* fail from|strong=\"H4480\"* the|strong=\"H4480\"* sea|strong=\"H3220\"*," + }, + { + "verseNum": 12, + "text": "so|strong=\"H3808\"* man lies|strong=\"H7901\"* down|strong=\"H7901\"* and|strong=\"H6965\"* doesn’t rise|strong=\"H6965\"*." + }, + { + "verseNum": 13, + "text": "“Oh|strong=\"H4310\"* that|strong=\"H5414\"* you|strong=\"H5414\"* would|strong=\"H4310\"* hide|strong=\"H5641\"* me|strong=\"H5414\"* in|strong=\"H7725\"* Sheol|strong=\"H7585\"*,+ 14:13 Sheol is the place of the dead.*" + }, + { + "verseNum": 14, + "text": "If a|strong=\"H3068\"* man|strong=\"H1397\"* dies|strong=\"H4191\"*, will|strong=\"H6635\"* he|strong=\"H3117\"* live|strong=\"H2421\"* again?" + }, + { + "verseNum": 15, + "text": "You|strong=\"H3027\"* would|strong=\"H4639\"* call|strong=\"H7121\"*, and|strong=\"H6030\"* I|strong=\"H3027\"* would|strong=\"H4639\"* answer|strong=\"H6030\"* you|strong=\"H3027\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"H3588\"* now|strong=\"H6258\"* you|strong=\"H3588\"* count|strong=\"H5608\"* my|strong=\"H8104\"* steps|strong=\"H6806\"*." + }, + { + "verseNum": 17, + "text": "My|strong=\"H5921\"* disobedience is|strong=\"H5771\"* sealed|strong=\"H2856\"* up|strong=\"H2856\"* in|strong=\"H5921\"* a|strong=\"H3068\"* bag|strong=\"H6872\"*." + }, + { + "verseNum": 18, + "text": "“But the|strong=\"H4725\"* mountain|strong=\"H2022\"* falling|strong=\"H5307\"* comes to|strong=\"H4725\"* nothing." + }, + { + "verseNum": 19, + "text": "The|strong=\"H7857\"* waters|strong=\"H4325\"* wear|strong=\"H7833\"* the|strong=\"H7857\"* stones." + }, + { + "verseNum": 20, + "text": "You|strong=\"H6440\"* forever|strong=\"H5331\"* prevail|strong=\"H8630\"* against|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H1980\"* he|strong=\"H1980\"* departs|strong=\"H1980\"*." + }, + { + "verseNum": 21, + "text": "His|strong=\"H3045\"* sons|strong=\"H1121\"* come|strong=\"H3045\"* to|strong=\"H1121\"* honor|strong=\"H3513\"*, and|strong=\"H1121\"* he|strong=\"H3808\"* doesn’t know|strong=\"H3045\"* it|strong=\"H3045\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H5921\"* his|strong=\"H5921\"* flesh|strong=\"H1320\"* on|strong=\"H5921\"* him|strong=\"H5921\"* has|strong=\"H5315\"* pain|strong=\"H3510\"*," + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Eliphaz the|strong=\"H6030\"* Temanite|strong=\"H8489\"* answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Should|strong=\"H2450\"* a|strong=\"H3068\"* wise|strong=\"H2450\"* man|strong=\"H2450\"* answer|strong=\"H6030\"* with|strong=\"H4390\"* vain|strong=\"H7307\"* knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 3, + "text": "Should he|strong=\"H3808\"* reason|strong=\"H1697\"* with|strong=\"H1697\"* unprofitable|strong=\"H5532\"* talk|strong=\"H1697\"*," + }, + { + "verseNum": 4, + "text": "Yes, you|strong=\"H6440\"* do|strong=\"H6565\"* away|strong=\"H1639\"* with|strong=\"H6440\"* fear|strong=\"H3374\"*," + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* your|strong=\"H3588\"* iniquity|strong=\"H5771\"* teaches your|strong=\"H3588\"* mouth|strong=\"H6310\"*," + }, + { + "verseNum": 6, + "text": "Your|strong=\"H3808\"* own mouth|strong=\"H6310\"* condemns|strong=\"H7561\"* you|strong=\"H3808\"*, and|strong=\"H6030\"* not|strong=\"H3808\"* I|strong=\"H3808\"*." + }, + { + "verseNum": 7, + "text": "“Are|strong=\"H6440\"* you|strong=\"H6440\"* the|strong=\"H6440\"* first|strong=\"H7223\"* man|strong=\"H6440\"* who|strong=\"H3205\"* was|strong=\"H3205\"* born|strong=\"H3205\"*?" + }, + { + "verseNum": 8, + "text": "Have|strong=\"H8085\"* you|strong=\"H8085\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* secret|strong=\"H5475\"* counsel|strong=\"H5475\"* of|strong=\"H2451\"* God|strong=\"H2451\"*?" + }, + { + "verseNum": 9, + "text": "What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3045\"* know|strong=\"H3045\"* that|strong=\"H3045\"* we|strong=\"H3068\"* don’t know|strong=\"H3045\"*?" + }, + { + "verseNum": 10, + "text": "With|strong=\"H3117\"* us|strong=\"H3117\"* are|strong=\"H3117\"* both|strong=\"H1571\"* the|strong=\"H3117\"* gray-headed and|strong=\"H3117\"* the|strong=\"H3117\"* very|strong=\"H1571\"* aged|strong=\"H3453\"* men|strong=\"H3453\"*," + }, + { + "verseNum": 11, + "text": "Are|strong=\"H1697\"* the|strong=\"H4480\"* consolations|strong=\"H8575\"* of|strong=\"H1697\"* God too|strong=\"H4480\"* small|strong=\"H4592\"* for|strong=\"H1697\"* you|strong=\"H5973\"*," + }, + { + "verseNum": 12, + "text": "Why|strong=\"H4100\"* does|strong=\"H4100\"* your|strong=\"H3947\"* heart|strong=\"H3820\"* carry|strong=\"H3947\"* you|strong=\"H3947\"* away|strong=\"H3947\"*?" + }, + { + "verseNum": 13, + "text": "that|strong=\"H3588\"* you|strong=\"H3588\"* turn|strong=\"H7725\"* your|strong=\"H7725\"* spirit|strong=\"H7307\"* against|strong=\"H7307\"* God," + }, + { + "verseNum": 14, + "text": "What|strong=\"H4100\"* is|strong=\"H4100\"* man, that|strong=\"H3588\"* he|strong=\"H3588\"* should|strong=\"H4100\"* be|strong=\"H3588\"* clean|strong=\"H2135\"*?" + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H3808\"* puts no|strong=\"H3808\"* trust in|strong=\"H3808\"* his|strong=\"H3808\"* holy|strong=\"H6918\"* ones|strong=\"H6918\"*." + }, + { + "verseNum": 16, + "text": "how|strong=\"H3588\"* much less|strong=\"H3588\"* one|strong=\"H3588\"* who|strong=\"H3588\"* is|strong=\"H4325\"* abominable|strong=\"H8581\"* and|strong=\"H4325\"* corrupt," + }, + { + "verseNum": 17, + "text": "“I|strong=\"H2088\"* will|strong=\"H2088\"* show|strong=\"H2331\"* you|strong=\"H2331\"*, listen|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H5608\"*;" + }, + { + "verseNum": 18, + "text": "(which wise|strong=\"H2450\"* men|strong=\"H2450\"* have|strong=\"H3808\"* told|strong=\"H5046\"* by|strong=\"H3808\"* their|strong=\"H3808\"* fathers," + }, + { + "verseNum": 19, + "text": "to|strong=\"H5414\"* whom alone the|strong=\"H5414\"* land was|strong=\"H5414\"* given|strong=\"H5414\"*," + }, + { + "verseNum": 20, + "text": "the|strong=\"H3605\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* writhes|strong=\"H2342\"* in|strong=\"H8141\"* pain|strong=\"H2342\"* all|strong=\"H3605\"* his|strong=\"H3605\"* days|strong=\"H3117\"*," + }, + { + "verseNum": 21, + "text": "A|strong=\"H3068\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* terrors|strong=\"H6343\"* is|strong=\"H6963\"* in|strong=\"H6963\"* his|strong=\"H7703\"* ears." + }, + { + "verseNum": 22, + "text": "He|strong=\"H1931\"* doesn’t believe that|strong=\"H1931\"* he|strong=\"H1931\"* will|strong=\"H2719\"* return|strong=\"H7725\"* out|strong=\"H4480\"* of|strong=\"H4480\"* darkness|strong=\"H2822\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H1931\"* wanders|strong=\"H5074\"* abroad|strong=\"H5074\"* for|strong=\"H3588\"* bread|strong=\"H3899\"*, saying, ‘Where|strong=\"H3027\"* is|strong=\"H1931\"* it|strong=\"H1931\"*?’" + }, + { + "verseNum": 24, + "text": "Distress|strong=\"H6862\"* and|strong=\"H4428\"* anguish|strong=\"H4691\"* make him|strong=\"H4428\"* afraid|strong=\"H1204\"*." + }, + { + "verseNum": 25, + "text": "Because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* his|strong=\"H5186\"* hand|strong=\"H3027\"* against|strong=\"H3027\"* God|strong=\"H3027\"*," + }, + { + "verseNum": 26, + "text": "he runs|strong=\"H7323\"* at him with|strong=\"H6677\"* a|strong=\"H3068\"* stiff neck|strong=\"H6677\"*," + }, + { + "verseNum": 27, + "text": "because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* covered|strong=\"H3680\"* his|strong=\"H6440\"* face|strong=\"H6440\"* with|strong=\"H6213\"* his|strong=\"H6440\"* fatness|strong=\"H2459\"*," + }, + { + "verseNum": 28, + "text": "He|strong=\"H1004\"* has|strong=\"H1004\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* desolate|strong=\"H3582\"* cities|strong=\"H5892\"*," + }, + { + "verseNum": 29, + "text": "He|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* rich|strong=\"H6238\"*, neither|strong=\"H3808\"* will|strong=\"H3808\"* his|strong=\"H5186\"* substance|strong=\"H2428\"* continue|strong=\"H6965\"*," + }, + { + "verseNum": 30, + "text": "He|strong=\"H4480\"* will|strong=\"H7307\"* not|strong=\"H3808\"* depart|strong=\"H5493\"* out|strong=\"H4480\"* of|strong=\"H7307\"* darkness|strong=\"H2822\"*." + }, + { + "verseNum": 31, + "text": "Let|strong=\"H1961\"* him|strong=\"H3588\"* not|strong=\"H1961\"* trust in|strong=\"H1961\"* emptiness|strong=\"H7723\"*, deceiving|strong=\"H8582\"* himself," + }, + { + "verseNum": 32, + "text": "It|strong=\"H3117\"* will|strong=\"H3808\"* be|strong=\"H3808\"* accomplished|strong=\"H4390\"* before|strong=\"H3808\"* his|strong=\"H4390\"* time|strong=\"H3117\"*." + }, + { + "verseNum": 33, + "text": "He will|strong=\"H2132\"* shake off|strong=\"H7993\"* his|strong=\"H7993\"* unripe grape|strong=\"H1154\"* as the|strong=\"H7993\"* vine|strong=\"H1612\"*," + }, + { + "verseNum": 34, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* company|strong=\"H5712\"* of|strong=\"H5712\"* the|strong=\"H3588\"* godless|strong=\"H2611\"* will|strong=\"H2611\"* be|strong=\"H3588\"* barren|strong=\"H1565\"*," + }, + { + "verseNum": 35, + "text": "They|strong=\"H4820\"* conceive|strong=\"H2029\"* mischief|strong=\"H5999\"* and|strong=\"H5999\"* produce iniquity|strong=\"H5999\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Job answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“I|strong=\"H8085\"* have|strong=\"H3605\"* heard|strong=\"H8085\"* many|strong=\"H7227\"* such|strong=\"H3605\"* things|strong=\"H3605\"*." + }, + { + "verseNum": 3, + "text": "Shall|strong=\"H7307\"* vain|strong=\"H7307\"* words|strong=\"H1697\"* have|strong=\"H1697\"* an|strong=\"H3588\"* end|strong=\"H7093\"*?" + }, + { + "verseNum": 4, + "text": "I|strong=\"H5921\"* also|strong=\"H1571\"* could|strong=\"H1571\"* speak|strong=\"H1696\"* as|strong=\"H1571\"* you|strong=\"H5921\"* do|strong=\"H3426\"*." + }, + { + "verseNum": 5, + "text": "but|strong=\"H8193\"* I would strengthen you|strong=\"H6310\"* with|strong=\"H6310\"* my|strong=\"H2820\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 6, + "text": "“Though I|strong=\"H3808\"* speak|strong=\"H1696\"*, my|strong=\"H1696\"* grief|strong=\"H3511\"* is|strong=\"H4100\"* not|strong=\"H3808\"* subsided." + }, + { + "verseNum": 7, + "text": "But|strong=\"H6258\"* now|strong=\"H6258\"*, God, you|strong=\"H3605\"* have|strong=\"H3605\"* surely worn me|strong=\"H8074\"* out|strong=\"H3605\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H6440\"* have|strong=\"H1961\"* shriveled|strong=\"H7059\"* me|strong=\"H6440\"* up|strong=\"H6965\"*. This|strong=\"H6440\"* is|strong=\"H1961\"* a|strong=\"H3068\"* witness|strong=\"H5707\"* against|strong=\"H6440\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H5921\"* has|strong=\"H5869\"* torn|strong=\"H2963\"* me|strong=\"H5921\"* in|strong=\"H5921\"* his|strong=\"H5921\"* wrath and|strong=\"H5869\"* persecuted me|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H5921\"* have|strong=\"H5921\"* gaped|strong=\"H6473\"* on|strong=\"H5921\"* me|strong=\"H5921\"* with|strong=\"H4390\"* their|strong=\"H4390\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 11, + "text": "God|strong=\"H3027\"* delivers me|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* ungodly|strong=\"H7563\"*," + }, + { + "verseNum": 12, + "text": "I|strong=\"H6965\"* was|strong=\"H1961\"* at|strong=\"H1961\"* ease|strong=\"H7961\"*, and|strong=\"H6965\"* he broke|strong=\"H6565\"* me|strong=\"H1961\"* apart." + }, + { + "verseNum": 13, + "text": "His|strong=\"H5921\"* archers|strong=\"H7228\"* surround|strong=\"H5437\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H5921\"* breaks|strong=\"H6555\"* me|strong=\"H6440\"* with|strong=\"H5921\"* breach|strong=\"H6556\"* on|strong=\"H5921\"* breach|strong=\"H6556\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H5921\"* have|strong=\"H5921\"* sewed|strong=\"H8609\"* sackcloth|strong=\"H8242\"* on|strong=\"H5921\"* my|strong=\"H5921\"* skin|strong=\"H1539\"*," + }, + { + "verseNum": 16, + "text": "My|strong=\"H5921\"* face|strong=\"H6440\"* is|strong=\"H6440\"* red|strong=\"H2560\"* with|strong=\"H5921\"* weeping|strong=\"H1065\"*." + }, + { + "verseNum": 17, + "text": "although|strong=\"H3808\"* there is|strong=\"H3808\"* no|strong=\"H3808\"* violence|strong=\"H2555\"* in|strong=\"H5921\"* my|strong=\"H5921\"* hands|strong=\"H3709\"*," + }, + { + "verseNum": 18, + "text": "“Earth, don’t cover|strong=\"H3680\"* my|strong=\"H1961\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 19, + "text": "Even|strong=\"H1571\"* now|strong=\"H6258\"*, behold|strong=\"H2009\"*, my|strong=\"H6258\"* witness|strong=\"H5707\"* is|strong=\"H1571\"* in|strong=\"H8064\"* heaven|strong=\"H8064\"*." + }, + { + "verseNum": 20, + "text": "My friends|strong=\"H7453\"* scoff at|strong=\"H5869\"* me|strong=\"H5869\"*." + }, + { + "verseNum": 21, + "text": "that|strong=\"H1121\"* he|strong=\"H1121\"* would maintain|strong=\"H3198\"* the|strong=\"H5973\"* right of|strong=\"H1121\"* a|strong=\"H3068\"* man|strong=\"H1397\"* with|strong=\"H5973\"* God," + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* when|strong=\"H3588\"* a|strong=\"H3068\"* few|strong=\"H4557\"* years|strong=\"H8141\"* have|strong=\"H3588\"* come|strong=\"H1980\"*," + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "“My|strong=\"H3117\"* spirit|strong=\"H7307\"* is|strong=\"H3117\"* consumed." + }, + { + "verseNum": 2, + "text": "Surely|strong=\"H3808\"* there|strong=\"H3885\"* are|strong=\"H5869\"* mockers|strong=\"H2049\"* with|strong=\"H5869\"* me|strong=\"H5978\"*." + }, + { + "verseNum": 3, + "text": "“Now|strong=\"H4994\"* give|strong=\"H7760\"* a|strong=\"H3068\"* pledge. Be|strong=\"H3027\"* collateral|strong=\"H6148\"* for|strong=\"H3027\"* me|strong=\"H4994\"* with|strong=\"H5973\"* yourself|strong=\"H5973\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* hidden|strong=\"H6845\"* their|strong=\"H5921\"* heart|strong=\"H3820\"* from|strong=\"H5921\"* understanding|strong=\"H3820\"*," + }, + { + "verseNum": 5, + "text": "He|strong=\"H1121\"* who|strong=\"H1121\"* denounces|strong=\"H5046\"* his|strong=\"H5046\"* friends|strong=\"H7453\"* for|strong=\"H1121\"* plunder," + }, + { + "verseNum": 6, + "text": "“But|strong=\"H1961\"* he|strong=\"H5971\"* has|strong=\"H1961\"* made|strong=\"H3322\"* me|strong=\"H6440\"* a|strong=\"H3068\"* byword|strong=\"H4914\"* of|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 7, + "text": "My|strong=\"H3605\"* eye|strong=\"H5869\"* also|strong=\"H5869\"* is|strong=\"H3605\"* dim|strong=\"H3543\"* by|strong=\"H3605\"* reason of|strong=\"H5869\"* sorrow|strong=\"H3708\"*." + }, + { + "verseNum": 8, + "text": "Upright|strong=\"H3477\"* men will|strong=\"H3477\"* be astonished|strong=\"H8074\"* at|strong=\"H5921\"* this|strong=\"H2063\"*." + }, + { + "verseNum": 9, + "text": "Yet|strong=\"H3254\"* the|strong=\"H1870\"* righteous|strong=\"H6662\"* will|strong=\"H6662\"* hold to|strong=\"H3027\"* his|strong=\"H3027\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"H3808\"* as|strong=\"H3605\"* for|strong=\"H3605\"* you|strong=\"H3605\"* all|strong=\"H3605\"*, come|strong=\"H4672\"* back|strong=\"H7725\"*." + }, + { + "verseNum": 11, + "text": "My|strong=\"H5674\"* days|strong=\"H3117\"* are|strong=\"H3117\"* past|strong=\"H5674\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3117\"* change|strong=\"H7760\"* the|strong=\"H6440\"* night|strong=\"H3915\"* into|strong=\"H3915\"* day|strong=\"H3117\"*," + }, + { + "verseNum": 13, + "text": "If I|strong=\"H1004\"* look|strong=\"H6960\"* for|strong=\"H6960\"* Sheol|strong=\"H7585\"*+ 17:13 Sheol is the place of the dead.* as|strong=\"H1004\"* my|strong=\"H7502\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 14, + "text": "if I|strong=\"H7121\"* have said|strong=\"H7121\"* to|strong=\"H7121\"* corruption|strong=\"H7845\"*, ‘You|strong=\"H7121\"* are|strong=\"H7415\"* my|strong=\"H7121\"* father,’" + }, + { + "verseNum": 15, + "text": "where then is|strong=\"H4310\"* my|strong=\"H7789\"* hope|strong=\"H8615\"*?" + }, + { + "verseNum": 16, + "text": "Shall|strong=\"H6083\"* it|strong=\"H5921\"* go|strong=\"H3381\"* down|strong=\"H3381\"* with|strong=\"H5921\"* me|strong=\"H5921\"* to|strong=\"H3381\"* the|strong=\"H5921\"* gates of|strong=\"H5921\"* Sheol|strong=\"H7585\"*,+ 17:16 Sheol is the place of the dead.*" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Bildad|strong=\"H1085\"* the|strong=\"H6030\"* Shuhite|strong=\"H7747\"* answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“How|strong=\"H5704\"* long|strong=\"H5704\"* will|strong=\"H5704\"* you|strong=\"H5704\"* hunt|strong=\"H7760\"* for|strong=\"H5704\"* words|strong=\"H4405\"*?" + }, + { + "verseNum": 3, + "text": "Why|strong=\"H4069\"* are|strong=\"H5869\"* we|strong=\"H3068\"* counted|strong=\"H2803\"* as|strong=\"H2803\"* animals," + }, + { + "verseNum": 4, + "text": "You|strong=\"H5800\"* who|strong=\"H5315\"* tear|strong=\"H2963\"* yourself|strong=\"H5315\"* in|strong=\"H5315\"* your|strong=\"H5800\"* anger," + }, + { + "verseNum": 5, + "text": "“Yes|strong=\"H1571\"*, the|strong=\"H1571\"* light|strong=\"H5050\"* of|strong=\"H3808\"* the|strong=\"H1571\"* wicked|strong=\"H7563\"* will|strong=\"H1571\"* be|strong=\"H3808\"* put|strong=\"H1846\"* out|strong=\"H1846\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* light|strong=\"H5216\"* will|strong=\"H5216\"* be dark|strong=\"H2821\"* in|strong=\"H5921\"* his|strong=\"H5921\"* tent." + }, + { + "verseNum": 7, + "text": "The|strong=\"H7993\"* steps|strong=\"H6806\"* of|strong=\"H6098\"* his|strong=\"H7993\"* strength will be shortened." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H7971\"* cast|strong=\"H7971\"* into|strong=\"H1980\"* a|strong=\"H3068\"* net|strong=\"H7568\"* by|strong=\"H5921\"* his|strong=\"H7971\"* own feet|strong=\"H7272\"*," + }, + { + "verseNum": 9, + "text": "A|strong=\"H3068\"* snare|strong=\"H6341\"* will take|strong=\"H2388\"* him|strong=\"H5921\"* by|strong=\"H5921\"* the|strong=\"H5921\"* heel|strong=\"H6119\"*." + }, + { + "verseNum": 10, + "text": "A|strong=\"H3068\"* noose|strong=\"H2256\"* is|strong=\"H2256\"* hidden|strong=\"H2934\"* for|strong=\"H5921\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* ground," + }, + { + "verseNum": 11, + "text": "Terrors|strong=\"H1091\"* will|strong=\"H7272\"* make|strong=\"H7272\"* him|strong=\"H5439\"* afraid|strong=\"H1204\"* on|strong=\"H7272\"* every|strong=\"H5439\"* side|strong=\"H5439\"*," + }, + { + "verseNum": 12, + "text": "His|strong=\"H3559\"* strength will|strong=\"H1961\"* be|strong=\"H1961\"* famished|strong=\"H7457\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H4194\"* members of|strong=\"H1060\"* his body|strong=\"H5785\"* will be devoured." + }, + { + "verseNum": 14, + "text": "He|strong=\"H4428\"* will|strong=\"H4428\"* be|strong=\"H4428\"* rooted out|strong=\"H5423\"* of|strong=\"H4428\"* the|strong=\"H5423\"* security|strong=\"H4009\"* of|strong=\"H4428\"* his|strong=\"H4428\"* tent." + }, + { + "verseNum": 15, + "text": "There|strong=\"H1097\"* will dwell|strong=\"H7931\"* in|strong=\"H5921\"* his|strong=\"H5921\"* tent that|strong=\"H1097\"* which is|strong=\"H1614\"* none|strong=\"H1097\"* of|strong=\"H5921\"* his|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "His|strong=\"H8478\"* roots|strong=\"H8328\"* will|strong=\"H8328\"* be|strong=\"H4605\"* dried|strong=\"H3001\"* up|strong=\"H3001\"* beneath|strong=\"H8478\"*." + }, + { + "verseNum": 17, + "text": "His|strong=\"H6440\"* memory|strong=\"H2143\"* will|strong=\"H3808\"* perish from|strong=\"H4480\"* the|strong=\"H6440\"* earth." + }, + { + "verseNum": 18, + "text": "He|strong=\"H2822\"* will|strong=\"H2822\"* be|strong=\"H2822\"* driven|strong=\"H1920\"* from|strong=\"H1920\"* light into darkness|strong=\"H2822\"*," + }, + { + "verseNum": 19, + "text": "He|strong=\"H3808\"* will|strong=\"H5971\"* have|strong=\"H5971\"* neither|strong=\"H3808\"* son|strong=\"H5209\"* nor|strong=\"H3808\"* grandson among|strong=\"H5971\"* his|strong=\"H3808\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 20, + "text": "Those|strong=\"H5921\"* who come after|strong=\"H5921\"* will|strong=\"H3117\"* be|strong=\"H3117\"* astonished|strong=\"H8074\"* at|strong=\"H5921\"* his|strong=\"H5921\"* day|strong=\"H3117\"*," + }, + { + "verseNum": 21, + "text": "Surely|strong=\"H3808\"* such|strong=\"H2088\"* are|strong=\"H3045\"* the|strong=\"H3045\"* dwellings|strong=\"H4908\"* of|strong=\"H4725\"* the|strong=\"H3045\"* unrighteous|strong=\"H5767\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Job answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“How|strong=\"H5704\"* long|strong=\"H5704\"* will|strong=\"H5315\"* you|strong=\"H5704\"* torment|strong=\"H3013\"* me|strong=\"H5315\"*," + }, + { + "verseNum": 3, + "text": "You|strong=\"H3808\"* have|strong=\"H3808\"* reproached|strong=\"H3637\"* me|strong=\"H3808\"* ten|strong=\"H6235\"* times|strong=\"H6471\"*." + }, + { + "verseNum": 4, + "text": "If it is true that|strong=\"H3885\"* I have erred|strong=\"H7686\"*," + }, + { + "verseNum": 5, + "text": "If indeed you|strong=\"H5921\"* will magnify|strong=\"H1431\"* yourselves|strong=\"H1431\"* against|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 6, + "text": "know|strong=\"H3045\"* now|strong=\"H3588\"* that|strong=\"H3588\"* God has|strong=\"H3588\"* subverted me|strong=\"H5921\"*," + }, + { + "verseNum": 7, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H2005\"* cry|strong=\"H6817\"* out|strong=\"H6817\"* of|strong=\"H4941\"* wrong|strong=\"H2555\"*, but|strong=\"H3808\"* I|strong=\"H2005\"* am|strong=\"H2005\"* not|strong=\"H3808\"* heard|strong=\"H6030\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3808\"* has|strong=\"H5674\"* walled|strong=\"H1443\"* up|strong=\"H7760\"* my|strong=\"H7760\"* way|strong=\"H5410\"* so|strong=\"H3808\"* that|strong=\"H3808\"* I|strong=\"H5921\"* can|strong=\"H3808\"*’t pass|strong=\"H5674\"*," + }, + { + "verseNum": 9, + "text": "He|strong=\"H5921\"* has|strong=\"H3519\"* stripped|strong=\"H6584\"* me|strong=\"H5921\"* of|strong=\"H7218\"* my|strong=\"H5921\"* glory|strong=\"H3519\"*," + }, + { + "verseNum": 10, + "text": "He|strong=\"H3212\"* has|strong=\"H6086\"* broken|strong=\"H5422\"* me|strong=\"H3212\"* down|strong=\"H5422\"* on|strong=\"H3212\"* every|strong=\"H5439\"* side|strong=\"H5439\"*, and|strong=\"H3212\"* I|strong=\"H3212\"* am gone|strong=\"H3212\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H5921\"* has|strong=\"H6862\"* also kindled|strong=\"H2734\"* his|strong=\"H5921\"* wrath against|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "His|strong=\"H5921\"* troops|strong=\"H1416\"* come on|strong=\"H5921\"* together|strong=\"H3162\"*," + }, + { + "verseNum": 13, + "text": "“He|strong=\"H4480\"* has|strong=\"H3045\"* put|strong=\"H7368\"* my|strong=\"H5921\"* brothers far|strong=\"H7368\"* from|strong=\"H4480\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "My|strong=\"H3045\"* relatives|strong=\"H7138\"* have|strong=\"H3045\"* gone away." + }, + { + "verseNum": 15, + "text": "Those|strong=\"H1961\"* who|strong=\"H2114\"* dwell|strong=\"H1481\"* in|strong=\"H1004\"* my|strong=\"H1961\"* house|strong=\"H1004\"* and|strong=\"H1004\"* my|strong=\"H1961\"* maids consider|strong=\"H2803\"* me|strong=\"H1961\"* a|strong=\"H3068\"* stranger|strong=\"H2114\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"H5650\"* call|strong=\"H7121\"* to|strong=\"H5650\"* my|strong=\"H5650\"* servant|strong=\"H5650\"*, and|strong=\"H6030\"* he|strong=\"H3808\"* gives|strong=\"H7121\"* me|strong=\"H7121\"* no|strong=\"H3808\"* answer|strong=\"H6030\"*." + }, + { + "verseNum": 17, + "text": "My breath|strong=\"H7307\"* is|strong=\"H7307\"* offensive|strong=\"H2114\"* to|strong=\"H1121\"* my wife." + }, + { + "verseNum": 18, + "text": "Even|strong=\"H1571\"* young|strong=\"H5759\"* children|strong=\"H5759\"* despise|strong=\"H3988\"* me|strong=\"H1696\"*." + }, + { + "verseNum": 19, + "text": "All|strong=\"H3605\"* my|strong=\"H3605\"* familiar friends|strong=\"H4962\"* abhor|strong=\"H8581\"* me|strong=\"H8581\"*." + }, + { + "verseNum": 20, + "text": "My|strong=\"H6106\"* bones|strong=\"H6106\"* stick|strong=\"H1692\"* to|strong=\"H1320\"* my|strong=\"H6106\"* skin|strong=\"H5785\"* and|strong=\"H1320\"* to|strong=\"H1320\"* my|strong=\"H6106\"* flesh|strong=\"H1320\"*." + }, + { + "verseNum": 21, + "text": "“Have|strong=\"H3027\"* pity|strong=\"H2603\"* on|strong=\"H3027\"* me|strong=\"H5060\"*. Have|strong=\"H3027\"* pity|strong=\"H2603\"* on|strong=\"H3027\"* me|strong=\"H5060\"*, you|strong=\"H3588\"* my|strong=\"H3588\"* friends|strong=\"H7453\"*," + }, + { + "verseNum": 22, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3808\"* persecute|strong=\"H7291\"* me|strong=\"H7291\"* as|strong=\"H3644\"* God|strong=\"H3808\"*," + }, + { + "verseNum": 23, + "text": "“Oh|strong=\"H4310\"* that|strong=\"H5414\"* my|strong=\"H5414\"* words|strong=\"H4405\"* were|strong=\"H5612\"* now|strong=\"H5414\"* written|strong=\"H3789\"*!" + }, + { + "verseNum": 24, + "text": "That with an iron|strong=\"H1270\"* pen|strong=\"H5842\"* and|strong=\"H1270\"* lead|strong=\"H5777\"*" + }, + { + "verseNum": 25, + "text": "But|strong=\"H1350\"* as|strong=\"H6965\"* for|strong=\"H5921\"* me|strong=\"H5921\"*, I|strong=\"H5921\"* know|strong=\"H3045\"* that|strong=\"H3045\"* my|strong=\"H5921\"* Redeemer|strong=\"H1350\"* lives|strong=\"H2416\"*." + }, + { + "verseNum": 26, + "text": "After my|strong=\"H1320\"* skin|strong=\"H5785\"* is|strong=\"H1320\"* destroyed|strong=\"H5362\"*," + }, + { + "verseNum": 27, + "text": "whom|strong=\"H5869\"* I|strong=\"H7200\"*, even|strong=\"H3808\"* I|strong=\"H7200\"*, will|strong=\"H5869\"* see|strong=\"H7200\"* on|strong=\"H7200\"* my|strong=\"H7200\"* side." + }, + { + "verseNum": 28, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* say|strong=\"H1697\"*, ‘How|strong=\"H4100\"* we|strong=\"H3068\"* will|strong=\"H1697\"* persecute|strong=\"H7291\"* him|strong=\"H4672\"*!’" + }, + { + "verseNum": 29, + "text": "be|strong=\"H6440\"* afraid|strong=\"H1481\"* of|strong=\"H6440\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*," + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Zophar|strong=\"H6691\"* the|strong=\"H6030\"* Naamathite|strong=\"H5284\"* answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Therefore|strong=\"H3651\"* my|strong=\"H7725\"* thoughts|strong=\"H5587\"* answer|strong=\"H7725\"* me|strong=\"H7725\"*," + }, + { + "verseNum": 3, + "text": "I|strong=\"H8085\"* have|strong=\"H6030\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* reproof|strong=\"H4148\"* which|strong=\"H7307\"* puts me|strong=\"H6030\"* to|strong=\"H8085\"* shame|strong=\"H3639\"*." + }, + { + "verseNum": 4, + "text": "Don’t you|strong=\"H5921\"* know|strong=\"H3045\"* this|strong=\"H2063\"* from|strong=\"H4480\"* old|strong=\"H5703\"* time|strong=\"H5921\"*," + }, + { + "verseNum": 5, + "text": "that|strong=\"H3588\"* the|strong=\"H3588\"* triumphing|strong=\"H7445\"* of|strong=\"H8057\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"* is|strong=\"H7563\"* short|strong=\"H7138\"*," + }, + { + "verseNum": 6, + "text": "Though his|strong=\"H5927\"* height|strong=\"H7218\"* mount|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H5927\"* heavens|strong=\"H8064\"*," + }, + { + "verseNum": 7, + "text": "yet he|strong=\"H7200\"* will perish forever|strong=\"H5331\"* like his|strong=\"H7200\"* own dung|strong=\"H1561\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3808\"* will|strong=\"H3808\"* fly|strong=\"H5774\"* away|strong=\"H5074\"* as a|strong=\"H3068\"* dream|strong=\"H2472\"*, and|strong=\"H3915\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* found|strong=\"H4672\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3254\"* eye|strong=\"H5869\"* which|strong=\"H5869\"* saw|strong=\"H7805\"* him|strong=\"H5869\"* will|strong=\"H5869\"* see|strong=\"H5869\"* him|strong=\"H5869\"* no|strong=\"H3808\"* more|strong=\"H3254\"*," + }, + { + "verseNum": 10, + "text": "His|strong=\"H7725\"* children|strong=\"H1121\"* will|strong=\"H1121\"* seek the|strong=\"H7725\"* favor|strong=\"H7521\"* of|strong=\"H1121\"* the|strong=\"H7725\"* poor|strong=\"H1800\"*." + }, + { + "verseNum": 11, + "text": "His|strong=\"H5921\"* bones|strong=\"H6106\"* are|strong=\"H6106\"* full|strong=\"H4390\"* of|strong=\"H4390\"* his|strong=\"H5921\"* youth|strong=\"H5934\"*," + }, + { + "verseNum": 12, + "text": "“Though wickedness|strong=\"H7451\"* is|strong=\"H7451\"* sweet|strong=\"H4985\"* in|strong=\"H6310\"* his|strong=\"H8478\"* mouth|strong=\"H6310\"*," + }, + { + "verseNum": 13, + "text": "though he|strong=\"H3808\"* spare|strong=\"H2550\"* it|strong=\"H5921\"*, and|strong=\"H5800\"* will|strong=\"H3808\"* not|strong=\"H3808\"* let|strong=\"H5800\"* it|strong=\"H5921\"* go|strong=\"H5800\"*," + }, + { + "verseNum": 14, + "text": "yet his|strong=\"H7130\"* food|strong=\"H3899\"* in|strong=\"H7130\"* his|strong=\"H7130\"* bowels|strong=\"H4578\"* is|strong=\"H4578\"* turned|strong=\"H2015\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3423\"* has swallowed|strong=\"H1104\"* down|strong=\"H1104\"* riches|strong=\"H2428\"*, and|strong=\"H2428\"* he|strong=\"H3423\"* will|strong=\"H2428\"* vomit|strong=\"H6958\"* them|strong=\"H3423\"* up|strong=\"H1104\"* again|strong=\"H6958\"*." + }, + { + "verseNum": 16, + "text": "He will|strong=\"H3956\"* suck|strong=\"H3243\"* cobra|strong=\"H6620\"* venom|strong=\"H7219\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H7200\"* will|strong=\"H5158\"* not|strong=\"H7200\"* look|strong=\"H7200\"* at|strong=\"H7200\"* the|strong=\"H7200\"* rivers|strong=\"H5104\"*," + }, + { + "verseNum": 18, + "text": "He|strong=\"H3808\"* will|strong=\"H3808\"* restore|strong=\"H7725\"* that|strong=\"H3808\"* for|strong=\"H2428\"* which|strong=\"H2428\"* he|strong=\"H3808\"* labored, and|strong=\"H7725\"* will|strong=\"H3808\"* not|strong=\"H3808\"* swallow|strong=\"H1104\"* it|strong=\"H7725\"* down|strong=\"H1104\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* oppressed|strong=\"H7533\"* and|strong=\"H1004\"* forsaken|strong=\"H5800\"* the|strong=\"H3588\"* poor|strong=\"H1800\"*." + }, + { + "verseNum": 20, + "text": "“Because|strong=\"H3588\"* he|strong=\"H3588\"* knew|strong=\"H3045\"* no|strong=\"H3808\"* quietness|strong=\"H7961\"* within him|strong=\"H3045\"*," + }, + { + "verseNum": 21, + "text": "There was|strong=\"H3808\"* nothing|strong=\"H3808\"* left|strong=\"H8300\"* that|strong=\"H3651\"* he|strong=\"H3651\"* didn’t devour," + }, + { + "verseNum": 22, + "text": "In|strong=\"H3027\"* the|strong=\"H3605\"* fullness|strong=\"H4390\"* of|strong=\"H3027\"* his|strong=\"H3605\"* sufficiency|strong=\"H5607\"*, distress|strong=\"H3027\"* will|strong=\"H3027\"* overtake him|strong=\"H3027\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"H1961\"* he|strong=\"H5921\"* is|strong=\"H1961\"* about|strong=\"H1961\"* to|strong=\"H7971\"* fill|strong=\"H4390\"* his|strong=\"H7971\"* belly, God|strong=\"H7971\"* will|strong=\"H1961\"* cast|strong=\"H7971\"* the|strong=\"H5921\"* fierceness|strong=\"H2740\"* of|strong=\"H4390\"* his|strong=\"H7971\"* wrath|strong=\"H2740\"* on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 24, + "text": "He will|strong=\"H7198\"* flee|strong=\"H1272\"* from|strong=\"H1272\"* the|strong=\"H1272\"* iron|strong=\"H1270\"* weapon|strong=\"H5402\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H5921\"* draws it|strong=\"H5921\"* out|strong=\"H3318\"*, and|strong=\"H1980\"* it|strong=\"H5921\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H5921\"* his|strong=\"H5921\"* body|strong=\"H1465\"*." + }, + { + "verseNum": 26, + "text": "All|strong=\"H3605\"* darkness|strong=\"H2822\"* is|strong=\"H3605\"* laid|strong=\"H2934\"* up|strong=\"H6845\"* for|strong=\"H3605\"* his|strong=\"H3605\"* treasures|strong=\"H6845\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H6965\"* heavens|strong=\"H8064\"* will|strong=\"H8064\"* reveal|strong=\"H1540\"* his|strong=\"H1540\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H3117\"* increase|strong=\"H2981\"* of|strong=\"H1004\"* his|strong=\"H1540\"* house|strong=\"H1004\"* will|strong=\"H1004\"* depart|strong=\"H1540\"*." + }, + { + "verseNum": 29, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H2088\"* portion|strong=\"H2506\"* of|strong=\"H5159\"* a|strong=\"H3068\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* from|strong=\"H2506\"* God," + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Job answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Listen|strong=\"H8085\"* diligently|strong=\"H8085\"* to|strong=\"H1961\"* my|strong=\"H8085\"* speech|strong=\"H4405\"*." + }, + { + "verseNum": 3, + "text": "Allow me|strong=\"H1696\"*, and|strong=\"H1696\"* I also will speak|strong=\"H1696\"*." + }, + { + "verseNum": 4, + "text": "As for|strong=\"H3808\"* me|strong=\"H3808\"*, is|strong=\"H7307\"* my|strong=\"H3808\"* complaint|strong=\"H7879\"* to|strong=\"H7307\"* man?" + }, + { + "verseNum": 5, + "text": "Look|strong=\"H6437\"* at|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H3027\"* be|strong=\"H3027\"* astonished|strong=\"H8074\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"H2142\"* I|strong=\"H2142\"* remember|strong=\"H2142\"*, I|strong=\"H2142\"* am troubled." + }, + { + "verseNum": 7, + "text": "“Why|strong=\"H4069\"* do the|strong=\"H1571\"* wicked|strong=\"H7563\"* live|strong=\"H2421\"*," + }, + { + "verseNum": 8, + "text": "Their|strong=\"H6440\"* child|strong=\"H2233\"* is|strong=\"H6440\"* established|strong=\"H3559\"* with|strong=\"H5973\"* them|strong=\"H6440\"* in|strong=\"H6440\"* their|strong=\"H6440\"* sight|strong=\"H5869\"*," + }, + { + "verseNum": 9, + "text": "Their|strong=\"H5921\"* houses|strong=\"H1004\"* are|strong=\"H1004\"* safe|strong=\"H7965\"* from|strong=\"H5921\"* fear|strong=\"H6343\"*," + }, + { + "verseNum": 10, + "text": "Their|strong=\"H3808\"* bulls|strong=\"H7794\"* breed|strong=\"H1602\"* without|strong=\"H3808\"* fail|strong=\"H5674\"*." + }, + { + "verseNum": 11, + "text": "They send|strong=\"H7971\"* out|strong=\"H7971\"* their|strong=\"H7971\"* little|strong=\"H5759\"* ones|strong=\"H3206\"* like|strong=\"H7540\"* a|strong=\"H3068\"* flock|strong=\"H6629\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H5375\"* sing|strong=\"H5375\"* to|strong=\"H5375\"* the|strong=\"H5375\"* tambourine|strong=\"H8596\"* and|strong=\"H6963\"* harp|strong=\"H3658\"*," + }, + { + "verseNum": 13, + "text": "They|strong=\"H3117\"* spend|strong=\"H1086\"* their|strong=\"H3117\"* days|strong=\"H3117\"* in|strong=\"H3117\"* prosperity|strong=\"H2896\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3808\"* tell God|strong=\"H3808\"*, ‘Depart|strong=\"H5493\"* from|strong=\"H4480\"* us|strong=\"H4480\"*," + }, + { + "verseNum": 15, + "text": "What|strong=\"H4100\"* is|strong=\"H4100\"* the|strong=\"H3588\"* Almighty|strong=\"H7706\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* should|strong=\"H4100\"* serve|strong=\"H5647\"* him|strong=\"H5647\"*?" + }, + { + "verseNum": 16, + "text": "Behold|strong=\"H2005\"*, their|strong=\"H3808\"* prosperity|strong=\"H2898\"* is|strong=\"H3027\"* not|strong=\"H3808\"* in|strong=\"H3027\"* their|strong=\"H3808\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 17, + "text": "“How|strong=\"H4100\"* often|strong=\"H4100\"* is|strong=\"H4100\"* it|strong=\"H5921\"* that|strong=\"H7563\"* the|strong=\"H5921\"* lamp|strong=\"H5216\"* of|strong=\"H5921\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* is|strong=\"H4100\"* put|strong=\"H1846\"* out|strong=\"H1846\"*," + }, + { + "verseNum": 18, + "text": "How often is|strong=\"H7307\"* it|strong=\"H6440\"* that|strong=\"H1961\"* they|strong=\"H6440\"* are|strong=\"H1961\"* as|strong=\"H1961\"* stubble|strong=\"H8401\"* before|strong=\"H6440\"* the|strong=\"H6440\"* wind|strong=\"H7307\"*," + }, + { + "verseNum": 19, + "text": "You|strong=\"H3045\"* say, ‘God|strong=\"H7999\"* lays up|strong=\"H6845\"* his|strong=\"H3045\"* iniquity for|strong=\"H1121\"* his|strong=\"H3045\"* children|strong=\"H1121\"*.’" + }, + { + "verseNum": 20, + "text": "Let his|strong=\"H7200\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"* see|strong=\"H7200\"* his|strong=\"H7200\"* destruction|strong=\"H3589\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* what|strong=\"H4100\"* does|strong=\"H4100\"* he|strong=\"H3588\"* care|strong=\"H2656\"* for|strong=\"H3588\"* his|strong=\"H3588\"* house|strong=\"H1004\"* after|strong=\"H3588\"* him|strong=\"H3588\"*," + }, + { + "verseNum": 22, + "text": "“Shall|strong=\"H1931\"* any teach|strong=\"H3925\"* God knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 23, + "text": "One|strong=\"H2088\"* dies|strong=\"H4191\"* in|strong=\"H4191\"* his|strong=\"H3605\"* full|strong=\"H3605\"* strength|strong=\"H6106\"*," + }, + { + "verseNum": 24, + "text": "His|strong=\"H4390\"* pails are|strong=\"H6106\"* full|strong=\"H4390\"* of|strong=\"H4390\"* milk|strong=\"H2461\"*." + }, + { + "verseNum": 25, + "text": "Another|strong=\"H2088\"* dies|strong=\"H4191\"* in|strong=\"H4191\"* bitterness|strong=\"H4751\"* of|strong=\"H5315\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 26, + "text": "They|strong=\"H5921\"* lie|strong=\"H7901\"* down|strong=\"H7901\"* alike|strong=\"H3162\"* in|strong=\"H5921\"* the|strong=\"H5921\"* dust|strong=\"H6083\"*." + }, + { + "verseNum": 27, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H2005\"* know|strong=\"H3045\"* your|strong=\"H5921\"* thoughts|strong=\"H4284\"*," + }, + { + "verseNum": 28, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* say, ‘Where|strong=\"H1004\"* is|strong=\"H7563\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H3588\"* prince|strong=\"H5081\"*?" + }, + { + "verseNum": 29, + "text": "Haven’t you|strong=\"H3808\"* asked|strong=\"H7592\"* wayfaring|strong=\"H5674\"* men?" + }, + { + "verseNum": 30, + "text": "that|strong=\"H3588\"* the|strong=\"H3588\"* evil|strong=\"H7451\"* man|strong=\"H7451\"* is|strong=\"H3117\"* reserved|strong=\"H2820\"* to|strong=\"H3117\"* the|strong=\"H3588\"* day|strong=\"H3117\"* of|strong=\"H3117\"* calamity|strong=\"H7451\"*," + }, + { + "verseNum": 31, + "text": "Who|strong=\"H4310\"* will|strong=\"H4310\"* declare|strong=\"H5046\"* his|strong=\"H6440\"* way|strong=\"H1870\"* to|strong=\"H6213\"* his|strong=\"H6440\"* face|strong=\"H6440\"*?" + }, + { + "verseNum": 32, + "text": "Yet|strong=\"H5921\"* he|strong=\"H1931\"* will|strong=\"H1931\"* be|strong=\"H1931\"* borne to|strong=\"H5921\"* the|strong=\"H5921\"* grave|strong=\"H6913\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H3605\"* clods|strong=\"H7263\"* of|strong=\"H6440\"* the|strong=\"H3605\"* valley|strong=\"H5158\"* will|strong=\"H5158\"* be|strong=\"H6440\"* sweet|strong=\"H4985\"* to|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 34, + "text": "So how can you|strong=\"H7604\"* comfort|strong=\"H5162\"* me|strong=\"H5162\"* with nonsense," + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Eliphaz the|strong=\"H6030\"* Temanite|strong=\"H8489\"* answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Can|strong=\"H1397\"* a|strong=\"H3068\"* man|strong=\"H1397\"* be|strong=\"H1397\"* profitable|strong=\"H5532\"* to|strong=\"H5921\"* God?" + }, + { + "verseNum": 3, + "text": "Is|strong=\"H1870\"* it|strong=\"H3588\"* any|strong=\"H3588\"* pleasure|strong=\"H2656\"* to|strong=\"H1870\"* the|strong=\"H3588\"* Almighty|strong=\"H7706\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1870\"* righteous|strong=\"H6663\"*?" + }, + { + "verseNum": 4, + "text": "Is|strong=\"H4941\"* it|strong=\"H4941\"* for|strong=\"H4941\"* your|strong=\"H5973\"* piety|strong=\"H3374\"* that he reproves|strong=\"H3198\"* you|strong=\"H5973\"*," + }, + { + "verseNum": 5, + "text": "Isn’t your|strong=\"H3808\"* wickedness|strong=\"H7451\"* great|strong=\"H7227\"*?" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* taken|strong=\"H2254\"* pledges|strong=\"H2254\"* from your|strong=\"H3588\"* brother for|strong=\"H3588\"* nothing|strong=\"H2600\"*," + }, + { + "verseNum": 7, + "text": "You|strong=\"H3808\"* haven’t given|strong=\"H8248\"* water|strong=\"H4325\"* to|strong=\"H4325\"* the|strong=\"H8248\"* weary|strong=\"H5889\"* to|strong=\"H4325\"* drink|strong=\"H8248\"*," + }, + { + "verseNum": 8, + "text": "But as|strong=\"H6440\"* for|strong=\"H6440\"* the|strong=\"H6440\"* mighty|strong=\"H2220\"* man|strong=\"H5375\"*, he|strong=\"H6440\"* had|strong=\"H3427\"* the|strong=\"H6440\"* earth." + }, + { + "verseNum": 9, + "text": "You|strong=\"H7971\"* have|strong=\"H2220\"* sent|strong=\"H7971\"* widows away|strong=\"H7971\"* empty|strong=\"H7387\"*," + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H3651\"* snares|strong=\"H6341\"* are|strong=\"H6341\"* around|strong=\"H5439\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 11, + "text": "or|strong=\"H3808\"* darkness|strong=\"H2822\"*, so|strong=\"H3808\"* that|strong=\"H7200\"* you|strong=\"H3808\"* can|strong=\"H7200\"* not|strong=\"H3808\"* see|strong=\"H7200\"*," + }, + { + "verseNum": 12, + "text": "“Isn’t God|strong=\"H3808\"* in|strong=\"H8064\"* the|strong=\"H7200\"* heights|strong=\"H7311\"* of|strong=\"H7218\"* heaven|strong=\"H8064\"*?" + }, + { + "verseNum": 13, + "text": "You|strong=\"H3045\"* say, ‘What|strong=\"H4100\"* does|strong=\"H4100\"* God know|strong=\"H3045\"*?" + }, + { + "verseNum": 14, + "text": "Thick|strong=\"H5645\"* clouds|strong=\"H5645\"* are|strong=\"H8064\"* a|strong=\"H3068\"* covering|strong=\"H5643\"* to|strong=\"H1980\"* him|strong=\"H7200\"*, so|strong=\"H1980\"* that|strong=\"H7200\"* he|strong=\"H3808\"* doesn’t see|strong=\"H7200\"*." + }, + { + "verseNum": 15, + "text": "Will|strong=\"H4962\"* you|strong=\"H8104\"* keep|strong=\"H8104\"* the|strong=\"H8104\"* old|strong=\"H5769\"* way," + }, + { + "verseNum": 16, + "text": "who|strong=\"H3808\"* were|strong=\"H3247\"* snatched|strong=\"H7059\"* away|strong=\"H3332\"* before|strong=\"H3808\"* their|strong=\"H3808\"* time|strong=\"H6256\"*," + }, + { + "verseNum": 17, + "text": "who|strong=\"H4100\"* said to|strong=\"H4480\"* God, ‘Depart|strong=\"H5493\"* from|strong=\"H4480\"* us|strong=\"H4480\"*!’" + }, + { + "verseNum": 18, + "text": "Yet he|strong=\"H1931\"* filled|strong=\"H4390\"* their|strong=\"H4390\"* houses|strong=\"H1004\"* with|strong=\"H4390\"* good|strong=\"H2896\"* things|strong=\"H2896\"*," + }, + { + "verseNum": 19, + "text": "The|strong=\"H7200\"* righteous|strong=\"H6662\"* see|strong=\"H7200\"* it|strong=\"H7200\"*, and|strong=\"H7200\"* are|strong=\"H6662\"* glad|strong=\"H8055\"*." + }, + { + "verseNum": 20, + "text": "saying, ‘Surely|strong=\"H3808\"* those who|strong=\"H3808\"* rose up against us are|strong=\"H7009\"* cut|strong=\"H3582\"* off|strong=\"H3582\"*." + }, + { + "verseNum": 21, + "text": "“Acquaint|strong=\"H5532\"* yourself|strong=\"H5973\"* with|strong=\"H5973\"* him|strong=\"H5973\"* now|strong=\"H4994\"*, and|strong=\"H2896\"* be|strong=\"H4994\"* at|strong=\"H5973\"* peace|strong=\"H7999\"*." + }, + { + "verseNum": 22, + "text": "Please|strong=\"H4994\"* receive|strong=\"H3947\"* instruction|strong=\"H8451\"* from|strong=\"H3947\"* his|strong=\"H7760\"* mouth|strong=\"H6310\"*," + }, + { + "verseNum": 23, + "text": "If you|strong=\"H5704\"* return|strong=\"H7725\"* to|strong=\"H5704\"* the|strong=\"H7725\"* Almighty|strong=\"H7706\"*, you|strong=\"H5704\"* will|strong=\"H5704\"* be|strong=\"H7725\"* built|strong=\"H1129\"* up|strong=\"H1129\"*," + }, + { + "verseNum": 24, + "text": "Lay|strong=\"H7896\"* your|strong=\"H5921\"* treasure in|strong=\"H5921\"* the|strong=\"H5921\"* dust|strong=\"H6083\"*," + }, + { + "verseNum": 25, + "text": "The|strong=\"H1961\"* Almighty|strong=\"H7706\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H1961\"* treasure," + }, + { + "verseNum": 26, + "text": "For|strong=\"H3588\"* then|strong=\"H5375\"* you|strong=\"H3588\"* will|strong=\"H3588\"* delight|strong=\"H6026\"* yourself|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H6440\"* Almighty|strong=\"H7706\"*," + }, + { + "verseNum": 27, + "text": "You|strong=\"H7999\"* will|strong=\"H8085\"* make|strong=\"H7999\"* your|strong=\"H8085\"* prayer|strong=\"H6279\"* to|strong=\"H8085\"* him|strong=\"H8085\"*, and|strong=\"H8085\"* he will|strong=\"H8085\"* hear|strong=\"H8085\"* you|strong=\"H7999\"*." + }, + { + "verseNum": 28, + "text": "You|strong=\"H5921\"* will|strong=\"H1870\"* also decree|strong=\"H1504\"* a|strong=\"H3068\"* thing, and|strong=\"H6965\"* it|strong=\"H5921\"* will|strong=\"H1870\"* be|strong=\"H1870\"* established|strong=\"H6965\"* to|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* cast|strong=\"H8213\"* down|strong=\"H8213\"*, you|strong=\"H3588\"* will|strong=\"H5869\"* say, ‘be|strong=\"H5869\"* lifted up|strong=\"H1466\"*.’" + }, + { + "verseNum": 30, + "text": "He|strong=\"H3709\"* will|strong=\"H5355\"* even deliver|strong=\"H4422\"* him|strong=\"H4422\"* who is|strong=\"H3709\"* not innocent|strong=\"H5355\"*." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Job answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Even|strong=\"H1571\"* today|strong=\"H3117\"* my|strong=\"H5921\"* complaint|strong=\"H7879\"* is|strong=\"H3117\"* rebellious|strong=\"H4805\"*." + }, + { + "verseNum": 3, + "text": "Oh|strong=\"H4310\"* that|strong=\"H3045\"* I|strong=\"H5414\"* knew|strong=\"H3045\"* where I|strong=\"H5414\"* might find|strong=\"H4672\"* him|strong=\"H5414\"*!" + }, + { + "verseNum": 4, + "text": "I|strong=\"H6440\"* would set|strong=\"H4390\"* my|strong=\"H6440\"* cause|strong=\"H4941\"* in|strong=\"H6440\"* order|strong=\"H6186\"* before|strong=\"H6440\"* him|strong=\"H6440\"*," + }, + { + "verseNum": 5, + "text": "I|strong=\"H3045\"* would|strong=\"H4100\"* know|strong=\"H3045\"* the|strong=\"H3045\"* words|strong=\"H4405\"* which|strong=\"H4100\"* he|strong=\"H4100\"* would|strong=\"H4100\"* answer|strong=\"H6030\"* me|strong=\"H6030\"*," + }, + { + "verseNum": 6, + "text": "Would|strong=\"H5978\"* he|strong=\"H1931\"* contend|strong=\"H7378\"* with|strong=\"H7378\"* me|strong=\"H5978\"* in|strong=\"H7227\"* the|strong=\"H7760\"* greatness of|strong=\"H7227\"* his|strong=\"H7760\"* power|strong=\"H3581\"*?" + }, + { + "verseNum": 7, + "text": "There|strong=\"H8033\"* the|strong=\"H8199\"* upright|strong=\"H3477\"* might|strong=\"H3477\"* reason|strong=\"H3198\"* with|strong=\"H5973\"* him|strong=\"H5973\"*," + }, + { + "verseNum": 8, + "text": "“If|strong=\"H2005\"* I|strong=\"H2005\"* go|strong=\"H1980\"* east|strong=\"H6924\"*, he|strong=\"H3808\"* is|strong=\"H3808\"* not|strong=\"H3808\"* there|strong=\"H6924\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H6213\"* works|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H7200\"* north|strong=\"H8040\"*, but|strong=\"H3808\"* I|strong=\"H7200\"* can|strong=\"H6213\"*’t see|strong=\"H7200\"* him|strong=\"H6213\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"H3588\"* he|strong=\"H3588\"* knows|strong=\"H3045\"* the|strong=\"H3588\"* way|strong=\"H1870\"* that|strong=\"H3588\"* I|strong=\"H3588\"* take|strong=\"H3318\"*." + }, + { + "verseNum": 11, + "text": "My|strong=\"H8104\"* foot|strong=\"H7272\"* has|strong=\"H7272\"* held|strong=\"H5186\"* fast to|strong=\"H8104\"* his|strong=\"H8104\"* steps|strong=\"H7272\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H3808\"* haven’t gone|strong=\"H3808\"* back|strong=\"H4185\"* from|strong=\"H4185\"* the|strong=\"H3808\"* commandment|strong=\"H4687\"* of|strong=\"H6310\"* his|strong=\"H3808\"* lips|strong=\"H8193\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"H1931\"* he|strong=\"H1931\"* stands alone|strong=\"H1931\"*, and|strong=\"H7725\"* who|strong=\"H4310\"* can|strong=\"H4310\"* oppose him|strong=\"H7725\"*?" + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* performs|strong=\"H7999\"* that|strong=\"H3588\"* which|strong=\"H2706\"* is|strong=\"H2706\"* appointed|strong=\"H2706\"* for|strong=\"H3588\"* me|strong=\"H5973\"*." + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* am terrified|strong=\"H6342\"* at|strong=\"H5921\"* his|strong=\"H6440\"* presence|strong=\"H6440\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3820\"* God has|strong=\"H3820\"* made my|strong=\"H3820\"* heart|strong=\"H3820\"* faint|strong=\"H7401\"*." + }, + { + "verseNum": 17, + "text": "Because|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H6440\"* not|strong=\"H3808\"* cut|strong=\"H6789\"* off|strong=\"H6789\"* before|strong=\"H6440\"* the|strong=\"H6440\"* darkness|strong=\"H2822\"*," + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "“Why|strong=\"H4069\"* aren’t times|strong=\"H6256\"* laid up|strong=\"H6845\"* by|strong=\"H3117\"* the|strong=\"H3117\"* Almighty|strong=\"H7706\"*?" + }, + { + "verseNum": 2, + "text": "There are|strong=\"H7462\"* people who|strong=\"H7462\"* remove|strong=\"H5381\"* the|strong=\"H7462\"* landmarks|strong=\"H1367\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H2254\"* drive|strong=\"H5090\"* away|strong=\"H5090\"* the|strong=\"H5090\"* donkey|strong=\"H2543\"* of|strong=\"H2543\"* the|strong=\"H5090\"* fatherless|strong=\"H3490\"*," + }, + { + "verseNum": 4, + "text": "They|strong=\"H3162\"* turn|strong=\"H5186\"* the|strong=\"H1870\"* needy out|strong=\"H5186\"* of|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 5, + "text": "Behold|strong=\"H2005\"*, as|strong=\"H3318\"* wild|strong=\"H6501\"* donkeys|strong=\"H6501\"* in|strong=\"H3899\"* the|strong=\"H3318\"* desert|strong=\"H6160\"*," + }, + { + "verseNum": 6, + "text": "They cut their|strong=\"H7114\"* food in|strong=\"H7114\"* the|strong=\"H7114\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3830\"* lie|strong=\"H3885\"* all|strong=\"H3885\"* night|strong=\"H3885\"* naked|strong=\"H6174\"* without|strong=\"H1097\"* clothing|strong=\"H3830\"*," + }, + { + "verseNum": 8, + "text": "They are|strong=\"H2022\"* wet|strong=\"H7372\"* with|strong=\"H2022\"* the|strong=\"H2022\"* showers|strong=\"H2230\"* of|strong=\"H2022\"* the|strong=\"H2022\"* mountains|strong=\"H2022\"*," + }, + { + "verseNum": 9, + "text": "There are|strong=\"H7699\"* those who|strong=\"H6041\"* pluck|strong=\"H1497\"* the|strong=\"H1497\"* fatherless|strong=\"H3490\"* from the|strong=\"H1497\"* breast|strong=\"H7699\"*," + }, + { + "verseNum": 10, + "text": "so|strong=\"H1980\"* that|strong=\"H1097\"* they|strong=\"H5375\"* go|strong=\"H1980\"* around|strong=\"H1980\"* naked|strong=\"H6174\"* without|strong=\"H1097\"* clothing|strong=\"H3830\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H7791\"* make oil|strong=\"H6671\"* within the|strong=\"H1869\"* walls|strong=\"H7791\"* of|strong=\"H1869\"* these men." + }, + { + "verseNum": 12, + "text": "From|strong=\"H5315\"* out|strong=\"H7768\"* of|strong=\"H5892\"* the|strong=\"H7760\"* populous city|strong=\"H5892\"*, men|strong=\"H4962\"* groan|strong=\"H5008\"*." + }, + { + "verseNum": 13, + "text": "“These|strong=\"H1992\"* are|strong=\"H1992\"* of|strong=\"H3427\"* those|strong=\"H1992\"* who|strong=\"H3427\"* rebel|strong=\"H4775\"* against|strong=\"H4775\"* the|strong=\"H1870\"* light." + }, + { + "verseNum": 14, + "text": "The|strong=\"H6965\"* murderer|strong=\"H7523\"* rises|strong=\"H6965\"* with|strong=\"H6041\"* the|strong=\"H6965\"* light." + }, + { + "verseNum": 15, + "text": "The|strong=\"H6440\"* eye|strong=\"H5869\"* also|strong=\"H5869\"* of|strong=\"H6440\"* the|strong=\"H6440\"* adulterer|strong=\"H5003\"* waits|strong=\"H8104\"* for|strong=\"H6440\"* the|strong=\"H6440\"* twilight|strong=\"H5399\"*," + }, + { + "verseNum": 16, + "text": "In|strong=\"H1004\"* the|strong=\"H3045\"* dark|strong=\"H2822\"* they|strong=\"H3808\"* dig|strong=\"H2864\"* through|strong=\"H2864\"* houses|strong=\"H1004\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* morning|strong=\"H1242\"* is|strong=\"H1242\"* to|strong=\"H1242\"* all|strong=\"H3162\"* of|strong=\"H6757\"* them|strong=\"H3588\"* like|strong=\"H3162\"* thick|strong=\"H6757\"* darkness|strong=\"H6757\"*," + }, + { + "verseNum": 18, + "text": "“They|strong=\"H3808\"* are|strong=\"H1870\"* foam|strong=\"H7031\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 19, + "text": "Drought|strong=\"H6723\"* and|strong=\"H4325\"* heat|strong=\"H2527\"* consume|strong=\"H1497\"* the|strong=\"H1571\"* snow|strong=\"H7950\"* waters|strong=\"H4325\"*," + }, + { + "verseNum": 20, + "text": "The|strong=\"H7665\"* womb|strong=\"H7358\"* will|strong=\"H3808\"* forget|strong=\"H7911\"* him|strong=\"H2142\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H3808\"* devours the|strong=\"H3205\"* barren|strong=\"H6135\"* who|strong=\"H7462\"* don’t bear|strong=\"H3205\"*." + }, + { + "verseNum": 22, + "text": "Yet|strong=\"H3808\"* God|strong=\"H3808\"* preserves the|strong=\"H6965\"* mighty|strong=\"H3581\"* by|strong=\"H6965\"* his|strong=\"H6965\"* power|strong=\"H3581\"*." + }, + { + "verseNum": 23, + "text": "God|strong=\"H5414\"* gives|strong=\"H5414\"* them|strong=\"H5414\"* security, and|strong=\"H5869\"* they|strong=\"H5921\"* rest|strong=\"H8172\"* in|strong=\"H5921\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H3605\"* are|strong=\"H7641\"* exalted|strong=\"H7426\"*; yet|strong=\"H3605\"* a|strong=\"H3068\"* little|strong=\"H4592\"* while|strong=\"H4592\"*, and|strong=\"H7218\"* they|strong=\"H3605\"* are|strong=\"H7641\"* gone." + }, + { + "verseNum": 25, + "text": "If|strong=\"H7760\"* it|strong=\"H7760\"* isn’t so|strong=\"H3808\"* now|strong=\"H7760\"*, who|strong=\"H4310\"* will|strong=\"H4310\"* prove|strong=\"H3576\"* me|strong=\"H7760\"* a|strong=\"H3068\"* liar|strong=\"H3576\"*," + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Bildad|strong=\"H1085\"* the|strong=\"H6030\"* Shuhite|strong=\"H7747\"* answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Dominion|strong=\"H4910\"* and|strong=\"H6213\"* fear|strong=\"H6343\"* are|strong=\"H6213\"* with|strong=\"H5973\"* him|strong=\"H6213\"*." + }, + { + "verseNum": 3, + "text": "Can|strong=\"H4310\"* his|strong=\"H5921\"* armies|strong=\"H3808\"* be|strong=\"H3426\"* counted|strong=\"H4557\"*?" + }, + { + "verseNum": 4, + "text": "How|strong=\"H4100\"* then|strong=\"H4100\"* can|strong=\"H4100\"* man be just|strong=\"H6663\"* with|strong=\"H5973\"* God?" + }, + { + "verseNum": 5, + "text": "Behold|strong=\"H2005\"*, even|strong=\"H5704\"* the|strong=\"H5704\"* moon|strong=\"H3394\"* has|strong=\"H5869\"* no|strong=\"H3808\"* brightness," + }, + { + "verseNum": 6, + "text": "How|strong=\"H3588\"* much less|strong=\"H3588\"* man|strong=\"H1121\"*, who|strong=\"H1121\"* is|strong=\"H1121\"* a|strong=\"H3068\"* worm|strong=\"H7415\"*," + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Job answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“How|strong=\"H4100\"* have|strong=\"H3808\"* you|strong=\"H3808\"* helped|strong=\"H5826\"* him|strong=\"H5826\"* who|strong=\"H4100\"* is|strong=\"H4100\"* without|strong=\"H3808\"* power|strong=\"H3581\"*!" + }, + { + "verseNum": 3, + "text": "How|strong=\"H4100\"* have|strong=\"H3045\"* you|strong=\"H3045\"* counseled|strong=\"H3289\"* him|strong=\"H3045\"* who|strong=\"H3045\"* has|strong=\"H4100\"* no|strong=\"H3808\"* wisdom|strong=\"H2451\"*," + }, + { + "verseNum": 4, + "text": "To|strong=\"H3318\"* whom|strong=\"H4310\"* have|strong=\"H4405\"* you|strong=\"H5046\"* uttered|strong=\"H5046\"* words|strong=\"H4405\"*?" + }, + { + "verseNum": 5, + "text": "“The|strong=\"H8478\"* departed|strong=\"H7496\"* spirits|strong=\"H7496\"* tremble|strong=\"H2342\"*," + }, + { + "verseNum": 6, + "text": "Sheol|strong=\"H7585\"*+ 26:6 Sheol is the place of the dead.* is|strong=\"H6174\"* naked|strong=\"H6174\"* before|strong=\"H5048\"* God," + }, + { + "verseNum": 7, + "text": "He|strong=\"H5921\"* stretches|strong=\"H5186\"* out|strong=\"H5186\"* the|strong=\"H5921\"* north|strong=\"H6828\"* over|strong=\"H5921\"* empty|strong=\"H8414\"* space|strong=\"H8414\"*," + }, + { + "verseNum": 8, + "text": "He|strong=\"H3808\"* binds|strong=\"H6887\"* up|strong=\"H1234\"* the|strong=\"H8478\"* waters|strong=\"H4325\"* in|strong=\"H3808\"* his|strong=\"H8478\"* thick|strong=\"H5645\"* clouds|strong=\"H5645\"*," + }, + { + "verseNum": 9, + "text": "He|strong=\"H5921\"* encloses the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* his|strong=\"H6440\"* throne|strong=\"H3678\"*," + }, + { + "verseNum": 10, + "text": "He|strong=\"H5704\"* has|strong=\"H5973\"* described a|strong=\"H3068\"* boundary|strong=\"H2706\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* waters|strong=\"H4325\"*," + }, + { + "verseNum": 11, + "text": "The|strong=\"H8064\"* pillars|strong=\"H5982\"* of|strong=\"H5982\"* heaven|strong=\"H8064\"* tremble|strong=\"H7322\"*" + }, + { + "verseNum": 12, + "text": "He|strong=\"H8394\"* stirs|strong=\"H7280\"* up|strong=\"H3220\"* the|strong=\"H4272\"* sea|strong=\"H3220\"* with|strong=\"H3220\"* his|strong=\"H3220\"* power|strong=\"H3581\"*," + }, + { + "verseNum": 13, + "text": "By|strong=\"H3027\"* his|strong=\"H3027\"* Spirit|strong=\"H7307\"* the|strong=\"H3027\"* heavens|strong=\"H8064\"* are|strong=\"H3027\"* garnished|strong=\"H8235\"*." + }, + { + "verseNum": 14, + "text": "Behold|strong=\"H2005\"*, these|strong=\"H8085\"* are|strong=\"H4100\"* but|strong=\"H8085\"* the|strong=\"H8085\"* outskirts of|strong=\"H1697\"* his|strong=\"H8085\"* ways|strong=\"H1870\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Job again|strong=\"H3254\"* took|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* parable|strong=\"H4912\"*, and|strong=\"H3254\"* said," + }, + { + "verseNum": 2, + "text": "“As|strong=\"H5315\"* God lives|strong=\"H5315\"*, who|strong=\"H5315\"* has|strong=\"H5315\"* taken|strong=\"H5493\"* away|strong=\"H5493\"* my|strong=\"H5493\"* right|strong=\"H4941\"*," + }, + { + "verseNum": 3, + "text": "(for|strong=\"H3588\"* the|strong=\"H3605\"* length of|strong=\"H7307\"* my|strong=\"H3605\"* life|strong=\"H5750\"* is|strong=\"H3605\"* still|strong=\"H5750\"* in|strong=\"H5750\"* me|strong=\"H3588\"*," + }, + { + "verseNum": 4, + "text": "surely my|strong=\"H1696\"* lips|strong=\"H8193\"* will|strong=\"H3956\"* not|strong=\"H1696\"* speak|strong=\"H1696\"* unrighteousness|strong=\"H5766\"*," + }, + { + "verseNum": 5, + "text": "Far|strong=\"H5704\"* be|strong=\"H3808\"* it|strong=\"H2486\"* from|strong=\"H4480\"* me|strong=\"H4480\"* that|strong=\"H4480\"* I|strong=\"H5704\"* should justify|strong=\"H6663\"* you|strong=\"H5704\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H3117\"* hold|strong=\"H2388\"* fast|strong=\"H2388\"* to|strong=\"H3117\"* my|strong=\"H2388\"* righteousness|strong=\"H6666\"*, and|strong=\"H3117\"* will|strong=\"H3808\"* not|strong=\"H3808\"* let|strong=\"H7503\"* it|strong=\"H3117\"* go|strong=\"H7503\"*." + }, + { + "verseNum": 7, + "text": "“Let|strong=\"H1961\"* my|strong=\"H6965\"* enemy be|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H6965\"* wicked|strong=\"H7563\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* what|strong=\"H4100\"* is|strong=\"H4100\"* the|strong=\"H3588\"* hope|strong=\"H8615\"* of|strong=\"H5315\"* the|strong=\"H3588\"* godless|strong=\"H2611\"*, when|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H4100\"* cut|strong=\"H1214\"* off|strong=\"H1214\"*," + }, + { + "verseNum": 9, + "text": "Will|strong=\"H8085\"* God hear|strong=\"H8085\"* his|strong=\"H8085\"* cry|strong=\"H6818\"* when|strong=\"H3588\"* trouble|strong=\"H6869\"* comes on|strong=\"H5921\"* him|strong=\"H5921\"*?" + }, + { + "verseNum": 10, + "text": "Will|strong=\"H7121\"* he|strong=\"H3605\"* delight|strong=\"H6026\"* himself|strong=\"H7121\"* in|strong=\"H5921\"* the|strong=\"H3605\"* Almighty|strong=\"H7706\"*," + }, + { + "verseNum": 11, + "text": "I|strong=\"H3808\"* will|strong=\"H3027\"* teach|strong=\"H3384\"* you|strong=\"H5973\"* about|strong=\"H3027\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 12, + "text": "Behold|strong=\"H2005\"*, all|strong=\"H3605\"* of|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H3605\"* seen|strong=\"H2372\"* it|strong=\"H2088\"* yourselves|strong=\"H3605\"*;" + }, + { + "verseNum": 13, + "text": "“This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H3947\"* portion|strong=\"H2506\"* of|strong=\"H5159\"* a|strong=\"H3068\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* with|strong=\"H5973\"* God," + }, + { + "verseNum": 14, + "text": "If|strong=\"H1121\"* his|strong=\"H3808\"* children|strong=\"H1121\"* are|strong=\"H1121\"* multiplied|strong=\"H7235\"*, it|strong=\"H3808\"* is|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H3808\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 15, + "text": "Those who|strong=\"H8300\"* remain|strong=\"H8300\"* of|strong=\"H4194\"* him|strong=\"H6912\"* will|strong=\"H3808\"* be|strong=\"H3808\"* buried|strong=\"H6912\"* in|strong=\"H6912\"* death|strong=\"H4194\"*." + }, + { + "verseNum": 16, + "text": "Though he|strong=\"H3701\"* heap|strong=\"H6651\"* up|strong=\"H6651\"* silver|strong=\"H3701\"* as|strong=\"H3701\"* the|strong=\"H3559\"* dust|strong=\"H6083\"*," + }, + { + "verseNum": 17, + "text": "he|strong=\"H3701\"* may prepare|strong=\"H3559\"* it|strong=\"H3559\"*, but|strong=\"H6662\"* the|strong=\"H3559\"* just|strong=\"H6662\"* will|strong=\"H6662\"* put|strong=\"H3847\"* it|strong=\"H3559\"* on|strong=\"H3847\"*," + }, + { + "verseNum": 18, + "text": "He|strong=\"H6213\"* builds|strong=\"H1129\"* his|strong=\"H6213\"* house|strong=\"H1004\"* as|strong=\"H6213\"* the|strong=\"H6213\"* moth|strong=\"H6211\"*," + }, + { + "verseNum": 19, + "text": "He|strong=\"H3808\"* lies|strong=\"H7901\"* down|strong=\"H7901\"* rich|strong=\"H6223\"*, but|strong=\"H3808\"* he|strong=\"H3808\"* will|strong=\"H5869\"* not|strong=\"H3808\"* do|strong=\"H5869\"* so|strong=\"H3808\"* again." + }, + { + "verseNum": 20, + "text": "Terrors|strong=\"H1091\"* overtake|strong=\"H5381\"* him|strong=\"H1589\"* like waters|strong=\"H4325\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H5375\"* east|strong=\"H6921\"* wind|strong=\"H6921\"* carries|strong=\"H5375\"* him|strong=\"H5375\"* away|strong=\"H5375\"*, and|strong=\"H3212\"* he|strong=\"H8175\"* departs." + }, + { + "verseNum": 22, + "text": "For|strong=\"H5921\"* it|strong=\"H5921\"* hurls at|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3027\"* does|strong=\"H3808\"* not|strong=\"H3808\"* spare|strong=\"H2550\"*," + }, + { + "verseNum": 23, + "text": "Men will|strong=\"H4725\"* clap|strong=\"H5606\"* their|strong=\"H5921\"* hands|strong=\"H3709\"* at|strong=\"H5921\"* him|strong=\"H5921\"*," + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "“Surely|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* mine|strong=\"H4161\"* for|strong=\"H3588\"* silver|strong=\"H3701\"*," + }, + { + "verseNum": 2, + "text": "Iron|strong=\"H1270\"* is|strong=\"H1270\"* taken|strong=\"H3947\"* out|strong=\"H3947\"* of|strong=\"H6083\"* the|strong=\"H3947\"* earth|strong=\"H6083\"*," + }, + { + "verseNum": 3, + "text": "Man|strong=\"H3605\"* sets|strong=\"H7760\"* an|strong=\"H7760\"* end|strong=\"H7093\"* to|strong=\"H7093\"* darkness|strong=\"H2822\"*," + }, + { + "verseNum": 4, + "text": "He|strong=\"H4480\"* breaks|strong=\"H6555\"* open|strong=\"H6555\"* a|strong=\"H3068\"* shaft|strong=\"H5158\"* away|strong=\"H4480\"* from|strong=\"H4480\"* where|strong=\"H4480\"* people|strong=\"H5128\"* live|strong=\"H1481\"*." + }, + { + "verseNum": 5, + "text": "As|strong=\"H3644\"* for|strong=\"H8478\"* the|strong=\"H4480\"* earth, out|strong=\"H3318\"* of|strong=\"H4480\"* it|strong=\"H2015\"* comes|strong=\"H3318\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 6, + "text": "Sapphires|strong=\"H5601\"* come from|strong=\"H2091\"* its rocks." + }, + { + "verseNum": 7, + "text": "That|strong=\"H3045\"* path|strong=\"H5410\"* no|strong=\"H3808\"* bird|strong=\"H5861\"* of|strong=\"H5869\"* prey|strong=\"H5861\"* knows|strong=\"H3045\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* proud|strong=\"H7830\"* animals have|strong=\"H1121\"* not|strong=\"H3808\"* trodden|strong=\"H1869\"* it|strong=\"H5921\"*," + }, + { + "verseNum": 9, + "text": "He|strong=\"H3027\"* puts|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"* on|strong=\"H3027\"* the|strong=\"H7971\"* flinty|strong=\"H2496\"* rock|strong=\"H2496\"*," + }, + { + "verseNum": 10, + "text": "He|strong=\"H3605\"* cuts out|strong=\"H7200\"* channels|strong=\"H2975\"* among|strong=\"H7200\"* the|strong=\"H3605\"* rocks|strong=\"H6697\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3318\"* binds|strong=\"H2280\"* the|strong=\"H3318\"* streams|strong=\"H5104\"* that|strong=\"H3318\"* they|strong=\"H3318\"* don’t trickle." + }, + { + "verseNum": 12, + "text": "“But where|strong=\"H4725\"* will|strong=\"H2088\"* wisdom|strong=\"H2451\"* be|strong=\"H2451\"* found|strong=\"H4672\"*?" + }, + { + "verseNum": 13, + "text": "Man|strong=\"H3045\"* doesn’t know|strong=\"H3045\"* its|strong=\"H3045\"* price|strong=\"H6187\"*," + }, + { + "verseNum": 14, + "text": "The|strong=\"H3808\"* deep|strong=\"H8415\"* says, ‘It|strong=\"H1931\"* isn’t in|strong=\"H3220\"* me|strong=\"H5978\"*.’" + }, + { + "verseNum": 15, + "text": "It|strong=\"H5414\"* can|strong=\"H3808\"*’t be|strong=\"H3808\"* gotten|strong=\"H5414\"* for|strong=\"H8478\"* gold|strong=\"H5458\"*," + }, + { + "verseNum": 16, + "text": "It|strong=\"H3808\"* can|strong=\"H3808\"*’t be|strong=\"H3808\"* valued|strong=\"H5541\"* with|strong=\"H5541\"* the|strong=\"H3808\"* gold|strong=\"H3800\"* of|strong=\"H3800\"* Ophir," + }, + { + "verseNum": 17, + "text": "Gold|strong=\"H2091\"* and|strong=\"H2091\"* glass|strong=\"H2137\"* can|strong=\"H3808\"*’t equal|strong=\"H6186\"* it|strong=\"H3808\"*," + }, + { + "verseNum": 18, + "text": "No|strong=\"H3808\"* mention|strong=\"H2142\"* will|strong=\"H3808\"* be|strong=\"H3808\"* made of|strong=\"H2451\"* coral|strong=\"H7215\"* or|strong=\"H3808\"* of|strong=\"H2451\"* crystal|strong=\"H1378\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H3808\"* topaz|strong=\"H6357\"* of|strong=\"H3800\"* Ethiopia|strong=\"H3568\"* will|strong=\"H3808\"* not|strong=\"H3808\"* equal|strong=\"H6186\"* it|strong=\"H3808\"*." + }, + { + "verseNum": 20, + "text": "Where|strong=\"H4725\"* then|strong=\"H2088\"* does|strong=\"H2088\"* wisdom|strong=\"H2451\"* come from|strong=\"H4725\"*?" + }, + { + "verseNum": 21, + "text": "Seeing it|strong=\"H5869\"* is|strong=\"H3605\"* hidden|strong=\"H5641\"* from|strong=\"H5869\"* the|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* all|strong=\"H3605\"* living|strong=\"H2416\"*," + }, + { + "verseNum": 22, + "text": "Destruction and|strong=\"H8085\"* Death|strong=\"H4194\"* say," + }, + { + "verseNum": 23, + "text": "“God understands|strong=\"H3045\"* its|strong=\"H3045\"* way|strong=\"H1870\"*," + }, + { + "verseNum": 24, + "text": "For|strong=\"H3588\"* he|strong=\"H1931\"* looks|strong=\"H7200\"* to|strong=\"H7200\"* the|strong=\"H3605\"* ends|strong=\"H7098\"* of|strong=\"H8478\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 25, + "text": "He|strong=\"H6213\"* establishes|strong=\"H6213\"* the|strong=\"H6213\"* force of|strong=\"H7307\"* the|strong=\"H6213\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"H6213\"* he|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* decree|strong=\"H2706\"* for|strong=\"H6213\"* the|strong=\"H6213\"* rain|strong=\"H4306\"*," + }, + { + "verseNum": 27, + "text": "then|strong=\"H1571\"* he|strong=\"H1571\"* saw|strong=\"H7200\"* it|strong=\"H7200\"*, and|strong=\"H7200\"* declared|strong=\"H5608\"* it|strong=\"H7200\"*." + }, + { + "verseNum": 28, + "text": "To|strong=\"H5493\"* man|strong=\"H7451\"* he|strong=\"H1931\"* said," + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "Job again|strong=\"H3254\"* took|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* parable|strong=\"H4912\"*, and|strong=\"H3254\"* said," + }, + { + "verseNum": 2, + "text": "“Oh|strong=\"H4310\"* that|strong=\"H3117\"* I|strong=\"H3117\"* were|strong=\"H3117\"* as|strong=\"H3117\"* in|strong=\"H3117\"* the|strong=\"H5414\"* months|strong=\"H3391\"* of|strong=\"H3117\"* old|strong=\"H6924\"*," + }, + { + "verseNum": 3, + "text": "when|strong=\"H5921\"* his|strong=\"H5921\"* lamp|strong=\"H5216\"* shone|strong=\"H1984\"* on|strong=\"H5921\"* my|strong=\"H5921\"* head|strong=\"H7218\"*," + }, + { + "verseNum": 4, + "text": "as|strong=\"H3117\"* I|strong=\"H3117\"* was|strong=\"H1961\"* in|strong=\"H5921\"* my|strong=\"H5921\"* prime|strong=\"H2779\"*," + }, + { + "verseNum": 5, + "text": "when|strong=\"H5750\"* the|strong=\"H5439\"* Almighty|strong=\"H7706\"* was|strong=\"H5288\"* yet|strong=\"H5750\"* with|strong=\"H5978\"* me|strong=\"H5978\"*," + }, + { + "verseNum": 6, + "text": "when my|strong=\"H7364\"* steps|strong=\"H1978\"* were|strong=\"H1978\"* washed|strong=\"H7364\"* with|strong=\"H7364\"* butter|strong=\"H2529\"*," + }, + { + "verseNum": 7, + "text": "when|strong=\"H3318\"* I|strong=\"H5921\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5921\"* city|strong=\"H7176\"* gate|strong=\"H8179\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H7200\"* young|strong=\"H5288\"* men|strong=\"H5288\"* saw|strong=\"H7200\"* me|strong=\"H7200\"* and|strong=\"H6965\"* hid|strong=\"H2244\"* themselves|strong=\"H2244\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H7760\"* princes|strong=\"H8269\"* refrained|strong=\"H6113\"* from|strong=\"H6113\"* talking|strong=\"H4405\"*," + }, + { + "verseNum": 10, + "text": "The|strong=\"H6963\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H6963\"* nobles|strong=\"H5057\"* was|strong=\"H6963\"* hushed|strong=\"H2244\"*," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* when|strong=\"H3588\"* the|strong=\"H8085\"* ear|strong=\"H8085\"* heard|strong=\"H8085\"* me|strong=\"H7200\"*, then|strong=\"H8085\"* it|strong=\"H3588\"* blessed me|strong=\"H7200\"*," + }, + { + "verseNum": 12, + "text": "because|strong=\"H3588\"* I|strong=\"H3588\"* delivered|strong=\"H4422\"* the|strong=\"H3588\"* poor|strong=\"H6041\"* who|strong=\"H6041\"* cried|strong=\"H7768\"*," + }, + { + "verseNum": 13, + "text": "the|strong=\"H5921\"* blessing|strong=\"H1293\"* of|strong=\"H5921\"* him|strong=\"H5921\"* who was|strong=\"H3820\"* ready to|strong=\"H5921\"* perish came on|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 14, + "text": "I put|strong=\"H3847\"* on|strong=\"H3847\"* righteousness|strong=\"H6664\"*, and|strong=\"H4941\"* it|strong=\"H4941\"* clothed|strong=\"H3847\"* me|strong=\"H4941\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H5869\"* was|strong=\"H1961\"* eyes|strong=\"H5869\"* to|strong=\"H1961\"* the|strong=\"H1961\"* blind|strong=\"H5787\"*," + }, + { + "verseNum": 16, + "text": "I|strong=\"H3045\"* was|strong=\"H3808\"* a|strong=\"H3068\"* father to|strong=\"H3045\"* the|strong=\"H3045\"* needy." + }, + { + "verseNum": 17, + "text": "I|strong=\"H7665\"* broke|strong=\"H7665\"* the|strong=\"H7665\"* jaws|strong=\"H4973\"* of|strong=\"H8127\"* the|strong=\"H7665\"* unrighteous|strong=\"H5767\"*" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H3117\"* I|strong=\"H3117\"* said, ‘I|strong=\"H3117\"* will|strong=\"H3117\"* die|strong=\"H1478\"* in|strong=\"H3117\"* my|strong=\"H7235\"* own|strong=\"H5973\"* house," + }, + { + "verseNum": 19, + "text": "My|strong=\"H6605\"* root|strong=\"H8328\"* is|strong=\"H4325\"* spread|strong=\"H6605\"* out|strong=\"H6605\"* to|strong=\"H4325\"* the|strong=\"H3885\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 20, + "text": "My|strong=\"H3027\"* glory|strong=\"H3519\"* is|strong=\"H3027\"* fresh|strong=\"H2319\"* in|strong=\"H3027\"* me|strong=\"H5978\"*." + }, + { + "verseNum": 21, + "text": "“Men listened|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H8085\"*, waited|strong=\"H3176\"*," + }, + { + "verseNum": 22, + "text": "After|strong=\"H5921\"* my|strong=\"H5921\"* words|strong=\"H1697\"* they|strong=\"H3808\"* didn’t speak|strong=\"H5197\"* again|strong=\"H8138\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H6310\"* waited|strong=\"H3176\"* for|strong=\"H3176\"* me as|strong=\"H6310\"* for|strong=\"H3176\"* the|strong=\"H6310\"* rain|strong=\"H4306\"*." + }, + { + "verseNum": 24, + "text": "I|strong=\"H3808\"* smiled|strong=\"H7832\"* on|strong=\"H5307\"* them|strong=\"H6440\"* when|strong=\"H5307\"* they|strong=\"H3808\"* had|strong=\"H3808\"* no|strong=\"H3808\"* confidence." + }, + { + "verseNum": 25, + "text": "I|strong=\"H1870\"* chose out|strong=\"H3427\"* their|strong=\"H1870\"* way|strong=\"H1870\"*, and|strong=\"H4428\"* sat|strong=\"H3427\"* as|strong=\"H3427\"* chief|strong=\"H7218\"*." + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "“But|strong=\"H6258\"* now|strong=\"H6258\"* those|strong=\"H4480\"* who are|strong=\"H3117\"* younger|strong=\"H6810\"* than|strong=\"H4480\"* I|strong=\"H3117\"* have|strong=\"H3117\"* me|strong=\"H5921\"* in|strong=\"H5921\"* derision|strong=\"H7832\"*," + }, + { + "verseNum": 2, + "text": "Of|strong=\"H3027\"* what|strong=\"H4100\"* use is|strong=\"H4100\"* the|strong=\"H5921\"* strength|strong=\"H3581\"* of|strong=\"H3027\"* their|strong=\"H5921\"* hands|strong=\"H3027\"* to|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 3, + "text": "They|strong=\"H7722\"* are gaunt|strong=\"H1565\"* from lack and|strong=\"H6723\"* famine|strong=\"H3720\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H5921\"* pluck|strong=\"H6998\"* salt herbs|strong=\"H4408\"* by|strong=\"H5921\"* the|strong=\"H5921\"* bushes|strong=\"H7880\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H5921\"* are|strong=\"H4480\"* driven|strong=\"H1644\"* out|strong=\"H1644\"* from|strong=\"H4480\"* among|strong=\"H4480\"* men." + }, + { + "verseNum": 6, + "text": "so that|strong=\"H5158\"* they live|strong=\"H7931\"* in|strong=\"H7931\"* frightful valleys|strong=\"H5158\"*," + }, + { + "verseNum": 7, + "text": "They|strong=\"H7880\"* bray|strong=\"H5101\"* among|strong=\"H8478\"* the|strong=\"H8478\"* bushes|strong=\"H7880\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H1571\"* are|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* fools|strong=\"H5036\"*, yes|strong=\"H1571\"*, children|strong=\"H1121\"* of|strong=\"H1121\"* wicked men|strong=\"H1121\"*." + }, + { + "verseNum": 9, + "text": "“Now|strong=\"H6258\"* I|strong=\"H6258\"* have|strong=\"H1961\"* become|strong=\"H1961\"* their|strong=\"H1992\"* song|strong=\"H5058\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H3808\"* abhor|strong=\"H8581\"* me|strong=\"H6440\"*, they|strong=\"H3808\"* stand|strong=\"H7368\"* aloof|strong=\"H4480\"* from|strong=\"H4480\"* me|strong=\"H6440\"*," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* untied his|strong=\"H7971\"* cord|strong=\"H3499\"*, and|strong=\"H7971\"* afflicted|strong=\"H6031\"* me|strong=\"H6440\"*;" + }, + { + "verseNum": 12, + "text": "On|strong=\"H5921\"* my|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* rise|strong=\"H6965\"* the|strong=\"H5921\"* rabble." + }, + { + "verseNum": 13, + "text": "They|strong=\"H3808\"* mar|strong=\"H5420\"* my|strong=\"H3808\"* path|strong=\"H5410\"*." + }, + { + "verseNum": 14, + "text": "As|strong=\"H8478\"* through a|strong=\"H3068\"* wide|strong=\"H7342\"* breach|strong=\"H6556\"* they|strong=\"H8478\"* come." + }, + { + "verseNum": 15, + "text": "Terrors|strong=\"H1091\"* have|strong=\"H5921\"* turned|strong=\"H2015\"* on|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "“Now|strong=\"H6258\"* my|strong=\"H5921\"* soul|strong=\"H5315\"* is|strong=\"H5315\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* within|strong=\"H5921\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 17, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* night|strong=\"H3915\"* season|strong=\"H3915\"* my|strong=\"H5921\"* bones|strong=\"H6106\"* are|strong=\"H6106\"* pierced|strong=\"H5365\"* in|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 18, + "text": "My|strong=\"H6310\"* garment|strong=\"H3830\"* is|strong=\"H6310\"* disfigured by great|strong=\"H7227\"* force|strong=\"H3581\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3384\"* has cast|strong=\"H3384\"* me into|strong=\"H6083\"* the|strong=\"H3384\"* mire|strong=\"H2563\"*." + }, + { + "verseNum": 20, + "text": "I|strong=\"H3808\"* cry|strong=\"H7768\"* to|strong=\"H6030\"* you|strong=\"H3808\"*, and|strong=\"H6030\"* you|strong=\"H3808\"* do not|strong=\"H3808\"* answer|strong=\"H6030\"* me|strong=\"H6030\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"H3027\"* have|strong=\"H3027\"* turned|strong=\"H2015\"* to|strong=\"H3027\"* be|strong=\"H3027\"* cruel to|strong=\"H3027\"* me|strong=\"H7852\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H5375\"* lift|strong=\"H5375\"* me up|strong=\"H5375\"* to|strong=\"H7307\"* the|strong=\"H5375\"* wind|strong=\"H7307\"*, and|strong=\"H7307\"* drive me with|strong=\"H5375\"* it|strong=\"H5375\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1004\"* bring|strong=\"H7725\"* me|strong=\"H7725\"* to|strong=\"H7725\"* death|strong=\"H4194\"*," + }, + { + "verseNum": 24, + "text": "“However doesn’t one|strong=\"H3808\"* stretch|strong=\"H7971\"* out|strong=\"H7971\"* a|strong=\"H3068\"* hand|strong=\"H3027\"* in|strong=\"H3027\"* his|strong=\"H7971\"* fall?" + }, + { + "verseNum": 25, + "text": "Didn’t I|strong=\"H3117\"* weep|strong=\"H1058\"* for|strong=\"H3117\"* him|strong=\"H5315\"* who|strong=\"H5315\"* was|strong=\"H3117\"* in|strong=\"H3117\"* trouble|strong=\"H7186\"*?" + }, + { + "verseNum": 26, + "text": "When|strong=\"H3588\"* I|strong=\"H3588\"* looked|strong=\"H6960\"* for|strong=\"H3588\"* good|strong=\"H2896\"*, then|strong=\"H3588\"* evil|strong=\"H7451\"* came|strong=\"H7451\"*." + }, + { + "verseNum": 27, + "text": "My|strong=\"H3808\"* heart|strong=\"H4578\"* is|strong=\"H3117\"* troubled, and|strong=\"H3117\"* doesn’t rest|strong=\"H1826\"*." + }, + { + "verseNum": 28, + "text": "I|strong=\"H3808\"* go|strong=\"H1980\"* mourning|strong=\"H6937\"* without|strong=\"H3808\"* the|strong=\"H6965\"* sun|strong=\"H2535\"*." + }, + { + "verseNum": 29, + "text": "I|strong=\"H1961\"* am|strong=\"H1961\"* a|strong=\"H3068\"* brother|strong=\"H7453\"* to|strong=\"H1961\"* jackals|strong=\"H8577\"*," + }, + { + "verseNum": 30, + "text": "My|strong=\"H5921\"* skin|strong=\"H5785\"* grows black|strong=\"H7835\"* and|strong=\"H5785\"* peels from|strong=\"H4480\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 31, + "text": "Therefore|strong=\"H1961\"* my|strong=\"H1961\"* harp|strong=\"H3658\"* has|strong=\"H1961\"* turned|strong=\"H1961\"* to|strong=\"H1961\"* mourning," + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "“I|strong=\"H5921\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* my|strong=\"H5921\"* eyes|strong=\"H5869\"*;" + }, + { + "verseNum": 2, + "text": "For|strong=\"H2506\"* what|strong=\"H4100\"* is|strong=\"H4100\"* the|strong=\"H4100\"* portion|strong=\"H2506\"* from|strong=\"H2506\"* God above|strong=\"H4605\"*," + }, + { + "verseNum": 3, + "text": "Is|strong=\"H3808\"* it|strong=\"H3808\"* not|strong=\"H3808\"* calamity to|strong=\"H3808\"* the|strong=\"H3808\"* unrighteous|strong=\"H5767\"*," + }, + { + "verseNum": 4, + "text": "Doesn’t he|strong=\"H1931\"* see|strong=\"H7200\"* my|strong=\"H3605\"* ways|strong=\"H1870\"*," + }, + { + "verseNum": 5, + "text": "“If I|strong=\"H5921\"* have|strong=\"H7272\"* walked|strong=\"H1980\"* with|strong=\"H5973\"* falsehood|strong=\"H7723\"*," + }, + { + "verseNum": 6, + "text": "(let me|strong=\"H3045\"* be weighed|strong=\"H8254\"* in|strong=\"H3045\"* an even|strong=\"H6664\"* balance|strong=\"H3976\"*," + }, + { + "verseNum": 7, + "text": "if my|strong=\"H5186\"* step has|strong=\"H3820\"* turned|strong=\"H5186\"* out|strong=\"H5186\"* of|strong=\"H1870\"* the|strong=\"H4480\"* way|strong=\"H1870\"*," + }, + { + "verseNum": 8, + "text": "then let me sow|strong=\"H2232\"*, and|strong=\"H2232\"* let another eat." + }, + { + "verseNum": 9, + "text": "“If my|strong=\"H5921\"* heart|strong=\"H3820\"* has|strong=\"H3820\"* been enticed|strong=\"H6601\"* to|strong=\"H5921\"* a|strong=\"H3068\"* woman," + }, + { + "verseNum": 10, + "text": "then let my|strong=\"H5921\"* wife grind|strong=\"H2912\"* for|strong=\"H5921\"* another," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* that|strong=\"H3588\"* would be|strong=\"H3588\"* a|strong=\"H3068\"* heinous|strong=\"H2154\"* crime|strong=\"H2154\"*." + }, + { + "verseNum": 12, + "text": "for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* fire that|strong=\"H3588\"* consumes to|strong=\"H5704\"* destruction," + }, + { + "verseNum": 13, + "text": "“If I|strong=\"H5650\"* have|strong=\"H5650\"* despised|strong=\"H3988\"* the|strong=\"H5650\"* cause|strong=\"H4941\"* of|strong=\"H5650\"* my|strong=\"H7378\"* male|strong=\"H5650\"* servant|strong=\"H5650\"*" + }, + { + "verseNum": 14, + "text": "what|strong=\"H4100\"* then|strong=\"H6965\"* will|strong=\"H4100\"* I|strong=\"H3588\"* do|strong=\"H6213\"* when|strong=\"H3588\"* God rises|strong=\"H6965\"* up|strong=\"H6965\"*?" + }, + { + "verseNum": 15, + "text": "Didn’t he|strong=\"H6213\"* who|strong=\"H6213\"* made|strong=\"H6213\"* me|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H6213\"* womb|strong=\"H7358\"* make|strong=\"H6213\"* him|strong=\"H6213\"*?" + }, + { + "verseNum": 16, + "text": "“If I|strong=\"H5869\"* have|strong=\"H5869\"* withheld|strong=\"H4513\"* the|strong=\"H3615\"* poor|strong=\"H1800\"* from|strong=\"H5869\"* their|strong=\"H3615\"* desire|strong=\"H2656\"*," + }, + { + "verseNum": 17, + "text": "or|strong=\"H3808\"* have|strong=\"H3808\"* eaten my|strong=\"H4480\"* morsel|strong=\"H6595\"* alone|strong=\"H4480\"*," + }, + { + "verseNum": 18, + "text": "(no, from my|strong=\"H3588\"* youth|strong=\"H5271\"* he|strong=\"H3588\"* grew|strong=\"H1431\"* up|strong=\"H1431\"* with|strong=\"H3588\"* me|strong=\"H5148\"* as|strong=\"H3588\"* with|strong=\"H3588\"* a|strong=\"H3068\"* father," + }, + { + "verseNum": 19, + "text": "if|strong=\"H7200\"* I|strong=\"H7200\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* any|strong=\"H7200\"* perish for|strong=\"H7200\"* want|strong=\"H1097\"* of|strong=\"H1097\"* clothing|strong=\"H3830\"*," + }, + { + "verseNum": 20, + "text": "if|strong=\"H1288\"* his|strong=\"H1288\"* heart hasn’t blessed|strong=\"H1288\"* me|strong=\"H1288\"*," + }, + { + "verseNum": 21, + "text": "if|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3027\"* lifted|strong=\"H5130\"* up|strong=\"H7200\"* my|strong=\"H7200\"* hand|strong=\"H3027\"* against|strong=\"H5921\"* the|strong=\"H5921\"* fatherless|strong=\"H3490\"*," + }, + { + "verseNum": 22, + "text": "then|strong=\"H5307\"* let my|strong=\"H7665\"* shoulder|strong=\"H3802\"* fall|strong=\"H5307\"* from|strong=\"H5307\"* the|strong=\"H7665\"* shoulder|strong=\"H3802\"* blade|strong=\"H7929\"*," + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* calamity from|strong=\"H3808\"* God|strong=\"H3808\"* is|strong=\"H3808\"* a|strong=\"H3068\"* terror|strong=\"H6343\"* to|strong=\"H3201\"* me|strong=\"H3808\"*." + }, + { + "verseNum": 24, + "text": "“If|strong=\"H7760\"* I|strong=\"H7760\"* have made|strong=\"H7760\"* gold|strong=\"H2091\"* my|strong=\"H7760\"* hope|strong=\"H3689\"*," + }, + { + "verseNum": 25, + "text": "If|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3027\"* rejoiced|strong=\"H8055\"* because|strong=\"H3588\"* my|strong=\"H3588\"* wealth|strong=\"H2428\"* was|strong=\"H3027\"* great|strong=\"H7227\"*," + }, + { + "verseNum": 26, + "text": "if|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* sun when|strong=\"H3588\"* it|strong=\"H3588\"* shined|strong=\"H1984\"*," + }, + { + "verseNum": 27, + "text": "and|strong=\"H3027\"* my|strong=\"H3027\"* heart|strong=\"H3820\"* has|strong=\"H3820\"* been secretly|strong=\"H5643\"* enticed|strong=\"H6601\"*," + }, + { + "verseNum": 28, + "text": "this|strong=\"H1931\"* also|strong=\"H1571\"* would be|strong=\"H1571\"* an|strong=\"H3588\"* iniquity|strong=\"H5771\"* to|strong=\"H5771\"* be|strong=\"H1571\"* punished by|strong=\"H1571\"* the|strong=\"H3588\"* judges," + }, + { + "verseNum": 29, + "text": "“If|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H4672\"* rejoiced|strong=\"H8055\"* at|strong=\"H4672\"* the|strong=\"H3588\"* destruction|strong=\"H6365\"* of|strong=\"H7451\"* him|strong=\"H4672\"* who|strong=\"H4672\"* hated|strong=\"H8130\"* me|strong=\"H8130\"*," + }, + { + "verseNum": 30, + "text": "(I|strong=\"H5414\"* have|strong=\"H5414\"* certainly|strong=\"H3808\"* not|strong=\"H3808\"* allowed|strong=\"H5414\"* my|strong=\"H5414\"* mouth|strong=\"H2441\"* to|strong=\"H5414\"* sin|strong=\"H2398\"*" + }, + { + "verseNum": 31, + "text": "if the|strong=\"H5414\"* men|strong=\"H4962\"* of|strong=\"H1320\"* my|strong=\"H5414\"* tent have|strong=\"H7646\"* not|strong=\"H3808\"* said," + }, + { + "verseNum": 32, + "text": "(the|strong=\"H2351\"* foreigner|strong=\"H1616\"* has not|strong=\"H3808\"* camped in|strong=\"H3885\"* the|strong=\"H2351\"* street|strong=\"H2351\"*," + }, + { + "verseNum": 33, + "text": "if like|strong=\"H6588\"* Adam I|strong=\"H6588\"* have|strong=\"H5771\"* covered|strong=\"H3680\"* my|strong=\"H3680\"* transgressions|strong=\"H6588\"*," + }, + { + "verseNum": 34, + "text": "because|strong=\"H3588\"* I|strong=\"H3588\"* feared|strong=\"H6206\"* the|strong=\"H3588\"* great|strong=\"H7227\"* multitude|strong=\"H1995\"*," + }, + { + "verseNum": 35, + "text": "oh|strong=\"H4310\"* that|strong=\"H8085\"* I|strong=\"H2005\"* had|strong=\"H5414\"* one|strong=\"H4310\"* to|strong=\"H5414\"* hear|strong=\"H8085\"* me|strong=\"H5414\"*!" + }, + { + "verseNum": 36, + "text": "Surely|strong=\"H3808\"* I|strong=\"H5921\"* would carry|strong=\"H5375\"* it|strong=\"H5921\"* on|strong=\"H5921\"* my|strong=\"H5921\"* shoulder|strong=\"H7926\"*," + }, + { + "verseNum": 37, + "text": "I|strong=\"H3644\"* would declare|strong=\"H5046\"* to|strong=\"H5046\"* him|strong=\"H5046\"* the|strong=\"H7126\"* number|strong=\"H4557\"* of|strong=\"H4557\"* my|strong=\"H5046\"* steps|strong=\"H6806\"*." + }, + { + "verseNum": 38, + "text": "If my|strong=\"H5921\"* land cries|strong=\"H2199\"* out|strong=\"H2199\"* against|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 39, + "text": "if I|strong=\"H5315\"* have|strong=\"H1167\"* eaten its|strong=\"H1167\"* fruits|strong=\"H3581\"* without|strong=\"H1097\"* money|strong=\"H3701\"*," + }, + { + "verseNum": 40, + "text": "let briers grow|strong=\"H3318\"* instead|strong=\"H8478\"* of|strong=\"H1697\"* wheat|strong=\"H2406\"*," + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "So|strong=\"H3588\"* these|strong=\"H1931\"* three|strong=\"H7969\"* men|strong=\"H6662\"* ceased|strong=\"H7673\"* to|strong=\"H5869\"* answer|strong=\"H6030\"* Job, because|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* righteous|strong=\"H6662\"* in|strong=\"H5869\"* his|strong=\"H3588\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H1121\"* the|strong=\"H5921\"* wrath of|strong=\"H1121\"* Elihu the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Barachel|strong=\"H1292\"*, the|strong=\"H5921\"* Buzite, of|strong=\"H1121\"* the|strong=\"H5921\"* family|strong=\"H4940\"* of|strong=\"H1121\"* Ram|strong=\"H7410\"*, was|strong=\"H5315\"* kindled|strong=\"H2734\"* against|strong=\"H5921\"* Job. His|strong=\"H5921\"* wrath was|strong=\"H5315\"* kindled|strong=\"H2734\"* because|strong=\"H5921\"* he|strong=\"H5921\"* justified|strong=\"H6663\"* himself|strong=\"H5315\"* rather than|strong=\"H5921\"* God." + }, + { + "verseNum": 3, + "text": "Also his|strong=\"H5921\"* wrath was|strong=\"H3808\"* kindled|strong=\"H2734\"* against|strong=\"H5921\"* his|strong=\"H5921\"* three|strong=\"H7969\"* friends|strong=\"H7453\"*, because|strong=\"H5921\"* they|strong=\"H3808\"* had|strong=\"H4672\"* found|strong=\"H4672\"* no|strong=\"H3808\"* answer|strong=\"H4617\"*, and|strong=\"H7969\"* yet|strong=\"H3808\"* had|strong=\"H4672\"* condemned|strong=\"H7561\"* Job|strong=\"H3808\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H3117\"* Elihu had|strong=\"H3588\"* waited|strong=\"H2442\"* to|strong=\"H3117\"* speak|strong=\"H1697\"* to|strong=\"H3117\"* Job, because|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H3117\"* older|strong=\"H2205\"* than|strong=\"H4480\"* he|strong=\"H3588\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H3588\"* Elihu saw|strong=\"H7200\"* that|strong=\"H3588\"* there|strong=\"H7200\"* was|strong=\"H6310\"* no|strong=\"H7200\"* answer|strong=\"H4617\"* in|strong=\"H6310\"* the|strong=\"H7200\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* these three|strong=\"H7969\"* men, his|strong=\"H7200\"* wrath was|strong=\"H6310\"* kindled|strong=\"H2734\"*." + }, + { + "verseNum": 6, + "text": "Elihu the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Barachel|strong=\"H1292\"* the|strong=\"H5921\"* Buzite answered|strong=\"H6030\"*," + }, + { + "verseNum": 7, + "text": "I|strong=\"H3117\"* said|strong=\"H1696\"*, ‘Days|strong=\"H3117\"* should|strong=\"H8141\"* speak|strong=\"H1696\"*," + }, + { + "verseNum": 8, + "text": "But|strong=\"H1931\"* there is|strong=\"H1931\"* a|strong=\"H3068\"* spirit|strong=\"H7307\"* in|strong=\"H7307\"* man," + }, + { + "verseNum": 9, + "text": "It|strong=\"H3808\"* is|strong=\"H4941\"* not|strong=\"H3808\"* the|strong=\"H3808\"* great|strong=\"H7227\"* who|strong=\"H7227\"* are|strong=\"H7227\"* wise|strong=\"H2449\"*," + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H3651\"* said|strong=\"H8085\"*, ‘Listen|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H8085\"*;" + }, + { + "verseNum": 11, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H2005\"* waited|strong=\"H3176\"* for|strong=\"H5704\"* your|strong=\"H5704\"* words|strong=\"H1697\"*," + }, + { + "verseNum": 12, + "text": "Yes|strong=\"H2009\"*, I|strong=\"H5704\"* gave you|strong=\"H5704\"* my|strong=\"H4480\"* full attention," + }, + { + "verseNum": 13, + "text": "Beware|strong=\"H6435\"* lest|strong=\"H6435\"* you|strong=\"H3808\"* say, ‘We|strong=\"H6435\"* have|strong=\"H4672\"* found|strong=\"H4672\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 14, + "text": "for|strong=\"H6186\"* he|strong=\"H3808\"* has not|strong=\"H3808\"* directed|strong=\"H6186\"* his|strong=\"H7725\"* words|strong=\"H4405\"* against|strong=\"H6186\"* me|strong=\"H7725\"*;" + }, + { + "verseNum": 15, + "text": "“They|strong=\"H1992\"* are|strong=\"H1992\"* amazed|strong=\"H2865\"*. They|strong=\"H1992\"* answer|strong=\"H6030\"* no|strong=\"H3808\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 16, + "text": "Shall|strong=\"H3808\"* I|strong=\"H3588\"* wait|strong=\"H3176\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* don’t speak|strong=\"H1696\"*," + }, + { + "verseNum": 17, + "text": "I|strong=\"H1843\"* also will answer|strong=\"H6030\"* my|strong=\"H6030\"* part|strong=\"H2506\"*," + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* am full|strong=\"H4390\"* of|strong=\"H7307\"* words|strong=\"H4405\"*." + }, + { + "verseNum": 19, + "text": "Behold|strong=\"H2009\"*, my|strong=\"H6605\"* breast is|strong=\"H2009\"* as wine|strong=\"H3196\"* which|strong=\"H3196\"* has|strong=\"H2009\"* no|strong=\"H3808\"* vent|strong=\"H6605\"*;" + }, + { + "verseNum": 20, + "text": "I will|strong=\"H8193\"* speak|strong=\"H1696\"*, that|strong=\"H8193\"* I may|strong=\"H8193\"* be|strong=\"H8193\"* refreshed|strong=\"H7304\"*." + }, + { + "verseNum": 21, + "text": "Please|strong=\"H4994\"* don’t let|strong=\"H4994\"* me|strong=\"H6440\"* respect|strong=\"H5375\"* any|strong=\"H5375\"* man|strong=\"H5375\"*’s person|strong=\"H6440\"*," + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* don’t know|strong=\"H3045\"* how|strong=\"H3588\"* to|strong=\"H6213\"* give|strong=\"H5375\"* flattering titles|strong=\"H3655\"*," + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "“However|strong=\"H8085\"*, Job, please|strong=\"H4994\"* hear|strong=\"H8085\"* my|strong=\"H8085\"* speech|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "See|strong=\"H2009\"* now|strong=\"H4994\"*, I|strong=\"H2009\"* have|strong=\"H1696\"* opened|strong=\"H6605\"* my|strong=\"H6605\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 3, + "text": "My|strong=\"H1847\"* words|strong=\"H8193\"* will|strong=\"H3820\"* utter|strong=\"H4448\"* the|strong=\"H1847\"* uprightness|strong=\"H3476\"* of|strong=\"H3820\"* my|strong=\"H1847\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H6213\"* Spirit|strong=\"H7307\"* of|strong=\"H7307\"* God has|strong=\"H7307\"* made|strong=\"H6213\"* me|strong=\"H6213\"*," + }, + { + "verseNum": 5, + "text": "If you|strong=\"H6440\"* can|strong=\"H3201\"*, answer|strong=\"H7725\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 6, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* toward God even|strong=\"H1571\"* as|strong=\"H1571\"* you|strong=\"H1571\"* are|strong=\"H6310\"*." + }, + { + "verseNum": 7, + "text": "Behold|strong=\"H2009\"*, my|strong=\"H5921\"* terror will|strong=\"H3808\"* not|strong=\"H3808\"* make|strong=\"H3513\"* you|strong=\"H5921\"* afraid|strong=\"H1204\"*," + }, + { + "verseNum": 8, + "text": "“Surely|strong=\"H8085\"* you|strong=\"H6963\"* have|strong=\"H4405\"* spoken|strong=\"H8085\"* in|strong=\"H8085\"* my|strong=\"H8085\"* hearing|strong=\"H8085\"*," + }, + { + "verseNum": 9, + "text": "‘I|strong=\"H3808\"* am clean|strong=\"H2134\"*, without|strong=\"H3808\"* disobedience." + }, + { + "verseNum": 10, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H5921\"* finds|strong=\"H4672\"* occasions|strong=\"H8569\"* against|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3605\"* puts|strong=\"H7760\"* my|strong=\"H8104\"* feet|strong=\"H7272\"* in|strong=\"H7272\"* the|strong=\"H3605\"* stocks|strong=\"H5465\"*." + }, + { + "verseNum": 12, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3808\"* answer|strong=\"H6030\"* you|strong=\"H3588\"*. In|strong=\"H3808\"* this|strong=\"H2063\"* you|strong=\"H3588\"* are|strong=\"H3808\"* not|strong=\"H3808\"* just|strong=\"H6663\"*," + }, + { + "verseNum": 13, + "text": "Why|strong=\"H4069\"* do|strong=\"H1697\"* you|strong=\"H3588\"* strive|strong=\"H7378\"* against|strong=\"H7378\"* him|strong=\"H3605\"*," + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* God|strong=\"H3808\"* speaks|strong=\"H1696\"* once," + }, + { + "verseNum": 15, + "text": "In|strong=\"H5921\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*, in|strong=\"H5921\"* a|strong=\"H3068\"* vision|strong=\"H2384\"* of|strong=\"H5921\"* the|strong=\"H5921\"* night|strong=\"H3915\"*," + }, + { + "verseNum": 16, + "text": "then he opens|strong=\"H1540\"* the|strong=\"H1540\"* ears of|strong=\"H1540\"* men," + }, + { + "verseNum": 17, + "text": "that|strong=\"H1397\"* he may withdraw|strong=\"H5493\"* man|strong=\"H1397\"* from|strong=\"H5493\"* his|strong=\"H5493\"* purpose|strong=\"H4639\"*," + }, + { + "verseNum": 18, + "text": "He|strong=\"H4480\"* keeps|strong=\"H2820\"* back|strong=\"H2820\"* his|strong=\"H4480\"* soul|strong=\"H5315\"* from|strong=\"H4480\"* the|strong=\"H4480\"* pit|strong=\"H7845\"*," + }, + { + "verseNum": 19, + "text": "“He|strong=\"H5921\"* is|strong=\"H4341\"* chastened|strong=\"H3198\"* also with|strong=\"H5921\"* pain|strong=\"H4341\"* on|strong=\"H5921\"* his|strong=\"H5921\"* bed|strong=\"H4904\"*," + }, + { + "verseNum": 20, + "text": "so that|strong=\"H5315\"* his life|strong=\"H5315\"* abhors bread|strong=\"H3899\"*," + }, + { + "verseNum": 21, + "text": "His|strong=\"H7200\"* flesh|strong=\"H1320\"* is|strong=\"H1320\"* so|strong=\"H3808\"* consumed|strong=\"H3615\"* away|strong=\"H3615\"* that|strong=\"H7200\"* it|strong=\"H7200\"* can|strong=\"H7200\"*’t be|strong=\"H3808\"* seen|strong=\"H7200\"*." + }, + { + "verseNum": 22, + "text": "Yes, his|strong=\"H7126\"* soul|strong=\"H5315\"* draws|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H4191\"* the|strong=\"H7126\"* pit|strong=\"H7845\"*," + }, + { + "verseNum": 23, + "text": "“If|strong=\"H3426\"* there|strong=\"H3426\"* is|strong=\"H3426\"* beside|strong=\"H5921\"* him|strong=\"H5921\"* an|strong=\"H4480\"* angel|strong=\"H4397\"*," + }, + { + "verseNum": 24, + "text": "then|strong=\"H3381\"* God is|strong=\"H4672\"* gracious|strong=\"H2603\"* to|strong=\"H3381\"* him|strong=\"H4672\"*, and|strong=\"H3381\"* says," + }, + { + "verseNum": 25, + "text": "His|strong=\"H7725\"* flesh|strong=\"H1320\"* will|strong=\"H1320\"* be|strong=\"H3117\"* fresher|strong=\"H7375\"* than a|strong=\"H3068\"* child|strong=\"H5290\"*’s." + }, + { + "verseNum": 26, + "text": "He|strong=\"H6440\"* prays to|strong=\"H7725\"* God, and|strong=\"H7725\"* he|strong=\"H6440\"* is|strong=\"H6440\"* favorable|strong=\"H7521\"* to|strong=\"H7725\"* him|strong=\"H6440\"*," + }, + { + "verseNum": 27, + "text": "He|strong=\"H3808\"* sings before|strong=\"H5921\"* men, and|strong=\"H2398\"* says," + }, + { + "verseNum": 28, + "text": "He|strong=\"H5315\"* has|strong=\"H5315\"* redeemed|strong=\"H6299\"* my|strong=\"H7200\"* soul|strong=\"H5315\"* from|strong=\"H5315\"* going|strong=\"H5674\"* into|strong=\"H2416\"* the|strong=\"H7200\"* pit|strong=\"H7845\"*." + }, + { + "verseNum": 29, + "text": "“Behold|strong=\"H2005\"*, God does|strong=\"H6466\"* all|strong=\"H3605\"* these|strong=\"H3605\"* things|strong=\"H3605\"*," + }, + { + "verseNum": 30, + "text": "to|strong=\"H7725\"* bring|strong=\"H7725\"* back|strong=\"H7725\"* his|strong=\"H7725\"* soul|strong=\"H5315\"* from|strong=\"H4480\"* the|strong=\"H4480\"* pit|strong=\"H7845\"*," + }, + { + "verseNum": 31, + "text": "Mark well|strong=\"H7181\"*, Job, and|strong=\"H8085\"* listen|strong=\"H8085\"* to|strong=\"H1696\"* me|strong=\"H1696\"*." + }, + { + "verseNum": 32, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3426\"* anything|strong=\"H4405\"* to|strong=\"H1696\"* say|strong=\"H1696\"*, answer|strong=\"H7725\"* me|strong=\"H7725\"*." + }, + { + "verseNum": 33, + "text": "If not|strong=\"H8085\"*, listen|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H2451\"*." + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Moreover Elihu answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Hear|strong=\"H8085\"* my|strong=\"H8085\"* words|strong=\"H4405\"*, you|strong=\"H3045\"* wise|strong=\"H2450\"* men|strong=\"H2450\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* ear tries words|strong=\"H4405\"*," + }, + { + "verseNum": 4, + "text": "Let us|strong=\"H3045\"* choose for|strong=\"H4941\"* us|strong=\"H3045\"* that|strong=\"H3045\"* which|strong=\"H4100\"* is|strong=\"H4100\"* right|strong=\"H4941\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* Job has|strong=\"H3588\"* said, ‘I|strong=\"H3588\"* am righteous|strong=\"H6663\"*," + }, + { + "verseNum": 6, + "text": "Notwithstanding my|strong=\"H5921\"* right|strong=\"H4941\"* I|strong=\"H5921\"* am considered a|strong=\"H3068\"* liar|strong=\"H3576\"*." + }, + { + "verseNum": 7, + "text": "What|strong=\"H4310\"* man|strong=\"H1397\"* is|strong=\"H4310\"* like|strong=\"H3933\"* Job," + }, + { + "verseNum": 8, + "text": "who goes in|strong=\"H3212\"* company|strong=\"H2274\"* with|strong=\"H5973\"* the|strong=\"H5973\"* workers|strong=\"H6466\"* of|strong=\"H6466\"* iniquity|strong=\"H7562\"*," + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* said, ‘It|strong=\"H3588\"* profits|strong=\"H5532\"* a|strong=\"H3068\"* man|strong=\"H1397\"* nothing|strong=\"H3808\"*" + }, + { + "verseNum": 10, + "text": "“Therefore|strong=\"H3651\"* listen|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H2486\"*, you|strong=\"H3651\"* men of|strong=\"H3824\"* understanding|strong=\"H3824\"*:" + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* work|strong=\"H6467\"* of|strong=\"H6467\"* a|strong=\"H3068\"* man he|strong=\"H3588\"* will|strong=\"H7999\"* give to|strong=\"H3588\"* him|strong=\"H4672\"*," + }, + { + "verseNum": 12, + "text": "Yes surely|strong=\"H3808\"*, God|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* do|strong=\"H7561\"* wickedly|strong=\"H7561\"*," + }, + { + "verseNum": 13, + "text": "Who|strong=\"H4310\"* put|strong=\"H7760\"* him|strong=\"H5921\"* in|strong=\"H5921\"* charge|strong=\"H5921\"* of|strong=\"H5921\"* the|strong=\"H3605\"* earth?" + }, + { + "verseNum": 14, + "text": "If|strong=\"H7760\"* he|strong=\"H7760\"* set|strong=\"H7760\"* his|strong=\"H7760\"* heart|strong=\"H3820\"* on|strong=\"H7760\"* himself|strong=\"H3820\"*," + }, + { + "verseNum": 15, + "text": "all|strong=\"H3605\"* flesh|strong=\"H1320\"* would|strong=\"H3162\"* perish|strong=\"H1478\"* together|strong=\"H3162\"*," + }, + { + "verseNum": 16, + "text": "“If now|strong=\"H8085\"* you|strong=\"H6963\"* have|strong=\"H4405\"* understanding|strong=\"H8085\"*, hear|strong=\"H8085\"* this|strong=\"H2063\"*." + }, + { + "verseNum": 17, + "text": "Should even one|strong=\"H6662\"* who|strong=\"H6662\"* hates|strong=\"H8130\"* justice|strong=\"H4941\"* govern|strong=\"H2280\"*?" + }, + { + "verseNum": 18, + "text": "who|strong=\"H4428\"* says to|strong=\"H4428\"* a|strong=\"H3068\"* king|strong=\"H4428\"*, ‘Vile!’" + }, + { + "verseNum": 19, + "text": "He|strong=\"H3588\"* doesn’t respect|strong=\"H5234\"* the|strong=\"H3605\"* persons|strong=\"H6440\"* of|strong=\"H3027\"* princes|strong=\"H8269\"*," + }, + { + "verseNum": 20, + "text": "In|strong=\"H4191\"* a|strong=\"H3068\"* moment|strong=\"H7281\"* they|strong=\"H3808\"* die|strong=\"H4191\"*, even|strong=\"H3808\"* at|strong=\"H4191\"* midnight|strong=\"H2676\"*." + }, + { + "verseNum": 21, + "text": "“For|strong=\"H3588\"* his|strong=\"H3605\"* eyes|strong=\"H5869\"* are|strong=\"H5869\"* on|strong=\"H5921\"* the|strong=\"H3605\"* ways|strong=\"H1870\"* of|strong=\"H1870\"* a|strong=\"H3068\"* man|strong=\"H3605\"*." + }, + { + "verseNum": 22, + "text": "There|strong=\"H8033\"* is|strong=\"H8033\"* no|strong=\"H6466\"* darkness|strong=\"H2822\"*, nor thick|strong=\"H6757\"* gloom|strong=\"H6757\"*," + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* doesn’t need to|strong=\"H1980\"* consider|strong=\"H7760\"* a|strong=\"H3068\"* man further|strong=\"H5750\"*," + }, + { + "verseNum": 24, + "text": "He|strong=\"H3808\"* breaks|strong=\"H7489\"* mighty|strong=\"H3524\"* men|strong=\"H3524\"* in|strong=\"H5975\"* pieces|strong=\"H7489\"* in|strong=\"H5975\"* ways past finding out|strong=\"H2714\"*," + }, + { + "verseNum": 25, + "text": "Therefore|strong=\"H3651\"* he|strong=\"H3651\"* takes knowledge|strong=\"H5234\"* of|strong=\"H5234\"* their|strong=\"H2015\"* works|strong=\"H4566\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"H8478\"* strikes|strong=\"H5606\"* them|strong=\"H7200\"* as|strong=\"H8478\"* wicked|strong=\"H7563\"* men|strong=\"H7563\"*" + }, + { + "verseNum": 27, + "text": "because|strong=\"H5921\"* they|strong=\"H3651\"* turned|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* following|strong=\"H1870\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 28, + "text": "so|strong=\"H8085\"* that|strong=\"H8085\"* they|strong=\"H5921\"* caused the|strong=\"H5921\"* cry|strong=\"H6818\"* of|strong=\"H5921\"* the|strong=\"H5921\"* poor|strong=\"H6041\"* to|strong=\"H5921\"* come to|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"H5921\"* he|strong=\"H1931\"* gives quietness|strong=\"H8252\"*, who|strong=\"H4310\"* then can|strong=\"H4310\"* condemn|strong=\"H7561\"*?" + }, + { + "verseNum": 30, + "text": "that|strong=\"H5971\"* the|strong=\"H5971\"* godless|strong=\"H2611\"* man|strong=\"H2611\"* may|strong=\"H5971\"* not|strong=\"H5971\"* reign|strong=\"H4427\"*," + }, + { + "verseNum": 31, + "text": "“For|strong=\"H3588\"* has|strong=\"H3588\"* any|strong=\"H5375\"* said to|strong=\"H3808\"* God|strong=\"H3808\"*," + }, + { + "verseNum": 32, + "text": "Teach|strong=\"H3384\"* me|strong=\"H3254\"* that|strong=\"H3808\"* which I|strong=\"H3808\"* don’t see|strong=\"H2372\"*." + }, + { + "verseNum": 33, + "text": "Shall|strong=\"H3808\"* his|strong=\"H3045\"* recompense|strong=\"H7999\"* be|strong=\"H3808\"* as|strong=\"H3588\"* you|strong=\"H3588\"* desire, that|strong=\"H3588\"* you|strong=\"H3588\"* refuse|strong=\"H3808\"* it|strong=\"H3588\"*?" + }, + { + "verseNum": 34, + "text": "Men|strong=\"H2450\"* of|strong=\"H3824\"* understanding|strong=\"H3824\"* will|strong=\"H3824\"* tell|strong=\"H8085\"* me|strong=\"H8085\"*," + }, + { + "verseNum": 35, + "text": "‘Job|strong=\"H3808\"* speaks|strong=\"H1696\"* without|strong=\"H3808\"* knowledge|strong=\"H1847\"*." + }, + { + "verseNum": 36, + "text": "I|strong=\"H5704\"* wish that|strong=\"H5704\"* Job were|strong=\"H5921\"* tried to|strong=\"H5704\"* the|strong=\"H5921\"* end|strong=\"H5331\"*," + }, + { + "verseNum": 37, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* adds|strong=\"H3254\"* rebellion|strong=\"H6588\"* to|strong=\"H5921\"* his|strong=\"H5921\"* sin|strong=\"H2403\"*." + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "Moreover Elihu answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Do you|strong=\"H6664\"* think|strong=\"H2803\"* this|strong=\"H2063\"* to|strong=\"H2803\"* be your right|strong=\"H4941\"*," + }, + { + "verseNum": 3, + "text": "that|strong=\"H3588\"* you|strong=\"H3588\"* ask, ‘What|strong=\"H4100\"* advantage|strong=\"H5532\"* will|strong=\"H4100\"* it|strong=\"H3588\"* be|strong=\"H3588\"* to|strong=\"H3588\"* you|strong=\"H3588\"*?" + }, + { + "verseNum": 4, + "text": "I will|strong=\"H7453\"* answer|strong=\"H7725\"* you|strong=\"H7725\"*," + }, + { + "verseNum": 5, + "text": "Look|strong=\"H7200\"* to|strong=\"H7200\"* the|strong=\"H7200\"* skies|strong=\"H7834\"*, and|strong=\"H8064\"* see|strong=\"H7200\"*." + }, + { + "verseNum": 6, + "text": "If|strong=\"H2398\"* you|strong=\"H6213\"* have sinned|strong=\"H2398\"*, what|strong=\"H4100\"* effect|strong=\"H6213\"* do|strong=\"H6213\"* you|strong=\"H6213\"* have against|strong=\"H2398\"* him|strong=\"H6213\"*?" + }, + { + "verseNum": 7, + "text": "If you|strong=\"H5414\"* are|strong=\"H3027\"* righteous|strong=\"H6663\"*, what|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H5414\"* give|strong=\"H5414\"* him|strong=\"H5414\"*?" + }, + { + "verseNum": 8, + "text": "Your|strong=\"H6666\"* wickedness|strong=\"H7562\"* may|strong=\"H1121\"* hurt a|strong=\"H3068\"* man|strong=\"H1121\"* as|strong=\"H3644\"* you|strong=\"H3644\"* are|strong=\"H1121\"*," + }, + { + "verseNum": 9, + "text": "“By|strong=\"H7230\"* reason of|strong=\"H7230\"* the|strong=\"H2220\"* multitude|strong=\"H7230\"* of|strong=\"H7230\"* oppressions|strong=\"H6217\"* they|strong=\"H6217\"* cry|strong=\"H2199\"* out|strong=\"H2199\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"H3808\"* no|strong=\"H3808\"* one|strong=\"H3808\"* says, ‘Where|strong=\"H3808\"* is|strong=\"H6213\"* God|strong=\"H5414\"* my|strong=\"H5414\"* Maker|strong=\"H6213\"*," + }, + { + "verseNum": 11, + "text": "who teaches us|strong=\"H2449\"* more than the|strong=\"H8064\"* animals of|strong=\"H8064\"* the|strong=\"H8064\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 12, + "text": "There|strong=\"H8033\"* they|strong=\"H8033\"* cry|strong=\"H6817\"*, but|strong=\"H3808\"* no|strong=\"H3808\"* one|strong=\"H3808\"* answers|strong=\"H6030\"*," + }, + { + "verseNum": 13, + "text": "Surely|strong=\"H8085\"* God|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* hear|strong=\"H8085\"* an|strong=\"H8085\"* empty|strong=\"H7723\"* cry," + }, + { + "verseNum": 14, + "text": "How|strong=\"H3588\"* much less|strong=\"H3588\"* when|strong=\"H3588\"* you|strong=\"H3588\"* say you|strong=\"H3588\"* don’t see|strong=\"H7789\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H3588\"* now|strong=\"H6258\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* not|strong=\"H3808\"* visited|strong=\"H6485\"* in|strong=\"H3808\"* his|strong=\"H3045\"* anger," + }, + { + "verseNum": 16, + "text": "therefore Job opens|strong=\"H6475\"* his|strong=\"H6310\"* mouth|strong=\"H6310\"* with|strong=\"H6310\"* empty talk|strong=\"H6310\"*," + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "Elihu also|strong=\"H3254\"* continued|strong=\"H3254\"*, and|strong=\"H3254\"* said," + }, + { + "verseNum": 2, + "text": "“Bear with|strong=\"H3803\"* me|strong=\"H3588\"* a|strong=\"H3068\"* little|strong=\"H2191\"*, and|strong=\"H5750\"* I|strong=\"H3588\"* will|strong=\"H5750\"* show|strong=\"H2331\"* you|strong=\"H3588\"*;" + }, + { + "verseNum": 3, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* get my|strong=\"H5414\"* knowledge|strong=\"H1843\"* from|strong=\"H7350\"* afar|strong=\"H7350\"*," + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* truly|strong=\"H3588\"* my|strong=\"H3588\"* words|strong=\"H4405\"* are|strong=\"H5973\"* not|strong=\"H3808\"* false|strong=\"H8267\"*." + }, + { + "verseNum": 5, + "text": "“Behold|strong=\"H2005\"*, God|strong=\"H3808\"* is|strong=\"H3820\"* mighty|strong=\"H3524\"*, and|strong=\"H3820\"* doesn’t despise|strong=\"H3988\"* anyone|strong=\"H2005\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H5414\"* doesn’t preserve|strong=\"H2421\"* the|strong=\"H5414\"* life|strong=\"H2421\"* of|strong=\"H4941\"* the|strong=\"H5414\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 7, + "text": "He|strong=\"H3808\"* doesn’t withdraw|strong=\"H1639\"* his|strong=\"H3808\"* eyes|strong=\"H5869\"* from|strong=\"H5869\"* the|strong=\"H3808\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 8, + "text": "If they|strong=\"H3920\"* are|strong=\"H2256\"* bound in|strong=\"H3920\"* fetters|strong=\"H2131\"*," + }, + { + "verseNum": 9, + "text": "then|strong=\"H3588\"* he|strong=\"H3588\"* shows them|strong=\"H1992\"* their|strong=\"H1992\"* work|strong=\"H6467\"*," + }, + { + "verseNum": 10, + "text": "He|strong=\"H3588\"* also|strong=\"H3588\"* opens|strong=\"H1540\"* their|strong=\"H7725\"* ears to|strong=\"H7725\"* instruction|strong=\"H4148\"*," + }, + { + "verseNum": 11, + "text": "If they|strong=\"H3117\"* listen|strong=\"H8085\"* and|strong=\"H3117\"* serve|strong=\"H5647\"* him|strong=\"H5647\"*," + }, + { + "verseNum": 12, + "text": "But|strong=\"H3808\"* if they|strong=\"H3808\"* don’t listen|strong=\"H8085\"*, they|strong=\"H3808\"* will|strong=\"H3808\"* perish|strong=\"H1478\"* by|strong=\"H5674\"* the|strong=\"H8085\"* sword|strong=\"H7973\"*;" + }, + { + "verseNum": 13, + "text": "“But|strong=\"H3588\"* those|strong=\"H3588\"* who|strong=\"H3588\"* are|strong=\"H3820\"* godless|strong=\"H2611\"* in|strong=\"H3808\"* heart|strong=\"H3820\"* lay|strong=\"H7760\"* up|strong=\"H7760\"* anger." + }, + { + "verseNum": 14, + "text": "They|strong=\"H5315\"* die|strong=\"H4191\"* in|strong=\"H4191\"* youth|strong=\"H5290\"*." + }, + { + "verseNum": 15, + "text": "He delivers|strong=\"H2502\"* the|strong=\"H1540\"* afflicted|strong=\"H6041\"* by|strong=\"H1540\"* their|strong=\"H1540\"* affliction|strong=\"H6040\"*," + }, + { + "verseNum": 16, + "text": "Yes, he|strong=\"H3808\"* would|strong=\"H6862\"* have|strong=\"H6862\"* allured you|strong=\"H3808\"* out|strong=\"H3808\"* of|strong=\"H4390\"* distress|strong=\"H6862\"*," + }, + { + "verseNum": 17, + "text": "“But|strong=\"H7563\"* you are|strong=\"H7563\"* full|strong=\"H4390\"* of|strong=\"H4390\"* the|strong=\"H4390\"* judgment|strong=\"H4941\"* of|strong=\"H4390\"* the|strong=\"H4390\"* wicked|strong=\"H7563\"*." + }, + { + "verseNum": 18, + "text": "Don’t let|strong=\"H5186\"* riches entice|strong=\"H5496\"* you|strong=\"H3588\"* to|strong=\"H2534\"* wrath|strong=\"H2534\"*," + }, + { + "verseNum": 19, + "text": "Would|strong=\"H3605\"* your|strong=\"H3605\"* wealth|strong=\"H3808\"* sustain|strong=\"H6186\"* you|strong=\"H3605\"* in|strong=\"H3808\"* distress," + }, + { + "verseNum": 20, + "text": "Don’t desire|strong=\"H7602\"* the|strong=\"H8478\"* night|strong=\"H3915\"*," + }, + { + "verseNum": 21, + "text": "Take|strong=\"H8104\"* heed|strong=\"H8104\"*, don’t regard|strong=\"H6437\"* iniquity;" + }, + { + "verseNum": 22, + "text": "Behold|strong=\"H2005\"*, God|strong=\"H4310\"* is|strong=\"H4310\"* exalted|strong=\"H7682\"* in|strong=\"H3384\"* his|strong=\"H3384\"* power|strong=\"H3581\"*." + }, + { + "verseNum": 23, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* prescribed his|strong=\"H5921\"* way|strong=\"H1870\"* for|strong=\"H5921\"* him|strong=\"H5921\"*?" + }, + { + "verseNum": 24, + "text": "“Remember|strong=\"H2142\"* that|strong=\"H3588\"* you|strong=\"H3588\"* magnify|strong=\"H7679\"* his|strong=\"H2142\"* work|strong=\"H6467\"*," + }, + { + "verseNum": 25, + "text": "All|strong=\"H3605\"* men|strong=\"H3605\"* have|strong=\"H3605\"* looked|strong=\"H5027\"* on|strong=\"H5027\"* it|strong=\"H3605\"*." + }, + { + "verseNum": 26, + "text": "Behold|strong=\"H2005\"*, God|strong=\"H3808\"* is|strong=\"H8141\"* great|strong=\"H7689\"*, and|strong=\"H8141\"* we|strong=\"H3068\"* don’t know|strong=\"H3045\"* him|strong=\"H3045\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* draws|strong=\"H1639\"* up the|strong=\"H3588\"* drops|strong=\"H5198\"* of|strong=\"H4325\"* water|strong=\"H4325\"*," + }, + { + "verseNum": 28, + "text": "which|strong=\"H7227\"* the|strong=\"H5921\"* skies|strong=\"H7834\"* pour|strong=\"H5140\"* down|strong=\"H7491\"*" + }, + { + "verseNum": 29, + "text": "Indeed, can anyone understand the spreading|strong=\"H4666\"* of|strong=\"H5521\"* the clouds|strong=\"H5645\"*" + }, + { + "verseNum": 30, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H5921\"* spreads|strong=\"H6566\"* his|strong=\"H5921\"* light around|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* by|strong=\"H5414\"* these|strong=\"H5971\"* he|strong=\"H3588\"* judges|strong=\"H1777\"* the|strong=\"H3588\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"H5921\"* covers|strong=\"H3680\"* his|strong=\"H5921\"* hands|strong=\"H3709\"* with|strong=\"H5921\"* the|strong=\"H5921\"* lightning," + }, + { + "verseNum": 33, + "text": "Its|strong=\"H5921\"* noise|strong=\"H7452\"* tells|strong=\"H5046\"* about|strong=\"H5921\"* him|strong=\"H5921\"*," + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "“Yes, at|strong=\"H2729\"* this|strong=\"H2063\"* my|strong=\"H5425\"* heart|strong=\"H3820\"* trembles|strong=\"H2729\"*," + }, + { + "verseNum": 2, + "text": "Hear|strong=\"H8085\"*, oh, hear|strong=\"H8085\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* his|strong=\"H8085\"* voice|strong=\"H6963\"*," + }, + { + "verseNum": 3, + "text": "He|strong=\"H3605\"* sends it|strong=\"H5921\"* out|strong=\"H5921\"* under|strong=\"H8478\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* sky|strong=\"H8064\"*," + }, + { + "verseNum": 4, + "text": "After|strong=\"H3588\"* it|strong=\"H3588\"* a|strong=\"H3068\"* voice|strong=\"H6963\"* roars|strong=\"H7580\"*." + }, + { + "verseNum": 5, + "text": "God|strong=\"H3808\"* thunders|strong=\"H7481\"* marvelously|strong=\"H6381\"* with|strong=\"H6213\"* his|strong=\"H3045\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* says to|strong=\"H3588\"* the|strong=\"H3588\"* snow|strong=\"H7950\"*, ‘Fall|strong=\"H1933\"* on the|strong=\"H3588\"* earth,’" + }, + { + "verseNum": 7, + "text": "He|strong=\"H3605\"* seals|strong=\"H2856\"* up|strong=\"H2856\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* every|strong=\"H3605\"* man|strong=\"H3605\"*," + }, + { + "verseNum": 8, + "text": "Then the|strong=\"H1119\"* animals|strong=\"H2416\"* take cover," + }, + { + "verseNum": 9, + "text": "Out|strong=\"H4480\"* of|strong=\"H4480\"* its|strong=\"H4480\"* room|strong=\"H2315\"* comes the|strong=\"H4480\"* storm|strong=\"H5492\"*," + }, + { + "verseNum": 10, + "text": "By|strong=\"H5414\"* the|strong=\"H5414\"* breath|strong=\"H5397\"* of|strong=\"H4325\"* God|strong=\"H5414\"*, ice|strong=\"H7140\"* is|strong=\"H4325\"* given|strong=\"H5414\"*," + }, + { + "verseNum": 11, + "text": "Yes, he|strong=\"H7377\"* loads|strong=\"H2959\"* the|strong=\"H6327\"* thick|strong=\"H5645\"* cloud|strong=\"H6051\"* with|strong=\"H6051\"* moisture|strong=\"H7377\"*." + }, + { + "verseNum": 12, + "text": "It|strong=\"H1931\"* is|strong=\"H1931\"* turned|strong=\"H2015\"* around|strong=\"H5921\"* by|strong=\"H5921\"* his|strong=\"H3605\"* guidance|strong=\"H8458\"*," + }, + { + "verseNum": 13, + "text": "whether it|strong=\"H4672\"* is|strong=\"H2617\"* for|strong=\"H2617\"* correction|strong=\"H7626\"*, or for|strong=\"H2617\"* his|strong=\"H4672\"* land," + }, + { + "verseNum": 14, + "text": "“Listen to|strong=\"H5975\"* this|strong=\"H2063\"*, Job." + }, + { + "verseNum": 15, + "text": "Do you|strong=\"H5921\"* know|strong=\"H3045\"* how|strong=\"H3045\"* God controls them|strong=\"H5921\"*," + }, + { + "verseNum": 16, + "text": "Do you|strong=\"H5921\"* know|strong=\"H3045\"* the|strong=\"H5921\"* workings of|strong=\"H5921\"* the|strong=\"H5921\"* clouds|strong=\"H5645\"*," + }, + { + "verseNum": 17, + "text": "You whose clothing is warm|strong=\"H2525\"*" + }, + { + "verseNum": 18, + "text": "Can you|strong=\"H5973\"*, with|strong=\"H5973\"* him|strong=\"H5973\"*, spread|strong=\"H7554\"* out|strong=\"H3332\"* the|strong=\"H5973\"* sky|strong=\"H7834\"*," + }, + { + "verseNum": 19, + "text": "Teach|strong=\"H3045\"* us|strong=\"H6440\"* what|strong=\"H4100\"* we|strong=\"H3068\"* will|strong=\"H3808\"* tell|strong=\"H3045\"* him|strong=\"H6440\"*," + }, + { + "verseNum": 20, + "text": "Will|strong=\"H3588\"* it|strong=\"H3588\"* be|strong=\"H3588\"* told|strong=\"H1696\"* him|strong=\"H3588\"* that|strong=\"H3588\"* I|strong=\"H3588\"* would speak|strong=\"H1696\"*?" + }, + { + "verseNum": 21, + "text": "Now|strong=\"H6258\"* men don’t see|strong=\"H7200\"* the|strong=\"H7200\"* light which|strong=\"H1931\"* is|strong=\"H1931\"* bright in|strong=\"H7200\"* the|strong=\"H7200\"* skies|strong=\"H7834\"*," + }, + { + "verseNum": 22, + "text": "Out|strong=\"H5921\"* of|strong=\"H5921\"* the|strong=\"H5921\"* north|strong=\"H6828\"* comes golden|strong=\"H2091\"* splendor|strong=\"H1935\"*." + }, + { + "verseNum": 23, + "text": "We|strong=\"H4672\"* can|strong=\"H3808\"*’t reach the|strong=\"H4672\"* Almighty|strong=\"H7706\"*." + }, + { + "verseNum": 24, + "text": "Therefore|strong=\"H3651\"* men|strong=\"H2450\"* revere|strong=\"H3372\"* him|strong=\"H7200\"*." + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Yahweh|strong=\"H3068\"* answered|strong=\"H6030\"* Job out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3068\"* whirlwind|strong=\"H5591\"*," + }, + { + "verseNum": 2, + "text": "“Who|strong=\"H4310\"* is|strong=\"H2088\"* this|strong=\"H2088\"* who|strong=\"H4310\"* darkens|strong=\"H2821\"* counsel|strong=\"H6098\"*" + }, + { + "verseNum": 3, + "text": "Brace yourself|strong=\"H3045\"* like a|strong=\"H3068\"* man|strong=\"H1397\"*," + }, + { + "verseNum": 4, + "text": "“Where were|strong=\"H1961\"* you|strong=\"H3045\"* when|strong=\"H1961\"* I|strong=\"H3045\"* laid|strong=\"H3245\"* the|strong=\"H3045\"* foundations|strong=\"H3245\"* of|strong=\"H3045\"* the|strong=\"H3045\"* earth?" + }, + { + "verseNum": 5, + "text": "Who|strong=\"H4310\"* determined|strong=\"H7760\"* its|strong=\"H5921\"* measures|strong=\"H4461\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* know|strong=\"H3045\"*?" + }, + { + "verseNum": 6, + "text": "What|strong=\"H4100\"* were|strong=\"H5921\"* its|strong=\"H5921\"* foundations fastened|strong=\"H2883\"* on|strong=\"H5921\"*?" + }, + { + "verseNum": 7, + "text": "when|strong=\"H1121\"* the|strong=\"H3605\"* morning|strong=\"H1242\"* stars|strong=\"H3556\"* sang|strong=\"H7442\"* together|strong=\"H3162\"*," + }, + { + "verseNum": 8, + "text": "“Or|strong=\"H1817\"* who shut up|strong=\"H3318\"* the|strong=\"H3318\"* sea|strong=\"H3220\"* with|strong=\"H3318\"* doors|strong=\"H1817\"*," + }, + { + "verseNum": 9, + "text": "when|strong=\"H6051\"* I|strong=\"H7760\"* made|strong=\"H7760\"* clouds|strong=\"H6051\"* its|strong=\"H7760\"* garment|strong=\"H3830\"*," + }, + { + "verseNum": 10, + "text": "marked out|strong=\"H5921\"* for|strong=\"H5921\"* it|strong=\"H7760\"* my|strong=\"H7760\"* bound," + }, + { + "verseNum": 11, + "text": "and|strong=\"H3254\"* said, ‘You|strong=\"H5704\"* may|strong=\"H3254\"* come here|strong=\"H6311\"*, but|strong=\"H3808\"* no|strong=\"H3808\"* further|strong=\"H3254\"*." + }, + { + "verseNum": 12, + "text": "“Have|strong=\"H3045\"* you|strong=\"H6680\"* commanded|strong=\"H6680\"* the|strong=\"H3117\"* morning|strong=\"H1242\"* in|strong=\"H3117\"* your|strong=\"H3045\"* days|strong=\"H3117\"*," + }, + { + "verseNum": 13, + "text": "that|strong=\"H4480\"* it might take hold of|strong=\"H4480\"* the|strong=\"H4480\"* ends|strong=\"H3671\"* of|strong=\"H4480\"* the|strong=\"H4480\"* earth," + }, + { + "verseNum": 14, + "text": "It|strong=\"H2015\"* is|strong=\"H3830\"* changed|strong=\"H2015\"* as|strong=\"H3644\"* clay|strong=\"H2563\"* under the|strong=\"H2015\"* seal|strong=\"H2368\"*," + }, + { + "verseNum": 15, + "text": "From|strong=\"H4513\"* the|strong=\"H7665\"* wicked, their|strong=\"H7665\"* light is|strong=\"H2220\"* withheld|strong=\"H4513\"*." + }, + { + "verseNum": 16, + "text": "“Have|strong=\"H8415\"* you|strong=\"H5704\"* entered|strong=\"H5704\"* into|strong=\"H1980\"* the|strong=\"H5704\"* springs|strong=\"H8415\"* of|strong=\"H3220\"* the|strong=\"H5704\"* sea|strong=\"H3220\"*?" + }, + { + "verseNum": 17, + "text": "Have|strong=\"H7200\"* the|strong=\"H7200\"* gates|strong=\"H8179\"* of|strong=\"H8179\"* death|strong=\"H4194\"* been|strong=\"H4194\"* revealed|strong=\"H1540\"* to|strong=\"H7200\"* you|strong=\"H7200\"*?" + }, + { + "verseNum": 18, + "text": "Have|strong=\"H3045\"* you|strong=\"H3605\"* comprehended the|strong=\"H3605\"* earth in|strong=\"H5046\"* its|strong=\"H3605\"* width?" + }, + { + "verseNum": 19, + "text": "“What|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H1870\"* way|strong=\"H1870\"* to|strong=\"H1870\"* the|strong=\"H1870\"* dwelling|strong=\"H7931\"* of|strong=\"H1870\"* light?" + }, + { + "verseNum": 20, + "text": "that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H3588\"* take|strong=\"H3947\"* it|strong=\"H3588\"* to|strong=\"H1004\"* its|strong=\"H3588\"* bound|strong=\"H1366\"*," + }, + { + "verseNum": 21, + "text": "Surely|strong=\"H3588\"* you|strong=\"H3588\"* know|strong=\"H3045\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H3117\"* born|strong=\"H3205\"* then|strong=\"H3588\"*," + }, + { + "verseNum": 22, + "text": "Have|strong=\"H7200\"* you|strong=\"H7200\"* entered the|strong=\"H7200\"* storehouses of|strong=\"H7200\"* the|strong=\"H7200\"* snow|strong=\"H7950\"*," + }, + { + "verseNum": 23, + "text": "which|strong=\"H4421\"* I|strong=\"H3117\"* have|strong=\"H6862\"* reserved|strong=\"H2820\"* against|strong=\"H4421\"* the|strong=\"H3117\"* time|strong=\"H6256\"* of|strong=\"H3117\"* trouble|strong=\"H6862\"*," + }, + { + "verseNum": 24, + "text": "By|strong=\"H5921\"* what|strong=\"H2088\"* way|strong=\"H1870\"* is|strong=\"H2088\"* the|strong=\"H5921\"* lightning distributed|strong=\"H2505\"*," + }, + { + "verseNum": 25, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* cut a|strong=\"H3068\"* channel|strong=\"H8585\"* for|strong=\"H6963\"* the|strong=\"H1870\"* flood|strong=\"H7858\"* water," + }, + { + "verseNum": 26, + "text": "to|strong=\"H5921\"* cause it|strong=\"H5921\"* to|strong=\"H5921\"* rain|strong=\"H4305\"* on|strong=\"H5921\"* a|strong=\"H3068\"* land where|strong=\"H5921\"* there is|strong=\"H3808\"* no|strong=\"H3808\"* man," + }, + { + "verseNum": 27, + "text": "to|strong=\"H7646\"* satisfy|strong=\"H7646\"* the|strong=\"H7646\"* waste|strong=\"H4875\"* and|strong=\"H7646\"* desolate|strong=\"H7722\"* ground," + }, + { + "verseNum": 28, + "text": "Does|strong=\"H3426\"* the|strong=\"H3205\"* rain|strong=\"H4306\"* have|strong=\"H3426\"* a|strong=\"H3068\"* father|strong=\"H3205\"*?" + }, + { + "verseNum": 29, + "text": "Whose|strong=\"H4310\"* womb did the|strong=\"H3205\"* ice|strong=\"H7140\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3205\"*?" + }, + { + "verseNum": 30, + "text": "The|strong=\"H6440\"* waters|strong=\"H4325\"* become hard|strong=\"H2244\"* like|strong=\"H6440\"* stone," + }, + { + "verseNum": 31, + "text": "“Can you|strong=\"H6605\"* bind|strong=\"H7194\"* the|strong=\"H6605\"* cluster of|strong=\"H4189\"* the|strong=\"H6605\"* Pleiades|strong=\"H3598\"*," + }, + { + "verseNum": 32, + "text": "Can|strong=\"H1121\"* you|strong=\"H5921\"* lead|strong=\"H5148\"* the|strong=\"H5921\"* constellations out|strong=\"H3318\"* in|strong=\"H5921\"* their|strong=\"H5921\"* season|strong=\"H6256\"*?" + }, + { + "verseNum": 33, + "text": "Do you|strong=\"H7760\"* know|strong=\"H3045\"* the|strong=\"H7760\"* laws of|strong=\"H2708\"* the|strong=\"H7760\"* heavens|strong=\"H8064\"*?" + }, + { + "verseNum": 34, + "text": "“Can you|strong=\"H6963\"* lift|strong=\"H7311\"* up|strong=\"H7311\"* your|strong=\"H7311\"* voice|strong=\"H6963\"* to|strong=\"H4325\"* the|strong=\"H3680\"* clouds|strong=\"H5645\"*," + }, + { + "verseNum": 35, + "text": "Can you|strong=\"H7971\"* send|strong=\"H7971\"* out|strong=\"H7971\"* lightnings|strong=\"H1300\"*, that|strong=\"H3212\"* they may go|strong=\"H3212\"*?" + }, + { + "verseNum": 36, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* put|strong=\"H5414\"* wisdom|strong=\"H2451\"* in|strong=\"H5414\"* the|strong=\"H5414\"* inward parts|strong=\"H2910\"*?" + }, + { + "verseNum": 37, + "text": "Who|strong=\"H4310\"* can|strong=\"H4310\"* count|strong=\"H5608\"* the|strong=\"H5608\"* clouds|strong=\"H7834\"* by|strong=\"H8064\"* wisdom|strong=\"H2451\"*?" + }, + { + "verseNum": 38, + "text": "when the|strong=\"H3332\"* dust|strong=\"H6083\"* runs into|strong=\"H3332\"* a|strong=\"H3068\"* mass|strong=\"H4165\"*," + }, + { + "verseNum": 39, + "text": "“Can you hunt|strong=\"H6679\"* the|strong=\"H4390\"* prey|strong=\"H2964\"* for|strong=\"H2416\"* the|strong=\"H4390\"* lioness|strong=\"H3833\"*," + }, + { + "verseNum": 40, + "text": "when|strong=\"H3588\"* they|strong=\"H3588\"* crouch|strong=\"H7817\"* in|strong=\"H3427\"* their|strong=\"H3588\"* dens|strong=\"H4585\"*," + }, + { + "verseNum": 41, + "text": "Who|strong=\"H4310\"* provides|strong=\"H3559\"* for|strong=\"H3588\"* the|strong=\"H3588\"* raven|strong=\"H6158\"* his|strong=\"H3559\"* prey|strong=\"H6718\"*," + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "“Do|strong=\"H8104\"* you|strong=\"H3045\"* know|strong=\"H3045\"* the|strong=\"H8104\"* time|strong=\"H6256\"* when|strong=\"H6256\"* the|strong=\"H8104\"* mountain|strong=\"H3277\"* goats|strong=\"H3277\"* give|strong=\"H3205\"* birth|strong=\"H3205\"*?" + }, + { + "verseNum": 2, + "text": "Can|strong=\"H3045\"* you|strong=\"H3045\"* count|strong=\"H5608\"* the|strong=\"H3205\"* months|strong=\"H3391\"* that|strong=\"H3045\"* they|strong=\"H6256\"* fulfill|strong=\"H4390\"*?" + }, + { + "verseNum": 3, + "text": "They bow|strong=\"H3766\"* themselves. They bear their|strong=\"H7971\"* young|strong=\"H3206\"*." + }, + { + "verseNum": 4, + "text": "Their|strong=\"H7725\"* young|strong=\"H1121\"* ones|strong=\"H1121\"* become|strong=\"H7725\"* strong|strong=\"H2492\"*." + }, + { + "verseNum": 5, + "text": "“Who|strong=\"H4310\"* has|strong=\"H4310\"* set|strong=\"H7971\"* the|strong=\"H7971\"* wild|strong=\"H6501\"* donkey|strong=\"H6501\"* free|strong=\"H2670\"*?" + }, + { + "verseNum": 6, + "text": "whose home|strong=\"H1004\"* I|strong=\"H7760\"* have|strong=\"H1004\"* made|strong=\"H7760\"* the|strong=\"H7760\"* wilderness|strong=\"H6160\"*," + }, + { + "verseNum": 7, + "text": "He|strong=\"H3808\"* scorns|strong=\"H7832\"* the|strong=\"H8085\"* tumult|strong=\"H1995\"* of|strong=\"H1995\"* the|strong=\"H8085\"* city|strong=\"H7151\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H3605\"* range|strong=\"H3491\"* of|strong=\"H2022\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* is|strong=\"H3605\"* his|strong=\"H3605\"* pasture|strong=\"H4829\"*." + }, + { + "verseNum": 9, + "text": "“Will|strong=\"H5647\"* the|strong=\"H5921\"* wild|strong=\"H7214\"* ox|strong=\"H7214\"* be|strong=\"H7214\"* content to|strong=\"H5921\"* serve|strong=\"H5647\"* you|strong=\"H5921\"*?" + }, + { + "verseNum": 10, + "text": "Can you|strong=\"H7214\"* hold the|strong=\"H7194\"* wild|strong=\"H7214\"* ox|strong=\"H7214\"* in|strong=\"H6010\"* the|strong=\"H7194\"* furrow|strong=\"H8525\"* with|strong=\"H7194\"* his harness?" + }, + { + "verseNum": 11, + "text": "Will|strong=\"H7227\"* you|strong=\"H3588\"* trust him|strong=\"H5800\"*, because|strong=\"H3588\"* his|strong=\"H3588\"* strength|strong=\"H3581\"* is|strong=\"H3581\"* great|strong=\"H7227\"*?" + }, + { + "verseNum": 12, + "text": "Will|strong=\"H2233\"* you|strong=\"H3588\"* confide in|strong=\"H7725\"* him|strong=\"H7725\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H2233\"* bring|strong=\"H7725\"* home|strong=\"H7725\"* your|strong=\"H7725\"* seed|strong=\"H2233\"*," + }, + { + "verseNum": 13, + "text": "“The wings|strong=\"H3671\"* of|strong=\"H3671\"* the ostrich|strong=\"H5133\"* wave proudly," + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* she|strong=\"H3588\"* leaves|strong=\"H5800\"* her|strong=\"H5921\"* eggs|strong=\"H1000\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth|strong=\"H6083\"*," + }, + { + "verseNum": 15, + "text": "and|strong=\"H7704\"* forgets|strong=\"H7911\"* that|strong=\"H3588\"* the|strong=\"H3588\"* foot|strong=\"H7272\"* may|strong=\"H7272\"* crush|strong=\"H2115\"* them|strong=\"H3588\"*," + }, + { + "verseNum": 16, + "text": "She|strong=\"H3808\"* deals harshly with|strong=\"H1121\"* her|strong=\"H7188\"* young|strong=\"H1121\"* ones|strong=\"H1121\"*, as|strong=\"H1121\"* if|strong=\"H1121\"* they|strong=\"H3808\"* were|strong=\"H1121\"* not|strong=\"H3808\"* hers." + }, + { + "verseNum": 17, + "text": "because|strong=\"H3588\"* God|strong=\"H3808\"* has|strong=\"H3588\"* deprived|strong=\"H5382\"* her|strong=\"H3588\"* of|strong=\"H2451\"* wisdom|strong=\"H2451\"*," + }, + { + "verseNum": 18, + "text": "When|strong=\"H6256\"* she|strong=\"H6256\"* lifts|strong=\"H4754\"* up|strong=\"H4754\"* herself|strong=\"H4754\"* on|strong=\"H7392\"* high|strong=\"H4791\"*," + }, + { + "verseNum": 19, + "text": "“Have|strong=\"H5414\"* you|strong=\"H5414\"* given|strong=\"H5414\"* the|strong=\"H5414\"* horse|strong=\"H5483\"* might|strong=\"H1369\"*?" + }, + { + "verseNum": 20, + "text": "Have you made him to|strong=\"H1935\"* leap|strong=\"H7493\"* as a|strong=\"H3068\"* locust?" + }, + { + "verseNum": 21, + "text": "He|strong=\"H3318\"* paws|strong=\"H2658\"* in|strong=\"H3318\"* the|strong=\"H3318\"* valley|strong=\"H6010\"*, and|strong=\"H3318\"* rejoices|strong=\"H7797\"* in|strong=\"H3318\"* his|strong=\"H3318\"* strength|strong=\"H3581\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H3808\"* mocks at|strong=\"H7725\"* fear|strong=\"H6343\"*, and|strong=\"H7725\"* is|strong=\"H2719\"* not|strong=\"H3808\"* dismayed|strong=\"H2865\"*," + }, + { + "verseNum": 23, + "text": "The|strong=\"H5921\"* quiver rattles|strong=\"H7439\"* against|strong=\"H5921\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 24, + "text": "He|strong=\"H3588\"* eats up the|strong=\"H3588\"* ground with|strong=\"H6963\"* fierceness|strong=\"H7494\"* and|strong=\"H6963\"* rage|strong=\"H7267\"*," + }, + { + "verseNum": 25, + "text": "As|strong=\"H1767\"* often|strong=\"H1767\"* as|strong=\"H1767\"* the|strong=\"H7306\"* trumpet|strong=\"H7782\"* sounds he snorts, ‘Aha|strong=\"H1889\"*!’" + }, + { + "verseNum": 26, + "text": "“Is|strong=\"H3671\"* it|strong=\"H6566\"* by your|strong=\"H6566\"* wisdom that the|strong=\"H6566\"* hawk|strong=\"H5322\"* soars," + }, + { + "verseNum": 27, + "text": "Is|strong=\"H6310\"* it|strong=\"H5921\"* at|strong=\"H5921\"* your|strong=\"H5921\"* command|strong=\"H6310\"* that|strong=\"H3588\"* the|strong=\"H5921\"* eagle|strong=\"H5404\"* mounts|strong=\"H1361\"* up|strong=\"H7311\"*," + }, + { + "verseNum": 28, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* cliff|strong=\"H5553\"* he|strong=\"H5921\"* dwells|strong=\"H7931\"* and|strong=\"H8127\"* makes his|strong=\"H5921\"* home," + }, + { + "verseNum": 29, + "text": "From|strong=\"H7350\"* there|strong=\"H8033\"* he|strong=\"H8033\"* spies|strong=\"H2658\"* out|strong=\"H2658\"* the|strong=\"H8033\"* prey." + }, + { + "verseNum": 30, + "text": "His|strong=\"H1931\"* young ones also|strong=\"H1931\"* suck|strong=\"H5966\"* up|strong=\"H5966\"* blood|strong=\"H1818\"*." + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "Moreover Yahweh|strong=\"H3068\"* answered|strong=\"H6030\"* Job," + }, + { + "verseNum": 2, + "text": "“Shall he who|strong=\"H7706\"* argues contend|strong=\"H7378\"* with|strong=\"H5973\"* the|strong=\"H5973\"* Almighty|strong=\"H7706\"*?" + }, + { + "verseNum": 3, + "text": "Then|strong=\"H6030\"* Job answered|strong=\"H6030\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 4, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* of|strong=\"H3027\"* small|strong=\"H7043\"* account. What|strong=\"H4100\"* will|strong=\"H3027\"* I|strong=\"H2005\"* answer|strong=\"H7725\"* you|strong=\"H7725\"*?" + }, + { + "verseNum": 5, + "text": "I|strong=\"H3808\"* have|strong=\"H3808\"* spoken|strong=\"H1696\"* once|strong=\"H3254\"*, and|strong=\"H6030\"* I|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* answer|strong=\"H6030\"*;" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H6030\"* Yahweh|strong=\"H3068\"* answered|strong=\"H6030\"* Job out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3068\"* whirlwind|strong=\"H5591\"*:" + }, + { + "verseNum": 7, + "text": "“Now|strong=\"H4994\"* brace yourself|strong=\"H3045\"* like a|strong=\"H3068\"* man|strong=\"H1397\"*." + }, + { + "verseNum": 8, + "text": "Will|strong=\"H4616\"* you|strong=\"H6663\"* even annul|strong=\"H6565\"* my|strong=\"H6565\"* judgment|strong=\"H4941\"*?" + }, + { + "verseNum": 9, + "text": "Or|strong=\"H2220\"* do you|strong=\"H3644\"* have|strong=\"H2220\"* an|strong=\"H3644\"* arm|strong=\"H2220\"* like|strong=\"H3644\"* God?" + }, + { + "verseNum": 10, + "text": "“Now|strong=\"H4994\"* deck|strong=\"H5710\"* yourself|strong=\"H3847\"* with|strong=\"H3847\"* excellency|strong=\"H1347\"* and|strong=\"H1935\"* dignity|strong=\"H1363\"*." + }, + { + "verseNum": 11, + "text": "Pour|strong=\"H6327\"* out|strong=\"H7200\"* the|strong=\"H3605\"* fury|strong=\"H5678\"* of|strong=\"H3605\"* your|strong=\"H3605\"* anger|strong=\"H5678\"*." + }, + { + "verseNum": 12, + "text": "Look|strong=\"H7200\"* at|strong=\"H7200\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H7563\"* proud|strong=\"H1343\"*, and|strong=\"H7200\"* humble|strong=\"H3665\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 13, + "text": "Hide|strong=\"H2934\"* them|strong=\"H6440\"* in|strong=\"H6440\"* the|strong=\"H6440\"* dust|strong=\"H6083\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H1571\"* I|strong=\"H3588\"* will|strong=\"H1571\"* also|strong=\"H1571\"* admit to|strong=\"H3588\"* you|strong=\"H3588\"*" + }, + { + "verseNum": 15, + "text": "“See|strong=\"H2009\"* now|strong=\"H4994\"* behemoth, which|strong=\"H2682\"* I|strong=\"H2009\"* made|strong=\"H6213\"* as|strong=\"H6213\"* well|strong=\"H5973\"* as|strong=\"H6213\"* you|strong=\"H6213\"*." + }, + { + "verseNum": 16, + "text": "Look|strong=\"H2009\"* now|strong=\"H4994\"*, his|strong=\"H2009\"* strength|strong=\"H3581\"* is|strong=\"H2009\"* in|strong=\"H4994\"* his|strong=\"H2009\"* thighs." + }, + { + "verseNum": 17, + "text": "He|strong=\"H2654\"* moves his|strong=\"H2654\"* tail|strong=\"H2180\"* like|strong=\"H3644\"* a|strong=\"H3068\"* cedar." + }, + { + "verseNum": 18, + "text": "His bones|strong=\"H6106\"* are|strong=\"H6106\"* like tubes of|strong=\"H6106\"* bronze|strong=\"H5154\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H6213\"* chief|strong=\"H7225\"* of|strong=\"H1870\"* the|strong=\"H6213\"* ways|strong=\"H1870\"* of|strong=\"H1870\"* God." + }, + { + "verseNum": 20, + "text": "Surely|strong=\"H3588\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* produce food for|strong=\"H3588\"* him|strong=\"H3605\"*," + }, + { + "verseNum": 21, + "text": "He|strong=\"H8478\"* lies|strong=\"H7901\"* under|strong=\"H8478\"* the|strong=\"H8478\"* lotus|strong=\"H6628\"* trees|strong=\"H6628\"*," + }, + { + "verseNum": 22, + "text": "The|strong=\"H5437\"* lotuses cover|strong=\"H5526\"* him|strong=\"H5526\"* with|strong=\"H5526\"* their|strong=\"H5437\"* shade." + }, + { + "verseNum": 23, + "text": "Behold|strong=\"H2005\"*, if|strong=\"H3588\"* a|strong=\"H3068\"* river|strong=\"H5104\"* overflows, he|strong=\"H3588\"* doesn’t tremble|strong=\"H2648\"*." + }, + { + "verseNum": 24, + "text": "Shall|strong=\"H5869\"* any|strong=\"H3947\"* take|strong=\"H3947\"* him|strong=\"H3947\"* when he|strong=\"H3947\"* is|strong=\"H5869\"* on|strong=\"H5869\"* the|strong=\"H3947\"* watch|strong=\"H5869\"*," + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 1, + "text": "“Can|strong=\"H4758\"* you|strong=\"H1571\"* draw out|strong=\"H2904\"* Leviathan+ 41:1 Leviathan is a name for a crocodile or similar creature.* with|strong=\"H1571\"* a|strong=\"H3068\"* fish hook," + }, + { + "verseNum": 2, + "text": "Can|strong=\"H4310\"* you|strong=\"H3588\"* put a|strong=\"H3068\"* rope into his|strong=\"H6440\"* nose," + }, + { + "verseNum": 3, + "text": "Will|strong=\"H4310\"* he|strong=\"H1931\"* make|strong=\"H7999\"* many petitions to|strong=\"H8064\"* you|strong=\"H3605\"*," + }, + { + "verseNum": 4, + "text": "Will|strong=\"H1697\"* he|strong=\"H3808\"* make|strong=\"H2790\"* a|strong=\"H3068\"* covenant with|strong=\"H1697\"* you|strong=\"H3808\"*," + }, + { + "verseNum": 5, + "text": "Will|strong=\"H4310\"* you|strong=\"H6440\"* play with|strong=\"H6440\"* him|strong=\"H6440\"* as|strong=\"H6440\"* with|strong=\"H6440\"* a|strong=\"H3068\"* bird?" + }, + { + "verseNum": 6, + "text": "Will|strong=\"H4310\"* traders barter for|strong=\"H6440\"* him|strong=\"H6440\"*?" + }, + { + "verseNum": 7, + "text": "Can you fill his|strong=\"H5462\"* skin with barbed irons," + }, + { + "verseNum": 8, + "text": "Lay your|strong=\"H3808\"* hand on|strong=\"H3808\"* him." + }, + { + "verseNum": 9, + "text": "Behold|strong=\"H3808\"*, the|strong=\"H3920\"* hope of|strong=\"H3808\"* him|strong=\"H1692\"* is|strong=\"H3808\"* in|strong=\"H3808\"* vain." + }, + { + "verseNum": 10, + "text": "None is|strong=\"H5869\"* so fierce that|strong=\"H5869\"* he dare stir him|strong=\"H5869\"* up." + }, + { + "verseNum": 11, + "text": "Who|strong=\"H1980\"* has|strong=\"H6310\"* first given to|strong=\"H1980\"* me|strong=\"H1980\"*, that|strong=\"H4422\"* I|strong=\"H1980\"* should|strong=\"H1980\"* repay him|strong=\"H4422\"*?" + }, + { + "verseNum": 12, + "text": "“I|strong=\"H3318\"* will|strong=\"H6227\"* not|strong=\"H3318\"* keep silence concerning his|strong=\"H3318\"* limbs," + }, + { + "verseNum": 13, + "text": "Who|strong=\"H5315\"* can strip off|strong=\"H3318\"* his|strong=\"H3318\"* outer garment?" + }, + { + "verseNum": 14, + "text": "Who can open|strong=\"H6440\"* the|strong=\"H6440\"* doors of|strong=\"H6440\"* his|strong=\"H6440\"* face|strong=\"H6440\"*?" + }, + { + "verseNum": 15, + "text": "Strong|strong=\"H4651\"* scales are|strong=\"H1077\"* his|strong=\"H5921\"* pride," + }, + { + "verseNum": 16, + "text": "One is|strong=\"H3820\"* so|strong=\"H3644\"* near to|strong=\"H3820\"* another," + }, + { + "verseNum": 17, + "text": "They|strong=\"H7667\"* are joined to|strong=\"H1481\"* one another." + }, + { + "verseNum": 18, + "text": "His|strong=\"H6965\"* sneezing flashes out|strong=\"H6965\"* light." + }, + { + "verseNum": 19, + "text": "Out|strong=\"H2803\"* of|strong=\"H6086\"* his|strong=\"H2803\"* mouth go burning torches." + }, + { + "verseNum": 20, + "text": "Out|strong=\"H3808\"* of|strong=\"H1121\"* his|strong=\"H3808\"* nostrils a|strong=\"H3068\"* smoke goes," + }, + { + "verseNum": 21, + "text": "His|strong=\"H2803\"* breath kindles coals." + }, + { + "verseNum": 22, + "text": "There|strong=\"H8478\"* is|strong=\"H2742\"* strength in|strong=\"H5921\"* his|strong=\"H5921\"* neck." + }, + { + "verseNum": 23, + "text": "The|strong=\"H7760\"* flakes of|strong=\"H3220\"* his|strong=\"H7760\"* flesh are joined together|strong=\"H3220\"*." + }, + { + "verseNum": 24, + "text": "His|strong=\"H2803\"* heart is|strong=\"H8415\"* as|strong=\"H2803\"* firm as|strong=\"H2803\"* a|strong=\"H3068\"* stone," + }, + { + "verseNum": 25, + "text": "When|strong=\"H6213\"* he|strong=\"H6213\"* raises himself|strong=\"H6213\"* up|strong=\"H5921\"*, the|strong=\"H5921\"* mighty are|strong=\"H6213\"* afraid." + }, + { + "verseNum": 26, + "text": "If|strong=\"H7200\"* one|strong=\"H3605\"* attacks him|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H3605\"* sword, it|strong=\"H1931\"* can|strong=\"H7200\"*’t prevail;" + }, + { + "verseNum": 27, + "text": "He counts iron as straw," + }, + { + "verseNum": 28, + "text": "The arrow can’t make him flee." + }, + { + "verseNum": 29, + "text": "Clubs are counted as stubble." + }, + { + "verseNum": 30, + "text": "His undersides are like sharp potsherds," + }, + { + "verseNum": 31, + "text": "He makes the deep to boil like a|strong=\"H3068\"* pot." + }, + { + "verseNum": 32, + "text": "He makes a|strong=\"H3068\"* path shine after him." + }, + { + "verseNum": 33, + "text": "On earth there is not his equal," + }, + { + "verseNum": 34, + "text": "He sees everything that is high." + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Job answered|strong=\"H6030\"* Yahweh|strong=\"H3068\"*:" + }, + { + "verseNum": 2, + "text": "“I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* can|strong=\"H3201\"* do|strong=\"H3201\"* all|strong=\"H3605\"* things|strong=\"H3605\"*," + }, + { + "verseNum": 3, + "text": "You|strong=\"H3045\"* asked, ‘Who|strong=\"H4310\"* is|strong=\"H2088\"* this|strong=\"H2088\"* who|strong=\"H4310\"* hides|strong=\"H5956\"* counsel|strong=\"H6098\"* without|strong=\"H3808\"* knowledge|strong=\"H1847\"*?’" + }, + { + "verseNum": 4, + "text": "You|strong=\"H3045\"* said|strong=\"H1696\"*, ‘Listen|strong=\"H8085\"*, now|strong=\"H4994\"*, and|strong=\"H8085\"* I|strong=\"H3045\"* will|strong=\"H8085\"* speak|strong=\"H1696\"*;" + }, + { + "verseNum": 5, + "text": "I|strong=\"H6258\"* had|strong=\"H5869\"* heard|strong=\"H8085\"* of|strong=\"H5869\"* you|strong=\"H7200\"* by|strong=\"H7200\"* the|strong=\"H8085\"* hearing|strong=\"H8085\"* of|strong=\"H5869\"* the|strong=\"H8085\"* ear|strong=\"H8085\"*," + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* abhor|strong=\"H3988\"* myself|strong=\"H5162\"*," + }, + { + "verseNum": 7, + "text": "It|strong=\"H3588\"* was|strong=\"H3068\"* so|strong=\"H1961\"*, that|strong=\"H3588\"* after|strong=\"H1961\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* Job|strong=\"H3808\"*, Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Eliphaz the|strong=\"H3588\"* Temanite|strong=\"H8489\"*, “My|strong=\"H3068\"* wrath is|strong=\"H3068\"* kindled|strong=\"H2734\"* against|strong=\"H2734\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* against|strong=\"H2734\"* your|strong=\"H3068\"* two|strong=\"H8147\"* friends|strong=\"H7453\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* not|strong=\"H3808\"* spoken|strong=\"H1696\"* of|strong=\"H3068\"* me|strong=\"H1696\"* the|strong=\"H3588\"* thing|strong=\"H1697\"* that|strong=\"H3588\"* is|strong=\"H3068\"* right|strong=\"H3559\"*, as|strong=\"H1697\"* my|strong=\"H3068\"* servant|strong=\"H5650\"* Job|strong=\"H3808\"* has|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, take|strong=\"H3947\"* to|strong=\"H1696\"* yourselves|strong=\"H5921\"* seven|strong=\"H7651\"* bulls|strong=\"H6499\"* and|strong=\"H3212\"* seven|strong=\"H7651\"* rams, and|strong=\"H3212\"* go|strong=\"H3212\"* to|strong=\"H1696\"* my|strong=\"H3947\"* servant|strong=\"H5650\"* Job|strong=\"H3808\"*, and|strong=\"H3212\"* offer|strong=\"H5927\"* up|strong=\"H5927\"* for|strong=\"H3588\"* yourselves|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*; and|strong=\"H3212\"* my|strong=\"H3947\"* servant|strong=\"H5650\"* Job|strong=\"H3808\"* shall|strong=\"H5650\"* pray|strong=\"H6419\"* for|strong=\"H3588\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5650\"* accept|strong=\"H3947\"* him|strong=\"H6440\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* not|strong=\"H3808\"* deal|strong=\"H6213\"* with|strong=\"H5973\"* you|strong=\"H3588\"* according|strong=\"H5921\"* to|strong=\"H1696\"* your|strong=\"H3947\"* folly|strong=\"H5039\"*. For|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5650\"* not|strong=\"H3808\"* spoken|strong=\"H1696\"* of|strong=\"H6440\"* me|strong=\"H6440\"* the|strong=\"H6440\"* thing|strong=\"H5039\"* that|strong=\"H3588\"* is|strong=\"H5650\"* right|strong=\"H3559\"*, as|strong=\"H6213\"* my|strong=\"H3947\"* servant|strong=\"H5650\"* Job|strong=\"H3808\"* has|strong=\"H5650\"*.”" + }, + { + "verseNum": 9, + "text": "So|strong=\"H6213\"* Eliphaz the|strong=\"H6440\"* Temanite|strong=\"H8489\"* and|strong=\"H3068\"* Bildad|strong=\"H1085\"* the|strong=\"H6440\"* Shuhite|strong=\"H7747\"* and|strong=\"H3068\"* Zophar|strong=\"H6691\"* the|strong=\"H6440\"* Naamathite|strong=\"H5284\"* went|strong=\"H3212\"* and|strong=\"H3068\"* did|strong=\"H6213\"* what|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H1696\"* them|strong=\"H6440\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* accepted|strong=\"H5375\"* Job|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* restored|strong=\"H7725\"* Job’s prosperity when|strong=\"H7725\"* he|strong=\"H3068\"* prayed|strong=\"H6419\"* for|strong=\"H1157\"* his|strong=\"H3605\"* friends|strong=\"H7453\"*. Yahweh|strong=\"H3068\"* gave|strong=\"H7725\"* Job twice|strong=\"H4932\"* as|strong=\"H3068\"* much|strong=\"H4932\"* as|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* before." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H5414\"* all|strong=\"H3605\"* his|strong=\"H3605\"* brothers, all|strong=\"H3605\"* his|strong=\"H3605\"* sisters, and|strong=\"H3068\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* had|strong=\"H3068\"* been|strong=\"H3605\"* of|strong=\"H1004\"* his|strong=\"H3605\"* acquaintance|strong=\"H3045\"* before|strong=\"H6440\"*, came|strong=\"H3068\"* to|strong=\"H3068\"* him|strong=\"H5414\"* and|strong=\"H3068\"* ate bread|strong=\"H3899\"* with|strong=\"H5973\"* him|strong=\"H5414\"* in|strong=\"H5921\"* his|strong=\"H3605\"* house|strong=\"H1004\"*. They|strong=\"H3068\"* comforted|strong=\"H5162\"* him|strong=\"H5414\"*, and|strong=\"H3068\"* consoled|strong=\"H5110\"* him|strong=\"H5414\"* concerning|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H3045\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* brought|strong=\"H5414\"* on|strong=\"H5921\"* him|strong=\"H5414\"*. Everyone|strong=\"H3605\"* also|strong=\"H3068\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* a|strong=\"H3068\"* piece|strong=\"H7192\"* of|strong=\"H1004\"* money|strong=\"H7192\"*,+ 42:11 literally, kesitah, a unit of money, probably silver* and|strong=\"H3068\"* everyone|strong=\"H3605\"* a|strong=\"H3068\"* ring|strong=\"H5141\"* of|strong=\"H1004\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 12, + "text": "So|strong=\"H1961\"* Yahweh|strong=\"H3068\"* blessed|strong=\"H1288\"* the|strong=\"H3068\"* latter end of|strong=\"H3068\"* Job more|strong=\"H1961\"* than|strong=\"H3068\"* his|strong=\"H3068\"* beginning|strong=\"H7225\"*. He|strong=\"H3068\"* had|strong=\"H3068\"* fourteen|strong=\"H6240\"* thousand sheep|strong=\"H6629\"*, six|strong=\"H8337\"* thousand camels|strong=\"H1581\"*, one|strong=\"H1961\"* thousand yoke|strong=\"H6776\"* of|strong=\"H3068\"* oxen|strong=\"H1241\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* thousand female donkeys." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1121\"* had|strong=\"H1961\"* also|strong=\"H1121\"* seven|strong=\"H7658\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* three|strong=\"H7969\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H7121\"* called|strong=\"H7121\"* the|strong=\"H7121\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H7121\"* first, Jemimah|strong=\"H3224\"*; and|strong=\"H8034\"* the|strong=\"H7121\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H7121\"* second|strong=\"H8145\"*, Keziah|strong=\"H7103\"*; and|strong=\"H8034\"* the|strong=\"H7121\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H7121\"* third|strong=\"H7992\"*, Keren Happuch." + }, + { + "verseNum": 15, + "text": "In|strong=\"H8432\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H5159\"* were|strong=\"H1992\"* no|strong=\"H3808\"* women|strong=\"H1323\"* found|strong=\"H4672\"* so|strong=\"H5414\"* beautiful|strong=\"H3303\"* as|strong=\"H3303\"* the|strong=\"H3605\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Job|strong=\"H3808\"*. Their|strong=\"H3605\"* father gave|strong=\"H5414\"* them|strong=\"H5414\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"* among|strong=\"H8432\"* their|strong=\"H3605\"* brothers." + }, + { + "verseNum": 16, + "text": "After|strong=\"H7200\"* this|strong=\"H2063\"* Job lived|strong=\"H2421\"* one|strong=\"H2421\"* hundred|strong=\"H3967\"* forty years|strong=\"H8141\"*, and|strong=\"H3967\"* saw|strong=\"H7200\"* his|strong=\"H7200\"* sons|strong=\"H1121\"*, and|strong=\"H3967\"* his|strong=\"H7200\"* sons|strong=\"H1121\"*’ sons|strong=\"H1121\"*, to|strong=\"H1121\"* four generations|strong=\"H1755\"*." + }, + { + "verseNum": 17, + "text": "So|strong=\"H4191\"* Job died|strong=\"H4191\"*, being old|strong=\"H2205\"* and|strong=\"H3117\"* full|strong=\"H3117\"* of|strong=\"H3117\"* days|strong=\"H3117\"*." + } + ] + } + ] + }, + { + "name": "Psalms", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Blessed is|strong=\"H1870\"* the|strong=\"H1870\"* man|strong=\"H7563\"* who|strong=\"H3427\"* doesn’t walk|strong=\"H1980\"* in|strong=\"H3427\"* the|strong=\"H1870\"* counsel|strong=\"H6098\"* of|strong=\"H3427\"* the|strong=\"H1870\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 2, + "text": "but|strong=\"H3588\"* his|strong=\"H3068\"* delight|strong=\"H2656\"* is|strong=\"H3068\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s+ 1:2 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* law|strong=\"H8451\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H6213\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* tree|strong=\"H6086\"* planted|strong=\"H8362\"* by|strong=\"H5921\"* the|strong=\"H3605\"* streams|strong=\"H6388\"* of|strong=\"H4325\"* water|strong=\"H4325\"*," + }, + { + "verseNum": 4, + "text": "The|strong=\"H3588\"* wicked|strong=\"H7563\"* are|strong=\"H7563\"* not|strong=\"H3808\"* so|strong=\"H3651\"*," + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* shall|strong=\"H5712\"* not|strong=\"H3808\"* stand|strong=\"H6965\"* in|strong=\"H5921\"* the|strong=\"H5921\"* judgment|strong=\"H4941\"*," + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* knows|strong=\"H3045\"* the|strong=\"H3588\"* way|strong=\"H1870\"* of|strong=\"H3068\"* the|strong=\"H3588\"* righteous|strong=\"H6662\"*," + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* the|strong=\"H4100\"* nations|strong=\"H1471\"* rage|strong=\"H7283\"*," + }, + { + "verseNum": 2, + "text": "The|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5921\"* earth take|strong=\"H3320\"* a|strong=\"H3068\"* stand|strong=\"H3320\"*," + }, + { + "verseNum": 3, + "text": "“Let’s break|strong=\"H5423\"* their|strong=\"H7993\"* bonds|strong=\"H4147\"* apart|strong=\"H5423\"*," + }, + { + "verseNum": 4, + "text": "He|strong=\"H8064\"* who|strong=\"H3427\"* sits|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* heavens|strong=\"H8064\"* will|strong=\"H8064\"* laugh|strong=\"H7832\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H1696\"* he|strong=\"H1696\"* will speak|strong=\"H1696\"* to|strong=\"H1696\"* them in|strong=\"H1696\"* his|strong=\"H1696\"* anger|strong=\"H2740\"*," + }, + { + "verseNum": 6, + "text": "“Yet|strong=\"H5921\"* I|strong=\"H5921\"* have|strong=\"H4428\"* set|strong=\"H5258\"* my|strong=\"H5921\"* King|strong=\"H4428\"* on|strong=\"H5921\"* my|strong=\"H5921\"* holy|strong=\"H6944\"* hill|strong=\"H2022\"* of|strong=\"H4428\"* Zion|strong=\"H6726\"*.”" + }, + { + "verseNum": 7, + "text": "I|strong=\"H3117\"* will|strong=\"H3068\"* tell|strong=\"H5608\"* of|strong=\"H1121\"* the|strong=\"H3205\"* decree|strong=\"H2706\"*:" + }, + { + "verseNum": 8, + "text": "Ask|strong=\"H7592\"* of|strong=\"H4480\"* me|strong=\"H5414\"*, and|strong=\"H1471\"* I|strong=\"H5414\"* will|strong=\"H1471\"* give|strong=\"H5414\"* the|strong=\"H5414\"* nations|strong=\"H1471\"* for|strong=\"H7592\"* your|strong=\"H5414\"* inheritance|strong=\"H5159\"*," + }, + { + "verseNum": 9, + "text": "You|strong=\"H7489\"* shall|strong=\"H7626\"* break|strong=\"H7489\"* them|strong=\"H1270\"* with|strong=\"H3627\"* a|strong=\"H3068\"* rod|strong=\"H7626\"* of|strong=\"H7626\"* iron|strong=\"H1270\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* be|strong=\"H4428\"* wise|strong=\"H7919\"*, you|strong=\"H3256\"* kings|strong=\"H4428\"*." + }, + { + "verseNum": 11, + "text": "Serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* fear|strong=\"H3374\"*," + }, + { + "verseNum": 12, + "text": "Give sincere homage|strong=\"H5401\"* to|strong=\"H1870\"* the|strong=\"H3605\"* Son|strong=\"H1248\"*,+ 2:12 or, Kiss the son* lest|strong=\"H6435\"* he|strong=\"H3588\"* be|strong=\"H1870\"* angry, and|strong=\"H1870\"* you|strong=\"H3588\"* perish on|strong=\"H1870\"* the|strong=\"H3605\"* way|strong=\"H1870\"*," + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, how my|strong=\"H1732\"* adversaries have|strong=\"H1121\"* increased!" + }, + { + "verseNum": 2, + "text": "Many|strong=\"H7227\"* there|strong=\"H3068\"* are|strong=\"H4100\"* who|strong=\"H3068\"* say of|strong=\"H3068\"* my|strong=\"H3068\"* soul," + }, + { + "verseNum": 3, + "text": "But|strong=\"H7227\"* you|strong=\"H5315\"*, Yahweh|strong=\"H3068\"*, are|strong=\"H7227\"* a|strong=\"H3068\"* shield around me|strong=\"H5315\"*," + }, + { + "verseNum": 4, + "text": "I|strong=\"H3068\"* cry to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* my|strong=\"H3068\"* voice," + }, + { + "verseNum": 5, + "text": "I|strong=\"H3068\"* laid myself down|strong=\"H7121\"* and|strong=\"H3068\"* slept." + }, + { + "verseNum": 6, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3588\"* be|strong=\"H3068\"* afraid of|strong=\"H3068\"* tens of|strong=\"H3068\"* thousands of|strong=\"H3068\"* people" + }, + { + "verseNum": 7, + "text": "Arise, Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 8, + "text": "Salvation|strong=\"H3467\"* belongs to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Answer me when I call, God of|strong=\"H4210\"* my|strong=\"H1732\"* righteousness." + }, + { + "verseNum": 2, + "text": "You|strong=\"H7121\"* sons of|strong=\"H8085\"* men|strong=\"H7121\"*, how|strong=\"H8085\"* long|strong=\"H8085\"* shall|strong=\"H6664\"* my|strong=\"H8085\"* glory be|strong=\"H2603\"* turned into dishonor?" + }, + { + "verseNum": 3, + "text": "But|strong=\"H4100\"* know that|strong=\"H1121\"* Yahweh|strong=\"H3068\"* has|strong=\"H4100\"* set|strong=\"H1245\"* apart for|strong=\"H5704\"* himself|strong=\"H1245\"* him|strong=\"H1245\"* who|strong=\"H1121\"* is|strong=\"H4100\"* godly;" + }, + { + "verseNum": 4, + "text": "Stand in|strong=\"H3068\"* awe, and|strong=\"H3068\"* don’t sin." + }, + { + "verseNum": 5, + "text": "Offer the|strong=\"H5921\"* sacrifices of|strong=\"H5921\"* righteousness." + }, + { + "verseNum": 6, + "text": "Many say, “Who|strong=\"H3068\"* will|strong=\"H3068\"* show us any good?”" + }, + { + "verseNum": 7, + "text": "You|strong=\"H6440\"* have|strong=\"H3068\"* put|strong=\"H3068\"* gladness in|strong=\"H5921\"* my|strong=\"H3068\"* heart," + }, + { + "verseNum": 8, + "text": "In|strong=\"H5414\"* peace I|strong=\"H5414\"* will|strong=\"H3820\"* both lay|strong=\"H5414\"* myself|strong=\"H3820\"* down|strong=\"H5414\"* and|strong=\"H8057\"* sleep," + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Give ear to|strong=\"H1732\"* my|strong=\"H1732\"* words, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "Listen to|strong=\"H3068\"* the|strong=\"H3068\"* voice of|strong=\"H3068\"* my|strong=\"H3068\"* cry, my|strong=\"H3068\"* King and|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*, in|strong=\"H4428\"* the|strong=\"H3588\"* morning you|strong=\"H3588\"* will|strong=\"H4428\"* hear|strong=\"H7181\"* my|strong=\"H3588\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3068\"* you|strong=\"H6963\"* are|strong=\"H3068\"* not|strong=\"H8085\"* a|strong=\"H3068\"* God|strong=\"H3068\"* who|strong=\"H3068\"* has|strong=\"H3068\"* pleasure in|strong=\"H3068\"* wickedness." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3588\"* arrogant will|strong=\"H3808\"* not|strong=\"H3808\"* stand|strong=\"H1481\"* in|strong=\"H1481\"* your|strong=\"H3588\"* sight." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3605\"* will|strong=\"H5869\"* destroy|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* speak lies." + }, + { + "verseNum": 7, + "text": "But|strong=\"H1696\"* as|strong=\"H3068\"* for|strong=\"H3068\"* me|strong=\"H1696\"*, in|strong=\"H3068\"* the|strong=\"H3068\"* abundance of|strong=\"H3068\"* your|strong=\"H3068\"* loving kindness I|strong=\"H3068\"* will|strong=\"H3068\"* come into your|strong=\"H3068\"* house." + }, + { + "verseNum": 8, + "text": "Lead me|strong=\"H1004\"*, Yahweh|strong=\"H3068\"*, in|strong=\"H1004\"* your|strong=\"H1004\"* righteousness|strong=\"H2617\"* because|strong=\"H7230\"* of|strong=\"H1004\"* my|strong=\"H7230\"* enemies." + }, + { + "verseNum": 9, + "text": "For|strong=\"H6440\"* there|strong=\"H3068\"* is|strong=\"H3068\"* no|strong=\"H6440\"* faithfulness in|strong=\"H3068\"* their|strong=\"H3068\"* mouth|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "Hold them|strong=\"H3588\"* guilty, God." + }, + { + "verseNum": 11, + "text": "But|strong=\"H3588\"* let all|strong=\"H7230\"* those|strong=\"H3588\"* who|strong=\"H3588\"* take refuge in|strong=\"H5307\"* you|strong=\"H3588\"* rejoice." + }, + { + "verseNum": 12, + "text": "For|strong=\"H5921\"* you|strong=\"H3605\"* will|strong=\"H8034\"* bless the|strong=\"H3605\"* righteous." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, don’t rebuke me|strong=\"H5921\"* in|strong=\"H5921\"* your|strong=\"H5921\"* anger," + }, + { + "verseNum": 2, + "text": "Have|strong=\"H3068\"* mercy|strong=\"H3068\"* on|strong=\"H3068\"* me|strong=\"H3256\"*, Yahweh|strong=\"H3068\"*, for|strong=\"H3068\"* I|strong=\"H3068\"* am|strong=\"H3068\"* faint." + }, + { + "verseNum": 3, + "text": "My|strong=\"H3068\"* soul is|strong=\"H3068\"* also|strong=\"H3068\"* in|strong=\"H3068\"* great anguish." + }, + { + "verseNum": 4, + "text": "Return, Yahweh|strong=\"H3068\"*. Deliver my|strong=\"H3068\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 5, + "text": "For|strong=\"H3068\"* in|strong=\"H3068\"* death|strong=\"H5315\"* there|strong=\"H7725\"* is|strong=\"H3068\"* no memory of|strong=\"H3068\"* you|strong=\"H7725\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H3588\"* am weary with|strong=\"H7585\"* my|strong=\"H3588\"* groaning." + }, + { + "verseNum": 7, + "text": "My|strong=\"H3605\"* eye wastes away|strong=\"H3605\"* because|strong=\"H3605\"* of|strong=\"H3605\"* grief." + }, + { + "verseNum": 8, + "text": "Depart from|strong=\"H5869\"* me|strong=\"H5869\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* workers of|strong=\"H5869\"* iniquity," + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* heard|strong=\"H8085\"* my|strong=\"H8085\"* supplication." + }, + { + "verseNum": 10, + "text": "May|strong=\"H3068\"* all|strong=\"H3947\"* my|strong=\"H8085\"* enemies be|strong=\"H3068\"* ashamed and|strong=\"H3068\"* dismayed." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, my|strong=\"H3068\"* God|strong=\"H3068\"*, I|strong=\"H5921\"* take refuge in|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "lest they|strong=\"H3068\"* tear apart my|strong=\"H3605\"* soul like|strong=\"H3068\"* a|strong=\"H3068\"* lion," + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*, my|strong=\"H5337\"* God, if|strong=\"H6435\"* I|strong=\"H5315\"* have|strong=\"H5337\"* done this," + }, + { + "verseNum": 4, + "text": "if|strong=\"H3426\"* I|strong=\"H3068\"* have|strong=\"H3426\"* rewarded evil|strong=\"H6213\"* to|strong=\"H3068\"* him|strong=\"H6213\"* who|strong=\"H3068\"* was|strong=\"H3068\"* at|strong=\"H3068\"* peace|strong=\"H6213\"* with|strong=\"H3068\"* me|strong=\"H6213\"*" + }, + { + "verseNum": 5, + "text": "let the|strong=\"H7999\"* enemy|strong=\"H6887\"* pursue my|strong=\"H7999\"* soul, and|strong=\"H7451\"* overtake it|strong=\"H7999\"*;" + }, + { + "verseNum": 6, + "text": "Arise, Yahweh|strong=\"H3068\"*, in|strong=\"H7931\"* your|strong=\"H7291\"* anger." + }, + { + "verseNum": 7, + "text": "Let the|strong=\"H5375\"* congregation of|strong=\"H3068\"* the|strong=\"H5375\"* peoples surround you|strong=\"H6680\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* administers judgment to|strong=\"H7725\"* the|strong=\"H5921\"* peoples|strong=\"H3816\"*." + }, + { + "verseNum": 9, + "text": "Oh let the|strong=\"H5921\"* wickedness of|strong=\"H3068\"* the|strong=\"H5921\"* wicked come|strong=\"H5971\"* to|strong=\"H3068\"* an|strong=\"H3068\"* end," + }, + { + "verseNum": 10, + "text": "My|strong=\"H3559\"* shield is|strong=\"H7563\"* with|strong=\"H6662\"* God," + }, + { + "verseNum": 11, + "text": "God is|strong=\"H3820\"* a|strong=\"H3068\"* righteous|strong=\"H3477\"* judge," + }, + { + "verseNum": 12, + "text": "If a|strong=\"H3068\"* man|strong=\"H6662\"* doesn’t repent, he|strong=\"H3117\"* will|strong=\"H6662\"* sharpen his|strong=\"H3605\"* sword;" + }, + { + "verseNum": 13, + "text": "He|strong=\"H3808\"* has|strong=\"H2719\"* also prepared|strong=\"H3559\"* for|strong=\"H3559\"* himself|strong=\"H3808\"* the|strong=\"H7725\"* instruments of|strong=\"H2719\"* death." + }, + { + "verseNum": 14, + "text": "Behold,+ 7:14 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* he|strong=\"H4194\"* travails with|strong=\"H3627\"* iniquity." + }, + { + "verseNum": 15, + "text": "He|strong=\"H2009\"* has|strong=\"H2009\"* dug a|strong=\"H3068\"* hole," + }, + { + "verseNum": 16, + "text": "The|strong=\"H5307\"* trouble he causes shall|strong=\"H7845\"* return to|strong=\"H5307\"* his|strong=\"H6466\"* own head|strong=\"H5307\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H5921\"* will|strong=\"H7725\"* give|strong=\"H7725\"* thanks to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* according|strong=\"H5921\"* to|strong=\"H7725\"* his|strong=\"H7725\"* righteousness," + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, our|strong=\"H5921\"* Lord, how majestic is|strong=\"H1732\"* your|strong=\"H5921\"* name in|strong=\"H5921\"* all|strong=\"H5921\"* the|strong=\"H5921\"* earth!" + }, + { + "verseNum": 2, + "text": "From|strong=\"H5921\"* the|strong=\"H3605\"* lips of|strong=\"H3068\"* babes and|strong=\"H3068\"* infants you|strong=\"H5414\"* have|strong=\"H3068\"* established|strong=\"H5414\"* strength," + }, + { + "verseNum": 3, + "text": "When|strong=\"H6310\"* I consider your|strong=\"H7673\"* heavens, the|strong=\"H3245\"* work|strong=\"H3245\"* of|strong=\"H6310\"* your|strong=\"H7673\"* fingers," + }, + { + "verseNum": 4, + "text": "what|strong=\"H4639\"* is|strong=\"H4639\"* man|strong=\"H7200\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* think|strong=\"H7200\"* of|strong=\"H4639\"* him|strong=\"H7200\"*?" + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1121\"* made|strong=\"H6485\"* him|strong=\"H6485\"* a|strong=\"H3068\"* little lower than|strong=\"H3588\"* the|strong=\"H3588\"* angels,+ 8:5 Hebrew: Elohim. The word Elohim, used here, usually means “God”, but can also mean “gods”, “princes”, or “angels”. The Septuagint reads “angels” here. See also the quote from the Septuagint in Hebrews 2:7.*" + }, + { + "verseNum": 6, + "text": "You|strong=\"H1926\"* make him|strong=\"H5849\"* ruler over the|strong=\"H3519\"* works of|strong=\"H3519\"* your hands." + }, + { + "verseNum": 7, + "text": "All|strong=\"H3605\"* sheep and|strong=\"H3027\"* cattle," + }, + { + "verseNum": 8, + "text": "the|strong=\"H3605\"* birds of|strong=\"H7704\"* the|strong=\"H3605\"* sky, the|strong=\"H3605\"* fish of|strong=\"H7704\"* the|strong=\"H3605\"* sea," + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"*, our|strong=\"H5674\"* Lord," + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "I will give thanks to|strong=\"H1732\"* Yahweh|strong=\"H3068\"* with|strong=\"H1732\"* my|strong=\"H1732\"* whole heart." + }, + { + "verseNum": 2, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* glad and|strong=\"H3068\"* rejoice in|strong=\"H3068\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 3, + "text": "When my|strong=\"H8034\"* enemies turn back," + }, + { + "verseNum": 4, + "text": "For|strong=\"H6440\"* you|strong=\"H6440\"* have maintained my|strong=\"H7725\"* just cause|strong=\"H7725\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H3588\"* have|strong=\"H3588\"* rebuked the|strong=\"H3588\"* nations." + }, + { + "verseNum": 6, + "text": "The|strong=\"H8034\"* enemy is|strong=\"H8034\"* overtaken by|strong=\"H8034\"* endless ruin." + }, + { + "verseNum": 7, + "text": "But|strong=\"H1992\"* Yahweh|strong=\"H3068\"* reigns forever|strong=\"H5331\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3068\"* will|strong=\"H3068\"* judge|strong=\"H4941\"* the|strong=\"H3068\"* world|strong=\"H5769\"* in|strong=\"H3427\"* righteousness." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H1931\"* also|strong=\"H1931\"* be|strong=\"H3816\"* a|strong=\"H3068\"* high tower for|strong=\"H8199\"* the|strong=\"H8199\"* oppressed;" + }, + { + "verseNum": 10, + "text": "Those|strong=\"H1961\"* who|strong=\"H3068\"* know your|strong=\"H3068\"* name will|strong=\"H3068\"* put|strong=\"H3068\"* their|strong=\"H3068\"* trust in|strong=\"H3068\"* you|strong=\"H6256\"*," + }, + { + "verseNum": 11, + "text": "Sing praises|strong=\"H3068\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* dwells in|strong=\"H3068\"* Zion," + }, + { + "verseNum": 12, + "text": "For|strong=\"H3427\"* he|strong=\"H3068\"* who|strong=\"H5971\"* avenges blood remembers them|strong=\"H5046\"*." + }, + { + "verseNum": 13, + "text": "Have|strong=\"H3588\"* mercy on|strong=\"H3808\"* me|strong=\"H7911\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "that|strong=\"H7200\"* I|strong=\"H7200\"* may|strong=\"H3068\"* show|strong=\"H7200\"* all|strong=\"H7200\"* of|strong=\"H3068\"* your|strong=\"H3068\"* praise|strong=\"H7311\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3605\"* nations have|strong=\"H1323\"* sunk down in|strong=\"H8416\"* the|strong=\"H3605\"* pit that|strong=\"H3605\"* they|strong=\"H3605\"* made|strong=\"H3605\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H1471\"* made|strong=\"H6213\"* himself|strong=\"H6213\"* known." + }, + { + "verseNum": 17, + "text": "The|strong=\"H6213\"* wicked|strong=\"H7563\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* turned|strong=\"H3068\"* back|strong=\"H3045\"* to|strong=\"H3068\"* Sheol,+ 9:17 Sheol is the place of the dead.*" + }, + { + "verseNum": 18, + "text": "For|strong=\"H3605\"* the|strong=\"H3605\"* needy shall|strong=\"H1471\"* not|strong=\"H7725\"* always|strong=\"H3605\"* be|strong=\"H1471\"* forgotten," + }, + { + "verseNum": 19, + "text": "Arise, Yahweh|strong=\"H3068\"*! Don’t let|strong=\"H3808\"* man prevail." + }, + { + "verseNum": 20, + "text": "Put|strong=\"H3068\"* them|strong=\"H5921\"* in|strong=\"H5921\"* fear|strong=\"H6440\"*, Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Why|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H4100\"* stand|strong=\"H5975\"* far|strong=\"H7350\"* off|strong=\"H7350\"*, Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 2, + "text": "In|strong=\"H6041\"* arrogance|strong=\"H1346\"*, the|strong=\"H8610\"* wicked|strong=\"H7563\"* hunt down the|strong=\"H8610\"* weak." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* boasts|strong=\"H1984\"* of|strong=\"H3068\"* his|strong=\"H3068\"* heart|strong=\"H5315\"*’s cravings." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* wicked|strong=\"H7563\"*, in|strong=\"H3605\"* the|strong=\"H3605\"* pride|strong=\"H1363\"* of|strong=\"H3605\"* his|strong=\"H3605\"* face," + }, + { + "verseNum": 5, + "text": "His|strong=\"H3605\"* ways|strong=\"H1870\"* are|strong=\"H1870\"* prosperous at|strong=\"H4941\"* all|strong=\"H3605\"* times|strong=\"H6256\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3808\"* says in|strong=\"H3808\"* his|strong=\"H3808\"* heart|strong=\"H3820\"*, “I|strong=\"H3808\"* shall|strong=\"H3820\"* not|strong=\"H3808\"* be|strong=\"H3808\"* shaken|strong=\"H4131\"*." + }, + { + "verseNum": 7, + "text": "His|strong=\"H4390\"* mouth|strong=\"H6310\"* is|strong=\"H6310\"* full|strong=\"H4390\"* of|strong=\"H4390\"* cursing, deceit|strong=\"H4820\"*, and|strong=\"H6310\"* oppression|strong=\"H8496\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H4565\"* lies in|strong=\"H3427\"* wait|strong=\"H3427\"* near the|strong=\"H2026\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H4565\"* lurks in|strong=\"H6041\"* secret|strong=\"H4565\"* as|strong=\"H4565\"* a|strong=\"H3068\"* lion in|strong=\"H6041\"* his|strong=\"H4900\"* ambush." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5307\"* helpless are|strong=\"H6099\"* crushed|strong=\"H1794\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H6440\"* says in|strong=\"H6440\"* his|strong=\"H6440\"* heart|strong=\"H3820\"*, “God has|strong=\"H3820\"* forgotten|strong=\"H7911\"*." + }, + { + "verseNum": 12, + "text": "Arise|strong=\"H6965\"*, Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 13, + "text": "Why|strong=\"H4100\"* does|strong=\"H4100\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* person|strong=\"H3820\"* condemn God|strong=\"H3808\"*," + }, + { + "verseNum": 14, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* do|strong=\"H5826\"* see|strong=\"H7200\"* trouble|strong=\"H5999\"* and|strong=\"H3027\"* grief|strong=\"H3708\"*." + }, + { + "verseNum": 15, + "text": "Break|strong=\"H7665\"* the|strong=\"H7665\"* arm|strong=\"H2220\"* of|strong=\"H1875\"* the|strong=\"H7665\"* wicked|strong=\"H7563\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* King|strong=\"H4428\"* forever|strong=\"H5769\"* and|strong=\"H3068\"* ever|strong=\"H5769\"*!" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"*, you|strong=\"H3559\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* desire|strong=\"H8378\"* of|strong=\"H3068\"* the|strong=\"H8085\"* humble|strong=\"H6035\"*." + }, + { + "verseNum": 18, + "text": "to|strong=\"H3254\"* judge|strong=\"H8199\"* the|strong=\"H4480\"* fatherless|strong=\"H3490\"* and|strong=\"H3254\"* the|strong=\"H4480\"* oppressed|strong=\"H1790\"*," + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, I|strong=\"H5315\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, the|strong=\"H5921\"* wicked|strong=\"H7563\"* bend|strong=\"H1869\"* their|strong=\"H5921\"* bows|strong=\"H7198\"*." + }, + { + "verseNum": 3, + "text": "If|strong=\"H3588\"* the|strong=\"H3588\"* foundations|strong=\"H8356\"* are|strong=\"H4100\"* destroyed|strong=\"H2040\"*," + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H3068\"* his|strong=\"H3068\"* holy|strong=\"H6944\"* temple|strong=\"H1964\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* examines the|strong=\"H3068\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 6, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* he|strong=\"H5921\"* will|strong=\"H7563\"* rain|strong=\"H4305\"* blazing coals;" + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* righteous|strong=\"H6662\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Help, Yahweh|strong=\"H3068\"*; for|strong=\"H5921\"* the|strong=\"H5921\"* godly man ceases." + }, + { + "verseNum": 2, + "text": "Everyone lies to|strong=\"H3068\"* his|strong=\"H3068\"* neighbor." + }, + { + "verseNum": 3, + "text": "May|strong=\"H3820\"* Yahweh|strong=\"H3068\"* cut off|strong=\"H7453\"* all flattering|strong=\"H2513\"* lips|strong=\"H8193\"*," + }, + { + "verseNum": 4, + "text": "who|strong=\"H3605\"* have|strong=\"H3068\"* said|strong=\"H1696\"*, “With|strong=\"H3068\"* our|strong=\"H3068\"* tongue|strong=\"H3956\"* we|strong=\"H3068\"* will|strong=\"H3068\"* prevail." + }, + { + "verseNum": 5, + "text": "“Because of|strong=\"H8193\"* the|strong=\"H1396\"* oppression of|strong=\"H8193\"* the|strong=\"H1396\"* weak and|strong=\"H8193\"* because of|strong=\"H8193\"* the|strong=\"H1396\"* groaning of|strong=\"H8193\"* the|strong=\"H1396\"* needy," + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"*’s words are|strong=\"H3068\"* flawless words," + }, + { + "verseNum": 7, + "text": "You will|strong=\"H3068\"* keep them|strong=\"H3068\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H8104\"* wicked walk on|strong=\"H3068\"* every|strong=\"H1755\"* side," + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "How long, Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 2, + "text": "How|strong=\"H5704\"* long|strong=\"H5704\"* shall|strong=\"H3068\"* I|strong=\"H5704\"* take counsel in|strong=\"H3068\"* my|strong=\"H3068\"* soul," + }, + { + "verseNum": 3, + "text": "Behold, and|strong=\"H3119\"* answer me|strong=\"H5315\"*, Yahweh|strong=\"H3068\"*, my|strong=\"H5921\"* God." + }, + { + "verseNum": 4, + "text": "lest|strong=\"H6435\"* my|strong=\"H3068\"* enemy say, “I|strong=\"H3068\"* have|strong=\"H3068\"* prevailed against|strong=\"H3068\"* him|strong=\"H6030\"*;”" + }, + { + "verseNum": 5, + "text": "But|strong=\"H3588\"* I|strong=\"H3588\"* trust in|strong=\"H1523\"* your|strong=\"H3588\"* loving kindness." + }, + { + "verseNum": 6, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* sing|strong=\"H7891\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H6213\"* fool|strong=\"H5036\"* has|strong=\"H3820\"* said in|strong=\"H6213\"* his|strong=\"H1732\"* heart|strong=\"H3820\"*, “There is|strong=\"H3820\"* no|strong=\"H6213\"* God.”" + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* looked|strong=\"H7200\"* down|strong=\"H8259\"* from|strong=\"H5921\"* heaven|strong=\"H8064\"* on|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"*," + }, + { + "verseNum": 3, + "text": "They|strong=\"H6213\"* have|strong=\"H1571\"* all|strong=\"H3605\"* gone|strong=\"H5493\"* aside|strong=\"H5493\"*." + }, + { + "verseNum": 4, + "text": "Have|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* workers|strong=\"H6466\"* of|strong=\"H3068\"* iniquity no|strong=\"H3808\"* knowledge|strong=\"H3045\"*," + }, + { + "verseNum": 5, + "text": "There|strong=\"H8033\"* they|strong=\"H3588\"* were|strong=\"H6343\"* in|strong=\"H8033\"* great|strong=\"H6343\"* fear|strong=\"H6343\"*," + }, + { + "verseNum": 6, + "text": "You|strong=\"H3588\"* frustrate the|strong=\"H3588\"* plan|strong=\"H6098\"* of|strong=\"H3068\"* the|strong=\"H3588\"* poor|strong=\"H6041\"*," + }, + { + "verseNum": 7, + "text": "Oh|strong=\"H4310\"* that|strong=\"H5971\"* the|strong=\"H5414\"* salvation|strong=\"H3444\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* would|strong=\"H4310\"* come|strong=\"H7725\"* out|strong=\"H5414\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"*!" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, who|strong=\"H4310\"* shall|strong=\"H3068\"* dwell|strong=\"H7931\"* in|strong=\"H3068\"* your|strong=\"H3068\"* sanctuary|strong=\"H6944\"*?" + }, + { + "verseNum": 2, + "text": "He|strong=\"H1980\"* who|strong=\"H6664\"* walks|strong=\"H1980\"* blamelessly|strong=\"H8549\"* and|strong=\"H1980\"* does|strong=\"H6466\"* what|strong=\"H6664\"* is|strong=\"H6664\"* right|strong=\"H6664\"*," + }, + { + "verseNum": 3, + "text": "he|strong=\"H6213\"* who|strong=\"H7138\"* doesn’t slander|strong=\"H7270\"* with|strong=\"H6213\"* his|strong=\"H5375\"* tongue|strong=\"H3956\"*," + }, + { + "verseNum": 4, + "text": "in|strong=\"H3068\"* whose eyes|strong=\"H5869\"* a|strong=\"H3068\"* vile man is|strong=\"H3068\"* despised|strong=\"H3988\"*," + }, + { + "verseNum": 5, + "text": "he|strong=\"H6213\"* who|strong=\"H6213\"* doesn’t lend|strong=\"H5414\"* out|strong=\"H5414\"* his|strong=\"H5414\"* money|strong=\"H3701\"* for|strong=\"H5921\"* usury|strong=\"H5392\"*," + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Preserve|strong=\"H8104\"* me|strong=\"H8104\"*, God, for|strong=\"H3588\"* I|strong=\"H3588\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"* in|strong=\"H1732\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 2, + "text": "My|strong=\"H3068\"* soul, you|strong=\"H5921\"* have|strong=\"H3068\"* said to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, “You|strong=\"H5921\"* are|strong=\"H3068\"* my|strong=\"H3068\"* Lord|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "As|strong=\"H1992\"* for|strong=\"H3605\"* the|strong=\"H3605\"* saints|strong=\"H6918\"* who|strong=\"H3605\"* are|strong=\"H1992\"* in|strong=\"H2656\"* the|strong=\"H3605\"* earth," + }, + { + "verseNum": 4, + "text": "Their|strong=\"H5375\"* sorrows|strong=\"H6094\"* shall|strong=\"H8193\"* be|strong=\"H8034\"* multiplied|strong=\"H7235\"* who give|strong=\"H7235\"* gifts to|strong=\"H5921\"* another|strong=\"H1818\"* god." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* assigned my|strong=\"H3068\"* portion|strong=\"H2506\"* and|strong=\"H3068\"* my|strong=\"H3068\"* cup|strong=\"H3563\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* lines|strong=\"H2256\"* have|strong=\"H5307\"* fallen|strong=\"H5307\"* to|strong=\"H5921\"* me|strong=\"H5921\"* in|strong=\"H5921\"* pleasant|strong=\"H5273\"* places." + }, + { + "verseNum": 7, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H3289\"* me|strong=\"H1288\"* counsel|strong=\"H3289\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H3588\"* have|strong=\"H3068\"* set|strong=\"H7737\"* Yahweh|strong=\"H3068\"* always|strong=\"H8548\"* before|strong=\"H5048\"* me|strong=\"H5048\"*." + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H3651\"* my|strong=\"H3651\"* heart|strong=\"H3820\"* is|strong=\"H3820\"* glad|strong=\"H8055\"*, and|strong=\"H3820\"* my|strong=\"H3651\"* tongue rejoices|strong=\"H8055\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H5315\"* not|strong=\"H3808\"* leave|strong=\"H5800\"* my|strong=\"H5414\"* soul|strong=\"H5315\"* in|strong=\"H5315\"* Sheol|strong=\"H7585\"*,+ 16:10 Sheol is the place of the dead.*" + }, + { + "verseNum": 11, + "text": "You|strong=\"H6440\"* will|strong=\"H3225\"* show|strong=\"H3045\"* me|strong=\"H6440\"* the|strong=\"H6440\"* path of|strong=\"H6440\"* life|strong=\"H2416\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Hear|strong=\"H8085\"*, Yahweh|strong=\"H3068\"*, my|strong=\"H8085\"* righteous|strong=\"H6664\"* plea." + }, + { + "verseNum": 2, + "text": "Let my|strong=\"H3318\"* sentence|strong=\"H4941\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H6440\"* your|strong=\"H6440\"* presence|strong=\"H6440\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H6485\"* have|strong=\"H4672\"* proved|strong=\"H6884\"* my|strong=\"H5674\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 4, + "text": "As|strong=\"H1697\"* for|strong=\"H1697\"* the|strong=\"H8104\"* deeds|strong=\"H1697\"* of|strong=\"H1697\"* men, by|strong=\"H8193\"* the|strong=\"H8104\"* word|strong=\"H1697\"* of|strong=\"H1697\"* your|strong=\"H8104\"* lips|strong=\"H8193\"*," + }, + { + "verseNum": 5, + "text": "My|strong=\"H8551\"* steps|strong=\"H6471\"* have held|strong=\"H8551\"* fast|strong=\"H8551\"* to|strong=\"H4131\"* your paths|strong=\"H4570\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H3588\"* have|strong=\"H3588\"* called|strong=\"H7121\"* on|strong=\"H7121\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H8085\"* answer|strong=\"H6030\"* me|strong=\"H7121\"*, God." + }, + { + "verseNum": 7, + "text": "Show|strong=\"H6395\"* your|strong=\"H6965\"* marvelous loving kindness|strong=\"H2617\"*," + }, + { + "verseNum": 8, + "text": "Keep|strong=\"H8104\"* me|strong=\"H8104\"* as|strong=\"H5869\"* the|strong=\"H8104\"* apple|strong=\"H1323\"* of|strong=\"H1323\"* your|strong=\"H8104\"* eye|strong=\"H5869\"*." + }, + { + "verseNum": 9, + "text": "from|strong=\"H6440\"* the|strong=\"H6440\"* wicked|strong=\"H7563\"* who|strong=\"H5315\"* oppress|strong=\"H7703\"* me|strong=\"H6440\"*," + }, + { + "verseNum": 10, + "text": "They|strong=\"H6310\"* close|strong=\"H5462\"* up|strong=\"H5462\"* their|strong=\"H5462\"* callous hearts." + }, + { + "verseNum": 11, + "text": "They|strong=\"H6258\"* have|strong=\"H5869\"* now|strong=\"H6258\"* surrounded|strong=\"H5437\"* us|strong=\"H5869\"* in|strong=\"H5869\"* our|strong=\"H7896\"* steps." + }, + { + "verseNum": 12, + "text": "He|strong=\"H3427\"* is|strong=\"H3427\"* like|strong=\"H1825\"* a|strong=\"H3068\"* lion|strong=\"H3715\"* that|strong=\"H3427\"* is|strong=\"H3427\"* greedy|strong=\"H3700\"* of|strong=\"H3427\"* his|strong=\"H3427\"* prey|strong=\"H2963\"*," + }, + { + "verseNum": 13, + "text": "Arise|strong=\"H6965\"*, Yahweh|strong=\"H3068\"*, confront|strong=\"H6923\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 14, + "text": "from|strong=\"H3027\"* men|strong=\"H1121\"* by|strong=\"H3027\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 15, + "text": "As|strong=\"H6440\"* for|strong=\"H6440\"* me|strong=\"H6440\"*, I|strong=\"H6440\"* shall|strong=\"H6440\"* see|strong=\"H2372\"* your|strong=\"H6440\"* face|strong=\"H6440\"* in|strong=\"H6440\"* righteousness|strong=\"H6664\"*." + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H3117\"* love you|strong=\"H3605\"*, Yahweh|strong=\"H3068\"*, my|strong=\"H3605\"* strength|strong=\"H3027\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* my|strong=\"H3068\"* rock, my|strong=\"H3068\"* fortress, and|strong=\"H3068\"* my|strong=\"H3068\"* deliverer;" + }, + { + "verseNum": 3, + "text": "I|strong=\"H3068\"* call on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* is|strong=\"H3068\"* worthy to|strong=\"H3068\"* be|strong=\"H3068\"* praised;" + }, + { + "verseNum": 4, + "text": "The|strong=\"H3068\"* cords of|strong=\"H3068\"* death surrounded me|strong=\"H7121\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H4194\"* cords|strong=\"H2256\"* of|strong=\"H5158\"* Sheol+ 18:5 Sheol is the place of the dead.* were|strong=\"H4194\"* around me." + }, + { + "verseNum": 6, + "text": "In|strong=\"H7585\"* my|strong=\"H5437\"* distress I|strong=\"H4194\"* called on|strong=\"H4194\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 7, + "text": "Then|strong=\"H8085\"* the|strong=\"H6440\"* earth shook and|strong=\"H3068\"* trembled." + }, + { + "verseNum": 8, + "text": "Smoke went out|strong=\"H7264\"* of|strong=\"H2022\"* his|strong=\"H3588\"* nostrils." + }, + { + "verseNum": 9, + "text": "He|strong=\"H4480\"* bowed the|strong=\"H4480\"* heavens also, and|strong=\"H5927\"* came|strong=\"H5927\"* down." + }, + { + "verseNum": 10, + "text": "He|strong=\"H7272\"* rode on|strong=\"H8478\"* a|strong=\"H3068\"* cherub, and|strong=\"H8064\"* flew." + }, + { + "verseNum": 11, + "text": "He|strong=\"H5921\"* made|strong=\"H7307\"* darkness his|strong=\"H5921\"* hiding place, his|strong=\"H5921\"* pavilion around|strong=\"H5921\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 12, + "text": "At|strong=\"H4325\"* the|strong=\"H5439\"* brightness before him|strong=\"H7896\"* his|strong=\"H7896\"* thick|strong=\"H5645\"* clouds|strong=\"H5645\"* passed|strong=\"H4325\"*," + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* also|strong=\"H1259\"* thundered in|strong=\"H5674\"* the|strong=\"H5674\"* sky." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3068\"* sent|strong=\"H5414\"* out|strong=\"H5414\"* his|strong=\"H5414\"* arrows, and|strong=\"H3068\"* scattered them|strong=\"H5414\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H7971\"* the|strong=\"H7971\"* channels of|strong=\"H2671\"* waters appeared." + }, + { + "verseNum": 16, + "text": "He|strong=\"H3068\"* sent|strong=\"H1540\"* from|strong=\"H1540\"* on|strong=\"H7200\"* high." + }, + { + "verseNum": 17, + "text": "He|strong=\"H7971\"* delivered|strong=\"H7971\"* me|strong=\"H7971\"* from|strong=\"H7971\"* my|strong=\"H3947\"* strong enemy," + }, + { + "verseNum": 18, + "text": "They|strong=\"H3588\"* came|strong=\"H5794\"* on|strong=\"H4480\"* me|strong=\"H8130\"* in|strong=\"H4480\"* the|strong=\"H3588\"* day of|strong=\"H4480\"* my|strong=\"H5337\"* calamity," + }, + { + "verseNum": 19, + "text": "He|strong=\"H3117\"* brought|strong=\"H1961\"* me|strong=\"H1961\"* out also|strong=\"H3068\"* into|strong=\"H1961\"* a|strong=\"H3068\"* large place|strong=\"H1961\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3588\"* rewarded me|strong=\"H3318\"* according to|strong=\"H3318\"* my|strong=\"H3318\"* righteousness." + }, + { + "verseNum": 21, + "text": "For|strong=\"H3027\"* I|strong=\"H3027\"* have|strong=\"H3068\"* kept the|strong=\"H3068\"* ways of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* all|strong=\"H3068\"* his|strong=\"H8104\"* ordinances were|strong=\"H1870\"* before|strong=\"H3808\"* me|strong=\"H8104\"*." + }, + { + "verseNum": 23, + "text": "I|strong=\"H3588\"* was|strong=\"H3605\"* also|strong=\"H3588\"* blameless with|strong=\"H4941\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 24, + "text": "Therefore|strong=\"H1961\"* Yahweh|strong=\"H3068\"* has|strong=\"H1961\"* rewarded me|strong=\"H5973\"* according to|strong=\"H1961\"* my|strong=\"H8104\"* righteousness," + }, + { + "verseNum": 25, + "text": "With|strong=\"H3068\"* the|strong=\"H3068\"* merciful you|strong=\"H7725\"* will|strong=\"H3068\"* show yourself merciful." + }, + { + "verseNum": 26, + "text": "With|strong=\"H5973\"* the|strong=\"H5973\"* pure, you|strong=\"H5973\"* will|strong=\"H8549\"* show|strong=\"H8552\"* yourself|strong=\"H2616\"* pure." + }, + { + "verseNum": 27, + "text": "For|strong=\"H5973\"* you|strong=\"H5973\"* will save the|strong=\"H5973\"* afflicted people," + }, + { + "verseNum": 28, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H5971\"* light my|strong=\"H7311\"* lamp, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 29, + "text": "For|strong=\"H3588\"* by|strong=\"H3068\"* you|strong=\"H3588\"*, I|strong=\"H3588\"* advance through|strong=\"H3588\"* a|strong=\"H3068\"* troop." + }, + { + "verseNum": 30, + "text": "As|strong=\"H3588\"* for|strong=\"H3588\"* God, his|strong=\"H3588\"* way is|strong=\"H3588\"* perfect." + }, + { + "verseNum": 31, + "text": "For|strong=\"H3068\"* who|strong=\"H3605\"* is|strong=\"H3068\"* God|strong=\"H3068\"*, except Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 32, + "text": "the|strong=\"H3588\"* God|strong=\"H3068\"* who|strong=\"H4310\"* arms me|strong=\"H1107\"* with|strong=\"H3068\"* strength|strong=\"H6697\"*, and|strong=\"H3068\"* makes|strong=\"H3068\"* my|strong=\"H3068\"* way perfect?" + }, + { + "verseNum": 33, + "text": "He|strong=\"H5414\"* makes|strong=\"H5414\"* my|strong=\"H5414\"* feet like|strong=\"H1870\"* deer’s feet," + }, + { + "verseNum": 34, + "text": "He|strong=\"H5921\"* teaches my|strong=\"H5921\"* hands to|strong=\"H5921\"* war," + }, + { + "verseNum": 35, + "text": "You|strong=\"H3925\"* have|strong=\"H3027\"* also|strong=\"H3027\"* given|strong=\"H3027\"* me|strong=\"H3925\"* the|strong=\"H3027\"* shield of|strong=\"H3027\"* your|strong=\"H3027\"* salvation." + }, + { + "verseNum": 36, + "text": "You|strong=\"H5414\"* have|strong=\"H5414\"* enlarged my|strong=\"H5414\"* steps under|strong=\"H5414\"* me|strong=\"H5414\"*," + }, + { + "verseNum": 37, + "text": "I|strong=\"H3808\"* will|strong=\"H3808\"* pursue my|strong=\"H8478\"* enemies, and|strong=\"H8478\"* overtake them|strong=\"H8478\"*." + }, + { + "verseNum": 38, + "text": "I|strong=\"H5704\"* will|strong=\"H3808\"* strike them|strong=\"H7725\"* through, so|strong=\"H3808\"* that|strong=\"H5704\"* they|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* able|strong=\"H5381\"* to|strong=\"H5704\"* rise." + }, + { + "verseNum": 39, + "text": "For|strong=\"H8478\"* you|strong=\"H3808\"* have|strong=\"H7272\"* armed me|strong=\"H3808\"* with|strong=\"H6965\"* strength to|strong=\"H3201\"* the|strong=\"H8478\"* battle." + }, + { + "verseNum": 40, + "text": "You|strong=\"H8478\"* have|strong=\"H2428\"* also made my|strong=\"H6965\"* enemies|strong=\"H6965\"* turn their|strong=\"H8478\"* backs to|strong=\"H6965\"* me|strong=\"H3766\"*," + }, + { + "verseNum": 41, + "text": "They|strong=\"H5414\"* cried|strong=\"H5414\"*, but there was|strong=\"H5414\"* no|strong=\"H5414\"* one to|strong=\"H5414\"* save;" + }, + { + "verseNum": 42, + "text": "Then|strong=\"H6030\"* I|strong=\"H5921\"* beat them|strong=\"H5921\"* small as|strong=\"H3068\"* the|strong=\"H5921\"* dust before|strong=\"H5921\"* the|strong=\"H5921\"* wind." + }, + { + "verseNum": 43, + "text": "You|strong=\"H6440\"* have|strong=\"H5921\"* delivered me|strong=\"H6440\"* from|strong=\"H6440\"* the|strong=\"H6440\"* strivings of|strong=\"H6440\"* the|strong=\"H6440\"* people." + }, + { + "verseNum": 44, + "text": "As|strong=\"H5971\"* soon as|strong=\"H5971\"* they|strong=\"H3808\"* hear of|strong=\"H7218\"* me|strong=\"H7760\"* they|strong=\"H3808\"* shall|strong=\"H5971\"* obey|strong=\"H3045\"* me|strong=\"H7760\"*." + }, + { + "verseNum": 45, + "text": "The|strong=\"H8085\"* foreigners|strong=\"H1121\"* shall|strong=\"H1121\"* fade away," + }, + { + "verseNum": 46, + "text": "Yahweh|strong=\"H3068\"* lives! Blessed be|strong=\"H1121\"* my rock." + }, + { + "verseNum": 47, + "text": "even|strong=\"H3068\"* the|strong=\"H3068\"* God|strong=\"H3068\"* who|strong=\"H3068\"* executes vengeance for|strong=\"H3068\"* me|strong=\"H7311\"*," + }, + { + "verseNum": 48, + "text": "He|strong=\"H5414\"* rescues me|strong=\"H5414\"* from|strong=\"H8478\"* my|strong=\"H5414\"* enemies." + }, + { + "verseNum": 49, + "text": "Therefore I|strong=\"H6965\"* will|strong=\"H2555\"* give|strong=\"H7311\"* thanks to|strong=\"H6965\"* you|strong=\"H4480\"*, Yahweh|strong=\"H3068\"*, among|strong=\"H4480\"* the|strong=\"H4480\"* nations," + }, + { + "verseNum": 50, + "text": "He|strong=\"H3651\"* gives great deliverance to|strong=\"H3068\"* his|strong=\"H3068\"* king|strong=\"H5921\"*," + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H1732\"* heavens declare the|strong=\"H1732\"* glory of|strong=\"H4210\"* God." + }, + { + "verseNum": 2, + "text": "Day after day they|strong=\"H3027\"* pour out|strong=\"H3027\"* speech," + }, + { + "verseNum": 3, + "text": "There|strong=\"H3117\"* is|strong=\"H3117\"* no speech nor|strong=\"H3117\"* language" + }, + { + "verseNum": 4, + "text": "Their|strong=\"H8085\"* voice|strong=\"H6963\"* has|strong=\"H1697\"* gone out through|strong=\"H6963\"* all|strong=\"H1697\"* the|strong=\"H8085\"* earth," + }, + { + "verseNum": 5, + "text": "which|strong=\"H3605\"* is|strong=\"H3605\"* as|strong=\"H3318\"* a|strong=\"H3068\"* bridegroom coming|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3605\"* his|strong=\"H3605\"* room," + }, + { + "verseNum": 6, + "text": "His|strong=\"H3318\"* going|strong=\"H3318\"* out|strong=\"H3318\"* is|strong=\"H1931\"* from|strong=\"H3318\"* the|strong=\"H3318\"* end|strong=\"H3318\"* of|strong=\"H1368\"* the|strong=\"H3318\"* heavens," + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*’s law is|strong=\"H4161\"* perfect, restoring the|strong=\"H5921\"* soul." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"*’s precepts are|strong=\"H3068\"* right|strong=\"H3068\"*, rejoicing the|strong=\"H3068\"* heart|strong=\"H5315\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3068\"* fear of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* clean|strong=\"H1249\"*, enduring forever." + }, + { + "verseNum": 10, + "text": "They|strong=\"H3068\"* are|strong=\"H3068\"* more to|strong=\"H3068\"* be|strong=\"H3068\"* desired than|strong=\"H3068\"* gold, yes, than|strong=\"H3068\"* much fine gold," + }, + { + "verseNum": 11, + "text": "Moreover your|strong=\"H2530\"* servant is|strong=\"H2091\"* warned by|strong=\"H2091\"* them." + }, + { + "verseNum": 12, + "text": "Who|strong=\"H5650\"* can|strong=\"H5650\"* discern his|strong=\"H8104\"* errors?" + }, + { + "verseNum": 13, + "text": "Keep back your|strong=\"H5641\"* servant also from|strong=\"H5352\"* presumptuous sins." + }, + { + "verseNum": 14, + "text": "Let the|strong=\"H1571\"* words of|strong=\"H5650\"* my|strong=\"H5650\"* mouth and|strong=\"H5650\"* the|strong=\"H1571\"* meditation of|strong=\"H5650\"* my|strong=\"H5650\"* heart" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "May|strong=\"H1732\"* Yahweh|strong=\"H3068\"* answer you in|strong=\"H1732\"* the|strong=\"H1732\"* day of|strong=\"H4210\"* trouble." + }, + { + "verseNum": 2, + "text": "send you|strong=\"H3117\"* help|strong=\"H6030\"* from|strong=\"H3117\"* the|strong=\"H3068\"* sanctuary," + }, + { + "verseNum": 3, + "text": "remember all|strong=\"H7971\"* your|strong=\"H7971\"* offerings," + }, + { + "verseNum": 4, + "text": "May|strong=\"H2142\"* he|strong=\"H3605\"* grant you|strong=\"H3605\"* your|strong=\"H3605\"* heart’s desire," + }, + { + "verseNum": 5, + "text": "We|strong=\"H3605\"* will|strong=\"H5414\"* triumph in|strong=\"H5414\"* your|strong=\"H3605\"* salvation." + }, + { + "verseNum": 6, + "text": "Now I|strong=\"H3068\"* know that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* saves his|strong=\"H3605\"* anointed." + }, + { + "verseNum": 7, + "text": "Some trust in|strong=\"H3068\"* chariots, and|strong=\"H3068\"* some in|strong=\"H3068\"* horses," + }, + { + "verseNum": 8, + "text": "They|strong=\"H3068\"* are|strong=\"H3068\"* bowed down and|strong=\"H3068\"* fallen," + }, + { + "verseNum": 9, + "text": "Save, Yahweh|strong=\"H3068\"*!" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H1732\"* king rejoices in|strong=\"H1732\"* your|strong=\"H1732\"* strength, Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 2, + "text": "You|strong=\"H4100\"* have|strong=\"H3068\"* given|strong=\"H8055\"* him|strong=\"H8055\"* his|strong=\"H3068\"* heart’s desire," + }, + { + "verseNum": 3, + "text": "For|strong=\"H5414\"* you|strong=\"H5414\"* meet him|strong=\"H5414\"* with|strong=\"H3820\"* the|strong=\"H5414\"* blessings of|strong=\"H3820\"* goodness." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3588\"* asked life of|strong=\"H7218\"* you|strong=\"H3588\"* and|strong=\"H7218\"* you|strong=\"H3588\"* gave it|strong=\"H3588\"* to|strong=\"H2896\"* him|strong=\"H7896\"*," + }, + { + "verseNum": 5, + "text": "His|strong=\"H5414\"* glory is|strong=\"H3117\"* great in|strong=\"H3117\"* your|strong=\"H5414\"* salvation." + }, + { + "verseNum": 6, + "text": "For|strong=\"H5921\"* you|strong=\"H5921\"* make|strong=\"H7737\"* him|strong=\"H5921\"* most blessed forever." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* the|strong=\"H6440\"* king|strong=\"H6440\"* trusts in|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "Your|strong=\"H3068\"* hand will|strong=\"H3068\"* find out all|strong=\"H3068\"* of|strong=\"H4428\"* your|strong=\"H3068\"* enemies." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3605\"* will|strong=\"H3027\"* make|strong=\"H3027\"* them|strong=\"H3027\"* as|strong=\"H3605\"* a|strong=\"H3068\"* fiery furnace in|strong=\"H4672\"* the|strong=\"H3605\"* time of|strong=\"H3027\"* your|strong=\"H3605\"* anger." + }, + { + "verseNum": 10, + "text": "You|strong=\"H6440\"* will|strong=\"H3068\"* destroy|strong=\"H1104\"* their|strong=\"H3068\"* descendants from|strong=\"H6440\"* the|strong=\"H6440\"* earth," + }, + { + "verseNum": 11, + "text": "For|strong=\"H1121\"* they intended evil against you|strong=\"H2233\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H7451\"* make|strong=\"H2803\"* them|strong=\"H5921\"* turn|strong=\"H5186\"* their|strong=\"H5921\"* back|strong=\"H5186\"*," + }, + { + "verseNum": 13, + "text": "Be|strong=\"H6440\"* exalted, Yahweh|strong=\"H3068\"*, in|strong=\"H5921\"* your|strong=\"H5921\"* strength," + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"H1732\"* God, my|strong=\"H1732\"* God, why|strong=\"H5921\"* have|strong=\"H1732\"* you|strong=\"H5921\"* forsaken me|strong=\"H5921\"*?" + }, + { + "verseNum": 2, + "text": "My|strong=\"H5800\"* God, I|strong=\"H1697\"* cry in|strong=\"H1697\"* the|strong=\"H1697\"* daytime, but|strong=\"H5800\"* you|strong=\"H4100\"* don’t answer|strong=\"H1697\"*;" + }, + { + "verseNum": 3, + "text": "But|strong=\"H3808\"* you|strong=\"H3808\"* are|strong=\"H3915\"* holy," + }, + { + "verseNum": 4, + "text": "Our|strong=\"H3478\"* fathers trusted in|strong=\"H3427\"* you|strong=\"H8416\"*." + }, + { + "verseNum": 5, + "text": "They cried to you, and were delivered|strong=\"H6403\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"H3808\"* I|strong=\"H3808\"* am a|strong=\"H3068\"* worm, and|strong=\"H2199\"* no|strong=\"H3808\"* man;" + }, + { + "verseNum": 7, + "text": "All those who|strong=\"H5971\"* see me|strong=\"H2781\"* mock me|strong=\"H2781\"*." + }, + { + "verseNum": 8, + "text": "“He|strong=\"H3605\"* trusts in|strong=\"H7200\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* brought|strong=\"H3068\"* me|strong=\"H5337\"* out|strong=\"H5337\"* of|strong=\"H3068\"* the|strong=\"H3588\"* womb." + }, + { + "verseNum": 10, + "text": "I|strong=\"H3588\"* was thrown on|strong=\"H5921\"* you|strong=\"H3588\"* from|strong=\"H5921\"* my|strong=\"H5921\"* mother’s womb." + }, + { + "verseNum": 11, + "text": "Don’t be far|strong=\"H5921\"* from|strong=\"H5921\"* me|strong=\"H5921\"*, for|strong=\"H5921\"* trouble is near|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "Many bulls have|strong=\"H3588\"* surrounded me|strong=\"H4480\"*." + }, + { + "verseNum": 13, + "text": "They open their|strong=\"H5437\"* mouths wide against me|strong=\"H5437\"*," + }, + { + "verseNum": 14, + "text": "I|strong=\"H5921\"* am poured out|strong=\"H5921\"* like|strong=\"H5921\"* water." + }, + { + "verseNum": 15, + "text": "My|strong=\"H3605\"* strength|strong=\"H6106\"* is|strong=\"H3820\"* dried up|strong=\"H8210\"* like|strong=\"H1961\"* a|strong=\"H3068\"* potsherd." + }, + { + "verseNum": 16, + "text": "For|strong=\"H6083\"* dogs have|strong=\"H4194\"* surrounded me|strong=\"H8239\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H3588\"* can count all|strong=\"H5437\"* of|strong=\"H3027\"* my|strong=\"H3588\"* bones." + }, + { + "verseNum": 18, + "text": "They|strong=\"H1992\"* divide my|strong=\"H3605\"* garments among|strong=\"H7200\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"H1992\"* don’t be|strong=\"H3830\"* far|strong=\"H5921\"* off|strong=\"H5921\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 20, + "text": "Deliver my|strong=\"H3068\"* soul from|strong=\"H3068\"* the|strong=\"H3068\"* sword," + }, + { + "verseNum": 21, + "text": "Save|strong=\"H5337\"* me|strong=\"H5315\"* from|strong=\"H5315\"* the|strong=\"H3027\"* lion’s mouth|strong=\"H5315\"*!" + }, + { + "verseNum": 22, + "text": "I will|strong=\"H6310\"* declare|strong=\"H6030\"* your|strong=\"H3467\"* name to|strong=\"H6310\"* my|strong=\"H3467\"* brothers." + }, + { + "verseNum": 23, + "text": "You|strong=\"H8432\"* who fear Yahweh|strong=\"H3068\"*, praise|strong=\"H1984\"* him|strong=\"H8034\"*!" + }, + { + "verseNum": 24, + "text": "For|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3373\"* despised nor|strong=\"H4480\"* abhorred the|strong=\"H3605\"* affliction of|strong=\"H3068\"* the|strong=\"H3605\"* afflicted," + }, + { + "verseNum": 25, + "text": "My|strong=\"H8085\"* praise|strong=\"H3588\"* of|strong=\"H6440\"* you|strong=\"H3588\"* comes|strong=\"H6440\"* in|strong=\"H8085\"* the|strong=\"H6440\"* great|strong=\"H6440\"* assembly." + }, + { + "verseNum": 26, + "text": "The|strong=\"H3373\"* humble shall|strong=\"H5088\"* eat and|strong=\"H8416\"* be|strong=\"H5088\"* satisfied." + }, + { + "verseNum": 27, + "text": "All|strong=\"H1875\"* the|strong=\"H3068\"* ends of|strong=\"H3068\"* the|strong=\"H3068\"* earth shall|strong=\"H3068\"* remember and|strong=\"H3068\"* turn|strong=\"H3824\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 28, + "text": "For|strong=\"H6440\"* the|strong=\"H3605\"* kingdom|strong=\"H6440\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s." + }, + { + "verseNum": 29, + "text": "All|strong=\"H3068\"* the|strong=\"H3588\"* rich ones of|strong=\"H3068\"* the|strong=\"H3588\"* earth shall|strong=\"H3068\"* eat and|strong=\"H3068\"* worship." + }, + { + "verseNum": 30, + "text": "Posterity shall|strong=\"H5315\"* serve|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 31, + "text": "They|strong=\"H5608\"* shall|strong=\"H2233\"* come and|strong=\"H5647\"* shall|strong=\"H2233\"* declare|strong=\"H5608\"* his|strong=\"H5647\"* righteousness to|strong=\"H1755\"* a|strong=\"H3068\"* people that|strong=\"H1755\"* shall|strong=\"H2233\"* be|strong=\"H5647\"* born," + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* my|strong=\"H3068\"* shepherd|strong=\"H7462\"*;" + }, + { + "verseNum": 2, + "text": "He|strong=\"H5921\"* makes me|strong=\"H5921\"* lie|strong=\"H7257\"* down|strong=\"H7257\"* in|strong=\"H5921\"* green|strong=\"H1877\"* pastures|strong=\"H4999\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H7725\"* restores|strong=\"H7725\"* my|strong=\"H7725\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 4, + "text": "Even|strong=\"H1571\"* though|strong=\"H3588\"* I|strong=\"H3588\"* walk|strong=\"H3212\"* through|strong=\"H3212\"* the|strong=\"H3588\"* valley|strong=\"H1516\"* of|strong=\"H7626\"* the|strong=\"H3588\"* shadow|strong=\"H6757\"* of|strong=\"H7626\"* death|strong=\"H6757\"*," + }, + { + "verseNum": 5, + "text": "You|strong=\"H6440\"* prepare|strong=\"H6186\"* a|strong=\"H3068\"* table|strong=\"H7979\"* before|strong=\"H6440\"* me|strong=\"H6440\"*" + }, + { + "verseNum": 6, + "text": "Surely goodness|strong=\"H2896\"* and|strong=\"H3068\"* loving|strong=\"H2896\"* kindness|strong=\"H2617\"* shall|strong=\"H3068\"* follow|strong=\"H7291\"* me|strong=\"H7291\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H1004\"* my|strong=\"H3605\"* life|strong=\"H2416\"*," + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* earth is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s, with|strong=\"H3068\"* its|strong=\"H4393\"* fullness|strong=\"H4393\"*;" + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* he|strong=\"H1931\"* has|strong=\"H3588\"* founded|strong=\"H3245\"* it|strong=\"H1931\"* on|strong=\"H5921\"* the|strong=\"H5921\"* seas|strong=\"H3220\"*," + }, + { + "verseNum": 3, + "text": "Who|strong=\"H4310\"* may|strong=\"H3068\"* ascend|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s hill|strong=\"H2022\"*?" + }, + { + "verseNum": 4, + "text": "He|strong=\"H3808\"* who|strong=\"H5315\"* has|strong=\"H5315\"* clean|strong=\"H1249\"* hands|strong=\"H3709\"* and|strong=\"H5315\"* a|strong=\"H3068\"* pure|strong=\"H1249\"* heart|strong=\"H3824\"*;" + }, + { + "verseNum": 5, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* receive|strong=\"H5375\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H6440\"* generation|strong=\"H1755\"* of|strong=\"H6440\"* those|strong=\"H2088\"* who|strong=\"H2088\"* seek|strong=\"H1245\"* Him|strong=\"H6440\"*," + }, + { + "verseNum": 7, + "text": "Lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5375\"* heads|strong=\"H7218\"*, you|strong=\"H5375\"* gates|strong=\"H8179\"*!" + }, + { + "verseNum": 8, + "text": "Who|strong=\"H4310\"* is|strong=\"H3068\"* the|strong=\"H3068\"* King|strong=\"H4428\"* of|strong=\"H4428\"* glory|strong=\"H3519\"*?" + }, + { + "verseNum": 9, + "text": "Lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5375\"* heads|strong=\"H7218\"*, you|strong=\"H5375\"* gates|strong=\"H8179\"*;" + }, + { + "verseNum": 10, + "text": "Who|strong=\"H4310\"* is|strong=\"H3068\"* this|strong=\"H2088\"* King|strong=\"H4428\"* of|strong=\"H4428\"* glory|strong=\"H3519\"*?" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "To|strong=\"H3068\"* you|strong=\"H5375\"*, Yahweh|strong=\"H3068\"*, I|strong=\"H5315\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H3068\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 2, + "text": "My God, I have trusted in you." + }, + { + "verseNum": 3, + "text": "Yes|strong=\"H1571\"*, no|strong=\"H3808\"* one|strong=\"H3605\"* who|strong=\"H3605\"* waits|strong=\"H6960\"* for|strong=\"H6960\"* you|strong=\"H3605\"* will|strong=\"H1571\"* be|strong=\"H3808\"* shamed." + }, + { + "verseNum": 4, + "text": "Show|strong=\"H3045\"* me|strong=\"H3925\"* your|strong=\"H3068\"* ways|strong=\"H1870\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "Guide|strong=\"H1869\"* me|strong=\"H3925\"* in|strong=\"H3117\"* your|strong=\"H3605\"* truth, and|strong=\"H3117\"* teach|strong=\"H3925\"* me|strong=\"H3925\"*," + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"*, remember|strong=\"H2142\"* your|strong=\"H3068\"* tender mercies|strong=\"H7356\"* and|strong=\"H3068\"* your|strong=\"H3068\"* loving kindness|strong=\"H2617\"*," + }, + { + "verseNum": 7, + "text": "Don’t remember|strong=\"H2142\"* the|strong=\"H3068\"* sins|strong=\"H2403\"* of|strong=\"H3068\"* my|strong=\"H3068\"* youth|strong=\"H5271\"*, nor my|strong=\"H3068\"* transgressions|strong=\"H6588\"*." + }, + { + "verseNum": 8, + "text": "Good|strong=\"H2896\"* and|strong=\"H3068\"* upright|strong=\"H3477\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 9, + "text": "He will|strong=\"H6035\"* guide|strong=\"H1869\"* the|strong=\"H1870\"* humble|strong=\"H6035\"* in|strong=\"H1870\"* justice|strong=\"H4941\"*." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* paths of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* are|strong=\"H3068\"* loving kindness|strong=\"H2617\"* and|strong=\"H3068\"* truth" + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* your|strong=\"H3068\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 12, + "text": "What|strong=\"H4310\"* man|strong=\"H2088\"* is|strong=\"H3068\"* he|strong=\"H3068\"* who|strong=\"H4310\"* fears|strong=\"H3373\"* Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 13, + "text": "His|strong=\"H3423\"* soul|strong=\"H5315\"* will|strong=\"H5315\"* dwell|strong=\"H3885\"* at|strong=\"H5315\"* ease|strong=\"H2896\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3068\"* friendship|strong=\"H5475\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H3068\"* those who|strong=\"H3068\"* fear|strong=\"H3373\"* him|strong=\"H3045\"*." + }, + { + "verseNum": 15, + "text": "My|strong=\"H3068\"* eyes|strong=\"H5869\"* are|strong=\"H5869\"* ever|strong=\"H8548\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 16, + "text": "Turn|strong=\"H6437\"* to|strong=\"H6437\"* me|strong=\"H2603\"*, and|strong=\"H6041\"* have|strong=\"H3588\"* mercy|strong=\"H2603\"* on|strong=\"H6437\"* me|strong=\"H2603\"*," + }, + { + "verseNum": 17, + "text": "The|strong=\"H3318\"* troubles|strong=\"H6869\"* of|strong=\"H3318\"* my|strong=\"H3318\"* heart|strong=\"H3824\"* are|strong=\"H6869\"* enlarged|strong=\"H7337\"*." + }, + { + "verseNum": 18, + "text": "Consider|strong=\"H7200\"* my|strong=\"H3605\"* affliction|strong=\"H6040\"* and|strong=\"H7200\"* my|strong=\"H3605\"* travail|strong=\"H5999\"*." + }, + { + "verseNum": 19, + "text": "Consider|strong=\"H7200\"* my|strong=\"H7200\"* enemies|strong=\"H8130\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H2555\"* many|strong=\"H7231\"*." + }, + { + "verseNum": 20, + "text": "Oh keep|strong=\"H8104\"* my|strong=\"H8104\"* soul|strong=\"H5315\"*, and|strong=\"H8104\"* deliver|strong=\"H5337\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 21, + "text": "Let integrity|strong=\"H8537\"* and|strong=\"H8537\"* uprightness|strong=\"H3476\"* preserve|strong=\"H5341\"* me|strong=\"H3588\"*," + }, + { + "verseNum": 22, + "text": "God, redeem|strong=\"H6299\"* Israel|strong=\"H3478\"*" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "Judge|strong=\"H8199\"* me|strong=\"H3808\"*, Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* my|strong=\"H3068\"* integrity|strong=\"H8537\"*." + }, + { + "verseNum": 2, + "text": "Examine me|strong=\"H3820\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* prove|strong=\"H5254\"* me|strong=\"H3820\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* your|strong=\"H3588\"* loving kindness|strong=\"H2617\"* is|strong=\"H2617\"* before|strong=\"H5048\"* my|strong=\"H3588\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3808\"* have|strong=\"H3808\"* not|strong=\"H3808\"* sat|strong=\"H3427\"* with|strong=\"H5973\"* deceitful|strong=\"H7723\"* men|strong=\"H4962\"*," + }, + { + "verseNum": 5, + "text": "I|strong=\"H3808\"* hate|strong=\"H8130\"* the|strong=\"H5973\"* assembly|strong=\"H6951\"* of|strong=\"H3427\"* evildoers|strong=\"H7489\"*," + }, + { + "verseNum": 6, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* wash|strong=\"H7364\"* my|strong=\"H3068\"* hands|strong=\"H3709\"* in|strong=\"H3068\"* innocence|strong=\"H5356\"*," + }, + { + "verseNum": 7, + "text": "that|strong=\"H3605\"* I|strong=\"H8085\"* may|strong=\"H8085\"* make|strong=\"H8085\"* the|strong=\"H3605\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* thanksgiving|strong=\"H8426\"* to|strong=\"H8085\"* be|strong=\"H6963\"* heard|strong=\"H8085\"*" + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"*, I|strong=\"H3068\"* love the|strong=\"H3068\"* habitation|strong=\"H4583\"* of|strong=\"H1004\"* your|strong=\"H3068\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 9, + "text": "Don’t gather my|strong=\"H5973\"* soul|strong=\"H5315\"* with|strong=\"H5973\"* sinners|strong=\"H2400\"*," + }, + { + "verseNum": 10, + "text": "in|strong=\"H3027\"* whose hands|strong=\"H3027\"* is|strong=\"H3027\"* wickedness|strong=\"H2154\"*;" + }, + { + "verseNum": 11, + "text": "But as for|strong=\"H3212\"* me|strong=\"H2603\"*, I|strong=\"H3212\"* will walk|strong=\"H3212\"* in|strong=\"H3212\"* my|strong=\"H6299\"* integrity|strong=\"H8537\"*." + }, + { + "verseNum": 12, + "text": "My|strong=\"H3068\"* foot|strong=\"H7272\"* stands|strong=\"H5975\"* in|strong=\"H3068\"* an|strong=\"H3068\"* even|strong=\"H3068\"* place|strong=\"H4334\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* my|strong=\"H3068\"* light and|strong=\"H3068\"* my|strong=\"H3068\"* salvation|strong=\"H3468\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H5307\"* evildoers|strong=\"H7489\"* came|strong=\"H7126\"* at|strong=\"H5921\"* me|strong=\"H5921\"* to|strong=\"H5921\"* eat up|strong=\"H5921\"* my|strong=\"H5921\"* flesh|strong=\"H1320\"*," + }, + { + "verseNum": 3, + "text": "Though an|strong=\"H6965\"* army|strong=\"H4264\"* should|strong=\"H4264\"* encamp|strong=\"H2583\"* against|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 4, + "text": "One|strong=\"H3605\"* thing|strong=\"H2416\"* I|strong=\"H3117\"* have|strong=\"H3068\"* asked|strong=\"H7592\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3605\"* I|strong=\"H3117\"* will|strong=\"H3068\"* seek|strong=\"H1245\"* after|strong=\"H3117\"*:" + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* in|strong=\"H3117\"* the|strong=\"H3588\"* day|strong=\"H3117\"* of|strong=\"H3117\"* trouble|strong=\"H7451\"*, he|strong=\"H3588\"* will|strong=\"H3117\"* keep|strong=\"H6845\"* me|strong=\"H7311\"* secretly|strong=\"H5643\"* in|strong=\"H3117\"* his|strong=\"H3588\"* pavilion|strong=\"H5520\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"H6258\"* my|strong=\"H3068\"* head|strong=\"H7218\"* will|strong=\"H3068\"* be|strong=\"H3068\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* above|strong=\"H5921\"* my|strong=\"H3068\"* enemies around|strong=\"H5439\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 7, + "text": "Hear|strong=\"H8085\"*, Yahweh|strong=\"H3068\"*, when|strong=\"H8085\"* I|strong=\"H8085\"* cry|strong=\"H7121\"* with|strong=\"H3068\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H3068\"* you|strong=\"H6440\"* said, “Seek|strong=\"H1245\"* my|strong=\"H3068\"* face|strong=\"H6440\"*,”" + }, + { + "verseNum": 9, + "text": "Don’t hide|strong=\"H5641\"* your|strong=\"H5186\"* face|strong=\"H6440\"* from|strong=\"H4480\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H3588\"* my|strong=\"H3068\"* father and|strong=\"H3068\"* my|strong=\"H3068\"* mother forsake|strong=\"H5800\"* me|strong=\"H5800\"*," + }, + { + "verseNum": 11, + "text": "Teach|strong=\"H3384\"* me|strong=\"H5148\"* your|strong=\"H3068\"* way|strong=\"H1870\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "Don’t deliver|strong=\"H5414\"* me|strong=\"H5414\"* over|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H3588\"* desire|strong=\"H5315\"* of|strong=\"H5315\"* my|strong=\"H5414\"* adversaries|strong=\"H6862\"*," + }, + { + "verseNum": 13, + "text": "I|strong=\"H7200\"* am|strong=\"H3068\"* still confident of|strong=\"H3068\"* this|strong=\"H7200\"*:" + }, + { + "verseNum": 14, + "text": "Wait|strong=\"H6960\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "To|strong=\"H3381\"* you|strong=\"H5973\"*, Yahweh|strong=\"H3068\"*, I|strong=\"H3068\"* call|strong=\"H7121\"*." + }, + { + "verseNum": 2, + "text": "Hear|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3027\"* my|strong=\"H8085\"* petitions, when|strong=\"H8085\"* I|strong=\"H8085\"* cry|strong=\"H7768\"* to|strong=\"H3027\"* you|strong=\"H3027\"*," + }, + { + "verseNum": 3, + "text": "Don’t draw|strong=\"H4900\"* me|strong=\"H1696\"* away|strong=\"H5973\"* with|strong=\"H5973\"* the|strong=\"H1696\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 4, + "text": "Give|strong=\"H5414\"* them|strong=\"H5414\"* according|strong=\"H3027\"* to|strong=\"H7725\"* their|strong=\"H5414\"* work|strong=\"H4639\"*, and|strong=\"H7725\"* according|strong=\"H3027\"* to|strong=\"H7725\"* the|strong=\"H5414\"* wickedness|strong=\"H7455\"* of|strong=\"H3027\"* their|strong=\"H5414\"* doings|strong=\"H4611\"*." + }, + { + "verseNum": 5, + "text": "Because|strong=\"H3588\"* they|strong=\"H3588\"* don’t respect the|strong=\"H3588\"* works|strong=\"H4639\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* my|strong=\"H3068\"* strength|strong=\"H5797\"* and|strong=\"H3068\"* my|strong=\"H3068\"* shield|strong=\"H4043\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* their|strong=\"H3068\"* strength|strong=\"H5797\"*." + }, + { + "verseNum": 9, + "text": "Save|strong=\"H3467\"* your|strong=\"H5375\"* people|strong=\"H5971\"*," + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "Ascribe|strong=\"H3051\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, you|strong=\"H3051\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3068\"* mighty|strong=\"H5797\"*," + }, + { + "verseNum": 2, + "text": "Ascribe|strong=\"H3051\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* the|strong=\"H3068\"* glory|strong=\"H3519\"* due to|strong=\"H3068\"* his|strong=\"H3068\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"* is|strong=\"H3068\"* powerful|strong=\"H3581\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"* breaks|strong=\"H7665\"* the|strong=\"H3068\"* cedars." + }, + { + "verseNum": 6, + "text": "He|strong=\"H1121\"* makes them|strong=\"H1121\"* also|strong=\"H1121\"* to|strong=\"H1121\"* skip|strong=\"H7540\"* like|strong=\"H3644\"* a|strong=\"H3068\"* calf|strong=\"H5695\"*;" + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"* strikes with|strong=\"H3068\"* flashes of|strong=\"H3068\"* lightning." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"* shakes|strong=\"H2342\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"* makes|strong=\"H3068\"* the|strong=\"H3605\"* deer calve|strong=\"H2342\"*," + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* sat|strong=\"H3427\"* enthroned|strong=\"H3427\"* at|strong=\"H3427\"* the|strong=\"H3068\"* Flood|strong=\"H3999\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5414\"* strength|strong=\"H5797\"* to|strong=\"H3068\"* his|strong=\"H5414\"* people|strong=\"H5971\"*." + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H1004\"* will|strong=\"H1004\"* extol you|strong=\"H1004\"*, Yahweh|strong=\"H3068\"*, for|strong=\"H1004\"* you|strong=\"H1004\"* have|strong=\"H1004\"* raised me|strong=\"H1004\"* up," + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*, I|strong=\"H3588\"* cried to|strong=\"H3068\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*, you have|strong=\"H3068\"* brought|strong=\"H3068\"* up my|strong=\"H3068\"* soul from|strong=\"H3068\"* Sheol.+ 30:3 Sheol is the place of the dead.*" + }, + { + "verseNum": 4, + "text": "Sing praise to|strong=\"H3381\"* Yahweh|strong=\"H3068\"*, you|strong=\"H4480\"* saints of|strong=\"H3068\"* his|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3068\"* his|strong=\"H3068\"* anger is|strong=\"H3068\"* but|strong=\"H3068\"* for|strong=\"H3068\"* a|strong=\"H3068\"* moment." + }, + { + "verseNum": 6, + "text": "As|strong=\"H3588\"* for|strong=\"H3588\"* me|strong=\"H3588\"*, I|strong=\"H3588\"* said in|strong=\"H3885\"* my|strong=\"H3588\"* prosperity," + }, + { + "verseNum": 7, + "text": "You|strong=\"H5769\"*, Yahweh|strong=\"H3068\"*, when you|strong=\"H5769\"* favored me|strong=\"H5769\"*, made my mountain stand strong;" + }, + { + "verseNum": 8, + "text": "I|strong=\"H6440\"* cried to|strong=\"H3068\"* you|strong=\"H6440\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "“What profit is|strong=\"H3068\"* there|strong=\"H3068\"* in|strong=\"H3068\"* my|strong=\"H3068\"* destruction, if|strong=\"H2603\"* I|strong=\"H3068\"* go|strong=\"H3068\"* down|strong=\"H7121\"* to|strong=\"H3068\"* the|strong=\"H3068\"* pit?" + }, + { + "verseNum": 10, + "text": "Hear|strong=\"H5046\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H1818\"* have mercy on|strong=\"H3381\"* me|strong=\"H5046\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H1961\"* have|strong=\"H1961\"* turned|strong=\"H1961\"* my|strong=\"H8085\"* mourning into|strong=\"H1961\"* dancing for|strong=\"H3068\"* me|strong=\"H1961\"*." + }, + { + "verseNum": 12, + "text": "to|strong=\"H2015\"* the|strong=\"H6605\"* end that my|strong=\"H6605\"* heart may sing praise to|strong=\"H2015\"* you|strong=\"H8057\"*, and|strong=\"H8242\"* not|strong=\"H6605\"* be silent." + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H1732\"* you, Yahweh|strong=\"H3068\"*, I take refuge." + }, + { + "verseNum": 2, + "text": "Bow down your|strong=\"H3068\"* ear to|strong=\"H3068\"* me|strong=\"H5769\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H1004\"* you|strong=\"H3467\"* are|strong=\"H1004\"* my|strong=\"H1961\"* rock|strong=\"H6697\"* and|strong=\"H1004\"* my|strong=\"H1961\"* fortress|strong=\"H4581\"*," + }, + { + "verseNum": 4, + "text": "Pluck me|strong=\"H5148\"* out of|strong=\"H8034\"* the|strong=\"H3588\"* net|strong=\"H4686\"* that|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3588\"* laid secretly for|strong=\"H3588\"* me|strong=\"H5148\"*," + }, + { + "verseNum": 5, + "text": "Into|strong=\"H3318\"* your|strong=\"H3588\"* hand I|strong=\"H3588\"* commend my|strong=\"H3318\"* spirit." + }, + { + "verseNum": 6, + "text": "I|strong=\"H3027\"* hate those who|strong=\"H3068\"* regard lying vanities," + }, + { + "verseNum": 7, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* glad and|strong=\"H3068\"* rejoice in|strong=\"H3068\"* your|strong=\"H3068\"* loving kindness," + }, + { + "verseNum": 8, + "text": "You|strong=\"H3045\"* have|strong=\"H3045\"* not|strong=\"H3045\"* shut me|strong=\"H5315\"* up|strong=\"H7200\"* into|strong=\"H3045\"* the|strong=\"H7200\"* hand of|strong=\"H5315\"* the|strong=\"H7200\"* enemy." + }, + { + "verseNum": 9, + "text": "Have|strong=\"H3027\"* mercy on|strong=\"H3027\"* me|strong=\"H5975\"*, Yahweh|strong=\"H3068\"*, for|strong=\"H3027\"* I|strong=\"H3808\"* am in|strong=\"H5975\"* distress|strong=\"H3027\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* my|strong=\"H3068\"* life|strong=\"H5315\"* is|strong=\"H3068\"* spent with|strong=\"H3068\"* sorrow|strong=\"H3708\"*," + }, + { + "verseNum": 11, + "text": "Because|strong=\"H3588\"* of|strong=\"H8141\"* all|strong=\"H3615\"* my|strong=\"H3615\"* adversaries I|strong=\"H3588\"* have|strong=\"H5771\"* become utterly|strong=\"H3782\"* contemptible to|strong=\"H8141\"* my|strong=\"H3615\"* neighbors," + }, + { + "verseNum": 12, + "text": "I|strong=\"H3045\"* am|strong=\"H1961\"* forgotten from|strong=\"H4480\"* their|strong=\"H3605\"* hearts like|strong=\"H1961\"* a|strong=\"H3068\"* dead man|strong=\"H3605\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H4191\"* I|strong=\"H3820\"* have|strong=\"H1961\"* heard the|strong=\"H1961\"* slander of|strong=\"H3627\"* many, terror on|strong=\"H1961\"* every side," + }, + { + "verseNum": 14, + "text": "But|strong=\"H3588\"* I|strong=\"H3588\"* trust in|strong=\"H5921\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "My|strong=\"H3068\"* times are|strong=\"H3068\"* in|strong=\"H5921\"* your|strong=\"H3068\"* hand." + }, + { + "verseNum": 16, + "text": "Make|strong=\"H3027\"* your|strong=\"H3027\"* face to|strong=\"H6256\"* shine on|strong=\"H3027\"* your|strong=\"H3027\"* servant." + }, + { + "verseNum": 17, + "text": "Let me|strong=\"H6440\"* not|strong=\"H6440\"* be|strong=\"H5650\"* disappointed, Yahweh|strong=\"H3068\"*, for|strong=\"H5921\"* I|strong=\"H5921\"* have|strong=\"H5650\"* called on|strong=\"H5921\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 18, + "text": "Let the|strong=\"H3588\"* lying lips be|strong=\"H3068\"* mute," + }, + { + "verseNum": 19, + "text": "Oh how great is|strong=\"H6662\"* your|strong=\"H5921\"* goodness," + }, + { + "verseNum": 20, + "text": "In|strong=\"H7227\"* the|strong=\"H3373\"* shelter|strong=\"H2620\"* of|strong=\"H1121\"* your|strong=\"H4100\"* presence|strong=\"H5048\"* you|strong=\"H4100\"* will|strong=\"H1121\"* hide|strong=\"H6845\"* them|strong=\"H1121\"* from|strong=\"H1121\"* the|strong=\"H3373\"* plotting of|strong=\"H1121\"* man|strong=\"H1121\"*." + }, + { + "verseNum": 21, + "text": "Praise be|strong=\"H6440\"* to|strong=\"H6440\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 22, + "text": "As|strong=\"H3068\"* for|strong=\"H3588\"* me|strong=\"H1288\"*, I|strong=\"H3588\"* said in|strong=\"H3068\"* my|strong=\"H3068\"* haste, “I|strong=\"H3588\"* am|strong=\"H3068\"* cut|strong=\"H2617\"* off from|strong=\"H3068\"* before your|strong=\"H3068\"* eyes.”" + }, + { + "verseNum": 23, + "text": "Oh love Yahweh|strong=\"H3068\"*, all you|strong=\"H5869\"* his|strong=\"H8085\"* saints!" + }, + { + "verseNum": 24, + "text": "Be|strong=\"H3068\"* strong, and|strong=\"H3068\"* let your|strong=\"H3068\"* heart take|strong=\"H6213\"* courage," + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "Blessed is|strong=\"H6588\"* he|strong=\"H1732\"* whose disobedience is|strong=\"H6588\"* forgiven|strong=\"H5375\"*," + }, + { + "verseNum": 2, + "text": "Blessed is|strong=\"H3068\"* the|strong=\"H3068\"* man|strong=\"H7423\"* to|strong=\"H3068\"* whom Yahweh|strong=\"H3068\"* doesn’t impute|strong=\"H2803\"* iniquity|strong=\"H5771\"*," + }, + { + "verseNum": 3, + "text": "When|strong=\"H3588\"* I|strong=\"H3588\"* kept|strong=\"H2790\"* silence|strong=\"H2790\"*, my|strong=\"H3605\"* bones|strong=\"H6106\"* wasted|strong=\"H1086\"* away|strong=\"H3605\"* through|strong=\"H3605\"* my|strong=\"H3605\"* groaning|strong=\"H7581\"* all|strong=\"H3605\"* day|strong=\"H3117\"* long|strong=\"H3117\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* day|strong=\"H3119\"* and|strong=\"H3027\"* night|strong=\"H3915\"* your|strong=\"H5921\"* hand|strong=\"H3027\"* was|strong=\"H3027\"* heavy|strong=\"H3513\"* on|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H5921\"* acknowledged|strong=\"H3045\"* my|strong=\"H3068\"* sin|strong=\"H2403\"* to|strong=\"H3068\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H5921\"* this|strong=\"H2063\"*, let|strong=\"H3808\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3605\"* godly|strong=\"H2623\"* pray|strong=\"H6419\"* to|strong=\"H5921\"* you|strong=\"H3605\"* in|strong=\"H5921\"* a|strong=\"H3068\"* time|strong=\"H6256\"* when|strong=\"H6256\"* you|strong=\"H3605\"* may|strong=\"H4325\"* be|strong=\"H3808\"* found|strong=\"H4672\"*." + }, + { + "verseNum": 7, + "text": "You are my|strong=\"H5341\"* hiding|strong=\"H5643\"* place|strong=\"H5643\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5921\"* will|strong=\"H5869\"* instruct|strong=\"H3384\"* you|strong=\"H5921\"* and|strong=\"H3212\"* teach|strong=\"H3384\"* you|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* which|strong=\"H2098\"* you|strong=\"H5921\"* shall|strong=\"H5869\"* go|strong=\"H3212\"*." + }, + { + "verseNum": 9, + "text": "Don’t be|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H7126\"* horse|strong=\"H5483\"*, or|strong=\"H5483\"* like|strong=\"H1961\"* the|strong=\"H7126\"* mule|strong=\"H6505\"*, which|strong=\"H5483\"* have|strong=\"H1961\"* no|strong=\"H1077\"* understanding," + }, + { + "verseNum": 10, + "text": "Many|strong=\"H7227\"* sorrows|strong=\"H4341\"* come|strong=\"H5437\"* to|strong=\"H3068\"* the|strong=\"H3068\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 11, + "text": "Be|strong=\"H3068\"* glad|strong=\"H8055\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* rejoice|strong=\"H8055\"*, you|strong=\"H3605\"* righteous|strong=\"H6662\"*!" + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Rejoice|strong=\"H7442\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, you|strong=\"H8416\"* righteous|strong=\"H6662\"*!" + }, + { + "verseNum": 2, + "text": "Give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* the|strong=\"H3068\"* lyre|strong=\"H3658\"*." + }, + { + "verseNum": 3, + "text": "Sing|strong=\"H7891\"* to|strong=\"H3190\"* him a|strong=\"H3068\"* new|strong=\"H2319\"* song|strong=\"H7892\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* is|strong=\"H3068\"* right|strong=\"H3477\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3068\"* loves righteousness|strong=\"H6666\"* and|strong=\"H3068\"* justice|strong=\"H4941\"*." + }, + { + "verseNum": 6, + "text": "By|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, the|strong=\"H3605\"* heavens|strong=\"H8064\"* were|strong=\"H8064\"* made|strong=\"H6213\"*:" + }, + { + "verseNum": 7, + "text": "He|strong=\"H5414\"* gathers|strong=\"H3664\"* the|strong=\"H5414\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* the|strong=\"H5414\"* sea|strong=\"H3220\"* together|strong=\"H3664\"* as|strong=\"H5414\"* a|strong=\"H3068\"* heap|strong=\"H5067\"*." + }, + { + "verseNum": 8, + "text": "Let all|strong=\"H3605\"* the|strong=\"H3605\"* earth fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* he|strong=\"H1931\"* spoke, and|strong=\"H5975\"* it|strong=\"H1931\"* was|strong=\"H1961\"* done|strong=\"H1961\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* brings the|strong=\"H3068\"* counsel|strong=\"H6098\"* of|strong=\"H3068\"* the|strong=\"H3068\"* nations|strong=\"H1471\"* to|strong=\"H3068\"* nothing." + }, + { + "verseNum": 11, + "text": "The|strong=\"H3068\"* counsel|strong=\"H6098\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* stands|strong=\"H5975\"* fast|strong=\"H5975\"* forever|strong=\"H5769\"*," + }, + { + "verseNum": 12, + "text": "Blessed is|strong=\"H3068\"* the|strong=\"H3068\"* nation|strong=\"H1471\"* whose|strong=\"H1471\"* God|strong=\"H3068\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* looks|strong=\"H7200\"* from|strong=\"H1121\"* heaven|strong=\"H8064\"*." + }, + { + "verseNum": 14, + "text": "From|strong=\"H3427\"* the|strong=\"H3605\"* place|strong=\"H4349\"* of|strong=\"H3427\"* his|strong=\"H3605\"* habitation|strong=\"H3427\"* he|strong=\"H3605\"* looks|strong=\"H7688\"* out|strong=\"H3605\"* on|strong=\"H3427\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3605\"* earth," + }, + { + "verseNum": 15, + "text": "he|strong=\"H3605\"* who|strong=\"H3605\"* fashions|strong=\"H3335\"* all|strong=\"H3605\"* of|strong=\"H3820\"* their|strong=\"H3605\"* hearts|strong=\"H3820\"*;" + }, + { + "verseNum": 16, + "text": "There|strong=\"H7230\"* is|strong=\"H4428\"* no|strong=\"H3808\"* king|strong=\"H4428\"* saved|strong=\"H3467\"* by|strong=\"H3808\"* the|strong=\"H3808\"* multitude|strong=\"H7230\"* of|strong=\"H4428\"* an|strong=\"H3467\"* army|strong=\"H2428\"*." + }, + { + "verseNum": 17, + "text": "A|strong=\"H3068\"* horse|strong=\"H5483\"* is|strong=\"H5483\"* a|strong=\"H3068\"* vain|strong=\"H8267\"* thing|strong=\"H8267\"* for|strong=\"H2428\"* safety|strong=\"H8668\"*," + }, + { + "verseNum": 18, + "text": "Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s eye|strong=\"H5869\"* is|strong=\"H3068\"* on|strong=\"H3068\"* those who|strong=\"H3068\"* fear|strong=\"H3373\"* him|strong=\"H5869\"*," + }, + { + "verseNum": 19, + "text": "to|strong=\"H5315\"* deliver|strong=\"H5337\"* their|strong=\"H5337\"* soul|strong=\"H5315\"* from|strong=\"H5315\"* death|strong=\"H4194\"*," + }, + { + "verseNum": 20, + "text": "Our|strong=\"H3068\"* soul|strong=\"H5315\"* has|strong=\"H3068\"* waited|strong=\"H2442\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* our|strong=\"H3588\"* heart|strong=\"H3820\"* rejoices|strong=\"H8055\"* in|strong=\"H8034\"* him|strong=\"H8055\"*," + }, + { + "verseNum": 22, + "text": "Let|strong=\"H1961\"* your|strong=\"H3068\"* loving kindness|strong=\"H2617\"* be|strong=\"H1961\"* on|strong=\"H5921\"* us|strong=\"H5921\"*, Yahweh|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "+ 34:1 Psalm 34 is an acrostic poem, with each verse starting with a letter of the alphabet (ordered from Alef to Tav).*I|strong=\"H1980\"* will|strong=\"H6440\"* bless Yahweh|strong=\"H3068\"* at|strong=\"H1732\"* all|strong=\"H6440\"* times|strong=\"H6440\"*." + }, + { + "verseNum": 2, + "text": "My|strong=\"H3605\"* soul shall|strong=\"H3068\"* boast|strong=\"H1288\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "Oh magnify Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3068\"* sought Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* answered me|strong=\"H7311\"*," + }, + { + "verseNum": 5, + "text": "They|strong=\"H3068\"* looked|strong=\"H3068\"* to|strong=\"H3068\"* him|strong=\"H3605\"*, and|strong=\"H3068\"* were|strong=\"H3068\"* radiant." + }, + { + "verseNum": 6, + "text": "This|strong=\"H6440\"* poor man|strong=\"H6440\"* cried, and|strong=\"H6440\"* Yahweh|strong=\"H3068\"* heard him|strong=\"H6440\"*," + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*’s angel encamps around those|strong=\"H3605\"* who|strong=\"H3605\"* fear him|strong=\"H7121\"*," + }, + { + "verseNum": 8, + "text": "Oh taste and|strong=\"H3068\"* see that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* good." + }, + { + "verseNum": 9, + "text": "Oh fear Yahweh|strong=\"H3068\"*, you|strong=\"H3588\"* his|strong=\"H3068\"* saints," + }, + { + "verseNum": 10, + "text": "The|strong=\"H3588\"* young lions do|strong=\"H3068\"* lack|strong=\"H4270\"*, and|strong=\"H3068\"* suffer hunger," + }, + { + "verseNum": 11, + "text": "Come, you|strong=\"H3605\"* children, listen|strong=\"H3605\"* to|strong=\"H3068\"* me|strong=\"H1875\"*." + }, + { + "verseNum": 12, + "text": "Who|strong=\"H3068\"* is|strong=\"H3068\"* someone who|strong=\"H3068\"* desires life," + }, + { + "verseNum": 13, + "text": "Keep|strong=\"H7200\"* your|strong=\"H7200\"* tongue from|strong=\"H3117\"* evil," + }, + { + "verseNum": 14, + "text": "Depart from|strong=\"H7451\"* evil|strong=\"H7451\"*, and|strong=\"H1696\"* do|strong=\"H8193\"* good." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"*’s eyes are|strong=\"H6213\"* toward|strong=\"H6213\"* the|strong=\"H6213\"* righteous." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"*’s face|strong=\"H5869\"* is|strong=\"H3068\"* against|strong=\"H3068\"* those who|strong=\"H3068\"* do|strong=\"H3068\"* evil," + }, + { + "verseNum": 17, + "text": "The|strong=\"H6440\"* righteous cry, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* hears," + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* near to|strong=\"H3068\"* those|strong=\"H3605\"* who|strong=\"H3605\"* have|strong=\"H3068\"* a|strong=\"H3068\"* broken heart|strong=\"H8085\"*," + }, + { + "verseNum": 19, + "text": "Many are|strong=\"H3068\"* the|strong=\"H3068\"* afflictions of|strong=\"H3068\"* the|strong=\"H3068\"* righteous," + }, + { + "verseNum": 20, + "text": "He|strong=\"H3068\"* protects all|strong=\"H3605\"* of|strong=\"H3068\"* his|strong=\"H3605\"* bones." + }, + { + "verseNum": 21, + "text": "Evil shall|strong=\"H3808\"* kill the|strong=\"H3605\"* wicked." + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* redeems the|strong=\"H4191\"* soul of|strong=\"H4191\"* his|strong=\"H8130\"* servants." + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "Contend|strong=\"H7378\"*, Yahweh|strong=\"H3068\"*, with|strong=\"H3068\"* those who|strong=\"H3068\"* contend|strong=\"H7378\"* with|strong=\"H3068\"* me." + }, + { + "verseNum": 2, + "text": "Take|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H4043\"* shield|strong=\"H4043\"* and|strong=\"H6965\"* buckler|strong=\"H4043\"*," + }, + { + "verseNum": 3, + "text": "Brandish the|strong=\"H5462\"* spear|strong=\"H2595\"* and|strong=\"H5315\"* block those|strong=\"H5315\"* who|strong=\"H5315\"* pursue|strong=\"H7291\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 4, + "text": "Let|strong=\"H5315\"* those|strong=\"H5315\"* who|strong=\"H5315\"* seek|strong=\"H1245\"* after|strong=\"H1245\"* my|strong=\"H1245\"* soul|strong=\"H5315\"* be|strong=\"H5315\"* disappointed and|strong=\"H5315\"* brought|strong=\"H3637\"* to|strong=\"H1245\"* dishonor|strong=\"H3637\"*." + }, + { + "verseNum": 5, + "text": "Let|strong=\"H1961\"* them|strong=\"H6440\"* be|strong=\"H1961\"* as|strong=\"H1961\"* chaff|strong=\"H4671\"* before|strong=\"H6440\"* the|strong=\"H6440\"* wind|strong=\"H7307\"*," + }, + { + "verseNum": 6, + "text": "Let|strong=\"H1961\"* their|strong=\"H3068\"* way|strong=\"H1870\"* be|strong=\"H1961\"* dark|strong=\"H2822\"* and|strong=\"H3068\"* slippery|strong=\"H2519\"*," + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* without|strong=\"H2600\"* cause|strong=\"H2600\"* they|strong=\"H3588\"* have|strong=\"H3588\"* hidden|strong=\"H2934\"* their|strong=\"H3588\"* net|strong=\"H7568\"* in|strong=\"H5315\"* a|strong=\"H3068\"* pit|strong=\"H7845\"* for|strong=\"H3588\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 8, + "text": "Let|strong=\"H3808\"* destruction|strong=\"H7722\"* come|strong=\"H5307\"* on|strong=\"H5307\"* him|strong=\"H3045\"* unawares|strong=\"H3045\"*." + }, + { + "verseNum": 9, + "text": "My|strong=\"H3068\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* joyful|strong=\"H1523\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* my|strong=\"H3605\"* bones|strong=\"H6106\"* shall|strong=\"H3068\"* say, “Yahweh|strong=\"H3068\"*, who|strong=\"H4310\"* is|strong=\"H3068\"* like|strong=\"H3644\"* you|strong=\"H3605\"*," + }, + { + "verseNum": 11, + "text": "Unrighteous|strong=\"H2555\"* witnesses|strong=\"H5707\"* rise|strong=\"H6965\"* up|strong=\"H6965\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H5315\"* reward|strong=\"H7999\"* me|strong=\"H5315\"* evil|strong=\"H7451\"* for|strong=\"H8478\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 13, + "text": "But|strong=\"H7725\"* as|strong=\"H5315\"* for|strong=\"H5921\"* me|strong=\"H5315\"*, when|strong=\"H7725\"* they|strong=\"H5921\"* were|strong=\"H5315\"* sick|strong=\"H2470\"*, my|strong=\"H5921\"* clothing|strong=\"H3830\"* was|strong=\"H5315\"* sackcloth|strong=\"H8242\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H1980\"* behaved|strong=\"H1980\"* myself|strong=\"H1980\"* as|strong=\"H1980\"* though it|strong=\"H1980\"* had been|strong=\"H7817\"* my|strong=\"H1980\"* friend|strong=\"H7453\"* or|strong=\"H7453\"* my|strong=\"H1980\"* brother|strong=\"H7453\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H3808\"* in|strong=\"H5921\"* my|strong=\"H5921\"* adversity|strong=\"H6761\"*, they|strong=\"H3808\"* rejoiced|strong=\"H8055\"*, and|strong=\"H3045\"* gathered themselves|strong=\"H3045\"* together|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "Like|strong=\"H5921\"* the|strong=\"H5921\"* profane mockers|strong=\"H3934\"* in|strong=\"H5921\"* feasts|strong=\"H4580\"*," + }, + { + "verseNum": 17, + "text": "Lord, how|strong=\"H4100\"* long|strong=\"H4100\"* will|strong=\"H5315\"* you|strong=\"H7725\"* look|strong=\"H7200\"* on|strong=\"H7200\"*?" + }, + { + "verseNum": 18, + "text": "I|strong=\"H1984\"* will|strong=\"H5971\"* give|strong=\"H3034\"* you|strong=\"H3034\"* thanks|strong=\"H3034\"* in|strong=\"H7227\"* the|strong=\"H1984\"* great|strong=\"H7227\"* assembly|strong=\"H6951\"*." + }, + { + "verseNum": 19, + "text": "Don’t let|strong=\"H8055\"* those|strong=\"H8130\"* who|strong=\"H8130\"* are|strong=\"H5869\"* my|strong=\"H8267\"* enemies|strong=\"H8130\"* wrongfully|strong=\"H8267\"* rejoice|strong=\"H8055\"* over|strong=\"H5869\"* me|strong=\"H8130\"*;" + }, + { + "verseNum": 20, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* don’t speak|strong=\"H1696\"* peace|strong=\"H7965\"*," + }, + { + "verseNum": 21, + "text": "Yes|strong=\"H7200\"*, they|strong=\"H5921\"* opened|strong=\"H7337\"* their|strong=\"H7200\"* mouth|strong=\"H6310\"* wide|strong=\"H7337\"* against|strong=\"H5921\"* me|strong=\"H7200\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H4480\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* it|strong=\"H7200\"*, Yahweh|strong=\"H3068\"*. Don’t keep|strong=\"H2790\"* silent|strong=\"H2790\"*." + }, + { + "verseNum": 23, + "text": "Wake|strong=\"H6974\"* up|strong=\"H5782\"*! Rise up|strong=\"H5782\"* to|strong=\"H4941\"* defend|strong=\"H7379\"* me|strong=\"H7379\"*, my|strong=\"H4941\"* God!" + }, + { + "verseNum": 24, + "text": "Vindicate|strong=\"H8199\"* me|strong=\"H8055\"*, Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*, according to|strong=\"H3068\"* your|strong=\"H3068\"* righteousness|strong=\"H6664\"*." + }, + { + "verseNum": 25, + "text": "Don’t let|strong=\"H5315\"* them|strong=\"H1104\"* say in|strong=\"H5315\"* their|strong=\"H1104\"* heart|strong=\"H3820\"*, “Aha|strong=\"H1889\"*! That|strong=\"H5315\"*’s the|strong=\"H1104\"* way we|strong=\"H3068\"* want|strong=\"H5315\"* it|strong=\"H5315\"*!”" + }, + { + "verseNum": 26, + "text": "Let|strong=\"H8056\"* them|strong=\"H5921\"* be|strong=\"H7451\"* disappointed and|strong=\"H1431\"* confounded|strong=\"H2659\"* together|strong=\"H3162\"* who|strong=\"H3639\"* rejoice|strong=\"H8056\"* at|strong=\"H5921\"* my|strong=\"H5921\"* calamity|strong=\"H7451\"*." + }, + { + "verseNum": 27, + "text": "Let|strong=\"H8055\"* those who|strong=\"H3068\"* favor|strong=\"H7965\"* my|strong=\"H3068\"* righteous|strong=\"H6664\"* cause|strong=\"H6664\"* shout|strong=\"H7442\"* for|strong=\"H7442\"* joy|strong=\"H7442\"* and|strong=\"H3068\"* be|strong=\"H3068\"* glad|strong=\"H8055\"*." + }, + { + "verseNum": 28, + "text": "My|strong=\"H3605\"* tongue|strong=\"H3956\"* shall|strong=\"H3117\"* talk|strong=\"H1897\"* about|strong=\"H3117\"* your|strong=\"H3605\"* righteousness|strong=\"H6664\"* and|strong=\"H3117\"* about|strong=\"H3117\"* your|strong=\"H3605\"* praise|strong=\"H8416\"* all|strong=\"H3605\"* day|strong=\"H3117\"* long|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* revelation is|strong=\"H3068\"* within my|strong=\"H3068\"* heart about|strong=\"H1732\"* the|strong=\"H3068\"* disobedience of|strong=\"H3068\"* the|strong=\"H3068\"* wicked:" + }, + { + "verseNum": 2, + "text": "For|strong=\"H5869\"* he|strong=\"H7130\"* flatters himself|strong=\"H3820\"* in|strong=\"H7130\"* his|strong=\"H7130\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H3588\"* words of|strong=\"H5869\"* his|strong=\"H3588\"* mouth are|strong=\"H5869\"* iniquity|strong=\"H5771\"* and|strong=\"H5869\"* deceit." + }, + { + "verseNum": 4, + "text": "He|strong=\"H6310\"* plots iniquity on|strong=\"H1697\"* his|strong=\"H6310\"* bed." + }, + { + "verseNum": 5, + "text": "Your|strong=\"H5921\"* loving|strong=\"H2896\"* kindness|strong=\"H2896\"*, Yahweh|strong=\"H3068\"*, is|strong=\"H2896\"* in|strong=\"H5921\"* the|strong=\"H5921\"* heavens." + }, + { + "verseNum": 6, + "text": "Your|strong=\"H3068\"* righteousness|strong=\"H2617\"* is|strong=\"H3068\"* like|strong=\"H5704\"* the|strong=\"H3068\"* mountains of|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "How precious is|strong=\"H3068\"* your|strong=\"H3068\"* loving kindness, God|strong=\"H3068\"*!" + }, + { + "verseNum": 8, + "text": "They|strong=\"H4100\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* abundantly satisfied with|strong=\"H1121\"* the|strong=\"H1121\"* abundance of|strong=\"H1121\"* your|strong=\"H4100\"* house." + }, + { + "verseNum": 9, + "text": "For|strong=\"H1004\"* with|strong=\"H1004\"* you|strong=\"H8248\"* is|strong=\"H1004\"* the|strong=\"H8248\"* spring of|strong=\"H1004\"* life." + }, + { + "verseNum": 10, + "text": "Oh continue your|strong=\"H7200\"* loving kindness to|strong=\"H7200\"* those|strong=\"H5973\"* who|strong=\"H3588\"* know you|strong=\"H3588\"*," + }, + { + "verseNum": 11, + "text": "Don’t let the|strong=\"H3045\"* foot of|strong=\"H3820\"* pride come|strong=\"H3045\"* against me|strong=\"H4900\"*." + }, + { + "verseNum": 12, + "text": "There the|strong=\"H3027\"* workers of|strong=\"H3027\"* iniquity are|strong=\"H7563\"* fallen." + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "Don’t fret|strong=\"H2734\"* because of|strong=\"H6213\"* evildoers|strong=\"H7489\"*," + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* shall soon|strong=\"H4120\"* be|strong=\"H3588\"* cut down|strong=\"H5243\"* like the|strong=\"H3588\"* grass|strong=\"H2682\"*," + }, + { + "verseNum": 3, + "text": "Trust in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 4, + "text": "Also|strong=\"H3068\"* delight|strong=\"H6026\"* yourself|strong=\"H5921\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 5, + "text": "Commit|strong=\"H6213\"* your|strong=\"H3068\"* way|strong=\"H1870\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "he|strong=\"H3318\"* will|strong=\"H6664\"* make|strong=\"H4941\"* your|strong=\"H3318\"* righteousness|strong=\"H6664\"* shine out|strong=\"H3318\"* like|strong=\"H3318\"* light," + }, + { + "verseNum": 7, + "text": "Rest|strong=\"H1826\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* wait|strong=\"H2342\"* patiently|strong=\"H2342\"* for|strong=\"H6213\"* him|strong=\"H6213\"*." + }, + { + "verseNum": 8, + "text": "Cease|strong=\"H7503\"* from|strong=\"H2534\"* anger|strong=\"H2534\"*, and|strong=\"H2534\"* forsake|strong=\"H5800\"* wrath|strong=\"H2534\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* evildoers|strong=\"H7489\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*," + }, + { + "verseNum": 10, + "text": "For|strong=\"H5921\"* yet|strong=\"H5750\"* a|strong=\"H3068\"* little|strong=\"H4592\"* while|strong=\"H5750\"*, and|strong=\"H4725\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* will|strong=\"H7563\"* be|strong=\"H5750\"* no|strong=\"H7563\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H5921\"* the|strong=\"H5921\"* humble|strong=\"H6035\"* shall|strong=\"H6035\"* inherit|strong=\"H3423\"* the|strong=\"H5921\"* land," + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* wicked|strong=\"H7563\"* plots|strong=\"H2161\"* against|strong=\"H5921\"* the|strong=\"H5921\"* just|strong=\"H6662\"*," + }, + { + "verseNum": 13, + "text": "The|strong=\"H7200\"* Lord will|strong=\"H3117\"* laugh|strong=\"H7832\"* at|strong=\"H3117\"* him|strong=\"H7200\"*," + }, + { + "verseNum": 14, + "text": "The|strong=\"H1870\"* wicked|strong=\"H7563\"* have|strong=\"H7563\"* drawn|strong=\"H6605\"* out|strong=\"H1869\"* the|strong=\"H1870\"* sword|strong=\"H2719\"*, and|strong=\"H6041\"* have|strong=\"H7563\"* bent|strong=\"H1869\"* their|strong=\"H5307\"* bow|strong=\"H7198\"*," + }, + { + "verseNum": 15, + "text": "Their|strong=\"H7665\"* sword|strong=\"H2719\"* shall|strong=\"H3820\"* enter into|strong=\"H2719\"* their|strong=\"H7665\"* own heart|strong=\"H3820\"*." + }, + { + "verseNum": 16, + "text": "Better|strong=\"H2896\"* is|strong=\"H7563\"* a|strong=\"H3068\"* little|strong=\"H4592\"* that|strong=\"H2896\"* the|strong=\"H2896\"* righteous|strong=\"H6662\"* has," + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* arms|strong=\"H2220\"* of|strong=\"H3068\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* broken|strong=\"H7665\"*," + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* knows|strong=\"H3045\"* the|strong=\"H3068\"* days|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3068\"* perfect|strong=\"H8549\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"H3117\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* be|strong=\"H3808\"* disappointed in|strong=\"H3117\"* the|strong=\"H3117\"* time|strong=\"H6256\"* of|strong=\"H3117\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"* shall|strong=\"H3068\"* perish|strong=\"H3615\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H5414\"* wicked|strong=\"H7563\"* borrow|strong=\"H3867\"*, and|strong=\"H6662\"* don’t pay|strong=\"H7999\"* back|strong=\"H7999\"*," + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* such as|strong=\"H3588\"* are|strong=\"H3772\"* blessed|strong=\"H1288\"* by|strong=\"H3588\"* him|strong=\"H3772\"* shall|strong=\"H3772\"* inherit|strong=\"H3423\"* the|strong=\"H3588\"* land." + }, + { + "verseNum": 23, + "text": "A|strong=\"H3068\"* man|strong=\"H1397\"*’s steps|strong=\"H4703\"* are|strong=\"H3068\"* established|strong=\"H3559\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 24, + "text": "Though|strong=\"H3588\"* he|strong=\"H3588\"* stumble, he|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* fall|strong=\"H5307\"*," + }, + { + "verseNum": 25, + "text": "I|strong=\"H7200\"* have|strong=\"H1961\"* been|strong=\"H1961\"* young|strong=\"H5288\"*, and|strong=\"H3899\"* now|strong=\"H1961\"* am|strong=\"H1961\"* old|strong=\"H2204\"*," + }, + { + "verseNum": 26, + "text": "All|strong=\"H3605\"* day|strong=\"H3117\"* long|strong=\"H3117\"* he|strong=\"H3117\"* deals graciously|strong=\"H2603\"*, and|strong=\"H3117\"* lends|strong=\"H3867\"*." + }, + { + "verseNum": 27, + "text": "Depart|strong=\"H5493\"* from|strong=\"H5493\"* evil|strong=\"H7451\"*, and|strong=\"H5769\"* do|strong=\"H6213\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 28, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* loves justice|strong=\"H4941\"*," + }, + { + "verseNum": 29, + "text": "The|strong=\"H5921\"* righteous|strong=\"H6662\"* shall|strong=\"H6662\"* inherit|strong=\"H3423\"* the|strong=\"H5921\"* land," + }, + { + "verseNum": 30, + "text": "The|strong=\"H1696\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H1696\"* righteous|strong=\"H6662\"* talks of|strong=\"H6310\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H3808\"* law|strong=\"H8451\"* of|strong=\"H8451\"* his|strong=\"H3808\"* God|strong=\"H3808\"* is|strong=\"H3820\"* in|strong=\"H3808\"* his|strong=\"H3808\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"H1245\"* wicked|strong=\"H7563\"* watch|strong=\"H6822\"* the|strong=\"H1245\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 33, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* leave|strong=\"H5800\"* him|strong=\"H3027\"* in|strong=\"H3068\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*," + }, + { + "verseNum": 34, + "text": "Wait|strong=\"H6960\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H8104\"* way|strong=\"H1870\"*," + }, + { + "verseNum": 35, + "text": "I|strong=\"H7200\"* have|strong=\"H7563\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* wicked|strong=\"H7563\"* in|strong=\"H7200\"* great power|strong=\"H6184\"*," + }, + { + "verseNum": 36, + "text": "But|strong=\"H3808\"* he|strong=\"H3808\"* passed|strong=\"H5674\"* away|strong=\"H5674\"*, and|strong=\"H5674\"* behold|strong=\"H2009\"*, he|strong=\"H3808\"* was|strong=\"H3808\"* not|strong=\"H3808\"*." + }, + { + "verseNum": 37, + "text": "Mark|strong=\"H8104\"* the|strong=\"H7200\"* perfect|strong=\"H8535\"* man|strong=\"H7200\"*, and|strong=\"H7200\"* see|strong=\"H7200\"* the|strong=\"H7200\"* upright|strong=\"H3477\"*," + }, + { + "verseNum": 38, + "text": "As|strong=\"H3162\"* for|strong=\"H3162\"* transgressors|strong=\"H6586\"*, they|strong=\"H3772\"* shall|strong=\"H7563\"* be|strong=\"H7563\"* destroyed|strong=\"H8045\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 39, + "text": "But|strong=\"H6662\"* the|strong=\"H3068\"* salvation|strong=\"H8668\"* of|strong=\"H3068\"* the|strong=\"H3068\"* righteous|strong=\"H6662\"* is|strong=\"H3068\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 40, + "text": "Yahweh|strong=\"H3068\"* helps|strong=\"H5826\"* them|strong=\"H3588\"* and|strong=\"H3068\"* rescues|strong=\"H5826\"* them|strong=\"H3588\"*." + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, don’t rebuke me|strong=\"H2142\"* in|strong=\"H1732\"* your|strong=\"H2142\"* wrath," + }, + { + "verseNum": 2, + "text": "For|strong=\"H3068\"* your|strong=\"H3068\"* arrows have|strong=\"H3068\"* pierced me|strong=\"H3256\"*," + }, + { + "verseNum": 3, + "text": "There is|strong=\"H3027\"* no soundness in|strong=\"H5921\"* my|strong=\"H5921\"* flesh because|strong=\"H3588\"* of|strong=\"H3027\"* your|strong=\"H5921\"* indignation," + }, + { + "verseNum": 4, + "text": "For|strong=\"H6440\"* my|strong=\"H6440\"* iniquities have|strong=\"H7965\"* gone over|strong=\"H6440\"* my|strong=\"H6440\"* head|strong=\"H6440\"*." + }, + { + "verseNum": 5, + "text": "My|strong=\"H3588\"* wounds are|strong=\"H5771\"* loathsome and|strong=\"H7218\"* corrupt" + }, + { + "verseNum": 6, + "text": "I|strong=\"H6440\"* am in|strong=\"H6440\"* pain and|strong=\"H6440\"* bowed down|strong=\"H6440\"* greatly." + }, + { + "verseNum": 7, + "text": "For|strong=\"H5704\"* my|strong=\"H3605\"* waist is|strong=\"H3117\"* filled with|strong=\"H1980\"* burning|strong=\"H1980\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H3588\"* am faint and|strong=\"H1320\"* severely bruised." + }, + { + "verseNum": 9, + "text": "Lord, all|strong=\"H5704\"* my|strong=\"H5704\"* desire is|strong=\"H3820\"* before|strong=\"H5704\"* you|strong=\"H5704\"*." + }, + { + "verseNum": 10, + "text": "My|strong=\"H3605\"* heart throbs." + }, + { + "verseNum": 11, + "text": "My|strong=\"H5800\"* lovers and|strong=\"H5869\"* my|strong=\"H5800\"* friends stand|strong=\"H5869\"* aloof from|strong=\"H5869\"* my|strong=\"H5800\"* plague." + }, + { + "verseNum": 12, + "text": "They|strong=\"H5975\"* also who|strong=\"H7350\"* seek after|strong=\"H7453\"* my|strong=\"H5048\"* life lay snares." + }, + { + "verseNum": 13, + "text": "But|strong=\"H1696\"* I|strong=\"H3117\"*, as|strong=\"H3117\"* a|strong=\"H3068\"* deaf man|strong=\"H5315\"*, don’t hear." + }, + { + "verseNum": 14, + "text": "Yes, I|strong=\"H3808\"* am as|strong=\"H6310\"* a|strong=\"H3068\"* man|strong=\"H2795\"* who|strong=\"H3808\"* doesn’t hear|strong=\"H8085\"*," + }, + { + "verseNum": 15, + "text": "For|strong=\"H1961\"* I|strong=\"H3808\"* hope in|strong=\"H8085\"* you|strong=\"H3808\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* said|strong=\"H6030\"*, “Don’t let them|strong=\"H6030\"* gloat over|strong=\"H3068\"* me|strong=\"H6030\"*," + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* am ready|strong=\"H4131\"* to|strong=\"H5921\"* fall|strong=\"H4131\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3588\"* declare my|strong=\"H3588\"* iniquity." + }, + { + "verseNum": 19, + "text": "But|strong=\"H3588\"* my|strong=\"H5046\"* enemies are|strong=\"H2403\"* vigorous and|strong=\"H2403\"* many." + }, + { + "verseNum": 20, + "text": "They who|strong=\"H2416\"* give|strong=\"H2416\"* evil for|strong=\"H2416\"* good are|strong=\"H8267\"* also adversaries to|strong=\"H2416\"* me|strong=\"H8130\"*," + }, + { + "verseNum": 21, + "text": "Don’t forsake me|strong=\"H7291\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "Hurry to|strong=\"H3068\"* help|strong=\"H5800\"* me|strong=\"H4480\"*," + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "I said, “I will watch my|strong=\"H1732\"* ways, so that|strong=\"H1732\"* I don’t sin with|strong=\"H1732\"* my|strong=\"H1732\"* tongue." + }, + { + "verseNum": 2, + "text": "I|strong=\"H5704\"* was|strong=\"H6310\"* mute with|strong=\"H6310\"* silence." + }, + { + "verseNum": 3, + "text": "My heart was|strong=\"H3511\"* hot within me." + }, + { + "verseNum": 4, + "text": "“Yahweh|strong=\"H3068\"*, show me|strong=\"H1696\"* my|strong=\"H1696\"* end," + }, + { + "verseNum": 5, + "text": "Behold, you|strong=\"H3117\"* have|strong=\"H3068\"* made|strong=\"H3045\"* my|strong=\"H3068\"* days|strong=\"H3117\"* hand widths." + }, + { + "verseNum": 6, + "text": "“Surely|strong=\"H5414\"* every|strong=\"H3605\"* man|strong=\"H3605\"* walks like|strong=\"H3117\"* a|strong=\"H3068\"* shadow." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H1980\"*, Lord, what|strong=\"H4310\"* do|strong=\"H4310\"* I|strong=\"H3045\"* wait for|strong=\"H3045\"*?" + }, + { + "verseNum": 8, + "text": "Deliver me|strong=\"H4100\"* from all my|strong=\"H6258\"* transgressions." + }, + { + "verseNum": 9, + "text": "I|strong=\"H7760\"* was|strong=\"H3605\"* mute." + }, + { + "verseNum": 10, + "text": "Remove|strong=\"H6605\"* your|strong=\"H6213\"* scourge away from|strong=\"H6213\"* me|strong=\"H6213\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H3615\"* you|strong=\"H5921\"* rebuke and|strong=\"H3027\"* correct man for|strong=\"H5921\"* iniquity," + }, + { + "verseNum": 12, + "text": "“Hear my|strong=\"H3605\"* prayer, Yahweh|strong=\"H3068\"*, and|strong=\"H1892\"* give ear to|strong=\"H5921\"* my|strong=\"H3605\"* cry." + }, + { + "verseNum": 13, + "text": "Oh spare me|strong=\"H5973\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H3068\"* recover strength," + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "I waited patiently for|strong=\"H1732\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3068\"* brought|strong=\"H3068\"* me|strong=\"H8085\"* up also|strong=\"H3068\"* out|strong=\"H5186\"* of|strong=\"H3068\"* a|strong=\"H3068\"* horrible pit," + }, + { + "verseNum": 3, + "text": "He|strong=\"H5921\"* has|strong=\"H7272\"* put|strong=\"H5927\"* a|strong=\"H3068\"* new song in|strong=\"H5921\"* my|strong=\"H5921\"* mouth, even|strong=\"H5921\"* praise to|strong=\"H5927\"* our|strong=\"H5921\"* God." + }, + { + "verseNum": 4, + "text": "Blessed is|strong=\"H3068\"* the|strong=\"H7200\"* man|strong=\"H7200\"* who|strong=\"H3068\"* makes|strong=\"H5414\"* Yahweh|strong=\"H3068\"* his|strong=\"H5414\"* trust," + }, + { + "verseNum": 5, + "text": "Many|strong=\"H3808\"*, Yahweh|strong=\"H3068\"*, my|strong=\"H3068\"* God|strong=\"H3068\"*, are|strong=\"H3068\"* the|strong=\"H3068\"* wonderful works which|strong=\"H3068\"* you|strong=\"H7760\"* have|strong=\"H3068\"* done|strong=\"H7760\"*," + }, + { + "verseNum": 6, + "text": "Sacrifice|strong=\"H6213\"* and|strong=\"H3068\"* offering|strong=\"H3068\"* you|strong=\"H6213\"* didn’t desire." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H3808\"* I|strong=\"H3808\"* said, “Behold|strong=\"H3808\"*, I|strong=\"H3808\"* have|strong=\"H2654\"* come." + }, + { + "verseNum": 8, + "text": "I|strong=\"H2009\"* delight to|strong=\"H5921\"* do your|strong=\"H5921\"* will|strong=\"H5612\"*, my|strong=\"H5921\"* God." + }, + { + "verseNum": 9, + "text": "I|strong=\"H8432\"* have|strong=\"H2654\"* proclaimed glad news of|strong=\"H8432\"* righteousness in|strong=\"H6213\"* the|strong=\"H6213\"* great|strong=\"H6213\"* assembly." + }, + { + "verseNum": 10, + "text": "I|strong=\"H2009\"* have|strong=\"H3068\"* not|strong=\"H3808\"* hidden your|strong=\"H3068\"* righteousness|strong=\"H6664\"* within my|strong=\"H3068\"* heart|strong=\"H8193\"*." + }, + { + "verseNum": 11, + "text": "Don’t withhold your|strong=\"H3808\"* tender mercies|strong=\"H2617\"* from|strong=\"H3820\"* me|strong=\"H3808\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3068\"* innumerable evils have|strong=\"H3068\"* surrounded me|strong=\"H4480\"*." + }, + { + "verseNum": 13, + "text": "Be|strong=\"H3808\"* pleased, Yahweh|strong=\"H3068\"*, to|strong=\"H5704\"* deliver me|strong=\"H7200\"*." + }, + { + "verseNum": 14, + "text": "Let them|strong=\"H5337\"* be|strong=\"H3068\"* disappointed and|strong=\"H3068\"* confounded together who|strong=\"H3068\"* seek after my|strong=\"H3068\"* soul to|strong=\"H3068\"* destroy it|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "Let|strong=\"H5315\"* them|strong=\"H3162\"* be|strong=\"H5315\"* desolate by|strong=\"H7451\"* reason of|strong=\"H5315\"* their|strong=\"H1245\"* shame|strong=\"H3637\"* that|strong=\"H5315\"* tell me|strong=\"H5315\"*, “Aha! Aha!”" + }, + { + "verseNum": 16, + "text": "Let all|strong=\"H5921\"* those|strong=\"H5921\"* who seek you|strong=\"H5921\"* rejoice and|strong=\"H8074\"* be glad in|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H3605\"* I|strong=\"H3068\"* am|strong=\"H3068\"* poor and|strong=\"H3068\"* needy." + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 1, + "text": "Blessed is|strong=\"H1732\"* he|strong=\"H1732\"* who considers the|strong=\"H1732\"* poor." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* preserve|strong=\"H4422\"* him|strong=\"H4422\"*, and|strong=\"H3068\"* keep him|strong=\"H4422\"* alive." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* sustain him|strong=\"H5414\"* on|strong=\"H3068\"* his|strong=\"H5414\"* sickbed," + }, + { + "verseNum": 4, + "text": "I|strong=\"H5921\"* said, “Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* mercy|strong=\"H3068\"* on|strong=\"H5921\"* me|strong=\"H5921\"*!" + }, + { + "verseNum": 5, + "text": "My|strong=\"H3068\"* enemies speak evil against|strong=\"H2398\"* me|strong=\"H5315\"*:" + }, + { + "verseNum": 6, + "text": "If he|strong=\"H8034\"* comes to|strong=\"H4191\"* see me|strong=\"H4191\"*, he|strong=\"H8034\"* speaks falsehood." + }, + { + "verseNum": 7, + "text": "All|strong=\"H7200\"* who|strong=\"H7723\"* hate me|strong=\"H7200\"* whisper together|strong=\"H6908\"* against|strong=\"H1696\"* me|strong=\"H7200\"*." + }, + { + "verseNum": 8, + "text": "“An|strong=\"H2803\"* evil|strong=\"H7451\"* disease”, they|strong=\"H5921\"* say, “has|strong=\"H3605\"* afflicted|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "Yes, my|strong=\"H6965\"* own familiar friend, in|strong=\"H7901\"* whom I|strong=\"H1697\"* trusted," + }, + { + "verseNum": 10, + "text": "But|strong=\"H1571\"* you|strong=\"H5921\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H1571\"* mercy on|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H3899\"* raise me|strong=\"H5921\"* up|strong=\"H1431\"*," + }, + { + "verseNum": 11, + "text": "By|strong=\"H3068\"* this|strong=\"H3068\"* I|strong=\"H6965\"* know that|strong=\"H3068\"* you|strong=\"H6965\"* delight in|strong=\"H3068\"* me|strong=\"H2603\"*," + }, + { + "verseNum": 12, + "text": "As|strong=\"H3588\"* for|strong=\"H3588\"* me|strong=\"H5921\"*, you|strong=\"H3588\"* uphold me|strong=\"H5921\"* in|strong=\"H5921\"* my|strong=\"H5921\"* integrity," + }, + { + "verseNum": 13, + "text": "Blessed be|strong=\"H5769\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God of|strong=\"H6440\"* Israel," + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 1, + "text": "As|strong=\"H1121\"* the|strong=\"H1121\"* deer pants for|strong=\"H1121\"* the|strong=\"H1121\"* water brooks," + }, + { + "verseNum": 2, + "text": "My|strong=\"H5921\"* soul|strong=\"H5315\"* thirsts for|strong=\"H5921\"* God, for|strong=\"H5921\"* the|strong=\"H5921\"* living|strong=\"H5315\"* God." + }, + { + "verseNum": 3, + "text": "My|strong=\"H7200\"* tears have|strong=\"H7200\"* been my|strong=\"H7200\"* food day and|strong=\"H6440\"* night," + }, + { + "verseNum": 4, + "text": "These|strong=\"H3605\"* things|strong=\"H3605\"* I|strong=\"H3117\"* remember, and|strong=\"H3117\"* pour out|strong=\"H3605\"* my|strong=\"H3605\"* soul within me|strong=\"H1961\"*," + }, + { + "verseNum": 5, + "text": "Why|strong=\"H5921\"* are|strong=\"H1004\"* you|strong=\"H3588\"* in|strong=\"H5921\"* despair, my|strong=\"H5921\"* soul|strong=\"H5315\"*?" + }, + { + "verseNum": 6, + "text": "My|strong=\"H5921\"* God, my|strong=\"H5921\"* soul|strong=\"H5315\"* is|strong=\"H4100\"* in|strong=\"H5921\"* despair|strong=\"H7817\"* within|strong=\"H5921\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 7, + "text": "Deep calls to|strong=\"H5921\"* deep at|strong=\"H5921\"* the|strong=\"H5921\"* noise of|strong=\"H2022\"* your|strong=\"H5921\"* waterfalls." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"*+ 42:8 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* will|strong=\"H6963\"* command|strong=\"H5921\"* his|strong=\"H3605\"* loving kindness in|strong=\"H5921\"* the|strong=\"H3605\"* daytime." + }, + { + "verseNum": 9, + "text": "I|strong=\"H6680\"* will|strong=\"H3068\"* ask God|strong=\"H3068\"*, my|strong=\"H3068\"* rock, “Why have|strong=\"H3068\"* you|strong=\"H6680\"* forgotten me|strong=\"H5973\"*?" + }, + { + "verseNum": 10, + "text": "As with|strong=\"H3212\"* a|strong=\"H3068\"* sword in|strong=\"H3212\"* my|strong=\"H7911\"* bones, my|strong=\"H7911\"* adversaries reproach me|strong=\"H7911\"*," + }, + { + "verseNum": 11, + "text": "Why are|strong=\"H3117\"* you|strong=\"H3605\"* in|strong=\"H3117\"* despair, my|strong=\"H3605\"* soul?" + } + ] + }, + { + "chapterNum": 43, + "verses": [ + { + "verseNum": 1, + "text": "Vindicate|strong=\"H8199\"* me|strong=\"H3808\"*, God|strong=\"H3808\"*, and|strong=\"H1471\"* plead|strong=\"H7378\"* my|strong=\"H7378\"* cause|strong=\"H7379\"* against|strong=\"H7378\"* an ungodly|strong=\"H3808\"* nation|strong=\"H1471\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H4100\"* the|strong=\"H3588\"* God of|strong=\"H4581\"* my|strong=\"H3588\"* strength|strong=\"H4581\"*. Why|strong=\"H4100\"* have|strong=\"H3588\"* you|strong=\"H3588\"* rejected|strong=\"H2186\"* me|strong=\"H3588\"*?" + }, + { + "verseNum": 3, + "text": "Oh, send|strong=\"H7971\"* out|strong=\"H7971\"* your|strong=\"H7971\"* light and|strong=\"H7971\"* your|strong=\"H7971\"* truth." + }, + { + "verseNum": 4, + "text": "Then I will|strong=\"H4196\"* go to|strong=\"H4196\"* the|strong=\"H3034\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* God," + }, + { + "verseNum": 5, + "text": "Why|strong=\"H4100\"* are|strong=\"H4100\"* you|strong=\"H3588\"* in|strong=\"H5921\"* despair|strong=\"H7817\"*, my|strong=\"H5921\"* soul|strong=\"H5315\"*?" + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 1, + "text": "We have|strong=\"H1121\"* heard with|strong=\"H1121\"* our ears, God;" + }, + { + "verseNum": 2, + "text": "You|strong=\"H3117\"* drove out|strong=\"H6466\"* the|strong=\"H8085\"* nations with|strong=\"H3117\"* your|strong=\"H8085\"* hand," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3027\"* they|strong=\"H3027\"* didn’t get|strong=\"H3027\"* the|strong=\"H3423\"* land in|strong=\"H3027\"* possession|strong=\"H3423\"* by|strong=\"H3027\"* their|strong=\"H3423\"* own|strong=\"H3027\"* sword|strong=\"H3027\"*," + }, + { + "verseNum": 4, + "text": "God|strong=\"H3808\"*, you|strong=\"H3588\"* are|strong=\"H6440\"* my|strong=\"H3588\"* King|strong=\"H6440\"*." + }, + { + "verseNum": 5, + "text": "Through you|strong=\"H6680\"*, we|strong=\"H3068\"* will|strong=\"H4428\"* push down|strong=\"H6680\"* our|strong=\"H6680\"* adversaries." + }, + { + "verseNum": 6, + "text": "For|strong=\"H8034\"* I|strong=\"H6862\"* will|strong=\"H8034\"* not|strong=\"H6965\"* trust in|strong=\"H8034\"* my|strong=\"H6965\"* bow," + }, + { + "verseNum": 7, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3808\"* saved|strong=\"H3467\"* us|strong=\"H3588\"* from|strong=\"H2719\"* our|strong=\"H3588\"* adversaries," + }, + { + "verseNum": 8, + "text": "In|strong=\"H3588\"* God we|strong=\"H3068\"* have|strong=\"H6862\"* made our|strong=\"H3588\"* boast all|strong=\"H3467\"* day long." + }, + { + "verseNum": 9, + "text": "But|strong=\"H3605\"* now|strong=\"H3117\"* you|strong=\"H3605\"* rejected us|strong=\"H3117\"*, and|strong=\"H3117\"* brought us|strong=\"H3117\"* to|strong=\"H3117\"* dishonor," + }, + { + "verseNum": 10, + "text": "You|strong=\"H3808\"* make us|strong=\"H2186\"* turn|strong=\"H2186\"* back|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3318\"* adversary." + }, + { + "verseNum": 11, + "text": "You|strong=\"H7725\"* have|strong=\"H6862\"* made|strong=\"H7725\"* us|strong=\"H7725\"* like|strong=\"H7725\"* sheep|strong=\"H4480\"* for|strong=\"H4480\"* food," + }, + { + "verseNum": 12, + "text": "You|strong=\"H5414\"* sell|strong=\"H5414\"* your|strong=\"H5414\"* people|strong=\"H1471\"* for|strong=\"H5414\"* nothing," + }, + { + "verseNum": 13, + "text": "You|strong=\"H3808\"* make|strong=\"H7235\"* us|strong=\"H5971\"* a|strong=\"H3068\"* reproach to|strong=\"H5971\"* our|strong=\"H5971\"* neighbors," + }, + { + "verseNum": 14, + "text": "You|strong=\"H7760\"* make|strong=\"H7760\"* us|strong=\"H5439\"* a|strong=\"H3068\"* byword among|strong=\"H2781\"* the|strong=\"H7760\"* nations," + }, + { + "verseNum": 15, + "text": "All day long my|strong=\"H7760\"* dishonor is|strong=\"H7218\"* before me|strong=\"H7760\"*," + }, + { + "verseNum": 16, + "text": "at|strong=\"H3117\"* the|strong=\"H3605\"* taunt of|strong=\"H3117\"* one|strong=\"H3605\"* who|strong=\"H3605\"* reproaches|strong=\"H3639\"* and|strong=\"H3117\"* verbally abuses," + }, + { + "verseNum": 17, + "text": "All|strong=\"H6440\"* this|strong=\"H6440\"* has come on|strong=\"H6440\"* us|strong=\"H6440\"*," + }, + { + "verseNum": 18, + "text": "Our|strong=\"H3605\"* heart has|strong=\"H3605\"* not|strong=\"H3808\"* turned back," + }, + { + "verseNum": 19, + "text": "though you|strong=\"H3808\"* have|strong=\"H3808\"* crushed us|strong=\"H4480\"* in|strong=\"H3808\"* the|strong=\"H4480\"* haunt of|strong=\"H4480\"* jackals," + }, + { + "verseNum": 20, + "text": "If|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3588\"* forgotten the|strong=\"H5921\"* name of|strong=\"H5921\"* our|strong=\"H5921\"* God," + }, + { + "verseNum": 21, + "text": "won’t God search this out|strong=\"H6566\"*?" + }, + { + "verseNum": 22, + "text": "Yes|strong=\"H3588\"*, for|strong=\"H3588\"* your|strong=\"H3045\"* sake we|strong=\"H3068\"* are|strong=\"H3045\"* killed all|strong=\"H3045\"* day long." + }, + { + "verseNum": 23, + "text": "Wake up|strong=\"H5921\"*!" + }, + { + "verseNum": 24, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H4100\"* hide your|strong=\"H4100\"* face," + }, + { + "verseNum": 25, + "text": "For|strong=\"H6440\"* our|strong=\"H6440\"* soul is|strong=\"H4100\"* bowed down|strong=\"H6440\"* to|strong=\"H6440\"* the|strong=\"H6440\"* dust." + }, + { + "verseNum": 26, + "text": "Rise up to|strong=\"H5315\"* help us|strong=\"H3588\"*." + } + ] + }, + { + "chapterNum": 45, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"H5921\"* heart overflows with|strong=\"H5921\"* a|strong=\"H3068\"* noble theme." + }, + { + "verseNum": 2, + "text": "You|strong=\"H3820\"* are|strong=\"H1697\"* the|strong=\"H1697\"* most|strong=\"H4428\"* excellent of|strong=\"H4428\"* the|strong=\"H1697\"* sons of|strong=\"H4428\"* men|strong=\"H2896\"*." + }, + { + "verseNum": 3, + "text": "Strap your|strong=\"H5921\"* sword on|strong=\"H5921\"* your|strong=\"H5921\"* thigh, O|strong=\"H3068\"* mighty|strong=\"H1121\"* one|strong=\"H1121\"*," + }, + { + "verseNum": 4, + "text": "In|strong=\"H5921\"* your|strong=\"H5921\"* majesty|strong=\"H1926\"* ride on|strong=\"H5921\"* victoriously on|strong=\"H5921\"* behalf|strong=\"H5921\"* of|strong=\"H1368\"* truth, humility, and|strong=\"H2719\"* righteousness." + }, + { + "verseNum": 5, + "text": "Your|strong=\"H5921\"* arrows are|strong=\"H1697\"* sharp." + }, + { + "verseNum": 6, + "text": "Your|strong=\"H5307\"* throne, God, is|strong=\"H3820\"* forever and|strong=\"H4428\"* ever." + }, + { + "verseNum": 7, + "text": "You|strong=\"H5703\"* have loved righteousness, and|strong=\"H5769\"* hated wickedness." + }, + { + "verseNum": 8, + "text": "All|strong=\"H5921\"* your|strong=\"H5921\"* garments smell like|strong=\"H3651\"* myrrh, aloes, and|strong=\"H8081\"* cassia." + }, + { + "verseNum": 9, + "text": "Kings’ daughters are|strong=\"H8127\"* among|strong=\"H4480\"* your|strong=\"H3605\"* honorable women." + }, + { + "verseNum": 10, + "text": "Listen, daughter|strong=\"H1323\"*, consider, and|strong=\"H4428\"* turn your|strong=\"H4428\"* ear." + }, + { + "verseNum": 11, + "text": "So|strong=\"H7200\"* the|strong=\"H8085\"* king will|strong=\"H5971\"* desire your|strong=\"H5186\"* beauty," + }, + { + "verseNum": 12, + "text": "The|strong=\"H3588\"* daughter of|strong=\"H4428\"* Tyre comes with|strong=\"H4428\"* a|strong=\"H3068\"* gift." + }, + { + "verseNum": 13, + "text": "The|strong=\"H6440\"* princess inside|strong=\"H6440\"* is|strong=\"H6440\"* all|strong=\"H6440\"* glorious." + }, + { + "verseNum": 14, + "text": "She shall|strong=\"H4428\"* be|strong=\"H4428\"* led to|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* in|strong=\"H4428\"* embroidered work." + }, + { + "verseNum": 15, + "text": "With|strong=\"H4428\"* gladness and|strong=\"H4428\"* rejoicing they|strong=\"H4428\"* shall|strong=\"H4428\"* be|strong=\"H4428\"* led|strong=\"H2986\"*." + }, + { + "verseNum": 16, + "text": "Your|strong=\"H4428\"* sons will|strong=\"H4428\"* take the|strong=\"H4428\"* place of|strong=\"H4428\"* your|strong=\"H4428\"* fathers." + }, + { + "verseNum": 17, + "text": "I|strong=\"H1121\"* will|strong=\"H1961\"* make|strong=\"H7896\"* your|strong=\"H3605\"* name to|strong=\"H1961\"* be|strong=\"H1961\"* remembered in|strong=\"H1121\"* all|strong=\"H3605\"* generations." + } + ] + }, + { + "chapterNum": 46, + "verses": [ + { + "verseNum": 1, + "text": "God is|strong=\"H1121\"* our|strong=\"H5921\"* refuge and|strong=\"H1121\"* strength," + }, + { + "verseNum": 2, + "text": "Therefore we|strong=\"H3068\"* won’t be afraid, though the|strong=\"H4672\"* earth changes," + }, + { + "verseNum": 3, + "text": "though its|strong=\"H5921\"* waters roar and|strong=\"H2022\"* are|strong=\"H2022\"* troubled," + }, + { + "verseNum": 4, + "text": "There|strong=\"H2022\"* is|strong=\"H4325\"* a|strong=\"H3068\"* river, the|strong=\"H7493\"* streams of|strong=\"H2022\"* which|strong=\"H4325\"* make|strong=\"H1993\"* the|strong=\"H7493\"* city of|strong=\"H2022\"* God glad," + }, + { + "verseNum": 5, + "text": "God is|strong=\"H5892\"* within her. She|strong=\"H5892\"* shall|strong=\"H5892\"* not|strong=\"H5892\"* be|strong=\"H5892\"* moved." + }, + { + "verseNum": 6, + "text": "The|strong=\"H7130\"* nations raged. The|strong=\"H7130\"* kingdoms were|strong=\"H1077\"* moved|strong=\"H4131\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H6963\"* Armies is|strong=\"H6963\"* with|strong=\"H6963\"* us|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "Come|strong=\"H6635\"*, see Yahweh|strong=\"H3068\"*’s works," + }, + { + "verseNum": 9, + "text": "He|strong=\"H3068\"* makes|strong=\"H7760\"* wars cease to|strong=\"H3068\"* the|strong=\"H3068\"* end of|strong=\"H3068\"* the|strong=\"H3068\"* earth." + }, + { + "verseNum": 10, + "text": "“Be|strong=\"H7665\"* still|strong=\"H7673\"*, and|strong=\"H7198\"* know that|strong=\"H4421\"* I|strong=\"H5704\"* am God." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3045\"* Armies is|strong=\"H3588\"* with|strong=\"H3045\"* us|strong=\"H3045\"*." + } + ] + }, + { + "chapterNum": 47, + "verses": [ + { + "verseNum": 1, + "text": "Oh clap your|strong=\"H1121\"* hands, all you nations." + }, + { + "verseNum": 2, + "text": "For|strong=\"H3605\"* Yahweh|strong=\"H3068\"* Most High is|strong=\"H3605\"* awesome." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3588\"* subdues nations under|strong=\"H5921\"* us|strong=\"H5921\"*," + }, + { + "verseNum": 4, + "text": "He|strong=\"H7272\"* chooses our|strong=\"H5971\"* inheritance for|strong=\"H8478\"* us|strong=\"H3816\"*," + }, + { + "verseNum": 5, + "text": "God has|strong=\"H5159\"* gone up with|strong=\"H5159\"* a|strong=\"H3068\"* shout," + }, + { + "verseNum": 6, + "text": "Sing praises|strong=\"H3068\"* to|strong=\"H3068\"* God|strong=\"H3068\"*! Sing praises|strong=\"H3068\"*!" + }, + { + "verseNum": 7, + "text": "For|strong=\"H4428\"* God is|strong=\"H4428\"* the|strong=\"H2167\"* King|strong=\"H4428\"* of|strong=\"H4428\"* all the|strong=\"H2167\"* earth." + }, + { + "verseNum": 8, + "text": "God reigns over|strong=\"H4428\"* the|strong=\"H3605\"* nations." + }, + { + "verseNum": 9, + "text": "The|strong=\"H5921\"* princes of|strong=\"H3427\"* the|strong=\"H5921\"* peoples are|strong=\"H1471\"* gathered|strong=\"H1471\"* together|strong=\"H5921\"*," + } + ] + }, + { + "chapterNum": 48, + "verses": [ + { + "verseNum": 1, + "text": "Great is|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* greatly to|strong=\"H1121\"* be|strong=\"H1121\"* praised," + }, + { + "verseNum": 2, + "text": "Beautiful in|strong=\"H3068\"* elevation, the|strong=\"H3068\"* joy of|strong=\"H3068\"* the|strong=\"H3068\"* whole earth," + }, + { + "verseNum": 3, + "text": "God has|strong=\"H4428\"* shown himself in|strong=\"H4428\"* her|strong=\"H3605\"* citadels as|strong=\"H3303\"* a|strong=\"H3068\"* refuge." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3045\"*, behold, the|strong=\"H3045\"* kings assembled themselves|strong=\"H3045\"*," + }, + { + "verseNum": 5, + "text": "They|strong=\"H3588\"* saw|strong=\"H2009\"* it|strong=\"H3588\"*, then|strong=\"H2009\"* they|strong=\"H3588\"* were|strong=\"H4428\"* amazed." + }, + { + "verseNum": 6, + "text": "Trembling took hold of|strong=\"H7200\"* them|strong=\"H1992\"* there|strong=\"H1992\"*," + }, + { + "verseNum": 7, + "text": "With|strong=\"H8033\"* the|strong=\"H3205\"* east wind, you|strong=\"H3205\"* break the|strong=\"H3205\"* ships of|strong=\"H3205\"* Tarshish." + }, + { + "verseNum": 8, + "text": "As we|strong=\"H3068\"* have heard, so|strong=\"H7307\"* we|strong=\"H3068\"* have seen," + }, + { + "verseNum": 9, + "text": "We|strong=\"H5704\"* have|strong=\"H3068\"* thought about|strong=\"H8085\"* your|strong=\"H3068\"* loving kindness, God|strong=\"H3068\"*," + }, + { + "verseNum": 10, + "text": "As|strong=\"H2617\"* is|strong=\"H2617\"* your|strong=\"H7130\"* name, God," + }, + { + "verseNum": 11, + "text": "Let|strong=\"H3651\"* Mount|strong=\"H4390\"* Zion be|strong=\"H8034\"* glad!" + }, + { + "verseNum": 12, + "text": "Walk about|strong=\"H2022\"* Zion|strong=\"H6726\"*, and|strong=\"H3063\"* go around her|strong=\"H1323\"*." + }, + { + "verseNum": 13, + "text": "Notice her|strong=\"H5608\"* bulwarks." + }, + { + "verseNum": 14, + "text": "For|strong=\"H4616\"* this|strong=\"H4616\"* God is|strong=\"H3820\"* our|strong=\"H7896\"* God forever|strong=\"H1755\"* and|strong=\"H3820\"* ever." + } + ] + }, + { + "chapterNum": 49, + "verses": [ + { + "verseNum": 1, + "text": "Hear this|strong=\"H1121\"*, all you peoples." + }, + { + "verseNum": 2, + "text": "both|strong=\"H3605\"* low and|strong=\"H5971\"* high," + }, + { + "verseNum": 3, + "text": "My|strong=\"H1571\"* mouth will|strong=\"H1571\"* speak words of|strong=\"H1121\"* wisdom." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3820\"* will|strong=\"H3820\"* incline my|strong=\"H1696\"* ear to|strong=\"H1696\"* a|strong=\"H3068\"* proverb." + }, + { + "verseNum": 5, + "text": "Why should I fear in|strong=\"H4912\"* the|strong=\"H5186\"* days of|strong=\"H4912\"* evil," + }, + { + "verseNum": 6, + "text": "Those|strong=\"H5437\"* who|strong=\"H4100\"* trust in|strong=\"H3117\"* their|strong=\"H3117\"* wealth," + }, + { + "verseNum": 7, + "text": "none of|strong=\"H7230\"* them|strong=\"H5921\"* can by|strong=\"H5921\"* any means redeem his|strong=\"H5921\"* brother," + }, + { + "verseNum": 8, + "text": "For|strong=\"H5414\"* the|strong=\"H5414\"* redemption|strong=\"H6299\"* of|strong=\"H3808\"* their|strong=\"H5414\"* life is|strong=\"H3808\"* costly," + }, + { + "verseNum": 9, + "text": "that|strong=\"H5315\"* he|strong=\"H5315\"* should live on forever|strong=\"H5769\"*," + }, + { + "verseNum": 10, + "text": "For|strong=\"H2421\"* he|strong=\"H3808\"* sees|strong=\"H7200\"* that|strong=\"H7200\"* wise men die;" + }, + { + "verseNum": 11, + "text": "Their|strong=\"H7200\"* inward thought is|strong=\"H3684\"* that|strong=\"H3588\"* their|strong=\"H7200\"* houses will|strong=\"H2450\"* endure forever," + }, + { + "verseNum": 12, + "text": "But|strong=\"H5921\"* man, despite|strong=\"H5921\"* his|strong=\"H7121\"* riches, doesn’t endure|strong=\"H5769\"*." + }, + { + "verseNum": 13, + "text": "This|strong=\"H3885\"* is the|strong=\"H3885\"* destiny of those who are|strong=\"H1077\"* foolish," + }, + { + "verseNum": 14, + "text": "They|strong=\"H6310\"* are|strong=\"H1870\"* appointed as|strong=\"H6310\"* a|strong=\"H3068\"* flock for|strong=\"H2088\"* Sheol.+ 49:14 Sheol is the place of the dead.*" + }, + { + "verseNum": 15, + "text": "But God will|strong=\"H3477\"* redeem my|strong=\"H7462\"* soul from|strong=\"H3477\"* the|strong=\"H7462\"* power of|strong=\"H4194\"* Sheol|strong=\"H7585\"*,+ 49:15 Sheol is the place of the dead.*" + }, + { + "verseNum": 16, + "text": "Don’t be|strong=\"H3027\"* afraid when|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H5315\"* is|strong=\"H5315\"* made|strong=\"H3947\"* rich," + }, + { + "verseNum": 17, + "text": "for|strong=\"H3588\"* when|strong=\"H3588\"* he|strong=\"H3588\"* dies he|strong=\"H3588\"* will|strong=\"H1004\"* carry nothing away." + }, + { + "verseNum": 18, + "text": "Though|strong=\"H3588\"* while|strong=\"H3588\"* he|strong=\"H3588\"* lived he|strong=\"H3588\"* blessed his|strong=\"H3605\"* soul|strong=\"H3519\"*—" + }, + { + "verseNum": 19, + "text": "he|strong=\"H3588\"* shall|strong=\"H5315\"* go|strong=\"H3190\"* to|strong=\"H5315\"* the|strong=\"H3588\"* generation of|strong=\"H5315\"* his|strong=\"H1288\"* fathers." + }, + { + "verseNum": 20, + "text": "A|strong=\"H3068\"* man|strong=\"H7200\"* who|strong=\"H3808\"* has|strong=\"H5331\"* riches without|strong=\"H3808\"* understanding," + } + ] + }, + { + "chapterNum": 50, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* Mighty One|strong=\"H3068\"*, God|strong=\"H3068\"*, Yahweh|strong=\"H3068\"*, speaks|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "Out of|strong=\"H4359\"* Zion|strong=\"H6726\"*, the|strong=\"H6726\"* perfection|strong=\"H4359\"* of|strong=\"H4359\"* beauty|strong=\"H3308\"*," + }, + { + "verseNum": 3, + "text": "Our|strong=\"H6440\"* God comes|strong=\"H6440\"*, and|strong=\"H6440\"* does|strong=\"H6440\"* not|strong=\"H6440\"* keep|strong=\"H2790\"* silent|strong=\"H2790\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H7121\"* calls|strong=\"H7121\"* to|strong=\"H7121\"* the|strong=\"H7121\"* heavens|strong=\"H8064\"* above|strong=\"H5920\"*," + }, + { + "verseNum": 5, + "text": "“Gather my|strong=\"H5921\"* saints|strong=\"H2623\"* together|strong=\"H5921\"* to|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 6, + "text": "The|strong=\"H3588\"* heavens|strong=\"H8064\"* shall|strong=\"H8064\"* declare|strong=\"H5046\"* his|strong=\"H5046\"* righteousness|strong=\"H6664\"*," + }, + { + "verseNum": 7, + "text": "“Hear|strong=\"H8085\"*, my|strong=\"H8085\"* people|strong=\"H5971\"*, and|strong=\"H3478\"* I|strong=\"H8085\"* will|strong=\"H5971\"* speak|strong=\"H1696\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5921\"* don’t rebuke|strong=\"H3198\"* you|strong=\"H5921\"* for|strong=\"H5921\"* your|strong=\"H5921\"* sacrifices|strong=\"H2077\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H3808\"* have|strong=\"H6499\"* no|strong=\"H3808\"* need for|strong=\"H1004\"* a|strong=\"H3068\"* bull|strong=\"H6499\"* from|strong=\"H3947\"* your|strong=\"H3947\"* stall," + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* every|strong=\"H3605\"* animal|strong=\"H2416\"* of|strong=\"H3605\"* the|strong=\"H3605\"* forest|strong=\"H3293\"* is|strong=\"H3605\"* mine," + }, + { + "verseNum": 11, + "text": "I|strong=\"H3045\"* know|strong=\"H3045\"* all|strong=\"H3605\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H2022\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*." + }, + { + "verseNum": 12, + "text": "If|strong=\"H3588\"* I|strong=\"H3588\"* were|strong=\"H8398\"* hungry|strong=\"H7456\"*, I|strong=\"H3588\"* would not|strong=\"H3808\"* tell you|strong=\"H3588\"*," + }, + { + "verseNum": 13, + "text": "Will|strong=\"H1320\"* I|strong=\"H1320\"* eat the|strong=\"H8354\"* meat|strong=\"H1320\"* of|strong=\"H1818\"* bulls," + }, + { + "verseNum": 14, + "text": "Offer|strong=\"H2076\"* to|strong=\"H2076\"* God|strong=\"H7999\"* the|strong=\"H2076\"* sacrifice|strong=\"H2076\"* of|strong=\"H8426\"* thanksgiving|strong=\"H8426\"*." + }, + { + "verseNum": 15, + "text": "Call|strong=\"H7121\"* on|strong=\"H3117\"* me|strong=\"H7121\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* trouble|strong=\"H6869\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"H7563\"* to|strong=\"H5921\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* God says|strong=\"H6310\"*," + }, + { + "verseNum": 17, + "text": "since you|strong=\"H8130\"* hate|strong=\"H8130\"* instruction|strong=\"H4148\"*," + }, + { + "verseNum": 18, + "text": "When|strong=\"H7200\"* you|strong=\"H5973\"* saw|strong=\"H7200\"* a|strong=\"H3068\"* thief|strong=\"H1590\"*, you|strong=\"H5973\"* consented with|strong=\"H5973\"* him|strong=\"H7200\"*," + }, + { + "verseNum": 19, + "text": "“You|strong=\"H7971\"* give your|strong=\"H7971\"* mouth|strong=\"H6310\"* to|strong=\"H7971\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H5414\"* sit|strong=\"H3427\"* and|strong=\"H1121\"* speak|strong=\"H1696\"* against|strong=\"H1696\"* your|strong=\"H5414\"* brother." + }, + { + "verseNum": 21, + "text": "You|strong=\"H6213\"* have|strong=\"H1961\"* done|strong=\"H6213\"* these|strong=\"H6213\"* things|strong=\"H1961\"*, and|strong=\"H5869\"* I|strong=\"H3644\"* kept|strong=\"H6213\"* silent|strong=\"H2790\"*." + }, + { + "verseNum": 22, + "text": "“Now|strong=\"H4994\"* consider this|strong=\"H2063\"*, you|strong=\"H6435\"* who|strong=\"H7911\"* forget|strong=\"H7911\"* God," + }, + { + "verseNum": 23, + "text": "Whoever offers|strong=\"H2076\"* the|strong=\"H7200\"* sacrifice|strong=\"H2076\"* of|strong=\"H1870\"* thanksgiving|strong=\"H8426\"* glorifies me|strong=\"H7200\"*," + } + ] + }, + { + "chapterNum": 51, + "verses": [ + { + "verseNum": 1, + "text": "Have|strong=\"H1732\"* mercy on|strong=\"H5329\"* me, God, according to|strong=\"H1732\"* your|strong=\"H1732\"* loving kindness." + }, + { + "verseNum": 2, + "text": "Wash me thoroughly from|strong=\"H5030\"* my iniquity." + }, + { + "verseNum": 3, + "text": "For|strong=\"H2617\"* I|strong=\"H6588\"* know my|strong=\"H4229\"* transgressions|strong=\"H6588\"*." + }, + { + "verseNum": 4, + "text": "Against you|strong=\"H7235\"*, and|strong=\"H2403\"* you|strong=\"H7235\"* only|strong=\"H7235\"*, I|strong=\"H5771\"* have|strong=\"H5771\"* sinned|strong=\"H2403\"*," + }, + { + "verseNum": 5, + "text": "Behold, I|strong=\"H3588\"* was born in|strong=\"H3045\"* iniquity." + }, + { + "verseNum": 6, + "text": "Behold, you|strong=\"H6213\"* desire truth in|strong=\"H6213\"* the|strong=\"H6213\"* inward parts." + }, + { + "verseNum": 7, + "text": "Purify me with|strong=\"H5771\"* hyssop, and|strong=\"H5771\"* I|strong=\"H2005\"* will|strong=\"H5771\"* be|strong=\"H5771\"* clean." + }, + { + "verseNum": 8, + "text": "Let me|strong=\"H3045\"* hear joy and|strong=\"H2451\"* gladness," + }, + { + "verseNum": 9, + "text": "Hide your|strong=\"H3526\"* face from|strong=\"H2891\"* my sins|strong=\"H2398\"*," + }, + { + "verseNum": 10, + "text": "Create in|strong=\"H8085\"* me|strong=\"H8085\"* a|strong=\"H3068\"* clean heart|strong=\"H8085\"*, O|strong=\"H3068\"* God." + }, + { + "verseNum": 11, + "text": "Don’t throw me|strong=\"H6440\"* from|strong=\"H6440\"* your|strong=\"H3605\"* presence|strong=\"H6440\"*," + }, + { + "verseNum": 12, + "text": "Restore|strong=\"H2318\"* to|strong=\"H3820\"* me|strong=\"H3559\"* the|strong=\"H3559\"* joy of|strong=\"H7307\"* your|strong=\"H3559\"* salvation." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H3947\"* I|strong=\"H6440\"* will|strong=\"H7307\"* teach transgressors your|strong=\"H3947\"* ways." + }, + { + "verseNum": 14, + "text": "Deliver|strong=\"H7725\"* me|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H7725\"* guilt of|strong=\"H7307\"* bloodshed, O|strong=\"H3068\"* God, the|strong=\"H7725\"* God of|strong=\"H7307\"* my|strong=\"H7725\"* salvation|strong=\"H3468\"*." + }, + { + "verseNum": 15, + "text": "Lord, open my|strong=\"H7725\"* lips." + }, + { + "verseNum": 16, + "text": "For|strong=\"H7442\"* you|strong=\"H5337\"* don’t delight in|strong=\"H8668\"* sacrifice, or|strong=\"H1818\"* else I|strong=\"H6666\"* would give it|strong=\"H6666\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H5046\"* sacrifices of|strong=\"H6310\"* God are|strong=\"H8193\"* a|strong=\"H3068\"* broken spirit." + }, + { + "verseNum": 18, + "text": "Do well in|strong=\"H2654\"* your|strong=\"H5414\"* good pleasure|strong=\"H7521\"* to|strong=\"H5414\"* Zion." + }, + { + "verseNum": 19, + "text": "Then|strong=\"H3808\"* you|strong=\"H3808\"* will|strong=\"H3820\"* delight in|strong=\"H7665\"* the|strong=\"H7665\"* sacrifices|strong=\"H2077\"* of|strong=\"H7307\"* righteousness," + } + ] + }, + { + "chapterNum": 52, + "verses": [ + { + "verseNum": 1, + "text": "Why do you boast of|strong=\"H4905\"* mischief, mighty man?" + }, + { + "verseNum": 2, + "text": "Your|strong=\"H5046\"* tongue plots destruction," + }, + { + "verseNum": 3, + "text": "You|strong=\"H3605\"* love|strong=\"H2617\"* evil|strong=\"H7451\"* more than|strong=\"H3605\"* good|strong=\"H2617\"*," + }, + { + "verseNum": 4, + "text": "You|strong=\"H6213\"* love all|strong=\"H6213\"* devouring words," + }, + { + "verseNum": 5, + "text": "God will|strong=\"H6664\"* likewise destroy you|strong=\"H1696\"* forever." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3605\"* righteous also will|strong=\"H1697\"* see it|strong=\"H3605\"*, and|strong=\"H1697\"* fear," + }, + { + "verseNum": 7, + "text": "“Behold, this|strong=\"H1571\"* is|strong=\"H1571\"* the|strong=\"H1571\"* man|strong=\"H2416\"* who|strong=\"H2416\"* didn’t make God his|strong=\"H5422\"* strength|strong=\"H5331\"*," + }, + { + "verseNum": 8, + "text": "But|strong=\"H7200\"* as|strong=\"H6662\"* for|strong=\"H5921\"* me|strong=\"H7200\"*, I|strong=\"H5921\"* am like|strong=\"H5921\"* a|strong=\"H3068\"* green olive tree in|strong=\"H5921\"* God’s house." + }, + { + "verseNum": 9, + "text": "I|strong=\"H2009\"* will|strong=\"H3808\"* give|strong=\"H7760\"* you|strong=\"H7760\"* thanks forever, because|strong=\"H7230\"* you|strong=\"H7760\"* have|strong=\"H3808\"* done|strong=\"H7760\"* it|strong=\"H7760\"*." + } + ] + }, + { + "chapterNum": 53, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5921\"* fool has|strong=\"H1732\"* said in|strong=\"H5921\"* his|strong=\"H1732\"* heart, “There is|strong=\"H1732\"* no God.”" + }, + { + "verseNum": 2, + "text": "God looks down|strong=\"H7843\"* from|strong=\"H3820\"* heaven on|strong=\"H6213\"* the|strong=\"H6213\"* children of|strong=\"H3820\"* men|strong=\"H6213\"*," + }, + { + "verseNum": 3, + "text": "Every|strong=\"H7200\"* one|strong=\"H1121\"* of|strong=\"H1121\"* them|strong=\"H5921\"* has|strong=\"H3426\"* gone back." + }, + { + "verseNum": 4, + "text": "Have|strong=\"H1571\"* the|strong=\"H3605\"* workers|strong=\"H6213\"* of|strong=\"H3605\"* iniquity no|strong=\"H6213\"* knowledge," + }, + { + "verseNum": 5, + "text": "There|strong=\"H3045\"* they|strong=\"H3808\"* were|strong=\"H5971\"* in|strong=\"H3899\"* great fear, where|strong=\"H3808\"* no|strong=\"H3808\"* fear was|strong=\"H3808\"*," + }, + { + "verseNum": 6, + "text": "Oh that|strong=\"H3588\"* the|strong=\"H3588\"* salvation of|strong=\"H6106\"* Israel would come|strong=\"H1961\"* out|strong=\"H8033\"* of|strong=\"H6106\"* Zion!" + } + ] + }, + { + "chapterNum": 54, + "verses": [ + { + "verseNum": 1, + "text": "Save me, God, by|strong=\"H1732\"* your|strong=\"H1732\"* name." + }, + { + "verseNum": 2, + "text": "Hear my|strong=\"H1732\"* prayer, God|strong=\"H3808\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H8034\"* strangers have|strong=\"H8034\"* risen up against me|strong=\"H3467\"*." + }, + { + "verseNum": 4, + "text": "Behold, God is|strong=\"H6310\"* my|strong=\"H8085\"* helper." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3588\"* will|strong=\"H5315\"* repay the|strong=\"H5921\"* evil to|strong=\"H5921\"* my|strong=\"H7760\"* enemies|strong=\"H6965\"*." + }, + { + "verseNum": 6, + "text": "With|strong=\"H5315\"* a|strong=\"H3068\"* free will|strong=\"H5315\"* offering, I|strong=\"H2009\"* will|strong=\"H5315\"* sacrifice to|strong=\"H5315\"* you|strong=\"H5315\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H7451\"* he|strong=\"H7725\"* has|strong=\"H7451\"* delivered me|strong=\"H7725\"* out|strong=\"H7725\"* of|strong=\"H7451\"* all|strong=\"H7725\"* trouble|strong=\"H7451\"*." + } + ] + }, + { + "chapterNum": 55, + "verses": [ + { + "verseNum": 1, + "text": "Listen to|strong=\"H1732\"* my|strong=\"H1732\"* prayer, God." + }, + { + "verseNum": 2, + "text": "Attend to|strong=\"H8605\"* me, and|strong=\"H8605\"* answer me." + }, + { + "verseNum": 3, + "text": "because of|strong=\"H6030\"* the|strong=\"H6030\"* voice of|strong=\"H6030\"* the|strong=\"H6030\"* enemy," + }, + { + "verseNum": 4, + "text": "My|strong=\"H5921\"* heart is|strong=\"H7563\"* severely pained within|strong=\"H5921\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 5, + "text": "Fearfulness and|strong=\"H3820\"* trembling have|strong=\"H5307\"* come|strong=\"H5307\"* on|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "I said, “Oh that I had wings like a|strong=\"H3068\"* dove!" + }, + { + "verseNum": 7, + "text": "Behold, then|strong=\"H5414\"* I|strong=\"H5414\"* would|strong=\"H4310\"* wander far off|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "“I|strong=\"H2009\"* would hurry to|strong=\"H4057\"* a|strong=\"H3068\"* shelter from|strong=\"H7368\"* the|strong=\"H3885\"* stormy wind and|strong=\"H4057\"* storm.”" + }, + { + "verseNum": 9, + "text": "Confuse them|strong=\"H7307\"*, Lord, and|strong=\"H7307\"* confound their language," + }, + { + "verseNum": 10, + "text": "Day and|strong=\"H5892\"* night they|strong=\"H3588\"* prowl around on|strong=\"H7200\"* its|strong=\"H3588\"* walls." + }, + { + "verseNum": 11, + "text": "Destructive forces are|strong=\"H3915\"* within|strong=\"H7130\"* her|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3808\"* it|strong=\"H3808\"* was|strong=\"H3808\"* not|strong=\"H3808\"* an enemy who|strong=\"H3808\"* insulted me|strong=\"H3808\"*," + }, + { + "verseNum": 13, + "text": "But|strong=\"H3588\"* it|strong=\"H5921\"* was|strong=\"H3808\"* you|strong=\"H3588\"*, a|strong=\"H3068\"* man|strong=\"H5375\"* like|strong=\"H3808\"* me|strong=\"H8130\"*," + }, + { + "verseNum": 14, + "text": "We took|strong=\"H3045\"* sweet fellowship together." + }, + { + "verseNum": 15, + "text": "Let|strong=\"H1980\"* death come|strong=\"H1980\"* suddenly on|strong=\"H1980\"* them|strong=\"H3162\"*." + }, + { + "verseNum": 16, + "text": "As|strong=\"H3588\"* for|strong=\"H3588\"* me|strong=\"H5921\"*, I|strong=\"H3588\"* will|strong=\"H7451\"* call on|strong=\"H5921\"* God." + }, + { + "verseNum": 17, + "text": "Evening, morning, and|strong=\"H3068\"* at|strong=\"H3068\"* noon, I|strong=\"H3068\"* will|strong=\"H3068\"* cry|strong=\"H7121\"* out in|strong=\"H3068\"* distress." + }, + { + "verseNum": 18, + "text": "He|strong=\"H1242\"* has redeemed my|strong=\"H8085\"* soul in|strong=\"H8085\"* peace|strong=\"H6963\"* from|strong=\"H8085\"* the|strong=\"H8085\"* battle that|strong=\"H8085\"* was|strong=\"H6963\"* against|strong=\"H8085\"* me|strong=\"H6963\"*," + }, + { + "verseNum": 19, + "text": "God, who|strong=\"H5315\"* is|strong=\"H5315\"* enthroned forever," + }, + { + "verseNum": 20, + "text": "He|strong=\"H3808\"* raises his|strong=\"H8085\"* hands against|strong=\"H8085\"* his|strong=\"H8085\"* friends." + }, + { + "verseNum": 21, + "text": "His|strong=\"H7971\"* mouth was|strong=\"H3027\"* smooth as|strong=\"H3027\"* butter," + }, + { + "verseNum": 22, + "text": "Cast your|strong=\"H1697\"* burden on|strong=\"H1697\"* Yahweh|strong=\"H3068\"* and|strong=\"H8081\"* he|strong=\"H1697\"* will|strong=\"H3820\"* sustain you|strong=\"H6310\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"H3808\"* you|strong=\"H5414\"*, God|strong=\"H3068\"*, will|strong=\"H3068\"* bring|strong=\"H5414\"* them|strong=\"H5414\"* down|strong=\"H7993\"* into|strong=\"H5921\"* the|strong=\"H5921\"* pit of|strong=\"H3068\"* destruction." + } + ] + }, + { + "chapterNum": 56, + "verses": [ + { + "verseNum": 1, + "text": "Be|strong=\"H1732\"* merciful to|strong=\"H5921\"* me|strong=\"H5921\"*, God, for|strong=\"H5921\"* man wants to|strong=\"H5921\"* swallow me|strong=\"H5921\"* up|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "My|strong=\"H3605\"* enemies want to|strong=\"H3117\"* swallow|strong=\"H7602\"* me|strong=\"H2603\"* up|strong=\"H7602\"* all|strong=\"H3605\"* day|strong=\"H3117\"* long|strong=\"H3117\"*," + }, + { + "verseNum": 3, + "text": "When|strong=\"H3588\"* I|strong=\"H3588\"* am afraid," + }, + { + "verseNum": 4, + "text": "In|strong=\"H3117\"* God, I|strong=\"H3117\"* praise his|strong=\"H3117\"* word." + }, + { + "verseNum": 5, + "text": "All|strong=\"H6213\"* day long|strong=\"H4100\"* they|strong=\"H3808\"* twist my|strong=\"H6213\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H3117\"* conspire and|strong=\"H3117\"* lurk," + }, + { + "verseNum": 7, + "text": "Shall|strong=\"H5315\"* they|strong=\"H1992\"* escape by|strong=\"H8104\"* iniquity?" + }, + { + "verseNum": 8, + "text": "You|strong=\"H5921\"* count my|strong=\"H5921\"* wanderings." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H7760\"* my|strong=\"H7760\"* enemies shall|strong=\"H3808\"* turn|strong=\"H7760\"* back in|strong=\"H3808\"* the|strong=\"H7760\"* day that|strong=\"H3808\"* I|strong=\"H7760\"* call." + }, + { + "verseNum": 10, + "text": "In|strong=\"H3117\"* God, I|strong=\"H3588\"* will|strong=\"H3117\"* praise|strong=\"H3588\"* his|strong=\"H7121\"* word." + }, + { + "verseNum": 11, + "text": "I|strong=\"H1697\"* have|strong=\"H3068\"* put|strong=\"H3068\"* my|strong=\"H3068\"* trust in|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "Your|strong=\"H6213\"* vows are|strong=\"H4100\"* on|strong=\"H6213\"* me|strong=\"H6213\"*, God|strong=\"H3808\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H5921\"* you|strong=\"H5921\"* have|strong=\"H5921\"* delivered my|strong=\"H5921\"* soul from|strong=\"H5921\"* death," + } + ] + }, + { + "chapterNum": 57, + "verses": [ + { + "verseNum": 1, + "text": "Be|strong=\"H6440\"* merciful to|strong=\"H6440\"* me|strong=\"H6440\"*, God, be|strong=\"H6440\"* merciful to|strong=\"H6440\"* me|strong=\"H6440\"*," + }, + { + "verseNum": 2, + "text": "I|strong=\"H3588\"* cry out|strong=\"H5674\"* to|strong=\"H5704\"* God Most High," + }, + { + "verseNum": 3, + "text": "He|strong=\"H5921\"* will|strong=\"H7121\"* send from|strong=\"H5921\"* heaven, and|strong=\"H7121\"* save me|strong=\"H5921\"*," + }, + { + "verseNum": 4, + "text": "My|strong=\"H7971\"* soul is|strong=\"H2617\"* among lions." + }, + { + "verseNum": 5, + "text": "Be|strong=\"H1121\"* exalted, God, above the|strong=\"H8432\"* heavens!" + }, + { + "verseNum": 6, + "text": "They|strong=\"H5921\"* have|strong=\"H3605\"* prepared a|strong=\"H3068\"* net for|strong=\"H5921\"* my|strong=\"H3605\"* steps." + }, + { + "verseNum": 7, + "text": "My|strong=\"H8432\"* heart|strong=\"H5315\"* is|strong=\"H5315\"* steadfast|strong=\"H3559\"*, God." + }, + { + "verseNum": 8, + "text": "Wake up, my|strong=\"H3559\"* glory! Wake up, lute and|strong=\"H3820\"* harp!" + }, + { + "verseNum": 9, + "text": "I|strong=\"H5782\"* will|strong=\"H3519\"* give thanks to|strong=\"H3519\"* you, Lord, among the|strong=\"H5782\"* peoples." + }, + { + "verseNum": 10, + "text": "For|strong=\"H5971\"* your|strong=\"H3034\"* great loving kindness reaches to|strong=\"H5971\"* the|strong=\"H3034\"* heavens," + }, + { + "verseNum": 11, + "text": "Be|strong=\"H8064\"* exalted, God|strong=\"H8064\"*, above the|strong=\"H3588\"* heavens|strong=\"H8064\"*." + } + ] + }, + { + "chapterNum": 58, + "verses": [ + { + "verseNum": 1, + "text": "Do you indeed speak righteousness, silent ones?" + }, + { + "verseNum": 2, + "text": "No|strong=\"H1696\"*, in|strong=\"H1696\"* your|strong=\"H8199\"* heart you|strong=\"H1696\"* plot injustice." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3027\"* wicked|strong=\"H5766\"* go astray from|strong=\"H3027\"* the|strong=\"H3027\"* womb." + }, + { + "verseNum": 4, + "text": "Their|strong=\"H7563\"* poison is|strong=\"H7563\"* like|strong=\"H8582\"* the|strong=\"H1696\"* poison of|strong=\"H1696\"* a|strong=\"H3068\"* snake," + }, + { + "verseNum": 5, + "text": "which|strong=\"H1823\"* doesn’t listen to|strong=\"H2534\"* the|strong=\"H3644\"* voice of|strong=\"H2534\"* charmers," + }, + { + "verseNum": 6, + "text": "Break their|strong=\"H8085\"* teeth, God|strong=\"H3808\"*, in|strong=\"H8085\"* their|strong=\"H8085\"* mouth." + }, + { + "verseNum": 7, + "text": "Let them|strong=\"H3068\"* vanish like|strong=\"H3068\"* water that|strong=\"H3068\"* flows away." + }, + { + "verseNum": 8, + "text": "Let|strong=\"H3988\"* them|strong=\"H4135\"* be|strong=\"H4135\"* like|strong=\"H3644\"* a|strong=\"H3068\"* snail which|strong=\"H4325\"* melts and|strong=\"H1980\"* passes|strong=\"H1980\"* away|strong=\"H1980\"*," + }, + { + "verseNum": 9, + "text": "Before|strong=\"H1980\"* your|strong=\"H2372\"* pots can|strong=\"H1980\"* feel the|strong=\"H1980\"* heat of|strong=\"H8121\"* the|strong=\"H1980\"* thorns," + }, + { + "verseNum": 10, + "text": "The|strong=\"H2962\"* righteous shall|strong=\"H2416\"* rejoice when|strong=\"H3644\"* he|strong=\"H2962\"* sees the|strong=\"H2962\"* vengeance." + }, + { + "verseNum": 11, + "text": "so|strong=\"H3588\"* that|strong=\"H3588\"* men|strong=\"H7563\"* shall|strong=\"H7563\"* say, “Most certainly|strong=\"H3588\"* there is|strong=\"H7563\"* a|strong=\"H3068\"* reward for|strong=\"H3588\"* the|strong=\"H3588\"* righteous|strong=\"H6662\"*." + } + ] + }, + { + "chapterNum": 59, + "verses": [ + { + "verseNum": 1, + "text": "Deliver|strong=\"H7971\"* me|strong=\"H7971\"* from|strong=\"H7971\"* my|strong=\"H8104\"* enemies, my|strong=\"H8104\"* God|strong=\"H7971\"*." + }, + { + "verseNum": 2, + "text": "Deliver|strong=\"H5337\"* me|strong=\"H5337\"* from|strong=\"H6965\"* the|strong=\"H6965\"* workers of|strong=\"H6965\"* iniquity." + }, + { + "verseNum": 3, + "text": "For, behold, they lie in|strong=\"H1818\"* wait for my|strong=\"H5337\"* soul." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3588\"* have|strong=\"H3068\"* done no|strong=\"H3808\"* wrong, yet|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H6588\"* ready to|strong=\"H3068\"* attack|strong=\"H1481\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H7200\"*, Yahweh|strong=\"H3068\"* God of|strong=\"H5771\"* Armies, the|strong=\"H7200\"* God of|strong=\"H5771\"* Israel," + }, + { + "verseNum": 6, + "text": "They|strong=\"H3068\"* return at|strong=\"H3478\"* evening, howling like|strong=\"H3478\"* dogs," + }, + { + "verseNum": 7, + "text": "Behold, they|strong=\"H5892\"* spew with|strong=\"H5892\"* their|strong=\"H7725\"* mouth." + }, + { + "verseNum": 8, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, laugh at them|strong=\"H8085\"*." + }, + { + "verseNum": 9, + "text": "Oh, my|strong=\"H3605\"* Strength, I|strong=\"H3068\"* watch for|strong=\"H3068\"* you|strong=\"H3605\"*," + }, + { + "verseNum": 10, + "text": "My|strong=\"H8104\"* God will|strong=\"H5797\"* go before me|strong=\"H8104\"* with|strong=\"H3588\"* his|strong=\"H8104\"* loving kindness." + }, + { + "verseNum": 11, + "text": "Don’t kill them|strong=\"H7200\"*, or|strong=\"H7200\"* my|strong=\"H7200\"* people|strong=\"H7200\"* may forget." + }, + { + "verseNum": 12, + "text": "For|strong=\"H2428\"* the|strong=\"H7911\"* sin of|strong=\"H5971\"* their|strong=\"H2026\"* mouth, and|strong=\"H5971\"* the|strong=\"H7911\"* words of|strong=\"H5971\"* their|strong=\"H2026\"* lips," + }, + { + "verseNum": 13, + "text": "Consume them|strong=\"H1697\"* in|strong=\"H1697\"* wrath." + }, + { + "verseNum": 14, + "text": "At|strong=\"H3045\"* evening let them|strong=\"H3615\"* return." + }, + { + "verseNum": 15, + "text": "They|strong=\"H5892\"* shall|strong=\"H5892\"* wander up|strong=\"H7725\"* and|strong=\"H7725\"* down|strong=\"H5437\"* for|strong=\"H5892\"* food," + }, + { + "verseNum": 16, + "text": "But|strong=\"H3808\"* I|strong=\"H3808\"* will|strong=\"H3808\"* sing of|strong=\"H7646\"* your|strong=\"H3808\"* strength." + }, + { + "verseNum": 17, + "text": "To|strong=\"H1961\"* you|strong=\"H3588\"*, my|strong=\"H1961\"* strength|strong=\"H5797\"*, I|strong=\"H3588\"* will|strong=\"H1961\"* sing|strong=\"H7891\"* praises." + } + ] + }, + { + "chapterNum": 60, + "verses": [ + { + "verseNum": 1, + "text": "God, you|strong=\"H5921\"* have|strong=\"H5921\"* rejected us|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "You|strong=\"H7725\"* have|strong=\"H8147\"* made|strong=\"H7725\"* the|strong=\"H5221\"* land tremble." + }, + { + "verseNum": 3, + "text": "You|strong=\"H7725\"* have shown your|strong=\"H7725\"* people hard things." + }, + { + "verseNum": 4, + "text": "You|strong=\"H3588\"* have|strong=\"H3588\"* given a|strong=\"H3068\"* banner to|strong=\"H3588\"* those|strong=\"H3588\"* who|strong=\"H3588\"* fear you|strong=\"H3588\"*," + }, + { + "verseNum": 5, + "text": "So|strong=\"H7200\"* that|strong=\"H5971\"* your|strong=\"H7200\"* beloved may|strong=\"H5971\"* be|strong=\"H5971\"* delivered," + }, + { + "verseNum": 6, + "text": "God|strong=\"H5414\"* has|strong=\"H5414\"* spoken from|strong=\"H6440\"* his|strong=\"H5414\"* sanctuary:" + }, + { + "verseNum": 7, + "text": "Gilead is|strong=\"H3225\"* mine, and|strong=\"H6032\"* Manasseh is|strong=\"H3225\"* mine." + }, + { + "verseNum": 8, + "text": "Moab is|strong=\"H1696\"* my|strong=\"H1696\"* wash basin." + }, + { + "verseNum": 9, + "text": "Who|strong=\"H3063\"* will|strong=\"H3063\"* bring me into|strong=\"H3063\"* the|strong=\"H4519\"* strong|strong=\"H4581\"* city?" + }, + { + "verseNum": 10, + "text": "Haven’t you|strong=\"H5921\"*, God, rejected us|strong=\"H5921\"*?" + }, + { + "verseNum": 11, + "text": "Give us help against|strong=\"H5892\"* the|strong=\"H5704\"* adversary," + }, + { + "verseNum": 12, + "text": "Through|strong=\"H3318\"* God|strong=\"H3808\"* we|strong=\"H3068\"* will|strong=\"H6635\"* do|strong=\"H3318\"* valiantly," + } + ] + }, + { + "chapterNum": 61, + "verses": [ + { + "verseNum": 1, + "text": "Hear my|strong=\"H1732\"* cry, God." + }, + { + "verseNum": 2, + "text": "From|strong=\"H8085\"* the|strong=\"H8085\"* end of|strong=\"H8085\"* the|strong=\"H8085\"* earth, I|strong=\"H8085\"* will|strong=\"H8085\"* call|strong=\"H8085\"* to|strong=\"H8085\"* you|strong=\"H8085\"* when|strong=\"H8085\"* my|strong=\"H8085\"* heart|strong=\"H8085\"* is|strong=\"H8085\"* overwhelmed." + }, + { + "verseNum": 3, + "text": "For|strong=\"H7121\"* you|strong=\"H4480\"* have been a|strong=\"H3068\"* refuge for|strong=\"H7121\"* me|strong=\"H7121\"*," + }, + { + "verseNum": 4, + "text": "I|strong=\"H3588\"* will|strong=\"H1961\"* dwell in|strong=\"H6440\"* your|strong=\"H6440\"* tent forever." + }, + { + "verseNum": 5, + "text": "For|strong=\"H5643\"* you|strong=\"H5769\"*, God, have heard my vows." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3588\"* will|strong=\"H5414\"* prolong the|strong=\"H8085\"* king’s life." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3117\"* shall|strong=\"H4428\"* be|strong=\"H3117\"* enthroned in|strong=\"H5921\"* God’s presence|strong=\"H5921\"* forever|strong=\"H1755\"*." + }, + { + "verseNum": 8, + "text": "So|strong=\"H3427\"* I|strong=\"H6440\"* will|strong=\"H2617\"* sing praise|strong=\"H5769\"* to|strong=\"H6440\"* your|strong=\"H6440\"* name forever|strong=\"H5769\"*," + } + ] + }, + { + "chapterNum": 62, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"H1732\"* soul rests in|strong=\"H5921\"* God alone." + }, + { + "verseNum": 2, + "text": "He|strong=\"H4480\"* alone|strong=\"H4480\"* is|strong=\"H5315\"* my|strong=\"H4480\"* rock, my|strong=\"H4480\"* salvation|strong=\"H3444\"*, and|strong=\"H5315\"* my|strong=\"H4480\"* fortress." + }, + { + "verseNum": 3, + "text": "How|strong=\"H3444\"* long|strong=\"H7227\"* will|strong=\"H3808\"* you|strong=\"H3808\"* assault a|strong=\"H3068\"* man?" + }, + { + "verseNum": 4, + "text": "They|strong=\"H5921\"* fully|strong=\"H5921\"* intend to|strong=\"H5704\"* throw him|strong=\"H5921\"* down|strong=\"H5186\"* from|strong=\"H5921\"* his|strong=\"H3605\"* lofty place|strong=\"H3605\"*." + }, + { + "verseNum": 5, + "text": "My|strong=\"H7130\"* soul, wait in|strong=\"H7130\"* silence for|strong=\"H7130\"* God alone," + }, + { + "verseNum": 6, + "text": "He|strong=\"H3588\"* alone|strong=\"H4480\"* is|strong=\"H5315\"* my|strong=\"H3588\"* rock and|strong=\"H5315\"* my|strong=\"H3588\"* salvation, my|strong=\"H3588\"* fortress." + }, + { + "verseNum": 7, + "text": "My|strong=\"H3808\"* salvation|strong=\"H3444\"* and|strong=\"H6697\"* my|strong=\"H3808\"* honor is|strong=\"H1931\"* with|strong=\"H4131\"* God|strong=\"H6697\"*." + }, + { + "verseNum": 8, + "text": "Trust|strong=\"H4268\"* in|strong=\"H5921\"* him|strong=\"H5921\"* at|strong=\"H5921\"* all|strong=\"H5921\"* times, you|strong=\"H5921\"* people." + }, + { + "verseNum": 9, + "text": "Surely men|strong=\"H5971\"* of|strong=\"H6440\"* low degree are|strong=\"H5971\"* just|strong=\"H3605\"* a|strong=\"H3068\"* breath," + }, + { + "verseNum": 10, + "text": "Don’t trust in|strong=\"H1121\"* oppression." + }, + { + "verseNum": 11, + "text": "God has|strong=\"H3820\"* spoken once;" + }, + { + "verseNum": 12, + "text": "Also|strong=\"H5797\"* to|strong=\"H1696\"* you|strong=\"H3588\"*, Lord, belongs loving kindness," + } + ] + }, + { + "chapterNum": 63, + "verses": [ + { + "verseNum": 1, + "text": "God, you|strong=\"H1961\"* are|strong=\"H1961\"* my|strong=\"H1732\"* God." + }, + { + "verseNum": 2, + "text": "So|strong=\"H1097\"* I|strong=\"H5315\"* have|strong=\"H4325\"* seen you|strong=\"H5315\"* in|strong=\"H1320\"* the|strong=\"H4325\"* sanctuary," + }, + { + "verseNum": 3, + "text": "Because|strong=\"H3651\"* your|strong=\"H7200\"* loving kindness is|strong=\"H3651\"* better than life," + }, + { + "verseNum": 4, + "text": "So|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H2617\"* bless you|strong=\"H3588\"* while|strong=\"H3588\"* I|strong=\"H3588\"* live|strong=\"H2416\"*." + }, + { + "verseNum": 5, + "text": "My|strong=\"H5375\"* soul shall|strong=\"H2416\"* be|strong=\"H8034\"* satisfied as|strong=\"H3651\"* with|strong=\"H3651\"* the|strong=\"H5375\"* richest food." + }, + { + "verseNum": 6, + "text": "when|strong=\"H3644\"* I|strong=\"H5315\"* remember you|strong=\"H3644\"* on|strong=\"H6310\"* my|strong=\"H5315\"* bed," + }, + { + "verseNum": 7, + "text": "For|strong=\"H5921\"* you|strong=\"H5921\"* have|strong=\"H5921\"* been|strong=\"H2142\"* my|strong=\"H5921\"* help." + }, + { + "verseNum": 8, + "text": "My|strong=\"H1961\"* soul stays close to|strong=\"H1961\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H3225\"* those|strong=\"H5315\"* who|strong=\"H5315\"* seek my|strong=\"H8551\"* soul|strong=\"H5315\"* to|strong=\"H5315\"* destroy it|strong=\"H5315\"*" + }, + { + "verseNum": 10, + "text": "They|strong=\"H1992\"* shall|strong=\"H5315\"* be|strong=\"H5315\"* given over to|strong=\"H1245\"* the|strong=\"H1245\"* power of|strong=\"H5315\"* the|strong=\"H1245\"* sword." + }, + { + "verseNum": 11, + "text": "But|strong=\"H1961\"* the|strong=\"H5921\"* king|strong=\"H5921\"* shall|strong=\"H2719\"* rejoice in|strong=\"H5921\"* God|strong=\"H3027\"*." + } + ] + }, + { + "chapterNum": 64, + "verses": [ + { + "verseNum": 1, + "text": "Hear my|strong=\"H1732\"* voice, God, in|strong=\"H1732\"* my|strong=\"H1732\"* complaint." + }, + { + "verseNum": 2, + "text": "Hide me|strong=\"H6963\"* from|strong=\"H8085\"* the|strong=\"H8085\"* conspiracy of|strong=\"H6963\"* the|strong=\"H8085\"* wicked," + }, + { + "verseNum": 3, + "text": "who|strong=\"H7489\"* sharpen their|strong=\"H5641\"* tongue like a|strong=\"H3068\"* sword," + }, + { + "verseNum": 4, + "text": "to|strong=\"H1697\"* shoot|strong=\"H1869\"* innocent men from|strong=\"H1697\"* ambushes." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3808\"* encourage themselves in|strong=\"H3808\"* evil plans." + }, + { + "verseNum": 6, + "text": "They|strong=\"H1697\"* plot|strong=\"H1697\"* injustice, saying|strong=\"H1697\"*, “We|strong=\"H1697\"* have|strong=\"H7200\"* made|strong=\"H2388\"* a|strong=\"H3068\"* perfect plan|strong=\"H1697\"*!”" + }, + { + "verseNum": 7, + "text": "But|strong=\"H3820\"* God|strong=\"H2664\"* will|strong=\"H3820\"* shoot at them|strong=\"H7130\"*." + }, + { + "verseNum": 8, + "text": "Their|strong=\"H1961\"* own|strong=\"H1961\"* tongues shall ruin them|strong=\"H1961\"*." + }, + { + "verseNum": 9, + "text": "All|strong=\"H3605\"* mankind shall|strong=\"H3956\"* be|strong=\"H3956\"* afraid." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3605\"* righteous shall|strong=\"H7919\"* be|strong=\"H3372\"* glad in|strong=\"H7919\"* Yahweh|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 65, + "verses": [ + { + "verseNum": 1, + "text": "Praise waits for|strong=\"H1732\"* you, God, in|strong=\"H1732\"* Zion." + }, + { + "verseNum": 2, + "text": "You|strong=\"H6726\"* who hear prayer," + }, + { + "verseNum": 3, + "text": "Sins overwhelmed me|strong=\"H8085\"*," + }, + { + "verseNum": 4, + "text": "Blessed is|strong=\"H1697\"* the|strong=\"H4480\"* one|strong=\"H4480\"* whom you|strong=\"H4480\"* choose and|strong=\"H1697\"* cause|strong=\"H1697\"* to|strong=\"H1697\"* come near," + }, + { + "verseNum": 5, + "text": "By|strong=\"H7126\"* awesome deeds of|strong=\"H1004\"* righteousness, you|strong=\"H7126\"* answer us|strong=\"H7646\"*," + }, + { + "verseNum": 6, + "text": "By|strong=\"H3605\"* your|strong=\"H3605\"* power, you|strong=\"H3605\"* form the|strong=\"H3605\"* mountains," + }, + { + "verseNum": 7, + "text": "You|strong=\"H2022\"* still the|strong=\"H3559\"* roaring of|strong=\"H2022\"* the|strong=\"H3559\"* seas," + }, + { + "verseNum": 8, + "text": "They also who dwell in|strong=\"H3220\"* faraway places are|strong=\"H1530\"* afraid at|strong=\"H3220\"* your|strong=\"H7623\"* wonders." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3372\"* visit the|strong=\"H3372\"* earth, and|strong=\"H1242\"* water it|strong=\"H1242\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3588\"* drench its|strong=\"H3588\"* furrows." + }, + { + "verseNum": 11, + "text": "You|strong=\"H1288\"* crown the|strong=\"H1288\"* year with|strong=\"H7301\"* your|strong=\"H1288\"* bounty." + }, + { + "verseNum": 12, + "text": "The|strong=\"H8141\"* wilderness grasslands overflow." + }, + { + "verseNum": 13, + "text": "The|strong=\"H4057\"* pastures|strong=\"H4999\"* are|strong=\"H1524\"* covered with|strong=\"H2296\"* flocks." + } + ] + }, + { + "chapterNum": 66, + "verses": [ + { + "verseNum": 1, + "text": "Make a|strong=\"H3068\"* joyful shout|strong=\"H7321\"* to|strong=\"H7321\"* God, all|strong=\"H3605\"* the|strong=\"H3605\"* earth!" + }, + { + "verseNum": 2, + "text": "Sing|strong=\"H2167\"* to|strong=\"H8034\"* the|strong=\"H7760\"* glory|strong=\"H3519\"* of|strong=\"H8034\"* his|strong=\"H7760\"* name|strong=\"H8034\"*!" + }, + { + "verseNum": 3, + "text": "Tell God, “How|strong=\"H4100\"* awesome|strong=\"H3372\"* are|strong=\"H4100\"* your|strong=\"H3372\"* deeds|strong=\"H4639\"*!" + }, + { + "verseNum": 4, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* earth will|strong=\"H8034\"* worship|strong=\"H7812\"* you|strong=\"H3605\"*," + }, + { + "verseNum": 5, + "text": "Come|strong=\"H3212\"*, and|strong=\"H1121\"* see|strong=\"H7200\"* God’s deeds|strong=\"H5949\"*—" + }, + { + "verseNum": 6, + "text": "He|strong=\"H8033\"* turned|strong=\"H2015\"* the|strong=\"H5674\"* sea|strong=\"H3220\"* into|strong=\"H2015\"* dry|strong=\"H3004\"* land|strong=\"H3004\"*." + }, + { + "verseNum": 7, + "text": "He rules|strong=\"H4910\"* by|strong=\"H5869\"* his|strong=\"H7311\"* might|strong=\"H1369\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 8, + "text": "Praise|strong=\"H8416\"* our|strong=\"H1288\"* God, you|strong=\"H1288\"* peoples|strong=\"H5971\"*!" + }, + { + "verseNum": 9, + "text": "who|strong=\"H5315\"* preserves our|strong=\"H5414\"* life|strong=\"H5315\"* among|strong=\"H3808\"* the|strong=\"H5414\"* living|strong=\"H2416\"*," + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"*, God, have|strong=\"H3588\"* tested|strong=\"H6884\"* us|strong=\"H3588\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H7760\"* brought|strong=\"H7760\"* us|strong=\"H7760\"* into|strong=\"H7760\"* prison." + }, + { + "verseNum": 12, + "text": "You|strong=\"H3318\"* allowed men|strong=\"H7218\"* to|strong=\"H3318\"* ride|strong=\"H7392\"* over|strong=\"H7218\"* our|strong=\"H3318\"* heads|strong=\"H7218\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H1004\"* will|strong=\"H1004\"* come into your|strong=\"H7999\"* temple|strong=\"H1004\"* with|strong=\"H1004\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*." + }, + { + "verseNum": 14, + "text": "which my|strong=\"H1696\"* lips|strong=\"H8193\"* promised|strong=\"H1696\"*," + }, + { + "verseNum": 15, + "text": "I|strong=\"H6213\"* will|strong=\"H6213\"* offer|strong=\"H5927\"* to|strong=\"H5927\"* you|strong=\"H6213\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* of|strong=\"H6213\"* fat|strong=\"H4220\"* animals," + }, + { + "verseNum": 16, + "text": "Come|strong=\"H3212\"* and|strong=\"H3212\"* hear|strong=\"H8085\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* who|strong=\"H3605\"* fear|strong=\"H3373\"* God." + }, + { + "verseNum": 17, + "text": "I|strong=\"H8478\"* cried|strong=\"H7121\"* to|strong=\"H7121\"* him|strong=\"H7121\"* with|strong=\"H6310\"* my|strong=\"H8478\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 18, + "text": "If|strong=\"H7200\"* I|strong=\"H7200\"* cherished sin in|strong=\"H8085\"* my|strong=\"H8085\"* heart|strong=\"H3820\"*," + }, + { + "verseNum": 19, + "text": "But|strong=\"H8085\"* most certainly|strong=\"H8085\"*, God has listened|strong=\"H8085\"*." + }, + { + "verseNum": 20, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H3808\"* God|strong=\"H3808\"*, who|strong=\"H5493\"* has not|strong=\"H3808\"* turned|strong=\"H5493\"* away|strong=\"H5493\"* my|strong=\"H5493\"* prayer|strong=\"H8605\"*," + } + ] + }, + { + "chapterNum": 67, + "verses": [ + { + "verseNum": 1, + "text": "May God be|strong=\"H7892\"* merciful to|strong=\"H7892\"* us, bless us," + }, + { + "verseNum": 2, + "text": "That|strong=\"H1288\"* your|strong=\"H6440\"* way|strong=\"H6440\"* may|strong=\"H1288\"* be|strong=\"H1288\"* known on|strong=\"H6440\"* earth," + }, + { + "verseNum": 3, + "text": "let the|strong=\"H3605\"* peoples praise you|strong=\"H3605\"*, God." + }, + { + "verseNum": 4, + "text": "Oh let the|strong=\"H3605\"* nations|strong=\"H5971\"* be|strong=\"H5971\"* glad and|strong=\"H5971\"* sing for|strong=\"H3605\"* joy," + }, + { + "verseNum": 5, + "text": "Let|strong=\"H8055\"* the|strong=\"H3588\"* peoples|strong=\"H5971\"* praise|strong=\"H3588\"* you|strong=\"H3588\"*, God." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3605\"* earth has|strong=\"H3605\"* yielded its|strong=\"H3605\"* increase." + }, + { + "verseNum": 7, + "text": "God|strong=\"H5414\"* will|strong=\"H5414\"* bless|strong=\"H1288\"* us|strong=\"H5414\"*." + } + ] + }, + { + "chapterNum": 68, + "verses": [ + { + "verseNum": 1, + "text": "Let God arise!" + }, + { + "verseNum": 2, + "text": "As|strong=\"H6440\"* smoke is|strong=\"H6440\"* driven|strong=\"H5127\"* away|strong=\"H5127\"*," + }, + { + "verseNum": 3, + "text": "But|strong=\"H7563\"* let the|strong=\"H6440\"* righteous be|strong=\"H7563\"* glad." + }, + { + "verseNum": 4, + "text": "Sing to|strong=\"H6440\"* God! Sing praises to|strong=\"H6440\"* his|strong=\"H6440\"* name!" + }, + { + "verseNum": 5, + "text": "A|strong=\"H3068\"* father of|strong=\"H6440\"* the|strong=\"H6440\"* fatherless, and|strong=\"H6440\"* a|strong=\"H3068\"* defender of|strong=\"H6440\"* the|strong=\"H6440\"* widows," + }, + { + "verseNum": 6, + "text": "God sets the|strong=\"H6944\"* lonely in|strong=\"H4583\"* families." + }, + { + "verseNum": 7, + "text": "God, when|strong=\"H3318\"* you|strong=\"H3318\"* went|strong=\"H3318\"* out|strong=\"H3318\"* before|strong=\"H3427\"* your|strong=\"H3318\"* people|strong=\"H3427\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H6440\"* earth trembled." + }, + { + "verseNum": 9, + "text": "You|strong=\"H6440\"*, God|strong=\"H8064\"*, sent a|strong=\"H3068\"* plentiful rain." + }, + { + "verseNum": 10, + "text": "Your|strong=\"H3559\"* congregation lived therein." + }, + { + "verseNum": 11, + "text": "The|strong=\"H3559\"* Lord announced the|strong=\"H3559\"* word." + }, + { + "verseNum": 12, + "text": "“Kings of|strong=\"H6635\"* armies|strong=\"H6635\"* flee! They|strong=\"H5414\"* flee!”" + }, + { + "verseNum": 13, + "text": "while|strong=\"H1004\"* you|strong=\"H1004\"* sleep among the|strong=\"H2505\"* camp fires," + }, + { + "verseNum": 14, + "text": "When|strong=\"H7901\"* the|strong=\"H7901\"* Almighty scattered kings in|strong=\"H7901\"* her|strong=\"H7901\"*," + }, + { + "verseNum": 15, + "text": "The|strong=\"H6566\"* mountains of|strong=\"H4428\"* Bashan are|strong=\"H4428\"* majestic mountains." + }, + { + "verseNum": 16, + "text": "Why do you|strong=\"H2022\"* look in|strong=\"H2022\"* envy, you|strong=\"H2022\"* rugged mountains|strong=\"H2022\"*," + }, + { + "verseNum": 17, + "text": "The|strong=\"H3068\"* chariots of|strong=\"H3068\"* God|strong=\"H3068\"* are|strong=\"H4100\"* tens of|strong=\"H3068\"* thousands and|strong=\"H3068\"* thousands of|strong=\"H3068\"* thousands." + }, + { + "verseNum": 18, + "text": "You have|strong=\"H6944\"* ascended on|strong=\"H7393\"* high." + }, + { + "verseNum": 19, + "text": "Blessed be the|strong=\"H3947\"* Lord|strong=\"H3050\"*, who daily bears our|strong=\"H3947\"* burdens," + }, + { + "verseNum": 20, + "text": "God is|strong=\"H3117\"* to|strong=\"H3117\"* us|strong=\"H3117\"* a|strong=\"H3068\"* God of|strong=\"H3117\"* deliverance|strong=\"H3444\"*." + }, + { + "verseNum": 21, + "text": "But God|strong=\"H3069\"* will|strong=\"H3069\"* strike through the|strong=\"H3069\"* head of|strong=\"H4194\"* his enemies," + }, + { + "verseNum": 22, + "text": "The|strong=\"H1980\"* Lord said, “I|strong=\"H1980\"* will bring|strong=\"H1980\"* you|strong=\"H1980\"* again from|strong=\"H1980\"* Bashan," + }, + { + "verseNum": 23, + "text": "that|strong=\"H7725\"* you|strong=\"H7725\"* may|strong=\"H7725\"* crush them|strong=\"H7725\"*, dipping your|strong=\"H7725\"* foot in|strong=\"H7725\"* blood," + }, + { + "verseNum": 24, + "text": "They|strong=\"H7272\"* have|strong=\"H7272\"* seen your|strong=\"H4480\"* processions, God," + }, + { + "verseNum": 25, + "text": "The|strong=\"H7200\"* singers went|strong=\"H4428\"* before|strong=\"H7200\"*, the|strong=\"H7200\"* minstrels followed after|strong=\"H7200\"*," + }, + { + "verseNum": 26, + "text": "“Bless God in|strong=\"H8432\"* the|strong=\"H8432\"* congregations," + }, + { + "verseNum": 27, + "text": "There|strong=\"H3068\"* is|strong=\"H3068\"* little Benjamin, their|strong=\"H3068\"* ruler," + }, + { + "verseNum": 28, + "text": "Your|strong=\"H8033\"* God has|strong=\"H3063\"* commanded your|strong=\"H8033\"* strength." + }, + { + "verseNum": 29, + "text": "Because of|strong=\"H6466\"* your|strong=\"H6680\"* temple at|strong=\"H6680\"* Jerusalem," + }, + { + "verseNum": 30, + "text": "Rebuke the|strong=\"H5921\"* wild animal of|strong=\"H4428\"* the|strong=\"H5921\"* reeds," + }, + { + "verseNum": 31, + "text": "Princes shall|strong=\"H5971\"* come|strong=\"H5971\"* out of|strong=\"H5971\"* Egypt." + }, + { + "verseNum": 32, + "text": "Sing to|strong=\"H3027\"* God|strong=\"H3027\"*, you|strong=\"H4480\"* kingdoms of|strong=\"H3027\"* the|strong=\"H4480\"* earth!" + }, + { + "verseNum": 33, + "text": "to|strong=\"H4467\"* him who|strong=\"H7891\"* rides on the|strong=\"H2167\"* heaven of|strong=\"H4467\"* heavens, which are|strong=\"H4467\"* of|strong=\"H4467\"* old;" + }, + { + "verseNum": 34, + "text": "Ascribe|strong=\"H5414\"* strength|strong=\"H5797\"* to|strong=\"H5414\"* God|strong=\"H5414\"*!" + }, + { + "verseNum": 35, + "text": "You|strong=\"H5414\"* are|strong=\"H3478\"* awesome, God|strong=\"H5414\"*, in|strong=\"H5921\"* your|strong=\"H5414\"* sanctuaries." + } + ] + }, + { + "chapterNum": 69, + "verses": [ + { + "verseNum": 1, + "text": "Save me|strong=\"H5921\"*, God," + }, + { + "verseNum": 2, + "text": "I|strong=\"H3588\"* sink in|strong=\"H5315\"* deep mire, where there|strong=\"H5704\"* is|strong=\"H5315\"* no foothold." + }, + { + "verseNum": 3, + "text": "I am weary with|strong=\"H4325\"* my crying." + }, + { + "verseNum": 4, + "text": "Those who|strong=\"H7121\"* hate me|strong=\"H7121\"* without a|strong=\"H3068\"* cause|strong=\"H7121\"* are|strong=\"H5869\"* more than the|strong=\"H7121\"* hairs of|strong=\"H5869\"* my|strong=\"H3615\"* head." + }, + { + "verseNum": 5, + "text": "God|strong=\"H3808\"*, you|strong=\"H7725\"* know my|strong=\"H7725\"* foolishness." + }, + { + "verseNum": 6, + "text": "Don’t let|strong=\"H3808\"* those|strong=\"H4480\"* who|strong=\"H3045\"* wait for|strong=\"H3045\"* you|strong=\"H3045\"* be|strong=\"H3808\"* shamed through|strong=\"H4480\"* me|strong=\"H4480\"*, Lord Yahweh|strong=\"H3068\"* of|strong=\"H4480\"* Armies|strong=\"H3808\"*." + }, + { + "verseNum": 7, + "text": "Because for|strong=\"H6960\"* your|strong=\"H1245\"* sake, I|strong=\"H3478\"* have|strong=\"H3478\"* borne reproach|strong=\"H3637\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H3588\"* have|strong=\"H3588\"* become|strong=\"H5375\"* a|strong=\"H3068\"* stranger to|strong=\"H5921\"* my|strong=\"H5921\"* brothers," + }, + { + "verseNum": 9, + "text": "For|strong=\"H1121\"* the|strong=\"H1961\"* zeal of|strong=\"H1121\"* your|strong=\"H1961\"* house consumes me|strong=\"H1961\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H3588\"* I|strong=\"H3588\"* wept and|strong=\"H1004\"* I|strong=\"H3588\"* fasted," + }, + { + "verseNum": 11, + "text": "When|strong=\"H1961\"* I|strong=\"H5315\"* made|strong=\"H1961\"* sackcloth my|strong=\"H1961\"* clothing," + }, + { + "verseNum": 12, + "text": "Those|strong=\"H1992\"* who|strong=\"H1992\"* sit|strong=\"H5414\"* in|strong=\"H5414\"* the|strong=\"H5414\"* gate talk about|strong=\"H1961\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "But as|strong=\"H3427\"* for|strong=\"H3427\"* me, my|strong=\"H8354\"* prayer is|strong=\"H8179\"* to|strong=\"H3427\"* you|strong=\"H3427\"*, Yahweh|strong=\"H3068\"*, in|strong=\"H3427\"* an|strong=\"H3427\"* acceptable time." + }, + { + "verseNum": 14, + "text": "Deliver me|strong=\"H6030\"* out of|strong=\"H3068\"* the|strong=\"H3068\"* mire, and|strong=\"H3068\"* don’t let|strong=\"H6256\"* me|strong=\"H6030\"* sink." + }, + { + "verseNum": 15, + "text": "Don’t let the|strong=\"H5337\"* flood|strong=\"H4325\"* waters|strong=\"H4325\"* overwhelm me|strong=\"H8130\"*," + }, + { + "verseNum": 16, + "text": "Answer me|strong=\"H5921\"*, Yahweh|strong=\"H3068\"*, for|strong=\"H5921\"* your|strong=\"H5921\"* loving kindness is|strong=\"H6310\"* good." + }, + { + "verseNum": 17, + "text": "Don’t hide your|strong=\"H3068\"* face|strong=\"H6437\"* from|strong=\"H3068\"* your|strong=\"H3068\"* servant," + }, + { + "verseNum": 18, + "text": "Draw near|strong=\"H6440\"* to|strong=\"H6440\"* my|strong=\"H5641\"* soul and|strong=\"H6030\"* redeem it|strong=\"H3588\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H5315\"* know my|strong=\"H6299\"* reproach, my|strong=\"H6299\"* shame, and|strong=\"H7126\"* my|strong=\"H6299\"* dishonor." + }, + { + "verseNum": 20, + "text": "Reproach|strong=\"H2781\"* has|strong=\"H3045\"* broken my|strong=\"H3605\"* heart, and|strong=\"H3045\"* I|strong=\"H3045\"* am full|strong=\"H3605\"* of|strong=\"H3605\"* heaviness." + }, + { + "verseNum": 21, + "text": "They|strong=\"H3808\"* also|strong=\"H3820\"* gave me|strong=\"H4672\"* poison for|strong=\"H6960\"* my|strong=\"H4672\"* food." + }, + { + "verseNum": 22, + "text": "Let|strong=\"H5414\"* their|strong=\"H5414\"* table before them|strong=\"H5414\"* become a|strong=\"H3068\"* snare." + }, + { + "verseNum": 23, + "text": "Let|strong=\"H1961\"* their|strong=\"H6440\"* eyes be|strong=\"H1961\"* darkened, so|strong=\"H1961\"* that|strong=\"H1961\"* they|strong=\"H6440\"* can’t see." + }, + { + "verseNum": 24, + "text": "Pour out|strong=\"H7200\"* your|strong=\"H7200\"* indignation on|strong=\"H7200\"* them|strong=\"H7200\"*." + }, + { + "verseNum": 25, + "text": "Let their|strong=\"H5921\"* habitation be|strong=\"H2195\"* desolate." + }, + { + "verseNum": 26, + "text": "For|strong=\"H3427\"* they persecute him|strong=\"H1961\"* whom you|strong=\"H8074\"* have|strong=\"H1961\"* wounded." + }, + { + "verseNum": 27, + "text": "Charge them|strong=\"H5221\"* with|strong=\"H2491\"* crime upon crime." + }, + { + "verseNum": 28, + "text": "Let|strong=\"H5414\"* them|strong=\"H5414\"* be|strong=\"H5414\"* blotted out|strong=\"H5414\"* of|strong=\"H5921\"* the|strong=\"H5921\"* book of|strong=\"H5921\"* life," + }, + { + "verseNum": 29, + "text": "But|strong=\"H6662\"* I am in|strong=\"H3789\"* pain and|strong=\"H6662\"* distress." + }, + { + "verseNum": 30, + "text": "I|strong=\"H3444\"* will|strong=\"H3444\"* praise the|strong=\"H7682\"* name of|strong=\"H3444\"* God with|strong=\"H6041\"* a|strong=\"H3068\"* song," + }, + { + "verseNum": 31, + "text": "It|strong=\"H8034\"* will|strong=\"H8034\"* please Yahweh|strong=\"H3068\"* better than an ox," + }, + { + "verseNum": 32, + "text": "The|strong=\"H3068\"* humble have|strong=\"H3068\"* seen it|strong=\"H3068\"*, and|strong=\"H3068\"* are|strong=\"H3068\"* glad|strong=\"H3190\"*." + }, + { + "verseNum": 33, + "text": "For|strong=\"H2421\"* Yahweh|strong=\"H3068\"* hears the|strong=\"H7200\"* needy," + }, + { + "verseNum": 34, + "text": "Let|strong=\"H3808\"* heaven and|strong=\"H3068\"* earth praise|strong=\"H3588\"* him|strong=\"H8085\"*;" + }, + { + "verseNum": 35, + "text": "For|strong=\"H3605\"* God|strong=\"H8064\"* will|strong=\"H8064\"* save Zion, and|strong=\"H8064\"* build the|strong=\"H3605\"* cities of|strong=\"H3605\"* Judah." + }, + { + "verseNum": 36, + "text": "The|strong=\"H3588\"* children|strong=\"H1129\"* also|strong=\"H3063\"* of|strong=\"H3427\"* his|strong=\"H3588\"* servants|strong=\"H8033\"* shall|strong=\"H5892\"* inherit|strong=\"H3423\"* it|strong=\"H3588\"*." + } + ] + }, + { + "chapterNum": 70, + "verses": [ + { + "verseNum": 1, + "text": "Hurry, God, to|strong=\"H1732\"* deliver me|strong=\"H2142\"*." + }, + { + "verseNum": 2, + "text": "Let them|strong=\"H3068\"* be|strong=\"H3068\"* disappointed and|strong=\"H3068\"* confounded who|strong=\"H3068\"* seek my|strong=\"H3068\"* soul." + }, + { + "verseNum": 3, + "text": "Let|strong=\"H5315\"* them be|strong=\"H5315\"* turned|strong=\"H5472\"* because of|strong=\"H5315\"* their|strong=\"H1245\"* shame|strong=\"H3637\"*" + }, + { + "verseNum": 4, + "text": "Let|strong=\"H7725\"* all|strong=\"H5921\"* those|strong=\"H5921\"* who seek you|strong=\"H5921\"* rejoice and|strong=\"H7725\"* be|strong=\"H7725\"* glad in|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H3605\"* I|strong=\"H3605\"* am poor and|strong=\"H8055\"* needy." + } + ] + }, + { + "chapterNum": 71, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3068\"* you|strong=\"H5769\"*, Yahweh|strong=\"H3068\"*, I|strong=\"H3068\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"*." + }, + { + "verseNum": 2, + "text": "Deliver|strong=\"H5337\"* me|strong=\"H5337\"* in|strong=\"H5186\"* your|strong=\"H5186\"* righteousness|strong=\"H6666\"*, and|strong=\"H6666\"* rescue|strong=\"H5337\"* me|strong=\"H5337\"*." + }, + { + "verseNum": 3, + "text": "Be|strong=\"H1961\"* to|strong=\"H1961\"* me|strong=\"H3467\"* a|strong=\"H3068\"* rock|strong=\"H6697\"* of|strong=\"H6697\"* refuge to|strong=\"H1961\"* which|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H1961\"* always|strong=\"H8548\"* go|strong=\"H1961\"*." + }, + { + "verseNum": 4, + "text": "Rescue|strong=\"H6403\"* me|strong=\"H3027\"*, my|strong=\"H3027\"* God|strong=\"H3027\"*, from|strong=\"H3027\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3027\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* are my|strong=\"H3588\"* hope|strong=\"H8615\"*, Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "I|strong=\"H5921\"* have|strong=\"H5921\"* relied|strong=\"H5564\"* on|strong=\"H5921\"* you|strong=\"H5921\"* from|strong=\"H5921\"* the|strong=\"H5921\"* womb|strong=\"H4578\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H1961\"* am|strong=\"H1961\"* a|strong=\"H3068\"* marvel|strong=\"H4159\"* to|strong=\"H1961\"* many|strong=\"H7227\"*," + }, + { + "verseNum": 8, + "text": "My|strong=\"H3605\"* mouth|strong=\"H6310\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* your|strong=\"H3605\"* praise|strong=\"H8416\"*," + }, + { + "verseNum": 9, + "text": "Don’t reject|strong=\"H5800\"* me|strong=\"H7993\"* in|strong=\"H3615\"* my|strong=\"H3615\"* old|strong=\"H2209\"* age|strong=\"H2209\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* my|strong=\"H8104\"* enemies talk about me|strong=\"H5315\"*." + }, + { + "verseNum": 11, + "text": "saying, “God has|strong=\"H3588\"* forsaken|strong=\"H5800\"* him|strong=\"H7291\"*." + }, + { + "verseNum": 12, + "text": "God, don’t be|strong=\"H4480\"* far|strong=\"H7368\"* from|strong=\"H4480\"* me|strong=\"H4480\"*." + }, + { + "verseNum": 13, + "text": "Let|strong=\"H5315\"* my|strong=\"H1245\"* accusers|strong=\"H7853\"* be|strong=\"H5315\"* disappointed and|strong=\"H5315\"* consumed|strong=\"H3615\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"H3605\"* I|strong=\"H5921\"* will|strong=\"H3605\"* always|strong=\"H3605\"* hope|strong=\"H3176\"*," + }, + { + "verseNum": 15, + "text": "My|strong=\"H3605\"* mouth|strong=\"H6310\"* will|strong=\"H3808\"* tell|strong=\"H5608\"* about|strong=\"H3045\"* your|strong=\"H3605\"* righteousness|strong=\"H6666\"*," + }, + { + "verseNum": 16, + "text": "I|strong=\"H2142\"* will|strong=\"H3069\"* come|strong=\"H2142\"* with|strong=\"H1369\"* the|strong=\"H3069\"* mighty|strong=\"H1369\"* acts|strong=\"H1369\"* of|strong=\"H3069\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 17, + "text": "God, you|strong=\"H5704\"* have taught|strong=\"H3925\"* me|strong=\"H5046\"* from|strong=\"H5704\"* my|strong=\"H5046\"* youth|strong=\"H5271\"*." + }, + { + "verseNum": 18, + "text": "Yes|strong=\"H1571\"*, even|strong=\"H1571\"* when|strong=\"H5704\"* I|strong=\"H5704\"* am old|strong=\"H2209\"* and|strong=\"H1571\"* gray-haired|strong=\"H7872\"*, God, don’t forsake|strong=\"H5800\"* me|strong=\"H5046\"*," + }, + { + "verseNum": 19, + "text": "God|strong=\"H4310\"*, your|strong=\"H6213\"* righteousness|strong=\"H6666\"* also|strong=\"H6213\"* reaches|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H6213\"* heavens|strong=\"H4791\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H7725\"*, who|strong=\"H7227\"* have|strong=\"H7200\"* shown|strong=\"H7200\"* us|strong=\"H7725\"* many|strong=\"H7227\"* and|strong=\"H7725\"* bitter troubles|strong=\"H6869\"*," + }, + { + "verseNum": 21, + "text": "Increase|strong=\"H7235\"* my|strong=\"H7235\"* honor" + }, + { + "verseNum": 22, + "text": "I|strong=\"H1571\"* will|strong=\"H3478\"* also|strong=\"H1571\"* praise|strong=\"H3034\"* you|strong=\"H3034\"* with|strong=\"H3627\"* the|strong=\"H1571\"* harp|strong=\"H3658\"* for|strong=\"H3478\"* your|strong=\"H3034\"* faithfulness, my|strong=\"H3478\"* God." + }, + { + "verseNum": 23, + "text": "My|strong=\"H3588\"* lips|strong=\"H8193\"* shall|strong=\"H5315\"* shout|strong=\"H7442\"* for|strong=\"H3588\"* joy|strong=\"H7442\"*!" + }, + { + "verseNum": 24, + "text": "My|strong=\"H3605\"* tongue|strong=\"H3956\"* will|strong=\"H1571\"* also|strong=\"H1571\"* talk|strong=\"H1897\"* about|strong=\"H3117\"* your|strong=\"H3605\"* righteousness|strong=\"H6666\"* all|strong=\"H3605\"* day|strong=\"H3117\"* long|strong=\"H3117\"*," + } + ] + }, + { + "chapterNum": 72, + "verses": [ + { + "verseNum": 1, + "text": "God|strong=\"H5414\"*, give|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"* your|strong=\"H5414\"* justice|strong=\"H4941\"*;" + }, + { + "verseNum": 2, + "text": "He|strong=\"H5971\"* will|strong=\"H5971\"* judge|strong=\"H1777\"* your|strong=\"H1777\"* people|strong=\"H5971\"* with|strong=\"H5971\"* righteousness|strong=\"H6664\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H5375\"* mountains|strong=\"H2022\"* shall|strong=\"H5971\"* bring|strong=\"H5375\"* prosperity|strong=\"H7965\"* to|strong=\"H5971\"* the|strong=\"H5375\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H5971\"* will|strong=\"H5971\"* judge|strong=\"H8199\"* the|strong=\"H8199\"* poor|strong=\"H6041\"* of|strong=\"H1121\"* the|strong=\"H8199\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H6440\"* shall|strong=\"H6440\"* fear|strong=\"H3372\"* you|strong=\"H6440\"* while|strong=\"H5973\"* the|strong=\"H6440\"* sun|strong=\"H8121\"* endures|strong=\"H1755\"*;" + }, + { + "verseNum": 6, + "text": "He|strong=\"H5921\"* will|strong=\"H3381\"* come|strong=\"H3381\"* down|strong=\"H3381\"* like|strong=\"H3381\"* rain|strong=\"H4306\"* on|strong=\"H5921\"* the|strong=\"H5921\"* mown|strong=\"H1488\"* grass," + }, + { + "verseNum": 7, + "text": "In|strong=\"H3117\"* his|strong=\"H3117\"* days|strong=\"H3117\"*, the|strong=\"H3117\"* righteous|strong=\"H6662\"* shall|strong=\"H3117\"* flourish|strong=\"H6524\"*," + }, + { + "verseNum": 8, + "text": "He|strong=\"H5704\"* shall|strong=\"H3220\"* have|strong=\"H5104\"* dominion|strong=\"H7287\"* also from|strong=\"H5704\"* sea|strong=\"H3220\"* to|strong=\"H5704\"* sea|strong=\"H3220\"*," + }, + { + "verseNum": 9, + "text": "Those who dwell in|strong=\"H6440\"* the|strong=\"H6440\"* wilderness|strong=\"H6728\"* shall|strong=\"H6440\"* bow|strong=\"H3766\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H7725\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Tarshish|strong=\"H8659\"* and|strong=\"H7725\"* of|strong=\"H4428\"* the|strong=\"H7725\"* islands will|strong=\"H4428\"* bring|strong=\"H7725\"* tribute|strong=\"H4503\"*." + }, + { + "verseNum": 11, + "text": "Yes, all|strong=\"H3605\"* kings|strong=\"H4428\"* shall|strong=\"H1471\"* fall down|strong=\"H7812\"* before him|strong=\"H5647\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H5826\"* deliver|strong=\"H5337\"* the|strong=\"H3588\"* needy|strong=\"H6041\"* when|strong=\"H3588\"* he|strong=\"H3588\"* cries|strong=\"H7768\"*;" + }, + { + "verseNum": 13, + "text": "He|strong=\"H5921\"* will|strong=\"H5315\"* have|strong=\"H2347\"* pity|strong=\"H2347\"* on|strong=\"H5921\"* the|strong=\"H5921\"* poor|strong=\"H1800\"* and|strong=\"H5315\"* needy|strong=\"H1800\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H1818\"* will|strong=\"H5869\"* redeem|strong=\"H1350\"* their|strong=\"H1350\"* soul|strong=\"H5315\"* from|strong=\"H5315\"* oppression|strong=\"H8496\"* and|strong=\"H5869\"* violence|strong=\"H2555\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3117\"* will|strong=\"H5414\"* live|strong=\"H2421\"*; and|strong=\"H3117\"* Sheba|strong=\"H7614\"*’s gold|strong=\"H2091\"* will|strong=\"H5414\"* be|strong=\"H3117\"* given|strong=\"H5414\"* to|strong=\"H5414\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 16, + "text": "Abundance|strong=\"H6451\"* of|strong=\"H5892\"* grain|strong=\"H1250\"* shall|strong=\"H5892\"* be|strong=\"H1961\"* throughout|strong=\"H5892\"* the|strong=\"H1961\"* land." + }, + { + "verseNum": 17, + "text": "His|strong=\"H3605\"* name|strong=\"H8034\"* endures|strong=\"H5769\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 18, + "text": "Praise|strong=\"H1288\"* be|strong=\"H3068\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*, the|strong=\"H6213\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 19, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H5769\"* his|strong=\"H3605\"* glorious|strong=\"H3519\"* name|strong=\"H8034\"* forever|strong=\"H5769\"*!" + }, + { + "verseNum": 20, + "text": "This|strong=\"H1732\"* ends the|strong=\"H1732\"* prayers|strong=\"H8605\"* by|strong=\"H3615\"* David|strong=\"H1732\"*, the|strong=\"H1732\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"*." + } + ] + }, + { + "chapterNum": 73, + "verses": [ + { + "verseNum": 1, + "text": "Surely God+ 73:1 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* is|strong=\"H2896\"* good|strong=\"H2896\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 2, + "text": "But as|strong=\"H7272\"* for|strong=\"H7272\"* me, my|strong=\"H8210\"* feet|strong=\"H7272\"* were|strong=\"H7272\"* almost|strong=\"H4592\"* gone|strong=\"H5186\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* was envious|strong=\"H7065\"* of|strong=\"H7965\"* the|strong=\"H7200\"* arrogant|strong=\"H1984\"*," + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* there are|strong=\"H4194\"* no struggles in|strong=\"H4194\"* their|strong=\"H3588\"* death|strong=\"H4194\"*," + }, + { + "verseNum": 5, + "text": "They|strong=\"H3808\"* are|strong=\"H5973\"* free|strong=\"H5973\"* from|strong=\"H5973\"* burdens of|strong=\"H5999\"* men," + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3651\"* pride|strong=\"H1346\"* is|strong=\"H3651\"* like|strong=\"H3651\"* a|strong=\"H3068\"* chain|strong=\"H6059\"* around their|strong=\"H3651\"* neck." + }, + { + "verseNum": 7, + "text": "Their|strong=\"H3318\"* eyes|strong=\"H5869\"* bulge with|strong=\"H3318\"* fat|strong=\"H2459\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H7451\"* scoff and|strong=\"H1696\"* speak|strong=\"H1696\"* with|strong=\"H1696\"* malice." + }, + { + "verseNum": 9, + "text": "They|strong=\"H6310\"* have|strong=\"H1980\"* set|strong=\"H1980\"* their|strong=\"H8064\"* mouth|strong=\"H6310\"* in|strong=\"H1980\"* the|strong=\"H1980\"* heavens|strong=\"H8064\"*." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H3651\"* their|strong=\"H7725\"* people|strong=\"H5971\"* return|strong=\"H7725\"* to|strong=\"H7725\"* them|strong=\"H7725\"*," + }, + { + "verseNum": 11, + "text": "They|strong=\"H3045\"* say, “How|strong=\"H3045\"* does|strong=\"H3426\"* God know|strong=\"H3045\"*?" + }, + { + "verseNum": 12, + "text": "Behold|strong=\"H2009\"*, these are|strong=\"H7563\"* the|strong=\"H2009\"* wicked|strong=\"H7563\"*." + }, + { + "verseNum": 13, + "text": "Surely I|strong=\"H2135\"* have cleansed|strong=\"H2135\"* my|strong=\"H7364\"* heart|strong=\"H3824\"* in|strong=\"H7364\"* vain|strong=\"H7385\"*," + }, + { + "verseNum": 14, + "text": "For|strong=\"H3117\"* all|strong=\"H3605\"* day|strong=\"H3117\"* long|strong=\"H3117\"* I|strong=\"H3117\"* have|strong=\"H1961\"* been|strong=\"H1961\"* plagued|strong=\"H5060\"*," + }, + { + "verseNum": 15, + "text": "If|strong=\"H2009\"* I|strong=\"H2009\"* had|strong=\"H1121\"* said, “I|strong=\"H2009\"* will|strong=\"H1121\"* speak|strong=\"H5608\"* thus|strong=\"H3644\"*”," + }, + { + "verseNum": 16, + "text": "When|strong=\"H3045\"* I|strong=\"H3045\"* tried to|strong=\"H2803\"* understand|strong=\"H3045\"* this|strong=\"H2063\"*," + }, + { + "verseNum": 17, + "text": "until|strong=\"H5704\"* I|strong=\"H5704\"* entered|strong=\"H5704\"* God’s sanctuary|strong=\"H4720\"*," + }, + { + "verseNum": 18, + "text": "Surely|strong=\"H5307\"* you set|strong=\"H7896\"* them|strong=\"H7896\"* in|strong=\"H5307\"* slippery|strong=\"H2513\"* places|strong=\"H2513\"*." + }, + { + "verseNum": 19, + "text": "How they|strong=\"H7281\"* are|strong=\"H1961\"* suddenly|strong=\"H7281\"* destroyed|strong=\"H8552\"*!" + }, + { + "verseNum": 20, + "text": "As a|strong=\"H3068\"* dream|strong=\"H2472\"* when|strong=\"H2472\"* one wakes up|strong=\"H5782\"*," + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* my|strong=\"H3588\"* soul was|strong=\"H3824\"* grieved|strong=\"H2556\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"H3045\"* was|strong=\"H1961\"* so|strong=\"H1961\"* senseless|strong=\"H1198\"* and|strong=\"H3045\"* ignorant|strong=\"H3045\"*." + }, + { + "verseNum": 23, + "text": "Nevertheless, I|strong=\"H3027\"* am continually|strong=\"H8548\"* with|strong=\"H5973\"* you|strong=\"H5973\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H3947\"* will|strong=\"H3519\"* guide|strong=\"H5148\"* me|strong=\"H3947\"* with|strong=\"H3947\"* your|strong=\"H3947\"* counsel|strong=\"H6098\"*," + }, + { + "verseNum": 25, + "text": "Whom|strong=\"H4310\"* do|strong=\"H4310\"* I|strong=\"H3808\"* have|strong=\"H2654\"* in|strong=\"H2654\"* heaven|strong=\"H8064\"*?" + }, + { + "verseNum": 26, + "text": "My|strong=\"H3615\"* flesh|strong=\"H7607\"* and|strong=\"H5769\"* my|strong=\"H3615\"* heart|strong=\"H3824\"* fails|strong=\"H3615\"*," + }, + { + "verseNum": 27, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H4480\"* far|strong=\"H4480\"* from|strong=\"H4480\"* you|strong=\"H3588\"* shall|strong=\"H2181\"* perish." + }, + { + "verseNum": 28, + "text": "But|strong=\"H3605\"* it|strong=\"H7896\"* is|strong=\"H2896\"* good|strong=\"H2896\"* for|strong=\"H3605\"* me|strong=\"H7896\"* to|strong=\"H2896\"* come close|strong=\"H7896\"* to|strong=\"H2896\"* God|strong=\"H3069\"*." + } + ] + }, + { + "chapterNum": 74, + "verses": [ + { + "verseNum": 1, + "text": "God, why|strong=\"H4100\"* have|strong=\"H6629\"* you|strong=\"H4100\"* rejected|strong=\"H2186\"* us|strong=\"H6629\"* forever|strong=\"H5331\"*?" + }, + { + "verseNum": 2, + "text": "Remember|strong=\"H2142\"* your|strong=\"H2142\"* congregation|strong=\"H5712\"*, which|strong=\"H2088\"* you|strong=\"H5159\"* purchased|strong=\"H7069\"* of|strong=\"H7626\"* old|strong=\"H6924\"*," + }, + { + "verseNum": 3, + "text": "Lift|strong=\"H7311\"* up|strong=\"H7311\"* your|strong=\"H3605\"* feet|strong=\"H6471\"* to|strong=\"H7489\"* the|strong=\"H3605\"* perpetual|strong=\"H5331\"* ruins|strong=\"H4876\"*," + }, + { + "verseNum": 4, + "text": "Your|strong=\"H7760\"* adversaries|strong=\"H6887\"* have|strong=\"H6887\"* roared|strong=\"H7580\"* in|strong=\"H7130\"* the|strong=\"H7760\"* middle|strong=\"H7130\"* of|strong=\"H7130\"* your|strong=\"H7760\"* assembly|strong=\"H4150\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3045\"* behaved like|strong=\"H6086\"* men wielding axes|strong=\"H7134\"*," + }, + { + "verseNum": 6, + "text": "Now|strong=\"H6258\"* they|strong=\"H3162\"* break all|strong=\"H3162\"* its|strong=\"H3162\"* carved|strong=\"H6603\"* work|strong=\"H6603\"* down|strong=\"H1986\"* with|strong=\"H1986\"* hatchet|strong=\"H3781\"* and|strong=\"H6258\"* hammers|strong=\"H3597\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H4908\"* have|strong=\"H8034\"* burned|strong=\"H7971\"* your|strong=\"H7971\"* sanctuary|strong=\"H4720\"* to|strong=\"H7971\"* the|strong=\"H7971\"* ground." + }, + { + "verseNum": 8, + "text": "They|strong=\"H3605\"* said in|strong=\"H3162\"* their|strong=\"H3605\"* heart|strong=\"H3820\"*, “We|strong=\"H3605\"* will|strong=\"H3820\"* crush them|strong=\"H8313\"* completely|strong=\"H3605\"*.”" + }, + { + "verseNum": 9, + "text": "We|strong=\"H5704\"* see|strong=\"H7200\"* no|strong=\"H3808\"* miraculous signs." + }, + { + "verseNum": 10, + "text": "How|strong=\"H4970\"* long|strong=\"H5704\"*, God, shall|strong=\"H8034\"* the|strong=\"H5704\"* adversary|strong=\"H6862\"* reproach|strong=\"H2778\"*?" + }, + { + "verseNum": 11, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H7725\"* draw|strong=\"H7725\"* back|strong=\"H7725\"* your|strong=\"H7725\"* hand|strong=\"H3027\"*, even your|strong=\"H7725\"* right|strong=\"H3225\"* hand|strong=\"H3027\"*?" + }, + { + "verseNum": 12, + "text": "Yet God is|strong=\"H4428\"* my|strong=\"H7130\"* King|strong=\"H4428\"* of|strong=\"H4428\"* old|strong=\"H6924\"*," + }, + { + "verseNum": 13, + "text": "You|strong=\"H5921\"* divided|strong=\"H6565\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* by|strong=\"H5921\"* your|strong=\"H5921\"* strength|strong=\"H5797\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H5414\"* broke|strong=\"H7533\"* the|strong=\"H5414\"* heads|strong=\"H7218\"* of|strong=\"H7218\"* Leviathan|strong=\"H3882\"* in|strong=\"H5414\"* pieces." + }, + { + "verseNum": 15, + "text": "You opened up|strong=\"H3001\"* spring|strong=\"H4599\"* and|strong=\"H5158\"* stream|strong=\"H5158\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3117\"* day|strong=\"H3117\"* is|strong=\"H3117\"* yours, the|strong=\"H3117\"* night|strong=\"H3915\"* is|strong=\"H3117\"* also|strong=\"H3117\"* yours." + }, + { + "verseNum": 17, + "text": "You|strong=\"H3605\"* have|strong=\"H3605\"* set|strong=\"H5324\"* all|strong=\"H3605\"* the|strong=\"H3605\"* boundaries|strong=\"H1367\"* of|strong=\"H3605\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 18, + "text": "Remember|strong=\"H2142\"* this|strong=\"H2063\"*, that|strong=\"H5971\"* the|strong=\"H3068\"* enemy has|strong=\"H3068\"* mocked you|strong=\"H5971\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "Don’t deliver|strong=\"H5414\"* the|strong=\"H5414\"* soul|strong=\"H5315\"* of|strong=\"H5315\"* your|strong=\"H5414\"* dove to|strong=\"H5414\"* wild beasts|strong=\"H2416\"*." + }, + { + "verseNum": 20, + "text": "Honor your|strong=\"H3588\"* covenant|strong=\"H1285\"*," + }, + { + "verseNum": 21, + "text": "Don’t let|strong=\"H7725\"* the|strong=\"H7725\"* oppressed|strong=\"H6041\"* return|strong=\"H7725\"* ashamed|strong=\"H3637\"*." + }, + { + "verseNum": 22, + "text": "Arise|strong=\"H6965\"*, God! Plead|strong=\"H7378\"* your|strong=\"H3605\"* own cause|strong=\"H7379\"*." + }, + { + "verseNum": 23, + "text": "Don’t forget|strong=\"H7911\"* the|strong=\"H5927\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* your|strong=\"H7911\"* adversaries|strong=\"H6887\"*." + } + ] + }, + { + "chapterNum": 75, + "verses": [ + { + "verseNum": 1, + "text": "We give thanks to|strong=\"H7892\"* you, God." + }, + { + "verseNum": 2, + "text": "When I|strong=\"H8034\"* choose the|strong=\"H3034\"* appointed time," + }, + { + "verseNum": 3, + "text": "The|strong=\"H3588\"* earth and|strong=\"H3947\"* all|strong=\"H3947\"* its|strong=\"H3588\"* inhabitants quake." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3605\"* said to|strong=\"H3427\"* the|strong=\"H3605\"* arrogant, “Don’t boast!”" + }, + { + "verseNum": 5, + "text": "Don’t lift|strong=\"H7311\"* up|strong=\"H7311\"* your|strong=\"H7311\"* horn|strong=\"H7161\"* on|strong=\"H7161\"* high|strong=\"H7311\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H7311\"* neither from the|strong=\"H1696\"* east, nor from the|strong=\"H1696\"* west," + }, + { + "verseNum": 7, + "text": "But|strong=\"H3588\"* God|strong=\"H3808\"* is|strong=\"H3808\"* the|strong=\"H3588\"* judge." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* in|strong=\"H2088\"* Yahweh|strong=\"H3068\"*’s hand there|strong=\"H2088\"* is|strong=\"H2088\"* a|strong=\"H3068\"* cup," + }, + { + "verseNum": 9, + "text": "But|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* declare this|strong=\"H2088\"* forever|strong=\"H3605\"*:" + }, + { + "verseNum": 10, + "text": "I|strong=\"H5046\"* will|strong=\"H3290\"* cut off all|strong=\"H5769\"* the|strong=\"H5046\"* horns of|strong=\"H5769\"* the|strong=\"H5046\"* wicked," + } + ] + }, + { + "chapterNum": 76, + "verses": [ + { + "verseNum": 1, + "text": "In Judah, God is known." + }, + { + "verseNum": 2, + "text": "His|strong=\"H3045\"* tabernacle is|strong=\"H8034\"* also|strong=\"H8034\"* in|strong=\"H3478\"* Salem." + }, + { + "verseNum": 3, + "text": "There|strong=\"H1961\"* he broke the|strong=\"H1961\"* flaming arrows of|strong=\"H1961\"* the|strong=\"H1961\"* bow," + }, + { + "verseNum": 4, + "text": "Glorious are|strong=\"H4421\"* you|strong=\"H7665\"*, and|strong=\"H2719\"* excellent," + }, + { + "verseNum": 5, + "text": "Valiant men lie plundered," + }, + { + "verseNum": 6, + "text": "At|strong=\"H3808\"* your|strong=\"H3605\"* rebuke, God|strong=\"H3808\"* of|strong=\"H3027\"* Jacob," + }, + { + "verseNum": 7, + "text": "You, even you, are|strong=\"H5483\"* to|strong=\"H3290\"* be|strong=\"H5483\"* feared." + }, + { + "verseNum": 8, + "text": "You|strong=\"H6440\"* pronounced judgment from|strong=\"H6440\"* heaven." + }, + { + "verseNum": 9, + "text": "when|strong=\"H8085\"* God|strong=\"H8064\"* arose to|strong=\"H8085\"* judgment|strong=\"H1779\"*," + }, + { + "verseNum": 10, + "text": "Surely|strong=\"H6965\"* the|strong=\"H3605\"* wrath of|strong=\"H3605\"* man|strong=\"H3605\"* praises you|strong=\"H3605\"*." + }, + { + "verseNum": 11, + "text": "Make|strong=\"H3588\"* vows to|strong=\"H2534\"* Yahweh|strong=\"H3068\"* your|strong=\"H3588\"* God, and|strong=\"H3034\"* fulfill them|strong=\"H3588\"*!" + }, + { + "verseNum": 12, + "text": "He|strong=\"H3068\"* will|strong=\"H3068\"* cut off the|strong=\"H3605\"* spirit of|strong=\"H3068\"* princes." + } + ] + }, + { + "chapterNum": 77, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"H5921\"* cry goes to|strong=\"H5921\"* God!" + }, + { + "verseNum": 2, + "text": "In|strong=\"H6963\"* the|strong=\"H6963\"* day of|strong=\"H6963\"* my|strong=\"H6963\"* trouble I|strong=\"H6963\"* sought the|strong=\"H6963\"* Lord." + }, + { + "verseNum": 3, + "text": "I|strong=\"H3117\"* remember God|strong=\"H3808\"*, and|strong=\"H3117\"* I|strong=\"H3117\"* groan." + }, + { + "verseNum": 4, + "text": "You|strong=\"H7307\"* hold|strong=\"H2142\"* my|strong=\"H2142\"* eyelids open." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3808\"* have|strong=\"H5869\"* considered the|strong=\"H1696\"* days of|strong=\"H5869\"* old," + }, + { + "verseNum": 6, + "text": "I|strong=\"H3117\"* remember my|strong=\"H2803\"* song in|strong=\"H8141\"* the|strong=\"H3117\"* night." + }, + { + "verseNum": 7, + "text": "“Will|strong=\"H7307\"* the|strong=\"H2142\"* Lord reject us|strong=\"H2142\"* forever?" + }, + { + "verseNum": 8, + "text": "Has his|strong=\"H3808\"* loving kindness vanished forever|strong=\"H5769\"*?" + }, + { + "verseNum": 9, + "text": "Has|strong=\"H5331\"* God forgotten to|strong=\"H1755\"* be|strong=\"H5331\"* gracious?" + }, + { + "verseNum": 10, + "text": "Then I thought, “I will appeal to|strong=\"H7911\"* this:" + }, + { + "verseNum": 11, + "text": "I|strong=\"H8141\"* will|strong=\"H1931\"* remember Yah|strong=\"H3068\"*’s deeds;" + }, + { + "verseNum": 12, + "text": "I|strong=\"H3588\"* will|strong=\"H3588\"* also|strong=\"H3588\"* meditate on|strong=\"H6924\"* all your|strong=\"H3588\"* work," + }, + { + "verseNum": 13, + "text": "Your|strong=\"H3605\"* way|strong=\"H3605\"*, God, is|strong=\"H3605\"* in|strong=\"H3605\"* the|strong=\"H3605\"* sanctuary." + }, + { + "verseNum": 14, + "text": "You|strong=\"H1870\"* are|strong=\"H1870\"* the|strong=\"H1870\"* God|strong=\"H4310\"* who|strong=\"H4310\"* does wonders." + }, + { + "verseNum": 15, + "text": "You|strong=\"H6213\"* have|strong=\"H5971\"* redeemed your|strong=\"H3045\"* people|strong=\"H5971\"* with|strong=\"H6213\"* your|strong=\"H3045\"* arm," + }, + { + "verseNum": 16, + "text": "The|strong=\"H1121\"* waters saw|strong=\"H3290\"* you|strong=\"H5971\"*, God." + }, + { + "verseNum": 17, + "text": "The|strong=\"H7200\"* clouds poured out|strong=\"H7200\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5414\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* your|strong=\"H5414\"* thunder|strong=\"H6963\"* was|strong=\"H6963\"* in|strong=\"H1980\"* the|strong=\"H5414\"* whirlwind." + }, + { + "verseNum": 19, + "text": "Your way was|strong=\"H6963\"* through|strong=\"H6963\"* the|strong=\"H6963\"* sea," + }, + { + "verseNum": 20, + "text": "You|strong=\"H3045\"* led your|strong=\"H3045\"* people|strong=\"H3808\"* like|strong=\"H1870\"* a|strong=\"H3068\"* flock," + } + ] + }, + { + "chapterNum": 78, + "verses": [ + { + "verseNum": 1, + "text": "Hear my|strong=\"H5186\"* teaching|strong=\"H8451\"*, my|strong=\"H5186\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H4480\"* will|strong=\"H6310\"* open|strong=\"H6605\"* my|strong=\"H6605\"* mouth|strong=\"H6310\"* in|strong=\"H6310\"* a|strong=\"H3068\"* parable|strong=\"H4912\"*." + }, + { + "verseNum": 3, + "text": "which|strong=\"H5608\"* we|strong=\"H3068\"* have|strong=\"H3045\"* heard|strong=\"H8085\"* and|strong=\"H8085\"* known|strong=\"H3045\"*," + }, + { + "verseNum": 4, + "text": "We|strong=\"H6213\"* will|strong=\"H3068\"* not|strong=\"H3808\"* hide|strong=\"H3582\"* them|strong=\"H6213\"* from|strong=\"H1121\"* their|strong=\"H3068\"* children|strong=\"H1121\"*," + }, + { + "verseNum": 5, + "text": "For|strong=\"H1121\"* he|strong=\"H3478\"* established|strong=\"H6965\"* a|strong=\"H3068\"* covenant in|strong=\"H3478\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 6, + "text": "that|strong=\"H3045\"* the|strong=\"H3205\"* generation|strong=\"H1755\"* to|strong=\"H3205\"* come|strong=\"H3205\"* might|strong=\"H4616\"* know|strong=\"H3045\"*, even the|strong=\"H3205\"* children|strong=\"H1121\"* who|strong=\"H1121\"* should|strong=\"H5608\"* be|strong=\"H1121\"* born|strong=\"H3205\"*;" + }, + { + "verseNum": 7, + "text": "that|strong=\"H3808\"* they|strong=\"H3808\"* might set|strong=\"H7760\"* their|strong=\"H7760\"* hope|strong=\"H3689\"* in|strong=\"H3808\"* God|strong=\"H3808\"*," + }, + { + "verseNum": 8, + "text": "and|strong=\"H3820\"* might not|strong=\"H3808\"* be|strong=\"H1961\"* as|strong=\"H1961\"* their|strong=\"H3559\"* fathers—" + }, + { + "verseNum": 9, + "text": "The|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim, being|strong=\"H1121\"* armed|strong=\"H5401\"* and|strong=\"H1121\"* carrying|strong=\"H7411\"* bows|strong=\"H7198\"*," + }, + { + "verseNum": 10, + "text": "They|strong=\"H3808\"* didn’t keep|strong=\"H8104\"* God|strong=\"H3808\"*’s covenant|strong=\"H1285\"*," + }, + { + "verseNum": 11, + "text": "They|strong=\"H7200\"* forgot|strong=\"H7911\"* his|strong=\"H7200\"* doings|strong=\"H5949\"*," + }, + { + "verseNum": 12, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* marvelous things|strong=\"H6382\"* in|strong=\"H6213\"* the|strong=\"H6213\"* sight|strong=\"H5048\"* of|strong=\"H7704\"* their|strong=\"H6213\"* fathers," + }, + { + "verseNum": 13, + "text": "He|strong=\"H4325\"* split|strong=\"H1234\"* the|strong=\"H5674\"* sea|strong=\"H3220\"*, and|strong=\"H4325\"* caused|strong=\"H5674\"* them|strong=\"H5674\"* to|strong=\"H4325\"* pass|strong=\"H5674\"* through|strong=\"H5674\"*." + }, + { + "verseNum": 14, + "text": "In|strong=\"H3605\"* the|strong=\"H3605\"* daytime|strong=\"H3119\"* he|strong=\"H3605\"* also|strong=\"H3915\"* led|strong=\"H5148\"* them|strong=\"H5148\"* with|strong=\"H3605\"* a|strong=\"H3068\"* cloud|strong=\"H6051\"*," + }, + { + "verseNum": 15, + "text": "He|strong=\"H4057\"* split|strong=\"H1234\"* rocks|strong=\"H6697\"* in|strong=\"H7227\"* the|strong=\"H8248\"* wilderness|strong=\"H4057\"*," + }, + { + "verseNum": 16, + "text": "He|strong=\"H3318\"* brought|strong=\"H3318\"* streams|strong=\"H5104\"* also|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4325\"* the|strong=\"H3318\"* rock|strong=\"H5553\"*," + }, + { + "verseNum": 17, + "text": "Yet|strong=\"H5750\"* they still|strong=\"H5750\"* went|strong=\"H3254\"* on to|strong=\"H3254\"* sin|strong=\"H2398\"* against|strong=\"H2398\"* him|strong=\"H2398\"*," + }, + { + "verseNum": 18, + "text": "They|strong=\"H5315\"* tempted|strong=\"H5254\"* God in|strong=\"H5315\"* their|strong=\"H7592\"* heart|strong=\"H3824\"*" + }, + { + "verseNum": 19, + "text": "Yes, they|strong=\"H6186\"* spoke|strong=\"H1696\"* against|strong=\"H1696\"* God." + }, + { + "verseNum": 20, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H5414\"* struck|strong=\"H5221\"* the|strong=\"H5414\"* rock|strong=\"H6697\"*, so|strong=\"H5414\"* that|strong=\"H5971\"* waters|strong=\"H4325\"* gushed|strong=\"H4325\"* out|strong=\"H5414\"*," + }, + { + "verseNum": 21, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* heard|strong=\"H8085\"*, and|strong=\"H3478\"* was|strong=\"H3068\"* angry|strong=\"H5674\"*." + }, + { + "verseNum": 22, + "text": "because|strong=\"H3588\"* they|strong=\"H3588\"* didn’t believe in|strong=\"H3808\"* God|strong=\"H3808\"*," + }, + { + "verseNum": 23, + "text": "Yet he|strong=\"H6680\"* commanded|strong=\"H6680\"* the|strong=\"H6680\"* skies|strong=\"H7834\"* above|strong=\"H4605\"*," + }, + { + "verseNum": 24, + "text": "He|strong=\"H5414\"* rained|strong=\"H4305\"* down|strong=\"H4305\"* manna|strong=\"H4478\"* on|strong=\"H5921\"* them|strong=\"H5414\"* to|strong=\"H5921\"* eat," + }, + { + "verseNum": 25, + "text": "Man ate the|strong=\"H7971\"* bread|strong=\"H3899\"* of|strong=\"H3899\"* angels." + }, + { + "verseNum": 26, + "text": "He|strong=\"H5797\"* caused the|strong=\"H5090\"* east|strong=\"H6921\"* wind|strong=\"H6921\"* to|strong=\"H8064\"* blow|strong=\"H5265\"* in|strong=\"H8064\"* the|strong=\"H5090\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 27, + "text": "He|strong=\"H5921\"* also rained|strong=\"H4305\"* meat|strong=\"H7607\"* on|strong=\"H5921\"* them|strong=\"H5921\"* as|strong=\"H5921\"* the|strong=\"H5921\"* dust|strong=\"H6083\"*," + }, + { + "verseNum": 28, + "text": "He|strong=\"H7130\"* let them|strong=\"H5439\"* fall|strong=\"H5307\"* in|strong=\"H7130\"* the|strong=\"H5439\"* middle|strong=\"H7130\"* of|strong=\"H4264\"* their|strong=\"H7130\"* camp|strong=\"H4264\"*," + }, + { + "verseNum": 29, + "text": "So|strong=\"H3966\"* they|strong=\"H1992\"* ate, and|strong=\"H3966\"* were|strong=\"H1992\"* well|strong=\"H3966\"* filled|strong=\"H7646\"*." + }, + { + "verseNum": 30, + "text": "They|strong=\"H3808\"* didn’t turn from|strong=\"H3808\"* their|strong=\"H3808\"* cravings." + }, + { + "verseNum": 31, + "text": "when|strong=\"H2026\"* the|strong=\"H5927\"* anger of|strong=\"H5927\"* God went|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5927\"* them|strong=\"H2026\"*," + }, + { + "verseNum": 32, + "text": "For|strong=\"H3605\"* all|strong=\"H3605\"* this|strong=\"H2063\"* they|strong=\"H3808\"* still|strong=\"H5750\"* sinned|strong=\"H2398\"*," + }, + { + "verseNum": 33, + "text": "Therefore he|strong=\"H3117\"* consumed|strong=\"H3615\"* their|strong=\"H3117\"* days|strong=\"H3117\"* in|strong=\"H8141\"* vanity|strong=\"H1892\"*," + }, + { + "verseNum": 34, + "text": "When|strong=\"H7725\"* he|strong=\"H7725\"* killed|strong=\"H2026\"* them|strong=\"H7725\"*, then|strong=\"H7725\"* they inquired|strong=\"H1875\"* after|strong=\"H1875\"* him|strong=\"H7725\"*." + }, + { + "verseNum": 35, + "text": "They|strong=\"H3588\"* remembered|strong=\"H2142\"* that|strong=\"H3588\"* God|strong=\"H6697\"* was their|strong=\"H3588\"* rock|strong=\"H6697\"*," + }, + { + "verseNum": 36, + "text": "But they|strong=\"H6310\"* flattered him with|strong=\"H6310\"* their|strong=\"H3956\"* mouth|strong=\"H6310\"*," + }, + { + "verseNum": 37, + "text": "For|strong=\"H3559\"* their|strong=\"H3559\"* heart|strong=\"H3820\"* was|strong=\"H3820\"* not|strong=\"H3808\"* right|strong=\"H3559\"* with|strong=\"H5973\"* him|strong=\"H5973\"*," + }, + { + "verseNum": 38, + "text": "But|strong=\"H3808\"* he|strong=\"H1931\"*, being merciful|strong=\"H7349\"*, forgave|strong=\"H3722\"* iniquity|strong=\"H5771\"*, and|strong=\"H7725\"* didn’t destroy|strong=\"H7843\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 39, + "text": "He|strong=\"H3588\"* remembered|strong=\"H2142\"* that|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H1992\"* but|strong=\"H3588\"* flesh|strong=\"H1320\"*," + }, + { + "verseNum": 40, + "text": "How|strong=\"H4100\"* often|strong=\"H4100\"* they|strong=\"H4100\"* rebelled|strong=\"H4784\"* against|strong=\"H4784\"* him|strong=\"H6087\"* in|strong=\"H6087\"* the|strong=\"H4100\"* wilderness|strong=\"H4057\"*," + }, + { + "verseNum": 41, + "text": "They|strong=\"H3478\"* turned|strong=\"H7725\"* again|strong=\"H7725\"* and|strong=\"H3478\"* tempted|strong=\"H5254\"* God," + }, + { + "verseNum": 42, + "text": "They|strong=\"H3117\"* didn’t remember|strong=\"H2142\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*," + }, + { + "verseNum": 43, + "text": "how he|strong=\"H7760\"* set|strong=\"H7760\"* his|strong=\"H7760\"* signs in|strong=\"H4714\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 44, + "text": "he|strong=\"H1818\"* turned|strong=\"H2015\"* their|strong=\"H2015\"* rivers|strong=\"H2975\"* into|strong=\"H2015\"* blood|strong=\"H1818\"*," + }, + { + "verseNum": 45, + "text": "He|strong=\"H7971\"* sent|strong=\"H7971\"* among them|strong=\"H7971\"* swarms|strong=\"H6157\"* of|strong=\"H6157\"* flies|strong=\"H6157\"*, which|strong=\"H6854\"* devoured them|strong=\"H7971\"*;" + }, + { + "verseNum": 46, + "text": "He|strong=\"H5414\"* also gave|strong=\"H5414\"* their|strong=\"H5414\"* increase|strong=\"H2981\"* to|strong=\"H5414\"* the|strong=\"H5414\"* caterpillar|strong=\"H2625\"*," + }, + { + "verseNum": 47, + "text": "He destroyed|strong=\"H2026\"* their|strong=\"H2026\"* vines|strong=\"H1612\"* with|strong=\"H8256\"* hail|strong=\"H1259\"*," + }, + { + "verseNum": 48, + "text": "He also|strong=\"H1259\"* gave|strong=\"H5462\"* over|strong=\"H5462\"* their|strong=\"H5462\"* livestock|strong=\"H4735\"* to|strong=\"H5462\"* the|strong=\"H5462\"* hail|strong=\"H1259\"*," + }, + { + "verseNum": 49, + "text": "He|strong=\"H7971\"* threw on|strong=\"H7971\"* them|strong=\"H7971\"* the|strong=\"H7971\"* fierceness|strong=\"H2740\"* of|strong=\"H4397\"* his|strong=\"H7971\"* anger|strong=\"H5678\"*," + }, + { + "verseNum": 50, + "text": "He|strong=\"H3808\"* made|strong=\"H6424\"* a|strong=\"H3068\"* path|strong=\"H5410\"* for|strong=\"H5315\"* his|strong=\"H2820\"* anger." + }, + { + "verseNum": 51, + "text": "and|strong=\"H4714\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* in|strong=\"H4714\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 52, + "text": "But|strong=\"H5971\"* he|strong=\"H5971\"* led|strong=\"H5090\"* out|strong=\"H5265\"* his|strong=\"H5971\"* own|strong=\"H5971\"* people|strong=\"H5971\"* like|strong=\"H4057\"* sheep|strong=\"H6629\"*," + }, + { + "verseNum": 53, + "text": "He|strong=\"H3808\"* led|strong=\"H5148\"* them|strong=\"H5148\"* safely, so|strong=\"H3808\"* that|strong=\"H3808\"* they|strong=\"H3808\"* weren’t afraid|strong=\"H6342\"*," + }, + { + "verseNum": 54, + "text": "He|strong=\"H2088\"* brought them|strong=\"H2088\"* to|strong=\"H2022\"* the|strong=\"H7069\"* border|strong=\"H1366\"* of|strong=\"H2022\"* his sanctuary|strong=\"H6944\"*," + }, + { + "verseNum": 55, + "text": "He|strong=\"H3478\"* also|strong=\"H3478\"* drove|strong=\"H1644\"* out|strong=\"H1644\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* before|strong=\"H6440\"* them|strong=\"H6440\"*," + }, + { + "verseNum": 56, + "text": "Yet|strong=\"H3808\"* they|strong=\"H3808\"* tempted|strong=\"H5254\"* and|strong=\"H8104\"* rebelled|strong=\"H4784\"* against|strong=\"H4784\"* the|strong=\"H8104\"* Most|strong=\"H5945\"* High|strong=\"H5945\"* God|strong=\"H3808\"*," + }, + { + "verseNum": 57, + "text": "but turned|strong=\"H2015\"* back|strong=\"H5472\"*, and|strong=\"H7198\"* dealt treacherously like|strong=\"H2015\"* their|strong=\"H2015\"* fathers." + }, + { + "verseNum": 58, + "text": "For|strong=\"H7065\"* they provoked|strong=\"H3707\"* him|strong=\"H7065\"* to|strong=\"H1116\"* anger|strong=\"H3707\"* with|strong=\"H7065\"* their high|strong=\"H1116\"* places|strong=\"H1116\"*," + }, + { + "verseNum": 59, + "text": "When|strong=\"H8085\"* God heard|strong=\"H8085\"* this|strong=\"H5674\"*, he|strong=\"H3478\"* was|strong=\"H3478\"* angry|strong=\"H5674\"*," + }, + { + "verseNum": 60, + "text": "so that|strong=\"H4908\"* he abandoned|strong=\"H5203\"* the|strong=\"H5203\"* tent of|strong=\"H4908\"* Shiloh|strong=\"H7887\"*," + }, + { + "verseNum": 61, + "text": "and|strong=\"H3027\"* delivered|strong=\"H5414\"* his|strong=\"H5414\"* strength|strong=\"H5797\"* into|strong=\"H3027\"* captivity|strong=\"H7628\"*," + }, + { + "verseNum": 62, + "text": "He|strong=\"H5971\"* also|strong=\"H5971\"* gave|strong=\"H5462\"* his|strong=\"H5674\"* people|strong=\"H5971\"* over|strong=\"H5674\"* to|strong=\"H5674\"* the|strong=\"H5674\"* sword|strong=\"H2719\"*," + }, + { + "verseNum": 63, + "text": "Fire devoured their|strong=\"H3808\"* young men." + }, + { + "verseNum": 64, + "text": "Their|strong=\"H5307\"* priests|strong=\"H3548\"* fell|strong=\"H5307\"* by|strong=\"H3808\"* the|strong=\"H3548\"* sword|strong=\"H2719\"*," + }, + { + "verseNum": 65, + "text": "Then the Lord awakened|strong=\"H3364\"* as|strong=\"H3364\"* one|strong=\"H1368\"* out|strong=\"H7442\"* of|strong=\"H1368\"* sleep|strong=\"H3463\"*," + }, + { + "verseNum": 66, + "text": "He|strong=\"H5414\"* struck|strong=\"H5221\"* his|strong=\"H5414\"* adversaries|strong=\"H6862\"* backward." + }, + { + "verseNum": 67, + "text": "Moreover he|strong=\"H3808\"* rejected|strong=\"H3988\"* the|strong=\"H3808\"* tent of|strong=\"H7626\"* Joseph|strong=\"H3130\"*," + }, + { + "verseNum": 68, + "text": "But chose the|strong=\"H3063\"* tribe|strong=\"H7626\"* of|strong=\"H7626\"* Judah|strong=\"H3063\"*," + }, + { + "verseNum": 69, + "text": "He|strong=\"H1129\"* built|strong=\"H1129\"* his|strong=\"H1129\"* sanctuary|strong=\"H4720\"* like|strong=\"H3644\"* the|strong=\"H1129\"* heights|strong=\"H7311\"*," + }, + { + "verseNum": 70, + "text": "He|strong=\"H1732\"* also|strong=\"H1732\"* chose David|strong=\"H1732\"* his|strong=\"H3947\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 71, + "text": "from|strong=\"H3478\"* following the|strong=\"H7462\"* ewes|strong=\"H5763\"* that|strong=\"H5971\"* have|strong=\"H5971\"* their|strong=\"H3290\"* young|strong=\"H5763\"*," + }, + { + "verseNum": 72, + "text": "So he|strong=\"H8394\"* was|strong=\"H3824\"* their|strong=\"H7462\"* shepherd|strong=\"H7462\"* according to|strong=\"H3824\"* the|strong=\"H7462\"* integrity|strong=\"H8537\"* of|strong=\"H3709\"* his|strong=\"H7462\"* heart|strong=\"H3824\"*," + } + ] + }, + { + "chapterNum": 79, + "verses": [ + { + "verseNum": 1, + "text": "God, the|strong=\"H7760\"* nations|strong=\"H1471\"* have|strong=\"H1471\"* come into|strong=\"H7760\"* your|strong=\"H7760\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H5414\"* have|strong=\"H5650\"* given|strong=\"H5414\"* the|strong=\"H5414\"* dead|strong=\"H5038\"* bodies|strong=\"H5038\"* of|strong=\"H5650\"* your|strong=\"H5414\"* servants|strong=\"H5650\"* to|strong=\"H5414\"* be|strong=\"H5414\"* food|strong=\"H3978\"* for|strong=\"H5650\"* the|strong=\"H5414\"* birds|strong=\"H5775\"* of|strong=\"H5650\"* the|strong=\"H5414\"* sky|strong=\"H8064\"*," + }, + { + "verseNum": 3, + "text": "They|strong=\"H3389\"* have|strong=\"H3389\"* shed|strong=\"H8210\"* their|strong=\"H5439\"* blood|strong=\"H1818\"* like|strong=\"H8210\"* water|strong=\"H4325\"* around|strong=\"H5439\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 4, + "text": "We have|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* to|strong=\"H1961\"* our|strong=\"H1961\"* neighbors|strong=\"H7934\"*," + }, + { + "verseNum": 5, + "text": "How|strong=\"H4100\"* long|strong=\"H5704\"*, Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 6, + "text": "Pour|strong=\"H8210\"* out|strong=\"H8210\"* your|strong=\"H5921\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* that|strong=\"H3045\"* don’t know|strong=\"H3045\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 7, + "text": "for|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3588\"* devoured Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 8, + "text": "Don’t hold|strong=\"H2142\"* the|strong=\"H3588\"* iniquities|strong=\"H5771\"* of|strong=\"H5771\"* our|strong=\"H3588\"* forefathers|strong=\"H7223\"* against|strong=\"H3966\"* us|strong=\"H3588\"*." + }, + { + "verseNum": 9, + "text": "Help|strong=\"H5826\"* us|strong=\"H5921\"*, God of|strong=\"H1697\"* our|strong=\"H5921\"* salvation|strong=\"H3468\"*, for|strong=\"H5921\"* the|strong=\"H5921\"* glory|strong=\"H3519\"* of|strong=\"H1697\"* your|strong=\"H5921\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 10, + "text": "Why|strong=\"H4100\"* should|strong=\"H4100\"* the|strong=\"H3045\"* nations|strong=\"H1471\"* say, “Where|strong=\"H4100\"* is|strong=\"H4100\"* their|strong=\"H3045\"* God?”" + }, + { + "verseNum": 11, + "text": "Let|strong=\"H3498\"* the|strong=\"H6440\"* sighing of|strong=\"H1121\"* the|strong=\"H6440\"* prisoner come before|strong=\"H6440\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 12, + "text": "Pay|strong=\"H7725\"* back|strong=\"H7725\"* to|strong=\"H7725\"* our|strong=\"H7725\"* neighbors|strong=\"H7934\"* seven|strong=\"H7659\"* times|strong=\"H7659\"* into|strong=\"H7725\"* their|strong=\"H7725\"* bosom|strong=\"H2436\"*" + }, + { + "verseNum": 13, + "text": "So|strong=\"H5608\"* we|strong=\"H3068\"*, your|strong=\"H3034\"* people|strong=\"H5971\"* and|strong=\"H5971\"* sheep|strong=\"H6629\"* of|strong=\"H5971\"* your|strong=\"H3034\"* pasture|strong=\"H4830\"*," + } + ] + }, + { + "chapterNum": 80, + "verses": [ + { + "verseNum": 1, + "text": "Hear us, Shepherd of|strong=\"H4210\"* Israel," + }, + { + "verseNum": 2, + "text": "Before|strong=\"H3427\"* Ephraim, Benjamin, and|strong=\"H3478\"* Manasseh, stir up|strong=\"H7462\"* your|strong=\"H7462\"* might|strong=\"H3478\"*!" + }, + { + "verseNum": 3, + "text": "Turn us|strong=\"H6440\"* again|strong=\"H3212\"*, God." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* God of|strong=\"H6440\"* Armies," + }, + { + "verseNum": 5, + "text": "You|strong=\"H5704\"* have|strong=\"H3068\"* fed them|strong=\"H5704\"* with|strong=\"H3068\"* the|strong=\"H3068\"* bread of|strong=\"H3068\"* tears," + }, + { + "verseNum": 6, + "text": "You|strong=\"H8248\"* make|strong=\"H8248\"* us|strong=\"H8248\"* a|strong=\"H3068\"* source of|strong=\"H3899\"* contention to|strong=\"H3899\"* our|strong=\"H8248\"* neighbors." + }, + { + "verseNum": 7, + "text": "Turn|strong=\"H7760\"* us|strong=\"H7760\"* again, God of|strong=\"H7760\"* Armies." + }, + { + "verseNum": 8, + "text": "You|strong=\"H6440\"* brought|strong=\"H7725\"* a|strong=\"H3068\"* vine out|strong=\"H6440\"* of|strong=\"H6440\"* Egypt." + }, + { + "verseNum": 9, + "text": "You|strong=\"H1471\"* cleared the|strong=\"H1644\"* ground for|strong=\"H4714\"* it|strong=\"H1644\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H6440\"* mountains were|strong=\"H6440\"* covered|strong=\"H4390\"* with|strong=\"H4390\"* its|strong=\"H4390\"* shadow." + }, + { + "verseNum": 11, + "text": "It|strong=\"H3680\"* sent out its|strong=\"H3680\"* branches|strong=\"H6057\"* to|strong=\"H2022\"* the|strong=\"H3680\"* sea," + }, + { + "verseNum": 12, + "text": "Why have|strong=\"H5104\"* you|strong=\"H7971\"* broken down|strong=\"H7971\"* its|strong=\"H3220\"* walls," + }, + { + "verseNum": 13, + "text": "The|strong=\"H3605\"* boar out|strong=\"H6555\"* of|strong=\"H1870\"* the|strong=\"H3605\"* wood ravages it|strong=\"H5674\"*." + }, + { + "verseNum": 14, + "text": "Turn again, we|strong=\"H3068\"* beg you, God of|strong=\"H7704\"* Armies." + }, + { + "verseNum": 15, + "text": "the|strong=\"H7200\"* stock which|strong=\"H6635\"* your|strong=\"H7200\"* right|strong=\"H5027\"* hand planted," + }, + { + "verseNum": 16, + "text": "It|strong=\"H5921\"*’s burned with|strong=\"H5921\"* fire." + }, + { + "verseNum": 17, + "text": "Let your|strong=\"H6440\"* hand be|strong=\"H6440\"* on|strong=\"H6440\"* the|strong=\"H6440\"* man|strong=\"H6440\"* of|strong=\"H6440\"* your|strong=\"H6440\"* right hand," + }, + { + "verseNum": 18, + "text": "So|strong=\"H1961\"* we|strong=\"H3068\"* will|strong=\"H1961\"* not|strong=\"H1961\"* turn|strong=\"H1961\"* away from|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "Turn|strong=\"H5472\"* us|strong=\"H2421\"* again, Yahweh|strong=\"H3068\"* God|strong=\"H3808\"* of|strong=\"H8034\"* Armies|strong=\"H3808\"*." + } + ] + }, + { + "chapterNum": 81, + "verses": [ + { + "verseNum": 1, + "text": "Sing aloud to|strong=\"H5921\"* God, our|strong=\"H5921\"* strength!" + }, + { + "verseNum": 2, + "text": "Raise|strong=\"H7321\"* a|strong=\"H3068\"* song, and|strong=\"H3290\"* bring here the|strong=\"H7321\"* tambourine," + }, + { + "verseNum": 3, + "text": "Blow the|strong=\"H5414\"* trumpet at|strong=\"H5414\"* the|strong=\"H5414\"* New Moon," + }, + { + "verseNum": 4, + "text": "For|strong=\"H3117\"* it|strong=\"H3117\"* is|strong=\"H3117\"* a|strong=\"H3068\"* statute for|strong=\"H3117\"* Israel," + }, + { + "verseNum": 5, + "text": "He|strong=\"H1931\"* appointed|strong=\"H2706\"* it|strong=\"H1931\"* in|strong=\"H3478\"* Joseph for|strong=\"H3588\"* a|strong=\"H3068\"* covenant," + }, + { + "verseNum": 6, + "text": "“I|strong=\"H5921\"* removed|strong=\"H3318\"* his|strong=\"H7760\"* shoulder from|strong=\"H3318\"* the|strong=\"H5921\"* burden." + }, + { + "verseNum": 7, + "text": "You|strong=\"H3709\"* called in|strong=\"H5493\"* trouble, and|strong=\"H3709\"* I delivered|strong=\"H5674\"* you|strong=\"H3709\"*." + }, + { + "verseNum": 8, + "text": "“Hear|strong=\"H6030\"*, my|strong=\"H5921\"* people, and|strong=\"H6030\"* I|strong=\"H5921\"* will|strong=\"H4325\"* testify|strong=\"H6030\"* to|strong=\"H5921\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 9, + "text": "There shall|strong=\"H5971\"* be|strong=\"H3478\"* no|strong=\"H3478\"* strange god in|strong=\"H3478\"* you|strong=\"H5971\"*," + }, + { + "verseNum": 10, + "text": "I|strong=\"H3808\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*, your|strong=\"H1961\"* God|strong=\"H3808\"*," + }, + { + "verseNum": 11, + "text": "But|strong=\"H3068\"* my|strong=\"H3068\"* people didn’t listen to|strong=\"H3068\"* my|strong=\"H3068\"* voice." + }, + { + "verseNum": 12, + "text": "So|strong=\"H3808\"* I|strong=\"H3808\"* let|strong=\"H3808\"* them|strong=\"H8085\"* go|strong=\"H5971\"* after the|strong=\"H8085\"* stubbornness of|strong=\"H6963\"* their|strong=\"H8085\"* hearts," + }, + { + "verseNum": 13, + "text": "Oh that|strong=\"H3820\"* my|strong=\"H7971\"* people|strong=\"H3820\"* would listen to|strong=\"H3212\"* me|strong=\"H7971\"*," + }, + { + "verseNum": 14, + "text": "I|strong=\"H8085\"* would|strong=\"H3478\"* soon subdue their|strong=\"H8085\"* enemies," + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* haters of|strong=\"H3027\"* Yahweh|strong=\"H3068\"* would|strong=\"H6862\"* cringe before|strong=\"H5921\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 16, + "text": "But|strong=\"H1961\"* he|strong=\"H3068\"* would|strong=\"H3068\"* have|strong=\"H1961\"* also|strong=\"H3068\"* fed them|strong=\"H8130\"* with|strong=\"H3068\"* the|strong=\"H3068\"* finest of|strong=\"H3068\"* the|strong=\"H3068\"* wheat." + } + ] + }, + { + "chapterNum": 82, + "verses": [ + { + "verseNum": 1, + "text": "God presides in|strong=\"H7130\"* the|strong=\"H8199\"* great assembly|strong=\"H5712\"*." + }, + { + "verseNum": 2, + "text": "“How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H7563\"* you|strong=\"H6440\"* judge|strong=\"H8199\"* unjustly|strong=\"H5766\"*," + }, + { + "verseNum": 3, + "text": "“Defend|strong=\"H8199\"* the|strong=\"H8199\"* weak|strong=\"H1800\"*, the|strong=\"H8199\"* poor|strong=\"H6041\"*, and|strong=\"H6041\"* the|strong=\"H8199\"* fatherless|strong=\"H3490\"*." + }, + { + "verseNum": 4, + "text": "Rescue|strong=\"H5337\"* the|strong=\"H3027\"* weak|strong=\"H1800\"* and|strong=\"H3027\"* needy|strong=\"H1800\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3808\"* don’t know|strong=\"H3045\"*, neither|strong=\"H3808\"* do|strong=\"H3605\"* they|strong=\"H3808\"* understand|strong=\"H3045\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H1121\"* said, “You|strong=\"H3605\"* are|strong=\"H1121\"* gods," + }, + { + "verseNum": 7, + "text": "Nevertheless you shall|strong=\"H8269\"* die|strong=\"H4191\"* like|strong=\"H4191\"* men|strong=\"H8269\"*," + }, + { + "verseNum": 8, + "text": "Arise|strong=\"H6965\"*, God, judge|strong=\"H8199\"* the|strong=\"H3605\"* earth," + } + ] + }, + { + "chapterNum": 83, + "verses": [ + { + "verseNum": 1, + "text": "God, don’t keep silent." + }, + { + "verseNum": 2, + "text": "For|strong=\"H8252\"*, behold, your enemies are stirred up." + }, + { + "verseNum": 3, + "text": "They|strong=\"H3588\"* conspire with|strong=\"H7218\"* cunning against|strong=\"H8130\"* your|strong=\"H5375\"* people." + }, + { + "verseNum": 4, + "text": "“Come|strong=\"H5971\"*,” they|strong=\"H5921\"* say, “let’s destroy them|strong=\"H5921\"* as|strong=\"H5971\"* a|strong=\"H3068\"* nation|strong=\"H5971\"*," + }, + { + "verseNum": 5, + "text": "For|strong=\"H8034\"* they|strong=\"H3808\"* have|strong=\"H1471\"* conspired together with|strong=\"H3212\"* one|strong=\"H3808\"* mind|strong=\"H2142\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* tents of|strong=\"H5921\"* Edom and|strong=\"H1285\"* the|strong=\"H5921\"* Ishmaelites;" + }, + { + "verseNum": 7, + "text": "Gebal, Ammon, and|strong=\"H4124\"* Amalek;" + }, + { + "verseNum": 8, + "text": "Assyria also is|strong=\"H3427\"* joined with|strong=\"H5973\"* them|strong=\"H3427\"*." + }, + { + "verseNum": 9, + "text": "Do to|strong=\"H1961\"* them|strong=\"H1961\"* as|strong=\"H1961\"* you|strong=\"H5973\"* did|strong=\"H1571\"* to|strong=\"H1961\"* Midian," + }, + { + "verseNum": 10, + "text": "who|strong=\"H1992\"* perished at|strong=\"H6213\"* Endor," + }, + { + "verseNum": 11, + "text": "Make their|strong=\"H1961\"* nobles like|strong=\"H1961\"* Oreb and|strong=\"H1961\"* Zeeb," + }, + { + "verseNum": 12, + "text": "who|strong=\"H3605\"* said, “Let’s take|strong=\"H7896\"* possession of|strong=\"H3605\"* God’s pasture lands.”" + }, + { + "verseNum": 13, + "text": "My|strong=\"H3423\"* God, make them|strong=\"H3423\"* like tumbleweed," + }, + { + "verseNum": 14, + "text": "As|strong=\"H6440\"* the|strong=\"H6440\"* fire that|strong=\"H7307\"* burns the|strong=\"H6440\"* forest," + }, + { + "verseNum": 15, + "text": "so pursue them|strong=\"H3857\"* with|strong=\"H1197\"* your tempest," + }, + { + "verseNum": 16, + "text": "Fill their|strong=\"H3651\"* faces with|strong=\"H3651\"* confusion," + }, + { + "verseNum": 17, + "text": "Let them|strong=\"H6440\"* be|strong=\"H3068\"* disappointed and|strong=\"H3068\"* dismayed forever." + }, + { + "verseNum": 18, + "text": "that|strong=\"H5704\"* they|strong=\"H5704\"* may know that|strong=\"H5704\"* you|strong=\"H5704\"* alone, whose name is Yahweh|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 84, + "verses": [ + { + "verseNum": 1, + "text": "How lovely are|strong=\"H1121\"* your|strong=\"H5921\"* dwellings," + }, + { + "verseNum": 2, + "text": "My|strong=\"H3068\"* soul longs, and|strong=\"H3068\"* even|strong=\"H3068\"* faints for|strong=\"H3068\"* the|strong=\"H3068\"* courts of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "Yes|strong=\"H1571\"*, the|strong=\"H3068\"* sparrow has|strong=\"H3068\"* found|strong=\"H1571\"* a|strong=\"H3068\"* home|strong=\"H3068\"*," + }, + { + "verseNum": 4, + "text": "Blessed are|strong=\"H3068\"* those who|strong=\"H3068\"* dwell in|strong=\"H3068\"* your|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 5, + "text": "Blessed are|strong=\"H1004\"* those|strong=\"H3427\"* whose strength is|strong=\"H1004\"* in|strong=\"H3427\"* you|strong=\"H1004\"*," + }, + { + "verseNum": 6, + "text": "Passing through the|strong=\"H5797\"* valley of|strong=\"H3824\"* Weeping, they|strong=\"H3824\"* make it a|strong=\"H3068\"* place of|strong=\"H3824\"* springs." + }, + { + "verseNum": 7, + "text": "They|strong=\"H1571\"* go|strong=\"H5674\"* from|strong=\"H5674\"* strength to|strong=\"H5674\"* strength." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"*, God of|strong=\"H2428\"* Armies|strong=\"H2428\"*, hear my|strong=\"H7200\"* prayer." + }, + { + "verseNum": 9, + "text": "Behold, God|strong=\"H3068\"* our|strong=\"H3068\"* shield," + }, + { + "verseNum": 10, + "text": "For|strong=\"H6440\"* a|strong=\"H3068\"* day in|strong=\"H6440\"* your|strong=\"H6440\"* courts is|strong=\"H6440\"* better than|strong=\"H6440\"* a|strong=\"H3068\"* thousand." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* God is|strong=\"H3117\"* a|strong=\"H3068\"* sun and|strong=\"H3117\"* a|strong=\"H3068\"* shield." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H3808\"*," + } + ] + }, + { + "chapterNum": 85, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, you have|strong=\"H1121\"* been favorable to|strong=\"H1121\"* your|strong=\"H1121\"* land." + }, + { + "verseNum": 2, + "text": "You|strong=\"H7725\"* have|strong=\"H3068\"* forgiven the|strong=\"H3068\"* iniquity of|strong=\"H3068\"* your|strong=\"H3068\"* people." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3605\"* have|strong=\"H5971\"* taken|strong=\"H5375\"* away|strong=\"H5375\"* all|strong=\"H3605\"* your|strong=\"H3605\"* wrath." + }, + { + "verseNum": 4, + "text": "Turn|strong=\"H7725\"* us|strong=\"H7725\"*, God of|strong=\"H3605\"* our|strong=\"H3605\"* salvation," + }, + { + "verseNum": 5, + "text": "Will|strong=\"H7725\"* you|strong=\"H7725\"* be|strong=\"H7725\"* angry|strong=\"H3708\"* with|strong=\"H5973\"* us|strong=\"H7725\"* forever?" + }, + { + "verseNum": 6, + "text": "Won’t you|strong=\"H1755\"* revive us again," + }, + { + "verseNum": 7, + "text": "Show us|strong=\"H7725\"* your|strong=\"H7725\"* loving kindness, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5414\"* will|strong=\"H3068\"* hear what|strong=\"H7200\"* God|strong=\"H3068\"*, Yahweh|strong=\"H3068\"*, will|strong=\"H3068\"* speak," + }, + { + "verseNum": 9, + "text": "Surely|strong=\"H3588\"* his|strong=\"H3068\"* salvation is|strong=\"H3068\"* near those|strong=\"H8085\"* who|strong=\"H5971\"* fear him|strong=\"H7725\"*," + }, + { + "verseNum": 10, + "text": "Mercy and|strong=\"H3519\"* truth meet together." + }, + { + "verseNum": 11, + "text": "Truth springs out of|strong=\"H2617\"* the|strong=\"H7965\"* earth." + }, + { + "verseNum": 12, + "text": "Yes, Yahweh|strong=\"H3068\"* will|strong=\"H8064\"* give that|strong=\"H8064\"* which is|strong=\"H6664\"* good." + }, + { + "verseNum": 13, + "text": "Righteousness goes before him|strong=\"H5414\"*," + } + ] + }, + { + "chapterNum": 86, + "verses": [ + { + "verseNum": 1, + "text": "Hear|strong=\"H6030\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* answer|strong=\"H6030\"* me|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "Preserve|strong=\"H8104\"* my|strong=\"H8104\"* soul|strong=\"H5315\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am godly|strong=\"H2623\"*." + }, + { + "verseNum": 3, + "text": "Be|strong=\"H3117\"* merciful|strong=\"H2603\"* to|strong=\"H3117\"* me|strong=\"H7121\"*, Lord," + }, + { + "verseNum": 4, + "text": "Bring|strong=\"H5375\"* joy|strong=\"H8055\"* to|strong=\"H5650\"* the|strong=\"H3588\"* soul|strong=\"H5315\"* of|strong=\"H5650\"* your|strong=\"H5375\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"*, Lord|strong=\"H2617\"*, are|strong=\"H7227\"* good|strong=\"H2896\"*, and|strong=\"H2617\"* ready|strong=\"H2896\"* to|strong=\"H7121\"* forgive|strong=\"H5546\"*," + }, + { + "verseNum": 6, + "text": "Hear|strong=\"H7181\"*, Yahweh|strong=\"H3068\"*, my|strong=\"H3068\"* prayer|strong=\"H8605\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H3117\"* the|strong=\"H3588\"* day|strong=\"H3117\"* of|strong=\"H3117\"* my|strong=\"H3588\"* trouble|strong=\"H6869\"* I|strong=\"H3588\"* will|strong=\"H3117\"* call|strong=\"H7121\"* on|strong=\"H3117\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 8, + "text": "There is|strong=\"H4639\"* no one like|strong=\"H3644\"* you|strong=\"H3644\"* among the|strong=\"H3644\"* gods, Lord," + }, + { + "verseNum": 9, + "text": "All|strong=\"H3605\"* nations|strong=\"H1471\"* you|strong=\"H6440\"* have|strong=\"H1471\"* made|strong=\"H6213\"* will|strong=\"H1471\"* come and|strong=\"H6440\"* worship|strong=\"H7812\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, Lord." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H6213\"* great|strong=\"H1419\"*, and|strong=\"H1419\"* do|strong=\"H6213\"* wondrous|strong=\"H6381\"* things|strong=\"H1419\"*." + }, + { + "verseNum": 11, + "text": "Teach|strong=\"H3384\"* me|strong=\"H3372\"* your|strong=\"H3068\"* way|strong=\"H1870\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H3605\"* will|strong=\"H3824\"* praise|strong=\"H3034\"* you|strong=\"H3605\"*, Lord my|strong=\"H3605\"* God, with|strong=\"H3513\"* my|strong=\"H3605\"* whole|strong=\"H3605\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* your|strong=\"H5921\"* loving kindness|strong=\"H2617\"* is|strong=\"H2617\"* great|strong=\"H1419\"* toward|strong=\"H5921\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 14, + "text": "God|strong=\"H3808\"*, the|strong=\"H5921\"* proud|strong=\"H2086\"* have|strong=\"H2086\"* risen|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H7227\"* you, Lord|strong=\"H2617\"*, are|strong=\"H7227\"* a|strong=\"H3068\"* merciful|strong=\"H7349\"* and|strong=\"H2617\"* gracious|strong=\"H2587\"* God," + }, + { + "verseNum": 16, + "text": "Turn|strong=\"H6437\"* to|strong=\"H5414\"* me|strong=\"H5414\"*, and|strong=\"H1121\"* have|strong=\"H1121\"* mercy|strong=\"H2603\"* on|strong=\"H5414\"* me|strong=\"H5414\"*!" + }, + { + "verseNum": 17, + "text": "Show|strong=\"H7200\"* me|strong=\"H7200\"* a|strong=\"H3068\"* sign of|strong=\"H3068\"* your|strong=\"H3068\"* goodness|strong=\"H2896\"*," + } + ] + }, + { + "chapterNum": 87, + "verses": [ + { + "verseNum": 1, + "text": "His|strong=\"H7141\"* foundation|strong=\"H3248\"* is|strong=\"H1121\"* in|strong=\"H1121\"* the|strong=\"H1121\"* holy|strong=\"H6944\"* mountains|strong=\"H2042\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* loves the|strong=\"H3605\"* gates|strong=\"H8179\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"* more than|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* dwellings|strong=\"H4908\"* of|strong=\"H3068\"* Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 3, + "text": "Glorious|strong=\"H3513\"* things|strong=\"H3513\"* are|strong=\"H5892\"* spoken|strong=\"H1696\"* about|strong=\"H1696\"* you|strong=\"H1696\"*, city|strong=\"H5892\"* of|strong=\"H5892\"* God. \\+w Selah|strong=\"H5542\"\\+w*.*" + }, + { + "verseNum": 4, + "text": "I|strong=\"H2009\"* will|strong=\"H2088\"* record|strong=\"H2142\"* Rahab|strong=\"H7294\"*+ 87:4 Rahab is a reference to Egypt.* and|strong=\"H8033\"* Babylon among|strong=\"H5973\"* those|strong=\"H2088\"* who|strong=\"H2088\"* acknowledge|strong=\"H3045\"* me|strong=\"H3205\"*." + }, + { + "verseNum": 5, + "text": "Yes, of|strong=\"H3205\"* Zion|strong=\"H6726\"* it|strong=\"H1931\"* will|strong=\"H1931\"* be|strong=\"H6726\"* said, “This|strong=\"H1931\"* one|strong=\"H1931\"* and|strong=\"H6726\"* that|strong=\"H1931\"* one|strong=\"H1931\"* was|strong=\"H1931\"* born|strong=\"H3205\"* in|strong=\"H3559\"* her|strong=\"H3559\"*;”" + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* count|strong=\"H5608\"*, when|strong=\"H3068\"* he|strong=\"H8033\"* writes|strong=\"H3789\"* up|strong=\"H3205\"* the|strong=\"H3205\"* peoples|strong=\"H5971\"*," + }, + { + "verseNum": 7, + "text": "Those|strong=\"H3605\"* who|strong=\"H3605\"* sing|strong=\"H7891\"* as|strong=\"H3605\"* well|strong=\"H4599\"* as|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* dance say," + } + ] + }, + { + "chapterNum": 88, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God of|strong=\"H1121\"* my|strong=\"H5921\"* salvation," + }, + { + "verseNum": 2, + "text": "Let my|strong=\"H3068\"* prayer enter into|strong=\"H3915\"* your|strong=\"H3068\"* presence|strong=\"H5048\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H6440\"* my|strong=\"H5186\"* soul is|strong=\"H6440\"* full of|strong=\"H6440\"* troubles." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3588\"* am counted among those|strong=\"H5315\"* who|strong=\"H5315\"* go down|strong=\"H5060\"* into|strong=\"H2416\"* the|strong=\"H3588\"* pit|strong=\"H7585\"*." + }, + { + "verseNum": 5, + "text": "set apart among|strong=\"H5973\"* the|strong=\"H1961\"* dead," + }, + { + "verseNum": 6, + "text": "You|strong=\"H3808\"* have|strong=\"H3027\"* laid|strong=\"H7901\"* me|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H2142\"* lowest pit," + }, + { + "verseNum": 7, + "text": "Your|strong=\"H7896\"* wrath lies heavily on me|strong=\"H7896\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H3605\"* have|strong=\"H3605\"* taken my|strong=\"H3605\"* friends from|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "My|strong=\"H3045\"* eyes are|strong=\"H3045\"* dim from|strong=\"H4480\"* grief." + }, + { + "verseNum": 10, + "text": "Do|strong=\"H3068\"* you|strong=\"H3605\"* show wonders to|strong=\"H3068\"* the|strong=\"H3605\"* dead?" + }, + { + "verseNum": 11, + "text": "Is|strong=\"H6213\"* your|strong=\"H6213\"* loving kindness declared in|strong=\"H6213\"* the|strong=\"H6213\"* grave?" + }, + { + "verseNum": 12, + "text": "Are|strong=\"H6913\"* your|strong=\"H5608\"* wonders made known in|strong=\"H6913\"* the|strong=\"H5608\"* dark?" + }, + { + "verseNum": 13, + "text": "But to|strong=\"H3045\"* you|strong=\"H3045\"*, Yahweh|strong=\"H3068\"*, I|strong=\"H3045\"* have|strong=\"H3045\"* cried." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"*, why do|strong=\"H3068\"* you|strong=\"H1242\"* reject my|strong=\"H3068\"* soul?" + }, + { + "verseNum": 15, + "text": "I|strong=\"H5315\"* am|strong=\"H3068\"* afflicted and|strong=\"H3068\"* ready to|strong=\"H3068\"* die from|strong=\"H4480\"* my|strong=\"H3068\"* youth up|strong=\"H4480\"*." + }, + { + "verseNum": 16, + "text": "Your|strong=\"H5375\"* fierce wrath has gone over|strong=\"H5375\"* me." + }, + { + "verseNum": 17, + "text": "They|strong=\"H5921\"* came|strong=\"H5674\"* around|strong=\"H5921\"* me|strong=\"H5921\"* like|strong=\"H5921\"* water all|strong=\"H5921\"* day long|strong=\"H5921\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H3605\"* have|strong=\"H3117\"* put lover and|strong=\"H3117\"* friend far|strong=\"H5921\"* from|strong=\"H5921\"* me|strong=\"H5921\"*," + } + ] + }, + { + "chapterNum": 89, + "verses": [ + { + "verseNum": 1, + "text": "I will sing of|strong=\"H4905\"* the loving kindness of|strong=\"H4905\"* Yahweh|strong=\"H3068\"* forever." + }, + { + "verseNum": 2, + "text": "I|strong=\"H3045\"* indeed|strong=\"H3068\"* declare|strong=\"H3045\"*, “Love|strong=\"H2617\"* stands firm forever|strong=\"H5769\"*." + }, + { + "verseNum": 3, + "text": "“I|strong=\"H3588\"* have|strong=\"H1129\"* made|strong=\"H3559\"* a|strong=\"H3068\"* covenant with|strong=\"H8064\"* my|strong=\"H3588\"* chosen one|strong=\"H3588\"*," + }, + { + "verseNum": 4, + "text": "‘I|strong=\"H5650\"* will|strong=\"H5650\"* establish your|strong=\"H3772\"* offspring forever," + }, + { + "verseNum": 5, + "text": "The|strong=\"H1129\"* heavens will|strong=\"H2233\"* praise|strong=\"H5769\"* your|strong=\"H3559\"* wonders, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "For|strong=\"H3068\"* who|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* skies can be|strong=\"H3068\"* compared to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 7, + "text": "a|strong=\"H3068\"* very awesome God|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3588\"* council of|strong=\"H1121\"* the|strong=\"H3588\"* holy ones|strong=\"H1121\"*," + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"*, God of|strong=\"H6918\"* Armies, who|strong=\"H3605\"* is|strong=\"H3605\"* a|strong=\"H3068\"* mighty|strong=\"H7227\"* one|strong=\"H6918\"*, like|strong=\"H5921\"* you|strong=\"H3605\"*?" + }, + { + "verseNum": 9, + "text": "You|strong=\"H3644\"* rule the|strong=\"H3068\"* pride of|strong=\"H3068\"* the|strong=\"H3068\"* sea." + }, + { + "verseNum": 10, + "text": "You have|strong=\"H4910\"* broken Rahab in|strong=\"H4910\"* pieces, like one of|strong=\"H3220\"* the|strong=\"H7623\"* slain." + }, + { + "verseNum": 11, + "text": "The|strong=\"H6340\"* heavens are|strong=\"H2491\"* yours." + }, + { + "verseNum": 12, + "text": "You have created the|strong=\"H3245\"* north and|strong=\"H8064\"* the|strong=\"H3245\"* south." + }, + { + "verseNum": 13, + "text": "You have|strong=\"H8034\"* a|strong=\"H3068\"* mighty arm." + }, + { + "verseNum": 14, + "text": "Righteousness and|strong=\"H3027\"* justice are|strong=\"H3027\"* the|strong=\"H3027\"* foundation of|strong=\"H3027\"* your|strong=\"H3027\"* throne." + }, + { + "verseNum": 15, + "text": "Blessed are|strong=\"H4941\"* the|strong=\"H6440\"* people who|strong=\"H6664\"* learn to|strong=\"H6440\"* acclaim you|strong=\"H6440\"*." + }, + { + "verseNum": 16, + "text": "In|strong=\"H1980\"* your|strong=\"H3068\"* name they|strong=\"H3068\"* rejoice all|strong=\"H3045\"* day." + }, + { + "verseNum": 17, + "text": "For|strong=\"H8034\"* you|strong=\"H3605\"* are|strong=\"H3117\"* the|strong=\"H3605\"* glory of|strong=\"H3117\"* their|strong=\"H3605\"* strength." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* our|strong=\"H3588\"* shield belongs to|strong=\"H3588\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 19, + "text": "Then|strong=\"H4428\"* you|strong=\"H3588\"* spoke in|strong=\"H3478\"* vision to|strong=\"H3478\"* your|strong=\"H3068\"* saints|strong=\"H6918\"*," + }, + { + "verseNum": 20, + "text": "I|strong=\"H5921\"* have|strong=\"H5971\"* found David, my|strong=\"H5921\"* servant." + }, + { + "verseNum": 21, + "text": "with|strong=\"H4886\"* whom my|strong=\"H1732\"* hand|strong=\"H4672\"* shall|strong=\"H5650\"* be|strong=\"H5650\"* established." + }, + { + "verseNum": 22, + "text": "No enemy will|strong=\"H3027\"* tax him|strong=\"H3027\"*." + }, + { + "verseNum": 23, + "text": "I|strong=\"H3808\"* will|strong=\"H1121\"* beat down his|strong=\"H3808\"* adversaries before|strong=\"H3808\"* him|strong=\"H1121\"*," + }, + { + "verseNum": 24, + "text": "But|strong=\"H5062\"* my|strong=\"H6440\"* faithfulness and|strong=\"H6440\"* my|strong=\"H6440\"* loving kindness will|strong=\"H6862\"* be|strong=\"H6440\"* with|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 25, + "text": "I|strong=\"H7311\"* will|strong=\"H8034\"* set|strong=\"H7311\"* his|strong=\"H7311\"* hand also|strong=\"H8034\"* on|strong=\"H5973\"* the|strong=\"H5973\"* sea," + }, + { + "verseNum": 26, + "text": "He|strong=\"H3027\"* will|strong=\"H3027\"* call to|strong=\"H3027\"* me|strong=\"H7760\"*, ‘You|strong=\"H7760\"* are|strong=\"H3027\"* my|strong=\"H7760\"* Father," + }, + { + "verseNum": 27, + "text": "I|strong=\"H6697\"* will|strong=\"H1931\"* also|strong=\"H1931\"* appoint him|strong=\"H7121\"* my|strong=\"H7121\"* firstborn," + }, + { + "verseNum": 28, + "text": "I|strong=\"H5414\"* will|strong=\"H4428\"* keep my|strong=\"H5414\"* loving kindness for|strong=\"H4428\"* him|strong=\"H5414\"* forever more." + }, + { + "verseNum": 29, + "text": "I will|strong=\"H2617\"* also|strong=\"H2617\"* make his|strong=\"H8104\"* offspring endure|strong=\"H5769\"* forever|strong=\"H5769\"*," + }, + { + "verseNum": 30, + "text": "If|strong=\"H7760\"* his|strong=\"H7760\"* children|strong=\"H2233\"* forsake my|strong=\"H7760\"* law," + }, + { + "verseNum": 31, + "text": "if|strong=\"H1121\"* they|strong=\"H3808\"* break my|strong=\"H5800\"* statutes," + }, + { + "verseNum": 32, + "text": "then|strong=\"H3808\"* I|strong=\"H3808\"* will|strong=\"H3808\"* punish their|strong=\"H3808\"* sin with|strong=\"H2708\"* the|strong=\"H8104\"* rod," + }, + { + "verseNum": 33, + "text": "But I|strong=\"H6588\"* will|strong=\"H5771\"* not completely take|strong=\"H6485\"* my|strong=\"H6485\"* loving kindness from|strong=\"H7626\"* him|strong=\"H6485\"*," + }, + { + "verseNum": 34, + "text": "I|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* break my|strong=\"H3808\"* covenant," + }, + { + "verseNum": 35, + "text": "Once I|strong=\"H3808\"* have|strong=\"H8193\"* sworn by|strong=\"H3808\"* my|strong=\"H2490\"* holiness," + }, + { + "verseNum": 36, + "text": "His|strong=\"H1732\"* offspring will endure forever," + }, + { + "verseNum": 37, + "text": "It|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* established forever|strong=\"H5769\"* like|strong=\"H1961\"* the|strong=\"H1961\"* moon," + }, + { + "verseNum": 38, + "text": "But you|strong=\"H5769\"* have|strong=\"H5707\"* rejected and|strong=\"H5769\"* spurned." + }, + { + "verseNum": 39, + "text": "You|strong=\"H5973\"* have|strong=\"H5973\"* renounced the|strong=\"H5674\"* covenant of|strong=\"H5674\"* your|strong=\"H5674\"* servant." + }, + { + "verseNum": 40, + "text": "You have|strong=\"H5650\"* broken|strong=\"H2490\"* down all his|strong=\"H2490\"* hedges." + }, + { + "verseNum": 41, + "text": "All|strong=\"H3605\"* who|strong=\"H3605\"* pass by|strong=\"H3605\"* the|strong=\"H3605\"* way|strong=\"H3605\"* rob him|strong=\"H7760\"*." + }, + { + "verseNum": 42, + "text": "You|strong=\"H3605\"* have|strong=\"H1961\"* exalted the|strong=\"H3605\"* right hand of|strong=\"H1870\"* his|strong=\"H3605\"* adversaries." + }, + { + "verseNum": 43, + "text": "Yes, you|strong=\"H3605\"* turn|strong=\"H7311\"* back the|strong=\"H3605\"* edge of|strong=\"H3605\"* his|strong=\"H3605\"* sword," + }, + { + "verseNum": 44, + "text": "You|strong=\"H7725\"* have|strong=\"H3808\"* ended his|strong=\"H7725\"* splendor," + }, + { + "verseNum": 45, + "text": "You|strong=\"H7673\"* have|strong=\"H7673\"* shortened the|strong=\"H7673\"* days of|strong=\"H3678\"* his|strong=\"H4048\"* youth." + }, + { + "verseNum": 46, + "text": "How long|strong=\"H3117\"*, Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 47, + "text": "Remember how|strong=\"H4100\"* short my|strong=\"H3068\"* time|strong=\"H5704\"* is|strong=\"H3068\"*," + }, + { + "verseNum": 48, + "text": "What|strong=\"H4100\"* man|strong=\"H1121\"* is|strong=\"H4100\"* he|strong=\"H3605\"* who|strong=\"H3605\"* shall|strong=\"H1121\"* live and|strong=\"H1121\"* not|strong=\"H1121\"* see death," + }, + { + "verseNum": 49, + "text": "Lord, where|strong=\"H3027\"* are|strong=\"H3027\"* your|strong=\"H7200\"* former loving kindnesses," + }, + { + "verseNum": 50, + "text": "Remember, Lord|strong=\"H2617\"*, the|strong=\"H1732\"* reproach|strong=\"H2617\"* of|strong=\"H2617\"* your|strong=\"H1732\"* servants," + }, + { + "verseNum": 51, + "text": "With|strong=\"H5971\"* which|strong=\"H5971\"* your|strong=\"H3605\"* enemies have|strong=\"H5971\"* mocked, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 52, + "text": "Blessed be|strong=\"H3068\"* Yahweh|strong=\"H3068\"* forever more." + } + ] + }, + { + "chapterNum": 90, + "verses": [ + { + "verseNum": 1, + "text": "Lord,+ 90:1 The word translated “Lord” is “Adonai.”* you|strong=\"H1755\"* have|strong=\"H1961\"* been|strong=\"H1961\"* our|strong=\"H1961\"* dwelling|strong=\"H4583\"* place|strong=\"H1961\"* for|strong=\"H1961\"* all|strong=\"H1755\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 2, + "text": "Before|strong=\"H2962\"* the|strong=\"H3205\"* mountains|strong=\"H2022\"* were|strong=\"H2022\"* born|strong=\"H3205\"*," + }, + { + "verseNum": 3, + "text": "You|strong=\"H5704\"* turn|strong=\"H7725\"* man|strong=\"H1121\"* to|strong=\"H5704\"* destruction|strong=\"H1793\"*, saying," + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* a|strong=\"H3068\"* thousand years|strong=\"H8141\"* in|strong=\"H8141\"* your|strong=\"H3588\"* sight|strong=\"H5869\"* are|strong=\"H3117\"* just like|strong=\"H3117\"* yesterday|strong=\"H3117\"* when|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3117\"* past|strong=\"H5674\"*," + }, + { + "verseNum": 5, + "text": "You|strong=\"H1242\"* sweep|strong=\"H2498\"* them|strong=\"H1961\"* away|strong=\"H2498\"* as|strong=\"H1961\"* they|strong=\"H1242\"* sleep|strong=\"H8142\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"H6153\"* the|strong=\"H1242\"* morning|strong=\"H1242\"* it|strong=\"H1242\"* sprouts|strong=\"H2498\"* and|strong=\"H1242\"* springs up|strong=\"H3001\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* we|strong=\"H3068\"* are consumed|strong=\"H3615\"* in|strong=\"H3615\"* your|strong=\"H3588\"* anger|strong=\"H2534\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H6440\"* have|strong=\"H5771\"* set|strong=\"H7896\"* our|strong=\"H7896\"* iniquities|strong=\"H5771\"* before|strong=\"H6440\"* you|strong=\"H6440\"*," + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* our|strong=\"H3605\"* days|strong=\"H3117\"* have|strong=\"H3117\"* passed away|strong=\"H6437\"* in|strong=\"H8141\"* your|strong=\"H3605\"* wrath|strong=\"H5678\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H3117\"* our|strong=\"H3588\"* years|strong=\"H8141\"* are|strong=\"H3117\"* seventy|strong=\"H7657\"*," + }, + { + "verseNum": 11, + "text": "Who|strong=\"H4310\"* knows|strong=\"H3045\"* the|strong=\"H3045\"* power|strong=\"H5797\"* of|strong=\"H3045\"* your|strong=\"H3045\"* anger|strong=\"H5678\"*," + }, + { + "verseNum": 12, + "text": "So|strong=\"H3651\"* teach|strong=\"H3045\"* us|strong=\"H3045\"* to|strong=\"H3117\"* count|strong=\"H4487\"* our|strong=\"H3045\"* days|strong=\"H3117\"*," + }, + { + "verseNum": 13, + "text": "Relent|strong=\"H5162\"*, Yahweh|strong=\"H3068\"*!+ 90:13 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.*" + }, + { + "verseNum": 14, + "text": "Satisfy|strong=\"H7646\"* us|strong=\"H3117\"* in|strong=\"H3117\"* the|strong=\"H3605\"* morning|strong=\"H1242\"* with|strong=\"H7646\"* your|strong=\"H3605\"* loving kindness|strong=\"H2617\"*," + }, + { + "verseNum": 15, + "text": "Make|strong=\"H8055\"* us|strong=\"H7200\"* glad|strong=\"H8055\"* for|strong=\"H3117\"* as|strong=\"H3117\"* many|strong=\"H7200\"* days|strong=\"H3117\"* as|strong=\"H3117\"* you|strong=\"H3117\"* have|strong=\"H3117\"* afflicted|strong=\"H6031\"* us|strong=\"H7200\"*," + }, + { + "verseNum": 16, + "text": "Let your|strong=\"H5921\"* work|strong=\"H6467\"* appear|strong=\"H7200\"* to|strong=\"H5921\"* your|strong=\"H5921\"* servants|strong=\"H5650\"*," + }, + { + "verseNum": 17, + "text": "Let|strong=\"H1961\"* the|strong=\"H5921\"* favor|strong=\"H5278\"* of|strong=\"H3027\"* the|strong=\"H5921\"* Lord our|strong=\"H5921\"* God|strong=\"H3027\"* be|strong=\"H1961\"* on|strong=\"H5921\"* us|strong=\"H5921\"*." + } + ] + }, + { + "chapterNum": 91, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H3427\"* who|strong=\"H3427\"* dwells|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3885\"* secret|strong=\"H5643\"* place|strong=\"H5643\"* of|strong=\"H3427\"* the|strong=\"H3885\"* Most|strong=\"H5945\"* High|strong=\"H5945\"*" + }, + { + "verseNum": 2, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* say of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, “He|strong=\"H3068\"* is|strong=\"H3068\"* my|strong=\"H3068\"* refuge|strong=\"H4268\"* and|strong=\"H3068\"* my|strong=\"H3068\"* fortress|strong=\"H4686\"*;" + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* he|strong=\"H1931\"* will|strong=\"H1931\"* deliver|strong=\"H5337\"* you|strong=\"H3588\"* from|strong=\"H5337\"* the|strong=\"H3588\"* snare|strong=\"H6341\"* of|strong=\"H1931\"* the|strong=\"H3588\"* fowler|strong=\"H3353\"*," + }, + { + "verseNum": 4, + "text": "He|strong=\"H8478\"* will|strong=\"H3671\"* cover|strong=\"H5526\"* you|strong=\"H8478\"* with|strong=\"H5526\"* his|strong=\"H8478\"* feathers." + }, + { + "verseNum": 5, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* afraid|strong=\"H3372\"* of|strong=\"H3372\"* the|strong=\"H3372\"* terror|strong=\"H6343\"* by|strong=\"H3915\"* night|strong=\"H3915\"*," + }, + { + "verseNum": 6, + "text": "nor of the|strong=\"H1980\"* pestilence|strong=\"H1698\"* that|strong=\"H1980\"* walks|strong=\"H1980\"* in|strong=\"H1980\"* darkness," + }, + { + "verseNum": 7, + "text": "A|strong=\"H3068\"* thousand|strong=\"H7233\"* may|strong=\"H5307\"* fall|strong=\"H5307\"* at|strong=\"H5307\"* your|strong=\"H3808\"* side|strong=\"H6654\"*," + }, + { + "verseNum": 8, + "text": "You|strong=\"H7200\"* will|strong=\"H5869\"* only|strong=\"H7535\"* look|strong=\"H7200\"* with|strong=\"H5869\"* your|strong=\"H7200\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 9, + "text": "Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* made|strong=\"H7760\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* refuge|strong=\"H4268\"*," + }, + { + "verseNum": 10, + "text": "no|strong=\"H3808\"* evil|strong=\"H7451\"* shall|strong=\"H3808\"* happen to|strong=\"H7126\"* you|strong=\"H3808\"*," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H4397\"* put|strong=\"H6680\"* his|strong=\"H3605\"* angels|strong=\"H4397\"* in|strong=\"H1870\"* charge|strong=\"H6680\"* of|strong=\"H1870\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 12, + "text": "They|strong=\"H5921\"* will|strong=\"H7272\"* bear|strong=\"H5375\"* you|strong=\"H5921\"* up|strong=\"H5375\"* in|strong=\"H5921\"* their|strong=\"H5375\"* hands|strong=\"H3709\"*," + }, + { + "verseNum": 13, + "text": "You|strong=\"H5921\"* will tread|strong=\"H1869\"* on|strong=\"H5921\"* the|strong=\"H5921\"* lion|strong=\"H3715\"* and|strong=\"H7826\"* cobra|strong=\"H6620\"*." + }, + { + "verseNum": 14, + "text": "“Because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* set|strong=\"H7682\"* his|strong=\"H3045\"* love|strong=\"H2836\"* on|strong=\"H8034\"* me|strong=\"H7682\"*, therefore|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H8034\"* deliver|strong=\"H6403\"* him|strong=\"H3045\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H7121\"* will|strong=\"H6869\"* call|strong=\"H7121\"* on|strong=\"H7121\"* me|strong=\"H7121\"*, and|strong=\"H6030\"* I|strong=\"H6869\"* will|strong=\"H6869\"* answer|strong=\"H6030\"* him|strong=\"H7121\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"H3117\"* will|strong=\"H3117\"* satisfy|strong=\"H7646\"* him|strong=\"H7200\"* with|strong=\"H7646\"* long|strong=\"H3117\"* life|strong=\"H3117\"*," + } + ] + }, + { + "chapterNum": 92, + "verses": [ + { + "verseNum": 1, + "text": "It|strong=\"H3117\"* is|strong=\"H3117\"* a|strong=\"H3068\"* good thing to|strong=\"H3117\"* give thanks to|strong=\"H3117\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 2, + "text": "to|strong=\"H3068\"* proclaim your|strong=\"H3068\"* loving|strong=\"H2896\"* kindness|strong=\"H2896\"* in|strong=\"H3068\"* the|strong=\"H3068\"* morning," + }, + { + "verseNum": 3, + "text": "with|strong=\"H3915\"* the|strong=\"H5046\"* ten-stringed lute, with|strong=\"H3915\"* the|strong=\"H5046\"* harp," + }, + { + "verseNum": 4, + "text": "For|strong=\"H5921\"* you|strong=\"H5921\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H5921\"* made me|strong=\"H5921\"* glad through|strong=\"H5921\"* your|strong=\"H5921\"* work." + }, + { + "verseNum": 5, + "text": "How|strong=\"H3588\"* great are|strong=\"H3027\"* your|strong=\"H3068\"* works|strong=\"H4639\"*, Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 6, + "text": "A|strong=\"H3068\"* senseless man doesn’t know," + }, + { + "verseNum": 7, + "text": "though the|strong=\"H3045\"* wicked spring up as the|strong=\"H3045\"* grass," + }, + { + "verseNum": 8, + "text": "But|strong=\"H7563\"* you|strong=\"H3605\"*, Yahweh|strong=\"H3068\"*, are|strong=\"H7563\"* on|strong=\"H3605\"* high forever|strong=\"H5704\"* more|strong=\"H5704\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3068\"* behold, your|strong=\"H3068\"* enemies, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 10, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* exalted my|strong=\"H3605\"* horn like|strong=\"H3068\"* that|strong=\"H3588\"* of|strong=\"H3068\"* the|strong=\"H3605\"* wild ox." + }, + { + "verseNum": 11, + "text": "My|strong=\"H7311\"* eye has also seen my|strong=\"H7311\"* enemies." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* righteous shall|strong=\"H5869\"* flourish like|strong=\"H5921\"* the|strong=\"H5921\"* palm tree." + }, + { + "verseNum": 13, + "text": "They are|strong=\"H6662\"* planted in|strong=\"H6662\"* Yahweh|strong=\"H3068\"*’s house." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3068\"* will|strong=\"H3068\"* still produce fruit in|strong=\"H3068\"* old age." + }, + { + "verseNum": 15, + "text": "to|strong=\"H1961\"* show|strong=\"H1961\"* that|strong=\"H1961\"* Yahweh|strong=\"H3068\"* is|strong=\"H1961\"* upright." + } + ] + }, + { + "chapterNum": 93, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* reigns|strong=\"H4427\"*!" + }, + { + "verseNum": 2, + "text": "Your|strong=\"H3559\"* throne|strong=\"H3678\"* is|strong=\"H3678\"* established|strong=\"H3559\"* from|strong=\"H3678\"* long|strong=\"H5769\"* ago|strong=\"H5769\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H5375\"* floods|strong=\"H5104\"* have|strong=\"H3068\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 4, + "text": "Above|strong=\"H4791\"* the|strong=\"H3068\"* voices|strong=\"H6963\"* of|strong=\"H3068\"* many|strong=\"H7227\"* waters|strong=\"H4325\"*," + }, + { + "verseNum": 5, + "text": "Your|strong=\"H3068\"* statutes stand firm." + } + ] + }, + { + "chapterNum": 94, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, you God|strong=\"H3068\"* to|strong=\"H3068\"* whom vengeance|strong=\"H5360\"* belongs," + }, + { + "verseNum": 2, + "text": "Rise|strong=\"H5375\"* up|strong=\"H5375\"*, you|strong=\"H5921\"* judge|strong=\"H8199\"* of|strong=\"H5921\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*, how|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H3068\"* the|strong=\"H3068\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 4, + "text": "They|strong=\"H3605\"* pour|strong=\"H5042\"* out|strong=\"H5042\"* arrogant words." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3068\"* break|strong=\"H1792\"* your|strong=\"H3068\"* people|strong=\"H5971\"* in|strong=\"H3068\"* pieces|strong=\"H1792\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "They kill|strong=\"H2026\"* the|strong=\"H2026\"* widow and|strong=\"H2026\"* the|strong=\"H2026\"* alien|strong=\"H1616\"*," + }, + { + "verseNum": 7, + "text": "They|strong=\"H3808\"* say, “Yah|strong=\"H3068\"* will|strong=\"H3808\"* not|strong=\"H3808\"* see|strong=\"H7200\"*," + }, + { + "verseNum": 8, + "text": "Consider|strong=\"H7919\"*, you|strong=\"H5971\"* senseless|strong=\"H1197\"* among|strong=\"H5971\"* the|strong=\"H1197\"* people|strong=\"H5971\"*;" + }, + { + "verseNum": 9, + "text": "He|strong=\"H3808\"* who|strong=\"H3808\"* implanted the|strong=\"H8085\"* ear|strong=\"H8085\"*, won’t he|strong=\"H3808\"* hear|strong=\"H8085\"*?" + }, + { + "verseNum": 10, + "text": "He|strong=\"H3808\"* who|strong=\"H1471\"* disciplines|strong=\"H3256\"* the|strong=\"H3808\"* nations|strong=\"H1471\"*, won’t he|strong=\"H3808\"* punish|strong=\"H3256\"*?" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* knows|strong=\"H3045\"* the|strong=\"H3588\"* thoughts|strong=\"H4284\"* of|strong=\"H3068\"* man|strong=\"H3045\"*," + }, + { + "verseNum": 12, + "text": "Blessed is|strong=\"H8451\"* the|strong=\"H3050\"* man|strong=\"H1397\"* whom|strong=\"H1397\"* you|strong=\"H3925\"* discipline|strong=\"H3256\"*, Yah|strong=\"H3068\"*," + }, + { + "verseNum": 13, + "text": "that|strong=\"H3117\"* you|strong=\"H3117\"* may|strong=\"H3117\"* give him|strong=\"H5704\"* rest|strong=\"H8252\"* from|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* adversity|strong=\"H7451\"*," + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* won’t reject|strong=\"H5800\"* his|strong=\"H3068\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* judgment|strong=\"H4941\"* will|strong=\"H3820\"* return|strong=\"H7725\"* to|strong=\"H5704\"* righteousness|strong=\"H6664\"*." + }, + { + "verseNum": 16, + "text": "Who|strong=\"H4310\"* will|strong=\"H4310\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* for|strong=\"H6965\"* me|strong=\"H5973\"* against|strong=\"H5973\"* the|strong=\"H6965\"* wicked|strong=\"H7489\"*?" + }, + { + "verseNum": 17, + "text": "Unless|strong=\"H3884\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* been|strong=\"H4592\"* my|strong=\"H3068\"* help|strong=\"H5833\"*," + }, + { + "verseNum": 18, + "text": "When|strong=\"H3068\"* I|strong=\"H3068\"* said, “My|strong=\"H3068\"* foot|strong=\"H7272\"* is|strong=\"H3068\"* slipping!”" + }, + { + "verseNum": 19, + "text": "In|strong=\"H5315\"* the|strong=\"H7130\"* multitude|strong=\"H7230\"* of|strong=\"H7230\"* my|strong=\"H7130\"* thoughts|strong=\"H8312\"* within|strong=\"H7130\"* me|strong=\"H5315\"*," + }, + { + "verseNum": 20, + "text": "Shall|strong=\"H5999\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H3678\"* wickedness|strong=\"H5999\"* have|strong=\"H1942\"* fellowship|strong=\"H2266\"* with|strong=\"H5921\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 21, + "text": "They|strong=\"H5921\"* gather|strong=\"H1413\"* themselves|strong=\"H5315\"* together|strong=\"H5921\"* against|strong=\"H5921\"* the|strong=\"H5921\"* soul|strong=\"H5315\"* of|strong=\"H5921\"* the|strong=\"H5921\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 22, + "text": "But|strong=\"H1961\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* been|strong=\"H1961\"* my|strong=\"H3068\"* high tower|strong=\"H4869\"*," + }, + { + "verseNum": 23, + "text": "He|strong=\"H3068\"* has|strong=\"H3068\"* brought|strong=\"H7725\"* on|strong=\"H5921\"* them|strong=\"H5921\"* their|strong=\"H3068\"* own iniquity," + } + ] + }, + { + "chapterNum": 95, + "verses": [ + { + "verseNum": 1, + "text": "Oh come|strong=\"H3212\"*, let|strong=\"H3212\"*’s sing|strong=\"H7442\"* to|strong=\"H3212\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "Let’s come|strong=\"H6923\"* before|strong=\"H6440\"* his|strong=\"H6440\"* presence|strong=\"H6440\"* with|strong=\"H6440\"* thanksgiving|strong=\"H8426\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 4, + "text": "In|strong=\"H3027\"* his|strong=\"H3027\"* hand|strong=\"H3027\"* are|strong=\"H3027\"* the|strong=\"H3027\"* deep places|strong=\"H4278\"* of|strong=\"H3027\"* the|strong=\"H3027\"* earth." + }, + { + "verseNum": 5, + "text": "The|strong=\"H6213\"* sea|strong=\"H3220\"* is|strong=\"H1931\"* his|strong=\"H3027\"*, and|strong=\"H3027\"* he|strong=\"H1931\"* made|strong=\"H6213\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 6, + "text": "Oh come, let’s worship|strong=\"H7812\"* and|strong=\"H3068\"* bow|strong=\"H7812\"* down|strong=\"H7812\"*." + }, + { + "verseNum": 7, + "text": "for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* our|strong=\"H8085\"* God|strong=\"H3027\"*." + }, + { + "verseNum": 8, + "text": "Don’t harden|strong=\"H7185\"* your|strong=\"H3117\"* heart|strong=\"H3824\"*, as|strong=\"H3117\"* at|strong=\"H3117\"* Meribah," + }, + { + "verseNum": 9, + "text": "when|strong=\"H7200\"* your|strong=\"H7200\"* fathers tempted|strong=\"H5254\"* me|strong=\"H7200\"*," + }, + { + "verseNum": 10, + "text": "Forty long|strong=\"H8141\"* years|strong=\"H8141\"* I|strong=\"H3045\"* was|strong=\"H3824\"* grieved|strong=\"H6962\"* with|strong=\"H3045\"* that|strong=\"H3045\"* generation|strong=\"H1755\"*," + }, + { + "verseNum": 11, + "text": "Therefore I|strong=\"H7650\"* swore|strong=\"H7650\"* in|strong=\"H7650\"* my|strong=\"H7650\"* wrath," + } + ] + }, + { + "chapterNum": 96, + "verses": [ + { + "verseNum": 1, + "text": "Sing|strong=\"H7891\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* a|strong=\"H3068\"* new|strong=\"H2319\"* song|strong=\"H7892\"*!" + }, + { + "verseNum": 2, + "text": "Sing|strong=\"H7891\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 3, + "text": "Declare|strong=\"H5608\"* his|strong=\"H3605\"* glory|strong=\"H3519\"* among|strong=\"H6381\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* great|strong=\"H1419\"*, and|strong=\"H3068\"* greatly|strong=\"H3966\"* to|strong=\"H3068\"* be|strong=\"H3068\"* praised|strong=\"H1984\"*!" + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gods of|strong=\"H3068\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* are|strong=\"H5971\"* idols," + }, + { + "verseNum": 6, + "text": "Honor|strong=\"H8597\"* and|strong=\"H6440\"* majesty|strong=\"H1926\"* are|strong=\"H6440\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 7, + "text": "Ascribe|strong=\"H3051\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, you|strong=\"H5971\"* families|strong=\"H4940\"* of|strong=\"H3068\"* nations|strong=\"H5971\"*," + }, + { + "verseNum": 8, + "text": "Ascribe|strong=\"H3051\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* the|strong=\"H5375\"* glory|strong=\"H3519\"* due to|strong=\"H3068\"* his|strong=\"H5375\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 9, + "text": "Worship|strong=\"H7812\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* holy|strong=\"H6944\"* array|strong=\"H1927\"*." + }, + { + "verseNum": 10, + "text": "Say among|strong=\"H5971\"* the|strong=\"H3068\"* nations|strong=\"H1471\"*, “Yahweh|strong=\"H3068\"* reigns|strong=\"H4427\"*.”" + }, + { + "verseNum": 11, + "text": "Let|strong=\"H7481\"* the|strong=\"H8055\"* heavens|strong=\"H8064\"* be|strong=\"H8064\"* glad|strong=\"H8055\"*, and|strong=\"H8064\"* let|strong=\"H7481\"* the|strong=\"H8055\"* earth|strong=\"H8064\"* rejoice|strong=\"H8055\"*." + }, + { + "verseNum": 12, + "text": "Let the|strong=\"H3605\"* field|strong=\"H7704\"* and|strong=\"H6086\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H6086\"* it|strong=\"H3605\"* exult|strong=\"H5937\"*!" + }, + { + "verseNum": 13, + "text": "before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* comes|strong=\"H6440\"*," + } + ] + }, + { + "chapterNum": 97, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* reigns|strong=\"H4427\"*!" + }, + { + "verseNum": 2, + "text": "Clouds|strong=\"H6051\"* and|strong=\"H4941\"* darkness|strong=\"H6205\"* are|strong=\"H4941\"* around|strong=\"H5439\"* him|strong=\"H5439\"*." + }, + { + "verseNum": 3, + "text": "A|strong=\"H3068\"* fire|strong=\"H3857\"* goes|strong=\"H6440\"* before|strong=\"H6440\"* him|strong=\"H6440\"*," + }, + { + "verseNum": 4, + "text": "His|strong=\"H7200\"* lightning|strong=\"H1300\"* lights up|strong=\"H7200\"* the|strong=\"H7200\"* world|strong=\"H8398\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3605\"* mountains|strong=\"H2022\"* melt|strong=\"H4549\"* like|strong=\"H2022\"* wax|strong=\"H1749\"* at|strong=\"H3068\"* the|strong=\"H3605\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "The|strong=\"H3605\"* heavens|strong=\"H8064\"* declare|strong=\"H5046\"* his|strong=\"H3605\"* righteousness|strong=\"H6664\"*." + }, + { + "verseNum": 7, + "text": "Let all|strong=\"H3605\"* them|strong=\"H5647\"* be|strong=\"H3605\"* shamed who|strong=\"H3605\"* serve|strong=\"H5647\"* engraved images|strong=\"H6459\"*," + }, + { + "verseNum": 8, + "text": "Zion|strong=\"H6726\"* heard|strong=\"H8085\"* and|strong=\"H3063\"* was|strong=\"H3068\"* glad|strong=\"H8055\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, are|strong=\"H3068\"* most|strong=\"H5945\"* high|strong=\"H5945\"* above|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth|strong=\"H5927\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3027\"* who|strong=\"H3068\"* love|strong=\"H2623\"* Yahweh|strong=\"H3068\"*, hate|strong=\"H8130\"* evil|strong=\"H7451\"*!" + }, + { + "verseNum": 11, + "text": "Light is|strong=\"H3820\"* sown|strong=\"H2232\"* for|strong=\"H6662\"* the|strong=\"H2232\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 12, + "text": "Be|strong=\"H3068\"* glad|strong=\"H8055\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, you|strong=\"H3034\"* righteous|strong=\"H6662\"* people!" + } + ] + }, + { + "chapterNum": 98, + "verses": [ + { + "verseNum": 1, + "text": "Sing|strong=\"H7891\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* a|strong=\"H3068\"* new|strong=\"H2319\"* song|strong=\"H7892\"*," + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H3045\"* known|strong=\"H3045\"* his|strong=\"H3068\"* salvation|strong=\"H3444\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3605\"* has|strong=\"H3478\"* remembered|strong=\"H2142\"* his|strong=\"H3605\"* loving kindness|strong=\"H2617\"* and|strong=\"H3478\"* his|strong=\"H3605\"* faithfulness|strong=\"H2617\"* toward the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "Make a|strong=\"H3068\"* joyful|strong=\"H7442\"* noise|strong=\"H7321\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* earth!" + }, + { + "verseNum": 5, + "text": "Sing|strong=\"H2167\"* praises|strong=\"H2167\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* the|strong=\"H3068\"* harp|strong=\"H3658\"*," + }, + { + "verseNum": 6, + "text": "With|strong=\"H3068\"* trumpets|strong=\"H2689\"* and|strong=\"H3068\"* sound|strong=\"H6963\"* of|strong=\"H4428\"* the|strong=\"H6440\"* ram’s horn|strong=\"H7782\"*," + }, + { + "verseNum": 7, + "text": "Let|strong=\"H7481\"* the|strong=\"H3427\"* sea|strong=\"H3220\"* roar|strong=\"H7481\"* with|strong=\"H3427\"* its|strong=\"H3220\"* fullness|strong=\"H4393\"*;" + }, + { + "verseNum": 8, + "text": "Let the|strong=\"H2022\"* rivers|strong=\"H5104\"* clap|strong=\"H4222\"* their|strong=\"H4222\"* hands|strong=\"H3709\"*." + }, + { + "verseNum": 9, + "text": "Let them|strong=\"H6440\"* sing before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 99, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* reigns|strong=\"H4427\"*! Let the|strong=\"H3068\"* peoples|strong=\"H5971\"* tremble|strong=\"H7264\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* great|strong=\"H1419\"* in|strong=\"H5921\"* Zion|strong=\"H6726\"*." + }, + { + "verseNum": 3, + "text": "Let them|strong=\"H1931\"* praise|strong=\"H3034\"* your|strong=\"H3372\"* great|strong=\"H1419\"* and|strong=\"H1419\"* awesome|strong=\"H3372\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H6213\"* King|strong=\"H4428\"*’s strength|strong=\"H5797\"* also|strong=\"H6213\"* loves justice|strong=\"H4941\"*." + }, + { + "verseNum": 5, + "text": "Exalt|strong=\"H7311\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron were|strong=\"H3068\"* among|strong=\"H8034\"* his|strong=\"H3068\"* priests|strong=\"H3548\"*," + }, + { + "verseNum": 7, + "text": "He|strong=\"H5414\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5414\"* in|strong=\"H1696\"* the|strong=\"H5414\"* pillar|strong=\"H5982\"* of|strong=\"H5982\"* cloud|strong=\"H6051\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H5921\"* answered|strong=\"H6030\"* them|strong=\"H1992\"*, Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "Exalt|strong=\"H7311\"* Yahweh|strong=\"H3068\"*, our|strong=\"H3068\"* God|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 100, + "verses": [ + { + "verseNum": 1, + "text": "Shout|strong=\"H7321\"* for|strong=\"H3068\"* joy|strong=\"H7321\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* lands!" + }, + { + "verseNum": 2, + "text": "Serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* gladness|strong=\"H8057\"*." + }, + { + "verseNum": 3, + "text": "Know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, he|strong=\"H1931\"* is|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "Enter into his|strong=\"H1288\"* gates|strong=\"H8179\"* with|strong=\"H2691\"* thanksgiving|strong=\"H8426\"*," + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* good|strong=\"H2896\"*." + } + ] + }, + { + "chapterNum": 101, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* sing|strong=\"H7891\"* of|strong=\"H3068\"* loving kindness|strong=\"H2617\"* and|strong=\"H3068\"* justice|strong=\"H4941\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H1980\"* will|strong=\"H1004\"* be|strong=\"H1004\"* careful to|strong=\"H1980\"* live|strong=\"H1980\"* a|strong=\"H3068\"* blameless|strong=\"H8549\"* life." + }, + { + "verseNum": 3, + "text": "I|strong=\"H1697\"* will|strong=\"H5869\"* set|strong=\"H7896\"* no|strong=\"H3808\"* vile thing|strong=\"H1697\"* before|strong=\"H5048\"* my|strong=\"H6213\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 4, + "text": "A|strong=\"H3068\"* perverse|strong=\"H6141\"* heart|strong=\"H3824\"* will|strong=\"H3808\"* be|strong=\"H3808\"* far|strong=\"H4480\"* from|strong=\"H4480\"* me|strong=\"H4480\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3201\"* will|strong=\"H5869\"* silence whoever secretly|strong=\"H5643\"* slanders|strong=\"H3960\"* his|strong=\"H3808\"* neighbor|strong=\"H7453\"*." + }, + { + "verseNum": 6, + "text": "My|strong=\"H1870\"* eyes|strong=\"H5869\"* will|strong=\"H5869\"* be|strong=\"H5869\"* on|strong=\"H1980\"* the|strong=\"H1870\"* faithful of|strong=\"H3427\"* the|strong=\"H1870\"* land," + }, + { + "verseNum": 7, + "text": "He|strong=\"H6213\"* who|strong=\"H3427\"* practices|strong=\"H6213\"* deceit|strong=\"H8267\"* won’t dwell|strong=\"H3427\"* within|strong=\"H7130\"* my|strong=\"H6213\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 8, + "text": "Morning|strong=\"H1242\"* by|strong=\"H3068\"* morning|strong=\"H1242\"*, I|strong=\"H3772\"* will|strong=\"H3068\"* destroy|strong=\"H6789\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wicked|strong=\"H7563\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land," + } + ] + }, + { + "chapterNum": 102, + "verses": [ + { + "verseNum": 1, + "text": "Hear my|strong=\"H3068\"* prayer|strong=\"H8605\"*, Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 2, + "text": "Don’t hide your|strong=\"H3068\"* face from|strong=\"H8085\"* me|strong=\"H8085\"* in|strong=\"H3068\"* the|strong=\"H8085\"* day of|strong=\"H3068\"* my|strong=\"H8085\"* distress." + }, + { + "verseNum": 3, + "text": "For|strong=\"H7121\"* my|strong=\"H5641\"* days|strong=\"H3117\"* consume away|strong=\"H5186\"* like|strong=\"H3117\"* smoke." + }, + { + "verseNum": 4, + "text": "My|strong=\"H3615\"* heart is|strong=\"H3117\"* blighted like|strong=\"H3615\"* grass, and|strong=\"H3117\"* withered," + }, + { + "verseNum": 5, + "text": "By|strong=\"H3588\"* reason of|strong=\"H3820\"* the|strong=\"H3588\"* voice of|strong=\"H3820\"* my|strong=\"H3588\"* groaning," + }, + { + "verseNum": 6, + "text": "I|strong=\"H6963\"* am like a|strong=\"H3068\"* pelican of|strong=\"H6963\"* the|strong=\"H6963\"* wilderness." + }, + { + "verseNum": 7, + "text": "I|strong=\"H1961\"* watch, and|strong=\"H4057\"* have|strong=\"H1961\"* become|strong=\"H1961\"* like|strong=\"H1819\"* a|strong=\"H3068\"* sparrow that|strong=\"H1961\"* is|strong=\"H1961\"* alone on|strong=\"H1961\"* the|strong=\"H1961\"* housetop." + }, + { + "verseNum": 8, + "text": "My|strong=\"H5921\"* enemies reproach me|strong=\"H5921\"* all|strong=\"H5921\"* day." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3117\"* I|strong=\"H3117\"* have|strong=\"H3117\"* eaten ashes like|strong=\"H3117\"* bread," + }, + { + "verseNum": 10, + "text": "because|strong=\"H3588\"* of|strong=\"H3899\"* your|strong=\"H3588\"* indignation and|strong=\"H3899\"* your|strong=\"H3588\"* wrath;" + }, + { + "verseNum": 11, + "text": "My|strong=\"H5375\"* days are|strong=\"H6440\"* like|strong=\"H6440\"* a|strong=\"H3068\"* long|strong=\"H6440\"* shadow." + }, + { + "verseNum": 12, + "text": "But|strong=\"H3117\"* you|strong=\"H3117\"*, Yahweh|strong=\"H3068\"*, will|strong=\"H3117\"* remain forever|strong=\"H3117\"*;" + }, + { + "verseNum": 13, + "text": "You|strong=\"H3427\"* will|strong=\"H3068\"* arise and|strong=\"H3068\"* have|strong=\"H3068\"* mercy|strong=\"H3068\"* on|strong=\"H3427\"* Zion," + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* your|strong=\"H3588\"* servants take|strong=\"H6965\"* pleasure in|strong=\"H6965\"* her|strong=\"H6965\"* stones," + }, + { + "verseNum": 15, + "text": "So|strong=\"H3588\"* the|strong=\"H3588\"* nations will|strong=\"H5650\"* fear Yahweh|strong=\"H3068\"*’s name," + }, + { + "verseNum": 16, + "text": "For|strong=\"H8034\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* built up|strong=\"H4428\"* Zion." + }, + { + "verseNum": 17, + "text": "He|strong=\"H3588\"* has|strong=\"H3068\"* responded to|strong=\"H3068\"* the|strong=\"H7200\"* prayer of|strong=\"H3068\"* the|strong=\"H7200\"* destitute," + }, + { + "verseNum": 18, + "text": "This|strong=\"H6437\"* will|strong=\"H3808\"* be|strong=\"H3808\"* written for|strong=\"H8605\"* the|strong=\"H3808\"* generation to|strong=\"H6437\"* come." + }, + { + "verseNum": 19, + "text": "for|strong=\"H5971\"* he|strong=\"H5971\"* has|strong=\"H3050\"* looked down|strong=\"H3789\"* from|strong=\"H5971\"* the|strong=\"H1984\"* height of|strong=\"H5971\"* his|strong=\"H5971\"* sanctuary." + }, + { + "verseNum": 20, + "text": "to|strong=\"H3068\"* hear the|strong=\"H3588\"* groans of|strong=\"H3068\"* the|strong=\"H3588\"* prisoner," + }, + { + "verseNum": 21, + "text": "that|strong=\"H8085\"* men|strong=\"H1121\"* may|strong=\"H1121\"* declare|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s name in|strong=\"H8085\"* Zion," + }, + { + "verseNum": 22, + "text": "when|strong=\"H3068\"* the|strong=\"H3068\"* peoples are|strong=\"H3068\"* gathered together," + }, + { + "verseNum": 23, + "text": "He|strong=\"H3068\"* weakened my|strong=\"H3068\"* strength along the|strong=\"H5647\"* course." + }, + { + "verseNum": 24, + "text": "I|strong=\"H3117\"* said, “My|strong=\"H6031\"* God, don’t take me|strong=\"H3117\"* away|strong=\"H1870\"* in|strong=\"H3117\"* the|strong=\"H3117\"* middle of|strong=\"H3117\"* my|strong=\"H6031\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 25, + "text": "Of|strong=\"H3117\"* old|strong=\"H8141\"*, you|strong=\"H3117\"* laid|strong=\"H5927\"* the|strong=\"H3117\"* foundation|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* earth|strong=\"H5927\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H3027\"* will|strong=\"H8064\"* perish, but you|strong=\"H6440\"* will|strong=\"H8064\"* endure|strong=\"H6440\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"H1992\"* you|strong=\"H3605\"* are|strong=\"H1992\"* the|strong=\"H3605\"* same|strong=\"H1992\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H3808\"* children of|strong=\"H8141\"* your|strong=\"H3808\"* servants will|strong=\"H3808\"* continue." + } + ] + }, + { + "chapterNum": 103, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1288\"* Yahweh|strong=\"H3068\"*, my|strong=\"H3605\"* soul|strong=\"H5315\"*!" + }, + { + "verseNum": 2, + "text": "Praise|strong=\"H1288\"* Yahweh|strong=\"H3068\"*, my|strong=\"H3605\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 3, + "text": "who|strong=\"H3605\"* forgives all|strong=\"H3605\"* your|strong=\"H3605\"* sins|strong=\"H5771\"*," + }, + { + "verseNum": 4, + "text": "who|strong=\"H2416\"* redeems|strong=\"H1350\"* your|strong=\"H1350\"* life|strong=\"H2416\"* from|strong=\"H2416\"* destruction|strong=\"H7845\"*," + }, + { + "verseNum": 5, + "text": "who|strong=\"H2896\"* satisfies|strong=\"H7646\"* your|strong=\"H7646\"* desire with|strong=\"H7646\"* good|strong=\"H2896\"* things|strong=\"H2896\"*," + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* executes|strong=\"H6213\"* righteous|strong=\"H6666\"* acts|strong=\"H6213\"*," + }, + { + "verseNum": 7, + "text": "He|strong=\"H4872\"* made|strong=\"H3045\"* known|strong=\"H3045\"* his|strong=\"H3045\"* ways|strong=\"H1870\"* to|strong=\"H3478\"* Moses|strong=\"H4872\"*," + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* merciful|strong=\"H7349\"* and|strong=\"H3068\"* gracious|strong=\"H2587\"*," + }, + { + "verseNum": 9, + "text": "He|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* always|strong=\"H5769\"* accuse|strong=\"H7378\"*;" + }, + { + "verseNum": 10, + "text": "He|strong=\"H6213\"* has|strong=\"H6213\"* not|strong=\"H3808\"* dealt|strong=\"H6213\"* with|strong=\"H6213\"* us|strong=\"H5921\"* according|strong=\"H5921\"* to|strong=\"H6213\"* our|strong=\"H5921\"* sins|strong=\"H2399\"*," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* as|strong=\"H3588\"* the|strong=\"H5921\"* heavens|strong=\"H8064\"* are|strong=\"H8064\"* high|strong=\"H1361\"* above|strong=\"H5921\"* the|strong=\"H5921\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 12, + "text": "As|strong=\"H6588\"* far|strong=\"H7368\"* as|strong=\"H6588\"* the|strong=\"H4480\"* east|strong=\"H4217\"* is|strong=\"H6588\"* from|strong=\"H4480\"* the|strong=\"H4480\"* west|strong=\"H4628\"*," + }, + { + "verseNum": 13, + "text": "Like|strong=\"H1121\"* a|strong=\"H3068\"* father|strong=\"H1121\"* has|strong=\"H3068\"* compassion|strong=\"H7355\"* on|strong=\"H5921\"* his|strong=\"H3068\"* children|strong=\"H1121\"*," + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* he|strong=\"H1931\"* knows|strong=\"H3045\"* how|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H3045\"* made|strong=\"H3045\"*." + }, + { + "verseNum": 15, + "text": "As|strong=\"H3117\"* for|strong=\"H3117\"* man, his|strong=\"H3117\"* days|strong=\"H3117\"* are|strong=\"H3117\"* like|strong=\"H3651\"* grass|strong=\"H2682\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* wind|strong=\"H7307\"* passes|strong=\"H5674\"* over|strong=\"H5674\"* it|strong=\"H3588\"*, and|strong=\"H4725\"* it|strong=\"H3588\"* is|strong=\"H7307\"* gone|strong=\"H5674\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s loving kindness|strong=\"H2617\"* is|strong=\"H3068\"* from|strong=\"H5921\"* everlasting|strong=\"H5769\"* to|strong=\"H5704\"* everlasting|strong=\"H5769\"* with|strong=\"H3068\"* those|strong=\"H5921\"* who|strong=\"H3068\"* fear|strong=\"H3373\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 18, + "text": "to|strong=\"H6213\"* those|strong=\"H6213\"* who|strong=\"H8104\"* keep|strong=\"H8104\"* his|strong=\"H8104\"* covenant|strong=\"H1285\"*," + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* established|strong=\"H3559\"* his|strong=\"H3605\"* throne|strong=\"H3678\"* in|strong=\"H3068\"* the|strong=\"H3605\"* heavens|strong=\"H8064\"*." + }, + { + "verseNum": 20, + "text": "Praise|strong=\"H1288\"* Yahweh|strong=\"H3068\"*, you|strong=\"H6213\"* angels|strong=\"H4397\"* of|strong=\"H3068\"* his|strong=\"H3068\"*," + }, + { + "verseNum": 21, + "text": "Praise|strong=\"H1288\"* Yahweh|strong=\"H3068\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* armies|strong=\"H6635\"* of|strong=\"H3068\"* his|strong=\"H3605\"*," + }, + { + "verseNum": 22, + "text": "Praise|strong=\"H1288\"* Yahweh|strong=\"H3068\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* works|strong=\"H4639\"* of|strong=\"H3068\"* his|strong=\"H3605\"*," + } + ] + }, + { + "chapterNum": 104, + "verses": [ + { + "verseNum": 1, + "text": "Bless|strong=\"H1288\"* Yahweh|strong=\"H3068\"*, my|strong=\"H3068\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H5186\"* covers|strong=\"H5844\"* himself|strong=\"H5844\"* with|strong=\"H8064\"* light as|strong=\"H8064\"* with|strong=\"H8064\"* a|strong=\"H3068\"* garment|strong=\"H8008\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H5921\"* lays|strong=\"H7760\"* the|strong=\"H5921\"* beams|strong=\"H7136\"* of|strong=\"H7307\"* his|strong=\"H7760\"* rooms|strong=\"H5944\"* in|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H6213\"* makes|strong=\"H6213\"* his|strong=\"H6213\"* messengers|strong=\"H4397\"*+ 104:4 or, angels* winds|strong=\"H7307\"*," + }, + { + "verseNum": 5, + "text": "He|strong=\"H5921\"* laid|strong=\"H3245\"* the|strong=\"H5921\"* foundations|strong=\"H3245\"* of|strong=\"H5921\"* the|strong=\"H5921\"* earth," + }, + { + "verseNum": 6, + "text": "You|strong=\"H5921\"* covered|strong=\"H3680\"* it|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H5921\"* deep|strong=\"H8415\"* as|strong=\"H2022\"* with|strong=\"H5921\"* a|strong=\"H3068\"* cloak." + }, + { + "verseNum": 7, + "text": "At|strong=\"H1606\"* your|strong=\"H4480\"* rebuke|strong=\"H1606\"* they|strong=\"H7482\"* fled|strong=\"H5127\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5927\"* mountains|strong=\"H2022\"* rose|strong=\"H5927\"*," + }, + { + "verseNum": 9, + "text": "You|strong=\"H7725\"* have set|strong=\"H7760\"* a|strong=\"H3068\"* boundary|strong=\"H1366\"* that|strong=\"H7725\"* they|strong=\"H1077\"* may|strong=\"H7725\"* not|strong=\"H1077\"* pass|strong=\"H5674\"* over|strong=\"H5674\"*," + }, + { + "verseNum": 10, + "text": "He|strong=\"H1980\"* sends|strong=\"H7971\"* springs|strong=\"H4599\"* into|strong=\"H1980\"* the|strong=\"H7971\"* valleys|strong=\"H5158\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3605\"* give|strong=\"H8248\"* drink|strong=\"H8248\"* to|strong=\"H7704\"* every|strong=\"H3605\"* animal|strong=\"H2416\"* of|strong=\"H7704\"* the|strong=\"H3605\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* birds|strong=\"H5775\"* of|strong=\"H6963\"* the|strong=\"H5921\"* sky|strong=\"H8064\"* nest|strong=\"H7931\"* by|strong=\"H5921\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "He waters|strong=\"H8248\"* the|strong=\"H8248\"* mountains|strong=\"H2022\"* from|strong=\"H2022\"* his|strong=\"H7646\"* rooms|strong=\"H5944\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H4480\"* causes|strong=\"H3318\"* the|strong=\"H4480\"* grass|strong=\"H2682\"* to|strong=\"H3318\"* grow|strong=\"H6779\"* for|strong=\"H3318\"* the|strong=\"H4480\"* livestock," + }, + { + "verseNum": 15, + "text": "wine|strong=\"H3196\"* that|strong=\"H8081\"* makes|strong=\"H8055\"* the|strong=\"H6440\"* heart|strong=\"H3824\"* of|strong=\"H6440\"* man|strong=\"H6440\"* glad|strong=\"H8055\"*," + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"*’s trees|strong=\"H6086\"* are|strong=\"H3068\"* well watered," + }, + { + "verseNum": 17, + "text": "where|strong=\"H8033\"* the|strong=\"H8033\"* birds|strong=\"H6833\"* make|strong=\"H7077\"* their|strong=\"H8033\"* nests|strong=\"H7077\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H8227\"* high|strong=\"H1364\"* mountains|strong=\"H2022\"* are|strong=\"H2022\"* for|strong=\"H5553\"* the|strong=\"H8227\"* wild|strong=\"H3277\"* goats|strong=\"H3277\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H6213\"* appointed|strong=\"H4150\"* the|strong=\"H6213\"* moon|strong=\"H3394\"* for|strong=\"H6213\"* seasons|strong=\"H4150\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H3605\"* make|strong=\"H7896\"* darkness|strong=\"H2822\"*, and|strong=\"H3915\"* it|strong=\"H1961\"* is|strong=\"H3605\"* night|strong=\"H3915\"*," + }, + { + "verseNum": 21, + "text": "The|strong=\"H1245\"* young|strong=\"H3715\"* lions|strong=\"H3715\"* roar|strong=\"H7580\"* after|strong=\"H1245\"* their|strong=\"H1245\"* prey|strong=\"H2964\"*," + }, + { + "verseNum": 22, + "text": "The|strong=\"H8121\"* sun|strong=\"H8121\"* rises|strong=\"H2224\"*, and|strong=\"H8121\"* they|strong=\"H2224\"* steal away," + }, + { + "verseNum": 23, + "text": "Man goes|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H5704\"* his|strong=\"H3318\"* work|strong=\"H6467\"*," + }, + { + "verseNum": 24, + "text": "Yahweh|strong=\"H3068\"*, how|strong=\"H4100\"* many|strong=\"H7231\"* are|strong=\"H4100\"* your|strong=\"H3068\"* works|strong=\"H4639\"*!" + }, + { + "verseNum": 25, + "text": "There|strong=\"H8033\"* is|strong=\"H2088\"* the|strong=\"H3027\"* sea|strong=\"H3220\"*, great|strong=\"H1419\"* and|strong=\"H1419\"* wide|strong=\"H7342\"*," + }, + { + "verseNum": 26, + "text": "There|strong=\"H8033\"* the|strong=\"H8033\"* ships go|strong=\"H1980\"*," + }, + { + "verseNum": 27, + "text": "These|strong=\"H3605\"* all|strong=\"H3605\"* wait|strong=\"H7663\"* for|strong=\"H6256\"* you|strong=\"H5414\"*," + }, + { + "verseNum": 28, + "text": "You|strong=\"H5414\"* give|strong=\"H5414\"* to|strong=\"H5414\"* them|strong=\"H5414\"*; they|strong=\"H1992\"* gather|strong=\"H3950\"*." + }, + { + "verseNum": 29, + "text": "You|strong=\"H6440\"* hide|strong=\"H5641\"* your|strong=\"H6440\"* face|strong=\"H6440\"*; they|strong=\"H6440\"* are|strong=\"H6440\"* troubled." + }, + { + "verseNum": 30, + "text": "You|strong=\"H6440\"* send|strong=\"H7971\"* out|strong=\"H7971\"* your|strong=\"H6440\"* Spirit|strong=\"H7307\"* and|strong=\"H7971\"* they|strong=\"H6440\"* are|strong=\"H6440\"* created|strong=\"H1254\"*." + }, + { + "verseNum": 31, + "text": "Let|strong=\"H8055\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* endure|strong=\"H1961\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 32, + "text": "He looks|strong=\"H5027\"* at|strong=\"H2022\"* the|strong=\"H5060\"* earth, and|strong=\"H2022\"* it|strong=\"H5060\"* trembles|strong=\"H7460\"*." + }, + { + "verseNum": 33, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* sing|strong=\"H7891\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* as|strong=\"H3068\"* long|strong=\"H5750\"* as|strong=\"H3068\"* I|strong=\"H3068\"* live|strong=\"H2416\"*." + }, + { + "verseNum": 34, + "text": "Let|strong=\"H8055\"* my|strong=\"H3068\"* meditation|strong=\"H7879\"* be|strong=\"H3068\"* sweet|strong=\"H6149\"* to|strong=\"H3068\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 35, + "text": "Let|strong=\"H5315\"* sinners|strong=\"H2400\"* be|strong=\"H5750\"* consumed|strong=\"H8552\"* out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3068\"* earth." + } + ] + }, + { + "chapterNum": 105, + "verses": [ + { + "verseNum": 1, + "text": "Give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*! Call|strong=\"H7121\"* on|strong=\"H3068\"* his|strong=\"H3068\"* name|strong=\"H8034\"*!" + }, + { + "verseNum": 2, + "text": "Sing|strong=\"H7891\"* to|strong=\"H2167\"* him|strong=\"H3605\"*, sing|strong=\"H7891\"* praises|strong=\"H2167\"* to|strong=\"H2167\"* him|strong=\"H3605\"*!" + }, + { + "verseNum": 3, + "text": "Glory|strong=\"H1984\"* in|strong=\"H3068\"* his|strong=\"H3068\"* holy|strong=\"H6944\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 4, + "text": "Seek|strong=\"H1245\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* his|strong=\"H3068\"* strength|strong=\"H5797\"*." + }, + { + "verseNum": 5, + "text": "Remember|strong=\"H2142\"* his|strong=\"H2142\"* marvelous|strong=\"H6381\"* works|strong=\"H6381\"* that|strong=\"H6213\"* he|strong=\"H6213\"* has|strong=\"H6213\"* done|strong=\"H6213\"*:" + }, + { + "verseNum": 6, + "text": "you|strong=\"H2233\"* offspring|strong=\"H2233\"* of|strong=\"H1121\"* Abraham, his|strong=\"H3290\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 7, + "text": "He|strong=\"H1931\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, our|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H1285\"* has|strong=\"H1697\"* remembered|strong=\"H2142\"* his|strong=\"H6680\"* covenant|strong=\"H1285\"* forever|strong=\"H5769\"*," + }, + { + "verseNum": 9, + "text": "the|strong=\"H3772\"* covenant which he made|strong=\"H3772\"* with|strong=\"H3772\"* Abraham," + }, + { + "verseNum": 10, + "text": "and|strong=\"H3478\"* confirmed|strong=\"H5975\"* it|strong=\"H5975\"* to|strong=\"H3478\"* Jacob|strong=\"H3290\"* for|strong=\"H2706\"* a|strong=\"H3068\"* statute|strong=\"H2706\"*;" + }, + { + "verseNum": 11, + "text": "saying, “To|strong=\"H5414\"* you|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* the|strong=\"H5414\"* land|strong=\"H5159\"* of|strong=\"H5159\"* Canaan|strong=\"H3667\"*," + }, + { + "verseNum": 12, + "text": "when|strong=\"H1961\"* they were|strong=\"H1961\"* but|strong=\"H1961\"* a|strong=\"H3068\"* few|strong=\"H4592\"* men|strong=\"H4962\"* in|strong=\"H4962\"* number|strong=\"H4557\"*," + }, + { + "verseNum": 13, + "text": "They|strong=\"H5971\"* went|strong=\"H1980\"* about|strong=\"H1980\"* from|strong=\"H1980\"* nation|strong=\"H1471\"* to|strong=\"H1980\"* nation|strong=\"H1471\"*," + }, + { + "verseNum": 14, + "text": "He|strong=\"H3808\"* allowed no|strong=\"H3808\"* one|strong=\"H3808\"* to|strong=\"H5921\"* do them|strong=\"H5921\"* wrong|strong=\"H6231\"*." + }, + { + "verseNum": 15, + "text": "“Don’t touch|strong=\"H5060\"* my|strong=\"H5060\"* anointed|strong=\"H4899\"* ones|strong=\"H4899\"*!" + }, + { + "verseNum": 16, + "text": "He|strong=\"H3605\"* called|strong=\"H7121\"* for|strong=\"H5921\"* a|strong=\"H3068\"* famine|strong=\"H7458\"* on|strong=\"H5921\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 17, + "text": "He|strong=\"H7971\"* sent|strong=\"H7971\"* a|strong=\"H3068\"* man|strong=\"H6440\"* before|strong=\"H6440\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"H5315\"* bruised his|strong=\"H6031\"* feet|strong=\"H7272\"* with|strong=\"H5315\"* shackles|strong=\"H3525\"*." + }, + { + "verseNum": 19, + "text": "until|strong=\"H5704\"* the|strong=\"H3068\"* time|strong=\"H6256\"* that|strong=\"H3068\"* his|strong=\"H3068\"* word|strong=\"H1697\"* happened|strong=\"H1697\"*," + }, + { + "verseNum": 20, + "text": "The|strong=\"H7971\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* and|strong=\"H7971\"* freed him|strong=\"H7971\"*," + }, + { + "verseNum": 21, + "text": "He|strong=\"H3605\"* made|strong=\"H7760\"* him|strong=\"H7760\"* lord of|strong=\"H1004\"* his|strong=\"H3605\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 22, + "text": "to|strong=\"H5315\"* discipline his|strong=\"H2449\"* princes|strong=\"H8269\"* at|strong=\"H5315\"* his|strong=\"H2449\"* pleasure|strong=\"H5315\"*," + }, + { + "verseNum": 23, + "text": "Israel|strong=\"H3478\"* also|strong=\"H3478\"* came|strong=\"H3478\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H5971\"* increased|strong=\"H6105\"* his|strong=\"H5971\"* people|strong=\"H5971\"* greatly|strong=\"H3966\"*," + }, + { + "verseNum": 25, + "text": "He|strong=\"H5971\"* turned|strong=\"H2015\"* their|strong=\"H2015\"* heart|strong=\"H3820\"* to|strong=\"H3820\"* hate|strong=\"H8130\"* his|strong=\"H8130\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 26, + "text": "He|strong=\"H7971\"* sent|strong=\"H7971\"* Moses|strong=\"H4872\"*, his|strong=\"H7971\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 27, + "text": "They|strong=\"H1697\"* performed|strong=\"H7760\"* miracles|strong=\"H4159\"* among them|strong=\"H7760\"*," + }, + { + "verseNum": 28, + "text": "He|strong=\"H3808\"* sent|strong=\"H7971\"* darkness|strong=\"H2822\"*, and|strong=\"H7971\"* made|strong=\"H2821\"* it|strong=\"H7971\"* dark|strong=\"H2822\"*." + }, + { + "verseNum": 29, + "text": "He|strong=\"H1818\"* turned|strong=\"H2015\"* their|strong=\"H2015\"* waters|strong=\"H4325\"* into|strong=\"H2015\"* blood|strong=\"H1818\"*," + }, + { + "verseNum": 30, + "text": "Their land swarmed|strong=\"H8317\"* with|strong=\"H4428\"* frogs|strong=\"H6854\"*," + }, + { + "verseNum": 31, + "text": "He|strong=\"H3605\"* spoke, and|strong=\"H3605\"* swarms|strong=\"H6157\"* of|strong=\"H1366\"* flies|strong=\"H6157\"* came|strong=\"H1366\"*," + }, + { + "verseNum": 32, + "text": "He|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* hail|strong=\"H1259\"* for|strong=\"H5414\"* rain|strong=\"H1653\"*," + }, + { + "verseNum": 33, + "text": "He|strong=\"H5221\"* struck|strong=\"H5221\"* their|strong=\"H7665\"* vines|strong=\"H1612\"* and|strong=\"H6086\"* also|strong=\"H5221\"* their|strong=\"H7665\"* fig|strong=\"H8384\"* trees|strong=\"H6086\"*," + }, + { + "verseNum": 34, + "text": "He spoke, and|strong=\"H4557\"* the|strong=\"H4557\"* locusts|strong=\"H3218\"* came" + }, + { + "verseNum": 35, + "text": "They|strong=\"H3605\"* ate up|strong=\"H3605\"* every|strong=\"H3605\"* plant|strong=\"H6212\"* in|strong=\"H3605\"* their|strong=\"H3605\"* land," + }, + { + "verseNum": 36, + "text": "He|strong=\"H3605\"* struck|strong=\"H5221\"* also|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* in|strong=\"H1060\"* their|strong=\"H3605\"* land," + }, + { + "verseNum": 37, + "text": "He|strong=\"H3318\"* brought|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H3318\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 38, + "text": "Egypt|strong=\"H4714\"* was|strong=\"H4714\"* glad|strong=\"H8055\"* when|strong=\"H3588\"* they|strong=\"H3588\"* departed|strong=\"H3318\"*," + }, + { + "verseNum": 39, + "text": "He spread|strong=\"H6566\"* a|strong=\"H3068\"* cloud|strong=\"H6051\"* for|strong=\"H3915\"* a|strong=\"H3068\"* covering|strong=\"H4539\"*," + }, + { + "verseNum": 40, + "text": "They asked|strong=\"H7592\"*, and|strong=\"H8064\"* he|strong=\"H8064\"* brought quails|strong=\"H7958\"*," + }, + { + "verseNum": 41, + "text": "He|strong=\"H1980\"* opened|strong=\"H6605\"* the|strong=\"H1980\"* rock|strong=\"H6697\"*, and|strong=\"H1980\"* waters|strong=\"H4325\"* gushed|strong=\"H4325\"* out|strong=\"H1980\"*." + }, + { + "verseNum": 42, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* remembered|strong=\"H2142\"* his|strong=\"H2142\"* holy|strong=\"H6944\"* word|strong=\"H1697\"*," + }, + { + "verseNum": 43, + "text": "He|strong=\"H3318\"* brought|strong=\"H3318\"* his|strong=\"H3318\"* people|strong=\"H5971\"* out|strong=\"H3318\"* with|strong=\"H3318\"* joy|strong=\"H8342\"*," + }, + { + "verseNum": 44, + "text": "He|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* the|strong=\"H5414\"* lands of|strong=\"H1471\"* the|strong=\"H5414\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 45, + "text": "that|strong=\"H5668\"* they might keep|strong=\"H8104\"* his|strong=\"H8104\"* statutes|strong=\"H2706\"*," + } + ] + }, + { + "chapterNum": 106, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 2, + "text": "Who|strong=\"H4310\"* can|strong=\"H4310\"* utter|strong=\"H4448\"* the|strong=\"H3605\"* mighty|strong=\"H1369\"* acts|strong=\"H1369\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 3, + "text": "Blessed are|strong=\"H4941\"* those|strong=\"H3605\"* who|strong=\"H3605\"* keep|strong=\"H8104\"* justice|strong=\"H4941\"*." + }, + { + "verseNum": 4, + "text": "Remember|strong=\"H2142\"* me|strong=\"H2142\"*, Yahweh|strong=\"H3068\"*, with|strong=\"H3068\"* the|strong=\"H3068\"* favor|strong=\"H7522\"* that|strong=\"H5971\"* you|strong=\"H6485\"* show to|strong=\"H3068\"* your|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 5, + "text": "that|strong=\"H7200\"* I|strong=\"H7200\"* may|strong=\"H1471\"* see|strong=\"H7200\"* the|strong=\"H7200\"* prosperity|strong=\"H2896\"* of|strong=\"H5159\"* your|strong=\"H7200\"* chosen," + }, + { + "verseNum": 6, + "text": "We have|strong=\"H5973\"* sinned|strong=\"H2398\"* with|strong=\"H5973\"* our|strong=\"H5973\"* fathers." + }, + { + "verseNum": 7, + "text": "Our|strong=\"H5921\"* fathers didn’t understand|strong=\"H7919\"* your|strong=\"H5921\"* wonders|strong=\"H6381\"* in|strong=\"H5921\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 8, + "text": "Nevertheless he|strong=\"H3045\"* saved|strong=\"H3467\"* them|strong=\"H4616\"* for|strong=\"H8034\"* his|strong=\"H3045\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*," + }, + { + "verseNum": 9, + "text": "He|strong=\"H3212\"* rebuked|strong=\"H1605\"* the|strong=\"H1605\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"* also, and|strong=\"H3212\"* it|strong=\"H3212\"* was|strong=\"H3220\"* dried|strong=\"H2717\"* up|strong=\"H2717\"*;" + }, + { + "verseNum": 10, + "text": "He|strong=\"H3027\"* saved|strong=\"H3467\"* them|strong=\"H3027\"* from|strong=\"H3027\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* him|strong=\"H3027\"* who|strong=\"H8130\"* hated|strong=\"H8130\"* them|strong=\"H3027\"*," + }, + { + "verseNum": 11, + "text": "The|strong=\"H3680\"* waters|strong=\"H4325\"* covered|strong=\"H3680\"* their|strong=\"H1992\"* adversaries|strong=\"H6862\"*." + }, + { + "verseNum": 12, + "text": "Then they|strong=\"H1697\"* believed his|strong=\"H7891\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"H3808\"* soon|strong=\"H4116\"* forgot|strong=\"H7911\"* his|strong=\"H7911\"* works|strong=\"H4639\"*." + }, + { + "verseNum": 14, + "text": "but gave in to|strong=\"H4057\"* craving in the|strong=\"H5254\"* desert|strong=\"H4057\"*," + }, + { + "verseNum": 15, + "text": "He|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* their|strong=\"H5414\"* request|strong=\"H7596\"*," + }, + { + "verseNum": 16, + "text": "They|strong=\"H3068\"* envied|strong=\"H7065\"* Moses|strong=\"H4872\"* also|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* camp|strong=\"H4264\"*," + }, + { + "verseNum": 17, + "text": "The|strong=\"H5921\"* earth opened|strong=\"H6605\"* and|strong=\"H1885\"* swallowed|strong=\"H1104\"* up|strong=\"H1104\"* Dathan|strong=\"H1885\"*," + }, + { + "verseNum": 18, + "text": "A|strong=\"H3068\"* fire|strong=\"H3857\"* was|strong=\"H5712\"* kindled|strong=\"H1197\"* in|strong=\"H1197\"* their|strong=\"H7563\"* company|strong=\"H5712\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* calf|strong=\"H5695\"* in|strong=\"H6213\"* Horeb|strong=\"H2722\"*," + }, + { + "verseNum": 20, + "text": "Thus they|strong=\"H4171\"* exchanged|strong=\"H4171\"* their|strong=\"H4171\"* glory|strong=\"H3519\"*" + }, + { + "verseNum": 21, + "text": "They|strong=\"H6213\"* forgot|strong=\"H7911\"* God, their|strong=\"H6213\"* Savior|strong=\"H3467\"*," + }, + { + "verseNum": 22, + "text": "wondrous|strong=\"H6381\"* works|strong=\"H6381\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H5921\"* Ham|strong=\"H2526\"*," + }, + { + "verseNum": 23, + "text": "Therefore|strong=\"H4872\"* he|strong=\"H4872\"* said that|strong=\"H7725\"* he|strong=\"H4872\"* would|strong=\"H4872\"* destroy|strong=\"H7843\"* them|strong=\"H7725\"*," + }, + { + "verseNum": 24, + "text": "Yes, they|strong=\"H3808\"* despised|strong=\"H3988\"* the|strong=\"H1697\"* pleasant|strong=\"H2532\"* land." + }, + { + "verseNum": 25, + "text": "but|strong=\"H3808\"* murmured|strong=\"H7279\"* in|strong=\"H3068\"* their|strong=\"H3068\"* tents," + }, + { + "verseNum": 26, + "text": "Therefore he|strong=\"H3027\"* swore|strong=\"H5375\"* to|strong=\"H3027\"* them|strong=\"H1992\"*" + }, + { + "verseNum": 27, + "text": "that|strong=\"H1471\"* he|strong=\"H2233\"* would overthrow|strong=\"H5307\"* their|strong=\"H5307\"* offspring|strong=\"H2233\"* among the|strong=\"H5307\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 28, + "text": "They joined|strong=\"H6775\"* themselves also|strong=\"H4191\"* to|strong=\"H4191\"* Baal|strong=\"H1187\"* Peor|strong=\"H1187\"*," + }, + { + "verseNum": 29, + "text": "Thus they provoked|strong=\"H3707\"* him|strong=\"H3707\"* to|strong=\"H4611\"* anger|strong=\"H3707\"* with|strong=\"H3707\"* their|strong=\"H6555\"* deeds|strong=\"H4611\"*." + }, + { + "verseNum": 30, + "text": "Then|strong=\"H5975\"* Phinehas|strong=\"H6372\"* stood|strong=\"H5975\"* up|strong=\"H5975\"* and|strong=\"H5975\"* executed judgment|strong=\"H6419\"*," + }, + { + "verseNum": 31, + "text": "That|strong=\"H5704\"* was credited|strong=\"H2803\"* to|strong=\"H5704\"* him|strong=\"H2803\"* for|strong=\"H5704\"* righteousness|strong=\"H6666\"*," + }, + { + "verseNum": 32, + "text": "They|strong=\"H5921\"* angered|strong=\"H7107\"* him|strong=\"H5921\"* also|strong=\"H4872\"* at|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* Meribah," + }, + { + "verseNum": 33, + "text": "because|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H8193\"* rebellious|strong=\"H4784\"* against|strong=\"H4784\"* his|strong=\"H3588\"* spirit|strong=\"H7307\"*," + }, + { + "verseNum": 34, + "text": "They|strong=\"H1992\"* didn’t destroy|strong=\"H8045\"* the|strong=\"H3068\"* peoples|strong=\"H5971\"*," + }, + { + "verseNum": 35, + "text": "but mixed themselves with|strong=\"H4639\"* the|strong=\"H3925\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 36, + "text": "They|strong=\"H1992\"* served|strong=\"H5647\"* their|strong=\"H1992\"* idols|strong=\"H6091\"*," + }, + { + "verseNum": 37, + "text": "Yes, they sacrificed|strong=\"H2076\"* their|strong=\"H2076\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H2076\"* daughters|strong=\"H1323\"* to|strong=\"H1121\"* demons|strong=\"H7700\"*." + }, + { + "verseNum": 38, + "text": "They|strong=\"H3667\"* shed|strong=\"H8210\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"*," + }, + { + "verseNum": 39, + "text": "Thus they were defiled|strong=\"H2930\"* with|strong=\"H4639\"* their|strong=\"H2930\"* works|strong=\"H4639\"*," + }, + { + "verseNum": 40, + "text": "Therefore|strong=\"H3068\"* Yahweh|strong=\"H3068\"* burned|strong=\"H2734\"* with|strong=\"H3068\"* anger against|strong=\"H2734\"* his|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 41, + "text": "He|strong=\"H3027\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5414\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 42, + "text": "Their|strong=\"H8478\"* enemies|strong=\"H3027\"* also|strong=\"H3027\"* oppressed|strong=\"H3905\"* them|strong=\"H3027\"*." + }, + { + "verseNum": 43, + "text": "He rescued|strong=\"H5337\"* them|strong=\"H1992\"* many|strong=\"H7227\"* times|strong=\"H6471\"*," + }, + { + "verseNum": 44, + "text": "Nevertheless he|strong=\"H7200\"* regarded|strong=\"H7200\"* their|strong=\"H8085\"* distress|strong=\"H6862\"*," + }, + { + "verseNum": 45, + "text": "He|strong=\"H1285\"* remembered|strong=\"H2142\"* for|strong=\"H2617\"* them|strong=\"H1992\"* his|strong=\"H2142\"* covenant|strong=\"H1285\"*," + }, + { + "verseNum": 46, + "text": "He|strong=\"H3605\"* made|strong=\"H5414\"* them|strong=\"H5414\"* also to|strong=\"H5414\"* be|strong=\"H5414\"* pitied|strong=\"H7356\"*" + }, + { + "verseNum": 47, + "text": "Save|strong=\"H3467\"* us|strong=\"H4480\"*, Yahweh|strong=\"H3068\"*, our|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 48, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*," + } + ] + }, + { + "chapterNum": 107, + "verses": [ + { + "verseNum": 1, + "text": "Give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*,+ 107:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* for|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H3068\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 2, + "text": "Let|strong=\"H1350\"* the|strong=\"H3068\"* redeemed|strong=\"H1350\"* by|strong=\"H3027\"* Yahweh|strong=\"H3068\"* say so|strong=\"H1350\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H3220\"* gathered|strong=\"H6908\"* out|strong=\"H6908\"* of|strong=\"H3220\"* the|strong=\"H6908\"* lands," + }, + { + "verseNum": 4, + "text": "They|strong=\"H3808\"* wandered|strong=\"H8582\"* in|strong=\"H5892\"* the|strong=\"H1870\"* wilderness|strong=\"H4057\"* in|strong=\"H5892\"* a|strong=\"H3068\"* desert|strong=\"H4057\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 5, + "text": "Hungry|strong=\"H7457\"* and|strong=\"H5315\"* thirsty|strong=\"H6771\"*," + }, + { + "verseNum": 6, + "text": "Then|strong=\"H3068\"* they|strong=\"H1992\"* cried|strong=\"H6817\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* their|strong=\"H3068\"* trouble|strong=\"H6862\"*," + }, + { + "verseNum": 7, + "text": "He|strong=\"H5892\"* led|strong=\"H3212\"* them|strong=\"H1869\"* also by|strong=\"H1870\"* a|strong=\"H3068\"* straight|strong=\"H3477\"* way|strong=\"H1870\"*," + }, + { + "verseNum": 8, + "text": "Let them|strong=\"H1121\"* praise|strong=\"H3034\"* Yahweh|strong=\"H3068\"* for|strong=\"H3068\"* his|strong=\"H3068\"* loving kindness|strong=\"H2617\"*," + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* satisfies|strong=\"H7646\"* the|strong=\"H3588\"* longing|strong=\"H8264\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 10, + "text": "Some sat|strong=\"H3427\"* in|strong=\"H3427\"* darkness|strong=\"H2822\"* and|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* shadow|strong=\"H6757\"* of|strong=\"H3427\"* death|strong=\"H6757\"*," + }, + { + "verseNum": 11, + "text": "because|strong=\"H3588\"* they|strong=\"H3588\"* rebelled|strong=\"H4784\"* against|strong=\"H4784\"* the|strong=\"H3588\"* words of|strong=\"H6098\"* God,+ 107:11 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).*" + }, + { + "verseNum": 12, + "text": "Therefore he|strong=\"H3820\"* brought|strong=\"H3665\"* down|strong=\"H3782\"* their|strong=\"H3665\"* heart|strong=\"H3820\"* with|strong=\"H3820\"* labor|strong=\"H5999\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H3068\"* they|strong=\"H1992\"* cried|strong=\"H2199\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* their|strong=\"H3068\"* trouble|strong=\"H6862\"*," + }, + { + "verseNum": 14, + "text": "He|strong=\"H3318\"* brought|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3318\"* darkness|strong=\"H2822\"* and|strong=\"H3318\"* the|strong=\"H3318\"* shadow|strong=\"H6757\"* of|strong=\"H3318\"* death|strong=\"H6757\"*," + }, + { + "verseNum": 15, + "text": "Let them|strong=\"H1121\"* praise|strong=\"H3034\"* Yahweh|strong=\"H3068\"* for|strong=\"H3068\"* his|strong=\"H3068\"* loving kindness|strong=\"H2617\"*," + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* broken|strong=\"H7665\"* the|strong=\"H3588\"* gates|strong=\"H1817\"* of|strong=\"H1817\"* bronze|strong=\"H5178\"*," + }, + { + "verseNum": 17, + "text": "Fools are|strong=\"H6588\"* afflicted|strong=\"H6031\"* because|strong=\"H1870\"* of|strong=\"H1870\"* their|strong=\"H1870\"* disobedience," + }, + { + "verseNum": 18, + "text": "Their|strong=\"H3605\"* soul|strong=\"H5315\"* abhors|strong=\"H8581\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H8179\"* food." + }, + { + "verseNum": 19, + "text": "Then|strong=\"H3068\"* they|strong=\"H1992\"* cry|strong=\"H2199\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* their|strong=\"H3068\"* trouble|strong=\"H6862\"*," + }, + { + "verseNum": 20, + "text": "He|strong=\"H7971\"* sends|strong=\"H7971\"* his|strong=\"H7971\"* word|strong=\"H1697\"*, and|strong=\"H7971\"* heals|strong=\"H7495\"* them|strong=\"H7971\"*," + }, + { + "verseNum": 21, + "text": "Let them|strong=\"H1121\"* praise|strong=\"H3034\"* Yahweh|strong=\"H3068\"* for|strong=\"H3068\"* his|strong=\"H3068\"* loving kindness|strong=\"H2617\"*," + }, + { + "verseNum": 22, + "text": "Let them|strong=\"H2076\"* offer|strong=\"H2076\"* the|strong=\"H5608\"* sacrifices|strong=\"H2077\"* of|strong=\"H2077\"* thanksgiving|strong=\"H8426\"*," + }, + { + "verseNum": 23, + "text": "Those|strong=\"H6213\"* who|strong=\"H7227\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H6213\"* sea|strong=\"H3220\"* in|strong=\"H6213\"* ships," + }, + { + "verseNum": 24, + "text": "these|strong=\"H1992\"* see|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s deeds|strong=\"H4639\"*," + }, + { + "verseNum": 25, + "text": "For|strong=\"H5975\"* he|strong=\"H7307\"* commands, and|strong=\"H5975\"* raises the|strong=\"H5975\"* stormy|strong=\"H5591\"* wind|strong=\"H7307\"*," + }, + { + "verseNum": 26, + "text": "They|strong=\"H5315\"* mount|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3381\"* the|strong=\"H5927\"* sky|strong=\"H8064\"*; they|strong=\"H5315\"* go|strong=\"H5927\"* down|strong=\"H3381\"* again to|strong=\"H3381\"* the|strong=\"H5927\"* depths|strong=\"H8415\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"H3605\"* reel|strong=\"H5128\"* back and|strong=\"H2451\"* forth, and|strong=\"H2451\"* stagger|strong=\"H5128\"* like a|strong=\"H3068\"* drunken|strong=\"H7910\"* man|strong=\"H7910\"*," + }, + { + "verseNum": 28, + "text": "Then|strong=\"H3318\"* they|strong=\"H1992\"* cry|strong=\"H6817\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* their|strong=\"H3068\"* trouble|strong=\"H6862\"*," + }, + { + "verseNum": 29, + "text": "He makes the|strong=\"H6965\"* storm|strong=\"H5591\"* a|strong=\"H3068\"* calm|strong=\"H1827\"*," + }, + { + "verseNum": 30, + "text": "Then|strong=\"H3588\"* they|strong=\"H3588\"* are glad|strong=\"H8055\"* because|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H2656\"* calm|strong=\"H8367\"*," + }, + { + "verseNum": 31, + "text": "Let them|strong=\"H1121\"* praise|strong=\"H3034\"* Yahweh|strong=\"H3068\"* for|strong=\"H3068\"* his|strong=\"H3068\"* loving kindness|strong=\"H2617\"*," + }, + { + "verseNum": 32, + "text": "Let them exalt|strong=\"H7311\"* him|strong=\"H1984\"* also|strong=\"H5971\"* in|strong=\"H5971\"* the|strong=\"H1984\"* assembly|strong=\"H6951\"* of|strong=\"H2205\"* the|strong=\"H1984\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 33, + "text": "He|strong=\"H7760\"* turns rivers|strong=\"H5104\"* into|strong=\"H4161\"* a|strong=\"H3068\"* desert|strong=\"H4057\"*," + }, + { + "verseNum": 34, + "text": "and|strong=\"H3427\"* a|strong=\"H3068\"* fruitful|strong=\"H6529\"* land|strong=\"H4420\"* into a|strong=\"H3068\"* salt|strong=\"H4420\"* waste|strong=\"H4420\"*," + }, + { + "verseNum": 35, + "text": "He|strong=\"H7760\"* turns a|strong=\"H3068\"* desert|strong=\"H4057\"* into|strong=\"H4161\"* a|strong=\"H3068\"* pool|strong=\"H4325\"* of|strong=\"H4325\"* water|strong=\"H4325\"*," + }, + { + "verseNum": 36, + "text": "There|strong=\"H8033\"* he|strong=\"H8033\"* makes|strong=\"H3559\"* the|strong=\"H8033\"* hungry|strong=\"H7457\"* live|strong=\"H3427\"*," + }, + { + "verseNum": 37, + "text": "sow|strong=\"H2232\"* fields|strong=\"H7704\"*, plant|strong=\"H5193\"* vineyards|strong=\"H3754\"*," + }, + { + "verseNum": 38, + "text": "He|strong=\"H3808\"* blesses|strong=\"H1288\"* them|strong=\"H1288\"* also, so|strong=\"H3808\"* that|strong=\"H3808\"* they|strong=\"H3808\"* are|strong=\"H3808\"* multiplied|strong=\"H7235\"* greatly|strong=\"H3966\"*." + }, + { + "verseNum": 39, + "text": "Again, they|strong=\"H7451\"* are|strong=\"H7817\"* diminished|strong=\"H4591\"* and|strong=\"H7451\"* bowed|strong=\"H7817\"* down|strong=\"H7817\"*" + }, + { + "verseNum": 40, + "text": "He|strong=\"H3808\"* pours|strong=\"H8210\"* contempt on|strong=\"H5921\"* princes|strong=\"H5081\"*," + }, + { + "verseNum": 41, + "text": "Yet he|strong=\"H7760\"* lifts the|strong=\"H7760\"* needy out|strong=\"H7760\"* of|strong=\"H4940\"* their|strong=\"H7760\"* affliction|strong=\"H6040\"*," + }, + { + "verseNum": 42, + "text": "The|strong=\"H3605\"* upright|strong=\"H3477\"* will|strong=\"H3477\"* see|strong=\"H7200\"* it|strong=\"H7200\"*, and|strong=\"H7200\"* be|strong=\"H6310\"* glad|strong=\"H8055\"*." + }, + { + "verseNum": 43, + "text": "Whoever|strong=\"H4310\"* is|strong=\"H3068\"* wise|strong=\"H2450\"* will|strong=\"H3068\"* pay|strong=\"H8104\"* attention|strong=\"H8104\"* to|strong=\"H3068\"* these|strong=\"H8104\"* things." + } + ] + }, + { + "chapterNum": 108, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"H1732\"* heart is|strong=\"H1732\"* steadfast, God." + }, + { + "verseNum": 2, + "text": "Wake up, harp and|strong=\"H3820\"* lyre!" + }, + { + "verseNum": 3, + "text": "I|strong=\"H5782\"* will give thanks to|strong=\"H7837\"* you, Yahweh|strong=\"H3068\"*, among the|strong=\"H5782\"* nations." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3068\"* your|strong=\"H3068\"* loving kindness is|strong=\"H3068\"* great above the|strong=\"H3068\"* heavens." + }, + { + "verseNum": 5, + "text": "Be|strong=\"H8064\"* exalted, God|strong=\"H8064\"*, above|strong=\"H5921\"* the|strong=\"H5921\"* heavens|strong=\"H8064\"*!" + }, + { + "verseNum": 6, + "text": "That|strong=\"H3605\"* your|strong=\"H3605\"* beloved may|strong=\"H3519\"* be|strong=\"H8064\"* delivered," + }, + { + "verseNum": 7, + "text": "God has|strong=\"H3225\"* spoken from|strong=\"H3467\"* his|strong=\"H3467\"* sanctuary: “In|strong=\"H6030\"* triumph," + }, + { + "verseNum": 8, + "text": "Gilead is|strong=\"H1696\"* mine|strong=\"H1696\"*. Manasseh is|strong=\"H1696\"* mine|strong=\"H1696\"*." + }, + { + "verseNum": 9, + "text": "Moab is|strong=\"H7218\"* my wash pot." + }, + { + "verseNum": 10, + "text": "Who will|strong=\"H4124\"* bring me|strong=\"H5921\"* into|strong=\"H5921\"* the|strong=\"H5921\"* fortified city?" + }, + { + "verseNum": 11, + "text": "Haven’t you|strong=\"H5704\"* rejected us, God|strong=\"H4310\"*?" + }, + { + "verseNum": 12, + "text": "Give us|strong=\"H2186\"* help against the|strong=\"H3318\"* enemy," + }, + { + "verseNum": 13, + "text": "Through God, we|strong=\"H3068\"* will|strong=\"H6862\"* do valiantly," + } + ] + }, + { + "chapterNum": 109, + "verses": [ + { + "verseNum": 1, + "text": "God of|strong=\"H4210\"* my|strong=\"H1732\"* praise|strong=\"H8416\"*, don’t remain|strong=\"H2790\"* silent|strong=\"H2790\"*," + }, + { + "verseNum": 2, + "text": "for|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H7563\"* opened|strong=\"H6605\"* the|strong=\"H5921\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* and|strong=\"H6310\"* the|strong=\"H5921\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* deceit|strong=\"H4820\"* against|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H1697\"* have|strong=\"H1697\"* also surrounded|strong=\"H5437\"* me|strong=\"H5437\"* with|strong=\"H3898\"* words|strong=\"H1697\"* of|strong=\"H1697\"* hatred|strong=\"H8135\"*," + }, + { + "verseNum": 4, + "text": "In|strong=\"H8478\"* return|strong=\"H8478\"* for|strong=\"H8478\"* my|strong=\"H8478\"* love, they|strong=\"H8478\"* are|strong=\"H8478\"* my|strong=\"H8478\"* adversaries|strong=\"H7853\"*;" + }, + { + "verseNum": 5, + "text": "They|strong=\"H5921\"* have|strong=\"H7451\"* rewarded|strong=\"H7760\"* me|strong=\"H5921\"* evil|strong=\"H7451\"* for|strong=\"H5921\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 6, + "text": "Set|strong=\"H5975\"* a|strong=\"H3068\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* over|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H1961\"* he|strong=\"H3318\"* is|strong=\"H7563\"* judged|strong=\"H8199\"*, let|strong=\"H1961\"* him|strong=\"H3318\"* come|strong=\"H1961\"* out|strong=\"H3318\"* guilty|strong=\"H7563\"*." + }, + { + "verseNum": 8, + "text": "Let|strong=\"H1961\"* his|strong=\"H3947\"* days|strong=\"H3117\"* be|strong=\"H1961\"* few|strong=\"H4592\"*." + }, + { + "verseNum": 9, + "text": "Let|strong=\"H1961\"* his|strong=\"H1961\"* children|strong=\"H1121\"* be|strong=\"H1961\"* fatherless|strong=\"H3490\"*," + }, + { + "verseNum": 10, + "text": "Let his|strong=\"H5128\"* children|strong=\"H1121\"* be|strong=\"H1121\"* wandering beggars." + }, + { + "verseNum": 11, + "text": "Let the|strong=\"H3605\"* creditor|strong=\"H5383\"* seize|strong=\"H3605\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3605\"* has|strong=\"H3605\"*." + }, + { + "verseNum": 12, + "text": "Let|strong=\"H1961\"* there|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H1961\"* one|strong=\"H1961\"* to|strong=\"H1961\"* extend|strong=\"H1961\"* kindness|strong=\"H2617\"* to|strong=\"H1961\"* him|strong=\"H2603\"*," + }, + { + "verseNum": 13, + "text": "Let|strong=\"H1961\"* his|strong=\"H1961\"* posterity|strong=\"H1755\"* be|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*." + }, + { + "verseNum": 14, + "text": "Let|strong=\"H2142\"* the|strong=\"H3068\"* iniquity|strong=\"H5771\"* of|strong=\"H3068\"* his|strong=\"H3068\"* fathers be|strong=\"H3068\"* remembered|strong=\"H2142\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "Let|strong=\"H1961\"* them|strong=\"H1961\"* be|strong=\"H1961\"* before|strong=\"H5048\"* Yahweh|strong=\"H3068\"* continually|strong=\"H8548\"*," + }, + { + "verseNum": 16, + "text": "because|strong=\"H3282\"* he|strong=\"H6213\"* didn’t remember|strong=\"H2142\"* to|strong=\"H4191\"* show|strong=\"H6213\"* kindness|strong=\"H2617\"*," + }, + { + "verseNum": 17, + "text": "Yes, he|strong=\"H4480\"* loved cursing|strong=\"H7045\"*, and|strong=\"H1293\"* it|strong=\"H3808\"* came to|strong=\"H2654\"* him|strong=\"H4480\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H7130\"* clothed|strong=\"H3847\"* himself|strong=\"H4325\"* also with|strong=\"H3847\"* cursing|strong=\"H7045\"* as|strong=\"H4325\"* with|strong=\"H3847\"* his|strong=\"H7130\"* garment|strong=\"H4055\"*." + }, + { + "verseNum": 19, + "text": "Let|strong=\"H1961\"* it|strong=\"H1961\"* be|strong=\"H1961\"* to|strong=\"H1961\"* him|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H1961\"* clothing with|strong=\"H2296\"* which he covers|strong=\"H5844\"* himself|strong=\"H5844\"*," + }, + { + "verseNum": 20, + "text": "This|strong=\"H2063\"* is|strong=\"H3068\"* the|strong=\"H5921\"* reward|strong=\"H6468\"* of|strong=\"H3068\"* my|strong=\"H3068\"* adversaries|strong=\"H7853\"* from|strong=\"H5921\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 21, + "text": "But|strong=\"H3588\"* deal|strong=\"H6213\"* with|strong=\"H6213\"* me|strong=\"H6213\"*, Yahweh|strong=\"H3068\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"*,+ 109:21 The word translated “Lord” is “Adonai.”* for|strong=\"H3588\"* your|strong=\"H6213\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*," + }, + { + "verseNum": 22, + "text": "for|strong=\"H3588\"* I|strong=\"H3588\"* am poor|strong=\"H6041\"* and|strong=\"H6041\"* needy|strong=\"H6041\"*." + }, + { + "verseNum": 23, + "text": "I|strong=\"H1980\"* fade away|strong=\"H1980\"* like|strong=\"H1980\"* an evening shadow|strong=\"H6738\"*." + }, + { + "verseNum": 24, + "text": "My|strong=\"H1320\"* knees|strong=\"H1290\"* are|strong=\"H1290\"* weak|strong=\"H3782\"* through|strong=\"H3782\"* fasting|strong=\"H6685\"*." + }, + { + "verseNum": 25, + "text": "I|strong=\"H7200\"* have|strong=\"H1961\"* also|strong=\"H1992\"* become|strong=\"H1961\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* to|strong=\"H1961\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 26, + "text": "Help|strong=\"H5826\"* me|strong=\"H3467\"*, Yahweh|strong=\"H3068\"*, my|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 27, + "text": "that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* this|strong=\"H2063\"* is|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*;" + }, + { + "verseNum": 28, + "text": "They|strong=\"H1992\"* may|strong=\"H1992\"* curse|strong=\"H7043\"*, but|strong=\"H1992\"* you|strong=\"H1288\"* bless|strong=\"H1288\"*." + }, + { + "verseNum": 29, + "text": "Let my adversaries|strong=\"H7853\"* be|strong=\"H7853\"* clothed|strong=\"H3847\"* with|strong=\"H3847\"* dishonor|strong=\"H3639\"*." + }, + { + "verseNum": 30, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H3034\"* great|strong=\"H7227\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* my|strong=\"H3068\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H5315\"* stand|strong=\"H5975\"* at|strong=\"H5975\"* the|strong=\"H3588\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* of|strong=\"H5315\"* the|strong=\"H3588\"* needy," + } + ] + }, + { + "chapterNum": 110, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H5002\"* to|strong=\"H5704\"* my|strong=\"H3068\"* Lord|strong=\"H3068\"*, “Sit|strong=\"H3427\"* at|strong=\"H3427\"* my|strong=\"H3068\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*," + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* send|strong=\"H7971\"* out|strong=\"H7971\"* the|strong=\"H3068\"* rod|strong=\"H4294\"* of|strong=\"H3068\"* your|strong=\"H3068\"* strength|strong=\"H5797\"* out|strong=\"H7971\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"*." + }, + { + "verseNum": 3, + "text": "Your|strong=\"H3117\"* people|strong=\"H5971\"* offer themselves willingly|strong=\"H5071\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H3117\"* power|strong=\"H2428\"*, in|strong=\"H3117\"* holy|strong=\"H6944\"* array|strong=\"H1926\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* change|strong=\"H5162\"* his|strong=\"H3068\"* mind|strong=\"H5162\"*:" + }, + { + "verseNum": 5, + "text": "The|strong=\"H5921\"* Lord|strong=\"H3225\"* is|strong=\"H3117\"* at|strong=\"H5921\"* your|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H5921\"* will|strong=\"H1471\"* judge|strong=\"H1777\"* among|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3651\"* will|strong=\"H5158\"* drink|strong=\"H8354\"* of|strong=\"H7218\"* the|strong=\"H5921\"* brook|strong=\"H5158\"* on|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"*;" + } + ] + }, + { + "chapterNum": 111, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yah|strong=\"H3068\"*!+ 111:1 Psalm 111 is an acrostic poem, with each verse after the initial “Praise Yah!” starting with a letter of the alphabet (ordered from Alef to Tav).*" + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"*’s works|strong=\"H4639\"* are|strong=\"H3068\"* great|strong=\"H1419\"*," + }, + { + "verseNum": 3, + "text": "His|strong=\"H5975\"* work|strong=\"H6467\"* is|strong=\"H6467\"* honor|strong=\"H1935\"* and|strong=\"H5975\"* majesty|strong=\"H1926\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H6213\"* has|strong=\"H3068\"* caused|strong=\"H6213\"* his|strong=\"H3068\"* wonderful|strong=\"H6381\"* works|strong=\"H6381\"* to|strong=\"H3068\"* be|strong=\"H3068\"* remembered|strong=\"H2143\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H5414\"* has|strong=\"H5414\"* given|strong=\"H5414\"* food|strong=\"H2964\"* to|strong=\"H5414\"* those who fear|strong=\"H3373\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H5414\"* has|strong=\"H1471\"* shown|strong=\"H5046\"* his|strong=\"H5414\"* people|strong=\"H5971\"* the|strong=\"H5414\"* power|strong=\"H3581\"* of|strong=\"H5971\"* his|strong=\"H5414\"* works|strong=\"H4639\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* works|strong=\"H4639\"* of|strong=\"H3027\"* his|strong=\"H3605\"* hands|strong=\"H3027\"* are|strong=\"H3027\"* truth and|strong=\"H3027\"* justice|strong=\"H4941\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H6213\"* are|strong=\"H6213\"* established|strong=\"H5564\"* forever|strong=\"H5769\"* and|strong=\"H5769\"* ever|strong=\"H5769\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H7971\"* has|strong=\"H5971\"* sent|strong=\"H7971\"* redemption|strong=\"H6304\"* to|strong=\"H7971\"* his|strong=\"H7971\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3605\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* the|strong=\"H3605\"* beginning|strong=\"H7225\"* of|strong=\"H3068\"* wisdom|strong=\"H2451\"*." + } + ] + }, + { + "chapterNum": 112, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yah|strong=\"H3068\"*!+ 112:1 Psalm 112 is an acrostic poem, with each verse after the initial “Praise Yah!” starting with a letter of the alphabet (ordered from Alef to Tav).*" + }, + { + "verseNum": 2, + "text": "His|strong=\"H1288\"* offspring|strong=\"H2233\"* will|strong=\"H1961\"* be|strong=\"H1961\"* mighty|strong=\"H1368\"* in|strong=\"H3477\"* the|strong=\"H1288\"* land." + }, + { + "verseNum": 3, + "text": "Wealth|strong=\"H1952\"* and|strong=\"H1004\"* riches|strong=\"H6239\"* are|strong=\"H1004\"* in|strong=\"H1004\"* his|strong=\"H5975\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 4, + "text": "Light dawns in|strong=\"H3477\"* the|strong=\"H3477\"* darkness|strong=\"H2822\"* for|strong=\"H6662\"* the|strong=\"H3477\"* upright|strong=\"H3477\"*," + }, + { + "verseNum": 5, + "text": "It|strong=\"H4941\"* is|strong=\"H1697\"* well|strong=\"H2896\"* with|strong=\"H1697\"* the|strong=\"H1697\"* man|strong=\"H2896\"* who|strong=\"H2896\"* deals graciously|strong=\"H2603\"* and|strong=\"H4941\"* lends|strong=\"H3867\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H1961\"* never|strong=\"H3808\"* be|strong=\"H1961\"* shaken|strong=\"H4131\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* afraid|strong=\"H3372\"* of|strong=\"H3068\"* evil|strong=\"H7451\"* news|strong=\"H8052\"*." + }, + { + "verseNum": 8, + "text": "His|strong=\"H7200\"* heart|strong=\"H3820\"* is|strong=\"H3820\"* established|strong=\"H5564\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H5414\"* has|strong=\"H3519\"* dispersed|strong=\"H6340\"*, he|strong=\"H5414\"* has|strong=\"H3519\"* given|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* poor." + }, + { + "verseNum": 10, + "text": "The|strong=\"H7200\"* wicked|strong=\"H7563\"* will|strong=\"H7563\"* see|strong=\"H7200\"* it|strong=\"H7200\"*, and|strong=\"H7200\"* be|strong=\"H7563\"* grieved|strong=\"H3707\"*." + } + ] + }, + { + "chapterNum": 113, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yah|strong=\"H3068\"*!" + }, + { + "verseNum": 2, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*," + }, + { + "verseNum": 3, + "text": "From|strong=\"H5704\"* the|strong=\"H3068\"* rising|strong=\"H4217\"* of|strong=\"H3068\"* the|strong=\"H3068\"* sun|strong=\"H8121\"* to|strong=\"H5704\"* its|strong=\"H1984\"* going|strong=\"H8121\"* down|strong=\"H3996\"*," + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* high|strong=\"H7311\"* above|strong=\"H5921\"* all|strong=\"H3605\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 5, + "text": "Who|strong=\"H4310\"* is|strong=\"H3068\"* like|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, our|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "who stoops down|strong=\"H8213\"* to|strong=\"H7200\"* see|strong=\"H7200\"* in|strong=\"H8064\"* heaven|strong=\"H8064\"* and|strong=\"H8064\"* in|strong=\"H8064\"* the|strong=\"H7200\"* earth|strong=\"H8064\"*?" + }, + { + "verseNum": 7, + "text": "He raises|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H6965\"* poor|strong=\"H1800\"* out|strong=\"H6965\"* of|strong=\"H6083\"* the|strong=\"H6965\"* dust|strong=\"H6083\"*," + }, + { + "verseNum": 8, + "text": "that|strong=\"H5971\"* he|strong=\"H5971\"* may|strong=\"H5971\"* set|strong=\"H3427\"* him|strong=\"H5973\"* with|strong=\"H5973\"* princes|strong=\"H5081\"*," + }, + { + "verseNum": 9, + "text": "He|strong=\"H1004\"* settles|strong=\"H3427\"* the|strong=\"H1984\"* barren|strong=\"H6135\"* woman|strong=\"H6135\"* in|strong=\"H3427\"* her|strong=\"H1984\"* home|strong=\"H1004\"*" + } + ] + }, + { + "chapterNum": 114, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3318\"* Israel|strong=\"H3478\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1004\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 2, + "text": "Judah|strong=\"H3063\"* became|strong=\"H1961\"* his|strong=\"H3478\"* sanctuary|strong=\"H6944\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H7200\"* sea|strong=\"H3220\"* saw|strong=\"H7200\"* it|strong=\"H7200\"*, and|strong=\"H7200\"* fled|strong=\"H5127\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H1121\"* mountains|strong=\"H2022\"* skipped|strong=\"H7540\"* like|strong=\"H7540\"* rams," + }, + { + "verseNum": 5, + "text": "What|strong=\"H4100\"* was|strong=\"H3220\"* it|strong=\"H3588\"*, you|strong=\"H3588\"* sea|strong=\"H3220\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* fled|strong=\"H5127\"*?" + }, + { + "verseNum": 6, + "text": "You|strong=\"H2022\"* mountains|strong=\"H2022\"*, that|strong=\"H1121\"* you|strong=\"H2022\"* skipped|strong=\"H7540\"* like|strong=\"H7540\"* rams?" + }, + { + "verseNum": 7, + "text": "Tremble|strong=\"H2342\"*, you|strong=\"H6440\"* earth, at|strong=\"H6440\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* Lord," + }, + { + "verseNum": 8, + "text": "who|strong=\"H6697\"* turned|strong=\"H2015\"* the|strong=\"H2015\"* rock|strong=\"H6697\"* into|strong=\"H2015\"* a|strong=\"H3068\"* pool|strong=\"H4325\"* of|strong=\"H4325\"* water|strong=\"H4325\"*," + } + ] + }, + { + "chapterNum": 115, + "verses": [ + { + "verseNum": 1, + "text": "Not|strong=\"H3808\"* to|strong=\"H3068\"* us|strong=\"H5414\"*, Yahweh|strong=\"H3068\"*, not|strong=\"H3808\"* to|strong=\"H3068\"* us|strong=\"H5414\"*," + }, + { + "verseNum": 2, + "text": "Why|strong=\"H4100\"* should|strong=\"H4100\"* the|strong=\"H4100\"* nations|strong=\"H1471\"* say," + }, + { + "verseNum": 3, + "text": "But|strong=\"H3605\"* our|strong=\"H3605\"* God|strong=\"H8064\"* is|strong=\"H3605\"* in|strong=\"H6213\"* the|strong=\"H3605\"* heavens|strong=\"H8064\"*." + }, + { + "verseNum": 4, + "text": "Their|strong=\"H3027\"* idols|strong=\"H6091\"* are|strong=\"H3027\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 5, + "text": "They|strong=\"H1992\"* have|strong=\"H5869\"* mouths|strong=\"H6310\"*, but|strong=\"H3808\"* they|strong=\"H1992\"* don’t speak|strong=\"H1696\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H3808\"* have|strong=\"H3808\"* ears, but|strong=\"H3808\"* they|strong=\"H3808\"* don’t hear|strong=\"H8085\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3808\"* have|strong=\"H3027\"* hands|strong=\"H3027\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* don’t feel|strong=\"H4184\"*." + }, + { + "verseNum": 8, + "text": "Those|strong=\"H3605\"* who|strong=\"H3605\"* make|strong=\"H6213\"* them|strong=\"H6213\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H3644\"* them|strong=\"H6213\"*;" + }, + { + "verseNum": 9, + "text": "Israel|strong=\"H3478\"*, trust in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 10, + "text": "House|strong=\"H1004\"* of|strong=\"H1004\"* Aaron, trust in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 11, + "text": "You who|strong=\"H1931\"* fear|strong=\"H3373\"* Yahweh|strong=\"H3068\"*, trust in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* remembers|strong=\"H2142\"* us|strong=\"H2142\"*. He|strong=\"H3068\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* us|strong=\"H2142\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3068\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* those|strong=\"H5973\"* who|strong=\"H3068\"* fear|strong=\"H3373\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 14, + "text": "May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* increase|strong=\"H3254\"* you|strong=\"H5921\"* more|strong=\"H3254\"* and|strong=\"H1121\"* more|strong=\"H3254\"*," + }, + { + "verseNum": 15, + "text": "Blessed|strong=\"H1288\"* are|strong=\"H8064\"* you|strong=\"H6213\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 16, + "text": "The|strong=\"H5414\"* heavens|strong=\"H8064\"* are|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s heavens|strong=\"H8064\"*," + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* dead|strong=\"H4191\"* don’t praise|strong=\"H1984\"* Yah|strong=\"H3068\"*," + }, + { + "verseNum": 18, + "text": "but|strong=\"H6258\"* we|strong=\"H3068\"* will|strong=\"H5704\"* bless|strong=\"H1288\"* Yah|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 116, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H3588\"* love Yahweh|strong=\"H3068\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* listens|strong=\"H8085\"* to|strong=\"H3068\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*," + }, + { + "verseNum": 2, + "text": "Because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3117\"* turned|strong=\"H5186\"* his|strong=\"H7121\"* ear to|strong=\"H3117\"* me|strong=\"H7121\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H4672\"* cords|strong=\"H2256\"* of|strong=\"H4194\"* death|strong=\"H4194\"* surrounded me|strong=\"H4672\"*," + }, + { + "verseNum": 4, + "text": "Then|strong=\"H7121\"* I|strong=\"H5315\"* called|strong=\"H7121\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*:" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* gracious|strong=\"H2587\"* and|strong=\"H3068\"* righteous|strong=\"H6662\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* preserves|strong=\"H8104\"* the|strong=\"H8104\"* simple|strong=\"H6612\"*." + }, + { + "verseNum": 7, + "text": "Return|strong=\"H7725\"* to|strong=\"H7725\"* your|strong=\"H3068\"* rest|strong=\"H4496\"*, my|strong=\"H3068\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5869\"* delivered|strong=\"H2502\"* my|strong=\"H3588\"* soul|strong=\"H5315\"* from|strong=\"H4480\"* death|strong=\"H4194\"*," + }, + { + "verseNum": 9, + "text": "I|strong=\"H1980\"* will|strong=\"H3068\"* walk|strong=\"H1980\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* in|strong=\"H1980\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* living|strong=\"H2416\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"H3588\"* believed, therefore|strong=\"H3588\"* I|strong=\"H3588\"* said|strong=\"H1696\"*," + }, + { + "verseNum": 11, + "text": "I|strong=\"H3605\"* said in|strong=\"H3605\"* my|strong=\"H3605\"* haste|strong=\"H2648\"*," + }, + { + "verseNum": 12, + "text": "What|strong=\"H4100\"* will|strong=\"H3068\"* I|strong=\"H5921\"* give|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* for|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* benefits|strong=\"H8408\"* toward|strong=\"H5921\"* me|strong=\"H7725\"*?" + }, + { + "verseNum": 13, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* take|strong=\"H5375\"* the|strong=\"H5375\"* cup|strong=\"H3563\"* of|strong=\"H3068\"* salvation|strong=\"H3444\"*, and|strong=\"H3068\"* call|strong=\"H7121\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* pay|strong=\"H7999\"* my|strong=\"H3605\"* vows|strong=\"H5088\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 15, + "text": "Precious|strong=\"H3368\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"* is|strong=\"H3068\"* the|strong=\"H3068\"* death|strong=\"H4194\"* of|strong=\"H3068\"* his|strong=\"H3068\"* saints|strong=\"H2623\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"*, truly|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* offer|strong=\"H2076\"* to|strong=\"H3068\"* you|strong=\"H7121\"* the|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* thanksgiving|strong=\"H8426\"*," + }, + { + "verseNum": 18, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* pay|strong=\"H7999\"* my|strong=\"H3605\"* vows|strong=\"H5088\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 19, + "text": "in|strong=\"H3068\"* the|strong=\"H8432\"* courts|strong=\"H2691\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*," + } + ] + }, + { + "chapterNum": 117, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* nations|strong=\"H1471\"*!" + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* his|strong=\"H3068\"* loving kindness|strong=\"H2617\"* is|strong=\"H3068\"* great|strong=\"H1396\"* toward|strong=\"H5921\"* us|strong=\"H5921\"*." + } + ] + }, + { + "chapterNum": 118, + "verses": [ + { + "verseNum": 1, + "text": "Give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H3068\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 2, + "text": "Let|strong=\"H4994\"* Israel|strong=\"H3478\"* now|strong=\"H4994\"* say|strong=\"H3478\"*" + }, + { + "verseNum": 3, + "text": "Let|strong=\"H4994\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Aaron now|strong=\"H4994\"* say" + }, + { + "verseNum": 4, + "text": "Now|strong=\"H4994\"* let|strong=\"H4994\"* those|strong=\"H3588\"* who|strong=\"H3068\"* fear|strong=\"H3373\"* Yahweh|strong=\"H3068\"* say" + }, + { + "verseNum": 5, + "text": "Out|strong=\"H4480\"* of|strong=\"H4480\"* my|strong=\"H4480\"* distress|strong=\"H4712\"*, I|strong=\"H4480\"* called|strong=\"H7121\"* on|strong=\"H7121\"* Yah|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H3068\"* my|strong=\"H3068\"* side. I|strong=\"H3808\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* afraid|strong=\"H3372\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H7200\"* my|strong=\"H3068\"* side among|strong=\"H7200\"* those|strong=\"H8130\"* who|strong=\"H3068\"* help|strong=\"H5826\"* me|strong=\"H7200\"*." + }, + { + "verseNum": 8, + "text": "It|strong=\"H3068\"* is|strong=\"H3068\"* better|strong=\"H2896\"* to|strong=\"H3068\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 9, + "text": "It|strong=\"H3068\"* is|strong=\"H3068\"* better|strong=\"H2896\"* to|strong=\"H3068\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* surrounded|strong=\"H5437\"* me|strong=\"H5437\"*," + }, + { + "verseNum": 11, + "text": "They|strong=\"H3588\"* surrounded|strong=\"H5437\"* me|strong=\"H5437\"*, yes|strong=\"H3588\"*, they|strong=\"H3588\"* surrounded|strong=\"H5437\"* me|strong=\"H5437\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3588\"* surrounded|strong=\"H5437\"* me|strong=\"H5437\"* like|strong=\"H5437\"* bees|strong=\"H1682\"*." + }, + { + "verseNum": 13, + "text": "You pushed|strong=\"H1760\"* me|strong=\"H1760\"* back hard, to|strong=\"H3068\"* make me|strong=\"H1760\"* fall|strong=\"H5307\"*," + }, + { + "verseNum": 14, + "text": "Yah|strong=\"H3068\"* is|strong=\"H1961\"* my|strong=\"H1961\"* strength|strong=\"H5797\"* and|strong=\"H5797\"* song|strong=\"H2176\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H6213\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* rejoicing|strong=\"H7440\"* and|strong=\"H3068\"* salvation|strong=\"H3444\"* is|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H6213\"* tents of|strong=\"H3068\"* the|strong=\"H6213\"* righteous|strong=\"H6662\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H6213\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* exalted|strong=\"H7426\"*!" + }, + { + "verseNum": 17, + "text": "I|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* die|strong=\"H4191\"*, but|strong=\"H3588\"* live|strong=\"H2421\"*," + }, + { + "verseNum": 18, + "text": "Yah|strong=\"H3068\"* has|strong=\"H3050\"* punished|strong=\"H3256\"* me|strong=\"H5414\"* severely|strong=\"H3256\"*," + }, + { + "verseNum": 19, + "text": "Open|strong=\"H6605\"* to|strong=\"H8179\"* me the|strong=\"H3050\"* gates|strong=\"H8179\"* of|strong=\"H8179\"* righteousness|strong=\"H6664\"*." + }, + { + "verseNum": 20, + "text": "This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3068\"* gate|strong=\"H8179\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 21, + "text": "I|strong=\"H3588\"* will|strong=\"H1961\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H1961\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* answered|strong=\"H6030\"* me|strong=\"H6030\"*," + }, + { + "verseNum": 22, + "text": "The|strong=\"H1129\"* stone which|strong=\"H3988\"* the|strong=\"H1129\"* builders|strong=\"H1129\"* rejected|strong=\"H3988\"*" + }, + { + "verseNum": 23, + "text": "This|strong=\"H2063\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s doing." + }, + { + "verseNum": 24, + "text": "This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H6213\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 25, + "text": "Save|strong=\"H3467\"* us|strong=\"H4994\"* now|strong=\"H4994\"*, we|strong=\"H3068\"* beg|strong=\"H4994\"* you|strong=\"H3467\"*, Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 26, + "text": "Blessed|strong=\"H1288\"* is|strong=\"H3068\"* he|strong=\"H3068\"* who|strong=\"H3068\"* comes in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*!" + }, + { + "verseNum": 27, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* he|strong=\"H5704\"* has|strong=\"H3068\"* given us light." + }, + { + "verseNum": 28, + "text": "You|strong=\"H3034\"* are my|strong=\"H7311\"* God, and|strong=\"H3034\"* I|strong=\"H7311\"* will give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3034\"* you|strong=\"H3034\"*." + }, + { + "verseNum": 29, + "text": "Oh give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H3068\"* good|strong=\"H2896\"*," + } + ] + }, + { + "chapterNum": 119, + "verses": [ + { + "verseNum": 1, + "text": "Blessed are|strong=\"H3068\"* those|strong=\"H1980\"* whose ways|strong=\"H1870\"* are|strong=\"H3068\"* blameless|strong=\"H8549\"*," + }, + { + "verseNum": 2, + "text": "Blessed are|strong=\"H5713\"* those|strong=\"H3605\"* who|strong=\"H3605\"* keep|strong=\"H5341\"* his|strong=\"H3605\"* statutes," + }, + { + "verseNum": 3, + "text": "Yes, they|strong=\"H3808\"* do|strong=\"H6466\"* nothing|strong=\"H3808\"* wrong|strong=\"H5766\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H6680\"* have|strong=\"H8104\"* commanded|strong=\"H6680\"* your|strong=\"H8104\"* precepts|strong=\"H6490\"*," + }, + { + "verseNum": 5, + "text": "Oh that|strong=\"H1870\"* my|strong=\"H8104\"* ways|strong=\"H1870\"* were|strong=\"H1870\"* steadfast|strong=\"H3559\"*" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H3808\"* I|strong=\"H3808\"* wouldn’t be|strong=\"H3808\"* disappointed," + }, + { + "verseNum": 7, + "text": "I will|strong=\"H3824\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3824\"* you|strong=\"H3034\"* with|strong=\"H4941\"* uprightness|strong=\"H3476\"* of|strong=\"H4941\"* heart|strong=\"H3824\"*," + }, + { + "verseNum": 8, + "text": "I|strong=\"H5704\"* will|strong=\"H5704\"* observe|strong=\"H8104\"* your|strong=\"H8104\"* statutes|strong=\"H2706\"*." + }, + { + "verseNum": 9, + "text": "How|strong=\"H4100\"* can|strong=\"H4100\"* a|strong=\"H3068\"* young|strong=\"H5288\"* man|strong=\"H5288\"* keep|strong=\"H8104\"* his|strong=\"H8104\"* way|strong=\"H1697\"* pure|strong=\"H2135\"*?" + }, + { + "verseNum": 10, + "text": "With|strong=\"H3820\"* my|strong=\"H3605\"* whole|strong=\"H3605\"* heart|strong=\"H3820\"* I|strong=\"H3605\"* have|strong=\"H3605\"* sought|strong=\"H1875\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H3808\"* have|strong=\"H3808\"* hidden|strong=\"H6845\"* your|strong=\"H3808\"* word in|strong=\"H3808\"* my|strong=\"H6845\"* heart|strong=\"H3820\"*," + }, + { + "verseNum": 12, + "text": "Blessed|strong=\"H1288\"* are|strong=\"H3068\"* you|strong=\"H1288\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "With|strong=\"H6310\"* my|strong=\"H3605\"* lips|strong=\"H8193\"*," + }, + { + "verseNum": 14, + "text": "I|strong=\"H5921\"* have|strong=\"H3605\"* rejoiced|strong=\"H7797\"* in|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H1870\"* your|strong=\"H3605\"* testimonies|strong=\"H5715\"*," + }, + { + "verseNum": 15, + "text": "I|strong=\"H7878\"* will meditate|strong=\"H7878\"* on|strong=\"H5027\"* your precepts|strong=\"H6490\"*," + }, + { + "verseNum": 16, + "text": "I|strong=\"H1697\"* will|strong=\"H1697\"* delight|strong=\"H8173\"* myself in|strong=\"H1697\"* your|strong=\"H7911\"* statutes|strong=\"H2708\"*." + }, + { + "verseNum": 17, + "text": "Do|strong=\"H8104\"* good|strong=\"H1580\"* to|strong=\"H5921\"* your|strong=\"H5921\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 18, + "text": "Open|strong=\"H1540\"* my|strong=\"H1540\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 19, + "text": "I|strong=\"H4480\"* am a|strong=\"H3068\"* stranger|strong=\"H1616\"* on|strong=\"H4480\"* the|strong=\"H4480\"* earth." + }, + { + "verseNum": 20, + "text": "My|strong=\"H3605\"* soul|strong=\"H5315\"* is|strong=\"H5315\"* consumed with|strong=\"H5315\"* longing|strong=\"H8375\"* for|strong=\"H4941\"* your|strong=\"H3605\"* ordinances|strong=\"H4941\"* at|strong=\"H5315\"* all|strong=\"H3605\"* times|strong=\"H6256\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"H7686\"* have|strong=\"H2086\"* rebuked|strong=\"H1605\"* the|strong=\"H1605\"* proud|strong=\"H2086\"* who are|strong=\"H4687\"* cursed," + }, + { + "verseNum": 22, + "text": "Take|strong=\"H1556\"* reproach|strong=\"H2781\"* and|strong=\"H2781\"* contempt|strong=\"H2781\"* away|strong=\"H1556\"* from|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 23, + "text": "Though|strong=\"H1571\"* princes|strong=\"H8269\"* sit|strong=\"H3427\"* and|strong=\"H5650\"* slander me|strong=\"H1696\"*," + }, + { + "verseNum": 24, + "text": "Indeed|strong=\"H1571\"* your|strong=\"H1571\"* statutes are|strong=\"H1571\"* my|strong=\"H1571\"* delight|strong=\"H8191\"*," + }, + { + "verseNum": 25, + "text": "My|strong=\"H2421\"* soul|strong=\"H5315\"* is|strong=\"H5315\"* laid low in|strong=\"H5315\"* the|strong=\"H1697\"* dust|strong=\"H6083\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H1870\"* declared|strong=\"H5608\"* my|strong=\"H5608\"* ways|strong=\"H1870\"*, and|strong=\"H6030\"* you|strong=\"H3925\"* answered|strong=\"H6030\"* me|strong=\"H6030\"*." + }, + { + "verseNum": 27, + "text": "Let me understand the|strong=\"H1870\"* teaching of|strong=\"H1870\"* your|strong=\"H6381\"* precepts|strong=\"H6490\"*!" + }, + { + "verseNum": 28, + "text": "My|strong=\"H6965\"* soul|strong=\"H5315\"* is|strong=\"H5315\"* weary with|strong=\"H1697\"* sorrow|strong=\"H8424\"*;" + }, + { + "verseNum": 29, + "text": "Keep|strong=\"H5493\"* me|strong=\"H4480\"* from|strong=\"H4480\"* the|strong=\"H4480\"* way|strong=\"H1870\"* of|strong=\"H1870\"* deceit|strong=\"H8267\"*." + }, + { + "verseNum": 30, + "text": "I|strong=\"H1870\"* have chosen the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1870\"* truth." + }, + { + "verseNum": 31, + "text": "I|strong=\"H3068\"* cling|strong=\"H1692\"* to|strong=\"H3068\"* your|strong=\"H3068\"* statutes, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 32, + "text": "I|strong=\"H3588\"* run|strong=\"H7323\"* in|strong=\"H1870\"* the|strong=\"H3588\"* path|strong=\"H1870\"* of|strong=\"H1870\"* your|strong=\"H3588\"* commandments|strong=\"H4687\"*," + }, + { + "verseNum": 33, + "text": "Teach|strong=\"H3384\"* me, Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* way|strong=\"H1870\"* of|strong=\"H3068\"* your|strong=\"H3068\"* statutes|strong=\"H2706\"*." + }, + { + "verseNum": 34, + "text": "Give|strong=\"H8104\"* me|strong=\"H8104\"* understanding|strong=\"H3820\"*, and|strong=\"H8104\"* I|strong=\"H3605\"* will|strong=\"H3820\"* keep|strong=\"H8104\"* your|strong=\"H3605\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 35, + "text": "Direct me|strong=\"H5410\"* in|strong=\"H2654\"* the|strong=\"H3588\"* path|strong=\"H5410\"* of|strong=\"H4687\"* your|strong=\"H3588\"* commandments|strong=\"H4687\"*," + }, + { + "verseNum": 36, + "text": "Turn|strong=\"H5186\"* my|strong=\"H5186\"* heart|strong=\"H3820\"* toward your|strong=\"H5186\"* statutes," + }, + { + "verseNum": 37, + "text": "Turn|strong=\"H5674\"* my|strong=\"H7200\"* eyes|strong=\"H5869\"* away|strong=\"H5674\"* from|strong=\"H5869\"* looking|strong=\"H7200\"* at|strong=\"H7200\"* worthless|strong=\"H7723\"* things." + }, + { + "verseNum": 38, + "text": "Fulfill|strong=\"H6965\"* your|strong=\"H6965\"* promise to|strong=\"H6965\"* your|strong=\"H6965\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 39, + "text": "Take|strong=\"H5674\"* away|strong=\"H5674\"* my|strong=\"H3588\"* disgrace|strong=\"H2781\"* that|strong=\"H3588\"* I|strong=\"H3588\"* dread|strong=\"H3025\"*," + }, + { + "verseNum": 40, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H2009\"* long|strong=\"H8373\"* for|strong=\"H2421\"* your|strong=\"H2009\"* precepts|strong=\"H6490\"*!" + }, + { + "verseNum": 41, + "text": "Let your|strong=\"H3068\"* loving kindness|strong=\"H2617\"* also|strong=\"H3068\"* come to|strong=\"H3068\"* me, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 42, + "text": "So|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1697\"* have|strong=\"H1697\"* an|strong=\"H3588\"* answer|strong=\"H6030\"* for|strong=\"H3588\"* him|strong=\"H6030\"* who|strong=\"H3588\"* reproaches|strong=\"H2778\"* me|strong=\"H6030\"*," + }, + { + "verseNum": 43, + "text": "Don’t snatch the|strong=\"H3588\"* word|strong=\"H1697\"* of|strong=\"H1697\"* truth out|strong=\"H5337\"* of|strong=\"H1697\"* my|strong=\"H5337\"* mouth|strong=\"H6310\"*," + }, + { + "verseNum": 44, + "text": "So I will|strong=\"H8451\"* obey|strong=\"H8104\"* your|strong=\"H8104\"* law|strong=\"H8451\"* continually|strong=\"H8548\"*," + }, + { + "verseNum": 45, + "text": "I|strong=\"H3588\"* will|strong=\"H3588\"* walk|strong=\"H1980\"* in|strong=\"H1980\"* liberty|strong=\"H7342\"*," + }, + { + "verseNum": 46, + "text": "I|strong=\"H3808\"* will|strong=\"H4428\"* also|strong=\"H4428\"* speak|strong=\"H1696\"* of|strong=\"H4428\"* your|strong=\"H3808\"* statutes before|strong=\"H5048\"* kings|strong=\"H4428\"*," + }, + { + "verseNum": 47, + "text": "I will delight|strong=\"H8173\"* myself in your commandments|strong=\"H4687\"*," + }, + { + "verseNum": 48, + "text": "I|strong=\"H7878\"* reach out my|strong=\"H5375\"* hands|strong=\"H3709\"* for|strong=\"H2706\"* your|strong=\"H5375\"* commandments|strong=\"H4687\"*, which|strong=\"H2706\"* I|strong=\"H7878\"* love." + }, + { + "verseNum": 49, + "text": "Remember|strong=\"H2142\"* your|strong=\"H5921\"* word|strong=\"H1697\"* to|strong=\"H5921\"* your|strong=\"H5921\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 50, + "text": "This|strong=\"H2063\"* is|strong=\"H3588\"* my|strong=\"H3588\"* comfort|strong=\"H5165\"* in|strong=\"H3588\"* my|strong=\"H3588\"* affliction|strong=\"H6040\"*," + }, + { + "verseNum": 51, + "text": "The|strong=\"H5704\"* arrogant|strong=\"H2086\"* mock|strong=\"H3887\"* me|strong=\"H3808\"* excessively," + }, + { + "verseNum": 52, + "text": "I|strong=\"H2142\"* remember|strong=\"H2142\"* your|strong=\"H3068\"* ordinances|strong=\"H4941\"* of|strong=\"H3068\"* old|strong=\"H5769\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 53, + "text": "Indignation|strong=\"H2152\"* has|strong=\"H2152\"* taken hold on me|strong=\"H5800\"*," + }, + { + "verseNum": 54, + "text": "Your|strong=\"H1961\"* statutes|strong=\"H2706\"* have|strong=\"H1961\"* been|strong=\"H1961\"* my|strong=\"H1961\"* songs|strong=\"H2158\"*" + }, + { + "verseNum": 55, + "text": "I|strong=\"H2142\"* have|strong=\"H3068\"* remembered|strong=\"H2142\"* your|strong=\"H3068\"* name|strong=\"H8034\"*, Yahweh|strong=\"H3068\"*, in|strong=\"H3068\"* the|strong=\"H8104\"* night|strong=\"H3915\"*," + }, + { + "verseNum": 56, + "text": "This|strong=\"H2063\"* is|strong=\"H1961\"* my|strong=\"H1961\"* way|strong=\"H2063\"*," + }, + { + "verseNum": 57, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* my|strong=\"H8104\"* portion|strong=\"H2506\"*." + }, + { + "verseNum": 58, + "text": "I|strong=\"H6440\"* sought|strong=\"H2470\"* your|strong=\"H3605\"* favor|strong=\"H6440\"* with|strong=\"H6440\"* my|strong=\"H3605\"* whole|strong=\"H3605\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 59, + "text": "I|strong=\"H1870\"* considered|strong=\"H2803\"* my|strong=\"H7725\"* ways|strong=\"H1870\"*," + }, + { + "verseNum": 60, + "text": "I|strong=\"H3808\"* will|strong=\"H3808\"* hurry|strong=\"H2363\"*, and|strong=\"H8104\"* not|strong=\"H3808\"* delay|strong=\"H4102\"*," + }, + { + "verseNum": 61, + "text": "The|strong=\"H7911\"* ropes|strong=\"H2256\"* of|strong=\"H8451\"* the|strong=\"H7911\"* wicked|strong=\"H7563\"* bind me|strong=\"H7911\"*," + }, + { + "verseNum": 62, + "text": "At|strong=\"H5921\"* midnight|strong=\"H2676\"* I|strong=\"H5921\"* will|strong=\"H6664\"* rise|strong=\"H6965\"* to|strong=\"H5921\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H5921\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 63, + "text": "I|strong=\"H3605\"* am a|strong=\"H3068\"* friend of|strong=\"H3605\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* fear|strong=\"H3372\"* you|strong=\"H3605\"*," + }, + { + "verseNum": 64, + "text": "The|strong=\"H3068\"* earth is|strong=\"H3068\"* full|strong=\"H4390\"* of|strong=\"H3068\"* your|strong=\"H3068\"* loving kindness|strong=\"H2617\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 65, + "text": "You|strong=\"H6213\"* have|strong=\"H3068\"* treated|strong=\"H6213\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* well|strong=\"H2896\"*," + }, + { + "verseNum": 66, + "text": "Teach|strong=\"H3925\"* me|strong=\"H3925\"* good|strong=\"H2898\"* judgment|strong=\"H2940\"* and|strong=\"H4687\"* knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 67, + "text": "Before|strong=\"H2962\"* I|strong=\"H2962\"* was afflicted|strong=\"H6031\"*, I|strong=\"H2962\"* went|strong=\"H7683\"* astray|strong=\"H7683\"*;" + }, + { + "verseNum": 68, + "text": "You|strong=\"H3925\"* are|strong=\"H2896\"* good|strong=\"H2896\"*, and|strong=\"H2706\"* do|strong=\"H2895\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 69, + "text": "The|strong=\"H3605\"* proud|strong=\"H2086\"* have|strong=\"H2086\"* smeared a|strong=\"H3068\"* lie|strong=\"H8267\"* upon|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 70, + "text": "Their|strong=\"H8173\"* heart|strong=\"H3820\"* is|strong=\"H3820\"* as|strong=\"H2954\"* callous as|strong=\"H2954\"* the|strong=\"H3820\"* fat|strong=\"H2459\"*," + }, + { + "verseNum": 71, + "text": "It|strong=\"H3588\"* is|strong=\"H2896\"* good|strong=\"H2896\"* for|strong=\"H3588\"* me|strong=\"H3925\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3588\"* been afflicted|strong=\"H6031\"*," + }, + { + "verseNum": 72, + "text": "The|strong=\"H2896\"* law|strong=\"H8451\"* of|strong=\"H6310\"* your|strong=\"H3701\"* mouth|strong=\"H6310\"* is|strong=\"H2896\"* better|strong=\"H2896\"* to|strong=\"H6310\"* me than|strong=\"H2896\"* thousands of|strong=\"H6310\"* pieces of|strong=\"H6310\"* gold|strong=\"H2091\"* and|strong=\"H3701\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 73, + "text": "Your|strong=\"H6213\"* hands|strong=\"H3027\"* have|strong=\"H3027\"* made|strong=\"H6213\"* me|strong=\"H6213\"* and|strong=\"H3027\"* formed|strong=\"H3559\"* me|strong=\"H6213\"*." + }, + { + "verseNum": 74, + "text": "Those|strong=\"H3588\"* who|strong=\"H3588\"* fear|strong=\"H3373\"* you|strong=\"H3588\"* will|strong=\"H1697\"* see|strong=\"H7200\"* me|strong=\"H7200\"* and|strong=\"H7200\"* be|strong=\"H1697\"* glad|strong=\"H8055\"*," + }, + { + "verseNum": 75, + "text": "Yahweh|strong=\"H3068\"*, I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* your|strong=\"H3068\"* judgments|strong=\"H4941\"* are|strong=\"H3068\"* righteous|strong=\"H6664\"*," + }, + { + "verseNum": 76, + "text": "Please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H4994\"* loving kindness|strong=\"H2617\"* be|strong=\"H1961\"* for|strong=\"H5650\"* my|strong=\"H1961\"* comfort|strong=\"H5162\"*," + }, + { + "verseNum": 77, + "text": "Let your|strong=\"H3588\"* tender mercies|strong=\"H7356\"* come|strong=\"H2421\"* to|strong=\"H2421\"* me|strong=\"H2421\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H2421\"* live|strong=\"H2421\"*;" + }, + { + "verseNum": 78, + "text": "Let the|strong=\"H3588\"* proud|strong=\"H2086\"* be|strong=\"H2086\"* disappointed, for|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H2086\"* overthrown|strong=\"H5791\"* me|strong=\"H5791\"* wrongfully|strong=\"H8267\"*." + }, + { + "verseNum": 79, + "text": "Let|strong=\"H7725\"* those who|strong=\"H3045\"* fear|strong=\"H3373\"* you|strong=\"H7725\"* turn|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H7725\"*." + }, + { + "verseNum": 80, + "text": "Let|strong=\"H3808\"* my|strong=\"H1961\"* heart|strong=\"H3820\"* be|strong=\"H1961\"* blameless|strong=\"H8549\"* toward your|strong=\"H3808\"* decrees|strong=\"H2706\"*," + }, + { + "verseNum": 81, + "text": "My|strong=\"H3615\"* soul|strong=\"H5315\"* faints|strong=\"H3615\"* for|strong=\"H5315\"* your|strong=\"H3615\"* salvation|strong=\"H8668\"*." + }, + { + "verseNum": 82, + "text": "My|strong=\"H3615\"* eyes|strong=\"H5869\"* fail|strong=\"H3615\"* for|strong=\"H5869\"* your|strong=\"H3615\"* word." + }, + { + "verseNum": 83, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* become|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* wineskin|strong=\"H4997\"* in|strong=\"H3808\"* the|strong=\"H3588\"* smoke|strong=\"H7008\"*." + }, + { + "verseNum": 84, + "text": "How|strong=\"H4100\"* many|strong=\"H4100\"* are|strong=\"H3117\"* the|strong=\"H6213\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H6213\"* servant|strong=\"H5650\"*?" + }, + { + "verseNum": 85, + "text": "The|strong=\"H3808\"* proud|strong=\"H2086\"* have|strong=\"H2086\"* dug|strong=\"H3738\"* pits|strong=\"H7882\"* for|strong=\"H3808\"* me|strong=\"H3808\"*," + }, + { + "verseNum": 86, + "text": "All|strong=\"H3605\"* of|strong=\"H3605\"* your|strong=\"H3605\"* commandments|strong=\"H4687\"* are|strong=\"H4687\"* faithful." + }, + { + "verseNum": 87, + "text": "They|strong=\"H3808\"* had|strong=\"H3808\"* almost|strong=\"H4592\"* wiped me|strong=\"H5800\"* from|strong=\"H3615\"* the|strong=\"H5800\"* earth," + }, + { + "verseNum": 88, + "text": "Preserve|strong=\"H8104\"* my|strong=\"H8104\"* life|strong=\"H2421\"* according|strong=\"H6310\"* to|strong=\"H8104\"* your|strong=\"H8104\"* loving kindness|strong=\"H2617\"*," + }, + { + "verseNum": 89, + "text": "Yahweh|strong=\"H3068\"*, your|strong=\"H3068\"* word|strong=\"H1697\"* is|strong=\"H3068\"* settled|strong=\"H5324\"* in|strong=\"H3068\"* heaven|strong=\"H8064\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 90, + "text": "Your|strong=\"H3559\"* faithfulness|strong=\"H3559\"* is|strong=\"H5975\"* to|strong=\"H1755\"* all|strong=\"H1755\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 91, + "text": "Your|strong=\"H3605\"* laws remain|strong=\"H5975\"* to|strong=\"H3117\"* this|strong=\"H3588\"* day|strong=\"H3117\"*," + }, + { + "verseNum": 92, + "text": "Unless|strong=\"H3884\"* your|strong=\"H3884\"* law|strong=\"H8451\"* had been my delight|strong=\"H8191\"*," + }, + { + "verseNum": 93, + "text": "I|strong=\"H3588\"* will|strong=\"H3808\"* never|strong=\"H3808\"* forget|strong=\"H7911\"* your|strong=\"H3588\"* precepts|strong=\"H6490\"*," + }, + { + "verseNum": 94, + "text": "I|strong=\"H3588\"* am yours." + }, + { + "verseNum": 95, + "text": "The|strong=\"H7563\"* wicked|strong=\"H7563\"* have|strong=\"H7563\"* waited|strong=\"H6960\"* for|strong=\"H6960\"* me, to|strong=\"H7563\"* destroy me." + }, + { + "verseNum": 96, + "text": "I|strong=\"H7200\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* a|strong=\"H3068\"* limit|strong=\"H7093\"* to|strong=\"H7200\"* all|strong=\"H3605\"* perfection|strong=\"H8502\"*," + }, + { + "verseNum": 97, + "text": "How|strong=\"H4100\"* I|strong=\"H3117\"* love your|strong=\"H3605\"* law|strong=\"H8451\"*!" + }, + { + "verseNum": 98, + "text": "Your|strong=\"H3588\"* commandments|strong=\"H4687\"* make|strong=\"H2449\"* me|strong=\"H3588\"* wiser|strong=\"H2449\"* than|strong=\"H3588\"* my|strong=\"H3588\"* enemies," + }, + { + "verseNum": 99, + "text": "I|strong=\"H3588\"* have|strong=\"H7919\"* more|strong=\"H3588\"* understanding|strong=\"H7919\"* than|strong=\"H3588\"* all|strong=\"H3605\"* my|strong=\"H3605\"* teachers|strong=\"H3925\"*," + }, + { + "verseNum": 100, + "text": "I|strong=\"H3588\"* understand more|strong=\"H3588\"* than|strong=\"H3588\"* the|strong=\"H3588\"* aged|strong=\"H2205\"*," + }, + { + "verseNum": 101, + "text": "I|strong=\"H1697\"* have|strong=\"H1697\"* kept|strong=\"H8104\"* my|strong=\"H8104\"* feet|strong=\"H7272\"* from|strong=\"H7451\"* every|strong=\"H3605\"* evil|strong=\"H7451\"* way|strong=\"H1697\"*," + }, + { + "verseNum": 102, + "text": "I|strong=\"H3588\"* have|strong=\"H3588\"* not|strong=\"H3808\"* turned|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* your|strong=\"H3588\"* ordinances|strong=\"H4941\"*," + }, + { + "verseNum": 103, + "text": "How|strong=\"H4100\"* sweet|strong=\"H4452\"* are|strong=\"H4100\"* your|strong=\"H4100\"* promises to|strong=\"H6310\"* my|strong=\"H4100\"* taste|strong=\"H2441\"*," + }, + { + "verseNum": 104, + "text": "Through|strong=\"H5921\"* your|strong=\"H3605\"* precepts|strong=\"H6490\"*, I|strong=\"H5921\"* get understanding;" + }, + { + "verseNum": 105, + "text": "Your|strong=\"H1697\"* word|strong=\"H1697\"* is|strong=\"H1697\"* a|strong=\"H3068\"* lamp|strong=\"H5216\"* to|strong=\"H1697\"* my|strong=\"H7272\"* feet|strong=\"H7272\"*," + }, + { + "verseNum": 106, + "text": "I|strong=\"H6965\"* have|strong=\"H8104\"* sworn|strong=\"H7650\"*, and|strong=\"H6965\"* have|strong=\"H8104\"* confirmed|strong=\"H6965\"* it|strong=\"H8104\"*," + }, + { + "verseNum": 107, + "text": "I|strong=\"H5704\"* am|strong=\"H3068\"* afflicted|strong=\"H6031\"* very|strong=\"H3966\"* much|strong=\"H3966\"*." + }, + { + "verseNum": 108, + "text": "Accept|strong=\"H7521\"*, I|strong=\"H3068\"* beg|strong=\"H4994\"* you|strong=\"H3925\"*, the|strong=\"H3068\"* willing|strong=\"H5071\"* offerings|strong=\"H5071\"* of|strong=\"H3068\"* my|strong=\"H3068\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 109, + "text": "My|strong=\"H7911\"* soul|strong=\"H5315\"* is|strong=\"H5315\"* continually|strong=\"H8548\"* in|strong=\"H5315\"* my|strong=\"H7911\"* hand|strong=\"H3709\"*," + }, + { + "verseNum": 110, + "text": "The|strong=\"H5414\"* wicked|strong=\"H7563\"* have|strong=\"H7563\"* laid|strong=\"H5414\"* a|strong=\"H3068\"* snare|strong=\"H6341\"* for|strong=\"H5414\"* me|strong=\"H5414\"*," + }, + { + "verseNum": 111, + "text": "I|strong=\"H3588\"* have|strong=\"H5157\"* taken your|strong=\"H3588\"* testimonies|strong=\"H5715\"* as|strong=\"H3588\"* a|strong=\"H3068\"* heritage|strong=\"H5157\"* forever|strong=\"H5769\"*," + }, + { + "verseNum": 112, + "text": "I|strong=\"H6213\"* have set|strong=\"H6213\"* my|strong=\"H6213\"* heart|strong=\"H3820\"* to|strong=\"H6213\"* perform|strong=\"H6213\"* your|strong=\"H5186\"* statutes|strong=\"H2706\"* forever|strong=\"H5769\"*," + }, + { + "verseNum": 113, + "text": "I hate|strong=\"H8130\"* double-minded|strong=\"H5588\"* men," + }, + { + "verseNum": 114, + "text": "You|strong=\"H1697\"* are|strong=\"H1697\"* my hiding|strong=\"H5643\"* place|strong=\"H5643\"* and|strong=\"H1697\"* my shield|strong=\"H4043\"*." + }, + { + "verseNum": 115, + "text": "Depart|strong=\"H5493\"* from|strong=\"H4480\"* me|strong=\"H4480\"*, you|strong=\"H4480\"* evildoers|strong=\"H7489\"*," + }, + { + "verseNum": 116, + "text": "Uphold|strong=\"H5564\"* me|strong=\"H2421\"* according to|strong=\"H2421\"* your|strong=\"H2421\"* word, that|strong=\"H2421\"* I may|strong=\"H2421\"* live|strong=\"H2421\"*." + }, + { + "verseNum": 117, + "text": "Hold|strong=\"H5582\"* me|strong=\"H3467\"* up|strong=\"H5582\"*, and|strong=\"H2706\"* I will|strong=\"H3467\"* be|strong=\"H8548\"* safe|strong=\"H3467\"*," + }, + { + "verseNum": 118, + "text": "You|strong=\"H3588\"* reject all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* stray|strong=\"H7686\"* from|strong=\"H3605\"* your|strong=\"H3605\"* statutes|strong=\"H2706\"*," + }, + { + "verseNum": 119, + "text": "You|strong=\"H3605\"* put|strong=\"H7673\"* away|strong=\"H7673\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wicked|strong=\"H7563\"* of|strong=\"H3605\"* the|strong=\"H3605\"* earth like|strong=\"H3651\"* dross|strong=\"H5509\"*." + }, + { + "verseNum": 120, + "text": "My|strong=\"H3372\"* flesh|strong=\"H1320\"* trembles|strong=\"H5568\"* for|strong=\"H4941\"* fear|strong=\"H3372\"* of|strong=\"H4941\"* you|strong=\"H3372\"*." + }, + { + "verseNum": 121, + "text": "I|strong=\"H6213\"* have done|strong=\"H6213\"* what|strong=\"H6213\"* is|strong=\"H4941\"* just|strong=\"H6664\"* and|strong=\"H4941\"* righteous|strong=\"H6664\"*." + }, + { + "verseNum": 122, + "text": "Ensure your|strong=\"H6231\"* servant|strong=\"H5650\"*’s well-being." + }, + { + "verseNum": 123, + "text": "My|strong=\"H3615\"* eyes|strong=\"H5869\"* fail|strong=\"H3615\"* looking for|strong=\"H5869\"* your|strong=\"H3615\"* salvation|strong=\"H3444\"*," + }, + { + "verseNum": 124, + "text": "Deal|strong=\"H6213\"* with|strong=\"H5973\"* your|strong=\"H6213\"* servant|strong=\"H5650\"* according to|strong=\"H6213\"* your|strong=\"H6213\"* loving kindness|strong=\"H2617\"*." + }, + { + "verseNum": 125, + "text": "I|strong=\"H3045\"* am your|strong=\"H3045\"* servant|strong=\"H5650\"*. Give me|strong=\"H5650\"* understanding," + }, + { + "verseNum": 126, + "text": "It|strong=\"H6213\"* is|strong=\"H3068\"* time|strong=\"H6256\"* to|strong=\"H3068\"* act|strong=\"H6213\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 127, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* love your|strong=\"H5921\"* commandments|strong=\"H4687\"* more|strong=\"H3651\"* than|strong=\"H5921\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 128, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* consider all|strong=\"H3605\"* of|strong=\"H5921\"* your|strong=\"H3605\"* precepts|strong=\"H6490\"* to|strong=\"H5921\"* be|strong=\"H8130\"* right|strong=\"H3474\"*." + }, + { + "verseNum": 129, + "text": "Your|strong=\"H5921\"* testimonies|strong=\"H5715\"* are|strong=\"H5715\"* wonderful|strong=\"H6382\"*," + }, + { + "verseNum": 130, + "text": "The|strong=\"H1697\"* entrance|strong=\"H6608\"* of|strong=\"H1697\"* your|strong=\"H1697\"* words|strong=\"H1697\"* gives light." + }, + { + "verseNum": 131, + "text": "I|strong=\"H3588\"* opened|strong=\"H6473\"* my|strong=\"H3588\"* mouth|strong=\"H6310\"* wide|strong=\"H6310\"* and|strong=\"H6310\"* panted|strong=\"H7602\"*," + }, + { + "verseNum": 132, + "text": "Turn|strong=\"H6437\"* to|strong=\"H8034\"* me|strong=\"H2603\"*, and|strong=\"H4941\"* have|strong=\"H6437\"* mercy|strong=\"H2603\"* on|strong=\"H6437\"* me|strong=\"H2603\"*," + }, + { + "verseNum": 133, + "text": "Establish|strong=\"H3559\"* my|strong=\"H3605\"* footsteps|strong=\"H6471\"* in|strong=\"H3559\"* your|strong=\"H3605\"* word." + }, + { + "verseNum": 134, + "text": "Redeem|strong=\"H6299\"* me|strong=\"H8104\"* from|strong=\"H8104\"* the|strong=\"H8104\"* oppression|strong=\"H6233\"* of|strong=\"H6233\"* man," + }, + { + "verseNum": 135, + "text": "Make your|strong=\"H6440\"* face|strong=\"H6440\"* shine on|strong=\"H6440\"* your|strong=\"H6440\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 136, + "text": "Streams|strong=\"H6388\"* of|strong=\"H5869\"* tears|strong=\"H6388\"* run|strong=\"H3381\"* down|strong=\"H3381\"* my|strong=\"H8104\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 137, + "text": "You are|strong=\"H3068\"* righteous|strong=\"H6662\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 138, + "text": "You|strong=\"H6680\"* have commanded|strong=\"H6680\"* your|strong=\"H6680\"* statutes in|strong=\"H3966\"* righteousness|strong=\"H6664\"*." + }, + { + "verseNum": 139, + "text": "My|strong=\"H3588\"* zeal|strong=\"H7068\"* wears me|strong=\"H7911\"* out," + }, + { + "verseNum": 140, + "text": "Your promises have|strong=\"H5650\"* been thoroughly tested|strong=\"H6884\"*," + }, + { + "verseNum": 141, + "text": "I|strong=\"H3808\"* am small|strong=\"H6810\"* and|strong=\"H6810\"* despised." + }, + { + "verseNum": 142, + "text": "Your|strong=\"H5769\"* righteousness|strong=\"H6666\"* is|strong=\"H6664\"* an everlasting|strong=\"H5769\"* righteousness|strong=\"H6666\"*." + }, + { + "verseNum": 143, + "text": "Trouble|strong=\"H6862\"* and|strong=\"H4687\"* anguish|strong=\"H4689\"* have|strong=\"H4672\"* taken|strong=\"H4672\"* hold|strong=\"H4672\"* of|strong=\"H4687\"* me|strong=\"H4672\"*." + }, + { + "verseNum": 144, + "text": "Your|strong=\"H2421\"* testimonies|strong=\"H5715\"* are|strong=\"H5715\"* righteous|strong=\"H6664\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 145, + "text": "I|strong=\"H3068\"* have|strong=\"H3068\"* called|strong=\"H7121\"* with|strong=\"H3068\"* my|strong=\"H3605\"* whole|strong=\"H3605\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 146, + "text": "I|strong=\"H7121\"* have|strong=\"H8104\"* called|strong=\"H7121\"* to|strong=\"H8104\"* you|strong=\"H3467\"*. Save|strong=\"H3467\"* me|strong=\"H7121\"*!" + }, + { + "verseNum": 147, + "text": "I|strong=\"H1697\"* rise|strong=\"H6923\"* before|strong=\"H6923\"* dawn|strong=\"H5399\"* and|strong=\"H1697\"* cry|strong=\"H7768\"* for|strong=\"H7768\"* help|strong=\"H7768\"*." + }, + { + "verseNum": 148, + "text": "My|strong=\"H6923\"* eyes|strong=\"H5869\"* stay open|strong=\"H5869\"* through the|strong=\"H5869\"* night watches," + }, + { + "verseNum": 149, + "text": "Hear|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"* according|strong=\"H4941\"* to|strong=\"H3068\"* your|strong=\"H3068\"* loving kindness|strong=\"H2617\"*." + }, + { + "verseNum": 150, + "text": "They draw|strong=\"H7126\"* near|strong=\"H7126\"* who follow|strong=\"H7291\"* after|strong=\"H7291\"* wickedness|strong=\"H2154\"*." + }, + { + "verseNum": 151, + "text": "You|strong=\"H3605\"* are|strong=\"H3068\"* near|strong=\"H7138\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 152, + "text": "Of|strong=\"H3045\"* old|strong=\"H5769\"* I|strong=\"H3588\"* have|strong=\"H3045\"* known|strong=\"H3045\"* from|strong=\"H3045\"* your|strong=\"H3045\"* testimonies|strong=\"H5713\"*," + }, + { + "verseNum": 153, + "text": "Consider|strong=\"H7200\"* my|strong=\"H7200\"* affliction|strong=\"H6040\"*, and|strong=\"H7200\"* deliver|strong=\"H2502\"* me|strong=\"H7200\"*," + }, + { + "verseNum": 154, + "text": "Plead|strong=\"H7378\"* my|strong=\"H7378\"* cause|strong=\"H7379\"*, and|strong=\"H2421\"* redeem|strong=\"H1350\"* me|strong=\"H2421\"*!" + }, + { + "verseNum": 155, + "text": "Salvation|strong=\"H3444\"* is|strong=\"H7563\"* far|strong=\"H7350\"* from|strong=\"H7350\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 156, + "text": "Great|strong=\"H7227\"* are|strong=\"H3068\"* your|strong=\"H3068\"* tender mercies|strong=\"H7356\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 157, + "text": "Many|strong=\"H7227\"* are|strong=\"H7227\"* my|strong=\"H5186\"* persecutors|strong=\"H7291\"* and|strong=\"H7227\"* my|strong=\"H5186\"* adversaries|strong=\"H6862\"*." + }, + { + "verseNum": 158, + "text": "I|strong=\"H7200\"* look|strong=\"H7200\"* at|strong=\"H7200\"* the|strong=\"H7200\"* faithless with|strong=\"H7200\"* loathing," + }, + { + "verseNum": 159, + "text": "Consider|strong=\"H7200\"* how|strong=\"H3588\"* I|strong=\"H3588\"* love|strong=\"H2617\"* your|strong=\"H3068\"* precepts|strong=\"H6490\"*." + }, + { + "verseNum": 160, + "text": "All|strong=\"H3605\"* of|strong=\"H1697\"* your|strong=\"H3605\"* words|strong=\"H1697\"* are|strong=\"H1697\"* truth." + }, + { + "verseNum": 161, + "text": "Princes|strong=\"H8269\"* have|strong=\"H1697\"* persecuted|strong=\"H7291\"* me|strong=\"H7291\"* without|strong=\"H2600\"* a|strong=\"H3068\"* cause|strong=\"H2600\"*," + }, + { + "verseNum": 162, + "text": "I|strong=\"H5921\"* rejoice|strong=\"H7797\"* at|strong=\"H5921\"* your|strong=\"H5921\"* word," + }, + { + "verseNum": 163, + "text": "I hate|strong=\"H8130\"* and|strong=\"H8451\"* abhor|strong=\"H8581\"* falsehood|strong=\"H8267\"*." + }, + { + "verseNum": 164, + "text": "Seven|strong=\"H7651\"* times|strong=\"H3117\"* a|strong=\"H3068\"* day|strong=\"H3117\"*, I|strong=\"H3117\"* praise|strong=\"H1984\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 165, + "text": "Those who|strong=\"H7227\"* love your|strong=\"H7965\"* law|strong=\"H8451\"* have|strong=\"H7965\"* great|strong=\"H7227\"* peace|strong=\"H7965\"*." + }, + { + "verseNum": 166, + "text": "I|strong=\"H3068\"* have|strong=\"H3068\"* hoped|strong=\"H7663\"* for|strong=\"H6213\"* your|strong=\"H3068\"* salvation|strong=\"H3444\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 167, + "text": "My|strong=\"H8104\"* soul|strong=\"H5315\"* has|strong=\"H5315\"* observed|strong=\"H8104\"* your|strong=\"H8104\"* testimonies|strong=\"H5713\"*." + }, + { + "verseNum": 168, + "text": "I|strong=\"H3588\"* have|strong=\"H3605\"* obeyed|strong=\"H8104\"* your|strong=\"H3605\"* precepts|strong=\"H6490\"* and|strong=\"H1870\"* your|strong=\"H3605\"* testimonies|strong=\"H5713\"*," + }, + { + "verseNum": 169, + "text": "Let my|strong=\"H3068\"* cry|strong=\"H7440\"* come|strong=\"H7126\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 170, + "text": "Let my|strong=\"H5337\"* supplication|strong=\"H8467\"* come before|strong=\"H6440\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 171, + "text": "Let my|strong=\"H3588\"* lips|strong=\"H8193\"* utter|strong=\"H5042\"* praise|strong=\"H8416\"*," + }, + { + "verseNum": 172, + "text": "Let my|strong=\"H3605\"* tongue|strong=\"H3956\"* sing|strong=\"H6030\"* of|strong=\"H3605\"* your|strong=\"H3605\"* word|strong=\"H3956\"*," + }, + { + "verseNum": 173, + "text": "Let|strong=\"H1961\"* your|strong=\"H3588\"* hand|strong=\"H3027\"* be|strong=\"H1961\"* ready to|strong=\"H1961\"* help|strong=\"H5826\"* me|strong=\"H1961\"*," + }, + { + "verseNum": 174, + "text": "I|strong=\"H3068\"* have|strong=\"H3068\"* longed|strong=\"H8373\"* for|strong=\"H3068\"* your|strong=\"H3068\"* salvation|strong=\"H3444\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 175, + "text": "Let|strong=\"H5315\"* my|strong=\"H2421\"* soul|strong=\"H5315\"* live|strong=\"H2421\"*, that|strong=\"H5315\"* I|strong=\"H5315\"* may|strong=\"H5315\"* praise|strong=\"H1984\"* you|strong=\"H5315\"*." + }, + { + "verseNum": 176, + "text": "I|strong=\"H3588\"* have|strong=\"H5650\"* gone|strong=\"H8582\"* astray|strong=\"H8582\"* like|strong=\"H3808\"* a|strong=\"H3068\"* lost sheep|strong=\"H7716\"*." + } + ] + }, + { + "chapterNum": 120, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3068\"* my|strong=\"H3068\"* distress|strong=\"H6869\"*, I|strong=\"H6869\"* cried|strong=\"H7121\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "Deliver|strong=\"H5337\"* my|strong=\"H3068\"* soul|strong=\"H5315\"*, Yahweh|strong=\"H3068\"*, from|strong=\"H5315\"* lying|strong=\"H8267\"* lips|strong=\"H8193\"*," + }, + { + "verseNum": 3, + "text": "What|strong=\"H4100\"* will|strong=\"H5414\"* be|strong=\"H3254\"* given|strong=\"H5414\"* to|strong=\"H5414\"* you|strong=\"H5414\"*, and|strong=\"H3254\"* what|strong=\"H4100\"* will|strong=\"H5414\"* be|strong=\"H3254\"* done|strong=\"H3254\"* more|strong=\"H3254\"* to|strong=\"H5414\"* you|strong=\"H5414\"*," + }, + { + "verseNum": 4, + "text": "Sharp|strong=\"H8150\"* arrows|strong=\"H2671\"* of|strong=\"H1368\"* the|strong=\"H5973\"* mighty|strong=\"H1368\"*," + }, + { + "verseNum": 5, + "text": "Woe is|strong=\"H3588\"* me|strong=\"H5973\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* live|strong=\"H7931\"* in|strong=\"H7931\"* Meshech|strong=\"H4902\"*," + }, + { + "verseNum": 6, + "text": "My|strong=\"H7931\"* soul|strong=\"H5315\"* has|strong=\"H5315\"* had|strong=\"H5315\"* her|strong=\"H8130\"* dwelling|strong=\"H7931\"* too|strong=\"H7227\"* long|strong=\"H7227\"*" + }, + { + "verseNum": 7, + "text": "I|strong=\"H3588\"* am for|strong=\"H3588\"* peace|strong=\"H7965\"*," + } + ] + }, + { + "chapterNum": 121, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H5869\"* will|strong=\"H5869\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H5375\"* eyes|strong=\"H5869\"* to|strong=\"H5869\"* the|strong=\"H5375\"* hills|strong=\"H2022\"*." + }, + { + "verseNum": 2, + "text": "My|strong=\"H3068\"* help|strong=\"H5828\"* comes|strong=\"H5973\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 3, + "text": "He|strong=\"H5414\"* will|strong=\"H5414\"* not|strong=\"H5414\"* allow|strong=\"H5414\"* your|strong=\"H5414\"* foot|strong=\"H7272\"* to|strong=\"H5414\"* be|strong=\"H5414\"* moved|strong=\"H4132\"*." + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2009\"*, he|strong=\"H3808\"* who|strong=\"H3478\"* keeps|strong=\"H8104\"* Israel|strong=\"H3478\"*" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* your|strong=\"H3068\"* keeper|strong=\"H8104\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5221\"* sun|strong=\"H8121\"* will|strong=\"H3808\"* not|strong=\"H3808\"* harm|strong=\"H5221\"* you|strong=\"H3808\"* by|strong=\"H3808\"* day|strong=\"H3119\"*," + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* keep|strong=\"H8104\"* you|strong=\"H3605\"* from|strong=\"H5315\"* all|strong=\"H3605\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* keep|strong=\"H8104\"* your|strong=\"H3068\"* going|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3068\"* your|strong=\"H3068\"* coming|strong=\"H3318\"* in|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 122, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H3068\"* was|strong=\"H3068\"* glad|strong=\"H8055\"* when|strong=\"H3068\"* they|strong=\"H3068\"* said to|strong=\"H3212\"* me|strong=\"H3212\"*," + }, + { + "verseNum": 2, + "text": "Our|strong=\"H1961\"* feet|strong=\"H7272\"* are|strong=\"H8179\"* standing|strong=\"H5975\"* within|strong=\"H3389\"* your|strong=\"H1961\"* gates|strong=\"H8179\"*, Jerusalem|strong=\"H3389\"*!" + }, + { + "verseNum": 3, + "text": "Jerusalem|strong=\"H3389\"* is|strong=\"H5892\"* built|strong=\"H1129\"* as|strong=\"H3389\"* a|strong=\"H3068\"* city|strong=\"H5892\"* that|strong=\"H5892\"* is|strong=\"H5892\"* compact|strong=\"H2266\"* together|strong=\"H3162\"*," + }, + { + "verseNum": 4, + "text": "where|strong=\"H8033\"* the|strong=\"H3068\"* tribes|strong=\"H7626\"* go|strong=\"H5927\"* up|strong=\"H5927\"*, even|strong=\"H3068\"* Yah|strong=\"H3068\"*’s tribes|strong=\"H7626\"*," + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* there|strong=\"H8033\"* are|strong=\"H1004\"* set|strong=\"H3427\"* thrones|strong=\"H3678\"* for|strong=\"H3588\"* judgment|strong=\"H4941\"*," + }, + { + "verseNum": 6, + "text": "Pray|strong=\"H7592\"* for|strong=\"H3389\"* the|strong=\"H7592\"* peace|strong=\"H7965\"* of|strong=\"H7592\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 7, + "text": "Peace|strong=\"H7965\"* be|strong=\"H1961\"* within your|strong=\"H1961\"* walls|strong=\"H2426\"*," + }, + { + "verseNum": 8, + "text": "For|strong=\"H4616\"* my|strong=\"H1696\"* brothers’ and|strong=\"H7965\"* companions|strong=\"H7453\"*’ sakes," + }, + { + "verseNum": 9, + "text": "For|strong=\"H4616\"* the|strong=\"H3068\"* sake|strong=\"H4616\"* of|strong=\"H1004\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 123, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H5869\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H5375\"* eyes|strong=\"H5869\"* to|strong=\"H5869\"* you|strong=\"H5375\"*," + }, + { + "verseNum": 2, + "text": "Behold|strong=\"H2009\"*, as|strong=\"H5704\"* the|strong=\"H3068\"* eyes|strong=\"H5869\"* of|strong=\"H3068\"* servants|strong=\"H5650\"* look|strong=\"H2009\"* to|strong=\"H5704\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* their|strong=\"H3068\"* master," + }, + { + "verseNum": 3, + "text": "Have|strong=\"H3068\"* mercy|strong=\"H2603\"* on|strong=\"H3068\"* us|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* mercy|strong=\"H2603\"* on|strong=\"H3068\"* us|strong=\"H3588\"*," + }, + { + "verseNum": 4, + "text": "Our soul|strong=\"H5315\"* is|strong=\"H5315\"* exceedingly|strong=\"H7227\"* filled|strong=\"H7646\"* with|strong=\"H7646\"* the|strong=\"H7646\"* scoffing|strong=\"H3933\"* of|strong=\"H5315\"* those|strong=\"H7600\"* who|strong=\"H5315\"* are|strong=\"H7227\"* at|strong=\"H5315\"* ease|strong=\"H7600\"*," + } + ] + }, + { + "chapterNum": 124, + "verses": [ + { + "verseNum": 1, + "text": "If|strong=\"H3884\"* it|strong=\"H1961\"* had|strong=\"H3068\"* not|strong=\"H1961\"* been|strong=\"H1961\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* was|strong=\"H3068\"* on|strong=\"H3068\"* our|strong=\"H3068\"* side," + }, + { + "verseNum": 2, + "text": "if|strong=\"H3884\"* it|strong=\"H5921\"* had|strong=\"H3068\"* not|strong=\"H1961\"* been|strong=\"H1961\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* was|strong=\"H3068\"* on|strong=\"H5921\"* our|strong=\"H3068\"* side," + }, + { + "verseNum": 3, + "text": "then they would have swallowed|strong=\"H1104\"* us|strong=\"H1104\"* up|strong=\"H1104\"* alive|strong=\"H2416\"*," + }, + { + "verseNum": 4, + "text": "then|strong=\"H5674\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* would|strong=\"H5315\"* have|strong=\"H4325\"* overwhelmed|strong=\"H7857\"* us|strong=\"H5921\"*," + }, + { + "verseNum": 5, + "text": "Then|strong=\"H5674\"* the|strong=\"H5921\"* proud|strong=\"H2121\"* waters|strong=\"H4325\"* would|strong=\"H5315\"* have|strong=\"H4325\"* gone|strong=\"H5674\"* over|strong=\"H5921\"* our|strong=\"H5921\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 6, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H3808\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 7, + "text": "Our soul|strong=\"H5315\"* has|strong=\"H5315\"* escaped|strong=\"H4422\"* like|strong=\"H5315\"* a|strong=\"H3068\"* bird|strong=\"H6833\"* out|strong=\"H4422\"* of|strong=\"H5315\"* the|strong=\"H7665\"* fowler’s snare|strong=\"H6341\"*." + }, + { + "verseNum": 8, + "text": "Our|strong=\"H3068\"* help|strong=\"H5828\"* is|strong=\"H3068\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*," + } + ] + }, + { + "chapterNum": 125, + "verses": [ + { + "verseNum": 1, + "text": "Those|strong=\"H3427\"* who|strong=\"H3068\"* trust in|strong=\"H3427\"* Yahweh|strong=\"H3068\"* are|strong=\"H3068\"* as|strong=\"H3068\"* Mount|strong=\"H2022\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 2, + "text": "As|strong=\"H5704\"* the|strong=\"H3068\"* mountains|strong=\"H2022\"* surround|strong=\"H5439\"* Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* scepter|strong=\"H7626\"* of|strong=\"H3027\"* wickedness|strong=\"H7562\"* won’t remain|strong=\"H5117\"* over|strong=\"H5921\"* the|strong=\"H5921\"* allotment of|strong=\"H3027\"* the|strong=\"H5921\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 4, + "text": "Do|strong=\"H3068\"* good|strong=\"H2896\"*, Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* those who|strong=\"H3068\"* are|strong=\"H3068\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 5, + "text": "But|strong=\"H3068\"* as|strong=\"H3068\"* for|strong=\"H5921\"* those|strong=\"H5921\"* who|strong=\"H3068\"* turn|strong=\"H5186\"* away|strong=\"H3212\"* to|strong=\"H3478\"* their|strong=\"H3068\"* crooked|strong=\"H6128\"* ways|strong=\"H6128\"*," + } + ] + }, + { + "chapterNum": 126, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* Yahweh|strong=\"H3068\"* brought|strong=\"H7725\"* back|strong=\"H7725\"* those|strong=\"H1961\"* who|strong=\"H3068\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 2, + "text": "Then|strong=\"H6213\"* our|strong=\"H3068\"* mouth|strong=\"H6310\"* was|strong=\"H3068\"* filled|strong=\"H4390\"* with|strong=\"H5973\"* laughter|strong=\"H7814\"*," + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* done|strong=\"H6213\"* great|strong=\"H1431\"* things|strong=\"H1431\"* for|strong=\"H6213\"* us|strong=\"H6213\"*," + }, + { + "verseNum": 4, + "text": "Restore|strong=\"H7725\"* our|strong=\"H3068\"* fortunes|strong=\"H7622\"* again|strong=\"H7725\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 5, + "text": "Those who sow|strong=\"H2232\"* in|strong=\"H2232\"* tears|strong=\"H1832\"* will reap|strong=\"H7114\"* in|strong=\"H2232\"* joy|strong=\"H7440\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H1980\"* who|strong=\"H1980\"* goes|strong=\"H1980\"* out|strong=\"H1980\"* weeping|strong=\"H1058\"*, carrying|strong=\"H5375\"* seed|strong=\"H2233\"* for|strong=\"H1058\"* sowing|strong=\"H2233\"*," + } + ] + }, + { + "chapterNum": 127, + "verses": [ + { + "verseNum": 1, + "text": "Unless|strong=\"H3808\"* Yahweh|strong=\"H3068\"* builds|strong=\"H1129\"* the|strong=\"H8104\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 2, + "text": "It|strong=\"H5414\"* is|strong=\"H3651\"* vain|strong=\"H7723\"* for|strong=\"H3427\"* you|strong=\"H5414\"* to|strong=\"H5414\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* early|strong=\"H7925\"*," + }, + { + "verseNum": 3, + "text": "Behold|strong=\"H2009\"*, children|strong=\"H1121\"* are|strong=\"H1121\"* a|strong=\"H3068\"* heritage|strong=\"H5159\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "As|strong=\"H3651\"* arrows|strong=\"H2671\"* in|strong=\"H1121\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"*," + }, + { + "verseNum": 5, + "text": "Happy is|strong=\"H1696\"* the|strong=\"H3588\"* man|strong=\"H1397\"* who|strong=\"H1992\"* has|strong=\"H3588\"* his|strong=\"H3588\"* quiver full|strong=\"H4390\"* of|strong=\"H8179\"* them|strong=\"H1992\"*." + } + ] + }, + { + "chapterNum": 128, + "verses": [ + { + "verseNum": 1, + "text": "Blessed is|strong=\"H3068\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* fears|strong=\"H3373\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H2896\"* eat the|strong=\"H3588\"* labor|strong=\"H3018\"* of|strong=\"H3709\"* your|strong=\"H3588\"* hands|strong=\"H3709\"*." + }, + { + "verseNum": 3, + "text": "Your|strong=\"H5439\"* wife will|strong=\"H1121\"* be|strong=\"H1121\"* as|strong=\"H1121\"* a|strong=\"H3068\"* fruitful|strong=\"H6509\"* vine|strong=\"H1612\"* in|strong=\"H1004\"* the|strong=\"H5439\"* innermost|strong=\"H3411\"* parts|strong=\"H3411\"* of|strong=\"H1121\"* your|strong=\"H5439\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2009\"*, this|strong=\"H3651\"* is|strong=\"H3068\"* how|strong=\"H3588\"* the|strong=\"H3588\"* man|strong=\"H1397\"* who|strong=\"H3068\"* fears|strong=\"H3373\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* blessed|strong=\"H1288\"*." + }, + { + "verseNum": 5, + "text": "May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H3605\"* out|strong=\"H7200\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 6, + "text": "Yes|strong=\"H7200\"*, may|strong=\"H3478\"* you|strong=\"H5921\"* see|strong=\"H7200\"* your|strong=\"H5921\"* children|strong=\"H1121\"*’s children|strong=\"H1121\"*." + } + ] + }, + { + "chapterNum": 129, + "verses": [ + { + "verseNum": 1, + "text": "Many|strong=\"H7227\"* times|strong=\"H7227\"* they|strong=\"H3478\"* have|strong=\"H3478\"* afflicted|strong=\"H6887\"* me|strong=\"H4994\"* from|strong=\"H3478\"* my|strong=\"H3478\"* youth|strong=\"H5271\"* up|strong=\"H6887\"*." + }, + { + "verseNum": 2, + "text": "many|strong=\"H7227\"* times|strong=\"H7227\"* they|strong=\"H3808\"* have|strong=\"H1571\"* afflicted|strong=\"H6887\"* me|strong=\"H3808\"* from|strong=\"H1571\"* my|strong=\"H3808\"* youth|strong=\"H5271\"* up|strong=\"H6887\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* plowers|strong=\"H2790\"* plowed|strong=\"H2790\"* on|strong=\"H5921\"* my|strong=\"H5921\"* back|strong=\"H1354\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* righteous|strong=\"H6662\"*." + }, + { + "verseNum": 5, + "text": "Let them|strong=\"H8130\"* be|strong=\"H6726\"* disappointed and|strong=\"H6726\"* turned|strong=\"H5472\"* backward," + }, + { + "verseNum": 6, + "text": "Let|strong=\"H1961\"* them|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H1961\"* grass|strong=\"H2682\"* on|strong=\"H1961\"* the|strong=\"H1961\"* housetops|strong=\"H1406\"*," + }, + { + "verseNum": 7, + "text": "with|strong=\"H4390\"* which the|strong=\"H4390\"* reaper|strong=\"H7114\"* doesn’t fill|strong=\"H4390\"* his|strong=\"H4390\"* hand|strong=\"H3709\"*," + }, + { + "verseNum": 8, + "text": "Neither|strong=\"H3808\"* do|strong=\"H3068\"* those who|strong=\"H3068\"* go|strong=\"H5674\"* by|strong=\"H5674\"* say," + } + ] + }, + { + "chapterNum": 130, + "verses": [ + { + "verseNum": 1, + "text": "Out of|strong=\"H3068\"* the|strong=\"H3068\"* depths|strong=\"H4615\"* I|strong=\"H3068\"* have|strong=\"H3068\"* cried|strong=\"H7121\"* to|strong=\"H3068\"* you|strong=\"H7121\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "Lord, hear|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 3, + "text": "If you|strong=\"H8104\"*, Yah|strong=\"H3068\"*, kept|strong=\"H8104\"* a|strong=\"H3068\"* record of|strong=\"H5771\"* sins|strong=\"H5771\"*," + }, + { + "verseNum": 4, + "text": "But|strong=\"H3588\"* there is|strong=\"H4616\"* forgiveness|strong=\"H5547\"* with|strong=\"H5973\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 5, + "text": "I|strong=\"H1697\"* wait|strong=\"H3176\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "My|strong=\"H8104\"* soul|strong=\"H5315\"* longs for|strong=\"H5315\"* the|strong=\"H8104\"* Lord more|strong=\"H5315\"* than watchmen|strong=\"H8104\"* long|strong=\"H5315\"* for|strong=\"H5315\"* the|strong=\"H8104\"* morning|strong=\"H1242\"*," + }, + { + "verseNum": 7, + "text": "Israel|strong=\"H3478\"*, hope|strong=\"H3176\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 8, + "text": "He|strong=\"H1931\"* will|strong=\"H3478\"* redeem|strong=\"H6299\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* all|strong=\"H3605\"* their|strong=\"H3605\"* sins|strong=\"H5771\"*." + } + ] + }, + { + "chapterNum": 131, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, my|strong=\"H3068\"* heart|strong=\"H3820\"* isn’t arrogant, nor|strong=\"H3808\"* my|strong=\"H3068\"* eyes|strong=\"H5869\"* lofty|strong=\"H7311\"*;" + }, + { + "verseNum": 2, + "text": "Surely|strong=\"H3808\"* I|strong=\"H5921\"* have|strong=\"H3808\"* stilled and|strong=\"H5315\"* quieted|strong=\"H1826\"* my|strong=\"H5921\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 3, + "text": "Israel|strong=\"H3478\"*, hope|strong=\"H3176\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 132, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, remember|strong=\"H2142\"* David|strong=\"H1732\"* and|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* affliction|strong=\"H6031\"*," + }, + { + "verseNum": 2, + "text": "how he|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 3, + "text": "“Surely|strong=\"H5927\"* I|strong=\"H5921\"* will|strong=\"H1004\"* not|strong=\"H5927\"* come|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H5921\"* structure of|strong=\"H1004\"* my|strong=\"H5921\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 4, + "text": "I|strong=\"H5414\"* will|strong=\"H5869\"* not|strong=\"H5414\"* give|strong=\"H5414\"* sleep|strong=\"H8153\"* to|strong=\"H5414\"* my|strong=\"H5414\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 5, + "text": "until|strong=\"H5704\"* I|strong=\"H5704\"* find|strong=\"H4672\"* out|strong=\"H4672\"* a|strong=\"H3068\"* place|strong=\"H4725\"* for|strong=\"H5704\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "Behold|strong=\"H2009\"*, we|strong=\"H3068\"* heard|strong=\"H8085\"* of|strong=\"H7704\"* it|strong=\"H4672\"* in|strong=\"H8085\"* Ephrathah." + }, + { + "verseNum": 7, + "text": "“We will|strong=\"H7272\"* go|strong=\"H7272\"* into his|strong=\"H7812\"* dwelling|strong=\"H4908\"* place|strong=\"H4908\"*." + }, + { + "verseNum": 8, + "text": "Arise|strong=\"H6965\"*, Yahweh|strong=\"H3068\"*, into|strong=\"H5797\"* your|strong=\"H3068\"* resting|strong=\"H4496\"* place|strong=\"H4496\"*," + }, + { + "verseNum": 9, + "text": "Let your priests|strong=\"H3548\"* be|strong=\"H3548\"* clothed|strong=\"H3847\"* with|strong=\"H3847\"* righteousness|strong=\"H6664\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H6440\"* your|strong=\"H6440\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*’s sake|strong=\"H5668\"*," + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"* to|strong=\"H7725\"* David|strong=\"H1732\"* in|strong=\"H3068\"* truth|strong=\"H3808\"*." + }, + { + "verseNum": 12, + "text": "If|strong=\"H1121\"* your|strong=\"H8104\"* children|strong=\"H1121\"* will|strong=\"H1571\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* covenant|strong=\"H1285\"*," + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* chosen Zion|strong=\"H6726\"*." + }, + { + "verseNum": 14, + "text": "“This|strong=\"H2063\"* is|strong=\"H3588\"* my|strong=\"H3588\"* resting|strong=\"H4496\"* place|strong=\"H4496\"* forever|strong=\"H5703\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H1288\"* will abundantly|strong=\"H1288\"* bless|strong=\"H1288\"* her|strong=\"H7646\"* provision|strong=\"H6718\"*." + }, + { + "verseNum": 16, + "text": "I will|strong=\"H2623\"* also clothe|strong=\"H3847\"* her|strong=\"H3847\"* priests|strong=\"H3548\"* with|strong=\"H3847\"* salvation|strong=\"H3468\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H6779\"* will|strong=\"H5216\"* make|strong=\"H6779\"* the|strong=\"H8033\"* horn|strong=\"H7161\"* of|strong=\"H7161\"* David|strong=\"H1732\"* to|strong=\"H1732\"* bud|strong=\"H6779\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H5921\"* will clothe|strong=\"H3847\"* his|strong=\"H5921\"* enemies with|strong=\"H3847\"* shame|strong=\"H1322\"*," + } + ] + }, + { + "chapterNum": 133, + "verses": [ + { + "verseNum": 1, + "text": "See|strong=\"H2009\"* how|strong=\"H4100\"* good|strong=\"H2896\"* and|strong=\"H1732\"* how|strong=\"H4100\"* pleasant|strong=\"H5273\"* it|strong=\"H2896\"* is|strong=\"H4100\"*" + }, + { + "verseNum": 2, + "text": "It|strong=\"H5921\"* is|strong=\"H2896\"* like|strong=\"H3381\"* the|strong=\"H5921\"* precious|strong=\"H2896\"* oil|strong=\"H8081\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"*," + }, + { + "verseNum": 3, + "text": "like|strong=\"H3381\"* the|strong=\"H5921\"* dew|strong=\"H2919\"* of|strong=\"H3068\"* Hermon|strong=\"H2768\"*," + } + ] + }, + { + "chapterNum": 134, + "verses": [ + { + "verseNum": 1, + "text": "Look|strong=\"H2009\"*! Praise|strong=\"H1288\"* Yahweh|strong=\"H3068\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* servants|strong=\"H5650\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 2, + "text": "Lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H3068\"* hands|strong=\"H3027\"* in|strong=\"H3068\"* the|strong=\"H5375\"* sanctuary|strong=\"H6944\"*." + }, + { + "verseNum": 3, + "text": "May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H6213\"* from|strong=\"H3068\"* Zion|strong=\"H6726\"*," + } + ] + }, + { + "chapterNum": 135, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yah|strong=\"H3068\"*!" + }, + { + "verseNum": 2, + "text": "you|strong=\"H1004\"* who|strong=\"H3068\"* stand|strong=\"H5975\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*," + }, + { + "verseNum": 3, + "text": "Praise|strong=\"H1984\"* Yah|strong=\"H3068\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Yah|strong=\"H3068\"* has|strong=\"H3478\"* chosen Jacob|strong=\"H3290\"* for|strong=\"H3588\"* himself," + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* great|strong=\"H1419\"*," + }, + { + "verseNum": 6, + "text": "Whatever|strong=\"H3605\"* Yahweh|strong=\"H3068\"* pleased|strong=\"H2654\"*, that|strong=\"H3605\"* he|strong=\"H6213\"* has|strong=\"H3068\"* done|strong=\"H6213\"*," + }, + { + "verseNum": 7, + "text": "He|strong=\"H6213\"* causes|strong=\"H3318\"* the|strong=\"H6213\"* clouds|strong=\"H5387\"* to|strong=\"H3318\"* rise|strong=\"H5927\"* from|strong=\"H3318\"* the|strong=\"H6213\"* ends|strong=\"H7097\"* of|strong=\"H7307\"* the|strong=\"H6213\"* earth|strong=\"H5927\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H5704\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* firstborn|strong=\"H1060\"* of|strong=\"H1060\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 9, + "text": "He|strong=\"H3605\"* sent|strong=\"H7971\"* signs and|strong=\"H7971\"* wonders|strong=\"H4159\"* into|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H5650\"* you|strong=\"H3605\"*, Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 10, + "text": "He|strong=\"H5221\"* struck|strong=\"H5221\"* many|strong=\"H7227\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 11, + "text": "Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Amorites," + }, + { + "verseNum": 12, + "text": "and|strong=\"H3478\"* gave|strong=\"H5414\"* their|strong=\"H5414\"* land|strong=\"H5159\"* for|strong=\"H3478\"* a|strong=\"H3068\"* heritage|strong=\"H5159\"*," + }, + { + "verseNum": 13, + "text": "Your|strong=\"H3068\"* name|strong=\"H8034\"*, Yahweh|strong=\"H3068\"*, endures|strong=\"H5769\"* forever|strong=\"H5769\"*;" + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* judge|strong=\"H1777\"* his|strong=\"H3068\"* people|strong=\"H5971\"*" + }, + { + "verseNum": 15, + "text": "The|strong=\"H3027\"* idols|strong=\"H6091\"* of|strong=\"H3027\"* the|strong=\"H3027\"* nations|strong=\"H1471\"* are|strong=\"H1471\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 16, + "text": "They|strong=\"H1992\"* have|strong=\"H5869\"* mouths|strong=\"H6310\"*, but|strong=\"H3808\"* they|strong=\"H1992\"* can|strong=\"H7200\"*’t speak|strong=\"H1696\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H1992\"* have|strong=\"H3426\"* ears, but|strong=\"H3808\"* they|strong=\"H1992\"* can|strong=\"H7307\"*’t hear," + }, + { + "verseNum": 18, + "text": "Those|strong=\"H3605\"* who|strong=\"H3605\"* make|strong=\"H6213\"* them|strong=\"H6213\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H3644\"* them|strong=\"H6213\"*," + }, + { + "verseNum": 19, + "text": "House|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, praise|strong=\"H1288\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 20, + "text": "House|strong=\"H1004\"* of|strong=\"H1004\"* Levi|strong=\"H3878\"*, praise|strong=\"H1288\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 21, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H3068\"* Yahweh|strong=\"H3068\"* from|strong=\"H3068\"* Zion|strong=\"H6726\"*," + } + ] + }, + { + "chapterNum": 136, + "verses": [ + { + "verseNum": 1, + "text": "Give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H3068\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 2, + "text": "Give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H2617\"* the|strong=\"H3588\"* God of|strong=\"H2617\"* gods," + }, + { + "verseNum": 3, + "text": "Give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H2617\"* the|strong=\"H3588\"* Lord|strong=\"H2617\"* of|strong=\"H2617\"* lords," + }, + { + "verseNum": 4, + "text": "to|strong=\"H6213\"* him|strong=\"H6213\"* who|strong=\"H3588\"* alone|strong=\"H6213\"* does|strong=\"H6213\"* great|strong=\"H1419\"* wonders|strong=\"H6381\"*," + }, + { + "verseNum": 5, + "text": "to|strong=\"H6213\"* him|strong=\"H6213\"* who|strong=\"H3588\"* by|strong=\"H6213\"* understanding|strong=\"H8394\"* made|strong=\"H6213\"* the|strong=\"H3588\"* heavens|strong=\"H8064\"*," + }, + { + "verseNum": 6, + "text": "to|strong=\"H5921\"* him|strong=\"H5921\"* who|strong=\"H3588\"* spread|strong=\"H7554\"* out|strong=\"H5921\"* the|strong=\"H5921\"* earth above|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"*," + }, + { + "verseNum": 7, + "text": "to|strong=\"H6213\"* him|strong=\"H6213\"* who|strong=\"H3588\"* made|strong=\"H6213\"* the|strong=\"H3588\"* great|strong=\"H1419\"* lights," + }, + { + "verseNum": 8, + "text": "the|strong=\"H3588\"* sun|strong=\"H8121\"* to|strong=\"H3117\"* rule|strong=\"H4475\"* by|strong=\"H3117\"* day|strong=\"H3117\"*," + }, + { + "verseNum": 9, + "text": "the|strong=\"H3588\"* moon|strong=\"H3394\"* and|strong=\"H5769\"* stars|strong=\"H3556\"* to|strong=\"H2617\"* rule|strong=\"H4475\"* by|strong=\"H3915\"* night|strong=\"H3915\"*," + }, + { + "verseNum": 10, + "text": "to|strong=\"H4714\"* him|strong=\"H5221\"* who|strong=\"H3588\"* struck|strong=\"H5221\"* down|strong=\"H5221\"* the|strong=\"H3588\"* Egyptian|strong=\"H4714\"* firstborn|strong=\"H1060\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H3478\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* Israel|strong=\"H3478\"* from|strong=\"H3318\"* among|strong=\"H8432\"* them|strong=\"H3318\"*," + }, + { + "verseNum": 12, + "text": "with|strong=\"H3027\"* a|strong=\"H3068\"* strong|strong=\"H2389\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* with|strong=\"H3027\"* an|strong=\"H3588\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*," + }, + { + "verseNum": 13, + "text": "to|strong=\"H3220\"* him|strong=\"H3588\"* who|strong=\"H3588\"* divided|strong=\"H1504\"* the|strong=\"H3588\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"* apart," + }, + { + "verseNum": 14, + "text": "and|strong=\"H3478\"* made|strong=\"H3478\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3588\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* it|strong=\"H3588\"*," + }, + { + "verseNum": 15, + "text": "but|strong=\"H3588\"* overthrew|strong=\"H5287\"* Pharaoh|strong=\"H6547\"* and|strong=\"H5769\"* his|strong=\"H3588\"* army|strong=\"H2428\"* in|strong=\"H3220\"* the|strong=\"H3588\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*," + }, + { + "verseNum": 16, + "text": "to|strong=\"H3212\"* him|strong=\"H3588\"* who|strong=\"H5971\"* led|strong=\"H3212\"* his|strong=\"H3588\"* people|strong=\"H5971\"* through|strong=\"H3212\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"*," + }, + { + "verseNum": 17, + "text": "to|strong=\"H4428\"* him|strong=\"H5221\"* who|strong=\"H4428\"* struck|strong=\"H5221\"* great|strong=\"H1419\"* kings|strong=\"H4428\"*," + }, + { + "verseNum": 18, + "text": "and|strong=\"H4428\"* killed|strong=\"H2026\"* mighty kings|strong=\"H4428\"*," + }, + { + "verseNum": 19, + "text": "Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3588\"* Amorites," + }, + { + "verseNum": 20, + "text": "Og|strong=\"H5747\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"*," + }, + { + "verseNum": 21, + "text": "and|strong=\"H5769\"* gave|strong=\"H5414\"* their|strong=\"H5414\"* land|strong=\"H5159\"* as|strong=\"H3588\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*," + }, + { + "verseNum": 22, + "text": "even|strong=\"H3588\"* a|strong=\"H3068\"* heritage|strong=\"H5159\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"* his|strong=\"H3478\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 23, + "text": "who|strong=\"H3588\"* remembered|strong=\"H2142\"* us|strong=\"H3588\"* in|strong=\"H2142\"* our|strong=\"H3588\"* low|strong=\"H8216\"* estate|strong=\"H8216\"*," + }, + { + "verseNum": 24, + "text": "and|strong=\"H5769\"* has|strong=\"H3588\"* delivered|strong=\"H6862\"* us|strong=\"H3588\"* from|strong=\"H6862\"* our|strong=\"H3588\"* adversaries|strong=\"H6862\"*," + }, + { + "verseNum": 25, + "text": "who|strong=\"H3605\"* gives|strong=\"H5414\"* food|strong=\"H3899\"* to|strong=\"H5414\"* every|strong=\"H3605\"* creature," + }, + { + "verseNum": 26, + "text": "Oh give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H2617\"* the|strong=\"H3588\"* God|strong=\"H8064\"* of|strong=\"H8064\"* heaven|strong=\"H8064\"*," + } + ] + }, + { + "chapterNum": 137, + "verses": [ + { + "verseNum": 1, + "text": "By|strong=\"H5921\"* the|strong=\"H5921\"* rivers|strong=\"H5104\"* of|strong=\"H3427\"* Babylon, there|strong=\"H8033\"* we|strong=\"H3068\"* sat|strong=\"H3427\"* down|strong=\"H3427\"*." + }, + { + "verseNum": 2, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* willows|strong=\"H6155\"* in|strong=\"H5921\"* that|strong=\"H5921\"* land," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* there|strong=\"H8033\"*, those|strong=\"H3588\"* who|strong=\"H3588\"* led|strong=\"H7617\"* us|strong=\"H3588\"* captive|strong=\"H7617\"* asked|strong=\"H7592\"* us|strong=\"H3588\"* for|strong=\"H3588\"* songs|strong=\"H7892\"*." + }, + { + "verseNum": 4, + "text": "How can we|strong=\"H3068\"* sing|strong=\"H7891\"* Yahweh|strong=\"H3068\"*’s song|strong=\"H7892\"* in|strong=\"H5921\"* a|strong=\"H3068\"* foreign|strong=\"H5236\"* land?" + }, + { + "verseNum": 5, + "text": "If I forget|strong=\"H7911\"* you, Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 6, + "text": "Let|strong=\"H3808\"* my|strong=\"H5921\"* tongue|strong=\"H3956\"* stick|strong=\"H1692\"* to|strong=\"H5927\"* the|strong=\"H5921\"* roof|strong=\"H2441\"* of|strong=\"H7218\"* my|strong=\"H5921\"* mouth|strong=\"H2441\"* if I|strong=\"H5921\"* don’t remember|strong=\"H2142\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 7, + "text": "Remember|strong=\"H2142\"*, Yahweh|strong=\"H3068\"*, against|strong=\"H3068\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Edom in|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 8, + "text": "Daughter|strong=\"H1323\"* of|strong=\"H1323\"* Babylon, doomed to|strong=\"H1323\"* destruction," + }, + { + "verseNum": 9, + "text": "Happy shall he|strong=\"H5553\"* be," + } + ] + }, + { + "chapterNum": 138, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H3605\"* will|strong=\"H3820\"* give|strong=\"H3034\"* you|strong=\"H3605\"* thanks|strong=\"H3034\"* with|strong=\"H1732\"* my|strong=\"H3605\"* whole|strong=\"H3605\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H3588\"* will|strong=\"H8034\"* bow|strong=\"H7812\"* down|strong=\"H7812\"* toward|strong=\"H5921\"* your|strong=\"H3605\"* holy|strong=\"H6944\"* temple|strong=\"H1964\"*," + }, + { + "verseNum": 3, + "text": "In|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* called|strong=\"H7121\"*, you|strong=\"H3117\"* answered|strong=\"H6030\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 4, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* earth will|strong=\"H3068\"* give|strong=\"H3034\"* you|strong=\"H3588\"* thanks|strong=\"H3034\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 5, + "text": "Yes|strong=\"H3588\"*, they|strong=\"H3588\"* will|strong=\"H3068\"* sing|strong=\"H7891\"* of|strong=\"H3068\"* the|strong=\"H3588\"* ways|strong=\"H1870\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* though|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* high|strong=\"H1364\"*, yet|strong=\"H3588\"* he|strong=\"H3588\"* looks|strong=\"H7200\"* after|strong=\"H3588\"* the|strong=\"H7200\"* lowly|strong=\"H8217\"*;" + }, + { + "verseNum": 7, + "text": "Though I|strong=\"H5921\"* walk|strong=\"H3212\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H7130\"* of|strong=\"H3027\"* trouble|strong=\"H6869\"*, you|strong=\"H7971\"* will|strong=\"H3027\"* revive|strong=\"H2421\"* me|strong=\"H7971\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* fulfill that|strong=\"H3068\"* which|strong=\"H3068\"* concerns|strong=\"H1157\"* me|strong=\"H1157\"*." + } + ] + }, + { + "chapterNum": 139, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, you|strong=\"H3045\"* have|strong=\"H3068\"* searched|strong=\"H2713\"* me|strong=\"H3045\"*," + }, + { + "verseNum": 2, + "text": "You|strong=\"H3045\"* know|strong=\"H3045\"* my|strong=\"H3045\"* sitting|strong=\"H3427\"* down|strong=\"H3427\"* and|strong=\"H6965\"* my|strong=\"H3045\"* rising|strong=\"H6965\"* up|strong=\"H6965\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3605\"* search out|strong=\"H3605\"* my|strong=\"H3605\"* path|strong=\"H1870\"* and|strong=\"H1870\"* my|strong=\"H3605\"* lying down|strong=\"H1870\"*," + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* there|strong=\"H3605\"* is|strong=\"H3068\"* not|strong=\"H3045\"* a|strong=\"H3068\"* word|strong=\"H4405\"* on|strong=\"H3068\"* my|strong=\"H3605\"* tongue|strong=\"H3956\"*," + }, + { + "verseNum": 5, + "text": "You|strong=\"H5921\"* hem me|strong=\"H5921\"* in|strong=\"H5921\"* behind|strong=\"H6696\"* and|strong=\"H3709\"* before|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "This knowledge|strong=\"H1847\"* is|strong=\"H1847\"* beyond|strong=\"H4480\"* me|strong=\"H4480\"*." + }, + { + "verseNum": 7, + "text": "Where could I|strong=\"H6440\"* go|strong=\"H3212\"* from|strong=\"H6440\"* your|strong=\"H6440\"* Spirit|strong=\"H7307\"*?" + }, + { + "verseNum": 8, + "text": "If|strong=\"H2005\"* I|strong=\"H2005\"* ascend up|strong=\"H5266\"* into|strong=\"H5266\"* heaven|strong=\"H8064\"*, you are|strong=\"H8064\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 9, + "text": "If I|strong=\"H3671\"* take|strong=\"H5375\"* the|strong=\"H5375\"* wings|strong=\"H3671\"* of|strong=\"H3220\"* the|strong=\"H5375\"* dawn|strong=\"H7837\"*," + }, + { + "verseNum": 10, + "text": "even|strong=\"H1571\"* there|strong=\"H8033\"* your|strong=\"H3027\"* hand|strong=\"H3027\"* will|strong=\"H1571\"* lead|strong=\"H5148\"* me|strong=\"H5148\"*," + }, + { + "verseNum": 11, + "text": "If I say, “Surely the|strong=\"H1157\"* darkness|strong=\"H2822\"* will|strong=\"H2822\"* overwhelm|strong=\"H7779\"* me|strong=\"H1157\"*." + }, + { + "verseNum": 12, + "text": "even|strong=\"H1571\"* the|strong=\"H4480\"* darkness|strong=\"H2822\"* doesn’t hide from|strong=\"H4480\"* you|strong=\"H3117\"*," + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* formed|strong=\"H7069\"* my|strong=\"H3588\"* inmost|strong=\"H3629\"* being|strong=\"H3629\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3588\"* will|strong=\"H5315\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H5921\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 15, + "text": "My|strong=\"H6213\"* frame|strong=\"H6108\"* wasn’t hidden|strong=\"H3582\"* from|strong=\"H4480\"* you|strong=\"H6213\"*," + }, + { + "verseNum": 16, + "text": "Your|strong=\"H3605\"* eyes|strong=\"H5869\"* saw|strong=\"H7200\"* my|strong=\"H3605\"* body." + }, + { + "verseNum": 17, + "text": "How|strong=\"H4100\"* precious|strong=\"H3365\"* to|strong=\"H7218\"* me|strong=\"H4100\"* are|strong=\"H4100\"* your|strong=\"H4100\"* thoughts|strong=\"H7454\"*, God!" + }, + { + "verseNum": 18, + "text": "If I would count|strong=\"H5608\"* them|strong=\"H5750\"*, they|strong=\"H5608\"* are|strong=\"H5973\"* more|strong=\"H5750\"* in|strong=\"H5750\"* number|strong=\"H5608\"* than|strong=\"H7235\"* the|strong=\"H5973\"* sand|strong=\"H2344\"*." + }, + { + "verseNum": 19, + "text": "If only|strong=\"H6991\"* you|strong=\"H4480\"*, God, would|strong=\"H5493\"* kill the|strong=\"H4480\"* wicked|strong=\"H7563\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"H5375\"* they|strong=\"H5375\"* speak against you|strong=\"H5375\"* wickedly|strong=\"H4209\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"*, don’t I|strong=\"H3808\"* hate|strong=\"H8130\"* those|strong=\"H8130\"* who|strong=\"H3068\"* hate|strong=\"H8130\"* you|strong=\"H3808\"*?" + }, + { + "verseNum": 22, + "text": "I|strong=\"H1961\"* hate|strong=\"H8130\"* them|strong=\"H8130\"* with|strong=\"H1961\"* perfect|strong=\"H8503\"* hatred|strong=\"H8135\"*." + }, + { + "verseNum": 23, + "text": "Search|strong=\"H2713\"* me|strong=\"H3824\"*, God, and|strong=\"H3045\"* know|strong=\"H3045\"* my|strong=\"H3045\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 24, + "text": "See|strong=\"H7200\"* if|strong=\"H7200\"* there|strong=\"H5769\"* is|strong=\"H1870\"* any|strong=\"H7200\"* wicked|strong=\"H6090\"* way|strong=\"H1870\"* in|strong=\"H1870\"* me|strong=\"H7200\"*," + } + ] + }, + { + "chapterNum": 140, + "verses": [ + { + "verseNum": 1, + "text": "Deliver me, Yahweh|strong=\"H3068\"*, from evil men." + }, + { + "verseNum": 2, + "text": "those who|strong=\"H3068\"* devise mischief|strong=\"H7451\"* in|strong=\"H3068\"* their|strong=\"H3068\"* hearts." + }, + { + "verseNum": 3, + "text": "They|strong=\"H3117\"* have|strong=\"H3117\"* sharpened their|strong=\"H3605\"* tongues like|strong=\"H2803\"* a|strong=\"H3068\"* serpent." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"*, keep me|strong=\"H8478\"* from|strong=\"H8478\"* the|strong=\"H8478\"* hands of|strong=\"H8478\"* the|strong=\"H8478\"* wicked|strong=\"H8478\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H8104\"* proud have|strong=\"H3068\"* hidden|strong=\"H5341\"* a|strong=\"H3068\"* snare for|strong=\"H3027\"* me|strong=\"H8104\"*," + }, + { + "verseNum": 6, + "text": "I|strong=\"H3027\"* said to|strong=\"H3027\"* Yahweh|strong=\"H3068\"*, “You|strong=\"H3027\"* are|strong=\"H3027\"* my|strong=\"H6566\"* God|strong=\"H3027\"*.”" + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* Lord|strong=\"H3068\"*, the|strong=\"H3068\"* strength of|strong=\"H3068\"* my|strong=\"H3068\"* salvation," + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"*, don’t grant the|strong=\"H3069\"* desires of|strong=\"H3117\"* the|strong=\"H3069\"* wicked." + }, + { + "verseNum": 9, + "text": "As|strong=\"H3068\"* for|strong=\"H3068\"* the|strong=\"H5414\"* head of|strong=\"H3068\"* those who|strong=\"H3068\"* surround me|strong=\"H5414\"*," + }, + { + "verseNum": 10, + "text": "Let burning coals fall on|strong=\"H7218\"* them." + }, + { + "verseNum": 11, + "text": "An|strong=\"H6965\"* evil speaker won’t be|strong=\"H1077\"* established|strong=\"H6965\"* in|strong=\"H5921\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 12, + "text": "I|strong=\"H3559\"* know that|strong=\"H7451\"* Yahweh|strong=\"H3068\"* will|strong=\"H3956\"* maintain|strong=\"H3559\"* the|strong=\"H3559\"* cause of|strong=\"H3956\"* the|strong=\"H3559\"* afflicted," + }, + { + "verseNum": 13, + "text": "Surely|strong=\"H3588\"* the|strong=\"H3588\"* righteous will|strong=\"H3068\"* give|strong=\"H6213\"* thanks to|strong=\"H3068\"* your|strong=\"H3068\"* name." + } + ] + }, + { + "chapterNum": 141, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, I|strong=\"H3068\"* have|strong=\"H3068\"* called|strong=\"H7121\"* on|strong=\"H3068\"* you|strong=\"H6963\"*." + }, + { + "verseNum": 2, + "text": "Let my|strong=\"H3559\"* prayer|strong=\"H8605\"* be|strong=\"H6440\"* set|strong=\"H3559\"* before|strong=\"H6440\"* you|strong=\"H6440\"* like|strong=\"H6440\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 3, + "text": "Set|strong=\"H7896\"* a|strong=\"H3068\"* watch|strong=\"H5341\"*, Yahweh|strong=\"H3068\"*, before|strong=\"H5921\"* my|strong=\"H3068\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 4, + "text": "Don’t incline|strong=\"H5186\"* my|strong=\"H5186\"* heart|strong=\"H3820\"* to|strong=\"H3820\"* any|strong=\"H1697\"* evil|strong=\"H7451\"* thing|strong=\"H1697\"*," + }, + { + "verseNum": 5, + "text": "Let the|strong=\"H3588\"* righteous|strong=\"H6662\"* strike|strong=\"H1986\"* me|strong=\"H3588\"*, it|strong=\"H3588\"* is|strong=\"H2617\"* kindness|strong=\"H2617\"*;" + }, + { + "verseNum": 6, + "text": "Their|strong=\"H8085\"* judges|strong=\"H8199\"* are|strong=\"H3027\"* thrown|strong=\"H8058\"* down|strong=\"H8058\"* by|strong=\"H3027\"* the|strong=\"H8085\"* sides|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H8085\"* rock|strong=\"H5553\"*." + }, + { + "verseNum": 7, + "text": "“As|strong=\"H3644\"* when|strong=\"H3644\"* one|strong=\"H6310\"* plows|strong=\"H6398\"* and|strong=\"H6310\"* breaks|strong=\"H1234\"* up|strong=\"H1234\"* the|strong=\"H1234\"* earth," + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* my|strong=\"H3588\"* eyes|strong=\"H5869\"* are|strong=\"H5869\"* on|strong=\"H5869\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* Lord|strong=\"H3069\"*." + }, + { + "verseNum": 9, + "text": "Keep|strong=\"H8104\"* me|strong=\"H8104\"* from|strong=\"H3027\"* the|strong=\"H8104\"* snare|strong=\"H4170\"* which they|strong=\"H3027\"* have|strong=\"H3027\"* laid|strong=\"H3369\"* for|strong=\"H3027\"* me|strong=\"H8104\"*," + }, + { + "verseNum": 10, + "text": "Let the|strong=\"H5704\"* wicked|strong=\"H7563\"* fall|strong=\"H5307\"* together|strong=\"H3162\"* into|strong=\"H5307\"* their|strong=\"H5307\"* own nets|strong=\"H4364\"*" + } + ] + }, + { + "chapterNum": 142, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H1961\"* cry with|strong=\"H1732\"* my|strong=\"H1732\"* voice to|strong=\"H1961\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H3068\"* pour out|strong=\"H2199\"* my|strong=\"H3068\"* complaint before him|strong=\"H6963\"*." + }, + { + "verseNum": 3, + "text": "When my|strong=\"H8210\"* spirit was|strong=\"H6440\"* overwhelmed within|strong=\"H6440\"* me|strong=\"H6440\"*," + }, + { + "verseNum": 4, + "text": "Look on|strong=\"H5921\"* my|strong=\"H5921\"* right|strong=\"H3045\"*, and|strong=\"H1980\"* see|strong=\"H3045\"*;" + }, + { + "verseNum": 5, + "text": "I|strong=\"H5315\"* cried to|strong=\"H7200\"* you|strong=\"H4480\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "Listen to|strong=\"H3068\"* my|strong=\"H3068\"* cry|strong=\"H2199\"*," + }, + { + "verseNum": 7, + "text": "Bring my|strong=\"H5337\"* soul out|strong=\"H4480\"* of|strong=\"H4480\"* prison," + } + ] + }, + { + "chapterNum": 143, + "verses": [ + { + "verseNum": 1, + "text": "Hear|strong=\"H8085\"* my|strong=\"H8085\"* prayer|strong=\"H8605\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "Don’t enter into|strong=\"H4941\"* judgment|strong=\"H4941\"* with|strong=\"H6440\"* your|strong=\"H3605\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* enemy pursues|strong=\"H7291\"* my|strong=\"H3588\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 4, + "text": "Therefore|strong=\"H5921\"* my|strong=\"H5921\"* spirit|strong=\"H7307\"* is|strong=\"H3820\"* overwhelmed|strong=\"H5848\"* within|strong=\"H8432\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3117\"* remember|strong=\"H2142\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* old|strong=\"H6924\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H5315\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* my|strong=\"H6566\"* hands|strong=\"H3027\"* to|strong=\"H3027\"* you|strong=\"H3027\"*." + }, + { + "verseNum": 7, + "text": "Hurry to|strong=\"H3381\"* answer|strong=\"H6030\"* me|strong=\"H6440\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "Cause me|strong=\"H5315\"* to|strong=\"H3212\"* hear|strong=\"H8085\"* your|strong=\"H5375\"* loving kindness|strong=\"H2617\"* in|strong=\"H8085\"* the|strong=\"H8085\"* morning|strong=\"H1242\"*," + }, + { + "verseNum": 9, + "text": "Deliver|strong=\"H5337\"* me|strong=\"H5337\"*, Yahweh|strong=\"H3068\"*, from|strong=\"H3068\"* my|strong=\"H3068\"* enemies." + }, + { + "verseNum": 10, + "text": "Teach|strong=\"H3925\"* me|strong=\"H6213\"* to|strong=\"H6213\"* do|strong=\"H6213\"* your|strong=\"H6213\"* will|strong=\"H7522\"*," + }, + { + "verseNum": 11, + "text": "Revive|strong=\"H2421\"* me|strong=\"H5315\"*, Yahweh|strong=\"H3068\"*, for|strong=\"H8034\"* your|strong=\"H3068\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*." + }, + { + "verseNum": 12, + "text": "In|strong=\"H5315\"* your|strong=\"H3605\"* loving kindness|strong=\"H2617\"*, cut|strong=\"H2617\"* off|strong=\"H6789\"* my|strong=\"H3605\"* enemies|strong=\"H6887\"*," + } + ] + }, + { + "chapterNum": 144, + "verses": [ + { + "verseNum": 1, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H3027\"* Yahweh|strong=\"H3068\"*, my|strong=\"H3068\"* rock|strong=\"H6697\"*," + }, + { + "verseNum": 2, + "text": "my|strong=\"H8478\"* loving kindness|strong=\"H2617\"*, my|strong=\"H8478\"* fortress|strong=\"H4686\"*," + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*, what|strong=\"H4100\"* is|strong=\"H3068\"* man|strong=\"H1121\"*, that|strong=\"H3045\"* you|strong=\"H3045\"* care for|strong=\"H3068\"* him|strong=\"H3045\"*?" + }, + { + "verseNum": 4, + "text": "Man|strong=\"H5674\"* is|strong=\"H3117\"* like|strong=\"H1819\"* a|strong=\"H3068\"* breath|strong=\"H1892\"*." + }, + { + "verseNum": 5, + "text": "Part your|strong=\"H3068\"* heavens|strong=\"H8064\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* come|strong=\"H3381\"* down|strong=\"H3381\"*." + }, + { + "verseNum": 6, + "text": "Throw|strong=\"H7971\"* out|strong=\"H7971\"* lightning|strong=\"H1300\"*, and|strong=\"H7971\"* scatter|strong=\"H6327\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 7, + "text": "Stretch|strong=\"H7971\"* out|strong=\"H7971\"* your|strong=\"H7971\"* hand|strong=\"H3027\"* from|strong=\"H3027\"* above|strong=\"H4791\"*," + }, + { + "verseNum": 8, + "text": "whose mouths|strong=\"H6310\"* speak|strong=\"H1696\"* deceit|strong=\"H8267\"*," + }, + { + "verseNum": 9, + "text": "I|strong=\"H7891\"* will|strong=\"H7892\"* sing|strong=\"H7891\"* a|strong=\"H3068\"* new|strong=\"H2319\"* song|strong=\"H7892\"* to|strong=\"H2167\"* you|strong=\"H2167\"*, God." + }, + { + "verseNum": 10, + "text": "You|strong=\"H5414\"* are|strong=\"H5650\"* he|strong=\"H1732\"* who|strong=\"H5650\"* gives|strong=\"H5414\"* salvation|strong=\"H8668\"* to|strong=\"H5414\"* kings|strong=\"H4428\"*," + }, + { + "verseNum": 11, + "text": "Rescue|strong=\"H5337\"* me|strong=\"H1696\"*, and|strong=\"H1121\"* deliver|strong=\"H5337\"* me|strong=\"H1696\"* out|strong=\"H5337\"* of|strong=\"H1121\"* the|strong=\"H3027\"* hands|strong=\"H3027\"* of|strong=\"H1121\"* foreigners|strong=\"H1121\"*," + }, + { + "verseNum": 12, + "text": "Then|strong=\"H1121\"* our sons|strong=\"H1121\"* will|strong=\"H1121\"* be|strong=\"H1121\"* like|strong=\"H1121\"* well-nurtured plants|strong=\"H5195\"*," + }, + { + "verseNum": 13, + "text": "Our barns are|strong=\"H4392\"* full|strong=\"H4392\"*, filled|strong=\"H4392\"* with|strong=\"H6629\"* all kinds|strong=\"H2177\"* of|strong=\"H4392\"* provision." + }, + { + "verseNum": 14, + "text": "Our|strong=\"H3318\"* oxen will pull|strong=\"H3318\"* heavy loads." + }, + { + "verseNum": 15, + "text": "Happy are|strong=\"H5971\"* the|strong=\"H3068\"* people|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* in|strong=\"H3068\"* such|strong=\"H3602\"* a|strong=\"H3068\"* situation." + } + ] + }, + { + "chapterNum": 145, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H8416\"* will|strong=\"H4428\"* exalt|strong=\"H7311\"* you|strong=\"H1288\"*, my|strong=\"H1732\"* God, the|strong=\"H1288\"* King|strong=\"H4428\"*." + }, + { + "verseNum": 2, + "text": "Every|strong=\"H3605\"* day|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3117\"* praise|strong=\"H1984\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 3, + "text": "Great|strong=\"H1419\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* greatly|strong=\"H3966\"* to|strong=\"H3068\"* be|strong=\"H3068\"* praised|strong=\"H1984\"*!" + }, + { + "verseNum": 4, + "text": "One|strong=\"H1755\"* generation|strong=\"H1755\"* will commend your|strong=\"H5046\"* works|strong=\"H4639\"* to|strong=\"H1755\"* another|strong=\"H5046\"*," + }, + { + "verseNum": 5, + "text": "I|strong=\"H1697\"* will|strong=\"H1697\"* meditate|strong=\"H7878\"* on|strong=\"H1697\"* the|strong=\"H1697\"* glorious|strong=\"H3519\"* majesty|strong=\"H1926\"* of|strong=\"H1697\"* your|strong=\"H1697\"* honor|strong=\"H3519\"*," + }, + { + "verseNum": 6, + "text": "Men will speak|strong=\"H5608\"* of|strong=\"H3372\"* the|strong=\"H3372\"* might|strong=\"H5807\"* of|strong=\"H3372\"* your|strong=\"H3372\"* awesome|strong=\"H3372\"* acts|strong=\"H3372\"*." + }, + { + "verseNum": 7, + "text": "They will|strong=\"H7227\"* utter|strong=\"H5042\"* the|strong=\"H6666\"* memory|strong=\"H2143\"* of|strong=\"H2898\"* your|strong=\"H6666\"* great|strong=\"H7227\"* goodness|strong=\"H2898\"*," + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* gracious|strong=\"H2587\"*, merciful|strong=\"H7349\"*," + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* good|strong=\"H2896\"* to|strong=\"H3068\"* all|strong=\"H3605\"*." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* your|strong=\"H3068\"* works|strong=\"H4639\"* will|strong=\"H3068\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* you|strong=\"H3605\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H1696\"* will|strong=\"H3519\"* speak|strong=\"H1696\"* of|strong=\"H4438\"* the|strong=\"H1696\"* glory|strong=\"H3519\"* of|strong=\"H4438\"* your|strong=\"H1696\"* kingdom|strong=\"H4438\"*," + }, + { + "verseNum": 12, + "text": "to|strong=\"H1121\"* make|strong=\"H3045\"* known|strong=\"H3045\"* to|strong=\"H1121\"* the|strong=\"H3045\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"* his|strong=\"H3045\"* mighty|strong=\"H1369\"* acts|strong=\"H1369\"*," + }, + { + "verseNum": 13, + "text": "Your|strong=\"H3605\"* kingdom|strong=\"H4438\"* is|strong=\"H3605\"* an everlasting|strong=\"H5769\"* kingdom|strong=\"H4438\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* upholds all|strong=\"H3605\"* who|strong=\"H3605\"* fall|strong=\"H5307\"*," + }, + { + "verseNum": 15, + "text": "The|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* all|strong=\"H3605\"* wait|strong=\"H7663\"* for|strong=\"H6256\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 16, + "text": "You|strong=\"H3605\"* open|strong=\"H6605\"* your|strong=\"H3605\"* hand|strong=\"H3027\"*," + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* righteous|strong=\"H6662\"* in|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*," + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* near|strong=\"H7138\"* to|strong=\"H3068\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* call|strong=\"H7121\"* on|strong=\"H3068\"* him|strong=\"H7121\"*," + }, + { + "verseNum": 19, + "text": "He|strong=\"H6213\"* will|strong=\"H7522\"* fulfill|strong=\"H6213\"* the|strong=\"H8085\"* desire|strong=\"H7522\"* of|strong=\"H6213\"* those|strong=\"H8085\"* who|strong=\"H6213\"* fear|strong=\"H3373\"* him|strong=\"H6213\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* preserves|strong=\"H8104\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* love him|strong=\"H3605\"*," + }, + { + "verseNum": 21, + "text": "My|strong=\"H3605\"* mouth|strong=\"H6310\"* will|strong=\"H3068\"* speak|strong=\"H1696\"* the|strong=\"H3605\"* praise|strong=\"H8416\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 146, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yah|strong=\"H3068\"*!" + }, + { + "verseNum": 2, + "text": "While|strong=\"H5750\"* I|strong=\"H3068\"* live|strong=\"H2416\"*, I|strong=\"H3068\"* will|strong=\"H3068\"* praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "Don’t put your|strong=\"H1121\"* trust in|strong=\"H1121\"* princes|strong=\"H5081\"*," + }, + { + "verseNum": 4, + "text": "His|strong=\"H7725\"* spirit|strong=\"H7307\"* departs|strong=\"H3318\"*, and|strong=\"H7725\"* he|strong=\"H1931\"* returns|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H7725\"* earth." + }, + { + "verseNum": 5, + "text": "Happy is|strong=\"H3068\"* he|strong=\"H3068\"* who|strong=\"H3068\"* has|strong=\"H3068\"* the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Jacob|strong=\"H3290\"* for|strong=\"H5921\"* his|strong=\"H3068\"* help|strong=\"H5828\"*," + }, + { + "verseNum": 6, + "text": "who|strong=\"H3605\"* made|strong=\"H6213\"* heaven|strong=\"H8064\"* and|strong=\"H8064\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 7, + "text": "who|strong=\"H3068\"* executes|strong=\"H6213\"* justice|strong=\"H4941\"* for|strong=\"H6213\"* the|strong=\"H5414\"* oppressed|strong=\"H6231\"*;" + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* opens|strong=\"H6491\"* the|strong=\"H3068\"* eyes of|strong=\"H3068\"* the|strong=\"H3068\"* blind|strong=\"H5787\"*." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* preserves|strong=\"H8104\"* the|strong=\"H8104\"* foreigners|strong=\"H1616\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* reign|strong=\"H4427\"* forever|strong=\"H5769\"*;" + } + ] + }, + { + "chapterNum": 147, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yah|strong=\"H3068\"*," + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* builds|strong=\"H1129\"* up|strong=\"H1129\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3820\"* heals|strong=\"H7495\"* the|strong=\"H7665\"* broken|strong=\"H7665\"* in|strong=\"H7665\"* heart|strong=\"H3820\"*," + }, + { + "verseNum": 4, + "text": "He|strong=\"H3605\"* counts|strong=\"H4487\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H8034\"* the|strong=\"H3605\"* stars|strong=\"H3556\"*." + }, + { + "verseNum": 5, + "text": "Great|strong=\"H1419\"* is|strong=\"H3581\"* our Lord, and|strong=\"H1419\"* mighty|strong=\"H1419\"* in|strong=\"H7227\"* power|strong=\"H3581\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* upholds the|strong=\"H3068\"* humble|strong=\"H6035\"*." + }, + { + "verseNum": 7, + "text": "Sing|strong=\"H2167\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* thanksgiving|strong=\"H8426\"*." + }, + { + "verseNum": 8, + "text": "who covers|strong=\"H3680\"* the|strong=\"H3680\"* sky|strong=\"H8064\"* with|strong=\"H3680\"* clouds|strong=\"H5645\"*," + }, + { + "verseNum": 9, + "text": "He|strong=\"H5414\"* provides|strong=\"H5414\"* food|strong=\"H3899\"* for|strong=\"H7121\"* the|strong=\"H5414\"* livestock," + }, + { + "verseNum": 10, + "text": "He|strong=\"H3808\"* doesn’t delight|strong=\"H2654\"* in|strong=\"H2654\"* the|strong=\"H3808\"* strength|strong=\"H1369\"* of|strong=\"H3808\"* the|strong=\"H3808\"* horse|strong=\"H5483\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* takes|strong=\"H7521\"* pleasure|strong=\"H7521\"* in|strong=\"H3068\"* those who|strong=\"H3068\"* fear|strong=\"H3373\"* him|strong=\"H3068\"*," + }, + { + "verseNum": 12, + "text": "Praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*, Jerusalem|strong=\"H3389\"*!" + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* strengthened|strong=\"H2388\"* the|strong=\"H3588\"* bars|strong=\"H1280\"* of|strong=\"H1121\"* your|strong=\"H3588\"* gates|strong=\"H8179\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H7760\"* makes|strong=\"H7760\"* peace|strong=\"H7965\"* in|strong=\"H7760\"* your|strong=\"H7760\"* borders|strong=\"H1366\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H5704\"* sends|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* commandment|strong=\"H1697\"* to|strong=\"H5704\"* the|strong=\"H5704\"* earth." + }, + { + "verseNum": 16, + "text": "He|strong=\"H5414\"* gives|strong=\"H5414\"* snow|strong=\"H7950\"* like|strong=\"H7950\"* wool|strong=\"H6785\"*," + }, + { + "verseNum": 17, + "text": "He|strong=\"H6440\"* hurls down|strong=\"H7993\"* his|strong=\"H6440\"* hail like|strong=\"H7140\"* pebbles." + }, + { + "verseNum": 18, + "text": "He|strong=\"H7971\"* sends|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* word|strong=\"H1697\"*, and|strong=\"H7971\"* melts|strong=\"H4529\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3478\"* shows his|strong=\"H5046\"* word|strong=\"H1697\"* to|strong=\"H3478\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 20, + "text": "He|strong=\"H3651\"* has|strong=\"H1471\"* not|strong=\"H3808\"* done|strong=\"H6213\"* this|strong=\"H3651\"* for|strong=\"H6213\"* just|strong=\"H4941\"* any|strong=\"H3605\"* nation|strong=\"H1471\"*." + } + ] + }, + { + "chapterNum": 148, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yah|strong=\"H3068\"*!" + }, + { + "verseNum": 2, + "text": "Praise|strong=\"H1984\"* him|strong=\"H3605\"*, all|strong=\"H3605\"* his|strong=\"H3605\"* angels|strong=\"H4397\"*!" + }, + { + "verseNum": 3, + "text": "Praise|strong=\"H1984\"* him|strong=\"H3605\"*, sun|strong=\"H8121\"* and|strong=\"H8121\"* moon|strong=\"H3394\"*!" + }, + { + "verseNum": 4, + "text": "Praise|strong=\"H1984\"* him|strong=\"H5921\"*, you|strong=\"H5921\"* heavens|strong=\"H8064\"* of|strong=\"H4325\"* heavens|strong=\"H8064\"*," + }, + { + "verseNum": 5, + "text": "Let them|strong=\"H6680\"* praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*," + }, + { + "verseNum": 6, + "text": "He|strong=\"H5414\"* has|strong=\"H5414\"* also established|strong=\"H5975\"* them|strong=\"H5414\"* forever|strong=\"H5769\"* and|strong=\"H5769\"* ever|strong=\"H5769\"*." + }, + { + "verseNum": 7, + "text": "Praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"* from|strong=\"H4480\"* the|strong=\"H3605\"* earth," + }, + { + "verseNum": 8, + "text": "lightning and|strong=\"H6213\"* hail|strong=\"H1259\"*, snow|strong=\"H7950\"* and|strong=\"H6213\"* clouds|strong=\"H7008\"*," + }, + { + "verseNum": 9, + "text": "mountains|strong=\"H2022\"* and|strong=\"H6086\"* all|strong=\"H3605\"* hills|strong=\"H1389\"*," + }, + { + "verseNum": 10, + "text": "wild animals|strong=\"H2416\"* and|strong=\"H3605\"* all|strong=\"H3605\"* livestock," + }, + { + "verseNum": 11, + "text": "kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* earth and|strong=\"H4428\"* all|strong=\"H3605\"* peoples|strong=\"H3816\"*," + }, + { + "verseNum": 12, + "text": "both|strong=\"H1571\"* young|strong=\"H5288\"* men|strong=\"H5288\"* and|strong=\"H5288\"* maidens|strong=\"H1330\"*," + }, + { + "verseNum": 13, + "text": "Let them|strong=\"H5921\"* praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*," + }, + { + "verseNum": 14, + "text": "He|strong=\"H3605\"* has|strong=\"H3478\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* the|strong=\"H3605\"* horn|strong=\"H7161\"* of|strong=\"H1121\"* his|strong=\"H3605\"* people|strong=\"H5971\"*," + } + ] + }, + { + "chapterNum": 149, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 2, + "text": "Let|strong=\"H8055\"* Israel|strong=\"H3478\"* rejoice|strong=\"H8055\"* in|strong=\"H3478\"* him|strong=\"H6213\"* who|strong=\"H1121\"* made|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 3, + "text": "Let them praise|strong=\"H1984\"* his|strong=\"H1984\"* name|strong=\"H8034\"* in|strong=\"H8034\"* the|strong=\"H1984\"* dance|strong=\"H4234\"*!" + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* takes|strong=\"H7521\"* pleasure|strong=\"H7521\"* in|strong=\"H3068\"* his|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 5, + "text": "Let the|strong=\"H5921\"* saints|strong=\"H2623\"* rejoice|strong=\"H7442\"* in|strong=\"H5921\"* honor|strong=\"H3519\"*." + }, + { + "verseNum": 6, + "text": "May|strong=\"H2719\"* the|strong=\"H3027\"* high|strong=\"H7319\"* praises of|strong=\"H3027\"* God|strong=\"H3027\"* be|strong=\"H3027\"* in|strong=\"H3027\"* their|strong=\"H3027\"* mouths," + }, + { + "verseNum": 7, + "text": "to|strong=\"H6213\"* execute|strong=\"H6213\"* vengeance|strong=\"H5360\"* on|strong=\"H6213\"* the|strong=\"H6213\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 8, + "text": "to|strong=\"H4428\"* bind their|strong=\"H3513\"* kings|strong=\"H4428\"* with|strong=\"H4428\"* chains|strong=\"H2131\"*," + }, + { + "verseNum": 9, + "text": "to|strong=\"H6213\"* execute|strong=\"H6213\"* on|strong=\"H6213\"* them|strong=\"H6213\"* the|strong=\"H3605\"* written|strong=\"H3789\"* judgment|strong=\"H4941\"*." + } + ] + }, + { + "chapterNum": 150, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yah|strong=\"H3068\"*!" + }, + { + "verseNum": 2, + "text": "Praise|strong=\"H1984\"* him|strong=\"H1984\"* for|strong=\"H1369\"* his|strong=\"H1984\"* mighty|strong=\"H1369\"* acts|strong=\"H1369\"*!" + }, + { + "verseNum": 3, + "text": "Praise|strong=\"H1984\"* him|strong=\"H1984\"* with|strong=\"H1984\"* the|strong=\"H1984\"* sounding of|strong=\"H7782\"* the|strong=\"H1984\"* trumpet|strong=\"H7782\"*!" + }, + { + "verseNum": 4, + "text": "Praise|strong=\"H1984\"* him|strong=\"H1984\"* with|strong=\"H1984\"* tambourine|strong=\"H8596\"* and|strong=\"H8596\"* dancing|strong=\"H4234\"*!" + }, + { + "verseNum": 5, + "text": "Praise|strong=\"H1984\"* him|strong=\"H1984\"* with|strong=\"H1984\"* loud|strong=\"H8088\"* cymbals|strong=\"H6767\"*!" + }, + { + "verseNum": 6, + "text": "Let everything|strong=\"H3605\"* that|strong=\"H3605\"* has|strong=\"H3050\"* breath|strong=\"H5397\"* praise|strong=\"H1984\"* Yah|strong=\"H3068\"*!" + } + ] + } + ] + }, + { + "name": "Proverbs", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H1732\"* proverbs|strong=\"H4912\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*, the|strong=\"H1732\"* son|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*:" + }, + { + "verseNum": 2, + "text": "to|strong=\"H3045\"* know|strong=\"H3045\"* wisdom|strong=\"H2451\"* and|strong=\"H2451\"* instruction|strong=\"H4148\"*;" + }, + { + "verseNum": 3, + "text": "to|strong=\"H4941\"* receive|strong=\"H3947\"* instruction|strong=\"H4148\"* in|strong=\"H7919\"* wise|strong=\"H7919\"* dealing," + }, + { + "verseNum": 4, + "text": "to|strong=\"H5414\"* give|strong=\"H5414\"* prudence|strong=\"H6195\"* to|strong=\"H5414\"* the|strong=\"H5414\"* simple|strong=\"H6612\"*," + }, + { + "verseNum": 5, + "text": "that|strong=\"H8085\"* the|strong=\"H8085\"* wise|strong=\"H2450\"* man|strong=\"H2450\"* may|strong=\"H3254\"* hear|strong=\"H8085\"*, and|strong=\"H8085\"* increase|strong=\"H3254\"* in|strong=\"H8085\"* learning|strong=\"H3948\"*;" + }, + { + "verseNum": 6, + "text": "to|strong=\"H1697\"* understand a|strong=\"H3068\"* proverb|strong=\"H4912\"* and|strong=\"H1697\"* parables|strong=\"H4912\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*+ 1:7 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* is|strong=\"H3068\"* the|strong=\"H3068\"* beginning|strong=\"H7225\"* of|strong=\"H3068\"* knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 8, + "text": "My|strong=\"H8085\"* son|strong=\"H1121\"*, listen|strong=\"H8085\"* to|strong=\"H8085\"* your|strong=\"H8085\"* father|strong=\"H1121\"*’s instruction|strong=\"H4148\"*," + }, + { + "verseNum": 9, + "text": "for|strong=\"H3588\"* they|strong=\"H1992\"* will|strong=\"H1992\"* be|strong=\"H3588\"* a|strong=\"H3068\"* garland|strong=\"H3880\"* to|strong=\"H7218\"* grace|strong=\"H2580\"* your|strong=\"H3588\"* head|strong=\"H7218\"*," + }, + { + "verseNum": 10, + "text": "My son|strong=\"H1121\"*, if|strong=\"H1121\"* sinners|strong=\"H2400\"* entice|strong=\"H6601\"* you," + }, + { + "verseNum": 11, + "text": "If they|strong=\"H2600\"* say, “Come|strong=\"H3212\"* with|strong=\"H3212\"* us." + }, + { + "verseNum": 12, + "text": "Let|strong=\"H3381\"*’s swallow|strong=\"H1104\"* them|strong=\"H3381\"* up|strong=\"H1104\"* alive|strong=\"H2416\"* like|strong=\"H3381\"* Sheol|strong=\"H7585\"*,+ 1:12 Sheol is the place of the dead.*" + }, + { + "verseNum": 13, + "text": "We|strong=\"H3605\"*’ll find|strong=\"H4672\"* all|strong=\"H3605\"* valuable|strong=\"H3368\"* wealth|strong=\"H1952\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H3605\"* shall cast|strong=\"H5307\"* your|strong=\"H3605\"* lot|strong=\"H1486\"* among|strong=\"H8432\"* us|strong=\"H1961\"*." + }, + { + "verseNum": 15, + "text": "my|strong=\"H1870\"* son|strong=\"H1121\"*, don’t walk|strong=\"H3212\"* on|strong=\"H1870\"* the|strong=\"H1870\"* path|strong=\"H5410\"* with|strong=\"H3212\"* them|strong=\"H1121\"*." + }, + { + "verseNum": 16, + "text": "for|strong=\"H3588\"* their|strong=\"H3588\"* feet|strong=\"H7272\"* run|strong=\"H7323\"* to|strong=\"H7323\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* net|strong=\"H7568\"* is|strong=\"H3605\"* spread|strong=\"H2219\"* in|strong=\"H5869\"* vain|strong=\"H2600\"* in|strong=\"H5869\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* any|strong=\"H3605\"* bird|strong=\"H3671\"*;" + }, + { + "verseNum": 18, + "text": "but|strong=\"H1992\"* these|strong=\"H1992\"* lay|strong=\"H5315\"* in|strong=\"H5315\"* wait for|strong=\"H5315\"* their|strong=\"H1992\"* own|strong=\"H5315\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 19, + "text": "So|strong=\"H3651\"* are|strong=\"H5315\"* the|strong=\"H3605\"* ways of|strong=\"H1167\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H5315\"* greedy|strong=\"H1214\"* for|strong=\"H5315\"* gain|strong=\"H1215\"*." + }, + { + "verseNum": 20, + "text": "Wisdom|strong=\"H2454\"* calls|strong=\"H2454\"* aloud|strong=\"H7442\"* in|strong=\"H6963\"* the|strong=\"H5414\"* street|strong=\"H2351\"*." + }, + { + "verseNum": 21, + "text": "She|strong=\"H7121\"* calls|strong=\"H7121\"* at|strong=\"H7218\"* the|strong=\"H7121\"* head|strong=\"H7218\"* of|strong=\"H5892\"* noisy|strong=\"H1993\"* places." + }, + { + "verseNum": 22, + "text": "“How|strong=\"H4970\"* long|strong=\"H5704\"*, you|strong=\"H5704\"* simple|strong=\"H6612\"* ones|strong=\"H6612\"*, will|strong=\"H5704\"* you|strong=\"H5704\"* love simplicity|strong=\"H6612\"*?" + }, + { + "verseNum": 23, + "text": "Turn|strong=\"H7725\"* at|strong=\"H7725\"* my|strong=\"H3045\"* reproof|strong=\"H8433\"*." + }, + { + "verseNum": 24, + "text": "Because|strong=\"H3282\"* I|strong=\"H3282\"* have|strong=\"H3027\"* called|strong=\"H7121\"*, and|strong=\"H3027\"* you|strong=\"H3282\"* have|strong=\"H3027\"* refused|strong=\"H3985\"*;" + }, + { + "verseNum": 25, + "text": "but|strong=\"H3808\"* you|strong=\"H3605\"* have|strong=\"H3605\"* ignored all|strong=\"H3605\"* my|strong=\"H3605\"* counsel|strong=\"H6098\"*," + }, + { + "verseNum": 26, + "text": "I|strong=\"H1571\"* also|strong=\"H1571\"* will|strong=\"H1571\"* laugh|strong=\"H7832\"* at|strong=\"H7832\"* your|strong=\"H1571\"* disaster|strong=\"H6343\"*." + }, + { + "verseNum": 27, + "text": "when|strong=\"H5921\"* calamity overtakes you|strong=\"H5921\"* like|strong=\"H5921\"* a|strong=\"H3068\"* storm|strong=\"H5492\"*," + }, + { + "verseNum": 28, + "text": "Then|strong=\"H6030\"* they|strong=\"H3808\"* will|strong=\"H3808\"* call|strong=\"H7121\"* on|strong=\"H7121\"* me|strong=\"H7121\"*, but|strong=\"H3808\"* I|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* answer|strong=\"H6030\"*." + }, + { + "verseNum": 29, + "text": "because|strong=\"H3588\"* they|strong=\"H3588\"* hated|strong=\"H8130\"* knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 30, + "text": "They|strong=\"H3808\"* wanted none|strong=\"H3808\"* of|strong=\"H3605\"* my|strong=\"H3605\"* counsel|strong=\"H6098\"*." + }, + { + "verseNum": 31, + "text": "Therefore|strong=\"H4156\"* they|strong=\"H4156\"* will|strong=\"H1870\"* eat of|strong=\"H1870\"* the|strong=\"H1870\"* fruit|strong=\"H6529\"* of|strong=\"H1870\"* their|strong=\"H1870\"* own way|strong=\"H1870\"*," + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* backsliding|strong=\"H4878\"* of|strong=\"H7962\"* the|strong=\"H3588\"* simple|strong=\"H6612\"* will|strong=\"H3684\"* kill|strong=\"H2026\"* them|strong=\"H2026\"*." + }, + { + "verseNum": 33, + "text": "But|strong=\"H8085\"* whoever listens|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H8085\"* will|strong=\"H8085\"* dwell|strong=\"H7931\"* securely," + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"H3947\"* son|strong=\"H1121\"*, if|strong=\"H1121\"* you|strong=\"H3947\"* will|strong=\"H1121\"* receive|strong=\"H3947\"* my|strong=\"H3947\"* words," + }, + { + "verseNum": 2, + "text": "so as to|strong=\"H3820\"* turn|strong=\"H5186\"* your|strong=\"H5186\"* ear to|strong=\"H3820\"* wisdom|strong=\"H2451\"*," + }, + { + "verseNum": 3, + "text": "yes|strong=\"H3588\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* call|strong=\"H7121\"* out|strong=\"H5414\"* for|strong=\"H3588\"* discernment|strong=\"H8394\"*," + }, + { + "verseNum": 4, + "text": "if you|strong=\"H1245\"* seek|strong=\"H1245\"* her as|strong=\"H3701\"* silver|strong=\"H3701\"*," + }, + { + "verseNum": 5, + "text": "then|strong=\"H3068\"* you|strong=\"H4672\"* will|strong=\"H3068\"* understand the|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* gives|strong=\"H5414\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H1980\"* lays up|strong=\"H6845\"* sound|strong=\"H8454\"* wisdom|strong=\"H8454\"* for the|strong=\"H1980\"* upright|strong=\"H3477\"*." + }, + { + "verseNum": 8, + "text": "that|strong=\"H1870\"* he may guard|strong=\"H8104\"* the|strong=\"H8104\"* paths|strong=\"H1870\"* of|strong=\"H1870\"* justice|strong=\"H4941\"*," + }, + { + "verseNum": 9, + "text": "Then|strong=\"H3605\"* you|strong=\"H3605\"* will|strong=\"H6664\"* understand righteousness|strong=\"H6664\"* and|strong=\"H4941\"* justice|strong=\"H4941\"*," + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* wisdom|strong=\"H2451\"* will|strong=\"H5315\"* enter into|strong=\"H1847\"* your|strong=\"H3588\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 11, + "text": "Discretion|strong=\"H4209\"* will|strong=\"H8394\"* watch|strong=\"H8104\"* over|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "to|strong=\"H1696\"* deliver|strong=\"H5337\"* you|strong=\"H1696\"* from|strong=\"H5337\"* the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1870\"* evil|strong=\"H7451\"*," + }, + { + "verseNum": 13, + "text": "who forsake|strong=\"H5800\"* the|strong=\"H1870\"* paths|strong=\"H1870\"* of|strong=\"H1870\"* uprightness|strong=\"H3476\"*," + }, + { + "verseNum": 14, + "text": "who|strong=\"H6213\"* rejoice|strong=\"H1523\"* to|strong=\"H6213\"* do|strong=\"H6213\"* evil|strong=\"H7451\"*," + }, + { + "verseNum": 15, + "text": "who|strong=\"H6141\"* are|strong=\"H4570\"* crooked|strong=\"H6141\"* in|strong=\"H6141\"* their ways|strong=\"H4570\"*," + }, + { + "verseNum": 16, + "text": "to|strong=\"H2505\"* deliver|strong=\"H5337\"* you|strong=\"H2114\"* from|strong=\"H5337\"* the|strong=\"H5337\"* strange|strong=\"H2114\"* woman|strong=\"H5237\"*," + }, + { + "verseNum": 17, + "text": "who|strong=\"H7911\"* forsakes|strong=\"H5800\"* the|strong=\"H5800\"* friend of|strong=\"H1285\"* her|strong=\"H7911\"* youth|strong=\"H5271\"*," + }, + { + "verseNum": 18, + "text": "for|strong=\"H3588\"* her|strong=\"H3588\"* house|strong=\"H1004\"* leads down|strong=\"H7743\"* to|strong=\"H1004\"* death|strong=\"H4194\"*," + }, + { + "verseNum": 19, + "text": "None|strong=\"H3808\"* who|strong=\"H3605\"* go|strong=\"H7725\"* to|strong=\"H7725\"* her|strong=\"H3605\"* return|strong=\"H7725\"* again|strong=\"H7725\"*," + }, + { + "verseNum": 20, + "text": "Therefore|strong=\"H4616\"* walk|strong=\"H3212\"* in|strong=\"H3212\"* the|strong=\"H8104\"* way|strong=\"H1870\"* of|strong=\"H1870\"* good|strong=\"H2896\"* men|strong=\"H6662\"*," + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* upright|strong=\"H3477\"* will|strong=\"H3477\"* dwell|strong=\"H7931\"* in|strong=\"H7931\"* the|strong=\"H3588\"* land." + }, + { + "verseNum": 22, + "text": "But|strong=\"H7563\"* the|strong=\"H4480\"* wicked|strong=\"H7563\"* will|strong=\"H7563\"* be|strong=\"H7563\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H4480\"* the|strong=\"H4480\"* land." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"H7911\"* son|strong=\"H1121\"*, don’t forget|strong=\"H7911\"* my|strong=\"H7911\"* teaching|strong=\"H8451\"*," + }, + { + "verseNum": 2, + "text": "for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3117\"* add|strong=\"H3254\"* to|strong=\"H3117\"* you|strong=\"H3588\"* length|strong=\"H8141\"* of|strong=\"H3117\"* days|strong=\"H3117\"*," + }, + { + "verseNum": 3, + "text": "Don’t let|strong=\"H5800\"* kindness|strong=\"H2617\"* and|strong=\"H2617\"* truth forsake|strong=\"H5800\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 4, + "text": "So|strong=\"H4672\"* you|strong=\"H4672\"* will|strong=\"H5869\"* find|strong=\"H4672\"* favor|strong=\"H2580\"*," + }, + { + "verseNum": 5, + "text": "Trust|strong=\"H8172\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3820\"*," + }, + { + "verseNum": 6, + "text": "In|strong=\"H1870\"* all|strong=\"H3605\"* your|strong=\"H3605\"* ways|strong=\"H1870\"* acknowledge|strong=\"H3045\"* him|strong=\"H1931\"*," + }, + { + "verseNum": 7, + "text": "Don’t be|strong=\"H1961\"* wise|strong=\"H2450\"* in|strong=\"H3068\"* your|strong=\"H3068\"* own|strong=\"H1961\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 8, + "text": "It|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* health|strong=\"H7500\"* to|strong=\"H1961\"* your|strong=\"H1961\"* body|strong=\"H6106\"*," + }, + { + "verseNum": 9, + "text": "Honor|strong=\"H3513\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* your|strong=\"H3068\"* substance|strong=\"H1952\"*," + }, + { + "verseNum": 10, + "text": "so your|strong=\"H4390\"* barns will|strong=\"H3342\"* be filled|strong=\"H4390\"* with|strong=\"H4390\"* plenty|strong=\"H7647\"*," + }, + { + "verseNum": 11, + "text": "My|strong=\"H3068\"* son|strong=\"H1121\"*, don’t despise|strong=\"H3988\"* Yahweh|strong=\"H3068\"*’s discipline|strong=\"H4148\"*," + }, + { + "verseNum": 12, + "text": "for|strong=\"H3588\"* whom|strong=\"H3588\"* Yahweh|strong=\"H3068\"* loves, he|strong=\"H3588\"* corrects|strong=\"H3198\"*," + }, + { + "verseNum": 13, + "text": "Happy is|strong=\"H2451\"* the|strong=\"H4672\"* man|strong=\"H2451\"* who|strong=\"H4672\"* finds|strong=\"H4672\"* wisdom|strong=\"H2451\"*," + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* her|strong=\"H5504\"* good|strong=\"H2896\"* profit|strong=\"H5504\"* is|strong=\"H2896\"* better|strong=\"H2896\"* than|strong=\"H2896\"* getting silver|strong=\"H3701\"*," + }, + { + "verseNum": 15, + "text": "She|strong=\"H1931\"* is|strong=\"H1931\"* more|strong=\"H3808\"* precious|strong=\"H3368\"* than|strong=\"H3808\"* rubies|strong=\"H6443\"*." + }, + { + "verseNum": 16, + "text": "Length|strong=\"H3117\"* of|strong=\"H3117\"* days|strong=\"H3117\"* is|strong=\"H3117\"* in|strong=\"H3117\"* her|strong=\"H3117\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*." + }, + { + "verseNum": 17, + "text": "Her|strong=\"H3605\"* ways|strong=\"H1870\"* are|strong=\"H1870\"* ways|strong=\"H1870\"* of|strong=\"H1870\"* pleasantness|strong=\"H5278\"*." + }, + { + "verseNum": 18, + "text": "She|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* tree|strong=\"H6086\"* of|strong=\"H6086\"* life|strong=\"H2416\"* to|strong=\"H6086\"* those|strong=\"H1931\"* who|strong=\"H1931\"* lay hold|strong=\"H2388\"* of|strong=\"H6086\"* her|strong=\"H1931\"*." + }, + { + "verseNum": 19, + "text": "By|strong=\"H3068\"* wisdom|strong=\"H2451\"* Yahweh|strong=\"H3068\"* founded|strong=\"H3245\"* the|strong=\"H3068\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 20, + "text": "By|strong=\"H7834\"* his|strong=\"H1847\"* knowledge|strong=\"H1847\"*, the|strong=\"H1234\"* depths|strong=\"H8415\"* were|strong=\"H8415\"* broken|strong=\"H1234\"* up|strong=\"H1234\"*," + }, + { + "verseNum": 21, + "text": "My|strong=\"H5341\"* son|strong=\"H1121\"*, let|strong=\"H3868\"* them|strong=\"H1121\"* not|strong=\"H5869\"* depart|strong=\"H3868\"* from|strong=\"H1121\"* your|strong=\"H5341\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 22, + "text": "so|strong=\"H1961\"* they|strong=\"H5315\"* will|strong=\"H1961\"* be|strong=\"H1961\"* life|strong=\"H5315\"* to|strong=\"H1961\"* your|strong=\"H1961\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 23, + "text": "Then|strong=\"H3808\"* you|strong=\"H3808\"* shall|strong=\"H3808\"* walk|strong=\"H3212\"* in|strong=\"H3212\"* your|strong=\"H3808\"* way|strong=\"H1870\"* securely." + }, + { + "verseNum": 24, + "text": "When|strong=\"H7901\"* you|strong=\"H3808\"* lie|strong=\"H7901\"* down|strong=\"H7901\"*, you|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* afraid|strong=\"H6342\"*." + }, + { + "verseNum": 25, + "text": "Don’t be|strong=\"H7563\"* afraid|strong=\"H3372\"* of|strong=\"H3372\"* sudden|strong=\"H6597\"* fear|strong=\"H3372\"*," + }, + { + "verseNum": 26, + "text": "for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* your|strong=\"H3068\"* confidence|strong=\"H3689\"*," + }, + { + "verseNum": 27, + "text": "Don’t withhold|strong=\"H4513\"* good|strong=\"H2896\"* from|strong=\"H3027\"* those|strong=\"H6213\"* to|strong=\"H1961\"* whom it|strong=\"H6213\"* is|strong=\"H3027\"* due|strong=\"H1167\"*," + }, + { + "verseNum": 28, + "text": "Don’t say|strong=\"H7725\"* to|strong=\"H7725\"* your|strong=\"H5414\"* neighbor|strong=\"H7453\"*, “Go|strong=\"H3212\"*, and|strong=\"H7725\"* come|strong=\"H3212\"* again|strong=\"H7725\"*;" + }, + { + "verseNum": 29, + "text": "Don’t devise|strong=\"H2790\"* evil|strong=\"H7451\"* against|strong=\"H5921\"* your|strong=\"H5921\"* neighbor|strong=\"H7453\"*," + }, + { + "verseNum": 30, + "text": "Don’t strive|strong=\"H7378\"* with|strong=\"H5973\"* a|strong=\"H3068\"* man|strong=\"H7451\"* without|strong=\"H3808\"* cause|strong=\"H2600\"*," + }, + { + "verseNum": 31, + "text": "Don’t envy|strong=\"H7065\"* the|strong=\"H3605\"* man|strong=\"H3605\"* of|strong=\"H1870\"* violence|strong=\"H2555\"*." + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* perverse|strong=\"H3868\"* is|strong=\"H3068\"* an|strong=\"H3588\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 33, + "text": "Yahweh|strong=\"H3068\"*’s curse|strong=\"H1288\"* is|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H3068\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 34, + "text": "Surely|strong=\"H5414\"* he|strong=\"H1931\"* mocks the|strong=\"H5414\"* mockers|strong=\"H3887\"*," + }, + { + "verseNum": 35, + "text": "The|strong=\"H7311\"* wise|strong=\"H2450\"* will|strong=\"H2450\"* inherit|strong=\"H5157\"* glory|strong=\"H3519\"*," + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Listen|strong=\"H8085\"*, sons|strong=\"H1121\"*, to|strong=\"H8085\"* a|strong=\"H3068\"* father|strong=\"H1121\"*’s instruction|strong=\"H4148\"*." + }, + { + "verseNum": 2, + "text": "for|strong=\"H3588\"* I|strong=\"H3588\"* give|strong=\"H5414\"* you|strong=\"H5414\"* sound|strong=\"H2896\"* learning|strong=\"H3948\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H1961\"* a|strong=\"H3068\"* son|strong=\"H1121\"* to|strong=\"H1961\"* my|strong=\"H1961\"* father|strong=\"H1121\"*," + }, + { + "verseNum": 4, + "text": "He|strong=\"H1697\"* taught|strong=\"H3384\"* me|strong=\"H8104\"*, and|strong=\"H1697\"* said|strong=\"H1697\"* to|strong=\"H3820\"* me|strong=\"H8104\"*:" + }, + { + "verseNum": 5, + "text": "Get|strong=\"H7069\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 6, + "text": "Don’t forsake|strong=\"H5800\"* her|strong=\"H5800\"*, and|strong=\"H8104\"* she will|strong=\"H5341\"* preserve|strong=\"H5341\"* you|strong=\"H5800\"*." + }, + { + "verseNum": 7, + "text": "Wisdom|strong=\"H2451\"* is|strong=\"H3605\"* supreme." + }, + { + "verseNum": 8, + "text": "Esteem|strong=\"H5549\"* her|strong=\"H3513\"*, and|strong=\"H7311\"* she|strong=\"H3588\"* will|strong=\"H3588\"* exalt|strong=\"H7311\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 9, + "text": "She will|strong=\"H5414\"* give|strong=\"H5414\"* to|strong=\"H5414\"* your|strong=\"H5414\"* head|strong=\"H7218\"* a|strong=\"H3068\"* garland|strong=\"H3880\"* of|strong=\"H7218\"* grace|strong=\"H2580\"*." + }, + { + "verseNum": 10, + "text": "Listen|strong=\"H8085\"*, my|strong=\"H8085\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* receive|strong=\"H3947\"* my|strong=\"H8085\"* sayings." + }, + { + "verseNum": 11, + "text": "I|strong=\"H1870\"* have taught|strong=\"H3384\"* you|strong=\"H3384\"* in|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1870\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 12, + "text": "When you|strong=\"H3808\"* go|strong=\"H3212\"*, your|strong=\"H3808\"* steps|strong=\"H6806\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* hampered." + }, + { + "verseNum": 13, + "text": "Take|strong=\"H2388\"* firm|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H2416\"* instruction|strong=\"H4148\"*." + }, + { + "verseNum": 14, + "text": "Don’t enter into the|strong=\"H1870\"* path|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H1870\"* wicked|strong=\"H7563\"*." + }, + { + "verseNum": 15, + "text": "Avoid|strong=\"H6544\"* it|strong=\"H5921\"*, and|strong=\"H5674\"* don’t pass|strong=\"H5674\"* by|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* don’t sleep|strong=\"H8142\"* unless|strong=\"H3588\"* they|strong=\"H3588\"* do|strong=\"H7489\"* evil|strong=\"H7489\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* eat|strong=\"H3898\"* the|strong=\"H3588\"* bread|strong=\"H3899\"* of|strong=\"H3899\"* wickedness|strong=\"H7562\"*" + }, + { + "verseNum": 18, + "text": "But|strong=\"H6662\"* the|strong=\"H3117\"* path of|strong=\"H3117\"* the|strong=\"H3117\"* righteous|strong=\"H6662\"* is|strong=\"H3117\"* like|strong=\"H1980\"* the|strong=\"H3117\"* dawning light|strong=\"H5051\"*" + }, + { + "verseNum": 19, + "text": "The|strong=\"H3045\"* way|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H3045\"* wicked|strong=\"H7563\"* is|strong=\"H4100\"* like|strong=\"H1870\"* darkness." + }, + { + "verseNum": 20, + "text": "My|strong=\"H5186\"* son|strong=\"H1121\"*, attend|strong=\"H7181\"* to|strong=\"H1121\"* my|strong=\"H5186\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 21, + "text": "Let|strong=\"H3868\"* them|strong=\"H8432\"* not|strong=\"H5869\"* depart|strong=\"H3868\"* from|strong=\"H5869\"* your|strong=\"H8104\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* life|strong=\"H2416\"* to|strong=\"H1320\"* those|strong=\"H1992\"* who|strong=\"H3605\"* find|strong=\"H4672\"* them|strong=\"H1992\"*," + }, + { + "verseNum": 23, + "text": "Keep|strong=\"H5341\"* your|strong=\"H3605\"* heart|strong=\"H3820\"* with|strong=\"H3820\"* all|strong=\"H3605\"* diligence|strong=\"H4929\"*," + }, + { + "verseNum": 24, + "text": "Put|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* yourself a|strong=\"H3068\"* perverse|strong=\"H6143\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 25, + "text": "Let|strong=\"H6079\"* your|strong=\"H3474\"* eyes|strong=\"H5869\"* look|strong=\"H5027\"* straight|strong=\"H3474\"* ahead|strong=\"H5048\"*." + }, + { + "verseNum": 26, + "text": "Make|strong=\"H3559\"* the|strong=\"H3605\"* path|strong=\"H1870\"* of|strong=\"H1870\"* your|strong=\"H3605\"* feet|strong=\"H7272\"* level|strong=\"H6424\"*." + }, + { + "verseNum": 27, + "text": "Don’t turn|strong=\"H5493\"* to|strong=\"H5493\"* the|strong=\"H5493\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* nor|strong=\"H7451\"* to|strong=\"H5493\"* the|strong=\"H5493\"* left|strong=\"H8040\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"H5186\"* son|strong=\"H1121\"*, pay|strong=\"H7181\"* attention|strong=\"H7181\"* to|strong=\"H1121\"* my|strong=\"H5186\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 2, + "text": "that|strong=\"H8193\"* you|strong=\"H8104\"* may|strong=\"H8193\"* maintain discretion|strong=\"H4209\"*," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* lips|strong=\"H8193\"* of|strong=\"H8193\"* an|strong=\"H3588\"* adulteress|strong=\"H2114\"* drip|strong=\"H5197\"* honey|strong=\"H5317\"*." + }, + { + "verseNum": 4, + "text": "but in|strong=\"H6310\"* the|strong=\"H6310\"* end|strong=\"H6310\"* she is|strong=\"H6310\"* as|strong=\"H4751\"* bitter|strong=\"H4751\"* as|strong=\"H4751\"* wormwood|strong=\"H3939\"*," + }, + { + "verseNum": 5, + "text": "Her|strong=\"H3381\"* feet|strong=\"H7272\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* death|strong=\"H4194\"*." + }, + { + "verseNum": 6, + "text": "She|strong=\"H3808\"* gives no|strong=\"H3808\"* thought|strong=\"H3045\"* to|strong=\"H3045\"* the|strong=\"H3045\"* way|strong=\"H4570\"* of|strong=\"H2416\"* life|strong=\"H2416\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, my|strong=\"H8085\"* sons|strong=\"H1121\"*, listen|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H5493\"*." + }, + { + "verseNum": 8, + "text": "Remove|strong=\"H7368\"* your|strong=\"H5921\"* way|strong=\"H1870\"* far|strong=\"H7368\"* from|strong=\"H5921\"* her|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "lest|strong=\"H6435\"* you|strong=\"H5414\"* give|strong=\"H5414\"* your|strong=\"H5414\"* honor|strong=\"H1935\"* to|strong=\"H5414\"* others," + }, + { + "verseNum": 10, + "text": "lest|strong=\"H6435\"* strangers|strong=\"H2114\"* feast on|strong=\"H1004\"* your|strong=\"H7646\"* wealth|strong=\"H3581\"*," + }, + { + "verseNum": 11, + "text": "You|strong=\"H1320\"* will|strong=\"H1320\"* groan|strong=\"H5098\"* at your|strong=\"H3615\"* latter end|strong=\"H3615\"*," + }, + { + "verseNum": 12, + "text": "and|strong=\"H3820\"* say, “How I|strong=\"H3820\"* have|strong=\"H8130\"* hated|strong=\"H8130\"* instruction|strong=\"H4148\"*," + }, + { + "verseNum": 13, + "text": "I|strong=\"H3808\"* haven’t obeyed|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* my|strong=\"H8085\"* teachers|strong=\"H3384\"*," + }, + { + "verseNum": 14, + "text": "I|strong=\"H3605\"* have|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H3605\"* brink of|strong=\"H8432\"* utter|strong=\"H3605\"* ruin|strong=\"H7451\"*," + }, + { + "verseNum": 15, + "text": "Drink|strong=\"H8354\"* water|strong=\"H4325\"* out|strong=\"H5140\"* of|strong=\"H4325\"* your|strong=\"H8354\"* own cistern," + }, + { + "verseNum": 16, + "text": "Should your springs|strong=\"H4599\"* overflow|strong=\"H6327\"* in|strong=\"H4325\"* the|strong=\"H2351\"* streets|strong=\"H2351\"*," + }, + { + "verseNum": 17, + "text": "Let|strong=\"H1961\"* them|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H1961\"* yourself alone," + }, + { + "verseNum": 18, + "text": "Let|strong=\"H8055\"* your|strong=\"H1961\"* spring|strong=\"H4726\"* be|strong=\"H1961\"* blessed|strong=\"H1288\"*." + }, + { + "verseNum": 19, + "text": "A|strong=\"H3068\"* loving doe|strong=\"H3280\"* and|strong=\"H6256\"* a|strong=\"H3068\"* graceful|strong=\"H2580\"* deer|strong=\"H3280\"*—" + }, + { + "verseNum": 20, + "text": "For|strong=\"H1121\"* why|strong=\"H4100\"* should|strong=\"H4100\"* you|strong=\"H4100\"*, my|strong=\"H4100\"* son|strong=\"H1121\"*, be|strong=\"H1121\"* captivated with|strong=\"H1121\"* an adulteress|strong=\"H2114\"*?" + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* ways|strong=\"H1870\"* of|strong=\"H3068\"* man|strong=\"H3605\"* are|strong=\"H5869\"* before|strong=\"H5869\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3920\"* evil|strong=\"H7563\"* deeds of|strong=\"H2403\"* the|strong=\"H3920\"* wicked|strong=\"H7563\"* ensnare him." + }, + { + "verseNum": 23, + "text": "He|strong=\"H1931\"* will|strong=\"H1931\"* die|strong=\"H4191\"* for|strong=\"H4191\"* lack of|strong=\"H7230\"* instruction|strong=\"H4148\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "My son|strong=\"H1121\"*, if|strong=\"H1121\"* you|strong=\"H2114\"* have|strong=\"H1121\"* become|strong=\"H6148\"* collateral|strong=\"H6148\"* for|strong=\"H1121\"* your|strong=\"H8628\"* neighbor|strong=\"H7453\"*," + }, + { + "verseNum": 2, + "text": "you|strong=\"H6310\"* are|strong=\"H6310\"* trapped by|strong=\"H3920\"* the|strong=\"H3920\"* words|strong=\"H6310\"* of|strong=\"H6310\"* your mouth|strong=\"H6310\"*;" + }, + { + "verseNum": 3, + "text": "Do|strong=\"H6213\"* this|strong=\"H2063\"* now|strong=\"H3588\"*, my|strong=\"H5337\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* deliver|strong=\"H5337\"* yourself|strong=\"H5337\"*," + }, + { + "verseNum": 4, + "text": "Give|strong=\"H5414\"* no|strong=\"H5414\"* sleep|strong=\"H8142\"* to|strong=\"H5414\"* your|strong=\"H5414\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 5, + "text": "Free yourself|strong=\"H5337\"*, like a|strong=\"H3068\"* gazelle|strong=\"H6643\"* from|strong=\"H3027\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3027\"* hunter," + }, + { + "verseNum": 6, + "text": "Go|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H7200\"* ant|strong=\"H5244\"*, you|strong=\"H7200\"* sluggard|strong=\"H6102\"*." + }, + { + "verseNum": 7, + "text": "which having no chief|strong=\"H7101\"*, overseer|strong=\"H7860\"*, or|strong=\"H4910\"* ruler|strong=\"H4910\"*," + }, + { + "verseNum": 8, + "text": "provides|strong=\"H3559\"* her|strong=\"H3559\"* bread|strong=\"H3899\"* in|strong=\"H3899\"* the|strong=\"H3559\"* summer|strong=\"H7019\"*," + }, + { + "verseNum": 9, + "text": "How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H5704\"* you|strong=\"H5704\"* sleep|strong=\"H8142\"*, sluggard|strong=\"H6102\"*?" + }, + { + "verseNum": 10, + "text": "A|strong=\"H3068\"* little|strong=\"H4592\"* sleep|strong=\"H8142\"*, a|strong=\"H3068\"* little|strong=\"H4592\"* slumber|strong=\"H8572\"*," + }, + { + "verseNum": 11, + "text": "so|strong=\"H1980\"* your poverty|strong=\"H7389\"* will|strong=\"H7389\"* come|strong=\"H1980\"* as|strong=\"H1980\"* a|strong=\"H3068\"* robber|strong=\"H1980\"*," + }, + { + "verseNum": 12, + "text": "A|strong=\"H3068\"* worthless|strong=\"H1100\"* person|strong=\"H1980\"*, a|strong=\"H3068\"* man of|strong=\"H6310\"* iniquity," + }, + { + "verseNum": 13, + "text": "who winks|strong=\"H7169\"* with|strong=\"H5869\"* his|strong=\"H5869\"* eyes|strong=\"H5869\"*, who signals|strong=\"H4448\"* with|strong=\"H5869\"* his|strong=\"H5869\"* feet|strong=\"H7272\"*," + }, + { + "verseNum": 14, + "text": "in|strong=\"H7971\"* whose|strong=\"H3605\"* heart|strong=\"H3820\"* is|strong=\"H3820\"* perverseness," + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"H3651\"* his|strong=\"H5921\"* calamity will come suddenly|strong=\"H6597\"*." + }, + { + "verseNum": 16, + "text": "There|strong=\"H3068\"* are|strong=\"H3068\"* six|strong=\"H8337\"* things|strong=\"H8441\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* hates|strong=\"H8130\"*;" + }, + { + "verseNum": 17, + "text": "arrogant eyes|strong=\"H5869\"*, a|strong=\"H3068\"* lying|strong=\"H8267\"* tongue|strong=\"H3956\"*," + }, + { + "verseNum": 18, + "text": "a|strong=\"H3068\"* heart|strong=\"H3820\"* that|strong=\"H7451\"* devises|strong=\"H2790\"* wicked|strong=\"H7451\"* schemes|strong=\"H4284\"*," + }, + { + "verseNum": 19, + "text": "a|strong=\"H3068\"* false|strong=\"H8267\"* witness|strong=\"H5707\"* who|strong=\"H5707\"* utters|strong=\"H6315\"* lies|strong=\"H3577\"*," + }, + { + "verseNum": 20, + "text": "My|strong=\"H5341\"* son|strong=\"H1121\"*, keep|strong=\"H5341\"* your|strong=\"H5341\"* father|strong=\"H1121\"*’s commandment|strong=\"H4687\"*," + }, + { + "verseNum": 21, + "text": "Bind|strong=\"H7194\"* them|strong=\"H5921\"* continually|strong=\"H8548\"* on|strong=\"H5921\"* your|strong=\"H5921\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 22, + "text": "When|strong=\"H1980\"* you|strong=\"H5921\"* walk|strong=\"H1980\"*, it|strong=\"H1931\"* will|strong=\"H1931\"* lead|strong=\"H5148\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* commandment|strong=\"H4687\"* is|strong=\"H1870\"* a|strong=\"H3068\"* lamp|strong=\"H5216\"*," + }, + { + "verseNum": 24, + "text": "to|strong=\"H8104\"* keep|strong=\"H8104\"* you|strong=\"H8104\"* from|strong=\"H7451\"* the|strong=\"H8104\"* immoral woman|strong=\"H5237\"*," + }, + { + "verseNum": 25, + "text": "Don’t lust|strong=\"H2530\"* after her|strong=\"H3947\"* beauty|strong=\"H3308\"* in|strong=\"H3947\"* your|strong=\"H3947\"* heart|strong=\"H3824\"*," + }, + { + "verseNum": 26, + "text": "For|strong=\"H3588\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"* reduces you|strong=\"H3588\"* to|strong=\"H5704\"* a|strong=\"H3068\"* piece|strong=\"H3603\"* of|strong=\"H3603\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 27, + "text": "Can|strong=\"H3808\"* a|strong=\"H3068\"* man scoop|strong=\"H2846\"* fire into his|strong=\"H3808\"* lap|strong=\"H2436\"*," + }, + { + "verseNum": 28, + "text": "Or|strong=\"H3808\"* can|strong=\"H1980\"* one|strong=\"H3808\"* walk|strong=\"H1980\"* on|strong=\"H5921\"* hot|strong=\"H1513\"* coals|strong=\"H1513\"*," + }, + { + "verseNum": 29, + "text": "So|strong=\"H3651\"* is|strong=\"H3651\"* he|strong=\"H3651\"* who|strong=\"H3605\"* goes in|strong=\"H3808\"* to|strong=\"H3808\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"*’s wife." + }, + { + "verseNum": 30, + "text": "Men|strong=\"H5315\"* don’t despise a|strong=\"H3068\"* thief|strong=\"H1590\"*" + }, + { + "verseNum": 31, + "text": "but|strong=\"H7999\"* if he|strong=\"H3605\"* is|strong=\"H3605\"* found|strong=\"H4672\"*, he|strong=\"H3605\"* shall|strong=\"H1004\"* restore|strong=\"H7999\"* seven|strong=\"H7659\"* times|strong=\"H7659\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"H1931\"* who|strong=\"H1931\"* commits|strong=\"H6213\"* adultery|strong=\"H5003\"* with|strong=\"H6213\"* a|strong=\"H3068\"* woman is|strong=\"H1931\"* void|strong=\"H2638\"* of|strong=\"H3820\"* understanding|strong=\"H3820\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H3808\"* will|strong=\"H3808\"* get|strong=\"H4672\"* wounds|strong=\"H5061\"* and|strong=\"H2781\"* dishonor|strong=\"H7036\"*." + }, + { + "verseNum": 34, + "text": "For|strong=\"H3588\"* jealousy|strong=\"H7068\"* arouses the|strong=\"H3588\"* fury|strong=\"H2534\"* of|strong=\"H3117\"* the|strong=\"H3588\"* husband." + }, + { + "verseNum": 35, + "text": "He|strong=\"H3588\"* won’t regard|strong=\"H5375\"* any|strong=\"H3605\"* ransom|strong=\"H3724\"*," + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"H8104\"* son|strong=\"H1121\"*, keep|strong=\"H8104\"* my|strong=\"H8104\"* words." + }, + { + "verseNum": 2, + "text": "Keep|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"* and|strong=\"H5869\"* live|strong=\"H2421\"*!" + }, + { + "verseNum": 3, + "text": "Bind|strong=\"H7194\"* them|strong=\"H5921\"* on|strong=\"H5921\"* your|strong=\"H5921\"* fingers." + }, + { + "verseNum": 4, + "text": "Tell wisdom|strong=\"H2451\"*, “You|strong=\"H7121\"* are my|strong=\"H7121\"* sister.”" + }, + { + "verseNum": 5, + "text": "that they may keep|strong=\"H8104\"* you|strong=\"H8104\"* from|strong=\"H8104\"* the|strong=\"H8104\"* strange|strong=\"H2114\"* woman|strong=\"H5237\"*," + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* at|strong=\"H1004\"* the|strong=\"H3588\"* window|strong=\"H2474\"* of|strong=\"H1004\"* my|strong=\"H3588\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 7, + "text": "I|strong=\"H7200\"* saw|strong=\"H7200\"* among|strong=\"H7200\"* the|strong=\"H7200\"* simple|strong=\"H6612\"* ones|strong=\"H1121\"*." + }, + { + "verseNum": 8, + "text": "passing|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5674\"* street|strong=\"H7784\"* near her|strong=\"H1870\"* corner|strong=\"H6438\"*," + }, + { + "verseNum": 9, + "text": "in|strong=\"H3117\"* the|strong=\"H3117\"* twilight|strong=\"H5399\"*, in|strong=\"H3117\"* the|strong=\"H3117\"* evening|strong=\"H6153\"* of|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"*," + }, + { + "verseNum": 10, + "text": "Behold|strong=\"H2009\"*, there|strong=\"H2009\"* a|strong=\"H3068\"* woman met|strong=\"H7125\"* him|strong=\"H7125\"* with|strong=\"H3820\"* the|strong=\"H2181\"* attire|strong=\"H7897\"* of|strong=\"H3820\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*," + }, + { + "verseNum": 11, + "text": "She|strong=\"H1931\"* is|strong=\"H1931\"* loud|strong=\"H1993\"* and|strong=\"H1004\"* defiant." + }, + { + "verseNum": 12, + "text": "Now|strong=\"H6471\"* she is|strong=\"H3605\"* in|strong=\"H6471\"* the|strong=\"H3605\"* streets|strong=\"H2351\"*, now|strong=\"H6471\"* in|strong=\"H6471\"* the|strong=\"H3605\"* squares|strong=\"H7339\"*," + }, + { + "verseNum": 13, + "text": "So|strong=\"H6440\"* she|strong=\"H6440\"* caught|strong=\"H2388\"* him|strong=\"H6440\"*, and|strong=\"H6440\"* kissed|strong=\"H5401\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 14, + "text": "“Sacrifices|strong=\"H2077\"* of|strong=\"H3117\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* are|strong=\"H3117\"* with|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* came|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* you|strong=\"H6440\"*," + }, + { + "verseNum": 16, + "text": "I|strong=\"H4714\"* have|strong=\"H4714\"* spread|strong=\"H7234\"* my|strong=\"H4714\"* couch|strong=\"H6210\"* with|strong=\"H4714\"* carpets of|strong=\"H4714\"* tapestry|strong=\"H4765\"*," + }, + { + "verseNum": 17, + "text": "I|strong=\"H4904\"* have perfumed|strong=\"H5130\"* my|strong=\"H5130\"* bed|strong=\"H4904\"* with|strong=\"H4904\"* myrrh|strong=\"H4753\"*, aloes, and|strong=\"H4753\"* cinnamon|strong=\"H7076\"*." + }, + { + "verseNum": 18, + "text": "Come|strong=\"H3212\"*, let|strong=\"H3212\"*’s take|strong=\"H3212\"* our|strong=\"H7301\"* fill|strong=\"H7301\"* of|strong=\"H1730\"* loving until|strong=\"H5704\"* the|strong=\"H5704\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* my|strong=\"H3588\"* husband isn’t at|strong=\"H1004\"* home|strong=\"H1004\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H3117\"* has|strong=\"H3117\"* taken|strong=\"H3947\"* a|strong=\"H3068\"* bag|strong=\"H6872\"* of|strong=\"H1004\"* money|strong=\"H3701\"* with|strong=\"H1004\"* him|strong=\"H3027\"*." + }, + { + "verseNum": 21, + "text": "With|strong=\"H2506\"* persuasive words|strong=\"H8193\"*, she|strong=\"H8193\"* led|strong=\"H5080\"* him|strong=\"H5186\"* astray|strong=\"H5080\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H1980\"* followed|strong=\"H1980\"* her|strong=\"H1980\"* immediately|strong=\"H6597\"*," + }, + { + "verseNum": 23, + "text": "Until|strong=\"H5704\"* an|strong=\"H3588\"* arrow|strong=\"H2671\"* strikes through|strong=\"H6398\"* his|strong=\"H3045\"* liver|strong=\"H3516\"*," + }, + { + "verseNum": 24, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, sons|strong=\"H1121\"*, listen|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H8085\"*." + }, + { + "verseNum": 25, + "text": "Don’t let your|strong=\"H1870\"* heart|strong=\"H3820\"* turn|strong=\"H7847\"* to|strong=\"H3820\"* her|strong=\"H1870\"* ways|strong=\"H1870\"*." + }, + { + "verseNum": 26, + "text": "for|strong=\"H3588\"* she|strong=\"H3588\"* has|strong=\"H3588\"* thrown down|strong=\"H5307\"* many|strong=\"H7227\"* wounded|strong=\"H2491\"*." + }, + { + "verseNum": 27, + "text": "Her|strong=\"H3381\"* house|strong=\"H1004\"* is|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*,+ 7:27 Sheol is the place of the dead. *" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Doesn’t wisdom|strong=\"H2451\"* cry|strong=\"H7121\"* out|strong=\"H5414\"*?" + }, + { + "verseNum": 2, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H1004\"* high|strong=\"H4791\"* places|strong=\"H1004\"* by|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"*," + }, + { + "verseNum": 3, + "text": "Beside|strong=\"H3027\"* the|strong=\"H3027\"* gates|strong=\"H8179\"*, at|strong=\"H6607\"* the|strong=\"H3027\"* entry|strong=\"H6607\"* of|strong=\"H3027\"* the|strong=\"H3027\"* city|strong=\"H7176\"*," + }, + { + "verseNum": 4, + "text": "“I|strong=\"H1121\"* call|strong=\"H7121\"* to|strong=\"H1121\"* you|strong=\"H6963\"* men|strong=\"H1121\"*!" + }, + { + "verseNum": 5, + "text": "You|strong=\"H3820\"* simple|strong=\"H6612\"*, understand prudence|strong=\"H6195\"*!" + }, + { + "verseNum": 6, + "text": "Hear|strong=\"H8085\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H8085\"* speak|strong=\"H1696\"* excellent things|strong=\"H4339\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* my|strong=\"H3588\"* mouth|strong=\"H2441\"* speaks|strong=\"H1897\"* truth." + }, + { + "verseNum": 8, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H6310\"* of|strong=\"H6310\"* my|strong=\"H3605\"* mouth|strong=\"H6310\"* are|strong=\"H6310\"* in|strong=\"H6310\"* righteousness|strong=\"H6664\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H3605\"* are|strong=\"H3477\"* all|strong=\"H3605\"* plain|strong=\"H5228\"* to|strong=\"H4672\"* him|strong=\"H4672\"* who|strong=\"H3605\"* understands," + }, + { + "verseNum": 10, + "text": "Receive|strong=\"H3947\"* my|strong=\"H3947\"* instruction|strong=\"H4148\"* rather than silver|strong=\"H3701\"*," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* wisdom|strong=\"H2451\"* is|strong=\"H2896\"* better|strong=\"H2896\"* than|strong=\"H2896\"* rubies|strong=\"H6443\"*." + }, + { + "verseNum": 12, + "text": "“I|strong=\"H4672\"*, wisdom|strong=\"H2451\"*, have|strong=\"H4672\"* made prudence|strong=\"H6195\"* my|strong=\"H4672\"* dwelling|strong=\"H7931\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* to|strong=\"H3068\"* hate|strong=\"H8130\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 14, + "text": "Counsel|strong=\"H6098\"* and|strong=\"H6098\"* sound|strong=\"H8454\"* knowledge are|strong=\"H1369\"* mine." + }, + { + "verseNum": 15, + "text": "By|strong=\"H4428\"* me|strong=\"H4427\"* kings|strong=\"H4428\"* reign|strong=\"H4427\"*," + }, + { + "verseNum": 16, + "text": "By|strong=\"H3605\"* me|strong=\"H3605\"* princes|strong=\"H8269\"* rule|strong=\"H8323\"*," + }, + { + "verseNum": 17, + "text": "I|strong=\"H4672\"* love those who|strong=\"H4672\"* love me|strong=\"H4672\"*." + }, + { + "verseNum": 18, + "text": "With me are riches|strong=\"H6239\"*, honor|strong=\"H3519\"*," + }, + { + "verseNum": 19, + "text": "My fruit|strong=\"H6529\"* is|strong=\"H2896\"* better|strong=\"H2896\"* than|strong=\"H2896\"* gold|strong=\"H6337\"*, yes, than|strong=\"H2896\"* fine|strong=\"H6337\"* gold|strong=\"H6337\"*," + }, + { + "verseNum": 20, + "text": "I|strong=\"H1980\"* walk|strong=\"H1980\"* in|strong=\"H1980\"* the|strong=\"H8432\"* way|strong=\"H1980\"* of|strong=\"H8432\"* righteousness|strong=\"H6666\"*," + }, + { + "verseNum": 21, + "text": "that|strong=\"H3426\"* I may|strong=\"H3426\"* give|strong=\"H5157\"* wealth|strong=\"H3426\"* to|strong=\"H4390\"* those who|strong=\"H3426\"* love me." + }, + { + "verseNum": 22, + "text": "“Yahweh|strong=\"H3068\"* possessed|strong=\"H7069\"* me|strong=\"H7069\"* in|strong=\"H3068\"* the|strong=\"H3068\"* beginning|strong=\"H7225\"* of|strong=\"H3068\"* his|strong=\"H3068\"* work," + }, + { + "verseNum": 23, + "text": "I was|strong=\"H7218\"* set|strong=\"H5258\"* up|strong=\"H5258\"* from|strong=\"H7218\"* everlasting|strong=\"H5769\"*, from|strong=\"H7218\"* the|strong=\"H7218\"* beginning|strong=\"H7218\"*," + }, + { + "verseNum": 24, + "text": "When there were|strong=\"H4325\"* no depths|strong=\"H8415\"*, I|strong=\"H3513\"* was|strong=\"H4325\"* born|strong=\"H2342\"*," + }, + { + "verseNum": 25, + "text": "Before|strong=\"H6440\"* the|strong=\"H6440\"* mountains|strong=\"H2022\"* were|strong=\"H2022\"* settled|strong=\"H2883\"* in|strong=\"H6440\"* place," + }, + { + "verseNum": 26, + "text": "while|strong=\"H5704\"* as|strong=\"H5704\"* yet|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H3808\"* not|strong=\"H3808\"* made|strong=\"H6213\"* the|strong=\"H6213\"* earth|strong=\"H6083\"*, nor|strong=\"H3808\"* the|strong=\"H6213\"* fields|strong=\"H2351\"*," + }, + { + "verseNum": 27, + "text": "When|strong=\"H5921\"* he|strong=\"H8033\"* established|strong=\"H3559\"* the|strong=\"H6440\"* heavens|strong=\"H8064\"*, I|strong=\"H5921\"* was|strong=\"H6440\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 28, + "text": "when he established the|strong=\"H5869\"* clouds|strong=\"H7834\"* above|strong=\"H4605\"*," + }, + { + "verseNum": 29, + "text": "when|strong=\"H5674\"* he|strong=\"H3808\"* gave|strong=\"H7760\"* to|strong=\"H4325\"* the|strong=\"H7760\"* sea|strong=\"H3220\"* its|strong=\"H7760\"* boundary|strong=\"H2706\"*," + }, + { + "verseNum": 30, + "text": "then|strong=\"H1961\"* I|strong=\"H3117\"* was|strong=\"H1961\"* the|strong=\"H3605\"* craftsman by|strong=\"H3117\"* his|strong=\"H3605\"* side." + }, + { + "verseNum": 31, + "text": "rejoicing|strong=\"H7832\"* in|strong=\"H1121\"* his|strong=\"H1121\"* whole world|strong=\"H8398\"*." + }, + { + "verseNum": 32, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, my|strong=\"H8104\"* sons|strong=\"H1121\"*, listen|strong=\"H8085\"* to|strong=\"H8104\"* me|strong=\"H8104\"*," + }, + { + "verseNum": 33, + "text": "Hear|strong=\"H8085\"* instruction|strong=\"H4148\"*, and|strong=\"H8085\"* be wise|strong=\"H2449\"*." + }, + { + "verseNum": 34, + "text": "Blessed is|strong=\"H3117\"* the|strong=\"H5921\"* man who|strong=\"H8104\"* hears|strong=\"H8085\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 35, + "text": "For|strong=\"H3588\"* whoever finds|strong=\"H4672\"* me|strong=\"H4672\"* finds|strong=\"H4672\"* life|strong=\"H2416\"*," + }, + { + "verseNum": 36, + "text": "But|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* sins|strong=\"H2398\"* against|strong=\"H2398\"* me|strong=\"H5315\"* wrongs his|strong=\"H3605\"* own|strong=\"H5315\"* soul|strong=\"H5315\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Wisdom|strong=\"H2454\"* has|strong=\"H1004\"* built|strong=\"H1129\"* her|strong=\"H1129\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 2, + "text": "She has prepared|strong=\"H6186\"* her|strong=\"H4537\"* meat." + }, + { + "verseNum": 3, + "text": "She|strong=\"H7121\"* has sent|strong=\"H7971\"* out|strong=\"H7971\"* her|strong=\"H7971\"* maidens|strong=\"H5291\"*." + }, + { + "verseNum": 4, + "text": "“Whoever|strong=\"H4310\"* is|strong=\"H3820\"* simple|strong=\"H6612\"*, let him turn|strong=\"H5493\"* in|strong=\"H5493\"* here|strong=\"H2008\"*!”" + }, + { + "verseNum": 5, + "text": "“Come|strong=\"H3212\"*, eat|strong=\"H3898\"* some of|strong=\"H3899\"* my|strong=\"H8354\"* bread|strong=\"H3899\"*," + }, + { + "verseNum": 6, + "text": "Leave|strong=\"H5800\"* your|strong=\"H5800\"* simple|strong=\"H6612\"* ways|strong=\"H1870\"*, and|strong=\"H1870\"* live|strong=\"H2421\"*." + }, + { + "verseNum": 7, + "text": "One|strong=\"H7563\"* who|strong=\"H7563\"* corrects|strong=\"H3256\"* a|strong=\"H3068\"* mocker|strong=\"H3887\"* invites insult." + }, + { + "verseNum": 8, + "text": "Don’t reprove|strong=\"H3198\"* a|strong=\"H3068\"* scoffer, lest|strong=\"H6435\"* he hate|strong=\"H8130\"* you|strong=\"H6435\"*." + }, + { + "verseNum": 9, + "text": "Instruct|strong=\"H3045\"* a|strong=\"H3068\"* wise|strong=\"H2450\"* person|strong=\"H3045\"*, and|strong=\"H3045\"* he|strong=\"H5414\"* will|strong=\"H6662\"* be|strong=\"H5750\"* still|strong=\"H5750\"* wiser|strong=\"H2449\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* the|strong=\"H3068\"* beginning|strong=\"H8462\"* of|strong=\"H3068\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* by|strong=\"H8141\"* me|strong=\"H3254\"* your|strong=\"H3588\"* days|strong=\"H3117\"* will|strong=\"H3117\"* be|strong=\"H3117\"* multiplied|strong=\"H7235\"*." + }, + { + "verseNum": 12, + "text": "If you|strong=\"H5375\"* are wise|strong=\"H2449\"*, you|strong=\"H5375\"* are wise|strong=\"H2449\"* for|strong=\"H5375\"* yourself|strong=\"H5375\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3045\"* foolish|strong=\"H3687\"* woman is|strong=\"H4100\"* loud|strong=\"H1993\"*," + }, + { + "verseNum": 14, + "text": "She|strong=\"H5921\"* sits|strong=\"H3427\"* at|strong=\"H3427\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H1004\"* her|strong=\"H5921\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 15, + "text": "to|strong=\"H1870\"* call|strong=\"H7121\"* to|strong=\"H1870\"* those who|strong=\"H7121\"* pass|strong=\"H5674\"* by|strong=\"H5674\"*," + }, + { + "verseNum": 16, + "text": "“Whoever|strong=\"H4310\"* is|strong=\"H3820\"* simple|strong=\"H6612\"*, let him turn|strong=\"H5493\"* in|strong=\"H5493\"* here|strong=\"H2008\"*.”" + }, + { + "verseNum": 17, + "text": "“Stolen|strong=\"H1589\"* water|strong=\"H4325\"* is|strong=\"H4325\"* sweet|strong=\"H4985\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H3588\"* he|strong=\"H3588\"* doesn’t know|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3588\"* departed|strong=\"H7496\"* spirits|strong=\"H7496\"* are|strong=\"H3045\"* there|strong=\"H8033\"*," + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H8010\"* proverbs|strong=\"H4912\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 2, + "text": "Treasures of|strong=\"H4194\"* wickedness|strong=\"H7562\"* profit|strong=\"H3276\"* nothing|strong=\"H3808\"*," + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* allow the|strong=\"H3068\"* soul|strong=\"H5315\"* of|strong=\"H3068\"* the|strong=\"H3068\"* righteous|strong=\"H6662\"* to|strong=\"H3068\"* go|strong=\"H3068\"* hungry|strong=\"H7456\"*," + }, + { + "verseNum": 4, + "text": "He|strong=\"H6213\"* becomes|strong=\"H3027\"* poor|strong=\"H7326\"* who|strong=\"H6213\"* works|strong=\"H6213\"* with|strong=\"H6213\"* a|strong=\"H3068\"* lazy|strong=\"H7423\"* hand|strong=\"H3027\"*," + }, + { + "verseNum": 5, + "text": "He|strong=\"H1121\"* who|strong=\"H1121\"* gathers in|strong=\"H1121\"* summer|strong=\"H7019\"* is|strong=\"H1121\"* a|strong=\"H3068\"* wise|strong=\"H7919\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 6, + "text": "Blessings|strong=\"H1293\"* are|strong=\"H7563\"* on|strong=\"H7218\"* the|strong=\"H3680\"* head|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H3680\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H8034\"* memory|strong=\"H2143\"* of|strong=\"H8034\"* the|strong=\"H8034\"* righteous|strong=\"H6662\"* is|strong=\"H8034\"* blessed|strong=\"H1293\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H3947\"* wise|strong=\"H2450\"* in|strong=\"H2450\"* heart|strong=\"H3820\"* accept|strong=\"H3947\"* commandments|strong=\"H4687\"*," + }, + { + "verseNum": 9, + "text": "He|strong=\"H1980\"* who|strong=\"H3045\"* walks|strong=\"H1980\"* blamelessly walks|strong=\"H1980\"* surely|strong=\"H1980\"*," + }, + { + "verseNum": 10, + "text": "One who winks|strong=\"H7169\"* with|strong=\"H5869\"* the|strong=\"H5414\"* eye|strong=\"H5869\"* causes|strong=\"H5414\"* sorrow|strong=\"H6094\"*," + }, + { + "verseNum": 11, + "text": "The|strong=\"H3680\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H3680\"* righteous|strong=\"H6662\"* is|strong=\"H7563\"* a|strong=\"H3068\"* spring|strong=\"H4726\"* of|strong=\"H6310\"* life|strong=\"H2416\"*," + }, + { + "verseNum": 12, + "text": "Hatred|strong=\"H8135\"* stirs|strong=\"H5782\"* up|strong=\"H5782\"* strife|strong=\"H4090\"*," + }, + { + "verseNum": 13, + "text": "Wisdom|strong=\"H2451\"* is|strong=\"H3820\"* found|strong=\"H4672\"* on|strong=\"H4672\"* the|strong=\"H4672\"* lips|strong=\"H8193\"* of|strong=\"H7626\"* him|strong=\"H4672\"* who|strong=\"H2638\"* has|strong=\"H3820\"* discernment|strong=\"H3820\"*," + }, + { + "verseNum": 14, + "text": "Wise|strong=\"H2450\"* men|strong=\"H2450\"* lay up|strong=\"H6845\"* knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 15, + "text": "The|strong=\"H5797\"* rich|strong=\"H6223\"* man|strong=\"H6223\"*’s wealth|strong=\"H1952\"* is|strong=\"H1800\"* his|strong=\"H5797\"* strong|strong=\"H5797\"* city|strong=\"H7151\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H7563\"* labor|strong=\"H6468\"* of|strong=\"H2403\"* the|strong=\"H7563\"* righteous|strong=\"H6662\"* leads|strong=\"H2416\"* to|strong=\"H6662\"* life|strong=\"H2416\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H2416\"* is|strong=\"H8433\"* in|strong=\"H5800\"* the|strong=\"H8104\"* way|strong=\"H8582\"* of|strong=\"H2416\"* life|strong=\"H2416\"* who|strong=\"H8104\"* heeds|strong=\"H8104\"* correction|strong=\"H4148\"*," + }, + { + "verseNum": 18, + "text": "He|strong=\"H1931\"* who|strong=\"H1931\"* hides hatred|strong=\"H8135\"* has|strong=\"H3318\"* lying|strong=\"H8267\"* lips|strong=\"H8193\"*." + }, + { + "verseNum": 19, + "text": "In|strong=\"H1697\"* the|strong=\"H1697\"* multitude|strong=\"H7230\"* of|strong=\"H1697\"* words|strong=\"H1697\"* there|strong=\"H1697\"* is|strong=\"H1697\"* no|strong=\"H3808\"* lack of|strong=\"H1697\"* disobedience," + }, + { + "verseNum": 20, + "text": "The|strong=\"H3820\"* tongue|strong=\"H3956\"* of|strong=\"H3820\"* the|strong=\"H3820\"* righteous|strong=\"H6662\"* is|strong=\"H3820\"* like|strong=\"H3820\"* choice silver|strong=\"H3701\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H4191\"* lips|strong=\"H8193\"* of|strong=\"H3820\"* the|strong=\"H4191\"* righteous|strong=\"H6662\"* feed|strong=\"H7462\"* many|strong=\"H7227\"*," + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"*’s blessing|strong=\"H1293\"* brings wealth|strong=\"H3808\"*," + }, + { + "verseNum": 23, + "text": "It|strong=\"H6213\"* is|strong=\"H2451\"* a|strong=\"H3068\"* fool|strong=\"H3684\"*’s pleasure to|strong=\"H6213\"* do|strong=\"H6213\"* wickedness|strong=\"H2154\"*," + }, + { + "verseNum": 24, + "text": "What|strong=\"H4034\"* the|strong=\"H5414\"* wicked|strong=\"H7563\"* fear|strong=\"H4034\"* will|strong=\"H6662\"* overtake them|strong=\"H5414\"*," + }, + { + "verseNum": 25, + "text": "When|strong=\"H5674\"* the|strong=\"H5674\"* whirlwind|strong=\"H5492\"* passes|strong=\"H5674\"*, the|strong=\"H5674\"* wicked|strong=\"H7563\"* is|strong=\"H7563\"* no|strong=\"H7563\"* more|strong=\"H5769\"*;" + }, + { + "verseNum": 26, + "text": "As|strong=\"H3651\"* vinegar|strong=\"H2558\"* to|strong=\"H7971\"* the|strong=\"H7971\"* teeth|strong=\"H8127\"*, and|strong=\"H7971\"* as|strong=\"H3651\"* smoke|strong=\"H6227\"* to|strong=\"H7971\"* the|strong=\"H7971\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 27, + "text": "The|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* prolongs|strong=\"H3254\"* days|strong=\"H3117\"*," + }, + { + "verseNum": 28, + "text": "The|strong=\"H7563\"* prospect of|strong=\"H8057\"* the|strong=\"H7563\"* righteous|strong=\"H6662\"* is|strong=\"H7563\"* joy|strong=\"H8057\"*," + }, + { + "verseNum": 29, + "text": "The|strong=\"H3068\"* way|strong=\"H1870\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* stronghold|strong=\"H4581\"* to|strong=\"H3068\"* the|strong=\"H3068\"* upright|strong=\"H8537\"*," + }, + { + "verseNum": 30, + "text": "The|strong=\"H3808\"* righteous|strong=\"H6662\"* will|strong=\"H6662\"* never|strong=\"H3808\"* be|strong=\"H3808\"* removed|strong=\"H4131\"*," + }, + { + "verseNum": 31, + "text": "The|strong=\"H3772\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H3772\"* righteous|strong=\"H6662\"* produces wisdom|strong=\"H2451\"*," + }, + { + "verseNum": 32, + "text": "The|strong=\"H3045\"* lips|strong=\"H8193\"* of|strong=\"H6310\"* the|strong=\"H3045\"* righteous|strong=\"H6662\"* know|strong=\"H3045\"* what|strong=\"H3045\"* is|strong=\"H7563\"* acceptable|strong=\"H7522\"*," + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* false|strong=\"H4820\"* balance|strong=\"H3976\"* is|strong=\"H3068\"* an|strong=\"H3068\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 2, + "text": "When pride|strong=\"H2087\"* comes|strong=\"H7036\"*, then comes|strong=\"H7036\"* shame|strong=\"H7036\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H5148\"* integrity|strong=\"H8538\"* of|strong=\"H7703\"* the|strong=\"H5148\"* upright|strong=\"H3477\"* shall|strong=\"H3477\"* guide|strong=\"H5148\"* them|strong=\"H5148\"*," + }, + { + "verseNum": 4, + "text": "Riches|strong=\"H1952\"* don’t profit|strong=\"H3276\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* wrath|strong=\"H5678\"*," + }, + { + "verseNum": 5, + "text": "The|strong=\"H1870\"* righteousness|strong=\"H6666\"* of|strong=\"H1870\"* the|strong=\"H1870\"* blameless|strong=\"H8549\"* will|strong=\"H7563\"* direct|strong=\"H3474\"* his|strong=\"H3474\"* way|strong=\"H1870\"*," + }, + { + "verseNum": 6, + "text": "The|strong=\"H3920\"* righteousness|strong=\"H6666\"* of|strong=\"H3477\"* the|strong=\"H3920\"* upright|strong=\"H3477\"* shall|strong=\"H3477\"* deliver|strong=\"H5337\"* them|strong=\"H5337\"*," + }, + { + "verseNum": 7, + "text": "When a|strong=\"H3068\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* dies|strong=\"H4194\"*, hope|strong=\"H8615\"* perishes," + }, + { + "verseNum": 8, + "text": "A|strong=\"H3068\"* righteous|strong=\"H6662\"* person is|strong=\"H7563\"* delivered|strong=\"H2502\"* out|strong=\"H2502\"* of|strong=\"H8478\"* trouble|strong=\"H6869\"*," + }, + { + "verseNum": 9, + "text": "With|strong=\"H6310\"* his|strong=\"H7843\"* mouth|strong=\"H6310\"* the|strong=\"H7843\"* godless|strong=\"H2611\"* man|strong=\"H6662\"* destroys|strong=\"H7843\"* his|strong=\"H7843\"* neighbor|strong=\"H7453\"*," + }, + { + "verseNum": 10, + "text": "When it goes well|strong=\"H2898\"* with|strong=\"H6662\"* the|strong=\"H7563\"* righteous|strong=\"H6662\"*, the|strong=\"H7563\"* city|strong=\"H7151\"* rejoices|strong=\"H5970\"*." + }, + { + "verseNum": 11, + "text": "By|strong=\"H7563\"* the|strong=\"H7311\"* blessing|strong=\"H1293\"* of|strong=\"H6310\"* the|strong=\"H7311\"* upright|strong=\"H3477\"*, the|strong=\"H7311\"* city|strong=\"H7176\"* is|strong=\"H7563\"* exalted|strong=\"H7311\"*," + }, + { + "verseNum": 12, + "text": "One|strong=\"H7453\"* who|strong=\"H2638\"* despises his|strong=\"H7453\"* neighbor|strong=\"H7453\"* is|strong=\"H3820\"* void|strong=\"H2638\"* of|strong=\"H3820\"* wisdom|strong=\"H3820\"*," + }, + { + "verseNum": 13, + "text": "One|strong=\"H1697\"* who|strong=\"H1980\"* brings gossip betrays a|strong=\"H3068\"* confidence," + }, + { + "verseNum": 14, + "text": "Where there|strong=\"H7230\"* is|strong=\"H5971\"* no wise|strong=\"H8458\"* guidance|strong=\"H8458\"*, the|strong=\"H5307\"* nation|strong=\"H5971\"* falls|strong=\"H5307\"*," + }, + { + "verseNum": 15, + "text": "He|strong=\"H3588\"* who|strong=\"H2114\"* is|strong=\"H7451\"* collateral|strong=\"H6148\"* for|strong=\"H3588\"* a|strong=\"H3068\"* stranger|strong=\"H2114\"* will|strong=\"H2114\"* suffer|strong=\"H7489\"* for|strong=\"H3588\"* it|strong=\"H3588\"*," + }, + { + "verseNum": 16, + "text": "A|strong=\"H3068\"* gracious|strong=\"H2580\"* woman obtains honor|strong=\"H3519\"*," + }, + { + "verseNum": 17, + "text": "The|strong=\"H1580\"* merciful|strong=\"H2617\"* man|strong=\"H5315\"* does|strong=\"H1580\"* good|strong=\"H1580\"* to|strong=\"H5315\"* his own|strong=\"H5315\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 18, + "text": "Wicked|strong=\"H7563\"* people|strong=\"H7563\"* earn deceitful|strong=\"H8267\"* wages|strong=\"H6468\"*," + }, + { + "verseNum": 19, + "text": "He|strong=\"H3651\"* who|strong=\"H2416\"* is|strong=\"H3651\"* truly righteous|strong=\"H6666\"* gets life|strong=\"H2416\"*." + }, + { + "verseNum": 20, + "text": "Those who|strong=\"H3068\"* are|strong=\"H3068\"* perverse|strong=\"H6141\"* in|strong=\"H3068\"* heart|strong=\"H3820\"* are|strong=\"H3068\"* an|strong=\"H3068\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 21, + "text": "Most certainly|strong=\"H3808\"*, the|strong=\"H3027\"* evil|strong=\"H7451\"* man|strong=\"H6662\"* will|strong=\"H6662\"* not|strong=\"H3808\"* be|strong=\"H3808\"* unpunished|strong=\"H5352\"*," + }, + { + "verseNum": 22, + "text": "Like a|strong=\"H3068\"* gold|strong=\"H2091\"* ring|strong=\"H5141\"* in|strong=\"H5493\"* a|strong=\"H3068\"* pig|strong=\"H2386\"*’s snout," + }, + { + "verseNum": 23, + "text": "The|strong=\"H2896\"* desire|strong=\"H8378\"* of|strong=\"H2896\"* the|strong=\"H2896\"* righteous|strong=\"H6662\"* is|strong=\"H7563\"* only good|strong=\"H2896\"*." + }, + { + "verseNum": 24, + "text": "There|strong=\"H3426\"* is|strong=\"H3426\"* one who|strong=\"H3426\"* scatters|strong=\"H6340\"*, and|strong=\"H3254\"* increases|strong=\"H3254\"* yet|strong=\"H5750\"* more|strong=\"H3254\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H1571\"* liberal|strong=\"H1293\"* soul|strong=\"H5315\"* shall|strong=\"H5315\"* be|strong=\"H5315\"* made|strong=\"H1878\"* fat|strong=\"H1878\"*." + }, + { + "verseNum": 26, + "text": "People|strong=\"H3816\"* curse|strong=\"H5344\"* someone who withholds|strong=\"H4513\"* grain|strong=\"H1250\"*," + }, + { + "verseNum": 27, + "text": "He who|strong=\"H2896\"* diligently|strong=\"H7836\"* seeks|strong=\"H1245\"* good|strong=\"H2896\"* seeks|strong=\"H1245\"* favor|strong=\"H7522\"*," + }, + { + "verseNum": 28, + "text": "He|strong=\"H1931\"* who|strong=\"H1931\"* trusts in|strong=\"H5307\"* his|strong=\"H1931\"* riches|strong=\"H6239\"* will|strong=\"H6662\"* fall|strong=\"H5307\"*," + }, + { + "verseNum": 29, + "text": "He|strong=\"H1004\"* who|strong=\"H5650\"* troubles|strong=\"H5916\"* his|strong=\"H5157\"* own|strong=\"H5157\"* house|strong=\"H1004\"* shall|strong=\"H1004\"* inherit|strong=\"H5157\"* the|strong=\"H5650\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H3947\"* fruit|strong=\"H6529\"* of|strong=\"H6086\"* the|strong=\"H3947\"* righteous|strong=\"H6662\"* is|strong=\"H5315\"* a|strong=\"H3068\"* tree|strong=\"H6086\"* of|strong=\"H6086\"* life|strong=\"H5315\"*." + }, + { + "verseNum": 31, + "text": "Behold|strong=\"H2005\"*, the|strong=\"H3588\"* righteous|strong=\"H6662\"* shall|strong=\"H7563\"* be|strong=\"H7563\"* repaid|strong=\"H7999\"* in|strong=\"H6662\"* the|strong=\"H3588\"* earth," + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Whoever loves correction|strong=\"H4148\"* loves knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 2, + "text": "A|strong=\"H3068\"* good|strong=\"H2896\"* man|strong=\"H2896\"* shall|strong=\"H3068\"* obtain|strong=\"H6329\"* favor|strong=\"H7522\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 3, + "text": "A|strong=\"H3068\"* man|strong=\"H6662\"* shall|strong=\"H6662\"* not|strong=\"H3808\"* be|strong=\"H3808\"* established|strong=\"H3559\"* by|strong=\"H3559\"* wickedness|strong=\"H7562\"*," + }, + { + "verseNum": 4, + "text": "A|strong=\"H3068\"* worthy|strong=\"H2428\"* woman is|strong=\"H1167\"* the crown|strong=\"H5850\"* of|strong=\"H1167\"* her husband|strong=\"H1167\"*," + }, + { + "verseNum": 5, + "text": "The|strong=\"H4941\"* thoughts|strong=\"H4284\"* of|strong=\"H4941\"* the|strong=\"H4941\"* righteous|strong=\"H6662\"* are|strong=\"H7563\"* just|strong=\"H6662\"*," + }, + { + "verseNum": 6, + "text": "The|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H1697\"* wicked|strong=\"H7563\"* are|strong=\"H7563\"* about|strong=\"H1697\"* lying|strong=\"H1697\"* in|strong=\"H3477\"* wait for|strong=\"H1697\"* blood|strong=\"H1818\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H5975\"* wicked|strong=\"H7563\"* are|strong=\"H7563\"* overthrown|strong=\"H2015\"*, and|strong=\"H1004\"* are|strong=\"H7563\"* no|strong=\"H5975\"* more|strong=\"H7563\"*," + }, + { + "verseNum": 8, + "text": "A|strong=\"H3068\"* man|strong=\"H3820\"* shall|strong=\"H3820\"* be|strong=\"H1961\"* commended|strong=\"H1984\"* according|strong=\"H6310\"* to|strong=\"H1961\"* his|strong=\"H1961\"* wisdom|strong=\"H3820\"*," + }, + { + "verseNum": 9, + "text": "Better|strong=\"H2896\"* is|strong=\"H2896\"* he who|strong=\"H5650\"* is|strong=\"H2896\"* little known, and|strong=\"H3899\"* has|strong=\"H5650\"* a|strong=\"H3068\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 10, + "text": "A|strong=\"H3068\"* righteous|strong=\"H6662\"* man|strong=\"H7563\"* respects the|strong=\"H3045\"* life|strong=\"H5315\"* of|strong=\"H5315\"* his|strong=\"H3045\"* animal," + }, + { + "verseNum": 11, + "text": "He|strong=\"H3820\"* who|strong=\"H2638\"* tills|strong=\"H5647\"* his|strong=\"H5647\"* land shall|strong=\"H3820\"* have|strong=\"H7646\"* plenty|strong=\"H7646\"* of|strong=\"H3820\"* bread|strong=\"H3899\"*," + }, + { + "verseNum": 12, + "text": "The|strong=\"H5414\"* wicked|strong=\"H7563\"* desires|strong=\"H2530\"* the|strong=\"H5414\"* plunder of|strong=\"H7451\"* evil|strong=\"H7451\"* men|strong=\"H7563\"*," + }, + { + "verseNum": 13, + "text": "An|strong=\"H3318\"* evil|strong=\"H7451\"* man|strong=\"H6662\"* is|strong=\"H6662\"* trapped by|strong=\"H3318\"* sinfulness of|strong=\"H3318\"* lips|strong=\"H8193\"*," + }, + { + "verseNum": 14, + "text": "A|strong=\"H3068\"* man|strong=\"H2896\"* shall|strong=\"H3027\"* be|strong=\"H3027\"* satisfied|strong=\"H7646\"* with|strong=\"H7646\"* good|strong=\"H2896\"* by|strong=\"H3027\"* the|strong=\"H7725\"* fruit|strong=\"H6529\"* of|strong=\"H3027\"* his|strong=\"H7725\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H8085\"* way|strong=\"H1870\"* of|strong=\"H1870\"* a|strong=\"H3068\"* fool is|strong=\"H1870\"* right|strong=\"H3477\"* in|strong=\"H8085\"* his|strong=\"H8085\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 16, + "text": "A|strong=\"H3068\"* fool shows his|strong=\"H3045\"* annoyance|strong=\"H7036\"* the|strong=\"H3117\"* same day|strong=\"H3117\"*," + }, + { + "verseNum": 17, + "text": "He who|strong=\"H6664\"* is|strong=\"H6664\"* truthful testifies honestly|strong=\"H6664\"*," + }, + { + "verseNum": 18, + "text": "There|strong=\"H3426\"* is|strong=\"H3426\"* one|strong=\"H3956\"* who|strong=\"H2450\"* speaks|strong=\"H3426\"* rashly like the|strong=\"H3426\"* piercing of|strong=\"H2719\"* a|strong=\"H3068\"* sword|strong=\"H2719\"*," + }, + { + "verseNum": 19, + "text": "Truth’s lips|strong=\"H8193\"* will|strong=\"H5704\"* be|strong=\"H8193\"* established|strong=\"H3559\"* forever|strong=\"H5704\"*," + }, + { + "verseNum": 20, + "text": "Deceit|strong=\"H4820\"* is|strong=\"H3820\"* in|strong=\"H8057\"* the|strong=\"H7965\"* heart|strong=\"H3820\"* of|strong=\"H3820\"* those who|strong=\"H7965\"* plot|strong=\"H2790\"* evil|strong=\"H7451\"*," + }, + { + "verseNum": 21, + "text": "No|strong=\"H3808\"* mischief|strong=\"H7451\"* shall|strong=\"H7563\"* happen to|strong=\"H3808\"* the|strong=\"H3605\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 22, + "text": "Lying|strong=\"H8267\"* lips|strong=\"H8193\"* are|strong=\"H3068\"* an|strong=\"H6213\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 23, + "text": "A|strong=\"H3068\"* prudent|strong=\"H6175\"* man|strong=\"H6175\"* keeps his|strong=\"H7121\"* knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 24, + "text": "The|strong=\"H3027\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3027\"* diligent|strong=\"H2742\"* ones shall|strong=\"H3027\"* rule|strong=\"H4910\"*," + }, + { + "verseNum": 25, + "text": "Anxiety|strong=\"H1674\"* in|strong=\"H1697\"* a|strong=\"H3068\"* man|strong=\"H2896\"*’s heart|strong=\"H3820\"* weighs|strong=\"H7812\"* it|strong=\"H2896\"* down|strong=\"H7812\"*," + }, + { + "verseNum": 26, + "text": "A|strong=\"H3068\"* righteous|strong=\"H6662\"* person is|strong=\"H1870\"* cautious in|strong=\"H1870\"* friendship," + }, + { + "verseNum": 27, + "text": "The|strong=\"H3808\"* slothful|strong=\"H7423\"* man|strong=\"H7423\"* doesn’t roast|strong=\"H2760\"* his|strong=\"H3808\"* game|strong=\"H6718\"*," + }, + { + "verseNum": 28, + "text": "In|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1870\"* righteousness|strong=\"H6666\"* is|strong=\"H1870\"* life|strong=\"H2416\"*;" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* wise|strong=\"H2450\"* son|strong=\"H1121\"* listens|strong=\"H8085\"* to|strong=\"H8085\"* his|strong=\"H8085\"* father|strong=\"H1121\"*’s instruction|strong=\"H4148\"*," + }, + { + "verseNum": 2, + "text": "By the|strong=\"H2896\"* fruit|strong=\"H6529\"* of|strong=\"H6310\"* his|strong=\"H6310\"* lips|strong=\"H6310\"*, a|strong=\"H3068\"* man|strong=\"H5315\"* enjoys good|strong=\"H2896\"* things|strong=\"H2896\"*," + }, + { + "verseNum": 3, + "text": "He|strong=\"H5315\"* who|strong=\"H5315\"* guards|strong=\"H8104\"* his|strong=\"H8104\"* mouth|strong=\"H6310\"* guards|strong=\"H8104\"* his|strong=\"H8104\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H1878\"* soul|strong=\"H5315\"* of|strong=\"H5315\"* the|strong=\"H1878\"* sluggard|strong=\"H6102\"* desires, and|strong=\"H5315\"* has|strong=\"H5315\"* nothing," + }, + { + "verseNum": 5, + "text": "A|strong=\"H3068\"* righteous|strong=\"H6662\"* man|strong=\"H7563\"* hates|strong=\"H8130\"* lies|strong=\"H8267\"*," + }, + { + "verseNum": 6, + "text": "Righteousness|strong=\"H6666\"* guards|strong=\"H5341\"* the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1870\"* integrity|strong=\"H8537\"*," + }, + { + "verseNum": 7, + "text": "There|strong=\"H3426\"* are|strong=\"H3426\"* some|strong=\"H7227\"* who|strong=\"H3605\"* pretend to|strong=\"H7227\"* be|strong=\"H3426\"* rich|strong=\"H6238\"*, yet|strong=\"H3605\"* have|strong=\"H3426\"* nothing|strong=\"H3605\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H8085\"* ransom|strong=\"H3724\"* of|strong=\"H5315\"* a|strong=\"H3068\"* man|strong=\"H5315\"*’s life|strong=\"H5315\"* is|strong=\"H5315\"* his|strong=\"H8085\"* riches|strong=\"H6239\"*," + }, + { + "verseNum": 9, + "text": "The|strong=\"H8055\"* light|strong=\"H5216\"* of|strong=\"H5216\"* the|strong=\"H8055\"* righteous|strong=\"H6662\"* shines brightly," + }, + { + "verseNum": 10, + "text": "Pride|strong=\"H2087\"* only|strong=\"H7535\"* breeds quarrels," + }, + { + "verseNum": 11, + "text": "Wealth|strong=\"H1952\"* gained dishonestly dwindles|strong=\"H4591\"* away," + }, + { + "verseNum": 12, + "text": "Hope|strong=\"H8431\"* deferred|strong=\"H4900\"* makes|strong=\"H2470\"* the|strong=\"H2470\"* heart|strong=\"H3820\"* sick|strong=\"H2470\"*," + }, + { + "verseNum": 13, + "text": "Whoever despises instruction|strong=\"H1697\"* will|strong=\"H1697\"* pay|strong=\"H7999\"* for|strong=\"H1697\"* it|strong=\"H1931\"*," + }, + { + "verseNum": 14, + "text": "The|strong=\"H5493\"* teaching|strong=\"H8451\"* of|strong=\"H8451\"* the|strong=\"H5493\"* wise|strong=\"H2450\"* is|strong=\"H8451\"* a|strong=\"H3068\"* spring|strong=\"H4726\"* of|strong=\"H8451\"* life|strong=\"H2416\"*," + }, + { + "verseNum": 15, + "text": "Good|strong=\"H2896\"* understanding|strong=\"H7922\"* wins|strong=\"H5414\"* favor|strong=\"H2580\"*," + }, + { + "verseNum": 16, + "text": "Every|strong=\"H3605\"* prudent|strong=\"H6175\"* man|strong=\"H6175\"* acts|strong=\"H6213\"* from|strong=\"H3605\"* knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 17, + "text": "A|strong=\"H3068\"* wicked|strong=\"H7563\"* messenger|strong=\"H4397\"* falls|strong=\"H5307\"* into|strong=\"H5307\"* trouble|strong=\"H7451\"*," + }, + { + "verseNum": 18, + "text": "Poverty|strong=\"H7389\"* and|strong=\"H8104\"* shame|strong=\"H7036\"* come to|strong=\"H8104\"* him|strong=\"H4148\"* who|strong=\"H8104\"* refuses discipline|strong=\"H4148\"*," + }, + { + "verseNum": 19, + "text": "Longing fulfilled|strong=\"H1961\"* is|strong=\"H5315\"* sweet|strong=\"H6149\"* to|strong=\"H1961\"* the|strong=\"H5493\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 20, + "text": "One who|strong=\"H7462\"* walks|strong=\"H1980\"* with|strong=\"H1980\"* wise|strong=\"H2450\"* men|strong=\"H2450\"* grows wise|strong=\"H2450\"*," + }, + { + "verseNum": 21, + "text": "Misfortune|strong=\"H7451\"* pursues|strong=\"H7291\"* sinners|strong=\"H2400\"*," + }, + { + "verseNum": 22, + "text": "A|strong=\"H3068\"* good|strong=\"H2896\"* man|strong=\"H6662\"* leaves|strong=\"H5157\"* an|strong=\"H5157\"* inheritance|strong=\"H5157\"* to|strong=\"H1121\"* his|strong=\"H5157\"* children|strong=\"H1121\"*’s children|strong=\"H1121\"*," + }, + { + "verseNum": 23, + "text": "An|strong=\"H3426\"* abundance|strong=\"H7230\"* of|strong=\"H7230\"* food is|strong=\"H3426\"* in|strong=\"H3808\"* poor|strong=\"H7326\"* people|strong=\"H3808\"*’s fields," + }, + { + "verseNum": 24, + "text": "One|strong=\"H1121\"* who|strong=\"H1121\"* spares the|strong=\"H1121\"* rod|strong=\"H7626\"* hates|strong=\"H8130\"* his|strong=\"H2820\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 25, + "text": "The|strong=\"H7563\"* righteous|strong=\"H6662\"* one|strong=\"H6662\"* eats to|strong=\"H5315\"* the|strong=\"H7563\"* satisfying|strong=\"H7648\"* of|strong=\"H5315\"* his|strong=\"H7648\"* soul|strong=\"H5315\"*," + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Every wise|strong=\"H2454\"* woman|strong=\"H1004\"* builds|strong=\"H1129\"* her|strong=\"H1129\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 2, + "text": "He|strong=\"H3068\"* who|strong=\"H3068\"* walks|strong=\"H1980\"* in|strong=\"H1980\"* his|strong=\"H3068\"* uprightness|strong=\"H3476\"* fears|strong=\"H3373\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H8104\"* fool’s talk|strong=\"H8193\"* brings a|strong=\"H3068\"* rod|strong=\"H2415\"* to|strong=\"H8104\"* his|strong=\"H8104\"* back|strong=\"H1346\"*," + }, + { + "verseNum": 4, + "text": "Where no oxen|strong=\"H7794\"* are|strong=\"H1249\"*, the|strong=\"H3581\"* crib is|strong=\"H3581\"* clean|strong=\"H1249\"*," + }, + { + "verseNum": 5, + "text": "A|strong=\"H3068\"* truthful witness|strong=\"H5707\"* will|strong=\"H3808\"* not|strong=\"H3808\"* lie|strong=\"H8267\"*," + }, + { + "verseNum": 6, + "text": "A|strong=\"H3068\"* scoffer seeks|strong=\"H1245\"* wisdom|strong=\"H2451\"*, and|strong=\"H2451\"* doesn’t find|strong=\"H1245\"* it|strong=\"H7043\"*," + }, + { + "verseNum": 7, + "text": "Stay away|strong=\"H3212\"* from|strong=\"H3212\"* a|strong=\"H3068\"* foolish|strong=\"H3684\"* man|strong=\"H3045\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H1870\"* wisdom|strong=\"H2451\"* of|strong=\"H1870\"* the|strong=\"H1870\"* prudent|strong=\"H6175\"* is|strong=\"H1870\"* to|strong=\"H1870\"* think about|strong=\"H1870\"* his way|strong=\"H1870\"*," + }, + { + "verseNum": 9, + "text": "Fools mock|strong=\"H3887\"* at|strong=\"H3887\"* making atonement for sins," + }, + { + "verseNum": 10, + "text": "The|strong=\"H3045\"* heart|strong=\"H3820\"* knows|strong=\"H3045\"* its|strong=\"H3045\"* own|strong=\"H5315\"* bitterness|strong=\"H4787\"* and|strong=\"H3045\"* joy|strong=\"H8057\"*;" + }, + { + "verseNum": 11, + "text": "The|strong=\"H1004\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H1004\"* wicked|strong=\"H7563\"* will|strong=\"H7563\"* be|strong=\"H7563\"* overthrown|strong=\"H8045\"*," + }, + { + "verseNum": 12, + "text": "There|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* way|strong=\"H1870\"* which|strong=\"H3426\"* seems right|strong=\"H3477\"* to|strong=\"H6440\"* a|strong=\"H3068\"* man|strong=\"H6440\"*," + }, + { + "verseNum": 13, + "text": "Even|strong=\"H1571\"* in|strong=\"H1571\"* laughter|strong=\"H7814\"* the|strong=\"H1571\"* heart|strong=\"H3820\"* may|strong=\"H3820\"* be|strong=\"H3820\"* sorrowful|strong=\"H3510\"*," + }, + { + "verseNum": 14, + "text": "The|strong=\"H5921\"* unfaithful will|strong=\"H3820\"* be|strong=\"H3820\"* repaid for|strong=\"H5921\"* his|strong=\"H5921\"* own ways|strong=\"H1870\"*;" + }, + { + "verseNum": 15, + "text": "A|strong=\"H3068\"* simple|strong=\"H6612\"* man|strong=\"H6175\"* believes everything|strong=\"H3605\"*," + }, + { + "verseNum": 16, + "text": "A|strong=\"H3068\"* wise|strong=\"H2450\"* man|strong=\"H2450\"* fears|strong=\"H3373\"* and|strong=\"H2450\"* shuns evil|strong=\"H7451\"*," + }, + { + "verseNum": 17, + "text": "He|strong=\"H6213\"* who|strong=\"H6213\"* is|strong=\"H4209\"* quick to|strong=\"H6213\"* become|strong=\"H6213\"* angry will|strong=\"H6213\"* commit|strong=\"H6213\"* folly," + }, + { + "verseNum": 18, + "text": "The|strong=\"H5157\"* simple|strong=\"H6612\"* inherit|strong=\"H5157\"* folly|strong=\"H6612\"*," + }, + { + "verseNum": 19, + "text": "The|strong=\"H6440\"* evil|strong=\"H7451\"* bow|strong=\"H7817\"* down|strong=\"H7817\"* before|strong=\"H6440\"* the|strong=\"H6440\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 20, + "text": "The|strong=\"H1571\"* poor|strong=\"H7326\"* person|strong=\"H7227\"* is|strong=\"H1571\"* shunned even|strong=\"H1571\"* by|strong=\"H1571\"* his|strong=\"H8130\"* own neighbor|strong=\"H7453\"*," + }, + { + "verseNum": 21, + "text": "He|strong=\"H2398\"* who|strong=\"H6041\"* despises his|strong=\"H2603\"* neighbor|strong=\"H7453\"* sins|strong=\"H2398\"*," + }, + { + "verseNum": 22, + "text": "Don’t they|strong=\"H3808\"* go|strong=\"H8582\"* astray|strong=\"H8582\"* who|strong=\"H2896\"* plot|strong=\"H2790\"* evil|strong=\"H7451\"*?" + }, + { + "verseNum": 23, + "text": "In|strong=\"H1697\"* all|strong=\"H3605\"* hard work|strong=\"H1697\"* there|strong=\"H1961\"* is|strong=\"H1697\"* profit|strong=\"H4195\"*," + }, + { + "verseNum": 24, + "text": "The crown|strong=\"H5850\"* of|strong=\"H5850\"* the wise|strong=\"H2450\"* is|strong=\"H3684\"* their riches|strong=\"H6239\"*," + }, + { + "verseNum": 25, + "text": "A|strong=\"H3068\"* truthful witness|strong=\"H5707\"* saves|strong=\"H5337\"* souls|strong=\"H5315\"*," + }, + { + "verseNum": 26, + "text": "In|strong=\"H3068\"* the|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* secure|strong=\"H4009\"* fortress," + }, + { + "verseNum": 27, + "text": "The|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* fountain|strong=\"H4726\"* of|strong=\"H3068\"* life|strong=\"H2416\"*," + }, + { + "verseNum": 28, + "text": "In|strong=\"H4428\"* the|strong=\"H5971\"* multitude|strong=\"H7230\"* of|strong=\"H4428\"* people|strong=\"H5971\"* is|strong=\"H4428\"* the|strong=\"H5971\"* king|strong=\"H4428\"*’s glory|strong=\"H1927\"*," + }, + { + "verseNum": 29, + "text": "He|strong=\"H8394\"* who|strong=\"H7227\"* is|strong=\"H7307\"* slow to|strong=\"H7307\"* anger|strong=\"H7307\"* has|strong=\"H7307\"* great|strong=\"H7227\"* understanding|strong=\"H8394\"*," + }, + { + "verseNum": 30, + "text": "The|strong=\"H3820\"* life|strong=\"H2416\"* of|strong=\"H3820\"* the|strong=\"H3820\"* body|strong=\"H1320\"* is|strong=\"H3820\"* a|strong=\"H3068\"* heart|strong=\"H3820\"* at peace," + }, + { + "verseNum": 31, + "text": "He|strong=\"H6213\"* who|strong=\"H6213\"* oppresses|strong=\"H6231\"* the|strong=\"H6213\"* poor|strong=\"H1800\"* shows|strong=\"H6213\"* contempt for|strong=\"H6213\"* his|strong=\"H6213\"* Maker|strong=\"H6213\"*," + }, + { + "verseNum": 32, + "text": "The|strong=\"H4194\"* wicked|strong=\"H7563\"* is|strong=\"H7563\"* brought down|strong=\"H1760\"* in|strong=\"H6662\"* his calamity|strong=\"H7451\"*," + }, + { + "verseNum": 33, + "text": "Wisdom|strong=\"H2451\"* rests|strong=\"H5117\"* in|strong=\"H7130\"* the|strong=\"H3045\"* heart|strong=\"H3820\"* of|strong=\"H3820\"* one who|strong=\"H3045\"* has|strong=\"H3820\"* understanding|strong=\"H3820\"*," + }, + { + "verseNum": 34, + "text": "Righteousness|strong=\"H6666\"* exalts|strong=\"H7311\"* a|strong=\"H3068\"* nation|strong=\"H1471\"*," + }, + { + "verseNum": 35, + "text": "The|strong=\"H1961\"* king|strong=\"H4428\"*’s favor|strong=\"H7522\"* is|strong=\"H4428\"* toward a|strong=\"H3068\"* servant|strong=\"H5650\"* who|strong=\"H5650\"* deals wisely|strong=\"H7919\"*," + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* gentle|strong=\"H7390\"* answer|strong=\"H7725\"* turns|strong=\"H7725\"* away|strong=\"H7725\"* wrath|strong=\"H2534\"*," + }, + { + "verseNum": 2, + "text": "The|strong=\"H3190\"* tongue|strong=\"H3956\"* of|strong=\"H6310\"* the|strong=\"H3190\"* wise|strong=\"H2450\"* commends knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"* are|strong=\"H5869\"* everywhere|strong=\"H3605\"*," + }, + { + "verseNum": 4, + "text": "A|strong=\"H3068\"* gentle tongue|strong=\"H3956\"* is|strong=\"H7307\"* a|strong=\"H3068\"* tree|strong=\"H6086\"* of|strong=\"H7307\"* life|strong=\"H2416\"*," + }, + { + "verseNum": 5, + "text": "A|strong=\"H3068\"* fool despises his|strong=\"H8104\"* father’s correction|strong=\"H4148\"*," + }, + { + "verseNum": 6, + "text": "In|strong=\"H1004\"* the|strong=\"H1004\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H1004\"* righteous|strong=\"H6662\"* is|strong=\"H7563\"* much|strong=\"H7227\"* treasure|strong=\"H2633\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H3651\"* lips|strong=\"H8193\"* of|strong=\"H3820\"* the|strong=\"H3651\"* wise|strong=\"H2450\"* spread|strong=\"H2219\"* knowledge|strong=\"H1847\"*;" + }, + { + "verseNum": 8, + "text": "The|strong=\"H3068\"* sacrifice|strong=\"H2077\"* made|strong=\"H3068\"* by|strong=\"H3068\"* the|strong=\"H3068\"* wicked|strong=\"H7563\"* is|strong=\"H3068\"* an|strong=\"H3068\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 9, + "text": "The|strong=\"H3068\"* way|strong=\"H1870\"* of|strong=\"H3068\"* the|strong=\"H3068\"* wicked|strong=\"H7563\"* is|strong=\"H3068\"* an|strong=\"H3068\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 10, + "text": "There|strong=\"H5800\"* is|strong=\"H7451\"* stern discipline|strong=\"H4148\"* for|strong=\"H4191\"* one who|strong=\"H8130\"* forsakes|strong=\"H5800\"* the|strong=\"H5800\"* way." + }, + { + "verseNum": 11, + "text": "Sheol|strong=\"H7585\"*+ 15:11 Sheol is the place of the dead.* and|strong=\"H1121\"* Abaddon are|strong=\"H1121\"* before|strong=\"H5048\"* Yahweh|strong=\"H3068\"*—" + }, + { + "verseNum": 12, + "text": "A|strong=\"H3068\"* scoffer doesn’t love to|strong=\"H3212\"* be|strong=\"H3808\"* reproved|strong=\"H3198\"*;" + }, + { + "verseNum": 13, + "text": "A|strong=\"H3068\"* glad|strong=\"H8056\"* heart|strong=\"H3820\"* makes|strong=\"H3190\"* a|strong=\"H3068\"* cheerful|strong=\"H3190\"* face|strong=\"H6440\"*," + }, + { + "verseNum": 14, + "text": "The|strong=\"H6440\"* heart|strong=\"H3820\"* of|strong=\"H6440\"* one who|strong=\"H7462\"* has|strong=\"H3820\"* understanding|strong=\"H3820\"* seeks|strong=\"H1245\"* knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 15, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* afflicted|strong=\"H6041\"* are|strong=\"H3117\"* wretched|strong=\"H7451\"*," + }, + { + "verseNum": 16, + "text": "Better|strong=\"H2896\"* is|strong=\"H3068\"* little|strong=\"H4592\"*, with|strong=\"H3068\"* the|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 17, + "text": "Better|strong=\"H2896\"* is|strong=\"H2896\"* a|strong=\"H3068\"* dinner of|strong=\"H2896\"* herbs|strong=\"H3419\"*, where|strong=\"H8033\"* love is|strong=\"H2896\"*," + }, + { + "verseNum": 18, + "text": "A|strong=\"H3068\"* wrathful|strong=\"H2534\"* man stirs|strong=\"H1624\"* up|strong=\"H1624\"* contention|strong=\"H4066\"*," + }, + { + "verseNum": 19, + "text": "The|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H1870\"* sluggard|strong=\"H6102\"* is|strong=\"H1870\"* like|strong=\"H1870\"* a|strong=\"H3068\"* thorn patch," + }, + { + "verseNum": 20, + "text": "A|strong=\"H3068\"* wise|strong=\"H2450\"* son|strong=\"H1121\"* makes|strong=\"H8055\"* a|strong=\"H3068\"* father|strong=\"H1121\"* glad|strong=\"H8055\"*," + }, + { + "verseNum": 21, + "text": "Folly is|strong=\"H3820\"* joy|strong=\"H8057\"* to|strong=\"H3212\"* one who|strong=\"H2638\"* is|strong=\"H3820\"* void|strong=\"H2638\"* of|strong=\"H3820\"* wisdom|strong=\"H3820\"*," + }, + { + "verseNum": 22, + "text": "Where there|strong=\"H7230\"* is|strong=\"H7230\"* no|strong=\"H6965\"* counsel|strong=\"H3289\"*, plans|strong=\"H4284\"* fail|strong=\"H6565\"*;" + }, + { + "verseNum": 23, + "text": "Joy|strong=\"H8057\"* comes to|strong=\"H6256\"* a|strong=\"H3068\"* man|strong=\"H2896\"* with|strong=\"H1697\"* the|strong=\"H1697\"* reply|strong=\"H1697\"* of|strong=\"H1697\"* his|strong=\"H6310\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H5493\"* path of|strong=\"H4616\"* life|strong=\"H2416\"* leads|strong=\"H2416\"* upward|strong=\"H4605\"* for|strong=\"H4616\"* the|strong=\"H5493\"* wise|strong=\"H7919\"*," + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* uproot the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H3068\"* proud|strong=\"H1343\"*," + }, + { + "verseNum": 26, + "text": "Yahweh|strong=\"H3068\"* detests the|strong=\"H3068\"* thoughts|strong=\"H4284\"* of|strong=\"H3068\"* the|strong=\"H3068\"* wicked|strong=\"H7451\"*," + }, + { + "verseNum": 27, + "text": "He|strong=\"H1004\"* who|strong=\"H8130\"* is|strong=\"H1004\"* greedy|strong=\"H1214\"* for|strong=\"H1004\"* gain|strong=\"H1215\"* troubles|strong=\"H5916\"* his|strong=\"H8130\"* own house|strong=\"H1004\"*," + }, + { + "verseNum": 28, + "text": "The|strong=\"H6030\"* heart|strong=\"H3820\"* of|strong=\"H6310\"* the|strong=\"H6030\"* righteous|strong=\"H6662\"* weighs answers|strong=\"H6030\"*," + }, + { + "verseNum": 29, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* far|strong=\"H7350\"* from|strong=\"H8085\"* the|strong=\"H8085\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 30, + "text": "The|strong=\"H5869\"* light|strong=\"H3974\"* of|strong=\"H5869\"* the|strong=\"H5869\"* eyes|strong=\"H5869\"* rejoices|strong=\"H8055\"* the|strong=\"H5869\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H8085\"* ear|strong=\"H8085\"* that|strong=\"H8085\"* listens|strong=\"H8085\"* to|strong=\"H8085\"* reproof|strong=\"H8433\"* lives|strong=\"H2416\"*," + }, + { + "verseNum": 32, + "text": "He|strong=\"H5315\"* who|strong=\"H5315\"* refuses correction|strong=\"H4148\"* despises|strong=\"H3988\"* his|strong=\"H8085\"* own|strong=\"H5315\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 33, + "text": "The|strong=\"H6440\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* teaches wisdom|strong=\"H2451\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* plans|strong=\"H4633\"* of|strong=\"H3068\"* the|strong=\"H3068\"* heart|strong=\"H3820\"* belong to|strong=\"H3068\"* man|strong=\"H3820\"*," + }, + { + "verseNum": 2, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* ways|strong=\"H1870\"* of|strong=\"H3068\"* a|strong=\"H3068\"* man|strong=\"H3605\"* are|strong=\"H5869\"* clean|strong=\"H2134\"* in|strong=\"H3068\"* his|strong=\"H3605\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 3, + "text": "Commit|strong=\"H1556\"* your|strong=\"H3068\"* deeds|strong=\"H4639\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H6466\"* everything|strong=\"H3605\"* for|strong=\"H3068\"* its|strong=\"H3605\"* own end—" + }, + { + "verseNum": 5, + "text": "Everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3068\"* proud|strong=\"H1362\"* in|strong=\"H3068\"* heart|strong=\"H3820\"* is|strong=\"H3068\"* an|strong=\"H3068\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 6, + "text": "By|strong=\"H3068\"* mercy|strong=\"H2617\"* and|strong=\"H3068\"* truth iniquity|strong=\"H5771\"* is|strong=\"H3068\"* atoned|strong=\"H3722\"* for|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H3068\"* a|strong=\"H3068\"* man’s ways|strong=\"H1870\"* please|strong=\"H7521\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 8, + "text": "Better|strong=\"H2896\"* is|strong=\"H2896\"* a|strong=\"H3068\"* little|strong=\"H4592\"* with|strong=\"H4941\"* righteousness|strong=\"H6666\"*," + }, + { + "verseNum": 9, + "text": "A|strong=\"H3068\"* man|strong=\"H3820\"*’s heart|strong=\"H3820\"* plans|strong=\"H2803\"* his|strong=\"H3068\"* course|strong=\"H1870\"*," + }, + { + "verseNum": 10, + "text": "Inspired judgments|strong=\"H4941\"* are|strong=\"H8193\"* on|strong=\"H5921\"* the|strong=\"H5921\"* lips|strong=\"H8193\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 11, + "text": "Honest|strong=\"H4941\"* balances|strong=\"H3976\"* and|strong=\"H3068\"* scales|strong=\"H3976\"* are|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s;" + }, + { + "verseNum": 12, + "text": "It|strong=\"H3588\"* is|strong=\"H4428\"* an|strong=\"H6213\"* abomination|strong=\"H8441\"* for|strong=\"H3588\"* kings|strong=\"H4428\"* to|strong=\"H6213\"* do|strong=\"H6213\"* wrong," + }, + { + "verseNum": 13, + "text": "Righteous|strong=\"H6664\"* lips|strong=\"H8193\"* are|strong=\"H8193\"* the|strong=\"H1696\"* delight|strong=\"H7522\"* of|strong=\"H4428\"* kings|strong=\"H4428\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H4194\"* king|strong=\"H4428\"*’s wrath|strong=\"H2534\"* is|strong=\"H4428\"* a|strong=\"H3068\"* messenger|strong=\"H4397\"* of|strong=\"H4428\"* death|strong=\"H4194\"*," + }, + { + "verseNum": 15, + "text": "In|strong=\"H4428\"* the|strong=\"H6440\"* light of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s face|strong=\"H6440\"* is|strong=\"H4428\"* life|strong=\"H2416\"*." + }, + { + "verseNum": 16, + "text": "How|strong=\"H4100\"* much|strong=\"H4100\"* better|strong=\"H2896\"* it|strong=\"H2896\"* is|strong=\"H4100\"* to|strong=\"H2896\"* get|strong=\"H7069\"* wisdom|strong=\"H2451\"* than|strong=\"H2896\"* gold|strong=\"H2742\"*!" + }, + { + "verseNum": 17, + "text": "The|strong=\"H8104\"* highway|strong=\"H4546\"* of|strong=\"H1870\"* the|strong=\"H8104\"* upright|strong=\"H3477\"* is|strong=\"H5315\"* to|strong=\"H8104\"* depart|strong=\"H5493\"* from|strong=\"H5493\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 18, + "text": "Pride|strong=\"H1347\"* goes|strong=\"H6440\"* before|strong=\"H6440\"* destruction|strong=\"H7667\"*," + }, + { + "verseNum": 19, + "text": "It|strong=\"H7307\"* is|strong=\"H2896\"* better|strong=\"H2896\"* to|strong=\"H2896\"* be|strong=\"H7307\"* of|strong=\"H7307\"* a|strong=\"H3068\"* lowly|strong=\"H8217\"* spirit|strong=\"H7307\"* with|strong=\"H6041\"* the|strong=\"H2505\"* poor|strong=\"H6041\"*," + }, + { + "verseNum": 20, + "text": "He|strong=\"H3068\"* who|strong=\"H3068\"* heeds the|strong=\"H5921\"* Word|strong=\"H1697\"* finds|strong=\"H4672\"* prosperity|strong=\"H2896\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H7121\"* wise|strong=\"H2450\"* in|strong=\"H7121\"* heart|strong=\"H3820\"* shall|strong=\"H3820\"* be|strong=\"H3820\"* called|strong=\"H7121\"* prudent." + }, + { + "verseNum": 22, + "text": "Understanding|strong=\"H7922\"* is|strong=\"H1167\"* a|strong=\"H3068\"* fountain|strong=\"H4726\"* of|strong=\"H1167\"* life|strong=\"H2416\"* to|strong=\"H2416\"* one|strong=\"H2416\"* who|strong=\"H1167\"* has|strong=\"H1167\"* it," + }, + { + "verseNum": 23, + "text": "The|strong=\"H5921\"* heart|strong=\"H3820\"* of|strong=\"H6310\"* the|strong=\"H5921\"* wise|strong=\"H2450\"* instructs|strong=\"H7919\"* his|strong=\"H5921\"* mouth|strong=\"H6310\"*," + }, + { + "verseNum": 24, + "text": "Pleasant|strong=\"H5278\"* words are|strong=\"H6106\"* a|strong=\"H3068\"* honeycomb|strong=\"H6688\"*," + }, + { + "verseNum": 25, + "text": "There|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* way|strong=\"H1870\"* which|strong=\"H3426\"* seems right|strong=\"H3477\"* to|strong=\"H6440\"* a|strong=\"H3068\"* man|strong=\"H6440\"*," + }, + { + "verseNum": 26, + "text": "The|strong=\"H5921\"* appetite|strong=\"H5315\"* of|strong=\"H6310\"* the|strong=\"H5921\"* laboring|strong=\"H6001\"* man|strong=\"H5315\"* labors|strong=\"H6001\"* for|strong=\"H3588\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 27, + "text": "A|strong=\"H3068\"* worthless|strong=\"H1100\"* man|strong=\"H7451\"* devises mischief|strong=\"H7451\"*." + }, + { + "verseNum": 28, + "text": "A|strong=\"H3068\"* perverse|strong=\"H8419\"* man stirs up|strong=\"H7971\"* strife|strong=\"H4066\"*." + }, + { + "verseNum": 29, + "text": "A|strong=\"H3068\"* man|strong=\"H2896\"* of|strong=\"H1870\"* violence|strong=\"H2555\"* entices|strong=\"H6601\"* his|strong=\"H3808\"* neighbor|strong=\"H7453\"*," + }, + { + "verseNum": 30, + "text": "One who winks|strong=\"H7169\"* his|strong=\"H2803\"* eyes|strong=\"H5869\"* to|strong=\"H2803\"* plot|strong=\"H2803\"* perversities," + }, + { + "verseNum": 31, + "text": "Gray|strong=\"H7872\"* hair|strong=\"H7872\"* is|strong=\"H1870\"* a|strong=\"H3068\"* crown|strong=\"H5850\"* of|strong=\"H1870\"* glory|strong=\"H8597\"*." + }, + { + "verseNum": 32, + "text": "One|strong=\"H1368\"* who|strong=\"H1368\"* is|strong=\"H2896\"* slow to|strong=\"H5892\"* anger|strong=\"H7307\"* is|strong=\"H2896\"* better|strong=\"H2896\"* than|strong=\"H2896\"* the|strong=\"H3920\"* mighty|strong=\"H1368\"*;" + }, + { + "verseNum": 33, + "text": "The|strong=\"H3605\"* lot|strong=\"H1486\"* is|strong=\"H3068\"* cast|strong=\"H2904\"* into|strong=\"H4941\"* the|strong=\"H3605\"* lap|strong=\"H2436\"*," + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Better|strong=\"H2896\"* is|strong=\"H2896\"* a|strong=\"H3068\"* dry|strong=\"H2720\"* morsel|strong=\"H6595\"* with|strong=\"H1004\"* quietness|strong=\"H7962\"*," + }, + { + "verseNum": 2, + "text": "A|strong=\"H3068\"* servant|strong=\"H5650\"* who|strong=\"H1121\"* deals wisely|strong=\"H7919\"* will|strong=\"H5650\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* a|strong=\"H3068\"* son|strong=\"H1121\"* who|strong=\"H1121\"* causes shame," + }, + { + "verseNum": 3, + "text": "The|strong=\"H3068\"* refining|strong=\"H4715\"* pot|strong=\"H4715\"* is|strong=\"H3068\"* for|strong=\"H3068\"* silver|strong=\"H3701\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* furnace|strong=\"H3564\"* for|strong=\"H3068\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 4, + "text": "An|strong=\"H5921\"* evildoer|strong=\"H7489\"* heeds wicked|strong=\"H7489\"* lips|strong=\"H8193\"*." + }, + { + "verseNum": 5, + "text": "Whoever mocks|strong=\"H3932\"* the|strong=\"H6213\"* poor|strong=\"H7326\"* reproaches|strong=\"H2778\"* his|strong=\"H6213\"* Maker|strong=\"H6213\"*." + }, + { + "verseNum": 6, + "text": "Children|strong=\"H1121\"*’s children|strong=\"H1121\"* are|strong=\"H1121\"* the|strong=\"H1121\"* crown|strong=\"H5850\"* of|strong=\"H1121\"* old|strong=\"H1121\"* men|strong=\"H1121\"*;" + }, + { + "verseNum": 7, + "text": "Excellent|strong=\"H3499\"* speech|strong=\"H8193\"* isn’t fitting|strong=\"H5000\"* for|strong=\"H3588\"* a|strong=\"H3068\"* fool|strong=\"H5036\"*," + }, + { + "verseNum": 8, + "text": "A|strong=\"H3068\"* bribe|strong=\"H7810\"* is|strong=\"H3605\"* a|strong=\"H3068\"* precious|strong=\"H2580\"* stone in|strong=\"H7919\"* the|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* him|strong=\"H3605\"* who|strong=\"H3605\"* gives|strong=\"H7919\"* it|strong=\"H6437\"*;" + }, + { + "verseNum": 9, + "text": "He|strong=\"H1697\"* who covers|strong=\"H3680\"* an|strong=\"H1245\"* offense promotes love;" + }, + { + "verseNum": 10, + "text": "A|strong=\"H3068\"* rebuke|strong=\"H1606\"* enters deeper|strong=\"H5181\"* into one|strong=\"H3967\"* who|strong=\"H5221\"* has understanding" + }, + { + "verseNum": 11, + "text": "An|strong=\"H7971\"* evil|strong=\"H7451\"* man|strong=\"H7451\"* seeks|strong=\"H1245\"* only|strong=\"H1245\"* rebellion|strong=\"H4805\"*;" + }, + { + "verseNum": 12, + "text": "Let a|strong=\"H3068\"* bear|strong=\"H1677\"* robbed|strong=\"H7909\"* of her|strong=\"H7909\"* cubs|strong=\"H7909\"* meet|strong=\"H6298\"* a|strong=\"H3068\"* man|strong=\"H3684\"*," + }, + { + "verseNum": 13, + "text": "Whoever rewards evil|strong=\"H7451\"* for|strong=\"H8478\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 14, + "text": "The|strong=\"H6440\"* beginning|strong=\"H7225\"* of|strong=\"H6440\"* strife|strong=\"H7379\"* is|strong=\"H6440\"* like|strong=\"H6440\"* breaching a|strong=\"H3068\"* dam," + }, + { + "verseNum": 15, + "text": "He|strong=\"H3068\"* who|strong=\"H3068\"* justifies|strong=\"H6663\"* the|strong=\"H3068\"* wicked|strong=\"H7563\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* who|strong=\"H3068\"* condemns|strong=\"H7561\"* the|strong=\"H3068\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 16, + "text": "Why|strong=\"H4100\"* is|strong=\"H2088\"* there|strong=\"H2088\"* money in|strong=\"H3027\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* a|strong=\"H3068\"* fool|strong=\"H3684\"* to|strong=\"H3820\"* buy|strong=\"H7069\"* wisdom|strong=\"H2451\"*," + }, + { + "verseNum": 17, + "text": "A|strong=\"H3068\"* friend|strong=\"H7453\"* loves at|strong=\"H3205\"* all|strong=\"H3605\"* times|strong=\"H6256\"*;" + }, + { + "verseNum": 18, + "text": "A|strong=\"H3068\"* man|strong=\"H6440\"* void|strong=\"H2638\"* of|strong=\"H6440\"* understanding|strong=\"H3820\"* strikes|strong=\"H8628\"* hands|strong=\"H3709\"*," + }, + { + "verseNum": 19, + "text": "He who loves disobedience loves strife|strong=\"H4683\"*." + }, + { + "verseNum": 20, + "text": "One|strong=\"H3808\"* who|strong=\"H2896\"* has|strong=\"H3820\"* a|strong=\"H3068\"* perverse|strong=\"H6141\"* heart|strong=\"H3820\"* doesn’t find|strong=\"H4672\"* prosperity|strong=\"H2896\"*," + }, + { + "verseNum": 21, + "text": "He|strong=\"H3808\"* who|strong=\"H3205\"* becomes the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* a|strong=\"H3068\"* fool|strong=\"H3684\"* grieves." + }, + { + "verseNum": 22, + "text": "A|strong=\"H3068\"* cheerful|strong=\"H3190\"* heart|strong=\"H3820\"* makes|strong=\"H3190\"* good|strong=\"H3190\"* medicine|strong=\"H1456\"*," + }, + { + "verseNum": 23, + "text": "A|strong=\"H3068\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* receives|strong=\"H3947\"* a|strong=\"H3068\"* bribe|strong=\"H7810\"* in|strong=\"H3947\"* secret," + }, + { + "verseNum": 24, + "text": "Wisdom|strong=\"H2451\"* is|strong=\"H2451\"* before|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* one|strong=\"H7097\"* who|strong=\"H3684\"* has|strong=\"H5869\"* understanding|strong=\"H6440\"*," + }, + { + "verseNum": 25, + "text": "A|strong=\"H3068\"* foolish|strong=\"H3684\"* son|strong=\"H1121\"* brings|strong=\"H3205\"* grief|strong=\"H3708\"* to|strong=\"H3205\"* his|strong=\"H3205\"* father|strong=\"H3205\"*," + }, + { + "verseNum": 26, + "text": "Also|strong=\"H1571\"* to|strong=\"H5921\"* punish|strong=\"H6064\"* the|strong=\"H5921\"* righteous|strong=\"H6662\"* is|strong=\"H1571\"* not|strong=\"H3808\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 27, + "text": "He|strong=\"H8394\"* who|strong=\"H3045\"* spares his|strong=\"H3045\"* words has|strong=\"H7307\"* knowledge|strong=\"H1847\"*." + }, + { + "verseNum": 28, + "text": "Even|strong=\"H1571\"* a|strong=\"H3068\"* fool, when|strong=\"H1571\"* he|strong=\"H2803\"* keeps|strong=\"H2790\"* silent|strong=\"H2790\"*, is|strong=\"H1571\"* counted|strong=\"H2803\"* wise|strong=\"H2450\"*." + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* man|strong=\"H3605\"* who|strong=\"H3605\"* isolates himself|strong=\"H6504\"* pursues selfishness," + }, + { + "verseNum": 2, + "text": "A|strong=\"H3068\"* fool|strong=\"H3684\"* has|strong=\"H3820\"* no|strong=\"H3808\"* delight|strong=\"H2654\"* in|strong=\"H2654\"* understanding|strong=\"H8394\"*," + }, + { + "verseNum": 3, + "text": "When|strong=\"H1571\"* wickedness comes|strong=\"H5973\"*, contempt|strong=\"H2781\"* also|strong=\"H1571\"* comes|strong=\"H5973\"*," + }, + { + "verseNum": 4, + "text": "The|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H1697\"* a|strong=\"H3068\"* man|strong=\"H2451\"*’s mouth|strong=\"H6310\"* are|strong=\"H1697\"* like|strong=\"H1697\"* deep|strong=\"H6013\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 5, + "text": "To|strong=\"H6440\"* be|strong=\"H3808\"* partial|strong=\"H5375\"* to|strong=\"H6440\"* the|strong=\"H6440\"* faces|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* wicked|strong=\"H7563\"* is|strong=\"H7563\"* not|strong=\"H3808\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 6, + "text": "A|strong=\"H3068\"* fool|strong=\"H3684\"*’s lips|strong=\"H8193\"* come into strife|strong=\"H7379\"*," + }, + { + "verseNum": 7, + "text": "A|strong=\"H3068\"* fool|strong=\"H3684\"*’s mouth|strong=\"H6310\"* is|strong=\"H5315\"* his|strong=\"H6310\"* destruction|strong=\"H4288\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H1697\"* a|strong=\"H3068\"* gossip|strong=\"H5372\"* are|strong=\"H1992\"* like|strong=\"H3381\"* dainty|strong=\"H3859\"* morsels|strong=\"H3859\"*:" + }, + { + "verseNum": 9, + "text": "One|strong=\"H1931\"* who|strong=\"H1931\"* is|strong=\"H1931\"* slack|strong=\"H7503\"* in|strong=\"H1571\"* his|strong=\"H7843\"* work|strong=\"H4399\"*" + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"* is|strong=\"H3068\"* a|strong=\"H3068\"* strong|strong=\"H5797\"* tower|strong=\"H4026\"*:" + }, + { + "verseNum": 11, + "text": "The|strong=\"H7682\"* rich|strong=\"H6223\"* man|strong=\"H6223\"*’s wealth|strong=\"H1952\"* is his|strong=\"H5797\"* strong|strong=\"H5797\"* city|strong=\"H7151\"*," + }, + { + "verseNum": 12, + "text": "Before|strong=\"H6440\"* destruction|strong=\"H7667\"* the|strong=\"H6440\"* heart|strong=\"H3820\"* of|strong=\"H6440\"* man|strong=\"H6440\"* is|strong=\"H3820\"* proud|strong=\"H1361\"*," + }, + { + "verseNum": 13, + "text": "He|strong=\"H1931\"* who|strong=\"H1931\"* answers|strong=\"H7725\"* before|strong=\"H2962\"* he|strong=\"H1931\"* hears|strong=\"H8085\"*," + }, + { + "verseNum": 14, + "text": "A|strong=\"H3068\"* man|strong=\"H5375\"*’s spirit|strong=\"H7307\"* will|strong=\"H4310\"* sustain|strong=\"H3557\"* him|strong=\"H5375\"* in|strong=\"H7307\"* sickness|strong=\"H4245\"*," + }, + { + "verseNum": 15, + "text": "The|strong=\"H1245\"* heart|strong=\"H3820\"* of|strong=\"H3820\"* the|strong=\"H1245\"* discerning gets|strong=\"H7069\"* knowledge|strong=\"H1847\"*." + }, + { + "verseNum": 16, + "text": "A|strong=\"H3068\"* man|strong=\"H1419\"*’s gift|strong=\"H4976\"* makes|strong=\"H6440\"* room|strong=\"H7337\"* for|strong=\"H6440\"* him|strong=\"H6440\"*," + }, + { + "verseNum": 17, + "text": "He who|strong=\"H6662\"* pleads|strong=\"H7453\"* his|strong=\"H7453\"* cause|strong=\"H7379\"* first|strong=\"H7223\"* seems|strong=\"H6662\"* right|strong=\"H6662\"*—" + }, + { + "verseNum": 18, + "text": "The|strong=\"H6504\"* lot|strong=\"H1486\"* settles disputes|strong=\"H4079\"*," + }, + { + "verseNum": 19, + "text": "A|strong=\"H3068\"* brother offended|strong=\"H6586\"* is|strong=\"H4066\"* more difficult than a|strong=\"H3068\"* fortified city|strong=\"H7151\"*." + }, + { + "verseNum": 20, + "text": "A|strong=\"H3068\"* man’s stomach is|strong=\"H6310\"* filled|strong=\"H7646\"* with|strong=\"H7646\"* the|strong=\"H7646\"* fruit|strong=\"H6529\"* of|strong=\"H6310\"* his|strong=\"H6310\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 21, + "text": "Death|strong=\"H4194\"* and|strong=\"H3027\"* life|strong=\"H2416\"* are|strong=\"H3027\"* in|strong=\"H3027\"* the|strong=\"H3027\"* power|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3027\"* tongue|strong=\"H3956\"*;" + }, + { + "verseNum": 22, + "text": "Whoever finds|strong=\"H4672\"* a|strong=\"H3068\"* wife finds|strong=\"H4672\"* a|strong=\"H3068\"* good|strong=\"H2896\"* thing|strong=\"H2896\"*," + }, + { + "verseNum": 23, + "text": "The|strong=\"H1696\"* poor|strong=\"H7326\"* plead for|strong=\"H6030\"* mercy," + }, + { + "verseNum": 24, + "text": "A|strong=\"H3068\"* man of|strong=\"H7453\"* many companions|strong=\"H7453\"* may|strong=\"H3426\"* be|strong=\"H3426\"* ruined," + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Better|strong=\"H2896\"* is|strong=\"H1931\"* the|strong=\"H1980\"* poor|strong=\"H7326\"* who|strong=\"H1931\"* walks|strong=\"H1980\"* in|strong=\"H1980\"* his|strong=\"H1980\"* integrity|strong=\"H8537\"*" + }, + { + "verseNum": 2, + "text": "It|strong=\"H3808\"* isn’t good|strong=\"H2896\"* to|strong=\"H5315\"* have|strong=\"H1571\"* zeal without|strong=\"H3808\"* knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* foolishness of|strong=\"H3068\"* man|strong=\"H3820\"* subverts|strong=\"H5557\"* his|strong=\"H3068\"* way|strong=\"H1870\"*;" + }, + { + "verseNum": 4, + "text": "Wealth|strong=\"H1952\"* adds|strong=\"H3254\"* many|strong=\"H7227\"* friends|strong=\"H7453\"*," + }, + { + "verseNum": 5, + "text": "A|strong=\"H3068\"* false|strong=\"H8267\"* witness|strong=\"H5707\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* unpunished|strong=\"H5352\"*." + }, + { + "verseNum": 6, + "text": "Many|strong=\"H7227\"* will|strong=\"H7227\"* entreat|strong=\"H2470\"* the|strong=\"H3605\"* favor|strong=\"H6440\"* of|strong=\"H6440\"* a|strong=\"H3068\"* ruler," + }, + { + "verseNum": 7, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* relatives of|strong=\"H4480\"* the|strong=\"H3605\"* poor|strong=\"H7326\"* shun|strong=\"H7368\"* him|strong=\"H8130\"*;" + }, + { + "verseNum": 8, + "text": "He|strong=\"H8394\"* who|strong=\"H5315\"* gets|strong=\"H7069\"* wisdom|strong=\"H3820\"* loves his|strong=\"H8104\"* own|strong=\"H5315\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 9, + "text": "A|strong=\"H3068\"* false|strong=\"H8267\"* witness|strong=\"H5707\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* unpunished|strong=\"H5352\"*." + }, + { + "verseNum": 10, + "text": "Delicate|strong=\"H8588\"* living is|strong=\"H5650\"* not|strong=\"H3808\"* appropriate|strong=\"H5000\"* for|strong=\"H3588\"* a|strong=\"H3068\"* fool|strong=\"H3684\"*," + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* discretion|strong=\"H7922\"* of|strong=\"H5921\"* a|strong=\"H3068\"* man|strong=\"H5674\"* makes him|strong=\"H5921\"* slow to|strong=\"H5921\"* anger|strong=\"H5674\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"*’s wrath|strong=\"H2197\"* is|strong=\"H4428\"* like|strong=\"H5921\"* the|strong=\"H5921\"* roaring|strong=\"H5099\"* of|strong=\"H4428\"* a|strong=\"H3068\"* lion|strong=\"H3715\"*," + }, + { + "verseNum": 13, + "text": "A|strong=\"H3068\"* foolish|strong=\"H3684\"* son|strong=\"H1121\"* is|strong=\"H1121\"* the|strong=\"H1121\"* calamity|strong=\"H1942\"* of|strong=\"H1121\"* his|strong=\"H1121\"* father|strong=\"H1121\"*." + }, + { + "verseNum": 14, + "text": "House|strong=\"H1004\"* and|strong=\"H3068\"* riches|strong=\"H1952\"* are|strong=\"H3068\"* an|strong=\"H3068\"* inheritance|strong=\"H5159\"* from|strong=\"H3068\"* fathers," + }, + { + "verseNum": 15, + "text": "Slothfulness|strong=\"H6103\"* casts|strong=\"H5307\"* into|strong=\"H5307\"* a|strong=\"H3068\"* deep|strong=\"H8639\"* sleep|strong=\"H8639\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H5315\"* who|strong=\"H5315\"* keeps|strong=\"H8104\"* the|strong=\"H8104\"* commandment|strong=\"H4687\"* keeps|strong=\"H8104\"* his|strong=\"H8104\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 17, + "text": "He|strong=\"H3068\"* who|strong=\"H3068\"* has|strong=\"H3068\"* pity|strong=\"H2603\"* on|strong=\"H3068\"* the|strong=\"H3068\"* poor|strong=\"H1800\"* lends|strong=\"H3867\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 18, + "text": "Discipline|strong=\"H3256\"* your|strong=\"H5375\"* son|strong=\"H1121\"*, for|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3426\"* hope|strong=\"H8615\"*;" + }, + { + "verseNum": 19, + "text": "A|strong=\"H3068\"* hot-tempered|strong=\"H2534\"* man|strong=\"H5375\"* must|strong=\"H5375\"* pay the|strong=\"H3588\"* penalty|strong=\"H6066\"*," + }, + { + "verseNum": 20, + "text": "Listen|strong=\"H8085\"* to|strong=\"H8085\"* counsel|strong=\"H6098\"* and|strong=\"H8085\"* receive|strong=\"H6901\"* instruction|strong=\"H4148\"*," + }, + { + "verseNum": 21, + "text": "There|strong=\"H3068\"* are|strong=\"H3068\"* many|strong=\"H7227\"* plans|strong=\"H4284\"* in|strong=\"H3068\"* a|strong=\"H3068\"* man|strong=\"H3820\"*’s heart|strong=\"H3820\"*," + }, + { + "verseNum": 22, + "text": "That|strong=\"H7326\"* which|strong=\"H2617\"* makes a|strong=\"H3068\"* man|strong=\"H7326\"* to|strong=\"H2896\"* be|strong=\"H2896\"* desired|strong=\"H8378\"* is|strong=\"H2617\"* his|strong=\"H2896\"* kindness|strong=\"H2617\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* leads|strong=\"H2416\"* to|strong=\"H3068\"* life|strong=\"H2416\"*, then|strong=\"H3068\"* contentment;" + }, + { + "verseNum": 24, + "text": "The|strong=\"H7725\"* sluggard|strong=\"H6102\"* buries|strong=\"H2934\"* his|strong=\"H7725\"* hand|strong=\"H3027\"* in|strong=\"H7725\"* the|strong=\"H7725\"* dish|strong=\"H6747\"*;" + }, + { + "verseNum": 25, + "text": "Flog|strong=\"H5221\"* a|strong=\"H3068\"* scoffer, and|strong=\"H1847\"* the|strong=\"H5221\"* simple|strong=\"H6612\"* will|strong=\"H6612\"* learn prudence;" + }, + { + "verseNum": 26, + "text": "He|strong=\"H1121\"* who|strong=\"H1121\"* robs his|strong=\"H1121\"* father|strong=\"H1121\"* and|strong=\"H1121\"* drives|strong=\"H1272\"* away|strong=\"H1272\"* his|strong=\"H1121\"* mother" + }, + { + "verseNum": 27, + "text": "If|strong=\"H1121\"* you|strong=\"H7686\"* stop|strong=\"H2308\"* listening|strong=\"H8085\"* to|strong=\"H8085\"* instruction|strong=\"H4148\"*, my|strong=\"H8085\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 28, + "text": "A|strong=\"H3068\"* corrupt witness|strong=\"H5707\"* mocks justice|strong=\"H4941\"*," + }, + { + "verseNum": 29, + "text": "Penalties are|strong=\"H8201\"* prepared|strong=\"H3559\"* for|strong=\"H3559\"* scoffers," + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Wine|strong=\"H3196\"* is|strong=\"H3605\"* a|strong=\"H3068\"* mocker|strong=\"H3887\"* and|strong=\"H3196\"* beer|strong=\"H7941\"* is|strong=\"H3605\"* a|strong=\"H3068\"* brawler|strong=\"H1993\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5674\"* terror of|strong=\"H4428\"* a|strong=\"H3068\"* king|strong=\"H4428\"* is|strong=\"H5315\"* like|strong=\"H5315\"* the|strong=\"H5674\"* roaring|strong=\"H5099\"* of|strong=\"H4428\"* a|strong=\"H3068\"* lion|strong=\"H3715\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H3605\"* is|strong=\"H3605\"* an honor|strong=\"H3519\"* for|strong=\"H3605\"* a|strong=\"H3068\"* man|strong=\"H3605\"* to|strong=\"H3519\"* keep aloof from|strong=\"H7674\"* strife|strong=\"H7379\"*," + }, + { + "verseNum": 4, + "text": "The|strong=\"H3808\"* sluggard|strong=\"H6102\"* will|strong=\"H3808\"* not|strong=\"H3808\"* plow|strong=\"H2790\"* by|strong=\"H3808\"* reason of|strong=\"H7592\"* the|strong=\"H3808\"* winter|strong=\"H2779\"*;" + }, + { + "verseNum": 5, + "text": "Counsel|strong=\"H6098\"* in|strong=\"H3820\"* the|strong=\"H3820\"* heart|strong=\"H3820\"* of|strong=\"H4325\"* man|strong=\"H3820\"* is|strong=\"H3820\"* like|strong=\"H3820\"* deep|strong=\"H6013\"* water|strong=\"H4325\"*," + }, + { + "verseNum": 6, + "text": "Many|strong=\"H7230\"* men|strong=\"H7121\"* claim to|strong=\"H7121\"* be|strong=\"H2617\"* men|strong=\"H7121\"* of|strong=\"H7230\"* unfailing love|strong=\"H2617\"*," + }, + { + "verseNum": 7, + "text": "A|strong=\"H3068\"* righteous|strong=\"H6662\"* man|strong=\"H6662\"* walks|strong=\"H1980\"* in|strong=\"H1980\"* integrity|strong=\"H8537\"*." + }, + { + "verseNum": 8, + "text": "A|strong=\"H3068\"* king|strong=\"H4428\"* who|strong=\"H3605\"* sits|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H3605\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* judgment|strong=\"H1779\"*" + }, + { + "verseNum": 9, + "text": "Who|strong=\"H4310\"* can|strong=\"H4310\"* say, “I|strong=\"H3820\"* have|strong=\"H2403\"* made my|strong=\"H2135\"* heart|strong=\"H3820\"* pure|strong=\"H2135\"*." + }, + { + "verseNum": 10, + "text": "Differing weights and|strong=\"H3068\"* differing measures," + }, + { + "verseNum": 11, + "text": "Even|strong=\"H1571\"* a|strong=\"H3068\"* child|strong=\"H5288\"* makes himself|strong=\"H5234\"* known|strong=\"H5234\"* by|strong=\"H1571\"* his|strong=\"H5234\"* doings|strong=\"H4611\"*," + }, + { + "verseNum": 12, + "text": "The|strong=\"H8085\"* hearing|strong=\"H8085\"* ear|strong=\"H8085\"*, and|strong=\"H3068\"* the|strong=\"H8085\"* seeing|strong=\"H7200\"* eye|strong=\"H5869\"*," + }, + { + "verseNum": 13, + "text": "Don’t love sleep|strong=\"H8142\"*, lest|strong=\"H6435\"* you|strong=\"H6435\"* come|strong=\"H3423\"* to|strong=\"H5869\"* poverty|strong=\"H3423\"*." + }, + { + "verseNum": 14, + "text": "“It|strong=\"H7069\"*’s no good, it|strong=\"H7069\"*’s no good,” says the|strong=\"H1984\"* buyer|strong=\"H7069\"*;" + }, + { + "verseNum": 15, + "text": "There|strong=\"H3426\"* is|strong=\"H3426\"* gold|strong=\"H2091\"* and|strong=\"H2091\"* abundance|strong=\"H7230\"* of|strong=\"H3627\"* rubies|strong=\"H6443\"*," + }, + { + "verseNum": 16, + "text": "Take|strong=\"H3947\"* the|strong=\"H3588\"* garment of|strong=\"H3947\"* one|strong=\"H3588\"* who|strong=\"H2114\"* puts|strong=\"H2114\"* up|strong=\"H3947\"* collateral|strong=\"H6148\"* for|strong=\"H3588\"* a|strong=\"H3068\"* stranger|strong=\"H2114\"*;" + }, + { + "verseNum": 17, + "text": "Fraudulent food|strong=\"H3899\"* is|strong=\"H6310\"* sweet|strong=\"H6156\"* to|strong=\"H6310\"* a|strong=\"H3068\"* man," + }, + { + "verseNum": 18, + "text": "Plans|strong=\"H4284\"* are|strong=\"H4284\"* established|strong=\"H3559\"* by|strong=\"H3559\"* advice|strong=\"H6098\"*;" + }, + { + "verseNum": 19, + "text": "He|strong=\"H3808\"* who|strong=\"H3808\"* goes|strong=\"H1980\"* about|strong=\"H1980\"* as|strong=\"H1980\"* a|strong=\"H3068\"* tale-bearer reveals|strong=\"H1540\"* secrets|strong=\"H5475\"*;" + }, + { + "verseNum": 20, + "text": "Whoever curses|strong=\"H7043\"* his|strong=\"H7043\"* father or|strong=\"H2822\"* his|strong=\"H7043\"* mother," + }, + { + "verseNum": 21, + "text": "An|strong=\"H1288\"* inheritance|strong=\"H5159\"* quickly gained at|strong=\"H3808\"* the|strong=\"H1288\"* beginning|strong=\"H7223\"*" + }, + { + "verseNum": 22, + "text": "Don’t say, “I|strong=\"H3068\"* will|strong=\"H3068\"* pay|strong=\"H7999\"* back|strong=\"H7999\"* evil|strong=\"H7451\"*.”" + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* detests differing|strong=\"H2896\"* weights," + }, + { + "verseNum": 24, + "text": "A|strong=\"H3068\"* man|strong=\"H1397\"*’s steps|strong=\"H4703\"* are|strong=\"H4100\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 25, + "text": "It is a|strong=\"H3068\"* snare|strong=\"H4170\"* to|strong=\"H6944\"* a|strong=\"H3068\"* man to|strong=\"H6944\"* make|strong=\"H1239\"* a|strong=\"H3068\"* rash dedication," + }, + { + "verseNum": 26, + "text": "A|strong=\"H3068\"* wise|strong=\"H2450\"* king|strong=\"H4428\"* winnows|strong=\"H2219\"* out|strong=\"H5921\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 27, + "text": "The|strong=\"H3605\"* spirit|strong=\"H5397\"* of|strong=\"H3068\"* man|strong=\"H3605\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s lamp|strong=\"H5216\"*," + }, + { + "verseNum": 28, + "text": "Love|strong=\"H2617\"* and|strong=\"H4428\"* faithfulness|strong=\"H2617\"* keep|strong=\"H5341\"* the|strong=\"H5341\"* king|strong=\"H4428\"* safe." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3581\"* glory|strong=\"H8597\"* of|strong=\"H2205\"* young men|strong=\"H2205\"* is|strong=\"H3581\"* their strength|strong=\"H3581\"*." + }, + { + "verseNum": 30, + "text": "Wounding|strong=\"H6482\"* blows|strong=\"H4347\"* cleanse|strong=\"H2315\"* away|strong=\"H4838\"* evil|strong=\"H7451\"*," + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"*’s heart|strong=\"H3820\"* is|strong=\"H3068\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* like|strong=\"H3820\"* the|strong=\"H3605\"* watercourses." + }, + { + "verseNum": 2, + "text": "Every|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H3068\"* a|strong=\"H3068\"* man|strong=\"H3605\"* is|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* his|strong=\"H3605\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 3, + "text": "To|strong=\"H3068\"* do|strong=\"H6213\"* righteousness|strong=\"H6666\"* and|strong=\"H3068\"* justice|strong=\"H4941\"*" + }, + { + "verseNum": 4, + "text": "A|strong=\"H3068\"* high|strong=\"H7312\"* look|strong=\"H5869\"* and|strong=\"H5869\"* a|strong=\"H3068\"* proud|strong=\"H7342\"* heart|strong=\"H3820\"*," + }, + { + "verseNum": 5, + "text": "The|strong=\"H3605\"* plans|strong=\"H4284\"* of|strong=\"H3605\"* the|strong=\"H3605\"* diligent|strong=\"H2742\"* surely lead to|strong=\"H3605\"* profit|strong=\"H4195\"*;" + }, + { + "verseNum": 6, + "text": "Getting|strong=\"H6467\"* treasures by|strong=\"H6467\"* a|strong=\"H3068\"* lying|strong=\"H8267\"* tongue|strong=\"H3956\"*" + }, + { + "verseNum": 7, + "text": "The|strong=\"H3588\"* violence|strong=\"H7701\"* of|strong=\"H4941\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"* will|strong=\"H7563\"* drive them|strong=\"H6213\"* away|strong=\"H1641\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H1870\"* guilty|strong=\"H2054\"* is|strong=\"H1870\"* devious," + }, + { + "verseNum": 9, + "text": "It|strong=\"H5921\"* is|strong=\"H2896\"* better|strong=\"H2896\"* to|strong=\"H5921\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* corner|strong=\"H6438\"* of|strong=\"H1004\"* the|strong=\"H5921\"* housetop|strong=\"H1406\"*" + }, + { + "verseNum": 10, + "text": "The|strong=\"H3808\"* soul|strong=\"H5315\"* of|strong=\"H5869\"* the|strong=\"H3808\"* wicked|strong=\"H7563\"* desires evil|strong=\"H7451\"*;" + }, + { + "verseNum": 11, + "text": "When|strong=\"H6064\"* the|strong=\"H3947\"* mocker|strong=\"H3887\"* is|strong=\"H1847\"* punished|strong=\"H6064\"*, the|strong=\"H3947\"* simple|strong=\"H6612\"* gains wisdom|strong=\"H7919\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1004\"* Righteous|strong=\"H6662\"* One|strong=\"H6662\"* considers|strong=\"H7919\"* the|strong=\"H1004\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H1004\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 13, + "text": "Whoever stops his|strong=\"H7121\"* ears at|strong=\"H3808\"* the|strong=\"H7121\"* cry|strong=\"H7121\"* of|strong=\"H2201\"* the|strong=\"H7121\"* poor|strong=\"H1800\"*," + }, + { + "verseNum": 14, + "text": "A|strong=\"H3068\"* gift|strong=\"H4976\"* in|strong=\"H4976\"* secret|strong=\"H5643\"* pacifies anger|strong=\"H2534\"*," + }, + { + "verseNum": 15, + "text": "It|strong=\"H6213\"* is|strong=\"H6662\"* joy|strong=\"H8057\"* to|strong=\"H6213\"* the|strong=\"H6213\"* righteous|strong=\"H6662\"* to|strong=\"H6213\"* do|strong=\"H6213\"* justice|strong=\"H4941\"*;" + }, + { + "verseNum": 16, + "text": "The|strong=\"H1870\"* man|strong=\"H7919\"* who|strong=\"H7919\"* wanders|strong=\"H8582\"* out of|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1870\"* understanding|strong=\"H7919\"*" + }, + { + "verseNum": 17, + "text": "He|strong=\"H3808\"* who|strong=\"H3808\"* loves pleasure|strong=\"H8057\"* will|strong=\"H3808\"* be|strong=\"H3808\"* a|strong=\"H3068\"* poor|strong=\"H4270\"* man." + }, + { + "verseNum": 18, + "text": "The|strong=\"H8478\"* wicked|strong=\"H7563\"* is|strong=\"H7563\"* a|strong=\"H3068\"* ransom|strong=\"H3724\"* for|strong=\"H8478\"* the|strong=\"H8478\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 19, + "text": "It|strong=\"H2896\"* is|strong=\"H2896\"* better|strong=\"H2896\"* to|strong=\"H2896\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* desert|strong=\"H4057\"* land," + }, + { + "verseNum": 20, + "text": "There is|strong=\"H3684\"* precious|strong=\"H2530\"* treasure and|strong=\"H8081\"* oil|strong=\"H8081\"* in|strong=\"H2450\"* the|strong=\"H1104\"* dwelling|strong=\"H5116\"* of|strong=\"H8081\"* the|strong=\"H1104\"* wise|strong=\"H2450\"*," + }, + { + "verseNum": 21, + "text": "He|strong=\"H2416\"* who|strong=\"H4672\"* follows|strong=\"H7291\"* after|strong=\"H7291\"* righteousness|strong=\"H6666\"* and|strong=\"H2617\"* kindness|strong=\"H2617\"*" + }, + { + "verseNum": 22, + "text": "A|strong=\"H3068\"* wise|strong=\"H2450\"* man|strong=\"H1368\"* scales|strong=\"H5927\"* the|strong=\"H5927\"* city|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H5927\"* mighty|strong=\"H1368\"*," + }, + { + "verseNum": 23, + "text": "Whoever|strong=\"H8104\"* guards|strong=\"H8104\"* his|strong=\"H8104\"* mouth|strong=\"H6310\"* and|strong=\"H6310\"* his|strong=\"H8104\"* tongue|strong=\"H3956\"*" + }, + { + "verseNum": 24, + "text": "The|strong=\"H6213\"* proud|strong=\"H2086\"* and|strong=\"H6213\"* arrogant|strong=\"H2086\"* man—“Scoffer” is|strong=\"H8034\"* his|strong=\"H6213\"* name|strong=\"H8034\"*—" + }, + { + "verseNum": 25, + "text": "The|strong=\"H3588\"* desire|strong=\"H8378\"* of|strong=\"H3027\"* the|strong=\"H3588\"* sluggard|strong=\"H6102\"* kills|strong=\"H4191\"* him|strong=\"H3027\"*," + }, + { + "verseNum": 26, + "text": "There|strong=\"H3117\"* are|strong=\"H3117\"* those|strong=\"H3605\"* who|strong=\"H3605\"* covet greedily|strong=\"H8378\"* all|strong=\"H3605\"* day|strong=\"H3117\"* long|strong=\"H3117\"*;" + }, + { + "verseNum": 27, + "text": "The|strong=\"H3588\"* sacrifice|strong=\"H2077\"* of|strong=\"H2077\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"* is|strong=\"H7563\"* an|strong=\"H3588\"* abomination|strong=\"H8441\"*—" + }, + { + "verseNum": 28, + "text": "A|strong=\"H3068\"* false|strong=\"H3577\"* witness|strong=\"H5707\"* will|strong=\"H8085\"* perish." + }, + { + "verseNum": 29, + "text": "A|strong=\"H3068\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* hardens his|strong=\"H6440\"* face|strong=\"H6440\"*;" + }, + { + "verseNum": 30, + "text": "There|strong=\"H3068\"* is|strong=\"H3068\"* no wisdom|strong=\"H2451\"* nor|strong=\"H8394\"* understanding|strong=\"H8394\"*" + }, + { + "verseNum": 31, + "text": "The|strong=\"H3068\"* horse|strong=\"H5483\"* is|strong=\"H3068\"* prepared|strong=\"H3559\"* for|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* battle|strong=\"H4421\"*;" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* good|strong=\"H2896\"* name|strong=\"H8034\"* is|strong=\"H8034\"* more|strong=\"H7227\"* desirable than|strong=\"H2896\"* great|strong=\"H7227\"* riches|strong=\"H6239\"*," + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* rich|strong=\"H6223\"* and|strong=\"H3068\"* the|strong=\"H3605\"* poor|strong=\"H7326\"* have|strong=\"H3068\"* this|strong=\"H6213\"* in|strong=\"H3068\"* common|strong=\"H6298\"*:" + }, + { + "verseNum": 3, + "text": "A|strong=\"H3068\"* prudent|strong=\"H6175\"* man|strong=\"H6175\"* sees|strong=\"H7200\"* danger|strong=\"H7451\"* and|strong=\"H7200\"* hides|strong=\"H5641\"* himself;" + }, + { + "verseNum": 4, + "text": "The|strong=\"H3068\"* result of|strong=\"H3068\"* humility|strong=\"H6038\"* and|strong=\"H3068\"* the|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*" + }, + { + "verseNum": 5, + "text": "Thorns|strong=\"H6791\"* and|strong=\"H1870\"* snares|strong=\"H6341\"* are|strong=\"H1992\"* in|strong=\"H5315\"* the|strong=\"H8104\"* path|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H8104\"* wicked;" + }, + { + "verseNum": 6, + "text": "Train|strong=\"H2596\"* up|strong=\"H5921\"* a|strong=\"H3068\"* child|strong=\"H5288\"* in|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* he|strong=\"H3588\"* should|strong=\"H3588\"* go|strong=\"H5493\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H5650\"* rich|strong=\"H6223\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* the|strong=\"H5650\"* poor|strong=\"H7326\"*." + }, + { + "verseNum": 8, + "text": "He who sows|strong=\"H2232\"* wickedness|strong=\"H5766\"* reaps trouble," + }, + { + "verseNum": 9, + "text": "He|strong=\"H1931\"* who|strong=\"H1931\"* has|strong=\"H3588\"* a|strong=\"H3068\"* generous|strong=\"H2896\"* eye|strong=\"H5869\"* will|strong=\"H5869\"* be|strong=\"H1288\"* blessed|strong=\"H1288\"*," + }, + { + "verseNum": 10, + "text": "Drive|strong=\"H1644\"* out|strong=\"H3318\"* the|strong=\"H3318\"* mocker|strong=\"H3887\"*, and|strong=\"H3318\"* strife|strong=\"H4066\"* will|strong=\"H7673\"* go|strong=\"H3318\"* out|strong=\"H3318\"*;" + }, + { + "verseNum": 11, + "text": "He|strong=\"H4428\"* who|strong=\"H4428\"* loves purity|strong=\"H2889\"* of|strong=\"H4428\"* heart|strong=\"H3820\"* and|strong=\"H4428\"* speaks gracefully" + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"* watch|strong=\"H5341\"* over|strong=\"H3068\"* knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 13, + "text": "The|strong=\"H8432\"* sluggard|strong=\"H6102\"* says, “There|strong=\"H8432\"* is|strong=\"H6102\"* a|strong=\"H3068\"* lion outside|strong=\"H2351\"*!" + }, + { + "verseNum": 14, + "text": "The|strong=\"H3068\"* mouth|strong=\"H6310\"* of|strong=\"H3068\"* an|strong=\"H8033\"* adulteress|strong=\"H2114\"* is|strong=\"H3068\"* a|strong=\"H3068\"* deep|strong=\"H6013\"* pit|strong=\"H7745\"*." + }, + { + "verseNum": 15, + "text": "Folly is|strong=\"H3820\"* bound|strong=\"H7194\"* up|strong=\"H4480\"* in|strong=\"H3820\"* the|strong=\"H4480\"* heart|strong=\"H3820\"* of|strong=\"H7626\"* a|strong=\"H3068\"* child|strong=\"H5288\"*;" + }, + { + "verseNum": 16, + "text": "Whoever|strong=\"H4270\"* oppresses|strong=\"H6231\"* the|strong=\"H5414\"* poor|strong=\"H1800\"* for|strong=\"H5414\"* his|strong=\"H5414\"* own increase|strong=\"H7235\"* and|strong=\"H7235\"* whoever|strong=\"H4270\"* gives|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* rich|strong=\"H6223\"*," + }, + { + "verseNum": 17, + "text": "Turn|strong=\"H5186\"* your|strong=\"H5186\"* ear|strong=\"H8085\"*, and|strong=\"H8085\"* listen|strong=\"H8085\"* to|strong=\"H3820\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H8085\"* wise|strong=\"H2450\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* it|strong=\"H5921\"* is|strong=\"H8193\"* a|strong=\"H3068\"* pleasant|strong=\"H5273\"* thing|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* keep|strong=\"H8104\"* them|strong=\"H5921\"* within|strong=\"H5921\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 19, + "text": "I|strong=\"H3117\"* teach|strong=\"H3045\"* you|strong=\"H3117\"* today|strong=\"H3117\"*, even|strong=\"H3068\"* you|strong=\"H3117\"*," + }, + { + "verseNum": 20, + "text": "Haven’t I|strong=\"H3808\"* written|strong=\"H3789\"* to|strong=\"H3808\"* you|strong=\"H3808\"* thirty excellent|strong=\"H8032\"* things|strong=\"H3808\"*" + }, + { + "verseNum": 21, + "text": "To|strong=\"H7725\"* teach|strong=\"H3045\"* you|strong=\"H7971\"* truth|strong=\"H7189\"*, reliable words," + }, + { + "verseNum": 22, + "text": "Don’t exploit|strong=\"H1497\"* the|strong=\"H3588\"* poor|strong=\"H6041\"* because|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* poor|strong=\"H6041\"*;" + }, + { + "verseNum": 23, + "text": "for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* plead|strong=\"H7378\"* their|strong=\"H3068\"* case|strong=\"H7379\"*," + }, + { + "verseNum": 24, + "text": "Don’t befriend a|strong=\"H3068\"* hot-tempered|strong=\"H2534\"* man|strong=\"H1167\"*." + }, + { + "verseNum": 25, + "text": "lest|strong=\"H6435\"* you|strong=\"H3947\"* learn his|strong=\"H3947\"* ways" + }, + { + "verseNum": 26, + "text": "Don’t you|strong=\"H3709\"* be|strong=\"H1961\"* one|strong=\"H1961\"* of|strong=\"H3709\"* those|strong=\"H1961\"* who strike|strong=\"H8628\"* hands|strong=\"H3709\"*," + }, + { + "verseNum": 27, + "text": "If you|strong=\"H3947\"* don’t have|strong=\"H3947\"* means to|strong=\"H3947\"* pay|strong=\"H7999\"*," + }, + { + "verseNum": 28, + "text": "Don’t move|strong=\"H5253\"* the|strong=\"H6213\"* ancient|strong=\"H5769\"* boundary|strong=\"H1366\"* stone" + }, + { + "verseNum": 29, + "text": "Do you|strong=\"H6440\"* see|strong=\"H2372\"* a|strong=\"H3068\"* man|strong=\"H6440\"* skilled|strong=\"H4106\"* in|strong=\"H4428\"* his|strong=\"H6440\"* work|strong=\"H4399\"*?" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* sit|strong=\"H3427\"* to|strong=\"H6440\"* eat|strong=\"H3898\"* with|strong=\"H3427\"* a|strong=\"H3068\"* ruler|strong=\"H4910\"*," + }, + { + "verseNum": 2, + "text": "put|strong=\"H7760\"* a|strong=\"H3068\"* knife|strong=\"H7915\"* to|strong=\"H5315\"* your|strong=\"H7760\"* throat|strong=\"H3930\"*" + }, + { + "verseNum": 3, + "text": "Don’t be|strong=\"H3899\"* desirous of|strong=\"H3899\"* his|strong=\"H1931\"* dainties|strong=\"H4303\"*," + }, + { + "verseNum": 4, + "text": "Don’t weary|strong=\"H3021\"* yourself to|strong=\"H2308\"* be rich|strong=\"H6238\"*." + }, + { + "verseNum": 5, + "text": "Why|strong=\"H3588\"* do|strong=\"H6213\"* you|strong=\"H3588\"* set|strong=\"H6213\"* your|strong=\"H6213\"* eyes|strong=\"H5869\"* on|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H5869\"* is|strong=\"H5869\"* not|strong=\"H6213\"*?" + }, + { + "verseNum": 6, + "text": "Don’t eat|strong=\"H3898\"* the|strong=\"H5869\"* food|strong=\"H3899\"* of|strong=\"H5869\"* him|strong=\"H5869\"* who has|strong=\"H5869\"* a|strong=\"H3068\"* stingy eye|strong=\"H5869\"*," + }, + { + "verseNum": 7, + "text": "for|strong=\"H3588\"* as|strong=\"H3644\"* he|strong=\"H1931\"* thinks|strong=\"H8176\"* about the|strong=\"H3588\"* cost, so|strong=\"H3651\"* he|strong=\"H1931\"* is|strong=\"H1931\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H7843\"* will|strong=\"H1697\"* vomit|strong=\"H6958\"* up|strong=\"H6958\"* the|strong=\"H1697\"* morsel|strong=\"H6595\"* which|strong=\"H1697\"* you|strong=\"H7843\"* have|strong=\"H1697\"* eaten" + }, + { + "verseNum": 9, + "text": "Don’t speak|strong=\"H1696\"* in|strong=\"H1696\"* the|strong=\"H3588\"* ears of|strong=\"H1696\"* a|strong=\"H3068\"* fool|strong=\"H3684\"*," + }, + { + "verseNum": 10, + "text": "Don’t move|strong=\"H5253\"* the|strong=\"H7704\"* ancient|strong=\"H5769\"* boundary|strong=\"H1366\"* stone." + }, + { + "verseNum": 11, + "text": "for|strong=\"H3588\"* their|strong=\"H3588\"* Defender is|strong=\"H1931\"* strong|strong=\"H2389\"*." + }, + { + "verseNum": 12, + "text": "Apply your heart|strong=\"H3820\"* to|strong=\"H3820\"* instruction|strong=\"H4148\"*," + }, + { + "verseNum": 13, + "text": "Don’t withhold|strong=\"H4513\"* correction|strong=\"H4148\"* from|strong=\"H4513\"* a|strong=\"H3068\"* child|strong=\"H5288\"*." + }, + { + "verseNum": 14, + "text": "Punish|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H5315\"* the|strong=\"H5221\"* rod|strong=\"H7626\"*," + }, + { + "verseNum": 15, + "text": "My|strong=\"H1571\"* son|strong=\"H1121\"*, if|strong=\"H1121\"* your|strong=\"H1571\"* heart|strong=\"H3820\"* is|strong=\"H3820\"* wise|strong=\"H2449\"*," + }, + { + "verseNum": 16, + "text": "Yes, my|strong=\"H1696\"* heart|strong=\"H8193\"* will|strong=\"H8193\"* rejoice|strong=\"H5937\"*" + }, + { + "verseNum": 17, + "text": "Don’t let your|strong=\"H3068\"* heart|strong=\"H3820\"* envy|strong=\"H7065\"* sinners|strong=\"H2400\"*," + }, + { + "verseNum": 18, + "text": "Indeed|strong=\"H3588\"* surely|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* future hope|strong=\"H8615\"*," + }, + { + "verseNum": 19, + "text": "Listen|strong=\"H8085\"*, my|strong=\"H8085\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* be|strong=\"H1121\"* wise|strong=\"H2449\"*," + }, + { + "verseNum": 20, + "text": "Don’t be|strong=\"H1961\"* among ones drinking too|strong=\"H1961\"* much wine|strong=\"H3196\"*," + }, + { + "verseNum": 21, + "text": "for|strong=\"H3588\"* the|strong=\"H3588\"* drunkard|strong=\"H5433\"* and|strong=\"H3423\"* the|strong=\"H3588\"* glutton|strong=\"H2151\"* shall|strong=\"H5124\"* become|strong=\"H3423\"* poor|strong=\"H3423\"*;" + }, + { + "verseNum": 22, + "text": "Listen|strong=\"H8085\"* to|strong=\"H3205\"* your|strong=\"H8085\"* father|strong=\"H3205\"* who|strong=\"H2088\"* gave|strong=\"H3205\"* you|strong=\"H3588\"* life," + }, + { + "verseNum": 23, + "text": "Buy|strong=\"H7069\"* the|strong=\"H7069\"* truth, and|strong=\"H2451\"* don’t sell|strong=\"H4376\"* it|strong=\"H7069\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* the|strong=\"H3205\"* righteous|strong=\"H6662\"* has|strong=\"H3205\"* great joy|strong=\"H8055\"*." + }, + { + "verseNum": 25, + "text": "Let|strong=\"H8055\"* your|strong=\"H3205\"* father|strong=\"H3205\"* and|strong=\"H8055\"* your|strong=\"H3205\"* mother be glad|strong=\"H8055\"*!" + }, + { + "verseNum": 26, + "text": "My|strong=\"H5414\"* son|strong=\"H1121\"*, give|strong=\"H5414\"* me|strong=\"H5414\"* your|strong=\"H5414\"* heart|strong=\"H3820\"*;" + }, + { + "verseNum": 27, + "text": "For|strong=\"H3588\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"* is|strong=\"H3588\"* a|strong=\"H3068\"* deep|strong=\"H6013\"* pit|strong=\"H7745\"*;" + }, + { + "verseNum": 28, + "text": "Yes, she|strong=\"H1931\"* lies in|strong=\"H3254\"* wait like a|strong=\"H3068\"* robber|strong=\"H2863\"*," + }, + { + "verseNum": 29, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* woe?" + }, + { + "verseNum": 30, + "text": "Those|strong=\"H5921\"* who stay long|strong=\"H5921\"* at|strong=\"H5921\"* the|strong=\"H5921\"* wine|strong=\"H3196\"*;" + }, + { + "verseNum": 31, + "text": "Don’t look|strong=\"H7200\"* at|strong=\"H7200\"* the|strong=\"H7200\"* wine|strong=\"H3196\"* when|strong=\"H3588\"* it|strong=\"H5414\"* is|strong=\"H5869\"* red," + }, + { + "verseNum": 32, + "text": "In the|strong=\"H5391\"* end, it bites|strong=\"H5391\"* like a|strong=\"H3068\"* snake|strong=\"H5175\"*," + }, + { + "verseNum": 33, + "text": "Your|strong=\"H7200\"* eyes|strong=\"H5869\"* will|strong=\"H5869\"* see|strong=\"H7200\"* strange|strong=\"H2114\"* things|strong=\"H8419\"*," + }, + { + "verseNum": 34, + "text": "Yes, you|strong=\"H3820\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* he|strong=\"H3220\"* who lies|strong=\"H7901\"* down|strong=\"H7901\"* in|strong=\"H7901\"* the|strong=\"H1961\"* middle|strong=\"H3820\"* of|strong=\"H7218\"* the|strong=\"H1961\"* sea|strong=\"H3220\"*," + }, + { + "verseNum": 35, + "text": "“They|strong=\"H3045\"* hit|strong=\"H5221\"* me|strong=\"H5221\"*, and|strong=\"H3045\"* I|strong=\"H3045\"* was|strong=\"H5221\"* not|strong=\"H3045\"* hurt!" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Don’t be|strong=\"H1961\"* envious|strong=\"H7065\"* of|strong=\"H7451\"* evil|strong=\"H7451\"* men|strong=\"H7451\"*," + }, + { + "verseNum": 2, + "text": "for|strong=\"H3588\"* their|strong=\"H3588\"* hearts|strong=\"H3820\"* plot violence|strong=\"H7701\"*" + }, + { + "verseNum": 3, + "text": "Through wisdom|strong=\"H2451\"* a|strong=\"H3068\"* house|strong=\"H1004\"* is|strong=\"H2451\"* built|strong=\"H1129\"*;" + }, + { + "verseNum": 4, + "text": "by|strong=\"H3605\"* knowledge|strong=\"H1847\"* the|strong=\"H3605\"* rooms|strong=\"H2315\"* are|strong=\"H4390\"* filled|strong=\"H4390\"*" + }, + { + "verseNum": 5, + "text": "A|strong=\"H3068\"* wise|strong=\"H2450\"* man|strong=\"H1397\"* has|strong=\"H3581\"* great power|strong=\"H3581\"*." + }, + { + "verseNum": 6, + "text": "for|strong=\"H3588\"* by|strong=\"H6213\"* wise|strong=\"H8458\"* guidance|strong=\"H8458\"* you|strong=\"H3588\"* wage|strong=\"H6213\"* your|strong=\"H6213\"* war|strong=\"H4421\"*," + }, + { + "verseNum": 7, + "text": "Wisdom|strong=\"H2454\"* is|strong=\"H6310\"* too|strong=\"H3808\"* high|strong=\"H7311\"* for|strong=\"H3808\"* a|strong=\"H3068\"* fool." + }, + { + "verseNum": 8, + "text": "One who|strong=\"H1167\"* plots|strong=\"H4209\"* to|strong=\"H7121\"* do|strong=\"H7489\"* evil|strong=\"H7489\"*" + }, + { + "verseNum": 9, + "text": "The|strong=\"H8441\"* schemes|strong=\"H2154\"* of|strong=\"H2403\"* folly are|strong=\"H2403\"* sin|strong=\"H2403\"*." + }, + { + "verseNum": 10, + "text": "If you|strong=\"H3117\"* falter in|strong=\"H3117\"* the|strong=\"H3117\"* time|strong=\"H3117\"* of|strong=\"H3117\"* trouble|strong=\"H6869\"*," + }, + { + "verseNum": 11, + "text": "Rescue|strong=\"H5337\"* those who are|strong=\"H4194\"* being led away|strong=\"H3947\"* to|strong=\"H3947\"* death|strong=\"H4194\"*!" + }, + { + "verseNum": 12, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* say|strong=\"H7725\"*, “Behold|strong=\"H2005\"*, we|strong=\"H3068\"* didn’t know|strong=\"H3045\"* this|strong=\"H2088\"*,”" + }, + { + "verseNum": 13, + "text": "My|strong=\"H5921\"* son|strong=\"H1121\"*, eat honey|strong=\"H1706\"*, for|strong=\"H3588\"* it|strong=\"H5921\"* is|strong=\"H2896\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 14, + "text": "so|strong=\"H3651\"* you|strong=\"H3045\"* shall|strong=\"H5315\"* know|strong=\"H3045\"* wisdom|strong=\"H2451\"* to|strong=\"H5315\"* be|strong=\"H3426\"* to|strong=\"H5315\"* your|strong=\"H3045\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 15, + "text": "Don’t lay|strong=\"H7258\"* in|strong=\"H6662\"* wait, wicked|strong=\"H7563\"* man|strong=\"H7563\"*, against the|strong=\"H7703\"* habitation|strong=\"H5116\"* of|strong=\"H5116\"* the|strong=\"H7703\"* righteous|strong=\"H6662\"*." + }, + { + "verseNum": 16, + "text": "for|strong=\"H3588\"* a|strong=\"H3068\"* righteous|strong=\"H6662\"* man|strong=\"H7563\"* falls|strong=\"H5307\"* seven|strong=\"H7651\"* times|strong=\"H7651\"* and|strong=\"H6965\"* rises|strong=\"H6965\"* up|strong=\"H6965\"* again|strong=\"H6965\"*," + }, + { + "verseNum": 17, + "text": "Don’t rejoice|strong=\"H8055\"* when|strong=\"H5307\"* your|strong=\"H5307\"* enemy falls|strong=\"H5307\"*." + }, + { + "verseNum": 18, + "text": "lest|strong=\"H6435\"* Yahweh|strong=\"H3068\"* see|strong=\"H7200\"* it|strong=\"H5921\"*, and|strong=\"H3068\"* it|strong=\"H5921\"* displease|strong=\"H7489\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 19, + "text": "Don’t fret|strong=\"H2734\"* yourself because of|strong=\"H7065\"* evildoers|strong=\"H7489\"*," + }, + { + "verseNum": 20, + "text": "for|strong=\"H3588\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3808\"* reward to|strong=\"H1961\"* the|strong=\"H3588\"* evil|strong=\"H7451\"* man|strong=\"H7563\"*." + }, + { + "verseNum": 21, + "text": "My|strong=\"H3068\"* son|strong=\"H1121\"*, fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* and|strong=\"H1121\"* the|strong=\"H3068\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 22, + "text": "for|strong=\"H3588\"* their|strong=\"H3588\"* calamity|strong=\"H6365\"* will|strong=\"H4310\"* rise|strong=\"H6965\"* suddenly|strong=\"H6597\"*." + }, + { + "verseNum": 23, + "text": "These|strong=\"H6440\"* also|strong=\"H1571\"* are|strong=\"H2450\"* sayings of|strong=\"H6440\"* the|strong=\"H6440\"* wise|strong=\"H2450\"*:" + }, + { + "verseNum": 24, + "text": "He|strong=\"H5971\"* who|strong=\"H5971\"* says to|strong=\"H5971\"* the|strong=\"H5971\"* wicked|strong=\"H7563\"*, “You|strong=\"H5971\"* are|strong=\"H5971\"* righteous|strong=\"H6662\"*,”" + }, + { + "verseNum": 25, + "text": "but|strong=\"H3198\"* it|strong=\"H5921\"* will|strong=\"H1293\"* go well|strong=\"H2896\"* with|strong=\"H5921\"* those|strong=\"H5921\"* who|strong=\"H2896\"* convict the|strong=\"H5921\"* guilty," + }, + { + "verseNum": 26, + "text": "An|strong=\"H7725\"* honest answer|strong=\"H7725\"*" + }, + { + "verseNum": 27, + "text": "Prepare|strong=\"H3559\"* your|strong=\"H3559\"* work|strong=\"H4399\"* outside|strong=\"H2351\"*," + }, + { + "verseNum": 28, + "text": "Don’t be|strong=\"H1961\"* a|strong=\"H3068\"* witness|strong=\"H5707\"* against|strong=\"H7453\"* your|strong=\"H1961\"* neighbor|strong=\"H7453\"* without|strong=\"H2600\"* cause|strong=\"H2600\"*." + }, + { + "verseNum": 29, + "text": "Don’t say|strong=\"H7725\"*, “I|strong=\"H3651\"* will|strong=\"H7725\"* do|strong=\"H6213\"* to|strong=\"H7725\"* him|strong=\"H6213\"* as|strong=\"H6213\"* he|strong=\"H3651\"* has|strong=\"H6213\"* done|strong=\"H6213\"* to|strong=\"H7725\"* me|strong=\"H7725\"*;" + }, + { + "verseNum": 30, + "text": "I|strong=\"H5921\"* went|strong=\"H5674\"* by|strong=\"H5921\"* the|strong=\"H5921\"* field|strong=\"H7704\"* of|strong=\"H7704\"* the|strong=\"H5921\"* sluggard|strong=\"H6102\"*," + }, + { + "verseNum": 31, + "text": "Behold|strong=\"H2009\"*, it|strong=\"H6440\"* was|strong=\"H3605\"* all|strong=\"H3605\"* grown over|strong=\"H6440\"* with|strong=\"H6440\"* thorns|strong=\"H7063\"*." + }, + { + "verseNum": 32, + "text": "Then|strong=\"H3947\"* I|strong=\"H7200\"* saw|strong=\"H7200\"*, and|strong=\"H7200\"* considered|strong=\"H7200\"* well|strong=\"H3820\"*." + }, + { + "verseNum": 33, + "text": "a|strong=\"H3068\"* little|strong=\"H4592\"* sleep|strong=\"H8142\"*, a|strong=\"H3068\"* little|strong=\"H4592\"* slumber|strong=\"H8572\"*," + }, + { + "verseNum": 34, + "text": "so|strong=\"H1980\"* your poverty|strong=\"H7389\"* will|strong=\"H7389\"* come|strong=\"H1980\"* as|strong=\"H1980\"* a|strong=\"H3068\"* robber|strong=\"H1980\"*" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "These|strong=\"H4428\"* also|strong=\"H1571\"* are|strong=\"H4428\"* proverbs|strong=\"H4912\"* of|strong=\"H4428\"* Solomon|strong=\"H8010\"*, which|strong=\"H3063\"* the|strong=\"H1571\"* men of|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* copied|strong=\"H6275\"* out|strong=\"H6275\"*." + }, + { + "verseNum": 2, + "text": "It is|strong=\"H1697\"* the|strong=\"H1697\"* glory|strong=\"H3519\"* of|strong=\"H4428\"* God to|strong=\"H4428\"* conceal|strong=\"H5641\"* a|strong=\"H3068\"* thing|strong=\"H1697\"*," + }, + { + "verseNum": 3, + "text": "As|strong=\"H4428\"* the|strong=\"H3820\"* heavens|strong=\"H8064\"* for|strong=\"H4428\"* height|strong=\"H7312\"*, and|strong=\"H4428\"* the|strong=\"H3820\"* earth|strong=\"H8064\"* for|strong=\"H4428\"* depth|strong=\"H6011\"*," + }, + { + "verseNum": 4, + "text": "Take|strong=\"H3318\"* away|strong=\"H3318\"* the|strong=\"H3318\"* dross|strong=\"H5509\"* from|strong=\"H3318\"* the|strong=\"H3318\"* silver|strong=\"H3701\"*," + }, + { + "verseNum": 5, + "text": "Take|strong=\"H1898\"* away|strong=\"H1898\"* the|strong=\"H6440\"* wicked|strong=\"H7563\"* from|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s presence|strong=\"H6440\"*," + }, + { + "verseNum": 6, + "text": "Don’t exalt yourself in|strong=\"H4428\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"*," + }, + { + "verseNum": 7, + "text": "for|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H2896\"* better|strong=\"H2896\"* that|strong=\"H3588\"* it|strong=\"H3588\"* be|strong=\"H5869\"* said to|strong=\"H5927\"* you|strong=\"H3588\"*, “Come|strong=\"H5927\"* up|strong=\"H5927\"* here|strong=\"H2008\"*,”" + }, + { + "verseNum": 8, + "text": "Don’t be|strong=\"H3318\"* hasty in|strong=\"H6213\"* bringing|strong=\"H3318\"* charges to|strong=\"H3318\"* court|strong=\"H3318\"*." + }, + { + "verseNum": 9, + "text": "Debate|strong=\"H7378\"* your|strong=\"H1540\"* case|strong=\"H7379\"* with|strong=\"H7378\"* your|strong=\"H1540\"* neighbor|strong=\"H7453\"*," + }, + { + "verseNum": 10, + "text": "lest|strong=\"H6435\"* one|strong=\"H3808\"* who|strong=\"H3808\"* hears|strong=\"H8085\"* it|strong=\"H7725\"* put|strong=\"H7725\"* you|strong=\"H7725\"* to|strong=\"H7725\"* shame|strong=\"H2616\"*," + }, + { + "verseNum": 11, + "text": "A|strong=\"H3068\"* word|strong=\"H1697\"* fitly spoken|strong=\"H1696\"*" + }, + { + "verseNum": 12, + "text": "As|strong=\"H5921\"* an|strong=\"H2091\"* earring|strong=\"H5141\"* of|strong=\"H5921\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* an|strong=\"H2091\"* ornament|strong=\"H2481\"* of|strong=\"H5921\"* fine|strong=\"H3800\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 13, + "text": "As|strong=\"H3117\"* the|strong=\"H3117\"* cold|strong=\"H6793\"* of|strong=\"H3117\"* snow|strong=\"H7950\"* in|strong=\"H3117\"* the|strong=\"H3117\"* time|strong=\"H3117\"* of|strong=\"H3117\"* harvest|strong=\"H7105\"*," + }, + { + "verseNum": 14, + "text": "As|strong=\"H1984\"* clouds|strong=\"H5387\"* and|strong=\"H7307\"* wind|strong=\"H7307\"* without|strong=\"H7307\"* rain|strong=\"H1653\"*," + }, + { + "verseNum": 15, + "text": "By patience a|strong=\"H3068\"* ruler|strong=\"H7101\"* is|strong=\"H3956\"* persuaded|strong=\"H6601\"*." + }, + { + "verseNum": 16, + "text": "Have|strong=\"H7646\"* you|strong=\"H6435\"* found|strong=\"H4672\"* honey|strong=\"H1706\"*?" + }, + { + "verseNum": 17, + "text": "Let your|strong=\"H7646\"* foot|strong=\"H7272\"* be|strong=\"H1004\"* seldom in|strong=\"H1004\"* your|strong=\"H7646\"* neighbor|strong=\"H7453\"*’s house|strong=\"H1004\"*," + }, + { + "verseNum": 18, + "text": "A|strong=\"H3068\"* man|strong=\"H6030\"* who|strong=\"H5707\"* gives false|strong=\"H8267\"* testimony|strong=\"H5707\"* against|strong=\"H2719\"* his|strong=\"H6030\"* neighbor|strong=\"H7453\"*" + }, + { + "verseNum": 19, + "text": "Confidence|strong=\"H4009\"* in|strong=\"H3117\"* someone unfaithful in|strong=\"H3117\"* time|strong=\"H3117\"* of|strong=\"H3117\"* trouble|strong=\"H6869\"*" + }, + { + "verseNum": 20, + "text": "As|strong=\"H3117\"* one who|strong=\"H7891\"* takes|strong=\"H5710\"* away|strong=\"H5710\"* a|strong=\"H3068\"* garment in|strong=\"H5921\"* cold|strong=\"H7135\"* weather|strong=\"H3117\"*," + }, + { + "verseNum": 21, + "text": "If your|strong=\"H8248\"* enemy|strong=\"H8130\"* is|strong=\"H4325\"* hungry|strong=\"H7457\"*, give|strong=\"H8248\"* him|strong=\"H8130\"* food|strong=\"H3899\"* to|strong=\"H4325\"* eat|strong=\"H3899\"*." + }, + { + "verseNum": 22, + "text": "for|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* heap|strong=\"H2846\"* coals|strong=\"H1513\"* of|strong=\"H3068\"* fire|strong=\"H1513\"* on|strong=\"H5921\"* his|strong=\"H3068\"* head|strong=\"H7218\"*," + }, + { + "verseNum": 23, + "text": "The|strong=\"H6440\"* north|strong=\"H6828\"* wind|strong=\"H7307\"* produces rain|strong=\"H1653\"*;" + }, + { + "verseNum": 24, + "text": "It|strong=\"H5921\"* is|strong=\"H2896\"* better|strong=\"H2896\"* to|strong=\"H5921\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* corner|strong=\"H6438\"* of|strong=\"H1004\"* the|strong=\"H5921\"* housetop|strong=\"H1406\"*" + }, + { + "verseNum": 25, + "text": "Like|strong=\"H2896\"* cold|strong=\"H7119\"* water|strong=\"H4325\"* to|strong=\"H5921\"* a|strong=\"H3068\"* thirsty|strong=\"H5889\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 26, + "text": "Like|strong=\"H6440\"* a|strong=\"H3068\"* muddied spring|strong=\"H4599\"* and|strong=\"H6440\"* a|strong=\"H3068\"* polluted|strong=\"H7843\"* well|strong=\"H4726\"*," + }, + { + "verseNum": 27, + "text": "It|strong=\"H3808\"* is|strong=\"H2896\"* not|strong=\"H3808\"* good|strong=\"H2896\"* to|strong=\"H2896\"* eat much|strong=\"H7235\"* honey|strong=\"H1706\"*," + }, + { + "verseNum": 28, + "text": "Like|strong=\"H7307\"* a|strong=\"H3068\"* city|strong=\"H5892\"* that|strong=\"H5892\"* is|strong=\"H5892\"* broken|strong=\"H6555\"* down|strong=\"H6555\"* and|strong=\"H5892\"* without|strong=\"H7307\"* walls|strong=\"H2346\"*" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "Like|strong=\"H3651\"* snow|strong=\"H7950\"* in|strong=\"H3808\"* summer|strong=\"H7019\"*, and|strong=\"H3519\"* as|strong=\"H3651\"* rain|strong=\"H4306\"* in|strong=\"H3808\"* harvest|strong=\"H7105\"*," + }, + { + "verseNum": 2, + "text": "Like|strong=\"H3651\"* a|strong=\"H3068\"* fluttering sparrow|strong=\"H6833\"*," + }, + { + "verseNum": 3, + "text": "A|strong=\"H3068\"* whip|strong=\"H7752\"* is|strong=\"H3684\"* for|strong=\"H5483\"* the|strong=\"H7626\"* horse|strong=\"H5483\"*," + }, + { + "verseNum": 4, + "text": "Don’t answer|strong=\"H6030\"* a|strong=\"H3068\"* fool|strong=\"H3684\"* according to|strong=\"H6030\"* his|strong=\"H6030\"* folly," + }, + { + "verseNum": 5, + "text": "Answer|strong=\"H6030\"* a|strong=\"H3068\"* fool|strong=\"H3684\"* according to|strong=\"H1961\"* his|strong=\"H1961\"* folly," + }, + { + "verseNum": 6, + "text": "One|strong=\"H1697\"* who|strong=\"H8354\"* sends|strong=\"H7971\"* a|strong=\"H3068\"* message|strong=\"H1697\"* by|strong=\"H3027\"* the|strong=\"H7971\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* a|strong=\"H3068\"* fool|strong=\"H3684\"*" + }, + { + "verseNum": 7, + "text": "Like|strong=\"H1809\"* the|strong=\"H6310\"* legs|strong=\"H7785\"* of|strong=\"H6310\"* the|strong=\"H6310\"* lame|strong=\"H6455\"* that|strong=\"H6310\"* hang|strong=\"H1809\"* loose," + }, + { + "verseNum": 8, + "text": "As|strong=\"H3651\"* one|strong=\"H3651\"* who|strong=\"H3684\"* binds|strong=\"H6887\"* a|strong=\"H3068\"* stone in|strong=\"H5414\"* a|strong=\"H3068\"* sling|strong=\"H4773\"*," + }, + { + "verseNum": 9, + "text": "Like|strong=\"H5927\"* a|strong=\"H3068\"* thorn|strong=\"H2336\"* bush|strong=\"H2336\"* that|strong=\"H3027\"* goes|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H5927\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* a|strong=\"H3068\"* drunkard|strong=\"H7910\"*," + }, + { + "verseNum": 10, + "text": "As|strong=\"H3605\"* an|strong=\"H5674\"* archer who|strong=\"H3605\"* wounds|strong=\"H2342\"* all|strong=\"H3605\"*," + }, + { + "verseNum": 11, + "text": "As|strong=\"H7725\"* a|strong=\"H3068\"* dog|strong=\"H3611\"* that|strong=\"H7725\"* returns|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* vomit|strong=\"H6892\"*," + }, + { + "verseNum": 12, + "text": "Do|strong=\"H5869\"* you|strong=\"H7200\"* see|strong=\"H7200\"* a|strong=\"H3068\"* man|strong=\"H2450\"* wise|strong=\"H2450\"* in|strong=\"H2450\"* his|strong=\"H7200\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*?" + }, + { + "verseNum": 13, + "text": "The|strong=\"H1870\"* sluggard|strong=\"H6102\"* says, “There is|strong=\"H1870\"* a|strong=\"H3068\"* lion|strong=\"H7826\"* in|strong=\"H1870\"* the|strong=\"H1870\"* road|strong=\"H1870\"*!" + }, + { + "verseNum": 14, + "text": "As|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H1817\"* turns|strong=\"H5921\"* on|strong=\"H5921\"* its|strong=\"H5921\"* hinges|strong=\"H6735\"*," + }, + { + "verseNum": 15, + "text": "The|strong=\"H7725\"* sluggard|strong=\"H6102\"* buries|strong=\"H2934\"* his|strong=\"H7725\"* hand|strong=\"H3027\"* in|strong=\"H7725\"* the|strong=\"H7725\"* dish|strong=\"H6747\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H7725\"* sluggard|strong=\"H6102\"* is|strong=\"H5869\"* wiser|strong=\"H2450\"* in|strong=\"H7725\"* his|strong=\"H7725\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*" + }, + { + "verseNum": 17, + "text": "Like|strong=\"H3808\"* one|strong=\"H3808\"* who|strong=\"H3808\"* grabs a|strong=\"H3068\"* dog|strong=\"H3611\"*’s ears" + }, + { + "verseNum": 18, + "text": "Like a|strong=\"H3068\"* madman who shoots torches, arrows|strong=\"H2671\"*, and|strong=\"H4194\"* death|strong=\"H4194\"*," + }, + { + "verseNum": 19, + "text": "is|strong=\"H3651\"* the|strong=\"H3651\"* man who|strong=\"H3808\"* deceives|strong=\"H7411\"* his|strong=\"H3808\"* neighbor|strong=\"H7453\"* and|strong=\"H7453\"* says, “Am I|strong=\"H3651\"* not|strong=\"H3808\"* joking|strong=\"H7832\"*?”" + }, + { + "verseNum": 20, + "text": "For|strong=\"H6086\"* lack of|strong=\"H6086\"* wood|strong=\"H6086\"* a|strong=\"H3068\"* fire goes|strong=\"H3518\"* out|strong=\"H3518\"*." + }, + { + "verseNum": 21, + "text": "As coals|strong=\"H1513\"* are to|strong=\"H6086\"* hot|strong=\"H1513\"* embers|strong=\"H1513\"*," + }, + { + "verseNum": 22, + "text": "The|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H1697\"* a|strong=\"H3068\"* whisperer|strong=\"H5372\"* are|strong=\"H1992\"* as|strong=\"H1697\"* dainty|strong=\"H3859\"* morsels|strong=\"H3859\"*," + }, + { + "verseNum": 23, + "text": "Like|strong=\"H3820\"* silver|strong=\"H3701\"* dross|strong=\"H5509\"* on|strong=\"H5921\"* an|strong=\"H5921\"* earthen|strong=\"H2789\"* vessel|strong=\"H2789\"*" + }, + { + "verseNum": 24, + "text": "A|strong=\"H3068\"* malicious man disguises himself|strong=\"H5234\"* with|strong=\"H8193\"* his|strong=\"H7130\"* lips|strong=\"H8193\"*," + }, + { + "verseNum": 25, + "text": "When|strong=\"H3588\"* his|strong=\"H3588\"* speech is|strong=\"H3820\"* charming, don’t believe him|strong=\"H6963\"*," + }, + { + "verseNum": 26, + "text": "His|strong=\"H1540\"* malice may|strong=\"H6951\"* be|strong=\"H7451\"* concealed by|strong=\"H7451\"* deception," + }, + { + "verseNum": 27, + "text": "Whoever digs|strong=\"H3738\"* a|strong=\"H3068\"* pit|strong=\"H7845\"* shall|strong=\"H7845\"* fall|strong=\"H5307\"* into|strong=\"H7725\"* it|strong=\"H7725\"*." + }, + { + "verseNum": 28, + "text": "A|strong=\"H3068\"* lying|strong=\"H8267\"* tongue|strong=\"H3956\"* hates|strong=\"H8130\"* those|strong=\"H6213\"* it|strong=\"H6213\"* hurts;" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Don’t boast|strong=\"H1984\"* about|strong=\"H3045\"* tomorrow|strong=\"H4279\"*;" + }, + { + "verseNum": 2, + "text": "Let|strong=\"H3808\"* another|strong=\"H6310\"* man|strong=\"H2114\"* praise|strong=\"H1984\"* you|strong=\"H3808\"*," + }, + { + "verseNum": 3, + "text": "A|strong=\"H3068\"* stone is|strong=\"H3708\"* heavy|strong=\"H3515\"*," + }, + { + "verseNum": 4, + "text": "Wrath|strong=\"H2534\"* is|strong=\"H4310\"* cruel," + }, + { + "verseNum": 5, + "text": "Better|strong=\"H2896\"* is|strong=\"H2896\"* open|strong=\"H1540\"* rebuke|strong=\"H8433\"*" + }, + { + "verseNum": 6, + "text": "The|strong=\"H8130\"* wounds|strong=\"H6482\"* of|strong=\"H8130\"* a|strong=\"H3068\"* friend are faithful," + }, + { + "verseNum": 7, + "text": "A|strong=\"H3068\"* full|strong=\"H7649\"* soul|strong=\"H5315\"* loathes a|strong=\"H3068\"* honeycomb|strong=\"H5317\"*;" + }, + { + "verseNum": 8, + "text": "As|strong=\"H3651\"* a|strong=\"H3068\"* bird|strong=\"H6833\"* that|strong=\"H3651\"* wanders|strong=\"H5074\"* from|strong=\"H4480\"* her|strong=\"H3651\"* nest|strong=\"H7064\"*," + }, + { + "verseNum": 9, + "text": "Perfume|strong=\"H7004\"* and|strong=\"H8081\"* incense|strong=\"H7004\"* bring joy|strong=\"H8055\"* to|strong=\"H3820\"* the|strong=\"H8055\"* heart|strong=\"H3820\"*;" + }, + { + "verseNum": 10, + "text": "Don’t forsake|strong=\"H5800\"* your|strong=\"H5800\"* friend|strong=\"H7453\"* and|strong=\"H3117\"* your|strong=\"H5800\"* father’s friend|strong=\"H7453\"*." + }, + { + "verseNum": 11, + "text": "Be|strong=\"H1697\"* wise|strong=\"H2449\"*, my|strong=\"H7725\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 12, + "text": "A|strong=\"H3068\"* prudent|strong=\"H6175\"* man|strong=\"H6175\"* sees|strong=\"H7200\"* danger|strong=\"H7451\"* and|strong=\"H7200\"* takes refuge;" + }, + { + "verseNum": 13, + "text": "Take|strong=\"H3947\"* his|strong=\"H3947\"* garment when|strong=\"H3588\"* he|strong=\"H3588\"* puts|strong=\"H2114\"* up|strong=\"H3947\"* collateral|strong=\"H6148\"* for|strong=\"H3588\"* a|strong=\"H3068\"* stranger|strong=\"H2114\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H1242\"* who blesses|strong=\"H1288\"* his|strong=\"H1288\"* neighbor|strong=\"H7453\"* with|strong=\"H6963\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"* early|strong=\"H7925\"* in|strong=\"H1419\"* the|strong=\"H1288\"* morning|strong=\"H1242\"*," + }, + { + "verseNum": 15, + "text": "A|strong=\"H3068\"* continual|strong=\"H2956\"* dropping|strong=\"H1812\"* on|strong=\"H3117\"* a|strong=\"H3068\"* rainy|strong=\"H5464\"* day|strong=\"H3117\"*" + }, + { + "verseNum": 16, + "text": "restraining her|strong=\"H7121\"* is|strong=\"H7307\"* like|strong=\"H7307\"* restraining the|strong=\"H7121\"* wind|strong=\"H7307\"*," + }, + { + "verseNum": 17, + "text": "Iron|strong=\"H1270\"* sharpens|strong=\"H2300\"* iron|strong=\"H1270\"*;" + }, + { + "verseNum": 18, + "text": "Whoever|strong=\"H8104\"* tends|strong=\"H5341\"* the|strong=\"H8104\"* fig|strong=\"H8384\"* tree|strong=\"H8384\"* shall|strong=\"H5341\"* eat its|strong=\"H8104\"* fruit|strong=\"H6529\"*." + }, + { + "verseNum": 19, + "text": "Like|strong=\"H3651\"* water|strong=\"H4325\"* reflects a|strong=\"H3068\"* face|strong=\"H6440\"*," + }, + { + "verseNum": 20, + "text": "Sheol|strong=\"H7585\"*+ 27:20 Sheol is the place of the dead.* and|strong=\"H5869\"* Abaddon are|strong=\"H5869\"* never|strong=\"H3808\"* satisfied|strong=\"H7646\"*;" + }, + { + "verseNum": 21, + "text": "The|strong=\"H6310\"* crucible|strong=\"H4715\"* is|strong=\"H3701\"* for|strong=\"H3701\"* silver|strong=\"H3701\"*," + }, + { + "verseNum": 22, + "text": "Though you|strong=\"H5921\"* grind a|strong=\"H3068\"* fool in|strong=\"H5921\"* a|strong=\"H3068\"* mortar|strong=\"H4388\"* with|strong=\"H5921\"* a|strong=\"H3068\"* pestle|strong=\"H5940\"* along|strong=\"H5921\"* with|strong=\"H5921\"* grain|strong=\"H7383\"*," + }, + { + "verseNum": 23, + "text": "Know|strong=\"H3045\"* well|strong=\"H3820\"* the|strong=\"H6440\"* state|strong=\"H6440\"* of|strong=\"H6440\"* your|strong=\"H6440\"* flocks|strong=\"H6629\"*," + }, + { + "verseNum": 24, + "text": "for|strong=\"H3588\"* riches|strong=\"H2633\"* are|strong=\"H5145\"* not|strong=\"H3808\"* forever|strong=\"H5769\"*," + }, + { + "verseNum": 25, + "text": "The|strong=\"H7200\"* hay|strong=\"H2682\"* is|strong=\"H1877\"* removed|strong=\"H1540\"*, and|strong=\"H7200\"* the|strong=\"H7200\"* new|strong=\"H1877\"* growth|strong=\"H1877\"* appears|strong=\"H7200\"*," + }, + { + "verseNum": 26, + "text": "The|strong=\"H7704\"* lambs|strong=\"H3532\"* are for|strong=\"H7704\"* your clothing|strong=\"H3830\"*," + }, + { + "verseNum": 27, + "text": "There will|strong=\"H1004\"* be|strong=\"H1004\"* plenty|strong=\"H1767\"* of|strong=\"H1004\"* goats|strong=\"H5795\"*’ milk|strong=\"H2461\"* for|strong=\"H1004\"* your|strong=\"H1004\"* food|strong=\"H3899\"*," + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H7291\"* wicked|strong=\"H7563\"* flee|strong=\"H5127\"* when|strong=\"H5127\"* no|strong=\"H7563\"* one|strong=\"H6662\"* pursues|strong=\"H7291\"*;" + }, + { + "verseNum": 2, + "text": "In|strong=\"H7227\"* rebellion|strong=\"H6588\"*, a|strong=\"H3068\"* land has|strong=\"H3045\"* many|strong=\"H7227\"* rulers|strong=\"H8269\"*," + }, + { + "verseNum": 3, + "text": "A|strong=\"H3068\"* needy|strong=\"H1800\"* man|strong=\"H1397\"* who|strong=\"H1397\"* oppresses|strong=\"H6231\"* the|strong=\"H6231\"* poor|strong=\"H1800\"*" + }, + { + "verseNum": 4, + "text": "Those who|strong=\"H8104\"* forsake|strong=\"H5800\"* the|strong=\"H8104\"* law|strong=\"H8451\"* praise|strong=\"H1984\"* the|strong=\"H8104\"* wicked|strong=\"H7563\"*;" + }, + { + "verseNum": 5, + "text": "Evil|strong=\"H7451\"* men|strong=\"H7451\"* don’t understand justice|strong=\"H4941\"*;" + }, + { + "verseNum": 6, + "text": "Better|strong=\"H2896\"* is|strong=\"H1931\"* the|strong=\"H1870\"* poor|strong=\"H7326\"* who|strong=\"H1931\"* walks|strong=\"H1980\"* in|strong=\"H1980\"* his|strong=\"H1980\"* integrity|strong=\"H8537\"*" + }, + { + "verseNum": 7, + "text": "Whoever keeps|strong=\"H5341\"* the|strong=\"H5341\"* law|strong=\"H8451\"* is|strong=\"H1121\"* a|strong=\"H3068\"* wise son|strong=\"H1121\"*;" + }, + { + "verseNum": 8, + "text": "He|strong=\"H7235\"* who|strong=\"H1800\"* increases|strong=\"H7235\"* his|strong=\"H7235\"* wealth|strong=\"H1952\"* by|strong=\"H6908\"* excessive interest|strong=\"H5392\"*" + }, + { + "verseNum": 9, + "text": "He|strong=\"H1571\"* who|strong=\"H5493\"* turns|strong=\"H5493\"* away|strong=\"H5493\"* his|strong=\"H8085\"* ear|strong=\"H8085\"* from|strong=\"H5493\"* hearing|strong=\"H8085\"* the|strong=\"H8085\"* law|strong=\"H8451\"*," + }, + { + "verseNum": 10, + "text": "Whoever causes the|strong=\"H1870\"* upright|strong=\"H3477\"* to|strong=\"H1870\"* go|strong=\"H7686\"* astray|strong=\"H7686\"* in|strong=\"H3477\"* an|strong=\"H5157\"* evil|strong=\"H7451\"* way|strong=\"H1870\"*," + }, + { + "verseNum": 11, + "text": "The|strong=\"H5869\"* rich|strong=\"H6223\"* man|strong=\"H2450\"* is|strong=\"H5869\"* wise|strong=\"H2450\"* in|strong=\"H2450\"* his|strong=\"H5869\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*;" + }, + { + "verseNum": 12, + "text": "When|strong=\"H6965\"* the|strong=\"H6965\"* righteous|strong=\"H6662\"* triumph|strong=\"H5970\"*, there|strong=\"H6965\"* is|strong=\"H7563\"* great|strong=\"H7227\"* glory|strong=\"H8597\"*;" + }, + { + "verseNum": 13, + "text": "He|strong=\"H3808\"* who|strong=\"H3808\"* conceals|strong=\"H3680\"* his|strong=\"H5800\"* sins|strong=\"H6588\"* doesn’t prosper|strong=\"H6743\"*," + }, + { + "verseNum": 14, + "text": "Blessed is|strong=\"H3820\"* the|strong=\"H5307\"* man|strong=\"H7451\"* who always|strong=\"H8548\"* fears|strong=\"H6342\"*;" + }, + { + "verseNum": 15, + "text": "As|strong=\"H5971\"* a|strong=\"H3068\"* roaring|strong=\"H5098\"* lion or|strong=\"H1800\"* a|strong=\"H3068\"* charging bear|strong=\"H1677\"*," + }, + { + "verseNum": 16, + "text": "A|strong=\"H3068\"* tyrannical ruler|strong=\"H5057\"* lacks|strong=\"H2638\"* judgment." + }, + { + "verseNum": 17, + "text": "A|strong=\"H3068\"* man|strong=\"H5315\"* who|strong=\"H5315\"* is|strong=\"H5315\"* tormented by|strong=\"H5704\"* blood|strong=\"H1818\"* guilt|strong=\"H1818\"* will|strong=\"H5315\"* be|strong=\"H5315\"* a|strong=\"H3068\"* fugitive|strong=\"H5127\"* until|strong=\"H5704\"* death|strong=\"H1818\"*." + }, + { + "verseNum": 18, + "text": "Whoever walks|strong=\"H1980\"* blamelessly|strong=\"H8549\"* is|strong=\"H1870\"* kept safe|strong=\"H3467\"*;" + }, + { + "verseNum": 19, + "text": "One who works|strong=\"H5647\"* his|strong=\"H5647\"* land will|strong=\"H7389\"* have|strong=\"H7646\"* an|strong=\"H7291\"* abundance|strong=\"H7646\"* of|strong=\"H3899\"* food|strong=\"H3899\"*;" + }, + { + "verseNum": 20, + "text": "A|strong=\"H3068\"* faithful man is|strong=\"H3808\"* rich|strong=\"H6238\"* with|strong=\"H1293\"* blessings|strong=\"H1293\"*;" + }, + { + "verseNum": 21, + "text": "To|strong=\"H5921\"* show|strong=\"H5234\"* partiality|strong=\"H5234\"* is|strong=\"H2896\"* not|strong=\"H3808\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 22, + "text": "A|strong=\"H3068\"* stingy man|strong=\"H7451\"* hurries after|strong=\"H3588\"* riches|strong=\"H1952\"*," + }, + { + "verseNum": 23, + "text": "One|strong=\"H3956\"* who|strong=\"H4672\"* rebukes|strong=\"H3198\"* a|strong=\"H3068\"* man will|strong=\"H3956\"* afterward find|strong=\"H4672\"* more|strong=\"H4672\"* favor|strong=\"H2580\"*" + }, + { + "verseNum": 24, + "text": "Whoever robs|strong=\"H1497\"* his|strong=\"H7843\"* father or his|strong=\"H7843\"* mother and|strong=\"H7843\"* says, “It|strong=\"H1931\"*’s not wrong,”" + }, + { + "verseNum": 25, + "text": "One|strong=\"H5315\"* who|strong=\"H3068\"* is|strong=\"H3068\"* greedy|strong=\"H5315\"* stirs|strong=\"H1624\"* up|strong=\"H1624\"* strife|strong=\"H4066\"*;" + }, + { + "verseNum": 26, + "text": "One|strong=\"H1931\"* who|strong=\"H1931\"* trusts in|strong=\"H1980\"* himself|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* fool|strong=\"H3684\"*;" + }, + { + "verseNum": 27, + "text": "One|strong=\"H7227\"* who|strong=\"H7227\"* gives|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* poor|strong=\"H7326\"* has|strong=\"H5869\"* no|strong=\"H5414\"* lack|strong=\"H4270\"*;" + }, + { + "verseNum": 28, + "text": "When|strong=\"H7235\"* the|strong=\"H6965\"* wicked|strong=\"H7563\"* rise|strong=\"H6965\"*, men|strong=\"H7563\"* hide|strong=\"H5641\"* themselves|strong=\"H5641\"*;" + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "He who is|strong=\"H8433\"* often rebuked and|strong=\"H7665\"* stiffens his|strong=\"H7665\"* neck|strong=\"H6203\"*" + }, + { + "verseNum": 2, + "text": "When|strong=\"H7235\"* the|strong=\"H8055\"* righteous|strong=\"H6662\"* thrive, the|strong=\"H8055\"* people|strong=\"H5971\"* rejoice|strong=\"H8055\"*;" + }, + { + "verseNum": 3, + "text": "Whoever loves wisdom|strong=\"H2451\"* brings joy|strong=\"H8055\"* to|strong=\"H8055\"* his|strong=\"H7462\"* father;" + }, + { + "verseNum": 4, + "text": "The|strong=\"H5975\"* king|strong=\"H4428\"* by|strong=\"H5975\"* justice|strong=\"H4941\"* makes the|strong=\"H5975\"* land stable," + }, + { + "verseNum": 5, + "text": "A|strong=\"H3068\"* man|strong=\"H1397\"* who|strong=\"H1397\"* flatters|strong=\"H2505\"* his|strong=\"H5921\"* neighbor|strong=\"H7453\"*" + }, + { + "verseNum": 6, + "text": "An|strong=\"H6588\"* evil|strong=\"H7451\"* man|strong=\"H6662\"* is|strong=\"H6662\"* snared|strong=\"H4170\"* by|strong=\"H7451\"* his|strong=\"H8055\"* sin|strong=\"H6588\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H3045\"* righteous|strong=\"H6662\"* care about|strong=\"H3045\"* justice|strong=\"H1779\"* for|strong=\"H3045\"* the|strong=\"H3045\"* poor|strong=\"H1800\"*." + }, + { + "verseNum": 8, + "text": "Mockers stir up|strong=\"H7725\"* a|strong=\"H3068\"* city|strong=\"H7151\"*," + }, + { + "verseNum": 9, + "text": "If a|strong=\"H3068\"* wise|strong=\"H2450\"* man|strong=\"H2450\"* goes|strong=\"H8199\"* to|strong=\"H2450\"* court with|strong=\"H8199\"* a|strong=\"H3068\"* foolish man|strong=\"H2450\"*," + }, + { + "verseNum": 10, + "text": "The|strong=\"H1245\"* bloodthirsty hate|strong=\"H8130\"* a|strong=\"H3068\"* man|strong=\"H5315\"* of|strong=\"H1818\"* integrity|strong=\"H8535\"*;" + }, + { + "verseNum": 11, + "text": "A|strong=\"H3068\"* fool|strong=\"H3684\"* vents all|strong=\"H3605\"* of|strong=\"H7307\"* his|strong=\"H3605\"* anger|strong=\"H7307\"*," + }, + { + "verseNum": 12, + "text": "If a|strong=\"H3068\"* ruler|strong=\"H4910\"* listens|strong=\"H7181\"* to|strong=\"H5921\"* lies|strong=\"H8267\"*," + }, + { + "verseNum": 13, + "text": "The|strong=\"H3068\"* poor|strong=\"H7326\"* man|strong=\"H7326\"* and|strong=\"H3068\"* the|strong=\"H3068\"* oppressor have|strong=\"H3068\"* this|strong=\"H3068\"* in|strong=\"H3068\"* common|strong=\"H6298\"*:" + }, + { + "verseNum": 14, + "text": "The|strong=\"H8199\"* king|strong=\"H4428\"* who|strong=\"H4428\"* fairly judges|strong=\"H8199\"* the|strong=\"H8199\"* poor|strong=\"H1800\"*," + }, + { + "verseNum": 15, + "text": "The|strong=\"H5414\"* rod|strong=\"H7626\"* of|strong=\"H7626\"* correction|strong=\"H7626\"* gives|strong=\"H5414\"* wisdom|strong=\"H2451\"*," + }, + { + "verseNum": 16, + "text": "When|strong=\"H7200\"* the|strong=\"H7200\"* wicked|strong=\"H7563\"* increase|strong=\"H7235\"*, sin|strong=\"H6588\"* increases|strong=\"H7235\"*;" + }, + { + "verseNum": 17, + "text": "Correct|strong=\"H3256\"* your|strong=\"H5414\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H5414\"* will|strong=\"H1121\"* give|strong=\"H5414\"* you|strong=\"H5414\"* peace|strong=\"H5117\"*;" + }, + { + "verseNum": 18, + "text": "Where there is|strong=\"H8451\"* no revelation, the|strong=\"H8104\"* people|strong=\"H5971\"* cast off restraint|strong=\"H6544\"*;" + }, + { + "verseNum": 19, + "text": "A|strong=\"H3068\"* servant|strong=\"H5650\"* can|strong=\"H5650\"*’t be|strong=\"H3808\"* corrected|strong=\"H3256\"* by|strong=\"H3808\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 20, + "text": "Do|strong=\"H1697\"* you|strong=\"H4480\"* see|strong=\"H2372\"* a|strong=\"H3068\"* man|strong=\"H3684\"* who|strong=\"H3684\"* is|strong=\"H1697\"* hasty in|strong=\"H1697\"* his|strong=\"H4480\"* words|strong=\"H1697\"*?" + }, + { + "verseNum": 21, + "text": "He who|strong=\"H5650\"* pampers|strong=\"H6445\"* his|strong=\"H1961\"* servant|strong=\"H5650\"* from|strong=\"H1961\"* youth|strong=\"H5290\"*" + }, + { + "verseNum": 22, + "text": "An|strong=\"H1624\"* angry|strong=\"H2534\"* man|strong=\"H1167\"* stirs|strong=\"H1624\"* up|strong=\"H1624\"* strife|strong=\"H4066\"*," + }, + { + "verseNum": 23, + "text": "A|strong=\"H3068\"* man|strong=\"H8213\"*’s pride|strong=\"H1346\"* brings|strong=\"H8213\"* him|strong=\"H8213\"* low|strong=\"H8213\"*," + }, + { + "verseNum": 24, + "text": "Whoever is|strong=\"H5315\"* an|strong=\"H8085\"* accomplice of|strong=\"H5315\"* a|strong=\"H3068\"* thief|strong=\"H1590\"* is|strong=\"H5315\"* an|strong=\"H8085\"* enemy|strong=\"H8130\"* of|strong=\"H5315\"* his|strong=\"H8085\"* own|strong=\"H5315\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H5414\"* fear|strong=\"H2731\"* of|strong=\"H3068\"* man proves to|strong=\"H3068\"* be|strong=\"H3068\"* a|strong=\"H3068\"* snare|strong=\"H4170\"*," + }, + { + "verseNum": 26, + "text": "Many|strong=\"H7227\"* seek|strong=\"H1245\"* the|strong=\"H6440\"* ruler|strong=\"H4910\"*’s favor|strong=\"H6440\"*," + }, + { + "verseNum": 27, + "text": "A|strong=\"H3068\"* dishonest man|strong=\"H7563\"* detests the|strong=\"H1870\"* righteous|strong=\"H6662\"*," + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5002\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Agur the|strong=\"H5002\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jakeh|strong=\"H3348\"*, the|strong=\"H5002\"* revelation:" + }, + { + "verseNum": 2, + "text": "“Surely|strong=\"H3588\"* I|strong=\"H3588\"* am the|strong=\"H3588\"* most ignorant|strong=\"H3808\"* man," + }, + { + "verseNum": 3, + "text": "I|strong=\"H3045\"* have|strong=\"H3045\"* not|strong=\"H3808\"* learned|strong=\"H3925\"* wisdom|strong=\"H2451\"*," + }, + { + "verseNum": 4, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* ascended|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H3381\"* heaven|strong=\"H8064\"*, and|strong=\"H1121\"* descended|strong=\"H3381\"*?" + }, + { + "verseNum": 5, + "text": "“Every|strong=\"H3605\"* word of|strong=\"H3605\"* God is|strong=\"H1931\"* flawless." + }, + { + "verseNum": 6, + "text": "Don’t you|strong=\"H5921\"* add|strong=\"H3254\"* to|strong=\"H5921\"* his|strong=\"H5921\"* words|strong=\"H1697\"*," + }, + { + "verseNum": 7, + "text": "“Two|strong=\"H8147\"* things|strong=\"H8147\"* I|strong=\"H2962\"* have|strong=\"H8147\"* asked|strong=\"H7592\"* of|strong=\"H4480\"* you|strong=\"H4480\"*." + }, + { + "verseNum": 8, + "text": "Remove|strong=\"H7368\"* far|strong=\"H7368\"* from|strong=\"H4480\"* me|strong=\"H5414\"* falsehood|strong=\"H7723\"* and|strong=\"H3899\"* lies|strong=\"H3577\"*." + }, + { + "verseNum": 9, + "text": "lest|strong=\"H6435\"* I|strong=\"H3068\"* be|strong=\"H3068\"* full|strong=\"H7646\"*, deny|strong=\"H3584\"* you|strong=\"H6435\"*, and|strong=\"H3068\"* say, ‘Who|strong=\"H4310\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*?’" + }, + { + "verseNum": 10, + "text": "“Don’t slander|strong=\"H3960\"* a|strong=\"H3068\"* servant|strong=\"H5650\"* to|strong=\"H5650\"* his|strong=\"H7043\"* master," + }, + { + "verseNum": 11, + "text": "There is|strong=\"H1288\"* a|strong=\"H3068\"* generation|strong=\"H1755\"* that|strong=\"H3808\"* curses|strong=\"H7043\"* their|strong=\"H3808\"* father," + }, + { + "verseNum": 12, + "text": "There is|strong=\"H5869\"* a|strong=\"H3068\"* generation|strong=\"H1755\"* that|strong=\"H5869\"* is|strong=\"H5869\"* pure|strong=\"H2889\"* in|strong=\"H7364\"* their|strong=\"H7364\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 13, + "text": "There is|strong=\"H4100\"* a|strong=\"H3068\"* generation|strong=\"H1755\"*, oh how|strong=\"H4100\"* lofty|strong=\"H7311\"* are|strong=\"H5869\"* their|strong=\"H5375\"* eyes|strong=\"H5869\"*!" + }, + { + "verseNum": 14, + "text": "There is|strong=\"H2719\"* a|strong=\"H3068\"* generation|strong=\"H1755\"* whose teeth|strong=\"H8127\"* are|strong=\"H8127\"* like swords|strong=\"H2719\"*," + }, + { + "verseNum": 15, + "text": "“The|strong=\"H3808\"* leech|strong=\"H5936\"* has|strong=\"H5936\"* two|strong=\"H8147\"* daughters|strong=\"H1323\"*:" + }, + { + "verseNum": 16, + "text": "Sheol|strong=\"H7585\"*,+ 30:16 Sheol is the place of the dead.*" + }, + { + "verseNum": 17, + "text": "“The|strong=\"H5869\"* eye|strong=\"H5869\"* that|strong=\"H1121\"* mocks|strong=\"H3932\"* at|strong=\"H5869\"* his|strong=\"H5869\"* father|strong=\"H1121\"*," + }, + { + "verseNum": 18, + "text": "“There|strong=\"H1992\"* are|strong=\"H1992\"* three|strong=\"H7969\"* things|strong=\"H6381\"* which|strong=\"H1992\"* are|strong=\"H1992\"* too|strong=\"H4480\"* amazing|strong=\"H6381\"* for|strong=\"H3045\"* me|strong=\"H4480\"*," + }, + { + "verseNum": 19, + "text": "The|strong=\"H5921\"* way|strong=\"H1870\"* of|strong=\"H1870\"* an|strong=\"H5921\"* eagle|strong=\"H5404\"* in|strong=\"H5921\"* the|strong=\"H5921\"* air|strong=\"H8064\"*," + }, + { + "verseNum": 20, + "text": "“So|strong=\"H3651\"* is|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1870\"* an adulterous|strong=\"H5003\"* woman:" + }, + { + "verseNum": 21, + "text": "“For|strong=\"H8478\"* three|strong=\"H7969\"* things|strong=\"H7969\"* the|strong=\"H5375\"* earth trembles|strong=\"H7264\"*," + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* a|strong=\"H3068\"* servant|strong=\"H5650\"* when|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H5650\"* king|strong=\"H4427\"*," + }, + { + "verseNum": 23, + "text": "for|strong=\"H3588\"* an|strong=\"H3588\"* unloved|strong=\"H8130\"* woman|strong=\"H8130\"* when|strong=\"H3588\"* she|strong=\"H3588\"* is|strong=\"H3588\"* married|strong=\"H1166\"*," + }, + { + "verseNum": 24, + "text": "“There|strong=\"H1992\"* are|strong=\"H1992\"* four things|strong=\"H6996\"* which|strong=\"H1992\"* are|strong=\"H1992\"* little|strong=\"H6996\"* on the|strong=\"H1992\"* earth," + }, + { + "verseNum": 25, + "text": "The|strong=\"H3559\"* ants|strong=\"H5244\"* are|strong=\"H5971\"* not|strong=\"H3808\"* a|strong=\"H3068\"* strong|strong=\"H5794\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 26, + "text": "The|strong=\"H7760\"* hyraxes are|strong=\"H5971\"* but|strong=\"H3808\"* a|strong=\"H3068\"* feeble|strong=\"H6099\"* folk|strong=\"H5971\"*," + }, + { + "verseNum": 27, + "text": "The|strong=\"H3605\"* locusts have|strong=\"H3605\"* no|strong=\"H3605\"* king|strong=\"H4428\"*," + }, + { + "verseNum": 28, + "text": "You|strong=\"H3027\"* can catch|strong=\"H8610\"* a|strong=\"H3068\"* lizard|strong=\"H8079\"* with|strong=\"H3027\"* your|strong=\"H3027\"* hands|strong=\"H3027\"*," + }, + { + "verseNum": 29, + "text": "“There|strong=\"H1992\"* are|strong=\"H1992\"* three|strong=\"H7969\"* things|strong=\"H7969\"* which|strong=\"H1992\"* are|strong=\"H1992\"* stately|strong=\"H3190\"* in|strong=\"H3212\"* their|strong=\"H1992\"* march|strong=\"H3212\"*," + }, + { + "verseNum": 30, + "text": "The|strong=\"H3605\"* lion|strong=\"H3918\"*, which|strong=\"H1368\"* is|strong=\"H3605\"* mightiest|strong=\"H1368\"* among|strong=\"H1368\"* animals," + }, + { + "verseNum": 31, + "text": "the|strong=\"H5973\"* greyhound|strong=\"H4975\"*;" + }, + { + "verseNum": 32, + "text": "“If you|strong=\"H3027\"* have|strong=\"H3027\"* done|strong=\"H3027\"* foolishly|strong=\"H5034\"* in|strong=\"H3027\"* lifting up|strong=\"H5375\"* yourself|strong=\"H5375\"*," + }, + { + "verseNum": 33, + "text": "For|strong=\"H3588\"* as|strong=\"H3588\"* the|strong=\"H3588\"* churning|strong=\"H4330\"* of|strong=\"H1818\"* milk|strong=\"H2461\"* produces|strong=\"H3318\"* butter|strong=\"H2529\"*," + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Lemuel|strong=\"H3927\"*—the|strong=\"H1697\"* revelation which|strong=\"H1697\"* his|strong=\"H4428\"* mother taught|strong=\"H3256\"* him|strong=\"H4428\"*:" + }, + { + "verseNum": 2, + "text": "“Oh, my|strong=\"H4100\"* son|strong=\"H1248\"*!" + }, + { + "verseNum": 3, + "text": "Don’t give|strong=\"H5414\"* your|strong=\"H5414\"* strength|strong=\"H2428\"* to|strong=\"H5414\"* women," + }, + { + "verseNum": 4, + "text": "It|strong=\"H8354\"* is|strong=\"H4428\"* not|strong=\"H8354\"* for|strong=\"H4428\"* kings|strong=\"H4428\"*, Lemuel|strong=\"H3927\"*," + }, + { + "verseNum": 5, + "text": "lest|strong=\"H6435\"* they|strong=\"H3605\"* drink|strong=\"H8354\"*, and|strong=\"H1121\"* forget|strong=\"H7911\"* the|strong=\"H3605\"* law|strong=\"H2710\"*," + }, + { + "verseNum": 6, + "text": "Give|strong=\"H5414\"* strong|strong=\"H7941\"* drink|strong=\"H7941\"* to|strong=\"H5414\"* him|strong=\"H5414\"* who|strong=\"H5315\"* is|strong=\"H5315\"* ready to|strong=\"H5414\"* perish," + }, + { + "verseNum": 7, + "text": "Let|strong=\"H3808\"* him|strong=\"H2142\"* drink|strong=\"H8354\"*, and|strong=\"H8354\"* forget|strong=\"H7911\"* his|strong=\"H2142\"* poverty|strong=\"H7389\"*," + }, + { + "verseNum": 8, + "text": "Open|strong=\"H6605\"* your|strong=\"H3605\"* mouth|strong=\"H6310\"* for|strong=\"H1121\"* the|strong=\"H3605\"* mute," + }, + { + "verseNum": 9, + "text": "Open|strong=\"H6605\"* your|strong=\"H6605\"* mouth|strong=\"H6310\"*, judge|strong=\"H8199\"* righteously|strong=\"H6664\"*," + }, + { + "verseNum": 10, + "text": "+ 31:10 Proverbs 31:10-31 form an acrostic, with each verse starting with each letter of the Hebrew alphabet, in order.*Who|strong=\"H4310\"* can|strong=\"H4310\"* find|strong=\"H4672\"* a|strong=\"H3068\"* worthy|strong=\"H2428\"* woman?" + }, + { + "verseNum": 11, + "text": "The|strong=\"H3808\"* heart|strong=\"H3820\"* of|strong=\"H1167\"* her|strong=\"H3820\"* husband|strong=\"H1167\"* trusts in|strong=\"H3808\"* her|strong=\"H3820\"*." + }, + { + "verseNum": 12, + "text": "She|strong=\"H3808\"* does|strong=\"H3808\"* him|strong=\"H3605\"* good|strong=\"H2896\"*, and|strong=\"H3117\"* not|strong=\"H3808\"* harm|strong=\"H7451\"*," + }, + { + "verseNum": 13, + "text": "She|strong=\"H3709\"* seeks|strong=\"H1875\"* wool|strong=\"H6785\"* and|strong=\"H6213\"* flax|strong=\"H6593\"*," + }, + { + "verseNum": 14, + "text": "She is|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H1961\"* merchant|strong=\"H5503\"* ships." + }, + { + "verseNum": 15, + "text": "She|strong=\"H6965\"* rises|strong=\"H6965\"* also|strong=\"H5750\"* while|strong=\"H5750\"* it|strong=\"H5414\"* is|strong=\"H1004\"* yet|strong=\"H5750\"* night|strong=\"H3915\"*," + }, + { + "verseNum": 16, + "text": "She|strong=\"H3709\"* considers|strong=\"H2161\"* a|strong=\"H3068\"* field|strong=\"H7704\"*, and|strong=\"H7704\"* buys|strong=\"H3947\"* it|strong=\"H3947\"*." + }, + { + "verseNum": 17, + "text": "She arms|strong=\"H2220\"* her|strong=\"H2296\"* waist|strong=\"H4975\"* with|strong=\"H2296\"* strength|strong=\"H5797\"*," + }, + { + "verseNum": 18, + "text": "She|strong=\"H3588\"* perceives that|strong=\"H3588\"* her|strong=\"H5504\"* merchandise|strong=\"H5504\"* is|strong=\"H2896\"* profitable." + }, + { + "verseNum": 19, + "text": "She|strong=\"H3709\"* lays her|strong=\"H7971\"* hands|strong=\"H3027\"* to|strong=\"H7971\"* the|strong=\"H7971\"* distaff|strong=\"H6418\"*," + }, + { + "verseNum": 20, + "text": "She|strong=\"H3709\"* opens her|strong=\"H7971\"* arms|strong=\"H3027\"* to|strong=\"H7971\"* the|strong=\"H7971\"* poor|strong=\"H6041\"*;" + }, + { + "verseNum": 21, + "text": "She|strong=\"H3588\"* is|strong=\"H3605\"* not|strong=\"H3808\"* afraid|strong=\"H3372\"* of|strong=\"H1004\"* the|strong=\"H3605\"* snow|strong=\"H7950\"* for|strong=\"H3588\"* her|strong=\"H3605\"* household|strong=\"H1004\"*," + }, + { + "verseNum": 22, + "text": "She makes|strong=\"H6213\"* for|strong=\"H6213\"* herself carpets of|strong=\"H6213\"* tapestry|strong=\"H4765\"*." + }, + { + "verseNum": 23, + "text": "Her|strong=\"H3045\"* husband|strong=\"H1167\"* is|strong=\"H1167\"* respected in|strong=\"H3427\"* the|strong=\"H3045\"* gates|strong=\"H8179\"*," + }, + { + "verseNum": 24, + "text": "She makes|strong=\"H6213\"* linen|strong=\"H5466\"* garments|strong=\"H5466\"* and|strong=\"H6213\"* sells|strong=\"H4376\"* them|strong=\"H5414\"*," + }, + { + "verseNum": 25, + "text": "Strength|strong=\"H5797\"* and|strong=\"H3117\"* dignity|strong=\"H1926\"* are|strong=\"H3117\"* her|strong=\"H3117\"* clothing|strong=\"H3830\"*." + }, + { + "verseNum": 26, + "text": "She|strong=\"H5921\"* opens|strong=\"H6605\"* her|strong=\"H5921\"* mouth|strong=\"H6310\"* with|strong=\"H5921\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 27, + "text": "She|strong=\"H3808\"* looks|strong=\"H6822\"* well|strong=\"H6822\"* to|strong=\"H1004\"* the|strong=\"H3808\"* ways|strong=\"H1979\"* of|strong=\"H1004\"* her household|strong=\"H1004\"*," + }, + { + "verseNum": 28, + "text": "Her|strong=\"H1984\"* children|strong=\"H1121\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H1121\"* call her|strong=\"H1984\"* blessed." + }, + { + "verseNum": 29, + "text": "“Many|strong=\"H7227\"* women|strong=\"H1323\"* do|strong=\"H6213\"* noble things|strong=\"H3605\"*," + }, + { + "verseNum": 30, + "text": "Charm|strong=\"H2580\"* is|strong=\"H3068\"* deceitful|strong=\"H8267\"*, and|strong=\"H3068\"* beauty|strong=\"H3308\"* is|strong=\"H3068\"* vain|strong=\"H1892\"*;" + }, + { + "verseNum": 31, + "text": "Give|strong=\"H5414\"* her|strong=\"H5414\"* of|strong=\"H3027\"* the|strong=\"H5414\"* fruit|strong=\"H6529\"* of|strong=\"H3027\"* her|strong=\"H5414\"* hands|strong=\"H3027\"*!" + } + ] + } + ] + }, + { + "name": "Ecclesiastes", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H1121\"* the|strong=\"H1697\"* Preacher|strong=\"H6953\"*, the|strong=\"H1697\"* son|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"*, king|strong=\"H4428\"* in|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*:" + }, + { + "verseNum": 2, + "text": "“Vanity|strong=\"H1892\"* of|strong=\"H3605\"* vanities|strong=\"H1892\"*,” says the|strong=\"H3605\"* Preacher|strong=\"H6953\"*; “Vanity|strong=\"H1892\"* of|strong=\"H3605\"* vanities|strong=\"H1892\"*, all|strong=\"H3605\"* is|strong=\"H3605\"* vanity|strong=\"H1892\"*.”" + }, + { + "verseNum": 3, + "text": "What|strong=\"H4100\"* does|strong=\"H4100\"* man|strong=\"H3605\"* gain from|strong=\"H8478\"* all|strong=\"H3605\"* his|strong=\"H3605\"* labor|strong=\"H5999\"* in|strong=\"H5999\"* which|strong=\"H4100\"* he|strong=\"H3605\"* labors under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*?" + }, + { + "verseNum": 4, + "text": "One|strong=\"H1755\"* generation|strong=\"H1755\"* goes|strong=\"H1980\"*, and|strong=\"H1980\"* another|strong=\"H1755\"* generation|strong=\"H1755\"* comes|strong=\"H1980\"*; but the|strong=\"H5975\"* earth remains|strong=\"H5975\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H8033\"* sun|strong=\"H8121\"* also|strong=\"H8121\"* rises|strong=\"H2224\"*, and|strong=\"H8033\"* the|strong=\"H8033\"* sun|strong=\"H8121\"* goes down, and|strong=\"H8033\"* hurries to|strong=\"H8033\"* its place|strong=\"H4725\"* where|strong=\"H8033\"* it|strong=\"H1931\"* rises|strong=\"H2224\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* wind|strong=\"H7307\"* goes|strong=\"H1980\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* south|strong=\"H1864\"*, and|strong=\"H1980\"* turns|strong=\"H7725\"* around|strong=\"H5439\"* to|strong=\"H1980\"* the|strong=\"H5921\"* north|strong=\"H6828\"*. It|strong=\"H5921\"* turns|strong=\"H7725\"* around|strong=\"H5439\"* continually|strong=\"H1980\"* as|strong=\"H1980\"* it|strong=\"H5921\"* goes|strong=\"H1980\"*, and|strong=\"H1980\"* the|strong=\"H5921\"* wind|strong=\"H7307\"* returns|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H1980\"* its|strong=\"H5921\"* courses|strong=\"H5439\"*." + }, + { + "verseNum": 7, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* rivers|strong=\"H5158\"* run|strong=\"H1980\"* into|strong=\"H1980\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*, yet|strong=\"H3605\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* is|strong=\"H3605\"* not|strong=\"H7725\"* full|strong=\"H4392\"*. To|strong=\"H1980\"* the|strong=\"H3605\"* place|strong=\"H4725\"* where|strong=\"H8033\"* the|strong=\"H3605\"* rivers|strong=\"H5158\"* flow|strong=\"H1980\"*, there|strong=\"H8033\"* they|strong=\"H1992\"* flow|strong=\"H1980\"* again|strong=\"H7725\"*." + }, + { + "verseNum": 8, + "text": "All|strong=\"H3605\"* things|strong=\"H1697\"* are|strong=\"H5869\"* full|strong=\"H4390\"* of|strong=\"H1697\"* weariness beyond|strong=\"H3808\"* uttering. The|strong=\"H3605\"* eye|strong=\"H5869\"* is|strong=\"H1697\"* not|strong=\"H3808\"* satisfied|strong=\"H7646\"* with|strong=\"H4390\"* seeing|strong=\"H7200\"*, nor|strong=\"H3808\"* the|strong=\"H3605\"* ear|strong=\"H8085\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* hearing|strong=\"H8085\"*." + }, + { + "verseNum": 9, + "text": "That|strong=\"H3605\"* which|strong=\"H1931\"* has|strong=\"H1961\"* been|strong=\"H1961\"* is|strong=\"H1931\"* that|strong=\"H3605\"* which|strong=\"H1931\"* shall|strong=\"H1931\"* be|strong=\"H1961\"*, and|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H1931\"* has|strong=\"H1961\"* been|strong=\"H1961\"* done|strong=\"H6213\"* is|strong=\"H1931\"* that|strong=\"H3605\"* which|strong=\"H1931\"* shall|strong=\"H1931\"* be|strong=\"H1961\"* done|strong=\"H6213\"*; and|strong=\"H6213\"* there|strong=\"H1961\"* is|strong=\"H1931\"* no|strong=\"H6213\"* new|strong=\"H2319\"* thing|strong=\"H2319\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 10, + "text": "Is|strong=\"H3426\"* there|strong=\"H3426\"* a|strong=\"H3068\"* thing|strong=\"H1697\"* of|strong=\"H1697\"* which|strong=\"H1931\"* it|strong=\"H1931\"* may|strong=\"H1961\"* be|strong=\"H1961\"* said|strong=\"H1697\"*, “Behold|strong=\"H7200\"*,+ 1:10 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* this|strong=\"H2088\"* is|strong=\"H3426\"* new|strong=\"H2319\"*”? It|strong=\"H1931\"* has|strong=\"H1961\"* been|strong=\"H1961\"* long|strong=\"H5769\"* ago|strong=\"H5769\"*, in|strong=\"H6440\"* the|strong=\"H6440\"* ages|strong=\"H5769\"* which|strong=\"H1931\"* were|strong=\"H1961\"* before|strong=\"H6440\"* us|strong=\"H6440\"*." + }, + { + "verseNum": 11, + "text": "There|strong=\"H1961\"* is|strong=\"H1571\"* no|strong=\"H3808\"* memory of|strong=\"H3808\"* the|strong=\"H1961\"* former|strong=\"H7223\"*; neither|strong=\"H3808\"* shall|strong=\"H3808\"* there|strong=\"H1961\"* be|strong=\"H1961\"* any|strong=\"H1571\"* memory of|strong=\"H3808\"* the|strong=\"H1961\"* latter that|strong=\"H3808\"* are|strong=\"H1992\"* to|strong=\"H1961\"* come|strong=\"H1961\"*, among|strong=\"H5973\"* those|strong=\"H1992\"* that|strong=\"H3808\"* shall|strong=\"H3808\"* come|strong=\"H1961\"* after|strong=\"H1961\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H5921\"*, the|strong=\"H5921\"* Preacher|strong=\"H6953\"*, was|strong=\"H1961\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H5414\"* applied|strong=\"H5414\"* my|strong=\"H5414\"* heart|strong=\"H3820\"* to|strong=\"H6213\"* seek|strong=\"H1875\"* and|strong=\"H1121\"* to|strong=\"H6213\"* search|strong=\"H1875\"* out|strong=\"H5414\"* by|strong=\"H5921\"* wisdom|strong=\"H2451\"* concerning|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H1931\"* done|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*. It|strong=\"H5414\"* is|strong=\"H1931\"* a|strong=\"H3068\"* heavy|strong=\"H7451\"* burden that|strong=\"H3605\"* God|strong=\"H5414\"*+ 1:13 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* has|strong=\"H3820\"* given|strong=\"H5414\"* to|strong=\"H6213\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"* to|strong=\"H6213\"* be|strong=\"H1121\"* afflicted|strong=\"H6031\"* with|strong=\"H6213\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H2009\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* works|strong=\"H4639\"* that|strong=\"H7200\"* are|strong=\"H4639\"* done|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*; and|strong=\"H7200\"* behold|strong=\"H2009\"*, all|strong=\"H3605\"* is|strong=\"H2009\"* vanity|strong=\"H1892\"* and|strong=\"H7200\"* a|strong=\"H3068\"* chasing|strong=\"H7469\"* after|strong=\"H7469\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 15, + "text": "That|strong=\"H3808\"* which is|strong=\"H3808\"* crooked|strong=\"H5791\"* can|strong=\"H3201\"*’t be|strong=\"H3808\"* made straight|strong=\"H8626\"*; and|strong=\"H3808\"* that|strong=\"H3808\"* which is|strong=\"H3808\"* lacking|strong=\"H2642\"* can|strong=\"H3201\"*’t be|strong=\"H3808\"* counted|strong=\"H4487\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"H2009\"* said|strong=\"H1696\"* to|strong=\"H1696\"* myself|strong=\"H3820\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H1961\"* obtained for|strong=\"H5921\"* myself|strong=\"H3820\"* great|strong=\"H1431\"* wisdom|strong=\"H2451\"* above|strong=\"H5921\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1961\"* before|strong=\"H6440\"* me|strong=\"H6440\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*. Yes|strong=\"H2009\"*, my|strong=\"H3605\"* heart|strong=\"H3820\"* has|strong=\"H1961\"* had|strong=\"H1961\"* great|strong=\"H1431\"* experience|strong=\"H7200\"* of|strong=\"H6440\"* wisdom|strong=\"H2451\"* and|strong=\"H3389\"* knowledge|strong=\"H1847\"*.”" + }, + { + "verseNum": 17, + "text": "I|strong=\"H5414\"* applied|strong=\"H5414\"* my|strong=\"H5414\"* heart|strong=\"H3820\"* to|strong=\"H5414\"* know|strong=\"H3045\"* wisdom|strong=\"H2451\"*, and|strong=\"H2451\"* to|strong=\"H5414\"* know|strong=\"H3045\"* madness|strong=\"H1947\"* and|strong=\"H2451\"* folly|strong=\"H5531\"*. I|strong=\"H5414\"* perceived|strong=\"H3045\"* that|strong=\"H3045\"* this|strong=\"H2088\"* also|strong=\"H1571\"* was|strong=\"H3820\"* a|strong=\"H3068\"* chasing|strong=\"H7475\"* after|strong=\"H7475\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* in|strong=\"H7227\"* much|strong=\"H7227\"* wisdom|strong=\"H2451\"* is|strong=\"H2451\"* much|strong=\"H7227\"* grief|strong=\"H3708\"*; and|strong=\"H2451\"* he|strong=\"H3588\"* who|strong=\"H7227\"* increases|strong=\"H3254\"* knowledge|strong=\"H1847\"* increases|strong=\"H3254\"* sorrow|strong=\"H4341\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H2009\"* said in|strong=\"H3212\"* my|strong=\"H7200\"* heart|strong=\"H3820\"*, “Come|strong=\"H3212\"* now|strong=\"H4994\"*, I|strong=\"H2009\"* will|strong=\"H1571\"* test|strong=\"H5254\"* you|strong=\"H7200\"* with|strong=\"H3212\"* mirth|strong=\"H8057\"*; therefore|strong=\"H1571\"* enjoy|strong=\"H7200\"* pleasure|strong=\"H8057\"*;” and|strong=\"H3212\"* behold|strong=\"H2009\"*, this|strong=\"H1931\"* also|strong=\"H1571\"* was|strong=\"H3820\"* vanity|strong=\"H1892\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H4100\"* said of|strong=\"H6213\"* laughter|strong=\"H7814\"*, “It|strong=\"H6213\"* is|strong=\"H4100\"* foolishness;” and|strong=\"H6213\"* of|strong=\"H6213\"* mirth|strong=\"H8057\"*, “What|strong=\"H4100\"* does|strong=\"H6213\"* it|strong=\"H6213\"* accomplish|strong=\"H6213\"*?”" + }, + { + "verseNum": 3, + "text": "I|strong=\"H3117\"* searched|strong=\"H8446\"* in|strong=\"H6213\"* my|strong=\"H7200\"* heart|strong=\"H3820\"* how|strong=\"H5704\"* to|strong=\"H5704\"* cheer my|strong=\"H7200\"* flesh|strong=\"H1320\"* with|strong=\"H6213\"* wine|strong=\"H3196\"*, my|strong=\"H7200\"* heart|strong=\"H3820\"* yet|strong=\"H5704\"* guiding|strong=\"H5090\"* me|strong=\"H7200\"* with|strong=\"H6213\"* wisdom|strong=\"H2451\"*, and|strong=\"H1121\"* how|strong=\"H5704\"* to|strong=\"H5704\"* lay|strong=\"H1121\"* hold|strong=\"H6213\"* of|strong=\"H1121\"* folly|strong=\"H5531\"*, until|strong=\"H5704\"* I|strong=\"H3117\"* might|strong=\"H1121\"* see|strong=\"H7200\"* what|strong=\"H2896\"* it|strong=\"H6213\"* was|strong=\"H3820\"* good|strong=\"H2896\"* for|strong=\"H5704\"* the|strong=\"H7200\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"* that|strong=\"H7200\"* they|strong=\"H3117\"* should|strong=\"H3117\"* do|strong=\"H6213\"* under|strong=\"H8478\"* heaven|strong=\"H8064\"* all|strong=\"H7200\"* the|strong=\"H7200\"* days|strong=\"H3117\"* of|strong=\"H1121\"* their|strong=\"H7200\"* lives|strong=\"H2416\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H1004\"* made|strong=\"H4639\"* myself great|strong=\"H1431\"* works|strong=\"H4639\"*. I|strong=\"H1004\"* built|strong=\"H1129\"* myself houses|strong=\"H1004\"*. I|strong=\"H1004\"* planted|strong=\"H5193\"* myself vineyards|strong=\"H3754\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3605\"* made|strong=\"H6213\"* myself gardens|strong=\"H1593\"* and|strong=\"H6086\"* parks|strong=\"H6508\"*, and|strong=\"H6086\"* I|strong=\"H3605\"* planted|strong=\"H5193\"* trees|strong=\"H6086\"* in|strong=\"H6213\"* them|strong=\"H6213\"* of|strong=\"H6086\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H6086\"* fruit|strong=\"H6529\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H6779\"* made|strong=\"H6213\"* myself pools|strong=\"H1295\"* of|strong=\"H4325\"* water|strong=\"H4325\"*, to|strong=\"H6213\"* water|strong=\"H4325\"* the|strong=\"H6213\"* forest|strong=\"H3293\"* where|strong=\"H1992\"* trees|strong=\"H6086\"* were|strong=\"H4325\"* grown|strong=\"H6779\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H5650\"* bought|strong=\"H7069\"* male|strong=\"H5650\"* servants|strong=\"H5650\"* and|strong=\"H1121\"* female|strong=\"H8198\"* servants|strong=\"H5650\"*, and|strong=\"H1121\"* had|strong=\"H1961\"* servants|strong=\"H5650\"* born|strong=\"H1121\"* in|strong=\"H1004\"* my|strong=\"H3605\"* house|strong=\"H1004\"*. I|strong=\"H5650\"* also|strong=\"H1571\"* had|strong=\"H1961\"* great|strong=\"H7235\"* possessions|strong=\"H4735\"* of|strong=\"H1121\"* herds|strong=\"H1241\"* and|strong=\"H1121\"* flocks|strong=\"H6629\"*, above|strong=\"H6440\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1961\"* before|strong=\"H6440\"* me|strong=\"H6440\"* in|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H1571\"* also|strong=\"H1571\"* gathered|strong=\"H3664\"* silver|strong=\"H3701\"* and|strong=\"H1121\"* gold|strong=\"H2091\"* for|strong=\"H6213\"* myself|strong=\"H1571\"*, and|strong=\"H1121\"* the|strong=\"H6213\"* treasure|strong=\"H5459\"* of|strong=\"H1121\"* kings|strong=\"H4428\"* and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6213\"* provinces|strong=\"H4082\"*. I|strong=\"H1571\"* got myself|strong=\"H1571\"* male|strong=\"H7891\"* and|strong=\"H1121\"* female singers|strong=\"H7891\"*, and|strong=\"H1121\"* the|strong=\"H6213\"* delights|strong=\"H8588\"* of|strong=\"H1121\"* the|strong=\"H6213\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"*: musical instruments|strong=\"H7705\"* of|strong=\"H1121\"* all|strong=\"H6213\"* sorts." + }, + { + "verseNum": 9, + "text": "So|strong=\"H1961\"* I|strong=\"H6440\"* was|strong=\"H1961\"* great|strong=\"H1431\"*, and|strong=\"H3389\"* increased|strong=\"H3254\"* more|strong=\"H3254\"* than|strong=\"H3605\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1961\"* before|strong=\"H6440\"* me|strong=\"H6440\"* in|strong=\"H6440\"* Jerusalem|strong=\"H3389\"*. My|strong=\"H3605\"* wisdom|strong=\"H2451\"* also|strong=\"H3254\"* remained|strong=\"H5975\"* with|strong=\"H3389\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "Whatever|strong=\"H3605\"* my|strong=\"H3605\"* eyes|strong=\"H5869\"* desired|strong=\"H7592\"*, I|strong=\"H3588\"* didn’t keep|strong=\"H4513\"* from|strong=\"H5869\"* them|strong=\"H1992\"*. I|strong=\"H3588\"* didn’t withhold|strong=\"H4513\"* my|strong=\"H3605\"* heart|strong=\"H3820\"* from|strong=\"H5869\"* any|strong=\"H3605\"* joy|strong=\"H8057\"*, for|strong=\"H3588\"* my|strong=\"H3605\"* heart|strong=\"H3820\"* rejoiced|strong=\"H8055\"* because|strong=\"H3588\"* of|strong=\"H5869\"* all|strong=\"H3605\"* my|strong=\"H3605\"* labor|strong=\"H5999\"*, and|strong=\"H5869\"* this|strong=\"H2088\"* was|strong=\"H1961\"* my|strong=\"H3605\"* portion|strong=\"H2506\"* from|strong=\"H5869\"* all|strong=\"H3605\"* my|strong=\"H3605\"* labor|strong=\"H5999\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H2009\"* I|strong=\"H2009\"* looked|strong=\"H6437\"* at|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* works|strong=\"H4639\"* that|strong=\"H3605\"* my|strong=\"H3605\"* hands|strong=\"H3027\"* had|strong=\"H3027\"* worked|strong=\"H6213\"*, and|strong=\"H3027\"* at|strong=\"H6213\"* the|strong=\"H3605\"* labor|strong=\"H5999\"* that|strong=\"H3605\"* I|strong=\"H2009\"* had|strong=\"H3027\"* labored|strong=\"H5998\"* to|strong=\"H6213\"* do|strong=\"H6213\"*; and|strong=\"H3027\"* behold|strong=\"H2009\"*, all|strong=\"H3605\"* was|strong=\"H7307\"* vanity|strong=\"H1892\"* and|strong=\"H3027\"* a|strong=\"H3068\"* chasing|strong=\"H7469\"* after|strong=\"H7469\"* wind|strong=\"H7307\"*, and|strong=\"H3027\"* there|strong=\"H2009\"* was|strong=\"H7307\"* no|strong=\"H6213\"* profit|strong=\"H3504\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H3588\"* turned|strong=\"H6437\"* myself to|strong=\"H6213\"* consider|strong=\"H7200\"* wisdom|strong=\"H2451\"*, madness|strong=\"H1947\"*, and|strong=\"H4428\"* folly|strong=\"H5531\"*; for|strong=\"H3588\"* what|strong=\"H4100\"* can|strong=\"H4100\"* the|strong=\"H7200\"* king|strong=\"H4428\"*’s successor do|strong=\"H6213\"*? Just|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H4100\"* has|strong=\"H4428\"* been|strong=\"H3528\"* done|strong=\"H6213\"* long|strong=\"H4100\"* ago." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H7200\"* I|strong=\"H7200\"* saw|strong=\"H7200\"* that|strong=\"H7200\"* wisdom|strong=\"H2451\"* excels|strong=\"H3504\"* folly|strong=\"H5531\"*, as|strong=\"H5531\"* far|strong=\"H4480\"* as|strong=\"H5531\"* light excels|strong=\"H3504\"* darkness|strong=\"H2822\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3605\"* wise|strong=\"H2450\"* man|strong=\"H2450\"*’s eyes|strong=\"H5869\"* are|strong=\"H5869\"* in|strong=\"H1980\"* his|strong=\"H3605\"* head|strong=\"H7218\"*, and|strong=\"H1980\"* the|strong=\"H3605\"* fool|strong=\"H3684\"* walks|strong=\"H1980\"* in|strong=\"H1980\"* darkness|strong=\"H2822\"*—and|strong=\"H1980\"* yet|strong=\"H1571\"* I|strong=\"H3045\"* perceived|strong=\"H3045\"* that|strong=\"H3045\"* one|strong=\"H3605\"* event|strong=\"H4745\"* happens|strong=\"H7136\"* to|strong=\"H1980\"* them|strong=\"H7136\"* all|strong=\"H3605\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H1696\"* I|strong=\"H2088\"* said|strong=\"H1696\"* in|strong=\"H1696\"* my|strong=\"H1696\"* heart|strong=\"H3820\"*, “As|strong=\"H1571\"* it|strong=\"H1696\"* happens|strong=\"H7136\"* to|strong=\"H1696\"* the|strong=\"H1696\"* fool|strong=\"H3684\"*, so|strong=\"H1571\"* will|strong=\"H1571\"* it|strong=\"H1696\"* happen|strong=\"H7136\"* even|strong=\"H1571\"* to|strong=\"H1696\"* me|strong=\"H1696\"*; and|strong=\"H1892\"* why|strong=\"H4100\"* was|strong=\"H3820\"* I|strong=\"H2088\"* then|strong=\"H1696\"* more|strong=\"H3148\"* wise|strong=\"H2449\"*?” Then|strong=\"H1696\"* I|strong=\"H2088\"* said|strong=\"H1696\"* in|strong=\"H1696\"* my|strong=\"H1696\"* heart|strong=\"H3820\"* that|strong=\"H2088\"* this|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* of|strong=\"H3117\"* the|strong=\"H3605\"* wise|strong=\"H2450\"* man|strong=\"H2450\"*, even|strong=\"H3588\"* as|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* fool|strong=\"H3684\"*, there|strong=\"H3117\"* is|strong=\"H3117\"* no|strong=\"H3605\"* memory forever|strong=\"H5769\"*, since|strong=\"H3588\"* in|strong=\"H4191\"* the|strong=\"H3605\"* days|strong=\"H3117\"* to|strong=\"H4191\"* come all|strong=\"H3605\"* will|strong=\"H3117\"* have|strong=\"H3117\"* been|strong=\"H5769\"* long|strong=\"H3117\"* forgotten|strong=\"H7911\"*. Indeed|strong=\"H3588\"*, the|strong=\"H3605\"* wise|strong=\"H2450\"* man|strong=\"H2450\"* must|strong=\"H4191\"* die|strong=\"H4191\"* just|strong=\"H3605\"* like|strong=\"H5973\"* the|strong=\"H3605\"* fool|strong=\"H3684\"*!" + }, + { + "verseNum": 17, + "text": "So|strong=\"H6213\"* I|strong=\"H3588\"* hated|strong=\"H8130\"* life|strong=\"H2416\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* work|strong=\"H4639\"* that|strong=\"H3588\"* is|strong=\"H3605\"* worked|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"* was|strong=\"H7307\"* grievous|strong=\"H7451\"* to|strong=\"H6213\"* me|strong=\"H8130\"*; for|strong=\"H3588\"* all|strong=\"H3605\"* is|strong=\"H3605\"* vanity|strong=\"H1892\"* and|strong=\"H6213\"* a|strong=\"H3068\"* chasing|strong=\"H7469\"* after|strong=\"H5921\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H8478\"* hated|strong=\"H8130\"* all|strong=\"H3605\"* my|strong=\"H3605\"* labor|strong=\"H5999\"* in|strong=\"H5999\"* which|strong=\"H3605\"* I|strong=\"H8478\"* labored|strong=\"H6001\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*, because|strong=\"H8478\"* I|strong=\"H8478\"* must leave|strong=\"H3240\"* it|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H3605\"* man|strong=\"H3605\"* who|strong=\"H3605\"* comes|strong=\"H1961\"* after|strong=\"H1961\"* me|strong=\"H8130\"*." + }, + { + "verseNum": 19, + "text": "Who|strong=\"H4310\"* knows|strong=\"H3045\"* whether|strong=\"H3045\"* he|strong=\"H3605\"* will|strong=\"H4310\"* be|strong=\"H1961\"* a|strong=\"H3068\"* wise|strong=\"H2450\"* man|strong=\"H2450\"* or|strong=\"H1571\"* a|strong=\"H3068\"* fool|strong=\"H5530\"*? Yet|strong=\"H1571\"* he|strong=\"H3605\"* will|strong=\"H4310\"* have|strong=\"H1961\"* rule|strong=\"H7980\"* over|strong=\"H7980\"* all|strong=\"H3605\"* of|strong=\"H8478\"* my|strong=\"H3605\"* labor|strong=\"H5999\"* in|strong=\"H2450\"* which|strong=\"H4310\"* I|strong=\"H3045\"* have|strong=\"H1961\"* labored|strong=\"H5998\"*, and|strong=\"H3045\"* in|strong=\"H2450\"* which|strong=\"H4310\"* I|strong=\"H3045\"* have|strong=\"H1961\"* shown|strong=\"H3045\"* myself|strong=\"H3045\"* wise|strong=\"H2450\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*. This|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"*." + }, + { + "verseNum": 20, + "text": "Therefore|strong=\"H5921\"* I|strong=\"H5921\"* began to|strong=\"H5921\"* cause|strong=\"H2976\"* my|strong=\"H3605\"* heart|strong=\"H3820\"* to|strong=\"H5921\"* despair|strong=\"H2976\"* concerning|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* labor|strong=\"H5999\"* in|strong=\"H5921\"* which|strong=\"H5998\"* I|strong=\"H5921\"* had|strong=\"H8121\"* labored|strong=\"H5998\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* man|strong=\"H7451\"* whose labor|strong=\"H5999\"* is|strong=\"H3426\"* with|strong=\"H1571\"* wisdom|strong=\"H2451\"*, with|strong=\"H1571\"* knowledge|strong=\"H1847\"*, and|strong=\"H2451\"* with|strong=\"H1571\"* skillfulness; yet|strong=\"H3588\"* he|strong=\"H3588\"* shall|strong=\"H3808\"* leave|strong=\"H5414\"* it|strong=\"H5414\"* for|strong=\"H3588\"* his|strong=\"H5414\"* portion|strong=\"H2506\"* to|strong=\"H5414\"* a|strong=\"H3068\"* man|strong=\"H7451\"* who|strong=\"H7227\"* has|strong=\"H3588\"* not|strong=\"H3808\"* labored|strong=\"H5998\"* for|strong=\"H3588\"* it|strong=\"H5414\"*. This|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H3426\"* vanity|strong=\"H1892\"* and|strong=\"H2451\"* a|strong=\"H3068\"* great|strong=\"H7227\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* what|strong=\"H4100\"* does|strong=\"H4100\"* a|strong=\"H3068\"* man|strong=\"H3605\"* have|strong=\"H3605\"* of|strong=\"H3820\"* all|strong=\"H3605\"* his|strong=\"H3605\"* labor|strong=\"H5999\"* and|strong=\"H5999\"* of|strong=\"H3820\"* the|strong=\"H3605\"* striving|strong=\"H7475\"* of|strong=\"H3820\"* his|strong=\"H3605\"* heart|strong=\"H3820\"*, in|strong=\"H8478\"* which|strong=\"H1931\"* he|strong=\"H1931\"* labors|strong=\"H6001\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*?" + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* his|strong=\"H3605\"* days|strong=\"H3117\"* are|strong=\"H3117\"* sorrows|strong=\"H4341\"*, and|strong=\"H3117\"* his|strong=\"H3605\"* travail|strong=\"H6045\"* is|strong=\"H2088\"* grief|strong=\"H3708\"*; yes|strong=\"H3588\"*, even|strong=\"H1571\"* in|strong=\"H3117\"* the|strong=\"H3605\"* night|strong=\"H3915\"* his|strong=\"H3605\"* heart|strong=\"H3820\"* takes no|strong=\"H3808\"* rest|strong=\"H7901\"*. This|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"*." + }, + { + "verseNum": 24, + "text": "There|strong=\"H7200\"* is|strong=\"H1931\"* nothing better|strong=\"H2896\"* for|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H5315\"* than|strong=\"H2896\"* that|strong=\"H3588\"* he|strong=\"H1931\"* should|strong=\"H3588\"* eat and|strong=\"H3027\"* drink|strong=\"H8354\"*, and|strong=\"H3027\"* make|strong=\"H7200\"* his|strong=\"H7200\"* soul|strong=\"H5315\"* enjoy|strong=\"H7200\"* good|strong=\"H2896\"* in|strong=\"H5315\"* his|strong=\"H7200\"* labor|strong=\"H5999\"*. This|strong=\"H1931\"* also|strong=\"H1571\"* I|strong=\"H3588\"* saw|strong=\"H7200\"*, that|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* from|strong=\"H5315\"* the|strong=\"H7200\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* God|strong=\"H3027\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"H3588\"* who|strong=\"H4310\"* can|strong=\"H4310\"* eat, or|strong=\"H4480\"* who|strong=\"H4310\"* can|strong=\"H4310\"* have|strong=\"H3588\"* enjoyment|strong=\"H2363\"*, more|strong=\"H4480\"* than|strong=\"H4480\"* I|strong=\"H3588\"*?" + }, + { + "verseNum": 26, + "text": "For|strong=\"H3588\"* to|strong=\"H5414\"* the|strong=\"H6440\"* man|strong=\"H2896\"* who|strong=\"H2896\"* pleases|strong=\"H2896\"* him|strong=\"H5414\"*, God|strong=\"H5414\"* gives|strong=\"H5414\"* wisdom|strong=\"H2451\"*, knowledge|strong=\"H1847\"*, and|strong=\"H2451\"* joy|strong=\"H8057\"*; but|strong=\"H3588\"* to|strong=\"H5414\"* the|strong=\"H6440\"* sinner|strong=\"H2398\"* he|strong=\"H3588\"* gives|strong=\"H5414\"* travail|strong=\"H6045\"*, to|strong=\"H5414\"* gather|strong=\"H3664\"* and|strong=\"H2451\"* to|strong=\"H5414\"* heap|strong=\"H5414\"* up|strong=\"H5414\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H1571\"* give|strong=\"H5414\"* to|strong=\"H5414\"* him|strong=\"H5414\"* who|strong=\"H2896\"* pleases|strong=\"H2896\"* God|strong=\"H5414\"*. This|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"* and|strong=\"H2451\"* a|strong=\"H3068\"* chasing|strong=\"H7469\"* after|strong=\"H7469\"* wind|strong=\"H7307\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"H8478\"* everything|strong=\"H3605\"* there|strong=\"H3605\"* is|strong=\"H3605\"* a|strong=\"H3068\"* season|strong=\"H6256\"*, and|strong=\"H8064\"* a|strong=\"H3068\"* time|strong=\"H6256\"* for|strong=\"H8478\"* every|strong=\"H3605\"* purpose|strong=\"H2656\"* under|strong=\"H8478\"* heaven|strong=\"H8064\"*:" + }, + { + "verseNum": 2, + "text": "a|strong=\"H3068\"* time|strong=\"H6256\"* to|strong=\"H4191\"* be|strong=\"H4191\"* born|strong=\"H3205\"*," + }, + { + "verseNum": 3, + "text": "a|strong=\"H3068\"* time|strong=\"H6256\"* to|strong=\"H6256\"* kill|strong=\"H2026\"*," + }, + { + "verseNum": 4, + "text": "a|strong=\"H3068\"* time|strong=\"H6256\"* to|strong=\"H6256\"* weep|strong=\"H1058\"*," + }, + { + "verseNum": 5, + "text": "a|strong=\"H3068\"* time|strong=\"H6256\"* to|strong=\"H6256\"* cast|strong=\"H7993\"* away|strong=\"H7993\"* stones," + }, + { + "verseNum": 6, + "text": "a|strong=\"H3068\"* time|strong=\"H6256\"* to|strong=\"H6256\"* seek|strong=\"H1245\"*," + }, + { + "verseNum": 7, + "text": "a|strong=\"H3068\"* time|strong=\"H6256\"* to|strong=\"H1696\"* tear|strong=\"H7167\"*," + }, + { + "verseNum": 8, + "text": "a|strong=\"H3068\"* time|strong=\"H6256\"* to|strong=\"H6256\"* love," + }, + { + "verseNum": 9, + "text": "What|strong=\"H4100\"* profit|strong=\"H3504\"* has|strong=\"H4100\"* he|strong=\"H1931\"* who|strong=\"H1931\"* works|strong=\"H6213\"* in|strong=\"H6213\"* that|strong=\"H1931\"* in|strong=\"H6213\"* which|strong=\"H1931\"* he|strong=\"H1931\"* labors|strong=\"H6001\"*?" + }, + { + "verseNum": 10, + "text": "I|strong=\"H5414\"* have|strong=\"H1121\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* burden which God|strong=\"H5414\"* has|strong=\"H1121\"* given|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H7200\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"* to|strong=\"H5414\"* be|strong=\"H1121\"* afflicted|strong=\"H6031\"* with|strong=\"H6031\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H5704\"* has|strong=\"H3820\"* made|strong=\"H6213\"* everything|strong=\"H3605\"* beautiful|strong=\"H3303\"* in|strong=\"H6213\"* its|strong=\"H3605\"* time|strong=\"H6256\"*. He|strong=\"H5704\"* has|strong=\"H3820\"* also|strong=\"H1571\"* set|strong=\"H5414\"* eternity|strong=\"H5769\"* in|strong=\"H6213\"* their|strong=\"H3605\"* hearts|strong=\"H3820\"*, yet|strong=\"H1571\"* so|strong=\"H6213\"* that|strong=\"H3605\"* man|strong=\"H3605\"* can|strong=\"H6213\"*’t find|strong=\"H4672\"* out|strong=\"H4672\"* the|strong=\"H3605\"* work|strong=\"H4639\"* that|strong=\"H3605\"* God|strong=\"H5414\"* has|strong=\"H3820\"* done|strong=\"H6213\"* from|strong=\"H5704\"* the|strong=\"H3605\"* beginning|strong=\"H7218\"* even|strong=\"H1571\"* to|strong=\"H5704\"* the|strong=\"H3605\"* end|strong=\"H5490\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* there|strong=\"H3045\"* is|strong=\"H2896\"* nothing better|strong=\"H2896\"* for|strong=\"H3588\"* them|strong=\"H6213\"* than|strong=\"H2896\"* to|strong=\"H6213\"* rejoice|strong=\"H8055\"*, and|strong=\"H6213\"* to|strong=\"H6213\"* do|strong=\"H6213\"* good|strong=\"H2896\"* as|strong=\"H6213\"* long as|strong=\"H6213\"* they|strong=\"H3588\"* live|strong=\"H2416\"*." + }, + { + "verseNum": 13, + "text": "Also|strong=\"H1571\"* that|strong=\"H7200\"* every|strong=\"H3605\"* man|strong=\"H2896\"* should eat and|strong=\"H7200\"* drink|strong=\"H8354\"*, and|strong=\"H7200\"* enjoy|strong=\"H7200\"* good|strong=\"H2896\"* in|strong=\"H7200\"* all|strong=\"H3605\"* his|strong=\"H3605\"* labor|strong=\"H5999\"*, is|strong=\"H1931\"* the|strong=\"H3605\"* gift|strong=\"H4991\"* of|strong=\"H3605\"* God." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* whatever|strong=\"H3605\"* God does|strong=\"H6213\"*, it|strong=\"H1931\"* shall|strong=\"H1931\"* be|strong=\"H1961\"* forever|strong=\"H5769\"*. Nothing|strong=\"H3605\"* can|strong=\"H3254\"* be|strong=\"H1961\"* added|strong=\"H3254\"* to|strong=\"H1961\"* it|strong=\"H1931\"*, nor|strong=\"H3372\"* anything|strong=\"H3605\"* taken|strong=\"H1639\"* from|strong=\"H4480\"* it|strong=\"H1931\"*; and|strong=\"H5769\"* God has|strong=\"H1961\"* done|strong=\"H6213\"* it|strong=\"H1931\"*, that|strong=\"H3588\"* men|strong=\"H6213\"* should|strong=\"H3588\"* fear|strong=\"H3372\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 15, + "text": "That|strong=\"H1931\"* which|strong=\"H1931\"* is|strong=\"H1931\"* has|strong=\"H1961\"* been|strong=\"H1961\"* long|strong=\"H4100\"* ago, and|strong=\"H1961\"* that|strong=\"H1931\"* which|strong=\"H1931\"* is|strong=\"H1931\"* to|strong=\"H1961\"* be|strong=\"H1961\"* has|strong=\"H1961\"* been|strong=\"H1961\"* long|strong=\"H4100\"* ago. God seeks|strong=\"H1245\"* again|strong=\"H1961\"* that|strong=\"H1931\"* which|strong=\"H1931\"* is|strong=\"H1931\"* passed|strong=\"H7291\"* away." + }, + { + "verseNum": 16, + "text": "Moreover|strong=\"H5750\"* I|strong=\"H7200\"* saw|strong=\"H7200\"* under|strong=\"H8478\"* the|strong=\"H7200\"* sun|strong=\"H8121\"*, in|strong=\"H4725\"* the|strong=\"H7200\"* place|strong=\"H4725\"* of|strong=\"H8478\"* justice|strong=\"H4941\"*, that|strong=\"H7200\"* wickedness|strong=\"H7562\"* was|strong=\"H4725\"* there|strong=\"H8033\"*; and|strong=\"H4941\"* in|strong=\"H4725\"* the|strong=\"H7200\"* place|strong=\"H4725\"* of|strong=\"H8478\"* righteousness|strong=\"H6664\"*, that|strong=\"H7200\"* wickedness|strong=\"H7562\"* was|strong=\"H4725\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H3588\"* said in|strong=\"H5921\"* my|strong=\"H3605\"* heart|strong=\"H3820\"*, “God will|strong=\"H6662\"* judge|strong=\"H8199\"* the|strong=\"H3605\"* righteous|strong=\"H6662\"* and|strong=\"H8033\"* the|strong=\"H3605\"* wicked|strong=\"H7563\"*; for|strong=\"H3588\"* there|strong=\"H8033\"* is|strong=\"H3820\"* a|strong=\"H3068\"* time|strong=\"H6256\"* there|strong=\"H8033\"* for|strong=\"H3588\"* every|strong=\"H3605\"* purpose|strong=\"H2656\"* and|strong=\"H8033\"* for|strong=\"H3588\"* every|strong=\"H3605\"* work|strong=\"H4639\"*.”" + }, + { + "verseNum": 18, + "text": "I|strong=\"H5921\"* said in|strong=\"H5921\"* my|strong=\"H7200\"* heart|strong=\"H3820\"*, “As|strong=\"H1121\"* for|strong=\"H5921\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"*, God tests them|strong=\"H1992\"*, so|strong=\"H7200\"* that|strong=\"H7200\"* they|strong=\"H1992\"* may|strong=\"H1121\"* see|strong=\"H7200\"* that|strong=\"H7200\"* they|strong=\"H1992\"* themselves|strong=\"H1992\"* are|strong=\"H1992\"* like|strong=\"H3820\"* animals." + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* that|strong=\"H3588\"* which|strong=\"H2088\"* happens to|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"* happens to|strong=\"H1121\"* animals. Even|strong=\"H3588\"* one|strong=\"H2088\"* thing|strong=\"H2088\"* happens to|strong=\"H1121\"* them|strong=\"H1121\"*. As|strong=\"H3651\"* the|strong=\"H3605\"* one|strong=\"H2088\"* dies|strong=\"H4194\"*, so|strong=\"H3651\"* the|strong=\"H3605\"* other|strong=\"H2088\"* dies|strong=\"H4194\"*. Yes|strong=\"H3588\"*, they|strong=\"H3588\"* have|strong=\"H1121\"* all|strong=\"H3605\"* one|strong=\"H2088\"* breath|strong=\"H7307\"*; and|strong=\"H1121\"* man|strong=\"H1121\"* has|strong=\"H3588\"* no|strong=\"H4480\"* advantage|strong=\"H4195\"* over|strong=\"H4480\"* the|strong=\"H3605\"* animals, for|strong=\"H3588\"* all|strong=\"H3605\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"*." + }, + { + "verseNum": 20, + "text": "All|strong=\"H3605\"* go|strong=\"H1980\"* to|strong=\"H1980\"* one|strong=\"H3605\"* place|strong=\"H4725\"*. All|strong=\"H3605\"* are|strong=\"H1961\"* from|strong=\"H4480\"* the|strong=\"H3605\"* dust|strong=\"H6083\"*, and|strong=\"H1980\"* all|strong=\"H3605\"* turn|strong=\"H7725\"* to|strong=\"H1980\"* dust|strong=\"H6083\"* again|strong=\"H7725\"*." + }, + { + "verseNum": 21, + "text": "Who|strong=\"H4310\"* knows|strong=\"H3045\"* the|strong=\"H3045\"* spirit|strong=\"H7307\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, whether|strong=\"H3045\"* it|strong=\"H1931\"* goes|strong=\"H5927\"* upward|strong=\"H4605\"*, and|strong=\"H1121\"* the|strong=\"H3045\"* spirit|strong=\"H7307\"* of|strong=\"H1121\"* the|strong=\"H3045\"* animal, whether|strong=\"H3045\"* it|strong=\"H1931\"* goes|strong=\"H5927\"* downward|strong=\"H4295\"* to|strong=\"H3381\"* the|strong=\"H3045\"* earth|strong=\"H5927\"*?”" + }, + { + "verseNum": 22, + "text": "Therefore|strong=\"H3588\"* I|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* there|strong=\"H1961\"* is|strong=\"H1931\"* nothing|strong=\"H4100\"* better|strong=\"H2896\"* than|strong=\"H2896\"* that|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H2896\"* should|strong=\"H4100\"* rejoice|strong=\"H8055\"* in|strong=\"H8055\"* his|strong=\"H7200\"* works|strong=\"H4639\"*, for|strong=\"H3588\"* that|strong=\"H3588\"* is|strong=\"H1931\"* his|strong=\"H7200\"* portion|strong=\"H2506\"*; for|strong=\"H3588\"* who|strong=\"H4310\"* can|strong=\"H4310\"* bring|strong=\"H1961\"* him|strong=\"H7200\"* to|strong=\"H1961\"* see|strong=\"H7200\"* what|strong=\"H4100\"* will|strong=\"H4310\"* be|strong=\"H1961\"* after|strong=\"H1961\"* him|strong=\"H7200\"*?" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H2009\"* I|strong=\"H2009\"* returned|strong=\"H7725\"* and|strong=\"H7725\"* saw|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* oppressions|strong=\"H6217\"* that|strong=\"H7200\"* are|strong=\"H3027\"* done|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*: and|strong=\"H7725\"* behold|strong=\"H2009\"*, the|strong=\"H3605\"* tears|strong=\"H1832\"* of|strong=\"H3027\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3027\"* oppressed|strong=\"H6231\"*, and|strong=\"H7725\"* they|strong=\"H6213\"* had|strong=\"H3027\"* no|strong=\"H6213\"* comforter|strong=\"H5162\"*; and|strong=\"H7725\"* on|strong=\"H7200\"* the|strong=\"H3605\"* side|strong=\"H3027\"* of|strong=\"H3027\"* their|strong=\"H3605\"* oppressors|strong=\"H6231\"* there|strong=\"H2009\"* was|strong=\"H3027\"* power|strong=\"H3027\"*; but|strong=\"H7200\"* they|strong=\"H6213\"* had|strong=\"H3027\"* no|strong=\"H6213\"* comforter|strong=\"H5162\"*." + }, + { + "verseNum": 2, + "text": "Therefore I|strong=\"H4480\"* praised|strong=\"H7623\"* the|strong=\"H4480\"* dead|strong=\"H4191\"* who|strong=\"H1992\"* have|strong=\"H1992\"* been|strong=\"H3528\"* long dead|strong=\"H4191\"* more|strong=\"H4480\"* than|strong=\"H4480\"* the|strong=\"H4480\"* living|strong=\"H2416\"* who|strong=\"H1992\"* are|strong=\"H1992\"* yet|strong=\"H5728\"* alive|strong=\"H2416\"*." + }, + { + "verseNum": 3, + "text": "Yes|strong=\"H7200\"*, better|strong=\"H2896\"* than|strong=\"H2896\"* them|strong=\"H6213\"* both|strong=\"H8147\"* is|strong=\"H2896\"* him|strong=\"H6213\"* who|strong=\"H2896\"* has|strong=\"H1961\"* not|strong=\"H3808\"* yet|strong=\"H3808\"* been|strong=\"H1961\"*, who|strong=\"H2896\"* has|strong=\"H1961\"* not|strong=\"H3808\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* evil|strong=\"H7451\"* work|strong=\"H4639\"* that|strong=\"H7200\"* is|strong=\"H2896\"* done|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H7200\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H2088\"* I|strong=\"H3588\"* saw|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* labor|strong=\"H5999\"* and|strong=\"H7200\"* achievement that|strong=\"H3588\"* is|strong=\"H2088\"* the|strong=\"H3605\"* envy|strong=\"H7068\"* of|strong=\"H7307\"* a|strong=\"H3068\"* man|strong=\"H3605\"*’s neighbor|strong=\"H7453\"*. This|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"* and|strong=\"H7200\"* a|strong=\"H3068\"* striving|strong=\"H7469\"* after|strong=\"H7469\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3027\"* fool|strong=\"H3684\"* folds|strong=\"H2263\"* his|strong=\"H3027\"* hands|strong=\"H3027\"* together|strong=\"H2263\"* and|strong=\"H3027\"* ruins himself|strong=\"H3027\"*." + }, + { + "verseNum": 6, + "text": "Better|strong=\"H2896\"* is|strong=\"H2896\"* a|strong=\"H3068\"* handful|strong=\"H4393\"*, with|strong=\"H2896\"* quietness|strong=\"H5183\"*, than|strong=\"H2896\"* two handfuls|strong=\"H4393\"* with|strong=\"H2896\"* labor|strong=\"H5999\"* and|strong=\"H2896\"* chasing|strong=\"H7469\"* after|strong=\"H7469\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H7725\"* I|strong=\"H7200\"* returned|strong=\"H7725\"* and|strong=\"H7725\"* saw|strong=\"H7200\"* vanity|strong=\"H1892\"* under|strong=\"H8478\"* the|strong=\"H7200\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 8, + "text": "There|strong=\"H3426\"* is|strong=\"H3426\"* one|strong=\"H2088\"* who|strong=\"H4310\"* is|strong=\"H3426\"* alone|strong=\"H1931\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* has|strong=\"H4310\"* neither|strong=\"H3808\"* son|strong=\"H1121\"* nor|strong=\"H3808\"* brother. There|strong=\"H3426\"* is|strong=\"H3426\"* no|strong=\"H3808\"* end|strong=\"H7093\"* to|strong=\"H1121\"* all|strong=\"H3605\"* of|strong=\"H1121\"* his|strong=\"H3605\"* labor|strong=\"H5999\"*, neither|strong=\"H3808\"* are|strong=\"H1121\"* his|strong=\"H3605\"* eyes|strong=\"H5869\"* satisfied|strong=\"H7646\"* with|strong=\"H7646\"* wealth|strong=\"H6239\"*. “For|strong=\"H1121\"* whom|strong=\"H4310\"* then|strong=\"H2088\"* do|strong=\"H5869\"* I|strong=\"H5315\"* labor|strong=\"H5999\"* and|strong=\"H1121\"* deprive my|strong=\"H3605\"* soul|strong=\"H5315\"* of|strong=\"H1121\"* enjoyment|strong=\"H2896\"*?” This|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H3426\"* vanity|strong=\"H1892\"*. Yes|strong=\"H1571\"*, it|strong=\"H1931\"* is|strong=\"H3426\"* a|strong=\"H3068\"* miserable|strong=\"H7451\"* business|strong=\"H6045\"*." + }, + { + "verseNum": 9, + "text": "Two|strong=\"H8147\"* are|strong=\"H1992\"* better|strong=\"H2896\"* than|strong=\"H4480\"* one|strong=\"H4480\"*, because|strong=\"H4480\"* they|strong=\"H1992\"* have|strong=\"H3426\"* a|strong=\"H3068\"* good|strong=\"H2896\"* reward|strong=\"H7939\"* for|strong=\"H5999\"* their|strong=\"H1992\"* labor|strong=\"H5999\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* if|strong=\"H3588\"* they|strong=\"H3588\"* fall|strong=\"H5307\"*, the|strong=\"H3588\"* one|strong=\"H3588\"* will|strong=\"H5307\"* lift|strong=\"H6965\"* up|strong=\"H6965\"* his|strong=\"H6965\"* fellow|strong=\"H2270\"*; but|strong=\"H3588\"* woe to|strong=\"H6965\"* him|strong=\"H3588\"* who|strong=\"H3588\"* is|strong=\"H3588\"* alone when|strong=\"H3588\"* he|strong=\"H3588\"* falls|strong=\"H5307\"*, and|strong=\"H6965\"* doesn’t have|strong=\"H3588\"* another|strong=\"H8145\"* to|strong=\"H6965\"* lift|strong=\"H6965\"* him|strong=\"H3588\"* up|strong=\"H6965\"*." + }, + { + "verseNum": 11, + "text": "Again|strong=\"H1571\"*, if two|strong=\"H8147\"* lie|strong=\"H7901\"* together|strong=\"H1571\"*, then|strong=\"H1571\"* they|strong=\"H1571\"* have|strong=\"H1571\"* warmth; but|strong=\"H1571\"* how can|strong=\"H8147\"* one|strong=\"H1571\"* keep|strong=\"H2552\"* warm|strong=\"H2552\"* alone?" + }, + { + "verseNum": 12, + "text": "If a|strong=\"H3068\"* man prevails against|strong=\"H5048\"* one|strong=\"H3808\"* who|strong=\"H5975\"* is|strong=\"H5975\"* alone, two|strong=\"H8147\"* shall|strong=\"H3808\"* withstand|strong=\"H5975\"* him|strong=\"H5975\"*; and|strong=\"H5975\"* a|strong=\"H3068\"* threefold|strong=\"H8027\"* cord|strong=\"H2339\"* is|strong=\"H5975\"* not|strong=\"H3808\"* quickly|strong=\"H4120\"* broken|strong=\"H5423\"*." + }, + { + "verseNum": 13, + "text": "Better|strong=\"H2896\"* is|strong=\"H2896\"* a|strong=\"H3068\"* poor|strong=\"H4542\"* and|strong=\"H4428\"* wise|strong=\"H2450\"* youth|strong=\"H3206\"* than|strong=\"H2896\"* an|strong=\"H4428\"* old|strong=\"H2205\"* and|strong=\"H4428\"* foolish|strong=\"H3684\"* king|strong=\"H4428\"* who|strong=\"H4428\"* doesn’t know|strong=\"H3045\"* how|strong=\"H3045\"* to|strong=\"H4428\"* receive|strong=\"H2094\"* admonition any|strong=\"H5750\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* out|strong=\"H3318\"* of|strong=\"H1004\"* prison|strong=\"H1004\"* he|strong=\"H3588\"* came|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* be|strong=\"H1571\"* king|strong=\"H4427\"*; yes|strong=\"H3588\"*, even|strong=\"H1571\"* in|strong=\"H1004\"* his|strong=\"H3588\"* kingdom|strong=\"H4438\"* he|strong=\"H3588\"* was|strong=\"H1004\"* born|strong=\"H3205\"* poor|strong=\"H7326\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H7200\"* saw|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* living|strong=\"H2416\"* who|strong=\"H3605\"* walk|strong=\"H1980\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*, that|strong=\"H7200\"* they|strong=\"H3605\"* were|strong=\"H7200\"* with|strong=\"H5973\"* the|strong=\"H3605\"* youth|strong=\"H3206\"*, the|strong=\"H3605\"* other|strong=\"H8145\"*, who|strong=\"H3605\"* succeeded|strong=\"H8478\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 16, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* end|strong=\"H7093\"* of|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, even|strong=\"H1571\"* of|strong=\"H6440\"* all|strong=\"H3605\"* them|strong=\"H6440\"* over|strong=\"H6440\"* whom|strong=\"H6440\"* he|strong=\"H3588\"* was|strong=\"H1961\"*—yet|strong=\"H3588\"* those|strong=\"H3605\"* who|strong=\"H3605\"* come|strong=\"H1961\"* after|strong=\"H7093\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* rejoice|strong=\"H8055\"* in|strong=\"H6440\"* him|strong=\"H6440\"*. Surely|strong=\"H3588\"* this|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"* and|strong=\"H5971\"* a|strong=\"H3068\"* chasing|strong=\"H7475\"* after|strong=\"H7093\"* wind|strong=\"H7307\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Guard your|strong=\"H5921\"* steps when|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H3318\"* to|strong=\"H3318\"* God|strong=\"H8064\"*’s house; for|strong=\"H3588\"* to|strong=\"H3318\"* draw|strong=\"H3318\"* near|strong=\"H6440\"* to|strong=\"H3318\"* listen is|strong=\"H3820\"* better|strong=\"H5921\"* than|strong=\"H5921\"* to|strong=\"H3318\"* give|strong=\"H1961\"* the|strong=\"H6440\"* sacrifice of|strong=\"H1697\"* fools, for|strong=\"H3588\"* they|strong=\"H3588\"* don’t know that|strong=\"H3588\"* they|strong=\"H3588\"* do|strong=\"H3318\"* evil." + }, + { + "verseNum": 2, + "text": "Don’t be|strong=\"H1697\"* rash with|strong=\"H1697\"* your|strong=\"H3588\"* mouth, and|strong=\"H6963\"* don’t let your|strong=\"H3588\"* heart be|strong=\"H1697\"* hasty to|strong=\"H1697\"* utter anything|strong=\"H1697\"* before God; for|strong=\"H3588\"* God is|strong=\"H1697\"* in|strong=\"H1697\"* heaven, and|strong=\"H6963\"* you|strong=\"H3588\"* on|strong=\"H1697\"* earth. Therefore|strong=\"H3588\"* let your|strong=\"H3588\"* words|strong=\"H1697\"* be|strong=\"H1697\"* few." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* as|strong=\"H3588\"* a|strong=\"H3068\"* dream comes with|strong=\"H7999\"* a|strong=\"H3068\"* multitude of|strong=\"H5088\"* cares, so|strong=\"H3588\"* a|strong=\"H3068\"* fool|strong=\"H3684\"*’s speech with|strong=\"H7999\"* a|strong=\"H3068\"* multitude of|strong=\"H5088\"* words." + }, + { + "verseNum": 4, + "text": "When you|strong=\"H3808\"* vow|strong=\"H5087\"* a|strong=\"H3068\"* vow|strong=\"H5087\"* to|strong=\"H2896\"* God|strong=\"H3808\"*, don’t defer to|strong=\"H2896\"* pay|strong=\"H7999\"* it|strong=\"H3808\"*; for|strong=\"H3808\"* he|strong=\"H3808\"* has no|strong=\"H3808\"* pleasure|strong=\"H2896\"* in|strong=\"H3808\"* fools. Pay|strong=\"H7999\"* that|strong=\"H3808\"* which you|strong=\"H3808\"* vow|strong=\"H5087\"*." + }, + { + "verseNum": 5, + "text": "It|strong=\"H5414\"* is|strong=\"H1931\"* better|strong=\"H3027\"* that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H4100\"* not|strong=\"H5414\"* vow|strong=\"H3027\"*, than|strong=\"H5921\"* that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H4100\"* vow|strong=\"H3027\"* and|strong=\"H3027\"* not|strong=\"H5414\"* pay|strong=\"H5414\"*." + }, + { + "verseNum": 6, + "text": "Don’t allow your|strong=\"H3588\"* mouth to|strong=\"H1697\"* lead you|strong=\"H3588\"* into|strong=\"H1697\"* sin. Don’t protest before the|strong=\"H3588\"* messenger that|strong=\"H3588\"* this|strong=\"H1697\"* was|strong=\"H1697\"* a|strong=\"H3068\"* mistake. Why|strong=\"H1697\"* should|strong=\"H3588\"* God be|strong=\"H1697\"* angry at|strong=\"H2472\"* your|strong=\"H3588\"* voice, and|strong=\"H1697\"* destroy the|strong=\"H3588\"* work|strong=\"H1697\"* of|strong=\"H1697\"* your|strong=\"H3588\"* hands?" + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* in|strong=\"H5921\"* the|strong=\"H5921\"* multitude of|strong=\"H5921\"* dreams there|strong=\"H2656\"* are|strong=\"H4941\"* vanities, as|strong=\"H3588\"* well as|strong=\"H3588\"* in|strong=\"H5921\"* many|strong=\"H7200\"* words; but|strong=\"H3588\"* you|strong=\"H3588\"* must fear God." + }, + { + "verseNum": 8, + "text": "If|strong=\"H1931\"* you|strong=\"H3605\"* see the|strong=\"H3605\"* oppression of|strong=\"H4428\"* the|strong=\"H3605\"* poor, and|strong=\"H4428\"* the|strong=\"H3605\"* violent taking away|strong=\"H3605\"* of|strong=\"H4428\"* justice and|strong=\"H4428\"* righteousness in|strong=\"H4428\"* a|strong=\"H3068\"* district, don’t marvel at|strong=\"H4428\"* the|strong=\"H3605\"* matter, for|strong=\"H4428\"* one|strong=\"H3605\"* official is|strong=\"H1931\"* eyed by|strong=\"H3605\"* a|strong=\"H3068\"* higher one|strong=\"H3605\"*, and|strong=\"H4428\"* there|strong=\"H3605\"* are|strong=\"H4428\"* officials over|strong=\"H4428\"* them|strong=\"H5647\"*." + }, + { + "verseNum": 9, + "text": "Moreover|strong=\"H1571\"* the|strong=\"H1571\"* profit of|strong=\"H1995\"* the|strong=\"H1571\"* earth is|strong=\"H2088\"* for|strong=\"H3701\"* all|strong=\"H1571\"*. The|strong=\"H1571\"* king profits from|strong=\"H1571\"* the|strong=\"H1571\"* field." + }, + { + "verseNum": 10, + "text": "He|strong=\"H3588\"* who|strong=\"H2896\"* loves silver shall|strong=\"H5869\"* not|strong=\"H3588\"* be|strong=\"H5869\"* satisfied with|strong=\"H5869\"* silver, nor|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H2896\"* loves abundance|strong=\"H7235\"*, with|strong=\"H5869\"* increase|strong=\"H7235\"*. This|strong=\"H3588\"* also|strong=\"H5869\"* is|strong=\"H4100\"* vanity." + }, + { + "verseNum": 11, + "text": "When|strong=\"H7235\"* goods increase|strong=\"H7235\"*, those|strong=\"H3240\"* who eat them|strong=\"H5647\"* are|strong=\"H6223\"* increased|strong=\"H7235\"*; and|strong=\"H5647\"* what advantage is there to|strong=\"H7235\"* its|strong=\"H7235\"* owner, except to|strong=\"H7235\"* feast on|strong=\"H7235\"* them|strong=\"H5647\"* with|strong=\"H5647\"* his|strong=\"H5647\"* eyes?" + }, + { + "verseNum": 12, + "text": "The|strong=\"H7200\"* sleep|strong=\"H7200\"* of|strong=\"H1167\"* a|strong=\"H3068\"* laboring man|strong=\"H1167\"* is|strong=\"H3426\"* sweet, whether|strong=\"H7200\"* he|strong=\"H3426\"* eats little or|strong=\"H7200\"* much; but|strong=\"H7200\"* the|strong=\"H7200\"* abundance of|strong=\"H1167\"* the|strong=\"H7200\"* rich|strong=\"H6239\"* will|strong=\"H8121\"* not|strong=\"H7200\"* allow him|strong=\"H7200\"* to|strong=\"H8104\"* sleep|strong=\"H7200\"*." + }, + { + "verseNum": 13, + "text": "There is|strong=\"H1931\"* a|strong=\"H3068\"* grievous|strong=\"H7451\"* evil|strong=\"H7451\"* which|strong=\"H1931\"* I|strong=\"H1121\"* have|strong=\"H1121\"* seen under|strong=\"H3027\"* the|strong=\"H3205\"* sun: wealth|strong=\"H6239\"* kept by|strong=\"H3027\"* its owner to|strong=\"H3027\"* his|strong=\"H3027\"* harm|strong=\"H7451\"*." + }, + { + "verseNum": 14, + "text": "Those|strong=\"H3318\"* riches perish by|strong=\"H3027\"* misfortune, and|strong=\"H7725\"* if he|strong=\"H3027\"* has|strong=\"H3027\"* fathered a|strong=\"H3068\"* son, there|strong=\"H7725\"* is|strong=\"H3027\"* nothing|strong=\"H3808\"* in|strong=\"H3212\"* his|strong=\"H5375\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 15, + "text": "As|strong=\"H1571\"* he|strong=\"H3651\"* came|strong=\"H3212\"* out|strong=\"H3212\"* of|strong=\"H7307\"* his|strong=\"H3605\"* mother’s womb, naked shall|strong=\"H7451\"* he|strong=\"H3651\"* go|strong=\"H3212\"* again|strong=\"H3212\"* as|strong=\"H1571\"* he|strong=\"H3651\"* came|strong=\"H3212\"*, and|strong=\"H3212\"* shall|strong=\"H7451\"* take|strong=\"H3212\"* nothing|strong=\"H3605\"* for|strong=\"H3605\"* his|strong=\"H3605\"* labor|strong=\"H5998\"*, which|strong=\"H4100\"* he|strong=\"H3651\"* may|strong=\"H1571\"* carry|strong=\"H3212\"* away|strong=\"H3212\"* in|strong=\"H3212\"* his|strong=\"H3605\"* hand." + }, + { + "verseNum": 16, + "text": "This|strong=\"H3117\"* also|strong=\"H1571\"* is|strong=\"H3117\"* a|strong=\"H3068\"* grievous|strong=\"H3708\"* evil, that|strong=\"H3605\"* in|strong=\"H3117\"* all|strong=\"H3605\"* points as|strong=\"H3117\"* he|strong=\"H3117\"* came, so|strong=\"H1571\"* shall|strong=\"H3117\"* he|strong=\"H3117\"* go. And|strong=\"H3117\"* what|strong=\"H1571\"* profit does|strong=\"H1571\"* he|strong=\"H3117\"* have|strong=\"H1571\"* who|strong=\"H3605\"* labors for|strong=\"H3117\"* the|strong=\"H3605\"* wind?" + }, + { + "verseNum": 17, + "text": "All|strong=\"H3605\"* his|strong=\"H3605\"* days|strong=\"H3117\"* he|strong=\"H1931\"* also|strong=\"H3117\"* eats in|strong=\"H3117\"* darkness, he|strong=\"H1931\"* is|strong=\"H1931\"* frustrated, and|strong=\"H3117\"* has|strong=\"H3117\"* sickness and|strong=\"H3117\"* wrath." + }, + { + "verseNum": 18, + "text": "Behold, that|strong=\"H3605\"* which|strong=\"H1931\"* I|strong=\"H5414\"* have|strong=\"H1571\"* seen to|strong=\"H5414\"* be|strong=\"H1571\"* good and|strong=\"H6239\"* proper is|strong=\"H1931\"* for|strong=\"H3605\"* one|strong=\"H3605\"* to|strong=\"H5414\"* eat and|strong=\"H6239\"* to|strong=\"H5414\"* drink, and|strong=\"H6239\"* to|strong=\"H5414\"* enjoy good in|strong=\"H8055\"* all|strong=\"H3605\"* his|strong=\"H3605\"* labor|strong=\"H5999\"*, in|strong=\"H8055\"* which|strong=\"H1931\"* he|strong=\"H1931\"* labors under|strong=\"H4480\"* the|strong=\"H3605\"* sun, all|strong=\"H3605\"* the|strong=\"H3605\"* days of|strong=\"H4480\"* his|strong=\"H3605\"* life|strong=\"H3605\"* which|strong=\"H1931\"* God|strong=\"H5414\"* has|strong=\"H1571\"* given|strong=\"H5414\"* him|strong=\"H5414\"*; for|strong=\"H3605\"* this|strong=\"H1931\"* is|strong=\"H1931\"* his|strong=\"H3605\"* portion|strong=\"H2506\"*." + }, + { + "verseNum": 19, + "text": "Every|strong=\"H3117\"* man|strong=\"H2416\"* also|strong=\"H3117\"* to|strong=\"H3820\"* whom|strong=\"H3588\"* God|strong=\"H3808\"* has|strong=\"H3820\"* given riches and|strong=\"H3117\"* wealth|strong=\"H3808\"*, and|strong=\"H3117\"* has|strong=\"H3820\"* given him|strong=\"H7235\"* power to|strong=\"H3820\"* eat of|strong=\"H3117\"* it|strong=\"H3588\"*, and|strong=\"H3117\"* to|strong=\"H3820\"* take|strong=\"H2142\"* his|strong=\"H2142\"* portion, and|strong=\"H3117\"* to|strong=\"H3820\"* rejoice|strong=\"H8057\"* in|strong=\"H3117\"* his|strong=\"H2142\"* labor—this|strong=\"H3588\"* is|strong=\"H3820\"* the|strong=\"H3588\"* gift of|strong=\"H3117\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 20, + "text": "For he shall not often reflect on the days of his life, because God occupies him with the joy of his heart." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "There|strong=\"H3426\"* is|strong=\"H3426\"* an|strong=\"H7200\"* evil|strong=\"H7451\"* which|strong=\"H1931\"* I|strong=\"H5921\"* have|strong=\"H3426\"* seen|strong=\"H7200\"* under|strong=\"H8478\"* the|strong=\"H5921\"* sun|strong=\"H8121\"*, and|strong=\"H7200\"* it|strong=\"H1931\"* is|strong=\"H3426\"* heavy|strong=\"H7451\"* on|strong=\"H5921\"* men|strong=\"H7451\"*:" + }, + { + "verseNum": 2, + "text": "a|strong=\"H3068\"* man|strong=\"H5315\"* to|strong=\"H5414\"* whom|strong=\"H3588\"* God|strong=\"H5414\"* gives|strong=\"H5414\"* riches|strong=\"H6239\"*, wealth|strong=\"H6239\"*, and|strong=\"H6239\"* honor|strong=\"H3519\"*, so|strong=\"H4480\"* that|strong=\"H3588\"* he|strong=\"H1931\"* lacks|strong=\"H2638\"* nothing|strong=\"H3808\"* for|strong=\"H3588\"* his|strong=\"H3605\"* soul|strong=\"H5315\"* of|strong=\"H4480\"* all|strong=\"H3605\"* that|strong=\"H3588\"* he|strong=\"H1931\"* desires, yet|strong=\"H3588\"* God|strong=\"H5414\"* gives|strong=\"H5414\"* him|strong=\"H5414\"* no|strong=\"H3808\"* power|strong=\"H7980\"* to|strong=\"H5414\"* eat of|strong=\"H4480\"* it|strong=\"H5414\"*, but|strong=\"H3588\"* an|strong=\"H5414\"* alien|strong=\"H5237\"* eats it|strong=\"H5414\"*. This|strong=\"H2088\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"*, and|strong=\"H6239\"* it|strong=\"H5414\"* is|strong=\"H2088\"* an|strong=\"H5414\"* evil|strong=\"H7451\"* disease|strong=\"H2483\"*." + }, + { + "verseNum": 3, + "text": "If|strong=\"H1961\"* a|strong=\"H3068\"* man|strong=\"H5315\"* fathers|strong=\"H3205\"* a|strong=\"H3068\"* hundred|strong=\"H3967\"* children|strong=\"H3205\"*, and|strong=\"H3967\"* lives|strong=\"H5315\"* many|strong=\"H7227\"* years|strong=\"H8141\"*, so|strong=\"H4480\"* that|strong=\"H3117\"* the|strong=\"H3205\"* days|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H1961\"* years|strong=\"H8141\"* are|strong=\"H3117\"* many|strong=\"H7227\"*, but|strong=\"H3808\"* his|strong=\"H1961\"* soul|strong=\"H5315\"* is|strong=\"H5315\"* not|strong=\"H3808\"* filled|strong=\"H7646\"* with|strong=\"H7646\"* good|strong=\"H2896\"*, and|strong=\"H3967\"* moreover|strong=\"H1571\"* he|strong=\"H3117\"* has|strong=\"H1961\"* no|strong=\"H3808\"* burial|strong=\"H6900\"*, I|strong=\"H3117\"* say that|strong=\"H3117\"* a|strong=\"H3068\"* stillborn|strong=\"H5309\"* child|strong=\"H3205\"* is|strong=\"H5315\"* better|strong=\"H2896\"* than|strong=\"H4480\"* he|strong=\"H3117\"*;" + }, + { + "verseNum": 4, + "text": "for|strong=\"H3588\"* it|strong=\"H3588\"* comes in|strong=\"H3212\"* vanity|strong=\"H1892\"*, and|strong=\"H3212\"* departs in|strong=\"H3212\"* darkness|strong=\"H2822\"*, and|strong=\"H3212\"* its|strong=\"H3588\"* name|strong=\"H8034\"* is|strong=\"H8034\"* covered|strong=\"H3680\"* with|strong=\"H3212\"* darkness|strong=\"H2822\"*." + }, + { + "verseNum": 5, + "text": "Moreover|strong=\"H1571\"* it|strong=\"H7200\"* has|strong=\"H1571\"* not|strong=\"H3808\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* sun|strong=\"H8121\"* nor|strong=\"H3808\"* known|strong=\"H3045\"* it|strong=\"H7200\"*. This|strong=\"H2088\"* has|strong=\"H1571\"* rest|strong=\"H5183\"* rather|strong=\"H3808\"* than|strong=\"H3808\"* the|strong=\"H7200\"* other|strong=\"H2088\"*." + }, + { + "verseNum": 6, + "text": "Yes|strong=\"H7200\"*, though he|strong=\"H3605\"* live|strong=\"H2421\"* a|strong=\"H3068\"* thousand years|strong=\"H8141\"* twice|strong=\"H6471\"* told, and|strong=\"H1980\"* yet|strong=\"H3808\"* fails to|strong=\"H1980\"* enjoy|strong=\"H7200\"* good|strong=\"H2896\"*, don’t all|strong=\"H3605\"* go|strong=\"H1980\"* to|strong=\"H1980\"* one|strong=\"H3605\"* place|strong=\"H4725\"*?" + }, + { + "verseNum": 7, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* labor|strong=\"H5999\"* of|strong=\"H4390\"* man|strong=\"H5315\"* is|strong=\"H5315\"* for|strong=\"H3605\"* his|strong=\"H3605\"* mouth|strong=\"H6310\"*, and|strong=\"H6310\"* yet|strong=\"H1571\"* the|strong=\"H3605\"* appetite|strong=\"H5315\"* is|strong=\"H5315\"* not|strong=\"H3808\"* filled|strong=\"H4390\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* what|strong=\"H4100\"* advantage|strong=\"H3148\"* has|strong=\"H4100\"* the|strong=\"H3588\"* wise|strong=\"H2450\"* more|strong=\"H4480\"* than|strong=\"H4480\"* the|strong=\"H3588\"* fool|strong=\"H3684\"*? What|strong=\"H4100\"* has|strong=\"H4100\"* the|strong=\"H3588\"* poor|strong=\"H6041\"* man|strong=\"H2450\"*, that|strong=\"H3588\"* knows|strong=\"H3045\"* how|strong=\"H4100\"* to|strong=\"H1980\"* walk|strong=\"H1980\"* before|strong=\"H4480\"* the|strong=\"H3588\"* living|strong=\"H2416\"*?" + }, + { + "verseNum": 9, + "text": "Better|strong=\"H2896\"* is|strong=\"H2088\"* the|strong=\"H1571\"* sight|strong=\"H5869\"* of|strong=\"H7307\"* the|strong=\"H1571\"* eyes|strong=\"H5869\"* than|strong=\"H2896\"* the|strong=\"H1571\"* wandering|strong=\"H1980\"* of|strong=\"H7307\"* the|strong=\"H1571\"* desire|strong=\"H5315\"*. This|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"* and|strong=\"H1980\"* a|strong=\"H3068\"* chasing|strong=\"H7469\"* after|strong=\"H7469\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 10, + "text": "Whatever|strong=\"H4100\"* has|strong=\"H1961\"* been|strong=\"H1961\"*, its|strong=\"H3045\"* name|strong=\"H8034\"* was|strong=\"H8034\"* given|strong=\"H7121\"* long|strong=\"H4100\"* ago; and|strong=\"H3045\"* it|strong=\"H1931\"* is|strong=\"H1931\"* known|strong=\"H3045\"* what|strong=\"H4100\"* man|strong=\"H3045\"* is|strong=\"H1931\"*; neither|strong=\"H3808\"* can|strong=\"H3201\"* he|strong=\"H1931\"* contend|strong=\"H1777\"* with|strong=\"H5973\"* him|strong=\"H7121\"* who|strong=\"H1931\"* is|strong=\"H1931\"* mightier than|strong=\"H4480\"* he|strong=\"H1931\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* there|strong=\"H3426\"* are|strong=\"H4100\"* many|strong=\"H7235\"* words|strong=\"H1697\"* that|strong=\"H3588\"* create vanity|strong=\"H1892\"*. What|strong=\"H4100\"* does|strong=\"H4100\"* that|strong=\"H3588\"* profit|strong=\"H3148\"* man?" + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* who|strong=\"H4310\"* knows|strong=\"H3045\"* what|strong=\"H4100\"* is|strong=\"H4310\"* good|strong=\"H2896\"* for|strong=\"H3588\"* man|strong=\"H2896\"* in|strong=\"H6213\"* life|strong=\"H2416\"*, all|strong=\"H3045\"* the|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H3045\"* vain|strong=\"H1892\"* life|strong=\"H2416\"* which|strong=\"H4310\"* he|strong=\"H3588\"* spends like|strong=\"H1961\"* a|strong=\"H3068\"* shadow|strong=\"H6738\"*? For|strong=\"H3588\"* who|strong=\"H4310\"* can|strong=\"H4310\"* tell|strong=\"H5046\"* a|strong=\"H3068\"* man|strong=\"H2896\"* what|strong=\"H4100\"* will|strong=\"H4310\"* be|strong=\"H1961\"* after|strong=\"H1961\"* him|strong=\"H5046\"* under|strong=\"H8478\"* the|strong=\"H3588\"* sun|strong=\"H8121\"*?" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* good|strong=\"H2896\"* name|strong=\"H8034\"* is|strong=\"H3117\"* better|strong=\"H2896\"* than|strong=\"H2896\"* fine|strong=\"H2896\"* perfume; and|strong=\"H3117\"* the|strong=\"H3205\"* day|strong=\"H3117\"* of|strong=\"H3117\"* death|strong=\"H4194\"* better|strong=\"H2896\"* than|strong=\"H2896\"* the|strong=\"H3205\"* day|strong=\"H3117\"* of|strong=\"H3117\"* one|strong=\"H2896\"*’s birth|strong=\"H3205\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H5414\"* is|strong=\"H1931\"* better|strong=\"H2896\"* to|strong=\"H3212\"* go|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* mourning than|strong=\"H2896\"* to|strong=\"H3212\"* go|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* feasting|strong=\"H4960\"*; for|strong=\"H1004\"* that|strong=\"H3605\"* is|strong=\"H1931\"* the|strong=\"H3605\"* end|strong=\"H5490\"* of|strong=\"H1004\"* all|strong=\"H3605\"* men|strong=\"H3605\"*, and|strong=\"H1004\"* the|strong=\"H3605\"* living|strong=\"H2416\"* should take|strong=\"H5414\"* this|strong=\"H1931\"* to|strong=\"H3212\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 3, + "text": "Sorrow|strong=\"H3708\"* is|strong=\"H3820\"* better|strong=\"H2896\"* than|strong=\"H2896\"* laughter|strong=\"H7814\"*; for|strong=\"H3588\"* by|strong=\"H6440\"* the|strong=\"H6440\"* sadness|strong=\"H7455\"* of|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* the|strong=\"H6440\"* heart|strong=\"H3820\"* is|strong=\"H3820\"* made|strong=\"H3190\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H1004\"* heart|strong=\"H3820\"* of|strong=\"H1004\"* the|strong=\"H1004\"* wise|strong=\"H2450\"* is|strong=\"H3820\"* in|strong=\"H1004\"* the|strong=\"H1004\"* house|strong=\"H1004\"* of|strong=\"H1004\"* mourning; but|strong=\"H3820\"* the|strong=\"H1004\"* heart|strong=\"H3820\"* of|strong=\"H1004\"* fools|strong=\"H3684\"* is|strong=\"H3820\"* in|strong=\"H1004\"* the|strong=\"H1004\"* house|strong=\"H1004\"* of|strong=\"H1004\"* mirth|strong=\"H8057\"*." + }, + { + "verseNum": 5, + "text": "It|strong=\"H2896\"* is|strong=\"H2896\"* better|strong=\"H2896\"* to|strong=\"H8085\"* hear|strong=\"H8085\"* the|strong=\"H8085\"* rebuke|strong=\"H1606\"* of|strong=\"H7892\"* the|strong=\"H8085\"* wise|strong=\"H2450\"* than|strong=\"H2896\"* for|strong=\"H2896\"* a|strong=\"H3068\"* man|strong=\"H2450\"* to|strong=\"H8085\"* hear|strong=\"H8085\"* the|strong=\"H8085\"* song|strong=\"H7892\"* of|strong=\"H7892\"* fools|strong=\"H3684\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* as|strong=\"H1571\"* the|strong=\"H3588\"* crackling|strong=\"H6963\"* of|strong=\"H6963\"* thorns|strong=\"H5518\"* under|strong=\"H8478\"* a|strong=\"H3068\"* pot|strong=\"H5518\"*, so|strong=\"H3651\"* is|strong=\"H2088\"* the|strong=\"H3588\"* laughter|strong=\"H7814\"* of|strong=\"H6963\"* the|strong=\"H3588\"* fool|strong=\"H3684\"*. This|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"*." + }, + { + "verseNum": 7, + "text": "Surely|strong=\"H3588\"* extortion|strong=\"H6233\"* makes|strong=\"H1984\"* the|strong=\"H3588\"* wise|strong=\"H2450\"* man|strong=\"H2450\"* foolish|strong=\"H1984\"*; and|strong=\"H3820\"* a|strong=\"H3068\"* bribe|strong=\"H4979\"* destroys the|strong=\"H3588\"* understanding|strong=\"H3820\"*." + }, + { + "verseNum": 8, + "text": "Better|strong=\"H2896\"* is|strong=\"H1697\"* the|strong=\"H1697\"* end of|strong=\"H1697\"* a|strong=\"H3068\"* thing|strong=\"H1697\"* than|strong=\"H2896\"* its beginning|strong=\"H7225\"*." + }, + { + "verseNum": 9, + "text": "Don’t be|strong=\"H7307\"* hasty in|strong=\"H5117\"* your|strong=\"H3588\"* spirit|strong=\"H7307\"* to|strong=\"H7307\"* be|strong=\"H7307\"* angry|strong=\"H3707\"*, for|strong=\"H3588\"* anger|strong=\"H3707\"* rests|strong=\"H5117\"* in|strong=\"H5117\"* the|strong=\"H3588\"* bosom|strong=\"H2436\"* of|strong=\"H7307\"* fools|strong=\"H3684\"*." + }, + { + "verseNum": 10, + "text": "Don’t say, “Why|strong=\"H4100\"* were|strong=\"H1961\"* the|strong=\"H5921\"* former|strong=\"H7223\"* days|strong=\"H3117\"* better|strong=\"H2896\"* than|strong=\"H2896\"* these|strong=\"H2088\"*?” For|strong=\"H3588\"* you|strong=\"H3588\"* do|strong=\"H4100\"* not|strong=\"H3808\"* ask|strong=\"H7592\"* wisely|strong=\"H2451\"* about|strong=\"H1961\"* this|strong=\"H2088\"*." + }, + { + "verseNum": 11, + "text": "Wisdom|strong=\"H2451\"* is|strong=\"H2896\"* as|strong=\"H5159\"* good|strong=\"H2896\"* as|strong=\"H5159\"* an|strong=\"H7200\"* inheritance|strong=\"H5159\"*. Yes|strong=\"H7200\"*, it|strong=\"H7200\"* is|strong=\"H2896\"* more|strong=\"H3148\"* excellent for|strong=\"H2896\"* those|strong=\"H5973\"* who|strong=\"H2896\"* see|strong=\"H7200\"* the|strong=\"H7200\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* wisdom|strong=\"H2451\"* is|strong=\"H3701\"* a|strong=\"H3068\"* defense, even|strong=\"H3588\"* as|strong=\"H3588\"* money|strong=\"H3701\"* is|strong=\"H3701\"* a|strong=\"H3068\"* defense; but|strong=\"H3588\"* the|strong=\"H3588\"* excellency|strong=\"H3504\"* of|strong=\"H1167\"* knowledge|strong=\"H1847\"* is|strong=\"H3701\"* that|strong=\"H3588\"* wisdom|strong=\"H2451\"* preserves|strong=\"H2421\"* the|strong=\"H3588\"* life|strong=\"H2421\"* of|strong=\"H1167\"* him|strong=\"H3588\"* who|strong=\"H3588\"* has|strong=\"H3588\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 13, + "text": "Consider|strong=\"H7200\"* the|strong=\"H7200\"* work|strong=\"H4639\"* of|strong=\"H4639\"* God|strong=\"H4310\"*, for|strong=\"H3588\"* who|strong=\"H4310\"* can|strong=\"H4310\"* make|strong=\"H7200\"* that|strong=\"H3588\"* straight|strong=\"H8626\"* which|strong=\"H4310\"* he|strong=\"H3588\"* has|strong=\"H4310\"* made|strong=\"H4639\"* crooked|strong=\"H5791\"*?" + }, + { + "verseNum": 14, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H3117\"* prosperity|strong=\"H2896\"* be|strong=\"H1961\"* joyful|strong=\"H2896\"*, and|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H3117\"* adversity|strong=\"H7451\"* consider|strong=\"H7200\"*; yes|strong=\"H1571\"*, God|strong=\"H3808\"* has|strong=\"H1961\"* made|strong=\"H6213\"* the|strong=\"H5921\"* one|strong=\"H2088\"* side|strong=\"H2088\"* by|strong=\"H5921\"* side|strong=\"H2088\"* with|strong=\"H6213\"* the|strong=\"H5921\"* other|strong=\"H2088\"*, to|strong=\"H1961\"* the|strong=\"H5921\"* end|strong=\"H1700\"* that|strong=\"H7200\"* man|strong=\"H7451\"* should|strong=\"H3117\"* not|strong=\"H3808\"* find|strong=\"H4672\"* out|strong=\"H4672\"* anything|strong=\"H3972\"* after|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "All|strong=\"H3605\"* this|strong=\"H7200\"* I|strong=\"H3117\"* have|strong=\"H3426\"* seen|strong=\"H7200\"* in|strong=\"H3117\"* my|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* vanity|strong=\"H1892\"*: there|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* righteous|strong=\"H6662\"* man|strong=\"H7563\"* who|strong=\"H3605\"* perishes in|strong=\"H3117\"* his|strong=\"H3605\"* righteousness|strong=\"H6664\"*, and|strong=\"H3117\"* there|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* who|strong=\"H3605\"* lives long|strong=\"H3117\"* in|strong=\"H3117\"* his|strong=\"H3605\"* evildoing." + }, + { + "verseNum": 16, + "text": "Don’t be|strong=\"H1961\"* overly|strong=\"H3148\"* righteous|strong=\"H6662\"*, neither make|strong=\"H8074\"* yourself overly|strong=\"H3148\"* wise|strong=\"H2449\"*. Why|strong=\"H4100\"* should|strong=\"H4100\"* you|strong=\"H4100\"* destroy|strong=\"H8074\"* yourself?" + }, + { + "verseNum": 17, + "text": "Don’t be|strong=\"H1961\"* too|strong=\"H1961\"* wicked|strong=\"H7561\"*, neither|strong=\"H3808\"* be|strong=\"H1961\"* foolish|strong=\"H5530\"*. Why|strong=\"H4100\"* should|strong=\"H4100\"* you|strong=\"H3808\"* die|strong=\"H4191\"* before|strong=\"H3808\"* your|strong=\"H7235\"* time|strong=\"H6256\"*?" + }, + { + "verseNum": 18, + "text": "It|strong=\"H3588\"* is|strong=\"H2088\"* good|strong=\"H2896\"* that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H3588\"* take|strong=\"H3318\"* hold of|strong=\"H3027\"* this|strong=\"H2088\"*. Yes|strong=\"H3588\"*, also|strong=\"H1571\"* don’t withdraw|strong=\"H3240\"* your|strong=\"H3605\"* hand|strong=\"H3027\"* from|strong=\"H3318\"* that|strong=\"H3588\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H3605\"* fears|strong=\"H3373\"* God|strong=\"H3027\"* will|strong=\"H1571\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3027\"* them|strong=\"H3027\"* all|strong=\"H3605\"*." + }, + { + "verseNum": 19, + "text": "Wisdom|strong=\"H2451\"* is|strong=\"H5892\"* a|strong=\"H3068\"* strength to|strong=\"H1961\"* the|strong=\"H1961\"* wise|strong=\"H2450\"* man|strong=\"H2450\"* more|strong=\"H2450\"* than|strong=\"H2451\"* ten|strong=\"H6235\"* rulers|strong=\"H7989\"* who|strong=\"H2450\"* are|strong=\"H5892\"* in|strong=\"H5892\"* a|strong=\"H3068\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 20, + "text": "Surely|strong=\"H3588\"* there is|strong=\"H2896\"* not|strong=\"H3808\"* a|strong=\"H3068\"* righteous|strong=\"H6662\"* man|strong=\"H6662\"* on|strong=\"H6213\"* earth who|strong=\"H2896\"* does|strong=\"H6213\"* good|strong=\"H2896\"* and|strong=\"H6213\"* doesn’t sin|strong=\"H2398\"*." + }, + { + "verseNum": 21, + "text": "Also|strong=\"H1571\"* don’t take|strong=\"H5414\"* heed|strong=\"H8085\"* to|strong=\"H1696\"* all|strong=\"H3605\"* words|strong=\"H1697\"* that|strong=\"H3605\"* are|strong=\"H1697\"* spoken|strong=\"H1696\"*, lest you|strong=\"H5414\"* hear|strong=\"H8085\"* your|strong=\"H3605\"* servant|strong=\"H5650\"* curse|strong=\"H7043\"* you|strong=\"H5414\"*;" + }, + { + "verseNum": 22, + "text": "for|strong=\"H3588\"* often your|strong=\"H3045\"* own heart|strong=\"H3820\"* knows|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* yourself|strong=\"H3820\"* have|strong=\"H3045\"* likewise|strong=\"H1571\"* cursed|strong=\"H7043\"* others|strong=\"H7227\"*." + }, + { + "verseNum": 23, + "text": "All|strong=\"H3605\"* this|strong=\"H1931\"* I|strong=\"H7350\"* have|strong=\"H3605\"* proved|strong=\"H5254\"* in|strong=\"H4480\"* wisdom|strong=\"H2451\"*. I|strong=\"H7350\"* said, “I|strong=\"H7350\"* will|strong=\"H1931\"* be|strong=\"H2451\"* wise|strong=\"H2449\"*;” but|strong=\"H1931\"* it|strong=\"H1931\"* was|strong=\"H1931\"* far|strong=\"H7350\"* from|strong=\"H4480\"* me|strong=\"H4480\"*." + }, + { + "verseNum": 24, + "text": "That|strong=\"H1961\"* which|strong=\"H4310\"* is|strong=\"H4310\"*, is|strong=\"H4310\"* far|strong=\"H7350\"* off|strong=\"H7350\"* and|strong=\"H1961\"* exceedingly|strong=\"H6013\"* deep|strong=\"H6013\"*. Who|strong=\"H4310\"* can|strong=\"H4310\"* find|strong=\"H4672\"* it|strong=\"H1961\"* out|strong=\"H4672\"*?" + }, + { + "verseNum": 25, + "text": "I|strong=\"H3045\"* turned|strong=\"H5437\"* around|strong=\"H5437\"*, and|strong=\"H2451\"* my|strong=\"H3045\"* heart|strong=\"H3820\"* sought|strong=\"H1245\"* to|strong=\"H3820\"* know|strong=\"H3045\"* and|strong=\"H2451\"* to|strong=\"H3820\"* search|strong=\"H1245\"* out|strong=\"H8446\"*, and|strong=\"H2451\"* to|strong=\"H3820\"* seek|strong=\"H1245\"* wisdom|strong=\"H2451\"* and|strong=\"H2451\"* the|strong=\"H3045\"* scheme of|strong=\"H3820\"* things, and|strong=\"H2451\"* to|strong=\"H3820\"* know|strong=\"H3045\"* that|strong=\"H3045\"* wickedness|strong=\"H7562\"* is|strong=\"H3820\"* stupidity, and|strong=\"H2451\"* that|strong=\"H3045\"* foolishness|strong=\"H5531\"* is|strong=\"H3820\"* madness|strong=\"H1947\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H6440\"* find|strong=\"H4672\"* more|strong=\"H4480\"* bitter|strong=\"H4751\"* than|strong=\"H4480\"* death|strong=\"H4194\"* the|strong=\"H6440\"* woman whose heart|strong=\"H3820\"* is|strong=\"H1931\"* snares|strong=\"H4685\"* and|strong=\"H3027\"* traps, whose hands|strong=\"H3027\"* are|strong=\"H3027\"* chains. Whoever pleases|strong=\"H2896\"* God|strong=\"H3027\"* shall|strong=\"H3820\"* escape|strong=\"H4422\"* from|strong=\"H4480\"* her|strong=\"H4672\"*; but|strong=\"H1931\"* the|strong=\"H6440\"* sinner|strong=\"H2398\"* will|strong=\"H3820\"* be|strong=\"H3027\"* ensnared by|strong=\"H3027\"* her|strong=\"H4672\"*." + }, + { + "verseNum": 27, + "text": "“Behold|strong=\"H7200\"*, I|strong=\"H7200\"* have|strong=\"H4672\"* found|strong=\"H4672\"* this|strong=\"H2088\"*,” says the|strong=\"H7200\"* Preacher|strong=\"H6953\"*, “to|strong=\"H7200\"* one|strong=\"H2088\"* another|strong=\"H2088\"*, to|strong=\"H7200\"* find|strong=\"H4672\"* an|strong=\"H7200\"* explanation|strong=\"H2808\"*" + }, + { + "verseNum": 28, + "text": "which|strong=\"H5315\"* my|strong=\"H3605\"* soul|strong=\"H5315\"* still|strong=\"H5750\"* seeks|strong=\"H1245\"*, but|strong=\"H3808\"* I|strong=\"H5315\"* have|strong=\"H4672\"* not|strong=\"H3808\"* found|strong=\"H4672\"*. I|strong=\"H5315\"* have|strong=\"H4672\"* found|strong=\"H4672\"* one|strong=\"H3605\"* man|strong=\"H5315\"* among|strong=\"H4672\"* a|strong=\"H3068\"* thousand, but|strong=\"H3808\"* I|strong=\"H5315\"* have|strong=\"H4672\"* not|strong=\"H3808\"* found|strong=\"H4672\"* a|strong=\"H3068\"* woman among|strong=\"H4672\"* all|strong=\"H3605\"* those|strong=\"H3605\"*." + }, + { + "verseNum": 29, + "text": "Behold|strong=\"H7200\"*, I|strong=\"H7200\"* have|strong=\"H4672\"* only|strong=\"H1245\"* found|strong=\"H4672\"* this|strong=\"H2088\"*: that|strong=\"H7200\"* God made|strong=\"H6213\"* mankind upright|strong=\"H3477\"*; but|strong=\"H7200\"* they|strong=\"H1992\"* search|strong=\"H1245\"* for|strong=\"H6213\"* many|strong=\"H7227\"* inventions|strong=\"H2810\"*.”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Who|strong=\"H4310\"* is|strong=\"H4310\"* like|strong=\"H1697\"* the|strong=\"H6440\"* wise|strong=\"H2450\"* man|strong=\"H2450\"*? And|strong=\"H2451\"* who|strong=\"H4310\"* knows|strong=\"H3045\"* the|strong=\"H6440\"* interpretation|strong=\"H6592\"* of|strong=\"H1697\"* a|strong=\"H3068\"* thing|strong=\"H1697\"*? A|strong=\"H3068\"* man|strong=\"H2450\"*’s wisdom|strong=\"H2451\"* makes|strong=\"H6440\"* his|strong=\"H6440\"* face|strong=\"H6440\"* shine, and|strong=\"H2451\"* the|strong=\"H6440\"* hardness of|strong=\"H1697\"* his|strong=\"H6440\"* face|strong=\"H6440\"* is|strong=\"H4310\"* changed|strong=\"H8132\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H5921\"* say|strong=\"H6310\"*, “Keep|strong=\"H8104\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s command|strong=\"H6310\"*!” because|strong=\"H5921\"* of|strong=\"H4428\"* the|strong=\"H5921\"* oath|strong=\"H7621\"* to|strong=\"H5921\"* God." + }, + { + "verseNum": 3, + "text": "Don’t be|strong=\"H1697\"* hasty to|strong=\"H3212\"* go|strong=\"H3212\"* out|strong=\"H6213\"* of|strong=\"H1697\"* his|strong=\"H3605\"* presence|strong=\"H6440\"*. Don’t persist|strong=\"H5975\"* in|strong=\"H6213\"* an|strong=\"H6213\"* evil|strong=\"H7451\"* thing|strong=\"H1697\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* does|strong=\"H6213\"* whatever|strong=\"H3605\"* pleases|strong=\"H2654\"* him|strong=\"H6440\"*," + }, + { + "verseNum": 4, + "text": "for|strong=\"H6213\"* the|strong=\"H6213\"* king|strong=\"H4428\"*’s word|strong=\"H1697\"* is|strong=\"H4310\"* supreme. Who|strong=\"H4310\"* can|strong=\"H4310\"* say|strong=\"H1697\"* to|strong=\"H6213\"* him|strong=\"H6213\"*, “What|strong=\"H4100\"* are|strong=\"H4100\"* you|strong=\"H6213\"* doing|strong=\"H6213\"*?”" + }, + { + "verseNum": 5, + "text": "Whoever|strong=\"H8104\"* keeps|strong=\"H8104\"* the|strong=\"H8104\"* commandment|strong=\"H4687\"* shall|strong=\"H3820\"* not|strong=\"H3808\"* come|strong=\"H4941\"* to|strong=\"H6256\"* harm|strong=\"H7451\"*, and|strong=\"H4941\"* his|strong=\"H8104\"* wise|strong=\"H2450\"* heart|strong=\"H3820\"* will|strong=\"H3820\"* know|strong=\"H3045\"* the|strong=\"H8104\"* time|strong=\"H6256\"* and|strong=\"H4941\"* procedure|strong=\"H4941\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* time|strong=\"H6256\"* and|strong=\"H4941\"* procedure|strong=\"H4941\"* for|strong=\"H3588\"* every|strong=\"H3605\"* purpose|strong=\"H2656\"*, although|strong=\"H3588\"* the|strong=\"H3605\"* misery|strong=\"H7451\"* of|strong=\"H5921\"* man|strong=\"H7451\"* is|strong=\"H3426\"* heavy|strong=\"H7451\"* on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* doesn’t know|strong=\"H3045\"* that|strong=\"H3588\"* which|strong=\"H4310\"* will|strong=\"H4310\"* be|strong=\"H1961\"*; for|strong=\"H3588\"* who|strong=\"H4310\"* can|strong=\"H4310\"* tell|strong=\"H5046\"* him|strong=\"H5046\"* how|strong=\"H4100\"* it|strong=\"H3588\"* will|strong=\"H4310\"* be|strong=\"H1961\"*?" + }, + { + "verseNum": 8, + "text": "There|strong=\"H3117\"* is|strong=\"H3117\"* no|strong=\"H3808\"* man|strong=\"H1167\"* who|strong=\"H4421\"* has|strong=\"H3117\"* power|strong=\"H7983\"* over the|strong=\"H3117\"* spirit|strong=\"H7307\"* to|strong=\"H3117\"* contain the|strong=\"H3117\"* spirit|strong=\"H7307\"*; neither|strong=\"H3808\"* does|strong=\"H3808\"* he|strong=\"H3117\"* have|strong=\"H3117\"* power|strong=\"H7983\"* over the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* death|strong=\"H4194\"*. There|strong=\"H3117\"* is|strong=\"H3117\"* no|strong=\"H3808\"* discharge|strong=\"H4917\"* in|strong=\"H3117\"* war|strong=\"H4421\"*; neither|strong=\"H3808\"* shall|strong=\"H3117\"* wickedness|strong=\"H7562\"* deliver|strong=\"H4422\"* those who|strong=\"H4421\"* practice|strong=\"H1167\"* it|strong=\"H3117\"*." + }, + { + "verseNum": 9, + "text": "All|strong=\"H3605\"* this|strong=\"H2088\"* I|strong=\"H5414\"* have|strong=\"H7200\"* seen|strong=\"H7200\"*, and|strong=\"H7200\"* applied|strong=\"H5414\"* my|strong=\"H5414\"* mind|strong=\"H3820\"* to|strong=\"H6213\"* every|strong=\"H3605\"* work|strong=\"H4639\"* that|strong=\"H7200\"* is|strong=\"H2088\"* done|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*. There|strong=\"H2088\"* is|strong=\"H2088\"* a|strong=\"H3068\"* time|strong=\"H6256\"* in|strong=\"H6213\"* which|strong=\"H7451\"* one|strong=\"H2088\"* man|strong=\"H7451\"* has|strong=\"H3820\"* power|strong=\"H7980\"* over|strong=\"H5414\"* another|strong=\"H2088\"* to|strong=\"H6213\"* his|strong=\"H3605\"* hurt|strong=\"H7451\"*." + }, + { + "verseNum": 10, + "text": "So|strong=\"H3651\"* I|strong=\"H3651\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* wicked|strong=\"H7563\"* buried|strong=\"H6912\"*. Indeed|strong=\"H1571\"* they|strong=\"H3651\"* came|strong=\"H1980\"* also|strong=\"H1571\"* from|strong=\"H1980\"* holiness. They|strong=\"H3651\"* went|strong=\"H1980\"* and|strong=\"H1980\"* were|strong=\"H1571\"* forgotten|strong=\"H7911\"* in|strong=\"H1980\"* the|strong=\"H7200\"* city|strong=\"H5892\"* where|strong=\"H4725\"* they|strong=\"H3651\"* did|strong=\"H6213\"* this|strong=\"H2088\"*. This|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"*." + }, + { + "verseNum": 11, + "text": "Because|strong=\"H5921\"* sentence|strong=\"H6599\"* against|strong=\"H5921\"* an|strong=\"H6213\"* evil|strong=\"H7451\"* work|strong=\"H4639\"* is|strong=\"H3820\"* not|strong=\"H6213\"* executed|strong=\"H6213\"* speedily|strong=\"H4120\"*, therefore|strong=\"H3651\"* the|strong=\"H5921\"* heart|strong=\"H3820\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"* is|strong=\"H3820\"* fully|strong=\"H4390\"* set|strong=\"H4390\"* in|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H6213\"* do|strong=\"H6213\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 12, + "text": "Though|strong=\"H3588\"* a|strong=\"H3068\"* sinner|strong=\"H2398\"* commits|strong=\"H6213\"* crimes|strong=\"H7451\"* a|strong=\"H3068\"* hundred|strong=\"H3967\"* times|strong=\"H6440\"*, and|strong=\"H3967\"* lives|strong=\"H1961\"* long|strong=\"H6440\"*, yet|strong=\"H3588\"* surely|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* it|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* better|strong=\"H2896\"* with|strong=\"H6213\"* those|strong=\"H6213\"* who|strong=\"H2896\"* fear|strong=\"H3372\"* God, who|strong=\"H2896\"* are|strong=\"H1571\"* reverent before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"H3808\"* it|strong=\"H6440\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* be|strong=\"H1961\"* well|strong=\"H2896\"* with|strong=\"H6440\"* the|strong=\"H6440\"* wicked|strong=\"H7563\"*, neither|strong=\"H3808\"* shall|strong=\"H3117\"* he|strong=\"H3117\"* lengthen days|strong=\"H3117\"* like|strong=\"H1961\"* a|strong=\"H3068\"* shadow|strong=\"H6738\"*, because|strong=\"H6440\"* he|strong=\"H3117\"* doesn’t fear|strong=\"H3373\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 14, + "text": "There|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* vanity|strong=\"H1892\"* which|strong=\"H2088\"* is|strong=\"H3426\"* done|strong=\"H6213\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth, that|strong=\"H2088\"* there|strong=\"H3426\"* are|strong=\"H7563\"* righteous|strong=\"H6662\"* men|strong=\"H7563\"* to|strong=\"H6213\"* whom it|strong=\"H5921\"* happens|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H6213\"* the|strong=\"H5921\"* work|strong=\"H4639\"* of|strong=\"H5921\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"*. Again|strong=\"H1571\"*, there|strong=\"H3426\"* are|strong=\"H7563\"* wicked|strong=\"H7563\"* men|strong=\"H7563\"* to|strong=\"H6213\"* whom it|strong=\"H5921\"* happens|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H6213\"* the|strong=\"H5921\"* work|strong=\"H4639\"* of|strong=\"H5921\"* the|strong=\"H5921\"* righteous|strong=\"H6662\"*. I|strong=\"H5921\"* said that|strong=\"H2088\"* this|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H3426\"* vanity|strong=\"H1892\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H5414\"* I|strong=\"H3588\"* commended|strong=\"H7623\"* mirth|strong=\"H8057\"*, because|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H2896\"* has|strong=\"H3117\"* no|strong=\"H5414\"* better|strong=\"H2896\"* thing|strong=\"H2416\"* under|strong=\"H8478\"* the|strong=\"H3588\"* sun|strong=\"H8121\"* than|strong=\"H2896\"* to|strong=\"H5414\"* eat, to|strong=\"H5414\"* drink|strong=\"H8354\"*, and|strong=\"H3117\"* to|strong=\"H5414\"* be|strong=\"H3117\"* joyful|strong=\"H8055\"*: for|strong=\"H3588\"* that|strong=\"H3588\"* will|strong=\"H5414\"* accompany him|strong=\"H5414\"* in|strong=\"H3117\"* his|strong=\"H5414\"* labor|strong=\"H5999\"* all|strong=\"H5414\"* the|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H5414\"* life|strong=\"H2416\"* which|strong=\"H1931\"* God|strong=\"H5414\"* has|strong=\"H3117\"* given|strong=\"H5414\"* him|strong=\"H5414\"* under|strong=\"H8478\"* the|strong=\"H3588\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* I|strong=\"H3588\"* applied|strong=\"H5414\"* my|strong=\"H5414\"* heart|strong=\"H3820\"* to|strong=\"H6213\"* know|strong=\"H3045\"* wisdom|strong=\"H2451\"*, and|strong=\"H3117\"* to|strong=\"H6213\"* see|strong=\"H7200\"* the|strong=\"H5921\"* business|strong=\"H6045\"* that|strong=\"H3588\"* is|strong=\"H3820\"* done|strong=\"H6213\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth (even|strong=\"H1571\"* though|strong=\"H3588\"* eyes|strong=\"H5869\"* see|strong=\"H7200\"* no|strong=\"H6213\"* sleep|strong=\"H8142\"* day|strong=\"H3117\"* or|strong=\"H1571\"* night|strong=\"H3915\"*)," + }, + { + "verseNum": 17, + "text": "then|strong=\"H1571\"* I|strong=\"H3588\"* saw|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H8478\"* God|strong=\"H3808\"*, that|strong=\"H3588\"* man|strong=\"H2450\"* can|strong=\"H3201\"*’t find|strong=\"H4672\"* out|strong=\"H4672\"* the|strong=\"H3605\"* work|strong=\"H4639\"* that|strong=\"H3588\"* is|strong=\"H1571\"* done|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*, because|strong=\"H3588\"* however|strong=\"H4672\"* much|strong=\"H6213\"* a|strong=\"H3068\"* man|strong=\"H2450\"* labors|strong=\"H4639\"* to|strong=\"H3201\"* seek|strong=\"H1245\"* it|strong=\"H3588\"* out|strong=\"H4672\"*, yet|strong=\"H3588\"* he|strong=\"H3588\"* won’t find|strong=\"H4672\"* it|strong=\"H3588\"*. Yes|strong=\"H3588\"* even|strong=\"H1571\"* though|strong=\"H3588\"* a|strong=\"H3068\"* wise|strong=\"H2450\"* man|strong=\"H2450\"* thinks he|strong=\"H3588\"* can|strong=\"H3201\"* comprehend|strong=\"H3045\"* it|strong=\"H3588\"*, he|strong=\"H3588\"* won’t be|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* find|strong=\"H4672\"* it|strong=\"H3588\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* this|strong=\"H2088\"* I|strong=\"H3588\"* laid|strong=\"H5414\"* to|strong=\"H5414\"* my|strong=\"H5414\"* heart|strong=\"H3820\"*, even|strong=\"H1571\"* to|strong=\"H5414\"* explore all|strong=\"H3605\"* this|strong=\"H2088\"*: that|strong=\"H3588\"* the|strong=\"H3605\"* righteous|strong=\"H6662\"*, and|strong=\"H3027\"* the|strong=\"H3605\"* wise|strong=\"H2450\"*, and|strong=\"H3027\"* their|strong=\"H3605\"* works|strong=\"H5652\"*, are|strong=\"H3027\"* in|strong=\"H6440\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* God|strong=\"H5414\"*; whether|strong=\"H3045\"* it|strong=\"H5414\"* is|strong=\"H2088\"* love or|strong=\"H1571\"* hatred|strong=\"H8135\"*, man|strong=\"H2450\"* doesn’t know|strong=\"H3045\"* it|strong=\"H5414\"*; all|strong=\"H3605\"* is|strong=\"H2088\"* before|strong=\"H6440\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 2, + "text": "All|strong=\"H3605\"* things|strong=\"H3605\"* come alike to|strong=\"H7650\"* all|strong=\"H3605\"*. There|strong=\"H3605\"* is|strong=\"H2896\"* one|strong=\"H3605\"* event|strong=\"H4745\"* to|strong=\"H7650\"* the|strong=\"H3605\"* righteous|strong=\"H6662\"* and|strong=\"H2896\"* to|strong=\"H7650\"* the|strong=\"H3605\"* wicked|strong=\"H7563\"*; to|strong=\"H7650\"* the|strong=\"H3605\"* good|strong=\"H2896\"*, to|strong=\"H7650\"* the|strong=\"H3605\"* clean|strong=\"H2889\"*, to|strong=\"H7650\"* the|strong=\"H3605\"* unclean|strong=\"H2931\"*, to|strong=\"H7650\"* him|strong=\"H3605\"* who|strong=\"H3605\"* sacrifices|strong=\"H2076\"*, and|strong=\"H2896\"* to|strong=\"H7650\"* him|strong=\"H3605\"* who|strong=\"H3605\"* doesn’t sacrifice|strong=\"H2076\"*. As|strong=\"H3605\"* is|strong=\"H2896\"* the|strong=\"H3605\"* good|strong=\"H2896\"*, so|strong=\"H7650\"* is|strong=\"H2896\"* the|strong=\"H3605\"* sinner|strong=\"H2398\"*; he|strong=\"H3605\"* who|strong=\"H3605\"* takes|strong=\"H7650\"* an|strong=\"H7650\"* oath|strong=\"H7621\"*, as|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* fears|strong=\"H3372\"* an|strong=\"H7650\"* oath|strong=\"H7621\"*." + }, + { + "verseNum": 3, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* an|strong=\"H6213\"* evil|strong=\"H7451\"* in|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H2088\"* done|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*, that|strong=\"H3588\"* there|strong=\"H2088\"* is|strong=\"H2088\"* one|strong=\"H2088\"* event|strong=\"H4745\"* to|strong=\"H4191\"* all|strong=\"H3605\"*. Yes|strong=\"H3588\"* also|strong=\"H1571\"*, the|strong=\"H3605\"* heart|strong=\"H3820\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"* is|strong=\"H2088\"* full|strong=\"H4390\"* of|strong=\"H1121\"* evil|strong=\"H7451\"*, and|strong=\"H1121\"* madness|strong=\"H1947\"* is|strong=\"H2088\"* in|strong=\"H6213\"* their|strong=\"H3605\"* heart|strong=\"H3820\"* while|strong=\"H3588\"* they|strong=\"H3588\"* live|strong=\"H2416\"*, and|strong=\"H1121\"* after|strong=\"H3588\"* that|strong=\"H3588\"* they|strong=\"H3588\"* go|strong=\"H8121\"* to|strong=\"H4191\"* the|strong=\"H3605\"* dead|strong=\"H4191\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* to|strong=\"H4191\"* him|strong=\"H4191\"* who|strong=\"H4310\"* is|strong=\"H3426\"* joined with|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* living|strong=\"H2416\"* there|strong=\"H3426\"* is|strong=\"H3426\"* hope; for|strong=\"H3588\"* a|strong=\"H3068\"* living|strong=\"H2416\"* dog|strong=\"H3611\"* is|strong=\"H3426\"* better|strong=\"H2896\"* than|strong=\"H4480\"* a|strong=\"H3068\"* dead|strong=\"H4191\"* lion." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* living|strong=\"H2416\"* know|strong=\"H3045\"* that|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H5750\"* die|strong=\"H4191\"*, but|strong=\"H3588\"* the|strong=\"H3588\"* dead|strong=\"H4191\"* don’t know|strong=\"H3045\"* anything|strong=\"H3972\"*, neither do they|strong=\"H3588\"* have|strong=\"H3045\"* any|strong=\"H5750\"* more|strong=\"H5750\"* a|strong=\"H3068\"* reward|strong=\"H7939\"*; for|strong=\"H3588\"* their|strong=\"H3588\"* memory|strong=\"H2143\"* is|strong=\"H2143\"* forgotten|strong=\"H7911\"*." + }, + { + "verseNum": 6, + "text": "Also|strong=\"H1571\"* their|strong=\"H3605\"* love, their|strong=\"H3605\"* hatred|strong=\"H8135\"*, and|strong=\"H5769\"* their|strong=\"H3605\"* envy|strong=\"H7068\"* has|strong=\"H1571\"* perished long|strong=\"H5769\"* ago|strong=\"H5769\"*; neither|strong=\"H1571\"* do|strong=\"H6213\"* they|strong=\"H1992\"* any|strong=\"H3605\"* longer|strong=\"H5750\"* have|strong=\"H1571\"* a|strong=\"H3068\"* portion|strong=\"H2506\"* forever|strong=\"H5769\"* in|strong=\"H6213\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H1571\"* done|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 7, + "text": "Go|strong=\"H3212\"* your|strong=\"H3588\"* way|strong=\"H3212\"*—eat|strong=\"H3899\"* your|strong=\"H3588\"* bread|strong=\"H3899\"* with|strong=\"H3212\"* joy|strong=\"H8057\"*, and|strong=\"H3212\"* drink|strong=\"H8354\"* your|strong=\"H3588\"* wine|strong=\"H3196\"* with|strong=\"H3212\"* a|strong=\"H3068\"* merry|strong=\"H2896\"* heart|strong=\"H3820\"*; for|strong=\"H3588\"* God has|strong=\"H3820\"* already|strong=\"H3528\"* accepted|strong=\"H7521\"* your|strong=\"H3588\"* works|strong=\"H4639\"*." + }, + { + "verseNum": 8, + "text": "Let|strong=\"H6256\"* your|strong=\"H3605\"* garments be|strong=\"H1961\"* always|strong=\"H3605\"* white|strong=\"H3836\"*, and|strong=\"H7218\"* don’t let|strong=\"H6256\"* your|strong=\"H3605\"* head|strong=\"H7218\"* lack|strong=\"H2637\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 9, + "text": "Live|strong=\"H2416\"* joyfully|strong=\"H7200\"* with|strong=\"H5973\"* the|strong=\"H3605\"* wife|strong=\"H2416\"* whom|strong=\"H3588\"* you|strong=\"H3588\"* love all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H3605\"* life|strong=\"H2416\"* of|strong=\"H3117\"* vanity|strong=\"H1892\"*, which|strong=\"H1931\"* he|strong=\"H1931\"* has|strong=\"H3117\"* given|strong=\"H5414\"* you|strong=\"H3588\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*, all|strong=\"H3605\"* your|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* vanity|strong=\"H1892\"*, for|strong=\"H3588\"* that|strong=\"H3588\"* is|strong=\"H1931\"* your|strong=\"H3605\"* portion|strong=\"H2506\"* in|strong=\"H3117\"* life|strong=\"H2416\"*, and|strong=\"H3117\"* in|strong=\"H3117\"* your|strong=\"H3605\"* labor|strong=\"H5999\"* in|strong=\"H3117\"* which|strong=\"H1931\"* you|strong=\"H3588\"* labor|strong=\"H5999\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 10, + "text": "Whatever|strong=\"H3605\"* your|strong=\"H3605\"* hand|strong=\"H3027\"* finds|strong=\"H4672\"* to|strong=\"H1980\"* do|strong=\"H6213\"*, do|strong=\"H6213\"* it|strong=\"H3588\"* with|strong=\"H1980\"* your|strong=\"H3605\"* might|strong=\"H3581\"*; for|strong=\"H3588\"* there|strong=\"H8033\"* is|strong=\"H3027\"* no|strong=\"H6213\"* work|strong=\"H4639\"*, nor|strong=\"H2451\"* plan, nor|strong=\"H2451\"* knowledge|strong=\"H1847\"*, nor|strong=\"H2451\"* wisdom|strong=\"H2451\"*, in|strong=\"H1980\"* Sheol|strong=\"H7585\"*,+ 9:10 Sheol is the place of the dead.* where|strong=\"H8033\"* you|strong=\"H3588\"* are|strong=\"H3027\"* going|strong=\"H1980\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H3588\"* returned|strong=\"H7725\"* and|strong=\"H7725\"* saw|strong=\"H7200\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"* that|strong=\"H3588\"* the|strong=\"H3605\"* race|strong=\"H4793\"* is|strong=\"H1571\"* not|strong=\"H3808\"* to|strong=\"H7725\"* the|strong=\"H3605\"* swift|strong=\"H7031\"*, nor|strong=\"H3808\"* the|strong=\"H3605\"* battle|strong=\"H4421\"* to|strong=\"H7725\"* the|strong=\"H3605\"* strong|strong=\"H1368\"*, neither|strong=\"H3808\"* yet|strong=\"H3588\"* bread|strong=\"H3899\"* to|strong=\"H7725\"* the|strong=\"H3605\"* wise|strong=\"H2450\"*, nor|strong=\"H3808\"* yet|strong=\"H3588\"* riches|strong=\"H6239\"* to|strong=\"H7725\"* men|strong=\"H1368\"* of|strong=\"H1368\"* understanding, nor|strong=\"H3808\"* yet|strong=\"H3588\"* favor|strong=\"H2580\"* to|strong=\"H7725\"* men|strong=\"H1368\"* of|strong=\"H1368\"* skill|strong=\"H3045\"*; but|strong=\"H3588\"* time|strong=\"H6256\"* and|strong=\"H7725\"* chance|strong=\"H6294\"* happen|strong=\"H7136\"* to|strong=\"H7725\"* them|strong=\"H7725\"* all|strong=\"H3605\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* man|strong=\"H1121\"* also|strong=\"H1571\"* doesn’t know|strong=\"H3045\"* his|strong=\"H5921\"* time|strong=\"H6256\"*. As|strong=\"H1571\"* the|strong=\"H5921\"* fish|strong=\"H1709\"* that|strong=\"H3588\"* are|strong=\"H1992\"* taken in|strong=\"H5921\"* an|strong=\"H3588\"* evil|strong=\"H7451\"* net|strong=\"H4685\"*, and|strong=\"H1121\"* as|strong=\"H1571\"* the|strong=\"H5921\"* birds|strong=\"H6833\"* that|strong=\"H3588\"* are|strong=\"H1992\"* caught in|strong=\"H5921\"* the|strong=\"H5921\"* snare|strong=\"H6341\"*, even|strong=\"H1571\"* so|strong=\"H3808\"* are|strong=\"H1992\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"* snared|strong=\"H3369\"* in|strong=\"H5921\"* an|strong=\"H3588\"* evil|strong=\"H7451\"* time|strong=\"H6256\"*, when|strong=\"H3588\"* it|strong=\"H5921\"* falls|strong=\"H5307\"* suddenly|strong=\"H6597\"* on|strong=\"H5921\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H7200\"* have|strong=\"H1571\"* also|strong=\"H1571\"* seen|strong=\"H7200\"* wisdom|strong=\"H2451\"* under|strong=\"H8478\"* the|strong=\"H7200\"* sun|strong=\"H8121\"* in|strong=\"H1419\"* this|strong=\"H1931\"* way, and|strong=\"H1419\"* it|strong=\"H1931\"* seemed|strong=\"H7200\"* great|strong=\"H1419\"* to|strong=\"H7200\"* me|strong=\"H7200\"*." + }, + { + "verseNum": 14, + "text": "There was|strong=\"H5892\"* a|strong=\"H3068\"* little|strong=\"H4592\"* city|strong=\"H5892\"*, and|strong=\"H4428\"* few|strong=\"H4592\"* men|strong=\"H1419\"* within|strong=\"H5921\"* it|strong=\"H5921\"*; and|strong=\"H4428\"* a|strong=\"H3068\"* great|strong=\"H1419\"* king|strong=\"H4428\"* came|strong=\"H4428\"* against|strong=\"H5921\"* it|strong=\"H5921\"*, besieged|strong=\"H1129\"* it|strong=\"H5921\"*, and|strong=\"H4428\"* built|strong=\"H1129\"* great|strong=\"H1419\"* bulwarks|strong=\"H4685\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "Now a|strong=\"H3068\"* poor|strong=\"H4542\"* wise|strong=\"H2450\"* man|strong=\"H2450\"* was|strong=\"H1931\"* found|strong=\"H4672\"* in|strong=\"H5892\"* it|strong=\"H1931\"*, and|strong=\"H5892\"* he|strong=\"H1931\"* by|strong=\"H5892\"* his|strong=\"H2142\"* wisdom|strong=\"H2451\"* delivered|strong=\"H4422\"* the|strong=\"H2142\"* city|strong=\"H5892\"*; yet|strong=\"H3808\"* no|strong=\"H3808\"* man|strong=\"H2450\"* remembered|strong=\"H2142\"* that|strong=\"H1931\"* same|strong=\"H1931\"* poor|strong=\"H4542\"* man|strong=\"H2450\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H8085\"* I|strong=\"H1697\"* said|strong=\"H1697\"*, “Wisdom|strong=\"H2451\"* is|strong=\"H1697\"* better|strong=\"H2896\"* than|strong=\"H2896\"* strength|strong=\"H1369\"*.” Nevertheless the|strong=\"H8085\"* poor|strong=\"H4542\"* man|strong=\"H2896\"*’s wisdom|strong=\"H2451\"* is|strong=\"H1697\"* despised, and|strong=\"H2451\"* his|strong=\"H8085\"* words|strong=\"H1697\"* are|strong=\"H1697\"* not|strong=\"H8085\"* heard|strong=\"H8085\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H8085\"* wise|strong=\"H2450\"* heard|strong=\"H8085\"* in|strong=\"H8085\"* quiet|strong=\"H5183\"* are|strong=\"H1697\"* better|strong=\"H5183\"* than|strong=\"H2450\"* the|strong=\"H8085\"* cry|strong=\"H2201\"* of|strong=\"H1697\"* him|strong=\"H8085\"* who|strong=\"H2450\"* rules|strong=\"H4910\"* among|strong=\"H4910\"* fools|strong=\"H3684\"*." + }, + { + "verseNum": 18, + "text": "Wisdom|strong=\"H2451\"* is|strong=\"H2896\"* better|strong=\"H2896\"* than|strong=\"H2896\"* weapons|strong=\"H3627\"* of|strong=\"H3627\"* war|strong=\"H7128\"*; but one|strong=\"H2896\"* sinner|strong=\"H2398\"* destroys much|strong=\"H7235\"* good|strong=\"H2896\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Dead|strong=\"H4194\"* flies|strong=\"H2070\"* cause the|strong=\"H4194\"* oil|strong=\"H8081\"* of|strong=\"H4194\"* the|strong=\"H4194\"* perfumer|strong=\"H7543\"* to|strong=\"H3519\"* produce an evil odor;" + }, + { + "verseNum": 2, + "text": "A|strong=\"H3068\"* wise|strong=\"H2450\"* man|strong=\"H2450\"*’s heart|strong=\"H3820\"* is|strong=\"H3820\"* at his right|strong=\"H3225\"* hand|strong=\"H3225\"*," + }, + { + "verseNum": 3, + "text": "Yes|strong=\"H1571\"* also|strong=\"H1571\"* when|strong=\"H1980\"* the|strong=\"H3605\"* fool|strong=\"H5530\"* walks|strong=\"H1980\"* by|strong=\"H1870\"* the|strong=\"H3605\"* way|strong=\"H1870\"*, his|strong=\"H3605\"* understanding|strong=\"H3820\"* fails him|strong=\"H1931\"*, and|strong=\"H1980\"* he|strong=\"H1931\"* says to|strong=\"H1980\"* everyone|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* fool|strong=\"H5530\"*." + }, + { + "verseNum": 4, + "text": "If|strong=\"H3588\"* the|strong=\"H5921\"* spirit|strong=\"H7307\"* of|strong=\"H7307\"* the|strong=\"H5921\"* ruler|strong=\"H4910\"* rises|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* you|strong=\"H3588\"*, don’t leave|strong=\"H3240\"* your|strong=\"H5921\"* place|strong=\"H4725\"*; for|strong=\"H3588\"* gentleness lays great|strong=\"H1419\"* offenses|strong=\"H2399\"* to|strong=\"H5927\"* rest." + }, + { + "verseNum": 5, + "text": "There|strong=\"H3426\"* is|strong=\"H3426\"* an|strong=\"H7200\"* evil|strong=\"H7451\"* which|strong=\"H7451\"* I|strong=\"H7200\"* have|strong=\"H3426\"* seen|strong=\"H7200\"* under|strong=\"H8478\"* the|strong=\"H6440\"* sun|strong=\"H8121\"*, the|strong=\"H6440\"* sort of|strong=\"H6440\"* error|strong=\"H7684\"* which|strong=\"H7451\"* proceeds|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H6440\"* ruler|strong=\"H7989\"*." + }, + { + "verseNum": 6, + "text": "Folly|strong=\"H5529\"* is|strong=\"H5529\"* set|strong=\"H5414\"* in|strong=\"H3427\"* great|strong=\"H7227\"* dignity|strong=\"H4791\"*, and|strong=\"H3427\"* the|strong=\"H5414\"* rich|strong=\"H6223\"* sit|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* low|strong=\"H8216\"* place|strong=\"H5414\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H5921\"* have|strong=\"H5650\"* seen|strong=\"H7200\"* servants|strong=\"H5650\"* on|strong=\"H5921\"* horses|strong=\"H5483\"*, and|strong=\"H1980\"* princes|strong=\"H8269\"* walking|strong=\"H1980\"* like|strong=\"H1980\"* servants|strong=\"H5650\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 8, + "text": "He who digs|strong=\"H2658\"* a|strong=\"H3068\"* pit|strong=\"H1475\"* may|strong=\"H5175\"* fall|strong=\"H5307\"* into|strong=\"H5307\"* it|strong=\"H2658\"*; and|strong=\"H5307\"* whoever breaks|strong=\"H6555\"* through|strong=\"H6555\"* a|strong=\"H3068\"* wall|strong=\"H1447\"* may|strong=\"H5175\"* be bitten|strong=\"H5391\"* by|strong=\"H5307\"* a|strong=\"H3068\"* snake|strong=\"H5175\"*." + }, + { + "verseNum": 9, + "text": "Whoever carves out|strong=\"H5265\"* stones may be|strong=\"H6086\"* injured by|strong=\"H6086\"* them. Whoever splits|strong=\"H1234\"* wood|strong=\"H6086\"* may be|strong=\"H6086\"* endangered|strong=\"H5533\"* by|strong=\"H6086\"* it." + }, + { + "verseNum": 10, + "text": "If|strong=\"H7043\"* the|strong=\"H6440\"* ax is|strong=\"H1931\"* blunt|strong=\"H6949\"*, and|strong=\"H2451\"* one|strong=\"H3808\"* doesn’t sharpen|strong=\"H7043\"* the|strong=\"H6440\"* edge|strong=\"H6949\"*, then|strong=\"H3808\"* he|strong=\"H1931\"* must|strong=\"H3808\"* use|strong=\"H1931\"* more|strong=\"H3808\"* strength|strong=\"H2428\"*; but|strong=\"H3808\"* skill|strong=\"H2451\"* brings success|strong=\"H3787\"*." + }, + { + "verseNum": 11, + "text": "If the|strong=\"H3808\"* snake|strong=\"H5175\"* bites|strong=\"H5391\"* before|strong=\"H3808\"* it|strong=\"H3808\"* is|strong=\"H3956\"* charmed|strong=\"H3908\"*, then|strong=\"H3808\"* is|strong=\"H3956\"* there no|strong=\"H3808\"* profit|strong=\"H3504\"* for|strong=\"H3808\"* the|strong=\"H3808\"* charmer|strong=\"H1167\"*’s tongue|strong=\"H3956\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H1697\"* a|strong=\"H3068\"* wise|strong=\"H2450\"* man|strong=\"H2450\"*’s mouth|strong=\"H6310\"* are|strong=\"H1697\"* gracious|strong=\"H2580\"*; but|strong=\"H1104\"* a|strong=\"H3068\"* fool|strong=\"H3684\"* is|strong=\"H1697\"* swallowed|strong=\"H1104\"* by|strong=\"H8193\"* his|strong=\"H6310\"* own lips|strong=\"H8193\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H1697\"* beginning|strong=\"H8462\"* of|strong=\"H1697\"* the|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H1697\"* his|strong=\"H6310\"* mouth|strong=\"H6310\"* is|strong=\"H1697\"* foolishness|strong=\"H5531\"*; and|strong=\"H1697\"* the|strong=\"H1697\"* end|strong=\"H6310\"* of|strong=\"H1697\"* his|strong=\"H6310\"* talk|strong=\"H1697\"* is|strong=\"H1697\"* mischievous|strong=\"H7451\"* madness|strong=\"H1948\"*." + }, + { + "verseNum": 14, + "text": "A|strong=\"H3068\"* fool|strong=\"H5530\"* also|strong=\"H3045\"* multiplies|strong=\"H7235\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3045\"* labor|strong=\"H5999\"* of|strong=\"H5892\"* fools|strong=\"H3684\"* wearies|strong=\"H3021\"* every|strong=\"H3212\"* one|strong=\"H3808\"* of|strong=\"H5892\"* them|strong=\"H3045\"*; for|strong=\"H5892\"* he|strong=\"H3808\"* doesn’t know|strong=\"H3045\"* how|strong=\"H3045\"* to|strong=\"H3212\"* go|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3045\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 16, + "text": "Woe to|strong=\"H4428\"* you|strong=\"H1242\"*, land, when your|strong=\"H4428\"* king|strong=\"H4428\"* is|strong=\"H4428\"* a|strong=\"H3068\"* child|strong=\"H5288\"*," + }, + { + "verseNum": 17, + "text": "Happy are|strong=\"H1121\"* you|strong=\"H3808\"*, land, when|strong=\"H6256\"* your|strong=\"H3808\"* king|strong=\"H4428\"* is|strong=\"H4428\"* the|strong=\"H3808\"* son|strong=\"H1121\"* of|strong=\"H1121\"* nobles|strong=\"H2715\"*," + }, + { + "verseNum": 18, + "text": "By|strong=\"H3027\"* slothfulness|strong=\"H6103\"* the|strong=\"H3027\"* roof sinks in|strong=\"H1004\"*;" + }, + { + "verseNum": 19, + "text": "A|strong=\"H3068\"* feast|strong=\"H3899\"* is|strong=\"H3701\"* made|strong=\"H6213\"* for|strong=\"H6213\"* laughter|strong=\"H7814\"*," + }, + { + "verseNum": 20, + "text": "Don’t curse|strong=\"H7043\"* the|strong=\"H3588\"* king|strong=\"H4428\"*, no, not|strong=\"H3588\"* in|strong=\"H4428\"* your|strong=\"H3588\"* thoughts|strong=\"H1697\"*;" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Cast|strong=\"H7971\"* your|strong=\"H5921\"* bread|strong=\"H3899\"* on|strong=\"H5921\"* the|strong=\"H6440\"* waters|strong=\"H4325\"*;" + }, + { + "verseNum": 2, + "text": "Give|strong=\"H5414\"* a|strong=\"H3068\"* portion|strong=\"H2506\"* to|strong=\"H1961\"* seven|strong=\"H7651\"*, yes|strong=\"H3588\"*, even|strong=\"H1571\"* to|strong=\"H1961\"* eight|strong=\"H8083\"*;" + }, + { + "verseNum": 3, + "text": "If the|strong=\"H5921\"* clouds|strong=\"H5645\"* are|strong=\"H8033\"* full|strong=\"H4390\"* of|strong=\"H4390\"* rain|strong=\"H1653\"*, they|strong=\"H8033\"* empty|strong=\"H7324\"* themselves|strong=\"H4390\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth;" + }, + { + "verseNum": 4, + "text": "He|strong=\"H3808\"* who|strong=\"H8104\"* observes|strong=\"H8104\"* the|strong=\"H7200\"* wind|strong=\"H7307\"* won’t sow|strong=\"H2232\"*;" + }, + { + "verseNum": 5, + "text": "As|strong=\"H6213\"* you|strong=\"H3605\"* don’t know|strong=\"H3045\"* what|strong=\"H4100\"* is|strong=\"H4100\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H3605\"* wind|strong=\"H7307\"*," + }, + { + "verseNum": 6, + "text": "In|strong=\"H3027\"* the|strong=\"H3588\"* morning|strong=\"H1242\"* sow|strong=\"H2232\"* your|strong=\"H3045\"* seed|strong=\"H2233\"*," + }, + { + "verseNum": 7, + "text": "Truly the|strong=\"H7200\"* light is|strong=\"H2896\"* sweet|strong=\"H4966\"*," + }, + { + "verseNum": 8, + "text": "Yes|strong=\"H3588\"*, if|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H3605\"* lives|strong=\"H2421\"* many|strong=\"H7235\"* years|strong=\"H8141\"*, let|strong=\"H8055\"* him|strong=\"H3605\"* rejoice|strong=\"H8055\"* in|strong=\"H8141\"* them|strong=\"H8055\"* all|strong=\"H3605\"*;" + }, + { + "verseNum": 9, + "text": "Rejoice|strong=\"H8055\"*, young|strong=\"H3117\"* man|strong=\"H3605\"*, in|strong=\"H5921\"* your|strong=\"H3605\"* youth|strong=\"H3208\"*," + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H3588\"* remove|strong=\"H5493\"* sorrow|strong=\"H3708\"* from|strong=\"H5493\"* your|strong=\"H3588\"* heart|strong=\"H3820\"*," + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Remember|strong=\"H2142\"* also|strong=\"H3117\"* your|strong=\"H2142\"* Creator|strong=\"H1254\"* in|strong=\"H8141\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H2142\"* youth," + }, + { + "verseNum": 2, + "text": "Before|strong=\"H5704\"* the|strong=\"H7725\"* sun|strong=\"H8121\"*, the|strong=\"H7725\"* light, the|strong=\"H7725\"* moon|strong=\"H3394\"*, and|strong=\"H7725\"* the|strong=\"H7725\"* stars|strong=\"H3556\"* are|strong=\"H5645\"* darkened|strong=\"H2821\"*," + }, + { + "verseNum": 3, + "text": "in|strong=\"H1004\"* the|strong=\"H7200\"* day|strong=\"H3117\"* when|strong=\"H3588\"* the|strong=\"H7200\"* keepers|strong=\"H8104\"* of|strong=\"H1004\"* the|strong=\"H7200\"* house|strong=\"H1004\"* shall|strong=\"H1004\"* tremble|strong=\"H2111\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"H6965\"* the|strong=\"H3605\"* doors|strong=\"H1817\"* shall|strong=\"H1323\"* be|strong=\"H6963\"* shut|strong=\"H5462\"* in|strong=\"H6963\"* the|strong=\"H3605\"* street|strong=\"H7784\"*;" + }, + { + "verseNum": 5, + "text": "yes|strong=\"H3588\"*, they|strong=\"H3588\"* shall|strong=\"H1004\"* be|strong=\"H5769\"* afraid|strong=\"H3372\"* of|strong=\"H1004\"* heights," + }, + { + "verseNum": 6, + "text": "before|strong=\"H5921\"* the|strong=\"H5921\"* silver|strong=\"H3701\"* cord|strong=\"H2256\"* is|strong=\"H3701\"* severed," + }, + { + "verseNum": 7, + "text": "and|strong=\"H7725\"* the|strong=\"H5921\"* dust|strong=\"H6083\"* returns|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H5921\"* earth|strong=\"H6083\"* as|strong=\"H1961\"* it|strong=\"H5414\"* was|strong=\"H1961\"*," + }, + { + "verseNum": 8, + "text": "“Vanity|strong=\"H1892\"* of|strong=\"H3605\"* vanities|strong=\"H1892\"*,” says the|strong=\"H3605\"* Preacher|strong=\"H6953\"*." + }, + { + "verseNum": 9, + "text": "Further|strong=\"H5750\"*, because the|strong=\"H1961\"* Preacher|strong=\"H6953\"* was|strong=\"H1961\"* wise|strong=\"H2450\"*, he|strong=\"H5971\"* still|strong=\"H5750\"* taught|strong=\"H3925\"* the|strong=\"H1961\"* people|strong=\"H5971\"* knowledge|strong=\"H1847\"*. Yes, he|strong=\"H5971\"* pondered|strong=\"H2713\"*, sought out|strong=\"H2713\"*, and|strong=\"H5971\"* set in|strong=\"H3925\"* order|strong=\"H8626\"* many|strong=\"H7235\"* proverbs|strong=\"H4912\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H1697\"* Preacher|strong=\"H6953\"* sought|strong=\"H1245\"* to|strong=\"H1245\"* find|strong=\"H4672\"* out|strong=\"H4672\"* acceptable|strong=\"H2656\"* words|strong=\"H1697\"*, and|strong=\"H1697\"* that|strong=\"H1697\"* which|strong=\"H1697\"* was|strong=\"H1697\"* written|strong=\"H3789\"* blamelessly, words|strong=\"H1697\"* of|strong=\"H1697\"* truth." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5414\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H5414\"* wise|strong=\"H2450\"* are|strong=\"H1697\"* like|strong=\"H1697\"* goads|strong=\"H1861\"*; and|strong=\"H1697\"* like|strong=\"H1697\"* nails|strong=\"H4930\"* well fastened|strong=\"H5414\"* are|strong=\"H1697\"* words|strong=\"H1697\"* from|strong=\"H1697\"* the|strong=\"H5414\"* masters|strong=\"H1167\"* of|strong=\"H1697\"* assemblies, which|strong=\"H1697\"* are|strong=\"H1697\"* given|strong=\"H5414\"* from|strong=\"H1697\"* one|strong=\"H1697\"* shepherd|strong=\"H7462\"*." + }, + { + "verseNum": 12, + "text": "Furthermore, my|strong=\"H6213\"* son|strong=\"H1121\"*, be|strong=\"H1121\"* admonished|strong=\"H2094\"*: of|strong=\"H1121\"* making|strong=\"H6213\"* many|strong=\"H7235\"* books|strong=\"H5612\"* there|strong=\"H1992\"* is|strong=\"H1320\"* no|strong=\"H6213\"* end|strong=\"H7093\"*; and|strong=\"H1121\"* much|strong=\"H7235\"* study|strong=\"H3854\"* is|strong=\"H1320\"* a|strong=\"H3068\"* weariness|strong=\"H3024\"* of|strong=\"H1121\"* the|strong=\"H6213\"* flesh|strong=\"H1320\"*." + }, + { + "verseNum": 13, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H3605\"* end|strong=\"H5490\"* of|strong=\"H1697\"* the|strong=\"H3605\"* matter|strong=\"H1697\"*. All|strong=\"H3605\"* has|strong=\"H3588\"* been|strong=\"H3605\"* heard|strong=\"H8085\"*. Fear|strong=\"H3372\"* God and|strong=\"H8085\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"*; for|strong=\"H3588\"* this|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* duty|strong=\"H1697\"* of|strong=\"H1697\"* man|strong=\"H3605\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* God will|strong=\"H7451\"* bring|strong=\"H7451\"* every|strong=\"H3605\"* work|strong=\"H4639\"* into|strong=\"H5921\"* judgment|strong=\"H4941\"*, with|strong=\"H5921\"* every|strong=\"H3605\"* hidden|strong=\"H5956\"* thing|strong=\"H2896\"*, whether it|strong=\"H5921\"* is|strong=\"H2896\"* good|strong=\"H2896\"*, or|strong=\"H2896\"* whether it|strong=\"H5921\"* is|strong=\"H2896\"* evil|strong=\"H7451\"*." + } + ] + } + ] + }, + { + "name": "Song of Solomon", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H8010\"* Song|strong=\"H7892\"* of|strong=\"H7892\"* songs|strong=\"H7892\"*, which is|strong=\"H8010\"* Solomon|strong=\"H8010\"*’s." + }, + { + "verseNum": 2, + "text": "Let him|strong=\"H2896\"* kiss|strong=\"H5401\"* me|strong=\"H3588\"* with|strong=\"H6310\"* the|strong=\"H3588\"* kisses|strong=\"H5390\"* of|strong=\"H6310\"* his|strong=\"H3588\"* mouth|strong=\"H6310\"*;" + }, + { + "verseNum": 3, + "text": "Your|strong=\"H5921\"* oils|strong=\"H8081\"* have|strong=\"H5921\"* a|strong=\"H3068\"* pleasing|strong=\"H2896\"* fragrance|strong=\"H7381\"*." + }, + { + "verseNum": 4, + "text": "Take|strong=\"H2142\"* me|strong=\"H4900\"* away|strong=\"H4900\"* with|strong=\"H4428\"* you|strong=\"H8055\"*." + }, + { + "verseNum": 5, + "text": "I am dark, but|strong=\"H7838\"* lovely|strong=\"H5000\"*," + }, + { + "verseNum": 6, + "text": "Don’t stare|strong=\"H7200\"* at|strong=\"H7200\"* me|strong=\"H7200\"* because I|strong=\"H7760\"* am dark|strong=\"H7840\"*," + }, + { + "verseNum": 7, + "text": "Tell|strong=\"H5046\"* me|strong=\"H5315\"*, you|strong=\"H5921\"* whom my|strong=\"H5921\"* soul|strong=\"H5315\"* loves," + }, + { + "verseNum": 8, + "text": "If you|strong=\"H5921\"* don’t know|strong=\"H3045\"*, most beautiful|strong=\"H3303\"* among|strong=\"H5921\"* women," + }, + { + "verseNum": 9, + "text": "I|strong=\"H7393\"* have compared|strong=\"H1819\"* you, my love|strong=\"H7474\"*," + }, + { + "verseNum": 10, + "text": "Your|strong=\"H4998\"* cheeks|strong=\"H3895\"* are|strong=\"H3895\"* beautiful|strong=\"H4998\"* with|strong=\"H6677\"* earrings," + }, + { + "verseNum": 11, + "text": "We|strong=\"H6213\"* will|strong=\"H6213\"* make|strong=\"H6213\"* you|strong=\"H6213\"* earrings of|strong=\"H6213\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 12, + "text": "While|strong=\"H5704\"* the|strong=\"H5414\"* king|strong=\"H4428\"* sat at|strong=\"H4428\"* his|strong=\"H5414\"* table|strong=\"H4524\"*," + }, + { + "verseNum": 13, + "text": "My beloved|strong=\"H1730\"* is|strong=\"H1730\"* to|strong=\"H7699\"* me a|strong=\"H3068\"* sachet of|strong=\"H6872\"* myrrh|strong=\"H4753\"*," + }, + { + "verseNum": 14, + "text": "My beloved|strong=\"H1730\"* is|strong=\"H1730\"* to|strong=\"H3724\"* me a|strong=\"H3068\"* cluster of|strong=\"H3754\"* henna|strong=\"H3724\"* blossoms|strong=\"H1730\"*" + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H2005\"*,+ 1:15 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* you|strong=\"H5869\"* are|strong=\"H5869\"* beautiful|strong=\"H3303\"*, my love|strong=\"H7474\"*." + }, + { + "verseNum": 16, + "text": "Behold|strong=\"H2005\"*, you are beautiful|strong=\"H3303\"*, my beloved|strong=\"H1730\"*, yes|strong=\"H2005\"*, pleasant|strong=\"H5273\"*;" + }, + { + "verseNum": 17, + "text": "The|strong=\"H1004\"* beams|strong=\"H6982\"* of|strong=\"H1004\"* our house|strong=\"H1004\"* are|strong=\"H1004\"* cedars." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "I am a|strong=\"H3068\"* rose|strong=\"H2261\"* of|strong=\"H6010\"* Sharon|strong=\"H8289\"*," + }, + { + "verseNum": 2, + "text": "As|strong=\"H3651\"* a|strong=\"H3068\"* lily|strong=\"H7799\"* among|strong=\"H7799\"* thorns|strong=\"H2336\"*," + }, + { + "verseNum": 3, + "text": "As|strong=\"H3651\"* the|strong=\"H3651\"* apple|strong=\"H8598\"* tree|strong=\"H6086\"* among|strong=\"H3427\"* the|strong=\"H3651\"* trees|strong=\"H6086\"* of|strong=\"H1121\"* the|strong=\"H3651\"* wood|strong=\"H6086\"*," + }, + { + "verseNum": 4, + "text": "He|strong=\"H1004\"* brought me|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* banquet|strong=\"H3196\"* hall|strong=\"H1004\"*." + }, + { + "verseNum": 5, + "text": "Strengthen me|strong=\"H5564\"* with|strong=\"H2470\"* raisins," + }, + { + "verseNum": 6, + "text": "His|strong=\"H8478\"* left|strong=\"H8040\"* hand|strong=\"H3225\"* is|strong=\"H7218\"* under|strong=\"H8478\"* my|strong=\"H8478\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H5704\"* adjure|strong=\"H7650\"* you|strong=\"H5704\"*, daughters|strong=\"H1323\"* of|strong=\"H1323\"* Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* voice|strong=\"H6963\"* of|strong=\"H2022\"* my|strong=\"H5921\"* beloved|strong=\"H1730\"*!" + }, + { + "verseNum": 9, + "text": "My|strong=\"H4480\"* beloved|strong=\"H1730\"* is|strong=\"H2088\"* like|strong=\"H1819\"* a|strong=\"H3068\"* roe|strong=\"H6643\"* or|strong=\"H4480\"* a|strong=\"H3068\"* young|strong=\"H6082\"* deer." + }, + { + "verseNum": 10, + "text": "My|strong=\"H6965\"* beloved|strong=\"H1730\"* spoke|strong=\"H6030\"*, and|strong=\"H6965\"* said|strong=\"H6030\"* to|strong=\"H3212\"* me|strong=\"H6030\"*," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* behold|strong=\"H2009\"*, the|strong=\"H3588\"* winter|strong=\"H5638\"* is|strong=\"H2009\"* past|strong=\"H5674\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H8085\"* flowers|strong=\"H5339\"* appear|strong=\"H7200\"* on|strong=\"H7200\"* the|strong=\"H8085\"* earth." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5414\"* fig|strong=\"H8384\"* tree|strong=\"H8384\"* ripens her|strong=\"H5414\"* green figs|strong=\"H8384\"*." + }, + { + "verseNum": 14, + "text": "My|strong=\"H8085\"* dove|strong=\"H3123\"* in|strong=\"H8085\"* the|strong=\"H8085\"* clefts|strong=\"H2288\"* of|strong=\"H6963\"* the|strong=\"H8085\"* rock|strong=\"H5553\"*," + }, + { + "verseNum": 15, + "text": "Catch for|strong=\"H3754\"* us the|strong=\"H2254\"* foxes|strong=\"H7776\"*," + }, + { + "verseNum": 16, + "text": "My|strong=\"H7462\"* beloved|strong=\"H1730\"* is|strong=\"H1730\"* mine, and|strong=\"H7462\"* I am his|strong=\"H7462\"*." + }, + { + "verseNum": 17, + "text": "Until|strong=\"H5704\"* the|strong=\"H5921\"* day|strong=\"H3117\"* is|strong=\"H3117\"* cool|strong=\"H6315\"*, and|strong=\"H3117\"* the|strong=\"H5921\"* shadows|strong=\"H6752\"* flee|strong=\"H5127\"* away|strong=\"H5127\"*," + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "By|strong=\"H5921\"* night|strong=\"H3915\"* on|strong=\"H5921\"* my|strong=\"H5921\"* bed|strong=\"H4904\"*," + }, + { + "verseNum": 2, + "text": "I|strong=\"H5315\"* will|strong=\"H5315\"* get|strong=\"H6965\"* up|strong=\"H6965\"* now|strong=\"H4994\"*, and|strong=\"H6965\"* go|strong=\"H5437\"* about|strong=\"H5437\"* the|strong=\"H6965\"* city|strong=\"H5892\"*;" + }, + { + "verseNum": 3, + "text": "The|strong=\"H7200\"* watchmen|strong=\"H8104\"* who|strong=\"H5315\"* go|strong=\"H5437\"* about|strong=\"H5437\"* the|strong=\"H7200\"* city|strong=\"H5892\"* found|strong=\"H4672\"* me|strong=\"H5315\"*;" + }, + { + "verseNum": 4, + "text": "I|strong=\"H5704\"* had|strong=\"H4672\"* scarcely|strong=\"H4592\"* passed|strong=\"H5674\"* from|strong=\"H5315\"* them|strong=\"H1992\"*," + }, + { + "verseNum": 5, + "text": "I|strong=\"H5704\"* adjure|strong=\"H7650\"* you|strong=\"H5704\"*, daughters|strong=\"H1323\"* of|strong=\"H1323\"* Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 6, + "text": "Who|strong=\"H4310\"* is|strong=\"H4310\"* this|strong=\"H2063\"* who|strong=\"H4310\"* comes|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H4480\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* like|strong=\"H4057\"* pillars|strong=\"H8490\"* of|strong=\"H4057\"* smoke|strong=\"H6227\"*," + }, + { + "verseNum": 7, + "text": "Behold|strong=\"H2009\"*, it|strong=\"H5439\"* is|strong=\"H3478\"* Solomon|strong=\"H8010\"*’s carriage!" + }, + { + "verseNum": 8, + "text": "They|strong=\"H5921\"* all|strong=\"H3605\"* handle the|strong=\"H3605\"* sword|strong=\"H2719\"*, and|strong=\"H2719\"* are|strong=\"H4421\"* expert|strong=\"H3925\"* in|strong=\"H5921\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 9, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* made|strong=\"H6213\"* himself|strong=\"H6213\"* a|strong=\"H3068\"* carriage" + }, + { + "verseNum": 10, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* its|strong=\"H6213\"* pillars|strong=\"H5982\"* of|strong=\"H1323\"* silver|strong=\"H3701\"*," + }, + { + "verseNum": 11, + "text": "Go|strong=\"H3318\"* out|strong=\"H3318\"*, you|strong=\"H3117\"* daughters|strong=\"H1323\"* of|strong=\"H4428\"* Zion|strong=\"H6726\"*, and|strong=\"H4428\"* see|strong=\"H7200\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*," + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Behold|strong=\"H2005\"*, you|strong=\"H5869\"* are|strong=\"H5869\"* beautiful|strong=\"H3303\"*, my|strong=\"H1157\"* love|strong=\"H7474\"*." + }, + { + "verseNum": 2, + "text": "Your|strong=\"H3605\"* teeth|strong=\"H8127\"* are|strong=\"H8127\"* like|strong=\"H5927\"* a|strong=\"H3068\"* newly shorn|strong=\"H7094\"* flock|strong=\"H5739\"*," + }, + { + "verseNum": 3, + "text": "Your|strong=\"H1157\"* lips|strong=\"H8193\"* are|strong=\"H8193\"* like|strong=\"H4057\"* scarlet|strong=\"H8144\"* thread|strong=\"H2339\"*." + }, + { + "verseNum": 4, + "text": "Your|strong=\"H3605\"* neck|strong=\"H6677\"* is|strong=\"H3605\"* like|strong=\"H5921\"* David|strong=\"H1732\"*’s tower|strong=\"H4026\"* built|strong=\"H1129\"* for|strong=\"H5921\"* an|strong=\"H1129\"* armory," + }, + { + "verseNum": 5, + "text": "Your|strong=\"H7462\"* two|strong=\"H8147\"* breasts|strong=\"H7699\"* are|strong=\"H7699\"* like|strong=\"H7799\"* two|strong=\"H8147\"* fawns|strong=\"H6082\"*" + }, + { + "verseNum": 6, + "text": "Until|strong=\"H5704\"* the|strong=\"H3117\"* day|strong=\"H3117\"* is|strong=\"H3117\"* cool|strong=\"H6315\"*, and|strong=\"H3117\"* the|strong=\"H3117\"* shadows|strong=\"H6752\"* flee|strong=\"H5127\"* away|strong=\"H3212\"*," + }, + { + "verseNum": 7, + "text": "You|strong=\"H3605\"* are all|strong=\"H3605\"* beautiful|strong=\"H3303\"*, my|strong=\"H3605\"* love|strong=\"H7474\"*." + }, + { + "verseNum": 8, + "text": "Come with|strong=\"H7218\"* me|strong=\"H7789\"* from|strong=\"H7218\"* Lebanon|strong=\"H3844\"*, my|strong=\"H7789\"* bride|strong=\"H3618\"*," + }, + { + "verseNum": 9, + "text": "You|strong=\"H5869\"* have|strong=\"H5869\"* ravished my heart|strong=\"H3823\"*, my sister, my bride|strong=\"H3618\"*." + }, + { + "verseNum": 10, + "text": "How|strong=\"H4100\"* beautiful|strong=\"H3302\"* is|strong=\"H4100\"* your|strong=\"H3605\"* love|strong=\"H1730\"*, my|strong=\"H3605\"* sister, my|strong=\"H3605\"* bride|strong=\"H3618\"*!" + }, + { + "verseNum": 11, + "text": "Your|strong=\"H8478\"* lips|strong=\"H8193\"*, my|strong=\"H8478\"* bride|strong=\"H3618\"*, drip|strong=\"H5197\"* like|strong=\"H7381\"* the|strong=\"H8478\"* honeycomb|strong=\"H5317\"*." + }, + { + "verseNum": 12, + "text": "My sister, my bride|strong=\"H3618\"*, is a|strong=\"H3068\"* locked|strong=\"H5274\"* up|strong=\"H2856\"* garden|strong=\"H1588\"*;" + }, + { + "verseNum": 13, + "text": "Your|strong=\"H5973\"* shoots|strong=\"H7973\"* are|strong=\"H5973\"* an orchard|strong=\"H6508\"* of|strong=\"H6529\"* pomegranates|strong=\"H7416\"*, with|strong=\"H5973\"* precious|strong=\"H4022\"* fruits|strong=\"H6529\"*," + }, + { + "verseNum": 14, + "text": "spikenard|strong=\"H5373\"* and|strong=\"H6086\"* saffron|strong=\"H3750\"*," + }, + { + "verseNum": 15, + "text": "a|strong=\"H3068\"* fountain|strong=\"H4599\"* of|strong=\"H4325\"* gardens|strong=\"H1588\"*," + }, + { + "verseNum": 16, + "text": "Awake|strong=\"H5782\"*, north|strong=\"H6828\"* wind|strong=\"H8486\"*, and|strong=\"H6828\"* come, you south|strong=\"H8486\"*!" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "I have|strong=\"H5973\"* come into my|strong=\"H5973\"* garden|strong=\"H1588\"*, my|strong=\"H5973\"* sister, my|strong=\"H5973\"* bride|strong=\"H3618\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H6963\"* was|strong=\"H3820\"* asleep|strong=\"H3462\"*, but|strong=\"H3820\"* my|strong=\"H6605\"* heart|strong=\"H3820\"* was|strong=\"H3820\"* awake|strong=\"H5782\"*." + }, + { + "verseNum": 3, + "text": "I have|strong=\"H7272\"* taken|strong=\"H6584\"* off|strong=\"H6584\"* my|strong=\"H7364\"* robe|strong=\"H3801\"*. Indeed, must I put|strong=\"H3847\"* it on|strong=\"H3847\"*?" + }, + { + "verseNum": 4, + "text": "My|strong=\"H5921\"* beloved|strong=\"H1730\"* thrust|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"* in|strong=\"H5921\"* through|strong=\"H3027\"* the|strong=\"H5921\"* latch opening|strong=\"H2356\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H5921\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H5921\"* open|strong=\"H6605\"* for|strong=\"H5921\"* my|strong=\"H5921\"* beloved|strong=\"H1730\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H5315\"* opened|strong=\"H6605\"* to|strong=\"H1696\"* my|strong=\"H1245\"* beloved|strong=\"H1730\"*;" + }, + { + "verseNum": 7, + "text": "The|strong=\"H5921\"* watchmen|strong=\"H8104\"* who|strong=\"H8104\"* go|strong=\"H5437\"* about|strong=\"H5437\"* the|strong=\"H5921\"* city|strong=\"H5892\"* found|strong=\"H4672\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H4100\"* adjure|strong=\"H7650\"* you|strong=\"H5046\"*, daughters|strong=\"H1323\"* of|strong=\"H1323\"* Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 9, + "text": "How|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H4100\"* beloved|strong=\"H1730\"* better than|strong=\"H1730\"* another beloved|strong=\"H1730\"*," + }, + { + "verseNum": 10, + "text": "My beloved|strong=\"H1730\"* is|strong=\"H1730\"* white|strong=\"H6703\"* and|strong=\"H6703\"* ruddy." + }, + { + "verseNum": 11, + "text": "His|strong=\"H6158\"* head|strong=\"H7218\"* is|strong=\"H7218\"* like|strong=\"H7218\"* the|strong=\"H7218\"* purest gold|strong=\"H3800\"*." + }, + { + "verseNum": 12, + "text": "His|strong=\"H5921\"* eyes|strong=\"H5869\"* are|strong=\"H5869\"* like|strong=\"H5921\"* doves|strong=\"H3123\"* beside|strong=\"H5921\"* the|strong=\"H5921\"* water|strong=\"H4325\"* brooks," + }, + { + "verseNum": 13, + "text": "His|strong=\"H5674\"* cheeks|strong=\"H3895\"* are|strong=\"H8193\"* like|strong=\"H7799\"* a|strong=\"H3068\"* bed|strong=\"H6170\"* of|strong=\"H4026\"* spices|strong=\"H1314\"* with|strong=\"H5674\"* towers|strong=\"H4026\"* of|strong=\"H4026\"* perfumes." + }, + { + "verseNum": 14, + "text": "His|strong=\"H3027\"* hands|strong=\"H3027\"* are|strong=\"H3027\"* like|strong=\"H4390\"* rings|strong=\"H1550\"* of|strong=\"H3027\"* gold|strong=\"H2091\"* set|strong=\"H4390\"* with|strong=\"H4390\"* beryl|strong=\"H8658\"*." + }, + { + "verseNum": 15, + "text": "His|strong=\"H5921\"* legs|strong=\"H7785\"* are|strong=\"H7785\"* like|strong=\"H4758\"* pillars|strong=\"H5982\"* of|strong=\"H5982\"* marble|strong=\"H8336\"* set|strong=\"H3245\"* on|strong=\"H5921\"* sockets of|strong=\"H5982\"* fine|strong=\"H8336\"* gold|strong=\"H6337\"*." + }, + { + "verseNum": 16, + "text": "His|strong=\"H3605\"* mouth|strong=\"H2441\"* is|strong=\"H2088\"* sweetness|strong=\"H4477\"*;" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Where has|strong=\"H5973\"* your|strong=\"H1245\"* beloved|strong=\"H1730\"* gone|strong=\"H1980\"*, you|strong=\"H5973\"* fairest|strong=\"H3303\"* among|strong=\"H5973\"* women?" + }, + { + "verseNum": 2, + "text": "My|strong=\"H7462\"* beloved|strong=\"H1730\"* has|strong=\"H1730\"* gone|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* his|strong=\"H3381\"* garden|strong=\"H1588\"*," + }, + { + "verseNum": 3, + "text": "I am my|strong=\"H7462\"* beloved|strong=\"H1730\"*’s, and|strong=\"H7462\"* my|strong=\"H7462\"* beloved|strong=\"H1730\"* is|strong=\"H1730\"* mine." + }, + { + "verseNum": 4, + "text": "You are beautiful|strong=\"H3303\"*, my love|strong=\"H7474\"*, as|strong=\"H3389\"* Tirzah|strong=\"H8656\"*," + }, + { + "verseNum": 5, + "text": "Turn|strong=\"H5437\"* away|strong=\"H5437\"* your|strong=\"H4480\"* eyes|strong=\"H5869\"* from|strong=\"H4480\"* me|strong=\"H4480\"*," + }, + { + "verseNum": 6, + "text": "Your|strong=\"H3605\"* teeth|strong=\"H8127\"* are|strong=\"H8127\"* like|strong=\"H5927\"* a|strong=\"H3068\"* flock|strong=\"H5739\"* of|strong=\"H4480\"* ewes|strong=\"H7353\"*," + }, + { + "verseNum": 7, + "text": "Your|strong=\"H1157\"* temples|strong=\"H7541\"* are like a|strong=\"H3068\"* piece|strong=\"H6400\"* of|strong=\"H7416\"* a|strong=\"H3068\"* pomegranate|strong=\"H7416\"* behind|strong=\"H1157\"* your|strong=\"H1157\"* veil|strong=\"H6777\"*." + }, + { + "verseNum": 8, + "text": "There|strong=\"H1992\"* are|strong=\"H1992\"* sixty|strong=\"H8346\"* queens|strong=\"H4436\"*, eighty|strong=\"H8084\"* concubines|strong=\"H6370\"*," + }, + { + "verseNum": 9, + "text": "My|strong=\"H7200\"* dove|strong=\"H3123\"*, my|strong=\"H7200\"* perfect|strong=\"H8535\"* one|strong=\"H1931\"*, is|strong=\"H1931\"* unique." + }, + { + "verseNum": 10, + "text": "Who|strong=\"H4310\"* is|strong=\"H4310\"* she|strong=\"H2063\"* who|strong=\"H4310\"* looks|strong=\"H8259\"* out|strong=\"H8259\"* as|strong=\"H3644\"* the|strong=\"H3644\"* morning|strong=\"H7837\"*," + }, + { + "verseNum": 11, + "text": "I|strong=\"H7200\"* went|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H7200\"* nut tree|strong=\"H7416\"* grove," + }, + { + "verseNum": 12, + "text": "Without|strong=\"H3808\"* realizing it|strong=\"H7760\"*," + }, + { + "verseNum": 13, + "text": "Return, return, Shulammite!" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "How|strong=\"H4100\"* beautiful are|strong=\"H4100\"* your|strong=\"H7725\"* feet in|strong=\"H7725\"* sandals, prince’s daughter!" + }, + { + "verseNum": 2, + "text": "Your|strong=\"H3027\"* body|strong=\"H3409\"* is|strong=\"H4100\"* like|strong=\"H3644\"* a|strong=\"H3068\"* round|strong=\"H4639\"* goblet," + }, + { + "verseNum": 3, + "text": "Your two breasts are like|strong=\"H7799\"* two fawns," + }, + { + "verseNum": 4, + "text": "Your neck is like|strong=\"H7699\"* an ivory tower." + }, + { + "verseNum": 5, + "text": "Your|strong=\"H5921\"* head|strong=\"H6440\"* on|strong=\"H5921\"* you|strong=\"H6440\"* is|strong=\"H5869\"* like|strong=\"H5921\"* Carmel." + }, + { + "verseNum": 6, + "text": "How beautiful and|strong=\"H4428\"* how pleasant you|strong=\"H5921\"* are|strong=\"H4428\"*," + }, + { + "verseNum": 7, + "text": "This|strong=\"H4100\"*, your|strong=\"H4100\"* stature, is|strong=\"H4100\"* like a|strong=\"H3068\"* palm tree," + }, + { + "verseNum": 8, + "text": "I|strong=\"H1819\"* said, “I|strong=\"H1819\"* will climb up into the|strong=\"H1819\"* palm|strong=\"H8558\"* tree|strong=\"H8558\"*." + }, + { + "verseNum": 9, + "text": "Your|strong=\"H1961\"* mouth is|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H5927\"* best wine," + }, + { + "verseNum": 10, + "text": "I|strong=\"H1980\"* am|strong=\"H1980\"* my|strong=\"H1980\"* beloved|strong=\"H1730\"*’s." + }, + { + "verseNum": 11, + "text": "Come, my|strong=\"H5921\"* beloved|strong=\"H1730\"*! Let’s go out|strong=\"H5921\"* into|strong=\"H5921\"* the|strong=\"H5921\"* field." + }, + { + "verseNum": 12, + "text": "Let|strong=\"H3212\"*’s go|strong=\"H3212\"* early up|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3318\"* vineyards." + }, + { + "verseNum": 13, + "text": "The|strong=\"H7200\"* mandrakes produce|strong=\"H5414\"* fragrance." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Oh|strong=\"H4310\"* that|strong=\"H5414\"* you|strong=\"H5414\"* were|strong=\"H7699\"* like|strong=\"H3808\"* my|strong=\"H5414\"* brother," + }, + { + "verseNum": 2, + "text": "I|strong=\"H1004\"* would lead|strong=\"H5090\"* you|strong=\"H3925\"*, bringing you|strong=\"H3925\"* into the|strong=\"H8248\"* house|strong=\"H1004\"* of|strong=\"H1004\"* my|strong=\"H3925\"* mother," + }, + { + "verseNum": 3, + "text": "His|strong=\"H8478\"* left|strong=\"H8040\"* hand|strong=\"H3225\"* would be|strong=\"H8040\"* under|strong=\"H8478\"* my|strong=\"H8478\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H5704\"* adjure|strong=\"H7650\"* you|strong=\"H5704\"*, daughters|strong=\"H1323\"* of|strong=\"H1323\"* Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 5, + "text": "Who|strong=\"H4310\"* is|strong=\"H4310\"* this|strong=\"H2063\"* who|strong=\"H4310\"* comes|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H4480\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*," + }, + { + "verseNum": 6, + "text": "Set|strong=\"H7760\"* me|strong=\"H5921\"* as|strong=\"H3588\"* a|strong=\"H3068\"* seal|strong=\"H2368\"* on|strong=\"H5921\"* your|strong=\"H5921\"* heart|strong=\"H3820\"*," + }, + { + "verseNum": 7, + "text": "Many|strong=\"H7227\"* waters|strong=\"H4325\"* can|strong=\"H3201\"*’t quench|strong=\"H3518\"* love," + }, + { + "verseNum": 8, + "text": "We|strong=\"H3117\"* have|strong=\"H3117\"* a|strong=\"H3068\"* little|strong=\"H6996\"* sister." + }, + { + "verseNum": 9, + "text": "If|strong=\"H1931\"* she|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* wall|strong=\"H2346\"*," + }, + { + "verseNum": 10, + "text": "I|strong=\"H4672\"* am|strong=\"H1961\"* a|strong=\"H3068\"* wall|strong=\"H2346\"*, and|strong=\"H5869\"* my|strong=\"H1961\"* breasts|strong=\"H7699\"* like|strong=\"H1961\"* towers|strong=\"H4026\"*," + }, + { + "verseNum": 11, + "text": "Solomon|strong=\"H8010\"* had|strong=\"H1961\"* a|strong=\"H3068\"* vineyard|strong=\"H3754\"* at|strong=\"H1961\"* Baal Hamon." + }, + { + "verseNum": 12, + "text": "My|strong=\"H8010\"* own|strong=\"H6440\"* vineyard|strong=\"H3754\"* is|strong=\"H6440\"* before|strong=\"H6440\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H6963\"* who|strong=\"H3427\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H8085\"* gardens|strong=\"H1588\"*, with|strong=\"H3427\"* friends in|strong=\"H3427\"* attendance," + }, + { + "verseNum": 14, + "text": "Come away|strong=\"H1272\"*, my|strong=\"H5921\"* beloved|strong=\"H1730\"*!" + } + ] + } + ] + }, + { + "name": "Isaiah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5921\"* vision|strong=\"H2377\"* of|strong=\"H1121\"* Isaiah|strong=\"H3470\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz, which|strong=\"H3063\"* he|strong=\"H3117\"* saw|strong=\"H2372\"* concerning|strong=\"H5921\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Uzziah|strong=\"H5818\"*, Jotham|strong=\"H3147\"*, Ahaz, and|strong=\"H1121\"* Hezekiah|strong=\"H2396\"*, kings|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 2, + "text": "Hear|strong=\"H8085\"*, heavens|strong=\"H8064\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H3045\"* ox|strong=\"H7794\"* knows|strong=\"H3045\"* his|strong=\"H3045\"* owner|strong=\"H1167\"*," + }, + { + "verseNum": 4, + "text": "Ah|strong=\"H1945\"* sinful|strong=\"H2398\"* nation|strong=\"H1471\"*," + }, + { + "verseNum": 5, + "text": "Why|strong=\"H4100\"* should|strong=\"H4100\"* you|strong=\"H3605\"* be|strong=\"H5750\"* beaten|strong=\"H5221\"* more|strong=\"H3254\"*," + }, + { + "verseNum": 6, + "text": "From|strong=\"H5704\"* the|strong=\"H5704\"* sole|strong=\"H3709\"* of|strong=\"H7218\"* the|strong=\"H5704\"* foot|strong=\"H7272\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* head|strong=\"H7218\"* there|strong=\"H5704\"* is|strong=\"H7218\"* no|strong=\"H3808\"* soundness|strong=\"H4974\"* in|strong=\"H3808\"* it|strong=\"H5704\"*," + }, + { + "verseNum": 7, + "text": "Your|strong=\"H8313\"* country is|strong=\"H5892\"* desolate|strong=\"H8077\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5341\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zion|strong=\"H6726\"* is|strong=\"H5892\"* left|strong=\"H3498\"* like|strong=\"H1323\"* a|strong=\"H3068\"* shelter|strong=\"H5521\"* in|strong=\"H5892\"* a|strong=\"H3068\"* vineyard|strong=\"H3754\"*," + }, + { + "verseNum": 9, + "text": "Unless|strong=\"H3884\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* had|strong=\"H3068\"* left|strong=\"H3498\"* to|strong=\"H3068\"* us|strong=\"H1961\"* a|strong=\"H3068\"* very|strong=\"H4592\"* small|strong=\"H4592\"* remnant|strong=\"H3498\"*," + }, + { + "verseNum": 10, + "text": "Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, you|strong=\"H5971\"* rulers|strong=\"H7101\"* of|strong=\"H3068\"* Sodom|strong=\"H5467\"*!" + }, + { + "verseNum": 11, + "text": "“What|strong=\"H4100\"* are|strong=\"H4100\"* the|strong=\"H3068\"* multitude|strong=\"H7230\"* of|strong=\"H3068\"* your|strong=\"H3068\"* sacrifices|strong=\"H2077\"* to|strong=\"H3068\"* me|strong=\"H3808\"*?”, says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* come to|strong=\"H6440\"* appear|strong=\"H7200\"* before|strong=\"H6440\"* me|strong=\"H6440\"*," + }, + { + "verseNum": 13, + "text": "Bring|strong=\"H3254\"* no|strong=\"H3808\"* more|strong=\"H3254\"* vain|strong=\"H7723\"* offerings|strong=\"H4503\"*." + }, + { + "verseNum": 14, + "text": "My|strong=\"H5921\"* soul|strong=\"H5315\"* hates|strong=\"H8130\"* your|strong=\"H5921\"* New|strong=\"H2320\"* Moons|strong=\"H2320\"* and|strong=\"H5315\"* your|strong=\"H5921\"* appointed|strong=\"H4150\"* feasts|strong=\"H4150\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* spread|strong=\"H6566\"* out|strong=\"H4480\"* your|strong=\"H8085\"* hands|strong=\"H3027\"*, I|strong=\"H3588\"* will|strong=\"H1571\"* hide|strong=\"H5956\"* my|strong=\"H8085\"* eyes|strong=\"H5869\"* from|strong=\"H4480\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 16, + "text": "Wash|strong=\"H7364\"* yourselves|strong=\"H5869\"*. Make|strong=\"H2135\"* yourself clean|strong=\"H2135\"*." + }, + { + "verseNum": 17, + "text": "Learn|strong=\"H3925\"* to|strong=\"H3925\"* do|strong=\"H3190\"* well|strong=\"H3190\"*." + }, + { + "verseNum": 18, + "text": "“Come|strong=\"H1961\"* now|strong=\"H4994\"*, and|strong=\"H3068\"* let|strong=\"H4994\"*’s reason|strong=\"H3198\"* together|strong=\"H3198\"*,” says Yahweh|strong=\"H3068\"*:" + }, + { + "verseNum": 19, + "text": "If you|strong=\"H2898\"* are willing and|strong=\"H8085\"* obedient|strong=\"H8085\"*," + }, + { + "verseNum": 20, + "text": "but|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* refuse|strong=\"H3985\"* and|strong=\"H3068\"* rebel|strong=\"H4784\"*, you|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* devoured with|strong=\"H3068\"* the|strong=\"H3588\"* sword|strong=\"H2719\"*;" + }, + { + "verseNum": 21, + "text": "How the|strong=\"H1961\"* faithful city|strong=\"H7151\"* has|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*!" + }, + { + "verseNum": 22, + "text": "Your|strong=\"H1961\"* silver|strong=\"H3701\"* has|strong=\"H1961\"* become|strong=\"H1961\"* dross|strong=\"H5509\"*," + }, + { + "verseNum": 23, + "text": "Your|strong=\"H3605\"* princes|strong=\"H8269\"* are|strong=\"H8199\"* rebellious|strong=\"H5637\"* and|strong=\"H8269\"* companions|strong=\"H2270\"* of|strong=\"H8269\"* thieves|strong=\"H1590\"*." + }, + { + "verseNum": 24, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5002\"* Lord|strong=\"H3068\"*,+ 1:24 The word translated “Lord” is “Adonai.” * Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*," + }, + { + "verseNum": 25, + "text": "I|strong=\"H5921\"* will|strong=\"H3027\"* turn|strong=\"H7725\"* my|strong=\"H3605\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* you|strong=\"H3605\"*," + }, + { + "verseNum": 26, + "text": "I|strong=\"H3651\"* will|strong=\"H5892\"* restore|strong=\"H7725\"* your|strong=\"H7725\"* judges|strong=\"H8199\"* as|strong=\"H3651\"* at|strong=\"H7725\"* the|strong=\"H7725\"* first|strong=\"H7223\"*," + }, + { + "verseNum": 27, + "text": "Zion|strong=\"H6726\"* shall|strong=\"H4941\"* be|strong=\"H7725\"* redeemed|strong=\"H6299\"* with|strong=\"H7725\"* justice|strong=\"H4941\"*," + }, + { + "verseNum": 28, + "text": "But|strong=\"H5800\"* the|strong=\"H3068\"* destruction|strong=\"H7667\"* of|strong=\"H3068\"* transgressors|strong=\"H6586\"* and|strong=\"H3068\"* sinners|strong=\"H2400\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* together|strong=\"H3162\"*," + }, + { + "verseNum": 29, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* shall be|strong=\"H3588\"* ashamed|strong=\"H2659\"* of|strong=\"H1593\"* the|strong=\"H3588\"* oaks which|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* desired|strong=\"H2530\"*," + }, + { + "verseNum": 30, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H4325\"* be|strong=\"H1961\"* as|strong=\"H1961\"* an|strong=\"H1961\"* oak whose leaf|strong=\"H5929\"* fades|strong=\"H5034\"*," + }, + { + "verseNum": 31, + "text": "The|strong=\"H1961\"* strong|strong=\"H2634\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* tinder|strong=\"H5296\"*," + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "This|strong=\"H1697\"* is|strong=\"H1697\"* what|strong=\"H1697\"* Isaiah|strong=\"H3470\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz saw|strong=\"H2372\"* concerning|strong=\"H5921\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H5375\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"* in|strong=\"H3068\"* the|strong=\"H3605\"* latter days|strong=\"H3117\"*, that|strong=\"H3605\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* established|strong=\"H3559\"* on|strong=\"H3117\"* the|strong=\"H3605\"* top|strong=\"H7218\"* of|strong=\"H1004\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*," + }, + { + "verseNum": 3, + "text": "Many|strong=\"H7227\"* peoples|strong=\"H5971\"* shall|strong=\"H3068\"* go|strong=\"H1980\"* and|strong=\"H1980\"* say|strong=\"H1697\"*," + }, + { + "verseNum": 4, + "text": "He|strong=\"H3808\"* will|strong=\"H1471\"* judge|strong=\"H8199\"* between|strong=\"H4421\"* the|strong=\"H5375\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 5, + "text": "House|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*, come|strong=\"H3212\"*, and|strong=\"H3068\"* let|strong=\"H3212\"*’s walk|strong=\"H3212\"* in|strong=\"H3068\"* the|strong=\"H3068\"* light of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5971\"* forsaken|strong=\"H5203\"* your|strong=\"H3588\"* people|strong=\"H5971\"*, the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 7, + "text": "Their|strong=\"H4390\"* land is|strong=\"H3701\"* full|strong=\"H4390\"* of|strong=\"H4390\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 8, + "text": "Their|strong=\"H4390\"* land also|strong=\"H6213\"* is|strong=\"H3027\"* full|strong=\"H4390\"* of|strong=\"H3027\"* idols." + }, + { + "verseNum": 9, + "text": "Man|strong=\"H5375\"* is brought|strong=\"H5375\"* low|strong=\"H8213\"*," + }, + { + "verseNum": 10, + "text": "Enter into|strong=\"H6083\"* the|strong=\"H6440\"* rock|strong=\"H6697\"*," + }, + { + "verseNum": 11, + "text": "The|strong=\"H3068\"* lofty|strong=\"H1365\"* looks|strong=\"H5869\"* of|strong=\"H3068\"* man|strong=\"H8213\"* will|strong=\"H3068\"* be|strong=\"H3068\"* brought|strong=\"H5869\"* low|strong=\"H8213\"*," + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* there|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H3068\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* for|strong=\"H3588\"* all|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H3068\"* proud|strong=\"H1343\"* and|strong=\"H3068\"* arrogant," + }, + { + "verseNum": 13, + "text": "for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cedars of|strong=\"H5921\"* Lebanon|strong=\"H3844\"*, that|strong=\"H3605\"* are high|strong=\"H7311\"* and|strong=\"H7311\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"*," + }, + { + "verseNum": 14, + "text": "for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* high|strong=\"H7311\"* mountains|strong=\"H2022\"*," + }, + { + "verseNum": 15, + "text": "for|strong=\"H5921\"* every|strong=\"H3605\"* lofty|strong=\"H1364\"* tower|strong=\"H4026\"*," + }, + { + "verseNum": 16, + "text": "for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ships|strong=\"H7914\"* of|strong=\"H5921\"* Tarshish|strong=\"H8659\"*," + }, + { + "verseNum": 17, + "text": "The|strong=\"H3068\"* loftiness|strong=\"H7312\"* of|strong=\"H3068\"* man|strong=\"H8213\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* bowed|strong=\"H7817\"* down|strong=\"H7817\"*," + }, + { + "verseNum": 18, + "text": "The|strong=\"H2498\"* idols shall utterly|strong=\"H3632\"* pass|strong=\"H2498\"* away|strong=\"H2498\"*." + }, + { + "verseNum": 19, + "text": "Men shall|strong=\"H3068\"* go|strong=\"H6965\"* into|strong=\"H6083\"* the|strong=\"H6440\"* caves|strong=\"H4631\"* of|strong=\"H3068\"* the|strong=\"H6440\"* rocks|strong=\"H6697\"*," + }, + { + "verseNum": 20, + "text": "In|strong=\"H6213\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, men|strong=\"H6213\"* shall|strong=\"H3117\"* cast|strong=\"H7993\"* away|strong=\"H7993\"* their|strong=\"H6213\"* idols of|strong=\"H3117\"* silver|strong=\"H3701\"*" + }, + { + "verseNum": 21, + "text": "to|strong=\"H3068\"* go|strong=\"H6965\"* into the|strong=\"H6440\"* caverns|strong=\"H5366\"* of|strong=\"H3068\"* the|strong=\"H6440\"* rocks|strong=\"H6697\"*," + }, + { + "verseNum": 22, + "text": "Stop|strong=\"H2308\"* trusting|strong=\"H4480\"* in|strong=\"H4480\"* man, whose breath|strong=\"H5397\"* is|strong=\"H1931\"* in|strong=\"H4480\"* his|strong=\"H3588\"* nostrils;" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*,+ 3:1 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* the|strong=\"H3605\"* Lord|strong=\"H3068\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, takes|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* from|strong=\"H5493\"* Judah|strong=\"H3063\"* supply|strong=\"H4937\"* and|strong=\"H3063\"* support|strong=\"H4937\"*," + }, + { + "verseNum": 2, + "text": "the|strong=\"H8199\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"*," + }, + { + "verseNum": 3, + "text": "the|strong=\"H6440\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* fifty|strong=\"H2572\"*," + }, + { + "verseNum": 4, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* boys|strong=\"H5288\"* to|strong=\"H5414\"* be|strong=\"H5414\"* their|strong=\"H5414\"* princes|strong=\"H8269\"*," + }, + { + "verseNum": 5, + "text": "The|strong=\"H5971\"* people|strong=\"H5971\"* will|strong=\"H5971\"* be|strong=\"H5971\"* oppressed|strong=\"H5065\"*," + }, + { + "verseNum": 6, + "text": "Indeed|strong=\"H3588\"* a|strong=\"H3068\"* man shall|strong=\"H1004\"* take|strong=\"H8610\"* hold|strong=\"H8610\"* of|strong=\"H1004\"* his|strong=\"H3027\"* brother in|strong=\"H1980\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* his|strong=\"H3027\"* father, saying," + }, + { + "verseNum": 7, + "text": "In|strong=\"H1004\"* that|strong=\"H5971\"* day|strong=\"H3117\"* he|strong=\"H1931\"* will|strong=\"H1961\"* cry out|strong=\"H7760\"*, saying, “I|strong=\"H3117\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* a|strong=\"H3068\"* healer|strong=\"H2280\"*;" + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* Jerusalem|strong=\"H3389\"* is|strong=\"H3068\"* ruined|strong=\"H3782\"*, and|strong=\"H3063\"* Judah|strong=\"H3063\"* is|strong=\"H3068\"* fallen|strong=\"H5307\"*;" + }, + { + "verseNum": 9, + "text": "The|strong=\"H6440\"* look|strong=\"H6440\"* of|strong=\"H6440\"* their|strong=\"H6440\"* faces|strong=\"H6440\"* testify|strong=\"H6030\"* against|strong=\"H6440\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 10, + "text": "Tell the|strong=\"H3588\"* righteous|strong=\"H6662\"* that|strong=\"H3588\"* it|strong=\"H3588\"* will|strong=\"H6662\"* be|strong=\"H6662\"* well|strong=\"H2896\"* with|strong=\"H6662\"* them|strong=\"H3588\"*," + }, + { + "verseNum": 11, + "text": "Woe to|strong=\"H6213\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"*!" + }, + { + "verseNum": 12, + "text": "As|strong=\"H5971\"* for|strong=\"H5971\"* my|strong=\"H8582\"* people|strong=\"H5971\"*, children|strong=\"H5953\"* are|strong=\"H5971\"* their|strong=\"H1870\"* oppressors|strong=\"H5065\"*," + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* stands|strong=\"H5975\"* up|strong=\"H5975\"* to|strong=\"H3068\"* contend|strong=\"H7378\"*," + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* enter into|strong=\"H4941\"* judgment|strong=\"H4941\"* with|strong=\"H5973\"* the|strong=\"H3068\"* elders|strong=\"H2205\"* of|strong=\"H1004\"* his|strong=\"H3068\"* people|strong=\"H5971\"*" + }, + { + "verseNum": 15, + "text": "What do you|strong=\"H6440\"* mean that|strong=\"H5971\"* you|strong=\"H6440\"* crush|strong=\"H1792\"* my|strong=\"H6440\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 16, + "text": "Moreover|strong=\"H3588\"* Yahweh|strong=\"H3068\"* said, “Because|strong=\"H3588\"* the|strong=\"H3588\"* daughters|strong=\"H1323\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"* are|strong=\"H5869\"* arrogant," + }, + { + "verseNum": 17, + "text": "therefore|strong=\"H3068\"* the|strong=\"H3068\"* Lord|strong=\"H3068\"* brings sores on|strong=\"H3068\"* the|strong=\"H3068\"* crown|strong=\"H6936\"* of|strong=\"H3068\"* the|strong=\"H3068\"* head|strong=\"H6936\"* of|strong=\"H3068\"* the|strong=\"H3068\"* women|strong=\"H1323\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 18, + "text": "In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* the|strong=\"H3117\"* Lord will|strong=\"H1931\"* take|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H3117\"* beauty|strong=\"H8597\"* of|strong=\"H3117\"* their|strong=\"H3117\"* anklets|strong=\"H5914\"*, the|strong=\"H3117\"* headbands|strong=\"H7636\"*, the|strong=\"H3117\"* crescent|strong=\"H7720\"* necklaces," + }, + { + "verseNum": 19, + "text": "the earrings|strong=\"H5188\"*, the bracelets|strong=\"H8285\"*, the veils|strong=\"H7479\"*," + }, + { + "verseNum": 20, + "text": "the|strong=\"H1004\"* headdresses|strong=\"H6287\"*, the|strong=\"H1004\"* ankle|strong=\"H6807\"* chains|strong=\"H6807\"*, the|strong=\"H1004\"* sashes|strong=\"H7196\"*, the|strong=\"H1004\"* perfume|strong=\"H1004\"* containers, the|strong=\"H1004\"* charms," + }, + { + "verseNum": 21, + "text": "the signet|strong=\"H2885\"* rings|strong=\"H2885\"*, the nose rings|strong=\"H2885\"*," + }, + { + "verseNum": 22, + "text": "the fine robes|strong=\"H4254\"*, the capes, the cloaks|strong=\"H4304\"*, the purses|strong=\"H2754\"*," + }, + { + "verseNum": 23, + "text": "the hand|strong=\"H1549\"* mirrors|strong=\"H1549\"*, the fine linen|strong=\"H5466\"* garments|strong=\"H5466\"*, the tiaras, and|strong=\"H5466\"* the shawls." + }, + { + "verseNum": 24, + "text": "It|strong=\"H1961\"* shall|strong=\"H8478\"* happen|strong=\"H1961\"* that|strong=\"H1961\"* instead|strong=\"H8478\"* of|strong=\"H8478\"* sweet|strong=\"H1314\"* spices|strong=\"H1314\"*, there|strong=\"H1961\"* shall|strong=\"H8478\"* be|strong=\"H1961\"* rottenness|strong=\"H4716\"*;" + }, + { + "verseNum": 25, + "text": "Your|strong=\"H5307\"* men|strong=\"H4962\"* shall|strong=\"H2719\"* fall|strong=\"H5307\"* by|strong=\"H5307\"* the|strong=\"H5307\"* sword|strong=\"H2719\"*," + }, + { + "verseNum": 26, + "text": "Her gates|strong=\"H6607\"* shall|strong=\"H3427\"* lament and|strong=\"H3427\"* mourn." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Seven|strong=\"H7651\"* women shall|strong=\"H3117\"* take|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H3117\"* one|strong=\"H1931\"* man in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, saying, “We|strong=\"H3117\"* will|strong=\"H1931\"* eat|strong=\"H3899\"* our|strong=\"H5921\"* own|strong=\"H2388\"* bread|strong=\"H3899\"*, and|strong=\"H3117\"* wear|strong=\"H3847\"* our|strong=\"H5921\"* own|strong=\"H2388\"* clothing|strong=\"H8071\"*. Just let us|strong=\"H5921\"* be|strong=\"H8034\"* called|strong=\"H7121\"* by|strong=\"H5921\"* your|strong=\"H5921\"* name|strong=\"H8034\"*. Take|strong=\"H2388\"* away our|strong=\"H5921\"* reproach|strong=\"H2781\"*.”" + }, + { + "verseNum": 2, + "text": "In|strong=\"H3478\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, Yahweh|strong=\"H3068\"*’s branch|strong=\"H6780\"* will|strong=\"H3068\"* be|strong=\"H1961\"* beautiful|strong=\"H8597\"* and|strong=\"H3478\"* glorious|strong=\"H8597\"*, and|strong=\"H3478\"* the|strong=\"H3068\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land|strong=\"H1347\"* will|strong=\"H3068\"* be|strong=\"H1961\"* the|strong=\"H3068\"* beauty|strong=\"H8597\"* and|strong=\"H3478\"* glory|strong=\"H3519\"* of|strong=\"H3068\"* the|strong=\"H3068\"* survivors|strong=\"H6413\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H1961\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3605\"* left|strong=\"H7604\"* in|strong=\"H3789\"* Zion|strong=\"H6726\"* and|strong=\"H3389\"* he|strong=\"H3605\"* who|strong=\"H3605\"* remains|strong=\"H7604\"* in|strong=\"H3789\"* Jerusalem|strong=\"H3389\"* shall|strong=\"H2416\"* be|strong=\"H1961\"* called holy|strong=\"H6918\"*, even everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3605\"* written|strong=\"H3789\"* among the|strong=\"H3605\"* living|strong=\"H2416\"* in|strong=\"H3789\"* Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 4, + "text": "when the|strong=\"H7130\"* Lord shall|strong=\"H1323\"* have|strong=\"H1323\"* washed|strong=\"H7364\"* away|strong=\"H1197\"* the|strong=\"H7130\"* filth|strong=\"H6675\"* of|strong=\"H1323\"* the|strong=\"H7130\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Zion|strong=\"H6726\"*, and|strong=\"H4941\"* shall|strong=\"H1323\"* have|strong=\"H1323\"* purged|strong=\"H1740\"* the|strong=\"H7130\"* blood|strong=\"H1818\"* of|strong=\"H1323\"* Jerusalem|strong=\"H3389\"* from|strong=\"H7307\"* within|strong=\"H7130\"* it|strong=\"H7130\"*, by|strong=\"H3389\"* the|strong=\"H7130\"* spirit|strong=\"H7307\"* of|strong=\"H1323\"* justice|strong=\"H4941\"* and|strong=\"H4941\"* by|strong=\"H3389\"* the|strong=\"H7130\"* spirit|strong=\"H7307\"* of|strong=\"H1323\"* burning|strong=\"H1197\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* create|strong=\"H1254\"* over|strong=\"H5921\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* habitation|strong=\"H4349\"* of|strong=\"H3068\"* Mount|strong=\"H2022\"* Zion|strong=\"H6726\"* and|strong=\"H3068\"* over|strong=\"H5921\"* her|strong=\"H3605\"* assemblies|strong=\"H4744\"*, a|strong=\"H3068\"* cloud|strong=\"H6051\"* and|strong=\"H3068\"* smoke|strong=\"H6227\"* by|strong=\"H5921\"* day|strong=\"H3119\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* shining|strong=\"H5051\"* of|strong=\"H3068\"* a|strong=\"H3068\"* flaming|strong=\"H3852\"* fire by|strong=\"H5921\"* night|strong=\"H3915\"*, for|strong=\"H3588\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* glory|strong=\"H3519\"* will|strong=\"H3068\"* be|strong=\"H3068\"* a|strong=\"H3068\"* canopy|strong=\"H2646\"*." + }, + { + "verseNum": 6, + "text": "There|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* pavilion|strong=\"H5521\"* for|strong=\"H1961\"* a|strong=\"H3068\"* shade|strong=\"H6738\"* in|strong=\"H1961\"* the|strong=\"H1961\"* daytime|strong=\"H3119\"* from|strong=\"H1961\"* the|strong=\"H1961\"* heat|strong=\"H2721\"*, and|strong=\"H3119\"* for|strong=\"H1961\"* a|strong=\"H3068\"* refuge|strong=\"H4268\"* and|strong=\"H3119\"* for|strong=\"H1961\"* a|strong=\"H3068\"* shelter|strong=\"H4268\"* from|strong=\"H1961\"* storm|strong=\"H2230\"* and|strong=\"H3119\"* from|strong=\"H1961\"* rain|strong=\"H4306\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Let|strong=\"H4994\"* me|strong=\"H4994\"* sing|strong=\"H7891\"* for|strong=\"H1121\"* my|strong=\"H1961\"* well beloved|strong=\"H1730\"* a|strong=\"H3068\"* song|strong=\"H7892\"* of|strong=\"H1121\"* my|strong=\"H1961\"* beloved|strong=\"H1730\"* about|strong=\"H1961\"* his|strong=\"H1961\"* vineyard|strong=\"H3754\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* dug|strong=\"H5823\"* it|strong=\"H6213\"* up|strong=\"H1129\"*," + }, + { + "verseNum": 3, + "text": "“Now|strong=\"H6258\"*, inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* men of|strong=\"H3427\"* Judah|strong=\"H3063\"*," + }, + { + "verseNum": 4, + "text": "What|strong=\"H4100\"* could|strong=\"H4100\"* have|strong=\"H3808\"* been|strong=\"H3808\"* done|strong=\"H6213\"* more|strong=\"H5750\"* to|strong=\"H6213\"* my|strong=\"H6213\"* vineyard|strong=\"H3754\"*, that|strong=\"H6213\"* I|strong=\"H3808\"* have|strong=\"H3808\"* not|strong=\"H3808\"* done|strong=\"H6213\"* in|strong=\"H6213\"* it|strong=\"H6213\"*?" + }, + { + "verseNum": 5, + "text": "Now|strong=\"H6258\"* I|strong=\"H6258\"* will|strong=\"H1961\"* tell|strong=\"H3045\"* you|strong=\"H6213\"* what|strong=\"H3045\"* I|strong=\"H6258\"* will|strong=\"H1961\"* do|strong=\"H6213\"* to|strong=\"H1961\"* my|strong=\"H3045\"* vineyard|strong=\"H3754\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H5921\"* will|strong=\"H3808\"* lay|strong=\"H7896\"* it|strong=\"H5921\"* a|strong=\"H3068\"* wasteland." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* vineyard|strong=\"H3754\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* is|strong=\"H3068\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 8, + "text": "Woe|strong=\"H1945\"* to|strong=\"H5704\"* those|strong=\"H1945\"* who|strong=\"H3427\"* join|strong=\"H7126\"* house|strong=\"H1004\"* to|strong=\"H5704\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 9, + "text": "In|strong=\"H3427\"* my|strong=\"H3068\"* ears, Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* says: “Surely|strong=\"H1961\"* many|strong=\"H7227\"* houses|strong=\"H1004\"* will|strong=\"H3068\"* be|strong=\"H1961\"* desolate|strong=\"H8047\"*," + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* ten|strong=\"H6235\"* acres|strong=\"H6776\"*+ 5:10 literally, ten yokes, or the amount of land that ten yokes of oxen can plow in one day, which is about 10 acres or 4 hectares.* of|strong=\"H2233\"* vineyard|strong=\"H3754\"* shall|strong=\"H2233\"* yield|strong=\"H6213\"* one|strong=\"H6213\"* bath|strong=\"H1324\"*,+ 5:10 1 bath is about 22 liters or 5.8 U. S. gallons*" + }, + { + "verseNum": 11, + "text": "Woe|strong=\"H1945\"* to|strong=\"H1242\"* those|strong=\"H1945\"* who|strong=\"H1945\"* rise|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3196\"* the|strong=\"H7291\"* morning|strong=\"H1242\"*, that|strong=\"H3196\"* they|strong=\"H1242\"* may|strong=\"H3196\"* follow|strong=\"H7291\"* strong|strong=\"H7941\"* drink|strong=\"H7941\"*," + }, + { + "verseNum": 12, + "text": "The|strong=\"H7200\"* harp|strong=\"H3658\"*, lyre|strong=\"H3658\"*, tambourine|strong=\"H8596\"*, and|strong=\"H3068\"* flute|strong=\"H2485\"*, with|strong=\"H3068\"* wine|strong=\"H3196\"*, are|strong=\"H3027\"* at|strong=\"H3068\"* their|strong=\"H3068\"* feasts|strong=\"H4960\"*;" + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"H3651\"* my|strong=\"H3651\"* people|strong=\"H5971\"* go|strong=\"H1540\"* into|strong=\"H1540\"* captivity|strong=\"H1540\"* for|strong=\"H3651\"* lack|strong=\"H1097\"* of|strong=\"H5971\"* knowledge|strong=\"H1847\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H3651\"* Sheol|strong=\"H7585\"*+ 5:14 Sheol is the place of the dead.* has|strong=\"H5315\"* enlarged|strong=\"H7337\"* its|strong=\"H7337\"* desire|strong=\"H5315\"*," + }, + { + "verseNum": 15, + "text": "So man|strong=\"H8213\"* is|strong=\"H5869\"* brought|strong=\"H5869\"* low|strong=\"H8213\"*," + }, + { + "verseNum": 16, + "text": "but|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* is|strong=\"H3068\"* exalted|strong=\"H1361\"* in|strong=\"H3068\"* justice|strong=\"H4941\"*," + }, + { + "verseNum": 17, + "text": "Then the|strong=\"H7462\"* lambs|strong=\"H3532\"* will|strong=\"H2723\"* graze|strong=\"H7462\"* as|strong=\"H3532\"* in|strong=\"H1481\"* their|strong=\"H7462\"* pasture|strong=\"H7462\"*," + }, + { + "verseNum": 18, + "text": "Woe|strong=\"H1945\"* to|strong=\"H5771\"* those|strong=\"H1945\"* who|strong=\"H1945\"* draw|strong=\"H4900\"* iniquity|strong=\"H5771\"* with|strong=\"H5771\"* cords|strong=\"H5688\"* of|strong=\"H2403\"* falsehood|strong=\"H7723\"*," + }, + { + "verseNum": 19, + "text": "who|strong=\"H3478\"* say|strong=\"H3478\"*, “Let him|strong=\"H7200\"* make|strong=\"H3045\"* haste|strong=\"H4116\"*, let him|strong=\"H7200\"* hasten|strong=\"H2363\"* his|strong=\"H7200\"* work|strong=\"H4639\"*, that|strong=\"H3045\"* we|strong=\"H3068\"* may|strong=\"H3478\"* see|strong=\"H7200\"* it|strong=\"H7126\"*;" + }, + { + "verseNum": 20, + "text": "Woe|strong=\"H1945\"* to|strong=\"H2896\"* those|strong=\"H1945\"* who|strong=\"H2896\"* call evil|strong=\"H7451\"* good|strong=\"H2896\"*, and|strong=\"H2896\"* good|strong=\"H2896\"* evil|strong=\"H7451\"*;" + }, + { + "verseNum": 21, + "text": "Woe|strong=\"H1945\"* to|strong=\"H6440\"* those|strong=\"H1945\"* who|strong=\"H2450\"* are|strong=\"H5869\"* wise|strong=\"H2450\"* in|strong=\"H6440\"* their|strong=\"H6440\"* own|strong=\"H6440\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 22, + "text": "Woe|strong=\"H1945\"* to|strong=\"H2428\"* those|strong=\"H1945\"* who|strong=\"H1368\"* are|strong=\"H1368\"* mighty|strong=\"H1368\"* to|strong=\"H2428\"* drink|strong=\"H8354\"* wine|strong=\"H3196\"*," + }, + { + "verseNum": 23, + "text": "who|strong=\"H6662\"* acquit|strong=\"H6663\"* the|strong=\"H4480\"* guilty|strong=\"H7563\"* for|strong=\"H4480\"* a|strong=\"H3068\"* bribe|strong=\"H7810\"*," + }, + { + "verseNum": 24, + "text": "Therefore|strong=\"H3651\"* as|strong=\"H1961\"* the|strong=\"H3588\"* tongue|strong=\"H3956\"* of|strong=\"H3068\"* fire devours the|strong=\"H3588\"* stubble|strong=\"H7179\"*," + }, + { + "verseNum": 25, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"*’s anger burns|strong=\"H2734\"* against|strong=\"H5921\"* his|strong=\"H3605\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 26, + "text": "He|strong=\"H2009\"* will|strong=\"H1471\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* banner|strong=\"H5251\"* to|strong=\"H1471\"* the|strong=\"H5375\"* nations|strong=\"H1471\"* from|strong=\"H1471\"* far|strong=\"H7350\"* away|strong=\"H5375\"*," + }, + { + "verseNum": 27, + "text": "No|strong=\"H3808\"* one|strong=\"H3808\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* weary|strong=\"H5889\"* nor|strong=\"H3808\"* stumble|strong=\"H3782\"* among|strong=\"H3808\"* them|strong=\"H5423\"*;" + }, + { + "verseNum": 28, + "text": "whose|strong=\"H3605\"* arrows|strong=\"H2671\"* are|strong=\"H5483\"* sharp|strong=\"H8150\"*," + }, + { + "verseNum": 29, + "text": "Their|strong=\"H5337\"* roaring|strong=\"H7580\"* will be like|strong=\"H7580\"* a|strong=\"H3068\"* lioness|strong=\"H3833\"*." + }, + { + "verseNum": 30, + "text": "They|strong=\"H3117\"* will|strong=\"H1931\"* roar|strong=\"H5098\"* against|strong=\"H5921\"* them|strong=\"H5921\"* in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* like|strong=\"H5921\"* the|strong=\"H5921\"* roaring|strong=\"H5098\"* of|strong=\"H3117\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3427\"* the|strong=\"H5921\"* year|strong=\"H8141\"* that|strong=\"H7200\"* King|strong=\"H4428\"* Uzziah|strong=\"H5818\"* died|strong=\"H4194\"*, I|strong=\"H5921\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* Lord sitting|strong=\"H3427\"* on|strong=\"H5921\"* a|strong=\"H3068\"* throne|strong=\"H3678\"*, high|strong=\"H7311\"* and|strong=\"H4428\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"*; and|strong=\"H4428\"* his|strong=\"H5375\"* train|strong=\"H7757\"* filled|strong=\"H4390\"* the|strong=\"H5921\"* temple|strong=\"H1964\"*." + }, + { + "verseNum": 2, + "text": "Above|strong=\"H4605\"* him|strong=\"H6440\"* stood|strong=\"H5975\"* the|strong=\"H6440\"* seraphim|strong=\"H8314\"*. Each|strong=\"H8147\"* one|strong=\"H3671\"* had six|strong=\"H8337\"* wings|strong=\"H3671\"*. With|strong=\"H6440\"* two|strong=\"H8147\"* he|strong=\"H8147\"* covered|strong=\"H3680\"* his|strong=\"H6440\"* face|strong=\"H6440\"*. With|strong=\"H6440\"* two|strong=\"H8147\"* he|strong=\"H8147\"* covered|strong=\"H3680\"* his|strong=\"H6440\"* feet|strong=\"H7272\"*. With|strong=\"H6440\"* two|strong=\"H8147\"* he|strong=\"H8147\"* flew|strong=\"H5774\"*." + }, + { + "verseNum": 3, + "text": "One|strong=\"H6918\"* called|strong=\"H7121\"* to|strong=\"H3068\"* another|strong=\"H2088\"*, and|strong=\"H3068\"* said|strong=\"H7121\"*," + }, + { + "verseNum": 4, + "text": "The|strong=\"H7121\"* foundations of|strong=\"H1004\"* the|strong=\"H7121\"* thresholds|strong=\"H5592\"* shook|strong=\"H5128\"* at|strong=\"H1004\"* the|strong=\"H7121\"* voice|strong=\"H6963\"* of|strong=\"H1004\"* him|strong=\"H7121\"* who|strong=\"H7121\"* called|strong=\"H7121\"*, and|strong=\"H1004\"* the|strong=\"H7121\"* house|strong=\"H1004\"* was|strong=\"H1004\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* smoke|strong=\"H6227\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H4428\"* I|strong=\"H3588\"* said, “Woe is|strong=\"H3068\"* me|strong=\"H7200\"*! For|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* undone|strong=\"H1820\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* a|strong=\"H3068\"* man|strong=\"H7200\"* of|strong=\"H4428\"* unclean|strong=\"H2931\"* lips|strong=\"H8193\"* and|strong=\"H3068\"* I|strong=\"H3588\"* live|strong=\"H3427\"* among|strong=\"H8432\"* a|strong=\"H3068\"* people|strong=\"H5971\"* of|strong=\"H4428\"* unclean|strong=\"H2931\"* lips|strong=\"H8193\"*, for|strong=\"H3588\"* my|strong=\"H3068\"* eyes|strong=\"H5869\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* King|strong=\"H4428\"*, Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*!”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H3947\"* one|strong=\"H4480\"* of|strong=\"H3027\"* the|strong=\"H5921\"* seraphim|strong=\"H8314\"* flew|strong=\"H5774\"* to|strong=\"H5921\"* me|strong=\"H5921\"*, having a|strong=\"H3068\"* live coal|strong=\"H7531\"* in|strong=\"H5921\"* his|strong=\"H3947\"* hand|strong=\"H3027\"*, which|strong=\"H4196\"* he|strong=\"H3027\"* had|strong=\"H3027\"* taken|strong=\"H3947\"* with|strong=\"H5921\"* the|strong=\"H5921\"* tongs|strong=\"H4457\"* from|strong=\"H4480\"* off|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H5921\"* touched|strong=\"H5060\"* my|strong=\"H5921\"* mouth|strong=\"H6310\"* with|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H6310\"* said|strong=\"H6310\"*, “Behold|strong=\"H2009\"*, this|strong=\"H2088\"* has|strong=\"H2009\"* touched|strong=\"H5060\"* your|strong=\"H5921\"* lips|strong=\"H8193\"*; and|strong=\"H6310\"* your|strong=\"H5921\"* iniquity|strong=\"H5771\"* is|strong=\"H2088\"* taken|strong=\"H5493\"* away|strong=\"H5493\"*, and|strong=\"H6310\"* your|strong=\"H5921\"* sin|strong=\"H2403\"* forgiven|strong=\"H3722\"*.”" + }, + { + "verseNum": 8, + "text": "I|strong=\"H2005\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* Lord’s voice|strong=\"H6963\"*, saying|strong=\"H6963\"*, “Whom|strong=\"H4310\"* shall|strong=\"H4310\"* I|strong=\"H2005\"* send|strong=\"H7971\"*, and|strong=\"H7971\"* who|strong=\"H4310\"* will|strong=\"H4310\"* go|strong=\"H3212\"* for|strong=\"H7971\"* us|strong=\"H8085\"*?”" + }, + { + "verseNum": 9, + "text": "He|strong=\"H5971\"* said|strong=\"H8085\"*, “Go|strong=\"H3212\"*, and|strong=\"H3212\"* tell|strong=\"H3045\"* this|strong=\"H2088\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 10, + "text": "Make|strong=\"H8085\"* the|strong=\"H8085\"* heart|strong=\"H3820\"* of|strong=\"H5869\"* this|strong=\"H2088\"* people|strong=\"H5971\"* fat|strong=\"H8080\"*." + }, + { + "verseNum": 11, + "text": "Then I|strong=\"H5704\"* said, “Lord, how|strong=\"H4970\"* long|strong=\"H5704\"*?”" + }, + { + "verseNum": 12, + "text": "and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* removed|strong=\"H7368\"* men|strong=\"H7227\"* far|strong=\"H7368\"* away|strong=\"H7368\"*," + }, + { + "verseNum": 13, + "text": "If|strong=\"H1961\"* there|strong=\"H1961\"* is|strong=\"H1961\"* a|strong=\"H3068\"* tenth|strong=\"H6224\"* left|strong=\"H7725\"* in|strong=\"H7725\"* it|strong=\"H7725\"*," + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Ahaz the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jotham|strong=\"H3147\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uzziah|strong=\"H5818\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Rezin|strong=\"H7526\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria and|strong=\"H1121\"* Pekah|strong=\"H6492\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3478\"* war|strong=\"H4421\"* against|strong=\"H5921\"* it|strong=\"H5921\"*, but|strong=\"H3808\"* could|strong=\"H3201\"* not|strong=\"H3808\"* prevail|strong=\"H3201\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"*’s house|strong=\"H1004\"* was|strong=\"H1732\"* told|strong=\"H5046\"*, “Syria is|strong=\"H7307\"* allied with|strong=\"H1004\"* Ephraim.” His|strong=\"H1732\"* heart|strong=\"H3824\"* trembled|strong=\"H5128\"*, and|strong=\"H1004\"* the|strong=\"H6440\"* heart|strong=\"H3824\"* of|strong=\"H1004\"* his|strong=\"H1732\"* people|strong=\"H5971\"*, as|strong=\"H3824\"* the|strong=\"H6440\"* trees|strong=\"H6086\"* of|strong=\"H1004\"* the|strong=\"H6440\"* forest|strong=\"H3293\"* tremble|strong=\"H5128\"* with|strong=\"H1004\"* the|strong=\"H6440\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H3318\"* Yahweh|strong=\"H3068\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Isaiah|strong=\"H3470\"*, “Go|strong=\"H3318\"* out|strong=\"H3318\"* now|strong=\"H4994\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* Ahaz, you|strong=\"H4994\"*, and|strong=\"H1121\"* Shearjashub your|strong=\"H3068\"* son|strong=\"H1121\"*, at|strong=\"H3068\"* the|strong=\"H3068\"* end|strong=\"H7097\"* of|strong=\"H1121\"* the|strong=\"H3068\"* conduit|strong=\"H8585\"* of|strong=\"H1121\"* the|strong=\"H3068\"* upper|strong=\"H5945\"* pool|strong=\"H1295\"*, on|strong=\"H3068\"* the|strong=\"H3068\"* highway|strong=\"H4546\"* of|strong=\"H1121\"* the|strong=\"H3068\"* fuller’s field|strong=\"H7704\"*." + }, + { + "verseNum": 4, + "text": "Tell him|strong=\"H8104\"*, ‘Be|strong=\"H1121\"* careful|strong=\"H8104\"*, and|strong=\"H1121\"* keep|strong=\"H8104\"* calm|strong=\"H8252\"*. Don’t be|strong=\"H1121\"* afraid|strong=\"H3372\"*, neither let your|strong=\"H8104\"* heart|strong=\"H3824\"* be|strong=\"H1121\"* faint|strong=\"H7401\"* because|strong=\"H3372\"* of|strong=\"H1121\"* these|strong=\"H8147\"* two|strong=\"H8147\"* tails|strong=\"H2180\"* of|strong=\"H1121\"* smoking|strong=\"H6226\"* torches, for|strong=\"H1121\"* the|strong=\"H8104\"* fierce|strong=\"H2750\"* anger|strong=\"H3824\"* of|strong=\"H1121\"* Rezin|strong=\"H7526\"* and|strong=\"H1121\"* Syria, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H8104\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"*." + }, + { + "verseNum": 5, + "text": "Because|strong=\"H3588\"* Syria, Ephraim, and|strong=\"H1121\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"*, have|strong=\"H1121\"* plotted|strong=\"H7451\"* evil|strong=\"H7451\"* against|strong=\"H5921\"* you|strong=\"H3588\"*, saying," + }, + { + "verseNum": 6, + "text": "“Let’s go|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5927\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* tear|strong=\"H1234\"* it|strong=\"H8432\"* apart, and|strong=\"H1121\"* let’s divide|strong=\"H1234\"* it|strong=\"H8432\"* among|strong=\"H8432\"* ourselves, and|strong=\"H1121\"* set|strong=\"H4427\"* up|strong=\"H5927\"* a|strong=\"H3068\"* king|strong=\"H4428\"* within|strong=\"H8432\"* it|strong=\"H8432\"*, even the|strong=\"H8432\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Tabeel|strong=\"H2870\"*.”" + }, + { + "verseNum": 7, + "text": "This|strong=\"H3541\"* is|strong=\"H1961\"* what|strong=\"H3541\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “It|strong=\"H1961\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* stand|strong=\"H6965\"*, neither|strong=\"H3808\"* shall|strong=\"H3808\"* it|strong=\"H1961\"* happen|strong=\"H1961\"*.”" + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* head|strong=\"H7218\"* of|strong=\"H8141\"* Syria is|strong=\"H7218\"* Damascus|strong=\"H1834\"*, and|strong=\"H5971\"* the|strong=\"H3588\"* head|strong=\"H7218\"* of|strong=\"H8141\"* Damascus|strong=\"H1834\"* is|strong=\"H7218\"* Rezin|strong=\"H7526\"*. Within|strong=\"H1157\"* sixty-five|strong=\"H8346\"* years|strong=\"H8141\"* Ephraim shall|strong=\"H5971\"* be|strong=\"H5971\"* broken|strong=\"H2844\"* in|strong=\"H8141\"* pieces, so|strong=\"H3588\"* that|strong=\"H3588\"* it|strong=\"H3588\"* shall|strong=\"H5971\"* not|strong=\"H3588\"* be|strong=\"H5971\"* a|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3588\"* head|strong=\"H7218\"* of|strong=\"H1121\"* Ephraim is|strong=\"H1121\"* Samaria|strong=\"H8111\"*, and|strong=\"H1121\"* the|strong=\"H3588\"* head|strong=\"H7218\"* of|strong=\"H1121\"* Samaria|strong=\"H8111\"* is|strong=\"H1121\"* Remaliah|strong=\"H7425\"*’s son|strong=\"H1121\"*. If|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1121\"* not|strong=\"H3808\"* believe, surely|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* be|strong=\"H3808\"* established|strong=\"H3808\"*.’”" + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* again|strong=\"H3254\"* to|strong=\"H1696\"* Ahaz, saying|strong=\"H1696\"*," + }, + { + "verseNum": 11, + "text": "“Ask|strong=\"H7592\"* a|strong=\"H3068\"* sign of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*; ask|strong=\"H7592\"* it|strong=\"H3068\"* either|strong=\"H5973\"* in|strong=\"H3068\"* the|strong=\"H3068\"* depth|strong=\"H6009\"*, or|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* height|strong=\"H1361\"* above|strong=\"H4605\"*.”" + }, + { + "verseNum": 12, + "text": "But|strong=\"H3808\"* Ahaz said, “I|strong=\"H3808\"* won’t ask|strong=\"H7592\"*. I|strong=\"H3808\"* won’t tempt|strong=\"H5254\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 13, + "text": "He|strong=\"H3588\"* said|strong=\"H8085\"*, “Listen|strong=\"H8085\"* now|strong=\"H4994\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* David|strong=\"H1732\"*. Is|strong=\"H1571\"* it|strong=\"H3588\"* not|strong=\"H3588\"* enough|strong=\"H4592\"* for|strong=\"H3588\"* you|strong=\"H3588\"* to|strong=\"H8085\"* try|strong=\"H3811\"* the|strong=\"H8085\"* patience|strong=\"H3811\"* of|strong=\"H1004\"* men, that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1571\"* try|strong=\"H3811\"* the|strong=\"H8085\"* patience|strong=\"H3811\"* of|strong=\"H1004\"* my|strong=\"H8085\"* God also|strong=\"H1571\"*?" + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5414\"* Lord himself|strong=\"H1931\"* will|strong=\"H1121\"* give|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* sign. Behold|strong=\"H2009\"*, the|strong=\"H5414\"* virgin|strong=\"H5959\"* will|strong=\"H1121\"* conceive|strong=\"H2030\"*, and|strong=\"H1121\"* bear|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* shall|strong=\"H1121\"* call|strong=\"H7121\"* his|strong=\"H5414\"* name|strong=\"H8034\"* Immanuel|strong=\"H6005\"*.+ 7:14 “Immanuel” means “God with us”.*" + }, + { + "verseNum": 15, + "text": "He|strong=\"H3045\"* shall|strong=\"H7451\"* eat butter|strong=\"H2529\"* and|strong=\"H3045\"* honey|strong=\"H1706\"* when|strong=\"H3045\"* he|strong=\"H3045\"* knows|strong=\"H3045\"* to|strong=\"H3045\"* refuse|strong=\"H3988\"* the|strong=\"H3045\"* evil|strong=\"H7451\"* and|strong=\"H3045\"* choose the|strong=\"H3045\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* before|strong=\"H6440\"* the|strong=\"H6440\"* child|strong=\"H5288\"* knows|strong=\"H3045\"* to|strong=\"H6440\"* refuse|strong=\"H3988\"* the|strong=\"H6440\"* evil|strong=\"H7451\"* and|strong=\"H4428\"* choose the|strong=\"H6440\"* good|strong=\"H2896\"*, the|strong=\"H6440\"* land|strong=\"H6440\"* whose|strong=\"H3045\"* two|strong=\"H8147\"* kings|strong=\"H4428\"* you|strong=\"H3588\"* abhor|strong=\"H3988\"* shall|strong=\"H4428\"* be|strong=\"H4428\"* forsaken|strong=\"H5800\"*." + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* bring on|strong=\"H5921\"* you|strong=\"H5921\"*, on|strong=\"H5921\"* your|strong=\"H3068\"* people|strong=\"H5971\"*, and|strong=\"H3063\"* on|strong=\"H5921\"* your|strong=\"H3068\"* father’s house|strong=\"H1004\"* days|strong=\"H3117\"* that|strong=\"H5971\"* have|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H5971\"*, from|strong=\"H5493\"* the|strong=\"H5921\"* day|strong=\"H3117\"* that|strong=\"H5971\"* Ephraim departed|strong=\"H5493\"* from|strong=\"H5493\"* Judah|strong=\"H3063\"*, even|strong=\"H3808\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria." + }, + { + "verseNum": 18, + "text": "It|strong=\"H1931\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* whistle|strong=\"H8319\"* for|strong=\"H4714\"* the|strong=\"H3068\"* fly|strong=\"H2070\"* that|strong=\"H3117\"* is|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* uttermost|strong=\"H7097\"* part|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H3068\"* rivers|strong=\"H2975\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* for|strong=\"H4714\"* the|strong=\"H3068\"* bee|strong=\"H1682\"* that|strong=\"H3117\"* is|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Assyria." + }, + { + "verseNum": 19, + "text": "They|strong=\"H3605\"* shall|strong=\"H5158\"* come, and|strong=\"H5158\"* shall|strong=\"H5158\"* all|strong=\"H3605\"* rest|strong=\"H5117\"* in|strong=\"H5117\"* the|strong=\"H3605\"* desolate|strong=\"H1327\"* valleys|strong=\"H5158\"*, in|strong=\"H5117\"* the|strong=\"H3605\"* clefts|strong=\"H5357\"* of|strong=\"H5158\"* the|strong=\"H3605\"* rocks|strong=\"H5553\"*, on|strong=\"H5117\"* all|strong=\"H3605\"* thorn|strong=\"H5285\"* hedges, and|strong=\"H5158\"* on|strong=\"H5117\"* all|strong=\"H3605\"* pastures." + }, + { + "verseNum": 20, + "text": "In|strong=\"H4428\"* that|strong=\"H3117\"* day|strong=\"H3117\"* the|strong=\"H3117\"* Lord will|strong=\"H4428\"* shave|strong=\"H1548\"* with|strong=\"H3117\"* a|strong=\"H3068\"* razor|strong=\"H8593\"* that|strong=\"H3117\"* is|strong=\"H1931\"* hired|strong=\"H7917\"* in|strong=\"H4428\"* the|strong=\"H3117\"* parts beyond|strong=\"H5676\"* the|strong=\"H3117\"* River|strong=\"H5104\"*, even|strong=\"H1571\"* with|strong=\"H3117\"* the|strong=\"H3117\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, the|strong=\"H3117\"* head|strong=\"H7218\"* and|strong=\"H4428\"* the|strong=\"H3117\"* hair|strong=\"H8181\"* of|strong=\"H4428\"* the|strong=\"H3117\"* feet|strong=\"H7272\"*; and|strong=\"H4428\"* it|strong=\"H1931\"* shall|strong=\"H4428\"* also|strong=\"H1571\"* consume|strong=\"H5595\"* the|strong=\"H3117\"* beard|strong=\"H2206\"*." + }, + { + "verseNum": 21, + "text": "It|strong=\"H1931\"* shall|strong=\"H3117\"* happen|strong=\"H1961\"* in|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* a|strong=\"H3068\"* man shall|strong=\"H3117\"* keep|strong=\"H2421\"* alive|strong=\"H2421\"* a|strong=\"H3068\"* young|strong=\"H1241\"* cow|strong=\"H5697\"*, and|strong=\"H3117\"* two|strong=\"H8147\"* sheep|strong=\"H6629\"*." + }, + { + "verseNum": 22, + "text": "It|strong=\"H3588\"* shall|strong=\"H6213\"* happen|strong=\"H1961\"*, that|strong=\"H3588\"* because|strong=\"H3588\"* of|strong=\"H7230\"* the|strong=\"H3605\"* abundance|strong=\"H7230\"* of|strong=\"H7230\"* milk|strong=\"H2461\"* which|strong=\"H3588\"* they|strong=\"H3588\"* shall|strong=\"H6213\"* give|strong=\"H6213\"* he|strong=\"H3588\"* shall|strong=\"H6213\"* eat butter|strong=\"H2529\"*, for|strong=\"H3588\"* everyone|strong=\"H3605\"* will|strong=\"H1961\"* eat butter|strong=\"H2529\"* and|strong=\"H2461\"* honey|strong=\"H1706\"* that|strong=\"H3588\"* is|strong=\"H3605\"* left|strong=\"H3498\"* within|strong=\"H7130\"* the|strong=\"H3605\"* land|strong=\"H7130\"*." + }, + { + "verseNum": 23, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3117\"* that|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3605\"* every|strong=\"H3605\"* place|strong=\"H4725\"* where|strong=\"H8033\"* there|strong=\"H8033\"* were|strong=\"H1961\"* a|strong=\"H3068\"* thousand vines|strong=\"H1612\"* worth a|strong=\"H3068\"* thousand silver|strong=\"H3701\"* shekels|strong=\"H3701\"*,+ 7:23 A shekel is about 10 grams or about 0.35 ounces, so 1000 shekels is about 10 kilograms or 22 pounds.* will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H3117\"* briers|strong=\"H8068\"* and|strong=\"H3701\"* thorns|strong=\"H7898\"*." + }, + { + "verseNum": 24, + "text": "People will|strong=\"H1961\"* go|strong=\"H1961\"* there|strong=\"H8033\"* with|strong=\"H3605\"* arrows|strong=\"H2678\"* and|strong=\"H8033\"* with|strong=\"H3605\"* bow|strong=\"H7198\"*, because|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land will|strong=\"H1961\"* be|strong=\"H1961\"* briers|strong=\"H8068\"* and|strong=\"H8033\"* thorns|strong=\"H7898\"*." + }, + { + "verseNum": 25, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* hills|strong=\"H2022\"* that|strong=\"H3605\"* were|strong=\"H1961\"* cultivated|strong=\"H5737\"* with|strong=\"H3605\"* the|strong=\"H3605\"* hoe|strong=\"H4576\"*, you|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* come|strong=\"H1961\"* there|strong=\"H8033\"* for|strong=\"H3605\"* fear|strong=\"H3374\"* of|strong=\"H2022\"* briers|strong=\"H8068\"* and|strong=\"H8033\"* thorns|strong=\"H7898\"*; but|strong=\"H3808\"* it|strong=\"H8033\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* for|strong=\"H3605\"* the|strong=\"H3605\"* sending|strong=\"H4916\"* out|strong=\"H3605\"* of|strong=\"H2022\"* oxen|strong=\"H7794\"*, and|strong=\"H8033\"* for|strong=\"H3605\"* sheep|strong=\"H7716\"* to|strong=\"H1961\"* tread|strong=\"H4823\"* on|strong=\"H1961\"*.”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H5921\"*, “Take|strong=\"H3947\"* a|strong=\"H3068\"* large|strong=\"H1419\"* tablet|strong=\"H1549\"*, and|strong=\"H3068\"* write|strong=\"H3789\"* on|strong=\"H5921\"* it|strong=\"H5921\"* with|strong=\"H3068\"* a|strong=\"H3068\"* man|strong=\"H1419\"*’s pen|strong=\"H2747\"*, ‘For|strong=\"H5921\"* Maher Shalal Hash Baz’;+ 8:1 “Maher Shalal Hash Baz” means “quick to the plunder, swift to the prey”.*" + }, + { + "verseNum": 2, + "text": "and|strong=\"H1121\"* I|strong=\"H1121\"* will|strong=\"H1121\"* take|strong=\"H1121\"* for|strong=\"H1121\"* myself faithful witnesses|strong=\"H5707\"* to|strong=\"H1121\"* testify|strong=\"H5749\"*: Uriah the|strong=\"H3548\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* Zechariah|strong=\"H2148\"* the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeberechiah|strong=\"H3000\"*.”" + }, + { + "verseNum": 3, + "text": "I|strong=\"H1121\"* went|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H3205\"* prophetess|strong=\"H5031\"*, and|strong=\"H1121\"* she|strong=\"H7121\"* conceived|strong=\"H2029\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*. Then|strong=\"H7126\"* Yahweh|strong=\"H3068\"* said|strong=\"H7121\"* to|strong=\"H3068\"* me|strong=\"H7121\"*, “Call|strong=\"H7121\"* his|strong=\"H3068\"* name|strong=\"H8034\"* ‘Maher Shalal Hash Baz.’" + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* before|strong=\"H6440\"* the|strong=\"H6440\"* child|strong=\"H5288\"* knows|strong=\"H3045\"* how|strong=\"H3588\"* to|strong=\"H6440\"* say, ‘My|strong=\"H3045\"* father’ and|strong=\"H4428\"* ‘My|strong=\"H3045\"* mother,’ the|strong=\"H6440\"* riches|strong=\"H2428\"* of|strong=\"H4428\"* Damascus|strong=\"H1834\"* and|strong=\"H4428\"* the|strong=\"H6440\"* plunder|strong=\"H7998\"* of|strong=\"H4428\"* Samaria|strong=\"H8111\"* will|strong=\"H4428\"* be|strong=\"H4428\"* carried|strong=\"H5375\"* away|strong=\"H5375\"* by|strong=\"H7121\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria.”" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"* yet|strong=\"H5750\"* again|strong=\"H5750\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 6, + "text": "“Because|strong=\"H3588\"* this|strong=\"H2088\"* people|strong=\"H5971\"* has|strong=\"H3588\"* refused|strong=\"H3988\"* the|strong=\"H3588\"* waters|strong=\"H4325\"* of|strong=\"H1121\"* Shiloah|strong=\"H7975\"* that|strong=\"H3588\"* go|strong=\"H1980\"* softly, and|strong=\"H1121\"* rejoice|strong=\"H4885\"* in|strong=\"H1980\"* Rezin|strong=\"H7526\"* and|strong=\"H1121\"* Remaliah|strong=\"H7425\"*’s son|strong=\"H1121\"*;" + }, + { + "verseNum": 7, + "text": "now|strong=\"H2009\"* therefore|strong=\"H3651\"*, behold|strong=\"H2009\"*, the|strong=\"H3605\"* Lord brings|strong=\"H5927\"* upon|strong=\"H5921\"* them|strong=\"H5921\"* the|strong=\"H3605\"* mighty|strong=\"H6099\"* flood|strong=\"H5104\"* waters|strong=\"H4325\"* of|strong=\"H4428\"* the|strong=\"H3605\"* River|strong=\"H5104\"*: the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria and|strong=\"H1980\"* all|strong=\"H3605\"* his|strong=\"H3605\"* glory|strong=\"H3519\"*. It|strong=\"H5921\"* will|strong=\"H4428\"* come|strong=\"H1980\"* up|strong=\"H5927\"* over|strong=\"H5921\"* all|strong=\"H3605\"* its|strong=\"H3605\"* channels, and|strong=\"H1980\"* go|strong=\"H1980\"* over|strong=\"H5921\"* all|strong=\"H3605\"* its|strong=\"H3605\"* banks|strong=\"H1415\"*." + }, + { + "verseNum": 8, + "text": "It|strong=\"H4393\"* will|strong=\"H1961\"* sweep|strong=\"H2498\"* onward into|strong=\"H1961\"* Judah|strong=\"H3063\"*. It|strong=\"H4393\"* will|strong=\"H1961\"* overflow|strong=\"H7857\"* and|strong=\"H3063\"* pass|strong=\"H5674\"* through|strong=\"H5674\"*. It|strong=\"H4393\"* will|strong=\"H1961\"* reach|strong=\"H5060\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* neck|strong=\"H6677\"*. The|strong=\"H5704\"* stretching out|strong=\"H5674\"* of|strong=\"H7341\"* its|strong=\"H1961\"* wings|strong=\"H3671\"* will|strong=\"H1961\"* fill|strong=\"H4393\"* the|strong=\"H5704\"* width|strong=\"H7341\"* of|strong=\"H7341\"* your|strong=\"H1961\"* land, O|strong=\"H3068\"* Immanuel|strong=\"H6005\"*." + }, + { + "verseNum": 9, + "text": "Make an|strong=\"H5971\"* uproar, you|strong=\"H3605\"* peoples|strong=\"H5971\"*, and|strong=\"H5971\"* be|strong=\"H5971\"* broken|strong=\"H2865\"* in|strong=\"H5971\"* pieces|strong=\"H2865\"*! Listen|strong=\"H3605\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* from|strong=\"H5971\"* far|strong=\"H4801\"* countries|strong=\"H4801\"*: dress for|strong=\"H3605\"* battle, and|strong=\"H5971\"* be|strong=\"H5971\"* shattered|strong=\"H2865\"*! Dress for|strong=\"H3605\"* battle, and|strong=\"H5971\"* be|strong=\"H5971\"* shattered|strong=\"H2865\"*!" + }, + { + "verseNum": 10, + "text": "Take|strong=\"H5779\"* counsel|strong=\"H6098\"* together|strong=\"H5973\"*, and|strong=\"H6965\"* it|strong=\"H3588\"* will|strong=\"H1697\"* be|strong=\"H3808\"* brought|strong=\"H6565\"* to|strong=\"H1696\"* nothing|strong=\"H3808\"*; speak|strong=\"H1696\"* the|strong=\"H3588\"* word|strong=\"H1697\"*, and|strong=\"H6965\"* it|strong=\"H3588\"* will|strong=\"H1697\"* not|strong=\"H3808\"* stand|strong=\"H6965\"*, for|strong=\"H3588\"* God|strong=\"H3808\"* is|strong=\"H1697\"* with|strong=\"H5973\"* us|strong=\"H3588\"*.”" + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* spoke this|strong=\"H2088\"* to|strong=\"H3068\"* me|strong=\"H3256\"* with|strong=\"H3068\"* a|strong=\"H3068\"* strong|strong=\"H2393\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* instructed|strong=\"H3256\"* me|strong=\"H3256\"* not|strong=\"H2088\"* to|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* the|strong=\"H3588\"* way|strong=\"H1870\"* of|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, saying," + }, + { + "verseNum": 12, + "text": "“Don’t call a|strong=\"H3068\"* conspiracy|strong=\"H7195\"* all|strong=\"H3605\"* that|strong=\"H5971\"* this|strong=\"H2088\"* people|strong=\"H5971\"* call a|strong=\"H3068\"* conspiracy|strong=\"H7195\"*. Don’t fear|strong=\"H3372\"* their|strong=\"H3605\"* threats or|strong=\"H3808\"* be|strong=\"H3808\"* terrorized." + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* is|strong=\"H3068\"* who|strong=\"H1931\"* you|strong=\"H4172\"* must respect|strong=\"H4172\"* as|strong=\"H3068\"* holy|strong=\"H6942\"*. He|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H3068\"* one|strong=\"H1931\"* you|strong=\"H4172\"* must fear|strong=\"H4172\"*. He|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H3068\"* one|strong=\"H1931\"* you|strong=\"H4172\"* must dread|strong=\"H6206\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H1004\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* sanctuary|strong=\"H4720\"*, but|strong=\"H1961\"* for|strong=\"H3427\"* both|strong=\"H8147\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, he|strong=\"H1004\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* stumbling|strong=\"H4383\"* stone and|strong=\"H3478\"* a|strong=\"H3068\"* rock|strong=\"H6697\"* that|strong=\"H3478\"* makes|strong=\"H3427\"* them|strong=\"H8147\"* fall|strong=\"H1961\"*. For|strong=\"H3427\"* the|strong=\"H1961\"* people|strong=\"H3427\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*, he|strong=\"H1004\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* trap|strong=\"H4170\"* and|strong=\"H3478\"* a|strong=\"H3068\"* snare|strong=\"H4170\"*." + }, + { + "verseNum": 15, + "text": "Many|strong=\"H7227\"* will|strong=\"H7227\"* stumble|strong=\"H3782\"* over|strong=\"H5307\"* it|strong=\"H3920\"*, fall|strong=\"H5307\"*, be|strong=\"H7665\"* broken|strong=\"H7665\"*, be|strong=\"H7665\"* snared|strong=\"H3369\"*, and|strong=\"H5307\"* be|strong=\"H7665\"* captured|strong=\"H3920\"*.”" + }, + { + "verseNum": 16, + "text": "Wrap up|strong=\"H2856\"* the|strong=\"H2856\"* covenant. Seal|strong=\"H2856\"* the|strong=\"H2856\"* law|strong=\"H8451\"* among|strong=\"H8451\"* my|strong=\"H6887\"* disciples|strong=\"H3928\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H6440\"* will|strong=\"H3068\"* wait|strong=\"H6960\"* for|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* hides|strong=\"H5641\"* his|strong=\"H3068\"* face|strong=\"H6440\"* from|strong=\"H6440\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*, and|strong=\"H3068\"* I|strong=\"H6440\"* will|strong=\"H3068\"* look|strong=\"H6960\"* for|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 18, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H5414\"* and|strong=\"H3478\"* the|strong=\"H5414\"* children|strong=\"H3206\"* whom Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* me|strong=\"H5414\"* are|strong=\"H3478\"* for|strong=\"H3068\"* signs and|strong=\"H3478\"* for|strong=\"H3068\"* wonders|strong=\"H4159\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, who|strong=\"H3068\"* dwells|strong=\"H7931\"* in|strong=\"H3478\"* Mount|strong=\"H2022\"* Zion|strong=\"H6726\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* tell|strong=\"H1897\"* you|strong=\"H3588\"*, “Consult|strong=\"H1875\"* with|strong=\"H5971\"* those|strong=\"H3588\"* who|strong=\"H5971\"* have|strong=\"H5971\"* familiar spirits and|strong=\"H5971\"* with|strong=\"H5971\"* the|strong=\"H3588\"* wizards|strong=\"H3049\"*, who|strong=\"H5971\"* chirp and|strong=\"H5971\"* who|strong=\"H5971\"* mutter|strong=\"H1897\"*,” shouldn’t a|strong=\"H3068\"* people|strong=\"H5971\"* consult|strong=\"H1875\"* with|strong=\"H5971\"* their|strong=\"H3588\"* God|strong=\"H3808\"*? Should|strong=\"H3588\"* they|strong=\"H3588\"* consult|strong=\"H1875\"* the|strong=\"H3588\"* dead|strong=\"H4191\"* on|strong=\"H4191\"* behalf|strong=\"H1157\"* of|strong=\"H5971\"* the|strong=\"H3588\"* living|strong=\"H2416\"*?" + }, + { + "verseNum": 20, + "text": "Turn to|strong=\"H1697\"* the|strong=\"H1697\"* law|strong=\"H8451\"* and|strong=\"H1697\"* to|strong=\"H1697\"* the|strong=\"H1697\"* covenant! If they|strong=\"H3808\"* don’t speak|strong=\"H1697\"* according to|strong=\"H1697\"* this|strong=\"H2088\"* word|strong=\"H1697\"*, surely|strong=\"H3808\"* there|strong=\"H2088\"* is|strong=\"H2088\"* no|strong=\"H3808\"* morning|strong=\"H7837\"* for|strong=\"H3808\"* them|strong=\"H1697\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"H3588\"* will|strong=\"H1961\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* it|strong=\"H3588\"*, very|strong=\"H4605\"* distressed and|strong=\"H4428\"* hungry|strong=\"H7457\"*. It|strong=\"H3588\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H3588\"* when|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H4428\"* hungry|strong=\"H7457\"*, they|strong=\"H3588\"* will|strong=\"H1961\"* worry, and|strong=\"H4428\"* curse|strong=\"H7043\"* their|strong=\"H3588\"* king|strong=\"H4428\"* and|strong=\"H4428\"* their|strong=\"H3588\"* God. They|strong=\"H3588\"* will|strong=\"H1961\"* turn|strong=\"H6437\"* their|strong=\"H3588\"* faces|strong=\"H6437\"* upward|strong=\"H4605\"*," + }, + { + "verseNum": 22, + "text": "then|strong=\"H2009\"* look|strong=\"H2009\"* to|strong=\"H5080\"* the|strong=\"H2009\"* earth and|strong=\"H6869\"* see|strong=\"H2009\"* distress|strong=\"H6869\"*, darkness|strong=\"H2825\"*, and|strong=\"H6869\"* the|strong=\"H2009\"* gloom|strong=\"H4588\"* of|strong=\"H5080\"* anguish|strong=\"H6869\"*. They|strong=\"H5080\"* will|strong=\"H6869\"* be driven|strong=\"H5080\"* into|strong=\"H5080\"* thick darkness|strong=\"H2825\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"H7200\"* there|strong=\"H3427\"* shall|strong=\"H5971\"* be|strong=\"H5971\"* no|strong=\"H7200\"* more|strong=\"H1419\"* gloom|strong=\"H6757\"* for|strong=\"H5921\"* her|strong=\"H5921\"* who|strong=\"H5971\"* was|strong=\"H3427\"* in|strong=\"H3427\"* anguish. In|strong=\"H3427\"* the|strong=\"H5921\"* former time|strong=\"H5921\"*, he|strong=\"H5921\"* brought|strong=\"H1980\"* into|strong=\"H1980\"* contempt the|strong=\"H5921\"* land of|strong=\"H3427\"* Zebulun and|strong=\"H1980\"* the|strong=\"H5921\"* land of|strong=\"H3427\"* Naphtali; but|strong=\"H7200\"* in|strong=\"H3427\"* the|strong=\"H5921\"* latter time|strong=\"H5921\"* he|strong=\"H5921\"* has|strong=\"H5971\"* made|strong=\"H1980\"* it|strong=\"H5921\"* glorious, by|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1980\"* of|strong=\"H3427\"* the|strong=\"H5921\"* sea, beyond|strong=\"H5921\"* the|strong=\"H5921\"* Jordan, Galilee of|strong=\"H3427\"* the|strong=\"H5921\"* nations|strong=\"H5971\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H6440\"* people|strong=\"H1471\"* who|strong=\"H1471\"* walked in|strong=\"H6440\"* darkness have|strong=\"H1471\"* seen a|strong=\"H3068\"* great|strong=\"H1431\"* light." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3588\"* have|strong=\"H3117\"* multiplied the|strong=\"H3588\"* nation." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* yoke of|strong=\"H1818\"* his|strong=\"H3605\"* burden, and|strong=\"H1818\"* the|strong=\"H3605\"* staff of|strong=\"H1818\"* his|strong=\"H3605\"* shoulder, the|strong=\"H3605\"* rod of|strong=\"H1818\"* his|strong=\"H3605\"* oppressor, you|strong=\"H3588\"* have|strong=\"H1961\"* broken as|strong=\"H1961\"* in|strong=\"H1556\"* the|strong=\"H3605\"* day of|strong=\"H1818\"* Midian." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* all|strong=\"H5414\"* the|strong=\"H5921\"* armor of|strong=\"H1121\"* the|strong=\"H5921\"* armed man|strong=\"H1368\"* in|strong=\"H5921\"* the|strong=\"H5921\"* noisy battle, and|strong=\"H1121\"* the|strong=\"H5921\"* garments rolled in|strong=\"H5921\"* blood, will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H3588\"* burning, fuel for|strong=\"H3588\"* the|strong=\"H5921\"* fire." + }, + { + "verseNum": 6, + "text": "For|strong=\"H5704\"* a|strong=\"H3068\"* child is|strong=\"H3068\"* born to|strong=\"H5704\"* us|strong=\"H5921\"*. A|strong=\"H3068\"* son is|strong=\"H3068\"* given|strong=\"H6213\"* to|strong=\"H5704\"* us|strong=\"H5921\"*; and|strong=\"H3068\"* the|strong=\"H5921\"* government|strong=\"H4951\"* will|strong=\"H3068\"* be|strong=\"H3068\"* on|strong=\"H5921\"* his|strong=\"H3068\"* shoulders. His|strong=\"H3068\"* name will|strong=\"H3068\"* be|strong=\"H3068\"* called Wonderful Counselor, Mighty God|strong=\"H3068\"*, Everlasting|strong=\"H5769\"* Father, Prince of|strong=\"H3068\"* Peace|strong=\"H7965\"*." + }, + { + "verseNum": 7, + "text": "Of|strong=\"H1697\"* the|strong=\"H7971\"* increase of|strong=\"H1697\"* his|strong=\"H7971\"* government and|strong=\"H3478\"* of|strong=\"H1697\"* peace there|strong=\"H1697\"* shall|strong=\"H3478\"* be|strong=\"H1697\"* no|strong=\"H7971\"* end, on|strong=\"H5307\"* David|strong=\"H7971\"*’s throne, and|strong=\"H3478\"* on|strong=\"H5307\"* his|strong=\"H7971\"* kingdom, to|strong=\"H3478\"* establish it|strong=\"H7971\"*, and|strong=\"H3478\"* to|strong=\"H3478\"* uphold it|strong=\"H7971\"* with|strong=\"H1697\"* justice and|strong=\"H3478\"* with|strong=\"H1697\"* righteousness from|strong=\"H3478\"* that|strong=\"H1697\"* time|strong=\"H3478\"* on|strong=\"H5307\"*, even forever. The|strong=\"H7971\"* zeal of|strong=\"H1697\"* Yahweh|strong=\"H3068\"* of|strong=\"H1697\"* Armies will|strong=\"H3478\"* perform this|strong=\"H1697\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3605\"* Lord sent a|strong=\"H3068\"* word into|strong=\"H3045\"* Jacob," + }, + { + "verseNum": 9, + "text": "All the|strong=\"H1129\"* people will|strong=\"H5307\"* know," + }, + { + "verseNum": 10, + "text": "“The|strong=\"H5921\"* bricks have|strong=\"H3068\"* fallen," + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H2063\"* Yahweh|strong=\"H3068\"* will|strong=\"H3478\"* set|strong=\"H3478\"* up|strong=\"H3605\"* on|strong=\"H3027\"* high|strong=\"H5186\"* against|strong=\"H3027\"* him|strong=\"H3027\"* the|strong=\"H3605\"* adversaries of|strong=\"H3027\"* Rezin," + }, + { + "verseNum": 12, + "text": "The|strong=\"H5221\"* Syrians in|strong=\"H3068\"* front," + }, + { + "verseNum": 13, + "text": "Yet|strong=\"H3068\"* the|strong=\"H3068\"* people have|strong=\"H3068\"* not turned|strong=\"H3478\"* to|strong=\"H3478\"* him|strong=\"H3772\"* who|strong=\"H3068\"* struck them|strong=\"H3117\"*," + }, + { + "verseNum": 14, + "text": "Therefore Yahweh|strong=\"H3068\"* will|strong=\"H1931\"* cut off|strong=\"H5375\"* from|strong=\"H6440\"* Israel head|strong=\"H7218\"* and|strong=\"H7218\"* tail|strong=\"H2180\"*," + }, + { + "verseNum": 15, + "text": "The|strong=\"H1961\"* elder and|strong=\"H5971\"* the|strong=\"H1961\"* honorable man|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H1961\"* head," + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* those|strong=\"H3605\"* who|strong=\"H3605\"* lead this|strong=\"H2063\"* people|strong=\"H3808\"* lead them|strong=\"H5921\"* astray;" + }, + { + "verseNum": 17, + "text": "Therefore|strong=\"H3588\"* the|strong=\"H3588\"* Lord will|strong=\"H3293\"* not|strong=\"H3588\"* rejoice over their|strong=\"H3588\"* young men," + }, + { + "verseNum": 18, + "text": "For|strong=\"H3068\"* wickedness burns like|strong=\"H1961\"* a|strong=\"H3068\"* fire." + }, + { + "verseNum": 19, + "text": "Through|strong=\"H5921\"* Yahweh|strong=\"H3068\"* of|strong=\"H5921\"* Armies|strong=\"H2220\"*’ wrath, the|strong=\"H5921\"* land is|strong=\"H1320\"* burned up|strong=\"H5921\"*;" + }, + { + "verseNum": 20, + "text": "One|strong=\"H3605\"* will|strong=\"H3063\"* devour on|strong=\"H5921\"* the|strong=\"H3605\"* right hand|strong=\"H3027\"*, and|strong=\"H3063\"* be|strong=\"H3808\"* hungry;" + }, + { + "verseNum": 21, + "text": "Manasseh eating Ephraim and Ephraim eating Manasseh, and they together will be against Judah." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Woe|strong=\"H1945\"* to|strong=\"H3789\"* those|strong=\"H1945\"* who|strong=\"H1945\"* decree|strong=\"H2710\"* unrighteous decrees|strong=\"H2711\"*, and|strong=\"H5999\"* to|strong=\"H3789\"* the|strong=\"H3789\"* writers who|strong=\"H1945\"* write|strong=\"H3789\"* oppressive decrees|strong=\"H2711\"*" + }, + { + "verseNum": 2, + "text": "to|strong=\"H1961\"* deprive|strong=\"H5186\"* the|strong=\"H1961\"* needy|strong=\"H6041\"* of|strong=\"H5971\"* justice|strong=\"H4941\"*, and|strong=\"H4941\"* to|strong=\"H1961\"* rob|strong=\"H1497\"* the|strong=\"H1961\"* poor|strong=\"H6041\"* among|strong=\"H5971\"* my|strong=\"H1961\"* people|strong=\"H5971\"* of|strong=\"H5971\"* their|strong=\"H5186\"* rights|strong=\"H1779\"*, that|strong=\"H5971\"* widows|strong=\"H5971\"* may|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H5186\"* plunder|strong=\"H7998\"*, and|strong=\"H4941\"* that|strong=\"H5971\"* they|strong=\"H5971\"* may|strong=\"H1961\"* make|strong=\"H4941\"* the|strong=\"H1961\"* fatherless|strong=\"H3490\"* their|strong=\"H5186\"* prey|strong=\"H7998\"*!" + }, + { + "verseNum": 3, + "text": "What|strong=\"H4100\"* will|strong=\"H4310\"* you|strong=\"H5921\"* do|strong=\"H6213\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H3117\"* visitation|strong=\"H6486\"*, and|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* desolation|strong=\"H7722\"* which|strong=\"H4310\"* will|strong=\"H4310\"* come from|strong=\"H5921\"* afar|strong=\"H4801\"*? To|strong=\"H6213\"* whom|strong=\"H4310\"* will|strong=\"H4310\"* you|strong=\"H5921\"* flee|strong=\"H5127\"* for|strong=\"H5921\"* help|strong=\"H5833\"*? Where|strong=\"H4100\"* will|strong=\"H4310\"* you|strong=\"H5921\"* leave|strong=\"H5800\"* your|strong=\"H5921\"* wealth|strong=\"H3519\"*?" + }, + { + "verseNum": 4, + "text": "They|strong=\"H3808\"* will|strong=\"H3027\"* only|strong=\"H3605\"* bow|strong=\"H3766\"* down|strong=\"H5307\"* under|strong=\"H8478\"* the|strong=\"H3605\"* prisoners," + }, + { + "verseNum": 5, + "text": "Alas|strong=\"H1945\"* Assyrian, the|strong=\"H3027\"* rod|strong=\"H7626\"* of|strong=\"H3027\"* my|strong=\"H3027\"* anger|strong=\"H2195\"*, the|strong=\"H3027\"* staff|strong=\"H4294\"* in|strong=\"H3027\"* whose hand|strong=\"H3027\"* is|strong=\"H1931\"* my|strong=\"H3027\"* indignation|strong=\"H2195\"*!" + }, + { + "verseNum": 6, + "text": "I|strong=\"H5921\"* will|strong=\"H1471\"* send|strong=\"H7971\"* him|strong=\"H5921\"* against|strong=\"H5921\"* a|strong=\"H3068\"* profane nation|strong=\"H1471\"*, and|strong=\"H7971\"* against|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* anger|strong=\"H5678\"* me|strong=\"H7971\"* I|strong=\"H5921\"* will|strong=\"H1471\"* give|strong=\"H7760\"* him|strong=\"H5921\"* a|strong=\"H3068\"* command|strong=\"H6680\"* to|strong=\"H7971\"* take|strong=\"H7760\"* the|strong=\"H5921\"* plunder|strong=\"H7998\"* and|strong=\"H7971\"* to|strong=\"H7971\"* take|strong=\"H7760\"* the|strong=\"H5921\"* prey|strong=\"H7998\"*, and|strong=\"H7971\"* to|strong=\"H7971\"* tread|strong=\"H4823\"* them|strong=\"H5921\"* down|strong=\"H4823\"* like|strong=\"H5921\"* the|strong=\"H5921\"* mire|strong=\"H2563\"* of|strong=\"H5971\"* the|strong=\"H5921\"* streets|strong=\"H2351\"*." + }, + { + "verseNum": 7, + "text": "However|strong=\"H3588\"*, he|strong=\"H1931\"* doesn’t mean so|strong=\"H3651\"*, neither|strong=\"H3808\"* does|strong=\"H3808\"* his|strong=\"H3588\"* heart|strong=\"H3824\"* think|strong=\"H2803\"* so|strong=\"H3651\"*; but|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* in|strong=\"H4592\"* his|strong=\"H3588\"* heart|strong=\"H3824\"* to|strong=\"H3824\"* destroy|strong=\"H8045\"*, and|strong=\"H1471\"* to|strong=\"H3824\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* not|strong=\"H3808\"* a|strong=\"H3068\"* few|strong=\"H4592\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* says, “Aren’t all|strong=\"H3162\"* of|strong=\"H4428\"* my|strong=\"H3588\"* princes|strong=\"H8269\"* kings|strong=\"H4428\"*?" + }, + { + "verseNum": 9, + "text": "Isn’t Calno|strong=\"H3641\"* like|strong=\"H3808\"* Carchemish|strong=\"H3751\"*? Isn’t Hamath|strong=\"H2574\"* like|strong=\"H3808\"* Arpad? Isn’t Samaria|strong=\"H8111\"* like|strong=\"H3808\"* Damascus|strong=\"H1834\"*?”" + }, + { + "verseNum": 10, + "text": "As|strong=\"H3389\"* my|strong=\"H3027\"* hand|strong=\"H3027\"* has|strong=\"H3027\"* found|strong=\"H4672\"* the|strong=\"H3027\"* kingdoms|strong=\"H4467\"* of|strong=\"H3027\"* the|strong=\"H3027\"* idols|strong=\"H6456\"*, whose engraved|strong=\"H6456\"* images|strong=\"H6456\"* exceeded those of|strong=\"H3027\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3027\"* of|strong=\"H3027\"* Samaria|strong=\"H8111\"*," + }, + { + "verseNum": 11, + "text": "shall|strong=\"H3808\"* I|strong=\"H3651\"* not|strong=\"H3808\"*, as|strong=\"H6213\"* I|strong=\"H3651\"* have|strong=\"H3389\"* done|strong=\"H6213\"* to|strong=\"H6213\"* Samaria|strong=\"H8111\"* and|strong=\"H3389\"* her|strong=\"H6213\"* idols|strong=\"H6091\"*, so|strong=\"H3651\"* do|strong=\"H6213\"* to|strong=\"H6213\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3389\"* her|strong=\"H6213\"* idols|strong=\"H6091\"*?" + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H5921\"* it|strong=\"H5921\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H3588\"* when|strong=\"H3588\"* the|strong=\"H3605\"* Lord has|strong=\"H1961\"* performed|strong=\"H1214\"* his|strong=\"H3605\"* whole|strong=\"H3605\"* work|strong=\"H4639\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Zion|strong=\"H6726\"* and|strong=\"H4428\"* on|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, I|strong=\"H3588\"* will|strong=\"H1961\"* punish|strong=\"H6485\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H4428\"* the|strong=\"H3605\"* willful proud|strong=\"H5869\"* heart|strong=\"H3824\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, and|strong=\"H4428\"* the|strong=\"H3605\"* insolence of|strong=\"H4428\"* his|strong=\"H3605\"* arrogant|strong=\"H7312\"* looks|strong=\"H5869\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* said, “By|strong=\"H3027\"* the|strong=\"H3588\"* strength|strong=\"H3581\"* of|strong=\"H3027\"* my|strong=\"H6213\"* hand|strong=\"H3027\"* I|strong=\"H3588\"* have|strong=\"H5971\"* done|strong=\"H6213\"* it|strong=\"H3588\"*, and|strong=\"H3027\"* by|strong=\"H3027\"* my|strong=\"H6213\"* wisdom|strong=\"H2451\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5971\"* understanding. I|strong=\"H3588\"* have|strong=\"H5971\"* removed|strong=\"H5493\"* the|strong=\"H3588\"* boundaries|strong=\"H1367\"* of|strong=\"H3027\"* the|strong=\"H3588\"* peoples|strong=\"H5971\"*, and|strong=\"H3027\"* have|strong=\"H5971\"* robbed|strong=\"H8154\"* their|strong=\"H3588\"* treasures|strong=\"H6264\"*. Like|strong=\"H3381\"* a|strong=\"H3068\"* valiant man|strong=\"H2451\"* I|strong=\"H3588\"* have|strong=\"H5971\"* brought|strong=\"H3381\"* down|strong=\"H3381\"* their|strong=\"H3588\"* rulers|strong=\"H3427\"*." + }, + { + "verseNum": 14, + "text": "My|strong=\"H3605\"* hand|strong=\"H3027\"* has|strong=\"H1961\"* found|strong=\"H4672\"* the|strong=\"H3605\"* riches|strong=\"H2428\"* of|strong=\"H3027\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* like|strong=\"H1961\"* a|strong=\"H3068\"* nest|strong=\"H7064\"*, and|strong=\"H3027\"* like|strong=\"H1961\"* one|strong=\"H3605\"* gathers eggs|strong=\"H1000\"* that|strong=\"H5971\"* are|strong=\"H5971\"* abandoned|strong=\"H5800\"*, I|strong=\"H3808\"* have|strong=\"H1961\"* gathered all|strong=\"H3605\"* the|strong=\"H3605\"* earth. There|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* one|strong=\"H3605\"* who|strong=\"H3605\"* moved|strong=\"H5074\"* their|strong=\"H3605\"* wing|strong=\"H3671\"*, or|strong=\"H3808\"* that|strong=\"H5971\"* opened|strong=\"H6475\"* their|strong=\"H3605\"* mouth|strong=\"H6310\"*, or|strong=\"H3808\"* chirped|strong=\"H6850\"*.”" + }, + { + "verseNum": 15, + "text": "Should|strong=\"H7626\"* an|strong=\"H7311\"* ax brag|strong=\"H6286\"* against|strong=\"H5921\"* him|strong=\"H5921\"* who|strong=\"H3808\"* chops|strong=\"H2672\"* with|strong=\"H5921\"* it|strong=\"H5921\"*? Should|strong=\"H7626\"* a|strong=\"H3068\"* saw|strong=\"H4883\"* exalt|strong=\"H7311\"* itself|strong=\"H6286\"* above|strong=\"H5921\"* him|strong=\"H5921\"* who|strong=\"H3808\"* saws with|strong=\"H5921\"* it|strong=\"H5921\"*? As|strong=\"H2672\"* if a|strong=\"H3068\"* rod|strong=\"H7626\"* should|strong=\"H7626\"* lift|strong=\"H7311\"* those|strong=\"H5921\"* who|strong=\"H3808\"* lift|strong=\"H7311\"* it|strong=\"H5921\"* up|strong=\"H7311\"*, or|strong=\"H3808\"* as|strong=\"H2672\"* if a|strong=\"H3068\"* staff|strong=\"H4294\"* should|strong=\"H7626\"* lift|strong=\"H7311\"* up|strong=\"H7311\"* someone who|strong=\"H3808\"* is|strong=\"H7626\"* not|strong=\"H3808\"* wood|strong=\"H6086\"*." + }, + { + "verseNum": 16, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H3068\"* Lord|strong=\"H3068\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, will|strong=\"H3068\"* send|strong=\"H7971\"* among|strong=\"H8478\"* his|strong=\"H3068\"* fat|strong=\"H4924\"* ones|strong=\"H4924\"* leanness|strong=\"H7332\"*; and|strong=\"H3068\"* under|strong=\"H8478\"* his|strong=\"H3068\"* glory|strong=\"H3519\"* a|strong=\"H3068\"* burning|strong=\"H3344\"* will|strong=\"H3068\"* be|strong=\"H3068\"* kindled|strong=\"H3344\"* like|strong=\"H3651\"* the|strong=\"H3068\"* burning|strong=\"H3344\"* of|strong=\"H3068\"* fire|strong=\"H3350\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3117\"* light|strong=\"H1197\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"* will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H3117\"* a|strong=\"H3068\"* fire, and|strong=\"H3478\"* his|strong=\"H3478\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* for|strong=\"H3117\"* a|strong=\"H3068\"* flame|strong=\"H3852\"*; and|strong=\"H3478\"* it|strong=\"H1961\"* will|strong=\"H1961\"* burn|strong=\"H1197\"* and|strong=\"H3478\"* devour his|strong=\"H3478\"* thorns|strong=\"H7898\"* and|strong=\"H3478\"* his|strong=\"H3478\"* briers|strong=\"H8068\"* in|strong=\"H3478\"* one|strong=\"H6918\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H5704\"* will|strong=\"H1961\"* consume|strong=\"H3615\"* the|strong=\"H5704\"* glory|strong=\"H3519\"* of|strong=\"H3615\"* his|strong=\"H1961\"* forest|strong=\"H3293\"* and|strong=\"H5315\"* of|strong=\"H3615\"* his|strong=\"H1961\"* fruitful|strong=\"H3759\"* field|strong=\"H3759\"*, both soul|strong=\"H5315\"* and|strong=\"H5315\"* body|strong=\"H1320\"*. It|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H5704\"* when|strong=\"H1961\"* a|strong=\"H3068\"* standard bearer faints|strong=\"H3615\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H1961\"* remnant|strong=\"H7605\"* of|strong=\"H4557\"* the|strong=\"H1961\"* trees|strong=\"H6086\"* of|strong=\"H4557\"* his|strong=\"H1961\"* forest|strong=\"H3293\"* shall|strong=\"H5288\"* be|strong=\"H1961\"* few|strong=\"H4557\"*, so|strong=\"H1961\"* that|strong=\"H5288\"* a|strong=\"H3068\"* child|strong=\"H5288\"* could|strong=\"H5288\"* write|strong=\"H3789\"* their|strong=\"H1961\"* number|strong=\"H4557\"*." + }, + { + "verseNum": 20, + "text": "It|strong=\"H1931\"* will|strong=\"H3068\"* come|strong=\"H1961\"* to|strong=\"H3478\"* pass|strong=\"H1961\"* in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* the|strong=\"H5921\"* remnant|strong=\"H7605\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* those|strong=\"H5921\"* who|strong=\"H1931\"* have|strong=\"H1961\"* escaped|strong=\"H6413\"* from|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"* will|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H3254\"* again|strong=\"H5750\"* lean|strong=\"H8172\"* on|strong=\"H5921\"* him|strong=\"H5921\"* who|strong=\"H1931\"* struck|strong=\"H5221\"* them|strong=\"H5921\"*, but|strong=\"H3808\"* shall|strong=\"H3068\"* lean|strong=\"H8172\"* on|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, in|strong=\"H5921\"* truth|strong=\"H3808\"*." + }, + { + "verseNum": 21, + "text": "A|strong=\"H3068\"* remnant|strong=\"H7605\"* will|strong=\"H3290\"* return|strong=\"H7725\"*, even the|strong=\"H7725\"* remnant|strong=\"H7605\"* of|strong=\"H1368\"* Jacob|strong=\"H3290\"*, to|strong=\"H7725\"* the|strong=\"H7725\"* mighty|strong=\"H1368\"* God." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* though|strong=\"H3588\"* your|strong=\"H7725\"* people|strong=\"H5971\"*, Israel|strong=\"H3478\"*, are|strong=\"H5971\"* like|strong=\"H1961\"* the|strong=\"H3588\"* sand|strong=\"H2344\"* of|strong=\"H5971\"* the|strong=\"H3588\"* sea|strong=\"H3220\"*, only|strong=\"H3588\"* a|strong=\"H3068\"* remnant|strong=\"H7605\"* of|strong=\"H5971\"* them|strong=\"H7725\"* will|strong=\"H1961\"* return|strong=\"H7725\"*. A|strong=\"H3068\"* destruction|strong=\"H3631\"* is|strong=\"H3478\"* determined|strong=\"H2782\"*, overflowing|strong=\"H7857\"* with|strong=\"H5971\"* righteousness|strong=\"H6666\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"*, Yahweh|strong=\"H3068\"* of|strong=\"H6635\"* Armies|strong=\"H6635\"*, will|strong=\"H6635\"* make|strong=\"H6213\"* a|strong=\"H3068\"* full|strong=\"H3605\"* end|strong=\"H3617\"*, and|strong=\"H6213\"* that|strong=\"H3588\"* determined|strong=\"H2782\"*, throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 24, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3427\"* Armies|strong=\"H6635\"*, says|strong=\"H3541\"*, “My|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Zion|strong=\"H6726\"*, don’t be|strong=\"H1870\"* afraid|strong=\"H3372\"* of|strong=\"H3427\"* the|strong=\"H5921\"* Assyrian, though he|strong=\"H3651\"* strike|strong=\"H5221\"* you|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H5921\"* rod|strong=\"H7626\"*, and|strong=\"H5971\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* staff|strong=\"H4294\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, as|strong=\"H3651\"* Egypt|strong=\"H4714\"* did|strong=\"H5971\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"H3588\"* yet|strong=\"H5750\"* a|strong=\"H3068\"* very|strong=\"H4213\"* little|strong=\"H4592\"* while|strong=\"H5750\"*, and|strong=\"H5750\"* the|strong=\"H5921\"* indignation|strong=\"H2195\"* against|strong=\"H5921\"* you|strong=\"H3588\"* will|strong=\"H5750\"* be|strong=\"H5750\"* accomplished|strong=\"H3615\"*, and|strong=\"H5750\"* my|strong=\"H5921\"* anger|strong=\"H2195\"* will|strong=\"H5750\"* be|strong=\"H5750\"* directed to|strong=\"H5921\"* his|strong=\"H5921\"* destruction|strong=\"H8399\"*.”" + }, + { + "verseNum": 26, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* will|strong=\"H3068\"* stir|strong=\"H5782\"* up|strong=\"H5375\"* a|strong=\"H3068\"* scourge|strong=\"H7752\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, as|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* slaughter|strong=\"H4347\"* of|strong=\"H3068\"* Midian|strong=\"H4080\"* at|strong=\"H5921\"* the|strong=\"H5921\"* rock|strong=\"H6697\"* of|strong=\"H3068\"* Oreb|strong=\"H6159\"*. His|strong=\"H5375\"* rod|strong=\"H4294\"* will|strong=\"H3068\"* be|strong=\"H3068\"* over|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* lift|strong=\"H5375\"* it|strong=\"H5921\"* up|strong=\"H5375\"* like|strong=\"H1870\"* he|strong=\"H3068\"* did|strong=\"H3068\"* against|strong=\"H5921\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 27, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* his|strong=\"H6440\"* burden|strong=\"H5448\"* will|strong=\"H1961\"* depart|strong=\"H5493\"* from|strong=\"H5493\"* off|strong=\"H5493\"* your|strong=\"H5921\"* shoulder|strong=\"H7926\"*, and|strong=\"H3117\"* his|strong=\"H6440\"* yoke|strong=\"H5923\"* from|strong=\"H5493\"* off|strong=\"H5493\"* your|strong=\"H5921\"* neck|strong=\"H6677\"*, and|strong=\"H3117\"* the|strong=\"H6440\"* yoke|strong=\"H5923\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* destroyed|strong=\"H2254\"* because|strong=\"H5921\"* of|strong=\"H3117\"* the|strong=\"H6440\"* anointing|strong=\"H8081\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H5921\"* has|strong=\"H5674\"* come|strong=\"H5674\"* to|strong=\"H5921\"* Aiath|strong=\"H5857\"*. He|strong=\"H5921\"* has|strong=\"H5674\"* passed|strong=\"H5674\"* through|strong=\"H5674\"* Migron|strong=\"H4051\"*. At|strong=\"H5921\"* Michmash|strong=\"H4363\"* he|strong=\"H5921\"* stores his|strong=\"H5921\"* baggage|strong=\"H3627\"*." + }, + { + "verseNum": 29, + "text": "They|strong=\"H7586\"* have gone|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H5674\"* pass|strong=\"H5674\"*. They|strong=\"H7586\"* have taken|strong=\"H5674\"* up|strong=\"H1387\"* their lodging|strong=\"H4411\"* at|strong=\"H7586\"* Geba|strong=\"H1387\"*. Ramah|strong=\"H7414\"* trembles|strong=\"H2729\"*. Gibeah|strong=\"H1390\"* of|strong=\"H1390\"* Saul|strong=\"H7586\"* has|strong=\"H7586\"* fled|strong=\"H5127\"*." + }, + { + "verseNum": 30, + "text": "Cry|strong=\"H6670\"* aloud|strong=\"H6670\"* with|strong=\"H6041\"* your|strong=\"H7181\"* voice|strong=\"H6963\"*, daughter|strong=\"H1323\"* of|strong=\"H1323\"* Gallim|strong=\"H1554\"*! Listen|strong=\"H7181\"*, Laishah|strong=\"H3919\"*! You|strong=\"H6963\"* poor|strong=\"H6041\"* Anathoth|strong=\"H6068\"*!" + }, + { + "verseNum": 31, + "text": "Madmenah|strong=\"H4088\"* is|strong=\"H3427\"* a|strong=\"H3068\"* fugitive|strong=\"H5074\"*. The|strong=\"H3427\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Gebim|strong=\"H1374\"* flee|strong=\"H5074\"* for|strong=\"H3427\"* safety|strong=\"H5756\"*." + }, + { + "verseNum": 32, + "text": "This|strong=\"H3027\"* very day|strong=\"H3117\"* he|strong=\"H3117\"* will|strong=\"H1004\"* halt|strong=\"H5975\"* at|strong=\"H1004\"* Nob|strong=\"H5011\"*. He|strong=\"H3117\"* shakes|strong=\"H5130\"* his|strong=\"H3027\"* hand|strong=\"H3027\"* at|strong=\"H1004\"* the|strong=\"H3117\"* mountain|strong=\"H2022\"* of|strong=\"H1004\"* the|strong=\"H3117\"* daughter|strong=\"H1323\"* of|strong=\"H1004\"* Zion, the|strong=\"H3117\"* hill|strong=\"H2022\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 33, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H3068\"* Lord|strong=\"H3068\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, will|strong=\"H3068\"* lop|strong=\"H5586\"* the|strong=\"H3068\"* boughs|strong=\"H6288\"* with|strong=\"H3068\"* terror|strong=\"H4637\"*. The|strong=\"H3068\"* tall|strong=\"H7311\"* will|strong=\"H3068\"* be|strong=\"H3068\"* cut|strong=\"H1438\"* down|strong=\"H1438\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* lofty|strong=\"H7311\"* will|strong=\"H3068\"* be|strong=\"H3068\"* brought|strong=\"H3068\"* low|strong=\"H8213\"*." + }, + { + "verseNum": 34, + "text": "He will|strong=\"H3844\"* cut|strong=\"H5362\"* down|strong=\"H5307\"* the|strong=\"H5307\"* thickets|strong=\"H5442\"* of|strong=\"H3293\"* the|strong=\"H5307\"* forest|strong=\"H3293\"* with|strong=\"H3844\"* iron|strong=\"H1270\"*, and|strong=\"H5307\"* Lebanon|strong=\"H3844\"* will|strong=\"H3844\"* fall|strong=\"H5307\"* by|strong=\"H5307\"* the|strong=\"H5307\"* Mighty One." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* shoot|strong=\"H2415\"* will|strong=\"H8328\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3318\"* the|strong=\"H3318\"* stock|strong=\"H1503\"* of|strong=\"H3318\"* Jesse|strong=\"H3448\"*," + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* will|strong=\"H3068\"* rest|strong=\"H5117\"* on|strong=\"H5921\"* him|strong=\"H5921\"*:" + }, + { + "verseNum": 3, + "text": "His|strong=\"H3068\"* delight will|strong=\"H3068\"* be|strong=\"H3808\"* in|strong=\"H3068\"* the|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "but|strong=\"H7563\"* he|strong=\"H5221\"* will|strong=\"H7563\"* judge|strong=\"H8199\"* the|strong=\"H5221\"* poor|strong=\"H1800\"* with|strong=\"H3198\"* righteousness|strong=\"H6664\"*," + }, + { + "verseNum": 5, + "text": "Righteousness|strong=\"H6664\"* will|strong=\"H1961\"* be|strong=\"H1961\"* the|strong=\"H1961\"* belt around his|strong=\"H1961\"* waist|strong=\"H4975\"*," + }, + { + "verseNum": 6, + "text": "The|strong=\"H5973\"* wolf|strong=\"H2061\"* will|strong=\"H5288\"* live|strong=\"H1481\"* with|strong=\"H5973\"* the|strong=\"H5973\"* lamb|strong=\"H3532\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H7462\"* cow|strong=\"H6510\"* and|strong=\"H1241\"* the|strong=\"H7462\"* bear|strong=\"H1677\"* will|strong=\"H3206\"* graze|strong=\"H7462\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* nursing|strong=\"H3243\"* child|strong=\"H3243\"* will|strong=\"H3027\"* play|strong=\"H8173\"* near|strong=\"H5921\"* a|strong=\"H3068\"* cobra|strong=\"H6620\"*’s hole|strong=\"H2352\"*," + }, + { + "verseNum": 9, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* hurt|strong=\"H7489\"* nor|strong=\"H3808\"* destroy|strong=\"H7843\"* in|strong=\"H3068\"* all|strong=\"H3605\"* my|strong=\"H3605\"* holy|strong=\"H6944\"* mountain|strong=\"H2022\"*;" + }, + { + "verseNum": 10, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3117\"* that|strong=\"H5971\"* day|strong=\"H3117\"* that|strong=\"H5971\"* the|strong=\"H3117\"* nations|strong=\"H1471\"* will|strong=\"H1961\"* seek|strong=\"H1875\"* the|strong=\"H3117\"* root|strong=\"H8328\"* of|strong=\"H3117\"* Jesse|strong=\"H3448\"*, who|strong=\"H1931\"* stands|strong=\"H5975\"* as|strong=\"H3117\"* a|strong=\"H3068\"* banner|strong=\"H5251\"* of|strong=\"H3117\"* the|strong=\"H3117\"* peoples|strong=\"H5971\"*; and|strong=\"H3117\"* his|strong=\"H1961\"* resting|strong=\"H4496\"* place|strong=\"H4496\"* will|strong=\"H1961\"* be|strong=\"H1961\"* glorious|strong=\"H3519\"*." + }, + { + "verseNum": 11, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3117\"* that|strong=\"H5971\"* day|strong=\"H3117\"* that|strong=\"H5971\"* the|strong=\"H3117\"* Lord will|strong=\"H1961\"* set|strong=\"H3254\"* his|strong=\"H3027\"* hand|strong=\"H3027\"* again|strong=\"H3254\"* the|strong=\"H3117\"* second|strong=\"H8145\"* time|strong=\"H3117\"* to|strong=\"H1961\"* recover|strong=\"H7069\"* the|strong=\"H3117\"* remnant|strong=\"H7605\"* that|strong=\"H5971\"* is|strong=\"H1931\"* left|strong=\"H7604\"* of|strong=\"H3117\"* his|strong=\"H3027\"* people|strong=\"H5971\"* from|strong=\"H3027\"* Assyria, from|strong=\"H3027\"* Egypt|strong=\"H4714\"*, from|strong=\"H3027\"* Pathros|strong=\"H6624\"*, from|strong=\"H3027\"* Cush|strong=\"H3568\"*, from|strong=\"H3027\"* Elam|strong=\"H5867\"*, from|strong=\"H3027\"* Shinar|strong=\"H8152\"*, from|strong=\"H3027\"* Hamath|strong=\"H2574\"*, and|strong=\"H3117\"* from|strong=\"H3027\"* the|strong=\"H3117\"* islands of|strong=\"H3117\"* the|strong=\"H3117\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H3478\"* will|strong=\"H1471\"* set|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* banner|strong=\"H5251\"* for|strong=\"H3478\"* the|strong=\"H5375\"* nations|strong=\"H1471\"*, and|strong=\"H3063\"* will|strong=\"H1471\"* assemble|strong=\"H6908\"* the|strong=\"H5375\"* outcasts|strong=\"H1760\"* of|strong=\"H3671\"* Israel|strong=\"H3478\"*, and|strong=\"H3063\"* gather|strong=\"H6908\"* together|strong=\"H6908\"* the|strong=\"H5375\"* dispersed|strong=\"H5310\"* of|strong=\"H3671\"* Judah|strong=\"H3063\"* from|strong=\"H3478\"* the|strong=\"H5375\"* four corners|strong=\"H3671\"* of|strong=\"H3671\"* the|strong=\"H5375\"* earth." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5493\"* envy|strong=\"H7065\"* also|strong=\"H3063\"* of|strong=\"H3808\"* Ephraim will|strong=\"H3063\"* depart|strong=\"H5493\"*, and|strong=\"H3063\"* those who|strong=\"H3063\"* persecute Judah|strong=\"H3063\"* will|strong=\"H3063\"* be|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*. Ephraim won’t envy|strong=\"H7065\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* Judah|strong=\"H3063\"* won’t persecute Ephraim." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3027\"* will|strong=\"H1121\"* fly|strong=\"H5774\"* down|strong=\"H5774\"* on|strong=\"H3027\"* the|strong=\"H3027\"* shoulders|strong=\"H3802\"* of|strong=\"H1121\"* the|strong=\"H3027\"* Philistines|strong=\"H6430\"* on|strong=\"H3027\"* the|strong=\"H3027\"* west|strong=\"H3220\"*. Together|strong=\"H3162\"* they|strong=\"H3027\"* will|strong=\"H1121\"* plunder the|strong=\"H3027\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3027\"* east|strong=\"H6924\"*. They|strong=\"H3027\"* will|strong=\"H1121\"* extend their|strong=\"H4916\"* power|strong=\"H3027\"* over|strong=\"H3027\"* Edom and|strong=\"H1121\"* Moab|strong=\"H4124\"*, and|strong=\"H1121\"* the|strong=\"H3027\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* will|strong=\"H1121\"* obey|strong=\"H4928\"* them|strong=\"H3027\"*." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* utterly|strong=\"H2763\"* destroy|strong=\"H2763\"* the|strong=\"H5921\"* tongue|strong=\"H3956\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Egyptian|strong=\"H4714\"* sea|strong=\"H3220\"*; and|strong=\"H3068\"* with|strong=\"H3068\"* his|strong=\"H3068\"* scorching|strong=\"H5868\"* wind|strong=\"H7307\"* he|strong=\"H3068\"* will|strong=\"H3068\"* wave|strong=\"H5130\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* over|strong=\"H5921\"* the|strong=\"H5921\"* River|strong=\"H5104\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* split it|strong=\"H5921\"* into|strong=\"H5921\"* seven|strong=\"H7651\"* streams|strong=\"H5158\"*, and|strong=\"H3068\"* cause men|strong=\"H7651\"* to|strong=\"H3068\"* march|strong=\"H1869\"* over|strong=\"H5921\"* in|strong=\"H5921\"* sandals|strong=\"H5275\"*." + }, + { + "verseNum": 16, + "text": "There|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* highway|strong=\"H4546\"* for|strong=\"H4714\"* the|strong=\"H3117\"* remnant|strong=\"H7605\"* that|strong=\"H5971\"* is|strong=\"H3117\"* left|strong=\"H7604\"* of|strong=\"H3117\"* his|strong=\"H3478\"* people|strong=\"H5971\"* from|strong=\"H5927\"* Assyria, like|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* for|strong=\"H4714\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H5971\"* he|strong=\"H3117\"* came|strong=\"H1961\"* up|strong=\"H5927\"* out|strong=\"H7604\"* of|strong=\"H3117\"* the|strong=\"H3117\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3068\"* that|strong=\"H3588\"* day|strong=\"H3117\"* you|strong=\"H3588\"* will|strong=\"H3068\"* say|strong=\"H7725\"*, “I|strong=\"H3588\"* will|strong=\"H3068\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H7725\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* though|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H3117\"* angry with|strong=\"H3068\"* me|strong=\"H7725\"*, your|strong=\"H3068\"* anger has|strong=\"H3068\"* turned|strong=\"H7725\"* away|strong=\"H7725\"* and|strong=\"H3068\"* you|strong=\"H3588\"* comfort|strong=\"H5162\"* me|strong=\"H7725\"*." + }, + { + "verseNum": 2, + "text": "Behold|strong=\"H2009\"*, God|strong=\"H3068\"* is|strong=\"H3068\"* my|strong=\"H3068\"* salvation|strong=\"H3444\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* trust, and|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* afraid|strong=\"H6342\"*; for|strong=\"H3588\"* Yah|strong=\"H3068\"*, Yahweh|strong=\"H3068\"*, is|strong=\"H3068\"* my|strong=\"H3068\"* strength|strong=\"H5797\"* and|strong=\"H3068\"* song|strong=\"H2176\"*; and|strong=\"H3068\"* he|strong=\"H3588\"* has|strong=\"H3068\"* become|strong=\"H1961\"* my|strong=\"H3068\"* salvation|strong=\"H3444\"*.”" + }, + { + "verseNum": 3, + "text": "Therefore with|strong=\"H4325\"* joy|strong=\"H8342\"* you|strong=\"H4325\"* will|strong=\"H4325\"* draw|strong=\"H7579\"* water|strong=\"H4325\"* out|strong=\"H4325\"* of|strong=\"H4325\"* the|strong=\"H3444\"* wells|strong=\"H4599\"* of|strong=\"H4325\"* salvation|strong=\"H3444\"*." + }, + { + "verseNum": 4, + "text": "In|strong=\"H3068\"* that|strong=\"H3588\"* day|strong=\"H3117\"* you|strong=\"H3588\"* will|strong=\"H3068\"* say, “Give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*! Call|strong=\"H7121\"* on|strong=\"H3117\"* his|strong=\"H3068\"* name|strong=\"H8034\"*! Declare|strong=\"H3045\"* his|strong=\"H3068\"* doings|strong=\"H5949\"* among|strong=\"H8034\"* the|strong=\"H3588\"* peoples|strong=\"H5971\"*! Proclaim|strong=\"H7121\"* that|strong=\"H3588\"* his|strong=\"H3068\"* name|strong=\"H8034\"* is|strong=\"H3068\"* exalted|strong=\"H7682\"*!" + }, + { + "verseNum": 5, + "text": "Sing|strong=\"H2167\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* done|strong=\"H6213\"* excellent|strong=\"H6213\"* things|strong=\"H3605\"*! Let this|strong=\"H2063\"* be|strong=\"H3068\"* known|strong=\"H3045\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth!" + }, + { + "verseNum": 6, + "text": "Cry|strong=\"H6670\"* aloud|strong=\"H7442\"* and|strong=\"H3478\"* shout|strong=\"H7442\"*, you|strong=\"H3588\"* inhabitant|strong=\"H3427\"* of|strong=\"H3427\"* Zion|strong=\"H6726\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H3427\"* Israel|strong=\"H3478\"* is|strong=\"H3478\"* great|strong=\"H1419\"* among|strong=\"H7130\"* you|strong=\"H3588\"*!”" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3470\"* burden|strong=\"H4853\"* of|strong=\"H1121\"* Babylon, which|strong=\"H4853\"* Isaiah|strong=\"H3470\"* the|strong=\"H3470\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz saw|strong=\"H2372\"*." + }, + { + "verseNum": 2, + "text": "Set|strong=\"H7311\"* up|strong=\"H5375\"* a|strong=\"H3068\"* banner|strong=\"H5251\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bare|strong=\"H5375\"* mountain|strong=\"H2022\"*! Lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5921\"* voice|strong=\"H6963\"* to|strong=\"H5921\"* them|strong=\"H5921\"*! Wave|strong=\"H5130\"* your|strong=\"H5921\"* hand|strong=\"H3027\"*, that|strong=\"H2022\"* they|strong=\"H5921\"* may go into|strong=\"H5921\"* the|strong=\"H5921\"* gates|strong=\"H6607\"* of|strong=\"H3027\"* the|strong=\"H5921\"* nobles|strong=\"H5081\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H6680\"* have|strong=\"H1571\"* commanded|strong=\"H6680\"* my|strong=\"H6942\"* consecrated|strong=\"H6942\"* ones|strong=\"H1368\"*; yes|strong=\"H1571\"*, I|strong=\"H6680\"* have|strong=\"H1571\"* called|strong=\"H7121\"* my|strong=\"H6942\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* for|strong=\"H7121\"* my|strong=\"H6942\"* anger, even|strong=\"H1571\"* my|strong=\"H6942\"* proudly|strong=\"H1346\"* exulting|strong=\"H5947\"* ones|strong=\"H1368\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3068\"* noise|strong=\"H6963\"* of|strong=\"H3068\"* a|strong=\"H3068\"* multitude|strong=\"H1995\"* is|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* mountains|strong=\"H2022\"*, as|strong=\"H3068\"* of|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H7227\"* people|strong=\"H5971\"*; the|strong=\"H3068\"* noise|strong=\"H6963\"* of|strong=\"H3068\"* an|strong=\"H3068\"* uproar|strong=\"H7588\"* of|strong=\"H3068\"* the|strong=\"H3068\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3068\"* nations|strong=\"H1471\"* gathered|strong=\"H1471\"* together|strong=\"H5971\"*! Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* is|strong=\"H3068\"* mustering|strong=\"H6485\"* the|strong=\"H3068\"* army|strong=\"H6635\"* for|strong=\"H3068\"* the|strong=\"H3068\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3068\"* come from|strong=\"H3068\"* a|strong=\"H3068\"* far|strong=\"H4801\"* country, from|strong=\"H3068\"* the|strong=\"H3605\"* uttermost|strong=\"H7097\"* part|strong=\"H7097\"* of|strong=\"H3068\"* heaven|strong=\"H8064\"*, even|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* weapons|strong=\"H3627\"* of|strong=\"H3068\"* his|strong=\"H3605\"* indignation|strong=\"H2195\"*, to|strong=\"H3068\"* destroy|strong=\"H2254\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* land|strong=\"H8064\"*." + }, + { + "verseNum": 6, + "text": "Wail|strong=\"H3213\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s day|strong=\"H3117\"* is|strong=\"H3068\"* at|strong=\"H3068\"* hand|strong=\"H7138\"*! It|strong=\"H3588\"* will|strong=\"H3068\"* come as|strong=\"H3117\"* destruction|strong=\"H7701\"* from|strong=\"H3117\"* the|strong=\"H3588\"* Almighty|strong=\"H7706\"*." + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"H3651\"* all|strong=\"H3605\"* hands|strong=\"H3027\"* will|strong=\"H3027\"* be|strong=\"H3027\"* feeble|strong=\"H7503\"*, and|strong=\"H3027\"* everyone|strong=\"H3605\"*’s heart|strong=\"H3824\"* will|strong=\"H3027\"* melt|strong=\"H4549\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H6440\"* will|strong=\"H7453\"* be|strong=\"H6440\"* dismayed. Pangs|strong=\"H2256\"* and|strong=\"H6440\"* sorrows|strong=\"H2256\"* will|strong=\"H7453\"* seize them|strong=\"H6440\"*. They|strong=\"H6440\"* will|strong=\"H7453\"* be|strong=\"H6440\"* in|strong=\"H6440\"* pain|strong=\"H2342\"* like|strong=\"H6440\"* a|strong=\"H3068\"* woman|strong=\"H3205\"* in|strong=\"H6440\"* labor|strong=\"H3205\"*. They|strong=\"H6440\"* will|strong=\"H7453\"* look|strong=\"H2342\"* in|strong=\"H6440\"* amazement one|strong=\"H7453\"* at|strong=\"H6440\"* another|strong=\"H7453\"*. Their|strong=\"H6440\"* faces|strong=\"H6440\"* will|strong=\"H7453\"* be|strong=\"H6440\"* faces|strong=\"H6440\"* of|strong=\"H3205\"* flame|strong=\"H3851\"*." + }, + { + "verseNum": 9, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* comes|strong=\"H3117\"*, cruel, with|strong=\"H3068\"* wrath|strong=\"H5678\"* and|strong=\"H3068\"* fierce|strong=\"H2740\"* anger|strong=\"H5678\"*; to|strong=\"H3068\"* make|strong=\"H7760\"* the|strong=\"H3068\"* land a|strong=\"H3068\"* desolation|strong=\"H8047\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* destroy|strong=\"H8045\"* its|strong=\"H7760\"* sinners|strong=\"H2400\"* out|strong=\"H4480\"* of|strong=\"H3068\"* it|strong=\"H7760\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* stars|strong=\"H3556\"* of|strong=\"H3318\"* the|strong=\"H3588\"* sky|strong=\"H8064\"* and|strong=\"H8064\"* its|strong=\"H3588\"* constellations|strong=\"H3685\"* will|strong=\"H8064\"* not|strong=\"H3808\"* give|strong=\"H3394\"* their|strong=\"H3588\"* light|strong=\"H5050\"*. The|strong=\"H3588\"* sun|strong=\"H8121\"* will|strong=\"H8064\"* be|strong=\"H3808\"* darkened|strong=\"H2821\"* in|strong=\"H8064\"* its|strong=\"H3588\"* going|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H8064\"* the|strong=\"H3588\"* moon|strong=\"H3394\"* will|strong=\"H8064\"* not|strong=\"H3808\"* cause|strong=\"H3318\"* its|strong=\"H3588\"* light|strong=\"H5050\"* to|strong=\"H3318\"* shine|strong=\"H5050\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H5921\"* will|strong=\"H7563\"* punish|strong=\"H6485\"* the|strong=\"H5921\"* world|strong=\"H8398\"* for|strong=\"H5921\"* their|strong=\"H5921\"* evil|strong=\"H7451\"*, and|strong=\"H5771\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* for|strong=\"H5921\"* their|strong=\"H5921\"* iniquity|strong=\"H5771\"*. I|strong=\"H5921\"* will|strong=\"H7563\"* cause the|strong=\"H5921\"* arrogance|strong=\"H1346\"* of|strong=\"H5921\"* the|strong=\"H5921\"* proud|strong=\"H2086\"* to|strong=\"H5921\"* cease|strong=\"H7673\"*, and|strong=\"H5771\"* will|strong=\"H7563\"* humble|strong=\"H8213\"* the|strong=\"H5921\"* arrogance|strong=\"H1346\"* of|strong=\"H5921\"* the|strong=\"H5921\"* terrible|strong=\"H6184\"*." + }, + { + "verseNum": 12, + "text": "I will make|strong=\"H3365\"* people more rare than fine|strong=\"H6337\"* gold|strong=\"H3800\"*, even a|strong=\"H3068\"* person than the pure|strong=\"H6337\"* gold|strong=\"H3800\"* of|strong=\"H3800\"* Ophir." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H3117\"* will|strong=\"H3068\"* make the|strong=\"H5921\"* heavens|strong=\"H8064\"* tremble|strong=\"H7264\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* earth|strong=\"H8064\"* will|strong=\"H3068\"* be|strong=\"H3068\"* shaken|strong=\"H7493\"* out|strong=\"H5921\"* of|strong=\"H3068\"* its|strong=\"H5921\"* place|strong=\"H4725\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*’ wrath|strong=\"H5678\"*, and|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H3068\"* his|strong=\"H3068\"* fierce|strong=\"H2740\"* anger|strong=\"H5678\"*." + }, + { + "verseNum": 14, + "text": "It|strong=\"H1961\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H5971\"* like|strong=\"H1961\"* a|strong=\"H3068\"* hunted|strong=\"H5080\"* gazelle|strong=\"H6643\"* and|strong=\"H5971\"* like|strong=\"H1961\"* sheep|strong=\"H6629\"* that|strong=\"H5971\"* no|strong=\"H1961\"* one|strong=\"H1961\"* gathers|strong=\"H6908\"*, they|strong=\"H5971\"* will|strong=\"H1961\"* each|strong=\"H5971\"* turn|strong=\"H6437\"* to|strong=\"H1961\"* their|strong=\"H1961\"* own|strong=\"H1961\"* people|strong=\"H5971\"*, and|strong=\"H5971\"* will|strong=\"H1961\"* each|strong=\"H5971\"* flee|strong=\"H5127\"* to|strong=\"H1961\"* their|strong=\"H1961\"* own|strong=\"H1961\"* land." + }, + { + "verseNum": 15, + "text": "Everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3605\"* found|strong=\"H4672\"* will|strong=\"H2719\"* be|strong=\"H2719\"* thrust|strong=\"H1856\"* through|strong=\"H1856\"*. Everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3605\"* captured|strong=\"H5595\"* will|strong=\"H2719\"* fall|strong=\"H5307\"* by|strong=\"H3605\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 16, + "text": "Their|strong=\"H8155\"* infants|strong=\"H5768\"* also|strong=\"H5869\"* will|strong=\"H5869\"* be|strong=\"H5869\"* dashed|strong=\"H7376\"* in|strong=\"H1004\"* pieces|strong=\"H7376\"* before|strong=\"H5869\"* their|strong=\"H8155\"* eyes|strong=\"H5869\"*. Their|strong=\"H8155\"* houses|strong=\"H1004\"* will|strong=\"H5869\"* be|strong=\"H5869\"* ransacked, and|strong=\"H1004\"* their|strong=\"H8155\"* wives raped|strong=\"H7693\"*." + }, + { + "verseNum": 17, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3808\"* stir|strong=\"H5782\"* up|strong=\"H5782\"* the|strong=\"H5921\"* Medes|strong=\"H4074\"* against|strong=\"H5921\"* them|strong=\"H5921\"*, who|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* value|strong=\"H2803\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* as|strong=\"H2803\"* for|strong=\"H5921\"* gold|strong=\"H2091\"*, they|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* delight|strong=\"H2654\"* in|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 18, + "text": "Their|strong=\"H5921\"* bows|strong=\"H7198\"* will|strong=\"H5869\"* dash|strong=\"H7376\"* the|strong=\"H5921\"* young|strong=\"H5288\"* men|strong=\"H5288\"* in|strong=\"H5921\"* pieces|strong=\"H7376\"*; and|strong=\"H1121\"* they|strong=\"H3808\"* shall|strong=\"H1121\"* have|strong=\"H7355\"* no|strong=\"H3808\"* pity|strong=\"H2347\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fruit|strong=\"H6529\"* of|strong=\"H1121\"* the|strong=\"H5921\"* womb. Their|strong=\"H5921\"* eyes|strong=\"H5869\"* will|strong=\"H5869\"* not|strong=\"H3808\"* spare|strong=\"H2347\"* children|strong=\"H1121\"*." + }, + { + "verseNum": 19, + "text": "Babylon, the|strong=\"H1961\"* glory|strong=\"H8597\"* of|strong=\"H4467\"* kingdoms|strong=\"H4467\"*, the|strong=\"H1961\"* beauty|strong=\"H8597\"* of|strong=\"H4467\"* the|strong=\"H1961\"* Chaldeans|strong=\"H3778\"*’ pride|strong=\"H1347\"*, will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* when|strong=\"H1961\"* God overthrew|strong=\"H4114\"* Sodom|strong=\"H5467\"* and|strong=\"H5467\"* Gomorrah|strong=\"H6017\"*." + }, + { + "verseNum": 20, + "text": "It|strong=\"H8033\"* will|strong=\"H3808\"* never|strong=\"H3808\"* be|strong=\"H3808\"* inhabited|strong=\"H3427\"*, neither|strong=\"H3808\"* will|strong=\"H3808\"* it|strong=\"H8033\"* be|strong=\"H3808\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* from|strong=\"H5704\"* generation|strong=\"H1755\"* to|strong=\"H5704\"* generation|strong=\"H1755\"*. The|strong=\"H5704\"* Arabian|strong=\"H6163\"* will|strong=\"H3808\"* not|strong=\"H3808\"* pitch|strong=\"H6163\"* a|strong=\"H3068\"* tent there|strong=\"H8033\"*, neither|strong=\"H3808\"* will|strong=\"H3808\"* shepherds|strong=\"H7462\"* make|strong=\"H3427\"* their|strong=\"H3808\"* flocks lie|strong=\"H7257\"* down|strong=\"H3427\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 21, + "text": "But wild animals of|strong=\"H1004\"* the|strong=\"H4390\"* desert|strong=\"H6728\"* will|strong=\"H1004\"* lie|strong=\"H7257\"* there|strong=\"H8033\"*, and|strong=\"H1004\"* their|strong=\"H4390\"* houses|strong=\"H1004\"* will|strong=\"H1004\"* be|strong=\"H1004\"* full|strong=\"H4390\"* of|strong=\"H1004\"* jackals. Ostriches|strong=\"H3284\"* will|strong=\"H1004\"* dwell|strong=\"H7931\"* there|strong=\"H8033\"*, and|strong=\"H1004\"* wild goats|strong=\"H8163\"* will|strong=\"H1004\"* frolic|strong=\"H7540\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 22, + "text": "Hyenas will|strong=\"H3808\"* cry|strong=\"H6030\"* in|strong=\"H3117\"* their|strong=\"H3117\"* fortresses, and|strong=\"H6030\"* jackals|strong=\"H8577\"* in|strong=\"H3117\"* the|strong=\"H3117\"* pleasant|strong=\"H6027\"* palaces|strong=\"H1964\"*. Her|strong=\"H3117\"* time|strong=\"H6256\"* is|strong=\"H3117\"* near|strong=\"H7138\"* to|strong=\"H6256\"* come, and|strong=\"H6030\"* her|strong=\"H3117\"* days|strong=\"H3117\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* prolonged|strong=\"H4900\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* have|strong=\"H7355\"* compassion|strong=\"H7355\"* on|strong=\"H5921\"* Jacob|strong=\"H3290\"*, and|strong=\"H3478\"* will|strong=\"H3068\"* yet|strong=\"H5750\"* choose Israel|strong=\"H3478\"*, and|strong=\"H3478\"* set|strong=\"H3240\"* them|strong=\"H5921\"* in|strong=\"H5921\"* their|strong=\"H3068\"* own land. The|strong=\"H5921\"* foreigner|strong=\"H1616\"* will|strong=\"H3068\"* join|strong=\"H3867\"* himself|strong=\"H3068\"* with|strong=\"H1004\"* them|strong=\"H5921\"*, and|strong=\"H3478\"* they|strong=\"H3588\"* will|strong=\"H3068\"* unite with|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5921\"* peoples|strong=\"H5971\"* will|strong=\"H3068\"* take|strong=\"H3947\"* them|strong=\"H5921\"*, and|strong=\"H3478\"* bring|strong=\"H3947\"* them|strong=\"H5921\"* to|strong=\"H3478\"* their|strong=\"H3068\"* place|strong=\"H4725\"*. The|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* will|strong=\"H3068\"* possess|strong=\"H5157\"* them|strong=\"H5921\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s land|strong=\"H4725\"* for|strong=\"H5921\"* servants|strong=\"H5650\"* and|strong=\"H3478\"* for|strong=\"H5921\"* handmaids|strong=\"H8198\"*. They|strong=\"H3068\"* will|strong=\"H3068\"* take|strong=\"H3947\"* as|strong=\"H1961\"* captives|strong=\"H7617\"* those|strong=\"H5921\"* whose|strong=\"H5650\"* captives|strong=\"H7617\"* they|strong=\"H3068\"* were|strong=\"H3478\"*; and|strong=\"H3478\"* they|strong=\"H3068\"* shall|strong=\"H3068\"* rule|strong=\"H7287\"* over|strong=\"H5921\"* their|strong=\"H3068\"* oppressors|strong=\"H5065\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H5117\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* in|strong=\"H3068\"* the|strong=\"H5647\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5117\"* you|strong=\"H3117\"* rest|strong=\"H5117\"* from|strong=\"H4480\"* your|strong=\"H3068\"* sorrow|strong=\"H6090\"*, from|strong=\"H4480\"* your|strong=\"H3068\"* trouble|strong=\"H7267\"*, and|strong=\"H3068\"* from|strong=\"H4480\"* the|strong=\"H5647\"* hard|strong=\"H7186\"* service|strong=\"H5656\"* in|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H3117\"* were|strong=\"H1961\"* made|strong=\"H1961\"* to|strong=\"H3068\"* serve|strong=\"H5647\"*," + }, + { + "verseNum": 4, + "text": "that|strong=\"H4428\"* you|strong=\"H5921\"* will|strong=\"H4428\"* take|strong=\"H5375\"* up|strong=\"H5375\"* this|strong=\"H2088\"* parable|strong=\"H4912\"* against|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H4428\"* say, “How the|strong=\"H5921\"* oppressor|strong=\"H5065\"* has|strong=\"H4428\"* ceased|strong=\"H7673\"*! The|strong=\"H5921\"* golden city|strong=\"H4062\"* has|strong=\"H4428\"* ceased|strong=\"H7673\"*!”" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* broken|strong=\"H7665\"* the|strong=\"H3068\"* staff|strong=\"H4294\"* of|strong=\"H3068\"* the|strong=\"H3068\"* wicked|strong=\"H7563\"*, the|strong=\"H3068\"* scepter|strong=\"H7626\"* of|strong=\"H3068\"* the|strong=\"H3068\"* rulers|strong=\"H4910\"*," + }, + { + "verseNum": 6, + "text": "who|strong=\"H5971\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* peoples|strong=\"H5971\"* in|strong=\"H5971\"* wrath|strong=\"H5678\"* with|strong=\"H5971\"* a|strong=\"H3068\"* continual|strong=\"H1115\"* stroke|strong=\"H4347\"*, who|strong=\"H5971\"* ruled|strong=\"H7287\"* the|strong=\"H5221\"* nations|strong=\"H1471\"* in|strong=\"H5971\"* anger|strong=\"H5678\"*, with|strong=\"H5971\"* a|strong=\"H3068\"* persecution|strong=\"H4783\"* that|strong=\"H5971\"* no|strong=\"H1115\"* one|strong=\"H1097\"* restrained|strong=\"H2820\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* whole|strong=\"H3605\"* earth is|strong=\"H3605\"* at|strong=\"H3605\"* rest|strong=\"H5117\"*, and|strong=\"H8252\"* is|strong=\"H3605\"* quiet|strong=\"H8252\"*. They|strong=\"H3605\"* break|strong=\"H6476\"* out|strong=\"H3605\"* in|strong=\"H5117\"* song." + }, + { + "verseNum": 8, + "text": "Yes|strong=\"H1571\"*, the|strong=\"H5921\"* cypress|strong=\"H1265\"* trees|strong=\"H1265\"* rejoice|strong=\"H8055\"* with|strong=\"H5921\"* you|strong=\"H5921\"*, with|strong=\"H5921\"* the|strong=\"H5921\"* cedars of|strong=\"H5921\"* Lebanon|strong=\"H3844\"*, saying, “Since|strong=\"H1571\"* you|strong=\"H5921\"* are|strong=\"H1571\"* humbled, no|strong=\"H3808\"* lumberjack has|strong=\"H1571\"* come|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* us|strong=\"H5921\"*.”" + }, + { + "verseNum": 9, + "text": "Sheol|strong=\"H7585\"*+ 14:9 Sheol is the place of the dead.* from|strong=\"H6965\"* beneath|strong=\"H8478\"* has|strong=\"H4428\"* moved|strong=\"H7264\"* for|strong=\"H8478\"* you|strong=\"H3605\"* to|strong=\"H4428\"* meet|strong=\"H7125\"* you|strong=\"H3605\"* at|strong=\"H4428\"* your|strong=\"H3605\"* coming|strong=\"H7125\"*. It|strong=\"H6965\"* stirs|strong=\"H5782\"* up|strong=\"H6965\"* the|strong=\"H3605\"* departed|strong=\"H7496\"* spirits|strong=\"H7496\"* for|strong=\"H8478\"* you|strong=\"H3605\"*, even all|strong=\"H3605\"* the|strong=\"H3605\"* rulers of|strong=\"H4428\"* the|strong=\"H3605\"* earth. It|strong=\"H6965\"* has|strong=\"H4428\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* from|strong=\"H6965\"* their|strong=\"H3605\"* thrones|strong=\"H3678\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H3605\"* all|strong=\"H3605\"* will|strong=\"H1571\"* answer|strong=\"H6030\"* and|strong=\"H6030\"* ask you|strong=\"H3605\"*, “Have|strong=\"H1571\"* you|strong=\"H3605\"* also|strong=\"H1571\"* become|strong=\"H2470\"* as|strong=\"H3644\"* weak|strong=\"H2470\"* as|strong=\"H3644\"* we|strong=\"H3068\"* are|strong=\"H1571\"*? Have|strong=\"H1571\"* you|strong=\"H3605\"* become|strong=\"H2470\"* like|strong=\"H3644\"* us|strong=\"H4911\"*?”" + }, + { + "verseNum": 11, + "text": "Your|strong=\"H3381\"* pomp|strong=\"H1347\"* is|strong=\"H7415\"* brought|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*,+ 14:11 Sheol is the place of the dead. * with|strong=\"H3381\"* the|strong=\"H8478\"* sound of|strong=\"H8478\"* your|strong=\"H3381\"* stringed instruments. Maggots|strong=\"H7415\"* are|strong=\"H7585\"* spread|strong=\"H3331\"* out|strong=\"H3331\"* under|strong=\"H8478\"* you|strong=\"H3381\"*, and|strong=\"H3381\"* worms|strong=\"H8438\"* cover|strong=\"H4374\"* you|strong=\"H3381\"*." + }, + { + "verseNum": 12, + "text": "How you|strong=\"H5921\"* have|strong=\"H1121\"* fallen|strong=\"H5307\"* from|strong=\"H5921\"* heaven|strong=\"H8064\"*, shining one|strong=\"H1121\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* dawn|strong=\"H7837\"*! How you|strong=\"H5921\"* are|strong=\"H1121\"* cut|strong=\"H1438\"* down|strong=\"H5307\"* to|strong=\"H5921\"* the|strong=\"H5921\"* ground, who|strong=\"H1121\"* laid the|strong=\"H5921\"* nations|strong=\"H1471\"* low|strong=\"H1121\"*!" + }, + { + "verseNum": 13, + "text": "You|strong=\"H2022\"* said in|strong=\"H3427\"* your|strong=\"H7311\"* heart|strong=\"H3824\"*, “I|strong=\"H7311\"* will|strong=\"H8064\"* ascend|strong=\"H5927\"* into|strong=\"H5927\"* heaven|strong=\"H8064\"*! I|strong=\"H7311\"* will|strong=\"H8064\"* exalt|strong=\"H7311\"* my|strong=\"H7311\"* throne|strong=\"H3678\"* above|strong=\"H4605\"* the|strong=\"H5927\"* stars|strong=\"H3556\"* of|strong=\"H3427\"* God|strong=\"H8064\"*! I|strong=\"H7311\"* will|strong=\"H8064\"* sit|strong=\"H3427\"* on|strong=\"H3427\"* the|strong=\"H5927\"* mountain|strong=\"H2022\"* of|strong=\"H3427\"* assembly|strong=\"H4150\"*, in|strong=\"H3427\"* the|strong=\"H5927\"* far|strong=\"H5927\"* north|strong=\"H6828\"*!" + }, + { + "verseNum": 14, + "text": "I|strong=\"H5921\"* will ascend|strong=\"H5927\"* above|strong=\"H5921\"* the|strong=\"H5921\"* heights|strong=\"H1116\"* of|strong=\"H5921\"* the|strong=\"H5921\"* clouds|strong=\"H5645\"*! I|strong=\"H5921\"* will make|strong=\"H1819\"* myself|strong=\"H1819\"* like|strong=\"H1819\"* the|strong=\"H5921\"* Most|strong=\"H5945\"* High|strong=\"H1116\"*!”" + }, + { + "verseNum": 15, + "text": "Yet you|strong=\"H3381\"* shall be brought|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*,+ 14:15 Sheol is the place of the dead.* to|strong=\"H3381\"* the|strong=\"H3381\"* depths of|strong=\"H3411\"* the|strong=\"H3381\"* pit|strong=\"H7585\"*." + }, + { + "verseNum": 16, + "text": "Those|strong=\"H2088\"* who|strong=\"H2088\"* see|strong=\"H7200\"* you|strong=\"H7200\"* will|strong=\"H2088\"* stare|strong=\"H7200\"* at|strong=\"H7200\"* you|strong=\"H7200\"*. They|strong=\"H7200\"* will|strong=\"H2088\"* ponder you|strong=\"H7200\"*, saying, “Is|strong=\"H2088\"* this|strong=\"H2088\"* the|strong=\"H7200\"* man|strong=\"H2088\"* who|strong=\"H2088\"* made the|strong=\"H7200\"* earth to|strong=\"H7200\"* tremble|strong=\"H7264\"*, who|strong=\"H2088\"* shook|strong=\"H7493\"* kingdoms|strong=\"H4467\"*," + }, + { + "verseNum": 17, + "text": "who|strong=\"H3808\"* made|strong=\"H7760\"* the|strong=\"H7760\"* world|strong=\"H8398\"* like|strong=\"H1004\"* a|strong=\"H3068\"* wilderness|strong=\"H4057\"*, and|strong=\"H1004\"* overthrew|strong=\"H2040\"* its|strong=\"H7760\"* cities|strong=\"H5892\"*, who|strong=\"H3808\"* didn’t release|strong=\"H6605\"* his|strong=\"H7760\"* prisoners to|strong=\"H1004\"* their|strong=\"H7760\"* home|strong=\"H1004\"*?”" + }, + { + "verseNum": 18, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* sleep|strong=\"H7901\"* in|strong=\"H1004\"* glory|strong=\"H3519\"*, everyone|strong=\"H3605\"* in|strong=\"H1004\"* his|strong=\"H3605\"* own house|strong=\"H1004\"*." + }, + { + "verseNum": 19, + "text": "But you|strong=\"H3381\"* are|strong=\"H6913\"* cast|strong=\"H7993\"* away|strong=\"H7993\"* from|strong=\"H3381\"* your|strong=\"H2026\"* tomb|strong=\"H6913\"* like|strong=\"H3381\"* an|strong=\"H8581\"* abominable|strong=\"H8581\"* branch|strong=\"H5342\"*, clothed|strong=\"H3830\"* with|strong=\"H3381\"* the|strong=\"H2026\"* slain|strong=\"H2026\"* who are|strong=\"H6913\"* thrust|strong=\"H3381\"* through|strong=\"H2944\"* with|strong=\"H3381\"* the|strong=\"H2026\"* sword|strong=\"H2719\"*, who go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H2026\"* stones of|strong=\"H2719\"* the|strong=\"H2026\"* pit; like|strong=\"H3381\"* a|strong=\"H3068\"* dead|strong=\"H6297\"* body trodden under foot." + }, + { + "verseNum": 20, + "text": "You|strong=\"H3588\"* will|strong=\"H5971\"* not|strong=\"H3808\"* join them|strong=\"H7121\"* in|strong=\"H7121\"* burial|strong=\"H6900\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5971\"* destroyed|strong=\"H7843\"* your|strong=\"H3588\"* land. You|strong=\"H3588\"* have|strong=\"H5971\"* killed|strong=\"H2026\"* your|strong=\"H3588\"* people|strong=\"H5971\"*. The|strong=\"H3588\"* offspring|strong=\"H2233\"* of|strong=\"H2233\"* evildoers|strong=\"H7489\"* will|strong=\"H5971\"* not|strong=\"H3808\"* be|strong=\"H3808\"* named|strong=\"H7121\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 21, + "text": "Prepare|strong=\"H3559\"* for|strong=\"H6440\"* slaughter|strong=\"H4293\"* of|strong=\"H1121\"* his|strong=\"H6440\"* children|strong=\"H1121\"* because|strong=\"H6440\"* of|strong=\"H1121\"* the|strong=\"H6440\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* their|strong=\"H6440\"* fathers, that|strong=\"H5892\"* they|strong=\"H1077\"* not|strong=\"H1077\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H1121\"* possess|strong=\"H3423\"* the|strong=\"H6440\"* earth, and|strong=\"H1121\"* fill|strong=\"H4390\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H1121\"* the|strong=\"H6440\"* world|strong=\"H8398\"* with|strong=\"H4390\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 22, + "text": "“I|strong=\"H5921\"* will|strong=\"H3068\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* them|strong=\"H5921\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, “and|strong=\"H6965\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* Babylon name|strong=\"H8034\"* and|strong=\"H6965\"* remnant|strong=\"H7605\"*, and|strong=\"H6965\"* son|strong=\"H5209\"* and|strong=\"H6965\"* son|strong=\"H5209\"*’s son|strong=\"H5209\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 23, + "text": "“I|strong=\"H7760\"* will|strong=\"H3068\"* also|strong=\"H3068\"* make|strong=\"H7760\"* it|strong=\"H7760\"* a|strong=\"H3068\"* possession|strong=\"H4180\"* for|strong=\"H3068\"* the|strong=\"H5002\"* porcupine, and|strong=\"H3068\"* pools of|strong=\"H3068\"* water|strong=\"H4325\"*. I|strong=\"H7760\"* will|strong=\"H3068\"* sweep|strong=\"H2894\"* it|strong=\"H7760\"* with|strong=\"H3068\"* the|strong=\"H5002\"* broom|strong=\"H4292\"* of|strong=\"H3068\"* destruction|strong=\"H8045\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 24, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"*, saying, “Surely|strong=\"H6965\"*, as|strong=\"H1961\"* I|strong=\"H3651\"* have|strong=\"H1961\"* thought|strong=\"H1819\"*, so|strong=\"H3651\"* shall|strong=\"H3068\"* it|strong=\"H1931\"* happen|strong=\"H1961\"*; and|strong=\"H6965\"* as|strong=\"H1961\"* I|strong=\"H3651\"* have|strong=\"H1961\"* purposed|strong=\"H3289\"*, so|strong=\"H3651\"* shall|strong=\"H3068\"* it|strong=\"H1931\"* stand|strong=\"H6965\"*:" + }, + { + "verseNum": 25, + "text": "that|strong=\"H2022\"* I|strong=\"H5921\"* will|strong=\"H2022\"* break|strong=\"H7665\"* the|strong=\"H5921\"* Assyrian in|strong=\"H5921\"* my|strong=\"H5921\"* land, and|strong=\"H2022\"* tread him|strong=\"H5921\"* under|strong=\"H5921\"* foot on|strong=\"H5921\"* my|strong=\"H5921\"* mountains|strong=\"H2022\"*. Then his|strong=\"H5921\"* yoke|strong=\"H5923\"* will|strong=\"H2022\"* leave|strong=\"H5493\"* them|strong=\"H5921\"*, and|strong=\"H2022\"* his|strong=\"H5921\"* burden|strong=\"H5448\"* leave|strong=\"H5493\"* their|strong=\"H5921\"* shoulders|strong=\"H7926\"*." + }, + { + "verseNum": 26, + "text": "This|strong=\"H2063\"* is|strong=\"H3027\"* the|strong=\"H3605\"* plan|strong=\"H6098\"* that|strong=\"H3605\"* is|strong=\"H3027\"* determined|strong=\"H3289\"* for|strong=\"H5921\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth. This|strong=\"H2063\"* is|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* that|strong=\"H3605\"* is|strong=\"H3027\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* has|strong=\"H3068\"* planned|strong=\"H3289\"*, and|strong=\"H3068\"* who|strong=\"H4310\"* can|strong=\"H4310\"* stop it|strong=\"H3588\"*? His|strong=\"H3068\"* hand|strong=\"H3027\"* is|strong=\"H3068\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"*, and|strong=\"H3068\"* who|strong=\"H4310\"* can|strong=\"H4310\"* turn|strong=\"H7725\"* it|strong=\"H3588\"* back|strong=\"H7725\"*?”" + }, + { + "verseNum": 28, + "text": "This|strong=\"H2088\"* burden|strong=\"H4853\"* was|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H1961\"* year|strong=\"H8141\"* that|strong=\"H4428\"* King|strong=\"H4428\"* Ahaz died|strong=\"H4194\"*." + }, + { + "verseNum": 29, + "text": "Don’t rejoice|strong=\"H8055\"*, O|strong=\"H3068\"* Philistia|strong=\"H6429\"*, all|strong=\"H3605\"* of|strong=\"H7626\"* you|strong=\"H3588\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* rod|strong=\"H7626\"* that|strong=\"H3588\"* struck|strong=\"H5221\"* you|strong=\"H3588\"* is|strong=\"H3605\"* broken|strong=\"H7665\"*; for|strong=\"H3588\"* out|strong=\"H3318\"* of|strong=\"H7626\"* the|strong=\"H3605\"* serpent|strong=\"H5175\"*’s root|strong=\"H8328\"* an|strong=\"H5221\"* adder|strong=\"H8314\"* will|strong=\"H8328\"* emerge|strong=\"H3318\"*, and|strong=\"H3318\"* his|strong=\"H3605\"* fruit|strong=\"H6529\"* will|strong=\"H8328\"* be|strong=\"H3318\"* a|strong=\"H3068\"* fiery|strong=\"H8314\"* flying|strong=\"H5774\"* serpent|strong=\"H5175\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H4191\"* firstborn|strong=\"H1060\"* of|strong=\"H1060\"* the|strong=\"H4191\"* poor|strong=\"H1800\"* will|strong=\"H8328\"* eat|strong=\"H7462\"*, and|strong=\"H4191\"* the|strong=\"H4191\"* needy|strong=\"H1800\"* will|strong=\"H8328\"* lie|strong=\"H7257\"* down|strong=\"H7257\"* in|strong=\"H4191\"* safety; and|strong=\"H4191\"* I will|strong=\"H8328\"* kill|strong=\"H2026\"* your|strong=\"H2026\"* root|strong=\"H8328\"* with|strong=\"H4191\"* famine|strong=\"H7458\"*, and|strong=\"H4191\"* your|strong=\"H2026\"* remnant|strong=\"H7611\"* will|strong=\"H8328\"* be|strong=\"H4191\"* killed|strong=\"H2026\"*." + }, + { + "verseNum": 31, + "text": "Howl|strong=\"H3213\"*, gate|strong=\"H8179\"*! Cry|strong=\"H2199\"*, city|strong=\"H5892\"*! You|strong=\"H3588\"* are|strong=\"H5892\"* melted|strong=\"H4127\"* away|strong=\"H4127\"*, Philistia|strong=\"H6429\"*, all|strong=\"H3605\"* of|strong=\"H5892\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* smoke|strong=\"H6227\"* comes out|strong=\"H2199\"* of|strong=\"H5892\"* the|strong=\"H3605\"* north|strong=\"H6828\"*, and|strong=\"H5892\"* there|strong=\"H3605\"* is|strong=\"H3605\"* no|strong=\"H3605\"* straggler in|strong=\"H5892\"* his|strong=\"H3605\"* ranks|strong=\"H4151\"*." + }, + { + "verseNum": 32, + "text": "What|strong=\"H4100\"* will|strong=\"H3068\"* they|strong=\"H3588\"* answer|strong=\"H6030\"* the|strong=\"H3588\"* messengers|strong=\"H4397\"* of|strong=\"H3068\"* the|strong=\"H3588\"* nation|strong=\"H1471\"*? That|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* founded|strong=\"H3245\"* Zion|strong=\"H6726\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* her|strong=\"H3588\"* the|strong=\"H3588\"* afflicted|strong=\"H6041\"* of|strong=\"H3068\"* his|strong=\"H3068\"* people|strong=\"H5971\"* will|strong=\"H3068\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3588\"* burden|strong=\"H4853\"* of|strong=\"H4853\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H5921\"* have|strong=\"H3605\"* gone|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Bayith, and|strong=\"H7218\"* to|strong=\"H5927\"* Dibon|strong=\"H1769\"*, to|strong=\"H5927\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, to|strong=\"H5927\"* weep|strong=\"H1065\"*. Moab|strong=\"H4124\"* wails|strong=\"H3213\"* over|strong=\"H5921\"* Nebo|strong=\"H5015\"* and|strong=\"H7218\"* over|strong=\"H5921\"* Medeba|strong=\"H4311\"*. Baldness|strong=\"H7144\"* is|strong=\"H3605\"* on|strong=\"H5921\"* all|strong=\"H3605\"* of|strong=\"H7218\"* their|strong=\"H3605\"* heads|strong=\"H7218\"*. Every|strong=\"H3605\"* beard|strong=\"H2206\"* is|strong=\"H3605\"* cut|strong=\"H1639\"* off|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "In|strong=\"H5921\"* their|strong=\"H3605\"* streets|strong=\"H2351\"*, they|strong=\"H5921\"* clothe themselves|strong=\"H5921\"* in|strong=\"H5921\"* sackcloth|strong=\"H8242\"*. In|strong=\"H5921\"* their|strong=\"H3605\"* streets|strong=\"H2351\"* and|strong=\"H3381\"* on|strong=\"H5921\"* their|strong=\"H3605\"* housetops|strong=\"H1406\"*, everyone|strong=\"H3605\"* wails|strong=\"H3213\"*, weeping|strong=\"H1065\"* abundantly|strong=\"H3381\"*." + }, + { + "verseNum": 4, + "text": "Heshbon|strong=\"H2809\"* cries|strong=\"H2199\"* out|strong=\"H2199\"* with|strong=\"H5921\"* Elealeh. Their|strong=\"H8085\"* voice|strong=\"H6963\"* is|strong=\"H5315\"* heard|strong=\"H8085\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Jahaz|strong=\"H3096\"*. Therefore|strong=\"H3651\"* the|strong=\"H5921\"* armed|strong=\"H2502\"* men|strong=\"H2502\"* of|strong=\"H6963\"* Moab|strong=\"H4124\"* cry|strong=\"H2199\"* aloud|strong=\"H2199\"*. Their|strong=\"H8085\"* souls|strong=\"H5315\"* tremble within|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "My|strong=\"H5927\"* heart|strong=\"H3820\"* cries|strong=\"H2199\"* out|strong=\"H2199\"* for|strong=\"H3588\"* Moab|strong=\"H4124\"*! Her|strong=\"H1870\"* nobles flee to|strong=\"H5704\"* Zoar|strong=\"H6820\"*, to|strong=\"H5704\"* Eglath Shelishiyah; for|strong=\"H3588\"* they|strong=\"H3588\"* go|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H1870\"* the|strong=\"H3588\"* ascent|strong=\"H4608\"* of|strong=\"H1870\"* Luhith|strong=\"H3872\"* with|strong=\"H5927\"* weeping|strong=\"H1065\"*; for|strong=\"H3588\"* on|strong=\"H1870\"* the|strong=\"H3588\"* way|strong=\"H1870\"* to|strong=\"H5704\"* Horonaim|strong=\"H2773\"*, they|strong=\"H3588\"* raise|strong=\"H5782\"* up|strong=\"H5927\"* a|strong=\"H3068\"* cry|strong=\"H2199\"* of|strong=\"H1870\"* destruction|strong=\"H7667\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* Nimrim|strong=\"H5249\"* will|strong=\"H1961\"* be|strong=\"H1961\"* desolate|strong=\"H4923\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* grass|strong=\"H2682\"* has|strong=\"H1961\"* withered|strong=\"H3001\"* away|strong=\"H3615\"*, the|strong=\"H3588\"* tender|strong=\"H1877\"* grass|strong=\"H2682\"* fails|strong=\"H3615\"*, there|strong=\"H1961\"* is|strong=\"H1961\"* no|strong=\"H3808\"* green|strong=\"H3418\"* thing|strong=\"H3418\"*." + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"H3651\"* they|strong=\"H3651\"* will|strong=\"H6213\"* carry|strong=\"H5375\"* away|strong=\"H5375\"* the|strong=\"H5921\"* abundance|strong=\"H3502\"* they|strong=\"H3651\"* have|strong=\"H5375\"* gotten|strong=\"H6213\"*, and|strong=\"H6213\"* that|strong=\"H3651\"* which|strong=\"H5158\"* they|strong=\"H3651\"* have|strong=\"H5375\"* stored|strong=\"H6486\"* up|strong=\"H5375\"*, over|strong=\"H5921\"* the|strong=\"H5921\"* brook|strong=\"H5158\"* of|strong=\"H5921\"* the|strong=\"H5921\"* willows|strong=\"H6155\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* cry|strong=\"H2201\"* has|strong=\"H3588\"* gone|strong=\"H5362\"* around|strong=\"H5362\"* the|strong=\"H3588\"* borders|strong=\"H1366\"* of|strong=\"H1366\"* Moab|strong=\"H4124\"*, its|strong=\"H3588\"* wailing|strong=\"H3215\"* to|strong=\"H5704\"* Eglaim, and|strong=\"H4124\"* its|strong=\"H3588\"* wailing|strong=\"H3215\"* to|strong=\"H5704\"* Beer Elim." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* Dimon|strong=\"H1775\"* are|strong=\"H4325\"* full|strong=\"H4390\"* of|strong=\"H4325\"* blood|strong=\"H1818\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H4325\"* bring|strong=\"H7896\"* yet|strong=\"H3588\"* more|strong=\"H3254\"* on|strong=\"H5921\"* Dimon|strong=\"H1775\"*, a|strong=\"H3068\"* lion on|strong=\"H5921\"* those|strong=\"H5921\"* of|strong=\"H4325\"* Moab|strong=\"H4124\"* who|strong=\"H6413\"* escape|strong=\"H6413\"*, and|strong=\"H1818\"* on|strong=\"H5921\"* the|strong=\"H5921\"* remnant|strong=\"H7611\"* of|strong=\"H4325\"* the|strong=\"H5921\"* land." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Send|strong=\"H7971\"* the|strong=\"H7971\"* lambs|strong=\"H3733\"* for|strong=\"H7971\"* the|strong=\"H7971\"* ruler|strong=\"H4910\"* of|strong=\"H1323\"* the|strong=\"H7971\"* land from|strong=\"H7971\"* Selah|strong=\"H5554\"* to|strong=\"H7971\"* the|strong=\"H7971\"* wilderness|strong=\"H4057\"*, to|strong=\"H7971\"* the|strong=\"H7971\"* mountain|strong=\"H2022\"* of|strong=\"H1323\"* the|strong=\"H7971\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zion|strong=\"H6726\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"H7971\"* it|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* that|strong=\"H1961\"* as|strong=\"H1961\"* wandering|strong=\"H5074\"* birds|strong=\"H5775\"*, as|strong=\"H1961\"* a|strong=\"H3068\"* scattered|strong=\"H7971\"* nest|strong=\"H7064\"*, so|strong=\"H7971\"* will|strong=\"H1961\"* the|strong=\"H7971\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Moab|strong=\"H4124\"* be|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H7971\"* fords|strong=\"H4569\"* of|strong=\"H1323\"* the|strong=\"H7971\"* Arnon." + }, + { + "verseNum": 3, + "text": "Give|strong=\"H6213\"* counsel|strong=\"H6098\"*! Execute|strong=\"H6213\"* justice! Make|strong=\"H6213\"* your|strong=\"H6213\"* shade|strong=\"H6738\"* like|strong=\"H6213\"* the|strong=\"H6213\"* night|strong=\"H3915\"* in|strong=\"H6213\"* the|strong=\"H6213\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H6213\"* noonday|strong=\"H6672\"*! Hide|strong=\"H5641\"* the|strong=\"H6213\"* outcasts|strong=\"H5080\"*! Don’t betray|strong=\"H1540\"* the|strong=\"H6213\"* fugitive|strong=\"H5074\"*!" + }, + { + "verseNum": 4, + "text": "Let my|strong=\"H3615\"* outcasts|strong=\"H5080\"* dwell|strong=\"H1481\"* with|strong=\"H6440\"* you|strong=\"H3588\"*! As|strong=\"H3588\"* for|strong=\"H3588\"* Moab|strong=\"H4124\"*, be|strong=\"H1933\"* a|strong=\"H3068\"* hiding|strong=\"H5643\"* place|strong=\"H5643\"* for|strong=\"H3588\"* him|strong=\"H6440\"* from|strong=\"H4480\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* destroyer|strong=\"H7703\"*. For|strong=\"H3588\"* the|strong=\"H6440\"* extortionist is|strong=\"H4124\"* brought|strong=\"H3615\"* to|strong=\"H6440\"* nothing. Destruction|strong=\"H7701\"* ceases. The|strong=\"H6440\"* oppressors|strong=\"H7429\"* are|strong=\"H6440\"* consumed|strong=\"H3615\"* out|strong=\"H4480\"* of|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H6440\"*." + }, + { + "verseNum": 5, + "text": "A|strong=\"H3068\"* throne|strong=\"H3678\"* will|strong=\"H2617\"* be|strong=\"H1732\"* established|strong=\"H3559\"* in|strong=\"H3427\"* loving kindness|strong=\"H2617\"*. One will|strong=\"H2617\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* it|strong=\"H5921\"* in|strong=\"H3427\"* truth, in|strong=\"H3427\"* the|strong=\"H5921\"* tent of|strong=\"H3427\"* David|strong=\"H1732\"*, judging|strong=\"H8199\"*, seeking|strong=\"H1875\"* justice|strong=\"H4941\"*, and|strong=\"H4941\"* swift to|strong=\"H5921\"* do righteousness|strong=\"H6664\"*." + }, + { + "verseNum": 6, + "text": "We|strong=\"H8085\"* have|strong=\"H3808\"* heard|strong=\"H8085\"* of|strong=\"H1347\"* the|strong=\"H8085\"* pride|strong=\"H1347\"* of|strong=\"H1347\"* Moab|strong=\"H4124\"*, that|strong=\"H8085\"* he|strong=\"H3651\"* is|strong=\"H3651\"* very|strong=\"H3966\"* proud|strong=\"H1346\"*; even|strong=\"H3651\"* of|strong=\"H1347\"* his|strong=\"H8085\"* arrogance|strong=\"H1346\"*, his|strong=\"H8085\"* pride|strong=\"H1347\"*, and|strong=\"H8085\"* his|strong=\"H8085\"* wrath|strong=\"H5678\"*. His|strong=\"H8085\"* boastings are|strong=\"H3808\"* nothing|strong=\"H3808\"*." + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"H3651\"* Moab|strong=\"H4124\"* will|strong=\"H4124\"* wail|strong=\"H3213\"* for|strong=\"H3605\"* Moab|strong=\"H4124\"*. Everyone|strong=\"H3605\"* will|strong=\"H4124\"* wail|strong=\"H3213\"*. You|strong=\"H3605\"* will|strong=\"H4124\"* mourn|strong=\"H1897\"* for|strong=\"H3605\"* the|strong=\"H3605\"* raisin cakes of|strong=\"H3605\"* Kir Hareseth, utterly stricken|strong=\"H5218\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* fields|strong=\"H7709\"* of|strong=\"H4057\"* Heshbon|strong=\"H2809\"* languish with|strong=\"H3220\"* the|strong=\"H3588\"* vine|strong=\"H1612\"* of|strong=\"H4057\"* Sibmah|strong=\"H7643\"*. The|strong=\"H3588\"* lords|strong=\"H1167\"* of|strong=\"H4057\"* the|strong=\"H3588\"* nations|strong=\"H1471\"* have|strong=\"H1471\"* broken|strong=\"H5674\"* down|strong=\"H1986\"* its|strong=\"H3220\"* choice|strong=\"H8291\"* branches|strong=\"H7976\"*, which|strong=\"H1471\"* reached|strong=\"H5060\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Jazer|strong=\"H3270\"*, which|strong=\"H1471\"* wandered|strong=\"H8582\"* into|strong=\"H3220\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"*. Its|strong=\"H3220\"* shoots were|strong=\"H1471\"* spread|strong=\"H5203\"* abroad|strong=\"H5203\"*. They|strong=\"H3588\"* passed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3588\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H3588\"* will|strong=\"H5307\"* weep|strong=\"H1058\"* with|strong=\"H5921\"* the|strong=\"H5921\"* weeping|strong=\"H1065\"* of|strong=\"H5921\"* Jazer|strong=\"H3270\"* for|strong=\"H3588\"* the|strong=\"H5921\"* vine|strong=\"H1612\"* of|strong=\"H5921\"* Sibmah|strong=\"H7643\"*. I|strong=\"H3588\"* will|strong=\"H5307\"* water|strong=\"H7301\"* you|strong=\"H3588\"* with|strong=\"H5921\"* my|strong=\"H5921\"* tears|strong=\"H1832\"*, Heshbon|strong=\"H2809\"*, and|strong=\"H5307\"* Elealeh: for|strong=\"H3588\"* on|strong=\"H5921\"* your|strong=\"H5921\"* summer|strong=\"H7019\"* fruits|strong=\"H7019\"* and|strong=\"H5307\"* on|strong=\"H5921\"* your|strong=\"H5921\"* harvest|strong=\"H7105\"* the|strong=\"H5921\"* battle shout|strong=\"H1959\"* has|strong=\"H3588\"* fallen|strong=\"H5307\"*." + }, + { + "verseNum": 10, + "text": "Gladness|strong=\"H8057\"* is|strong=\"H3808\"* taken away|strong=\"H4480\"*, and|strong=\"H8057\"* joy|strong=\"H8057\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* fruitful|strong=\"H3759\"* field|strong=\"H3759\"*; and|strong=\"H8057\"* in|strong=\"H3808\"* the|strong=\"H4480\"* vineyards|strong=\"H3754\"* there|strong=\"H4480\"* will|strong=\"H3808\"* be|strong=\"H3808\"* no|strong=\"H3808\"* singing|strong=\"H7442\"*, neither|strong=\"H3808\"* joyful|strong=\"H7442\"* noise|strong=\"H7321\"*. Nobody|strong=\"H3808\"* will|strong=\"H3808\"* tread|strong=\"H1869\"* out|strong=\"H4480\"* wine|strong=\"H3196\"* in|strong=\"H3808\"* the|strong=\"H4480\"* presses|strong=\"H3342\"*. I|strong=\"H3808\"* have|strong=\"H3808\"* made|strong=\"H7673\"* the|strong=\"H4480\"* shouting|strong=\"H1959\"* stop|strong=\"H7673\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H3651\"* my|strong=\"H5921\"* heart|strong=\"H4578\"* sounds like|strong=\"H3651\"* a|strong=\"H3068\"* harp|strong=\"H3658\"* for|strong=\"H5921\"* Moab|strong=\"H4124\"*, and|strong=\"H3658\"* my|strong=\"H5921\"* inward|strong=\"H7130\"* parts|strong=\"H7130\"* for|strong=\"H5921\"* Kir Heres." + }, + { + "verseNum": 12, + "text": "It|strong=\"H5921\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H3588\"* when|strong=\"H3588\"* Moab|strong=\"H4124\"* presents|strong=\"H7200\"* himself|strong=\"H3808\"*, when|strong=\"H3588\"* he|strong=\"H3588\"* wearies|strong=\"H3811\"* himself|strong=\"H3808\"* on|strong=\"H5921\"* the|strong=\"H5921\"* high|strong=\"H1116\"* place|strong=\"H1116\"*, and|strong=\"H7200\"* comes|strong=\"H1961\"* to|strong=\"H3201\"* his|strong=\"H5921\"* sanctuary|strong=\"H4720\"* to|strong=\"H3201\"* pray|strong=\"H6419\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* prevail|strong=\"H3201\"*." + }, + { + "verseNum": 13, + "text": "This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3068\"* word|strong=\"H1697\"* that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* concerning|strong=\"H1697\"* Moab|strong=\"H4124\"* in|strong=\"H3068\"* time past." + }, + { + "verseNum": 14, + "text": "But|strong=\"H3808\"* now|strong=\"H6258\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*, saying|strong=\"H1696\"*, “Within three|strong=\"H7969\"* years|strong=\"H8141\"*, as|strong=\"H3068\"* a|strong=\"H3068\"* worker|strong=\"H7916\"* bound by|strong=\"H8141\"* contract would|strong=\"H3068\"* count|strong=\"H8141\"* them|strong=\"H3068\"*, the|strong=\"H3605\"* glory|strong=\"H3519\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* brought|strong=\"H3068\"* into|strong=\"H3519\"* contempt, with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* great|strong=\"H7227\"* multitude|strong=\"H1995\"*; and|strong=\"H3068\"* the|strong=\"H3605\"* remnant|strong=\"H7605\"* will|strong=\"H3068\"* be|strong=\"H3808\"* very|strong=\"H4213\"* small|strong=\"H4592\"* and|strong=\"H3068\"* feeble|strong=\"H3808\"*.”" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5493\"* burden|strong=\"H4853\"* of|strong=\"H5892\"* Damascus|strong=\"H1834\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5800\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Aroer|strong=\"H6177\"* are|strong=\"H5892\"* forsaken|strong=\"H5800\"*. They|strong=\"H5892\"* will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H5892\"* flocks|strong=\"H5739\"*, which|strong=\"H5892\"* shall|strong=\"H5892\"* lie|strong=\"H7257\"* down|strong=\"H7257\"*, and|strong=\"H5892\"* no|strong=\"H1961\"* one|strong=\"H1961\"* shall|strong=\"H5892\"* make|strong=\"H2729\"* them|strong=\"H1961\"* afraid|strong=\"H2729\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H5002\"* fortress|strong=\"H4013\"* shall|strong=\"H3068\"* cease|strong=\"H7673\"* from|strong=\"H3478\"* Ephraim, and|strong=\"H1121\"* the|strong=\"H5002\"* kingdom|strong=\"H4467\"* from|strong=\"H3478\"* Damascus|strong=\"H1834\"*, and|strong=\"H1121\"* the|strong=\"H5002\"* remnant|strong=\"H7605\"* of|strong=\"H1121\"* Syria. They|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H5002\"* glory|strong=\"H3519\"* of|strong=\"H1121\"* the|strong=\"H5002\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 4, + "text": "“It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* the|strong=\"H3117\"* glory|strong=\"H3519\"* of|strong=\"H3117\"* Jacob|strong=\"H3290\"* will|strong=\"H1961\"* be|strong=\"H1961\"* made|strong=\"H1961\"* thin|strong=\"H1809\"*, and|strong=\"H3117\"* the|strong=\"H3117\"* fatness|strong=\"H4924\"* of|strong=\"H3117\"* his|strong=\"H1961\"* flesh|strong=\"H1320\"* will|strong=\"H1961\"* become|strong=\"H1961\"* lean|strong=\"H7329\"*." + }, + { + "verseNum": 5, + "text": "It|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* when|strong=\"H1961\"* the|strong=\"H1961\"* harvester gathers the|strong=\"H1961\"* wheat, and|strong=\"H1961\"* his|strong=\"H1961\"* arm|strong=\"H2220\"* reaps the|strong=\"H1961\"* grain|strong=\"H7054\"*. Yes, it|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* when|strong=\"H1961\"* one|strong=\"H1961\"* gleans|strong=\"H7114\"* grain|strong=\"H7054\"* in|strong=\"H1961\"* the|strong=\"H1961\"* valley|strong=\"H6010\"* of|strong=\"H6010\"* Rephaim|strong=\"H7497\"*." + }, + { + "verseNum": 6, + "text": "Yet|strong=\"H3068\"* gleanings|strong=\"H5955\"* will|strong=\"H3068\"* be|strong=\"H3068\"* left|strong=\"H7604\"* there|strong=\"H3068\"*, like|strong=\"H3478\"* the|strong=\"H5002\"* shaking|strong=\"H5363\"* of|strong=\"H3068\"* an|strong=\"H3068\"* olive|strong=\"H2132\"* tree|strong=\"H2132\"*, two|strong=\"H8147\"* or|strong=\"H7218\"* three|strong=\"H7969\"* olives|strong=\"H2132\"* in|strong=\"H3478\"* the|strong=\"H5002\"* top|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H5002\"* uppermost bough, four|strong=\"H7969\"* or|strong=\"H7218\"* five|strong=\"H2568\"* in|strong=\"H3478\"* the|strong=\"H5002\"* outermost branches|strong=\"H5585\"* of|strong=\"H3068\"* a|strong=\"H3068\"* fruitful|strong=\"H6509\"* tree|strong=\"H2132\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5002\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H5921\"* that|strong=\"H7200\"* day|strong=\"H3117\"*, people|strong=\"H1931\"* will|strong=\"H3478\"* look|strong=\"H7200\"* to|strong=\"H3478\"* their|strong=\"H7200\"* Maker|strong=\"H6213\"*, and|strong=\"H3478\"* their|strong=\"H7200\"* eyes|strong=\"H5869\"* will|strong=\"H3478\"* have|strong=\"H5869\"* respect|strong=\"H7200\"* for|strong=\"H5921\"* the|strong=\"H5921\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H3808\"* will|strong=\"H3027\"* not|strong=\"H3808\"* look|strong=\"H7200\"* to|strong=\"H6213\"* the|strong=\"H7200\"* altars|strong=\"H4196\"*, the|strong=\"H7200\"* work|strong=\"H4639\"* of|strong=\"H3027\"* their|strong=\"H7200\"* hands|strong=\"H3027\"*; neither|strong=\"H3808\"* shall|strong=\"H3027\"* they|strong=\"H3808\"* respect|strong=\"H7200\"* that|strong=\"H7200\"* which|strong=\"H4196\"* their|strong=\"H7200\"* fingers have|strong=\"H3027\"* made|strong=\"H6213\"*, either|strong=\"H3808\"* the|strong=\"H7200\"* Asherah poles or|strong=\"H3808\"* the|strong=\"H7200\"* incense|strong=\"H2553\"* altars|strong=\"H4196\"*." + }, + { + "verseNum": 9, + "text": "In|strong=\"H3478\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, their|strong=\"H6440\"* strong|strong=\"H4581\"* cities|strong=\"H5892\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H6440\"* forsaken|strong=\"H5800\"* places in|strong=\"H3478\"* the|strong=\"H6440\"* woods and|strong=\"H1121\"* on|strong=\"H3117\"* the|strong=\"H6440\"* mountain top, which|strong=\"H1931\"* were|strong=\"H3478\"* forsaken|strong=\"H5800\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* it|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* forgotten|strong=\"H7911\"* the|strong=\"H5921\"* God|strong=\"H6697\"* of|strong=\"H5921\"* your|strong=\"H5921\"* salvation|strong=\"H3468\"*, and|strong=\"H6697\"* have|strong=\"H3588\"* not|strong=\"H3808\"* remembered|strong=\"H2142\"* the|strong=\"H5921\"* rock|strong=\"H6697\"* of|strong=\"H5921\"* your|strong=\"H5921\"* strength|strong=\"H4581\"*. Therefore|strong=\"H3651\"* you|strong=\"H3588\"* plant|strong=\"H5193\"* pleasant|strong=\"H5282\"* plants|strong=\"H5194\"*, and|strong=\"H6697\"* set|strong=\"H2232\"* out|strong=\"H5921\"* foreign|strong=\"H2114\"* seedlings." + }, + { + "verseNum": 11, + "text": "In|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H2470\"* planting|strong=\"H2233\"*, you|strong=\"H3117\"* hedge it|strong=\"H1242\"* in|strong=\"H3117\"*. In|strong=\"H3117\"* the|strong=\"H3117\"* morning|strong=\"H1242\"*, you|strong=\"H3117\"* make|strong=\"H2470\"* your|strong=\"H2470\"* seed|strong=\"H2233\"* blossom|strong=\"H6524\"*, but|strong=\"H3117\"* the|strong=\"H3117\"* harvest|strong=\"H7105\"* flees away|strong=\"H5067\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* grief|strong=\"H2470\"* and|strong=\"H3117\"* of|strong=\"H3117\"* desperate sorrow|strong=\"H3511\"*." + }, + { + "verseNum": 12, + "text": "Ah|strong=\"H1945\"*, the|strong=\"H5971\"* uproar|strong=\"H1993\"* of|strong=\"H4325\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"* who|strong=\"H5971\"* roar|strong=\"H1993\"* like|strong=\"H1993\"* the|strong=\"H5971\"* roaring|strong=\"H7588\"* of|strong=\"H4325\"* the|strong=\"H5971\"* seas|strong=\"H3220\"*; and|strong=\"H5971\"* the|strong=\"H5971\"* rushing|strong=\"H7588\"* of|strong=\"H4325\"* nations|strong=\"H5971\"* that|strong=\"H5971\"* rush|strong=\"H7582\"* like|strong=\"H1993\"* the|strong=\"H5971\"* rushing|strong=\"H7588\"* of|strong=\"H4325\"* mighty|strong=\"H3524\"* waters|strong=\"H4325\"*!" + }, + { + "verseNum": 13, + "text": "The|strong=\"H6440\"* nations|strong=\"H3816\"* will|strong=\"H7307\"* rush|strong=\"H7582\"* like|strong=\"H7307\"* the|strong=\"H6440\"* rushing|strong=\"H7588\"* of|strong=\"H2022\"* many|strong=\"H7227\"* waters|strong=\"H4325\"*, but|strong=\"H4325\"* he|strong=\"H6440\"* will|strong=\"H7307\"* rebuke|strong=\"H1605\"* them|strong=\"H6440\"*, and|strong=\"H6440\"* they|strong=\"H6440\"* will|strong=\"H7307\"* flee|strong=\"H5127\"* far|strong=\"H4801\"* off|strong=\"H4801\"*, and|strong=\"H6440\"* will|strong=\"H7307\"* be|strong=\"H3816\"* chased|strong=\"H7291\"* like|strong=\"H7307\"* the|strong=\"H6440\"* chaff|strong=\"H4671\"* of|strong=\"H2022\"* the|strong=\"H6440\"* mountains|strong=\"H2022\"* before|strong=\"H6440\"* the|strong=\"H6440\"* wind|strong=\"H7307\"*, and|strong=\"H6440\"* like|strong=\"H7307\"* the|strong=\"H6440\"* whirling|strong=\"H1534\"* dust|strong=\"H1534\"* before|strong=\"H6440\"* the|strong=\"H6440\"* storm|strong=\"H5492\"*." + }, + { + "verseNum": 14, + "text": "At|strong=\"H6153\"* evening|strong=\"H6153\"*, behold|strong=\"H2009\"*, terror|strong=\"H1091\"*! Before|strong=\"H2962\"* the|strong=\"H2009\"* morning|strong=\"H1242\"*, they|strong=\"H2962\"* are|strong=\"H1091\"* no|strong=\"H2962\"* more. This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H2009\"* portion|strong=\"H2506\"* of|strong=\"H6256\"* those|strong=\"H2088\"* who|strong=\"H2088\"* plunder|strong=\"H8154\"* us, and|strong=\"H1242\"* the|strong=\"H2009\"* lot|strong=\"H1486\"* of|strong=\"H6256\"* those|strong=\"H2088\"* who|strong=\"H2088\"* rob|strong=\"H8154\"* us." + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Ah|strong=\"H1945\"*, the|strong=\"H5676\"* land|strong=\"H5676\"* of|strong=\"H5104\"* the|strong=\"H5676\"* rustling of|strong=\"H5104\"* wings|strong=\"H3671\"*, which is|strong=\"H5104\"* beyond|strong=\"H5676\"* the|strong=\"H5676\"* rivers|strong=\"H5104\"* of|strong=\"H5104\"* Ethiopia|strong=\"H3568\"*;" + }, + { + "verseNum": 2, + "text": "that|strong=\"H5971\"* sends|strong=\"H7971\"* ambassadors|strong=\"H4397\"* by|strong=\"H5921\"* the|strong=\"H6440\"* sea|strong=\"H3220\"*, even|strong=\"H5921\"* in|strong=\"H5921\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* papyrus|strong=\"H1573\"* on|strong=\"H5921\"* the|strong=\"H6440\"* waters|strong=\"H4325\"*, saying, “Go|strong=\"H3212\"*, you|strong=\"H6440\"* swift|strong=\"H7031\"* messengers|strong=\"H4397\"*, to|strong=\"H3212\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* tall|strong=\"H4900\"* and|strong=\"H7971\"* smooth, to|strong=\"H3212\"* a|strong=\"H3068\"* people|strong=\"H5971\"* awesome|strong=\"H3372\"* from|strong=\"H4480\"* their|strong=\"H6440\"* beginning onward|strong=\"H1973\"*, a|strong=\"H3068\"* nation|strong=\"H1471\"* that|strong=\"H5971\"* measures out|strong=\"H7971\"* and|strong=\"H7971\"* treads down|strong=\"H7971\"*, whose|strong=\"H1471\"* land|strong=\"H6440\"* the|strong=\"H6440\"* rivers|strong=\"H5104\"* divide!”" + }, + { + "verseNum": 3, + "text": "All|strong=\"H3605\"* you|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3605\"* world|strong=\"H8398\"*, and|strong=\"H8085\"* you|strong=\"H3605\"* dwellers|strong=\"H7931\"* on|strong=\"H7200\"* the|strong=\"H3605\"* earth, when|strong=\"H7200\"* a|strong=\"H3068\"* banner|strong=\"H5251\"* is|strong=\"H3605\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* on|strong=\"H7200\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*, look|strong=\"H7200\"*! When|strong=\"H7200\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"* is|strong=\"H3605\"* blown|strong=\"H8628\"*, listen|strong=\"H8085\"*!" + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H5921\"*, “I|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* still|strong=\"H8252\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* see|strong=\"H5027\"* in|strong=\"H5921\"* my|strong=\"H3068\"* dwelling|strong=\"H4349\"* place|strong=\"H4349\"*, like|strong=\"H3541\"* clear|strong=\"H6703\"* heat|strong=\"H2527\"* in|strong=\"H5921\"* sunshine, like|strong=\"H3541\"* a|strong=\"H3068\"* cloud|strong=\"H5645\"* of|strong=\"H3068\"* dew|strong=\"H2919\"* in|strong=\"H5921\"* the|strong=\"H5921\"* heat|strong=\"H2527\"* of|strong=\"H3068\"* harvest|strong=\"H7105\"*.”" + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* before|strong=\"H6440\"* the|strong=\"H6440\"* harvest|strong=\"H7105\"*, when|strong=\"H3588\"* the|strong=\"H6440\"* blossom|strong=\"H6525\"* is|strong=\"H1961\"* over|strong=\"H6440\"*, and|strong=\"H6440\"* the|strong=\"H6440\"* flower|strong=\"H6525\"* becomes|strong=\"H1961\"* a|strong=\"H3068\"* ripening|strong=\"H1580\"* grape|strong=\"H1155\"*, he|strong=\"H3588\"* will|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H6440\"* sprigs|strong=\"H2150\"* with|strong=\"H6440\"* pruning|strong=\"H4211\"* hooks|strong=\"H4211\"*, and|strong=\"H6440\"* he|strong=\"H3588\"* will|strong=\"H1961\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* and|strong=\"H6440\"* take|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H6440\"* spreading|strong=\"H5189\"* branches|strong=\"H5189\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H5921\"* will|strong=\"H2022\"* be|strong=\"H2022\"* left|strong=\"H5800\"* together|strong=\"H3162\"* for|strong=\"H5921\"* the|strong=\"H3605\"* ravenous|strong=\"H5861\"* birds|strong=\"H5861\"* of|strong=\"H2022\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*, and|strong=\"H2022\"* for|strong=\"H5921\"* the|strong=\"H3605\"* animals of|strong=\"H2022\"* the|strong=\"H3605\"* earth. The|strong=\"H3605\"* ravenous|strong=\"H5861\"* birds|strong=\"H5861\"* will|strong=\"H2022\"* eat them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* summer|strong=\"H6972\"*, and|strong=\"H2022\"* all|strong=\"H3605\"* the|strong=\"H3605\"* animals of|strong=\"H2022\"* the|strong=\"H3605\"* earth will|strong=\"H2022\"* eat them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* winter|strong=\"H2778\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H3068\"* that|strong=\"H5971\"* time|strong=\"H6256\"*, a|strong=\"H3068\"* present|strong=\"H7862\"* will|strong=\"H3068\"* be|strong=\"H3068\"* brought|strong=\"H2986\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* from|strong=\"H4480\"* a|strong=\"H3068\"* people|strong=\"H5971\"* tall|strong=\"H4900\"* and|strong=\"H3068\"* smooth, even|strong=\"H3068\"* from|strong=\"H4480\"* a|strong=\"H3068\"* people|strong=\"H5971\"* awesome|strong=\"H3372\"* from|strong=\"H4480\"* their|strong=\"H3068\"* beginning onward|strong=\"H1973\"*, a|strong=\"H3068\"* nation|strong=\"H1471\"* that|strong=\"H5971\"* measures out|strong=\"H4480\"* and|strong=\"H3068\"* treads down|strong=\"H4001\"*, whose|strong=\"H1471\"* land|strong=\"H4725\"* the|strong=\"H3068\"* rivers|strong=\"H5104\"* divide, to|strong=\"H3068\"* the|strong=\"H3068\"* place|strong=\"H4725\"* of|strong=\"H3068\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, Mount|strong=\"H2022\"* Zion|strong=\"H6726\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H6440\"* burden|strong=\"H4853\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H4714\"* will|strong=\"H4714\"* stir up|strong=\"H5526\"* the|strong=\"H5526\"* Egyptians|strong=\"H4714\"* against|strong=\"H3898\"* the|strong=\"H5526\"* Egyptians|strong=\"H4714\"*, and|strong=\"H5892\"* they|strong=\"H5892\"* will|strong=\"H4714\"* fight|strong=\"H3898\"* everyone against|strong=\"H3898\"* his|strong=\"H5526\"* brother|strong=\"H7453\"*, and|strong=\"H5892\"* everyone against|strong=\"H3898\"* his|strong=\"H5526\"* neighbor|strong=\"H7453\"*; city|strong=\"H5892\"* against|strong=\"H3898\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* kingdom|strong=\"H4467\"* against|strong=\"H3898\"* kingdom|strong=\"H4467\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H1875\"* spirit|strong=\"H7307\"* of|strong=\"H7307\"* the|strong=\"H1875\"* Egyptians|strong=\"H4714\"* will|strong=\"H4714\"* fail|strong=\"H1238\"* within|strong=\"H7130\"* them|strong=\"H7307\"*. I|strong=\"H4714\"* will|strong=\"H4714\"* destroy|strong=\"H1104\"* their|strong=\"H7130\"* counsel|strong=\"H6098\"*. They|strong=\"H7130\"* will|strong=\"H4714\"* seek|strong=\"H1875\"* the|strong=\"H1875\"* idols, the|strong=\"H1875\"* charmers, those who|strong=\"H3049\"* have|strong=\"H4714\"* familiar spirits|strong=\"H7307\"*, and|strong=\"H4714\"* the|strong=\"H1875\"* wizards|strong=\"H3049\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H4714\"* will|strong=\"H3068\"* give|strong=\"H7186\"* over|strong=\"H3027\"* the|strong=\"H5002\"* Egyptians|strong=\"H4714\"* into|strong=\"H4714\"* the|strong=\"H5002\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* a|strong=\"H3068\"* cruel|strong=\"H7186\"* lord|strong=\"H3068\"*. A|strong=\"H3068\"* fierce|strong=\"H5794\"* king|strong=\"H4428\"* will|strong=\"H3068\"* rule|strong=\"H4910\"* over|strong=\"H3027\"* them|strong=\"H3027\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3068\"*, Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3001\"* waters|strong=\"H4325\"* will|strong=\"H4325\"* fail|strong=\"H5405\"* from|strong=\"H4325\"* the|strong=\"H3001\"* sea|strong=\"H3220\"*, and|strong=\"H4325\"* the|strong=\"H3001\"* river|strong=\"H5104\"* will|strong=\"H4325\"* be|strong=\"H3220\"* wasted|strong=\"H2717\"* and|strong=\"H4325\"* become|strong=\"H2717\"* dry|strong=\"H3001\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H2717\"* rivers|strong=\"H5104\"* will|strong=\"H2975\"* become|strong=\"H2717\"* foul. The|strong=\"H2717\"* streams|strong=\"H5104\"* of|strong=\"H5104\"* Egypt|strong=\"H4693\"* will|strong=\"H2975\"* be diminished and|strong=\"H7070\"* dried|strong=\"H2717\"* up|strong=\"H2717\"*. The|strong=\"H2717\"* reeds|strong=\"H7070\"* and|strong=\"H7070\"* flags|strong=\"H5488\"* will|strong=\"H2975\"* wither|strong=\"H2717\"* away|strong=\"H2186\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* meadows by|strong=\"H5921\"* the|strong=\"H3605\"* Nile|strong=\"H2975\"*, by|strong=\"H5921\"* the|strong=\"H3605\"* brink of|strong=\"H6310\"* the|strong=\"H3605\"* Nile|strong=\"H2975\"*, and|strong=\"H6310\"* all|strong=\"H3605\"* the|strong=\"H3605\"* sown|strong=\"H4218\"* fields|strong=\"H4218\"* of|strong=\"H6310\"* the|strong=\"H3605\"* Nile|strong=\"H2975\"*, will|strong=\"H2975\"* become|strong=\"H3001\"* dry|strong=\"H3001\"*, be|strong=\"H6310\"* driven|strong=\"H5086\"* away|strong=\"H5086\"*, and|strong=\"H6310\"* be|strong=\"H6310\"* no|strong=\"H3605\"* more|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3605\"* fishermen will|strong=\"H4325\"* lament, and|strong=\"H6440\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* fish in|strong=\"H5921\"* the|strong=\"H3605\"* Nile|strong=\"H2975\"* will|strong=\"H4325\"* mourn|strong=\"H5921\"*, and|strong=\"H6440\"* those|strong=\"H3605\"* who|strong=\"H3605\"* spread|strong=\"H6566\"* nets|strong=\"H4365\"* on|strong=\"H5921\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* will|strong=\"H4325\"* languish." + }, + { + "verseNum": 9, + "text": "Moreover those who work|strong=\"H5647\"* in|strong=\"H5647\"* combed|strong=\"H8305\"* flax|strong=\"H6593\"*, and|strong=\"H5647\"* those who weave white cloth, will|strong=\"H5647\"* be|strong=\"H5647\"* confounded." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3605\"* pillars|strong=\"H8356\"* will|strong=\"H1961\"* be|strong=\"H1961\"* broken|strong=\"H1792\"* in|strong=\"H6213\"* pieces|strong=\"H1792\"*. All|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* work|strong=\"H6213\"* for|strong=\"H6213\"* hire will|strong=\"H1961\"* be|strong=\"H1961\"* grieved in|strong=\"H6213\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H1197\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* Zoan|strong=\"H6814\"* are|strong=\"H1121\"* utterly|strong=\"H1197\"* foolish. The|strong=\"H1197\"* counsel|strong=\"H6098\"* of|strong=\"H1121\"* the|strong=\"H1197\"* wisest|strong=\"H2450\"* counselors of|strong=\"H1121\"* Pharaoh|strong=\"H6547\"* has|strong=\"H4428\"* become|strong=\"H1197\"* stupid|strong=\"H1197\"*. How do you|strong=\"H4428\"* say to|strong=\"H1121\"* Pharaoh|strong=\"H6547\"*, “I|strong=\"H1121\"* am the|strong=\"H1197\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1197\"* wise|strong=\"H2450\"*, the|strong=\"H1197\"* son|strong=\"H1121\"* of|strong=\"H1121\"* ancient|strong=\"H6924\"* kings|strong=\"H4428\"*”?" + }, + { + "verseNum": 12, + "text": "Where|strong=\"H4100\"* then|strong=\"H3045\"* are|strong=\"H4100\"* your|strong=\"H3068\"* wise|strong=\"H2450\"* men|strong=\"H2450\"*? Let|strong=\"H4994\"* them|strong=\"H5921\"* tell|strong=\"H5046\"* you|strong=\"H5921\"* now|strong=\"H4994\"*; and|strong=\"H3068\"* let|strong=\"H4994\"* them|strong=\"H5921\"* know|strong=\"H3045\"* what|strong=\"H4100\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* has|strong=\"H3068\"* purposed|strong=\"H3289\"* concerning|strong=\"H5921\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H7626\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Zoan|strong=\"H6814\"* have|strong=\"H8269\"* become|strong=\"H2973\"* fools|strong=\"H2973\"*. The|strong=\"H7626\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Memphis|strong=\"H5297\"* are|strong=\"H4714\"* deceived|strong=\"H5377\"*. They have|strong=\"H8269\"* caused Egypt|strong=\"H4714\"* to|strong=\"H4714\"* go|strong=\"H8582\"* astray|strong=\"H8582\"*, those who|strong=\"H8269\"* are|strong=\"H4714\"* the|strong=\"H7626\"* cornerstone|strong=\"H6438\"* of|strong=\"H8269\"* her|strong=\"H8269\"* tribes|strong=\"H7626\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* mixed|strong=\"H4537\"* a|strong=\"H3068\"* spirit|strong=\"H7307\"* of|strong=\"H3068\"* perverseness in|strong=\"H3068\"* the|strong=\"H3605\"* middle|strong=\"H7130\"* of|strong=\"H3068\"* her|strong=\"H3605\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* have|strong=\"H3068\"* caused Egypt|strong=\"H4714\"* to|strong=\"H3068\"* go|strong=\"H8582\"* astray|strong=\"H8582\"* in|strong=\"H3068\"* all|strong=\"H3605\"* of|strong=\"H3068\"* its|strong=\"H3605\"* works|strong=\"H4639\"*, like|strong=\"H7307\"* a|strong=\"H3068\"* drunken|strong=\"H7910\"* man|strong=\"H7910\"* staggers|strong=\"H8582\"* in|strong=\"H3068\"* his|strong=\"H3605\"* vomit|strong=\"H6892\"*." + }, + { + "verseNum": 15, + "text": "Neither|strong=\"H3808\"* shall|strong=\"H4714\"* there|strong=\"H1961\"* be|strong=\"H1961\"* any|strong=\"H6213\"* work|strong=\"H4639\"* for|strong=\"H6213\"* Egypt|strong=\"H4714\"*, which head|strong=\"H7218\"* or|strong=\"H3808\"* tail|strong=\"H2180\"*, palm|strong=\"H3712\"* branch|strong=\"H3712\"* or|strong=\"H3808\"* rush, may|strong=\"H1961\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 16, + "text": "In|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* the|strong=\"H6440\"* Egyptians|strong=\"H4714\"* will|strong=\"H3068\"* be|strong=\"H1961\"* like|strong=\"H1961\"* women. They|strong=\"H3117\"* will|strong=\"H3068\"* tremble|strong=\"H2729\"* and|strong=\"H3068\"* fear|strong=\"H6342\"* because|strong=\"H5921\"* of|strong=\"H3068\"* the|strong=\"H6440\"* shaking|strong=\"H8573\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*’s hand|strong=\"H3027\"*, which|strong=\"H1931\"* he|strong=\"H1931\"* shakes|strong=\"H5130\"* over|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* will|strong=\"H3068\"* become|strong=\"H1961\"* a|strong=\"H3068\"* terror|strong=\"H2283\"* to|strong=\"H3068\"* Egypt|strong=\"H4714\"*. Everyone|strong=\"H3605\"* to|strong=\"H3068\"* whom|strong=\"H6440\"* mention|strong=\"H2142\"* is|strong=\"H3068\"* made|strong=\"H1961\"* of|strong=\"H3068\"* it|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H1961\"* afraid|strong=\"H6342\"*, because|strong=\"H5921\"* of|strong=\"H3068\"* the|strong=\"H3605\"* plans|strong=\"H6098\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, which|strong=\"H1931\"* he|strong=\"H1931\"* determines against|strong=\"H5921\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 18, + "text": "In|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, there|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* five|strong=\"H2568\"* cities|strong=\"H5892\"* in|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"* that|strong=\"H3117\"* speak|strong=\"H1696\"* the|strong=\"H3068\"* language|strong=\"H8193\"* of|strong=\"H3068\"* Canaan|strong=\"H3667\"*, and|strong=\"H3068\"* swear|strong=\"H7650\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*. One|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H1961\"* called “The|strong=\"H3068\"* city|strong=\"H5892\"* of|strong=\"H3068\"* destruction|strong=\"H2041\"*.”" + }, + { + "verseNum": 19, + "text": "In|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, there|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* an|strong=\"H1961\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H8432\"* land|strong=\"H1366\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* pillar|strong=\"H4676\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* at|strong=\"H3068\"* its|strong=\"H1961\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 20, + "text": "It|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* for|strong=\"H3588\"* a|strong=\"H3068\"* sign and|strong=\"H3068\"* for|strong=\"H3588\"* a|strong=\"H3068\"* witness|strong=\"H5707\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* in|strong=\"H3068\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* cry|strong=\"H6817\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* because|strong=\"H3588\"* of|strong=\"H3068\"* oppressors|strong=\"H3905\"*, and|strong=\"H3068\"* he|strong=\"H3588\"* will|strong=\"H3068\"* send|strong=\"H7971\"* them|strong=\"H7971\"* a|strong=\"H3068\"* savior|strong=\"H3467\"* and|strong=\"H3068\"* a|strong=\"H3068\"* defender, and|strong=\"H3068\"* he|strong=\"H3588\"* will|strong=\"H3068\"* deliver|strong=\"H5337\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* known|strong=\"H3045\"* to|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* the|strong=\"H5647\"* Egyptians|strong=\"H4714\"* will|strong=\"H3068\"* know|strong=\"H3045\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* that|strong=\"H3045\"* day|strong=\"H3117\"*. Yes, they|strong=\"H3117\"* will|strong=\"H3068\"* worship|strong=\"H5647\"* with|strong=\"H3068\"* sacrifice|strong=\"H2077\"* and|strong=\"H3068\"* offering|strong=\"H4503\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* vow|strong=\"H5088\"* a|strong=\"H3068\"* vow|strong=\"H5088\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* perform|strong=\"H5647\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5062\"* Egypt|strong=\"H4714\"*, striking|strong=\"H5062\"* and|strong=\"H3068\"* healing|strong=\"H7495\"*. They|strong=\"H3068\"* will|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* he|strong=\"H5704\"* will|strong=\"H3068\"* be|strong=\"H3068\"* entreated|strong=\"H6279\"* by|strong=\"H3068\"* them|strong=\"H7725\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* heal|strong=\"H7495\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 23, + "text": "In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* highway|strong=\"H4546\"* out of|strong=\"H3117\"* Egypt|strong=\"H4714\"* to|strong=\"H1961\"* Assyria, and|strong=\"H3117\"* the|strong=\"H5647\"* Assyrian shall|strong=\"H3117\"* come|strong=\"H1961\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*, and|strong=\"H3117\"* the|strong=\"H5647\"* Egyptian|strong=\"H4714\"* into|strong=\"H4714\"* Assyria; and|strong=\"H3117\"* the|strong=\"H5647\"* Egyptians|strong=\"H4714\"* will|strong=\"H1961\"* worship|strong=\"H5647\"* with|strong=\"H3117\"* the|strong=\"H5647\"* Assyrians." + }, + { + "verseNum": 24, + "text": "In|strong=\"H3478\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, Israel|strong=\"H3478\"* will|strong=\"H1961\"* be|strong=\"H1961\"* the|strong=\"H3117\"* third|strong=\"H7992\"* with|strong=\"H3117\"* Egypt|strong=\"H4714\"* and|strong=\"H3478\"* with|strong=\"H3117\"* Assyria, a|strong=\"H3068\"* blessing|strong=\"H1293\"* within|strong=\"H7130\"* the|strong=\"H3117\"* earth;" + }, + { + "verseNum": 25, + "text": "because|strong=\"H3027\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* has|strong=\"H3068\"* blessed|strong=\"H1288\"* them|strong=\"H3027\"*, saying, “Blessed|strong=\"H1288\"* be|strong=\"H3027\"* Egypt|strong=\"H4714\"* my|strong=\"H3068\"* people|strong=\"H5971\"*, Assyria the|strong=\"H3068\"* work|strong=\"H4639\"* of|strong=\"H3068\"* my|strong=\"H3068\"* hands|strong=\"H3027\"*, and|strong=\"H3478\"* Israel|strong=\"H3478\"* my|strong=\"H3068\"* inheritance|strong=\"H5159\"*.”" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H7971\"* year|strong=\"H8141\"* that|strong=\"H4428\"* Tartan|strong=\"H8661\"* came|strong=\"H4428\"* to|strong=\"H7971\"* Ashdod, when|strong=\"H7971\"* Sargon|strong=\"H5623\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria sent|strong=\"H7971\"* him|strong=\"H7971\"*, and|strong=\"H7971\"* he|strong=\"H8141\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* Ashdod and|strong=\"H7971\"* took|strong=\"H3920\"* it|strong=\"H7971\"*;" + }, + { + "verseNum": 2, + "text": "at|strong=\"H5921\"* that|strong=\"H1931\"* time|strong=\"H6256\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* Isaiah|strong=\"H3470\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz, saying|strong=\"H1696\"*, “Go|strong=\"H1980\"*, and|strong=\"H1121\"* loosen|strong=\"H6605\"* the|strong=\"H5921\"* sackcloth|strong=\"H8242\"* from|strong=\"H5921\"* off|strong=\"H5921\"* your|strong=\"H3068\"* waist|strong=\"H4975\"*, and|strong=\"H1121\"* take|strong=\"H1980\"* your|strong=\"H3068\"* sandals|strong=\"H5275\"* from|strong=\"H5921\"* off|strong=\"H5921\"* your|strong=\"H3068\"* feet|strong=\"H7272\"*.” He|strong=\"H1931\"* did|strong=\"H6213\"* so|strong=\"H3651\"*, walking|strong=\"H1980\"* naked|strong=\"H6174\"* and|strong=\"H1121\"* barefoot|strong=\"H3182\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* said, “As|strong=\"H3068\"* my|strong=\"H3068\"* servant|strong=\"H5650\"* Isaiah|strong=\"H3470\"* has|strong=\"H3068\"* walked|strong=\"H1980\"* naked|strong=\"H6174\"* and|strong=\"H1980\"* barefoot|strong=\"H3182\"* three|strong=\"H7969\"* years|strong=\"H8141\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sign|strong=\"H4159\"* and|strong=\"H1980\"* a|strong=\"H3068\"* wonder|strong=\"H4159\"* concerning|strong=\"H5921\"* Egypt|strong=\"H4714\"* and|strong=\"H1980\"* concerning|strong=\"H5921\"* Ethiopia|strong=\"H3568\"*," + }, + { + "verseNum": 4, + "text": "so|strong=\"H3651\"* the|strong=\"H3651\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria will|strong=\"H4428\"* lead|strong=\"H5090\"* away|strong=\"H5090\"* the|strong=\"H3651\"* captives|strong=\"H7628\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* and|strong=\"H4428\"* the|strong=\"H3651\"* exiles|strong=\"H1546\"* of|strong=\"H4428\"* Ethiopia|strong=\"H3568\"*, young|strong=\"H5288\"* and|strong=\"H4428\"* old|strong=\"H2205\"*, naked|strong=\"H6174\"* and|strong=\"H4428\"* barefoot|strong=\"H3182\"*, and|strong=\"H4428\"* with|strong=\"H4714\"* buttocks|strong=\"H8357\"* uncovered|strong=\"H2834\"*, to|strong=\"H4714\"* the|strong=\"H3651\"* shame|strong=\"H6172\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 5, + "text": "They will|strong=\"H4714\"* be|strong=\"H4480\"* dismayed|strong=\"H2865\"* and|strong=\"H4714\"* confounded, because|strong=\"H4480\"* of|strong=\"H4480\"* Ethiopia|strong=\"H3568\"* their|strong=\"H4480\"* expectation|strong=\"H4007\"*, and|strong=\"H4714\"* of|strong=\"H4480\"* Egypt|strong=\"H4714\"* their|strong=\"H4480\"* glory|strong=\"H8597\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* this|strong=\"H2088\"* coast land|strong=\"H6440\"* will|strong=\"H4428\"* say in|strong=\"H3427\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, ‘Behold|strong=\"H2009\"*, this|strong=\"H2088\"* is|strong=\"H2088\"* our|strong=\"H5337\"* expectation|strong=\"H4007\"*, where|strong=\"H8033\"* we|strong=\"H3068\"* fled|strong=\"H5127\"* for|strong=\"H6440\"* help|strong=\"H5833\"* to|strong=\"H6440\"* be|strong=\"H3117\"* delivered|strong=\"H5337\"* from|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria. And|strong=\"H4428\"* we|strong=\"H3068\"*, how|strong=\"H2009\"* will|strong=\"H4428\"* we|strong=\"H3068\"* escape|strong=\"H4422\"*?’”" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3372\"* burden|strong=\"H4853\"* of|strong=\"H4057\"* the|strong=\"H3372\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* the|strong=\"H3372\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 2, + "text": "A|strong=\"H3068\"* grievous|strong=\"H7186\"* vision|strong=\"H2380\"* is|strong=\"H3605\"* declared|strong=\"H5046\"* to|strong=\"H5927\"* me|strong=\"H5046\"*. The|strong=\"H3605\"* treacherous man|strong=\"H3605\"* deals treacherously, and|strong=\"H5927\"* the|strong=\"H3605\"* destroyer|strong=\"H7703\"* destroys|strong=\"H7703\"*. Go|strong=\"H5927\"* up|strong=\"H5927\"*, Elam|strong=\"H5867\"*; attack|strong=\"H5927\"*! I|strong=\"H3605\"* have|strong=\"H3605\"* stopped|strong=\"H7673\"* all|strong=\"H3605\"* of|strong=\"H3605\"* Media|strong=\"H4074\"*’s sighing." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H3651\"* my|strong=\"H8085\"* thighs are|strong=\"H4390\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* anguish|strong=\"H2479\"*. Pains|strong=\"H6735\"* have|strong=\"H7200\"* seized me|strong=\"H7200\"*, like|strong=\"H3651\"* the|strong=\"H5921\"* pains|strong=\"H6735\"* of|strong=\"H3205\"* a|strong=\"H3068\"* woman|strong=\"H3205\"* in|strong=\"H5921\"* labor|strong=\"H3205\"*. I|strong=\"H5921\"* am in|strong=\"H5921\"* so|strong=\"H3651\"* much|strong=\"H5921\"* pain|strong=\"H2479\"* that|strong=\"H7200\"* I|strong=\"H5921\"* can|strong=\"H7200\"*’t hear|strong=\"H8085\"*. I|strong=\"H5921\"* am so|strong=\"H3651\"* dismayed that|strong=\"H7200\"* I|strong=\"H5921\"* can|strong=\"H7200\"*’t see|strong=\"H7200\"*." + }, + { + "verseNum": 4, + "text": "My|strong=\"H7760\"* heart|strong=\"H3824\"* flutters. Horror|strong=\"H6427\"* has|strong=\"H6427\"* frightened|strong=\"H1204\"* me|strong=\"H7760\"*. The|strong=\"H7760\"* twilight|strong=\"H5399\"* that|strong=\"H5399\"* I|strong=\"H7760\"* desired|strong=\"H2837\"* has|strong=\"H6427\"* been turned|strong=\"H7760\"* into|strong=\"H7760\"* trembling|strong=\"H2731\"* for|strong=\"H8582\"* me|strong=\"H7760\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H4043\"* prepare|strong=\"H6186\"* the|strong=\"H6965\"* table|strong=\"H7979\"*. They|strong=\"H4043\"* set|strong=\"H6965\"* the|strong=\"H6965\"* watch. They|strong=\"H4043\"* eat. They|strong=\"H4043\"* drink|strong=\"H8354\"*. Rise|strong=\"H6965\"* up|strong=\"H6965\"*, you|strong=\"H4886\"* princes|strong=\"H8269\"*, oil|strong=\"H4886\"* the|strong=\"H6965\"* shield|strong=\"H4043\"*!" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* the|strong=\"H7200\"* Lord said to|strong=\"H3212\"* me|strong=\"H7200\"*, “Go|strong=\"H3212\"*, set|strong=\"H5975\"* a|strong=\"H3068\"* watchman|strong=\"H6822\"*. Let|strong=\"H5046\"* him|strong=\"H5046\"* declare|strong=\"H5046\"* what|strong=\"H3541\"* he|strong=\"H3588\"* sees|strong=\"H7200\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H7200\"* he|strong=\"H7200\"* sees|strong=\"H7200\"* a|strong=\"H3068\"* troop, horsemen|strong=\"H6571\"* in|strong=\"H7227\"* pairs|strong=\"H6776\"*, a|strong=\"H3068\"* troop of|strong=\"H7393\"* donkeys|strong=\"H2543\"*, a|strong=\"H3068\"* troop of|strong=\"H7393\"* camels|strong=\"H1581\"*, he|strong=\"H7200\"* shall|strong=\"H7227\"* listen|strong=\"H7181\"* diligently|strong=\"H7182\"* with|strong=\"H7200\"* great|strong=\"H7227\"* attentiveness.”" + }, + { + "verseNum": 8, + "text": "He|strong=\"H3605\"* cried|strong=\"H7121\"* like|strong=\"H5921\"* a|strong=\"H3068\"* lion: “Lord, I|strong=\"H5921\"* stand|strong=\"H5975\"* continually|strong=\"H8548\"* on|strong=\"H5921\"* the|strong=\"H3605\"* watchtower|strong=\"H4707\"* in|strong=\"H5921\"* the|strong=\"H3605\"* daytime|strong=\"H3119\"*, and|strong=\"H3119\"* every|strong=\"H3605\"* night|strong=\"H3915\"* I|strong=\"H5921\"* stay|strong=\"H5975\"* at|strong=\"H5921\"* my|strong=\"H3605\"* post|strong=\"H4931\"*." + }, + { + "verseNum": 9, + "text": "Behold|strong=\"H2009\"*, here|strong=\"H2009\"* comes a|strong=\"H3068\"* troop of|strong=\"H3605\"* men|strong=\"H3605\"*, horsemen|strong=\"H6571\"* in|strong=\"H7665\"* pairs|strong=\"H6776\"*.” He|strong=\"H3605\"* answered|strong=\"H6030\"*, “Fallen|strong=\"H5307\"*, fallen|strong=\"H5307\"* is|strong=\"H2088\"* Babylon; and|strong=\"H6030\"* all|strong=\"H3605\"* the|strong=\"H3605\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"* of|strong=\"H3605\"* her|strong=\"H3605\"* gods are|strong=\"H7393\"* broken|strong=\"H7665\"* to|strong=\"H6030\"* the|strong=\"H3605\"* ground." + }, + { + "verseNum": 10, + "text": "You|strong=\"H5046\"* are|strong=\"H1121\"* my|strong=\"H8085\"* threshing|strong=\"H1637\"*, and|strong=\"H1121\"* the|strong=\"H8085\"* grain of|strong=\"H1121\"* my|strong=\"H8085\"* floor|strong=\"H1637\"*!” That|strong=\"H8085\"* which|strong=\"H3068\"* I|strong=\"H8085\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* from|strong=\"H3478\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, I|strong=\"H8085\"* have|strong=\"H3068\"* declared|strong=\"H5046\"* to|strong=\"H3478\"* you|strong=\"H5046\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H8104\"* burden|strong=\"H4853\"* of|strong=\"H4853\"* Dumah|strong=\"H1746\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H8104\"* watchman|strong=\"H8104\"* said, “The|strong=\"H8104\"* morning|strong=\"H1242\"* comes, and|strong=\"H7725\"* also|strong=\"H1571\"* the|strong=\"H8104\"* night|strong=\"H3915\"*. If you|strong=\"H7725\"* will|strong=\"H1571\"* inquire|strong=\"H1158\"*, inquire|strong=\"H1158\"*. Come|strong=\"H7725\"* back|strong=\"H7725\"* again|strong=\"H7725\"*.”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H3885\"* burden|strong=\"H4853\"* on|strong=\"H4853\"* Arabia|strong=\"H6152\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H5074\"* brought water|strong=\"H4325\"* to|strong=\"H4325\"* him|strong=\"H7125\"* who|strong=\"H3427\"* was|strong=\"H4325\"* thirsty|strong=\"H6771\"*. The|strong=\"H3427\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3427\"* land of|strong=\"H3427\"* Tema|strong=\"H8485\"* met|strong=\"H7125\"* the|strong=\"H3427\"* fugitives|strong=\"H5074\"* with|strong=\"H3427\"* their|strong=\"H3427\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* fled|strong=\"H5074\"* away|strong=\"H5074\"* from|strong=\"H6440\"* the|strong=\"H6440\"* swords|strong=\"H2719\"*, from|strong=\"H6440\"* the|strong=\"H6440\"* drawn|strong=\"H5203\"* sword|strong=\"H2719\"*, from|strong=\"H6440\"* the|strong=\"H6440\"* bent|strong=\"H1869\"* bow|strong=\"H7198\"*, and|strong=\"H6440\"* from|strong=\"H6440\"* the|strong=\"H6440\"* heat of|strong=\"H6440\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* Lord said to|strong=\"H8141\"* me|strong=\"H3588\"*, “Within|strong=\"H5750\"* a|strong=\"H3068\"* year|strong=\"H8141\"*, as|strong=\"H3588\"* a|strong=\"H3068\"* worker|strong=\"H7916\"* bound by|strong=\"H8141\"* contract would|strong=\"H7916\"* count|strong=\"H8141\"* it|strong=\"H3588\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* glory|strong=\"H3519\"* of|strong=\"H8141\"* Kedar|strong=\"H6938\"* will|strong=\"H5750\"* fail|strong=\"H3615\"*," + }, + { + "verseNum": 17, + "text": "and|strong=\"H1121\"* the|strong=\"H3588\"* residue|strong=\"H7605\"* of|strong=\"H1121\"* the|strong=\"H3588\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3588\"* archers|strong=\"H7198\"*, the|strong=\"H3588\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Kedar|strong=\"H6938\"*, will|strong=\"H3068\"* be|strong=\"H3068\"* few|strong=\"H4557\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, has|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H3588\"*.”" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* burden|strong=\"H4853\"* of|strong=\"H1516\"* the|strong=\"H3605\"* valley|strong=\"H1516\"* of|strong=\"H1516\"* vision|strong=\"H2384\"*." + }, + { + "verseNum": 2, + "text": "You|strong=\"H3808\"* that|strong=\"H5892\"* are|strong=\"H5892\"* full|strong=\"H4395\"* of|strong=\"H5892\"* shouting, a|strong=\"H3068\"* tumultuous|strong=\"H1993\"* city|strong=\"H5892\"*, a|strong=\"H3068\"* joyous|strong=\"H5947\"* town|strong=\"H7151\"*, your|strong=\"H3808\"* slain|strong=\"H2491\"* are|strong=\"H5892\"* not|strong=\"H3808\"* slain|strong=\"H2491\"* with|strong=\"H5892\"* the|strong=\"H4191\"* sword|strong=\"H2719\"*, neither|strong=\"H3808\"* are|strong=\"H5892\"* they|strong=\"H3808\"* dead|strong=\"H4191\"* in|strong=\"H4191\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 3, + "text": "All|strong=\"H3605\"* your|strong=\"H3605\"* rulers|strong=\"H7101\"* fled|strong=\"H1272\"* away|strong=\"H1272\"* together|strong=\"H3162\"*. They|strong=\"H3605\"* were|strong=\"H4672\"* bound by|strong=\"H3605\"* the|strong=\"H3605\"* archers|strong=\"H7198\"*. All|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H4672\"* found|strong=\"H4672\"* by|strong=\"H3605\"* you|strong=\"H3605\"* were|strong=\"H4672\"* bound together|strong=\"H3162\"*. They|strong=\"H3605\"* fled|strong=\"H1272\"* far|strong=\"H7350\"* away|strong=\"H1272\"*." + }, + { + "verseNum": 4, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* said|strong=\"H3651\"*, “Look|strong=\"H8159\"* away|strong=\"H4480\"* from|strong=\"H4480\"* me|strong=\"H5921\"*. I|strong=\"H5921\"* will|strong=\"H5971\"* weep|strong=\"H1065\"* bitterly|strong=\"H4843\"*. Don’t labor to|strong=\"H5921\"* comfort|strong=\"H5162\"* me|strong=\"H5921\"* for|strong=\"H5921\"* the|strong=\"H5921\"* destruction|strong=\"H7701\"* of|strong=\"H1323\"* the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* my|strong=\"H5921\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3117\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* confusion|strong=\"H4103\"*, and|strong=\"H3117\"* of|strong=\"H3117\"* treading down|strong=\"H4001\"*, and|strong=\"H3117\"* of|strong=\"H3117\"* perplexity|strong=\"H3998\"* from|strong=\"H3117\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3117\"* Armies|strong=\"H6635\"*, in|strong=\"H3117\"* the|strong=\"H3588\"* valley|strong=\"H1516\"* of|strong=\"H3117\"* vision|strong=\"H2384\"*, a|strong=\"H3068\"* breaking|strong=\"H6979\"* down|strong=\"H4001\"* of|strong=\"H3117\"* the|strong=\"H3588\"* walls|strong=\"H7023\"*, and|strong=\"H3117\"* a|strong=\"H3068\"* crying|strong=\"H7771\"* to|strong=\"H3117\"* the|strong=\"H3588\"* mountains|strong=\"H2022\"*.”" + }, + { + "verseNum": 6, + "text": "Elam|strong=\"H5867\"* carried|strong=\"H5375\"* his|strong=\"H5375\"* quiver, with|strong=\"H5375\"* chariots|strong=\"H7393\"* of|strong=\"H7393\"* men|strong=\"H6168\"* and|strong=\"H7393\"* horsemen|strong=\"H6571\"*; and|strong=\"H7393\"* Kir|strong=\"H7024\"* uncovered|strong=\"H6168\"* the|strong=\"H5375\"* shield|strong=\"H4043\"*." + }, + { + "verseNum": 7, + "text": "Your|strong=\"H1961\"* choicest|strong=\"H4005\"* valleys|strong=\"H6010\"* were|strong=\"H1961\"* full|strong=\"H4390\"* of|strong=\"H8179\"* chariots|strong=\"H7393\"*, and|strong=\"H7393\"* the|strong=\"H4390\"* horsemen|strong=\"H6571\"* set|strong=\"H7896\"* themselves|strong=\"H4390\"* in|strong=\"H1961\"* array|strong=\"H7896\"* at|strong=\"H1961\"* the|strong=\"H4390\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H1931\"* took|strong=\"H3063\"* away|strong=\"H1540\"* the|strong=\"H3117\"* covering|strong=\"H4539\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*; and|strong=\"H3063\"* you|strong=\"H3117\"* looked|strong=\"H5027\"* in|strong=\"H1004\"* that|strong=\"H3117\"* day|strong=\"H3117\"* to|strong=\"H3117\"* the|strong=\"H3117\"* armor in|strong=\"H1004\"* the|strong=\"H3117\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H3117\"* forest|strong=\"H3293\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3588\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* breaches|strong=\"H1233\"* of|strong=\"H5892\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H4325\"* many|strong=\"H7235\"*; and|strong=\"H5892\"* you|strong=\"H3588\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* the|strong=\"H7200\"* waters|strong=\"H4325\"* of|strong=\"H5892\"* the|strong=\"H7200\"* lower|strong=\"H8481\"* pool|strong=\"H1295\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H5422\"* counted|strong=\"H5608\"* the|strong=\"H5422\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H1004\"* you|strong=\"H5422\"* broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H5422\"* houses|strong=\"H1004\"* to|strong=\"H3389\"* fortify|strong=\"H1219\"* the|strong=\"H5422\"* wall|strong=\"H2346\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H6213\"* also|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* reservoir|strong=\"H4724\"* between the|strong=\"H7200\"* two|strong=\"H6213\"* walls|strong=\"H2346\"* for|strong=\"H6213\"* the|strong=\"H7200\"* water|strong=\"H4325\"* of|strong=\"H4325\"* the|strong=\"H7200\"* old|strong=\"H3465\"* pool|strong=\"H1295\"*. But|strong=\"H3808\"* you|strong=\"H6213\"* didn’t look|strong=\"H7200\"* to|strong=\"H6213\"* him|strong=\"H6213\"* who|strong=\"H7350\"* had|strong=\"H4325\"* done|strong=\"H6213\"* this|strong=\"H6213\"*, neither|strong=\"H3808\"* did|strong=\"H6213\"* you|strong=\"H6213\"* have|strong=\"H7200\"* respect|strong=\"H7200\"* for|strong=\"H6213\"* him|strong=\"H6213\"* who|strong=\"H7350\"* planned|strong=\"H3335\"* it|strong=\"H6213\"* long|strong=\"H7350\"* ago|strong=\"H7350\"*." + }, + { + "verseNum": 12, + "text": "In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, the|strong=\"H3069\"* Lord|strong=\"H3069\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3117\"* Armies|strong=\"H6635\"*, called|strong=\"H7121\"* to|strong=\"H3117\"* weeping|strong=\"H1065\"*, to|strong=\"H3117\"* mourning|strong=\"H4553\"*, to|strong=\"H3117\"* baldness|strong=\"H7144\"*, and|strong=\"H3117\"* to|strong=\"H3117\"* dressing in|strong=\"H3117\"* sackcloth|strong=\"H8242\"*;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H6629\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* is|strong=\"H2009\"* joy|strong=\"H8057\"* and|strong=\"H6629\"* gladness|strong=\"H8057\"*, killing|strong=\"H2026\"* cattle|strong=\"H1241\"* and|strong=\"H6629\"* killing|strong=\"H2026\"* sheep|strong=\"H6629\"*, eating meat|strong=\"H1320\"* and|strong=\"H6629\"* drinking|strong=\"H8354\"* wine|strong=\"H3196\"*: “Let’s eat and|strong=\"H6629\"* drink|strong=\"H8354\"*, for|strong=\"H3588\"* tomorrow|strong=\"H4279\"* we|strong=\"H3068\"* will|strong=\"H1320\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* revealed|strong=\"H1540\"* himself|strong=\"H1540\"* in|strong=\"H3068\"* my|strong=\"H3068\"* ears, “Surely|strong=\"H4191\"* this|strong=\"H2088\"* iniquity|strong=\"H5771\"* will|strong=\"H3068\"* not|strong=\"H2088\"* be|strong=\"H4191\"* forgiven|strong=\"H3722\"* you|strong=\"H5704\"* until|strong=\"H5704\"* you|strong=\"H5704\"* die|strong=\"H4191\"*,” says the|strong=\"H3069\"* Lord|strong=\"H3068\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* Lord|strong=\"H3069\"*, Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*, “Go|strong=\"H3212\"*, get|strong=\"H3212\"* yourself|strong=\"H5921\"* to|strong=\"H3212\"* this|strong=\"H2088\"* treasurer|strong=\"H5532\"*, even|strong=\"H5921\"* to|strong=\"H3212\"* Shebna|strong=\"H7644\"*, who|strong=\"H2088\"* is|strong=\"H2088\"* over|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* say," + }, + { + "verseNum": 16, + "text": "‘What|strong=\"H4100\"* are|strong=\"H4100\"* you|strong=\"H3588\"* doing here|strong=\"H6311\"*? Who|strong=\"H4310\"* has|strong=\"H4310\"* you|strong=\"H3588\"* here|strong=\"H6311\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* dug out|strong=\"H2672\"* a|strong=\"H3068\"* tomb|strong=\"H6913\"* here|strong=\"H6311\"*?’ Cutting himself out|strong=\"H2672\"* a|strong=\"H3068\"* tomb|strong=\"H6913\"* on|strong=\"H6913\"* high|strong=\"H4791\"*, chiseling a|strong=\"H3068\"* habitation|strong=\"H4908\"* for|strong=\"H3588\"* himself in|strong=\"H6913\"* the|strong=\"H3588\"* rock|strong=\"H5553\"*!”" + }, + { + "verseNum": 17, + "text": "Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* overcome you|strong=\"H2904\"* and|strong=\"H3068\"* hurl|strong=\"H2904\"* you|strong=\"H2904\"* away|strong=\"H2904\"* violently. Yes|strong=\"H2009\"*, he|strong=\"H3068\"* will|strong=\"H3068\"* grasp|strong=\"H5844\"* you|strong=\"H2904\"* firmly|strong=\"H5844\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H8033\"* will|strong=\"H1004\"* surely|strong=\"H4191\"* wind you|strong=\"H3027\"* around|strong=\"H3027\"* and|strong=\"H3027\"* around|strong=\"H3027\"*, and|strong=\"H3027\"* throw you|strong=\"H3027\"* like|strong=\"H1004\"* a|strong=\"H3068\"* ball|strong=\"H1754\"* into|strong=\"H3027\"* a|strong=\"H3068\"* large|strong=\"H7342\"* country. There|strong=\"H8033\"* you|strong=\"H3027\"* will|strong=\"H1004\"* die|strong=\"H4191\"*, and|strong=\"H3027\"* there|strong=\"H8033\"* the|strong=\"H3027\"* chariots|strong=\"H4818\"* of|strong=\"H1004\"* your|strong=\"H3027\"* glory|strong=\"H3519\"* will|strong=\"H1004\"* be|strong=\"H4191\"*, you|strong=\"H3027\"* disgrace|strong=\"H7036\"* of|strong=\"H1004\"* your|strong=\"H3027\"* lord’s house|strong=\"H1004\"*." + }, + { + "verseNum": 19, + "text": "I will thrust|strong=\"H1920\"* you|strong=\"H2040\"* from|strong=\"H1920\"* your|strong=\"H2040\"* office|strong=\"H4612\"*. You|strong=\"H2040\"* will be pulled down|strong=\"H2040\"* from|strong=\"H1920\"* your|strong=\"H2040\"* station|strong=\"H4612\"*." + }, + { + "verseNum": 20, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H1961\"* call|strong=\"H7121\"* my|strong=\"H1961\"* servant|strong=\"H5650\"* Eliakim the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*," + }, + { + "verseNum": 21, + "text": "and|strong=\"H3063\"* I|strong=\"H5414\"* will|strong=\"H1961\"* clothe|strong=\"H3847\"* him|strong=\"H5414\"* with|strong=\"H3847\"* your|strong=\"H5414\"* robe|strong=\"H3801\"*, and|strong=\"H3063\"* strengthen|strong=\"H2388\"* him|strong=\"H5414\"* with|strong=\"H3847\"* your|strong=\"H5414\"* belt. I|strong=\"H5414\"* will|strong=\"H1961\"* commit|strong=\"H5414\"* your|strong=\"H5414\"* government|strong=\"H4475\"* into|strong=\"H3027\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*; and|strong=\"H3063\"* he|strong=\"H1004\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* father to|strong=\"H1961\"* the|strong=\"H5414\"* inhabitants|strong=\"H3427\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* to|strong=\"H1961\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"H5414\"* will|strong=\"H1004\"* lay|strong=\"H5414\"* the|strong=\"H5921\"* key|strong=\"H4668\"* of|strong=\"H1004\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"* on|strong=\"H5921\"* his|strong=\"H5414\"* shoulder|strong=\"H7926\"*. He|strong=\"H1004\"* will|strong=\"H1004\"* open|strong=\"H6605\"*, and|strong=\"H1004\"* no|strong=\"H5414\"* one|strong=\"H1004\"* will|strong=\"H1004\"* shut|strong=\"H5462\"*. He|strong=\"H1004\"* will|strong=\"H1004\"* shut|strong=\"H5462\"*, and|strong=\"H1004\"* no|strong=\"H5414\"* one|strong=\"H1004\"* will|strong=\"H1004\"* open|strong=\"H6605\"*." + }, + { + "verseNum": 23, + "text": "I|strong=\"H1004\"* will|strong=\"H1961\"* fasten|strong=\"H8628\"* him|strong=\"H8628\"* like|strong=\"H1961\"* a|strong=\"H3068\"* nail|strong=\"H3489\"* in|strong=\"H1004\"* a|strong=\"H3068\"* sure place|strong=\"H4725\"*. He|strong=\"H1004\"* will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H1004\"* a|strong=\"H3068\"* throne|strong=\"H3678\"* of|strong=\"H1004\"* glory|strong=\"H3519\"* to|strong=\"H1961\"* his|strong=\"H1961\"* father’s house|strong=\"H1004\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H5921\"* will|strong=\"H1004\"* hang|strong=\"H8518\"* on|strong=\"H5921\"* him|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* glory|strong=\"H3519\"* of|strong=\"H1004\"* his|strong=\"H3605\"* father’s house|strong=\"H1004\"*, the|strong=\"H3605\"* offspring|strong=\"H6631\"* and|strong=\"H1004\"* the|strong=\"H3605\"* issue|strong=\"H6849\"*, every|strong=\"H3605\"* small|strong=\"H6996\"* vessel|strong=\"H3627\"*, from|strong=\"H5921\"* the|strong=\"H3605\"* cups even|strong=\"H5704\"* to|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* pitchers|strong=\"H5035\"*." + }, + { + "verseNum": 25, + "text": "“In|strong=\"H5921\"* that|strong=\"H3588\"* day|strong=\"H3117\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, “the|strong=\"H5002\"* nail|strong=\"H3489\"* that|strong=\"H3588\"* was|strong=\"H3068\"* fastened|strong=\"H8628\"* in|strong=\"H5921\"* a|strong=\"H3068\"* sure place|strong=\"H4725\"* will|strong=\"H3068\"* give|strong=\"H1696\"* way|strong=\"H4185\"*. It|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H3068\"* cut|strong=\"H3772\"* down|strong=\"H5307\"* and|strong=\"H3068\"* fall|strong=\"H5307\"*. The|strong=\"H5002\"* burden|strong=\"H4853\"* that|strong=\"H3588\"* was|strong=\"H3068\"* on|strong=\"H5921\"* it|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H1931\"*.”" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3588\"* burden|strong=\"H4853\"* of|strong=\"H1004\"* Tyre|strong=\"H6865\"*." + }, + { + "verseNum": 2, + "text": "Be|strong=\"H3220\"* still|strong=\"H3427\"*, you|strong=\"H3427\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H5674\"* coast, you|strong=\"H3427\"* whom the|strong=\"H5674\"* merchants|strong=\"H5503\"* of|strong=\"H3427\"* Sidon|strong=\"H6721\"* that|strong=\"H3220\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H5674\"* sea|strong=\"H3220\"* have|strong=\"H1826\"* replenished|strong=\"H4390\"*." + }, + { + "verseNum": 3, + "text": "On|strong=\"H1961\"* great|strong=\"H7227\"* waters|strong=\"H4325\"*, the|strong=\"H1961\"* seed|strong=\"H2233\"* of|strong=\"H4325\"* the|strong=\"H1961\"* Shihor|strong=\"H7883\"*, the|strong=\"H1961\"* harvest|strong=\"H7105\"* of|strong=\"H4325\"* the|strong=\"H1961\"* Nile|strong=\"H2975\"*, was|strong=\"H1961\"* her|strong=\"H1961\"* revenue|strong=\"H8393\"*. She was|strong=\"H1961\"* the|strong=\"H1961\"* market of|strong=\"H4325\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 4, + "text": "Be|strong=\"H3808\"* ashamed, Sidon|strong=\"H6721\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* sea|strong=\"H3220\"* has|strong=\"H3588\"* spoken|strong=\"H1431\"*, the|strong=\"H3588\"* stronghold|strong=\"H4581\"* of|strong=\"H3205\"* the|strong=\"H3588\"* sea|strong=\"H3220\"*, saying, “I|strong=\"H3588\"* have|strong=\"H3588\"* not|strong=\"H3808\"* travailed|strong=\"H2342\"*, nor|strong=\"H3808\"* given|strong=\"H3205\"* birth|strong=\"H3205\"*, neither|strong=\"H3808\"* have|strong=\"H3588\"* I|strong=\"H3588\"* nourished|strong=\"H1431\"* young|strong=\"H1431\"* men|strong=\"H3220\"*, nor|strong=\"H3808\"* brought|strong=\"H3205\"* up|strong=\"H7311\"* virgins|strong=\"H1330\"*.”" + }, + { + "verseNum": 5, + "text": "When the|strong=\"H2342\"* report|strong=\"H8088\"* comes to|strong=\"H4714\"* Egypt|strong=\"H4714\"*, they will|strong=\"H4714\"* be in|strong=\"H2342\"* anguish|strong=\"H2342\"* at|strong=\"H2342\"* the|strong=\"H2342\"* report|strong=\"H8088\"* of|strong=\"H8088\"* Tyre|strong=\"H6865\"*." + }, + { + "verseNum": 6, + "text": "Pass|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H5674\"* Tarshish|strong=\"H8659\"*! Wail|strong=\"H3213\"*, you|strong=\"H3427\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H5674\"* coast!" + }, + { + "verseNum": 7, + "text": "Is|strong=\"H3117\"* this|strong=\"H2063\"* your|strong=\"H3117\"* joyous|strong=\"H5947\"* city|strong=\"H6927\"*, whose antiquity|strong=\"H6927\"* is|strong=\"H3117\"* of|strong=\"H3117\"* ancient|strong=\"H6924\"* days|strong=\"H3117\"*, whose feet|strong=\"H7272\"* carried|strong=\"H2986\"* her|strong=\"H2063\"* far|strong=\"H7350\"* away|strong=\"H7350\"* to|strong=\"H3117\"* travel?" + }, + { + "verseNum": 8, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* planned|strong=\"H3289\"* this|strong=\"H2063\"* against|strong=\"H5921\"* Tyre|strong=\"H6865\"*, the|strong=\"H5921\"* giver of|strong=\"H8269\"* crowns|strong=\"H5849\"*, whose|strong=\"H4310\"* merchants|strong=\"H5503\"* are|strong=\"H4310\"* princes|strong=\"H8269\"*, whose|strong=\"H4310\"* traders|strong=\"H5503\"* are|strong=\"H4310\"* the|strong=\"H5921\"* honorable|strong=\"H3513\"* of|strong=\"H8269\"* the|strong=\"H5921\"* earth?" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* has|strong=\"H3068\"* planned|strong=\"H3289\"* it|strong=\"H7043\"*, to|strong=\"H3068\"* stain|strong=\"H2490\"* the|strong=\"H3605\"* pride|strong=\"H1347\"* of|strong=\"H3068\"* all|strong=\"H3605\"* glory|strong=\"H6643\"*, to|strong=\"H3068\"* bring into|strong=\"H6635\"* contempt|strong=\"H7043\"* all|strong=\"H3605\"* the|strong=\"H3605\"* honorable|strong=\"H3513\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 10, + "text": "Pass|strong=\"H5674\"* through|strong=\"H5674\"* your|strong=\"H5674\"* land like|strong=\"H1323\"* the|strong=\"H5674\"* Nile|strong=\"H2975\"*, daughter|strong=\"H1323\"* of|strong=\"H1323\"* Tarshish|strong=\"H8659\"*. There|strong=\"H2975\"* is|strong=\"H1323\"* no restraint|strong=\"H4206\"* any|strong=\"H5750\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3068\"* has|strong=\"H3068\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* over|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*. He|strong=\"H3068\"* has|strong=\"H3068\"* shaken the|strong=\"H5921\"* kingdoms|strong=\"H4467\"*. Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* ordered|strong=\"H6680\"* the|strong=\"H5921\"* destruction|strong=\"H8045\"* of|strong=\"H3068\"* Canaan|strong=\"H3667\"*’s strongholds|strong=\"H4581\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H8033\"* said, “You|strong=\"H5117\"* shall|strong=\"H1323\"* rejoice|strong=\"H5937\"* no|strong=\"H3808\"* more|strong=\"H3254\"*, you|strong=\"H5117\"* oppressed|strong=\"H6231\"* virgin|strong=\"H1330\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Sidon|strong=\"H6721\"*. Arise|strong=\"H6965\"*, pass|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H6965\"* Kittim|strong=\"H3794\"*. Even|strong=\"H1571\"* there|strong=\"H8033\"* you|strong=\"H5117\"* will|strong=\"H1571\"* have|strong=\"H1571\"* no|strong=\"H3808\"* rest|strong=\"H5117\"*.”" + }, + { + "verseNum": 13, + "text": "Behold|strong=\"H2005\"*, the|strong=\"H7760\"* land of|strong=\"H5971\"* the|strong=\"H7760\"* Chaldeans|strong=\"H3778\"*. This|strong=\"H2088\"* people|strong=\"H5971\"* didn’t exist. The|strong=\"H7760\"* Assyrians founded|strong=\"H3245\"* it|strong=\"H7760\"* for|strong=\"H5971\"* those|strong=\"H2088\"* who|strong=\"H5971\"* dwell in|strong=\"H5971\"* the|strong=\"H7760\"* wilderness|strong=\"H6728\"*. They|strong=\"H3808\"* set|strong=\"H7760\"* up|strong=\"H6965\"* their|strong=\"H7760\"* towers. They|strong=\"H3808\"* overthrew its|strong=\"H7760\"* palaces. They|strong=\"H3808\"* made|strong=\"H7760\"* it|strong=\"H7760\"* a|strong=\"H3068\"* ruin|strong=\"H4654\"*." + }, + { + "verseNum": 14, + "text": "Howl|strong=\"H3213\"*, you|strong=\"H3588\"* ships of|strong=\"H4581\"* Tarshish|strong=\"H8659\"*, for|strong=\"H3588\"* your|strong=\"H3588\"* stronghold|strong=\"H4581\"* is|strong=\"H7703\"* laid waste|strong=\"H7703\"*!" + }, + { + "verseNum": 15, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1961\"* pass|strong=\"H1961\"* in|strong=\"H8141\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Tyre|strong=\"H6865\"* will|strong=\"H1961\"* be|strong=\"H1961\"* forgotten|strong=\"H7911\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"*, according to|strong=\"H1961\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H4428\"* one|strong=\"H1931\"* king|strong=\"H4428\"*. After|strong=\"H7093\"* the|strong=\"H3117\"* end|strong=\"H7093\"* of|strong=\"H4428\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"* it|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* to|strong=\"H1961\"* Tyre|strong=\"H6865\"* like|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H3117\"* song|strong=\"H7892\"* of|strong=\"H4428\"* the|strong=\"H3117\"* prostitute|strong=\"H2181\"*." + }, + { + "verseNum": 16, + "text": "Take|strong=\"H3947\"* a|strong=\"H3068\"* harp|strong=\"H3658\"*; go|strong=\"H5437\"* about|strong=\"H5437\"* the|strong=\"H3947\"* city|strong=\"H5892\"*, you|strong=\"H3947\"* prostitute|strong=\"H2181\"* that|strong=\"H4616\"* has|strong=\"H3947\"* been|strong=\"H2142\"* forgotten|strong=\"H7911\"*. Make|strong=\"H2142\"* sweet|strong=\"H3190\"* melody|strong=\"H5059\"*. Sing|strong=\"H7892\"* many|strong=\"H7235\"* songs|strong=\"H7892\"*, that|strong=\"H4616\"* you|strong=\"H3947\"* may|strong=\"H2142\"* be|strong=\"H5892\"* remembered|strong=\"H2142\"*." + }, + { + "verseNum": 17, + "text": "It|strong=\"H5921\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* after|strong=\"H7093\"* the|strong=\"H3605\"* end|strong=\"H7093\"* of|strong=\"H3068\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* visit|strong=\"H6485\"* Tyre|strong=\"H6865\"*. She|strong=\"H5921\"* will|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H7725\"* her|strong=\"H3605\"* wages, and|strong=\"H3068\"* will|strong=\"H3068\"* play|strong=\"H2181\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"* with|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* world on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 18, + "text": "Her|strong=\"H1961\"* merchandise|strong=\"H5504\"* and|strong=\"H3068\"* her|strong=\"H1961\"* wages will|strong=\"H3068\"* be|strong=\"H1961\"* holiness|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. It|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* treasured nor|strong=\"H3808\"* laid|strong=\"H6440\"* up|strong=\"H3427\"*; for|strong=\"H3588\"* her|strong=\"H1961\"* merchandise|strong=\"H5504\"* will|strong=\"H3068\"* be|strong=\"H1961\"* for|strong=\"H3588\"* those|strong=\"H3427\"* who|strong=\"H3068\"* dwell|strong=\"H3427\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* eat sufficiently|strong=\"H7654\"*, and|strong=\"H3068\"* for|strong=\"H3588\"* durable|strong=\"H6266\"* clothing|strong=\"H4374\"*." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* makes|strong=\"H6440\"* the|strong=\"H6440\"* earth empty|strong=\"H1238\"*, makes|strong=\"H6440\"* it|strong=\"H6440\"* waste|strong=\"H1110\"*, turns it|strong=\"H6440\"* upside down|strong=\"H3427\"*, and|strong=\"H3068\"* scatters|strong=\"H6327\"* its|strong=\"H6327\"* inhabitants|strong=\"H3427\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* with|strong=\"H5971\"* the|strong=\"H1961\"* people|strong=\"H5971\"*, so|strong=\"H1961\"* with|strong=\"H5971\"* the|strong=\"H1961\"* priest|strong=\"H3548\"*; as|strong=\"H1961\"* with|strong=\"H5971\"* the|strong=\"H1961\"* servant|strong=\"H5650\"*, so|strong=\"H1961\"* with|strong=\"H5971\"* his|strong=\"H1961\"* master; as|strong=\"H1961\"* with|strong=\"H5971\"* the|strong=\"H1961\"* maid|strong=\"H8198\"*, so|strong=\"H1961\"* with|strong=\"H5971\"* her|strong=\"H1961\"* mistress|strong=\"H1404\"*; as|strong=\"H1961\"* with|strong=\"H5971\"* the|strong=\"H1961\"* buyer|strong=\"H7069\"*, so|strong=\"H1961\"* with|strong=\"H5971\"* the|strong=\"H1961\"* seller|strong=\"H4376\"*; as|strong=\"H1961\"* with|strong=\"H5971\"* the|strong=\"H1961\"* creditor|strong=\"H5383\"*, so|strong=\"H1961\"* with|strong=\"H5971\"* the|strong=\"H1961\"* debtor; as|strong=\"H1961\"* with|strong=\"H5971\"* the|strong=\"H1961\"* taker of|strong=\"H5650\"* interest, so|strong=\"H1961\"* with|strong=\"H5971\"* the|strong=\"H1961\"* giver of|strong=\"H5650\"* interest." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3588\"* earth will|strong=\"H3068\"* be|strong=\"H1697\"* utterly|strong=\"H1238\"* emptied|strong=\"H1238\"* and|strong=\"H3068\"* utterly|strong=\"H1238\"* laid|strong=\"H1238\"* waste|strong=\"H1238\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* this|strong=\"H2088\"* word|strong=\"H1697\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H5971\"* earth mourns and|strong=\"H5971\"* fades|strong=\"H5034\"* away|strong=\"H5034\"*. The|strong=\"H5971\"* world|strong=\"H8398\"* languishes and|strong=\"H5971\"* fades|strong=\"H5034\"* away|strong=\"H5034\"*. The|strong=\"H5971\"* lofty|strong=\"H4791\"* people|strong=\"H5971\"* of|strong=\"H5971\"* the|strong=\"H5971\"* earth languish." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3588\"* earth also|strong=\"H3588\"* is|strong=\"H8451\"* polluted|strong=\"H2610\"* under|strong=\"H8478\"* its|strong=\"H8478\"* inhabitants|strong=\"H3427\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3588\"* transgressed|strong=\"H5674\"* the|strong=\"H3588\"* laws|strong=\"H8451\"*, violated|strong=\"H5674\"* the|strong=\"H3588\"* statutes|strong=\"H2706\"*, and|strong=\"H5769\"* broken|strong=\"H6565\"* the|strong=\"H3588\"* everlasting|strong=\"H5769\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5921\"* curse has devoured the|strong=\"H5921\"* earth, and|strong=\"H3427\"* those|strong=\"H5921\"* who|strong=\"H3427\"* dwell|strong=\"H3427\"* therein|strong=\"H3427\"* are found guilty. Therefore|strong=\"H3651\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H5921\"* earth are burned|strong=\"H2787\"*, and|strong=\"H3427\"* few|strong=\"H4213\"* men are left|strong=\"H7604\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* new|strong=\"H8492\"* wine|strong=\"H8492\"* mourns. The|strong=\"H3605\"* vine|strong=\"H1612\"* languishes. All|strong=\"H3605\"* the|strong=\"H3605\"* merry-hearted|strong=\"H8056\"* sigh." + }, + { + "verseNum": 8, + "text": "The|strong=\"H7673\"* mirth|strong=\"H4885\"* of|strong=\"H7588\"* tambourines|strong=\"H8596\"* ceases|strong=\"H7673\"*. The|strong=\"H7673\"* sound of|strong=\"H7588\"* those who rejoice|strong=\"H5947\"* ends|strong=\"H7673\"*. The|strong=\"H7673\"* joy|strong=\"H4885\"* of|strong=\"H7588\"* the|strong=\"H7673\"* harp|strong=\"H3658\"* ceases|strong=\"H7673\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* drink|strong=\"H8354\"* wine|strong=\"H3196\"* with|strong=\"H4843\"* a|strong=\"H3068\"* song|strong=\"H7892\"*. Strong|strong=\"H7941\"* drink|strong=\"H8354\"* will|strong=\"H3808\"* be|strong=\"H3808\"* bitter|strong=\"H4843\"* to|strong=\"H3808\"* those who|strong=\"H8354\"* drink|strong=\"H8354\"* it|strong=\"H3808\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3605\"* confused city|strong=\"H7151\"* is|strong=\"H3605\"* broken|strong=\"H7665\"* down|strong=\"H7665\"*. Every|strong=\"H3605\"* house|strong=\"H1004\"* is|strong=\"H3605\"* shut|strong=\"H5462\"* up|strong=\"H5462\"*, that|strong=\"H3605\"* no|strong=\"H3605\"* man|strong=\"H3605\"* may|strong=\"H1004\"* come in|strong=\"H1004\"*." + }, + { + "verseNum": 11, + "text": "There|strong=\"H3605\"* is|strong=\"H3605\"* a|strong=\"H3068\"* crying|strong=\"H6682\"* in|strong=\"H5921\"* the|strong=\"H3605\"* streets|strong=\"H2351\"* because|strong=\"H5921\"* of|strong=\"H5921\"* the|strong=\"H3605\"* wine|strong=\"H3196\"*. All|strong=\"H3605\"* joy|strong=\"H8057\"* is|strong=\"H3605\"* darkened|strong=\"H6150\"*. The|strong=\"H3605\"* mirth|strong=\"H8057\"* of|strong=\"H5921\"* the|strong=\"H3605\"* land is|strong=\"H3605\"* gone|strong=\"H1540\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5892\"* city|strong=\"H5892\"* is|strong=\"H5892\"* left|strong=\"H7604\"* in|strong=\"H5892\"* desolation|strong=\"H8047\"*, and|strong=\"H5892\"* the|strong=\"H5892\"* gate|strong=\"H8179\"* is|strong=\"H5892\"* struck with|strong=\"H5892\"* destruction|strong=\"H7591\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* it|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* so|strong=\"H3541\"* within|strong=\"H7130\"* the|strong=\"H3588\"* earth among|strong=\"H8432\"* the|strong=\"H3588\"* peoples|strong=\"H5971\"*, as|strong=\"H1961\"* the|strong=\"H3588\"* shaking|strong=\"H5363\"* of|strong=\"H8432\"* an|strong=\"H1961\"* olive|strong=\"H2132\"* tree|strong=\"H2132\"*, as|strong=\"H1961\"* the|strong=\"H3588\"* gleanings|strong=\"H5955\"* when|strong=\"H3588\"* the|strong=\"H3588\"* vintage|strong=\"H1210\"* is|strong=\"H1961\"* done|strong=\"H1961\"*." + }, + { + "verseNum": 14, + "text": "These|strong=\"H1992\"* shall|strong=\"H3068\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H3068\"* voice|strong=\"H6963\"*. They|strong=\"H1992\"* will|strong=\"H3068\"* shout|strong=\"H7442\"* for|strong=\"H7442\"* the|strong=\"H5375\"* majesty|strong=\"H1347\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. They|strong=\"H1992\"* cry|strong=\"H6670\"* aloud|strong=\"H7442\"* from|strong=\"H3068\"* the|strong=\"H5375\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"H3651\"* glorify|strong=\"H3513\"* Yahweh|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H5921\"*, even|strong=\"H3651\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* islands of|strong=\"H3068\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*!" + }, + { + "verseNum": 16, + "text": "From|strong=\"H8085\"* the|strong=\"H8085\"* uttermost part|strong=\"H3671\"* of|strong=\"H3671\"* the|strong=\"H8085\"* earth have|strong=\"H8085\"* we|strong=\"H3068\"* heard|strong=\"H8085\"* songs|strong=\"H2158\"*. Glory|strong=\"H6643\"* to|strong=\"H8085\"* the|strong=\"H8085\"* righteous|strong=\"H6662\"*!" + }, + { + "verseNum": 17, + "text": "Fear|strong=\"H6343\"*, the|strong=\"H5921\"* pit|strong=\"H6354\"*, and|strong=\"H3427\"* the|strong=\"H5921\"* snare|strong=\"H6341\"* are|strong=\"H6341\"* on|strong=\"H5921\"* you|strong=\"H5921\"* who|strong=\"H3427\"* inhabit|strong=\"H3427\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 18, + "text": "It|strong=\"H3588\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H3588\"* flees|strong=\"H5127\"* from|strong=\"H5927\"* the|strong=\"H3588\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H3588\"* fear|strong=\"H6343\"* will|strong=\"H1961\"* fall|strong=\"H5307\"* into|strong=\"H5927\"* the|strong=\"H3588\"* pit|strong=\"H6354\"*; and|strong=\"H6963\"* he|strong=\"H3588\"* who|strong=\"H3588\"* comes|strong=\"H1961\"* up|strong=\"H5927\"* out|strong=\"H5307\"* of|strong=\"H6963\"* the|strong=\"H3588\"* middle|strong=\"H8432\"* of|strong=\"H6963\"* the|strong=\"H3588\"* pit|strong=\"H6354\"* will|strong=\"H1961\"* be|strong=\"H1961\"* taken|strong=\"H3920\"* in|strong=\"H8432\"* the|strong=\"H3588\"* snare|strong=\"H6341\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* windows on|strong=\"H5307\"* high|strong=\"H4791\"* are|strong=\"H1961\"* opened|strong=\"H6605\"*, and|strong=\"H6963\"* the|strong=\"H3588\"* foundations|strong=\"H4146\"* of|strong=\"H6963\"* the|strong=\"H3588\"* earth|strong=\"H5927\"* tremble|strong=\"H7493\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H6565\"* earth is utterly|strong=\"H7489\"* broken|strong=\"H6565\"*. The|strong=\"H6565\"* earth is torn apart. The|strong=\"H6565\"* earth is shaken|strong=\"H4131\"* violently|strong=\"H4131\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H5921\"* earth will|strong=\"H3808\"* stagger|strong=\"H5128\"* like|strong=\"H3808\"* a|strong=\"H3068\"* drunken|strong=\"H7910\"* man|strong=\"H7910\"*, and|strong=\"H6965\"* will|strong=\"H3808\"* sway back and|strong=\"H6965\"* forth like|strong=\"H3808\"* a|strong=\"H3068\"* hammock. Its|strong=\"H5921\"* disobedience will|strong=\"H3808\"* be|strong=\"H3808\"* heavy|strong=\"H3513\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H6965\"* it|strong=\"H5921\"* will|strong=\"H3808\"* fall|strong=\"H5307\"* and|strong=\"H6965\"* not|strong=\"H3808\"* rise|strong=\"H6965\"* again|strong=\"H3254\"*." + }, + { + "verseNum": 21, + "text": "It|strong=\"H1931\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H4428\"* the|strong=\"H5921\"* high|strong=\"H4791\"* ones|strong=\"H4791\"* on|strong=\"H5921\"* high|strong=\"H4791\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5921\"* earth on|strong=\"H5921\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 22, + "text": "They|strong=\"H3117\"* will|strong=\"H3117\"* be|strong=\"H3117\"* gathered|strong=\"H6485\"* together|strong=\"H5921\"*, as|strong=\"H3117\"* prisoners are|strong=\"H3117\"* gathered|strong=\"H6485\"* in|strong=\"H5921\"* the|strong=\"H5921\"* pit, and|strong=\"H3117\"* will|strong=\"H3117\"* be|strong=\"H3117\"* shut|strong=\"H5462\"* up|strong=\"H5462\"* in|strong=\"H5921\"* the|strong=\"H5921\"* prison|strong=\"H4525\"*; and|strong=\"H3117\"* after|strong=\"H5921\"* many|strong=\"H7230\"* days|strong=\"H3117\"* they|strong=\"H3117\"* will|strong=\"H3117\"* be|strong=\"H3117\"* visited|strong=\"H6485\"*." + }, + { + "verseNum": 23, + "text": "Then|strong=\"H3588\"* the|strong=\"H3588\"* moon|strong=\"H3842\"* will|strong=\"H3068\"* be|strong=\"H3068\"* confounded|strong=\"H2659\"*, and|strong=\"H3068\"* the|strong=\"H3588\"* sun|strong=\"H2535\"* ashamed|strong=\"H2659\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* will|strong=\"H3068\"* reign|strong=\"H4427\"* on|strong=\"H3068\"* Mount|strong=\"H2022\"* Zion|strong=\"H6726\"* and|strong=\"H3068\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H3068\"* glory|strong=\"H3519\"* will|strong=\"H3068\"* be|strong=\"H3068\"* before|strong=\"H5048\"* his|strong=\"H3068\"* elders|strong=\"H2205\"*." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, you|strong=\"H3588\"* are|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* exalt|strong=\"H7311\"* you|strong=\"H3588\"*! I|strong=\"H3588\"* will|strong=\"H3068\"* praise|strong=\"H3034\"* your|strong=\"H3068\"* name|strong=\"H8034\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"* wonderful|strong=\"H6382\"* things|strong=\"H6382\"*, things|strong=\"H6382\"* planned long|strong=\"H7350\"* ago|strong=\"H7350\"*, in|strong=\"H3068\"* complete faithfulness and|strong=\"H3068\"* truth." + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1129\"* made|strong=\"H7760\"* a|strong=\"H3068\"* city|strong=\"H5892\"* into|strong=\"H5892\"* a|strong=\"H3068\"* heap|strong=\"H1530\"*, a|strong=\"H3068\"* fortified|strong=\"H1219\"* city|strong=\"H5892\"* into|strong=\"H5892\"* a|strong=\"H3068\"* ruin|strong=\"H4654\"*, a|strong=\"H3068\"* palace of|strong=\"H5892\"* strangers|strong=\"H2114\"* to|strong=\"H5892\"* be|strong=\"H3808\"* no|strong=\"H3808\"* city|strong=\"H5892\"*. It|strong=\"H7760\"* will|strong=\"H5892\"* never|strong=\"H3808\"* be|strong=\"H3808\"* built|strong=\"H1129\"*." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H3651\"* a|strong=\"H3068\"* strong|strong=\"H5794\"* people|strong=\"H5971\"* will|strong=\"H1471\"* glorify|strong=\"H3513\"* you|strong=\"H5921\"*. A|strong=\"H3068\"* city|strong=\"H7151\"* of|strong=\"H5971\"* awesome|strong=\"H3372\"* nations|strong=\"H1471\"* will|strong=\"H1471\"* fear|strong=\"H3372\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* been|strong=\"H1961\"* a|strong=\"H3068\"* stronghold|strong=\"H4581\"* to|strong=\"H1961\"* the|strong=\"H3588\"* poor|strong=\"H1800\"*, a|strong=\"H3068\"* stronghold|strong=\"H4581\"* to|strong=\"H1961\"* the|strong=\"H3588\"* needy|strong=\"H1800\"* in|strong=\"H1961\"* his|strong=\"H1961\"* distress|strong=\"H6862\"*, a|strong=\"H3068\"* refuge|strong=\"H4268\"* from|strong=\"H7307\"* the|strong=\"H3588\"* storm|strong=\"H2230\"*, a|strong=\"H3068\"* shade|strong=\"H6738\"* from|strong=\"H7307\"* the|strong=\"H3588\"* heat|strong=\"H2721\"*, when|strong=\"H3588\"* the|strong=\"H3588\"* blast|strong=\"H7307\"* of|strong=\"H7307\"* the|strong=\"H3588\"* dreaded ones|strong=\"H6184\"* is|strong=\"H7307\"* like|strong=\"H1961\"* a|strong=\"H3068\"* storm|strong=\"H2230\"* against|strong=\"H7307\"* the|strong=\"H3588\"* wall|strong=\"H7023\"*." + }, + { + "verseNum": 5, + "text": "As|strong=\"H5645\"* the|strong=\"H6030\"* heat|strong=\"H2721\"* in|strong=\"H6030\"* a|strong=\"H3068\"* dry|strong=\"H2721\"* place|strong=\"H6724\"* you|strong=\"H2114\"* will|strong=\"H2114\"* bring down|strong=\"H3665\"* the|strong=\"H6030\"* noise|strong=\"H7588\"* of|strong=\"H7588\"* strangers|strong=\"H2114\"*; as|strong=\"H5645\"* the|strong=\"H6030\"* heat|strong=\"H2721\"* by|strong=\"H6030\"* the|strong=\"H6030\"* shade|strong=\"H6738\"* of|strong=\"H7588\"* a|strong=\"H3068\"* cloud|strong=\"H5645\"*, the|strong=\"H6030\"* song|strong=\"H2158\"* of|strong=\"H7588\"* the|strong=\"H6030\"* dreaded ones|strong=\"H6184\"* will|strong=\"H2114\"* be|strong=\"H2114\"* brought|strong=\"H3665\"* low|strong=\"H3665\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"H3068\"* this|strong=\"H2088\"* mountain|strong=\"H2022\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* will|strong=\"H3068\"* make|strong=\"H6213\"* all|strong=\"H3605\"* peoples|strong=\"H5971\"* a|strong=\"H3068\"* feast|strong=\"H4960\"* of|strong=\"H3068\"* choice|strong=\"H8081\"* meat,+ 25:6 literally, fat things* a|strong=\"H3068\"* feast|strong=\"H4960\"* of|strong=\"H3068\"* choice|strong=\"H8081\"* wines, of|strong=\"H3068\"* choice|strong=\"H8081\"* meat full|strong=\"H3605\"* of|strong=\"H3068\"* marrow|strong=\"H4229\"*, of|strong=\"H3068\"* well|strong=\"H8105\"* refined|strong=\"H2212\"* choice|strong=\"H8081\"* wines." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3605\"* will|strong=\"H1471\"* destroy|strong=\"H1104\"* in|strong=\"H5921\"* this|strong=\"H2088\"* mountain|strong=\"H2022\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H2022\"* the|strong=\"H3605\"* covering|strong=\"H4541\"* that|strong=\"H5971\"* covers all|strong=\"H3605\"* peoples|strong=\"H5971\"*, and|strong=\"H5971\"* the|strong=\"H3605\"* veil|strong=\"H4541\"* that|strong=\"H5971\"* is|strong=\"H2088\"* spread|strong=\"H5259\"* over|strong=\"H5921\"* all|strong=\"H3605\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3588\"* has|strong=\"H3068\"* swallowed|strong=\"H1104\"* up|strong=\"H1104\"* death|strong=\"H4194\"* forever|strong=\"H5331\"*! The|strong=\"H3605\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* wipe|strong=\"H4229\"* away|strong=\"H5493\"* tears|strong=\"H1832\"* from|strong=\"H5493\"* off|strong=\"H5493\"* all|strong=\"H3605\"* faces|strong=\"H6440\"*. He|strong=\"H3588\"* will|strong=\"H3068\"* take|strong=\"H5493\"* the|strong=\"H3605\"* reproach|strong=\"H2781\"* of|strong=\"H3068\"* his|strong=\"H3605\"* people|strong=\"H5971\"* away|strong=\"H5493\"* from|strong=\"H5493\"* off|strong=\"H5493\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* said in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, “Behold|strong=\"H2009\"*, this|strong=\"H2088\"* is|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*! We|strong=\"H3117\"* have|strong=\"H3068\"* waited|strong=\"H6960\"* for|strong=\"H3068\"* him|strong=\"H1931\"*, and|strong=\"H3068\"* he|strong=\"H1931\"* will|strong=\"H3068\"* save|strong=\"H3467\"* us|strong=\"H3117\"*! This|strong=\"H2088\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*! We|strong=\"H3117\"* have|strong=\"H3068\"* waited|strong=\"H6960\"* for|strong=\"H3068\"* him|strong=\"H1931\"*. We|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H3068\"* glad|strong=\"H8055\"* and|strong=\"H3068\"* rejoice|strong=\"H8055\"* in|strong=\"H3068\"* his|strong=\"H3068\"* salvation|strong=\"H3444\"*!”" + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* will|strong=\"H3068\"* rest|strong=\"H5117\"* in|strong=\"H3068\"* this|strong=\"H2088\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3027\"* will|strong=\"H3027\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* his|strong=\"H3027\"* hands|strong=\"H3027\"* in|strong=\"H7130\"* the|strong=\"H3027\"* middle|strong=\"H7130\"* of|strong=\"H3027\"* it|strong=\"H6566\"*, like|strong=\"H5973\"* one|strong=\"H3027\"* who swims spreads|strong=\"H6566\"* out|strong=\"H6566\"* hands|strong=\"H3027\"* to|strong=\"H3027\"* swim|strong=\"H7811\"*, but|strong=\"H1346\"* his|strong=\"H3027\"* pride|strong=\"H1346\"* will|strong=\"H3027\"* be|strong=\"H3027\"* humbled|strong=\"H8213\"* together|strong=\"H5973\"* with|strong=\"H5973\"* the|strong=\"H3027\"* craft of|strong=\"H3027\"* his|strong=\"H3027\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H5704\"* has|strong=\"H4869\"* brought|strong=\"H5060\"* the|strong=\"H5704\"* high fortress|strong=\"H4013\"* of|strong=\"H2346\"* your|strong=\"H5704\"* walls|strong=\"H2346\"* down|strong=\"H7817\"*, laid|strong=\"H5060\"* low|strong=\"H8213\"*, and|strong=\"H6083\"* brought|strong=\"H5060\"* to|strong=\"H5704\"* the|strong=\"H5704\"* ground|strong=\"H6083\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* dust|strong=\"H6083\"*." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, this|strong=\"H2088\"* song|strong=\"H7892\"* will|strong=\"H5892\"* be|strong=\"H3117\"* sung|strong=\"H7891\"* in|strong=\"H3117\"* the|strong=\"H3117\"* land of|strong=\"H3117\"* Judah|strong=\"H3063\"*:" + }, + { + "verseNum": 2, + "text": "Open|strong=\"H6605\"* the|strong=\"H8104\"* gates|strong=\"H8179\"*, that|strong=\"H1471\"* the|strong=\"H8104\"* righteous|strong=\"H6662\"* nation|strong=\"H1471\"* may|strong=\"H1471\"* enter:" + }, + { + "verseNum": 3, + "text": "You|strong=\"H3588\"* will|strong=\"H3588\"* keep|strong=\"H5341\"* whoever’s mind|strong=\"H3336\"* is|strong=\"H3588\"* steadfast|strong=\"H5564\"* in|strong=\"H7965\"* perfect|strong=\"H7965\"* peace|strong=\"H7965\"*," + }, + { + "verseNum": 4, + "text": "Trust in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* forever|strong=\"H5769\"*;" + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* brought|strong=\"H5060\"* down|strong=\"H3427\"* those|strong=\"H3427\"* who|strong=\"H3427\"* dwell|strong=\"H3427\"* on|strong=\"H3427\"* high|strong=\"H4791\"*, the|strong=\"H3588\"* lofty|strong=\"H4791\"* city|strong=\"H7151\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H7429\"* foot|strong=\"H7272\"* shall|strong=\"H7272\"* tread|strong=\"H7429\"* it|strong=\"H7429\"* down|strong=\"H7429\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H6424\"* way|strong=\"H4570\"* of|strong=\"H4570\"* the|strong=\"H6424\"* just|strong=\"H6662\"* is|strong=\"H6662\"* uprightness|strong=\"H4339\"*." + }, + { + "verseNum": 8, + "text": "Yes, in|strong=\"H3068\"* the|strong=\"H3068\"* way|strong=\"H4941\"* of|strong=\"H3068\"* your|strong=\"H3068\"* judgments|strong=\"H4941\"*, Yahweh|strong=\"H3068\"*, we|strong=\"H3068\"* have|strong=\"H3068\"* waited|strong=\"H6960\"* for|strong=\"H8034\"* you|strong=\"H5315\"*." + }, + { + "verseNum": 9, + "text": "With|strong=\"H3427\"* my|strong=\"H3588\"* soul|strong=\"H5315\"* I|strong=\"H3588\"* have|strong=\"H3588\"* desired you|strong=\"H3588\"* in|strong=\"H3427\"* the|strong=\"H3588\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 10, + "text": "Let favor|strong=\"H2603\"* be|strong=\"H3068\"* shown|strong=\"H7200\"* to|strong=\"H3068\"* the|strong=\"H7200\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"*, your|strong=\"H3068\"* hand|strong=\"H3027\"* is|strong=\"H3068\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"*, yet|strong=\"H3068\"* they|strong=\"H3068\"* don’t see|strong=\"H2372\"*;" + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"*, you|strong=\"H3588\"* will|strong=\"H3068\"* ordain|strong=\"H8239\"* peace|strong=\"H7965\"* for|strong=\"H3588\"* us|strong=\"H3588\"*," + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, other lords besides|strong=\"H2108\"* you|strong=\"H2142\"* have|strong=\"H3068\"* had|strong=\"H3068\"* dominion|strong=\"H1166\"* over|strong=\"H3068\"* us|strong=\"H2142\"*," + }, + { + "verseNum": 14, + "text": "The|strong=\"H3605\"* dead|strong=\"H4191\"* shall|strong=\"H2143\"* not|strong=\"H1077\"* live|strong=\"H2421\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H3605\"* have|strong=\"H3068\"* increased|strong=\"H3254\"* the|strong=\"H3605\"* nation|strong=\"H1471\"*, O|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"*, in|strong=\"H3068\"* trouble|strong=\"H6862\"* they|strong=\"H3068\"* have|strong=\"H3068\"* visited|strong=\"H6485\"* you|strong=\"H6485\"*." + }, + { + "verseNum": 17, + "text": "Just as|strong=\"H1961\"* a|strong=\"H3068\"* woman|strong=\"H2030\"* with|strong=\"H3068\"* child|strong=\"H2030\"*, who|strong=\"H3068\"* draws|strong=\"H7126\"* near|strong=\"H7126\"* the|strong=\"H6440\"* time|strong=\"H6440\"* of|strong=\"H3068\"* her|strong=\"H3205\"* delivery|strong=\"H3205\"*," + }, + { + "verseNum": 18, + "text": "We|strong=\"H6213\"* have|strong=\"H3205\"* been|strong=\"H3644\"* with|strong=\"H6213\"* child|strong=\"H3205\"*." + }, + { + "verseNum": 19, + "text": "Your|strong=\"H3588\"* dead|strong=\"H4191\"* shall|strong=\"H5038\"* live|strong=\"H2421\"*." + }, + { + "verseNum": 20, + "text": "Come|strong=\"H3212\"*, my|strong=\"H5674\"* people|strong=\"H5971\"*, enter|strong=\"H5674\"* into|strong=\"H3212\"* your|strong=\"H5674\"* rooms|strong=\"H2315\"*," + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* his|strong=\"H3068\"* place|strong=\"H4725\"* to|strong=\"H3318\"* punish|strong=\"H6485\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H5921\"* earth for|strong=\"H3588\"* their|strong=\"H3068\"* iniquity|strong=\"H5771\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* his|strong=\"H3068\"* hard|strong=\"H7186\"* and|strong=\"H3068\"* great|strong=\"H1419\"* and|strong=\"H3068\"* strong|strong=\"H2389\"* sword|strong=\"H2719\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* leviathan|strong=\"H3882\"*, the|strong=\"H5921\"* fleeing|strong=\"H1281\"* serpent|strong=\"H5175\"*, and|strong=\"H3068\"* leviathan|strong=\"H3882\"*, the|strong=\"H5921\"* twisted|strong=\"H6129\"* serpent|strong=\"H5175\"*; and|strong=\"H3068\"* he|strong=\"H1931\"* will|strong=\"H3068\"* kill|strong=\"H2026\"* the|strong=\"H5921\"* dragon|strong=\"H8577\"* that|strong=\"H3117\"* is|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 2, + "text": "In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, sing|strong=\"H6030\"* to|strong=\"H3117\"* her|strong=\"H1931\"*, “A|strong=\"H3068\"* pleasant|strong=\"H2531\"* vineyard|strong=\"H3754\"*!" + }, + { + "verseNum": 3, + "text": "I|strong=\"H3117\"*, Yahweh|strong=\"H3068\"*, am|strong=\"H3068\"* its|strong=\"H5921\"* keeper|strong=\"H5341\"*. I|strong=\"H3117\"* will|strong=\"H3068\"* water|strong=\"H8248\"* it|strong=\"H5921\"* every|strong=\"H3117\"* moment|strong=\"H7281\"*. Lest|strong=\"H6435\"* anyone damage|strong=\"H6485\"* it|strong=\"H5921\"*, I|strong=\"H3117\"* will|strong=\"H3068\"* keep|strong=\"H5341\"* it|strong=\"H5921\"* night|strong=\"H3915\"* and|strong=\"H3068\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 4, + "text": "Wrath|strong=\"H2534\"* is|strong=\"H4310\"* not|strong=\"H5414\"* in|strong=\"H4421\"* me|strong=\"H5414\"*, but if I|strong=\"H5414\"* should|strong=\"H4310\"* find|strong=\"H5414\"* briers|strong=\"H8068\"* and|strong=\"H4421\"* thorns|strong=\"H7898\"*, I|strong=\"H5414\"* would|strong=\"H4310\"* do|strong=\"H4310\"* battle|strong=\"H4421\"*! I|strong=\"H5414\"* would|strong=\"H4310\"* march on|strong=\"H5414\"* them|strong=\"H5414\"* and|strong=\"H4421\"* I|strong=\"H5414\"* would|strong=\"H4310\"* burn|strong=\"H6702\"* them|strong=\"H5414\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 5, + "text": "Or|strong=\"H6213\"* else let him|strong=\"H6213\"* take|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H6213\"* my|strong=\"H6213\"* strength|strong=\"H4581\"*, that|strong=\"H6213\"* he|strong=\"H6213\"* may|strong=\"H6213\"* make|strong=\"H6213\"* peace|strong=\"H7965\"* with|strong=\"H6213\"* me|strong=\"H6213\"*. Let him|strong=\"H6213\"* make|strong=\"H6213\"* peace|strong=\"H7965\"* with|strong=\"H6213\"* me|strong=\"H6213\"*.”" + }, + { + "verseNum": 6, + "text": "In|strong=\"H3478\"* days to|strong=\"H3478\"* come|strong=\"H3478\"*, Jacob|strong=\"H3290\"* will|strong=\"H3478\"* take|strong=\"H8327\"* root|strong=\"H8327\"*. Israel|strong=\"H3478\"* will|strong=\"H3478\"* blossom|strong=\"H6524\"* and|strong=\"H3478\"* bud|strong=\"H6524\"*. They|strong=\"H6440\"* will|strong=\"H3478\"* fill|strong=\"H4390\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* world|strong=\"H8398\"* with|strong=\"H4390\"* fruit|strong=\"H8570\"*." + }, + { + "verseNum": 7, + "text": "Has he|strong=\"H5221\"* struck|strong=\"H5221\"* them|strong=\"H5221\"* as|strong=\"H5221\"* he|strong=\"H5221\"* struck|strong=\"H5221\"* those who|strong=\"H5221\"* struck|strong=\"H5221\"* them|strong=\"H5221\"*? Or are|strong=\"H4347\"* they|strong=\"H5221\"* killed|strong=\"H2026\"* like|strong=\"H2026\"* those who|strong=\"H5221\"* killed|strong=\"H2026\"* them|strong=\"H5221\"* were killed|strong=\"H2026\"*?" + }, + { + "verseNum": 8, + "text": "In|strong=\"H3117\"* measure|strong=\"H5432\"*, when|strong=\"H3117\"* you|strong=\"H7971\"* send|strong=\"H7971\"* them|strong=\"H7971\"* away|strong=\"H7971\"*, you|strong=\"H7971\"* contend|strong=\"H7378\"* with|strong=\"H3117\"* them|strong=\"H7971\"*. He|strong=\"H3117\"* has|strong=\"H3117\"* removed them|strong=\"H7971\"* with|strong=\"H3117\"* his|strong=\"H7971\"* rough|strong=\"H7186\"* blast|strong=\"H7307\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* east|strong=\"H6921\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H3651\"* by|strong=\"H6965\"* this|strong=\"H2088\"* the|strong=\"H3605\"* iniquity|strong=\"H5771\"* of|strong=\"H4196\"* Jacob|strong=\"H3290\"* will|strong=\"H3808\"* be|strong=\"H3808\"* forgiven|strong=\"H3722\"*, and|strong=\"H6965\"* this|strong=\"H2088\"* is|strong=\"H2088\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H4196\"* taking|strong=\"H7760\"* away|strong=\"H5493\"* his|strong=\"H3605\"* sin|strong=\"H2403\"*: that|strong=\"H3605\"* he|strong=\"H3651\"* makes|strong=\"H7760\"* all|strong=\"H3605\"* the|strong=\"H3605\"* stones of|strong=\"H4196\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* as|strong=\"H3651\"* chalk|strong=\"H1615\"* stones that|strong=\"H3605\"* are|strong=\"H2403\"* beaten in|strong=\"H5493\"* pieces|strong=\"H5310\"*, so|strong=\"H3651\"* that|strong=\"H3605\"* the|strong=\"H3605\"* Asherah poles and|strong=\"H6965\"* the|strong=\"H3605\"* incense|strong=\"H2553\"* altars|strong=\"H4196\"* shall|strong=\"H3808\"* rise|strong=\"H6965\"* no|strong=\"H3808\"* more|strong=\"H3651\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* fortified|strong=\"H1219\"* city|strong=\"H5892\"* is|strong=\"H5892\"* solitary, a|strong=\"H3068\"* habitation|strong=\"H5116\"* deserted|strong=\"H5800\"* and|strong=\"H7971\"* forsaken|strong=\"H5800\"*, like|strong=\"H4057\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"*. The|strong=\"H3588\"* calf|strong=\"H5695\"* will|strong=\"H5892\"* feed|strong=\"H7462\"* there|strong=\"H8033\"*, and|strong=\"H7971\"* there|strong=\"H8033\"* he|strong=\"H3588\"* will|strong=\"H5892\"* lie|strong=\"H7257\"* down|strong=\"H7257\"*, and|strong=\"H7971\"* consume|strong=\"H3615\"* its|strong=\"H3588\"* branches|strong=\"H5585\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H3588\"* its|strong=\"H5921\"* boughs|strong=\"H7105\"* are|strong=\"H5971\"* withered|strong=\"H3001\"*, they|strong=\"H3588\"* will|strong=\"H5971\"* be|strong=\"H3808\"* broken|strong=\"H7665\"* off|strong=\"H5921\"*. The|strong=\"H5921\"* women will|strong=\"H5971\"* come|strong=\"H5971\"* and|strong=\"H5971\"* set|strong=\"H6213\"* them|strong=\"H5921\"* on|strong=\"H5921\"* fire, for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H5971\"* a|strong=\"H3068\"* people|strong=\"H5971\"* of|strong=\"H5971\"* no|strong=\"H3808\"* understanding. Therefore|strong=\"H3651\"* he|strong=\"H1931\"* who|strong=\"H1931\"* made|strong=\"H6213\"* them|strong=\"H5921\"* will|strong=\"H5971\"* not|strong=\"H3808\"* have|strong=\"H7355\"* compassion|strong=\"H7355\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H5971\"* he|strong=\"H1931\"* who|strong=\"H1931\"* formed|strong=\"H3335\"* them|strong=\"H5921\"* will|strong=\"H5971\"* show|strong=\"H6213\"* them|strong=\"H5921\"* no|strong=\"H3808\"* favor|strong=\"H2603\"*." + }, + { + "verseNum": 12, + "text": "It|strong=\"H1931\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* in|strong=\"H3478\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* thresh from|strong=\"H3478\"* the|strong=\"H3068\"* flowing|strong=\"H5158\"* stream|strong=\"H5158\"* of|strong=\"H1121\"* the|strong=\"H3068\"* Euphrates|strong=\"H5104\"* to|strong=\"H5704\"* the|strong=\"H3068\"* brook|strong=\"H5158\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*; and|strong=\"H1121\"* you|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H1961\"* gathered|strong=\"H3950\"* one|strong=\"H1931\"* by|strong=\"H3117\"* one|strong=\"H1931\"*, children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 13, + "text": "It|strong=\"H1931\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* a|strong=\"H3068\"* great|strong=\"H1419\"* trumpet|strong=\"H7782\"* will|strong=\"H3068\"* be|strong=\"H1961\"* blown|strong=\"H8628\"*; and|strong=\"H3068\"* those|strong=\"H1931\"* who|strong=\"H1931\"* were|strong=\"H1961\"* ready to|strong=\"H3068\"* perish in|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Assyria, and|strong=\"H3068\"* those|strong=\"H1931\"* who|strong=\"H1931\"* were|strong=\"H1961\"* outcasts|strong=\"H5080\"* in|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, shall|strong=\"H3068\"* come|strong=\"H1961\"*; and|strong=\"H3068\"* they|strong=\"H3117\"* will|strong=\"H3068\"* worship|strong=\"H7812\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* holy|strong=\"H6944\"* mountain|strong=\"H2022\"* at|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "Woe|strong=\"H1945\"* to|strong=\"H5921\"* the|strong=\"H5921\"* crown|strong=\"H5850\"* of|strong=\"H7218\"* pride|strong=\"H1348\"* of|strong=\"H7218\"* the|strong=\"H5921\"* drunkards|strong=\"H7910\"* of|strong=\"H7218\"* Ephraim, and|strong=\"H7218\"* to|strong=\"H5921\"* the|strong=\"H5921\"* fading|strong=\"H5034\"* flower|strong=\"H6731\"* of|strong=\"H7218\"* his|strong=\"H5921\"* glorious|strong=\"H8597\"* beauty|strong=\"H8597\"*, which|strong=\"H3196\"* is|strong=\"H7218\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* fertile|strong=\"H8081\"* valley|strong=\"H1516\"* of|strong=\"H7218\"* those|strong=\"H1945\"* who|strong=\"H1945\"* are overcome|strong=\"H1986\"* with|strong=\"H5921\"* wine|strong=\"H3196\"*!" + }, + { + "verseNum": 2, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H3027\"* Lord has|strong=\"H3027\"* one|strong=\"H3027\"* who|strong=\"H2389\"* is|strong=\"H3027\"* mighty|strong=\"H2389\"* and|strong=\"H3027\"* strong|strong=\"H2389\"*. Like a|strong=\"H3068\"* storm|strong=\"H2230\"* of|strong=\"H3027\"* hail|strong=\"H1259\"*, a|strong=\"H3068\"* destroying|strong=\"H6986\"* storm|strong=\"H2230\"*, and|strong=\"H3027\"* like a|strong=\"H3068\"* storm|strong=\"H2230\"* of|strong=\"H3027\"* mighty|strong=\"H2389\"* waters|strong=\"H4325\"* overflowing|strong=\"H7857\"*, he|strong=\"H3027\"* will|strong=\"H3027\"* cast|strong=\"H4325\"* them|strong=\"H3027\"* down|strong=\"H3240\"* to|strong=\"H3027\"* the|strong=\"H3027\"* earth with|strong=\"H3027\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H7429\"* crown|strong=\"H5850\"* of|strong=\"H5850\"* pride|strong=\"H1348\"* of|strong=\"H5850\"* the|strong=\"H7429\"* drunkards|strong=\"H7910\"* of|strong=\"H5850\"* Ephraim will|strong=\"H7272\"* be trodden|strong=\"H7429\"* under|strong=\"H7429\"* foot|strong=\"H7272\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H5921\"* fading|strong=\"H5034\"* flower|strong=\"H6733\"* of|strong=\"H7218\"* his|strong=\"H5921\"* glorious|strong=\"H8597\"* beauty|strong=\"H8597\"*, which is|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* fertile|strong=\"H8081\"* valley|strong=\"H1516\"*, shall|strong=\"H7218\"* be|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H5921\"* first-ripe fig before|strong=\"H2962\"* the|strong=\"H5921\"* summer|strong=\"H7019\"*, which someone picks and|strong=\"H7218\"* eats as|strong=\"H1961\"* soon|strong=\"H5750\"* as|strong=\"H1961\"* he|strong=\"H5921\"* sees|strong=\"H7200\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "In|strong=\"H3068\"* that|strong=\"H5971\"* day|strong=\"H3117\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* will|strong=\"H3068\"* become|strong=\"H1961\"* a|strong=\"H3068\"* crown|strong=\"H5850\"* of|strong=\"H3068\"* glory|strong=\"H8597\"* and|strong=\"H3068\"* a|strong=\"H3068\"* diadem|strong=\"H6843\"* of|strong=\"H3068\"* beauty|strong=\"H8597\"* to|strong=\"H3068\"* the|strong=\"H3068\"* residue|strong=\"H7605\"* of|strong=\"H3068\"* his|strong=\"H3068\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 6, + "text": "and|strong=\"H7725\"* a|strong=\"H3068\"* spirit|strong=\"H7307\"* of|strong=\"H3427\"* justice|strong=\"H4941\"* to|strong=\"H7725\"* him|strong=\"H5921\"* who|strong=\"H3427\"* sits|strong=\"H3427\"* in|strong=\"H3427\"* judgment|strong=\"H4941\"*, and|strong=\"H7725\"* strength|strong=\"H1369\"* to|strong=\"H7725\"* those|strong=\"H5921\"* who|strong=\"H3427\"* turn|strong=\"H7725\"* back|strong=\"H7725\"* the|strong=\"H5921\"* battle|strong=\"H4421\"* at|strong=\"H3427\"* the|strong=\"H5921\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H1571\"* also|strong=\"H1571\"* reel|strong=\"H7686\"* with|strong=\"H3548\"* wine|strong=\"H3196\"*, and|strong=\"H3548\"* stagger|strong=\"H8582\"* with|strong=\"H3548\"* strong|strong=\"H7941\"* drink|strong=\"H7941\"*. The|strong=\"H4480\"* priest|strong=\"H3548\"* and|strong=\"H3548\"* the|strong=\"H4480\"* prophet|strong=\"H5030\"* reel|strong=\"H7686\"* with|strong=\"H3548\"* strong|strong=\"H7941\"* drink|strong=\"H7941\"*. They|strong=\"H1571\"* are|strong=\"H5030\"* swallowed|strong=\"H1104\"* up|strong=\"H1104\"* by|strong=\"H1571\"* wine|strong=\"H3196\"*. They|strong=\"H1571\"* stagger|strong=\"H8582\"* with|strong=\"H3548\"* strong|strong=\"H7941\"* drink|strong=\"H7941\"*. They|strong=\"H1571\"* err|strong=\"H8582\"* in|strong=\"H1571\"* vision|strong=\"H7203\"*. They|strong=\"H1571\"* stumble|strong=\"H6328\"* in|strong=\"H1571\"* judgment|strong=\"H6417\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* tables|strong=\"H7979\"* are|strong=\"H7979\"* completely|strong=\"H3605\"* full|strong=\"H4390\"* of|strong=\"H4390\"* filthy|strong=\"H6675\"* vomit|strong=\"H6892\"* and|strong=\"H4725\"* filthiness|strong=\"H6675\"*." + }, + { + "verseNum": 9, + "text": "Whom|strong=\"H4310\"* will|strong=\"H4310\"* he|strong=\"H4310\"* teach|strong=\"H3384\"* knowledge|strong=\"H1844\"*? To|strong=\"H7699\"* whom|strong=\"H4310\"* will|strong=\"H4310\"* he|strong=\"H4310\"* explain the|strong=\"H3384\"* message|strong=\"H8052\"*? Those who|strong=\"H4310\"* are|strong=\"H4310\"* weaned|strong=\"H1580\"* from|strong=\"H1580\"* the|strong=\"H3384\"* milk|strong=\"H2461\"*, and|strong=\"H2461\"* drawn|strong=\"H6267\"* from|strong=\"H1580\"* the|strong=\"H3384\"* breasts|strong=\"H7699\"*?" + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H8033\"* precept|strong=\"H6673\"* on|strong=\"H6957\"* precept|strong=\"H6673\"*, precept|strong=\"H6673\"* on|strong=\"H6957\"* precept|strong=\"H6673\"*; line|strong=\"H6957\"* on|strong=\"H6957\"* line|strong=\"H6957\"*, line|strong=\"H6957\"* on|strong=\"H6957\"* line|strong=\"H6957\"*; here|strong=\"H8033\"* a|strong=\"H3068\"* little|strong=\"H2191\"*, there|strong=\"H8033\"* a|strong=\"H3068\"* little|strong=\"H2191\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H5971\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* this|strong=\"H2088\"* nation|strong=\"H5971\"* with|strong=\"H1696\"* stammering|strong=\"H3934\"* lips|strong=\"H8193\"* and|strong=\"H5971\"* in|strong=\"H1696\"* another|strong=\"H2088\"* language|strong=\"H3956\"*," + }, + { + "verseNum": 12, + "text": "to|strong=\"H8085\"* whom he|strong=\"H3808\"* said|strong=\"H8085\"*, “This|strong=\"H2063\"* is|strong=\"H8085\"* the|strong=\"H8085\"* resting|strong=\"H4496\"* place|strong=\"H4496\"*. Give|strong=\"H5117\"* rest|strong=\"H5117\"* to|strong=\"H8085\"* the|strong=\"H8085\"* weary|strong=\"H5889\"*,” and|strong=\"H8085\"* “This|strong=\"H2063\"* is|strong=\"H8085\"* the|strong=\"H8085\"* refreshing|strong=\"H4774\"*;” yet|strong=\"H3808\"* they|strong=\"H3808\"* would not|strong=\"H3808\"* hear|strong=\"H8085\"*." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* will|strong=\"H3068\"* be|strong=\"H1961\"* to|strong=\"H3212\"* them|strong=\"H1992\"* precept|strong=\"H6673\"* on|strong=\"H3068\"* precept|strong=\"H6673\"*, precept|strong=\"H6673\"* on|strong=\"H3068\"* precept|strong=\"H6673\"*; line|strong=\"H6957\"* on|strong=\"H3068\"* line|strong=\"H6957\"*, line|strong=\"H6957\"* on|strong=\"H3068\"* line|strong=\"H6957\"*; here|strong=\"H8033\"* a|strong=\"H3068\"* little|strong=\"H2191\"*, there|strong=\"H8033\"* a|strong=\"H3068\"* little|strong=\"H2191\"*; that|strong=\"H3068\"* they|strong=\"H1992\"* may|strong=\"H1961\"* go|strong=\"H3212\"*, fall|strong=\"H3782\"* backward, be|strong=\"H1961\"* broken|strong=\"H7665\"*, be|strong=\"H1961\"* snared|strong=\"H3369\"*, and|strong=\"H3068\"* be|strong=\"H1961\"* taken|strong=\"H3920\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H3651\"* hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, you|strong=\"H3651\"* scoffers, that|strong=\"H5971\"* rule|strong=\"H4910\"* this|strong=\"H2088\"* people|strong=\"H5971\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*:" + }, + { + "verseNum": 15, + "text": "“Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* said, ‘We|strong=\"H3588\"* have|strong=\"H3588\"* made|strong=\"H6213\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H5973\"* death|strong=\"H4194\"*, and|strong=\"H6213\"* we|strong=\"H3068\"* are|strong=\"H6213\"* in|strong=\"H6213\"* agreement|strong=\"H1285\"* with|strong=\"H5973\"* Sheol|strong=\"H7585\"*.+ 28:15 Sheol is the place of the dead.* When|strong=\"H3588\"* the|strong=\"H3588\"* overflowing|strong=\"H7857\"* scourge passes|strong=\"H5674\"* through|strong=\"H5674\"*, it|strong=\"H7760\"* won’t come|strong=\"H5674\"* to|strong=\"H6213\"* us|strong=\"H6213\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3588\"* made|strong=\"H6213\"* lies|strong=\"H3577\"* our|strong=\"H3588\"* refuge|strong=\"H4268\"*, and|strong=\"H6213\"* we|strong=\"H3068\"* have|strong=\"H3588\"* hidden|strong=\"H5641\"* ourselves under|strong=\"H6213\"* falsehood|strong=\"H8267\"*.’”" + }, + { + "verseNum": 16, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* lay|strong=\"H3245\"* in|strong=\"H3808\"* Zion|strong=\"H6726\"* for|strong=\"H3651\"* a|strong=\"H3068\"* foundation|strong=\"H3245\"* a|strong=\"H3068\"* stone, a|strong=\"H3068\"* tried stone, a|strong=\"H3068\"* precious|strong=\"H3368\"* cornerstone|strong=\"H6438\"* of|strong=\"H3069\"* a|strong=\"H3068\"* sure|strong=\"H3245\"* foundation|strong=\"H3245\"*. He|strong=\"H3651\"* who|strong=\"H3808\"* believes shall|strong=\"H3808\"* not|strong=\"H3808\"* act hastily." + }, + { + "verseNum": 17, + "text": "I|strong=\"H7760\"* will|strong=\"H4325\"* make|strong=\"H7760\"* justice|strong=\"H4941\"* the|strong=\"H7760\"* measuring|strong=\"H6957\"* line|strong=\"H6957\"*, and|strong=\"H4941\"* righteousness|strong=\"H6666\"* the|strong=\"H7760\"* plumb line|strong=\"H6957\"*. The|strong=\"H7760\"* hail|strong=\"H1259\"* will|strong=\"H4325\"* sweep|strong=\"H3261\"* away|strong=\"H7857\"* the|strong=\"H7760\"* refuge|strong=\"H4268\"* of|strong=\"H4325\"* lies|strong=\"H3577\"*, and|strong=\"H4941\"* the|strong=\"H7760\"* waters|strong=\"H4325\"* will|strong=\"H4325\"* overflow|strong=\"H7857\"* the|strong=\"H7760\"* hiding|strong=\"H5643\"* place|strong=\"H7760\"*." + }, + { + "verseNum": 18, + "text": "Your|strong=\"H3588\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* death|strong=\"H4194\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* annulled, and|strong=\"H6965\"* your|strong=\"H3588\"* agreement|strong=\"H1285\"* with|strong=\"H1285\"* Sheol|strong=\"H7585\"*+ 28:18 Sheol is the place of the dead.* shall|strong=\"H3808\"* not|strong=\"H3808\"* stand|strong=\"H6965\"*. When|strong=\"H3588\"* the|strong=\"H3588\"* overflowing|strong=\"H7857\"* scourge|strong=\"H7752\"* passes|strong=\"H5674\"* through|strong=\"H5674\"*, then|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* trampled|strong=\"H4823\"* down|strong=\"H4823\"* by|strong=\"H5674\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 19, + "text": "As|strong=\"H3117\"* often|strong=\"H1767\"* as|strong=\"H3117\"* it|strong=\"H3588\"* passes|strong=\"H5674\"* through|strong=\"H5674\"*, it|strong=\"H3588\"* will|strong=\"H1961\"* seize|strong=\"H3947\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* morning|strong=\"H1242\"* by|strong=\"H5674\"* morning|strong=\"H1242\"* it|strong=\"H3588\"* will|strong=\"H1961\"* pass|strong=\"H5674\"* through|strong=\"H5674\"*, by|strong=\"H5674\"* day|strong=\"H3117\"* and|strong=\"H3117\"* by|strong=\"H5674\"* night|strong=\"H3915\"*; and|strong=\"H3117\"* it|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* nothing|strong=\"H1767\"* but|strong=\"H3588\"* terror|strong=\"H2113\"* to|strong=\"H1961\"* understand the|strong=\"H3588\"* message|strong=\"H8052\"*.”" + }, + { + "verseNum": 20, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* bed|strong=\"H4702\"* is|strong=\"H4702\"* too short|strong=\"H7114\"* to|strong=\"H3588\"* stretch|strong=\"H8311\"* out on|strong=\"H6887\"*, and|strong=\"H4541\"* the|strong=\"H3588\"* blanket|strong=\"H4541\"* is|strong=\"H4702\"* too narrow to|strong=\"H3588\"* wrap|strong=\"H3664\"* oneself in|strong=\"H3588\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* as|strong=\"H6213\"* on|strong=\"H3068\"* Mount|strong=\"H2022\"* Perazim|strong=\"H6559\"*. He|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* angry as|strong=\"H6213\"* in|strong=\"H3068\"* the|strong=\"H3588\"* valley|strong=\"H6010\"* of|strong=\"H3068\"* Gibeon|strong=\"H1391\"*; that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H3068\"* do|strong=\"H6213\"* his|strong=\"H3068\"* work|strong=\"H4639\"*, his|strong=\"H3068\"* unusual|strong=\"H2114\"* work|strong=\"H4639\"*, and|strong=\"H6965\"* bring|strong=\"H6213\"* to|strong=\"H3068\"* pass|strong=\"H6213\"* his|strong=\"H3068\"* act|strong=\"H6213\"*, his|strong=\"H3068\"* extraordinary|strong=\"H5237\"* act|strong=\"H6213\"*." + }, + { + "verseNum": 22, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* don’t be|strong=\"H3069\"* scoffers, lest|strong=\"H6435\"* your|strong=\"H3605\"* bonds|strong=\"H4147\"* be|strong=\"H3069\"* made|strong=\"H2388\"* strong|strong=\"H2388\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3605\"* heard|strong=\"H8085\"* a|strong=\"H3068\"* decree of|strong=\"H6635\"* destruction|strong=\"H3617\"* from|strong=\"H5921\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"*, Yahweh|strong=\"H3068\"* of|strong=\"H6635\"* Armies|strong=\"H6635\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth." + }, + { + "verseNum": 23, + "text": "Give|strong=\"H7181\"* ear|strong=\"H8085\"*, and|strong=\"H6963\"* hear|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*! Listen|strong=\"H8085\"*, and|strong=\"H6963\"* hear|strong=\"H8085\"* my|strong=\"H8085\"* speech!" + }, + { + "verseNum": 24, + "text": "Does he|strong=\"H3117\"* who|strong=\"H3605\"* plows to|strong=\"H3117\"* sow|strong=\"H2232\"* plow|strong=\"H2790\"* continually|strong=\"H3605\"*? Does he|strong=\"H3117\"* keep|strong=\"H2790\"* turning the|strong=\"H3605\"* soil and|strong=\"H3117\"* breaking the|strong=\"H3605\"* clods|strong=\"H7702\"*?" + }, + { + "verseNum": 25, + "text": "When he|strong=\"H3808\"* has leveled its|strong=\"H7760\"* surface|strong=\"H6440\"*, doesn’t he|strong=\"H3808\"* plant|strong=\"H7760\"* the|strong=\"H6440\"* dill|strong=\"H7100\"*, and|strong=\"H6440\"* scatter|strong=\"H6327\"* the|strong=\"H6440\"* cumin seed, and|strong=\"H6440\"* put|strong=\"H7760\"* in|strong=\"H6440\"* the|strong=\"H6440\"* wheat|strong=\"H2406\"* in|strong=\"H6440\"* rows|strong=\"H7795\"*, the|strong=\"H6440\"* barley|strong=\"H8184\"* in|strong=\"H6440\"* the|strong=\"H6440\"* appointed|strong=\"H7760\"* place|strong=\"H7760\"*, and|strong=\"H6440\"* the|strong=\"H6440\"* spelt|strong=\"H3698\"* in|strong=\"H6440\"* its|strong=\"H7760\"* place|strong=\"H7760\"*?" + }, + { + "verseNum": 26, + "text": "For|strong=\"H4941\"* his|strong=\"H3256\"* God instructs|strong=\"H3256\"* him|strong=\"H3384\"* in|strong=\"H4941\"* right|strong=\"H4941\"* judgment|strong=\"H4941\"* and|strong=\"H4941\"* teaches|strong=\"H3384\"* him|strong=\"H3384\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* dill|strong=\"H7100\"* isn’t threshed|strong=\"H1758\"* with|strong=\"H5921\"* a|strong=\"H3068\"* sharp|strong=\"H2742\"* instrument|strong=\"H2742\"*, neither|strong=\"H3808\"* is|strong=\"H7626\"* a|strong=\"H3068\"* cart|strong=\"H5699\"* wheel turned|strong=\"H5437\"* over|strong=\"H5921\"* the|strong=\"H5921\"* cumin; but|strong=\"H3588\"* the|strong=\"H5921\"* dill|strong=\"H7100\"* is|strong=\"H7626\"* beaten|strong=\"H2251\"* out|strong=\"H5921\"* with|strong=\"H5921\"* a|strong=\"H3068\"* stick, and|strong=\"H5437\"* the|strong=\"H5921\"* cumin with|strong=\"H5921\"* a|strong=\"H3068\"* rod|strong=\"H7626\"*." + }, + { + "verseNum": 28, + "text": "Bread|strong=\"H3899\"* flour must|strong=\"H3808\"* be|strong=\"H3808\"* ground|strong=\"H1854\"*; so|strong=\"H3808\"* he|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* always|strong=\"H5331\"* be|strong=\"H3808\"* threshing|strong=\"H1758\"* it|strong=\"H3588\"*. Although|strong=\"H3588\"* he|strong=\"H3588\"* drives the|strong=\"H3588\"* wheel|strong=\"H1536\"* of|strong=\"H3899\"* his|strong=\"H3588\"* threshing|strong=\"H1758\"* cart|strong=\"H5699\"* over it|strong=\"H3588\"*, his|strong=\"H3588\"* horses|strong=\"H6571\"* don’t grind it|strong=\"H3588\"*." + }, + { + "verseNum": 29, + "text": "This|strong=\"H2063\"* also|strong=\"H1571\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, who|strong=\"H3068\"* is|strong=\"H3068\"* wonderful|strong=\"H6381\"* in|strong=\"H3068\"* counsel|strong=\"H6098\"*, and|strong=\"H3068\"* excellent|strong=\"H1431\"* in|strong=\"H3068\"* wisdom|strong=\"H8454\"*." + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "Woe|strong=\"H1945\"* to|strong=\"H5921\"* Ariel! Ariel, the|strong=\"H5921\"* city|strong=\"H7151\"* where|strong=\"H5921\"* David|strong=\"H1732\"* encamped|strong=\"H2583\"*! Add|strong=\"H5595\"* year|strong=\"H8141\"* to|strong=\"H5921\"* year|strong=\"H8141\"*; let the|strong=\"H5921\"* feasts|strong=\"H2282\"* come around|strong=\"H5921\"*;" + }, + { + "verseNum": 2, + "text": "then|strong=\"H1961\"* I|strong=\"H1961\"* will|strong=\"H1961\"* distress|strong=\"H6693\"* Ariel, and|strong=\"H1961\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* mourning|strong=\"H8386\"* and|strong=\"H1961\"* lamentation. She shall be|strong=\"H1961\"* to|strong=\"H1961\"* me|strong=\"H1961\"* as|strong=\"H1961\"* an|strong=\"H1961\"* altar hearth.+ 29:2 or, Ariel*" + }, + { + "verseNum": 3, + "text": "I|strong=\"H5921\"* will encamp|strong=\"H2583\"* against|strong=\"H5921\"* you|strong=\"H5921\"* all|strong=\"H5921\"* around|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H6965\"* will lay|strong=\"H6696\"* siege|strong=\"H6696\"* against|strong=\"H5921\"* you|strong=\"H5921\"* with|strong=\"H5921\"* posted|strong=\"H6965\"* troops. I|strong=\"H5921\"* will raise|strong=\"H6965\"* siege|strong=\"H6696\"* works|strong=\"H5921\"* against|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H1696\"* will|strong=\"H1961\"* be|strong=\"H1961\"* brought|strong=\"H1961\"* down|strong=\"H7817\"*, and|strong=\"H6963\"* will|strong=\"H1961\"* speak|strong=\"H1696\"* out|strong=\"H1696\"* of|strong=\"H6963\"* the|strong=\"H1961\"* ground|strong=\"H6083\"*. Your|strong=\"H1961\"* speech|strong=\"H1696\"* will|strong=\"H1961\"* mumble out|strong=\"H1696\"* of|strong=\"H6963\"* the|strong=\"H1961\"* dust|strong=\"H6083\"*. Your|strong=\"H1961\"* voice|strong=\"H6963\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* of|strong=\"H6963\"* one|strong=\"H1961\"* who has|strong=\"H1961\"* a|strong=\"H3068\"* familiar spirit, out|strong=\"H1696\"* of|strong=\"H6963\"* the|strong=\"H1961\"* ground|strong=\"H6083\"*, and|strong=\"H6963\"* your|strong=\"H1961\"* speech|strong=\"H1696\"* will|strong=\"H1961\"* whisper|strong=\"H6850\"* out|strong=\"H1696\"* of|strong=\"H6963\"* the|strong=\"H1961\"* dust|strong=\"H6083\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H1961\"* the|strong=\"H5674\"* multitude|strong=\"H1995\"* of|strong=\"H1995\"* your|strong=\"H1961\"* foes will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* fine|strong=\"H1851\"* dust|strong=\"H1851\"*, and|strong=\"H5674\"* the|strong=\"H5674\"* multitude|strong=\"H1995\"* of|strong=\"H1995\"* the|strong=\"H5674\"* ruthless|strong=\"H6184\"* ones|strong=\"H6184\"* like|strong=\"H1961\"* chaff|strong=\"H4671\"* that|strong=\"H1961\"* blows|strong=\"H5674\"* away|strong=\"H5674\"*. Yes, it|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* in|strong=\"H1961\"* an|strong=\"H1961\"* instant|strong=\"H6621\"*, suddenly|strong=\"H6597\"*." + }, + { + "verseNum": 6, + "text": "She|strong=\"H5973\"* will|strong=\"H3068\"* be|strong=\"H3068\"* visited|strong=\"H6485\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* with|strong=\"H5973\"* thunder|strong=\"H6963\"*, with|strong=\"H5973\"* earthquake|strong=\"H7494\"*, with|strong=\"H5973\"* great|strong=\"H1419\"* noise|strong=\"H6963\"*, with|strong=\"H5973\"* whirlwind|strong=\"H5591\"* and|strong=\"H3068\"* storm|strong=\"H5591\"*, and|strong=\"H3068\"* with|strong=\"H5973\"* the|strong=\"H3068\"* flame|strong=\"H3851\"* of|strong=\"H3068\"* a|strong=\"H3068\"* devouring fire." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* multitude|strong=\"H1995\"* of|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H3605\"* fight|strong=\"H6633\"* against|strong=\"H5921\"* Ariel, even|strong=\"H5921\"* all|strong=\"H3605\"* who|strong=\"H3605\"* fight|strong=\"H6633\"* against|strong=\"H5921\"* her|strong=\"H3605\"* and|strong=\"H3915\"* her|strong=\"H3605\"* stronghold|strong=\"H4685\"*, and|strong=\"H3915\"* who|strong=\"H3605\"* distress|strong=\"H6693\"* her|strong=\"H3605\"*, will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*, a|strong=\"H3068\"* vision|strong=\"H2377\"* of|strong=\"H5921\"* the|strong=\"H3605\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 8, + "text": "It|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* when|strong=\"H1961\"* a|strong=\"H3068\"* hungry|strong=\"H7457\"* man|strong=\"H5315\"* dreams|strong=\"H2492\"*, and|strong=\"H1471\"* behold|strong=\"H2009\"*, he|strong=\"H3651\"* eats; but|strong=\"H1961\"* he|strong=\"H3651\"* awakes, and|strong=\"H1471\"* his|strong=\"H3605\"* hunger|strong=\"H5315\"* isn’t satisfied|strong=\"H7386\"*; or|strong=\"H1471\"* like|strong=\"H1961\"* when|strong=\"H1961\"* a|strong=\"H3068\"* thirsty|strong=\"H6771\"* man|strong=\"H5315\"* dreams|strong=\"H2492\"*, and|strong=\"H1471\"* behold|strong=\"H2009\"*, he|strong=\"H3651\"* drinks|strong=\"H8354\"*; but|strong=\"H1961\"* he|strong=\"H3651\"* awakes, and|strong=\"H1471\"* behold|strong=\"H2009\"*, he|strong=\"H3651\"* is|strong=\"H5315\"* faint|strong=\"H5889\"*, and|strong=\"H1471\"* he|strong=\"H3651\"* is|strong=\"H5315\"* still|strong=\"H1471\"* thirsty|strong=\"H6771\"*. The|strong=\"H3605\"* multitude|strong=\"H1995\"* of|strong=\"H2022\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H3605\"* fight|strong=\"H6633\"* against|strong=\"H5921\"* Mount|strong=\"H2022\"* Zion|strong=\"H6726\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* that|strong=\"H3605\"*." + }, + { + "verseNum": 9, + "text": "Pause and|strong=\"H3196\"* wonder|strong=\"H8539\"*! Blind|strong=\"H8173\"* yourselves and|strong=\"H3196\"* be|strong=\"H3808\"* blind|strong=\"H8173\"*! They|strong=\"H3808\"* are|strong=\"H3808\"* drunken|strong=\"H7937\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* with|strong=\"H7937\"* wine|strong=\"H3196\"*; they|strong=\"H3808\"* stagger|strong=\"H5128\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* with|strong=\"H7937\"* strong|strong=\"H7941\"* drink|strong=\"H7941\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* poured|strong=\"H5258\"* out|strong=\"H5258\"* on|strong=\"H5921\"* you|strong=\"H3588\"* a|strong=\"H3068\"* spirit|strong=\"H7307\"* of|strong=\"H3068\"* deep|strong=\"H8639\"* sleep|strong=\"H8639\"*, and|strong=\"H3068\"* has|strong=\"H3068\"* closed|strong=\"H3680\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, the|strong=\"H5921\"* prophets|strong=\"H5030\"*; and|strong=\"H3068\"* he|strong=\"H3588\"* has|strong=\"H3068\"* covered|strong=\"H3680\"* your|strong=\"H3068\"* heads|strong=\"H7218\"*, the|strong=\"H5921\"* seers|strong=\"H2374\"*." + }, + { + "verseNum": 11, + "text": "All|strong=\"H3605\"* vision|strong=\"H2380\"* has|strong=\"H1961\"* become|strong=\"H1961\"* to|strong=\"H3201\"* you|strong=\"H3588\"* like|strong=\"H1961\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1697\"* a|strong=\"H3068\"* book|strong=\"H5612\"* that|strong=\"H3588\"* is|strong=\"H2088\"* sealed|strong=\"H2856\"*, which|strong=\"H1931\"* men|strong=\"H3605\"* deliver|strong=\"H5414\"* to|strong=\"H3201\"* one|strong=\"H2088\"* who|strong=\"H3605\"* is|strong=\"H2088\"* educated, saying|strong=\"H1697\"*, “Read|strong=\"H7121\"* this|strong=\"H2088\"*, please|strong=\"H4994\"*;” and|strong=\"H1697\"* he|strong=\"H1931\"* says|strong=\"H1697\"*, “I|strong=\"H3588\"* can|strong=\"H3201\"*’t, for|strong=\"H3588\"* it|strong=\"H5414\"* is|strong=\"H2088\"* sealed|strong=\"H2856\"*;”" + }, + { + "verseNum": 12, + "text": "and|strong=\"H3045\"* the|strong=\"H5921\"* book|strong=\"H5612\"* is|strong=\"H2088\"* delivered|strong=\"H5414\"* to|strong=\"H5921\"* one|strong=\"H2088\"* who|strong=\"H2088\"* is|strong=\"H2088\"* not|strong=\"H3808\"* educated, saying, “Read|strong=\"H7121\"* this|strong=\"H2088\"*, please|strong=\"H4994\"*;” and|strong=\"H3045\"* he|strong=\"H5414\"* says, “I|strong=\"H5414\"* can|strong=\"H3045\"*’t read|strong=\"H7121\"*.”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H3588\"* Lord said|strong=\"H6310\"*, “Because|strong=\"H3588\"* this|strong=\"H2088\"* people|strong=\"H5971\"* draws near|strong=\"H5066\"* with|strong=\"H5971\"* their|strong=\"H3588\"* mouth|strong=\"H6310\"* and|strong=\"H5971\"* honors|strong=\"H3513\"* me|strong=\"H4480\"* with|strong=\"H5971\"* their|strong=\"H3588\"* lips|strong=\"H8193\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1961\"* removed|strong=\"H7368\"* their|strong=\"H3588\"* heart|strong=\"H3820\"* far|strong=\"H7368\"* from|strong=\"H4480\"* me|strong=\"H4480\"*, and|strong=\"H5971\"* their|strong=\"H3588\"* fear|strong=\"H3373\"* of|strong=\"H6310\"* me|strong=\"H4480\"* is|strong=\"H2088\"* a|strong=\"H3068\"* commandment|strong=\"H4687\"* of|strong=\"H6310\"* men|strong=\"H5971\"* which|strong=\"H5971\"* has|strong=\"H1961\"* been|strong=\"H1961\"* taught|strong=\"H3925\"*;" + }, + { + "verseNum": 14, + "text": "therefore|strong=\"H3651\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H5971\"* proceed|strong=\"H3254\"* to|strong=\"H5971\"* do|strong=\"H3254\"* a|strong=\"H3068\"* marvelous|strong=\"H6381\"* work|strong=\"H6381\"* among|strong=\"H6381\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, even|strong=\"H3651\"* a|strong=\"H3068\"* marvelous|strong=\"H6381\"* work|strong=\"H6381\"* and|strong=\"H5971\"* a|strong=\"H3068\"* wonder|strong=\"H6382\"*; and|strong=\"H5971\"* the|strong=\"H3651\"* wisdom|strong=\"H2451\"* of|strong=\"H5971\"* their|strong=\"H3651\"* wise|strong=\"H2450\"* men|strong=\"H2450\"* will|strong=\"H5971\"* perish, and|strong=\"H5971\"* the|strong=\"H3651\"* understanding of|strong=\"H5971\"* their|strong=\"H3651\"* prudent men|strong=\"H2450\"* will|strong=\"H5971\"* be|strong=\"H3254\"* hidden|strong=\"H5641\"*.”" + }, + { + "verseNum": 15, + "text": "Woe|strong=\"H1945\"* to|strong=\"H3068\"* those|strong=\"H1945\"* who|strong=\"H4310\"* deeply|strong=\"H6009\"* hide|strong=\"H5641\"* their|strong=\"H3068\"* counsel|strong=\"H6098\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* whose|strong=\"H4310\"* deeds|strong=\"H4639\"* are|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H7200\"* dark|strong=\"H4285\"*, and|strong=\"H3068\"* who|strong=\"H4310\"* say, “Who|strong=\"H4310\"* sees|strong=\"H7200\"* us|strong=\"H3045\"*?” and|strong=\"H3068\"* “Who|strong=\"H4310\"* knows|strong=\"H3045\"* us|strong=\"H3045\"*?”" + }, + { + "verseNum": 16, + "text": "You|strong=\"H3588\"* turn things|strong=\"H4639\"* upside down|strong=\"H2017\"*! Should|strong=\"H3588\"* the|strong=\"H3588\"* potter|strong=\"H3335\"* be|strong=\"H3808\"* thought|strong=\"H2803\"* to|strong=\"H6213\"* be|strong=\"H3808\"* like|strong=\"H2803\"* clay|strong=\"H2563\"*, that|strong=\"H3588\"* the|strong=\"H3588\"* thing|strong=\"H3588\"* made|strong=\"H6213\"* should|strong=\"H3588\"* say about|strong=\"H6213\"* him|strong=\"H6213\"* who|strong=\"H3588\"* made|strong=\"H6213\"* it|strong=\"H3588\"*, “He|strong=\"H3588\"* didn’t make|strong=\"H6213\"* me|strong=\"H6213\"*;” or|strong=\"H3808\"* the|strong=\"H3588\"* thing|strong=\"H3588\"* formed|strong=\"H3335\"* say of|strong=\"H4639\"* him|strong=\"H6213\"* who|strong=\"H3588\"* formed|strong=\"H3335\"* it|strong=\"H3588\"*, “He|strong=\"H3588\"* has|strong=\"H3588\"* no|strong=\"H3808\"* understanding”?" + }, + { + "verseNum": 17, + "text": "Isn’t it|strong=\"H7725\"* yet|strong=\"H5750\"* a|strong=\"H3068\"* very|strong=\"H4213\"* little|strong=\"H4592\"* while|strong=\"H5750\"*, and|strong=\"H7725\"* Lebanon|strong=\"H3844\"* will|strong=\"H3808\"* be|strong=\"H3808\"* turned|strong=\"H7725\"* into|strong=\"H7725\"* a|strong=\"H3068\"* fruitful|strong=\"H3759\"* field|strong=\"H3759\"*, and|strong=\"H7725\"* the|strong=\"H7725\"* fruitful|strong=\"H3759\"* field|strong=\"H3759\"* will|strong=\"H3808\"* be|strong=\"H3808\"* regarded|strong=\"H2803\"* as|strong=\"H2803\"* a|strong=\"H3068\"* forest|strong=\"H3293\"*?" + }, + { + "verseNum": 18, + "text": "In|strong=\"H8085\"* that|strong=\"H7200\"* day|strong=\"H3117\"*, the|strong=\"H8085\"* deaf|strong=\"H2795\"* will|strong=\"H5869\"* hear|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H3117\"* the|strong=\"H8085\"* book|strong=\"H5612\"*, and|strong=\"H3117\"* the|strong=\"H8085\"* eyes|strong=\"H5869\"* of|strong=\"H3117\"* the|strong=\"H8085\"* blind|strong=\"H5787\"* will|strong=\"H5869\"* see|strong=\"H7200\"* out|strong=\"H7200\"* of|strong=\"H3117\"* obscurity|strong=\"H2822\"* and|strong=\"H3117\"* out|strong=\"H7200\"* of|strong=\"H3117\"* darkness|strong=\"H2822\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H3068\"* humble|strong=\"H6035\"* also|strong=\"H3068\"* will|strong=\"H3068\"* increase|strong=\"H3254\"* their|strong=\"H3068\"* joy|strong=\"H8057\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3478\"* the|strong=\"H3068\"* poor|strong=\"H6035\"* among|strong=\"H3478\"* men|strong=\"H3478\"* will|strong=\"H3068\"* rejoice|strong=\"H1523\"* in|strong=\"H3478\"* the|strong=\"H3068\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* ruthless|strong=\"H6184\"* is|strong=\"H3605\"* brought|strong=\"H3615\"* to|strong=\"H3588\"* nothing|strong=\"H3605\"*, and|strong=\"H3605\"* the|strong=\"H3605\"* scoffer ceases, and|strong=\"H3605\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H3772\"* alert to|strong=\"H3588\"* do|strong=\"H3605\"* evil are|strong=\"H3772\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*—" + }, + { + "verseNum": 21, + "text": "who|strong=\"H6662\"* cause|strong=\"H1697\"* a|strong=\"H3068\"* person|strong=\"H3198\"* to|strong=\"H1697\"* be|strong=\"H1697\"* indicted|strong=\"H2398\"* by|strong=\"H2398\"* a|strong=\"H3068\"* word|strong=\"H1697\"*, and|strong=\"H1697\"* lay a|strong=\"H3068\"* snare|strong=\"H6983\"* for|strong=\"H1697\"* one|strong=\"H6662\"* who|strong=\"H6662\"* reproves|strong=\"H3198\"* in|strong=\"H1697\"* the|strong=\"H1697\"* gate|strong=\"H8179\"*, and|strong=\"H1697\"* who|strong=\"H6662\"* deprive|strong=\"H5186\"* the|strong=\"H1697\"* innocent|strong=\"H6662\"* of|strong=\"H1697\"* justice with|strong=\"H1697\"* false testimony|strong=\"H1697\"*." + }, + { + "verseNum": 22, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* redeemed|strong=\"H6299\"* Abraham, says|strong=\"H3541\"* concerning|strong=\"H3068\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*: “Jacob|strong=\"H3290\"* shall|strong=\"H3068\"* no|strong=\"H3808\"* longer|strong=\"H3808\"* be|strong=\"H3808\"* ashamed, neither|strong=\"H3808\"* shall|strong=\"H3068\"* his|strong=\"H3068\"* face|strong=\"H6440\"* grow pale|strong=\"H2357\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"H3588\"* when|strong=\"H3588\"* he|strong=\"H3588\"* sees|strong=\"H7200\"* his|strong=\"H7200\"* children|strong=\"H3206\"*, the|strong=\"H7200\"* work|strong=\"H4639\"* of|strong=\"H3027\"* my|strong=\"H7200\"* hands|strong=\"H3027\"*, in|strong=\"H3478\"* the|strong=\"H7200\"* middle|strong=\"H7130\"* of|strong=\"H3027\"* him|strong=\"H3027\"*, they|strong=\"H3588\"* will|strong=\"H3478\"* sanctify|strong=\"H6942\"* my|strong=\"H7200\"* name|strong=\"H8034\"*. Yes|strong=\"H3588\"*, they|strong=\"H3588\"* will|strong=\"H3478\"* sanctify|strong=\"H6942\"* the|strong=\"H7200\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H3027\"* Jacob|strong=\"H3290\"*, and|strong=\"H3478\"* will|strong=\"H3478\"* stand|strong=\"H6206\"* in|strong=\"H3478\"* awe|strong=\"H6206\"* of|strong=\"H3027\"* the|strong=\"H7200\"* God|strong=\"H3027\"* of|strong=\"H3027\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H3045\"* also|strong=\"H3045\"* who|strong=\"H3045\"* err|strong=\"H8582\"* in|strong=\"H3925\"* spirit|strong=\"H7307\"* will|strong=\"H7307\"* come|strong=\"H3045\"* to|strong=\"H3045\"* understanding, and|strong=\"H3045\"* those who|strong=\"H3045\"* grumble will|strong=\"H7307\"* receive instruction|strong=\"H3948\"*.”" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "“Woe|strong=\"H1945\"* to|strong=\"H3068\"* the|strong=\"H5002\"* rebellious|strong=\"H5637\"* children|strong=\"H1121\"*”, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “who|strong=\"H3068\"* take|strong=\"H6213\"* counsel|strong=\"H6098\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* from|strong=\"H4480\"* me|strong=\"H5921\"*; and|strong=\"H1121\"* who|strong=\"H3068\"* make|strong=\"H6213\"* an|strong=\"H6213\"* alliance|strong=\"H4541\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* with|strong=\"H3068\"* my|strong=\"H3068\"* Spirit|strong=\"H7307\"*, that|strong=\"H3068\"* they|strong=\"H3068\"* may|strong=\"H3068\"* add|strong=\"H5595\"* sin|strong=\"H2403\"* to|strong=\"H3068\"* sin|strong=\"H2403\"*;" + }, + { + "verseNum": 2, + "text": "who|strong=\"H6547\"* set|strong=\"H1980\"* out|strong=\"H1980\"* to|strong=\"H1980\"* go|strong=\"H1980\"* down|strong=\"H3381\"* into|strong=\"H1980\"* Egypt|strong=\"H4714\"* without|strong=\"H3808\"* asking|strong=\"H7592\"* for|strong=\"H4714\"* my|strong=\"H3381\"* advice|strong=\"H6310\"*, to|strong=\"H1980\"* strengthen|strong=\"H5810\"* themselves in|strong=\"H1980\"* the|strong=\"H1980\"* strength|strong=\"H4581\"* of|strong=\"H6310\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H1980\"* to|strong=\"H1980\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"* in|strong=\"H1980\"* the|strong=\"H1980\"* shadow|strong=\"H6738\"* of|strong=\"H6310\"* Egypt|strong=\"H4714\"*!" + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H1961\"* the|strong=\"H1961\"* strength|strong=\"H4581\"* of|strong=\"H4581\"* Pharaoh|strong=\"H6547\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H1961\"* shame|strong=\"H1322\"*, and|strong=\"H4714\"* the|strong=\"H1961\"* refuge|strong=\"H4581\"* in|strong=\"H1961\"* the|strong=\"H1961\"* shadow|strong=\"H6738\"* of|strong=\"H4581\"* Egypt|strong=\"H4714\"* your|strong=\"H1961\"* confusion|strong=\"H1322\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* their|strong=\"H3588\"* princes|strong=\"H8269\"* are|strong=\"H8269\"* at|strong=\"H1961\"* Zoan|strong=\"H6814\"*, and|strong=\"H8269\"* their|strong=\"H3588\"* ambassadors|strong=\"H4397\"* have|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1961\"* Hanes|strong=\"H2609\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3588\"* shall|strong=\"H5971\"* all|strong=\"H3605\"* be|strong=\"H3808\"* ashamed|strong=\"H1322\"* because|strong=\"H3588\"* of|strong=\"H5971\"* a|strong=\"H3068\"* people|strong=\"H5971\"* that|strong=\"H3588\"* can|strong=\"H3808\"*’t profit|strong=\"H3276\"* them|strong=\"H5921\"*, that|strong=\"H3588\"* are|strong=\"H5971\"* not|strong=\"H3808\"* a|strong=\"H3068\"* help|strong=\"H5828\"* nor|strong=\"H3808\"* profit|strong=\"H3276\"*, but|strong=\"H3588\"* a|strong=\"H3068\"* shame|strong=\"H1322\"*, and|strong=\"H5971\"* also|strong=\"H1571\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* burden|strong=\"H4853\"* of|strong=\"H5971\"* the|strong=\"H5921\"* animals of|strong=\"H5971\"* the|strong=\"H5921\"* South|strong=\"H5045\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H7121\"* Egypt|strong=\"H4714\"* helps|strong=\"H5826\"* in|strong=\"H7121\"* vain|strong=\"H1892\"*, and|strong=\"H4714\"* to|strong=\"H4714\"* no purpose|strong=\"H7385\"*; therefore|strong=\"H3651\"* I|strong=\"H3651\"* have|strong=\"H4714\"* called|strong=\"H7121\"* her|strong=\"H7121\"* Rahab|strong=\"H7293\"* who|strong=\"H1992\"* sits still|strong=\"H7674\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H6258\"* go|strong=\"H1961\"*, write|strong=\"H3789\"* it|strong=\"H5921\"* before|strong=\"H5921\"* them|strong=\"H5921\"* on|strong=\"H5921\"* a|strong=\"H3068\"* tablet|strong=\"H3871\"*, and|strong=\"H3117\"* inscribe|strong=\"H2710\"* it|strong=\"H5921\"* in|strong=\"H5921\"* a|strong=\"H3068\"* book|strong=\"H5612\"*, that|strong=\"H3117\"* it|strong=\"H5921\"* may|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H5704\"* the|strong=\"H5921\"* time|strong=\"H3117\"* to|strong=\"H5704\"* come|strong=\"H1961\"* forever|strong=\"H5769\"* and|strong=\"H3117\"* ever|strong=\"H5769\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* rebellious|strong=\"H4805\"* people|strong=\"H5971\"*, lying|strong=\"H3586\"* children|strong=\"H1121\"*, children|strong=\"H1121\"* who|strong=\"H1931\"* will|strong=\"H3068\"* not|strong=\"H3808\"* hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"*;" + }, + { + "verseNum": 10, + "text": "who|strong=\"H3808\"* tell|strong=\"H1696\"* the|strong=\"H7200\"* seers|strong=\"H2374\"*, “Don’t see|strong=\"H7200\"*!” and|strong=\"H7200\"* the|strong=\"H7200\"* prophets|strong=\"H2374\"*, “Don’t prophesy|strong=\"H2372\"* to|strong=\"H1696\"* us|strong=\"H7200\"* right|strong=\"H5229\"* things|strong=\"H5229\"*. Tell|strong=\"H1696\"* us|strong=\"H7200\"* pleasant|strong=\"H2513\"* things|strong=\"H5229\"*. Prophesy|strong=\"H2372\"* deceits|strong=\"H4123\"*." + }, + { + "verseNum": 11, + "text": "Get|strong=\"H5493\"* out|strong=\"H5186\"* of|strong=\"H6440\"* the|strong=\"H6440\"* way|strong=\"H1870\"*. Turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* the|strong=\"H6440\"* path|strong=\"H1870\"*. Cause the|strong=\"H6440\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* cease|strong=\"H7673\"* from|strong=\"H4480\"* before|strong=\"H6440\"* us|strong=\"H6440\"*.”" + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5921\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H1697\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, “Because|strong=\"H5921\"* you|strong=\"H5921\"* despise|strong=\"H3988\"* this|strong=\"H2088\"* word|strong=\"H1697\"*, and|strong=\"H3478\"* trust|strong=\"H8172\"* in|strong=\"H5921\"* oppression|strong=\"H6233\"* and|strong=\"H3478\"* perverseness|strong=\"H3868\"*, and|strong=\"H3478\"* rely|strong=\"H8172\"* on|strong=\"H5921\"* it|strong=\"H5921\"*," + }, + { + "verseNum": 13, + "text": "therefore|strong=\"H3651\"* this|strong=\"H2088\"* iniquity|strong=\"H5771\"* shall|strong=\"H2088\"* be|strong=\"H1961\"* to|strong=\"H1961\"* you|strong=\"H3651\"* like|strong=\"H1961\"* a|strong=\"H3068\"* breach|strong=\"H6556\"* ready to|strong=\"H1961\"* fall|strong=\"H5307\"*, swelling out|strong=\"H5307\"* in|strong=\"H5307\"* a|strong=\"H3068\"* high|strong=\"H7682\"* wall|strong=\"H2346\"*, whose breaking|strong=\"H7667\"* comes|strong=\"H1961\"* suddenly|strong=\"H6597\"* in|strong=\"H5307\"* an|strong=\"H1961\"* instant|strong=\"H6621\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3808\"* will|strong=\"H3808\"* break|strong=\"H7665\"* it|strong=\"H3808\"* as|strong=\"H4325\"* a|strong=\"H3068\"* potter|strong=\"H3335\"*’s vessel|strong=\"H2789\"* is|strong=\"H4325\"* broken|strong=\"H7665\"*, breaking|strong=\"H7667\"* it|strong=\"H3808\"* in|strong=\"H4672\"* pieces|strong=\"H7665\"* without|strong=\"H3808\"* sparing|strong=\"H2550\"*, so|strong=\"H3808\"* that|strong=\"H4325\"* there|strong=\"H4672\"* won’t be|strong=\"H3808\"* found|strong=\"H4672\"* among|strong=\"H4672\"* the|strong=\"H7665\"* broken|strong=\"H7665\"* pieces|strong=\"H7665\"* a|strong=\"H3068\"* piece good enough|strong=\"H4672\"* to|strong=\"H4325\"* take|strong=\"H2846\"* fire from|strong=\"H4325\"* the|strong=\"H7665\"* hearth|strong=\"H3344\"*, or|strong=\"H3808\"* to|strong=\"H4325\"* dip up|strong=\"H2834\"* water|strong=\"H4325\"* out|strong=\"H4672\"* of|strong=\"H4325\"* the|strong=\"H7665\"* cistern|strong=\"H1360\"*.”" + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* thus|strong=\"H3541\"* said the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H6918\"* Israel|strong=\"H3478\"*, “You|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* saved|strong=\"H3467\"* in|strong=\"H3478\"* returning|strong=\"H7729\"* and|strong=\"H3478\"* rest|strong=\"H8252\"*. Your|strong=\"H3588\"* strength|strong=\"H1369\"* will|strong=\"H1961\"* be|strong=\"H1961\"* in|strong=\"H3478\"* quietness|strong=\"H8252\"* and|strong=\"H3478\"* in|strong=\"H3478\"* confidence.” You|strong=\"H3588\"* refused|strong=\"H3808\"*," + }, + { + "verseNum": 16, + "text": "but|strong=\"H3588\"* you|strong=\"H3588\"* said|strong=\"H3651\"*, “No|strong=\"H3808\"*, for|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H3808\"* flee|strong=\"H5127\"* on|strong=\"H5921\"* horses|strong=\"H5483\"*;” therefore|strong=\"H3651\"* you|strong=\"H3588\"* will|strong=\"H3808\"* flee|strong=\"H5127\"*; and|strong=\"H5483\"*, “We|strong=\"H3588\"* will|strong=\"H3808\"* ride|strong=\"H7392\"* on|strong=\"H5921\"* the|strong=\"H5921\"* swift|strong=\"H7031\"*;” therefore|strong=\"H3651\"* those|strong=\"H5921\"* who|strong=\"H3588\"* pursue|strong=\"H7291\"* you|strong=\"H3588\"* will|strong=\"H3808\"* be|strong=\"H3808\"* swift|strong=\"H7031\"*." + }, + { + "verseNum": 17, + "text": "One thousand will|strong=\"H2022\"* flee|strong=\"H5127\"* at|strong=\"H5921\"* the|strong=\"H6440\"* threat|strong=\"H1606\"* of|strong=\"H2022\"* one. At|strong=\"H5921\"* the|strong=\"H6440\"* threat|strong=\"H1606\"* of|strong=\"H2022\"* five|strong=\"H2568\"*, you|strong=\"H6440\"* will|strong=\"H2022\"* flee|strong=\"H5127\"* until|strong=\"H5704\"* you|strong=\"H6440\"* are|strong=\"H2022\"* left|strong=\"H3498\"* like|strong=\"H1389\"* a|strong=\"H3068\"* beacon|strong=\"H8650\"* on|strong=\"H5921\"* the|strong=\"H6440\"* top|strong=\"H7218\"* of|strong=\"H2022\"* a|strong=\"H3068\"* mountain|strong=\"H2022\"*, and|strong=\"H7218\"* like|strong=\"H1389\"* a|strong=\"H3068\"* banner|strong=\"H5251\"* on|strong=\"H5921\"* a|strong=\"H3068\"* hill|strong=\"H2022\"*." + }, + { + "verseNum": 18, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* wait|strong=\"H2442\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H3068\"* be|strong=\"H3068\"* gracious|strong=\"H2603\"* to|strong=\"H3068\"* you|strong=\"H3588\"*; and|strong=\"H3068\"* therefore|strong=\"H3651\"* he|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* exalted|strong=\"H7311\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H3068\"* have|strong=\"H7355\"* mercy|strong=\"H7355\"* on|strong=\"H3068\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* justice|strong=\"H4941\"*. Blessed are|strong=\"H3068\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* wait|strong=\"H2442\"* for|strong=\"H3588\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* the|strong=\"H8085\"* people|strong=\"H5971\"* will|strong=\"H5971\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Zion|strong=\"H6726\"* at|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*. You|strong=\"H3588\"* will|strong=\"H5971\"* weep|strong=\"H1058\"* no|strong=\"H3808\"* more|strong=\"H3808\"*. He|strong=\"H3588\"* will|strong=\"H5971\"* surely|strong=\"H3588\"* be|strong=\"H3808\"* gracious|strong=\"H2603\"* to|strong=\"H3389\"* you|strong=\"H3588\"* at|strong=\"H3427\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3427\"* your|strong=\"H8085\"* cry|strong=\"H2201\"*. When|strong=\"H3588\"* he|strong=\"H3588\"* hears|strong=\"H8085\"* you|strong=\"H3588\"*, he|strong=\"H3588\"* will|strong=\"H5971\"* answer|strong=\"H6030\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 20, + "text": "Though the|strong=\"H7200\"* Lord may|strong=\"H1961\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H7200\"* bread|strong=\"H3899\"* of|strong=\"H5869\"* adversity|strong=\"H6862\"* and|strong=\"H3899\"* the|strong=\"H7200\"* water|strong=\"H4325\"* of|strong=\"H5869\"* affliction|strong=\"H3906\"*, yet|strong=\"H5750\"* your|strong=\"H5414\"* teachers|strong=\"H3384\"* won’t be|strong=\"H1961\"* hidden any|strong=\"H5750\"* more|strong=\"H5750\"*, but|strong=\"H3808\"* your|strong=\"H5414\"* eyes|strong=\"H5869\"* will|strong=\"H1961\"* see|strong=\"H7200\"* your|strong=\"H5414\"* teachers|strong=\"H3384\"*;" + }, + { + "verseNum": 21, + "text": "and|strong=\"H3212\"* when|strong=\"H3588\"* you|strong=\"H3588\"* turn to|strong=\"H3212\"* the|strong=\"H8085\"* right hand, and|strong=\"H3212\"* when|strong=\"H3588\"* you|strong=\"H3588\"* turn to|strong=\"H3212\"* the|strong=\"H8085\"* left|strong=\"H8041\"*, your|strong=\"H8085\"* ears will|strong=\"H1697\"* hear|strong=\"H8085\"* a|strong=\"H3068\"* voice behind you|strong=\"H3588\"*, saying|strong=\"H1697\"*, “This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H8085\"* way|strong=\"H1870\"*. Walk|strong=\"H3212\"* in|strong=\"H8085\"* it|strong=\"H3588\"*.”" + }, + { + "verseNum": 22, + "text": "You|strong=\"H3644\"* shall|strong=\"H3701\"* defile|strong=\"H2930\"* the|strong=\"H3318\"* overlaying|strong=\"H6826\"* of|strong=\"H3318\"* your|strong=\"H3318\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"* of|strong=\"H3318\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* the|strong=\"H3318\"* plating|strong=\"H6826\"* of|strong=\"H3318\"* your|strong=\"H3318\"* molten|strong=\"H4541\"* images|strong=\"H6456\"* of|strong=\"H3318\"* gold|strong=\"H2091\"*. You|strong=\"H3644\"* shall|strong=\"H3701\"* cast them|strong=\"H3318\"* away|strong=\"H3318\"* as|strong=\"H3644\"* an|strong=\"H3318\"* unclean|strong=\"H2930\"* thing|strong=\"H1739\"*. You|strong=\"H3644\"* shall|strong=\"H3701\"* tell it|strong=\"H2930\"*, “Go|strong=\"H3318\"* away|strong=\"H3318\"*!”" + }, + { + "verseNum": 23, + "text": "He|strong=\"H1931\"* will|strong=\"H1961\"* give|strong=\"H5414\"* the|strong=\"H5414\"* rain|strong=\"H4306\"* for|strong=\"H3117\"* your|strong=\"H5414\"* seed|strong=\"H2233\"*, with|strong=\"H3117\"* which|strong=\"H1931\"* you|strong=\"H5414\"* will|strong=\"H1961\"* sow|strong=\"H2232\"* the|strong=\"H5414\"* ground; and|strong=\"H3117\"* bread|strong=\"H3899\"* of|strong=\"H3117\"* the|strong=\"H5414\"* increase|strong=\"H8393\"* of|strong=\"H3117\"* the|strong=\"H5414\"* ground will|strong=\"H1961\"* be|strong=\"H1961\"* rich|strong=\"H8082\"* and|strong=\"H3117\"* plentiful. In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, your|strong=\"H5414\"* livestock|strong=\"H4735\"* will|strong=\"H1961\"* feed|strong=\"H7462\"* in|strong=\"H3117\"* large|strong=\"H7337\"* pastures|strong=\"H3733\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H5647\"* oxen likewise and|strong=\"H5647\"* the|strong=\"H5647\"* young|strong=\"H5895\"* donkeys|strong=\"H5895\"* that|strong=\"H5895\"* till|strong=\"H5647\"* the|strong=\"H5647\"* ground will|strong=\"H5647\"* eat savory feed|strong=\"H1098\"*, which|strong=\"H5895\"* has been|strong=\"H5647\"* winnowed|strong=\"H2219\"* with|strong=\"H5647\"* the|strong=\"H5647\"* shovel|strong=\"H7371\"* and|strong=\"H5647\"* with|strong=\"H5647\"* the|strong=\"H5647\"* fork|strong=\"H4214\"*." + }, + { + "verseNum": 25, + "text": "There|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* brooks and|strong=\"H3117\"* streams|strong=\"H6388\"* of|strong=\"H3117\"* water|strong=\"H4325\"* on|strong=\"H5921\"* every|strong=\"H3605\"* lofty|strong=\"H1364\"* mountain|strong=\"H2022\"* and|strong=\"H3117\"* on|strong=\"H5921\"* every|strong=\"H3605\"* high|strong=\"H1364\"* hill|strong=\"H2022\"* in|strong=\"H5921\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* great|strong=\"H7227\"* slaughter|strong=\"H2027\"*, when|strong=\"H1961\"* the|strong=\"H3605\"* towers|strong=\"H4026\"* fall|strong=\"H5307\"*." + }, + { + "verseNum": 26, + "text": "Moreover|strong=\"H1961\"* the|strong=\"H3068\"* light of|strong=\"H3068\"* the|strong=\"H3068\"* moon|strong=\"H3842\"* will|strong=\"H3068\"* be|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H3068\"* light of|strong=\"H3068\"* the|strong=\"H3068\"* sun|strong=\"H2535\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* light of|strong=\"H3068\"* the|strong=\"H3068\"* sun|strong=\"H2535\"* will|strong=\"H3068\"* be|strong=\"H1961\"* seven|strong=\"H7651\"* times|strong=\"H3117\"* brighter, like|strong=\"H1961\"* the|strong=\"H3068\"* light of|strong=\"H3068\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, in|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* that|strong=\"H5971\"* Yahweh|strong=\"H3068\"* binds|strong=\"H2280\"* up|strong=\"H2280\"* the|strong=\"H3068\"* fracture|strong=\"H7667\"* of|strong=\"H3068\"* his|strong=\"H3068\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* heals|strong=\"H7495\"* the|strong=\"H3068\"* wound|strong=\"H4347\"* they|strong=\"H3117\"* were|strong=\"H1961\"* struck with|strong=\"H3068\"*." + }, + { + "verseNum": 27, + "text": "Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"* comes|strong=\"H4390\"* from|strong=\"H3068\"* far|strong=\"H4801\"* away|strong=\"H1197\"*, burning|strong=\"H1197\"* with|strong=\"H4390\"* his|strong=\"H3068\"* anger|strong=\"H2195\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* thick rising smoke|strong=\"H4858\"*. His|strong=\"H3068\"* lips|strong=\"H8193\"* are|strong=\"H3068\"* full|strong=\"H4390\"* of|strong=\"H3068\"* indignation|strong=\"H2195\"*. His|strong=\"H3068\"* tongue|strong=\"H3956\"* is|strong=\"H3068\"* as|strong=\"H3068\"* a|strong=\"H3068\"* devouring fire." + }, + { + "verseNum": 28, + "text": "His|strong=\"H5921\"* breath|strong=\"H7307\"* is|strong=\"H7307\"* as|strong=\"H5704\"* an|strong=\"H5130\"* overflowing|strong=\"H7857\"* stream|strong=\"H5158\"* that|strong=\"H5971\"* reaches|strong=\"H5704\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5921\"* neck|strong=\"H6677\"*, to|strong=\"H5704\"* sift|strong=\"H5130\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* with|strong=\"H5921\"* the|strong=\"H5921\"* sieve|strong=\"H5299\"* of|strong=\"H7307\"* destruction. A|strong=\"H3068\"* bridle|strong=\"H7448\"* that|strong=\"H5971\"* leads|strong=\"H8582\"* to|strong=\"H5704\"* ruin|strong=\"H8582\"* will|strong=\"H1471\"* be|strong=\"H1471\"* in|strong=\"H5921\"* the|strong=\"H5921\"* jaws|strong=\"H3895\"* of|strong=\"H7307\"* the|strong=\"H5921\"* peoples|strong=\"H5971\"*." + }, + { + "verseNum": 29, + "text": "You|strong=\"H3915\"* will|strong=\"H3068\"* have|strong=\"H1961\"* a|strong=\"H3068\"* song|strong=\"H7892\"*, as|strong=\"H1961\"* in|strong=\"H1980\"* the|strong=\"H3068\"* night|strong=\"H3915\"* when|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6942\"* feast|strong=\"H2282\"* is|strong=\"H3068\"* kept|strong=\"H6942\"*, and|strong=\"H1980\"* gladness|strong=\"H8057\"* of|strong=\"H3068\"* heart|strong=\"H3824\"*, as|strong=\"H1961\"* when|strong=\"H1961\"* one|strong=\"H1961\"* goes|strong=\"H1980\"* with|strong=\"H1980\"* a|strong=\"H3068\"* flute|strong=\"H2485\"* to|strong=\"H1980\"* come|strong=\"H1980\"* to|strong=\"H1980\"* Yahweh|strong=\"H3068\"*’s mountain|strong=\"H2022\"*, to|strong=\"H1980\"* Israel|strong=\"H3478\"*’s Rock|strong=\"H6697\"*." + }, + { + "verseNum": 30, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* cause his|strong=\"H3068\"* glorious|strong=\"H1935\"* voice|strong=\"H6963\"* to|strong=\"H3068\"* be|strong=\"H3068\"* heard|strong=\"H8085\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* show|strong=\"H7200\"* the|strong=\"H8085\"* descent of|strong=\"H3068\"* his|strong=\"H3068\"* arm|strong=\"H2220\"*, with|strong=\"H3068\"* the|strong=\"H8085\"* indignation|strong=\"H2197\"* of|strong=\"H3068\"* his|strong=\"H3068\"* anger and|strong=\"H3068\"* the|strong=\"H8085\"* flame|strong=\"H3851\"* of|strong=\"H3068\"* a|strong=\"H3068\"* devouring fire, with|strong=\"H3068\"* a|strong=\"H3068\"* blast, storm|strong=\"H2230\"*, and|strong=\"H3068\"* hailstones|strong=\"H1259\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* through|strong=\"H6963\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"* the|strong=\"H3588\"* Assyrian will|strong=\"H3068\"* be|strong=\"H3068\"* dismayed|strong=\"H2865\"*. He|strong=\"H3588\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H3068\"* his|strong=\"H3068\"* rod|strong=\"H7626\"*." + }, + { + "verseNum": 32, + "text": "Every|strong=\"H3605\"* stroke of|strong=\"H3068\"* the|strong=\"H3605\"* rod|strong=\"H4294\"* of|strong=\"H3068\"* punishment|strong=\"H4145\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* lay|strong=\"H5117\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, will|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H3068\"* the|strong=\"H3605\"* sound of|strong=\"H3068\"* tambourines|strong=\"H8596\"* and|strong=\"H3068\"* harps|strong=\"H3658\"*. He|strong=\"H3068\"* will|strong=\"H3068\"* fight|strong=\"H3898\"* with|strong=\"H3068\"* them|strong=\"H5921\"* in|strong=\"H5921\"* battles|strong=\"H4421\"*, brandishing|strong=\"H8573\"* weapons|strong=\"H4421\"*." + }, + { + "verseNum": 33, + "text": "For|strong=\"H3588\"* his|strong=\"H3068\"* burning|strong=\"H1197\"* place|strong=\"H3559\"* has|strong=\"H3068\"* long|strong=\"H7235\"* been|strong=\"H5397\"* ready|strong=\"H3559\"*. Yes|strong=\"H3588\"*, it|strong=\"H1931\"* is|strong=\"H3068\"* prepared|strong=\"H3559\"* for|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"*. He|strong=\"H1931\"* has|strong=\"H3068\"* made|strong=\"H3559\"* its|strong=\"H3588\"* pyre|strong=\"H4071\"* deep|strong=\"H6009\"* and|strong=\"H3068\"* large|strong=\"H7337\"* with|strong=\"H3068\"* fire and|strong=\"H3068\"* much|strong=\"H7235\"* wood|strong=\"H6086\"*. Yahweh|strong=\"H3068\"*’s breath|strong=\"H5397\"*, like|strong=\"H1197\"* a|strong=\"H3068\"* stream|strong=\"H5158\"* of|strong=\"H4428\"* sulfur|strong=\"H1614\"*, kindles it|strong=\"H1931\"*." + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Woe|strong=\"H1945\"* to|strong=\"H3381\"* those|strong=\"H1945\"* who|strong=\"H3068\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Egypt|strong=\"H4714\"* for|strong=\"H3588\"* help|strong=\"H5833\"*," + }, + { + "verseNum": 2, + "text": "Yet|strong=\"H1571\"* he|strong=\"H1931\"* also|strong=\"H1571\"* is|strong=\"H1931\"* wise|strong=\"H2450\"*, and|strong=\"H6965\"* will|strong=\"H1571\"* bring|strong=\"H7451\"* disaster|strong=\"H7451\"*," + }, + { + "verseNum": 3, + "text": "Now|strong=\"H4714\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"* are|strong=\"H3027\"* men|strong=\"H3605\"*, and|strong=\"H3068\"* not|strong=\"H3808\"* God|strong=\"H3068\"*;" + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3381\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 5, + "text": "As|strong=\"H3651\"* birds|strong=\"H6833\"* hovering, so|strong=\"H3651\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* will|strong=\"H3068\"* protect|strong=\"H1598\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 6, + "text": "Return|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H7725\"* from|strong=\"H7725\"* whom you|strong=\"H7725\"* have|strong=\"H1121\"* deeply|strong=\"H6009\"* revolted|strong=\"H5627\"*, children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* in|strong=\"H6213\"* that|strong=\"H3588\"* day|strong=\"H3117\"* everyone shall|strong=\"H3117\"* cast|strong=\"H3988\"* away|strong=\"H3988\"* his|strong=\"H3027\"* idols of|strong=\"H3117\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* his|strong=\"H3027\"* idols of|strong=\"H3117\"* gold|strong=\"H2091\"*—sin|strong=\"H2399\"* which|strong=\"H1931\"* your|strong=\"H6213\"* own|strong=\"H3027\"* hands|strong=\"H3027\"* have|strong=\"H3027\"* made|strong=\"H6213\"* for|strong=\"H3588\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 8, + "text": "“The|strong=\"H6440\"* Assyrian will|strong=\"H1961\"* fall|strong=\"H5307\"* by|strong=\"H1961\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*, not|strong=\"H3808\"* of|strong=\"H6440\"* man|strong=\"H5307\"*;" + }, + { + "verseNum": 9, + "text": "His|strong=\"H3068\"* rock|strong=\"H5553\"* will|strong=\"H3068\"* pass|strong=\"H5674\"* away|strong=\"H5674\"* by|strong=\"H5674\"* reason of|strong=\"H3068\"* terror|strong=\"H4032\"*," + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "Behold|strong=\"H2005\"*, a|strong=\"H3068\"* king|strong=\"H4428\"* shall|strong=\"H4428\"* reign|strong=\"H4427\"* in|strong=\"H4428\"* righteousness|strong=\"H6664\"*," + }, + { + "verseNum": 2, + "text": "A|strong=\"H3068\"* man shall|strong=\"H4325\"* be|strong=\"H1961\"* as|strong=\"H1961\"* a|strong=\"H3068\"* hiding|strong=\"H5643\"* place|strong=\"H5643\"* from|strong=\"H7307\"* the|strong=\"H1961\"* wind|strong=\"H7307\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H8085\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* those|strong=\"H8085\"* who|strong=\"H3808\"* see|strong=\"H7200\"* will|strong=\"H5869\"* not|strong=\"H3808\"* be|strong=\"H3808\"* dim|strong=\"H8159\"*," + }, + { + "verseNum": 4, + "text": "The|strong=\"H3045\"* heart|strong=\"H3824\"* of|strong=\"H3824\"* the|strong=\"H3045\"* rash|strong=\"H4116\"* will|strong=\"H3824\"* understand|strong=\"H3045\"* knowledge|strong=\"H3045\"*," + }, + { + "verseNum": 5, + "text": "The|strong=\"H7121\"* fool|strong=\"H5036\"* will|strong=\"H3808\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* be|strong=\"H3808\"* called|strong=\"H7121\"* noble|strong=\"H5081\"*," + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* fool|strong=\"H5036\"* will|strong=\"H3068\"* speak|strong=\"H1696\"* folly|strong=\"H5039\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H1696\"* ways of|strong=\"H3627\"* the|strong=\"H1696\"* scoundrel are|strong=\"H4941\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H1931\"* the|strong=\"H5921\"* noble|strong=\"H5081\"* devises|strong=\"H3289\"* noble|strong=\"H5081\"* things|strong=\"H5081\"*," + }, + { + "verseNum": 9, + "text": "Rise|strong=\"H6965\"* up|strong=\"H6965\"*, you|strong=\"H6965\"* women|strong=\"H1323\"* who|strong=\"H7600\"* are|strong=\"H1323\"* at|strong=\"H6965\"* ease|strong=\"H7600\"*! Hear|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*!" + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* days|strong=\"H3117\"* beyond|strong=\"H5921\"* a|strong=\"H3068\"* year|strong=\"H8141\"* you|strong=\"H3588\"* will|strong=\"H3117\"* be|strong=\"H3117\"* troubled|strong=\"H7264\"*, you|strong=\"H3588\"* careless women;" + }, + { + "verseNum": 11, + "text": "Tremble|strong=\"H7264\"*, you|strong=\"H5921\"* women who|strong=\"H7600\"* are at|strong=\"H5921\"* ease|strong=\"H7600\"*!" + }, + { + "verseNum": 12, + "text": "Beat|strong=\"H5594\"* your|strong=\"H5921\"* breasts|strong=\"H7699\"* for|strong=\"H5921\"* the|strong=\"H5921\"* pleasant|strong=\"H2531\"* fields|strong=\"H7704\"*," + }, + { + "verseNum": 13, + "text": "Thorns|strong=\"H6975\"* and|strong=\"H1004\"* briers|strong=\"H8068\"* will|strong=\"H5971\"* come|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H5921\"* my|strong=\"H3605\"* people|strong=\"H5971\"*’s land;" + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* palace will|strong=\"H1961\"* be|strong=\"H1961\"* forsaken|strong=\"H5800\"*." + }, + { + "verseNum": 15, + "text": "until|strong=\"H5704\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"* is|strong=\"H7307\"* poured|strong=\"H6168\"* on|strong=\"H5921\"* us|strong=\"H5921\"* from|strong=\"H5921\"* on|strong=\"H5921\"* high|strong=\"H4791\"*," + }, + { + "verseNum": 16, + "text": "Then justice|strong=\"H4941\"* will|strong=\"H6666\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* wilderness|strong=\"H4057\"*;" + }, + { + "verseNum": 17, + "text": "The|strong=\"H5704\"* work|strong=\"H4639\"* of|strong=\"H4639\"* righteousness|strong=\"H6666\"* will|strong=\"H1961\"* be|strong=\"H1961\"* peace|strong=\"H7965\"*," + }, + { + "verseNum": 18, + "text": "My|strong=\"H5971\"* people|strong=\"H5971\"* will|strong=\"H5971\"* live|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* peaceful|strong=\"H7965\"* habitation|strong=\"H5116\"*," + }, + { + "verseNum": 19, + "text": "though hail|strong=\"H1258\"* flattens the|strong=\"H3381\"* forest|strong=\"H3293\"*," + }, + { + "verseNum": 20, + "text": "Blessed are|strong=\"H4325\"* you|strong=\"H3605\"* who|strong=\"H3605\"* sow|strong=\"H2232\"* beside|strong=\"H5921\"* all|strong=\"H3605\"* waters|strong=\"H4325\"*," + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Woe|strong=\"H1945\"* to|strong=\"H3808\"* you|strong=\"H3808\"* who|strong=\"H3808\"* destroy|strong=\"H7703\"*, but|strong=\"H3808\"* you|strong=\"H3808\"* weren’t destroyed|strong=\"H7703\"*," + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"*, be|strong=\"H1961\"* gracious|strong=\"H2603\"* to|strong=\"H3068\"* us|strong=\"H1961\"*. We have|strong=\"H1961\"* waited|strong=\"H6960\"* for|strong=\"H3068\"* you|strong=\"H6256\"*." + }, + { + "verseNum": 3, + "text": "At|strong=\"H5971\"* the|strong=\"H5971\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H5971\"* thunder|strong=\"H6963\"*, the|strong=\"H5971\"* peoples|strong=\"H5971\"* have|strong=\"H5971\"* fled|strong=\"H5074\"*." + }, + { + "verseNum": 4, + "text": "Your plunder|strong=\"H7998\"* will be gathered as|strong=\"H7998\"* the caterpillar|strong=\"H2625\"* gathers." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* exalted|strong=\"H7682\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* dwells|strong=\"H7931\"* on|strong=\"H3068\"* high|strong=\"H4791\"*." + }, + { + "verseNum": 6, + "text": "There|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* stability in|strong=\"H3068\"* your|strong=\"H3068\"* times|strong=\"H6256\"*, abundance of|strong=\"H3068\"* salvation|strong=\"H3444\"*, wisdom|strong=\"H2451\"*, and|strong=\"H3068\"* knowledge|strong=\"H1847\"*." + }, + { + "verseNum": 7, + "text": "Behold|strong=\"H2005\"*, their valiant ones cry|strong=\"H6817\"* outside|strong=\"H2351\"*;" + }, + { + "verseNum": 8, + "text": "The|strong=\"H5674\"* highways|strong=\"H4546\"* are|strong=\"H5892\"* desolate|strong=\"H8074\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H1961\"* land mourns and|strong=\"H3844\"* languishes." + }, + { + "verseNum": 10, + "text": "“Now|strong=\"H6258\"* I|strong=\"H6258\"* will|strong=\"H3068\"* arise|strong=\"H6965\"*,” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H3205\"* will|strong=\"H7307\"* conceive|strong=\"H2029\"* chaff|strong=\"H7179\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1961\"* peoples|strong=\"H5971\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H1961\"* burning of|strong=\"H5971\"* lime|strong=\"H7875\"*," + }, + { + "verseNum": 13, + "text": "Hear|strong=\"H8085\"*, you|strong=\"H6213\"* who|strong=\"H7350\"* are|strong=\"H7350\"* far|strong=\"H7350\"* off|strong=\"H7350\"*, what|strong=\"H3045\"* I|strong=\"H3045\"* have|strong=\"H3045\"* done|strong=\"H6213\"*;" + }, + { + "verseNum": 14, + "text": "The|strong=\"H6726\"* sinners|strong=\"H2400\"* in|strong=\"H1481\"* Zion|strong=\"H6726\"* are|strong=\"H6726\"* afraid|strong=\"H6342\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H1980\"* who|strong=\"H1980\"* walks|strong=\"H1980\"* righteously|strong=\"H6666\"*" + }, + { + "verseNum": 16, + "text": "he|strong=\"H1931\"* will|strong=\"H5414\"* dwell|strong=\"H7931\"* on|strong=\"H7931\"* high|strong=\"H4791\"*." + }, + { + "verseNum": 17, + "text": "Your|strong=\"H7200\"* eyes|strong=\"H5869\"* will|strong=\"H4428\"* see|strong=\"H7200\"* the|strong=\"H7200\"* king|strong=\"H4428\"* in|strong=\"H4428\"* his|strong=\"H7200\"* beauty|strong=\"H3308\"*." + }, + { + "verseNum": 18, + "text": "Your|strong=\"H5608\"* heart|strong=\"H3820\"* will|strong=\"H3820\"* meditate|strong=\"H1897\"* on|strong=\"H1897\"* the|strong=\"H5608\"* terror." + }, + { + "verseNum": 19, + "text": "You|strong=\"H3808\"* will|strong=\"H5971\"* no|strong=\"H3808\"* longer|strong=\"H3808\"* see|strong=\"H7200\"* the|strong=\"H8085\"* fierce|strong=\"H3267\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 20, + "text": "Look|strong=\"H7200\"* at|strong=\"H7200\"* Zion|strong=\"H6726\"*, the|strong=\"H3605\"* city|strong=\"H7151\"* of|strong=\"H5869\"* our|strong=\"H3605\"* appointed|strong=\"H4150\"* festivals|strong=\"H4150\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"H3588\"* there|strong=\"H8033\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3808\"* with|strong=\"H3068\"* us|strong=\"H3588\"* in|strong=\"H3068\"* majesty," + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* our|strong=\"H3068\"* judge|strong=\"H8199\"*." + }, + { + "verseNum": 23, + "text": "Your|strong=\"H2388\"* rigging is|strong=\"H3653\"* untied." + }, + { + "verseNum": 24, + "text": "The|strong=\"H5375\"* inhabitant|strong=\"H3427\"* won’t say, “I|strong=\"H5971\"* am|strong=\"H2470\"* sick|strong=\"H2470\"*.”" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Come|strong=\"H7126\"* near|strong=\"H7126\"*, you|strong=\"H3605\"* nations|strong=\"H1471\"*, to|strong=\"H8085\"* hear|strong=\"H8085\"*!" + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* enraged against|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 3, + "text": "Their|strong=\"H7993\"* slain|strong=\"H2491\"* will|strong=\"H2022\"* also be|strong=\"H2022\"* cast|strong=\"H7993\"* out|strong=\"H7993\"*," + }, + { + "verseNum": 4, + "text": "All|strong=\"H3605\"* of|strong=\"H6635\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H6635\"* the|strong=\"H3605\"* sky|strong=\"H8064\"* will|strong=\"H8064\"* be|strong=\"H8064\"* dissolved|strong=\"H4743\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* my|strong=\"H5921\"* sword|strong=\"H2719\"* has|strong=\"H3588\"* drunk|strong=\"H7301\"* its|strong=\"H5921\"* fill|strong=\"H7301\"* in|strong=\"H5921\"* the|strong=\"H5921\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"*’s sword|strong=\"H2719\"* is|strong=\"H3068\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5973\"* wild|strong=\"H7214\"* oxen|strong=\"H6499\"* will|strong=\"H1818\"* come|strong=\"H3381\"* down|strong=\"H3381\"* with|strong=\"H5973\"* them|strong=\"H3381\"*," + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* vengeance|strong=\"H5359\"*," + }, + { + "verseNum": 9, + "text": "Its|strong=\"H1961\"* streams|strong=\"H5158\"* will|strong=\"H1961\"* be|strong=\"H1961\"* turned|strong=\"H2015\"* into|strong=\"H2015\"* pitch|strong=\"H2203\"*," + }, + { + "verseNum": 10, + "text": "It|strong=\"H5927\"* won’t be|strong=\"H3808\"* quenched|strong=\"H3518\"* night|strong=\"H3915\"* or|strong=\"H3808\"* day|strong=\"H3119\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H5921\"* the|strong=\"H5921\"* pelican|strong=\"H6893\"* and|strong=\"H8414\"* the|strong=\"H5921\"* porcupine will|strong=\"H7090\"* possess|strong=\"H3423\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H8033\"* shall|strong=\"H8269\"* call|strong=\"H7121\"* its|strong=\"H3605\"* nobles|strong=\"H2715\"* to|strong=\"H1961\"* the|strong=\"H3605\"* kingdom|strong=\"H4410\"*, but|strong=\"H1961\"* none|strong=\"H3605\"* shall|strong=\"H8269\"* be|strong=\"H1961\"* there|strong=\"H8033\"*;" + }, + { + "verseNum": 13, + "text": "Thorns|strong=\"H2336\"* will|strong=\"H1961\"* come|strong=\"H5927\"* up|strong=\"H5927\"* in|strong=\"H5927\"* its|strong=\"H5927\"* palaces," + }, + { + "verseNum": 14, + "text": "The|strong=\"H5921\"* wild animals of|strong=\"H5921\"* the|strong=\"H5921\"* desert|strong=\"H6728\"* will|strong=\"H7453\"* meet|strong=\"H6298\"* with|strong=\"H5921\"* the|strong=\"H5921\"* wolves," + }, + { + "verseNum": 15, + "text": "The|strong=\"H8033\"* arrow snake|strong=\"H7091\"* will|strong=\"H8033\"* make|strong=\"H1234\"* her nest|strong=\"H7077\"* there|strong=\"H8033\"*," + }, + { + "verseNum": 16, + "text": "Search|strong=\"H1875\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* read|strong=\"H7121\"*:" + }, + { + "verseNum": 17, + "text": "He|strong=\"H1931\"* has|strong=\"H3027\"* cast|strong=\"H5307\"* the|strong=\"H5704\"* lot|strong=\"H1486\"* for|strong=\"H5704\"* them|strong=\"H1992\"*," + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H4057\"* wilderness|strong=\"H4057\"* and|strong=\"H4057\"* the|strong=\"H4057\"* dry|strong=\"H6723\"* land|strong=\"H6723\"* will|strong=\"H6160\"* be glad|strong=\"H1523\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H5414\"* will|strong=\"H3068\"* blossom|strong=\"H6524\"* abundantly|strong=\"H6524\"*," + }, + { + "verseNum": 3, + "text": "Strengthen|strong=\"H2388\"* the|strong=\"H2388\"* weak|strong=\"H7504\"* hands|strong=\"H3027\"*," + }, + { + "verseNum": 4, + "text": "Tell those|strong=\"H1931\"* who|strong=\"H1931\"* have|strong=\"H3372\"* a|strong=\"H3068\"* fearful|strong=\"H3372\"* heart|strong=\"H3820\"*, “Be|strong=\"H3820\"* strong|strong=\"H2388\"*!" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6491\"* the|strong=\"H6605\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H6605\"* blind|strong=\"H5787\"* will|strong=\"H5869\"* be|strong=\"H5869\"* opened|strong=\"H6605\"*," + }, + { + "verseNum": 6, + "text": "Then|strong=\"H3588\"* the|strong=\"H3588\"* lame|strong=\"H6455\"* man|strong=\"H6455\"* will|strong=\"H4325\"* leap|strong=\"H1801\"* like|strong=\"H4057\"* a|strong=\"H3068\"* deer," + }, + { + "verseNum": 7, + "text": "The|strong=\"H1961\"* burning sand will|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* pool|strong=\"H4325\"*," + }, + { + "verseNum": 8, + "text": "A|strong=\"H3068\"* highway|strong=\"H1870\"* will|strong=\"H1961\"* be|strong=\"H1961\"* there|strong=\"H8033\"*, a|strong=\"H3068\"* road|strong=\"H1870\"*," + }, + { + "verseNum": 9, + "text": "No|strong=\"H3808\"* lion will|strong=\"H1961\"* be|strong=\"H1961\"* there|strong=\"H8033\"*," + }, + { + "verseNum": 10, + "text": "Then|strong=\"H7725\"* Yahweh|strong=\"H3068\"*’s ransomed|strong=\"H6299\"* ones will|strong=\"H3068\"* return|strong=\"H7725\"*," + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H3605\"* fourteenth|strong=\"H6240\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"*, Sennacherib|strong=\"H5576\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria attacked|strong=\"H5927\"* all|strong=\"H3605\"* of|strong=\"H4428\"* the|strong=\"H3605\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* captured|strong=\"H8610\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria sent|strong=\"H7971\"* Rabshakeh|strong=\"H7262\"* from|strong=\"H7971\"* Lachish|strong=\"H3923\"* to|strong=\"H7971\"* Jerusalem|strong=\"H3389\"* to|strong=\"H7971\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* with|strong=\"H3389\"* a|strong=\"H3068\"* large|strong=\"H3515\"* army|strong=\"H2426\"*. He|strong=\"H3389\"* stood|strong=\"H5975\"* by|strong=\"H5975\"* the|strong=\"H7971\"* aqueduct from|strong=\"H7971\"* the|strong=\"H7971\"* upper|strong=\"H5945\"* pool|strong=\"H1295\"* in|strong=\"H4428\"* the|strong=\"H7971\"* fuller’s field|strong=\"H7704\"* highway|strong=\"H4546\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H3318\"* Eliakim the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*, who|strong=\"H1121\"* was|strong=\"H1004\"* over|strong=\"H5921\"* the|strong=\"H5921\"* household|strong=\"H1004\"*, and|strong=\"H1121\"* Shebna|strong=\"H7644\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"*, and|strong=\"H1121\"* Joah|strong=\"H3098\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asaph the|strong=\"H5921\"* recorder|strong=\"H2142\"* came|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 4, + "text": "Rabshakeh|strong=\"H7262\"* said to|strong=\"H4428\"* them|strong=\"H2088\"*, “Now|strong=\"H4994\"* tell|strong=\"H4994\"* Hezekiah|strong=\"H2396\"*, ‘The|strong=\"H3541\"* great|strong=\"H1419\"* king|strong=\"H4428\"*, the|strong=\"H3541\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, says|strong=\"H3541\"*, “What|strong=\"H4100\"* confidence is|strong=\"H2088\"* this|strong=\"H2088\"* in|strong=\"H4428\"* which|strong=\"H4100\"* you|strong=\"H4100\"* trust?" + }, + { + "verseNum": 5, + "text": "I|strong=\"H3588\"* say|strong=\"H1697\"* that|strong=\"H3588\"* your|strong=\"H5921\"* counsel|strong=\"H6098\"* and|strong=\"H1697\"* strength|strong=\"H1369\"* for|strong=\"H3588\"* the|strong=\"H5921\"* war|strong=\"H4421\"* are|strong=\"H1697\"* only|strong=\"H3588\"* vain|strong=\"H8193\"* words|strong=\"H1697\"*. Now|strong=\"H6258\"* in|strong=\"H5921\"* whom|strong=\"H4310\"* do|strong=\"H1697\"* you|strong=\"H3588\"* trust, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1697\"* rebelled|strong=\"H4775\"* against|strong=\"H5921\"* me|strong=\"H5921\"*?" + }, + { + "verseNum": 6, + "text": "Behold|strong=\"H2009\"*, you|strong=\"H3605\"* trust in|strong=\"H5921\"* the|strong=\"H3605\"* staff|strong=\"H4938\"* of|strong=\"H4428\"* this|strong=\"H2088\"* bruised|strong=\"H7533\"* reed|strong=\"H7070\"*, even|strong=\"H3651\"* in|strong=\"H5921\"* Egypt|strong=\"H4714\"*, which|strong=\"H2088\"* if|strong=\"H2009\"* a|strong=\"H3068\"* man|strong=\"H3605\"* leans|strong=\"H5564\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, it|strong=\"H5921\"* will|strong=\"H4428\"* go|strong=\"H4428\"* into|strong=\"H5921\"* his|strong=\"H3605\"* hand|strong=\"H3709\"* and|strong=\"H4428\"* pierce|strong=\"H5344\"* it|strong=\"H5921\"*. So|strong=\"H3651\"* is|strong=\"H2088\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* to|strong=\"H5921\"* all|strong=\"H3605\"* who|strong=\"H3605\"* trust in|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* tell me|strong=\"H6440\"*, ‘We|strong=\"H3588\"* trust in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*,’ isn’t that|strong=\"H3588\"* he|strong=\"H1931\"* whose high|strong=\"H1116\"* places|strong=\"H1116\"* and|strong=\"H3063\"* whose altars|strong=\"H4196\"* Hezekiah|strong=\"H2396\"* has|strong=\"H3068\"* taken|strong=\"H5493\"* away|strong=\"H5493\"*, and|strong=\"H3063\"* has|strong=\"H3068\"* said to|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, ‘You|strong=\"H3588\"* shall|strong=\"H3068\"* worship|strong=\"H7812\"* before|strong=\"H6440\"* this|strong=\"H2088\"* altar|strong=\"H4196\"*’?”" + }, + { + "verseNum": 8, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, please|strong=\"H4994\"* make|strong=\"H5414\"* a|strong=\"H3068\"* pledge to|strong=\"H3201\"* my|strong=\"H5414\"* master|strong=\"H5414\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, and|strong=\"H4428\"* I|strong=\"H5414\"* will|strong=\"H4428\"* give|strong=\"H5414\"* you|strong=\"H5414\"* two thousand horses|strong=\"H5483\"*, if you|strong=\"H5414\"* are|strong=\"H5483\"* able|strong=\"H3201\"* on|strong=\"H5921\"* your|strong=\"H5414\"* part|strong=\"H5921\"* to|strong=\"H3201\"* set|strong=\"H5414\"* riders|strong=\"H7392\"* on|strong=\"H5921\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 9, + "text": "How then|strong=\"H7725\"* can|strong=\"H5650\"* you|strong=\"H6440\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* one|strong=\"H6996\"* captain|strong=\"H6346\"* of|strong=\"H6440\"* the|strong=\"H6440\"* least|strong=\"H6996\"* of|strong=\"H6440\"* my|strong=\"H5921\"* master’s servants|strong=\"H5650\"*, and|strong=\"H7725\"* put|strong=\"H7725\"* your|strong=\"H5921\"* trust in|strong=\"H5921\"* Egypt|strong=\"H4714\"* for|strong=\"H5921\"* chariots|strong=\"H7393\"* and|strong=\"H7725\"* for|strong=\"H5921\"* horsemen|strong=\"H6571\"*?" + }, + { + "verseNum": 10, + "text": "Have|strong=\"H3068\"* I|strong=\"H5921\"* come|strong=\"H5927\"* up|strong=\"H5927\"* now|strong=\"H6258\"* without|strong=\"H1107\"* Yahweh|strong=\"H3068\"* against|strong=\"H5921\"* this|strong=\"H2063\"* land to|strong=\"H3068\"* destroy|strong=\"H7843\"* it|strong=\"H5921\"*? Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H5921\"*, “Go|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* this|strong=\"H2063\"* land, and|strong=\"H3068\"* destroy|strong=\"H7843\"* it|strong=\"H5921\"*.”’”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H1696\"* Eliakim, Shebna|strong=\"H7644\"* and|strong=\"H5971\"* Joah|strong=\"H3098\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Rabshakeh|strong=\"H7262\"*, “Please|strong=\"H4994\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* your|strong=\"H5921\"* servants|strong=\"H5650\"* in|strong=\"H5921\"* Aramaic, for|strong=\"H3588\"* we|strong=\"H3068\"* understand|strong=\"H8085\"* it|strong=\"H5921\"*. Don’t speak|strong=\"H1696\"* to|strong=\"H1696\"* us|strong=\"H4994\"* in|strong=\"H5921\"* the|strong=\"H5921\"* Jews’ language|strong=\"H3066\"* in|strong=\"H5921\"* the|strong=\"H5921\"* hearing|strong=\"H8085\"* of|strong=\"H5650\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*.”" + }, + { + "verseNum": 12, + "text": "But|strong=\"H3808\"* Rabshakeh|strong=\"H7262\"* said|strong=\"H1696\"*, “Has|strong=\"H1697\"* my|strong=\"H5921\"* master|strong=\"H3427\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* only to|strong=\"H1696\"* your|strong=\"H5921\"* master|strong=\"H3427\"* and|strong=\"H7971\"* to|strong=\"H1696\"* you|strong=\"H7971\"*, to|strong=\"H1696\"* speak|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"*, and|strong=\"H7971\"* not|strong=\"H3808\"* to|strong=\"H1696\"* the|strong=\"H5921\"* men who|strong=\"H3427\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*, who|strong=\"H3427\"* will|strong=\"H1697\"* eat their|strong=\"H5921\"* own|strong=\"H5973\"* dung|strong=\"H2716\"* and|strong=\"H7971\"* drink|strong=\"H8354\"* their|strong=\"H5921\"* own|strong=\"H5973\"* urine|strong=\"H7890\"* with|strong=\"H5973\"* you|strong=\"H7971\"*?”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H5975\"* Rabshakeh|strong=\"H7262\"* stood|strong=\"H5975\"*, and|strong=\"H4428\"* called|strong=\"H7121\"* out|strong=\"H1419\"* with|strong=\"H1697\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"* in|strong=\"H4428\"* the|strong=\"H8085\"* Jews’ language|strong=\"H3066\"*, and|strong=\"H4428\"* said|strong=\"H1697\"*, “Hear|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H8085\"* great|strong=\"H1419\"* king|strong=\"H4428\"*, the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria!" + }, + { + "verseNum": 14, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* says|strong=\"H3541\"*, ‘Don’t let|strong=\"H3808\"* Hezekiah|strong=\"H2396\"* deceive|strong=\"H5377\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H4428\"* not|strong=\"H3808\"* be|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* deliver|strong=\"H5337\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 15, + "text": "Don’t let|strong=\"H5414\"* Hezekiah|strong=\"H2396\"* make|strong=\"H5414\"* you|strong=\"H5414\"* trust in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying, “Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* surely|strong=\"H5414\"* deliver|strong=\"H5337\"* us|strong=\"H5414\"*. This|strong=\"H2063\"* city|strong=\"H5892\"* won’t be|strong=\"H3808\"* given|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria.”’" + }, + { + "verseNum": 16, + "text": "Don’t listen|strong=\"H8085\"* to|strong=\"H3318\"* Hezekiah|strong=\"H2396\"*, for|strong=\"H3588\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria says|strong=\"H3541\"*, ‘Make|strong=\"H6213\"* your|strong=\"H8085\"* peace|strong=\"H1293\"* with|strong=\"H6213\"* me|strong=\"H6213\"*, and|strong=\"H4428\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* me|strong=\"H6213\"*; and|strong=\"H4428\"* each|strong=\"H3541\"* of|strong=\"H4428\"* you|strong=\"H3588\"* eat from|strong=\"H3318\"* his|strong=\"H8085\"* vine|strong=\"H1612\"*, and|strong=\"H4428\"* each|strong=\"H3541\"* one|strong=\"H6213\"* from|strong=\"H3318\"* his|strong=\"H8085\"* fig|strong=\"H8384\"* tree|strong=\"H8384\"*, and|strong=\"H4428\"* each|strong=\"H3541\"* one|strong=\"H6213\"* of|strong=\"H4428\"* you|strong=\"H3588\"* drink|strong=\"H8354\"* the|strong=\"H8085\"* waters|strong=\"H4325\"* of|strong=\"H4428\"* his|strong=\"H8085\"* own cistern;" + }, + { + "verseNum": 17, + "text": "until|strong=\"H5704\"* I|strong=\"H5704\"* come and|strong=\"H3899\"* take|strong=\"H3947\"* you|strong=\"H5704\"* away|strong=\"H3947\"* to|strong=\"H5704\"* a|strong=\"H3068\"* land like|strong=\"H5704\"* your|strong=\"H3947\"* own land, a|strong=\"H3068\"* land of|strong=\"H3899\"* grain|strong=\"H1715\"* and|strong=\"H3899\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, a|strong=\"H3068\"* land of|strong=\"H3899\"* bread|strong=\"H3899\"* and|strong=\"H3899\"* vineyards|strong=\"H3754\"*." + }, + { + "verseNum": 18, + "text": "Beware|strong=\"H6435\"* lest|strong=\"H6435\"* Hezekiah|strong=\"H2396\"* persuade|strong=\"H5496\"* you|strong=\"H6435\"*, saying, “Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5337\"* us|strong=\"H6435\"*.” Have|strong=\"H3068\"* any of|strong=\"H4428\"* the|strong=\"H3068\"* gods of|strong=\"H4428\"* the|strong=\"H3068\"* nations|strong=\"H1471\"* delivered|strong=\"H5337\"* their|strong=\"H3068\"* lands from|strong=\"H3027\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria?" + }, + { + "verseNum": 19, + "text": "Where|strong=\"H3027\"* are|strong=\"H3027\"* the|strong=\"H3588\"* gods of|strong=\"H3027\"* Hamath|strong=\"H2574\"* and|strong=\"H3027\"* Arpad? Where|strong=\"H3027\"* are|strong=\"H3027\"* the|strong=\"H3588\"* gods of|strong=\"H3027\"* Sepharvaim|strong=\"H5617\"*? Have|strong=\"H3027\"* they|strong=\"H3588\"* delivered|strong=\"H5337\"* Samaria|strong=\"H8111\"* from|strong=\"H3027\"* my|strong=\"H5337\"* hand|strong=\"H3027\"*?" + }, + { + "verseNum": 20, + "text": "Who|strong=\"H4310\"* are|strong=\"H3027\"* they|strong=\"H3588\"* among|strong=\"H4310\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gods of|strong=\"H3068\"* these|strong=\"H3605\"* countries that|strong=\"H3588\"* have|strong=\"H3068\"* delivered|strong=\"H5337\"* their|strong=\"H3605\"* country out|strong=\"H5337\"* of|strong=\"H3068\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*, that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* should|strong=\"H3068\"* deliver|strong=\"H5337\"* Jerusalem|strong=\"H3389\"* out|strong=\"H5337\"* of|strong=\"H3068\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*?’”" + }, + { + "verseNum": 21, + "text": "But|strong=\"H3588\"* they|strong=\"H3588\"* remained|strong=\"H2790\"* silent|strong=\"H2790\"*, and|strong=\"H6030\"* said|strong=\"H1697\"* nothing|strong=\"H3808\"* in|strong=\"H4428\"* reply|strong=\"H6030\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"*’s commandment|strong=\"H4687\"* was|strong=\"H1931\"*, “Don’t answer|strong=\"H6030\"* him|strong=\"H1931\"*.”" + }, + { + "verseNum": 22, + "text": "Then|strong=\"H1121\"* Eliakim the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*, who|strong=\"H1121\"* was|strong=\"H1697\"* over|strong=\"H5921\"* the|strong=\"H5921\"* household|strong=\"H1004\"*, and|strong=\"H1121\"* Shebna|strong=\"H7644\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"*, and|strong=\"H1121\"* Joah|strong=\"H3098\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asaph the|strong=\"H5921\"* recorder|strong=\"H2142\"*, came|strong=\"H1697\"* to|strong=\"H5921\"* Hezekiah|strong=\"H2396\"* with|strong=\"H1004\"* their|strong=\"H5921\"* clothes torn|strong=\"H7167\"*, and|strong=\"H1121\"* told|strong=\"H5046\"* him|strong=\"H5921\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Rabshakeh|strong=\"H7262\"*." + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* heard|strong=\"H8085\"* it|strong=\"H1961\"*, he|strong=\"H3068\"* tore|strong=\"H7167\"* his|strong=\"H3068\"* clothes, covered|strong=\"H3680\"* himself|strong=\"H3068\"* with|strong=\"H1004\"* sackcloth|strong=\"H8242\"*, and|strong=\"H3068\"* went|strong=\"H3068\"* into|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H1004\"* sent|strong=\"H7971\"* Eliakim, who|strong=\"H3548\"* was|strong=\"H1004\"* over|strong=\"H5921\"* the|strong=\"H5921\"* household|strong=\"H1004\"*, and|strong=\"H1121\"* Shebna|strong=\"H7644\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* the|strong=\"H5921\"* priests|strong=\"H3548\"*, covered|strong=\"H3680\"* with|strong=\"H1004\"* sackcloth|strong=\"H8242\"*, to|strong=\"H7971\"* Isaiah|strong=\"H3470\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz." + }, + { + "verseNum": 3, + "text": "They|strong=\"H3588\"* said to|strong=\"H5704\"* him|strong=\"H3205\"*, “Hezekiah|strong=\"H2396\"* says|strong=\"H3541\"*, ‘Today|strong=\"H3117\"* is|strong=\"H2088\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H1121\"* trouble|strong=\"H6869\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* rebuke|strong=\"H8433\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* rejection|strong=\"H5007\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* have|strong=\"H1121\"* come|strong=\"H3205\"* to|strong=\"H5704\"* the|strong=\"H3588\"* birth|strong=\"H3205\"*, and|strong=\"H1121\"* there|strong=\"H2088\"* is|strong=\"H2088\"* no strength|strong=\"H3581\"* to|strong=\"H5704\"* give|strong=\"H3205\"* birth|strong=\"H3205\"*." + }, + { + "verseNum": 4, + "text": "It|strong=\"H5375\"* may|strong=\"H3068\"* be|strong=\"H1697\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* hear|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H4428\"* Rabshakeh|strong=\"H7262\"*, whom the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria his|strong=\"H5375\"* master has|strong=\"H3068\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* defy|strong=\"H2778\"* the|strong=\"H8085\"* living|strong=\"H2416\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* rebuke|strong=\"H3198\"* the|strong=\"H8085\"* words|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* heard|strong=\"H8085\"*. Therefore|strong=\"H7971\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H3068\"* prayer|strong=\"H8605\"* for|strong=\"H1157\"* the|strong=\"H8085\"* remnant|strong=\"H7611\"* that|strong=\"H8085\"* is|strong=\"H3068\"* left|strong=\"H4672\"*.’”" + }, + { + "verseNum": 5, + "text": "So|strong=\"H5650\"* the|strong=\"H5650\"* servants|strong=\"H5650\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* came|strong=\"H5650\"* to|strong=\"H4428\"* Isaiah|strong=\"H3470\"*." + }, + { + "verseNum": 6, + "text": "Isaiah|strong=\"H3470\"* said|strong=\"H1697\"* to|strong=\"H3068\"* them|strong=\"H6440\"*, “Tell|strong=\"H8085\"* your|strong=\"H3068\"* master, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Don’t be|strong=\"H1697\"* afraid|strong=\"H3372\"* of|strong=\"H4428\"* the|strong=\"H6440\"* words|strong=\"H1697\"* that|strong=\"H8085\"* you|strong=\"H6440\"* have|strong=\"H3068\"* heard|strong=\"H8085\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* the|strong=\"H6440\"* servants|strong=\"H5288\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria have|strong=\"H3068\"* blasphemed|strong=\"H1442\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 7, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H2719\"* put|strong=\"H5414\"* a|strong=\"H3068\"* spirit|strong=\"H7307\"* in|strong=\"H8085\"* him|strong=\"H5414\"* and|strong=\"H7725\"* he|strong=\"H5414\"* will|strong=\"H2719\"* hear|strong=\"H8085\"* news|strong=\"H8052\"*, and|strong=\"H7725\"* will|strong=\"H2719\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H5414\"* own land. I|strong=\"H2005\"* will|strong=\"H2719\"* cause|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H7725\"* fall|strong=\"H5307\"* by|strong=\"H5414\"* the|strong=\"H8085\"* sword|strong=\"H2719\"* in|strong=\"H8085\"* his|strong=\"H5414\"* own land.”’”" + }, + { + "verseNum": 8, + "text": "So|strong=\"H7725\"* Rabshakeh|strong=\"H7262\"* returned|strong=\"H7725\"*, and|strong=\"H7725\"* found|strong=\"H4672\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria warring|strong=\"H3898\"* against|strong=\"H5921\"* Libnah|strong=\"H3841\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H4428\"* departed|strong=\"H5265\"* from|strong=\"H5265\"* Lachish|strong=\"H3923\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H5921\"* heard|strong=\"H8085\"* news concerning|strong=\"H5921\"* Tirhakah|strong=\"H8640\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Ethiopia|strong=\"H3568\"*, “He|strong=\"H5921\"* has|strong=\"H4428\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* you|strong=\"H7971\"*.” When|strong=\"H8085\"* he|strong=\"H5921\"* heard|strong=\"H8085\"* it|strong=\"H5921\"*, he|strong=\"H5921\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H3318\"* Hezekiah|strong=\"H2396\"*, saying," + }, + { + "verseNum": 10, + "text": "“Thus|strong=\"H3541\"* you|strong=\"H5414\"* shall|strong=\"H4428\"* speak to|strong=\"H5414\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, saying, ‘Don’t let|strong=\"H5414\"* your|strong=\"H5414\"* God|strong=\"H5414\"* in|strong=\"H4428\"* whom you|strong=\"H5414\"* trust deceive|strong=\"H5377\"* you|strong=\"H5414\"*, saying, “Jerusalem|strong=\"H3389\"* won’t be|strong=\"H3808\"* given|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria.”" + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2009\"*, you|strong=\"H3605\"* have|strong=\"H3605\"* heard|strong=\"H8085\"* what|strong=\"H6213\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Assyria have|strong=\"H3605\"* done|strong=\"H6213\"* to|strong=\"H6213\"* all|strong=\"H3605\"* lands, by|strong=\"H3605\"* destroying|strong=\"H2763\"* them|strong=\"H6213\"* utterly|strong=\"H2763\"*. Shall|strong=\"H4428\"* you|strong=\"H3605\"* be|strong=\"H4428\"* delivered|strong=\"H5337\"*?" + }, + { + "verseNum": 12, + "text": "Have|strong=\"H1121\"* the|strong=\"H7843\"* gods of|strong=\"H1121\"* the|strong=\"H7843\"* nations|strong=\"H1471\"* delivered|strong=\"H5337\"* them|strong=\"H7843\"*, which|strong=\"H1471\"* my|strong=\"H5337\"* fathers have|strong=\"H1121\"* destroyed|strong=\"H7843\"*, Gozan|strong=\"H1470\"*, Haran|strong=\"H2771\"*, Rezeph|strong=\"H7530\"*, and|strong=\"H1121\"* the|strong=\"H7843\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Eden|strong=\"H5729\"* who|strong=\"H1121\"* were|strong=\"H1121\"* in|strong=\"H1121\"* Telassar|strong=\"H8515\"*?" + }, + { + "verseNum": 13, + "text": "Where is|strong=\"H4428\"* the|strong=\"H5892\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Hamath|strong=\"H2574\"*, and|strong=\"H4428\"* the|strong=\"H5892\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Arpad, and|strong=\"H4428\"* the|strong=\"H5892\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5892\"* city|strong=\"H5892\"* of|strong=\"H4428\"* Sepharvaim|strong=\"H5617\"*, of|strong=\"H4428\"* Hena|strong=\"H2012\"*, and|strong=\"H4428\"* Ivvah|strong=\"H5755\"*?’”" + }, + { + "verseNum": 14, + "text": "Hezekiah|strong=\"H2396\"* received|strong=\"H3947\"* the|strong=\"H6440\"* letter|strong=\"H5612\"* from|strong=\"H6440\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* the|strong=\"H6440\"* messengers|strong=\"H4397\"* and|strong=\"H3068\"* read|strong=\"H7121\"* it|strong=\"H7121\"*. Then|strong=\"H3947\"* Hezekiah|strong=\"H2396\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* spread|strong=\"H6566\"* it|strong=\"H7121\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "Hezekiah|strong=\"H2396\"* prayed|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying," + }, + { + "verseNum": 16, + "text": "“Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, who|strong=\"H3605\"* is|strong=\"H3068\"* enthroned|strong=\"H3427\"* among|strong=\"H3427\"* the|strong=\"H3605\"* cherubim|strong=\"H3742\"*, you|strong=\"H3605\"* are|strong=\"H3478\"* the|strong=\"H3605\"* God|strong=\"H3068\"*, even|strong=\"H6213\"* you|strong=\"H3605\"* alone|strong=\"H1931\"*, of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*. You|strong=\"H3605\"* have|strong=\"H3068\"* made|strong=\"H6213\"* heaven|strong=\"H8064\"* and|strong=\"H3478\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 17, + "text": "Turn|strong=\"H5186\"* your|strong=\"H3068\"* ear|strong=\"H8085\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* hear|strong=\"H8085\"*. Open|strong=\"H6491\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* behold|strong=\"H7200\"*. Hear|strong=\"H8085\"* all|strong=\"H3605\"* of|strong=\"H3068\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* Sennacherib|strong=\"H5576\"*, who|strong=\"H3605\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* defy|strong=\"H2778\"* the|strong=\"H3605\"* living|strong=\"H2416\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "Truly, Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Assyria have|strong=\"H3068\"* destroyed|strong=\"H2717\"* all|strong=\"H3605\"* the|strong=\"H3605\"* countries and|strong=\"H3068\"* their|strong=\"H3605\"* land," + }, + { + "verseNum": 19, + "text": "and|strong=\"H3027\"* have|strong=\"H3027\"* cast|strong=\"H5414\"* their|strong=\"H5414\"* gods into|strong=\"H3027\"* the|strong=\"H3588\"* fire; for|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H1992\"* no|strong=\"H3808\"* gods, but|strong=\"H3588\"* the|strong=\"H3588\"* work|strong=\"H4639\"* of|strong=\"H3027\"* men|strong=\"H1992\"*’s hands|strong=\"H3027\"*, wood|strong=\"H6086\"* and|strong=\"H3027\"* stone; therefore|strong=\"H3588\"* they|strong=\"H1992\"* have|strong=\"H3027\"* destroyed them|strong=\"H5414\"*." + }, + { + "verseNum": 20, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, save|strong=\"H3467\"* us|strong=\"H3045\"* from|strong=\"H3027\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3027\"* Yahweh|strong=\"H3068\"*, even|strong=\"H3588\"* you|strong=\"H3588\"* only|strong=\"H3588\"*.”" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H7971\"* Isaiah|strong=\"H3470\"* the|strong=\"H3541\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz sent|strong=\"H7971\"* to|strong=\"H3478\"* Hezekiah|strong=\"H2396\"*, saying, “Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, ‘Because|strong=\"H3068\"* you|strong=\"H7971\"* have|strong=\"H3068\"* prayed|strong=\"H6419\"* to|strong=\"H3478\"* me|strong=\"H7971\"* against|strong=\"H3068\"* Sennacherib|strong=\"H5576\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Assyria," + }, + { + "verseNum": 22, + "text": "this|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H5921\"* word|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* concerning|strong=\"H5921\"* him|strong=\"H5921\"*: The|strong=\"H5921\"* virgin|strong=\"H1330\"* daughter|strong=\"H1323\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"* has|strong=\"H3068\"* despised you|strong=\"H5921\"* and|strong=\"H3068\"* ridiculed you|strong=\"H5921\"*. The|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* has|strong=\"H3068\"* shaken|strong=\"H5128\"* her|strong=\"H5921\"* head|strong=\"H7218\"* at|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 23, + "text": "Whom|strong=\"H4310\"* have|strong=\"H5869\"* you|strong=\"H5921\"* defied|strong=\"H2778\"* and|strong=\"H3478\"* blasphemed|strong=\"H1442\"*? Against|strong=\"H5921\"* whom|strong=\"H4310\"* have|strong=\"H5869\"* you|strong=\"H5921\"* exalted|strong=\"H7311\"* your|strong=\"H5921\"* voice|strong=\"H6963\"* and|strong=\"H3478\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"* on|strong=\"H5921\"* high|strong=\"H4791\"*? Against|strong=\"H5921\"* the|strong=\"H5921\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H6963\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 24, + "text": "By|strong=\"H3027\"* your|strong=\"H3772\"* servants|strong=\"H5650\"*, you|strong=\"H3027\"* have|strong=\"H5650\"* defied|strong=\"H2778\"* the|strong=\"H5927\"* Lord, and|strong=\"H3027\"* have|strong=\"H5650\"* said, “With|strong=\"H3027\"* the|strong=\"H5927\"* multitude|strong=\"H7230\"* of|strong=\"H3027\"* my|strong=\"H5927\"* chariots|strong=\"H7393\"* I|strong=\"H5650\"* have|strong=\"H5650\"* come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H5927\"* height|strong=\"H6967\"* of|strong=\"H3027\"* the|strong=\"H5927\"* mountains|strong=\"H2022\"*, to|strong=\"H5927\"* the|strong=\"H5927\"* innermost|strong=\"H3411\"* parts|strong=\"H3411\"* of|strong=\"H3027\"* Lebanon|strong=\"H3844\"*. I|strong=\"H5650\"* will|strong=\"H5650\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* its|strong=\"H5927\"* tall|strong=\"H6967\"* cedars and|strong=\"H3027\"* its|strong=\"H5927\"* choice|strong=\"H4005\"* cypress|strong=\"H1265\"* trees|strong=\"H1265\"*. I|strong=\"H5650\"* will|strong=\"H5650\"* enter|strong=\"H5927\"* into|strong=\"H5927\"* its|strong=\"H5927\"* farthest|strong=\"H7093\"* height|strong=\"H6967\"*, the|strong=\"H5927\"* forest|strong=\"H3293\"* of|strong=\"H3027\"* its|strong=\"H5927\"* fruitful|strong=\"H3759\"* field|strong=\"H3759\"*." + }, + { + "verseNum": 25, + "text": "I|strong=\"H6471\"* have|strong=\"H3605\"* dug|strong=\"H6979\"* and|strong=\"H8354\"* drunk|strong=\"H8354\"* water|strong=\"H4325\"*, and|strong=\"H8354\"* with|strong=\"H4325\"* the|strong=\"H3605\"* sole|strong=\"H3709\"* of|strong=\"H4325\"* my|strong=\"H3605\"* feet|strong=\"H6471\"* I|strong=\"H6471\"* will|strong=\"H4325\"* dry|strong=\"H2717\"* up|strong=\"H2717\"* all|strong=\"H3605\"* the|strong=\"H3605\"* rivers|strong=\"H2975\"* of|strong=\"H4325\"* Egypt|strong=\"H4693\"*.”" + }, + { + "verseNum": 26, + "text": "“‘Have|strong=\"H1961\"* you|strong=\"H3117\"* not|strong=\"H3808\"* heard|strong=\"H8085\"* how|strong=\"H8085\"* I|strong=\"H3117\"* have|strong=\"H1961\"* done|strong=\"H6213\"* it|strong=\"H6213\"* long|strong=\"H3117\"* ago|strong=\"H7350\"*, and|strong=\"H3117\"* formed|strong=\"H3335\"* it|strong=\"H6213\"* in|strong=\"H6213\"* ancient|strong=\"H6924\"* times|strong=\"H3117\"*? Now|strong=\"H6258\"* I|strong=\"H3117\"* have|strong=\"H1961\"* brought|strong=\"H6213\"* it|strong=\"H6213\"* to|strong=\"H1961\"* pass|strong=\"H1961\"*, that|strong=\"H3117\"* it|strong=\"H6213\"* should|strong=\"H3117\"* be|strong=\"H1961\"* yours to|strong=\"H1961\"* destroy|strong=\"H6213\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"*, turning them|strong=\"H6213\"* into|strong=\"H6213\"* ruinous|strong=\"H5327\"* heaps|strong=\"H1530\"*." + }, + { + "verseNum": 27, + "text": "Therefore|strong=\"H1961\"* their|strong=\"H6440\"* inhabitants|strong=\"H3427\"* had|strong=\"H1961\"* little power|strong=\"H3027\"*. They|strong=\"H6440\"* were|strong=\"H1961\"* dismayed|strong=\"H2865\"* and|strong=\"H3027\"* confounded. They|strong=\"H6440\"* were|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H6440\"* grass|strong=\"H2682\"* of|strong=\"H3027\"* the|strong=\"H6440\"* field|strong=\"H7704\"*, and|strong=\"H3027\"* like|strong=\"H1961\"* the|strong=\"H6440\"* green|strong=\"H3419\"* herb|strong=\"H6212\"*, like|strong=\"H1961\"* the|strong=\"H6440\"* grass|strong=\"H2682\"* on|strong=\"H3427\"* the|strong=\"H6440\"* housetops|strong=\"H1406\"*, and|strong=\"H3027\"* like|strong=\"H1961\"* a|strong=\"H3068\"* field|strong=\"H7704\"* before|strong=\"H6440\"* its|strong=\"H1961\"* crop has|strong=\"H1961\"* grown|strong=\"H7054\"*." + }, + { + "verseNum": 28, + "text": "But I|strong=\"H3045\"* know|strong=\"H3045\"* your|strong=\"H3045\"* sitting|strong=\"H3427\"* down|strong=\"H3427\"*, your|strong=\"H3045\"* going|strong=\"H3318\"* out|strong=\"H3318\"*, your|strong=\"H3045\"* coming|strong=\"H3318\"* in|strong=\"H3427\"*, and|strong=\"H3318\"* your|strong=\"H3045\"* raging|strong=\"H7264\"* against|strong=\"H3427\"* me|strong=\"H3318\"*." + }, + { + "verseNum": 29, + "text": "Because|strong=\"H3282\"* of|strong=\"H1870\"* your|strong=\"H7760\"* raging|strong=\"H7264\"* against|strong=\"H5927\"* me|strong=\"H7725\"*, and|strong=\"H7725\"* because|strong=\"H3282\"* your|strong=\"H7760\"* arrogance|strong=\"H7600\"* has|strong=\"H7600\"* come|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H7725\"* my|strong=\"H7760\"* ears, therefore I|strong=\"H7760\"* will|strong=\"H7725\"* put|strong=\"H7760\"* my|strong=\"H7760\"* hook|strong=\"H2397\"* in|strong=\"H7725\"* your|strong=\"H7760\"* nose and|strong=\"H7725\"* my|strong=\"H7760\"* bridle|strong=\"H4964\"* in|strong=\"H7725\"* your|strong=\"H7760\"* lips|strong=\"H8193\"*, and|strong=\"H7725\"* I|strong=\"H7760\"* will|strong=\"H7725\"* turn|strong=\"H7725\"* you|strong=\"H7725\"* back|strong=\"H7725\"* by|strong=\"H1870\"* the|strong=\"H7725\"* way|strong=\"H1870\"* by|strong=\"H1870\"* which you|strong=\"H7725\"* came|strong=\"H5927\"*." + }, + { + "verseNum": 30, + "text": "“‘This|strong=\"H2088\"* shall|strong=\"H2088\"* be|strong=\"H8141\"* the|strong=\"H8141\"* sign to|strong=\"H8141\"* you|strong=\"H8141\"*: You|strong=\"H8141\"* will|strong=\"H3754\"* eat this|strong=\"H2088\"* year|strong=\"H8141\"* that|strong=\"H8141\"* which|strong=\"H2088\"* grows|strong=\"H5599\"* of|strong=\"H8141\"* itself|strong=\"H2088\"*, and|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H8141\"* second|strong=\"H8145\"* year|strong=\"H8141\"* that|strong=\"H8141\"* which|strong=\"H2088\"* springs from|strong=\"H2232\"* it|strong=\"H2088\"*; and|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H8141\"* third|strong=\"H7992\"* year|strong=\"H8141\"* sow|strong=\"H2232\"* and|strong=\"H8141\"* reap|strong=\"H7114\"* and|strong=\"H8141\"* plant|strong=\"H5193\"* vineyards|strong=\"H3754\"*, and|strong=\"H8141\"* eat their|strong=\"H7114\"* fruit|strong=\"H6529\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H6213\"* remnant|strong=\"H7604\"* that|strong=\"H3063\"* is|strong=\"H1004\"* escaped|strong=\"H6413\"* of|strong=\"H1004\"* the|strong=\"H6213\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* will|strong=\"H1004\"* again|strong=\"H3254\"* take|strong=\"H6213\"* root|strong=\"H8328\"* downward|strong=\"H4295\"*, and|strong=\"H3063\"* bear|strong=\"H6213\"* fruit|strong=\"H6529\"* upward|strong=\"H4605\"*." + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* a|strong=\"H3068\"* remnant|strong=\"H7611\"* will|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H3068\"* survivors|strong=\"H6413\"* will|strong=\"H3068\"* escape|strong=\"H6413\"* from|strong=\"H3318\"* Mount|strong=\"H2022\"* Zion|strong=\"H6726\"*. The|strong=\"H3588\"* zeal|strong=\"H7068\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* will|strong=\"H3068\"* perform|strong=\"H6213\"* this|strong=\"H2063\"*.’" + }, + { + "verseNum": 33, + "text": "“Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, ‘He|strong=\"H8033\"* will|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H6923\"* to|strong=\"H3068\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, nor|strong=\"H3808\"* shoot|strong=\"H3384\"* an|strong=\"H8033\"* arrow|strong=\"H2671\"* there|strong=\"H8033\"*, neither|strong=\"H3808\"* will|strong=\"H3068\"* he|strong=\"H8033\"* come|strong=\"H6923\"* before|strong=\"H5921\"* it|strong=\"H5921\"* with|strong=\"H3068\"* shield|strong=\"H4043\"*, nor|strong=\"H3808\"* cast|strong=\"H8210\"* up|strong=\"H5921\"* a|strong=\"H3068\"* mound against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 34, + "text": "He|strong=\"H3068\"* will|strong=\"H3068\"* return|strong=\"H7725\"* the|strong=\"H5002\"* way|strong=\"H1870\"* that|strong=\"H3068\"* he|strong=\"H3068\"* came|strong=\"H3068\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* won’t come|strong=\"H7725\"* to|strong=\"H7725\"* this|strong=\"H2063\"* city|strong=\"H5892\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 35, + "text": "‘For|strong=\"H5921\"* I|strong=\"H5921\"* will|strong=\"H5650\"* defend|strong=\"H1598\"* this|strong=\"H2063\"* city|strong=\"H5892\"* to|strong=\"H5921\"* save|strong=\"H3467\"* it|strong=\"H5921\"*, for|strong=\"H5921\"* my|strong=\"H1732\"* own sake|strong=\"H4616\"*, and|strong=\"H5892\"* for|strong=\"H5921\"* my|strong=\"H1732\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*’s sake|strong=\"H4616\"*.’”" + }, + { + "verseNum": 36, + "text": "Then|strong=\"H3318\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3967\"* struck|strong=\"H5221\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* and|strong=\"H3967\"* eighty-five|strong=\"H8084\"* thousand men|strong=\"H3605\"* in|strong=\"H3068\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Assyrians. When|strong=\"H3318\"* men|strong=\"H3605\"* arose|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3068\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*, behold|strong=\"H2009\"*, these|strong=\"H3605\"* were|strong=\"H2009\"* all|strong=\"H3605\"* dead|strong=\"H4191\"* bodies|strong=\"H6297\"*." + }, + { + "verseNum": 37, + "text": "So|strong=\"H7725\"* Sennacherib|strong=\"H5576\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria departed|strong=\"H3212\"*, went|strong=\"H3212\"* away|strong=\"H7725\"*, returned|strong=\"H7725\"* to|strong=\"H7725\"* Nineveh|strong=\"H5210\"*, and|strong=\"H7725\"* stayed|strong=\"H3427\"* there|strong=\"H3427\"*." + }, + { + "verseNum": 38, + "text": "As|strong=\"H1961\"* he|strong=\"H1931\"* was|strong=\"H1961\"* worshiping|strong=\"H7812\"* in|strong=\"H1004\"* the|strong=\"H5221\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Nisroch|strong=\"H5268\"* his|strong=\"H5221\"* god, Adrammelech and|strong=\"H1121\"* Sharezer|strong=\"H8272\"* his|strong=\"H5221\"* sons|strong=\"H1121\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H1004\"* the|strong=\"H5221\"* sword|strong=\"H2719\"*; and|strong=\"H1121\"* they|strong=\"H1992\"* escaped|strong=\"H4422\"* into|strong=\"H2719\"* the|strong=\"H5221\"* land of|strong=\"H1121\"* Ararat. Esar Haddon his|strong=\"H5221\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H1004\"* his|strong=\"H5221\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"* Hezekiah|strong=\"H2396\"* was|strong=\"H3068\"* sick|strong=\"H2470\"* and|strong=\"H1121\"* near|strong=\"H3808\"* death|strong=\"H4191\"*. Isaiah|strong=\"H3470\"* the|strong=\"H3588\"* prophet|strong=\"H5030\"*, the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz, came|strong=\"H3068\"* to|strong=\"H4191\"* him|strong=\"H6680\"*, and|strong=\"H1121\"* said to|strong=\"H4191\"* him|strong=\"H6680\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Set|strong=\"H6680\"* your|strong=\"H3068\"* house|strong=\"H1004\"* in|strong=\"H3068\"* order|strong=\"H6680\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* die|strong=\"H4191\"*, and|strong=\"H1121\"* not|strong=\"H3808\"* live|strong=\"H2421\"*.’”" + }, + { + "verseNum": 2, + "text": "Then|strong=\"H3068\"* Hezekiah|strong=\"H2396\"* turned|strong=\"H5437\"* his|strong=\"H3068\"* face|strong=\"H6440\"* to|strong=\"H3068\"* the|strong=\"H6440\"* wall|strong=\"H7023\"* and|strong=\"H3068\"* prayed|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H1980\"* said, “Remember|strong=\"H2142\"* now|strong=\"H4994\"*, Yahweh|strong=\"H3068\"*, I|strong=\"H1980\"* beg|strong=\"H4994\"* you|strong=\"H6440\"*, how|strong=\"H4994\"* I|strong=\"H1980\"* have|strong=\"H3068\"* walked|strong=\"H1980\"* before|strong=\"H6440\"* you|strong=\"H6440\"* in|strong=\"H1980\"* truth and|strong=\"H1980\"* with|strong=\"H1980\"* a|strong=\"H3068\"* perfect|strong=\"H8003\"* heart|strong=\"H3820\"*, and|strong=\"H1980\"* have|strong=\"H3068\"* done|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* is|strong=\"H3068\"* good|strong=\"H2896\"* in|strong=\"H1980\"* your|strong=\"H3068\"* sight|strong=\"H5869\"*.” Then|strong=\"H1980\"* Hezekiah|strong=\"H2396\"* wept|strong=\"H1058\"* bitterly|strong=\"H1419\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Isaiah|strong=\"H3470\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 5, + "text": "“Go|strong=\"H1980\"*, and|strong=\"H1980\"* tell|strong=\"H8085\"* Hezekiah|strong=\"H2396\"*, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* David|strong=\"H1732\"* your|strong=\"H3068\"* father, says|strong=\"H3541\"*, “I|strong=\"H3117\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* your|strong=\"H3068\"* prayer|strong=\"H8605\"*. I|strong=\"H3117\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* your|strong=\"H3068\"* tears|strong=\"H1832\"*. Behold|strong=\"H2005\"*, I|strong=\"H3117\"* will|strong=\"H3068\"* add|strong=\"H3254\"* fifteen|strong=\"H2568\"* years|strong=\"H8141\"* to|strong=\"H1980\"* your|strong=\"H3068\"* life|strong=\"H3117\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H5921\"* will|strong=\"H4428\"* deliver|strong=\"H5337\"* you|strong=\"H5921\"* and|strong=\"H4428\"* this|strong=\"H2063\"* city|strong=\"H5892\"* out|strong=\"H5921\"* of|strong=\"H4428\"* the|strong=\"H5921\"* hand|strong=\"H3709\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, and|strong=\"H4428\"* I|strong=\"H5921\"* will|strong=\"H4428\"* defend|strong=\"H1598\"* this|strong=\"H2063\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 7, + "text": "This|strong=\"H2088\"* shall|strong=\"H3068\"* be|strong=\"H1697\"* the|strong=\"H6213\"* sign to|strong=\"H1696\"* you|strong=\"H6213\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* that|strong=\"H3068\"* he|strong=\"H6213\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 8, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H8121\"* cause|strong=\"H7725\"* the|strong=\"H7725\"* shadow|strong=\"H6738\"* on|strong=\"H3381\"* the|strong=\"H7725\"* sundial, which has|strong=\"H8121\"* gone|strong=\"H3381\"* down|strong=\"H3381\"* on|strong=\"H3381\"* the|strong=\"H7725\"* sundial of|strong=\"H6738\"* Ahaz with|strong=\"H3381\"* the|strong=\"H7725\"* sun|strong=\"H8121\"*, to|strong=\"H7725\"* return|strong=\"H7725\"* backward ten|strong=\"H6235\"* steps|strong=\"H4609\"*.”’” So|strong=\"H7725\"* the|strong=\"H7725\"* sun|strong=\"H8121\"* returned|strong=\"H7725\"* ten|strong=\"H6235\"* steps|strong=\"H4609\"* on|strong=\"H3381\"* the|strong=\"H7725\"* sundial on|strong=\"H3381\"* which it|strong=\"H7725\"* had|strong=\"H8121\"* gone|strong=\"H3381\"* down|strong=\"H3381\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H2421\"* writing|strong=\"H4385\"* of|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, when|strong=\"H2421\"* he|strong=\"H2483\"* had|strong=\"H4428\"* been|strong=\"H2470\"* sick|strong=\"H2470\"*, and|strong=\"H3063\"* had|strong=\"H4428\"* recovered|strong=\"H2421\"* of|strong=\"H4428\"* his|strong=\"H2396\"* sickness|strong=\"H2483\"*:" + }, + { + "verseNum": 10, + "text": "I|strong=\"H3117\"* said, “In|strong=\"H8141\"* the|strong=\"H3117\"* middle|strong=\"H1824\"* of|strong=\"H3117\"* my|strong=\"H3117\"* life|strong=\"H3117\"* I|strong=\"H3117\"* go|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H3117\"* gates|strong=\"H8179\"* of|strong=\"H3117\"* Sheol|strong=\"H7585\"*.+ 38:10 Sheol is the place of the dead.*" + }, + { + "verseNum": 11, + "text": "I|strong=\"H7200\"* said, “I|strong=\"H7200\"* won’t see|strong=\"H7200\"* Yah|strong=\"H3068\"*," + }, + { + "verseNum": 12, + "text": "My|strong=\"H4480\"* dwelling|strong=\"H1755\"* is|strong=\"H3117\"* removed|strong=\"H5265\"*," + }, + { + "verseNum": 13, + "text": "I|strong=\"H3117\"* waited patiently until|strong=\"H5704\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3651\"* chattered like|strong=\"H3651\"* a|strong=\"H3068\"* swallow|strong=\"H5693\"* or|strong=\"H5483\"* a|strong=\"H3068\"* crane|strong=\"H5483\"*." + }, + { + "verseNum": 15, + "text": "What|strong=\"H4100\"* will|strong=\"H5315\"* I|strong=\"H5921\"* say|strong=\"H1696\"*?" + }, + { + "verseNum": 16, + "text": "Lord, men|strong=\"H3605\"* live|strong=\"H2421\"* by|strong=\"H5921\"* these|strong=\"H3605\"* things|strong=\"H3605\"*;" + }, + { + "verseNum": 17, + "text": "Behold|strong=\"H2009\"*, for|strong=\"H3588\"* peace|strong=\"H7965\"* I|strong=\"H3588\"* had|strong=\"H3588\"* great|strong=\"H4751\"* anguish," + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* Sheol|strong=\"H7585\"*+ 38:18 Sheol is the place of the dead.* can|strong=\"H4194\"*’t praise|strong=\"H1984\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H3117\"* living|strong=\"H2416\"*, the|strong=\"H3117\"* living|strong=\"H2416\"*, he|strong=\"H1931\"* shall|strong=\"H1121\"* praise|strong=\"H3034\"* you|strong=\"H3117\"*, as|strong=\"H3117\"* I|strong=\"H3117\"* do today|strong=\"H3117\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* save|strong=\"H3467\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "Now|strong=\"H5921\"* Isaiah|strong=\"H3470\"* had|strong=\"H3470\"* said, “Let them|strong=\"H5921\"* take|strong=\"H5375\"* a|strong=\"H3068\"* cake|strong=\"H1690\"* of|strong=\"H5921\"* figs|strong=\"H8384\"*, and|strong=\"H2421\"* lay it|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* poultice on|strong=\"H5921\"* the|strong=\"H5921\"* boil|strong=\"H7822\"*, and|strong=\"H2421\"* he|strong=\"H5921\"* shall|strong=\"H2421\"* recover|strong=\"H2421\"*.”" + }, + { + "verseNum": 22, + "text": "Hezekiah|strong=\"H2396\"* also|strong=\"H3068\"* had|strong=\"H3068\"* said, “What|strong=\"H4100\"* is|strong=\"H3068\"* the|strong=\"H3588\"* sign that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*?”" + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"H4428\"* that|strong=\"H3588\"* time|strong=\"H6256\"*, Merodach-baladan|strong=\"H4757\"* the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Baladan|strong=\"H1081\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon, sent|strong=\"H7971\"* letters|strong=\"H5612\"* and|strong=\"H1121\"* a|strong=\"H3068\"* present|strong=\"H4503\"* to|strong=\"H7971\"* Hezekiah|strong=\"H2396\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* he|strong=\"H1931\"* had|strong=\"H4428\"* been|strong=\"H2470\"* sick|strong=\"H2470\"*, and|strong=\"H1121\"* had|strong=\"H4428\"* recovered|strong=\"H2388\"*." + }, + { + "verseNum": 2, + "text": "Hezekiah|strong=\"H2396\"* was|strong=\"H1961\"* pleased|strong=\"H2896\"* with|strong=\"H1004\"* them|strong=\"H5921\"*, and|strong=\"H3701\"* showed|strong=\"H7200\"* them|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* his|strong=\"H3605\"* precious|strong=\"H2896\"* things|strong=\"H1697\"*, the|strong=\"H3605\"* silver|strong=\"H3701\"*, the|strong=\"H3605\"* gold|strong=\"H2091\"*, the|strong=\"H3605\"* spices|strong=\"H1314\"*, and|strong=\"H3701\"* the|strong=\"H3605\"* precious|strong=\"H2896\"* oil|strong=\"H8081\"*, and|strong=\"H3701\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* his|strong=\"H3605\"* armor|strong=\"H3627\"*, and|strong=\"H3701\"* all|strong=\"H3605\"* that|strong=\"H7200\"* was|strong=\"H1961\"* found|strong=\"H4672\"* in|strong=\"H5921\"* his|strong=\"H3605\"* treasures. There|strong=\"H1961\"* was|strong=\"H1961\"* nothing|strong=\"H3808\"* in|strong=\"H5921\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, nor|strong=\"H3808\"* in|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* dominion|strong=\"H4475\"*, that|strong=\"H7200\"* Hezekiah|strong=\"H2396\"* didn’t show|strong=\"H7200\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H4428\"* Isaiah|strong=\"H3470\"* the|strong=\"H3470\"* prophet|strong=\"H5030\"* came|strong=\"H4428\"* to|strong=\"H4428\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"*, and|strong=\"H4428\"* asked|strong=\"H4100\"* him|strong=\"H4428\"*, “What|strong=\"H4100\"* did|strong=\"H4100\"* these|strong=\"H4428\"* men say? From|strong=\"H7350\"* where|strong=\"H4100\"* did|strong=\"H4100\"* they|strong=\"H4100\"* come|strong=\"H7350\"* to|strong=\"H4428\"* you|strong=\"H4100\"*?”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H1961\"* he|strong=\"H3605\"* asked|strong=\"H4100\"*, “What|strong=\"H4100\"* have|strong=\"H1961\"* they|strong=\"H3808\"* seen|strong=\"H7200\"* in|strong=\"H1004\"* your|strong=\"H3605\"* house|strong=\"H1004\"*?”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H8085\"* Isaiah|strong=\"H3470\"* said|strong=\"H1697\"* to|strong=\"H3068\"* Hezekiah|strong=\"H2396\"*, “Hear|strong=\"H8085\"* the|strong=\"H8085\"* word|strong=\"H1697\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*:" + }, + { + "verseNum": 6, + "text": "‘Behold|strong=\"H2009\"*, the|strong=\"H3605\"* days|strong=\"H3117\"* are|strong=\"H3117\"* coming|strong=\"H2009\"* when|strong=\"H3117\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* that|strong=\"H3605\"* which|strong=\"H3068\"* your|strong=\"H3068\"* fathers have|strong=\"H3068\"* stored up|strong=\"H5375\"* until|strong=\"H5704\"* today|strong=\"H3117\"*, will|strong=\"H3068\"* be|strong=\"H3808\"* carried|strong=\"H5375\"* to|strong=\"H5704\"* Babylon. Nothing|strong=\"H3808\"* will|strong=\"H3068\"* be|strong=\"H3808\"* left|strong=\"H3498\"*,’ says|strong=\"H1697\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "‘They|strong=\"H3947\"* will|strong=\"H1961\"* take|strong=\"H3947\"* away|strong=\"H3947\"* your|strong=\"H3947\"* sons|strong=\"H1121\"* who|strong=\"H1121\"* will|strong=\"H1961\"* issue|strong=\"H3318\"* from|strong=\"H4480\"* you|strong=\"H3947\"*, whom you|strong=\"H3947\"* shall|strong=\"H1121\"* father|strong=\"H3205\"*, and|strong=\"H1121\"* they|strong=\"H3947\"* will|strong=\"H1961\"* be|strong=\"H1961\"* eunuchs|strong=\"H5631\"* in|strong=\"H4428\"* the|strong=\"H3947\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon’s palace|strong=\"H1964\"*.’”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H1961\"* Hezekiah|strong=\"H2396\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Isaiah|strong=\"H3470\"*, “Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H3068\"* you|strong=\"H3588\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"* is|strong=\"H3068\"* good|strong=\"H2896\"*.” He|strong=\"H3588\"* said|strong=\"H1696\"* moreover|strong=\"H1961\"*, “For|strong=\"H3588\"* there|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* peace|strong=\"H7965\"* and|strong=\"H3068\"* truth in|strong=\"H3068\"* my|strong=\"H3068\"* days|strong=\"H3117\"*.”" + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "“Comfort|strong=\"H5162\"*, comfort|strong=\"H5162\"* my|strong=\"H5971\"* people|strong=\"H5971\"*,” says your|strong=\"H5971\"* God." + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* comfortably|strong=\"H3820\"* to|strong=\"H1696\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3068\"* call|strong=\"H7121\"* out|strong=\"H3947\"* to|strong=\"H1696\"* her|strong=\"H3605\"* that|strong=\"H3588\"* her|strong=\"H3605\"* warfare|strong=\"H6635\"* is|strong=\"H3068\"* accomplished|strong=\"H4390\"*, that|strong=\"H3588\"* her|strong=\"H3605\"* iniquity|strong=\"H5771\"* is|strong=\"H3068\"* pardoned|strong=\"H7521\"*, that|strong=\"H3588\"* she|strong=\"H3588\"* has|strong=\"H3068\"* received|strong=\"H3947\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* double|strong=\"H3718\"* for|strong=\"H3588\"* all|strong=\"H3605\"* her|strong=\"H3605\"* sins|strong=\"H2403\"*.”" + }, + { + "verseNum": 3, + "text": "The|strong=\"H3068\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* one|strong=\"H3068\"* who|strong=\"H3068\"* calls|strong=\"H7121\"* out|strong=\"H6437\"*," + }, + { + "verseNum": 4, + "text": "Every|strong=\"H3605\"* valley|strong=\"H1516\"* shall|strong=\"H2022\"* be|strong=\"H1961\"* exalted|strong=\"H5375\"*," + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* revealed|strong=\"H1540\"*," + }, + { + "verseNum": 6, + "text": "The|strong=\"H3605\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* one|strong=\"H3605\"* saying|strong=\"H6963\"*, “Cry|strong=\"H7121\"* out|strong=\"H4100\"*!”" + }, + { + "verseNum": 7, + "text": "The|strong=\"H3588\"* grass|strong=\"H2682\"* withers|strong=\"H3001\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H6965\"* grass|strong=\"H2682\"* withers|strong=\"H3001\"*," + }, + { + "verseNum": 9, + "text": "You|strong=\"H5921\"* who|strong=\"H3063\"* tell good|strong=\"H1319\"* news|strong=\"H1319\"* to|strong=\"H5927\"* Zion|strong=\"H6726\"*, go|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H5921\"* a|strong=\"H3068\"* high|strong=\"H1364\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 10, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H6440\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* will|strong=\"H3069\"* come as|strong=\"H6440\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* one," + }, + { + "verseNum": 11, + "text": "He|strong=\"H5763\"* will|strong=\"H5739\"* feed|strong=\"H7462\"* his|strong=\"H5375\"* flock|strong=\"H5739\"* like|strong=\"H2220\"* a|strong=\"H3068\"* shepherd|strong=\"H7462\"*." + }, + { + "verseNum": 12, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* measured|strong=\"H4058\"* the|strong=\"H4058\"* waters|strong=\"H4325\"* in|strong=\"H8064\"* the|strong=\"H4058\"* hollow|strong=\"H8168\"* of|strong=\"H2022\"* his|strong=\"H3557\"* hand|strong=\"H8168\"*," + }, + { + "verseNum": 13, + "text": "Who|strong=\"H4310\"* has|strong=\"H3068\"* directed|strong=\"H8505\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"*," + }, + { + "verseNum": 14, + "text": "Who|strong=\"H4310\"* did he|strong=\"H8394\"* take|strong=\"H3045\"* counsel|strong=\"H3289\"* with|strong=\"H3045\"*," + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H2005\"*, the|strong=\"H2803\"* nations|strong=\"H1471\"* are|strong=\"H1471\"* like|strong=\"H2803\"* a|strong=\"H3068\"* drop|strong=\"H4752\"* in|strong=\"H1471\"* a|strong=\"H3068\"* bucket|strong=\"H1805\"*," + }, + { + "verseNum": 16, + "text": "Lebanon|strong=\"H3844\"* is|strong=\"H3844\"* not sufficient|strong=\"H1767\"* to|strong=\"H1767\"* burn|strong=\"H1197\"*," + }, + { + "verseNum": 17, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* are|strong=\"H1471\"* like|strong=\"H2803\"* nothing|strong=\"H8414\"* before|strong=\"H5048\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 18, + "text": "To|strong=\"H1819\"* whom|strong=\"H4310\"* then|strong=\"H4100\"* will|strong=\"H4310\"* you|strong=\"H4100\"* liken|strong=\"H1819\"* God|strong=\"H4310\"*?" + }, + { + "verseNum": 19, + "text": "A|strong=\"H3068\"* workman|strong=\"H2796\"* has|strong=\"H2091\"* cast|strong=\"H5258\"* an|strong=\"H2091\"* image|strong=\"H6459\"*," + }, + { + "verseNum": 20, + "text": "He|strong=\"H3808\"* who|strong=\"H2450\"* is|strong=\"H2450\"* too|strong=\"H3808\"* impoverished|strong=\"H5533\"* for|strong=\"H6086\"* such|strong=\"H3808\"* an|strong=\"H1245\"* offering|strong=\"H8641\"* chooses a|strong=\"H3068\"* tree|strong=\"H6086\"* that|strong=\"H6086\"* will|strong=\"H3808\"* not|strong=\"H3808\"* rot|strong=\"H7537\"*." + }, + { + "verseNum": 21, + "text": "Haven’t you|strong=\"H3045\"* known|strong=\"H3045\"*?" + }, + { + "verseNum": 22, + "text": "It|strong=\"H5921\"* is|strong=\"H3427\"* he|strong=\"H5921\"* who|strong=\"H3427\"* sits|strong=\"H3427\"* above|strong=\"H5921\"* the|strong=\"H5921\"* circle|strong=\"H2329\"* of|strong=\"H3427\"* the|strong=\"H5921\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 23, + "text": "who|strong=\"H6213\"* brings|strong=\"H5414\"* princes|strong=\"H7336\"* to|strong=\"H6213\"* nothing|strong=\"H8414\"*," + }, + { + "verseNum": 24, + "text": "They|strong=\"H1077\"* are|strong=\"H1571\"* planted|strong=\"H5193\"* scarcely|strong=\"H1077\"*." + }, + { + "verseNum": 25, + "text": "“To|strong=\"H1819\"* whom|strong=\"H4310\"* then will|strong=\"H4310\"* you|strong=\"H4310\"* liken|strong=\"H1819\"* me|strong=\"H7737\"*?" + }, + { + "verseNum": 26, + "text": "Lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H3605\"* eyes|strong=\"H5869\"* on|strong=\"H7200\"* high|strong=\"H4791\"*," + }, + { + "verseNum": 27, + "text": "Why|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H4100\"* say|strong=\"H1696\"*, Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 28, + "text": "Haven’t you|strong=\"H3045\"* known|strong=\"H3045\"*?" + }, + { + "verseNum": 29, + "text": "He|strong=\"H5414\"* gives|strong=\"H5414\"* power|strong=\"H3581\"* to|strong=\"H5414\"* the|strong=\"H5414\"* weak." + }, + { + "verseNum": 30, + "text": "Even the|strong=\"H5288\"* youths|strong=\"H5288\"* faint|strong=\"H3286\"* and|strong=\"H5288\"* get|strong=\"H3021\"* weary|strong=\"H3021\"*," + }, + { + "verseNum": 31, + "text": "but|strong=\"H3808\"* those who|strong=\"H3068\"* wait|strong=\"H6960\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* renew|strong=\"H2498\"* their|strong=\"H3068\"* strength|strong=\"H3581\"*." + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 1, + "text": "“Keep|strong=\"H2790\"* silent|strong=\"H2790\"* before me|strong=\"H1696\"*, islands," + }, + { + "verseNum": 2, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* raised|strong=\"H5782\"* up|strong=\"H5782\"* one|strong=\"H4310\"* from|strong=\"H6440\"* the|strong=\"H6440\"* east|strong=\"H4217\"*?" + }, + { + "verseNum": 3, + "text": "He|strong=\"H3808\"* pursues|strong=\"H7291\"* them|strong=\"H5674\"*" + }, + { + "verseNum": 4, + "text": "Who|strong=\"H4310\"* has|strong=\"H3068\"* worked|strong=\"H6213\"* and|strong=\"H3068\"* done|strong=\"H6213\"* it|strong=\"H1931\"*," + }, + { + "verseNum": 5, + "text": "The|strong=\"H7200\"* islands have|strong=\"H7200\"* seen|strong=\"H7200\"*, and|strong=\"H7200\"* fear|strong=\"H3372\"*." + }, + { + "verseNum": 6, + "text": "Everyone helps|strong=\"H5826\"* his|strong=\"H2388\"* neighbor|strong=\"H7453\"*." + }, + { + "verseNum": 7, + "text": "So|strong=\"H3808\"* the|strong=\"H2388\"* carpenter|strong=\"H2796\"* encourages|strong=\"H2388\"* the|strong=\"H2388\"* goldsmith|strong=\"H6884\"*." + }, + { + "verseNum": 8, + "text": "“But|strong=\"H3290\"* you|strong=\"H2233\"*, Israel|strong=\"H3478\"*, my|strong=\"H3290\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 9, + "text": "you|strong=\"H3808\"* whom|strong=\"H7121\"* I|strong=\"H5650\"* have|strong=\"H5650\"* taken|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H5650\"* from|strong=\"H5650\"* the|strong=\"H7121\"* ends|strong=\"H7098\"* of|strong=\"H5650\"* the|strong=\"H7121\"* earth," + }, + { + "verseNum": 10, + "text": "Don’t you|strong=\"H3588\"* be|strong=\"H3372\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am with|strong=\"H5973\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2005\"*, all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1961\"* incensed|strong=\"H2734\"* against|strong=\"H2734\"* you|strong=\"H3605\"* will|strong=\"H1961\"* be|strong=\"H1961\"* disappointed and|strong=\"H7379\"* confounded|strong=\"H3637\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H3808\"* will|strong=\"H1961\"* seek|strong=\"H1245\"* them|strong=\"H4672\"*, and|strong=\"H4421\"* won’t find|strong=\"H4672\"* them|strong=\"H4672\"*," + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, will|strong=\"H3068\"* hold|strong=\"H2388\"* your|strong=\"H3068\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*," + }, + { + "verseNum": 14, + "text": "Don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"*, you|strong=\"H3372\"* worm|strong=\"H8438\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H1167\"* made|strong=\"H7760\"* you|strong=\"H7760\"* into|strong=\"H7760\"* a|strong=\"H3068\"* new|strong=\"H2319\"* sharp|strong=\"H2742\"* threshing|strong=\"H1758\"* instrument|strong=\"H2742\"* with|strong=\"H2022\"* teeth|strong=\"H6374\"*." + }, + { + "verseNum": 16, + "text": "You|strong=\"H5375\"* will|strong=\"H3068\"* winnow|strong=\"H2219\"* them|strong=\"H5375\"*," + }, + { + "verseNum": 17, + "text": "The|strong=\"H3068\"* poor|strong=\"H6041\"* and|strong=\"H3478\"* needy|strong=\"H6041\"* seek|strong=\"H1245\"* water|strong=\"H4325\"*, and|strong=\"H3478\"* there|strong=\"H3068\"* is|strong=\"H3068\"* none|strong=\"H3808\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H5921\"* will|strong=\"H4325\"* open|strong=\"H6605\"* rivers|strong=\"H5104\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bare|strong=\"H8205\"* heights|strong=\"H8205\"*," + }, + { + "verseNum": 19, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* put|strong=\"H5414\"* cedar, acacia|strong=\"H7848\"*, myrtle|strong=\"H1918\"*, and|strong=\"H6086\"* oil|strong=\"H8081\"* trees|strong=\"H6086\"* in|strong=\"H6086\"* the|strong=\"H5414\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 20, + "text": "that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H3068\"* see|strong=\"H7200\"*, know|strong=\"H3045\"*, consider|strong=\"H7200\"*, and|strong=\"H3478\"* understand|strong=\"H3045\"* together|strong=\"H3162\"*," + }, + { + "verseNum": 21, + "text": "Produce|strong=\"H7126\"* your|strong=\"H3068\"* cause|strong=\"H7379\"*,” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "“Let|strong=\"H7760\"* them|strong=\"H7760\"* announce|strong=\"H5046\"* and|strong=\"H8085\"* declare|strong=\"H5046\"* to|strong=\"H3820\"* us|strong=\"H5046\"* what|strong=\"H4100\"* will|strong=\"H3820\"* happen|strong=\"H7136\"*!" + }, + { + "verseNum": 23, + "text": "Declare|strong=\"H5046\"* the|strong=\"H7200\"* things that|strong=\"H3588\"* are|strong=\"H3045\"* to|strong=\"H7200\"* come|strong=\"H3045\"* hereafter," + }, + { + "verseNum": 24, + "text": "Behold|strong=\"H2005\"*, you|strong=\"H6467\"* are nothing," + }, + { + "verseNum": 25, + "text": "“I|strong=\"H3644\"* have|strong=\"H7429\"* raised|strong=\"H5782\"* up|strong=\"H5782\"* one|strong=\"H8034\"* from|strong=\"H8034\"* the|strong=\"H7121\"* north|strong=\"H6828\"*, and|strong=\"H6828\"* he|strong=\"H7121\"* has|strong=\"H8121\"* come," + }, + { + "verseNum": 26, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* declared|strong=\"H5046\"* it|strong=\"H3045\"* from|strong=\"H6440\"* the|strong=\"H6440\"* beginning|strong=\"H7218\"*, that|strong=\"H3045\"* we|strong=\"H3068\"* may|strong=\"H4310\"* know|strong=\"H3045\"*?" + }, + { + "verseNum": 27, + "text": "I|strong=\"H2005\"* am|strong=\"H2005\"* the|strong=\"H5414\"* first|strong=\"H7223\"* to|strong=\"H5414\"* say to|strong=\"H5414\"* Zion|strong=\"H6726\"*, ‘Behold|strong=\"H2009\"*, look|strong=\"H2009\"* at|strong=\"H5414\"* them|strong=\"H5414\"*;’" + }, + { + "verseNum": 28, + "text": "When|strong=\"H7200\"* I|strong=\"H1697\"* look|strong=\"H7200\"*, there|strong=\"H7725\"* is|strong=\"H1697\"* no|strong=\"H7200\"* man|strong=\"H7200\"*," + }, + { + "verseNum": 29, + "text": "Behold|strong=\"H2005\"*, all|strong=\"H3605\"* of|strong=\"H7307\"* their|strong=\"H3605\"* deeds|strong=\"H4639\"* are|strong=\"H5262\"* vanity|strong=\"H8414\"* and|strong=\"H7307\"* nothing|strong=\"H8414\"*." + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 1, + "text": "“Behold|strong=\"H2005\"*, my|strong=\"H5414\"* servant|strong=\"H5650\"*, whom I|strong=\"H2005\"* uphold|strong=\"H8551\"*," + }, + { + "verseNum": 2, + "text": "He|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* shout|strong=\"H6963\"*," + }, + { + "verseNum": 3, + "text": "He|strong=\"H3808\"* won’t break|strong=\"H7665\"* a|strong=\"H3068\"* bruised|strong=\"H7533\"* reed|strong=\"H7070\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H5704\"* will|strong=\"H3808\"* not|strong=\"H3808\"* fail|strong=\"H3543\"* nor|strong=\"H3808\"* be|strong=\"H3808\"* discouraged|strong=\"H7533\"*," + }, + { + "verseNum": 5, + "text": "God|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "“I|strong=\"H5414\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* called|strong=\"H7121\"* you|strong=\"H5414\"* in|strong=\"H3068\"* righteousness|strong=\"H6664\"*." + }, + { + "verseNum": 7, + "text": "to|strong=\"H3318\"* open|strong=\"H6491\"* the|strong=\"H3318\"* blind|strong=\"H5787\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 8, + "text": "“I|strong=\"H5414\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H8085\"* former|strong=\"H7223\"* things|strong=\"H7223\"* have|strong=\"H7223\"* happened" + }, + { + "verseNum": 10, + "text": "Sing|strong=\"H7891\"* to|strong=\"H3381\"* Yahweh|strong=\"H3068\"* a|strong=\"H3068\"* new|strong=\"H2319\"* song|strong=\"H7892\"*," + }, + { + "verseNum": 11, + "text": "Let the|strong=\"H5375\"* wilderness|strong=\"H4057\"* and|strong=\"H5892\"* its|strong=\"H5375\"* cities|strong=\"H5892\"* raise|strong=\"H5375\"* their|strong=\"H5375\"* voices," + }, + { + "verseNum": 12, + "text": "Let|strong=\"H7760\"* them|strong=\"H7760\"* give|strong=\"H7760\"* glory|strong=\"H3519\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* like|strong=\"H3318\"* a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"*." + }, + { + "verseNum": 14, + "text": "“I have|strong=\"H3205\"* been|strong=\"H5769\"* silent|strong=\"H2790\"* a|strong=\"H3068\"* long|strong=\"H5769\"* time|strong=\"H5769\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H7760\"* will|strong=\"H2022\"* destroy|strong=\"H3605\"* mountains|strong=\"H2022\"* and|strong=\"H2022\"* hills|strong=\"H1389\"*," + }, + { + "verseNum": 16, + "text": "I|strong=\"H7760\"* will|strong=\"H1697\"* bring|strong=\"H6213\"* the|strong=\"H6440\"* blind|strong=\"H5787\"* by|strong=\"H1870\"* a|strong=\"H3068\"* way|strong=\"H1870\"* that|strong=\"H3045\"* they|strong=\"H3808\"* don’t know|strong=\"H3045\"*." + }, + { + "verseNum": 17, + "text": "“Those who trust in|strong=\"H5472\"* engraved images|strong=\"H4541\"*," + }, + { + "verseNum": 18, + "text": "“Hear|strong=\"H8085\"*, you|strong=\"H7200\"* deaf|strong=\"H2795\"*," + }, + { + "verseNum": 19, + "text": "Who|strong=\"H4310\"* is|strong=\"H3068\"* blind|strong=\"H5787\"*, but|strong=\"H3588\"* my|strong=\"H3068\"* servant|strong=\"H5650\"*?" + }, + { + "verseNum": 20, + "text": "You|strong=\"H3808\"* see|strong=\"H7200\"* many|strong=\"H7227\"* things|strong=\"H7227\"*, but|strong=\"H3808\"* don’t observe|strong=\"H8104\"*." + }, + { + "verseNum": 21, + "text": "It|strong=\"H3068\"* pleased|strong=\"H2654\"* Yahweh|strong=\"H3068\"*, for|strong=\"H4616\"* his|strong=\"H3068\"* righteousness|strong=\"H6664\"*’ sake|strong=\"H4616\"*, to|strong=\"H3068\"* magnify|strong=\"H1431\"* the|strong=\"H3068\"* law|strong=\"H8451\"*" + }, + { + "verseNum": 22, + "text": "But|strong=\"H1961\"* this|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* robbed|strong=\"H8154\"* and|strong=\"H7725\"* plundered|strong=\"H8154\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 23, + "text": "Who|strong=\"H4310\"* is|strong=\"H4310\"* there|strong=\"H2063\"* among|strong=\"H4310\"* you|strong=\"H8085\"* who|strong=\"H4310\"* will|strong=\"H4310\"* give|strong=\"H7181\"* ear|strong=\"H8085\"* to|strong=\"H8085\"* this|strong=\"H2063\"*?" + }, + { + "verseNum": 24, + "text": "Who|strong=\"H4310\"* gave|strong=\"H5414\"* Jacob|strong=\"H3290\"* as|strong=\"H3068\"* plunder," + }, + { + "verseNum": 25, + "text": "Therefore|strong=\"H5921\"* he|strong=\"H3808\"* poured|strong=\"H8210\"* the|strong=\"H5921\"* fierceness|strong=\"H5807\"* of|strong=\"H5921\"* his|strong=\"H7760\"* anger|strong=\"H2534\"* on|strong=\"H5921\"* him|strong=\"H5921\"*," + } + ] + }, + { + "chapterNum": 43, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"H3588\"* now|strong=\"H6258\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* created|strong=\"H1254\"* you|strong=\"H3588\"*, Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 2, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3588\"* waters|strong=\"H4325\"*, I|strong=\"H3588\"* will|strong=\"H3808\"* be|strong=\"H3808\"* with|strong=\"H3212\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 4, + "text": "Since you|strong=\"H5414\"* have|strong=\"H5869\"* been precious|strong=\"H3365\"* and|strong=\"H5869\"* honored|strong=\"H3513\"* in|strong=\"H5315\"* my|strong=\"H5414\"* sight|strong=\"H5869\"*," + }, + { + "verseNum": 5, + "text": "Don’t be|strong=\"H3372\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am with|strong=\"H2233\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H5414\"* will|strong=\"H1121\"* tell the|strong=\"H5414\"* north|strong=\"H6828\"*, ‘Give|strong=\"H5414\"* them|strong=\"H5414\"* up|strong=\"H5414\"*!’" + }, + { + "verseNum": 7, + "text": "everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H8034\"* called|strong=\"H7121\"* by|strong=\"H7121\"* my|strong=\"H3605\"* name|strong=\"H8034\"*," + }, + { + "verseNum": 8, + "text": "Bring|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H3318\"* blind|strong=\"H5787\"* people|strong=\"H5971\"* who|strong=\"H5971\"* have|strong=\"H3426\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 9, + "text": "Let|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* be|strong=\"H1471\"* gathered|strong=\"H6908\"* together|strong=\"H3162\"*," + }, + { + "verseNum": 10, + "text": "“You|strong=\"H3588\"* are|strong=\"H3068\"* my|strong=\"H3068\"* witnesses|strong=\"H5707\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 11, + "text": "I|strong=\"H3068\"* myself am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H8085\"* have|strong=\"H3068\"* declared|strong=\"H5046\"*, I|strong=\"H8085\"* have|strong=\"H3068\"* saved|strong=\"H3467\"*, and|strong=\"H3068\"* I|strong=\"H8085\"* have|strong=\"H3068\"* shown|strong=\"H5046\"*," + }, + { + "verseNum": 13, + "text": "Yes|strong=\"H1571\"*, since|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* was|strong=\"H1931\"*, I|strong=\"H3117\"* am he|strong=\"H1931\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"*, your|strong=\"H3068\"* Redeemer|strong=\"H1350\"*, the|strong=\"H3605\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*: “For|strong=\"H7971\"* your|strong=\"H3068\"* sake|strong=\"H4616\"*, I|strong=\"H3541\"* have|strong=\"H3068\"* sent|strong=\"H7971\"* to|strong=\"H3381\"* Babylon, and|strong=\"H3478\"* I|strong=\"H3541\"* will|strong=\"H3068\"* bring|strong=\"H3381\"* all|strong=\"H3605\"* of|strong=\"H3068\"* them|strong=\"H7971\"* down|strong=\"H3381\"* as|strong=\"H3068\"* fugitives|strong=\"H1281\"*, even|strong=\"H3068\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"*, in|strong=\"H3478\"* the|strong=\"H3605\"* ships of|strong=\"H3068\"* their|strong=\"H3605\"* rejoicing|strong=\"H7440\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H3478\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, your|strong=\"H3068\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"*, the|strong=\"H3068\"* Creator|strong=\"H1254\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, your|strong=\"H3068\"* King|strong=\"H4428\"*.”" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* makes|strong=\"H5414\"* a|strong=\"H3068\"* way|strong=\"H1870\"* in|strong=\"H3068\"* the|strong=\"H5414\"* sea|strong=\"H3220\"*," + }, + { + "verseNum": 17, + "text": "who brings|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H3318\"* chariot|strong=\"H7393\"* and|strong=\"H6965\"* horse|strong=\"H5483\"*," + }, + { + "verseNum": 18, + "text": "“Don’t remember|strong=\"H2142\"* the|strong=\"H2142\"* former|strong=\"H7223\"* things|strong=\"H7223\"*," + }, + { + "verseNum": 19, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3808\"* do|strong=\"H6213\"* a|strong=\"H3068\"* new|strong=\"H2319\"* thing|strong=\"H2319\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3588\"* animals|strong=\"H2416\"* of|strong=\"H1323\"* the|strong=\"H3588\"* field|strong=\"H7704\"*, the|strong=\"H3588\"* jackals|strong=\"H8577\"* and|strong=\"H5971\"* the|strong=\"H3588\"* ostriches|strong=\"H3284\"*, shall|strong=\"H5971\"* honor|strong=\"H3513\"* me|strong=\"H5414\"*," + }, + { + "verseNum": 21, + "text": "the|strong=\"H5608\"* people|strong=\"H5971\"* which|strong=\"H2098\"* I|strong=\"H2098\"* formed|strong=\"H3335\"* for|strong=\"H5971\"* myself," + }, + { + "verseNum": 22, + "text": "Yet|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3478\"* not|strong=\"H3808\"* called|strong=\"H7121\"* on|strong=\"H7121\"* me|strong=\"H7121\"*, Jacob|strong=\"H3290\"*;" + }, + { + "verseNum": 23, + "text": "You|strong=\"H3808\"* have|strong=\"H3808\"* not|strong=\"H3808\"* brought me|strong=\"H3808\"* any|strong=\"H3808\"* of|strong=\"H2077\"* your|strong=\"H3513\"* sheep|strong=\"H7716\"* for|strong=\"H3808\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*," + }, + { + "verseNum": 24, + "text": "You|strong=\"H3808\"* have|strong=\"H5771\"* bought|strong=\"H7069\"* me|strong=\"H3808\"* no|strong=\"H3808\"* sweet|strong=\"H7070\"* cane|strong=\"H7070\"* with|strong=\"H5647\"* money|strong=\"H3701\"*," + }, + { + "verseNum": 25, + "text": "I|strong=\"H3808\"*, even|strong=\"H3808\"* I|strong=\"H3808\"*, am he|strong=\"H1931\"* who|strong=\"H1931\"* blots out|strong=\"H4229\"* your|strong=\"H2142\"* transgressions|strong=\"H6588\"* for|strong=\"H4616\"* my|strong=\"H2142\"* own sake|strong=\"H4616\"*;" + }, + { + "verseNum": 26, + "text": "Put|strong=\"H2142\"* me|strong=\"H8199\"* in|strong=\"H3162\"* remembrance|strong=\"H2142\"*." + }, + { + "verseNum": 27, + "text": "Your|strong=\"H6586\"* first|strong=\"H7223\"* father sinned|strong=\"H2398\"*," + }, + { + "verseNum": 28, + "text": "Therefore I|strong=\"H5414\"* will|strong=\"H3478\"* profane|strong=\"H2490\"* the|strong=\"H5414\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H5414\"* sanctuary|strong=\"H6944\"*;" + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 1, + "text": "Yet|strong=\"H6258\"* listen|strong=\"H8085\"* now|strong=\"H6258\"*, Jacob|strong=\"H3290\"* my|strong=\"H8085\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 2, + "text": "This|strong=\"H6213\"* is|strong=\"H3068\"* what|strong=\"H6213\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* made|strong=\"H6213\"* you|strong=\"H6213\"*," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H7307\"* pour|strong=\"H3332\"* water|strong=\"H4325\"* on|strong=\"H5921\"* him|strong=\"H5921\"* who|strong=\"H3588\"* is|strong=\"H7307\"* thirsty|strong=\"H6771\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"H4325\"* they|strong=\"H5921\"* will|strong=\"H4325\"* spring|strong=\"H6779\"* up|strong=\"H6779\"* among|strong=\"H5921\"* the|strong=\"H5921\"* grass|strong=\"H2682\"*," + }, + { + "verseNum": 5, + "text": "One|strong=\"H2088\"* will|strong=\"H3068\"* say|strong=\"H3478\"*, ‘I|strong=\"H2088\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s.’" + }, + { + "verseNum": 6, + "text": "This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* King|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 7, + "text": "Who|strong=\"H4310\"* is|strong=\"H4310\"* like|strong=\"H3644\"* me|strong=\"H5046\"*?" + }, + { + "verseNum": 8, + "text": "Don’t fear|strong=\"H6342\"*," + }, + { + "verseNum": 9, + "text": "Everyone|strong=\"H3605\"* who|strong=\"H3605\"* makes|strong=\"H7200\"* a|strong=\"H3068\"* carved|strong=\"H6459\"* image|strong=\"H6459\"* is|strong=\"H3605\"* vain|strong=\"H8414\"*." + }, + { + "verseNum": 10, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* fashioned|strong=\"H3335\"* a|strong=\"H3068\"* god|strong=\"H4310\"*," + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2005\"*, all|strong=\"H3605\"* his|strong=\"H3605\"* fellows|strong=\"H2270\"* will|strong=\"H3162\"* be|strong=\"H3162\"* disappointed;" + }, + { + "verseNum": 12, + "text": "The|strong=\"H1571\"* blacksmith|strong=\"H2796\"* takes an|strong=\"H1571\"* ax," + }, + { + "verseNum": 13, + "text": "The|strong=\"H6213\"* carpenter|strong=\"H2796\"* stretches|strong=\"H5186\"* out|strong=\"H5186\"* a|strong=\"H3068\"* line|strong=\"H6957\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3947\"* cuts|strong=\"H3772\"* down|strong=\"H3772\"* cedars for|strong=\"H6086\"* himself|strong=\"H1431\"*," + }, + { + "verseNum": 15, + "text": "Then|strong=\"H1961\"* it|strong=\"H6213\"* will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H6213\"* a|strong=\"H3068\"* man to|strong=\"H1961\"* burn|strong=\"H1197\"*;" + }, + { + "verseNum": 16, + "text": "He|strong=\"H5921\"* burns|strong=\"H8313\"* part|strong=\"H2677\"* of|strong=\"H5921\"* it|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* fire." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3588\"* rest|strong=\"H7611\"* of|strong=\"H7611\"* it|strong=\"H3588\"* he|strong=\"H3588\"* makes|strong=\"H6213\"* into|strong=\"H6213\"* a|strong=\"H3068\"* god," + }, + { + "verseNum": 18, + "text": "They|strong=\"H3588\"* don’t know|strong=\"H3045\"*, neither|strong=\"H3808\"* do|strong=\"H5869\"* they|strong=\"H3588\"* consider|strong=\"H7200\"*," + }, + { + "verseNum": 19, + "text": "No|strong=\"H3808\"* one|strong=\"H3808\"* thinks," + }, + { + "verseNum": 20, + "text": "He|strong=\"H3808\"* feeds|strong=\"H7462\"* on|strong=\"H7462\"* ashes." + }, + { + "verseNum": 21, + "text": "Remember|strong=\"H2142\"* these|strong=\"H2142\"* things|strong=\"H3808\"*, Jacob|strong=\"H3290\"* and|strong=\"H3478\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 22, + "text": "I|strong=\"H3588\"* have|strong=\"H2403\"* blotted|strong=\"H4229\"* out|strong=\"H4229\"*, as|strong=\"H3588\"* a|strong=\"H3068\"* thick|strong=\"H5645\"* cloud|strong=\"H6051\"*, your|strong=\"H7725\"* transgressions|strong=\"H6588\"*," + }, + { + "verseNum": 23, + "text": "Sing|strong=\"H7442\"*, you|strong=\"H3588\"* heavens|strong=\"H8064\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* done|strong=\"H6213\"* it|strong=\"H3588\"*!" + }, + { + "verseNum": 24, + "text": "Yahweh|strong=\"H3068\"*, your|strong=\"H3068\"* Redeemer|strong=\"H1350\"*," + }, + { + "verseNum": 25, + "text": "who|strong=\"H2450\"* frustrates|strong=\"H6565\"* the|strong=\"H7725\"* signs of|strong=\"H1847\"* the|strong=\"H7725\"* liars," + }, + { + "verseNum": 26, + "text": "who|strong=\"H5650\"* confirms|strong=\"H6965\"* the|strong=\"H1129\"* word|strong=\"H1697\"* of|strong=\"H1697\"* his|strong=\"H6965\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 27, + "text": "who says to|strong=\"H5104\"* the|strong=\"H3001\"* deep|strong=\"H6683\"*, ‘Be dry|strong=\"H3001\"*,’" + }, + { + "verseNum": 28, + "text": "who|strong=\"H3605\"* says of|strong=\"H3605\"* Cyrus|strong=\"H3566\"*, ‘He|strong=\"H3605\"* is|strong=\"H3605\"* my|strong=\"H3605\"* shepherd|strong=\"H7473\"*, and|strong=\"H3389\"* shall|strong=\"H3389\"* perform|strong=\"H7999\"* all|strong=\"H3605\"* my|strong=\"H3605\"* pleasure|strong=\"H2656\"*,’" + } + ] + }, + { + "chapterNum": 45, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3068\"* his|strong=\"H3068\"* anointed|strong=\"H4899\"*, to|strong=\"H3068\"* Cyrus|strong=\"H3566\"*, whose|strong=\"H1471\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* I|strong=\"H3541\"* have|strong=\"H3068\"* held|strong=\"H2388\"* to|strong=\"H3068\"* subdue|strong=\"H7286\"* nations|strong=\"H1471\"* before|strong=\"H6440\"* him|strong=\"H6440\"* and|strong=\"H3068\"* strip kings|strong=\"H4428\"* of|strong=\"H4428\"* their|strong=\"H3068\"* armor, to|strong=\"H3068\"* open|strong=\"H6605\"* the|strong=\"H6440\"* doors|strong=\"H1817\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* gates|strong=\"H8179\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* shut|strong=\"H5462\"*:" + }, + { + "verseNum": 2, + "text": "“I|strong=\"H6440\"* will|strong=\"H6440\"* go|strong=\"H3212\"* before|strong=\"H6440\"* you|strong=\"H6440\"*" + }, + { + "verseNum": 3, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"* the|strong=\"H3588\"* treasures|strong=\"H4301\"* of|strong=\"H3068\"* darkness|strong=\"H2822\"*" + }, + { + "verseNum": 4, + "text": "For|strong=\"H7121\"* Jacob|strong=\"H3290\"* my|strong=\"H3045\"* servant|strong=\"H5650\"*’s sake|strong=\"H4616\"*," + }, + { + "verseNum": 5, + "text": "I|strong=\"H3045\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* there|strong=\"H3045\"* is|strong=\"H3068\"* no|strong=\"H3808\"* one|strong=\"H3808\"* else|strong=\"H5750\"*." + }, + { + "verseNum": 6, + "text": "that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H3068\"* know|strong=\"H3045\"* from|strong=\"H3068\"* the|strong=\"H3588\"* rising|strong=\"H4217\"* of|strong=\"H3068\"* the|strong=\"H3588\"* sun|strong=\"H8121\"*," + }, + { + "verseNum": 7, + "text": "I|strong=\"H3068\"* form|strong=\"H3335\"* the|strong=\"H3605\"* light" + }, + { + "verseNum": 8, + "text": "Rain|strong=\"H7491\"*, you|strong=\"H6509\"* heavens|strong=\"H8064\"*, from|strong=\"H3068\"* above|strong=\"H4605\"*," + }, + { + "verseNum": 9, + "text": "Woe|strong=\"H1945\"* to|strong=\"H6213\"* him|strong=\"H3027\"* who|strong=\"H4100\"* strives with|strong=\"H6213\"* his|strong=\"H3027\"* Maker|strong=\"H6213\"*—" + }, + { + "verseNum": 10, + "text": "Woe|strong=\"H1945\"* to|strong=\"H3205\"* him|strong=\"H3205\"* who|strong=\"H4100\"* says to|strong=\"H3205\"* a|strong=\"H3068\"* father|strong=\"H3205\"*, ‘What|strong=\"H4100\"* have|strong=\"H3205\"* you|strong=\"H4100\"* become|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"*?’" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*" + }, + { + "verseNum": 12, + "text": "I|strong=\"H5921\"* have|strong=\"H3027\"* made|strong=\"H6213\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*, and|strong=\"H8064\"* created|strong=\"H1254\"* man|strong=\"H3605\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H3808\"* have|strong=\"H3068\"* raised|strong=\"H5782\"* him|strong=\"H7971\"* up|strong=\"H5782\"* in|strong=\"H3068\"* righteousness|strong=\"H6664\"*," + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “The|strong=\"H5921\"* labor|strong=\"H3018\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 15, + "text": "Most certainly you|strong=\"H3467\"* are|strong=\"H3478\"* a|strong=\"H3068\"* God who|strong=\"H3478\"* has|strong=\"H3478\"* hidden|strong=\"H5641\"* yourself|strong=\"H5641\"*," + }, + { + "verseNum": 16, + "text": "They|strong=\"H3605\"* will|strong=\"H1571\"* be|strong=\"H1571\"* disappointed," + }, + { + "verseNum": 17, + "text": "Israel|strong=\"H3478\"* will|strong=\"H3068\"* be|strong=\"H3808\"* saved|strong=\"H3467\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* an|strong=\"H3068\"* everlasting|strong=\"H5769\"* salvation|strong=\"H8668\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* who|strong=\"H1931\"* created|strong=\"H1254\"* the|strong=\"H3588\"* heavens|strong=\"H8064\"*," + }, + { + "verseNum": 19, + "text": "I|strong=\"H3808\"* have|strong=\"H3068\"* not|strong=\"H3808\"* spoken|strong=\"H1696\"* in|strong=\"H3068\"* secret|strong=\"H5643\"*," + }, + { + "verseNum": 20, + "text": "“Assemble|strong=\"H6908\"* yourselves|strong=\"H5375\"* and|strong=\"H6086\"* come|strong=\"H5066\"*." + }, + { + "verseNum": 21, + "text": "Declare|strong=\"H5046\"* and|strong=\"H3068\"* present|strong=\"H5066\"* it|strong=\"H2063\"*." + }, + { + "verseNum": 22, + "text": "“Look|strong=\"H6437\"* to|strong=\"H6437\"* me|strong=\"H3467\"*, and|strong=\"H6437\"* be|strong=\"H5750\"* saved|strong=\"H3467\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* ends of|strong=\"H3605\"* the|strong=\"H3605\"* earth;" + }, + { + "verseNum": 23, + "text": "I|strong=\"H3588\"* have|strong=\"H1697\"* sworn|strong=\"H7650\"* by|strong=\"H7650\"* myself." + }, + { + "verseNum": 24, + "text": "They|strong=\"H3068\"* will|strong=\"H3068\"* say of|strong=\"H3068\"* me|strong=\"H3605\"*," + }, + { + "verseNum": 25, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* offspring|strong=\"H2233\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* will|strong=\"H3068\"* be|strong=\"H3068\"* justified|strong=\"H6663\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 46, + "verses": [ + { + "verseNum": 1, + "text": "Bel|strong=\"H1078\"* bows down|strong=\"H3766\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H3808\"* stoop|strong=\"H7164\"* and|strong=\"H1980\"* they|strong=\"H3808\"* bow|strong=\"H3766\"* down|strong=\"H3766\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 3, + "text": "“Listen|strong=\"H8085\"* to|strong=\"H3478\"* me|strong=\"H4480\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 4, + "text": "Even|strong=\"H5704\"* to|strong=\"H5704\"* old|strong=\"H2209\"* age|strong=\"H7872\"* I|strong=\"H5704\"* am he|strong=\"H1931\"*," + }, + { + "verseNum": 5, + "text": "“To|strong=\"H1819\"* whom|strong=\"H4310\"* will|strong=\"H4310\"* you|strong=\"H4310\"* compare|strong=\"H1819\"* me|strong=\"H7737\"*, and|strong=\"H7737\"* consider my|strong=\"H7737\"* equal|strong=\"H7737\"*," + }, + { + "verseNum": 6, + "text": "Some pour out|strong=\"H6213\"* gold|strong=\"H2091\"* from|strong=\"H2091\"* the|strong=\"H6213\"* bag|strong=\"H3599\"*," + }, + { + "verseNum": 7, + "text": "They|strong=\"H3808\"* bear|strong=\"H5375\"* it|strong=\"H5921\"* on|strong=\"H5921\"* their|strong=\"H5375\"* shoulder|strong=\"H3802\"*." + }, + { + "verseNum": 8, + "text": "“Remember|strong=\"H2142\"* this|strong=\"H2063\"*, and|strong=\"H7725\"* show yourselves|strong=\"H5921\"* men." + }, + { + "verseNum": 9, + "text": "Remember|strong=\"H2142\"* the|strong=\"H3588\"* former|strong=\"H7223\"* things|strong=\"H7223\"* of|strong=\"H7223\"* old|strong=\"H5769\"*;" + }, + { + "verseNum": 10, + "text": "I|strong=\"H3808\"* declare|strong=\"H5046\"* the|strong=\"H3605\"* end|strong=\"H6924\"* from|strong=\"H6965\"* the|strong=\"H3605\"* beginning|strong=\"H7225\"*," + }, + { + "verseNum": 11, + "text": "I|strong=\"H6213\"* call|strong=\"H7121\"* a|strong=\"H3068\"* ravenous|strong=\"H5861\"* bird|strong=\"H5861\"* from|strong=\"H4217\"* the|strong=\"H6213\"* east|strong=\"H4217\"*," + }, + { + "verseNum": 12, + "text": "Listen|strong=\"H8085\"* to|strong=\"H3820\"* me|strong=\"H3820\"*, you|strong=\"H3820\"* stubborn-hearted," + }, + { + "verseNum": 13, + "text": "I|strong=\"H5414\"* bring|strong=\"H7126\"* my|strong=\"H5414\"* righteousness|strong=\"H6666\"* near|strong=\"H7126\"*." + } + ] + }, + { + "chapterNum": 47, + "verses": [ + { + "verseNum": 1, + "text": "“Come|strong=\"H3381\"* down|strong=\"H3381\"* and|strong=\"H3381\"* sit|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* dust|strong=\"H6083\"*, virgin|strong=\"H1330\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Babylon." + }, + { + "verseNum": 2, + "text": "Take|strong=\"H3947\"* the|strong=\"H3947\"* millstones|strong=\"H7347\"* and|strong=\"H3947\"* grind|strong=\"H2912\"* flour|strong=\"H7058\"*." + }, + { + "verseNum": 3, + "text": "Your|strong=\"H3947\"* nakedness|strong=\"H6172\"* will|strong=\"H1571\"* be|strong=\"H3808\"* uncovered|strong=\"H1540\"*." + }, + { + "verseNum": 4, + "text": "Our|strong=\"H3068\"* Redeemer|strong=\"H1350\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* is|strong=\"H3068\"* his|strong=\"H3068\"* name|strong=\"H8034\"*," + }, + { + "verseNum": 5, + "text": "“Sit|strong=\"H3427\"* in|strong=\"H3427\"* silence, and|strong=\"H3427\"* go|strong=\"H3254\"* into|strong=\"H1323\"* darkness|strong=\"H2822\"*," + }, + { + "verseNum": 6, + "text": "I|strong=\"H5414\"* was|strong=\"H3027\"* angry|strong=\"H7107\"* with|strong=\"H5921\"* my|strong=\"H5414\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H5921\"* said, ‘I|strong=\"H5704\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* princess forever|strong=\"H5769\"*,’" + }, + { + "verseNum": 8, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H6258\"* hear|strong=\"H8085\"* this|strong=\"H2063\"*, you|strong=\"H3045\"* who|strong=\"H3427\"* are|strong=\"H3824\"* given|strong=\"H8085\"* to|strong=\"H8085\"* pleasures|strong=\"H5719\"*," + }, + { + "verseNum": 9, + "text": "But|strong=\"H3117\"* these|strong=\"H8147\"* two|strong=\"H8147\"* things|strong=\"H8147\"* will|strong=\"H3117\"* come to|strong=\"H5921\"* you|strong=\"H5921\"* in|strong=\"H5921\"* a|strong=\"H3068\"* moment|strong=\"H7281\"* in|strong=\"H5921\"* one|strong=\"H8147\"* day|strong=\"H3117\"*:" + }, + { + "verseNum": 10, + "text": "For|strong=\"H7451\"* you|strong=\"H7725\"* have|strong=\"H7200\"* trusted in|strong=\"H7725\"* your|strong=\"H7200\"* wickedness|strong=\"H7451\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H5921\"* disaster|strong=\"H7451\"* will|strong=\"H3808\"* come|strong=\"H5307\"* on|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "“Stand|strong=\"H5975\"* now|strong=\"H4994\"* with|strong=\"H5975\"* your|strong=\"H4994\"* enchantments|strong=\"H2267\"*" + }, + { + "verseNum": 13, + "text": "You|strong=\"H5921\"* are|strong=\"H8064\"* wearied|strong=\"H3811\"* in|strong=\"H5921\"* the|strong=\"H5921\"* multitude|strong=\"H7230\"* of|strong=\"H7230\"* your|strong=\"H5921\"* counsels|strong=\"H6098\"*." + }, + { + "verseNum": 14, + "text": "Behold|strong=\"H2009\"*, they|strong=\"H3808\"* are|strong=\"H3027\"* like|strong=\"H1961\"* stubble|strong=\"H7179\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5676\"* things|strong=\"H1961\"* that|strong=\"H3651\"* you|strong=\"H3651\"* labored|strong=\"H3021\"* in|strong=\"H3021\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* this|strong=\"H3651\"*:" + } + ] + }, + { + "chapterNum": 48, + "verses": [ + { + "verseNum": 1, + "text": "“Hear|strong=\"H8085\"* this|strong=\"H2063\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 2, + "text": "for|strong=\"H3588\"* they|strong=\"H3588\"* call|strong=\"H7121\"* themselves|strong=\"H7121\"* citizens of|strong=\"H3068\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* city|strong=\"H5892\"*," + }, + { + "verseNum": 3, + "text": "I|strong=\"H8085\"* have|strong=\"H7223\"* declared|strong=\"H5046\"* the|strong=\"H8085\"* former|strong=\"H7223\"* things|strong=\"H7223\"* from|strong=\"H3318\"* of|strong=\"H6310\"* old|strong=\"H7223\"*." + }, + { + "verseNum": 4, + "text": "Because|strong=\"H3588\"* I|strong=\"H3588\"* knew|strong=\"H1847\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H7186\"* obstinate|strong=\"H7186\"*," + }, + { + "verseNum": 5, + "text": "therefore|strong=\"H6213\"* I|strong=\"H2962\"* have|strong=\"H5262\"* declared|strong=\"H5046\"* it|strong=\"H6213\"* to|strong=\"H6213\"* you|strong=\"H6680\"* from|strong=\"H8085\"* of|strong=\"H6213\"* old;" + }, + { + "verseNum": 6, + "text": "You|strong=\"H3605\"* have|strong=\"H3045\"* heard|strong=\"H8085\"* it|strong=\"H3045\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3117\"* are|strong=\"H3117\"* created|strong=\"H1254\"* now|strong=\"H6258\"*, and|strong=\"H3117\"* not|strong=\"H3808\"* from|strong=\"H6440\"* of|strong=\"H3117\"* old|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "Yes|strong=\"H3588\"*, you|strong=\"H3588\"* didn’t hear|strong=\"H8085\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H8034\"* my|strong=\"H3772\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*, I|strong=\"H3772\"* will|strong=\"H8034\"* defer my|strong=\"H3772\"* anger," + }, + { + "verseNum": 10, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H3808\"* refined|strong=\"H6884\"* you|strong=\"H3808\"*," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* my|strong=\"H5414\"* own sake|strong=\"H4616\"*," + }, + { + "verseNum": 12, + "text": "“Listen|strong=\"H8085\"* to|strong=\"H3478\"* me|strong=\"H7121\"*, O|strong=\"H3068\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 13, + "text": "Yes, my|strong=\"H3027\"* hand|strong=\"H3027\"* has|strong=\"H3027\"* laid|strong=\"H3245\"* the|strong=\"H7121\"* foundation|strong=\"H3245\"* of|strong=\"H3027\"* the|strong=\"H7121\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 14, + "text": "“Assemble|strong=\"H6908\"* yourselves|strong=\"H3605\"*, all|strong=\"H3605\"* of|strong=\"H3068\"* you|strong=\"H3605\"*, and|strong=\"H3068\"* hear|strong=\"H8085\"*!" + }, + { + "verseNum": 15, + "text": "I|strong=\"H1870\"*, even I|strong=\"H1870\"*, have|strong=\"H1696\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 16, + "text": "“Come|strong=\"H1961\"* near|strong=\"H7126\"* to|strong=\"H1696\"* me|strong=\"H7971\"* and|strong=\"H7971\"* hear|strong=\"H8085\"* this|strong=\"H2063\"*:" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 18, + "text": "Oh|strong=\"H3863\"* that|strong=\"H3863\"* you|strong=\"H1961\"* had|strong=\"H1961\"* listened|strong=\"H7181\"* to|strong=\"H1961\"* my|strong=\"H1961\"* commandments|strong=\"H4687\"*!" + }, + { + "verseNum": 19, + "text": "Your|strong=\"H6440\"* offspring|strong=\"H2233\"* also|strong=\"H8034\"* would|strong=\"H8034\"* have|strong=\"H1961\"* been|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H6440\"* sand|strong=\"H2344\"*" + }, + { + "verseNum": 20, + "text": "Leave|strong=\"H3318\"* Babylon!" + }, + { + "verseNum": 21, + "text": "They|strong=\"H3808\"* didn’t thirst|strong=\"H6770\"* when he|strong=\"H3808\"* led|strong=\"H3212\"* them through|strong=\"H1234\"* the|strong=\"H3808\"* deserts|strong=\"H2723\"*." + }, + { + "verseNum": 22, + "text": "“There|strong=\"H7965\"* is|strong=\"H3068\"* no|strong=\"H7563\"* peace|strong=\"H7965\"*”, says Yahweh|strong=\"H3068\"*, “for|strong=\"H3068\"* the|strong=\"H3068\"* wicked|strong=\"H7563\"*.”" + } + ] + }, + { + "chapterNum": 49, + "verses": [ + { + "verseNum": 1, + "text": "Listen|strong=\"H8085\"*, islands, to|strong=\"H3068\"* me|strong=\"H7121\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3027\"* has|strong=\"H3027\"* made|strong=\"H7760\"* my|strong=\"H7760\"* mouth|strong=\"H6310\"* like|strong=\"H6738\"* a|strong=\"H3068\"* sharp|strong=\"H2299\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3478\"* said to|strong=\"H3478\"* me|strong=\"H5650\"*, “You|strong=\"H3478\"* are|strong=\"H3478\"* my|strong=\"H5650\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 4, + "text": "But|strong=\"H3068\"* I|strong=\"H3068\"* said, “I|strong=\"H3068\"* have|strong=\"H3068\"* labored|strong=\"H3021\"* in|strong=\"H3068\"* vain|strong=\"H1892\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"H6258\"* Yahweh|strong=\"H3068\"*, he|strong=\"H3068\"* who|strong=\"H3068\"* formed|strong=\"H3335\"* me|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H3068\"* womb to|strong=\"H7725\"* be|strong=\"H1961\"* his|strong=\"H3068\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 6, + "text": "Indeed|strong=\"H7725\"*, he|strong=\"H5704\"* says, “It|strong=\"H5414\"* is|strong=\"H3478\"* too|strong=\"H1961\"* light|strong=\"H7043\"* a|strong=\"H3068\"* thing|strong=\"H7043\"* that|strong=\"H1471\"* you|strong=\"H5414\"* should|strong=\"H3478\"* be|strong=\"H1961\"* my|strong=\"H5414\"* servant|strong=\"H5650\"* to|strong=\"H5704\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H5414\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H7200\"* Redeemer|strong=\"H1350\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, and|strong=\"H6965\"* his|strong=\"H3068\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"*," + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “I|strong=\"H3117\"* have|strong=\"H3068\"* answered|strong=\"H6030\"* you|strong=\"H5414\"* in|strong=\"H3068\"* an|strong=\"H5414\"* acceptable|strong=\"H7522\"* time|strong=\"H6256\"*." + }, + { + "verseNum": 9, + "text": "saying to|strong=\"H3318\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1870\"* bound, ‘Come|strong=\"H3318\"* out|strong=\"H3318\"*!’;" + }, + { + "verseNum": 10, + "text": "They|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* hunger|strong=\"H7456\"* nor|strong=\"H3808\"* thirst|strong=\"H6770\"*;" + }, + { + "verseNum": 11, + "text": "I|strong=\"H7760\"* will|strong=\"H2022\"* make|strong=\"H7760\"* all|strong=\"H3605\"* my|strong=\"H3605\"* mountains|strong=\"H2022\"* a|strong=\"H3068\"* road|strong=\"H1870\"*," + }, + { + "verseNum": 12, + "text": "Behold|strong=\"H2009\"*, these shall|strong=\"H6828\"* come|strong=\"H7350\"* from|strong=\"H7350\"* afar|strong=\"H7350\"*," + }, + { + "verseNum": 13, + "text": "Sing|strong=\"H7442\"*, heavens|strong=\"H8064\"*, and|strong=\"H3068\"* be|strong=\"H3068\"* joyful|strong=\"H7440\"*, earth|strong=\"H8064\"*!" + }, + { + "verseNum": 14, + "text": "But|strong=\"H5800\"* Zion|strong=\"H6726\"* said, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* forsaken|strong=\"H5800\"* me|strong=\"H7911\"*," + }, + { + "verseNum": 15, + "text": "“Can|strong=\"H3808\"* a|strong=\"H3068\"* woman forget|strong=\"H7911\"* her|strong=\"H7911\"* nursing|strong=\"H5764\"* child|strong=\"H1121\"*," + }, + { + "verseNum": 16, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* have|strong=\"H5921\"* engraved you|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* palms|strong=\"H3709\"* of|strong=\"H2346\"* my|strong=\"H5921\"* hands|strong=\"H3709\"*." + }, + { + "verseNum": 17, + "text": "Your|strong=\"H4480\"* children|strong=\"H1121\"* hurry|strong=\"H4116\"*." + }, + { + "verseNum": 18, + "text": "Lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"* all|strong=\"H3605\"* around|strong=\"H5439\"*, and|strong=\"H3068\"* see|strong=\"H7200\"*:" + }, + { + "verseNum": 19, + "text": "“For|strong=\"H3588\"*, as|strong=\"H3588\"* for|strong=\"H3588\"* your|strong=\"H3588\"* waste|strong=\"H2723\"* and|strong=\"H3427\"* your|strong=\"H3588\"* desolate|strong=\"H8074\"* places|strong=\"H2723\"*," + }, + { + "verseNum": 20, + "text": "The|strong=\"H5066\"* children|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H5066\"* bereavement will|strong=\"H1121\"* say in|strong=\"H3427\"* your|strong=\"H5066\"* ears," + }, + { + "verseNum": 21, + "text": "Then you|strong=\"H3205\"* will|strong=\"H4310\"* say in|strong=\"H7604\"* your|strong=\"H5493\"* heart|strong=\"H3824\"*, ‘Who|strong=\"H4310\"* has|strong=\"H4310\"* conceived these|strong=\"H1992\"* for|strong=\"H3205\"* me|strong=\"H3205\"*, since|strong=\"H2005\"* I|strong=\"H2005\"* have|strong=\"H7604\"* been|strong=\"H7921\"* bereaved|strong=\"H7921\"* of|strong=\"H3205\"* my|strong=\"H5493\"* children|strong=\"H7921\"*" + }, + { + "verseNum": 22, + "text": "The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Behold|strong=\"H2009\"*, I|strong=\"H3541\"* will|strong=\"H1471\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H5921\"* hand|strong=\"H3027\"* to|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 23, + "text": "Kings|strong=\"H4428\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* your|strong=\"H3068\"* foster fathers," + }, + { + "verseNum": 24, + "text": "Shall|strong=\"H6662\"* the|strong=\"H3947\"* plunder|strong=\"H4455\"* be|strong=\"H6662\"* taken|strong=\"H3947\"* from|strong=\"H3947\"* the|strong=\"H3947\"* mighty|strong=\"H1368\"*," + }, + { + "verseNum": 25, + "text": "But|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Even|strong=\"H1571\"* the|strong=\"H3588\"* captives|strong=\"H7628\"* of|strong=\"H1121\"* the|strong=\"H3588\"* mighty|strong=\"H1368\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* taken|strong=\"H3947\"* away|strong=\"H3947\"*," + }, + { + "verseNum": 26, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* feed those|strong=\"H3605\"* who|strong=\"H3605\"* oppress|strong=\"H3238\"* you|strong=\"H3588\"* with|strong=\"H3068\"* their|strong=\"H3605\"* own flesh|strong=\"H1320\"*;" + } + ] + }, + { + "chapterNum": 50, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Where|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3541\"* bill|strong=\"H5612\"* of|strong=\"H3068\"* your|strong=\"H3068\"* mother’s divorce|strong=\"H7971\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* I|strong=\"H2005\"* have|strong=\"H3068\"* put|strong=\"H7971\"* her|strong=\"H7971\"* away|strong=\"H7971\"*?" + }, + { + "verseNum": 2, + "text": "Why|strong=\"H4069\"*, when|strong=\"H7114\"* I|strong=\"H2005\"* came|strong=\"H4325\"*, was|strong=\"H3027\"* there no|strong=\"H7760\"* one|strong=\"H3027\"*?" + }, + { + "verseNum": 3, + "text": "I|strong=\"H7760\"* clothe|strong=\"H3847\"* the|strong=\"H7760\"* heavens|strong=\"H8064\"* with|strong=\"H3847\"* blackness|strong=\"H6940\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H8085\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* has|strong=\"H1697\"* given|strong=\"H5414\"* me|strong=\"H5414\"* the|strong=\"H8085\"* tongue|strong=\"H3956\"* of|strong=\"H1697\"* those|strong=\"H8085\"* who|strong=\"H3045\"* are|strong=\"H1697\"* taught|strong=\"H3045\"*," + }, + { + "verseNum": 5, + "text": "The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* has opened|strong=\"H6605\"* my|strong=\"H6605\"* ear." + }, + { + "verseNum": 6, + "text": "I|strong=\"H5414\"* gave|strong=\"H5414\"* my|strong=\"H5414\"* back|strong=\"H1460\"* to|strong=\"H5414\"* those who|strong=\"H5221\"* beat|strong=\"H5221\"* me|strong=\"H5414\"*," + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* the|strong=\"H6440\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* will|strong=\"H3808\"* help|strong=\"H5826\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H4310\"* who|strong=\"H4310\"* justifies|strong=\"H6663\"* me|strong=\"H5975\"* is|strong=\"H4310\"* near|strong=\"H5066\"*." + }, + { + "verseNum": 9, + "text": "Behold|strong=\"H2005\"*, the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* will|strong=\"H4310\"* help|strong=\"H5826\"* me|strong=\"H7561\"*!" + }, + { + "verseNum": 10, + "text": "Who|strong=\"H4310\"* among|strong=\"H8034\"* you|strong=\"H6963\"* fears|strong=\"H3373\"* Yahweh|strong=\"H3068\"*" + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2005\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* who|strong=\"H3605\"* kindle|strong=\"H1197\"* a|strong=\"H3068\"* fire," + } + ] + }, + { + "chapterNum": 51, + "verses": [ + { + "verseNum": 1, + "text": "“Listen|strong=\"H8085\"* to|strong=\"H3068\"* me|strong=\"H7291\"*, you|strong=\"H7291\"* who|strong=\"H3068\"* follow|strong=\"H7291\"* after|strong=\"H7291\"* righteousness|strong=\"H6664\"*," + }, + { + "verseNum": 2, + "text": "Look|strong=\"H5027\"* to|strong=\"H7121\"* Abraham your|strong=\"H3588\"* father," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* comforted|strong=\"H5162\"* Zion|strong=\"H6726\"*." + }, + { + "verseNum": 4, + "text": "“Listen|strong=\"H7181\"* to|strong=\"H3318\"* me|strong=\"H3318\"*, my|strong=\"H3318\"* people|strong=\"H5971\"*;" + }, + { + "verseNum": 5, + "text": "My|strong=\"H3318\"* righteousness|strong=\"H6664\"* is|strong=\"H6664\"* near|strong=\"H7138\"*." + }, + { + "verseNum": 6, + "text": "Lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5375\"* eyes|strong=\"H5869\"* to|strong=\"H4191\"* the|strong=\"H3588\"* heavens|strong=\"H8064\"*," + }, + { + "verseNum": 7, + "text": "“Listen|strong=\"H8085\"* to|strong=\"H3820\"* me|strong=\"H3372\"*, you|strong=\"H3045\"* who|strong=\"H5971\"* know|strong=\"H3045\"* righteousness|strong=\"H6664\"*," + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* moth|strong=\"H6211\"* will|strong=\"H1961\"* eat them|strong=\"H1961\"* up|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* garment," + }, + { + "verseNum": 9, + "text": "Awake|strong=\"H5782\"*, awake|strong=\"H5782\"*, put|strong=\"H3847\"* on|strong=\"H3117\"* strength|strong=\"H5797\"*, arm|strong=\"H2220\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 10, + "text": "Isn’t it|strong=\"H7760\"* you|strong=\"H7760\"* who|strong=\"H1931\"* dried|strong=\"H2717\"* up|strong=\"H7760\"* the|strong=\"H7760\"* sea|strong=\"H3220\"*," + }, + { + "verseNum": 11, + "text": "Those|strong=\"H5921\"* ransomed|strong=\"H6299\"* by|strong=\"H5921\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* return|strong=\"H7725\"*," + }, + { + "verseNum": 12, + "text": "“I|strong=\"H5414\"*, even I|strong=\"H5414\"*, am|strong=\"H5162\"* he|strong=\"H1931\"* who|strong=\"H4310\"* comforts|strong=\"H5162\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "Have|strong=\"H3068\"* you|strong=\"H6440\"* forgotten|strong=\"H7911\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* Maker|strong=\"H6213\"*," + }, + { + "verseNum": 14, + "text": "The|strong=\"H4191\"* captive exile|strong=\"H6808\"* will|strong=\"H3808\"* speedily|strong=\"H4116\"* be|strong=\"H4191\"* freed." + }, + { + "verseNum": 15, + "text": "For|strong=\"H8034\"* I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* stirs|strong=\"H7280\"* up|strong=\"H3220\"* the|strong=\"H3068\"* sea|strong=\"H3220\"*" + }, + { + "verseNum": 16, + "text": "I|strong=\"H7760\"* have|strong=\"H5971\"* put|strong=\"H7760\"* my|strong=\"H7760\"* words|strong=\"H1697\"* in|strong=\"H1697\"* your|strong=\"H7760\"* mouth|strong=\"H6310\"*" + }, + { + "verseNum": 17, + "text": "Awake|strong=\"H5782\"*, awake|strong=\"H5782\"*!" + }, + { + "verseNum": 18, + "text": "There|strong=\"H3605\"* is|strong=\"H3027\"* no|strong=\"H3605\"* one|strong=\"H3605\"* to|strong=\"H3027\"* guide|strong=\"H5095\"* her|strong=\"H3605\"* among all|strong=\"H3605\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* to|strong=\"H3027\"* whom she has|strong=\"H3027\"* given|strong=\"H3205\"* birth|strong=\"H3205\"*;" + }, + { + "verseNum": 19, + "text": "These|strong=\"H2007\"* two|strong=\"H8147\"* things|strong=\"H8147\"* have|strong=\"H5162\"* happened|strong=\"H7122\"* to|strong=\"H2719\"* you|strong=\"H4310\"*—" + }, + { + "verseNum": 20, + "text": "Your|strong=\"H3068\"* sons|strong=\"H1121\"* have|strong=\"H3068\"* fainted|strong=\"H5968\"*." + }, + { + "verseNum": 21, + "text": "Therefore|strong=\"H3651\"* now|strong=\"H4994\"* hear|strong=\"H8085\"* this|strong=\"H2063\"*, you|strong=\"H3808\"* afflicted|strong=\"H6041\"*," + }, + { + "verseNum": 22, + "text": "Your|strong=\"H3068\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 23, + "text": "I|strong=\"H7760\"* will|strong=\"H5315\"* put|strong=\"H7760\"* it|strong=\"H7760\"* into|strong=\"H3027\"* the|strong=\"H7760\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* those|strong=\"H5315\"* who|strong=\"H5315\"* afflict|strong=\"H3013\"* you|strong=\"H7760\"*," + } + ] + }, + { + "chapterNum": 52, + "verses": [ + { + "verseNum": 1, + "text": "Awake|strong=\"H5782\"*, awake|strong=\"H5782\"*! Put|strong=\"H3847\"* on|strong=\"H3847\"* your|strong=\"H3588\"* strength|strong=\"H5797\"*, Zion|strong=\"H6726\"*." + }, + { + "verseNum": 2, + "text": "Shake|strong=\"H5287\"* yourself|strong=\"H5287\"* from|strong=\"H6965\"* the|strong=\"H6965\"* dust|strong=\"H6083\"*!" + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “You|strong=\"H3588\"* were|strong=\"H3068\"* sold|strong=\"H4376\"* for|strong=\"H3588\"* nothing|strong=\"H3808\"*;" + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 5, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, what|strong=\"H4100\"* do|strong=\"H3068\"* I|strong=\"H3588\"* do|strong=\"H3068\"* here|strong=\"H6311\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3651\"* my|strong=\"H3045\"* people|strong=\"H5971\"* shall|strong=\"H5971\"* know|strong=\"H3045\"* my|strong=\"H3045\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 7, + "text": "How|strong=\"H4100\"* beautiful|strong=\"H2896\"* on|strong=\"H5921\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"* are|strong=\"H4100\"* the|strong=\"H5921\"* feet|strong=\"H7272\"* of|strong=\"H2022\"* him|strong=\"H5921\"* who|strong=\"H2896\"* brings|strong=\"H1319\"* good|strong=\"H2896\"* news|strong=\"H1319\"*," + }, + { + "verseNum": 8, + "text": "Your|strong=\"H3068\"* watchmen|strong=\"H6822\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H3068\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 9, + "text": "Break|strong=\"H6476\"* out|strong=\"H7442\"* into|strong=\"H6476\"* joy|strong=\"H7442\"*!" + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H3068\"* his|strong=\"H3605\"* holy|strong=\"H6944\"* arm|strong=\"H2220\"* bare|strong=\"H2834\"* in|strong=\"H3068\"* the|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 11, + "text": "Depart|strong=\"H5493\"*! Depart|strong=\"H5493\"*! Go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H5493\"* there|strong=\"H8033\"*! Touch|strong=\"H5060\"* no|strong=\"H5375\"* unclean|strong=\"H2931\"* thing|strong=\"H3627\"*!" + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H1980\"* out|strong=\"H3318\"* in|strong=\"H1980\"* haste|strong=\"H2649\"*," + }, + { + "verseNum": 13, + "text": "Behold|strong=\"H2009\"*, my|strong=\"H5375\"* servant|strong=\"H5650\"* will|strong=\"H5650\"* deal|strong=\"H3966\"* wisely|strong=\"H7919\"*." + }, + { + "verseNum": 14, + "text": "Just as|strong=\"H3651\"* many|strong=\"H7227\"* were|strong=\"H1121\"* astonished|strong=\"H8074\"* at|strong=\"H5921\"* you|strong=\"H5921\"*—" + }, + { + "verseNum": 15, + "text": "so|strong=\"H3651\"* he|strong=\"H3588\"* will|strong=\"H1471\"* cleanse+ 52:15 or, sprinkle* many|strong=\"H7227\"* nations|strong=\"H1471\"*." + } + ] + }, + { + "chapterNum": 53, + "verses": [ + { + "verseNum": 1, + "text": "Who|strong=\"H4310\"* has|strong=\"H3068\"* believed our|strong=\"H3068\"* message|strong=\"H8052\"*?" + }, + { + "verseNum": 2, + "text": "For|strong=\"H6440\"* he|strong=\"H3808\"* grew|strong=\"H5927\"* up|strong=\"H5927\"* before|strong=\"H6440\"* him|strong=\"H6440\"* as|strong=\"H5927\"* a|strong=\"H3068\"* tender|strong=\"H3126\"* plant|strong=\"H3126\"*," + }, + { + "verseNum": 3, + "text": "He|strong=\"H4480\"* was|strong=\"H2483\"* despised" + }, + { + "verseNum": 4, + "text": "Surely|strong=\"H5221\"* he|strong=\"H1931\"* has|strong=\"H1931\"* borne|strong=\"H5375\"* our|strong=\"H5375\"* sickness|strong=\"H2483\"*" + }, + { + "verseNum": 5, + "text": "But|strong=\"H1931\"* he|strong=\"H1931\"* was|strong=\"H1931\"* pierced|strong=\"H2490\"* for|strong=\"H5921\"* our|strong=\"H5921\"* transgressions|strong=\"H6588\"*." + }, + { + "verseNum": 6, + "text": "All|strong=\"H3605\"* we|strong=\"H3068\"* like|strong=\"H1870\"* sheep|strong=\"H6629\"* have|strong=\"H3068\"* gone|strong=\"H8582\"* astray|strong=\"H8582\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H1931\"* was|strong=\"H1931\"* oppressed|strong=\"H5065\"*," + }, + { + "verseNum": 8, + "text": "He|strong=\"H3588\"* was|strong=\"H5971\"* taken|strong=\"H3947\"* away|strong=\"H3947\"* by|strong=\"H5971\"* oppression|strong=\"H6115\"* and|strong=\"H4941\"* judgment|strong=\"H4941\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H3808\"* made|strong=\"H6213\"* his|strong=\"H5414\"* grave|strong=\"H6913\"* with|strong=\"H6213\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 10, + "text": "Yet|strong=\"H3068\"* it|strong=\"H7760\"* pleased|strong=\"H2654\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* bruise|strong=\"H1792\"* him|strong=\"H3027\"*." + }, + { + "verseNum": 11, + "text": "After|strong=\"H7200\"* the|strong=\"H7200\"* suffering of|strong=\"H5650\"* his|strong=\"H7200\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H3651\"* will|strong=\"H5315\"* give|strong=\"H5375\"* him|strong=\"H1931\"* a|strong=\"H3068\"* portion|strong=\"H2505\"* with|strong=\"H5315\"* the|strong=\"H5375\"* great|strong=\"H7227\"*." + } + ] + }, + { + "chapterNum": 54, + "verses": [ + { + "verseNum": 1, + "text": "“Sing|strong=\"H7442\"*, barren|strong=\"H6135\"*, you|strong=\"H3588\"* who|strong=\"H3068\"* didn’t give|strong=\"H3205\"* birth|strong=\"H3205\"*!" + }, + { + "verseNum": 2, + "text": "“Enlarge|strong=\"H7337\"* the|strong=\"H2388\"* place|strong=\"H4725\"* of|strong=\"H4725\"* your|strong=\"H5186\"* tent|strong=\"H3489\"*," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1471\"* spread|strong=\"H6555\"* out|strong=\"H3423\"* on|strong=\"H3427\"* the|strong=\"H3588\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H5892\"* on|strong=\"H3427\"* the|strong=\"H3588\"* left|strong=\"H8040\"*;" + }, + { + "verseNum": 4, + "text": "“Don’t be|strong=\"H3808\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* ashamed|strong=\"H3637\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* your|strong=\"H3068\"* Maker|strong=\"H6213\"* is|strong=\"H3068\"* your|strong=\"H3068\"* husband|strong=\"H1166\"*; Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* is|strong=\"H3068\"* his|strong=\"H3605\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* called|strong=\"H7121\"* you|strong=\"H3588\"* as|strong=\"H3068\"* a|strong=\"H3068\"* wife forsaken|strong=\"H5800\"* and|strong=\"H3068\"* grieved|strong=\"H6087\"* in|strong=\"H3068\"* spirit|strong=\"H7307\"*," + }, + { + "verseNum": 7, + "text": "“For|strong=\"H6908\"* a|strong=\"H3068\"* small|strong=\"H6996\"* moment|strong=\"H7281\"* I|strong=\"H7281\"* have|strong=\"H5800\"* forsaken|strong=\"H5800\"* you|strong=\"H5800\"*," + }, + { + "verseNum": 8, + "text": "In|strong=\"H3068\"* overflowing wrath|strong=\"H7110\"* I|strong=\"H7110\"* hid|strong=\"H5641\"* my|strong=\"H3068\"* face|strong=\"H6440\"* from|strong=\"H4480\"* you|strong=\"H6440\"* for|strong=\"H6440\"* a|strong=\"H3068\"* moment|strong=\"H7281\"*," + }, + { + "verseNum": 9, + "text": "“For|strong=\"H3588\"* this|strong=\"H2063\"* is|strong=\"H3651\"* like|strong=\"H3651\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* Noah|strong=\"H5146\"* to|strong=\"H5921\"* me|strong=\"H5921\"*;" + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* mountains|strong=\"H2022\"* may|strong=\"H3068\"* depart|strong=\"H4185\"*," + }, + { + "verseNum": 11, + "text": "“You|strong=\"H3808\"* afflicted|strong=\"H6041\"*, tossed with|strong=\"H6041\"* storms, and|strong=\"H6041\"* not|strong=\"H3808\"* comforted|strong=\"H5162\"*," + }, + { + "verseNum": 12, + "text": "I|strong=\"H7760\"* will|strong=\"H8121\"* make|strong=\"H7760\"* your|strong=\"H3605\"* pinnacles of|strong=\"H1366\"* rubies|strong=\"H3539\"*," + }, + { + "verseNum": 13, + "text": "All|strong=\"H3605\"* your|strong=\"H3068\"* children|strong=\"H1121\"* will|strong=\"H3068\"* be|strong=\"H3068\"* taught|strong=\"H3928\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 14, + "text": "You|strong=\"H3588\"* will|strong=\"H3808\"* be|strong=\"H3808\"* established|strong=\"H3559\"* in|strong=\"H3808\"* righteousness|strong=\"H6666\"*." + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H2005\"*, they|strong=\"H5921\"* may|strong=\"H4310\"* gather|strong=\"H1481\"* together|strong=\"H1481\"*, but|strong=\"H5921\"* not|strong=\"H5307\"* by|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H2005\"* have created|strong=\"H1254\"* the|strong=\"H3318\"* blacksmith|strong=\"H2796\"* who|strong=\"H2796\"* fans the|strong=\"H3318\"* coals|strong=\"H6352\"* into|strong=\"H3318\"* flame," + }, + { + "verseNum": 17, + "text": "No|strong=\"H3808\"* weapon|strong=\"H3627\"* that|strong=\"H3605\"* is|strong=\"H3068\"* formed|strong=\"H3335\"* against|strong=\"H5921\"* you|strong=\"H3605\"* will|strong=\"H3068\"* prevail;" + } + ] + }, + { + "chapterNum": 55, + "verses": [ + { + "verseNum": 1, + "text": "“Hey|strong=\"H1945\"*! Come|strong=\"H3212\"*, everyone|strong=\"H3605\"* who|strong=\"H3605\"* thirsts|strong=\"H6771\"*, to|strong=\"H3212\"* the|strong=\"H3605\"* waters|strong=\"H4325\"*!" + }, + { + "verseNum": 2, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3808\"* spend|strong=\"H8254\"* money|strong=\"H3701\"* for|strong=\"H5315\"* that|strong=\"H8085\"* which|strong=\"H4100\"* is|strong=\"H4100\"* not|strong=\"H3808\"* bread|strong=\"H3899\"*," + }, + { + "verseNum": 3, + "text": "Turn|strong=\"H5186\"* your|strong=\"H5186\"* ear|strong=\"H8085\"*, and|strong=\"H3212\"* come|strong=\"H3212\"* to|strong=\"H3212\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* have|strong=\"H5414\"* given|strong=\"H5414\"* him|strong=\"H5414\"* for|strong=\"H5414\"* a|strong=\"H3068\"* witness|strong=\"H5707\"* to|strong=\"H5414\"* the|strong=\"H5414\"* peoples|strong=\"H3816\"*," + }, + { + "verseNum": 5, + "text": "Behold|strong=\"H2005\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* call|strong=\"H7121\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* that|strong=\"H3588\"* you|strong=\"H3588\"* don’t know|strong=\"H3045\"*;" + }, + { + "verseNum": 6, + "text": "Seek|strong=\"H1875\"* Yahweh|strong=\"H3068\"* while|strong=\"H1961\"* he|strong=\"H3068\"* may|strong=\"H1961\"* be|strong=\"H1961\"* found|strong=\"H4672\"*." + }, + { + "verseNum": 7, + "text": "Let|strong=\"H5800\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"* forsake|strong=\"H5800\"* his|strong=\"H3068\"* way|strong=\"H1870\"*," + }, + { + "verseNum": 8, + "text": "“For|strong=\"H3588\"* my|strong=\"H3068\"* thoughts|strong=\"H4284\"* are|strong=\"H3068\"* not|strong=\"H3808\"* your|strong=\"H3068\"* thoughts|strong=\"H4284\"*," + }, + { + "verseNum": 9, + "text": "“For|strong=\"H3588\"* as|strong=\"H3651\"* the|strong=\"H3588\"* heavens|strong=\"H8064\"* are|strong=\"H8064\"* higher|strong=\"H1361\"* than|strong=\"H3588\"* the|strong=\"H3588\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* as|strong=\"H3588\"* the|strong=\"H3588\"* rain|strong=\"H1653\"* comes|strong=\"H3381\"* down|strong=\"H3381\"* and|strong=\"H7725\"* the|strong=\"H3588\"* snow|strong=\"H7950\"* from|strong=\"H4480\"* the|strong=\"H3588\"* sky|strong=\"H8064\"*," + }, + { + "verseNum": 11, + "text": "so|strong=\"H3651\"* is|strong=\"H1697\"* my|strong=\"H7971\"* word|strong=\"H1697\"* that|strong=\"H3588\"* goes|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1697\"* my|strong=\"H7971\"* mouth|strong=\"H6310\"*:" + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H7704\"* go|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H6440\"* joy|strong=\"H8057\"*," + }, + { + "verseNum": 13, + "text": "Instead|strong=\"H8478\"* of|strong=\"H3068\"* the|strong=\"H3068\"* thorn|strong=\"H5285\"* the|strong=\"H3068\"* cypress|strong=\"H1265\"* tree|strong=\"H1265\"* will|strong=\"H3068\"* come|strong=\"H5927\"* up|strong=\"H5927\"*;" + } + ] + }, + { + "chapterNum": 56, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 2, + "text": "Blessed is|strong=\"H3027\"* the|strong=\"H3605\"* man|strong=\"H1121\"* who|strong=\"H3605\"* does|strong=\"H6213\"* this|strong=\"H2063\"*," + }, + { + "verseNum": 3, + "text": "Let no foreigner|strong=\"H1121\"* who|strong=\"H5971\"* has|strong=\"H3068\"* joined|strong=\"H3867\"* himself|strong=\"H3068\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* speak, saying," + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “To|strong=\"H3068\"* the|strong=\"H3588\"* eunuchs|strong=\"H5631\"* who|strong=\"H3068\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* Sabbaths|strong=\"H7676\"*," + }, + { + "verseNum": 5, + "text": "I|strong=\"H5414\"* will|strong=\"H1121\"* give|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H1004\"* my|strong=\"H5414\"* house|strong=\"H1004\"* and|strong=\"H1121\"* within|strong=\"H1004\"* my|strong=\"H5414\"* walls|strong=\"H2346\"* a|strong=\"H3068\"* memorial|strong=\"H3027\"* and|strong=\"H1121\"* a|strong=\"H3068\"* name|strong=\"H8034\"* better|strong=\"H2896\"* than|strong=\"H2896\"* of|strong=\"H1121\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* of|strong=\"H1121\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 6, + "text": "Also|strong=\"H3068\"* the|strong=\"H3605\"* foreigners|strong=\"H1121\"* who|strong=\"H3605\"* join|strong=\"H3867\"* themselves|strong=\"H2388\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*" + }, + { + "verseNum": 7, + "text": "I|strong=\"H3588\"* will|strong=\"H5971\"* bring|strong=\"H7121\"* these|strong=\"H7121\"* to|strong=\"H5921\"* my|strong=\"H3605\"* holy|strong=\"H6944\"* mountain|strong=\"H2022\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3478\"* gathers|strong=\"H6908\"* the|strong=\"H5002\"* outcasts|strong=\"H1760\"* of|strong=\"H5921\"* Israel|strong=\"H3478\"*, says|strong=\"H5002\"*," + }, + { + "verseNum": 9, + "text": "All|strong=\"H3605\"* you|strong=\"H3605\"* animals|strong=\"H2416\"* of|strong=\"H7704\"* the|strong=\"H3605\"* field|strong=\"H7704\"*," + }, + { + "verseNum": 10, + "text": "His|strong=\"H3605\"* watchmen|strong=\"H6822\"* are|strong=\"H3045\"* blind|strong=\"H5787\"*." + }, + { + "verseNum": 11, + "text": "Yes, the|strong=\"H3605\"* dogs|strong=\"H3611\"* are|strong=\"H1992\"* greedy|strong=\"H5315\"*." + }, + { + "verseNum": 12, + "text": "“Come|strong=\"H1961\"*,” they|strong=\"H3117\"* say, “I|strong=\"H3117\"* will|strong=\"H1961\"* get|strong=\"H3947\"* wine|strong=\"H3196\"*," + } + ] + }, + { + "chapterNum": 57, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H6440\"* righteous|strong=\"H6662\"* perish," + }, + { + "verseNum": 2, + "text": "He|strong=\"H5921\"* enters into|strong=\"H1980\"* peace|strong=\"H7965\"*." + }, + { + "verseNum": 3, + "text": "“But|strong=\"H7126\"* draw|strong=\"H7126\"* near|strong=\"H7126\"* here|strong=\"H2008\"*, you|strong=\"H7126\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* sorceress|strong=\"H6049\"*," + }, + { + "verseNum": 4, + "text": "Whom|strong=\"H4310\"* do|strong=\"H8267\"* you|strong=\"H5921\"* mock?" + }, + { + "verseNum": 5, + "text": "you|strong=\"H3605\"* who|strong=\"H3605\"* inflame|strong=\"H2552\"* yourselves|strong=\"H3605\"* among|strong=\"H8478\"* the|strong=\"H3605\"* oaks," + }, + { + "verseNum": 6, + "text": "Among|strong=\"H5921\"* the|strong=\"H5921\"* smooth|strong=\"H2511\"* stones of|strong=\"H5921\"* the|strong=\"H5921\"* valley|strong=\"H5158\"* is|strong=\"H1571\"* your|strong=\"H5921\"* portion|strong=\"H2506\"*." + }, + { + "verseNum": 7, + "text": "On|strong=\"H5921\"* a|strong=\"H3068\"* high|strong=\"H1364\"* and|strong=\"H8033\"* lofty|strong=\"H1364\"* mountain|strong=\"H2022\"* you|strong=\"H5921\"* have|strong=\"H1571\"* set|strong=\"H7760\"* your|strong=\"H5921\"* bed|strong=\"H4904\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H3588\"* have|strong=\"H3027\"* set|strong=\"H7760\"* up|strong=\"H5927\"* your|strong=\"H7760\"* memorial|strong=\"H2146\"* behind the|strong=\"H3588\"* doors|strong=\"H1817\"* and|strong=\"H3027\"* the|strong=\"H3588\"* posts|strong=\"H4201\"*," + }, + { + "verseNum": 9, + "text": "You|strong=\"H7971\"* went|strong=\"H4428\"* to|strong=\"H5704\"* the|strong=\"H5704\"* king|strong=\"H4428\"* with|strong=\"H4428\"* oil|strong=\"H8081\"*," + }, + { + "verseNum": 10, + "text": "You|strong=\"H5921\"* were|strong=\"H3027\"* wearied|strong=\"H3021\"* with|strong=\"H5921\"* the|strong=\"H5921\"* length|strong=\"H5921\"* of|strong=\"H3027\"* your|strong=\"H5921\"* ways|strong=\"H1870\"*;" + }, + { + "verseNum": 11, + "text": "“Whom|strong=\"H4310\"* have|strong=\"H3588\"* you|strong=\"H3588\"* dreaded and|strong=\"H5769\"* feared|strong=\"H3372\"*," + }, + { + "verseNum": 12, + "text": "I|strong=\"H3808\"* will|strong=\"H3808\"* declare|strong=\"H5046\"* your|strong=\"H3808\"* righteousness|strong=\"H6666\"*;" + }, + { + "verseNum": 13, + "text": "When|strong=\"H5375\"* you|strong=\"H3605\"* cry|strong=\"H2199\"*," + }, + { + "verseNum": 14, + "text": "He|strong=\"H5971\"* will|strong=\"H5971\"* say, “Build|strong=\"H5549\"* up|strong=\"H7311\"*, build|strong=\"H5549\"* up|strong=\"H7311\"*, prepare|strong=\"H6437\"* the|strong=\"H1870\"* way|strong=\"H1870\"*!" + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* high|strong=\"H4791\"* and|strong=\"H3820\"* lofty|strong=\"H7311\"* One|strong=\"H6918\"* who|strong=\"H3588\"* inhabits eternity|strong=\"H5703\"*," + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H7307\"* not|strong=\"H3808\"* contend|strong=\"H7378\"* forever|strong=\"H5769\"*, neither|strong=\"H3808\"* will|strong=\"H7307\"* I|strong=\"H3588\"* always|strong=\"H5769\"* be|strong=\"H3808\"* angry|strong=\"H7107\"*;" + }, + { + "verseNum": 17, + "text": "I|strong=\"H3212\"* was|strong=\"H3820\"* angry|strong=\"H7107\"* because|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H5221\"* iniquity|strong=\"H5771\"* of|strong=\"H1870\"* his|strong=\"H5221\"* covetousness|strong=\"H1215\"* and|strong=\"H3212\"* struck|strong=\"H5221\"* him|strong=\"H5221\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H7200\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* his|strong=\"H7200\"* ways|strong=\"H1870\"*, and|strong=\"H1870\"* will|strong=\"H7999\"* heal|strong=\"H7495\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"H7350\"* create|strong=\"H1254\"* the|strong=\"H3068\"* fruit|strong=\"H5108\"* of|strong=\"H3068\"* the|strong=\"H3068\"* lips|strong=\"H8193\"*:" + }, + { + "verseNum": 20, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"* are|strong=\"H7563\"* like|strong=\"H3808\"* the|strong=\"H3588\"* troubled|strong=\"H1644\"* sea|strong=\"H3220\"*;" + }, + { + "verseNum": 21, + "text": "“There|strong=\"H7965\"* is|strong=\"H7563\"* no|strong=\"H7563\"* peace|strong=\"H7965\"*”, says my God," + } + ] + }, + { + "chapterNum": 58, + "verses": [ + { + "verseNum": 1, + "text": "“Cry|strong=\"H7121\"* aloud|strong=\"H7311\"*! Don’t spare|strong=\"H2820\"*!" + }, + { + "verseNum": 2, + "text": "Yet|strong=\"H3808\"* they|strong=\"H3117\"* seek|strong=\"H1875\"* me|strong=\"H6213\"* daily|strong=\"H3117\"*," + }, + { + "verseNum": 3, + "text": "‘Why|strong=\"H4100\"* have|strong=\"H3045\"* we|strong=\"H3068\"* fasted|strong=\"H6684\"*,’ they|strong=\"H3117\"* say, ‘and|strong=\"H3117\"* you|strong=\"H3605\"* don’t see|strong=\"H7200\"*?" + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2005\"*, you|strong=\"H3117\"* fast|strong=\"H6684\"* for|strong=\"H3117\"* strife|strong=\"H7379\"* and|strong=\"H3117\"* contention|strong=\"H7379\"*," + }, + { + "verseNum": 5, + "text": "Is|strong=\"H3068\"* this|strong=\"H2088\"* the|strong=\"H3068\"* fast|strong=\"H6685\"* that|strong=\"H3117\"* I|strong=\"H3117\"* have|strong=\"H1961\"* chosen?" + }, + { + "verseNum": 6, + "text": "“Isn’t this|strong=\"H2088\"* the|strong=\"H3605\"* fast|strong=\"H6685\"* that|strong=\"H3605\"* I|strong=\"H2088\"* have|strong=\"H3605\"* chosen:" + }, + { + "verseNum": 7, + "text": "Isn’t it|strong=\"H3588\"* to|strong=\"H1004\"* distribute your|strong=\"H7200\"* bread|strong=\"H3899\"* to|strong=\"H1004\"* the|strong=\"H7200\"* hungry|strong=\"H7457\"*," + }, + { + "verseNum": 8, + "text": "Then|strong=\"H1980\"* your|strong=\"H3068\"* light|strong=\"H7837\"* will|strong=\"H3068\"* break|strong=\"H1234\"* out|strong=\"H1980\"* as|strong=\"H3068\"* the|strong=\"H6440\"* morning|strong=\"H7837\"*," + }, + { + "verseNum": 9, + "text": "Then|strong=\"H6030\"* you|strong=\"H7971\"* will|strong=\"H3068\"* call|strong=\"H7121\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* answer|strong=\"H6030\"*." + }, + { + "verseNum": 10, + "text": "and|strong=\"H5315\"* if you|strong=\"H5315\"* pour out|strong=\"H6329\"* your|strong=\"H6031\"* soul|strong=\"H5315\"* to|strong=\"H5315\"* the|strong=\"H7646\"* hungry|strong=\"H7457\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* guide|strong=\"H5148\"* you|strong=\"H3808\"* continually|strong=\"H8548\"*," + }, + { + "verseNum": 12, + "text": "Those|strong=\"H4480\"* who|strong=\"H3427\"* will|strong=\"H7725\"* be|strong=\"H5769\"* of|strong=\"H3427\"* you|strong=\"H7725\"* will|strong=\"H7725\"* build|strong=\"H1129\"* the|strong=\"H4480\"* old|strong=\"H5769\"* waste|strong=\"H2723\"* places|strong=\"H2723\"*." + }, + { + "verseNum": 13, + "text": "“If you|strong=\"H3117\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* your|strong=\"H3068\"* foot|strong=\"H7272\"* from|strong=\"H7725\"* the|strong=\"H6213\"* Sabbath|strong=\"H7676\"*," + }, + { + "verseNum": 14, + "text": "then|strong=\"H1696\"* you|strong=\"H3588\"* will|strong=\"H3068\"* delight|strong=\"H6026\"* yourself|strong=\"H5921\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 59, + "verses": [ + { + "verseNum": 1, + "text": "Behold|strong=\"H2005\"*, Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* is|strong=\"H3068\"* not|strong=\"H3808\"* shortened|strong=\"H7114\"*, that|strong=\"H8085\"* it|strong=\"H3808\"* can|strong=\"H3808\"*’t save|strong=\"H3467\"*;" + }, + { + "verseNum": 2, + "text": "But|strong=\"H3588\"* your|strong=\"H6440\"* iniquities|strong=\"H5771\"* have|strong=\"H1961\"* separated you|strong=\"H3588\"* and|strong=\"H6440\"* your|strong=\"H6440\"* God," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* your|strong=\"H3588\"* hands|strong=\"H3709\"* are|strong=\"H8193\"* defiled|strong=\"H1351\"* with|strong=\"H1696\"* blood|strong=\"H1818\"*," + }, + { + "verseNum": 4, + "text": "No|strong=\"H1696\"* one sues|strong=\"H7121\"* in|strong=\"H5921\"* righteousness|strong=\"H6664\"*," + }, + { + "verseNum": 5, + "text": "They hatch|strong=\"H1234\"* adders|strong=\"H6848\"*’ eggs|strong=\"H1000\"*" + }, + { + "verseNum": 6, + "text": "Their|strong=\"H1961\"* webs|strong=\"H6980\"* won’t become|strong=\"H1961\"* garments." + }, + { + "verseNum": 7, + "text": "Their|strong=\"H8210\"* feet|strong=\"H7272\"* run|strong=\"H7323\"* to|strong=\"H7323\"* evil|strong=\"H7451\"*," + }, + { + "verseNum": 8, + "text": "They|strong=\"H1992\"* don’t know|strong=\"H3045\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H1870\"* peace|strong=\"H7965\"*;" + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H3651\"* justice|strong=\"H4941\"* is|strong=\"H2009\"* far|strong=\"H7368\"* from|strong=\"H4480\"* us|strong=\"H5921\"*," + }, + { + "verseNum": 10, + "text": "We|strong=\"H4191\"* grope|strong=\"H1659\"* for|strong=\"H4191\"* the|strong=\"H4191\"* wall|strong=\"H7023\"* like|strong=\"H4191\"* the|strong=\"H4191\"* blind|strong=\"H5787\"*." + }, + { + "verseNum": 11, + "text": "We|strong=\"H3605\"* all|strong=\"H3605\"* roar|strong=\"H1993\"* like|strong=\"H1993\"* bears|strong=\"H1677\"*" + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* our|strong=\"H3588\"* transgressions|strong=\"H6588\"* are|strong=\"H6588\"* multiplied|strong=\"H7235\"* before|strong=\"H5048\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 13, + "text": "transgressing|strong=\"H6586\"* and|strong=\"H3068\"* denying|strong=\"H3584\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 14, + "text": "Justice|strong=\"H4941\"* is|strong=\"H4941\"* turned away|strong=\"H5253\"* backward," + }, + { + "verseNum": 15, + "text": "Yes|strong=\"H3588\"*, truth is|strong=\"H3068\"* lacking|strong=\"H5737\"*;" + }, + { + "verseNum": 16, + "text": "He|strong=\"H1931\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* there|strong=\"H7200\"* was|strong=\"H1931\"* no|strong=\"H7200\"* man|strong=\"H7200\"*," + }, + { + "verseNum": 17, + "text": "He|strong=\"H3444\"* put|strong=\"H3847\"* on|strong=\"H3847\"* righteousness|strong=\"H6666\"* as a|strong=\"H3068\"* breastplate|strong=\"H8302\"*," + }, + { + "verseNum": 18, + "text": "According|strong=\"H5921\"* to|strong=\"H5921\"* their|strong=\"H5921\"* deeds|strong=\"H1578\"*," + }, + { + "verseNum": 19, + "text": "So|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"* from|strong=\"H5127\"* the|strong=\"H3588\"* west|strong=\"H4628\"*," + }, + { + "verseNum": 20, + "text": "“A|strong=\"H3068\"* Redeemer|strong=\"H1350\"* will|strong=\"H3068\"* come|strong=\"H7725\"* to|strong=\"H7725\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 21, + "text": "“As|strong=\"H5704\"* for|strong=\"H5704\"* me|strong=\"H5921\"*, this|strong=\"H2063\"* is|strong=\"H3068\"* my|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* them|strong=\"H5921\"*,” says|strong=\"H1697\"* Yahweh|strong=\"H3068\"*. “My|strong=\"H3068\"* Spirit|strong=\"H7307\"* who|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H3068\"* my|strong=\"H3068\"* words|strong=\"H1697\"* which|strong=\"H3068\"* I|strong=\"H5704\"* have|strong=\"H3068\"* put|strong=\"H7760\"* in|strong=\"H5921\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* depart|strong=\"H4185\"* out|strong=\"H5921\"* of|strong=\"H3068\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"*, nor|strong=\"H3808\"* out|strong=\"H5921\"* of|strong=\"H3068\"* the|strong=\"H5921\"* mouth|strong=\"H6310\"* of|strong=\"H3068\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*, nor|strong=\"H3808\"* out|strong=\"H5921\"* of|strong=\"H3068\"* the|strong=\"H5921\"* mouth|strong=\"H6310\"* of|strong=\"H3068\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*’s offspring|strong=\"H2233\"*,” says|strong=\"H1697\"* Yahweh|strong=\"H3068\"*, “from|strong=\"H5921\"* now|strong=\"H6258\"* on|strong=\"H5921\"* and|strong=\"H3068\"* forever|strong=\"H5769\"*.”" + } + ] + }, + { + "chapterNum": 60, + "verses": [ + { + "verseNum": 1, + "text": "“Arise|strong=\"H6965\"*, shine|strong=\"H2224\"*; for|strong=\"H3588\"* your|strong=\"H3068\"* light has|strong=\"H3068\"* come|strong=\"H6965\"*," + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* behold|strong=\"H2009\"*, darkness|strong=\"H2822\"* will|strong=\"H3068\"* cover|strong=\"H3680\"* the|strong=\"H5921\"* earth," + }, + { + "verseNum": 3, + "text": "Nations|strong=\"H1471\"* will|strong=\"H1471\"* come|strong=\"H1980\"* to|strong=\"H1980\"* your|strong=\"H4428\"* light|strong=\"H5051\"*," + }, + { + "verseNum": 4, + "text": "“Lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H3605\"* eyes|strong=\"H5869\"* all|strong=\"H3605\"* around|strong=\"H5439\"*, and|strong=\"H1121\"* see|strong=\"H7200\"*:" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H1471\"* see|strong=\"H7200\"* and|strong=\"H1471\"* be|strong=\"H1471\"* radiant|strong=\"H5102\"*," + }, + { + "verseNum": 6, + "text": "A|strong=\"H3068\"* multitude|strong=\"H8229\"* of|strong=\"H3068\"* camels|strong=\"H1581\"* will|strong=\"H3068\"* cover|strong=\"H3680\"* you|strong=\"H3605\"*," + }, + { + "verseNum": 7, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"* of|strong=\"H1004\"* Kedar|strong=\"H6938\"* will|strong=\"H7522\"* be|strong=\"H1004\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* to|strong=\"H5927\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 8, + "text": "“Who|strong=\"H4310\"* are|strong=\"H4310\"* these who|strong=\"H4310\"* fly|strong=\"H5774\"* as|strong=\"H5645\"* a|strong=\"H3068\"* cloud|strong=\"H5645\"*," + }, + { + "verseNum": 9, + "text": "Surely|strong=\"H3588\"* the|strong=\"H3588\"* islands will|strong=\"H3068\"* wait|strong=\"H6960\"* for|strong=\"H3588\"* me|strong=\"H3588\"*," + }, + { + "verseNum": 10, + "text": "“Foreigners|strong=\"H1121\"* will|strong=\"H4428\"* build|strong=\"H1129\"* up|strong=\"H1129\"* your|strong=\"H3588\"* walls|strong=\"H2346\"*," + }, + { + "verseNum": 11, + "text": "Your|strong=\"H3808\"* gates|strong=\"H8179\"* also|strong=\"H4428\"* shall|strong=\"H1471\"* be|strong=\"H3808\"* open|strong=\"H6605\"* continually|strong=\"H8548\"*; they|strong=\"H3808\"* shall|strong=\"H1471\"* not|strong=\"H3808\"* be|strong=\"H3808\"* shut|strong=\"H5462\"* day|strong=\"H3119\"* nor|strong=\"H3808\"* night|strong=\"H3915\"*, that|strong=\"H1471\"* men|strong=\"H2428\"* may|strong=\"H1471\"* bring to|strong=\"H4428\"* you|strong=\"H3808\"* the|strong=\"H5462\"* wealth|strong=\"H2428\"* of|strong=\"H4428\"* the|strong=\"H5462\"* nations|strong=\"H1471\"*, and|strong=\"H4428\"* their|strong=\"H5462\"* kings|strong=\"H4428\"* led|strong=\"H5090\"* captive." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* that|strong=\"H3588\"* nation|strong=\"H1471\"* and|strong=\"H1471\"* kingdom|strong=\"H4467\"* that|strong=\"H3588\"* will|strong=\"H1471\"* not|strong=\"H3808\"* serve|strong=\"H5647\"* you|strong=\"H3588\"* shall|strong=\"H1471\"* perish; yes|strong=\"H3588\"*, those|strong=\"H3588\"* nations|strong=\"H1471\"* shall|strong=\"H1471\"* be|strong=\"H3808\"* utterly|strong=\"H2717\"* wasted|strong=\"H2717\"*." + }, + { + "verseNum": 13, + "text": "“The|strong=\"H4725\"* glory|strong=\"H3519\"* of|strong=\"H4725\"* Lebanon|strong=\"H3844\"* shall|strong=\"H7272\"* come to|strong=\"H4725\"* you|strong=\"H3513\"*, the|strong=\"H4725\"* cypress|strong=\"H1265\"* tree|strong=\"H1265\"*, the|strong=\"H4725\"* pine|strong=\"H8410\"*, and|strong=\"H4725\"* the|strong=\"H4725\"* box|strong=\"H8410\"* tree|strong=\"H1265\"* together|strong=\"H3162\"*, to|strong=\"H4725\"* beautify|strong=\"H6286\"* the|strong=\"H4725\"* place|strong=\"H4725\"* of|strong=\"H4725\"* my|strong=\"H6286\"* sanctuary|strong=\"H4720\"*; and|strong=\"H4725\"* I|strong=\"H3513\"* will|strong=\"H7272\"* make|strong=\"H3513\"* the|strong=\"H4725\"* place|strong=\"H4725\"* of|strong=\"H4725\"* my|strong=\"H6286\"* feet|strong=\"H7272\"* glorious|strong=\"H3513\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* those|strong=\"H3605\"* who|strong=\"H3605\"* afflicted|strong=\"H6031\"* you|strong=\"H3605\"* will|strong=\"H3068\"* come|strong=\"H1980\"* bowing|strong=\"H7812\"* to|strong=\"H1980\"* you|strong=\"H3605\"*;" + }, + { + "verseNum": 15, + "text": "“Whereas|strong=\"H8478\"* you|strong=\"H7760\"* have|strong=\"H1961\"* been|strong=\"H1961\"* forsaken|strong=\"H5800\"* and|strong=\"H5769\"* hated|strong=\"H8130\"*," + }, + { + "verseNum": 16, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* also|strong=\"H3068\"* drink the|strong=\"H3588\"* milk|strong=\"H2461\"* of|strong=\"H4428\"* the|strong=\"H3588\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 17, + "text": "For|strong=\"H8478\"* bronze|strong=\"H5178\"* I|strong=\"H7760\"* will|strong=\"H6666\"* bring|strong=\"H7760\"* gold|strong=\"H2091\"*;" + }, + { + "verseNum": 18, + "text": "Violence|strong=\"H2555\"* shall|strong=\"H1366\"* no|strong=\"H3808\"* more|strong=\"H5750\"* be|strong=\"H3808\"* heard|strong=\"H8085\"* in|strong=\"H8085\"* your|strong=\"H8085\"* land|strong=\"H1366\"*," + }, + { + "verseNum": 19, + "text": "The|strong=\"H3068\"* sun|strong=\"H8121\"* will|strong=\"H3068\"* be|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* your|strong=\"H3068\"* light|strong=\"H5051\"* by|strong=\"H3068\"* day|strong=\"H3119\"*," + }, + { + "verseNum": 20, + "text": "Your|strong=\"H3068\"* sun|strong=\"H8121\"* will|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H1961\"* down|strong=\"H3588\"* any|strong=\"H5750\"* more|strong=\"H5750\"*," + }, + { + "verseNum": 21, + "text": "Then|strong=\"H3605\"* your|strong=\"H3605\"* people|strong=\"H5971\"* will|strong=\"H5971\"* all|strong=\"H3605\"* be|strong=\"H3027\"* righteous|strong=\"H6662\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3068\"* little|strong=\"H6996\"* one|strong=\"H6996\"* will|strong=\"H3068\"* become|strong=\"H1961\"* a|strong=\"H3068\"* thousand," + } + ] + }, + { + "chapterNum": 61, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5921\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* is|strong=\"H3068\"* on|strong=\"H5921\"* me|strong=\"H7971\"*," + }, + { + "verseNum": 2, + "text": "to|strong=\"H3068\"* proclaim|strong=\"H7121\"* the|strong=\"H3605\"* year|strong=\"H8141\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s favor|strong=\"H7522\"*" + }, + { + "verseNum": 3, + "text": "to|strong=\"H3068\"* provide|strong=\"H5414\"* for|strong=\"H7121\"* those who|strong=\"H3068\"* mourn in|strong=\"H3068\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 4, + "text": "They|strong=\"H5892\"* will|strong=\"H5892\"* rebuild|strong=\"H1129\"* the|strong=\"H1129\"* old|strong=\"H5769\"* ruins|strong=\"H2723\"*." + }, + { + "verseNum": 5, + "text": "Strangers|strong=\"H2114\"* will|strong=\"H1121\"* stand|strong=\"H5975\"* and|strong=\"H1121\"* feed|strong=\"H7462\"* your|strong=\"H7462\"* flocks|strong=\"H6629\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"H3068\"* you|strong=\"H7121\"* will|strong=\"H3068\"* be|strong=\"H3068\"* called|strong=\"H7121\"* Yahweh|strong=\"H3068\"*’s priests|strong=\"H3548\"*." + }, + { + "verseNum": 7, + "text": "Instead|strong=\"H8478\"* of|strong=\"H8478\"* your|strong=\"H1961\"* shame|strong=\"H1322\"* you|strong=\"H3651\"* will|strong=\"H1961\"* have|strong=\"H1961\"* double|strong=\"H4932\"*." + }, + { + "verseNum": 8, + "text": "“For|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, love justice|strong=\"H4941\"*." + }, + { + "verseNum": 9, + "text": "Their|strong=\"H3605\"* offspring|strong=\"H2233\"* will|strong=\"H3068\"* be|strong=\"H3068\"* known|strong=\"H3045\"* among|strong=\"H8432\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 10, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* greatly|strong=\"H7797\"* rejoice|strong=\"H1523\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* as|strong=\"H3651\"* the|strong=\"H3605\"* earth produces|strong=\"H3318\"* its|strong=\"H3605\"* bud|strong=\"H6780\"*," + } + ] + }, + { + "chapterNum": 62, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"H5704\"* Zion|strong=\"H6726\"*’s sake|strong=\"H4616\"* I|strong=\"H5704\"* will|strong=\"H3389\"* not|strong=\"H3808\"* hold my|strong=\"H3318\"* peace|strong=\"H2814\"*," + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* see|strong=\"H7200\"* your|strong=\"H3068\"* righteousness|strong=\"H6664\"*," + }, + { + "verseNum": 3, + "text": "You|strong=\"H3027\"* will|strong=\"H3068\"* also|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* crown|strong=\"H5850\"* of|strong=\"H3068\"* beauty|strong=\"H8597\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"*," + }, + { + "verseNum": 4, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* called|strong=\"H7121\"* Forsaken|strong=\"H5800\"* any|strong=\"H5750\"* more|strong=\"H5750\"*," + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* as|strong=\"H3588\"* a|strong=\"H3068\"* young|strong=\"H1121\"* man|strong=\"H1121\"* marries|strong=\"H1166\"* a|strong=\"H3068\"* virgin|strong=\"H1330\"*," + }, + { + "verseNum": 6, + "text": "I|strong=\"H3117\"* have|strong=\"H3068\"* set|strong=\"H6485\"* watchmen|strong=\"H8104\"* on|strong=\"H5921\"* your|strong=\"H3068\"* walls|strong=\"H2346\"*, Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 7, + "text": "and|strong=\"H3389\"* give|strong=\"H5414\"* him|strong=\"H5414\"* no|strong=\"H5414\"* rest|strong=\"H1824\"* until|strong=\"H5704\"* he|strong=\"H5704\"* establishes|strong=\"H3559\"*," + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"* by|strong=\"H7650\"* his|strong=\"H5414\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*," + }, + { + "verseNum": 9, + "text": "but|strong=\"H3588\"* those|strong=\"H3588\"* who|strong=\"H3068\"* have|strong=\"H3068\"* harvested it|strong=\"H3588\"* will|strong=\"H3068\"* eat it|strong=\"H3588\"*, and|strong=\"H3068\"* praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "Go|strong=\"H5674\"* through|strong=\"H5674\"*, go|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5921\"* gates|strong=\"H8179\"*!" + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* proclaimed|strong=\"H8085\"* to|strong=\"H3068\"* the|strong=\"H6440\"* end|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H6440\"* earth:" + }, + { + "verseNum": 12, + "text": "They|strong=\"H1992\"* will|strong=\"H3068\"* call|strong=\"H7121\"* them|strong=\"H1992\"* “The|strong=\"H3068\"* Holy|strong=\"H6944\"* People|strong=\"H5971\"*," + } + ] + }, + { + "chapterNum": 63, + "verses": [ + { + "verseNum": 1, + "text": "Who|strong=\"H4310\"* is|strong=\"H2088\"* this|strong=\"H2088\"* who|strong=\"H4310\"* comes|strong=\"H7227\"* from|strong=\"H3581\"* Edom," + }, + { + "verseNum": 2, + "text": "Why|strong=\"H4069\"* is|strong=\"H3830\"* your clothing|strong=\"H3830\"* red," + }, + { + "verseNum": 3, + "text": "“I|strong=\"H5921\"* have|strong=\"H5971\"* trodden|strong=\"H1869\"* the|strong=\"H3605\"* wine|strong=\"H6333\"* press|strong=\"H6333\"* alone." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* day|strong=\"H3117\"* of|strong=\"H3117\"* vengeance|strong=\"H5359\"* was|strong=\"H3820\"* in|strong=\"H8141\"* my|strong=\"H3588\"* heart|strong=\"H3820\"*," + }, + { + "verseNum": 5, + "text": "I looked|strong=\"H5027\"*, and|strong=\"H8074\"* there was|strong=\"H1931\"* no one|strong=\"H1931\"* to|strong=\"H2534\"* help|strong=\"H5826\"*;" + }, + { + "verseNum": 6, + "text": "I|strong=\"H5971\"* trod down|strong=\"H3381\"* the|strong=\"H3381\"* peoples|strong=\"H5971\"* in|strong=\"H5971\"* my|strong=\"H3381\"* anger|strong=\"H2534\"*" + }, + { + "verseNum": 7, + "text": "I|strong=\"H5921\"* will|strong=\"H3068\"* tell|strong=\"H3605\"* of|strong=\"H1004\"* the|strong=\"H3605\"* loving kindnesses|strong=\"H2617\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*" + }, + { + "verseNum": 8, + "text": "For|strong=\"H1121\"* he|strong=\"H3808\"* said, “Surely|strong=\"H1961\"*, they|strong=\"H1992\"* are|strong=\"H1992\"* my|strong=\"H1961\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 9, + "text": "In|strong=\"H3117\"* all|strong=\"H3605\"* their|strong=\"H3605\"* affliction|strong=\"H6869\"* he|strong=\"H1931\"* was|strong=\"H1931\"* afflicted|strong=\"H6862\"*," + }, + { + "verseNum": 10, + "text": "But|strong=\"H1992\"* they|strong=\"H1992\"* rebelled|strong=\"H4784\"*" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H4872\"* he|strong=\"H3117\"* remembered|strong=\"H2142\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* old|strong=\"H5769\"*," + }, + { + "verseNum": 12, + "text": "Who|strong=\"H6213\"* caused|strong=\"H6213\"* his|strong=\"H6440\"* glorious|strong=\"H8597\"* arm|strong=\"H2220\"* to|strong=\"H3212\"* be|strong=\"H5769\"* at|strong=\"H6213\"* Moses|strong=\"H4872\"*’ right|strong=\"H3225\"* hand|strong=\"H3225\"*?" + }, + { + "verseNum": 13, + "text": "Who|strong=\"H3808\"* led|strong=\"H3212\"* them through|strong=\"H3212\"* the|strong=\"H3808\"* depths|strong=\"H8415\"*," + }, + { + "verseNum": 14, + "text": "As|strong=\"H6213\"* the|strong=\"H6213\"* livestock that|strong=\"H5971\"* go|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H6213\"* valley|strong=\"H1237\"*," + }, + { + "verseNum": 15, + "text": "Look|strong=\"H7200\"* down|strong=\"H5027\"* from|strong=\"H5027\"* heaven|strong=\"H8064\"*," + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3478\"* our|strong=\"H3068\"* Father," + }, + { + "verseNum": 17, + "text": "O|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, why|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H7725\"* make|strong=\"H7725\"* us|strong=\"H7725\"* wander|strong=\"H8582\"* from|strong=\"H7725\"* your|strong=\"H3068\"* ways|strong=\"H1870\"*," + }, + { + "verseNum": 18, + "text": "Your|strong=\"H5971\"* holy|strong=\"H6944\"* people|strong=\"H5971\"* possessed|strong=\"H3423\"* it|strong=\"H3423\"* but|strong=\"H5971\"* a|strong=\"H3068\"* little|strong=\"H4705\"* while|strong=\"H4705\"*." + }, + { + "verseNum": 19, + "text": "We|strong=\"H8034\"* have|strong=\"H1961\"* become|strong=\"H1961\"* like|strong=\"H1961\"* those|strong=\"H5921\"* over|strong=\"H5921\"* whom|strong=\"H6440\"* you|strong=\"H6440\"* never|strong=\"H3808\"* ruled|strong=\"H4910\"*," + } + ] + }, + { + "chapterNum": 64, + "verses": [ + { + "verseNum": 1, + "text": "Oh that|strong=\"H3045\"* you|strong=\"H6440\"* would|strong=\"H6862\"* tear the|strong=\"H6440\"* heavens," + }, + { + "verseNum": 2, + "text": "as|strong=\"H6213\"* when|strong=\"H6213\"* fire kindles the|strong=\"H6440\"* brushwood," + }, + { + "verseNum": 3, + "text": "When|strong=\"H7200\"* you|strong=\"H6213\"* did|strong=\"H6213\"* awesome things|strong=\"H3808\"* which|strong=\"H5869\"* we|strong=\"H3068\"* didn’t look|strong=\"H7200\"* for|strong=\"H6213\"*," + }, + { + "verseNum": 4, + "text": "For|strong=\"H6213\"* from|strong=\"H2398\"* of|strong=\"H1870\"* old|strong=\"H5769\"* men|strong=\"H6213\"* have not|strong=\"H6213\"* heard," + }, + { + "verseNum": 5, + "text": "You|strong=\"H3605\"* meet him|strong=\"H3605\"* who|strong=\"H3605\"* rejoices and|strong=\"H6666\"* does righteousness|strong=\"H6666\"*," + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3027\"* all|strong=\"H4480\"* become|strong=\"H7121\"* like|strong=\"H6440\"* one|strong=\"H4480\"* who|strong=\"H3588\"* is|strong=\"H8034\"* unclean," + }, + { + "verseNum": 7, + "text": "There|strong=\"H3605\"* is|strong=\"H3068\"* no|strong=\"H3605\"* one|strong=\"H3605\"* who|strong=\"H3605\"* calls on|strong=\"H3027\"* your|strong=\"H3068\"* name," + }, + { + "verseNum": 8, + "text": "But|strong=\"H5971\"* now|strong=\"H4994\"*, Yahweh|strong=\"H3068\"*, you|strong=\"H3605\"* are|strong=\"H5971\"* our|strong=\"H3068\"* Father." + }, + { + "verseNum": 9, + "text": "Don’t be|strong=\"H1961\"* furious, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "Your|strong=\"H3605\"* holy|strong=\"H6944\"* cities have|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* wilderness." + }, + { + "verseNum": 11, + "text": "Our|strong=\"H3068\"* holy and|strong=\"H3068\"* our|strong=\"H3068\"* beautiful house where|strong=\"H5921\"* our|strong=\"H3068\"* fathers praised you|strong=\"H5921\"*" + }, + { + "verseNum": 12, + "text": "Will you hold yourself back for these things, Yahweh|strong=\"H3068\"*?" + } + ] + }, + { + "chapterNum": 65, + "verses": [ + { + "verseNum": 1, + "text": "“I|strong=\"H2005\"* am|strong=\"H2005\"* inquired|strong=\"H7592\"* of|strong=\"H8034\"* by|strong=\"H7121\"* those who|strong=\"H4672\"* didn’t ask|strong=\"H7592\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H3117\"* have|strong=\"H5971\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* my|strong=\"H3605\"* hands|strong=\"H3027\"* all|strong=\"H3605\"* day|strong=\"H3117\"* to|strong=\"H1980\"* a|strong=\"H3068\"* rebellious|strong=\"H5637\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 3, + "text": "a|strong=\"H3068\"* people|strong=\"H5971\"* who|strong=\"H5971\"* provoke|strong=\"H3707\"* me|strong=\"H6440\"* to|strong=\"H5921\"* my|strong=\"H5921\"* face|strong=\"H6440\"* continually|strong=\"H8548\"*," + }, + { + "verseNum": 4, + "text": "who|strong=\"H3427\"* sit|strong=\"H3427\"* among|strong=\"H3427\"* the|strong=\"H3885\"* graves|strong=\"H6913\"*," + }, + { + "verseNum": 5, + "text": "who|strong=\"H3605\"* say, ‘Stay by|strong=\"H3117\"* yourself," + }, + { + "verseNum": 6, + "text": "“Behold|strong=\"H2009\"*, it|strong=\"H5921\"* is|strong=\"H2009\"* written|strong=\"H3789\"* before|strong=\"H6440\"* me|strong=\"H6440\"*:" + }, + { + "verseNum": 7, + "text": "your|strong=\"H3068\"* own iniquities|strong=\"H5771\"* and|strong=\"H3068\"* the|strong=\"H5921\"* iniquities|strong=\"H5771\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers together|strong=\"H3162\"*”, says Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 9, + "text": "I|strong=\"H5650\"* will|strong=\"H5650\"* bring|strong=\"H3318\"* offspring|strong=\"H2233\"* out|strong=\"H3318\"* of|strong=\"H2022\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 10, + "text": "Sharon|strong=\"H8289\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* fold|strong=\"H5116\"* of|strong=\"H6010\"* flocks|strong=\"H6629\"*," + }, + { + "verseNum": 11, + "text": "“But|strong=\"H5800\"* you|strong=\"H5800\"* who|strong=\"H3068\"* forsake|strong=\"H5800\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 12, + "text": "I|strong=\"H3282\"* will|strong=\"H5869\"* destine|strong=\"H4487\"* you|strong=\"H3605\"* to|strong=\"H1696\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*," + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 14, + "text": "Behold|strong=\"H2009\"*, my|strong=\"H5650\"* servants|strong=\"H5650\"* will|strong=\"H5650\"* sing|strong=\"H7442\"* for|strong=\"H7442\"* joy|strong=\"H7442\"* of|strong=\"H7307\"* heart|strong=\"H3820\"*," + }, + { + "verseNum": 15, + "text": "You|strong=\"H7121\"* will|strong=\"H5650\"* leave|strong=\"H3240\"* your|strong=\"H7121\"* name|strong=\"H8034\"* for|strong=\"H7121\"* a|strong=\"H3068\"* curse|strong=\"H7621\"* to|strong=\"H4191\"* my|strong=\"H5650\"* chosen," + }, + { + "verseNum": 16, + "text": "so|strong=\"H3588\"* that|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H3588\"* blesses|strong=\"H1288\"* himself in|strong=\"H5869\"* the|strong=\"H3588\"* earth will|strong=\"H5869\"* bless|strong=\"H1288\"* himself in|strong=\"H5869\"* the|strong=\"H3588\"* God of|strong=\"H5869\"* truth;" + }, + { + "verseNum": 17, + "text": "“For|strong=\"H3588\"*, behold|strong=\"H2005\"*, I|strong=\"H3588\"* create|strong=\"H1254\"* new|strong=\"H2319\"* heavens|strong=\"H8064\"* and|strong=\"H8064\"* a|strong=\"H3068\"* new|strong=\"H2319\"* earth|strong=\"H5927\"*;" + }, + { + "verseNum": 18, + "text": "But|strong=\"H3588\"* be|strong=\"H3389\"* glad|strong=\"H1523\"* and|strong=\"H5971\"* rejoice|strong=\"H1523\"* forever|strong=\"H5704\"* in|strong=\"H5971\"* that|strong=\"H3588\"* which|strong=\"H5971\"* I|strong=\"H3588\"* create|strong=\"H1254\"*;" + }, + { + "verseNum": 19, + "text": "I|strong=\"H3808\"* will|strong=\"H5971\"* rejoice|strong=\"H1523\"* in|strong=\"H8085\"* Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 20, + "text": "“No|strong=\"H3808\"* more|strong=\"H5750\"* will|strong=\"H1961\"* there|strong=\"H8033\"* be|strong=\"H1961\"* an|strong=\"H1961\"* infant|strong=\"H5764\"* who|strong=\"H1121\"* only|strong=\"H3588\"* lives|strong=\"H1961\"* a|strong=\"H3068\"* few days|strong=\"H3117\"*," + }, + { + "verseNum": 21, + "text": "They will|strong=\"H1004\"* build|strong=\"H1129\"* houses|strong=\"H1004\"* and|strong=\"H1004\"* inhabit|strong=\"H3427\"* them|strong=\"H3427\"*." + }, + { + "verseNum": 22, + "text": "They|strong=\"H3588\"* will|strong=\"H5971\"* not|strong=\"H3808\"* build|strong=\"H1129\"* and|strong=\"H3117\"* another|strong=\"H3808\"* inhabit|strong=\"H3427\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H1992\"* will|strong=\"H3068\"* not|strong=\"H3808\"* labor|strong=\"H3205\"* in|strong=\"H3068\"* vain|strong=\"H7385\"*" + }, + { + "verseNum": 24, + "text": "It|strong=\"H7121\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H8085\"* before|strong=\"H2962\"* they|strong=\"H1992\"* call|strong=\"H7121\"*, I|strong=\"H2962\"* will|strong=\"H1961\"* answer|strong=\"H6030\"*;" + }, + { + "verseNum": 25, + "text": "The|strong=\"H3605\"* wolf|strong=\"H2061\"* and|strong=\"H3068\"* the|strong=\"H3605\"* lamb|strong=\"H2924\"* will|strong=\"H3068\"* feed|strong=\"H7462\"* together." + } + ] + }, + { + "chapterNum": 66, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 2, + "text": "For|strong=\"H5921\"* my|strong=\"H3605\"* hand|strong=\"H3027\"* has|strong=\"H3068\"* made|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H2088\"* things|strong=\"H1697\"*," + }, + { + "verseNum": 3, + "text": "He|strong=\"H5221\"* who|strong=\"H5315\"* kills|strong=\"H5221\"* an|strong=\"H5221\"* ox|strong=\"H7794\"* is|strong=\"H5315\"* as|strong=\"H1571\"* he|strong=\"H5221\"* who|strong=\"H5315\"* kills|strong=\"H5221\"* a|strong=\"H3068\"* man|strong=\"H5315\"*;" + }, + { + "verseNum": 4, + "text": "I|strong=\"H3282\"* also|strong=\"H1571\"* will|strong=\"H1571\"* choose their|strong=\"H8085\"* delusions|strong=\"H8586\"*," + }, + { + "verseNum": 5, + "text": "Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*," + }, + { + "verseNum": 6, + "text": "A|strong=\"H3068\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* tumult|strong=\"H7588\"* from|strong=\"H3068\"* the|strong=\"H3068\"* city|strong=\"H5892\"*," + }, + { + "verseNum": 7, + "text": "“Before|strong=\"H2962\"* she|strong=\"H2962\"* travailed|strong=\"H2342\"*, she|strong=\"H2962\"* gave|strong=\"H3205\"* birth|strong=\"H3205\"*." + }, + { + "verseNum": 8, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* heard|strong=\"H8085\"* of|strong=\"H1121\"* such|strong=\"H2063\"* a|strong=\"H3068\"* thing|strong=\"H2063\"*?" + }, + { + "verseNum": 9, + "text": "Shall|strong=\"H3068\"* I|strong=\"H3808\"* bring|strong=\"H3205\"* to|strong=\"H3068\"* the|strong=\"H3205\"* birth|strong=\"H3205\"*, and|strong=\"H3068\"* not|strong=\"H3808\"* cause to|strong=\"H3068\"* be|strong=\"H3808\"* delivered|strong=\"H3205\"*?” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "“Rejoice|strong=\"H8055\"* with|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3389\"* be|strong=\"H3389\"* glad|strong=\"H8055\"* for|strong=\"H5921\"* her|strong=\"H3605\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* who|strong=\"H3605\"* love|strong=\"H4885\"* her|strong=\"H3605\"*." + }, + { + "verseNum": 11, + "text": "that|strong=\"H4616\"* you may|strong=\"H3519\"* nurse|strong=\"H3243\"* and|strong=\"H3519\"* be|strong=\"H3519\"* satisfied|strong=\"H7646\"* at the|strong=\"H7646\"* comforting|strong=\"H8575\"* breasts|strong=\"H7699\"*;" + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* extend|strong=\"H5186\"* peace|strong=\"H7965\"* to|strong=\"H3068\"* her|strong=\"H5375\"* like|strong=\"H3541\"* a|strong=\"H3068\"* river|strong=\"H5104\"*," + }, + { + "verseNum": 13, + "text": "As|strong=\"H3651\"* one|strong=\"H3651\"* whom his|strong=\"H5162\"* mother comforts|strong=\"H5162\"*," + }, + { + "verseNum": 14, + "text": "You|strong=\"H3045\"* will|strong=\"H3068\"* see|strong=\"H7200\"* it|strong=\"H7200\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3820\"* shall|strong=\"H3068\"* rejoice|strong=\"H7797\"*," + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* come|strong=\"H7725\"* with|strong=\"H3068\"* fire," + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* execute|strong=\"H8199\"* judgment|strong=\"H8199\"* by|strong=\"H3068\"* fire and|strong=\"H3068\"* by|strong=\"H3068\"* his|strong=\"H3605\"* sword|strong=\"H2719\"* on|strong=\"H3068\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*;" + }, + { + "verseNum": 17, + "text": "“Those who|strong=\"H3068\"* sanctify|strong=\"H6942\"* themselves|strong=\"H6942\"* and|strong=\"H3068\"* purify|strong=\"H2891\"* themselves|strong=\"H6942\"* to|strong=\"H3068\"* go|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H5002\"* gardens|strong=\"H1593\"*, following one|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H5002\"* middle|strong=\"H8432\"*, eating pig|strong=\"H2386\"*’s meat|strong=\"H1320\"*, abominable|strong=\"H8263\"* things|strong=\"H8263\"*, and|strong=\"H3068\"* the|strong=\"H5002\"* mouse|strong=\"H5909\"*, they|strong=\"H3068\"* shall|strong=\"H3068\"* come|strong=\"H5486\"* to|strong=\"H3068\"* an|strong=\"H3068\"* end|strong=\"H5486\"* together|strong=\"H3162\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "“For|strong=\"H3605\"* I|strong=\"H7200\"* know their|strong=\"H3605\"* works|strong=\"H4639\"* and|strong=\"H1471\"* their|strong=\"H3605\"* thoughts|strong=\"H4284\"*. The|strong=\"H3605\"* time comes that|strong=\"H7200\"* I|strong=\"H7200\"* will|strong=\"H1471\"* gather|strong=\"H6908\"* all|strong=\"H3605\"* nations|strong=\"H1471\"* and|strong=\"H1471\"* languages|strong=\"H3956\"*, and|strong=\"H1471\"* they|strong=\"H3605\"* will|strong=\"H1471\"* come, and|strong=\"H1471\"* will|strong=\"H1471\"* see|strong=\"H7200\"* my|strong=\"H3605\"* glory|strong=\"H3519\"*." + }, + { + "verseNum": 19, + "text": "“I|strong=\"H7760\"* will|strong=\"H1471\"* set|strong=\"H7760\"* a|strong=\"H3068\"* sign among|strong=\"H7200\"* them|strong=\"H1992\"*, and|strong=\"H7971\"* I|strong=\"H7760\"* will|strong=\"H1471\"* send|strong=\"H7971\"* those|strong=\"H1992\"* who|strong=\"H1992\"* escape|strong=\"H6412\"* of|strong=\"H7198\"* them|strong=\"H1992\"* to|strong=\"H7971\"* the|strong=\"H8085\"* nations|strong=\"H1471\"*, to|strong=\"H7971\"* Tarshish|strong=\"H8659\"*, Pul|strong=\"H6322\"*, and|strong=\"H7971\"* Lud|strong=\"H3865\"*, who|strong=\"H1992\"* draw|strong=\"H4900\"* the|strong=\"H8085\"* bow|strong=\"H7198\"*, to|strong=\"H7971\"* Tubal|strong=\"H8422\"* and|strong=\"H7971\"* Javan|strong=\"H3120\"*, to|strong=\"H7971\"* far-away islands, who|strong=\"H1992\"* have|strong=\"H1471\"* not|strong=\"H3808\"* heard|strong=\"H8085\"* my|strong=\"H8085\"* fame|strong=\"H8088\"*, nor|strong=\"H3808\"* have|strong=\"H1471\"* seen|strong=\"H7200\"* my|strong=\"H8085\"* glory|strong=\"H3519\"*; and|strong=\"H7971\"* they|strong=\"H1992\"* shall|strong=\"H1471\"* declare|strong=\"H5046\"* my|strong=\"H8085\"* glory|strong=\"H3519\"* among|strong=\"H7200\"* the|strong=\"H8085\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H3068\"* shall|strong=\"H3068\"* bring all|strong=\"H3605\"* your|strong=\"H3068\"* brothers|strong=\"H1121\"* out|strong=\"H5921\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* for|strong=\"H5921\"* an|strong=\"H3068\"* offering|strong=\"H4503\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, on|strong=\"H5921\"* horses|strong=\"H5483\"*, in|strong=\"H5921\"* chariots|strong=\"H7393\"*, in|strong=\"H5921\"* litters|strong=\"H6632\"*, on|strong=\"H5921\"* mules|strong=\"H6505\"*, and|strong=\"H1121\"* on|strong=\"H5921\"* camels|strong=\"H3753\"*, to|strong=\"H3478\"* my|strong=\"H3605\"* holy|strong=\"H6944\"* mountain|strong=\"H2022\"* Jerusalem|strong=\"H3389\"*, says Yahweh|strong=\"H3068\"*, as|strong=\"H3068\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* bring their|strong=\"H3605\"* offering|strong=\"H4503\"* in|strong=\"H5921\"* a|strong=\"H3068\"* clean|strong=\"H2889\"* vessel|strong=\"H3627\"* into|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 21, + "text": "Of|strong=\"H3068\"* them|strong=\"H1992\"* I|strong=\"H1571\"* will|strong=\"H3068\"* also|strong=\"H1571\"* select|strong=\"H3947\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* Levites|strong=\"H3881\"*,” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "“For|strong=\"H3588\"* as|strong=\"H6213\"* the|strong=\"H6440\"* new|strong=\"H2319\"* heavens|strong=\"H8064\"* and|strong=\"H3068\"* the|strong=\"H6440\"* new|strong=\"H2319\"* earth|strong=\"H8064\"*, which|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H6213\"*, shall|strong=\"H3068\"* remain|strong=\"H5975\"* before|strong=\"H6440\"* me|strong=\"H6440\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “so|strong=\"H3651\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"* and|strong=\"H3068\"* your|strong=\"H3068\"* name|strong=\"H8034\"* shall|strong=\"H3068\"* remain|strong=\"H5975\"*." + }, + { + "verseNum": 23, + "text": "It|strong=\"H6440\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H3605\"* from|strong=\"H6440\"* one|strong=\"H3605\"* new|strong=\"H2320\"* moon|strong=\"H2320\"* to|strong=\"H3068\"* another|strong=\"H7676\"*, and|strong=\"H3068\"* from|strong=\"H6440\"* one|strong=\"H3605\"* Sabbath|strong=\"H7676\"* to|strong=\"H3068\"* another|strong=\"H7676\"*, all|strong=\"H3605\"* flesh|strong=\"H1320\"* will|strong=\"H3068\"* come|strong=\"H1961\"* to|strong=\"H3068\"* worship|strong=\"H7812\"* before|strong=\"H6440\"* me|strong=\"H6440\"*,” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 24, + "text": "“They|strong=\"H3588\"* will|strong=\"H1961\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H7200\"* look|strong=\"H7200\"* at|strong=\"H4191\"* the|strong=\"H3605\"* dead|strong=\"H4191\"* bodies|strong=\"H6297\"* of|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* who|strong=\"H3605\"* have|strong=\"H1961\"* transgressed|strong=\"H6586\"* against|strong=\"H6586\"* me|strong=\"H7200\"*; for|strong=\"H3588\"* their|strong=\"H3605\"* worm|strong=\"H8438\"* will|strong=\"H1961\"* not|strong=\"H3808\"* die|strong=\"H4191\"*, nor|strong=\"H3808\"* will|strong=\"H1961\"* their|strong=\"H3605\"* fire be|strong=\"H1961\"* quenched|strong=\"H3518\"*, and|strong=\"H7200\"* they|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* loathsome to|strong=\"H3318\"* all|strong=\"H3605\"* mankind|strong=\"H1320\"*.”" + } + ] + } + ] + }, + { + "name": "Jeremiah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H4480\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*, one|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* were|strong=\"H1121\"* in|strong=\"H1121\"* Anathoth|strong=\"H6068\"* in|strong=\"H1121\"* the|strong=\"H4480\"* land of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"*’s+ 1:2 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* him|strong=\"H4427\"* in|strong=\"H8141\"* the|strong=\"H3068\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amon, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* thirteenth|strong=\"H7969\"* year|strong=\"H8141\"* of|strong=\"H1121\"* his|strong=\"H3068\"* reign|strong=\"H4427\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H1961\"* came|strong=\"H1961\"* also|strong=\"H4428\"* in|strong=\"H8141\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, to|strong=\"H5704\"* the|strong=\"H3117\"* end|strong=\"H8552\"* of|strong=\"H1121\"* the|strong=\"H3117\"* eleventh|strong=\"H6249\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Zedekiah|strong=\"H6667\"*, the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, to|strong=\"H5704\"* the|strong=\"H3117\"* carrying away|strong=\"H1540\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* captive|strong=\"H1540\"* in|strong=\"H8141\"* the|strong=\"H3117\"* fifth|strong=\"H2549\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 5, + "text": "“Before|strong=\"H2962\"* I|strong=\"H5414\"* formed|strong=\"H3335\"* you|strong=\"H5414\"* in|strong=\"H5414\"* the|strong=\"H5414\"* womb|strong=\"H7358\"*, I|strong=\"H5414\"* knew|strong=\"H3045\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H1696\"* I|strong=\"H3588\"* said|strong=\"H1696\"*, “Ah, Lord|strong=\"H3069\"*+ 1:6 The word translated “Lord” is “Adonai.” * Yahweh|strong=\"H3068\"*! Behold|strong=\"H2009\"*,+ 1:6 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"H3588\"* don’t know|strong=\"H3045\"* how|strong=\"H3588\"* to|strong=\"H1696\"* speak|strong=\"H1696\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am a|strong=\"H3068\"* child|strong=\"H5288\"*.”" + }, + { + "verseNum": 7, + "text": "But|strong=\"H3588\"* Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7971\"*, “Don’t say|strong=\"H1696\"*, ‘I|strong=\"H3588\"* am|strong=\"H3068\"* a|strong=\"H3068\"* child|strong=\"H5288\"*;’ for|strong=\"H3588\"* you|strong=\"H3588\"* must go|strong=\"H3212\"* to|strong=\"H1696\"* whomever|strong=\"H3605\"* I|strong=\"H3588\"* send|strong=\"H7971\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* must say|strong=\"H1696\"* whatever|strong=\"H3605\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 8, + "text": "Don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"* because|strong=\"H3588\"* of|strong=\"H3068\"* them|strong=\"H6440\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* with|strong=\"H3068\"* you|strong=\"H3588\"* to|strong=\"H3068\"* rescue|strong=\"H5337\"* you|strong=\"H3588\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H2009\"* Yahweh|strong=\"H3068\"* stretched|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H5414\"* hand|strong=\"H3027\"* and|strong=\"H3068\"* touched|strong=\"H5060\"* my|strong=\"H5414\"* mouth|strong=\"H6310\"*. Then|strong=\"H2009\"* Yahweh|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3068\"* me|strong=\"H5414\"*, “Behold|strong=\"H2009\"*, I|strong=\"H5414\"* have|strong=\"H3068\"* put|strong=\"H5414\"* my|strong=\"H5414\"* words|strong=\"H1697\"* in|strong=\"H5921\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 10, + "text": "Behold|strong=\"H7200\"*, I|strong=\"H3117\"* have|strong=\"H1471\"* today|strong=\"H3117\"* set|strong=\"H6485\"* you|strong=\"H5921\"* over|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* and|strong=\"H3117\"* over|strong=\"H5921\"* the|strong=\"H5921\"* kingdoms|strong=\"H4467\"*, to|strong=\"H5921\"* uproot|strong=\"H5428\"* and|strong=\"H3117\"* to|strong=\"H5921\"* tear|strong=\"H2040\"* down|strong=\"H5422\"*, to|strong=\"H5921\"* destroy|strong=\"H5422\"* and|strong=\"H3117\"* to|strong=\"H5921\"* overthrow|strong=\"H2040\"*, to|strong=\"H5921\"* build|strong=\"H1129\"* and|strong=\"H3117\"* to|strong=\"H5921\"* plant|strong=\"H5193\"*.”" + }, + { + "verseNum": 11, + "text": "Moreover|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H7200\"*, saying|strong=\"H1697\"*, “Jeremiah|strong=\"H3414\"*, what|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H4100\"* see|strong=\"H7200\"*?”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H6213\"* Yahweh|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3068\"* me|strong=\"H7200\"*, “You|strong=\"H3588\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* well|strong=\"H3190\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* watch|strong=\"H8245\"* over|strong=\"H5921\"* my|strong=\"H3068\"* word|strong=\"H1697\"* to|strong=\"H3068\"* perform|strong=\"H6213\"* it|strong=\"H5921\"*.”" + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H6440\"* the|strong=\"H6440\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, saying|strong=\"H1697\"*, “What|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H6440\"* see|strong=\"H7200\"*?”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H3068\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H5921\"*, “Out|strong=\"H5921\"* of|strong=\"H3068\"* the|strong=\"H3605\"* north|strong=\"H6828\"*, evil|strong=\"H7451\"* will|strong=\"H3068\"* break|strong=\"H6605\"* out|strong=\"H5921\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* call|strong=\"H7121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H3068\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* north|strong=\"H6828\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"H5921\"* will|strong=\"H3027\"* utter|strong=\"H1696\"* my|strong=\"H3605\"* judgments|strong=\"H4941\"* against|strong=\"H5921\"* them|strong=\"H5921\"* concerning|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* wickedness|strong=\"H7451\"*," + }, + { + "verseNum": 17, + "text": "“You|strong=\"H6440\"* therefore put|strong=\"H6680\"* your|strong=\"H3605\"* belt on|strong=\"H1696\"* your|strong=\"H3605\"* waist|strong=\"H4975\"*, arise|strong=\"H6965\"*, and|strong=\"H6965\"* say|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H6440\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H6680\"* command|strong=\"H6680\"* you|strong=\"H6440\"*. Don’t be|strong=\"H6440\"* dismayed|strong=\"H2865\"* at|strong=\"H6440\"* them|strong=\"H6440\"*, lest|strong=\"H6435\"* I|strong=\"H6680\"* dismay|strong=\"H2865\"* you|strong=\"H6440\"* before|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H5921\"* behold|strong=\"H2009\"*, I|strong=\"H3117\"* have|strong=\"H5971\"* made|strong=\"H5414\"* you|strong=\"H5414\"* today|strong=\"H3117\"* a|strong=\"H3068\"* fortified|strong=\"H4013\"* city|strong=\"H5892\"*, an|strong=\"H5414\"* iron|strong=\"H1270\"* pillar|strong=\"H5982\"*, and|strong=\"H3063\"* bronze|strong=\"H5178\"* walls|strong=\"H2346\"* against|strong=\"H5921\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* land—against|strong=\"H5921\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, against|strong=\"H5921\"* its|strong=\"H3605\"* princes|strong=\"H8269\"*, against|strong=\"H5921\"* its|strong=\"H3605\"* priests|strong=\"H3548\"*, and|strong=\"H3063\"* against|strong=\"H5921\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 19, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* you|strong=\"H3588\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* prevail|strong=\"H3201\"* against|strong=\"H3898\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* with|strong=\"H3068\"* you|strong=\"H3588\"*”, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “to|strong=\"H3201\"* rescue|strong=\"H5337\"* you|strong=\"H3588\"*.”" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Go|strong=\"H1980\"* and|strong=\"H1980\"* proclaim|strong=\"H7121\"* in|strong=\"H1980\"* the|strong=\"H3541\"* ears of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, saying, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 3, + "text": "Israel|strong=\"H3478\"* was|strong=\"H3068\"* holiness|strong=\"H6944\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 4, + "text": "Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, O|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*!" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 6, + "text": "They|strong=\"H8033\"* didn’t say, ‘Where|strong=\"H8033\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* brought|strong=\"H5927\"* us|strong=\"H5674\"* up|strong=\"H5927\"* out|strong=\"H3212\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land|strong=\"H6723\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 7, + "text": "I|strong=\"H7760\"* brought|strong=\"H7760\"* you|strong=\"H7760\"* into|strong=\"H7760\"* a|strong=\"H3068\"* plentiful|strong=\"H3759\"* land|strong=\"H5159\"*" + }, + { + "verseNum": 8, + "text": "The|strong=\"H3068\"* priests|strong=\"H3548\"* didn’t say, ‘Where|strong=\"H3808\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*?’" + }, + { + "verseNum": 9, + "text": "“Therefore|strong=\"H3651\"* I|strong=\"H3651\"* will|strong=\"H3068\"* yet|strong=\"H5750\"* contend|strong=\"H7378\"* with|strong=\"H3068\"* you|strong=\"H3651\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H7971\"* the|strong=\"H7200\"* islands of|strong=\"H7200\"* Kittim|strong=\"H3794\"*, and|strong=\"H7971\"* see|strong=\"H7200\"*." + }, + { + "verseNum": 11, + "text": "Has|strong=\"H1471\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* changed|strong=\"H4171\"* its|strong=\"H3808\"* gods," + }, + { + "verseNum": 12, + "text": "“Be|strong=\"H3068\"* astonished|strong=\"H8074\"*, you|strong=\"H5921\"* heavens|strong=\"H8064\"*, at|strong=\"H5921\"* this|strong=\"H2063\"*" + }, + { + "verseNum": 13, + "text": "“For|strong=\"H3588\"* my|strong=\"H6213\"* people|strong=\"H5971\"* have|strong=\"H5971\"* committed|strong=\"H6213\"* two|strong=\"H8147\"* evils|strong=\"H7451\"*:" + }, + { + "verseNum": 14, + "text": "Is|strong=\"H1931\"* Israel|strong=\"H3478\"* a|strong=\"H3068\"* slave|strong=\"H5650\"*?" + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* young|strong=\"H3715\"* lions|strong=\"H3715\"* have|strong=\"H5414\"* roared|strong=\"H7580\"* at|strong=\"H3427\"* him|strong=\"H5414\"* and|strong=\"H6963\"* raised|strong=\"H5414\"* their|strong=\"H5414\"* voices|strong=\"H6963\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H1571\"* children|strong=\"H1121\"* also|strong=\"H1571\"* of|strong=\"H1121\"* Memphis|strong=\"H5297\"* and|strong=\"H1121\"* Tahpanhes|strong=\"H8471\"* have|strong=\"H1121\"* broken|strong=\"H7462\"* the|strong=\"H1571\"* crown|strong=\"H6936\"* of|strong=\"H1121\"* your|strong=\"H1571\"* head|strong=\"H6936\"*." + }, + { + "verseNum": 17, + "text": "“Haven’t you|strong=\"H6213\"* brought|strong=\"H3212\"* this|strong=\"H2063\"* on|strong=\"H1870\"* yourself|strong=\"H6213\"*," + }, + { + "verseNum": 18, + "text": "Now|strong=\"H6258\"* what|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H4100\"* gain by|strong=\"H1870\"* going to|strong=\"H4714\"* Egypt|strong=\"H4714\"*, to|strong=\"H4714\"* drink|strong=\"H8354\"* the|strong=\"H1870\"* waters|strong=\"H4325\"* of|strong=\"H1870\"* the|strong=\"H1870\"* Shihor|strong=\"H7883\"*?" + }, + { + "verseNum": 19, + "text": "“Your|strong=\"H3068\"* own wickedness|strong=\"H7451\"* will|strong=\"H3068\"* correct|strong=\"H3256\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 20, + "text": "“For|strong=\"H3588\"* long|strong=\"H5769\"* ago|strong=\"H5769\"* I|strong=\"H3588\"* broke|strong=\"H7665\"* off|strong=\"H5921\"* your|strong=\"H3605\"* yoke|strong=\"H5923\"*," + }, + { + "verseNum": 21, + "text": "Yet|strong=\"H3605\"* I|strong=\"H3605\"* had|strong=\"H2015\"* planted|strong=\"H5193\"* you|strong=\"H3605\"* a|strong=\"H3068\"* noble vine|strong=\"H1612\"*," + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* though|strong=\"H3588\"* you|strong=\"H3588\"* wash|strong=\"H3526\"* yourself with|strong=\"H6440\"* lye|strong=\"H5427\"*," + }, + { + "verseNum": 23, + "text": "“How|strong=\"H4100\"* can|strong=\"H4100\"* you|strong=\"H6213\"* say, ‘I|strong=\"H3045\"* am|strong=\"H1980\"* not|strong=\"H3808\"* defiled|strong=\"H2930\"*." + }, + { + "verseNum": 24, + "text": "a|strong=\"H3068\"* wild|strong=\"H6501\"* donkey|strong=\"H6501\"* used|strong=\"H3928\"* to|strong=\"H7725\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*, that|strong=\"H3605\"* sniffs|strong=\"H7602\"* the|strong=\"H3605\"* wind|strong=\"H7307\"* in|strong=\"H5315\"* her|strong=\"H3605\"* craving." + }, + { + "verseNum": 25, + "text": "“Keep|strong=\"H4513\"* your|strong=\"H3588\"* feet|strong=\"H7272\"* from|strong=\"H7272\"* being bare," + }, + { + "verseNum": 26, + "text": "As|strong=\"H3651\"* the|strong=\"H3588\"* thief|strong=\"H1590\"* is|strong=\"H3651\"* ashamed|strong=\"H1322\"* when|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H3651\"* found|strong=\"H4672\"*," + }, + { + "verseNum": 27, + "text": "who|strong=\"H3588\"* tell wood|strong=\"H6086\"*, ‘You|strong=\"H3588\"* are|strong=\"H6440\"* my|strong=\"H6965\"* father|strong=\"H3205\"*,’" + }, + { + "verseNum": 28, + "text": "“But|strong=\"H3588\"* where are|strong=\"H5892\"* your|strong=\"H6213\"* gods that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* made|strong=\"H6213\"* for|strong=\"H3588\"* yourselves?" + }, + { + "verseNum": 29, + "text": "“Why|strong=\"H4100\"* will|strong=\"H3068\"* you|strong=\"H3605\"* contend|strong=\"H7378\"* with|strong=\"H3068\"* me|strong=\"H3605\"*?" + }, + { + "verseNum": 30, + "text": "“I|strong=\"H3808\"* have|strong=\"H1121\"* struck|strong=\"H5221\"* your|strong=\"H3947\"* children|strong=\"H1121\"* in|strong=\"H1121\"* vain|strong=\"H7723\"*." + }, + { + "verseNum": 31, + "text": "Generation|strong=\"H1755\"*, consider|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + }, + { + "verseNum": 32, + "text": "“Can a|strong=\"H3068\"* virgin|strong=\"H1330\"* forget|strong=\"H7911\"* her|strong=\"H7911\"* ornaments|strong=\"H5716\"*," + }, + { + "verseNum": 33, + "text": "How|strong=\"H4100\"* well|strong=\"H3190\"* you|strong=\"H4100\"* prepare|strong=\"H3190\"* your|strong=\"H1245\"* way|strong=\"H1870\"* to|strong=\"H1870\"* seek|strong=\"H1245\"* love!" + }, + { + "verseNum": 34, + "text": "Also|strong=\"H1571\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H5921\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* of|strong=\"H5921\"* the|strong=\"H3605\"* innocent|strong=\"H5355\"* poor is|strong=\"H5315\"* found|strong=\"H4672\"* in|strong=\"H5921\"* your|strong=\"H3605\"* skirts|strong=\"H3671\"*." + }, + { + "verseNum": 35, + "text": "“Yet|strong=\"H3588\"* you|strong=\"H3588\"* said, ‘I|strong=\"H3588\"* am|strong=\"H2005\"* innocent|strong=\"H5352\"*." + }, + { + "verseNum": 36, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H4100\"* go about|strong=\"H1870\"* so|strong=\"H1571\"* much|strong=\"H3966\"* to|strong=\"H4714\"* change|strong=\"H8138\"* your|strong=\"H1571\"* ways|strong=\"H1870\"*?" + }, + { + "verseNum": 37, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* also|strong=\"H1571\"* leave|strong=\"H3318\"* that|strong=\"H3588\"* place|strong=\"H3027\"* with|strong=\"H3068\"* your|strong=\"H3068\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* your|strong=\"H3068\"* head|strong=\"H7218\"*;" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "“They|strong=\"H3068\"* say|strong=\"H7725\"*, ‘If|strong=\"H2005\"* a|strong=\"H3068\"* man puts|strong=\"H7971\"* away|strong=\"H7971\"* his|strong=\"H3068\"* wife, and|strong=\"H1980\"* she|strong=\"H1931\"* goes|strong=\"H1980\"* from|strong=\"H7725\"* him|strong=\"H7971\"*, and|strong=\"H1980\"* becomes|strong=\"H1961\"* another|strong=\"H7453\"* man’s, should|strong=\"H3068\"* he|strong=\"H1931\"* return|strong=\"H7725\"* to|strong=\"H1980\"* her|strong=\"H7971\"* again|strong=\"H7725\"*?’ Wouldn’t that|strong=\"H1931\"* land be|strong=\"H1961\"* greatly|strong=\"H7227\"* polluted|strong=\"H2610\"*? But|strong=\"H3808\"* you|strong=\"H7971\"* have|strong=\"H1961\"* played|strong=\"H2181\"* the|strong=\"H5002\"* prostitute|strong=\"H2181\"* with|strong=\"H1980\"* many|strong=\"H7227\"* lovers|strong=\"H7453\"*; yet|strong=\"H5750\"* return|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H1980\"* me|strong=\"H7971\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "“Lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"* to|strong=\"H5921\"* the|strong=\"H5921\"* bare|strong=\"H5375\"* heights|strong=\"H8205\"*, and|strong=\"H5869\"* see|strong=\"H7200\"*! Where|strong=\"H5921\"* have|strong=\"H5869\"* you|strong=\"H5921\"* not|strong=\"H3808\"* been|strong=\"H3808\"* lain with|strong=\"H5921\"*? You|strong=\"H5921\"* have|strong=\"H5869\"* sat|strong=\"H3427\"* waiting for|strong=\"H5921\"* them|strong=\"H5921\"* by|strong=\"H5921\"* the|strong=\"H5921\"* road|strong=\"H1870\"*, as|strong=\"H3427\"* an|strong=\"H5375\"* Arabian|strong=\"H6163\"* in|strong=\"H3427\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*. You|strong=\"H5921\"* have|strong=\"H5869\"* polluted|strong=\"H2610\"* the|strong=\"H5921\"* land with|strong=\"H5921\"* your|strong=\"H5921\"* prostitution|strong=\"H2184\"* and|strong=\"H5869\"* with|strong=\"H5921\"* your|strong=\"H5921\"* wickedness|strong=\"H7451\"*." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H1961\"* the|strong=\"H1961\"* showers|strong=\"H7241\"* have|strong=\"H1961\"* been|strong=\"H1961\"* withheld|strong=\"H4513\"* and|strong=\"H3985\"* there|strong=\"H1961\"* has|strong=\"H1961\"* been|strong=\"H1961\"* no|strong=\"H3808\"* latter|strong=\"H4456\"* rain|strong=\"H4456\"*; yet|strong=\"H3808\"* you|strong=\"H3808\"* have|strong=\"H1961\"* had|strong=\"H1961\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*’s forehead|strong=\"H4696\"* and|strong=\"H3985\"* you|strong=\"H3808\"* refused|strong=\"H3985\"* to|strong=\"H1961\"* be|strong=\"H1961\"* ashamed|strong=\"H3637\"*." + }, + { + "verseNum": 4, + "text": "Will|strong=\"H3808\"* you|strong=\"H3808\"* not|strong=\"H3808\"* from|strong=\"H3808\"* this|strong=\"H6258\"* time|strong=\"H6258\"* cry|strong=\"H7121\"* to|strong=\"H7121\"* me|strong=\"H7121\"*, ‘My|strong=\"H6258\"* Father, you|strong=\"H3808\"* are|strong=\"H3808\"* the|strong=\"H7121\"* guide of|strong=\"H7121\"* my|strong=\"H6258\"* youth|strong=\"H5271\"*!’?" + }, + { + "verseNum": 5, + "text": "“‘Will|strong=\"H6213\"* he|strong=\"H6213\"* retain his|strong=\"H8104\"* anger forever|strong=\"H5769\"*? Will|strong=\"H6213\"* he|strong=\"H6213\"* keep|strong=\"H8104\"* it|strong=\"H6213\"* to|strong=\"H1696\"* the|strong=\"H6213\"* end|strong=\"H5331\"*?’ Behold|strong=\"H2009\"*, you|strong=\"H6213\"* have|strong=\"H1696\"* spoken|strong=\"H1696\"* and|strong=\"H5769\"* have|strong=\"H1696\"* done|strong=\"H6213\"* evil|strong=\"H7451\"* things|strong=\"H7451\"*, and|strong=\"H5769\"* have|strong=\"H1696\"* had|strong=\"H3201\"* your|strong=\"H8104\"* way|strong=\"H3201\"*.”" + }, + { + "verseNum": 6, + "text": "Moreover, Yahweh|strong=\"H3068\"* said to|strong=\"H1980\"* me|strong=\"H7200\"* in|strong=\"H5921\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Josiah|strong=\"H2977\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, “Have|strong=\"H3068\"* you|strong=\"H3605\"* seen|strong=\"H7200\"* that|strong=\"H7200\"* which|strong=\"H1931\"* backsliding|strong=\"H4878\"* Israel|strong=\"H3478\"* has|strong=\"H3068\"* done|strong=\"H6213\"*? She|strong=\"H1931\"* has|strong=\"H3068\"* gone|strong=\"H1980\"* up|strong=\"H7200\"* on|strong=\"H5921\"* every|strong=\"H3605\"* high|strong=\"H1364\"* mountain|strong=\"H2022\"* and|strong=\"H1980\"* under|strong=\"H8478\"* every|strong=\"H3605\"* green|strong=\"H7488\"* tree|strong=\"H6086\"*, and|strong=\"H1980\"* has|strong=\"H3068\"* played|strong=\"H2181\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H7200\"* said after|strong=\"H7200\"* she|strong=\"H3808\"* had|strong=\"H3063\"* done|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* things|strong=\"H3605\"*, ‘She|strong=\"H3808\"* will|strong=\"H3063\"* return|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H7725\"*;’ but|strong=\"H3808\"* she|strong=\"H3808\"* didn’t return|strong=\"H7725\"*, and|strong=\"H3063\"* her|strong=\"H3605\"* treacherous sister Judah|strong=\"H3063\"* saw|strong=\"H7200\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H3588\"* saw|strong=\"H7200\"* when|strong=\"H3588\"*, for|strong=\"H3588\"* this|strong=\"H1931\"* very|strong=\"H1571\"* cause|strong=\"H5414\"*, that|strong=\"H3588\"* backsliding|strong=\"H4878\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* committed|strong=\"H5414\"* adultery|strong=\"H5003\"*, I|strong=\"H3588\"* had|strong=\"H3478\"* put|strong=\"H5414\"* her|strong=\"H3605\"* away|strong=\"H7971\"* and|strong=\"H3063\"* given|strong=\"H5414\"* her|strong=\"H3605\"* a|strong=\"H3068\"* certificate|strong=\"H5612\"* of|strong=\"H5921\"* divorce|strong=\"H7971\"*, yet|strong=\"H3588\"* treacherous Judah|strong=\"H3063\"*, her|strong=\"H3605\"* sister, had|strong=\"H3478\"* no|strong=\"H3808\"* fear|strong=\"H3372\"*, but|strong=\"H3588\"* she|strong=\"H1931\"* also|strong=\"H1571\"* went|strong=\"H3212\"* and|strong=\"H3063\"* played|strong=\"H2181\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"*." + }, + { + "verseNum": 9, + "text": "Because she took|strong=\"H1961\"* her|strong=\"H1961\"* prostitution|strong=\"H2184\"* lightly, the|strong=\"H1961\"* land was|strong=\"H1961\"* polluted|strong=\"H2610\"*, and|strong=\"H6086\"* she committed|strong=\"H5003\"* adultery|strong=\"H5003\"* with|strong=\"H6086\"* stones and|strong=\"H6086\"* with|strong=\"H6086\"* wood|strong=\"H6086\"*." + }, + { + "verseNum": 10, + "text": "Yet|strong=\"H3588\"* for|strong=\"H3588\"* all|strong=\"H3605\"* this|strong=\"H2063\"* her|strong=\"H3605\"* treacherous sister, Judah|strong=\"H3063\"*, has|strong=\"H3068\"* not|strong=\"H3808\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H7725\"* with|strong=\"H3068\"* her|strong=\"H3605\"* whole|strong=\"H3605\"* heart|strong=\"H3820\"*, but|strong=\"H3588\"* only|strong=\"H3588\"* in|strong=\"H3068\"* pretense,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* me|strong=\"H5315\"*, “Backsliding|strong=\"H4878\"* Israel|strong=\"H3478\"* has|strong=\"H3068\"* shown herself|strong=\"H5315\"* more|strong=\"H5315\"* righteous|strong=\"H6663\"* than|strong=\"H3068\"* treacherous Judah|strong=\"H3063\"*." + }, + { + "verseNum": 12, + "text": "Go|strong=\"H1980\"*, and|strong=\"H1980\"* proclaim|strong=\"H7121\"* these|strong=\"H7121\"* words|strong=\"H1697\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* north|strong=\"H6828\"*, and|strong=\"H1980\"* say|strong=\"H7725\"*, ‘Return|strong=\"H7725\"*, you|strong=\"H3588\"* backsliding|strong=\"H4878\"* Israel|strong=\"H3478\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; ‘I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* look|strong=\"H3068\"* in|strong=\"H1980\"* anger|strong=\"H6440\"* on|strong=\"H1980\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* merciful|strong=\"H2623\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. ‘I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* keep|strong=\"H5201\"* anger|strong=\"H6440\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 13, + "text": "Only|strong=\"H3588\"* acknowledge|strong=\"H3045\"* your|strong=\"H3068\"* iniquity|strong=\"H5771\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* transgressed|strong=\"H6586\"* against|strong=\"H6586\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* scattered|strong=\"H6340\"* your|strong=\"H3068\"* ways|strong=\"H1870\"* to|strong=\"H3068\"* the|strong=\"H3605\"* strangers|strong=\"H2114\"* under|strong=\"H8478\"* every|strong=\"H3605\"* green|strong=\"H7488\"* tree|strong=\"H6086\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* obeyed|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*,’” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "“Return|strong=\"H7725\"*, backsliding|strong=\"H7726\"* children|strong=\"H1121\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* a|strong=\"H3068\"* husband|strong=\"H1166\"* to|strong=\"H7725\"* you|strong=\"H3588\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* take|strong=\"H3947\"* one|strong=\"H1121\"* of|strong=\"H1121\"* you|strong=\"H3588\"* from|strong=\"H7725\"* a|strong=\"H3068\"* city|strong=\"H5892\"*, and|strong=\"H1121\"* two|strong=\"H8147\"* from|strong=\"H7725\"* a|strong=\"H3068\"* family|strong=\"H4940\"*, and|strong=\"H1121\"* I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H7725\"* you|strong=\"H3588\"* to|strong=\"H7725\"* Zion|strong=\"H6726\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H5414\"* will|strong=\"H3820\"* give|strong=\"H5414\"* you|strong=\"H5414\"* shepherds|strong=\"H7462\"* according to|strong=\"H5414\"* my|strong=\"H5414\"* heart|strong=\"H3820\"*, who|strong=\"H7462\"* will|strong=\"H3820\"* feed|strong=\"H7462\"* you|strong=\"H5414\"* with|strong=\"H3820\"* knowledge|strong=\"H1844\"* and|strong=\"H3820\"* understanding|strong=\"H3820\"*." + }, + { + "verseNum": 16, + "text": "It|strong=\"H5921\"* will|strong=\"H3068\"* come|strong=\"H5927\"* to|strong=\"H3068\"* pass|strong=\"H1961\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3117\"* multiplied|strong=\"H7235\"* and|strong=\"H3068\"* increased|strong=\"H7235\"* in|strong=\"H5921\"* the|strong=\"H5002\"* land in|strong=\"H5921\"* those|strong=\"H1992\"* days|strong=\"H3117\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “they|strong=\"H1992\"* will|strong=\"H3068\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* say, ‘the|strong=\"H5002\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*!’ It|strong=\"H5921\"* will|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H5927\"* to|strong=\"H3068\"* mind|strong=\"H3820\"*. They|strong=\"H1992\"* won’t remember|strong=\"H2142\"* it|strong=\"H5921\"*. They|strong=\"H1992\"* won’t miss|strong=\"H6485\"* it|strong=\"H5921\"*, nor|strong=\"H3808\"* will|strong=\"H3068\"* another|strong=\"H5750\"* be|strong=\"H1961\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 17, + "text": "At|strong=\"H3068\"* that|strong=\"H3605\"* time|strong=\"H6256\"* they|strong=\"H3068\"* will|strong=\"H3068\"* call|strong=\"H7121\"* Jerusalem|strong=\"H3389\"* ‘Yahweh|strong=\"H3068\"*’s Throne|strong=\"H3678\"*;’ and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* be|strong=\"H3808\"* gathered|strong=\"H6960\"* to|strong=\"H3068\"* it|strong=\"H1931\"*, to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*. They|strong=\"H3068\"* will|strong=\"H3068\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* walk|strong=\"H3212\"* after|strong=\"H6256\"* the|strong=\"H3605\"* stubbornness|strong=\"H8307\"* of|strong=\"H3068\"* their|strong=\"H3605\"* evil|strong=\"H7451\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 18, + "text": "In|strong=\"H5921\"* those|strong=\"H1992\"* days|strong=\"H3117\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* will|strong=\"H3478\"* walk|strong=\"H3212\"* with|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, and|strong=\"H3063\"* they|strong=\"H1992\"* will|strong=\"H3478\"* come|strong=\"H3212\"* together|strong=\"H3162\"* out|strong=\"H5921\"* of|strong=\"H1004\"* the|strong=\"H5921\"* land of|strong=\"H1004\"* the|strong=\"H5921\"* north|strong=\"H6828\"* to|strong=\"H3478\"* the|strong=\"H5921\"* land that|strong=\"H3117\"* I|strong=\"H3117\"* gave|strong=\"H5157\"* for|strong=\"H5921\"* an|strong=\"H5157\"* inheritance|strong=\"H5157\"* to|strong=\"H3478\"* your|strong=\"H5921\"* fathers." + }, + { + "verseNum": 19, + "text": "“But|strong=\"H3808\"* I|strong=\"H5414\"* said|strong=\"H7121\"*, ‘How I|strong=\"H5414\"* desire|strong=\"H2532\"* to|strong=\"H7725\"* put|strong=\"H5414\"* you|strong=\"H5414\"* among|strong=\"H3808\"* the|strong=\"H5414\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* give|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* pleasant|strong=\"H2532\"* land|strong=\"H5159\"*, a|strong=\"H3068\"* goodly|strong=\"H2532\"* heritage|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H5414\"* armies|strong=\"H6635\"* of|strong=\"H1121\"* the|strong=\"H5414\"* nations|strong=\"H1471\"*!’ and|strong=\"H1121\"* I|strong=\"H5414\"* said|strong=\"H7121\"*, ‘You|strong=\"H5414\"* shall|strong=\"H1121\"* call|strong=\"H7121\"* me|strong=\"H5414\"* “My|strong=\"H5414\"* Father|strong=\"H1121\"*”, and|strong=\"H1121\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* following me|strong=\"H5414\"*.’" + }, + { + "verseNum": 20, + "text": "“Surely|strong=\"H3651\"* as|strong=\"H3651\"* a|strong=\"H3068\"* wife treacherously departs from|strong=\"H3478\"* her|strong=\"H3651\"* husband|strong=\"H7453\"*, so|strong=\"H3651\"* you|strong=\"H3651\"* have|strong=\"H3068\"* dealt treacherously with|strong=\"H1004\"* me|strong=\"H1004\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 21, + "text": "A|strong=\"H3068\"* voice|strong=\"H6963\"* is|strong=\"H3068\"* heard|strong=\"H8085\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bare|strong=\"H8205\"* heights|strong=\"H8205\"*, the|strong=\"H5921\"* weeping|strong=\"H1065\"* and|strong=\"H1121\"* the|strong=\"H5921\"* petitions of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3068\"* perverted|strong=\"H5753\"* their|strong=\"H3068\"* way|strong=\"H1870\"*, they|strong=\"H3588\"* have|strong=\"H3068\"* forgotten|strong=\"H7911\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "Return|strong=\"H7725\"*, you|strong=\"H3588\"* backsliding|strong=\"H4878\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* I|strong=\"H3588\"* will|strong=\"H3068\"* heal|strong=\"H7495\"* your|strong=\"H3068\"* backsliding|strong=\"H4878\"*." + }, + { + "verseNum": 23, + "text": "Truly help|strong=\"H8668\"* from|strong=\"H3478\"* the|strong=\"H3068\"* hills|strong=\"H1389\"*, the|strong=\"H3068\"* tumult|strong=\"H1995\"* on|strong=\"H3068\"* the|strong=\"H3068\"* mountains|strong=\"H2022\"*, is|strong=\"H3068\"* in|strong=\"H3478\"* vain|strong=\"H8267\"*. Truly the|strong=\"H3068\"* salvation|strong=\"H8668\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* is|strong=\"H3068\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"H5271\"* the|strong=\"H1121\"* shameful|strong=\"H1322\"* thing|strong=\"H1322\"* has|strong=\"H1121\"* devoured the|strong=\"H1121\"* labor|strong=\"H3018\"* of|strong=\"H1121\"* our fathers from|strong=\"H1121\"* our youth|strong=\"H5271\"*, their flocks|strong=\"H6629\"* and|strong=\"H1121\"* their herds|strong=\"H1241\"*, their sons|strong=\"H1121\"* and|strong=\"H1121\"* their daughters|strong=\"H1323\"*." + }, + { + "verseNum": 25, + "text": "Let|strong=\"H3808\"* us|strong=\"H3588\"* lie|strong=\"H7901\"* down|strong=\"H7901\"* in|strong=\"H3068\"* our|strong=\"H3068\"* shame|strong=\"H1322\"*, and|strong=\"H3068\"* let|strong=\"H3808\"* our|strong=\"H3068\"* confusion|strong=\"H1322\"* cover|strong=\"H3680\"* us|strong=\"H3588\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, we|strong=\"H3068\"* and|strong=\"H3068\"* our|strong=\"H3068\"* fathers, from|strong=\"H8085\"* our|strong=\"H3068\"* youth|strong=\"H5271\"* even|strong=\"H5704\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*. We|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* obeyed|strong=\"H8085\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*.”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "“If you|strong=\"H6440\"* will|strong=\"H3068\"* return|strong=\"H7725\"*, Israel|strong=\"H3478\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “if you|strong=\"H6440\"* will|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H6440\"*, and|strong=\"H3478\"* if you|strong=\"H6440\"* will|strong=\"H3068\"* put|strong=\"H5493\"* away|strong=\"H5493\"* your|strong=\"H3068\"* abominations|strong=\"H8251\"* out|strong=\"H6440\"* of|strong=\"H3068\"* my|strong=\"H3068\"* sight|strong=\"H6440\"*; then|strong=\"H7725\"* you|strong=\"H6440\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* removed|strong=\"H5493\"*;" + }, + { + "verseNum": 2, + "text": "and|strong=\"H3068\"* you|strong=\"H1288\"* will|strong=\"H3068\"* swear|strong=\"H7650\"*, ‘As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*,’ in|strong=\"H3068\"* truth, in|strong=\"H3068\"* justice|strong=\"H4941\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* righteousness|strong=\"H6666\"*. The|strong=\"H3068\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* themselves in|strong=\"H3068\"* him|strong=\"H1288\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* will|strong=\"H3068\"* glory|strong=\"H1984\"* in|strong=\"H3068\"* him|strong=\"H1288\"*.”" + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3068\"* the|strong=\"H3588\"* men of|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, “Break|strong=\"H5214\"* up|strong=\"H5214\"* your|strong=\"H3068\"* fallow|strong=\"H5215\"* ground|strong=\"H5215\"*, and|strong=\"H3063\"* don’t sow|strong=\"H2232\"* among thorns|strong=\"H6975\"*." + }, + { + "verseNum": 4, + "text": "Circumcise|strong=\"H4135\"* yourselves|strong=\"H3068\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3063\"* take|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H6440\"* foreskins|strong=\"H6190\"* of|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*, you|strong=\"H6440\"* men of|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*; lest|strong=\"H6435\"* my|strong=\"H3068\"* wrath|strong=\"H2534\"* go|strong=\"H3318\"* out|strong=\"H3318\"* like|strong=\"H3318\"* fire, and|strong=\"H3063\"* burn|strong=\"H1197\"* so|strong=\"H6435\"* that|strong=\"H3068\"* no|strong=\"H6435\"* one|strong=\"H3068\"* can quench|strong=\"H3518\"* it|strong=\"H6440\"*, because|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* evil|strong=\"H7455\"* of|strong=\"H3068\"* your|strong=\"H3068\"* doings|strong=\"H4611\"*." + }, + { + "verseNum": 5, + "text": "Declare|strong=\"H5046\"* in|strong=\"H8085\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* publish|strong=\"H8085\"* in|strong=\"H8085\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H3063\"* say, ‘Blow|strong=\"H8628\"* the|strong=\"H8085\"* trumpet|strong=\"H7782\"* in|strong=\"H8085\"* the|strong=\"H8085\"* land!’ Cry|strong=\"H7121\"* aloud|strong=\"H4390\"* and|strong=\"H3063\"* say, ‘Assemble yourselves|strong=\"H4390\"*! Let|strong=\"H5046\"*’s go into|strong=\"H3063\"* the|strong=\"H8085\"* fortified|strong=\"H4013\"* cities|strong=\"H5892\"*!’" + }, + { + "verseNum": 6, + "text": "Set|strong=\"H5975\"* up|strong=\"H5375\"* a|strong=\"H3068\"* standard|strong=\"H5251\"* toward|strong=\"H5251\"* Zion|strong=\"H6726\"*. Flee|strong=\"H5756\"* for|strong=\"H3588\"* safety|strong=\"H5756\"*! Don’t wait|strong=\"H5975\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H6828\"* bring|strong=\"H5375\"* evil|strong=\"H7451\"* from|strong=\"H7451\"* the|strong=\"H3588\"* north|strong=\"H6828\"*, and|strong=\"H1419\"* a|strong=\"H3068\"* great|strong=\"H1419\"* destruction|strong=\"H7667\"*.”" + }, + { + "verseNum": 7, + "text": "A|strong=\"H3068\"* lion has|strong=\"H3318\"* gone|strong=\"H3318\"* up|strong=\"H5927\"* from|strong=\"H5265\"* his|strong=\"H7760\"* thicket|strong=\"H5441\"*, and|strong=\"H5892\"* a|strong=\"H3068\"* destroyer|strong=\"H7843\"* of|strong=\"H3427\"* nations|strong=\"H1471\"*. He|strong=\"H3318\"* is|strong=\"H5892\"* on|strong=\"H3427\"* his|strong=\"H7760\"* way|strong=\"H5265\"*. He|strong=\"H3318\"* has|strong=\"H3318\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H5265\"* his|strong=\"H7760\"* place|strong=\"H4725\"*, to|strong=\"H3318\"* make|strong=\"H7760\"* your|strong=\"H7760\"* land|strong=\"H4725\"* desolate|strong=\"H8047\"*, that|strong=\"H1471\"* your|strong=\"H7760\"* cities|strong=\"H5892\"* be|strong=\"H1471\"* laid|strong=\"H7760\"* waste|strong=\"H8047\"*, without|strong=\"H3427\"* inhabitant|strong=\"H3427\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* this|strong=\"H2063\"*, clothe yourself|strong=\"H5921\"* with|strong=\"H3068\"* sackcloth|strong=\"H8242\"*, lament|strong=\"H5594\"* and|strong=\"H3068\"* wail|strong=\"H3213\"*; for|strong=\"H3588\"* the|strong=\"H5921\"* fierce|strong=\"H2740\"* anger|strong=\"H2740\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* hasn’t turned|strong=\"H7725\"* back|strong=\"H7725\"* from|strong=\"H4480\"* us|strong=\"H7725\"*." + }, + { + "verseNum": 9, + "text": "“It|strong=\"H1931\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* at|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3117\"* the|strong=\"H5002\"* heart|strong=\"H3820\"* of|strong=\"H4428\"* the|strong=\"H5002\"* king|strong=\"H4428\"* will|strong=\"H3068\"* perish, along with|strong=\"H3068\"* the|strong=\"H5002\"* heart|strong=\"H3820\"* of|strong=\"H4428\"* the|strong=\"H5002\"* princes|strong=\"H8269\"*. The|strong=\"H5002\"* priests|strong=\"H3548\"* will|strong=\"H3068\"* be|strong=\"H1961\"* astonished|strong=\"H8074\"*, and|strong=\"H3068\"* the|strong=\"H5002\"* prophets|strong=\"H5030\"* will|strong=\"H3068\"* wonder|strong=\"H8539\"*.”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H1961\"* I|strong=\"H5704\"* said, “Ah, Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*! Surely|strong=\"H1961\"* you|strong=\"H5704\"* have|strong=\"H1961\"* greatly|strong=\"H5377\"* deceived|strong=\"H5377\"* this|strong=\"H2088\"* people|strong=\"H5971\"* and|strong=\"H5971\"* Jerusalem|strong=\"H3389\"*, saying, ‘You|strong=\"H5704\"* will|strong=\"H1961\"* have|strong=\"H1961\"* peace|strong=\"H7965\"*;’ whereas the|strong=\"H3069\"* sword|strong=\"H2719\"* reaches|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3069\"* heart|strong=\"H5315\"*.”" + }, + { + "verseNum": 11, + "text": "At|strong=\"H3808\"* that|strong=\"H5971\"* time|strong=\"H6256\"* it|strong=\"H1931\"* will|strong=\"H5971\"* be|strong=\"H3808\"* said to|strong=\"H6256\"* this|strong=\"H2088\"* people|strong=\"H5971\"* and|strong=\"H5971\"* to|strong=\"H6256\"* Jerusalem|strong=\"H3389\"*, “A|strong=\"H3068\"* hot wind|strong=\"H7307\"* blows from|strong=\"H7307\"* the|strong=\"H1870\"* bare|strong=\"H8205\"* heights|strong=\"H8205\"* in|strong=\"H1870\"* the|strong=\"H1870\"* wilderness|strong=\"H4057\"* toward|strong=\"H1870\"* the|strong=\"H1870\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* my|strong=\"H2088\"* people|strong=\"H5971\"*, not|strong=\"H3808\"* to|strong=\"H6256\"* winnow|strong=\"H2219\"*, nor|strong=\"H3808\"* to|strong=\"H6256\"* cleanse|strong=\"H1305\"*." + }, + { + "verseNum": 12, + "text": "A|strong=\"H3068\"* full|strong=\"H4392\"* wind|strong=\"H7307\"* from|strong=\"H7307\"* these|strong=\"H1696\"* will|strong=\"H1571\"* come|strong=\"H4941\"* for|strong=\"H4941\"* me|strong=\"H1696\"*. Now|strong=\"H6258\"* I|strong=\"H6258\"* will|strong=\"H1571\"* also|strong=\"H1571\"* utter|strong=\"H1696\"* judgments|strong=\"H4941\"* against|strong=\"H1696\"* them|strong=\"H7307\"*.”" + }, + { + "verseNum": 13, + "text": "Behold|strong=\"H2009\"*, he|strong=\"H3588\"* will|strong=\"H7703\"* come|strong=\"H5927\"* up|strong=\"H5927\"* as|strong=\"H5927\"* clouds|strong=\"H6051\"*, and|strong=\"H5483\"* his|strong=\"H3588\"* chariots|strong=\"H4818\"* will|strong=\"H7703\"* be|strong=\"H3588\"* as|strong=\"H5927\"* the|strong=\"H3588\"* whirlwind|strong=\"H5492\"*. His|strong=\"H3588\"* horses|strong=\"H5483\"* are|strong=\"H5483\"* swifter|strong=\"H7043\"* than|strong=\"H3588\"* eagles|strong=\"H5404\"*. Woe to|strong=\"H5927\"* us|strong=\"H3588\"*! For|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H5483\"* ruined|strong=\"H7703\"*." + }, + { + "verseNum": 14, + "text": "Jerusalem|strong=\"H3389\"*, wash|strong=\"H3526\"* your|strong=\"H5704\"* heart|strong=\"H3820\"* from|strong=\"H5704\"* wickedness|strong=\"H7451\"*, that|strong=\"H4616\"* you|strong=\"H5704\"* may|strong=\"H3820\"* be|strong=\"H3820\"* saved|strong=\"H3467\"*. How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H3820\"* your|strong=\"H5704\"* evil|strong=\"H7451\"* thoughts|strong=\"H4284\"* lodge|strong=\"H3885\"* within|strong=\"H7130\"* you|strong=\"H5704\"*?" + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* a|strong=\"H3068\"* voice|strong=\"H6963\"* declares|strong=\"H5046\"* from|strong=\"H8085\"* Dan|strong=\"H1835\"*, and|strong=\"H6963\"* publishes evil from|strong=\"H8085\"* the|strong=\"H8085\"* hills|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim:" + }, + { + "verseNum": 16, + "text": "“Tell|strong=\"H8085\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*, behold|strong=\"H2009\"*, publish|strong=\"H8085\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, ‘Watchers|strong=\"H5341\"* come|strong=\"H3063\"* from|strong=\"H5921\"* a|strong=\"H3068\"* far|strong=\"H4801\"* country, and|strong=\"H3063\"* raise|strong=\"H5414\"* their|strong=\"H5414\"* voice|strong=\"H6963\"* against|strong=\"H5921\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 17, + "text": "As|strong=\"H1961\"* keepers|strong=\"H8104\"* of|strong=\"H3068\"* a|strong=\"H3068\"* field|strong=\"H7704\"*, they|strong=\"H3588\"* are|strong=\"H3068\"* against|strong=\"H5921\"* her|strong=\"H5921\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, because|strong=\"H3588\"* she|strong=\"H3588\"* has|strong=\"H3068\"* been|strong=\"H1961\"* rebellious|strong=\"H4784\"* against|strong=\"H5921\"* me|strong=\"H5921\"*,’” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "“Your|strong=\"H6213\"* way|strong=\"H1870\"* and|strong=\"H1870\"* your|strong=\"H6213\"* doings|strong=\"H4611\"* have|strong=\"H3588\"* brought|strong=\"H6213\"* these|strong=\"H2063\"* things|strong=\"H7451\"* to|strong=\"H5704\"* you|strong=\"H3588\"*. This|strong=\"H2063\"* is|strong=\"H3820\"* your|strong=\"H6213\"* wickedness|strong=\"H7451\"*, for|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3820\"* bitter|strong=\"H4751\"*, for|strong=\"H3588\"* it|strong=\"H3588\"* reaches|strong=\"H5704\"* to|strong=\"H5704\"* your|strong=\"H6213\"* heart|strong=\"H3820\"*.”" + }, + { + "verseNum": 19, + "text": "My|strong=\"H8085\"* anguish|strong=\"H2342\"*, my|strong=\"H8085\"* anguish|strong=\"H2342\"*! I|strong=\"H3588\"* am pained|strong=\"H2342\"* at|strong=\"H4421\"* my|strong=\"H8085\"* very|strong=\"H7023\"* heart|strong=\"H3820\"*! My|strong=\"H8085\"* heart|strong=\"H3820\"* trembles within|strong=\"H4578\"* me|strong=\"H5315\"*. I|strong=\"H3588\"* can|strong=\"H3808\"*’t hold my|strong=\"H8085\"* peace|strong=\"H2790\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* heard|strong=\"H8085\"*, O|strong=\"H3068\"* my|strong=\"H8085\"* soul|strong=\"H5315\"*, the|strong=\"H8085\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* trumpet|strong=\"H7782\"*, the|strong=\"H8085\"* alarm|strong=\"H8643\"* of|strong=\"H6963\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 20, + "text": "Destruction|strong=\"H7667\"* on|strong=\"H5921\"* destruction|strong=\"H7667\"* is|strong=\"H3605\"* decreed, for|strong=\"H3588\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* land is|strong=\"H3605\"* laid waste|strong=\"H7703\"*. Suddenly|strong=\"H6597\"* my|strong=\"H3605\"* tents are|strong=\"H7703\"* destroyed|strong=\"H7703\"*, and|strong=\"H7121\"* my|strong=\"H3605\"* curtains|strong=\"H3407\"* gone in|strong=\"H5921\"* a|strong=\"H3068\"* moment|strong=\"H7281\"*." + }, + { + "verseNum": 21, + "text": "How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H5704\"* I|strong=\"H5704\"* see|strong=\"H7200\"* the|strong=\"H8085\"* standard|strong=\"H5251\"* and|strong=\"H6963\"* hear|strong=\"H8085\"* the|strong=\"H8085\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* trumpet|strong=\"H7782\"*?" + }, + { + "verseNum": 22, + "text": "“For|strong=\"H3588\"* my|strong=\"H3045\"* people|strong=\"H5971\"* are|strong=\"H1992\"* foolish|strong=\"H5530\"*. They|strong=\"H1992\"* don’t know|strong=\"H3045\"* me|strong=\"H3808\"*. They|strong=\"H1992\"* are|strong=\"H1992\"* foolish|strong=\"H5530\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* have|strong=\"H5971\"* no|strong=\"H3808\"* understanding. They|strong=\"H1992\"* are|strong=\"H1992\"* skillful|strong=\"H2450\"* in|strong=\"H1121\"* doing|strong=\"H3190\"* evil|strong=\"H7489\"*, but|strong=\"H3588\"* they|strong=\"H1992\"* don’t know|strong=\"H3045\"* how|strong=\"H3588\"* to|strong=\"H1121\"* do|strong=\"H3190\"* good|strong=\"H3190\"*.”" + }, + { + "verseNum": 23, + "text": "I|strong=\"H2009\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* earth|strong=\"H8064\"* and|strong=\"H8064\"*, behold|strong=\"H2009\"*, it|strong=\"H7200\"* was|strong=\"H8064\"* waste|strong=\"H8414\"* and|strong=\"H8064\"* void, and|strong=\"H8064\"* the|strong=\"H7200\"* heavens|strong=\"H8064\"*, and|strong=\"H8064\"* they|strong=\"H7200\"* had|strong=\"H8064\"* no|strong=\"H7200\"* light." + }, + { + "verseNum": 24, + "text": "I|strong=\"H2009\"* saw|strong=\"H7200\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*, and|strong=\"H7200\"* behold|strong=\"H2009\"*, they|strong=\"H3605\"* trembled|strong=\"H7493\"*, and|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* hills|strong=\"H1389\"* moved|strong=\"H7493\"* back and|strong=\"H7200\"* forth." + }, + { + "verseNum": 25, + "text": "I|strong=\"H2009\"* saw|strong=\"H7200\"*, and|strong=\"H8064\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* was|strong=\"H3605\"* no|strong=\"H3605\"* man|strong=\"H3605\"*, and|strong=\"H8064\"* all|strong=\"H3605\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H3605\"* the|strong=\"H3605\"* sky|strong=\"H8064\"* had|strong=\"H8064\"* fled|strong=\"H5074\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H2009\"* saw|strong=\"H7200\"*, and|strong=\"H3068\"* behold|strong=\"H2009\"*, the|strong=\"H3605\"* fruitful|strong=\"H3759\"* field|strong=\"H3759\"* was|strong=\"H3068\"* a|strong=\"H3068\"* wilderness|strong=\"H4057\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* its|strong=\"H3605\"* cities|strong=\"H5892\"* were|strong=\"H5892\"* broken|strong=\"H5422\"* down|strong=\"H5422\"* at|strong=\"H3068\"* the|strong=\"H3605\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, before|strong=\"H6440\"* his|strong=\"H3605\"* fierce|strong=\"H2740\"* anger|strong=\"H6440\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “The|strong=\"H3605\"* whole|strong=\"H3605\"* land will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*; yet|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* make|strong=\"H6213\"* a|strong=\"H3068\"* full|strong=\"H3605\"* end|strong=\"H3617\"*." + }, + { + "verseNum": 28, + "text": "For|strong=\"H3588\"* this|strong=\"H2063\"* the|strong=\"H5921\"* earth|strong=\"H8064\"* will|strong=\"H8064\"* mourn|strong=\"H6937\"*, and|strong=\"H7725\"* the|strong=\"H5921\"* heavens|strong=\"H8064\"* above|strong=\"H4605\"* be|strong=\"H3808\"* black|strong=\"H6937\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1696\"* spoken|strong=\"H1696\"* it|strong=\"H5921\"*. I|strong=\"H3588\"* have|strong=\"H1696\"* planned|strong=\"H2161\"* it|strong=\"H5921\"*, and|strong=\"H7725\"* I|strong=\"H3588\"* have|strong=\"H1696\"* not|strong=\"H3808\"* repented|strong=\"H5162\"*, neither|strong=\"H3808\"* will|strong=\"H8064\"* I|strong=\"H3588\"* turn|strong=\"H7725\"* back|strong=\"H7725\"* from|strong=\"H4480\"* it|strong=\"H5921\"*.”" + }, + { + "verseNum": 29, + "text": "Every|strong=\"H3605\"* city|strong=\"H5892\"* flees|strong=\"H1272\"* for|strong=\"H3427\"* the|strong=\"H3605\"* noise|strong=\"H6963\"* of|strong=\"H3427\"* the|strong=\"H3605\"* horsemen|strong=\"H6571\"* and|strong=\"H6963\"* archers|strong=\"H7198\"*. They|strong=\"H2004\"* go|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H3605\"* thickets|strong=\"H5645\"* and|strong=\"H6963\"* climb|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H3427\"* the|strong=\"H3605\"* rocks|strong=\"H3710\"*. Every|strong=\"H3605\"* city|strong=\"H5892\"* is|strong=\"H3605\"* forsaken|strong=\"H5800\"*, and|strong=\"H6963\"* not|strong=\"H5927\"* a|strong=\"H3068\"* man|strong=\"H3605\"* dwells|strong=\"H3427\"* therein|strong=\"H2004\"*." + }, + { + "verseNum": 30, + "text": "You|strong=\"H3588\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5869\"* made|strong=\"H6213\"* desolate|strong=\"H7703\"*, what|strong=\"H4100\"* will|strong=\"H5869\"* you|strong=\"H3588\"* do|strong=\"H6213\"*? Though|strong=\"H3588\"* you|strong=\"H3588\"* clothe|strong=\"H3847\"* yourself|strong=\"H5315\"* with|strong=\"H3847\"* scarlet|strong=\"H8144\"*, though|strong=\"H3588\"* you|strong=\"H3588\"* deck|strong=\"H5710\"* yourself|strong=\"H5315\"* with|strong=\"H3847\"* ornaments|strong=\"H5716\"* of|strong=\"H5869\"* gold|strong=\"H2091\"*, though|strong=\"H3588\"* you|strong=\"H3588\"* enlarge|strong=\"H7167\"* your|strong=\"H6213\"* eyes|strong=\"H5869\"* with|strong=\"H3847\"* makeup, you|strong=\"H3588\"* make|strong=\"H6213\"* yourself|strong=\"H5315\"* beautiful|strong=\"H3302\"* in|strong=\"H6213\"* vain|strong=\"H7723\"*. Your|strong=\"H6213\"* lovers|strong=\"H5689\"* despise|strong=\"H3988\"* you|strong=\"H3588\"*. They|strong=\"H3588\"* seek|strong=\"H1245\"* your|strong=\"H6213\"* life|strong=\"H5315\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1323\"* heard|strong=\"H8085\"* a|strong=\"H3068\"* voice|strong=\"H6963\"* as|strong=\"H5315\"* of|strong=\"H1323\"* a|strong=\"H3068\"* woman|strong=\"H1323\"* in|strong=\"H8085\"* travail|strong=\"H2470\"*, the|strong=\"H8085\"* anguish|strong=\"H6869\"* as|strong=\"H5315\"* of|strong=\"H1323\"* her|strong=\"H6566\"* who|strong=\"H5315\"* gives birth|strong=\"H1069\"* to|strong=\"H8085\"* her|strong=\"H6566\"* first|strong=\"H1323\"* child|strong=\"H1069\"*, the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H1323\"* the|strong=\"H8085\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zion|strong=\"H6726\"*, who|strong=\"H5315\"* gasps for|strong=\"H3588\"* breath|strong=\"H5315\"*, who|strong=\"H5315\"* spreads|strong=\"H6566\"* her|strong=\"H6566\"* hands|strong=\"H3709\"*, saying|strong=\"H6963\"*, “Woe is|strong=\"H5315\"* me|strong=\"H4994\"* now|strong=\"H4994\"*! For|strong=\"H3588\"* my|strong=\"H8085\"* soul|strong=\"H5315\"* faints before|strong=\"H5888\"* the|strong=\"H8085\"* murderers|strong=\"H2026\"*.”" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "“Run|strong=\"H4941\"* back|strong=\"H3045\"* and|strong=\"H4941\"* forth|strong=\"H6213\"* through|strong=\"H7751\"* the|strong=\"H7200\"* streets|strong=\"H2351\"* of|strong=\"H2351\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H4941\"* see|strong=\"H7200\"* now|strong=\"H4994\"*, and|strong=\"H4941\"* know|strong=\"H3045\"*, and|strong=\"H4941\"* seek|strong=\"H1245\"* in|strong=\"H6213\"* its|strong=\"H6213\"* wide places|strong=\"H7339\"*, if|strong=\"H7200\"* you|strong=\"H6213\"* can|strong=\"H6213\"* find|strong=\"H4672\"* a|strong=\"H3068\"* man|strong=\"H3045\"*, if|strong=\"H7200\"* there|strong=\"H3426\"* is|strong=\"H3426\"* anyone|strong=\"H7200\"* who|strong=\"H4672\"* does|strong=\"H6213\"* justly|strong=\"H4941\"*, who|strong=\"H4672\"* seeks|strong=\"H1245\"* truth, then|strong=\"H6213\"* I|strong=\"H3045\"* will|strong=\"H3389\"* pardon|strong=\"H5545\"* her|strong=\"H7200\"*." + }, + { + "verseNum": 2, + "text": "Though they|strong=\"H3651\"* say, ‘As|strong=\"H3651\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*,’ surely|strong=\"H3651\"* they|strong=\"H3651\"* swear|strong=\"H7650\"* falsely|strong=\"H8267\"*.”" + }, + { + "verseNum": 3, + "text": "O|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, don’t your|strong=\"H3068\"* eyes|strong=\"H5869\"* look|strong=\"H5869\"* on|strong=\"H3068\"* truth|strong=\"H3808\"*? You|strong=\"H6440\"* have|strong=\"H3068\"* stricken|strong=\"H5221\"* them|strong=\"H7725\"*, but|strong=\"H3808\"* they|strong=\"H3068\"* were|strong=\"H5869\"* not|strong=\"H3808\"* grieved|strong=\"H2342\"*. You|strong=\"H6440\"* have|strong=\"H3068\"* consumed|strong=\"H3615\"* them|strong=\"H7725\"*, but|strong=\"H3808\"* they|strong=\"H3068\"* have|strong=\"H3068\"* refused|strong=\"H3985\"* to|strong=\"H7725\"* receive|strong=\"H3947\"* correction|strong=\"H4148\"*. They|strong=\"H3068\"* have|strong=\"H3068\"* made|strong=\"H2388\"* their|strong=\"H3068\"* faces|strong=\"H6440\"* harder|strong=\"H2388\"* than|strong=\"H3808\"* a|strong=\"H3068\"* rock|strong=\"H5553\"*. They|strong=\"H3068\"* have|strong=\"H3068\"* refused|strong=\"H3985\"* to|strong=\"H7725\"* return|strong=\"H7725\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H3588\"* I|strong=\"H3588\"* said, “Surely|strong=\"H3588\"* these|strong=\"H1992\"* are|strong=\"H1992\"* poor|strong=\"H1800\"*. They|strong=\"H1992\"* are|strong=\"H1992\"* foolish|strong=\"H2973\"*; for|strong=\"H3588\"* they|strong=\"H1992\"* don’t know|strong=\"H3045\"* Yahweh|strong=\"H3068\"*’s way|strong=\"H1870\"*, nor|strong=\"H3808\"* the|strong=\"H3588\"* law|strong=\"H4941\"* of|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* go|strong=\"H3212\"* to|strong=\"H1696\"* the|strong=\"H3588\"* great|strong=\"H1419\"* men|strong=\"H1419\"* and|strong=\"H3068\"* will|strong=\"H3068\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H1992\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* know|strong=\"H3045\"* the|strong=\"H3588\"* way|strong=\"H1870\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* the|strong=\"H3588\"* law|strong=\"H4941\"* of|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*.” But|strong=\"H3588\"* these|strong=\"H1992\"* with|strong=\"H3068\"* one|strong=\"H3588\"* accord|strong=\"H3162\"* have|strong=\"H3068\"* broken|strong=\"H7665\"* the|strong=\"H3588\"* yoke|strong=\"H5923\"*, and|strong=\"H3068\"* burst|strong=\"H5423\"* the|strong=\"H3588\"* bonds|strong=\"H4147\"*." + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3651\"* a|strong=\"H3068\"* lion out|strong=\"H3318\"* of|strong=\"H5892\"* the|strong=\"H3605\"* forest|strong=\"H3293\"* will|strong=\"H5892\"* kill|strong=\"H5221\"* them|strong=\"H5921\"*. A|strong=\"H3068\"* wolf|strong=\"H2061\"* of|strong=\"H5892\"* the|strong=\"H3605\"* evenings|strong=\"H6160\"* will|strong=\"H5892\"* destroy|strong=\"H7703\"* them|strong=\"H5921\"*. A|strong=\"H3068\"* leopard|strong=\"H5246\"* will|strong=\"H5892\"* watch|strong=\"H8245\"* against|strong=\"H5921\"* their|strong=\"H3605\"* cities|strong=\"H5892\"*. Everyone|strong=\"H3605\"* who|strong=\"H3605\"* goes|strong=\"H3318\"* out|strong=\"H3318\"* there|strong=\"H3605\"* will|strong=\"H5892\"* be|strong=\"H5892\"* torn|strong=\"H2963\"* in|strong=\"H5921\"* pieces|strong=\"H2963\"*, because|strong=\"H3588\"* their|strong=\"H3605\"* transgressions|strong=\"H6588\"* are|strong=\"H6588\"* many|strong=\"H7231\"* and|strong=\"H5892\"* their|strong=\"H3605\"* backsliding|strong=\"H4878\"* has|strong=\"H3588\"* increased|strong=\"H6105\"*." + }, + { + "verseNum": 7, + "text": "“How can|strong=\"H3808\"* I|strong=\"H3808\"* pardon|strong=\"H5545\"* you|strong=\"H3808\"*? Your|strong=\"H3808\"* children|strong=\"H1121\"* have|strong=\"H1121\"* forsaken|strong=\"H5800\"* me|strong=\"H5800\"*, and|strong=\"H1121\"* sworn|strong=\"H7650\"* by|strong=\"H7650\"* what|strong=\"H2063\"* are|strong=\"H1121\"* no|strong=\"H3808\"* gods. When|strong=\"H1121\"* I|strong=\"H3808\"* had|strong=\"H1121\"* fed|strong=\"H7646\"* them|strong=\"H1121\"* to|strong=\"H1121\"* the|strong=\"H5800\"* full|strong=\"H7646\"*, they|strong=\"H3808\"* committed|strong=\"H5003\"* adultery|strong=\"H5003\"*, and|strong=\"H1121\"* assembled themselves in|strong=\"H1004\"* troops|strong=\"H1413\"* at|strong=\"H1004\"* the|strong=\"H5800\"* prostitutes|strong=\"H2181\"*’ houses|strong=\"H1004\"*." + }, + { + "verseNum": 8, + "text": "They were|strong=\"H1961\"* as|strong=\"H1961\"* fed|strong=\"H2109\"* horses|strong=\"H5483\"* roaming at|strong=\"H1961\"* large. Everyone neighed|strong=\"H6670\"* after|strong=\"H1961\"* his|strong=\"H1961\"* neighbor|strong=\"H7453\"*’s wife." + }, + { + "verseNum": 9, + "text": "Shouldn’t I|strong=\"H5921\"* punish|strong=\"H6485\"* them|strong=\"H5921\"* for|strong=\"H5921\"* these|strong=\"H2088\"* things|strong=\"H3808\"*?” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. “Shouldn’t my|strong=\"H3068\"* soul|strong=\"H5315\"* be|strong=\"H3808\"* avenged|strong=\"H5358\"* on|strong=\"H5921\"* such|strong=\"H2088\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* as|strong=\"H5315\"* this|strong=\"H2088\"*?" + }, + { + "verseNum": 10, + "text": "“Go|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H3068\"* her|strong=\"H5493\"* walls|strong=\"H8284\"*, and|strong=\"H3068\"* destroy|strong=\"H7843\"*, but|strong=\"H3588\"* don’t make|strong=\"H6213\"* a|strong=\"H3068\"* full|strong=\"H3617\"* end|strong=\"H3617\"*. Take|strong=\"H5493\"* away|strong=\"H5493\"* her|strong=\"H5493\"* branches|strong=\"H5189\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* not|strong=\"H3808\"* Yahweh|strong=\"H3068\"*’s." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* have|strong=\"H3068\"* dealt very treacherously against|strong=\"H3068\"* me|strong=\"H3588\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3068\"* have|strong=\"H3068\"* denied|strong=\"H3584\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said, “It|strong=\"H1931\"* is|strong=\"H3068\"* not|strong=\"H3808\"* he|strong=\"H1931\"*. Evil|strong=\"H7451\"* won’t come on|strong=\"H5921\"* us|strong=\"H5921\"*. We|strong=\"H7200\"* won’t see|strong=\"H7200\"* sword|strong=\"H2719\"* or|strong=\"H3808\"* famine|strong=\"H7458\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3541\"* prophets|strong=\"H5030\"* will|strong=\"H1961\"* become|strong=\"H1961\"* wind|strong=\"H7307\"*, and|strong=\"H6213\"* the|strong=\"H3541\"* word|strong=\"H1699\"* is|strong=\"H7307\"* not|strong=\"H6213\"* in|strong=\"H6213\"* them|strong=\"H6213\"*. Thus|strong=\"H3541\"* it|strong=\"H6213\"* will|strong=\"H1961\"* be|strong=\"H1961\"* done|strong=\"H6213\"* to|strong=\"H1961\"* them|strong=\"H6213\"*.”" + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*, “Because|strong=\"H3282\"* you|strong=\"H5414\"* speak|strong=\"H1696\"* this|strong=\"H2088\"* word|strong=\"H1697\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* make|strong=\"H5414\"* my|strong=\"H5414\"* words|strong=\"H1697\"* in|strong=\"H3068\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"* fire, and|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"* wood|strong=\"H6086\"*, and|strong=\"H3068\"* it|strong=\"H5414\"* will|strong=\"H3068\"* devour them|strong=\"H5414\"*." + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* bring|strong=\"H3045\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* on|strong=\"H5921\"* you|strong=\"H5921\"* from|strong=\"H5921\"* far|strong=\"H4801\"* away|strong=\"H4801\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. “It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* mighty nation|strong=\"H1471\"*. It|strong=\"H1931\"* is|strong=\"H3068\"* an|strong=\"H3068\"* ancient|strong=\"H5769\"* nation|strong=\"H1471\"*, a|strong=\"H3068\"* nation|strong=\"H1471\"* whose|strong=\"H1471\"* language|strong=\"H3956\"* you|strong=\"H5921\"* don’t know|strong=\"H3045\"* and|strong=\"H3478\"* don’t understand|strong=\"H3045\"* what|strong=\"H4100\"* they|strong=\"H3068\"* say|strong=\"H1696\"*." + }, + { + "verseNum": 16, + "text": "Their|strong=\"H3605\"* quiver is|strong=\"H3605\"* an|strong=\"H6605\"* open|strong=\"H6605\"* tomb|strong=\"H6913\"*. They|strong=\"H3605\"* are|strong=\"H1368\"* all|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H2007\"* will|strong=\"H2719\"* eat|strong=\"H3899\"* up|strong=\"H1121\"* your|strong=\"H6629\"* harvest|strong=\"H7105\"* and|strong=\"H1121\"* your|strong=\"H6629\"* bread|strong=\"H3899\"*, which|strong=\"H5892\"* your|strong=\"H6629\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H6629\"* daughters|strong=\"H1323\"* should|strong=\"H1323\"* eat|strong=\"H3899\"*. They|strong=\"H2007\"* will|strong=\"H2719\"* eat|strong=\"H3899\"* up|strong=\"H1121\"* your|strong=\"H6629\"* flocks|strong=\"H6629\"* and|strong=\"H1121\"* your|strong=\"H6629\"* herds|strong=\"H1241\"*. They|strong=\"H2007\"* will|strong=\"H2719\"* eat|strong=\"H3899\"* up|strong=\"H1121\"* your|strong=\"H6629\"* vines|strong=\"H1612\"* and|strong=\"H1121\"* your|strong=\"H6629\"* fig|strong=\"H8384\"* trees|strong=\"H8384\"*. They|strong=\"H2007\"* will|strong=\"H2719\"* beat down|strong=\"H7567\"* your|strong=\"H6629\"* fortified|strong=\"H4013\"* cities|strong=\"H5892\"* in|strong=\"H5892\"* which|strong=\"H5892\"* you|strong=\"H2007\"* trust with|strong=\"H3899\"* the|strong=\"H1121\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 18, + "text": "“But|strong=\"H3808\"* even|strong=\"H1571\"* in|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “I|strong=\"H3117\"* will|strong=\"H3068\"* not|strong=\"H3808\"* make|strong=\"H6213\"* a|strong=\"H3068\"* full|strong=\"H3117\"* end|strong=\"H3617\"* of|strong=\"H3068\"* you|strong=\"H3117\"*." + }, + { + "verseNum": 19, + "text": "It|strong=\"H3588\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* when|strong=\"H3588\"* you|strong=\"H3588\"* say, ‘Why|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* done|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* things|strong=\"H3605\"* to|strong=\"H3068\"* us|strong=\"H6213\"*?’ Then|strong=\"H1961\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* say to|strong=\"H3068\"* them|strong=\"H6213\"*, ‘Just|strong=\"H3605\"* as|strong=\"H1961\"* you|strong=\"H3588\"* have|strong=\"H1961\"* forsaken|strong=\"H5800\"* me|strong=\"H6213\"* and|strong=\"H3068\"* served|strong=\"H5647\"* foreign|strong=\"H5236\"* gods in|strong=\"H3068\"* your|strong=\"H3068\"* land, so|strong=\"H3651\"* you|strong=\"H3588\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* strangers|strong=\"H2114\"* in|strong=\"H3068\"* a|strong=\"H3068\"* land that|strong=\"H3588\"* is|strong=\"H3068\"* not|strong=\"H3808\"* yours.’" + }, + { + "verseNum": 20, + "text": "“Declare|strong=\"H5046\"* this|strong=\"H2063\"* in|strong=\"H1004\"* the|strong=\"H8085\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*, and|strong=\"H3063\"* publish|strong=\"H8085\"* it|strong=\"H2063\"* in|strong=\"H1004\"* Judah|strong=\"H3063\"*, saying," + }, + { + "verseNum": 21, + "text": "‘Hear|strong=\"H8085\"* this|strong=\"H2063\"* now|strong=\"H4994\"*, foolish|strong=\"H5530\"* people|strong=\"H5971\"* without|strong=\"H3808\"* understanding|strong=\"H3820\"*, who|strong=\"H5971\"* have|strong=\"H5869\"* eyes|strong=\"H5869\"*, and|strong=\"H5971\"* don’t see|strong=\"H7200\"*, who|strong=\"H5971\"* have|strong=\"H5869\"* ears, and|strong=\"H5971\"* don’t hear|strong=\"H8085\"*:" + }, + { + "verseNum": 22, + "text": "Don’t you|strong=\"H6440\"* fear|strong=\"H3372\"* me|strong=\"H6440\"*?’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; ‘Won’t you|strong=\"H6440\"* tremble|strong=\"H2342\"* at|strong=\"H3068\"* my|strong=\"H3068\"* presence|strong=\"H6440\"*, who|strong=\"H3068\"* have|strong=\"H3068\"* placed|strong=\"H7760\"* the|strong=\"H6440\"* sand|strong=\"H2344\"* for|strong=\"H6440\"* the|strong=\"H6440\"* bound|strong=\"H1366\"* of|strong=\"H3068\"* the|strong=\"H6440\"* sea|strong=\"H3220\"* by|strong=\"H5674\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* decree|strong=\"H2706\"*, that|strong=\"H3068\"* it|strong=\"H7760\"* can|strong=\"H3201\"*’t pass|strong=\"H5674\"* it|strong=\"H7760\"*? Though its|strong=\"H7760\"* waves|strong=\"H1530\"* toss|strong=\"H1607\"* themselves|strong=\"H7760\"*, yet|strong=\"H3068\"* they|strong=\"H3068\"* can|strong=\"H3201\"*’t prevail|strong=\"H3201\"*. Though they|strong=\"H3068\"* roar|strong=\"H1993\"*, they|strong=\"H3068\"* still|strong=\"H3201\"* can|strong=\"H3201\"*’t pass|strong=\"H5674\"* over|strong=\"H5674\"* it|strong=\"H7760\"*.’" + }, + { + "verseNum": 23, + "text": "“But|strong=\"H1961\"* this|strong=\"H2088\"* people|strong=\"H5971\"* has|strong=\"H1961\"* a|strong=\"H3068\"* revolting|strong=\"H5637\"* and|strong=\"H3212\"* a|strong=\"H3068\"* rebellious|strong=\"H4784\"* heart|strong=\"H3820\"*. They|strong=\"H5971\"* have|strong=\"H1961\"* revolted|strong=\"H5493\"* and|strong=\"H3212\"* gone|strong=\"H3212\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H3068\"* don’t say in|strong=\"H3068\"* their|strong=\"H3068\"* heart|strong=\"H3824\"*, ‘Let|strong=\"H4994\"*’s now|strong=\"H4994\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* gives|strong=\"H5414\"* rain|strong=\"H1653\"*, both the|strong=\"H5414\"* former|strong=\"H3138\"* and|strong=\"H3068\"* the|strong=\"H5414\"* latter|strong=\"H4456\"*, in|strong=\"H3068\"* its|strong=\"H5414\"* season|strong=\"H6256\"*, who|strong=\"H3068\"* preserves|strong=\"H8104\"* to|strong=\"H3068\"* us|strong=\"H5414\"* the|strong=\"H5414\"* appointed|strong=\"H5414\"* weeks|strong=\"H7620\"* of|strong=\"H3068\"* the|strong=\"H5414\"* harvest|strong=\"H7105\"*.’" + }, + { + "verseNum": 25, + "text": "“Your|strong=\"H5186\"* iniquities|strong=\"H5771\"* have|strong=\"H5771\"* turned|strong=\"H5186\"* away|strong=\"H5186\"* these|strong=\"H5186\"* things|strong=\"H2896\"*, and|strong=\"H2896\"* your|strong=\"H5186\"* sins|strong=\"H2403\"* have|strong=\"H5771\"* withheld|strong=\"H4513\"* good|strong=\"H2896\"* from|strong=\"H4480\"* you|strong=\"H4480\"*." + }, + { + "verseNum": 26, + "text": "For|strong=\"H3588\"* wicked|strong=\"H7563\"* men|strong=\"H5971\"* are|strong=\"H5971\"* found|strong=\"H4672\"* among|strong=\"H4672\"* my|strong=\"H3588\"* people|strong=\"H5971\"*. They|strong=\"H3588\"* watch|strong=\"H7789\"*, as|strong=\"H3588\"* fowlers|strong=\"H3353\"* lie|strong=\"H7789\"* in|strong=\"H4672\"* wait|strong=\"H7789\"*. They|strong=\"H3588\"* set|strong=\"H5324\"* a|strong=\"H3068\"* trap|strong=\"H4889\"*. They|strong=\"H3588\"* catch|strong=\"H3920\"* men|strong=\"H5971\"*." + }, + { + "verseNum": 27, + "text": "As|strong=\"H3651\"* a|strong=\"H3068\"* cage|strong=\"H3619\"* is|strong=\"H3651\"* full|strong=\"H4392\"* of|strong=\"H1004\"* birds|strong=\"H5775\"*, so|strong=\"H3651\"* are|strong=\"H1004\"* their|strong=\"H5921\"* houses|strong=\"H1004\"* full|strong=\"H4392\"* of|strong=\"H1004\"* deceit|strong=\"H4820\"*. Therefore|strong=\"H3651\"* they|strong=\"H3651\"* have|strong=\"H1004\"* become|strong=\"H1431\"* great|strong=\"H1431\"*, and|strong=\"H1004\"* grew|strong=\"H1431\"* rich|strong=\"H6238\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"H3808\"* have|strong=\"H1571\"* grown|strong=\"H8080\"* fat|strong=\"H8080\"*. They|strong=\"H3808\"* shine|strong=\"H6245\"*; yes|strong=\"H1571\"*, they|strong=\"H3808\"* excel|strong=\"H5674\"* in|strong=\"H1697\"* deeds|strong=\"H1697\"* of|strong=\"H1697\"* wickedness|strong=\"H7451\"*. They|strong=\"H3808\"* don’t plead|strong=\"H8199\"* the|strong=\"H5674\"* cause|strong=\"H4941\"*, the|strong=\"H5674\"* cause|strong=\"H4941\"* of|strong=\"H1697\"* the|strong=\"H5674\"* fatherless|strong=\"H3490\"*, that|strong=\"H1697\"* they|strong=\"H3808\"* may|strong=\"H1571\"* prosper|strong=\"H6743\"*; and|strong=\"H4941\"* they|strong=\"H3808\"* don’t defend|strong=\"H8199\"* the|strong=\"H5674\"* rights|strong=\"H1779\"* of|strong=\"H1697\"* the|strong=\"H5674\"* needy." + }, + { + "verseNum": 29, + "text": "“Shouldn’t I|strong=\"H5921\"* punish|strong=\"H6485\"* for|strong=\"H5921\"* these|strong=\"H2088\"* things|strong=\"H3808\"*?” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. “Shouldn’t my|strong=\"H3068\"* soul|strong=\"H5315\"* be|strong=\"H3808\"* avenged|strong=\"H5358\"* on|strong=\"H5921\"* such|strong=\"H2088\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* as|strong=\"H5315\"* this|strong=\"H2088\"*?" + }, + { + "verseNum": 30, + "text": "“An|strong=\"H1961\"* astonishing and|strong=\"H8047\"* horrible|strong=\"H8186\"* thing|strong=\"H8186\"* has|strong=\"H1961\"* happened|strong=\"H1961\"* in|strong=\"H1961\"* the|strong=\"H1961\"* land." + }, + { + "verseNum": 31, + "text": "The|strong=\"H5921\"* prophets|strong=\"H5030\"* prophesy|strong=\"H5012\"* falsely|strong=\"H8267\"*, and|strong=\"H3027\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* rule|strong=\"H7287\"* by|strong=\"H3027\"* their|strong=\"H5921\"* own|strong=\"H3548\"* authority|strong=\"H3027\"*; and|strong=\"H3027\"* my|strong=\"H5921\"* people|strong=\"H5971\"* love to|strong=\"H6213\"* have|strong=\"H5971\"* it|strong=\"H5921\"* so|strong=\"H3651\"*. What|strong=\"H4100\"* will|strong=\"H5971\"* you|strong=\"H5921\"* do|strong=\"H6213\"* in|strong=\"H5921\"* the|strong=\"H5921\"* end|strong=\"H4100\"* of|strong=\"H3027\"* it|strong=\"H5921\"*?" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "“Flee|strong=\"H5756\"* for|strong=\"H3588\"* safety|strong=\"H5756\"*, you|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, out|strong=\"H8259\"* of|strong=\"H1121\"* the|strong=\"H5921\"* middle|strong=\"H7130\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*! Blow|strong=\"H8628\"* the|strong=\"H5921\"* trumpet|strong=\"H7782\"* in|strong=\"H5921\"* Tekoa|strong=\"H8620\"* and|strong=\"H1121\"* raise|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* signal|strong=\"H4864\"* on|strong=\"H5921\"* Beth Haccherem, for|strong=\"H3588\"* evil|strong=\"H7451\"* looks|strong=\"H8259\"* out|strong=\"H8259\"* from|strong=\"H5921\"* the|strong=\"H5921\"* north|strong=\"H6828\"* with|strong=\"H5921\"* a|strong=\"H3068\"* great|strong=\"H1419\"* destruction|strong=\"H7667\"*." + }, + { + "verseNum": 2, + "text": "I will|strong=\"H1323\"* cut|strong=\"H1820\"* off|strong=\"H1820\"* the|strong=\"H6726\"* beautiful and|strong=\"H1323\"* delicate|strong=\"H6026\"* one, the|strong=\"H6726\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zion|strong=\"H6726\"*." + }, + { + "verseNum": 3, + "text": "Shepherds|strong=\"H7462\"* with|strong=\"H5921\"* their|strong=\"H5921\"* flocks|strong=\"H5739\"* will|strong=\"H3027\"* come to|strong=\"H5921\"* her|strong=\"H5921\"*. They|strong=\"H5921\"* will|strong=\"H3027\"* pitch|strong=\"H8628\"* their|strong=\"H5921\"* tents against|strong=\"H5921\"* her|strong=\"H5921\"* all|strong=\"H5439\"* around|strong=\"H5439\"*. They|strong=\"H5921\"* will|strong=\"H3027\"* feed|strong=\"H7462\"* everyone in|strong=\"H5921\"* his|strong=\"H5921\"* place|strong=\"H3027\"*.”" + }, + { + "verseNum": 4, + "text": "“Prepare|strong=\"H6942\"* war|strong=\"H4421\"* against|strong=\"H5921\"* her|strong=\"H5921\"*! Arise|strong=\"H6965\"*! Let|strong=\"H5186\"*’s go|strong=\"H5927\"* up|strong=\"H5927\"* at|strong=\"H5921\"* noon|strong=\"H6672\"*. Woe to|strong=\"H5927\"* us|strong=\"H5921\"*! For|strong=\"H3588\"* the|strong=\"H5921\"* day|strong=\"H3117\"* declines|strong=\"H6437\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* shadows|strong=\"H6752\"* of|strong=\"H3117\"* the|strong=\"H5921\"* evening|strong=\"H6153\"* are|strong=\"H3117\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"*." + }, + { + "verseNum": 5, + "text": "Arise|strong=\"H6965\"*! Let’s go|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H6965\"* night|strong=\"H3915\"*, and|strong=\"H6965\"* let’s destroy|strong=\"H7843\"* her|strong=\"H7843\"* palaces.”" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* said, “Cut|strong=\"H3772\"* down|strong=\"H3772\"* trees|strong=\"H6097\"*, and|strong=\"H3068\"* cast|strong=\"H8210\"* up|strong=\"H5921\"* a|strong=\"H3068\"* mound against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*. This|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H3605\"* city|strong=\"H5892\"* to|strong=\"H3068\"* be|strong=\"H3068\"* visited|strong=\"H6485\"*. She|strong=\"H1931\"* is|strong=\"H3068\"* filled with|strong=\"H3068\"* oppression|strong=\"H6233\"* within|strong=\"H7130\"* herself|strong=\"H1931\"*." + }, + { + "verseNum": 7, + "text": "As|strong=\"H3651\"* a|strong=\"H3068\"* well|strong=\"H3651\"* produces its|strong=\"H5921\"* waters|strong=\"H4325\"*, so|strong=\"H3651\"* she|strong=\"H5921\"* produces her|strong=\"H5921\"* wickedness|strong=\"H7451\"*. Violence|strong=\"H2555\"* and|strong=\"H6440\"* destruction|strong=\"H7701\"* is|strong=\"H3651\"* heard|strong=\"H8085\"* in|strong=\"H5921\"* her|strong=\"H5921\"*. Sickness|strong=\"H2483\"* and|strong=\"H6440\"* wounds|strong=\"H4347\"* are|strong=\"H4325\"* continually|strong=\"H8548\"* before|strong=\"H6440\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "Be|strong=\"H3808\"* instructed|strong=\"H3256\"*, Jerusalem|strong=\"H3389\"*, lest|strong=\"H6435\"* my|strong=\"H7760\"* soul|strong=\"H5315\"* be|strong=\"H3808\"* alienated|strong=\"H3363\"* from|strong=\"H4480\"* you|strong=\"H7760\"*, lest|strong=\"H6435\"* I|strong=\"H7760\"* make|strong=\"H7760\"* you|strong=\"H7760\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*, an|strong=\"H7760\"* uninhabited|strong=\"H8077\"* land.”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*, “They|strong=\"H3068\"* will|strong=\"H3068\"* thoroughly|strong=\"H5953\"* glean|strong=\"H5953\"* the|strong=\"H5921\"* remnant|strong=\"H7611\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* like|strong=\"H3478\"* a|strong=\"H3068\"* vine|strong=\"H1612\"*. Turn|strong=\"H7725\"* again|strong=\"H7725\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* as|strong=\"H3068\"* a|strong=\"H3068\"* grape gatherer|strong=\"H1219\"* into|strong=\"H7725\"* the|strong=\"H5921\"* baskets|strong=\"H5552\"*.”" + }, + { + "verseNum": 10, + "text": "To|strong=\"H1696\"* whom|strong=\"H4310\"* should|strong=\"H3068\"* I|strong=\"H2009\"* speak|strong=\"H1696\"* and|strong=\"H3068\"* testify|strong=\"H5749\"*, that|strong=\"H8085\"* they|strong=\"H3068\"* may|strong=\"H1961\"* hear|strong=\"H8085\"*? Behold|strong=\"H2009\"*, their|strong=\"H3068\"* ear|strong=\"H8085\"* is|strong=\"H3068\"* uncircumcised|strong=\"H6189\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* can|strong=\"H4310\"*’t listen|strong=\"H8085\"*. Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* has|strong=\"H3068\"* become|strong=\"H1961\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* to|strong=\"H1696\"* them|strong=\"H5921\"*. They|strong=\"H3068\"* have|strong=\"H1961\"* no|strong=\"H3808\"* delight|strong=\"H2654\"* in|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H5921\"* I|strong=\"H3588\"* am|strong=\"H3068\"* full|strong=\"H4392\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s wrath|strong=\"H2534\"*. I|strong=\"H3588\"* am|strong=\"H3068\"* weary|strong=\"H3811\"* with|strong=\"H5973\"* holding|strong=\"H3557\"* it|strong=\"H5921\"* in|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "Their|strong=\"H3068\"* houses|strong=\"H1004\"* will|strong=\"H3068\"* be|strong=\"H3027\"* turned|strong=\"H5437\"* to|strong=\"H3068\"* others," + }, + { + "verseNum": 13, + "text": "“For|strong=\"H3588\"* from|strong=\"H5704\"* their|strong=\"H3605\"* least|strong=\"H6996\"* even|strong=\"H5704\"* to|strong=\"H5704\"* their|strong=\"H3605\"* greatest|strong=\"H1419\"*, everyone|strong=\"H3605\"* is|strong=\"H3605\"* given|strong=\"H1214\"* to|strong=\"H5704\"* covetousness|strong=\"H1215\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H5921\"* have|strong=\"H5971\"* healed|strong=\"H7495\"* also|strong=\"H5971\"* the|strong=\"H5921\"* hurt|strong=\"H7667\"* of|strong=\"H5971\"* my|strong=\"H5921\"* people|strong=\"H5971\"* superficially|strong=\"H7043\"*," + }, + { + "verseNum": 15, + "text": "Were|strong=\"H6485\"* they|strong=\"H3588\"* ashamed|strong=\"H3637\"* when|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* committed|strong=\"H6213\"* abomination|strong=\"H8441\"*?" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Stand|strong=\"H5975\"* in|strong=\"H5921\"* the|strong=\"H5921\"* ways|strong=\"H1870\"* and|strong=\"H3068\"* see|strong=\"H7200\"*, and|strong=\"H3068\"* ask|strong=\"H7592\"* for|strong=\"H5921\"* the|strong=\"H5921\"* old|strong=\"H5769\"* paths|strong=\"H5410\"*, ‘Where|strong=\"H5921\"* is|strong=\"H3068\"* the|strong=\"H5921\"* good|strong=\"H2896\"* way|strong=\"H1870\"*?’ and|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H3068\"* you|strong=\"H5921\"* will|strong=\"H3068\"* find|strong=\"H4672\"* rest|strong=\"H4771\"* for|strong=\"H5921\"* your|strong=\"H3068\"* souls|strong=\"H5315\"*. But|strong=\"H3808\"* they|strong=\"H3068\"* said, ‘We|strong=\"H5315\"* will|strong=\"H3068\"* not|strong=\"H3808\"* walk|strong=\"H3212\"* in|strong=\"H5921\"* it|strong=\"H5921\"*.’" + }, + { + "verseNum": 17, + "text": "I|strong=\"H5921\"* set|strong=\"H6965\"* watchmen|strong=\"H6822\"* over|strong=\"H5921\"* you|strong=\"H5921\"*, saying|strong=\"H6963\"*, ‘Listen|strong=\"H7181\"* to|strong=\"H5921\"* the|strong=\"H5921\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H5921\"* trumpet|strong=\"H7782\"*!’ But|strong=\"H3808\"* they|strong=\"H3808\"* said, ‘We will|strong=\"H3808\"* not|strong=\"H3808\"* listen|strong=\"H7181\"*!’" + }, + { + "verseNum": 18, + "text": "Therefore|strong=\"H3651\"* hear|strong=\"H8085\"*, you|strong=\"H3045\"* nations|strong=\"H1471\"*, and|strong=\"H8085\"* know|strong=\"H3045\"*, congregation|strong=\"H5712\"*, what|strong=\"H3045\"* is|strong=\"H3651\"* among them|strong=\"H8085\"*." + }, + { + "verseNum": 19, + "text": "Hear|strong=\"H8085\"*, earth! Behold|strong=\"H2009\"*, I|strong=\"H3588\"* will|strong=\"H5971\"* bring|strong=\"H7451\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, even|strong=\"H3588\"* the|strong=\"H5921\"* fruit|strong=\"H6529\"* of|strong=\"H1697\"* their|strong=\"H8085\"* thoughts|strong=\"H4284\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H5971\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H5921\"* my|strong=\"H8085\"* words|strong=\"H1697\"*; and|strong=\"H5971\"* as|strong=\"H1697\"* for|strong=\"H3588\"* my|strong=\"H8085\"* law|strong=\"H8451\"*, they|strong=\"H3588\"* have|strong=\"H5971\"* rejected|strong=\"H3988\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 20, + "text": "To|strong=\"H2896\"* what|strong=\"H4100\"* purpose|strong=\"H2088\"* does|strong=\"H4100\"* frankincense|strong=\"H3828\"* from|strong=\"H2896\"* Sheba|strong=\"H7614\"* come to|strong=\"H2896\"* me|strong=\"H3808\"*, and|strong=\"H5930\"* the|strong=\"H3808\"* sweet|strong=\"H6149\"* cane|strong=\"H7070\"* from|strong=\"H2896\"* a|strong=\"H3068\"* far|strong=\"H4801\"* country? Your|strong=\"H3808\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* are|strong=\"H4100\"* not|strong=\"H3808\"* acceptable|strong=\"H7522\"*, and|strong=\"H5930\"* your|strong=\"H3808\"* sacrifices|strong=\"H2077\"* are|strong=\"H4100\"* not|strong=\"H3808\"* pleasing|strong=\"H2896\"* to|strong=\"H2896\"* me|strong=\"H3808\"*.”" + }, + { + "verseNum": 21, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* lay|strong=\"H5414\"* stumbling|strong=\"H4383\"* blocks|strong=\"H4383\"* before|strong=\"H5971\"* this|strong=\"H2088\"* people|strong=\"H5971\"*. The|strong=\"H5414\"* fathers and|strong=\"H1121\"* the|strong=\"H5414\"* sons|strong=\"H1121\"* together|strong=\"H3162\"* will|strong=\"H3068\"* stumble|strong=\"H3782\"* against|strong=\"H3068\"* them|strong=\"H5414\"*. The|strong=\"H5414\"* neighbor|strong=\"H7453\"* and|strong=\"H1121\"* his|strong=\"H5414\"* friend|strong=\"H7453\"* will|strong=\"H3068\"* perish.”" + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Behold|strong=\"H2009\"*, a|strong=\"H3068\"* people|strong=\"H5971\"* comes from|strong=\"H1471\"* the|strong=\"H3541\"* north|strong=\"H6828\"* country. A|strong=\"H3068\"* great|strong=\"H1419\"* nation|strong=\"H1471\"* will|strong=\"H3068\"* be|strong=\"H3068\"* stirred|strong=\"H5782\"* up|strong=\"H5782\"* from|strong=\"H1471\"* the|strong=\"H3541\"* uttermost parts|strong=\"H3411\"* of|strong=\"H3068\"* the|strong=\"H3541\"* earth." + }, + { + "verseNum": 23, + "text": "They|strong=\"H3808\"* take|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H1323\"* bow|strong=\"H7198\"* and|strong=\"H6963\"* spear|strong=\"H3591\"*. They|strong=\"H3808\"* are|strong=\"H6726\"* cruel, and|strong=\"H6963\"* have|strong=\"H7355\"* no|strong=\"H3808\"* mercy|strong=\"H7355\"*. Their|strong=\"H5921\"* voice|strong=\"H6963\"* roars|strong=\"H1993\"* like|strong=\"H1993\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*, and|strong=\"H6963\"* they|strong=\"H3808\"* ride|strong=\"H7392\"* on|strong=\"H5921\"* horses|strong=\"H5483\"*, everyone set|strong=\"H6186\"* in|strong=\"H5921\"* array|strong=\"H6186\"*, as|strong=\"H1323\"* a|strong=\"H3068\"* man to|strong=\"H5921\"* the|strong=\"H5921\"* battle|strong=\"H4421\"*, against|strong=\"H5921\"* you|strong=\"H5921\"*, daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zion|strong=\"H6726\"*.”" + }, + { + "verseNum": 24, + "text": "We|strong=\"H8085\"* have|strong=\"H3027\"* heard|strong=\"H8085\"* its report|strong=\"H8089\"*. Our|strong=\"H8085\"* hands|strong=\"H3027\"* become|strong=\"H3205\"* feeble|strong=\"H7503\"*. Anguish|strong=\"H6869\"* has|strong=\"H3027\"* taken|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H3027\"* us|strong=\"H8085\"*, and|strong=\"H3027\"* pains as|strong=\"H2388\"* of|strong=\"H3027\"* a|strong=\"H3068\"* woman|strong=\"H3205\"* in|strong=\"H8085\"* labor|strong=\"H3205\"*." + }, + { + "verseNum": 25, + "text": "Don’t go|strong=\"H3212\"* out|strong=\"H3318\"* into|strong=\"H3212\"* the|strong=\"H3588\"* field|strong=\"H7704\"* or|strong=\"H7704\"* walk|strong=\"H3212\"* by|strong=\"H1870\"* the|strong=\"H3588\"* way|strong=\"H1870\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* sword|strong=\"H2719\"* of|strong=\"H1870\"* the|strong=\"H3588\"* enemy and|strong=\"H3212\"* terror|strong=\"H4032\"* are|strong=\"H1870\"* on|strong=\"H1870\"* every|strong=\"H5439\"* side|strong=\"H5439\"*." + }, + { + "verseNum": 26, + "text": "Daughter|strong=\"H1323\"* of|strong=\"H1323\"* my|strong=\"H5921\"* people|strong=\"H5971\"*, clothe yourself|strong=\"H6213\"* with|strong=\"H6213\"* sackcloth|strong=\"H8242\"*, and|strong=\"H5971\"* wallow|strong=\"H6428\"* in|strong=\"H5921\"* ashes! Mourn|strong=\"H5921\"*, as|strong=\"H6213\"* for|strong=\"H3588\"* an|strong=\"H6213\"* only|strong=\"H3173\"* son|strong=\"H3173\"*, most|strong=\"H8563\"* bitter|strong=\"H8563\"* lamentation|strong=\"H4553\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* destroyer|strong=\"H7703\"* will|strong=\"H5971\"* suddenly|strong=\"H6597\"* come|strong=\"H5971\"* on|strong=\"H5921\"* us|strong=\"H5921\"*." + }, + { + "verseNum": 27, + "text": "“I|strong=\"H5414\"* have|strong=\"H5971\"* made|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* tester|strong=\"H4013\"* of|strong=\"H1870\"* metals and|strong=\"H5971\"* a|strong=\"H3068\"* fortress|strong=\"H4013\"* among|strong=\"H5971\"* my|strong=\"H5414\"* people|strong=\"H5971\"*, that|strong=\"H3045\"* you|strong=\"H5414\"* may|strong=\"H5971\"* know|strong=\"H3045\"* and|strong=\"H5971\"* try their|strong=\"H5414\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"H1992\"* are|strong=\"H1992\"* all|strong=\"H3605\"* grievous|strong=\"H5493\"* rebels|strong=\"H5637\"*, going|strong=\"H1980\"* around|strong=\"H1980\"* to|strong=\"H1980\"* slander. They|strong=\"H1992\"* are|strong=\"H1992\"* bronze|strong=\"H5178\"* and|strong=\"H1980\"* iron|strong=\"H1270\"*. All|strong=\"H3605\"* of|strong=\"H3605\"* them|strong=\"H1992\"* deal corruptly|strong=\"H7843\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3808\"* bellows|strong=\"H4647\"* blow|strong=\"H2787\"* fiercely|strong=\"H2787\"*. The|strong=\"H3808\"* lead|strong=\"H5777\"* is|strong=\"H7451\"* consumed in|strong=\"H3808\"* the|strong=\"H3808\"* fire. In|strong=\"H3808\"* vain|strong=\"H7723\"* they|strong=\"H3808\"* go on|strong=\"H7451\"* refining|strong=\"H6884\"*, for|strong=\"H7451\"* the|strong=\"H3808\"* wicked|strong=\"H7451\"* are|strong=\"H4647\"* not|strong=\"H3808\"* plucked away|strong=\"H5423\"*." + }, + { + "verseNum": 30, + "text": "Men|strong=\"H7121\"* will|strong=\"H3068\"* call|strong=\"H7121\"* them|strong=\"H7121\"* rejected|strong=\"H3988\"* silver|strong=\"H3701\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* rejected|strong=\"H3988\"* them|strong=\"H7121\"*.”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* word|strong=\"H1697\"* that|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Stand|strong=\"H5975\"* in|strong=\"H3068\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3063\"* proclaim|strong=\"H7121\"* this|strong=\"H2088\"* word|strong=\"H1697\"* there|strong=\"H8033\"*, and|strong=\"H3063\"* say|strong=\"H1697\"*, ‘Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*, who|strong=\"H3605\"* enter|strong=\"H5975\"* in|strong=\"H3068\"* at|strong=\"H3068\"* these|strong=\"H2088\"* gates|strong=\"H8179\"* to|strong=\"H3068\"* worship|strong=\"H7812\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, “Amend|strong=\"H3190\"* your|strong=\"H3068\"* ways|strong=\"H1870\"* and|strong=\"H3478\"* your|strong=\"H3068\"* doings|strong=\"H4611\"*, and|strong=\"H3478\"* I|strong=\"H3541\"* will|strong=\"H3068\"* cause you|strong=\"H3190\"* to|strong=\"H3478\"* dwell|strong=\"H7931\"* in|strong=\"H3478\"* this|strong=\"H2088\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 4, + "text": "Don’t trust in|strong=\"H3068\"* lying|strong=\"H8267\"* words|strong=\"H1697\"*, saying|strong=\"H1697\"*, ‘Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*, Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*, Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*, are|strong=\"H1992\"* these|strong=\"H1992\"*.’" + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* thoroughly|strong=\"H3190\"* amend|strong=\"H3190\"* your|strong=\"H6213\"* ways|strong=\"H1870\"* and|strong=\"H4941\"* your|strong=\"H6213\"* doings|strong=\"H4611\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* thoroughly|strong=\"H3190\"* execute|strong=\"H6213\"* justice|strong=\"H4941\"* between|strong=\"H4941\"* a|strong=\"H3068\"* man and|strong=\"H4941\"* his|strong=\"H6213\"* neighbor|strong=\"H7453\"*;" + }, + { + "verseNum": 6, + "text": "if you|strong=\"H3808\"* don’t oppress|strong=\"H6231\"* the|strong=\"H3808\"* foreigner|strong=\"H1616\"*, the|strong=\"H3808\"* fatherless|strong=\"H3490\"*, and|strong=\"H3212\"* the|strong=\"H3808\"* widow, and|strong=\"H3212\"* don’t shed|strong=\"H8210\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"* in|strong=\"H3212\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, and|strong=\"H3212\"* don’t walk|strong=\"H3212\"* after other|strong=\"H2088\"* gods to|strong=\"H3212\"* your|strong=\"H3808\"* own hurt|strong=\"H7451\"*," + }, + { + "verseNum": 7, + "text": "then|strong=\"H2088\"* I|strong=\"H5414\"* will|strong=\"H5414\"* cause|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H5704\"* dwell|strong=\"H7931\"* in|strong=\"H7931\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, in|strong=\"H7931\"* the|strong=\"H5414\"* land|strong=\"H4725\"* that|strong=\"H5414\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5704\"* your|strong=\"H5414\"* fathers, from|strong=\"H4480\"* of|strong=\"H4480\"* old|strong=\"H5769\"* even|strong=\"H5704\"* forever|strong=\"H5769\"* more|strong=\"H4480\"*." + }, + { + "verseNum": 8, + "text": "Behold|strong=\"H2009\"*, you|strong=\"H5921\"* trust in|strong=\"H5921\"* lying|strong=\"H8267\"* words|strong=\"H1697\"* that|strong=\"H1697\"* can’t profit|strong=\"H3276\"*." + }, + { + "verseNum": 9, + "text": "Will|strong=\"H3808\"* you|strong=\"H3045\"* steal|strong=\"H1589\"*, murder|strong=\"H7523\"*, commit|strong=\"H5003\"* adultery|strong=\"H5003\"*, swear|strong=\"H7650\"* falsely|strong=\"H8267\"*, burn|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H1980\"* Baal|strong=\"H1168\"*, and|strong=\"H1980\"* walk|strong=\"H1980\"* after|strong=\"H1980\"* other gods|strong=\"H1980\"* that|strong=\"H3045\"* you|strong=\"H3045\"* have|strong=\"H3045\"* not|strong=\"H3808\"* known|strong=\"H3045\"*," + }, + { + "verseNum": 10, + "text": "then|strong=\"H2088\"* come and|strong=\"H1004\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* me|strong=\"H6440\"* in|strong=\"H5921\"* this|strong=\"H2088\"* house|strong=\"H1004\"*, which|strong=\"H1004\"* is|strong=\"H2088\"* called|strong=\"H7121\"* by|strong=\"H5921\"* my|strong=\"H3605\"* name|strong=\"H8034\"*, and|strong=\"H1004\"* say, ‘We|strong=\"H6213\"* are|strong=\"H1004\"* delivered|strong=\"H5337\"*,’ that|strong=\"H3605\"* you|strong=\"H6440\"* may|strong=\"H6213\"* do|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H2088\"* abominations|strong=\"H8441\"*?" + }, + { + "verseNum": 11, + "text": "Has|strong=\"H3068\"* this|strong=\"H2088\"* house|strong=\"H1004\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* called|strong=\"H7121\"* by|strong=\"H5921\"* my|strong=\"H3068\"* name|strong=\"H8034\"*, become|strong=\"H1961\"* a|strong=\"H3068\"* den|strong=\"H4631\"* of|strong=\"H1004\"* robbers|strong=\"H6530\"* in|strong=\"H5921\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*? Behold|strong=\"H2009\"*, I|strong=\"H2009\"* myself|strong=\"H1571\"* have|strong=\"H1961\"* seen|strong=\"H7200\"* it|strong=\"H7121\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "“But|strong=\"H3588\"* go|strong=\"H3212\"* now|strong=\"H4994\"* to|strong=\"H3478\"* my|strong=\"H7200\"* place|strong=\"H4725\"* which|strong=\"H5971\"* was|strong=\"H8034\"* in|strong=\"H3478\"* Shiloh|strong=\"H7887\"*, where|strong=\"H8033\"* I|strong=\"H3588\"* caused|strong=\"H6213\"* my|strong=\"H7200\"* name|strong=\"H8034\"* to|strong=\"H3478\"* dwell|strong=\"H7931\"* at|strong=\"H3478\"* the|strong=\"H6440\"* first|strong=\"H7223\"*, and|strong=\"H3478\"* see|strong=\"H7200\"* what|strong=\"H7451\"* I|strong=\"H3588\"* did|strong=\"H6213\"* to|strong=\"H3478\"* it|strong=\"H3588\"* for|strong=\"H3588\"* the|strong=\"H6440\"* wickedness|strong=\"H7451\"* of|strong=\"H6440\"* my|strong=\"H7200\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"H6258\"*, because|strong=\"H3282\"* you|strong=\"H3605\"* have|strong=\"H3068\"* done|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H1696\"* works|strong=\"H4639\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “and|strong=\"H3068\"* I|strong=\"H6258\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3605\"*, rising|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H3068\"* speaking|strong=\"H1696\"*, but|strong=\"H3808\"* you|strong=\"H3605\"* didn’t hear|strong=\"H8085\"*; and|strong=\"H3068\"* I|strong=\"H6258\"* called|strong=\"H7121\"* you|strong=\"H3605\"*, but|strong=\"H3808\"* you|strong=\"H3605\"* didn’t answer|strong=\"H6030\"*;" + }, + { + "verseNum": 14, + "text": "therefore|strong=\"H5921\"* I|strong=\"H5414\"* will|strong=\"H1004\"* do|strong=\"H6213\"* to|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* which|strong=\"H1004\"* is|strong=\"H8034\"* called|strong=\"H7121\"* by|strong=\"H5921\"* my|strong=\"H5414\"* name|strong=\"H8034\"*, in|strong=\"H5921\"* which|strong=\"H1004\"* you|strong=\"H5414\"* trust, and|strong=\"H1004\"* to|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* which|strong=\"H1004\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5921\"* you|strong=\"H5414\"* and|strong=\"H1004\"* to|strong=\"H5921\"* your|strong=\"H5414\"* fathers, as|strong=\"H6213\"* I|strong=\"H5414\"* did|strong=\"H6213\"* to|strong=\"H5921\"* Shiloh|strong=\"H7887\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H5921\"* will|strong=\"H2233\"* cast|strong=\"H7993\"* you|strong=\"H6440\"* out|strong=\"H7993\"* of|strong=\"H6440\"* my|strong=\"H3605\"* sight|strong=\"H6440\"*, as|strong=\"H6440\"* I|strong=\"H5921\"* have|strong=\"H3605\"* cast|strong=\"H7993\"* out|strong=\"H7993\"* all|strong=\"H3605\"* your|strong=\"H3605\"* brothers, even|strong=\"H5921\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* offspring|strong=\"H2233\"*+ 7:15 or, seed* of|strong=\"H6440\"* Ephraim." + }, + { + "verseNum": 16, + "text": "“Therefore|strong=\"H3588\"* don’t pray|strong=\"H6419\"* for|strong=\"H3588\"* this|strong=\"H2088\"* people|strong=\"H5971\"*. Don’t lift|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* cry|strong=\"H7440\"* or|strong=\"H8085\"* prayer|strong=\"H8605\"* for|strong=\"H3588\"* them|strong=\"H5375\"* or|strong=\"H8085\"* make|strong=\"H8085\"* intercession|strong=\"H6293\"* to|strong=\"H8085\"* me|strong=\"H1157\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5971\"* not|strong=\"H2088\"* hear|strong=\"H8085\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 17, + "text": "Don’t you|strong=\"H6213\"* see|strong=\"H7200\"* what|strong=\"H4100\"* they|strong=\"H1992\"* do|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H7200\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* in|strong=\"H6213\"* the|strong=\"H7200\"* streets|strong=\"H2351\"* of|strong=\"H5892\"* Jerusalem|strong=\"H3389\"*?" + }, + { + "verseNum": 18, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* gather|strong=\"H3950\"* wood|strong=\"H6086\"*, and|strong=\"H1121\"* the|strong=\"H6213\"* fathers kindle|strong=\"H1197\"* the|strong=\"H6213\"* fire, and|strong=\"H1121\"* the|strong=\"H6213\"* women knead|strong=\"H3888\"* the|strong=\"H6213\"* dough|strong=\"H1217\"*, to|strong=\"H6213\"* make|strong=\"H6213\"* cakes|strong=\"H3561\"* to|strong=\"H6213\"* the|strong=\"H6213\"* queen|strong=\"H4446\"* of|strong=\"H1121\"* the|strong=\"H6213\"* sky|strong=\"H8064\"*, and|strong=\"H1121\"* to|strong=\"H6213\"* pour|strong=\"H5258\"* out|strong=\"H5258\"* drink|strong=\"H5262\"* offerings|strong=\"H5262\"* to|strong=\"H6213\"* other gods, that|strong=\"H4616\"* they|strong=\"H6213\"* may|strong=\"H6213\"* provoke|strong=\"H3707\"* me|strong=\"H6213\"* to|strong=\"H6213\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 19, + "text": "Do|strong=\"H3068\"* they|strong=\"H1992\"* provoke|strong=\"H3707\"* me|strong=\"H6440\"* to|strong=\"H3068\"* anger|strong=\"H3707\"*?” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. “Don’t they|strong=\"H1992\"* provoke|strong=\"H3707\"* themselves|strong=\"H1992\"*, to|strong=\"H3068\"* the|strong=\"H6440\"* confusion|strong=\"H1322\"* of|strong=\"H3068\"* their|strong=\"H3068\"* own|strong=\"H6440\"* faces|strong=\"H6440\"*?”" + }, + { + "verseNum": 20, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2009\"*, my|strong=\"H5921\"* anger|strong=\"H2534\"* and|strong=\"H6086\"* my|strong=\"H5921\"* wrath|strong=\"H2534\"* will|strong=\"H3808\"* be|strong=\"H3808\"* poured|strong=\"H5413\"* out|strong=\"H5413\"* on|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, on|strong=\"H5921\"* man|strong=\"H2088\"*, on|strong=\"H5921\"* animal, on|strong=\"H5921\"* the|strong=\"H5921\"* trees|strong=\"H6086\"* of|strong=\"H7704\"* the|strong=\"H5921\"* field|strong=\"H7704\"*, and|strong=\"H6086\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fruit|strong=\"H6529\"* of|strong=\"H7704\"* the|strong=\"H5921\"* ground|strong=\"H7704\"*; and|strong=\"H6086\"* it|strong=\"H5921\"* will|strong=\"H3808\"* burn|strong=\"H1197\"* and|strong=\"H6086\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* quenched|strong=\"H3518\"*.”" + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*: “Add|strong=\"H5595\"* your|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* to|strong=\"H3478\"* your|strong=\"H3068\"* sacrifices|strong=\"H2077\"* and|strong=\"H3478\"* eat meat|strong=\"H1320\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* didn’t speak|strong=\"H1696\"* to|strong=\"H1696\"* your|strong=\"H5921\"* fathers or|strong=\"H3808\"* command|strong=\"H6680\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* that|strong=\"H3588\"* I|strong=\"H3588\"* brought|strong=\"H3318\"* them|strong=\"H5921\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H5921\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"* concerning|strong=\"H5921\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* or|strong=\"H3808\"* sacrifices|strong=\"H2077\"*;" + }, + { + "verseNum": 23, + "text": "but|strong=\"H3588\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* I|strong=\"H3588\"* commanded|strong=\"H6680\"* them|strong=\"H6680\"*, saying|strong=\"H1697\"*, ‘Listen|strong=\"H8085\"* to|strong=\"H1980\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*, and|strong=\"H1980\"* I|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H3605\"* God|strong=\"H3190\"*, and|strong=\"H1980\"* you|strong=\"H3588\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* my|strong=\"H8085\"* people|strong=\"H5971\"*. Walk|strong=\"H1980\"* in|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* way|strong=\"H1870\"* that|strong=\"H3588\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* may|strong=\"H1961\"* be|strong=\"H1961\"* well|strong=\"H3190\"* with|strong=\"H1980\"* you|strong=\"H3588\"*.’" + }, + { + "verseNum": 24, + "text": "But|strong=\"H3808\"* they|strong=\"H3808\"* didn’t listen|strong=\"H8085\"* or|strong=\"H3808\"* turn|strong=\"H5186\"* their|strong=\"H6440\"* ear|strong=\"H8085\"*, but|strong=\"H3808\"* walked|strong=\"H3212\"* in|strong=\"H8085\"* their|strong=\"H6440\"* own|strong=\"H1961\"* counsels|strong=\"H4156\"* and|strong=\"H3212\"* in|strong=\"H8085\"* the|strong=\"H6440\"* stubbornness|strong=\"H8307\"* of|strong=\"H6440\"* their|strong=\"H6440\"* evil|strong=\"H7451\"* heart|strong=\"H3820\"*, and|strong=\"H3212\"* went|strong=\"H3212\"* backward, and|strong=\"H3212\"* not|strong=\"H3808\"* forward|strong=\"H6440\"*." + }, + { + "verseNum": 25, + "text": "Since|strong=\"H4480\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3605\"* your|strong=\"H3605\"* fathers came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H3605\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, I|strong=\"H3117\"* have|strong=\"H5030\"* sent|strong=\"H7971\"* to|strong=\"H5704\"* you|strong=\"H3605\"* all|strong=\"H3605\"* my|strong=\"H3605\"* servants|strong=\"H5650\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*, daily|strong=\"H3117\"* rising|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H7971\"* sending|strong=\"H7971\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 26, + "text": "Yet|strong=\"H3808\"* they|strong=\"H3808\"* didn’t listen|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H3808\"* or|strong=\"H3808\"* incline|strong=\"H5186\"* their|strong=\"H8085\"* ear|strong=\"H8085\"*, but|strong=\"H3808\"* made|strong=\"H7185\"* their|strong=\"H8085\"* neck|strong=\"H6203\"* stiff|strong=\"H7185\"*. They|strong=\"H3808\"* did|strong=\"H3808\"* worse|strong=\"H7489\"* than|strong=\"H3808\"* their|strong=\"H8085\"* fathers." + }, + { + "verseNum": 27, + "text": "“You|strong=\"H3605\"* shall|strong=\"H3808\"* speak|strong=\"H1696\"* all|strong=\"H3605\"* these|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* them|strong=\"H7121\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* will|strong=\"H1697\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H1696\"* you|strong=\"H3605\"*. You|strong=\"H3605\"* shall|strong=\"H3808\"* also|strong=\"H8085\"* call|strong=\"H7121\"* to|strong=\"H1696\"* them|strong=\"H7121\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* will|strong=\"H1697\"* not|strong=\"H3808\"* answer|strong=\"H6030\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 28, + "text": "You|strong=\"H3947\"* shall|strong=\"H3068\"* tell|strong=\"H8085\"* them|strong=\"H3947\"*, ‘This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H8085\"* nation|strong=\"H1471\"* that|strong=\"H8085\"* has|strong=\"H3068\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, nor|strong=\"H3808\"* received|strong=\"H3947\"* instruction|strong=\"H4148\"*. Truth|strong=\"H3808\"* has|strong=\"H3068\"* perished, and|strong=\"H3068\"* is|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* their|strong=\"H3068\"* mouth|strong=\"H6310\"*.’" + }, + { + "verseNum": 29, + "text": "Cut|strong=\"H1494\"* off|strong=\"H5921\"* your|strong=\"H3068\"* hair|strong=\"H5145\"*, and|strong=\"H3068\"* throw|strong=\"H7993\"* it|strong=\"H5921\"* away|strong=\"H5375\"*, and|strong=\"H3068\"* take|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* lamentation|strong=\"H7015\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bare|strong=\"H5375\"* heights|strong=\"H8205\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* rejected|strong=\"H3988\"* and|strong=\"H3068\"* forsaken|strong=\"H5203\"* the|strong=\"H5921\"* generation|strong=\"H1755\"* of|strong=\"H3068\"* his|strong=\"H5375\"* wrath|strong=\"H5678\"*." + }, + { + "verseNum": 30, + "text": "“For|strong=\"H3588\"* the|strong=\"H5002\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* have|strong=\"H3068\"* done|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H5921\"* my|strong=\"H3068\"* sight|strong=\"H5869\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. “They|strong=\"H3588\"* have|strong=\"H3068\"* set|strong=\"H7760\"* their|strong=\"H3068\"* abominations|strong=\"H8251\"* in|strong=\"H5921\"* the|strong=\"H5002\"* house|strong=\"H1004\"* which|strong=\"H3068\"* is|strong=\"H3068\"* called|strong=\"H7121\"* by|strong=\"H5921\"* my|strong=\"H3068\"* name|strong=\"H8034\"*, to|strong=\"H3068\"* defile|strong=\"H2930\"* it|strong=\"H7760\"*." + }, + { + "verseNum": 31, + "text": "They|strong=\"H3808\"* have|strong=\"H1121\"* built|strong=\"H1129\"* the|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"* of|strong=\"H1121\"* Topheth|strong=\"H8612\"*, which|strong=\"H1116\"* is|strong=\"H3820\"* in|strong=\"H5921\"* the|strong=\"H5921\"* valley|strong=\"H1516\"* of|strong=\"H1121\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"*, to|strong=\"H5927\"* burn|strong=\"H8313\"* their|strong=\"H8313\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H8313\"* daughters|strong=\"H1323\"* in|strong=\"H5921\"* the|strong=\"H5921\"* fire, which|strong=\"H1116\"* I|strong=\"H5921\"* didn’t command|strong=\"H6680\"*, nor|strong=\"H3808\"* did|strong=\"H3808\"* it|strong=\"H5921\"* come|strong=\"H5927\"* into|strong=\"H5927\"* my|strong=\"H5921\"* mind|strong=\"H3820\"*." + }, + { + "verseNum": 32, + "text": "Therefore|strong=\"H3651\"* behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H5750\"*”, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3588\"* it|strong=\"H3588\"* will|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H5750\"* be|strong=\"H3808\"* called ‘Topheth|strong=\"H8612\"*’ or|strong=\"H3808\"* ‘The|strong=\"H5002\"* valley|strong=\"H1516\"* of|strong=\"H1121\"* the|strong=\"H5002\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"*’, but|strong=\"H3588\"* ‘The|strong=\"H5002\"* valley|strong=\"H1516\"* of|strong=\"H1121\"* Slaughter|strong=\"H2028\"*’; for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* bury|strong=\"H6912\"* in|strong=\"H3068\"* Topheth|strong=\"H8612\"* until|strong=\"H3588\"* there|strong=\"H2009\"* is|strong=\"H3068\"* no|strong=\"H3808\"* place|strong=\"H4725\"* to|strong=\"H3068\"* bury|strong=\"H6912\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H1961\"* dead|strong=\"H5038\"* bodies|strong=\"H5038\"* of|strong=\"H5971\"* this|strong=\"H2088\"* people|strong=\"H5971\"* will|strong=\"H1961\"* be|strong=\"H1961\"* food|strong=\"H3978\"* for|strong=\"H5971\"* the|strong=\"H1961\"* birds|strong=\"H5775\"* of|strong=\"H5971\"* the|strong=\"H1961\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* for|strong=\"H5971\"* the|strong=\"H1961\"* animals|strong=\"H1961\"* of|strong=\"H5971\"* the|strong=\"H1961\"* earth|strong=\"H8064\"*. No|strong=\"H1961\"* one|strong=\"H2088\"* will|strong=\"H1961\"* frighten|strong=\"H2729\"* them|strong=\"H1961\"* away|strong=\"H2729\"*." + }, + { + "verseNum": 34, + "text": "Then|strong=\"H1961\"* I|strong=\"H3588\"* will|strong=\"H1961\"* cause|strong=\"H1961\"* to|strong=\"H1961\"* cease|strong=\"H7673\"* from|strong=\"H1961\"* the|strong=\"H3588\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* from|strong=\"H1961\"* the|strong=\"H3588\"* streets|strong=\"H2351\"* of|strong=\"H5892\"* Jerusalem|strong=\"H3389\"* the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H5892\"* mirth|strong=\"H8057\"* and|strong=\"H3063\"* the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H5892\"* gladness|strong=\"H8057\"*, the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H5892\"* the|strong=\"H3588\"* bridegroom|strong=\"H2860\"* and|strong=\"H3063\"* the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H5892\"* the|strong=\"H3588\"* bride|strong=\"H3618\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* land will|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* waste|strong=\"H2723\"*.”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "“At|strong=\"H3427\"* that|strong=\"H1931\"* time|strong=\"H6256\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “they|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H3318\"* the|strong=\"H5002\"* bones|strong=\"H6106\"* of|strong=\"H4428\"* the|strong=\"H5002\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, the|strong=\"H5002\"* bones|strong=\"H6106\"* of|strong=\"H4428\"* his|strong=\"H3068\"* princes|strong=\"H8269\"*, the|strong=\"H5002\"* bones|strong=\"H6106\"* of|strong=\"H4428\"* the|strong=\"H5002\"* priests|strong=\"H3548\"*, the|strong=\"H5002\"* bones|strong=\"H6106\"* of|strong=\"H4428\"* the|strong=\"H5002\"* prophets|strong=\"H5030\"*, and|strong=\"H3063\"* the|strong=\"H5002\"* bones|strong=\"H6106\"* of|strong=\"H4428\"* the|strong=\"H5002\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, out|strong=\"H3318\"* of|strong=\"H4428\"* their|strong=\"H3068\"* graves|strong=\"H6913\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H3808\"* will|strong=\"H1961\"* spread|strong=\"H7849\"* them|strong=\"H5921\"* before|strong=\"H6440\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*, the|strong=\"H3605\"* moon|strong=\"H3394\"*, and|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H6440\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, which|strong=\"H6635\"* they|strong=\"H3808\"* have|strong=\"H1961\"* loved, which|strong=\"H6635\"* they|strong=\"H3808\"* have|strong=\"H1961\"* served|strong=\"H5647\"*, after|strong=\"H5921\"* which|strong=\"H6635\"* they|strong=\"H3808\"* have|strong=\"H1961\"* walked|strong=\"H1980\"*, which|strong=\"H6635\"* they|strong=\"H3808\"* have|strong=\"H1961\"* sought|strong=\"H1875\"*, and|strong=\"H1980\"* which|strong=\"H6635\"* they|strong=\"H3808\"* have|strong=\"H1961\"* worshiped|strong=\"H7812\"*. They|strong=\"H3808\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* gathered or|strong=\"H3808\"* be|strong=\"H1961\"* buried|strong=\"H6912\"*. They|strong=\"H3808\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* dung|strong=\"H1828\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* earth|strong=\"H8121\"*." + }, + { + "verseNum": 3, + "text": "Death|strong=\"H4194\"* will|strong=\"H3068\"* be|strong=\"H3068\"* chosen rather|strong=\"H4480\"* than|strong=\"H4480\"* life|strong=\"H2416\"* by|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* residue|strong=\"H7611\"* that|strong=\"H3605\"* remain|strong=\"H7604\"* of|strong=\"H3068\"* this|strong=\"H2063\"* evil|strong=\"H7451\"* family|strong=\"H4940\"*, that|strong=\"H3605\"* remain|strong=\"H7604\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* places|strong=\"H4725\"* where|strong=\"H8033\"* I|strong=\"H3068\"* have|strong=\"H3068\"* driven|strong=\"H5080\"* them|strong=\"H4480\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 4, + "text": "“Moreover|strong=\"H3541\"* you|strong=\"H7725\"* shall|strong=\"H3068\"* tell them|strong=\"H7725\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 5, + "text": "Why|strong=\"H4069\"* then|strong=\"H2088\"* have|strong=\"H5971\"* the|strong=\"H7725\"* people|strong=\"H5971\"* of|strong=\"H5971\"* Jerusalem|strong=\"H3389\"* fallen back|strong=\"H7725\"* by|strong=\"H7725\"* a|strong=\"H3068\"* perpetual|strong=\"H5329\"* backsliding|strong=\"H4878\"*?" + }, + { + "verseNum": 6, + "text": "I|strong=\"H5921\"* listened|strong=\"H8085\"* and|strong=\"H7725\"* heard|strong=\"H8085\"*, but|strong=\"H3808\"* they|strong=\"H3651\"* didn’t say|strong=\"H1696\"* what|strong=\"H4100\"* is|strong=\"H4100\"* right|strong=\"H3651\"*." + }, + { + "verseNum": 7, + "text": "Yes|strong=\"H1571\"*, the|strong=\"H8104\"* stork|strong=\"H2624\"* in|strong=\"H3068\"* the|strong=\"H8104\"* sky|strong=\"H8064\"* knows|strong=\"H3045\"* her|strong=\"H3045\"* appointed|strong=\"H4150\"* times|strong=\"H6256\"*." + }, + { + "verseNum": 8, + "text": "“‘How|strong=\"H2009\"* do|strong=\"H6213\"* you|strong=\"H6213\"* say, “We|strong=\"H6213\"* are|strong=\"H3068\"* wise|strong=\"H2450\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"* is|strong=\"H3068\"* with|strong=\"H3068\"* us|strong=\"H6213\"*”?" + }, + { + "verseNum": 9, + "text": "The|strong=\"H3068\"* wise|strong=\"H2450\"* men|strong=\"H2450\"* are|strong=\"H4100\"* disappointed." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H3588\"* will|strong=\"H5414\"* give|strong=\"H5414\"* their|strong=\"H3605\"* wives to|strong=\"H5704\"* others" + }, + { + "verseNum": 11, + "text": "They|strong=\"H5921\"* have|strong=\"H5971\"* healed|strong=\"H7495\"* the|strong=\"H5921\"* hurt|strong=\"H7667\"* of|strong=\"H1323\"* the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* my|strong=\"H5921\"* people|strong=\"H5971\"* slightly|strong=\"H7043\"*, saying," + }, + { + "verseNum": 12, + "text": "Were|strong=\"H1571\"* they|strong=\"H3588\"* ashamed|strong=\"H3637\"* when|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* committed|strong=\"H6213\"* abomination|strong=\"H8441\"*?" + }, + { + "verseNum": 13, + "text": "“‘I|strong=\"H5414\"* will|strong=\"H3068\"* utterly|strong=\"H5486\"* consume|strong=\"H5486\"* them|strong=\"H5414\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "“Why|strong=\"H4100\"* do|strong=\"H3068\"* we|strong=\"H3068\"* sit|strong=\"H3427\"* still|strong=\"H3427\"*?" + }, + { + "verseNum": 15, + "text": "We|strong=\"H2009\"* looked|strong=\"H6960\"* for|strong=\"H6960\"* peace|strong=\"H7965\"*, but|strong=\"H2009\"* no good|strong=\"H2896\"* came;" + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* snorting|strong=\"H5170\"* of|strong=\"H3427\"* his|strong=\"H3605\"* horses|strong=\"H5483\"* is|strong=\"H3605\"* heard|strong=\"H8085\"* from|strong=\"H8085\"* Dan|strong=\"H1835\"*." + }, + { + "verseNum": 17, + "text": "“For|strong=\"H3588\"*, behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* send|strong=\"H7971\"* serpents|strong=\"H5175\"*," + }, + { + "verseNum": 18, + "text": "Oh that|strong=\"H3820\"* I|strong=\"H5921\"* could comfort|strong=\"H4010\"* myself|strong=\"H3820\"* against|strong=\"H5921\"* sorrow|strong=\"H3015\"*!" + }, + { + "verseNum": 19, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H3068\"* voice|strong=\"H6963\"* of|strong=\"H4428\"* the|strong=\"H3068\"* cry|strong=\"H7775\"* of|strong=\"H4428\"* the|strong=\"H3068\"* daughter|strong=\"H1323\"* of|strong=\"H4428\"* my|strong=\"H3068\"* people|strong=\"H5971\"* from|strong=\"H3068\"* a|strong=\"H3068\"* land that|strong=\"H5971\"* is|strong=\"H3068\"* very far|strong=\"H4801\"* off|strong=\"H4801\"*:" + }, + { + "verseNum": 20, + "text": "“The|strong=\"H5674\"* harvest|strong=\"H7105\"* is|strong=\"H7105\"* past|strong=\"H5674\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"H5921\"* the|strong=\"H5921\"* hurt|strong=\"H7665\"* of|strong=\"H1323\"* the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* my|strong=\"H5921\"* people|strong=\"H5971\"*, I|strong=\"H5921\"* am hurt|strong=\"H7665\"*." + }, + { + "verseNum": 22, + "text": "Is|strong=\"H8033\"* there|strong=\"H8033\"* no|strong=\"H3808\"* balm|strong=\"H6875\"* in|strong=\"H5971\"* Gilead|strong=\"H1568\"*?" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Oh|strong=\"H4310\"* that|strong=\"H3588\"* my|strong=\"H5414\"* head were|strong=\"H5971\"* waters," + }, + { + "verseNum": 2, + "text": "Oh that|strong=\"H3588\"* I|strong=\"H3588\"* had|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H5002\"* wilderness" + }, + { + "verseNum": 3, + "text": "“They|strong=\"H3588\"* bend their|strong=\"H3605\"* tongue," + }, + { + "verseNum": 4, + "text": "“Everyone beware of|strong=\"H3956\"* his|strong=\"H3808\"* neighbor|strong=\"H7453\"*," + }, + { + "verseNum": 5, + "text": "Friends|strong=\"H3045\"* deceive each other," + }, + { + "verseNum": 6, + "text": "Your|strong=\"H3068\"* habitation is|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H6440\"* middle of|strong=\"H3068\"* deceit." + }, + { + "verseNum": 7, + "text": "Therefore Yahweh|strong=\"H3068\"* of|strong=\"H6310\"* Armies says|strong=\"H1696\"*," + }, + { + "verseNum": 8, + "text": "Their|strong=\"H3068\"* tongue is|strong=\"H3068\"* a|strong=\"H3068\"* deadly|strong=\"H5315\"* arrow." + }, + { + "verseNum": 9, + "text": "Shouldn’t I|strong=\"H3588\"* punish them|strong=\"H5921\"* for|strong=\"H3588\"* these|strong=\"H8085\"* things|strong=\"H3808\"*?” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"H5414\"* will|strong=\"H5892\"* weep and|strong=\"H3063\"* wail for|strong=\"H3427\"* the|strong=\"H5414\"* mountains," + }, + { + "verseNum": 11, + "text": "“I|strong=\"H5921\"* will|strong=\"H3068\"* make|strong=\"H5046\"* Jerusalem heaps," + }, + { + "verseNum": 12, + "text": "Who|strong=\"H3068\"* is|strong=\"H3068\"* wise enough to|strong=\"H1980\"* understand|strong=\"H8085\"* this|strong=\"H5414\"*? Who|strong=\"H3068\"* is|strong=\"H3068\"* he|strong=\"H3068\"* to|strong=\"H1980\"* whom|strong=\"H6440\"* the|strong=\"H6440\"* mouth|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H8085\"*, that|strong=\"H8085\"* he|strong=\"H3068\"* may|strong=\"H3068\"* declare|strong=\"H8085\"* it|strong=\"H5414\"*? Why|strong=\"H5921\"* has|strong=\"H3068\"* the|strong=\"H6440\"* land|strong=\"H6440\"* perished and|strong=\"H1980\"* burned up|strong=\"H5414\"* like|strong=\"H3808\"* a|strong=\"H3068\"* wilderness, so|strong=\"H1980\"* that|strong=\"H8085\"* no|strong=\"H3808\"* one|strong=\"H3808\"* passes|strong=\"H1980\"* through|strong=\"H5921\"*?" + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* says, “Because they|strong=\"H3820\"* have forsaken my|strong=\"H3925\"* law which I|strong=\"H3212\"* set before them|strong=\"H3925\"*, and|strong=\"H3212\"* have not|strong=\"H3212\"* obeyed my|strong=\"H3925\"* voice or walked|strong=\"H3212\"* in|strong=\"H3212\"* my|strong=\"H3925\"* ways," + }, + { + "verseNum": 14, + "text": "but|strong=\"H3651\"* have|strong=\"H3068\"* walked after the|strong=\"H3541\"* stubbornness of|strong=\"H3068\"* their|strong=\"H3068\"* own|strong=\"H5971\"* heart and|strong=\"H3478\"* after the|strong=\"H3541\"* Baals, which|strong=\"H3068\"* their|strong=\"H3068\"* fathers taught them|strong=\"H8248\"*.”" + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"H7971\"* Yahweh|strong=\"H3068\"* of|strong=\"H3615\"* Armies|strong=\"H3808\"*, the|strong=\"H3045\"* God|strong=\"H3808\"* of|strong=\"H3615\"* Israel, says, “Behold|strong=\"H3808\"*, I|strong=\"H5704\"* will|strong=\"H1471\"* feed|strong=\"H3615\"* them|strong=\"H1992\"*, even|strong=\"H5704\"* this|strong=\"H3045\"* people|strong=\"H1471\"*, with|strong=\"H3045\"* wormwood and|strong=\"H7971\"* give them|strong=\"H1992\"* poisoned water to|strong=\"H5704\"* drink." + }, + { + "verseNum": 16, + "text": "I|strong=\"H3541\"* will|strong=\"H3068\"* scatter them|strong=\"H7971\"* also|strong=\"H3068\"* among the|strong=\"H3541\"* nations, whom|strong=\"H7121\"* neither they|strong=\"H3068\"* nor their|strong=\"H3068\"* fathers have|strong=\"H3068\"* known. I|strong=\"H3541\"* will|strong=\"H3068\"* send|strong=\"H7971\"* the|strong=\"H3541\"* sword after|strong=\"H7121\"* them|strong=\"H7971\"*, until|strong=\"H3068\"* I|strong=\"H3541\"* have|strong=\"H3068\"* consumed them|strong=\"H7971\"*.”" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H5869\"* Armies says," + }, + { + "verseNum": 18, + "text": "Let|strong=\"H5800\"* them|strong=\"H7993\"* make|strong=\"H8085\"* haste" + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* a|strong=\"H3068\"* voice of|strong=\"H3068\"* wailing|strong=\"H5092\"* is|strong=\"H3068\"* heard|strong=\"H8085\"* out|strong=\"H3947\"* of|strong=\"H3068\"* Zion," + }, + { + "verseNum": 20, + "text": "Yet|strong=\"H3588\"* hear Yahweh|strong=\"H3068\"*’s word, you|strong=\"H3588\"* women." + }, + { + "verseNum": 21, + "text": "For|strong=\"H5921\"* death|strong=\"H5038\"* has|strong=\"H3068\"* come|strong=\"H5307\"* up|strong=\"H5921\"* into|strong=\"H5307\"* our|strong=\"H3068\"* windows." + }, + { + "verseNum": 22, + "text": "Speak, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*," + }, + { + "verseNum": 24, + "text": "But|strong=\"H2009\"* let|strong=\"H6485\"* him|strong=\"H5921\"* who|strong=\"H3605\"* glories glory in|strong=\"H5921\"* this|strong=\"H3068\"*," + }, + { + "verseNum": 25, + "text": "“Behold, the|strong=\"H3605\"* days come|strong=\"H3478\"*,” says Yahweh|strong=\"H3068\"*, “that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1471\"* punish all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1121\"* circumcised only|strong=\"H3588\"* in|strong=\"H3427\"* their|strong=\"H3605\"* flesh:" + }, + { + "verseNum": 26, + "text": "Egypt, Judah, Edom, the children of Ammon, Moab, and all who have the corners of their hair cut off, who dwell in the wilderness, for all the nations are uncircumcised, and all the house of Israel are uncircumcised in heart.”" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Hear|strong=\"H8085\"* the|strong=\"H5921\"* word|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* speaks|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5921\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*!" + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* customs|strong=\"H2708\"* of|strong=\"H3027\"* the|strong=\"H3588\"* peoples|strong=\"H5971\"* are|strong=\"H5971\"* vanity|strong=\"H1892\"*;" + }, + { + "verseNum": 4, + "text": "They|strong=\"H3808\"* deck|strong=\"H3302\"* it|strong=\"H3808\"* with|strong=\"H2091\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* with|strong=\"H2091\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H1992\"* are|strong=\"H1992\"* like|strong=\"H3808\"* a|strong=\"H3068\"* palm|strong=\"H8560\"* tree|strong=\"H8560\"*, of|strong=\"H3372\"* turned work|strong=\"H4749\"*," + }, + { + "verseNum": 6, + "text": "There|strong=\"H3068\"* is|strong=\"H3068\"* no one|strong=\"H3068\"* like|strong=\"H3644\"* you|strong=\"H3644\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "Who|strong=\"H4310\"* shouldn’t fear|strong=\"H3372\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 8, + "text": "But|strong=\"H1931\"* they|strong=\"H1931\"* are together brutish|strong=\"H1197\"* and|strong=\"H6086\"* foolish|strong=\"H3688\"*," + }, + { + "verseNum": 9, + "text": "There|strong=\"H3605\"* is|strong=\"H3027\"* silver|strong=\"H3701\"* beaten|strong=\"H7554\"* into|strong=\"H3027\"* plates|strong=\"H7554\"*, which|strong=\"H2091\"* is|strong=\"H3027\"* brought|strong=\"H3027\"* from|strong=\"H3027\"* Tarshish|strong=\"H8659\"*," + }, + { + "verseNum": 10, + "text": "But|strong=\"H3808\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* the|strong=\"H3068\"* true|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "“You|strong=\"H1768\"* shall say this|strong=\"H1836\"* to|strong=\"H4481\"* them: ‘The|strong=\"H4481\"* gods that|strong=\"H1768\"* have|strong=\"H1768\"* not|strong=\"H3809\"* made|strong=\"H5648\"* the|strong=\"H4481\"* heavens|strong=\"H8065\"* and|strong=\"H8065\"* the|strong=\"H4481\"* earth will|strong=\"H1768\"* perish from|strong=\"H4481\"* the|strong=\"H4481\"* earth, and|strong=\"H8065\"* from|strong=\"H4481\"* under|strong=\"H8460\"* the|strong=\"H4481\"* heavens|strong=\"H8065\"*.’”" + }, + { + "verseNum": 12, + "text": "God|strong=\"H2451\"* has|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* earth|strong=\"H8064\"* by|strong=\"H3559\"* his|strong=\"H5186\"* power|strong=\"H3581\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H3318\"* he|strong=\"H6213\"* utters|strong=\"H5414\"* his|strong=\"H5414\"* voice|strong=\"H6963\"*," + }, + { + "verseNum": 14, + "text": "Every|strong=\"H3605\"* man|strong=\"H3605\"* has|strong=\"H3588\"* become|strong=\"H1197\"* brutish|strong=\"H1197\"* and|strong=\"H7307\"* without|strong=\"H3808\"* knowledge|strong=\"H1847\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"H1992\"* are|strong=\"H1992\"* vanity|strong=\"H1892\"*, a|strong=\"H3068\"* work|strong=\"H4639\"* of|strong=\"H6256\"* delusion|strong=\"H1892\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* portion|strong=\"H2506\"* of|strong=\"H3068\"* Jacob|strong=\"H3290\"* is|strong=\"H3068\"* not|strong=\"H3808\"* like|strong=\"H3478\"* these|strong=\"H1931\"*;" + }, + { + "verseNum": 17, + "text": "Gather up|strong=\"H3427\"* your|strong=\"H3427\"* wares|strong=\"H3666\"* out|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3427\"* land," + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 19, + "text": "Woe is|strong=\"H2088\"* me|strong=\"H5921\"* because|strong=\"H5921\"* of|strong=\"H5921\"* my|strong=\"H5921\"* injury|strong=\"H7667\"*!" + }, + { + "verseNum": 20, + "text": "My|strong=\"H3605\"* tent|strong=\"H3407\"* has|strong=\"H3318\"* been|strong=\"H3605\"* destroyed|strong=\"H7703\"*," + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* shepherds|strong=\"H7462\"* have|strong=\"H3068\"* become|strong=\"H1197\"* brutish|strong=\"H1197\"*," + }, + { + "verseNum": 22, + "text": "The|strong=\"H7760\"* voice|strong=\"H6963\"* of|strong=\"H5892\"* news|strong=\"H8052\"*, behold|strong=\"H2009\"*, it|strong=\"H7760\"* comes," + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"*, I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3588\"* way|strong=\"H1870\"* of|strong=\"H3068\"* man|strong=\"H3045\"* is|strong=\"H3068\"* not|strong=\"H3808\"* in|strong=\"H1980\"* himself|strong=\"H3045\"*." + }, + { + "verseNum": 24, + "text": "Yahweh|strong=\"H3068\"*, correct|strong=\"H3256\"* me|strong=\"H3256\"*, but|strong=\"H3068\"* gently;" + }, + { + "verseNum": 25, + "text": "Pour|strong=\"H8210\"* out|strong=\"H8210\"* your|strong=\"H5921\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* that|strong=\"H3588\"* don’t know|strong=\"H3045\"* you|strong=\"H3588\"*," + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* word|strong=\"H1697\"* that|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Hear|strong=\"H8085\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H1697\"* this|strong=\"H2063\"* covenant|strong=\"H1285\"*, and|strong=\"H3063\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5921\"* men of|strong=\"H1697\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* to|strong=\"H1696\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H1697\"* Jerusalem|strong=\"H3389\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H3478\"* say|strong=\"H1697\"* to|strong=\"H3478\"* them|strong=\"H8085\"*, Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*: ‘Cursed is|strong=\"H3068\"* the|strong=\"H8085\"* man who|strong=\"H3068\"* doesn’t hear|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H3068\"* this|strong=\"H2063\"* covenant|strong=\"H1285\"*," + }, + { + "verseNum": 4, + "text": "which|strong=\"H5971\"* I|strong=\"H3117\"* commanded|strong=\"H6680\"* your|strong=\"H3605\"* fathers in|strong=\"H6213\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H5971\"* I|strong=\"H3117\"* brought|strong=\"H3318\"* them|strong=\"H6213\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H3605\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"*, out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H3605\"* iron|strong=\"H1270\"* furnace|strong=\"H3564\"*,’ saying|strong=\"H6963\"*, ‘Obey|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"* and|strong=\"H3117\"* do|strong=\"H6213\"* them|strong=\"H6213\"*, according to|strong=\"H3318\"* all|strong=\"H3605\"* which|strong=\"H5971\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"*; so|strong=\"H6213\"* you|strong=\"H6680\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* my|strong=\"H8085\"* people|strong=\"H5971\"*, and|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H3605\"* God;" + }, + { + "verseNum": 5, + "text": "that|strong=\"H3117\"* I|strong=\"H3117\"* may|strong=\"H3068\"* establish|strong=\"H6965\"* the|strong=\"H5414\"* oath|strong=\"H7621\"* which|strong=\"H3068\"* I|strong=\"H3117\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers, to|strong=\"H3068\"* give|strong=\"H5414\"* them|strong=\"H5414\"* a|strong=\"H3068\"* land flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H6965\"* honey|strong=\"H1706\"*,’ as|strong=\"H3117\"* it|strong=\"H5414\"* is|strong=\"H3068\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3068\"* me|strong=\"H7121\"*, “Proclaim|strong=\"H7121\"* all|strong=\"H3605\"* these|strong=\"H2063\"* words|strong=\"H1697\"* in|strong=\"H3068\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* in|strong=\"H3068\"* the|strong=\"H3605\"* streets|strong=\"H2351\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, saying|strong=\"H1697\"*, ‘Hear|strong=\"H8085\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* this|strong=\"H2063\"* covenant|strong=\"H1285\"*, and|strong=\"H3063\"* do|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* earnestly|strong=\"H5749\"* protested|strong=\"H5749\"* to|strong=\"H5704\"* your|strong=\"H8085\"* fathers in|strong=\"H8085\"* the|strong=\"H8085\"* day|strong=\"H3117\"* that|strong=\"H3588\"* I|strong=\"H3588\"* brought|strong=\"H5927\"* them|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H5704\"* of|strong=\"H3117\"* the|strong=\"H8085\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, rising|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H3117\"* protesting|strong=\"H5749\"*, saying|strong=\"H6963\"*, “Obey|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*.”" + }, + { + "verseNum": 8, + "text": "Yet|strong=\"H3808\"* they|strong=\"H3808\"* didn’t obey|strong=\"H8085\"*, nor|strong=\"H3808\"* turn|strong=\"H5186\"* their|strong=\"H3605\"* ear|strong=\"H8085\"*, but|strong=\"H3808\"* everyone|strong=\"H3605\"* walked|strong=\"H3212\"* in|strong=\"H5921\"* the|strong=\"H3605\"* stubbornness|strong=\"H8307\"* of|strong=\"H1697\"* their|strong=\"H3605\"* evil|strong=\"H7451\"* heart|strong=\"H3820\"*. Therefore|strong=\"H5921\"* I|strong=\"H5921\"* brought|strong=\"H3212\"* on|strong=\"H5921\"* them|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1697\"* this|strong=\"H2063\"* covenant|strong=\"H1285\"*, which|strong=\"H1697\"* I|strong=\"H5921\"* commanded|strong=\"H6680\"* them|strong=\"H5921\"* to|strong=\"H3212\"* do|strong=\"H6213\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* didn’t do|strong=\"H6213\"* them|strong=\"H5921\"*.’”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H4672\"*, “A|strong=\"H3068\"* conspiracy|strong=\"H7195\"* is|strong=\"H3068\"* found|strong=\"H4672\"* among|strong=\"H3427\"* the|strong=\"H3068\"* men of|strong=\"H3068\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* among|strong=\"H3427\"* the|strong=\"H3068\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H1992\"* have|strong=\"H3478\"* turned|strong=\"H7725\"* back|strong=\"H7725\"* to|strong=\"H1980\"* the|strong=\"H5921\"* iniquities|strong=\"H5771\"* of|strong=\"H1004\"* their|strong=\"H8085\"* forefathers|strong=\"H7223\"*, who|strong=\"H3478\"* refused|strong=\"H3985\"* to|strong=\"H1980\"* hear|strong=\"H8085\"* my|strong=\"H8085\"* words|strong=\"H1697\"*. They|strong=\"H1992\"* have|strong=\"H3478\"* gone|strong=\"H1980\"* after|strong=\"H5921\"* other gods|strong=\"H1980\"* to|strong=\"H1980\"* serve|strong=\"H5647\"* them|strong=\"H1992\"*. The|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* and|strong=\"H1980\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* have|strong=\"H3478\"* broken|strong=\"H6565\"* my|strong=\"H8085\"* covenant|strong=\"H1285\"* which|strong=\"H1992\"* I|strong=\"H5921\"* made|strong=\"H3772\"* with|strong=\"H1980\"* their|strong=\"H8085\"* fathers." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* bring|strong=\"H3318\"* evil|strong=\"H7451\"* on|strong=\"H3068\"* them|strong=\"H3318\"* which|strong=\"H3068\"* they|strong=\"H3651\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3318\"* escape|strong=\"H3318\"*; and|strong=\"H3068\"* they|strong=\"H3651\"* will|strong=\"H3068\"* cry|strong=\"H2199\"* to|strong=\"H3318\"* me|strong=\"H4480\"*, but|strong=\"H3808\"* I|strong=\"H2005\"* will|strong=\"H3068\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3318\"* them|strong=\"H3318\"*." + }, + { + "verseNum": 12, + "text": "Then|strong=\"H1980\"* the|strong=\"H1980\"* cities|strong=\"H5892\"* of|strong=\"H3427\"* Judah|strong=\"H3063\"* and|strong=\"H1980\"* the|strong=\"H1980\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* will|strong=\"H5892\"* go|strong=\"H1980\"* and|strong=\"H1980\"* cry|strong=\"H2199\"* to|strong=\"H1980\"* the|strong=\"H1980\"* gods|strong=\"H1980\"* to|strong=\"H1980\"* which|strong=\"H1992\"* they|strong=\"H1992\"* offer|strong=\"H6999\"* incense|strong=\"H6999\"*, but|strong=\"H3808\"* they|strong=\"H1992\"* will|strong=\"H5892\"* not|strong=\"H3808\"* save|strong=\"H3467\"* them|strong=\"H1992\"* at|strong=\"H3427\"* all|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H1980\"* time|strong=\"H6256\"* of|strong=\"H3427\"* their|strong=\"H1992\"* trouble|strong=\"H7451\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* according to|strong=\"H1961\"* the|strong=\"H3588\"* number|strong=\"H4557\"* of|strong=\"H5892\"* your|strong=\"H7760\"* cities|strong=\"H5892\"* are|strong=\"H5892\"* your|strong=\"H7760\"* gods, Judah|strong=\"H3063\"*; and|strong=\"H3063\"* according to|strong=\"H1961\"* the|strong=\"H3588\"* number|strong=\"H4557\"* of|strong=\"H5892\"* the|strong=\"H3588\"* streets|strong=\"H2351\"* of|strong=\"H5892\"* Jerusalem|strong=\"H3389\"* you|strong=\"H3588\"* have|strong=\"H1961\"* set|strong=\"H7760\"* up|strong=\"H7760\"* altars|strong=\"H4196\"* to|strong=\"H1961\"* the|strong=\"H3588\"* shameful|strong=\"H1322\"* thing|strong=\"H1322\"*, even|strong=\"H3588\"* altars|strong=\"H4196\"* to|strong=\"H1961\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H1961\"* Baal|strong=\"H1168\"*.’" + }, + { + "verseNum": 14, + "text": "“Therefore|strong=\"H3588\"* don’t pray|strong=\"H6419\"* for|strong=\"H3588\"* this|strong=\"H2088\"* people|strong=\"H5971\"*. Don’t lift|strong=\"H5375\"* up|strong=\"H5375\"* cry|strong=\"H7121\"* or|strong=\"H8085\"* prayer|strong=\"H8605\"* for|strong=\"H3588\"* them|strong=\"H7121\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5971\"* not|strong=\"H2088\"* hear|strong=\"H8085\"* them|strong=\"H7121\"* in|strong=\"H8085\"* the|strong=\"H8085\"* time|strong=\"H6256\"* that|strong=\"H3588\"* they|strong=\"H3588\"* cry|strong=\"H7121\"* to|strong=\"H6256\"* me|strong=\"H7121\"* because|strong=\"H3588\"* of|strong=\"H5971\"* their|strong=\"H5375\"* trouble|strong=\"H7451\"*." + }, + { + "verseNum": 15, + "text": "What|strong=\"H4100\"* has|strong=\"H4100\"* my|strong=\"H5921\"* beloved|strong=\"H3039\"* to|strong=\"H6213\"* do|strong=\"H6213\"* in|strong=\"H5921\"* my|strong=\"H5921\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* called|strong=\"H7121\"* your|strong=\"H3068\"* name|strong=\"H8034\"*, “A|strong=\"H3068\"* green|strong=\"H7488\"* olive|strong=\"H2132\"* tree|strong=\"H2132\"*," + }, + { + "verseNum": 17, + "text": "For|strong=\"H5921\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*, who|strong=\"H3068\"* planted|strong=\"H5193\"* you|strong=\"H5921\"*, has|strong=\"H3068\"* pronounced|strong=\"H1696\"* evil|strong=\"H7451\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, because|strong=\"H5921\"* of|strong=\"H1004\"* the|strong=\"H5921\"* evil|strong=\"H7451\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*, which|strong=\"H3068\"* they|strong=\"H1992\"* have|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H1696\"* themselves|strong=\"H1992\"* in|strong=\"H5921\"* provoking|strong=\"H3707\"* me|strong=\"H5921\"* to|strong=\"H1696\"* anger|strong=\"H3707\"* by|strong=\"H5921\"* offering|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H1696\"* Baal|strong=\"H1168\"*." + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* gave me|strong=\"H7200\"* knowledge|strong=\"H3045\"* of|strong=\"H3068\"* it|strong=\"H3045\"*, and|strong=\"H3068\"* I|strong=\"H3045\"* knew|strong=\"H3045\"* it|strong=\"H3045\"*. Then|strong=\"H3045\"* you|strong=\"H3045\"* showed|strong=\"H7200\"* me|strong=\"H7200\"* their|strong=\"H3068\"* doings|strong=\"H4611\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H8034\"* like|strong=\"H2803\"* a|strong=\"H3068\"* gentle lamb|strong=\"H3532\"* that|strong=\"H3588\"* is|strong=\"H8034\"* led|strong=\"H2986\"* to|strong=\"H5921\"* the|strong=\"H5921\"* slaughter|strong=\"H2873\"*. I|strong=\"H3588\"* didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3588\"* devised|strong=\"H2803\"* plans|strong=\"H4284\"* against|strong=\"H5921\"* me|strong=\"H5921\"*, saying," + }, + { + "verseNum": 20, + "text": "But|strong=\"H3588\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, who|strong=\"H3068\"* judges|strong=\"H8199\"* righteously|strong=\"H6664\"*," + }, + { + "verseNum": 21, + "text": "“Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* men|strong=\"H8034\"* of|strong=\"H3068\"* Anathoth|strong=\"H6068\"*, who|strong=\"H3068\"* seek|strong=\"H1245\"* your|strong=\"H3068\"* life|strong=\"H5315\"*, saying, ‘You|strong=\"H5921\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* prophesy|strong=\"H5012\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, that|strong=\"H5315\"* you|strong=\"H5921\"* not|strong=\"H3808\"* die|strong=\"H4191\"* by|strong=\"H3027\"* our|strong=\"H3068\"* hand|strong=\"H3027\"*’—" + }, + { + "verseNum": 22, + "text": "therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* them|strong=\"H5921\"*. The|strong=\"H5921\"* young|strong=\"H1121\"* men|strong=\"H1121\"* will|strong=\"H3068\"* die|strong=\"H4191\"* by|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*. Their|strong=\"H3068\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H3068\"* daughters|strong=\"H1323\"* will|strong=\"H3068\"* die|strong=\"H4191\"* by|strong=\"H5921\"* famine|strong=\"H7458\"*." + }, + { + "verseNum": 23, + "text": "There|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3808\"* remnant|strong=\"H7611\"* to|strong=\"H1961\"* them|strong=\"H1961\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1961\"* bring|strong=\"H7451\"* evil|strong=\"H7451\"* on|strong=\"H1961\"* the|strong=\"H3588\"* men|strong=\"H7451\"* of|strong=\"H8141\"* Anathoth|strong=\"H6068\"*, even|strong=\"H3588\"* the|strong=\"H3588\"* year|strong=\"H8141\"* of|strong=\"H8141\"* their|strong=\"H3588\"* visitation|strong=\"H6486\"*.’”" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "You|strong=\"H3588\"* are|strong=\"H7563\"* righteous|strong=\"H6662\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 2, + "text": "You|strong=\"H6213\"* have|strong=\"H1571\"* planted|strong=\"H5193\"* them|strong=\"H6213\"*. Yes|strong=\"H1571\"*, they|strong=\"H6310\"* have|strong=\"H1571\"* taken|strong=\"H8327\"* root|strong=\"H8327\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"H7200\"* you|strong=\"H3117\"*, Yahweh|strong=\"H3068\"*, know|strong=\"H3045\"* me|strong=\"H7200\"*." + }, + { + "verseNum": 4, + "text": "How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H3808\"* the|strong=\"H3605\"* land|strong=\"H7704\"* mourn," + }, + { + "verseNum": 5, + "text": "“If|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H7965\"* run|strong=\"H7323\"* with|strong=\"H6213\"* the|strong=\"H3588\"* footmen|strong=\"H7273\"*," + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* even|strong=\"H1571\"* your|strong=\"H3588\"* brothers, and|strong=\"H1004\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* your|strong=\"H3588\"* father," + }, + { + "verseNum": 7, + "text": "“I|strong=\"H5414\"* have|strong=\"H5414\"* forsaken|strong=\"H5800\"* my|strong=\"H5414\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 8, + "text": "My|strong=\"H5414\"* heritage|strong=\"H5159\"* has|strong=\"H1961\"* become|strong=\"H1961\"* to|strong=\"H1961\"* me|strong=\"H5414\"* as|strong=\"H1961\"* a|strong=\"H3068\"* lion in|strong=\"H5921\"* the|strong=\"H5921\"* forest|strong=\"H3293\"*." + }, + { + "verseNum": 9, + "text": "Is|strong=\"H3605\"* my|strong=\"H3605\"* heritage|strong=\"H5159\"* to|strong=\"H3212\"* me|strong=\"H5921\"* as|strong=\"H5159\"* a|strong=\"H3068\"* speckled|strong=\"H6641\"* bird|strong=\"H5861\"* of|strong=\"H7704\"* prey|strong=\"H5861\"*?" + }, + { + "verseNum": 10, + "text": "Many|strong=\"H7227\"* shepherds|strong=\"H7462\"* have|strong=\"H7462\"* destroyed|strong=\"H7843\"* my|strong=\"H5414\"* vineyard|strong=\"H3754\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3588\"* have|strong=\"H3605\"* made|strong=\"H7760\"* it|strong=\"H7760\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*." + }, + { + "verseNum": 12, + "text": "Destroyers|strong=\"H7703\"* have|strong=\"H3068\"* come on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* bare|strong=\"H8205\"* heights|strong=\"H8205\"* in|strong=\"H5921\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*;" + }, + { + "verseNum": 13, + "text": "They|strong=\"H3068\"* have|strong=\"H3068\"* sown|strong=\"H2232\"* wheat|strong=\"H2406\"*," + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Concerning|strong=\"H5921\"* all|strong=\"H3605\"* my|strong=\"H3605\"* evil|strong=\"H7451\"* neighbors|strong=\"H7934\"*, who|strong=\"H3605\"* touch|strong=\"H5060\"* the|strong=\"H3605\"* inheritance|strong=\"H5159\"* which|strong=\"H3068\"* I|strong=\"H2005\"* have|strong=\"H3068\"* caused my|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* inherit|strong=\"H5157\"*: Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* pluck|strong=\"H5428\"* them|strong=\"H5921\"* up|strong=\"H5428\"* from|strong=\"H5921\"* off|strong=\"H5921\"* their|strong=\"H3605\"* land|strong=\"H5159\"*, and|strong=\"H3063\"* will|strong=\"H3068\"* pluck|strong=\"H5428\"* up|strong=\"H5428\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* from|strong=\"H5921\"* among|strong=\"H8432\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "It|strong=\"H7725\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H1961\"* after|strong=\"H1961\"* I|strong=\"H1961\"* have|strong=\"H1961\"* plucked|strong=\"H5428\"* them|strong=\"H7725\"* up|strong=\"H5428\"*, I|strong=\"H1961\"* will|strong=\"H1961\"* return|strong=\"H7725\"* and|strong=\"H7725\"* have|strong=\"H1961\"* compassion|strong=\"H7355\"* on|strong=\"H7355\"* them|strong=\"H7725\"*. I|strong=\"H1961\"* will|strong=\"H1961\"* bring|strong=\"H7725\"* them|strong=\"H7725\"* again|strong=\"H7725\"*, every|strong=\"H7725\"* man to|strong=\"H7725\"* his|strong=\"H7725\"* heritage|strong=\"H5159\"*, and|strong=\"H7725\"* every|strong=\"H7725\"* man to|strong=\"H7725\"* his|strong=\"H7725\"* land|strong=\"H5159\"*." + }, + { + "verseNum": 16, + "text": "It|strong=\"H8432\"* will|strong=\"H3068\"* happen|strong=\"H1961\"*, if|strong=\"H1961\"* they|strong=\"H3068\"* will|strong=\"H3068\"* diligently|strong=\"H3925\"* learn|strong=\"H3925\"* the|strong=\"H8432\"* ways|strong=\"H1870\"* of|strong=\"H3068\"* my|strong=\"H3068\"* people|strong=\"H5971\"*, to|strong=\"H3068\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* my|strong=\"H3068\"* name|strong=\"H8034\"*, ‘As|strong=\"H1961\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*;’ even|strong=\"H1129\"* as|strong=\"H1961\"* they|strong=\"H3068\"* taught|strong=\"H3925\"* my|strong=\"H3068\"* people|strong=\"H5971\"* to|strong=\"H3068\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* Baal|strong=\"H1168\"*, then|strong=\"H1961\"* they|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* built|strong=\"H1129\"* up|strong=\"H1129\"* in|strong=\"H3068\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* my|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H3808\"* if|strong=\"H1931\"* they|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* hear|strong=\"H8085\"*, then|strong=\"H8085\"* I|strong=\"H3808\"* will|strong=\"H3068\"* pluck|strong=\"H5428\"* up|strong=\"H5428\"* that|strong=\"H8085\"* nation|strong=\"H1471\"*, plucking up|strong=\"H5428\"* and|strong=\"H3068\"* destroying it|strong=\"H1931\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H1980\"* me|strong=\"H5921\"*, “Go|strong=\"H1980\"*, and|strong=\"H1980\"* buy|strong=\"H7069\"* yourself|strong=\"H5921\"* a|strong=\"H3068\"* linen|strong=\"H6593\"* belt, and|strong=\"H1980\"* put|strong=\"H7760\"* it|strong=\"H7760\"* on|strong=\"H5921\"* your|strong=\"H3068\"* waist|strong=\"H4975\"*, and|strong=\"H1980\"* don’t put|strong=\"H7760\"* it|strong=\"H7760\"* in|strong=\"H5921\"* water|strong=\"H4325\"*.”" + }, + { + "verseNum": 2, + "text": "So|strong=\"H7760\"* I|strong=\"H5921\"* bought|strong=\"H7069\"* a|strong=\"H3068\"* belt according|strong=\"H5921\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, and|strong=\"H3068\"* put|strong=\"H7760\"* it|strong=\"H7760\"* on|strong=\"H5921\"* my|strong=\"H3068\"* waist|strong=\"H4975\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"* the|strong=\"H3068\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 4, + "text": "“Take|strong=\"H3947\"* the|strong=\"H5921\"* belt that|strong=\"H6965\"* you|strong=\"H5921\"* have|strong=\"H3947\"* bought|strong=\"H7069\"*, which|strong=\"H8033\"* is|strong=\"H8033\"* on|strong=\"H5921\"* your|strong=\"H5921\"* waist|strong=\"H4975\"*, and|strong=\"H6965\"* arise|strong=\"H6965\"*, go|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H5921\"* Euphrates|strong=\"H6578\"*, and|strong=\"H6965\"* hide|strong=\"H2934\"* it|strong=\"H5921\"* there|strong=\"H8033\"* in|strong=\"H5921\"* a|strong=\"H3068\"* cleft of|strong=\"H5921\"* the|strong=\"H5921\"* rock|strong=\"H5553\"*.”" + }, + { + "verseNum": 5, + "text": "So|strong=\"H6680\"* I|strong=\"H6680\"* went|strong=\"H3212\"* and|strong=\"H3068\"* hid|strong=\"H2934\"* it|strong=\"H3068\"* by|strong=\"H3068\"* the|strong=\"H3068\"* Euphrates|strong=\"H6578\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* me|strong=\"H6680\"*." + }, + { + "verseNum": 6, + "text": "After|strong=\"H7093\"* many|strong=\"H7227\"* days|strong=\"H3117\"*, Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H3947\"*, “Arise|strong=\"H6965\"*, go|strong=\"H3212\"* to|strong=\"H3068\"* the|strong=\"H3947\"* Euphrates|strong=\"H6578\"*, and|strong=\"H6965\"* take|strong=\"H3947\"* the|strong=\"H3947\"* belt from|strong=\"H3947\"* there|strong=\"H8033\"*, which|strong=\"H3068\"* I|strong=\"H3117\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"* to|strong=\"H3068\"* hide|strong=\"H2934\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 7, + "text": "Then|strong=\"H2009\"* I|strong=\"H2009\"* went|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3605\"* Euphrates|strong=\"H6578\"*, and|strong=\"H3212\"* dug|strong=\"H2658\"*, and|strong=\"H3212\"* took|strong=\"H3947\"* the|strong=\"H3605\"* belt from|strong=\"H4480\"* the|strong=\"H3605\"* place|strong=\"H4725\"* where|strong=\"H8033\"* I|strong=\"H2009\"* had|strong=\"H3808\"* hidden|strong=\"H2934\"* it|strong=\"H8033\"*; and|strong=\"H3212\"* behold|strong=\"H2009\"*, the|strong=\"H3605\"* belt was|strong=\"H4725\"* ruined|strong=\"H7843\"*. It|strong=\"H8033\"* was|strong=\"H4725\"* profitable|strong=\"H6743\"* for|strong=\"H3605\"* nothing|strong=\"H3808\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 9, + "text": "“Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘In|strong=\"H3068\"* this|strong=\"H3541\"* way|strong=\"H3541\"* I|strong=\"H3541\"* will|strong=\"H3068\"* ruin|strong=\"H7843\"* the|strong=\"H3541\"* pride|strong=\"H1347\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* the|strong=\"H3541\"* great|strong=\"H7227\"* pride|strong=\"H1347\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 10, + "text": "This|strong=\"H2088\"* evil|strong=\"H7451\"* people|strong=\"H5971\"*, who|strong=\"H3605\"* refuse|strong=\"H3987\"* to|strong=\"H1980\"* hear|strong=\"H8085\"* my|strong=\"H8085\"* words|strong=\"H1697\"*, who|strong=\"H3605\"* walk|strong=\"H1980\"* in|strong=\"H1980\"* the|strong=\"H3605\"* stubbornness|strong=\"H8307\"* of|strong=\"H1697\"* their|strong=\"H3605\"* heart|strong=\"H3820\"*, and|strong=\"H1980\"* have|strong=\"H1961\"* gone|strong=\"H1980\"* after|strong=\"H1961\"* other|strong=\"H2088\"* gods|strong=\"H1980\"* to|strong=\"H1980\"* serve|strong=\"H5647\"* them|strong=\"H1992\"* and|strong=\"H1980\"* to|strong=\"H1980\"* worship|strong=\"H7812\"* them|strong=\"H1992\"*, will|strong=\"H1961\"* even|strong=\"H3808\"* be|strong=\"H1961\"* as|strong=\"H1697\"* this|strong=\"H2088\"* belt, which|strong=\"H1992\"* is|strong=\"H2088\"* profitable|strong=\"H6743\"* for|strong=\"H3605\"* nothing|strong=\"H3808\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* as|strong=\"H1961\"* the|strong=\"H3605\"* belt clings|strong=\"H1692\"* to|strong=\"H3478\"* the|strong=\"H3605\"* waist|strong=\"H4975\"* of|strong=\"H1004\"* a|strong=\"H3068\"* man|strong=\"H3605\"*, so|strong=\"H3651\"* I|strong=\"H3588\"* have|strong=\"H1961\"* caused|strong=\"H1961\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* to|strong=\"H3478\"* cling|strong=\"H1692\"* to|strong=\"H3478\"* me|strong=\"H1961\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; ‘that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H1961\"* be|strong=\"H1961\"* to|strong=\"H3478\"* me|strong=\"H1961\"* for|strong=\"H3588\"* a|strong=\"H3068\"* people|strong=\"H5971\"*, for|strong=\"H3588\"* a|strong=\"H3068\"* name|strong=\"H8034\"*, for|strong=\"H3588\"* praise|strong=\"H8416\"*, and|strong=\"H3063\"* for|strong=\"H3588\"* glory|strong=\"H8597\"*; but|strong=\"H3588\"* they|strong=\"H3588\"* would|strong=\"H3068\"* not|strong=\"H3808\"* hear|strong=\"H8085\"*.’" + }, + { + "verseNum": 12, + "text": "“Therefore|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* speak|strong=\"H1697\"* to|strong=\"H3478\"* them|strong=\"H3588\"* this|strong=\"H2088\"* word|strong=\"H1697\"*: ‘Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, “Every|strong=\"H3605\"* container should|strong=\"H3068\"* be|strong=\"H3808\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* wine|strong=\"H3196\"*.”’ They|strong=\"H3588\"* will|strong=\"H3068\"* tell|strong=\"H3045\"* you|strong=\"H3588\"*, ‘Do|strong=\"H3068\"* we|strong=\"H3068\"* not|strong=\"H3808\"* certainly|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* every|strong=\"H3605\"* container should|strong=\"H3068\"* be|strong=\"H3808\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* wine|strong=\"H3196\"*?’" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H4428\"* tell|strong=\"H3605\"* them|strong=\"H5921\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* fill|strong=\"H4390\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* this|strong=\"H2063\"* land, even|strong=\"H3068\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* who|strong=\"H3605\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* David|strong=\"H1732\"*’s throne|strong=\"H3678\"*, the|strong=\"H3605\"* priests|strong=\"H3548\"*, the|strong=\"H3605\"* prophets|strong=\"H5030\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, with|strong=\"H4390\"* drunkenness|strong=\"H7943\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3808\"* will|strong=\"H3068\"* dash|strong=\"H5310\"* them|strong=\"H7843\"* one|strong=\"H3808\"* against|strong=\"H3068\"* another|strong=\"H3808\"*, even|strong=\"H3808\"* the|strong=\"H5002\"* fathers and|strong=\"H1121\"* the|strong=\"H5002\"* sons|strong=\"H1121\"* together|strong=\"H3162\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*: “I|strong=\"H3808\"* will|strong=\"H3068\"* not|strong=\"H3808\"* pity|strong=\"H2347\"*, spare|strong=\"H2550\"*, or|strong=\"H3808\"* have|strong=\"H7355\"* compassion|strong=\"H7355\"*, that|strong=\"H3068\"* I|strong=\"H3808\"* should|strong=\"H3068\"* not|strong=\"H3808\"* destroy|strong=\"H7843\"* them|strong=\"H7843\"*.”’”" + }, + { + "verseNum": 15, + "text": "Hear|strong=\"H8085\"*, and|strong=\"H3068\"* give|strong=\"H1696\"* ear|strong=\"H8085\"*." + }, + { + "verseNum": 16, + "text": "Give|strong=\"H5414\"* glory|strong=\"H3519\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 17, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* hear|strong=\"H8085\"* it|strong=\"H3588\"*," + }, + { + "verseNum": 18, + "text": "Say to|strong=\"H3381\"* the|strong=\"H3588\"* king|strong=\"H4428\"* and|strong=\"H4428\"* to|strong=\"H3381\"* the|strong=\"H3588\"* queen|strong=\"H1377\"* mother|strong=\"H1377\"*," + }, + { + "verseNum": 19, + "text": "The|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H3605\"* South|strong=\"H5045\"* are|strong=\"H5892\"* shut|strong=\"H5462\"* up|strong=\"H5462\"*," + }, + { + "verseNum": 20, + "text": "Lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5414\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 21, + "text": "What|strong=\"H4100\"* will|strong=\"H3808\"* you|strong=\"H3588\"* say when|strong=\"H3588\"* he|strong=\"H3588\"* sets over|strong=\"H5921\"* you|strong=\"H3588\"* as|strong=\"H3644\"* head|strong=\"H7218\"* those|strong=\"H5921\"* whom|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* yourself|strong=\"H5921\"* taught|strong=\"H3925\"* to|strong=\"H5921\"* be|strong=\"H3808\"* friends to|strong=\"H5921\"* you|strong=\"H3588\"*?" + }, + { + "verseNum": 22, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* say in|strong=\"H3588\"* your|strong=\"H3588\"* heart|strong=\"H3824\"*," + }, + { + "verseNum": 23, + "text": "Can|strong=\"H3201\"* the|strong=\"H1571\"* Ethiopian|strong=\"H3569\"* change|strong=\"H2015\"* his|strong=\"H2015\"* skin|strong=\"H5785\"*," + }, + { + "verseNum": 24, + "text": "“Therefore I will|strong=\"H7307\"* scatter|strong=\"H6327\"* them|strong=\"H5674\"*" + }, + { + "verseNum": 25, + "text": "This|strong=\"H2088\"* is|strong=\"H3068\"* your|strong=\"H3068\"* lot|strong=\"H1486\"*," + }, + { + "verseNum": 26, + "text": "Therefore|strong=\"H5921\"* I|strong=\"H5921\"* will|strong=\"H1571\"* also|strong=\"H1571\"* uncover your|strong=\"H5921\"* skirts|strong=\"H7757\"* on|strong=\"H5921\"* your|strong=\"H5921\"* face|strong=\"H6440\"*," + }, + { + "verseNum": 27, + "text": "I|strong=\"H5921\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* your|strong=\"H5921\"* abominations|strong=\"H8251\"*, even|strong=\"H5750\"* your|strong=\"H5921\"* adulteries|strong=\"H5004\"*" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "This|strong=\"H1697\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* that|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* drought|strong=\"H1226\"*:" + }, + { + "verseNum": 2, + "text": "“Judah|strong=\"H3063\"* mourns," + }, + { + "verseNum": 3, + "text": "Their|strong=\"H7725\"* nobles send|strong=\"H7971\"* their|strong=\"H7725\"* little|strong=\"H6810\"* ones|strong=\"H6810\"* to|strong=\"H7725\"* the|strong=\"H5921\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 4, + "text": "Because|strong=\"H3588\"* of|strong=\"H7218\"* the|strong=\"H3588\"* ground which|strong=\"H3588\"* is|strong=\"H1961\"* cracked|strong=\"H2865\"*," + }, + { + "verseNum": 5, + "text": "Yes|strong=\"H3588\"*, the|strong=\"H3588\"* doe in|strong=\"H3808\"* the|strong=\"H3588\"* field|strong=\"H7704\"* also|strong=\"H1571\"* calves and|strong=\"H7704\"* forsakes|strong=\"H5800\"* her|strong=\"H3205\"* young|strong=\"H3205\"*," + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* wild|strong=\"H6501\"* donkeys|strong=\"H6501\"* stand|strong=\"H5975\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bare|strong=\"H8205\"* heights|strong=\"H8205\"*." + }, + { + "verseNum": 7, + "text": "Though|strong=\"H3588\"* our|strong=\"H3068\"* iniquities|strong=\"H5771\"* testify|strong=\"H6030\"* against|strong=\"H2398\"* us|strong=\"H6213\"*," + }, + { + "verseNum": 8, + "text": "You|strong=\"H4100\"* hope|strong=\"H4723\"* of|strong=\"H6256\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 9, + "text": "Why|strong=\"H4100\"* should|strong=\"H3068\"* you|strong=\"H5921\"* be|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* scared man|strong=\"H1368\"*," + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"*:" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H1157\"*, “Don’t pray|strong=\"H6419\"* for|strong=\"H1157\"* this|strong=\"H2088\"* people|strong=\"H5971\"* for|strong=\"H1157\"* their|strong=\"H3068\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* fast|strong=\"H6684\"*, I|strong=\"H3588\"* will|strong=\"H2719\"* not|strong=\"H3588\"* hear|strong=\"H8085\"* their|strong=\"H8085\"* cry|strong=\"H7440\"*; and|strong=\"H2719\"* when|strong=\"H3588\"* they|strong=\"H3588\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* and|strong=\"H2719\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, I|strong=\"H3588\"* will|strong=\"H2719\"* not|strong=\"H3588\"* accept|strong=\"H7521\"* them|strong=\"H3615\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H2719\"* consume|strong=\"H3615\"* them|strong=\"H3615\"* by|strong=\"H5927\"* the|strong=\"H8085\"* sword|strong=\"H2719\"*, by|strong=\"H5927\"* famine|strong=\"H7458\"*, and|strong=\"H2719\"* by|strong=\"H5927\"* pestilence|strong=\"H1698\"*.”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H1961\"* I|strong=\"H3588\"* said, “Ah, Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*! Behold|strong=\"H2009\"*, the|strong=\"H7200\"* prophets|strong=\"H5030\"* tell|strong=\"H7200\"* them|strong=\"H5414\"*, ‘You|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* see|strong=\"H7200\"* the|strong=\"H7200\"* sword|strong=\"H2719\"*, neither|strong=\"H3808\"* will|strong=\"H1961\"* you|strong=\"H3588\"* have|strong=\"H1961\"* famine|strong=\"H7458\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1961\"* give|strong=\"H5414\"* you|strong=\"H3588\"* assured peace|strong=\"H7965\"* in|strong=\"H4725\"* this|strong=\"H2088\"* place|strong=\"H4725\"*.’”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H1696\"* Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7971\"*, “The|strong=\"H3068\"* prophets|strong=\"H5030\"* prophesy|strong=\"H5012\"* lies|strong=\"H8267\"* in|strong=\"H3068\"* my|strong=\"H3068\"* name|strong=\"H8034\"*. I|strong=\"H6680\"* didn’t send|strong=\"H7971\"* them|strong=\"H1992\"*. I|strong=\"H6680\"* didn’t command|strong=\"H6680\"* them|strong=\"H1992\"*. I|strong=\"H6680\"* didn’t speak|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H1992\"*. They|strong=\"H1992\"* prophesy|strong=\"H5012\"* to|strong=\"H1696\"* you|strong=\"H6680\"* a|strong=\"H3068\"* lying|strong=\"H8267\"* vision|strong=\"H2377\"*, divination|strong=\"H7081\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* thing|strong=\"H8267\"* of|strong=\"H3068\"* nothing|strong=\"H3808\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* deceit|strong=\"H8267\"* of|strong=\"H3068\"* their|strong=\"H3068\"* own heart|strong=\"H3820\"*." + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"* who|strong=\"H3068\"* prophesy|strong=\"H5012\"* in|strong=\"H5921\"* my|strong=\"H3068\"* name|strong=\"H8034\"*, but|strong=\"H3808\"* I|strong=\"H3541\"* didn’t send|strong=\"H7971\"* them|strong=\"H1992\"*, yet|strong=\"H3068\"* they|strong=\"H1992\"* say, ‘Sword|strong=\"H2719\"* and|strong=\"H3068\"* famine|strong=\"H7458\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* in|strong=\"H5921\"* this|strong=\"H2063\"* land.’ Those|strong=\"H1992\"* prophets|strong=\"H5030\"* will|strong=\"H3068\"* be|strong=\"H1961\"* consumed|strong=\"H8552\"* by|strong=\"H5921\"* sword|strong=\"H2719\"* and|strong=\"H3068\"* famine|strong=\"H7458\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H6440\"* people|strong=\"H5971\"* to|strong=\"H1961\"* whom|strong=\"H1992\"* they|strong=\"H1992\"* prophesy|strong=\"H5012\"* will|strong=\"H1961\"* be|strong=\"H1961\"* cast|strong=\"H7993\"* out|strong=\"H8210\"* in|strong=\"H5921\"* the|strong=\"H6440\"* streets|strong=\"H2351\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* because|strong=\"H5921\"* of|strong=\"H1121\"* the|strong=\"H6440\"* famine|strong=\"H7458\"* and|strong=\"H1121\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*. They|strong=\"H1992\"* will|strong=\"H1961\"* have|strong=\"H1961\"* no|strong=\"H6440\"* one|strong=\"H1121\"* to|strong=\"H1961\"* bury|strong=\"H6912\"* them|strong=\"H1992\"*—them|strong=\"H1992\"*, their|strong=\"H6440\"* wives, their|strong=\"H6440\"* sons|strong=\"H1121\"*, or|strong=\"H1121\"* their|strong=\"H6440\"* daughters|strong=\"H1323\"*, for|strong=\"H5921\"* I|strong=\"H5921\"* will|strong=\"H1961\"* pour|strong=\"H8210\"* their|strong=\"H6440\"* wickedness|strong=\"H7451\"* on|strong=\"H5921\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 17, + "text": "“You|strong=\"H3588\"* shall|strong=\"H5971\"* say|strong=\"H1697\"* this|strong=\"H2088\"* word|strong=\"H1697\"* to|strong=\"H3381\"* them|strong=\"H3381\"*:" + }, + { + "verseNum": 18, + "text": "If|strong=\"H3588\"* I|strong=\"H3588\"* go|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3588\"* field|strong=\"H7704\"*," + }, + { + "verseNum": 19, + "text": "Have|strong=\"H3063\"* you|strong=\"H5221\"* utterly|strong=\"H3988\"* rejected|strong=\"H3988\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 20, + "text": "We|strong=\"H3588\"* acknowledge|strong=\"H3045\"*, Yahweh|strong=\"H3068\"*, our|strong=\"H3068\"* wickedness|strong=\"H7562\"*," + }, + { + "verseNum": 21, + "text": "Do|strong=\"H6565\"* not|strong=\"H2142\"* abhor|strong=\"H5006\"* us|strong=\"H2142\"*, for|strong=\"H8034\"* your|strong=\"H2142\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*." + }, + { + "verseNum": 22, + "text": "Are|strong=\"H1471\"* there|strong=\"H3426\"* any|strong=\"H3605\"* among|strong=\"H3808\"* the|strong=\"H3605\"* vanities|strong=\"H1892\"* of|strong=\"H3068\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H3588\"* can|strong=\"H6213\"* cause|strong=\"H5414\"* rain|strong=\"H1652\"*?" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3318\"* Yahweh|strong=\"H3068\"* said|strong=\"H3318\"* to|strong=\"H3318\"* me|strong=\"H6440\"*, “Though Moses|strong=\"H4872\"* and|strong=\"H4872\"* Samuel|strong=\"H8050\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* me|strong=\"H6440\"*, yet|strong=\"H3068\"* my|strong=\"H3068\"* mind|strong=\"H5315\"* would|strong=\"H3068\"* not|strong=\"H2088\"* turn|strong=\"H5971\"* toward|strong=\"H5921\"* this|strong=\"H2088\"* people|strong=\"H5971\"*. Cast|strong=\"H7971\"* them|strong=\"H5921\"* out|strong=\"H3318\"* of|strong=\"H3068\"* my|strong=\"H3068\"* sight|strong=\"H6440\"*, and|strong=\"H4872\"* let|strong=\"H7971\"* them|strong=\"H5921\"* go|strong=\"H3318\"* out|strong=\"H3318\"*!" + }, + { + "verseNum": 2, + "text": "It|strong=\"H3588\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* when|strong=\"H3588\"* they|strong=\"H3588\"* ask you|strong=\"H3588\"*, ‘Where shall|strong=\"H3068\"* we|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"*?’ then|strong=\"H1961\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* tell them|strong=\"H3318\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 3, + "text": "“I|strong=\"H5921\"* will|strong=\"H3068\"* appoint|strong=\"H6485\"* over|strong=\"H5921\"* them|strong=\"H5921\"* four kinds|strong=\"H4940\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*: “the|strong=\"H5002\"* sword|strong=\"H2719\"* to|strong=\"H3068\"* kill|strong=\"H2026\"*, the|strong=\"H5002\"* dogs|strong=\"H3611\"* to|strong=\"H3068\"* tear|strong=\"H5498\"*, the|strong=\"H5002\"* birds|strong=\"H5775\"* of|strong=\"H3068\"* the|strong=\"H5002\"* sky|strong=\"H8064\"*, and|strong=\"H3068\"* the|strong=\"H5002\"* animals of|strong=\"H3068\"* the|strong=\"H5002\"* earth|strong=\"H8064\"*, to|strong=\"H3068\"* devour and|strong=\"H3068\"* to|strong=\"H3068\"* destroy|strong=\"H7843\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H5414\"* will|strong=\"H4428\"* cause|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5921\"* be|strong=\"H1121\"* tossed back and|strong=\"H1121\"* forth|strong=\"H5414\"* among|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H1121\"* the|strong=\"H3605\"* earth, because|strong=\"H5921\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hezekiah|strong=\"H2396\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, for|strong=\"H5921\"* that|strong=\"H3605\"* which|strong=\"H3063\"* he|strong=\"H6213\"* did|strong=\"H6213\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* who|strong=\"H4310\"* will|strong=\"H4310\"* have|strong=\"H2550\"* pity|strong=\"H2550\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, Jerusalem|strong=\"H3389\"*?" + }, + { + "verseNum": 6, + "text": "You|strong=\"H5921\"* have|strong=\"H3068\"* rejected me|strong=\"H5921\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H3808\"* have|strong=\"H5971\"* winnowed|strong=\"H2219\"* them|strong=\"H7725\"* with|strong=\"H5971\"* a|strong=\"H3068\"* fan|strong=\"H2219\"* in|strong=\"H1870\"* the|strong=\"H7725\"* gates|strong=\"H8179\"* of|strong=\"H1870\"* the|strong=\"H7725\"* land." + }, + { + "verseNum": 8, + "text": "Their|strong=\"H1992\"* widows are|strong=\"H1992\"* increased|strong=\"H6105\"* more|strong=\"H6105\"* than|strong=\"H5921\"* the|strong=\"H5921\"* sand|strong=\"H2344\"* of|strong=\"H5892\"* the|strong=\"H5921\"* seas|strong=\"H3220\"*." + }, + { + "verseNum": 9, + "text": "She|strong=\"H6440\"* who|strong=\"H3068\"* has|strong=\"H3068\"* borne|strong=\"H3205\"* seven|strong=\"H7651\"* languishes." + }, + { + "verseNum": 10, + "text": "Woe is|strong=\"H3605\"* me|strong=\"H3205\"*, my|strong=\"H3605\"* mother, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3605\"* borne|strong=\"H3205\"* me|strong=\"H3205\"*, a|strong=\"H3068\"* man|strong=\"H3605\"* of|strong=\"H3205\"* strife|strong=\"H7379\"*," + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* said," + }, + { + "verseNum": 12, + "text": "Can one break|strong=\"H7489\"* iron|strong=\"H1270\"*," + }, + { + "verseNum": 13, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* your|strong=\"H3605\"* substance|strong=\"H2428\"* and|strong=\"H2403\"* your|strong=\"H3605\"* treasures for|strong=\"H3605\"* a|strong=\"H3068\"* plunder without|strong=\"H3808\"* price|strong=\"H4242\"*," + }, + { + "verseNum": 14, + "text": "I|strong=\"H3588\"* will|strong=\"H3808\"* make|strong=\"H3045\"* them|strong=\"H5921\"* to|strong=\"H5921\"* pass|strong=\"H5674\"* with|strong=\"H5921\"* your|strong=\"H5921\"* enemies into|strong=\"H5921\"* a|strong=\"H3068\"* land which|strong=\"H3588\"* you|strong=\"H3588\"* don’t know|strong=\"H3045\"*;" + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"*, you|strong=\"H5921\"* know|strong=\"H3045\"*." + }, + { + "verseNum": 16, + "text": "Your|strong=\"H3068\"* words|strong=\"H1697\"* were|strong=\"H1961\"* found|strong=\"H4672\"*," + }, + { + "verseNum": 17, + "text": "I|strong=\"H3588\"* didn’t sit|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* assembly|strong=\"H5475\"* of|strong=\"H3027\"* those|strong=\"H3427\"* who|strong=\"H3427\"* make|strong=\"H3027\"* merry|strong=\"H7832\"* and|strong=\"H3027\"* rejoice|strong=\"H5937\"*." + }, + { + "verseNum": 18, + "text": "Why|strong=\"H4100\"* is|strong=\"H4100\"* my|strong=\"H1961\"* pain|strong=\"H3511\"* perpetual|strong=\"H5331\"*," + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 20, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H5414\"* you|strong=\"H3588\"* to|strong=\"H3201\"* this|strong=\"H2088\"* people|strong=\"H5971\"* a|strong=\"H3068\"* fortified|strong=\"H1219\"* bronze|strong=\"H5178\"* wall|strong=\"H2346\"*." + }, + { + "verseNum": 21, + "text": "“I|strong=\"H3027\"* will|strong=\"H3027\"* deliver|strong=\"H5337\"* you|strong=\"H3027\"* out|strong=\"H5337\"* of|strong=\"H3027\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3027\"* wicked|strong=\"H7451\"*," + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“You|strong=\"H3947\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife, neither|strong=\"H3808\"* shall|strong=\"H1121\"* you|strong=\"H3947\"* have|strong=\"H1961\"* sons|strong=\"H1121\"* or|strong=\"H3808\"* daughters|strong=\"H1323\"*, in|strong=\"H1121\"* this|strong=\"H2088\"* place|strong=\"H4725\"*.”" + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* daughters|strong=\"H1323\"* who|strong=\"H3068\"* are|strong=\"H1121\"* born|strong=\"H3205\"* in|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, and|strong=\"H1121\"* concerning|strong=\"H5921\"* their|strong=\"H3068\"* mothers who|strong=\"H3068\"* bore|strong=\"H3205\"* them|strong=\"H5921\"*, and|strong=\"H1121\"* concerning|strong=\"H5921\"* their|strong=\"H3068\"* fathers|strong=\"H3205\"* who|strong=\"H3068\"* became|strong=\"H3205\"* their|strong=\"H3068\"* father|strong=\"H3205\"* in|strong=\"H5921\"* this|strong=\"H2088\"* land|strong=\"H4725\"*:" + }, + { + "verseNum": 4, + "text": "“They|strong=\"H3808\"* will|strong=\"H1961\"* die|strong=\"H4191\"* grievous|strong=\"H8463\"* deaths|strong=\"H4463\"*. They|strong=\"H3808\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* lamented|strong=\"H5594\"*, neither|strong=\"H3808\"* will|strong=\"H1961\"* they|strong=\"H3808\"* be|strong=\"H1961\"* buried|strong=\"H6912\"*. They|strong=\"H3808\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* dung|strong=\"H1828\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*. They|strong=\"H3808\"* will|strong=\"H1961\"* be|strong=\"H1961\"* consumed|strong=\"H3615\"* by|strong=\"H5921\"* the|strong=\"H6440\"* sword|strong=\"H2719\"* and|strong=\"H8064\"* by|strong=\"H5921\"* famine|strong=\"H7458\"*. Their|strong=\"H6440\"* dead|strong=\"H4191\"* bodies|strong=\"H5038\"* will|strong=\"H1961\"* be|strong=\"H1961\"* food|strong=\"H3978\"* for|strong=\"H5921\"* the|strong=\"H6440\"* birds|strong=\"H5775\"* of|strong=\"H6440\"* the|strong=\"H6440\"* sky|strong=\"H8064\"* and|strong=\"H8064\"* for|strong=\"H5921\"* the|strong=\"H6440\"* animals|strong=\"H1961\"* of|strong=\"H6440\"* the|strong=\"H6440\"* earth|strong=\"H8064\"*.”" + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*, “Don’t enter into|strong=\"H3212\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* mourning|strong=\"H4798\"*. Don’t go|strong=\"H3212\"* to|strong=\"H3068\"* lament|strong=\"H5594\"*. Don’t bemoan|strong=\"H5110\"* them|strong=\"H3588\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* taken away|strong=\"H3212\"* my|strong=\"H3068\"* peace|strong=\"H7965\"* from|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “even|strong=\"H3588\"* loving kindness|strong=\"H2617\"* and|strong=\"H3068\"* tender mercies|strong=\"H7356\"*." + }, + { + "verseNum": 6, + "text": "Both|strong=\"H4191\"* great|strong=\"H1419\"* and|strong=\"H1419\"* small|strong=\"H6996\"* will|strong=\"H3808\"* die|strong=\"H4191\"* in|strong=\"H4191\"* this|strong=\"H2063\"* land. They|strong=\"H1992\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H4191\"* buried|strong=\"H6912\"*. Men|strong=\"H1419\"* won’t lament|strong=\"H5594\"* for|strong=\"H4191\"* them|strong=\"H1992\"*, cut|strong=\"H1413\"* themselves|strong=\"H1992\"*, or|strong=\"H3808\"* make|strong=\"H7139\"* themselves|strong=\"H1992\"* bald|strong=\"H7139\"* for|strong=\"H4191\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 7, + "text": "Men won’t break|strong=\"H6536\"* bread for|strong=\"H5921\"* them|strong=\"H5921\"* in|strong=\"H5921\"* mourning|strong=\"H5162\"*, to|strong=\"H4191\"* comfort|strong=\"H5162\"* them|strong=\"H5921\"* for|strong=\"H5921\"* the|strong=\"H5921\"* dead|strong=\"H4191\"*. Men won’t give|strong=\"H8248\"* them|strong=\"H5921\"* the|strong=\"H5921\"* cup|strong=\"H3563\"* of|strong=\"H5921\"* consolation|strong=\"H8575\"* to|strong=\"H4191\"* drink|strong=\"H8248\"* for|strong=\"H5921\"* their|strong=\"H5921\"* father or|strong=\"H3808\"* for|strong=\"H5921\"* their|strong=\"H5921\"* mother." + }, + { + "verseNum": 8, + "text": "“You|strong=\"H3808\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* go into the|strong=\"H8354\"* house|strong=\"H1004\"* of|strong=\"H1004\"* feasting|strong=\"H4960\"* to|strong=\"H1004\"* sit|strong=\"H3427\"* with|strong=\"H1004\"* them|strong=\"H3427\"*, to|strong=\"H1004\"* eat and|strong=\"H1004\"* to|strong=\"H1004\"* drink|strong=\"H8354\"*.”" + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* cause to|strong=\"H3478\"* cease|strong=\"H7673\"* out|strong=\"H4480\"* of|strong=\"H3068\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, before|strong=\"H4480\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"* and|strong=\"H3478\"* in|strong=\"H3478\"* your|strong=\"H3068\"* days|strong=\"H3117\"*, the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* mirth|strong=\"H8057\"* and|strong=\"H3478\"* the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* gladness|strong=\"H8057\"*, the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* the|strong=\"H3588\"* bridegroom|strong=\"H2860\"* and|strong=\"H3478\"* the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* the|strong=\"H3588\"* bride|strong=\"H3618\"*." + }, + { + "verseNum": 10, + "text": "It|strong=\"H5921\"* will|strong=\"H3068\"* happen|strong=\"H1961\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* tell|strong=\"H5046\"* this|strong=\"H2088\"* people|strong=\"H5971\"* all|strong=\"H3605\"* these|strong=\"H2088\"* words|strong=\"H1697\"*, and|strong=\"H3068\"* they|strong=\"H3588\"* ask you|strong=\"H3588\"*, ‘Why|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* pronounced|strong=\"H1696\"* all|strong=\"H3605\"* this|strong=\"H2088\"* great|strong=\"H1419\"* evil|strong=\"H7451\"* against|strong=\"H5921\"* us|strong=\"H5046\"*?’ or|strong=\"H1419\"* ‘What|strong=\"H4100\"* is|strong=\"H3068\"* our|strong=\"H3068\"* iniquity|strong=\"H5771\"*?’ or|strong=\"H1419\"* ‘What|strong=\"H4100\"* is|strong=\"H3068\"* our|strong=\"H3068\"* sin|strong=\"H2403\"* that|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H1961\"* committed|strong=\"H2398\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*?’" + }, + { + "verseNum": 11, + "text": "then|strong=\"H3068\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* tell them|strong=\"H5921\"*, ‘Because|strong=\"H5921\"* your|strong=\"H3068\"* fathers have|strong=\"H3068\"* forsaken|strong=\"H5800\"* me|strong=\"H5921\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, ‘and|strong=\"H3068\"* have|strong=\"H3068\"* walked|strong=\"H3212\"* after|strong=\"H5921\"* other gods, have|strong=\"H3068\"* served|strong=\"H5647\"* them|strong=\"H5921\"*, have|strong=\"H3068\"* worshiped|strong=\"H7812\"* them|strong=\"H5921\"*, have|strong=\"H3068\"* forsaken|strong=\"H5800\"* me|strong=\"H5921\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* my|strong=\"H8104\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H6213\"* have|strong=\"H7489\"* done|strong=\"H6213\"* evil|strong=\"H7451\"* more|strong=\"H1980\"* than|strong=\"H1115\"* your|strong=\"H8085\"* fathers, for|strong=\"H6213\"* behold|strong=\"H2005\"*, you|strong=\"H6213\"* each walk|strong=\"H1980\"* after|strong=\"H1980\"* the|strong=\"H8085\"* stubbornness|strong=\"H8307\"* of|strong=\"H3820\"* his|strong=\"H8085\"* evil|strong=\"H7451\"* heart|strong=\"H3820\"*, so|strong=\"H6213\"* that|strong=\"H8085\"* you|strong=\"H6213\"* don’t listen|strong=\"H8085\"* to|strong=\"H1980\"* me|strong=\"H6213\"*." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"H5921\"* I|strong=\"H5414\"* will|strong=\"H5414\"* cast|strong=\"H5414\"* you|strong=\"H5414\"* out|strong=\"H5414\"* of|strong=\"H5921\"* this|strong=\"H2063\"* land into|strong=\"H5921\"* the|strong=\"H5921\"* land that|strong=\"H3045\"* you|strong=\"H5414\"* have|strong=\"H3045\"* not|strong=\"H3808\"* known|strong=\"H3045\"*, neither|strong=\"H3808\"* you|strong=\"H5414\"* nor|strong=\"H3808\"* your|strong=\"H5414\"* fathers. There|strong=\"H8033\"* you|strong=\"H5414\"* will|strong=\"H5414\"* serve|strong=\"H5647\"* other|strong=\"H2063\"* gods day|strong=\"H3119\"* and|strong=\"H3119\"* night|strong=\"H3915\"*, for|strong=\"H5921\"* I|strong=\"H5414\"* will|strong=\"H5414\"* show|strong=\"H3045\"* you|strong=\"H5414\"* no|strong=\"H3808\"* favor|strong=\"H2594\"*.’" + }, + { + "verseNum": 14, + "text": "“Therefore|strong=\"H3651\"* behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H5927\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3117\"* it|strong=\"H3651\"* will|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H5750\"* be|strong=\"H3808\"* said|strong=\"H5002\"*, ‘As|strong=\"H3117\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, who|strong=\"H3068\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* the|strong=\"H5002\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* out|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H5002\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*;’" + }, + { + "verseNum": 15, + "text": "but|strong=\"H3588\"*, ‘As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, who|strong=\"H3605\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* from|strong=\"H7725\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* the|strong=\"H3605\"* north|strong=\"H6828\"*, and|strong=\"H1121\"* from|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* countries where|strong=\"H8033\"* he|strong=\"H3588\"* had|strong=\"H3068\"* driven|strong=\"H5080\"* them|strong=\"H5414\"*.’ I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H7725\"* them|strong=\"H5414\"* again|strong=\"H7725\"* into|strong=\"H7725\"* their|strong=\"H3605\"* land that|strong=\"H3588\"* I|strong=\"H3588\"* gave|strong=\"H5414\"* to|strong=\"H7725\"* their|strong=\"H3605\"* fathers." + }, + { + "verseNum": 16, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* send|strong=\"H7971\"* for|strong=\"H5921\"* many|strong=\"H7227\"* fishermen|strong=\"H1728\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “and|strong=\"H3068\"* they|strong=\"H3651\"* will|strong=\"H3068\"* fish|strong=\"H1770\"* them|strong=\"H5921\"* up|strong=\"H5921\"*. Afterward I|strong=\"H2005\"* will|strong=\"H3068\"* send|strong=\"H7971\"* for|strong=\"H5921\"* many|strong=\"H7227\"* hunters|strong=\"H6719\"*, and|strong=\"H3068\"* they|strong=\"H3651\"* will|strong=\"H3068\"* hunt|strong=\"H6679\"* them|strong=\"H5921\"* from|strong=\"H5921\"* every|strong=\"H3605\"* mountain|strong=\"H2022\"*, from|strong=\"H5921\"* every|strong=\"H3605\"* hill|strong=\"H2022\"*, and|strong=\"H3068\"* out|strong=\"H7971\"* of|strong=\"H3068\"* the|strong=\"H3605\"* clefts|strong=\"H5357\"* of|strong=\"H3068\"* the|strong=\"H3605\"* rocks|strong=\"H5553\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* my|strong=\"H3605\"* eyes|strong=\"H5869\"* are|strong=\"H5869\"* on|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* ways|strong=\"H1870\"*. They|strong=\"H3588\"* are|strong=\"H5869\"* not|strong=\"H3808\"* hidden|strong=\"H5641\"* from|strong=\"H6440\"* my|strong=\"H3605\"* face|strong=\"H6440\"*. Their|strong=\"H3605\"* iniquity|strong=\"H5771\"* isn’t concealed|strong=\"H5641\"* from|strong=\"H6440\"* my|strong=\"H3605\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 18, + "text": "First|strong=\"H7223\"* I|strong=\"H5921\"* will|strong=\"H5771\"* recompense|strong=\"H7999\"* their|strong=\"H4390\"* iniquity|strong=\"H5771\"* and|strong=\"H2403\"* their|strong=\"H4390\"* sin|strong=\"H2403\"* double|strong=\"H4932\"*, because|strong=\"H5921\"* they|strong=\"H5921\"* have|strong=\"H5771\"* polluted|strong=\"H2490\"* my|strong=\"H5921\"* land|strong=\"H5159\"* with|strong=\"H4390\"* the|strong=\"H5921\"* carcasses|strong=\"H5038\"* of|strong=\"H4390\"* their|strong=\"H4390\"* detestable|strong=\"H8251\"* things|strong=\"H8251\"*, and|strong=\"H2403\"* have|strong=\"H5771\"* filled|strong=\"H4390\"* my|strong=\"H5921\"* inheritance|strong=\"H5159\"* with|strong=\"H4390\"* their|strong=\"H4390\"* abominations|strong=\"H8441\"*.”" + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"*, my|strong=\"H3068\"* strength|strong=\"H5797\"*, my|strong=\"H3068\"* stronghold|strong=\"H4581\"*," + }, + { + "verseNum": 20, + "text": "Should|strong=\"H6213\"* a|strong=\"H3068\"* man make|strong=\"H6213\"* to|strong=\"H6213\"* himself|strong=\"H6213\"* gods" + }, + { + "verseNum": 21, + "text": "“Therefore|strong=\"H3651\"* behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* cause|strong=\"H3651\"* them|strong=\"H3027\"* to|strong=\"H3068\"* know|strong=\"H3045\"*," + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "“The|strong=\"H5921\"* sin|strong=\"H2403\"* of|strong=\"H4196\"* Judah|strong=\"H3063\"* is|strong=\"H3820\"* written|strong=\"H3789\"* with|strong=\"H5921\"* a|strong=\"H3068\"* pen|strong=\"H5842\"* of|strong=\"H4196\"* iron|strong=\"H1270\"*," + }, + { + "verseNum": 2, + "text": "Even|strong=\"H5921\"* their|strong=\"H5921\"* children|strong=\"H1121\"* remember|strong=\"H2142\"* their|strong=\"H5921\"* altars|strong=\"H4196\"*" + }, + { + "verseNum": 3, + "text": "My|strong=\"H5414\"* mountain|strong=\"H2042\"* in|strong=\"H5414\"* the|strong=\"H3605\"* field|strong=\"H7704\"*," + }, + { + "verseNum": 4, + "text": "You|strong=\"H3588\"*, even|strong=\"H5704\"* of|strong=\"H5159\"* yourself|strong=\"H3045\"*, will|strong=\"H5414\"* discontinue|strong=\"H8058\"* from|strong=\"H5704\"* your|strong=\"H5414\"* heritage|strong=\"H5159\"* that|strong=\"H3588\"* I|strong=\"H3588\"* gave|strong=\"H5414\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* bush|strong=\"H6176\"* in|strong=\"H3427\"* the|strong=\"H7200\"* desert|strong=\"H6160\"*," + }, + { + "verseNum": 7, + "text": "“Blessed|strong=\"H1288\"* is|strong=\"H3068\"* the|strong=\"H3068\"* man|strong=\"H1397\"* who|strong=\"H3068\"* trusts|strong=\"H4009\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* a|strong=\"H3068\"* tree|strong=\"H6086\"* planted|strong=\"H8362\"* by|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"*," + }, + { + "verseNum": 9, + "text": "The|strong=\"H3605\"* heart|strong=\"H3820\"* is|strong=\"H1931\"* deceitful|strong=\"H6121\"* above|strong=\"H3820\"* all|strong=\"H3605\"* things|strong=\"H3605\"*" + }, + { + "verseNum": 10, + "text": "“I|strong=\"H5414\"*, Yahweh|strong=\"H3068\"*, search|strong=\"H2713\"* the|strong=\"H5414\"* mind|strong=\"H3820\"*." + }, + { + "verseNum": 11, + "text": "As|strong=\"H3117\"* the|strong=\"H6213\"* partridge|strong=\"H7124\"* that|strong=\"H3117\"* sits on|strong=\"H3117\"* eggs|strong=\"H1716\"* which|strong=\"H3117\"* she|strong=\"H3808\"* has|strong=\"H1961\"* not|strong=\"H3808\"* laid|strong=\"H3205\"*," + }, + { + "verseNum": 12, + "text": "A|strong=\"H3068\"* glorious|strong=\"H3519\"* throne|strong=\"H3678\"*, set|strong=\"H7223\"* on|strong=\"H4725\"* high|strong=\"H4791\"* from|strong=\"H4725\"* the|strong=\"H4725\"* beginning|strong=\"H7223\"*," + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* hope|strong=\"H4723\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 14, + "text": "Heal|strong=\"H7495\"* me|strong=\"H3467\"*, O|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* healed|strong=\"H7495\"*." + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H2009\"*, they|strong=\"H1992\"* ask me|strong=\"H4994\"*," + }, + { + "verseNum": 16, + "text": "As|strong=\"H3117\"* for|strong=\"H6440\"* me|strong=\"H6440\"*, I|strong=\"H3117\"* have|strong=\"H1961\"* not|strong=\"H3808\"* hurried from|strong=\"H6440\"* being|strong=\"H1961\"* a|strong=\"H3068\"* shepherd|strong=\"H7462\"* after|strong=\"H1961\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 17, + "text": "Don’t be|strong=\"H1961\"* a|strong=\"H3068\"* terror|strong=\"H4288\"* to|strong=\"H1961\"* me|strong=\"H1961\"*." + }, + { + "verseNum": 18, + "text": "Let them|strong=\"H1992\"* be|strong=\"H3117\"* disappointed who|strong=\"H1992\"* persecute|strong=\"H7291\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H3318\"* this|strong=\"H3541\"* to|strong=\"H1980\"* me|strong=\"H3318\"*: “Go|strong=\"H1980\"* and|strong=\"H1121\"* stand|strong=\"H5975\"* in|strong=\"H1980\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, through|strong=\"H1980\"* which|strong=\"H3068\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* come|strong=\"H1980\"* in|strong=\"H1980\"* and|strong=\"H1121\"* by|strong=\"H3068\"* which|strong=\"H3068\"* they|strong=\"H3068\"* go|strong=\"H1980\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* in|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gates|strong=\"H8179\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 20, + "text": "Tell|strong=\"H8085\"* them|strong=\"H8085\"*, ‘Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, you|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, all|strong=\"H3605\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, that|strong=\"H3605\"* enter in|strong=\"H3427\"* by|strong=\"H3068\"* these|strong=\"H8085\"* gates|strong=\"H8179\"*:" + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Be|strong=\"H3068\"* careful|strong=\"H8104\"*, and|strong=\"H3068\"* bear|strong=\"H5375\"* no|strong=\"H5375\"* burden|strong=\"H4853\"* on|strong=\"H3117\"* the|strong=\"H5375\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*, nor|strong=\"H3117\"* bring|strong=\"H5375\"* it|strong=\"H5375\"* in|strong=\"H3068\"* by|strong=\"H3117\"* the|strong=\"H5375\"* gates|strong=\"H8179\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 22, + "text": "Don’t carry|strong=\"H6213\"* a|strong=\"H3068\"* burden|strong=\"H4853\"* out|strong=\"H3318\"* of|strong=\"H1004\"* your|strong=\"H3605\"* houses|strong=\"H1004\"* on|strong=\"H3117\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*. Don’t do|strong=\"H6213\"* any|strong=\"H3605\"* work|strong=\"H4399\"*, but|strong=\"H3808\"* make|strong=\"H6213\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"* holy|strong=\"H6942\"*, as|strong=\"H3117\"* I|strong=\"H3117\"* commanded|strong=\"H6680\"* your|strong=\"H3605\"* fathers." + }, + { + "verseNum": 23, + "text": "But|strong=\"H3808\"* they|strong=\"H3808\"* didn’t listen|strong=\"H8085\"*. They|strong=\"H3808\"* didn’t turn|strong=\"H5186\"* their|strong=\"H3947\"* ear|strong=\"H8085\"*, but|strong=\"H3808\"* made|strong=\"H7185\"* their|strong=\"H3947\"* neck|strong=\"H6203\"* stiff|strong=\"H7185\"*, that|strong=\"H8085\"* they|strong=\"H3808\"* might not|strong=\"H3808\"* hear|strong=\"H8085\"*, and|strong=\"H8085\"* might not|strong=\"H3808\"* receive|strong=\"H3947\"* instruction|strong=\"H4148\"*." + }, + { + "verseNum": 24, + "text": "It|strong=\"H6213\"* will|strong=\"H3068\"* happen|strong=\"H1961\"*, if|strong=\"H1961\"* you|strong=\"H3605\"* diligently|strong=\"H8085\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* me|strong=\"H6213\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “to|strong=\"H3068\"* bring|strong=\"H6213\"* in|strong=\"H3068\"* no|strong=\"H6213\"* burden|strong=\"H4853\"* through|strong=\"H3605\"* the|strong=\"H3605\"* gates|strong=\"H8179\"* of|strong=\"H3068\"* this|strong=\"H2063\"* city|strong=\"H5892\"* on|strong=\"H3117\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*, but|strong=\"H1961\"* to|strong=\"H3068\"* make|strong=\"H6213\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"* holy|strong=\"H6942\"*, to|strong=\"H3068\"* do|strong=\"H6213\"* no|strong=\"H6213\"* work|strong=\"H4399\"* therein;" + }, + { + "verseNum": 25, + "text": "then|strong=\"H4428\"* there|strong=\"H3427\"* will|strong=\"H4428\"* enter in|strong=\"H3427\"* by|strong=\"H5921\"* the|strong=\"H5921\"* gates|strong=\"H8179\"* of|strong=\"H4428\"* this|strong=\"H2063\"* city|strong=\"H5892\"* kings|strong=\"H4428\"* and|strong=\"H3063\"* princes|strong=\"H8269\"* sitting|strong=\"H3427\"* on|strong=\"H5921\"* David|strong=\"H1732\"*’s throne|strong=\"H3678\"*, riding|strong=\"H7392\"* in|strong=\"H3427\"* chariots|strong=\"H7393\"* and|strong=\"H3063\"* on|strong=\"H5921\"* horses|strong=\"H5483\"*, they|strong=\"H1992\"* and|strong=\"H3063\"* their|strong=\"H1992\"* princes|strong=\"H8269\"*, the|strong=\"H5921\"* men|strong=\"H1992\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H3063\"* this|strong=\"H2063\"* city|strong=\"H5892\"* will|strong=\"H4428\"* remain|strong=\"H3427\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H3068\"* will|strong=\"H3068\"* come|strong=\"H3063\"* from|strong=\"H4480\"* the|strong=\"H3068\"* cities|strong=\"H5892\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* from|strong=\"H4480\"* the|strong=\"H3068\"* places|strong=\"H1004\"* around|strong=\"H5439\"* Jerusalem|strong=\"H3389\"*, from|strong=\"H4480\"* the|strong=\"H3068\"* land of|strong=\"H1004\"* Benjamin|strong=\"H1144\"*, from|strong=\"H4480\"* the|strong=\"H3068\"* lowland|strong=\"H8219\"*, from|strong=\"H4480\"* the|strong=\"H3068\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, and|strong=\"H3063\"* from|strong=\"H4480\"* the|strong=\"H3068\"* South|strong=\"H5045\"*, bringing burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*, sacrifices|strong=\"H2077\"*, meal|strong=\"H4503\"* offerings|strong=\"H5930\"*, and|strong=\"H3063\"* frankincense|strong=\"H3828\"*, and|strong=\"H3063\"* bringing sacrifices|strong=\"H2077\"* of|strong=\"H1004\"* thanksgiving|strong=\"H8426\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"H3808\"* if you|strong=\"H3117\"* will|strong=\"H3389\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3117\"* me|strong=\"H3808\"* to|strong=\"H3117\"* make|strong=\"H8085\"* the|strong=\"H8085\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"* holy|strong=\"H6942\"*, and|strong=\"H3117\"* not|strong=\"H3808\"* to|strong=\"H3117\"* bear|strong=\"H5375\"* a|strong=\"H3068\"* burden|strong=\"H4853\"* and|strong=\"H3117\"* enter in|strong=\"H8085\"* at|strong=\"H3117\"* the|strong=\"H8085\"* gates|strong=\"H8179\"* of|strong=\"H3117\"* Jerusalem|strong=\"H3389\"* on|strong=\"H3117\"* the|strong=\"H8085\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*, then|strong=\"H5375\"* I|strong=\"H3117\"* will|strong=\"H3389\"* kindle|strong=\"H3341\"* a|strong=\"H3068\"* fire|strong=\"H3341\"* in|strong=\"H8085\"* its|strong=\"H5375\"* gates|strong=\"H8179\"*, and|strong=\"H3117\"* it|strong=\"H5375\"* will|strong=\"H3389\"* devour the|strong=\"H8085\"* palaces of|strong=\"H3117\"* Jerusalem|strong=\"H3389\"*. It|strong=\"H5375\"* will|strong=\"H3389\"* not|strong=\"H3808\"* be|strong=\"H3808\"* quenched|strong=\"H3518\"*.”’”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* word|strong=\"H1697\"* which|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Arise|strong=\"H6965\"*, and|strong=\"H6965\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H8085\"* potter|strong=\"H3335\"*’s house|strong=\"H1004\"*, and|strong=\"H6965\"* there|strong=\"H8033\"* I|strong=\"H1697\"* will|strong=\"H1004\"* cause|strong=\"H1697\"* you|strong=\"H3381\"* to|strong=\"H3381\"* hear|strong=\"H8085\"* my|strong=\"H8085\"* words|strong=\"H1697\"*.”" + }, + { + "verseNum": 3, + "text": "Then|strong=\"H2009\"* I|strong=\"H2009\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H5921\"* potter|strong=\"H3335\"*’s house|strong=\"H1004\"*, and|strong=\"H1004\"* behold|strong=\"H2009\"*, he|strong=\"H6213\"* was|strong=\"H1004\"* making|strong=\"H6213\"* something|strong=\"H4399\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wheels." + }, + { + "verseNum": 4, + "text": "When|strong=\"H7725\"* the|strong=\"H6213\"* vessel|strong=\"H3627\"* that|strong=\"H1931\"* he|strong=\"H1931\"* made|strong=\"H6213\"* of|strong=\"H3027\"* the|strong=\"H6213\"* clay|strong=\"H2563\"* was|strong=\"H1931\"* marred|strong=\"H7843\"* in|strong=\"H6213\"* the|strong=\"H6213\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H6213\"* potter|strong=\"H3335\"*, he|strong=\"H1931\"* made|strong=\"H6213\"* it|strong=\"H1931\"* again|strong=\"H7725\"* another|strong=\"H3627\"* vessel|strong=\"H3627\"*, as|strong=\"H6213\"* seemed|strong=\"H5869\"* good|strong=\"H3474\"* to|strong=\"H7725\"* the|strong=\"H6213\"* potter|strong=\"H3335\"* to|strong=\"H7725\"* make|strong=\"H6213\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 6, + "text": "“House|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, can|strong=\"H3201\"*’t I|strong=\"H2009\"* do|strong=\"H6213\"* with|strong=\"H1004\"* you|strong=\"H6213\"* as|strong=\"H6213\"* this|strong=\"H2088\"* potter|strong=\"H3335\"*?” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. “Behold|strong=\"H2009\"*, as|strong=\"H6213\"* the|strong=\"H5002\"* clay|strong=\"H2563\"* in|strong=\"H3478\"* the|strong=\"H5002\"* potter|strong=\"H3335\"*’s hand|strong=\"H3027\"*, so|strong=\"H3651\"* are|strong=\"H3478\"* you|strong=\"H6213\"* in|strong=\"H3478\"* my|strong=\"H3068\"* hand|strong=\"H3027\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "At|strong=\"H5921\"* the|strong=\"H5921\"* instant|strong=\"H7281\"* I|strong=\"H5921\"* speak|strong=\"H1696\"* concerning|strong=\"H5921\"* a|strong=\"H3068\"* nation|strong=\"H1471\"*, and|strong=\"H1471\"* concerning|strong=\"H5921\"* a|strong=\"H3068\"* kingdom|strong=\"H4467\"*, to|strong=\"H1696\"* pluck|strong=\"H5428\"* up|strong=\"H5428\"* and|strong=\"H1471\"* to|strong=\"H1696\"* break|strong=\"H5422\"* down|strong=\"H5422\"* and|strong=\"H1471\"* to|strong=\"H1696\"* destroy|strong=\"H5422\"* it|strong=\"H5921\"*," + }, + { + "verseNum": 8, + "text": "if|strong=\"H1931\"* that|strong=\"H1931\"* nation|strong=\"H1471\"*, concerning|strong=\"H5921\"* which|strong=\"H1931\"* I|strong=\"H5921\"* have|strong=\"H1471\"* spoken|strong=\"H1696\"*, turns|strong=\"H7725\"* from|strong=\"H7725\"* their|strong=\"H7725\"* evil|strong=\"H7451\"*, I|strong=\"H5921\"* will|strong=\"H1471\"* repent|strong=\"H5162\"* of|strong=\"H5921\"* the|strong=\"H5921\"* evil|strong=\"H7451\"* that|strong=\"H1931\"* I|strong=\"H5921\"* thought|strong=\"H2803\"* to|strong=\"H1696\"* do|strong=\"H6213\"* to|strong=\"H1696\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "At|strong=\"H5921\"* the|strong=\"H5921\"* instant|strong=\"H7281\"* I|strong=\"H5921\"* speak|strong=\"H1696\"* concerning|strong=\"H5921\"* a|strong=\"H3068\"* nation|strong=\"H1471\"*, and|strong=\"H1471\"* concerning|strong=\"H5921\"* a|strong=\"H3068\"* kingdom|strong=\"H4467\"*, to|strong=\"H1696\"* build|strong=\"H1129\"* and|strong=\"H1471\"* to|strong=\"H1696\"* plant|strong=\"H5193\"* it|strong=\"H5921\"*," + }, + { + "verseNum": 10, + "text": "if they|strong=\"H5921\"* do|strong=\"H6213\"* that|strong=\"H8085\"* which|strong=\"H5869\"* is|strong=\"H2896\"* evil|strong=\"H7451\"* in|strong=\"H5921\"* my|strong=\"H8085\"* sight|strong=\"H5869\"*, that|strong=\"H8085\"* they|strong=\"H5921\"* not|strong=\"H1115\"* obey|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*, then|strong=\"H6213\"* I|strong=\"H5921\"* will|strong=\"H5869\"* repent|strong=\"H5162\"* of|strong=\"H6963\"* the|strong=\"H5921\"* good|strong=\"H2896\"* with|strong=\"H6213\"* which|strong=\"H5869\"* I|strong=\"H5921\"* said|strong=\"H8085\"* I|strong=\"H5921\"* would|strong=\"H6213\"* benefit|strong=\"H3190\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 11, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, speak to|strong=\"H7725\"* the|strong=\"H5921\"* men|strong=\"H7451\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* to|strong=\"H7725\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, saying, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2009\"*, I|strong=\"H3541\"* frame|strong=\"H3335\"* evil|strong=\"H7451\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H3063\"* devise|strong=\"H2803\"* a|strong=\"H3068\"* plan|strong=\"H2803\"* against|strong=\"H5921\"* you|strong=\"H5921\"*. Everyone return|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H3068\"* evil|strong=\"H7451\"* way|strong=\"H1870\"* now|strong=\"H6258\"*, and|strong=\"H3063\"* amend|strong=\"H3190\"* your|strong=\"H3068\"* ways|strong=\"H1870\"* and|strong=\"H3063\"* your|strong=\"H3068\"* doings|strong=\"H4611\"*.”’" + }, + { + "verseNum": 12, + "text": "But|strong=\"H3588\"* they|strong=\"H3588\"* say, ‘It|strong=\"H3588\"* is|strong=\"H3820\"* in|strong=\"H6213\"* vain; for|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H3820\"* walk|strong=\"H3212\"* after|strong=\"H3588\"* our|strong=\"H3588\"* own plans|strong=\"H4284\"*, and|strong=\"H3212\"* we|strong=\"H3068\"* will|strong=\"H3820\"* each follow|strong=\"H3212\"* the|strong=\"H3588\"* stubbornness|strong=\"H8307\"* of|strong=\"H3820\"* his|strong=\"H6213\"* evil|strong=\"H7451\"* heart|strong=\"H3820\"*.’”" + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 14, + "text": "Will|strong=\"H7704\"* the|strong=\"H5800\"* snow|strong=\"H7950\"* of|strong=\"H4325\"* Lebanon|strong=\"H3844\"* fail from|strong=\"H4325\"* the|strong=\"H5800\"* rock|strong=\"H6697\"* of|strong=\"H4325\"* the|strong=\"H5800\"* field|strong=\"H7704\"*?" + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* my|strong=\"H3588\"* people|strong=\"H5971\"* have|strong=\"H5971\"* forgotten|strong=\"H7911\"* me|strong=\"H7911\"*." + }, + { + "verseNum": 16, + "text": "to|strong=\"H5921\"* make|strong=\"H7760\"* their|strong=\"H3605\"* land an|strong=\"H7760\"* astonishment|strong=\"H8047\"*," + }, + { + "verseNum": 17, + "text": "I|strong=\"H3117\"* will|strong=\"H7307\"* scatter|strong=\"H6327\"* them|strong=\"H6440\"* as|strong=\"H3117\"* with|strong=\"H6440\"* an|strong=\"H7200\"* east|strong=\"H6921\"* wind|strong=\"H7307\"* before|strong=\"H6440\"* the|strong=\"H6440\"* enemy." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H3588\"* they|strong=\"H3588\"* said|strong=\"H1697\"*, “Come|strong=\"H3212\"*! Let|strong=\"H3808\"*’s devise|strong=\"H2803\"* plans|strong=\"H4284\"* against|strong=\"H5921\"* Jeremiah|strong=\"H3414\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* law|strong=\"H8451\"* won’t perish from|strong=\"H5921\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*, nor|strong=\"H3808\"* counsel|strong=\"H6098\"* from|strong=\"H5921\"* the|strong=\"H3605\"* wise|strong=\"H2450\"*, nor|strong=\"H3808\"* the|strong=\"H3605\"* word|strong=\"H1697\"* from|strong=\"H5921\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"*. Come|strong=\"H3212\"*, and|strong=\"H3212\"* let|strong=\"H3808\"*’s strike|strong=\"H5221\"* him|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H3605\"* tongue|strong=\"H3956\"*, and|strong=\"H3212\"* let|strong=\"H3808\"*’s not|strong=\"H3808\"* give|strong=\"H7181\"* heed|strong=\"H7181\"* to|strong=\"H3212\"* any|strong=\"H3605\"* of|strong=\"H1697\"* his|strong=\"H3605\"* words|strong=\"H1697\"*.”" + }, + { + "verseNum": 19, + "text": "Give|strong=\"H7181\"* heed|strong=\"H7181\"* to|strong=\"H3068\"* me|strong=\"H6963\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 20, + "text": "Should|strong=\"H3588\"* evil|strong=\"H7451\"* be|strong=\"H5315\"* recompensed|strong=\"H7725\"* for|strong=\"H3588\"* good|strong=\"H2896\"*?" + }, + { + "verseNum": 21, + "text": "Therefore|strong=\"H3651\"* deliver|strong=\"H5414\"* up|strong=\"H5414\"* their|strong=\"H5414\"* children|strong=\"H1121\"* to|strong=\"H1961\"* the|strong=\"H5921\"* famine|strong=\"H7458\"*," + }, + { + "verseNum": 22, + "text": "Let a|strong=\"H3068\"* cry|strong=\"H2201\"* be|strong=\"H1004\"* heard|strong=\"H8085\"* from|strong=\"H5921\"* their|strong=\"H8085\"* houses|strong=\"H1004\"*" + }, + { + "verseNum": 23, + "text": "Yet|strong=\"H3068\"*, Yahweh|strong=\"H3068\"*, you|strong=\"H6440\"* know|strong=\"H3045\"* all|strong=\"H3605\"* their|strong=\"H3605\"* counsel|strong=\"H6098\"* against|strong=\"H5921\"* me|strong=\"H6440\"* to|strong=\"H3068\"* kill me|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Thus|strong=\"H3541\"* said Yahweh|strong=\"H3068\"*, “Go|strong=\"H1980\"*, and|strong=\"H1980\"* buy|strong=\"H7069\"* a|strong=\"H3068\"* potter|strong=\"H3335\"*’s earthen|strong=\"H2789\"* container, and|strong=\"H1980\"* take|strong=\"H1980\"* some|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H3541\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* the|strong=\"H3541\"* people|strong=\"H5971\"* and|strong=\"H1980\"* of|strong=\"H3068\"* the|strong=\"H3541\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* the|strong=\"H3541\"* priests|strong=\"H3548\"*;" + }, + { + "verseNum": 2, + "text": "and|strong=\"H1121\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H1696\"* the|strong=\"H7121\"* valley|strong=\"H1516\"* of|strong=\"H1121\"* the|strong=\"H7121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"*, which|strong=\"H1697\"* is|strong=\"H1697\"* by|strong=\"H7121\"* the|strong=\"H7121\"* entry|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H7121\"* gate|strong=\"H8179\"* Harsith, and|strong=\"H1121\"* proclaim|strong=\"H7121\"* there|strong=\"H8033\"* the|strong=\"H7121\"* words|strong=\"H1697\"* that|strong=\"H1697\"* I|strong=\"H1697\"* will|strong=\"H1121\"* tell|strong=\"H1696\"* you|strong=\"H1696\"*." + }, + { + "verseNum": 3, + "text": "Say|strong=\"H1697\"*, ‘Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*: Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* bring|strong=\"H7451\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, which|strong=\"H3068\"* whoever|strong=\"H3605\"* hears|strong=\"H8085\"*, his|strong=\"H3605\"* ears will|strong=\"H3068\"* tingle|strong=\"H6750\"*." + }, + { + "verseNum": 4, + "text": "Because|strong=\"H3282\"* they|strong=\"H1992\"* have|strong=\"H3045\"* forsaken|strong=\"H5800\"* me|strong=\"H5800\"*, and|strong=\"H3063\"* have|strong=\"H3045\"* defiled this|strong=\"H2088\"* place|strong=\"H4725\"*, and|strong=\"H3063\"* have|strong=\"H3045\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* in|strong=\"H4428\"* it|strong=\"H3045\"* to|strong=\"H4428\"* other|strong=\"H2088\"* gods that|strong=\"H3045\"* they|strong=\"H1992\"* didn’t know|strong=\"H3045\"*—they|strong=\"H1992\"*, their|strong=\"H1992\"* fathers, and|strong=\"H3063\"* the|strong=\"H3045\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*—and|strong=\"H3063\"* have|strong=\"H3045\"* filled|strong=\"H4390\"* this|strong=\"H2088\"* place|strong=\"H4725\"* with|strong=\"H4390\"* the|strong=\"H3045\"* blood|strong=\"H1818\"* of|strong=\"H4428\"* innocents|strong=\"H5355\"*," + }, + { + "verseNum": 5, + "text": "and|strong=\"H1121\"* have|strong=\"H1121\"* built|strong=\"H1129\"* the|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"* of|strong=\"H1121\"* Baal|strong=\"H1168\"* to|strong=\"H1696\"* burn|strong=\"H8313\"* their|strong=\"H8313\"* children|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H5921\"* fire for|strong=\"H5921\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* to|strong=\"H1696\"* Baal|strong=\"H1168\"*, which|strong=\"H1116\"* I|strong=\"H5921\"* didn’t command|strong=\"H6680\"*, nor|strong=\"H3808\"* speak|strong=\"H1696\"*, which|strong=\"H1116\"* didn’t even|strong=\"H3808\"* enter|strong=\"H5927\"* into|strong=\"H5927\"* my|strong=\"H5921\"* mind|strong=\"H3820\"*." + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3651\"*, behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H5750\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3588\"* this|strong=\"H2088\"* place|strong=\"H4725\"* will|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H5750\"* be|strong=\"H3808\"* called|strong=\"H7121\"* ‘Topheth|strong=\"H8612\"*’, nor|strong=\"H3808\"* ‘The|strong=\"H5002\"* Valley|strong=\"H1516\"* of|strong=\"H1121\"* the|strong=\"H5002\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"*’, but|strong=\"H3588\"* ‘The|strong=\"H5002\"* valley|strong=\"H1516\"* of|strong=\"H1121\"* Slaughter|strong=\"H2028\"*’." + }, + { + "verseNum": 7, + "text": "“‘“I|strong=\"H5414\"* will|strong=\"H2719\"* make|strong=\"H5414\"* the|strong=\"H6440\"* counsel|strong=\"H6098\"* of|strong=\"H3027\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"* void|strong=\"H1238\"* in|strong=\"H5315\"* this|strong=\"H2088\"* place|strong=\"H4725\"*. I|strong=\"H5414\"* will|strong=\"H2719\"* cause|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5414\"* fall|strong=\"H5307\"* by|strong=\"H3027\"* the|strong=\"H6440\"* sword|strong=\"H2719\"* before|strong=\"H6440\"* their|strong=\"H5414\"* enemies|strong=\"H3027\"*, and|strong=\"H3063\"* by|strong=\"H3027\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* those|strong=\"H2088\"* who|strong=\"H5315\"* seek|strong=\"H1245\"* their|strong=\"H5414\"* life|strong=\"H5315\"*. I|strong=\"H5414\"* will|strong=\"H2719\"* give|strong=\"H5414\"* their|strong=\"H5414\"* dead|strong=\"H5315\"* bodies|strong=\"H5038\"* to|strong=\"H5414\"* be|strong=\"H3027\"* food|strong=\"H3978\"* for|strong=\"H6440\"* the|strong=\"H6440\"* birds|strong=\"H5775\"* of|strong=\"H3027\"* the|strong=\"H6440\"* sky|strong=\"H8064\"* and|strong=\"H3063\"* for|strong=\"H6440\"* the|strong=\"H6440\"* animals of|strong=\"H3027\"* the|strong=\"H6440\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5921\"* will|strong=\"H5892\"* make|strong=\"H7760\"* this|strong=\"H2063\"* city|strong=\"H5892\"* an|strong=\"H7760\"* astonishment|strong=\"H8047\"* and|strong=\"H5892\"* a|strong=\"H3068\"* hissing|strong=\"H8322\"*. Everyone|strong=\"H3605\"* who|strong=\"H3605\"* passes|strong=\"H5674\"* by|strong=\"H5921\"* it|strong=\"H7760\"* will|strong=\"H5892\"* be|strong=\"H5892\"* astonished|strong=\"H8074\"* and|strong=\"H5892\"* hiss|strong=\"H8319\"* because|strong=\"H5921\"* of|strong=\"H5892\"* all|strong=\"H3605\"* its|strong=\"H3605\"* plagues|strong=\"H4347\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H5315\"* will|strong=\"H5315\"* cause them|strong=\"H1121\"* to|strong=\"H1121\"* eat the|strong=\"H1245\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* their|strong=\"H1245\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* the|strong=\"H1245\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* their|strong=\"H1245\"* daughters|strong=\"H1323\"*. They|strong=\"H5315\"* will|strong=\"H5315\"* each eat the|strong=\"H1245\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* his|strong=\"H1245\"* friend|strong=\"H7453\"* in|strong=\"H1320\"* the|strong=\"H1245\"* siege|strong=\"H4692\"* and|strong=\"H1121\"* in|strong=\"H1320\"* the|strong=\"H1245\"* distress|strong=\"H6693\"* with|strong=\"H5315\"* which|strong=\"H1323\"* their|strong=\"H1245\"* enemies, and|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* seek|strong=\"H1245\"* their|strong=\"H1245\"* life|strong=\"H5315\"*, will|strong=\"H5315\"* distress|strong=\"H6693\"* them|strong=\"H1121\"*.”’" + }, + { + "verseNum": 10, + "text": "“Then|strong=\"H1980\"* you|strong=\"H5869\"* shall|strong=\"H5869\"* break|strong=\"H7665\"* the|strong=\"H7665\"* container in|strong=\"H1980\"* the|strong=\"H7665\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H7665\"* men|strong=\"H1980\"* who|strong=\"H1980\"* go|strong=\"H1980\"* with|strong=\"H1980\"* you|strong=\"H5869\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H3068\"* shall|strong=\"H3068\"* tell them|strong=\"H7665\"*, ‘Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “Even|strong=\"H5750\"* so|strong=\"H3541\"* I|strong=\"H3541\"* will|strong=\"H3068\"* break|strong=\"H7665\"* this|strong=\"H2088\"* people|strong=\"H5971\"* and|strong=\"H3068\"* this|strong=\"H2088\"* city|strong=\"H5892\"* as|strong=\"H3068\"* one|strong=\"H2088\"* breaks|strong=\"H7665\"* a|strong=\"H3068\"* potter|strong=\"H3335\"*’s vessel|strong=\"H3627\"*, that|strong=\"H5971\"* can|strong=\"H3201\"*’t be|strong=\"H3808\"* made|strong=\"H3335\"* whole|strong=\"H7495\"* again|strong=\"H5750\"*. They|strong=\"H3068\"* will|strong=\"H3068\"* bury|strong=\"H6912\"* in|strong=\"H3068\"* Topheth|strong=\"H8612\"* until|strong=\"H3068\"* there|strong=\"H2088\"* is|strong=\"H3068\"* no|strong=\"H3808\"* place|strong=\"H4725\"* to|strong=\"H3201\"* bury|strong=\"H6912\"*." + }, + { + "verseNum": 12, + "text": "This|strong=\"H2088\"* is|strong=\"H3068\"* what|strong=\"H2088\"* I|strong=\"H5414\"* will|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3068\"* this|strong=\"H2088\"* place|strong=\"H4725\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “and|strong=\"H3068\"* to|strong=\"H3068\"* its|strong=\"H5414\"* inhabitants|strong=\"H3427\"*, even|strong=\"H3651\"* making|strong=\"H6213\"* this|strong=\"H2088\"* city|strong=\"H5892\"* as|strong=\"H6213\"* Topheth|strong=\"H8612\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3605\"* houses|strong=\"H1004\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* the|strong=\"H3605\"* houses|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, which|strong=\"H1004\"* are|strong=\"H8064\"* defiled|strong=\"H2931\"*, will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H3605\"* place|strong=\"H4725\"* of|strong=\"H4428\"* Topheth|strong=\"H8612\"*, even|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* houses|strong=\"H1004\"* on|strong=\"H5921\"* whose|strong=\"H3605\"* roofs|strong=\"H1406\"* they|strong=\"H5921\"* have|strong=\"H1961\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sky|strong=\"H8064\"* and|strong=\"H3063\"* have|strong=\"H1961\"* poured|strong=\"H5258\"* out|strong=\"H5258\"* drink|strong=\"H5262\"* offerings|strong=\"H5262\"* to|strong=\"H1961\"* other|strong=\"H3605\"* gods.”’”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H7971\"* Jeremiah|strong=\"H3414\"* came|strong=\"H3068\"* from|strong=\"H7971\"* Topheth|strong=\"H8612\"*, where|strong=\"H8033\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* sent|strong=\"H7971\"* him|strong=\"H7971\"* to|strong=\"H3068\"* prophesy|strong=\"H5012\"*, and|strong=\"H3068\"* he|strong=\"H8033\"* stood|strong=\"H5975\"* in|strong=\"H3068\"* the|strong=\"H3605\"* court|strong=\"H2691\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* said to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*:" + }, + { + "verseNum": 15, + "text": "“Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H7451\"* on|strong=\"H5921\"* this|strong=\"H2063\"* city|strong=\"H5892\"* and|strong=\"H3478\"* on|strong=\"H5921\"* all|strong=\"H3605\"* its|strong=\"H3605\"* towns|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* pronounced|strong=\"H1696\"* against|strong=\"H5921\"* it|strong=\"H5921\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3068\"* made|strong=\"H7185\"* their|strong=\"H3605\"* neck|strong=\"H6203\"* stiff|strong=\"H7185\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H3068\"* not|strong=\"H1115\"* hear|strong=\"H8085\"* my|strong=\"H8085\"* words|strong=\"H1697\"*.’”" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H8085\"* Pashhur|strong=\"H6583\"*, the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Immer the|strong=\"H8085\"* priest|strong=\"H3548\"*, who|strong=\"H1931\"* was|strong=\"H3068\"* chief|strong=\"H5057\"* officer|strong=\"H5057\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, heard|strong=\"H8085\"* Jeremiah|strong=\"H3414\"* prophesying|strong=\"H5012\"* these|strong=\"H8085\"* things|strong=\"H1697\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H5414\"* Pashhur|strong=\"H6583\"* struck|strong=\"H5221\"* Jeremiah|strong=\"H3414\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* and|strong=\"H3068\"* put|strong=\"H5414\"* him|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H5921\"* stocks|strong=\"H4115\"* that|strong=\"H3068\"* were|strong=\"H1144\"* in|strong=\"H5921\"* the|strong=\"H5921\"* upper|strong=\"H5945\"* gate|strong=\"H8179\"* of|strong=\"H1004\"* Benjamin|strong=\"H1144\"*, which|strong=\"H3068\"* was|strong=\"H3068\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 3, + "text": "On|strong=\"H3068\"* the|strong=\"H3588\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, Pashhur|strong=\"H6583\"* released|strong=\"H3318\"* Jeremiah|strong=\"H3414\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3588\"* stocks|strong=\"H4115\"*. Then|strong=\"H1961\"* Jeremiah|strong=\"H3414\"* said|strong=\"H7121\"* to|strong=\"H3318\"* him|strong=\"H7121\"*, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* called|strong=\"H7121\"* your|strong=\"H3068\"* name|strong=\"H8034\"* Pashhur|strong=\"H6583\"*, but|strong=\"H3588\"* Magormissabib.+ 20:3 “Magormissabib” means “surrounded by terror”*" + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H5414\"* you|strong=\"H3588\"* a|strong=\"H3068\"* terror|strong=\"H4032\"* to|strong=\"H3068\"* yourself|strong=\"H5307\"* and|strong=\"H3063\"* to|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* friends. They|strong=\"H3588\"* will|strong=\"H3068\"* fall|strong=\"H5307\"* by|strong=\"H3027\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* of|strong=\"H4428\"* their|strong=\"H3605\"* enemies|strong=\"H3027\"*, and|strong=\"H3063\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"* will|strong=\"H3068\"* see|strong=\"H7200\"* it|strong=\"H5414\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* give|strong=\"H5414\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* into|strong=\"H1540\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3063\"* he|strong=\"H3588\"* will|strong=\"H3068\"* carry|strong=\"H1540\"* them|strong=\"H5414\"* captive|strong=\"H1540\"* to|strong=\"H3068\"* Babylon, and|strong=\"H3063\"* will|strong=\"H3068\"* kill|strong=\"H5221\"* them|strong=\"H5414\"* with|strong=\"H3068\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 5, + "text": "Moreover I|strong=\"H5414\"* will|strong=\"H4428\"* give|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* riches|strong=\"H2633\"* of|strong=\"H4428\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* its|strong=\"H3605\"* gains, and|strong=\"H3063\"* all|strong=\"H3605\"* its|strong=\"H3605\"* precious|strong=\"H3366\"* things|strong=\"H3605\"*, yes, I|strong=\"H5414\"* will|strong=\"H4428\"* give|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* treasures of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* into|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* their|strong=\"H3605\"* enemies|strong=\"H3027\"*. They|strong=\"H3605\"* will|strong=\"H4428\"* make|strong=\"H5414\"* them|strong=\"H5414\"* captives, take|strong=\"H3947\"* them|strong=\"H5414\"*, and|strong=\"H3063\"* carry|strong=\"H3947\"* them|strong=\"H5414\"* to|strong=\"H5414\"* Babylon." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3605\"*, Pashhur|strong=\"H6583\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* who|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* your|strong=\"H3605\"* house|strong=\"H1004\"* will|strong=\"H1004\"* go|strong=\"H3212\"* into|strong=\"H3212\"* captivity|strong=\"H7628\"*. You|strong=\"H3605\"* will|strong=\"H1004\"* come|strong=\"H3212\"* to|strong=\"H4191\"* Babylon, and|strong=\"H1004\"* there|strong=\"H8033\"* you|strong=\"H3605\"* will|strong=\"H1004\"* die|strong=\"H4191\"*, and|strong=\"H1004\"* there|strong=\"H8033\"* you|strong=\"H3605\"* will|strong=\"H1004\"* be|strong=\"H4191\"* buried|strong=\"H6912\"*, you|strong=\"H3605\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* your|strong=\"H3605\"* friends, to|strong=\"H4191\"* whom|strong=\"H1992\"* you|strong=\"H3605\"* have|strong=\"H3605\"* prophesied|strong=\"H5012\"* falsely|strong=\"H8267\"*.’”" + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*, you|strong=\"H3605\"* have|strong=\"H1961\"* persuaded|strong=\"H2388\"* me|strong=\"H2388\"*, and|strong=\"H3068\"* I|strong=\"H3117\"* was|strong=\"H3068\"* persuaded|strong=\"H2388\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* as|strong=\"H1697\"* often|strong=\"H1767\"* as|strong=\"H1697\"* I|strong=\"H3588\"* speak|strong=\"H1696\"*, I|strong=\"H3588\"* cry|strong=\"H7121\"* out|strong=\"H2199\"*;" + }, + { + "verseNum": 9, + "text": "If|strong=\"H1961\"* I|strong=\"H3201\"* say|strong=\"H1696\"* that|strong=\"H3808\"* I|strong=\"H3201\"* will|strong=\"H1961\"* not|strong=\"H3808\"* make|strong=\"H1197\"* mention|strong=\"H2142\"* of|strong=\"H8034\"* him|strong=\"H2142\"*," + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H7965\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* defaming|strong=\"H1681\"* of|strong=\"H4480\"* many|strong=\"H7227\"*:" + }, + { + "verseNum": 11, + "text": "But|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H3068\"* me|strong=\"H5921\"* as|strong=\"H3651\"* an|strong=\"H3588\"* awesome mighty|strong=\"H1368\"* one|strong=\"H3808\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, who|strong=\"H3068\"* tests the|strong=\"H7200\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 13, + "text": "Sing|strong=\"H7891\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 14, + "text": "Cursed|strong=\"H1288\"* is|strong=\"H3117\"* the|strong=\"H3205\"* day|strong=\"H3117\"* in|strong=\"H3117\"* which|strong=\"H3117\"* I|strong=\"H3117\"* was|strong=\"H1961\"* born|strong=\"H3205\"*." + }, + { + "verseNum": 15, + "text": "Cursed is|strong=\"H1121\"* the|strong=\"H3205\"* man|strong=\"H1121\"* who|strong=\"H1121\"* brought|strong=\"H3205\"* news|strong=\"H1319\"* to|strong=\"H3205\"* my|strong=\"H8055\"* father|strong=\"H3205\"*, saying," + }, + { + "verseNum": 16, + "text": "Let|strong=\"H3808\"* that|strong=\"H8085\"* man be|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H8085\"* cities|strong=\"H5892\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* overthrew|strong=\"H2015\"*," + }, + { + "verseNum": 17, + "text": "because he|strong=\"H3808\"* didn’t kill|strong=\"H4191\"* me|strong=\"H4191\"* from|strong=\"H1961\"* the|strong=\"H1961\"* womb|strong=\"H7358\"*." + }, + { + "verseNum": 18, + "text": "Why|strong=\"H4100\"* did|strong=\"H4100\"* I|strong=\"H3117\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H7200\"* womb|strong=\"H7358\"* to|strong=\"H3318\"* see|strong=\"H7200\"* labor|strong=\"H5999\"* and|strong=\"H3117\"* sorrow|strong=\"H3015\"*," + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* word|strong=\"H1697\"* which|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, when|strong=\"H1961\"* King|strong=\"H4428\"* Zedekiah|strong=\"H6667\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* him|strong=\"H7971\"* Pashhur|strong=\"H6583\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Malchijah|strong=\"H4441\"*, and|strong=\"H1121\"* Zephaniah|strong=\"H6846\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maaseiah|strong=\"H4641\"*, the|strong=\"H3068\"* priest|strong=\"H3548\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Please|strong=\"H4994\"* inquire|strong=\"H1875\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"* for|strong=\"H3588\"* us|strong=\"H4994\"*; for|strong=\"H3588\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon makes|strong=\"H6213\"* war|strong=\"H3898\"* against|strong=\"H5921\"* us|strong=\"H4994\"*. Perhaps|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* deal|strong=\"H6213\"* with|strong=\"H3068\"* us|strong=\"H4994\"* according|strong=\"H5921\"* to|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* wondrous|strong=\"H6381\"* works|strong=\"H6381\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H4994\"* withdraw|strong=\"H5927\"* from|strong=\"H5921\"* us|strong=\"H4994\"*.”" + }, + { + "verseNum": 3, + "text": "Then|strong=\"H3541\"* Jeremiah|strong=\"H3414\"* said to|strong=\"H6667\"* them, “Tell Zedekiah|strong=\"H6667\"*:" + }, + { + "verseNum": 4, + "text": "‘Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* turn|strong=\"H5437\"* back|strong=\"H5437\"* the|strong=\"H5921\"* weapons|strong=\"H3627\"* of|strong=\"H4428\"* war|strong=\"H4421\"* that|strong=\"H3068\"* are|strong=\"H3478\"* in|strong=\"H5921\"* your|strong=\"H3068\"* hands|strong=\"H3027\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H5921\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3478\"* against|strong=\"H5921\"* the|strong=\"H5921\"* Chaldeans|strong=\"H3778\"* who|strong=\"H3068\"* besiege|strong=\"H6696\"* you|strong=\"H5921\"* outside|strong=\"H2351\"* the|strong=\"H5921\"* walls|strong=\"H2346\"*; and|strong=\"H3478\"* I|strong=\"H2005\"* will|strong=\"H3068\"* gather them|strong=\"H5921\"* into|strong=\"H8432\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H4428\"* this|strong=\"H2063\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H7110\"* myself will|strong=\"H3027\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* you|strong=\"H3027\"* with|strong=\"H3898\"* an outstretched|strong=\"H5186\"* hand|strong=\"H3027\"* and|strong=\"H1419\"* with|strong=\"H3898\"* a|strong=\"H3068\"* strong|strong=\"H2389\"* arm|strong=\"H2220\"*, even in|strong=\"H1419\"* anger|strong=\"H2534\"*, in|strong=\"H1419\"* wrath|strong=\"H2534\"*, and|strong=\"H1419\"* in|strong=\"H1419\"* great|strong=\"H1419\"* indignation|strong=\"H7110\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H5892\"* will|strong=\"H5892\"* strike|strong=\"H5221\"* the|strong=\"H5221\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, both|strong=\"H4191\"* man|strong=\"H4191\"* and|strong=\"H1419\"* animal. They|strong=\"H5221\"* will|strong=\"H5892\"* die|strong=\"H4191\"* of|strong=\"H3427\"* a|strong=\"H3068\"* great|strong=\"H1419\"* pestilence|strong=\"H1698\"*." + }, + { + "verseNum": 7, + "text": "Afterward,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “I|strong=\"H5414\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, his|strong=\"H5414\"* servants|strong=\"H5650\"*, and|strong=\"H3063\"* the|strong=\"H5002\"* people|strong=\"H5971\"*, even|strong=\"H3651\"* those|strong=\"H4480\"* who|strong=\"H5971\"* are|strong=\"H5971\"* left|strong=\"H7604\"* in|strong=\"H5921\"* this|strong=\"H2063\"* city|strong=\"H5892\"* from|strong=\"H4480\"* the|strong=\"H5002\"* pestilence|strong=\"H1698\"*, from|strong=\"H4480\"* the|strong=\"H5002\"* sword|strong=\"H2719\"*, and|strong=\"H3063\"* from|strong=\"H4480\"* the|strong=\"H5002\"* famine|strong=\"H7458\"*, into|strong=\"H5921\"* the|strong=\"H5002\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3063\"* into|strong=\"H5921\"* the|strong=\"H5002\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* their|strong=\"H3068\"* enemies|strong=\"H3027\"*, and|strong=\"H3063\"* into|strong=\"H5921\"* the|strong=\"H5002\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* those|strong=\"H4480\"* who|strong=\"H5971\"* seek|strong=\"H1245\"* their|strong=\"H3068\"* life|strong=\"H5315\"*. He|strong=\"H3651\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* them|strong=\"H5414\"* with|strong=\"H3068\"* the|strong=\"H5002\"* edge|strong=\"H6310\"* of|strong=\"H4428\"* the|strong=\"H5002\"* sword|strong=\"H2719\"*. He|strong=\"H3651\"* will|strong=\"H3068\"* not|strong=\"H3808\"* spare|strong=\"H2550\"* them|strong=\"H5414\"*, have|strong=\"H7355\"* pity|strong=\"H2347\"*, or|strong=\"H3808\"* have|strong=\"H7355\"* mercy|strong=\"H7355\"*.”’" + }, + { + "verseNum": 8, + "text": "“You|strong=\"H5414\"* shall|strong=\"H3068\"* say to|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H3068\"* life|strong=\"H2416\"* and|strong=\"H3068\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H3068\"* death|strong=\"H4194\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H5921\"* who|strong=\"H5315\"* remains|strong=\"H1961\"* in|strong=\"H3427\"* this|strong=\"H2063\"* city|strong=\"H5892\"* will|strong=\"H1961\"* die|strong=\"H4191\"* by|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*, by|strong=\"H5921\"* the|strong=\"H5921\"* famine|strong=\"H7458\"*, and|strong=\"H5892\"* by|strong=\"H5921\"* the|strong=\"H5921\"* pestilence|strong=\"H1698\"*, but|strong=\"H1961\"* he|strong=\"H5921\"* who|strong=\"H5315\"* goes|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H5892\"* passes over|strong=\"H5921\"* to|strong=\"H3318\"* the|strong=\"H5921\"* Chaldeans|strong=\"H3778\"* who|strong=\"H5315\"* besiege|strong=\"H6696\"* you|strong=\"H5921\"*, he|strong=\"H5921\"* will|strong=\"H1961\"* live|strong=\"H3427\"*, and|strong=\"H5892\"* he|strong=\"H5921\"* will|strong=\"H1961\"* escape|strong=\"H3318\"* with|strong=\"H5921\"* his|strong=\"H5921\"* life|strong=\"H5315\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* set|strong=\"H7760\"* my|strong=\"H5414\"* face|strong=\"H6440\"* on|strong=\"H7760\"* this|strong=\"H2063\"* city|strong=\"H5892\"* for|strong=\"H3588\"* evil|strong=\"H7451\"*, and|strong=\"H3068\"* not|strong=\"H3808\"* for|strong=\"H3588\"* good|strong=\"H2896\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. “It|strong=\"H5414\"* will|strong=\"H3068\"* be|strong=\"H3808\"* given|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3068\"* he|strong=\"H3588\"* will|strong=\"H3068\"* burn|strong=\"H8313\"* it|strong=\"H5414\"* with|strong=\"H8313\"* fire.”’" + }, + { + "verseNum": 11, + "text": "“Concerning|strong=\"H1697\"* the|strong=\"H8085\"* house|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*:" + }, + { + "verseNum": 12, + "text": "House|strong=\"H1004\"* of|strong=\"H1004\"* David|strong=\"H1732\"*, Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 13, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H3068\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, O|strong=\"H3068\"* inhabitant|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H5002\"* valley|strong=\"H6010\"*," + }, + { + "verseNum": 14, + "text": "I|strong=\"H5921\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* you|strong=\"H3605\"* according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* your|strong=\"H3068\"* doings|strong=\"H4611\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*;" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"*, “Go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H1696\"* the|strong=\"H3541\"* house|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H3541\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* speak|strong=\"H1696\"* this|strong=\"H2088\"* word|strong=\"H1697\"* there|strong=\"H8033\"*:" + }, + { + "verseNum": 2, + "text": "‘Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, who|strong=\"H5971\"* sits|strong=\"H3427\"* on|strong=\"H5921\"* David|strong=\"H1732\"*’s throne|strong=\"H3678\"*—you|strong=\"H5921\"*, your|strong=\"H3068\"* servants|strong=\"H5650\"*, and|strong=\"H3063\"* your|strong=\"H3068\"* people|strong=\"H5971\"* who|strong=\"H5971\"* enter in|strong=\"H3427\"* by|strong=\"H5921\"* these|strong=\"H8085\"* gates|strong=\"H8179\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Execute|strong=\"H6213\"* justice|strong=\"H4941\"* and|strong=\"H3068\"* righteousness|strong=\"H6666\"*, and|strong=\"H3068\"* deliver|strong=\"H5337\"* him|strong=\"H3027\"* who|strong=\"H3068\"* is|strong=\"H3068\"* robbed|strong=\"H1497\"* out|strong=\"H8210\"* of|strong=\"H3068\"* the|strong=\"H3541\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H3541\"* oppressor|strong=\"H3238\"*. Do|strong=\"H6213\"* no|strong=\"H6213\"* wrong|strong=\"H3238\"*. Do|strong=\"H6213\"* no|strong=\"H6213\"* violence|strong=\"H2554\"* to|strong=\"H3068\"* the|strong=\"H3541\"* foreigner|strong=\"H1616\"*, the|strong=\"H3541\"* fatherless|strong=\"H3490\"*, or|strong=\"H3068\"* the|strong=\"H3541\"* widow. Don’t shed|strong=\"H8210\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"* in|strong=\"H3068\"* this|strong=\"H2088\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* indeed|strong=\"H3588\"*, then|strong=\"H2088\"* kings|strong=\"H4428\"* sitting|strong=\"H3427\"* on|strong=\"H5921\"* David|strong=\"H1732\"*’s throne|strong=\"H3678\"* will|strong=\"H4428\"* enter in|strong=\"H3427\"* by|strong=\"H5921\"* the|strong=\"H5921\"* gates|strong=\"H8179\"* of|strong=\"H4428\"* this|strong=\"H2088\"* house|strong=\"H1004\"*, riding|strong=\"H7392\"* in|strong=\"H3427\"* chariots|strong=\"H7393\"* and|strong=\"H4428\"* on|strong=\"H5921\"* horses|strong=\"H5483\"*—they|strong=\"H3588\"*, their|strong=\"H5921\"* servants|strong=\"H5650\"*, and|strong=\"H4428\"* their|strong=\"H5921\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* hear|strong=\"H8085\"* these|strong=\"H2088\"* words|strong=\"H1697\"*, I|strong=\"H3588\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* myself,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3588\"* this|strong=\"H2088\"* house|strong=\"H1004\"* will|strong=\"H3068\"* become|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H2723\"*.”’”" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*:" + }, + { + "verseNum": 7, + "text": "I|strong=\"H5921\"* will|strong=\"H5307\"* prepare|strong=\"H6942\"* destroyers|strong=\"H7843\"* against|strong=\"H5921\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 8, + "text": "“Many|strong=\"H7227\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* pass|strong=\"H5674\"* by|strong=\"H5921\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* will|strong=\"H3068\"* each|strong=\"H5892\"* ask his|strong=\"H3068\"* neighbor|strong=\"H7453\"*, ‘Why|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* done|strong=\"H6213\"* this|strong=\"H2063\"* to|strong=\"H3068\"* this|strong=\"H2063\"* great|strong=\"H1419\"* city|strong=\"H5892\"*?’" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H3068\"* they|strong=\"H3068\"* will|strong=\"H3068\"* answer, ‘Because|strong=\"H5921\"* they|strong=\"H3068\"* abandoned|strong=\"H5800\"* the|strong=\"H5921\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, worshiped|strong=\"H7812\"* other gods, and|strong=\"H3068\"* served|strong=\"H5647\"* them|strong=\"H5921\"*.’”" + }, + { + "verseNum": 10, + "text": "Don’t weep|strong=\"H1058\"* for|strong=\"H3588\"* the|strong=\"H7200\"* dead|strong=\"H4191\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* touching Shallum|strong=\"H7967\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, who|strong=\"H3068\"* reigned|strong=\"H4427\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"* his|strong=\"H3068\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* who|strong=\"H3068\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* this|strong=\"H2088\"* place|strong=\"H4725\"*: “He|strong=\"H3588\"* won’t return|strong=\"H7725\"* there|strong=\"H8033\"* any|strong=\"H4480\"* more|strong=\"H4480\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H3808\"* die|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H7200\"* place|strong=\"H4725\"* where|strong=\"H8033\"* they|strong=\"H3588\"* have|strong=\"H7200\"* led|strong=\"H1540\"* him|strong=\"H7200\"* captive|strong=\"H1540\"*. He|strong=\"H3588\"* will|strong=\"H3808\"* see|strong=\"H7200\"* this|strong=\"H2063\"* land|strong=\"H4725\"* no|strong=\"H3808\"* more|strong=\"H5750\"*.”" + }, + { + "verseNum": 13, + "text": "“Woe|strong=\"H1945\"* to|strong=\"H5414\"* him|strong=\"H5414\"* who|strong=\"H3808\"* builds|strong=\"H1129\"* his|strong=\"H5414\"* house|strong=\"H1004\"* by|strong=\"H5414\"* unrighteousness|strong=\"H6664\"*," + }, + { + "verseNum": 14, + "text": "who|strong=\"H1129\"* says, ‘I|strong=\"H1004\"* will|strong=\"H1004\"* build|strong=\"H1129\"* myself a|strong=\"H3068\"* wide|strong=\"H4060\"* house|strong=\"H1004\"* and|strong=\"H1004\"* spacious|strong=\"H7304\"* rooms|strong=\"H5944\"*,’" + }, + { + "verseNum": 15, + "text": "“Should|strong=\"H3588\"* you|strong=\"H3588\"* reign|strong=\"H4427\"* because|strong=\"H3588\"* you|strong=\"H3588\"* strive|strong=\"H4941\"* to|strong=\"H6213\"* excel in|strong=\"H6213\"* cedar?" + }, + { + "verseNum": 16, + "text": "He|strong=\"H1931\"* judged|strong=\"H1777\"* the|strong=\"H5002\"* cause|strong=\"H1779\"* of|strong=\"H3068\"* the|strong=\"H5002\"* poor|strong=\"H6041\"* and|strong=\"H3068\"* needy|strong=\"H6041\"*;" + }, + { + "verseNum": 17, + "text": "But|strong=\"H3588\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"* and|strong=\"H5869\"* your|strong=\"H5921\"* heart|strong=\"H3820\"* are|strong=\"H5869\"* only|strong=\"H3588\"* for|strong=\"H3588\"* your|strong=\"H5921\"* covetousness|strong=\"H1215\"*," + }, + { + "verseNum": 18, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H3068\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H3541\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*:" + }, + { + "verseNum": 19, + "text": "He|strong=\"H3389\"* will|strong=\"H3389\"* be|strong=\"H3389\"* buried|strong=\"H6912\"* with|strong=\"H3389\"* the|strong=\"H7993\"* burial|strong=\"H6900\"* of|strong=\"H8179\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"*," + }, + { + "verseNum": 20, + "text": "“Go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Lebanon|strong=\"H3844\"*, and|strong=\"H6963\"* cry|strong=\"H6817\"* out|strong=\"H5414\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"H3588\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"* in|strong=\"H8085\"* your|strong=\"H8085\"* prosperity|strong=\"H7962\"*," + }, + { + "verseNum": 22, + "text": "The|strong=\"H3605\"* wind|strong=\"H7307\"* will|strong=\"H7307\"* feed|strong=\"H7462\"* all|strong=\"H3605\"* your|strong=\"H3605\"* shepherds|strong=\"H7462\"*," + }, + { + "verseNum": 23, + "text": "Inhabitant|strong=\"H3427\"* of|strong=\"H3427\"* Lebanon|strong=\"H3844\"*," + }, + { + "verseNum": 24, + "text": "“As|strong=\"H1961\"* I|strong=\"H3588\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “though|strong=\"H3588\"* Coniah|strong=\"H3659\"* the|strong=\"H5002\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* were|strong=\"H1961\"* the|strong=\"H5002\"* signet|strong=\"H2368\"* on|strong=\"H5921\"* my|strong=\"H3068\"* right|strong=\"H3225\"* hand|strong=\"H3027\"*, I|strong=\"H3588\"* would|strong=\"H3068\"* still|strong=\"H3588\"* pluck|strong=\"H5423\"* you|strong=\"H3588\"* from|strong=\"H5921\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 25, + "text": "I|strong=\"H5414\"* would|strong=\"H5315\"* give|strong=\"H5414\"* you|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* those|strong=\"H5315\"* who|strong=\"H5315\"* seek|strong=\"H1245\"* your|strong=\"H5414\"* life|strong=\"H5315\"*, and|strong=\"H4428\"* into|strong=\"H3027\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* them|strong=\"H5414\"* of|strong=\"H4428\"* whom|strong=\"H6440\"* you|strong=\"H5414\"* are|strong=\"H3027\"* afraid|strong=\"H3016\"*, even into|strong=\"H3027\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H4428\"* into|strong=\"H3027\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H6440\"* Chaldeans|strong=\"H3778\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H5921\"* will|strong=\"H3808\"* cast|strong=\"H2904\"* you|strong=\"H5921\"* out|strong=\"H5921\"* with|strong=\"H5921\"* your|strong=\"H5921\"* mother who|strong=\"H3205\"* bore|strong=\"H3205\"* you|strong=\"H5921\"* into|strong=\"H5921\"* another|strong=\"H3808\"* country, where|strong=\"H8033\"* you|strong=\"H5921\"* were|strong=\"H3205\"* not|strong=\"H3808\"* born|strong=\"H3205\"*; and|strong=\"H8033\"* there|strong=\"H8033\"* you|strong=\"H5921\"* will|strong=\"H3808\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"H3808\"* to|strong=\"H7725\"* the|strong=\"H5921\"* land to|strong=\"H7725\"* which|strong=\"H1992\"* their|strong=\"H5375\"* soul|strong=\"H5315\"* longs to|strong=\"H7725\"* return|strong=\"H7725\"*, there|strong=\"H8033\"* they|strong=\"H1992\"* will|strong=\"H5315\"* not|strong=\"H3808\"* return|strong=\"H7725\"*.”" + }, + { + "verseNum": 28, + "text": "Is|strong=\"H2088\"* this|strong=\"H2088\"* man|strong=\"H2088\"* Coniah|strong=\"H3659\"* a|strong=\"H3068\"* despised broken|strong=\"H5310\"* vessel|strong=\"H3627\"*?" + }, + { + "verseNum": 29, + "text": "O|strong=\"H3068\"* earth, earth, earth," + }, + { + "verseNum": 30, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "“Woe|strong=\"H1945\"* to|strong=\"H3068\"* the|strong=\"H5002\"* shepherds|strong=\"H7462\"* who|strong=\"H3068\"* destroy and|strong=\"H3068\"* scatter|strong=\"H6327\"* the|strong=\"H5002\"* sheep|strong=\"H6629\"* of|strong=\"H3068\"* my|strong=\"H3068\"* pasture|strong=\"H4830\"*!” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5002\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H5002\"* against|strong=\"H5921\"* the|strong=\"H5002\"* shepherds|strong=\"H7462\"* who|strong=\"H5971\"* feed|strong=\"H7462\"* my|strong=\"H3068\"* people|strong=\"H5971\"*: “You|strong=\"H5921\"* have|strong=\"H3068\"* scattered|strong=\"H6327\"* my|strong=\"H3068\"* flock|strong=\"H6629\"*, driven|strong=\"H5080\"* them|strong=\"H5921\"* away|strong=\"H5080\"*, and|strong=\"H3478\"* have|strong=\"H3068\"* not|strong=\"H3808\"* visited|strong=\"H6485\"* them|strong=\"H5921\"*. Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* visit|strong=\"H6485\"* on|strong=\"H5921\"* you|strong=\"H5921\"* the|strong=\"H5002\"* evil|strong=\"H7455\"* of|strong=\"H3068\"* your|strong=\"H3068\"* doings|strong=\"H4611\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "“I|strong=\"H5921\"* will|strong=\"H6629\"* gather|strong=\"H6908\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H7611\"* my|strong=\"H3605\"* flock|strong=\"H6629\"* out|strong=\"H5080\"* of|strong=\"H7611\"* all|strong=\"H3605\"* the|strong=\"H3605\"* countries where|strong=\"H8033\"* I|strong=\"H5921\"* have|strong=\"H3605\"* driven|strong=\"H5080\"* them|strong=\"H5921\"*, and|strong=\"H7725\"* will|strong=\"H6629\"* bring|strong=\"H7725\"* them|strong=\"H5921\"* again|strong=\"H7725\"* to|strong=\"H7725\"* their|strong=\"H3605\"* folds|strong=\"H5116\"*; and|strong=\"H7725\"* they|strong=\"H8033\"* will|strong=\"H6629\"* be|strong=\"H7725\"* fruitful|strong=\"H6509\"* and|strong=\"H7725\"* multiply|strong=\"H7235\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H5921\"* will|strong=\"H3068\"* set|strong=\"H6965\"* up|strong=\"H6965\"* shepherds|strong=\"H7462\"* over|strong=\"H5921\"* them|strong=\"H5921\"* who|strong=\"H3068\"* will|strong=\"H3068\"* feed|strong=\"H7462\"* them|strong=\"H5921\"*. They|strong=\"H3068\"* will|strong=\"H3068\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* be|strong=\"H3808\"* afraid|strong=\"H3372\"* or|strong=\"H3808\"* dismayed|strong=\"H2865\"*, neither|strong=\"H3808\"* will|strong=\"H3068\"* any|strong=\"H5750\"* be|strong=\"H3808\"* lacking|strong=\"H6485\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "“Behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H6965\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "In|strong=\"H3478\"* his|strong=\"H3068\"* days|strong=\"H3117\"* Judah|strong=\"H3063\"* will|strong=\"H3068\"* be|strong=\"H3068\"* saved|strong=\"H3467\"*," + }, + { + "verseNum": 7, + "text": "“Therefore|strong=\"H3651\"*, behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H5927\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3117\"* they|strong=\"H3117\"* will|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H5750\"* say|strong=\"H3478\"*, ‘As|strong=\"H3117\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, who|strong=\"H3068\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* the|strong=\"H5002\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* out|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H5002\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*;’" + }, + { + "verseNum": 8, + "text": "but|strong=\"H3588\"*, ‘As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, who|strong=\"H3605\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H3478\"* who|strong=\"H3605\"* led|strong=\"H3068\"* the|strong=\"H3605\"* offspring|strong=\"H2233\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* out|strong=\"H5080\"* of|strong=\"H1004\"* the|strong=\"H3605\"* north|strong=\"H6828\"* country, and|strong=\"H3478\"* from|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* countries where|strong=\"H8033\"* I|strong=\"H3588\"* had|strong=\"H3068\"* driven|strong=\"H5080\"* them|strong=\"H5921\"*.’ Then|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3605\"* own land.”" + }, + { + "verseNum": 9, + "text": "Concerning|strong=\"H1697\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*:" + }, + { + "verseNum": 10, + "text": "“For|strong=\"H3588\"* the|strong=\"H6440\"* land|strong=\"H6440\"* is|strong=\"H3651\"* full|strong=\"H4390\"* of|strong=\"H6440\"* adulterers|strong=\"H5003\"*;" + }, + { + "verseNum": 11, + "text": "for|strong=\"H3588\"* both|strong=\"H1571\"* prophet|strong=\"H5030\"* and|strong=\"H3068\"* priest|strong=\"H3548\"* are|strong=\"H3068\"* profane|strong=\"H2610\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H3651\"* their|strong=\"H3068\"* way|strong=\"H1870\"* will|strong=\"H3068\"* be|strong=\"H1961\"* to|strong=\"H3068\"* them|strong=\"H1992\"* as|strong=\"H1961\"* slippery|strong=\"H2519\"* places|strong=\"H1992\"* in|strong=\"H8141\"* the|strong=\"H5002\"* darkness." + }, + { + "verseNum": 13, + "text": "“I|strong=\"H7200\"* have|strong=\"H5971\"* seen|strong=\"H7200\"* folly|strong=\"H8604\"* in|strong=\"H3478\"* the|strong=\"H7200\"* prophets|strong=\"H5030\"* of|strong=\"H5971\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 14, + "text": "In|strong=\"H3427\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* of|strong=\"H3027\"* Jerusalem|strong=\"H3389\"* I|strong=\"H7200\"* have|strong=\"H1961\"* also|strong=\"H3027\"* seen|strong=\"H7200\"* a|strong=\"H3068\"* horrible|strong=\"H8186\"* thing|strong=\"H8186\"*:" + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*:" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 17, + "text": "They|strong=\"H3068\"* say|strong=\"H1696\"* continually|strong=\"H3605\"* to|strong=\"H1696\"* those|strong=\"H3605\"* who|strong=\"H3605\"* despise|strong=\"H5006\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* who|strong=\"H4310\"* has|strong=\"H3068\"* stood|strong=\"H5975\"* in|strong=\"H3068\"* the|strong=\"H8085\"* council|strong=\"H5475\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 19, + "text": "Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s storm|strong=\"H5591\"*, his|strong=\"H3068\"* wrath|strong=\"H2534\"*, has|strong=\"H3068\"* gone|strong=\"H3318\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"*’s anger will|strong=\"H3068\"* not|strong=\"H3808\"* return|strong=\"H7725\"* until|strong=\"H5704\"* he|strong=\"H3117\"* has|strong=\"H3068\"* executed|strong=\"H6213\"*" + }, + { + "verseNum": 21, + "text": "I|strong=\"H3808\"* didn’t send|strong=\"H7971\"* these|strong=\"H1992\"* prophets|strong=\"H5030\"*, yet|strong=\"H3808\"* they|strong=\"H1992\"* ran|strong=\"H7323\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H8085\"* if they|strong=\"H5971\"* had|strong=\"H5971\"* stood|strong=\"H5975\"* in|strong=\"H8085\"* my|strong=\"H8085\"* council|strong=\"H5475\"*," + }, + { + "verseNum": 23, + "text": "“Am|strong=\"H3068\"* I|strong=\"H3808\"* a|strong=\"H3068\"* God|strong=\"H3068\"* at|strong=\"H3068\"* hand|strong=\"H7138\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 24, + "text": "Can|strong=\"H7200\"* anyone|strong=\"H7200\"* hide|strong=\"H5641\"* himself|strong=\"H3068\"* in|strong=\"H3068\"* secret|strong=\"H5641\"* places|strong=\"H4565\"*" + }, + { + "verseNum": 25, + "text": "“I|strong=\"H8085\"* have|strong=\"H5030\"* heard|strong=\"H8085\"* what|strong=\"H8085\"* the|strong=\"H8085\"* prophets|strong=\"H5030\"* have|strong=\"H5030\"* said|strong=\"H8085\"*, who|strong=\"H5030\"* prophesy|strong=\"H5012\"* lies|strong=\"H8267\"* in|strong=\"H8085\"* my|strong=\"H8085\"* name|strong=\"H8034\"*, saying, ‘I|strong=\"H8085\"* had|strong=\"H2492\"* a|strong=\"H3068\"* dream|strong=\"H2492\"*! I|strong=\"H8085\"* had|strong=\"H2492\"* a|strong=\"H3068\"* dream|strong=\"H2492\"*!’" + }, + { + "verseNum": 26, + "text": "How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H3820\"* this|strong=\"H3820\"* be|strong=\"H3426\"* in|strong=\"H5030\"* the|strong=\"H5704\"* heart|strong=\"H3820\"* of|strong=\"H3820\"* the|strong=\"H5704\"* prophets|strong=\"H5030\"* who|strong=\"H5030\"* prophesy|strong=\"H5012\"* lies|strong=\"H8267\"*, even|strong=\"H5704\"* the|strong=\"H5704\"* prophets|strong=\"H5030\"* of|strong=\"H3820\"* the|strong=\"H5704\"* deceit|strong=\"H8267\"* of|strong=\"H3820\"* their|strong=\"H3820\"* own heart|strong=\"H3820\"*?" + }, + { + "verseNum": 27, + "text": "They|strong=\"H5971\"* intend|strong=\"H2803\"* to|strong=\"H2803\"* cause|strong=\"H5971\"* my|strong=\"H5608\"* people|strong=\"H5971\"* to|strong=\"H2803\"* forget|strong=\"H7911\"* my|strong=\"H5608\"* name|strong=\"H8034\"* by|strong=\"H8034\"* their|strong=\"H7911\"* dreams|strong=\"H2472\"* which|strong=\"H5971\"* they|strong=\"H5971\"* each|strong=\"H5971\"* tell|strong=\"H5608\"* his|strong=\"H7911\"* neighbor|strong=\"H7453\"*, as|strong=\"H2803\"* their|strong=\"H7911\"* fathers forgot|strong=\"H7911\"* my|strong=\"H5608\"* name|strong=\"H8034\"* because of|strong=\"H8034\"* Baal|strong=\"H1168\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H5002\"* prophet|strong=\"H5030\"* who|strong=\"H3068\"* has|strong=\"H3068\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*, let him|strong=\"H1697\"* tell|strong=\"H1696\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* who|strong=\"H3068\"* has|strong=\"H3068\"* my|strong=\"H3068\"* word|strong=\"H1697\"*, let him|strong=\"H1697\"* speak|strong=\"H1696\"* my|strong=\"H3068\"* word|strong=\"H1697\"* faithfully. What|strong=\"H4100\"* is|strong=\"H3068\"* the|strong=\"H5002\"* straw|strong=\"H8401\"* to|strong=\"H1696\"* the|strong=\"H5002\"* wheat|strong=\"H1250\"*?” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 29, + "text": "“Isn’t my|strong=\"H3068\"* word|strong=\"H1697\"* like|strong=\"H3808\"* fire?” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; “and|strong=\"H3068\"* like|strong=\"H3808\"* a|strong=\"H3068\"* hammer|strong=\"H6360\"* that|strong=\"H3068\"* breaks the|strong=\"H5002\"* rock|strong=\"H5553\"* in|strong=\"H3068\"* pieces|strong=\"H6327\"*?" + }, + { + "verseNum": 30, + "text": "“Therefore|strong=\"H3651\"* behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H3068\"* against|strong=\"H5921\"* the|strong=\"H5002\"* prophets|strong=\"H5030\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “who|strong=\"H3068\"* each steal|strong=\"H1589\"* my|strong=\"H3068\"* words|strong=\"H1697\"* from|strong=\"H5921\"* his|strong=\"H3068\"* neighbor|strong=\"H7453\"*." + }, + { + "verseNum": 31, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H3068\"* against|strong=\"H5921\"* the|strong=\"H5002\"* prophets|strong=\"H5030\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “who|strong=\"H3068\"* use|strong=\"H3947\"* their|strong=\"H3068\"* tongues|strong=\"H3956\"*, and|strong=\"H3068\"* say|strong=\"H5001\"*, ‘He|strong=\"H3068\"* says|strong=\"H5002\"*.’" + }, + { + "verseNum": 32, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H3068\"* against|strong=\"H5921\"* those|strong=\"H5921\"* who|strong=\"H5971\"* prophesy|strong=\"H5012\"* lying|strong=\"H8267\"* dreams|strong=\"H2472\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “who|strong=\"H5971\"* tell|strong=\"H5608\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* cause|strong=\"H8267\"* my|strong=\"H3068\"* people|strong=\"H5971\"* to|strong=\"H3068\"* err|strong=\"H8582\"* by|strong=\"H5921\"* their|strong=\"H3068\"* lies|strong=\"H8267\"*, and|strong=\"H3068\"* by|strong=\"H5921\"* their|strong=\"H3068\"* vain|strong=\"H8267\"* boasting|strong=\"H6350\"*; yet|strong=\"H3068\"* I|strong=\"H2005\"* didn’t send|strong=\"H7971\"* them|strong=\"H5921\"* or|strong=\"H3808\"* command|strong=\"H6680\"* them|strong=\"H5921\"*. They|strong=\"H3068\"* don’t profit|strong=\"H3276\"* this|strong=\"H2088\"* people|strong=\"H5971\"* at|strong=\"H5921\"* all|strong=\"H5921\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 33, + "text": "“When|strong=\"H3588\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, or|strong=\"H3068\"* the|strong=\"H5002\"* prophet|strong=\"H5030\"*, or|strong=\"H3068\"* a|strong=\"H3068\"* priest|strong=\"H3548\"*, asks|strong=\"H7592\"* you|strong=\"H3588\"*, saying, ‘What|strong=\"H4100\"* is|strong=\"H3068\"* the|strong=\"H5002\"* message|strong=\"H4853\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*?’ Then|strong=\"H2088\"* you|strong=\"H3588\"* shall|strong=\"H3548\"* tell them|strong=\"H3588\"*, ‘“What|strong=\"H4100\"* message|strong=\"H4853\"*? I|strong=\"H3588\"* will|strong=\"H3068\"* cast|strong=\"H3068\"* you|strong=\"H3588\"* off|strong=\"H5203\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*.’" + }, + { + "verseNum": 34, + "text": "As|strong=\"H3068\"* for|strong=\"H5921\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"*, the|strong=\"H5921\"* priest|strong=\"H3548\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* people|strong=\"H5971\"*, who|strong=\"H1931\"* say, ‘The|strong=\"H5921\"* message|strong=\"H4853\"* from|strong=\"H5921\"* Yahweh|strong=\"H3068\"*,’ I|strong=\"H5921\"* will|strong=\"H3068\"* even|strong=\"H3068\"* punish|strong=\"H6485\"* that|strong=\"H5971\"* man and|strong=\"H3068\"* his|strong=\"H3068\"* household|strong=\"H1004\"*." + }, + { + "verseNum": 35, + "text": "You|strong=\"H5921\"* will|strong=\"H3068\"* say|strong=\"H1696\"* everyone to|strong=\"H1696\"* his|strong=\"H3068\"* neighbor|strong=\"H7453\"*, and|strong=\"H3068\"* everyone to|strong=\"H1696\"* his|strong=\"H3068\"* brother|strong=\"H7453\"*, ‘What|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* answered|strong=\"H6030\"*?’ and|strong=\"H3068\"*, ‘What|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* said|strong=\"H1696\"*?’" + }, + { + "verseNum": 36, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* mention|strong=\"H2142\"* the|strong=\"H3588\"* message|strong=\"H1697\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H5750\"*, for|strong=\"H3588\"* every|strong=\"H1697\"* man|strong=\"H2416\"*’s own|strong=\"H1961\"* word|strong=\"H1697\"* has|strong=\"H3068\"* become|strong=\"H1961\"* his|strong=\"H3068\"* message|strong=\"H1697\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* perverted|strong=\"H2015\"* the|strong=\"H3588\"* words|strong=\"H1697\"* of|strong=\"H3068\"* the|strong=\"H3588\"* living|strong=\"H2416\"* God|strong=\"H3068\"*, of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, our|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 37, + "text": "You|strong=\"H4100\"* will|strong=\"H3068\"* say|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3541\"* prophet|strong=\"H5030\"*, ‘What|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* answered|strong=\"H6030\"* you|strong=\"H4100\"*?’ and|strong=\"H3068\"*, ‘What|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoken|strong=\"H1696\"*?’" + }, + { + "verseNum": 38, + "text": "Although|strong=\"H3808\"* you|strong=\"H7971\"* say|strong=\"H1697\"*, ‘The|strong=\"H3541\"* message|strong=\"H1697\"* from|strong=\"H7971\"* Yahweh|strong=\"H3068\"*,’ therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Because|strong=\"H3282\"* you|strong=\"H7971\"* say|strong=\"H1697\"* this|strong=\"H2088\"* word|strong=\"H1697\"*, “The|strong=\"H3541\"* message|strong=\"H1697\"* from|strong=\"H7971\"* Yahweh|strong=\"H3068\"*,” and|strong=\"H3068\"* I|strong=\"H3541\"* have|strong=\"H3068\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* you|strong=\"H7971\"*, telling you|strong=\"H7971\"* not|strong=\"H3808\"* to|strong=\"H3068\"* say|strong=\"H1697\"*, “The|strong=\"H3541\"* message|strong=\"H1697\"* from|strong=\"H7971\"* Yahweh|strong=\"H3068\"*,”" + }, + { + "verseNum": 39, + "text": "therefore|strong=\"H3651\"* behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H5892\"* utterly|strong=\"H5377\"* forget|strong=\"H5382\"* you|strong=\"H5414\"*, and|strong=\"H5892\"* I|strong=\"H2005\"* will|strong=\"H5892\"* cast|strong=\"H5414\"* you|strong=\"H5414\"* off|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H6440\"* city|strong=\"H5892\"* that|strong=\"H3651\"* I|strong=\"H2005\"* gave|strong=\"H5414\"* to|strong=\"H5921\"* you|strong=\"H5414\"* and|strong=\"H5892\"* to|strong=\"H5921\"* your|strong=\"H5414\"* fathers, away|strong=\"H5414\"* from|strong=\"H6440\"* my|strong=\"H5414\"* presence|strong=\"H6440\"*." + }, + { + "verseNum": 40, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* bring|strong=\"H5414\"* an|strong=\"H5414\"* everlasting|strong=\"H5769\"* reproach|strong=\"H2781\"* on|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H5769\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* shame|strong=\"H2781\"*, which will|strong=\"H5414\"* not|strong=\"H3808\"* be|strong=\"H3808\"* forgotten|strong=\"H7911\"*.’”" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* showed|strong=\"H7200\"* me|strong=\"H6440\"*, and|strong=\"H1121\"* behold|strong=\"H2009\"*, two|strong=\"H8147\"* baskets|strong=\"H1736\"* of|strong=\"H1121\"* figs|strong=\"H8384\"* were|strong=\"H1121\"* set|strong=\"H3259\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*, after|strong=\"H7200\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon had|strong=\"H3068\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* Jeconiah|strong=\"H3204\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, with|strong=\"H3068\"* the|strong=\"H6440\"* craftsmen|strong=\"H2796\"* and|strong=\"H1121\"* smiths|strong=\"H4525\"*, from|strong=\"H6440\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H1121\"* had|strong=\"H3068\"* brought|strong=\"H3068\"* them|strong=\"H6440\"* to|strong=\"H3068\"* Babylon." + }, + { + "verseNum": 2, + "text": "One|strong=\"H3808\"* basket|strong=\"H1731\"* had|strong=\"H1731\"* very|strong=\"H3966\"* good|strong=\"H2896\"* figs|strong=\"H8384\"*, like|strong=\"H3808\"* the|strong=\"H3808\"* figs|strong=\"H8384\"* that|strong=\"H7451\"* are|strong=\"H2896\"* first-ripe; and|strong=\"H2896\"* the|strong=\"H3808\"* other basket|strong=\"H1731\"* had|strong=\"H1731\"* very|strong=\"H3966\"* bad|strong=\"H7451\"* figs|strong=\"H8384\"*, which|strong=\"H7451\"* could not|strong=\"H3808\"* be|strong=\"H3808\"* eaten, they|strong=\"H3808\"* were|strong=\"H7451\"* so|strong=\"H3808\"* bad|strong=\"H7451\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H7200\"* Yahweh|strong=\"H3068\"* asked|strong=\"H4100\"* me|strong=\"H7200\"*, “What|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H3808\"* see|strong=\"H7200\"*, Jeremiah|strong=\"H3414\"*?”" + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 5, + "text": "“Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*: ‘Like|strong=\"H3651\"* these|strong=\"H2088\"* good|strong=\"H2896\"* figs|strong=\"H8384\"*, so|strong=\"H3651\"* I|strong=\"H3541\"* will|strong=\"H3068\"* regard|strong=\"H4480\"* the|strong=\"H3541\"* captives|strong=\"H1546\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, whom I|strong=\"H3541\"* have|strong=\"H3068\"* sent|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H3068\"* this|strong=\"H2088\"* place|strong=\"H4725\"* into|strong=\"H3063\"* the|strong=\"H3541\"* land|strong=\"H4725\"* of|strong=\"H3068\"* the|strong=\"H3541\"* Chaldeans|strong=\"H3778\"*, as|strong=\"H3651\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H5921\"* I|strong=\"H5921\"* will|strong=\"H5869\"* set|strong=\"H7760\"* my|strong=\"H7760\"* eyes|strong=\"H5869\"* on|strong=\"H5921\"* them|strong=\"H5921\"* for|strong=\"H5921\"* good|strong=\"H2896\"*, and|strong=\"H7725\"* I|strong=\"H5921\"* will|strong=\"H5869\"* bring|strong=\"H7725\"* them|strong=\"H5921\"* again|strong=\"H7725\"* to|strong=\"H7725\"* this|strong=\"H2063\"* land. I|strong=\"H5921\"* will|strong=\"H5869\"* build|strong=\"H1129\"* them|strong=\"H5921\"*, and|strong=\"H7725\"* not|strong=\"H3808\"* pull|strong=\"H2040\"* them|strong=\"H5921\"* down|strong=\"H2040\"*. I|strong=\"H5921\"* will|strong=\"H5869\"* plant|strong=\"H5193\"* them|strong=\"H5921\"*, and|strong=\"H7725\"* not|strong=\"H3808\"* pluck|strong=\"H5428\"* them|strong=\"H5921\"* up|strong=\"H1129\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* give|strong=\"H5414\"* them|strong=\"H5414\"* a|strong=\"H3068\"* heart|strong=\"H3820\"* to|strong=\"H7725\"* know|strong=\"H3045\"* me|strong=\"H5414\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*. They|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* my|strong=\"H5414\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* their|strong=\"H3605\"* God|strong=\"H3068\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H5414\"* with|strong=\"H3068\"* their|strong=\"H3605\"* whole|strong=\"H3605\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 8, + "text": "“‘As|strong=\"H3651\"* the|strong=\"H3588\"* bad|strong=\"H7451\"* figs|strong=\"H8384\"*, which|strong=\"H3068\"* can|strong=\"H7451\"*’t be|strong=\"H3808\"* eaten, they|strong=\"H3588\"* are|strong=\"H3068\"* so|strong=\"H3651\"* bad|strong=\"H7451\"*,’ surely|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘So|strong=\"H3651\"* I|strong=\"H3588\"* will|strong=\"H3068\"* give|strong=\"H5414\"* up|strong=\"H5414\"* Zedekiah|strong=\"H6667\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* his|strong=\"H5414\"* princes|strong=\"H8269\"*, and|strong=\"H3063\"* the|strong=\"H3588\"* remnant|strong=\"H7611\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"* who|strong=\"H3068\"* remain|strong=\"H3427\"* in|strong=\"H3427\"* this|strong=\"H2063\"* land, and|strong=\"H3063\"* those|strong=\"H3427\"* who|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3588\"* land of|strong=\"H4428\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* even give|strong=\"H5414\"* them|strong=\"H5414\"* up|strong=\"H5414\"* to|strong=\"H5414\"* be|strong=\"H5414\"* tossed back and|strong=\"H8033\"* forth|strong=\"H5414\"* among|strong=\"H8148\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H4725\"* the|strong=\"H3605\"* earth for|strong=\"H3605\"* evil|strong=\"H7451\"*, to|strong=\"H5414\"* be|strong=\"H5414\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* and|strong=\"H8033\"* a|strong=\"H3068\"* proverb|strong=\"H4912\"*, a|strong=\"H3068\"* taunt|strong=\"H8148\"* and|strong=\"H8033\"* a|strong=\"H3068\"* curse|strong=\"H7045\"*, in|strong=\"H4725\"* all|strong=\"H3605\"* places|strong=\"H4725\"* where|strong=\"H8033\"* I|strong=\"H5414\"* will|strong=\"H5414\"* drive|strong=\"H5080\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"H5414\"* will|strong=\"H2719\"* send|strong=\"H7971\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*, the|strong=\"H5921\"* famine|strong=\"H7458\"*, and|strong=\"H7971\"* the|strong=\"H5921\"* pestilence|strong=\"H1698\"* among|strong=\"H5921\"* them|strong=\"H5414\"*, until|strong=\"H5704\"* they|strong=\"H1992\"* are|strong=\"H1992\"* consumed|strong=\"H8552\"* from|strong=\"H5921\"* off|strong=\"H5921\"* the|strong=\"H5921\"* land that|strong=\"H5414\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5704\"* them|strong=\"H5414\"* and|strong=\"H7971\"* to|strong=\"H5704\"* their|strong=\"H5414\"* fathers.’”" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* word|strong=\"H1697\"* that|strong=\"H5971\"* came|strong=\"H1961\"* to|strong=\"H1961\"* Jeremiah|strong=\"H3414\"* concerning|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* fourth|strong=\"H7243\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* (this|strong=\"H1931\"* was|strong=\"H1961\"* the|strong=\"H3605\"* first|strong=\"H1121\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon)," + }, + { + "verseNum": 2, + "text": "which|strong=\"H5971\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H3427\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*:" + }, + { + "verseNum": 3, + "text": "From|strong=\"H4480\"* the|strong=\"H8085\"* thirteenth|strong=\"H7969\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"* the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amon, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, even|strong=\"H5704\"* to|strong=\"H1696\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, these|strong=\"H2088\"* twenty-three|strong=\"H6242\"* years|strong=\"H8141\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* has|strong=\"H3068\"* come|strong=\"H1961\"* to|strong=\"H1696\"* me|strong=\"H4480\"*, and|strong=\"H1121\"* I|strong=\"H3117\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3117\"*, rising|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H1121\"* speaking|strong=\"H1696\"*; but|strong=\"H3808\"* you|strong=\"H3117\"* have|strong=\"H1961\"* not|strong=\"H3808\"* listened|strong=\"H8085\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* you|strong=\"H3605\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*, rising|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H3068\"* sending|strong=\"H7971\"* them|strong=\"H7971\"* (but|strong=\"H3808\"* you|strong=\"H3605\"* have|strong=\"H3068\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* or|strong=\"H3808\"* inclined|strong=\"H5186\"* your|strong=\"H3068\"* ear|strong=\"H8085\"* to|strong=\"H3068\"* hear|strong=\"H8085\"*)," + }, + { + "verseNum": 5, + "text": "saying, “Return|strong=\"H7725\"* now|strong=\"H4994\"* everyone from|strong=\"H4480\"* his|strong=\"H5414\"* evil|strong=\"H7451\"* way|strong=\"H1870\"*, and|strong=\"H3068\"* from|strong=\"H4480\"* the|strong=\"H5921\"* evil|strong=\"H7451\"* of|strong=\"H3068\"* your|strong=\"H3068\"* doings|strong=\"H4611\"*, and|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* land that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* to|strong=\"H5704\"* you|strong=\"H5414\"* and|strong=\"H3068\"* to|strong=\"H5704\"* your|strong=\"H3068\"* fathers, from|strong=\"H4480\"* of|strong=\"H3068\"* old|strong=\"H5769\"* and|strong=\"H3068\"* even|strong=\"H5704\"* forever|strong=\"H5769\"* more|strong=\"H4480\"*." + }, + { + "verseNum": 6, + "text": "Don’t go|strong=\"H3212\"* after other gods to|strong=\"H3212\"* serve|strong=\"H5647\"* them|strong=\"H3027\"* or|strong=\"H3808\"* worship|strong=\"H7812\"* them|strong=\"H3027\"*, and|strong=\"H3027\"* don’t provoke|strong=\"H3707\"* me|strong=\"H3707\"* to|strong=\"H3212\"* anger|strong=\"H3707\"* with|strong=\"H3212\"* the|strong=\"H5647\"* work|strong=\"H4639\"* of|strong=\"H3027\"* your|strong=\"H3808\"* hands|strong=\"H3027\"*; then|strong=\"H3808\"* I|strong=\"H3808\"* will|strong=\"H3027\"* do|strong=\"H5647\"* you|strong=\"H3808\"* no|strong=\"H3808\"* harm|strong=\"H7489\"*.”" + }, + { + "verseNum": 7, + "text": "“Yet|strong=\"H3068\"* you|strong=\"H3808\"* have|strong=\"H3068\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* me|strong=\"H3707\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H8085\"* you|strong=\"H3808\"* may|strong=\"H3068\"* provoke|strong=\"H3707\"* me|strong=\"H3707\"* to|strong=\"H3068\"* anger|strong=\"H3707\"* with|strong=\"H3068\"* the|strong=\"H5002\"* work|strong=\"H4639\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hands|strong=\"H3027\"* to|strong=\"H3068\"* your|strong=\"H3068\"* own|strong=\"H3027\"* hurt|strong=\"H7451\"*.”" + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “Because|strong=\"H3282\"* you|strong=\"H3808\"* have|strong=\"H3068\"* not|strong=\"H3808\"* heard|strong=\"H8085\"* my|strong=\"H8085\"* words|strong=\"H1697\"*," + }, + { + "verseNum": 9, + "text": "behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* send|strong=\"H7971\"* and|strong=\"H3068\"* take|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H4428\"* the|strong=\"H3605\"* north|strong=\"H6828\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “and|strong=\"H3068\"* I|strong=\"H2005\"* will|strong=\"H3068\"* send|strong=\"H7971\"* to|strong=\"H3068\"* Nebuchadnezzar|strong=\"H5019\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, my|strong=\"H3605\"* servant|strong=\"H5650\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H3947\"* them|strong=\"H5921\"* against|strong=\"H5921\"* this|strong=\"H2063\"* land|strong=\"H4940\"*, and|strong=\"H3068\"* against|strong=\"H5921\"* its|strong=\"H3605\"* inhabitants|strong=\"H3427\"*, and|strong=\"H3068\"* against|strong=\"H5921\"* all|strong=\"H3605\"* these|strong=\"H2063\"* nations|strong=\"H1471\"* around|strong=\"H5439\"*. I|strong=\"H2005\"* will|strong=\"H3068\"* utterly|strong=\"H2763\"* destroy|strong=\"H2763\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* make|strong=\"H7760\"* them|strong=\"H5921\"* an|strong=\"H3947\"* astonishment|strong=\"H8047\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* hissing|strong=\"H8322\"*, and|strong=\"H3068\"* perpetual|strong=\"H5769\"* desolations|strong=\"H2723\"*." + }, + { + "verseNum": 10, + "text": "Moreover I|strong=\"H6963\"* will|strong=\"H6963\"* take from|strong=\"H6963\"* them|strong=\"H1992\"* the|strong=\"H6963\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* mirth|strong=\"H8057\"* and|strong=\"H6963\"* the|strong=\"H6963\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* gladness|strong=\"H8057\"*, the|strong=\"H6963\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H6963\"* bridegroom|strong=\"H2860\"* and|strong=\"H6963\"* the|strong=\"H6963\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H6963\"* bride|strong=\"H3618\"*, the|strong=\"H6963\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H6963\"* millstones|strong=\"H7347\"*, and|strong=\"H6963\"* the|strong=\"H6963\"* light|strong=\"H5216\"* of|strong=\"H6963\"* the|strong=\"H6963\"* lamp|strong=\"H5216\"*." + }, + { + "verseNum": 11, + "text": "This|strong=\"H2063\"* whole|strong=\"H3605\"* land will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8047\"*, and|strong=\"H4428\"* an|strong=\"H1961\"* astonishment|strong=\"H8047\"*; and|strong=\"H4428\"* these|strong=\"H2063\"* nations|strong=\"H1471\"* will|strong=\"H1961\"* serve|strong=\"H5647\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon seventy|strong=\"H7657\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 12, + "text": "“It|strong=\"H7760\"* will|strong=\"H3068\"* happen|strong=\"H1961\"*, when|strong=\"H1961\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"* are|strong=\"H1471\"* accomplished|strong=\"H4390\"*, that|strong=\"H1931\"* I|strong=\"H5921\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* the|strong=\"H5002\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon and|strong=\"H3068\"* that|strong=\"H1931\"* nation|strong=\"H1471\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “for|strong=\"H5921\"* their|strong=\"H3068\"* iniquity|strong=\"H5771\"*. I|strong=\"H5921\"* will|strong=\"H3068\"* make|strong=\"H7760\"* the|strong=\"H5002\"* land of|strong=\"H4428\"* the|strong=\"H5002\"* Chaldeans|strong=\"H3778\"* desolate|strong=\"H8077\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H5921\"* will|strong=\"H1471\"* bring on|strong=\"H5921\"* that|strong=\"H3605\"* land all|strong=\"H3605\"* my|strong=\"H3605\"* words|strong=\"H1697\"* which|strong=\"H1931\"* I|strong=\"H5921\"* have|strong=\"H1471\"* pronounced|strong=\"H1696\"* against|strong=\"H5921\"* it|strong=\"H1931\"*, even|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H2088\"* written|strong=\"H3789\"* in|strong=\"H5921\"* this|strong=\"H2088\"* book|strong=\"H5612\"*, which|strong=\"H1931\"* Jeremiah|strong=\"H3414\"* has|strong=\"H1471\"* prophesied|strong=\"H5012\"* against|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* many|strong=\"H7227\"* nations|strong=\"H1471\"* and|strong=\"H4428\"* great|strong=\"H1419\"* kings|strong=\"H4428\"* will|strong=\"H1471\"* make|strong=\"H7999\"* bondservants of|strong=\"H4428\"* them|strong=\"H1992\"*, even|strong=\"H1571\"* of|strong=\"H4428\"* them|strong=\"H1992\"*. I|strong=\"H3588\"* will|strong=\"H1471\"* recompense|strong=\"H7999\"* them|strong=\"H1992\"* according|strong=\"H3027\"* to|strong=\"H3027\"* their|strong=\"H1992\"* deeds|strong=\"H4639\"*, and|strong=\"H4428\"* according|strong=\"H3027\"* to|strong=\"H3027\"* the|strong=\"H3588\"* work|strong=\"H4639\"* of|strong=\"H4428\"* their|strong=\"H1992\"* hands|strong=\"H3027\"*.”" + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"* to|strong=\"H3478\"* me|strong=\"H7971\"*: “Take|strong=\"H3947\"* this|strong=\"H2063\"* cup|strong=\"H3563\"* of|strong=\"H3068\"* the|strong=\"H3605\"* wine|strong=\"H3196\"* of|strong=\"H3068\"* wrath|strong=\"H2534\"* from|strong=\"H3478\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*, and|strong=\"H3478\"* cause all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* to|strong=\"H3478\"* whom|strong=\"H3588\"* I|strong=\"H3588\"* send|strong=\"H7971\"* you|strong=\"H3588\"* to|strong=\"H3478\"* drink|strong=\"H8248\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"H6440\"* will|strong=\"H2719\"* drink|strong=\"H8354\"*, and|strong=\"H7971\"* reel back and|strong=\"H7971\"* forth|strong=\"H7971\"*, and|strong=\"H7971\"* be|strong=\"H6440\"* insane, because|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* sword|strong=\"H2719\"* that|strong=\"H2719\"* I|strong=\"H6440\"* will|strong=\"H2719\"* send|strong=\"H7971\"* among|strong=\"H2719\"* them|strong=\"H7971\"*.”" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H3947\"* I|strong=\"H3027\"* took|strong=\"H3947\"* the|strong=\"H3605\"* cup|strong=\"H3563\"* at|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"*, and|strong=\"H3068\"* made|strong=\"H8248\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* to|strong=\"H3068\"* drink|strong=\"H8248\"*, to|strong=\"H3068\"* whom Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"*:" + }, + { + "verseNum": 18, + "text": "Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* the|strong=\"H5414\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, with|strong=\"H3389\"* its|strong=\"H5414\"* kings|strong=\"H4428\"* and|strong=\"H3063\"* its|strong=\"H5414\"* princes|strong=\"H8269\"*, to|strong=\"H5414\"* make|strong=\"H5414\"* them|strong=\"H5414\"* a|strong=\"H3068\"* desolation|strong=\"H8047\"*, an|strong=\"H5414\"* astonishment|strong=\"H8047\"*, a|strong=\"H3068\"* hissing|strong=\"H8322\"*, and|strong=\"H3063\"* a|strong=\"H3068\"* curse|strong=\"H7045\"*, as|strong=\"H3117\"* it|strong=\"H5414\"* is|strong=\"H2088\"* today|strong=\"H3117\"*;" + }, + { + "verseNum": 19, + "text": "Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*, with|strong=\"H4714\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*, his|strong=\"H3605\"* princes|strong=\"H8269\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*;" + }, + { + "verseNum": 20, + "text": "and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* mixed|strong=\"H6154\"* people|strong=\"H6154\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land of|strong=\"H4428\"* Uz|strong=\"H5780\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, Ashkelon, Gaza|strong=\"H5804\"*, Ekron|strong=\"H6138\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H4428\"* Ashdod;" + }, + { + "verseNum": 21, + "text": "Edom, Moab|strong=\"H4124\"*, and|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*;" + }, + { + "verseNum": 22, + "text": "and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Tyre|strong=\"H6865\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Sidon|strong=\"H6721\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* isle which|strong=\"H4428\"* is|strong=\"H3605\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*;" + }, + { + "verseNum": 23, + "text": "Dedan|strong=\"H1719\"*, Tema|strong=\"H8485\"*, Buz, and|strong=\"H3605\"* all|strong=\"H3605\"* who|strong=\"H3605\"* have|strong=\"H3605\"* the|strong=\"H3605\"* corners|strong=\"H6285\"* of|strong=\"H3605\"* their|strong=\"H3605\"* beard cut|strong=\"H7112\"* off|strong=\"H7112\"*;" + }, + { + "verseNum": 24, + "text": "and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Arabia|strong=\"H6152\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* mixed|strong=\"H6154\"* people|strong=\"H6154\"* who|strong=\"H3605\"* dwell|strong=\"H7931\"* in|strong=\"H4428\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*;" + }, + { + "verseNum": 25, + "text": "and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Zimri|strong=\"H2174\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Elam|strong=\"H5867\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Medes|strong=\"H4074\"*;" + }, + { + "verseNum": 26, + "text": "and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* north|strong=\"H6828\"*, far|strong=\"H7350\"* and|strong=\"H4428\"* near|strong=\"H7138\"*, one|strong=\"H3605\"* with|strong=\"H5921\"* another|strong=\"H6440\"*; and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H4428\"* the|strong=\"H3605\"* world, which|strong=\"H4428\"* are|strong=\"H4428\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H3605\"* earth. The|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Sheshach|strong=\"H8347\"* will|strong=\"H4428\"* drink|strong=\"H8354\"* after|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 27, + "text": "“You|strong=\"H6440\"* shall|strong=\"H3068\"* tell them|strong=\"H7971\"*, ‘Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*: “Drink|strong=\"H8354\"*, and|strong=\"H6965\"* be|strong=\"H3808\"* drunk|strong=\"H8354\"*, vomit|strong=\"H7006\"*, fall|strong=\"H5307\"*, and|strong=\"H6965\"* rise|strong=\"H6965\"* no|strong=\"H3808\"* more|strong=\"H3808\"*, because|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* sword|strong=\"H2719\"* which|strong=\"H3068\"* I|strong=\"H3541\"* will|strong=\"H3068\"* send|strong=\"H7971\"* among|strong=\"H2719\"* you|strong=\"H6440\"*.”’" + }, + { + "verseNum": 28, + "text": "It|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, if|strong=\"H3588\"* they|strong=\"H3588\"* refuse|strong=\"H3985\"* to|strong=\"H3068\"* take|strong=\"H3947\"* the|strong=\"H3588\"* cup|strong=\"H3563\"* at|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H3068\"* drink|strong=\"H8354\"*, then|strong=\"H1961\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* tell them|strong=\"H3027\"*, ‘Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “You|strong=\"H3588\"* shall|strong=\"H3068\"* surely|strong=\"H3588\"* drink|strong=\"H8354\"*." + }, + { + "verseNum": 29, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, I|strong=\"H3588\"* begin|strong=\"H2490\"* to|strong=\"H3068\"* work|strong=\"H7489\"* evil|strong=\"H7489\"* at|strong=\"H3427\"* the|strong=\"H3605\"* city|strong=\"H5892\"* which|strong=\"H3068\"* is|strong=\"H3068\"* called|strong=\"H7121\"* by|strong=\"H5921\"* my|strong=\"H3605\"* name|strong=\"H8034\"*; and|strong=\"H3068\"* should|strong=\"H3068\"* you|strong=\"H3588\"* be|strong=\"H3808\"* utterly|strong=\"H7489\"* unpunished|strong=\"H5352\"*? You|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* unpunished|strong=\"H5352\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* call|strong=\"H7121\"* for|strong=\"H3588\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*.”’" + }, + { + "verseNum": 30, + "text": "“Therefore|strong=\"H5921\"* prophesy|strong=\"H5012\"* against|strong=\"H5921\"* them|strong=\"H5414\"* all|strong=\"H3605\"* these|strong=\"H3605\"* words|strong=\"H1697\"*, and|strong=\"H3068\"* tell|strong=\"H3605\"* them|strong=\"H5414\"*," + }, + { + "verseNum": 31, + "text": "A|strong=\"H3068\"* noise|strong=\"H7588\"* will|strong=\"H3068\"* come even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* end|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth;" + }, + { + "verseNum": 32, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 33, + "text": "The|strong=\"H6440\"* slain|strong=\"H2491\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* at|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* from|strong=\"H6440\"* one|strong=\"H3808\"* end|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H6440\"* earth even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H6440\"* other|strong=\"H7097\"* end|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H6440\"* earth. They|strong=\"H3117\"* won’t be|strong=\"H1961\"* lamented|strong=\"H5594\"*. They|strong=\"H3117\"* won’t be|strong=\"H1961\"* gathered or|strong=\"H3808\"* buried|strong=\"H6912\"*. They|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H1961\"* dung|strong=\"H1828\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*." + }, + { + "verseNum": 34, + "text": "Wail|strong=\"H3213\"*, you|strong=\"H3588\"* shepherds|strong=\"H7462\"*, and|strong=\"H3117\"* cry|strong=\"H2199\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H4480\"* shepherds|strong=\"H7462\"* will|strong=\"H6629\"* have|strong=\"H7462\"* no|strong=\"H4480\"* way|strong=\"H4498\"* to|strong=\"H4480\"* flee." + }, + { + "verseNum": 36, + "text": "A|strong=\"H3068\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* the|strong=\"H3588\"* cry|strong=\"H6818\"* of|strong=\"H3068\"* the|strong=\"H3588\"* shepherds|strong=\"H7462\"*," + }, + { + "verseNum": 37, + "text": "The|strong=\"H6440\"* peaceful|strong=\"H7965\"* folds are|strong=\"H3068\"* brought|strong=\"H3068\"* to|strong=\"H3068\"* silence|strong=\"H1826\"*" + }, + { + "verseNum": 38, + "text": "He|strong=\"H3588\"* has|strong=\"H1961\"* left|strong=\"H5800\"* his|strong=\"H6440\"* covert|strong=\"H5520\"*, as|strong=\"H1961\"* the|strong=\"H6440\"* lion|strong=\"H3715\"*;" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3068\"* the|strong=\"H3068\"* beginning|strong=\"H7225\"* of|strong=\"H1121\"* the|strong=\"H3068\"* reign|strong=\"H4468\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, this|strong=\"H2088\"* word|strong=\"H1697\"* came|strong=\"H1961\"* from|strong=\"H1121\"* Yahweh|strong=\"H3068\"*:" + }, + { + "verseNum": 2, + "text": "“Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Stand|strong=\"H5975\"* in|strong=\"H5921\"* the|strong=\"H3605\"* court|strong=\"H2691\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3063\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* which|strong=\"H3068\"* come|strong=\"H3063\"* to|strong=\"H1696\"* worship|strong=\"H7812\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* that|strong=\"H3605\"* I|strong=\"H3541\"* command|strong=\"H6680\"* you|strong=\"H6680\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5921\"*. Don’t omit|strong=\"H1639\"* a|strong=\"H3068\"* word|strong=\"H1697\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H6213\"* may|strong=\"H7725\"* be|strong=\"H1870\"* they|strong=\"H6213\"* will|strong=\"H8085\"* listen|strong=\"H8085\"*, and|strong=\"H7725\"* every|strong=\"H7725\"* man|strong=\"H7451\"* turn|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* evil|strong=\"H7451\"* way|strong=\"H1870\"*, that|strong=\"H8085\"* I|strong=\"H8085\"* may|strong=\"H7725\"* relent|strong=\"H5162\"* from|strong=\"H7725\"* the|strong=\"H6440\"* evil|strong=\"H7451\"* which|strong=\"H7451\"* I|strong=\"H8085\"* intend|strong=\"H2803\"* to|strong=\"H7725\"* do|strong=\"H6213\"* to|strong=\"H7725\"* them|strong=\"H7725\"* because|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* evil|strong=\"H7451\"* of|strong=\"H6440\"* their|strong=\"H6440\"* doings|strong=\"H4611\"*.’”" + }, + { + "verseNum": 4, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* tell|strong=\"H8085\"* them|strong=\"H5414\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘If you|strong=\"H5414\"* will|strong=\"H3068\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* me|strong=\"H5414\"*, to|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* my|strong=\"H8085\"* law|strong=\"H8451\"* which|strong=\"H3068\"* I|strong=\"H5414\"* have|strong=\"H3068\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"*," + }, + { + "verseNum": 5, + "text": "to|strong=\"H7971\"* listen|strong=\"H8085\"* to|strong=\"H7971\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H1697\"* my|strong=\"H8085\"* servants|strong=\"H5650\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"* whom I|strong=\"H5921\"* send|strong=\"H7971\"* to|strong=\"H7971\"* you|strong=\"H7971\"*, even|strong=\"H3808\"* rising|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H7971\"* sending|strong=\"H7971\"* them|strong=\"H5921\"*—but|strong=\"H3808\"* you|strong=\"H7971\"* have|strong=\"H5030\"* not|strong=\"H3808\"* listened|strong=\"H8085\"*—" + }, + { + "verseNum": 6, + "text": "then|strong=\"H2088\"* I|strong=\"H5414\"* will|strong=\"H1471\"* make|strong=\"H5414\"* this|strong=\"H2088\"* house|strong=\"H1004\"* like|strong=\"H1004\"* Shiloh|strong=\"H7887\"*, and|strong=\"H1004\"* will|strong=\"H1471\"* make|strong=\"H5414\"* this|strong=\"H2088\"* city|strong=\"H5892\"* a|strong=\"H3068\"* curse|strong=\"H7045\"* to|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* of|strong=\"H1004\"* the|strong=\"H3605\"* earth.’”" + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* heard|strong=\"H8085\"* Jeremiah|strong=\"H3414\"* speaking|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H1961\"* Jeremiah|strong=\"H3414\"* had|strong=\"H3068\"* finished|strong=\"H3615\"* speaking|strong=\"H1696\"* all|strong=\"H3605\"* that|strong=\"H5971\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H6680\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* seized|strong=\"H8610\"* him|strong=\"H6680\"*, saying|strong=\"H1696\"*, “You|strong=\"H6680\"* shall|strong=\"H3548\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*!" + }, + { + "verseNum": 9, + "text": "Why|strong=\"H4069\"* have|strong=\"H1961\"* you|strong=\"H3605\"* prophesied|strong=\"H5012\"* in|strong=\"H3427\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, saying, ‘This|strong=\"H2088\"* house|strong=\"H1004\"* will|strong=\"H3068\"* be|strong=\"H1961\"* like|strong=\"H1961\"* Shiloh|strong=\"H7887\"*, and|strong=\"H3068\"* this|strong=\"H2088\"* city|strong=\"H5892\"* will|strong=\"H3068\"* be|strong=\"H1961\"* desolate|strong=\"H2717\"*, without|strong=\"H1004\"* inhabitant|strong=\"H3427\"*’?” All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* were|strong=\"H1961\"* crowded|strong=\"H6950\"* around Jeremiah|strong=\"H3414\"* in|strong=\"H3427\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H8085\"* the|strong=\"H8085\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* heard|strong=\"H8085\"* these|strong=\"H8085\"* things|strong=\"H1697\"*, they|strong=\"H3068\"* came|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* the|strong=\"H8085\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H3063\"* they|strong=\"H3068\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H8085\"* entry|strong=\"H6607\"* of|strong=\"H4428\"* the|strong=\"H8085\"* new|strong=\"H2319\"* gate|strong=\"H8179\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H2088\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H4941\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* spoke to|strong=\"H8085\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H4941\"* to|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying, “This|strong=\"H2088\"* man|strong=\"H3605\"* is|strong=\"H2088\"* worthy|strong=\"H4941\"* of|strong=\"H8269\"* death|strong=\"H4194\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* prophesied|strong=\"H5012\"* against|strong=\"H5012\"* this|strong=\"H2088\"* city|strong=\"H5892\"*, as|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5971\"* heard|strong=\"H8085\"* with|strong=\"H5971\"* your|strong=\"H3605\"* ears.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H2088\"* Jeremiah|strong=\"H3414\"* spoke|strong=\"H1697\"* to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H3068\"* to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying|strong=\"H1697\"*, “Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H3068\"* prophesy|strong=\"H5012\"* against|strong=\"H5012\"* this|strong=\"H2088\"* house|strong=\"H1004\"* and|strong=\"H3068\"* against|strong=\"H5012\"* this|strong=\"H2088\"* city|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* that|strong=\"H5971\"* you|strong=\"H3605\"* have|strong=\"H3068\"* heard|strong=\"H8085\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* amend|strong=\"H3190\"* your|strong=\"H3068\"* ways|strong=\"H1870\"* and|strong=\"H3068\"* your|strong=\"H3068\"* doings|strong=\"H4611\"*, and|strong=\"H3068\"* obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*; then|strong=\"H1696\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* relent|strong=\"H5162\"* from|strong=\"H5921\"* the|strong=\"H5921\"* evil|strong=\"H7451\"* that|strong=\"H8085\"* he|strong=\"H3068\"* has|strong=\"H3068\"* pronounced|strong=\"H1696\"* against|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "But as|strong=\"H6213\"* for|strong=\"H6213\"* me|strong=\"H6213\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* in|strong=\"H6213\"* your|strong=\"H6213\"* hand|strong=\"H3027\"*. Do|strong=\"H6213\"* with|strong=\"H6213\"* me|strong=\"H6213\"* what|strong=\"H2896\"* is|strong=\"H3027\"* good|strong=\"H2896\"* and|strong=\"H3027\"* right|strong=\"H3477\"* in|strong=\"H6213\"* your|strong=\"H6213\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 15, + "text": "Only|strong=\"H3588\"* know|strong=\"H3045\"* for|strong=\"H3588\"* certain|strong=\"H3045\"* that|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* put|strong=\"H5414\"* me|strong=\"H5414\"* to|strong=\"H1696\"* death|strong=\"H4191\"*, you|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H5414\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* yourselves|strong=\"H3605\"*, on|strong=\"H5921\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, and|strong=\"H3068\"* on|strong=\"H5921\"* its|strong=\"H3605\"* inhabitants|strong=\"H3427\"*; for|strong=\"H3588\"* in|strong=\"H3427\"* truth Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H5414\"* to|strong=\"H1696\"* you|strong=\"H3588\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* all|strong=\"H3605\"* these|strong=\"H1696\"* words|strong=\"H1697\"* in|strong=\"H3427\"* your|strong=\"H3068\"* ears.”" + }, + { + "verseNum": 16, + "text": "Then|strong=\"H1696\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* said|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* to|strong=\"H1696\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*: “This|strong=\"H2088\"* man|strong=\"H3605\"* is|strong=\"H3068\"* not|strong=\"H2088\"* worthy|strong=\"H4941\"* of|strong=\"H3068\"* death|strong=\"H4194\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* us|strong=\"H3588\"* in|strong=\"H3068\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*.”" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H6965\"* certain of|strong=\"H2205\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H2205\"* the|strong=\"H3605\"* land rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H6965\"* spoke to|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H2205\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying," + }, + { + "verseNum": 18, + "text": "“Micah|strong=\"H4320\"* the|strong=\"H3605\"* Morashtite prophesied|strong=\"H5012\"* in|strong=\"H3068\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*; and|strong=\"H3063\"* he|strong=\"H3117\"* spoke to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, saying, ‘Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 19, + "text": "Did|strong=\"H6213\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* put|strong=\"H4191\"* him|strong=\"H6440\"* to|strong=\"H1696\"* death|strong=\"H4191\"*? Didn’t he|strong=\"H6213\"* fear|strong=\"H3373\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3063\"* entreat|strong=\"H2470\"* the|strong=\"H3605\"* favor|strong=\"H6440\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3063\"* Yahweh|strong=\"H3068\"* relented|strong=\"H5162\"* of|strong=\"H4428\"* the|strong=\"H3605\"* disaster|strong=\"H7451\"* which|strong=\"H3068\"* he|strong=\"H6213\"* had|strong=\"H3068\"* pronounced|strong=\"H1696\"* against|strong=\"H5921\"* them|strong=\"H5921\"*? We|strong=\"H6213\"* would|strong=\"H3068\"* commit|strong=\"H6213\"* great|strong=\"H1419\"* evil|strong=\"H7451\"* against|strong=\"H5921\"* our|strong=\"H3068\"* own|strong=\"H5315\"* souls|strong=\"H5315\"* that|strong=\"H3605\"* way|strong=\"H6440\"*!”" + }, + { + "verseNum": 20, + "text": "There|strong=\"H1961\"* was|strong=\"H3068\"* also|strong=\"H1571\"* a|strong=\"H3068\"* man|strong=\"H1121\"* who|strong=\"H3605\"* prophesied|strong=\"H5012\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, Uriah the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shemaiah|strong=\"H8098\"* of|strong=\"H1121\"* Kiriath|strong=\"H7157\"* Jearim; and|strong=\"H1121\"* he|strong=\"H3068\"* prophesied|strong=\"H5012\"* against|strong=\"H5921\"* this|strong=\"H2063\"* city|strong=\"H5892\"* and|strong=\"H1121\"* against|strong=\"H5921\"* this|strong=\"H2063\"* land according|strong=\"H5921\"* to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Jeremiah|strong=\"H3414\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H8085\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, with|strong=\"H1697\"* all|strong=\"H3605\"* his|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* heard|strong=\"H8085\"* his|strong=\"H3605\"* words|strong=\"H1697\"*, the|strong=\"H3605\"* king|strong=\"H4428\"* sought|strong=\"H1245\"* to|strong=\"H4191\"* put|strong=\"H4191\"* him|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*; but|strong=\"H8085\"* when|strong=\"H8085\"* Uriah heard|strong=\"H8085\"* it|strong=\"H1245\"*, he|strong=\"H3605\"* was|strong=\"H1697\"* afraid|strong=\"H3372\"*, and|strong=\"H4428\"* fled|strong=\"H1272\"*, and|strong=\"H4428\"* went|strong=\"H4428\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 22, + "text": "Then|strong=\"H7971\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H7971\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* Elnathan the|strong=\"H7971\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Achbor|strong=\"H5907\"* and|strong=\"H1121\"* certain men|strong=\"H1121\"* with|strong=\"H4714\"* him|strong=\"H7971\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H5971\"* fetched Uriah out|strong=\"H3318\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"* and|strong=\"H1121\"* brought|strong=\"H3318\"* him|strong=\"H5221\"* to|strong=\"H3318\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H5221\"* king|strong=\"H4428\"*, who|strong=\"H5971\"* killed|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H3318\"* the|strong=\"H5221\"* sword|strong=\"H2719\"* and|strong=\"H1121\"* cast|strong=\"H7993\"* his|strong=\"H5221\"* dead|strong=\"H5038\"* body|strong=\"H5038\"* into|strong=\"H3318\"* the|strong=\"H5221\"* graves|strong=\"H6913\"* of|strong=\"H1121\"* the|strong=\"H5221\"* common|strong=\"H1121\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"H1961\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Ahikam the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"* was|strong=\"H1961\"* with|strong=\"H5971\"* Jeremiah|strong=\"H3414\"*, so|strong=\"H1961\"* that|strong=\"H5971\"* they|strong=\"H5971\"* didn’t give|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5414\"* people|strong=\"H5971\"* to|strong=\"H4191\"* put|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3068\"* the|strong=\"H3068\"* beginning|strong=\"H7225\"* of|strong=\"H1121\"* the|strong=\"H3068\"* reign|strong=\"H4467\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, this|strong=\"H2088\"* word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3068\"* me|strong=\"H5414\"*: “Make|strong=\"H6213\"* bonds|strong=\"H4147\"* and|strong=\"H3068\"* bars|strong=\"H4133\"*, and|strong=\"H3068\"* put|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5921\"* your|strong=\"H3068\"* neck|strong=\"H6677\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H7971\"* send|strong=\"H7971\"* them|strong=\"H7971\"* to|strong=\"H7971\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Edom, to|strong=\"H7971\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, to|strong=\"H7971\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H7971\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, to|strong=\"H7971\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Tyre|strong=\"H6865\"*, and|strong=\"H1121\"* to|strong=\"H7971\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Sidon|strong=\"H6721\"*, by|strong=\"H3027\"* the|strong=\"H7971\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H7971\"* messengers|strong=\"H4397\"* who|strong=\"H1121\"* come|strong=\"H3063\"* to|strong=\"H7971\"* Jerusalem|strong=\"H3389\"* to|strong=\"H7971\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 4, + "text": "Give|strong=\"H6680\"* them|strong=\"H6680\"* a|strong=\"H3068\"* command|strong=\"H6680\"* to|strong=\"H3478\"* their|strong=\"H3068\"* masters, saying, ‘Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, “You|strong=\"H6680\"* shall|strong=\"H3068\"* tell your|strong=\"H3068\"* masters:" + }, + { + "verseNum": 5, + "text": "‘I|strong=\"H5414\"* have|strong=\"H5869\"* made|strong=\"H6213\"* the|strong=\"H6440\"* earth, the|strong=\"H6440\"* men|strong=\"H1419\"*, and|strong=\"H1419\"* the|strong=\"H6440\"* animals that|strong=\"H5414\"* are|strong=\"H5869\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* earth by|strong=\"H5921\"* my|strong=\"H5414\"* great|strong=\"H1419\"* power|strong=\"H3581\"* and|strong=\"H1419\"* by|strong=\"H5921\"* my|strong=\"H5414\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*. I|strong=\"H5414\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H6213\"* whom|strong=\"H6440\"* it|strong=\"H5414\"* seems|strong=\"H5869\"* right|strong=\"H3474\"* to|strong=\"H6213\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"H6258\"* I|strong=\"H5414\"* have|strong=\"H1571\"* given|strong=\"H5414\"* all|strong=\"H3605\"* these|strong=\"H3605\"* lands|strong=\"H7704\"* into|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, my|strong=\"H5414\"* servant|strong=\"H5650\"*. I|strong=\"H5414\"* have|strong=\"H1571\"* also|strong=\"H1571\"* given|strong=\"H5414\"* the|strong=\"H3605\"* animals|strong=\"H2416\"* of|strong=\"H4428\"* the|strong=\"H3605\"* field|strong=\"H7704\"* to|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H5414\"* serve|strong=\"H5647\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 7, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* will|strong=\"H1471\"* serve|strong=\"H5647\"* him|strong=\"H5647\"*, his|strong=\"H3605\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* his|strong=\"H3605\"* son|strong=\"H1121\"*’s son|strong=\"H1121\"*, until|strong=\"H5704\"* the|strong=\"H3605\"* time|strong=\"H6256\"* of|strong=\"H1121\"* his|strong=\"H3605\"* own land comes|strong=\"H7227\"*. Then|strong=\"H1571\"* many|strong=\"H7227\"* nations|strong=\"H1471\"* and|strong=\"H1121\"* great|strong=\"H1419\"* kings|strong=\"H4428\"* will|strong=\"H1471\"* make|strong=\"H5647\"* him|strong=\"H5647\"* their|strong=\"H3605\"* bondservant." + }, + { + "verseNum": 8, + "text": "“‘“‘It|strong=\"H5414\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H1931\"* I|strong=\"H5414\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* the|strong=\"H5002\"* nation|strong=\"H1471\"* and|strong=\"H3068\"* the|strong=\"H5002\"* kingdom|strong=\"H4467\"* which|strong=\"H1931\"* will|strong=\"H3068\"* not|strong=\"H3808\"* serve|strong=\"H5647\"* the|strong=\"H5002\"* same|strong=\"H1931\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3068\"* that|strong=\"H1931\"* will|strong=\"H3068\"* not|strong=\"H3808\"* put|strong=\"H5414\"* their|strong=\"H3068\"* neck|strong=\"H6677\"* under|strong=\"H5921\"* the|strong=\"H5002\"* yoke|strong=\"H5923\"* of|strong=\"H4428\"* the|strong=\"H5002\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, ‘with|strong=\"H3068\"* the|strong=\"H5002\"* sword|strong=\"H2719\"*, with|strong=\"H3068\"* famine|strong=\"H7458\"*, and|strong=\"H3068\"* with|strong=\"H3068\"* pestilence|strong=\"H1698\"*, until|strong=\"H5704\"* I|strong=\"H5414\"* have|strong=\"H1961\"* consumed|strong=\"H8552\"* them|strong=\"H5414\"* by|strong=\"H3027\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H3808\"* as|strong=\"H1992\"* for|strong=\"H4428\"* you|strong=\"H3808\"*, don’t listen|strong=\"H8085\"* to|strong=\"H8085\"* your|strong=\"H8085\"* prophets|strong=\"H5030\"*, to|strong=\"H8085\"* your|strong=\"H8085\"* diviners|strong=\"H7080\"*, to|strong=\"H8085\"* your|strong=\"H8085\"* dreams|strong=\"H2472\"*, to|strong=\"H8085\"* your|strong=\"H8085\"* soothsayers|strong=\"H6049\"*, or|strong=\"H3808\"* to|strong=\"H8085\"* your|strong=\"H8085\"* sorcerers|strong=\"H3786\"*, who|strong=\"H5030\"* speak to|strong=\"H8085\"* you|strong=\"H3808\"*, saying, “You|strong=\"H3808\"* shall|strong=\"H4428\"* not|strong=\"H3808\"* serve|strong=\"H5647\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon;”" + }, + { + "verseNum": 10, + "text": "for|strong=\"H3588\"* they|strong=\"H1992\"* prophesy|strong=\"H5012\"* a|strong=\"H3068\"* lie|strong=\"H8267\"* to|strong=\"H5921\"* you|strong=\"H3588\"*, to|strong=\"H5921\"* remove|strong=\"H7368\"* you|strong=\"H3588\"* far|strong=\"H7368\"* from|strong=\"H5921\"* your|strong=\"H5921\"* land, so|strong=\"H4616\"* that|strong=\"H3588\"* I|strong=\"H3588\"* would drive|strong=\"H5080\"* you|strong=\"H3588\"* out|strong=\"H5080\"*, and|strong=\"H5012\"* you|strong=\"H3588\"* would perish." + }, + { + "verseNum": 11, + "text": "But|strong=\"H3068\"* the|strong=\"H5002\"* nation|strong=\"H1471\"* that|strong=\"H3068\"* brings their|strong=\"H3068\"* neck|strong=\"H6677\"* under|strong=\"H5921\"* the|strong=\"H5002\"* yoke|strong=\"H5923\"* of|strong=\"H4428\"* the|strong=\"H5002\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon and|strong=\"H3068\"* serves|strong=\"H5647\"* him|strong=\"H5921\"*, that|strong=\"H3068\"* nation|strong=\"H1471\"* I|strong=\"H5921\"* will|strong=\"H3068\"* let remain|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3068\"* own land,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; ‘and|strong=\"H3068\"* they|strong=\"H3068\"* will|strong=\"H3068\"* till|strong=\"H5647\"* it|strong=\"H5921\"* and|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H5921\"*.’”’”" + }, + { + "verseNum": 12, + "text": "I|strong=\"H1697\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* according to|strong=\"H1696\"* all|strong=\"H3605\"* these|strong=\"H1696\"* words|strong=\"H1697\"*, saying|strong=\"H1697\"*, “Bring your|strong=\"H3605\"* necks|strong=\"H6677\"* under|strong=\"H5647\"* the|strong=\"H3605\"* yoke|strong=\"H5923\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3063\"* serve|strong=\"H5647\"* him|strong=\"H5647\"* and|strong=\"H3063\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3063\"* live|strong=\"H2421\"*." + }, + { + "verseNum": 13, + "text": "Why|strong=\"H4100\"* will|strong=\"H3068\"* you|strong=\"H3808\"* die|strong=\"H4191\"*, you|strong=\"H3808\"* and|strong=\"H3068\"* your|strong=\"H3068\"* people|strong=\"H5971\"*, by|strong=\"H3068\"* the|strong=\"H5647\"* sword|strong=\"H2719\"*, by|strong=\"H3068\"* the|strong=\"H5647\"* famine|strong=\"H7458\"*, and|strong=\"H3068\"* by|strong=\"H3068\"* the|strong=\"H5647\"* pestilence|strong=\"H1698\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* concerning|strong=\"H3068\"* the|strong=\"H5647\"* nation|strong=\"H1471\"* that|strong=\"H5971\"* will|strong=\"H3068\"* not|strong=\"H3808\"* serve|strong=\"H5647\"* the|strong=\"H5647\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon?" + }, + { + "verseNum": 14, + "text": "Don’t listen|strong=\"H8085\"* to|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H8085\"* prophets|strong=\"H5030\"* who|strong=\"H5030\"* speak|strong=\"H1697\"* to|strong=\"H8085\"* you|strong=\"H3588\"*, saying|strong=\"H1697\"*, ‘You|strong=\"H3588\"* shall|strong=\"H4428\"* not|strong=\"H3808\"* serve|strong=\"H5647\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon;’ for|strong=\"H3588\"* they|strong=\"H1992\"* prophesy|strong=\"H5012\"* a|strong=\"H3068\"* lie|strong=\"H8267\"* to|strong=\"H8085\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* sent|strong=\"H7971\"* them|strong=\"H1992\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “but|strong=\"H3588\"* they|strong=\"H1992\"* prophesy|strong=\"H5012\"* falsely|strong=\"H8267\"* in|strong=\"H3068\"* my|strong=\"H3068\"* name|strong=\"H8034\"*; that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H3068\"* drive|strong=\"H5080\"* you|strong=\"H3588\"* out|strong=\"H7971\"*, and|strong=\"H3068\"* that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3068\"* perish, you|strong=\"H3588\"*, and|strong=\"H3068\"* the|strong=\"H5002\"* prophets|strong=\"H5030\"* who|strong=\"H3068\"* prophesy|strong=\"H5012\"* to|strong=\"H3068\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 16, + "text": "Also|strong=\"H3068\"* I|strong=\"H3588\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* to|strong=\"H1696\"* all|strong=\"H3605\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, saying|strong=\"H1697\"*, Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Don’t listen|strong=\"H8085\"* to|strong=\"H1696\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1004\"* your|strong=\"H3068\"* prophets|strong=\"H5030\"* who|strong=\"H3605\"* prophesy|strong=\"H5012\"* to|strong=\"H1696\"* you|strong=\"H3588\"*, saying|strong=\"H1697\"*, ‘Behold|strong=\"H2009\"*, the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* will|strong=\"H3068\"* now|strong=\"H6258\"* shortly|strong=\"H4120\"* be|strong=\"H1697\"* brought|strong=\"H7725\"* again|strong=\"H7725\"* from|strong=\"H7725\"* Babylon;’ for|strong=\"H3588\"* they|strong=\"H1992\"* prophesy|strong=\"H5012\"* a|strong=\"H3068\"* lie|strong=\"H8267\"* to|strong=\"H1696\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 17, + "text": "Don’t listen|strong=\"H8085\"* to|strong=\"H1961\"* them|strong=\"H1961\"*. Serve|strong=\"H5647\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H4428\"* live|strong=\"H2421\"*. Why|strong=\"H4100\"* should|strong=\"H4100\"* this|strong=\"H2063\"* city|strong=\"H5892\"* become|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H2723\"*?" + }, + { + "verseNum": 18, + "text": "But|strong=\"H3498\"* if|strong=\"H3426\"* they|strong=\"H1992\"* are|strong=\"H1992\"* prophets|strong=\"H5030\"*, and|strong=\"H3063\"* if|strong=\"H3426\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* is|strong=\"H3068\"* with|strong=\"H1004\"* them|strong=\"H1992\"*, let|strong=\"H4994\"* them|strong=\"H1992\"* now|strong=\"H4994\"* make|strong=\"H6293\"* intercession|strong=\"H6293\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, that|strong=\"H3068\"* the|strong=\"H3068\"* vessels|strong=\"H3627\"* which|strong=\"H3068\"* are|strong=\"H1992\"* left|strong=\"H3498\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, in|strong=\"H3068\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* at|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, don’t go|strong=\"H3068\"* to|strong=\"H3068\"* Babylon." + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*, concerning|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*, concerning|strong=\"H5921\"* the|strong=\"H5921\"* bases|strong=\"H4350\"*, and|strong=\"H3068\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H3068\"* the|strong=\"H5921\"* vessels|strong=\"H3627\"* that|strong=\"H3588\"* are|strong=\"H3068\"* left|strong=\"H3498\"* in|strong=\"H5921\"* this|strong=\"H2063\"* city|strong=\"H5892\"*," + }, + { + "verseNum": 20, + "text": "which|strong=\"H3063\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon didn’t take|strong=\"H3947\"* when|strong=\"H1121\"* he|strong=\"H3605\"* carried|strong=\"H1540\"* away|strong=\"H3947\"* captive|strong=\"H1540\"* Jeconiah|strong=\"H3204\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, from|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3389\"* Babylon, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nobles|strong=\"H2715\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*—" + }, + { + "verseNum": 21, + "text": "yes|strong=\"H3588\"*, Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* vessels|strong=\"H3627\"* that|strong=\"H3588\"* are|strong=\"H3478\"* left|strong=\"H3498\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3063\"* in|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* at|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*:" + }, + { + "verseNum": 22, + "text": "‘They|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H1961\"* carried|strong=\"H5927\"* to|strong=\"H5704\"* Babylon, and|strong=\"H3068\"* there|strong=\"H8033\"* they|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H1961\"*, until|strong=\"H5704\"* the|strong=\"H5002\"* day|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* visit|strong=\"H6485\"* them|strong=\"H7725\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; ‘then|strong=\"H1961\"* I|strong=\"H3117\"* will|strong=\"H3068\"* bring|strong=\"H7725\"* them|strong=\"H7725\"* up|strong=\"H5927\"*, and|strong=\"H3068\"* restore|strong=\"H7725\"* them|strong=\"H7725\"* to|strong=\"H5704\"* this|strong=\"H2088\"* place|strong=\"H4725\"*.’”" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "That|strong=\"H5971\"* same|strong=\"H1931\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* beginning|strong=\"H7225\"* of|strong=\"H1121\"* the|strong=\"H3605\"* reign|strong=\"H4467\"* of|strong=\"H1121\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* fourth|strong=\"H7243\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* fifth|strong=\"H2549\"* month|strong=\"H2320\"*, Hananiah|strong=\"H2608\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azzur|strong=\"H5809\"*, the|strong=\"H3605\"* prophet|strong=\"H5030\"*, who|strong=\"H3605\"* was|strong=\"H3068\"* of|strong=\"H1121\"* Gibeon|strong=\"H1391\"*, spoke to|strong=\"H3068\"* me|strong=\"H1961\"* in|strong=\"H8141\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* presence|strong=\"H5869\"* of|strong=\"H1121\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H1121\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying," + }, + { + "verseNum": 2, + "text": "“Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘I|strong=\"H3541\"* have|strong=\"H3068\"* broken|strong=\"H7665\"* the|strong=\"H3541\"* yoke|strong=\"H5923\"* of|strong=\"H4428\"* the|strong=\"H3541\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon." + }, + { + "verseNum": 3, + "text": "Within|strong=\"H1004\"* two|strong=\"H3947\"* full|strong=\"H3117\"* years|strong=\"H8141\"* I|strong=\"H3117\"* will|strong=\"H3068\"* bring|strong=\"H7725\"* again|strong=\"H7725\"* into|strong=\"H7725\"* this|strong=\"H2088\"* place|strong=\"H4725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* that|strong=\"H3605\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon took|strong=\"H3947\"* away|strong=\"H7725\"* from|strong=\"H4480\"* this|strong=\"H2088\"* place|strong=\"H4725\"* and|strong=\"H3068\"* carried|strong=\"H3068\"* to|strong=\"H7725\"* Babylon." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* this|strong=\"H2088\"* place|strong=\"H4725\"* Jeconiah|strong=\"H3204\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captives|strong=\"H1546\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, who|strong=\"H3605\"* went|strong=\"H3063\"* to|strong=\"H7725\"* Babylon,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; ‘for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* break|strong=\"H7665\"* the|strong=\"H3605\"* yoke|strong=\"H5923\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon.’”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H5975\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* Jeremiah|strong=\"H3414\"* said to|strong=\"H3068\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* Hananiah|strong=\"H2608\"* in|strong=\"H3068\"* the|strong=\"H3605\"* presence|strong=\"H5869\"* of|strong=\"H1004\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3605\"* presence|strong=\"H5869\"* of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* stood|strong=\"H5975\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*," + }, + { + "verseNum": 6, + "text": "even|strong=\"H3651\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* Jeremiah|strong=\"H3414\"* said|strong=\"H1697\"*, “Amen! May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* do|strong=\"H6213\"* so|strong=\"H3651\"*. May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* perform|strong=\"H6213\"* your|strong=\"H3068\"* words|strong=\"H1697\"* which|strong=\"H3068\"* you|strong=\"H3605\"* have|strong=\"H3068\"* prophesied|strong=\"H5012\"*, to|strong=\"H7725\"* bring|strong=\"H7725\"* again|strong=\"H7725\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1697\"* captives|strong=\"H1473\"*, from|strong=\"H7725\"* Babylon to|strong=\"H7725\"* this|strong=\"H2088\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 7, + "text": "Nevertheless listen|strong=\"H8085\"* now|strong=\"H4994\"* to|strong=\"H1696\"* this|strong=\"H2088\"* word|strong=\"H1697\"* that|strong=\"H5971\"* I|strong=\"H1697\"* speak|strong=\"H1696\"* in|strong=\"H8085\"* your|strong=\"H3605\"* ears, and|strong=\"H5971\"* in|strong=\"H8085\"* the|strong=\"H3605\"* ears of|strong=\"H1697\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*:" + }, + { + "verseNum": 8, + "text": "The|strong=\"H6440\"* prophets|strong=\"H5030\"* who|strong=\"H5030\"* have|strong=\"H1961\"* been|strong=\"H1961\"* before|strong=\"H6440\"* me|strong=\"H6440\"* and|strong=\"H1419\"* before|strong=\"H6440\"* you|strong=\"H6440\"* of|strong=\"H6440\"* old|strong=\"H5769\"* prophesied|strong=\"H5012\"* against|strong=\"H5921\"* many|strong=\"H7227\"* countries, and|strong=\"H1419\"* against|strong=\"H5921\"* great|strong=\"H1419\"* kingdoms|strong=\"H4467\"*, of|strong=\"H6440\"* war|strong=\"H4421\"*, of|strong=\"H6440\"* evil|strong=\"H7451\"*, and|strong=\"H1419\"* of|strong=\"H6440\"* pestilence|strong=\"H1698\"*." + }, + { + "verseNum": 9, + "text": "As|strong=\"H1697\"* for|strong=\"H7971\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* who|strong=\"H3068\"* prophesies|strong=\"H5012\"* of|strong=\"H3068\"* peace|strong=\"H7965\"*, when|strong=\"H7971\"* the|strong=\"H3068\"* word|strong=\"H1697\"* of|strong=\"H3068\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* happens, then|strong=\"H7971\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* will|strong=\"H3068\"* be|strong=\"H1697\"* known|strong=\"H3045\"*, that|strong=\"H3045\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* truly sent|strong=\"H7971\"* him|strong=\"H7971\"*.”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H3947\"* Hananiah|strong=\"H2608\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* took|strong=\"H3947\"* the|strong=\"H5921\"* bar from|strong=\"H5921\"* off|strong=\"H5921\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* Jeremiah|strong=\"H3414\"*’s neck|strong=\"H6677\"*, and|strong=\"H5030\"* broke|strong=\"H7665\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 11, + "text": "Hananiah|strong=\"H2608\"* spoke in|strong=\"H8141\"* the|strong=\"H3605\"* presence|strong=\"H5869\"* of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Even|strong=\"H5750\"* so|strong=\"H3541\"* I|strong=\"H3117\"* will|strong=\"H3068\"* break|strong=\"H7665\"* the|strong=\"H3605\"* yoke|strong=\"H5923\"* of|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon from|strong=\"H5921\"* off|strong=\"H5921\"* the|strong=\"H3605\"* neck|strong=\"H6677\"* of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* within|strong=\"H5921\"* two full|strong=\"H3117\"* years|strong=\"H8141\"*.’” Then|strong=\"H4428\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* Jeremiah|strong=\"H3414\"* went|strong=\"H3212\"* his|strong=\"H3605\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 12, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"*, after|strong=\"H5921\"* Hananiah|strong=\"H2608\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* had|strong=\"H3068\"* broken|strong=\"H7665\"* the|strong=\"H5921\"* bar from|strong=\"H5921\"* off|strong=\"H5921\"* the|strong=\"H5921\"* neck|strong=\"H6677\"* of|strong=\"H3068\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* Jeremiah|strong=\"H3414\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 13, + "text": "“Go|strong=\"H1980\"*, and|strong=\"H1980\"* tell Hananiah|strong=\"H2608\"*, saying, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “You|strong=\"H6213\"* have|strong=\"H3068\"* broken|strong=\"H7665\"* the|strong=\"H3541\"* bars|strong=\"H4133\"* of|strong=\"H3068\"* wood|strong=\"H6086\"*, but|strong=\"H3068\"* you|strong=\"H6213\"* have|strong=\"H3068\"* made|strong=\"H6213\"* in|strong=\"H1980\"* their|strong=\"H3068\"* place|strong=\"H8478\"* bars|strong=\"H4133\"* of|strong=\"H3068\"* iron|strong=\"H1270\"*.”" + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, “I|strong=\"H3588\"* have|strong=\"H3068\"* put|strong=\"H5414\"* a|strong=\"H3068\"* yoke|strong=\"H5923\"* of|strong=\"H4428\"* iron|strong=\"H1270\"* on|strong=\"H5921\"* the|strong=\"H3605\"* neck|strong=\"H6677\"* of|strong=\"H4428\"* all|strong=\"H3605\"* these|strong=\"H3605\"* nations|strong=\"H1471\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H3068\"* serve|strong=\"H5647\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon; and|strong=\"H3478\"* they|strong=\"H3588\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H5414\"*. I|strong=\"H3588\"* have|strong=\"H3068\"* also|strong=\"H1571\"* given|strong=\"H5414\"* him|strong=\"H5414\"* the|strong=\"H3605\"* animals|strong=\"H2416\"* of|strong=\"H4428\"* the|strong=\"H3605\"* field|strong=\"H7704\"*.”’”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H2088\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* Jeremiah|strong=\"H3414\"* said|strong=\"H8085\"* to|strong=\"H3068\"* Hananiah|strong=\"H2608\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"*, “Listen|strong=\"H8085\"*, Hananiah|strong=\"H2608\"*! Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* sent|strong=\"H7971\"* you|strong=\"H7971\"*, but|strong=\"H3808\"* you|strong=\"H7971\"* make|strong=\"H8085\"* this|strong=\"H2088\"* people|strong=\"H5971\"* trust in|strong=\"H5921\"* a|strong=\"H3068\"* lie|strong=\"H8267\"*." + }, + { + "verseNum": 16, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* send|strong=\"H7971\"* you|strong=\"H3588\"* away|strong=\"H7971\"* from|strong=\"H6440\"* off|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* earth. This|strong=\"H3651\"* year|strong=\"H8141\"* you|strong=\"H3588\"* will|strong=\"H3068\"* die|strong=\"H4191\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* rebellion|strong=\"H5627\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 17, + "text": "So|strong=\"H4191\"* Hananiah|strong=\"H2608\"* the|strong=\"H4191\"* prophet|strong=\"H5030\"* died|strong=\"H4191\"* the|strong=\"H4191\"* same|strong=\"H1931\"* year|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H4191\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*." + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H7971\"* these|strong=\"H3605\"* are|strong=\"H5971\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H3605\"* letter|strong=\"H5612\"* that|strong=\"H5971\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* sent|strong=\"H7971\"* from|strong=\"H7971\"* Jerusalem|strong=\"H3389\"* to|strong=\"H7971\"* the|strong=\"H3605\"* residue|strong=\"H3499\"* of|strong=\"H1697\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1697\"* the|strong=\"H3605\"* captivity|strong=\"H1473\"*, and|strong=\"H7971\"* to|strong=\"H7971\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, to|strong=\"H7971\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*, and|strong=\"H7971\"* to|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* whom|strong=\"H5971\"* Nebuchadnezzar|strong=\"H5019\"* had|strong=\"H3548\"* carried|strong=\"H1540\"* away|strong=\"H7971\"* captive|strong=\"H1540\"* from|strong=\"H7971\"* Jerusalem|strong=\"H3389\"* to|strong=\"H7971\"* Babylon," + }, + { + "verseNum": 2, + "text": "(after|strong=\"H3318\"* Jeconiah|strong=\"H3204\"* the|strong=\"H3318\"* king|strong=\"H4428\"*, the|strong=\"H3318\"* queen|strong=\"H1377\"* mother|strong=\"H1377\"*, the|strong=\"H3318\"* eunuchs|strong=\"H5631\"*, the|strong=\"H3318\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*, the|strong=\"H3318\"* craftsmen|strong=\"H2796\"*, and|strong=\"H3063\"* the|strong=\"H3318\"* smiths|strong=\"H4525\"* had|strong=\"H4428\"* departed|strong=\"H3318\"* from|strong=\"H3318\"* Jerusalem|strong=\"H3389\"*)," + }, + { + "verseNum": 3, + "text": "by|strong=\"H3027\"* the|strong=\"H7971\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Elasah the|strong=\"H7971\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"* and|strong=\"H1121\"* Gemariah|strong=\"H1587\"* the|strong=\"H7971\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*, (whom Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* Babylon to|strong=\"H7971\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon). It|strong=\"H7971\"* said:" + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"* to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captives|strong=\"H1473\"* whom I|strong=\"H3541\"* have|strong=\"H3068\"* caused to|strong=\"H3478\"* be|strong=\"H3068\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* from|strong=\"H3478\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3478\"* Babylon:" + }, + { + "verseNum": 5, + "text": "“Build|strong=\"H1129\"* houses|strong=\"H1004\"* and|strong=\"H1004\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* them|strong=\"H3427\"*. Plant|strong=\"H5193\"* gardens|strong=\"H1593\"* and|strong=\"H1004\"* eat their|strong=\"H3427\"* fruit|strong=\"H6529\"*." + }, + { + "verseNum": 6, + "text": "Take|strong=\"H3947\"* wives and|strong=\"H1121\"* father|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* daughters|strong=\"H1323\"*. Take|strong=\"H3947\"* wives for|strong=\"H1121\"* your|strong=\"H5414\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* give|strong=\"H5414\"* your|strong=\"H5414\"* daughters|strong=\"H1323\"* to|strong=\"H5414\"* husbands, that|strong=\"H5414\"* they|strong=\"H8033\"* may|strong=\"H1121\"* bear|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* daughters|strong=\"H1323\"*. Multiply|strong=\"H7235\"* there|strong=\"H8033\"*, and|strong=\"H1121\"* don’t be|strong=\"H1121\"* diminished|strong=\"H4591\"*." + }, + { + "verseNum": 7, + "text": "Seek|strong=\"H1875\"* the|strong=\"H3588\"* peace|strong=\"H7965\"* of|strong=\"H3068\"* the|strong=\"H3588\"* city|strong=\"H5892\"* where|strong=\"H8033\"* I|strong=\"H3588\"* have|strong=\"H1961\"* caused|strong=\"H1961\"* you|strong=\"H3588\"* to|strong=\"H3068\"* be|strong=\"H1961\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"*, and|strong=\"H3068\"* pray|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* for|strong=\"H3588\"* it|strong=\"H3588\"*; for|strong=\"H3588\"* in|strong=\"H3068\"* its|strong=\"H3588\"* peace|strong=\"H7965\"* you|strong=\"H3588\"* will|strong=\"H3068\"* have|strong=\"H1961\"* peace|strong=\"H7965\"*.”" + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*: “Don’t let your|strong=\"H3068\"* prophets|strong=\"H5030\"* who|strong=\"H3068\"* are|strong=\"H3478\"* among|strong=\"H7130\"* you|strong=\"H3588\"* and|strong=\"H3478\"* your|strong=\"H3068\"* diviners|strong=\"H7080\"* deceive|strong=\"H5377\"* you|strong=\"H3588\"*. Don’t listen|strong=\"H8085\"* to|strong=\"H3478\"* your|strong=\"H3068\"* dreams|strong=\"H2472\"* which|strong=\"H3068\"* you|strong=\"H3588\"* cause to|strong=\"H3478\"* be|strong=\"H3068\"* dreamed|strong=\"H2492\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* they|strong=\"H1992\"* prophesy|strong=\"H5012\"* falsely|strong=\"H8267\"* to|strong=\"H3068\"* you|strong=\"H3588\"* in|strong=\"H3068\"* my|strong=\"H3068\"* name|strong=\"H8034\"*. I|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* sent|strong=\"H7971\"* them|strong=\"H1992\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “After|strong=\"H5921\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"* are|strong=\"H1697\"* accomplished|strong=\"H4390\"* for|strong=\"H3588\"* Babylon, I|strong=\"H3588\"* will|strong=\"H3068\"* visit|strong=\"H6485\"* you|strong=\"H3588\"* and|strong=\"H6965\"* perform|strong=\"H6965\"* my|strong=\"H3068\"* good|strong=\"H2896\"* word|strong=\"H1697\"* toward|strong=\"H5921\"* you|strong=\"H3588\"*, in|strong=\"H8141\"* causing you|strong=\"H3588\"* to|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* this|strong=\"H2088\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* the|strong=\"H5002\"* thoughts|strong=\"H4284\"* that|strong=\"H3588\"* I|strong=\"H3588\"* think|strong=\"H2803\"* toward|strong=\"H5921\"* you|strong=\"H3588\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “thoughts|strong=\"H4284\"* of|strong=\"H3068\"* peace|strong=\"H7965\"*, and|strong=\"H3068\"* not|strong=\"H3808\"* of|strong=\"H3068\"* evil|strong=\"H7451\"*, to|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"* hope|strong=\"H8615\"* and|strong=\"H3068\"* a|strong=\"H3068\"* future." + }, + { + "verseNum": 12, + "text": "You|strong=\"H7121\"* shall|strong=\"H8085\"* call|strong=\"H7121\"* on|strong=\"H1980\"* me|strong=\"H7121\"*, and|strong=\"H1980\"* you|strong=\"H7121\"* shall|strong=\"H8085\"* go|strong=\"H1980\"* and|strong=\"H1980\"* pray|strong=\"H6419\"* to|strong=\"H1980\"* me|strong=\"H7121\"*, and|strong=\"H1980\"* I|strong=\"H8085\"* will|strong=\"H8085\"* listen|strong=\"H8085\"* to|strong=\"H1980\"* you|strong=\"H7121\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H3588\"* shall|strong=\"H3824\"* seek|strong=\"H1245\"* me|strong=\"H4672\"* and|strong=\"H3824\"* find|strong=\"H4672\"* me|strong=\"H4672\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* search|strong=\"H1875\"* for|strong=\"H3588\"* me|strong=\"H4672\"* with|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3605\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H4672\"* will|strong=\"H3068\"* be|strong=\"H3068\"* found|strong=\"H4672\"* by|strong=\"H3068\"* you|strong=\"H3605\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “and|strong=\"H3068\"* I|strong=\"H4672\"* will|strong=\"H3068\"* turn|strong=\"H7725\"* again|strong=\"H7725\"* your|strong=\"H3068\"* captivity|strong=\"H7622\"*, and|strong=\"H3068\"* I|strong=\"H4672\"* will|strong=\"H3068\"* gather|strong=\"H6908\"* you|strong=\"H3605\"* from|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*, and|strong=\"H3068\"* from|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* places|strong=\"H4725\"* where|strong=\"H8033\"* I|strong=\"H4672\"* have|strong=\"H3068\"* driven|strong=\"H5080\"* you|strong=\"H3605\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. “I|strong=\"H4672\"* will|strong=\"H3068\"* bring|strong=\"H7725\"* you|strong=\"H3605\"* again|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3605\"* place|strong=\"H4725\"* from|strong=\"H7725\"* where|strong=\"H8033\"* I|strong=\"H4672\"* caused you|strong=\"H3605\"* to|strong=\"H7725\"* be|strong=\"H3068\"* carried|strong=\"H1540\"* away|strong=\"H7725\"* captive|strong=\"H1540\"*.”" + }, + { + "verseNum": 15, + "text": "Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* said, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* raised|strong=\"H6965\"* us|strong=\"H3588\"* up|strong=\"H6965\"* prophets|strong=\"H5030\"* in|strong=\"H3068\"* Babylon,”" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"* who|strong=\"H3605\"* sits|strong=\"H3427\"* on|strong=\"H3427\"* David|strong=\"H1732\"*’s throne|strong=\"H3678\"*, and|strong=\"H3068\"* concerning|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, your|strong=\"H3068\"* brothers who|strong=\"H3605\"* haven’t gone|strong=\"H3318\"* with|strong=\"H3068\"* you|strong=\"H3588\"* into|strong=\"H3318\"* captivity|strong=\"H1473\"*," + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* send|strong=\"H7971\"* on|strong=\"H3068\"* them|strong=\"H5414\"* the|strong=\"H5414\"* sword|strong=\"H2719\"*, the|strong=\"H5414\"* famine|strong=\"H7458\"*, and|strong=\"H3068\"* the|strong=\"H5414\"* pestilence|strong=\"H1698\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* make|strong=\"H5414\"* them|strong=\"H5414\"* like|strong=\"H3808\"* rotten figs|strong=\"H8384\"* that|strong=\"H3068\"* can|strong=\"H3808\"*’t be|strong=\"H3808\"* eaten, they|strong=\"H3068\"* are|strong=\"H3068\"* so|strong=\"H3541\"* bad|strong=\"H7455\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H5414\"* will|strong=\"H1471\"* pursue|strong=\"H7291\"* after|strong=\"H7291\"* them|strong=\"H5414\"* with|strong=\"H3605\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, with|strong=\"H3605\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*, and|strong=\"H2719\"* with|strong=\"H3605\"* the|strong=\"H3605\"* pestilence|strong=\"H1698\"*, and|strong=\"H2719\"* will|strong=\"H1471\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5414\"* be|strong=\"H1471\"* tossed back and|strong=\"H2719\"* forth|strong=\"H5414\"* among|strong=\"H2781\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3605\"* the|strong=\"H3605\"* earth, to|strong=\"H5414\"* be|strong=\"H1471\"* an|strong=\"H5414\"* object|strong=\"H8047\"* of|strong=\"H3605\"* horror|strong=\"H8047\"*, an|strong=\"H5414\"* astonishment|strong=\"H8047\"*, a|strong=\"H3068\"* hissing|strong=\"H8322\"*, and|strong=\"H2719\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* among|strong=\"H2781\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* I|strong=\"H5414\"* have|strong=\"H1471\"* driven|strong=\"H5080\"* them|strong=\"H5414\"*," + }, + { + "verseNum": 19, + "text": "because|strong=\"H8478\"* they|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* my|strong=\"H8085\"* words|strong=\"H1697\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “with|strong=\"H3068\"* which|strong=\"H3068\"* I|strong=\"H1697\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* them|strong=\"H7971\"* my|strong=\"H8085\"* servants|strong=\"H5650\"* the|strong=\"H5002\"* prophets|strong=\"H5030\"*, rising|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H3068\"* sending|strong=\"H7971\"* them|strong=\"H7971\"*; but|strong=\"H3808\"* you|strong=\"H7971\"* would|strong=\"H3068\"* not|strong=\"H3808\"* hear|strong=\"H8085\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 20, + "text": "Hear|strong=\"H8085\"* therefore|strong=\"H7971\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* captives|strong=\"H1473\"* whom I|strong=\"H1697\"* have|strong=\"H3068\"* sent|strong=\"H7971\"* away|strong=\"H7971\"* from|strong=\"H8085\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3068\"* Babylon." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"* concerning|strong=\"H3068\"* Ahab the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kolaiah|strong=\"H6964\"*, and|strong=\"H1121\"* concerning|strong=\"H3068\"* Zedekiah|strong=\"H6667\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maaseiah|strong=\"H4641\"*, who|strong=\"H3068\"* prophesy|strong=\"H5012\"* a|strong=\"H3068\"* lie|strong=\"H8267\"* to|strong=\"H3478\"* you|strong=\"H5414\"* in|strong=\"H3478\"* my|strong=\"H5414\"* name|strong=\"H8034\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon; and|strong=\"H1121\"* he|strong=\"H3068\"* will|strong=\"H3068\"* kill|strong=\"H5221\"* them|strong=\"H5414\"* before|strong=\"H5869\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 22, + "text": "A|strong=\"H3068\"* curse|strong=\"H7045\"* will|strong=\"H3068\"* be|strong=\"H3068\"* taken|strong=\"H3947\"* up|strong=\"H7760\"* about|strong=\"H4428\"* them|strong=\"H1992\"* by|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captives|strong=\"H1546\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* who|strong=\"H3605\"* are|strong=\"H1992\"* in|strong=\"H3068\"* Babylon, saying, ‘Yahweh|strong=\"H3068\"* make|strong=\"H7760\"* you|strong=\"H3605\"* like|strong=\"H1992\"* Zedekiah|strong=\"H6667\"* and|strong=\"H3063\"* like|strong=\"H1992\"* Ahab, whom|strong=\"H1992\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon roasted|strong=\"H7033\"* in|strong=\"H3068\"* the|strong=\"H3605\"* fire;’" + }, + { + "verseNum": 23, + "text": "because|strong=\"H3282\"* they|strong=\"H3068\"* have|strong=\"H3068\"* done|strong=\"H6213\"* foolish things|strong=\"H1697\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* have|strong=\"H3068\"* committed|strong=\"H6213\"* adultery|strong=\"H5003\"* with|strong=\"H3068\"* their|strong=\"H3068\"* neighbors|strong=\"H7453\"*’ wives, and|strong=\"H3478\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* words|strong=\"H1697\"* in|strong=\"H3478\"* my|strong=\"H3068\"* name|strong=\"H8034\"* falsely|strong=\"H8267\"*, which|strong=\"H3068\"* I|strong=\"H1697\"* didn’t command|strong=\"H6680\"* them|strong=\"H6213\"*. I|strong=\"H1697\"* am|strong=\"H3068\"* he|strong=\"H6213\"* who|strong=\"H3068\"* knows|strong=\"H3045\"*, and|strong=\"H3478\"* am|strong=\"H3068\"* witness|strong=\"H5707\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 24, + "text": "Concerning Shemaiah|strong=\"H8098\"* the|strong=\"H8098\"* Nehelamite|strong=\"H5161\"* you shall speak, saying," + }, + { + "verseNum": 25, + "text": "“Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘Because|strong=\"H3282\"* you|strong=\"H3605\"* have|strong=\"H3068\"* sent|strong=\"H7971\"* letters|strong=\"H5612\"* in|strong=\"H3478\"* your|strong=\"H3068\"* own|strong=\"H3548\"* name|strong=\"H8034\"* to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H5971\"* at|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* Zephaniah|strong=\"H6846\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maaseiah|strong=\"H4641\"*, the|strong=\"H3605\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, saying," + }, + { + "verseNum": 26, + "text": "“Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H5414\"* you|strong=\"H5414\"* priest|strong=\"H3548\"* in|strong=\"H3068\"* the|strong=\"H3605\"* place|strong=\"H8478\"* of|strong=\"H1004\"* Jehoiada|strong=\"H3077\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*, that|strong=\"H3605\"* there|strong=\"H1961\"* may|strong=\"H1961\"* be|strong=\"H1961\"* officers|strong=\"H6496\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, for|strong=\"H8478\"* every|strong=\"H3605\"* man|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3068\"* crazy and|strong=\"H3068\"* makes|strong=\"H5414\"* himself|strong=\"H3068\"* a|strong=\"H3068\"* prophet|strong=\"H5012\"*, that|strong=\"H3605\"* you|strong=\"H5414\"* should|strong=\"H3068\"* put|strong=\"H5414\"* him|strong=\"H5414\"* in|strong=\"H3068\"* the|strong=\"H3605\"* stocks|strong=\"H4115\"* and|strong=\"H3068\"* in|strong=\"H3068\"* shackles." + }, + { + "verseNum": 27, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, why|strong=\"H4100\"* have|strong=\"H3808\"* you|strong=\"H3808\"* not|strong=\"H3808\"* rebuked|strong=\"H1605\"* Jeremiah|strong=\"H3414\"* of|strong=\"H3414\"* Anathoth|strong=\"H6069\"*, who|strong=\"H4100\"* makes himself|strong=\"H3808\"* a|strong=\"H3068\"* prophet|strong=\"H5012\"* to|strong=\"H3808\"* you|strong=\"H3808\"*," + }, + { + "verseNum": 28, + "text": "because|strong=\"H3588\"* he|strong=\"H1931\"* has|strong=\"H3588\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* us|strong=\"H5921\"* in|strong=\"H3427\"* Babylon, saying, The|strong=\"H5921\"* captivity is|strong=\"H1931\"* long|strong=\"H7971\"*. Build|strong=\"H1129\"* houses|strong=\"H1004\"*, and|strong=\"H7971\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* them|strong=\"H5921\"*. Plant|strong=\"H5193\"* gardens|strong=\"H1593\"*, and|strong=\"H7971\"* eat their|strong=\"H5921\"* fruit|strong=\"H6529\"*?”’”" + }, + { + "verseNum": 29, + "text": "Zephaniah|strong=\"H6846\"* the|strong=\"H7121\"* priest|strong=\"H3548\"* read|strong=\"H7121\"* this|strong=\"H2088\"* letter|strong=\"H5612\"* in|strong=\"H7121\"* the|strong=\"H7121\"* hearing of|strong=\"H5612\"* Jeremiah|strong=\"H3414\"* the|strong=\"H7121\"* prophet|strong=\"H5030\"*." + }, + { + "verseNum": 30, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 31, + "text": "“Send|strong=\"H7971\"* to|strong=\"H3068\"* all|strong=\"H3605\"* of|strong=\"H3068\"* the|strong=\"H3605\"* captives|strong=\"H1473\"*, saying, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* Shemaiah|strong=\"H8098\"* the|strong=\"H3605\"* Nehelamite|strong=\"H5161\"*: “Because|strong=\"H5921\"* Shemaiah|strong=\"H8098\"* has|strong=\"H3068\"* prophesied|strong=\"H5012\"* to|strong=\"H3068\"* you|strong=\"H3605\"*, and|strong=\"H3068\"* I|strong=\"H3541\"* didn’t send|strong=\"H7971\"* him|strong=\"H5921\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* caused you|strong=\"H3605\"* to|strong=\"H3068\"* trust in|strong=\"H5921\"* a|strong=\"H3068\"* lie|strong=\"H8267\"*,”" + }, + { + "verseNum": 32, + "text": "therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*, “Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* Shemaiah|strong=\"H8098\"* the|strong=\"H5002\"* Nehelamite|strong=\"H5161\"* and|strong=\"H3068\"* his|strong=\"H3068\"* offspring|strong=\"H2233\"*. He|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* have|strong=\"H1961\"* a|strong=\"H3068\"* man|strong=\"H2896\"* to|strong=\"H1696\"* dwell|strong=\"H3427\"* among|strong=\"H8432\"* this|strong=\"H2088\"* people|strong=\"H5971\"*. He|strong=\"H3588\"* won’t see|strong=\"H7200\"* the|strong=\"H5002\"* good|strong=\"H2896\"* that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H1696\"* my|strong=\"H3068\"* people|strong=\"H5971\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* rebellion|strong=\"H5627\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*.”’”" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* word|strong=\"H1697\"* that|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘Write|strong=\"H3789\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* that|strong=\"H3605\"* I|strong=\"H3541\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3605\"* in|strong=\"H3478\"* a|strong=\"H3068\"* book|strong=\"H5612\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H7725\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, ‘that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* reverse|strong=\"H7725\"* the|strong=\"H5002\"* captivity|strong=\"H7622\"* of|strong=\"H3068\"* my|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. ‘I|strong=\"H3588\"* will|strong=\"H3068\"* cause|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H5002\"* land that|strong=\"H3588\"* I|strong=\"H3588\"* gave|strong=\"H5414\"* to|strong=\"H7725\"* their|strong=\"H3068\"* fathers, and|strong=\"H3063\"* they|strong=\"H3588\"* will|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H5414\"*.’”" + }, + { + "verseNum": 4, + "text": "These|strong=\"H1696\"* are|strong=\"H3478\"* the|strong=\"H3068\"* words|strong=\"H1697\"* that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* concerning|strong=\"H1697\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* concerning|strong=\"H1697\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 6, + "text": "Ask|strong=\"H7592\"* now|strong=\"H4994\"*, and|strong=\"H3027\"* see|strong=\"H7200\"* whether|strong=\"H7200\"* a|strong=\"H3068\"* man|strong=\"H1397\"* travails with|strong=\"H5921\"* child|strong=\"H3205\"*." + }, + { + "verseNum": 7, + "text": "Alas|strong=\"H1945\"*, for|strong=\"H3588\"* that|strong=\"H3588\"* day|strong=\"H3117\"* is|strong=\"H1931\"* great|strong=\"H1419\"*, so|strong=\"H4480\"* that|strong=\"H3588\"* none|strong=\"H4480\"* is|strong=\"H1931\"* like|strong=\"H3644\"* it|strong=\"H1931\"*!" + }, + { + "verseNum": 8, + "text": "It|strong=\"H1931\"* will|strong=\"H3068\"* come|strong=\"H1961\"* to|strong=\"H3068\"* pass|strong=\"H1961\"* in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, that|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3068\"* break|strong=\"H7665\"* his|strong=\"H3068\"* yoke|strong=\"H5923\"* from|strong=\"H5921\"* off|strong=\"H5921\"* your|strong=\"H3068\"* neck|strong=\"H6677\"*," + }, + { + "verseNum": 9, + "text": "but|strong=\"H1992\"* they|strong=\"H1992\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H3588\"* don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"*, O|strong=\"H3068\"* Jacob|strong=\"H3290\"* my|strong=\"H3068\"* servant|strong=\"H5650\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* with|strong=\"H3068\"* you|strong=\"H3588\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* save|strong=\"H3467\"* you|strong=\"H3588\"*;" + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 13, + "text": "There|strong=\"H1779\"* is|strong=\"H1779\"* no one to|strong=\"H8585\"* plead|strong=\"H1777\"* your|strong=\"H1777\"* cause|strong=\"H1779\"*," + }, + { + "verseNum": 14, + "text": "All|strong=\"H3605\"* your|strong=\"H3605\"* lovers have|strong=\"H5771\"* forgotten|strong=\"H7911\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 15, + "text": "Why|strong=\"H4100\"* do|strong=\"H6213\"* you|strong=\"H5921\"* cry|strong=\"H2199\"* over|strong=\"H5921\"* your|strong=\"H5921\"* injury|strong=\"H7667\"*?" + }, + { + "verseNum": 16, + "text": "Therefore|strong=\"H3651\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* devour you|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* devoured." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* restore|strong=\"H5927\"* health to|strong=\"H3068\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 19, + "text": "Thanksgiving|strong=\"H8426\"* will|strong=\"H3808\"* proceed|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H6963\"* them|strong=\"H1992\"*" + }, + { + "verseNum": 20, + "text": "Their|strong=\"H3605\"* children|strong=\"H1121\"* also|strong=\"H1121\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* before|strong=\"H6440\"*," + }, + { + "verseNum": 21, + "text": "Their|strong=\"H3068\"* prince will|strong=\"H3068\"* be|strong=\"H1961\"* one|strong=\"H2088\"* of|strong=\"H3068\"* them|strong=\"H7126\"*," + }, + { + "verseNum": 22, + "text": "“You|strong=\"H5971\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* my|strong=\"H1961\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 23, + "text": "Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s storm|strong=\"H5591\"*, his|strong=\"H3068\"* wrath|strong=\"H2534\"*, has|strong=\"H3068\"* gone|strong=\"H3318\"* out|strong=\"H3318\"*," + }, + { + "verseNum": 24, + "text": "The|strong=\"H6213\"* fierce|strong=\"H2740\"* anger|strong=\"H2740\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* return|strong=\"H7725\"* until|strong=\"H5704\"* he|strong=\"H3117\"* has|strong=\"H3068\"* accomplished|strong=\"H6213\"*," + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "“At|strong=\"H3478\"* that|strong=\"H5971\"* time|strong=\"H6256\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “I|strong=\"H6256\"* will|strong=\"H3068\"* be|strong=\"H1961\"* the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* they|strong=\"H1992\"* will|strong=\"H3068\"* be|strong=\"H1961\"* my|strong=\"H3605\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “The|strong=\"H3541\"* people|strong=\"H5971\"* who|strong=\"H5971\"* survive|strong=\"H8300\"* the|strong=\"H3541\"* sword|strong=\"H2719\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H1980\"* the|strong=\"H3541\"* wilderness|strong=\"H4057\"*; even|strong=\"H3068\"* Israel|strong=\"H3478\"*, when|strong=\"H1980\"* I|strong=\"H3541\"* went|strong=\"H1980\"* to|strong=\"H1980\"* cause|strong=\"H5971\"* him|strong=\"H4672\"* to|strong=\"H1980\"* rest|strong=\"H7280\"*.”" + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* of|strong=\"H3068\"* old|strong=\"H5769\"* to|strong=\"H3068\"* me|strong=\"H7200\"*, saying," + }, + { + "verseNum": 4, + "text": "I|strong=\"H3478\"* will|strong=\"H3478\"* build|strong=\"H1129\"* you|strong=\"H1129\"* again|strong=\"H5750\"*," + }, + { + "verseNum": 5, + "text": "Again|strong=\"H5750\"* you|strong=\"H2022\"* will|strong=\"H2022\"* plant|strong=\"H5193\"* vineyards|strong=\"H3754\"* on|strong=\"H2022\"* the|strong=\"H2490\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* there|strong=\"H3426\"* will|strong=\"H3068\"* be|strong=\"H3426\"* a|strong=\"H3068\"* day|strong=\"H3117\"* that|strong=\"H3588\"* the|strong=\"H3588\"* watchmen|strong=\"H5341\"* on|strong=\"H3117\"* the|strong=\"H3588\"* hills|strong=\"H2022\"* of|strong=\"H3068\"* Ephraim cry|strong=\"H7121\"*," + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 8, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H6828\"* bring|strong=\"H7725\"* them|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H3205\"* north|strong=\"H6828\"* country," + }, + { + "verseNum": 9, + "text": "They|strong=\"H3588\"* will|strong=\"H1961\"* come|strong=\"H1961\"* with|strong=\"H3212\"* weeping|strong=\"H1065\"*." + }, + { + "verseNum": 10, + "text": "“Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, you|strong=\"H5046\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* ransomed|strong=\"H6299\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 12, + "text": "They|strong=\"H3068\"* will|strong=\"H3068\"* come|strong=\"H1961\"* and|strong=\"H1121\"* sing|strong=\"H7442\"* in|strong=\"H5921\"* the|strong=\"H5921\"* height|strong=\"H4791\"* of|strong=\"H1121\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 13, + "text": "Then|strong=\"H5162\"* the|strong=\"H2015\"* virgin|strong=\"H1330\"* will|strong=\"H2205\"* rejoice|strong=\"H8055\"* in|strong=\"H8055\"* the|strong=\"H2015\"* dance|strong=\"H4234\"*," + }, + { + "verseNum": 14, + "text": "I|strong=\"H5315\"* will|strong=\"H3068\"* satiate|strong=\"H7301\"* the|strong=\"H5002\"* soul|strong=\"H5315\"* of|strong=\"H3068\"* the|strong=\"H5002\"* priests|strong=\"H3548\"* with|strong=\"H7646\"* fatness|strong=\"H1880\"*," + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*:" + }, + { + "verseNum": 17, + "text": "There|strong=\"H3426\"* is|strong=\"H3068\"* hope|strong=\"H8615\"* for|strong=\"H3068\"* your|strong=\"H3068\"* latter end,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "“I|strong=\"H3588\"* have|strong=\"H3068\"* surely|strong=\"H3588\"* heard|strong=\"H8085\"* Ephraim grieving|strong=\"H5110\"* thus|strong=\"H3808\"*," + }, + { + "verseNum": 19, + "text": "Surely|strong=\"H3588\"* after|strong=\"H5921\"* that|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H1571\"* turned|strong=\"H7725\"*." + }, + { + "verseNum": 20, + "text": "Is|strong=\"H3068\"* Ephraim my|strong=\"H3068\"* dear|strong=\"H3357\"* son|strong=\"H1121\"*?" + }, + { + "verseNum": 21, + "text": "“Set|strong=\"H7760\"* up|strong=\"H7760\"* road|strong=\"H1870\"* signs." + }, + { + "verseNum": 22, + "text": "How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H3068\"* you|strong=\"H3588\"* go|strong=\"H5437\"* here|strong=\"H5704\"* and|strong=\"H3068\"* there|strong=\"H2559\"*," + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: “Yet|strong=\"H5750\"* again|strong=\"H7725\"* they|strong=\"H3068\"* will|strong=\"H3068\"* use this|strong=\"H2088\"* speech|strong=\"H1697\"* in|strong=\"H3478\"* the|strong=\"H3541\"* land|strong=\"H5116\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* in|strong=\"H3478\"* its|strong=\"H7725\"* cities|strong=\"H5892\"*, when|strong=\"H7725\"* I|strong=\"H3541\"* reverse|strong=\"H7725\"* their|strong=\"H3068\"* captivity|strong=\"H7622\"*: ‘Yahweh|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H7725\"*, habitation|strong=\"H5116\"* of|strong=\"H3068\"* righteousness|strong=\"H6664\"*, mountain|strong=\"H2022\"* of|strong=\"H3068\"* holiness|strong=\"H6944\"*.’" + }, + { + "verseNum": 24, + "text": "Judah|strong=\"H3063\"* and|strong=\"H3063\"* all|strong=\"H3605\"* its|strong=\"H3605\"* cities|strong=\"H5892\"* will|strong=\"H5892\"* dwell|strong=\"H3427\"* therein|strong=\"H3427\"* together|strong=\"H3162\"*, the|strong=\"H3605\"* farmers, and|strong=\"H3063\"* those|strong=\"H3605\"* who|strong=\"H3605\"* go|strong=\"H5265\"* about|strong=\"H5892\"* with|strong=\"H3427\"* flocks|strong=\"H5739\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3605\"* satiated|strong=\"H7301\"* the|strong=\"H3605\"* weary|strong=\"H5889\"* soul|strong=\"H5315\"*, and|strong=\"H5315\"* I|strong=\"H3588\"* have|strong=\"H3605\"* replenished|strong=\"H4390\"* every|strong=\"H3605\"* sorrowful|strong=\"H1669\"* soul|strong=\"H5315\"*.”" + }, + { + "verseNum": 26, + "text": "On|strong=\"H5921\"* this|strong=\"H2063\"* I|strong=\"H5921\"* awakened, and|strong=\"H7200\"* saw|strong=\"H7200\"*; and|strong=\"H7200\"* my|strong=\"H7200\"* sleep|strong=\"H8142\"* was|strong=\"H8142\"* sweet|strong=\"H6149\"* to|strong=\"H5921\"* me|strong=\"H7200\"*." + }, + { + "verseNum": 27, + "text": "“Behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H3478\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3068\"* sow|strong=\"H2232\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* with|strong=\"H1004\"* the|strong=\"H5002\"* seed|strong=\"H2233\"* of|strong=\"H1004\"* man and|strong=\"H3063\"* with|strong=\"H1004\"* the|strong=\"H5002\"* seed|strong=\"H2233\"* of|strong=\"H1004\"* animal." + }, + { + "verseNum": 28, + "text": "It|strong=\"H5921\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H3068\"*, like|strong=\"H1961\"* as|strong=\"H1961\"* I|strong=\"H5921\"* have|strong=\"H1961\"* watched|strong=\"H8245\"* over|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H3068\"* pluck|strong=\"H5428\"* up|strong=\"H1129\"* and|strong=\"H3068\"* to|strong=\"H3068\"* break|strong=\"H2040\"* down|strong=\"H5422\"* and|strong=\"H3068\"* to|strong=\"H3068\"* overthrow|strong=\"H2040\"* and|strong=\"H3068\"* to|strong=\"H3068\"* destroy|strong=\"H5422\"* and|strong=\"H3068\"* to|strong=\"H3068\"* afflict|strong=\"H7489\"*, so|strong=\"H3651\"* I|strong=\"H5921\"* will|strong=\"H3068\"* watch|strong=\"H8245\"* over|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H3068\"* build|strong=\"H1129\"* and|strong=\"H3068\"* to|strong=\"H3068\"* plant|strong=\"H5193\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 29, + "text": "“In|strong=\"H3117\"* those|strong=\"H1992\"* days|strong=\"H3117\"* they|strong=\"H1992\"* will|strong=\"H1121\"* say no|strong=\"H3808\"* more|strong=\"H5750\"*," + }, + { + "verseNum": 30, + "text": "But|strong=\"H3588\"* everyone|strong=\"H3605\"* will|strong=\"H5771\"* die|strong=\"H4191\"* for|strong=\"H3588\"* his|strong=\"H3605\"* own iniquity|strong=\"H5771\"*. Every|strong=\"H3605\"* man|strong=\"H4191\"* who|strong=\"H3605\"* eats the|strong=\"H3605\"* sour|strong=\"H1155\"* grapes|strong=\"H1155\"*, his|strong=\"H3605\"* teeth|strong=\"H8127\"* will|strong=\"H5771\"* be|strong=\"H4191\"* set|strong=\"H6949\"* on|strong=\"H4191\"* edge|strong=\"H6949\"*." + }, + { + "verseNum": 31, + "text": "“Behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H3478\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3068\"* make|strong=\"H3772\"* a|strong=\"H3068\"* new|strong=\"H2319\"* covenant|strong=\"H1285\"* with|strong=\"H1004\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, and|strong=\"H3063\"* with|strong=\"H1004\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*," + }, + { + "verseNum": 32, + "text": "not|strong=\"H3808\"* according|strong=\"H3027\"* to|strong=\"H3318\"* the|strong=\"H5002\"* covenant|strong=\"H1285\"* that|strong=\"H3117\"* I|strong=\"H3117\"* made|strong=\"H3772\"* with|strong=\"H3068\"* their|strong=\"H3068\"* fathers in|strong=\"H3068\"* the|strong=\"H5002\"* day|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* took|strong=\"H2388\"* them|strong=\"H1992\"* by|strong=\"H3027\"* the|strong=\"H5002\"* hand|strong=\"H3027\"* to|strong=\"H3318\"* bring|strong=\"H3318\"* them|strong=\"H1992\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H5002\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, which|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* mine|strong=\"H3027\"* they|strong=\"H1992\"* broke|strong=\"H6565\"*, although|strong=\"H3808\"* I|strong=\"H3117\"* was|strong=\"H3068\"* a|strong=\"H3068\"* husband|strong=\"H1166\"* to|strong=\"H3318\"* them|strong=\"H1992\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 33, + "text": "“But|strong=\"H3588\"* this|strong=\"H2063\"* is|strong=\"H3068\"* the|strong=\"H5002\"* covenant|strong=\"H1285\"* that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H5414\"* with|strong=\"H1004\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* after|strong=\"H5921\"* those|strong=\"H1992\"* days|strong=\"H3117\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*:" + }, + { + "verseNum": 34, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* each|strong=\"H3605\"* teach|strong=\"H3925\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"*," + }, + { + "verseNum": 35, + "text": "Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* gives|strong=\"H5414\"* the|strong=\"H5414\"* sun|strong=\"H8121\"* for|strong=\"H2708\"* a|strong=\"H3068\"* light by|strong=\"H3068\"* day|strong=\"H3119\"*," + }, + { + "verseNum": 36, + "text": "“If|strong=\"H1961\"* these|strong=\"H3605\"* ordinances|strong=\"H2706\"* depart|strong=\"H4185\"* from|strong=\"H6440\"* before|strong=\"H6440\"* me|strong=\"H6440\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 37, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*: “If heaven|strong=\"H8064\"* above|strong=\"H4605\"* can|strong=\"H6213\"* be|strong=\"H3068\"* measured|strong=\"H4058\"*," + }, + { + "verseNum": 38, + "text": "“Behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H5892\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3117\"* the|strong=\"H5002\"* city|strong=\"H5892\"* will|strong=\"H3068\"* be|strong=\"H3068\"* built|strong=\"H1129\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* from|strong=\"H3117\"* the|strong=\"H5002\"* tower|strong=\"H4026\"* of|strong=\"H3068\"* Hananel|strong=\"H2606\"* to|strong=\"H3068\"* the|strong=\"H5002\"* gate|strong=\"H8179\"* of|strong=\"H3068\"* the|strong=\"H5002\"* corner|strong=\"H6438\"*." + }, + { + "verseNum": 39, + "text": "The|strong=\"H5921\"* measuring|strong=\"H4060\"* line will|strong=\"H5750\"* go|strong=\"H3318\"* out|strong=\"H3318\"* further|strong=\"H5750\"* straight|strong=\"H5048\"* onward to|strong=\"H3318\"* the|strong=\"H5921\"* hill|strong=\"H1389\"* Gareb|strong=\"H1619\"*, and|strong=\"H3318\"* will|strong=\"H5750\"* turn|strong=\"H5437\"* toward|strong=\"H5921\"* Goah|strong=\"H1601\"*." + }, + { + "verseNum": 40, + "text": "The|strong=\"H3605\"* whole|strong=\"H3605\"* valley|strong=\"H6010\"* of|strong=\"H3068\"* the|strong=\"H3605\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* and|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H3605\"* ashes|strong=\"H1880\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fields to|strong=\"H5704\"* the|strong=\"H3605\"* brook|strong=\"H5158\"* Kidron|strong=\"H6939\"*, to|strong=\"H5704\"* the|strong=\"H3605\"* corner|strong=\"H6438\"* of|strong=\"H3068\"* the|strong=\"H3605\"* horse|strong=\"H5483\"* gate|strong=\"H8179\"* toward|strong=\"H5704\"* the|strong=\"H3605\"* east|strong=\"H4217\"*, will|strong=\"H3068\"* be|strong=\"H3808\"* holy|strong=\"H6944\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*. It|strong=\"H5704\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* plucked|strong=\"H5428\"* up|strong=\"H5428\"* or|strong=\"H3808\"* thrown|strong=\"H2040\"* down|strong=\"H2040\"* any|strong=\"H3605\"* more|strong=\"H5750\"* forever|strong=\"H5769\"*.”" + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "This|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H3068\"* word|strong=\"H1697\"* that|strong=\"H1931\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H8141\"* the|strong=\"H3068\"* tenth|strong=\"H6224\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, which|strong=\"H1931\"* was|strong=\"H3068\"* the|strong=\"H3068\"* eighteenth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"H1961\"* at|strong=\"H5921\"* that|strong=\"H4428\"* time|strong=\"H1961\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon’s army|strong=\"H2428\"* was|strong=\"H1961\"* besieging|strong=\"H6696\"* Jerusalem|strong=\"H3389\"*. Jeremiah|strong=\"H3414\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* was|strong=\"H1961\"* shut|strong=\"H3607\"* up|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* court|strong=\"H2691\"* of|strong=\"H4428\"* the|strong=\"H5921\"* guard|strong=\"H4307\"*, which|strong=\"H1004\"* was|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3027\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* had|strong=\"H3068\"* shut|strong=\"H3607\"* him|strong=\"H5414\"* up|strong=\"H5414\"*, saying, “Why|strong=\"H4069\"* do|strong=\"H3068\"* you|strong=\"H5414\"* prophesy|strong=\"H5012\"*, and|strong=\"H3063\"* say, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* give|strong=\"H5414\"* this|strong=\"H2063\"* city|strong=\"H5892\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3063\"* he|strong=\"H3068\"* will|strong=\"H3068\"* take|strong=\"H3920\"* it|strong=\"H5414\"*;" + }, + { + "verseNum": 4, + "text": "and|strong=\"H3063\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* won’t escape|strong=\"H4422\"* out|strong=\"H5414\"* of|strong=\"H4428\"* the|strong=\"H7200\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H7200\"* Chaldeans|strong=\"H3778\"*, but|strong=\"H3588\"* will|strong=\"H4428\"* surely|strong=\"H3588\"* be|strong=\"H3808\"* delivered|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H7200\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H7200\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3063\"* will|strong=\"H4428\"* speak|strong=\"H1696\"* with|strong=\"H5973\"* him|strong=\"H5414\"* mouth|strong=\"H6310\"* to|strong=\"H1696\"* mouth|strong=\"H6310\"*, and|strong=\"H3063\"* his|strong=\"H5414\"* eyes|strong=\"H5869\"* will|strong=\"H4428\"* see|strong=\"H7200\"* his|strong=\"H5414\"* eyes|strong=\"H5869\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"H3068\"* he|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H3212\"* Zedekiah|strong=\"H6667\"* to|strong=\"H5704\"* Babylon, and|strong=\"H3068\"* he|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* there|strong=\"H8033\"* until|strong=\"H5704\"* I|strong=\"H3588\"* visit|strong=\"H6485\"* him|strong=\"H6485\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “though|strong=\"H3588\"* you|strong=\"H3588\"* fight|strong=\"H3898\"* with|strong=\"H3068\"* the|strong=\"H5002\"* Chaldeans|strong=\"H3778\"*, you|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* prosper|strong=\"H6743\"*”’?”" + }, + { + "verseNum": 6, + "text": "Jeremiah|strong=\"H3414\"* said|strong=\"H1697\"*, “Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 7, + "text": "‘Behold|strong=\"H2009\"*, Hanamel|strong=\"H2601\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shallum|strong=\"H7967\"* your|strong=\"H3588\"* uncle|strong=\"H1730\"* will|strong=\"H1121\"* come|strong=\"H4941\"* to|strong=\"H1121\"* you|strong=\"H3588\"*, saying, “Buy|strong=\"H7069\"* my|strong=\"H3588\"* field|strong=\"H7704\"* that|strong=\"H3588\"* is|strong=\"H2009\"* in|strong=\"H1121\"* Anathoth|strong=\"H6068\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* right|strong=\"H4941\"* of|strong=\"H1121\"* redemption|strong=\"H1353\"* is|strong=\"H2009\"* yours to|strong=\"H1121\"* buy|strong=\"H7069\"* it|strong=\"H3588\"*.”’”" + }, + { + "verseNum": 8, + "text": "“So|strong=\"H3588\"* Hanamel|strong=\"H2601\"* my|strong=\"H3068\"* uncle|strong=\"H1730\"*’s son|strong=\"H1121\"* came|strong=\"H3068\"* to|strong=\"H3068\"* me|strong=\"H4994\"* in|strong=\"H3068\"* the|strong=\"H3588\"* court|strong=\"H2691\"* of|strong=\"H1121\"* the|strong=\"H3588\"* guard|strong=\"H4307\"* according|strong=\"H4941\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, and|strong=\"H1121\"* said|strong=\"H1697\"* to|strong=\"H3068\"* me|strong=\"H4994\"*, ‘Please|strong=\"H4994\"* buy|strong=\"H7069\"* my|strong=\"H3068\"* field|strong=\"H7704\"* that|strong=\"H3588\"* is|strong=\"H3068\"* in|strong=\"H3068\"* Anathoth|strong=\"H6068\"*, which|strong=\"H1931\"* is|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3588\"* land|strong=\"H7704\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* right|strong=\"H4941\"* of|strong=\"H1121\"* inheritance|strong=\"H3425\"* is|strong=\"H3068\"* yours, and|strong=\"H1121\"* the|strong=\"H3588\"* redemption|strong=\"H1353\"* is|strong=\"H3068\"* yours. Buy|strong=\"H7069\"* it|strong=\"H1931\"* for|strong=\"H3588\"* yourself|strong=\"H3045\"*.’" + }, + { + "verseNum": 9, + "text": "I|strong=\"H1121\"* bought|strong=\"H7069\"* the|strong=\"H7069\"* field|strong=\"H7704\"* that|strong=\"H1121\"* was|strong=\"H1121\"* in|strong=\"H1121\"* Anathoth|strong=\"H6068\"* of|strong=\"H1121\"* Hanamel|strong=\"H2601\"* my|strong=\"H2601\"* uncle|strong=\"H1730\"*’s son|strong=\"H1121\"*, and|strong=\"H1121\"* weighed|strong=\"H8254\"* him|strong=\"H7069\"* the|strong=\"H7069\"* money|strong=\"H3701\"*, even|strong=\"H7651\"* seventeen|strong=\"H7651\"* shekels|strong=\"H8255\"*+ 32:9 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H1121\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 10, + "text": "I signed|strong=\"H3789\"* the|strong=\"H3789\"* deed|strong=\"H5612\"*, sealed|strong=\"H2856\"* it|strong=\"H3789\"*, called|strong=\"H5749\"* witnesses|strong=\"H5707\"*, and|strong=\"H3701\"* weighed|strong=\"H8254\"* the|strong=\"H3789\"* money|strong=\"H3701\"* in|strong=\"H3789\"* the|strong=\"H3789\"* balances|strong=\"H3976\"* to|strong=\"H5612\"* him." + }, + { + "verseNum": 11, + "text": "So|strong=\"H3947\"* I took|strong=\"H3947\"* the|strong=\"H3947\"* deed|strong=\"H5612\"* of|strong=\"H5612\"* the|strong=\"H3947\"* purchase|strong=\"H4736\"*, both that|strong=\"H5612\"* which|strong=\"H5612\"* was sealed|strong=\"H2856\"*, containing the|strong=\"H3947\"* terms|strong=\"H4687\"* and|strong=\"H2706\"* conditions|strong=\"H2706\"*, and|strong=\"H2706\"* that|strong=\"H5612\"* which|strong=\"H5612\"* was open|strong=\"H1540\"*;" + }, + { + "verseNum": 12, + "text": "and|strong=\"H1121\"* I|strong=\"H5414\"* delivered|strong=\"H5414\"* the|strong=\"H3605\"* deed|strong=\"H5612\"* of|strong=\"H1121\"* the|strong=\"H3605\"* purchase|strong=\"H4736\"* to|strong=\"H5414\"* Baruch|strong=\"H1263\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Neriah|strong=\"H5374\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mahseiah|strong=\"H4271\"*, in|strong=\"H3427\"* the|strong=\"H3605\"* presence|strong=\"H5869\"* of|strong=\"H1121\"* Hanamel|strong=\"H2601\"* my|strong=\"H5414\"* uncle|strong=\"H1730\"*’s son|strong=\"H1121\"*, and|strong=\"H1121\"* in|strong=\"H3427\"* the|strong=\"H3605\"* presence|strong=\"H5869\"* of|strong=\"H1121\"* the|strong=\"H3605\"* witnesses|strong=\"H5707\"* who|strong=\"H3605\"* signed|strong=\"H3789\"* the|strong=\"H3605\"* deed|strong=\"H5612\"* of|strong=\"H1121\"* the|strong=\"H3605\"* purchase|strong=\"H4736\"*, before|strong=\"H5869\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* who|strong=\"H3605\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* court|strong=\"H2691\"* of|strong=\"H1121\"* the|strong=\"H3605\"* guard|strong=\"H4307\"*." + }, + { + "verseNum": 13, + "text": "“I|strong=\"H6680\"* commanded|strong=\"H6680\"* Baruch|strong=\"H1263\"* before|strong=\"H5869\"* them|strong=\"H6680\"*, saying," + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘Take|strong=\"H3947\"* these|strong=\"H2088\"* deeds|strong=\"H5612\"*, this|strong=\"H2088\"* deed|strong=\"H5612\"* of|strong=\"H3068\"* the|strong=\"H5414\"* purchase|strong=\"H4736\"* which|strong=\"H3068\"* is|strong=\"H3068\"* sealed|strong=\"H2856\"*, and|strong=\"H3478\"* this|strong=\"H2088\"* deed|strong=\"H5612\"* which|strong=\"H3068\"* is|strong=\"H3068\"* open|strong=\"H1540\"*, and|strong=\"H3478\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H3478\"* an|strong=\"H5414\"* earthen|strong=\"H2789\"* vessel|strong=\"H3627\"*, that|strong=\"H3117\"* they|strong=\"H3117\"* may|strong=\"H3068\"* last|strong=\"H5975\"* many|strong=\"H7227\"* days|strong=\"H3117\"*.’" + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*: ‘Houses|strong=\"H1004\"* and|strong=\"H3478\"* fields|strong=\"H7704\"* and|strong=\"H3478\"* vineyards|strong=\"H3754\"* will|strong=\"H3068\"* yet|strong=\"H5750\"* again|strong=\"H5750\"* be|strong=\"H5750\"* bought|strong=\"H7069\"* in|strong=\"H3478\"* this|strong=\"H2063\"* land|strong=\"H7704\"*.’" + }, + { + "verseNum": 16, + "text": "Now|strong=\"H5414\"* after I|strong=\"H5414\"* had|strong=\"H3068\"* delivered|strong=\"H5414\"* the|strong=\"H5414\"* deed|strong=\"H5612\"* of|strong=\"H1121\"* the|strong=\"H5414\"* purchase|strong=\"H4736\"* to|strong=\"H3068\"* Baruch|strong=\"H1263\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Neriah|strong=\"H5374\"*, I|strong=\"H5414\"* prayed|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying," + }, + { + "verseNum": 17, + "text": "“Ah Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*! Behold|strong=\"H2009\"*, you|strong=\"H3605\"* have|strong=\"H1697\"* made|strong=\"H6213\"* the|strong=\"H3605\"* heavens|strong=\"H8064\"* and|strong=\"H8064\"* the|strong=\"H3605\"* earth|strong=\"H8064\"* by|strong=\"H3808\"* your|strong=\"H3605\"* great|strong=\"H1419\"* power|strong=\"H3581\"* and|strong=\"H8064\"* by|strong=\"H3808\"* your|strong=\"H3605\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*. There|strong=\"H2009\"* is|strong=\"H1697\"* nothing|strong=\"H3808\"* too|strong=\"H4480\"* hard|strong=\"H6381\"* for|strong=\"H6213\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H6213\"* show|strong=\"H6213\"* loving kindness|strong=\"H2617\"* to|strong=\"H3068\"* thousands, and|strong=\"H1121\"* repay|strong=\"H7999\"* the|strong=\"H6213\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H6213\"* fathers into|strong=\"H6213\"* the|strong=\"H6213\"* bosom|strong=\"H2436\"* of|strong=\"H1121\"* their|strong=\"H3068\"* children|strong=\"H1121\"* after|strong=\"H8034\"* them|strong=\"H6213\"*. The|strong=\"H6213\"* great|strong=\"H1419\"*, the|strong=\"H6213\"* mighty|strong=\"H1368\"* God|strong=\"H3068\"*, Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"* is|strong=\"H3068\"* your|strong=\"H3068\"* name|strong=\"H8034\"*:" + }, + { + "verseNum": 19, + "text": "great|strong=\"H1419\"* in|strong=\"H5921\"* counsel|strong=\"H6098\"*, and|strong=\"H1121\"* mighty|strong=\"H1419\"* in|strong=\"H5921\"* work|strong=\"H5950\"*; whose|strong=\"H1121\"* eyes|strong=\"H5869\"* are|strong=\"H1121\"* open|strong=\"H6491\"* to|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ways|strong=\"H1870\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"*, to|strong=\"H5921\"* give|strong=\"H5414\"* everyone|strong=\"H3605\"* according|strong=\"H5921\"* to|strong=\"H5921\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, and|strong=\"H1121\"* according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H1121\"* his|strong=\"H3605\"* doings|strong=\"H4611\"*;" + }, + { + "verseNum": 20, + "text": "who|strong=\"H3478\"* performed|strong=\"H6213\"* signs and|strong=\"H3478\"* wonders|strong=\"H4159\"* in|strong=\"H3478\"* the|strong=\"H6213\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, both in|strong=\"H3478\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* among|strong=\"H8034\"* other|strong=\"H2088\"* men|strong=\"H6213\"*; and|strong=\"H3478\"* made|strong=\"H6213\"* yourself|strong=\"H6213\"* a|strong=\"H3068\"* name|strong=\"H8034\"*, as|strong=\"H5704\"* it|strong=\"H7760\"* is|strong=\"H2088\"* today|strong=\"H3117\"*;" + }, + { + "verseNum": 21, + "text": "and|strong=\"H3478\"* brought|strong=\"H3318\"* your|strong=\"H5186\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* out|strong=\"H3318\"* of|strong=\"H3027\"* the|strong=\"H3318\"* land of|strong=\"H3027\"* Egypt|strong=\"H4714\"* with|strong=\"H3318\"* signs, with|strong=\"H3318\"* wonders|strong=\"H4159\"*, with|strong=\"H3318\"* a|strong=\"H3068\"* strong|strong=\"H2389\"* hand|strong=\"H3027\"*, with|strong=\"H3318\"* an|strong=\"H3318\"* outstretched|strong=\"H5186\"* arm|strong=\"H3027\"*, and|strong=\"H3478\"* with|strong=\"H3318\"* great|strong=\"H1419\"* terror|strong=\"H4172\"*;" + }, + { + "verseNum": 22, + "text": "and|strong=\"H2461\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* this|strong=\"H2063\"* land, which you|strong=\"H5414\"* swore|strong=\"H7650\"* to|strong=\"H5414\"* their|strong=\"H5414\"* fathers to|strong=\"H5414\"* give|strong=\"H5414\"* them|strong=\"H5414\"*, a|strong=\"H3068\"* land flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H2461\"* honey|strong=\"H1706\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H3808\"* came|strong=\"H1980\"* in|strong=\"H1980\"* and|strong=\"H1980\"* possessed|strong=\"H3423\"* it|strong=\"H6213\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* didn’t obey|strong=\"H8085\"* your|strong=\"H3605\"* voice|strong=\"H6963\"* and|strong=\"H1980\"* didn’t walk|strong=\"H1980\"* in|strong=\"H1980\"* your|strong=\"H3605\"* law|strong=\"H8451\"*. They|strong=\"H3808\"* have|strong=\"H3605\"* done|strong=\"H6213\"* nothing|strong=\"H3808\"* of|strong=\"H6963\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H6680\"* commanded|strong=\"H6680\"* them|strong=\"H6213\"* to|strong=\"H1980\"* do|strong=\"H6213\"*. Therefore|strong=\"H2063\"* you|strong=\"H6680\"* have|strong=\"H3605\"* caused|strong=\"H6213\"* all|strong=\"H3605\"* this|strong=\"H2063\"* evil|strong=\"H7451\"* to|strong=\"H1980\"* come|strong=\"H1980\"* upon|strong=\"H1980\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 24, + "text": "“Behold|strong=\"H2009\"*, siege|strong=\"H5550\"* ramps|strong=\"H5550\"* have|strong=\"H1961\"* been|strong=\"H1961\"* built against|strong=\"H5921\"* the|strong=\"H6440\"* city|strong=\"H5892\"* to|strong=\"H1696\"* take|strong=\"H3920\"* it|strong=\"H5414\"*. The|strong=\"H6440\"* city|strong=\"H5892\"* is|strong=\"H3027\"* given|strong=\"H5414\"* into|strong=\"H5921\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H6440\"* Chaldeans|strong=\"H3778\"* who|strong=\"H3778\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* it|strong=\"H5414\"*, because|strong=\"H5921\"* of|strong=\"H3027\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*, of|strong=\"H3027\"* the|strong=\"H6440\"* famine|strong=\"H7458\"*, and|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H6440\"* pestilence|strong=\"H1698\"*. What|strong=\"H7200\"* you|strong=\"H5414\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"* has|strong=\"H1961\"* happened|strong=\"H1961\"*. Behold|strong=\"H2009\"*, you|strong=\"H5414\"* see|strong=\"H7200\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"H5414\"* have|strong=\"H3027\"* said to|strong=\"H5414\"* me|strong=\"H5414\"*, Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, ‘Buy|strong=\"H7069\"* the|strong=\"H5414\"* field|strong=\"H7704\"* for|strong=\"H3027\"* money|strong=\"H3701\"*, and|strong=\"H3701\"* call|strong=\"H5749\"* witnesses|strong=\"H5707\"*;’ whereas the|strong=\"H5414\"* city|strong=\"H5892\"* is|strong=\"H3027\"* given|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5414\"* Chaldeans|strong=\"H3778\"*.”" + }, + { + "verseNum": 26, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 27, + "text": "“Behold|strong=\"H2009\"*, I|strong=\"H2009\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*. Is|strong=\"H3068\"* there|strong=\"H2009\"* anything|strong=\"H3605\"* too|strong=\"H4480\"* hard|strong=\"H6381\"* for|strong=\"H3068\"* me|strong=\"H4480\"*?" + }, + { + "verseNum": 28, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* give|strong=\"H5414\"* this|strong=\"H2063\"* city|strong=\"H5892\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* Chaldeans|strong=\"H3778\"*, and|strong=\"H3068\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3068\"* he|strong=\"H3651\"* will|strong=\"H3068\"* take|strong=\"H3920\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H5921\"* Chaldeans|strong=\"H3778\"*, who|strong=\"H3778\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, will|strong=\"H1004\"* come|strong=\"H5892\"* and|strong=\"H1004\"* set|strong=\"H3341\"* this|strong=\"H2063\"* city|strong=\"H5892\"* on|strong=\"H5921\"* fire|strong=\"H3341\"*, and|strong=\"H1004\"* burn|strong=\"H8313\"* it|strong=\"H5921\"* with|strong=\"H8313\"* the|strong=\"H5921\"* houses|strong=\"H1004\"* on|strong=\"H5921\"* whose roofs|strong=\"H1406\"* they|strong=\"H5921\"* have|strong=\"H5892\"* offered|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H5921\"* Baal|strong=\"H1168\"*, and|strong=\"H1004\"* poured|strong=\"H5258\"* out|strong=\"H5258\"* drink|strong=\"H5262\"* offerings|strong=\"H5262\"* to|strong=\"H5921\"* other|strong=\"H2063\"* gods, to|strong=\"H5921\"* provoke|strong=\"H3707\"* me|strong=\"H5921\"* to|strong=\"H5921\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 30, + "text": "“For|strong=\"H3588\"* the|strong=\"H5002\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* the|strong=\"H5002\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* have|strong=\"H1961\"* done|strong=\"H6213\"* only|strong=\"H3588\"* that|strong=\"H3588\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* my|strong=\"H3068\"* sight|strong=\"H5869\"* from|strong=\"H3478\"* their|strong=\"H3068\"* youth|strong=\"H5271\"*; for|strong=\"H3588\"* the|strong=\"H5002\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* have|strong=\"H1961\"* only|strong=\"H3588\"* provoked|strong=\"H3707\"* me|strong=\"H6213\"* to|strong=\"H3478\"* anger|strong=\"H3707\"* with|strong=\"H3068\"* the|strong=\"H5002\"* work|strong=\"H4639\"* of|strong=\"H1121\"* their|strong=\"H3068\"* hands|strong=\"H3027\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* this|strong=\"H2088\"* city|strong=\"H5892\"* has|strong=\"H1961\"* been|strong=\"H1961\"* to|strong=\"H5704\"* me|strong=\"H6440\"* a|strong=\"H3068\"* provocation of|strong=\"H3117\"* my|strong=\"H5921\"* anger|strong=\"H2534\"* and|strong=\"H3117\"* of|strong=\"H3117\"* my|strong=\"H5921\"* wrath|strong=\"H2534\"* from|strong=\"H4480\"* the|strong=\"H6440\"* day|strong=\"H3117\"* that|strong=\"H3588\"* they|strong=\"H3588\"* built|strong=\"H1129\"* it|strong=\"H5921\"* even|strong=\"H5704\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, so|strong=\"H4480\"* that|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* remove|strong=\"H5493\"* it|strong=\"H5921\"* from|strong=\"H4480\"* before|strong=\"H6440\"* my|strong=\"H5921\"* face|strong=\"H6440\"*," + }, + { + "verseNum": 32, + "text": "because|strong=\"H5921\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, which|strong=\"H1992\"* they|strong=\"H1992\"* have|strong=\"H1121\"* done|strong=\"H6213\"* to|strong=\"H3478\"* provoke|strong=\"H3707\"* me|strong=\"H5921\"* to|strong=\"H3478\"* anger|strong=\"H3707\"*—they|strong=\"H1992\"*, their|strong=\"H3605\"* kings|strong=\"H4428\"*, their|strong=\"H3605\"* princes|strong=\"H8269\"*, their|strong=\"H3605\"* priests|strong=\"H3548\"*, their|strong=\"H3605\"* prophets|strong=\"H5030\"*, the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 33, + "text": "They|strong=\"H3808\"* have|strong=\"H6437\"* turned|strong=\"H6437\"* their|strong=\"H3947\"* backs|strong=\"H6203\"* to|strong=\"H6440\"* me|strong=\"H6440\"*, and|strong=\"H7925\"* not|strong=\"H3808\"* their|strong=\"H3947\"* faces|strong=\"H6440\"*. Although|strong=\"H3808\"* I|strong=\"H3808\"* taught|strong=\"H3925\"* them|strong=\"H6440\"*, rising|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H7925\"* teaching|strong=\"H3925\"* them|strong=\"H6440\"*, yet|strong=\"H3808\"* they|strong=\"H3808\"* have|strong=\"H6437\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H6440\"* receive|strong=\"H3947\"* instruction|strong=\"H4148\"*." + }, + { + "verseNum": 34, + "text": "But|strong=\"H5921\"* they|strong=\"H5921\"* set|strong=\"H7760\"* their|strong=\"H7760\"* abominations|strong=\"H8251\"* in|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* which|strong=\"H1004\"* is|strong=\"H8034\"* called|strong=\"H7121\"* by|strong=\"H5921\"* my|strong=\"H7760\"* name|strong=\"H8034\"*, to|strong=\"H5921\"* defile|strong=\"H2930\"* it|strong=\"H7760\"*." + }, + { + "verseNum": 35, + "text": "They|strong=\"H3808\"* built|strong=\"H1129\"* the|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"* of|strong=\"H1121\"* Baal|strong=\"H1168\"*, which|strong=\"H1116\"* are|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H5921\"* valley|strong=\"H1516\"* of|strong=\"H1121\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"*, to|strong=\"H5927\"* cause|strong=\"H6213\"* their|strong=\"H5921\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H5921\"* daughters|strong=\"H1323\"* to|strong=\"H5927\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* fire to|strong=\"H5927\"* Molech|strong=\"H4432\"*, which|strong=\"H1116\"* I|strong=\"H5921\"* didn’t command|strong=\"H6680\"* them|strong=\"H5921\"*. It|strong=\"H5921\"* didn’t even|strong=\"H3808\"* come|strong=\"H5927\"* into|strong=\"H5927\"* my|strong=\"H5921\"* mind|strong=\"H3820\"*, that|strong=\"H4616\"* they|strong=\"H3808\"* should|strong=\"H6213\"* do|strong=\"H6213\"* this|strong=\"H2063\"* abomination|strong=\"H8441\"*, to|strong=\"H5927\"* cause|strong=\"H6213\"* Judah|strong=\"H3063\"* to|strong=\"H5927\"* sin|strong=\"H2398\"*.”" + }, + { + "verseNum": 36, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"* concerning|strong=\"H3068\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, about|strong=\"H4428\"* which|strong=\"H3068\"* you|strong=\"H5414\"* say|strong=\"H3478\"*, “It|strong=\"H5414\"* is|strong=\"H3068\"* given|strong=\"H5414\"* into|strong=\"H2719\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon by|strong=\"H3027\"* the|strong=\"H5414\"* sword|strong=\"H2719\"*, by|strong=\"H3027\"* the|strong=\"H5414\"* famine|strong=\"H7458\"*, and|strong=\"H3478\"* by|strong=\"H3027\"* the|strong=\"H5414\"* pestilence|strong=\"H1698\"*:”" + }, + { + "verseNum": 37, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H2534\"* gather|strong=\"H6908\"* them|strong=\"H7725\"* out|strong=\"H5080\"* of|strong=\"H3427\"* all|strong=\"H3605\"* the|strong=\"H3605\"* countries where|strong=\"H8033\"* I|strong=\"H2005\"* have|strong=\"H3605\"* driven|strong=\"H5080\"* them|strong=\"H7725\"* in|strong=\"H3427\"* my|strong=\"H3605\"* anger|strong=\"H2534\"*, and|strong=\"H7725\"* in|strong=\"H3427\"* my|strong=\"H3605\"* wrath|strong=\"H2534\"*, and|strong=\"H7725\"* in|strong=\"H3427\"* great|strong=\"H1419\"* indignation|strong=\"H7110\"*; and|strong=\"H7725\"* I|strong=\"H2005\"* will|strong=\"H2534\"* bring|strong=\"H7725\"* them|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* this|strong=\"H2088\"* place|strong=\"H4725\"*. I|strong=\"H2005\"* will|strong=\"H2534\"* cause|strong=\"H7725\"* them|strong=\"H7725\"* to|strong=\"H7725\"* dwell|strong=\"H3427\"* safely." + }, + { + "verseNum": 38, + "text": "Then|strong=\"H1961\"* they|strong=\"H5971\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H1961\"* people|strong=\"H5971\"*, and|strong=\"H5971\"* I|strong=\"H5971\"* will|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H1961\"* God." + }, + { + "verseNum": 39, + "text": "I|strong=\"H3117\"* will|strong=\"H1121\"* give|strong=\"H5414\"* them|strong=\"H5414\"* one|strong=\"H3605\"* heart|strong=\"H3820\"* and|strong=\"H1121\"* one|strong=\"H3605\"* way|strong=\"H1870\"*, that|strong=\"H3605\"* they|strong=\"H3117\"* may|strong=\"H1121\"* fear|strong=\"H3372\"* me|strong=\"H5414\"* forever|strong=\"H3605\"*, for|strong=\"H3117\"* their|strong=\"H3605\"* good|strong=\"H2896\"* and|strong=\"H1121\"* the|strong=\"H3605\"* good|strong=\"H2896\"* of|strong=\"H1121\"* their|strong=\"H3605\"* children|strong=\"H1121\"* after|strong=\"H3117\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 40, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* make|strong=\"H5414\"* an|strong=\"H5414\"* everlasting|strong=\"H5769\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* them|strong=\"H5414\"*, that|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H5414\"* not|strong=\"H3808\"* turn|strong=\"H7725\"* away|strong=\"H5493\"* from|strong=\"H7725\"* following them|strong=\"H5414\"*, to|strong=\"H7725\"* do|strong=\"H3190\"* them|strong=\"H5414\"* good|strong=\"H3190\"*. I|strong=\"H5414\"* will|strong=\"H5414\"* put|strong=\"H5414\"* my|strong=\"H5414\"* fear|strong=\"H3374\"* in|strong=\"H5921\"* their|strong=\"H5414\"* hearts|strong=\"H3824\"*, that|strong=\"H5414\"* they|strong=\"H3808\"* may|strong=\"H7725\"* not|strong=\"H3808\"* depart|strong=\"H5493\"* from|strong=\"H7725\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 41, + "text": "Yes, I|strong=\"H5921\"* will|strong=\"H5315\"* rejoice|strong=\"H7797\"* over|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H5921\"* do|strong=\"H2895\"* them|strong=\"H5921\"* good|strong=\"H2895\"*, and|strong=\"H3820\"* I|strong=\"H5921\"* will|strong=\"H5315\"* plant|strong=\"H5193\"* them|strong=\"H5921\"* in|strong=\"H5921\"* this|strong=\"H2063\"* land assuredly with|strong=\"H5921\"* my|strong=\"H3605\"* whole|strong=\"H3605\"* heart|strong=\"H3820\"* and|strong=\"H3820\"* with|strong=\"H5921\"* my|strong=\"H3605\"* whole|strong=\"H3605\"* soul|strong=\"H5315\"*.”" + }, + { + "verseNum": 42, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Just|strong=\"H3605\"* as|strong=\"H3651\"* I|strong=\"H3588\"* have|strong=\"H3068\"* brought|strong=\"H3068\"* all|strong=\"H3605\"* this|strong=\"H2088\"* great|strong=\"H1419\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, so|strong=\"H3651\"* I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H7451\"* on|strong=\"H5921\"* them|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* good|strong=\"H2896\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* promised|strong=\"H1696\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 43, + "text": "Fields|strong=\"H7704\"* will|strong=\"H3027\"* be|strong=\"H3027\"* bought|strong=\"H7069\"* in|strong=\"H3027\"* this|strong=\"H2063\"* land|strong=\"H7704\"*, about|strong=\"H7704\"* which|strong=\"H1931\"* you|strong=\"H5414\"* say, ‘It|strong=\"H5414\"* is|strong=\"H1931\"* desolate|strong=\"H8077\"*, without|strong=\"H8077\"* man or|strong=\"H7704\"* animal. It|strong=\"H5414\"* is|strong=\"H1931\"* given|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5414\"* Chaldeans|strong=\"H3778\"*.’" + }, + { + "verseNum": 44, + "text": "Men will|strong=\"H3068\"* buy|strong=\"H7069\"* fields|strong=\"H7704\"* for|strong=\"H3588\"* money|strong=\"H3701\"*, sign|strong=\"H3789\"* the|strong=\"H5002\"* deeds|strong=\"H5612\"*, seal|strong=\"H2856\"* them|strong=\"H7725\"*, and|strong=\"H3063\"* call|strong=\"H5749\"* witnesses|strong=\"H5707\"*, in|strong=\"H3068\"* the|strong=\"H5002\"* land|strong=\"H7704\"* of|strong=\"H3068\"* Benjamin|strong=\"H1144\"*, and|strong=\"H3063\"* in|strong=\"H3068\"* the|strong=\"H5002\"* places|strong=\"H5439\"* around|strong=\"H5439\"* Jerusalem|strong=\"H3389\"*, in|strong=\"H3068\"* the|strong=\"H5002\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, in|strong=\"H3068\"* the|strong=\"H5002\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* the|strong=\"H5002\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, in|strong=\"H3068\"* the|strong=\"H5002\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* the|strong=\"H5002\"* lowland|strong=\"H8219\"*, and|strong=\"H3063\"* in|strong=\"H3068\"* the|strong=\"H5002\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* the|strong=\"H5002\"* South|strong=\"H5045\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* cause|strong=\"H7725\"* their|strong=\"H3068\"* captivity|strong=\"H7622\"* to|strong=\"H7725\"* be|strong=\"H3068\"* reversed,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Moreover|strong=\"H5750\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3068\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, while|strong=\"H5750\"* he|strong=\"H1931\"* was|strong=\"H3068\"* still|strong=\"H5750\"* locked up|strong=\"H6113\"* in|strong=\"H3068\"* the|strong=\"H3068\"* court|strong=\"H2691\"* of|strong=\"H3068\"* the|strong=\"H3068\"* guard|strong=\"H4307\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* does|strong=\"H6213\"* it|strong=\"H6213\"*, Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* forms|strong=\"H3335\"* it|strong=\"H6213\"* to|strong=\"H3068\"* establish|strong=\"H3559\"* it|strong=\"H6213\"*—Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* his|strong=\"H3068\"* name|strong=\"H8034\"*, says|strong=\"H3541\"*:" + }, + { + "verseNum": 3, + "text": "‘Call|strong=\"H7121\"* to|strong=\"H7121\"* me|strong=\"H5046\"*, and|strong=\"H6030\"* I|strong=\"H3045\"* will|strong=\"H3808\"* answer|strong=\"H6030\"* you|strong=\"H5046\"*, and|strong=\"H6030\"* will|strong=\"H3808\"* show|strong=\"H3045\"* you|strong=\"H5046\"* great|strong=\"H1419\"* and|strong=\"H6030\"* difficult|strong=\"H1419\"* things|strong=\"H1419\"*, which you|strong=\"H5046\"* don’t know|strong=\"H3045\"*.’" + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* houses|strong=\"H1004\"* of|strong=\"H4428\"* this|strong=\"H2063\"* city|strong=\"H5892\"* and|strong=\"H3063\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* houses|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, which|strong=\"H3068\"* are|strong=\"H3478\"* broken|strong=\"H5422\"* down|strong=\"H5422\"* to|strong=\"H3478\"* make|strong=\"H3588\"* a|strong=\"H3068\"* defense against|strong=\"H5921\"* the|strong=\"H5921\"* mounds and|strong=\"H3063\"* against|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*:" + }, + { + "verseNum": 5, + "text": "‘While|strong=\"H5921\"* men|strong=\"H7451\"* come|strong=\"H2534\"* to|strong=\"H5921\"* fight|strong=\"H3898\"* with|strong=\"H4390\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"*, and|strong=\"H5892\"* to|strong=\"H5921\"* fill|strong=\"H4390\"* them|strong=\"H5921\"* with|strong=\"H4390\"* the|strong=\"H3605\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* of|strong=\"H5892\"* men|strong=\"H7451\"*, whom|strong=\"H6440\"* I|strong=\"H5921\"* have|strong=\"H3605\"* killed|strong=\"H5221\"* in|strong=\"H5921\"* my|strong=\"H3605\"* anger|strong=\"H2534\"* and|strong=\"H5892\"* in|strong=\"H5921\"* my|strong=\"H3605\"* wrath|strong=\"H2534\"*, and|strong=\"H5892\"* for|strong=\"H5921\"* all|strong=\"H3605\"* whose|strong=\"H3605\"* wickedness|strong=\"H7451\"* I|strong=\"H5921\"* have|strong=\"H3605\"* hidden|strong=\"H5641\"* my|strong=\"H3605\"* face|strong=\"H6440\"* from|strong=\"H6440\"* this|strong=\"H2063\"* city|strong=\"H5892\"*," + }, + { + "verseNum": 6, + "text": "behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H1992\"* bring|strong=\"H5927\"* it|strong=\"H5927\"* health|strong=\"H4832\"* and|strong=\"H5927\"* healing|strong=\"H4832\"*, and|strong=\"H5927\"* I|strong=\"H2005\"* will|strong=\"H1992\"* cure|strong=\"H4832\"* them|strong=\"H1992\"*; and|strong=\"H5927\"* I|strong=\"H2005\"* will|strong=\"H1992\"* reveal|strong=\"H1540\"* to|strong=\"H5927\"* them|strong=\"H1992\"* abundance|strong=\"H6283\"* of|strong=\"H7965\"* peace|strong=\"H7965\"* and|strong=\"H5927\"* truth." + }, + { + "verseNum": 7, + "text": "I|strong=\"H3478\"* will|strong=\"H3478\"* restore|strong=\"H7725\"* the|strong=\"H7725\"* fortunes|strong=\"H7622\"* of|strong=\"H7622\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Israel|strong=\"H3478\"*, and|strong=\"H3063\"* will|strong=\"H3478\"* build|strong=\"H1129\"* them|strong=\"H7725\"* as|strong=\"H3063\"* at|strong=\"H3478\"* the|strong=\"H7725\"* first|strong=\"H7223\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H3605\"* will|strong=\"H5771\"* cleanse|strong=\"H2891\"* them from|strong=\"H6586\"* all|strong=\"H3605\"* their|strong=\"H3605\"* iniquity|strong=\"H5771\"* by|strong=\"H3605\"* which|strong=\"H3605\"* they|strong=\"H3605\"* have|strong=\"H5771\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* me|strong=\"H2398\"*. I|strong=\"H3605\"* will|strong=\"H5771\"* pardon|strong=\"H5545\"* all|strong=\"H3605\"* their|strong=\"H3605\"* iniquities|strong=\"H5771\"* by|strong=\"H3605\"* which|strong=\"H3605\"* they|strong=\"H3605\"* have|strong=\"H5771\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* me|strong=\"H2398\"* and|strong=\"H2398\"* by|strong=\"H3605\"* which|strong=\"H3605\"* they|strong=\"H3605\"* have|strong=\"H5771\"* transgressed|strong=\"H6586\"* against|strong=\"H2398\"* me|strong=\"H2398\"*." + }, + { + "verseNum": 9, + "text": "This|strong=\"H6213\"* city will|strong=\"H1961\"* be|strong=\"H1961\"* to|strong=\"H1961\"* me|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H8034\"* joy|strong=\"H8342\"*, for|strong=\"H5921\"* praise|strong=\"H8416\"*, and|strong=\"H8085\"* for|strong=\"H5921\"* glory|strong=\"H8597\"*, before|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* of|strong=\"H8034\"* the|strong=\"H3605\"* earth, which|strong=\"H1471\"* will|strong=\"H1961\"* hear|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* good|strong=\"H2896\"* that|strong=\"H3605\"* I|strong=\"H5921\"* do|strong=\"H6213\"* to|strong=\"H1961\"* them|strong=\"H5921\"*, and|strong=\"H8085\"* will|strong=\"H1961\"* fear|strong=\"H6342\"* and|strong=\"H8085\"* tremble|strong=\"H7264\"* for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* good|strong=\"H2896\"* and|strong=\"H8085\"* for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peace|strong=\"H7965\"* that|strong=\"H3605\"* I|strong=\"H5921\"* provide|strong=\"H6213\"* to|strong=\"H1961\"* it|strong=\"H5921\"*.’”" + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Yet|strong=\"H5750\"* again|strong=\"H5750\"* there|strong=\"H3427\"* will|strong=\"H3068\"* be|strong=\"H5750\"* heard|strong=\"H8085\"* in|strong=\"H3427\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, about|strong=\"H8085\"* which|strong=\"H1931\"* you|strong=\"H4725\"* say, ‘It|strong=\"H1931\"* is|strong=\"H3068\"* waste|strong=\"H8074\"*, without|strong=\"H2351\"* man|strong=\"H2088\"* and|strong=\"H3063\"* without|strong=\"H2351\"* animal, even|strong=\"H5750\"* in|strong=\"H3427\"* the|strong=\"H8085\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* in|strong=\"H3427\"* the|strong=\"H8085\"* streets|strong=\"H2351\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, that|strong=\"H8085\"* are|strong=\"H3068\"* desolate|strong=\"H8074\"*, without|strong=\"H2351\"* man|strong=\"H2088\"* and|strong=\"H3063\"* without|strong=\"H2351\"* inhabitant|strong=\"H3427\"* and|strong=\"H3063\"* without|strong=\"H2351\"* animal,’" + }, + { + "verseNum": 11, + "text": "the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H1004\"* joy|strong=\"H8057\"* and|strong=\"H3068\"* the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H1004\"* gladness|strong=\"H8057\"*, the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H1004\"* the|strong=\"H3588\"* bridegroom|strong=\"H2860\"* and|strong=\"H3068\"* the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H1004\"* the|strong=\"H3588\"* bride|strong=\"H3618\"*, the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H1004\"* those|strong=\"H3588\"* who|strong=\"H3068\"* say|strong=\"H7725\"*, ‘Give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* good|strong=\"H2896\"*, for|strong=\"H3588\"* his|strong=\"H3068\"* loving|strong=\"H2896\"* kindness|strong=\"H2617\"* endures|strong=\"H5769\"* forever|strong=\"H5769\"*;’ who|strong=\"H3068\"* bring|strong=\"H7725\"* thanksgiving|strong=\"H8426\"* into|strong=\"H7725\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*. For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* cause|strong=\"H7725\"* the|strong=\"H3588\"* captivity|strong=\"H7622\"* of|strong=\"H1004\"* the|strong=\"H3588\"* land to|strong=\"H7725\"* be|strong=\"H3068\"* reversed as|strong=\"H3068\"* at|strong=\"H3068\"* the|strong=\"H3588\"* first|strong=\"H7223\"*,” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “Yet|strong=\"H5750\"* again|strong=\"H5750\"* there|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* in|strong=\"H3068\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* waste|strong=\"H2720\"*, without|strong=\"H2720\"* man|strong=\"H3605\"* and|strong=\"H3068\"* without|strong=\"H2720\"* animal|strong=\"H1961\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* all|strong=\"H3605\"* its|strong=\"H3605\"* cities|strong=\"H5892\"*, a|strong=\"H3068\"* habitation|strong=\"H5116\"* of|strong=\"H3068\"* shepherds|strong=\"H7462\"* causing|strong=\"H7462\"* their|strong=\"H3605\"* flocks|strong=\"H6629\"* to|strong=\"H5704\"* lie|strong=\"H7257\"* down|strong=\"H7257\"*." + }, + { + "verseNum": 13, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* the|strong=\"H5921\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* the|strong=\"H5921\"* lowland|strong=\"H8219\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* the|strong=\"H5921\"* South|strong=\"H5045\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H3068\"* Benjamin|strong=\"H1144\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* places|strong=\"H3027\"* around|strong=\"H5439\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* in|strong=\"H5921\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, the|strong=\"H5921\"* flocks|strong=\"H6629\"* will|strong=\"H3068\"* again|strong=\"H5750\"* pass|strong=\"H5674\"* under|strong=\"H5921\"* the|strong=\"H5921\"* hands|strong=\"H3027\"* of|strong=\"H3068\"* him|strong=\"H5921\"* who|strong=\"H3068\"* counts|strong=\"H4487\"* them|strong=\"H5921\"*,” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "“Behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H3478\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3068\"* perform|strong=\"H6965\"* that|strong=\"H3117\"* good|strong=\"H2896\"* word|strong=\"H1697\"* which|strong=\"H3068\"* I|strong=\"H3117\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* concerning|strong=\"H5921\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* concerning|strong=\"H5921\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 15, + "text": "“In|strong=\"H6213\"* those|strong=\"H1992\"* days|strong=\"H3117\"* and|strong=\"H3117\"* at|strong=\"H1732\"* that|strong=\"H3117\"* time|strong=\"H6256\"*," + }, + { + "verseNum": 16, + "text": "In|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"* Judah|strong=\"H3063\"* will|strong=\"H3068\"* be|strong=\"H3068\"* saved|strong=\"H3467\"*," + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “David|strong=\"H1732\"* will|strong=\"H3068\"* never|strong=\"H3808\"* lack|strong=\"H3772\"* a|strong=\"H3068\"* man to|strong=\"H3478\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3605\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"* won’t lack|strong=\"H3772\"* a|strong=\"H3068\"* man|strong=\"H3605\"* before|strong=\"H6440\"* me|strong=\"H6440\"* to|strong=\"H5927\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*, to|strong=\"H5927\"* burn|strong=\"H6999\"* meal|strong=\"H4503\"* offerings|strong=\"H5930\"*, and|strong=\"H3117\"* to|strong=\"H5927\"* do|strong=\"H6213\"* sacrifice|strong=\"H2077\"* continually|strong=\"H3605\"*.”" + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 20, + "text": "“Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘If|strong=\"H1961\"* you|strong=\"H3117\"* can break|strong=\"H6565\"* my|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* the|strong=\"H3541\"* day|strong=\"H3117\"* and|strong=\"H3068\"* my|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* the|strong=\"H3541\"* night|strong=\"H3915\"*, so|strong=\"H3541\"* that|strong=\"H3117\"* there|strong=\"H1961\"* will|strong=\"H3068\"* not|strong=\"H1115\"* be|strong=\"H1961\"* day|strong=\"H3117\"* and|strong=\"H3068\"* night|strong=\"H3915\"* in|strong=\"H3068\"* their|strong=\"H3068\"* time|strong=\"H6256\"*," + }, + { + "verseNum": 21, + "text": "then|strong=\"H1961\"* my|strong=\"H1732\"* covenant|strong=\"H1285\"* could|strong=\"H1571\"* also|strong=\"H1571\"* be|strong=\"H1961\"* broken|strong=\"H6565\"* with|strong=\"H1285\"* David|strong=\"H1732\"* my|strong=\"H1732\"* servant|strong=\"H5650\"*, that|strong=\"H3548\"* he|strong=\"H1732\"* won’t have|strong=\"H1961\"* a|strong=\"H3068\"* son|strong=\"H1121\"* to|strong=\"H1961\"* reign|strong=\"H4427\"* on|strong=\"H5921\"* his|strong=\"H1732\"* throne|strong=\"H3678\"*; and|strong=\"H1121\"* with|strong=\"H1285\"* the|strong=\"H5921\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"*, my|strong=\"H1732\"* ministers|strong=\"H8334\"*." + }, + { + "verseNum": 22, + "text": "As|strong=\"H3651\"* the|strong=\"H3651\"* army|strong=\"H6635\"* of|strong=\"H5650\"* the|strong=\"H3651\"* sky|strong=\"H8064\"* can|strong=\"H5650\"*’t be|strong=\"H3808\"* counted|strong=\"H5608\"*, and|strong=\"H8064\"* the|strong=\"H3651\"* sand|strong=\"H2344\"* of|strong=\"H5650\"* the|strong=\"H3651\"* sea|strong=\"H3220\"* can|strong=\"H5650\"*’t be|strong=\"H3808\"* measured|strong=\"H4058\"*, so|strong=\"H3651\"* I|strong=\"H3651\"* will|strong=\"H5650\"* multiply|strong=\"H7235\"* the|strong=\"H3651\"* offspring|strong=\"H2233\"* of|strong=\"H5650\"* David|strong=\"H1732\"* my|strong=\"H1732\"* servant|strong=\"H5650\"* and|strong=\"H8064\"* the|strong=\"H3651\"* Levites|strong=\"H3881\"* who|strong=\"H5650\"* minister|strong=\"H8334\"* to|strong=\"H1732\"* me|strong=\"H5650\"*.’”" + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 24, + "text": "“Don’t consider|strong=\"H7200\"* what|strong=\"H4100\"* this|strong=\"H2088\"* people|strong=\"H5971\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*, saying|strong=\"H1696\"*, ‘Has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* cast|strong=\"H3068\"* off|strong=\"H3988\"* the|strong=\"H6440\"* two|strong=\"H8147\"* families|strong=\"H4940\"* which|strong=\"H3068\"* he|strong=\"H3068\"* chose?’ Thus|strong=\"H2088\"* they|strong=\"H3068\"* despise|strong=\"H3988\"* my|strong=\"H3068\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* should|strong=\"H3068\"* be|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* before|strong=\"H6440\"* them|strong=\"H6440\"*.”" + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “If|strong=\"H7760\"* my|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* day|strong=\"H3119\"* and|strong=\"H3068\"* night|strong=\"H3915\"* fails, if|strong=\"H7760\"* I|strong=\"H3541\"* have|strong=\"H3068\"* not|strong=\"H3808\"* appointed|strong=\"H7760\"* the|strong=\"H3541\"* ordinances|strong=\"H2708\"* of|strong=\"H3068\"* heaven|strong=\"H8064\"* and|strong=\"H3068\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 26, + "text": "then|strong=\"H3947\"* I|strong=\"H3588\"* will|strong=\"H5650\"* also|strong=\"H1571\"* cast|strong=\"H3988\"* away|strong=\"H7725\"* the|strong=\"H3588\"* offspring|strong=\"H2233\"* of|strong=\"H5650\"* Jacob|strong=\"H3290\"*, and|strong=\"H7725\"* of|strong=\"H5650\"* David|strong=\"H1732\"* my|strong=\"H1732\"* servant|strong=\"H5650\"*, so|strong=\"H3947\"* that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5650\"* not|strong=\"H3588\"* take|strong=\"H3947\"* of|strong=\"H5650\"* his|strong=\"H3947\"* offspring|strong=\"H2233\"* to|strong=\"H7725\"* be|strong=\"H1571\"* rulers|strong=\"H4910\"* over|strong=\"H4910\"* the|strong=\"H3588\"* offspring|strong=\"H2233\"* of|strong=\"H5650\"* Abraham|strong=\"H3947\"*, Isaac|strong=\"H3446\"*, and|strong=\"H7725\"* Jacob|strong=\"H3290\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5650\"* cause|strong=\"H7725\"* their|strong=\"H3947\"* captivity|strong=\"H7622\"* to|strong=\"H7725\"* be|strong=\"H1571\"* reversed and|strong=\"H7725\"* will|strong=\"H5650\"* have|strong=\"H7355\"* mercy|strong=\"H7355\"* on|strong=\"H7355\"* them|strong=\"H7725\"*.”" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* word|strong=\"H1697\"* which|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, when|strong=\"H1961\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* army|strong=\"H2428\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H4428\"* the|strong=\"H3605\"* earth that|strong=\"H5971\"* were|strong=\"H1961\"* under|strong=\"H5921\"* his|strong=\"H3605\"* dominion|strong=\"H4475\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"*, were|strong=\"H1961\"* fighting|strong=\"H3898\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3068\"* against|strong=\"H5921\"* all|strong=\"H3605\"* its|strong=\"H3605\"* cities|strong=\"H5892\"*, saying|strong=\"H1697\"*:" + }, + { + "verseNum": 2, + "text": "“Yahweh|strong=\"H3068\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘Go|strong=\"H1980\"*, and|strong=\"H1980\"* speak to|strong=\"H1980\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H1980\"* tell him|strong=\"H5414\"*, Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* give|strong=\"H5414\"* this|strong=\"H2063\"* city|strong=\"H5892\"* into|strong=\"H1980\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon and|strong=\"H1980\"* he|strong=\"H3068\"* will|strong=\"H3068\"* burn|strong=\"H8313\"* it|strong=\"H5414\"* with|strong=\"H1980\"* fire." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3588\"* won’t escape|strong=\"H4422\"* out|strong=\"H5414\"* of|strong=\"H4428\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*, but|strong=\"H3588\"* will|strong=\"H4428\"* surely|strong=\"H3588\"* be|strong=\"H3808\"* taken|strong=\"H8610\"* and|strong=\"H4428\"* delivered|strong=\"H5414\"* into|strong=\"H3027\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*. Your|strong=\"H5414\"* eyes|strong=\"H5869\"* will|strong=\"H4428\"* see|strong=\"H7200\"* the|strong=\"H7200\"* eyes|strong=\"H5869\"* of|strong=\"H4428\"* the|strong=\"H7200\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H4428\"* he|strong=\"H3588\"* will|strong=\"H4428\"* speak|strong=\"H1696\"* with|strong=\"H1696\"* you|strong=\"H3588\"* mouth|strong=\"H6310\"* to|strong=\"H1696\"* mouth|strong=\"H6310\"*. You|strong=\"H3588\"* will|strong=\"H4428\"* go|strong=\"H4428\"* to|strong=\"H1696\"* Babylon.”’" + }, + { + "verseNum": 4, + "text": "“Yet|strong=\"H3068\"* hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, O|strong=\"H3068\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*. Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* you|strong=\"H5921\"*, ‘You|strong=\"H5921\"* won’t die|strong=\"H4191\"* by|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* die|strong=\"H4191\"* in|strong=\"H3068\"* peace|strong=\"H7965\"*; and|strong=\"H3068\"* with|strong=\"H8313\"* the|strong=\"H6440\"* burnings|strong=\"H4955\"* of|strong=\"H4428\"* your|strong=\"H3068\"* fathers, the|strong=\"H6440\"* former|strong=\"H7223\"* kings|strong=\"H4428\"* who|strong=\"H3068\"* were|strong=\"H1961\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, so|strong=\"H3651\"* they|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H3588\"* a|strong=\"H3068\"* burning|strong=\"H8313\"* for|strong=\"H3588\"* you|strong=\"H3588\"*. They|strong=\"H3588\"* will|strong=\"H3068\"* lament|strong=\"H5594\"* you|strong=\"H3588\"*, saying|strong=\"H1697\"*, “Ah|strong=\"H1945\"* Lord|strong=\"H3068\"*!” for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"* the|strong=\"H6440\"* word|strong=\"H1697\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H1696\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* spoke|strong=\"H1696\"* all|strong=\"H3605\"* these|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* in|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 7, + "text": "when|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon’s army|strong=\"H2428\"* was|strong=\"H5892\"* fighting|strong=\"H3898\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* against|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* that|strong=\"H3588\"* were|strong=\"H3063\"* left|strong=\"H7604\"*, against|strong=\"H5921\"* Lachish|strong=\"H3923\"* and|strong=\"H3063\"* against|strong=\"H5921\"* Azekah|strong=\"H5825\"*; for|strong=\"H3588\"* these|strong=\"H2007\"* alone|strong=\"H7604\"* remained|strong=\"H7604\"* of|strong=\"H4428\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* as|strong=\"H3389\"* fortified|strong=\"H4013\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3605\"* word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H3772\"* Yahweh|strong=\"H3068\"*, after|strong=\"H1961\"* King|strong=\"H4428\"* Zedekiah|strong=\"H6667\"* had|strong=\"H3068\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H1961\"* at|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, to|strong=\"H3068\"* proclaim|strong=\"H7121\"* liberty|strong=\"H1865\"* to|strong=\"H3068\"* them|strong=\"H1992\"*," + }, + { + "verseNum": 9, + "text": "that|strong=\"H3064\"* every|strong=\"H7971\"* man|strong=\"H5680\"* should|strong=\"H5650\"* let|strong=\"H7971\"* his|strong=\"H7971\"* male|strong=\"H5650\"* servant|strong=\"H5650\"*, and|strong=\"H7971\"* every|strong=\"H7971\"* man|strong=\"H5680\"* his|strong=\"H7971\"* female|strong=\"H8198\"* servant|strong=\"H5650\"*, who|strong=\"H5650\"* is|strong=\"H5650\"* a|strong=\"H3068\"* Hebrew|strong=\"H5680\"* or|strong=\"H1115\"* a|strong=\"H3068\"* Hebrewess|strong=\"H5680\"*, go|strong=\"H7971\"* free|strong=\"H2670\"*, that|strong=\"H3064\"* no|strong=\"H1115\"* one should|strong=\"H5650\"* make|strong=\"H5647\"* bondservants of|strong=\"H5650\"* them|strong=\"H7971\"*, of|strong=\"H5650\"* a|strong=\"H3068\"* Jew|strong=\"H3064\"* his|strong=\"H7971\"* brother." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* obeyed|strong=\"H8085\"* who|strong=\"H3605\"* had|strong=\"H5971\"* entered into the|strong=\"H3605\"* covenant|strong=\"H1285\"*, that|strong=\"H5971\"* everyone|strong=\"H3605\"* should|strong=\"H5650\"* let|strong=\"H7971\"* his|strong=\"H3605\"* male|strong=\"H5650\"* servant|strong=\"H5650\"* and|strong=\"H7971\"* everyone|strong=\"H3605\"* his|strong=\"H3605\"* female|strong=\"H8198\"* servant|strong=\"H5650\"* go|strong=\"H7971\"* free|strong=\"H2670\"*, that|strong=\"H5971\"* no|strong=\"H1115\"* one|strong=\"H3605\"* should|strong=\"H5650\"* make|strong=\"H8085\"* bondservants of|strong=\"H8269\"* them|strong=\"H7971\"* any|strong=\"H3605\"* more|strong=\"H5750\"*. They|strong=\"H5971\"* obeyed|strong=\"H8085\"* and|strong=\"H7971\"* let|strong=\"H7971\"* them|strong=\"H7971\"* go|strong=\"H7971\"*," + }, + { + "verseNum": 11, + "text": "but|strong=\"H3651\"* afterwards they|strong=\"H3651\"* turned|strong=\"H7725\"*, and|strong=\"H7971\"* caused the|strong=\"H7725\"* servants|strong=\"H5650\"* and|strong=\"H7971\"* the|strong=\"H7725\"* handmaids|strong=\"H8198\"* whom they|strong=\"H3651\"* had|strong=\"H8198\"* let|strong=\"H7971\"* go|strong=\"H7971\"* free|strong=\"H2670\"* to|strong=\"H7725\"* return|strong=\"H7725\"*, and|strong=\"H7971\"* brought|strong=\"H7725\"* them|strong=\"H7725\"* into|strong=\"H7725\"* subjection|strong=\"H3533\"* for|strong=\"H7971\"* servants|strong=\"H5650\"* and|strong=\"H7971\"* for|strong=\"H7971\"* handmaids|strong=\"H8198\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 13, + "text": "“Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘I|strong=\"H3117\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1004\"* your|strong=\"H3068\"* fathers in|strong=\"H3478\"* the|strong=\"H3541\"* day|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* brought|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3541\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3541\"* house|strong=\"H1004\"* of|strong=\"H1004\"* bondage|strong=\"H5650\"*, saying:" + }, + { + "verseNum": 14, + "text": "At|strong=\"H3808\"* the|strong=\"H8085\"* end|strong=\"H7093\"* of|strong=\"H8141\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*, every|strong=\"H7971\"* man|strong=\"H5680\"* of|strong=\"H8141\"* you|strong=\"H7971\"* shall|strong=\"H3808\"* release|strong=\"H7971\"* his|strong=\"H7971\"* brother who|strong=\"H4376\"* is|strong=\"H7093\"* a|strong=\"H3068\"* Hebrew|strong=\"H5680\"*, who|strong=\"H4376\"* has|strong=\"H7093\"* been|strong=\"H5647\"* sold|strong=\"H4376\"* to|strong=\"H7971\"* you|strong=\"H7971\"*, and|strong=\"H7971\"* has|strong=\"H7093\"* served|strong=\"H5647\"* you|strong=\"H7971\"* six|strong=\"H8337\"* years|strong=\"H8141\"*. You|strong=\"H7971\"* shall|strong=\"H3808\"* let|strong=\"H7971\"* him|strong=\"H7971\"* go|strong=\"H7971\"* free|strong=\"H2670\"* from|strong=\"H8085\"* you|strong=\"H7971\"*. But|strong=\"H3808\"* your|strong=\"H5186\"* fathers didn’t listen|strong=\"H8085\"* to|strong=\"H7971\"* me|strong=\"H7971\"*, and|strong=\"H7971\"* didn’t incline|strong=\"H5186\"* their|strong=\"H8085\"* ear|strong=\"H8085\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H6440\"* had|strong=\"H5869\"* now|strong=\"H3117\"* turned|strong=\"H7725\"*, and|strong=\"H7725\"* had|strong=\"H5869\"* done|strong=\"H6213\"* that|strong=\"H3117\"* which|strong=\"H1004\"* is|strong=\"H3117\"* right|strong=\"H3477\"* in|strong=\"H5921\"* my|strong=\"H5921\"* eyes|strong=\"H5869\"*, in|strong=\"H5921\"* every|strong=\"H7725\"* man|strong=\"H6440\"* proclaiming|strong=\"H7121\"* liberty|strong=\"H1865\"* to|strong=\"H7725\"* his|strong=\"H7121\"* neighbor|strong=\"H7453\"*. You|strong=\"H6440\"* had|strong=\"H5869\"* made|strong=\"H6213\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* before|strong=\"H6440\"* me|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* house|strong=\"H1004\"* which|strong=\"H1004\"* is|strong=\"H3117\"* called|strong=\"H7121\"* by|strong=\"H5921\"* my|strong=\"H5921\"* name|strong=\"H8034\"*;" + }, + { + "verseNum": 16, + "text": "but|strong=\"H1961\"* you|strong=\"H7971\"* turned|strong=\"H7725\"* and|strong=\"H7971\"* profaned|strong=\"H2490\"* my|strong=\"H7971\"* name|strong=\"H8034\"*, and|strong=\"H7971\"* every|strong=\"H7725\"* man|strong=\"H5315\"* caused|strong=\"H1961\"* his|strong=\"H7971\"* servant|strong=\"H5650\"* and|strong=\"H7971\"* every|strong=\"H7725\"* man|strong=\"H5315\"* his|strong=\"H7971\"* handmaid|strong=\"H8198\"*, whom you|strong=\"H7971\"* had|strong=\"H1961\"* let|strong=\"H7971\"* go|strong=\"H7971\"* free|strong=\"H2670\"* at|strong=\"H7725\"* their|strong=\"H7725\"* pleasure|strong=\"H5315\"*, to|strong=\"H7725\"* return|strong=\"H7725\"*. You|strong=\"H7971\"* brought|strong=\"H7725\"* them|strong=\"H7725\"* into|strong=\"H7725\"* subjection|strong=\"H3533\"*, to|strong=\"H7725\"* be|strong=\"H1961\"* to|strong=\"H7725\"* you|strong=\"H7971\"* for|strong=\"H7971\"* servants|strong=\"H5650\"* and|strong=\"H7971\"* for|strong=\"H7971\"* handmaids|strong=\"H8198\"*.’”" + }, + { + "verseNum": 17, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*: “You|strong=\"H5414\"* have|strong=\"H3068\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* me|strong=\"H5414\"*, to|strong=\"H3068\"* proclaim|strong=\"H7121\"* liberty|strong=\"H1865\"*, every|strong=\"H3605\"* man|strong=\"H3605\"* to|strong=\"H3068\"* his|strong=\"H3605\"* brother|strong=\"H7453\"*, and|strong=\"H3068\"* every|strong=\"H3605\"* man|strong=\"H3605\"* to|strong=\"H3068\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"*. Behold|strong=\"H2005\"*, I|strong=\"H2005\"* proclaim|strong=\"H7121\"* to|strong=\"H3068\"* you|strong=\"H5414\"* a|strong=\"H3068\"* liberty|strong=\"H1865\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “to|strong=\"H3068\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, to|strong=\"H3068\"* the|strong=\"H3605\"* pestilence|strong=\"H1698\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*. I|strong=\"H2005\"* will|strong=\"H3068\"* make|strong=\"H5414\"* you|strong=\"H5414\"* be|strong=\"H3808\"* tossed back and|strong=\"H3068\"* forth|strong=\"H5414\"* among|strong=\"H2719\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 18, + "text": "I|strong=\"H5414\"* will|strong=\"H1697\"* give|strong=\"H5414\"* the|strong=\"H6440\"* men|strong=\"H8147\"* who|strong=\"H3808\"* have|strong=\"H1697\"* transgressed|strong=\"H5674\"* my|strong=\"H5414\"* covenant|strong=\"H1285\"*, who|strong=\"H3808\"* have|strong=\"H1697\"* not|strong=\"H3808\"* performed|strong=\"H6965\"* the|strong=\"H6440\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H6440\"* covenant|strong=\"H1285\"* which|strong=\"H1697\"* they|strong=\"H3808\"* made|strong=\"H3772\"* before|strong=\"H6440\"* me|strong=\"H5414\"* when|strong=\"H5674\"* they|strong=\"H3808\"* cut|strong=\"H3772\"* the|strong=\"H6440\"* calf|strong=\"H5695\"* in|strong=\"H6440\"* two|strong=\"H8147\"* and|strong=\"H6965\"* passed|strong=\"H5674\"* between|strong=\"H5674\"* its|strong=\"H5414\"* parts|strong=\"H1335\"*:" + }, + { + "verseNum": 19, + "text": "the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Judah|strong=\"H3063\"*, the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Jerusalem|strong=\"H3389\"*, the|strong=\"H3605\"* eunuchs|strong=\"H5631\"*, the|strong=\"H3605\"* priests|strong=\"H3548\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H8269\"* the|strong=\"H3605\"* land, who|strong=\"H3605\"* passed|strong=\"H5674\"* between|strong=\"H5674\"* the|strong=\"H3605\"* parts|strong=\"H1335\"* of|strong=\"H8269\"* the|strong=\"H3605\"* calf|strong=\"H5695\"*." + }, + { + "verseNum": 20, + "text": "I|strong=\"H5414\"* will|strong=\"H1961\"* even give|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* their|strong=\"H5414\"* enemies|strong=\"H3027\"* and|strong=\"H8064\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* those|strong=\"H1961\"* who|strong=\"H5315\"* seek|strong=\"H1245\"* their|strong=\"H5414\"* life|strong=\"H5315\"*. Their|strong=\"H5414\"* dead|strong=\"H5315\"* bodies|strong=\"H5038\"* will|strong=\"H1961\"* be|strong=\"H1961\"* food|strong=\"H3978\"* for|strong=\"H3027\"* the|strong=\"H5414\"* birds|strong=\"H5775\"* of|strong=\"H3027\"* the|strong=\"H5414\"* sky|strong=\"H8064\"* and|strong=\"H8064\"* for|strong=\"H3027\"* the|strong=\"H5414\"* animals|strong=\"H1961\"* of|strong=\"H3027\"* the|strong=\"H5414\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 21, + "text": "“I|strong=\"H5414\"* will|strong=\"H4428\"* give|strong=\"H5414\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* his|strong=\"H5414\"* princes|strong=\"H8269\"* into|strong=\"H5927\"* the|strong=\"H5921\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* their|strong=\"H5414\"* enemies|strong=\"H3027\"*, into|strong=\"H5927\"* the|strong=\"H5921\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* those|strong=\"H5921\"* who|strong=\"H5315\"* seek|strong=\"H1245\"* their|strong=\"H5414\"* life|strong=\"H5315\"* and|strong=\"H3063\"* into|strong=\"H5927\"* the|strong=\"H5921\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon’s army|strong=\"H2428\"*, who|strong=\"H5315\"* has|strong=\"H4428\"* gone|strong=\"H5927\"* away|strong=\"H5927\"* from|strong=\"H5921\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 22, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* command|strong=\"H6680\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “and|strong=\"H3063\"* cause|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* this|strong=\"H2063\"* city|strong=\"H5892\"*. They|strong=\"H3068\"* will|strong=\"H3068\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* it|strong=\"H5414\"*, take|strong=\"H3920\"* it|strong=\"H5414\"*, and|strong=\"H3063\"* burn|strong=\"H8313\"* it|strong=\"H5414\"* with|strong=\"H8313\"* fire. I|strong=\"H2005\"* will|strong=\"H3068\"* make|strong=\"H5414\"* the|strong=\"H5002\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*, without|strong=\"H3427\"* inhabitant|strong=\"H3427\"*.”" + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* word|strong=\"H1697\"* which|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H1121\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Go|strong=\"H1980\"* to|strong=\"H1696\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H3068\"* Rechabites|strong=\"H7397\"*, and|strong=\"H1980\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H8248\"*, and|strong=\"H1980\"* bring|strong=\"H1980\"* them|strong=\"H8248\"* into|strong=\"H1980\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, into|strong=\"H1980\"* one|strong=\"H3068\"* of|strong=\"H1004\"* the|strong=\"H3068\"* rooms|strong=\"H3957\"*, and|strong=\"H1980\"* give|strong=\"H8248\"* them|strong=\"H8248\"* wine|strong=\"H3196\"* to|strong=\"H1696\"* drink|strong=\"H8248\"*.”" + }, + { + "verseNum": 3, + "text": "Then|strong=\"H3947\"* I|strong=\"H1121\"* took|strong=\"H3947\"* Jaazaniah|strong=\"H2970\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeremiah|strong=\"H3414\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Habazziniah|strong=\"H2262\"*, with|strong=\"H1004\"* his|strong=\"H3605\"* brothers|strong=\"H1121\"*, all|strong=\"H3605\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Rechabites|strong=\"H7397\"*;" + }, + { + "verseNum": 4, + "text": "and|strong=\"H1121\"* I|strong=\"H1121\"* brought|strong=\"H3068\"* them|strong=\"H1121\"* into Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, into the|strong=\"H8104\"* room|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H8104\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hanan|strong=\"H2605\"* the|strong=\"H8104\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Igdaliah|strong=\"H3012\"*, the|strong=\"H8104\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God|strong=\"H3068\"*, which|strong=\"H3068\"* was|strong=\"H3068\"* by|strong=\"H3068\"* the|strong=\"H8104\"* room|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H8104\"* princes|strong=\"H8269\"*, which|strong=\"H3068\"* was|strong=\"H3068\"* above|strong=\"H4605\"* the|strong=\"H8104\"* room|strong=\"H1004\"* of|strong=\"H1121\"* Maaseiah|strong=\"H4641\"* the|strong=\"H8104\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shallum|strong=\"H7967\"*, the|strong=\"H8104\"* keeper|strong=\"H8104\"* of|strong=\"H1121\"* the|strong=\"H8104\"* threshold|strong=\"H5592\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H5414\"* set|strong=\"H5414\"* before|strong=\"H6440\"* the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Rechabites|strong=\"H7397\"* bowls|strong=\"H1375\"* full|strong=\"H4392\"* of|strong=\"H1121\"* wine|strong=\"H3196\"*, and|strong=\"H1121\"* cups|strong=\"H1375\"*; and|strong=\"H1121\"* I|strong=\"H5414\"* said to|strong=\"H5414\"* them|strong=\"H5414\"*, “Drink|strong=\"H8354\"* wine|strong=\"H3196\"*!”" + }, + { + "verseNum": 6, + "text": "But|strong=\"H3588\"* they|strong=\"H3588\"* said, “We|strong=\"H3588\"* will|strong=\"H1121\"* drink|strong=\"H8354\"* no|strong=\"H3808\"* wine|strong=\"H3196\"*; for|strong=\"H3588\"* Jonadab|strong=\"H3122\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Rechab|strong=\"H7394\"*, our|strong=\"H5921\"* father|strong=\"H1121\"*, commanded|strong=\"H6680\"* us|strong=\"H5921\"*, saying, ‘You|strong=\"H3588\"* shall|strong=\"H1121\"* drink|strong=\"H8354\"* no|strong=\"H3808\"* wine|strong=\"H3196\"*, neither|strong=\"H3808\"* you|strong=\"H3588\"* nor|strong=\"H3808\"* your|strong=\"H5921\"* children|strong=\"H1121\"*, forever|strong=\"H5769\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H3588\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"*, sow|strong=\"H2232\"* seed|strong=\"H2233\"*, plant|strong=\"H5193\"* a|strong=\"H3068\"* vineyard|strong=\"H3754\"*, or|strong=\"H3808\"* have|strong=\"H1961\"* any|strong=\"H3605\"*; but|strong=\"H3588\"* all|strong=\"H3605\"* your|strong=\"H3605\"* days|strong=\"H3117\"* you|strong=\"H3588\"* shall|strong=\"H1004\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* tents, that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H1961\"* live|strong=\"H3427\"* many|strong=\"H7227\"* days|strong=\"H3117\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land|strong=\"H6440\"* in|strong=\"H3427\"* which|strong=\"H1004\"* you|strong=\"H3588\"* live|strong=\"H3427\"* as|strong=\"H3117\"* nomads.’" + }, + { + "verseNum": 8, + "text": "We|strong=\"H3117\"* have|strong=\"H1121\"* obeyed|strong=\"H8085\"* the|strong=\"H3605\"* voice|strong=\"H6963\"* of|strong=\"H1121\"* Jonadab|strong=\"H3082\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Rechab|strong=\"H7394\"*, our|strong=\"H3605\"* father|strong=\"H1121\"*, in|strong=\"H8085\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* commanded|strong=\"H6680\"* us|strong=\"H3117\"*, to|strong=\"H3117\"* drink|strong=\"H8354\"* no|strong=\"H1115\"* wine|strong=\"H3196\"* all|strong=\"H3605\"* our|strong=\"H3605\"* days|strong=\"H3117\"*, we|strong=\"H3068\"*, our|strong=\"H3605\"* wives, our|strong=\"H3605\"* sons|strong=\"H1121\"*, or|strong=\"H8085\"* our|strong=\"H3605\"* daughters|strong=\"H1323\"*;" + }, + { + "verseNum": 9, + "text": "and|strong=\"H1004\"* not|strong=\"H3808\"* to|strong=\"H1961\"* build|strong=\"H1129\"* houses|strong=\"H1004\"* for|strong=\"H3427\"* ourselves|strong=\"H1129\"* to|strong=\"H1961\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"*. We have|strong=\"H1961\"* no|strong=\"H3808\"* vineyard|strong=\"H3754\"*, field|strong=\"H7704\"*, or|strong=\"H3808\"* seed|strong=\"H2233\"*;" + }, + { + "verseNum": 10, + "text": "but|strong=\"H8085\"* we|strong=\"H3068\"* have|strong=\"H3605\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* tents, and|strong=\"H8085\"* have|strong=\"H3605\"* obeyed|strong=\"H8085\"*, and|strong=\"H8085\"* done|strong=\"H6213\"* according to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Jonadab|strong=\"H3122\"* our|strong=\"H3605\"* father commanded|strong=\"H6680\"* us|strong=\"H6213\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H1961\"* when|strong=\"H1961\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon came|strong=\"H1961\"* up|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, we|strong=\"H3068\"* said, ‘Come|strong=\"H5927\"*! Let|strong=\"H1961\"*’s go|strong=\"H5927\"* to|strong=\"H5927\"* Jerusalem|strong=\"H3389\"* for|strong=\"H6440\"* fear|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H6440\"* army|strong=\"H2428\"* of|strong=\"H4428\"* the|strong=\"H6440\"* Chaldeans|strong=\"H3778\"*, and|strong=\"H4428\"* for|strong=\"H6440\"* fear|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H6440\"* army|strong=\"H2428\"* of|strong=\"H4428\"* the|strong=\"H6440\"* Syrians; so|strong=\"H1961\"* we|strong=\"H3068\"* will|strong=\"H1961\"* dwell|strong=\"H3427\"* at|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*.’”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 13, + "text": "“Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H5002\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H5002\"*: ‘Go|strong=\"H1980\"* and|strong=\"H1980\"* tell|strong=\"H8085\"* the|strong=\"H5002\"* men|strong=\"H1980\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H1980\"* the|strong=\"H5002\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, “Will|strong=\"H3068\"* you|strong=\"H3947\"* not|strong=\"H3808\"* receive|strong=\"H3947\"* instruction|strong=\"H4148\"* to|strong=\"H1980\"* listen|strong=\"H8085\"* to|strong=\"H1980\"* my|strong=\"H8085\"* words|strong=\"H1697\"*?” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "“The|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Jonadab|strong=\"H3082\"* the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Rechab|strong=\"H7394\"* that|strong=\"H3588\"* he|strong=\"H3588\"* commanded|strong=\"H6680\"* his|strong=\"H8085\"* sons|strong=\"H1121\"*, not|strong=\"H3808\"* to|strong=\"H1696\"* drink|strong=\"H8354\"* wine|strong=\"H3196\"*, are|strong=\"H3117\"* performed|strong=\"H6965\"*; and|strong=\"H1121\"* to|strong=\"H1696\"* this|strong=\"H2088\"* day|strong=\"H3117\"* they|strong=\"H3588\"* drink|strong=\"H8354\"* none|strong=\"H3808\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* obey|strong=\"H8085\"* their|strong=\"H8085\"* father|strong=\"H1121\"*’s commandment|strong=\"H4687\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1121\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"*, rising|strong=\"H6965\"* up|strong=\"H6965\"* early|strong=\"H7925\"* and|strong=\"H1121\"* speaking|strong=\"H1696\"*, and|strong=\"H1121\"* you|strong=\"H3588\"* have|strong=\"H1121\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H1696\"* me|strong=\"H1696\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H5414\"* have|strong=\"H5030\"* sent|strong=\"H7971\"* also|strong=\"H5030\"* to|strong=\"H7725\"* you|strong=\"H5414\"* all|strong=\"H3605\"* my|strong=\"H8085\"* servants|strong=\"H5650\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*, rising|strong=\"H7925\"* up|strong=\"H5414\"* early|strong=\"H7925\"* and|strong=\"H7971\"* sending|strong=\"H7971\"* them|strong=\"H5414\"*, saying, ‘Every|strong=\"H3605\"* one|strong=\"H3605\"* of|strong=\"H3427\"* you|strong=\"H5414\"* must|strong=\"H3808\"* return|strong=\"H7725\"* now|strong=\"H4994\"* from|strong=\"H7725\"* his|strong=\"H3605\"* evil|strong=\"H7451\"* way|strong=\"H1870\"*, amend|strong=\"H3190\"* your|strong=\"H3605\"* doings|strong=\"H4611\"*, and|strong=\"H7971\"* don’t go|strong=\"H3212\"* after|strong=\"H7971\"* other|strong=\"H3605\"* gods to|strong=\"H7725\"* serve|strong=\"H5647\"* them|strong=\"H5414\"*. Then|strong=\"H7971\"* you|strong=\"H5414\"* will|strong=\"H5650\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land which|strong=\"H5030\"* I|strong=\"H5414\"* have|strong=\"H5030\"* given|strong=\"H5414\"* to|strong=\"H7725\"* you|strong=\"H5414\"* and|strong=\"H7971\"* to|strong=\"H7725\"* your|strong=\"H3605\"* fathers;’ but|strong=\"H3808\"* you|strong=\"H5414\"* have|strong=\"H5030\"* not|strong=\"H3808\"* inclined|strong=\"H5186\"* your|strong=\"H3605\"* ear|strong=\"H8085\"*, nor|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H7725\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H8085\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jonadab|strong=\"H3082\"* the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Rechab|strong=\"H7394\"* have|strong=\"H5971\"* performed|strong=\"H6965\"* the|strong=\"H8085\"* commandment|strong=\"H4687\"* of|strong=\"H1121\"* their|strong=\"H8085\"* father|strong=\"H1121\"* which|strong=\"H5971\"* he|strong=\"H3588\"* commanded|strong=\"H6680\"* them|strong=\"H6680\"*, but|strong=\"H3588\"* this|strong=\"H2088\"* people|strong=\"H5971\"* has|strong=\"H3588\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H6680\"*.”’" + }, + { + "verseNum": 17, + "text": "“Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* bring|strong=\"H7451\"* on|strong=\"H5921\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H3605\"* I|strong=\"H2005\"* have|strong=\"H3068\"* pronounced|strong=\"H1696\"* against|strong=\"H5921\"* them|strong=\"H5921\"*, because|strong=\"H5921\"* I|strong=\"H2005\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5921\"*, but|strong=\"H3808\"* they|strong=\"H3651\"* have|strong=\"H3068\"* not|strong=\"H3808\"* heard|strong=\"H8085\"*; and|strong=\"H3063\"* I|strong=\"H2005\"* have|strong=\"H3068\"* called|strong=\"H7121\"* to|strong=\"H1696\"* them|strong=\"H5921\"*, but|strong=\"H3808\"* they|strong=\"H3651\"* have|strong=\"H3068\"* not|strong=\"H3808\"* answered|strong=\"H6030\"*.’”" + }, + { + "verseNum": 18, + "text": "Jeremiah|strong=\"H3414\"* said|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H3605\"* Rechabites|strong=\"H7397\"*, “Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘Because|strong=\"H5921\"* you|strong=\"H6680\"* have|strong=\"H3068\"* obeyed|strong=\"H8085\"* the|strong=\"H3605\"* commandment|strong=\"H4687\"* of|strong=\"H1004\"* Jonadab|strong=\"H3082\"* your|strong=\"H3068\"* father, and|strong=\"H3478\"* kept|strong=\"H8104\"* all|strong=\"H3605\"* his|strong=\"H3605\"* precepts|strong=\"H4687\"*, and|strong=\"H3478\"* done|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H6213\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*,’" + }, + { + "verseNum": 19, + "text": "therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘Jonadab|strong=\"H3122\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Rechab|strong=\"H7394\"* will|strong=\"H3068\"* not|strong=\"H3808\"* lack|strong=\"H3772\"* a|strong=\"H3068\"* man|strong=\"H1121\"* to|strong=\"H3478\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* me|strong=\"H6440\"* forever|strong=\"H3605\"*.’”" + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* fourth|strong=\"H7243\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, this|strong=\"H2088\"* word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Take|strong=\"H3947\"* a|strong=\"H3068\"* scroll|strong=\"H5612\"* of|strong=\"H3117\"* a|strong=\"H3068\"* book|strong=\"H5612\"*, and|strong=\"H3063\"* write|strong=\"H3789\"* in|strong=\"H5921\"* it|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* that|strong=\"H3605\"* I|strong=\"H3117\"* have|strong=\"H1471\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3605\"* against|strong=\"H5921\"* Israel|strong=\"H3478\"*, against|strong=\"H5921\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* against|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*, from|strong=\"H5921\"* the|strong=\"H3605\"* day|strong=\"H3117\"* I|strong=\"H3117\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3605\"*, from|strong=\"H5921\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Josiah|strong=\"H2977\"* even|strong=\"H5704\"* to|strong=\"H1696\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H6213\"* may|strong=\"H7725\"* be|strong=\"H1004\"* that|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* will|strong=\"H1004\"* hear|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* which|strong=\"H1004\"* I|strong=\"H8085\"* intend|strong=\"H2803\"* to|strong=\"H7725\"* do|strong=\"H6213\"* to|strong=\"H7725\"* them|strong=\"H7725\"*, that|strong=\"H3605\"* they|strong=\"H6213\"* may|strong=\"H7725\"* each|strong=\"H3605\"* return|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H3605\"* evil|strong=\"H7451\"* way|strong=\"H1870\"*; that|strong=\"H3605\"* I|strong=\"H8085\"* may|strong=\"H7725\"* forgive|strong=\"H5545\"* their|strong=\"H3605\"* iniquity|strong=\"H5771\"* and|strong=\"H3063\"* their|strong=\"H3605\"* sin|strong=\"H2403\"*.”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H1696\"* Jeremiah|strong=\"H3414\"* called|strong=\"H7121\"* Baruch|strong=\"H1263\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Neriah|strong=\"H5374\"*; and|strong=\"H1121\"* Baruch|strong=\"H1263\"* wrote|strong=\"H3789\"* from|strong=\"H5921\"* the|strong=\"H3605\"* mouth|strong=\"H6310\"* of|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* all|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7121\"*, on|strong=\"H5921\"* a|strong=\"H3068\"* scroll|strong=\"H5612\"* of|strong=\"H1121\"* a|strong=\"H3068\"* book|strong=\"H5612\"*." + }, + { + "verseNum": 5, + "text": "Jeremiah|strong=\"H3414\"* commanded|strong=\"H6680\"* Baruch|strong=\"H1263\"*, saying, “I|strong=\"H6680\"* am|strong=\"H3068\"* restricted|strong=\"H6113\"*. I|strong=\"H6680\"* can|strong=\"H3201\"*’t go|strong=\"H3201\"* into Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H1571\"* you|strong=\"H3605\"* go|strong=\"H5971\"*, and|strong=\"H3063\"* read|strong=\"H7121\"* from|strong=\"H3117\"* the|strong=\"H3605\"* scroll|strong=\"H4039\"* which|strong=\"H3068\"* you|strong=\"H3605\"* have|strong=\"H3068\"* written|strong=\"H3789\"* from|strong=\"H3117\"* my|strong=\"H3605\"* mouth|strong=\"H6310\"*, Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"*, in|strong=\"H3068\"* the|strong=\"H3605\"* ears of|strong=\"H1004\"* the|strong=\"H3605\"* people|strong=\"H5971\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* on|strong=\"H3117\"* the|strong=\"H3605\"* fast|strong=\"H6685\"* day|strong=\"H3117\"*. Also|strong=\"H1571\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* read|strong=\"H7121\"* them|strong=\"H7121\"* in|strong=\"H3068\"* the|strong=\"H3605\"* ears of|strong=\"H1004\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* who|strong=\"H3605\"* come|strong=\"H5971\"* out|strong=\"H3605\"* of|strong=\"H1004\"* their|strong=\"H3605\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 7, + "text": "It|strong=\"H3588\"* may|strong=\"H3068\"* be|strong=\"H3068\"* they|strong=\"H3588\"* will|strong=\"H3068\"* present|strong=\"H5307\"* their|strong=\"H3068\"* supplication|strong=\"H8467\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* each|strong=\"H5971\"* return|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H3068\"* evil|strong=\"H7451\"* way|strong=\"H1870\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* pronounced|strong=\"H1696\"* great|strong=\"H1419\"* anger|strong=\"H2534\"* and|strong=\"H3068\"* wrath|strong=\"H2534\"* against|strong=\"H6440\"* this|strong=\"H2088\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 8, + "text": "Baruch|strong=\"H1263\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Neriah|strong=\"H5374\"* did|strong=\"H6213\"* according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* commanded|strong=\"H6680\"* him|strong=\"H7121\"*, reading|strong=\"H7121\"* in|strong=\"H3068\"* the|strong=\"H3605\"* book|strong=\"H5612\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 9, + "text": "Now|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H3605\"* fifth|strong=\"H2549\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* ninth|strong=\"H8671\"* month|strong=\"H2320\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* came|strong=\"H1961\"* from|strong=\"H6440\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, proclaimed|strong=\"H7121\"* a|strong=\"H3068\"* fast|strong=\"H6685\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "Then|strong=\"H7121\"* Baruch|strong=\"H1263\"* read|strong=\"H7121\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* from|strong=\"H1121\"* the|strong=\"H3605\"* book|strong=\"H5612\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, in|strong=\"H3068\"* the|strong=\"H3605\"* room|strong=\"H1004\"* of|strong=\"H1121\"* Gemariah|strong=\"H1587\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"* the|strong=\"H3605\"* scribe|strong=\"H5608\"*, in|strong=\"H3068\"* the|strong=\"H3605\"* upper|strong=\"H5945\"* court|strong=\"H2691\"*, at|strong=\"H3068\"* the|strong=\"H3605\"* entry|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H3605\"* new|strong=\"H2319\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, in|strong=\"H3068\"* the|strong=\"H3605\"* ears of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H8085\"* Micaiah|strong=\"H4321\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gemariah|strong=\"H1587\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"*, had|strong=\"H3068\"* heard|strong=\"H8085\"* out|strong=\"H5921\"* of|strong=\"H1121\"* the|strong=\"H3605\"* book|strong=\"H5612\"* all|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"*," + }, + { + "verseNum": 12, + "text": "he|strong=\"H8033\"* went|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, into|strong=\"H3381\"* the|strong=\"H3605\"* scribe|strong=\"H5608\"*’s room|strong=\"H1004\"*; and|strong=\"H1121\"* behold|strong=\"H2009\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* were|strong=\"H1121\"* sitting|strong=\"H3427\"* there|strong=\"H8033\"*, Elishama the|strong=\"H3605\"* scribe|strong=\"H5608\"*, Delaiah|strong=\"H1806\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shemaiah|strong=\"H8098\"*, Elnathan the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Achbor|strong=\"H5907\"*, Gemariah|strong=\"H1587\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"*, Zedekiah|strong=\"H6667\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hananiah|strong=\"H2608\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H8085\"* Micaiah|strong=\"H4321\"* declared|strong=\"H5046\"* to|strong=\"H8085\"* them|strong=\"H7121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* that|strong=\"H5971\"* he|strong=\"H3605\"* had|strong=\"H5971\"* heard|strong=\"H8085\"*, when|strong=\"H8085\"* Baruch|strong=\"H1263\"* read|strong=\"H7121\"* the|strong=\"H3605\"* book|strong=\"H5612\"* in|strong=\"H8085\"* the|strong=\"H3605\"* ears of|strong=\"H1697\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* sent|strong=\"H7971\"* Jehudi|strong=\"H3065\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shelemiah|strong=\"H8018\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Cushi|strong=\"H3570\"*, to|strong=\"H3212\"* Baruch|strong=\"H1263\"*, saying, “Take|strong=\"H3947\"* in|strong=\"H3212\"* your|strong=\"H3605\"* hand|strong=\"H3027\"* the|strong=\"H3605\"* scroll|strong=\"H4039\"* in|strong=\"H3212\"* which|strong=\"H5971\"* you|strong=\"H3605\"* have|strong=\"H5971\"* read|strong=\"H7121\"* in|strong=\"H3212\"* the|strong=\"H3605\"* ears of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H1121\"* come|strong=\"H3212\"*.”" + }, + { + "verseNum": 15, + "text": "They|strong=\"H7121\"* said|strong=\"H7121\"* to|strong=\"H7121\"* him|strong=\"H7121\"*, “Sit|strong=\"H3427\"* down|strong=\"H3427\"* now|strong=\"H4994\"*, and|strong=\"H3427\"* read|strong=\"H7121\"* it|strong=\"H7121\"* in|strong=\"H3427\"* our hearing.”" + }, + { + "verseNum": 16, + "text": "Now|strong=\"H1961\"* when|strong=\"H1961\"* they|strong=\"H1697\"* had|strong=\"H1961\"* heard|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"*, they|strong=\"H1697\"* turned|strong=\"H1961\"* in|strong=\"H4428\"* fear|strong=\"H6342\"* one|strong=\"H3605\"* toward another|strong=\"H7453\"*, and|strong=\"H4428\"* said|strong=\"H1697\"* to|strong=\"H1961\"* Baruch|strong=\"H1263\"*, “We|strong=\"H8085\"* will|strong=\"H1961\"* surely|strong=\"H5046\"* tell|strong=\"H5046\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* all|strong=\"H3605\"* these|strong=\"H8085\"* words|strong=\"H1697\"*.”" + }, + { + "verseNum": 17, + "text": "They|strong=\"H6310\"* asked|strong=\"H7592\"* Baruch|strong=\"H1263\"*, saying|strong=\"H1697\"*, “Tell|strong=\"H5046\"* us|strong=\"H4994\"* now|strong=\"H4994\"*, how|strong=\"H4994\"* did|strong=\"H1697\"* you|strong=\"H3605\"* write|strong=\"H3789\"* all|strong=\"H3605\"* these|strong=\"H3789\"* words|strong=\"H1697\"* at|strong=\"H3605\"* his|strong=\"H3605\"* mouth|strong=\"H6310\"*?”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H7121\"* Baruch|strong=\"H1263\"* answered|strong=\"H1697\"* them|strong=\"H5921\"*, “He|strong=\"H3605\"* dictated|strong=\"H6310\"* all|strong=\"H3605\"* these|strong=\"H7121\"* words|strong=\"H1697\"* to|strong=\"H5921\"* me|strong=\"H5921\"* with|strong=\"H5921\"* his|strong=\"H3605\"* mouth|strong=\"H6310\"*, and|strong=\"H1697\"* I|strong=\"H5921\"* wrote|strong=\"H3789\"* them|strong=\"H5921\"* with|strong=\"H5921\"* ink|strong=\"H1773\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"*.”" + }, + { + "verseNum": 19, + "text": "Then|strong=\"H3045\"* the|strong=\"H3045\"* princes|strong=\"H8269\"* said to|strong=\"H3212\"* Baruch|strong=\"H1263\"*, “You|strong=\"H3045\"* and|strong=\"H3212\"* Jeremiah|strong=\"H3414\"* go|strong=\"H3212\"* hide|strong=\"H5641\"*. Don’t let|strong=\"H3212\"* anyone know|strong=\"H3045\"* where you|strong=\"H3045\"* are|strong=\"H8269\"*.”" + }, + { + "verseNum": 20, + "text": "They|strong=\"H1697\"* went|strong=\"H4428\"* in|strong=\"H4428\"* to|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* into|strong=\"H1697\"* the|strong=\"H3605\"* court|strong=\"H2691\"*, but|strong=\"H3605\"* they|strong=\"H1697\"* had|strong=\"H4428\"* laid up|strong=\"H6485\"* the|strong=\"H3605\"* scroll|strong=\"H4039\"* in|strong=\"H4428\"* the|strong=\"H3605\"* room|strong=\"H3957\"* of|strong=\"H4428\"* Elishama the|strong=\"H3605\"* scribe|strong=\"H5608\"*. Then|strong=\"H4428\"* they|strong=\"H1697\"* told|strong=\"H5046\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* in|strong=\"H4428\"* the|strong=\"H3605\"* hearing of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 21, + "text": "So|strong=\"H3947\"* the|strong=\"H3605\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* Jehudi|strong=\"H3065\"* to|strong=\"H7971\"* get|strong=\"H3947\"* the|strong=\"H3605\"* scroll|strong=\"H4039\"*, and|strong=\"H7971\"* he|strong=\"H3605\"* took|strong=\"H3947\"* it|strong=\"H7121\"* out|strong=\"H7971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* room|strong=\"H3957\"* of|strong=\"H4428\"* Elishama the|strong=\"H3605\"* scribe|strong=\"H5608\"*. Jehudi|strong=\"H3065\"* read|strong=\"H7121\"* it|strong=\"H7121\"* in|strong=\"H5921\"* the|strong=\"H3605\"* hearing of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H7971\"* in|strong=\"H5921\"* the|strong=\"H3605\"* hearing of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* who|strong=\"H3605\"* stood|strong=\"H5975\"* beside|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 22, + "text": "Now|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* was|strong=\"H4428\"* sitting|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* winter|strong=\"H2779\"* house|strong=\"H1004\"* in|strong=\"H3427\"* the|strong=\"H6440\"* ninth|strong=\"H8671\"* month|strong=\"H2320\"*, and|strong=\"H4428\"* there|strong=\"H3427\"* was|strong=\"H4428\"* a|strong=\"H3068\"* fire in|strong=\"H3427\"* the|strong=\"H6440\"* brazier burning|strong=\"H1197\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"H1961\"* Jehudi|strong=\"H3065\"* had|strong=\"H1961\"* read|strong=\"H7121\"* three|strong=\"H7969\"* or|strong=\"H5704\"* four|strong=\"H7969\"* columns|strong=\"H1817\"*, the|strong=\"H3605\"* king|strong=\"H5921\"* cut|strong=\"H7167\"* it|strong=\"H7121\"* with|strong=\"H5921\"* the|strong=\"H3605\"* penknife|strong=\"H8593\"*, and|strong=\"H7969\"* cast|strong=\"H7993\"* it|strong=\"H7121\"* into|strong=\"H5921\"* the|strong=\"H3605\"* fire that|strong=\"H3605\"* was|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H3605\"* brazier, until|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* scroll|strong=\"H4039\"* was|strong=\"H1961\"* consumed|strong=\"H8552\"* in|strong=\"H5921\"* the|strong=\"H3605\"* fire that|strong=\"H3605\"* was|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H3605\"* brazier." + }, + { + "verseNum": 24, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H4428\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* who|strong=\"H3605\"* heard|strong=\"H8085\"* all|strong=\"H3605\"* these|strong=\"H8085\"* words|strong=\"H1697\"* were|strong=\"H1697\"* not|strong=\"H3808\"* afraid|strong=\"H6342\"*, and|strong=\"H4428\"* didn’t tear|strong=\"H7167\"* their|strong=\"H3605\"* garments." + }, + { + "verseNum": 25, + "text": "Moreover|strong=\"H1571\"* Elnathan and|strong=\"H4428\"* Delaiah|strong=\"H1806\"* and|strong=\"H4428\"* Gemariah|strong=\"H1587\"* had|strong=\"H4428\"* made|strong=\"H8313\"* intercession|strong=\"H6293\"* to|strong=\"H8085\"* the|strong=\"H8085\"* king|strong=\"H4428\"* that|strong=\"H8085\"* he|strong=\"H3808\"* would|strong=\"H4428\"* not|strong=\"H3808\"* burn|strong=\"H8313\"* the|strong=\"H8085\"* scroll|strong=\"H4039\"*; but|strong=\"H3808\"* he|strong=\"H3808\"* would|strong=\"H4428\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H8085\"* them|strong=\"H8313\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H3947\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"* Jerahmeel|strong=\"H3396\"* the|strong=\"H3947\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"*, and|strong=\"H1121\"* Seraiah|strong=\"H8304\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azriel|strong=\"H5837\"*, and|strong=\"H1121\"* Shelemiah|strong=\"H8018\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abdeel|strong=\"H5655\"*, to|strong=\"H3068\"* arrest Baruch|strong=\"H1263\"* the|strong=\"H3947\"* scribe|strong=\"H5608\"* and|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3947\"* prophet|strong=\"H5030\"*; but|strong=\"H3947\"* Yahweh|strong=\"H3068\"* hid|strong=\"H5641\"* them|strong=\"H6680\"*." + }, + { + "verseNum": 27, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"*, after|strong=\"H1961\"* the|strong=\"H3068\"* king|strong=\"H4428\"* had|strong=\"H3068\"* burned|strong=\"H8313\"* the|strong=\"H3068\"* scroll|strong=\"H4039\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* words|strong=\"H1697\"* which|strong=\"H3068\"* Baruch|strong=\"H1263\"* wrote|strong=\"H3789\"* at|strong=\"H3068\"* the|strong=\"H3068\"* mouth|strong=\"H6310\"* of|strong=\"H4428\"* Jeremiah|strong=\"H3414\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 28, + "text": "“Take|strong=\"H3947\"* again|strong=\"H7725\"* another scroll|strong=\"H4039\"*, and|strong=\"H3063\"* write|strong=\"H3789\"* in|strong=\"H5921\"* it|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* former|strong=\"H7223\"* words|strong=\"H1697\"* that|strong=\"H3605\"* were|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H3605\"* first|strong=\"H7223\"* scroll|strong=\"H4039\"*, which|strong=\"H1697\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* has|strong=\"H1961\"* burned|strong=\"H8313\"*." + }, + { + "verseNum": 29, + "text": "Concerning|strong=\"H5921\"* Jehoiakim|strong=\"H3079\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* say, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “You|strong=\"H5921\"* have|strong=\"H3068\"* burned|strong=\"H8313\"* this|strong=\"H2063\"* scroll|strong=\"H4039\"*, saying, ‘Why|strong=\"H4069\"* have|strong=\"H3068\"* you|strong=\"H5921\"* written|strong=\"H3789\"* therein|strong=\"H3789\"*, saying, “The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon will|strong=\"H3068\"* certainly come|strong=\"H3063\"* and|strong=\"H3063\"* destroy|strong=\"H7843\"* this|strong=\"H2063\"* land, and|strong=\"H3063\"* will|strong=\"H3068\"* cause to|strong=\"H3068\"* cease|strong=\"H7673\"* from|strong=\"H4480\"* there|strong=\"H4480\"* man and|strong=\"H3063\"* animal|strong=\"H7843\"*”?’”" + }, + { + "verseNum": 30, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* Jehoiakim|strong=\"H3079\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*: “He|strong=\"H3117\"* will|strong=\"H3068\"* have|strong=\"H1961\"* no|strong=\"H3808\"* one|strong=\"H3808\"* to|strong=\"H3068\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* David|strong=\"H1732\"*’s throne|strong=\"H3678\"*. His|strong=\"H3068\"* dead|strong=\"H5038\"* body|strong=\"H5038\"* will|strong=\"H3068\"* be|strong=\"H1961\"* cast|strong=\"H7993\"* out|strong=\"H7993\"* in|strong=\"H3427\"* the|strong=\"H5921\"* day|strong=\"H3117\"* to|strong=\"H3068\"* the|strong=\"H5921\"* heat|strong=\"H2721\"*, and|strong=\"H3063\"* in|strong=\"H3427\"* the|strong=\"H5921\"* night|strong=\"H3915\"* to|strong=\"H3068\"* the|strong=\"H5921\"* frost|strong=\"H7140\"*." + }, + { + "verseNum": 31, + "text": "I|strong=\"H5921\"* will|strong=\"H5650\"* punish|strong=\"H6485\"* him|strong=\"H5921\"*, his|strong=\"H3605\"* offspring|strong=\"H2233\"*, and|strong=\"H3063\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* for|strong=\"H5921\"* their|strong=\"H3605\"* iniquity|strong=\"H5771\"*. I|strong=\"H5921\"* will|strong=\"H5650\"* bring|strong=\"H7451\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* on|strong=\"H5921\"* the|strong=\"H3605\"* men|strong=\"H5650\"* of|strong=\"H3427\"* Judah|strong=\"H3063\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H3605\"* I|strong=\"H5921\"* have|strong=\"H5650\"* pronounced|strong=\"H1696\"* against|strong=\"H5921\"* them|strong=\"H5921\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* didn’t listen|strong=\"H8085\"*.”’”" + }, + { + "verseNum": 32, + "text": "Then|strong=\"H3947\"* Jeremiah|strong=\"H3414\"* took|strong=\"H3947\"* another|strong=\"H5750\"* scroll|strong=\"H5612\"*, and|strong=\"H1121\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5921\"* Baruch|strong=\"H1263\"* the|strong=\"H3605\"* scribe|strong=\"H5608\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Neriah|strong=\"H5374\"*, who|strong=\"H3605\"* wrote|strong=\"H3789\"* therein|strong=\"H3789\"* from|strong=\"H5921\"* the|strong=\"H3605\"* mouth|strong=\"H6310\"* of|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1121\"* the|strong=\"H3605\"* book|strong=\"H5612\"* which|strong=\"H1992\"* Jehoiakim|strong=\"H3079\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* had|strong=\"H4428\"* burned|strong=\"H8313\"* in|strong=\"H5921\"* the|strong=\"H3605\"* fire; and|strong=\"H1121\"* many|strong=\"H7227\"* similar words|strong=\"H1697\"* were|strong=\"H1121\"* added|strong=\"H3254\"* to|strong=\"H5921\"* them|strong=\"H5414\"*." + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "Zedekiah|strong=\"H6667\"* the|strong=\"H8478\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"* reigned|strong=\"H4427\"* as|strong=\"H8478\"* king|strong=\"H4428\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* Coniah|strong=\"H3659\"* the|strong=\"H8478\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"*, whom Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon made|strong=\"H4427\"* king|strong=\"H4428\"* in|strong=\"H4428\"* the|strong=\"H8478\"* land of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"H3808\"* neither|strong=\"H3808\"* he|strong=\"H1931\"*, nor|strong=\"H3808\"* his|strong=\"H3068\"* servants|strong=\"H5650\"*, nor|strong=\"H3808\"* the|strong=\"H8085\"* people|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H8085\"* land, listened|strong=\"H8085\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"*, which|strong=\"H1931\"* he|strong=\"H1931\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* the|strong=\"H8085\"* prophet|strong=\"H5030\"* Jeremiah|strong=\"H3414\"*." + }, + { + "verseNum": 3, + "text": "Zedekiah|strong=\"H6667\"* the|strong=\"H3068\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* Jehucal|strong=\"H3081\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shelemiah|strong=\"H8018\"* and|strong=\"H1121\"* Zephaniah|strong=\"H6846\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maaseiah|strong=\"H4641\"*, the|strong=\"H3068\"* priest|strong=\"H3548\"*, to|strong=\"H3068\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* Jeremiah|strong=\"H3414\"*, saying, “Pray|strong=\"H6419\"* now|strong=\"H4994\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* for|strong=\"H1157\"* us|strong=\"H4994\"*.”" + }, + { + "verseNum": 4, + "text": "Now|strong=\"H5414\"* Jeremiah|strong=\"H3414\"* came|strong=\"H3318\"* in|strong=\"H1004\"* and|strong=\"H1004\"* went|strong=\"H3318\"* out|strong=\"H3318\"* among|strong=\"H8432\"* the|strong=\"H5414\"* people|strong=\"H5971\"*, for|strong=\"H1004\"* they|strong=\"H3808\"* had|strong=\"H5414\"* not|strong=\"H3808\"* put|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H8432\"* prison|strong=\"H1004\"*." + }, + { + "verseNum": 5, + "text": "Pharaoh|strong=\"H6547\"*’s army|strong=\"H2428\"* had|strong=\"H6547\"* come|strong=\"H5927\"* out|strong=\"H3318\"* of|strong=\"H5921\"* Egypt|strong=\"H4714\"*; and|strong=\"H3389\"* when|strong=\"H8085\"* the|strong=\"H5921\"* Chaldeans|strong=\"H3778\"* who|strong=\"H6547\"* were|strong=\"H4714\"* besieging|strong=\"H6696\"* Jerusalem|strong=\"H3389\"* heard|strong=\"H8085\"* news|strong=\"H8088\"* of|strong=\"H5921\"* them|strong=\"H5921\"*, they|strong=\"H5921\"* withdrew|strong=\"H5927\"* from|strong=\"H3318\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* Jeremiah|strong=\"H3414\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 7, + "text": "“Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘You|strong=\"H7971\"* shall|strong=\"H3068\"* tell the|strong=\"H3541\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, who|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* to|strong=\"H7725\"* me|strong=\"H7971\"* to|strong=\"H7725\"* inquire|strong=\"H1875\"* of|strong=\"H4428\"* me|strong=\"H7971\"*: “Behold|strong=\"H2009\"*, Pharaoh|strong=\"H6547\"*’s army|strong=\"H2428\"*, which|strong=\"H3068\"* has|strong=\"H3068\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H7725\"* help|strong=\"H5833\"* you|strong=\"H7971\"*, will|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H7725\"* Egypt|strong=\"H4714\"* into|strong=\"H7725\"* their|strong=\"H3068\"* own land." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* Chaldeans|strong=\"H3778\"* will|strong=\"H5892\"* come|strong=\"H7725\"* again|strong=\"H7725\"*, and|strong=\"H7725\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* this|strong=\"H2063\"* city|strong=\"H5892\"*. They|strong=\"H5921\"* will|strong=\"H5892\"* take|strong=\"H3920\"* it|strong=\"H5921\"* and|strong=\"H7725\"* burn|strong=\"H8313\"* it|strong=\"H5921\"* with|strong=\"H8313\"* fire.”’" + }, + { + "verseNum": 9, + "text": "“Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Don’t deceive|strong=\"H5377\"* yourselves|strong=\"H5315\"*, saying, “The|strong=\"H5921\"* Chaldeans|strong=\"H3778\"* will|strong=\"H3068\"* surely|strong=\"H3588\"* depart|strong=\"H3212\"* from|strong=\"H5921\"* us|strong=\"H5921\"*;” for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* depart|strong=\"H3212\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* though|strong=\"H3588\"* you|strong=\"H3588\"* had|strong=\"H3588\"* struck|strong=\"H5221\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* army|strong=\"H2428\"* of|strong=\"H5892\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"* who|strong=\"H3605\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* you|strong=\"H3588\"*, and|strong=\"H6965\"* only|strong=\"H3588\"* wounded|strong=\"H5221\"* men|strong=\"H2428\"* remained|strong=\"H7604\"* among them|strong=\"H5221\"*, they|strong=\"H3588\"* would|strong=\"H3605\"* each|strong=\"H3605\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H5892\"* his|strong=\"H3605\"* tent and|strong=\"H6965\"* burn|strong=\"H8313\"* this|strong=\"H2063\"* city|strong=\"H5892\"* with|strong=\"H8313\"* fire.’”" + }, + { + "verseNum": 11, + "text": "When|strong=\"H1961\"* the|strong=\"H6440\"* army|strong=\"H2428\"* of|strong=\"H6440\"* the|strong=\"H6440\"* Chaldeans|strong=\"H3778\"* had|strong=\"H1961\"* withdrawn|strong=\"H5927\"* from|strong=\"H6440\"* Jerusalem|strong=\"H3389\"* for|strong=\"H5921\"* fear|strong=\"H6440\"* of|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*’s army|strong=\"H2428\"*," + }, + { + "verseNum": 12, + "text": "then|strong=\"H3318\"* Jeremiah|strong=\"H3414\"* went|strong=\"H3212\"* out|strong=\"H3318\"* of|strong=\"H8432\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3318\"* go|strong=\"H3212\"* into|strong=\"H8432\"* the|strong=\"H8432\"* land of|strong=\"H8432\"* Benjamin|strong=\"H1144\"*, to|strong=\"H3318\"* receive his|strong=\"H8432\"* portion|strong=\"H2505\"* there|strong=\"H8033\"*, in|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H8432\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H1961\"* he|strong=\"H1931\"* was|strong=\"H8034\"* in|strong=\"H1121\"* Benjamin|strong=\"H1144\"*’s gate|strong=\"H8179\"*, a|strong=\"H3068\"* captain|strong=\"H1167\"* of|strong=\"H1121\"* the|strong=\"H3414\"* guard|strong=\"H6488\"* was|strong=\"H8034\"* there|strong=\"H8033\"*, whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Irijah|strong=\"H3376\"*, the|strong=\"H3414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shelemiah|strong=\"H8018\"*, the|strong=\"H3414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hananiah|strong=\"H2608\"*; and|strong=\"H1121\"* he|strong=\"H1931\"* seized|strong=\"H8610\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3414\"* prophet|strong=\"H5030\"*, saying, “You|strong=\"H1961\"* are|strong=\"H1121\"* defecting to|strong=\"H1961\"* the|strong=\"H3414\"* Chaldeans|strong=\"H3778\"*!”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H5307\"* Jeremiah|strong=\"H3414\"* said|strong=\"H8085\"*, “That|strong=\"H8085\"* is|strong=\"H8085\"* false|strong=\"H8267\"*! I|strong=\"H5921\"* am not|strong=\"H3808\"* defecting to|strong=\"H5921\"* the|strong=\"H5921\"* Chaldeans|strong=\"H3778\"*.”" + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* princes|strong=\"H8269\"* were|strong=\"H8269\"* angry|strong=\"H7107\"* with|strong=\"H1004\"* Jeremiah|strong=\"H3414\"*, and|strong=\"H1004\"* struck|strong=\"H5221\"* him|strong=\"H5414\"*, and|strong=\"H1004\"* put|strong=\"H5414\"* him|strong=\"H5414\"* in|strong=\"H5921\"* prison|strong=\"H1004\"* in|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jonathan|strong=\"H3083\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3588\"* made|strong=\"H6213\"* that|strong=\"H3588\"* the|strong=\"H5921\"* prison|strong=\"H1004\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* Jeremiah|strong=\"H3414\"* had|strong=\"H3588\"* come into the|strong=\"H3588\"* dungeon|strong=\"H1004\"* house|strong=\"H1004\"* and|strong=\"H3117\"* into the|strong=\"H3588\"* cells, and|strong=\"H3117\"* Jeremiah|strong=\"H3414\"* had|strong=\"H3588\"* remained|strong=\"H3427\"* there|strong=\"H8033\"* many|strong=\"H7227\"* days|strong=\"H3117\"*," + }, + { + "verseNum": 17, + "text": "then|strong=\"H3947\"* Zedekiah|strong=\"H6667\"* the|strong=\"H5414\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* and|strong=\"H3068\"* had|strong=\"H3068\"* him|strong=\"H5414\"* brought|strong=\"H3947\"* out|strong=\"H7971\"*. The|strong=\"H5414\"* king|strong=\"H4428\"* asked|strong=\"H7592\"* him|strong=\"H5414\"* secretly|strong=\"H5643\"* in|strong=\"H3068\"* his|strong=\"H5414\"* house|strong=\"H1004\"*, “Is|strong=\"H3068\"* there|strong=\"H3426\"* any|strong=\"H3426\"* word|strong=\"H1697\"* from|strong=\"H3027\"* Yahweh|strong=\"H3068\"*?”" + }, + { + "verseNum": 18, + "text": "Moreover|strong=\"H3588\"* Jeremiah|strong=\"H3414\"* said to|strong=\"H5414\"* King|strong=\"H4428\"* Zedekiah|strong=\"H6667\"*, “How|strong=\"H4100\"* have|strong=\"H5971\"* I|strong=\"H3588\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* you|strong=\"H3588\"*, against|strong=\"H2398\"* your|strong=\"H5414\"* servants|strong=\"H5650\"*, or|strong=\"H1004\"* against|strong=\"H2398\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5971\"* put|strong=\"H5414\"* me|strong=\"H5414\"* in|strong=\"H1004\"* prison|strong=\"H1004\"*?" + }, + { + "verseNum": 19, + "text": "Now|strong=\"H4428\"* where|strong=\"H5921\"* are|strong=\"H5030\"* your|strong=\"H5921\"* prophets|strong=\"H5030\"* who|strong=\"H5030\"* prophesied|strong=\"H5012\"* to|strong=\"H5921\"* you|strong=\"H5921\"*, saying, ‘The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon will|strong=\"H4428\"* not|strong=\"H3808\"* come against|strong=\"H5921\"* you|strong=\"H5921\"*, nor|strong=\"H3808\"* against|strong=\"H5921\"* this|strong=\"H2063\"* land’?" + }, + { + "verseNum": 20, + "text": "Now|strong=\"H6258\"* please|strong=\"H4994\"* hear|strong=\"H8085\"*, my|strong=\"H8085\"* lord the|strong=\"H6440\"* king|strong=\"H4428\"*: please|strong=\"H4994\"* let|strong=\"H4994\"* my|strong=\"H8085\"* supplication|strong=\"H8467\"* be|strong=\"H4191\"* presented|strong=\"H5307\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, that|strong=\"H8085\"* you|strong=\"H6440\"* not|strong=\"H3808\"* cause|strong=\"H7725\"* me|strong=\"H6440\"* to|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Jonathan|strong=\"H3083\"* the|strong=\"H6440\"* scribe|strong=\"H5608\"*, lest I|strong=\"H6258\"* die|strong=\"H4191\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H5414\"* Zedekiah|strong=\"H6667\"* the|strong=\"H3605\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"*, and|strong=\"H4428\"* they|strong=\"H3117\"* committed|strong=\"H6485\"* Jeremiah|strong=\"H3414\"* into|strong=\"H5414\"* the|strong=\"H3605\"* court|strong=\"H2691\"* of|strong=\"H4428\"* the|strong=\"H3605\"* guard|strong=\"H4307\"*. They|strong=\"H3117\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* daily|strong=\"H3117\"* a|strong=\"H3068\"* loaf|strong=\"H3603\"* of|strong=\"H4428\"* bread|strong=\"H3899\"* out|strong=\"H2351\"* of|strong=\"H4428\"* the|strong=\"H3605\"* bakers’ street|strong=\"H2351\"*, until|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* bread|strong=\"H3899\"* in|strong=\"H3427\"* the|strong=\"H3605\"* city|strong=\"H5892\"* was|strong=\"H5892\"* gone|strong=\"H8552\"*. Thus Jeremiah|strong=\"H3414\"* remained|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* court|strong=\"H2691\"* of|strong=\"H4428\"* the|strong=\"H3605\"* guard|strong=\"H4307\"*." + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "Shephatiah|strong=\"H8203\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mattan|strong=\"H4977\"*, Gedaliah|strong=\"H1436\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pashhur|strong=\"H6583\"*, Jucal|strong=\"H3116\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shelemiah|strong=\"H8018\"*, and|strong=\"H1121\"* Pashhur|strong=\"H6583\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Malchijah|strong=\"H4441\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* words|strong=\"H1697\"* that|strong=\"H5971\"* Jeremiah|strong=\"H3414\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘He|strong=\"H3068\"* who|strong=\"H3068\"* remains|strong=\"H1961\"* in|strong=\"H3427\"* this|strong=\"H2063\"* city|strong=\"H5892\"* will|strong=\"H3068\"* die|strong=\"H4191\"* by|strong=\"H3068\"* the|strong=\"H3541\"* sword|strong=\"H2719\"*, by|strong=\"H3068\"* the|strong=\"H3541\"* famine|strong=\"H7458\"*, and|strong=\"H3068\"* by|strong=\"H3068\"* the|strong=\"H3541\"* pestilence|strong=\"H1698\"*, but|strong=\"H1961\"* he|strong=\"H3068\"* who|strong=\"H3068\"* goes|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3541\"* Chaldeans|strong=\"H3778\"* will|strong=\"H3068\"* live|strong=\"H3427\"*. He|strong=\"H3068\"* will|strong=\"H3068\"* escape|strong=\"H3318\"* with|strong=\"H3068\"* his|strong=\"H3068\"* life|strong=\"H5315\"* and|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* live|strong=\"H3427\"*.’" + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘This|strong=\"H2063\"* city|strong=\"H5892\"* will|strong=\"H3068\"* surely|strong=\"H5414\"* be|strong=\"H3027\"* given|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* army|strong=\"H2428\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* take|strong=\"H3920\"* it|strong=\"H5414\"*.’”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H1696\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* said|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, “Please|strong=\"H4994\"* let|strong=\"H4994\"* this|strong=\"H2088\"* man|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H1696\"* death|strong=\"H4191\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* weakens the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H4428\"* war|strong=\"H4421\"* who|strong=\"H3605\"* remain|strong=\"H7604\"* in|strong=\"H5921\"* this|strong=\"H2088\"* city|strong=\"H5892\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, in|strong=\"H5921\"* speaking|strong=\"H1696\"* such|strong=\"H2088\"* words|strong=\"H1697\"* to|strong=\"H1696\"* them|strong=\"H5921\"*; for|strong=\"H3588\"* this|strong=\"H2088\"* man|strong=\"H4191\"* doesn’t seek|strong=\"H1875\"* the|strong=\"H3605\"* welfare|strong=\"H7965\"* of|strong=\"H4428\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, but|strong=\"H3588\"* harm|strong=\"H7451\"*.”" + }, + { + "verseNum": 5, + "text": "Zedekiah|strong=\"H6667\"* the|strong=\"H3588\"* king|strong=\"H4428\"* said|strong=\"H1697\"*, “Behold|strong=\"H2009\"*, he|strong=\"H1931\"* is|strong=\"H1931\"* in|strong=\"H4428\"* your|strong=\"H3588\"* hand|strong=\"H3027\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"* can|strong=\"H3201\"*’t do|strong=\"H3201\"* anything|strong=\"H1697\"* to|strong=\"H3201\"* oppose you|strong=\"H3588\"*.”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H3947\"* they|strong=\"H3588\"* took|strong=\"H3947\"* Jeremiah|strong=\"H3414\"* and|strong=\"H1121\"* threw|strong=\"H7993\"* him|strong=\"H7971\"* into|strong=\"H7993\"* the|strong=\"H3588\"* dungeon of|strong=\"H1121\"* Malchijah|strong=\"H4441\"* the|strong=\"H3588\"* king’s son|strong=\"H1121\"*, that|strong=\"H3588\"* was|strong=\"H1121\"* in|strong=\"H1121\"* the|strong=\"H3588\"* court|strong=\"H2691\"* of|strong=\"H1121\"* the|strong=\"H3588\"* guard|strong=\"H4307\"*. They|strong=\"H3588\"* let|strong=\"H7971\"* down|strong=\"H7993\"* Jeremiah|strong=\"H3414\"* with|strong=\"H4325\"* cords|strong=\"H2256\"*. In|strong=\"H1121\"* the|strong=\"H3588\"* dungeon there was|strong=\"H1121\"* no|strong=\"H3947\"* water|strong=\"H4325\"*, but|strong=\"H3588\"* mire|strong=\"H2916\"*; and|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* sank|strong=\"H2883\"* in|strong=\"H1121\"* the|strong=\"H3588\"* mire|strong=\"H2916\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H3588\"* when|strong=\"H3588\"* Ebedmelech the|strong=\"H8085\"* Ethiopian|strong=\"H3569\"*, a|strong=\"H3068\"* eunuch|strong=\"H5631\"*, who|strong=\"H1931\"* was|strong=\"H1931\"* in|strong=\"H3427\"* the|strong=\"H8085\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, heard|strong=\"H8085\"* that|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H4428\"* put|strong=\"H5414\"* Jeremiah|strong=\"H3414\"* in|strong=\"H3427\"* the|strong=\"H8085\"* dungeon|strong=\"H1004\"* (the|strong=\"H8085\"* king|strong=\"H4428\"* was|strong=\"H1931\"* then|strong=\"H5414\"* sitting|strong=\"H3427\"* in|strong=\"H3427\"* Benjamin|strong=\"H1144\"*’s gate|strong=\"H8179\"*)," + }, + { + "verseNum": 8, + "text": "Ebedmelech went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H3318\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H4428\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3318\"* king|strong=\"H4428\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 9, + "text": "“My|strong=\"H3605\"* lord the|strong=\"H3605\"* king|strong=\"H4428\"*, these|strong=\"H6213\"* men|strong=\"H6213\"* have|strong=\"H5030\"* done|strong=\"H6213\"* evil|strong=\"H7489\"* in|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H5030\"* done|strong=\"H6213\"* to|strong=\"H4191\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"*, whom|strong=\"H6440\"* they|strong=\"H3588\"* have|strong=\"H5030\"* cast|strong=\"H7993\"* into|strong=\"H6213\"* the|strong=\"H3605\"* dungeon. He|strong=\"H3588\"* is|strong=\"H3605\"* likely to|strong=\"H4191\"* die|strong=\"H4191\"* in|strong=\"H6213\"* the|strong=\"H3605\"* place|strong=\"H8478\"* where|strong=\"H8478\"* he|strong=\"H3588\"* is|strong=\"H3605\"*, because|strong=\"H3588\"* of|strong=\"H4428\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*; for|strong=\"H3588\"* there|strong=\"H3605\"* is|strong=\"H3605\"* no|strong=\"H6213\"* more|strong=\"H5750\"* bread|strong=\"H3899\"* in|strong=\"H6213\"* the|strong=\"H3605\"* city|strong=\"H5892\"*.”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H2088\"* the|strong=\"H3947\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"* Ebedmelech the|strong=\"H3947\"* Ethiopian|strong=\"H3569\"*, saying, “Take|strong=\"H3947\"* from|strong=\"H4480\"* here|strong=\"H2088\"* thirty|strong=\"H7970\"* men|strong=\"H3947\"* with|strong=\"H3027\"* you|strong=\"H6680\"*, and|strong=\"H4428\"* take|strong=\"H3947\"* up|strong=\"H5927\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3947\"* prophet|strong=\"H5030\"* out|strong=\"H4480\"* of|strong=\"H4428\"* the|strong=\"H3947\"* dungeon, before|strong=\"H4480\"* he|strong=\"H3027\"* dies|strong=\"H4191\"*.”" + }, + { + "verseNum": 11, + "text": "So|strong=\"H3947\"* Ebedmelech took|strong=\"H3947\"* the|strong=\"H3947\"* men|strong=\"H3947\"* with|strong=\"H1004\"* him|strong=\"H7971\"*, and|strong=\"H7971\"* went|strong=\"H4428\"* into|strong=\"H3027\"* the|strong=\"H3947\"* house|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H3947\"* king|strong=\"H4428\"* under|strong=\"H8478\"* the|strong=\"H3947\"* treasury|strong=\"H1004\"*, and|strong=\"H7971\"* took|strong=\"H3947\"* from|strong=\"H3027\"* there|strong=\"H8033\"* rags|strong=\"H4418\"* and|strong=\"H7971\"* worn-out|strong=\"H1094\"* garments, and|strong=\"H7971\"* let|strong=\"H7971\"* them|strong=\"H7971\"* down|strong=\"H7971\"* by|strong=\"H3027\"* cords|strong=\"H2256\"* into|strong=\"H3027\"* the|strong=\"H3947\"* dungeon|strong=\"H1004\"* to|strong=\"H7971\"* Jeremiah|strong=\"H3414\"*." + }, + { + "verseNum": 12, + "text": "Ebedmelech the|strong=\"H6213\"* Ethiopian|strong=\"H3569\"* said|strong=\"H3651\"* to|strong=\"H6213\"* Jeremiah|strong=\"H3414\"*, “Now|strong=\"H4994\"* put|strong=\"H7760\"* these|strong=\"H6213\"* rags|strong=\"H4418\"* and|strong=\"H3027\"* worn-out|strong=\"H1094\"* garments under|strong=\"H8478\"* your|strong=\"H7760\"* armpits under|strong=\"H8478\"* the|strong=\"H6213\"* cords|strong=\"H2256\"*.”" + }, + { + "verseNum": 13, + "text": "So|strong=\"H4480\"* they|strong=\"H2691\"* lifted|strong=\"H5927\"* Jeremiah|strong=\"H3414\"* up|strong=\"H5927\"* with|strong=\"H3427\"* the|strong=\"H4480\"* cords|strong=\"H2256\"*, and|strong=\"H5927\"* took|strong=\"H5927\"* him|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H3427\"* the|strong=\"H4480\"* dungeon; and|strong=\"H5927\"* Jeremiah|strong=\"H3414\"* remained|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H4480\"* court|strong=\"H2691\"* of|strong=\"H3427\"* the|strong=\"H4480\"* guard|strong=\"H4307\"*." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H3947\"* Zedekiah|strong=\"H6667\"* the|strong=\"H3947\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* and|strong=\"H3068\"* took|strong=\"H3947\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3947\"* prophet|strong=\"H5030\"* to|strong=\"H3068\"* himself|strong=\"H3068\"* into|strong=\"H3947\"* the|strong=\"H3947\"* third|strong=\"H7992\"* entry|strong=\"H3996\"* that|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*. Then|strong=\"H3947\"* the|strong=\"H3947\"* king|strong=\"H4428\"* said|strong=\"H1697\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"*, “I|strong=\"H1697\"* will|strong=\"H3068\"* ask|strong=\"H7592\"* you|strong=\"H7971\"* something|strong=\"H1697\"*. Hide|strong=\"H3582\"* nothing|strong=\"H1697\"* from|strong=\"H4480\"* me|strong=\"H7971\"*.”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H8085\"* Jeremiah|strong=\"H3414\"* said|strong=\"H8085\"* to|strong=\"H4191\"* Zedekiah|strong=\"H6667\"*, “If|strong=\"H3588\"* I|strong=\"H3588\"* declare|strong=\"H5046\"* it|strong=\"H3588\"* to|strong=\"H4191\"* you|strong=\"H3588\"*, will|strong=\"H3808\"* you|strong=\"H3588\"* not|strong=\"H3808\"* surely|strong=\"H4191\"* put|strong=\"H4191\"* me|strong=\"H5046\"* to|strong=\"H4191\"* death|strong=\"H4191\"*? If|strong=\"H3588\"* I|strong=\"H3588\"* give|strong=\"H3289\"* you|strong=\"H3588\"* counsel|strong=\"H3289\"*, you|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H4191\"* me|strong=\"H5046\"*.”" + }, + { + "verseNum": 16, + "text": "So|strong=\"H6213\"* Zedekiah|strong=\"H6667\"* the|strong=\"H5414\"* king|strong=\"H4428\"* swore|strong=\"H7650\"* secretly|strong=\"H5643\"* to|strong=\"H4191\"* Jeremiah|strong=\"H3414\"*, saying, “As|strong=\"H6213\"* Yahweh|strong=\"H3068\"* lives|strong=\"H5315\"*, who|strong=\"H3068\"* made|strong=\"H6213\"* our|strong=\"H3068\"* souls|strong=\"H5315\"*, I|strong=\"H5414\"* will|strong=\"H3068\"* not|strong=\"H6213\"* put|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H4191\"* death|strong=\"H4191\"*, neither will|strong=\"H3068\"* I|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* into|strong=\"H6213\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* these|strong=\"H2063\"* men|strong=\"H6213\"* who|strong=\"H3068\"* seek|strong=\"H1245\"* your|strong=\"H3068\"* life|strong=\"H5315\"*.”" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H3318\"* Jeremiah|strong=\"H3414\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Zedekiah|strong=\"H6667\"*, “Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘If you|strong=\"H3808\"* will|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3541\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon’s princes|strong=\"H8269\"*, then|strong=\"H3318\"* your|strong=\"H3068\"* soul|strong=\"H5315\"* will|strong=\"H3068\"* live|strong=\"H2421\"*, and|strong=\"H3478\"* this|strong=\"H2063\"* city|strong=\"H5892\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire. You|strong=\"H3808\"* will|strong=\"H3068\"* live|strong=\"H2421\"*, along with|strong=\"H8313\"* your|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H3808\"* if you|strong=\"H5414\"* will|strong=\"H4428\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon’s princes|strong=\"H8269\"*, then|strong=\"H3318\"* this|strong=\"H2063\"* city|strong=\"H5892\"* will|strong=\"H4428\"* be|strong=\"H3808\"* given|strong=\"H5414\"* into|strong=\"H3318\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* Chaldeans|strong=\"H3778\"*, and|strong=\"H4428\"* they|strong=\"H3808\"* will|strong=\"H4428\"* burn|strong=\"H8313\"* it|strong=\"H5414\"* with|strong=\"H8313\"* fire, and|strong=\"H4428\"* you|strong=\"H5414\"* won’t escape|strong=\"H4422\"* out|strong=\"H3318\"* of|strong=\"H4428\"* their|strong=\"H5414\"* hand|strong=\"H3027\"*.’”" + }, + { + "verseNum": 19, + "text": "Zedekiah|strong=\"H6667\"* the|strong=\"H5414\"* king|strong=\"H4428\"* said to|strong=\"H5414\"* Jeremiah|strong=\"H3414\"*, “I|strong=\"H5414\"* am afraid|strong=\"H1672\"* of|strong=\"H4428\"* the|strong=\"H5414\"* Jews|strong=\"H3064\"* who|strong=\"H4428\"* have|strong=\"H3027\"* defected|strong=\"H5307\"* to|strong=\"H5414\"* the|strong=\"H5414\"* Chaldeans|strong=\"H3778\"*, lest|strong=\"H6435\"* they|strong=\"H3027\"* deliver|strong=\"H5414\"* me|strong=\"H5414\"* into|strong=\"H5307\"* their|strong=\"H5414\"* hand|strong=\"H3027\"*, and|strong=\"H4428\"* they|strong=\"H3027\"* mock|strong=\"H5953\"* me|strong=\"H5414\"*.”" + }, + { + "verseNum": 20, + "text": "But|strong=\"H3808\"* Jeremiah|strong=\"H3414\"* said|strong=\"H1696\"*, “They|strong=\"H3068\"* won’t deliver|strong=\"H5414\"* you|strong=\"H5414\"*. Obey|strong=\"H8085\"*, I|strong=\"H5414\"* beg|strong=\"H4994\"* you|strong=\"H5414\"*, Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*, in|strong=\"H3068\"* that|strong=\"H8085\"* which|strong=\"H3068\"* I|strong=\"H5414\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5414\"*; so|strong=\"H5414\"* it|strong=\"H5414\"* will|strong=\"H3068\"* be|strong=\"H3808\"* well|strong=\"H3190\"* with|strong=\"H3068\"* you|strong=\"H5414\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* soul|strong=\"H5315\"* will|strong=\"H3068\"* live|strong=\"H2421\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"H7200\"* if|strong=\"H7200\"* you|strong=\"H7200\"* refuse|strong=\"H3986\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, this|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H7200\"* word|strong=\"H1697\"* that|strong=\"H7200\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* shown|strong=\"H7200\"* me|strong=\"H7200\"*:" + }, + { + "verseNum": 22, + "text": "‘Behold|strong=\"H2009\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* women who|strong=\"H3605\"* are|strong=\"H1004\"* left|strong=\"H7604\"* in|strong=\"H1004\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*’s house|strong=\"H1004\"* will|strong=\"H4428\"* be|strong=\"H3201\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon’s princes|strong=\"H8269\"*, and|strong=\"H3063\"* those|strong=\"H3605\"* women will|strong=\"H4428\"* say," + }, + { + "verseNum": 23, + "text": "They|strong=\"H3588\"* will|strong=\"H4428\"* bring|strong=\"H3318\"* out|strong=\"H3318\"* all|strong=\"H3605\"* your|strong=\"H3605\"* wives and|strong=\"H1121\"* your|strong=\"H3605\"* children|strong=\"H1121\"* to|strong=\"H3318\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"*. You|strong=\"H3588\"* won’t escape|strong=\"H4422\"* out|strong=\"H3318\"* of|strong=\"H1121\"* their|strong=\"H3605\"* hand|strong=\"H3027\"*, but|strong=\"H3588\"* will|strong=\"H4428\"* be|strong=\"H3808\"* taken|strong=\"H8610\"* by|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon. You|strong=\"H3588\"* will|strong=\"H4428\"* cause|strong=\"H3318\"* this|strong=\"H2063\"* city|strong=\"H5892\"* to|strong=\"H3318\"* be|strong=\"H3808\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire.’”" + }, + { + "verseNum": 24, + "text": "Then|strong=\"H3045\"* Zedekiah|strong=\"H6667\"* said|strong=\"H1697\"* to|strong=\"H4191\"* Jeremiah|strong=\"H3414\"*, “Let|strong=\"H3808\"* no|strong=\"H3808\"* man|strong=\"H4191\"* know|strong=\"H3045\"* of|strong=\"H1697\"* these|strong=\"H4191\"* words|strong=\"H1697\"*, and|strong=\"H1697\"* you|strong=\"H3045\"* won’t die|strong=\"H4191\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* the|strong=\"H8085\"* princes|strong=\"H8269\"* hear|strong=\"H8085\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H8269\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* you|strong=\"H3588\"*, and|strong=\"H4428\"* they|strong=\"H3588\"* come|strong=\"H4994\"* to|strong=\"H1696\"* you|strong=\"H3588\"*, and|strong=\"H4428\"* tell|strong=\"H5046\"* you|strong=\"H3588\"*, ‘Declare|strong=\"H5046\"* to|strong=\"H1696\"* us|strong=\"H4994\"* now|strong=\"H4994\"* what|strong=\"H4100\"* you|strong=\"H3588\"* have|strong=\"H8269\"* said|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H8085\"* king|strong=\"H4428\"*; don’t hide|strong=\"H3582\"* it|strong=\"H3588\"* from|strong=\"H4480\"* us|strong=\"H4994\"*, and|strong=\"H4428\"* we|strong=\"H3068\"* will|strong=\"H4428\"* not|strong=\"H3808\"* put|strong=\"H4191\"* you|strong=\"H3588\"* to|strong=\"H1696\"* death|strong=\"H4191\"*; also|strong=\"H4428\"* tell|strong=\"H5046\"* us|strong=\"H4994\"* what|strong=\"H4100\"* the|strong=\"H8085\"* king|strong=\"H4428\"* said|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"*;’" + }, + { + "verseNum": 26, + "text": "then|strong=\"H5307\"* you|strong=\"H6440\"* shall|strong=\"H4428\"* tell them|strong=\"H7725\"*, ‘I|strong=\"H6440\"* presented|strong=\"H5307\"* my|strong=\"H7725\"* supplication|strong=\"H8467\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, that|strong=\"H4428\"* he|strong=\"H8033\"* would|strong=\"H4428\"* not|strong=\"H1115\"* cause|strong=\"H7725\"* me|strong=\"H6440\"* to|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* Jonathan|strong=\"H3083\"*’s house|strong=\"H1004\"*, to|strong=\"H7725\"* die|strong=\"H4191\"* there|strong=\"H8033\"*.’”" + }, + { + "verseNum": 27, + "text": "Then|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* came|strong=\"H1697\"* to|strong=\"H8085\"* Jeremiah|strong=\"H3414\"*, and|strong=\"H4428\"* asked|strong=\"H7592\"* him|strong=\"H5046\"*; and|strong=\"H4428\"* he|strong=\"H3588\"* told|strong=\"H5046\"* them|strong=\"H1992\"* according|strong=\"H4480\"* to|strong=\"H8085\"* all|strong=\"H3605\"* these|strong=\"H1992\"* words|strong=\"H1697\"* that|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* had|strong=\"H4428\"* commanded|strong=\"H6680\"*. So|strong=\"H4480\"* they|strong=\"H1992\"* stopped speaking|strong=\"H2790\"* with|strong=\"H1697\"* him|strong=\"H5046\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* matter|strong=\"H1697\"* was|strong=\"H1697\"* not|strong=\"H3808\"* perceived|strong=\"H8085\"*." + }, + { + "verseNum": 28, + "text": "So|strong=\"H1961\"* Jeremiah|strong=\"H3414\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3117\"* court|strong=\"H2691\"* of|strong=\"H3117\"* the|strong=\"H3117\"* guard|strong=\"H4307\"* until|strong=\"H5704\"* the|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Jerusalem|strong=\"H3389\"* was|strong=\"H1961\"* taken|strong=\"H3920\"*." + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3605\"* ninth|strong=\"H8671\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"*, Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon and|strong=\"H3063\"* all|strong=\"H3605\"* his|strong=\"H3605\"* army|strong=\"H2428\"* came|strong=\"H3063\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* besieged|strong=\"H6696\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "In|strong=\"H8141\"* the|strong=\"H6667\"* eleventh|strong=\"H6249\"* year|strong=\"H8141\"* of|strong=\"H8141\"* Zedekiah|strong=\"H6667\"*, in|strong=\"H8141\"* the|strong=\"H6667\"* fourth|strong=\"H7243\"* month|strong=\"H2320\"*, the|strong=\"H6667\"* ninth|strong=\"H8672\"* day|strong=\"H2320\"* of|strong=\"H8141\"* the|strong=\"H6667\"* month|strong=\"H2320\"*, a|strong=\"H3068\"* breach|strong=\"H1234\"* was|strong=\"H5892\"* made|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H6667\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 3, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon came|strong=\"H4428\"* in|strong=\"H3427\"*, and|strong=\"H4428\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* gate|strong=\"H8179\"*: Nergal Sharezer, Samgarnebo, Sarsechim|strong=\"H8310\"* the|strong=\"H3605\"* Rabsaris|strong=\"H7249\"*, Nergal Sharezer the|strong=\"H3605\"* Rabmag, with|strong=\"H3427\"* all|strong=\"H3605\"* the|strong=\"H3605\"* rest|strong=\"H7611\"* of|strong=\"H4428\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon." + }, + { + "verseNum": 4, + "text": "When|strong=\"H1961\"* Zedekiah|strong=\"H6667\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* war|strong=\"H4421\"* saw|strong=\"H7200\"* them|strong=\"H7200\"*, then|strong=\"H1961\"* they|strong=\"H3605\"* fled|strong=\"H1272\"* and|strong=\"H3063\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H3605\"* city|strong=\"H5892\"* by|strong=\"H1870\"* night|strong=\"H3915\"*, by|strong=\"H1870\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s garden|strong=\"H1588\"*, through|strong=\"H4480\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* between|strong=\"H4421\"* the|strong=\"H3605\"* two|strong=\"H4480\"* walls|strong=\"H2346\"*; and|strong=\"H3063\"* he|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"* toward|strong=\"H1870\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H1696\"* the|strong=\"H3947\"* army|strong=\"H2428\"* of|strong=\"H4428\"* the|strong=\"H3947\"* Chaldeans|strong=\"H3778\"* pursued|strong=\"H7291\"* them|strong=\"H3947\"*, and|strong=\"H4428\"* overtook|strong=\"H5381\"* Zedekiah|strong=\"H6667\"* in|strong=\"H4428\"* the|strong=\"H3947\"* plains|strong=\"H6160\"* of|strong=\"H4428\"* Jericho|strong=\"H3405\"*. When|strong=\"H1696\"* they|strong=\"H3947\"* had|strong=\"H4428\"* taken|strong=\"H3947\"* him|strong=\"H3947\"*, they|strong=\"H3947\"* brought|strong=\"H5927\"* him|strong=\"H3947\"* up|strong=\"H5927\"* to|strong=\"H1696\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon to|strong=\"H1696\"* Riblah|strong=\"H7247\"* in|strong=\"H4428\"* the|strong=\"H3947\"* land of|strong=\"H4428\"* Hamath|strong=\"H2574\"*; and|strong=\"H4428\"* he|strong=\"H1696\"* pronounced|strong=\"H1696\"* judgment|strong=\"H4941\"* on|strong=\"H5927\"* him|strong=\"H3947\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon killed|strong=\"H7819\"* Zedekiah|strong=\"H6667\"*’s sons|strong=\"H1121\"* in|strong=\"H4428\"* Riblah|strong=\"H7247\"* before|strong=\"H5869\"* his|strong=\"H3605\"* eyes|strong=\"H5869\"*. The|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon also|strong=\"H4428\"* killed|strong=\"H7819\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nobles|strong=\"H2715\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 7, + "text": "Moreover he put|strong=\"H5786\"* out|strong=\"H5786\"* Zedekiah|strong=\"H6667\"*’s eyes|strong=\"H5869\"* and|strong=\"H5869\"* bound him|strong=\"H5869\"* in|strong=\"H5869\"* fetters|strong=\"H5178\"*, to|strong=\"H5869\"* carry him|strong=\"H5869\"* to|strong=\"H5869\"* Babylon." + }, + { + "verseNum": 8, + "text": "The|strong=\"H8313\"* Chaldeans|strong=\"H3778\"* burned|strong=\"H8313\"* the|strong=\"H8313\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"* and|strong=\"H4428\"* the|strong=\"H8313\"* people|strong=\"H5971\"*’s houses|strong=\"H1004\"* with|strong=\"H8313\"* fire and|strong=\"H4428\"* broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H8313\"* walls|strong=\"H2346\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H5307\"* Nebuzaradan|strong=\"H5018\"* the|strong=\"H5921\"* captain|strong=\"H7227\"* of|strong=\"H5892\"* the|strong=\"H5921\"* guard|strong=\"H2876\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* into|strong=\"H1540\"* Babylon the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H5892\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* remained|strong=\"H7604\"* in|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, the|strong=\"H5921\"* deserters|strong=\"H5307\"* also|strong=\"H5971\"* who|strong=\"H5971\"* fell|strong=\"H5307\"* away|strong=\"H1540\"* to|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H5971\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H5892\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* remained|strong=\"H7604\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"H1931\"* Nebuzaradan|strong=\"H5018\"* the|strong=\"H5414\"* captain|strong=\"H7227\"* of|strong=\"H3117\"* the|strong=\"H5414\"* guard|strong=\"H2876\"* left|strong=\"H7604\"* of|strong=\"H3117\"* the|strong=\"H5414\"* poor|strong=\"H1800\"* of|strong=\"H3117\"* the|strong=\"H5414\"* people|strong=\"H5971\"*, who|strong=\"H1931\"* had|strong=\"H3063\"* nothing|strong=\"H3972\"*, in|strong=\"H3117\"* the|strong=\"H5414\"* land of|strong=\"H3117\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* vineyards|strong=\"H3754\"* and|strong=\"H3063\"* fields|strong=\"H3010\"* at|strong=\"H3117\"* the|strong=\"H5414\"* same|strong=\"H1931\"* time|strong=\"H3117\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H7227\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon commanded|strong=\"H6680\"* Nebuzaradan|strong=\"H5018\"* the|strong=\"H5921\"* captain|strong=\"H7227\"* of|strong=\"H4428\"* the|strong=\"H5921\"* guard|strong=\"H2876\"* concerning|strong=\"H5921\"* Jeremiah|strong=\"H3414\"*, saying," + }, + { + "verseNum": 12, + "text": "“Take|strong=\"H3947\"* him|strong=\"H5921\"* and|strong=\"H5869\"* take|strong=\"H3947\"* care|strong=\"H7760\"* of|strong=\"H5869\"* him|strong=\"H5921\"*. Do|strong=\"H6213\"* him|strong=\"H5921\"* no|strong=\"H6213\"* harm|strong=\"H7451\"*; but|strong=\"H3588\"* do|strong=\"H6213\"* to|strong=\"H1696\"* him|strong=\"H5921\"* even|strong=\"H3588\"* as|strong=\"H6213\"* he|strong=\"H3588\"* tells|strong=\"H1696\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 13, + "text": "So|strong=\"H7971\"* Nebuzaradan|strong=\"H5018\"* the|strong=\"H3605\"* captain|strong=\"H7227\"* of|strong=\"H4428\"* the|strong=\"H3605\"* guard|strong=\"H2876\"*, Nebushazban, Rabsaris|strong=\"H7249\"*, and|strong=\"H7971\"* Nergal Sharezer, Rabmag, and|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* chief|strong=\"H7227\"* officers|strong=\"H7227\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon" + }, + { + "verseNum": 14, + "text": "sent|strong=\"H7971\"* and|strong=\"H1121\"* took|strong=\"H3947\"* Jeremiah|strong=\"H3414\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H5414\"* court|strong=\"H2691\"* of|strong=\"H1121\"* the|strong=\"H5414\"* guard|strong=\"H4307\"*, and|strong=\"H1121\"* committed|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H3318\"* Gedaliah|strong=\"H1436\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam, the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"*, that|strong=\"H5971\"* he|strong=\"H1004\"* should bring|strong=\"H3318\"* him|strong=\"H5414\"* home|strong=\"H1004\"*. So|strong=\"H3947\"* he|strong=\"H1004\"* lived|strong=\"H3427\"* among|strong=\"H8432\"* the|strong=\"H5414\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* while|strong=\"H1961\"* he|strong=\"H3068\"* was|strong=\"H3068\"* shut|strong=\"H6113\"* up|strong=\"H6113\"* in|strong=\"H3068\"* the|strong=\"H3068\"* court|strong=\"H2691\"* of|strong=\"H3068\"* the|strong=\"H3068\"* guard|strong=\"H4307\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 16, + "text": "“Go|strong=\"H1980\"*, and|strong=\"H1980\"* speak|strong=\"H1697\"* to|strong=\"H1980\"* Ebedmelech the|strong=\"H6440\"* Ethiopian|strong=\"H3569\"*, saying|strong=\"H1697\"*, ‘Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H3117\"* will|strong=\"H3068\"* bring|strong=\"H1980\"* my|strong=\"H3068\"* words|strong=\"H1697\"* on|strong=\"H3117\"* this|strong=\"H2063\"* city|strong=\"H5892\"* for|strong=\"H6440\"* evil|strong=\"H7451\"*, and|strong=\"H1980\"* not|strong=\"H3808\"* for|strong=\"H6440\"* good|strong=\"H2896\"*; and|strong=\"H1980\"* they|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H1961\"* accomplished|strong=\"H1961\"* before|strong=\"H6440\"* you|strong=\"H6440\"* in|strong=\"H1980\"* that|strong=\"H3117\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H3808\"* I|strong=\"H3117\"* will|strong=\"H3068\"* deliver|strong=\"H5337\"* you|strong=\"H5414\"* in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; “and|strong=\"H3068\"* you|strong=\"H5414\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* given|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H6440\"* men of|strong=\"H3068\"* whom|strong=\"H6440\"* you|strong=\"H5414\"* are|strong=\"H3117\"* afraid|strong=\"H3016\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H3588\"* save|strong=\"H4422\"* you|strong=\"H3588\"*. You|strong=\"H3588\"* won’t fall|strong=\"H5307\"* by|strong=\"H3068\"* the|strong=\"H5002\"* sword|strong=\"H2719\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* escape|strong=\"H4422\"* with|strong=\"H3068\"* your|strong=\"H3068\"* life|strong=\"H5315\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* put|strong=\"H3068\"* your|strong=\"H3068\"* trust in|strong=\"H3068\"* me|strong=\"H5315\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* word|strong=\"H1697\"* which|strong=\"H1931\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H4480\"* Yahweh|strong=\"H3068\"*, after|strong=\"H4480\"* Nebuzaradan|strong=\"H5018\"* the|strong=\"H3605\"* captain|strong=\"H7227\"* of|strong=\"H3068\"* the|strong=\"H3605\"* guard|strong=\"H2876\"* had|strong=\"H3068\"* let|strong=\"H7971\"* him|strong=\"H7971\"* go|strong=\"H7971\"* from|strong=\"H4480\"* Ramah|strong=\"H7414\"*, when|strong=\"H1961\"* he|strong=\"H1931\"* had|strong=\"H3068\"* taken|strong=\"H3947\"* him|strong=\"H7971\"* being|strong=\"H1961\"* bound in|strong=\"H3068\"* chains among|strong=\"H8432\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captives|strong=\"H1546\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"* who|strong=\"H3605\"* were|strong=\"H1961\"* carried|strong=\"H1540\"* away|strong=\"H7971\"* captive|strong=\"H1540\"* to|strong=\"H3068\"* Babylon." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3947\"* captain|strong=\"H7227\"* of|strong=\"H3068\"* the|strong=\"H3947\"* guard|strong=\"H2876\"* took|strong=\"H3947\"* Jeremiah|strong=\"H3414\"* and|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H3947\"*, “Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* pronounced|strong=\"H1696\"* this|strong=\"H2088\"* evil|strong=\"H7451\"* on|strong=\"H3068\"* this|strong=\"H2088\"* place|strong=\"H4725\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* brought|strong=\"H6213\"* it|strong=\"H3588\"*, and|strong=\"H3068\"* done|strong=\"H6213\"* according as|strong=\"H1697\"* he|strong=\"H3588\"* spoke|strong=\"H1696\"*. Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* have|strong=\"H1961\"* not|strong=\"H3808\"* obeyed|strong=\"H8085\"* his|strong=\"H3068\"* voice|strong=\"H6963\"*, therefore|strong=\"H3588\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* has|strong=\"H3068\"* come|strong=\"H1961\"* on|strong=\"H3068\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H6258\"*, behold|strong=\"H2009\"*, I|strong=\"H3117\"* release|strong=\"H6605\"* you|strong=\"H6440\"* today|strong=\"H3117\"* from|strong=\"H4480\"* the|strong=\"H3605\"* chains which|strong=\"H5869\"* are|strong=\"H3117\"* on|strong=\"H5921\"* your|strong=\"H3605\"* hand|strong=\"H3027\"*. If|strong=\"H2009\"* it|strong=\"H7760\"* seems|strong=\"H3605\"* good|strong=\"H2896\"* to|strong=\"H3212\"* you|strong=\"H6440\"* to|strong=\"H3212\"* come|strong=\"H3212\"* with|strong=\"H5921\"* me|strong=\"H6440\"* into|strong=\"H3212\"* Babylon, come|strong=\"H3212\"*, and|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H5869\"* take|strong=\"H7760\"* care|strong=\"H3027\"* of|strong=\"H3117\"* you|strong=\"H6440\"*; but|strong=\"H7200\"* if|strong=\"H2009\"* it|strong=\"H7760\"* seems|strong=\"H3605\"* bad|strong=\"H7489\"* to|strong=\"H3212\"* you|strong=\"H6440\"* to|strong=\"H3212\"* come|strong=\"H3212\"* with|strong=\"H5921\"* me|strong=\"H6440\"* into|strong=\"H3212\"* Babylon, don’t. Behold|strong=\"H2009\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"* is|strong=\"H3117\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. Where|strong=\"H8033\"* it|strong=\"H7760\"* seems|strong=\"H3605\"* good|strong=\"H2896\"* and|strong=\"H3117\"* right|strong=\"H3477\"* to|strong=\"H3212\"* you|strong=\"H6440\"* to|strong=\"H3212\"* go|strong=\"H3212\"*, go|strong=\"H3212\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 5, + "text": "Now|strong=\"H5414\"* while|strong=\"H5750\"* he|strong=\"H3605\"* had|strong=\"H4428\"* not|strong=\"H3808\"* yet|strong=\"H5750\"* gone|strong=\"H3212\"* back|strong=\"H7725\"*, “Go|strong=\"H3212\"* back|strong=\"H7725\"* then|strong=\"H7971\"*,” he|strong=\"H3605\"* said, “to|strong=\"H7725\"* Gedaliah|strong=\"H1436\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"*, whom|strong=\"H5971\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon has|strong=\"H4428\"* made|strong=\"H5414\"* governor|strong=\"H6485\"* over|strong=\"H4428\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* dwell|strong=\"H3427\"* with|strong=\"H3427\"* him|strong=\"H5414\"* among|strong=\"H8432\"* the|strong=\"H3605\"* people|strong=\"H5971\"*; or|strong=\"H3808\"* go|strong=\"H3212\"* wherever|strong=\"H3605\"* it|strong=\"H5414\"* seems|strong=\"H3605\"* right|strong=\"H3477\"* to|strong=\"H7725\"* you|strong=\"H5414\"* to|strong=\"H7725\"* go|strong=\"H3212\"*.”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* went|strong=\"H5971\"* to|strong=\"H1121\"* Gedaliah|strong=\"H1436\"* the|strong=\"H8432\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam to|strong=\"H1121\"* Mizpah|strong=\"H4708\"*, and|strong=\"H1121\"* lived|strong=\"H3427\"* with|strong=\"H3427\"* him|strong=\"H7604\"* among|strong=\"H8432\"* the|strong=\"H8432\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* left|strong=\"H7604\"* in|strong=\"H3427\"* the|strong=\"H8432\"* land." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H3588\"* when|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forces|strong=\"H2428\"* who|strong=\"H3605\"* were|strong=\"H1121\"* in|strong=\"H4428\"* the|strong=\"H3605\"* fields|strong=\"H7704\"*, even|strong=\"H3588\"* they|strong=\"H1992\"* and|strong=\"H1121\"* their|strong=\"H3605\"* men|strong=\"H1121\"*, heard|strong=\"H8085\"* that|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon had|strong=\"H4428\"* made|strong=\"H6485\"* Gedaliah|strong=\"H1436\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam governor|strong=\"H8269\"* in|strong=\"H4428\"* the|strong=\"H3605\"* land|strong=\"H7704\"*, and|strong=\"H1121\"* had|strong=\"H4428\"* committed|strong=\"H6485\"* to|strong=\"H8085\"* him|strong=\"H3605\"* men|strong=\"H1121\"*, women|strong=\"H1992\"*, children|strong=\"H1121\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* poorest|strong=\"H1803\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land|strong=\"H7704\"*, of|strong=\"H1121\"* those|strong=\"H1992\"* who|strong=\"H3605\"* were|strong=\"H1121\"* not|strong=\"H3808\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* to|strong=\"H8085\"* Babylon," + }, + { + "verseNum": 8, + "text": "then|strong=\"H1121\"* Ishmael|strong=\"H3458\"* the|strong=\"H3458\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"*, and|strong=\"H1121\"* Johanan|strong=\"H3110\"* and|strong=\"H1121\"* Jonathan|strong=\"H3129\"* the|strong=\"H3458\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*, and|strong=\"H1121\"* Seraiah|strong=\"H8304\"* the|strong=\"H3458\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Tanhumeth|strong=\"H8576\"*, and|strong=\"H1121\"* the|strong=\"H3458\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ephai|strong=\"H5778\"* the|strong=\"H3458\"* Netophathite|strong=\"H5200\"*, and|strong=\"H1121\"* Jezaniah|strong=\"H3153\"* the|strong=\"H3458\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3458\"* Maacathite|strong=\"H4602\"*, they|strong=\"H1992\"* and|strong=\"H1121\"* their|strong=\"H1992\"* men|strong=\"H1121\"* came to|strong=\"H1121\"* Gedaliah|strong=\"H1436\"* to|strong=\"H1121\"* Mizpah|strong=\"H4708\"*." + }, + { + "verseNum": 9, + "text": "Gedaliah|strong=\"H1436\"* the|strong=\"H5647\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam the|strong=\"H5647\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"* swore|strong=\"H7650\"* to|strong=\"H1121\"* them|strong=\"H3190\"* and|strong=\"H1121\"* to|strong=\"H1121\"* their|strong=\"H5647\"* men|strong=\"H1121\"*, saying, “Don’t be|strong=\"H1121\"* afraid|strong=\"H3372\"* to|strong=\"H1121\"* serve|strong=\"H5647\"* the|strong=\"H5647\"* Chaldeans|strong=\"H3778\"*. Dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5647\"* land, and|strong=\"H1121\"* serve|strong=\"H5647\"* the|strong=\"H5647\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon, and|strong=\"H1121\"* it|strong=\"H3190\"* will|strong=\"H4428\"* be|strong=\"H1121\"* well|strong=\"H3190\"* with|strong=\"H3427\"* you|strong=\"H5647\"*." + }, + { + "verseNum": 10, + "text": "As|strong=\"H6440\"* for|strong=\"H6440\"* me|strong=\"H6440\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H5892\"* dwell|strong=\"H3427\"* at|strong=\"H3427\"* Mizpah|strong=\"H4709\"*, to|strong=\"H6440\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Chaldeans|strong=\"H3778\"* who|strong=\"H3427\"* will|strong=\"H5892\"* come|strong=\"H5892\"* to|strong=\"H6440\"* us|strong=\"H6440\"*; but you|strong=\"H6440\"*, gather wine|strong=\"H3196\"* and|strong=\"H5892\"* summer|strong=\"H7019\"* fruits|strong=\"H7019\"* and|strong=\"H5892\"* oil|strong=\"H8081\"*, and|strong=\"H5892\"* put|strong=\"H7760\"* them|strong=\"H6440\"* in|strong=\"H3427\"* your|strong=\"H7760\"* vessels|strong=\"H3627\"*, and|strong=\"H5892\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* your|strong=\"H7760\"* cities|strong=\"H5892\"* that|strong=\"H5892\"* you|strong=\"H6440\"* have|strong=\"H5892\"* taken|strong=\"H8610\"*.”" + }, + { + "verseNum": 11, + "text": "Likewise|strong=\"H1571\"* when|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* who|strong=\"H3605\"* were|strong=\"H1121\"* in|strong=\"H5921\"* Moab|strong=\"H4124\"*, and|strong=\"H1121\"* among|strong=\"H5921\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* in|strong=\"H5921\"* Edom, and|strong=\"H1121\"* who|strong=\"H3605\"* were|strong=\"H1121\"* in|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* countries, heard|strong=\"H8085\"* that|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon had|strong=\"H4428\"* left|strong=\"H5414\"* a|strong=\"H3068\"* remnant|strong=\"H7611\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H4428\"* set|strong=\"H5414\"* over|strong=\"H5921\"* them|strong=\"H5414\"* Gedaliah|strong=\"H1436\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"*," + }, + { + "verseNum": 12, + "text": "then|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* returned|strong=\"H7725\"* out|strong=\"H5080\"* of|strong=\"H4725\"* all|strong=\"H3605\"* places|strong=\"H4725\"* where|strong=\"H8033\"* they|strong=\"H8033\"* were|strong=\"H3063\"* driven|strong=\"H5080\"*, and|strong=\"H3063\"* came|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3605\"* land|strong=\"H4725\"* of|strong=\"H4725\"* Judah|strong=\"H3063\"*, to|strong=\"H7725\"* Gedaliah|strong=\"H1436\"*, to|strong=\"H7725\"* Mizpah|strong=\"H4708\"*, and|strong=\"H3063\"* gathered|strong=\"H7235\"* very|strong=\"H3966\"* much|strong=\"H7235\"* wine|strong=\"H3196\"* and|strong=\"H3063\"* summer|strong=\"H7019\"* fruits|strong=\"H7019\"*." + }, + { + "verseNum": 13, + "text": "Moreover Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forces|strong=\"H2428\"* who|strong=\"H3605\"* were|strong=\"H1121\"* in|strong=\"H1121\"* the|strong=\"H3605\"* fields|strong=\"H7704\"*, came to|strong=\"H1121\"* Gedaliah|strong=\"H1436\"* to|strong=\"H1121\"* Mizpah|strong=\"H4708\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H1121\"* said to|strong=\"H7971\"* him|strong=\"H5221\"*, “Do you|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Baalis|strong=\"H1185\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* has|strong=\"H4428\"* sent|strong=\"H7971\"* Ishmael|strong=\"H3458\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"* to|strong=\"H7971\"* take|strong=\"H5221\"* your|strong=\"H3045\"* life|strong=\"H5315\"*?”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H3045\"* Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"* spoke to|strong=\"H3212\"* Gedaliah|strong=\"H1436\"* in|strong=\"H3212\"* Mizpah|strong=\"H4709\"* secretly|strong=\"H5643\"*, saying, “Please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* go|strong=\"H3212\"*, and|strong=\"H1121\"* I|strong=\"H3045\"* will|strong=\"H5315\"* kill|strong=\"H5221\"* Ishmael|strong=\"H3458\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"*, and|strong=\"H1121\"* no|strong=\"H3808\"* man|strong=\"H1121\"* will|strong=\"H5315\"* know|strong=\"H3045\"* it|strong=\"H3045\"*. Why|strong=\"H4100\"* should|strong=\"H4100\"* he|strong=\"H3605\"* take|strong=\"H5221\"* your|strong=\"H3605\"* life|strong=\"H5315\"*, that|strong=\"H3045\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3063\"* who|strong=\"H3605\"* are|strong=\"H1121\"* gathered|strong=\"H6908\"* to|strong=\"H3212\"* you|strong=\"H3605\"* should|strong=\"H4100\"* be|strong=\"H3808\"* scattered|strong=\"H6327\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* perish?”" + }, + { + "verseNum": 16, + "text": "But|strong=\"H3588\"* Gedaliah|strong=\"H1436\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam said|strong=\"H1696\"* to|strong=\"H1696\"* Johanan|strong=\"H3110\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*, “You|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H6213\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* speak|strong=\"H1696\"* falsely|strong=\"H8267\"* of|strong=\"H1121\"* Ishmael|strong=\"H3458\"*.”" + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* in|strong=\"H4428\"* the|strong=\"H1961\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*, Ishmael|strong=\"H3458\"* the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"*, the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elishama, of|strong=\"H1121\"* the|strong=\"H1961\"* royal|strong=\"H4428\"* offspring|strong=\"H2233\"* and|strong=\"H1121\"* one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1961\"* chief|strong=\"H7227\"* officers|strong=\"H7227\"* of|strong=\"H1121\"* the|strong=\"H1961\"* king|strong=\"H4428\"*, and|strong=\"H1121\"* ten|strong=\"H6235\"* men|strong=\"H1121\"* with|strong=\"H3899\"* him|strong=\"H4428\"*, came|strong=\"H1961\"* to|strong=\"H1961\"* Gedaliah|strong=\"H1436\"* the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam to|strong=\"H1961\"* Mizpah|strong=\"H4709\"*; and|strong=\"H1121\"* there|strong=\"H8033\"* they|strong=\"H8033\"* ate bread|strong=\"H3899\"* together|strong=\"H3162\"* in|strong=\"H4428\"* Mizpah|strong=\"H4709\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H1961\"* Ishmael|strong=\"H3458\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"* arose|strong=\"H6965\"*, and|strong=\"H1121\"* the|strong=\"H5221\"* ten|strong=\"H6235\"* men|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1961\"* with|strong=\"H4428\"* him|strong=\"H5221\"*, and|strong=\"H1121\"* struck|strong=\"H5221\"* Gedaliah|strong=\"H1436\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"* with|strong=\"H4428\"* the|strong=\"H5221\"* sword|strong=\"H2719\"* and|strong=\"H1121\"* killed|strong=\"H5221\"* him|strong=\"H5221\"*, whom the|strong=\"H5221\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon had|strong=\"H1961\"* made|strong=\"H1961\"* governor|strong=\"H6485\"* over|strong=\"H4428\"* the|strong=\"H5221\"* land." + }, + { + "verseNum": 3, + "text": "Ishmael|strong=\"H3458\"* also|strong=\"H3458\"* killed|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* who|strong=\"H3605\"* were|strong=\"H1961\"* with|strong=\"H4421\"* Gedaliah|strong=\"H1436\"* at|strong=\"H4421\"* Mizpah|strong=\"H4709\"*, and|strong=\"H8033\"* the|strong=\"H3605\"* Chaldean men|strong=\"H3605\"* of|strong=\"H3605\"* war|strong=\"H4421\"* who|strong=\"H3605\"* were|strong=\"H1961\"* found|strong=\"H4672\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3117\"* second|strong=\"H8145\"* day|strong=\"H3117\"* after|strong=\"H1961\"* he|strong=\"H3117\"* had|strong=\"H1961\"* killed|strong=\"H4191\"* Gedaliah|strong=\"H1436\"*, and|strong=\"H3117\"* no|strong=\"H3808\"* man|strong=\"H4191\"* knew|strong=\"H3045\"* it|strong=\"H3045\"*," + }, + { + "verseNum": 5, + "text": "men came|strong=\"H3068\"* from|strong=\"H3027\"* Shechem|strong=\"H7927\"*, from|strong=\"H3027\"* Shiloh|strong=\"H7887\"*, and|strong=\"H3068\"* from|strong=\"H3027\"* Samaria|strong=\"H8111\"*, even|strong=\"H3068\"* eighty|strong=\"H8084\"* men, having their|strong=\"H3068\"* beards|strong=\"H2206\"* shaved|strong=\"H1548\"* and|strong=\"H3068\"* their|strong=\"H3068\"* clothes torn|strong=\"H7167\"*, and|strong=\"H3068\"* having cut|strong=\"H1413\"* themselves, with|strong=\"H1004\"* meal|strong=\"H4503\"* offerings|strong=\"H4503\"* and|strong=\"H3068\"* frankincense|strong=\"H3828\"* in|strong=\"H3068\"* their|strong=\"H3068\"* hand|strong=\"H3027\"*, to|strong=\"H3068\"* bring them|strong=\"H3027\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 6, + "text": "Ishmael|strong=\"H3458\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"* went|strong=\"H1980\"* out|strong=\"H3318\"* from|strong=\"H4480\"* Mizpah|strong=\"H4709\"* to|strong=\"H1980\"* meet|strong=\"H7125\"* them|strong=\"H3318\"*, weeping|strong=\"H1058\"* all|strong=\"H1058\"* along|strong=\"H1980\"* as|strong=\"H1961\"* he|strong=\"H4480\"* went|strong=\"H1980\"*, and|strong=\"H1121\"* as|strong=\"H1961\"* he|strong=\"H4480\"* met|strong=\"H6298\"* them|strong=\"H3318\"*, he|strong=\"H4480\"* said|strong=\"H3318\"* to|strong=\"H1980\"* them|strong=\"H3318\"*, “Come|strong=\"H1980\"* to|strong=\"H1980\"* Gedaliah|strong=\"H1436\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam.”" + }, + { + "verseNum": 7, + "text": "It|strong=\"H1931\"* was|strong=\"H1961\"* so|strong=\"H1961\"*, when|strong=\"H1961\"* they|strong=\"H1931\"* came|strong=\"H1961\"* into|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H8432\"* city|strong=\"H5892\"*, that|strong=\"H1931\"* Ishmael|strong=\"H3458\"* the|strong=\"H8432\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"* killed|strong=\"H7819\"* them|strong=\"H8432\"*, and|strong=\"H1121\"* cast them|strong=\"H8432\"* into|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H8432\"* pit, he|strong=\"H1931\"*, and|strong=\"H1121\"* the|strong=\"H8432\"* men|strong=\"H1121\"* who|strong=\"H1931\"* were|strong=\"H1961\"* with|strong=\"H5892\"* him|strong=\"H1931\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H3588\"* ten|strong=\"H6235\"* men were|strong=\"H3426\"* found|strong=\"H4672\"* among|strong=\"H8432\"* those|strong=\"H3588\"* who|strong=\"H4672\"* said to|strong=\"H4191\"* Ishmael|strong=\"H3458\"*, “Don’t kill|strong=\"H4191\"* us|strong=\"H3588\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3426\"* stores|strong=\"H4301\"* hidden|strong=\"H4301\"* in|strong=\"H4191\"* the|strong=\"H3588\"* field|strong=\"H7704\"*, of|strong=\"H7704\"* wheat|strong=\"H2406\"*, and|strong=\"H8081\"* of|strong=\"H7704\"* barley|strong=\"H8184\"*, and|strong=\"H8081\"* of|strong=\"H7704\"* oil|strong=\"H8081\"*, and|strong=\"H8081\"* of|strong=\"H7704\"* honey|strong=\"H1706\"*.”" + }, + { + "verseNum": 9, + "text": "Now|strong=\"H3478\"* the|strong=\"H3605\"* pit in|strong=\"H3478\"* which|strong=\"H1931\"* Ishmael|strong=\"H3458\"* cast|strong=\"H7993\"* all|strong=\"H3605\"* the|strong=\"H3605\"* dead|strong=\"H2491\"* bodies|strong=\"H6297\"* of|strong=\"H1121\"* the|strong=\"H3605\"* men|strong=\"H1121\"* whom|strong=\"H6440\"* he|strong=\"H1931\"* had|strong=\"H3478\"* killed|strong=\"H5221\"*, by|strong=\"H3027\"* the|strong=\"H3605\"* side|strong=\"H3027\"* of|strong=\"H1121\"* Gedaliah|strong=\"H1436\"* (this|strong=\"H6213\"* was|strong=\"H3478\"* that|strong=\"H3605\"* which|strong=\"H1931\"* Asa the|strong=\"H3605\"* king|strong=\"H4428\"* had|strong=\"H3478\"* made|strong=\"H6213\"* for|strong=\"H6213\"* fear|strong=\"H6440\"* of|strong=\"H1121\"* Baasha|strong=\"H1201\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*), Ishmael|strong=\"H3458\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"* filled|strong=\"H4390\"* it|strong=\"H1931\"* with|strong=\"H4390\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3478\"* killed|strong=\"H5221\"*." + }, + { + "verseNum": 10, + "text": "Then|strong=\"H5674\"* Ishmael|strong=\"H3458\"* carried|strong=\"H7617\"* away|strong=\"H5674\"* captive|strong=\"H7617\"* all|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* left|strong=\"H7604\"* in|strong=\"H4428\"* Mizpah|strong=\"H4709\"*, even the|strong=\"H3605\"* king|strong=\"H4428\"*’s daughters|strong=\"H1323\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* remained|strong=\"H7604\"* in|strong=\"H4428\"* Mizpah|strong=\"H4709\"*, whom|strong=\"H5971\"* Nebuzaradan|strong=\"H5018\"* the|strong=\"H3605\"* captain|strong=\"H7227\"* of|strong=\"H1121\"* the|strong=\"H3605\"* guard|strong=\"H2876\"* had|strong=\"H4428\"* committed|strong=\"H6485\"* to|strong=\"H3212\"* Gedaliah|strong=\"H1436\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam. Ishmael|strong=\"H3458\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"* carried|strong=\"H7617\"* them|strong=\"H7617\"* away|strong=\"H5674\"* captive|strong=\"H7617\"*, and|strong=\"H1121\"* departed|strong=\"H3212\"* to|strong=\"H3212\"* go|strong=\"H3212\"* over|strong=\"H5674\"* to|strong=\"H3212\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H8085\"* when|strong=\"H8085\"* Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forces|strong=\"H2428\"* who|strong=\"H3605\"* were|strong=\"H1121\"* with|strong=\"H6213\"* him|strong=\"H6213\"*, heard|strong=\"H8085\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H3605\"* Ishmael|strong=\"H3458\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"* had|strong=\"H1121\"* done|strong=\"H6213\"*," + }, + { + "verseNum": 12, + "text": "then|strong=\"H3947\"* they|strong=\"H3605\"* took|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1121\"*, and|strong=\"H1121\"* went|strong=\"H3212\"* to|strong=\"H3212\"* fight|strong=\"H3898\"* with|strong=\"H5973\"* Ishmael|strong=\"H3458\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"*, and|strong=\"H1121\"* found|strong=\"H4672\"* him|strong=\"H4672\"* by|strong=\"H4325\"* the|strong=\"H3605\"* great|strong=\"H7227\"* waters|strong=\"H4325\"* that|strong=\"H3605\"* are|strong=\"H1121\"* in|strong=\"H3212\"* Gibeon|strong=\"H1391\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"H1961\"* when|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H1961\"* with|strong=\"H5971\"* Ishmael|strong=\"H3458\"* saw|strong=\"H7200\"* Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forces|strong=\"H2428\"* who|strong=\"H3605\"* were|strong=\"H1961\"* with|strong=\"H5971\"* him|strong=\"H7200\"*, then|strong=\"H1961\"* they|strong=\"H5971\"* were|strong=\"H1961\"* glad|strong=\"H8055\"*." + }, + { + "verseNum": 14, + "text": "So|strong=\"H4480\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* Ishmael|strong=\"H3458\"* had|strong=\"H5971\"* carried|strong=\"H7617\"* away|strong=\"H7725\"* captive|strong=\"H7617\"* from|strong=\"H4480\"* Mizpah|strong=\"H4709\"* turned|strong=\"H7725\"* about|strong=\"H5437\"* and|strong=\"H1121\"* came|strong=\"H3212\"* back|strong=\"H7725\"*, and|strong=\"H1121\"* went|strong=\"H3212\"* to|strong=\"H7725\"* Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*." + }, + { + "verseNum": 15, + "text": "But Ishmael|strong=\"H3458\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"* escaped|strong=\"H4422\"* from|strong=\"H6440\"* Johanan|strong=\"H3110\"* with|strong=\"H6440\"* eight|strong=\"H8083\"* men|strong=\"H1121\"*, and|strong=\"H1121\"* went|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H3947\"* Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forces|strong=\"H2428\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5971\"* him|strong=\"H5221\"* took|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"* whom|strong=\"H5971\"* he|strong=\"H3605\"* had|strong=\"H5971\"* recovered|strong=\"H7725\"* from|strong=\"H4480\"* Ishmael|strong=\"H3458\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"*, from|strong=\"H4480\"* Mizpah|strong=\"H4709\"*, after|strong=\"H4480\"* he|strong=\"H3605\"* had|strong=\"H5971\"* killed|strong=\"H5221\"* Gedaliah|strong=\"H1436\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam—the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* war|strong=\"H4421\"*, with|strong=\"H5971\"* the|strong=\"H3605\"* women, the|strong=\"H3605\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* eunuchs|strong=\"H5631\"*, whom|strong=\"H5971\"* he|strong=\"H3605\"* had|strong=\"H5971\"* brought|strong=\"H7725\"* back|strong=\"H7725\"* from|strong=\"H4480\"* Gibeon|strong=\"H1391\"*." + }, + { + "verseNum": 17, + "text": "They departed|strong=\"H3212\"* and|strong=\"H3212\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Geruth|strong=\"H1628\"* Chimham|strong=\"H3643\"*, which is|strong=\"H4714\"* by|strong=\"H3427\"* Bethlehem|strong=\"H1035\"*, to|strong=\"H3212\"* go|strong=\"H3212\"* to|strong=\"H3212\"* enter into|strong=\"H3212\"* Egypt|strong=\"H4714\"*" + }, + { + "verseNum": 18, + "text": "because|strong=\"H3588\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Chaldeans|strong=\"H3778\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H1121\"* afraid|strong=\"H3372\"* of|strong=\"H1121\"* them|strong=\"H6440\"*, because|strong=\"H3588\"* Ishmael|strong=\"H3458\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"* had|strong=\"H4428\"* killed|strong=\"H5221\"* Gedaliah|strong=\"H1436\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam, whom|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon made|strong=\"H6485\"* governor|strong=\"H6485\"* over|strong=\"H4428\"* the|strong=\"H6440\"* land|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forces|strong=\"H2428\"*, and|strong=\"H1121\"* Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*, and|strong=\"H1121\"* Jezaniah|strong=\"H3153\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hoshaiah|strong=\"H1955\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* from|strong=\"H1121\"* the|strong=\"H3605\"* least|strong=\"H6996\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* greatest|strong=\"H1419\"*, came|strong=\"H5066\"* near|strong=\"H5066\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"H3068\"* said to|strong=\"H5704\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"*, “Please|strong=\"H4994\"* let|strong=\"H4994\"* our|strong=\"H3068\"* supplication|strong=\"H8467\"* be|strong=\"H3068\"* presented|strong=\"H7200\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* pray|strong=\"H6419\"* for|strong=\"H3588\"* us|strong=\"H4994\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, even|strong=\"H5704\"* for|strong=\"H3588\"* all|strong=\"H3605\"* this|strong=\"H2063\"* remnant|strong=\"H7611\"*, for|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H5869\"* left|strong=\"H7604\"* but|strong=\"H3588\"* a|strong=\"H3068\"* few|strong=\"H4592\"* of|strong=\"H3068\"* many|strong=\"H7235\"*, as|strong=\"H5704\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"* see|strong=\"H7200\"* us|strong=\"H4994\"*," + }, + { + "verseNum": 3, + "text": "that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* may|strong=\"H3068\"* show|strong=\"H6213\"* us|strong=\"H5046\"* the|strong=\"H6213\"* way|strong=\"H1870\"* in|strong=\"H3068\"* which|strong=\"H3068\"* we|strong=\"H3068\"* should|strong=\"H3068\"* walk|strong=\"H3212\"*, and|strong=\"H3068\"* the|strong=\"H6213\"* things|strong=\"H1697\"* that|strong=\"H3068\"* we|strong=\"H3068\"* should|strong=\"H3068\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H6030\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* said|strong=\"H1697\"* to|strong=\"H3068\"* them|strong=\"H1961\"*, “I|strong=\"H2005\"* have|strong=\"H1961\"* heard|strong=\"H8085\"* you|strong=\"H3605\"*. Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* pray|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* according|strong=\"H4480\"* to|strong=\"H3068\"* your|strong=\"H3068\"* words|strong=\"H1697\"*; and|strong=\"H3068\"* it|strong=\"H1961\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H3605\"* whatever|strong=\"H3605\"* thing|strong=\"H1697\"* Yahweh|strong=\"H3068\"* answers|strong=\"H6030\"* you|strong=\"H3605\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* declare|strong=\"H5046\"* it|strong=\"H1961\"* to|strong=\"H3068\"* you|strong=\"H3605\"*. I|strong=\"H2005\"* will|strong=\"H3068\"* keep|strong=\"H4513\"* nothing|strong=\"H3808\"* back|strong=\"H4513\"* from|strong=\"H4480\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H1961\"* they|strong=\"H1992\"* said|strong=\"H1697\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"*, “May|strong=\"H1961\"* Yahweh|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* true|strong=\"H3651\"* and|strong=\"H3068\"* faithful witness|strong=\"H5707\"* among|strong=\"H3808\"* us|strong=\"H6213\"*, if|strong=\"H1961\"* we|strong=\"H3068\"* don’t do|strong=\"H6213\"* according to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* word|strong=\"H1697\"* with|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* sends|strong=\"H7971\"* you|strong=\"H3605\"* to|strong=\"H3068\"* tell|strong=\"H3605\"* us|strong=\"H6213\"*." + }, + { + "verseNum": 6, + "text": "Whether it|strong=\"H3588\"* is|strong=\"H3068\"* good|strong=\"H2896\"*, or|strong=\"H8085\"* whether it|strong=\"H3588\"* is|strong=\"H3068\"* bad|strong=\"H7451\"*, we|strong=\"H3068\"* will|strong=\"H3068\"* obey|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* whom|strong=\"H3588\"* we|strong=\"H3068\"* send|strong=\"H7971\"* you|strong=\"H3588\"*; that|strong=\"H3588\"* it|strong=\"H3588\"* may|strong=\"H3068\"* be|strong=\"H3068\"* well|strong=\"H3190\"* with|strong=\"H3068\"* us|strong=\"H3588\"*, when|strong=\"H3588\"* we|strong=\"H3068\"* obey|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*.”" + }, + { + "verseNum": 7, + "text": "After|strong=\"H7093\"* ten|strong=\"H6235\"* days|strong=\"H3117\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H7121\"* he|strong=\"H5704\"* called|strong=\"H7121\"* Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forces|strong=\"H2428\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5971\"* him|strong=\"H7121\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* from|strong=\"H1121\"* the|strong=\"H3605\"* least|strong=\"H6996\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* greatest|strong=\"H1419\"*," + }, + { + "verseNum": 9, + "text": "and|strong=\"H3478\"* said to|strong=\"H3478\"* them|strong=\"H7971\"*, “Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* whom|strong=\"H6440\"* you|strong=\"H6440\"* sent|strong=\"H7971\"* me|strong=\"H6440\"* to|strong=\"H3478\"* present|strong=\"H5307\"* your|strong=\"H3068\"* supplication|strong=\"H8467\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, says|strong=\"H3541\"*:" + }, + { + "verseNum": 10, + "text": "‘If|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3808\"* still|strong=\"H3427\"* live|strong=\"H3427\"* in|strong=\"H3427\"* this|strong=\"H2063\"* land, then|strong=\"H6213\"* I|strong=\"H3588\"* will|strong=\"H3808\"* build|strong=\"H1129\"* you|strong=\"H3588\"*, and|strong=\"H7725\"* not|strong=\"H3808\"* pull|strong=\"H2040\"* you|strong=\"H3588\"* down|strong=\"H3427\"*, and|strong=\"H7725\"* I|strong=\"H3588\"* will|strong=\"H3808\"* plant|strong=\"H5193\"* you|strong=\"H3588\"*, and|strong=\"H7725\"* not|strong=\"H3808\"* pluck|strong=\"H5428\"* you|strong=\"H3588\"* up|strong=\"H1129\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* grieve over|strong=\"H3427\"* the|strong=\"H3588\"* distress|strong=\"H7451\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1129\"* brought|strong=\"H7725\"* on|strong=\"H3427\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 11, + "text": "Don’t be|strong=\"H3027\"* afraid|strong=\"H3372\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, of|strong=\"H4428\"* whom|strong=\"H6440\"* you|strong=\"H3588\"* are|strong=\"H3027\"* afraid|strong=\"H3372\"*. Don’t be|strong=\"H3027\"* afraid|strong=\"H3372\"* of|strong=\"H4428\"* him|strong=\"H6440\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, ‘for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* with|strong=\"H3068\"* you|strong=\"H3588\"* to|strong=\"H3068\"* save|strong=\"H3467\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* deliver|strong=\"H5337\"* you|strong=\"H3588\"* from|strong=\"H4480\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* grant|strong=\"H5414\"* you|strong=\"H5414\"* mercy|strong=\"H7355\"*, that|strong=\"H5414\"* he|strong=\"H5414\"* may|strong=\"H7725\"* have|strong=\"H7355\"* mercy|strong=\"H7355\"* on|strong=\"H7355\"* you|strong=\"H5414\"*, and|strong=\"H7725\"* cause|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* your|strong=\"H5414\"* own land." + }, + { + "verseNum": 13, + "text": "“‘But|strong=\"H3808\"* if you|strong=\"H3808\"* say|strong=\"H6963\"*, “We|strong=\"H8085\"* will|strong=\"H3068\"* not|strong=\"H3808\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* this|strong=\"H2063\"* land,” so|strong=\"H3808\"* that|strong=\"H8085\"* you|strong=\"H3808\"* don’t obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*," + }, + { + "verseNum": 14, + "text": "saying|strong=\"H6963\"*, “No|strong=\"H3808\"*, but|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H4714\"* go into|strong=\"H4714\"* the|strong=\"H8085\"* land of|strong=\"H3427\"* Egypt|strong=\"H4714\"*, where|strong=\"H8033\"* we|strong=\"H3068\"* will|strong=\"H4714\"* see|strong=\"H7200\"* no|strong=\"H3808\"* war|strong=\"H4421\"*, nor|strong=\"H3808\"* hear|strong=\"H8085\"* the|strong=\"H8085\"* sound|strong=\"H6963\"* of|strong=\"H3427\"* the|strong=\"H8085\"* trumpet|strong=\"H7782\"*, nor|strong=\"H3808\"* have|strong=\"H7200\"* hunger|strong=\"H7456\"* of|strong=\"H3427\"* bread|strong=\"H3899\"*; and|strong=\"H3899\"* there|strong=\"H8033\"* we|strong=\"H3068\"* will|strong=\"H4714\"* dwell|strong=\"H3427\"*;”’" + }, + { + "verseNum": 15, + "text": "now|strong=\"H6258\"* therefore|strong=\"H3651\"* hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, O|strong=\"H3068\"* remnant|strong=\"H7611\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*! Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘If|strong=\"H3651\"* you|strong=\"H6440\"* indeed|strong=\"H8085\"* set|strong=\"H7760\"* your|strong=\"H3068\"* faces|strong=\"H6440\"* to|strong=\"H3478\"* enter into|strong=\"H4714\"* Egypt|strong=\"H4714\"*, and|strong=\"H3063\"* go|strong=\"H3068\"* to|strong=\"H3478\"* live|strong=\"H1481\"* there|strong=\"H8033\"*," + }, + { + "verseNum": 16, + "text": "then|strong=\"H1961\"* it|strong=\"H8033\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H4480\"* the|strong=\"H4480\"* sword|strong=\"H2719\"*, which|strong=\"H8033\"* you|strong=\"H4480\"* fear|strong=\"H3372\"*, will|strong=\"H1961\"* overtake|strong=\"H5381\"* you|strong=\"H4480\"* there|strong=\"H8033\"* in|strong=\"H4191\"* the|strong=\"H4480\"* land of|strong=\"H4480\"* Egypt|strong=\"H4714\"*; and|strong=\"H4714\"* the|strong=\"H4480\"* famine|strong=\"H7458\"*, about|strong=\"H1961\"* which|strong=\"H8033\"* you|strong=\"H4480\"* are|strong=\"H4714\"* afraid|strong=\"H3372\"*, will|strong=\"H1961\"* follow|strong=\"H1961\"* close|strong=\"H1692\"* behind|strong=\"H4480\"* you|strong=\"H4480\"* there|strong=\"H8033\"* in|strong=\"H4191\"* Egypt|strong=\"H4714\"*; and|strong=\"H4714\"* you|strong=\"H4480\"* will|strong=\"H1961\"* die|strong=\"H4191\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 17, + "text": "So|strong=\"H1961\"* will|strong=\"H1961\"* it|strong=\"H7760\"* be|strong=\"H1961\"* with|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H7451\"* who|strong=\"H3605\"* set|strong=\"H7760\"* their|strong=\"H3605\"* faces|strong=\"H6440\"* to|strong=\"H4191\"* go|strong=\"H1961\"* into|strong=\"H5921\"* Egypt|strong=\"H4714\"* to|strong=\"H4191\"* live|strong=\"H1481\"* there|strong=\"H8033\"*. They|strong=\"H8033\"* will|strong=\"H1961\"* die|strong=\"H4191\"* by|strong=\"H5921\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, by|strong=\"H5921\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*, and|strong=\"H4714\"* by|strong=\"H5921\"* the|strong=\"H3605\"* pestilence|strong=\"H1698\"*. None|strong=\"H3808\"* of|strong=\"H6440\"* them|strong=\"H5921\"* will|strong=\"H1961\"* remain|strong=\"H1961\"* or|strong=\"H3808\"* escape|strong=\"H6412\"* from|strong=\"H6440\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H3605\"* I|strong=\"H5921\"* will|strong=\"H1961\"* bring|strong=\"H7760\"* on|strong=\"H5921\"* them|strong=\"H5921\"*.’" + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘As|strong=\"H1961\"* my|strong=\"H3068\"* anger|strong=\"H2534\"* and|strong=\"H3478\"* my|strong=\"H3068\"* wrath|strong=\"H2534\"* has|strong=\"H3068\"* been|strong=\"H1961\"* poured|strong=\"H5413\"* out|strong=\"H5413\"* on|strong=\"H5921\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, so|strong=\"H3651\"* my|strong=\"H3068\"* wrath|strong=\"H2534\"* will|strong=\"H3068\"* be|strong=\"H1961\"* poured|strong=\"H5413\"* out|strong=\"H5413\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* enter into|strong=\"H5921\"* Egypt|strong=\"H4714\"*; and|strong=\"H3478\"* you|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* an|strong=\"H1961\"* object|strong=\"H8047\"* of|strong=\"H3068\"* horror|strong=\"H8047\"*, an|strong=\"H1961\"* astonishment|strong=\"H8047\"*, a|strong=\"H3068\"* curse|strong=\"H7045\"*, and|strong=\"H3478\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"*; and|strong=\"H3478\"* you|strong=\"H3588\"* will|strong=\"H3068\"* see|strong=\"H7200\"* this|strong=\"H2088\"* place|strong=\"H4725\"* no|strong=\"H3808\"* more|strong=\"H5750\"*.’" + }, + { + "verseNum": 19, + "text": "“Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* concerning|strong=\"H5921\"* you|strong=\"H3588\"*, remnant|strong=\"H7611\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, ‘Don’t go|strong=\"H3068\"* into|strong=\"H5921\"* Egypt|strong=\"H4714\"*!’ Know|strong=\"H3045\"* certainly|strong=\"H3588\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* testified|strong=\"H5749\"* to|strong=\"H1696\"* you|strong=\"H3588\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* dealt|strong=\"H6213\"* deceitfully against|strong=\"H3068\"* your|strong=\"H3068\"* own|strong=\"H5315\"* souls|strong=\"H5315\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, saying, ‘Pray|strong=\"H6419\"* for|strong=\"H3588\"* us|strong=\"H5046\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*; and|strong=\"H3068\"* according to|strong=\"H5704\"* all|strong=\"H3605\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* says, so|strong=\"H3651\"* declare|strong=\"H5046\"* to|strong=\"H5704\"* us|strong=\"H5046\"*, and|strong=\"H3068\"* we|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H3588\"*.’" + }, + { + "verseNum": 21, + "text": "I|strong=\"H3117\"* have|strong=\"H3068\"* declared|strong=\"H5046\"* it|strong=\"H7971\"* to|strong=\"H3068\"* you|strong=\"H3605\"* today|strong=\"H3117\"*; but|strong=\"H3808\"* you|strong=\"H3605\"* have|strong=\"H3068\"* not|strong=\"H3808\"* obeyed|strong=\"H8085\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"* in|strong=\"H3068\"* anything|strong=\"H3605\"* for|strong=\"H7971\"* which|strong=\"H3068\"* he|strong=\"H3117\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H3068\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 22, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* know|strong=\"H3045\"* certainly|strong=\"H3588\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H2719\"* die|strong=\"H4191\"* by|strong=\"H4191\"* the|strong=\"H3588\"* sword|strong=\"H2719\"*, by|strong=\"H4191\"* the|strong=\"H3588\"* famine|strong=\"H7458\"*, and|strong=\"H2719\"* by|strong=\"H4191\"* the|strong=\"H3588\"* pestilence|strong=\"H1698\"* in|strong=\"H4191\"* the|strong=\"H3588\"* place|strong=\"H4725\"* where|strong=\"H8033\"* you|strong=\"H3588\"* desire|strong=\"H2654\"* to|strong=\"H4191\"* go|strong=\"H2719\"* to|strong=\"H4191\"* live|strong=\"H1481\"*.”" + } + ] + }, + { + "chapterNum": 43, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* Jeremiah|strong=\"H3414\"* had|strong=\"H3068\"* finished|strong=\"H3615\"* speaking|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"* had|strong=\"H3068\"* sent|strong=\"H7971\"* him|strong=\"H7971\"* to|strong=\"H1696\"* them|strong=\"H7971\"*, even|strong=\"H3068\"* all|strong=\"H3605\"* these|strong=\"H1696\"* words|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "then|strong=\"H1696\"* Azariah|strong=\"H5838\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hoshaiah|strong=\"H1955\"*, Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* proud|strong=\"H2086\"* men|strong=\"H1121\"* spoke|strong=\"H1696\"*, saying|strong=\"H1696\"* to|strong=\"H1696\"* Jeremiah|strong=\"H3414\"*, “You|strong=\"H3605\"* speak|strong=\"H1696\"* falsely|strong=\"H8267\"*. Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* sent|strong=\"H7971\"* you|strong=\"H3605\"* to|strong=\"H1696\"* say|strong=\"H1696\"*, ‘You|strong=\"H3605\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H7971\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"* to|strong=\"H1696\"* live|strong=\"H1481\"* there|strong=\"H8033\"*;’" + }, + { + "verseNum": 3, + "text": "but|strong=\"H3588\"* Baruch|strong=\"H1263\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Neriah|strong=\"H5374\"* has|strong=\"H3588\"* turned|strong=\"H5414\"* you|strong=\"H3588\"* against|strong=\"H3027\"* us|strong=\"H5414\"*, to|strong=\"H4191\"* deliver|strong=\"H5414\"* us|strong=\"H5414\"* into|strong=\"H1540\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3588\"* Chaldeans|strong=\"H3778\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H1121\"* put|strong=\"H5414\"* us|strong=\"H5414\"* to|strong=\"H4191\"* death|strong=\"H4191\"* or|strong=\"H1121\"* carry|strong=\"H1540\"* us|strong=\"H5414\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* to|strong=\"H4191\"* Babylon.”" + }, + { + "verseNum": 4, + "text": "So|strong=\"H3808\"* Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forces|strong=\"H2428\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, didn’t obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*, to|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H3947\"* Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forces|strong=\"H2428\"* took|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, who|strong=\"H3605\"* had|strong=\"H3063\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* they|strong=\"H8033\"* had|strong=\"H3063\"* been|strong=\"H3605\"* driven|strong=\"H5080\"*, to|strong=\"H7725\"* live|strong=\"H1481\"* in|strong=\"H1121\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Judah|strong=\"H3063\"*—" + }, + { + "verseNum": 6, + "text": "the|strong=\"H3605\"* men|strong=\"H1121\"*, the|strong=\"H3605\"* women|strong=\"H1323\"*, the|strong=\"H3605\"* children|strong=\"H1121\"*, the|strong=\"H3605\"* king|strong=\"H4428\"*’s daughters|strong=\"H1323\"*, and|strong=\"H1121\"* every|strong=\"H3605\"* person|strong=\"H5315\"* who|strong=\"H3605\"* Nebuzaradan|strong=\"H5018\"* the|strong=\"H3605\"* captain|strong=\"H7227\"* of|strong=\"H1121\"* the|strong=\"H3605\"* guard|strong=\"H2876\"* had|strong=\"H4428\"* left|strong=\"H3240\"* with|strong=\"H4428\"* Gedaliah|strong=\"H1436\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"*; and|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"*, and|strong=\"H1121\"* Baruch|strong=\"H1263\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Neriah|strong=\"H5374\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3588\"* came|strong=\"H3068\"* into|strong=\"H4714\"* the|strong=\"H8085\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* didn’t obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*; and|strong=\"H3068\"* they|strong=\"H3588\"* came|strong=\"H3068\"* to|strong=\"H5704\"* Tahpanhes|strong=\"H8471\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* in|strong=\"H3068\"* Tahpanhes|strong=\"H8471\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 9, + "text": "“Take|strong=\"H3947\"* great|strong=\"H1419\"* stones in|strong=\"H1004\"* your|strong=\"H3947\"* hand|strong=\"H3027\"* and|strong=\"H1419\"* hide|strong=\"H2934\"* them|strong=\"H3027\"* in|strong=\"H1004\"* mortar|strong=\"H4423\"* in|strong=\"H1004\"* the|strong=\"H3947\"* brick|strong=\"H4404\"* work|strong=\"H3027\"* which|strong=\"H1004\"* is|strong=\"H3027\"* at|strong=\"H1004\"* the|strong=\"H3947\"* entry|strong=\"H6607\"* of|strong=\"H1004\"* Pharaoh|strong=\"H6547\"*’s house|strong=\"H1004\"* in|strong=\"H1004\"* Tahpanhes|strong=\"H8471\"*, in|strong=\"H1004\"* the|strong=\"H3947\"* sight|strong=\"H5869\"* of|strong=\"H1004\"* the|strong=\"H3947\"* men|strong=\"H1419\"* of|strong=\"H1004\"* Judah|strong=\"H3064\"*." + }, + { + "verseNum": 10, + "text": "Tell them|strong=\"H5921\"*, Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* send|strong=\"H7971\"* and|strong=\"H3478\"* take|strong=\"H3947\"* Nebuchadnezzar|strong=\"H5019\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, my|strong=\"H3068\"* servant|strong=\"H5650\"*, and|strong=\"H3478\"* will|strong=\"H3068\"* set|strong=\"H7760\"* his|strong=\"H7760\"* throne|strong=\"H3678\"* on|strong=\"H5921\"* these|strong=\"H3947\"* stones that|strong=\"H3068\"* I|strong=\"H2005\"* have|strong=\"H3068\"* hidden|strong=\"H2934\"*; and|strong=\"H3478\"* he|strong=\"H3068\"* will|strong=\"H3068\"* spread|strong=\"H5186\"* his|strong=\"H7760\"* royal|strong=\"H4428\"* pavilion|strong=\"H8237\"* over|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H5221\"* will|strong=\"H4714\"* come, and|strong=\"H4714\"* will|strong=\"H4714\"* strike|strong=\"H5221\"* the|strong=\"H5221\"* land of|strong=\"H4194\"* Egypt|strong=\"H4714\"*; such as|strong=\"H5221\"* are|strong=\"H4714\"* for|strong=\"H4714\"* death|strong=\"H4194\"* will|strong=\"H4714\"* be|strong=\"H2719\"* put to|strong=\"H4714\"* death|strong=\"H4194\"*, and|strong=\"H4714\"* such as|strong=\"H5221\"* are|strong=\"H4714\"* for|strong=\"H4714\"* captivity|strong=\"H7628\"* to|strong=\"H4714\"* captivity|strong=\"H7628\"*, and|strong=\"H4714\"* such as|strong=\"H5221\"* are|strong=\"H4714\"* for|strong=\"H4714\"* the|strong=\"H5221\"* sword|strong=\"H2719\"* to|strong=\"H4714\"* the|strong=\"H5221\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H4714\"* will|strong=\"H4714\"* kindle|strong=\"H3341\"* a|strong=\"H3068\"* fire|strong=\"H3341\"* in|strong=\"H1004\"* the|strong=\"H3318\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H3318\"* gods of|strong=\"H1004\"* Egypt|strong=\"H4714\"*. He|strong=\"H8033\"* will|strong=\"H4714\"* burn|strong=\"H8313\"* them|strong=\"H7617\"*, and|strong=\"H1004\"* carry|strong=\"H3318\"* them|strong=\"H7617\"* away|strong=\"H7617\"* captive|strong=\"H7617\"*. He|strong=\"H8033\"* will|strong=\"H4714\"* array|strong=\"H5844\"* himself|strong=\"H5844\"* with|strong=\"H8313\"* the|strong=\"H3318\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, as|strong=\"H3318\"* a|strong=\"H3068\"* shepherd|strong=\"H7462\"* puts on|strong=\"H1004\"* his|strong=\"H3318\"* garment; and|strong=\"H1004\"* he|strong=\"H8033\"* will|strong=\"H4714\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* there|strong=\"H8033\"* in|strong=\"H1004\"* peace|strong=\"H7965\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1004\"* will|strong=\"H4714\"* also break|strong=\"H7665\"* the|strong=\"H7665\"* pillars|strong=\"H4676\"* of|strong=\"H1004\"* Beth|strong=\"H1004\"* Shemesh that|strong=\"H1004\"* is|strong=\"H1004\"* in|strong=\"H1004\"* the|strong=\"H7665\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*; and|strong=\"H1004\"* he|strong=\"H1004\"* will|strong=\"H4714\"* burn|strong=\"H8313\"* the|strong=\"H7665\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H7665\"* gods of|strong=\"H1004\"* Egypt|strong=\"H4714\"* with|strong=\"H8313\"* fire.’”" + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* word|strong=\"H1697\"* that|strong=\"H3605\"* came|strong=\"H1961\"* to|strong=\"H1961\"* Jeremiah|strong=\"H3414\"* concerning|strong=\"H1697\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* who|strong=\"H3605\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H1697\"* Egypt|strong=\"H4714\"*, who|strong=\"H3605\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Migdol|strong=\"H4024\"*, and|strong=\"H4714\"* at|strong=\"H3427\"* Tahpanhes|strong=\"H8471\"*, and|strong=\"H4714\"* at|strong=\"H3427\"* Memphis|strong=\"H5297\"*, and|strong=\"H4714\"* in|strong=\"H3427\"* the|strong=\"H3605\"* country of|strong=\"H1697\"* Pathros|strong=\"H6624\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘You|strong=\"H3605\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H7200\"* I|strong=\"H3117\"* have|strong=\"H3068\"* brought|strong=\"H3478\"* on|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*. Behold|strong=\"H2005\"*, today|strong=\"H3117\"* they|strong=\"H3117\"* are|strong=\"H3117\"* a|strong=\"H3068\"* desolation|strong=\"H2723\"*, and|strong=\"H3063\"* no|strong=\"H3605\"* man|strong=\"H7451\"* dwells|strong=\"H3427\"* in|strong=\"H3427\"* them|strong=\"H5921\"*," + }, + { + "verseNum": 3, + "text": "because|strong=\"H6440\"* of|strong=\"H6440\"* their|strong=\"H6440\"* wickedness|strong=\"H7451\"* which|strong=\"H1992\"* they|strong=\"H1992\"* have|strong=\"H3045\"* committed|strong=\"H6213\"* to|strong=\"H3212\"* provoke|strong=\"H3707\"* me|strong=\"H6440\"* to|strong=\"H3212\"* anger|strong=\"H3707\"*, in|strong=\"H6213\"* that|strong=\"H3045\"* they|strong=\"H1992\"* went|strong=\"H3212\"* to|strong=\"H3212\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"*, to|strong=\"H3212\"* serve|strong=\"H5647\"* other gods that|strong=\"H3045\"* they|strong=\"H1992\"* didn’t know|strong=\"H3045\"*, neither|strong=\"H3808\"* they|strong=\"H1992\"*, nor|strong=\"H3808\"* you|strong=\"H6440\"*, nor|strong=\"H3808\"* your|strong=\"H6440\"* fathers." + }, + { + "verseNum": 4, + "text": "However I|strong=\"H1697\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* you|strong=\"H3605\"* all|strong=\"H3605\"* my|strong=\"H3605\"* servants|strong=\"H5650\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*, rising|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H7971\"* sending|strong=\"H7971\"* them|strong=\"H7971\"*, saying|strong=\"H1697\"*, “Oh|strong=\"H4994\"*, don’t do|strong=\"H6213\"* this|strong=\"H2063\"* abominable|strong=\"H8441\"* thing|strong=\"H1697\"* that|strong=\"H3605\"* I|strong=\"H1697\"* hate|strong=\"H8130\"*.”" + }, + { + "verseNum": 5, + "text": "But|strong=\"H3808\"* they|strong=\"H3808\"* didn’t listen|strong=\"H8085\"* and|strong=\"H7725\"* didn’t incline|strong=\"H5186\"* their|strong=\"H8085\"* ear|strong=\"H8085\"*. They|strong=\"H3808\"* didn’t turn|strong=\"H7725\"* from|strong=\"H7725\"* their|strong=\"H8085\"* wickedness|strong=\"H7451\"*, to|strong=\"H7725\"* stop|strong=\"H3808\"* burning|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H7725\"* other|strong=\"H1115\"* gods." + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H1961\"* my|strong=\"H1961\"* wrath|strong=\"H2534\"* and|strong=\"H3063\"* my|strong=\"H1961\"* anger|strong=\"H2534\"* was|strong=\"H1961\"* poured|strong=\"H5413\"* out|strong=\"H2351\"*, and|strong=\"H3063\"* was|strong=\"H1961\"* kindled|strong=\"H1197\"* in|strong=\"H3117\"* the|strong=\"H3117\"* cities|strong=\"H5892\"* of|strong=\"H3117\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* in|strong=\"H3117\"* the|strong=\"H3117\"* streets|strong=\"H2351\"* of|strong=\"H3117\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H3063\"* they|strong=\"H3117\"* are|strong=\"H3117\"* wasted|strong=\"H2723\"* and|strong=\"H3063\"* desolate|strong=\"H8077\"*, as|strong=\"H3117\"* it|strong=\"H1961\"* is|strong=\"H2088\"* today|strong=\"H3117\"*.’" + }, + { + "verseNum": 7, + "text": "“Therefore|strong=\"H6258\"* now|strong=\"H6258\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘Why|strong=\"H4100\"* do|strong=\"H6213\"* you|strong=\"H6213\"* commit|strong=\"H6213\"* great|strong=\"H1419\"* evil|strong=\"H7451\"* against|strong=\"H3068\"* your|strong=\"H3068\"* own|strong=\"H5315\"* souls|strong=\"H5315\"*, to|strong=\"H3478\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* yourselves|strong=\"H5315\"* man|strong=\"H5315\"* and|strong=\"H3063\"* woman, infant|strong=\"H3243\"* and|strong=\"H3063\"* nursing|strong=\"H3243\"* child|strong=\"H5768\"* out|strong=\"H6213\"* of|strong=\"H3068\"* the|strong=\"H3541\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, to|strong=\"H3478\"* leave|strong=\"H3498\"* yourselves|strong=\"H5315\"* no|strong=\"H6213\"* one|strong=\"H6213\"* remaining|strong=\"H3498\"*," + }, + { + "verseNum": 8, + "text": "in|strong=\"H3027\"* that|strong=\"H3605\"* you|strong=\"H3605\"* provoke|strong=\"H3707\"* me|strong=\"H2781\"* to|strong=\"H1961\"* anger|strong=\"H3707\"* with|strong=\"H4714\"* the|strong=\"H3605\"* works|strong=\"H4639\"* of|strong=\"H3027\"* your|strong=\"H3605\"* hands|strong=\"H3027\"*, burning|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H1961\"* other|strong=\"H3605\"* gods in|strong=\"H3027\"* the|strong=\"H3605\"* land of|strong=\"H3027\"* Egypt|strong=\"H4714\"* where|strong=\"H8033\"* you|strong=\"H3605\"* have|strong=\"H1961\"* gone|strong=\"H1961\"* to|strong=\"H1961\"* live|strong=\"H1481\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H1961\"* be|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*, and|strong=\"H3027\"* that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* curse|strong=\"H7045\"* and|strong=\"H3027\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* among|strong=\"H2781\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* of|strong=\"H3027\"* the|strong=\"H3605\"* earth?" + }, + { + "verseNum": 9, + "text": "Have|strong=\"H3063\"* you|strong=\"H6213\"* forgotten|strong=\"H7911\"* the|strong=\"H6213\"* wickedness|strong=\"H7451\"* of|strong=\"H4428\"* your|strong=\"H6213\"* fathers, the|strong=\"H6213\"* wickedness|strong=\"H7451\"* of|strong=\"H4428\"* the|strong=\"H6213\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, the|strong=\"H6213\"* wickedness|strong=\"H7451\"* of|strong=\"H4428\"* their|strong=\"H6213\"* wives, your|strong=\"H6213\"* own wickedness|strong=\"H7451\"*, and|strong=\"H3063\"* the|strong=\"H6213\"* wickedness|strong=\"H7451\"* of|strong=\"H4428\"* your|strong=\"H6213\"* wives which|strong=\"H7451\"* they|strong=\"H6213\"* committed|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H6213\"* land of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* in|strong=\"H6213\"* the|strong=\"H6213\"* streets|strong=\"H2351\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*?" + }, + { + "verseNum": 10, + "text": "They|strong=\"H3117\"* are|strong=\"H3117\"* not|strong=\"H3808\"* humbled|strong=\"H1792\"* even|strong=\"H5704\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, neither|strong=\"H3808\"* have|strong=\"H3117\"* they|strong=\"H3117\"* feared|strong=\"H3372\"*, nor|strong=\"H3808\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* my|strong=\"H5414\"* law|strong=\"H8451\"*, nor|strong=\"H3808\"* in|strong=\"H1980\"* my|strong=\"H5414\"* statutes|strong=\"H2708\"*, that|strong=\"H3117\"* I|strong=\"H3117\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"* and|strong=\"H1980\"* before|strong=\"H6440\"* your|strong=\"H5414\"* fathers.’" + }, + { + "verseNum": 11, + "text": "“Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* set|strong=\"H7760\"* my|strong=\"H3605\"* face|strong=\"H6440\"* against|strong=\"H6440\"* you|strong=\"H6440\"* for|strong=\"H6440\"* evil|strong=\"H7451\"*, even|strong=\"H3651\"* to|strong=\"H3478\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H5704\"* will|strong=\"H1961\"* take|strong=\"H3947\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H6440\"* Judah|strong=\"H3063\"* that|strong=\"H3605\"* have|strong=\"H1961\"* set|strong=\"H7760\"* their|strong=\"H3605\"* faces|strong=\"H6440\"* to|strong=\"H5704\"* go|strong=\"H1961\"* into|strong=\"H5307\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H6440\"* Egypt|strong=\"H4714\"* to|strong=\"H5704\"* live|strong=\"H1481\"* there|strong=\"H8033\"*, and|strong=\"H3063\"* they|strong=\"H8033\"* will|strong=\"H1961\"* all|strong=\"H3605\"* be|strong=\"H1961\"* consumed|strong=\"H8552\"*. They|strong=\"H8033\"* will|strong=\"H1961\"* fall|strong=\"H5307\"* in|strong=\"H4191\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H6440\"* Egypt|strong=\"H4714\"*. They|strong=\"H8033\"* will|strong=\"H1961\"* be|strong=\"H1961\"* consumed|strong=\"H8552\"* by|strong=\"H4191\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* and|strong=\"H3063\"* by|strong=\"H4191\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*. They|strong=\"H8033\"* will|strong=\"H1961\"* die|strong=\"H4191\"*, from|strong=\"H6440\"* the|strong=\"H3605\"* least|strong=\"H6996\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* greatest|strong=\"H1419\"*, by|strong=\"H4191\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* and|strong=\"H3063\"* by|strong=\"H4191\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*. They|strong=\"H8033\"* will|strong=\"H1961\"* be|strong=\"H1961\"* an|strong=\"H1961\"* object|strong=\"H8047\"* of|strong=\"H6440\"* horror|strong=\"H8047\"*, an|strong=\"H1961\"* astonishment|strong=\"H8047\"*, a|strong=\"H3068\"* curse|strong=\"H7045\"*, and|strong=\"H3063\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H5921\"* I|strong=\"H5921\"* will|strong=\"H4714\"* punish|strong=\"H6485\"* those|strong=\"H5921\"* who|strong=\"H3427\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* land of|strong=\"H3427\"* Egypt|strong=\"H4714\"*, as|strong=\"H3389\"* I|strong=\"H5921\"* have|strong=\"H3389\"* punished|strong=\"H6485\"* Jerusalem|strong=\"H3389\"*, by|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*, by|strong=\"H5921\"* the|strong=\"H5921\"* famine|strong=\"H7458\"*, and|strong=\"H3389\"* by|strong=\"H5921\"* the|strong=\"H5921\"* pestilence|strong=\"H1698\"*;" + }, + { + "verseNum": 14, + "text": "so|strong=\"H1961\"* that|strong=\"H3588\"* none|strong=\"H3808\"* of|strong=\"H3427\"* the|strong=\"H3588\"* remnant|strong=\"H7611\"* of|strong=\"H3427\"* Judah|strong=\"H3063\"*, who|strong=\"H5315\"* have|strong=\"H1961\"* gone|strong=\"H1961\"* into|strong=\"H7725\"* the|strong=\"H3588\"* land of|strong=\"H3427\"* Egypt|strong=\"H4714\"* to|strong=\"H7725\"* live|strong=\"H3427\"* there|strong=\"H8033\"*, will|strong=\"H1961\"* escape|strong=\"H6412\"* or|strong=\"H3808\"* be|strong=\"H1961\"* left|strong=\"H8300\"* to|strong=\"H7725\"* return|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H3588\"* land of|strong=\"H3427\"* Judah|strong=\"H3063\"*, to|strong=\"H7725\"* which|strong=\"H1992\"* they|strong=\"H1992\"* have|strong=\"H1961\"* a|strong=\"H3068\"* desire|strong=\"H5315\"* to|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* dwell|strong=\"H3427\"* there|strong=\"H8033\"*; for|strong=\"H3588\"* no|strong=\"H3808\"* one|strong=\"H3808\"* will|strong=\"H1961\"* return|strong=\"H7725\"* except|strong=\"H3588\"* those|strong=\"H1992\"* who|strong=\"H5315\"* will|strong=\"H1961\"* escape|strong=\"H6412\"*.’”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H6030\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1419\"* who|strong=\"H3605\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* their|strong=\"H3605\"* wives burned|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H4714\"* other|strong=\"H3605\"* gods, and|strong=\"H6030\"* all|strong=\"H3605\"* the|strong=\"H3605\"* women who|strong=\"H3605\"* stood|strong=\"H5975\"* by|strong=\"H5975\"*, a|strong=\"H3068\"* great|strong=\"H1419\"* assembly|strong=\"H6951\"*, even|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H3427\"* Egypt|strong=\"H4714\"*, in|strong=\"H3427\"* Pathros|strong=\"H6624\"*, answered|strong=\"H6030\"* Jeremiah|strong=\"H3414\"*, saying," + }, + { + "verseNum": 16, + "text": "“As|strong=\"H1697\"* for|strong=\"H3068\"* the|strong=\"H8085\"* word|strong=\"H1697\"* that|strong=\"H8085\"* you|strong=\"H1696\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* us|strong=\"H8085\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, we|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H8085\"* listen|strong=\"H8085\"* to|strong=\"H1696\"* you|strong=\"H1696\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H1961\"* certainly|strong=\"H3588\"* perform|strong=\"H6213\"* every|strong=\"H3605\"* word|strong=\"H1697\"* that|strong=\"H3588\"* has|strong=\"H1961\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* our|strong=\"H3605\"* mouth|strong=\"H6310\"*, to|strong=\"H3318\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H3318\"* the|strong=\"H3605\"* queen|strong=\"H4446\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sky|strong=\"H8064\"* and|strong=\"H3063\"* to|strong=\"H3318\"* pour|strong=\"H5258\"* out|strong=\"H3318\"* drink|strong=\"H5262\"* offerings|strong=\"H5262\"* to|strong=\"H3318\"* her|strong=\"H3605\"*, as|strong=\"H1697\"* we|strong=\"H3068\"* have|strong=\"H1961\"* done|strong=\"H6213\"*, we|strong=\"H3068\"* and|strong=\"H3063\"* our|strong=\"H3605\"* fathers, our|strong=\"H3605\"* kings|strong=\"H4428\"* and|strong=\"H3063\"* our|strong=\"H3605\"* princes|strong=\"H8269\"*, in|strong=\"H6213\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* in|strong=\"H6213\"* the|strong=\"H3605\"* streets|strong=\"H2351\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*; for|strong=\"H3588\"* then|strong=\"H1961\"* we|strong=\"H3068\"* had|strong=\"H1961\"* plenty|strong=\"H7646\"* of|strong=\"H4428\"* food|strong=\"H3899\"*, and|strong=\"H3063\"* were|strong=\"H1961\"* well|strong=\"H2896\"*, and|strong=\"H3063\"* saw|strong=\"H7200\"* no|strong=\"H3808\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H3605\"* since|strong=\"H4480\"* we|strong=\"H3068\"* stopped|strong=\"H2308\"* burning|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H6999\"* the|strong=\"H3605\"* queen|strong=\"H4446\"* of|strong=\"H4480\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* pouring|strong=\"H5258\"* out|strong=\"H4480\"* drink|strong=\"H5262\"* offerings|strong=\"H5262\"* to|strong=\"H6999\"* her|strong=\"H3605\"*, we|strong=\"H3068\"* have|strong=\"H3605\"* lacked|strong=\"H2637\"* all|strong=\"H3605\"* things|strong=\"H3605\"*, and|strong=\"H8064\"* have|strong=\"H3605\"* been|strong=\"H3605\"* consumed|strong=\"H8552\"* by|strong=\"H3605\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* and|strong=\"H8064\"* by|strong=\"H3605\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*.”" + }, + { + "verseNum": 19, + "text": "The|strong=\"H3588\"* women said, “When|strong=\"H3588\"* we|strong=\"H3068\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H6213\"* the|strong=\"H3588\"* queen|strong=\"H4446\"* of|strong=\"H6213\"* the|strong=\"H3588\"* sky|strong=\"H8064\"* and|strong=\"H8064\"* poured|strong=\"H5258\"* out|strong=\"H5258\"* drink|strong=\"H5262\"* offerings|strong=\"H5262\"* to|strong=\"H6213\"* her|strong=\"H6213\"*, did|strong=\"H6213\"* we|strong=\"H3068\"* make|strong=\"H6213\"* her|strong=\"H6213\"* cakes|strong=\"H3561\"* to|strong=\"H6213\"* worship|strong=\"H6087\"* her|strong=\"H6213\"*, and|strong=\"H8064\"* pour|strong=\"H5258\"* out|strong=\"H5258\"* drink|strong=\"H5262\"* offerings|strong=\"H5262\"* to|strong=\"H6213\"* her|strong=\"H6213\"*, without|strong=\"H1107\"* our|strong=\"H3588\"* husbands?”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H6030\"* Jeremiah|strong=\"H3414\"* said|strong=\"H1697\"* to|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*—to|strong=\"H5921\"* the|strong=\"H3605\"* men|strong=\"H1397\"* and|strong=\"H6030\"* to|strong=\"H5921\"* the|strong=\"H3605\"* women, even|strong=\"H5921\"* to|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* had|strong=\"H5971\"* given him|strong=\"H5921\"* an|strong=\"H6030\"* answer|strong=\"H6030\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 21, + "text": "“The|strong=\"H5921\"* incense|strong=\"H6999\"* that|strong=\"H5971\"* you|strong=\"H5921\"* burned|strong=\"H6999\"* in|strong=\"H5921\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* in|strong=\"H5921\"* the|strong=\"H5921\"* streets|strong=\"H2351\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, you|strong=\"H5921\"* and|strong=\"H3063\"* your|strong=\"H3068\"* fathers, your|strong=\"H3068\"* kings|strong=\"H4428\"* and|strong=\"H3063\"* your|strong=\"H3068\"* princes|strong=\"H8269\"*, and|strong=\"H3063\"* the|strong=\"H5921\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H5921\"* land, didn’t Yahweh|strong=\"H3068\"* remember|strong=\"H2142\"* them|strong=\"H5921\"*, and|strong=\"H3063\"* didn’t it|strong=\"H5921\"* come|strong=\"H5927\"* into|strong=\"H5927\"* his|strong=\"H3068\"* mind|strong=\"H3820\"*?" + }, + { + "verseNum": 22, + "text": "Thus|strong=\"H2088\"* Yahweh|strong=\"H3068\"* could|strong=\"H3201\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* bear|strong=\"H5375\"* it|strong=\"H6213\"*, because|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* evil|strong=\"H7455\"* of|strong=\"H3068\"* your|strong=\"H3068\"* doings|strong=\"H4611\"* and|strong=\"H3068\"* because|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* abominations|strong=\"H8441\"* which|strong=\"H3068\"* you|strong=\"H6440\"* have|strong=\"H1961\"* committed|strong=\"H6213\"*. Therefore|strong=\"H3068\"* your|strong=\"H3068\"* land|strong=\"H6440\"* has|strong=\"H3068\"* become|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8047\"*, an|strong=\"H6213\"* astonishment|strong=\"H8047\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* curse|strong=\"H7045\"*, without|strong=\"H3808\"* inhabitant|strong=\"H3427\"*, as|strong=\"H3117\"* it|strong=\"H6213\"* is|strong=\"H3068\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 23, + "text": "Because|strong=\"H5921\"* you|strong=\"H6440\"* have|strong=\"H3068\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* and|strong=\"H1980\"* because|strong=\"H5921\"* you|strong=\"H6440\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1980\"* have|strong=\"H3068\"* not|strong=\"H3808\"* obeyed|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*, nor|strong=\"H3808\"* walked|strong=\"H1980\"* in|strong=\"H5921\"* his|strong=\"H3068\"* law|strong=\"H8451\"*, nor|strong=\"H3808\"* in|strong=\"H5921\"* his|strong=\"H3068\"* statutes|strong=\"H2708\"*, nor|strong=\"H3808\"* in|strong=\"H5921\"* his|strong=\"H3068\"* testimonies|strong=\"H5715\"*; therefore|strong=\"H3651\"* this|strong=\"H2088\"* evil|strong=\"H7451\"* has|strong=\"H3068\"* happened|strong=\"H7122\"* to|strong=\"H1980\"* you|strong=\"H6440\"*, as|strong=\"H3117\"* it|strong=\"H5921\"* is|strong=\"H3068\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 24, + "text": "Moreover Jeremiah|strong=\"H3414\"* said|strong=\"H1697\"* to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, including|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* women, “Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, all|strong=\"H3605\"* Judah|strong=\"H3063\"* who|strong=\"H3605\"* are|strong=\"H5971\"* in|strong=\"H3068\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*!" + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘You|strong=\"H6213\"* and|strong=\"H6965\"* your|strong=\"H3068\"* wives have|strong=\"H3068\"* both spoken|strong=\"H1696\"* with|strong=\"H4390\"* your|strong=\"H3068\"* mouths|strong=\"H6310\"*, and|strong=\"H6965\"* with|strong=\"H4390\"* your|strong=\"H3068\"* hands|strong=\"H3027\"* have|strong=\"H3068\"* fulfilled|strong=\"H4390\"* it|strong=\"H6213\"*, saying|strong=\"H1696\"*, “We|strong=\"H6213\"* will|strong=\"H3068\"* surely|strong=\"H6213\"* perform|strong=\"H6213\"* our|strong=\"H3068\"* vows|strong=\"H5088\"* that|strong=\"H3068\"* we|strong=\"H3068\"* have|strong=\"H3068\"* vowed|strong=\"H5087\"*, to|strong=\"H1696\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H1696\"* the|strong=\"H3541\"* queen|strong=\"H4446\"* of|strong=\"H3068\"* the|strong=\"H3541\"* sky|strong=\"H8064\"*, and|strong=\"H6965\"* to|strong=\"H1696\"* pour|strong=\"H5258\"* out|strong=\"H5258\"* drink|strong=\"H5262\"* offerings|strong=\"H5262\"* to|strong=\"H1696\"* her|strong=\"H4390\"*.”" + }, + { + "verseNum": 26, + "text": "“Therefore|strong=\"H3651\"* hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, all|strong=\"H3605\"* Judah|strong=\"H3063\"* who|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* have|strong=\"H1961\"* sworn|strong=\"H7650\"* by|strong=\"H7650\"* my|strong=\"H8085\"* great|strong=\"H1419\"* name|strong=\"H8034\"*,’ says|strong=\"H1697\"* Yahweh|strong=\"H3068\"*, ‘that|strong=\"H3605\"* my|strong=\"H8085\"* name|strong=\"H8034\"* will|strong=\"H3068\"* no|strong=\"H3605\"* more|strong=\"H5750\"* be|strong=\"H1961\"* named|strong=\"H7121\"* in|strong=\"H3427\"* the|strong=\"H3605\"* mouth|strong=\"H6310\"* of|strong=\"H3068\"* any|strong=\"H3605\"* man|strong=\"H1419\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* in|strong=\"H3427\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, saying|strong=\"H1697\"*, “As|strong=\"H1697\"* the|strong=\"H3605\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*.”" + }, + { + "verseNum": 27, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* watch|strong=\"H8245\"* over|strong=\"H5921\"* them|strong=\"H5921\"* for|strong=\"H5704\"* evil|strong=\"H7451\"*, and|strong=\"H3063\"* not|strong=\"H3808\"* for|strong=\"H5704\"* good|strong=\"H2896\"*; and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H7451\"* of|strong=\"H5921\"* Judah|strong=\"H3063\"* who|strong=\"H3605\"* are|strong=\"H4714\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land of|strong=\"H5921\"* Egypt|strong=\"H4714\"* will|strong=\"H4714\"* be|strong=\"H3808\"* consumed|strong=\"H3615\"* by|strong=\"H5921\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* and|strong=\"H3063\"* by|strong=\"H5921\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*, until|strong=\"H5704\"* they|strong=\"H3808\"* are|strong=\"H4714\"* all|strong=\"H3605\"* gone|strong=\"H8552\"*." + }, + { + "verseNum": 28, + "text": "Those|strong=\"H1992\"* who|strong=\"H4310\"* escape|strong=\"H6412\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* will|strong=\"H4310\"* return|strong=\"H7725\"* out|strong=\"H4480\"* of|strong=\"H1697\"* the|strong=\"H3605\"* land of|strong=\"H1697\"* Egypt|strong=\"H4714\"* into|strong=\"H7725\"* the|strong=\"H3605\"* land of|strong=\"H1697\"* Judah|strong=\"H3063\"* few|strong=\"H4557\"* in|strong=\"H7725\"* number|strong=\"H4557\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H1697\"* Judah|strong=\"H3063\"*, who|strong=\"H4310\"* have|strong=\"H3045\"* gone|strong=\"H4480\"* into|strong=\"H7725\"* the|strong=\"H3605\"* land of|strong=\"H1697\"* Egypt|strong=\"H4714\"* to|strong=\"H7725\"* live|strong=\"H1481\"* there|strong=\"H8033\"*, will|strong=\"H4310\"* know|strong=\"H3045\"* whose|strong=\"H4310\"* word|strong=\"H1697\"* will|strong=\"H4310\"* stand|strong=\"H6965\"*, mine|strong=\"H3045\"* or|strong=\"H4480\"* theirs|strong=\"H1992\"*." + }, + { + "verseNum": 29, + "text": "“‘This|strong=\"H2088\"* will|strong=\"H3068\"* be|strong=\"H1697\"* the|strong=\"H5002\"* sign to|strong=\"H3068\"* you|strong=\"H3588\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, ‘that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* you|strong=\"H3588\"* in|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* my|strong=\"H3068\"* words|strong=\"H1697\"* will|strong=\"H3068\"* surely|strong=\"H3588\"* stand|strong=\"H6965\"* against|strong=\"H5921\"* you|strong=\"H3588\"* for|strong=\"H3588\"* evil|strong=\"H7451\"*.’" + }, + { + "verseNum": 30, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* give|strong=\"H5414\"* Pharaoh|strong=\"H6548\"* Hophra|strong=\"H6548\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* into|strong=\"H4714\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* his|strong=\"H5414\"* enemies|strong=\"H3027\"* and|strong=\"H3063\"* into|strong=\"H4714\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* those|strong=\"H5315\"* who|strong=\"H3068\"* seek|strong=\"H1245\"* his|strong=\"H5414\"* life|strong=\"H5315\"*, just as|strong=\"H5315\"* I|strong=\"H2005\"* gave|strong=\"H5414\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* into|strong=\"H4714\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, who|strong=\"H3068\"* was|strong=\"H3068\"* his|strong=\"H5414\"* enemy and|strong=\"H3063\"* sought|strong=\"H1245\"* his|strong=\"H5414\"* life|strong=\"H5315\"*.’”" + } + ] + }, + { + "chapterNum": 45, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5921\"* message|strong=\"H1697\"* that|strong=\"H1697\"* Jeremiah|strong=\"H3414\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Baruch|strong=\"H1263\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Neriah|strong=\"H5374\"*, when|strong=\"H1696\"* he|strong=\"H5921\"* wrote|strong=\"H3789\"* these|strong=\"H1696\"* words|strong=\"H1697\"* in|strong=\"H8141\"* a|strong=\"H3068\"* book|strong=\"H5612\"* at|strong=\"H5921\"* the|strong=\"H5921\"* mouth|strong=\"H6310\"* of|strong=\"H1121\"* Jeremiah|strong=\"H3414\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* fourth|strong=\"H7243\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"* to|strong=\"H3478\"* you|strong=\"H5921\"*, Baruch|strong=\"H1263\"*:" + }, + { + "verseNum": 3, + "text": "‘You|strong=\"H3588\"* said, “Woe is|strong=\"H3068\"* me|strong=\"H4994\"* now|strong=\"H4994\"*! For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* added|strong=\"H3254\"* sorrow|strong=\"H3015\"* to|strong=\"H3068\"* my|strong=\"H3068\"* pain|strong=\"H4341\"*! I|strong=\"H3588\"* am|strong=\"H3068\"* weary|strong=\"H3021\"* with|strong=\"H3068\"* my|strong=\"H3068\"* groaning, and|strong=\"H3068\"* I|strong=\"H3588\"* find|strong=\"H4672\"* no|strong=\"H3808\"* rest|strong=\"H4496\"*.”’" + }, + { + "verseNum": 4, + "text": "“You|strong=\"H3605\"* shall|strong=\"H3068\"* tell|strong=\"H3605\"* him|strong=\"H1931\"*, Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2009\"*, that|strong=\"H3605\"* which|strong=\"H1931\"* I|strong=\"H3541\"* have|strong=\"H3068\"* built|strong=\"H1129\"*, I|strong=\"H3541\"* will|strong=\"H3068\"* break|strong=\"H2040\"* down|strong=\"H2040\"*, and|strong=\"H3068\"* that|strong=\"H3605\"* which|strong=\"H1931\"* I|strong=\"H3541\"* have|strong=\"H3068\"* planted|strong=\"H5193\"* I|strong=\"H3541\"* will|strong=\"H3068\"* pluck|strong=\"H5428\"* up|strong=\"H1129\"*; and|strong=\"H3068\"* this|strong=\"H1931\"* in|strong=\"H3068\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* land." + }, + { + "verseNum": 5, + "text": "Do|strong=\"H3068\"* you|strong=\"H3588\"* seek|strong=\"H1245\"* great|strong=\"H1419\"* things|strong=\"H1419\"* for|strong=\"H3588\"* yourself|strong=\"H5315\"*? Don’t seek|strong=\"H1245\"* them|strong=\"H5414\"*; for|strong=\"H3588\"*, behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H5414\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, ‘but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* let|strong=\"H5414\"* you|strong=\"H3588\"* escape|strong=\"H7998\"* with|strong=\"H3068\"* your|strong=\"H3068\"* life|strong=\"H5315\"* wherever|strong=\"H3605\"* you|strong=\"H3588\"* go|strong=\"H3212\"*.’”" + } + ] + }, + { + "chapterNum": 46, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 2, + "text": "Of|strong=\"H1121\"* Egypt|strong=\"H4714\"*: concerning|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H2428\"* of|strong=\"H1121\"* Pharaoh|strong=\"H6549\"* Necoh king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, which|strong=\"H2428\"* was|strong=\"H1961\"* by|strong=\"H5921\"* the|strong=\"H5921\"* river|strong=\"H5104\"* Euphrates|strong=\"H6578\"* in|strong=\"H8141\"* Carchemish|strong=\"H3751\"*, which|strong=\"H2428\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon struck|strong=\"H5221\"* in|strong=\"H8141\"* the|strong=\"H5921\"* fourth|strong=\"H7243\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 3, + "text": "“Prepare|strong=\"H6186\"* the|strong=\"H5066\"* buckler|strong=\"H4043\"* and|strong=\"H4043\"* shield|strong=\"H4043\"*," + }, + { + "verseNum": 4, + "text": "Harness the|strong=\"H5927\"* horses|strong=\"H5483\"*, and|strong=\"H5483\"* get|strong=\"H5927\"* up|strong=\"H5927\"*, you|strong=\"H3847\"* horsemen|strong=\"H6571\"*," + }, + { + "verseNum": 5, + "text": "Why|strong=\"H4069\"* have|strong=\"H3068\"* I|strong=\"H7200\"* seen|strong=\"H7200\"* it|strong=\"H7200\"*?" + }, + { + "verseNum": 6, + "text": "“Don’t let the|strong=\"H5921\"* swift|strong=\"H7031\"* flee|strong=\"H5127\"* away|strong=\"H5127\"*," + }, + { + "verseNum": 7, + "text": "“Who|strong=\"H4310\"* is|strong=\"H2088\"* this|strong=\"H2088\"* who|strong=\"H4310\"* rises|strong=\"H5927\"* up|strong=\"H5927\"* like|strong=\"H5927\"* the|strong=\"H5927\"* Nile|strong=\"H2975\"*," + }, + { + "verseNum": 8, + "text": "Egypt|strong=\"H4714\"* rises|strong=\"H5927\"* up|strong=\"H5927\"* like|strong=\"H5927\"* the|strong=\"H3680\"* Nile|strong=\"H2975\"*," + }, + { + "verseNum": 9, + "text": "Go|strong=\"H3318\"* up|strong=\"H5927\"*, you|strong=\"H3318\"* horses|strong=\"H5483\"*!" + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* that|strong=\"H3588\"* day|strong=\"H3117\"* is|strong=\"H1931\"* of|strong=\"H3117\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3117\"* Armies|strong=\"H6635\"*," + }, + { + "verseNum": 11, + "text": "Go|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* Gilead|strong=\"H1568\"*, and|strong=\"H4714\"* take|strong=\"H3947\"* balm|strong=\"H6875\"*, virgin|strong=\"H1330\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H8085\"* nations|strong=\"H1471\"* have|strong=\"H1471\"* heard|strong=\"H8085\"* of|strong=\"H4390\"* your|strong=\"H8085\"* shame|strong=\"H7036\"*," + }, + { + "verseNum": 13, + "text": "The|strong=\"H5221\"* word|strong=\"H1697\"* that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Jeremiah|strong=\"H3414\"* the|strong=\"H5221\"* prophet|strong=\"H5030\"*, how that|strong=\"H3068\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon should|strong=\"H3068\"* come and|strong=\"H3068\"* strike|strong=\"H5221\"* the|strong=\"H5221\"* land of|strong=\"H4428\"* Egypt|strong=\"H4714\"*:" + }, + { + "verseNum": 14, + "text": "“Declare|strong=\"H5046\"* in|strong=\"H8085\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 15, + "text": "Why|strong=\"H4069\"* are|strong=\"H3068\"* your|strong=\"H3068\"* strong ones|strong=\"H5975\"* swept away|strong=\"H1920\"*?" + }, + { + "verseNum": 16, + "text": "He|strong=\"H5971\"* made|strong=\"H7235\"* many|strong=\"H7235\"* to|strong=\"H7725\"* stumble|strong=\"H3782\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H8033\"* cried|strong=\"H7121\"* there|strong=\"H8033\"*, ‘Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* is|strong=\"H4428\"* but|strong=\"H4428\"* a|strong=\"H3068\"* noise|strong=\"H7588\"*;" + }, + { + "verseNum": 18, + "text": "“As|strong=\"H3068\"* I|strong=\"H3588\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* King|strong=\"H4428\"*," + }, + { + "verseNum": 19, + "text": "You|strong=\"H3588\"* daughter|strong=\"H1323\"* who|strong=\"H3427\"* dwells|strong=\"H3427\"* in|strong=\"H3427\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 20, + "text": "“Egypt|strong=\"H4714\"* is|strong=\"H4714\"* a|strong=\"H3068\"* very beautiful heifer|strong=\"H5697\"*;" + }, + { + "verseNum": 21, + "text": "Also|strong=\"H1571\"* her|strong=\"H5921\"* hired|strong=\"H7916\"* men|strong=\"H1992\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H7130\"* of|strong=\"H3117\"* her|strong=\"H5921\"* are|strong=\"H3117\"* like|strong=\"H3808\"* calves|strong=\"H5695\"* of|strong=\"H3117\"* the|strong=\"H5921\"* stall|strong=\"H4770\"*," + }, + { + "verseNum": 22, + "text": "Its|strong=\"H3588\"* sound|strong=\"H6963\"* will|strong=\"H6963\"* go|strong=\"H3212\"* like|strong=\"H6086\"* the|strong=\"H3588\"* serpent|strong=\"H5175\"*," + }, + { + "verseNum": 23, + "text": "They|strong=\"H1992\"* will|strong=\"H3068\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* her|strong=\"H3772\"* forest|strong=\"H3293\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 24, + "text": "The|strong=\"H5414\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Egypt|strong=\"H4714\"* will|strong=\"H5971\"* be|strong=\"H3027\"* disappointed;" + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* Amon of|strong=\"H4428\"* No|strong=\"H4996\"*, and|strong=\"H3478\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H3478\"* Egypt|strong=\"H4714\"*, with|strong=\"H3068\"* her|strong=\"H5921\"* gods and|strong=\"H3478\"* her|strong=\"H5921\"* kings|strong=\"H4428\"*, even|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H3478\"* those|strong=\"H5921\"* who|strong=\"H3068\"* trust in|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H3117\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5002\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* those|strong=\"H5315\"* who|strong=\"H3068\"* seek|strong=\"H1245\"* their|strong=\"H3068\"* lives|strong=\"H5315\"*, and|strong=\"H3068\"* into|strong=\"H3027\"* the|strong=\"H5002\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3068\"* into|strong=\"H3027\"* the|strong=\"H5002\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* his|strong=\"H5414\"* servants|strong=\"H5650\"*. Afterwards it|strong=\"H5414\"* will|strong=\"H3068\"* be|strong=\"H3027\"* inhabited|strong=\"H7931\"*, as|strong=\"H3117\"* in|strong=\"H3068\"* the|strong=\"H5002\"* days|strong=\"H3117\"* of|strong=\"H4428\"* old|strong=\"H6924\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 27, + "text": "“But|strong=\"H3588\"* don’t you|strong=\"H3588\"* be|strong=\"H3478\"* afraid|strong=\"H3372\"*, Jacob|strong=\"H3290\"* my|strong=\"H7725\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 28, + "text": "Don’t be|strong=\"H3808\"* afraid|strong=\"H3372\"*, O|strong=\"H3068\"* Jacob|strong=\"H3290\"* my|strong=\"H3605\"* servant|strong=\"H5650\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 47, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* that|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* the|strong=\"H5221\"* prophet|strong=\"H5030\"* concerning|strong=\"H1697\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"*, before|strong=\"H2962\"* Pharaoh|strong=\"H6547\"* struck|strong=\"H5221\"* Gaza|strong=\"H5804\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 3, + "text": "At|strong=\"H3808\"* the|strong=\"H3027\"* noise|strong=\"H6963\"* of|strong=\"H1121\"* the|strong=\"H3027\"* stamping|strong=\"H8161\"* of|strong=\"H1121\"* the|strong=\"H3027\"* hoofs|strong=\"H6541\"* of|strong=\"H1121\"* his|strong=\"H3027\"* strong ones|strong=\"H1121\"*," + }, + { + "verseNum": 4, + "text": "because|strong=\"H3588\"* of|strong=\"H3068\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3588\"* comes|strong=\"H3117\"* to|strong=\"H3068\"* destroy|strong=\"H7703\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*," + }, + { + "verseNum": 5, + "text": "Baldness|strong=\"H7144\"* has|strong=\"H7144\"* come on|strong=\"H7144\"* Gaza|strong=\"H5804\"*;" + }, + { + "verseNum": 6, + "text": "“‘You|strong=\"H5704\"* sword|strong=\"H2719\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, how|strong=\"H5704\"* long|strong=\"H5704\"* will|strong=\"H3068\"* it|strong=\"H5704\"* be|strong=\"H3808\"* before|strong=\"H5704\"* you|strong=\"H5704\"* are|strong=\"H3068\"* quiet|strong=\"H8252\"*?" + }, + { + "verseNum": 7, + "text": "“How can you|strong=\"H6680\"* be|strong=\"H3068\"* quiet|strong=\"H8252\"*," + } + ] + }, + { + "chapterNum": 48, + "verses": [ + { + "verseNum": 1, + "text": "Of|strong=\"H3068\"* Moab|strong=\"H4124\"*. Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*:" + }, + { + "verseNum": 2, + "text": "The|strong=\"H5921\"* praise|strong=\"H8416\"* of|strong=\"H5921\"* Moab|strong=\"H4124\"* is|strong=\"H1571\"* no|strong=\"H3772\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H6963\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* a|strong=\"H3068\"* cry|strong=\"H6818\"* from|strong=\"H6963\"* Horonaim|strong=\"H2773\"*," + }, + { + "verseNum": 4, + "text": "Moab|strong=\"H4124\"* is|strong=\"H4124\"* destroyed|strong=\"H7665\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H8085\"* go|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H5927\"* the|strong=\"H8085\"* ascent|strong=\"H4608\"* of|strong=\"H4608\"* Luhith|strong=\"H3872\"* with|strong=\"H5927\"* continual|strong=\"H1065\"* weeping|strong=\"H1065\"*." + }, + { + "verseNum": 6, + "text": "Flee|strong=\"H5127\"*! Save|strong=\"H4422\"* your|strong=\"H1961\"* lives|strong=\"H5315\"*!" + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1571\"* trusted in|strong=\"H3162\"* your|strong=\"H3588\"* works|strong=\"H4639\"* and|strong=\"H3548\"* in|strong=\"H3162\"* your|strong=\"H3588\"* treasures," + }, + { + "verseNum": 8, + "text": "The|strong=\"H3605\"* destroyer|strong=\"H7703\"* will|strong=\"H3068\"* come|strong=\"H5892\"* on|strong=\"H3068\"* every|strong=\"H3605\"* city|strong=\"H5892\"*," + }, + { + "verseNum": 9, + "text": "Give|strong=\"H5414\"* wings|strong=\"H6731\"* to|strong=\"H3318\"* Moab|strong=\"H4124\"*," + }, + { + "verseNum": 10, + "text": "“Cursed is|strong=\"H3068\"* he|strong=\"H6213\"* who|strong=\"H3068\"* does|strong=\"H6213\"* the|strong=\"H6213\"* work|strong=\"H4399\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* negligently|strong=\"H7423\"*;" + }, + { + "verseNum": 11, + "text": "“Moab|strong=\"H4124\"* has|strong=\"H4124\"* been|strong=\"H8252\"* at|strong=\"H5921\"* ease|strong=\"H7599\"* from|strong=\"H5921\"* his|strong=\"H5921\"* youth|strong=\"H5271\"*," + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H3651\"* behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H7971\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 13, + "text": "Moab|strong=\"H4124\"* will|strong=\"H3478\"* be|strong=\"H3478\"* ashamed of|strong=\"H1004\"* Chemosh|strong=\"H3645\"*," + }, + { + "verseNum": 14, + "text": "“How do you say, ‘We are|strong=\"H1368\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*," + }, + { + "verseNum": 15, + "text": "Moab|strong=\"H4124\"* is|strong=\"H3068\"* laid|strong=\"H5927\"* waste|strong=\"H7703\"*," + }, + { + "verseNum": 16, + "text": "“The|strong=\"H4116\"* calamity|strong=\"H7451\"* of|strong=\"H7451\"* Moab|strong=\"H4124\"* is|strong=\"H4124\"* near|strong=\"H7138\"* to|strong=\"H4116\"* come," + }, + { + "verseNum": 17, + "text": "All|strong=\"H3605\"* you|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H3045\"* around|strong=\"H5439\"* him|strong=\"H3605\"*, bemoan|strong=\"H5110\"* him|strong=\"H3605\"*;" + }, + { + "verseNum": 18, + "text": "“You|strong=\"H3588\"* daughter|strong=\"H1323\"* who|strong=\"H3427\"* dwells|strong=\"H3427\"* in|strong=\"H3427\"* Dibon|strong=\"H1769\"*," + }, + { + "verseNum": 19, + "text": "Inhabitant|strong=\"H3427\"* of|strong=\"H3427\"* Aroer|strong=\"H6177\"*, stand|strong=\"H5975\"* by|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* and|strong=\"H1870\"* watch|strong=\"H6822\"*." + }, + { + "verseNum": 20, + "text": "Moab|strong=\"H4124\"* is|strong=\"H4124\"* disappointed;" + }, + { + "verseNum": 21, + "text": "Judgment|strong=\"H4941\"* has|strong=\"H4941\"* come|strong=\"H4941\"* on|strong=\"H5921\"* the|strong=\"H5921\"* plain|strong=\"H4334\"* country—" + }, + { + "verseNum": 22, + "text": "on|strong=\"H5921\"* Dibon|strong=\"H1769\"*, on|strong=\"H5921\"* Nebo|strong=\"H5015\"*, on|strong=\"H5921\"* Beth Diblathaim," + }, + { + "verseNum": 23, + "text": "on|strong=\"H5921\"* Kiriathaim|strong=\"H7156\"*, on|strong=\"H5921\"* Beth Gamul, on|strong=\"H5921\"* Beth Meon," + }, + { + "verseNum": 24, + "text": "on|strong=\"H5921\"* Kerioth|strong=\"H7152\"*, on|strong=\"H5921\"* Bozrah|strong=\"H1224\"*," + }, + { + "verseNum": 25, + "text": "The|strong=\"H5002\"* horn|strong=\"H7161\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"* is|strong=\"H3068\"* cut|strong=\"H1438\"* off|strong=\"H1438\"*," + }, + { + "verseNum": 26, + "text": "“Make|strong=\"H1431\"* him|strong=\"H5921\"* drunk|strong=\"H7937\"*," + }, + { + "verseNum": 27, + "text": "For|strong=\"H3588\"* wasn’t Israel|strong=\"H3478\"* a|strong=\"H3068\"* derision|strong=\"H7814\"* to|strong=\"H3478\"* you|strong=\"H3588\"*?" + }, + { + "verseNum": 28, + "text": "You|strong=\"H5800\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Moab|strong=\"H4124\"*, leave|strong=\"H5800\"* the|strong=\"H5676\"* cities|strong=\"H5892\"*, and|strong=\"H5892\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5676\"* rock|strong=\"H5553\"*." + }, + { + "verseNum": 29, + "text": "“We|strong=\"H8085\"* have|strong=\"H1343\"* heard|strong=\"H8085\"* of|strong=\"H3820\"* the|strong=\"H8085\"* pride|strong=\"H1347\"* of|strong=\"H3820\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 30, + "text": "I|strong=\"H3651\"* know|strong=\"H3045\"* his|strong=\"H3068\"* wrath|strong=\"H5678\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3045\"* it|strong=\"H6213\"* is|strong=\"H3068\"* nothing|strong=\"H3808\"*;" + }, + { + "verseNum": 31, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* will|strong=\"H4124\"* wail|strong=\"H3213\"* for|strong=\"H5921\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 32, + "text": "With|strong=\"H5921\"* more|strong=\"H5704\"* than|strong=\"H5921\"* the|strong=\"H5921\"* weeping|strong=\"H1065\"* of|strong=\"H5921\"* Jazer|strong=\"H3270\"*" + }, + { + "verseNum": 33, + "text": "Gladness|strong=\"H8057\"* and|strong=\"H8057\"* joy|strong=\"H8057\"* is|strong=\"H4124\"* taken away|strong=\"H7673\"* from|strong=\"H7673\"* the|strong=\"H3808\"* fruitful|strong=\"H3759\"* field|strong=\"H3759\"*" + }, + { + "verseNum": 34, + "text": "From|strong=\"H5704\"* the|strong=\"H3588\"* cry|strong=\"H2201\"* of|strong=\"H6963\"* Heshbon|strong=\"H2809\"* even|strong=\"H1571\"* to|strong=\"H5704\"* Elealeh," + }, + { + "verseNum": 35, + "text": "Moreover I|strong=\"H3068\"* will|strong=\"H3068\"* cause to|strong=\"H3068\"* cease|strong=\"H7673\"* in|strong=\"H3068\"* Moab|strong=\"H4124\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 36, + "text": "Therefore|strong=\"H3651\"* my|strong=\"H5921\"* heart|strong=\"H3820\"* sounds for|strong=\"H5921\"* Moab|strong=\"H4124\"* like|strong=\"H3651\"* flutes|strong=\"H2485\"*," + }, + { + "verseNum": 37, + "text": "For|strong=\"H3588\"* every|strong=\"H3605\"* head|strong=\"H7218\"* is|strong=\"H3027\"* bald|strong=\"H7144\"*," + }, + { + "verseNum": 38, + "text": "On|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* housetops|strong=\"H1406\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"*," + }, + { + "verseNum": 39, + "text": "“How it|strong=\"H5439\"* is|strong=\"H3605\"* broken|strong=\"H2865\"* down|strong=\"H2865\"*!" + }, + { + "verseNum": 40, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2009\"*, he|strong=\"H3588\"* will|strong=\"H3068\"* fly|strong=\"H1675\"* as|strong=\"H3068\"* an|strong=\"H3588\"* eagle|strong=\"H5404\"*," + }, + { + "verseNum": 41, + "text": "Kerioth|strong=\"H7152\"* is|strong=\"H1931\"* taken|strong=\"H3920\"*," + }, + { + "verseNum": 42, + "text": "Moab|strong=\"H4124\"* will|strong=\"H3068\"* be|strong=\"H3068\"* destroyed|strong=\"H8045\"* from|strong=\"H5921\"* being|strong=\"H5971\"* a|strong=\"H3068\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 43, + "text": "Terror|strong=\"H6343\"*, the|strong=\"H5002\"* pit|strong=\"H6354\"*, and|strong=\"H3068\"* the|strong=\"H5002\"* snare|strong=\"H6341\"* are|strong=\"H3068\"* on|strong=\"H5921\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 44, + "text": "“He|strong=\"H3588\"* who|strong=\"H3068\"* flees from|strong=\"H4480\"* the|strong=\"H6440\"* terror|strong=\"H6343\"* will|strong=\"H3068\"* fall|strong=\"H5307\"* into|strong=\"H5927\"* the|strong=\"H6440\"* pit|strong=\"H6354\"*;" + }, + { + "verseNum": 45, + "text": "“Those|strong=\"H1121\"* who|strong=\"H1121\"* fled|strong=\"H5127\"* stand|strong=\"H5975\"* without|strong=\"H3588\"* strength|strong=\"H3581\"* under the|strong=\"H3588\"* shadow|strong=\"H6738\"* of|strong=\"H1121\"* Heshbon|strong=\"H2809\"*;" + }, + { + "verseNum": 46, + "text": "Woe to|strong=\"H1121\"* you|strong=\"H3588\"*, O|strong=\"H3068\"* Moab|strong=\"H4124\"*!" + }, + { + "verseNum": 47, + "text": "“Yet|strong=\"H5704\"* I|strong=\"H3117\"* will|strong=\"H3068\"* reverse|strong=\"H7725\"* the|strong=\"H5002\"* captivity|strong=\"H7622\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"* in|strong=\"H3068\"* the|strong=\"H5002\"* latter days|strong=\"H3117\"*,”" + } + ] + }, + { + "chapterNum": 49, + "verses": [ + { + "verseNum": 1, + "text": "Of|strong=\"H1121\"* the|strong=\"H3541\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*. Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 2, + "text": "Therefore|strong=\"H3651\"* behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H1961\"*,”" + }, + { + "verseNum": 3, + "text": "“Wail|strong=\"H3213\"*, Heshbon|strong=\"H2809\"*, for|strong=\"H3588\"* Ai|strong=\"H5857\"* is|strong=\"H4428\"* laid waste|strong=\"H7703\"*!" + }, + { + "verseNum": 4, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H4100\"* boast|strong=\"H1984\"* in|strong=\"H1323\"* the|strong=\"H1984\"* valleys|strong=\"H6010\"*," + }, + { + "verseNum": 5, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H6635\"* bring|strong=\"H5080\"* a|strong=\"H3068\"* terror|strong=\"H6343\"* on|strong=\"H5921\"* you|strong=\"H6440\"*,”" + }, + { + "verseNum": 6, + "text": "“But|strong=\"H3651\"* afterward I|strong=\"H3651\"* will|strong=\"H3068\"* reverse|strong=\"H7725\"* the|strong=\"H5002\"* captivity|strong=\"H7622\"* of|strong=\"H1121\"* the|strong=\"H5002\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*,”" + }, + { + "verseNum": 7, + "text": "Of|strong=\"H3068\"* Edom, Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 8, + "text": "Flee|strong=\"H5127\"*! Turn|strong=\"H6437\"* back|strong=\"H6437\"*!" + }, + { + "verseNum": 9, + "text": "If grape gatherers|strong=\"H1219\"* came|strong=\"H7843\"* to|strong=\"H3808\"* you|strong=\"H3808\"*," + }, + { + "verseNum": 10, + "text": "But|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3588\"* made|strong=\"H1540\"* Esau|strong=\"H6215\"* bare|strong=\"H2834\"*," + }, + { + "verseNum": 11, + "text": "Leave|strong=\"H5800\"* your|strong=\"H5921\"* fatherless|strong=\"H3490\"* children|strong=\"H3490\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2009\"*, they|strong=\"H3588\"* to|strong=\"H3068\"* whom|strong=\"H3588\"* it|strong=\"H1931\"* didn’t pertain to|strong=\"H3068\"* drink|strong=\"H8354\"* of|strong=\"H3068\"* the|strong=\"H3588\"* cup|strong=\"H3563\"* will|strong=\"H3068\"* certainly|strong=\"H3588\"* drink|strong=\"H8354\"*; and|strong=\"H3068\"* are|strong=\"H3068\"* you|strong=\"H3588\"* he|strong=\"H1931\"* who|strong=\"H1931\"* will|strong=\"H3068\"* altogether|strong=\"H5352\"* go|strong=\"H5352\"* unpunished|strong=\"H5352\"*? You|strong=\"H3588\"* won’t go|strong=\"H5352\"* unpunished|strong=\"H5352\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H3588\"* drink|strong=\"H8354\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* sworn|strong=\"H7650\"* by|strong=\"H7650\"* myself,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3588\"* Bozrah|strong=\"H1224\"* will|strong=\"H3068\"* become|strong=\"H1961\"* an|strong=\"H1961\"* astonishment|strong=\"H8047\"*, a|strong=\"H3068\"* reproach|strong=\"H2781\"*, a|strong=\"H3068\"* waste|strong=\"H2723\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* curse|strong=\"H7045\"*. All|strong=\"H3605\"* its|strong=\"H3605\"* cities|strong=\"H5892\"* will|strong=\"H3068\"* be|strong=\"H1961\"* perpetual|strong=\"H5769\"* wastes|strong=\"H2723\"*.”" + }, + { + "verseNum": 14, + "text": "I|strong=\"H5921\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* news|strong=\"H8052\"* from|strong=\"H5921\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 15, + "text": "“For|strong=\"H3588\"*, behold|strong=\"H2009\"*, I|strong=\"H3588\"* have|strong=\"H1471\"* made|strong=\"H5414\"* you|strong=\"H5414\"* small|strong=\"H6996\"* among the|strong=\"H3588\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 16, + "text": "As|strong=\"H3068\"* for|strong=\"H3588\"* your|strong=\"H3068\"* terror|strong=\"H8606\"*," + }, + { + "verseNum": 17, + "text": "“Edom will|strong=\"H1961\"* become|strong=\"H1961\"* an|strong=\"H1961\"* astonishment|strong=\"H8047\"*." + }, + { + "verseNum": 18, + "text": "As|strong=\"H3068\"* in|strong=\"H3427\"* the|strong=\"H3068\"* overthrow|strong=\"H4114\"* of|strong=\"H1121\"* Sodom|strong=\"H5467\"* and|strong=\"H1121\"* Gomorrah|strong=\"H6017\"* and|strong=\"H1121\"* its|strong=\"H3808\"* neighbor|strong=\"H7934\"* cities,” says Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 19, + "text": "“Behold|strong=\"H2009\"*, he|strong=\"H3588\"* will|strong=\"H4310\"* come|strong=\"H5927\"* up|strong=\"H5927\"* like|strong=\"H3644\"* a|strong=\"H3068\"* lion from|strong=\"H6440\"* the|strong=\"H6440\"* pride|strong=\"H1347\"* of|strong=\"H6440\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"* against|strong=\"H5921\"* the|strong=\"H6440\"* strong habitation|strong=\"H5116\"*;" + }, + { + "verseNum": 20, + "text": "Therefore|strong=\"H3651\"* hear|strong=\"H8085\"* the|strong=\"H5921\"* counsel|strong=\"H6098\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, that|strong=\"H8085\"* he|strong=\"H3651\"* has|strong=\"H3068\"* taken|strong=\"H3427\"* against|strong=\"H5921\"* Edom," + }, + { + "verseNum": 21, + "text": "The|strong=\"H8085\"* earth trembles at|strong=\"H5307\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* their|strong=\"H8085\"* fall|strong=\"H5307\"*;" + }, + { + "verseNum": 22, + "text": "Behold|strong=\"H2009\"*, he|strong=\"H1931\"* will|strong=\"H1961\"* come|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H3117\"* fly|strong=\"H1675\"* as|strong=\"H3117\"* the|strong=\"H5921\"* eagle|strong=\"H5404\"*," + }, + { + "verseNum": 23, + "text": "Of|strong=\"H3220\"* Damascus|strong=\"H1834\"*:" + }, + { + "verseNum": 24, + "text": "Damascus|strong=\"H1834\"* has|strong=\"H6869\"* grown feeble|strong=\"H7503\"*," + }, + { + "verseNum": 25, + "text": "How is|strong=\"H5892\"* the|strong=\"H5800\"* city|strong=\"H5892\"* of|strong=\"H5892\"* praise|strong=\"H8416\"* not|strong=\"H3808\"* forsaken|strong=\"H5800\"*," + }, + { + "verseNum": 26, + "text": "Therefore|strong=\"H3651\"* her|strong=\"H3605\"* young|strong=\"H3117\"* men|strong=\"H3605\"* will|strong=\"H3068\"* fall|strong=\"H5307\"* in|strong=\"H3068\"* her|strong=\"H3605\"* streets|strong=\"H7339\"*," + }, + { + "verseNum": 27, + "text": "“I will|strong=\"H2346\"* kindle|strong=\"H3341\"* a|strong=\"H3068\"* fire|strong=\"H3341\"* in|strong=\"H2346\"* the|strong=\"H3341\"* wall|strong=\"H2346\"* of|strong=\"H2346\"* Damascus|strong=\"H1834\"*," + }, + { + "verseNum": 28, + "text": "Of|strong=\"H1121\"* Kedar|strong=\"H6938\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5221\"* kingdoms|strong=\"H4467\"* of|strong=\"H1121\"* Hazor|strong=\"H2674\"*, which|strong=\"H3068\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon struck|strong=\"H5221\"*, Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 29, + "text": "They|strong=\"H1992\"* will|strong=\"H6629\"* take|strong=\"H3947\"* their|strong=\"H3605\"* tents and|strong=\"H6629\"* their|strong=\"H3605\"* flocks|strong=\"H6629\"*." + }, + { + "verseNum": 30, + "text": "Flee|strong=\"H5127\"*!" + }, + { + "verseNum": 31, + "text": "Arise|strong=\"H6965\"*! Go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* that|strong=\"H3068\"* is|strong=\"H3068\"* at|strong=\"H3427\"* ease|strong=\"H7961\"*," + }, + { + "verseNum": 32, + "text": "Their|strong=\"H3605\"* camels|strong=\"H1581\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* booty|strong=\"H7998\"*," + }, + { + "verseNum": 33, + "text": "Hazor|strong=\"H2674\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* dwelling|strong=\"H3427\"* place|strong=\"H1961\"* of|strong=\"H1121\"* jackals|strong=\"H8577\"*," + }, + { + "verseNum": 34, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* that|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* concerning|strong=\"H1697\"* Elam|strong=\"H5867\"*, in|strong=\"H3068\"* the|strong=\"H3068\"* beginning|strong=\"H7225\"* of|strong=\"H4428\"* the|strong=\"H3068\"* reign|strong=\"H4438\"* of|strong=\"H4428\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 35, + "text": "“Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 36, + "text": "I|strong=\"H3808\"* will|strong=\"H1961\"* bring|strong=\"H5080\"* on|strong=\"H1961\"* Elam|strong=\"H5867\"* the|strong=\"H3605\"* four winds|strong=\"H7307\"* from|strong=\"H1471\"* the|strong=\"H3605\"* four quarters|strong=\"H7098\"* of|strong=\"H7307\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*," + }, + { + "verseNum": 37, + "text": "I|strong=\"H5704\"* will|strong=\"H3068\"* cause Elam|strong=\"H5867\"* to|strong=\"H5704\"* be|strong=\"H3068\"* dismayed|strong=\"H2865\"* before|strong=\"H6440\"* their|strong=\"H3068\"* enemies," + }, + { + "verseNum": 38, + "text": "I|strong=\"H7760\"* will|strong=\"H3068\"* set|strong=\"H7760\"* my|strong=\"H3068\"* throne|strong=\"H3678\"* in|strong=\"H3068\"* Elam|strong=\"H5867\"*," + }, + { + "verseNum": 39, + "text": "‘But|strong=\"H1961\"* it|strong=\"H7725\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* in|strong=\"H3068\"* the|strong=\"H5002\"* latter days|strong=\"H3117\"*" + } + ] + }, + { + "chapterNum": 50, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* word|strong=\"H1697\"* that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* concerning|strong=\"H1697\"* Babylon, concerning|strong=\"H1697\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* the|strong=\"H3068\"* Chaldeans|strong=\"H3778\"*, by|strong=\"H3027\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"*." + }, + { + "verseNum": 2, + "text": "“Declare|strong=\"H5046\"* among the|strong=\"H8085\"* nations|strong=\"H1471\"* and|strong=\"H8085\"* publish|strong=\"H8085\"*," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* comes|strong=\"H1961\"* up|strong=\"H5927\"* out|strong=\"H5921\"* of|strong=\"H3427\"* the|strong=\"H5921\"* north|strong=\"H6828\"* against|strong=\"H5921\"* her|strong=\"H5921\"*," + }, + { + "verseNum": 4, + "text": "“In|strong=\"H1980\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, and|strong=\"H1121\"* in|strong=\"H1980\"* that|strong=\"H3117\"* time|strong=\"H6256\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 5, + "text": "They|strong=\"H3068\"* will|strong=\"H3068\"* inquire|strong=\"H7592\"* concerning|strong=\"H3068\"* Zion|strong=\"H6726\"* with|strong=\"H3068\"* their|strong=\"H3068\"* faces|strong=\"H6440\"* turned|strong=\"H3068\"* toward|strong=\"H1870\"* it|strong=\"H6440\"*," + }, + { + "verseNum": 6, + "text": "My|strong=\"H1961\"* people|strong=\"H5971\"* have|strong=\"H1961\"* been|strong=\"H1961\"* lost sheep|strong=\"H6629\"*." + }, + { + "verseNum": 7, + "text": "All|strong=\"H3605\"* who|strong=\"H3605\"* found|strong=\"H4672\"* them|strong=\"H4672\"* have|strong=\"H3068\"* devoured them|strong=\"H4672\"*." + }, + { + "verseNum": 8, + "text": "“Flee|strong=\"H5110\"* out|strong=\"H3318\"* of|strong=\"H6440\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H6440\"* Babylon!" + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, I|strong=\"H3588\"* will|strong=\"H1471\"* stir|strong=\"H5782\"* up|strong=\"H5927\"*" + }, + { + "verseNum": 10, + "text": "Chaldea|strong=\"H3778\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* prey|strong=\"H7998\"*." + }, + { + "verseNum": 11, + "text": "“Because|strong=\"H3588\"* you|strong=\"H3588\"* are glad|strong=\"H8055\"*," + }, + { + "verseNum": 12, + "text": "your|strong=\"H2009\"* mother will|strong=\"H1471\"* be|strong=\"H1471\"* utterly|strong=\"H3966\"* disappointed." + }, + { + "verseNum": 13, + "text": "Because|strong=\"H5921\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s wrath|strong=\"H7110\"* she|strong=\"H5921\"* won’t be|strong=\"H1961\"* inhabited|strong=\"H3427\"*," + }, + { + "verseNum": 14, + "text": "Set|strong=\"H6186\"* yourselves|strong=\"H3605\"* in|strong=\"H5921\"* array|strong=\"H6186\"* against|strong=\"H5921\"* Babylon all|strong=\"H3605\"* around|strong=\"H5439\"*," + }, + { + "verseNum": 15, + "text": "Shout|strong=\"H7321\"* against|strong=\"H5921\"* her|strong=\"H5414\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 16, + "text": "Cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H6440\"* sower|strong=\"H2232\"* from|strong=\"H6440\"* Babylon," + }, + { + "verseNum": 17, + "text": "“Israel|strong=\"H3478\"* is|strong=\"H2088\"* a|strong=\"H3068\"* hunted|strong=\"H5080\"* sheep|strong=\"H7716\"*." + }, + { + "verseNum": 18, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*:" + }, + { + "verseNum": 19, + "text": "I|strong=\"H5315\"* will|strong=\"H3478\"* bring|strong=\"H7725\"* Israel|strong=\"H3478\"* again|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* pasture|strong=\"H7462\"*," + }, + { + "verseNum": 20, + "text": "In|strong=\"H3478\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, and|strong=\"H3063\"* in|strong=\"H3478\"* that|strong=\"H3588\"* time|strong=\"H6256\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 21, + "text": "“Go|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Merathaim|strong=\"H4850\"*," + }, + { + "verseNum": 22, + "text": "A|strong=\"H3068\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* battle|strong=\"H4421\"* is|strong=\"H6963\"* in|strong=\"H4421\"* the|strong=\"H6963\"* land," + }, + { + "verseNum": 23, + "text": "How the|strong=\"H3605\"* hammer|strong=\"H6360\"* of|strong=\"H3605\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth is|strong=\"H3605\"* cut|strong=\"H1438\"* apart and|strong=\"H1471\"* broken|strong=\"H7665\"*!" + }, + { + "verseNum": 24, + "text": "I|strong=\"H3588\"* have|strong=\"H3068\"* laid|strong=\"H3369\"* a|strong=\"H3068\"* snare|strong=\"H3369\"* for|strong=\"H3588\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* opened|strong=\"H6605\"* his|strong=\"H3068\"* armory|strong=\"H3627\"*," + }, + { + "verseNum": 26, + "text": "Come|strong=\"H1961\"* against her|strong=\"H6605\"* from|strong=\"H1961\"* the|strong=\"H1961\"* farthest|strong=\"H7093\"* border|strong=\"H7093\"*." + }, + { + "verseNum": 27, + "text": "Kill|strong=\"H2717\"* all|strong=\"H3605\"* her|strong=\"H3605\"* bulls|strong=\"H6499\"*." + }, + { + "verseNum": 28, + "text": "Listen|strong=\"H6963\"* to|strong=\"H3068\"* those who|strong=\"H3068\"* flee|strong=\"H5127\"* and|strong=\"H3068\"* escape|strong=\"H6412\"* out|strong=\"H5127\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Babylon," + }, + { + "verseNum": 29, + "text": "“Call|strong=\"H8085\"* together|strong=\"H8085\"* the|strong=\"H3605\"* archers|strong=\"H7198\"* against|strong=\"H5921\"* Babylon," + }, + { + "verseNum": 30, + "text": "Therefore|strong=\"H3651\"* her|strong=\"H3605\"* young|strong=\"H3117\"* men|strong=\"H3605\"* will|strong=\"H3068\"* fall|strong=\"H5307\"* in|strong=\"H3068\"* her|strong=\"H3605\"* streets|strong=\"H7339\"*." + }, + { + "verseNum": 31, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H3588\"* am|strong=\"H2005\"* against|strong=\"H2005\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* proud|strong=\"H2087\"* one|strong=\"H3588\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3117\"* Armies|strong=\"H6635\"*;" + }, + { + "verseNum": 32, + "text": "The|strong=\"H3605\"* proud|strong=\"H2087\"* one|strong=\"H3605\"* will|strong=\"H5892\"* stumble|strong=\"H3782\"* and|strong=\"H6965\"* fall|strong=\"H5307\"*," + }, + { + "verseNum": 33, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* are|strong=\"H1121\"* oppressed|strong=\"H6231\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 34, + "text": "Their|strong=\"H3068\"* Redeemer|strong=\"H1350\"* is|strong=\"H3068\"* strong|strong=\"H2389\"*." + }, + { + "verseNum": 35, + "text": "“A|strong=\"H3068\"* sword|strong=\"H2719\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H5002\"* Chaldeans|strong=\"H3778\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 36, + "text": "A|strong=\"H3068\"* sword|strong=\"H2719\"* is|strong=\"H2719\"* on|strong=\"H2719\"* the|strong=\"H2865\"* boasters," + }, + { + "verseNum": 37, + "text": "A|strong=\"H3068\"* sword|strong=\"H2719\"* is|strong=\"H3605\"* on|strong=\"H1961\"* their|strong=\"H3605\"* horses|strong=\"H5483\"*," + }, + { + "verseNum": 38, + "text": "A|strong=\"H3068\"* drought|strong=\"H2721\"* is|strong=\"H1931\"* on|strong=\"H2721\"* her|strong=\"H3001\"* waters|strong=\"H4325\"*," + }, + { + "verseNum": 39, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5704\"* wild animals of|strong=\"H1323\"* the|strong=\"H5704\"* desert|strong=\"H6728\"*" + }, + { + "verseNum": 40, + "text": "As|strong=\"H3068\"* when|strong=\"H3068\"* God|strong=\"H3068\"* overthrew|strong=\"H4114\"* Sodom|strong=\"H5467\"* and|strong=\"H1121\"* Gomorrah|strong=\"H6017\"* and|strong=\"H1121\"* its|strong=\"H3808\"* neighbor|strong=\"H7934\"* cities,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 41, + "text": "“Behold|strong=\"H2009\"*, a|strong=\"H3068\"* people|strong=\"H5971\"* comes|strong=\"H7227\"* from|strong=\"H1471\"* the|strong=\"H2009\"* north|strong=\"H6828\"*." + }, + { + "verseNum": 42, + "text": "They|strong=\"H1992\"* take|strong=\"H2388\"* up|strong=\"H5921\"* bow|strong=\"H7198\"* and|strong=\"H6963\"* spear|strong=\"H3591\"*." + }, + { + "verseNum": 43, + "text": "The|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon has|strong=\"H4428\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* news|strong=\"H8088\"* of|strong=\"H4428\"* them|strong=\"H3027\"*," + }, + { + "verseNum": 44, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H6440\"* enemy will|strong=\"H4310\"* come|strong=\"H5927\"* up|strong=\"H5927\"* like|strong=\"H3644\"* a|strong=\"H3068\"* lion" + }, + { + "verseNum": 45, + "text": "Therefore|strong=\"H3651\"* hear|strong=\"H8085\"* the|strong=\"H5921\"* counsel|strong=\"H6098\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*" + }, + { + "verseNum": 46, + "text": "The|strong=\"H8085\"* earth trembles at|strong=\"H7493\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* taking|strong=\"H8610\"* of|strong=\"H6963\"* Babylon." + } + ] + }, + { + "chapterNum": 51, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 2, + "text": "I|strong=\"H3588\"* will|strong=\"H1961\"* send|strong=\"H7971\"* to|strong=\"H7971\"* Babylon strangers|strong=\"H2114\"*, who|strong=\"H2114\"* will|strong=\"H1961\"* winnow|strong=\"H2219\"* her|strong=\"H7971\"*." + }, + { + "verseNum": 3, + "text": "Against|strong=\"H5927\"* him|strong=\"H3605\"* who|strong=\"H3605\"* bends|strong=\"H1869\"*, let the|strong=\"H3605\"* archer|strong=\"H1869\"* bend|strong=\"H1869\"* his|strong=\"H3605\"* bow|strong=\"H7198\"*," + }, + { + "verseNum": 4, + "text": "They|strong=\"H2351\"* will|strong=\"H2491\"* fall|strong=\"H5307\"* down|strong=\"H5307\"* slain|strong=\"H2491\"* in|strong=\"H5307\"* the|strong=\"H2351\"* land of|strong=\"H2351\"* the|strong=\"H2351\"* Chaldeans|strong=\"H3778\"*," + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* Israel|strong=\"H3478\"* is|strong=\"H3068\"* not|strong=\"H3808\"* forsaken, nor|strong=\"H3808\"* Judah|strong=\"H3063\"*, by|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "“Flee|strong=\"H5127\"* out|strong=\"H4422\"* of|strong=\"H3068\"* the|strong=\"H3588\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* Babylon!" + }, + { + "verseNum": 7, + "text": "Babylon has|strong=\"H3068\"* been|strong=\"H3605\"* a|strong=\"H3068\"* golden|strong=\"H2091\"* cup|strong=\"H3563\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"*," + }, + { + "verseNum": 8, + "text": "Babylon has|strong=\"H3947\"* suddenly|strong=\"H6597\"* fallen|strong=\"H5307\"* and|strong=\"H3947\"* been destroyed|strong=\"H7665\"*!" + }, + { + "verseNum": 9, + "text": "“We|strong=\"H3588\"* would have|strong=\"H3588\"* healed|strong=\"H7495\"* Babylon," + }, + { + "verseNum": 10, + "text": "‘Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* produced|strong=\"H3318\"* our|strong=\"H3068\"* righteousness|strong=\"H6666\"*." + }, + { + "verseNum": 11, + "text": "“Make|strong=\"H3588\"* the|strong=\"H5921\"* arrows|strong=\"H2671\"* sharp!" + }, + { + "verseNum": 12, + "text": "Set|strong=\"H6965\"* up|strong=\"H6965\"* a|strong=\"H3068\"* standard|strong=\"H5251\"* against|strong=\"H1696\"* the|strong=\"H3588\"* walls|strong=\"H2346\"* of|strong=\"H3068\"* Babylon!" + }, + { + "verseNum": 13, + "text": "You|strong=\"H5921\"* who|strong=\"H7227\"* dwell|strong=\"H7931\"* on|strong=\"H5921\"* many|strong=\"H7227\"* waters|strong=\"H4325\"*, abundant|strong=\"H7227\"* in|strong=\"H5921\"* treasures," + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"* by|strong=\"H5921\"* himself|strong=\"H5315\"*, saying," + }, + { + "verseNum": 15, + "text": "“He|strong=\"H6213\"* has|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* earth|strong=\"H8064\"* by|strong=\"H3559\"* his|strong=\"H5186\"* power|strong=\"H3581\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H3318\"* he|strong=\"H6213\"* utters|strong=\"H5414\"* his|strong=\"H5414\"* voice|strong=\"H6963\"*," + }, + { + "verseNum": 17, + "text": "“Every|strong=\"H3605\"* man|strong=\"H3605\"* has|strong=\"H3588\"* become|strong=\"H1197\"* stupid|strong=\"H1197\"* and|strong=\"H7307\"* without|strong=\"H3808\"* knowledge|strong=\"H1847\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"H1992\"* are|strong=\"H1992\"* vanity|strong=\"H1892\"*," + }, + { + "verseNum": 19, + "text": "The|strong=\"H3605\"* portion|strong=\"H2506\"* of|strong=\"H3068\"* Jacob|strong=\"H3290\"* is|strong=\"H3068\"* not|strong=\"H3808\"* like|strong=\"H3808\"* these|strong=\"H1931\"*," + }, + { + "verseNum": 20, + "text": "“You|strong=\"H7843\"* are|strong=\"H1471\"* my|strong=\"H7843\"* battle|strong=\"H4421\"* ax and|strong=\"H1471\"* weapons|strong=\"H3627\"* of|strong=\"H3627\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 21, + "text": "With|strong=\"H5483\"* you I|strong=\"H5310\"* will|strong=\"H7392\"* break|strong=\"H5310\"* in|strong=\"H7392\"* pieces|strong=\"H5310\"*" + }, + { + "verseNum": 22, + "text": "With|strong=\"H2205\"* you|strong=\"H2205\"* I|strong=\"H5288\"* will|strong=\"H5288\"* break|strong=\"H5310\"* in pieces|strong=\"H5310\"*" + }, + { + "verseNum": 23, + "text": "With|strong=\"H7462\"* you I|strong=\"H5310\"* will|strong=\"H5739\"* break|strong=\"H5310\"* in|strong=\"H7462\"* pieces|strong=\"H5310\"*" + }, + { + "verseNum": 24, + "text": "“I|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H6213\"* to|strong=\"H3068\"* Babylon and|strong=\"H3068\"* to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Chaldea|strong=\"H3778\"* all|strong=\"H3605\"* their|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H3605\"* they|strong=\"H3068\"* have|strong=\"H3068\"* done|strong=\"H6213\"* in|strong=\"H3427\"* Zion|strong=\"H6726\"* in|strong=\"H3427\"* your|strong=\"H3068\"* sight|strong=\"H5869\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 25, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H3068\"* against|strong=\"H5921\"* you|strong=\"H5414\"*, destroying|strong=\"H7843\"* mountain|strong=\"H2022\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 26, + "text": "They|strong=\"H3588\"* won’t take|strong=\"H3947\"* a|strong=\"H3068\"* cornerstone|strong=\"H6438\"* from|strong=\"H4480\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 27, + "text": "“Set|strong=\"H6485\"* up|strong=\"H5927\"* a|strong=\"H3068\"* standard|strong=\"H5251\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land!" + }, + { + "verseNum": 28, + "text": "Prepare|strong=\"H6942\"* against|strong=\"H5921\"* her|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 29, + "text": "The|strong=\"H5921\"* land trembles and|strong=\"H6965\"* is|strong=\"H3068\"* in|strong=\"H3427\"* pain|strong=\"H2342\"*;" + }, + { + "verseNum": 30, + "text": "The|strong=\"H7665\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H3427\"* Babylon have|strong=\"H1961\"* stopped|strong=\"H2308\"* fighting|strong=\"H3898\"*," + }, + { + "verseNum": 31, + "text": "One|strong=\"H3588\"* runner|strong=\"H7323\"* will|strong=\"H4428\"* run|strong=\"H7323\"* to|strong=\"H4428\"* meet|strong=\"H7125\"* another|strong=\"H5046\"*," + }, + { + "verseNum": 32, + "text": "So the|strong=\"H8313\"* passages|strong=\"H4569\"* are|strong=\"H4421\"* seized|strong=\"H8610\"*." + }, + { + "verseNum": 33, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 34, + "text": "“Nebuchadnezzar|strong=\"H5019\"* the|strong=\"H4390\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon has|strong=\"H4428\"* devoured|strong=\"H1104\"* me|strong=\"H1740\"*." + }, + { + "verseNum": 35, + "text": "May the|strong=\"H5921\"* violence|strong=\"H2555\"* done to|strong=\"H5921\"* me|strong=\"H5921\"* and|strong=\"H3389\"* to|strong=\"H5921\"* my|strong=\"H5921\"* flesh|strong=\"H7607\"* be|strong=\"H3389\"* on|strong=\"H5921\"* Babylon!”" + }, + { + "verseNum": 36, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 37, + "text": "Babylon will|strong=\"H1961\"* become|strong=\"H1961\"* heaps|strong=\"H1530\"*," + }, + { + "verseNum": 38, + "text": "They|strong=\"H3162\"* will|strong=\"H3162\"* roar|strong=\"H7580\"* together|strong=\"H3162\"* like|strong=\"H3162\"* young|strong=\"H3715\"* lions|strong=\"H3715\"*." + }, + { + "verseNum": 39, + "text": "When|strong=\"H3068\"* they|strong=\"H3068\"* are|strong=\"H3068\"* inflamed, I|strong=\"H3808\"* will|strong=\"H3068\"* make|strong=\"H7896\"* their|strong=\"H3068\"* feast|strong=\"H4960\"*," + }, + { + "verseNum": 40, + "text": "“I will|strong=\"H3381\"* bring|strong=\"H3381\"* them|strong=\"H3381\"* down|strong=\"H3381\"* like|strong=\"H3381\"* lambs|strong=\"H3733\"* to|strong=\"H3381\"* the|strong=\"H5973\"* slaughter|strong=\"H2873\"*," + }, + { + "verseNum": 41, + "text": "“How Sheshach|strong=\"H8347\"* is|strong=\"H3605\"* taken|strong=\"H3920\"*!" + }, + { + "verseNum": 42, + "text": "The|strong=\"H5921\"* sea|strong=\"H3220\"* has|strong=\"H3220\"* come|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H5921\"* Babylon." + }, + { + "verseNum": 43, + "text": "Her|strong=\"H3605\"* cities|strong=\"H5892\"* have|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8047\"*," + }, + { + "verseNum": 44, + "text": "I|strong=\"H5921\"* will|strong=\"H1471\"* execute judgment|strong=\"H6485\"* on|strong=\"H5921\"* Bel|strong=\"H1078\"* in|strong=\"H5921\"* Babylon," + }, + { + "verseNum": 45, + "text": "“My|strong=\"H3068\"* people|strong=\"H5971\"*, go|strong=\"H3318\"* away|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* her|strong=\"H3318\"*," + }, + { + "verseNum": 46, + "text": "Don’t let your|strong=\"H5921\"* heart|strong=\"H3824\"* faint|strong=\"H7401\"*." + }, + { + "verseNum": 47, + "text": "Therefore|strong=\"H3651\"* behold|strong=\"H2009\"*, the|strong=\"H3605\"* days|strong=\"H3117\"* come|strong=\"H5307\"* that|strong=\"H3605\"* I|strong=\"H3117\"* will|strong=\"H3117\"* execute judgment|strong=\"H6485\"* on|strong=\"H5921\"* the|strong=\"H3605\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"* of|strong=\"H3117\"* Babylon;" + }, + { + "verseNum": 48, + "text": "Then|strong=\"H3588\"* the|strong=\"H3605\"* heavens|strong=\"H8064\"* and|strong=\"H3068\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 49, + "text": "“As|strong=\"H1571\"* Babylon has|strong=\"H3478\"* caused|strong=\"H5307\"* the|strong=\"H3605\"* slain|strong=\"H2491\"* of|strong=\"H3605\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* fall|strong=\"H5307\"*," + }, + { + "verseNum": 50, + "text": "You|strong=\"H5921\"* who|strong=\"H3068\"* have|strong=\"H3068\"* escaped|strong=\"H6412\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*, go|strong=\"H1980\"*!" + }, + { + "verseNum": 51, + "text": "“We|strong=\"H3588\"* are|strong=\"H3068\"* confounded" + }, + { + "verseNum": 52, + "text": "“Therefore|strong=\"H3651\"* behold|strong=\"H2009\"*, the|strong=\"H3605\"* days|strong=\"H3117\"* come,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 53, + "text": "Though|strong=\"H3588\"* Babylon should|strong=\"H3068\"* mount|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* the|strong=\"H5002\"* sky|strong=\"H8064\"*," + }, + { + "verseNum": 54, + "text": "“The|strong=\"H6963\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* a|strong=\"H3068\"* cry|strong=\"H2201\"* comes from|strong=\"H6963\"* Babylon," + }, + { + "verseNum": 55, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* lays|strong=\"H5414\"* Babylon waste|strong=\"H7703\"*," + }, + { + "verseNum": 56, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* destroyer|strong=\"H7703\"* has|strong=\"H3068\"* come|strong=\"H1368\"* on|strong=\"H5921\"* her|strong=\"H5921\"*," + }, + { + "verseNum": 57, + "text": "I|strong=\"H3808\"* will|strong=\"H3068\"* make|strong=\"H7937\"* her|strong=\"H7937\"* princes|strong=\"H8269\"*, her|strong=\"H7937\"* wise|strong=\"H2450\"* men|strong=\"H1368\"*," + }, + { + "verseNum": 58, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 59, + "text": "The|strong=\"H6680\"* word|strong=\"H1697\"* which|strong=\"H1697\"* Jeremiah|strong=\"H3414\"* the|strong=\"H6680\"* prophet|strong=\"H5030\"* commanded|strong=\"H6680\"* Seraiah|strong=\"H8304\"* the|strong=\"H6680\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Neriah|strong=\"H5374\"*, the|strong=\"H6680\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mahseiah|strong=\"H4271\"*, when|strong=\"H1121\"* he|strong=\"H8141\"* went|strong=\"H3212\"* with|strong=\"H1697\"* Zedekiah|strong=\"H6667\"* the|strong=\"H6680\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* to|strong=\"H3212\"* Babylon in|strong=\"H8141\"* the|strong=\"H6680\"* fourth|strong=\"H7243\"* year|strong=\"H8141\"* of|strong=\"H1121\"* his|strong=\"H6680\"* reign|strong=\"H4427\"*. Now|strong=\"H3212\"* Seraiah|strong=\"H8304\"* was|strong=\"H1697\"* chief|strong=\"H8269\"* quartermaster|strong=\"H8269\"*." + }, + { + "verseNum": 60, + "text": "Jeremiah|strong=\"H3414\"* wrote|strong=\"H3789\"* in|strong=\"H3789\"* a|strong=\"H3068\"* book|strong=\"H5612\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H3605\"* should come on|strong=\"H7451\"* Babylon, even all|strong=\"H3605\"* these|strong=\"H3789\"* words|strong=\"H1697\"* that|strong=\"H3605\"* are|strong=\"H1697\"* written|strong=\"H3789\"* concerning|strong=\"H1697\"* Babylon." + }, + { + "verseNum": 61, + "text": "Jeremiah|strong=\"H3414\"* said|strong=\"H1697\"* to|strong=\"H1697\"* Seraiah|strong=\"H8304\"*, “When|strong=\"H7200\"* you|strong=\"H3605\"* come to|strong=\"H1697\"* Babylon, then|strong=\"H7200\"* see|strong=\"H7200\"* that|strong=\"H7200\"* you|strong=\"H3605\"* read|strong=\"H7121\"* all|strong=\"H3605\"* these|strong=\"H7121\"* words|strong=\"H1697\"*," + }, + { + "verseNum": 62, + "text": "and|strong=\"H3068\"* say|strong=\"H1696\"*, ‘Yahweh|strong=\"H3068\"*, you|strong=\"H3588\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"* concerning|strong=\"H3068\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, to|strong=\"H1696\"* cut|strong=\"H3772\"* it|strong=\"H3588\"* off|strong=\"H3772\"*, that|strong=\"H3588\"* no|strong=\"H1115\"* one|strong=\"H2088\"* will|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H3588\"*, neither|strong=\"H1115\"* man|strong=\"H2088\"* nor|strong=\"H1115\"* animal|strong=\"H1961\"*, but|strong=\"H3588\"* that|strong=\"H3588\"* it|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* desolate|strong=\"H8077\"* forever|strong=\"H5769\"*.’" + }, + { + "verseNum": 63, + "text": "It|strong=\"H7121\"* will|strong=\"H1961\"* be|strong=\"H1961\"*, when|strong=\"H1961\"* you|strong=\"H5921\"* have|strong=\"H1961\"* finished|strong=\"H3615\"* reading|strong=\"H7121\"* this|strong=\"H2088\"* book|strong=\"H5612\"*, that|strong=\"H7121\"* you|strong=\"H5921\"* shall|strong=\"H2088\"* bind|strong=\"H7194\"* a|strong=\"H3068\"* stone to|strong=\"H1961\"* it|strong=\"H7121\"*, and|strong=\"H2088\"* cast|strong=\"H7993\"* it|strong=\"H7121\"* into|strong=\"H8432\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H5921\"* Euphrates|strong=\"H6578\"*." + }, + { + "verseNum": 64, + "text": "Then|strong=\"H6965\"* you|strong=\"H6440\"* shall|strong=\"H3808\"* say|strong=\"H1697\"*, ‘Thus|strong=\"H3602\"* will|strong=\"H1697\"* Babylon sink|strong=\"H8257\"*, and|strong=\"H6965\"* will|strong=\"H1697\"* not|strong=\"H3808\"* rise|strong=\"H6965\"* again|strong=\"H6965\"* because|strong=\"H5921\"* of|strong=\"H1697\"* the|strong=\"H6440\"* evil|strong=\"H7451\"* that|strong=\"H1697\"* I|strong=\"H5704\"* will|strong=\"H1697\"* bring|strong=\"H7451\"* on|strong=\"H5921\"* her|strong=\"H5921\"*; and|strong=\"H6965\"* they|strong=\"H3808\"* will|strong=\"H1697\"* be|strong=\"H3808\"* weary|strong=\"H3286\"*.’”" + } + ] + }, + { + "chapterNum": 52, + "verses": [ + { + "verseNum": 1, + "text": "Zedekiah|strong=\"H6667\"* was|strong=\"H8034\"* twenty-one|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H3389\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*. He|strong=\"H3389\"* reigned|strong=\"H4427\"* eleven|strong=\"H6240\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H6667\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Hamutal|strong=\"H2537\"* the|strong=\"H3414\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* of|strong=\"H1121\"* Libnah|strong=\"H3841\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Jehoiakim|strong=\"H3079\"* had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* through|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s anger|strong=\"H6440\"* this|strong=\"H3588\"* happened|strong=\"H1961\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"*, until|strong=\"H5704\"* he|strong=\"H3588\"* had|strong=\"H3068\"* cast|strong=\"H7993\"* them|strong=\"H5921\"* out|strong=\"H7993\"* from|strong=\"H6440\"* his|strong=\"H3068\"* presence|strong=\"H6440\"*." + }, + { + "verseNum": 4, + "text": "In|strong=\"H8141\"* the|strong=\"H3605\"* ninth|strong=\"H8671\"* year|strong=\"H8141\"* of|strong=\"H4428\"* his|strong=\"H3605\"* reign|strong=\"H4427\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* tenth|strong=\"H6224\"* day|strong=\"H2320\"* of|strong=\"H4428\"* the|strong=\"H3605\"* month|strong=\"H2320\"*, Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon came|strong=\"H1961\"*, he|strong=\"H1931\"* and|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* army|strong=\"H2428\"*, against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H4428\"* encamped|strong=\"H2583\"* against|strong=\"H5921\"* it|strong=\"H1931\"*; and|strong=\"H4428\"* they|strong=\"H5921\"* built|strong=\"H1129\"* forts|strong=\"H1785\"* against|strong=\"H5921\"* it|strong=\"H1931\"* round|strong=\"H5439\"* about|strong=\"H5439\"*." + }, + { + "verseNum": 5, + "text": "So|strong=\"H5704\"* the|strong=\"H5704\"* city|strong=\"H5892\"* was|strong=\"H5892\"* besieged|strong=\"H4692\"* to|strong=\"H5704\"* the|strong=\"H5704\"* eleventh|strong=\"H6249\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Zedekiah|strong=\"H6667\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"H5892\"* the|strong=\"H2388\"* fourth|strong=\"H7243\"* month|strong=\"H2320\"*, in|strong=\"H5892\"* the|strong=\"H2388\"* ninth|strong=\"H8672\"* day|strong=\"H2320\"* of|strong=\"H5892\"* the|strong=\"H2388\"* month|strong=\"H2320\"*, the|strong=\"H2388\"* famine|strong=\"H7458\"* was|strong=\"H1961\"* severe|strong=\"H2388\"* in|strong=\"H5892\"* the|strong=\"H2388\"* city|strong=\"H5892\"*, so|strong=\"H1961\"* that|strong=\"H5971\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* bread|strong=\"H3899\"* for|strong=\"H5892\"* the|strong=\"H2388\"* people|strong=\"H5971\"* of|strong=\"H5892\"* the|strong=\"H2388\"* land." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H3318\"* a|strong=\"H3068\"* breach|strong=\"H1234\"* was|strong=\"H5892\"* made|strong=\"H3605\"* in|strong=\"H5921\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* war|strong=\"H4421\"* fled|strong=\"H1272\"*, and|strong=\"H4428\"* went|strong=\"H3212\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H3605\"* city|strong=\"H5892\"* by|strong=\"H5921\"* night|strong=\"H3915\"* by|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* between|strong=\"H4421\"* the|strong=\"H3605\"* two|strong=\"H2346\"* walls|strong=\"H2346\"*, which|strong=\"H5892\"* was|strong=\"H5892\"* by|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s garden|strong=\"H1588\"*. Now|strong=\"H3212\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"* were|strong=\"H4428\"* against|strong=\"H5921\"* the|strong=\"H3605\"* city|strong=\"H5892\"* all|strong=\"H3605\"* around|strong=\"H5439\"*. The|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* war|strong=\"H4421\"* went|strong=\"H3212\"* toward|strong=\"H1870\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"*," + }, + { + "verseNum": 8, + "text": "but|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H2428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"* pursued|strong=\"H7291\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* overtook|strong=\"H5381\"* Zedekiah|strong=\"H6667\"* in|strong=\"H5921\"* the|strong=\"H3605\"* plains|strong=\"H6160\"* of|strong=\"H4428\"* Jericho|strong=\"H3405\"*; and|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* army|strong=\"H2428\"* was|strong=\"H4428\"* scattered|strong=\"H6327\"* from|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H1696\"* they|strong=\"H4428\"* took|strong=\"H8610\"* the|strong=\"H5927\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* carried|strong=\"H5927\"* him|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H1696\"* the|strong=\"H5927\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon to|strong=\"H1696\"* Riblah|strong=\"H7247\"* in|strong=\"H4428\"* the|strong=\"H5927\"* land of|strong=\"H4428\"* Hamath|strong=\"H2574\"*; and|strong=\"H4428\"* he|strong=\"H1696\"* pronounced|strong=\"H1696\"* judgment|strong=\"H4941\"* on|strong=\"H5927\"* him|strong=\"H5927\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon killed|strong=\"H7819\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zedekiah|strong=\"H6667\"* before|strong=\"H5869\"* his|strong=\"H3605\"* eyes|strong=\"H5869\"*. He|strong=\"H3605\"* also|strong=\"H1571\"* killed|strong=\"H7819\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* in|strong=\"H4428\"* Riblah|strong=\"H7247\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3117\"* put|strong=\"H5414\"* out|strong=\"H5414\"* the|strong=\"H5414\"* eyes|strong=\"H5869\"* of|strong=\"H4428\"* Zedekiah|strong=\"H6667\"*; and|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon bound him|strong=\"H5414\"* in|strong=\"H1004\"* fetters|strong=\"H5178\"*, and|strong=\"H4428\"* carried him|strong=\"H5414\"* to|strong=\"H5704\"* Babylon, and|strong=\"H4428\"* put|strong=\"H5414\"* him|strong=\"H5414\"* in|strong=\"H1004\"* prison|strong=\"H1004\"* until|strong=\"H5704\"* the|strong=\"H5414\"* day|strong=\"H3117\"* of|strong=\"H4428\"* his|strong=\"H5414\"* death|strong=\"H4194\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"H7227\"* in|strong=\"H8141\"* the|strong=\"H6440\"* fifth|strong=\"H2549\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H6440\"* tenth|strong=\"H6218\"* day|strong=\"H2320\"* of|strong=\"H4428\"* the|strong=\"H6440\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H6440\"* nineteenth|strong=\"H8672\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"*, king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, Nebuzaradan|strong=\"H5018\"* the|strong=\"H6440\"* captain|strong=\"H7227\"* of|strong=\"H4428\"* the|strong=\"H6440\"* guard|strong=\"H2876\"*, who|strong=\"H1931\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, came|strong=\"H4428\"* into Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3068\"* burned|strong=\"H8313\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*; and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* houses|strong=\"H1004\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, even|strong=\"H3068\"* every|strong=\"H3605\"* great|strong=\"H1419\"* house|strong=\"H1004\"*, he|strong=\"H3068\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 14, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H2428\"* of|strong=\"H2346\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"*, who|strong=\"H3605\"* were|strong=\"H2428\"* with|strong=\"H3389\"* the|strong=\"H3605\"* captain|strong=\"H7227\"* of|strong=\"H2346\"* the|strong=\"H3605\"* guard|strong=\"H2876\"*, broke|strong=\"H5422\"* down|strong=\"H5422\"* all|strong=\"H3605\"* the|strong=\"H3605\"* walls|strong=\"H2346\"* of|strong=\"H2346\"* Jerusalem|strong=\"H3389\"* all|strong=\"H3605\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H5307\"* Nebuzaradan|strong=\"H5018\"* the|strong=\"H1540\"* captain|strong=\"H7227\"* of|strong=\"H4428\"* the|strong=\"H1540\"* guard|strong=\"H2876\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* of|strong=\"H4428\"* the|strong=\"H1540\"* poorest|strong=\"H1803\"* of|strong=\"H4428\"* the|strong=\"H1540\"* people|strong=\"H5971\"*, and|strong=\"H4428\"* the|strong=\"H1540\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H1540\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* left|strong=\"H7604\"* in|strong=\"H4428\"* the|strong=\"H1540\"* city|strong=\"H5892\"*, and|strong=\"H4428\"* those who|strong=\"H5971\"* fell|strong=\"H5307\"* away|strong=\"H1540\"*, who|strong=\"H5971\"* defected|strong=\"H5307\"* to|strong=\"H4428\"* the|strong=\"H1540\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H4428\"* the|strong=\"H1540\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H1540\"* multitude|strong=\"H7227\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"H7604\"* Nebuzaradan|strong=\"H5018\"* the|strong=\"H5018\"* captain|strong=\"H7227\"* of|strong=\"H7227\"* the|strong=\"H5018\"* guard|strong=\"H2876\"* left|strong=\"H7604\"* of|strong=\"H7227\"* the|strong=\"H5018\"* poorest|strong=\"H1803\"* of|strong=\"H7227\"* the|strong=\"H5018\"* land to|strong=\"H7227\"* be vineyard keepers and|strong=\"H7227\"* farmers." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* Chaldeans|strong=\"H3778\"* broke|strong=\"H7665\"* the|strong=\"H3605\"* pillars|strong=\"H5982\"* of|strong=\"H1004\"* bronze|strong=\"H5178\"* that|strong=\"H3605\"* were|strong=\"H1004\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* the|strong=\"H3605\"* bases|strong=\"H4350\"* and|strong=\"H3068\"* the|strong=\"H3605\"* bronze|strong=\"H5178\"* sea|strong=\"H3220\"* that|strong=\"H3605\"* were|strong=\"H1004\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* in|strong=\"H3068\"* pieces|strong=\"H7665\"*, and|strong=\"H3068\"* carried|strong=\"H5375\"* all|strong=\"H3605\"* of|strong=\"H1004\"* their|strong=\"H3605\"* bronze|strong=\"H5178\"* to|strong=\"H3068\"* Babylon." + }, + { + "verseNum": 18, + "text": "They|strong=\"H3605\"* also took|strong=\"H3947\"* away|strong=\"H3947\"* the|strong=\"H3605\"* pots|strong=\"H5518\"*, the|strong=\"H3605\"* shovels|strong=\"H3257\"*, the|strong=\"H3605\"* snuffers|strong=\"H4212\"*, the|strong=\"H3605\"* basins|strong=\"H4219\"*, the|strong=\"H3605\"* spoons|strong=\"H3709\"*, and|strong=\"H5178\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* bronze|strong=\"H5178\"* with|strong=\"H3627\"* which|strong=\"H3627\"* they|strong=\"H3605\"* ministered|strong=\"H8334\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H3947\"* captain|strong=\"H7227\"* of|strong=\"H3709\"* the|strong=\"H3947\"* guard|strong=\"H2876\"* took|strong=\"H3947\"* away|strong=\"H3947\"* the|strong=\"H3947\"* cups|strong=\"H5592\"*, the|strong=\"H3947\"* fire pans|strong=\"H3709\"*, the|strong=\"H3947\"* basins|strong=\"H4219\"*, the|strong=\"H3947\"* pots|strong=\"H5518\"*, the|strong=\"H3947\"* lamp stands, the|strong=\"H3947\"* spoons|strong=\"H3709\"*, and|strong=\"H3701\"* the|strong=\"H3947\"* bowls|strong=\"H4219\"*; that|strong=\"H3701\"* which|strong=\"H2091\"* was|strong=\"H2091\"* of|strong=\"H3709\"* gold|strong=\"H2091\"*, as|strong=\"H3947\"* gold|strong=\"H2091\"*, and|strong=\"H3701\"* that|strong=\"H3701\"* which|strong=\"H2091\"* was|strong=\"H2091\"* of|strong=\"H3709\"* silver|strong=\"H3701\"*, as|strong=\"H3947\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H3068\"* took|strong=\"H1961\"* the|strong=\"H3605\"* two|strong=\"H8147\"* pillars|strong=\"H5982\"*, the|strong=\"H3605\"* one|strong=\"H3605\"* sea|strong=\"H3220\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* twelve|strong=\"H8147\"* bronze|strong=\"H5178\"* bulls|strong=\"H1241\"* that|strong=\"H3605\"* were|strong=\"H1961\"* under|strong=\"H8478\"* the|strong=\"H3605\"* bases|strong=\"H4350\"*, which|strong=\"H3068\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* had|strong=\"H3068\"* made|strong=\"H6213\"* for|strong=\"H6213\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*. The|strong=\"H3605\"* bronze|strong=\"H5178\"* of|strong=\"H4428\"* all|strong=\"H3605\"* these|strong=\"H6213\"* vessels|strong=\"H3627\"* was|strong=\"H3068\"* without|strong=\"H3808\"* weight|strong=\"H4948\"*." + }, + { + "verseNum": 21, + "text": "As for|strong=\"H8147\"* the|strong=\"H5437\"* pillars|strong=\"H5982\"*, the|strong=\"H5437\"* height|strong=\"H6967\"* of|strong=\"H5982\"* the|strong=\"H5437\"* one|strong=\"H8147\"* pillar|strong=\"H5982\"* was|strong=\"H6967\"* eighteen|strong=\"H8083\"* cubits;+ 52:21 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H8147\"* a|strong=\"H3068\"* line|strong=\"H2339\"* of|strong=\"H5982\"* twelve|strong=\"H8147\"* cubits encircled|strong=\"H5437\"* it|strong=\"H5437\"*; and|strong=\"H8147\"* its thickness|strong=\"H5672\"* was|strong=\"H6967\"* four fingers. It|strong=\"H5437\"* was|strong=\"H6967\"* hollow|strong=\"H5014\"*." + }, + { + "verseNum": 22, + "text": "A|strong=\"H3068\"* capital|strong=\"H3805\"* of|strong=\"H5982\"* bronze|strong=\"H5178\"* was|strong=\"H6967\"* on|strong=\"H5921\"* it|strong=\"H5921\"*; and|strong=\"H2568\"* the|strong=\"H3605\"* height|strong=\"H6967\"* of|strong=\"H5982\"* the|strong=\"H3605\"* one|strong=\"H3605\"* capital|strong=\"H3805\"* was|strong=\"H6967\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*,+ 52:22 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* with|strong=\"H5921\"* network|strong=\"H7639\"* and|strong=\"H2568\"* pomegranates|strong=\"H7416\"* on|strong=\"H5921\"* the|strong=\"H3605\"* capital|strong=\"H3805\"* all|strong=\"H3605\"* around|strong=\"H5439\"*, all|strong=\"H3605\"* of|strong=\"H5982\"* bronze|strong=\"H5178\"*. The|strong=\"H3605\"* second|strong=\"H8145\"* pillar|strong=\"H5982\"* also had|strong=\"H7416\"* the|strong=\"H3605\"* same, with|strong=\"H5921\"* pomegranates|strong=\"H7416\"*." + }, + { + "verseNum": 23, + "text": "There|strong=\"H1961\"* were|strong=\"H1961\"* ninety-six|strong=\"H8337\"* pomegranates|strong=\"H7416\"* on|strong=\"H5921\"* the|strong=\"H3605\"* sides|strong=\"H5439\"*; all|strong=\"H3605\"* the|strong=\"H3605\"* pomegranates|strong=\"H7416\"* were|strong=\"H1961\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* on|strong=\"H5921\"* the|strong=\"H3605\"* network|strong=\"H7639\"* all|strong=\"H3605\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H3947\"* captain|strong=\"H7227\"* of|strong=\"H7218\"* the|strong=\"H3947\"* guard|strong=\"H2876\"* took|strong=\"H3947\"* Seraiah|strong=\"H8304\"* the|strong=\"H3947\"* chief|strong=\"H7218\"* priest|strong=\"H3548\"*, and|strong=\"H3548\"* Zephaniah|strong=\"H6846\"* the|strong=\"H3947\"* second|strong=\"H4932\"* priest|strong=\"H3548\"*, and|strong=\"H3548\"* the|strong=\"H3947\"* three|strong=\"H7969\"* keepers|strong=\"H8104\"* of|strong=\"H7218\"* the|strong=\"H3947\"* threshold|strong=\"H5592\"*," + }, + { + "verseNum": 25, + "text": "and|strong=\"H4428\"* out|strong=\"H4672\"* of|strong=\"H4428\"* the|strong=\"H6440\"* city|strong=\"H5892\"* he|strong=\"H4480\"* took|strong=\"H3947\"* an|strong=\"H1961\"* officer|strong=\"H5631\"* who|strong=\"H5971\"* was|strong=\"H1961\"* set|strong=\"H6496\"* over|strong=\"H5921\"* the|strong=\"H6440\"* men|strong=\"H5971\"* of|strong=\"H4428\"* war|strong=\"H4421\"*; and|strong=\"H4428\"* seven|strong=\"H7651\"* men|strong=\"H5971\"* of|strong=\"H4428\"* those|strong=\"H4480\"* who|strong=\"H5971\"* saw|strong=\"H7200\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s face|strong=\"H6440\"*, who|strong=\"H5971\"* were|strong=\"H1961\"* found|strong=\"H4672\"* in|strong=\"H5921\"* the|strong=\"H6440\"* city|strong=\"H5892\"*; and|strong=\"H4428\"* the|strong=\"H6440\"* scribe|strong=\"H5608\"* of|strong=\"H4428\"* the|strong=\"H6440\"* captain|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H6440\"* army|strong=\"H6635\"*, who|strong=\"H5971\"* mustered|strong=\"H6633\"* the|strong=\"H6440\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H6440\"* land|strong=\"H6440\"*; and|strong=\"H4428\"* sixty|strong=\"H8346\"* men|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H6440\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, who|strong=\"H5971\"* were|strong=\"H1961\"* found|strong=\"H4672\"* in|strong=\"H5921\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H4428\"* the|strong=\"H6440\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 26, + "text": "Nebuzaradan|strong=\"H5018\"* the|strong=\"H3947\"* captain|strong=\"H7227\"* of|strong=\"H4428\"* the|strong=\"H3947\"* guard|strong=\"H2876\"* took|strong=\"H3947\"* them|strong=\"H3947\"*, and|strong=\"H4428\"* brought|strong=\"H3947\"* them|strong=\"H3947\"* to|strong=\"H3212\"* the|strong=\"H3947\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon to|strong=\"H3212\"* Riblah|strong=\"H7247\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon struck|strong=\"H5221\"* them|strong=\"H5921\"*, and|strong=\"H3063\"* put|strong=\"H4191\"* them|strong=\"H5921\"* to|strong=\"H4191\"* death|strong=\"H4191\"* at|strong=\"H5921\"* Riblah|strong=\"H7247\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H4428\"* Hamath|strong=\"H2574\"*." + }, + { + "verseNum": 28, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H1540\"* number of|strong=\"H8141\"* the|strong=\"H1540\"* people|strong=\"H5971\"* whom|strong=\"H5971\"* Nebuchadnezzar|strong=\"H5019\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"*:" + }, + { + "verseNum": 29, + "text": "in|strong=\"H8141\"* the|strong=\"H8147\"* eighteenth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H8141\"* Nebuchadnezzar|strong=\"H5019\"*, he|strong=\"H8147\"* carried away captive from|strong=\"H5315\"* Jerusalem|strong=\"H3389\"* eight|strong=\"H8083\"* hundred|strong=\"H3967\"* thirty-two|strong=\"H7970\"* persons|strong=\"H5315\"*;" + }, + { + "verseNum": 30, + "text": "in|strong=\"H8141\"* the|strong=\"H3605\"* twenty-third|strong=\"H6242\"* year|strong=\"H8141\"* of|strong=\"H8141\"* Nebuchadnezzar|strong=\"H5019\"*, Nebuzaradan|strong=\"H5018\"* the|strong=\"H3605\"* captain|strong=\"H7227\"* of|strong=\"H8141\"* the|strong=\"H3605\"* guard|strong=\"H2876\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* of|strong=\"H8141\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* forty-five people|strong=\"H5315\"*." + }, + { + "verseNum": 31, + "text": "In|strong=\"H8141\"* the|strong=\"H5375\"* thirty-seventh|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H4428\"* the|strong=\"H5375\"* captivity|strong=\"H1546\"* of|strong=\"H4428\"* Jehoiachin|strong=\"H3078\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, in|strong=\"H8141\"* the|strong=\"H5375\"* twelfth|strong=\"H8147\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H5375\"* twenty-fifth|strong=\"H6242\"* day|strong=\"H2320\"* of|strong=\"H4428\"* the|strong=\"H5375\"* month|strong=\"H2320\"*, Evilmerodach king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, in|strong=\"H8141\"* the|strong=\"H5375\"* first|strong=\"H7218\"* year|strong=\"H8141\"* of|strong=\"H4428\"* his|strong=\"H5375\"* reign|strong=\"H4438\"*, lifted|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H5375\"* head|strong=\"H7218\"* of|strong=\"H4428\"* Jehoiachin|strong=\"H3078\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* released|strong=\"H3318\"* him|strong=\"H3318\"* from|strong=\"H3318\"* prison|strong=\"H1004\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"H5414\"* spoke|strong=\"H1696\"* kindly|strong=\"H2896\"* to|strong=\"H1696\"* him|strong=\"H5414\"*, and|strong=\"H4428\"* set|strong=\"H5414\"* his|strong=\"H5414\"* throne|strong=\"H3678\"* above|strong=\"H4605\"* the|strong=\"H5414\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* the|strong=\"H5414\"* kings|strong=\"H4428\"* who|strong=\"H4428\"* were|strong=\"H4428\"* with|strong=\"H1696\"* him|strong=\"H5414\"* in|strong=\"H4428\"* Babylon," + }, + { + "verseNum": 33, + "text": "and|strong=\"H3117\"* changed|strong=\"H8138\"* his|strong=\"H3605\"* prison|strong=\"H3608\"* garments. Jehoiachin|strong=\"H8138\"* ate bread|strong=\"H3899\"* before|strong=\"H6440\"* him|strong=\"H6440\"* continually|strong=\"H8548\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H3605\"* life|strong=\"H2416\"*." + }, + { + "verseNum": 34, + "text": "For|strong=\"H5704\"* his|strong=\"H3605\"* allowance, there|strong=\"H3117\"* was|strong=\"H1697\"* a|strong=\"H3068\"* continual|strong=\"H8548\"* allowance given|strong=\"H5414\"* him|strong=\"H5414\"* by|strong=\"H3117\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, every|strong=\"H3605\"* day|strong=\"H3117\"* a|strong=\"H3068\"* portion|strong=\"H1697\"* until|strong=\"H5704\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H4428\"* his|strong=\"H3605\"* death|strong=\"H4194\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* his|strong=\"H3605\"* life|strong=\"H2416\"*." + } + ] + } + ] + }, + { + "name": "Lamentations", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "How the|strong=\"H1961\"* city|strong=\"H5892\"* sits|strong=\"H3427\"* solitary," + }, + { + "verseNum": 2, + "text": "She|strong=\"H5921\"* weeps|strong=\"H1058\"* bitterly|strong=\"H1058\"* in|strong=\"H5921\"* the|strong=\"H3605\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 3, + "text": "Judah|strong=\"H3063\"* has|strong=\"H3063\"* gone|strong=\"H1540\"* into|strong=\"H1540\"* captivity|strong=\"H1540\"* because|strong=\"H7230\"* of|strong=\"H3427\"* affliction|strong=\"H6040\"*" + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* roads|strong=\"H1870\"* to|strong=\"H1870\"* Zion|strong=\"H6726\"* mourn," + }, + { + "verseNum": 5, + "text": "Her|strong=\"H5921\"* adversaries|strong=\"H6862\"* have|strong=\"H1961\"* become|strong=\"H1961\"* the|strong=\"H6440\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 6, + "text": "All|strong=\"H3605\"* majesty|strong=\"H1926\"* has|strong=\"H1961\"* departed|strong=\"H3212\"* from|strong=\"H4480\"* the|strong=\"H3605\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zion." + }, + { + "verseNum": 7, + "text": "Jerusalem|strong=\"H3389\"* remembers|strong=\"H2142\"* in|strong=\"H5921\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* her|strong=\"H3605\"* affliction|strong=\"H6040\"* and|strong=\"H3117\"* of|strong=\"H3117\"* her|strong=\"H3605\"* miseries|strong=\"H4788\"*" + }, + { + "verseNum": 8, + "text": "Jerusalem|strong=\"H3389\"* has|strong=\"H1961\"* grievously|strong=\"H2399\"* sinned|strong=\"H2398\"*." + }, + { + "verseNum": 9, + "text": "Her|strong=\"H7200\"* filthiness|strong=\"H2932\"* was|strong=\"H3068\"* in|strong=\"H3068\"* her|strong=\"H7200\"* skirts|strong=\"H7757\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3605\"* adversary|strong=\"H6862\"* has|strong=\"H3588\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* his|strong=\"H3605\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* all|strong=\"H3605\"* her|strong=\"H3605\"* pleasant|strong=\"H4261\"* things|strong=\"H3605\"*;" + }, + { + "verseNum": 11, + "text": "All|strong=\"H3605\"* her|strong=\"H3605\"* people|strong=\"H5971\"* sigh." + }, + { + "verseNum": 12, + "text": "“Is|strong=\"H3068\"* it|strong=\"H7200\"* nothing|strong=\"H3808\"* to|strong=\"H3068\"* you|strong=\"H3605\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* who|strong=\"H3605\"* pass|strong=\"H5674\"* by|strong=\"H5674\"*?" + }, + { + "verseNum": 13, + "text": "“From|strong=\"H7725\"* on|strong=\"H3117\"* high|strong=\"H4791\"* has|strong=\"H3117\"* he|strong=\"H3117\"* sent|strong=\"H7971\"* fire into|strong=\"H7725\"* my|strong=\"H5414\"* bones|strong=\"H6106\"*," + }, + { + "verseNum": 14, + "text": "“The|strong=\"H5921\"* yoke|strong=\"H5923\"* of|strong=\"H3027\"* my|strong=\"H5414\"* transgressions|strong=\"H6588\"* is|strong=\"H3027\"* bound|strong=\"H8244\"* by|strong=\"H3027\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 15, + "text": "“The|strong=\"H3605\"* Lord has|strong=\"H3063\"* set|strong=\"H1869\"* at|strong=\"H5921\"* nothing|strong=\"H3605\"* all|strong=\"H3605\"* my|strong=\"H3605\"* mighty men|strong=\"H3605\"* within|strong=\"H7130\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "“For|strong=\"H3588\"* these things|strong=\"H1961\"* I|strong=\"H3588\"* weep|strong=\"H1058\"*." + }, + { + "verseNum": 17, + "text": "Zion|strong=\"H6726\"* spreads|strong=\"H6566\"* out|strong=\"H6566\"* her|strong=\"H5439\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 18, + "text": "“Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 19, + "text": "“I|strong=\"H3588\"* called|strong=\"H7121\"* for|strong=\"H3588\"* my|strong=\"H1245\"* lovers," + }, + { + "verseNum": 20, + "text": "“Look|strong=\"H7200\"*, Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* in|strong=\"H3068\"* distress|strong=\"H6862\"*." + }, + { + "verseNum": 21, + "text": "“They|strong=\"H3588\"* have|strong=\"H1961\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* I|strong=\"H3588\"* sigh." + }, + { + "verseNum": 22, + "text": "“Let all|strong=\"H3605\"* their|strong=\"H3605\"* wickedness|strong=\"H7451\"* come before|strong=\"H6440\"* you|strong=\"H3588\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "How|strong=\"H2142\"* has|strong=\"H3478\"* the|strong=\"H3117\"* Lord|strong=\"H5743\"* covered|strong=\"H5743\"* the|strong=\"H3117\"* daughter|strong=\"H1323\"* of|strong=\"H3117\"* Zion|strong=\"H6726\"* with|strong=\"H3117\"* a|strong=\"H3068\"* cloud|strong=\"H5743\"* in|strong=\"H3478\"* his|strong=\"H3478\"* anger!" + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* Lord has|strong=\"H3063\"* swallowed|strong=\"H1104\"* up|strong=\"H1104\"* all|strong=\"H3605\"* the|strong=\"H3605\"* dwellings of|strong=\"H1323\"* Jacob|strong=\"H3290\"*" + }, + { + "verseNum": 3, + "text": "He|strong=\"H3605\"* has|strong=\"H3478\"* cut|strong=\"H1438\"* off|strong=\"H1438\"* all|strong=\"H3605\"* the|strong=\"H3605\"* horn|strong=\"H7161\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* fierce|strong=\"H2750\"* anger|strong=\"H6440\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3605\"* has|strong=\"H5869\"* bent|strong=\"H1869\"* his|strong=\"H3605\"* bow|strong=\"H7198\"* like|strong=\"H8210\"* an|strong=\"H2026\"* enemy|strong=\"H6862\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3605\"* Lord has|strong=\"H1961\"* become|strong=\"H1961\"* as|strong=\"H1961\"* an|strong=\"H1961\"* enemy." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3068\"* has|strong=\"H3068\"* violently|strong=\"H2554\"* taken away|strong=\"H2554\"* his|strong=\"H3068\"* tabernacle|strong=\"H7900\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H5414\"* Lord|strong=\"H3068\"* has|strong=\"H3068\"* cast|strong=\"H5414\"* off|strong=\"H2186\"* his|strong=\"H5414\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* purposed|strong=\"H2803\"* to|strong=\"H7725\"* destroy|strong=\"H7843\"* the|strong=\"H3068\"* wall|strong=\"H2346\"* of|strong=\"H3068\"* the|strong=\"H3068\"* daughter|strong=\"H1323\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"*." + }, + { + "verseNum": 9, + "text": "Her|strong=\"H4672\"* gates|strong=\"H8179\"* have|strong=\"H3068\"* sunk|strong=\"H2883\"* into the|strong=\"H3068\"* ground." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5921\"* elders|strong=\"H2205\"* of|strong=\"H1323\"* the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zion|strong=\"H6726\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* ground|strong=\"H6083\"*." + }, + { + "verseNum": 11, + "text": "My|strong=\"H5921\"* eyes|strong=\"H5869\"* fail|strong=\"H3615\"* with|strong=\"H5921\"* tears|strong=\"H1832\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H5315\"* ask their|strong=\"H8210\"* mothers," + }, + { + "verseNum": 13, + "text": "What|strong=\"H4100\"* shall|strong=\"H1323\"* I|strong=\"H3588\"* testify|strong=\"H5749\"* to|strong=\"H3389\"* you|strong=\"H3588\"*?" + }, + { + "verseNum": 14, + "text": "Your|strong=\"H5921\"* prophets|strong=\"H5030\"* have|strong=\"H5030\"* seen|strong=\"H2372\"* false|strong=\"H7723\"* and|strong=\"H7725\"* foolish|strong=\"H8602\"* visions|strong=\"H7723\"* for|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "All|strong=\"H3605\"* that|strong=\"H3605\"* pass|strong=\"H5674\"* by|strong=\"H5921\"* clap|strong=\"H5606\"* their|strong=\"H3605\"* hands|strong=\"H3709\"* at|strong=\"H5921\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 16, + "text": "All|strong=\"H3605\"* your|strong=\"H3605\"* enemies have|strong=\"H4672\"* opened|strong=\"H6475\"* their|strong=\"H3605\"* mouth|strong=\"H6310\"* wide|strong=\"H6310\"* against|strong=\"H5921\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* done|strong=\"H6213\"* that|strong=\"H3117\"* which|strong=\"H3068\"* he|strong=\"H3117\"* planned|strong=\"H2161\"*." + }, + { + "verseNum": 18, + "text": "Their|strong=\"H5414\"* heart|strong=\"H3820\"* cried|strong=\"H6817\"* to|strong=\"H3381\"* the|strong=\"H5414\"* Lord." + }, + { + "verseNum": 19, + "text": "Arise|strong=\"H6965\"*, cry|strong=\"H7442\"* out|strong=\"H8210\"* in|strong=\"H5921\"* the|strong=\"H3605\"* night|strong=\"H3915\"*," + }, + { + "verseNum": 20, + "text": "“Look|strong=\"H7200\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* see|strong=\"H7200\"* to|strong=\"H3068\"* whom|strong=\"H4310\"* you|strong=\"H7200\"* have|strong=\"H3068\"* done|strong=\"H5953\"* thus|strong=\"H3541\"*!" + }, + { + "verseNum": 21, + "text": "“The|strong=\"H3117\"* youth|strong=\"H5288\"* and|strong=\"H3117\"* the|strong=\"H3117\"* old|strong=\"H2205\"* man|strong=\"H5288\"* lie|strong=\"H7901\"* on|strong=\"H3117\"* the|strong=\"H3117\"* ground in|strong=\"H3117\"* the|strong=\"H3117\"* streets|strong=\"H2351\"*." + }, + { + "verseNum": 22, + "text": "“You|strong=\"H3117\"* have|strong=\"H1961\"* called|strong=\"H7121\"*, as|strong=\"H3117\"* in|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* a|strong=\"H3068\"* solemn|strong=\"H4150\"* assembly|strong=\"H4150\"*, my|strong=\"H3068\"* terrors|strong=\"H4032\"* on|strong=\"H3117\"* every|strong=\"H5439\"* side|strong=\"H5439\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H7200\"* am the|strong=\"H7200\"* man|strong=\"H1397\"* who|strong=\"H1397\"* has seen|strong=\"H7200\"* affliction|strong=\"H6040\"*" + }, + { + "verseNum": 2, + "text": "He|strong=\"H3808\"* has led|strong=\"H3212\"* me|strong=\"H3808\"* and|strong=\"H3212\"* caused me|strong=\"H3808\"* to|strong=\"H3212\"* walk|strong=\"H3212\"* in|strong=\"H3212\"* darkness|strong=\"H2822\"*," + }, + { + "verseNum": 3, + "text": "Surely|strong=\"H7725\"* he|strong=\"H3117\"* turns|strong=\"H7725\"* his|strong=\"H3605\"* hand|strong=\"H3027\"* against|strong=\"H3027\"* me|strong=\"H7725\"*" + }, + { + "verseNum": 4, + "text": "He|strong=\"H5785\"* has|strong=\"H1320\"* made my|strong=\"H7665\"* flesh|strong=\"H1320\"* and|strong=\"H7665\"* my|strong=\"H7665\"* skin|strong=\"H5785\"* old|strong=\"H1086\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H5921\"* has built|strong=\"H1129\"* against|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 6, + "text": "He|strong=\"H3427\"* has made me|strong=\"H4191\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* dark|strong=\"H4285\"* places|strong=\"H4285\"*," + }, + { + "verseNum": 7, + "text": "He|strong=\"H3808\"* has|strong=\"H3318\"* walled|strong=\"H1443\"* me|strong=\"H1157\"* about|strong=\"H1157\"*, so|strong=\"H3808\"* that|strong=\"H3808\"* I|strong=\"H3808\"* can|strong=\"H3808\"*’t go|strong=\"H3318\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 8, + "text": "Yes|strong=\"H3588\"*, when|strong=\"H3588\"* I|strong=\"H3588\"* cry|strong=\"H2199\"*, and|strong=\"H8605\"* call|strong=\"H7768\"* for|strong=\"H3588\"* help|strong=\"H7768\"*," + }, + { + "verseNum": 9, + "text": "He has walled|strong=\"H1443\"* up|strong=\"H1443\"* my|strong=\"H1443\"* ways|strong=\"H1870\"* with|strong=\"H1870\"* cut|strong=\"H1496\"* stone|strong=\"H1496\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H1931\"* is|strong=\"H1931\"* to me as|strong=\"H4565\"* a|strong=\"H3068\"* bear|strong=\"H1677\"* lying in|strong=\"H1931\"* wait," + }, + { + "verseNum": 11, + "text": "He|strong=\"H7760\"* has turned|strong=\"H5493\"* away|strong=\"H5493\"* my|strong=\"H7760\"* path|strong=\"H1870\"*," + }, + { + "verseNum": 12, + "text": "He has bent|strong=\"H1869\"* his|strong=\"H1869\"* bow|strong=\"H7198\"*," + }, + { + "verseNum": 13, + "text": "He|strong=\"H1121\"* has|strong=\"H1121\"* caused the|strong=\"H1121\"* shafts of|strong=\"H1121\"* his|strong=\"H1121\"* quiver to|strong=\"H1121\"* enter into my kidneys|strong=\"H3629\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3117\"* have|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* derision|strong=\"H7814\"* to|strong=\"H1961\"* all|strong=\"H3605\"* my|strong=\"H3605\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 15, + "text": "He has filled|strong=\"H7646\"* me|strong=\"H7301\"* with|strong=\"H7646\"* bitterness|strong=\"H4844\"*." + }, + { + "verseNum": 16, + "text": "He has also broken|strong=\"H1638\"* my|strong=\"H1638\"* teeth|strong=\"H8127\"* with|strong=\"H8127\"* gravel|strong=\"H2687\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H5315\"* have|strong=\"H7965\"* removed|strong=\"H2186\"* my|strong=\"H2186\"* soul|strong=\"H5315\"* far|strong=\"H5315\"* away|strong=\"H2186\"* from|strong=\"H5315\"* peace|strong=\"H7965\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H3068\"* said, “My|strong=\"H3068\"* strength|strong=\"H5331\"* has|strong=\"H3068\"* perished," + }, + { + "verseNum": 19, + "text": "Remember|strong=\"H2142\"* my|strong=\"H2142\"* affliction|strong=\"H6040\"* and|strong=\"H6040\"* my|strong=\"H2142\"* misery|strong=\"H6040\"*," + }, + { + "verseNum": 20, + "text": "My|strong=\"H5921\"* soul|strong=\"H5315\"* still|strong=\"H2142\"* remembers|strong=\"H2142\"* them|strong=\"H5921\"*," + }, + { + "verseNum": 21, + "text": "This|strong=\"H2063\"* I|strong=\"H5921\"* recall|strong=\"H7725\"* to|strong=\"H7725\"* my|strong=\"H5921\"* mind|strong=\"H3820\"*;" + }, + { + "verseNum": 22, + "text": "It|strong=\"H3588\"* is|strong=\"H3068\"* because|strong=\"H3588\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s loving kindnesses|strong=\"H2617\"* that|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H3068\"* not|strong=\"H3808\"* consumed|strong=\"H3615\"*," + }, + { + "verseNum": 23, + "text": "They|strong=\"H1242\"* are|strong=\"H7227\"* new|strong=\"H2319\"* every|strong=\"H1242\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 24, + "text": "“Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* my|strong=\"H3068\"* portion|strong=\"H2506\"*,” says my|strong=\"H3068\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* good|strong=\"H2896\"* to|strong=\"H3068\"* those|strong=\"H5315\"* who|strong=\"H3068\"* wait|strong=\"H6960\"* for|strong=\"H3068\"* him|strong=\"H5315\"*," + }, + { + "verseNum": 26, + "text": "It|strong=\"H3068\"* is|strong=\"H3068\"* good|strong=\"H2896\"* that|strong=\"H3068\"* a|strong=\"H3068\"* man|strong=\"H2896\"* should|strong=\"H3068\"* hope|strong=\"H3175\"*" + }, + { + "verseNum": 27, + "text": "It|strong=\"H3588\"* is|strong=\"H2896\"* good|strong=\"H2896\"* for|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1397\"* that|strong=\"H3588\"* he|strong=\"H3588\"* bear|strong=\"H5375\"* the|strong=\"H3588\"* yoke|strong=\"H5923\"* in|strong=\"H2896\"* his|strong=\"H5375\"* youth|strong=\"H5271\"*." + }, + { + "verseNum": 28, + "text": "Let him|strong=\"H5921\"* sit|strong=\"H3427\"* alone and|strong=\"H3427\"* keep|strong=\"H3427\"* silence|strong=\"H1826\"*," + }, + { + "verseNum": 29, + "text": "Let|strong=\"H5414\"* him|strong=\"H5414\"* put|strong=\"H5414\"* his|strong=\"H5414\"* mouth|strong=\"H6310\"* in|strong=\"H5414\"* the|strong=\"H5414\"* dust|strong=\"H6083\"*," + }, + { + "verseNum": 30, + "text": "Let|strong=\"H5414\"* him|strong=\"H5414\"* give|strong=\"H5414\"* his|strong=\"H5414\"* cheek|strong=\"H3895\"* to|strong=\"H5414\"* him|strong=\"H5414\"* who|strong=\"H5221\"* strikes|strong=\"H5221\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* Lord will|strong=\"H3808\"* not|strong=\"H3808\"* cast|strong=\"H2186\"* off|strong=\"H2186\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* though|strong=\"H3588\"* he|strong=\"H3588\"* causes|strong=\"H3013\"* grief|strong=\"H3013\"*," + }, + { + "verseNum": 33, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* does|strong=\"H3808\"* not|strong=\"H3808\"* afflict|strong=\"H6031\"* willingly|strong=\"H3820\"*," + }, + { + "verseNum": 34, + "text": "To|strong=\"H7272\"* crush|strong=\"H1792\"* under|strong=\"H8478\"* foot|strong=\"H7272\"* all|strong=\"H3605\"* the|strong=\"H3605\"* prisoners of|strong=\"H8478\"* the|strong=\"H3605\"* earth," + }, + { + "verseNum": 35, + "text": "to|strong=\"H6440\"* turn|strong=\"H5186\"* away|strong=\"H5186\"* the|strong=\"H6440\"* right|strong=\"H4941\"* of|strong=\"H6440\"* a|strong=\"H3068\"* man|strong=\"H1397\"* before|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* Most|strong=\"H5945\"* High|strong=\"H5945\"*," + }, + { + "verseNum": 36, + "text": "to|strong=\"H7200\"* subvert|strong=\"H5791\"* a|strong=\"H3068\"* man|strong=\"H7200\"* in|strong=\"H7200\"* his|strong=\"H7200\"* cause|strong=\"H7379\"*, the|strong=\"H7200\"* Lord doesn’t approve|strong=\"H7200\"*." + }, + { + "verseNum": 37, + "text": "Who|strong=\"H4310\"* is|strong=\"H2088\"* he|strong=\"H3808\"* who|strong=\"H4310\"* says, and|strong=\"H2088\"* it|strong=\"H1961\"* comes|strong=\"H1961\"* to|strong=\"H1961\"* pass|strong=\"H1961\"*," + }, + { + "verseNum": 38, + "text": "Doesn’t evil|strong=\"H7451\"* and|strong=\"H2896\"* good|strong=\"H2896\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H6310\"* the|strong=\"H3318\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H3318\"* Most|strong=\"H5945\"* High|strong=\"H5945\"*?" + }, + { + "verseNum": 39, + "text": "Why|strong=\"H4100\"* should|strong=\"H4100\"* a|strong=\"H3068\"* living|strong=\"H2416\"* man|strong=\"H1397\"* complain," + }, + { + "verseNum": 40, + "text": "Let|strong=\"H7725\"* us|strong=\"H7725\"* search|strong=\"H2713\"* and|strong=\"H3068\"* try|strong=\"H2713\"* our|strong=\"H3068\"* ways|strong=\"H1870\"*," + }, + { + "verseNum": 41, + "text": "Let’s lift|strong=\"H5375\"* up|strong=\"H5375\"* our|strong=\"H5375\"* heart|strong=\"H3824\"* with|strong=\"H8064\"* our|strong=\"H5375\"* hands|strong=\"H3709\"* to|strong=\"H3824\"* God|strong=\"H8064\"*+ 3:41 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* in|strong=\"H8064\"* the|strong=\"H5375\"* heavens|strong=\"H8064\"*." + }, + { + "verseNum": 42, + "text": "“We|strong=\"H5168\"* have|strong=\"H3808\"* transgressed|strong=\"H6586\"* and|strong=\"H6586\"* have|strong=\"H3808\"* rebelled|strong=\"H4784\"*." + }, + { + "verseNum": 43, + "text": "“You|strong=\"H3808\"* have|strong=\"H2550\"* covered|strong=\"H5526\"* us with|strong=\"H5526\"* anger and|strong=\"H2026\"* pursued|strong=\"H7291\"* us." + }, + { + "verseNum": 44, + "text": "You have covered|strong=\"H5526\"* yourself with|strong=\"H5674\"* a|strong=\"H3068\"* cloud|strong=\"H6051\"*," + }, + { + "verseNum": 45, + "text": "You|strong=\"H7760\"* have|strong=\"H5971\"* made|strong=\"H7760\"* us|strong=\"H7760\"* an|strong=\"H7760\"* off-scouring and|strong=\"H5971\"* refuse|strong=\"H3973\"*" + }, + { + "verseNum": 46, + "text": "“All|strong=\"H3605\"* our|strong=\"H3605\"* enemies have|strong=\"H3605\"* opened|strong=\"H6475\"* their|strong=\"H3605\"* mouth|strong=\"H6310\"* wide|strong=\"H6310\"* against|strong=\"H5921\"* us|strong=\"H5921\"*." + }, + { + "verseNum": 47, + "text": "Terror|strong=\"H6343\"* and|strong=\"H1961\"* the|strong=\"H1961\"* pit|strong=\"H6354\"* have|strong=\"H1961\"* come|strong=\"H1961\"* on|strong=\"H1961\"* us|strong=\"H1961\"*," + }, + { + "verseNum": 48, + "text": "My|strong=\"H5921\"* eye|strong=\"H5869\"* runs down|strong=\"H3381\"* with|strong=\"H5921\"* streams|strong=\"H6388\"* of|strong=\"H1323\"* water|strong=\"H4325\"*," + }, + { + "verseNum": 49, + "text": "My|strong=\"H3808\"* eye|strong=\"H5869\"* pours|strong=\"H5064\"* down|strong=\"H5064\"*" + }, + { + "verseNum": 50, + "text": "until|strong=\"H5704\"* Yahweh|strong=\"H3068\"* looks|strong=\"H7200\"* down|strong=\"H8259\"*," + }, + { + "verseNum": 51, + "text": "My|strong=\"H3605\"* eye|strong=\"H5869\"* affects my|strong=\"H3605\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 52, + "text": "They|strong=\"H2600\"* have chased|strong=\"H6679\"* me|strong=\"H6679\"* relentlessly like a|strong=\"H3068\"* bird|strong=\"H6833\"*," + }, + { + "verseNum": 53, + "text": "They have cut|strong=\"H6789\"* off|strong=\"H6789\"* my|strong=\"H3034\"* life|strong=\"H2416\"* in|strong=\"H3034\"* the|strong=\"H3034\"* dungeon," + }, + { + "verseNum": 54, + "text": "Waters|strong=\"H4325\"* flowed|strong=\"H6687\"* over|strong=\"H5921\"* my|strong=\"H5921\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 55, + "text": "I|strong=\"H3068\"* called|strong=\"H7121\"* on|strong=\"H3068\"* your|strong=\"H3068\"* name|strong=\"H8034\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 56, + "text": "You|strong=\"H6963\"* heard|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*:" + }, + { + "verseNum": 57, + "text": "You|strong=\"H3117\"* came|strong=\"H7126\"* near|strong=\"H7126\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* called|strong=\"H7121\"* on|strong=\"H3117\"* you|strong=\"H3117\"*." + }, + { + "verseNum": 58, + "text": "Lord, you|strong=\"H5315\"* have|strong=\"H7378\"* pleaded|strong=\"H7378\"* the|strong=\"H7378\"* causes|strong=\"H7379\"* of|strong=\"H5315\"* my|strong=\"H7378\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 59, + "text": "Yahweh|strong=\"H3068\"*, you|strong=\"H7200\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* my|strong=\"H3068\"* wrong|strong=\"H4941\"*." + }, + { + "verseNum": 60, + "text": "You|strong=\"H3605\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* their|strong=\"H3605\"* vengeance|strong=\"H5360\"*" + }, + { + "verseNum": 61, + "text": "You|strong=\"H3605\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* their|strong=\"H3605\"* reproach|strong=\"H2781\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 62, + "text": "the|strong=\"H3605\"* lips|strong=\"H8193\"* of|strong=\"H3117\"* those|strong=\"H3605\"* that|strong=\"H3605\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 63, + "text": "You|strong=\"H3427\"* see|strong=\"H5027\"* their|strong=\"H3427\"* sitting|strong=\"H3427\"* down|strong=\"H3427\"* and|strong=\"H3427\"* their|strong=\"H3427\"* rising|strong=\"H7012\"* up|strong=\"H3427\"*." + }, + { + "verseNum": 64, + "text": "You|strong=\"H7725\"* will|strong=\"H3068\"* pay|strong=\"H7725\"* them|strong=\"H7725\"* back|strong=\"H7725\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 65, + "text": "You|strong=\"H5414\"* will|strong=\"H3820\"* give|strong=\"H5414\"* them|strong=\"H5414\"* hardness|strong=\"H4044\"* of|strong=\"H3820\"* heart|strong=\"H3820\"*," + }, + { + "verseNum": 66, + "text": "You|strong=\"H7291\"* will|strong=\"H3068\"* pursue|strong=\"H7291\"* them|strong=\"H7291\"* in|strong=\"H3068\"* anger," + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "How the|strong=\"H3605\"* gold|strong=\"H2091\"* has|strong=\"H3605\"* become|strong=\"H2091\"* dim|strong=\"H6004\"*!" + }, + { + "verseNum": 2, + "text": "The|strong=\"H3027\"* precious|strong=\"H3368\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 3, + "text": "Even|strong=\"H1571\"* the|strong=\"H3588\"* jackals offer|strong=\"H2502\"* their|strong=\"H3588\"* breast|strong=\"H7699\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H7592\"* tongue|strong=\"H3956\"* of|strong=\"H3899\"* the|strong=\"H7592\"* nursing|strong=\"H3243\"* child|strong=\"H5768\"* clings|strong=\"H1692\"* to|strong=\"H3899\"* the|strong=\"H7592\"* roof|strong=\"H2441\"* of|strong=\"H3899\"* his|strong=\"H6566\"* mouth|strong=\"H2441\"* for|strong=\"H7592\"* thirst|strong=\"H6772\"*." + }, + { + "verseNum": 5, + "text": "Those|strong=\"H5921\"* who ate delicacies|strong=\"H4574\"* are|strong=\"H8074\"* desolate|strong=\"H8074\"* in|strong=\"H5921\"* the|strong=\"H5921\"* streets|strong=\"H2351\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3027\"* the|strong=\"H3027\"* iniquity|strong=\"H5771\"* of|strong=\"H1323\"* the|strong=\"H3027\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* my|strong=\"H3027\"* people|strong=\"H5971\"* is|strong=\"H3027\"* greater|strong=\"H1431\"* than|strong=\"H3808\"* the|strong=\"H3027\"* sin|strong=\"H2403\"* of|strong=\"H1323\"* Sodom|strong=\"H5467\"*," + }, + { + "verseNum": 7, + "text": "Her nobles were|strong=\"H5139\"* purer|strong=\"H2141\"* than|strong=\"H6106\"* snow|strong=\"H7950\"*." + }, + { + "verseNum": 8, + "text": "Their|strong=\"H5921\"* appearance|strong=\"H8389\"* is|strong=\"H1961\"* blacker|strong=\"H2821\"* than|strong=\"H3808\"* a|strong=\"H3068\"* coal|strong=\"H7815\"*." + }, + { + "verseNum": 9, + "text": "Those|strong=\"H1992\"* who|strong=\"H1992\"* are|strong=\"H1992\"* killed|strong=\"H2491\"* with|strong=\"H2100\"* the|strong=\"H1961\"* sword|strong=\"H2719\"* are|strong=\"H1992\"* better|strong=\"H2896\"* than|strong=\"H2896\"* those|strong=\"H1992\"* who|strong=\"H1992\"* are|strong=\"H1992\"* killed|strong=\"H2491\"* with|strong=\"H2100\"* hunger|strong=\"H7458\"*;" + }, + { + "verseNum": 10, + "text": "The|strong=\"H3027\"* hands|strong=\"H3027\"* of|strong=\"H1323\"* the|strong=\"H3027\"* pitiful|strong=\"H7362\"* women|strong=\"H1323\"* have|strong=\"H1961\"* boiled|strong=\"H1310\"* their|strong=\"H1961\"* own|strong=\"H1961\"* children|strong=\"H3206\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* accomplished|strong=\"H3615\"* his|strong=\"H3068\"* wrath|strong=\"H2534\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* earth didn’t believe," + }, + { + "verseNum": 13, + "text": "It|strong=\"H7130\"* is|strong=\"H6662\"* because|strong=\"H5771\"* of|strong=\"H1818\"* the|strong=\"H3548\"* sins|strong=\"H2403\"* of|strong=\"H1818\"* her|strong=\"H7130\"* prophets|strong=\"H5030\"*" + }, + { + "verseNum": 14, + "text": "They|strong=\"H3808\"* wander|strong=\"H5128\"* as|strong=\"H2351\"* blind|strong=\"H5787\"* men|strong=\"H5787\"* in|strong=\"H3808\"* the|strong=\"H5060\"* streets|strong=\"H2351\"*." + }, + { + "verseNum": 15, + "text": "“Go|strong=\"H5493\"* away|strong=\"H5493\"*!” they|strong=\"H3588\"* cried|strong=\"H7121\"* to|strong=\"H7121\"* them|strong=\"H7121\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"*’s anger|strong=\"H6440\"* has|strong=\"H3068\"* scattered|strong=\"H2505\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 17, + "text": "Our|strong=\"H3615\"* eyes|strong=\"H5869\"* still|strong=\"H1471\"* fail|strong=\"H3615\"*," + }, + { + "verseNum": 18, + "text": "They|strong=\"H3588\"* hunt|strong=\"H6679\"* our|strong=\"H3588\"* steps|strong=\"H6806\"*," + }, + { + "verseNum": 19, + "text": "Our|strong=\"H5921\"* pursuers|strong=\"H7291\"* were|strong=\"H1961\"* swifter|strong=\"H7031\"* than|strong=\"H5921\"* the|strong=\"H5921\"* eagles|strong=\"H5404\"* of|strong=\"H2022\"* the|strong=\"H5921\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3068\"* breath|strong=\"H7307\"* of|strong=\"H3068\"* our|strong=\"H3068\"* nostrils," + }, + { + "verseNum": 21, + "text": "Rejoice|strong=\"H7797\"* and|strong=\"H3427\"* be|strong=\"H1571\"* glad|strong=\"H7797\"*, daughter|strong=\"H1323\"* of|strong=\"H1323\"* Edom," + }, + { + "verseNum": 22, + "text": "The|strong=\"H5921\"* punishment|strong=\"H5771\"* of|strong=\"H1323\"* your|strong=\"H5921\"* iniquity|strong=\"H5771\"* is|strong=\"H5771\"* accomplished|strong=\"H8552\"*, daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zion|strong=\"H6726\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Remember|strong=\"H2142\"*, Yahweh|strong=\"H3068\"*, what|strong=\"H4100\"* has|strong=\"H3068\"* come|strong=\"H1961\"* on|strong=\"H7200\"* us|strong=\"H7200\"*." + }, + { + "verseNum": 2, + "text": "Our inheritance|strong=\"H5159\"* has|strong=\"H5159\"* been turned|strong=\"H2015\"* over|strong=\"H2015\"* to|strong=\"H1004\"* strangers|strong=\"H2114\"*," + }, + { + "verseNum": 3, + "text": "We are|strong=\"H1961\"* orphans|strong=\"H3490\"* and|strong=\"H1961\"* fatherless|strong=\"H3490\"*." + }, + { + "verseNum": 4, + "text": "We must pay|strong=\"H3701\"* for|strong=\"H6086\"* water|strong=\"H4325\"* to|strong=\"H4325\"* drink|strong=\"H8354\"*." + }, + { + "verseNum": 5, + "text": "Our|strong=\"H5921\"* pursuers|strong=\"H7291\"* are|strong=\"H3808\"* on|strong=\"H5921\"* our|strong=\"H5921\"* necks|strong=\"H6677\"*." + }, + { + "verseNum": 6, + "text": "We have|strong=\"H7646\"* given|strong=\"H5414\"* our|strong=\"H5414\"* hands|strong=\"H3027\"* to|strong=\"H5414\"* the|strong=\"H5414\"* Egyptians|strong=\"H4713\"*," + }, + { + "verseNum": 7, + "text": "Our|strong=\"H5445\"* fathers sinned|strong=\"H2398\"*, and|strong=\"H2398\"* are|strong=\"H5771\"* no more." + }, + { + "verseNum": 8, + "text": "Servants|strong=\"H5650\"* rule|strong=\"H4910\"* over|strong=\"H3027\"* us|strong=\"H3027\"*." + }, + { + "verseNum": 9, + "text": "We|strong=\"H5315\"* get our|strong=\"H6440\"* bread|strong=\"H3899\"* at|strong=\"H6440\"* the|strong=\"H6440\"* peril of|strong=\"H6440\"* our|strong=\"H6440\"* lives|strong=\"H5315\"*," + }, + { + "verseNum": 10, + "text": "Our|strong=\"H6440\"* skin|strong=\"H5785\"* is|strong=\"H6440\"* black|strong=\"H3648\"* like|strong=\"H6440\"* an|strong=\"H6440\"* oven|strong=\"H8574\"*," + }, + { + "verseNum": 11, + "text": "They|strong=\"H3063\"* ravished|strong=\"H6031\"* the|strong=\"H3063\"* women|strong=\"H1330\"* in|strong=\"H5892\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 12, + "text": "Princes|strong=\"H8269\"* were|strong=\"H3027\"* hanged|strong=\"H8518\"* up|strong=\"H8518\"* by|strong=\"H3027\"* their|strong=\"H6440\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5375\"* young|strong=\"H5288\"* men|strong=\"H5288\"* carry|strong=\"H5375\"* millstones." + }, + { + "verseNum": 14, + "text": "The|strong=\"H8179\"* elders|strong=\"H2205\"* have|strong=\"H8179\"* ceased|strong=\"H7673\"* from|strong=\"H7673\"* the|strong=\"H8179\"* gate|strong=\"H8179\"*," + }, + { + "verseNum": 15, + "text": "The|strong=\"H2015\"* joy|strong=\"H4885\"* of|strong=\"H3820\"* our|strong=\"H7673\"* heart|strong=\"H3820\"* has|strong=\"H3820\"* ceased|strong=\"H7673\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3588\"* crown|strong=\"H5850\"* has|strong=\"H3588\"* fallen|strong=\"H5307\"* from|strong=\"H5307\"* our|strong=\"H3588\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H5921\"* this|strong=\"H2088\"* our|strong=\"H5921\"* heart|strong=\"H3820\"* is|strong=\"H2088\"* faint|strong=\"H1739\"*." + }, + { + "verseNum": 18, + "text": "for|strong=\"H5921\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"* of|strong=\"H2022\"* Zion|strong=\"H6726\"*, which|strong=\"H2022\"* is|strong=\"H6726\"* desolate|strong=\"H8074\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H3427\"*, Yahweh|strong=\"H3068\"*, remain|strong=\"H3427\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 20, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3117\"* forget|strong=\"H7911\"* us|strong=\"H3117\"* forever|strong=\"H5331\"*," + }, + { + "verseNum": 21, + "text": "Turn|strong=\"H7725\"* us|strong=\"H7725\"* to|strong=\"H7725\"* yourself, Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* we|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* turned|strong=\"H7725\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* utterly|strong=\"H3966\"* rejected|strong=\"H3988\"* us|strong=\"H5921\"*." + } + ] + } + ] + }, + { + "name": "Ezekiel", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H5921\"* thirtieth|strong=\"H7970\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* fourth|strong=\"H7243\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* fifth|strong=\"H2568\"* day|strong=\"H2320\"* of|strong=\"H8141\"* the|strong=\"H5921\"* month|strong=\"H2320\"*, as|strong=\"H1961\"* I|strong=\"H5921\"* was|strong=\"H1961\"* among|strong=\"H8432\"* the|strong=\"H5921\"* captives|strong=\"H1473\"* by|strong=\"H5921\"* the|strong=\"H5921\"* river|strong=\"H5104\"* Chebar|strong=\"H3529\"*, the|strong=\"H5921\"* heavens|strong=\"H8064\"* were|strong=\"H1961\"* opened|strong=\"H6605\"*, and|strong=\"H8064\"* I|strong=\"H5921\"* saw|strong=\"H7200\"* visions|strong=\"H4759\"* of|strong=\"H8141\"* God|strong=\"H8064\"*.+ 1:1 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).*" + }, + { + "verseNum": 2, + "text": "In|strong=\"H8141\"* the|strong=\"H8141\"* fifth|strong=\"H2549\"* of|strong=\"H4428\"* the|strong=\"H8141\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H8141\"* fifth|strong=\"H2549\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Jehoiachin’s captivity|strong=\"H1546\"*," + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*’s+ 1:3 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Ezekiel|strong=\"H3168\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Buzi, in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* the|strong=\"H5921\"* Chaldeans|strong=\"H3778\"* by|strong=\"H3027\"* the|strong=\"H5921\"* river|strong=\"H5104\"* Chebar|strong=\"H3529\"*; and|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* there|strong=\"H8033\"* on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H2009\"* looked|strong=\"H7200\"*, and|strong=\"H1419\"* behold|strong=\"H2009\"*,+ 1:4 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* a|strong=\"H3068\"* stormy|strong=\"H5591\"* wind|strong=\"H7307\"* came|strong=\"H7307\"* out|strong=\"H4480\"* of|strong=\"H7307\"* the|strong=\"H7200\"* north|strong=\"H6828\"*: a|strong=\"H3068\"* great|strong=\"H1419\"* cloud|strong=\"H6051\"*, with|strong=\"H5869\"* flashing|strong=\"H3947\"* lightning, and|strong=\"H1419\"* a|strong=\"H3068\"* brightness|strong=\"H5051\"* around|strong=\"H5439\"* it|strong=\"H8432\"*, and|strong=\"H1419\"* out|strong=\"H4480\"* of|strong=\"H7307\"* the|strong=\"H7200\"* middle|strong=\"H8432\"* of|strong=\"H7307\"* it|strong=\"H8432\"* as|strong=\"H5869\"* it|strong=\"H8432\"* were|strong=\"H5869\"* glowing|strong=\"H2830\"* metal|strong=\"H2830\"*, out|strong=\"H4480\"* of|strong=\"H7307\"* the|strong=\"H7200\"* middle|strong=\"H8432\"* of|strong=\"H7307\"* the|strong=\"H7200\"* fire." + }, + { + "verseNum": 5, + "text": "Out|strong=\"H8432\"* of|strong=\"H8432\"* its center|strong=\"H8432\"* came the|strong=\"H8432\"* likeness|strong=\"H1823\"* of|strong=\"H8432\"* four living|strong=\"H2416\"* creatures|strong=\"H2416\"*. This|strong=\"H2088\"* was|strong=\"H2088\"* their|strong=\"H8432\"* appearance|strong=\"H4758\"*: They|strong=\"H2007\"* had|strong=\"H2416\"* the|strong=\"H8432\"* likeness|strong=\"H1823\"* of|strong=\"H8432\"* a|strong=\"H3068\"* man|strong=\"H2088\"*." + }, + { + "verseNum": 6, + "text": "Everyone had four faces|strong=\"H6440\"*, and|strong=\"H6440\"* each|strong=\"H3671\"* one|strong=\"H3671\"* of|strong=\"H6440\"* them|strong=\"H6440\"* had four wings|strong=\"H3671\"*." + }, + { + "verseNum": 7, + "text": "Their|strong=\"H7272\"* feet|strong=\"H7272\"* were|strong=\"H5869\"* straight|strong=\"H3477\"* feet|strong=\"H7272\"*. The|strong=\"H5869\"* sole|strong=\"H3709\"* of|strong=\"H5869\"* their|strong=\"H7272\"* feet|strong=\"H7272\"* was|strong=\"H3477\"* like|strong=\"H7272\"* the|strong=\"H5869\"* sole|strong=\"H3709\"* of|strong=\"H5869\"* a|strong=\"H3068\"* calf|strong=\"H5695\"*’s foot|strong=\"H7272\"*; and|strong=\"H5869\"* they|strong=\"H7272\"* sparkled|strong=\"H5340\"* like|strong=\"H7272\"* burnished|strong=\"H7044\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H5921\"* had|strong=\"H3027\"* the|strong=\"H6440\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* a|strong=\"H3068\"* man|strong=\"H6440\"* under|strong=\"H8478\"* their|strong=\"H6440\"* wings|strong=\"H3671\"* on|strong=\"H5921\"* their|strong=\"H6440\"* four sides|strong=\"H7253\"*. The|strong=\"H6440\"* four of|strong=\"H3027\"* them|strong=\"H5921\"* had|strong=\"H3027\"* their|strong=\"H6440\"* faces|strong=\"H6440\"* and|strong=\"H3027\"* their|strong=\"H6440\"* wings|strong=\"H3671\"* like|strong=\"H5921\"* this|strong=\"H6440\"*:" + }, + { + "verseNum": 9, + "text": "Their|strong=\"H6440\"* wings|strong=\"H3671\"* were|strong=\"H3671\"* joined|strong=\"H2266\"* to|strong=\"H3212\"* one|strong=\"H3808\"* another|strong=\"H3808\"*. They|strong=\"H3808\"* didn’t turn|strong=\"H5437\"* when they|strong=\"H3808\"* went|strong=\"H3212\"*. Each|strong=\"H3671\"* one|strong=\"H3808\"* went|strong=\"H3212\"* straight|strong=\"H5676\"* forward|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "As|strong=\"H6440\"* for|strong=\"H6440\"* the|strong=\"H6440\"* likeness|strong=\"H1823\"* of|strong=\"H6440\"* their|strong=\"H6440\"* faces|strong=\"H6440\"*, they|strong=\"H6440\"* had|strong=\"H3225\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* a|strong=\"H3068\"* man|strong=\"H6440\"*. The|strong=\"H6440\"* four of|strong=\"H6440\"* them|strong=\"H6440\"* had|strong=\"H3225\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* a|strong=\"H3068\"* lion on|strong=\"H6440\"* the|strong=\"H6440\"* right|strong=\"H3225\"* side|strong=\"H3225\"*. The|strong=\"H6440\"* four of|strong=\"H6440\"* them|strong=\"H6440\"* had|strong=\"H3225\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* an|strong=\"H6440\"* ox|strong=\"H7794\"* on|strong=\"H6440\"* the|strong=\"H6440\"* left|strong=\"H8040\"* side|strong=\"H3225\"*. The|strong=\"H6440\"* four of|strong=\"H6440\"* them|strong=\"H6440\"* also had|strong=\"H3225\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* an|strong=\"H6440\"* eagle|strong=\"H5404\"*." + }, + { + "verseNum": 11, + "text": "Such were|strong=\"H8147\"* their|strong=\"H6440\"* faces|strong=\"H6440\"*. Their|strong=\"H6440\"* wings|strong=\"H3671\"* were|strong=\"H8147\"* spread|strong=\"H3671\"* out|strong=\"H6440\"* above|strong=\"H4605\"*. Two|strong=\"H8147\"* wings|strong=\"H3671\"* of|strong=\"H6440\"* each|strong=\"H8147\"* one|strong=\"H3671\"* touched|strong=\"H2266\"* another|strong=\"H3671\"*, and|strong=\"H6440\"* two|strong=\"H8147\"* covered|strong=\"H3680\"* their|strong=\"H6440\"* bodies|strong=\"H1472\"*." + }, + { + "verseNum": 12, + "text": "Each one|strong=\"H3808\"* went|strong=\"H3212\"* straight|strong=\"H5676\"* forward|strong=\"H6440\"*. Where|strong=\"H8033\"* the|strong=\"H6440\"* spirit|strong=\"H7307\"* was|strong=\"H1961\"* to|strong=\"H3212\"* go|strong=\"H3212\"*, they|strong=\"H8033\"* went|strong=\"H3212\"*. They|strong=\"H8033\"* didn’t turn|strong=\"H5437\"* when|strong=\"H1961\"* they|strong=\"H8033\"* went|strong=\"H3212\"*." + }, + { + "verseNum": 13, + "text": "As|strong=\"H3318\"* for|strong=\"H3318\"* the|strong=\"H4480\"* likeness|strong=\"H1823\"* of|strong=\"H4480\"* the|strong=\"H4480\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"*, their|strong=\"H3318\"* appearance|strong=\"H4758\"* was|strong=\"H1931\"* like|strong=\"H4758\"* burning|strong=\"H1197\"* coals|strong=\"H1513\"* of|strong=\"H4480\"* fire|strong=\"H1513\"*, like|strong=\"H4758\"* the|strong=\"H4480\"* appearance|strong=\"H4758\"* of|strong=\"H4480\"* torches|strong=\"H3940\"*. The|strong=\"H4480\"* fire|strong=\"H1513\"* went|strong=\"H1980\"* up|strong=\"H3318\"* and|strong=\"H1980\"* down|strong=\"H1980\"* among|strong=\"H4480\"* the|strong=\"H4480\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"*. The|strong=\"H4480\"* fire|strong=\"H1513\"* was|strong=\"H1931\"* bright|strong=\"H5051\"*, and|strong=\"H1980\"* lightning|strong=\"H1300\"* went|strong=\"H1980\"* out|strong=\"H3318\"* of|strong=\"H4480\"* the|strong=\"H4480\"* fire|strong=\"H1513\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H7725\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"* ran|strong=\"H7519\"* and|strong=\"H7725\"* returned|strong=\"H7725\"* as|strong=\"H7725\"* the|strong=\"H7725\"* appearance|strong=\"H4758\"* of|strong=\"H4758\"* a|strong=\"H3068\"* flash of|strong=\"H4758\"* lightning." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H2009\"* as|strong=\"H6440\"* I|strong=\"H2009\"* saw|strong=\"H7200\"* the|strong=\"H6440\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"*, behold|strong=\"H2009\"*, there|strong=\"H2009\"* was|strong=\"H6440\"* one|strong=\"H2416\"* wheel on|strong=\"H7200\"* the|strong=\"H6440\"* earth beside the|strong=\"H6440\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"*, for|strong=\"H6440\"* each of|strong=\"H6440\"* the|strong=\"H6440\"* four faces|strong=\"H6440\"* of|strong=\"H6440\"* it|strong=\"H7200\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H8432\"* appearance|strong=\"H4758\"* of|strong=\"H5869\"* the|strong=\"H8432\"* wheels and|strong=\"H5869\"* their|strong=\"H8432\"* work|strong=\"H4639\"* was|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* beryl|strong=\"H8658\"*. The|strong=\"H8432\"* four of|strong=\"H5869\"* them|strong=\"H8432\"* had|strong=\"H1961\"* one|strong=\"H1961\"* likeness|strong=\"H1823\"*. Their|strong=\"H8432\"* appearance|strong=\"H4758\"* and|strong=\"H5869\"* their|strong=\"H8432\"* work|strong=\"H4639\"* was|strong=\"H1961\"* as|strong=\"H1961\"* it|strong=\"H8432\"* were|strong=\"H1961\"* a|strong=\"H3068\"* wheel within|strong=\"H8432\"* a|strong=\"H3068\"* wheel." + }, + { + "verseNum": 17, + "text": "When|strong=\"H5921\"* they|strong=\"H3808\"* went|strong=\"H3212\"*, they|strong=\"H3808\"* went|strong=\"H3212\"* in|strong=\"H5921\"* their|strong=\"H5921\"* four directions|strong=\"H7253\"*. They|strong=\"H3808\"* didn’t turn|strong=\"H5437\"* when|strong=\"H5921\"* they|strong=\"H3808\"* went|strong=\"H3212\"*." + }, + { + "verseNum": 18, + "text": "As|strong=\"H5869\"* for|strong=\"H5869\"* their|strong=\"H1992\"* rims|strong=\"H1354\"*, they|strong=\"H1992\"* were|strong=\"H5869\"* high|strong=\"H1363\"* and|strong=\"H5869\"* dreadful|strong=\"H3374\"*; and|strong=\"H5869\"* the|strong=\"H5439\"* four of|strong=\"H5869\"* them|strong=\"H1992\"* had|strong=\"H5869\"* their|strong=\"H1992\"* rims|strong=\"H1354\"* full|strong=\"H4392\"* of|strong=\"H5869\"* eyes|strong=\"H5869\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H5375\"* the|strong=\"H5921\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"* went|strong=\"H3212\"*, the|strong=\"H5921\"* wheels went|strong=\"H3212\"* beside|strong=\"H5921\"* them|strong=\"H5921\"*. When|strong=\"H5375\"* the|strong=\"H5921\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"* were|strong=\"H5921\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* from|strong=\"H5921\"* the|strong=\"H5921\"* earth, the|strong=\"H5921\"* wheels were|strong=\"H5921\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"*." + }, + { + "verseNum": 20, + "text": "Wherever|strong=\"H8033\"* the|strong=\"H5921\"* spirit|strong=\"H7307\"* was|strong=\"H1961\"* to|strong=\"H3212\"* go|strong=\"H3212\"*, they|strong=\"H3588\"* went|strong=\"H3212\"*. The|strong=\"H5921\"* spirit|strong=\"H7307\"* was|strong=\"H1961\"* to|strong=\"H3212\"* go|strong=\"H3212\"* there|strong=\"H8033\"*. The|strong=\"H5921\"* wheels were|strong=\"H1961\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* beside|strong=\"H5921\"* them|strong=\"H5921\"*; for|strong=\"H3588\"* the|strong=\"H5921\"* spirit|strong=\"H7307\"* of|strong=\"H7307\"* the|strong=\"H5921\"* living|strong=\"H2416\"* creature|strong=\"H2416\"* was|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wheels." + }, + { + "verseNum": 21, + "text": "When|strong=\"H3588\"* those|strong=\"H5921\"* went|strong=\"H3212\"*, these went|strong=\"H3212\"*. When|strong=\"H3588\"* those|strong=\"H5921\"* stood|strong=\"H5975\"*, these stood|strong=\"H5975\"*. When|strong=\"H3588\"* those|strong=\"H5921\"* were|strong=\"H5921\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* from|strong=\"H5921\"* the|strong=\"H5921\"* earth, the|strong=\"H5921\"* wheels were|strong=\"H5921\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* beside|strong=\"H5921\"* them|strong=\"H5921\"*; for|strong=\"H3588\"* the|strong=\"H5921\"* spirit|strong=\"H7307\"* of|strong=\"H7307\"* the|strong=\"H5921\"* living|strong=\"H2416\"* creature|strong=\"H2416\"* was|strong=\"H7307\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wheels." + }, + { + "verseNum": 22, + "text": "Over|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* living|strong=\"H2416\"* creature|strong=\"H2416\"* there was|strong=\"H7218\"* the|strong=\"H5921\"* likeness|strong=\"H1823\"* of|strong=\"H7218\"* an|strong=\"H7218\"* expanse|strong=\"H7549\"*, like|strong=\"H1823\"* an|strong=\"H7218\"* awesome|strong=\"H3372\"* crystal|strong=\"H7140\"* to|strong=\"H5921\"* look|strong=\"H5869\"* at|strong=\"H5921\"*, stretched|strong=\"H5186\"* out|strong=\"H5186\"* over|strong=\"H5921\"* their|strong=\"H5921\"* heads|strong=\"H7218\"* above|strong=\"H4605\"*." + }, + { + "verseNum": 23, + "text": "Under|strong=\"H8478\"* the|strong=\"H8478\"* expanse|strong=\"H7549\"*, their|strong=\"H3680\"* wings|strong=\"H3671\"* were|strong=\"H8147\"* straight|strong=\"H3477\"*, one|strong=\"H3671\"* toward the|strong=\"H8478\"* other|strong=\"H8147\"*. Each|strong=\"H8147\"* one|strong=\"H3671\"* had|strong=\"H2007\"* two|strong=\"H8147\"* which|strong=\"H3477\"* covered|strong=\"H3680\"* on|strong=\"H8478\"* this side|strong=\"H8147\"*, and|strong=\"H8147\"* each|strong=\"H8147\"* one|strong=\"H3671\"* had|strong=\"H2007\"* two|strong=\"H8147\"* which|strong=\"H3477\"* covered|strong=\"H3680\"* their|strong=\"H3680\"* bodies|strong=\"H1472\"* on|strong=\"H8478\"* that|strong=\"H7549\"* side|strong=\"H8147\"*." + }, + { + "verseNum": 24, + "text": "When|strong=\"H8085\"* they|strong=\"H5975\"* went|strong=\"H3212\"*, I|strong=\"H8085\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* their|strong=\"H8085\"* wings|strong=\"H3671\"* like|strong=\"H7227\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* great|strong=\"H7227\"* waters|strong=\"H4325\"*, like|strong=\"H7227\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* Almighty|strong=\"H7706\"*, a|strong=\"H3068\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* tumult|strong=\"H1999\"* like|strong=\"H7227\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* an|strong=\"H8085\"* army|strong=\"H4264\"*. When|strong=\"H8085\"* they|strong=\"H5975\"* stood|strong=\"H5975\"*, they|strong=\"H5975\"* let|strong=\"H7503\"* down|strong=\"H7503\"* their|strong=\"H8085\"* wings|strong=\"H3671\"*." + }, + { + "verseNum": 25, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* voice|strong=\"H6963\"* above|strong=\"H5921\"* the|strong=\"H5921\"* expanse|strong=\"H7549\"* that|strong=\"H1961\"* was|strong=\"H1961\"* over|strong=\"H5921\"* their|strong=\"H5921\"* heads|strong=\"H7218\"*. When|strong=\"H1961\"* they|strong=\"H5921\"* stood|strong=\"H5975\"*, they|strong=\"H5921\"* let|strong=\"H7503\"* down|strong=\"H7503\"* their|strong=\"H5921\"* wings|strong=\"H3671\"*." + }, + { + "verseNum": 26, + "text": "Above|strong=\"H4605\"* the|strong=\"H5921\"* expanse|strong=\"H7549\"* that|strong=\"H7549\"* was|strong=\"H7218\"* over|strong=\"H5921\"* their|strong=\"H5921\"* heads|strong=\"H7218\"* was|strong=\"H7218\"* the|strong=\"H5921\"* likeness|strong=\"H1823\"* of|strong=\"H7218\"* a|strong=\"H3068\"* throne|strong=\"H3678\"*, as|strong=\"H1823\"* the|strong=\"H5921\"* appearance|strong=\"H4758\"* of|strong=\"H7218\"* a|strong=\"H3068\"* sapphire|strong=\"H5601\"*+ 1:26 or, lapis lazuli* stone|strong=\"H5601\"*. On|strong=\"H5921\"* the|strong=\"H5921\"* likeness|strong=\"H1823\"* of|strong=\"H7218\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* was|strong=\"H7218\"* a|strong=\"H3068\"* likeness|strong=\"H1823\"* as|strong=\"H1823\"* the|strong=\"H5921\"* appearance|strong=\"H4758\"* of|strong=\"H7218\"* a|strong=\"H3068\"* man|strong=\"H7218\"* on|strong=\"H5921\"* it|strong=\"H5921\"* above|strong=\"H4605\"*." + }, + { + "verseNum": 27, + "text": "I|strong=\"H7200\"* saw|strong=\"H7200\"* as|strong=\"H5869\"* it|strong=\"H7200\"* were|strong=\"H5869\"* glowing|strong=\"H2830\"* metal|strong=\"H2830\"*, as|strong=\"H5869\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H1004\"* fire within|strong=\"H1004\"* it|strong=\"H7200\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, from|strong=\"H5869\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H1004\"* his|strong=\"H7200\"* waist|strong=\"H4975\"* and|strong=\"H1004\"* upward|strong=\"H4605\"*; and|strong=\"H1004\"* from|strong=\"H5869\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H1004\"* his|strong=\"H7200\"* waist|strong=\"H4975\"* and|strong=\"H1004\"* downward|strong=\"H4295\"* I|strong=\"H7200\"* saw|strong=\"H7200\"* as|strong=\"H5869\"* it|strong=\"H7200\"* were|strong=\"H5869\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H1004\"* fire, and|strong=\"H1004\"* there|strong=\"H7200\"* was|strong=\"H1004\"* brightness|strong=\"H5051\"* around|strong=\"H5439\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 28, + "text": "As|strong=\"H3117\"* the|strong=\"H6440\"* appearance|strong=\"H4758\"* of|strong=\"H3068\"* the|strong=\"H6440\"* rainbow|strong=\"H7198\"* that|strong=\"H7200\"* is|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H6440\"* cloud|strong=\"H6051\"* in|strong=\"H5921\"* the|strong=\"H6440\"* day|strong=\"H3117\"* of|strong=\"H3068\"* rain|strong=\"H1653\"*, so|strong=\"H3651\"* was|strong=\"H3068\"* the|strong=\"H6440\"* appearance|strong=\"H4758\"* of|strong=\"H3068\"* the|strong=\"H6440\"* brightness|strong=\"H5051\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H5921\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5921\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, stand|strong=\"H5975\"* on|strong=\"H5921\"* your|strong=\"H5921\"* feet|strong=\"H7272\"*, and|strong=\"H1121\"* I|strong=\"H5921\"* will|strong=\"H1121\"* speak|strong=\"H1696\"* with|strong=\"H1696\"* you|strong=\"H5921\"*.”" + }, + { + "verseNum": 2, + "text": "The|strong=\"H5921\"* Spirit|strong=\"H7307\"* entered|strong=\"H5975\"* into|strong=\"H5921\"* me|strong=\"H5921\"* when|strong=\"H8085\"* he|strong=\"H5921\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5921\"*, and|strong=\"H8085\"* set|strong=\"H5975\"* me|strong=\"H5921\"* on|strong=\"H5921\"* my|strong=\"H8085\"* feet|strong=\"H7272\"*; and|strong=\"H8085\"* I|strong=\"H5921\"* heard|strong=\"H8085\"* him|strong=\"H5921\"* who|strong=\"H5975\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3117\"* said to|strong=\"H5704\"* me|strong=\"H7971\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, I|strong=\"H3117\"* send|strong=\"H7971\"* you|strong=\"H7971\"* to|strong=\"H5704\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H5704\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* of|strong=\"H1121\"* rebels|strong=\"H4775\"* who|strong=\"H1121\"* have|strong=\"H1121\"* rebelled|strong=\"H4775\"* against|strong=\"H4775\"* me|strong=\"H7971\"*. They|strong=\"H1992\"* and|strong=\"H1121\"* their|strong=\"H1992\"* fathers have|strong=\"H1121\"* transgressed|strong=\"H6586\"* against|strong=\"H4775\"* me|strong=\"H7971\"* even|strong=\"H5704\"* to|strong=\"H5704\"* this|strong=\"H2088\"* very|strong=\"H6106\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H6440\"* children|strong=\"H1121\"* are|strong=\"H1121\"* impudent|strong=\"H7186\"* and|strong=\"H1121\"* stiff-hearted. I|strong=\"H3541\"* am sending|strong=\"H7971\"* you|strong=\"H6440\"* to|strong=\"H7971\"* them|strong=\"H7971\"*, and|strong=\"H1121\"* you|strong=\"H6440\"* shall|strong=\"H1121\"* tell them|strong=\"H7971\"*, ‘This|strong=\"H3541\"* is|strong=\"H3820\"* what|strong=\"H3541\"* the|strong=\"H6440\"* Lord|strong=\"H3069\"*+ 2:4 The word translated “Lord” is “Adonai.”* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*.’" + }, + { + "verseNum": 5, + "text": "They|strong=\"H1992\"*, whether|strong=\"H3045\"* they|strong=\"H1992\"* will|strong=\"H1961\"* hear|strong=\"H8085\"*, or|strong=\"H8085\"* whether|strong=\"H3045\"* they|strong=\"H1992\"* will|strong=\"H1961\"* refuse|strong=\"H3588\"*—for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* a|strong=\"H3068\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*—yet|strong=\"H3588\"* they|strong=\"H1992\"* will|strong=\"H1961\"* know|strong=\"H3045\"* that|strong=\"H3588\"* there|strong=\"H1961\"* has|strong=\"H1961\"* been|strong=\"H1961\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* among|strong=\"H8432\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3588\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, don’t be|strong=\"H1697\"* afraid|strong=\"H3372\"* of|strong=\"H1121\"* them|strong=\"H1992\"*, neither be|strong=\"H1697\"* afraid|strong=\"H3372\"* of|strong=\"H1121\"* their|strong=\"H6440\"* words|strong=\"H1697\"*, though|strong=\"H3588\"* briers|strong=\"H5621\"* and|strong=\"H1121\"* thorns|strong=\"H5544\"* are|strong=\"H1992\"* with|strong=\"H1004\"* you|strong=\"H3588\"*, and|strong=\"H1121\"* you|strong=\"H3588\"* dwell|strong=\"H3427\"* among|strong=\"H3427\"* scorpions|strong=\"H6137\"*. Don’t be|strong=\"H1697\"* afraid|strong=\"H3372\"* of|strong=\"H1121\"* their|strong=\"H6440\"* words|strong=\"H1697\"*, nor|strong=\"H1121\"* be|strong=\"H1697\"* dismayed|strong=\"H2865\"* at|strong=\"H3427\"* their|strong=\"H6440\"* looks|strong=\"H6440\"*, though|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* a|strong=\"H3068\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H3588\"* shall|strong=\"H1697\"* speak|strong=\"H1696\"* my|strong=\"H8085\"* words|strong=\"H1697\"* to|strong=\"H1696\"* them|strong=\"H1992\"*, whether they|strong=\"H1992\"* will|strong=\"H1697\"* hear|strong=\"H8085\"* or|strong=\"H8085\"* whether they|strong=\"H1992\"* will|strong=\"H1697\"* refuse|strong=\"H3588\"*; for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* most rebellious|strong=\"H4805\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H1961\"* you|strong=\"H5414\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, hear|strong=\"H8085\"* what|strong=\"H6310\"* I|strong=\"H5414\"* tell|strong=\"H1696\"* you|strong=\"H5414\"*. Don’t be|strong=\"H1961\"* rebellious|strong=\"H4805\"* like|strong=\"H1961\"* that|strong=\"H8085\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*. Open|strong=\"H6475\"* your|strong=\"H5414\"* mouth|strong=\"H6310\"*, and|strong=\"H1121\"* eat|strong=\"H6310\"* that|strong=\"H8085\"* which|strong=\"H1004\"* I|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 9, + "text": "When|strong=\"H7200\"* I|strong=\"H2009\"* looked|strong=\"H7200\"*, behold|strong=\"H2009\"*, a|strong=\"H3068\"* hand|strong=\"H3027\"* was|strong=\"H3027\"* stretched|strong=\"H7971\"* out|strong=\"H7971\"* to|strong=\"H7971\"* me|strong=\"H7971\"*; and|strong=\"H7971\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* scroll|strong=\"H5612\"* of|strong=\"H3027\"* a|strong=\"H3068\"* book|strong=\"H5612\"* was|strong=\"H3027\"* in|strong=\"H3027\"* it|strong=\"H7200\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H1931\"* spread|strong=\"H6566\"* it|strong=\"H1931\"* before|strong=\"H6440\"* me|strong=\"H6440\"*. It|strong=\"H1931\"* was|strong=\"H1931\"* written|strong=\"H3789\"* within|strong=\"H6440\"* and|strong=\"H6440\"* without|strong=\"H6440\"*; and|strong=\"H6440\"* lamentations|strong=\"H7015\"*, mourning|strong=\"H1899\"*, and|strong=\"H6440\"* woe|strong=\"H1958\"* were|strong=\"H6440\"* written|strong=\"H3789\"* in|strong=\"H3789\"* it|strong=\"H1931\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H1004\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, eat what|strong=\"H2063\"* you|strong=\"H4672\"* find|strong=\"H4672\"*. Eat this|strong=\"H2063\"* scroll|strong=\"H4039\"*, and|strong=\"H1121\"* go|strong=\"H3212\"*, speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1696\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 2, + "text": "So|strong=\"H2063\"* I opened|strong=\"H6605\"* my|strong=\"H6605\"* mouth|strong=\"H6310\"*, and|strong=\"H6310\"* he|strong=\"H6310\"* caused me to|strong=\"H6310\"* eat|strong=\"H6310\"* the|strong=\"H6605\"* scroll|strong=\"H4039\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H5414\"* said|strong=\"H6310\"* to|strong=\"H1961\"* me|strong=\"H5414\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, eat|strong=\"H6310\"* this|strong=\"H2063\"* scroll|strong=\"H4039\"* that|strong=\"H5414\"* I|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* and|strong=\"H1121\"* fill|strong=\"H4390\"* your|strong=\"H5414\"* belly|strong=\"H4578\"* and|strong=\"H1121\"* your|strong=\"H5414\"* bowels|strong=\"H4578\"* with|strong=\"H4390\"* it|strong=\"H5414\"*.”" + }, + { + "verseNum": 4, + "text": "He|strong=\"H1004\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, go|strong=\"H3212\"* to|strong=\"H1696\"* the|strong=\"H1697\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* speak|strong=\"H1696\"* my|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* them|strong=\"H1121\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* not|strong=\"H3808\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* a|strong=\"H3068\"* people|strong=\"H5971\"* of|strong=\"H1004\"* a|strong=\"H3068\"* strange|strong=\"H6012\"* speech|strong=\"H8193\"* and|strong=\"H3478\"* of|strong=\"H1004\"* a|strong=\"H3068\"* hard|strong=\"H3515\"* language|strong=\"H3956\"*, but|strong=\"H3588\"* to|strong=\"H3478\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*—" + }, + { + "verseNum": 6, + "text": "not|strong=\"H3808\"* to|strong=\"H7971\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"* of|strong=\"H1697\"* a|strong=\"H3068\"* strange|strong=\"H6012\"* speech|strong=\"H8193\"* and|strong=\"H7971\"* of|strong=\"H1697\"* a|strong=\"H3068\"* hard|strong=\"H3515\"* language|strong=\"H3956\"*, whose words|strong=\"H1697\"* you|strong=\"H7971\"* can|strong=\"H3808\"*’t understand|strong=\"H8085\"*. Surely|strong=\"H8085\"*, if I|strong=\"H1697\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* to|strong=\"H7971\"* them|strong=\"H1992\"*, they|strong=\"H1992\"* would|strong=\"H5971\"* listen|strong=\"H8085\"* to|strong=\"H7971\"* you|strong=\"H7971\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"H3588\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* will|strong=\"H3478\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* will|strong=\"H3478\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* me|strong=\"H3808\"*; for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* are|strong=\"H1992\"* obstinate|strong=\"H7186\"*+ 3:7 Literally, have a hard forehead* and|strong=\"H3478\"* hard-hearted." + }, + { + "verseNum": 8, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H5414\"* have|strong=\"H5414\"* made|strong=\"H5414\"* your|strong=\"H5414\"* face|strong=\"H6440\"* hard|strong=\"H2389\"* against|strong=\"H6440\"* their|strong=\"H5414\"* faces|strong=\"H6440\"*, and|strong=\"H6440\"* your|strong=\"H5414\"* forehead|strong=\"H4696\"* hard|strong=\"H2389\"* against|strong=\"H6440\"* their|strong=\"H5414\"* foreheads|strong=\"H4696\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H3588\"* have|strong=\"H5414\"* made|strong=\"H5414\"* your|strong=\"H5414\"* forehead|strong=\"H4696\"* as|strong=\"H3588\"* a|strong=\"H3068\"* diamond|strong=\"H8068\"*, harder|strong=\"H2389\"* than|strong=\"H3808\"* flint|strong=\"H6864\"*. Don’t be|strong=\"H3808\"* afraid|strong=\"H3372\"* of|strong=\"H1004\"* them|strong=\"H5414\"*, neither|strong=\"H3808\"* be|strong=\"H3808\"* dismayed|strong=\"H2865\"* at|strong=\"H1004\"* their|strong=\"H5414\"* looks|strong=\"H6440\"*, though|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* a|strong=\"H3068\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*.”" + }, + { + "verseNum": 10, + "text": "Moreover|strong=\"H1696\"* he|strong=\"H3605\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H3947\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, receive|strong=\"H3947\"* in|strong=\"H8085\"* your|strong=\"H3605\"* heart|strong=\"H3824\"* and|strong=\"H1121\"* hear|strong=\"H8085\"* with|strong=\"H1696\"* your|strong=\"H3605\"* ears all|strong=\"H3605\"* my|strong=\"H8085\"* words|strong=\"H1697\"* that|strong=\"H3605\"* I|strong=\"H1697\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 11, + "text": "Go|strong=\"H3212\"* to|strong=\"H1696\"* them|strong=\"H8085\"* of|strong=\"H1121\"* the|strong=\"H8085\"* captivity|strong=\"H1473\"*, to|strong=\"H1696\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H8085\"* people|strong=\"H5971\"*, and|strong=\"H1121\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H8085\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H8085\"*, ‘This|strong=\"H3541\"* is|strong=\"H1121\"* what|strong=\"H3541\"* the|strong=\"H8085\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*,’ whether they|strong=\"H5971\"* will|strong=\"H5971\"* hear|strong=\"H8085\"*, or|strong=\"H8085\"* whether they|strong=\"H5971\"* will|strong=\"H5971\"* refuse|strong=\"H2308\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H5375\"* the|strong=\"H8085\"* Spirit|strong=\"H7307\"* lifted|strong=\"H5375\"* me|strong=\"H6963\"* up|strong=\"H5375\"*, and|strong=\"H3068\"* I|strong=\"H8085\"* heard|strong=\"H8085\"* behind me|strong=\"H6963\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* rushing|strong=\"H7494\"*, saying|strong=\"H6963\"*, “Blessed|strong=\"H1288\"* be|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* from|strong=\"H8085\"* his|strong=\"H5375\"* place|strong=\"H4725\"*.”" + }, + { + "verseNum": 13, + "text": "I|strong=\"H6963\"* heard|strong=\"H6963\"* the|strong=\"H5980\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H5980\"* wings|strong=\"H3671\"* of|strong=\"H6963\"* the|strong=\"H5980\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"* as|strong=\"H5980\"* they touched|strong=\"H5401\"* one|strong=\"H2416\"* another|strong=\"H3671\"*, and|strong=\"H1419\"* the|strong=\"H5980\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H5980\"* wheels beside|strong=\"H5980\"* them, even the|strong=\"H5980\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* a|strong=\"H3068\"* great|strong=\"H1419\"* rushing|strong=\"H7494\"*." + }, + { + "verseNum": 14, + "text": "So|strong=\"H3947\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"* lifted|strong=\"H5375\"* me|strong=\"H5921\"* up|strong=\"H5375\"*, and|strong=\"H3068\"* took|strong=\"H3947\"* me|strong=\"H5921\"* away|strong=\"H3947\"*; and|strong=\"H3068\"* I|strong=\"H5921\"* went|strong=\"H3212\"* in|strong=\"H5921\"* bitterness|strong=\"H4751\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* heat|strong=\"H2534\"* of|strong=\"H3068\"* my|strong=\"H3068\"* spirit|strong=\"H7307\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* strong|strong=\"H2388\"* on|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H3117\"* I|strong=\"H3117\"* came to|strong=\"H3117\"* them|strong=\"H1992\"* of|strong=\"H3117\"* the|strong=\"H8432\"* captivity|strong=\"H1473\"* at|strong=\"H3427\"* Tel Aviv who|strong=\"H3427\"* lived|strong=\"H3427\"* by|strong=\"H3117\"* the|strong=\"H8432\"* river|strong=\"H5104\"* Chebar|strong=\"H3529\"*, and|strong=\"H3117\"* to|strong=\"H3117\"* where|strong=\"H8033\"* they|strong=\"H1992\"* lived|strong=\"H3427\"*; and|strong=\"H3117\"* I|strong=\"H3117\"* sat|strong=\"H3427\"* there|strong=\"H8033\"* overwhelmed among|strong=\"H8432\"* them|strong=\"H1992\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 16, + "text": "At|strong=\"H3068\"* the|strong=\"H3068\"* end|strong=\"H7097\"* of|strong=\"H3068\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 17, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, I|strong=\"H5414\"* have|strong=\"H1121\"* made|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* watchman|strong=\"H6822\"* to|strong=\"H3478\"* the|strong=\"H8085\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Therefore hear|strong=\"H8085\"* the|strong=\"H8085\"* word|strong=\"H1697\"* from|strong=\"H4480\"* my|strong=\"H8085\"* mouth|strong=\"H6310\"*, and|strong=\"H1121\"* warn|strong=\"H2094\"* them|strong=\"H5414\"* from|strong=\"H4480\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H2421\"* I|strong=\"H3808\"* tell|strong=\"H1696\"* the|strong=\"H1870\"* wicked|strong=\"H7563\"*, ‘You|strong=\"H3808\"* will|strong=\"H7563\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*;’ and|strong=\"H3027\"* you|strong=\"H3808\"* give|strong=\"H1696\"* him|strong=\"H3027\"* no|strong=\"H3808\"* warning|strong=\"H2094\"*, nor|strong=\"H3808\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* warn|strong=\"H2094\"* the|strong=\"H1870\"* wicked|strong=\"H7563\"* from|strong=\"H3027\"* his|strong=\"H3027\"* wicked|strong=\"H7563\"* way|strong=\"H1870\"*, to|strong=\"H1696\"* save|strong=\"H2421\"* his|strong=\"H3027\"* life|strong=\"H2421\"*, that|strong=\"H1931\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* will|strong=\"H7563\"* die|strong=\"H4191\"* in|strong=\"H4191\"* his|strong=\"H3027\"* iniquity|strong=\"H5771\"*; but|strong=\"H3808\"* I|strong=\"H3808\"* will|strong=\"H7563\"* require|strong=\"H1245\"* his|strong=\"H3027\"* blood|strong=\"H1818\"* at|strong=\"H4191\"* your|strong=\"H1245\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 19, + "text": "Yet|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* warn|strong=\"H2094\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"*, and|strong=\"H7725\"* he|strong=\"H1931\"* doesn’t turn|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* wickedness|strong=\"H7562\"*, nor|strong=\"H3808\"* from|strong=\"H7725\"* his|strong=\"H7725\"* wicked|strong=\"H7563\"* way|strong=\"H1870\"*, he|strong=\"H1931\"* will|strong=\"H5315\"* die|strong=\"H4191\"* in|strong=\"H4191\"* his|strong=\"H7725\"* iniquity|strong=\"H5771\"*; but|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H7563\"* delivered|strong=\"H5337\"* your|strong=\"H7725\"* soul|strong=\"H5315\"*.”" + }, + { + "verseNum": 20, + "text": "“Again|strong=\"H7725\"*, when|strong=\"H3588\"* a|strong=\"H3068\"* righteous|strong=\"H6662\"* man|strong=\"H6662\"* turns|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H5414\"* righteousness|strong=\"H6666\"* and|strong=\"H7725\"* commits|strong=\"H6213\"* iniquity|strong=\"H5766\"*, and|strong=\"H7725\"* I|strong=\"H3588\"* lay|strong=\"H5414\"* a|strong=\"H3068\"* stumbling|strong=\"H4383\"* block|strong=\"H4383\"* before|strong=\"H6440\"* him|strong=\"H5414\"*, he|strong=\"H1931\"* will|strong=\"H6662\"* die|strong=\"H4191\"*. Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3027\"* not|strong=\"H3808\"* given|strong=\"H5414\"* him|strong=\"H5414\"* warning|strong=\"H2094\"*, he|strong=\"H1931\"* will|strong=\"H6662\"* die|strong=\"H4191\"* in|strong=\"H6213\"* his|strong=\"H5414\"* sin|strong=\"H2403\"*, and|strong=\"H7725\"* his|strong=\"H5414\"* righteous|strong=\"H6662\"* deeds|strong=\"H6666\"* which|strong=\"H1931\"* he|strong=\"H1931\"* has|strong=\"H3588\"* done|strong=\"H6213\"* will|strong=\"H6662\"* not|strong=\"H3808\"* be|strong=\"H4191\"* remembered|strong=\"H2142\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H6662\"* require|strong=\"H1245\"* his|strong=\"H5414\"* blood|strong=\"H1818\"* at|strong=\"H4191\"* your|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 21, + "text": "Nevertheless|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* warn|strong=\"H2094\"* the|strong=\"H3588\"* righteous|strong=\"H6662\"* man|strong=\"H6662\"*, that|strong=\"H3588\"* the|strong=\"H3588\"* righteous|strong=\"H6662\"* not|strong=\"H3808\"* sin|strong=\"H2398\"*, and|strong=\"H5315\"* he|strong=\"H1931\"* does|strong=\"H3808\"* not|strong=\"H3808\"* sin|strong=\"H2398\"*, he|strong=\"H1931\"* will|strong=\"H6662\"* surely|strong=\"H3588\"* live|strong=\"H2421\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* took|strong=\"H2094\"* warning|strong=\"H2094\"*; and|strong=\"H5315\"* you|strong=\"H3588\"* have|strong=\"H3588\"* delivered|strong=\"H5337\"* your|strong=\"H3588\"* soul|strong=\"H5315\"*.”" + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* there|strong=\"H8033\"* on|strong=\"H5921\"* me|strong=\"H5921\"*; and|strong=\"H6965\"* he|strong=\"H8033\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5921\"*, “Arise|strong=\"H6965\"*, go|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H5921\"* the|strong=\"H5921\"* plain|strong=\"H1237\"*, and|strong=\"H6965\"* I|strong=\"H5921\"* will|strong=\"H3068\"* talk|strong=\"H1696\"* with|strong=\"H3068\"* you|strong=\"H5921\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 23, + "text": "Then|strong=\"H6965\"* I|strong=\"H2009\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H5307\"* the|strong=\"H6440\"* plain|strong=\"H1237\"*, and|strong=\"H6965\"* behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* stood|strong=\"H5975\"* there|strong=\"H8033\"*, like|strong=\"H3318\"* the|strong=\"H6440\"* glory|strong=\"H3519\"* which|strong=\"H3068\"* I|strong=\"H2009\"* saw|strong=\"H7200\"* by|strong=\"H5921\"* the|strong=\"H6440\"* river|strong=\"H5104\"* Chebar|strong=\"H3529\"*. Then|strong=\"H6965\"* I|strong=\"H2009\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* my|strong=\"H3068\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 24, + "text": "Then|strong=\"H1696\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"* entered|strong=\"H5975\"* into|strong=\"H8432\"* me|strong=\"H5921\"* and|strong=\"H1004\"* set|strong=\"H5975\"* me|strong=\"H5921\"* on|strong=\"H5921\"* my|strong=\"H5921\"* feet|strong=\"H7272\"*. He|strong=\"H1004\"* spoke|strong=\"H1696\"* with|strong=\"H1004\"* me|strong=\"H5921\"*, and|strong=\"H1004\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5921\"*, “Go|strong=\"H7272\"*, shut|strong=\"H5462\"* yourself|strong=\"H7272\"* inside|strong=\"H8432\"* your|strong=\"H5921\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"H3808\"* you|strong=\"H5414\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, behold|strong=\"H2009\"*, they|strong=\"H3808\"* will|strong=\"H1121\"* put|strong=\"H5414\"* ropes|strong=\"H5688\"* on|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H1121\"* will|strong=\"H1121\"* bind you|strong=\"H5414\"* with|strong=\"H5921\"* them|strong=\"H5414\"*, and|strong=\"H1121\"* you|strong=\"H5414\"* will|strong=\"H1121\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"* among|strong=\"H8432\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H3588\"* will|strong=\"H1961\"* make|strong=\"H3198\"* your|strong=\"H3588\"* tongue|strong=\"H3956\"* stick|strong=\"H1692\"* to|strong=\"H1961\"* the|strong=\"H3588\"* roof|strong=\"H2441\"* of|strong=\"H1004\"* your|strong=\"H3588\"* mouth|strong=\"H2441\"* so|strong=\"H1961\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* mute and|strong=\"H1004\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* able to|strong=\"H1961\"* correct|strong=\"H3198\"* them|strong=\"H1992\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* a|strong=\"H3068\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"H3588\"* when|strong=\"H3588\"* I|strong=\"H3588\"* speak|strong=\"H1696\"* with|strong=\"H1004\"* you|strong=\"H3588\"*, I|strong=\"H3588\"* will|strong=\"H1004\"* open|strong=\"H6605\"* your|strong=\"H8085\"* mouth|strong=\"H6310\"*, and|strong=\"H1004\"* you|strong=\"H3588\"* shall|strong=\"H1004\"* tell|strong=\"H1696\"* them|strong=\"H1992\"*, ‘This|strong=\"H3541\"* is|strong=\"H6310\"* what|strong=\"H3541\"* the|strong=\"H8085\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*.’ He|strong=\"H3588\"* who|strong=\"H1992\"* hears|strong=\"H8085\"*, let|strong=\"H2308\"* him|strong=\"H8085\"* hear|strong=\"H8085\"*; and|strong=\"H1004\"* he|strong=\"H3588\"* who|strong=\"H1992\"* refuses|strong=\"H2310\"*, let|strong=\"H2308\"* him|strong=\"H8085\"* refuse|strong=\"H3588\"*; for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* a|strong=\"H3068\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*.”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "“You|strong=\"H5414\"* also|strong=\"H1121\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, take|strong=\"H3947\"* a|strong=\"H3068\"* tile|strong=\"H3843\"*, and|strong=\"H1121\"* lay|strong=\"H5414\"* it|strong=\"H5414\"* before|strong=\"H6440\"* yourself|strong=\"H5921\"*, and|strong=\"H1121\"* portray on|strong=\"H5921\"* it|strong=\"H5414\"* a|strong=\"H3068\"* city|strong=\"H5892\"*, even|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "Lay|strong=\"H5414\"* siege|strong=\"H4692\"* against|strong=\"H5921\"* it|strong=\"H5414\"*, build|strong=\"H1129\"* forts|strong=\"H1785\"* against|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H4264\"* cast|strong=\"H8210\"* up|strong=\"H5414\"* a|strong=\"H3068\"* mound against|strong=\"H5921\"* it|strong=\"H5414\"*. Also set|strong=\"H7760\"* camps|strong=\"H4264\"* against|strong=\"H5921\"* it|strong=\"H5414\"* and|strong=\"H4264\"* plant|strong=\"H7760\"* battering|strong=\"H3733\"* rams|strong=\"H3733\"* against|strong=\"H5921\"* it|strong=\"H5414\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 3, + "text": "Take|strong=\"H3947\"* for|strong=\"H5921\"* yourself|strong=\"H5921\"* an|strong=\"H1961\"* iron|strong=\"H1270\"* pan|strong=\"H4227\"* and|strong=\"H3478\"* set|strong=\"H5414\"* it|strong=\"H5414\"* for|strong=\"H5921\"* a|strong=\"H3068\"* wall|strong=\"H7023\"* of|strong=\"H1004\"* iron|strong=\"H1270\"* between|strong=\"H5921\"* you|strong=\"H5414\"* and|strong=\"H3478\"* the|strong=\"H6440\"* city|strong=\"H5892\"*. Then|strong=\"H1961\"* set|strong=\"H5414\"* your|strong=\"H5414\"* face|strong=\"H6440\"* toward|strong=\"H5921\"* it|strong=\"H5414\"*. It|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* besieged|strong=\"H6696\"*, and|strong=\"H3478\"* you|strong=\"H5414\"* shall|strong=\"H3478\"* lay|strong=\"H5414\"* siege|strong=\"H4692\"* against|strong=\"H5921\"* it|strong=\"H5414\"*. This|strong=\"H1931\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* a|strong=\"H3068\"* sign to|strong=\"H3478\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "“Moreover lie|strong=\"H7901\"* on|strong=\"H5921\"* your|strong=\"H5921\"* left|strong=\"H8042\"* side|strong=\"H6654\"*, and|strong=\"H3478\"* lay|strong=\"H7901\"* the|strong=\"H5921\"* iniquity|strong=\"H5771\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* on|strong=\"H5921\"* it|strong=\"H7760\"*. According|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H5921\"* number|strong=\"H4557\"* of|strong=\"H1004\"* the|strong=\"H5921\"* days|strong=\"H3117\"* that|strong=\"H3117\"* you|strong=\"H5921\"* shall|strong=\"H3478\"* lie|strong=\"H7901\"* on|strong=\"H5921\"* it|strong=\"H7760\"*, you|strong=\"H5921\"* shall|strong=\"H3478\"* bear|strong=\"H5375\"* their|strong=\"H5375\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H1004\"* I|strong=\"H3117\"* have|strong=\"H3478\"* appointed|strong=\"H5414\"* the|strong=\"H5414\"* years|strong=\"H8141\"* of|strong=\"H1004\"* their|strong=\"H5375\"* iniquity|strong=\"H5771\"* to|strong=\"H3478\"* be|strong=\"H3478\"* to|strong=\"H3478\"* you|strong=\"H5414\"* a|strong=\"H3068\"* number|strong=\"H4557\"* of|strong=\"H1004\"* days|strong=\"H3117\"*, even three|strong=\"H7969\"* hundred|strong=\"H3967\"* ninety|strong=\"H8673\"* days|strong=\"H3117\"*. So|strong=\"H5414\"* you|strong=\"H5414\"* shall|strong=\"H3478\"* bear|strong=\"H5375\"* the|strong=\"H5414\"* iniquity|strong=\"H5771\"* of|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 6, + "text": "“Again|strong=\"H8145\"*, when|strong=\"H3117\"* you|strong=\"H5414\"* have|strong=\"H3063\"* accomplished|strong=\"H3615\"* these|strong=\"H1004\"*, you|strong=\"H5414\"* shall|strong=\"H1004\"* lie|strong=\"H7901\"* on|strong=\"H5921\"* your|strong=\"H5414\"* right side|strong=\"H6654\"*, and|strong=\"H3063\"* shall|strong=\"H1004\"* bear|strong=\"H5375\"* the|strong=\"H5921\"* iniquity|strong=\"H5771\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*. I|strong=\"H3117\"* have|strong=\"H3063\"* appointed|strong=\"H5414\"* forty days|strong=\"H3117\"*, each|strong=\"H3117\"* day|strong=\"H3117\"* for|strong=\"H5921\"* a|strong=\"H3068\"* year|strong=\"H8141\"*, to|strong=\"H5921\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H6440\"* shall|strong=\"H6440\"* set|strong=\"H3559\"* your|strong=\"H5921\"* face|strong=\"H6440\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* siege|strong=\"H4692\"* of|strong=\"H6440\"* Jerusalem|strong=\"H3389\"*, with|strong=\"H5921\"* your|strong=\"H5921\"* arm|strong=\"H2220\"* uncovered|strong=\"H2834\"*; and|strong=\"H3389\"* you|strong=\"H6440\"* shall|strong=\"H6440\"* prophesy|strong=\"H5012\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H3117\"* put|strong=\"H5414\"* ropes|strong=\"H5688\"* on|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H3117\"* you|strong=\"H5414\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* turn|strong=\"H2015\"* yourself|strong=\"H5921\"* from|strong=\"H5921\"* one|strong=\"H3808\"* side|strong=\"H6654\"* to|strong=\"H5704\"* the|strong=\"H5921\"* other|strong=\"H6654\"*, until|strong=\"H5704\"* you|strong=\"H5414\"* have|strong=\"H3117\"* accomplished|strong=\"H3615\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H5414\"* siege|strong=\"H4692\"*." + }, + { + "verseNum": 9, + "text": "“Take|strong=\"H3947\"* for|strong=\"H5921\"* yourself|strong=\"H6213\"* also|strong=\"H6213\"* wheat|strong=\"H2406\"*, barley|strong=\"H8184\"*, beans|strong=\"H6321\"*, lentils|strong=\"H5742\"*, millet|strong=\"H1764\"*, and|strong=\"H3967\"* spelt|strong=\"H3698\"*, and|strong=\"H3967\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H5921\"* one|strong=\"H6213\"* vessel|strong=\"H3627\"*. Make|strong=\"H6213\"* bread|strong=\"H3899\"* of|strong=\"H3117\"* it|strong=\"H5414\"*. According|strong=\"H5921\"* to|strong=\"H6213\"* the|strong=\"H5921\"* number|strong=\"H4557\"* of|strong=\"H3117\"* the|strong=\"H5921\"* days|strong=\"H3117\"* that|strong=\"H3117\"* you|strong=\"H5414\"* will|strong=\"H5414\"* lie|strong=\"H7901\"* on|strong=\"H5921\"* your|strong=\"H5414\"* side|strong=\"H6654\"*, even|strong=\"H6213\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* ninety|strong=\"H8673\"* days|strong=\"H3117\"*, you|strong=\"H5414\"* shall|strong=\"H3117\"* eat|strong=\"H3899\"* of|strong=\"H3117\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 10, + "text": "Your|strong=\"H5704\"* food|strong=\"H3978\"* which|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* eat|strong=\"H3978\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* by|strong=\"H3117\"* weight|strong=\"H4946\"*, twenty|strong=\"H6242\"* shekels|strong=\"H8255\"*+ 4:10 A shekel is about 10 grams or about 0.35 ounces.* a|strong=\"H3068\"* day|strong=\"H3117\"*. From|strong=\"H3117\"* time|strong=\"H6256\"* to|strong=\"H5704\"* time|strong=\"H6256\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* eat|strong=\"H3978\"* it|strong=\"H5704\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H5704\"* shall|strong=\"H4325\"* drink|strong=\"H8354\"* water|strong=\"H4325\"* by|strong=\"H5704\"* measure|strong=\"H4884\"*, the|strong=\"H5704\"* sixth|strong=\"H8345\"* part|strong=\"H8345\"* of|strong=\"H4325\"* a|strong=\"H3068\"* hin|strong=\"H1969\"*.+ 4:11 A hin is about 6.5 liters or 1.7 gallons.* From|strong=\"H5704\"* time|strong=\"H6256\"* to|strong=\"H5704\"* time|strong=\"H6256\"* you|strong=\"H5704\"* shall|strong=\"H4325\"* drink|strong=\"H8354\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H5869\"* shall|strong=\"H5869\"* eat it|strong=\"H1931\"* as|strong=\"H5869\"* barley|strong=\"H8184\"* cakes|strong=\"H5692\"*, and|strong=\"H5869\"* you|strong=\"H5869\"* shall|strong=\"H5869\"* bake|strong=\"H5746\"* it|strong=\"H1931\"* in|strong=\"H5869\"* their sight|strong=\"H5869\"* with|strong=\"H5869\"* dung|strong=\"H1561\"* that|strong=\"H1931\"* comes out|strong=\"H6627\"* of|strong=\"H5869\"* man.”" + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* said, “Even|strong=\"H3068\"* thus|strong=\"H3602\"* will|strong=\"H3068\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* eat|strong=\"H3899\"* their|strong=\"H3068\"* bread|strong=\"H3899\"* unclean|strong=\"H2931\"*, among|strong=\"H2931\"* the|strong=\"H3068\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* I|strong=\"H1121\"* will|strong=\"H3068\"* drive|strong=\"H5080\"* them|strong=\"H1121\"*.”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H2009\"* I|strong=\"H5704\"* said|strong=\"H6310\"*, “Ah Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*! Behold|strong=\"H2009\"*, my|strong=\"H2930\"* soul|strong=\"H5315\"* has|strong=\"H2009\"* not|strong=\"H3808\"* been|strong=\"H2930\"* polluted|strong=\"H2930\"*; for|strong=\"H5704\"* from|strong=\"H5315\"* my|strong=\"H2930\"* youth|strong=\"H5271\"* up|strong=\"H5704\"* even|strong=\"H5704\"* until|strong=\"H5704\"* now|strong=\"H6258\"* I|strong=\"H5704\"* have|strong=\"H6258\"* not|strong=\"H3808\"* eaten of|strong=\"H6310\"* that|strong=\"H5315\"* which|strong=\"H5038\"* dies|strong=\"H5038\"* of|strong=\"H6310\"* itself|strong=\"H5038\"*, or|strong=\"H3808\"* is|strong=\"H5315\"* torn|strong=\"H2966\"* of|strong=\"H6310\"* animals. No|strong=\"H3808\"* abominable|strong=\"H6292\"* meat|strong=\"H1320\"* has|strong=\"H2009\"* come into|strong=\"H5704\"* my|strong=\"H2930\"* mouth|strong=\"H6310\"*!”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H5414\"* he|strong=\"H6213\"* said to|strong=\"H6213\"* me|strong=\"H5414\"*, “Behold|strong=\"H7200\"*, I|strong=\"H5414\"* have|strong=\"H7200\"* given|strong=\"H5414\"* you|strong=\"H5414\"* cow’s dung|strong=\"H1561\"* for|strong=\"H5921\"* man|strong=\"H7200\"*’s dung|strong=\"H1561\"*, and|strong=\"H3899\"* you|strong=\"H5414\"* shall|strong=\"H6213\"* prepare|strong=\"H6213\"* your|strong=\"H5414\"* bread|strong=\"H3899\"* on|strong=\"H5921\"* it|strong=\"H5414\"*.”" + }, + { + "verseNum": 16, + "text": "Moreover he|strong=\"H3389\"* said to|strong=\"H3389\"* me|strong=\"H3389\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H1121\"* break|strong=\"H7665\"* the|strong=\"H7665\"* staff|strong=\"H4294\"* of|strong=\"H1121\"* bread|strong=\"H3899\"* in|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*. They|strong=\"H3389\"* will|strong=\"H1121\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* by|strong=\"H4325\"* weight|strong=\"H4948\"*, and|strong=\"H1121\"* with|strong=\"H3389\"* fearfulness. They|strong=\"H3389\"* will|strong=\"H1121\"* drink|strong=\"H8354\"* water|strong=\"H4325\"* by|strong=\"H4325\"* measure|strong=\"H4884\"*, and|strong=\"H1121\"* in|strong=\"H1121\"* dismay;" + }, + { + "verseNum": 17, + "text": "that|strong=\"H4616\"* they may|strong=\"H4325\"* lack|strong=\"H2637\"* bread|strong=\"H3899\"* and|strong=\"H3899\"* water|strong=\"H4325\"*, be|strong=\"H4325\"* dismayed one|strong=\"H8074\"* with|strong=\"H3899\"* another, and|strong=\"H3899\"* pine away|strong=\"H4743\"* in|strong=\"H3899\"* their|strong=\"H8074\"* iniquity|strong=\"H5771\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "“You|strong=\"H5921\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, take|strong=\"H3947\"* a|strong=\"H3068\"* sharp|strong=\"H2299\"* sword|strong=\"H2719\"*. You|strong=\"H5921\"* shall|strong=\"H1121\"* take|strong=\"H3947\"* it|strong=\"H5921\"* as|strong=\"H1121\"* a|strong=\"H3068\"* barber’s razor|strong=\"H8593\"* to|strong=\"H5921\"* yourself|strong=\"H5921\"*, and|strong=\"H1121\"* shall|strong=\"H1121\"* cause it|strong=\"H5921\"* to|strong=\"H5921\"* pass|strong=\"H5674\"* over|strong=\"H5921\"* your|strong=\"H3947\"* head|strong=\"H7218\"* and|strong=\"H1121\"* over|strong=\"H5921\"* your|strong=\"H3947\"* beard|strong=\"H2206\"*. Then|strong=\"H3947\"* take|strong=\"H3947\"* balances|strong=\"H3976\"* to|strong=\"H5921\"* weigh|strong=\"H4948\"* and|strong=\"H1121\"* divide|strong=\"H2505\"* the|strong=\"H5921\"* hair|strong=\"H7218\"*." + }, + { + "verseNum": 2, + "text": "A|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* burn|strong=\"H1197\"* in|strong=\"H3117\"* the|strong=\"H3947\"* fire in|strong=\"H3117\"* the|strong=\"H3947\"* middle|strong=\"H8432\"* of|strong=\"H3117\"* the|strong=\"H3947\"* city|strong=\"H5892\"*, when|strong=\"H3117\"* the|strong=\"H3947\"* days|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3947\"* siege|strong=\"H4692\"* are|strong=\"H3117\"* fulfilled|strong=\"H4390\"*. You|strong=\"H3117\"* shall|strong=\"H3117\"* take|strong=\"H3947\"* a|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"*, and|strong=\"H3117\"* strike|strong=\"H5221\"* with|strong=\"H4390\"* the|strong=\"H3947\"* sword|strong=\"H2719\"* around|strong=\"H5439\"* it|strong=\"H8432\"*. A|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* scatter|strong=\"H2219\"* to|strong=\"H3117\"* the|strong=\"H3947\"* wind|strong=\"H7307\"*, and|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H2719\"* draw|strong=\"H7324\"* out|strong=\"H7324\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* after|strong=\"H3117\"* them|strong=\"H5221\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3947\"* shall|strong=\"H3671\"* take|strong=\"H3947\"* a|strong=\"H3068\"* small|strong=\"H4592\"* number|strong=\"H4557\"* of|strong=\"H4557\"* these|strong=\"H3947\"* and|strong=\"H8033\"* bind|strong=\"H6696\"* them|strong=\"H3947\"* in|strong=\"H8033\"* the|strong=\"H3947\"* folds of|strong=\"H4557\"* your|strong=\"H3947\"* robe." + }, + { + "verseNum": 4, + "text": "Of|strong=\"H1004\"* these|strong=\"H1992\"* again|strong=\"H5750\"* you|strong=\"H3605\"* shall|strong=\"H3478\"* take|strong=\"H3947\"*, and|strong=\"H3478\"* cast|strong=\"H7993\"* them|strong=\"H1992\"* into|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H1004\"* the|strong=\"H3605\"* fire, and|strong=\"H3478\"* burn|strong=\"H8313\"* them|strong=\"H1992\"* in|strong=\"H3478\"* the|strong=\"H3605\"* fire. From|strong=\"H4480\"* it|strong=\"H8432\"* a|strong=\"H3068\"* fire will|strong=\"H3478\"* come|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H8432\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 5, + "text": "“The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘This|strong=\"H2063\"* is|strong=\"H3389\"* Jerusalem|strong=\"H3389\"*. I|strong=\"H3541\"* have|strong=\"H1471\"* set|strong=\"H7760\"* her|strong=\"H5439\"* in|strong=\"H8432\"* the|strong=\"H3069\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H3069\"* nations|strong=\"H1471\"*, and|strong=\"H3389\"* countries are|strong=\"H1471\"* around|strong=\"H5439\"* her|strong=\"H5439\"*." + }, + { + "verseNum": 6, + "text": "She|strong=\"H3588\"* has|strong=\"H3588\"* rebelled|strong=\"H4784\"* against|strong=\"H4480\"* my|strong=\"H3588\"* ordinances|strong=\"H4941\"* in|strong=\"H1980\"* doing|strong=\"H4480\"* wickedness|strong=\"H7564\"* more|strong=\"H4480\"* than|strong=\"H4480\"* the|strong=\"H3588\"* nations|strong=\"H1471\"*, and|strong=\"H1980\"* against|strong=\"H4480\"* my|strong=\"H3588\"* statutes|strong=\"H2708\"* more|strong=\"H4480\"* than|strong=\"H4480\"* the|strong=\"H3588\"* countries that|strong=\"H3588\"* are|strong=\"H1471\"* around|strong=\"H5439\"* her|strong=\"H5439\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1471\"* rejected|strong=\"H3988\"* my|strong=\"H3588\"* ordinances|strong=\"H4941\"*, and|strong=\"H1980\"* as|strong=\"H3588\"* for|strong=\"H3588\"* my|strong=\"H3588\"* statutes|strong=\"H2708\"*, they|strong=\"H3588\"* have|strong=\"H1471\"* not|strong=\"H3808\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* them|strong=\"H5439\"*.’" + }, + { + "verseNum": 7, + "text": "“Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Because|strong=\"H4480\"* you|strong=\"H6213\"* are|strong=\"H1471\"* more|strong=\"H4480\"* turbulent than|strong=\"H4480\"* the|strong=\"H3069\"* nations|strong=\"H1471\"* that|strong=\"H1471\"* are|strong=\"H1471\"* around|strong=\"H5439\"* you|strong=\"H6213\"*, and|strong=\"H1980\"* have|strong=\"H1471\"* not|strong=\"H3808\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* my|strong=\"H6213\"* statutes|strong=\"H2708\"*, neither|strong=\"H3808\"* have|strong=\"H1471\"* kept|strong=\"H6213\"* my|strong=\"H6213\"* ordinances|strong=\"H4941\"*, neither|strong=\"H3808\"* have|strong=\"H1471\"* followed|strong=\"H1980\"* the|strong=\"H3069\"* ordinances|strong=\"H4941\"* of|strong=\"H4480\"* the|strong=\"H3069\"* nations|strong=\"H1471\"* that|strong=\"H1471\"* are|strong=\"H1471\"* around|strong=\"H5439\"* you|strong=\"H6213\"*;" + }, + { + "verseNum": 8, + "text": "therefore|strong=\"H3651\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"*, even|strong=\"H1571\"* I|strong=\"H2005\"*, am|strong=\"H2005\"* against|strong=\"H5921\"* you|strong=\"H5921\"*; and|strong=\"H4941\"* I|strong=\"H2005\"* will|strong=\"H1471\"* execute|strong=\"H6213\"* judgments|strong=\"H4941\"* among|strong=\"H8432\"* you|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H3282\"* will|strong=\"H3808\"* do|strong=\"H6213\"* in|strong=\"H6213\"* you|strong=\"H3605\"* that|strong=\"H3605\"* which|strong=\"H3605\"* I|strong=\"H3282\"* have|strong=\"H3605\"* not|strong=\"H3808\"* done|strong=\"H6213\"*, and|strong=\"H6213\"* which|strong=\"H3605\"* I|strong=\"H3282\"* will|strong=\"H3808\"* not|strong=\"H3808\"* do|strong=\"H6213\"* anything|strong=\"H3605\"* like|strong=\"H3644\"* it|strong=\"H6213\"* any|strong=\"H3605\"* more|strong=\"H5750\"*, because|strong=\"H3282\"* of|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"*." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H3605\"* fathers will|strong=\"H1121\"* eat the|strong=\"H3605\"* sons|strong=\"H1121\"* within|strong=\"H8432\"* you|strong=\"H3605\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* will|strong=\"H1121\"* eat their|strong=\"H3605\"* fathers. I|strong=\"H3651\"* will|strong=\"H1121\"* execute|strong=\"H6213\"* judgments|strong=\"H8201\"* on|strong=\"H6213\"* you|strong=\"H3605\"*; and|strong=\"H1121\"* I|strong=\"H3651\"* will|strong=\"H1121\"* scatter|strong=\"H2219\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H1121\"* you|strong=\"H3605\"* to|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* winds|strong=\"H7307\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H3651\"* as|strong=\"H1571\"* I|strong=\"H3651\"* live|strong=\"H2416\"*,’ says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, ‘surely|strong=\"H3651\"*, because|strong=\"H3282\"* you|strong=\"H3605\"* have|strong=\"H5869\"* defiled|strong=\"H2930\"* my|strong=\"H3605\"* sanctuary|strong=\"H4720\"* with|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3605\"* detestable|strong=\"H8251\"* things|strong=\"H8251\"*, and|strong=\"H5869\"* with|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"*, therefore|strong=\"H3651\"* I|strong=\"H3651\"* will|strong=\"H1571\"* also|strong=\"H1571\"* diminish|strong=\"H1639\"* you|strong=\"H3605\"*. My|strong=\"H3605\"* eye|strong=\"H5869\"* won’t spare|strong=\"H2550\"*, and|strong=\"H5869\"* I|strong=\"H3651\"* will|strong=\"H1571\"* have|strong=\"H5869\"* no|strong=\"H3808\"* pity|strong=\"H2347\"*." + }, + { + "verseNum": 12, + "text": "A|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* of|strong=\"H7307\"* you|strong=\"H3605\"* will|strong=\"H2719\"* die|strong=\"H4191\"* with|strong=\"H3605\"* the|strong=\"H3605\"* pestilence|strong=\"H1698\"*, and|strong=\"H2719\"* they|strong=\"H3605\"* will|strong=\"H2719\"* be|strong=\"H4191\"* consumed|strong=\"H3615\"* with|strong=\"H3605\"* famine|strong=\"H7458\"* within|strong=\"H8432\"* you|strong=\"H3605\"*. A|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* will|strong=\"H2719\"* fall|strong=\"H5307\"* by|strong=\"H4191\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* around|strong=\"H5439\"* you|strong=\"H3605\"*. A|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* I|strong=\"H3605\"* will|strong=\"H2719\"* scatter|strong=\"H2219\"* to|strong=\"H4191\"* all|strong=\"H3605\"* the|strong=\"H3605\"* winds|strong=\"H7307\"*, and|strong=\"H2719\"* will|strong=\"H2719\"* draw|strong=\"H7324\"* out|strong=\"H7324\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* after|strong=\"H7992\"* them|strong=\"H5439\"*." + }, + { + "verseNum": 13, + "text": "“‘Thus my|strong=\"H3068\"* anger|strong=\"H2534\"* will|strong=\"H3068\"* be|strong=\"H3068\"* accomplished|strong=\"H3615\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* cause my|strong=\"H3068\"* wrath|strong=\"H2534\"* toward|strong=\"H3068\"* them|strong=\"H5117\"* to|strong=\"H1696\"* rest|strong=\"H5117\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* comforted|strong=\"H5162\"*. They|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* spoken|strong=\"H1696\"* in|strong=\"H3068\"* my|strong=\"H3068\"* zeal|strong=\"H7068\"*, when|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* accomplished|strong=\"H3615\"* my|strong=\"H3068\"* wrath|strong=\"H2534\"* on|strong=\"H5117\"* them|strong=\"H5117\"*." + }, + { + "verseNum": 14, + "text": "“‘Moreover I|strong=\"H5414\"* will|strong=\"H1471\"* make|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* desolation|strong=\"H2723\"* and|strong=\"H5869\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* among|strong=\"H2781\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H3605\"* are|strong=\"H1471\"* around|strong=\"H5439\"* you|strong=\"H5414\"*, in|strong=\"H5414\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* all|strong=\"H3605\"* that|strong=\"H3605\"* pass|strong=\"H5674\"* by|strong=\"H5674\"*." + }, + { + "verseNum": 15, + "text": "So|strong=\"H6213\"* it|strong=\"H6213\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* and|strong=\"H3068\"* a|strong=\"H3068\"* taunt|strong=\"H1422\"*, an|strong=\"H6213\"* instruction|strong=\"H4148\"* and|strong=\"H3068\"* an|strong=\"H6213\"* astonishment|strong=\"H4923\"*, to|strong=\"H1696\"* the|strong=\"H6213\"* nations|strong=\"H1471\"* that|strong=\"H3068\"* are|strong=\"H1471\"* around|strong=\"H5439\"* you|strong=\"H6213\"*, when|strong=\"H1961\"* I|strong=\"H3068\"* execute|strong=\"H6213\"* judgments|strong=\"H8201\"* on|strong=\"H3068\"* you|strong=\"H6213\"* in|strong=\"H3068\"* anger|strong=\"H2534\"* and|strong=\"H3068\"* in|strong=\"H3068\"* wrath|strong=\"H2534\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* wrathful|strong=\"H2534\"* rebukes|strong=\"H8433\"*—I|strong=\"H3068\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H1961\"* spoken|strong=\"H1696\"* it|strong=\"H6213\"*—" + }, + { + "verseNum": 16, + "text": "when|strong=\"H1961\"* I|strong=\"H5921\"* send|strong=\"H7971\"* on|strong=\"H5921\"* them|strong=\"H5921\"* the|strong=\"H5921\"* evil|strong=\"H7451\"* arrows|strong=\"H2671\"* of|strong=\"H4294\"* famine|strong=\"H7458\"* that|strong=\"H7451\"* are|strong=\"H2671\"* for|strong=\"H5921\"* destruction|strong=\"H4889\"*, which|strong=\"H7451\"* I|strong=\"H5921\"* will|strong=\"H1961\"* send|strong=\"H7971\"* to|strong=\"H7971\"* destroy|strong=\"H7843\"* you|strong=\"H7971\"*. I|strong=\"H5921\"* will|strong=\"H1961\"* increase|strong=\"H3254\"* the|strong=\"H5921\"* famine|strong=\"H7458\"* on|strong=\"H5921\"* you|strong=\"H7971\"* and|strong=\"H7971\"* will|strong=\"H1961\"* break|strong=\"H7665\"* your|strong=\"H5921\"* staff|strong=\"H4294\"* of|strong=\"H4294\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H5921\"* will|strong=\"H3068\"* send|strong=\"H7971\"* on|strong=\"H5921\"* you|strong=\"H7971\"* famine|strong=\"H7458\"* and|strong=\"H3068\"* evil|strong=\"H7451\"* animals|strong=\"H2416\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* will|strong=\"H3068\"* bereave|strong=\"H7921\"* you|strong=\"H7971\"*. Pestilence|strong=\"H1698\"* and|strong=\"H3068\"* blood|strong=\"H1818\"* will|strong=\"H3068\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* you|strong=\"H7971\"*. I|strong=\"H5921\"* will|strong=\"H3068\"* bring|strong=\"H5674\"* the|strong=\"H5921\"* sword|strong=\"H2719\"* on|strong=\"H5921\"* you|strong=\"H7971\"*. I|strong=\"H5921\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H5921\"*.’”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, set|strong=\"H7760\"* your|strong=\"H7760\"* face|strong=\"H6440\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* mountains|strong=\"H2022\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* prophesy|strong=\"H5012\"* to|strong=\"H3478\"* them|strong=\"H6440\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H3478\"* say|strong=\"H1697\"*, ‘You|strong=\"H5921\"* mountains|strong=\"H2022\"* of|strong=\"H1697\"* Israel|strong=\"H3478\"*, hear|strong=\"H8085\"* the|strong=\"H5921\"* word|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*! The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3478\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"* and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H5921\"* hills|strong=\"H1389\"*, to|strong=\"H3478\"* the|strong=\"H5921\"* watercourses and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H5921\"* valleys|strong=\"H1516\"*: “Behold|strong=\"H2009\"*, I|strong=\"H3541\"*, even|strong=\"H5921\"* I|strong=\"H3541\"*, will|strong=\"H3478\"* bring a|strong=\"H3068\"* sword|strong=\"H2719\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H3478\"* I|strong=\"H3541\"* will|strong=\"H3478\"* destroy|strong=\"H2719\"* your|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"*." + }, + { + "verseNum": 4, + "text": "Your|strong=\"H6440\"* altars|strong=\"H4196\"* will|strong=\"H2491\"* become|strong=\"H8074\"* desolate|strong=\"H8074\"*, and|strong=\"H6440\"* your|strong=\"H6440\"* incense|strong=\"H2553\"* altars|strong=\"H4196\"* will|strong=\"H2491\"* be|strong=\"H6440\"* broken|strong=\"H7665\"*. I|strong=\"H6440\"* will|strong=\"H2491\"* cast|strong=\"H5307\"* down|strong=\"H5307\"* your|strong=\"H6440\"* slain|strong=\"H2491\"* men before|strong=\"H6440\"* your|strong=\"H6440\"* idols|strong=\"H1544\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H5414\"* will|strong=\"H3478\"* lay|strong=\"H5414\"* the|strong=\"H6440\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* before|strong=\"H6440\"* their|strong=\"H5414\"* idols|strong=\"H1544\"*. I|strong=\"H5414\"* will|strong=\"H3478\"* scatter|strong=\"H2219\"* your|strong=\"H5414\"* bones|strong=\"H6106\"* around|strong=\"H5439\"* your|strong=\"H5414\"* altars|strong=\"H4196\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"H5892\"* all|strong=\"H3605\"* your|strong=\"H3605\"* dwelling|strong=\"H4186\"* places|strong=\"H1116\"*, the|strong=\"H3605\"* cities|strong=\"H5892\"* will|strong=\"H5892\"* be|strong=\"H5892\"* laid|strong=\"H2717\"* waste|strong=\"H2717\"* and|strong=\"H5892\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* will|strong=\"H5892\"* be|strong=\"H5892\"* desolate|strong=\"H2717\"*, so|strong=\"H4616\"* that|strong=\"H3605\"* your|strong=\"H3605\"* altars|strong=\"H4196\"* may|strong=\"H4196\"* be|strong=\"H5892\"* laid|strong=\"H2717\"* waste|strong=\"H2717\"* and|strong=\"H5892\"* made|strong=\"H4639\"* desolate|strong=\"H2717\"*, and|strong=\"H5892\"* your|strong=\"H3605\"* idols|strong=\"H1544\"* may|strong=\"H4196\"* be|strong=\"H5892\"* broken|strong=\"H7665\"* and|strong=\"H5892\"* cease|strong=\"H7673\"*, and|strong=\"H5892\"* your|strong=\"H3605\"* incense|strong=\"H2553\"* altars|strong=\"H4196\"* may|strong=\"H4196\"* be|strong=\"H5892\"* cut|strong=\"H1438\"* down|strong=\"H1438\"*, and|strong=\"H5892\"* your|strong=\"H3605\"* works|strong=\"H4639\"* may|strong=\"H4196\"* be|strong=\"H5892\"* abolished|strong=\"H4229\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3588\"* slain|strong=\"H2491\"* will|strong=\"H3068\"* fall|strong=\"H5307\"* among|strong=\"H8432\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "“‘“Yet I|strong=\"H1961\"* will|strong=\"H1961\"* leave|strong=\"H3498\"* a|strong=\"H3068\"* remnant|strong=\"H3498\"*, in|strong=\"H3498\"* that|strong=\"H1471\"* you|strong=\"H1961\"* will|strong=\"H1961\"* have|strong=\"H1961\"* some|strong=\"H3498\"* that|strong=\"H1471\"* escape|strong=\"H6412\"* the|strong=\"H1961\"* sword|strong=\"H2719\"* among|strong=\"H2719\"* the|strong=\"H1961\"* nations|strong=\"H1471\"*, when|strong=\"H1961\"* you|strong=\"H1961\"* are|strong=\"H1471\"* scattered|strong=\"H2219\"* through the|strong=\"H1961\"* countries." + }, + { + "verseNum": 9, + "text": "Those|strong=\"H3605\"* of|strong=\"H6440\"* you|strong=\"H6440\"* that|strong=\"H3605\"* escape|strong=\"H6412\"* will|strong=\"H1471\"* remember|strong=\"H2142\"* me|strong=\"H6440\"* among|strong=\"H5921\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* they|strong=\"H8033\"* are|strong=\"H1471\"* carried|strong=\"H7617\"* captive|strong=\"H7617\"*, how|strong=\"H2142\"* I|strong=\"H5921\"* have|strong=\"H5869\"* been|strong=\"H2142\"* broken|strong=\"H7665\"* with|strong=\"H6213\"* their|strong=\"H3605\"* lewd heart|strong=\"H3820\"*, which|strong=\"H1471\"* has|strong=\"H3820\"* departed|strong=\"H5493\"* from|strong=\"H5493\"* me|strong=\"H6440\"*, and|strong=\"H5869\"* with|strong=\"H6213\"* their|strong=\"H3605\"* eyes|strong=\"H5869\"*, which|strong=\"H1471\"* play|strong=\"H2181\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"* after|strong=\"H5921\"* their|strong=\"H3605\"* idols|strong=\"H1544\"*. Then|strong=\"H6213\"* they|strong=\"H8033\"* will|strong=\"H1471\"* loathe|strong=\"H6962\"* themselves|strong=\"H6213\"* in|strong=\"H5921\"* their|strong=\"H3605\"* own|strong=\"H6440\"* sight|strong=\"H5869\"* for|strong=\"H5921\"* the|strong=\"H3605\"* evils|strong=\"H7451\"* which|strong=\"H1471\"* they|strong=\"H8033\"* have|strong=\"H5869\"* committed|strong=\"H6213\"* in|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* abominations|strong=\"H8441\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. I|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* said|strong=\"H1696\"* in|strong=\"H3068\"* vain|strong=\"H2600\"* that|strong=\"H3588\"* I|strong=\"H3588\"* would|strong=\"H3068\"* do|strong=\"H6213\"* this|strong=\"H2063\"* evil|strong=\"H7451\"* to|strong=\"H1696\"* them|strong=\"H6213\"*.”’" + }, + { + "verseNum": 11, + "text": "“The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Strike|strong=\"H5221\"* with|strong=\"H1004\"* your|strong=\"H3605\"* hand|strong=\"H3709\"*, and|strong=\"H3478\"* stamp|strong=\"H7554\"* with|strong=\"H1004\"* your|strong=\"H3605\"* foot|strong=\"H7272\"*, and|strong=\"H3478\"* say|strong=\"H3478\"*, “Alas!”, because|strong=\"H3605\"* of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* abominations|strong=\"H8441\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*; for|strong=\"H1004\"* they|strong=\"H3478\"* will|strong=\"H3478\"* fall|strong=\"H5307\"* by|strong=\"H3478\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, by|strong=\"H3478\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*, and|strong=\"H3478\"* by|strong=\"H3478\"* the|strong=\"H3605\"* pestilence|strong=\"H1698\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H7604\"* who|strong=\"H7604\"* is|strong=\"H2719\"* far|strong=\"H7350\"* off|strong=\"H7350\"* will|strong=\"H2719\"* die|strong=\"H4191\"* of|strong=\"H3615\"* the|strong=\"H4191\"* pestilence|strong=\"H1698\"*. He|strong=\"H7604\"* who|strong=\"H7604\"* is|strong=\"H2719\"* near|strong=\"H7138\"* will|strong=\"H2719\"* fall|strong=\"H5307\"* by|strong=\"H4191\"* the|strong=\"H4191\"* sword|strong=\"H2719\"*. He|strong=\"H7604\"* who|strong=\"H7604\"* remains|strong=\"H7604\"* and|strong=\"H2719\"* is|strong=\"H2719\"* besieged|strong=\"H5341\"* will|strong=\"H2719\"* die|strong=\"H4191\"* by|strong=\"H4191\"* the|strong=\"H4191\"* famine|strong=\"H7458\"*. Thus|strong=\"H4191\"* I|strong=\"H7350\"* will|strong=\"H2719\"* accomplish|strong=\"H3615\"* my|strong=\"H3615\"* wrath|strong=\"H2534\"* on|strong=\"H5307\"* them|strong=\"H3615\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* when|strong=\"H3588\"* their|strong=\"H3605\"* slain|strong=\"H2491\"* men|strong=\"H7218\"* are|strong=\"H3068\"* among|strong=\"H8432\"* their|strong=\"H3605\"* idols|strong=\"H1544\"* around|strong=\"H5439\"* their|strong=\"H3605\"* altars|strong=\"H4196\"*, on|strong=\"H3068\"* every|strong=\"H3605\"* high|strong=\"H7311\"* hill|strong=\"H2022\"*, on|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tops|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*, under|strong=\"H8478\"* every|strong=\"H3605\"* green|strong=\"H7488\"* tree|strong=\"H6086\"*, and|strong=\"H3068\"* under|strong=\"H8478\"* every|strong=\"H3605\"* thick|strong=\"H5687\"* oak—the|strong=\"H3605\"* places|strong=\"H4725\"* where|strong=\"H8033\"* they|strong=\"H3588\"* offered|strong=\"H7311\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* all|strong=\"H3605\"* their|strong=\"H3605\"* idols|strong=\"H1544\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* stretch|strong=\"H5186\"* out|strong=\"H5186\"* my|strong=\"H5414\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* them|strong=\"H5414\"* and|strong=\"H3068\"* make|strong=\"H5414\"* the|strong=\"H3605\"* land desolate|strong=\"H8077\"* and|strong=\"H3068\"* waste|strong=\"H4923\"*, from|strong=\"H5921\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* toward|strong=\"H5921\"* Diblah|strong=\"H1689\"*, throughout|strong=\"H3605\"* all|strong=\"H3605\"* their|strong=\"H3605\"* habitations|strong=\"H4186\"*. Then|strong=\"H5414\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Moreover|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“You|strong=\"H5921\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3478\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Israel|strong=\"H3478\"*, ‘An|strong=\"H3478\"* end|strong=\"H7093\"*! The|strong=\"H5921\"* end|strong=\"H7093\"* has|strong=\"H3478\"* come|strong=\"H3478\"* on|strong=\"H5921\"* the|strong=\"H5921\"* four corners|strong=\"H3671\"* of|strong=\"H1121\"* the|strong=\"H5921\"* land." + }, + { + "verseNum": 3, + "text": "Now|strong=\"H6258\"* the|strong=\"H3605\"* end|strong=\"H7093\"* is|strong=\"H1870\"* on|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H7971\"* I|strong=\"H5414\"* will|strong=\"H5414\"* send|strong=\"H7971\"* my|strong=\"H5414\"* anger on|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H7971\"* will|strong=\"H5414\"* judge|strong=\"H8199\"* you|strong=\"H5414\"* according|strong=\"H5921\"* to|strong=\"H7971\"* your|strong=\"H3605\"* ways|strong=\"H1870\"*. I|strong=\"H5414\"* will|strong=\"H5414\"* bring|strong=\"H5414\"* on|strong=\"H5921\"* you|strong=\"H5414\"* all|strong=\"H3605\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"*." + }, + { + "verseNum": 4, + "text": "My|strong=\"H5414\"* eye|strong=\"H5869\"* will|strong=\"H3068\"* not|strong=\"H3808\"* spare|strong=\"H2550\"* you|strong=\"H3588\"*, neither|strong=\"H3808\"* will|strong=\"H3068\"* I|strong=\"H3588\"* have|strong=\"H1961\"* pity|strong=\"H2347\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H5414\"* your|strong=\"H3068\"* ways|strong=\"H1870\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* abominations|strong=\"H8441\"* will|strong=\"H3068\"* be|strong=\"H1961\"* among|strong=\"H8432\"* you|strong=\"H3588\"*. Then|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*.’" + }, + { + "verseNum": 5, + "text": "“The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘A|strong=\"H3068\"* disaster|strong=\"H7451\"*! A|strong=\"H3068\"* unique disaster|strong=\"H7451\"*! Behold|strong=\"H2009\"*, it|strong=\"H2009\"* comes." + }, + { + "verseNum": 6, + "text": "An|strong=\"H7093\"* end|strong=\"H7093\"* has|strong=\"H2009\"* come. The|strong=\"H2009\"* end|strong=\"H7093\"* has|strong=\"H2009\"* come! It|strong=\"H2009\"* awakes against you|strong=\"H2009\"*. Behold|strong=\"H2009\"*, it|strong=\"H2009\"* comes." + }, + { + "verseNum": 7, + "text": "Your|strong=\"H3808\"* doom|strong=\"H6843\"* has|strong=\"H3117\"* come to|strong=\"H6256\"* you|strong=\"H3117\"*, inhabitant|strong=\"H3427\"* of|strong=\"H3117\"* the|strong=\"H3117\"* land! The|strong=\"H3117\"* time|strong=\"H6256\"* has|strong=\"H3117\"* come! The|strong=\"H3117\"* day|strong=\"H3117\"* is|strong=\"H3117\"* near|strong=\"H7138\"*, a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* tumult|strong=\"H4103\"*, and|strong=\"H3117\"* not|strong=\"H3808\"* of|strong=\"H3117\"* joyful|strong=\"H1906\"* shouting|strong=\"H1906\"*, on|strong=\"H3117\"* the|strong=\"H3117\"* mountains|strong=\"H2022\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H6258\"* I|strong=\"H5414\"* will|strong=\"H5414\"* shortly|strong=\"H7138\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* my|strong=\"H5414\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H1870\"* accomplish|strong=\"H3615\"* my|strong=\"H5414\"* anger|strong=\"H2534\"* against|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H1870\"* will|strong=\"H5414\"* judge|strong=\"H8199\"* you|strong=\"H5414\"* according|strong=\"H5921\"* to|strong=\"H5921\"* your|strong=\"H3605\"* ways|strong=\"H1870\"*. I|strong=\"H5414\"* will|strong=\"H5414\"* bring|strong=\"H5414\"* on|strong=\"H5921\"* you|strong=\"H5414\"* all|strong=\"H3605\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"*." + }, + { + "verseNum": 9, + "text": "My|strong=\"H5414\"* eye|strong=\"H5869\"* won’t spare|strong=\"H2550\"*, neither|strong=\"H3808\"* will|strong=\"H3068\"* I|strong=\"H3588\"* have|strong=\"H1961\"* pity|strong=\"H2347\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* punish|strong=\"H5221\"* you|strong=\"H3588\"* according|strong=\"H5921\"* to|strong=\"H3068\"* your|strong=\"H3068\"* ways|strong=\"H1870\"*. Your|strong=\"H3068\"* abominations|strong=\"H8441\"* will|strong=\"H3068\"* be|strong=\"H1961\"* among|strong=\"H8432\"* you|strong=\"H3588\"*. Then|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, strike|strong=\"H5221\"*." + }, + { + "verseNum": 10, + "text": "“‘Behold|strong=\"H2009\"*, the|strong=\"H3117\"* day|strong=\"H3117\"*! Behold|strong=\"H2009\"*, it|strong=\"H3117\"* comes|strong=\"H3318\"*! Your|strong=\"H3318\"* doom|strong=\"H6843\"* has|strong=\"H3117\"* gone|strong=\"H3318\"* out|strong=\"H3318\"*. The|strong=\"H3117\"* rod|strong=\"H4294\"* has|strong=\"H3117\"* blossomed|strong=\"H6524\"*. Pride|strong=\"H2087\"* has|strong=\"H3117\"* budded|strong=\"H6524\"*." + }, + { + "verseNum": 11, + "text": "Violence|strong=\"H2555\"* has|strong=\"H4294\"* risen|strong=\"H6965\"* up|strong=\"H6965\"* into a|strong=\"H3068\"* rod|strong=\"H4294\"* of|strong=\"H4294\"* wickedness|strong=\"H7562\"*. None|strong=\"H3808\"* of|strong=\"H4294\"* them|strong=\"H1992\"* will|strong=\"H3808\"* remain|strong=\"H6965\"*, nor|strong=\"H3808\"* of|strong=\"H4294\"* their|strong=\"H1992\"* multitude|strong=\"H1995\"*, nor|strong=\"H3808\"* of|strong=\"H4294\"* their|strong=\"H1992\"* wealth|strong=\"H1995\"*. There|strong=\"H1992\"* will|strong=\"H3808\"* be|strong=\"H3808\"* nothing|strong=\"H3808\"* of|strong=\"H4294\"* value among|strong=\"H3808\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3605\"* time|strong=\"H6256\"* has|strong=\"H3117\"* come|strong=\"H5060\"*! The|strong=\"H3605\"* day|strong=\"H3117\"* draws near|strong=\"H5060\"*. Don’t let|strong=\"H8055\"* the|strong=\"H3605\"* buyer|strong=\"H7069\"* rejoice|strong=\"H8055\"*, nor|strong=\"H3117\"* the|strong=\"H3605\"* seller|strong=\"H4376\"* mourn; for|strong=\"H3588\"* wrath|strong=\"H2740\"* is|strong=\"H3117\"* on|strong=\"H3117\"* all|strong=\"H3605\"* its|strong=\"H3605\"* multitude|strong=\"H1995\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* seller|strong=\"H4376\"* won’t return|strong=\"H7725\"* to|strong=\"H7725\"* that|strong=\"H3588\"* which|strong=\"H2416\"* is|strong=\"H3605\"* sold|strong=\"H4376\"*, although|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H5771\"* still|strong=\"H5750\"* alive|strong=\"H2416\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* vision|strong=\"H2377\"* concerns the|strong=\"H3605\"* whole|strong=\"H3605\"* multitude|strong=\"H1995\"* of|strong=\"H3605\"* it|strong=\"H3588\"*. None|strong=\"H3808\"* will|strong=\"H3808\"* return|strong=\"H7725\"*. None|strong=\"H3808\"* will|strong=\"H3808\"* strengthen|strong=\"H2388\"* himself|strong=\"H2388\"* in|strong=\"H7725\"* the|strong=\"H3605\"* iniquity|strong=\"H5771\"* of|strong=\"H3605\"* his|strong=\"H3605\"* life|strong=\"H2416\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3588\"* have|strong=\"H3605\"* blown|strong=\"H8628\"* the|strong=\"H3605\"* trumpet|strong=\"H8619\"*, and|strong=\"H1980\"* have|strong=\"H3605\"* made|strong=\"H3559\"* all|strong=\"H3605\"* ready|strong=\"H3559\"*; but|strong=\"H3588\"* no|strong=\"H3605\"* one|strong=\"H3605\"* goes|strong=\"H1980\"* to|strong=\"H1980\"* the|strong=\"H3605\"* battle|strong=\"H4421\"*, for|strong=\"H3588\"* my|strong=\"H3605\"* wrath|strong=\"H2740\"* is|strong=\"H3605\"* on|strong=\"H1980\"* all|strong=\"H3605\"* its|strong=\"H3605\"* multitude|strong=\"H1995\"*." + }, + { + "verseNum": 15, + "text": "“‘The|strong=\"H2351\"* sword|strong=\"H2719\"* is|strong=\"H5892\"* outside|strong=\"H2351\"*, and|strong=\"H1004\"* the|strong=\"H2351\"* pestilence|strong=\"H1698\"* and|strong=\"H1004\"* the|strong=\"H2351\"* famine|strong=\"H7458\"* within|strong=\"H1004\"*. He|strong=\"H1004\"* who is|strong=\"H5892\"* in|strong=\"H1004\"* the|strong=\"H2351\"* field|strong=\"H7704\"* will|strong=\"H2719\"* die|strong=\"H4191\"* by|strong=\"H4191\"* the|strong=\"H2351\"* sword|strong=\"H2719\"*. He|strong=\"H1004\"* who is|strong=\"H5892\"* in|strong=\"H1004\"* the|strong=\"H2351\"* city|strong=\"H5892\"* will|strong=\"H2719\"* be|strong=\"H4191\"* devoured by|strong=\"H4191\"* famine|strong=\"H7458\"* and|strong=\"H1004\"* pestilence|strong=\"H1698\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"H1961\"* of|strong=\"H2022\"* those|strong=\"H3605\"* who|strong=\"H3605\"* escape|strong=\"H6412\"*, they|strong=\"H3605\"* will|strong=\"H1961\"* escape|strong=\"H6412\"* and|strong=\"H2022\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* like|strong=\"H1961\"* doves|strong=\"H3123\"* of|strong=\"H2022\"* the|strong=\"H3605\"* valleys|strong=\"H1516\"*, all|strong=\"H3605\"* of|strong=\"H2022\"* them|strong=\"H1961\"* moaning, everyone|strong=\"H3605\"* in|strong=\"H1961\"* his|strong=\"H3605\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 17, + "text": "All|strong=\"H3605\"* hands|strong=\"H3027\"* will|strong=\"H3027\"* be|strong=\"H3027\"* feeble|strong=\"H7503\"*, and|strong=\"H3027\"* all|strong=\"H3605\"* knees|strong=\"H1290\"* will|strong=\"H3027\"* be|strong=\"H3027\"* weak|strong=\"H3212\"* as|strong=\"H3605\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"H3605\"* will|strong=\"H6440\"* also clothe|strong=\"H3680\"* themselves|strong=\"H6440\"* with|strong=\"H6440\"* sackcloth|strong=\"H8242\"*, and|strong=\"H7218\"* horror|strong=\"H6427\"* will|strong=\"H6440\"* cover|strong=\"H3680\"* them|strong=\"H6440\"*. Shame will|strong=\"H6440\"* be|strong=\"H6440\"* on|strong=\"H2296\"* all|strong=\"H3605\"* faces|strong=\"H6440\"*, and|strong=\"H7218\"* baldness|strong=\"H7144\"* on|strong=\"H2296\"* all|strong=\"H3605\"* their|strong=\"H3605\"* heads|strong=\"H7218\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* cast|strong=\"H7993\"* their|strong=\"H3068\"* silver|strong=\"H3701\"* in|strong=\"H3068\"* the|strong=\"H3588\"* streets|strong=\"H2351\"*, and|strong=\"H3068\"* their|strong=\"H3068\"* gold|strong=\"H2091\"* will|strong=\"H3068\"* be|strong=\"H1961\"* as|strong=\"H3117\"* an|strong=\"H1961\"* unclean|strong=\"H5079\"* thing|strong=\"H5079\"*. Their|strong=\"H3068\"* silver|strong=\"H3701\"* and|strong=\"H3068\"* their|strong=\"H3068\"* gold|strong=\"H2091\"* won’t be|strong=\"H1961\"* able|strong=\"H3201\"* to|strong=\"H3201\"* deliver|strong=\"H5337\"* them|strong=\"H7993\"* in|strong=\"H3068\"* the|strong=\"H3588\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s wrath|strong=\"H5678\"*. They|strong=\"H3588\"* won’t satisfy|strong=\"H7646\"* their|strong=\"H3068\"* souls|strong=\"H5315\"* or|strong=\"H3808\"* fill|strong=\"H4390\"* their|strong=\"H3068\"* bellies; because|strong=\"H3588\"* it|strong=\"H3588\"* has|strong=\"H3068\"* been|strong=\"H1961\"* the|strong=\"H3588\"* stumbling|strong=\"H4383\"* block|strong=\"H4383\"* of|strong=\"H3068\"* their|strong=\"H3068\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 20, + "text": "As|strong=\"H6213\"* for|strong=\"H5921\"* the|strong=\"H5921\"* beauty|strong=\"H6643\"* of|strong=\"H5921\"* his|strong=\"H5414\"* ornament|strong=\"H5716\"*, he|strong=\"H3651\"* set|strong=\"H7760\"* it|strong=\"H5414\"* in|strong=\"H5921\"* majesty|strong=\"H1347\"*; but|strong=\"H3651\"* they|strong=\"H3651\"* made|strong=\"H6213\"* the|strong=\"H5921\"* images|strong=\"H6754\"* of|strong=\"H5921\"* their|strong=\"H5414\"* abominations|strong=\"H8441\"* and|strong=\"H6213\"* their|strong=\"H5414\"* detestable|strong=\"H8251\"* things|strong=\"H8251\"* therein. Therefore|strong=\"H3651\"* I|strong=\"H5414\"* have|strong=\"H5414\"* made|strong=\"H6213\"* it|strong=\"H5414\"* to|strong=\"H6213\"* them|strong=\"H5414\"* as|strong=\"H6213\"* an|strong=\"H6213\"* unclean|strong=\"H5079\"* thing|strong=\"H5079\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"H5414\"* will|strong=\"H7563\"* give|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5414\"* strangers|strong=\"H2114\"* for|strong=\"H3027\"* a|strong=\"H3068\"* prey|strong=\"H7998\"*, and|strong=\"H3027\"* to|strong=\"H5414\"* the|strong=\"H5414\"* wicked|strong=\"H7563\"* of|strong=\"H3027\"* the|strong=\"H5414\"* earth for|strong=\"H3027\"* a|strong=\"H3068\"* plunder|strong=\"H7998\"*; and|strong=\"H3027\"* they|strong=\"H3027\"* will|strong=\"H7563\"* profane|strong=\"H2490\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"H6440\"* will|strong=\"H6440\"* also|strong=\"H1992\"* turn|strong=\"H5437\"* my|strong=\"H2490\"* face|strong=\"H6440\"* from|strong=\"H6440\"* them|strong=\"H1992\"*, and|strong=\"H6440\"* they|strong=\"H1992\"* will|strong=\"H6440\"* profane|strong=\"H2490\"* my|strong=\"H2490\"* secret|strong=\"H6845\"* place|strong=\"H6845\"*. Robbers|strong=\"H6530\"* will|strong=\"H6440\"* enter into it|strong=\"H6440\"*, and|strong=\"H6440\"* profane|strong=\"H2490\"* it|strong=\"H6440\"*." + }, + { + "verseNum": 23, + "text": "“‘Make|strong=\"H6213\"* chains|strong=\"H7569\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* land is|strong=\"H5892\"* full|strong=\"H4390\"* of|strong=\"H5892\"* bloody|strong=\"H1818\"* crimes|strong=\"H4941\"*, and|strong=\"H4941\"* the|strong=\"H3588\"* city|strong=\"H5892\"* is|strong=\"H5892\"* full|strong=\"H4390\"* of|strong=\"H5892\"* violence|strong=\"H2555\"*." + }, + { + "verseNum": 24, + "text": "Therefore I|strong=\"H1004\"* will|strong=\"H1471\"* bring|strong=\"H7451\"* the|strong=\"H3423\"* worst|strong=\"H7451\"* of|strong=\"H1004\"* the|strong=\"H3423\"* nations|strong=\"H1471\"*, and|strong=\"H1004\"* they|strong=\"H6942\"* will|strong=\"H1471\"* possess|strong=\"H3423\"* their|strong=\"H3423\"* houses|strong=\"H1004\"*. I|strong=\"H1004\"* will|strong=\"H1471\"* also|strong=\"H1471\"* make|strong=\"H7673\"* the|strong=\"H3423\"* pride|strong=\"H1347\"* of|strong=\"H1004\"* the|strong=\"H3423\"* strong|strong=\"H5794\"* to|strong=\"H1004\"* cease|strong=\"H7673\"*. Their|strong=\"H3423\"* holy|strong=\"H6942\"* places|strong=\"H1004\"* will|strong=\"H1471\"* be|strong=\"H1471\"* profaned|strong=\"H2490\"*." + }, + { + "verseNum": 25, + "text": "Destruction|strong=\"H7089\"* comes! They|strong=\"H7965\"* will seek|strong=\"H1245\"* peace|strong=\"H7965\"*, and|strong=\"H7965\"* there|strong=\"H7965\"* will be|strong=\"H7965\"* none." + }, + { + "verseNum": 26, + "text": "Mischief|strong=\"H1943\"* will|strong=\"H1961\"* come|strong=\"H1961\"* on|strong=\"H5921\"* mischief|strong=\"H1943\"*, and|strong=\"H3548\"* rumor|strong=\"H8052\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H5921\"* rumor|strong=\"H8052\"*. They|strong=\"H5921\"* will|strong=\"H1961\"* seek|strong=\"H1245\"* a|strong=\"H3068\"* vision|strong=\"H2377\"* of|strong=\"H2205\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"*; but|strong=\"H1961\"* the|strong=\"H5921\"* law|strong=\"H8451\"* will|strong=\"H1961\"* perish from|strong=\"H5921\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*, and|strong=\"H3548\"* counsel|strong=\"H6098\"* from|strong=\"H5921\"* the|strong=\"H5921\"* elders|strong=\"H2205\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* will|strong=\"H3068\"* mourn, and|strong=\"H3068\"* the|strong=\"H3588\"* prince|strong=\"H5387\"* will|strong=\"H3068\"* be|strong=\"H3027\"* clothed|strong=\"H3847\"* with|strong=\"H3847\"* desolation|strong=\"H8077\"*. The|strong=\"H3588\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3588\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3588\"* land will|strong=\"H3068\"* be|strong=\"H3027\"* troubled. I|strong=\"H3588\"* will|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3068\"* them|strong=\"H3027\"* after|strong=\"H3588\"* their|strong=\"H3068\"* way|strong=\"H1870\"*, and|strong=\"H3068\"* according|strong=\"H4941\"* to|strong=\"H3068\"* their|strong=\"H3068\"* own|strong=\"H5971\"* judgments|strong=\"H4941\"* I|strong=\"H3588\"* will|strong=\"H3068\"* judge|strong=\"H8199\"* them|strong=\"H3027\"*. Then|strong=\"H6213\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3427\"* the|strong=\"H6440\"* sixth|strong=\"H8345\"* year|strong=\"H8141\"*, in|strong=\"H3427\"* the|strong=\"H6440\"* sixth|strong=\"H8345\"* month|strong=\"H2320\"*, in|strong=\"H3427\"* the|strong=\"H6440\"* fifth|strong=\"H2568\"* day|strong=\"H2320\"* of|strong=\"H1004\"* the|strong=\"H6440\"* month|strong=\"H2320\"*, as|strong=\"H1961\"* I|strong=\"H5921\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* my|strong=\"H5921\"* house|strong=\"H1004\"*, and|strong=\"H3063\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* sat|strong=\"H3427\"* before|strong=\"H6440\"* me|strong=\"H6440\"*, the|strong=\"H6440\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* me|strong=\"H6440\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H2009\"* I|strong=\"H2009\"* saw|strong=\"H7200\"*, and|strong=\"H5869\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* likeness|strong=\"H1823\"* as|strong=\"H5869\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H5869\"* fire—from|strong=\"H5869\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H5869\"* his|strong=\"H7200\"* waist|strong=\"H4975\"* and|strong=\"H5869\"* downward|strong=\"H4295\"*, fire, and|strong=\"H5869\"* from|strong=\"H5869\"* his|strong=\"H7200\"* waist|strong=\"H4975\"* and|strong=\"H5869\"* upward|strong=\"H4605\"*, as|strong=\"H5869\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H5869\"* brightness|strong=\"H2096\"*, as|strong=\"H5869\"* it|strong=\"H7200\"* were|strong=\"H5869\"* glowing|strong=\"H2830\"* metal|strong=\"H2830\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H8033\"* stretched|strong=\"H7971\"* out|strong=\"H7971\"* the|strong=\"H3947\"* form|strong=\"H8403\"* of|strong=\"H3027\"* a|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H7971\"* took|strong=\"H3947\"* me|strong=\"H7971\"* by|strong=\"H3027\"* a|strong=\"H3068\"* lock|strong=\"H6734\"* of|strong=\"H3027\"* my|strong=\"H3947\"* head|strong=\"H7218\"*; and|strong=\"H7971\"* the|strong=\"H3947\"* Spirit|strong=\"H7307\"* lifted|strong=\"H5375\"* me|strong=\"H7971\"* up|strong=\"H5375\"* between|strong=\"H7307\"* earth|strong=\"H8064\"* and|strong=\"H7971\"* the|strong=\"H3947\"* sky|strong=\"H8064\"*, and|strong=\"H7971\"* brought|strong=\"H3947\"* me|strong=\"H7971\"* in|strong=\"H3027\"* the|strong=\"H3947\"* visions|strong=\"H4759\"* of|strong=\"H3027\"* God|strong=\"H7971\"* to|strong=\"H7971\"* Jerusalem|strong=\"H3389\"*, to|strong=\"H7971\"* the|strong=\"H3947\"* door|strong=\"H6607\"* of|strong=\"H3027\"* the|strong=\"H3947\"* gate|strong=\"H8179\"* of|strong=\"H3027\"* the|strong=\"H3947\"* inner|strong=\"H6442\"* court|strong=\"H8179\"* that|strong=\"H3027\"* looks toward|strong=\"H3027\"* the|strong=\"H3947\"* north|strong=\"H6828\"*, where|strong=\"H8033\"* there|strong=\"H8033\"* was|strong=\"H7307\"* the|strong=\"H3947\"* seat|strong=\"H4186\"* of|strong=\"H3027\"* the|strong=\"H3947\"* image|strong=\"H5566\"* of|strong=\"H3027\"* jealousy|strong=\"H7068\"*, which|strong=\"H8033\"* provokes to|strong=\"H7971\"* jealousy|strong=\"H7068\"*." + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H7200\"* glory|strong=\"H3519\"* of|strong=\"H4758\"* the|strong=\"H7200\"* God of|strong=\"H4758\"* Israel|strong=\"H3478\"* was|strong=\"H3478\"* there|strong=\"H8033\"*, according to|strong=\"H3478\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* that|strong=\"H7200\"* I|strong=\"H2009\"* saw|strong=\"H7200\"* in|strong=\"H3478\"* the|strong=\"H7200\"* plain|strong=\"H1237\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H2009\"* he|strong=\"H2088\"* said to|strong=\"H1870\"* me|strong=\"H4994\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5375\"* eyes|strong=\"H5869\"* now|strong=\"H4994\"* the|strong=\"H5375\"* way|strong=\"H1870\"* toward|strong=\"H1870\"* the|strong=\"H5375\"* north|strong=\"H6828\"*.”" + }, + { + "verseNum": 6, + "text": "He|strong=\"H6213\"* said to|strong=\"H7725\"* me|strong=\"H7725\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, do|strong=\"H6213\"* you|strong=\"H5921\"* see|strong=\"H7200\"* what|strong=\"H6213\"* they|strong=\"H1992\"* do|strong=\"H6213\"*? Even|strong=\"H5750\"* the|strong=\"H5921\"* great|strong=\"H1419\"* abominations|strong=\"H8441\"* that|strong=\"H7200\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* commit|strong=\"H6213\"* here|strong=\"H6311\"*, that|strong=\"H7200\"* I|strong=\"H5921\"* should|strong=\"H3478\"* go|strong=\"H7725\"* far|strong=\"H7368\"* off|strong=\"H5921\"* from|strong=\"H7725\"* my|strong=\"H7200\"* sanctuary|strong=\"H4720\"*? But|strong=\"H7200\"* you|strong=\"H5921\"* will|strong=\"H3478\"* again|strong=\"H7725\"* see|strong=\"H7200\"* yet|strong=\"H5750\"* other|strong=\"H5750\"* great|strong=\"H1419\"* abominations|strong=\"H8441\"*.”" + }, + { + "verseNum": 7, + "text": "He|strong=\"H7023\"* brought me|strong=\"H7200\"* to|strong=\"H7200\"* the|strong=\"H7200\"* door|strong=\"H6607\"* of|strong=\"H6607\"* the|strong=\"H7200\"* court|strong=\"H2691\"*; and|strong=\"H7200\"* when|strong=\"H7200\"* I|strong=\"H2009\"* looked|strong=\"H7200\"*, behold|strong=\"H2009\"*, a|strong=\"H3068\"* hole|strong=\"H2356\"* in|strong=\"H6607\"* the|strong=\"H7200\"* wall|strong=\"H7023\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H2009\"* he|strong=\"H7023\"* said to|strong=\"H1121\"* me|strong=\"H4994\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, dig|strong=\"H2864\"* now|strong=\"H4994\"* in|strong=\"H1121\"* the|strong=\"H2009\"* wall|strong=\"H7023\"*.”" + }, + { + "verseNum": 9, + "text": "He|strong=\"H6213\"* said to|strong=\"H6213\"* me|strong=\"H7200\"*, “Go in|strong=\"H6213\"*, and|strong=\"H7200\"* see|strong=\"H7200\"* the|strong=\"H7200\"* wicked|strong=\"H7451\"* abominations|strong=\"H8441\"* that|strong=\"H7200\"* they|strong=\"H1992\"* do|strong=\"H6213\"* here|strong=\"H6311\"*.”" + }, + { + "verseNum": 10, + "text": "So|strong=\"H7200\"* I|strong=\"H2009\"* went|strong=\"H3478\"* in|strong=\"H5921\"* and|strong=\"H3478\"* looked|strong=\"H7200\"*, and|strong=\"H3478\"* saw|strong=\"H7200\"* every|strong=\"H3605\"* form|strong=\"H8403\"* of|strong=\"H1004\"* creeping|strong=\"H7431\"* things|strong=\"H7431\"*, abominable|strong=\"H8263\"* animals, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* idols|strong=\"H1544\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, portrayed|strong=\"H2707\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H3605\"* wall|strong=\"H7023\"*." + }, + { + "verseNum": 11, + "text": "Seventy|strong=\"H7657\"* men|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* them|strong=\"H6440\"*. In|strong=\"H3478\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* them|strong=\"H6440\"* Jaazaniah|strong=\"H2970\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"* stood|strong=\"H5975\"*, every|strong=\"H5975\"* man|strong=\"H2205\"* with|strong=\"H1004\"* his|strong=\"H6440\"* censer|strong=\"H4730\"* in|strong=\"H3478\"* his|strong=\"H6440\"* hand|strong=\"H3027\"*; and|strong=\"H1121\"* the|strong=\"H6440\"* smell of|strong=\"H1121\"* the|strong=\"H6440\"* cloud|strong=\"H6051\"* of|strong=\"H1121\"* incense|strong=\"H7004\"* went|strong=\"H5927\"* up|strong=\"H5927\"*." + }, + { + "verseNum": 12, + "text": "Then|strong=\"H6213\"* he|strong=\"H3588\"* said to|strong=\"H3478\"* me|strong=\"H7200\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H2205\"*, have|strong=\"H3068\"* you|strong=\"H3588\"* seen|strong=\"H7200\"* what|strong=\"H6213\"* the|strong=\"H7200\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* the|strong=\"H7200\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* do|strong=\"H6213\"* in|strong=\"H3478\"* the|strong=\"H7200\"* dark|strong=\"H2822\"*, every|strong=\"H6213\"* man|strong=\"H2205\"* in|strong=\"H3478\"* his|strong=\"H3068\"* rooms|strong=\"H2315\"* of|strong=\"H1121\"* imagery|strong=\"H4906\"*? For|strong=\"H3588\"* they|strong=\"H3588\"* say|strong=\"H3478\"*, ‘Yahweh|strong=\"H3068\"* doesn’t see|strong=\"H7200\"* us|strong=\"H6213\"*. Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* forsaken|strong=\"H5800\"* the|strong=\"H7200\"* land.’”" + }, + { + "verseNum": 13, + "text": "He|strong=\"H6213\"* said also|strong=\"H6213\"* to|strong=\"H7725\"* me|strong=\"H7725\"*, “You|strong=\"H7725\"* will|strong=\"H5750\"* again|strong=\"H7725\"* see|strong=\"H7200\"* more|strong=\"H5750\"* of|strong=\"H6213\"* the|strong=\"H7200\"* great|strong=\"H1419\"* abominations|strong=\"H8441\"* which|strong=\"H1992\"* they|strong=\"H1992\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H2009\"* he|strong=\"H8033\"* brought|strong=\"H3068\"* me|strong=\"H1004\"* to|strong=\"H3068\"* the|strong=\"H3068\"* door|strong=\"H6607\"* of|strong=\"H1004\"* the|strong=\"H3068\"* gate|strong=\"H8179\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* which|strong=\"H3068\"* was|strong=\"H3068\"* toward|strong=\"H3068\"* the|strong=\"H3068\"* north|strong=\"H6828\"*; and|strong=\"H3068\"* I|strong=\"H2009\"* saw|strong=\"H2009\"* the|strong=\"H3068\"* women sit|strong=\"H3427\"* there|strong=\"H8033\"* weeping|strong=\"H1058\"* for|strong=\"H3068\"* Tammuz|strong=\"H8542\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H7725\"* he|strong=\"H7725\"* said to|strong=\"H7725\"* me|strong=\"H7725\"*, “Have|strong=\"H1121\"* you|strong=\"H7725\"* seen|strong=\"H7200\"* this|strong=\"H7200\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*? You|strong=\"H7725\"* will|strong=\"H1121\"* again|strong=\"H7725\"* see|strong=\"H7200\"* yet|strong=\"H5750\"* greater|strong=\"H1419\"* abominations|strong=\"H8441\"* than|strong=\"H1419\"* these.”" + }, + { + "verseNum": 16, + "text": "He|strong=\"H3068\"* brought|strong=\"H3068\"* me|strong=\"H6440\"* into the|strong=\"H6440\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H3068\"* I|strong=\"H2009\"* saw|strong=\"H2009\"* at|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1004\"*, between the|strong=\"H6440\"* porch and|strong=\"H3068\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*, there|strong=\"H2009\"* were|strong=\"H1992\"* about|strong=\"H2009\"* twenty-five|strong=\"H6242\"* men|strong=\"H1992\"* with|strong=\"H1004\"* their|strong=\"H3068\"* backs toward|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1004\"* and|strong=\"H3068\"* their|strong=\"H3068\"* faces|strong=\"H6440\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* east|strong=\"H6924\"*. They|strong=\"H1992\"* were|strong=\"H1992\"* worshiping|strong=\"H7812\"* the|strong=\"H6440\"* sun|strong=\"H8121\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* east|strong=\"H6924\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H7971\"* he|strong=\"H3588\"* said to|strong=\"H7725\"* me|strong=\"H7971\"*, “Have|strong=\"H1121\"* you|strong=\"H3588\"* seen|strong=\"H7200\"* this|strong=\"H6213\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*? Is|strong=\"H1121\"* it|strong=\"H3588\"* a|strong=\"H3068\"* light|strong=\"H7043\"* thing|strong=\"H7043\"* to|strong=\"H7725\"* the|strong=\"H7200\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* that|strong=\"H3588\"* they|strong=\"H3588\"* commit|strong=\"H6213\"* the|strong=\"H7200\"* abominations|strong=\"H8441\"* which|strong=\"H1004\"* they|strong=\"H3588\"* commit|strong=\"H6213\"* here|strong=\"H6311\"*? For|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1121\"* filled|strong=\"H4390\"* the|strong=\"H7200\"* land with|strong=\"H4390\"* violence|strong=\"H2555\"*, and|strong=\"H1121\"* have|strong=\"H1121\"* turned|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* provoke|strong=\"H3707\"* me|strong=\"H7971\"* to|strong=\"H7725\"* anger|strong=\"H3707\"*. Behold|strong=\"H2005\"*, they|strong=\"H3588\"* put|strong=\"H7971\"* the|strong=\"H7200\"* branch|strong=\"H2156\"* to|strong=\"H7725\"* their|strong=\"H7725\"* nose." + }, + { + "verseNum": 18, + "text": "Therefore|strong=\"H1571\"* I|strong=\"H3808\"* will|strong=\"H1571\"* also|strong=\"H1571\"* deal|strong=\"H6213\"* in|strong=\"H6213\"* wrath|strong=\"H2534\"*. My|strong=\"H8085\"* eye|strong=\"H5869\"* won’t spare|strong=\"H2550\"*, neither|strong=\"H3808\"* will|strong=\"H1571\"* I|strong=\"H3808\"* have|strong=\"H5869\"* pity|strong=\"H2347\"*. Though|strong=\"H1571\"* they|strong=\"H3808\"* cry|strong=\"H7121\"* in|strong=\"H6213\"* my|strong=\"H8085\"* ears with|strong=\"H6213\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*, yet|strong=\"H1571\"* I|strong=\"H3808\"* will|strong=\"H1571\"* not|strong=\"H3808\"* hear|strong=\"H8085\"* them|strong=\"H6213\"*.”" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H7126\"* he|strong=\"H3027\"* cried|strong=\"H7121\"* in|strong=\"H5892\"* my|strong=\"H3027\"* ears with|strong=\"H3027\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*, saying|strong=\"H6963\"*, “Cause|strong=\"H7121\"* those|strong=\"H7126\"* who|strong=\"H7121\"* are|strong=\"H3027\"* in|strong=\"H5892\"* charge|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H7121\"* city|strong=\"H5892\"* to|strong=\"H3027\"* draw|strong=\"H7126\"* near|strong=\"H7126\"*, each|strong=\"H5892\"* man|strong=\"H1419\"* with|strong=\"H3027\"* his|strong=\"H7121\"* destroying|strong=\"H4892\"* weapon|strong=\"H3627\"* in|strong=\"H5892\"* his|strong=\"H7121\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 2, + "text": "Behold|strong=\"H2009\"*, six|strong=\"H8337\"* men came|strong=\"H3847\"* from|strong=\"H3027\"* the|strong=\"H8432\"* way|strong=\"H1870\"* of|strong=\"H3027\"* the|strong=\"H8432\"* upper|strong=\"H5945\"* gate|strong=\"H8179\"*, which|strong=\"H4196\"* lies toward|strong=\"H1870\"* the|strong=\"H8432\"* north|strong=\"H6828\"*, every|strong=\"H5975\"* man|strong=\"H8179\"* with|strong=\"H3847\"* his|strong=\"H3027\"* slaughter|strong=\"H4660\"* weapon|strong=\"H3627\"* in|strong=\"H8432\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*. One|strong=\"H3027\"* man|strong=\"H8179\"* in|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H3027\"* them|strong=\"H3027\"* was|strong=\"H3027\"* clothed|strong=\"H3847\"* in|strong=\"H8432\"* linen, with|strong=\"H3847\"* a|strong=\"H3068\"* writer|strong=\"H5608\"*’s inkhorn|strong=\"H7083\"* by|strong=\"H3027\"* his|strong=\"H3027\"* side|strong=\"H6828\"*. They|strong=\"H5608\"* went|strong=\"H3027\"* in|strong=\"H8432\"*, and|strong=\"H3027\"* stood|strong=\"H5975\"* beside|strong=\"H3027\"* the|strong=\"H8432\"* bronze|strong=\"H5178\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* glory|strong=\"H3519\"* of|strong=\"H1004\"* the|strong=\"H5921\"* God of|strong=\"H1004\"* Israel|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* the|strong=\"H5921\"* cherub|strong=\"H3742\"*, whereupon it|strong=\"H7121\"* was|strong=\"H1961\"*, to|strong=\"H3478\"* the|strong=\"H5921\"* threshold|strong=\"H4670\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"*; and|strong=\"H3478\"* he|strong=\"H1004\"* called|strong=\"H7121\"* to|strong=\"H3478\"* the|strong=\"H5921\"* man clothed|strong=\"H3847\"* in|strong=\"H5921\"* linen, who|strong=\"H3478\"* had|strong=\"H1961\"* the|strong=\"H5921\"* writer|strong=\"H5608\"*’s inkhorn|strong=\"H7083\"* by|strong=\"H5921\"* his|strong=\"H7121\"* side|strong=\"H4975\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H5921\"*, “Go|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, through|strong=\"H5674\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3068\"* set|strong=\"H6213\"* a|strong=\"H3068\"* mark|strong=\"H8420\"* on|strong=\"H5921\"* the|strong=\"H3605\"* foreheads|strong=\"H4696\"* of|strong=\"H3068\"* the|strong=\"H3605\"* men|strong=\"H6213\"* that|strong=\"H3605\"* sigh and|strong=\"H3068\"* that|strong=\"H3605\"* cry over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* abominations|strong=\"H8441\"* that|strong=\"H3605\"* are|strong=\"H3068\"* done|strong=\"H6213\"* within|strong=\"H8432\"* it|strong=\"H5921\"*.”" + }, + { + "verseNum": 5, + "text": "To|strong=\"H5921\"* the|strong=\"H5921\"* others he|strong=\"H5921\"* said in|strong=\"H5921\"* my|strong=\"H5921\"* hearing, “Go|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5921\"* city|strong=\"H5892\"* after|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H5869\"* strike|strong=\"H5221\"*. Don’t let your|strong=\"H5921\"* eye|strong=\"H5869\"* spare|strong=\"H2550\"*, neither have|strong=\"H5869\"* pity|strong=\"H2347\"*." + }, + { + "verseNum": 6, + "text": "Kill|strong=\"H2026\"* utterly|strong=\"H4889\"* the|strong=\"H3605\"* old|strong=\"H2205\"* man|strong=\"H2205\"*, the|strong=\"H3605\"* young man|strong=\"H2205\"*, the|strong=\"H3605\"* virgin|strong=\"H1330\"*, little|strong=\"H2945\"* children|strong=\"H2945\"* and|strong=\"H1004\"* women|strong=\"H1330\"*; but|strong=\"H3605\"* don’t come|strong=\"H5066\"* near|strong=\"H5066\"* any|strong=\"H3605\"* man|strong=\"H2205\"* on|strong=\"H5921\"* whom|strong=\"H6440\"* is|strong=\"H3605\"* the|strong=\"H3605\"* mark|strong=\"H8420\"*. Begin|strong=\"H2490\"* at|strong=\"H5921\"* my|strong=\"H3605\"* sanctuary|strong=\"H4720\"*.”" + }, + { + "verseNum": 7, + "text": "He|strong=\"H1004\"* said|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H5221\"*, “Defile|strong=\"H2930\"* the|strong=\"H5221\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* fill|strong=\"H4390\"* the|strong=\"H5221\"* courts|strong=\"H2691\"* with|strong=\"H4390\"* the|strong=\"H5221\"* slain|strong=\"H2491\"*. Go|strong=\"H3318\"* out|strong=\"H3318\"*!”" + }, + { + "verseNum": 8, + "text": "While|strong=\"H1961\"* they|strong=\"H5921\"* were|strong=\"H3478\"* killing|strong=\"H5221\"*, and|strong=\"H3478\"* I|strong=\"H5921\"* was|strong=\"H1961\"* left|strong=\"H7604\"*, I|strong=\"H5921\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* my|strong=\"H3605\"* face|strong=\"H6440\"*, and|strong=\"H3478\"* cried|strong=\"H2199\"*, and|strong=\"H3478\"* said, “Ah Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*! Will|strong=\"H1961\"* you|strong=\"H6440\"* destroy|strong=\"H7843\"* all|strong=\"H3605\"* the|strong=\"H3605\"* residue|strong=\"H7611\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* your|strong=\"H3605\"* pouring|strong=\"H8210\"* out|strong=\"H8210\"* of|strong=\"H6440\"* your|strong=\"H3605\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*?”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H3588\"* he|strong=\"H3588\"* said to|strong=\"H3478\"* me|strong=\"H7200\"*, “The|strong=\"H7200\"* iniquity|strong=\"H5771\"* of|strong=\"H1004\"* the|strong=\"H7200\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"* is|strong=\"H3068\"* exceedingly|strong=\"H3966\"* great|strong=\"H1419\"*, and|strong=\"H3063\"* the|strong=\"H7200\"* land is|strong=\"H3068\"* full|strong=\"H4390\"* of|strong=\"H1004\"* blood|strong=\"H1818\"*, and|strong=\"H3063\"* the|strong=\"H7200\"* city|strong=\"H5892\"* full|strong=\"H4390\"* of|strong=\"H1004\"* perversion|strong=\"H4297\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* say|strong=\"H3478\"*, ‘Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* forsaken|strong=\"H5800\"* the|strong=\"H7200\"* land, and|strong=\"H3063\"* Yahweh|strong=\"H3068\"* doesn’t see|strong=\"H7200\"*.’" + }, + { + "verseNum": 10, + "text": "As|strong=\"H1571\"* for|strong=\"H5869\"* me|strong=\"H5414\"* also|strong=\"H1571\"*, my|strong=\"H5414\"* eye|strong=\"H5869\"* won’t spare|strong=\"H2550\"*, neither|strong=\"H3808\"* will|strong=\"H1571\"* I|strong=\"H5414\"* have|strong=\"H5869\"* pity|strong=\"H2347\"*, but|strong=\"H3808\"* I|strong=\"H5414\"* will|strong=\"H1571\"* bring|strong=\"H5414\"* their|strong=\"H5414\"* way|strong=\"H1870\"* on|strong=\"H1870\"* their|strong=\"H5414\"* head|strong=\"H7218\"*.”" + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H6213\"* man clothed|strong=\"H3830\"* in|strong=\"H6213\"* linen, who|strong=\"H6213\"* had|strong=\"H6680\"* the|strong=\"H6213\"* inkhorn|strong=\"H7083\"* by|strong=\"H6213\"* his|strong=\"H7725\"* side|strong=\"H4975\"*, reported|strong=\"H7725\"* the|strong=\"H6213\"* matter|strong=\"H1697\"*, saying|strong=\"H1697\"*, “I|strong=\"H2009\"* have|strong=\"H1697\"* done|strong=\"H6213\"* as|strong=\"H1697\"* you|strong=\"H6680\"* have|strong=\"H1697\"* commanded|strong=\"H6680\"* me|strong=\"H7725\"*.”" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H2009\"* I|strong=\"H2009\"* looked|strong=\"H7200\"*, and|strong=\"H7218\"* see|strong=\"H7200\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* expanse|strong=\"H7549\"* that|strong=\"H7200\"* was|strong=\"H7218\"* over|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* there|strong=\"H2009\"* appeared|strong=\"H7200\"* above|strong=\"H5921\"* them|strong=\"H5921\"* as|strong=\"H1823\"* it|strong=\"H5921\"* were|strong=\"H3742\"* a|strong=\"H3068\"* sapphire|strong=\"H5601\"*+ 10:1 or, lapis lazuli * stone|strong=\"H5601\"*, as|strong=\"H1823\"* the|strong=\"H5921\"* appearance|strong=\"H4758\"* of|strong=\"H7218\"* the|strong=\"H5921\"* likeness|strong=\"H1823\"* of|strong=\"H7218\"* a|strong=\"H3068\"* throne|strong=\"H3678\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H5921\"* spoke to|strong=\"H5921\"* the|strong=\"H5921\"* man clothed|strong=\"H3847\"* in|strong=\"H5921\"* linen, and|strong=\"H5869\"* said, “Go in|strong=\"H5921\"* between|strong=\"H5921\"* the|strong=\"H5921\"* whirling|strong=\"H1534\"* wheels|strong=\"H1534\"*, even|strong=\"H5869\"* under|strong=\"H8478\"* the|strong=\"H5921\"* cherub|strong=\"H3742\"*, and|strong=\"H5869\"* fill|strong=\"H4390\"* both|strong=\"H5921\"* your|strong=\"H5921\"* hands|strong=\"H2651\"* with|strong=\"H4390\"* coals|strong=\"H1513\"* of|strong=\"H5892\"* fire|strong=\"H1513\"* from|strong=\"H5921\"* between|strong=\"H5921\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"*, and|strong=\"H5869\"* scatter|strong=\"H2236\"* them|strong=\"H5921\"* over|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"*.”" + }, + { + "verseNum": 3, + "text": "Now the|strong=\"H4390\"* cherubim|strong=\"H3742\"* stood|strong=\"H5975\"* on|strong=\"H5975\"* the|strong=\"H4390\"* right|strong=\"H3225\"* side|strong=\"H3225\"* of|strong=\"H1004\"* the|strong=\"H4390\"* house|strong=\"H1004\"* when|strong=\"H4390\"* the|strong=\"H4390\"* man went|strong=\"H1004\"* in|strong=\"H1004\"*; and|strong=\"H1004\"* the|strong=\"H4390\"* cloud|strong=\"H6051\"* filled|strong=\"H4390\"* the|strong=\"H4390\"* inner|strong=\"H6442\"* court|strong=\"H2691\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* mounted|strong=\"H4390\"* up|strong=\"H7311\"* from|strong=\"H5921\"* the|strong=\"H5921\"* cherub|strong=\"H3742\"*, and|strong=\"H3068\"* stood|strong=\"H3068\"* over|strong=\"H5921\"* the|strong=\"H5921\"* threshold|strong=\"H4670\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"*; and|strong=\"H3068\"* the|strong=\"H5921\"* house|strong=\"H1004\"* was|strong=\"H3068\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* court|strong=\"H2691\"* was|strong=\"H3068\"* full|strong=\"H4390\"* of|strong=\"H1004\"* the|strong=\"H5921\"* brightness|strong=\"H5051\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H8085\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* wings|strong=\"H3671\"* of|strong=\"H6963\"* the|strong=\"H8085\"* cherubim|strong=\"H3742\"* was|strong=\"H6963\"* heard|strong=\"H8085\"* even|strong=\"H5704\"* to|strong=\"H1696\"* the|strong=\"H8085\"* outer|strong=\"H2435\"* court|strong=\"H2691\"*, as|strong=\"H5704\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* God Almighty|strong=\"H7706\"* when|strong=\"H8085\"* he|strong=\"H5704\"* speaks|strong=\"H1696\"*." + }, + { + "verseNum": 6, + "text": "It|strong=\"H1961\"* came|strong=\"H1961\"* to|strong=\"H1961\"* pass|strong=\"H1961\"*, when|strong=\"H1961\"* he|strong=\"H6680\"* commanded|strong=\"H6680\"* the|strong=\"H3947\"* man clothed|strong=\"H3847\"* in|strong=\"H3847\"* linen, saying, “Take|strong=\"H3947\"* fire from|strong=\"H3947\"* between the|strong=\"H3947\"* whirling|strong=\"H1534\"* wheels|strong=\"H1534\"*, from|strong=\"H3947\"* between the|strong=\"H3947\"* cherubim|strong=\"H3742\"*,” that|strong=\"H1961\"* he|strong=\"H6680\"* went|strong=\"H1961\"* in|strong=\"H3847\"* and|strong=\"H5975\"* stood|strong=\"H5975\"* beside a|strong=\"H3068\"* wheel|strong=\"H1534\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5414\"* cherub|strong=\"H3742\"* stretched|strong=\"H7971\"* out|strong=\"H3318\"* his|strong=\"H5375\"* hand|strong=\"H3027\"* from|strong=\"H3318\"* between the|strong=\"H5414\"* cherubim|strong=\"H3742\"* to|strong=\"H3318\"* the|strong=\"H5414\"* fire that|strong=\"H5414\"* was|strong=\"H3027\"* between the|strong=\"H5414\"* cherubim|strong=\"H3742\"*, and|strong=\"H7971\"* took|strong=\"H3947\"* some|strong=\"H3027\"* of|strong=\"H3027\"* it|strong=\"H5414\"*, and|strong=\"H7971\"* put|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H3318\"* the|strong=\"H5414\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* him|strong=\"H5414\"* who|strong=\"H3742\"* was|strong=\"H3027\"* clothed|strong=\"H3847\"* in|strong=\"H3847\"* linen, who|strong=\"H3742\"* took|strong=\"H3947\"* it|strong=\"H5414\"* and|strong=\"H7971\"* went|strong=\"H3318\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H7200\"* form|strong=\"H8403\"* of|strong=\"H3027\"* a|strong=\"H3068\"* man|strong=\"H7200\"*’s hand|strong=\"H3027\"* appeared|strong=\"H7200\"* here in|strong=\"H3027\"* the|strong=\"H7200\"* cherubim|strong=\"H3742\"* under|strong=\"H8478\"* their|strong=\"H7200\"* wings|strong=\"H3671\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H2009\"* looked|strong=\"H7200\"*, and|strong=\"H5869\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* were|strong=\"H5869\"* four wheels beside the|strong=\"H7200\"* cherubim|strong=\"H3742\"*, one|strong=\"H7200\"* wheel beside one|strong=\"H7200\"* cherub|strong=\"H3742\"*, and|strong=\"H5869\"* another|strong=\"H7200\"* wheel beside another|strong=\"H7200\"* cherub|strong=\"H3742\"*. The|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H5869\"* the|strong=\"H7200\"* wheels was|strong=\"H3742\"* like|strong=\"H4758\"* a|strong=\"H3068\"* beryl|strong=\"H8658\"* stone." + }, + { + "verseNum": 10, + "text": "As|strong=\"H1961\"* for|strong=\"H1961\"* their|strong=\"H8432\"* appearance|strong=\"H4758\"*, the|strong=\"H8432\"* four of|strong=\"H8432\"* them|strong=\"H8432\"* had|strong=\"H1961\"* one|strong=\"H1961\"* likeness|strong=\"H1823\"*, like|strong=\"H1961\"* a|strong=\"H3068\"* wheel within|strong=\"H8432\"* a|strong=\"H3068\"* wheel." + }, + { + "verseNum": 11, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* went|strong=\"H3212\"*, they|strong=\"H3588\"* went|strong=\"H3212\"* in|strong=\"H3212\"* their|strong=\"H3588\"* four directions|strong=\"H7253\"*. They|strong=\"H3588\"* didn’t turn|strong=\"H6437\"* as|strong=\"H3588\"* they|strong=\"H3588\"* went|strong=\"H3212\"*, but|strong=\"H3588\"* to|strong=\"H3212\"* the|strong=\"H3588\"* place|strong=\"H4725\"* where|strong=\"H4725\"* the|strong=\"H3588\"* head|strong=\"H7218\"* looked|strong=\"H6437\"* they|strong=\"H3588\"* followed|strong=\"H3212\"* it|strong=\"H3588\"*. They|strong=\"H3588\"* didn’t turn|strong=\"H6437\"* as|strong=\"H3588\"* they|strong=\"H3588\"* went|strong=\"H3212\"*." + }, + { + "verseNum": 12, + "text": "Their|strong=\"H3605\"* whole|strong=\"H3605\"* body|strong=\"H1320\"*, including|strong=\"H3605\"* their|strong=\"H3605\"* backs|strong=\"H1354\"*, their|strong=\"H3605\"* hands|strong=\"H3027\"*, their|strong=\"H3605\"* wings|strong=\"H3671\"*, and|strong=\"H3027\"* the|strong=\"H3605\"* wheels, were|strong=\"H5869\"* full|strong=\"H4392\"* of|strong=\"H3027\"* eyes|strong=\"H5869\"* all|strong=\"H3605\"* around|strong=\"H5439\"*, even|strong=\"H5869\"* the|strong=\"H3605\"* wheels that|strong=\"H3605\"* the|strong=\"H3605\"* four of|strong=\"H3027\"* them|strong=\"H3027\"* had|strong=\"H5869\"*." + }, + { + "verseNum": 13, + "text": "As|strong=\"H7121\"* for|strong=\"H7121\"* the|strong=\"H7121\"* wheels|strong=\"H1534\"*, they|strong=\"H7121\"* were called|strong=\"H7121\"* in|strong=\"H7121\"* my|strong=\"H7121\"* hearing, “the|strong=\"H7121\"* whirling|strong=\"H1534\"* wheels|strong=\"H1534\"*”." + }, + { + "verseNum": 14, + "text": "Every one|strong=\"H7992\"* of|strong=\"H6440\"* them|strong=\"H6440\"* had|strong=\"H3742\"* four faces|strong=\"H6440\"*. The|strong=\"H6440\"* first|strong=\"H6440\"* face|strong=\"H6440\"* was|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* cherub|strong=\"H3742\"*. The|strong=\"H6440\"* second|strong=\"H8145\"* face|strong=\"H6440\"* was|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* a|strong=\"H3068\"* man|strong=\"H6440\"*. The|strong=\"H6440\"* third|strong=\"H7992\"* face|strong=\"H6440\"* was|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* a|strong=\"H3068\"* lion. The|strong=\"H6440\"* fourth|strong=\"H7243\"* was|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* an|strong=\"H6440\"* eagle|strong=\"H5404\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H7200\"* cherubim|strong=\"H3742\"* mounted up|strong=\"H7200\"*. This|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H7200\"* living|strong=\"H2416\"* creature|strong=\"H2416\"* that|strong=\"H7200\"* I|strong=\"H7200\"* saw|strong=\"H7200\"* by|strong=\"H7200\"* the|strong=\"H7200\"* river|strong=\"H5104\"* Chebar|strong=\"H3529\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H5375\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* went|strong=\"H3212\"*, the|strong=\"H5921\"* wheels went|strong=\"H3212\"* beside|strong=\"H5921\"* them|strong=\"H1992\"*; and|strong=\"H3212\"* when|strong=\"H5375\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H5375\"* wings|strong=\"H3671\"* to|strong=\"H3212\"* mount up|strong=\"H5375\"* from|strong=\"H5921\"* the|strong=\"H5921\"* earth, the|strong=\"H5921\"* wheels also|strong=\"H1571\"* didn’t turn|strong=\"H5437\"* from|strong=\"H5921\"* beside|strong=\"H5921\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 17, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* stood|strong=\"H5975\"*, these stood|strong=\"H5975\"*. When|strong=\"H3588\"* they|strong=\"H3588\"* mounted up|strong=\"H7311\"*, these mounted up|strong=\"H7311\"* with|strong=\"H5975\"* them|strong=\"H5975\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* spirit|strong=\"H7307\"* of|strong=\"H7307\"* the|strong=\"H3588\"* living|strong=\"H2416\"* creature|strong=\"H2416\"* was|strong=\"H7307\"* in|strong=\"H5975\"* them|strong=\"H5975\"*." + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* over|strong=\"H5921\"* the|strong=\"H5921\"* threshold|strong=\"H4670\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* and|strong=\"H3068\"* stood|strong=\"H5975\"* over|strong=\"H5921\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5921\"* cherubim|strong=\"H3742\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H3068\"* wings|strong=\"H3671\"* and|strong=\"H3478\"* mounted up|strong=\"H5375\"* from|strong=\"H4480\"* the|strong=\"H5921\"* earth in|strong=\"H5921\"* my|strong=\"H3068\"* sight|strong=\"H5869\"* when|strong=\"H3318\"* they|strong=\"H3068\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, with|strong=\"H1004\"* the|strong=\"H5921\"* wheels beside|strong=\"H5921\"* them|strong=\"H5921\"*. Then|strong=\"H3318\"* they|strong=\"H3068\"* stood|strong=\"H5975\"* at|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H1004\"* the|strong=\"H5921\"* east|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H3478\"* the|strong=\"H5921\"* glory|strong=\"H3519\"* of|strong=\"H1004\"* the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* was|strong=\"H3068\"* over|strong=\"H5921\"* them|strong=\"H5921\"* above|strong=\"H4605\"*." + }, + { + "verseNum": 20, + "text": "This|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H7200\"* living|strong=\"H2416\"* creature|strong=\"H2416\"* that|strong=\"H3588\"* I|strong=\"H3588\"* saw|strong=\"H7200\"* under|strong=\"H8478\"* the|strong=\"H7200\"* God of|strong=\"H8478\"* Israel|strong=\"H3478\"* by|strong=\"H3478\"* the|strong=\"H7200\"* river|strong=\"H5104\"* Chebar|strong=\"H3529\"*; and|strong=\"H3478\"* I|strong=\"H3588\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H3478\"* cherubim|strong=\"H3742\"*." + }, + { + "verseNum": 21, + "text": "Every|strong=\"H8478\"* one|strong=\"H3671\"* had|strong=\"H3027\"* four faces|strong=\"H6440\"*, and|strong=\"H3027\"* every|strong=\"H8478\"* one|strong=\"H3671\"* four wings|strong=\"H3671\"*. The|strong=\"H6440\"* likeness|strong=\"H1823\"* of|strong=\"H3027\"* the|strong=\"H6440\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* a|strong=\"H3068\"* man|strong=\"H6440\"* was|strong=\"H3027\"* under|strong=\"H8478\"* their|strong=\"H6440\"* wings|strong=\"H3671\"*." + }, + { + "verseNum": 22, + "text": "As|strong=\"H6440\"* for|strong=\"H5921\"* the|strong=\"H6440\"* likeness|strong=\"H1823\"* of|strong=\"H6440\"* their|strong=\"H6440\"* faces|strong=\"H6440\"*, they|strong=\"H1992\"* were|strong=\"H1992\"* the|strong=\"H6440\"* faces|strong=\"H6440\"* which|strong=\"H1992\"* I|strong=\"H5921\"* saw|strong=\"H7200\"* by|strong=\"H5921\"* the|strong=\"H6440\"* river|strong=\"H5104\"* Chebar|strong=\"H3529\"*, their|strong=\"H6440\"* appearances|strong=\"H4758\"* and|strong=\"H3212\"* themselves|strong=\"H1992\"*. They|strong=\"H1992\"* each went|strong=\"H3212\"* straight|strong=\"H5676\"* forward|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Moreover|strong=\"H2009\"* the|strong=\"H7200\"* Spirit|strong=\"H7307\"* lifted|strong=\"H5375\"* me|strong=\"H7200\"* up|strong=\"H5375\"* and|strong=\"H1121\"* brought|strong=\"H5375\"* me|strong=\"H7200\"* to|strong=\"H3068\"* the|strong=\"H7200\"* east|strong=\"H6921\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, which|strong=\"H3068\"* looks|strong=\"H7200\"* eastward|strong=\"H6921\"*. Behold|strong=\"H2009\"*, twenty-five|strong=\"H6242\"* men|strong=\"H1121\"* were|strong=\"H5971\"* at|strong=\"H3068\"* the|strong=\"H7200\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H7200\"* gate|strong=\"H8179\"*; and|strong=\"H1121\"* I|strong=\"H2009\"* saw|strong=\"H7200\"* among|strong=\"H8432\"* them|strong=\"H7200\"* Jaazaniah|strong=\"H2970\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azzur|strong=\"H5809\"*, and|strong=\"H1121\"* Pelatiah|strong=\"H6410\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Benaiah|strong=\"H1141\"*, princes|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H7200\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H2803\"* said to|strong=\"H1121\"* me|strong=\"H2803\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, these|strong=\"H2063\"* are|strong=\"H1121\"* the|strong=\"H1121\"* men|strong=\"H1121\"* who|strong=\"H1121\"* devise|strong=\"H2803\"* iniquity, and|strong=\"H1121\"* who|strong=\"H1121\"* give|strong=\"H3289\"* wicked|strong=\"H7451\"* counsel|strong=\"H6098\"* in|strong=\"H5892\"* this|strong=\"H2063\"* city|strong=\"H5892\"*;" + }, + { + "verseNum": 3, + "text": "who|strong=\"H1931\"* say, ‘The|strong=\"H1129\"* time is|strong=\"H1931\"* not|strong=\"H3808\"* near|strong=\"H7138\"* to|strong=\"H1004\"* build|strong=\"H1129\"* houses|strong=\"H1004\"*. This|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H1129\"* cauldron, and|strong=\"H1004\"* we|strong=\"H3068\"* are|strong=\"H1004\"* the|strong=\"H1129\"* meat|strong=\"H1320\"*.’" + }, + { + "verseNum": 4, + "text": "Therefore|strong=\"H3651\"* prophesy|strong=\"H5012\"* against|strong=\"H5921\"* them|strong=\"H5921\"*. Prophesy|strong=\"H5012\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*.”" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H3478\"* he|strong=\"H3651\"* said|strong=\"H3651\"* to|strong=\"H3478\"* me|strong=\"H5921\"*, “Speak, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Thus|strong=\"H3541\"* you|strong=\"H5921\"* have|strong=\"H3068\"* said|strong=\"H3651\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*; for|strong=\"H5921\"* I|strong=\"H3541\"* know|strong=\"H3045\"* the|strong=\"H5921\"* things|strong=\"H3478\"* that|strong=\"H3045\"* come|strong=\"H5307\"* into|strong=\"H5307\"* your|strong=\"H3068\"* mind|strong=\"H7307\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H7235\"* have|strong=\"H5892\"* multiplied|strong=\"H7235\"* your|strong=\"H7235\"* slain|strong=\"H2491\"* in|strong=\"H5892\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* you|strong=\"H7235\"* have|strong=\"H5892\"* filled|strong=\"H4390\"* its|strong=\"H4390\"* streets|strong=\"H2351\"* with|strong=\"H4390\"* the|strong=\"H4390\"* slain|strong=\"H2491\"*.”" + }, + { + "verseNum": 7, + "text": "“‘Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Your|strong=\"H7760\"* slain|strong=\"H2491\"* whom|strong=\"H1992\"* you|strong=\"H7760\"* have|strong=\"H1992\"* laid|strong=\"H7760\"* in|strong=\"H8432\"* the|strong=\"H3069\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* it|strong=\"H7760\"*, they|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H3069\"* meat|strong=\"H1320\"*, and|strong=\"H3318\"* this|strong=\"H3651\"* is|strong=\"H1931\"* the|strong=\"H3069\"* cauldron; but|strong=\"H1992\"* you|strong=\"H7760\"* will|strong=\"H1320\"* be|strong=\"H1320\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H8432\"* the|strong=\"H3069\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* it|strong=\"H7760\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H5921\"* have|strong=\"H5921\"* feared|strong=\"H3372\"* the|strong=\"H5002\"* sword|strong=\"H2719\"*; and|strong=\"H2719\"* I|strong=\"H5921\"* will|strong=\"H2719\"* bring the|strong=\"H5002\"* sword|strong=\"H2719\"* on|strong=\"H5921\"* you|strong=\"H5921\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "“I|strong=\"H5414\"* will|strong=\"H3027\"* bring|strong=\"H3318\"* you|strong=\"H5414\"* out|strong=\"H3318\"* of|strong=\"H3027\"* the|strong=\"H5414\"* middle|strong=\"H8432\"* of|strong=\"H3027\"* it|strong=\"H5414\"*, and|strong=\"H3027\"* deliver|strong=\"H5414\"* you|strong=\"H5414\"* into|strong=\"H8432\"* the|strong=\"H5414\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* strangers|strong=\"H2114\"*, and|strong=\"H3027\"* will|strong=\"H3027\"* execute|strong=\"H6213\"* judgments|strong=\"H8201\"* among|strong=\"H8432\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* fall|strong=\"H5307\"* by|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* judge|strong=\"H8199\"* you|strong=\"H3588\"* in|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*. Then|strong=\"H5307\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "This|strong=\"H1931\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* your|strong=\"H1961\"* cauldron, neither|strong=\"H3808\"* will|strong=\"H1961\"* you|strong=\"H3808\"* be|strong=\"H1961\"* the|strong=\"H8432\"* meat|strong=\"H1320\"* in|strong=\"H3478\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H1366\"* it|strong=\"H1931\"*. I|strong=\"H3808\"* will|strong=\"H1961\"* judge|strong=\"H8199\"* you|strong=\"H3808\"* in|strong=\"H3478\"* the|strong=\"H8432\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* my|strong=\"H3068\"* statutes|strong=\"H2706\"*. You|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* executed|strong=\"H6213\"* my|strong=\"H3068\"* ordinances|strong=\"H4941\"*, but|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"* after|strong=\"H3588\"* the|strong=\"H3588\"* ordinances|strong=\"H4941\"* of|strong=\"H3068\"* the|strong=\"H3588\"* nations|strong=\"H1471\"* that|strong=\"H3588\"* are|strong=\"H1471\"* around|strong=\"H5439\"* you|strong=\"H3588\"*.”’”" + }, + { + "verseNum": 13, + "text": "When|strong=\"H1961\"* I|strong=\"H5921\"* prophesied|strong=\"H5012\"*, Pelatiah|strong=\"H6410\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Benaiah|strong=\"H1141\"* died|strong=\"H4191\"*. Then|strong=\"H1961\"* I|strong=\"H5921\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* on|strong=\"H5921\"* my|strong=\"H5921\"* face|strong=\"H6440\"*, and|strong=\"H1121\"* cried|strong=\"H2199\"* with|strong=\"H6213\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*, and|strong=\"H1121\"* said, “Ah Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*! Will|strong=\"H1961\"* you|strong=\"H6440\"* make|strong=\"H6213\"* a|strong=\"H3068\"* full|strong=\"H3617\"* end|strong=\"H3617\"* of|strong=\"H1121\"* the|strong=\"H6440\"* remnant|strong=\"H7611\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*?”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 15, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, your|strong=\"H3068\"* brothers|strong=\"H1121\"*, even|strong=\"H3068\"* your|strong=\"H3068\"* brothers|strong=\"H1121\"*, the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H3068\"* relatives|strong=\"H1121\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H5414\"*, are|strong=\"H1121\"* the|strong=\"H3605\"* ones|strong=\"H1121\"* to|strong=\"H3478\"* whom the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* have|strong=\"H3068\"* said, ‘Go|strong=\"H3068\"* far|strong=\"H7368\"* away|strong=\"H7368\"* from|strong=\"H5921\"* Yahweh|strong=\"H3068\"*. This|strong=\"H1931\"* land has|strong=\"H3068\"* been|strong=\"H3605\"* given|strong=\"H5414\"* to|strong=\"H3478\"* us|strong=\"H5414\"* for|strong=\"H5921\"* a|strong=\"H3068\"* possession|strong=\"H4181\"*.’" + }, + { + "verseNum": 16, + "text": "“Therefore|strong=\"H3651\"* say, ‘The|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Whereas|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* removed|strong=\"H7368\"* them|strong=\"H1961\"* far|strong=\"H7368\"* off|strong=\"H7368\"* among|strong=\"H8033\"* the|strong=\"H3588\"* nations|strong=\"H1471\"*, and|strong=\"H8033\"* whereas|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* scattered|strong=\"H6327\"* them|strong=\"H1961\"* among|strong=\"H8033\"* the|strong=\"H3588\"* countries, yet|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* to|strong=\"H1961\"* them|strong=\"H1961\"* a|strong=\"H3068\"* sanctuary|strong=\"H4720\"* for|strong=\"H3588\"* a|strong=\"H3068\"* little|strong=\"H4592\"* while|strong=\"H4592\"* in|strong=\"H8033\"* the|strong=\"H3588\"* countries where|strong=\"H8033\"* they|strong=\"H3588\"* have|strong=\"H1961\"* come|strong=\"H1961\"*.”’" + }, + { + "verseNum": 17, + "text": "“Therefore|strong=\"H3651\"* say|strong=\"H3478\"*, ‘The|strong=\"H5414\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “I|strong=\"H5414\"* will|strong=\"H5971\"* gather|strong=\"H6908\"* you|strong=\"H5414\"* from|strong=\"H4480\"* the|strong=\"H5414\"* peoples|strong=\"H5971\"*, and|strong=\"H3478\"* assemble|strong=\"H6908\"* you|strong=\"H5414\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5414\"* countries where|strong=\"H4480\"* you|strong=\"H5414\"* have|strong=\"H5971\"* been|strong=\"H5971\"* scattered|strong=\"H6327\"*, and|strong=\"H3478\"* I|strong=\"H5414\"* will|strong=\"H5971\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H5414\"* land of|strong=\"H4480\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 18, + "text": "“‘They|strong=\"H8033\"* will|strong=\"H8033\"* come there|strong=\"H8033\"*, and|strong=\"H8033\"* they|strong=\"H8033\"* will|strong=\"H8033\"* take|strong=\"H5493\"* away|strong=\"H5493\"* all|strong=\"H3605\"* its|strong=\"H3605\"* detestable|strong=\"H8251\"* things|strong=\"H8251\"* and|strong=\"H8033\"* all|strong=\"H3605\"* its|strong=\"H3605\"* abominations|strong=\"H8441\"* from|strong=\"H4480\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"H5414\"* will|strong=\"H3820\"* give|strong=\"H5414\"* them|strong=\"H5414\"* one|strong=\"H1320\"* heart|strong=\"H3820\"*, and|strong=\"H3820\"* I|strong=\"H5414\"* will|strong=\"H3820\"* put|strong=\"H5414\"* a|strong=\"H3068\"* new|strong=\"H2319\"* spirit|strong=\"H7307\"* within|strong=\"H7130\"* them|strong=\"H5414\"*. I|strong=\"H5414\"* will|strong=\"H3820\"* take|strong=\"H5493\"* the|strong=\"H5414\"* stony heart|strong=\"H3820\"* out|strong=\"H5414\"* of|strong=\"H7307\"* their|strong=\"H5414\"* flesh|strong=\"H1320\"*, and|strong=\"H3820\"* will|strong=\"H3820\"* give|strong=\"H5414\"* them|strong=\"H5414\"* a|strong=\"H3068\"* heart|strong=\"H3820\"* of|strong=\"H7307\"* flesh|strong=\"H1320\"*," + }, + { + "verseNum": 20, + "text": "that|strong=\"H5971\"* they|strong=\"H6213\"* may|strong=\"H1961\"* walk|strong=\"H3212\"* in|strong=\"H6213\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, and|strong=\"H4941\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*, and|strong=\"H4941\"* do|strong=\"H6213\"* them|strong=\"H6213\"*. They|strong=\"H6213\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H8104\"* people|strong=\"H5971\"*, and|strong=\"H4941\"* I|strong=\"H3212\"* will|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H1961\"* God." + }, + { + "verseNum": 21, + "text": "But|strong=\"H1870\"* as|strong=\"H1980\"* for|strong=\"H5414\"* them|strong=\"H5414\"* whose heart|strong=\"H3820\"* walks|strong=\"H1980\"* after|strong=\"H1980\"* the|strong=\"H5002\"* heart|strong=\"H3820\"* of|strong=\"H7218\"* their|strong=\"H5414\"* detestable|strong=\"H8251\"* things|strong=\"H8251\"* and|strong=\"H1980\"* their|strong=\"H5414\"* abominations|strong=\"H8441\"*, I|strong=\"H5414\"* will|strong=\"H3820\"* bring|strong=\"H5414\"* their|strong=\"H5414\"* way|strong=\"H1870\"* on|strong=\"H1980\"* their|strong=\"H5414\"* own heads|strong=\"H7218\"*,’ says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 22, + "text": "Then|strong=\"H5375\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H5375\"* wings|strong=\"H3671\"*, and|strong=\"H3478\"* the|strong=\"H5921\"* wheels were|strong=\"H3478\"* beside|strong=\"H5921\"* them|strong=\"H5921\"*. The|strong=\"H5921\"* glory|strong=\"H3519\"* of|strong=\"H5921\"* the|strong=\"H5921\"* God of|strong=\"H5921\"* Israel|strong=\"H3478\"* was|strong=\"H3478\"* over|strong=\"H5921\"* them|strong=\"H5921\"* above|strong=\"H4605\"*." + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, and|strong=\"H3068\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"* which|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6924\"* side|strong=\"H6924\"* of|strong=\"H3068\"* the|strong=\"H5921\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H5921\"* Spirit|strong=\"H7307\"* lifted|strong=\"H5375\"* me|strong=\"H7200\"* up|strong=\"H5927\"*, and|strong=\"H7200\"* brought|strong=\"H5927\"* me|strong=\"H7200\"* in|strong=\"H5921\"* the|strong=\"H5921\"* vision|strong=\"H4758\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"* of|strong=\"H7307\"* God into|strong=\"H5927\"* Chaldea|strong=\"H3778\"*, to|strong=\"H5927\"* the|strong=\"H5921\"* captives|strong=\"H1473\"*." + }, + { + "verseNum": 25, + "text": "Then|strong=\"H1696\"* I|strong=\"H1697\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* captives|strong=\"H1473\"* all|strong=\"H3605\"* the|strong=\"H3605\"* things|strong=\"H1697\"* that|strong=\"H7200\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* shown|strong=\"H7200\"* me|strong=\"H7200\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* also|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, you|strong=\"H3588\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H8085\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H8085\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*, who|strong=\"H1121\"* have|strong=\"H5869\"* eyes|strong=\"H5869\"* to|strong=\"H8085\"* see|strong=\"H7200\"*, and|strong=\"H1121\"* don’t see|strong=\"H7200\"*, who|strong=\"H1121\"* have|strong=\"H5869\"* ears to|strong=\"H8085\"* hear|strong=\"H8085\"*, and|strong=\"H1121\"* don’t hear|strong=\"H8085\"*; for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* a|strong=\"H3068\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 3, + "text": "“Therefore|strong=\"H3588\"*, you|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, prepare|strong=\"H6213\"* your|strong=\"H7200\"* baggage|strong=\"H3627\"* for|strong=\"H3588\"* moving, and|strong=\"H1121\"* move by|strong=\"H6213\"* day|strong=\"H3119\"* in|strong=\"H6213\"* their|strong=\"H1992\"* sight|strong=\"H5869\"*. You|strong=\"H3588\"* shall|strong=\"H1121\"* move from|strong=\"H1121\"* your|strong=\"H7200\"* place|strong=\"H4725\"* to|strong=\"H6213\"* another|strong=\"H7200\"* place|strong=\"H4725\"* in|strong=\"H6213\"* their|strong=\"H1992\"* sight|strong=\"H5869\"*. It|strong=\"H3588\"* may|strong=\"H6213\"* be|strong=\"H1121\"* they|strong=\"H1992\"* will|strong=\"H5869\"* consider|strong=\"H7200\"*, though|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* a|strong=\"H3068\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H5869\"* shall|strong=\"H5869\"* bring|strong=\"H3318\"* out|strong=\"H3318\"* your|strong=\"H3318\"* baggage|strong=\"H3627\"* by|strong=\"H3318\"* day|strong=\"H3119\"* in|strong=\"H5869\"* their|strong=\"H3318\"* sight|strong=\"H5869\"*, as|strong=\"H3318\"* baggage|strong=\"H3627\"* for|strong=\"H3627\"* moving. You|strong=\"H5869\"* shall|strong=\"H5869\"* go|strong=\"H3318\"* out|strong=\"H3318\"* yourself at|strong=\"H3318\"* evening|strong=\"H6153\"* in|strong=\"H5869\"* their|strong=\"H3318\"* sight|strong=\"H5869\"*, as|strong=\"H3318\"* when|strong=\"H3318\"* men go|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* exile|strong=\"H1473\"*." + }, + { + "verseNum": 5, + "text": "Dig|strong=\"H2864\"* through|strong=\"H2864\"* the|strong=\"H3318\"* wall|strong=\"H7023\"* in|strong=\"H5869\"* their|strong=\"H3318\"* sight|strong=\"H5869\"*, and|strong=\"H5869\"* carry|strong=\"H3318\"* your|strong=\"H3318\"* baggage out|strong=\"H3318\"* that|strong=\"H5869\"* way." + }, + { + "verseNum": 6, + "text": "In|strong=\"H5921\"* their|strong=\"H5375\"* sight|strong=\"H5869\"* you|strong=\"H3588\"* shall|strong=\"H3478\"* bear|strong=\"H5375\"* it|strong=\"H5414\"* on|strong=\"H5921\"* your|strong=\"H5414\"* shoulder|strong=\"H3802\"*, and|strong=\"H3478\"* carry|strong=\"H5375\"* it|strong=\"H5414\"* out|strong=\"H3318\"* in|strong=\"H5921\"* the|strong=\"H6440\"* dark|strong=\"H5939\"*. You|strong=\"H3588\"* shall|strong=\"H3478\"* cover|strong=\"H3680\"* your|strong=\"H5414\"* face|strong=\"H6440\"*, so|strong=\"H5414\"* that|strong=\"H3588\"* you|strong=\"H3588\"* don’t see|strong=\"H7200\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5869\"* set|strong=\"H5414\"* you|strong=\"H3588\"* for|strong=\"H3588\"* a|strong=\"H3068\"* sign|strong=\"H4159\"* to|strong=\"H3318\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 7, + "text": "I|strong=\"H5921\"* did|strong=\"H6213\"* so|strong=\"H3651\"* as|strong=\"H6213\"* I|strong=\"H5921\"* was|strong=\"H3027\"* commanded|strong=\"H6680\"*. I|strong=\"H5921\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* my|strong=\"H5921\"* baggage|strong=\"H3627\"* by|strong=\"H3027\"* day|strong=\"H3119\"*, as|strong=\"H6213\"* baggage|strong=\"H3627\"* for|strong=\"H5921\"* moving, and|strong=\"H3027\"* in|strong=\"H5921\"* the|strong=\"H5921\"* evening|strong=\"H6153\"* I|strong=\"H5921\"* dug|strong=\"H2864\"* through|strong=\"H3027\"* the|strong=\"H5921\"* wall|strong=\"H7023\"* with|strong=\"H6213\"* my|strong=\"H5921\"* hand|strong=\"H3027\"*. I|strong=\"H5921\"* brought|strong=\"H3318\"* it|strong=\"H5921\"* out|strong=\"H3318\"* in|strong=\"H5921\"* the|strong=\"H5921\"* dark|strong=\"H5939\"*, and|strong=\"H3027\"* bore|strong=\"H5375\"* it|strong=\"H5921\"* on|strong=\"H5921\"* my|strong=\"H5921\"* shoulder|strong=\"H3802\"* in|strong=\"H5921\"* their|strong=\"H5375\"* sight|strong=\"H5869\"*." + }, + { + "verseNum": 8, + "text": "In|strong=\"H3068\"* the|strong=\"H3068\"* morning|strong=\"H1242\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 9, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, hasn’t the|strong=\"H6213\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, the|strong=\"H6213\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*, said to|strong=\"H3478\"* you|strong=\"H6213\"*, ‘What|strong=\"H4100\"* are|strong=\"H1121\"* you|strong=\"H6213\"* doing|strong=\"H6213\"*?’" + }, + { + "verseNum": 10, + "text": "“Say|strong=\"H3478\"* to|strong=\"H3478\"* them|strong=\"H1992\"*, ‘The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “This|strong=\"H2088\"* burden|strong=\"H4853\"* concerns the|strong=\"H3605\"* prince|strong=\"H5387\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* among|strong=\"H8432\"* whom|strong=\"H1992\"* they|strong=\"H1992\"* are|strong=\"H1992\"*.”’" + }, + { + "verseNum": 11, + "text": "“Say, ‘I|strong=\"H3651\"* am your|strong=\"H6213\"* sign|strong=\"H4159\"*. As|strong=\"H6213\"* I|strong=\"H3651\"* have done|strong=\"H6213\"*, so|strong=\"H3651\"* will|strong=\"H6213\"* it|strong=\"H6213\"* be done|strong=\"H6213\"* to|strong=\"H3212\"* them|strong=\"H6213\"*. They|strong=\"H3651\"* will|strong=\"H6213\"* go|strong=\"H3212\"* into|strong=\"H3212\"* exile|strong=\"H1473\"*, into|strong=\"H3212\"* captivity|strong=\"H7628\"*." + }, + { + "verseNum": 12, + "text": "“‘The|strong=\"H6440\"* prince|strong=\"H5387\"* who|strong=\"H1931\"* is|strong=\"H1931\"* among|strong=\"H8432\"* them|strong=\"H6440\"* will|strong=\"H5869\"* bear|strong=\"H5375\"* his|strong=\"H5375\"* baggage on|strong=\"H7200\"* his|strong=\"H5375\"* shoulder|strong=\"H3802\"* in|strong=\"H8432\"* the|strong=\"H6440\"* dark|strong=\"H5939\"*, and|strong=\"H5869\"* will|strong=\"H5869\"* go|strong=\"H3318\"* out|strong=\"H3318\"*. They|strong=\"H3808\"* will|strong=\"H5869\"* dig|strong=\"H2864\"* through|strong=\"H8432\"* the|strong=\"H6440\"* wall|strong=\"H7023\"* to|strong=\"H3318\"* carry|strong=\"H5375\"* things|strong=\"H3808\"* out|strong=\"H3318\"* that|strong=\"H7200\"* way|strong=\"H6440\"*. He|strong=\"H1931\"* will|strong=\"H5869\"* cover|strong=\"H3680\"* his|strong=\"H5375\"* face|strong=\"H6440\"*, because|strong=\"H6440\"* he|strong=\"H1931\"* will|strong=\"H5869\"* not|strong=\"H3808\"* see|strong=\"H7200\"* the|strong=\"H6440\"* land|strong=\"H6440\"* with|strong=\"H6440\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H5921\"* will|strong=\"H3808\"* also|strong=\"H3778\"* spread|strong=\"H6566\"* my|strong=\"H7200\"* net|strong=\"H7568\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H8033\"* he|strong=\"H8033\"* will|strong=\"H3808\"* be|strong=\"H4191\"* taken|strong=\"H8610\"* in|strong=\"H5921\"* my|strong=\"H7200\"* snare|strong=\"H4686\"*. I|strong=\"H5921\"* will|strong=\"H3808\"* bring|strong=\"H4191\"* him|strong=\"H5921\"* to|strong=\"H4191\"* Babylon to|strong=\"H4191\"* the|strong=\"H5921\"* land of|strong=\"H5921\"* the|strong=\"H5921\"* Chaldeans|strong=\"H3778\"*; yet|strong=\"H3808\"* he|strong=\"H8033\"* will|strong=\"H3808\"* not|strong=\"H3808\"* see|strong=\"H7200\"* it|strong=\"H5921\"*, though he|strong=\"H8033\"* will|strong=\"H3808\"* die|strong=\"H4191\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3605\"* will|strong=\"H2719\"* scatter|strong=\"H2219\"* toward every|strong=\"H3605\"* wind|strong=\"H7307\"* all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H2719\"* around|strong=\"H5439\"* him|strong=\"H3605\"* to|strong=\"H7307\"* help|strong=\"H5828\"* him|strong=\"H3605\"*, and|strong=\"H2719\"* all|strong=\"H3605\"* his|strong=\"H3605\"* bands. I|strong=\"H3605\"* will|strong=\"H2719\"* draw|strong=\"H7324\"* out|strong=\"H7324\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* after them|strong=\"H5439\"*." + }, + { + "verseNum": 15, + "text": "“‘They|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* when|strong=\"H3588\"* I|strong=\"H3588\"* disperse|strong=\"H2219\"* them|strong=\"H6327\"* among the|strong=\"H3588\"* nations|strong=\"H1471\"* and|strong=\"H3068\"* scatter|strong=\"H2219\"* them|strong=\"H6327\"* through|strong=\"H3588\"* the|strong=\"H3588\"* countries." + }, + { + "verseNum": 16, + "text": "But|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* leave|strong=\"H3498\"* a|strong=\"H3068\"* few|strong=\"H4557\"* men|strong=\"H3605\"* of|strong=\"H3068\"* them|strong=\"H1992\"* from|strong=\"H1471\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, from|strong=\"H1471\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*, and|strong=\"H3068\"* from|strong=\"H1471\"* the|strong=\"H3605\"* pestilence|strong=\"H1698\"*, that|strong=\"H3588\"* they|strong=\"H1992\"* may|strong=\"H3068\"* declare|strong=\"H5608\"* all|strong=\"H3605\"* their|strong=\"H3605\"* abominations|strong=\"H8441\"* among|strong=\"H2719\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* they|strong=\"H1992\"* come|strong=\"H3045\"*. Then|strong=\"H4616\"* they|strong=\"H1992\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 17, + "text": "Moreover|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 18, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, eat|strong=\"H3899\"* your|strong=\"H8354\"* bread|strong=\"H3899\"* with|strong=\"H3899\"* quaking|strong=\"H7494\"*, and|strong=\"H1121\"* drink|strong=\"H8354\"* your|strong=\"H8354\"* water|strong=\"H4325\"* with|strong=\"H3899\"* trembling|strong=\"H7269\"* and|strong=\"H1121\"* with|strong=\"H3899\"* fearfulness." + }, + { + "verseNum": 19, + "text": "Tell|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H3427\"* the|strong=\"H3605\"* land, ‘The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H3069\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3478\"* the|strong=\"H3605\"* land of|strong=\"H3427\"* Israel|strong=\"H3478\"*: “They|strong=\"H5971\"* will|strong=\"H5971\"* eat|strong=\"H3899\"* their|strong=\"H3605\"* bread|strong=\"H3899\"* with|strong=\"H3427\"* fearfulness and|strong=\"H3478\"* drink|strong=\"H8354\"* their|strong=\"H3605\"* water|strong=\"H4325\"* in|strong=\"H3427\"* dismay, that|strong=\"H5971\"* her|strong=\"H3605\"* land may|strong=\"H5971\"* be|strong=\"H3478\"* desolate|strong=\"H3456\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H5971\"* is|strong=\"H3478\"* therein|strong=\"H4393\"*, because|strong=\"H4616\"* of|strong=\"H3427\"* the|strong=\"H3605\"* violence|strong=\"H2555\"* of|strong=\"H3427\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* dwell|strong=\"H3427\"* therein|strong=\"H4393\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3588\"* cities|strong=\"H5892\"* that|strong=\"H3588\"* are|strong=\"H3068\"* inhabited|strong=\"H3427\"* will|strong=\"H3068\"* be|strong=\"H1961\"* laid|strong=\"H2717\"* waste|strong=\"H2717\"*, and|strong=\"H3068\"* the|strong=\"H3588\"* land will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*. Then|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*.”’”" + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 22, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, what|strong=\"H4100\"* is|strong=\"H2088\"* this|strong=\"H2088\"* proverb|strong=\"H4912\"* that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying, ‘The|strong=\"H3605\"* days|strong=\"H3117\"* are|strong=\"H3117\"* prolonged, and|strong=\"H1121\"* every|strong=\"H3605\"* vision|strong=\"H2377\"* fails’?" + }, + { + "verseNum": 23, + "text": "Tell|strong=\"H1696\"* them|strong=\"H7126\"* therefore|strong=\"H3651\"*, ‘The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “I|strong=\"H3588\"* will|strong=\"H3478\"* make|strong=\"H7673\"* this|strong=\"H2088\"* proverb|strong=\"H4912\"* to|strong=\"H1696\"* cease|strong=\"H7673\"*, and|strong=\"H3478\"* they|strong=\"H3588\"* will|strong=\"H3478\"* no|strong=\"H3808\"* more|strong=\"H5750\"* use|strong=\"H4911\"* it|strong=\"H7126\"* as|strong=\"H1697\"* a|strong=\"H3068\"* proverb|strong=\"H4912\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*;”’ but|strong=\"H3588\"* tell|strong=\"H1696\"* them|strong=\"H7126\"*, ‘“The|strong=\"H3605\"* days|strong=\"H3117\"* are|strong=\"H3117\"* at|strong=\"H3478\"* hand|strong=\"H7126\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* fulfillment|strong=\"H1697\"* of|strong=\"H3117\"* every|strong=\"H3605\"* vision|strong=\"H2377\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"H3588\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* any|strong=\"H3605\"* false|strong=\"H7723\"* vision|strong=\"H2377\"* nor|strong=\"H3808\"* flattering|strong=\"H2509\"* divination|strong=\"H4738\"* within|strong=\"H8432\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* speak|strong=\"H1696\"*, and|strong=\"H3068\"* the|strong=\"H5002\"* word|strong=\"H1697\"* that|strong=\"H3588\"* I|strong=\"H3588\"* speak|strong=\"H1696\"* will|strong=\"H3068\"* be|strong=\"H3808\"* performed|strong=\"H6213\"*. It|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3808\"* no|strong=\"H3808\"* more|strong=\"H5750\"* deferred|strong=\"H4900\"*; for|strong=\"H3588\"* in|strong=\"H3068\"* your|strong=\"H3068\"* days|strong=\"H3117\"*, rebellious|strong=\"H4805\"* house|strong=\"H1004\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* speak|strong=\"H1696\"* the|strong=\"H5002\"* word|strong=\"H1697\"* and|strong=\"H3068\"* will|strong=\"H3068\"* perform|strong=\"H6213\"* it|strong=\"H3588\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 26, + "text": "Again|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 27, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, behold|strong=\"H2009\"*, they|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H3117\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* say|strong=\"H3478\"*, ‘The|strong=\"H3117\"* vision|strong=\"H2377\"* that|strong=\"H3117\"* he|strong=\"H1931\"* sees|strong=\"H2372\"* is|strong=\"H1931\"* for|strong=\"H1004\"* many|strong=\"H7227\"* days|strong=\"H3117\"* to|strong=\"H3478\"* come|strong=\"H7350\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* prophesies|strong=\"H5012\"* of|strong=\"H1121\"* times|strong=\"H6256\"* that|strong=\"H3117\"* are|strong=\"H3117\"* far|strong=\"H7350\"* off|strong=\"H7350\"*.’" + }, + { + "verseNum": 28, + "text": "“Therefore|strong=\"H3651\"* tell|strong=\"H1696\"* them|strong=\"H6213\"*, ‘The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*: “None|strong=\"H3808\"* of|strong=\"H1697\"* my|strong=\"H3605\"* words|strong=\"H1697\"* will|strong=\"H1697\"* be|strong=\"H3808\"* deferred|strong=\"H4900\"* any|strong=\"H3605\"* more|strong=\"H5750\"*, but|strong=\"H3808\"* the|strong=\"H3605\"* word|strong=\"H1697\"* which|strong=\"H1697\"* I|strong=\"H3541\"* speak|strong=\"H1696\"* will|strong=\"H1697\"* be|strong=\"H3808\"* performed|strong=\"H6213\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, prophesy|strong=\"H5012\"* against|strong=\"H5012\"* the|strong=\"H8085\"* prophets|strong=\"H5030\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H3068\"* prophesy|strong=\"H5012\"*, and|strong=\"H1121\"* say|strong=\"H1697\"* to|strong=\"H3478\"* those|strong=\"H8085\"* who|strong=\"H3068\"* prophesy|strong=\"H5012\"* out of|strong=\"H1121\"* their|strong=\"H3068\"* own heart|strong=\"H3820\"*, ‘Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*:" + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Woe|strong=\"H1945\"* to|strong=\"H1980\"* the|strong=\"H5921\"* foolish|strong=\"H5036\"* prophets|strong=\"H5030\"*, who|strong=\"H5030\"* follow|strong=\"H1980\"* their|strong=\"H7200\"* own spirit|strong=\"H7307\"*, and|strong=\"H1980\"* have|strong=\"H5030\"* seen|strong=\"H7200\"* nothing|strong=\"H1115\"*!" + }, + { + "verseNum": 4, + "text": "Israel|strong=\"H3478\"*, your|strong=\"H1961\"* prophets|strong=\"H5030\"* have|strong=\"H1961\"* been|strong=\"H1961\"* like|strong=\"H1961\"* foxes|strong=\"H7776\"* in|strong=\"H3478\"* the|strong=\"H1961\"* waste|strong=\"H2723\"* places|strong=\"H2723\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H5921\"* have|strong=\"H3068\"* not|strong=\"H3808\"* gone|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H5921\"* gaps|strong=\"H6556\"* or|strong=\"H3808\"* built up|strong=\"H5927\"* the|strong=\"H5921\"* wall|strong=\"H1447\"* for|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* stand|strong=\"H5975\"* in|strong=\"H5921\"* the|strong=\"H5921\"* battle|strong=\"H4421\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s day|strong=\"H3117\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H3068\"* have|strong=\"H3068\"* seen|strong=\"H2372\"* falsehood|strong=\"H7723\"* and|strong=\"H6965\"* lying|strong=\"H3577\"* divination|strong=\"H7081\"*, who|strong=\"H3068\"* say|strong=\"H1697\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*;’ but|strong=\"H3808\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* sent|strong=\"H7971\"* them|strong=\"H7971\"*. They|strong=\"H3068\"* have|strong=\"H3068\"* made|strong=\"H3068\"* men to|strong=\"H3068\"* hope|strong=\"H3176\"* that|strong=\"H3068\"* the|strong=\"H5002\"* word|strong=\"H1697\"* would|strong=\"H3068\"* be|strong=\"H3808\"* confirmed|strong=\"H6965\"*." + }, + { + "verseNum": 7, + "text": "Haven’t you|strong=\"H3808\"* seen|strong=\"H2372\"* a|strong=\"H3068\"* false|strong=\"H7723\"* vision|strong=\"H4236\"*, and|strong=\"H3068\"* haven’t you|strong=\"H3808\"* spoken|strong=\"H1696\"* a|strong=\"H3068\"* lying|strong=\"H3577\"* divination|strong=\"H4738\"*, in|strong=\"H3068\"* that|strong=\"H3068\"* you|strong=\"H3808\"* say|strong=\"H1696\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*;’ but|strong=\"H3808\"* I|strong=\"H3808\"* have|strong=\"H3068\"* not|strong=\"H3808\"* spoken|strong=\"H1696\"*?”" + }, + { + "verseNum": 8, + "text": "“‘Therefore|strong=\"H3651\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*: “Because|strong=\"H3282\"* you|strong=\"H3651\"* have|strong=\"H3282\"* spoken|strong=\"H1696\"* falsehood|strong=\"H7723\"* and|strong=\"H1696\"* seen|strong=\"H2372\"* lies|strong=\"H3577\"*, therefore|strong=\"H3651\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* against|strong=\"H1696\"* you|strong=\"H3651\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "“My|strong=\"H3045\"* hand|strong=\"H3027\"* will|strong=\"H1961\"* be|strong=\"H1961\"* against|strong=\"H3027\"* the|strong=\"H3588\"* prophets|strong=\"H5030\"* who|strong=\"H5971\"* see|strong=\"H2374\"* false|strong=\"H7723\"* visions|strong=\"H7723\"* and|strong=\"H3478\"* who|strong=\"H5971\"* utter|strong=\"H7080\"* lying|strong=\"H3577\"* divinations|strong=\"H7080\"*. They|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* in|strong=\"H3478\"* the|strong=\"H3588\"* council|strong=\"H5475\"* of|strong=\"H1004\"* my|strong=\"H3045\"* people|strong=\"H5971\"*, neither|strong=\"H3808\"* will|strong=\"H1961\"* they|strong=\"H3588\"* be|strong=\"H1961\"* written|strong=\"H3789\"* in|strong=\"H3478\"* the|strong=\"H3588\"* writing|strong=\"H3791\"* of|strong=\"H1004\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, neither|strong=\"H3808\"* will|strong=\"H1961\"* they|strong=\"H3588\"* enter into|strong=\"H3027\"* the|strong=\"H3588\"* land of|strong=\"H1004\"* Israel|strong=\"H3478\"*. Then|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H1961\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 10, + "text": "“‘Because|strong=\"H3282\"*, even|strong=\"H1129\"* because|strong=\"H3282\"* they|strong=\"H3282\"* have|strong=\"H5971\"* seduced|strong=\"H2937\"* my|strong=\"H1129\"* people|strong=\"H5971\"*, saying, “Peace|strong=\"H7965\"*;” and|strong=\"H5971\"* there|strong=\"H2009\"* is|strong=\"H1931\"* no peace|strong=\"H7965\"*. When|strong=\"H2009\"* one|strong=\"H1931\"* builds|strong=\"H1129\"* up|strong=\"H1129\"* a|strong=\"H3068\"* wall|strong=\"H2434\"*, behold|strong=\"H2009\"*, they|strong=\"H3282\"* plaster|strong=\"H2902\"* it|strong=\"H1931\"* with|strong=\"H5971\"* whitewash|strong=\"H8602\"*." + }, + { + "verseNum": 11, + "text": "Tell those|strong=\"H1961\"* who plaster|strong=\"H2902\"* it|strong=\"H1961\"* with|strong=\"H2902\"* whitewash|strong=\"H8602\"* that|strong=\"H5307\"* it|strong=\"H1961\"* will|strong=\"H1961\"* fall|strong=\"H5307\"*. There|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* an|strong=\"H1961\"* overflowing|strong=\"H7857\"* shower|strong=\"H1653\"*; and|strong=\"H5307\"* you|strong=\"H7307\"*, great hailstones, will|strong=\"H1961\"* fall|strong=\"H5307\"*. A|strong=\"H3068\"* stormy|strong=\"H5591\"* wind|strong=\"H7307\"* will|strong=\"H1961\"* tear|strong=\"H1234\"* it|strong=\"H1961\"*." + }, + { + "verseNum": 12, + "text": "Behold|strong=\"H2009\"*, when|strong=\"H5307\"* the|strong=\"H2009\"* wall|strong=\"H7023\"* has|strong=\"H2009\"* fallen|strong=\"H5307\"*, won’t it|strong=\"H3808\"* be|strong=\"H3808\"* said to|strong=\"H3808\"* you|strong=\"H3808\"*, “Where|strong=\"H3808\"* is|strong=\"H2009\"* the|strong=\"H2009\"* plaster|strong=\"H2902\"* with|strong=\"H2902\"* which|strong=\"H7023\"* you|strong=\"H3808\"* have|strong=\"H3808\"* plastered|strong=\"H2902\"* it|strong=\"H3808\"*?”" + }, + { + "verseNum": 13, + "text": "“‘Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “I|strong=\"H3541\"* will|strong=\"H1961\"* even|strong=\"H3651\"* tear|strong=\"H1234\"* it|strong=\"H3651\"* with|strong=\"H3651\"* a|strong=\"H3068\"* stormy|strong=\"H5591\"* wind|strong=\"H7307\"* in|strong=\"H1961\"* my|strong=\"H1961\"* wrath|strong=\"H2534\"*. There|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* an|strong=\"H1961\"* overflowing|strong=\"H7857\"* shower|strong=\"H1653\"* in|strong=\"H1961\"* my|strong=\"H1961\"* anger|strong=\"H2534\"*, and|strong=\"H7307\"* great hailstones in|strong=\"H1961\"* wrath|strong=\"H2534\"* to|strong=\"H1961\"* consume|strong=\"H3617\"* it|strong=\"H3651\"*." + }, + { + "verseNum": 14, + "text": "So|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* break|strong=\"H2040\"* down|strong=\"H5307\"* the|strong=\"H3588\"* wall|strong=\"H7023\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* plastered|strong=\"H2902\"* with|strong=\"H3068\"* whitewash|strong=\"H8602\"*, and|strong=\"H3068\"* bring|strong=\"H5060\"* it|strong=\"H3588\"* down|strong=\"H5307\"* to|strong=\"H3068\"* the|strong=\"H3588\"* ground, so|strong=\"H3588\"* that|strong=\"H3588\"* its|strong=\"H3045\"* foundation|strong=\"H3247\"* will|strong=\"H3068\"* be|strong=\"H3068\"* uncovered|strong=\"H1540\"*. It|strong=\"H3588\"* will|strong=\"H3068\"* fall|strong=\"H5307\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* consumed|strong=\"H3615\"* in|strong=\"H3068\"* the|strong=\"H3588\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* it|strong=\"H3588\"*. Then|strong=\"H5307\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "Thus I will|strong=\"H2534\"* accomplish|strong=\"H3615\"* my|strong=\"H3615\"* wrath|strong=\"H2534\"* on|strong=\"H2534\"* the|strong=\"H3615\"* wall|strong=\"H7023\"*, and|strong=\"H2534\"* on|strong=\"H2534\"* those who have plastered|strong=\"H2902\"* it|strong=\"H3615\"* with|strong=\"H2902\"* whitewash|strong=\"H8602\"*. I will|strong=\"H2534\"* tell you|strong=\"H3615\"*, ‘The|strong=\"H3615\"* wall|strong=\"H7023\"* is|strong=\"H2534\"* no more, nor those who plastered|strong=\"H2902\"* it|strong=\"H3615\"*—" + }, + { + "verseNum": 16, + "text": "to|strong=\"H3478\"* wit, the|strong=\"H5002\"* prophets|strong=\"H5030\"* of|strong=\"H5030\"* Israel|strong=\"H3478\"* who|strong=\"H3478\"* prophesy|strong=\"H5012\"* concerning|strong=\"H5012\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3478\"* who|strong=\"H3478\"* see|strong=\"H2374\"* visions|strong=\"H2377\"* of|strong=\"H5030\"* peace|strong=\"H7965\"* for|strong=\"H3389\"* her|strong=\"H3389\"*, and|strong=\"H3478\"* there|strong=\"H7965\"* is|strong=\"H3478\"* no|strong=\"H5030\"* peace|strong=\"H7965\"*,’” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 17, + "text": "You|strong=\"H6440\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, set|strong=\"H7760\"* your|strong=\"H5921\"* face|strong=\"H6440\"* against|strong=\"H5921\"* the|strong=\"H6440\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* your|strong=\"H5921\"* people|strong=\"H5971\"*, who|strong=\"H5971\"* prophesy|strong=\"H5012\"* out|strong=\"H5921\"* of|strong=\"H1121\"* their|strong=\"H7760\"* own|strong=\"H5971\"* heart|strong=\"H3820\"*; and|strong=\"H1121\"* prophesy|strong=\"H5012\"* against|strong=\"H5921\"* them|strong=\"H5921\"*," + }, + { + "verseNum": 18, + "text": "and|strong=\"H3027\"* say, “The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Woe|strong=\"H1945\"* to|strong=\"H6213\"* the|strong=\"H3605\"* women who|strong=\"H3605\"* sew|strong=\"H8609\"* magic bands|strong=\"H7218\"* on|strong=\"H5921\"* all|strong=\"H3605\"* elbows and|strong=\"H3027\"* make|strong=\"H6213\"* veils|strong=\"H4555\"* for|strong=\"H5921\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H3027\"* persons|strong=\"H5315\"* of|strong=\"H3027\"* every|strong=\"H3605\"* stature|strong=\"H6967\"* to|strong=\"H6213\"* hunt|strong=\"H6679\"* souls|strong=\"H5315\"*! Will|strong=\"H5971\"* you|strong=\"H3605\"* hunt|strong=\"H6679\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* of|strong=\"H3027\"* my|strong=\"H3605\"* people|strong=\"H5971\"* and|strong=\"H3027\"* save|strong=\"H2421\"* souls|strong=\"H5315\"* alive|strong=\"H2421\"* for|strong=\"H5921\"* yourselves|strong=\"H5315\"*?" + }, + { + "verseNum": 19, + "text": "You|strong=\"H3808\"* have|strong=\"H5971\"* profaned|strong=\"H2490\"* me|strong=\"H5315\"* among|strong=\"H5971\"* my|strong=\"H8085\"* people|strong=\"H5971\"* for|strong=\"H4191\"* handfuls|strong=\"H8168\"* of|strong=\"H5971\"* barley|strong=\"H8184\"* and|strong=\"H3899\"* for|strong=\"H4191\"* pieces|strong=\"H6595\"* of|strong=\"H5971\"* bread|strong=\"H3899\"*, to|strong=\"H4191\"* kill|strong=\"H4191\"* the|strong=\"H8085\"* souls|strong=\"H5315\"* who|strong=\"H5971\"* should|strong=\"H3899\"* not|strong=\"H3808\"* die|strong=\"H4191\"* and|strong=\"H3899\"* to|strong=\"H4191\"* save|strong=\"H2421\"* the|strong=\"H8085\"* souls|strong=\"H5315\"* alive|strong=\"H2421\"* who|strong=\"H5971\"* should|strong=\"H3899\"* not|strong=\"H3808\"* live|strong=\"H2421\"*, by|strong=\"H4191\"* your|strong=\"H8085\"* lying|strong=\"H3577\"* to|strong=\"H4191\"* my|strong=\"H8085\"* people|strong=\"H5971\"* who|strong=\"H5971\"* listen|strong=\"H8085\"* to|strong=\"H4191\"* lies|strong=\"H3577\"*.’" + }, + { + "verseNum": 20, + "text": "“Therefore|strong=\"H3651\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* against|strong=\"H5921\"* your|strong=\"H5921\"* magic bands|strong=\"H3704\"*, with|strong=\"H5921\"* which|strong=\"H8033\"* you|strong=\"H7971\"* hunt|strong=\"H6679\"* the|strong=\"H5921\"* souls|strong=\"H5315\"* to|strong=\"H7971\"* make them|strong=\"H5921\"* fly|strong=\"H6524\"*, and|strong=\"H7971\"* I|strong=\"H2005\"* will|strong=\"H5315\"* tear|strong=\"H7167\"* them|strong=\"H5921\"* from|strong=\"H5921\"* your|strong=\"H5921\"* arms|strong=\"H2220\"*. I|strong=\"H2005\"* will|strong=\"H5315\"* let|strong=\"H7971\"* the|strong=\"H5921\"* souls|strong=\"H5315\"* fly|strong=\"H6524\"* free|strong=\"H7971\"*, even|strong=\"H3651\"* the|strong=\"H5921\"* souls|strong=\"H5315\"* whom you|strong=\"H7971\"* ensnare like|strong=\"H3651\"* birds|strong=\"H6524\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* also|strong=\"H3068\"* tear|strong=\"H7167\"* your|strong=\"H3068\"* veils|strong=\"H4555\"* and|strong=\"H3068\"* deliver|strong=\"H5337\"* my|strong=\"H3068\"* people|strong=\"H5971\"* out|strong=\"H3045\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*; and|strong=\"H3068\"* they|strong=\"H3588\"* will|strong=\"H3068\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* be|strong=\"H1961\"* in|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H3068\"* be|strong=\"H1961\"* ensnared. Then|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "Because|strong=\"H3282\"* with|strong=\"H3027\"* lies|strong=\"H8267\"* you|strong=\"H7725\"* have|strong=\"H3027\"* grieved|strong=\"H3512\"* the|strong=\"H7725\"* heart|strong=\"H3820\"* of|strong=\"H3027\"* the|strong=\"H7725\"* righteous|strong=\"H6662\"*, whom I|strong=\"H3282\"* have|strong=\"H3027\"* not|strong=\"H3808\"* made|strong=\"H2388\"* sad|strong=\"H7451\"*; and|strong=\"H7725\"* strengthened|strong=\"H2388\"* the|strong=\"H7725\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H7725\"* wicked|strong=\"H7563\"*, that|strong=\"H3027\"* he|strong=\"H3027\"* should|strong=\"H7563\"* not|strong=\"H3808\"* return|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* wicked|strong=\"H7563\"* way|strong=\"H1870\"*, and|strong=\"H7725\"* be|strong=\"H3808\"* saved|strong=\"H2421\"* alive|strong=\"H2421\"*." + }, + { + "verseNum": 23, + "text": "Therefore|strong=\"H3651\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H5750\"* see|strong=\"H2372\"* false|strong=\"H7723\"* visions|strong=\"H7723\"* nor|strong=\"H3808\"* practice|strong=\"H7080\"* divination|strong=\"H7081\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* deliver|strong=\"H5337\"* my|strong=\"H3068\"* people|strong=\"H5971\"* out|strong=\"H3045\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*. Then|strong=\"H3651\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3478\"* some of|strong=\"H3427\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H3427\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* me|strong=\"H6440\"* and|strong=\"H3478\"* sat|strong=\"H3427\"* before|strong=\"H6440\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 3, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, these|strong=\"H6440\"* men|strong=\"H1121\"* have|strong=\"H1121\"* taken|strong=\"H5927\"* their|strong=\"H5414\"* idols|strong=\"H1544\"* into|strong=\"H5927\"* their|strong=\"H5414\"* heart|strong=\"H3820\"*, and|strong=\"H1121\"* put|strong=\"H5414\"* the|strong=\"H6440\"* stumbling|strong=\"H4383\"* block|strong=\"H4383\"* of|strong=\"H1121\"* their|strong=\"H5414\"* iniquity|strong=\"H5771\"* before|strong=\"H6440\"* their|strong=\"H5414\"* face|strong=\"H6440\"*. Should I|strong=\"H5414\"* be|strong=\"H1121\"* inquired|strong=\"H1875\"* of|strong=\"H1121\"* at|strong=\"H5921\"* all|strong=\"H5414\"* by|strong=\"H5921\"* them|strong=\"H5414\"*?" + }, + { + "verseNum": 4, + "text": "Therefore|strong=\"H3651\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H6440\"* and|strong=\"H3478\"* tell|strong=\"H1696\"* them|strong=\"H6440\"*, ‘The|strong=\"H6440\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Every|strong=\"H7760\"* man|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* who|strong=\"H3068\"* takes|strong=\"H7760\"* his|strong=\"H7760\"* idols|strong=\"H1544\"* into|strong=\"H5927\"* his|strong=\"H7760\"* heart|strong=\"H3820\"* and|strong=\"H3478\"* puts|strong=\"H7760\"* the|strong=\"H6440\"* stumbling|strong=\"H4383\"* block|strong=\"H4383\"* of|strong=\"H1004\"* his|strong=\"H7760\"* iniquity|strong=\"H5771\"* before|strong=\"H6440\"* his|strong=\"H7760\"* face|strong=\"H6440\"* then|strong=\"H6030\"* comes|strong=\"H5927\"* to|strong=\"H1696\"* the|strong=\"H6440\"* prophet|strong=\"H5030\"*, I|strong=\"H3541\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* answer|strong=\"H6030\"* him|strong=\"H6440\"* there|strong=\"H5927\"* according to|strong=\"H1696\"* the|strong=\"H6440\"* multitude|strong=\"H7230\"* of|strong=\"H1004\"* his|strong=\"H7760\"* idols|strong=\"H1544\"*," + }, + { + "verseNum": 5, + "text": "that|strong=\"H3605\"* I|strong=\"H5921\"* may|strong=\"H3478\"* take|strong=\"H8610\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* their|strong=\"H3605\"* own heart|strong=\"H3820\"*, because|strong=\"H5921\"* they|strong=\"H5921\"* are|strong=\"H3478\"* all|strong=\"H3605\"* estranged|strong=\"H2114\"* from|strong=\"H5921\"* me|strong=\"H5921\"* through|strong=\"H5921\"* their|strong=\"H3605\"* idols|strong=\"H1544\"*.”’" + }, + { + "verseNum": 6, + "text": "“Therefore|strong=\"H3651\"* tell|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, ‘The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Return|strong=\"H7725\"*, and|strong=\"H3478\"* turn|strong=\"H7725\"* yourselves|strong=\"H3605\"* from|strong=\"H7725\"* your|strong=\"H3605\"* idols|strong=\"H1544\"*! Turn|strong=\"H7725\"* away|strong=\"H7725\"* your|strong=\"H3605\"* faces|strong=\"H6440\"* from|strong=\"H7725\"* all|strong=\"H3605\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"*." + }, + { + "verseNum": 7, + "text": "“‘“For|strong=\"H3588\"* everyone of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, or|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H6440\"* strangers|strong=\"H1616\"* who|strong=\"H3068\"* live|strong=\"H1481\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, who|strong=\"H3068\"* separates|strong=\"H5144\"* himself|strong=\"H3820\"* from|strong=\"H6440\"* me|strong=\"H6440\"* and|strong=\"H3478\"* takes|strong=\"H7760\"* his|strong=\"H7760\"* idols|strong=\"H1544\"* into|strong=\"H5927\"* his|strong=\"H7760\"* heart|strong=\"H3820\"*, and|strong=\"H3478\"* puts|strong=\"H7760\"* the|strong=\"H6440\"* stumbling|strong=\"H4383\"* block|strong=\"H4383\"* of|strong=\"H1004\"* his|strong=\"H7760\"* iniquity|strong=\"H5771\"* before|strong=\"H6440\"* his|strong=\"H7760\"* face|strong=\"H6440\"*, and|strong=\"H3478\"* comes|strong=\"H5927\"* to|strong=\"H3478\"* the|strong=\"H6440\"* prophet|strong=\"H5030\"* to|strong=\"H3478\"* inquire|strong=\"H1875\"* for|strong=\"H3588\"* himself|strong=\"H3820\"* of|strong=\"H1004\"* me|strong=\"H6440\"*, I|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* answer|strong=\"H6030\"* him|strong=\"H6440\"* by|strong=\"H3068\"* myself|strong=\"H3820\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* set|strong=\"H5414\"* my|strong=\"H5414\"* face|strong=\"H6440\"* against|strong=\"H6440\"* that|strong=\"H3588\"* man|strong=\"H6440\"* and|strong=\"H3068\"* will|strong=\"H3068\"* make|strong=\"H5414\"* him|strong=\"H5414\"* an|strong=\"H5414\"* astonishment|strong=\"H8074\"*, for|strong=\"H3588\"* a|strong=\"H3068\"* sign and|strong=\"H3068\"* a|strong=\"H3068\"* proverb|strong=\"H4912\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* cut|strong=\"H3772\"* him|strong=\"H5414\"* off|strong=\"H3772\"* from|strong=\"H6440\"* among|strong=\"H8432\"* my|strong=\"H5414\"* people|strong=\"H5971\"*. Then|strong=\"H5414\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "“‘“If|strong=\"H3588\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* is|strong=\"H3068\"* deceived|strong=\"H6601\"* and|strong=\"H3478\"* speaks|strong=\"H1696\"* a|strong=\"H3068\"* word|strong=\"H1697\"*, I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* deceived|strong=\"H6601\"* that|strong=\"H3588\"* prophet|strong=\"H5030\"*, and|strong=\"H3478\"* I|strong=\"H3588\"* will|strong=\"H3068\"* stretch|strong=\"H5186\"* out|strong=\"H5186\"* my|strong=\"H3068\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3478\"* will|strong=\"H3068\"* destroy|strong=\"H8045\"* him|strong=\"H5921\"* from|strong=\"H5921\"* among|strong=\"H8432\"* my|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H5375\"* will|strong=\"H1961\"* bear|strong=\"H5375\"* their|strong=\"H5375\"* iniquity|strong=\"H5771\"*. The|strong=\"H5375\"* iniquity|strong=\"H5771\"* of|strong=\"H5030\"* the|strong=\"H5375\"* prophet|strong=\"H5030\"* will|strong=\"H1961\"* be|strong=\"H1961\"* even as|strong=\"H1961\"* the|strong=\"H5375\"* iniquity|strong=\"H5771\"* of|strong=\"H5030\"* him|strong=\"H5375\"* who|strong=\"H5030\"* seeks|strong=\"H1875\"* him|strong=\"H5375\"*," + }, + { + "verseNum": 11, + "text": "that|strong=\"H5971\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* may|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* go|strong=\"H5971\"* astray|strong=\"H8582\"* from|strong=\"H3478\"* me|strong=\"H1961\"*, neither|strong=\"H3808\"* defile|strong=\"H2930\"* themselves any|strong=\"H3605\"* more|strong=\"H5750\"* with|strong=\"H1004\"* all|strong=\"H3605\"* their|strong=\"H3605\"* transgressions|strong=\"H6588\"*; but|strong=\"H3808\"* that|strong=\"H5971\"* they|strong=\"H3808\"* may|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3478\"* I|strong=\"H3808\"* may|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H3605\"* God|strong=\"H3069\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 13, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, when|strong=\"H3588\"* a|strong=\"H3068\"* land sins|strong=\"H2398\"* against|strong=\"H5921\"* me|strong=\"H7971\"* by|strong=\"H3027\"* committing|strong=\"H4603\"* a|strong=\"H3068\"* trespass|strong=\"H4604\"*, and|strong=\"H1121\"* I|strong=\"H3588\"* stretch|strong=\"H5186\"* out|strong=\"H5186\"* my|strong=\"H5921\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H1121\"* break|strong=\"H7665\"* the|strong=\"H5921\"* staff|strong=\"H4294\"* of|strong=\"H1121\"* its|strong=\"H5921\"* bread|strong=\"H3899\"* and|strong=\"H1121\"* send|strong=\"H7971\"* famine|strong=\"H7458\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H1121\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H4480\"* it|strong=\"H5921\"* man|strong=\"H1121\"* and|strong=\"H1121\"* animal—" + }, + { + "verseNum": 14, + "text": "though these|strong=\"H1992\"* three|strong=\"H7969\"* men|strong=\"H1992\"*, Noah|strong=\"H5146\"*, Daniel|strong=\"H1840\"*, and|strong=\"H6666\"* Job, were|strong=\"H1961\"* in|strong=\"H8432\"* it|strong=\"H8432\"*, they|strong=\"H1992\"* would|strong=\"H5315\"* deliver|strong=\"H5337\"* only|strong=\"H5337\"* their|strong=\"H1992\"* own|strong=\"H1961\"* souls|strong=\"H5315\"* by|strong=\"H1961\"* their|strong=\"H1992\"* righteousness|strong=\"H6666\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "“If|strong=\"H3863\"* I|strong=\"H6440\"* cause|strong=\"H1961\"* evil|strong=\"H7451\"* animals|strong=\"H2416\"* to|strong=\"H1961\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, and|strong=\"H6440\"* they|strong=\"H6440\"* ravage it|strong=\"H6440\"* and|strong=\"H6440\"* it|strong=\"H6440\"* is|strong=\"H1961\"* made|strong=\"H1961\"* desolate|strong=\"H8077\"*, so|strong=\"H1961\"* that|strong=\"H2416\"* no|strong=\"H1097\"* man|strong=\"H7451\"* may|strong=\"H1961\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* because|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* animals|strong=\"H2416\"*—" + }, + { + "verseNum": 16, + "text": "though these|strong=\"H1992\"* three|strong=\"H7969\"* men|strong=\"H1121\"* were|strong=\"H1961\"* in|strong=\"H8432\"* it|strong=\"H8432\"*, as|strong=\"H1961\"* I|strong=\"H1121\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “they|strong=\"H1992\"* would deliver|strong=\"H5337\"* neither|strong=\"H5337\"* sons|strong=\"H1121\"* nor|strong=\"H1121\"* daughters|strong=\"H1323\"*. They|strong=\"H1992\"* only|strong=\"H5337\"* would be|strong=\"H1961\"* delivered|strong=\"H5337\"*, but|strong=\"H1961\"* the|strong=\"H5002\"* land would be|strong=\"H1961\"* desolate|strong=\"H8077\"*." + }, + { + "verseNum": 17, + "text": "“Or|strong=\"H4480\"* if|strong=\"H1931\"* I|strong=\"H5921\"* bring|strong=\"H5674\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* on|strong=\"H5921\"* that|strong=\"H1931\"* land, and|strong=\"H2719\"* say, ‘Sword|strong=\"H2719\"*, go|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5921\"* land, so|strong=\"H4480\"* that|strong=\"H1931\"* I|strong=\"H5921\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H4480\"* it|strong=\"H1931\"* man|strong=\"H5674\"* and|strong=\"H2719\"* animal’—" + }, + { + "verseNum": 18, + "text": "though|strong=\"H3588\"* these|strong=\"H1992\"* three|strong=\"H7969\"* men|strong=\"H1121\"* were|strong=\"H1121\"* in|strong=\"H8432\"* it|strong=\"H3588\"*, as|strong=\"H3588\"* I|strong=\"H3588\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “they|strong=\"H1992\"* would deliver|strong=\"H5337\"* neither|strong=\"H3808\"* sons|strong=\"H1121\"* nor|strong=\"H3808\"* daughters|strong=\"H1323\"*, but|strong=\"H3588\"* they|strong=\"H1992\"* only|strong=\"H3588\"* would be|strong=\"H3808\"* delivered|strong=\"H5337\"* themselves|strong=\"H1992\"*." + }, + { + "verseNum": 19, + "text": "“Or|strong=\"H4480\"* if|strong=\"H1931\"* I|strong=\"H5921\"* send|strong=\"H7971\"* a|strong=\"H3068\"* pestilence|strong=\"H1698\"* into|strong=\"H5921\"* that|strong=\"H1931\"* land, and|strong=\"H7971\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* my|strong=\"H5921\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* it|strong=\"H1931\"* in|strong=\"H5921\"* blood|strong=\"H1818\"*, to|strong=\"H7971\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H4480\"* it|strong=\"H1931\"* man and|strong=\"H7971\"* animal—" + }, + { + "verseNum": 20, + "text": "though Noah|strong=\"H5146\"*, Daniel|strong=\"H1840\"*, and|strong=\"H1121\"* Job, were|strong=\"H1121\"* in|strong=\"H8432\"* it|strong=\"H8432\"*, as|strong=\"H5315\"* I|strong=\"H5315\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “they|strong=\"H1992\"* would|strong=\"H5315\"* deliver|strong=\"H5337\"* neither|strong=\"H5337\"* son|strong=\"H1121\"* nor|strong=\"H1121\"* daughter|strong=\"H1323\"*; they|strong=\"H1992\"* would|strong=\"H5315\"* deliver|strong=\"H5337\"* only|strong=\"H5337\"* their|strong=\"H1992\"* own|strong=\"H5315\"* souls|strong=\"H5315\"* by|strong=\"H5337\"* their|strong=\"H1992\"* righteousness|strong=\"H6666\"*.”" + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “How|strong=\"H3588\"* much more|strong=\"H4480\"* when|strong=\"H3588\"* I|strong=\"H3588\"* send|strong=\"H7971\"* my|strong=\"H7971\"* four severe|strong=\"H7451\"* judgments|strong=\"H8201\"* on|strong=\"H7971\"* Jerusalem|strong=\"H3389\"*—the|strong=\"H3588\"* sword|strong=\"H2719\"*, the|strong=\"H3588\"* famine|strong=\"H7458\"*, the|strong=\"H3588\"* evil|strong=\"H7451\"* animals|strong=\"H2416\"*, and|strong=\"H7971\"* the|strong=\"H3588\"* pestilence|strong=\"H1698\"*—to|strong=\"H7971\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H4480\"* it|strong=\"H3588\"* man|strong=\"H7451\"* and|strong=\"H7971\"* animal|strong=\"H2416\"*!" + }, + { + "verseNum": 22, + "text": "Yet|strong=\"H3605\"*, behold|strong=\"H2009\"*, there|strong=\"H2009\"* will|strong=\"H1121\"* be|strong=\"H1121\"* left|strong=\"H3498\"* a|strong=\"H3068\"* remnant|strong=\"H6413\"* in|strong=\"H5921\"* it|strong=\"H5921\"* that|strong=\"H7200\"* will|strong=\"H1121\"* be|strong=\"H1121\"* carried|strong=\"H3318\"* out|strong=\"H3318\"*, both|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* daughters|strong=\"H1323\"*. Behold|strong=\"H2009\"*, they|strong=\"H5921\"* will|strong=\"H1121\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* you|strong=\"H3605\"*, and|strong=\"H1121\"* you|strong=\"H3605\"* will|strong=\"H1121\"* see|strong=\"H7200\"* their|strong=\"H3605\"* way|strong=\"H1870\"* and|strong=\"H1121\"* their|strong=\"H3605\"* doings|strong=\"H5949\"*. Then|strong=\"H3318\"* you|strong=\"H3605\"* will|strong=\"H1121\"* be|strong=\"H1121\"* comforted|strong=\"H5162\"* concerning|strong=\"H5921\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H7200\"* I|strong=\"H2005\"* have|strong=\"H1121\"* brought|strong=\"H3318\"* on|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, even|strong=\"H5921\"* concerning|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H7200\"* I|strong=\"H2005\"* have|strong=\"H1121\"* brought|strong=\"H3318\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H3588\"* will|strong=\"H3808\"* comfort|strong=\"H5162\"* you|strong=\"H3588\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* see|strong=\"H7200\"* their|strong=\"H3605\"* way|strong=\"H1870\"* and|strong=\"H1870\"* their|strong=\"H3605\"* doings|strong=\"H5949\"*; then|strong=\"H6213\"* you|strong=\"H3588\"* will|strong=\"H3808\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3045\"* not|strong=\"H3808\"* done|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3045\"* done|strong=\"H6213\"* in|strong=\"H6213\"* it|strong=\"H3588\"* without|strong=\"H3808\"* cause|strong=\"H2600\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, what|strong=\"H4100\"* is|strong=\"H4100\"* the|strong=\"H3605\"* vine|strong=\"H1612\"* tree|strong=\"H6086\"* more|strong=\"H1961\"* than|strong=\"H3605\"* any|strong=\"H3605\"* tree|strong=\"H6086\"*, the|strong=\"H3605\"* vine|strong=\"H1612\"* branch|strong=\"H2156\"* which|strong=\"H4100\"* is|strong=\"H4100\"* among the|strong=\"H3605\"* trees|strong=\"H6086\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forest|strong=\"H3293\"*?" + }, + { + "verseNum": 3, + "text": "Will|strong=\"H6213\"* wood|strong=\"H6086\"* be|strong=\"H6086\"* taken|strong=\"H3947\"* of|strong=\"H3627\"* it|strong=\"H5921\"* to|strong=\"H5921\"* make|strong=\"H6213\"* anything|strong=\"H3605\"*? Will|strong=\"H6213\"* men|strong=\"H6213\"* take|strong=\"H3947\"* a|strong=\"H3068\"* pin|strong=\"H3489\"* of|strong=\"H3627\"* it|strong=\"H5921\"* to|strong=\"H5921\"* hang|strong=\"H8518\"* any|strong=\"H3605\"* vessel|strong=\"H3627\"* on|strong=\"H5921\"* it|strong=\"H5921\"*?" + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2009\"*, it|strong=\"H5414\"* is|strong=\"H2009\"* cast|strong=\"H5414\"* into|strong=\"H8432\"* the|strong=\"H5414\"* fire for|strong=\"H5414\"* fuel; the|strong=\"H5414\"* fire has|strong=\"H2009\"* devoured both|strong=\"H8147\"* its|strong=\"H5414\"* ends|strong=\"H7098\"*, and|strong=\"H8147\"* the|strong=\"H5414\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* it|strong=\"H5414\"* is|strong=\"H2009\"* burned|strong=\"H2787\"*. Is|strong=\"H2009\"* it|strong=\"H5414\"* profitable|strong=\"H6743\"* for|strong=\"H5414\"* any|strong=\"H5414\"* work|strong=\"H4399\"*?" + }, + { + "verseNum": 5, + "text": "Behold|strong=\"H2009\"*, when|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H1961\"* whole|strong=\"H8549\"*, it|strong=\"H3588\"* was|strong=\"H1961\"* suitable for|strong=\"H3588\"* no|strong=\"H3808\"* work|strong=\"H4399\"*. How|strong=\"H3588\"* much|strong=\"H6213\"* less|strong=\"H3588\"*, when|strong=\"H3588\"* the|strong=\"H3588\"* fire has|strong=\"H1961\"* devoured it|strong=\"H3588\"*, and|strong=\"H6213\"* it|strong=\"H3588\"* has|strong=\"H1961\"* been|strong=\"H1961\"* burned|strong=\"H2787\"*, will|strong=\"H1961\"* it|strong=\"H3588\"* yet|strong=\"H5750\"* be|strong=\"H1961\"* suitable for|strong=\"H3588\"* any|strong=\"H5750\"* work|strong=\"H4399\"*?”" + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5414\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “As|strong=\"H3651\"* the|strong=\"H5414\"* vine|strong=\"H1612\"* wood|strong=\"H6086\"* among|strong=\"H3427\"* the|strong=\"H5414\"* trees|strong=\"H6086\"* of|strong=\"H3427\"* the|strong=\"H5414\"* forest|strong=\"H3293\"*, which|strong=\"H6086\"* I|strong=\"H5414\"* have|strong=\"H5414\"* given|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* fire for|strong=\"H3427\"* fuel, so|strong=\"H3651\"* I|strong=\"H5414\"* will|strong=\"H3389\"* give|strong=\"H5414\"* the|strong=\"H5414\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* set|strong=\"H7760\"* my|strong=\"H5414\"* face|strong=\"H6440\"* against|strong=\"H6440\"* them|strong=\"H5414\"*. They|strong=\"H3588\"* will|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H6440\"* fire, but|strong=\"H3588\"* the|strong=\"H6440\"* fire will|strong=\"H3068\"* still|strong=\"H3588\"* devour them|strong=\"H5414\"*. Then|strong=\"H3318\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, when|strong=\"H3588\"* I|strong=\"H3588\"* set|strong=\"H7760\"* my|strong=\"H5414\"* face|strong=\"H6440\"* against|strong=\"H6440\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* make|strong=\"H5414\"* the|strong=\"H5002\"* land desolate|strong=\"H8077\"*, because|strong=\"H3282\"* they|strong=\"H3282\"* have|strong=\"H5414\"* acted|strong=\"H4603\"* unfaithfully|strong=\"H4604\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Again|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, cause Jerusalem|strong=\"H3389\"* to|strong=\"H3389\"* know|strong=\"H3045\"* her|strong=\"H3045\"* abominations|strong=\"H8441\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H3389\"* say, ‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"*: “Your|strong=\"H3541\"* origin|strong=\"H4351\"* and|strong=\"H3389\"* your|strong=\"H3541\"* birth|strong=\"H4138\"* is|strong=\"H3389\"* of|strong=\"H3069\"* the|strong=\"H3069\"* land of|strong=\"H3069\"* the|strong=\"H3069\"* Canaanite|strong=\"H3669\"*. An Amorite was|strong=\"H3389\"* your|strong=\"H3541\"* father, and|strong=\"H3389\"* your|strong=\"H3541\"* mother was|strong=\"H3389\"* a|strong=\"H3068\"* Hittite|strong=\"H2850\"*." + }, + { + "verseNum": 4, + "text": "As|strong=\"H3117\"* for|strong=\"H4325\"* your|strong=\"H3808\"* birth|strong=\"H3205\"*, in|strong=\"H3117\"* the|strong=\"H3205\"* day|strong=\"H3117\"* you|strong=\"H3117\"* were|strong=\"H4325\"* born|strong=\"H3205\"* your|strong=\"H3808\"* navel|strong=\"H8270\"* was|strong=\"H3117\"* not|strong=\"H3808\"* cut|strong=\"H3772\"*. You|strong=\"H3117\"* weren’t washed|strong=\"H7364\"* in|strong=\"H3117\"* water|strong=\"H4325\"* to|strong=\"H3117\"* cleanse you|strong=\"H3117\"*. You|strong=\"H3117\"* weren’t salted|strong=\"H4414\"* at|strong=\"H3117\"* all|strong=\"H3772\"*, nor|strong=\"H3808\"* wrapped|strong=\"H2853\"* in|strong=\"H3117\"* blankets at|strong=\"H3117\"* all|strong=\"H3772\"*." + }, + { + "verseNum": 5, + "text": "No|strong=\"H3808\"* eye|strong=\"H5869\"* pitied|strong=\"H2550\"* you|strong=\"H6440\"*, to|strong=\"H6213\"* do|strong=\"H6213\"* any|strong=\"H6213\"* of|strong=\"H3117\"* these|strong=\"H6213\"* things|strong=\"H3808\"* to|strong=\"H6213\"* you|strong=\"H6440\"*, to|strong=\"H6213\"* have|strong=\"H5869\"* compassion|strong=\"H2550\"* on|strong=\"H5921\"* you|strong=\"H6440\"*; but|strong=\"H3808\"* you|strong=\"H6440\"* were|strong=\"H3117\"* cast|strong=\"H7993\"* out|strong=\"H7993\"* in|strong=\"H5921\"* the|strong=\"H6440\"* open|strong=\"H6440\"* field|strong=\"H7704\"*, because|strong=\"H5921\"* you|strong=\"H6440\"* were|strong=\"H3117\"* abhorred|strong=\"H1604\"* in|strong=\"H5921\"* the|strong=\"H6440\"* day|strong=\"H3117\"* that|strong=\"H3117\"* you|strong=\"H6440\"* were|strong=\"H3117\"* born|strong=\"H3205\"*." + }, + { + "verseNum": 6, + "text": "“‘“When|strong=\"H7200\"* I|strong=\"H5921\"* passed|strong=\"H5674\"* by|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H7200\"* saw|strong=\"H7200\"* you|strong=\"H5921\"* wallowing in|strong=\"H5921\"* your|strong=\"H5921\"* blood|strong=\"H1818\"*, I|strong=\"H5921\"* said to|strong=\"H5921\"* you|strong=\"H5921\"*, ‘Though you|strong=\"H5921\"* are|strong=\"H1818\"* in|strong=\"H5921\"* your|strong=\"H5921\"* blood|strong=\"H1818\"*, live|strong=\"H2421\"*!’ Yes|strong=\"H7200\"*, I|strong=\"H5921\"* said to|strong=\"H5921\"* you|strong=\"H5921\"*, ‘Though you|strong=\"H5921\"* are|strong=\"H1818\"* in|strong=\"H5921\"* your|strong=\"H5921\"* blood|strong=\"H1818\"*, live|strong=\"H2421\"*!’" + }, + { + "verseNum": 7, + "text": "I|strong=\"H5414\"* caused|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H5414\"* multiply|strong=\"H7235\"* as|strong=\"H5414\"* that|strong=\"H5414\"* which|strong=\"H7704\"* grows|strong=\"H6779\"* in|strong=\"H5414\"* the|strong=\"H5414\"* field|strong=\"H7704\"*, and|strong=\"H7704\"* you|strong=\"H5414\"* increased|strong=\"H7235\"* and|strong=\"H7704\"* grew|strong=\"H1431\"* great|strong=\"H1431\"*, and|strong=\"H7704\"* you|strong=\"H5414\"* attained to|strong=\"H5414\"* excellent|strong=\"H1431\"* beauty. Your|strong=\"H5414\"* breasts|strong=\"H7699\"* were|strong=\"H7699\"* formed|strong=\"H3559\"*, and|strong=\"H7704\"* your|strong=\"H5414\"* hair|strong=\"H8181\"* grew|strong=\"H1431\"*; yet|strong=\"H5414\"* you|strong=\"H5414\"* were|strong=\"H7699\"* naked|strong=\"H5903\"* and|strong=\"H7704\"* bare|strong=\"H6181\"*." + }, + { + "verseNum": 8, + "text": "“‘“Now|strong=\"H1961\"* when|strong=\"H1961\"* I|strong=\"H2009\"* passed|strong=\"H5674\"* by|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H7200\"* looked|strong=\"H7200\"* at|strong=\"H5921\"* you|strong=\"H5921\"*, behold|strong=\"H2009\"*, your|strong=\"H5921\"* time|strong=\"H6256\"* was|strong=\"H1961\"* the|strong=\"H5002\"* time|strong=\"H6256\"* of|strong=\"H5921\"* love|strong=\"H1730\"*; and|strong=\"H7200\"* I|strong=\"H2009\"* spread|strong=\"H6566\"* my|strong=\"H7200\"* garment|strong=\"H3671\"* over|strong=\"H5921\"* you|strong=\"H5921\"* and|strong=\"H7200\"* covered|strong=\"H3680\"* your|strong=\"H5921\"* nakedness|strong=\"H6172\"*. Yes|strong=\"H2009\"*, I|strong=\"H2009\"* pledged myself to|strong=\"H1961\"* you|strong=\"H5921\"* and|strong=\"H7200\"* entered into|strong=\"H5921\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* you|strong=\"H5921\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “and|strong=\"H7200\"* you|strong=\"H5921\"* became|strong=\"H1961\"* mine|strong=\"H5674\"*." + }, + { + "verseNum": 9, + "text": "“‘“Then I|strong=\"H5921\"* washed|strong=\"H7364\"* you|strong=\"H5921\"* with|strong=\"H5921\"* water|strong=\"H4325\"*. Yes, I|strong=\"H5921\"* thoroughly washed|strong=\"H7364\"* away|strong=\"H7857\"* your|strong=\"H5921\"* blood|strong=\"H1818\"* from|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H1818\"* I|strong=\"H5921\"* anointed|strong=\"H5480\"* you|strong=\"H5921\"* with|strong=\"H5921\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 10, + "text": "I clothed|strong=\"H3847\"* you|strong=\"H3847\"* also with|strong=\"H3847\"* embroidered|strong=\"H7553\"* work|strong=\"H7553\"* and|strong=\"H8336\"* put|strong=\"H3847\"* leather sandals|strong=\"H5274\"* on|strong=\"H3847\"* you|strong=\"H3847\"*. I dressed|strong=\"H3847\"* you|strong=\"H3847\"* with|strong=\"H3847\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"* and|strong=\"H8336\"* covered|strong=\"H3680\"* you|strong=\"H3847\"* with|strong=\"H3847\"* silk|strong=\"H4897\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H5414\"* decked|strong=\"H5710\"* you|strong=\"H5414\"* with|strong=\"H5921\"* ornaments|strong=\"H5716\"*, put|strong=\"H5414\"* bracelets|strong=\"H6781\"* on|strong=\"H5921\"* your|strong=\"H5414\"* hands|strong=\"H3027\"*, and|strong=\"H3027\"* put|strong=\"H5414\"* a|strong=\"H3068\"* chain|strong=\"H7242\"* on|strong=\"H5921\"* your|strong=\"H5414\"* neck|strong=\"H1627\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H5414\"* put|strong=\"H5414\"* a|strong=\"H3068\"* ring|strong=\"H5141\"* on|strong=\"H5921\"* your|strong=\"H5414\"* nose, earrings|strong=\"H5141\"* in|strong=\"H5921\"* your|strong=\"H5414\"* ears, and|strong=\"H7218\"* a|strong=\"H3068\"* beautiful|strong=\"H8597\"* crown|strong=\"H5850\"* on|strong=\"H5921\"* your|strong=\"H5414\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 13, + "text": "Thus you|strong=\"H8081\"* were|strong=\"H3701\"* decked|strong=\"H5710\"* with|strong=\"H5710\"* gold|strong=\"H2091\"* and|strong=\"H3701\"* silver|strong=\"H3701\"*. Your|strong=\"H6743\"* clothing was|strong=\"H3966\"* of|strong=\"H2091\"* fine|strong=\"H5560\"* linen|strong=\"H8336\"*, silk|strong=\"H4897\"*, and|strong=\"H3701\"* embroidered|strong=\"H7553\"* work|strong=\"H7553\"*. You|strong=\"H8081\"* ate fine|strong=\"H5560\"* flour|strong=\"H5560\"*, honey|strong=\"H1706\"*, and|strong=\"H3701\"* oil|strong=\"H8081\"*. You|strong=\"H8081\"* were|strong=\"H3701\"* exceedingly|strong=\"H3966\"* beautiful|strong=\"H3302\"*, and|strong=\"H3701\"* you|strong=\"H8081\"* prospered|strong=\"H6743\"* to|strong=\"H3701\"* royal|strong=\"H4410\"* estate." + }, + { + "verseNum": 14, + "text": "Your|strong=\"H5921\"* renown|strong=\"H8034\"* went|strong=\"H3318\"* out|strong=\"H3318\"* among|strong=\"H5921\"* the|strong=\"H5002\"* nations|strong=\"H1471\"* for|strong=\"H3588\"* your|strong=\"H5921\"* beauty|strong=\"H3308\"*; for|strong=\"H3588\"* it|strong=\"H7760\"* was|strong=\"H8034\"* perfect|strong=\"H3632\"*, through|strong=\"H5921\"* my|strong=\"H7760\"* majesty|strong=\"H1926\"* which|strong=\"H1931\"* I|strong=\"H3588\"* had|strong=\"H3588\"* put|strong=\"H7760\"* on|strong=\"H5921\"* you|strong=\"H3588\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "“‘“But|strong=\"H1961\"* you|strong=\"H3605\"* trusted in|strong=\"H5921\"* your|strong=\"H3605\"* beauty|strong=\"H3308\"*, and|strong=\"H5674\"* played|strong=\"H2181\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"* because|strong=\"H5921\"* of|strong=\"H8034\"* your|strong=\"H3605\"* renown|strong=\"H8034\"*, and|strong=\"H5674\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* your|strong=\"H3605\"* prostitution on|strong=\"H5921\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* passed|strong=\"H5674\"* by|strong=\"H5921\"*. It|strong=\"H5921\"* was|strong=\"H8034\"* his|strong=\"H3605\"*." + }, + { + "verseNum": 16, + "text": "You|strong=\"H5921\"* took|strong=\"H3947\"* some of|strong=\"H5921\"* your|strong=\"H3947\"* garments, and|strong=\"H6213\"* made|strong=\"H6213\"* for|strong=\"H5921\"* yourselves|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"* decked with|strong=\"H6213\"* various|strong=\"H2921\"* colors|strong=\"H2921\"*, and|strong=\"H6213\"* played|strong=\"H2181\"* the|strong=\"H5921\"* prostitute|strong=\"H2181\"* on|strong=\"H5921\"* them|strong=\"H5921\"*. This|strong=\"H6213\"* shouldn’t happen|strong=\"H1961\"*, neither|strong=\"H3808\"* shall|strong=\"H3808\"* it|strong=\"H5921\"* be|strong=\"H1961\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H5414\"* also|strong=\"H6213\"* took|strong=\"H3947\"* your|strong=\"H5414\"* beautiful|strong=\"H8597\"* jewels|strong=\"H3627\"* of|strong=\"H3627\"* my|strong=\"H5414\"* gold|strong=\"H2091\"* and|strong=\"H3701\"* of|strong=\"H3627\"* my|strong=\"H5414\"* silver|strong=\"H3701\"*, which|strong=\"H2091\"* I|strong=\"H5414\"* had|strong=\"H5414\"* given|strong=\"H5414\"* you|strong=\"H5414\"*, and|strong=\"H3701\"* made|strong=\"H6213\"* for|strong=\"H6213\"* yourself|strong=\"H6213\"* images|strong=\"H6754\"* of|strong=\"H3627\"* men|strong=\"H2145\"*, and|strong=\"H3701\"* played|strong=\"H2181\"* the|strong=\"H5414\"* prostitute|strong=\"H2181\"* with|strong=\"H6213\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H5414\"* took|strong=\"H3947\"* your|strong=\"H5414\"* embroidered|strong=\"H7553\"* garments, covered|strong=\"H3680\"* them|strong=\"H5414\"*, and|strong=\"H6440\"* set|strong=\"H5414\"* my|strong=\"H5414\"* oil|strong=\"H8081\"* and|strong=\"H6440\"* my|strong=\"H5414\"* incense|strong=\"H7004\"* before|strong=\"H6440\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 19, + "text": "My|strong=\"H5414\"* bread|strong=\"H3899\"* also|strong=\"H3899\"* which|strong=\"H3069\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* you|strong=\"H5414\"*, fine|strong=\"H5560\"* flour|strong=\"H5560\"*, oil|strong=\"H8081\"*, and|strong=\"H3899\"* honey|strong=\"H1706\"*, with|strong=\"H6440\"* which|strong=\"H3069\"* I|strong=\"H5414\"* fed you|strong=\"H5414\"*, you|strong=\"H5414\"* even set|strong=\"H5414\"* it|strong=\"H5414\"* before|strong=\"H6440\"* them|strong=\"H5414\"* for|strong=\"H6440\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*; and|strong=\"H3899\"* so|strong=\"H1961\"* it|strong=\"H5414\"* was|strong=\"H1961\"*,” says|strong=\"H5002\"* the|strong=\"H6440\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 20, + "text": "“‘“Moreover you|strong=\"H3947\"* have|strong=\"H1121\"* taken|strong=\"H3947\"* your|strong=\"H3947\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H3947\"* daughters|strong=\"H1323\"*, whom you|strong=\"H3947\"* have|strong=\"H1121\"* borne|strong=\"H3205\"* to|strong=\"H3205\"* me|strong=\"H3947\"*, and|strong=\"H1121\"* you|strong=\"H3947\"* have|strong=\"H1121\"* sacrificed|strong=\"H2076\"* these|strong=\"H3947\"* to|strong=\"H3205\"* them|strong=\"H3947\"* to|strong=\"H3205\"* be|strong=\"H1121\"* devoured. Was|strong=\"H1121\"* your|strong=\"H3947\"* prostitution a|strong=\"H3068\"* small|strong=\"H4592\"* matter|strong=\"H4592\"*," + }, + { + "verseNum": 21, + "text": "that|strong=\"H5414\"* you|strong=\"H5414\"* have|strong=\"H1121\"* slain|strong=\"H7819\"* my|strong=\"H5414\"* children|strong=\"H1121\"* and|strong=\"H1121\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* up|strong=\"H5414\"*, in|strong=\"H1121\"* causing them|strong=\"H5414\"* to|strong=\"H5414\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5414\"* fire to|strong=\"H5414\"* them|strong=\"H5414\"*?" + }, + { + "verseNum": 22, + "text": "In|strong=\"H3117\"* all|strong=\"H3605\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"* and|strong=\"H3117\"* your|strong=\"H3605\"* prostitution you|strong=\"H3605\"* have|strong=\"H1961\"* not|strong=\"H3808\"* remembered|strong=\"H2142\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H3605\"* youth|strong=\"H5271\"*, when|strong=\"H1961\"* you|strong=\"H3605\"* were|strong=\"H1961\"* naked|strong=\"H5903\"* and|strong=\"H3117\"* bare|strong=\"H6181\"*, and|strong=\"H3117\"* were|strong=\"H1961\"* wallowing in|strong=\"H3117\"* your|strong=\"H3605\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 23, + "text": "“‘“It|strong=\"H1961\"* has|strong=\"H1961\"* happened|strong=\"H1961\"* after|strong=\"H1961\"* all|strong=\"H3605\"* your|strong=\"H3605\"* wickedness|strong=\"H7451\"*—woe, woe to|strong=\"H1961\"* you|strong=\"H3605\"*!” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*—" + }, + { + "verseNum": 24, + "text": "“that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H1129\"* built|strong=\"H1129\"* for|strong=\"H6213\"* yourselves|strong=\"H3605\"* a|strong=\"H3068\"* vaulted place|strong=\"H7413\"*, and|strong=\"H6213\"* have|strong=\"H1129\"* made|strong=\"H6213\"* yourselves|strong=\"H3605\"* a|strong=\"H3068\"* lofty place|strong=\"H7413\"* in|strong=\"H6213\"* every|strong=\"H3605\"* street|strong=\"H7339\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"H3605\"* have|strong=\"H1129\"* built|strong=\"H1129\"* your|strong=\"H3605\"* lofty place|strong=\"H7413\"* at|strong=\"H7218\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H7218\"* every|strong=\"H3605\"* way|strong=\"H1870\"*, and|strong=\"H7218\"* have|strong=\"H1129\"* made|strong=\"H1129\"* your|strong=\"H3605\"* beauty|strong=\"H3308\"* an|strong=\"H1129\"* abomination, and|strong=\"H7218\"* have|strong=\"H1129\"* opened|strong=\"H6589\"* your|strong=\"H3605\"* feet|strong=\"H7272\"* to|strong=\"H1870\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* passed|strong=\"H5674\"* by|strong=\"H5674\"*, and|strong=\"H7218\"* multiplied|strong=\"H7235\"* your|strong=\"H3605\"* prostitution." + }, + { + "verseNum": 26, + "text": "You|strong=\"H1320\"* have|strong=\"H1121\"* also|strong=\"H1121\"* committed sexual immorality with|strong=\"H4714\"* the|strong=\"H2181\"* Egyptians|strong=\"H4714\"*, your|strong=\"H7235\"* neighbors|strong=\"H7934\"*, great|strong=\"H7235\"* of|strong=\"H1121\"* flesh|strong=\"H1320\"*; and|strong=\"H1121\"* have|strong=\"H1121\"* multiplied|strong=\"H7235\"* your|strong=\"H7235\"* prostitution, to|strong=\"H4714\"* provoke|strong=\"H3707\"* me|strong=\"H3707\"* to|strong=\"H4714\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 27, + "text": "See|strong=\"H2009\"* therefore|strong=\"H5921\"*, I|strong=\"H5414\"* have|strong=\"H6430\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* my|strong=\"H5414\"* hand|strong=\"H3027\"* over|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H3027\"* have|strong=\"H6430\"* diminished|strong=\"H1639\"* your|strong=\"H5414\"* portion|strong=\"H2706\"*, and|strong=\"H3027\"* delivered|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H5921\"* the|strong=\"H5921\"* will|strong=\"H5315\"* of|strong=\"H1323\"* those|strong=\"H5921\"* who|strong=\"H5315\"* hate|strong=\"H8130\"* you|strong=\"H5414\"*, the|strong=\"H5921\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"*, who|strong=\"H5315\"* are|strong=\"H3027\"* ashamed|strong=\"H3637\"* of|strong=\"H1323\"* your|strong=\"H5414\"* lewd|strong=\"H2154\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 28, + "text": "You|strong=\"H3808\"* have|strong=\"H1121\"* played|strong=\"H2181\"* the|strong=\"H2181\"* prostitute|strong=\"H2181\"* also|strong=\"H1571\"* with|strong=\"H7646\"* the|strong=\"H2181\"* Assyrians|strong=\"H1121\"*, because|strong=\"H1115\"* you|strong=\"H3808\"* were|strong=\"H1121\"* insatiable; yes|strong=\"H1571\"*, you|strong=\"H3808\"* have|strong=\"H1121\"* played|strong=\"H2181\"* the|strong=\"H2181\"* prostitute|strong=\"H2181\"* with|strong=\"H7646\"* them|strong=\"H1121\"*, and|strong=\"H1121\"* yet|strong=\"H1571\"* you|strong=\"H3808\"* weren’t satisfied|strong=\"H7646\"*." + }, + { + "verseNum": 29, + "text": "You|strong=\"H3808\"* have|strong=\"H1571\"* moreover|strong=\"H1571\"* multiplied|strong=\"H7235\"* your|strong=\"H7235\"* prostitution to|strong=\"H3808\"* the|strong=\"H1571\"* land of|strong=\"H7646\"* merchants|strong=\"H3667\"*, to|strong=\"H3808\"* Chaldea|strong=\"H3778\"*; and|strong=\"H1571\"* yet|strong=\"H1571\"* you|strong=\"H3808\"* weren’t satisfied|strong=\"H7646\"* with|strong=\"H7646\"* this|strong=\"H2063\"*." + }, + { + "verseNum": 30, + "text": "“‘“How|strong=\"H4100\"* weak|strong=\"H3605\"* is|strong=\"H4100\"* your|strong=\"H3605\"* heart|strong=\"H3826\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “since you|strong=\"H3605\"* do|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* things|strong=\"H3605\"*, the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H4639\"* an|strong=\"H6213\"* impudent prostitute|strong=\"H2181\"*;" + }, + { + "verseNum": 31, + "text": "in|strong=\"H6213\"* that|strong=\"H3605\"* you|strong=\"H3605\"* build|strong=\"H1129\"* your|strong=\"H3605\"* vaulted place|strong=\"H1961\"* at|strong=\"H6213\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H7218\"* every|strong=\"H3605\"* way|strong=\"H1870\"*, and|strong=\"H7218\"* make|strong=\"H6213\"* your|strong=\"H3605\"* lofty place|strong=\"H1961\"* in|strong=\"H6213\"* every|strong=\"H3605\"* street|strong=\"H7339\"*, and|strong=\"H7218\"* have|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"* as|strong=\"H1961\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*, in|strong=\"H6213\"* that|strong=\"H3605\"* you|strong=\"H3605\"* scorn pay." + }, + { + "verseNum": 32, + "text": "“‘“Adulterous|strong=\"H5003\"* wife, who|strong=\"H2114\"* takes|strong=\"H3947\"* strangers|strong=\"H2114\"* instead|strong=\"H8478\"* of|strong=\"H8478\"* her|strong=\"H3947\"* husband!" + }, + { + "verseNum": 33, + "text": "People give|strong=\"H5414\"* gifts|strong=\"H5083\"* to|strong=\"H5414\"* all|strong=\"H3605\"* prostitutes|strong=\"H2181\"*; but|strong=\"H3605\"* you|strong=\"H5414\"* give|strong=\"H5414\"* your|strong=\"H3605\"* gifts|strong=\"H5083\"* to|strong=\"H5414\"* all|strong=\"H3605\"* your|strong=\"H3605\"* lovers, and|strong=\"H3605\"* bribe|strong=\"H7809\"* them|strong=\"H5414\"*, that|strong=\"H3605\"* they|strong=\"H3605\"* may|strong=\"H5414\"* come to|strong=\"H5414\"* you|strong=\"H5414\"* on|strong=\"H3605\"* every|strong=\"H3605\"* side|strong=\"H5439\"* for|strong=\"H3605\"* your|strong=\"H3605\"* prostitution." + }, + { + "verseNum": 34, + "text": "You|strong=\"H5414\"* are|strong=\"H1961\"* different|strong=\"H2016\"* from|strong=\"H4480\"* other women in|strong=\"H5414\"* your|strong=\"H5414\"* prostitution, in|strong=\"H5414\"* that|strong=\"H5414\"* no|strong=\"H3808\"* one|strong=\"H3808\"* follows you|strong=\"H5414\"* to|strong=\"H1961\"* play|strong=\"H2181\"* the|strong=\"H5414\"* prostitute|strong=\"H2181\"*; and|strong=\"H1961\"* whereas you|strong=\"H5414\"* give|strong=\"H5414\"* hire, and|strong=\"H1961\"* no|strong=\"H3808\"* hire is|strong=\"H1961\"* given|strong=\"H5414\"* to|strong=\"H1961\"* you|strong=\"H5414\"*, therefore|strong=\"H1961\"* you|strong=\"H5414\"* are|strong=\"H1961\"* different|strong=\"H2016\"*.”’" + }, + { + "verseNum": 35, + "text": "“Therefore|strong=\"H3651\"*, prostitute|strong=\"H2181\"*, hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*:" + }, + { + "verseNum": 36, + "text": "‘The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Because|strong=\"H5921\"* your|strong=\"H3605\"* filthiness|strong=\"H5178\"* was|strong=\"H1121\"* poured|strong=\"H8210\"* out|strong=\"H8210\"*, and|strong=\"H1121\"* your|strong=\"H3605\"* nakedness|strong=\"H6172\"* uncovered|strong=\"H1540\"* through|strong=\"H5921\"* your|strong=\"H3605\"* prostitution with|strong=\"H5921\"* your|strong=\"H3605\"* lovers; and|strong=\"H1121\"* because|strong=\"H5921\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* idols|strong=\"H1544\"* of|strong=\"H1121\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"*, and|strong=\"H1121\"* for|strong=\"H5921\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H1121\"* your|strong=\"H3605\"* children|strong=\"H1121\"*, that|strong=\"H3605\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5921\"* them|strong=\"H5414\"*;" + }, + { + "verseNum": 37, + "text": "therefore|strong=\"H3651\"* see|strong=\"H7200\"*, I|strong=\"H2005\"* will|strong=\"H3605\"* gather|strong=\"H6908\"* all|strong=\"H3605\"* your|strong=\"H3605\"* lovers, with|strong=\"H5921\"* whom you|strong=\"H3605\"* have|strong=\"H7200\"* taken|strong=\"H1540\"* pleasure|strong=\"H6149\"*, and|strong=\"H7200\"* all|strong=\"H3605\"* those|strong=\"H3605\"* whom you|strong=\"H3605\"* have|strong=\"H7200\"* loved, with|strong=\"H5921\"* all|strong=\"H3605\"* those|strong=\"H3605\"* whom you|strong=\"H3605\"* have|strong=\"H7200\"* hated|strong=\"H8130\"*. I|strong=\"H2005\"* will|strong=\"H3605\"* even|strong=\"H3651\"* gather|strong=\"H6908\"* them|strong=\"H5921\"* against|strong=\"H5921\"* you|strong=\"H3605\"* on|strong=\"H5921\"* every|strong=\"H3605\"* side|strong=\"H5439\"*, and|strong=\"H7200\"* will|strong=\"H3605\"* uncover|strong=\"H1540\"* your|strong=\"H3605\"* nakedness|strong=\"H6172\"* to|strong=\"H5921\"* them|strong=\"H5921\"*, that|strong=\"H7200\"* they|strong=\"H3651\"* may see|strong=\"H7200\"* all|strong=\"H3605\"* your|strong=\"H3605\"* nakedness|strong=\"H6172\"*." + }, + { + "verseNum": 38, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* judge|strong=\"H8199\"* you|strong=\"H5414\"* as|strong=\"H5414\"* women who break wedlock|strong=\"H5003\"* and|strong=\"H4941\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"* are|strong=\"H8199\"* judged|strong=\"H8199\"*; and|strong=\"H4941\"* I|strong=\"H5414\"* will|strong=\"H5414\"* bring|strong=\"H5414\"* on|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H5414\"* blood|strong=\"H1818\"* of|strong=\"H1818\"* wrath|strong=\"H2534\"* and|strong=\"H4941\"* jealousy|strong=\"H7068\"*." + }, + { + "verseNum": 39, + "text": "I|strong=\"H5414\"* will|strong=\"H3027\"* also|strong=\"H3027\"* give|strong=\"H5414\"* you|strong=\"H5414\"* into|strong=\"H3027\"* their|strong=\"H5414\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* they|strong=\"H3027\"* will|strong=\"H3027\"* throw down|strong=\"H5422\"* your|strong=\"H5414\"* vaulted place|strong=\"H5414\"*, and|strong=\"H3027\"* break|strong=\"H2040\"* down|strong=\"H5422\"* your|strong=\"H5414\"* lofty places|strong=\"H7413\"*. They|strong=\"H3027\"* will|strong=\"H3027\"* strip|strong=\"H6584\"* you|strong=\"H5414\"* of|strong=\"H3027\"* your|strong=\"H5414\"* clothes and|strong=\"H3027\"* take|strong=\"H3947\"* your|strong=\"H5414\"* beautiful|strong=\"H8597\"* jewels|strong=\"H3627\"*. They|strong=\"H3027\"* will|strong=\"H3027\"* leave|strong=\"H3240\"* you|strong=\"H5414\"* naked|strong=\"H5903\"* and|strong=\"H3027\"* bare|strong=\"H6181\"*." + }, + { + "verseNum": 40, + "text": "They|strong=\"H5921\"* will|strong=\"H2719\"* also bring|strong=\"H5927\"* up|strong=\"H5927\"* a|strong=\"H3068\"* company|strong=\"H6951\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H2719\"* they|strong=\"H5921\"* will|strong=\"H2719\"* stone|strong=\"H7275\"* you|strong=\"H5921\"* with|strong=\"H5921\"* stones, and|strong=\"H2719\"* thrust you|strong=\"H5921\"* through|strong=\"H5921\"* with|strong=\"H5921\"* their|strong=\"H5921\"* swords|strong=\"H2719\"*." + }, + { + "verseNum": 41, + "text": "They|strong=\"H3808\"* will|strong=\"H1571\"* burn|strong=\"H8313\"* your|strong=\"H5414\"* houses|strong=\"H1004\"* with|strong=\"H8313\"* fire, and|strong=\"H1004\"* execute|strong=\"H6213\"* judgments|strong=\"H8201\"* on|strong=\"H1004\"* you|strong=\"H5414\"* in|strong=\"H6213\"* the|strong=\"H5414\"* sight|strong=\"H5869\"* of|strong=\"H1004\"* many|strong=\"H7227\"* women. I|strong=\"H5414\"* will|strong=\"H1571\"* cause|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H6213\"* cease|strong=\"H7673\"* from|strong=\"H5869\"* playing|strong=\"H2181\"* the|strong=\"H5414\"* prostitute|strong=\"H2181\"*, and|strong=\"H1004\"* you|strong=\"H5414\"* will|strong=\"H1571\"* also|strong=\"H1571\"* give|strong=\"H5414\"* no|strong=\"H3808\"* hire any|strong=\"H5750\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 42, + "text": "So|strong=\"H4480\"* I|strong=\"H3808\"* will|strong=\"H3808\"* cause my|strong=\"H5493\"* wrath|strong=\"H2534\"* toward|strong=\"H4480\"* you|strong=\"H5117\"* to|strong=\"H4480\"* rest|strong=\"H5117\"*, and|strong=\"H8252\"* my|strong=\"H5493\"* jealousy|strong=\"H7068\"* will|strong=\"H3808\"* depart|strong=\"H5493\"* from|strong=\"H4480\"* you|strong=\"H5117\"*. I|strong=\"H3808\"* will|strong=\"H3808\"* be|strong=\"H3808\"* quiet|strong=\"H8252\"*, and|strong=\"H8252\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* angry|strong=\"H3707\"* any|strong=\"H4480\"* more|strong=\"H4480\"*." + }, + { + "verseNum": 43, + "text": "“‘“Because|strong=\"H5921\"* you|strong=\"H5414\"* have|strong=\"H1571\"* not|strong=\"H3808\"* remembered|strong=\"H2142\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H3605\"* youth|strong=\"H5271\"*, but|strong=\"H3808\"* have|strong=\"H1571\"* raged against|strong=\"H5921\"* me|strong=\"H5414\"* in|strong=\"H5921\"* all|strong=\"H3605\"* these|strong=\"H6213\"* things|strong=\"H3605\"*; therefore|strong=\"H5921\"*, behold|strong=\"H3808\"*, I|strong=\"H3117\"* also|strong=\"H1571\"* will|strong=\"H1571\"* bring|strong=\"H5414\"* your|strong=\"H3605\"* way|strong=\"H1870\"* on|strong=\"H5921\"* your|strong=\"H3605\"* head|strong=\"H7218\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*: “and|strong=\"H3117\"* you|strong=\"H5414\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* commit|strong=\"H6213\"* this|strong=\"H6213\"* lewdness|strong=\"H2154\"* with|strong=\"H6213\"* all|strong=\"H3605\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"*." + }, + { + "verseNum": 44, + "text": "“‘“Behold|strong=\"H2009\"*, everyone|strong=\"H3605\"* who|strong=\"H3605\"* uses proverbs|strong=\"H4911\"* will|strong=\"H1323\"* use|strong=\"H4911\"* this|strong=\"H4911\"* proverb|strong=\"H4911\"* against|strong=\"H5921\"* you|strong=\"H3605\"*, saying, ‘As|strong=\"H3605\"* is|strong=\"H2009\"* the|strong=\"H3605\"* mother, so|strong=\"H5921\"* is|strong=\"H2009\"* her|strong=\"H3605\"* daughter|strong=\"H1323\"*.’" + }, + { + "verseNum": 45, + "text": "You are|strong=\"H1121\"* the|strong=\"H1121\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* your|strong=\"H1121\"* mother, who|strong=\"H1121\"* loathes her|strong=\"H1602\"* husband and|strong=\"H1121\"* her|strong=\"H1602\"* children|strong=\"H1121\"*; and|strong=\"H1121\"* you are|strong=\"H1121\"* the|strong=\"H1121\"* sister of|strong=\"H1121\"* your|strong=\"H1121\"* sisters, who|strong=\"H1121\"* loathed|strong=\"H1602\"* their|strong=\"H1602\"* husbands and|strong=\"H1121\"* their|strong=\"H1602\"* children|strong=\"H1121\"*. Your|strong=\"H1121\"* mother was|strong=\"H1121\"* a|strong=\"H3068\"* Hittite|strong=\"H2850\"*, and|strong=\"H1121\"* your|strong=\"H1121\"* father|strong=\"H1121\"* an Amorite." + }, + { + "verseNum": 46, + "text": "Your|strong=\"H5921\"* elder|strong=\"H1419\"* sister is|strong=\"H1931\"* Samaria|strong=\"H8111\"*, who|strong=\"H1931\"* dwells|strong=\"H3427\"* at|strong=\"H3427\"* your|strong=\"H5921\"* left|strong=\"H8040\"* hand|strong=\"H3225\"*, she|strong=\"H1931\"* and|strong=\"H1419\"* her|strong=\"H5921\"* daughters|strong=\"H1323\"*; and|strong=\"H1419\"* your|strong=\"H5921\"* younger|strong=\"H6996\"* sister, who|strong=\"H1931\"* dwells|strong=\"H3427\"* at|strong=\"H3427\"* your|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*, is|strong=\"H1931\"* Sodom|strong=\"H5467\"* with|strong=\"H5921\"* her|strong=\"H5921\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 47, + "text": "Yet|strong=\"H3808\"* you|strong=\"H3605\"* have|strong=\"H4592\"* not|strong=\"H3808\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* their|strong=\"H3605\"* ways|strong=\"H1870\"*, nor|strong=\"H3808\"* done|strong=\"H6213\"* their|strong=\"H3605\"* abominations|strong=\"H8441\"*; but|strong=\"H3808\"* soon|strong=\"H4592\"* you|strong=\"H3605\"* were|strong=\"H1870\"* more|strong=\"H3808\"* corrupt|strong=\"H7843\"* than|strong=\"H3808\"* they|strong=\"H3808\"* in|strong=\"H1980\"* all|strong=\"H3605\"* your|strong=\"H3605\"* ways|strong=\"H1870\"*." + }, + { + "verseNum": 48, + "text": "As|strong=\"H6213\"* I|strong=\"H6213\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “Sodom|strong=\"H5467\"* your|strong=\"H6213\"* sister has|strong=\"H6213\"* not|strong=\"H6213\"* done|strong=\"H6213\"*, she|strong=\"H1931\"* nor her|strong=\"H1931\"* daughters|strong=\"H1323\"*, as|strong=\"H6213\"* you|strong=\"H6213\"* have|strong=\"H1323\"* done|strong=\"H6213\"*, you|strong=\"H6213\"* and|strong=\"H6213\"* your|strong=\"H6213\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 49, + "text": "“‘“Behold|strong=\"H2009\"*, this|strong=\"H2088\"* was|strong=\"H1961\"* the|strong=\"H2388\"* iniquity|strong=\"H5771\"* of|strong=\"H1323\"* your|strong=\"H1961\"* sister Sodom|strong=\"H5467\"*: pride|strong=\"H1347\"*, fullness of|strong=\"H1323\"* bread|strong=\"H3899\"*, and|strong=\"H3027\"* prosperous ease|strong=\"H7962\"* was|strong=\"H1961\"* in|strong=\"H3899\"* her|strong=\"H1961\"* and|strong=\"H3027\"* in|strong=\"H3899\"* her|strong=\"H1961\"* daughters|strong=\"H1323\"*. She|strong=\"H3808\"* also|strong=\"H3027\"* didn’t strengthen|strong=\"H2388\"* the|strong=\"H2388\"* hand|strong=\"H3027\"* of|strong=\"H1323\"* the|strong=\"H2388\"* poor|strong=\"H6041\"* and|strong=\"H3027\"* needy|strong=\"H6041\"*." + }, + { + "verseNum": 50, + "text": "They|strong=\"H6213\"* were|strong=\"H7200\"* arrogant and|strong=\"H6440\"* committed|strong=\"H6213\"* abomination|strong=\"H8441\"* before|strong=\"H6440\"* me|strong=\"H6440\"*. Therefore|strong=\"H6213\"* I|strong=\"H7200\"* took|strong=\"H5493\"* them|strong=\"H6440\"* away|strong=\"H5493\"* when|strong=\"H7200\"* I|strong=\"H7200\"* saw|strong=\"H7200\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 51, + "text": "Samaria|strong=\"H8111\"* hasn’t committed|strong=\"H6213\"* half|strong=\"H2677\"* of|strong=\"H3605\"* your|strong=\"H3605\"* sins|strong=\"H2403\"*; but|strong=\"H3808\"* you|strong=\"H3605\"* have|strong=\"H3605\"* multiplied|strong=\"H7235\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"* more|strong=\"H7235\"* than|strong=\"H7235\"* they|strong=\"H3808\"*, and|strong=\"H6213\"* have|strong=\"H3605\"* justified|strong=\"H6663\"* your|strong=\"H3605\"* sisters by|strong=\"H3808\"* all|strong=\"H3605\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"* which|strong=\"H2403\"* you|strong=\"H3605\"* have|strong=\"H3605\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 52, + "text": "You|strong=\"H4480\"* also|strong=\"H1571\"* bear|strong=\"H5375\"* your|strong=\"H5375\"* own shame|strong=\"H3639\"* yourself|strong=\"H5375\"*, in|strong=\"H1571\"* that|strong=\"H4480\"* you|strong=\"H4480\"* have|strong=\"H1571\"* given|strong=\"H5375\"* judgment|strong=\"H6419\"* for|strong=\"H6419\"* your|strong=\"H5375\"* sisters; through|strong=\"H4480\"* your|strong=\"H5375\"* sins|strong=\"H2403\"* that|strong=\"H4480\"* you|strong=\"H4480\"* have|strong=\"H1571\"* committed|strong=\"H8581\"* more|strong=\"H4480\"* abominable|strong=\"H8581\"* than|strong=\"H4480\"* they|strong=\"H2004\"*, they|strong=\"H2004\"* are|strong=\"H2403\"* more|strong=\"H4480\"* righteous|strong=\"H6663\"* than|strong=\"H4480\"* you|strong=\"H4480\"*. Yes|strong=\"H1571\"*, be|strong=\"H1571\"* also|strong=\"H1571\"* confounded, and|strong=\"H2403\"* bear|strong=\"H5375\"* your|strong=\"H5375\"* shame|strong=\"H3639\"*, in|strong=\"H1571\"* that|strong=\"H4480\"* you|strong=\"H4480\"* have|strong=\"H1571\"* justified|strong=\"H6663\"* your|strong=\"H5375\"* sisters." + }, + { + "verseNum": 53, + "text": "“‘“I|strong=\"H8432\"* will|strong=\"H1323\"* reverse|strong=\"H7725\"* their|strong=\"H7725\"* captivity|strong=\"H7622\"*, the|strong=\"H8432\"* captivity|strong=\"H7622\"* of|strong=\"H1323\"* Sodom|strong=\"H5467\"* and|strong=\"H7725\"* her|strong=\"H7725\"* daughters|strong=\"H1323\"*, and|strong=\"H7725\"* the|strong=\"H8432\"* captivity|strong=\"H7622\"* of|strong=\"H1323\"* Samaria|strong=\"H8111\"* and|strong=\"H7725\"* her|strong=\"H7725\"* daughters|strong=\"H1323\"*, and|strong=\"H7725\"* the|strong=\"H8432\"* captivity|strong=\"H7622\"* of|strong=\"H1323\"* your|strong=\"H7725\"* captives|strong=\"H7628\"* among|strong=\"H8432\"* them|strong=\"H7725\"*;" + }, + { + "verseNum": 54, + "text": "that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H6213\"* bear|strong=\"H5375\"* your|strong=\"H3605\"* own shame|strong=\"H3639\"*, and|strong=\"H6213\"* may|strong=\"H6213\"* be|strong=\"H5375\"* ashamed|strong=\"H3637\"* because|strong=\"H4616\"* of|strong=\"H3605\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H3605\"* done|strong=\"H6213\"*, in|strong=\"H6213\"* that|strong=\"H3605\"* you|strong=\"H3605\"* are|strong=\"H6213\"* a|strong=\"H3068\"* comfort|strong=\"H5162\"* to|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 55, + "text": "Your|strong=\"H7725\"* sisters, Sodom|strong=\"H5467\"* and|strong=\"H7725\"* her|strong=\"H7725\"* daughters|strong=\"H1323\"*, will|strong=\"H1323\"* return|strong=\"H7725\"* to|strong=\"H7725\"* their|strong=\"H7725\"* former|strong=\"H6927\"* estate|strong=\"H6927\"*; and|strong=\"H7725\"* Samaria|strong=\"H8111\"* and|strong=\"H7725\"* her|strong=\"H7725\"* daughters|strong=\"H1323\"* will|strong=\"H1323\"* return|strong=\"H7725\"* to|strong=\"H7725\"* their|strong=\"H7725\"* former|strong=\"H6927\"* estate|strong=\"H6927\"*; and|strong=\"H7725\"* you|strong=\"H7725\"* and|strong=\"H7725\"* your|strong=\"H7725\"* daughters|strong=\"H1323\"* will|strong=\"H1323\"* return|strong=\"H7725\"* to|strong=\"H7725\"* your|strong=\"H7725\"* former|strong=\"H6927\"* estate|strong=\"H6927\"*." + }, + { + "verseNum": 56, + "text": "For|strong=\"H3117\"* your|strong=\"H1961\"* sister Sodom|strong=\"H5467\"* was|strong=\"H1961\"* not|strong=\"H3808\"* mentioned|strong=\"H8052\"* by|strong=\"H3117\"* your|strong=\"H1961\"* mouth|strong=\"H6310\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H1961\"* pride|strong=\"H1347\"*," + }, + { + "verseNum": 57, + "text": "before|strong=\"H2962\"* your|strong=\"H3605\"* wickedness|strong=\"H7451\"* was|strong=\"H7451\"* uncovered|strong=\"H1540\"*, as|strong=\"H3644\"* at|strong=\"H6430\"* the|strong=\"H3605\"* time|strong=\"H6256\"* of|strong=\"H1323\"* the|strong=\"H3605\"* reproach|strong=\"H2781\"* of|strong=\"H1323\"* the|strong=\"H3605\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Syria, and|strong=\"H6430\"* of|strong=\"H1323\"* all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H6430\"* around|strong=\"H5439\"* her|strong=\"H3605\"*, the|strong=\"H3605\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, who|strong=\"H3605\"* despise|strong=\"H7590\"* you|strong=\"H3605\"* all|strong=\"H3605\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 58, + "text": "You|strong=\"H5375\"* have|strong=\"H3068\"* borne|strong=\"H5375\"* your|strong=\"H3068\"* lewdness|strong=\"H2154\"* and|strong=\"H3068\"* your|strong=\"H3068\"* abominations|strong=\"H8441\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 59, + "text": "“‘For|strong=\"H3588\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “I|strong=\"H3588\"* will|strong=\"H3069\"* also|strong=\"H3541\"* deal|strong=\"H6213\"* with|strong=\"H1285\"* you|strong=\"H3588\"* as|strong=\"H6213\"* you|strong=\"H3588\"* have|strong=\"H3588\"* done|strong=\"H6213\"*, who|strong=\"H3588\"* have|strong=\"H3588\"* despised the|strong=\"H3588\"* oath in|strong=\"H6213\"* breaking|strong=\"H6565\"* the|strong=\"H3588\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 60, + "text": "Nevertheless I|strong=\"H3117\"* will|strong=\"H3117\"* remember|strong=\"H2142\"* my|strong=\"H6965\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* you|strong=\"H3117\"* in|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H2142\"* youth|strong=\"H5271\"*, and|strong=\"H6965\"* I|strong=\"H3117\"* will|strong=\"H3117\"* establish|strong=\"H6965\"* an|strong=\"H6965\"* everlasting|strong=\"H5769\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* you|strong=\"H3117\"*." + }, + { + "verseNum": 61, + "text": "Then|strong=\"H3947\"* you|strong=\"H5414\"* will|strong=\"H5414\"* remember|strong=\"H2142\"* your|strong=\"H5414\"* ways|strong=\"H1870\"* and|strong=\"H1419\"* be|strong=\"H3808\"* ashamed|strong=\"H3637\"* when|strong=\"H4480\"* you|strong=\"H5414\"* receive|strong=\"H3947\"* your|strong=\"H5414\"* sisters, your|strong=\"H5414\"* elder|strong=\"H1419\"* sisters and|strong=\"H1419\"* your|strong=\"H5414\"* younger|strong=\"H6996\"*; and|strong=\"H1419\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5414\"* you|strong=\"H5414\"* for|strong=\"H5414\"* daughters|strong=\"H1323\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* by|strong=\"H1870\"* your|strong=\"H5414\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 62, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* establish|strong=\"H6965\"* my|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* you|strong=\"H3588\"*. Then|strong=\"H6965\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 63, + "text": "that|strong=\"H3605\"* you|strong=\"H6440\"* may|strong=\"H1961\"* remember|strong=\"H2142\"*, and|strong=\"H6440\"* be|strong=\"H1961\"* confounded, and|strong=\"H6440\"* never|strong=\"H3808\"* open|strong=\"H6440\"* your|strong=\"H3605\"* mouth|strong=\"H6310\"* any|strong=\"H3605\"* more|strong=\"H5750\"* because|strong=\"H6440\"* of|strong=\"H6440\"* your|strong=\"H3605\"* shame|strong=\"H3639\"*, when|strong=\"H1961\"* I|strong=\"H3808\"* have|strong=\"H1961\"* forgiven|strong=\"H3722\"* you|strong=\"H6440\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H6440\"* have|strong=\"H1961\"* done|strong=\"H6213\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, tell a|strong=\"H3068\"* riddle|strong=\"H2420\"*, and|strong=\"H1121\"* speak|strong=\"H4911\"* a|strong=\"H3068\"* parable|strong=\"H4912\"* to|strong=\"H3478\"* the|strong=\"H1121\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H1419\"* say, ‘The|strong=\"H3947\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “A|strong=\"H3068\"* great|strong=\"H1419\"* eagle|strong=\"H5404\"* with|strong=\"H5404\"* great|strong=\"H1419\"* wings|strong=\"H3671\"* and|strong=\"H1419\"* long|strong=\"H1419\"* feathers|strong=\"H5133\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* feathers|strong=\"H5133\"* which|strong=\"H3844\"* had various|strong=\"H7553\"* colors|strong=\"H7553\"*, came to|strong=\"H3947\"* Lebanon|strong=\"H3844\"* and|strong=\"H1419\"* took|strong=\"H3947\"* the|strong=\"H3947\"* top|strong=\"H6788\"* of|strong=\"H4392\"* the|strong=\"H3947\"* cedar." + }, + { + "verseNum": 4, + "text": "He|strong=\"H7760\"* cropped off|strong=\"H6998\"* the|strong=\"H7760\"* topmost|strong=\"H7218\"* of|strong=\"H5892\"* its|strong=\"H7760\"* young|strong=\"H3242\"* twigs|strong=\"H3242\"*, and|strong=\"H5892\"* carried it|strong=\"H7760\"* to|strong=\"H5892\"* a|strong=\"H3068\"* land of|strong=\"H5892\"* traffic. He|strong=\"H7760\"* planted it|strong=\"H7760\"* in|strong=\"H5892\"* a|strong=\"H3068\"* city|strong=\"H5892\"* of|strong=\"H5892\"* merchants|strong=\"H7402\"*." + }, + { + "verseNum": 5, + "text": "“‘“He|strong=\"H5414\"* also took|strong=\"H3947\"* some|strong=\"H7227\"* of|strong=\"H4325\"* the|strong=\"H5921\"* seed|strong=\"H2233\"* of|strong=\"H4325\"* the|strong=\"H5921\"* land|strong=\"H7704\"* and|strong=\"H7704\"* planted|strong=\"H5414\"* it|strong=\"H5414\"* in|strong=\"H5921\"* fruitful|strong=\"H2233\"* soil|strong=\"H7704\"*. He|strong=\"H5414\"* placed|strong=\"H5414\"* it|strong=\"H5414\"* beside|strong=\"H5921\"* many|strong=\"H7227\"* waters|strong=\"H4325\"*. He|strong=\"H5414\"* set|strong=\"H7760\"* it|strong=\"H5414\"* as|strong=\"H5414\"* a|strong=\"H3068\"* willow|strong=\"H6851\"* tree|strong=\"H6851\"*." + }, + { + "verseNum": 6, + "text": "It|strong=\"H6213\"* grew|strong=\"H6779\"* and|strong=\"H7971\"* became|strong=\"H1961\"* a|strong=\"H3068\"* spreading|strong=\"H5628\"* vine|strong=\"H1612\"* of|strong=\"H8478\"* low|strong=\"H8217\"* stature|strong=\"H6967\"*, whose branches|strong=\"H1808\"* turned|strong=\"H6437\"* toward|strong=\"H6437\"* him|strong=\"H7971\"*, and|strong=\"H7971\"* its|strong=\"H6213\"* roots|strong=\"H8328\"* were|strong=\"H1961\"* under|strong=\"H8478\"* him|strong=\"H7971\"*. So|strong=\"H6213\"* it|strong=\"H6213\"* became|strong=\"H1961\"* a|strong=\"H3068\"* vine|strong=\"H1612\"*, produced|strong=\"H6213\"* branches|strong=\"H1808\"*, and|strong=\"H7971\"* shot|strong=\"H7971\"* out|strong=\"H7971\"* sprigs|strong=\"H6288\"*." + }, + { + "verseNum": 7, + "text": "“‘“There|strong=\"H2009\"* was|strong=\"H1961\"* also|strong=\"H2063\"* another|strong=\"H3671\"* great|strong=\"H1419\"* eagle|strong=\"H5404\"* with|strong=\"H5921\"* great|strong=\"H1419\"* wings|strong=\"H3671\"* and|strong=\"H7971\"* many|strong=\"H7227\"* feathers|strong=\"H5133\"*. Behold|strong=\"H2009\"*, this|strong=\"H2063\"* vine|strong=\"H1612\"* bent|strong=\"H3719\"* its|strong=\"H5921\"* roots|strong=\"H8328\"* toward|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H7971\"* shot|strong=\"H7971\"* out|strong=\"H7971\"* its|strong=\"H5921\"* branches|strong=\"H1808\"* toward|strong=\"H5921\"* him|strong=\"H5921\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* ground where|strong=\"H5921\"* it|strong=\"H5921\"* was|strong=\"H1961\"* planted|strong=\"H4302\"*, that|strong=\"H1961\"* he|strong=\"H5921\"* might water|strong=\"H8248\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "It|strong=\"H1931\"* was|strong=\"H1961\"* planted|strong=\"H8362\"* in|strong=\"H6213\"* a|strong=\"H3068\"* good|strong=\"H2896\"* soil|strong=\"H7704\"* by|strong=\"H4325\"* many|strong=\"H7227\"* waters|strong=\"H4325\"*, that|strong=\"H1931\"* it|strong=\"H1931\"* might produce|strong=\"H6529\"* branches|strong=\"H6057\"* and|strong=\"H6213\"* that|strong=\"H1931\"* it|strong=\"H1931\"* might bear|strong=\"H5375\"* fruit|strong=\"H6529\"*, that|strong=\"H1931\"* it|strong=\"H1931\"* might be|strong=\"H1961\"* a|strong=\"H3068\"* good|strong=\"H2896\"* vine|strong=\"H1612\"*.”’" + }, + { + "verseNum": 9, + "text": "“Say, ‘The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Will|strong=\"H5971\"* it|strong=\"H5375\"* prosper|strong=\"H6743\"*? Won’t he|strong=\"H3605\"* pull|strong=\"H5423\"* up|strong=\"H5375\"* its|strong=\"H3605\"* roots|strong=\"H8328\"* and|strong=\"H1419\"* cut|strong=\"H7082\"* off|strong=\"H5423\"* its|strong=\"H3605\"* fruit|strong=\"H6529\"*, that|strong=\"H5971\"* it|strong=\"H5375\"* may|strong=\"H5971\"* wither|strong=\"H3001\"*, that|strong=\"H5971\"* all|strong=\"H3605\"* its|strong=\"H3605\"* fresh springing|strong=\"H6780\"* leaves|strong=\"H2964\"* may|strong=\"H5971\"* wither|strong=\"H3001\"*? It|strong=\"H5375\"* can|strong=\"H2220\"*’t be|strong=\"H3808\"* raised|strong=\"H5375\"* from|strong=\"H5971\"* its|strong=\"H3605\"* roots|strong=\"H8328\"* by|strong=\"H3808\"* a|strong=\"H3068\"* strong|strong=\"H1419\"* arm|strong=\"H2220\"* or|strong=\"H3808\"* many|strong=\"H7227\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "Yes|strong=\"H2009\"*, behold|strong=\"H2009\"*, being planted|strong=\"H8362\"*, will|strong=\"H7307\"* it|strong=\"H5921\"* prosper|strong=\"H6743\"*? Won’t it|strong=\"H5921\"* utterly|strong=\"H3001\"* wither|strong=\"H3001\"* when|strong=\"H5060\"* the|strong=\"H5921\"* east|strong=\"H6921\"* wind|strong=\"H7307\"* touches|strong=\"H5060\"* it|strong=\"H5921\"*? It|strong=\"H5921\"* will|strong=\"H7307\"* wither|strong=\"H3001\"* in|strong=\"H5921\"* the|strong=\"H5921\"* ground where|strong=\"H5921\"* it|strong=\"H5921\"* grew|strong=\"H6780\"*.”’”" + }, + { + "verseNum": 11, + "text": "Moreover|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 12, + "text": "“Say now|strong=\"H4994\"* to|strong=\"H3389\"* the|strong=\"H3947\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*, ‘Don’t you|strong=\"H3947\"* know|strong=\"H3045\"* what|strong=\"H4100\"* these|strong=\"H3947\"* things|strong=\"H3808\"* mean?’ Tell|strong=\"H3045\"* them|strong=\"H3947\"*, ‘Behold|strong=\"H2009\"*, the|strong=\"H3947\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon came|strong=\"H4428\"* to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H4428\"* took|strong=\"H3947\"* its|strong=\"H3045\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* its|strong=\"H3045\"* princes|strong=\"H8269\"*, and|strong=\"H4428\"* brought|strong=\"H3947\"* them|strong=\"H3947\"* to|strong=\"H3389\"* him|strong=\"H3947\"* to|strong=\"H3389\"* Babylon." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1285\"* took|strong=\"H3947\"* one|strong=\"H2233\"* of|strong=\"H2233\"* the|strong=\"H3947\"* royal|strong=\"H4410\"* offspring|strong=\"H2233\"*,+ 17:13 or, seed* and|strong=\"H1285\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* him|strong=\"H3947\"*. He|strong=\"H1285\"* also brought|strong=\"H3947\"* him|strong=\"H3947\"* under an|strong=\"H3947\"* oath, and|strong=\"H1285\"* took|strong=\"H3947\"* away|strong=\"H3947\"* the|strong=\"H3947\"* mighty of|strong=\"H2233\"* the|strong=\"H3947\"* land," + }, + { + "verseNum": 14, + "text": "that|strong=\"H1961\"* the|strong=\"H5375\"* kingdom|strong=\"H4467\"* might|strong=\"H4467\"* be|strong=\"H1961\"* brought|strong=\"H5375\"* low|strong=\"H8217\"*, that|strong=\"H1961\"* it|strong=\"H5375\"* might|strong=\"H4467\"* not|strong=\"H1115\"* lift|strong=\"H5375\"* itself up|strong=\"H5375\"*, but|strong=\"H1961\"* that|strong=\"H1961\"* by|strong=\"H5975\"* keeping|strong=\"H8104\"* his|strong=\"H5375\"* covenant|strong=\"H1285\"* it|strong=\"H5375\"* might|strong=\"H4467\"* stand|strong=\"H5975\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H5971\"* he|strong=\"H6213\"* rebelled|strong=\"H4775\"* against|strong=\"H4714\"* him|strong=\"H5414\"* in|strong=\"H6213\"* sending|strong=\"H7971\"* his|strong=\"H5414\"* ambassadors|strong=\"H4397\"* into|strong=\"H6213\"* Egypt|strong=\"H4714\"*, that|strong=\"H5971\"* they|strong=\"H6213\"* might|strong=\"H5971\"* give|strong=\"H5414\"* him|strong=\"H5414\"* horses|strong=\"H5483\"* and|strong=\"H7971\"* many|strong=\"H7227\"* people|strong=\"H5971\"*. Will|strong=\"H5971\"* he|strong=\"H6213\"* prosper|strong=\"H6743\"*? Will|strong=\"H5971\"* he|strong=\"H6213\"* who|strong=\"H5971\"* does|strong=\"H6213\"* such|strong=\"H6213\"* things|strong=\"H7227\"* escape|strong=\"H4422\"*? Will|strong=\"H5971\"* he|strong=\"H6213\"* break|strong=\"H6565\"* the|strong=\"H5414\"* covenant|strong=\"H1285\"*, and|strong=\"H7971\"* still|strong=\"H5971\"* escape|strong=\"H4422\"*?" + }, + { + "verseNum": 16, + "text": "“‘As|strong=\"H4427\"* I|strong=\"H3808\"* live|strong=\"H2416\"*,’ says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, ‘surely|strong=\"H4191\"* in|strong=\"H4428\"* the|strong=\"H5002\"* place|strong=\"H4725\"* where|strong=\"H4725\"* the|strong=\"H5002\"* king|strong=\"H4428\"* dwells who|strong=\"H4428\"* made|strong=\"H4427\"* him|strong=\"H4427\"* king|strong=\"H4428\"*, whose oath he|strong=\"H3808\"* despised, and|strong=\"H4428\"* whose covenant|strong=\"H1285\"* he|strong=\"H3808\"* broke|strong=\"H6565\"*, even|strong=\"H3808\"* with|strong=\"H1285\"* him|strong=\"H4427\"* in|strong=\"H4428\"* the|strong=\"H5002\"* middle|strong=\"H8432\"* of|strong=\"H4428\"* Babylon he|strong=\"H3808\"* will|strong=\"H4428\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 17, + "text": "Pharaoh|strong=\"H6547\"* with|strong=\"H6213\"* his|strong=\"H6213\"* mighty|strong=\"H1419\"* army|strong=\"H2428\"* and|strong=\"H1419\"* great|strong=\"H1419\"* company|strong=\"H6951\"* won’t help|strong=\"H4421\"* him|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H6213\"* war|strong=\"H4421\"*, when|strong=\"H6213\"* they|strong=\"H3808\"* cast|strong=\"H8210\"* up|strong=\"H1129\"* mounds and|strong=\"H1419\"* build|strong=\"H1129\"* forts|strong=\"H1785\"* to|strong=\"H6213\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* many|strong=\"H7227\"* persons|strong=\"H5315\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H6213\"* he|strong=\"H6213\"* has|strong=\"H3027\"* despised the|strong=\"H3605\"* oath by|strong=\"H3027\"* breaking|strong=\"H6565\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"*; and|strong=\"H3027\"* behold|strong=\"H2009\"*, he|strong=\"H6213\"* had|strong=\"H5414\"* given|strong=\"H5414\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* yet|strong=\"H3808\"* has|strong=\"H3027\"* done|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* things|strong=\"H3605\"*. He|strong=\"H6213\"* won’t escape|strong=\"H4422\"*." + }, + { + "verseNum": 19, + "text": "“Therefore|strong=\"H3651\"* the|strong=\"H5414\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘As|strong=\"H3651\"* I|strong=\"H5414\"* live|strong=\"H2416\"*, I|strong=\"H5414\"* will|strong=\"H5414\"* surely|strong=\"H5414\"* bring|strong=\"H5414\"* on|strong=\"H5414\"* his|strong=\"H5414\"* own head|strong=\"H7218\"* my|strong=\"H5414\"* oath that|strong=\"H3651\"* he|strong=\"H3651\"* has|strong=\"H5414\"* despised and|strong=\"H7218\"* my|strong=\"H5414\"* covenant|strong=\"H1285\"* that|strong=\"H3651\"* he|strong=\"H3651\"* has|strong=\"H5414\"* broken|strong=\"H6331\"*." + }, + { + "verseNum": 20, + "text": "I|strong=\"H5921\"* will|strong=\"H8033\"* spread|strong=\"H6566\"* my|strong=\"H5921\"* net|strong=\"H7568\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H8033\"* he|strong=\"H8033\"* will|strong=\"H8033\"* be|strong=\"H8610\"* taken|strong=\"H8610\"* in|strong=\"H5921\"* my|strong=\"H5921\"* snare|strong=\"H4686\"*. I|strong=\"H5921\"* will|strong=\"H8033\"* bring him|strong=\"H5921\"* to|strong=\"H5921\"* Babylon, and|strong=\"H8033\"* will|strong=\"H8033\"* enter|strong=\"H8199\"* into|strong=\"H8199\"* judgment|strong=\"H8199\"* with|strong=\"H5921\"* him|strong=\"H5921\"* there|strong=\"H8033\"* for|strong=\"H5921\"* his|strong=\"H5921\"* trespass|strong=\"H4604\"* that|strong=\"H8199\"* he|strong=\"H8033\"* has|strong=\"H8199\"* trespassed|strong=\"H4603\"* against|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "All|strong=\"H3605\"* his|strong=\"H3605\"* fugitives|strong=\"H5307\"* in|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* bands will|strong=\"H3068\"* fall|strong=\"H5307\"* by|strong=\"H3068\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, and|strong=\"H3068\"* those|strong=\"H3605\"* who|strong=\"H3605\"* remain|strong=\"H7604\"* will|strong=\"H3068\"* be|strong=\"H3068\"* scattered|strong=\"H6566\"* toward|strong=\"H3068\"* every|strong=\"H3605\"* wind|strong=\"H7307\"*. Then|strong=\"H1696\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H3588\"*.’" + }, + { + "verseNum": 22, + "text": "“The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘I|strong=\"H5414\"* will|strong=\"H5414\"* also|strong=\"H3541\"* take|strong=\"H3947\"* some of|strong=\"H2022\"* the|strong=\"H5921\"* lofty|strong=\"H7311\"* top|strong=\"H7218\"* of|strong=\"H2022\"* the|strong=\"H5921\"* cedar, and|strong=\"H7218\"* will|strong=\"H5414\"* plant|strong=\"H8362\"* it|strong=\"H5414\"*. I|strong=\"H5414\"* will|strong=\"H5414\"* crop off|strong=\"H5921\"* from|strong=\"H5921\"* the|strong=\"H5921\"* topmost|strong=\"H7218\"* of|strong=\"H2022\"* its|strong=\"H5414\"* young|strong=\"H3127\"* twigs|strong=\"H3127\"* a|strong=\"H3068\"* tender|strong=\"H7390\"* one|strong=\"H7390\"*, and|strong=\"H7218\"* I|strong=\"H5414\"* will|strong=\"H5414\"* plant|strong=\"H8362\"* it|strong=\"H5414\"* on|strong=\"H5921\"* a|strong=\"H3068\"* high|strong=\"H1364\"* and|strong=\"H7218\"* lofty|strong=\"H7311\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 23, + "text": "I|strong=\"H8478\"* will|strong=\"H1961\"* plant|strong=\"H8362\"* it|strong=\"H6213\"* in|strong=\"H3478\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* of|strong=\"H2022\"* the|strong=\"H3605\"* height|strong=\"H4791\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* it|strong=\"H6213\"* will|strong=\"H1961\"* produce|strong=\"H6529\"* boughs|strong=\"H6057\"*, and|strong=\"H3478\"* bear|strong=\"H5375\"* fruit|strong=\"H6529\"*, and|strong=\"H3478\"* be|strong=\"H1961\"* a|strong=\"H3068\"* good cedar. Birds|strong=\"H6833\"* of|strong=\"H2022\"* every|strong=\"H3605\"* kind|strong=\"H3671\"* will|strong=\"H1961\"* dwell|strong=\"H7931\"* in|strong=\"H3478\"* the|strong=\"H3605\"* shade|strong=\"H6738\"* of|strong=\"H2022\"* its|strong=\"H3605\"* branches|strong=\"H1808\"*." + }, + { + "verseNum": 24, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* trees|strong=\"H6086\"* of|strong=\"H3068\"* the|strong=\"H3605\"* field|strong=\"H7704\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* brought|strong=\"H6213\"* down|strong=\"H8213\"* the|strong=\"H3605\"* high|strong=\"H1364\"* tree|strong=\"H6086\"*, have|strong=\"H3068\"* exalted|strong=\"H1361\"* the|strong=\"H3605\"* low|strong=\"H8213\"* tree|strong=\"H6086\"*, have|strong=\"H3068\"* dried|strong=\"H3001\"* up|strong=\"H3001\"* the|strong=\"H3605\"* green|strong=\"H3892\"* tree|strong=\"H6086\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* made|strong=\"H6213\"* the|strong=\"H3605\"* dry|strong=\"H3001\"* tree|strong=\"H6086\"* flourish|strong=\"H6524\"*." + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"* again|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H5921\"* mean, that|strong=\"H3478\"* you|strong=\"H5921\"* use|strong=\"H4911\"* this|strong=\"H2088\"* proverb|strong=\"H4912\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying," + }, + { + "verseNum": 3, + "text": "“As|strong=\"H1961\"* I|strong=\"H2088\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “you|strong=\"H2088\"* shall|strong=\"H3478\"* not|strong=\"H2088\"* use|strong=\"H4911\"* this|strong=\"H2088\"* proverb|strong=\"H4912\"* any|strong=\"H5750\"* more|strong=\"H5750\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2005\"*, all|strong=\"H3605\"* souls|strong=\"H5315\"* are|strong=\"H1121\"* mine; as|strong=\"H5315\"* the|strong=\"H3605\"* soul|strong=\"H5315\"* of|strong=\"H1121\"* the|strong=\"H3605\"* father|strong=\"H1121\"*, so|strong=\"H4191\"* also|strong=\"H1121\"* the|strong=\"H3605\"* soul|strong=\"H5315\"* of|strong=\"H1121\"* the|strong=\"H3605\"* son|strong=\"H1121\"* is|strong=\"H1931\"* mine. The|strong=\"H3605\"* soul|strong=\"H5315\"* who|strong=\"H3605\"* sins|strong=\"H2398\"*, he|strong=\"H1931\"* shall|strong=\"H1121\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 5, + "text": "“But|strong=\"H3588\"* if|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H6662\"* is|strong=\"H6662\"* just|strong=\"H6662\"*," + }, + { + "verseNum": 6, + "text": "and|strong=\"H3478\"* has|strong=\"H3478\"* not|strong=\"H3808\"* eaten on|strong=\"H1004\"* the|strong=\"H5375\"* mountains|strong=\"H2022\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"H7725\"* has|strong=\"H5414\"* not|strong=\"H3808\"* wronged|strong=\"H3238\"* any|strong=\"H5414\"*," + }, + { + "verseNum": 8, + "text": "he|strong=\"H6213\"* who|strong=\"H6213\"* hasn’t lent to|strong=\"H7725\"* them|strong=\"H5414\"* with|strong=\"H6213\"* interest|strong=\"H5392\"*," + }, + { + "verseNum": 9, + "text": "has|strong=\"H6213\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*," + }, + { + "verseNum": 10, + "text": "“If|strong=\"H1121\"* he|strong=\"H6213\"* fathers|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"* who|strong=\"H1121\"* is|strong=\"H1121\"* a|strong=\"H3068\"* robber|strong=\"H6530\"* who|strong=\"H1121\"* sheds|strong=\"H8210\"* blood|strong=\"H1818\"*, and|strong=\"H1121\"* who|strong=\"H1121\"* does|strong=\"H6213\"* any|strong=\"H6213\"* one|strong=\"H1121\"* of|strong=\"H1121\"* these|strong=\"H6213\"* things," + }, + { + "verseNum": 11, + "text": "or|strong=\"H3808\"* who|strong=\"H3605\"* does|strong=\"H6213\"* not|strong=\"H3808\"* do|strong=\"H6213\"* any|strong=\"H3605\"* of|strong=\"H2022\"* those|strong=\"H3605\"* things|strong=\"H3605\"*" + }, + { + "verseNum": 12, + "text": "has|strong=\"H5869\"* wronged|strong=\"H3238\"* the|strong=\"H5375\"* poor|strong=\"H6041\"* and|strong=\"H7725\"* needy|strong=\"H6041\"*," + }, + { + "verseNum": 13, + "text": "has|strong=\"H1961\"* lent with|strong=\"H6213\"* interest|strong=\"H5392\"*," + }, + { + "verseNum": 14, + "text": "“Now|strong=\"H2009\"*, behold|strong=\"H2009\"*, if|strong=\"H2009\"* he|strong=\"H6213\"* fathers|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"* who|strong=\"H3605\"* sees|strong=\"H7200\"* all|strong=\"H3605\"* his|strong=\"H3605\"* father|strong=\"H3205\"*’s sins|strong=\"H2403\"* which|strong=\"H2004\"* he|strong=\"H6213\"* has|strong=\"H2009\"* done|strong=\"H6213\"*, and|strong=\"H1121\"* fears, and|strong=\"H1121\"* doesn’t do|strong=\"H6213\"* likewise|strong=\"H2004\"*," + }, + { + "verseNum": 15, + "text": "who|strong=\"H3478\"* hasn’t eaten on|strong=\"H5921\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"*," + }, + { + "verseNum": 16, + "text": "hasn’t wronged|strong=\"H3238\"* any|strong=\"H5414\"*," + }, + { + "verseNum": 17, + "text": "who|strong=\"H1931\"* has|strong=\"H3027\"* withdrawn|strong=\"H7725\"* his|strong=\"H3947\"* hand|strong=\"H3027\"* from|strong=\"H7725\"* the|strong=\"H3947\"* poor|strong=\"H6041\"*," + }, + { + "verseNum": 18, + "text": "As|strong=\"H6213\"* for|strong=\"H3588\"* his|strong=\"H6213\"* father, because|strong=\"H3588\"* he|strong=\"H3588\"* cruelly|strong=\"H6233\"* oppressed|strong=\"H6231\"*, robbed|strong=\"H1497\"* his|strong=\"H6213\"* brother, and|strong=\"H5971\"* did|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H5971\"* is|strong=\"H2896\"* not|strong=\"H3808\"* good|strong=\"H2896\"* among|strong=\"H8432\"* his|strong=\"H6213\"* people|strong=\"H5971\"*, behold|strong=\"H2009\"*, he|strong=\"H3588\"* will|strong=\"H5971\"* die|strong=\"H4191\"* in|strong=\"H6213\"* his|strong=\"H6213\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 19, + "text": "“Yet|strong=\"H3808\"* you|strong=\"H3605\"* say, ‘Why|strong=\"H4069\"* doesn’t the|strong=\"H3605\"* son|strong=\"H1121\"* bear|strong=\"H5375\"* the|strong=\"H3605\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H3605\"* father|strong=\"H1121\"*?’ When|strong=\"H2421\"* the|strong=\"H3605\"* son|strong=\"H1121\"* has|strong=\"H3605\"* done|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H2708\"* is|strong=\"H3605\"* lawful|strong=\"H4941\"* and|strong=\"H1121\"* right|strong=\"H4941\"*, and|strong=\"H1121\"* has|strong=\"H3605\"* kept|strong=\"H8104\"* all|strong=\"H3605\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, and|strong=\"H1121\"* has|strong=\"H3605\"* done|strong=\"H6213\"* them|strong=\"H6213\"*, he|strong=\"H6213\"* will|strong=\"H1121\"* surely|strong=\"H2421\"* live|strong=\"H2421\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H5921\"* soul|strong=\"H5315\"* who|strong=\"H1931\"* sins|strong=\"H2398\"*, he|strong=\"H1931\"* shall|strong=\"H1121\"* die|strong=\"H4191\"*. The|strong=\"H5921\"* son|strong=\"H1121\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* bear|strong=\"H5375\"* the|strong=\"H5921\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H5921\"* father|strong=\"H1121\"*, neither|strong=\"H3808\"* shall|strong=\"H1121\"* the|strong=\"H5921\"* father|strong=\"H1121\"* bear|strong=\"H5375\"* the|strong=\"H5921\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H5921\"* son|strong=\"H1121\"*. The|strong=\"H5921\"* righteousness|strong=\"H6666\"* of|strong=\"H1121\"* the|strong=\"H5921\"* righteous|strong=\"H6662\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* wickedness|strong=\"H7564\"* of|strong=\"H1121\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "“But|strong=\"H3588\"* if|strong=\"H3588\"* the|strong=\"H3605\"* wicked|strong=\"H7563\"* turns|strong=\"H7725\"* from|strong=\"H7725\"* all|strong=\"H3605\"* his|strong=\"H3605\"* sins|strong=\"H2403\"* that|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* committed|strong=\"H6213\"*, and|strong=\"H7725\"* keeps|strong=\"H8104\"* all|strong=\"H3605\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, and|strong=\"H7725\"* does|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H2708\"* is|strong=\"H7563\"* lawful|strong=\"H4941\"* and|strong=\"H7725\"* right|strong=\"H4941\"*, he|strong=\"H3588\"* shall|strong=\"H7563\"* surely|strong=\"H4191\"* live|strong=\"H2421\"*. He|strong=\"H3588\"* shall|strong=\"H7563\"* not|strong=\"H3808\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 22, + "text": "None|strong=\"H3808\"* of|strong=\"H3605\"* his|strong=\"H3605\"* transgressions|strong=\"H6588\"* that|strong=\"H3605\"* he|strong=\"H6213\"* has|strong=\"H3605\"* committed|strong=\"H6213\"* will|strong=\"H3808\"* be|strong=\"H3808\"* remembered|strong=\"H2142\"* against|strong=\"H6213\"* him|strong=\"H6213\"*. In|strong=\"H6213\"* his|strong=\"H3605\"* righteousness|strong=\"H6666\"* that|strong=\"H3605\"* he|strong=\"H6213\"* has|strong=\"H3605\"* done|strong=\"H6213\"*, he|strong=\"H6213\"* shall|strong=\"H3808\"* live|strong=\"H2421\"*." + }, + { + "verseNum": 23, + "text": "Have|strong=\"H7563\"* I|strong=\"H3808\"* any|strong=\"H3808\"* pleasure|strong=\"H2654\"* in|strong=\"H7725\"* the|strong=\"H5002\"* death|strong=\"H4194\"* of|strong=\"H1870\"* the|strong=\"H5002\"* wicked|strong=\"H7563\"*?” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “and|strong=\"H7725\"* not|strong=\"H3808\"* rather|strong=\"H3808\"* that|strong=\"H3808\"* he|strong=\"H3808\"* should|strong=\"H7563\"* return|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* way|strong=\"H1870\"*, and|strong=\"H7725\"* live|strong=\"H2421\"*?" + }, + { + "verseNum": 24, + "text": "“But|strong=\"H3808\"* when|strong=\"H7725\"* the|strong=\"H3605\"* righteous|strong=\"H6662\"* turns|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H3605\"* righteousness|strong=\"H6666\"*, and|strong=\"H7725\"* commits|strong=\"H6213\"* iniquity|strong=\"H5766\"*, and|strong=\"H7725\"* does|strong=\"H6213\"* according to|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* abominations|strong=\"H8441\"* that|strong=\"H3605\"* the|strong=\"H3605\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* does|strong=\"H6213\"*, should|strong=\"H6213\"* he|strong=\"H6213\"* live|strong=\"H2425\"*? None|strong=\"H3808\"* of|strong=\"H3605\"* his|strong=\"H3605\"* righteous|strong=\"H6662\"* deeds|strong=\"H6666\"* that|strong=\"H3605\"* he|strong=\"H6213\"* has|strong=\"H3605\"* done|strong=\"H6213\"* will|strong=\"H6662\"* be|strong=\"H4191\"* remembered|strong=\"H2142\"*. In|strong=\"H6213\"* his|strong=\"H3605\"* trespass|strong=\"H4604\"* that|strong=\"H3605\"* he|strong=\"H6213\"* has|strong=\"H3605\"* trespassed|strong=\"H4603\"*, and|strong=\"H7725\"* in|strong=\"H6213\"* his|strong=\"H3605\"* sin|strong=\"H2403\"* that|strong=\"H3605\"* he|strong=\"H6213\"* has|strong=\"H3605\"* sinned|strong=\"H2398\"*, in|strong=\"H6213\"* them|strong=\"H7725\"* he|strong=\"H6213\"* shall|strong=\"H7563\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 25, + "text": "“Yet|strong=\"H3808\"* you|strong=\"H3808\"* say|strong=\"H3478\"*, ‘The|strong=\"H8085\"* way|strong=\"H1870\"* of|strong=\"H1004\"* the|strong=\"H8085\"* Lord is|strong=\"H1870\"* not|strong=\"H3808\"* equal|strong=\"H8505\"*.’ Hear|strong=\"H8085\"* now|strong=\"H4994\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*: Is|strong=\"H1870\"* my|strong=\"H8085\"* way|strong=\"H1870\"* not|strong=\"H3808\"* equal|strong=\"H8505\"*? Aren’t your|strong=\"H8085\"* ways|strong=\"H1870\"* unequal|strong=\"H8505\"*?" + }, + { + "verseNum": 26, + "text": "When|strong=\"H7725\"* the|strong=\"H5921\"* righteous|strong=\"H6662\"* man|strong=\"H6662\"* turns|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* righteousness|strong=\"H6666\"*, and|strong=\"H7725\"* commits|strong=\"H6213\"* iniquity|strong=\"H5766\"*, and|strong=\"H7725\"* dies|strong=\"H4191\"* in|strong=\"H5921\"* it|strong=\"H5921\"*, then|strong=\"H6213\"* he|strong=\"H6213\"* dies|strong=\"H4191\"* in|strong=\"H5921\"* his|strong=\"H7725\"* iniquity|strong=\"H5766\"* that|strong=\"H6213\"* he|strong=\"H6213\"* has|strong=\"H6213\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 27, + "text": "Again|strong=\"H7725\"*, when|strong=\"H2421\"* the|strong=\"H6213\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* turns|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* wickedness|strong=\"H7564\"* that|strong=\"H1931\"* he|strong=\"H1931\"* has|strong=\"H5315\"* committed|strong=\"H6213\"*, and|strong=\"H7725\"* does|strong=\"H6213\"* that|strong=\"H1931\"* which|strong=\"H1931\"* is|strong=\"H1931\"* lawful|strong=\"H4941\"* and|strong=\"H7725\"* right|strong=\"H4941\"*, he|strong=\"H1931\"* will|strong=\"H5315\"* save|strong=\"H2421\"* his|strong=\"H7725\"* soul|strong=\"H5315\"* alive|strong=\"H2421\"*." + }, + { + "verseNum": 28, + "text": "Because|strong=\"H3605\"* he|strong=\"H6213\"* considers|strong=\"H7200\"*, and|strong=\"H7725\"* turns|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* all|strong=\"H3605\"* his|strong=\"H3605\"* transgressions|strong=\"H6588\"* that|strong=\"H7200\"* he|strong=\"H6213\"* has|strong=\"H3605\"* committed|strong=\"H6213\"*, he|strong=\"H6213\"* shall|strong=\"H3808\"* surely|strong=\"H4191\"* live|strong=\"H2421\"*. He|strong=\"H6213\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 29, + "text": "Yet|strong=\"H3808\"* the|strong=\"H1870\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* says, ‘The|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1004\"* the|strong=\"H1870\"* Lord is|strong=\"H1870\"* not|strong=\"H3808\"* fair.’ House|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, aren’t my|strong=\"H3478\"* ways|strong=\"H1870\"* fair? Aren’t your|strong=\"H3808\"* ways|strong=\"H1870\"* unfair?" + }, + { + "verseNum": 30, + "text": "“Therefore|strong=\"H3651\"* I|strong=\"H3651\"* will|strong=\"H1961\"* judge|strong=\"H8199\"* you|strong=\"H3605\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, everyone|strong=\"H3605\"* according to|strong=\"H7725\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*. “Return|strong=\"H7725\"*, and|strong=\"H3478\"* turn|strong=\"H7725\"* yourselves|strong=\"H3605\"* from|strong=\"H7725\"* all|strong=\"H3605\"* your|strong=\"H3605\"* transgressions|strong=\"H6588\"*, so|strong=\"H3651\"* iniquity|strong=\"H5771\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* your|strong=\"H3605\"* ruin|strong=\"H4383\"*." + }, + { + "verseNum": 31, + "text": "Cast|strong=\"H7993\"* away|strong=\"H7993\"* from|strong=\"H5921\"* you|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3605\"* transgressions|strong=\"H6588\"* in|strong=\"H5921\"* which|strong=\"H1004\"* you|strong=\"H3605\"* have|strong=\"H3478\"* transgressed|strong=\"H6586\"*; and|strong=\"H3478\"* make|strong=\"H6213\"* yourself|strong=\"H6213\"* a|strong=\"H3068\"* new|strong=\"H2319\"* heart|strong=\"H3820\"* and|strong=\"H3478\"* a|strong=\"H3068\"* new|strong=\"H2319\"* spirit|strong=\"H7307\"*. For|strong=\"H5921\"* why|strong=\"H4100\"* will|strong=\"H3478\"* you|strong=\"H3605\"* die|strong=\"H4191\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H2654\"* no|strong=\"H3808\"* pleasure|strong=\"H2654\"* in|strong=\"H4191\"* the|strong=\"H5002\"* death|strong=\"H4194\"* of|strong=\"H4194\"* him|strong=\"H7725\"* who|strong=\"H3588\"* dies|strong=\"H4191\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*. “Therefore|strong=\"H3588\"* turn|strong=\"H7725\"* yourselves, and|strong=\"H7725\"* live|strong=\"H2421\"*!" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "“Moreover, take|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* lamentation|strong=\"H7015\"* for|strong=\"H3478\"* the|strong=\"H5375\"* princes|strong=\"H5387\"* of|strong=\"H5387\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"H7235\"* say," + }, + { + "verseNum": 3, + "text": "She brought|strong=\"H5927\"* up|strong=\"H5927\"* one|strong=\"H1961\"* of|strong=\"H5927\"* her|strong=\"H1961\"* cubs|strong=\"H1482\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H8085\"* nations|strong=\"H1471\"* also|strong=\"H1471\"* heard|strong=\"H8085\"* of|strong=\"H8085\"* him|strong=\"H8085\"*." + }, + { + "verseNum": 5, + "text": "“‘Now|strong=\"H3588\"* when|strong=\"H3588\"* she|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* she|strong=\"H3588\"* had|strong=\"H3588\"* waited|strong=\"H3176\"*," + }, + { + "verseNum": 6, + "text": "He|strong=\"H1980\"* went|strong=\"H1980\"* up|strong=\"H1980\"* and|strong=\"H1980\"* down|strong=\"H1980\"* among|strong=\"H8432\"* the|strong=\"H8432\"* lions|strong=\"H3715\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H5892\"* knew|strong=\"H3045\"* their|strong=\"H3045\"* palaces," + }, + { + "verseNum": 8, + "text": "Then|strong=\"H5414\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* attacked him|strong=\"H5414\"* on|strong=\"H5921\"* every|strong=\"H5439\"* side|strong=\"H5439\"* from|strong=\"H5921\"* the|strong=\"H5921\"* provinces|strong=\"H4082\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H3808\"* put|strong=\"H5414\"* him|strong=\"H5414\"* in|strong=\"H3478\"* a|strong=\"H3068\"* cage|strong=\"H5474\"* with|strong=\"H4428\"* hooks|strong=\"H2397\"*," + }, + { + "verseNum": 10, + "text": "“‘Your|strong=\"H5921\"* mother was|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* vine|strong=\"H1612\"* in|strong=\"H5921\"* your|strong=\"H5921\"* blood|strong=\"H1818\"*, planted|strong=\"H8362\"* by|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 11, + "text": "It|strong=\"H5921\"* had|strong=\"H1961\"* strong|strong=\"H5797\"* branches|strong=\"H1808\"* for|strong=\"H5921\"* the|strong=\"H5921\"* scepters|strong=\"H7626\"* of|strong=\"H4294\"* those|strong=\"H5921\"* who ruled|strong=\"H4910\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H5428\"* it|strong=\"H7993\"* was|strong=\"H7307\"* plucked|strong=\"H5428\"* up|strong=\"H3001\"* in|strong=\"H7307\"* fury|strong=\"H2534\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"H6258\"* it is|strong=\"H4057\"* planted|strong=\"H8362\"* in|strong=\"H8362\"* the|strong=\"H6258\"* wilderness|strong=\"H4057\"*," + }, + { + "verseNum": 14, + "text": "Fire has|strong=\"H1961\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4294\"* its|strong=\"H1961\"* branches|strong=\"H4294\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3427\"* the|strong=\"H6440\"* seventh|strong=\"H7637\"* year|strong=\"H8141\"*, in|strong=\"H3427\"* the|strong=\"H6440\"* fifth|strong=\"H2549\"* month|strong=\"H2320\"*, the|strong=\"H6440\"* tenth|strong=\"H6218\"* day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H6440\"* month|strong=\"H2320\"*, some of|strong=\"H3068\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* came|strong=\"H1961\"* to|strong=\"H3478\"* inquire|strong=\"H1875\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3478\"* sat|strong=\"H3427\"* before|strong=\"H6440\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 3, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H2205\"*, speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5002\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H1121\"*, ‘The|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*: “Is|strong=\"H3478\"* it|strong=\"H1696\"* to|strong=\"H1696\"* inquire|strong=\"H1875\"* of|strong=\"H1121\"* me|strong=\"H1696\"* that|strong=\"H3478\"* you|strong=\"H1696\"* have|strong=\"H1121\"* come|strong=\"H3478\"*? As|strong=\"H1121\"* I|strong=\"H3541\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “I|strong=\"H3541\"* will|strong=\"H3478\"* not|strong=\"H1696\"* be|strong=\"H1121\"* inquired|strong=\"H1875\"* of|strong=\"H1121\"* by|strong=\"H3478\"* you|strong=\"H1696\"*.”’" + }, + { + "verseNum": 4, + "text": "“Will|strong=\"H1121\"* you|strong=\"H3045\"* judge|strong=\"H8199\"* them|strong=\"H1121\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*? Will|strong=\"H1121\"* you|strong=\"H3045\"* judge|strong=\"H8199\"* them|strong=\"H1121\"*? Cause them|strong=\"H1121\"* to|strong=\"H1121\"* know|strong=\"H3045\"* the|strong=\"H3045\"* abominations|strong=\"H8441\"* of|strong=\"H1121\"* their|strong=\"H3045\"* fathers." + }, + { + "verseNum": 5, + "text": "Tell|strong=\"H3045\"* them|strong=\"H3027\"*, ‘The|strong=\"H3069\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “In|strong=\"H3478\"* the|strong=\"H3069\"* day|strong=\"H3117\"* when|strong=\"H3117\"* I|strong=\"H3117\"* chose|strong=\"H5375\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* swore|strong=\"H5375\"* to|strong=\"H3478\"* the|strong=\"H3069\"* offspring|strong=\"H2233\"* of|strong=\"H1004\"* the|strong=\"H3069\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*, and|strong=\"H3478\"* made|strong=\"H3045\"* myself|strong=\"H3045\"* known|strong=\"H3045\"* to|strong=\"H3478\"* them|strong=\"H3027\"* in|strong=\"H3478\"* the|strong=\"H3069\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, when|strong=\"H3117\"* I|strong=\"H3117\"* swore|strong=\"H5375\"* to|strong=\"H3478\"* them|strong=\"H3027\"*, saying, ‘I|strong=\"H3117\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*;’" + }, + { + "verseNum": 6, + "text": "in|strong=\"H3117\"* that|strong=\"H3605\"* day|strong=\"H3117\"* I|strong=\"H3117\"* swore|strong=\"H5375\"* to|strong=\"H3318\"* them|strong=\"H3027\"* to|strong=\"H3318\"* bring|strong=\"H3318\"* them|strong=\"H3027\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H3605\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"* into|strong=\"H3318\"* a|strong=\"H3068\"* land that|strong=\"H3605\"* I|strong=\"H3117\"* had|strong=\"H3027\"* searched|strong=\"H8446\"* out|strong=\"H3318\"* for|strong=\"H3027\"* them|strong=\"H3027\"*, flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H3117\"* honey|strong=\"H1706\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* glory|strong=\"H6643\"* of|strong=\"H3117\"* all|strong=\"H3605\"* lands." + }, + { + "verseNum": 7, + "text": "I|strong=\"H4714\"* said to|strong=\"H3068\"* them|strong=\"H7993\"*, ‘Each of|strong=\"H3068\"* you|strong=\"H5869\"* throw|strong=\"H7993\"* away|strong=\"H7993\"* the|strong=\"H3068\"* abominations|strong=\"H8251\"* of|strong=\"H3068\"* his|strong=\"H3068\"* eyes|strong=\"H5869\"*. Don’t defile|strong=\"H2930\"* yourselves|strong=\"H5869\"* with|strong=\"H3068\"* the|strong=\"H3068\"* idols|strong=\"H1544\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*. I|strong=\"H4714\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.’" + }, + { + "verseNum": 8, + "text": "“‘“But|strong=\"H3808\"* they|strong=\"H3808\"* rebelled|strong=\"H4784\"* against|strong=\"H5921\"* me|strong=\"H5921\"* and|strong=\"H5869\"* wouldn’t listen|strong=\"H8085\"* to|strong=\"H5921\"* me|strong=\"H5921\"*. They|strong=\"H3808\"* didn’t all|strong=\"H5921\"* throw|strong=\"H7993\"* away|strong=\"H7993\"* the|strong=\"H5921\"* abominations|strong=\"H8251\"* of|strong=\"H5869\"* their|strong=\"H8085\"* eyes|strong=\"H5869\"*. They|strong=\"H3808\"* also|strong=\"H5869\"* didn’t forsake|strong=\"H5800\"* the|strong=\"H5921\"* idols|strong=\"H1544\"* of|strong=\"H5869\"* Egypt|strong=\"H4714\"*. Then|strong=\"H8085\"* I|strong=\"H5921\"* said|strong=\"H8085\"* I|strong=\"H5921\"* would pour|strong=\"H8210\"* out|strong=\"H8210\"* my|strong=\"H8085\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, to|strong=\"H5921\"* accomplish|strong=\"H3615\"* my|strong=\"H8085\"* anger|strong=\"H2534\"* against|strong=\"H5921\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H5869\"* the|strong=\"H5921\"* land of|strong=\"H5869\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H1992\"* I|strong=\"H3045\"* worked|strong=\"H6213\"* for|strong=\"H6213\"* my|strong=\"H3045\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*, that|strong=\"H3045\"* it|strong=\"H6213\"* should|strong=\"H6213\"* not|strong=\"H1115\"* be|strong=\"H8034\"* profaned|strong=\"H2490\"* in|strong=\"H6213\"* the|strong=\"H6213\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H6213\"* nations|strong=\"H1471\"* among|strong=\"H8432\"* which|strong=\"H1471\"* they|strong=\"H1992\"* were|strong=\"H5869\"*, in|strong=\"H6213\"* whose|strong=\"H1471\"* sight|strong=\"H5869\"* I|strong=\"H3045\"* made|strong=\"H6213\"* myself|strong=\"H3045\"* known|strong=\"H3045\"* to|strong=\"H3318\"* them|strong=\"H1992\"* in|strong=\"H6213\"* bringing|strong=\"H3318\"* them|strong=\"H1992\"* out|strong=\"H3318\"* of|strong=\"H5869\"* the|strong=\"H6213\"* land of|strong=\"H5869\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 10, + "text": "So|strong=\"H3318\"* I|strong=\"H4714\"* caused them|strong=\"H3318\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4057\"* the|strong=\"H3318\"* land of|strong=\"H4057\"* Egypt|strong=\"H4714\"* and|strong=\"H4714\"* brought|strong=\"H3318\"* them|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3318\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* my|strong=\"H5414\"* statutes|strong=\"H2708\"* and|strong=\"H4941\"* showed|strong=\"H6213\"* them|strong=\"H5414\"* my|strong=\"H5414\"* ordinances|strong=\"H4941\"*, which|strong=\"H2708\"* if a|strong=\"H3068\"* man|strong=\"H3045\"* does|strong=\"H6213\"*, he|strong=\"H6213\"* will|strong=\"H5414\"* live|strong=\"H2425\"* in|strong=\"H6213\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 12, + "text": "Moreover|strong=\"H1571\"* also|strong=\"H1571\"* I|strong=\"H3588\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* my|strong=\"H5414\"* Sabbaths|strong=\"H7676\"*, to|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* sign between|strong=\"H3045\"* me|strong=\"H5414\"* and|strong=\"H3068\"* them|strong=\"H5414\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* might|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* sanctifies|strong=\"H6942\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "“‘“But|strong=\"H3808\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* rebelled|strong=\"H4784\"* against|strong=\"H5921\"* me|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*. They|strong=\"H3808\"* didn’t walk|strong=\"H1980\"* in|strong=\"H5921\"* my|strong=\"H5921\"* statutes|strong=\"H2708\"* and|strong=\"H1980\"* they|strong=\"H3808\"* rejected|strong=\"H3988\"* my|strong=\"H5921\"* ordinances|strong=\"H4941\"*, which|strong=\"H1004\"* if a|strong=\"H3068\"* man keeps, he|strong=\"H6213\"* shall|strong=\"H3478\"* live|strong=\"H2425\"* in|strong=\"H5921\"* them|strong=\"H5921\"*. They|strong=\"H3808\"* greatly|strong=\"H3966\"* profaned|strong=\"H2490\"* my|strong=\"H5921\"* Sabbaths|strong=\"H7676\"*. Then|strong=\"H1980\"* I|strong=\"H5921\"* said I|strong=\"H5921\"* would|strong=\"H3478\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* my|strong=\"H5921\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*, to|strong=\"H1980\"* consume|strong=\"H3615\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"H1115\"* I|strong=\"H6213\"* worked|strong=\"H6213\"* for|strong=\"H6213\"* my|strong=\"H3318\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*, that|strong=\"H1471\"* it|strong=\"H6213\"* should|strong=\"H6213\"* not|strong=\"H1115\"* be|strong=\"H8034\"* profaned|strong=\"H2490\"* in|strong=\"H6213\"* the|strong=\"H6213\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H6213\"* nations|strong=\"H1471\"*, in|strong=\"H6213\"* whose|strong=\"H1471\"* sight|strong=\"H5869\"* I|strong=\"H6213\"* brought|strong=\"H3318\"* them|strong=\"H6213\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 15, + "text": "Moreover|strong=\"H1571\"* also|strong=\"H1571\"* I|strong=\"H5414\"* swore|strong=\"H5375\"* to|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H3027\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* that|strong=\"H3605\"* I|strong=\"H5414\"* would|strong=\"H3605\"* not|strong=\"H1115\"* bring|strong=\"H5375\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H3605\"* land which|strong=\"H1931\"* I|strong=\"H5414\"* had|strong=\"H5414\"* given|strong=\"H5414\"* them|strong=\"H5414\"*, flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H3027\"* honey|strong=\"H1706\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* glory|strong=\"H6643\"* of|strong=\"H3027\"* all|strong=\"H3605\"* lands," + }, + { + "verseNum": 16, + "text": "because|strong=\"H3588\"* they|strong=\"H3588\"* rejected|strong=\"H3988\"* my|strong=\"H2490\"* ordinances|strong=\"H4941\"*, and|strong=\"H1980\"* didn’t walk|strong=\"H1980\"* in|strong=\"H1980\"* my|strong=\"H2490\"* statutes|strong=\"H2708\"*, and|strong=\"H1980\"* profaned|strong=\"H2490\"* my|strong=\"H2490\"* Sabbaths|strong=\"H7676\"*; for|strong=\"H3588\"* their|strong=\"H3588\"* heart|strong=\"H3820\"* went|strong=\"H1980\"* after|strong=\"H3588\"* their|strong=\"H3588\"* idols|strong=\"H1544\"*." + }, + { + "verseNum": 17, + "text": "Nevertheless my|strong=\"H5921\"* eye|strong=\"H5869\"* spared|strong=\"H2347\"* them|strong=\"H5921\"*, and|strong=\"H5869\"* I|strong=\"H5921\"* didn’t destroy|strong=\"H7843\"* them|strong=\"H5921\"*. I|strong=\"H5921\"* didn’t make|strong=\"H6213\"* a|strong=\"H3068\"* full|strong=\"H3617\"* end|strong=\"H3617\"* of|strong=\"H5869\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H1121\"* said to|strong=\"H3212\"* their|strong=\"H8104\"* children|strong=\"H1121\"* in|strong=\"H3212\"* the|strong=\"H8104\"* wilderness|strong=\"H4057\"*, ‘Don’t walk|strong=\"H3212\"* in|strong=\"H3212\"* the|strong=\"H8104\"* statutes|strong=\"H2706\"* of|strong=\"H1121\"* your|strong=\"H8104\"* fathers. Don’t observe|strong=\"H8104\"* their|strong=\"H8104\"* ordinances|strong=\"H4941\"* or|strong=\"H1121\"* defile|strong=\"H2930\"* yourselves|strong=\"H2930\"* with|strong=\"H3212\"* their|strong=\"H8104\"* idols|strong=\"H1544\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. Walk|strong=\"H3212\"* in|strong=\"H3068\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, keep|strong=\"H8104\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 20, + "text": "Make|strong=\"H3045\"* my|strong=\"H3068\"* Sabbaths|strong=\"H7676\"* holy|strong=\"H6942\"*. They|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* sign between|strong=\"H3045\"* me|strong=\"H1961\"* and|strong=\"H3068\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H1961\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.’" + }, + { + "verseNum": 21, + "text": "“‘“But|strong=\"H3808\"* the|strong=\"H5921\"* children|strong=\"H1121\"* rebelled|strong=\"H4784\"* against|strong=\"H5921\"* me|strong=\"H5921\"*. They|strong=\"H3808\"* didn’t walk|strong=\"H1980\"* in|strong=\"H5921\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, and|strong=\"H1121\"* didn’t keep|strong=\"H8104\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"* to|strong=\"H1980\"* do|strong=\"H6213\"* them|strong=\"H5921\"*, which|strong=\"H2708\"* if|strong=\"H1121\"* a|strong=\"H3068\"* man|strong=\"H1121\"* does|strong=\"H6213\"*, he|strong=\"H6213\"* shall|strong=\"H1121\"* live|strong=\"H2425\"* in|strong=\"H5921\"* them|strong=\"H5921\"*. They|strong=\"H3808\"* profaned|strong=\"H2490\"* my|strong=\"H8104\"* Sabbaths|strong=\"H7676\"*. Then|strong=\"H1980\"* I|strong=\"H5921\"* said I|strong=\"H5921\"* would|strong=\"H6213\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* my|strong=\"H8104\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, to|strong=\"H1980\"* accomplish|strong=\"H6213\"* my|strong=\"H8104\"* anger|strong=\"H2534\"* against|strong=\"H5921\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 22, + "text": "Nevertheless I|strong=\"H3027\"* withdrew|strong=\"H7725\"* my|strong=\"H7725\"* hand|strong=\"H3027\"* and|strong=\"H7725\"* worked|strong=\"H6213\"* for|strong=\"H6213\"* my|strong=\"H7725\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*, that|strong=\"H1471\"* it|strong=\"H6213\"* should|strong=\"H6213\"* not|strong=\"H1115\"* be|strong=\"H3027\"* profaned|strong=\"H2490\"* in|strong=\"H6213\"* the|strong=\"H6213\"* sight|strong=\"H5869\"* of|strong=\"H3027\"* the|strong=\"H6213\"* nations|strong=\"H1471\"*, in|strong=\"H6213\"* whose|strong=\"H1471\"* sight|strong=\"H5869\"* I|strong=\"H3027\"* brought|strong=\"H3318\"* them|strong=\"H7725\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 23, + "text": "Moreover|strong=\"H1571\"* I|strong=\"H1571\"* swore|strong=\"H5375\"* to|strong=\"H3027\"* them|strong=\"H3027\"* in|strong=\"H3027\"* the|strong=\"H5375\"* wilderness|strong=\"H4057\"*, that|strong=\"H1471\"* I|strong=\"H1571\"* would scatter|strong=\"H2219\"* them|strong=\"H3027\"* among the|strong=\"H5375\"* nations|strong=\"H1471\"* and|strong=\"H3027\"* disperse|strong=\"H2219\"* them|strong=\"H3027\"* through|strong=\"H3027\"* the|strong=\"H5375\"* countries," + }, + { + "verseNum": 24, + "text": "because|strong=\"H3282\"* they|strong=\"H3808\"* had|strong=\"H1961\"* not|strong=\"H3808\"* executed|strong=\"H6213\"* my|strong=\"H2490\"* ordinances|strong=\"H4941\"*, but|strong=\"H3808\"* had|strong=\"H1961\"* rejected|strong=\"H3988\"* my|strong=\"H2490\"* statutes|strong=\"H2708\"*, and|strong=\"H4941\"* had|strong=\"H1961\"* profaned|strong=\"H2490\"* my|strong=\"H2490\"* Sabbaths|strong=\"H7676\"*, and|strong=\"H4941\"* their|strong=\"H1961\"* eyes|strong=\"H5869\"* were|strong=\"H1961\"* after|strong=\"H1961\"* their|strong=\"H1961\"* fathers’ idols|strong=\"H1544\"*." + }, + { + "verseNum": 25, + "text": "Moreover|strong=\"H1571\"* also|strong=\"H1571\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* statutes|strong=\"H2706\"* that|strong=\"H5414\"* were|strong=\"H5414\"* not|strong=\"H3808\"* good|strong=\"H2896\"*, and|strong=\"H4941\"* ordinances|strong=\"H4941\"* in|strong=\"H5414\"* which|strong=\"H2706\"* they|strong=\"H3808\"* couldn’t live|strong=\"H2421\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H3045\"* polluted|strong=\"H2930\"* them|strong=\"H5674\"* in|strong=\"H3068\"* their|strong=\"H3605\"* own gifts|strong=\"H4979\"*, in|strong=\"H3068\"* that|strong=\"H3045\"* they|strong=\"H3068\"* caused|strong=\"H5674\"* all|strong=\"H3605\"* that|strong=\"H3045\"* opens the|strong=\"H3605\"* womb|strong=\"H7356\"* to|strong=\"H3068\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3605\"* fire, that|strong=\"H3045\"* I|strong=\"H3045\"* might|strong=\"H3068\"* make|strong=\"H3045\"* them|strong=\"H5674\"* desolate|strong=\"H8074\"*, to|strong=\"H3068\"* the|strong=\"H3605\"* end|strong=\"H4616\"* that|strong=\"H3045\"* they|strong=\"H3068\"* might|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3045\"* I|strong=\"H3045\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”’" + }, + { + "verseNum": 27, + "text": "“Therefore|strong=\"H3651\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3069\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H1121\"*, ‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Moreover|strong=\"H3541\"*, in|strong=\"H3478\"* this|strong=\"H2063\"* your|strong=\"H3478\"* fathers have|strong=\"H1121\"* blasphemed|strong=\"H1442\"* me|strong=\"H1696\"*, in|strong=\"H3478\"* that|strong=\"H3651\"* they|strong=\"H3651\"* have|strong=\"H1121\"* committed|strong=\"H4603\"* a|strong=\"H3068\"* trespass|strong=\"H4604\"* against|strong=\"H1696\"* me|strong=\"H1696\"*." + }, + { + "verseNum": 28, + "text": "For|strong=\"H3027\"* when|strong=\"H7200\"* I|strong=\"H5414\"* had|strong=\"H5414\"* brought|strong=\"H5375\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H3605\"* land which|strong=\"H8033\"* I|strong=\"H5414\"* swore|strong=\"H5375\"* to|strong=\"H5414\"* give|strong=\"H5414\"* to|strong=\"H5414\"* them|strong=\"H5414\"*, then|strong=\"H5375\"* they|strong=\"H8033\"* saw|strong=\"H7200\"* every|strong=\"H3605\"* high|strong=\"H7311\"* hill|strong=\"H1389\"* and|strong=\"H3027\"* every|strong=\"H3605\"* thick|strong=\"H5687\"* tree|strong=\"H6086\"*, and|strong=\"H3027\"* they|strong=\"H8033\"* offered|strong=\"H2076\"* there|strong=\"H8033\"* their|strong=\"H3605\"* sacrifices|strong=\"H2077\"*, and|strong=\"H3027\"* there|strong=\"H8033\"* they|strong=\"H8033\"* presented|strong=\"H5414\"* the|strong=\"H3605\"* provocation|strong=\"H3708\"* of|strong=\"H3027\"* their|strong=\"H3605\"* offering|strong=\"H7133\"*. There|strong=\"H8033\"* they|strong=\"H8033\"* also|strong=\"H3027\"* made|strong=\"H7760\"* their|strong=\"H3605\"* pleasant aroma|strong=\"H7381\"*, and|strong=\"H3027\"* there|strong=\"H8033\"* they|strong=\"H8033\"* poured|strong=\"H5258\"* out|strong=\"H5258\"* their|strong=\"H3605\"* drink|strong=\"H5262\"* offerings|strong=\"H5262\"*." + }, + { + "verseNum": 29, + "text": "Then|strong=\"H2088\"* I|strong=\"H3117\"* said|strong=\"H7121\"* to|strong=\"H5704\"* them|strong=\"H7121\"*, ‘What|strong=\"H4100\"* does|strong=\"H4100\"* the|strong=\"H3117\"* high|strong=\"H1116\"* place|strong=\"H1116\"* where|strong=\"H8033\"* you|strong=\"H3117\"* go mean?’ So|strong=\"H7121\"* its|strong=\"H5704\"* name|strong=\"H8034\"* is|strong=\"H2088\"* called|strong=\"H7121\"* Bamah|strong=\"H1117\"*+ 20:29 “Bamah” means “High Place”.* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*.”’" + }, + { + "verseNum": 30, + "text": "“Therefore|strong=\"H3651\"* tell the|strong=\"H3069\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, ‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Do|strong=\"H1870\"* you|strong=\"H3651\"* pollute|strong=\"H2930\"* yourselves|strong=\"H2930\"* in|strong=\"H3478\"* the|strong=\"H3069\"* way|strong=\"H1870\"* of|strong=\"H1004\"* your|strong=\"H2930\"* fathers? Do|strong=\"H1870\"* you|strong=\"H3651\"* play|strong=\"H2181\"* the|strong=\"H3069\"* prostitute|strong=\"H2181\"* after|strong=\"H1004\"* their|strong=\"H1870\"* abominations|strong=\"H8251\"*?" + }, + { + "verseNum": 31, + "text": "When|strong=\"H3117\"* you|strong=\"H3605\"* offer|strong=\"H5375\"* your|strong=\"H3605\"* gifts|strong=\"H4979\"*, when|strong=\"H3117\"* you|strong=\"H3605\"* make|strong=\"H2930\"* your|strong=\"H3605\"* sons|strong=\"H1121\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3605\"* fire, do|strong=\"H3605\"* you|strong=\"H3605\"* pollute|strong=\"H2930\"* yourselves|strong=\"H2930\"* with|strong=\"H1004\"* all|strong=\"H3605\"* your|strong=\"H3605\"* idols|strong=\"H1544\"* to|strong=\"H5704\"* this|strong=\"H5674\"* day|strong=\"H3117\"*? Should|strong=\"H3117\"* I|strong=\"H3117\"* be|strong=\"H1121\"* inquired|strong=\"H1875\"* of|strong=\"H1121\"* by|strong=\"H5674\"* you|strong=\"H3605\"*, house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*? As|strong=\"H5704\"* I|strong=\"H3117\"* live|strong=\"H2416\"*, says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, I|strong=\"H3117\"* will|strong=\"H3478\"* not|strong=\"H5375\"* be|strong=\"H1121\"* inquired|strong=\"H1875\"* of|strong=\"H1121\"* by|strong=\"H5674\"* you|strong=\"H3605\"*!" + }, + { + "verseNum": 32, + "text": "“‘“That|strong=\"H1471\"* which|strong=\"H1471\"* comes|strong=\"H1961\"* into|strong=\"H5927\"* your|strong=\"H5921\"* mind|strong=\"H7307\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* at|strong=\"H5921\"* all|strong=\"H5921\"*, in|strong=\"H5921\"* that|strong=\"H1471\"* you|strong=\"H5921\"* say, ‘We will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*, as|strong=\"H1961\"* the|strong=\"H5921\"* families|strong=\"H4940\"* of|strong=\"H7307\"* the|strong=\"H5921\"* countries, to|strong=\"H5927\"* serve|strong=\"H8334\"* wood|strong=\"H6086\"* and|strong=\"H6086\"* stone.’" + }, + { + "verseNum": 33, + "text": "As|strong=\"H4427\"* I|strong=\"H5921\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “surely|strong=\"H4427\"* with|strong=\"H5921\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*, with|strong=\"H5921\"* an|strong=\"H5921\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*, and|strong=\"H3027\"* with|strong=\"H5921\"* wrath|strong=\"H2534\"* poured|strong=\"H8210\"* out|strong=\"H5186\"*, I|strong=\"H5921\"* will|strong=\"H3027\"* be|strong=\"H3808\"* king|strong=\"H4427\"* over|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 34, + "text": "I|strong=\"H3027\"* will|strong=\"H5971\"* bring|strong=\"H3318\"* you|strong=\"H4480\"* out|strong=\"H3318\"* from|strong=\"H4480\"* the|strong=\"H4480\"* peoples|strong=\"H5971\"*, and|strong=\"H3027\"* will|strong=\"H5971\"* gather|strong=\"H6908\"* you|strong=\"H4480\"* out|strong=\"H3318\"* of|strong=\"H3027\"* the|strong=\"H4480\"* countries in|strong=\"H3027\"* which|strong=\"H5971\"* you|strong=\"H4480\"* are|strong=\"H5971\"* scattered|strong=\"H6327\"* with|strong=\"H3318\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*, with|strong=\"H3318\"* an|strong=\"H4480\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*, and|strong=\"H3027\"* with|strong=\"H3318\"* wrath|strong=\"H2534\"* poured|strong=\"H8210\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 35, + "text": "I|strong=\"H6440\"* will|strong=\"H5971\"* bring you|strong=\"H6440\"* into|strong=\"H8199\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"* of|strong=\"H6440\"* the|strong=\"H6440\"* peoples|strong=\"H5971\"*, and|strong=\"H5971\"* there|strong=\"H8033\"* I|strong=\"H6440\"* will|strong=\"H5971\"* enter|strong=\"H8199\"* into|strong=\"H8199\"* judgment|strong=\"H8199\"* with|strong=\"H6440\"* you|strong=\"H6440\"* face|strong=\"H6440\"* to|strong=\"H6440\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 36, + "text": "Just as|strong=\"H3651\"* I|strong=\"H3651\"* entered|strong=\"H8199\"* into|strong=\"H8199\"* judgment|strong=\"H8199\"* with|strong=\"H4714\"* your|strong=\"H8199\"* fathers in|strong=\"H4714\"* the|strong=\"H5002\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* the|strong=\"H5002\"* land of|strong=\"H4057\"* Egypt|strong=\"H4714\"*, so|strong=\"H3651\"* I|strong=\"H3651\"* will|strong=\"H4714\"* enter|strong=\"H8199\"* into|strong=\"H8199\"* judgment|strong=\"H8199\"* with|strong=\"H4714\"* you|strong=\"H3651\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 37, + "text": "“I|strong=\"H8478\"* will|strong=\"H1285\"* cause you|strong=\"H8478\"* to|strong=\"H5674\"* pass|strong=\"H5674\"* under|strong=\"H8478\"* the|strong=\"H8478\"* rod|strong=\"H7626\"*, and|strong=\"H1285\"* I|strong=\"H8478\"* will|strong=\"H1285\"* bring|strong=\"H5674\"* you|strong=\"H8478\"* into|strong=\"H5674\"* the|strong=\"H8478\"* bond|strong=\"H4562\"* of|strong=\"H7626\"* the|strong=\"H8478\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 38, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* purge|strong=\"H1305\"* out|strong=\"H3318\"* from|strong=\"H4480\"* among|strong=\"H4480\"* you|strong=\"H3588\"* the|strong=\"H3588\"* rebels|strong=\"H4775\"* and|strong=\"H3478\"* those|strong=\"H4480\"* who|strong=\"H3068\"* disobey me|strong=\"H4480\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3588\"* land where|strong=\"H4033\"* they|strong=\"H3588\"* live, but|strong=\"H3588\"* they|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* enter into|strong=\"H3318\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* Israel|strong=\"H3478\"*. Then|strong=\"H3318\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 39, + "text": "“‘As|strong=\"H1004\"* for|strong=\"H8034\"* you|strong=\"H3808\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, the|strong=\"H8085\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Go|strong=\"H3212\"*, everyone serve|strong=\"H5647\"* his|strong=\"H8085\"* idols|strong=\"H1544\"*, and|strong=\"H3478\"* hereafter also|strong=\"H3541\"*, if you|strong=\"H3808\"* will|strong=\"H3478\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* me|strong=\"H3808\"*; but|strong=\"H3808\"* you|strong=\"H3808\"* shall|strong=\"H3478\"* no|strong=\"H3808\"* more|strong=\"H5750\"* profane|strong=\"H2490\"* my|strong=\"H8085\"* holy|strong=\"H6944\"* name|strong=\"H8034\"* with|strong=\"H1004\"* your|strong=\"H8085\"* gifts|strong=\"H4979\"* and|strong=\"H3478\"* with|strong=\"H1004\"* your|strong=\"H8085\"* idols|strong=\"H1544\"*." + }, + { + "verseNum": 40, + "text": "For|strong=\"H3588\"* in|strong=\"H3478\"* my|strong=\"H3605\"* holy|strong=\"H6944\"* mountain|strong=\"H2022\"*, in|strong=\"H3478\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* of|strong=\"H1004\"* the|strong=\"H3605\"* height|strong=\"H4791\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “there|strong=\"H8033\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, all|strong=\"H3605\"* of|strong=\"H1004\"* them|strong=\"H5647\"*, shall|strong=\"H3478\"* serve|strong=\"H5647\"* me|strong=\"H1875\"* in|strong=\"H3478\"* the|strong=\"H3605\"* land. There|strong=\"H8033\"* I|strong=\"H3588\"* will|strong=\"H3478\"* accept|strong=\"H7521\"* them|strong=\"H5647\"*, and|strong=\"H3478\"* there|strong=\"H8033\"* I|strong=\"H3588\"* will|strong=\"H3478\"* require|strong=\"H1875\"* your|strong=\"H3605\"* offerings|strong=\"H8641\"* and|strong=\"H3478\"* the|strong=\"H3605\"* first|strong=\"H7225\"* fruits|strong=\"H7225\"* of|strong=\"H1004\"* your|strong=\"H3605\"* offerings|strong=\"H8641\"*, with|strong=\"H1004\"* all|strong=\"H3605\"* your|strong=\"H3605\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*." + }, + { + "verseNum": 41, + "text": "I|strong=\"H4480\"* will|strong=\"H1471\"* accept|strong=\"H7521\"* you|strong=\"H4480\"* as|strong=\"H3318\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* when|strong=\"H3318\"* I|strong=\"H4480\"* bring|strong=\"H3318\"* you|strong=\"H4480\"* out|strong=\"H3318\"* from|strong=\"H4480\"* the|strong=\"H4480\"* peoples|strong=\"H5971\"* and|strong=\"H5971\"* gather|strong=\"H6908\"* you|strong=\"H4480\"* out|strong=\"H3318\"* of|strong=\"H5869\"* the|strong=\"H4480\"* countries in|strong=\"H5971\"* which|strong=\"H1471\"* you|strong=\"H4480\"* have|strong=\"H5869\"* been|strong=\"H5971\"* scattered|strong=\"H6327\"*. I|strong=\"H4480\"* will|strong=\"H1471\"* be|strong=\"H1471\"* sanctified|strong=\"H6942\"* in|strong=\"H5971\"* you|strong=\"H4480\"* in|strong=\"H5971\"* the|strong=\"H4480\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H4480\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 42, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* when|strong=\"H3588\"* I|strong=\"H3588\"* bring|strong=\"H5375\"* you|strong=\"H3588\"* into|strong=\"H3027\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* Israel|strong=\"H3478\"*, into|strong=\"H3027\"* the|strong=\"H3588\"* country which|strong=\"H3068\"* I|strong=\"H3588\"* swore|strong=\"H5375\"* to|strong=\"H3478\"* give|strong=\"H5414\"* to|strong=\"H3478\"* your|strong=\"H3068\"* fathers." + }, + { + "verseNum": 43, + "text": "There|strong=\"H8033\"* you|strong=\"H6440\"* will|strong=\"H8033\"* remember|strong=\"H2142\"* your|strong=\"H3605\"* ways|strong=\"H1870\"*, and|strong=\"H6440\"* all|strong=\"H3605\"* your|strong=\"H3605\"* deeds|strong=\"H5949\"* in|strong=\"H6213\"* which|strong=\"H8033\"* you|strong=\"H6440\"* have|strong=\"H3605\"* polluted|strong=\"H2930\"* yourselves|strong=\"H2930\"*. Then|strong=\"H6213\"* you|strong=\"H6440\"* will|strong=\"H8033\"* loathe|strong=\"H6962\"* yourselves|strong=\"H2930\"* in|strong=\"H6213\"* your|strong=\"H3605\"* own|strong=\"H6440\"* sight|strong=\"H6440\"* for|strong=\"H6213\"* all|strong=\"H3605\"* your|strong=\"H3605\"* evils|strong=\"H7451\"* that|strong=\"H3605\"* you|strong=\"H6440\"* have|strong=\"H3605\"* committed|strong=\"H6213\"*." + }, + { + "verseNum": 44, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, when|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* dealt|strong=\"H6213\"* with|strong=\"H1004\"* you|strong=\"H3588\"* for|strong=\"H3588\"* my|strong=\"H3068\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*, not|strong=\"H3808\"* according to|strong=\"H3478\"* your|strong=\"H3068\"* evil|strong=\"H7451\"* ways|strong=\"H1870\"*, nor|strong=\"H3808\"* according to|strong=\"H3478\"* your|strong=\"H3068\"* corrupt|strong=\"H7843\"* doings|strong=\"H5949\"*, you|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 45, + "text": "Yahweh|strong=\"H3068\"*’s word came to me, saying," + }, + { + "verseNum": 46, + "text": "“Son of man, set your face toward the south, and preach toward the south, and prophesy against the forest of the field in the south." + }, + { + "verseNum": 47, + "text": "Tell the forest of the south, ‘Hear Yahweh|strong=\"H3068\"*’s word: The Lord Yahweh|strong=\"H3068\"* says, “Behold, I will kindle a|strong=\"H3068\"* fire in you, and it will devour every green tree in you, and every dry tree. The burning flame will not be quenched, and all faces from the south to the north will be burned by it." + }, + { + "verseNum": 48, + "text": "All flesh will see that I, Yahweh|strong=\"H3068\"*, have kindled it. It will not be quenched.”’”" + }, + { + "verseNum": 49, + "text": "Then I said, “Ah Lord Yahweh|strong=\"H3068\"*! They say of me, ‘Isn’t he a|strong=\"H3068\"* speaker of parables?’”" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, set|strong=\"H7760\"* your|strong=\"H7760\"* face|strong=\"H6440\"* toward|strong=\"H1870\"* Jerusalem, and|strong=\"H1121\"* preach|strong=\"H5197\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* sanctuaries, and|strong=\"H1121\"* prophesy|strong=\"H5012\"* against|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H7704\"* of|strong=\"H1121\"* Israel." + }, + { + "verseNum": 3, + "text": "Tell|strong=\"H8085\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H3068\"* Israel, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H3068\"* against|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* draw my|strong=\"H8085\"* sword out|strong=\"H3518\"* of|strong=\"H3068\"* its|strong=\"H3605\"* sheath, and|strong=\"H3068\"* will|strong=\"H3068\"* cut off|strong=\"H6440\"* from|strong=\"H6440\"* you|strong=\"H6440\"* the|strong=\"H3605\"* righteous and|strong=\"H3068\"* the|strong=\"H3605\"* wicked." + }, + { + "verseNum": 4, + "text": "Seeing|strong=\"H7200\"* then|strong=\"H3588\"* that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* cut off|strong=\"H7200\"* from|strong=\"H3068\"* you|strong=\"H3588\"* the|strong=\"H3605\"* righteous and|strong=\"H3068\"* the|strong=\"H3605\"* wicked, therefore|strong=\"H3588\"* my|strong=\"H3605\"* sword will|strong=\"H3068\"* go|strong=\"H3068\"* out|strong=\"H3518\"* of|strong=\"H3068\"* its|strong=\"H3605\"* sheath against|strong=\"H3068\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"* from|strong=\"H3068\"* the|strong=\"H3605\"* south to|strong=\"H3068\"* the|strong=\"H3605\"* north." + }, + { + "verseNum": 5, + "text": "All flesh will|strong=\"H3808\"* know that|strong=\"H1931\"* I|strong=\"H3808\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3808\"* drawn my|strong=\"H3808\"* sword out|strong=\"H3808\"* of|strong=\"H3069\"* its|strong=\"H3808\"* sheath. It|strong=\"H1931\"* will|strong=\"H3808\"* not|strong=\"H3808\"* return any|strong=\"H3808\"* more|strong=\"H3808\"*.”’" + }, + { + "verseNum": 6, + "text": "“Therefore|strong=\"H3068\"* sigh, you|strong=\"H1697\"* son of|strong=\"H3068\"* man. You|strong=\"H1697\"* shall|strong=\"H3068\"* sigh before|strong=\"H1961\"* their|strong=\"H3068\"* eyes with|strong=\"H3068\"* a|strong=\"H3068\"* broken heart+ 21:6 literally, the breaking of your thighs* and|strong=\"H3068\"* with|strong=\"H3068\"* bitterness." + }, + { + "verseNum": 7, + "text": "It|strong=\"H7760\"* shall|strong=\"H1121\"* be|strong=\"H1121\"*, when|strong=\"H1121\"* they|strong=\"H3478\"* ask you|strong=\"H6440\"*, ‘Why do you|strong=\"H6440\"* sigh?’ that|strong=\"H3478\"* you|strong=\"H6440\"* shall|strong=\"H1121\"* say|strong=\"H3478\"*, ‘Because|strong=\"H6440\"* of|strong=\"H1121\"* the|strong=\"H6440\"* news, for|strong=\"H6440\"* it|strong=\"H7760\"* comes|strong=\"H6440\"*! Every|strong=\"H7760\"* heart will|strong=\"H3478\"* melt, all|strong=\"H6440\"* hands will|strong=\"H3478\"* be|strong=\"H1121\"* feeble, every|strong=\"H7760\"* spirit will|strong=\"H3478\"* faint, and|strong=\"H1121\"* all|strong=\"H6440\"* knees will|strong=\"H3478\"* be|strong=\"H1121\"* weak as|strong=\"H3389\"* water. Behold, it|strong=\"H7760\"* comes|strong=\"H6440\"*, and|strong=\"H1121\"* it|strong=\"H7760\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* done|strong=\"H7760\"*, says the|strong=\"H6440\"* Lord Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"*’s word came|strong=\"H3318\"* to|strong=\"H3318\"* me|strong=\"H4480\"*, saying," + }, + { + "verseNum": 9, + "text": "“Son of|strong=\"H4480\"* man|strong=\"H7563\"*, prophesy, and|strong=\"H2719\"* say, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3282\"*:" + }, + { + "verseNum": 10, + "text": "It|strong=\"H3588\"* is|strong=\"H3068\"* sharpened that|strong=\"H3588\"* it|strong=\"H3588\"* may|strong=\"H3068\"* make|strong=\"H3045\"* a|strong=\"H3068\"* slaughter." + }, + { + "verseNum": 11, + "text": "It|strong=\"H5869\"* is|strong=\"H1121\"* given to|strong=\"H1121\"* be|strong=\"H1121\"* polished," + }, + { + "verseNum": 12, + "text": "Cry and|strong=\"H3027\"* wail, son of|strong=\"H3027\"* man|strong=\"H3605\"*;" + }, + { + "verseNum": 13, + "text": "“For|strong=\"H3068\"* there|strong=\"H1961\"* is|strong=\"H3068\"* a|strong=\"H3068\"* trial. What|strong=\"H1697\"* if|strong=\"H1961\"* even|strong=\"H3068\"* the|strong=\"H3068\"* rod that|strong=\"H3068\"* condemns will|strong=\"H3068\"* be|strong=\"H1961\"* no|strong=\"H1961\"* more|strong=\"H1961\"*?” says|strong=\"H1697\"* the|strong=\"H3068\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "“You|strong=\"H1571\"* therefore|strong=\"H1571\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, prophesy|strong=\"H5012\"*," + }, + { + "verseNum": 15, + "text": "I|strong=\"H3988\"* have|strong=\"H1961\"* set the|strong=\"H3605\"* threatening sword|strong=\"H1300\"* against|strong=\"H3605\"* all|strong=\"H3605\"* their|strong=\"H3605\"* gates," + }, + { + "verseNum": 16, + "text": "Gather yourselves|strong=\"H3027\"* together|strong=\"H3709\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H3588\"* will|strong=\"H1961\"* also|strong=\"H3478\"* strike|strong=\"H5606\"* my|strong=\"H3605\"* hands together|strong=\"H2199\"*," + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"*’s word came|strong=\"H1961\"* to|strong=\"H1961\"* me|strong=\"H1961\"* again|strong=\"H1961\"*, saying," + }, + { + "verseNum": 19, + "text": "“Also|strong=\"H1121\"*, you|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, appoint two|strong=\"H5221\"* ways, that|strong=\"H1931\"* the|strong=\"H5221\"* sword|strong=\"H2719\"* of|strong=\"H1121\"* the|strong=\"H5221\"* king of|strong=\"H1121\"* Babylon may|strong=\"H1121\"* come. They|strong=\"H1931\"* both will|strong=\"H2719\"* come out|strong=\"H1419\"* of|strong=\"H1121\"* one|strong=\"H7992\"* land, and|strong=\"H1121\"* mark out|strong=\"H1419\"* a|strong=\"H3068\"* place. Mark it|strong=\"H1931\"* out|strong=\"H1419\"* at|strong=\"H1121\"* the|strong=\"H5221\"* head of|strong=\"H1121\"* the|strong=\"H5221\"* way to|strong=\"H1121\"* the|strong=\"H5221\"* city|strong=\"H1931\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H5414\"* shall|strong=\"H3820\"* appoint|strong=\"H5414\"* a|strong=\"H3068\"* way|strong=\"H5921\"* for|strong=\"H5921\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* to|strong=\"H5921\"* come to|strong=\"H5921\"* Rabbah of|strong=\"H8179\"* the|strong=\"H3605\"* children of|strong=\"H8179\"* Ammon, and|strong=\"H2719\"* to|strong=\"H5921\"* Judah in|strong=\"H5921\"* Jerusalem|strong=\"H4616\"* the|strong=\"H3605\"* fortified." + }, + { + "verseNum": 21, + "text": "For|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H6440\"* of|strong=\"H6440\"* Babylon stood at|strong=\"H6440\"* the|strong=\"H6440\"* parting of|strong=\"H6440\"* the|strong=\"H6440\"* way|strong=\"H6440\"*, at|strong=\"H6440\"* the|strong=\"H6440\"* head|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* two ways, to|strong=\"H6440\"* use divination. He|strong=\"H6440\"* shook the|strong=\"H6440\"* arrows back and|strong=\"H6440\"* forth|strong=\"H6440\"*. He|strong=\"H6440\"* consulted the|strong=\"H6440\"* teraphim.+ 21:21 teraphim were household idols that may have been associated with inheritance rights to the household property.* He|strong=\"H6440\"* looked|strong=\"H6440\"* in|strong=\"H6440\"* the|strong=\"H6440\"* liver." + }, + { + "verseNum": 22, + "text": "In|strong=\"H3068\"* his|strong=\"H3068\"* right|strong=\"H3068\"* hand|strong=\"H3709\"* was|strong=\"H3068\"* the|strong=\"H5221\"* lot for|strong=\"H3068\"* Jerusalem, to|strong=\"H1696\"* set|strong=\"H5117\"* battering rams, to|strong=\"H1696\"* open the|strong=\"H5221\"* mouth in|strong=\"H3068\"* the|strong=\"H5221\"* slaughter|strong=\"H5221\"*, to|strong=\"H1696\"* lift|strong=\"H3068\"* up the|strong=\"H5221\"* voice with|strong=\"H3068\"* shouting, to|strong=\"H1696\"* set|strong=\"H5117\"* battering rams against|strong=\"H1696\"* the|strong=\"H5221\"* gates, to|strong=\"H1696\"* cast|strong=\"H3068\"* up mounds, and|strong=\"H3068\"* to|strong=\"H1696\"* build forts." + }, + { + "verseNum": 23, + "text": "It|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* to|strong=\"H3068\"* them|strong=\"H1961\"* as|strong=\"H1697\"* a|strong=\"H3068\"* false divination in|strong=\"H3068\"* their|strong=\"H3068\"* sight, who|strong=\"H3068\"* have|strong=\"H1961\"* sworn oaths to|strong=\"H3068\"* them|strong=\"H1961\"*; but|strong=\"H1961\"* he|strong=\"H3068\"* brings iniquity to|strong=\"H3068\"* memory, that|strong=\"H3068\"* they|strong=\"H3068\"* may|strong=\"H1961\"* be|strong=\"H1961\"* taken|strong=\"H1961\"*." + }, + { + "verseNum": 24, + "text": "“Therefore the|strong=\"H7760\"* Lord Yahweh|strong=\"H3068\"* says: ‘Because|strong=\"H3027\"* you|strong=\"H7760\"* have|strong=\"H1121\"* caused your|strong=\"H7760\"* iniquity to|strong=\"H3318\"* be|strong=\"H3027\"* remembered, in|strong=\"H4428\"* that|strong=\"H4428\"* your|strong=\"H7760\"* transgressions are|strong=\"H1121\"* uncovered, so|strong=\"H3318\"* that|strong=\"H4428\"* in|strong=\"H4428\"* all|strong=\"H1254\"* your|strong=\"H7760\"* doings your|strong=\"H7760\"* sins appear; because|strong=\"H3027\"* you|strong=\"H7760\"* have|strong=\"H1121\"* come|strong=\"H3318\"* to|strong=\"H3318\"* memory, you|strong=\"H7760\"* will|strong=\"H4428\"* be|strong=\"H3027\"* taken|strong=\"H7760\"* with|strong=\"H3318\"* the|strong=\"H7760\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 25, + "text": "“‘You|strong=\"H7760\"*, deadly wounded wicked one|strong=\"H1121\"*, the|strong=\"H7760\"* prince of|strong=\"H1121\"* Israel, whose|strong=\"H1121\"* day has|strong=\"H3063\"* come|strong=\"H3063\"*, in|strong=\"H1121\"* the|strong=\"H7760\"* time of|strong=\"H1121\"* the|strong=\"H7760\"* iniquity of|strong=\"H1121\"* the|strong=\"H7760\"* end," + }, + { + "verseNum": 26, + "text": "the|strong=\"H7200\"* Lord Yahweh|strong=\"H3068\"* says: “Remove the|strong=\"H7200\"* turban, and|strong=\"H4428\"* take|strong=\"H5975\"* off|strong=\"H7200\"* the|strong=\"H7200\"* crown. This|strong=\"H7200\"* will|strong=\"H4428\"* not|strong=\"H3588\"* be|strong=\"H4428\"* as|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H4428\"*. Exalt that|strong=\"H3588\"* which|strong=\"H3588\"* is|strong=\"H1870\"* low, and|strong=\"H4428\"* humble that|strong=\"H3588\"* which|strong=\"H3588\"* is|strong=\"H1870\"* high|strong=\"H7218\"*." + }, + { + "verseNum": 27, + "text": "I|strong=\"H5921\"* will|strong=\"H1961\"* overturn, overturn, overturn it|strong=\"H7760\"*. This|strong=\"H7760\"* also|strong=\"H3389\"* will|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H7760\"* more|strong=\"H5921\"*, until|strong=\"H5921\"* he|strong=\"H3389\"* comes|strong=\"H1961\"* whose|strong=\"H8179\"* right|strong=\"H3225\"* it|strong=\"H7760\"* is|strong=\"H1961\"*; and|strong=\"H6963\"* I|strong=\"H5921\"* will|strong=\"H1961\"* give|strong=\"H7760\"* it|strong=\"H7760\"*.”’" + }, + { + "verseNum": 28, + "text": "“You|strong=\"H5869\"*, son of|strong=\"H5869\"* man, prophesy and|strong=\"H5869\"* say, ‘The|strong=\"H2142\"* Lord Yahweh|strong=\"H3068\"* says this|strong=\"H1931\"* concerning the|strong=\"H2142\"* children of|strong=\"H5869\"* Ammon, and|strong=\"H5869\"* concerning their|strong=\"H2142\"* reproach:" + }, + { + "verseNum": 29, + "text": "while|strong=\"H3541\"* they|strong=\"H3651\"* see|strong=\"H7200\"* for|strong=\"H3605\"* you|strong=\"H3605\"* false visions|strong=\"H7200\"*," + }, + { + "verseNum": 30, + "text": "Cause it|strong=\"H3117\"* to|strong=\"H3478\"* return into its sheath." + }, + { + "verseNum": 31, + "text": "I|strong=\"H3541\"* will|strong=\"H3808\"* pour out|strong=\"H5493\"* my|strong=\"H5493\"* indignation on|strong=\"H3069\"* you|strong=\"H3808\"*." + }, + { + "verseNum": 32, + "text": "You|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H5704\"* fuel to|strong=\"H5704\"* the|strong=\"H5414\"* fire." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Moreover|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“You|strong=\"H3605\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, will|strong=\"H1121\"* you|strong=\"H3605\"* judge|strong=\"H8199\"*? Will|strong=\"H1121\"* you|strong=\"H3605\"* judge|strong=\"H8199\"* the|strong=\"H3605\"* bloody|strong=\"H1818\"* city|strong=\"H5892\"*? Then|strong=\"H3045\"* cause her|strong=\"H3605\"* to|strong=\"H1121\"* know|strong=\"H3045\"* all|strong=\"H3605\"* her|strong=\"H3605\"* abominations|strong=\"H8441\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H5921\"* shall|strong=\"H5892\"* say, ‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “A|strong=\"H3068\"* city|strong=\"H5892\"* that|strong=\"H5892\"* sheds|strong=\"H8210\"* blood|strong=\"H1818\"* within|strong=\"H8432\"* herself|strong=\"H5921\"*, that|strong=\"H5892\"* her|strong=\"H5921\"* time|strong=\"H6256\"* may|strong=\"H6213\"* come|strong=\"H5892\"*, and|strong=\"H5892\"* that|strong=\"H5892\"* makes|strong=\"H6213\"* idols|strong=\"H1544\"* against|strong=\"H5921\"* herself|strong=\"H5921\"* to|strong=\"H6213\"* defile|strong=\"H2930\"* her|strong=\"H5921\"*!" + }, + { + "verseNum": 4, + "text": "You|strong=\"H5414\"* have|strong=\"H1471\"* become|strong=\"H2930\"* guilty in|strong=\"H8141\"* your|strong=\"H3605\"* blood|strong=\"H1818\"* that|strong=\"H3605\"* you|strong=\"H5414\"* have|strong=\"H1471\"* shed|strong=\"H8210\"*, and|strong=\"H3117\"* are|strong=\"H3117\"* defiled|strong=\"H2930\"* in|strong=\"H8141\"* your|strong=\"H3605\"* idols|strong=\"H1544\"* which|strong=\"H1471\"* you|strong=\"H5414\"* have|strong=\"H1471\"* made|strong=\"H6213\"*! You|strong=\"H5414\"* have|strong=\"H1471\"* caused|strong=\"H5414\"* your|strong=\"H3605\"* days|strong=\"H3117\"* to|strong=\"H5704\"* draw|strong=\"H7126\"* near|strong=\"H7126\"*, and|strong=\"H3117\"* have|strong=\"H1471\"* come|strong=\"H7126\"* to|strong=\"H5704\"* the|strong=\"H3605\"* end of|strong=\"H3117\"* your|strong=\"H3605\"* years|strong=\"H8141\"*. Therefore|strong=\"H3651\"* I|strong=\"H3117\"* have|strong=\"H1471\"* made|strong=\"H6213\"* you|strong=\"H5414\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* to|strong=\"H5704\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*, and|strong=\"H3117\"* a|strong=\"H3068\"* mocking|strong=\"H7048\"* to|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* countries." + }, + { + "verseNum": 5, + "text": "Those|strong=\"H4480\"* who|strong=\"H7350\"* are|strong=\"H7227\"* near|strong=\"H7138\"* and|strong=\"H8034\"* those|strong=\"H4480\"* who|strong=\"H7350\"* are|strong=\"H7227\"* far|strong=\"H7350\"* from|strong=\"H4480\"* you|strong=\"H4480\"* will|strong=\"H7227\"* mock|strong=\"H7046\"* you|strong=\"H4480\"*, you|strong=\"H4480\"* infamous|strong=\"H2931\"* one|strong=\"H4480\"*, full|strong=\"H7227\"* of|strong=\"H8034\"* tumult|strong=\"H4103\"*." + }, + { + "verseNum": 6, + "text": "“‘“Behold|strong=\"H2009\"*, the|strong=\"H1961\"* princes|strong=\"H5387\"* of|strong=\"H1818\"* Israel|strong=\"H3478\"*, everyone according to|strong=\"H3478\"* his|strong=\"H3478\"* power|strong=\"H2220\"*, have|strong=\"H1961\"* been|strong=\"H1961\"* in|strong=\"H3478\"* you|strong=\"H2009\"* to|strong=\"H3478\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H6213\"* you|strong=\"H6213\"* have they|strong=\"H6213\"* treated|strong=\"H7043\"* father and|strong=\"H6213\"* mother with|strong=\"H6213\"* contempt|strong=\"H7043\"*.+ 22:7 Literally, made light of father and mother.* Among|strong=\"H8432\"* you|strong=\"H6213\"* they|strong=\"H6213\"* have oppressed|strong=\"H3238\"* the|strong=\"H6213\"* foreigner|strong=\"H1616\"*. In|strong=\"H6213\"* you|strong=\"H6213\"* they|strong=\"H6213\"* have wronged|strong=\"H3238\"* the|strong=\"H6213\"* fatherless|strong=\"H3490\"* and|strong=\"H6213\"* the|strong=\"H6213\"* widow." + }, + { + "verseNum": 8, + "text": "You have|strong=\"H7676\"* despised my|strong=\"H2490\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*, and|strong=\"H6944\"* have|strong=\"H7676\"* profaned|strong=\"H2490\"* my|strong=\"H2490\"* Sabbaths|strong=\"H7676\"*." + }, + { + "verseNum": 9, + "text": "Slanderous|strong=\"H7400\"* men|strong=\"H6213\"* have|strong=\"H1961\"* been|strong=\"H1961\"* in|strong=\"H6213\"* you|strong=\"H6213\"* to|strong=\"H1961\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"*. In|strong=\"H6213\"* you|strong=\"H6213\"* they|strong=\"H6213\"* have|strong=\"H1961\"* eaten on|strong=\"H1961\"* the|strong=\"H6213\"* mountains|strong=\"H2022\"*. They|strong=\"H6213\"* have|strong=\"H1961\"* committed|strong=\"H6213\"* lewdness|strong=\"H2154\"* among|strong=\"H8432\"* you|strong=\"H6213\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"H6031\"* you|strong=\"H1540\"* have they|strong=\"H1540\"* uncovered|strong=\"H1540\"* their|strong=\"H1540\"* fathers’ nakedness|strong=\"H6172\"*. In|strong=\"H6031\"* you|strong=\"H1540\"* have they|strong=\"H1540\"* humbled|strong=\"H6031\"* her|strong=\"H1540\"* who|strong=\"H2931\"* was|strong=\"H2931\"* unclean|strong=\"H2931\"* in|strong=\"H6031\"* her|strong=\"H1540\"* impurity|strong=\"H5079\"*." + }, + { + "verseNum": 11, + "text": "One|strong=\"H6213\"* has|strong=\"H6213\"* committed|strong=\"H6213\"* abomination|strong=\"H8441\"* with|strong=\"H6213\"* his|strong=\"H6213\"* neighbor|strong=\"H7453\"*’s wife, and|strong=\"H6213\"* another|strong=\"H7453\"* has|strong=\"H6213\"* lewdly|strong=\"H2154\"* defiled|strong=\"H2930\"* his|strong=\"H6213\"* daughter-in-law|strong=\"H3618\"*. Another|strong=\"H7453\"* in|strong=\"H6213\"* you|strong=\"H6213\"* has|strong=\"H6213\"* humbled|strong=\"H6031\"* his|strong=\"H6213\"* sister, his|strong=\"H6213\"* father’s daughter|strong=\"H1323\"*." + }, + { + "verseNum": 12, + "text": "In|strong=\"H7453\"* you|strong=\"H3947\"* have|strong=\"H3947\"* they|strong=\"H3947\"* taken|strong=\"H3947\"* bribes|strong=\"H7810\"* to|strong=\"H4616\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"*. You|strong=\"H3947\"* have|strong=\"H3947\"* taken|strong=\"H3947\"* interest|strong=\"H5392\"* and|strong=\"H1818\"* increase|strong=\"H8636\"*, and|strong=\"H1818\"* you|strong=\"H3947\"* have|strong=\"H3947\"* greedily gained|strong=\"H1214\"* of|strong=\"H1818\"* your|strong=\"H3947\"* neighbors|strong=\"H7453\"* by|strong=\"H7453\"* oppression|strong=\"H6233\"*, and|strong=\"H1818\"* have|strong=\"H3947\"* forgotten|strong=\"H7911\"* me|strong=\"H3947\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "“‘“Behold|strong=\"H2009\"*, therefore|strong=\"H5921\"* I|strong=\"H2009\"* have|strong=\"H1961\"* struck|strong=\"H5221\"* my|strong=\"H5921\"* hand|strong=\"H3709\"* at|strong=\"H5921\"* your|strong=\"H5921\"* dishonest|strong=\"H1215\"* gain|strong=\"H1215\"* which|strong=\"H1818\"* you|strong=\"H5921\"* have|strong=\"H1961\"* made|strong=\"H6213\"*, and|strong=\"H6213\"* at|strong=\"H5921\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* which|strong=\"H1818\"* has|strong=\"H1961\"* been|strong=\"H1961\"* shed|strong=\"H1818\"* within|strong=\"H8432\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "Can|strong=\"H6213\"* your|strong=\"H3068\"* heart|strong=\"H3820\"* endure|strong=\"H5975\"*, or|strong=\"H3117\"* can|strong=\"H6213\"* your|strong=\"H3068\"* hands|strong=\"H3027\"* be|strong=\"H3027\"* strong|strong=\"H2388\"*, in|strong=\"H3068\"* the|strong=\"H6213\"* days|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3068\"* deal|strong=\"H6213\"* with|strong=\"H3068\"* you|strong=\"H3117\"*? I|strong=\"H3117\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H6213\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H4480\"* will|strong=\"H1471\"* scatter|strong=\"H2219\"* you|strong=\"H4480\"* among|strong=\"H4480\"* the|strong=\"H4480\"* nations|strong=\"H1471\"*, and|strong=\"H1471\"* disperse|strong=\"H2219\"* you|strong=\"H4480\"* through|strong=\"H4480\"* the|strong=\"H4480\"* countries. I|strong=\"H4480\"* will|strong=\"H1471\"* purge your|strong=\"H4480\"* filthiness|strong=\"H2932\"* out|strong=\"H4480\"* of|strong=\"H4480\"* you|strong=\"H4480\"*." + }, + { + "verseNum": 16, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* profaned|strong=\"H2490\"* in|strong=\"H3068\"* yourself|strong=\"H3045\"* in|strong=\"H3068\"* the|strong=\"H3588\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* the|strong=\"H3588\"* nations|strong=\"H1471\"*. Then|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”’”" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 18, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* has|strong=\"H1961\"* become|strong=\"H1961\"* dross|strong=\"H5509\"* to|strong=\"H3478\"* me|strong=\"H1961\"*. All|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H8432\"* are|strong=\"H1121\"* bronze|strong=\"H5178\"*, tin, iron|strong=\"H1270\"*, and|strong=\"H1121\"* lead|strong=\"H5777\"* in|strong=\"H3478\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H3605\"* furnace|strong=\"H3564\"*. They|strong=\"H3478\"* are|strong=\"H1121\"* the|strong=\"H3605\"* dross|strong=\"H5509\"* of|strong=\"H1121\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Because|strong=\"H3282\"* you|strong=\"H3605\"* have|strong=\"H1961\"* all|strong=\"H3605\"* become|strong=\"H1961\"* dross|strong=\"H5509\"*, therefore|strong=\"H3651\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H1961\"* gather|strong=\"H6908\"* you|strong=\"H3605\"* into|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 20, + "text": "As|strong=\"H3651\"* they|strong=\"H3651\"* gather|strong=\"H6908\"* silver|strong=\"H3701\"*, bronze|strong=\"H5178\"*, iron|strong=\"H1270\"*, lead|strong=\"H5777\"*, and|strong=\"H3701\"* tin into|strong=\"H8432\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H5921\"* furnace|strong=\"H3564\"*, to|strong=\"H5921\"* blow|strong=\"H5301\"* the|strong=\"H5921\"* fire on|strong=\"H5921\"* it|strong=\"H5921\"*, to|strong=\"H5921\"* melt|strong=\"H5413\"* it|strong=\"H5921\"*, so|strong=\"H3651\"* I|strong=\"H5921\"* will|strong=\"H2534\"* gather|strong=\"H6908\"* you|strong=\"H5921\"* in|strong=\"H5921\"* my|strong=\"H5921\"* anger|strong=\"H2534\"* and|strong=\"H3701\"* in|strong=\"H5921\"* my|strong=\"H5921\"* wrath|strong=\"H2534\"*, and|strong=\"H3701\"* I|strong=\"H5921\"* will|strong=\"H2534\"* lay|strong=\"H3240\"* you|strong=\"H5921\"* there|strong=\"H8432\"* and|strong=\"H3701\"* melt|strong=\"H5413\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "Yes, I|strong=\"H5921\"* will|strong=\"H5678\"* gather|strong=\"H3664\"* you|strong=\"H5921\"*, and|strong=\"H5678\"* blow|strong=\"H5301\"* on|strong=\"H5921\"* you|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H5921\"* fire of|strong=\"H8432\"* my|strong=\"H5921\"* wrath|strong=\"H5678\"*, and|strong=\"H5678\"* you|strong=\"H5921\"* will|strong=\"H5678\"* be melted|strong=\"H5413\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 22, + "text": "As|strong=\"H3651\"* silver|strong=\"H3701\"* is|strong=\"H3068\"* melted|strong=\"H5413\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H5921\"* furnace|strong=\"H3564\"*, so|strong=\"H3651\"* you|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* melted|strong=\"H5413\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* it|strong=\"H5921\"*; and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* my|strong=\"H3068\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* you|strong=\"H3588\"*.’”" + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 24, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, tell her|strong=\"H1931\"*, ‘You|strong=\"H3117\"* are|strong=\"H3117\"* a|strong=\"H3068\"* land that|strong=\"H3117\"* is|strong=\"H1931\"* not|strong=\"H3808\"* cleansed|strong=\"H2891\"* nor|strong=\"H3808\"* rained|strong=\"H1656\"* on|strong=\"H3117\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H1121\"* indignation|strong=\"H2195\"*.’" + }, + { + "verseNum": 25, + "text": "There|strong=\"H8432\"* is|strong=\"H5315\"* a|strong=\"H3068\"* conspiracy|strong=\"H7195\"* of|strong=\"H8432\"* her|strong=\"H3947\"* prophets|strong=\"H5030\"* within|strong=\"H8432\"* it|strong=\"H8432\"*, like|strong=\"H7580\"* a|strong=\"H3068\"* roaring|strong=\"H7580\"* lion ravening|strong=\"H2963\"* the|strong=\"H3947\"* prey|strong=\"H2964\"*. They|strong=\"H5315\"* have|strong=\"H5030\"* devoured souls|strong=\"H5315\"*. They|strong=\"H5315\"* take|strong=\"H3947\"* treasure|strong=\"H2633\"* and|strong=\"H5030\"* precious|strong=\"H3366\"* things|strong=\"H3366\"*. They|strong=\"H5315\"* have|strong=\"H5030\"* made|strong=\"H7235\"* many|strong=\"H7235\"* widows within|strong=\"H8432\"* it|strong=\"H8432\"*." + }, + { + "verseNum": 26, + "text": "Her|strong=\"H3045\"* priests|strong=\"H3548\"* have|strong=\"H5869\"* done|strong=\"H2554\"* violence|strong=\"H2554\"* to|strong=\"H2490\"* my|strong=\"H3045\"* law|strong=\"H8451\"* and|strong=\"H3548\"* have|strong=\"H5869\"* profaned|strong=\"H2490\"* my|strong=\"H3045\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*. They|strong=\"H3808\"* have|strong=\"H5869\"* made|strong=\"H3045\"* no|strong=\"H3808\"* distinction between|strong=\"H8432\"* the|strong=\"H8432\"* holy|strong=\"H6944\"* and|strong=\"H3548\"* the|strong=\"H8432\"* common|strong=\"H2455\"*, neither|strong=\"H3808\"* have|strong=\"H5869\"* they|strong=\"H3808\"* caused men|strong=\"H2490\"* to|strong=\"H2490\"* discern|strong=\"H3045\"* between|strong=\"H8432\"* the|strong=\"H8432\"* unclean|strong=\"H2931\"* and|strong=\"H3548\"* the|strong=\"H8432\"* clean|strong=\"H2889\"*, and|strong=\"H3548\"* have|strong=\"H5869\"* hidden|strong=\"H5956\"* their|strong=\"H8432\"* eyes|strong=\"H5869\"* from|strong=\"H5869\"* my|strong=\"H3045\"* Sabbaths|strong=\"H7676\"*. So|strong=\"H3808\"* I|strong=\"H3045\"* am profaned|strong=\"H2490\"* among|strong=\"H8432\"* them|strong=\"H8432\"*." + }, + { + "verseNum": 27, + "text": "Her|strong=\"H7130\"* princes|strong=\"H8269\"* within|strong=\"H7130\"* it|strong=\"H7130\"* are|strong=\"H8269\"* like|strong=\"H8210\"* wolves|strong=\"H2061\"* ravening|strong=\"H2963\"* the|strong=\"H7130\"* prey|strong=\"H2964\"*, to|strong=\"H4616\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"* and|strong=\"H1818\"* to|strong=\"H4616\"* destroy|strong=\"H2963\"* souls|strong=\"H5315\"*, that|strong=\"H5315\"* they|strong=\"H5315\"* may|strong=\"H5315\"* get|strong=\"H1214\"* dishonest|strong=\"H1215\"* gain|strong=\"H1215\"*." + }, + { + "verseNum": 28, + "text": "Her|strong=\"H2902\"* prophets|strong=\"H5030\"* have|strong=\"H3068\"* plastered|strong=\"H2902\"* for|strong=\"H3068\"* them|strong=\"H3068\"* with|strong=\"H3068\"* whitewash|strong=\"H8602\"*, seeing|strong=\"H2374\"* false|strong=\"H7723\"* visions|strong=\"H7723\"*, and|strong=\"H3068\"* divining|strong=\"H7080\"* lies|strong=\"H3577\"* to|strong=\"H1696\"* them|strong=\"H3068\"*, saying|strong=\"H1696\"*, ‘The|strong=\"H3069\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*,’ when|strong=\"H1696\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3808\"* people|strong=\"H5971\"* of|strong=\"H5971\"* the|strong=\"H3808\"* land have|strong=\"H5971\"* used oppression|strong=\"H6233\"* and|strong=\"H4941\"* exercised|strong=\"H1497\"* robbery|strong=\"H1498\"*. Yes, they|strong=\"H3808\"* have|strong=\"H5971\"* troubled the|strong=\"H3808\"* poor|strong=\"H6041\"* and|strong=\"H4941\"* needy|strong=\"H6041\"*, and|strong=\"H4941\"* have|strong=\"H5971\"* oppressed|strong=\"H6231\"* the|strong=\"H3808\"* foreigner|strong=\"H1616\"* wrongfully|strong=\"H4941\"*." + }, + { + "verseNum": 30, + "text": "“I|strong=\"H3808\"* sought|strong=\"H1245\"* for|strong=\"H1157\"* a|strong=\"H3068\"* man|strong=\"H6440\"* among|strong=\"H4672\"* them|strong=\"H1992\"* who|strong=\"H1992\"* would build|strong=\"H1443\"* up|strong=\"H5975\"* the|strong=\"H6440\"* wall|strong=\"H1447\"* and|strong=\"H6440\"* stand|strong=\"H5975\"* in|strong=\"H4672\"* the|strong=\"H6440\"* gap|strong=\"H6556\"* before|strong=\"H6440\"* me|strong=\"H6440\"* for|strong=\"H1157\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, that|strong=\"H3808\"* I|strong=\"H3808\"* would not|strong=\"H3808\"* destroy|strong=\"H7843\"* it|strong=\"H6440\"*; but|strong=\"H3808\"* I|strong=\"H3808\"* found|strong=\"H4672\"* no|strong=\"H3808\"* one|strong=\"H3808\"*." + }, + { + "verseNum": 31, + "text": "Therefore|strong=\"H5921\"* I|strong=\"H5414\"* have|strong=\"H5414\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* my|strong=\"H5414\"* indignation|strong=\"H2195\"* on|strong=\"H5921\"* them|strong=\"H5414\"*. I|strong=\"H5414\"* have|strong=\"H5414\"* consumed|strong=\"H3615\"* them|strong=\"H5414\"* with|strong=\"H5921\"* the|strong=\"H5002\"* fire of|strong=\"H7218\"* my|strong=\"H5414\"* wrath|strong=\"H5678\"*. I|strong=\"H5414\"* have|strong=\"H5414\"* brought|strong=\"H5414\"* their|strong=\"H5414\"* own way|strong=\"H1870\"* on|strong=\"H5921\"* their|strong=\"H5414\"* heads|strong=\"H7218\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* again|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, there|strong=\"H1961\"* were|strong=\"H1961\"* two|strong=\"H8147\"* women|strong=\"H1323\"*, the|strong=\"H1961\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* one|strong=\"H1121\"* mother." + }, + { + "verseNum": 3, + "text": "They|strong=\"H8033\"* played|strong=\"H2181\"* the|strong=\"H6213\"* prostitute|strong=\"H2181\"* in|strong=\"H6213\"* Egypt|strong=\"H4714\"*. They|strong=\"H8033\"* played|strong=\"H2181\"* the|strong=\"H6213\"* prostitute|strong=\"H2181\"* in|strong=\"H6213\"* their|strong=\"H6213\"* youth|strong=\"H5271\"*. Their|strong=\"H6213\"* breasts|strong=\"H7699\"* were|strong=\"H4714\"* fondled|strong=\"H1717\"* there|strong=\"H8033\"*, and|strong=\"H4714\"* their|strong=\"H6213\"* youthful nipples|strong=\"H1717\"* were|strong=\"H4714\"* caressed there|strong=\"H8033\"*." + }, + { + "verseNum": 4, + "text": "Their|strong=\"H1961\"* names|strong=\"H8034\"* were|strong=\"H1961\"* Oholah the|strong=\"H3205\"* elder|strong=\"H1419\"*, and|strong=\"H1121\"* Oholibah her|strong=\"H3205\"* sister. They|strong=\"H3389\"* became|strong=\"H3205\"* mine, and|strong=\"H1121\"* they|strong=\"H3389\"* bore|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* daughters|strong=\"H1323\"*. As|strong=\"H1961\"* for|strong=\"H8034\"* their|strong=\"H1961\"* names|strong=\"H8034\"*, Samaria|strong=\"H8111\"* is|strong=\"H8034\"* Oholah, and|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* Oholibah." + }, + { + "verseNum": 5, + "text": "“Oholah played|strong=\"H2181\"* the|strong=\"H5921\"* prostitute|strong=\"H2181\"* when|strong=\"H5921\"* she|strong=\"H5921\"* was mine|strong=\"H8478\"*. She|strong=\"H5921\"* doted|strong=\"H5689\"* on|strong=\"H5921\"* her|strong=\"H5921\"* lovers|strong=\"H5689\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* Assyrians her|strong=\"H5921\"* neighbors|strong=\"H7138\"*," + }, + { + "verseNum": 6, + "text": "who|strong=\"H3605\"* were|strong=\"H5483\"* clothed|strong=\"H3847\"* with|strong=\"H3847\"* blue|strong=\"H8504\"*—governors|strong=\"H6346\"* and|strong=\"H8504\"* rulers|strong=\"H5461\"*, all|strong=\"H3605\"* of|strong=\"H3605\"* them|strong=\"H3847\"* desirable|strong=\"H2531\"* young|strong=\"H2531\"* men|strong=\"H3605\"*, horsemen|strong=\"H6571\"* riding|strong=\"H7392\"* on|strong=\"H3847\"* horses|strong=\"H5483\"*." + }, + { + "verseNum": 7, + "text": "She|strong=\"H1544\"* gave|strong=\"H5414\"* herself|strong=\"H5921\"* as|strong=\"H1121\"* a|strong=\"H3068\"* prostitute to|strong=\"H5921\"* them|strong=\"H5414\"*, all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H5414\"* the|strong=\"H3605\"* choicest|strong=\"H4005\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Assyria. She|strong=\"H1544\"* defiled|strong=\"H2930\"* herself|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H3605\"* idols|strong=\"H1544\"* of|strong=\"H1121\"* whomever|strong=\"H3605\"* she|strong=\"H1544\"* lusted|strong=\"H5689\"* after|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "She|strong=\"H3588\"* hasn’t left|strong=\"H5800\"* her|strong=\"H5921\"* prostitution since|strong=\"H3588\"* leaving|strong=\"H5800\"* Egypt|strong=\"H4714\"*; for|strong=\"H3588\"* in|strong=\"H5921\"* her|strong=\"H5921\"* youth|strong=\"H5271\"* they|strong=\"H1992\"* lay|strong=\"H7901\"* with|strong=\"H6213\"* her|strong=\"H5921\"*. They|strong=\"H1992\"* caressed her|strong=\"H5921\"* youthful nipples|strong=\"H1717\"* and|strong=\"H4714\"* they|strong=\"H1992\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* their|strong=\"H1992\"* prostitution on|strong=\"H5921\"* her|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "“Therefore|strong=\"H3651\"* I|strong=\"H5414\"* delivered|strong=\"H5414\"* her|strong=\"H5414\"* into|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* her|strong=\"H5414\"* lovers|strong=\"H5689\"*, into|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Assyrians|strong=\"H1121\"* on|strong=\"H5921\"* whom she|strong=\"H5921\"* doted|strong=\"H5689\"*." + }, + { + "verseNum": 10, + "text": "These|strong=\"H1992\"* uncovered|strong=\"H1540\"* her|strong=\"H1540\"* nakedness|strong=\"H6172\"*. They|strong=\"H1992\"* took|strong=\"H3947\"* her|strong=\"H1540\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* her|strong=\"H1540\"* daughters|strong=\"H1323\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* killed|strong=\"H2026\"* her|strong=\"H1540\"* with|strong=\"H6213\"* the|strong=\"H3947\"* sword|strong=\"H2719\"*. She became|strong=\"H1961\"* a|strong=\"H3068\"* byword|strong=\"H8034\"* among|strong=\"H8034\"* women|strong=\"H1323\"*; for|strong=\"H6213\"* they|strong=\"H1992\"* executed|strong=\"H6213\"* judgments|strong=\"H8196\"* on|strong=\"H1961\"* her|strong=\"H1540\"*." + }, + { + "verseNum": 11, + "text": "“Her|strong=\"H7200\"* sister Oholibah saw|strong=\"H7200\"* this|strong=\"H7200\"*, yet she was more|strong=\"H4480\"* corrupt|strong=\"H7843\"* in|strong=\"H7200\"* her|strong=\"H7200\"* lusting than|strong=\"H4480\"* she, and|strong=\"H7200\"* in|strong=\"H7200\"* her|strong=\"H7200\"* prostitution which was more|strong=\"H4480\"* depraved|strong=\"H7843\"* than|strong=\"H4480\"* the|strong=\"H7200\"* prostitution of|strong=\"H4480\"* her|strong=\"H7200\"* sister." + }, + { + "verseNum": 12, + "text": "She lusted|strong=\"H5689\"* after the|strong=\"H3605\"* Assyrians|strong=\"H1121\"*, governors|strong=\"H6346\"* and|strong=\"H1121\"* rulers|strong=\"H5461\"*—her|strong=\"H3605\"* neighbors|strong=\"H7138\"*, clothed|strong=\"H3847\"* most|strong=\"H3847\"* gorgeously|strong=\"H4358\"*, horsemen|strong=\"H6571\"* riding|strong=\"H7392\"* on|strong=\"H3847\"* horses|strong=\"H5483\"*, all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H1121\"* desirable|strong=\"H2531\"* young|strong=\"H1121\"* men|strong=\"H1121\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* she|strong=\"H3588\"* was|strong=\"H1870\"* defiled|strong=\"H2930\"*. They|strong=\"H3588\"* both|strong=\"H8147\"* went|strong=\"H8147\"* the|strong=\"H7200\"* same way|strong=\"H1870\"*." + }, + { + "verseNum": 14, + "text": "“She|strong=\"H5921\"* increased|strong=\"H3254\"* her|strong=\"H5921\"* prostitution; for|strong=\"H5921\"* she|strong=\"H5921\"* saw|strong=\"H7200\"* men portrayed|strong=\"H2707\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H7023\"*, the|strong=\"H5921\"* images|strong=\"H6754\"* of|strong=\"H5921\"* the|strong=\"H5921\"* Chaldeans|strong=\"H3778\"* portrayed|strong=\"H2707\"* with|strong=\"H5921\"* red|strong=\"H8350\"*," + }, + { + "verseNum": 15, + "text": "dressed with|strong=\"H3605\"* belts on|strong=\"H3605\"* their|strong=\"H3605\"* waists, with|strong=\"H3605\"* flowing|strong=\"H5628\"* turbans|strong=\"H2871\"* on|strong=\"H3605\"* their|strong=\"H3605\"* heads|strong=\"H7218\"*, all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H1121\"* looking|strong=\"H4758\"* like|strong=\"H4758\"* princes|strong=\"H7991\"*, after the|strong=\"H3605\"* likeness|strong=\"H1823\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Babylonians|strong=\"H1121\"* in|strong=\"H1121\"* Chaldea|strong=\"H3778\"*, the|strong=\"H3605\"* land of|strong=\"H1121\"* their|strong=\"H3605\"* birth|strong=\"H4138\"*." + }, + { + "verseNum": 16, + "text": "As|strong=\"H5869\"* soon as|strong=\"H5869\"* she|strong=\"H5921\"* saw|strong=\"H4758\"* them|strong=\"H5921\"*, she|strong=\"H5921\"* lusted|strong=\"H5689\"* after|strong=\"H5921\"* them|strong=\"H5921\"* and|strong=\"H7971\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* them|strong=\"H5921\"* into|strong=\"H5921\"* Chaldea|strong=\"H3778\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H1121\"* Babylonians|strong=\"H1121\"* came to|strong=\"H1121\"* her into the|strong=\"H1121\"* bed|strong=\"H4904\"* of|strong=\"H1121\"* love|strong=\"H1730\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* defiled|strong=\"H2930\"* her with|strong=\"H5315\"* their|strong=\"H1992\"* prostitution. She was|strong=\"H5315\"* polluted|strong=\"H2930\"* with|strong=\"H5315\"* them|strong=\"H1992\"*, and|strong=\"H1121\"* her soul|strong=\"H5315\"* was|strong=\"H5315\"* alienated|strong=\"H3363\"* from|strong=\"H5315\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 18, + "text": "So|strong=\"H5921\"* she|strong=\"H5921\"* uncovered|strong=\"H1540\"* her|strong=\"H1540\"* prostitution and|strong=\"H5315\"* uncovered|strong=\"H1540\"* her|strong=\"H1540\"* nakedness|strong=\"H6172\"*. Then my|strong=\"H5921\"* soul|strong=\"H5315\"* was|strong=\"H5315\"* alienated|strong=\"H5361\"* from|strong=\"H5921\"* her|strong=\"H1540\"*, just like|strong=\"H5921\"* my|strong=\"H5921\"* soul|strong=\"H5315\"* was|strong=\"H5315\"* alienated|strong=\"H5361\"* from|strong=\"H5921\"* her|strong=\"H1540\"* sister." + }, + { + "verseNum": 19, + "text": "Yet|strong=\"H3117\"* she multiplied|strong=\"H7235\"* her|strong=\"H7235\"* prostitution, remembering|strong=\"H2142\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* her|strong=\"H7235\"* youth|strong=\"H5271\"*, in|strong=\"H3117\"* which|strong=\"H3117\"* she had|strong=\"H7235\"* played|strong=\"H2181\"* the|strong=\"H3117\"* prostitute|strong=\"H2181\"* in|strong=\"H3117\"* the|strong=\"H3117\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 20, + "text": "She|strong=\"H5921\"* lusted|strong=\"H5689\"* after|strong=\"H5921\"* their|strong=\"H5921\"* lovers|strong=\"H5689\"*, whose|strong=\"H6370\"* flesh|strong=\"H1320\"* is|strong=\"H1320\"* as|strong=\"H5921\"* the|strong=\"H5921\"* flesh|strong=\"H1320\"* of|strong=\"H5921\"* donkeys|strong=\"H2543\"*, and|strong=\"H5483\"* whose|strong=\"H6370\"* issue|strong=\"H2231\"* is|strong=\"H1320\"* like|strong=\"H5921\"* the|strong=\"H5921\"* issue|strong=\"H2231\"* of|strong=\"H5921\"* horses|strong=\"H5483\"*." + }, + { + "verseNum": 21, + "text": "Thus|strong=\"H4616\"* you|strong=\"H6213\"* called to|strong=\"H6213\"* memory the|strong=\"H6213\"* lewdness|strong=\"H2154\"* of|strong=\"H6213\"* your|strong=\"H6213\"* youth|strong=\"H5271\"*, in|strong=\"H6213\"* the|strong=\"H6213\"* caressing of|strong=\"H6213\"* your|strong=\"H6213\"* nipples|strong=\"H1717\"* by|strong=\"H6485\"* the|strong=\"H6213\"* Egyptians|strong=\"H4714\"* because|strong=\"H4616\"* of|strong=\"H6213\"* your|strong=\"H6213\"* youthful breasts|strong=\"H7699\"*." + }, + { + "verseNum": 22, + "text": "“Therefore|strong=\"H3651\"*, Oholibah, the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H5315\"* raise|strong=\"H5782\"* up|strong=\"H5782\"* your|strong=\"H5921\"* lovers against|strong=\"H5921\"* you|strong=\"H5921\"*, from|strong=\"H5921\"* whom|strong=\"H1992\"* your|strong=\"H5921\"* soul|strong=\"H5315\"* is|strong=\"H5315\"* alienated|strong=\"H5361\"*, and|strong=\"H5315\"* I|strong=\"H2005\"* will|strong=\"H5315\"* bring them|strong=\"H1992\"* against|strong=\"H5921\"* you|strong=\"H5921\"* on|strong=\"H5921\"* every|strong=\"H5439\"* side|strong=\"H5439\"*:" + }, + { + "verseNum": 23, + "text": "the|strong=\"H3605\"* Babylonians|strong=\"H1121\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"*, Pekod|strong=\"H6489\"*, Shoa|strong=\"H7772\"*, Koa|strong=\"H6970\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Assyrians|strong=\"H1121\"* with|strong=\"H3605\"* them|strong=\"H7121\"*; all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H7121\"* desirable|strong=\"H2531\"* young|strong=\"H1121\"* men|strong=\"H1121\"*, governors|strong=\"H6346\"* and|strong=\"H1121\"* rulers|strong=\"H5461\"*, princes|strong=\"H7991\"* and|strong=\"H1121\"* men|strong=\"H1121\"* of|strong=\"H1121\"* renown|strong=\"H7121\"*, all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H7121\"* riding|strong=\"H7392\"* on|strong=\"H7392\"* horses|strong=\"H5483\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H5921\"* will|strong=\"H5971\"* come|strong=\"H5971\"* against|strong=\"H5921\"* you|strong=\"H5414\"* with|strong=\"H5921\"* weapons|strong=\"H2021\"*, chariots|strong=\"H7393\"*, and|strong=\"H4941\"* wagons|strong=\"H1534\"*, and|strong=\"H4941\"* with|strong=\"H5921\"* a|strong=\"H3068\"* company|strong=\"H6951\"* of|strong=\"H6440\"* peoples|strong=\"H5971\"*. They|strong=\"H5921\"* will|strong=\"H5971\"* set|strong=\"H7760\"* themselves|strong=\"H7760\"* against|strong=\"H5921\"* you|strong=\"H5414\"* with|strong=\"H5921\"* buckler|strong=\"H4043\"*, shield|strong=\"H4043\"*, and|strong=\"H4941\"* helmet|strong=\"H6959\"* all|strong=\"H5439\"* around|strong=\"H5439\"*. I|strong=\"H5414\"* will|strong=\"H5971\"* commit|strong=\"H5414\"* the|strong=\"H6440\"* judgment|strong=\"H4941\"* to|strong=\"H5921\"* them|strong=\"H5414\"*, and|strong=\"H4941\"* they|strong=\"H5921\"* will|strong=\"H5971\"* judge|strong=\"H8199\"* you|strong=\"H5414\"* according|strong=\"H5921\"* to|strong=\"H5921\"* their|strong=\"H5414\"* judgments|strong=\"H4941\"*." + }, + { + "verseNum": 25, + "text": "I|strong=\"H5414\"* will|strong=\"H2719\"* set|strong=\"H5414\"* my|strong=\"H5414\"* jealousy|strong=\"H7068\"* against|strong=\"H2719\"* you|strong=\"H5414\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* will|strong=\"H2719\"* deal|strong=\"H6213\"* with|strong=\"H6213\"* you|strong=\"H5414\"* in|strong=\"H6213\"* fury|strong=\"H2534\"*. They|strong=\"H1992\"* will|strong=\"H2719\"* take|strong=\"H3947\"* away|strong=\"H5493\"* your|strong=\"H5414\"* nose and|strong=\"H1121\"* your|strong=\"H5414\"* ears. Your|strong=\"H5414\"* remnant will|strong=\"H2719\"* fall|strong=\"H5307\"* by|strong=\"H5414\"* the|strong=\"H5414\"* sword|strong=\"H2719\"*. They|strong=\"H1992\"* will|strong=\"H2719\"* take|strong=\"H3947\"* your|strong=\"H5414\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H5414\"* daughters|strong=\"H1323\"*; and|strong=\"H1121\"* the|strong=\"H5414\"* rest of|strong=\"H1121\"* you|strong=\"H5414\"* will|strong=\"H2719\"* be|strong=\"H1121\"* devoured by|strong=\"H5414\"* the|strong=\"H5414\"* fire." + }, + { + "verseNum": 26, + "text": "They|strong=\"H3947\"* will also strip|strong=\"H6584\"* you|strong=\"H3947\"* of|strong=\"H3627\"* your|strong=\"H3947\"* clothes and|strong=\"H3947\"* take|strong=\"H3947\"* away|strong=\"H3947\"* your|strong=\"H3947\"* beautiful|strong=\"H8597\"* jewels|strong=\"H3627\"*." + }, + { + "verseNum": 27, + "text": "Thus|strong=\"H3808\"* I|strong=\"H4714\"* will|strong=\"H5869\"* make|strong=\"H7673\"* your|strong=\"H5375\"* lewdness|strong=\"H2154\"* to|strong=\"H4714\"* cease|strong=\"H7673\"* from|strong=\"H4480\"* you|strong=\"H3808\"*, and|strong=\"H5869\"* remove|strong=\"H7673\"* your|strong=\"H5375\"* prostitution|strong=\"H2184\"* from|strong=\"H4480\"* the|strong=\"H5375\"* land of|strong=\"H5869\"* Egypt|strong=\"H4714\"*, so|strong=\"H4480\"* that|strong=\"H4480\"* you|strong=\"H3808\"* will|strong=\"H5869\"* not|strong=\"H3808\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5375\"* eyes|strong=\"H5869\"* to|strong=\"H4714\"* them|strong=\"H5375\"*, nor|strong=\"H3808\"* remember|strong=\"H2142\"* Egypt|strong=\"H4714\"* any|strong=\"H4480\"* more|strong=\"H4480\"*.’" + }, + { + "verseNum": 28, + "text": "“For|strong=\"H3588\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H5315\"* deliver|strong=\"H5414\"* you|strong=\"H3588\"* into|strong=\"H3027\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* them|strong=\"H5414\"* whom|strong=\"H1992\"* you|strong=\"H3588\"* hate|strong=\"H8130\"*, into|strong=\"H3027\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* them|strong=\"H5414\"* from|strong=\"H5315\"* whom|strong=\"H1992\"* your|strong=\"H5414\"* soul|strong=\"H5315\"* is|strong=\"H5315\"* alienated|strong=\"H5361\"*." + }, + { + "verseNum": 29, + "text": "They|strong=\"H6213\"* will|strong=\"H6213\"* deal|strong=\"H6213\"* with|strong=\"H6213\"* you|strong=\"H3605\"* in|strong=\"H6213\"* hatred|strong=\"H8135\"*, and|strong=\"H6213\"* will|strong=\"H6213\"* take|strong=\"H3947\"* away|strong=\"H3947\"* all|strong=\"H3605\"* your|strong=\"H3605\"* labor|strong=\"H3018\"*, and|strong=\"H6213\"* will|strong=\"H6213\"* leave|strong=\"H5800\"* you|strong=\"H3605\"* naked|strong=\"H5903\"* and|strong=\"H6213\"* bare|strong=\"H6181\"*. The|strong=\"H3605\"* nakedness|strong=\"H6172\"* of|strong=\"H3605\"* your|strong=\"H3605\"* prostitution will|strong=\"H6213\"* be|strong=\"H3605\"* uncovered|strong=\"H1540\"*, both|strong=\"H3605\"* your|strong=\"H3605\"* lewdness|strong=\"H2154\"* and|strong=\"H6213\"* your|strong=\"H3605\"* prostitution." + }, + { + "verseNum": 30, + "text": "These|strong=\"H6213\"* things will|strong=\"H1471\"* be|strong=\"H1471\"* done|strong=\"H6213\"* to|strong=\"H6213\"* you|strong=\"H5921\"* because|strong=\"H5921\"* you|strong=\"H5921\"* have|strong=\"H1471\"* played|strong=\"H2181\"* the|strong=\"H5921\"* prostitute|strong=\"H2181\"* after|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*, and|strong=\"H1471\"* because|strong=\"H5921\"* you|strong=\"H5921\"* are|strong=\"H1471\"* polluted|strong=\"H2930\"* with|strong=\"H6213\"* their|strong=\"H5921\"* idols|strong=\"H1544\"*." + }, + { + "verseNum": 31, + "text": "You|strong=\"H5414\"* have|strong=\"H3027\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* the|strong=\"H5414\"* way|strong=\"H1870\"* of|strong=\"H3027\"* your|strong=\"H5414\"* sister; therefore I|strong=\"H5414\"* will|strong=\"H3027\"* give|strong=\"H5414\"* her|strong=\"H5414\"* cup|strong=\"H3563\"* into|strong=\"H1980\"* your|strong=\"H5414\"* hand|strong=\"H3027\"*.’" + }, + { + "verseNum": 32, + "text": "“The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 33, + "text": "You will|strong=\"H8111\"* be|strong=\"H8111\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* drunkenness|strong=\"H7943\"* and|strong=\"H8111\"* sorrow|strong=\"H3015\"*," + }, + { + "verseNum": 34, + "text": "You|strong=\"H3588\"* will|strong=\"H3069\"* even|strong=\"H3588\"* drink|strong=\"H8354\"* it|strong=\"H3588\"* and|strong=\"H8354\"* drain|strong=\"H4680\"* it|strong=\"H3588\"* out|strong=\"H4680\"*." + }, + { + "verseNum": 35, + "text": "“Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Because|strong=\"H3282\"* you|strong=\"H3651\"* have|strong=\"H1571\"* forgotten|strong=\"H7911\"* me|strong=\"H7993\"* and|strong=\"H1571\"* cast|strong=\"H7993\"* me|strong=\"H7993\"* behind your|strong=\"H5375\"* back|strong=\"H1458\"*, therefore|strong=\"H3651\"* you|strong=\"H3651\"* also|strong=\"H1571\"* bear|strong=\"H5375\"* your|strong=\"H5375\"* lewdness|strong=\"H2154\"* and|strong=\"H1571\"* your|strong=\"H5375\"* prostitution.’”" + }, + { + "verseNum": 36, + "text": "Yahweh|strong=\"H3068\"* said moreover to|strong=\"H3068\"* me|strong=\"H5046\"*: “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, will|strong=\"H3068\"* you|strong=\"H5046\"* judge|strong=\"H8199\"* Oholah and|strong=\"H1121\"* Oholibah? Then|strong=\"H3068\"* declare|strong=\"H5046\"* to|strong=\"H3068\"* them|strong=\"H5046\"* their|strong=\"H3068\"* abominations|strong=\"H8441\"*." + }, + { + "verseNum": 37, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1121\"* committed|strong=\"H5003\"* adultery|strong=\"H5003\"*, and|strong=\"H1121\"* blood|strong=\"H1818\"* is|strong=\"H1571\"* in|strong=\"H1121\"* their|strong=\"H3588\"* hands|strong=\"H3027\"*. They|strong=\"H3588\"* have|strong=\"H1121\"* committed|strong=\"H5003\"* adultery|strong=\"H5003\"* with|strong=\"H3027\"* their|strong=\"H3588\"* idols|strong=\"H1544\"*. They|strong=\"H3588\"* have|strong=\"H1121\"* also|strong=\"H1571\"* caused|strong=\"H5674\"* their|strong=\"H3588\"* sons|strong=\"H1121\"*, whom|strong=\"H3588\"* they|strong=\"H3588\"* bore|strong=\"H3205\"* to|strong=\"H3027\"* me|strong=\"H5674\"*, to|strong=\"H3027\"* pass|strong=\"H5674\"* through|strong=\"H3027\"* the|strong=\"H3588\"* fire to|strong=\"H3027\"* them|strong=\"H3027\"* to|strong=\"H3027\"* be|strong=\"H3027\"* devoured." + }, + { + "verseNum": 38, + "text": "Moreover|strong=\"H5750\"* this|strong=\"H2063\"* they|strong=\"H3117\"* have|strong=\"H3117\"* done|strong=\"H6213\"* to|strong=\"H6213\"* me|strong=\"H6213\"*: they|strong=\"H3117\"* have|strong=\"H3117\"* defiled|strong=\"H2930\"* my|strong=\"H2490\"* sanctuary|strong=\"H4720\"* in|strong=\"H6213\"* the|strong=\"H6213\"* same|strong=\"H1931\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* have|strong=\"H3117\"* profaned|strong=\"H2490\"* my|strong=\"H2490\"* Sabbaths|strong=\"H7676\"*." + }, + { + "verseNum": 39, + "text": "For|strong=\"H6213\"* when|strong=\"H3117\"* they|strong=\"H3117\"* had|strong=\"H1121\"* slain|strong=\"H7819\"* their|strong=\"H8432\"* children|strong=\"H1121\"* to|strong=\"H6213\"* their|strong=\"H8432\"* idols|strong=\"H1544\"*, then|strong=\"H2009\"* they|strong=\"H3117\"* came the|strong=\"H3541\"* same|strong=\"H1931\"* day|strong=\"H3117\"* into|strong=\"H8432\"* my|strong=\"H2490\"* sanctuary|strong=\"H4720\"* to|strong=\"H6213\"* profane|strong=\"H2490\"* it|strong=\"H1931\"*; and|strong=\"H1121\"* behold|strong=\"H2009\"*, they|strong=\"H3117\"* have|strong=\"H1121\"* done|strong=\"H6213\"* this|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H3541\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* my|strong=\"H2490\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 40, + "text": "“Furthermore|strong=\"H2009\"* you|strong=\"H3588\"* sisters have|strong=\"H5869\"* sent|strong=\"H7971\"* for|strong=\"H3588\"* men who|strong=\"H4397\"* come|strong=\"H7971\"* from|strong=\"H7971\"* far|strong=\"H4801\"* away|strong=\"H7971\"*, to|strong=\"H7971\"* whom|strong=\"H5869\"* a|strong=\"H3068\"* messenger|strong=\"H4397\"* was|strong=\"H4397\"* sent|strong=\"H7971\"*, and|strong=\"H7971\"* behold|strong=\"H2009\"*, they|strong=\"H3588\"* came|strong=\"H4397\"*; for|strong=\"H3588\"* whom|strong=\"H5869\"* you|strong=\"H3588\"* washed|strong=\"H7364\"* yourself|strong=\"H5710\"*, painted|strong=\"H3583\"* your|strong=\"H3588\"* eyes|strong=\"H5869\"*, decorated|strong=\"H5710\"* yourself|strong=\"H5710\"* with|strong=\"H7364\"* ornaments|strong=\"H5716\"*," + }, + { + "verseNum": 41, + "text": "and|strong=\"H6440\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* a|strong=\"H3068\"* stately|strong=\"H3520\"* bed|strong=\"H4296\"*, with|strong=\"H5921\"* a|strong=\"H3068\"* table|strong=\"H7979\"* prepared|strong=\"H6186\"* before|strong=\"H6440\"* it|strong=\"H7760\"*, whereupon you|strong=\"H6440\"* set|strong=\"H7760\"* my|strong=\"H7760\"* incense|strong=\"H7004\"* and|strong=\"H6440\"* my|strong=\"H7760\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 42, + "text": "“The|strong=\"H5921\"* voice|strong=\"H6963\"* of|strong=\"H3027\"* a|strong=\"H3068\"* multitude|strong=\"H1995\"* being at|strong=\"H5921\"* ease|strong=\"H7961\"* was|strong=\"H6963\"* with|strong=\"H5921\"* her|strong=\"H5414\"*. With|strong=\"H5921\"* men|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H5921\"* common|strong=\"H7230\"* sort|strong=\"H7230\"* were|strong=\"H3027\"* brought|strong=\"H5414\"* drunkards|strong=\"H5433\"* from|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*; and|strong=\"H3027\"* they|strong=\"H5921\"* put|strong=\"H5414\"* bracelets|strong=\"H6781\"* on|strong=\"H5921\"* their|strong=\"H5414\"* hands|strong=\"H3027\"*, and|strong=\"H3027\"* beautiful|strong=\"H8597\"* crowns|strong=\"H5850\"* on|strong=\"H5921\"* their|strong=\"H5414\"* heads|strong=\"H7218\"*." + }, + { + "verseNum": 43, + "text": "Then|strong=\"H6258\"* I|strong=\"H6258\"* said of|strong=\"H1931\"* her|strong=\"H1931\"* who|strong=\"H1931\"* was|strong=\"H1931\"* old|strong=\"H1087\"* in|strong=\"H2181\"* adulteries|strong=\"H5004\"*, ‘Now|strong=\"H6258\"* they|strong=\"H1931\"* will|strong=\"H1931\"* play|strong=\"H2181\"* the|strong=\"H2181\"* prostitute|strong=\"H2181\"* with|strong=\"H2181\"* her|strong=\"H1931\"*, and|strong=\"H6258\"* she|strong=\"H1931\"* with|strong=\"H2181\"* them|strong=\"H1931\"*.’" + }, + { + "verseNum": 44, + "text": "They|strong=\"H3651\"* went in|strong=\"H2181\"* to|strong=\"H2154\"* her|strong=\"H3651\"*, as|strong=\"H3651\"* they|strong=\"H3651\"* go in|strong=\"H2181\"* to|strong=\"H2154\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*. So|strong=\"H3651\"* they|strong=\"H3651\"* went in|strong=\"H2181\"* to|strong=\"H2154\"* Oholah and|strong=\"H3651\"* to|strong=\"H2154\"* Oholibah, the|strong=\"H2181\"* lewd|strong=\"H2154\"* women." + }, + { + "verseNum": 45, + "text": "Righteous|strong=\"H6662\"* men|strong=\"H6662\"* will|strong=\"H6662\"* judge|strong=\"H8199\"* them|strong=\"H1992\"* with|strong=\"H3027\"* the|strong=\"H3588\"* judgment|strong=\"H4941\"* of|strong=\"H3027\"* adulteresses|strong=\"H5003\"* and|strong=\"H4941\"* with|strong=\"H3027\"* the|strong=\"H3588\"* judgment|strong=\"H4941\"* of|strong=\"H3027\"* women|strong=\"H1992\"* who|strong=\"H1992\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"*, because|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* adulteresses|strong=\"H5003\"*, and|strong=\"H4941\"* blood|strong=\"H1818\"* is|strong=\"H3027\"* in|strong=\"H3027\"* their|strong=\"H1992\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 46, + "text": "“For|strong=\"H3588\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘I|strong=\"H3588\"* will|strong=\"H5414\"* bring|strong=\"H5927\"* up|strong=\"H5927\"* a|strong=\"H3068\"* mob against|strong=\"H5921\"* them|strong=\"H5414\"*, and|strong=\"H5927\"* will|strong=\"H5414\"* give|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5927\"* be|strong=\"H5414\"* tossed back|strong=\"H5927\"* and|strong=\"H5927\"* forth|strong=\"H5414\"* and|strong=\"H5927\"* robbed." + }, + { + "verseNum": 47, + "text": "The|strong=\"H5921\"* company|strong=\"H6951\"* will|strong=\"H2719\"* stone|strong=\"H7275\"* them|strong=\"H5921\"* with|strong=\"H8313\"* stones and|strong=\"H1121\"* dispatch|strong=\"H1254\"* them|strong=\"H5921\"* with|strong=\"H8313\"* their|strong=\"H8313\"* swords|strong=\"H2719\"*. They|strong=\"H5921\"* will|strong=\"H2719\"* kill|strong=\"H2026\"* their|strong=\"H8313\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H8313\"* daughters|strong=\"H1323\"*, and|strong=\"H1121\"* burn|strong=\"H8313\"* up|strong=\"H5921\"* their|strong=\"H8313\"* houses|strong=\"H1004\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 48, + "text": "“‘Thus|strong=\"H3808\"* I|strong=\"H3808\"* will|strong=\"H3808\"* cause|strong=\"H6213\"* lewdness|strong=\"H2154\"* to|strong=\"H6213\"* cease|strong=\"H7673\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H3605\"* land, that|strong=\"H3605\"* all|strong=\"H3605\"* women may|strong=\"H6213\"* be|strong=\"H3808\"* taught|strong=\"H3256\"* not|strong=\"H3808\"* to|strong=\"H6213\"* be|strong=\"H3808\"* lewd|strong=\"H2154\"* like|strong=\"H3808\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 49, + "text": "They|strong=\"H3588\"* will|strong=\"H5414\"* recompense|strong=\"H5414\"* your|strong=\"H5414\"* lewdness|strong=\"H2154\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3045\"* you|strong=\"H3588\"* will|strong=\"H5414\"* bear|strong=\"H5375\"* the|strong=\"H5921\"* sins|strong=\"H2399\"* of|strong=\"H5921\"* your|strong=\"H5414\"* idols|strong=\"H1544\"*. Then|strong=\"H5375\"* you|strong=\"H3588\"* will|strong=\"H5414\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Again|strong=\"H1961\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* ninth|strong=\"H8671\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* tenth|strong=\"H6224\"* day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, write|strong=\"H3789\"* the|strong=\"H3117\"* name|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H3117\"* day|strong=\"H3117\"*, this|strong=\"H2088\"* same|strong=\"H6106\"* day|strong=\"H3117\"*. The|strong=\"H3117\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon drew|strong=\"H3117\"* close to|strong=\"H3117\"* Jerusalem|strong=\"H3389\"* this|strong=\"H2088\"* same|strong=\"H6106\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 3, + "text": "Utter|strong=\"H4911\"* a|strong=\"H3068\"* parable|strong=\"H4912\"* to|strong=\"H1004\"* the|strong=\"H3069\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* tell them, ‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 4, + "text": "Gather|strong=\"H4390\"* its|strong=\"H3605\"* pieces|strong=\"H5409\"* into it|strong=\"H2896\"*," + }, + { + "verseNum": 5, + "text": "Take|strong=\"H3947\"* the|strong=\"H3947\"* choice|strong=\"H4005\"* of|strong=\"H8432\"* the|strong=\"H3947\"* flock|strong=\"H6629\"*," + }, + { + "verseNum": 6, + "text": "“‘Therefore|strong=\"H3651\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 7, + "text": "“‘“For|strong=\"H3588\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* she|strong=\"H3588\"* shed|strong=\"H8210\"* is|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* her|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "That|strong=\"H5414\"* it|strong=\"H5414\"* may|strong=\"H5414\"* cause|strong=\"H5414\"* wrath|strong=\"H2534\"* to|strong=\"H5927\"* come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* take|strong=\"H5358\"* vengeance|strong=\"H5359\"*," + }, + { + "verseNum": 9, + "text": "“‘Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 10, + "text": "Heap|strong=\"H7235\"* on|strong=\"H7235\"* the|strong=\"H7235\"* wood|strong=\"H6086\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H4616\"* set|strong=\"H5975\"* it|strong=\"H5921\"* empty|strong=\"H7386\"* on|strong=\"H5921\"* its|strong=\"H5921\"* coals|strong=\"H1513\"*," + }, + { + "verseNum": 12, + "text": "She|strong=\"H3808\"* is|strong=\"H3808\"* weary|strong=\"H3811\"* with|strong=\"H3318\"* toil|strong=\"H8383\"*;" + }, + { + "verseNum": 13, + "text": "“‘“In|strong=\"H5750\"* your|strong=\"H3808\"* filthiness|strong=\"H2932\"* is|strong=\"H2932\"* lewdness|strong=\"H2154\"*. Because|strong=\"H3282\"* I|strong=\"H5704\"* have|strong=\"H3282\"* cleansed|strong=\"H2891\"* you|strong=\"H5704\"* and|strong=\"H5750\"* you|strong=\"H5704\"* weren’t cleansed|strong=\"H2891\"*, you|strong=\"H5704\"* won’t be|strong=\"H3808\"* cleansed|strong=\"H2891\"* from|strong=\"H5704\"* your|strong=\"H3808\"* filthiness|strong=\"H2932\"* any|strong=\"H5750\"* more|strong=\"H5750\"*, until|strong=\"H5704\"* I|strong=\"H5704\"* have|strong=\"H3282\"* caused my|strong=\"H5117\"* wrath|strong=\"H2534\"* toward|strong=\"H5704\"* you|strong=\"H5704\"* to|strong=\"H5704\"* rest|strong=\"H5117\"*." + }, + { + "verseNum": 14, + "text": "“‘“I|strong=\"H3808\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H6213\"*. It|strong=\"H6213\"* will|strong=\"H3068\"* happen|strong=\"H6213\"*, and|strong=\"H3068\"* I|strong=\"H3808\"* will|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H6213\"*. I|strong=\"H3808\"* won’t go|strong=\"H3068\"* back|strong=\"H6544\"*. I|strong=\"H3808\"* won’t spare|strong=\"H2347\"*. I|strong=\"H3808\"* won’t repent|strong=\"H5162\"*. According to|strong=\"H1696\"* your|strong=\"H3068\"* ways|strong=\"H1870\"* and|strong=\"H3068\"* according to|strong=\"H1696\"* your|strong=\"H3068\"* doings|strong=\"H5949\"*, they|strong=\"H3068\"* will|strong=\"H3068\"* judge|strong=\"H8199\"* you|strong=\"H6213\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 15, + "text": "Also|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 16, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H5869\"* take|strong=\"H3947\"* away|strong=\"H3947\"* from|strong=\"H4480\"* you|strong=\"H3947\"* the|strong=\"H3947\"* desire|strong=\"H4261\"* of|strong=\"H1121\"* your|strong=\"H3947\"* eyes|strong=\"H5869\"* with|strong=\"H5869\"* one|strong=\"H3808\"* stroke|strong=\"H4046\"*; yet|strong=\"H3808\"* you|strong=\"H3947\"* shall|strong=\"H1121\"* neither|strong=\"H3808\"* mourn|strong=\"H5594\"* nor|strong=\"H3808\"* weep|strong=\"H1058\"*, neither|strong=\"H3808\"* shall|strong=\"H1121\"* your|strong=\"H3947\"* tears|strong=\"H1832\"* run|strong=\"H1832\"* down." + }, + { + "verseNum": 17, + "text": "Sigh, but|strong=\"H3808\"* not|strong=\"H3808\"* aloud. Make|strong=\"H6213\"* no|strong=\"H3808\"* mourning for|strong=\"H5921\"* the|strong=\"H5921\"* dead|strong=\"H4191\"*. Bind|strong=\"H2280\"* your|strong=\"H5921\"* headdress on|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H3899\"* put|strong=\"H7760\"* your|strong=\"H5921\"* sandals|strong=\"H5275\"* on|strong=\"H5921\"* your|strong=\"H5921\"* feet|strong=\"H7272\"*. Don’t cover|strong=\"H5844\"* your|strong=\"H5921\"* lips|strong=\"H8222\"*, and|strong=\"H3899\"* don’t eat|strong=\"H3899\"* mourner’s bread|strong=\"H3899\"*.”" + }, + { + "verseNum": 18, + "text": "So|strong=\"H6213\"* I|strong=\"H6680\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H6213\"* people|strong=\"H5971\"* in|strong=\"H6213\"* the|strong=\"H6213\"* morning|strong=\"H1242\"*, and|strong=\"H5971\"* at|strong=\"H4191\"* evening|strong=\"H6153\"* my|strong=\"H6213\"* wife|strong=\"H1696\"* died|strong=\"H4191\"*. So|strong=\"H6213\"* I|strong=\"H6680\"* did|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H6213\"* morning|strong=\"H1242\"* as|strong=\"H6213\"* I|strong=\"H6680\"* was|strong=\"H6213\"* commanded|strong=\"H6680\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H3588\"* people|strong=\"H5971\"* asked|strong=\"H4100\"* me|strong=\"H5046\"*, “Won’t you|strong=\"H3588\"* tell|strong=\"H5046\"* us|strong=\"H5046\"* what|strong=\"H4100\"* these|strong=\"H6213\"* things|strong=\"H3808\"* mean to|strong=\"H6213\"* us|strong=\"H5046\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* act|strong=\"H6213\"* like|strong=\"H3808\"* this|strong=\"H6213\"*?”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H1961\"* I|strong=\"H1697\"* said|strong=\"H1697\"* to|strong=\"H3068\"* them|strong=\"H1961\"*, “Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 21, + "text": "‘Speak to|strong=\"H3478\"* the|strong=\"H3069\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3478\"* profane|strong=\"H2490\"* my|strong=\"H2490\"* sanctuary|strong=\"H4720\"*, the|strong=\"H3069\"* pride|strong=\"H1347\"* of|strong=\"H1121\"* your|strong=\"H5800\"* power|strong=\"H5797\"*, the|strong=\"H3069\"* desire|strong=\"H5315\"* of|strong=\"H1121\"* your|strong=\"H5800\"* eyes|strong=\"H5869\"*, and|strong=\"H1121\"* that|strong=\"H5315\"* which|strong=\"H1004\"* your|strong=\"H5800\"* soul|strong=\"H5315\"* pities; and|strong=\"H1121\"* your|strong=\"H5800\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H5800\"* daughters|strong=\"H1323\"* whom|strong=\"H5869\"* you|strong=\"H5800\"* have|strong=\"H5869\"* left|strong=\"H5800\"* behind|strong=\"H5800\"* will|strong=\"H3478\"* fall|strong=\"H5307\"* by|strong=\"H3478\"* the|strong=\"H3069\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H5921\"* will|strong=\"H3808\"* do|strong=\"H6213\"* as|strong=\"H6213\"* I|strong=\"H5921\"* have|strong=\"H3808\"* done|strong=\"H6213\"*. You|strong=\"H5921\"* won’t cover|strong=\"H5844\"* your|strong=\"H5921\"* lips|strong=\"H8222\"* or|strong=\"H3808\"* eat|strong=\"H3899\"* mourner’s bread|strong=\"H3899\"*." + }, + { + "verseNum": 23, + "text": "Your|strong=\"H5921\"* turbans|strong=\"H6287\"* will|strong=\"H3808\"* be|strong=\"H3808\"* on|strong=\"H5921\"* your|strong=\"H5921\"* heads|strong=\"H7218\"*, and|strong=\"H7218\"* your|strong=\"H5921\"* sandals|strong=\"H5275\"* on|strong=\"H5921\"* your|strong=\"H5921\"* feet|strong=\"H7272\"*. You|strong=\"H5921\"* won’t mourn|strong=\"H5594\"* or|strong=\"H3808\"* weep|strong=\"H1058\"*; but|strong=\"H3808\"* you|strong=\"H5921\"* will|strong=\"H3808\"* pine away|strong=\"H4743\"* in|strong=\"H5921\"* your|strong=\"H5921\"* iniquities|strong=\"H5771\"*, and|strong=\"H7218\"* moan one|strong=\"H3808\"* toward|strong=\"H5921\"* another|strong=\"H3808\"*." + }, + { + "verseNum": 24, + "text": "Thus|strong=\"H1961\"* Ezekiel|strong=\"H3168\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* sign|strong=\"H4159\"* to|strong=\"H1961\"* you|strong=\"H3588\"*; according to|strong=\"H1961\"* all|strong=\"H3605\"* that|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H1961\"* done|strong=\"H6213\"*, you|strong=\"H3588\"* will|strong=\"H1961\"* do|strong=\"H6213\"*. When|strong=\"H3588\"* this|strong=\"H6213\"* comes|strong=\"H1961\"*, then|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H1961\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.’”’”" + }, + { + "verseNum": 25, + "text": "“You|strong=\"H3117\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, shouldn’t it|strong=\"H3117\"* be|strong=\"H3808\"* in|strong=\"H3117\"* the|strong=\"H3947\"* day|strong=\"H3117\"* when|strong=\"H3117\"* I|strong=\"H3117\"* take|strong=\"H3947\"* from|strong=\"H5315\"* them|strong=\"H1992\"* their|strong=\"H3947\"* strength|strong=\"H4581\"*, the|strong=\"H3947\"* joy|strong=\"H4885\"* of|strong=\"H1121\"* their|strong=\"H3947\"* glory|strong=\"H8597\"*, the|strong=\"H3947\"* desire|strong=\"H5315\"* of|strong=\"H1121\"* their|strong=\"H3947\"* eyes|strong=\"H5869\"*, and|strong=\"H1121\"* that|strong=\"H3117\"* whereupon they|strong=\"H1992\"* set|strong=\"H4853\"* their|strong=\"H3947\"* heart|strong=\"H5315\"*—their|strong=\"H3947\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H3947\"* daughters|strong=\"H1323\"*—" + }, + { + "verseNum": 26, + "text": "that|strong=\"H3117\"* in|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* he|strong=\"H1931\"* who|strong=\"H1931\"* escapes|strong=\"H6412\"* will|strong=\"H1931\"* come to|strong=\"H3117\"* you|strong=\"H3117\"*, to|strong=\"H3117\"* cause you|strong=\"H3117\"* to|strong=\"H3117\"* hear|strong=\"H2045\"* it|strong=\"H1931\"* with|strong=\"H3117\"* your|strong=\"H3117\"* ears?" + }, + { + "verseNum": 27, + "text": "In|strong=\"H3068\"* that|strong=\"H3588\"* day|strong=\"H3117\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"* will|strong=\"H3068\"* be|strong=\"H1961\"* opened|strong=\"H6605\"* to|strong=\"H1696\"* him|strong=\"H1931\"* who|strong=\"H1931\"* has|strong=\"H3068\"* escaped|strong=\"H6412\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* speak|strong=\"H1696\"* and|strong=\"H3068\"* be|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* mute. So|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* sign|strong=\"H4159\"* to|strong=\"H1696\"* them|strong=\"H1961\"*. Then|strong=\"H1961\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, set|strong=\"H7760\"* your|strong=\"H5921\"* face|strong=\"H6440\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* prophesy|strong=\"H5012\"* against|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "Tell|strong=\"H8085\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, ‘Hear|strong=\"H8085\"* the|strong=\"H8085\"* word|strong=\"H1697\"* of|strong=\"H1121\"* the|strong=\"H8085\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*! The|strong=\"H8085\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Because|strong=\"H3588\"* you|strong=\"H3588\"* said|strong=\"H1697\"*, ‘Aha|strong=\"H1889\"*!’ against|strong=\"H1697\"* my|strong=\"H8085\"* sanctuary|strong=\"H4720\"* when|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3478\"* profaned|strong=\"H2490\"*, and|strong=\"H1121\"* against|strong=\"H1697\"* the|strong=\"H8085\"* land of|strong=\"H1121\"* Israel|strong=\"H3478\"* when|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3478\"* made|strong=\"H8074\"* desolate|strong=\"H8074\"*, and|strong=\"H1121\"* against|strong=\"H1697\"* the|strong=\"H8085\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* when|strong=\"H3588\"* they|strong=\"H3588\"* went|strong=\"H1980\"* into|strong=\"H1980\"* captivity|strong=\"H1473\"*," + }, + { + "verseNum": 4, + "text": "therefore|strong=\"H3651\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H1121\"* deliver|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5414\"* east|strong=\"H6924\"* for|strong=\"H3427\"* a|strong=\"H3068\"* possession|strong=\"H4181\"*. They|strong=\"H1992\"* will|strong=\"H1121\"* set|strong=\"H5414\"* their|strong=\"H5414\"* encampments|strong=\"H2918\"* in|strong=\"H3427\"* you|strong=\"H5414\"* and|strong=\"H1121\"* make|strong=\"H5414\"* their|strong=\"H5414\"* dwellings|strong=\"H4908\"* in|strong=\"H3427\"* you|strong=\"H5414\"*. They|strong=\"H1992\"* will|strong=\"H1121\"* eat your|strong=\"H5414\"* fruit|strong=\"H6529\"* and|strong=\"H1121\"* they|strong=\"H1992\"* will|strong=\"H1121\"* drink|strong=\"H8354\"* your|strong=\"H5414\"* milk|strong=\"H2461\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H5414\"* Rabbah|strong=\"H7237\"* a|strong=\"H3068\"* stable|strong=\"H5116\"* for|strong=\"H3588\"* camels|strong=\"H1581\"* and|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* a|strong=\"H3068\"* resting|strong=\"H4769\"* place|strong=\"H5414\"* for|strong=\"H3588\"* flocks|strong=\"H6629\"*. Then|strong=\"H5414\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3478\"* clapped|strong=\"H4222\"* your|strong=\"H3605\"* hands|strong=\"H3027\"*, stamped|strong=\"H7554\"* with|strong=\"H3027\"* the|strong=\"H3605\"* feet|strong=\"H7272\"*, and|strong=\"H3478\"* rejoiced|strong=\"H8055\"* with|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* contempt|strong=\"H5315\"* of|strong=\"H3027\"* your|strong=\"H3605\"* soul|strong=\"H5315\"* against|strong=\"H3027\"* the|strong=\"H3605\"* land of|strong=\"H3027\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 7, + "text": "therefore|strong=\"H3651\"*, behold|strong=\"H2005\"*, I|strong=\"H3588\"* have|strong=\"H3068\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* my|strong=\"H5414\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* you|strong=\"H3588\"* for|strong=\"H3588\"* a|strong=\"H3068\"* plunder to|strong=\"H3068\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* cut|strong=\"H3772\"* you|strong=\"H3588\"* off|strong=\"H3772\"* from|strong=\"H4480\"* the|strong=\"H5921\"* peoples|strong=\"H5971\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* cause|strong=\"H5414\"* you|strong=\"H3588\"* to|strong=\"H3068\"* perish|strong=\"H3772\"* out|strong=\"H5186\"* of|strong=\"H3068\"* the|strong=\"H5921\"* countries. I|strong=\"H3588\"* will|strong=\"H3068\"* destroy|strong=\"H8045\"* you|strong=\"H3588\"*. Then|strong=\"H3651\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 8, + "text": "“‘The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Because|strong=\"H3282\"* Moab|strong=\"H4124\"* and|strong=\"H3063\"* Seir|strong=\"H8165\"* say, ‘Behold|strong=\"H2009\"*, the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* is|strong=\"H2009\"* like|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*,’" + }, + { + "verseNum": 9, + "text": "therefore|strong=\"H3651\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H5892\"* open|strong=\"H6605\"* the|strong=\"H3651\"* side|strong=\"H3802\"* of|strong=\"H5892\"* Moab|strong=\"H4124\"* from|strong=\"H5892\"* the|strong=\"H3651\"* cities|strong=\"H5892\"*, from|strong=\"H5892\"* his|strong=\"H6605\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* are|strong=\"H5892\"* on|strong=\"H5892\"* its|strong=\"H6605\"* frontiers|strong=\"H7097\"*, the|strong=\"H3651\"* glory|strong=\"H6643\"* of|strong=\"H5892\"* the|strong=\"H3651\"* country, Beth Jeshimoth, Baal Meon, and|strong=\"H5892\"* Kiriathaim|strong=\"H7156\"*," + }, + { + "verseNum": 10, + "text": "to|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* east|strong=\"H6924\"*, to|strong=\"H5921\"* go against|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*; and|strong=\"H1121\"* I|strong=\"H5414\"* will|strong=\"H1471\"* give|strong=\"H5414\"* them|strong=\"H5414\"* for|strong=\"H5921\"* a|strong=\"H3068\"* possession|strong=\"H4181\"*, that|strong=\"H1471\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* may|strong=\"H1471\"* not|strong=\"H3808\"* be|strong=\"H3808\"* remembered|strong=\"H2142\"* among|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* execute|strong=\"H6213\"* judgments|strong=\"H8201\"* on|strong=\"H3068\"* Moab|strong=\"H4124\"*. Then|strong=\"H6213\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 12, + "text": "“‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Because|strong=\"H3282\"* Edom has|strong=\"H3063\"* dealt|strong=\"H6213\"* against|strong=\"H6213\"* the|strong=\"H3069\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* by|strong=\"H6213\"* taking|strong=\"H5358\"* vengeance|strong=\"H5359\"*, and|strong=\"H3063\"* has|strong=\"H3063\"* greatly offended, and|strong=\"H3063\"* taken|strong=\"H5358\"* revenge|strong=\"H5358\"* on|strong=\"H1004\"* them|strong=\"H6213\"*,”" + }, + { + "verseNum": 13, + "text": "therefore|strong=\"H3651\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “I|strong=\"H5414\"* will|strong=\"H2719\"* stretch|strong=\"H5186\"* out|strong=\"H5186\"* my|strong=\"H5414\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* Edom, and|strong=\"H3027\"* will|strong=\"H2719\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* man|strong=\"H5307\"* and|strong=\"H3027\"* animal from|strong=\"H4480\"* it|strong=\"H5414\"*; and|strong=\"H3027\"* I|strong=\"H5414\"* will|strong=\"H2719\"* make|strong=\"H5414\"* it|strong=\"H5414\"* desolate|strong=\"H2723\"* from|strong=\"H4480\"* Teman|strong=\"H8487\"*. They|strong=\"H3651\"* will|strong=\"H2719\"* fall|strong=\"H5307\"* by|strong=\"H3027\"* the|strong=\"H5921\"* sword|strong=\"H2719\"* even|strong=\"H3651\"* to|strong=\"H5921\"* Dedan|strong=\"H1719\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H5414\"* will|strong=\"H5971\"* lay|strong=\"H5414\"* my|strong=\"H5414\"* vengeance|strong=\"H5360\"* on|strong=\"H3027\"* Edom by|strong=\"H3027\"* the|strong=\"H5002\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* my|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*. They|strong=\"H6213\"* will|strong=\"H5971\"* do|strong=\"H6213\"* in|strong=\"H3478\"* Edom according|strong=\"H3027\"* to|strong=\"H3478\"* my|strong=\"H5414\"* anger|strong=\"H2534\"* and|strong=\"H3478\"* according|strong=\"H3027\"* to|strong=\"H3478\"* my|strong=\"H5414\"* wrath|strong=\"H2534\"*. Then|strong=\"H5414\"* they|strong=\"H6213\"* will|strong=\"H5971\"* know|strong=\"H3045\"* my|strong=\"H5414\"* vengeance|strong=\"H5360\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "“‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Because|strong=\"H3282\"* the|strong=\"H3069\"* Philistines|strong=\"H6430\"* have|strong=\"H6430\"* taken|strong=\"H5358\"* revenge|strong=\"H5360\"*, and|strong=\"H5769\"* have|strong=\"H6430\"* taken|strong=\"H5358\"* vengeance|strong=\"H5360\"* with|strong=\"H6213\"* contempt|strong=\"H5315\"* of|strong=\"H5315\"* soul|strong=\"H5315\"* to|strong=\"H6213\"* destroy|strong=\"H4889\"* with|strong=\"H6213\"* perpetual|strong=\"H5769\"* hostility,”" + }, + { + "verseNum": 16, + "text": "therefore|strong=\"H3651\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3027\"* stretch|strong=\"H5186\"* out|strong=\"H5186\"* my|strong=\"H5921\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"*, and|strong=\"H3027\"* I|strong=\"H2005\"* will|strong=\"H3027\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H5921\"* Cherethites|strong=\"H3774\"*, and|strong=\"H3027\"* destroy|strong=\"H3772\"* the|strong=\"H5921\"* remnant|strong=\"H7611\"* of|strong=\"H3027\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* coast|strong=\"H3027\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* execute|strong=\"H6213\"* great|strong=\"H1419\"* vengeance|strong=\"H5360\"* on|strong=\"H3068\"* them|strong=\"H5414\"* with|strong=\"H3068\"* wrathful|strong=\"H2534\"* rebukes|strong=\"H8433\"*. Then|strong=\"H5414\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, when|strong=\"H3588\"* I|strong=\"H3588\"* lay|strong=\"H5414\"* my|strong=\"H5414\"* vengeance|strong=\"H5360\"* on|strong=\"H3068\"* them|strong=\"H5414\"*.”’”" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* eleventh|strong=\"H6249\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* first of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, because|strong=\"H5921\"* Tyre|strong=\"H6865\"* has|strong=\"H3389\"* said against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, ‘Aha|strong=\"H1889\"*! She|strong=\"H5921\"* is|strong=\"H1121\"* broken|strong=\"H7665\"*! She|strong=\"H5921\"* who|strong=\"H5971\"* was|strong=\"H1121\"* the|strong=\"H5921\"* gateway|strong=\"H1817\"* of|strong=\"H1121\"* the|strong=\"H5921\"* peoples|strong=\"H5971\"* has|strong=\"H3389\"* been|strong=\"H5971\"* returned|strong=\"H5437\"* to|strong=\"H5921\"* me|strong=\"H5921\"*. I|strong=\"H5921\"* will|strong=\"H5971\"* be|strong=\"H1121\"* replenished|strong=\"H4390\"*, now|strong=\"H5921\"* that|strong=\"H5971\"* she|strong=\"H5921\"* is|strong=\"H1121\"* laid|strong=\"H2717\"* waste|strong=\"H2717\"*;’" + }, + { + "verseNum": 3, + "text": "therefore|strong=\"H3651\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, Tyre|strong=\"H6865\"*, and|strong=\"H1471\"* will|strong=\"H1471\"* cause|strong=\"H3651\"* many|strong=\"H7227\"* nations|strong=\"H1471\"* to|strong=\"H5927\"* come|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, as|strong=\"H3651\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* causes its|strong=\"H5921\"* waves|strong=\"H1530\"* to|strong=\"H5927\"* come|strong=\"H5927\"* up|strong=\"H5927\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H5414\"* will|strong=\"H5414\"* destroy|strong=\"H7843\"* the|strong=\"H5414\"* walls|strong=\"H2346\"* of|strong=\"H2346\"* Tyre|strong=\"H6865\"*, and|strong=\"H6083\"* break|strong=\"H2040\"* down|strong=\"H2040\"* her|strong=\"H5414\"* towers|strong=\"H4026\"*. I|strong=\"H5414\"* will|strong=\"H5414\"* also scrape|strong=\"H5500\"* her|strong=\"H5414\"* dust|strong=\"H6083\"* from|strong=\"H4480\"* her|strong=\"H5414\"*, and|strong=\"H6083\"* make|strong=\"H5414\"* her|strong=\"H5414\"* a|strong=\"H3068\"* bare|strong=\"H6706\"* rock|strong=\"H5553\"*." + }, + { + "verseNum": 5, + "text": "She|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* place|strong=\"H1961\"* for|strong=\"H3588\"* the|strong=\"H5002\"* spreading|strong=\"H4894\"* of|strong=\"H8432\"* nets|strong=\"H2764\"* in|strong=\"H8432\"* the|strong=\"H5002\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H5002\"* sea|strong=\"H3220\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"* it|strong=\"H3588\"*,’ says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*. ‘She|strong=\"H3588\"* will|strong=\"H1961\"* become|strong=\"H1961\"* plunder for|strong=\"H3588\"* the|strong=\"H5002\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 6, + "text": "Her|strong=\"H3045\"* daughters|strong=\"H1323\"* who|strong=\"H3068\"* are|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3588\"* field|strong=\"H7704\"* will|strong=\"H3068\"* be|strong=\"H3068\"* slain|strong=\"H2026\"* with|strong=\"H3068\"* the|strong=\"H3588\"* sword|strong=\"H2719\"*. Then|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’" + }, + { + "verseNum": 7, + "text": "“For|strong=\"H3588\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H4428\"* bring on|strong=\"H3069\"* Tyre|strong=\"H6865\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, king|strong=\"H4428\"* of|strong=\"H4428\"* kings|strong=\"H4428\"*, from|strong=\"H5971\"* the|strong=\"H3588\"* north|strong=\"H6828\"*, with|strong=\"H5971\"* horses|strong=\"H5483\"*, with|strong=\"H5971\"* chariots|strong=\"H7393\"*, with|strong=\"H5971\"* horsemen|strong=\"H6571\"*, and|strong=\"H4428\"* an|strong=\"H3588\"* army|strong=\"H5971\"* with|strong=\"H5971\"* many|strong=\"H7227\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H5414\"* will|strong=\"H2719\"* kill|strong=\"H2026\"* your|strong=\"H5414\"* daughters|strong=\"H1323\"* in|strong=\"H5921\"* the|strong=\"H5921\"* field|strong=\"H7704\"* with|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*. He|strong=\"H5414\"* will|strong=\"H2719\"* make|strong=\"H5414\"* forts|strong=\"H1785\"* against|strong=\"H5921\"* you|strong=\"H5414\"*, cast|strong=\"H8210\"* up|strong=\"H6965\"* a|strong=\"H3068\"* mound against|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H6965\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H5921\"* buckler|strong=\"H6793\"* against|strong=\"H5921\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H5414\"* will|strong=\"H2719\"* set|strong=\"H5414\"* his|strong=\"H5414\"* battering|strong=\"H6904\"* engines|strong=\"H4239\"* against|strong=\"H2719\"* your|strong=\"H5414\"* walls|strong=\"H2346\"*, and|strong=\"H2719\"* with|strong=\"H2719\"* his|strong=\"H5414\"* axes|strong=\"H2719\"* he|strong=\"H5414\"* will|strong=\"H2719\"* break|strong=\"H5422\"* down|strong=\"H5422\"* your|strong=\"H5414\"* towers|strong=\"H4026\"*." + }, + { + "verseNum": 10, + "text": "By|strong=\"H5892\"* reason of|strong=\"H5892\"* the|strong=\"H3680\"* abundance|strong=\"H8229\"* of|strong=\"H5892\"* his|strong=\"H3680\"* horses|strong=\"H5483\"*, their|strong=\"H3680\"* dust|strong=\"H1534\"* will|strong=\"H5892\"* cover|strong=\"H3680\"* you|strong=\"H6963\"*. Your|strong=\"H3680\"* walls|strong=\"H2346\"* will|strong=\"H5892\"* shake|strong=\"H7493\"* at|strong=\"H5892\"* the|strong=\"H3680\"* noise|strong=\"H6963\"* of|strong=\"H5892\"* the|strong=\"H3680\"* horsemen|strong=\"H6571\"*, of|strong=\"H5892\"* the|strong=\"H3680\"* wagons|strong=\"H1534\"*, and|strong=\"H6963\"* of|strong=\"H5892\"* the|strong=\"H3680\"* chariots|strong=\"H7393\"*, when|strong=\"H6963\"* he|strong=\"H5892\"* enters into|strong=\"H5892\"* your|strong=\"H3680\"* gates|strong=\"H8179\"*, as|strong=\"H5892\"* men enter|strong=\"H3996\"* into|strong=\"H5892\"* a|strong=\"H3068\"* city|strong=\"H5892\"* which|strong=\"H5892\"* is|strong=\"H5892\"* broken|strong=\"H1234\"* open|strong=\"H1234\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3605\"* will|strong=\"H5971\"* tread|strong=\"H7429\"* down|strong=\"H3381\"* all|strong=\"H3605\"* your|strong=\"H3605\"* streets|strong=\"H2351\"* with|strong=\"H3381\"* the|strong=\"H3605\"* hoofs|strong=\"H6541\"* of|strong=\"H5971\"* his|strong=\"H3605\"* horses|strong=\"H5483\"*. He|strong=\"H3605\"* will|strong=\"H5971\"* kill|strong=\"H2026\"* your|strong=\"H3605\"* people|strong=\"H5971\"* with|strong=\"H3381\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*. The|strong=\"H3605\"* pillars|strong=\"H4676\"* of|strong=\"H5971\"* your|strong=\"H3605\"* strength|strong=\"H5797\"* will|strong=\"H5971\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3605\"* ground." + }, + { + "verseNum": 12, + "text": "They|strong=\"H7997\"* will|strong=\"H1004\"* make|strong=\"H7760\"* a|strong=\"H3068\"* plunder|strong=\"H7997\"* of|strong=\"H1004\"* your|strong=\"H7760\"* riches|strong=\"H2428\"* and|strong=\"H1004\"* make|strong=\"H7760\"* a|strong=\"H3068\"* prey|strong=\"H7997\"* of|strong=\"H1004\"* your|strong=\"H7760\"* merchandise|strong=\"H7404\"*. They|strong=\"H7997\"* will|strong=\"H1004\"* break|strong=\"H2040\"* down|strong=\"H5422\"* your|strong=\"H7760\"* walls|strong=\"H2346\"* and|strong=\"H1004\"* destroy|strong=\"H5422\"* your|strong=\"H7760\"* pleasant|strong=\"H2532\"* houses|strong=\"H1004\"*. They|strong=\"H7997\"* will|strong=\"H1004\"* lay|strong=\"H7760\"* your|strong=\"H7760\"* stones, your|strong=\"H7760\"* timber|strong=\"H6086\"*, and|strong=\"H1004\"* your|strong=\"H7760\"* dust|strong=\"H6083\"* in|strong=\"H1004\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H1004\"* the|strong=\"H8432\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H3808\"* will|strong=\"H3808\"* cause the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* your|strong=\"H8085\"* songs|strong=\"H7892\"* to|strong=\"H8085\"* cease|strong=\"H7673\"*. The|strong=\"H8085\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* your|strong=\"H8085\"* harps|strong=\"H3658\"* won’t be|strong=\"H3808\"* heard|strong=\"H8085\"* any|strong=\"H5750\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H5414\"* you|strong=\"H3588\"* a|strong=\"H3068\"* bare|strong=\"H6706\"* rock|strong=\"H5553\"*. You|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* place|strong=\"H5414\"* for|strong=\"H3588\"* the|strong=\"H5002\"* spreading|strong=\"H4894\"* of|strong=\"H3068\"* nets|strong=\"H2764\"*. You|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* built|strong=\"H1129\"* no|strong=\"H3808\"* more|strong=\"H5750\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* Yahweh|strong=\"H3068\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"* it|strong=\"H5414\"*,’ says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "“The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3808\"* Tyre|strong=\"H6865\"*: ‘Won’t the|strong=\"H3069\"* islands shake|strong=\"H7493\"* at|strong=\"H3808\"* the|strong=\"H3069\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* your|strong=\"H3808\"* fall|strong=\"H4658\"*, when|strong=\"H6963\"* the|strong=\"H3069\"* wounded|strong=\"H2491\"* groan, when|strong=\"H6963\"* the|strong=\"H3069\"* slaughter|strong=\"H2027\"* is|strong=\"H6963\"* made|strong=\"H2026\"* within|strong=\"H8432\"* you|strong=\"H3808\"*?" + }, + { + "verseNum": 16, + "text": "Then|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H5387\"* of|strong=\"H3427\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* will|strong=\"H3220\"* come|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H5493\"* their|strong=\"H3605\"* thrones|strong=\"H3678\"*, and|strong=\"H3381\"* lay aside|strong=\"H5493\"* their|strong=\"H3605\"* robes|strong=\"H4598\"*, and|strong=\"H3381\"* strip|strong=\"H6584\"* off|strong=\"H6584\"* their|strong=\"H3605\"* embroidered|strong=\"H7553\"* garments. They|strong=\"H5921\"* will|strong=\"H3220\"* clothe|strong=\"H3847\"* themselves|strong=\"H5921\"* with|strong=\"H3847\"* trembling|strong=\"H2731\"*. They|strong=\"H5921\"* will|strong=\"H3220\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H3605\"* ground, and|strong=\"H3381\"* will|strong=\"H3220\"* tremble|strong=\"H2729\"* every|strong=\"H3605\"* moment|strong=\"H7281\"*, and|strong=\"H3381\"* be|strong=\"H3220\"* astonished|strong=\"H8074\"* at|strong=\"H3427\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H5921\"* will|strong=\"H1961\"* take|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* lamentation|strong=\"H7015\"* over|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H5892\"* tell|strong=\"H3605\"* you|strong=\"H5414\"*," + }, + { + "verseNum": 18, + "text": "Now|strong=\"H6258\"* the|strong=\"H3117\"* islands will|strong=\"H3117\"* tremble|strong=\"H2729\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H3318\"* fall|strong=\"H4658\"*." + }, + { + "verseNum": 19, + "text": "“For|strong=\"H3588\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘When|strong=\"H3588\"* I|strong=\"H3588\"* make|strong=\"H5414\"* you|strong=\"H3588\"* a|strong=\"H3068\"* desolate|strong=\"H2717\"* city|strong=\"H5892\"*, like|strong=\"H3808\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* that|strong=\"H3588\"* are|strong=\"H5892\"* not|strong=\"H3808\"* inhabited|strong=\"H3427\"*, when|strong=\"H3588\"* I|strong=\"H3588\"* bring|strong=\"H5927\"* up|strong=\"H5927\"* the|strong=\"H5921\"* deep|strong=\"H8415\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H5892\"* the|strong=\"H5921\"* great|strong=\"H7227\"* waters|strong=\"H4325\"* cover|strong=\"H3680\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 20, + "text": "then|strong=\"H4616\"* I|strong=\"H5414\"* will|strong=\"H5971\"* bring|strong=\"H3381\"* you|strong=\"H5414\"* down|strong=\"H3381\"* with|strong=\"H3427\"* those|strong=\"H3427\"* who|strong=\"H5971\"* descend|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H5414\"* pit, to|strong=\"H3381\"* the|strong=\"H5414\"* people|strong=\"H5971\"* of|strong=\"H3427\"* old|strong=\"H5769\"* time|strong=\"H5769\"*, and|strong=\"H5971\"* will|strong=\"H5971\"* make|strong=\"H5414\"* you|strong=\"H5414\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5414\"* lower|strong=\"H8482\"* parts|strong=\"H8482\"* of|strong=\"H3427\"* the|strong=\"H5414\"* earth, in|strong=\"H3427\"* the|strong=\"H5414\"* places|strong=\"H2723\"* that|strong=\"H5971\"* are|strong=\"H5971\"* desolate|strong=\"H2723\"* of|strong=\"H3427\"* old|strong=\"H5769\"*, with|strong=\"H3427\"* those|strong=\"H3427\"* who|strong=\"H5971\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H5414\"* pit, that|strong=\"H5971\"* you|strong=\"H5414\"* be|strong=\"H3808\"* not|strong=\"H3808\"* inhabited|strong=\"H3427\"*; and|strong=\"H5971\"* I|strong=\"H5414\"* will|strong=\"H5971\"* set|strong=\"H5414\"* glory|strong=\"H6643\"* in|strong=\"H3427\"* the|strong=\"H5414\"* land of|strong=\"H3427\"* the|strong=\"H5414\"* living|strong=\"H2416\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* make|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* terror|strong=\"H1091\"*, and|strong=\"H5769\"* you|strong=\"H5414\"* will|strong=\"H5414\"* no|strong=\"H3808\"* more|strong=\"H5750\"* have|strong=\"H4672\"* any|strong=\"H5750\"* being|strong=\"H5750\"*. Though you|strong=\"H5414\"* are|strong=\"H1091\"* sought|strong=\"H1245\"* for|strong=\"H1245\"*, yet|strong=\"H5750\"* you|strong=\"H5414\"* will|strong=\"H5414\"* never|strong=\"H3808\"* be|strong=\"H3808\"* found|strong=\"H4672\"* again|strong=\"H5750\"*,’ says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* again|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“You|strong=\"H5921\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, take|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* lamentation|strong=\"H7015\"* over|strong=\"H5921\"* Tyre|strong=\"H6865\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H5971\"* tell Tyre|strong=\"H6865\"*, ‘You|strong=\"H5921\"* who|strong=\"H5971\"* dwell|strong=\"H3427\"* at|strong=\"H3427\"* the|strong=\"H5921\"* entry|strong=\"H3997\"* of|strong=\"H3427\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*, who|strong=\"H5971\"* are|strong=\"H5971\"* the|strong=\"H5921\"* merchant|strong=\"H7402\"* of|strong=\"H3427\"* the|strong=\"H5921\"* peoples|strong=\"H5971\"* to|strong=\"H5921\"* many|strong=\"H7227\"* islands, the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 4, + "text": "Your|strong=\"H1129\"* borders|strong=\"H1366\"* are|strong=\"H3820\"* in|strong=\"H1129\"* the|strong=\"H1129\"* heart|strong=\"H3820\"* of|strong=\"H1366\"* the|strong=\"H1129\"* seas|strong=\"H3220\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H5921\"* have|strong=\"H1129\"* made|strong=\"H6213\"* all|strong=\"H3605\"* your|strong=\"H3605\"* planks|strong=\"H3871\"* of|strong=\"H5921\"* cypress|strong=\"H1265\"* trees|strong=\"H1265\"* from|strong=\"H5921\"* Senir|strong=\"H8149\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H6213\"* have|strong=\"H1323\"* made|strong=\"H6213\"* your|strong=\"H6213\"* oars|strong=\"H4880\"* of|strong=\"H1323\"* the|strong=\"H6213\"* oaks of|strong=\"H1323\"* Bashan|strong=\"H1316\"*." + }, + { + "verseNum": 7, + "text": "Your|strong=\"H1961\"* sail|strong=\"H5251\"* was|strong=\"H1961\"* of|strong=\"H4714\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"* with|strong=\"H4714\"* embroidered|strong=\"H7553\"* work|strong=\"H7553\"* from|strong=\"H1961\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H1961\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Sidon|strong=\"H6721\"* and|strong=\"H3427\"* Arvad were|strong=\"H1961\"* your|strong=\"H1961\"* rowers|strong=\"H7751\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3605\"* old|strong=\"H2205\"* men|strong=\"H2450\"* of|strong=\"H2205\"* Gebal|strong=\"H1380\"*" + }, + { + "verseNum": 10, + "text": "“‘“Persia|strong=\"H6539\"*, Lud|strong=\"H3865\"*, and|strong=\"H4043\"* Put|strong=\"H5414\"* were|strong=\"H1961\"* in|strong=\"H4421\"* your|strong=\"H5414\"* army|strong=\"H2428\"*," + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Arvad with|strong=\"H5921\"* your|strong=\"H5921\"* army|strong=\"H2428\"* were|strong=\"H1961\"* on|strong=\"H5921\"* your|strong=\"H5921\"* walls|strong=\"H2346\"* all|strong=\"H5439\"* around|strong=\"H5439\"*," + }, + { + "verseNum": 12, + "text": "“‘“Tarshish|strong=\"H8659\"* was|strong=\"H5414\"* your|strong=\"H3605\"* merchant|strong=\"H5503\"* by|strong=\"H5414\"* reason of|strong=\"H7230\"* the|strong=\"H3605\"* multitude|strong=\"H7230\"* of|strong=\"H7230\"* all|strong=\"H3605\"* kinds|strong=\"H1952\"* of|strong=\"H7230\"* riches|strong=\"H1952\"*. They|strong=\"H3605\"* traded|strong=\"H5414\"* for|strong=\"H3605\"* your|strong=\"H3605\"* wares|strong=\"H5801\"* with|strong=\"H5801\"* silver|strong=\"H3701\"*, iron|strong=\"H1270\"*, tin, and|strong=\"H3701\"* lead|strong=\"H5777\"*." + }, + { + "verseNum": 13, + "text": "“‘“Javan|strong=\"H3120\"*, Tubal|strong=\"H8422\"*, and|strong=\"H5178\"* Meshech|strong=\"H4902\"* were|strong=\"H1992\"* your|strong=\"H5414\"* traders|strong=\"H7402\"*. They|strong=\"H1992\"* traded|strong=\"H7402\"* the|strong=\"H5414\"* persons|strong=\"H5315\"* of|strong=\"H3627\"* men|strong=\"H1992\"* and|strong=\"H5178\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* bronze|strong=\"H5178\"* for|strong=\"H3627\"* your|strong=\"H5414\"* merchandise|strong=\"H4627\"*." + }, + { + "verseNum": 14, + "text": "“‘“They|strong=\"H5414\"* of|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Togarmah|strong=\"H8425\"* traded|strong=\"H5414\"* for|strong=\"H1004\"* your|strong=\"H5414\"* wares|strong=\"H5801\"* with|strong=\"H1004\"* horses|strong=\"H5483\"*, war|strong=\"H6571\"* horses|strong=\"H5483\"*, and|strong=\"H1004\"* mules|strong=\"H6505\"*." + }, + { + "verseNum": 15, + "text": "“‘“The|strong=\"H7725\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Dedan|strong=\"H1719\"* traded|strong=\"H7402\"* with|strong=\"H3027\"* you|strong=\"H7725\"*. Many|strong=\"H7227\"* islands were|strong=\"H1121\"* the|strong=\"H7725\"* market|strong=\"H5506\"* of|strong=\"H1121\"* your|strong=\"H7725\"* hand|strong=\"H3027\"*. They|strong=\"H3027\"* brought|strong=\"H7725\"* you|strong=\"H7725\"* horns|strong=\"H7161\"* of|strong=\"H1121\"* ivory|strong=\"H8127\"* and|strong=\"H1121\"* ebony|strong=\"H1894\"* in|strong=\"H7227\"* exchange." + }, + { + "verseNum": 16, + "text": "“‘“Syria was|strong=\"H5414\"* your|strong=\"H5414\"* merchant|strong=\"H5503\"* by|strong=\"H5414\"* reason of|strong=\"H7230\"* the|strong=\"H5414\"* multitude|strong=\"H7230\"* of|strong=\"H7230\"* your|strong=\"H5414\"* handiworks. They|strong=\"H5414\"* traded|strong=\"H5414\"* for|strong=\"H5414\"* your|strong=\"H5414\"* wares|strong=\"H5801\"* with|strong=\"H5801\"* emeralds|strong=\"H5306\"*, purple, embroidered|strong=\"H7553\"* work|strong=\"H4639\"*, fine linen, coral|strong=\"H7215\"*, and|strong=\"H4639\"* rubies|strong=\"H3539\"*." + }, + { + "verseNum": 17, + "text": "“‘“Judah|strong=\"H3063\"* and|strong=\"H3063\"* the|strong=\"H5414\"* land of|strong=\"H8081\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* your|strong=\"H5414\"* traders|strong=\"H7402\"*. They|strong=\"H1992\"* traded|strong=\"H7402\"* wheat|strong=\"H2406\"* of|strong=\"H8081\"* Minnith|strong=\"H4511\"*, confections, honey|strong=\"H1706\"*, oil|strong=\"H8081\"*, and|strong=\"H3063\"* balm|strong=\"H6875\"* for|strong=\"H3478\"* your|strong=\"H5414\"* merchandise|strong=\"H4627\"*." + }, + { + "verseNum": 18, + "text": "“‘“Damascus|strong=\"H1834\"* was|strong=\"H3605\"* your|strong=\"H3605\"* merchant|strong=\"H5503\"* for|strong=\"H3605\"* the|strong=\"H3605\"* multitude|strong=\"H7230\"* of|strong=\"H7230\"* your|strong=\"H3605\"* handiworks by|strong=\"H3605\"* reason of|strong=\"H7230\"* the|strong=\"H3605\"* multitude|strong=\"H7230\"* of|strong=\"H7230\"* all|strong=\"H3605\"* kinds|strong=\"H1952\"* of|strong=\"H7230\"* riches|strong=\"H1952\"*, with|strong=\"H3605\"* the|strong=\"H3605\"* wine|strong=\"H3196\"* of|strong=\"H7230\"* Helbon|strong=\"H2463\"*, and|strong=\"H3196\"* white|strong=\"H6713\"* wool|strong=\"H6785\"*." + }, + { + "verseNum": 19, + "text": "“‘“Vedan|strong=\"H2051\"* and|strong=\"H1270\"* Javan|strong=\"H3120\"* traded|strong=\"H5414\"* with|strong=\"H5801\"* yarn for|strong=\"H5414\"* your|strong=\"H5414\"* wares|strong=\"H5801\"*; wrought|strong=\"H6219\"* iron|strong=\"H1270\"*, cassia|strong=\"H6916\"*, and|strong=\"H1270\"* calamus|strong=\"H7070\"* were|strong=\"H1961\"* among your|strong=\"H5414\"* merchandise|strong=\"H4627\"*." + }, + { + "verseNum": 20, + "text": "“‘“Dedan|strong=\"H1719\"* was your merchant|strong=\"H7402\"* in|strong=\"H7402\"* precious|strong=\"H2667\"* saddle blankets for|strong=\"H2667\"* riding|strong=\"H7396\"*." + }, + { + "verseNum": 21, + "text": "“‘“Arabia|strong=\"H6152\"* and|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H5387\"* of|strong=\"H3027\"* Kedar|strong=\"H6938\"* were|strong=\"H1992\"* your|strong=\"H3605\"* favorite dealers in|strong=\"H3027\"* lambs|strong=\"H3733\"*, rams|strong=\"H3733\"*, and|strong=\"H3027\"* goats|strong=\"H6260\"*. In|strong=\"H3027\"* these|strong=\"H1992\"*, they|strong=\"H1992\"* were|strong=\"H1992\"* your|strong=\"H3605\"* merchants|strong=\"H5503\"*." + }, + { + "verseNum": 22, + "text": "“‘“The|strong=\"H3605\"* traders|strong=\"H7402\"* of|strong=\"H7218\"* Sheba|strong=\"H7614\"* and|strong=\"H2091\"* Raamah|strong=\"H7484\"* were|strong=\"H1992\"* your|strong=\"H3605\"* traders|strong=\"H7402\"*. They|strong=\"H1992\"* traded|strong=\"H7402\"* for|strong=\"H3605\"* your|strong=\"H3605\"* wares|strong=\"H5801\"* with|strong=\"H3605\"* the|strong=\"H3605\"* best|strong=\"H7218\"* of|strong=\"H7218\"* all|strong=\"H3605\"* spices|strong=\"H1314\"*, all|strong=\"H3605\"* precious|strong=\"H3368\"* stones, and|strong=\"H2091\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 23, + "text": "“‘“Haran|strong=\"H2771\"*, Canneh|strong=\"H3656\"*, Eden|strong=\"H5729\"*, the traders|strong=\"H7402\"* of|strong=\"H7402\"* Sheba|strong=\"H7614\"*, Asshur and|strong=\"H7614\"* Chilmad|strong=\"H3638\"*, were your traders|strong=\"H7402\"*." + }, + { + "verseNum": 24, + "text": "These|strong=\"H1992\"* were|strong=\"H1992\"* your traders|strong=\"H7402\"* in|strong=\"H1992\"* choice|strong=\"H4360\"* wares, in|strong=\"H1992\"* wrappings of|strong=\"H2256\"* blue|strong=\"H8504\"* and|strong=\"H8504\"* embroidered|strong=\"H7553\"* work|strong=\"H7553\"*, and|strong=\"H8504\"* in|strong=\"H1992\"* cedar chests|strong=\"H1595\"* of|strong=\"H2256\"* rich clothing bound|strong=\"H2280\"* with|strong=\"H2280\"* cords|strong=\"H2256\"*, among your merchandise|strong=\"H4819\"*." + }, + { + "verseNum": 25, + "text": "“‘“The|strong=\"H4390\"* ships of|strong=\"H4390\"* Tarshish|strong=\"H8659\"* were|strong=\"H3820\"* your|strong=\"H3513\"* caravans for|strong=\"H4390\"* your|strong=\"H3513\"* merchandise|strong=\"H4627\"*." + }, + { + "verseNum": 26, + "text": "Your|strong=\"H7665\"* rowers|strong=\"H7751\"* have|strong=\"H7751\"* brought you|strong=\"H7307\"* into|strong=\"H3220\"* great|strong=\"H7227\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 27, + "text": "Your|strong=\"H3605\"* riches|strong=\"H1952\"*, your|strong=\"H3605\"* wares|strong=\"H5801\"*, your|strong=\"H3605\"* merchandise|strong=\"H4627\"*," + }, + { + "verseNum": 28, + "text": "At|strong=\"H2201\"* the|strong=\"H6963\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H6963\"* cry|strong=\"H2201\"* of|strong=\"H6963\"* your pilots|strong=\"H2259\"*," + }, + { + "verseNum": 29, + "text": "All|strong=\"H3605\"* who|strong=\"H3605\"* handle|strong=\"H8610\"* the|strong=\"H3605\"* oars|strong=\"H4880\"*," + }, + { + "verseNum": 30, + "text": "and|strong=\"H6963\"* will|strong=\"H8085\"* cause their|strong=\"H8085\"* voice|strong=\"H6963\"* to|strong=\"H5927\"* be|strong=\"H6963\"* heard|strong=\"H8085\"* over|strong=\"H5921\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 31, + "text": "They|strong=\"H5315\"* will|strong=\"H5315\"* make|strong=\"H7139\"* themselves|strong=\"H5315\"* bald|strong=\"H7139\"* for|strong=\"H5315\"* you|strong=\"H5315\"*," + }, + { + "verseNum": 32, + "text": "In|strong=\"H5921\"* their|strong=\"H5375\"* wailing|strong=\"H5204\"* they|strong=\"H5921\"* will|strong=\"H4310\"* take|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* lamentation|strong=\"H7015\"* for|strong=\"H5921\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 33, + "text": "When|strong=\"H3318\"* your|strong=\"H3318\"* wares|strong=\"H5801\"* came|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3318\"* seas|strong=\"H3220\"*," + }, + { + "verseNum": 34, + "text": "In|strong=\"H8432\"* the|strong=\"H3605\"* time|strong=\"H6256\"* that|strong=\"H3605\"* you|strong=\"H3605\"* were|strong=\"H4325\"* broken|strong=\"H7665\"* by|strong=\"H4325\"* the|strong=\"H3605\"* seas|strong=\"H3220\"*," + }, + { + "verseNum": 35, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* the|strong=\"H3605\"* islands are|strong=\"H4428\"* astonished|strong=\"H8074\"* at|strong=\"H3427\"* you|strong=\"H6440\"*," + }, + { + "verseNum": 36, + "text": "The|strong=\"H5921\"* merchants|strong=\"H5503\"* among|strong=\"H5921\"* the|strong=\"H5921\"* peoples|strong=\"H5971\"* hiss|strong=\"H8319\"* at|strong=\"H5921\"* you|strong=\"H5921\"*." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* again|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, tell the|strong=\"H5414\"* prince|strong=\"H5057\"* of|strong=\"H1121\"* Tyre|strong=\"H6865\"*, ‘The|strong=\"H5414\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 3, + "text": "behold|strong=\"H2009\"*, you|strong=\"H3605\"* are|strong=\"H2450\"* wiser|strong=\"H2450\"* than|strong=\"H3808\"* Daniel|strong=\"H1840\"*." + }, + { + "verseNum": 4, + "text": "By|strong=\"H2091\"* your|strong=\"H6213\"* wisdom|strong=\"H2451\"* and|strong=\"H3701\"* by|strong=\"H2091\"* your|strong=\"H6213\"* understanding|strong=\"H8394\"* you|strong=\"H6213\"* have|strong=\"H2428\"* gotten|strong=\"H6213\"* yourself|strong=\"H6213\"* riches|strong=\"H2428\"*," + }, + { + "verseNum": 5, + "text": "By|strong=\"H2451\"* your|strong=\"H7235\"* great|strong=\"H7230\"* wisdom|strong=\"H2451\"*" + }, + { + "verseNum": 6, + "text": "“‘therefore|strong=\"H3651\"* the|strong=\"H5414\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 7, + "text": "therefore|strong=\"H3651\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H1471\"* bring strangers|strong=\"H2114\"* on|strong=\"H5921\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 8, + "text": "They|strong=\"H3820\"* will|strong=\"H3820\"* bring|strong=\"H3381\"* you|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H4191\"* pit|strong=\"H7845\"*." + }, + { + "verseNum": 9, + "text": "Will|strong=\"H3027\"* you|strong=\"H6440\"* yet|strong=\"H3808\"* say before|strong=\"H6440\"* him|strong=\"H6440\"* who|strong=\"H3808\"* kills|strong=\"H2026\"* you|strong=\"H6440\"*, ‘I|strong=\"H3808\"* am God|strong=\"H3808\"*’?" + }, + { + "verseNum": 10, + "text": "You|strong=\"H3588\"* will|strong=\"H3027\"* die|strong=\"H4191\"* the|strong=\"H5002\"* death|strong=\"H4194\"* of|strong=\"H3027\"* the|strong=\"H5002\"* uncircumcised|strong=\"H6189\"*" + }, + { + "verseNum": 11, + "text": "Moreover|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 12, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, take|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* lamentation|strong=\"H7015\"* over|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Tyre|strong=\"H6865\"*, and|strong=\"H1121\"* tell him|strong=\"H5921\"*, ‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 13, + "text": "You|strong=\"H3605\"* were|strong=\"H1961\"* in|strong=\"H3117\"* Eden|strong=\"H5731\"*," + }, + { + "verseNum": 14, + "text": "You|strong=\"H5414\"* were|strong=\"H1961\"* the|strong=\"H5414\"* anointed|strong=\"H4473\"* cherub|strong=\"H3742\"* who|strong=\"H1980\"* covers|strong=\"H5526\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H3117\"* were|strong=\"H3117\"* perfect|strong=\"H8549\"* in|strong=\"H3117\"* your|strong=\"H5704\"* ways|strong=\"H1870\"* from|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* you|strong=\"H3117\"* were|strong=\"H3117\"* created|strong=\"H1254\"*," + }, + { + "verseNum": 16, + "text": "By|strong=\"H2398\"* the|strong=\"H8432\"* abundance|strong=\"H7230\"* of|strong=\"H2022\"* your|strong=\"H4390\"* commerce, your|strong=\"H4390\"* insides were|strong=\"H2022\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* violence|strong=\"H2555\"*," + }, + { + "verseNum": 17, + "text": "Your|strong=\"H5414\"* heart|strong=\"H3820\"* was|strong=\"H3820\"* lifted|strong=\"H1361\"* up|strong=\"H5414\"* because|strong=\"H5921\"* of|strong=\"H4428\"* your|strong=\"H5414\"* beauty|strong=\"H3308\"*." + }, + { + "verseNum": 18, + "text": "By|strong=\"H5921\"* the|strong=\"H3605\"* multitude|strong=\"H7230\"* of|strong=\"H5869\"* your|strong=\"H3605\"* iniquities|strong=\"H5771\"*," + }, + { + "verseNum": 19, + "text": "All|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* know|strong=\"H3045\"* you|strong=\"H3605\"* among|strong=\"H5921\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* will|strong=\"H1961\"* be|strong=\"H1961\"* astonished|strong=\"H8074\"* at|strong=\"H5921\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 21, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, set|strong=\"H7760\"* your|strong=\"H5921\"* face|strong=\"H6440\"* toward|strong=\"H5921\"* Sidon|strong=\"H6721\"*, and|strong=\"H1121\"* prophesy|strong=\"H5012\"* against|strong=\"H5921\"* it|strong=\"H7760\"*," + }, + { + "verseNum": 22, + "text": "and|strong=\"H3068\"* say, ‘The|strong=\"H5921\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* send|strong=\"H7971\"* pestilence|strong=\"H1698\"* into|strong=\"H8432\"* her|strong=\"H7971\"*," + }, + { + "verseNum": 24, + "text": "“‘“There|strong=\"H1961\"* will|strong=\"H1961\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* be|strong=\"H1961\"* a|strong=\"H3068\"* pricking|strong=\"H3992\"* brier|strong=\"H5544\"* to|strong=\"H3478\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, nor|strong=\"H3808\"* a|strong=\"H3068\"* hurting thorn|strong=\"H6975\"* of|strong=\"H1004\"* any|strong=\"H3605\"* that|strong=\"H3588\"* are|strong=\"H3478\"* around|strong=\"H5439\"* them|strong=\"H5439\"* that|strong=\"H3588\"* scorned them|strong=\"H5439\"*. Then|strong=\"H1961\"* they|strong=\"H3588\"* will|strong=\"H1961\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 25, + "text": "“‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “When|strong=\"H4480\"* I|strong=\"H5414\"* have|strong=\"H5869\"* gathered|strong=\"H6908\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* from|strong=\"H4480\"* the|strong=\"H5921\"* peoples|strong=\"H5971\"* among|strong=\"H4480\"* whom|strong=\"H5971\"* they|strong=\"H5921\"* are|strong=\"H5971\"* scattered|strong=\"H6327\"*, and|strong=\"H3478\"* am shown as|strong=\"H5971\"* holy|strong=\"H6942\"* among|strong=\"H4480\"* them|strong=\"H5414\"* in|strong=\"H3427\"* the|strong=\"H5921\"* sight|strong=\"H5869\"* of|strong=\"H1004\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*, then|strong=\"H5414\"* they|strong=\"H5921\"* will|strong=\"H1471\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H5414\"* own|strong=\"H5971\"* land which|strong=\"H1471\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H3478\"* my|strong=\"H5414\"* servant|strong=\"H5650\"* Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H5921\"* securely. Yes|strong=\"H3588\"*, they|strong=\"H3588\"* will|strong=\"H3068\"* build|strong=\"H1129\"* houses|strong=\"H1004\"*, plant|strong=\"H5193\"* vineyards|strong=\"H3754\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* dwell|strong=\"H3427\"* securely when|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* executed|strong=\"H6213\"* judgments|strong=\"H8201\"* on|strong=\"H5921\"* all|strong=\"H3605\"* those|strong=\"H3605\"* around|strong=\"H5439\"* them|strong=\"H5921\"* who|strong=\"H3605\"* have|strong=\"H3068\"* treated|strong=\"H6213\"* them|strong=\"H5921\"* with|strong=\"H1004\"* contempt. Then|strong=\"H6213\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"*.”’”" + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* tenth|strong=\"H6224\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"*, on|strong=\"H3068\"* the|strong=\"H3068\"* twelfth|strong=\"H8147\"* day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, set|strong=\"H7760\"* your|strong=\"H3605\"* face|strong=\"H6440\"* against|strong=\"H5921\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* prophesy|strong=\"H5012\"* against|strong=\"H5921\"* him|strong=\"H6440\"* and|strong=\"H1121\"* against|strong=\"H5921\"* all|strong=\"H3605\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 3, + "text": "Speak|strong=\"H1696\"* and|strong=\"H4428\"* say|strong=\"H1696\"*, ‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 4, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* put|strong=\"H5414\"* hooks|strong=\"H2397\"* in|strong=\"H8432\"* your|strong=\"H3605\"* jaws|strong=\"H3895\"*," + }, + { + "verseNum": 5, + "text": "I|strong=\"H5414\"*’ll cast|strong=\"H5307\"* you|strong=\"H5414\"* out|strong=\"H5414\"* into|strong=\"H5307\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*," + }, + { + "verseNum": 6, + "text": "“‘“All|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H1004\"* Egypt|strong=\"H4714\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1961\"* been|strong=\"H1961\"* a|strong=\"H3068\"* staff|strong=\"H4938\"* of|strong=\"H1004\"* reed|strong=\"H7070\"* to|strong=\"H3478\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H5921\"* they|strong=\"H5921\"* took|strong=\"H8610\"* hold|strong=\"H8610\"* of|strong=\"H3709\"* you|strong=\"H3605\"* by|strong=\"H5921\"* your|strong=\"H3605\"* hand|strong=\"H3709\"*, you|strong=\"H3605\"* broke|strong=\"H7665\"* and|strong=\"H4975\"* tore|strong=\"H1234\"* all|strong=\"H3605\"* their|strong=\"H3605\"* shoulders|strong=\"H3802\"*. When|strong=\"H5921\"* they|strong=\"H5921\"* leaned|strong=\"H8172\"* on|strong=\"H5921\"* you|strong=\"H3605\"*, you|strong=\"H3605\"* broke|strong=\"H7665\"* and|strong=\"H4975\"* paralyzed all|strong=\"H3605\"* of|strong=\"H3709\"* their|strong=\"H3605\"* thighs.”" + }, + { + "verseNum": 8, + "text": "“‘Therefore|strong=\"H3651\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H2719\"* bring a|strong=\"H3068\"* sword|strong=\"H2719\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H2719\"* will|strong=\"H2719\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* man and|strong=\"H2719\"* animal from|strong=\"H4480\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3588\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"* and|strong=\"H3068\"* a|strong=\"H3068\"* waste|strong=\"H2723\"*. Then|strong=\"H1961\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "therefore|strong=\"H3651\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* against|strong=\"H4714\"* you|strong=\"H5414\"* and|strong=\"H4714\"* against|strong=\"H4714\"* your|strong=\"H5414\"* rivers|strong=\"H2975\"*. I|strong=\"H2005\"* will|strong=\"H4714\"* make|strong=\"H5414\"* the|strong=\"H5414\"* land|strong=\"H1366\"* of|strong=\"H1366\"* Egypt|strong=\"H4714\"* an|strong=\"H5414\"* utter|strong=\"H5414\"* waste|strong=\"H2723\"* and|strong=\"H4714\"* desolation|strong=\"H8077\"*, from|strong=\"H5704\"* the|strong=\"H5414\"* tower|strong=\"H4024\"* of|strong=\"H1366\"* Seveneh even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5414\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Ethiopia|strong=\"H3568\"*." + }, + { + "verseNum": 11, + "text": "No|strong=\"H3808\"* foot|strong=\"H7272\"* of|strong=\"H8141\"* man|strong=\"H5674\"* will|strong=\"H3808\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* it|strong=\"H3808\"*, nor|strong=\"H3808\"* will|strong=\"H3808\"* any|strong=\"H3808\"* animal foot|strong=\"H7272\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* it|strong=\"H3808\"*. It|strong=\"H3808\"* won’t be|strong=\"H3808\"* inhabited|strong=\"H3427\"* for|strong=\"H3427\"* forty years|strong=\"H8141\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H5414\"* will|strong=\"H1961\"* make|strong=\"H5414\"* the|strong=\"H5414\"* land of|strong=\"H8141\"* Egypt|strong=\"H4714\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"* in|strong=\"H8141\"* the|strong=\"H5414\"* middle|strong=\"H8432\"* of|strong=\"H8141\"* the|strong=\"H5414\"* countries that|strong=\"H1471\"* are|strong=\"H1471\"* desolate|strong=\"H8074\"*. Her|strong=\"H5414\"* cities|strong=\"H5892\"* among|strong=\"H8432\"* the|strong=\"H5414\"* cities|strong=\"H5892\"* that|strong=\"H1471\"* are|strong=\"H1471\"* laid|strong=\"H5414\"* waste|strong=\"H2717\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"* forty years|strong=\"H8141\"*. I|strong=\"H5414\"* will|strong=\"H1961\"* scatter|strong=\"H2219\"* the|strong=\"H5414\"* Egyptians|strong=\"H4714\"* among|strong=\"H8432\"* the|strong=\"H5414\"* nations|strong=\"H1471\"*, and|strong=\"H5892\"* will|strong=\"H1961\"* disperse|strong=\"H2219\"* them|strong=\"H5414\"* through|strong=\"H8432\"* the|strong=\"H5414\"* countries.”" + }, + { + "verseNum": 13, + "text": "“‘For|strong=\"H3588\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “At|strong=\"H6908\"* the|strong=\"H3588\"* end|strong=\"H7093\"* of|strong=\"H8141\"* forty years|strong=\"H8141\"* I|strong=\"H3588\"* will|strong=\"H5971\"* gather|strong=\"H6908\"* the|strong=\"H3588\"* Egyptians|strong=\"H4714\"* from|strong=\"H4480\"* the|strong=\"H3588\"* peoples|strong=\"H5971\"* where|strong=\"H8033\"* they|strong=\"H3588\"* were|strong=\"H5971\"* scattered|strong=\"H6327\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H5921\"* will|strong=\"H1961\"* reverse|strong=\"H7725\"* the|strong=\"H5921\"* captivity|strong=\"H7622\"* of|strong=\"H5921\"* Egypt|strong=\"H4714\"*, and|strong=\"H7725\"* will|strong=\"H1961\"* cause|strong=\"H7725\"* them|strong=\"H5921\"* to|strong=\"H7725\"* return|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H5921\"* land of|strong=\"H5921\"* Pathros|strong=\"H6624\"*, into|strong=\"H7725\"* the|strong=\"H5921\"* land of|strong=\"H5921\"* their|strong=\"H7725\"* birth|strong=\"H4351\"*. There|strong=\"H8033\"* they|strong=\"H8033\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* lowly|strong=\"H8217\"* kingdom|strong=\"H4467\"*." + }, + { + "verseNum": 15, + "text": "It|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* the|strong=\"H5921\"* lowest|strong=\"H8217\"* of|strong=\"H4480\"* the|strong=\"H5921\"* kingdoms|strong=\"H4467\"*. It|strong=\"H5921\"* won’t lift|strong=\"H5375\"* itself up|strong=\"H5375\"* above|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* any|strong=\"H4480\"* more|strong=\"H4480\"*. I|strong=\"H5921\"* will|strong=\"H1961\"* diminish|strong=\"H4591\"* them|strong=\"H5921\"* so|strong=\"H4480\"* that|strong=\"H1471\"* they|strong=\"H3808\"* will|strong=\"H1961\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* rule|strong=\"H7287\"* over|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 16, + "text": "It|strong=\"H3588\"* will|strong=\"H1961\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* be|strong=\"H1961\"* the|strong=\"H3588\"* confidence|strong=\"H4009\"* of|strong=\"H1004\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, bringing|strong=\"H2142\"* iniquity|strong=\"H5771\"* to|strong=\"H3478\"* memory, when|strong=\"H3588\"* they|strong=\"H3588\"* turn|strong=\"H6437\"* to|strong=\"H3478\"* look|strong=\"H6437\"* after|strong=\"H1961\"* them|strong=\"H1961\"*. Then|strong=\"H1961\"* they|strong=\"H3588\"* will|strong=\"H1961\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.”’”" + }, + { + "verseNum": 17, + "text": "It|strong=\"H1961\"* came|strong=\"H1961\"* to|strong=\"H3068\"* pass|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H3068\"* twenty-seventh|strong=\"H6242\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* first|strong=\"H7223\"* day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 18, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon caused|strong=\"H1961\"* his|strong=\"H3605\"* army|strong=\"H2428\"* to|strong=\"H1961\"* serve|strong=\"H5647\"* a|strong=\"H3068\"* great|strong=\"H1419\"* service|strong=\"H5656\"* against|strong=\"H5921\"* Tyre|strong=\"H6865\"*. Every|strong=\"H3605\"* head|strong=\"H7218\"* was|strong=\"H1961\"* made|strong=\"H1961\"* bald|strong=\"H7139\"*, and|strong=\"H1121\"* every|strong=\"H3605\"* shoulder|strong=\"H3802\"* was|strong=\"H1961\"* worn; yet|strong=\"H3808\"* he|strong=\"H3605\"* had|strong=\"H1961\"* no|strong=\"H3808\"* wages|strong=\"H7939\"*, nor|strong=\"H3808\"* did|strong=\"H3808\"* his|strong=\"H3605\"* army|strong=\"H2428\"*, from|strong=\"H5921\"* Tyre|strong=\"H6865\"*, for|strong=\"H5921\"* the|strong=\"H3605\"* service|strong=\"H5656\"* that|strong=\"H3605\"* he|strong=\"H3605\"* had|strong=\"H1961\"* served|strong=\"H5647\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5414\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H1961\"* give|strong=\"H5414\"* the|strong=\"H5414\"* land of|strong=\"H4428\"* Egypt|strong=\"H4714\"* to|strong=\"H1961\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon. He|strong=\"H3651\"* will|strong=\"H1961\"* carry|strong=\"H5375\"* off|strong=\"H5375\"* her|strong=\"H5414\"* multitude|strong=\"H1995\"*, take|strong=\"H5375\"* her|strong=\"H5414\"* plunder|strong=\"H7998\"*, and|strong=\"H4428\"* take|strong=\"H5375\"* her|strong=\"H5414\"* prey|strong=\"H7998\"*. That|strong=\"H3651\"* will|strong=\"H1961\"* be|strong=\"H1961\"* the|strong=\"H5414\"* wages|strong=\"H7939\"* for|strong=\"H4714\"* his|strong=\"H5375\"* army|strong=\"H2426\"*." + }, + { + "verseNum": 20, + "text": "I|strong=\"H5414\"* have|strong=\"H5414\"* given|strong=\"H5414\"* him|strong=\"H5414\"* the|strong=\"H5002\"* land of|strong=\"H3069\"* Egypt|strong=\"H4714\"* as|strong=\"H6213\"* his|strong=\"H5414\"* payment for|strong=\"H6213\"* which|strong=\"H3069\"* he|strong=\"H6213\"* served|strong=\"H5647\"*, because they|strong=\"H6213\"* worked|strong=\"H6213\"* for|strong=\"H6213\"* me|strong=\"H5414\"*,’ says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 21, + "text": "“In|strong=\"H3478\"* that|strong=\"H3588\"* day|strong=\"H3117\"* I|strong=\"H3588\"* will|strong=\"H3068\"* cause|strong=\"H5414\"* a|strong=\"H3068\"* horn|strong=\"H7161\"* to|strong=\"H3478\"* sprout|strong=\"H6779\"* for|strong=\"H3588\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* I|strong=\"H3588\"* will|strong=\"H3068\"* open|strong=\"H6610\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"* among|strong=\"H8432\"* them|strong=\"H5414\"*. Then|strong=\"H5414\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* again|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, prophesy|strong=\"H5012\"*, and|strong=\"H1121\"* say, ‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* day|strong=\"H3117\"* is|strong=\"H3068\"* near|strong=\"H7138\"*," + }, + { + "verseNum": 4, + "text": "A|strong=\"H3068\"* sword|strong=\"H2719\"* will|strong=\"H1961\"* come|strong=\"H1961\"* on|strong=\"H5307\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 5, + "text": "“‘“Ethiopia|strong=\"H3568\"*, Put|strong=\"H6316\"*, Lud|strong=\"H3865\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* mixed|strong=\"H6154\"* people|strong=\"H1121\"*, Cub, and|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land that|strong=\"H3605\"* is|strong=\"H3605\"* allied|strong=\"H1285\"* with|strong=\"H1285\"* them|strong=\"H5307\"*, will|strong=\"H2719\"* fall|strong=\"H5307\"* with|strong=\"H1285\"* them|strong=\"H5307\"* by|strong=\"H3605\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*.”" + }, + { + "verseNum": 6, + "text": "“‘Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*:" + }, + { + "verseNum": 7, + "text": "“They|strong=\"H5892\"* will|strong=\"H1961\"* be|strong=\"H1961\"* desolate|strong=\"H8074\"* in|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H5892\"* the|strong=\"H8432\"* countries that|strong=\"H5892\"* are|strong=\"H5892\"* desolate|strong=\"H8074\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*" + }, + { + "verseNum": 9, + "text": "“‘“In|strong=\"H3117\"* that|strong=\"H3588\"* day|strong=\"H3117\"* messengers|strong=\"H4397\"* will|strong=\"H1961\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* before|strong=\"H6440\"* me|strong=\"H6440\"* in|strong=\"H3117\"* ships|strong=\"H6716\"* to|strong=\"H3318\"* make|strong=\"H2729\"* the|strong=\"H6440\"* careless Ethiopians|strong=\"H3568\"* afraid|strong=\"H2729\"*. There|strong=\"H2009\"* will|strong=\"H1961\"* be|strong=\"H1961\"* anguish|strong=\"H2479\"* on|strong=\"H3117\"* them|strong=\"H6440\"*, as|strong=\"H3117\"* in|strong=\"H3117\"* the|strong=\"H6440\"* day|strong=\"H3117\"* of|strong=\"H3117\"* Egypt|strong=\"H4714\"*; for|strong=\"H3588\"*, behold|strong=\"H2009\"*, it|strong=\"H1931\"* comes|strong=\"H3318\"*.”" + }, + { + "verseNum": 10, + "text": "“‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 11, + "text": "He|strong=\"H1931\"* and|strong=\"H5971\"* his|strong=\"H5921\"* people|strong=\"H5971\"* with|strong=\"H4390\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 12, + "text": "I|strong=\"H5414\"* will|strong=\"H3068\"* make|strong=\"H5414\"* the|strong=\"H5414\"* rivers|strong=\"H2975\"* dry|strong=\"H2724\"*," + }, + { + "verseNum": 13, + "text": "“‘The|strong=\"H5414\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 14, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* make|strong=\"H6213\"* Pathros|strong=\"H6624\"* desolate|strong=\"H8074\"*," + }, + { + "verseNum": 15, + "text": "I|strong=\"H5921\"* will|strong=\"H4714\"* pour|strong=\"H8210\"* my|strong=\"H5921\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* Sin|strong=\"H5512\"*," + }, + { + "verseNum": 16, + "text": "I|strong=\"H5414\"* will|strong=\"H1961\"* set|strong=\"H5414\"* a|strong=\"H3068\"* fire in|strong=\"H5414\"* Egypt|strong=\"H4714\"*" + }, + { + "verseNum": 17, + "text": "The|strong=\"H3212\"* young men of|strong=\"H2719\"* Aven and|strong=\"H3212\"* of|strong=\"H2719\"* Pibeseth will|strong=\"H2719\"* fall|strong=\"H5307\"* by|strong=\"H3212\"* the|strong=\"H3212\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 18, + "text": "At|strong=\"H3117\"* Tehaphnehes|strong=\"H8471\"* also|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* will|strong=\"H4714\"* withdraw itself|strong=\"H1931\"*," + }, + { + "verseNum": 19, + "text": "Thus I|strong=\"H3588\"* will|strong=\"H3068\"* execute|strong=\"H6213\"* judgments|strong=\"H8201\"* on|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 20, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* eleventh|strong=\"H6240\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* seventh|strong=\"H7651\"* day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 21, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, I|strong=\"H5414\"* have|strong=\"H1121\"* broken|strong=\"H7665\"* the|strong=\"H5414\"* arm|strong=\"H2220\"* of|strong=\"H1121\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*. Behold|strong=\"H2009\"*, it|strong=\"H5414\"* has|strong=\"H4428\"* not|strong=\"H3808\"* been|strong=\"H3808\"* bound|strong=\"H2280\"* up|strong=\"H5414\"*, to|strong=\"H5414\"* apply medicines|strong=\"H7499\"*, to|strong=\"H5414\"* put|strong=\"H5414\"* a|strong=\"H3068\"* bandage|strong=\"H2848\"* to|strong=\"H5414\"* bind|strong=\"H2280\"* it|strong=\"H5414\"*, that|strong=\"H5414\"* it|strong=\"H5414\"* may|strong=\"H4428\"* become strong|strong=\"H2388\"* to|strong=\"H5414\"* hold|strong=\"H2388\"* the|strong=\"H5414\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 22, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* against|strong=\"H3027\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*, and|strong=\"H4428\"* will|strong=\"H4428\"* break|strong=\"H7665\"* his|strong=\"H3027\"* arms|strong=\"H2220\"*, the|strong=\"H3069\"* strong|strong=\"H2389\"* arm|strong=\"H2220\"*, and|strong=\"H4428\"* that|strong=\"H3651\"* which|strong=\"H3069\"* was|strong=\"H4428\"* broken|strong=\"H7665\"*. I|strong=\"H2005\"* will|strong=\"H4428\"* cause|strong=\"H3651\"* the|strong=\"H3069\"* sword|strong=\"H2719\"* to|strong=\"H3027\"* fall|strong=\"H5307\"* out|strong=\"H5307\"* of|strong=\"H4428\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 23, + "text": "I|strong=\"H4714\"* will|strong=\"H1471\"* scatter|strong=\"H2219\"* the|strong=\"H6327\"* Egyptians|strong=\"H4714\"* among the|strong=\"H6327\"* nations|strong=\"H1471\"*, and|strong=\"H4714\"* will|strong=\"H1471\"* disperse|strong=\"H2219\"* them|strong=\"H6327\"* through|strong=\"H6327\"* the|strong=\"H6327\"* countries." + }, + { + "verseNum": 24, + "text": "I|strong=\"H5414\"* will|strong=\"H4428\"* strengthen|strong=\"H2388\"* the|strong=\"H6440\"* arms|strong=\"H2220\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H4428\"* put|strong=\"H5414\"* my|strong=\"H5414\"* sword|strong=\"H2719\"* in|strong=\"H4428\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*; but|strong=\"H2388\"* I|strong=\"H5414\"* will|strong=\"H4428\"* break|strong=\"H7665\"* the|strong=\"H6440\"* arms|strong=\"H2220\"* of|strong=\"H4428\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H4428\"* he|strong=\"H5414\"* will|strong=\"H4428\"* groan|strong=\"H5008\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon with|strong=\"H6440\"* the|strong=\"H6440\"* groaning|strong=\"H5009\"* of|strong=\"H4428\"* a|strong=\"H3068\"* mortally|strong=\"H2491\"* wounded|strong=\"H2491\"* man|strong=\"H2491\"*." + }, + { + "verseNum": 25, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* hold|strong=\"H2388\"* up|strong=\"H5414\"* the|strong=\"H3588\"* arms|strong=\"H2220\"* of|strong=\"H4428\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, but|strong=\"H3588\"* the|strong=\"H3588\"* arms|strong=\"H2220\"* of|strong=\"H4428\"* Pharaoh|strong=\"H6547\"* will|strong=\"H3068\"* fall|strong=\"H5307\"* down|strong=\"H5307\"*. Then|strong=\"H5307\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* when|strong=\"H3588\"* I|strong=\"H3588\"* put|strong=\"H5414\"* my|strong=\"H5414\"* sword|strong=\"H2719\"* into|strong=\"H5307\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3068\"* he|strong=\"H3588\"* stretches|strong=\"H5186\"* it|strong=\"H5414\"* out|strong=\"H5186\"* on|strong=\"H5307\"* the|strong=\"H3588\"* land of|strong=\"H4428\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* scatter|strong=\"H2219\"* the|strong=\"H3588\"* Egyptians|strong=\"H4714\"* among the|strong=\"H3588\"* nations|strong=\"H1471\"* and|strong=\"H3068\"* disperse|strong=\"H2219\"* them|strong=\"H6327\"* through|strong=\"H3588\"* the|strong=\"H3588\"* countries. Then|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* eleventh|strong=\"H6240\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* third|strong=\"H7992\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* first day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, tell Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"* and|strong=\"H1121\"* his|strong=\"H4428\"* multitude|strong=\"H1995\"*:" + }, + { + "verseNum": 3, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H1961\"* Assyrian was|strong=\"H1961\"* a|strong=\"H3068\"* cedar|strong=\"H6967\"* in|strong=\"H3303\"* Lebanon|strong=\"H3844\"*" + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* waters|strong=\"H4325\"* nourished|strong=\"H1431\"* it|strong=\"H5439\"*." + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"H3651\"* its|strong=\"H3605\"* stature|strong=\"H6967\"* was|strong=\"H4325\"* exalted|strong=\"H1361\"* above|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* trees|strong=\"H6086\"* of|strong=\"H4325\"* the|strong=\"H3605\"* field|strong=\"H7704\"*;" + }, + { + "verseNum": 6, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H3427\"* the|strong=\"H3605\"* sky|strong=\"H8064\"* made|strong=\"H3605\"* their|strong=\"H3605\"* nests|strong=\"H7077\"* in|strong=\"H3427\"* its|strong=\"H3605\"* boughs|strong=\"H5589\"*." + }, + { + "verseNum": 7, + "text": "Thus|strong=\"H1961\"* it|strong=\"H3588\"* was|strong=\"H1961\"* beautiful|strong=\"H3302\"* in|strong=\"H7227\"* its|strong=\"H3588\"* greatness|strong=\"H1433\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H3605\"* cedars in|strong=\"H6086\"* the|strong=\"H3605\"* garden|strong=\"H1588\"* of|strong=\"H6086\"* God|strong=\"H3808\"* could not|strong=\"H3808\"* hide|strong=\"H6004\"* it|strong=\"H1961\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H3605\"* made|strong=\"H6213\"* it|strong=\"H6213\"* beautiful|strong=\"H3303\"* by|strong=\"H3605\"* the|strong=\"H3605\"* multitude|strong=\"H7230\"* of|strong=\"H7230\"* its|strong=\"H3605\"* branches|strong=\"H1808\"*," + }, + { + "verseNum": 10, + "text": "“Therefore|strong=\"H3651\"* thus|strong=\"H3541\"* said|strong=\"H3651\"* the|strong=\"H5414\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*: ‘Because|strong=\"H3282\"* he|strong=\"H3651\"* is|strong=\"H3651\"* exalted|strong=\"H7311\"* in|strong=\"H5414\"* stature|strong=\"H6967\"*, and|strong=\"H3824\"* he|strong=\"H3651\"* has|strong=\"H5414\"* set|strong=\"H5414\"* his|strong=\"H5414\"* top|strong=\"H6788\"* among the|strong=\"H5414\"* thick branches|strong=\"H5688\"*, and|strong=\"H3824\"* his|strong=\"H5414\"* heart|strong=\"H3824\"* is|strong=\"H3651\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* in|strong=\"H5414\"* his|strong=\"H5414\"* height|strong=\"H6967\"*," + }, + { + "verseNum": 11, + "text": "I|strong=\"H5414\"* will|strong=\"H1471\"* deliver|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H6213\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5414\"* mighty one|strong=\"H6213\"* of|strong=\"H3027\"* the|strong=\"H5414\"* nations|strong=\"H1471\"*. He|strong=\"H6213\"* will|strong=\"H1471\"* surely|strong=\"H5414\"* deal|strong=\"H6213\"* with|strong=\"H6213\"* him|strong=\"H5414\"*. I|strong=\"H5414\"* have|strong=\"H1471\"* driven|strong=\"H1644\"* him|strong=\"H5414\"* out|strong=\"H1644\"* for|strong=\"H6213\"* his|strong=\"H5414\"* wickedness|strong=\"H7562\"*." + }, + { + "verseNum": 12, + "text": "Foreigners|strong=\"H2114\"*, the|strong=\"H3605\"* tyrants|strong=\"H6184\"* of|strong=\"H2022\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*, have|strong=\"H5971\"* cut|strong=\"H3772\"* him|strong=\"H3381\"* off|strong=\"H3772\"* and|strong=\"H5971\"* have|strong=\"H5971\"* left|strong=\"H5203\"* him|strong=\"H3381\"*. His|strong=\"H3605\"* branches|strong=\"H1808\"* have|strong=\"H5971\"* fallen|strong=\"H5307\"* on|strong=\"H5307\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* and|strong=\"H5971\"* in|strong=\"H7665\"* all|strong=\"H3605\"* the|strong=\"H3605\"* valleys|strong=\"H1516\"*, and|strong=\"H5971\"* his|strong=\"H3605\"* boughs|strong=\"H6288\"* are|strong=\"H5971\"* broken|strong=\"H7665\"* by|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* watercourses of|strong=\"H2022\"* the|strong=\"H3605\"* land. All|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H2022\"* the|strong=\"H3605\"* earth have|strong=\"H5971\"* gone|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H3772\"* his|strong=\"H3605\"* shadow|strong=\"H6738\"* and|strong=\"H5971\"* have|strong=\"H5971\"* left|strong=\"H5203\"* him|strong=\"H3381\"*." + }, + { + "verseNum": 13, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H7704\"* the|strong=\"H3605\"* sky|strong=\"H8064\"* will|strong=\"H1961\"* dwell|strong=\"H7931\"* on|strong=\"H5921\"* his|strong=\"H3605\"* ruin|strong=\"H4658\"*, and|strong=\"H8064\"* all|strong=\"H3605\"* the|strong=\"H3605\"* animals|strong=\"H2416\"* of|strong=\"H7704\"* the|strong=\"H3605\"* field|strong=\"H7704\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H5921\"* his|strong=\"H3605\"* branches|strong=\"H6288\"*," + }, + { + "verseNum": 14, + "text": "to|strong=\"H3381\"* the|strong=\"H3605\"* end|strong=\"H4616\"* that|strong=\"H3588\"* none|strong=\"H3808\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* trees|strong=\"H6086\"* by|strong=\"H5975\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* exalt|strong=\"H1361\"* themselves|strong=\"H5414\"* in|strong=\"H8432\"* their|strong=\"H3605\"* stature|strong=\"H6967\"*, and|strong=\"H1121\"* don’t set|strong=\"H5414\"* their|strong=\"H3605\"* top|strong=\"H6788\"* among|strong=\"H8432\"* the|strong=\"H3605\"* thick boughs|strong=\"H5688\"*. Their|strong=\"H3605\"* mighty|strong=\"H1121\"* ones|strong=\"H1121\"* don’t stand|strong=\"H5975\"* up|strong=\"H5975\"* on|strong=\"H5975\"* their|strong=\"H3605\"* height|strong=\"H6967\"*, even|strong=\"H3588\"* all|strong=\"H3605\"* who|strong=\"H3605\"* drink|strong=\"H8354\"* water|strong=\"H4325\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H1121\"* all|strong=\"H3605\"* delivered|strong=\"H5414\"* to|strong=\"H3381\"* death|strong=\"H4194\"*, to|strong=\"H3381\"* the|strong=\"H3605\"* lower|strong=\"H8482\"* parts|strong=\"H8482\"* of|strong=\"H1121\"* the|strong=\"H3605\"* earth, among|strong=\"H8432\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"*, with|strong=\"H3381\"* those|strong=\"H3605\"* who|strong=\"H3605\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3605\"* pit.’" + }, + { + "verseNum": 15, + "text": "“The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘In|strong=\"H5921\"* the|strong=\"H3605\"* day|strong=\"H3117\"* when|strong=\"H3117\"* he|strong=\"H3117\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*,+ 31:15 Sheol is the place of the dead.* I|strong=\"H3117\"* caused a|strong=\"H3068\"* mourning|strong=\"H6937\"*. I|strong=\"H3117\"* covered|strong=\"H3680\"* the|strong=\"H3605\"* deep|strong=\"H8415\"* for|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3117\"* I|strong=\"H3117\"* restrained|strong=\"H3607\"* its|strong=\"H3605\"* rivers|strong=\"H5104\"*. The|strong=\"H3605\"* great|strong=\"H7227\"* waters|strong=\"H4325\"* were|strong=\"H4325\"* stopped|strong=\"H3607\"*. I|strong=\"H3117\"* caused Lebanon|strong=\"H3844\"* to|strong=\"H3381\"* mourn|strong=\"H6937\"* for|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* trees|strong=\"H6086\"* of|strong=\"H3117\"* the|strong=\"H3605\"* field|strong=\"H7704\"* fainted|strong=\"H5969\"* for|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"H3605\"* made|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* to|strong=\"H3381\"* shake|strong=\"H7493\"* at|strong=\"H2896\"* the|strong=\"H3605\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* his|strong=\"H3605\"* fall|strong=\"H4658\"*, when|strong=\"H6963\"* I|strong=\"H3605\"* cast|strong=\"H4325\"* him|strong=\"H6963\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*+ 31:16 Sheol is the place of the dead.* with|strong=\"H3381\"* those|strong=\"H3605\"* who|strong=\"H3605\"* descend|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H3605\"* pit|strong=\"H7585\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* trees|strong=\"H6086\"* of|strong=\"H6963\"* Eden|strong=\"H5731\"*, the|strong=\"H3605\"* choice|strong=\"H4005\"* and|strong=\"H6086\"* best|strong=\"H2896\"* of|strong=\"H6963\"* Lebanon|strong=\"H3844\"*, all|strong=\"H3605\"* that|strong=\"H3605\"* drink|strong=\"H8354\"* water|strong=\"H4325\"*, were|strong=\"H4325\"* comforted|strong=\"H5162\"* in|strong=\"H6086\"* the|strong=\"H3605\"* lower|strong=\"H8482\"* parts|strong=\"H8482\"* of|strong=\"H6963\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 17, + "text": "They|strong=\"H1992\"* also|strong=\"H1571\"* went|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* Sheol|strong=\"H7585\"* with|strong=\"H3427\"* him|strong=\"H3381\"* to|strong=\"H3381\"* those|strong=\"H1992\"* who|strong=\"H3427\"* are|strong=\"H1992\"* slain|strong=\"H2491\"* by|strong=\"H3427\"* the|strong=\"H8432\"* sword|strong=\"H2719\"*; yes|strong=\"H1571\"*, those|strong=\"H1992\"* who|strong=\"H3427\"* were|strong=\"H1992\"* his|strong=\"H8432\"* arm|strong=\"H2220\"*, who|strong=\"H3427\"* lived|strong=\"H3427\"* under|strong=\"H3427\"* his|strong=\"H8432\"* shadow|strong=\"H6738\"* in|strong=\"H3427\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H3427\"* the|strong=\"H8432\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 18, + "text": "“‘To|strong=\"H3381\"* whom|strong=\"H4310\"* are|strong=\"H4310\"* you|strong=\"H3605\"* thus|strong=\"H3602\"* like|strong=\"H1819\"* in|strong=\"H8432\"* glory|strong=\"H3519\"* and|strong=\"H6086\"* in|strong=\"H8432\"* greatness|strong=\"H1433\"* among|strong=\"H8432\"* the|strong=\"H3605\"* trees|strong=\"H6086\"* of|strong=\"H8432\"* Eden|strong=\"H5731\"*? Yet|strong=\"H3605\"* you|strong=\"H3605\"* will|strong=\"H4310\"* be|strong=\"H6086\"* brought|strong=\"H3381\"* down|strong=\"H3381\"* with|strong=\"H3381\"* the|strong=\"H3605\"* trees|strong=\"H6086\"* of|strong=\"H8432\"* Eden|strong=\"H5731\"* to|strong=\"H3381\"* the|strong=\"H3605\"* lower|strong=\"H8482\"* parts|strong=\"H8482\"* of|strong=\"H8432\"* the|strong=\"H3605\"* earth. You|strong=\"H3605\"* will|strong=\"H4310\"* lie|strong=\"H7901\"* in|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H3605\"* uncircumcised|strong=\"H6189\"*, with|strong=\"H3381\"* those|strong=\"H3605\"* who|strong=\"H4310\"* are|strong=\"H4310\"* slain|strong=\"H2491\"* by|strong=\"H3605\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* twelfth|strong=\"H8147\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* twelfth|strong=\"H8147\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* first day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, take|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* lamentation|strong=\"H7015\"* over|strong=\"H5921\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* tell him|strong=\"H5921\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 4, + "text": "I|strong=\"H5921\"* will|strong=\"H8064\"* leave|strong=\"H5203\"* you|strong=\"H6440\"* on|strong=\"H5921\"* the|strong=\"H3605\"* land|strong=\"H7704\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H5414\"* will|strong=\"H1320\"* lay|strong=\"H5414\"* your|strong=\"H5414\"* flesh|strong=\"H1320\"* on|strong=\"H5921\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"*," + }, + { + "verseNum": 6, + "text": "I|strong=\"H4480\"* will|strong=\"H2022\"* also water|strong=\"H8248\"* the|strong=\"H4480\"* land in|strong=\"H1818\"* which|strong=\"H2022\"* you|strong=\"H4480\"* swim with|strong=\"H4390\"* your|strong=\"H4480\"* blood|strong=\"H1818\"*," + }, + { + "verseNum": 7, + "text": "When|strong=\"H6051\"* I|strong=\"H3808\"* extinguish|strong=\"H3518\"* you|strong=\"H3808\"*, I|strong=\"H3808\"* will|strong=\"H8064\"* cover|strong=\"H3680\"* the|strong=\"H3680\"* heavens|strong=\"H8064\"*" + }, + { + "verseNum": 8, + "text": "I|strong=\"H5414\"* will|strong=\"H8064\"* make|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* bright|strong=\"H3974\"* lights|strong=\"H3974\"* of|strong=\"H5921\"* the|strong=\"H3605\"* sky|strong=\"H8064\"* dark|strong=\"H2822\"* over|strong=\"H5921\"* you|strong=\"H5414\"*," + }, + { + "verseNum": 9, + "text": "“I|strong=\"H5921\"* will|strong=\"H1471\"* also|strong=\"H1471\"* trouble|strong=\"H3707\"* the|strong=\"H5921\"* hearts|strong=\"H3820\"* of|strong=\"H5971\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"*," + }, + { + "verseNum": 10, + "text": "Yes, I|strong=\"H3117\"* will|strong=\"H4428\"* make|strong=\"H8074\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"* amazed|strong=\"H8074\"* at|strong=\"H5921\"* you|strong=\"H6440\"*," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 12, + "text": "I|strong=\"H4714\"* will|strong=\"H1471\"* cause your|strong=\"H3605\"* multitude|strong=\"H1995\"* to|strong=\"H4714\"* fall|strong=\"H5307\"* by|strong=\"H3605\"* the|strong=\"H3605\"* swords|strong=\"H2719\"* of|strong=\"H1368\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H5921\"* will|strong=\"H3808\"* destroy|strong=\"H3605\"* also|strong=\"H5750\"* all|strong=\"H3605\"* its|strong=\"H3605\"* animals from|strong=\"H5921\"* beside|strong=\"H5921\"* many|strong=\"H7227\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 14, + "text": "Then I|strong=\"H3212\"* will|strong=\"H4325\"* make their|strong=\"H3212\"* waters|strong=\"H4325\"* clear," + }, + { + "verseNum": 15, + "text": "“When|strong=\"H3588\"* I|strong=\"H3588\"* make|strong=\"H5414\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"* desolate|strong=\"H8074\"* and|strong=\"H3068\"* waste|strong=\"H8074\"*," + }, + { + "verseNum": 16, + "text": "“‘“This|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* lamentation|strong=\"H7015\"* with|strong=\"H5921\"* which|strong=\"H1931\"* they|strong=\"H5921\"* will|strong=\"H1471\"* lament|strong=\"H6969\"*. The|strong=\"H3605\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* will|strong=\"H1471\"* lament|strong=\"H6969\"* with|strong=\"H5921\"* this|strong=\"H1931\"*. They|strong=\"H5921\"* will|strong=\"H1471\"* lament|strong=\"H6969\"* with|strong=\"H5921\"* it|strong=\"H1931\"* over|strong=\"H5921\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* over|strong=\"H5921\"* all|strong=\"H3605\"* her|strong=\"H3605\"* multitude|strong=\"H1995\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 17, + "text": "Also|strong=\"H3068\"* in|strong=\"H8141\"* the|strong=\"H3068\"* twelfth|strong=\"H8147\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* fifteenth|strong=\"H2568\"* day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 18, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, wail|strong=\"H5091\"* for|strong=\"H5921\"* the|strong=\"H5921\"* multitude|strong=\"H1995\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* cast them|strong=\"H5921\"* down|strong=\"H3381\"*, even|strong=\"H5921\"* her|strong=\"H5921\"* and|strong=\"H1121\"* the|strong=\"H5921\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* the|strong=\"H5921\"* famous nations|strong=\"H1471\"*, to|strong=\"H3381\"* the|strong=\"H5921\"* lower|strong=\"H8482\"* parts|strong=\"H8482\"* of|strong=\"H1121\"* the|strong=\"H5921\"* earth, with|strong=\"H5921\"* those|strong=\"H5921\"* who|strong=\"H1121\"* go|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H5921\"* pit." + }, + { + "verseNum": 19, + "text": "Whom|strong=\"H4310\"* do|strong=\"H3381\"* you|strong=\"H3381\"* pass in|strong=\"H6189\"* beauty|strong=\"H5276\"*? Go|strong=\"H3381\"* down|strong=\"H3381\"*, and|strong=\"H3381\"* be laid|strong=\"H7901\"* with|strong=\"H3381\"* the|strong=\"H3381\"* uncircumcised|strong=\"H6189\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H3605\"* will|strong=\"H2719\"* fall|strong=\"H5307\"* among|strong=\"H8432\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H2491\"* slain|strong=\"H2491\"* by|strong=\"H5414\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*. She is|strong=\"H3605\"* delivered|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*. Draw|strong=\"H4900\"* her|strong=\"H3605\"* away|strong=\"H5307\"* with|strong=\"H3605\"* all|strong=\"H3605\"* her|strong=\"H3605\"* multitudes|strong=\"H1995\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H8432\"* strong|strong=\"H1368\"* among|strong=\"H8432\"* the|strong=\"H8432\"* mighty|strong=\"H1368\"* will|strong=\"H2719\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H3381\"* out|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* Sheol|strong=\"H7585\"*+ 32:21 Sheol is the place of the dead.* with|strong=\"H1696\"* those|strong=\"H1696\"* who|strong=\"H1368\"* help|strong=\"H5826\"* him|strong=\"H3381\"*. They|strong=\"H2719\"* have|strong=\"H1696\"* gone|strong=\"H3381\"* down|strong=\"H3381\"*. The|strong=\"H8432\"* uncircumcised|strong=\"H6189\"* lie|strong=\"H7901\"* still|strong=\"H7901\"*, slain|strong=\"H2491\"* by|strong=\"H2491\"* the|strong=\"H8432\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 22, + "text": "“Asshur is|strong=\"H3605\"* there|strong=\"H8033\"* with|strong=\"H3605\"* all|strong=\"H3605\"* her|strong=\"H3605\"* company|strong=\"H6951\"*. Her|strong=\"H3605\"* graves|strong=\"H6913\"* are|strong=\"H6913\"* all|strong=\"H3605\"* around|strong=\"H5439\"* her|strong=\"H3605\"*. All|strong=\"H3605\"* of|strong=\"H6951\"* them|strong=\"H5439\"* are|strong=\"H6913\"* slain|strong=\"H2491\"*, fallen|strong=\"H5307\"* by|strong=\"H3605\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*," + }, + { + "verseNum": 23, + "text": "whose|strong=\"H3605\"* graves|strong=\"H6913\"* are|strong=\"H6913\"* set|strong=\"H5414\"* in|strong=\"H5307\"* the|strong=\"H3605\"* uttermost parts|strong=\"H3411\"* of|strong=\"H6951\"* the|strong=\"H3605\"* pit, and|strong=\"H2719\"* her|strong=\"H3605\"* company|strong=\"H6951\"* is|strong=\"H3605\"* around|strong=\"H5439\"* her|strong=\"H3605\"* grave|strong=\"H6913\"*, all|strong=\"H3605\"* of|strong=\"H6951\"* them|strong=\"H5414\"* slain|strong=\"H2491\"*, fallen|strong=\"H5307\"* by|strong=\"H5414\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, who|strong=\"H3605\"* caused|strong=\"H5414\"* terror|strong=\"H2851\"* in|strong=\"H5307\"* the|strong=\"H3605\"* land of|strong=\"H6951\"* the|strong=\"H3605\"* living|strong=\"H2416\"*." + }, + { + "verseNum": 24, + "text": "“There|strong=\"H8033\"* is|strong=\"H3605\"* Elam|strong=\"H5867\"* and|strong=\"H2719\"* all|strong=\"H3605\"* her|strong=\"H3605\"* multitude|strong=\"H1995\"* around|strong=\"H5439\"* her|strong=\"H3605\"* grave|strong=\"H6900\"*; all|strong=\"H3605\"* of|strong=\"H3605\"* them|strong=\"H5414\"* slain|strong=\"H2491\"*, fallen|strong=\"H5307\"* by|strong=\"H5414\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, who|strong=\"H3605\"* have|strong=\"H5414\"* gone|strong=\"H3381\"* down|strong=\"H3381\"* uncircumcised|strong=\"H6189\"* into|strong=\"H3381\"* the|strong=\"H3605\"* lower|strong=\"H8482\"* parts|strong=\"H8482\"* of|strong=\"H3605\"* the|strong=\"H3605\"* earth, who|strong=\"H3605\"* caused|strong=\"H5414\"* their|strong=\"H3605\"* terror|strong=\"H2851\"* in|strong=\"H6189\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* the|strong=\"H3605\"* living|strong=\"H2416\"*, and|strong=\"H2719\"* have|strong=\"H5414\"* borne|strong=\"H5375\"* their|strong=\"H3605\"* shame|strong=\"H3639\"* with|strong=\"H3381\"* those|strong=\"H3605\"* who|strong=\"H3605\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3605\"* pit." + }, + { + "verseNum": 25, + "text": "They|strong=\"H3588\"* have|strong=\"H5414\"* made|strong=\"H5414\"* Elam a|strong=\"H3068\"* bed|strong=\"H4904\"* among|strong=\"H8432\"* the|strong=\"H3605\"* slain|strong=\"H2491\"* with|strong=\"H3381\"* all|strong=\"H3605\"* her|strong=\"H3605\"* multitude|strong=\"H1995\"*. Her|strong=\"H3605\"* graves|strong=\"H6913\"* are|strong=\"H6913\"* around|strong=\"H5439\"* her|strong=\"H3605\"*, all|strong=\"H3605\"* of|strong=\"H8432\"* them|strong=\"H5414\"* uncircumcised|strong=\"H6189\"*, slain|strong=\"H2491\"* by|strong=\"H5414\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*; for|strong=\"H3588\"* their|strong=\"H3605\"* terror|strong=\"H2851\"* was|strong=\"H5414\"* caused|strong=\"H5414\"* in|strong=\"H8432\"* the|strong=\"H3605\"* land of|strong=\"H8432\"* the|strong=\"H3605\"* living|strong=\"H2416\"*, and|strong=\"H2719\"* they|strong=\"H3588\"* have|strong=\"H5414\"* borne|strong=\"H5375\"* their|strong=\"H3605\"* shame|strong=\"H3639\"* with|strong=\"H3381\"* those|strong=\"H3605\"* who|strong=\"H3605\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3605\"* pit. He|strong=\"H3588\"* is|strong=\"H3605\"* put|strong=\"H5414\"* among|strong=\"H8432\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H6913\"* slain|strong=\"H2491\"*." + }, + { + "verseNum": 26, + "text": "“There|strong=\"H8033\"* is|strong=\"H3605\"* Meshech|strong=\"H4902\"*, Tubal|strong=\"H8422\"*, and|strong=\"H2719\"* all|strong=\"H3605\"* their|strong=\"H3605\"* multitude|strong=\"H1995\"*. Their|strong=\"H3605\"* graves|strong=\"H6913\"* are|strong=\"H6913\"* around|strong=\"H5439\"* them|strong=\"H5414\"*, all|strong=\"H3605\"* of|strong=\"H3605\"* them|strong=\"H5414\"* uncircumcised|strong=\"H6189\"*, slain|strong=\"H2490\"* by|strong=\"H5414\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* caused|strong=\"H5414\"* their|strong=\"H3605\"* terror|strong=\"H2851\"* in|strong=\"H6189\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* the|strong=\"H3605\"* living|strong=\"H2416\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* lie|strong=\"H7901\"* with|strong=\"H5921\"* the|strong=\"H5921\"* mighty|strong=\"H1368\"* who|strong=\"H1368\"* are|strong=\"H6106\"* fallen|strong=\"H5307\"* of|strong=\"H3627\"* the|strong=\"H5921\"* uncircumcised|strong=\"H6189\"*, who|strong=\"H1368\"* have|strong=\"H1961\"* gone|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"* with|strong=\"H5921\"* their|strong=\"H5414\"* weapons|strong=\"H3627\"* of|strong=\"H3627\"* war|strong=\"H4421\"* and|strong=\"H7218\"* have|strong=\"H1961\"* laid|strong=\"H5414\"* their|strong=\"H5414\"* swords|strong=\"H2719\"* under|strong=\"H8478\"* their|strong=\"H5414\"* heads|strong=\"H7218\"*. Their|strong=\"H5414\"* iniquities|strong=\"H5771\"* are|strong=\"H6106\"* on|strong=\"H5921\"* their|strong=\"H5414\"* bones|strong=\"H6106\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H1961\"* the|strong=\"H5921\"* terror|strong=\"H2851\"* of|strong=\"H3627\"* the|strong=\"H5921\"* mighty|strong=\"H1368\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H3627\"* the|strong=\"H5921\"* living|strong=\"H2416\"*." + }, + { + "verseNum": 28, + "text": "“But you|strong=\"H8432\"* will|strong=\"H2719\"* be|strong=\"H2719\"* broken|strong=\"H7665\"* among|strong=\"H8432\"* the|strong=\"H8432\"* uncircumcised|strong=\"H6189\"*, and|strong=\"H2719\"* will|strong=\"H2719\"* lie|strong=\"H7901\"* with|strong=\"H7901\"* those who|strong=\"H2491\"* are|strong=\"H2491\"* slain|strong=\"H2491\"* by|strong=\"H2491\"* the|strong=\"H8432\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 29, + "text": "“There|strong=\"H8033\"* is|strong=\"H3605\"* Edom, her|strong=\"H3605\"* kings|strong=\"H4428\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* her|strong=\"H3605\"* princes|strong=\"H5387\"*, who|strong=\"H3605\"* in|strong=\"H4428\"* their|strong=\"H3605\"* might|strong=\"H1369\"* are|strong=\"H1992\"* laid|strong=\"H5414\"* with|strong=\"H3381\"* those|strong=\"H1992\"* who|strong=\"H3605\"* are|strong=\"H1992\"* slain|strong=\"H2491\"* by|strong=\"H5414\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*. They|strong=\"H1992\"* will|strong=\"H4428\"* lie|strong=\"H7901\"* with|strong=\"H3381\"* the|strong=\"H3605\"* uncircumcised|strong=\"H6189\"*, and|strong=\"H4428\"* with|strong=\"H3381\"* those|strong=\"H1992\"* who|strong=\"H3605\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3605\"* pit." + }, + { + "verseNum": 30, + "text": "“There|strong=\"H8033\"* are|strong=\"H2491\"* the|strong=\"H3605\"* princes|strong=\"H5257\"* of|strong=\"H3605\"* the|strong=\"H3605\"* north|strong=\"H6828\"*, all|strong=\"H3605\"* of|strong=\"H3605\"* them|strong=\"H3381\"*, and|strong=\"H2719\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Sidonians|strong=\"H6722\"*, who|strong=\"H3605\"* have|strong=\"H3605\"* gone|strong=\"H3381\"* down|strong=\"H3381\"* with|strong=\"H3381\"* the|strong=\"H3605\"* slain|strong=\"H2491\"*. They|strong=\"H8033\"* are|strong=\"H2491\"* put|strong=\"H3381\"* to|strong=\"H3381\"* shame|strong=\"H3639\"* in|strong=\"H6189\"* the|strong=\"H3605\"* terror|strong=\"H2851\"* which|strong=\"H8033\"* they|strong=\"H8033\"* caused by|strong=\"H3605\"* their|strong=\"H3605\"* might|strong=\"H1369\"*. They|strong=\"H8033\"* lie|strong=\"H7901\"* uncircumcised|strong=\"H6189\"* with|strong=\"H3381\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H2491\"* slain|strong=\"H2491\"* by|strong=\"H3605\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, and|strong=\"H2719\"* bear|strong=\"H5375\"* their|strong=\"H3605\"* shame|strong=\"H3639\"* with|strong=\"H3381\"* those|strong=\"H3605\"* who|strong=\"H3605\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3605\"* pit." + }, + { + "verseNum": 31, + "text": "“Pharaoh|strong=\"H6547\"* will|strong=\"H2719\"* see|strong=\"H7200\"* them|strong=\"H5921\"* and|strong=\"H2719\"* will|strong=\"H2719\"* be|strong=\"H2719\"* comforted|strong=\"H5162\"* over|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* multitude|strong=\"H1995\"*, even|strong=\"H5921\"* Pharaoh|strong=\"H6547\"* and|strong=\"H2719\"* all|strong=\"H3605\"* his|strong=\"H3605\"* army|strong=\"H2428\"*, slain|strong=\"H2491\"* by|strong=\"H5921\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 32, + "text": "“For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5414\"* put|strong=\"H5414\"* his|strong=\"H3605\"* terror|strong=\"H2851\"* in|strong=\"H8432\"* the|strong=\"H3605\"* land of|strong=\"H8432\"* the|strong=\"H3605\"* living|strong=\"H2416\"*. He|strong=\"H3588\"* will|strong=\"H2719\"* be|strong=\"H5414\"* laid|strong=\"H5414\"* among|strong=\"H8432\"* the|strong=\"H3605\"* uncircumcised|strong=\"H6189\"*, with|strong=\"H7901\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H2491\"* slain|strong=\"H2491\"* by|strong=\"H5414\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, even|strong=\"H3588\"* Pharaoh|strong=\"H6547\"* and|strong=\"H2719\"* all|strong=\"H3605\"* his|strong=\"H3605\"* multitude|strong=\"H1995\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H5414\"* people|strong=\"H5971\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H5414\"*, ‘When|strong=\"H3588\"* I|strong=\"H3588\"* bring|strong=\"H3947\"* the|strong=\"H5921\"* sword|strong=\"H2719\"* on|strong=\"H5921\"* a|strong=\"H3068\"* land, and|strong=\"H1121\"* the|strong=\"H5921\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H5921\"* land take|strong=\"H3947\"* a|strong=\"H3068\"* man|strong=\"H1121\"* from|strong=\"H5921\"* among|strong=\"H5921\"* them|strong=\"H5414\"*, and|strong=\"H1121\"* set|strong=\"H5414\"* him|strong=\"H5414\"* for|strong=\"H3588\"* their|strong=\"H5414\"* watchman|strong=\"H6822\"*," + }, + { + "verseNum": 3, + "text": "if|strong=\"H7200\"*, when|strong=\"H7200\"* he|strong=\"H5921\"* sees|strong=\"H7200\"* the|strong=\"H5921\"* sword|strong=\"H2719\"* come|strong=\"H5971\"* on|strong=\"H5921\"* the|strong=\"H5921\"* land, he|strong=\"H5921\"* blows|strong=\"H8628\"* the|strong=\"H5921\"* trumpet|strong=\"H7782\"* and|strong=\"H5971\"* warns|strong=\"H2094\"* the|strong=\"H5921\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 4, + "text": "then|strong=\"H1961\"* whoever hears|strong=\"H8085\"* the|strong=\"H8085\"* sound|strong=\"H6963\"* of|strong=\"H7218\"* the|strong=\"H8085\"* trumpet|strong=\"H7782\"* and|strong=\"H6963\"* doesn’t heed|strong=\"H8085\"* the|strong=\"H8085\"* warning|strong=\"H2094\"*, if|strong=\"H1961\"* the|strong=\"H8085\"* sword|strong=\"H2719\"* comes|strong=\"H1961\"* and|strong=\"H6963\"* takes|strong=\"H3947\"* him|strong=\"H3947\"* away|strong=\"H3947\"*, his|strong=\"H3947\"* blood|strong=\"H1818\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H1961\"* his|strong=\"H3947\"* own|strong=\"H1961\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H1931\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* trumpet|strong=\"H7782\"* and|strong=\"H6963\"* didn’t take|strong=\"H1961\"* warning|strong=\"H2094\"*. His|strong=\"H8085\"* blood|strong=\"H1818\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H1961\"* him|strong=\"H6963\"*; whereas if|strong=\"H1961\"* he|strong=\"H1931\"* had|strong=\"H1961\"* heeded|strong=\"H8085\"* the|strong=\"H8085\"* warning|strong=\"H2094\"*, he|strong=\"H1931\"* would|strong=\"H5315\"* have|strong=\"H1961\"* delivered|strong=\"H4422\"* his|strong=\"H8085\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* the|strong=\"H7200\"* watchman|strong=\"H6822\"* sees|strong=\"H7200\"* the|strong=\"H7200\"* sword|strong=\"H2719\"* come|strong=\"H5971\"* and|strong=\"H3027\"* doesn’t blow|strong=\"H8628\"* the|strong=\"H7200\"* trumpet|strong=\"H7782\"*, and|strong=\"H3027\"* the|strong=\"H7200\"* people|strong=\"H5971\"* aren’t warned|strong=\"H2094\"*, and|strong=\"H3027\"* the|strong=\"H7200\"* sword|strong=\"H2719\"* comes|strong=\"H1992\"* and|strong=\"H3027\"* takes|strong=\"H3947\"* any|strong=\"H5315\"* person|strong=\"H5315\"* from|strong=\"H5315\"* among|strong=\"H5971\"* them|strong=\"H1992\"*, he|strong=\"H1931\"* is|strong=\"H1931\"* taken|strong=\"H3947\"* away|strong=\"H3947\"* in|strong=\"H5315\"* his|strong=\"H3947\"* iniquity|strong=\"H5771\"*, but|strong=\"H3588\"* his|strong=\"H3947\"* blood|strong=\"H1818\"* I|strong=\"H3588\"* will|strong=\"H5971\"* require|strong=\"H1875\"* at|strong=\"H7200\"* the|strong=\"H7200\"* watchman|strong=\"H6822\"*’s hand|strong=\"H3027\"*.’" + }, + { + "verseNum": 7, + "text": "“So|strong=\"H4480\"* you|strong=\"H5414\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, I|strong=\"H5414\"* have|strong=\"H1121\"* set|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* watchman|strong=\"H6822\"* to|strong=\"H3478\"* the|strong=\"H8085\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Therefore hear|strong=\"H8085\"* the|strong=\"H8085\"* word|strong=\"H1697\"* from|strong=\"H4480\"* my|strong=\"H8085\"* mouth|strong=\"H6310\"*, and|strong=\"H1121\"* give|strong=\"H5414\"* them|strong=\"H5414\"* warnings from|strong=\"H4480\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H1696\"* I|strong=\"H3808\"* tell|strong=\"H1696\"* the|strong=\"H1870\"* wicked|strong=\"H7563\"*, ‘O|strong=\"H3068\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"*, you|strong=\"H3808\"* will|strong=\"H7563\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*,’ and|strong=\"H3027\"* you|strong=\"H3808\"* don’t speak|strong=\"H1696\"* to|strong=\"H1696\"* warn|strong=\"H2094\"* the|strong=\"H1870\"* wicked|strong=\"H7563\"* from|strong=\"H3027\"* his|strong=\"H3027\"* way|strong=\"H1870\"*, that|strong=\"H1931\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* will|strong=\"H7563\"* die|strong=\"H4191\"* in|strong=\"H4191\"* his|strong=\"H3027\"* iniquity|strong=\"H5771\"*, but|strong=\"H3808\"* I|strong=\"H3808\"* will|strong=\"H7563\"* require|strong=\"H1245\"* his|strong=\"H3027\"* blood|strong=\"H1818\"* at|strong=\"H4191\"* your|strong=\"H1245\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 9, + "text": "Nevertheless|strong=\"H3588\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* warn|strong=\"H2094\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"* of|strong=\"H1870\"* his|strong=\"H7725\"* way|strong=\"H1870\"* to|strong=\"H7725\"* turn|strong=\"H7725\"* from|strong=\"H4480\"* it|strong=\"H1931\"*, and|strong=\"H7725\"* he|strong=\"H1931\"* doesn’t turn|strong=\"H7725\"* from|strong=\"H4480\"* his|strong=\"H7725\"* way|strong=\"H1870\"*; he|strong=\"H1931\"* will|strong=\"H5315\"* die|strong=\"H4191\"* in|strong=\"H4191\"* his|strong=\"H7725\"* iniquity|strong=\"H5771\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H7563\"* delivered|strong=\"H5337\"* your|strong=\"H7725\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 10, + "text": "“You|strong=\"H3588\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, tell the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*: ‘You|strong=\"H3588\"* say|strong=\"H3478\"* this|strong=\"H3651\"*, “Our|strong=\"H5921\"* transgressions|strong=\"H6588\"* and|strong=\"H1121\"* our|strong=\"H5921\"* sins|strong=\"H2403\"* are|strong=\"H1121\"* on|strong=\"H5921\"* us|strong=\"H5921\"*, and|strong=\"H1121\"* we|strong=\"H3068\"* pine away|strong=\"H4743\"* in|strong=\"H5921\"* them|strong=\"H5921\"*. How|strong=\"H3588\"* then|strong=\"H3651\"* can|strong=\"H1004\"* we|strong=\"H3068\"* live|strong=\"H2421\"*?”’" + }, + { + "verseNum": 11, + "text": "Tell them|strong=\"H7725\"*, ‘“As|strong=\"H3588\"* I|strong=\"H3588\"* live|strong=\"H2421\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “I|strong=\"H3588\"* have|strong=\"H3478\"* no|strong=\"H3478\"* pleasure|strong=\"H2654\"* in|strong=\"H3478\"* the|strong=\"H5002\"* death|strong=\"H4194\"* of|strong=\"H1004\"* the|strong=\"H5002\"* wicked|strong=\"H7563\"*, but|strong=\"H3588\"* that|strong=\"H3588\"* the|strong=\"H5002\"* wicked|strong=\"H7563\"* turn|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* way|strong=\"H1870\"* and|strong=\"H3478\"* live|strong=\"H2421\"*. Turn|strong=\"H7725\"*, turn|strong=\"H7725\"* from|strong=\"H7725\"* your|strong=\"H7725\"* evil|strong=\"H7451\"* ways|strong=\"H1870\"*! For|strong=\"H3588\"* why|strong=\"H4100\"* will|strong=\"H3478\"* you|strong=\"H3588\"* die|strong=\"H4191\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*?”’" + }, + { + "verseNum": 12, + "text": "“You|strong=\"H3117\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H7563\"*, tell the|strong=\"H7725\"* children|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H7725\"* people|strong=\"H5971\"*, ‘The|strong=\"H7725\"* righteousness|strong=\"H6666\"* of|strong=\"H1121\"* the|strong=\"H7725\"* righteous|strong=\"H6662\"* will|strong=\"H5971\"* not|strong=\"H3808\"* deliver|strong=\"H5337\"* him|strong=\"H7725\"* in|strong=\"H3117\"* the|strong=\"H7725\"* day|strong=\"H3117\"* of|strong=\"H1121\"* his|strong=\"H7725\"* disobedience. And|strong=\"H1121\"* as|strong=\"H3117\"* for|strong=\"H3117\"* the|strong=\"H7725\"* wickedness|strong=\"H7562\"* of|strong=\"H1121\"* the|strong=\"H7725\"* wicked|strong=\"H7563\"*, he|strong=\"H3117\"* will|strong=\"H5971\"* not|strong=\"H3808\"* fall|strong=\"H3782\"* by|strong=\"H3117\"* it|strong=\"H7725\"* in|strong=\"H3117\"* the|strong=\"H7725\"* day|strong=\"H3117\"* that|strong=\"H5971\"* he|strong=\"H3117\"* turns|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* wickedness|strong=\"H7562\"*; neither|strong=\"H3808\"* will|strong=\"H5971\"* he|strong=\"H3117\"* who|strong=\"H5971\"* is|strong=\"H3117\"* righteous|strong=\"H6662\"* be|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H7725\"* live|strong=\"H2421\"* by|strong=\"H3117\"* it|strong=\"H7725\"* in|strong=\"H3117\"* the|strong=\"H7725\"* day|strong=\"H3117\"* that|strong=\"H5971\"* he|strong=\"H3117\"* sins|strong=\"H2398\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H2421\"* I|strong=\"H5921\"* tell|strong=\"H3605\"* the|strong=\"H3605\"* righteous|strong=\"H6662\"* that|strong=\"H3605\"* he|strong=\"H1931\"* will|strong=\"H6662\"* surely|strong=\"H4191\"* live|strong=\"H2421\"*, if|strong=\"H1931\"* he|strong=\"H1931\"* trusts in|strong=\"H5921\"* his|strong=\"H3605\"* righteousness|strong=\"H6666\"* and|strong=\"H6213\"* commits|strong=\"H6213\"* iniquity|strong=\"H5766\"*, none|strong=\"H3808\"* of|strong=\"H5921\"* his|strong=\"H3605\"* righteous|strong=\"H6662\"* deeds|strong=\"H6666\"* will|strong=\"H6662\"* be|strong=\"H4191\"* remembered|strong=\"H2142\"*; but|strong=\"H3808\"* he|strong=\"H1931\"* will|strong=\"H6662\"* die|strong=\"H4191\"* in|strong=\"H5921\"* his|strong=\"H3605\"* iniquity|strong=\"H5766\"* that|strong=\"H3605\"* he|strong=\"H1931\"* has|strong=\"H3605\"* committed|strong=\"H6213\"*." + }, + { + "verseNum": 14, + "text": "Again|strong=\"H7725\"*, when|strong=\"H7725\"* I|strong=\"H6666\"* say|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H6213\"* wicked|strong=\"H7563\"*, “You|strong=\"H7725\"* will|strong=\"H7563\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*,” if he|strong=\"H6213\"* turns|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* sin|strong=\"H2403\"* and|strong=\"H7725\"* does|strong=\"H6213\"* that|strong=\"H6213\"* which|strong=\"H2403\"* is|strong=\"H7563\"* lawful|strong=\"H4941\"* and|strong=\"H7725\"* right|strong=\"H4941\"*," + }, + { + "verseNum": 15, + "text": "if the|strong=\"H6213\"* wicked|strong=\"H7563\"* restore|strong=\"H7725\"* the|strong=\"H6213\"* pledge|strong=\"H2258\"*, give|strong=\"H7725\"* again|strong=\"H7725\"* that|strong=\"H2416\"* which|strong=\"H2416\"* he|strong=\"H6213\"* had|strong=\"H2416\"* taken|strong=\"H6213\"* by|strong=\"H4191\"* robbery|strong=\"H1500\"*, walk|strong=\"H1980\"* in|strong=\"H1980\"* the|strong=\"H6213\"* statutes|strong=\"H2708\"* of|strong=\"H4191\"* life|strong=\"H2416\"*, committing|strong=\"H6213\"* no|strong=\"H3808\"* iniquity|strong=\"H5766\"*, he|strong=\"H6213\"* will|strong=\"H7563\"* surely|strong=\"H4191\"* live|strong=\"H2421\"*. He|strong=\"H6213\"* will|strong=\"H7563\"* not|strong=\"H3808\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 16, + "text": "None|strong=\"H3808\"* of|strong=\"H3605\"* his|strong=\"H3605\"* sins|strong=\"H2403\"* that|strong=\"H3605\"* he|strong=\"H6213\"* has|strong=\"H3605\"* committed|strong=\"H6213\"* will|strong=\"H3808\"* be|strong=\"H3808\"* remembered|strong=\"H2142\"* against|strong=\"H2398\"* him|strong=\"H6213\"*. He|strong=\"H6213\"* has|strong=\"H3605\"* done|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H2403\"* is|strong=\"H3605\"* lawful|strong=\"H4941\"* and|strong=\"H4941\"* right|strong=\"H4941\"*. He|strong=\"H6213\"* will|strong=\"H3808\"* surely|strong=\"H2421\"* live|strong=\"H2421\"*." + }, + { + "verseNum": 17, + "text": "“‘Yet|strong=\"H3808\"* the|strong=\"H1870\"* children|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H3808\"* people|strong=\"H5971\"* say, “The|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1121\"* the|strong=\"H1870\"* Lord is|strong=\"H1870\"* not|strong=\"H3808\"* fair;” but|strong=\"H3808\"* as|strong=\"H5971\"* for|strong=\"H1121\"* them|strong=\"H1992\"*, their|strong=\"H1992\"* way|strong=\"H1870\"* is|strong=\"H1870\"* not|strong=\"H3808\"* fair." + }, + { + "verseNum": 18, + "text": "When|strong=\"H7725\"* the|strong=\"H6213\"* righteous|strong=\"H6662\"* turns|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* righteousness|strong=\"H6666\"* and|strong=\"H7725\"* commits|strong=\"H6213\"* iniquity|strong=\"H5766\"*, he|strong=\"H6213\"* will|strong=\"H6662\"* even|strong=\"H6213\"* die|strong=\"H4191\"* therein." + }, + { + "verseNum": 19, + "text": "When|strong=\"H2421\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* turns|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* wickedness|strong=\"H7564\"* and|strong=\"H7725\"* does|strong=\"H6213\"* that|strong=\"H1931\"* which|strong=\"H1931\"* is|strong=\"H1931\"* lawful|strong=\"H4941\"* and|strong=\"H7725\"* right|strong=\"H4941\"*, he|strong=\"H1931\"* will|strong=\"H7563\"* live|strong=\"H2421\"* by|strong=\"H5921\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 20, + "text": "Yet|strong=\"H3808\"* you|strong=\"H3808\"* say|strong=\"H3478\"*, “The|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1004\"* the|strong=\"H1870\"* Lord is|strong=\"H1870\"* not|strong=\"H3808\"* fair.” House|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, I|strong=\"H3808\"* will|strong=\"H3478\"* judge|strong=\"H8199\"* every|strong=\"H3478\"* one|strong=\"H3808\"* of|strong=\"H1004\"* you|strong=\"H3808\"* after|strong=\"H1004\"* his|strong=\"H3478\"* ways|strong=\"H1870\"*.’”" + }, + { + "verseNum": 21, + "text": "In|strong=\"H8141\"* the|strong=\"H5221\"* twelfth|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H8141\"* our|strong=\"H1961\"* captivity|strong=\"H1546\"*, in|strong=\"H8141\"* the|strong=\"H5221\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H5221\"* fifth|strong=\"H2568\"* day|strong=\"H2320\"* of|strong=\"H8141\"* the|strong=\"H5221\"* month|strong=\"H2320\"*, one|strong=\"H1961\"* who|strong=\"H6412\"* had|strong=\"H1961\"* escaped|strong=\"H6412\"* out|strong=\"H8147\"* of|strong=\"H8141\"* Jerusalem|strong=\"H3389\"* came|strong=\"H1961\"* to|strong=\"H1961\"* me|strong=\"H5221\"*, saying, “The|strong=\"H5221\"* city|strong=\"H5892\"* has|strong=\"H1961\"* been|strong=\"H1961\"* defeated|strong=\"H5221\"*!”" + }, + { + "verseNum": 22, + "text": "Now|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* had|strong=\"H3068\"* been|strong=\"H1961\"* on|strong=\"H3027\"* me|strong=\"H6440\"* in|strong=\"H3068\"* the|strong=\"H6440\"* evening|strong=\"H6153\"*, before|strong=\"H6440\"* he|strong=\"H5704\"* who|strong=\"H3068\"* had|strong=\"H3068\"* escaped|strong=\"H6412\"* came|strong=\"H1961\"*; and|strong=\"H3068\"* he|strong=\"H5704\"* had|strong=\"H3068\"* opened|strong=\"H6605\"* my|strong=\"H3068\"* mouth|strong=\"H6310\"* until|strong=\"H5704\"* he|strong=\"H5704\"* came|strong=\"H1961\"* to|strong=\"H5704\"* me|strong=\"H6440\"* in|strong=\"H3068\"* the|strong=\"H6440\"* morning|strong=\"H1242\"*; and|strong=\"H3068\"* my|strong=\"H3068\"* mouth|strong=\"H6310\"* was|strong=\"H3068\"* opened|strong=\"H6605\"*, and|strong=\"H3068\"* I|strong=\"H5704\"* was|strong=\"H3068\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* mute." + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 24, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, those|strong=\"H5921\"* who|strong=\"H1121\"* inhabit|strong=\"H3427\"* the|strong=\"H5921\"* waste|strong=\"H2723\"* places|strong=\"H2723\"* in|strong=\"H3427\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Israel|strong=\"H3478\"* speak, saying, ‘Abraham was|strong=\"H1961\"* one|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H5414\"* inherited|strong=\"H3423\"* the|strong=\"H5921\"* land; but|strong=\"H1961\"* we|strong=\"H3068\"* are|strong=\"H1121\"* many|strong=\"H7227\"*. The|strong=\"H5921\"* land is|strong=\"H3478\"* given|strong=\"H5414\"* us|strong=\"H5414\"* for|strong=\"H5921\"* inheritance|strong=\"H3423\"*.’" + }, + { + "verseNum": 25, + "text": "Therefore|strong=\"H3651\"* tell them|strong=\"H5921\"*, ‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “You|strong=\"H5921\"* eat with|strong=\"H5921\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*, and|strong=\"H5869\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"* to|strong=\"H5921\"* your|strong=\"H5921\"* idols|strong=\"H1544\"*, and|strong=\"H5869\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"*. So|strong=\"H3651\"* should you|strong=\"H5921\"* possess|strong=\"H3423\"* the|strong=\"H5921\"* land?" + }, + { + "verseNum": 26, + "text": "You|strong=\"H5921\"* stand|strong=\"H5975\"* on|strong=\"H5921\"* your|strong=\"H5921\"* sword|strong=\"H2719\"*, you|strong=\"H5921\"* work|strong=\"H6213\"* abomination|strong=\"H8441\"*, and|strong=\"H2719\"* every|strong=\"H6213\"* one|strong=\"H6213\"* of|strong=\"H5921\"* you|strong=\"H5921\"* defiles|strong=\"H2930\"* his|strong=\"H5921\"* neighbor|strong=\"H7453\"*’s wife. So|strong=\"H6213\"* should|strong=\"H6213\"* you|strong=\"H5921\"* possess|strong=\"H3423\"* the|strong=\"H5921\"* land?”’" + }, + { + "verseNum": 27, + "text": "“You|strong=\"H5414\"* shall|strong=\"H2719\"* tell them|strong=\"H5414\"*, ‘The|strong=\"H6440\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “As|strong=\"H6440\"* I|strong=\"H5414\"* live|strong=\"H2416\"*, surely|strong=\"H4191\"* those|strong=\"H5921\"* who|strong=\"H2416\"* are|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* waste|strong=\"H2723\"* places|strong=\"H2723\"* will|strong=\"H2719\"* fall|strong=\"H5307\"* by|strong=\"H5921\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*. I|strong=\"H5414\"* will|strong=\"H2719\"* give|strong=\"H5414\"* whoever|strong=\"H4191\"* is|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* open|strong=\"H6440\"* field|strong=\"H7704\"* to|strong=\"H4191\"* the|strong=\"H6440\"* animals|strong=\"H2416\"* to|strong=\"H4191\"* be|strong=\"H4191\"* devoured, and|strong=\"H6440\"* those|strong=\"H5921\"* who|strong=\"H2416\"* are|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* strongholds and|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* caves|strong=\"H4631\"* will|strong=\"H2719\"* die|strong=\"H4191\"* of|strong=\"H6440\"* the|strong=\"H6440\"* pestilence|strong=\"H1698\"*." + }, + { + "verseNum": 28, + "text": "I|strong=\"H5414\"* will|strong=\"H3478\"* make|strong=\"H5414\"* the|strong=\"H5414\"* land|strong=\"H1347\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"* and|strong=\"H3478\"* an|strong=\"H5414\"* astonishment|strong=\"H8074\"*. The|strong=\"H5414\"* pride|strong=\"H1347\"* of|strong=\"H2022\"* her|strong=\"H5414\"* power|strong=\"H5797\"* will|strong=\"H3478\"* cease|strong=\"H7673\"*. The|strong=\"H5414\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"* will|strong=\"H3478\"* be|strong=\"H3478\"* desolate|strong=\"H8074\"*, so|strong=\"H5414\"* that|strong=\"H3478\"* no|strong=\"H5414\"* one|strong=\"H8074\"* will|strong=\"H3478\"* pass|strong=\"H5674\"* through|strong=\"H5674\"*." + }, + { + "verseNum": 29, + "text": "Then|strong=\"H5414\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, when|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* made|strong=\"H6213\"* the|strong=\"H3605\"* land a|strong=\"H3068\"* desolation|strong=\"H8077\"* and|strong=\"H3068\"* an|strong=\"H6213\"* astonishment|strong=\"H4923\"* because|strong=\"H3588\"* of|strong=\"H3068\"* all|strong=\"H3605\"* their|strong=\"H3605\"* abominations|strong=\"H8441\"* which|strong=\"H3068\"* they|strong=\"H3588\"* have|strong=\"H3068\"* committed|strong=\"H6213\"*.”’" + }, + { + "verseNum": 30, + "text": "“As|strong=\"H1697\"* for|strong=\"H3068\"* you|strong=\"H4100\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H3068\"* people|strong=\"H5971\"* talk|strong=\"H1696\"* about|strong=\"H1697\"* you|strong=\"H4100\"* by|strong=\"H3068\"* the|strong=\"H8085\"* walls|strong=\"H7023\"* and|strong=\"H1121\"* in|strong=\"H3068\"* the|strong=\"H8085\"* doors|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H8085\"* houses|strong=\"H1004\"*, and|strong=\"H1121\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* one|strong=\"H1121\"* another, everyone to|strong=\"H1696\"* his|strong=\"H3068\"* brother, saying|strong=\"H1697\"*, ‘Please|strong=\"H4994\"* come|strong=\"H3318\"* and|strong=\"H1121\"* hear|strong=\"H8085\"* what|strong=\"H4100\"* the|strong=\"H8085\"* word|strong=\"H1697\"* is|strong=\"H3068\"* that|strong=\"H5971\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Yahweh|strong=\"H3068\"*.’" + }, + { + "verseNum": 31, + "text": "They|strong=\"H1992\"* come|strong=\"H1980\"* to|strong=\"H1980\"* you|strong=\"H3588\"* as|strong=\"H1697\"* the|strong=\"H6440\"* people|strong=\"H5971\"* come|strong=\"H1980\"*, and|strong=\"H1980\"* they|strong=\"H1992\"* sit|strong=\"H3427\"* before|strong=\"H6440\"* you|strong=\"H3588\"* as|strong=\"H1697\"* my|strong=\"H8085\"* people|strong=\"H5971\"*, and|strong=\"H1980\"* they|strong=\"H1992\"* hear|strong=\"H8085\"* your|strong=\"H6440\"* words|strong=\"H1697\"*, but|strong=\"H3588\"* don’t do|strong=\"H6213\"* them|strong=\"H1992\"*; for|strong=\"H3588\"* with|strong=\"H1980\"* their|strong=\"H6440\"* mouth|strong=\"H6310\"* they|strong=\"H1992\"* show|strong=\"H6213\"* much|strong=\"H6310\"* love|strong=\"H5690\"*, but|strong=\"H3588\"* their|strong=\"H6440\"* heart|strong=\"H3820\"* goes|strong=\"H1980\"* after|strong=\"H3588\"* their|strong=\"H6440\"* gain|strong=\"H1215\"*." + }, + { + "verseNum": 32, + "text": "Behold|strong=\"H2005\"*, you|strong=\"H6213\"* are|strong=\"H1697\"* to|strong=\"H6213\"* them|strong=\"H6213\"* as|strong=\"H1697\"* a|strong=\"H3068\"* very|strong=\"H6213\"* lovely|strong=\"H5690\"* song|strong=\"H7892\"* of|strong=\"H1697\"* one|strong=\"H3303\"* who|strong=\"H6213\"* has|strong=\"H1697\"* a|strong=\"H3068\"* pleasant|strong=\"H3303\"* voice|strong=\"H6963\"*, and|strong=\"H6963\"* can|strong=\"H6213\"* play|strong=\"H5059\"* well|strong=\"H2895\"* on|strong=\"H6213\"* an|strong=\"H6213\"* instrument|strong=\"H5059\"*; for|strong=\"H6213\"* they|strong=\"H6213\"* hear|strong=\"H8085\"* your|strong=\"H8085\"* words|strong=\"H1697\"*, but|strong=\"H8085\"* they|strong=\"H6213\"* don’t do|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 33, + "text": "“When|strong=\"H3588\"* this|strong=\"H3588\"* comes|strong=\"H1961\"* to|strong=\"H1961\"* pass|strong=\"H1961\"*—behold|strong=\"H2009\"*, it|strong=\"H3588\"* comes|strong=\"H1961\"*—then|strong=\"H1961\"* they|strong=\"H3588\"* will|strong=\"H1961\"* know|strong=\"H3045\"* that|strong=\"H3588\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* has|strong=\"H1961\"* been|strong=\"H1961\"* among|strong=\"H8432\"* them|strong=\"H8432\"*.”" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, prophesy|strong=\"H5012\"* against|strong=\"H5921\"* the|strong=\"H5921\"* shepherds|strong=\"H7462\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Prophesy|strong=\"H5012\"*, and|strong=\"H1121\"* tell them|strong=\"H5921\"*, even|strong=\"H3808\"* the|strong=\"H5921\"* shepherds|strong=\"H7462\"*, ‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Woe|strong=\"H1945\"* to|strong=\"H3478\"* the|strong=\"H5921\"* shepherds|strong=\"H7462\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H1121\"* feed|strong=\"H7462\"* themselves|strong=\"H7462\"*! Shouldn’t the|strong=\"H5921\"* shepherds|strong=\"H7462\"* feed|strong=\"H7462\"* the|strong=\"H5921\"* sheep|strong=\"H6629\"*?" + }, + { + "verseNum": 3, + "text": "You|strong=\"H3808\"* eat|strong=\"H7462\"* the|strong=\"H3808\"* fat|strong=\"H2459\"*. You|strong=\"H3808\"* clothe|strong=\"H3847\"* yourself|strong=\"H3847\"* with|strong=\"H3847\"* the|strong=\"H3808\"* wool|strong=\"H6785\"*. You|strong=\"H3808\"* kill|strong=\"H2076\"* the|strong=\"H3808\"* fatlings, but|strong=\"H3808\"* you|strong=\"H3808\"* don’t feed|strong=\"H7462\"* the|strong=\"H3808\"* sheep|strong=\"H6629\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H7725\"* haven’t strengthened|strong=\"H2388\"* the|strong=\"H7725\"* diseased|strong=\"H2470\"*. You|strong=\"H7725\"* haven’t healed|strong=\"H7495\"* that|strong=\"H3808\"* which was|strong=\"H3808\"* sick|strong=\"H2470\"*. You|strong=\"H7725\"* haven’t bound|strong=\"H2280\"* up|strong=\"H2280\"* that|strong=\"H3808\"* which was|strong=\"H3808\"* broken|strong=\"H7665\"*. You|strong=\"H7725\"* haven’t brought|strong=\"H7725\"* back|strong=\"H7725\"* that|strong=\"H3808\"* which was|strong=\"H3808\"* driven|strong=\"H5080\"* away|strong=\"H7725\"*. You|strong=\"H7725\"* haven’t sought|strong=\"H1245\"* that|strong=\"H3808\"* which was|strong=\"H3808\"* lost, but|strong=\"H3808\"* you|strong=\"H7725\"* have|strong=\"H3808\"* ruled|strong=\"H7287\"* over|strong=\"H7287\"* them|strong=\"H7725\"* with|strong=\"H7725\"* force|strong=\"H2394\"* and|strong=\"H7725\"* with|strong=\"H7725\"* rigor." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3605\"* were|strong=\"H1961\"* scattered|strong=\"H6327\"*, because|strong=\"H1097\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H1097\"* shepherd|strong=\"H7462\"*. They|strong=\"H3605\"* became|strong=\"H1961\"* food to|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* animals|strong=\"H2416\"* of|strong=\"H7704\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, and|strong=\"H7704\"* were|strong=\"H1961\"* scattered|strong=\"H6327\"*." + }, + { + "verseNum": 6, + "text": "My|strong=\"H3605\"* sheep|strong=\"H6629\"* wandered|strong=\"H7686\"* through|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* and|strong=\"H6629\"* on|strong=\"H5921\"* every|strong=\"H3605\"* high|strong=\"H7311\"* hill|strong=\"H2022\"*. Yes, my|strong=\"H3605\"* sheep|strong=\"H6629\"* were|strong=\"H2022\"* scattered|strong=\"H6327\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H2022\"* the|strong=\"H3605\"* earth. There|strong=\"H2022\"* was|strong=\"H6629\"* no|strong=\"H3605\"* one|strong=\"H3605\"* who|strong=\"H3605\"* searched|strong=\"H1245\"* or|strong=\"H1875\"* sought|strong=\"H1245\"*.”" + }, + { + "verseNum": 7, + "text": "“‘Therefore|strong=\"H3651\"*, you|strong=\"H3651\"* shepherds|strong=\"H7462\"*, hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*:" + }, + { + "verseNum": 8, + "text": "“As|strong=\"H1961\"* I|strong=\"H3282\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “surely|strong=\"H1961\"* because|strong=\"H3282\"* my|strong=\"H3605\"* sheep|strong=\"H6629\"* became|strong=\"H1961\"* a|strong=\"H3068\"* prey, and|strong=\"H6629\"* my|strong=\"H3605\"* sheep|strong=\"H6629\"* became|strong=\"H1961\"* food to|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* animals|strong=\"H2416\"* of|strong=\"H7704\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, because|strong=\"H3282\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* shepherd|strong=\"H7462\"*, and|strong=\"H6629\"* my|strong=\"H3605\"* shepherds|strong=\"H7462\"* didn’t search|strong=\"H1875\"* for|strong=\"H3605\"* my|strong=\"H3605\"* sheep|strong=\"H6629\"*, but|strong=\"H3808\"* the|strong=\"H3605\"* shepherds|strong=\"H7462\"* fed|strong=\"H7462\"* themselves|strong=\"H7462\"*, and|strong=\"H6629\"* didn’t feed|strong=\"H7462\"* my|strong=\"H3605\"* sheep|strong=\"H6629\"*," + }, + { + "verseNum": 9, + "text": "therefore|strong=\"H3651\"*, you|strong=\"H3651\"* shepherds|strong=\"H7462\"*, hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*!”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H1961\"* against|strong=\"H3027\"* the|strong=\"H3069\"* shepherds|strong=\"H7462\"*. I|strong=\"H2005\"* will|strong=\"H1961\"* require|strong=\"H1875\"* my|strong=\"H1961\"* sheep|strong=\"H6629\"* at|strong=\"H1961\"* their|strong=\"H5337\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* cause|strong=\"H6310\"* them|strong=\"H3027\"* to|strong=\"H1961\"* cease|strong=\"H7673\"* from|strong=\"H3027\"* feeding|strong=\"H7462\"* the|strong=\"H3069\"* sheep|strong=\"H6629\"*. The|strong=\"H3069\"* shepherds|strong=\"H7462\"* won’t feed|strong=\"H7462\"* themselves|strong=\"H7462\"* any|strong=\"H5750\"* more|strong=\"H5750\"*. I|strong=\"H2005\"* will|strong=\"H1961\"* deliver|strong=\"H5337\"* my|strong=\"H1961\"* sheep|strong=\"H6629\"* from|strong=\"H3027\"* their|strong=\"H5337\"* mouth|strong=\"H6310\"*, that|strong=\"H3027\"* they|strong=\"H3808\"* may|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* food for|strong=\"H3027\"* them|strong=\"H3027\"*.”" + }, + { + "verseNum": 11, + "text": "“‘For|strong=\"H3588\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H3588\"* myself, even|strong=\"H3588\"* I|strong=\"H3588\"*, will|strong=\"H3069\"* search|strong=\"H1875\"* for|strong=\"H3588\"* my|strong=\"H3588\"* sheep|strong=\"H6629\"*, and|strong=\"H6629\"* will|strong=\"H3069\"* seek|strong=\"H1875\"* them|strong=\"H3588\"* out|strong=\"H1875\"*." + }, + { + "verseNum": 12, + "text": "As|strong=\"H3117\"* a|strong=\"H3068\"* shepherd|strong=\"H7462\"* seeks|strong=\"H1243\"* out|strong=\"H5337\"* his|strong=\"H3605\"* flock|strong=\"H6629\"* in|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3605\"* he|strong=\"H3117\"* is|strong=\"H3117\"* among|strong=\"H8432\"* his|strong=\"H3605\"* sheep|strong=\"H6629\"* that|strong=\"H3605\"* are|strong=\"H3117\"* scattered|strong=\"H6327\"* abroad|strong=\"H6327\"*, so|strong=\"H3651\"* I|strong=\"H3117\"* will|strong=\"H1961\"* seek|strong=\"H1239\"* out|strong=\"H5337\"* my|strong=\"H3605\"* sheep|strong=\"H6629\"*. I|strong=\"H3117\"* will|strong=\"H1961\"* deliver|strong=\"H5337\"* them|strong=\"H8432\"* out|strong=\"H5337\"* of|strong=\"H3117\"* all|strong=\"H3605\"* places|strong=\"H4725\"* where|strong=\"H8033\"* they|strong=\"H3117\"* have|strong=\"H1961\"* been|strong=\"H1961\"* scattered|strong=\"H6327\"* in|strong=\"H3117\"* the|strong=\"H3605\"* cloudy|strong=\"H6051\"* and|strong=\"H3117\"* dark|strong=\"H6205\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H3478\"* will|strong=\"H5971\"* bring|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H4480\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"*, and|strong=\"H3478\"* gather|strong=\"H6908\"* them|strong=\"H3318\"* from|strong=\"H4480\"* the|strong=\"H3605\"* countries, and|strong=\"H3478\"* will|strong=\"H5971\"* bring|strong=\"H3318\"* them|strong=\"H3318\"* into|strong=\"H3318\"* their|strong=\"H3605\"* own|strong=\"H5971\"* land. I|strong=\"H3478\"* will|strong=\"H5971\"* feed|strong=\"H7462\"* them|strong=\"H3318\"* on|strong=\"H3318\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"*, by|strong=\"H3318\"* the|strong=\"H3605\"* watercourses, and|strong=\"H3478\"* in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabited|strong=\"H4186\"* places|strong=\"H4186\"* of|strong=\"H2022\"* the|strong=\"H3605\"* country|strong=\"H2022\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3478\"* will|strong=\"H1961\"* feed|strong=\"H7462\"* them|strong=\"H1961\"* with|strong=\"H3478\"* good|strong=\"H2896\"* pasture|strong=\"H4829\"*, and|strong=\"H3478\"* their|strong=\"H1961\"* fold|strong=\"H5116\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H1961\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* the|strong=\"H1961\"* height|strong=\"H4791\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"*. There|strong=\"H8033\"* they|strong=\"H8033\"* will|strong=\"H1961\"* lie|strong=\"H7257\"* down|strong=\"H7257\"* in|strong=\"H3478\"* a|strong=\"H3068\"* good|strong=\"H2896\"* fold|strong=\"H5116\"*. They|strong=\"H8033\"* will|strong=\"H1961\"* feed|strong=\"H7462\"* on|strong=\"H1961\"* rich|strong=\"H8082\"* pasture|strong=\"H4829\"* on|strong=\"H1961\"* the|strong=\"H1961\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H5002\"* myself will|strong=\"H3069\"* be|strong=\"H3069\"* the|strong=\"H5002\"* shepherd|strong=\"H7462\"* of|strong=\"H6629\"* my|strong=\"H7462\"* sheep|strong=\"H6629\"*, and|strong=\"H6629\"* I|strong=\"H5002\"* will|strong=\"H3069\"* cause them|strong=\"H7462\"* to|strong=\"H6629\"* lie|strong=\"H7257\"* down|strong=\"H7257\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "“I|strong=\"H7665\"* will|strong=\"H7725\"* seek|strong=\"H1245\"* that|strong=\"H7725\"* which was|strong=\"H2389\"* lost, and|strong=\"H7725\"* will|strong=\"H7725\"* bring|strong=\"H7725\"* back|strong=\"H7725\"* that|strong=\"H7725\"* which was|strong=\"H2389\"* driven|strong=\"H5080\"* away|strong=\"H7725\"*, and|strong=\"H7725\"* will|strong=\"H7725\"* bind|strong=\"H2280\"* up|strong=\"H2280\"* that|strong=\"H7725\"* which was|strong=\"H2389\"* broken|strong=\"H7665\"*, and|strong=\"H7725\"* will|strong=\"H7725\"* strengthen|strong=\"H2388\"* that|strong=\"H7725\"* which was|strong=\"H2389\"* sick|strong=\"H2470\"*; but|strong=\"H2388\"* I|strong=\"H7665\"* will|strong=\"H7725\"* destroy|strong=\"H8045\"* the|strong=\"H7725\"* fat|strong=\"H8082\"* and|strong=\"H7725\"* the|strong=\"H7725\"* strong|strong=\"H2388\"*. I|strong=\"H7665\"* will|strong=\"H7725\"* feed|strong=\"H7462\"* them|strong=\"H7725\"* in|strong=\"H7725\"* justice|strong=\"H4941\"*.”’" + }, + { + "verseNum": 17, + "text": "“As for|strong=\"H8199\"* you, O|strong=\"H3068\"* my|strong=\"H8199\"* flock|strong=\"H6629\"*, the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* judge|strong=\"H8199\"* between|strong=\"H8199\"* sheep|strong=\"H6629\"* and|strong=\"H6629\"* sheep|strong=\"H6629\"*, the|strong=\"H3069\"* rams|strong=\"H6260\"* and|strong=\"H6629\"* the|strong=\"H3069\"* male|strong=\"H6260\"* goats|strong=\"H6260\"*." + }, + { + "verseNum": 18, + "text": "Does it|strong=\"H7429\"* seem a|strong=\"H3068\"* small|strong=\"H4592\"* thing|strong=\"H4592\"* to|strong=\"H4325\"* you|strong=\"H4480\"* to|strong=\"H4325\"* have|strong=\"H7462\"* fed|strong=\"H7462\"* on|strong=\"H7462\"* the|strong=\"H4480\"* good|strong=\"H2896\"* pasture|strong=\"H4829\"*, but|strong=\"H3498\"* you|strong=\"H4480\"* must tread|strong=\"H7429\"* down|strong=\"H7429\"* with|strong=\"H4325\"* your|strong=\"H4480\"* feet|strong=\"H7272\"* the|strong=\"H4480\"* residue|strong=\"H3499\"* of|strong=\"H4325\"* your|strong=\"H4480\"* pasture|strong=\"H4829\"*? And|strong=\"H2896\"* to|strong=\"H4325\"* have|strong=\"H7462\"* drunk|strong=\"H8354\"* of|strong=\"H4325\"* the|strong=\"H4480\"* clear|strong=\"H4950\"* waters|strong=\"H4325\"*, but|strong=\"H3498\"* must you|strong=\"H4480\"* foul|strong=\"H7515\"* the|strong=\"H4480\"* residue|strong=\"H3499\"* with|strong=\"H4325\"* your|strong=\"H4480\"* feet|strong=\"H7272\"*?" + }, + { + "verseNum": 19, + "text": "As|strong=\"H7272\"* for|strong=\"H7272\"* my|strong=\"H7462\"* sheep|strong=\"H6629\"*, they|strong=\"H7272\"* eat|strong=\"H7462\"* that|strong=\"H7462\"* which you|strong=\"H4833\"* have|strong=\"H7462\"* trodden|strong=\"H4823\"* with|strong=\"H6629\"* your|strong=\"H8354\"* feet|strong=\"H7272\"*, and|strong=\"H6629\"* they|strong=\"H7272\"* drink|strong=\"H8354\"* that|strong=\"H7462\"* which you|strong=\"H4833\"* have|strong=\"H7462\"* fouled|strong=\"H4833\"* with|strong=\"H6629\"* your|strong=\"H8354\"* feet|strong=\"H7272\"*.’" + }, + { + "verseNum": 20, + "text": "“Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3069\"* them: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"*, even|strong=\"H3651\"* I|strong=\"H2005\"*, will|strong=\"H3069\"* judge|strong=\"H8199\"* between|strong=\"H8199\"* the|strong=\"H3069\"* fat|strong=\"H1274\"* sheep|strong=\"H7716\"* and|strong=\"H7716\"* the|strong=\"H3069\"* lean|strong=\"H7330\"* sheep|strong=\"H7716\"*." + }, + { + "verseNum": 21, + "text": "Because|strong=\"H3282\"* you|strong=\"H3605\"* thrust|strong=\"H1920\"* with|strong=\"H3605\"* side|strong=\"H3802\"* and|strong=\"H6654\"* with|strong=\"H3605\"* shoulder|strong=\"H3802\"*, and|strong=\"H6654\"* push|strong=\"H5055\"* all|strong=\"H3605\"* the|strong=\"H3605\"* diseased|strong=\"H2470\"* with|strong=\"H3605\"* your|strong=\"H3605\"* horns|strong=\"H7161\"*, until|strong=\"H5704\"* you|strong=\"H3605\"* have|strong=\"H3605\"* scattered|strong=\"H6327\"* them|strong=\"H6327\"* abroad|strong=\"H2351\"*," + }, + { + "verseNum": 22, + "text": "therefore|strong=\"H1961\"* I|strong=\"H3808\"* will|strong=\"H1961\"* save|strong=\"H3467\"* my|strong=\"H1961\"* flock|strong=\"H6629\"*, and|strong=\"H6629\"* they|strong=\"H3808\"* will|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* be|strong=\"H1961\"* a|strong=\"H3068\"* prey. I|strong=\"H3808\"* will|strong=\"H1961\"* judge|strong=\"H8199\"* between|strong=\"H8199\"* sheep|strong=\"H6629\"* and|strong=\"H6629\"* sheep|strong=\"H6629\"*." + }, + { + "verseNum": 23, + "text": "I|strong=\"H5921\"* will|strong=\"H1961\"* set|strong=\"H6965\"* up|strong=\"H6965\"* one|strong=\"H1931\"* shepherd|strong=\"H7462\"* over|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H6965\"* he|strong=\"H1931\"* will|strong=\"H1961\"* feed|strong=\"H7462\"* them|strong=\"H5921\"*, even|strong=\"H5921\"* my|strong=\"H1732\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*. He|strong=\"H1931\"* will|strong=\"H1961\"* feed|strong=\"H7462\"* them|strong=\"H5921\"*, and|strong=\"H6965\"* he|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H5921\"* shepherd|strong=\"H7462\"*." + }, + { + "verseNum": 24, + "text": "I|strong=\"H5650\"*, Yahweh|strong=\"H3068\"*, will|strong=\"H3068\"* be|strong=\"H1961\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* my|strong=\"H3068\"* servant|strong=\"H5650\"* David|strong=\"H1732\"* prince|strong=\"H5387\"* among|strong=\"H8432\"* them|strong=\"H8432\"*. I|strong=\"H5650\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H1961\"* spoken|strong=\"H1696\"* it|strong=\"H8432\"*." + }, + { + "verseNum": 25, + "text": "“‘I|strong=\"H3772\"* will|strong=\"H3293\"* make|strong=\"H3772\"* with|strong=\"H1285\"* them|strong=\"H3427\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H3427\"* peace|strong=\"H7965\"*, and|strong=\"H1285\"* will|strong=\"H3293\"* cause evil|strong=\"H7451\"* animals|strong=\"H2416\"* to|strong=\"H3427\"* cease|strong=\"H7673\"* out|strong=\"H4480\"* of|strong=\"H3427\"* the|strong=\"H4480\"* land. They|strong=\"H1285\"* will|strong=\"H3293\"* dwell|strong=\"H3427\"* securely in|strong=\"H3427\"* the|strong=\"H4480\"* wilderness|strong=\"H4057\"* and|strong=\"H1285\"* sleep|strong=\"H3462\"* in|strong=\"H3427\"* the|strong=\"H4480\"* woods|strong=\"H3293\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H5414\"* will|strong=\"H1961\"* make|strong=\"H5414\"* them|strong=\"H5414\"* and|strong=\"H3381\"* the|strong=\"H5414\"* places|strong=\"H5439\"* around|strong=\"H5439\"* my|strong=\"H5414\"* hill|strong=\"H1389\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"*. I|strong=\"H5414\"* will|strong=\"H1961\"* cause|strong=\"H5414\"* the|strong=\"H5414\"* shower|strong=\"H1653\"* to|strong=\"H3381\"* come|strong=\"H1961\"* down|strong=\"H3381\"* in|strong=\"H5414\"* its|strong=\"H5414\"* season|strong=\"H6256\"*. There|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* showers|strong=\"H1653\"* of|strong=\"H6256\"* blessing|strong=\"H1293\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H5921\"* tree|strong=\"H6086\"* of|strong=\"H3068\"* the|strong=\"H5921\"* field|strong=\"H7704\"* will|strong=\"H3068\"* yield|strong=\"H5414\"* its|strong=\"H5414\"* fruit|strong=\"H6529\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* earth will|strong=\"H3068\"* yield|strong=\"H5414\"* its|strong=\"H5414\"* increase|strong=\"H2981\"*, and|strong=\"H3068\"* they|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* secure in|strong=\"H5921\"* their|strong=\"H3068\"* land|strong=\"H7704\"*. Then|strong=\"H1961\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*, when|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* broken|strong=\"H7665\"* the|strong=\"H5921\"* bars|strong=\"H4133\"* of|strong=\"H3068\"* their|strong=\"H3068\"* yoke|strong=\"H5923\"*, and|strong=\"H3068\"* have|strong=\"H1961\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* out|strong=\"H5414\"* of|strong=\"H3068\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* those|strong=\"H5921\"* who|strong=\"H3068\"* made|strong=\"H5414\"* slaves|strong=\"H5647\"* of|strong=\"H3068\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"H3808\"* will|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* be|strong=\"H1961\"* a|strong=\"H3068\"* prey to|strong=\"H1961\"* the|strong=\"H1961\"* nations|strong=\"H1471\"*, neither|strong=\"H3808\"* will|strong=\"H1961\"* the|strong=\"H1961\"* animals|strong=\"H2416\"* of|strong=\"H3427\"* the|strong=\"H1961\"* earth devour them|strong=\"H1961\"*; but|strong=\"H3808\"* they|strong=\"H3808\"* will|strong=\"H1961\"* dwell|strong=\"H3427\"* securely, and|strong=\"H1471\"* no|strong=\"H3808\"* one|strong=\"H3808\"* will|strong=\"H1961\"* make|strong=\"H2729\"* them|strong=\"H1961\"* afraid|strong=\"H2729\"*." + }, + { + "verseNum": 29, + "text": "I|strong=\"H3808\"* will|strong=\"H1961\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H1961\"* them|strong=\"H5375\"* a|strong=\"H3068\"* plantation|strong=\"H4302\"* for|strong=\"H8034\"* renown|strong=\"H8034\"*, and|strong=\"H6965\"* they|strong=\"H3808\"* will|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* be|strong=\"H1961\"* consumed with|strong=\"H6965\"* famine|strong=\"H7458\"* in|strong=\"H8034\"* the|strong=\"H5375\"* land, and|strong=\"H6965\"* not|strong=\"H3808\"* bear|strong=\"H5375\"* the|strong=\"H5375\"* shame|strong=\"H3639\"* of|strong=\"H8034\"* the|strong=\"H5375\"* nations|strong=\"H1471\"* any|strong=\"H5750\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 30, + "text": "They|strong=\"H1992\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, their|strong=\"H3068\"* God|strong=\"H3068\"* am|strong=\"H3068\"* with|strong=\"H1004\"* them|strong=\"H1992\"*, and|strong=\"H3478\"* that|strong=\"H3588\"* they|strong=\"H1992\"*, the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, are|strong=\"H1992\"* my|strong=\"H3068\"* people|strong=\"H5971\"*, says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 31, + "text": "You my sheep|strong=\"H6629\"*, the|strong=\"H5002\"* sheep|strong=\"H6629\"* of|strong=\"H6629\"* my pasture|strong=\"H4830\"*, are men, and|strong=\"H6629\"* I|strong=\"H5002\"* am your|strong=\"H6629\"* God|strong=\"H3069\"*,’ says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "Moreover|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, set|strong=\"H7760\"* your|strong=\"H5921\"* face|strong=\"H6440\"* against|strong=\"H5921\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"*, and|strong=\"H1121\"* prophesy|strong=\"H5012\"* against|strong=\"H5921\"* it|strong=\"H7760\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H3027\"* tell it|strong=\"H5414\"*, ‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* against|strong=\"H5921\"* you|strong=\"H5414\"*, Mount|strong=\"H2022\"* Seir|strong=\"H8165\"*, and|strong=\"H3027\"* I|strong=\"H2005\"* will|strong=\"H3027\"* stretch|strong=\"H5186\"* out|strong=\"H5186\"* my|strong=\"H5414\"* hand|strong=\"H3027\"* against|strong=\"H5921\"* you|strong=\"H5414\"*. I|strong=\"H2005\"* will|strong=\"H3027\"* make|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"* and|strong=\"H3027\"* an|strong=\"H5414\"* astonishment|strong=\"H4923\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* lay|strong=\"H7760\"* your|strong=\"H3068\"* cities|strong=\"H5892\"* waste|strong=\"H2723\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* desolate|strong=\"H8077\"*. Then|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "“‘“Because|strong=\"H5921\"* you|strong=\"H5921\"* have|strong=\"H1961\"* had|strong=\"H1961\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* hostility, and|strong=\"H1121\"* have|strong=\"H1961\"* given|strong=\"H3027\"* over|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H5921\"* power|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sword|strong=\"H2719\"* in|strong=\"H5921\"* the|strong=\"H5921\"* time|strong=\"H6256\"* of|strong=\"H1121\"* their|strong=\"H5921\"* calamity, in|strong=\"H5921\"* the|strong=\"H5921\"* time|strong=\"H6256\"* of|strong=\"H1121\"* the|strong=\"H5921\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H5921\"* end|strong=\"H7093\"*," + }, + { + "verseNum": 6, + "text": "therefore|strong=\"H3651\"*, as|strong=\"H6213\"* I|strong=\"H3588\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “I|strong=\"H3588\"* will|strong=\"H3808\"* prepare|strong=\"H6213\"* you|strong=\"H3588\"* for|strong=\"H3588\"* blood|strong=\"H1818\"*, and|strong=\"H6213\"* blood|strong=\"H1818\"* will|strong=\"H3808\"* pursue|strong=\"H7291\"* you|strong=\"H3588\"*. Since|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* not|strong=\"H3808\"* hated|strong=\"H8130\"* blood|strong=\"H1818\"*, therefore|strong=\"H3651\"* blood|strong=\"H1818\"* will|strong=\"H3808\"* pursue|strong=\"H7291\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 7, + "text": "Thus I|strong=\"H5414\"* will|strong=\"H5414\"* make|strong=\"H5414\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"* an|strong=\"H5414\"* astonishment and|strong=\"H7725\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*. I|strong=\"H5414\"* will|strong=\"H5414\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H4480\"* it|strong=\"H5414\"* him|strong=\"H5414\"* who passes|strong=\"H5674\"* through|strong=\"H5674\"* and|strong=\"H7725\"* him|strong=\"H5414\"* who returns|strong=\"H7725\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H3605\"* will|strong=\"H2719\"* fill|strong=\"H4390\"* its|strong=\"H3605\"* mountains|strong=\"H2022\"* with|strong=\"H4390\"* its|strong=\"H3605\"* slain|strong=\"H2491\"*. The|strong=\"H3605\"* slain|strong=\"H2491\"* with|strong=\"H4390\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* will|strong=\"H2719\"* fall|strong=\"H5307\"* in|strong=\"H5307\"* your|strong=\"H3605\"* hills|strong=\"H1389\"* and|strong=\"H2719\"* in|strong=\"H5307\"* your|strong=\"H3605\"* valleys|strong=\"H1516\"* and|strong=\"H2719\"* in|strong=\"H5307\"* all|strong=\"H3605\"* your|strong=\"H3605\"* watercourses." + }, + { + "verseNum": 9, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H5414\"* you|strong=\"H3588\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* desolation|strong=\"H8077\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* cities|strong=\"H5892\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* inhabited|strong=\"H3427\"*. Then|strong=\"H5414\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "“‘“Because|strong=\"H3282\"* you|strong=\"H3282\"* have|strong=\"H1961\"* said, ‘These|strong=\"H8147\"* two|strong=\"H8147\"* nations|strong=\"H1471\"* and|strong=\"H3068\"* these|strong=\"H8147\"* two|strong=\"H8147\"* countries will|strong=\"H3068\"* be|strong=\"H1961\"* mine, and|strong=\"H3068\"* we|strong=\"H3068\"* will|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H8033\"*,’ although Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* there|strong=\"H8033\"*," + }, + { + "verseNum": 11, + "text": "therefore|strong=\"H3651\"*, as|strong=\"H6213\"* I|strong=\"H3651\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “I|strong=\"H3651\"* will|strong=\"H3069\"* do|strong=\"H6213\"* according to|strong=\"H6213\"* your|strong=\"H3045\"* anger|strong=\"H7068\"*, and|strong=\"H6213\"* according to|strong=\"H6213\"* your|strong=\"H3045\"* envy|strong=\"H7068\"* which|strong=\"H2416\"* you|strong=\"H6213\"* have|strong=\"H3045\"* shown|strong=\"H6213\"* out|strong=\"H6213\"* of|strong=\"H3069\"* your|strong=\"H3045\"* hatred|strong=\"H8135\"* against|strong=\"H6213\"* them|strong=\"H6213\"*; and|strong=\"H6213\"* I|strong=\"H3651\"* will|strong=\"H3069\"* make|strong=\"H6213\"* myself|strong=\"H3045\"* known|strong=\"H3045\"* among|strong=\"H8199\"* them|strong=\"H6213\"* when|strong=\"H6213\"* I|strong=\"H3651\"* judge|strong=\"H8199\"* you|strong=\"H6213\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* heard|strong=\"H8085\"* all|strong=\"H3605\"* your|strong=\"H3068\"* insults which|strong=\"H3068\"* you|strong=\"H3588\"* have|strong=\"H3068\"* spoken|strong=\"H8085\"* against|strong=\"H5921\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, saying, ‘They|strong=\"H3588\"* have|strong=\"H3068\"* been|strong=\"H3605\"* laid|strong=\"H5414\"* desolate|strong=\"H8074\"*. They|strong=\"H3588\"* have|strong=\"H3068\"* been|strong=\"H3605\"* given|strong=\"H5414\"* to|strong=\"H3478\"* us|strong=\"H5414\"* to|strong=\"H3478\"* devour.’" + }, + { + "verseNum": 13, + "text": "You|strong=\"H5921\"* have|strong=\"H1697\"* magnified|strong=\"H1431\"* yourselves|strong=\"H1431\"* against|strong=\"H5921\"* me|strong=\"H5921\"* with|strong=\"H5921\"* your|strong=\"H5921\"* mouth|strong=\"H6310\"*, and|strong=\"H8085\"* have|strong=\"H1697\"* multiplied|strong=\"H6280\"* your|strong=\"H5921\"* words|strong=\"H1697\"* against|strong=\"H5921\"* me|strong=\"H5921\"*. I|strong=\"H5921\"* have|strong=\"H1697\"* heard|strong=\"H8085\"* it|strong=\"H5921\"*.”" + }, + { + "verseNum": 14, + "text": "The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “When|strong=\"H6213\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth rejoices|strong=\"H8055\"*, I|strong=\"H3541\"* will|strong=\"H3069\"* make|strong=\"H6213\"* you|strong=\"H3605\"* desolate|strong=\"H8077\"*." + }, + { + "verseNum": 15, + "text": "As|strong=\"H1961\"* you|strong=\"H3588\"* rejoiced|strong=\"H8057\"* over|strong=\"H5921\"* the|strong=\"H3605\"* inheritance|strong=\"H5159\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* because|strong=\"H3588\"* it|strong=\"H5921\"* was|strong=\"H3068\"* desolate|strong=\"H8074\"*, so|strong=\"H3651\"* I|strong=\"H3588\"* will|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3478\"* you|strong=\"H3588\"*. You|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* desolate|strong=\"H8074\"*, Mount|strong=\"H2022\"* Seir|strong=\"H8165\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Edom, even|strong=\"H3588\"* all|strong=\"H3605\"* of|strong=\"H1004\"* it|strong=\"H5921\"*. Then|strong=\"H1961\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "You|strong=\"H2022\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, prophesy|strong=\"H5012\"* to|strong=\"H3478\"* the|strong=\"H8085\"* mountains|strong=\"H2022\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* say|strong=\"H1697\"*, “You|strong=\"H2022\"* mountains|strong=\"H2022\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Because|strong=\"H5921\"* the|strong=\"H5921\"* enemy has|strong=\"H1961\"* said against|strong=\"H5921\"* you|strong=\"H5921\"*, “Aha|strong=\"H1889\"*!” and|strong=\"H5769\"*, “The|strong=\"H5921\"* ancient|strong=\"H5769\"* high|strong=\"H1116\"* places|strong=\"H1116\"* are|strong=\"H1961\"* ours in|strong=\"H5921\"* possession|strong=\"H4181\"*!”’" + }, + { + "verseNum": 3, + "text": "therefore|strong=\"H3651\"* prophesy|strong=\"H5012\"*, and|strong=\"H5971\"* say, ‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Because|strong=\"H5921\"*, even|strong=\"H3651\"* because|strong=\"H5921\"* they|strong=\"H3651\"* have|strong=\"H1961\"* made|strong=\"H8074\"* you|strong=\"H5921\"* desolate|strong=\"H8074\"*, and|strong=\"H5971\"* swallowed you|strong=\"H5921\"* up|strong=\"H5927\"* on|strong=\"H5921\"* every|strong=\"H5439\"* side|strong=\"H5439\"*, that|strong=\"H5971\"* you|strong=\"H5921\"* might|strong=\"H5971\"* be|strong=\"H1961\"* a|strong=\"H3068\"* possession|strong=\"H4181\"* to|strong=\"H5927\"* the|strong=\"H5921\"* residue|strong=\"H7611\"* of|strong=\"H7611\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*, and|strong=\"H5971\"* you|strong=\"H5921\"* are|strong=\"H5971\"* taken|strong=\"H5927\"* up|strong=\"H5927\"* in|strong=\"H5921\"* the|strong=\"H5921\"* lips|strong=\"H8193\"* of|strong=\"H7611\"* talkers|strong=\"H3956\"*, and|strong=\"H5971\"* the|strong=\"H5921\"* evil|strong=\"H1681\"* report|strong=\"H1681\"* of|strong=\"H7611\"* the|strong=\"H5921\"* people|strong=\"H5971\"*;”" + }, + { + "verseNum": 4, + "text": "therefore|strong=\"H3651\"*, you|strong=\"H3651\"* mountains|strong=\"H2022\"* of|strong=\"H1697\"* Israel|strong=\"H3478\"*, hear|strong=\"H8085\"* the|strong=\"H8085\"* word|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H8085\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*: The|strong=\"H8085\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3478\"* the|strong=\"H8085\"* mountains|strong=\"H2022\"* and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H8085\"* hills|strong=\"H1389\"*, to|strong=\"H3478\"* the|strong=\"H8085\"* watercourses and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H8085\"* valleys|strong=\"H1516\"*, to|strong=\"H3478\"* the|strong=\"H8085\"* desolate|strong=\"H8076\"* wastes|strong=\"H2723\"* and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H8085\"* cities|strong=\"H5892\"* that|strong=\"H8085\"* are|strong=\"H1471\"* forsaken|strong=\"H5800\"*, which|strong=\"H1471\"* have|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* prey and|strong=\"H3478\"* derision|strong=\"H3933\"* to|strong=\"H3478\"* the|strong=\"H8085\"* residue|strong=\"H7611\"* of|strong=\"H1697\"* the|strong=\"H8085\"* nations|strong=\"H1471\"* that|strong=\"H8085\"* are|strong=\"H1471\"* all|strong=\"H5439\"* around|strong=\"H5439\"*;" + }, + { + "verseNum": 5, + "text": "therefore|strong=\"H3651\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Surely|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H3605\"* fire of|strong=\"H7611\"* my|strong=\"H5414\"* jealousy|strong=\"H7068\"* I|strong=\"H5414\"* have|strong=\"H1471\"* spoken|strong=\"H1696\"* against|strong=\"H5921\"* the|strong=\"H3605\"* residue|strong=\"H7611\"* of|strong=\"H7611\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*, and|strong=\"H1471\"* against|strong=\"H5921\"* all|strong=\"H3605\"* Edom, that|strong=\"H3605\"* have|strong=\"H1471\"* appointed|strong=\"H5414\"* my|strong=\"H5414\"* land to|strong=\"H1696\"* themselves|strong=\"H5315\"* for|strong=\"H5921\"* a|strong=\"H3068\"* possession|strong=\"H4181\"* with|strong=\"H1696\"* the|strong=\"H3605\"* joy|strong=\"H8057\"* of|strong=\"H7611\"* all|strong=\"H3605\"* their|strong=\"H3605\"* heart|strong=\"H3824\"*, with|strong=\"H1696\"* despite|strong=\"H5921\"* of|strong=\"H7611\"* soul|strong=\"H5315\"*, to|strong=\"H1696\"* cast|strong=\"H5414\"* it|strong=\"H5414\"* out|strong=\"H5414\"* for|strong=\"H5921\"* a|strong=\"H3068\"* prey.”’" + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3651\"* prophesy|strong=\"H5012\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H2022\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* tell|strong=\"H1696\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"*, the|strong=\"H5921\"* hills|strong=\"H1389\"*, the|strong=\"H5921\"* watercourses and|strong=\"H3478\"* the|strong=\"H5921\"* valleys|strong=\"H1516\"*, ‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* have|strong=\"H1471\"* spoken|strong=\"H1696\"* in|strong=\"H5921\"* my|strong=\"H5921\"* jealousy|strong=\"H7068\"* and|strong=\"H3478\"* in|strong=\"H5921\"* my|strong=\"H5921\"* wrath|strong=\"H2534\"*, because|strong=\"H5921\"* you|strong=\"H5921\"* have|strong=\"H1471\"* borne|strong=\"H5375\"* the|strong=\"H5921\"* shame|strong=\"H3639\"* of|strong=\"H2022\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*.”" + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “I|strong=\"H3541\"* have|strong=\"H1471\"* sworn|strong=\"H3027\"*, ‘Surely|strong=\"H3651\"* the|strong=\"H3069\"* nations|strong=\"H1471\"* that|strong=\"H1471\"* are|strong=\"H1992\"* around|strong=\"H5439\"* you|strong=\"H3808\"* will|strong=\"H1471\"* bear|strong=\"H5375\"* their|strong=\"H5375\"* shame|strong=\"H3639\"*.’" + }, + { + "verseNum": 8, + "text": "“‘“But|strong=\"H3588\"* you|strong=\"H3588\"*, mountains|strong=\"H2022\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"*, you|strong=\"H3588\"* shall|strong=\"H5971\"* shoot out|strong=\"H5414\"* your|strong=\"H5414\"* branches|strong=\"H6057\"* and|strong=\"H3478\"* yield|strong=\"H5414\"* your|strong=\"H5414\"* fruit|strong=\"H6529\"* to|strong=\"H3478\"* my|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H5971\"* at|strong=\"H3478\"* hand|strong=\"H5414\"* to|strong=\"H3478\"* come|strong=\"H7126\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2005\"*, I|strong=\"H3588\"* am|strong=\"H2005\"* for|strong=\"H3588\"* you|strong=\"H3588\"*, and|strong=\"H6437\"* I|strong=\"H3588\"* will|strong=\"H5647\"* come to|strong=\"H6437\"* you|strong=\"H3588\"*, and|strong=\"H6437\"* you|strong=\"H3588\"* will|strong=\"H5647\"* be|strong=\"H5647\"* tilled|strong=\"H5647\"* and|strong=\"H6437\"* sown|strong=\"H2232\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"H5921\"* will|strong=\"H3478\"* multiply|strong=\"H7235\"* men|strong=\"H3605\"* on|strong=\"H5921\"* you|strong=\"H3605\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, even|strong=\"H1129\"* all|strong=\"H3605\"* of|strong=\"H1004\"* it|strong=\"H5921\"*. The|strong=\"H3605\"* cities|strong=\"H5892\"* will|strong=\"H3478\"* be|strong=\"H3478\"* inhabited|strong=\"H3427\"* and|strong=\"H3478\"* the|strong=\"H3605\"* waste|strong=\"H2723\"* places|strong=\"H2723\"* will|strong=\"H3478\"* be|strong=\"H3478\"* built|strong=\"H1129\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* multiply|strong=\"H7235\"* man|strong=\"H3045\"* and|strong=\"H3068\"* animal on|strong=\"H5921\"* you|strong=\"H3588\"*. They|strong=\"H3588\"* will|strong=\"H3068\"* increase|strong=\"H7235\"* and|strong=\"H3068\"* be|strong=\"H3068\"* fruitful|strong=\"H6509\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* cause you|strong=\"H3588\"* to|strong=\"H3068\"* be|strong=\"H3068\"* inhabited|strong=\"H3427\"* as|strong=\"H3068\"* you|strong=\"H3588\"* were|strong=\"H3427\"* before|strong=\"H5921\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* do|strong=\"H3068\"* better|strong=\"H2895\"* than|strong=\"H7235\"* at|strong=\"H3427\"* your|strong=\"H3068\"* beginnings|strong=\"H7221\"*. Then|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "Yes, I|strong=\"H5921\"* will|strong=\"H1961\"* cause|strong=\"H5971\"* men|strong=\"H5971\"* to|strong=\"H3478\"* walk|strong=\"H3212\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, even|strong=\"H5750\"* my|strong=\"H5921\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*. They|strong=\"H3808\"* will|strong=\"H1961\"* possess|strong=\"H3423\"* you|strong=\"H5921\"*, and|strong=\"H3478\"* you|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H5921\"* inheritance|strong=\"H5159\"*, and|strong=\"H3478\"* you|strong=\"H5921\"* will|strong=\"H1961\"* never|strong=\"H3808\"* again|strong=\"H5750\"* bereave|strong=\"H7921\"* them|strong=\"H5921\"* of|strong=\"H5971\"* their|strong=\"H5921\"* children|strong=\"H7921\"*.”" + }, + { + "verseNum": 13, + "text": "“‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Because|strong=\"H3282\"* they|strong=\"H3282\"* say to|strong=\"H1961\"* you|strong=\"H3282\"*, ‘You|strong=\"H3282\"* are|strong=\"H1471\"* a|strong=\"H3068\"* devourer of|strong=\"H3069\"* men, and|strong=\"H1471\"* have|strong=\"H1961\"* been|strong=\"H1961\"* a|strong=\"H3068\"* bereaver of|strong=\"H3069\"* your|strong=\"H1961\"* nation|strong=\"H1471\"*;’" + }, + { + "verseNum": 14, + "text": "therefore|strong=\"H3651\"* you|strong=\"H3808\"* shall|strong=\"H1471\"* devour men no|strong=\"H3808\"* more|strong=\"H5750\"*, and|strong=\"H1471\"* not|strong=\"H3808\"* bereave|strong=\"H3782\"* your|strong=\"H3808\"* nation|strong=\"H1471\"* any|strong=\"H5750\"* more|strong=\"H5750\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "“I|strong=\"H3808\"* won’t let|strong=\"H3808\"* you|strong=\"H3808\"* hear|strong=\"H8085\"* the|strong=\"H5002\"* shame|strong=\"H3639\"* of|strong=\"H5971\"* the|strong=\"H5002\"* nations|strong=\"H1471\"* any|strong=\"H5750\"* more|strong=\"H5750\"*. You|strong=\"H3808\"* won’t bear|strong=\"H5375\"* the|strong=\"H5002\"* reproach|strong=\"H2781\"* of|strong=\"H5971\"* the|strong=\"H5002\"* peoples|strong=\"H5971\"* any|strong=\"H5750\"* more|strong=\"H5750\"*, and|strong=\"H5971\"* you|strong=\"H3808\"* won’t cause|strong=\"H5971\"* your|strong=\"H5375\"* nation|strong=\"H1471\"* to|strong=\"H8085\"* stumble|strong=\"H3782\"* any|strong=\"H5750\"* more|strong=\"H5750\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 16, + "text": "Moreover|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 17, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, when|strong=\"H1961\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H6440\"* own|strong=\"H1961\"* land|strong=\"H6440\"*, they|strong=\"H5921\"* defiled|strong=\"H2930\"* it|strong=\"H5921\"* by|strong=\"H5921\"* their|strong=\"H6440\"* ways|strong=\"H1870\"* and|strong=\"H1121\"* by|strong=\"H5921\"* their|strong=\"H6440\"* deeds|strong=\"H5949\"*. Their|strong=\"H6440\"* way|strong=\"H1870\"* before|strong=\"H6440\"* me|strong=\"H6440\"* was|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H6440\"* uncleanness|strong=\"H2932\"* of|strong=\"H1121\"* a|strong=\"H3068\"* woman|strong=\"H5079\"* in|strong=\"H3427\"* her|strong=\"H5921\"* impurity|strong=\"H5079\"*." + }, + { + "verseNum": 18, + "text": "Therefore|strong=\"H5921\"* I|strong=\"H5921\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* my|strong=\"H5921\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* them|strong=\"H5921\"* for|strong=\"H5921\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* which|strong=\"H1818\"* they|strong=\"H5921\"* had poured|strong=\"H8210\"* out|strong=\"H8210\"* on|strong=\"H5921\"* the|strong=\"H5921\"* land, and|strong=\"H1818\"* because|strong=\"H5921\"* they|strong=\"H5921\"* had defiled|strong=\"H2930\"* it|strong=\"H5921\"* with|strong=\"H5921\"* their|strong=\"H5921\"* idols|strong=\"H1544\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"H5949\"* scattered|strong=\"H6327\"* them|strong=\"H6327\"* among|strong=\"H8199\"* the|strong=\"H1870\"* nations|strong=\"H1471\"*, and|strong=\"H1870\"* they|strong=\"H1870\"* were|strong=\"H1471\"* dispersed|strong=\"H6327\"* through|strong=\"H1870\"* the|strong=\"H1870\"* countries. I|strong=\"H5949\"* judged|strong=\"H8199\"* them|strong=\"H6327\"* according to|strong=\"H1870\"* their|strong=\"H1870\"* way|strong=\"H1870\"* and|strong=\"H1870\"* according to|strong=\"H1870\"* their|strong=\"H1870\"* deeds|strong=\"H5949\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"H3318\"* they|strong=\"H8033\"* came|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3068\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* they|strong=\"H8033\"* went|strong=\"H3318\"*, they|strong=\"H8033\"* profaned|strong=\"H2490\"* my|strong=\"H3068\"* holy|strong=\"H6944\"* name|strong=\"H8034\"*, in|strong=\"H3068\"* that|strong=\"H5971\"* men|strong=\"H5971\"* said|strong=\"H3318\"* of|strong=\"H3068\"* them|strong=\"H3318\"*, ‘These|strong=\"H5971\"* are|strong=\"H5971\"* Yahweh|strong=\"H3068\"*’s people|strong=\"H5971\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* left|strong=\"H3318\"* his|strong=\"H3068\"* land.’" + }, + { + "verseNum": 21, + "text": "But|strong=\"H5921\"* I|strong=\"H5921\"* had|strong=\"H3478\"* respect|strong=\"H5921\"* for|strong=\"H5921\"* my|strong=\"H5921\"* holy|strong=\"H6944\"* name|strong=\"H8034\"*, which|strong=\"H1471\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* profaned|strong=\"H2490\"* among|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* they|strong=\"H8033\"* went|strong=\"H3478\"*." + }, + { + "verseNum": 22, + "text": "“Therefore|strong=\"H3651\"* tell the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, ‘The|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “I|strong=\"H3588\"* don’t do|strong=\"H6213\"* this|strong=\"H3651\"* for|strong=\"H3588\"* your|strong=\"H6213\"* sake|strong=\"H4616\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, but|strong=\"H3588\"* for|strong=\"H3588\"* my|strong=\"H2490\"* holy|strong=\"H6944\"* name|strong=\"H8034\"*, which|strong=\"H1471\"* you|strong=\"H3588\"* have|strong=\"H1471\"* profaned|strong=\"H2490\"* among|strong=\"H8034\"* the|strong=\"H3588\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* you|strong=\"H3588\"* went|strong=\"H3478\"*." + }, + { + "verseNum": 23, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* sanctify|strong=\"H6942\"* my|strong=\"H3068\"* great|strong=\"H1419\"* name|strong=\"H8034\"*, which|strong=\"H3068\"* has|strong=\"H3068\"* been|strong=\"H3068\"* profaned|strong=\"H2490\"* among|strong=\"H8432\"* the|strong=\"H5002\"* nations|strong=\"H1471\"*, which|strong=\"H3068\"* you|strong=\"H3588\"* have|strong=\"H3068\"* profaned|strong=\"H2490\"* among|strong=\"H8432\"* them|strong=\"H8432\"*. Then|strong=\"H3588\"* the|strong=\"H5002\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, “when|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* proven holy|strong=\"H6942\"* in|strong=\"H3068\"* you|strong=\"H3588\"* before|strong=\"H5869\"* their|strong=\"H3068\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 24, + "text": "“‘“For|strong=\"H3605\"* I|strong=\"H4480\"* will|strong=\"H1471\"* take|strong=\"H3947\"* you|strong=\"H3605\"* from|strong=\"H4480\"* among|strong=\"H4480\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* and|strong=\"H1471\"* gather|strong=\"H6908\"* you|strong=\"H3605\"* out|strong=\"H4480\"* of|strong=\"H4480\"* all|strong=\"H3605\"* the|strong=\"H3605\"* countries, and|strong=\"H1471\"* will|strong=\"H1471\"* bring|strong=\"H3947\"* you|strong=\"H3605\"* into|strong=\"H3947\"* your|strong=\"H3605\"* own land." + }, + { + "verseNum": 25, + "text": "I|strong=\"H5921\"* will|strong=\"H4325\"* sprinkle|strong=\"H2236\"* clean|strong=\"H2889\"* water|strong=\"H4325\"* on|strong=\"H5921\"* you|strong=\"H3605\"*, and|strong=\"H4325\"* you|strong=\"H3605\"* will|strong=\"H4325\"* be|strong=\"H4325\"* clean|strong=\"H2889\"*. I|strong=\"H5921\"* will|strong=\"H4325\"* cleanse|strong=\"H2891\"* you|strong=\"H3605\"* from|strong=\"H5921\"* all|strong=\"H3605\"* your|strong=\"H3605\"* filthiness|strong=\"H2932\"* and|strong=\"H4325\"* from|strong=\"H5921\"* all|strong=\"H3605\"* your|strong=\"H3605\"* idols|strong=\"H1544\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H5414\"* will|strong=\"H3820\"* also|strong=\"H3820\"* give|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* new|strong=\"H2319\"* heart|strong=\"H3820\"*, and|strong=\"H3820\"* I|strong=\"H5414\"* will|strong=\"H3820\"* put|strong=\"H5414\"* a|strong=\"H3068\"* new|strong=\"H2319\"* spirit|strong=\"H7307\"* within|strong=\"H7130\"* you|strong=\"H5414\"*. I|strong=\"H5414\"* will|strong=\"H3820\"* take|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H5414\"* stony heart|strong=\"H3820\"* out|strong=\"H5414\"* of|strong=\"H7307\"* your|strong=\"H5414\"* flesh|strong=\"H1320\"*, and|strong=\"H3820\"* I|strong=\"H5414\"* will|strong=\"H3820\"* give|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* heart|strong=\"H3820\"* of|strong=\"H7307\"* flesh|strong=\"H1320\"*." + }, + { + "verseNum": 27, + "text": "I|strong=\"H5414\"* will|strong=\"H7307\"* put|strong=\"H5414\"* my|strong=\"H8104\"* Spirit|strong=\"H7307\"* within|strong=\"H7130\"* you|strong=\"H5414\"*, and|strong=\"H4941\"* cause|strong=\"H4941\"* you|strong=\"H5414\"* to|strong=\"H3212\"* walk|strong=\"H3212\"* in|strong=\"H6213\"* my|strong=\"H8104\"* statutes|strong=\"H2706\"*. You|strong=\"H5414\"* will|strong=\"H7307\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"* and|strong=\"H4941\"* do|strong=\"H6213\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 28, + "text": "You|strong=\"H5414\"* will|strong=\"H1961\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5414\"* land that|strong=\"H5971\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H1961\"* your|strong=\"H5414\"* fathers. You|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H5414\"* people|strong=\"H5971\"*, and|strong=\"H5971\"* I|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H5414\"* God|strong=\"H5414\"*." + }, + { + "verseNum": 29, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* save|strong=\"H3467\"* you|strong=\"H5414\"* from|strong=\"H5921\"* all|strong=\"H3605\"* your|strong=\"H3605\"* uncleanness|strong=\"H2932\"*. I|strong=\"H5414\"* will|strong=\"H5414\"* call|strong=\"H7121\"* for|strong=\"H5921\"* the|strong=\"H3605\"* grain|strong=\"H1715\"* and|strong=\"H1715\"* will|strong=\"H5414\"* multiply|strong=\"H7235\"* it|strong=\"H5414\"*, and|strong=\"H1715\"* lay|strong=\"H5414\"* no|strong=\"H3808\"* famine|strong=\"H7458\"* on|strong=\"H5921\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 30, + "text": "I|strong=\"H3808\"* will|strong=\"H1471\"* multiply|strong=\"H7235\"* the|strong=\"H3947\"* fruit|strong=\"H6529\"* of|strong=\"H7704\"* the|strong=\"H3947\"* tree|strong=\"H6086\"* and|strong=\"H6086\"* the|strong=\"H3947\"* increase|strong=\"H7235\"* of|strong=\"H7704\"* the|strong=\"H3947\"* field|strong=\"H7704\"*, that|strong=\"H1471\"* you|strong=\"H3947\"* may|strong=\"H1471\"* receive|strong=\"H3947\"* no|strong=\"H3808\"* more|strong=\"H5750\"* the|strong=\"H3947\"* reproach|strong=\"H2781\"* of|strong=\"H7704\"* famine|strong=\"H7458\"* among|strong=\"H2781\"* the|strong=\"H3947\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 31, + "text": "“‘“Then|strong=\"H3808\"* you|strong=\"H6440\"* will|strong=\"H3808\"* remember|strong=\"H2142\"* your|strong=\"H5921\"* evil|strong=\"H7451\"* ways|strong=\"H1870\"*, and|strong=\"H6440\"* your|strong=\"H5921\"* deeds|strong=\"H4611\"* that|strong=\"H7451\"* were|strong=\"H5921\"* not|strong=\"H3808\"* good|strong=\"H2896\"*; and|strong=\"H6440\"* you|strong=\"H6440\"* will|strong=\"H3808\"* loathe|strong=\"H6962\"* yourselves|strong=\"H5921\"* in|strong=\"H5921\"* your|strong=\"H5921\"* own|strong=\"H6440\"* sight|strong=\"H6440\"* for|strong=\"H5921\"* your|strong=\"H5921\"* iniquities|strong=\"H5771\"* and|strong=\"H6440\"* for|strong=\"H5921\"* your|strong=\"H5921\"* abominations|strong=\"H8441\"*." + }, + { + "verseNum": 32, + "text": "I|strong=\"H3045\"* don’t do|strong=\"H6213\"* this|strong=\"H6213\"* for|strong=\"H6213\"* your|strong=\"H3045\"* sake|strong=\"H4616\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*. “Let|strong=\"H3808\"* it|strong=\"H6213\"* be|strong=\"H3808\"* known|strong=\"H3045\"* to|strong=\"H3478\"* you|strong=\"H6213\"*. Be|strong=\"H3808\"* ashamed|strong=\"H3637\"* and|strong=\"H3478\"* confounded|strong=\"H3637\"* for|strong=\"H6213\"* your|strong=\"H3045\"* ways|strong=\"H1870\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 33, + "text": "“‘The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “In|strong=\"H3427\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3605\"* I|strong=\"H3117\"* cleanse|strong=\"H2891\"* you|strong=\"H3605\"* from|strong=\"H3117\"* all|strong=\"H3605\"* your|strong=\"H3605\"* iniquities|strong=\"H5771\"*, I|strong=\"H3117\"* will|strong=\"H5892\"* cause the|strong=\"H3605\"* cities|strong=\"H5892\"* to|strong=\"H3117\"* be|strong=\"H3117\"* inhabited|strong=\"H3427\"* and|strong=\"H3117\"* the|strong=\"H3605\"* waste|strong=\"H2723\"* places|strong=\"H2723\"* will|strong=\"H5892\"* be|strong=\"H3117\"* built|strong=\"H1129\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"H3605\"* land that|strong=\"H3605\"* was|strong=\"H1961\"* desolate|strong=\"H8074\"* will|strong=\"H1961\"* be|strong=\"H1961\"* tilled|strong=\"H5647\"* instead|strong=\"H8478\"* of|strong=\"H5869\"* being|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"* in|strong=\"H5869\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* all|strong=\"H3605\"* who|strong=\"H3605\"* passed|strong=\"H5674\"* by|strong=\"H5674\"*." + }, + { + "verseNum": 35, + "text": "They|strong=\"H5892\"* will|strong=\"H1961\"* say, ‘This|strong=\"H1977\"* land that|strong=\"H5892\"* was|strong=\"H1961\"* desolate|strong=\"H8074\"* has|strong=\"H1961\"* become|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H1961\"* garden|strong=\"H1588\"* of|strong=\"H3427\"* Eden|strong=\"H5731\"*. The|strong=\"H1961\"* waste|strong=\"H8074\"*, desolate|strong=\"H8074\"*, and|strong=\"H5892\"* ruined|strong=\"H2040\"* cities|strong=\"H5892\"* are|strong=\"H5892\"* fortified|strong=\"H1219\"* and|strong=\"H5892\"* inhabited|strong=\"H3427\"*.’" + }, + { + "verseNum": 36, + "text": "Then|strong=\"H1696\"* the|strong=\"H3588\"* nations|strong=\"H1471\"* that|strong=\"H3588\"* are|strong=\"H1471\"* left|strong=\"H7604\"* around|strong=\"H5439\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* built|strong=\"H1129\"* the|strong=\"H3588\"* ruined|strong=\"H2040\"* places|strong=\"H8074\"* and|strong=\"H3068\"* planted|strong=\"H5193\"* that|strong=\"H3588\"* which|strong=\"H3068\"* was|strong=\"H3068\"* desolate|strong=\"H8074\"*. I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H3588\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H3588\"*.”" + }, + { + "verseNum": 37, + "text": "“‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “For|strong=\"H6213\"* this|strong=\"H2063\"*, moreover|strong=\"H3541\"*, I|strong=\"H3541\"* will|strong=\"H3478\"* be|strong=\"H5750\"* inquired|strong=\"H1875\"* of|strong=\"H1004\"* by|strong=\"H3478\"* the|strong=\"H3069\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* do|strong=\"H6213\"* it|strong=\"H6213\"* for|strong=\"H6213\"* them|strong=\"H6213\"*: I|strong=\"H3541\"* will|strong=\"H3478\"* increase|strong=\"H7235\"* them|strong=\"H6213\"* with|strong=\"H1004\"* men|strong=\"H6213\"* like|strong=\"H1004\"* a|strong=\"H3068\"* flock|strong=\"H6629\"*." + }, + { + "verseNum": 38, + "text": "As|strong=\"H1961\"* the|strong=\"H3588\"* flock|strong=\"H6629\"* for|strong=\"H3588\"* sacrifice, as|strong=\"H1961\"* the|strong=\"H3588\"* flock|strong=\"H6629\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* in|strong=\"H3068\"* her|strong=\"H3045\"* appointed|strong=\"H4150\"* feasts|strong=\"H4150\"*, so|strong=\"H3651\"* the|strong=\"H3588\"* waste|strong=\"H2720\"* cities|strong=\"H5892\"* will|strong=\"H3068\"* be|strong=\"H1961\"* filled|strong=\"H4392\"* with|strong=\"H3068\"* flocks|strong=\"H6629\"* of|strong=\"H3068\"* men. Then|strong=\"H1961\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* on|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H3068\"* he|strong=\"H1931\"* brought|strong=\"H3318\"* me|strong=\"H5921\"* out|strong=\"H3318\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"*, and|strong=\"H3068\"* set|strong=\"H5117\"* me|strong=\"H5921\"* down|strong=\"H5117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H5921\"* valley|strong=\"H1237\"*; and|strong=\"H3068\"* it|strong=\"H1931\"* was|strong=\"H3068\"* full|strong=\"H4392\"* of|strong=\"H3068\"* bones|strong=\"H6106\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H5921\"* caused|strong=\"H5674\"* me|strong=\"H6440\"* to|strong=\"H5921\"* pass|strong=\"H5674\"* by|strong=\"H5921\"* them|strong=\"H5921\"* all|strong=\"H5439\"* around|strong=\"H5439\"*; and|strong=\"H6440\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* were|strong=\"H7227\"* very|strong=\"H3966\"* many|strong=\"H7227\"* in|strong=\"H5921\"* the|strong=\"H6440\"* open|strong=\"H6440\"* valley|strong=\"H1237\"*, and|strong=\"H6440\"* behold|strong=\"H2009\"*, they|strong=\"H5921\"* were|strong=\"H7227\"* very|strong=\"H3966\"* dry|strong=\"H3002\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H1121\"* said to|strong=\"H1121\"* me|strong=\"H2421\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, can|strong=\"H3045\"* these bones|strong=\"H6106\"* live|strong=\"H2421\"*?”" + }, + { + "verseNum": 4, + "text": "Again he|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3068\"* me|strong=\"H5921\"*, “Prophesy|strong=\"H5012\"* over|strong=\"H5921\"* these|strong=\"H8085\"* bones|strong=\"H6106\"*, and|strong=\"H3068\"* tell|strong=\"H8085\"* them|strong=\"H5921\"*, ‘You|strong=\"H5921\"* dry|strong=\"H3002\"* bones|strong=\"H6106\"*, hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H7307\"* these bones|strong=\"H6106\"*: “Behold|strong=\"H2009\"*, I|strong=\"H3541\"* will|strong=\"H7307\"* cause breath|strong=\"H7307\"* to|strong=\"H7307\"* enter into you|strong=\"H2009\"*, and|strong=\"H2421\"* you|strong=\"H2009\"* will|strong=\"H7307\"* live|strong=\"H2421\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* lay|strong=\"H5414\"* sinews|strong=\"H1517\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H5927\"* up|strong=\"H5927\"* flesh|strong=\"H1320\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* cover|strong=\"H7159\"* you|strong=\"H3588\"* with|strong=\"H3068\"* skin|strong=\"H5785\"*, and|strong=\"H3068\"* put|strong=\"H5414\"* breath|strong=\"H7307\"* in|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* live|strong=\"H2421\"*. Then|strong=\"H5414\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”’”" + }, + { + "verseNum": 7, + "text": "So|strong=\"H1961\"* I|strong=\"H2009\"* prophesied|strong=\"H5012\"* as|strong=\"H1961\"* I|strong=\"H2009\"* was|strong=\"H1961\"* commanded|strong=\"H6680\"*. As|strong=\"H1961\"* I|strong=\"H2009\"* prophesied|strong=\"H5012\"*, there|strong=\"H2009\"* was|strong=\"H1961\"* a|strong=\"H3068\"* noise|strong=\"H6963\"*, and|strong=\"H6963\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* was|strong=\"H1961\"* an|strong=\"H7126\"* earthquake|strong=\"H7494\"*. Then|strong=\"H1961\"* the|strong=\"H6680\"* bones|strong=\"H6106\"* came|strong=\"H1961\"* together|strong=\"H7126\"*, bone|strong=\"H6106\"* to|strong=\"H1961\"* its|strong=\"H1961\"* bone|strong=\"H6106\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H2009\"* saw|strong=\"H7200\"*, and|strong=\"H7200\"*, behold|strong=\"H2009\"*, there|strong=\"H2009\"* were|strong=\"H2009\"* sinews|strong=\"H1517\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H7200\"* flesh|strong=\"H1320\"* came|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H7200\"* skin|strong=\"H5785\"* covered|strong=\"H7159\"* them|strong=\"H5921\"* above|strong=\"H4605\"*; but|strong=\"H7200\"* there|strong=\"H2009\"* was|strong=\"H7307\"* no|strong=\"H7200\"* breath|strong=\"H7307\"* in|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H3541\"* he|strong=\"H3541\"* said to|strong=\"H1121\"* me|strong=\"H2421\"*, “Prophesy|strong=\"H5012\"* to|strong=\"H1121\"* the|strong=\"H3069\"* wind|strong=\"H7307\"*, prophesy|strong=\"H5012\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, and|strong=\"H1121\"* tell the|strong=\"H3069\"* wind|strong=\"H7307\"*, ‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Come|strong=\"H2421\"* from|strong=\"H1121\"* the|strong=\"H3069\"* four winds|strong=\"H7307\"*, breath|strong=\"H7307\"*, and|strong=\"H1121\"* breathe|strong=\"H5301\"* on|strong=\"H2421\"* these|strong=\"H5012\"* slain|strong=\"H2026\"*, that|strong=\"H1121\"* they|strong=\"H3541\"* may|strong=\"H1121\"* live|strong=\"H2421\"*.”’”" + }, + { + "verseNum": 10, + "text": "So|strong=\"H3966\"* I|strong=\"H5921\"* prophesied|strong=\"H5012\"* as|strong=\"H6680\"* he|strong=\"H5921\"* commanded|strong=\"H6680\"* me|strong=\"H5921\"*, and|strong=\"H1419\"* the|strong=\"H5921\"* breath|strong=\"H7307\"* came|strong=\"H7307\"* into|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H1419\"* they|strong=\"H5921\"* lived|strong=\"H2421\"*, and|strong=\"H1419\"* stood|strong=\"H5975\"* up|strong=\"H5975\"* on|strong=\"H5921\"* their|strong=\"H5921\"* feet|strong=\"H7272\"*, an|strong=\"H2421\"* exceedingly|strong=\"H3966\"* great|strong=\"H1419\"* army|strong=\"H2428\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H2009\"* he|strong=\"H3605\"* said to|strong=\"H3478\"* me|strong=\"H3605\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, these|strong=\"H1992\"* bones|strong=\"H6106\"* are|strong=\"H1992\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Behold|strong=\"H2009\"*, they|strong=\"H1992\"* say|strong=\"H3478\"*, ‘Our|strong=\"H3605\"* bones|strong=\"H6106\"* are|strong=\"H1992\"* dried|strong=\"H3001\"* up|strong=\"H3001\"*, and|strong=\"H1121\"* our|strong=\"H3605\"* hope|strong=\"H8615\"* is|strong=\"H2009\"* lost. We|strong=\"H3605\"* are|strong=\"H1992\"* completely|strong=\"H3605\"* cut|strong=\"H1504\"* off|strong=\"H1504\"*.’" + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H3651\"* prophesy|strong=\"H5012\"*, and|strong=\"H3478\"* tell them|strong=\"H5927\"*, ‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2009\"*, I|strong=\"H3541\"* will|strong=\"H5971\"* open|strong=\"H6605\"* your|strong=\"H6605\"* graves|strong=\"H6913\"*, and|strong=\"H3478\"* cause|strong=\"H3651\"* you|strong=\"H3651\"* to|strong=\"H3478\"* come|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H6605\"* of|strong=\"H5971\"* your|strong=\"H6605\"* graves|strong=\"H6913\"*, my|strong=\"H6605\"* people|strong=\"H5971\"*; and|strong=\"H3478\"* I|strong=\"H3541\"* will|strong=\"H5971\"* bring|strong=\"H5927\"* you|strong=\"H3651\"* into|strong=\"H5927\"* the|strong=\"H3069\"* land of|strong=\"H5971\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, when|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* opened|strong=\"H6605\"* your|strong=\"H3068\"* graves|strong=\"H6913\"* and|strong=\"H3068\"* caused you|strong=\"H3588\"* to|strong=\"H3068\"* come|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H3045\"* of|strong=\"H3068\"* your|strong=\"H3068\"* graves|strong=\"H6913\"*, my|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* put|strong=\"H5414\"* my|strong=\"H5414\"* Spirit|strong=\"H7307\"* in|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* live|strong=\"H2421\"*. Then|strong=\"H1696\"* I|strong=\"H3588\"* will|strong=\"H3068\"* place|strong=\"H5414\"* you|strong=\"H3588\"* in|strong=\"H5921\"* your|strong=\"H3068\"* own land; and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H5414\"* and|strong=\"H3068\"* performed|strong=\"H6213\"* it|strong=\"H5414\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* again|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 16, + "text": "“You|strong=\"H3605\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, take|strong=\"H3947\"* one|strong=\"H3605\"* stick|strong=\"H6086\"* and|strong=\"H1121\"* write|strong=\"H3789\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, ‘For|strong=\"H5921\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* for|strong=\"H5921\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* his|strong=\"H3605\"* companions|strong=\"H2270\"*.’ Then|strong=\"H3947\"* take|strong=\"H3947\"* another stick|strong=\"H6086\"*, and|strong=\"H1121\"* write|strong=\"H3789\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, ‘For|strong=\"H5921\"* Joseph|strong=\"H3130\"*, the|strong=\"H3605\"* stick|strong=\"H6086\"* of|strong=\"H1121\"* Ephraim, and|strong=\"H1121\"* for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* his|strong=\"H3605\"* companions|strong=\"H2270\"*.’" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H1961\"* join|strong=\"H7126\"* them|strong=\"H3027\"* for|strong=\"H3027\"* yourself to|strong=\"H1961\"* one|strong=\"H1961\"* another into|strong=\"H3027\"* one|strong=\"H1961\"* stick|strong=\"H6086\"*, that|strong=\"H3027\"* they|strong=\"H3027\"* may|strong=\"H1961\"* become|strong=\"H1961\"* one|strong=\"H1961\"* in|strong=\"H6086\"* your|strong=\"H1961\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 18, + "text": "“When|strong=\"H1121\"* the|strong=\"H5046\"* children|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H3808\"* people|strong=\"H5971\"* speak to|strong=\"H1121\"* you|strong=\"H5046\"*, saying, ‘Won’t you|strong=\"H5046\"* show|strong=\"H5046\"* us|strong=\"H5046\"* what|strong=\"H4100\"* you|strong=\"H5046\"* mean by|strong=\"H3808\"* these|strong=\"H5971\"*?’" + }, + { + "verseNum": 19, + "text": "tell|strong=\"H1696\"* them|strong=\"H5414\"*, ‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2009\"*, I|strong=\"H5414\"* will|strong=\"H1961\"* take|strong=\"H3947\"* the|strong=\"H5921\"* stick|strong=\"H6086\"* of|strong=\"H3027\"* Joseph|strong=\"H3130\"*, which|strong=\"H6086\"* is|strong=\"H3027\"* in|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* Ephraim, and|strong=\"H3063\"* the|strong=\"H5921\"* tribes|strong=\"H7626\"* of|strong=\"H3027\"* Israel|strong=\"H3478\"* his|strong=\"H5414\"* companions|strong=\"H2270\"*; and|strong=\"H3063\"* I|strong=\"H5414\"* will|strong=\"H1961\"* put|strong=\"H5414\"* them|strong=\"H5414\"* with|strong=\"H6213\"* it|strong=\"H5414\"*, with|strong=\"H6213\"* the|strong=\"H5921\"* stick|strong=\"H6086\"* of|strong=\"H3027\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* make|strong=\"H6213\"* them|strong=\"H5414\"* one|strong=\"H1961\"* stick|strong=\"H6086\"*, and|strong=\"H3063\"* they|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* one|strong=\"H1961\"* in|strong=\"H5921\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H5921\"* sticks|strong=\"H6086\"* on|strong=\"H5921\"* which|strong=\"H5869\"* you|strong=\"H5921\"* write|strong=\"H3789\"* will|strong=\"H1961\"* be|strong=\"H1961\"* in|strong=\"H5921\"* your|strong=\"H5921\"* hand|strong=\"H3027\"* before|strong=\"H5869\"* their|strong=\"H5921\"* eyes|strong=\"H5869\"*.”’" + }, + { + "verseNum": 21, + "text": "Say|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H3947\"*, ‘The|strong=\"H3947\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2009\"*, I|strong=\"H3541\"* will|strong=\"H1471\"* take|strong=\"H3947\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* among|strong=\"H3478\"* the|strong=\"H3947\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* they|strong=\"H8033\"* have|strong=\"H1121\"* gone|strong=\"H1980\"*, and|strong=\"H1121\"* will|strong=\"H1471\"* gather|strong=\"H6908\"* them|strong=\"H3947\"* on|strong=\"H1980\"* every|strong=\"H5439\"* side|strong=\"H5439\"*, and|strong=\"H1121\"* bring|strong=\"H3947\"* them|strong=\"H3947\"* into|strong=\"H1980\"* their|strong=\"H3947\"* own land." + }, + { + "verseNum": 22, + "text": "I|strong=\"H3808\"* will|strong=\"H1961\"* make|strong=\"H6213\"* them|strong=\"H6213\"* one|strong=\"H3605\"* nation|strong=\"H1471\"* in|strong=\"H3478\"* the|strong=\"H3605\"* land, on|strong=\"H1961\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*. One|strong=\"H3605\"* king|strong=\"H4428\"* will|strong=\"H1961\"* be|strong=\"H1961\"* king|strong=\"H4428\"* to|strong=\"H3478\"* them|strong=\"H6213\"* all|strong=\"H3605\"*. They|strong=\"H3808\"* will|strong=\"H1961\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* be|strong=\"H1961\"* two|strong=\"H8147\"* nations|strong=\"H1471\"*. They|strong=\"H3808\"* won’t be|strong=\"H1961\"* divided|strong=\"H2673\"* into|strong=\"H6213\"* two|strong=\"H8147\"* kingdoms|strong=\"H4467\"* any|strong=\"H3605\"* more|strong=\"H5750\"* at|strong=\"H3478\"* all|strong=\"H3605\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H3808\"* won’t defile|strong=\"H2930\"* themselves|strong=\"H2891\"* any|strong=\"H3605\"* more|strong=\"H5750\"* with|strong=\"H5971\"* their|strong=\"H3605\"* idols|strong=\"H1544\"*, nor|strong=\"H3808\"* with|strong=\"H5971\"* their|strong=\"H3605\"* detestable|strong=\"H8251\"* things|strong=\"H8251\"*, nor|strong=\"H3808\"* with|strong=\"H5971\"* any|strong=\"H3605\"* of|strong=\"H5971\"* their|strong=\"H3605\"* transgressions|strong=\"H6588\"*; but|strong=\"H3808\"* I|strong=\"H3808\"* will|strong=\"H1961\"* save|strong=\"H3467\"* them|strong=\"H1961\"* out|strong=\"H3605\"* of|strong=\"H5971\"* all|strong=\"H3605\"* their|strong=\"H3605\"* dwelling|strong=\"H4186\"* places|strong=\"H4186\"* in|strong=\"H5750\"* which|strong=\"H5971\"* they|strong=\"H3808\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"*, and|strong=\"H5971\"* will|strong=\"H1961\"* cleanse|strong=\"H2891\"* them|strong=\"H1961\"*. So|strong=\"H1961\"* they|strong=\"H3808\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H5971\"* I|strong=\"H3808\"* will|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H3605\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 24, + "text": "“‘“My|strong=\"H8104\"* servant|strong=\"H5650\"* David|strong=\"H1732\"* will|strong=\"H1961\"* be|strong=\"H1961\"* king|strong=\"H4428\"* over|strong=\"H5921\"* them|strong=\"H5921\"*. They|strong=\"H5921\"* all|strong=\"H3605\"* will|strong=\"H1961\"* have|strong=\"H1961\"* one|strong=\"H3605\"* shepherd|strong=\"H7462\"*. They|strong=\"H5921\"* will|strong=\"H1961\"* also|strong=\"H1732\"* walk|strong=\"H3212\"* in|strong=\"H5921\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"* and|strong=\"H4428\"* observe|strong=\"H8104\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, and|strong=\"H4428\"* do|strong=\"H6213\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"H1992\"* will|strong=\"H5650\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* land that|strong=\"H5414\"* I|strong=\"H5414\"* have|strong=\"H1121\"* given|strong=\"H5414\"* to|strong=\"H5704\"* Jacob|strong=\"H3290\"* my|strong=\"H5414\"* servant|strong=\"H5650\"*, in|strong=\"H3427\"* which|strong=\"H1992\"* your|strong=\"H5414\"* fathers lived|strong=\"H3427\"*. They|strong=\"H1992\"* will|strong=\"H5650\"* dwell|strong=\"H3427\"* therein|strong=\"H3427\"*, they|strong=\"H1992\"*, and|strong=\"H1121\"* their|strong=\"H5414\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* their|strong=\"H5414\"* children|strong=\"H1121\"*’s children|strong=\"H1121\"*, forever|strong=\"H5769\"*. David|strong=\"H1732\"* my|strong=\"H5414\"* servant|strong=\"H5650\"* will|strong=\"H5650\"* be|strong=\"H1121\"* their|strong=\"H5414\"* prince|strong=\"H5387\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 26, + "text": "Moreover|strong=\"H1961\"* I|strong=\"H5414\"* will|strong=\"H1961\"* make|strong=\"H5414\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H8432\"* peace|strong=\"H7965\"* with|strong=\"H1285\"* them|strong=\"H5414\"*. It|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* an|strong=\"H1961\"* everlasting|strong=\"H5769\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* them|strong=\"H5414\"*. I|strong=\"H5414\"* will|strong=\"H1961\"* place|strong=\"H5414\"* them|strong=\"H5414\"*, multiply|strong=\"H7235\"* them|strong=\"H5414\"*, and|strong=\"H5769\"* will|strong=\"H1961\"* set|strong=\"H5414\"* my|strong=\"H5414\"* sanctuary|strong=\"H4720\"* among|strong=\"H8432\"* them|strong=\"H5414\"* forever|strong=\"H5769\"* more|strong=\"H7235\"*." + }, + { + "verseNum": 27, + "text": "My|strong=\"H5921\"* tent also|strong=\"H5971\"* will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H5921\"* them|strong=\"H1992\"*. I|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H1992\"* God, and|strong=\"H5971\"* they|strong=\"H1992\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H5921\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H3588\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* sanctifies|strong=\"H6942\"* Israel|strong=\"H3478\"*, when|strong=\"H3588\"* my|strong=\"H3068\"* sanctuary|strong=\"H4720\"* is|strong=\"H3068\"* among|strong=\"H8432\"* them|strong=\"H8432\"* forever|strong=\"H5769\"* more|strong=\"H5769\"*.”’”" + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, set|strong=\"H7760\"* your|strong=\"H5921\"* face|strong=\"H6440\"* toward|strong=\"H5921\"* Gog|strong=\"H1463\"*, of|strong=\"H1121\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H1121\"* Magog|strong=\"H4031\"*, the|strong=\"H6440\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* Rosh, Meshech|strong=\"H4902\"*, and|strong=\"H1121\"* Tubal|strong=\"H8422\"*, and|strong=\"H1121\"* prophesy|strong=\"H5012\"* against|strong=\"H5921\"* him|strong=\"H6440\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H7218\"* say, ‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* against|strong=\"H2005\"* you, Gog|strong=\"H1463\"*, prince|strong=\"H5387\"* of|strong=\"H7218\"* Rosh, Meshech|strong=\"H4902\"*, and|strong=\"H7218\"* Tubal|strong=\"H8422\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H5414\"* will|strong=\"H2719\"* turn|strong=\"H7725\"* you|strong=\"H5414\"* around|strong=\"H7725\"*, and|strong=\"H7725\"* put|strong=\"H5414\"* hooks|strong=\"H2397\"* into|strong=\"H7725\"* your|strong=\"H3605\"* jaws|strong=\"H3895\"*, and|strong=\"H7725\"* I|strong=\"H5414\"* will|strong=\"H2719\"* bring|strong=\"H3318\"* you|strong=\"H5414\"* out|strong=\"H3318\"*, with|strong=\"H3847\"* all|strong=\"H3605\"* your|strong=\"H3605\"* army|strong=\"H2428\"*, horses|strong=\"H5483\"* and|strong=\"H7725\"* horsemen|strong=\"H6571\"*, all|strong=\"H3605\"* of|strong=\"H6951\"* them|strong=\"H5414\"* clothed|strong=\"H3847\"* in|strong=\"H3847\"* full|strong=\"H3605\"* armor|strong=\"H3847\"*, a|strong=\"H3068\"* great|strong=\"H7227\"* company|strong=\"H6951\"* with|strong=\"H3847\"* buckler|strong=\"H4043\"* and|strong=\"H7725\"* shield|strong=\"H4043\"*, all|strong=\"H3605\"* of|strong=\"H6951\"* them|strong=\"H5414\"* handling|strong=\"H8610\"* swords|strong=\"H2719\"*;" + }, + { + "verseNum": 5, + "text": "Persia|strong=\"H6539\"*, Cush|strong=\"H3568\"*, and|strong=\"H4043\"* Put|strong=\"H6316\"* with|strong=\"H3605\"* them, all|strong=\"H3605\"* of|strong=\"H3605\"* them with|strong=\"H3605\"* shield|strong=\"H4043\"* and|strong=\"H4043\"* helmet|strong=\"H3553\"*;" + }, + { + "verseNum": 6, + "text": "Gomer|strong=\"H1586\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* his|strong=\"H3605\"* hordes; the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Togarmah|strong=\"H8425\"* in|strong=\"H1004\"* the|strong=\"H3605\"* uttermost parts|strong=\"H3411\"* of|strong=\"H1004\"* the|strong=\"H3605\"* north|strong=\"H6828\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* his|strong=\"H3605\"* hordes—even many|strong=\"H7227\"* peoples|strong=\"H5971\"* with|strong=\"H1004\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 7, + "text": "“‘“Be|strong=\"H1961\"* prepared|strong=\"H3559\"*, yes, prepare|strong=\"H3559\"* yourself|strong=\"H5921\"*, you|strong=\"H3605\"*, and|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3605\"* companies|strong=\"H6951\"* who|strong=\"H3605\"* are|strong=\"H1961\"* assembled|strong=\"H6950\"* to|strong=\"H1961\"* you|strong=\"H3605\"*, and|strong=\"H3605\"* be|strong=\"H1961\"* a|strong=\"H3068\"* guard|strong=\"H4929\"* to|strong=\"H1961\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "After|strong=\"H5921\"* many|strong=\"H7227\"* days|strong=\"H3117\"* you|strong=\"H3605\"* will|strong=\"H1961\"* be|strong=\"H1961\"* visited|strong=\"H6485\"*. In|strong=\"H3427\"* the|strong=\"H3605\"* latter years|strong=\"H8141\"* you|strong=\"H3605\"* will|strong=\"H1961\"* come|strong=\"H1961\"* into|strong=\"H7725\"* the|strong=\"H3605\"* land that|strong=\"H5971\"* is|strong=\"H1931\"* brought|strong=\"H3318\"* back|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, that|strong=\"H5971\"* is|strong=\"H1931\"* gathered|strong=\"H6908\"* out|strong=\"H3318\"* of|strong=\"H3117\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*, which|strong=\"H1931\"* have|strong=\"H1961\"* been|strong=\"H1961\"* a|strong=\"H3068\"* continual|strong=\"H8548\"* waste|strong=\"H2723\"*; but|strong=\"H1961\"* it|strong=\"H1931\"* is|strong=\"H1931\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* and|strong=\"H3478\"* they|strong=\"H3117\"* will|strong=\"H1961\"* dwell|strong=\"H3427\"* securely, all|strong=\"H3605\"* of|strong=\"H3117\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3605\"* will|strong=\"H1961\"* ascend|strong=\"H5927\"*. You|strong=\"H3605\"* will|strong=\"H1961\"* come|strong=\"H5927\"* like|strong=\"H1961\"* a|strong=\"H3068\"* storm|strong=\"H7722\"*. You|strong=\"H3605\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* cloud|strong=\"H6051\"* to|strong=\"H5927\"* cover|strong=\"H3680\"* the|strong=\"H3605\"* land, you|strong=\"H3605\"* and|strong=\"H5971\"* all|strong=\"H3605\"* your|strong=\"H3605\"* hordes, and|strong=\"H5971\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"* with|strong=\"H5971\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 10, + "text": "“‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* things|strong=\"H1697\"* will|strong=\"H1961\"* come|strong=\"H5927\"* into|strong=\"H5927\"* your|strong=\"H5921\"* mind|strong=\"H3824\"*, and|strong=\"H3117\"* you|strong=\"H5921\"* will|strong=\"H1961\"* devise|strong=\"H2803\"* an|strong=\"H1961\"* evil|strong=\"H7451\"* plan|strong=\"H2803\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H3605\"* will|strong=\"H2346\"* say, ‘I|strong=\"H5921\"* will|strong=\"H2346\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H3605\"* land of|strong=\"H3427\"* unwalled|strong=\"H6519\"* villages|strong=\"H6519\"*. I|strong=\"H5921\"* will|strong=\"H2346\"* go|strong=\"H5927\"* to|strong=\"H5927\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1280\"* at|strong=\"H3427\"* rest|strong=\"H8252\"*, who|strong=\"H3605\"* dwell|strong=\"H3427\"* securely, all|strong=\"H3605\"* of|strong=\"H3427\"* them|strong=\"H5921\"* dwelling|strong=\"H3427\"* without|strong=\"H3427\"* walls|strong=\"H2346\"*, and|strong=\"H5927\"* having neither bars|strong=\"H1280\"* nor|strong=\"H1817\"* gates|strong=\"H1817\"*," + }, + { + "verseNum": 12, + "text": "to|strong=\"H7725\"* take|strong=\"H7725\"* the|strong=\"H5921\"* plunder|strong=\"H7998\"* and|strong=\"H7725\"* to|strong=\"H7725\"* take|strong=\"H7725\"* prey|strong=\"H7998\"*; to|strong=\"H7725\"* turn|strong=\"H7725\"* your|strong=\"H5921\"* hand|strong=\"H3027\"* against|strong=\"H5921\"* the|strong=\"H5921\"* waste|strong=\"H2723\"* places|strong=\"H2723\"* that|strong=\"H5971\"* are|strong=\"H5971\"* inhabited|strong=\"H3427\"*, and|strong=\"H7725\"* against|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* gathered|strong=\"H6213\"* out|strong=\"H5921\"* of|strong=\"H3027\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*, who|strong=\"H5971\"* have|strong=\"H5971\"* gotten|strong=\"H6213\"* livestock|strong=\"H4735\"* and|strong=\"H7725\"* goods|strong=\"H7075\"*, who|strong=\"H5971\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* middle|strong=\"H2872\"* of|strong=\"H3027\"* the|strong=\"H5921\"* earth.’" + }, + { + "verseNum": 13, + "text": "Sheba|strong=\"H7614\"*, Dedan|strong=\"H1719\"*, and|strong=\"H3701\"* the|strong=\"H3605\"* merchants|strong=\"H5503\"* of|strong=\"H6951\"* Tarshish|strong=\"H8659\"*, with|strong=\"H3605\"* all|strong=\"H3605\"* its|strong=\"H3605\"* young|strong=\"H3715\"* lions|strong=\"H3715\"*, will|strong=\"H6951\"* ask you|strong=\"H3605\"*, ‘Have|strong=\"H3605\"* you|strong=\"H3605\"* come to|strong=\"H3701\"* take|strong=\"H3947\"* the|strong=\"H3605\"* plunder|strong=\"H7998\"*? Have|strong=\"H3605\"* you|strong=\"H3605\"* assembled|strong=\"H6950\"* your|strong=\"H3605\"* company|strong=\"H6951\"* to|strong=\"H3701\"* take|strong=\"H3947\"* the|strong=\"H3605\"* prey|strong=\"H7998\"*, to|strong=\"H3701\"* carry|strong=\"H5375\"* away|strong=\"H3947\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* gold|strong=\"H2091\"*, to|strong=\"H3701\"* take|strong=\"H3947\"* away|strong=\"H3947\"* livestock|strong=\"H4735\"* and|strong=\"H3701\"* goods|strong=\"H7075\"*, to|strong=\"H3701\"* take|strong=\"H3947\"* great|strong=\"H1419\"* plunder|strong=\"H7998\"*?’”’" + }, + { + "verseNum": 14, + "text": "“Therefore|strong=\"H3651\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, prophesy|strong=\"H5012\"*, and|strong=\"H1121\"* tell|strong=\"H3045\"* Gog|strong=\"H1463\"*, ‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “In|strong=\"H3427\"* that|strong=\"H3045\"* day|strong=\"H3117\"* when|strong=\"H3117\"* my|strong=\"H3045\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* dwells|strong=\"H3427\"* securely, will|strong=\"H5971\"* you|strong=\"H3117\"* not|strong=\"H3808\"* know|strong=\"H3045\"* it|strong=\"H1931\"*?" + }, + { + "verseNum": 15, + "text": "You|strong=\"H3605\"* will|strong=\"H5971\"* come|strong=\"H5971\"* from|strong=\"H5971\"* your|strong=\"H3605\"* place|strong=\"H4725\"* out|strong=\"H3605\"* of|strong=\"H6951\"* the|strong=\"H3605\"* uttermost parts|strong=\"H3411\"* of|strong=\"H6951\"* the|strong=\"H3605\"* north|strong=\"H6828\"*, you|strong=\"H3605\"*, and|strong=\"H1419\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"* with|strong=\"H5971\"* you|strong=\"H3605\"*, all|strong=\"H3605\"* of|strong=\"H6951\"* them riding|strong=\"H7392\"* on|strong=\"H7392\"* horses|strong=\"H5483\"*, a|strong=\"H3068\"* great|strong=\"H1419\"* company|strong=\"H6951\"* and|strong=\"H1419\"* a|strong=\"H3068\"* mighty|strong=\"H1419\"* army|strong=\"H2428\"*." + }, + { + "verseNum": 16, + "text": "You|strong=\"H5921\"* will|strong=\"H1961\"* come|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* my|strong=\"H5921\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* as|strong=\"H3117\"* a|strong=\"H3068\"* cloud|strong=\"H6051\"* to|strong=\"H3478\"* cover|strong=\"H3680\"* the|strong=\"H5921\"* land. It|strong=\"H5921\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* latter days|strong=\"H3117\"* that|strong=\"H3045\"* I|strong=\"H3117\"* will|strong=\"H1961\"* bring|strong=\"H5927\"* you|strong=\"H5921\"* against|strong=\"H5921\"* my|strong=\"H5921\"* land, that|strong=\"H3045\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* may|strong=\"H1961\"* know|strong=\"H3045\"* me|strong=\"H5921\"* when|strong=\"H1961\"* I|strong=\"H3117\"* am|strong=\"H1961\"* sanctified|strong=\"H6942\"* in|strong=\"H5921\"* you|strong=\"H5921\"*, Gog|strong=\"H1463\"*, before|strong=\"H5869\"* their|strong=\"H5921\"* eyes|strong=\"H5869\"*.”" + }, + { + "verseNum": 17, + "text": "“‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Are|strong=\"H3117\"* you|strong=\"H5921\"* he|strong=\"H1931\"* of|strong=\"H3117\"* whom|strong=\"H1992\"* I|strong=\"H3117\"* spoke|strong=\"H1696\"* in|strong=\"H8141\"* old|strong=\"H8141\"* time|strong=\"H3117\"* by|strong=\"H3027\"* my|strong=\"H5921\"* servants|strong=\"H5650\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*, who|strong=\"H1931\"* prophesied|strong=\"H5012\"* in|strong=\"H8141\"* those|strong=\"H1992\"* days|strong=\"H3117\"* for|strong=\"H5921\"* years|strong=\"H8141\"* that|strong=\"H3117\"* I|strong=\"H3117\"* would|strong=\"H3478\"* bring you|strong=\"H5921\"* against|strong=\"H5921\"* them|strong=\"H1992\"*?" + }, + { + "verseNum": 18, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, when|strong=\"H1961\"* Gog|strong=\"H1463\"* comes|strong=\"H1961\"* against|strong=\"H5921\"* the|strong=\"H5002\"* land of|strong=\"H3117\"* Israel|strong=\"H3478\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3117\"* my|strong=\"H5921\"* wrath|strong=\"H2534\"* will|strong=\"H1961\"* come|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* my|strong=\"H5921\"* nostrils." + }, + { + "verseNum": 19, + "text": "For|strong=\"H5921\"* in|strong=\"H5921\"* my|strong=\"H5921\"* jealousy|strong=\"H7068\"* and|strong=\"H3478\"* in|strong=\"H5921\"* the|strong=\"H5921\"* fire of|strong=\"H3117\"* my|strong=\"H5921\"* wrath|strong=\"H5678\"* I|strong=\"H3117\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"*. Surely|strong=\"H1961\"* in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* great|strong=\"H1419\"* shaking|strong=\"H7494\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H3117\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 20, + "text": "so|strong=\"H5921\"* that|strong=\"H3605\"* the|strong=\"H3605\"* fish|strong=\"H1709\"* of|strong=\"H2022\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*, the|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H2022\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, the|strong=\"H3605\"* animals|strong=\"H2416\"* of|strong=\"H2022\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, all|strong=\"H3605\"* creeping|strong=\"H7431\"* things|strong=\"H7431\"* who|strong=\"H3605\"* creep|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*, and|strong=\"H8064\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H8064\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H2022\"* the|strong=\"H3605\"* earth|strong=\"H8064\"* will|strong=\"H8064\"* shake|strong=\"H7493\"* at|strong=\"H5921\"* my|strong=\"H3605\"* presence|strong=\"H6440\"*. Then|strong=\"H5307\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* will|strong=\"H8064\"* be|strong=\"H8064\"* thrown|strong=\"H2040\"* down|strong=\"H5307\"*, the|strong=\"H3605\"* steep|strong=\"H4095\"* places|strong=\"H4095\"* will|strong=\"H8064\"* fall|strong=\"H5307\"*, and|strong=\"H8064\"* every|strong=\"H3605\"* wall|strong=\"H2346\"* will|strong=\"H8064\"* fall|strong=\"H5307\"* to|strong=\"H5921\"* the|strong=\"H3605\"* ground|strong=\"H7704\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"H5921\"* will|strong=\"H1961\"* call|strong=\"H7121\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* against|strong=\"H5921\"* him|strong=\"H7121\"* to|strong=\"H1961\"* all|strong=\"H3605\"* my|strong=\"H3605\"* mountains|strong=\"H2022\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*. “Every|strong=\"H3605\"* man|strong=\"H3605\"*’s sword|strong=\"H2719\"* will|strong=\"H1961\"* be|strong=\"H1961\"* against|strong=\"H5921\"* his|strong=\"H3605\"* brother." + }, + { + "verseNum": 22, + "text": "I|strong=\"H5921\"* will|strong=\"H5971\"* enter|strong=\"H8199\"* into|strong=\"H8199\"* judgment|strong=\"H8199\"* with|strong=\"H5921\"* him|strong=\"H5921\"* with|strong=\"H5921\"* pestilence|strong=\"H1698\"* and|strong=\"H5971\"* with|strong=\"H5921\"* blood|strong=\"H1818\"*. I|strong=\"H5921\"* will|strong=\"H5971\"* rain|strong=\"H1653\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, on|strong=\"H5921\"* his|strong=\"H5921\"* hordes, and|strong=\"H5971\"* on|strong=\"H5921\"* the|strong=\"H5921\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* with|strong=\"H5921\"* him|strong=\"H5921\"*, torrential|strong=\"H7857\"* rains|strong=\"H1653\"* with|strong=\"H5921\"* great|strong=\"H7227\"* hailstones, fire, and|strong=\"H5971\"* sulfur|strong=\"H1614\"*." + }, + { + "verseNum": 23, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* magnify|strong=\"H1431\"* myself|strong=\"H3045\"* and|strong=\"H3068\"* sanctify|strong=\"H6942\"* myself|strong=\"H3045\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H3045\"* myself|strong=\"H3045\"* known|strong=\"H3045\"* in|strong=\"H3068\"* the|strong=\"H3588\"* eyes|strong=\"H5869\"* of|strong=\"H3068\"* many|strong=\"H7227\"* nations|strong=\"H1471\"*. Then|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”’" + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "“You|strong=\"H5921\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, prophesy|strong=\"H5012\"* against|strong=\"H5921\"* Gog|strong=\"H1463\"*, and|strong=\"H1121\"* say, ‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, Gog|strong=\"H1463\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* Rosh, Meshech|strong=\"H4902\"*, and|strong=\"H1121\"* Tubal|strong=\"H8422\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H5921\"* will|strong=\"H3478\"* turn|strong=\"H7725\"* you|strong=\"H5921\"* around|strong=\"H5921\"*, will|strong=\"H3478\"* lead|strong=\"H5927\"* you|strong=\"H5921\"* on|strong=\"H5921\"*, and|strong=\"H3478\"* will|strong=\"H3478\"* cause|strong=\"H7725\"* you|strong=\"H5921\"* to|strong=\"H7725\"* come|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H7725\"* the|strong=\"H5921\"* uttermost parts|strong=\"H3411\"* of|strong=\"H2022\"* the|strong=\"H5921\"* north|strong=\"H6828\"*; and|strong=\"H3478\"* I|strong=\"H5921\"* will|strong=\"H3478\"* bring|strong=\"H7725\"* you|strong=\"H5921\"* onto|strong=\"H5921\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H3027\"* will|strong=\"H3027\"* strike|strong=\"H5221\"* your|strong=\"H5221\"* bow|strong=\"H7198\"* out|strong=\"H5307\"* of|strong=\"H3027\"* your|strong=\"H5221\"* left|strong=\"H8040\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* will|strong=\"H3027\"* cause your|strong=\"H5221\"* arrows|strong=\"H2671\"* to|strong=\"H3027\"* fall|strong=\"H5307\"* out|strong=\"H5307\"* of|strong=\"H3027\"* your|strong=\"H5221\"* right|strong=\"H3225\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H5414\"* will|strong=\"H5971\"* fall|strong=\"H5307\"* on|strong=\"H5921\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"*, you|strong=\"H5414\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* your|strong=\"H3605\"* hordes, and|strong=\"H3478\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H5971\"* with|strong=\"H5921\"* you|strong=\"H5414\"*. I|strong=\"H5414\"* will|strong=\"H5971\"* give|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H3605\"* ravenous|strong=\"H5861\"* birds|strong=\"H6833\"* of|strong=\"H2022\"* every|strong=\"H3605\"* sort|strong=\"H3671\"* and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3605\"* animals|strong=\"H2416\"* of|strong=\"H2022\"* the|strong=\"H3605\"* field|strong=\"H7704\"* to|strong=\"H3478\"* be|strong=\"H3478\"* devoured." + }, + { + "verseNum": 5, + "text": "You|strong=\"H3588\"* will|strong=\"H7704\"* fall|strong=\"H5307\"* on|strong=\"H5921\"* the|strong=\"H6440\"* open|strong=\"H6440\"* field|strong=\"H7704\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1696\"* spoken|strong=\"H1696\"* it|strong=\"H5921\"*,” says|strong=\"H5002\"* the|strong=\"H6440\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "“I|strong=\"H3588\"* will|strong=\"H3068\"* send|strong=\"H7971\"* a|strong=\"H3068\"* fire on|strong=\"H3427\"* Magog|strong=\"H4031\"* and|strong=\"H3068\"* on|strong=\"H3427\"* those|strong=\"H3427\"* who|strong=\"H3068\"* dwell|strong=\"H3427\"* securely in|strong=\"H3427\"* the|strong=\"H3588\"* islands. Then|strong=\"H7971\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "“‘“I|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H3045\"* my|strong=\"H3068\"* holy|strong=\"H6944\"* name|strong=\"H8034\"* known|strong=\"H3045\"* among|strong=\"H8432\"* my|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*. I|strong=\"H3588\"* won’t allow my|strong=\"H3068\"* holy|strong=\"H6944\"* name|strong=\"H8034\"* to|strong=\"H3478\"* be|strong=\"H3808\"* profaned|strong=\"H2490\"* any|strong=\"H5750\"* more|strong=\"H5750\"*. Then|strong=\"H3588\"* the|strong=\"H3588\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* Holy|strong=\"H6944\"* One|strong=\"H6918\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "Behold|strong=\"H2009\"*, it|strong=\"H1931\"* comes|strong=\"H1961\"*, and|strong=\"H3117\"* it|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* done|strong=\"H1961\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*. “This|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H5002\"* day|strong=\"H3117\"* about|strong=\"H1961\"* which|strong=\"H1931\"* I|strong=\"H3117\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 9, + "text": "“‘“Those|strong=\"H3318\"* who|strong=\"H3478\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3318\"* cities|strong=\"H5892\"* of|strong=\"H3027\"* Israel|strong=\"H3478\"* will|strong=\"H3478\"* go|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3478\"* will|strong=\"H3478\"* make|strong=\"H1197\"* fires|strong=\"H1197\"* of|strong=\"H3027\"* the|strong=\"H3318\"* weapons|strong=\"H5402\"* and|strong=\"H3478\"* burn|strong=\"H1197\"* them|strong=\"H3027\"*, both the|strong=\"H3318\"* shields|strong=\"H4043\"* and|strong=\"H3478\"* the|strong=\"H3318\"* bucklers|strong=\"H4043\"*, the|strong=\"H3318\"* bows|strong=\"H7198\"* and|strong=\"H3478\"* the|strong=\"H3318\"* arrows|strong=\"H2671\"*, and|strong=\"H3478\"* the|strong=\"H3318\"* war|strong=\"H4731\"* clubs|strong=\"H4731\"* and|strong=\"H3478\"* the|strong=\"H3318\"* spears|strong=\"H7420\"*, and|strong=\"H3478\"* they|strong=\"H8141\"* will|strong=\"H3478\"* make|strong=\"H1197\"* fires|strong=\"H1197\"* with|strong=\"H3427\"* them|strong=\"H3027\"* for|strong=\"H3027\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*;" + }, + { + "verseNum": 10, + "text": "so|strong=\"H4480\"* that|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3808\"* take|strong=\"H5375\"* no|strong=\"H3808\"* wood|strong=\"H6086\"* out|strong=\"H4480\"* of|strong=\"H7704\"* the|strong=\"H5002\"* field|strong=\"H7704\"*, and|strong=\"H6086\"* not|strong=\"H3808\"* cut|strong=\"H2404\"* down|strong=\"H2404\"* any|strong=\"H4480\"* out|strong=\"H4480\"* of|strong=\"H7704\"* the|strong=\"H5002\"* forests|strong=\"H3293\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3808\"* make|strong=\"H1197\"* fires|strong=\"H1197\"* with|strong=\"H1197\"* the|strong=\"H5002\"* weapons|strong=\"H5402\"*. They|strong=\"H3588\"* will|strong=\"H3808\"* plunder|strong=\"H7997\"* those|strong=\"H4480\"* who|strong=\"H3588\"* plundered|strong=\"H7997\"* them|strong=\"H5375\"*, and|strong=\"H6086\"* rob those|strong=\"H4480\"* who|strong=\"H3588\"* robbed|strong=\"H7997\"* them|strong=\"H5375\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "“‘“It|strong=\"H5414\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3478\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, that|strong=\"H3605\"* I|strong=\"H3117\"* will|strong=\"H1961\"* give|strong=\"H5414\"* to|strong=\"H3478\"* Gog|strong=\"H1463\"* a|strong=\"H3068\"* place|strong=\"H4725\"* for|strong=\"H7121\"* burial|strong=\"H6913\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, the|strong=\"H3605\"* valley|strong=\"H1516\"* of|strong=\"H3117\"* those|strong=\"H3605\"* who|strong=\"H3605\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* on|strong=\"H3117\"* the|strong=\"H3605\"* east|strong=\"H6926\"* of|strong=\"H3117\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*; and|strong=\"H3478\"* it|strong=\"H5414\"* will|strong=\"H1961\"* stop|strong=\"H2629\"* those|strong=\"H3605\"* who|strong=\"H3605\"* pass|strong=\"H5674\"* through|strong=\"H5674\"*. They|strong=\"H3117\"* will|strong=\"H1961\"* bury|strong=\"H6912\"* Gog|strong=\"H1463\"* and|strong=\"H3478\"* all|strong=\"H3605\"* his|strong=\"H3605\"* multitude|strong=\"H1995\"* there|strong=\"H8033\"*, and|strong=\"H3478\"* they|strong=\"H3117\"* will|strong=\"H1961\"* call|strong=\"H7121\"* it|strong=\"H5414\"* ‘The|strong=\"H3605\"* valley|strong=\"H1516\"* of|strong=\"H3117\"* Hamon Gog|strong=\"H1463\"*’." + }, + { + "verseNum": 12, + "text": "“‘“The|strong=\"H2891\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* will|strong=\"H3478\"* be|strong=\"H3478\"* burying|strong=\"H6912\"* them|strong=\"H4616\"* for|strong=\"H4616\"* seven|strong=\"H7651\"* months|strong=\"H2320\"*, that|strong=\"H4616\"* they|strong=\"H2320\"* may|strong=\"H3478\"* cleanse|strong=\"H2891\"* the|strong=\"H2891\"* land." + }, + { + "verseNum": 13, + "text": "Yes, all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H3117\"* the|strong=\"H3605\"* land will|strong=\"H1961\"* bury|strong=\"H6912\"* them|strong=\"H1961\"*; and|strong=\"H3117\"* they|strong=\"H3117\"* will|strong=\"H1961\"* become|strong=\"H1961\"* famous|strong=\"H8034\"* in|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H5971\"* I|strong=\"H3117\"* will|strong=\"H1961\"* be|strong=\"H1961\"* glorified|strong=\"H3513\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "“‘“They|strong=\"H5921\"* will|strong=\"H6440\"* set apart|strong=\"H5674\"* men|strong=\"H7651\"* of|strong=\"H6440\"* continual|strong=\"H8548\"* employment|strong=\"H8548\"* who will|strong=\"H6440\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H6440\"* land|strong=\"H6440\"*. Those|strong=\"H5921\"* who pass|strong=\"H5674\"* through|strong=\"H5674\"* will|strong=\"H6440\"* go|strong=\"H5674\"* with|strong=\"H5921\"* those|strong=\"H5921\"* who bury|strong=\"H6912\"* those|strong=\"H5921\"* who remain|strong=\"H3498\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, to|strong=\"H5921\"* cleanse|strong=\"H2891\"* it|strong=\"H5921\"*. After|strong=\"H5921\"* the|strong=\"H6440\"* end|strong=\"H7097\"* of|strong=\"H6440\"* seven|strong=\"H7651\"* months|strong=\"H2320\"* they|strong=\"H5921\"* will|strong=\"H6440\"* search|strong=\"H2713\"*." + }, + { + "verseNum": 15, + "text": "Those who|strong=\"H1129\"* search|strong=\"H7200\"* through|strong=\"H5674\"* the|strong=\"H7200\"* land will|strong=\"H5704\"* pass|strong=\"H5674\"* through|strong=\"H5674\"*; and|strong=\"H7200\"* when|strong=\"H7200\"* anyone|strong=\"H7200\"* sees|strong=\"H7200\"* a|strong=\"H3068\"* man|strong=\"H5674\"*’s bone|strong=\"H6106\"*, then|strong=\"H5674\"* he|strong=\"H5704\"* will|strong=\"H5704\"* set|strong=\"H1129\"* up|strong=\"H1129\"* a|strong=\"H3068\"* sign|strong=\"H6725\"* by|strong=\"H5674\"* it|strong=\"H7200\"*, until|strong=\"H5704\"* the|strong=\"H7200\"* undertakers have|strong=\"H7200\"* buried|strong=\"H6912\"* it|strong=\"H7200\"* in|strong=\"H6912\"* the|strong=\"H7200\"* valley|strong=\"H1516\"* of|strong=\"H1516\"* Hamon Gog." + }, + { + "verseNum": 16, + "text": "Hamonah|strong=\"H1997\"* will|strong=\"H1571\"* also|strong=\"H1571\"* be|strong=\"H8034\"* the|strong=\"H1571\"* name|strong=\"H8034\"* of|strong=\"H5892\"* a|strong=\"H3068\"* city|strong=\"H5892\"*. Thus they|strong=\"H1571\"* will|strong=\"H1571\"* cleanse|strong=\"H2891\"* the|strong=\"H1571\"* land.”’" + }, + { + "verseNum": 17, + "text": "“You|strong=\"H3605\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Speak to|strong=\"H3478\"* the|strong=\"H3605\"* birds|strong=\"H6833\"* of|strong=\"H1121\"* every|strong=\"H3605\"* sort|strong=\"H3671\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* every|strong=\"H3605\"* animal|strong=\"H2416\"* of|strong=\"H1121\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, “Assemble|strong=\"H6908\"* yourselves|strong=\"H3605\"*, and|strong=\"H1121\"* come|strong=\"H3478\"*; gather|strong=\"H6908\"* yourselves|strong=\"H3605\"* on|strong=\"H5921\"* every|strong=\"H3605\"* side|strong=\"H5439\"* to|strong=\"H3478\"* my|strong=\"H3605\"* sacrifice|strong=\"H2077\"* that|strong=\"H3605\"* I|strong=\"H3541\"* sacrifice|strong=\"H2077\"* for|strong=\"H5921\"* you|strong=\"H3605\"*, even|strong=\"H5921\"* a|strong=\"H3068\"* great|strong=\"H1419\"* sacrifice|strong=\"H2077\"* on|strong=\"H5921\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H3478\"* eat meat|strong=\"H1320\"* and|strong=\"H1121\"* drink|strong=\"H8354\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H3605\"* shall|strong=\"H5387\"* eat the|strong=\"H3605\"* flesh|strong=\"H1320\"* of|strong=\"H1368\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"*, and|strong=\"H6499\"* drink|strong=\"H8354\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H1368\"* the|strong=\"H3605\"* princes|strong=\"H5387\"* of|strong=\"H1368\"* the|strong=\"H3605\"* earth, of|strong=\"H1368\"* rams|strong=\"H3733\"*, of|strong=\"H1368\"* lambs|strong=\"H3733\"*, and|strong=\"H6499\"* of|strong=\"H1368\"* goats|strong=\"H6260\"*, of|strong=\"H1368\"* bulls|strong=\"H6499\"*, all|strong=\"H3605\"* of|strong=\"H1368\"* them fatlings|strong=\"H4806\"* of|strong=\"H1368\"* Bashan|strong=\"H1316\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H2076\"* shall|strong=\"H1818\"* eat fat|strong=\"H2459\"* until|strong=\"H2459\"* you|strong=\"H2076\"* are|strong=\"H1818\"* full|strong=\"H7654\"*, and|strong=\"H1818\"* drink|strong=\"H8354\"* blood|strong=\"H1818\"* until|strong=\"H2459\"* you|strong=\"H2076\"* are|strong=\"H1818\"* drunk|strong=\"H8354\"*, of|strong=\"H2077\"* my|strong=\"H8354\"* sacrifice|strong=\"H2077\"* which|strong=\"H1818\"* I have sacrificed|strong=\"H2076\"* for|strong=\"H2077\"* you|strong=\"H2076\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H3605\"* shall|strong=\"H1368\"* be|strong=\"H3069\"* filled|strong=\"H7646\"* at|strong=\"H5921\"* my|strong=\"H3605\"* table|strong=\"H7979\"* with|strong=\"H7646\"* horses|strong=\"H5483\"* and|strong=\"H7393\"* charioteers|strong=\"H7393\"*, with|strong=\"H7646\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*, and|strong=\"H7393\"* with|strong=\"H7646\"* all|strong=\"H3605\"* men|strong=\"H1368\"* of|strong=\"H1368\"* war|strong=\"H4421\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.’" + }, + { + "verseNum": 21, + "text": "“I|strong=\"H5414\"* will|strong=\"H1471\"* set|strong=\"H7760\"* my|strong=\"H5414\"* glory|strong=\"H3519\"* among|strong=\"H7200\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*. Then|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* will|strong=\"H1471\"* see|strong=\"H7200\"* my|strong=\"H5414\"* judgment|strong=\"H4941\"* that|strong=\"H7200\"* I|strong=\"H5414\"* have|strong=\"H1471\"* executed|strong=\"H6213\"*, and|strong=\"H4941\"* my|strong=\"H5414\"* hand|strong=\"H3027\"* that|strong=\"H7200\"* I|strong=\"H5414\"* have|strong=\"H1471\"* laid|strong=\"H7760\"* on|strong=\"H7200\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 22, + "text": "So|strong=\"H4480\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, from|strong=\"H4480\"* that|strong=\"H3588\"* day|strong=\"H3117\"* and|strong=\"H3478\"* forward|strong=\"H1973\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3605\"* nations|strong=\"H1471\"* will|strong=\"H1471\"* know|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* went|strong=\"H3478\"* into|strong=\"H1540\"* captivity|strong=\"H1540\"* for|strong=\"H3588\"* their|strong=\"H3605\"* iniquity|strong=\"H5771\"*, because|strong=\"H3588\"* they|strong=\"H1992\"* trespassed|strong=\"H4603\"* against|strong=\"H5921\"* me|strong=\"H5414\"*, and|strong=\"H3478\"* I|strong=\"H3588\"* hid|strong=\"H5641\"* my|strong=\"H5414\"* face|strong=\"H6440\"* from|strong=\"H6440\"* them|strong=\"H5414\"*; so|strong=\"H5414\"* I|strong=\"H3588\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H1540\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* their|strong=\"H3605\"* adversaries|strong=\"H6862\"*, and|strong=\"H3478\"* they|strong=\"H1992\"* all|strong=\"H3605\"* fell|strong=\"H5307\"* by|strong=\"H3027\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 24, + "text": "I|strong=\"H6440\"* did|strong=\"H6213\"* to|strong=\"H6213\"* them|strong=\"H1992\"* according to|strong=\"H6213\"* their|strong=\"H6440\"* uncleanness|strong=\"H2932\"* and|strong=\"H6440\"* according to|strong=\"H6213\"* their|strong=\"H6440\"* transgressions|strong=\"H6588\"*. I|strong=\"H6440\"* hid|strong=\"H5641\"* my|strong=\"H5641\"* face|strong=\"H6440\"* from|strong=\"H6440\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 25, + "text": "“Therefore|strong=\"H3651\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Now|strong=\"H6258\"* I|strong=\"H3541\"* will|strong=\"H3478\"* reverse|strong=\"H7725\"* the|strong=\"H3605\"* captivity|strong=\"H7622\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"* and|strong=\"H3478\"* have|strong=\"H7355\"* mercy|strong=\"H7355\"* on|strong=\"H7355\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*. I|strong=\"H3541\"* will|strong=\"H3478\"* be|strong=\"H8034\"* jealous|strong=\"H7065\"* for|strong=\"H8034\"* my|strong=\"H3605\"* holy|strong=\"H6944\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H5921\"* will|strong=\"H3427\"* forget|strong=\"H5375\"* their|strong=\"H3605\"* shame|strong=\"H3639\"* and|strong=\"H3427\"* all|strong=\"H3605\"* their|strong=\"H3605\"* trespasses|strong=\"H4604\"* by|strong=\"H5921\"* which|strong=\"H3605\"* they|strong=\"H5921\"* have|strong=\"H3605\"* trespassed|strong=\"H4603\"* against|strong=\"H5921\"* me|strong=\"H5921\"*, when|strong=\"H3427\"* they|strong=\"H5921\"* dwell|strong=\"H3427\"* securely in|strong=\"H3427\"* their|strong=\"H3605\"* land. No|strong=\"H3605\"* one|strong=\"H3605\"* will|strong=\"H3427\"* make|strong=\"H2729\"* them|strong=\"H5921\"* afraid|strong=\"H2729\"*" + }, + { + "verseNum": 27, + "text": "when|strong=\"H7725\"* I|strong=\"H4480\"* have|strong=\"H5869\"* brought|strong=\"H7725\"* them|strong=\"H7725\"* back|strong=\"H7725\"* from|strong=\"H4480\"* the|strong=\"H4480\"* peoples|strong=\"H5971\"*, gathered|strong=\"H6908\"* them|strong=\"H7725\"* out|strong=\"H4480\"* of|strong=\"H5869\"* their|strong=\"H7725\"* enemies’ lands, and|strong=\"H7725\"* am shown holy|strong=\"H6942\"* among|strong=\"H4480\"* them|strong=\"H7725\"* in|strong=\"H7227\"* the|strong=\"H4480\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* many|strong=\"H7227\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"H1992\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, in|strong=\"H5921\"* that|strong=\"H3588\"* I|strong=\"H3588\"* caused them|strong=\"H1992\"* to|strong=\"H3068\"* go|strong=\"H1540\"* into|strong=\"H1540\"* captivity|strong=\"H1540\"* among|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* gathered|strong=\"H3664\"* them|strong=\"H1992\"* to|strong=\"H3068\"* their|strong=\"H3068\"* own land. Then|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* leave|strong=\"H3498\"* none|strong=\"H3808\"* of|strong=\"H3068\"* them|strong=\"H1992\"* captive|strong=\"H1540\"* any|strong=\"H5750\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 29, + "text": "I|strong=\"H5921\"* won’t hide|strong=\"H5641\"* my|strong=\"H5921\"* face|strong=\"H6440\"* from|strong=\"H6440\"* them|strong=\"H1992\"* any|strong=\"H5750\"* more|strong=\"H5750\"*, for|strong=\"H5921\"* I|strong=\"H5921\"* have|strong=\"H3478\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* my|strong=\"H5921\"* Spirit|strong=\"H7307\"* on|strong=\"H5921\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*,’ says|strong=\"H5002\"* the|strong=\"H6440\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* twenty-fifth|strong=\"H6242\"* year|strong=\"H8141\"* of|strong=\"H3068\"* our|strong=\"H3068\"* captivity|strong=\"H1546\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* beginning|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H5921\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* tenth|strong=\"H6218\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H5921\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* fourteenth|strong=\"H6240\"* year|strong=\"H8141\"* after|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"* was|strong=\"H3068\"* struck|strong=\"H5221\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* same|strong=\"H6106\"* day|strong=\"H3117\"*, Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* on|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H3068\"* he|strong=\"H3117\"* brought|strong=\"H1961\"* me|strong=\"H5921\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 2, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* visions|strong=\"H4759\"* of|strong=\"H5892\"* God he|strong=\"H5921\"* brought|strong=\"H3478\"* me|strong=\"H5921\"* into|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H5892\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* set|strong=\"H5117\"* me|strong=\"H5921\"* down|strong=\"H5117\"* on|strong=\"H5921\"* a|strong=\"H3068\"* very|strong=\"H3966\"* high|strong=\"H1364\"* mountain|strong=\"H2022\"*, on|strong=\"H5921\"* which|strong=\"H5892\"* was|strong=\"H3478\"* something like|strong=\"H3478\"* the|strong=\"H5921\"* frame|strong=\"H4011\"* of|strong=\"H5892\"* a|strong=\"H3068\"* city|strong=\"H5892\"* to|strong=\"H3478\"* the|strong=\"H5921\"* south|strong=\"H5045\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H1931\"* brought|strong=\"H3027\"* me|strong=\"H5975\"* there|strong=\"H8033\"*; and|strong=\"H3027\"*, behold|strong=\"H2009\"*, there|strong=\"H8033\"* was|strong=\"H1931\"* a|strong=\"H3068\"* man|strong=\"H8179\"* whose|strong=\"H8179\"* appearance|strong=\"H4758\"* was|strong=\"H1931\"* like|strong=\"H4758\"* the|strong=\"H3027\"* appearance|strong=\"H4758\"* of|strong=\"H3027\"* bronze|strong=\"H5178\"*, with|strong=\"H3027\"* a|strong=\"H3068\"* line|strong=\"H6616\"* of|strong=\"H3027\"* flax|strong=\"H6593\"* in|strong=\"H5975\"* his|strong=\"H3027\"* hand|strong=\"H3027\"* and|strong=\"H3027\"* a|strong=\"H3068\"* measuring|strong=\"H4060\"* reed|strong=\"H7070\"*; and|strong=\"H3027\"* he|strong=\"H1931\"* stood|strong=\"H5975\"* in|strong=\"H5975\"* the|strong=\"H3027\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* man|strong=\"H1121\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7200\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, see|strong=\"H7200\"* with|strong=\"H1004\"* your|strong=\"H3605\"* eyes|strong=\"H5869\"*, and|strong=\"H1121\"* hear|strong=\"H8085\"* with|strong=\"H1004\"* your|strong=\"H3605\"* ears, and|strong=\"H1121\"* set|strong=\"H7760\"* your|strong=\"H3605\"* heart|strong=\"H3820\"* on|strong=\"H7200\"* all|strong=\"H3605\"* that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3478\"* show|strong=\"H7200\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5869\"* been|strong=\"H5046\"* brought|strong=\"H7760\"* here|strong=\"H2008\"* so|strong=\"H4616\"* that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H3478\"* show|strong=\"H7200\"* them|strong=\"H7760\"* to|strong=\"H1696\"* you|strong=\"H3588\"*. Declare|strong=\"H5046\"* all|strong=\"H3605\"* that|strong=\"H3588\"* you|strong=\"H3588\"* see|strong=\"H7200\"* to|strong=\"H1696\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 5, + "text": "Behold|strong=\"H2009\"*, there|strong=\"H2009\"* was|strong=\"H1004\"* a|strong=\"H3068\"* wall|strong=\"H2346\"* on|strong=\"H3027\"* the|strong=\"H5439\"* outside|strong=\"H2351\"* of|strong=\"H1004\"* the|strong=\"H5439\"* house|strong=\"H1004\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, and|strong=\"H3027\"* in|strong=\"H1004\"* the|strong=\"H5439\"* man’s hand|strong=\"H3027\"* a|strong=\"H3068\"* measuring|strong=\"H4060\"* reed|strong=\"H7070\"* six|strong=\"H8337\"* cubits+ 40:5 A normal cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. A handbreadth is about 4.3 inches or 11 centimeters, so the long cubit described here would be about 22.3 inches or 57 centimeters long. Thus, a 6 long cubit measuring reed would have been about 3 yards 26.6 inches or about 3.42 meters long.* long|strong=\"H2948\"*, of|strong=\"H1004\"* a|strong=\"H3068\"* cubit and|strong=\"H3027\"* a|strong=\"H3068\"* hand|strong=\"H3027\"* width|strong=\"H7341\"* each|strong=\"H5439\"*. So|strong=\"H3027\"* he|strong=\"H1004\"* measured|strong=\"H4058\"* the|strong=\"H5439\"* thickness|strong=\"H7341\"* of|strong=\"H1004\"* the|strong=\"H5439\"* building|strong=\"H1146\"*, one|strong=\"H5439\"* reed|strong=\"H7070\"*; and|strong=\"H3027\"* the|strong=\"H5439\"* height|strong=\"H6967\"*, one|strong=\"H5439\"* reed|strong=\"H7070\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H5927\"* he|strong=\"H6440\"* came|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H6440\"* gate|strong=\"H8179\"* which|strong=\"H8179\"* looks|strong=\"H6440\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* east|strong=\"H6921\"*, and|strong=\"H6440\"* went|strong=\"H5927\"* up|strong=\"H5927\"* its|strong=\"H4058\"* steps|strong=\"H4609\"*. He|strong=\"H6440\"* measured|strong=\"H4058\"* the|strong=\"H6440\"* threshold|strong=\"H5592\"* of|strong=\"H6440\"* the|strong=\"H6440\"* gate|strong=\"H8179\"*, one|strong=\"H7341\"* reed|strong=\"H7070\"* wide|strong=\"H7341\"*; and|strong=\"H6440\"* the|strong=\"H6440\"* other threshold|strong=\"H5592\"*, one|strong=\"H7341\"* reed|strong=\"H7070\"* wide|strong=\"H7341\"*." + }, + { + "verseNum": 7, + "text": "Every|strong=\"H8179\"* lodge was|strong=\"H1004\"* one|strong=\"H7341\"* reed|strong=\"H7070\"* long and|strong=\"H1004\"* one|strong=\"H7341\"* reed|strong=\"H7070\"* wide|strong=\"H7341\"*. Between the|strong=\"H1004\"* lodges was|strong=\"H1004\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*. The|strong=\"H1004\"* threshold|strong=\"H5592\"* of|strong=\"H1004\"* the|strong=\"H1004\"* gate|strong=\"H8179\"* by|strong=\"H8179\"* the|strong=\"H1004\"* porch of|strong=\"H1004\"* the|strong=\"H1004\"* gate|strong=\"H8179\"* toward the|strong=\"H1004\"* house|strong=\"H1004\"* was|strong=\"H1004\"* one|strong=\"H7341\"* reed|strong=\"H7070\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H1004\"* measured|strong=\"H4058\"* also the|strong=\"H4058\"* porch of|strong=\"H1004\"* the|strong=\"H4058\"* gate|strong=\"H8179\"* toward the|strong=\"H4058\"* house|strong=\"H1004\"*, one|strong=\"H1004\"* reed|strong=\"H7070\"*." + }, + { + "verseNum": 9, + "text": "Then he|strong=\"H1004\"* measured|strong=\"H4058\"* the|strong=\"H4058\"* porch of|strong=\"H1004\"* the|strong=\"H4058\"* gate|strong=\"H8179\"*, eight|strong=\"H8083\"* cubits; and|strong=\"H1004\"* its|strong=\"H4058\"* posts, two|strong=\"H8147\"* cubits; and|strong=\"H1004\"* the|strong=\"H4058\"* porch of|strong=\"H1004\"* the|strong=\"H4058\"* gate|strong=\"H8179\"* was|strong=\"H1004\"* toward the|strong=\"H4058\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H1870\"* side|strong=\"H6311\"* rooms of|strong=\"H1870\"* the|strong=\"H1870\"* gate|strong=\"H8179\"* eastward|strong=\"H6921\"* were|strong=\"H7969\"* three|strong=\"H7969\"* on|strong=\"H1870\"* this|strong=\"H1870\"* side|strong=\"H6311\"*, and|strong=\"H1870\"* three|strong=\"H7969\"* on|strong=\"H1870\"* that|strong=\"H8179\"* side|strong=\"H6311\"*. The|strong=\"H1870\"* three|strong=\"H7969\"* of|strong=\"H1870\"* them|strong=\"H1870\"* were|strong=\"H7969\"* of|strong=\"H1870\"* one measure|strong=\"H4060\"*. The|strong=\"H1870\"* posts had|strong=\"H7969\"* one measure|strong=\"H4060\"* on|strong=\"H1870\"* this|strong=\"H1870\"* side|strong=\"H6311\"* and|strong=\"H1870\"* on|strong=\"H1870\"* that|strong=\"H8179\"* side|strong=\"H6311\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H4058\"* measured|strong=\"H4058\"* the|strong=\"H4058\"* width|strong=\"H7341\"* of|strong=\"H8179\"* the|strong=\"H4058\"* opening|strong=\"H6607\"* of|strong=\"H8179\"* the|strong=\"H4058\"* gate|strong=\"H8179\"*, ten|strong=\"H6235\"* cubits; and|strong=\"H7969\"* the|strong=\"H4058\"* length of|strong=\"H8179\"* the|strong=\"H4058\"* gate|strong=\"H8179\"*, thirteen|strong=\"H7969\"* cubits;" + }, + { + "verseNum": 12, + "text": "and|strong=\"H6440\"* a|strong=\"H3068\"* border|strong=\"H1366\"* before|strong=\"H6440\"* the|strong=\"H6440\"* lodges, one cubit on|strong=\"H6440\"* this|strong=\"H6440\"* side|strong=\"H6311\"*, and|strong=\"H6440\"* a|strong=\"H3068\"* border|strong=\"H1366\"*, one cubit on|strong=\"H6440\"* that|strong=\"H1366\"* side|strong=\"H6311\"*; and|strong=\"H6440\"* the|strong=\"H6440\"* side|strong=\"H6311\"* rooms, six|strong=\"H8337\"* cubits on|strong=\"H6440\"* this|strong=\"H6440\"* side|strong=\"H6311\"*, and|strong=\"H6440\"* six|strong=\"H8337\"* cubits on|strong=\"H6440\"* that|strong=\"H1366\"* side|strong=\"H6311\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H2568\"* measured|strong=\"H4058\"* the|strong=\"H4058\"* gate|strong=\"H8179\"* from|strong=\"H4058\"* the|strong=\"H4058\"* roof|strong=\"H1406\"* of|strong=\"H8179\"* the|strong=\"H4058\"* one|strong=\"H7341\"* side|strong=\"H5048\"* room|strong=\"H8372\"* to|strong=\"H8179\"* the|strong=\"H4058\"* roof|strong=\"H1406\"* of|strong=\"H8179\"* the|strong=\"H4058\"* other|strong=\"H5048\"*, a|strong=\"H3068\"* width|strong=\"H7341\"* of|strong=\"H8179\"* twenty-five|strong=\"H6242\"* cubits|strong=\"H2568\"*, door|strong=\"H6607\"* against|strong=\"H5048\"* door|strong=\"H6607\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H6213\"* also|strong=\"H6213\"* made|strong=\"H6213\"* posts, sixty|strong=\"H8346\"* cubits; and|strong=\"H8346\"* the|strong=\"H6213\"* court|strong=\"H2691\"* reached to|strong=\"H6213\"* the|strong=\"H6213\"* posts, around|strong=\"H5439\"* the|strong=\"H6213\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 15, + "text": "From|strong=\"H6440\"* the|strong=\"H6440\"* forefront|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* gate|strong=\"H8179\"* at|strong=\"H5921\"* the|strong=\"H6440\"* entrance|strong=\"H8179\"* to|strong=\"H5921\"* the|strong=\"H6440\"* forefront|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H6442\"* porch of|strong=\"H6440\"* the|strong=\"H6440\"* gate|strong=\"H8179\"* were|strong=\"H5921\"* fifty|strong=\"H2572\"* cubits." + }, + { + "verseNum": 16, + "text": "There were|strong=\"H5439\"* closed windows|strong=\"H2474\"* to|strong=\"H8179\"* the|strong=\"H5439\"* side|strong=\"H5439\"* rooms|strong=\"H5439\"*, and|strong=\"H8179\"* to|strong=\"H8179\"* their|strong=\"H5439\"* posts within|strong=\"H6441\"* the|strong=\"H5439\"* gate|strong=\"H8179\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, and|strong=\"H8179\"* likewise|strong=\"H3651\"* to|strong=\"H8179\"* the|strong=\"H5439\"* arches. Windows|strong=\"H2474\"* were|strong=\"H5439\"* around|strong=\"H5439\"* inward|strong=\"H6441\"*. Palm|strong=\"H8561\"* trees|strong=\"H8561\"* were|strong=\"H5439\"* on|strong=\"H8372\"* each|strong=\"H5439\"* post." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H2009\"* he|strong=\"H6213\"* brought|strong=\"H6213\"* me|strong=\"H6213\"* into|strong=\"H6213\"* the|strong=\"H6213\"* outer|strong=\"H2435\"* court|strong=\"H2691\"*. Behold|strong=\"H2009\"*, there|strong=\"H2009\"* were|strong=\"H2009\"* rooms|strong=\"H3957\"* and|strong=\"H7970\"* a|strong=\"H3068\"* pavement|strong=\"H7531\"* made|strong=\"H6213\"* for|strong=\"H6213\"* the|strong=\"H6213\"* court|strong=\"H2691\"* all|strong=\"H5439\"* around|strong=\"H5439\"*. Thirty|strong=\"H7970\"* rooms|strong=\"H3957\"* were|strong=\"H2009\"* on|strong=\"H6213\"* the|strong=\"H6213\"* pavement|strong=\"H7531\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5980\"* pavement|strong=\"H7531\"* was|strong=\"H8179\"* by|strong=\"H8179\"* the|strong=\"H5980\"* side|strong=\"H3802\"* of|strong=\"H8179\"* the|strong=\"H5980\"* gates|strong=\"H8179\"*, corresponding|strong=\"H5980\"* to|strong=\"H8179\"* the|strong=\"H5980\"* length of|strong=\"H8179\"* the|strong=\"H5980\"* gates|strong=\"H8179\"*, even the|strong=\"H5980\"* lower|strong=\"H8481\"* pavement|strong=\"H7531\"*." + }, + { + "verseNum": 19, + "text": "Then he|strong=\"H6440\"* measured|strong=\"H4058\"* the|strong=\"H6440\"* width|strong=\"H7341\"* from|strong=\"H6440\"* the|strong=\"H6440\"* forefront|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* lower|strong=\"H8481\"* gate|strong=\"H8179\"* to|strong=\"H6440\"* the|strong=\"H6440\"* forefront|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* outside|strong=\"H2351\"*, one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits, both on|strong=\"H6440\"* the|strong=\"H6440\"* east|strong=\"H6921\"* and|strong=\"H3967\"* on|strong=\"H6440\"* the|strong=\"H6440\"* north|strong=\"H6828\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H6440\"* measured|strong=\"H4058\"* the|strong=\"H6440\"* length and|strong=\"H6440\"* width|strong=\"H7341\"* of|strong=\"H6440\"* the|strong=\"H6440\"* gate|strong=\"H8179\"* of|strong=\"H6440\"* the|strong=\"H6440\"* outer|strong=\"H2435\"* court|strong=\"H2691\"* which|strong=\"H8179\"* faces|strong=\"H6440\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* north|strong=\"H6828\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1961\"* lodges of|strong=\"H8179\"* it|strong=\"H1961\"* were|strong=\"H1961\"* three|strong=\"H7969\"* on|strong=\"H1961\"* this|strong=\"H7223\"* side|strong=\"H6311\"* and|strong=\"H6242\"* three|strong=\"H7969\"* on|strong=\"H1961\"* that|strong=\"H8179\"* side|strong=\"H6311\"*. Its|strong=\"H1961\"* posts and|strong=\"H6242\"* its|strong=\"H1961\"* arches were|strong=\"H1961\"* the|strong=\"H1961\"* same as|strong=\"H1961\"* the|strong=\"H1961\"* measure|strong=\"H4060\"* of|strong=\"H8179\"* the|strong=\"H1961\"* first|strong=\"H7223\"* gate|strong=\"H8179\"*: its|strong=\"H1961\"* length was|strong=\"H1961\"* fifty|strong=\"H2572\"* cubits|strong=\"H2568\"*, and|strong=\"H6242\"* the|strong=\"H1961\"* width|strong=\"H7341\"* twenty-five|strong=\"H6242\"* cubits|strong=\"H2568\"*." + }, + { + "verseNum": 22, + "text": "Its|strong=\"H5927\"* windows|strong=\"H2474\"*, its|strong=\"H5927\"* arches, and|strong=\"H6440\"* its|strong=\"H5927\"* palm|strong=\"H8561\"* trees|strong=\"H8561\"* were|strong=\"H1870\"* the|strong=\"H6440\"* same as|strong=\"H5927\"* the|strong=\"H6440\"* measure|strong=\"H4060\"* of|strong=\"H6440\"* the|strong=\"H6440\"* gate|strong=\"H8179\"* which|strong=\"H8179\"* faces|strong=\"H6440\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* east|strong=\"H6921\"*. They|strong=\"H6440\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* it|strong=\"H6440\"* by|strong=\"H1870\"* seven|strong=\"H7651\"* steps|strong=\"H4609\"*. Its|strong=\"H5927\"* arches were|strong=\"H1870\"* before|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 23, + "text": "There was|strong=\"H8179\"* a|strong=\"H3068\"* gate|strong=\"H8179\"* to|strong=\"H8179\"* the|strong=\"H4058\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* facing the|strong=\"H4058\"* other|strong=\"H5048\"* gate|strong=\"H8179\"*, on the|strong=\"H4058\"* north|strong=\"H6828\"* and|strong=\"H3967\"* on the|strong=\"H4058\"* east|strong=\"H6921\"*. He|strong=\"H4058\"* measured|strong=\"H4058\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits from|strong=\"H4058\"* gate|strong=\"H8179\"* to|strong=\"H8179\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H4058\"* led|strong=\"H3212\"* me|strong=\"H3212\"* toward|strong=\"H1870\"* the|strong=\"H1870\"* south|strong=\"H1864\"*; and|strong=\"H3212\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* was|strong=\"H1870\"* a|strong=\"H3068\"* gate|strong=\"H8179\"* toward|strong=\"H1870\"* the|strong=\"H1870\"* south|strong=\"H1864\"*. He|strong=\"H4058\"* measured|strong=\"H4058\"* its|strong=\"H4058\"* posts and|strong=\"H3212\"* its|strong=\"H4058\"* arches according to|strong=\"H3212\"* these measurements|strong=\"H4060\"*." + }, + { + "verseNum": 25, + "text": "There were|strong=\"H5439\"* windows|strong=\"H2474\"* in|strong=\"H2568\"* it|strong=\"H5439\"* and|strong=\"H6242\"* in|strong=\"H2568\"* its|strong=\"H5439\"* arches all|strong=\"H5439\"* around|strong=\"H5439\"*, like|strong=\"H5439\"* the|strong=\"H5439\"* other windows|strong=\"H2474\"*: the|strong=\"H5439\"* length was fifty|strong=\"H2572\"* cubits|strong=\"H2568\"*, and|strong=\"H6242\"* the|strong=\"H5439\"* width|strong=\"H7341\"* twenty-five|strong=\"H6242\"* cubits|strong=\"H2568\"*." + }, + { + "verseNum": 26, + "text": "There|strong=\"H6440\"* were|strong=\"H6440\"* seven|strong=\"H7651\"* steps|strong=\"H4609\"* to|strong=\"H6440\"* go|strong=\"H4609\"* up|strong=\"H5930\"* to|strong=\"H6440\"* it|strong=\"H6440\"*, and|strong=\"H6440\"* its|strong=\"H6440\"* arches were|strong=\"H6440\"* before|strong=\"H6440\"* them|strong=\"H6440\"*. It|strong=\"H6440\"* had palm|strong=\"H8561\"* trees|strong=\"H8561\"*, one|strong=\"H7651\"* on|strong=\"H6440\"* this|strong=\"H6440\"* side|strong=\"H6311\"*, and|strong=\"H6440\"* another|strong=\"H6440\"* on|strong=\"H6440\"* that|strong=\"H5930\"* side|strong=\"H6311\"*, on|strong=\"H6440\"* its|strong=\"H6440\"* posts." + }, + { + "verseNum": 27, + "text": "There was|strong=\"H1870\"* a|strong=\"H3068\"* gate|strong=\"H8179\"* to|strong=\"H1870\"* the|strong=\"H1870\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* toward|strong=\"H1870\"* the|strong=\"H1870\"* south|strong=\"H1864\"*. He|strong=\"H4058\"* measured|strong=\"H4058\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits from|strong=\"H4058\"* gate|strong=\"H8179\"* to|strong=\"H1870\"* gate|strong=\"H8179\"* toward|strong=\"H1870\"* the|strong=\"H1870\"* south|strong=\"H1864\"*." + }, + { + "verseNum": 28, + "text": "Then he|strong=\"H4058\"* brought me to|strong=\"H8179\"* the|strong=\"H4058\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* by|strong=\"H8179\"* the|strong=\"H4058\"* south|strong=\"H1864\"* gate|strong=\"H8179\"*. He|strong=\"H4058\"* measured|strong=\"H4058\"* the|strong=\"H4058\"* south|strong=\"H1864\"* gate|strong=\"H8179\"* according to|strong=\"H8179\"* these measurements|strong=\"H4060\"*;" + }, + { + "verseNum": 29, + "text": "with|strong=\"H6242\"* its|strong=\"H5439\"* lodges, its|strong=\"H5439\"* posts, and|strong=\"H6242\"* its|strong=\"H5439\"* arches, according to|strong=\"H6242\"* these|strong=\"H5439\"* measurements|strong=\"H4060\"*. There|strong=\"H4060\"* were|strong=\"H5439\"* windows|strong=\"H2474\"* in|strong=\"H4060\"* it|strong=\"H5439\"* and|strong=\"H6242\"* in|strong=\"H4060\"* its|strong=\"H5439\"* arches all|strong=\"H5439\"* around|strong=\"H5439\"*. It|strong=\"H5439\"* was fifty|strong=\"H2572\"* cubits|strong=\"H2568\"* long, and|strong=\"H6242\"* twenty-five|strong=\"H6242\"* cubits|strong=\"H2568\"* wide|strong=\"H7341\"*." + }, + { + "verseNum": 30, + "text": "There were|strong=\"H5439\"* arches all|strong=\"H5439\"* around|strong=\"H5439\"*, twenty-five|strong=\"H6242\"* cubits|strong=\"H2568\"* long and|strong=\"H6242\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"* wide|strong=\"H7341\"*." + }, + { + "verseNum": 31, + "text": "Its arches were|strong=\"H2691\"* toward the|strong=\"H4608\"* outer|strong=\"H2435\"* court|strong=\"H2691\"*. Palm|strong=\"H8561\"* trees|strong=\"H8561\"* were|strong=\"H2691\"* on|strong=\"H4609\"* its posts. The|strong=\"H4608\"* ascent|strong=\"H4608\"* to|strong=\"H4608\"* it had|strong=\"H4608\"* eight|strong=\"H8083\"* steps|strong=\"H4609\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"H4058\"* brought me into the|strong=\"H1870\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* toward|strong=\"H1870\"* the|strong=\"H1870\"* east|strong=\"H6921\"*. He|strong=\"H4058\"* measured|strong=\"H4058\"* the|strong=\"H1870\"* gate|strong=\"H8179\"* according to|strong=\"H1870\"* these measurements|strong=\"H4060\"*;" + }, + { + "verseNum": 33, + "text": "with|strong=\"H6242\"* its|strong=\"H5439\"* lodges, its|strong=\"H5439\"* posts, and|strong=\"H6242\"* its|strong=\"H5439\"* arches, according to|strong=\"H6242\"* these|strong=\"H5439\"* measurements|strong=\"H4060\"*. There|strong=\"H4060\"* were|strong=\"H5439\"* windows|strong=\"H2474\"* in|strong=\"H4060\"* it|strong=\"H5439\"* and|strong=\"H6242\"* in|strong=\"H4060\"* its|strong=\"H5439\"* arches all|strong=\"H5439\"* around|strong=\"H5439\"*. It|strong=\"H5439\"* was fifty|strong=\"H2572\"* cubits|strong=\"H2568\"* long, and|strong=\"H6242\"* twenty-five|strong=\"H6242\"* cubits|strong=\"H2568\"* wide|strong=\"H7341\"*." + }, + { + "verseNum": 34, + "text": "Its arches were|strong=\"H2691\"* toward the|strong=\"H4608\"* outer|strong=\"H2435\"* court|strong=\"H2691\"*. Palm|strong=\"H8561\"* trees|strong=\"H8561\"* were|strong=\"H2691\"* on|strong=\"H4609\"* its posts on|strong=\"H4609\"* this side|strong=\"H6311\"* and|strong=\"H8561\"* on|strong=\"H4609\"* that|strong=\"H2691\"* side|strong=\"H6311\"*. The|strong=\"H4608\"* ascent|strong=\"H4608\"* to|strong=\"H4608\"* it had|strong=\"H4608\"* eight|strong=\"H8083\"* steps|strong=\"H4609\"*." + }, + { + "verseNum": 35, + "text": "He|strong=\"H4058\"* brought me to|strong=\"H8179\"* the|strong=\"H4058\"* north|strong=\"H6828\"* gate|strong=\"H8179\"*, and|strong=\"H6828\"* he|strong=\"H4058\"* measured|strong=\"H4058\"* it|strong=\"H4058\"* according to|strong=\"H8179\"* these measurements|strong=\"H4060\"*—" + }, + { + "verseNum": 36, + "text": "its|strong=\"H5439\"* lodges, its|strong=\"H5439\"* posts, and|strong=\"H6242\"* its|strong=\"H5439\"* arches. There were|strong=\"H5439\"* windows|strong=\"H2474\"* in|strong=\"H2568\"* it|strong=\"H5439\"* all|strong=\"H5439\"* around|strong=\"H5439\"*. The|strong=\"H5439\"* length was fifty|strong=\"H2572\"* cubits|strong=\"H2568\"* and|strong=\"H6242\"* the|strong=\"H5439\"* width|strong=\"H7341\"* twenty-five|strong=\"H6242\"* cubits|strong=\"H2568\"*." + }, + { + "verseNum": 37, + "text": "Its posts were|strong=\"H2691\"* toward the|strong=\"H4608\"* outer|strong=\"H2435\"* court|strong=\"H2691\"*. Palm|strong=\"H8561\"* trees|strong=\"H8561\"* were|strong=\"H2691\"* on|strong=\"H4609\"* its posts on|strong=\"H4609\"* this side|strong=\"H6311\"* and|strong=\"H8561\"* on|strong=\"H4609\"* that|strong=\"H2691\"* side|strong=\"H6311\"*. The|strong=\"H4608\"* ascent|strong=\"H4608\"* to|strong=\"H4608\"* it had|strong=\"H4608\"* eight|strong=\"H8083\"* steps|strong=\"H4609\"*." + }, + { + "verseNum": 38, + "text": "A|strong=\"H3068\"* room|strong=\"H3957\"* with|strong=\"H8033\"* its door|strong=\"H6607\"* was|strong=\"H8179\"* by|strong=\"H8179\"* the|strong=\"H8033\"* posts at|strong=\"H8033\"* the|strong=\"H8033\"* gates|strong=\"H8179\"*. They|strong=\"H8033\"* washed|strong=\"H1740\"* the|strong=\"H8033\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 39, + "text": "In|strong=\"H7979\"* the|strong=\"H7819\"* porch of|strong=\"H8179\"* the|strong=\"H7819\"* gate|strong=\"H8179\"* were|strong=\"H2403\"* two|strong=\"H8147\"* tables|strong=\"H7979\"* on|strong=\"H7979\"* this side|strong=\"H6311\"* and|strong=\"H5930\"* two|strong=\"H8147\"* tables|strong=\"H7979\"* on|strong=\"H7979\"* that|strong=\"H8179\"* side|strong=\"H6311\"*, on|strong=\"H7979\"* which|strong=\"H8179\"* to|strong=\"H8179\"* kill|strong=\"H7819\"* the|strong=\"H7819\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, the|strong=\"H7819\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H5930\"* the|strong=\"H7819\"* trespass offering|strong=\"H5930\"*." + }, + { + "verseNum": 40, + "text": "On|strong=\"H5927\"* the|strong=\"H5927\"* one|strong=\"H8147\"* side|strong=\"H3802\"* outside|strong=\"H2351\"*, as|strong=\"H5927\"* one|strong=\"H8147\"* goes|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H5927\"* entry|strong=\"H6607\"* of|strong=\"H8179\"* the|strong=\"H5927\"* gate|strong=\"H8179\"* toward|strong=\"H5927\"* the|strong=\"H5927\"* north|strong=\"H6828\"*, were|strong=\"H8147\"* two|strong=\"H8147\"* tables|strong=\"H7979\"*; and|strong=\"H5927\"* on|strong=\"H5927\"* the|strong=\"H5927\"* other|strong=\"H8147\"* side|strong=\"H3802\"*, which|strong=\"H8179\"* belonged|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H5927\"* porch of|strong=\"H8179\"* the|strong=\"H5927\"* gate|strong=\"H8179\"*, were|strong=\"H8147\"* two|strong=\"H8147\"* tables|strong=\"H7979\"*." + }, + { + "verseNum": 41, + "text": "Four tables|strong=\"H7979\"* were|strong=\"H8179\"* on|strong=\"H7979\"* this side|strong=\"H3802\"*, and|strong=\"H8179\"* four tables|strong=\"H7979\"* on|strong=\"H7979\"* that|strong=\"H8179\"* side|strong=\"H3802\"*, by|strong=\"H8179\"* the|strong=\"H7819\"* side|strong=\"H3802\"* of|strong=\"H8179\"* the|strong=\"H7819\"* gate|strong=\"H8179\"*: eight|strong=\"H8083\"* tables|strong=\"H7979\"*, on|strong=\"H7979\"* which|strong=\"H8179\"* they|strong=\"H8179\"* killed|strong=\"H7819\"* the|strong=\"H7819\"* sacrifices." + }, + { + "verseNum": 42, + "text": "There were|strong=\"H3627\"* four cut|strong=\"H1496\"* stone|strong=\"H1496\"* tables|strong=\"H7979\"* for|strong=\"H3627\"* the|strong=\"H7819\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, a|strong=\"H3068\"* cubit and|strong=\"H5930\"* a|strong=\"H3068\"* half|strong=\"H2677\"* long, a|strong=\"H3068\"* cubit and|strong=\"H5930\"* a|strong=\"H3068\"* half|strong=\"H2677\"* wide|strong=\"H7341\"*, and|strong=\"H5930\"* one|strong=\"H7341\"* cubit high|strong=\"H1363\"*. They|strong=\"H5930\"* laid|strong=\"H3240\"* the|strong=\"H7819\"* instruments|strong=\"H3627\"* with|strong=\"H3627\"* which|strong=\"H3627\"* they|strong=\"H5930\"* killed|strong=\"H7819\"* the|strong=\"H7819\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H5930\"* the|strong=\"H7819\"* sacrifice|strong=\"H2077\"* on|strong=\"H3627\"* them|strong=\"H7819\"*." + }, + { + "verseNum": 43, + "text": "The|strong=\"H5439\"* hooks|strong=\"H8240\"*, a|strong=\"H3068\"* hand|strong=\"H2948\"* width long|strong=\"H2948\"*, were|strong=\"H1004\"* fastened|strong=\"H3559\"* within|strong=\"H1004\"* all|strong=\"H5439\"* around|strong=\"H5439\"*. The|strong=\"H5439\"* meat|strong=\"H1320\"* of|strong=\"H1004\"* the|strong=\"H5439\"* offering|strong=\"H7133\"* was|strong=\"H1004\"* on|strong=\"H1004\"* the|strong=\"H5439\"* tables|strong=\"H7979\"*." + }, + { + "verseNum": 44, + "text": "Outside|strong=\"H2351\"* of|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H6442\"* gate|strong=\"H8179\"* were|strong=\"H1870\"* rooms|strong=\"H3957\"* for|strong=\"H6440\"* the|strong=\"H6440\"* singers|strong=\"H7891\"* in|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H6442\"* court|strong=\"H2691\"*, which|strong=\"H3957\"* was|strong=\"H1870\"* at|strong=\"H6440\"* the|strong=\"H6440\"* side|strong=\"H3802\"* of|strong=\"H6440\"* the|strong=\"H6440\"* north|strong=\"H6828\"* gate|strong=\"H8179\"*. They|strong=\"H6440\"* faced|strong=\"H6440\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* south|strong=\"H1864\"*. One at|strong=\"H6440\"* the|strong=\"H6440\"* side|strong=\"H3802\"* of|strong=\"H6440\"* the|strong=\"H6440\"* east|strong=\"H6921\"* gate|strong=\"H8179\"* faced|strong=\"H6440\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* north|strong=\"H6828\"*." + }, + { + "verseNum": 45, + "text": "He|strong=\"H1004\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H6440\"*, “This|strong=\"H2090\"* room|strong=\"H1004\"*, which|strong=\"H1004\"* faces|strong=\"H6440\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* south|strong=\"H1864\"*, is|strong=\"H1870\"* for|strong=\"H6440\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* perform|strong=\"H8104\"* the|strong=\"H6440\"* duty|strong=\"H4931\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 46, + "text": "The|strong=\"H6440\"* room|strong=\"H3957\"* which|strong=\"H3068\"* faces|strong=\"H6440\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* north|strong=\"H6828\"* is|strong=\"H3068\"* for|strong=\"H6440\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* who|strong=\"H3068\"* perform|strong=\"H8104\"* the|strong=\"H6440\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*. These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*, who|strong=\"H3068\"* from|strong=\"H6440\"* among the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"* come|strong=\"H7131\"* near|strong=\"H7131\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* minister|strong=\"H8334\"* to|strong=\"H3068\"* him|strong=\"H6440\"*.”" + }, + { + "verseNum": 47, + "text": "He|strong=\"H1004\"* measured|strong=\"H4058\"* the|strong=\"H6440\"* court|strong=\"H2691\"*, one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits long|strong=\"H6440\"* and|strong=\"H3967\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits wide|strong=\"H7341\"*, square|strong=\"H7251\"*. The|strong=\"H6440\"* altar|strong=\"H4196\"* was|strong=\"H1004\"* before|strong=\"H6440\"* the|strong=\"H6440\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 48, + "text": "Then he|strong=\"H2568\"* brought me|strong=\"H1004\"* to|strong=\"H1004\"* the|strong=\"H4058\"* porch of|strong=\"H1004\"* the|strong=\"H4058\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* measured|strong=\"H4058\"* each|strong=\"H6311\"* post of|strong=\"H1004\"* the|strong=\"H4058\"* porch, five|strong=\"H2568\"* cubits|strong=\"H2568\"* on|strong=\"H1004\"* this|strong=\"H1004\"* side|strong=\"H6311\"*, and|strong=\"H1004\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"* on|strong=\"H1004\"* that|strong=\"H8179\"* side|strong=\"H6311\"*. The|strong=\"H4058\"* width|strong=\"H7341\"* of|strong=\"H1004\"* the|strong=\"H4058\"* gate|strong=\"H8179\"* was|strong=\"H1004\"* three|strong=\"H7969\"* cubits|strong=\"H2568\"* on|strong=\"H1004\"* this|strong=\"H1004\"* side|strong=\"H6311\"* and|strong=\"H1004\"* three|strong=\"H7969\"* cubits|strong=\"H2568\"* on|strong=\"H1004\"* that|strong=\"H8179\"* side|strong=\"H6311\"*." + }, + { + "verseNum": 49, + "text": "The|strong=\"H5927\"* length of|strong=\"H5982\"* the|strong=\"H5927\"* porch was|strong=\"H5982\"* twenty|strong=\"H6242\"* cubits and|strong=\"H6242\"* the|strong=\"H5927\"* width|strong=\"H7341\"* eleven|strong=\"H6249\"* cubits, even by|strong=\"H5927\"* the|strong=\"H5927\"* steps|strong=\"H4609\"* by|strong=\"H5927\"* which they|strong=\"H5927\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* it|strong=\"H5927\"*. There|strong=\"H5927\"* were pillars|strong=\"H5982\"* by|strong=\"H5927\"* the|strong=\"H5927\"* posts|strong=\"H5982\"*, one|strong=\"H7341\"* on|strong=\"H5927\"* this|strong=\"H5927\"* side|strong=\"H6311\"*, and|strong=\"H6242\"* another on|strong=\"H5927\"* that|strong=\"H5927\"* side|strong=\"H6311\"*." + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H4058\"* brought me to|strong=\"H8337\"* the|strong=\"H4058\"* nave|strong=\"H1964\"* and|strong=\"H7341\"* measured|strong=\"H4058\"* the|strong=\"H4058\"* posts, six|strong=\"H8337\"* cubits wide|strong=\"H7341\"* on|strong=\"H8337\"* the|strong=\"H4058\"* one|strong=\"H7341\"* side|strong=\"H6311\"* and|strong=\"H7341\"* six|strong=\"H8337\"* cubits wide|strong=\"H7341\"* on|strong=\"H8337\"* the|strong=\"H4058\"* other|strong=\"H6311\"* side|strong=\"H6311\"*, which was the|strong=\"H4058\"* width|strong=\"H7341\"* of|strong=\"H7341\"* the|strong=\"H4058\"* tent." + }, + { + "verseNum": 2, + "text": "The|strong=\"H4058\"* width|strong=\"H7341\"* of|strong=\"H7341\"* the|strong=\"H4058\"* entrance|strong=\"H6607\"* was|strong=\"H3802\"* ten|strong=\"H6235\"* cubits|strong=\"H2568\"*,+ 41:2 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H6242\"* the|strong=\"H4058\"* sides|strong=\"H3802\"* of|strong=\"H7341\"* the|strong=\"H4058\"* entrance|strong=\"H6607\"* were five|strong=\"H2568\"* cubits|strong=\"H2568\"* on|strong=\"H7341\"* the|strong=\"H4058\"* one|strong=\"H7341\"* side|strong=\"H3802\"*, and|strong=\"H6242\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"* on|strong=\"H7341\"* the|strong=\"H4058\"* other|strong=\"H6311\"* side|strong=\"H3802\"*. He|strong=\"H2568\"* measured|strong=\"H4058\"* its|strong=\"H4058\"* length, forty cubits|strong=\"H2568\"*, and|strong=\"H6242\"* the|strong=\"H4058\"* width|strong=\"H7341\"*, twenty|strong=\"H6242\"* cubits|strong=\"H2568\"*." + }, + { + "verseNum": 3, + "text": "Then he|strong=\"H8147\"* went|strong=\"H8147\"* inward|strong=\"H6441\"* and|strong=\"H8147\"* measured|strong=\"H4058\"* each|strong=\"H8147\"* post of|strong=\"H7341\"* the|strong=\"H4058\"* entrance|strong=\"H6607\"*, two|strong=\"H8147\"* cubits; and|strong=\"H8147\"* the|strong=\"H4058\"* entrance|strong=\"H6607\"*, six|strong=\"H8337\"* cubits; and|strong=\"H8147\"* the|strong=\"H4058\"* width|strong=\"H7341\"* of|strong=\"H7341\"* the|strong=\"H4058\"* entrance|strong=\"H6607\"*, seven|strong=\"H7651\"* cubits." + }, + { + "verseNum": 4, + "text": "He|strong=\"H6440\"* measured|strong=\"H4058\"* its|strong=\"H4058\"* length, twenty|strong=\"H6242\"* cubits, and|strong=\"H6242\"* the|strong=\"H6440\"* width|strong=\"H7341\"*, twenty|strong=\"H6242\"* cubits, before|strong=\"H6440\"* the|strong=\"H6440\"* nave|strong=\"H1964\"*. He|strong=\"H6440\"* said to|strong=\"H6440\"* me|strong=\"H6440\"*, “This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H6440\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*.”" + }, + { + "verseNum": 5, + "text": "Then he|strong=\"H1004\"* measured|strong=\"H4058\"* the|strong=\"H5439\"* wall|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H5439\"* house|strong=\"H1004\"*, six|strong=\"H8337\"* cubits; and|strong=\"H1004\"* the|strong=\"H5439\"* width|strong=\"H7341\"* of|strong=\"H1004\"* every|strong=\"H5439\"* side|strong=\"H5439\"* room|strong=\"H1004\"*, four cubits, all|strong=\"H5439\"* around|strong=\"H5439\"* the|strong=\"H5439\"* house|strong=\"H1004\"* on|strong=\"H1004\"* every|strong=\"H5439\"* side|strong=\"H5439\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5439\"* side|strong=\"H5439\"* rooms|strong=\"H1004\"* were|strong=\"H1961\"* in|strong=\"H1004\"* three|strong=\"H7969\"* stories|strong=\"H6763\"*, one|strong=\"H3808\"* over|strong=\"H6763\"* another|strong=\"H6763\"*, and|strong=\"H1004\"* thirty|strong=\"H7970\"* in|strong=\"H1004\"* each|strong=\"H5439\"* story|strong=\"H6471\"*. They|strong=\"H3808\"* entered into|strong=\"H1961\"* the|strong=\"H5439\"* wall|strong=\"H7023\"* which|strong=\"H1004\"* belonged|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H5439\"* house|strong=\"H1004\"* for|strong=\"H1004\"* the|strong=\"H5439\"* side|strong=\"H5439\"* rooms|strong=\"H1004\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, that|strong=\"H3808\"* they|strong=\"H3808\"* might be|strong=\"H1961\"* supported and|strong=\"H1004\"* not|strong=\"H3808\"* penetrate the|strong=\"H5439\"* wall|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H5439\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5921\"* side|strong=\"H5439\"* rooms|strong=\"H1004\"* were|strong=\"H1004\"* wider|strong=\"H7337\"* on|strong=\"H5921\"* the|strong=\"H5921\"* higher|strong=\"H4605\"* levels, because|strong=\"H3588\"* the|strong=\"H5921\"* walls|strong=\"H6763\"* were|strong=\"H1004\"* narrower at|strong=\"H5921\"* the|strong=\"H5921\"* higher|strong=\"H4605\"* levels. Therefore|strong=\"H3651\"* the|strong=\"H5921\"* width|strong=\"H7341\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* increased|strong=\"H5927\"* upward|strong=\"H4605\"*; and|strong=\"H1004\"* so|strong=\"H3651\"* one|strong=\"H3588\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* the|strong=\"H5921\"* lowest|strong=\"H8481\"* level to|strong=\"H5927\"* the|strong=\"H5921\"* highest|strong=\"H5945\"* through|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8484\"* level." + }, + { + "verseNum": 8, + "text": "I|strong=\"H7200\"* saw|strong=\"H7200\"* also that|strong=\"H7200\"* the|strong=\"H7200\"* house|strong=\"H1004\"* had a|strong=\"H3068\"* raised|strong=\"H1363\"* base all|strong=\"H5439\"* around|strong=\"H5439\"*. The|strong=\"H7200\"* foundations|strong=\"H4328\"* of|strong=\"H1004\"* the|strong=\"H7200\"* side|strong=\"H5439\"* rooms|strong=\"H1004\"* were|strong=\"H1004\"* a|strong=\"H3068\"* full|strong=\"H4393\"* reed|strong=\"H7070\"* of|strong=\"H1004\"* six|strong=\"H8337\"* great cubits." + }, + { + "verseNum": 9, + "text": "The|strong=\"H2351\"* thickness|strong=\"H7341\"* of|strong=\"H1004\"* the|strong=\"H2351\"* outer|strong=\"H2351\"* wall|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H2351\"* side|strong=\"H6763\"* rooms|strong=\"H1004\"* was|strong=\"H1004\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*. That|strong=\"H1004\"* which|strong=\"H1004\"* was|strong=\"H1004\"* left|strong=\"H3240\"* was|strong=\"H1004\"* the|strong=\"H2351\"* place|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H2351\"* side|strong=\"H6763\"* rooms|strong=\"H1004\"* that|strong=\"H1004\"* belonged to|strong=\"H1004\"* the|strong=\"H2351\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 10, + "text": "Between the|strong=\"H5439\"* rooms|strong=\"H3957\"* was|strong=\"H1004\"* a|strong=\"H3068\"* width|strong=\"H7341\"* of|strong=\"H1004\"* twenty|strong=\"H6242\"* cubits around|strong=\"H5439\"* the|strong=\"H5439\"* house|strong=\"H1004\"* on|strong=\"H1004\"* every|strong=\"H5439\"* side|strong=\"H5439\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H1870\"* doors|strong=\"H6607\"* of|strong=\"H1870\"* the|strong=\"H1870\"* side|strong=\"H5439\"* rooms|strong=\"H5439\"* were|strong=\"H5439\"* toward|strong=\"H1870\"* an|strong=\"H6828\"* open|strong=\"H4725\"* area|strong=\"H5439\"* that|strong=\"H4725\"* was|strong=\"H4725\"* left|strong=\"H3240\"*, one|strong=\"H5439\"* door|strong=\"H6607\"* toward|strong=\"H1870\"* the|strong=\"H1870\"* north|strong=\"H6828\"*, and|strong=\"H2568\"* another|strong=\"H6763\"* door|strong=\"H6607\"* toward|strong=\"H1870\"* the|strong=\"H1870\"* south|strong=\"H1864\"*. The|strong=\"H1870\"* width|strong=\"H7341\"* of|strong=\"H1870\"* the|strong=\"H1870\"* open|strong=\"H4725\"* area|strong=\"H5439\"* was|strong=\"H4725\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H6440\"* building|strong=\"H1146\"* that|strong=\"H3220\"* was|strong=\"H1870\"* before|strong=\"H6440\"* the|strong=\"H6440\"* separate|strong=\"H1508\"* place|strong=\"H1508\"* at|strong=\"H6440\"* the|strong=\"H6440\"* side|strong=\"H6285\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* west|strong=\"H3220\"* was|strong=\"H1870\"* seventy|strong=\"H7657\"* cubits|strong=\"H2568\"* wide|strong=\"H7341\"*; and|strong=\"H2568\"* the|strong=\"H6440\"* wall|strong=\"H7023\"* of|strong=\"H6440\"* the|strong=\"H6440\"* building|strong=\"H1146\"* was|strong=\"H1870\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"* thick|strong=\"H7341\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, and|strong=\"H2568\"* its|strong=\"H5439\"* length ninety|strong=\"H8673\"* cubits|strong=\"H2568\"*." + }, + { + "verseNum": 13, + "text": "So he|strong=\"H1004\"* measured|strong=\"H4058\"* the|strong=\"H4058\"* temple|strong=\"H1004\"*, one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits long; and|strong=\"H3967\"* the|strong=\"H4058\"* separate|strong=\"H1508\"* place|strong=\"H1004\"*, and|strong=\"H3967\"* the|strong=\"H4058\"* building|strong=\"H1140\"*, with|strong=\"H1004\"* its|strong=\"H4058\"* walls|strong=\"H7023\"*, one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits long;" + }, + { + "verseNum": 14, + "text": "also the|strong=\"H6440\"* width|strong=\"H7341\"* of|strong=\"H1004\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* temple|strong=\"H1004\"*, and|strong=\"H3967\"* of|strong=\"H1004\"* the|strong=\"H6440\"* separate|strong=\"H1508\"* place|strong=\"H1004\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* east|strong=\"H6921\"*, one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits." + }, + { + "verseNum": 15, + "text": "He|strong=\"H5921\"* measured|strong=\"H4058\"* the|strong=\"H6440\"* length|strong=\"H5921\"* of|strong=\"H6440\"* the|strong=\"H6440\"* building|strong=\"H1146\"* before|strong=\"H6440\"* the|strong=\"H6440\"* separate|strong=\"H1508\"* place|strong=\"H1508\"* which|strong=\"H1508\"* was|strong=\"H6440\"* at|strong=\"H5921\"* its|strong=\"H5921\"* back, and|strong=\"H3967\"* its|strong=\"H5921\"* galleries on|strong=\"H5921\"* the|strong=\"H6440\"* one|strong=\"H3967\"* side|strong=\"H6311\"* and|strong=\"H3967\"* on|strong=\"H5921\"* the|strong=\"H6440\"* other|strong=\"H6311\"* side|strong=\"H6311\"*, one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits from|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H6442\"* temple|strong=\"H1964\"*, and|strong=\"H3967\"* the|strong=\"H6440\"* porches of|strong=\"H6440\"* the|strong=\"H6440\"* court|strong=\"H2691\"*," + }, + { + "verseNum": 16, + "text": "the|strong=\"H5704\"* thresholds|strong=\"H5592\"*, and|strong=\"H6086\"* the|strong=\"H5704\"* closed|strong=\"H3680\"* windows|strong=\"H2474\"*, and|strong=\"H6086\"* the|strong=\"H5704\"* galleries around|strong=\"H5439\"* on|strong=\"H7969\"* their|strong=\"H3680\"* three|strong=\"H7969\"* stories|strong=\"H7969\"*, opposite|strong=\"H5048\"* the|strong=\"H5704\"* threshold|strong=\"H5592\"*, with|strong=\"H3680\"* wood|strong=\"H6086\"* ceilings all|strong=\"H5439\"* around|strong=\"H5439\"*, and|strong=\"H6086\"* from|strong=\"H5704\"* the|strong=\"H5704\"* ground up|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* windows|strong=\"H2474\"*, (now the|strong=\"H5704\"* windows|strong=\"H2474\"* were|strong=\"H7969\"* covered|strong=\"H3680\"*)," + }, + { + "verseNum": 17, + "text": "to|strong=\"H5704\"* the|strong=\"H3605\"* space above|strong=\"H5921\"* the|strong=\"H3605\"* door|strong=\"H6607\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* inner|strong=\"H6442\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* outside|strong=\"H2351\"*, and|strong=\"H1004\"* by|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wall|strong=\"H7023\"* all|strong=\"H3605\"* around|strong=\"H5439\"* inside|strong=\"H1004\"* and|strong=\"H1004\"* outside|strong=\"H2351\"*, by|strong=\"H5921\"* measure|strong=\"H4060\"*." + }, + { + "verseNum": 18, + "text": "It|strong=\"H6213\"* was|strong=\"H6440\"* made|strong=\"H6213\"* with|strong=\"H6213\"* cherubim|strong=\"H3742\"* and|strong=\"H6440\"* palm|strong=\"H8561\"* trees|strong=\"H8561\"*. A|strong=\"H3068\"* palm|strong=\"H8561\"* tree|strong=\"H8561\"* was|strong=\"H6440\"* between cherub|strong=\"H3742\"* and|strong=\"H6440\"* cherub|strong=\"H3742\"*, and|strong=\"H6440\"* every|strong=\"H6213\"* cherub|strong=\"H3742\"* had|strong=\"H3742\"* two|strong=\"H8147\"* faces|strong=\"H6440\"*," + }, + { + "verseNum": 19, + "text": "so|strong=\"H6213\"* that|strong=\"H3605\"* there|strong=\"H3605\"* was|strong=\"H1004\"* the|strong=\"H3605\"* face|strong=\"H6440\"* of|strong=\"H1004\"* a|strong=\"H3068\"* man|strong=\"H3605\"* toward|strong=\"H6440\"* the|strong=\"H3605\"* palm|strong=\"H8561\"* tree|strong=\"H8561\"* on|strong=\"H1004\"* the|strong=\"H3605\"* one|strong=\"H3605\"* side|strong=\"H5439\"*, and|strong=\"H1004\"* the|strong=\"H3605\"* face|strong=\"H6440\"* of|strong=\"H1004\"* a|strong=\"H3068\"* young|strong=\"H3715\"* lion|strong=\"H3715\"* toward|strong=\"H6440\"* the|strong=\"H3605\"* palm|strong=\"H8561\"* tree|strong=\"H8561\"* on|strong=\"H1004\"* the|strong=\"H3605\"* other|strong=\"H3605\"* side|strong=\"H5439\"*. It|strong=\"H6213\"* was|strong=\"H1004\"* made|strong=\"H6213\"* like|strong=\"H1004\"* this|strong=\"H6213\"* through|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* all|strong=\"H3605\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 20, + "text": "Cherubim|strong=\"H3742\"* and|strong=\"H6213\"* palm|strong=\"H8561\"* trees|strong=\"H8561\"* were|strong=\"H3742\"* made|strong=\"H6213\"* from|strong=\"H5921\"* the|strong=\"H5921\"* ground to|strong=\"H5704\"* above|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"*. The|strong=\"H5921\"* wall|strong=\"H7023\"* of|strong=\"H5921\"* the|strong=\"H5921\"* temple|strong=\"H1964\"* was|strong=\"H3742\"* like|strong=\"H5704\"* this|strong=\"H6213\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H6440\"* door|strong=\"H4201\"* posts|strong=\"H4201\"* of|strong=\"H6440\"* the|strong=\"H6440\"* nave|strong=\"H1964\"* were|strong=\"H6944\"* squared|strong=\"H7251\"*. As|strong=\"H6440\"* for|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* nave|strong=\"H1964\"*, its|strong=\"H6440\"* appearance|strong=\"H4758\"* was|strong=\"H6440\"* as|strong=\"H6440\"* the|strong=\"H6440\"* appearance|strong=\"H4758\"* of|strong=\"H6440\"* the|strong=\"H6440\"* temple|strong=\"H1964\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H6440\"* altar|strong=\"H4196\"* was|strong=\"H3068\"* of|strong=\"H3068\"* wood|strong=\"H6086\"*, three|strong=\"H7969\"* cubits high|strong=\"H1364\"*, and|strong=\"H3068\"* its|strong=\"H6440\"* length two|strong=\"H8147\"* cubits. Its|strong=\"H6440\"* corners|strong=\"H4740\"*, its|strong=\"H6440\"* base, and|strong=\"H3068\"* its|strong=\"H6440\"* walls|strong=\"H7023\"* were|strong=\"H8147\"* of|strong=\"H3068\"* wood|strong=\"H6086\"*. He|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H6440\"*, “This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H6440\"* table|strong=\"H7979\"* that|strong=\"H3068\"* is|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 23, + "text": "The|strong=\"H8147\"* temple|strong=\"H1964\"* and|strong=\"H8147\"* the|strong=\"H8147\"* sanctuary|strong=\"H6944\"* had|strong=\"H1817\"* two|strong=\"H8147\"* doors|strong=\"H1817\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H8147\"* doors|strong=\"H1817\"* had|strong=\"H1817\"* two|strong=\"H8147\"* leaves|strong=\"H1817\"* each|strong=\"H1817\"*, two|strong=\"H8147\"* turning|strong=\"H4142\"* leaves|strong=\"H1817\"*: two|strong=\"H8147\"* for|strong=\"H8147\"* the|strong=\"H8147\"* one|strong=\"H8147\"* door|strong=\"H1817\"*, and|strong=\"H8147\"* two|strong=\"H8147\"* leaves|strong=\"H1817\"* for|strong=\"H8147\"* the|strong=\"H8147\"* other|strong=\"H8147\"*." + }, + { + "verseNum": 25, + "text": "There|strong=\"H3742\"* were|strong=\"H3742\"* made|strong=\"H6213\"* on|strong=\"H6213\"* them|strong=\"H6440\"*, on|strong=\"H6213\"* the|strong=\"H6440\"* doors|strong=\"H1817\"* of|strong=\"H6440\"* the|strong=\"H6440\"* nave|strong=\"H1964\"*, cherubim|strong=\"H3742\"* and|strong=\"H6086\"* palm|strong=\"H8561\"* trees|strong=\"H6086\"*, like|strong=\"H6213\"* those|strong=\"H6213\"* made|strong=\"H6213\"* on|strong=\"H6213\"* the|strong=\"H6440\"* walls|strong=\"H7023\"*. There|strong=\"H3742\"* was|strong=\"H6440\"* a|strong=\"H3068\"* threshold|strong=\"H5646\"* of|strong=\"H6440\"* wood|strong=\"H6086\"* on|strong=\"H6213\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* porch outside|strong=\"H2351\"*." + }, + { + "verseNum": 26, + "text": "There were|strong=\"H1004\"* closed windows|strong=\"H2474\"* and|strong=\"H1004\"* palm|strong=\"H8561\"* trees|strong=\"H8561\"* on|strong=\"H1004\"* the|strong=\"H1004\"* one|strong=\"H6763\"* side|strong=\"H3802\"* and|strong=\"H1004\"* on|strong=\"H1004\"* the|strong=\"H1004\"* other|strong=\"H6311\"* side|strong=\"H3802\"*, on|strong=\"H1004\"* the|strong=\"H1004\"* sides|strong=\"H6763\"* of|strong=\"H1004\"* the|strong=\"H1004\"* porch. This|strong=\"H1004\"* is|strong=\"H1004\"* how the|strong=\"H1004\"* side|strong=\"H3802\"* rooms|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H1004\"* temple|strong=\"H1004\"* and|strong=\"H1004\"* the|strong=\"H1004\"* thresholds|strong=\"H5646\"* were|strong=\"H1004\"* arranged." + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3318\"* he|strong=\"H3318\"* brought|strong=\"H3318\"* me|strong=\"H5048\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3318\"* outer|strong=\"H2435\"* court|strong=\"H2691\"*, the|strong=\"H3318\"* way|strong=\"H1870\"* toward|strong=\"H1870\"* the|strong=\"H3318\"* north|strong=\"H6828\"*. Then|strong=\"H3318\"* he|strong=\"H3318\"* brought|strong=\"H3318\"* me|strong=\"H5048\"* into|strong=\"H3318\"* the|strong=\"H3318\"* room|strong=\"H3957\"* that|strong=\"H2691\"* was|strong=\"H1870\"* opposite|strong=\"H5048\"* the|strong=\"H3318\"* separate|strong=\"H1508\"* place|strong=\"H1508\"*, and|strong=\"H1870\"* which|strong=\"H3957\"* was|strong=\"H1870\"* opposite|strong=\"H5048\"* the|strong=\"H3318\"* building|strong=\"H1146\"* toward|strong=\"H1870\"* the|strong=\"H3318\"* north|strong=\"H6828\"*." + }, + { + "verseNum": 2, + "text": "Facing|strong=\"H6440\"* the|strong=\"H6440\"* length of|strong=\"H6440\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits+ 42:2 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* was|strong=\"H6440\"* the|strong=\"H6440\"* north|strong=\"H6828\"* door|strong=\"H6607\"*, and|strong=\"H3967\"* the|strong=\"H6440\"* width|strong=\"H7341\"* was|strong=\"H6440\"* fifty|strong=\"H2572\"* cubits." + }, + { + "verseNum": 3, + "text": "Opposite|strong=\"H5048\"* the|strong=\"H6440\"* twenty|strong=\"H6242\"* cubits which|strong=\"H7531\"* belonged to|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H6442\"* court|strong=\"H2691\"*, and|strong=\"H6242\"* opposite|strong=\"H5048\"* the|strong=\"H6440\"* pavement|strong=\"H7531\"* which|strong=\"H7531\"* belonged to|strong=\"H6440\"* the|strong=\"H6440\"* outer|strong=\"H2435\"* court|strong=\"H2691\"*, was|strong=\"H6440\"* gallery against|strong=\"H6440\"* gallery in|strong=\"H6440\"* the|strong=\"H6440\"* three|strong=\"H7992\"* stories." + }, + { + "verseNum": 4, + "text": "Before|strong=\"H6440\"* the|strong=\"H6440\"* rooms|strong=\"H3957\"* was|strong=\"H1870\"* a|strong=\"H3068\"* walk|strong=\"H4109\"* of|strong=\"H6440\"* ten|strong=\"H6235\"* cubits’ width|strong=\"H7341\"* inward|strong=\"H6442\"*, a|strong=\"H3068\"* way|strong=\"H1870\"* of|strong=\"H6440\"* one|strong=\"H7341\"* cubit; and|strong=\"H6440\"* their|strong=\"H6440\"* doors|strong=\"H6607\"* were|strong=\"H1870\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* north|strong=\"H6828\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"H3588\"* the|strong=\"H3588\"* upper|strong=\"H5945\"* rooms|strong=\"H3957\"* were|strong=\"H2007\"* shorter|strong=\"H7114\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* galleries took away from these|strong=\"H2007\"* more|strong=\"H3588\"* than|strong=\"H3588\"* from the|strong=\"H3588\"* lower|strong=\"H8481\"* and|strong=\"H3957\"* the|strong=\"H3588\"* middle|strong=\"H8484\"* in|strong=\"H7114\"* the|strong=\"H3588\"* building|strong=\"H1146\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H2007\"* in|strong=\"H5921\"* three|strong=\"H8027\"* stories, and|strong=\"H5982\"* they|strong=\"H3588\"* didn’t have|strong=\"H3588\"* pillars|strong=\"H5982\"* as|strong=\"H3651\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"* of|strong=\"H5982\"* the|strong=\"H5921\"* courts|strong=\"H2691\"*. Therefore|strong=\"H3651\"* the|strong=\"H5921\"* uppermost was|strong=\"H5982\"* set back more|strong=\"H3651\"* than|strong=\"H5921\"* the|strong=\"H5921\"* lowest|strong=\"H8481\"* and|strong=\"H5982\"* the|strong=\"H5921\"* middle|strong=\"H8484\"* from|strong=\"H5921\"* the|strong=\"H5921\"* ground." + }, + { + "verseNum": 7, + "text": "The|strong=\"H6440\"* wall|strong=\"H1447\"* that|strong=\"H2691\"* was|strong=\"H1870\"* outside|strong=\"H2351\"* by|strong=\"H1870\"* the|strong=\"H6440\"* side|strong=\"H5980\"* of|strong=\"H6440\"* the|strong=\"H6440\"* rooms|strong=\"H3957\"*, toward|strong=\"H1870\"* the|strong=\"H6440\"* outer|strong=\"H2435\"* court|strong=\"H2691\"* before|strong=\"H6440\"* the|strong=\"H6440\"* rooms|strong=\"H3957\"*, was|strong=\"H1870\"* fifty|strong=\"H2572\"* cubits long|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* the|strong=\"H6440\"* length|strong=\"H5921\"* of|strong=\"H6440\"* the|strong=\"H6440\"* rooms|strong=\"H3957\"* that|strong=\"H3588\"* were|strong=\"H2009\"* in|strong=\"H5921\"* the|strong=\"H6440\"* outer|strong=\"H2435\"* court|strong=\"H2691\"* was|strong=\"H6440\"* fifty|strong=\"H2572\"* cubits. Behold|strong=\"H2009\"*, those|strong=\"H5921\"* facing|strong=\"H6440\"* the|strong=\"H6440\"* temple|strong=\"H1964\"* were|strong=\"H2009\"* one|strong=\"H3588\"* hundred|strong=\"H3967\"* cubits." + }, + { + "verseNum": 9, + "text": "From|strong=\"H8478\"* under|strong=\"H8478\"* these|strong=\"H2007\"* rooms|strong=\"H3957\"* was|strong=\"H2691\"* the|strong=\"H8478\"* entry|strong=\"H3996\"* on|strong=\"H8478\"* the|strong=\"H8478\"* east|strong=\"H6921\"* side|strong=\"H2007\"*, as|strong=\"H8478\"* one goes into them|strong=\"H2007\"* from|strong=\"H8478\"* the|strong=\"H8478\"* outer|strong=\"H2435\"* court|strong=\"H2691\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"H6440\"* the|strong=\"H6440\"* thickness|strong=\"H7341\"* of|strong=\"H6440\"* the|strong=\"H6440\"* wall|strong=\"H1444\"* of|strong=\"H6440\"* the|strong=\"H6440\"* court|strong=\"H2691\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* east|strong=\"H6921\"*, before|strong=\"H6440\"* the|strong=\"H6440\"* separate|strong=\"H1508\"* place|strong=\"H1508\"*, and|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* building|strong=\"H1146\"*, there|strong=\"H6440\"* were|strong=\"H1870\"* rooms|strong=\"H3957\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H3605\"* way|strong=\"H1870\"* before|strong=\"H6440\"* them|strong=\"H6440\"* was|strong=\"H1870\"* like|strong=\"H3651\"* the|strong=\"H3605\"* appearance|strong=\"H4758\"* of|strong=\"H6440\"* the|strong=\"H3605\"* rooms|strong=\"H3957\"* which|strong=\"H3957\"* were|strong=\"H1870\"* toward|strong=\"H1870\"* the|strong=\"H3605\"* north|strong=\"H6828\"*. Their|strong=\"H3605\"* length and|strong=\"H4941\"* width|strong=\"H7341\"* were|strong=\"H1870\"* the|strong=\"H3605\"* same|strong=\"H3651\"*. All|strong=\"H3605\"* their|strong=\"H3605\"* exits|strong=\"H4161\"* had the|strong=\"H3605\"* same|strong=\"H3651\"* arrangement and|strong=\"H4941\"* doors|strong=\"H6607\"*." + }, + { + "verseNum": 12, + "text": "Like|strong=\"H1870\"* the|strong=\"H6440\"* doors|strong=\"H6607\"* of|strong=\"H7218\"* the|strong=\"H6440\"* rooms|strong=\"H3957\"* that|strong=\"H3957\"* were|strong=\"H7218\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* south|strong=\"H1864\"* was|strong=\"H7218\"* a|strong=\"H3068\"* door|strong=\"H6607\"* at|strong=\"H6440\"* the|strong=\"H6440\"* head|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H6440\"* way|strong=\"H1870\"*, even the|strong=\"H6440\"* way|strong=\"H1870\"* directly|strong=\"H1903\"* before|strong=\"H6440\"* the|strong=\"H6440\"* wall|strong=\"H1448\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* east|strong=\"H6921\"*, as|strong=\"H6440\"* one|strong=\"H6607\"* enters into them|strong=\"H6440\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H3588\"* he|strong=\"H3588\"* said to|strong=\"H3068\"* me|strong=\"H6440\"*, “The|strong=\"H6440\"* north|strong=\"H6828\"* rooms|strong=\"H3957\"* and|strong=\"H3068\"* the|strong=\"H6440\"* south|strong=\"H1864\"* rooms|strong=\"H3957\"*, which|strong=\"H3068\"* are|strong=\"H3068\"* opposite|strong=\"H6440\"* the|strong=\"H6440\"* separate|strong=\"H1508\"* place|strong=\"H4725\"*, are|strong=\"H3068\"* the|strong=\"H6440\"* holy|strong=\"H6944\"* rooms|strong=\"H3957\"*, where|strong=\"H8033\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* who|strong=\"H3068\"* are|strong=\"H3068\"* near|strong=\"H7138\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3548\"* eat the|strong=\"H6440\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*. There|strong=\"H8033\"* they|strong=\"H3588\"* shall|strong=\"H3548\"* lay|strong=\"H3240\"* the|strong=\"H6440\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*, with|strong=\"H3068\"* the|strong=\"H6440\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, the|strong=\"H6440\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* trespass offering|strong=\"H4503\"*; for|strong=\"H3588\"* the|strong=\"H6440\"* place|strong=\"H4725\"* is|strong=\"H3068\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H3588\"* the|strong=\"H3588\"* priests|strong=\"H3548\"* enter in|strong=\"H3847\"*, then|strong=\"H3318\"* they|strong=\"H3588\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H5971\"* the|strong=\"H3588\"* holy|strong=\"H6944\"* place|strong=\"H6944\"* into|strong=\"H3318\"* the|strong=\"H3588\"* outer|strong=\"H2435\"* court|strong=\"H2691\"* until|strong=\"H3588\"* they|strong=\"H3588\"* lay|strong=\"H3240\"* their|strong=\"H3588\"* garments in|strong=\"H3847\"* which|strong=\"H5971\"* they|strong=\"H3588\"* minister|strong=\"H8334\"* there|strong=\"H8033\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H5971\"* holy|strong=\"H6944\"*. Then|strong=\"H3318\"* they|strong=\"H3588\"* shall|strong=\"H3548\"* put|strong=\"H3847\"* on|strong=\"H3847\"* other garments, and|strong=\"H3548\"* shall|strong=\"H3548\"* approach|strong=\"H7126\"* that|strong=\"H3588\"* which|strong=\"H5971\"* is|strong=\"H8033\"* for|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 15, + "text": "Now when|strong=\"H3615\"* he|strong=\"H1004\"* had finished|strong=\"H3615\"* measuring|strong=\"H4060\"* the|strong=\"H6440\"* inner|strong=\"H6442\"* house|strong=\"H1004\"*, he|strong=\"H1004\"* brought|strong=\"H3318\"* me|strong=\"H6440\"* out|strong=\"H3318\"* by|strong=\"H1870\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H1004\"* the|strong=\"H6440\"* gate|strong=\"H8179\"* which|strong=\"H1004\"* faces|strong=\"H6440\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* east|strong=\"H6921\"*, and|strong=\"H1004\"* measured|strong=\"H4058\"* it|strong=\"H5439\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H2568\"* measured|strong=\"H4058\"* on|strong=\"H4060\"* the|strong=\"H5439\"* east|strong=\"H6921\"* side|strong=\"H5439\"* with|strong=\"H7070\"* the|strong=\"H5439\"* measuring|strong=\"H4060\"* reed|strong=\"H7070\"* five|strong=\"H2568\"* hundred reeds|strong=\"H7070\"*, with|strong=\"H7070\"* the|strong=\"H5439\"* measuring|strong=\"H4060\"* reed|strong=\"H7070\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H2568\"* measured|strong=\"H4058\"* on|strong=\"H4060\"* the|strong=\"H5439\"* north|strong=\"H6828\"* side|strong=\"H5439\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* reeds|strong=\"H7070\"* with|strong=\"H7070\"* the|strong=\"H5439\"* measuring|strong=\"H4060\"* reed|strong=\"H7070\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H2568\"* measured|strong=\"H4058\"* on|strong=\"H4060\"* the|strong=\"H4058\"* south|strong=\"H1864\"* side|strong=\"H7307\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* reeds|strong=\"H7070\"* with|strong=\"H7070\"* the|strong=\"H4058\"* measuring|strong=\"H4060\"* reed|strong=\"H7070\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H2568\"* turned|strong=\"H5437\"* about|strong=\"H5437\"* to|strong=\"H3220\"* the|strong=\"H5437\"* west|strong=\"H3220\"* side|strong=\"H7307\"*, and|strong=\"H3967\"* measured|strong=\"H4058\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* reeds|strong=\"H7070\"* with|strong=\"H3220\"* the|strong=\"H5437\"* measuring|strong=\"H4060\"* reed|strong=\"H7070\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H2568\"* measured|strong=\"H4058\"* it|strong=\"H5439\"* on|strong=\"H5439\"* the|strong=\"H5439\"* four sides|strong=\"H5439\"*. It|strong=\"H5439\"* had|strong=\"H6944\"* a|strong=\"H3068\"* wall|strong=\"H2346\"* around|strong=\"H5439\"* it|strong=\"H5439\"*, the|strong=\"H5439\"* length five|strong=\"H2568\"* hundred|strong=\"H3967\"* cubits|strong=\"H2568\"*, and|strong=\"H3967\"* the|strong=\"H5439\"* width|strong=\"H7341\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* cubits|strong=\"H2568\"*, to|strong=\"H7307\"* make a|strong=\"H3068\"* separation between|strong=\"H7307\"* that|strong=\"H6944\"* which|strong=\"H7307\"* was|strong=\"H7307\"* holy|strong=\"H6944\"* and|strong=\"H3967\"* that|strong=\"H6944\"* which|strong=\"H7307\"* was|strong=\"H7307\"* common|strong=\"H2455\"*." + } + ] + }, + { + "chapterNum": 43, + "verses": [ + { + "verseNum": 1, + "text": "Afterward he|strong=\"H3212\"* brought|strong=\"H3212\"* me|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H1870\"* gate|strong=\"H8179\"*, even the|strong=\"H1870\"* gate|strong=\"H8179\"* that|strong=\"H8179\"* looks toward|strong=\"H1870\"* the|strong=\"H1870\"* east|strong=\"H6921\"*." + }, + { + "verseNum": 2, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H1870\"* glory|strong=\"H3519\"* of|strong=\"H6963\"* the|strong=\"H1870\"* God of|strong=\"H6963\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"* from|strong=\"H3478\"* the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H6963\"* the|strong=\"H1870\"* east|strong=\"H6921\"*. His|strong=\"H3478\"* voice|strong=\"H6963\"* was|strong=\"H3478\"* like|strong=\"H3478\"* the|strong=\"H1870\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* many|strong=\"H7227\"* waters|strong=\"H4325\"*; and|strong=\"H3478\"* the|strong=\"H1870\"* earth was|strong=\"H3478\"* illuminated with|strong=\"H3478\"* his|strong=\"H3478\"* glory|strong=\"H3519\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H7200\"* was|strong=\"H5892\"* like|strong=\"H4758\"* the|strong=\"H6440\"* appearance|strong=\"H4758\"* of|strong=\"H5892\"* the|strong=\"H6440\"* vision|strong=\"H4758\"* which|strong=\"H5892\"* I|strong=\"H7200\"* saw|strong=\"H7200\"*, even according to|strong=\"H6440\"* the|strong=\"H6440\"* vision|strong=\"H4758\"* that|strong=\"H7200\"* I|strong=\"H7200\"* saw|strong=\"H7200\"* when|strong=\"H7200\"* I|strong=\"H7200\"* came|strong=\"H5307\"* to|strong=\"H6440\"* destroy|strong=\"H7843\"* the|strong=\"H6440\"* city|strong=\"H5892\"*; and|strong=\"H5892\"* the|strong=\"H6440\"* visions|strong=\"H7200\"* were|strong=\"H5892\"* like|strong=\"H4758\"* the|strong=\"H6440\"* vision|strong=\"H4758\"* that|strong=\"H7200\"* I|strong=\"H7200\"* saw|strong=\"H7200\"* by|strong=\"H5892\"* the|strong=\"H6440\"* river|strong=\"H5104\"* Chebar|strong=\"H3529\"*; and|strong=\"H5892\"* I|strong=\"H7200\"* fell|strong=\"H5307\"* on|strong=\"H5307\"* my|strong=\"H7200\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* came|strong=\"H3068\"* into|strong=\"H3519\"* the|strong=\"H6440\"* house|strong=\"H1004\"* by|strong=\"H3068\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H1004\"* the|strong=\"H6440\"* gate|strong=\"H8179\"* which|strong=\"H3068\"* faces|strong=\"H6440\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* east|strong=\"H6921\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5375\"* Spirit|strong=\"H7307\"* took|strong=\"H5375\"* me|strong=\"H1004\"* up|strong=\"H5375\"* and|strong=\"H3068\"* brought|strong=\"H5375\"* me|strong=\"H1004\"* into|strong=\"H3519\"* the|strong=\"H5375\"* inner|strong=\"H6442\"* court|strong=\"H2691\"*; and|strong=\"H3068\"* behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* filled|strong=\"H4390\"* the|strong=\"H5375\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H8085\"* heard|strong=\"H8085\"* one|strong=\"H1961\"* speaking|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"* out|strong=\"H1696\"* of|strong=\"H1004\"* the|strong=\"H8085\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* a|strong=\"H3068\"* man stood|strong=\"H5975\"* by|strong=\"H5975\"* me|strong=\"H1696\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H8033\"* said to|strong=\"H3478\"* me|strong=\"H3808\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, this|strong=\"H8432\"* is|strong=\"H8034\"* the|strong=\"H8432\"* place|strong=\"H4725\"* of|strong=\"H1121\"* my|strong=\"H2930\"* throne|strong=\"H3678\"* and|strong=\"H1121\"* the|strong=\"H8432\"* place|strong=\"H4725\"* of|strong=\"H1121\"* the|strong=\"H8432\"* soles|strong=\"H3709\"* of|strong=\"H1121\"* my|strong=\"H2930\"* feet|strong=\"H7272\"*, where|strong=\"H8033\"* I|strong=\"H3808\"* will|strong=\"H4428\"* dwell|strong=\"H7931\"* among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* forever|strong=\"H5769\"*. The|strong=\"H8432\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* will|strong=\"H4428\"* no|strong=\"H3808\"* more|strong=\"H5750\"* defile|strong=\"H2930\"* my|strong=\"H2930\"* holy|strong=\"H6944\"* name|strong=\"H8034\"*, neither|strong=\"H3808\"* they|strong=\"H1992\"* nor|strong=\"H3808\"* their|strong=\"H1992\"* kings|strong=\"H4428\"*, by|strong=\"H3478\"* their|strong=\"H1992\"* prostitution|strong=\"H2184\"* and|strong=\"H1121\"* by|strong=\"H3478\"* the|strong=\"H8432\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* of|strong=\"H1121\"* their|strong=\"H1992\"* kings|strong=\"H4428\"* in|strong=\"H3478\"* their|strong=\"H1992\"* high|strong=\"H1116\"* places|strong=\"H1116\"*;" + }, + { + "verseNum": 8, + "text": "in|strong=\"H6213\"* their|strong=\"H5414\"* setting|strong=\"H5414\"* of|strong=\"H8034\"* their|strong=\"H5414\"* threshold|strong=\"H5592\"* by|strong=\"H8034\"* my|strong=\"H5414\"* threshold|strong=\"H5592\"* and|strong=\"H6213\"* their|strong=\"H5414\"* door|strong=\"H5592\"* post|strong=\"H4201\"* beside my|strong=\"H5414\"* door|strong=\"H5592\"* post|strong=\"H4201\"*. There|strong=\"H8034\"* was|strong=\"H8034\"* a|strong=\"H3068\"* wall|strong=\"H7023\"* between me|strong=\"H5414\"* and|strong=\"H6213\"* them|strong=\"H5414\"*; and|strong=\"H6213\"* they|strong=\"H6213\"* have|strong=\"H5414\"* defiled|strong=\"H2930\"* my|strong=\"H5414\"* holy|strong=\"H6944\"* name|strong=\"H8034\"* by|strong=\"H8034\"* their|strong=\"H5414\"* abominations|strong=\"H8441\"* which|strong=\"H7023\"* they|strong=\"H6213\"* have|strong=\"H5414\"* committed|strong=\"H6213\"*. Therefore|strong=\"H6213\"* I|strong=\"H5414\"* have|strong=\"H5414\"* consumed them|strong=\"H5414\"* in|strong=\"H6213\"* my|strong=\"H5414\"* anger." + }, + { + "verseNum": 9, + "text": "Now|strong=\"H6258\"* let|strong=\"H6258\"* them|strong=\"H8432\"* put|strong=\"H7368\"* away|strong=\"H7368\"* their|strong=\"H8432\"* prostitution|strong=\"H2184\"*, and|strong=\"H4428\"* the|strong=\"H8432\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* of|strong=\"H4428\"* their|strong=\"H8432\"* kings|strong=\"H4428\"* far|strong=\"H7368\"* from|strong=\"H4480\"* me|strong=\"H4480\"*. Then|strong=\"H6258\"* I|strong=\"H6258\"* will|strong=\"H4428\"* dwell|strong=\"H7931\"* among|strong=\"H8432\"* them|strong=\"H8432\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 10, + "text": "“You|strong=\"H5046\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, show|strong=\"H5046\"* the|strong=\"H5046\"* house|strong=\"H1004\"* to|strong=\"H3478\"* the|strong=\"H5046\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H3478\"* they|strong=\"H3478\"* may|strong=\"H3478\"* be|strong=\"H1121\"* ashamed|strong=\"H3637\"* of|strong=\"H1121\"* their|strong=\"H5046\"* iniquities|strong=\"H5771\"*; and|strong=\"H1121\"* let|strong=\"H5046\"* them|strong=\"H5046\"* measure|strong=\"H4058\"* the|strong=\"H5046\"* pattern|strong=\"H8508\"*." + }, + { + "verseNum": 11, + "text": "If they|strong=\"H6213\"* are|strong=\"H5869\"* ashamed|strong=\"H3637\"* of|strong=\"H1004\"* all|strong=\"H3605\"* that|strong=\"H3045\"* they|strong=\"H6213\"* have|strong=\"H5869\"* done|strong=\"H6213\"*, make|strong=\"H6213\"* known|strong=\"H3045\"* to|strong=\"H6213\"* them|strong=\"H6213\"* the|strong=\"H3605\"* form|strong=\"H6699\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, its|strong=\"H3605\"* fashion|strong=\"H8498\"*, its|strong=\"H3605\"* exits|strong=\"H4161\"*, its|strong=\"H3605\"* entrances|strong=\"H4126\"*, its|strong=\"H3605\"* structure, all|strong=\"H3605\"* its|strong=\"H3605\"* ordinances|strong=\"H2708\"*, all|strong=\"H3605\"* its|strong=\"H3605\"* forms|strong=\"H6699\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* its|strong=\"H3605\"* laws|strong=\"H8451\"*; and|strong=\"H1004\"* write|strong=\"H3789\"* it|strong=\"H6213\"* in|strong=\"H6213\"* their|strong=\"H3605\"* sight|strong=\"H5869\"*, that|strong=\"H3045\"* they|strong=\"H6213\"* may|strong=\"H6213\"* keep|strong=\"H8104\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* form|strong=\"H6699\"* of|strong=\"H1004\"* it|strong=\"H6213\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* its|strong=\"H3605\"* ordinances|strong=\"H2708\"*, and|strong=\"H1004\"* do|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 12, + "text": "“This|strong=\"H2063\"* is|strong=\"H2009\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"*. On|strong=\"H5921\"* the|strong=\"H3605\"* top|strong=\"H7218\"* of|strong=\"H1004\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* limit|strong=\"H1366\"* around|strong=\"H5439\"* it|strong=\"H5921\"* shall|strong=\"H1004\"* be|strong=\"H1004\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*. Behold|strong=\"H2009\"*, this|strong=\"H2063\"* is|strong=\"H2009\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 13, + "text": "“These|strong=\"H2088\"* are|strong=\"H8193\"* the|strong=\"H5439\"* measurements|strong=\"H4060\"* of|strong=\"H1366\"* the|strong=\"H5439\"* altar|strong=\"H4196\"* by|strong=\"H4196\"* cubits (the|strong=\"H5439\"* cubit+ 43:13 A normal cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. A hand width is about 4.3 inches or 11 cm.* is|strong=\"H2088\"* a|strong=\"H3068\"* cubit and|strong=\"H4196\"* a|strong=\"H3068\"* hand|strong=\"H2948\"* width|strong=\"H7341\"*): the|strong=\"H5439\"* bottom|strong=\"H2436\"* shall|strong=\"H1366\"* be|strong=\"H8193\"* a|strong=\"H3068\"* cubit, and|strong=\"H4196\"* the|strong=\"H5439\"* width|strong=\"H7341\"* a|strong=\"H3068\"* cubit, and|strong=\"H4196\"* its|strong=\"H5439\"* border|strong=\"H1366\"* around|strong=\"H5439\"* its|strong=\"H5439\"* edge|strong=\"H8193\"* a|strong=\"H3068\"* span|strong=\"H2239\"*;+ 43:13 A span is the length from the tip of a man’s thumb to the tip of his little finger when his hand is stretched out (about half a cubit, or 9 inches, or 22.8 cm.)* and|strong=\"H4196\"* this|strong=\"H2088\"* shall|strong=\"H1366\"* be|strong=\"H8193\"* the|strong=\"H5439\"* base|strong=\"H2436\"* of|strong=\"H1366\"* the|strong=\"H5439\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 14, + "text": "From|strong=\"H5704\"* the|strong=\"H5704\"* bottom|strong=\"H2436\"* on|strong=\"H7341\"* the|strong=\"H5704\"* ground to|strong=\"H5704\"* the|strong=\"H5704\"* lower|strong=\"H8481\"* ledge|strong=\"H5835\"* shall|strong=\"H8147\"* be two|strong=\"H8147\"* cubits, and|strong=\"H1419\"* the|strong=\"H5704\"* width|strong=\"H7341\"* one|strong=\"H6996\"* cubit; and|strong=\"H1419\"* from|strong=\"H5704\"* the|strong=\"H5704\"* lesser|strong=\"H6996\"* ledge|strong=\"H5835\"* to|strong=\"H5704\"* the|strong=\"H5704\"* greater|strong=\"H1419\"* ledge|strong=\"H5835\"* shall|strong=\"H8147\"* be four cubits, and|strong=\"H1419\"* the|strong=\"H5704\"* width|strong=\"H7341\"* a|strong=\"H3068\"* cubit." + }, + { + "verseNum": 15, + "text": "The|strong=\"H4605\"* upper altar shall be|strong=\"H7161\"* four cubits; and|strong=\"H4605\"* from the|strong=\"H4605\"* altar hearth and|strong=\"H4605\"* upward|strong=\"H4605\"* there shall be|strong=\"H7161\"* four horns|strong=\"H7161\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H8147\"* altar hearth shall|strong=\"H8147\"* be twelve|strong=\"H8147\"* cubits long by|strong=\"H8147\"* twelve|strong=\"H8147\"* wide|strong=\"H7341\"*, square|strong=\"H7251\"* in|strong=\"H8147\"* its four sides|strong=\"H7253\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H5439\"* ledge|strong=\"H5835\"* shall|strong=\"H1366\"* be fourteen|strong=\"H6240\"* cubits long by|strong=\"H4609\"* fourteen|strong=\"H6240\"* wide|strong=\"H7341\"* in its|strong=\"H5439\"* four sides|strong=\"H5439\"*; and|strong=\"H6437\"* the|strong=\"H5439\"* border|strong=\"H1366\"* about|strong=\"H5439\"* it|strong=\"H5439\"* shall|strong=\"H1366\"* be half|strong=\"H2677\"* a|strong=\"H3068\"* cubit; and|strong=\"H6437\"* its|strong=\"H5439\"* bottom|strong=\"H2436\"* shall|strong=\"H1366\"* be a|strong=\"H3068\"* cubit around|strong=\"H5439\"*; and|strong=\"H6437\"* its|strong=\"H5439\"* steps|strong=\"H4609\"* shall|strong=\"H1366\"* look|strong=\"H6437\"* toward|strong=\"H6437\"* the|strong=\"H5439\"* east|strong=\"H6921\"*.”" + }, + { + "verseNum": 18, + "text": "He|strong=\"H3117\"* said to|strong=\"H5927\"* me|strong=\"H5921\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘These|strong=\"H6213\"* are|strong=\"H3117\"* the|strong=\"H5921\"* ordinances|strong=\"H2708\"* of|strong=\"H1121\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* when|strong=\"H3117\"* they|strong=\"H3117\"* make|strong=\"H6213\"* it|strong=\"H5921\"*, to|strong=\"H5927\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H1121\"* to|strong=\"H5927\"* sprinkle|strong=\"H2236\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H5414\"* shall|strong=\"H3548\"* give|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5002\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* are|strong=\"H1992\"* of|strong=\"H1121\"* the|strong=\"H5002\"* offspring|strong=\"H2233\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*, who|strong=\"H3548\"* are|strong=\"H1992\"* near|strong=\"H7138\"* to|strong=\"H5414\"* me|strong=\"H5414\"*, to|strong=\"H5414\"* minister|strong=\"H8334\"* to|strong=\"H5414\"* me|strong=\"H5414\"*,’ says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, ‘a|strong=\"H3068\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* for|strong=\"H1121\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H5414\"* shall|strong=\"H1366\"* take|strong=\"H3947\"* of|strong=\"H1366\"* its|strong=\"H5414\"* blood|strong=\"H1818\"* and|strong=\"H1818\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* its|strong=\"H5414\"* four horns|strong=\"H7161\"*, and|strong=\"H1818\"* on|strong=\"H5921\"* the|strong=\"H5921\"* four corners|strong=\"H6438\"* of|strong=\"H1366\"* the|strong=\"H5921\"* ledge|strong=\"H5835\"*, and|strong=\"H1818\"* on|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* all|strong=\"H5439\"* around|strong=\"H5439\"*. You|strong=\"H5414\"* shall|strong=\"H1366\"* cleanse|strong=\"H2398\"* it|strong=\"H5414\"* and|strong=\"H1818\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* it|strong=\"H5414\"* that|strong=\"H5414\"* way|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"H3947\"* shall|strong=\"H1004\"* also take|strong=\"H3947\"* the|strong=\"H3947\"* bull|strong=\"H6499\"* of|strong=\"H1004\"* the|strong=\"H3947\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, and|strong=\"H1004\"* it|strong=\"H3947\"* shall|strong=\"H1004\"* be|strong=\"H1004\"* burned|strong=\"H8313\"* in|strong=\"H1004\"* the|strong=\"H3947\"* appointed|strong=\"H4662\"* place|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H3947\"* house|strong=\"H1004\"*, outside|strong=\"H2351\"* of|strong=\"H1004\"* the|strong=\"H3947\"* sanctuary|strong=\"H4720\"*." + }, + { + "verseNum": 22, + "text": "“On|strong=\"H3117\"* the|strong=\"H3117\"* second|strong=\"H8145\"* day|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* male|strong=\"H8163\"* goat|strong=\"H5795\"* without|strong=\"H8549\"* defect|strong=\"H8549\"* for|strong=\"H4196\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*; and|strong=\"H3117\"* they|strong=\"H3117\"* shall|strong=\"H3117\"* cleanse|strong=\"H2398\"* the|strong=\"H3117\"* altar|strong=\"H4196\"*, as|strong=\"H3117\"* they|strong=\"H3117\"* cleansed|strong=\"H2398\"* it|strong=\"H7126\"* with|strong=\"H3117\"* the|strong=\"H3117\"* bull|strong=\"H6499\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"H3615\"* you|strong=\"H4480\"* have|strong=\"H1121\"* finished|strong=\"H3615\"* cleansing|strong=\"H2398\"* it|strong=\"H7126\"*, you|strong=\"H4480\"* shall|strong=\"H1121\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* without|strong=\"H8549\"* defect|strong=\"H8549\"* and|strong=\"H1121\"* a|strong=\"H3068\"* ram out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* flock|strong=\"H6629\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H6440\"* shall|strong=\"H3548\"* bring|strong=\"H7126\"* them|strong=\"H5921\"* near|strong=\"H7126\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* shall|strong=\"H3548\"* cast|strong=\"H7993\"* salt|strong=\"H4417\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* shall|strong=\"H3548\"* offer|strong=\"H7126\"* them|strong=\"H5921\"* up|strong=\"H5927\"* for|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 25, + "text": "“Seven|strong=\"H7651\"* days|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H1121\"* prepare|strong=\"H6213\"* every|strong=\"H3117\"* day|strong=\"H3117\"* a|strong=\"H3068\"* goat|strong=\"H8163\"* for|strong=\"H6213\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*. They|strong=\"H3117\"* shall|strong=\"H1121\"* also|strong=\"H6213\"* prepare|strong=\"H6213\"* a|strong=\"H3068\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* and|strong=\"H1121\"* a|strong=\"H3068\"* ram out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H6213\"* flock|strong=\"H6629\"*, without|strong=\"H8549\"* defect|strong=\"H8549\"*." + }, + { + "verseNum": 26, + "text": "Seven|strong=\"H7651\"* days|strong=\"H3117\"* shall|strong=\"H3117\"* they|strong=\"H3117\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H3027\"* the|strong=\"H3117\"* altar|strong=\"H4196\"* and|strong=\"H3117\"* purify|strong=\"H2891\"* it|strong=\"H3117\"*. So|strong=\"H3027\"* shall|strong=\"H3117\"* they|strong=\"H3117\"* consecrate|strong=\"H4390\"* it|strong=\"H3117\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"H1961\"* they|strong=\"H3117\"* have|strong=\"H1961\"* accomplished|strong=\"H3615\"* the|strong=\"H5002\"* days|strong=\"H3117\"*, it|strong=\"H5921\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* that|strong=\"H3117\"* on|strong=\"H5921\"* the|strong=\"H5002\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* and|strong=\"H3117\"* onward|strong=\"H1973\"*, the|strong=\"H5002\"* priests|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H6213\"* your|strong=\"H5921\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* on|strong=\"H5921\"* the|strong=\"H5002\"* altar|strong=\"H4196\"* and|strong=\"H3117\"* your|strong=\"H5921\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*. Then|strong=\"H1961\"* I|strong=\"H3117\"* will|strong=\"H1961\"* accept|strong=\"H7521\"* you|strong=\"H5921\"*,’ says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H7725\"* he|strong=\"H1931\"* brought|strong=\"H7725\"* me|strong=\"H7725\"* back|strong=\"H7725\"* by|strong=\"H1870\"* the|strong=\"H7725\"* way|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H7725\"* outer|strong=\"H2435\"* gate|strong=\"H8179\"* of|strong=\"H1870\"* the|strong=\"H7725\"* sanctuary|strong=\"H4720\"*, which|strong=\"H1931\"* looks toward|strong=\"H1870\"* the|strong=\"H7725\"* east|strong=\"H6921\"*; and|strong=\"H7725\"* it|strong=\"H1931\"* was|strong=\"H1931\"* shut|strong=\"H5462\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* me|strong=\"H1961\"*, “This|strong=\"H2088\"* gate|strong=\"H8179\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* shut|strong=\"H5462\"*. It|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* opened|strong=\"H6605\"*, no|strong=\"H3808\"* man|strong=\"H2088\"* shall|strong=\"H3068\"* enter in|strong=\"H3478\"* by|strong=\"H3068\"* it|strong=\"H3588\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, has|strong=\"H3068\"* entered in|strong=\"H3478\"* by|strong=\"H3068\"* it|strong=\"H3588\"*. Therefore|strong=\"H3588\"* it|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* shut|strong=\"H5462\"*." + }, + { + "verseNum": 3, + "text": "As|strong=\"H3068\"* for|strong=\"H6440\"* the|strong=\"H6440\"* prince|strong=\"H5387\"*, he|strong=\"H1931\"* shall|strong=\"H3068\"* sit|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H1931\"* as|strong=\"H3068\"* prince|strong=\"H5387\"* to|strong=\"H3318\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. He|strong=\"H1931\"* shall|strong=\"H3068\"* enter by|strong=\"H3068\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H3068\"* the|strong=\"H6440\"* porch of|strong=\"H3068\"* the|strong=\"H6440\"* gate|strong=\"H8179\"*, and|strong=\"H3068\"* shall|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H6440\"* same|strong=\"H1931\"* way|strong=\"H1870\"*.”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H2009\"* he|strong=\"H3068\"* brought|strong=\"H3068\"* me|strong=\"H6440\"* by|strong=\"H3068\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H1004\"* the|strong=\"H6440\"* north|strong=\"H6828\"* gate|strong=\"H8179\"* before|strong=\"H6440\"* the|strong=\"H6440\"* house|strong=\"H1004\"*; and|strong=\"H3068\"* I|strong=\"H2009\"* looked|strong=\"H7200\"*, and|strong=\"H3068\"* behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* filled|strong=\"H4390\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; so|strong=\"H7200\"* I|strong=\"H2009\"* fell|strong=\"H5307\"* on|strong=\"H1870\"* my|strong=\"H3068\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7200\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, mark|strong=\"H7760\"* well|strong=\"H5869\"*, and|strong=\"H1121\"* see|strong=\"H7200\"* with|strong=\"H1004\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, and|strong=\"H1121\"* hear|strong=\"H8085\"* with|strong=\"H1004\"* your|strong=\"H3068\"* ears all|strong=\"H3605\"* that|strong=\"H7200\"* I|strong=\"H7760\"* tell|strong=\"H1696\"* you|strong=\"H3605\"* concerning|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ordinances|strong=\"H2708\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H1121\"* all|strong=\"H3605\"* its|strong=\"H3605\"* laws|strong=\"H8451\"*; and|strong=\"H1121\"* mark|strong=\"H7760\"* well|strong=\"H5869\"* the|strong=\"H3605\"* entrance|strong=\"H3996\"* of|strong=\"H1121\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, with|strong=\"H1004\"* every|strong=\"H3605\"* exit of|strong=\"H1121\"* the|strong=\"H3605\"* sanctuary|strong=\"H4720\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3605\"* shall|strong=\"H3478\"* tell|strong=\"H3605\"* the|strong=\"H3605\"* rebellious|strong=\"H4805\"*, even|strong=\"H3541\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, ‘The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “You|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, let that|strong=\"H3605\"* be|strong=\"H3478\"* enough|strong=\"H7227\"* of|strong=\"H1004\"* all|strong=\"H3605\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"*," + }, + { + "verseNum": 7, + "text": "in|strong=\"H1004\"* that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H1961\"* brought|strong=\"H7126\"* in|strong=\"H1004\"* foreigners|strong=\"H1121\"*, uncircumcised|strong=\"H6189\"* in|strong=\"H1004\"* heart|strong=\"H3820\"* and|strong=\"H1121\"* uncircumcised|strong=\"H6189\"* in|strong=\"H1004\"* flesh|strong=\"H1320\"*, to|strong=\"H1961\"* be|strong=\"H1961\"* in|strong=\"H1004\"* my|strong=\"H3605\"* sanctuary|strong=\"H4720\"*, to|strong=\"H1961\"* profane|strong=\"H2490\"* it|strong=\"H7126\"*, even my|strong=\"H3605\"* house|strong=\"H1004\"*, when|strong=\"H1961\"* you|strong=\"H3605\"* offer|strong=\"H7126\"* my|strong=\"H3605\"* bread|strong=\"H3899\"*, the|strong=\"H3605\"* fat|strong=\"H2459\"* and|strong=\"H1121\"* the|strong=\"H3605\"* blood|strong=\"H1818\"*; and|strong=\"H1121\"* they|strong=\"H3605\"* have|strong=\"H1961\"* broken|strong=\"H6565\"* my|strong=\"H3605\"* covenant|strong=\"H1285\"*, to|strong=\"H1961\"* add to|strong=\"H1961\"* all|strong=\"H3605\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H7760\"* have|strong=\"H3808\"* not|strong=\"H3808\"* performed|strong=\"H7760\"* the|strong=\"H8104\"* duty|strong=\"H4931\"* of|strong=\"H6944\"* my|strong=\"H8104\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*; but|strong=\"H3808\"* you|strong=\"H7760\"* have|strong=\"H3808\"* set|strong=\"H7760\"* performers of|strong=\"H6944\"* my|strong=\"H8104\"* duty|strong=\"H4931\"* in|strong=\"H3808\"* my|strong=\"H8104\"* sanctuary|strong=\"H6944\"* for|strong=\"H3808\"* yourselves.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “No|strong=\"H3808\"* foreigner|strong=\"H1121\"*, uncircumcised|strong=\"H6189\"* in|strong=\"H3478\"* heart|strong=\"H3820\"* and|strong=\"H1121\"* uncircumcised|strong=\"H6189\"* in|strong=\"H3478\"* flesh|strong=\"H1320\"*, shall|strong=\"H1121\"* enter into|strong=\"H8432\"* my|strong=\"H3605\"* sanctuary|strong=\"H4720\"*, of|strong=\"H1121\"* any|strong=\"H3605\"* foreigners|strong=\"H1121\"* who|strong=\"H3605\"* are|strong=\"H1121\"* among|strong=\"H8432\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 10, + "text": "“‘“But|strong=\"H3588\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* who|strong=\"H3478\"* went|strong=\"H3478\"* far|strong=\"H7368\"* from|strong=\"H5921\"* me|strong=\"H5921\"* when|strong=\"H3588\"* Israel|strong=\"H3478\"* went|strong=\"H3478\"* astray|strong=\"H8582\"*, who|strong=\"H3478\"* went|strong=\"H3478\"* astray|strong=\"H8582\"* from|strong=\"H5921\"* me|strong=\"H5921\"* after|strong=\"H5921\"* their|strong=\"H5375\"* idols|strong=\"H1544\"*, they|strong=\"H3588\"* will|strong=\"H3478\"* bear|strong=\"H5375\"* their|strong=\"H5375\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 11, + "text": "Yet|strong=\"H5975\"* they|strong=\"H1992\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* ministers|strong=\"H8334\"* in|strong=\"H1004\"* my|strong=\"H1961\"* sanctuary|strong=\"H4720\"*, having|strong=\"H1961\"* oversight|strong=\"H6486\"* at|strong=\"H1004\"* the|strong=\"H6440\"* gates|strong=\"H8179\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* ministering|strong=\"H8334\"* in|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"*. They|strong=\"H1992\"* shall|strong=\"H5971\"* kill|strong=\"H7819\"* the|strong=\"H6440\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H1004\"* the|strong=\"H6440\"* sacrifice|strong=\"H2077\"* for|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, and|strong=\"H1004\"* they|strong=\"H1992\"* shall|strong=\"H5971\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* them|strong=\"H1992\"* to|strong=\"H1961\"* minister|strong=\"H8334\"* to|strong=\"H1961\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 12, + "text": "Because|strong=\"H5921\"* they|strong=\"H3651\"* ministered|strong=\"H8334\"* to|strong=\"H3478\"* them|strong=\"H5921\"* before|strong=\"H6440\"* their|strong=\"H5375\"* idols|strong=\"H1544\"*, and|strong=\"H3478\"* became|strong=\"H1961\"* a|strong=\"H3068\"* stumbling|strong=\"H4383\"* block|strong=\"H4383\"* of|strong=\"H1004\"* iniquity|strong=\"H5771\"* to|strong=\"H3478\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, therefore|strong=\"H3651\"* I|strong=\"H5921\"* have|strong=\"H1961\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H5921\"* hand|strong=\"H3027\"* against|strong=\"H5921\"* them|strong=\"H5921\"*,” says|strong=\"H5002\"* the|strong=\"H6440\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “and|strong=\"H3478\"* they|strong=\"H3651\"* will|strong=\"H1961\"* bear|strong=\"H5375\"* their|strong=\"H5375\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* come|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H6213\"* me|strong=\"H5921\"*, to|strong=\"H6213\"* execute|strong=\"H6213\"* the|strong=\"H3605\"* office of|strong=\"H5921\"* priest|strong=\"H3547\"* to|strong=\"H6213\"* me|strong=\"H5921\"*, nor|strong=\"H3808\"* to|strong=\"H6213\"* come|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H6213\"* any|strong=\"H3605\"* of|strong=\"H5921\"* my|strong=\"H3605\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*, to|strong=\"H6213\"* the|strong=\"H3605\"* things|strong=\"H6944\"* that|strong=\"H3605\"* are|strong=\"H6213\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*; but|strong=\"H3808\"* they|strong=\"H3808\"* will|strong=\"H3808\"* bear|strong=\"H5375\"* their|strong=\"H3605\"* shame|strong=\"H3639\"* and|strong=\"H6213\"* their|strong=\"H3605\"* abominations|strong=\"H8441\"* which|strong=\"H3605\"* they|strong=\"H3808\"* have|strong=\"H3605\"* committed|strong=\"H6213\"*." + }, + { + "verseNum": 14, + "text": "Yet|strong=\"H3605\"* I|strong=\"H5414\"* will|strong=\"H1004\"* make|strong=\"H6213\"* them|strong=\"H5414\"* performers|strong=\"H6213\"* of|strong=\"H1004\"* the|strong=\"H3605\"* duty|strong=\"H4931\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, for|strong=\"H6213\"* all|strong=\"H3605\"* its|strong=\"H3605\"* service|strong=\"H5656\"* and|strong=\"H1004\"* for|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* will|strong=\"H1004\"* be|strong=\"H5414\"* done|strong=\"H6213\"* therein." + }, + { + "verseNum": 15, + "text": "“‘“But|strong=\"H1992\"* the|strong=\"H6440\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"*, the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*, who|strong=\"H3548\"* performed|strong=\"H8104\"* the|strong=\"H6440\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* my|strong=\"H8104\"* sanctuary|strong=\"H4720\"* when|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H3478\"* astray|strong=\"H8582\"* from|strong=\"H6440\"* me|strong=\"H6440\"*, shall|strong=\"H3548\"* come|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H3478\"* me|strong=\"H6440\"* to|strong=\"H3478\"* minister|strong=\"H8334\"* to|strong=\"H3478\"* me|strong=\"H6440\"*. They|strong=\"H1992\"* shall|strong=\"H3548\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* me|strong=\"H6440\"* to|strong=\"H3478\"* offer|strong=\"H7126\"* to|strong=\"H3478\"* me|strong=\"H6440\"* the|strong=\"H6440\"* fat|strong=\"H2459\"* and|strong=\"H1121\"* the|strong=\"H6440\"* blood|strong=\"H1818\"*,” says|strong=\"H5002\"* the|strong=\"H6440\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "“They|strong=\"H1992\"* shall enter into my|strong=\"H8104\"* sanctuary|strong=\"H4720\"*, and|strong=\"H7126\"* they|strong=\"H1992\"* shall come|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H8104\"* my|strong=\"H8104\"* table|strong=\"H7979\"*, to|strong=\"H8104\"* minister|strong=\"H8334\"* to|strong=\"H8104\"* me|strong=\"H8104\"*, and|strong=\"H7126\"* they|strong=\"H1992\"* shall keep|strong=\"H8104\"* my|strong=\"H8104\"* instruction." + }, + { + "verseNum": 17, + "text": "“‘“It|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* that|strong=\"H2691\"* when|strong=\"H1961\"* they|strong=\"H3808\"* enter|strong=\"H5927\"* in|strong=\"H5921\"* at|strong=\"H5921\"* the|strong=\"H5921\"* gates|strong=\"H8179\"* of|strong=\"H1004\"* the|strong=\"H5921\"* inner|strong=\"H6442\"* court|strong=\"H2691\"*, they|strong=\"H3808\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* clothed|strong=\"H3847\"* with|strong=\"H1004\"* linen|strong=\"H6593\"* garments. No|strong=\"H3808\"* wool|strong=\"H6785\"* shall|strong=\"H1004\"* come|strong=\"H5927\"* on|strong=\"H5921\"* them|strong=\"H5921\"* while|strong=\"H1961\"* they|strong=\"H3808\"* minister|strong=\"H8334\"* in|strong=\"H5921\"* the|strong=\"H5921\"* gates|strong=\"H8179\"* of|strong=\"H1004\"* the|strong=\"H5921\"* inner|strong=\"H6442\"* court|strong=\"H2691\"*, and|strong=\"H1004\"* within|strong=\"H1004\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"H3808\"* shall|strong=\"H3808\"* have|strong=\"H1961\"* linen|strong=\"H6593\"* turbans|strong=\"H6287\"* on|strong=\"H5921\"* their|strong=\"H5921\"* heads|strong=\"H7218\"*, and|strong=\"H7218\"* shall|strong=\"H3808\"* have|strong=\"H1961\"* linen|strong=\"H6593\"* trousers on|strong=\"H5921\"* their|strong=\"H5921\"* waists. They|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* clothe themselves|strong=\"H7218\"* with|strong=\"H5921\"* anything|strong=\"H3808\"* that|strong=\"H3808\"* makes them|strong=\"H5921\"* sweat|strong=\"H3154\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3318\"* they|strong=\"H1992\"* go|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3318\"* outer|strong=\"H2435\"* court|strong=\"H2691\"*, even|strong=\"H3808\"* into|strong=\"H3318\"* the|strong=\"H3318\"* outer|strong=\"H2435\"* court|strong=\"H2691\"* to|strong=\"H3318\"* the|strong=\"H3318\"* people|strong=\"H5971\"*, they|strong=\"H1992\"* shall|strong=\"H5971\"* put|strong=\"H3847\"* off|strong=\"H6584\"* their|strong=\"H1992\"* garments in|strong=\"H3847\"* which|strong=\"H1992\"* they|strong=\"H1992\"* minister|strong=\"H8334\"* and|strong=\"H5971\"* lay|strong=\"H3240\"* them|strong=\"H1992\"* in|strong=\"H3847\"* the|strong=\"H3318\"* holy|strong=\"H6944\"* rooms|strong=\"H3957\"*. They|strong=\"H1992\"* shall|strong=\"H5971\"* put|strong=\"H3847\"* on|strong=\"H3847\"* other garments, that|strong=\"H5971\"* they|strong=\"H1992\"* not|strong=\"H3808\"* sanctify|strong=\"H6942\"* the|strong=\"H3318\"* people|strong=\"H5971\"* with|strong=\"H3847\"* their|strong=\"H1992\"* garments." + }, + { + "verseNum": 20, + "text": "“‘“They|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* shave|strong=\"H1548\"* their|strong=\"H7971\"* heads|strong=\"H7218\"*, or|strong=\"H3808\"* allow their|strong=\"H7971\"* locks|strong=\"H6545\"* to|strong=\"H7971\"* grow|strong=\"H7971\"* long|strong=\"H7971\"*. They|strong=\"H3808\"* shall|strong=\"H3808\"* only|strong=\"H3697\"* cut|strong=\"H1548\"* off|strong=\"H1548\"* the|strong=\"H7971\"* hair|strong=\"H7218\"* of|strong=\"H7218\"* their|strong=\"H7971\"* heads|strong=\"H7218\"*." + }, + { + "verseNum": 21, + "text": "None|strong=\"H3808\"* of|strong=\"H3605\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* shall|strong=\"H3548\"* drink|strong=\"H8354\"* wine|strong=\"H3196\"* when they|strong=\"H3808\"* enter into the|strong=\"H3605\"* inner|strong=\"H6442\"* court|strong=\"H2691\"*." + }, + { + "verseNum": 22, + "text": "They|strong=\"H3588\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* take|strong=\"H3947\"* for|strong=\"H3588\"* their|strong=\"H3947\"* wives a|strong=\"H3068\"* widow, or|strong=\"H3808\"* her|strong=\"H3947\"* who|strong=\"H3548\"* is|strong=\"H3478\"* put|strong=\"H3947\"* away|strong=\"H3947\"*; but|strong=\"H3588\"* they|strong=\"H3588\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* virgins|strong=\"H1330\"* of|strong=\"H1004\"* the|strong=\"H3588\"* offspring|strong=\"H2233\"* of|strong=\"H1004\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, or|strong=\"H3808\"* a|strong=\"H3068\"* widow who|strong=\"H3548\"* is|strong=\"H3478\"* the|strong=\"H3588\"* widow of|strong=\"H1004\"* a|strong=\"H3068\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H5971\"* shall|strong=\"H5971\"* teach|strong=\"H3384\"* my|strong=\"H3045\"* people|strong=\"H5971\"* the|strong=\"H3045\"* difference between|strong=\"H3045\"* the|strong=\"H3045\"* holy|strong=\"H6944\"* and|strong=\"H5971\"* the|strong=\"H3045\"* common|strong=\"H2455\"*, and|strong=\"H5971\"* cause|strong=\"H5971\"* them|strong=\"H3384\"* to|strong=\"H5971\"* discern|strong=\"H3045\"* between|strong=\"H3045\"* the|strong=\"H3045\"* unclean|strong=\"H2931\"* and|strong=\"H5971\"* the|strong=\"H3045\"* clean|strong=\"H2889\"*." + }, + { + "verseNum": 24, + "text": "“‘“In|strong=\"H5921\"* a|strong=\"H3068\"* controversy|strong=\"H7379\"* they|strong=\"H1992\"* shall|strong=\"H8451\"* stand|strong=\"H5975\"* to|strong=\"H5921\"* judge|strong=\"H8199\"*. They|strong=\"H1992\"* shall|strong=\"H8451\"* judge|strong=\"H8199\"* it|strong=\"H5921\"* according|strong=\"H5921\"* to|strong=\"H5921\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*. They|strong=\"H1992\"* shall|strong=\"H8451\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* laws|strong=\"H8451\"* and|strong=\"H4941\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"* in|strong=\"H5921\"* all|strong=\"H3605\"* my|strong=\"H8104\"* appointed|strong=\"H4150\"* feasts|strong=\"H4150\"*. They|strong=\"H1992\"* shall|strong=\"H8451\"* make|strong=\"H4941\"* my|strong=\"H8104\"* Sabbaths|strong=\"H7676\"* holy|strong=\"H6942\"*." + }, + { + "verseNum": 25, + "text": "“‘“They|strong=\"H3588\"* shall|strong=\"H1121\"* go|strong=\"H1961\"* in|strong=\"H4191\"* to|strong=\"H4191\"* no|strong=\"H3808\"* dead|strong=\"H4191\"* person to|strong=\"H4191\"* defile|strong=\"H2930\"* themselves; but|strong=\"H3588\"* for|strong=\"H3588\"* father|strong=\"H1121\"*, or|strong=\"H3808\"* for|strong=\"H3588\"* mother, or|strong=\"H3808\"* for|strong=\"H3588\"* son|strong=\"H1121\"*, or|strong=\"H3808\"* for|strong=\"H3588\"* daughter|strong=\"H1323\"*, for|strong=\"H3588\"* brother, or|strong=\"H3808\"* for|strong=\"H3588\"* sister who|strong=\"H1121\"* has|strong=\"H1961\"* had|strong=\"H1961\"* no|strong=\"H3808\"* husband, they|strong=\"H3588\"* may|strong=\"H1961\"* defile|strong=\"H2930\"* themselves." + }, + { + "verseNum": 26, + "text": "After|strong=\"H3117\"* he|strong=\"H3117\"* is|strong=\"H3117\"* cleansed|strong=\"H2893\"*, they|strong=\"H3117\"* shall|strong=\"H3117\"* reckon|strong=\"H5608\"* to|strong=\"H3117\"* him|strong=\"H5608\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 27, + "text": "In|strong=\"H3117\"* the|strong=\"H5002\"* day|strong=\"H3117\"* that|strong=\"H3117\"* he|strong=\"H3117\"* goes into the|strong=\"H5002\"* sanctuary|strong=\"H6944\"*, into the|strong=\"H5002\"* inner|strong=\"H6442\"* court|strong=\"H2691\"*, to|strong=\"H3117\"* minister|strong=\"H8334\"* in|strong=\"H3117\"* the|strong=\"H5002\"* sanctuary|strong=\"H6944\"*, he|strong=\"H3117\"* shall|strong=\"H3117\"* offer|strong=\"H7126\"* his|strong=\"H7126\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 28, + "text": "“‘They|strong=\"H3808\"* shall|strong=\"H3478\"* have|strong=\"H1961\"* an|strong=\"H1961\"* inheritance|strong=\"H5159\"*: I|strong=\"H5414\"* am|strong=\"H1961\"* their|strong=\"H5414\"* inheritance|strong=\"H5159\"*; and|strong=\"H3478\"* you|strong=\"H5414\"* shall|strong=\"H3478\"* give|strong=\"H5414\"* them|strong=\"H5414\"* no|strong=\"H3808\"* possession|strong=\"H5159\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*. I|strong=\"H5414\"* am|strong=\"H1961\"* their|strong=\"H5414\"* possession|strong=\"H5159\"*." + }, + { + "verseNum": 29, + "text": "They|strong=\"H1992\"* shall|strong=\"H3478\"* eat the|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* trespass offering|strong=\"H4503\"*; and|strong=\"H3478\"* every|strong=\"H3605\"* devoted|strong=\"H2764\"* thing|strong=\"H2764\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* theirs|strong=\"H1992\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H3605\"* first|strong=\"H7225\"* of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* first|strong=\"H7225\"* fruits|strong=\"H1061\"* of|strong=\"H1004\"* every|strong=\"H3605\"* thing|strong=\"H3605\"*, and|strong=\"H1004\"* every|strong=\"H3605\"* offering|strong=\"H8641\"* of|strong=\"H1004\"* everything|strong=\"H3605\"*, of|strong=\"H1004\"* all|strong=\"H3605\"* your|strong=\"H3605\"* offerings|strong=\"H8641\"*, shall|strong=\"H3548\"* be|strong=\"H1961\"* for|strong=\"H1004\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*. You|strong=\"H5414\"* shall|strong=\"H3548\"* also give|strong=\"H5414\"* to|strong=\"H1961\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* the|strong=\"H3605\"* first|strong=\"H7225\"* of|strong=\"H1004\"* your|strong=\"H3605\"* dough|strong=\"H6182\"*, to|strong=\"H1961\"* cause|strong=\"H5414\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"* to|strong=\"H1961\"* rest|strong=\"H5117\"* on|strong=\"H5117\"* your|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H3605\"* priests|strong=\"H3548\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* eat of|strong=\"H4480\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* dies|strong=\"H5038\"* of|strong=\"H4480\"* itself|strong=\"H5038\"* or|strong=\"H3808\"* is|strong=\"H3605\"* torn|strong=\"H2966\"*, whether|strong=\"H4480\"* it|strong=\"H5038\"* is|strong=\"H3605\"* bird|strong=\"H5775\"* or|strong=\"H3808\"* animal|strong=\"H2966\"*." + } + ] + }, + { + "chapterNum": 45, + "verses": [ + { + "verseNum": 1, + "text": "“‘“Moreover, when|strong=\"H3068\"* you|strong=\"H3605\"* divide|strong=\"H5307\"* by|strong=\"H3068\"* lot|strong=\"H5307\"* the|strong=\"H3605\"* land|strong=\"H5159\"* for|strong=\"H3068\"* inheritance|strong=\"H5159\"*, you|strong=\"H3605\"* shall|strong=\"H3068\"* offer|strong=\"H7311\"* an|strong=\"H4480\"* offering|strong=\"H8641\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, a|strong=\"H3068\"* holy|strong=\"H6944\"* portion|strong=\"H6944\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land|strong=\"H5159\"*. The|strong=\"H3605\"* length shall|strong=\"H3068\"* be|strong=\"H3068\"* the|strong=\"H3605\"* length of|strong=\"H3068\"* twenty-five|strong=\"H6242\"* thousand reeds, and|strong=\"H3068\"* the|strong=\"H3605\"* width|strong=\"H7341\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* ten|strong=\"H6235\"* thousand. It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* holy|strong=\"H6944\"* in|strong=\"H3068\"* all|strong=\"H3605\"* its|strong=\"H3605\"* border|strong=\"H1366\"* all|strong=\"H3605\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 2, + "text": "Of|strong=\"H6944\"* this|strong=\"H2088\"* there|strong=\"H1961\"* shall|strong=\"H2088\"* be|strong=\"H1961\"* a|strong=\"H3068\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* by|strong=\"H1961\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* square|strong=\"H7251\"* for|strong=\"H1961\"* the|strong=\"H5439\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*, and|strong=\"H3967\"* fifty|strong=\"H2572\"* cubits|strong=\"H2568\"*+ 45:2 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* for|strong=\"H1961\"* its|strong=\"H5439\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 3, + "text": "Of|strong=\"H4480\"* this|strong=\"H2063\"* measure|strong=\"H4058\"* you|strong=\"H4480\"* shall|strong=\"H2063\"* measure|strong=\"H4058\"* a|strong=\"H3068\"* length of|strong=\"H4480\"* twenty-five|strong=\"H6242\"* thousand, and|strong=\"H6242\"* a|strong=\"H3068\"* width|strong=\"H7341\"* of|strong=\"H4480\"* ten|strong=\"H6235\"* thousand. In|strong=\"H6235\"* it|strong=\"H1961\"* shall|strong=\"H2063\"* be|strong=\"H1961\"* the|strong=\"H4480\"* sanctuary|strong=\"H6944\"*, which|strong=\"H4720\"* is|strong=\"H1961\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 4, + "text": "It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* portion|strong=\"H6944\"* of|strong=\"H1004\"* the|strong=\"H3068\"* land|strong=\"H4725\"*; it|strong=\"H1931\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* for|strong=\"H3068\"* the|strong=\"H3068\"* priests|strong=\"H3548\"*, the|strong=\"H3068\"* ministers|strong=\"H8334\"* of|strong=\"H1004\"* the|strong=\"H3068\"* sanctuary|strong=\"H6944\"*, who|strong=\"H1931\"* come|strong=\"H1961\"* near|strong=\"H7131\"* to|strong=\"H3068\"* minister|strong=\"H8334\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. It|strong=\"H1931\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* a|strong=\"H3068\"* place|strong=\"H4725\"* for|strong=\"H3068\"* their|strong=\"H3068\"* houses|strong=\"H1004\"* and|strong=\"H3068\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* place|strong=\"H4725\"* for|strong=\"H3068\"* the|strong=\"H3068\"* sanctuary|strong=\"H6944\"*." + }, + { + "verseNum": 5, + "text": "Twenty-five|strong=\"H6242\"* thousand cubits|strong=\"H2568\"* in|strong=\"H1004\"* length and|strong=\"H6242\"* ten|strong=\"H6235\"* thousand in|strong=\"H1004\"* width|strong=\"H7341\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* for|strong=\"H1004\"* the|strong=\"H1961\"* Levites|strong=\"H3881\"*, the|strong=\"H1961\"* ministers|strong=\"H8334\"* of|strong=\"H1004\"* the|strong=\"H1961\"* house|strong=\"H1004\"*, as|strong=\"H1961\"* a|strong=\"H3068\"* possession|strong=\"H1992\"* for|strong=\"H1004\"* themselves|strong=\"H1992\"*, for|strong=\"H1004\"* twenty|strong=\"H6242\"* rooms|strong=\"H3957\"*." + }, + { + "verseNum": 6, + "text": "“‘“You|strong=\"H5414\"* shall|strong=\"H3478\"* appoint|strong=\"H5414\"* the|strong=\"H3605\"* possession of|strong=\"H1004\"* the|strong=\"H3605\"* city|strong=\"H5892\"* five|strong=\"H2568\"* thousand cubits|strong=\"H2568\"* wide|strong=\"H7341\"* and|strong=\"H3478\"* twenty-five|strong=\"H6242\"* thousand long|strong=\"H3605\"*, side|strong=\"H5980\"* by|strong=\"H3478\"* side|strong=\"H5980\"* with|strong=\"H1004\"* the|strong=\"H3605\"* offering|strong=\"H8641\"* of|strong=\"H1004\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* portion|strong=\"H6944\"*. It|strong=\"H5414\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* for|strong=\"H1004\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "“‘“What|strong=\"H2088\"* is|strong=\"H2088\"* for|strong=\"H6440\"* the|strong=\"H6440\"* prince|strong=\"H5387\"* shall|strong=\"H5892\"* be|strong=\"H5892\"* on|strong=\"H5892\"* the|strong=\"H6440\"* one|strong=\"H2088\"* side|strong=\"H6285\"* and|strong=\"H5892\"* on|strong=\"H5892\"* the|strong=\"H6440\"* other|strong=\"H2088\"* side|strong=\"H6285\"* of|strong=\"H5892\"* the|strong=\"H6440\"* holy|strong=\"H6944\"* allotment|strong=\"H8641\"* and|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H6440\"* possession of|strong=\"H5892\"* the|strong=\"H6440\"* city|strong=\"H5892\"*, in|strong=\"H5892\"* front|strong=\"H6440\"* of|strong=\"H5892\"* the|strong=\"H6440\"* holy|strong=\"H6944\"* allotment|strong=\"H8641\"* and|strong=\"H5892\"* in|strong=\"H5892\"* front|strong=\"H6440\"* of|strong=\"H5892\"* the|strong=\"H6440\"* possession of|strong=\"H5892\"* the|strong=\"H6440\"* city|strong=\"H5892\"*, on|strong=\"H5892\"* the|strong=\"H6440\"* west|strong=\"H3220\"* side|strong=\"H6285\"* westward|strong=\"H3220\"*, and|strong=\"H5892\"* on|strong=\"H5892\"* the|strong=\"H6440\"* east|strong=\"H6921\"* side|strong=\"H6285\"* eastward|strong=\"H6924\"*, and|strong=\"H5892\"* in|strong=\"H5892\"* length corresponding|strong=\"H5980\"* to|strong=\"H6440\"* one|strong=\"H2088\"* of|strong=\"H5892\"* the|strong=\"H6440\"* portions|strong=\"H2506\"*, from|strong=\"H6440\"* the|strong=\"H6440\"* west|strong=\"H3220\"* border|strong=\"H1366\"* to|strong=\"H6440\"* the|strong=\"H6440\"* east|strong=\"H6921\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 8, + "text": "In|strong=\"H3478\"* the|strong=\"H5414\"* land it|strong=\"H5414\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* to|strong=\"H3478\"* him|strong=\"H5414\"* for|strong=\"H1004\"* a|strong=\"H3068\"* possession in|strong=\"H3478\"* Israel|strong=\"H3478\"*. My|strong=\"H5414\"* princes|strong=\"H5387\"* shall|strong=\"H5971\"* no|strong=\"H3808\"* more|strong=\"H5750\"* oppress|strong=\"H3238\"* my|strong=\"H5414\"* people|strong=\"H5971\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* shall|strong=\"H5971\"* give|strong=\"H5414\"* the|strong=\"H5414\"* land to|strong=\"H3478\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* according to|strong=\"H3478\"* their|strong=\"H5414\"* tribes|strong=\"H7626\"*.”" + }, + { + "verseNum": 9, + "text": "“‘The|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*: “Enough|strong=\"H7227\"*, you|strong=\"H5921\"* princes|strong=\"H5387\"* of|strong=\"H5971\"* Israel|strong=\"H3478\"*! Remove|strong=\"H5493\"* violence|strong=\"H2555\"* and|strong=\"H3478\"* plunder, and|strong=\"H3478\"* execute|strong=\"H6213\"* justice|strong=\"H4941\"* and|strong=\"H3478\"* righteousness|strong=\"H6666\"*! Stop|strong=\"H5493\"* dispossessing my|strong=\"H5921\"* people|strong=\"H5971\"*!” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "“You|strong=\"H1961\"* shall|strong=\"H6664\"* have|strong=\"H1961\"* just|strong=\"H6664\"* balances|strong=\"H3976\"*, a|strong=\"H3068\"* just|strong=\"H6664\"* ephah,+ 45:10 1 ephah is about 22 liters or about 2/3 of a bushel* and|strong=\"H6664\"* a|strong=\"H3068\"* just|strong=\"H6664\"* bath|strong=\"H1324\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5375\"* ephah and|strong=\"H1961\"* the|strong=\"H5375\"* bath|strong=\"H1324\"* shall|strong=\"H2563\"* be|strong=\"H1961\"* of|strong=\"H4643\"* one|strong=\"H1961\"* measure|strong=\"H4971\"*, that|strong=\"H1961\"* the|strong=\"H5375\"* bath|strong=\"H1324\"* may|strong=\"H1961\"* contain|strong=\"H5375\"* one|strong=\"H1961\"* tenth|strong=\"H6224\"* of|strong=\"H4643\"* a|strong=\"H3068\"* homer|strong=\"H2563\"*,+ 45:11 1 homer is about 220 liters or 6 bushels* and|strong=\"H1961\"* the|strong=\"H5375\"* ephah one|strong=\"H1961\"* tenth|strong=\"H6224\"* of|strong=\"H4643\"* a|strong=\"H3068\"* homer|strong=\"H2563\"*. Its|strong=\"H1961\"* measure|strong=\"H4971\"* shall|strong=\"H2563\"* be|strong=\"H1961\"* the|strong=\"H5375\"* same as|strong=\"H1961\"* the|strong=\"H5375\"* homer|strong=\"H2563\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1961\"* shekel|strong=\"H8255\"*+ 45:12 A shekel is about 10 grams or about 0.35 ounces.* shall be|strong=\"H1961\"* twenty|strong=\"H6242\"* gerahs|strong=\"H1626\"*.+ 45:12 a gerah is about 0.5 grams or about 7.7 grains* Twenty|strong=\"H6242\"* shekels|strong=\"H8255\"* plus twenty-five|strong=\"H6242\"* shekels|strong=\"H8255\"* plus fifteen|strong=\"H2568\"* shekels|strong=\"H8255\"* shall be|strong=\"H1961\"* your|strong=\"H1961\"* mina.+ 45:12 A mina is about 600 grams or 1.3 U. S. pounds.*" + }, + { + "verseNum": 13, + "text": "“‘“This|strong=\"H2063\"* is the|strong=\"H7311\"* offering|strong=\"H8641\"* that|strong=\"H2063\"* you shall|strong=\"H2063\"* offer|strong=\"H7311\"*: the|strong=\"H7311\"* sixth|strong=\"H8345\"* part|strong=\"H8345\"* of|strong=\"H2563\"* an|strong=\"H7311\"* ephah from a|strong=\"H3068\"* homer|strong=\"H2563\"* of|strong=\"H2563\"* wheat|strong=\"H2406\"*, and|strong=\"H7311\"* you shall|strong=\"H2063\"* give|strong=\"H7311\"* the|strong=\"H7311\"* sixth|strong=\"H8345\"* part|strong=\"H8345\"* of|strong=\"H2563\"* an|strong=\"H7311\"* ephah from a|strong=\"H3068\"* homer|strong=\"H2563\"* of|strong=\"H2563\"* barley|strong=\"H8184\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H2706\"* the|strong=\"H3588\"* set portion|strong=\"H2706\"* of|strong=\"H4480\"* oil|strong=\"H8081\"*, of|strong=\"H4480\"* the|strong=\"H3588\"* bath|strong=\"H1324\"* of|strong=\"H4480\"* oil|strong=\"H8081\"*, one|strong=\"H4480\"* tenth|strong=\"H4643\"* of|strong=\"H4480\"* a|strong=\"H3068\"* bath|strong=\"H1324\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H3588\"* cor|strong=\"H3734\"*, which|strong=\"H3588\"* is|strong=\"H8081\"* ten|strong=\"H6235\"* baths|strong=\"H1324\"*, even|strong=\"H3588\"* a|strong=\"H3068\"* homer|strong=\"H2563\"* (for|strong=\"H3588\"* ten|strong=\"H6235\"* baths|strong=\"H1324\"* are|strong=\"H6235\"* a|strong=\"H3068\"* homer|strong=\"H2563\"*),+ 45:14 1 cor is the same as 1 homer in volume, and is about 211 liters, 55.9 gallons, or 6 bushels. 1 bath is about 21.1 liters, 5.59 gallons, or 2.4 pecks.*" + }, + { + "verseNum": 15, + "text": "and|strong=\"H3967\"* one|strong=\"H4480\"* lamb|strong=\"H7716\"* of|strong=\"H4480\"* the|strong=\"H5002\"* flock|strong=\"H6629\"* out|strong=\"H4480\"* of|strong=\"H4480\"* two|strong=\"H4480\"* hundred|strong=\"H3967\"*, from|strong=\"H4480\"* the|strong=\"H5002\"* well-watered pastures|strong=\"H4945\"* of|strong=\"H4480\"* Israel|strong=\"H3478\"*—for|strong=\"H5921\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, for|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, and|strong=\"H3967\"* for|strong=\"H5921\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, to|strong=\"H3478\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* them|strong=\"H5921\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "“All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H5971\"* the|strong=\"H3605\"* land shall|strong=\"H5971\"* give|strong=\"H1961\"* to|strong=\"H3478\"* this|strong=\"H2063\"* offering|strong=\"H8641\"* for|strong=\"H3478\"* the|strong=\"H3605\"* prince|strong=\"H5387\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 17, + "text": "It|strong=\"H1931\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* the|strong=\"H3605\"* prince|strong=\"H5387\"*’s part|strong=\"H1931\"* to|strong=\"H3478\"* give|strong=\"H6213\"* the|strong=\"H3605\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"*, the|strong=\"H3605\"* meal|strong=\"H4503\"* offerings|strong=\"H8002\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* drink|strong=\"H5262\"* offerings|strong=\"H8002\"*, in|strong=\"H5921\"* the|strong=\"H3605\"* feasts|strong=\"H4150\"*, and|strong=\"H3478\"* on|strong=\"H5921\"* the|strong=\"H3605\"* new|strong=\"H2320\"* moons|strong=\"H2320\"*, and|strong=\"H3478\"* on|strong=\"H5921\"* the|strong=\"H3605\"* Sabbaths|strong=\"H7676\"*, in|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* appointed|strong=\"H4150\"* feasts|strong=\"H4150\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*. He|strong=\"H1931\"* shall|strong=\"H3478\"* prepare|strong=\"H6213\"* the|strong=\"H3605\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, the|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, the|strong=\"H3605\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, to|strong=\"H3478\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 18, + "text": "“‘The|strong=\"H3947\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “In|strong=\"H1121\"* the|strong=\"H3947\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, on|strong=\"H3069\"* the|strong=\"H3947\"* first|strong=\"H7223\"* day|strong=\"H2320\"* of|strong=\"H1121\"* the|strong=\"H3947\"* month|strong=\"H2320\"*, you|strong=\"H3947\"* shall|strong=\"H1121\"* take|strong=\"H3947\"* a|strong=\"H3068\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*, and|strong=\"H1121\"* you|strong=\"H3947\"* shall|strong=\"H1121\"* cleanse|strong=\"H2398\"* the|strong=\"H3947\"* sanctuary|strong=\"H4720\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* of|strong=\"H1004\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H1004\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* and|strong=\"H1004\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H4201\"* posts|strong=\"H4201\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* on|strong=\"H5921\"* the|strong=\"H5921\"* four corners|strong=\"H6438\"* of|strong=\"H1004\"* the|strong=\"H5921\"* ledge|strong=\"H5835\"* of|strong=\"H1004\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H1004\"* on|strong=\"H5921\"* the|strong=\"H5921\"* posts|strong=\"H4201\"* of|strong=\"H1004\"* the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H1004\"* the|strong=\"H5921\"* inner|strong=\"H6442\"* court|strong=\"H2691\"*." + }, + { + "verseNum": 20, + "text": "So|strong=\"H3651\"* you|strong=\"H6213\"* shall|strong=\"H1004\"* do|strong=\"H6213\"* on|strong=\"H1004\"* the|strong=\"H6213\"* seventh|strong=\"H7651\"* day|strong=\"H2320\"* of|strong=\"H1004\"* the|strong=\"H6213\"* month|strong=\"H2320\"* for|strong=\"H6213\"* everyone who|strong=\"H6213\"* errs, and|strong=\"H1004\"* for|strong=\"H6213\"* him|strong=\"H6213\"* who|strong=\"H6213\"* is|strong=\"H3651\"* simple|strong=\"H6612\"*. So|strong=\"H3651\"* you|strong=\"H6213\"* shall|strong=\"H1004\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H6213\"* the|strong=\"H6213\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 21, + "text": "“‘“In|strong=\"H3117\"* the|strong=\"H3117\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, on|strong=\"H3117\"* the|strong=\"H3117\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* month|strong=\"H2320\"*, you|strong=\"H3117\"* shall|strong=\"H3117\"* have|strong=\"H1961\"* the|strong=\"H3117\"* Passover|strong=\"H6453\"*, a|strong=\"H3068\"* feast|strong=\"H2282\"* of|strong=\"H3117\"* seven|strong=\"H7620\"* days|strong=\"H3117\"*; unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* eaten." + }, + { + "verseNum": 22, + "text": "On|strong=\"H3117\"* that|strong=\"H5971\"* day|strong=\"H3117\"* the|strong=\"H3605\"* prince|strong=\"H5387\"* shall|strong=\"H5971\"* prepare|strong=\"H6213\"* for|strong=\"H6213\"* himself|strong=\"H1931\"* and|strong=\"H3117\"* for|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H3117\"* the|strong=\"H3605\"* land a|strong=\"H3068\"* bull|strong=\"H6499\"* for|strong=\"H6213\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H6213\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H6213\"* feast|strong=\"H2282\"* he|strong=\"H3117\"* shall|strong=\"H3068\"* prepare|strong=\"H6213\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, seven|strong=\"H7651\"* bulls|strong=\"H6499\"* and|strong=\"H3068\"* seven|strong=\"H7651\"* rams without|strong=\"H8549\"* defect|strong=\"H8549\"* daily|strong=\"H3117\"* the|strong=\"H6213\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*; and|strong=\"H3068\"* a|strong=\"H3068\"* male|strong=\"H8163\"* goat|strong=\"H5795\"* daily|strong=\"H3117\"* for|strong=\"H6213\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H6213\"* shall|strong=\"H6213\"* prepare|strong=\"H6213\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, an|strong=\"H6213\"* ephah+ 45:24 1 ephah is about 22 liters or about 2/3 of a bushel* for|strong=\"H6213\"* a|strong=\"H3068\"* bull|strong=\"H6499\"*, an|strong=\"H6213\"* ephah for|strong=\"H6213\"* a|strong=\"H3068\"* ram, and|strong=\"H6499\"* a|strong=\"H3068\"* hin|strong=\"H1969\"*+ 45:24 A hin is about 6.5 liters or 1.7 gallons.* of|strong=\"H1969\"* oil|strong=\"H8081\"* to|strong=\"H6213\"* an|strong=\"H6213\"* ephah." + }, + { + "verseNum": 25, + "text": "“‘“In|strong=\"H6213\"* the|strong=\"H6213\"* seventh|strong=\"H7651\"* month|strong=\"H2320\"*, on|strong=\"H3117\"* the|strong=\"H6213\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H6213\"* month|strong=\"H2320\"*, during|strong=\"H3117\"* the|strong=\"H6213\"* feast|strong=\"H2282\"*, he|strong=\"H3117\"* shall|strong=\"H3117\"* do|strong=\"H6213\"* like|strong=\"H6213\"* that|strong=\"H3117\"* for|strong=\"H6213\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*. He|strong=\"H3117\"* shall|strong=\"H3117\"* make|strong=\"H6213\"* the|strong=\"H6213\"* same provision for|strong=\"H6213\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, the|strong=\"H6213\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, the|strong=\"H6213\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H3117\"* the|strong=\"H6213\"* oil|strong=\"H8081\"*.”" + } + ] + }, + { + "chapterNum": 46, + "verses": [ + { + "verseNum": 1, + "text": "“‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “The|strong=\"H3069\"* gate|strong=\"H8179\"* of|strong=\"H3117\"* the|strong=\"H3069\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* that|strong=\"H3117\"* looks toward|strong=\"H6437\"* the|strong=\"H3069\"* east|strong=\"H6921\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* shut|strong=\"H5462\"* the|strong=\"H3069\"* six|strong=\"H8337\"* working|strong=\"H4639\"* days|strong=\"H3117\"*; but|strong=\"H1961\"* on|strong=\"H3117\"* the|strong=\"H3069\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"* it|strong=\"H1961\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* opened|strong=\"H6605\"*, and|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H3069\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3069\"* new|strong=\"H2320\"* moon|strong=\"H2320\"* it|strong=\"H1961\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* opened|strong=\"H6605\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5921\"* prince|strong=\"H5387\"* shall|strong=\"H3548\"* enter|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H5921\"* porch of|strong=\"H1870\"* the|strong=\"H5921\"* gate|strong=\"H8179\"* outside|strong=\"H2351\"*, and|strong=\"H3548\"* shall|strong=\"H3548\"* stand|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H5921\"* post|strong=\"H4201\"* of|strong=\"H1870\"* the|strong=\"H5921\"* gate|strong=\"H8179\"*; and|strong=\"H3548\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* shall|strong=\"H3548\"* prepare|strong=\"H6213\"* his|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H3548\"* his|strong=\"H5921\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, and|strong=\"H3548\"* he|strong=\"H5704\"* shall|strong=\"H3548\"* worship|strong=\"H7812\"* at|strong=\"H5921\"* the|strong=\"H5921\"* threshold|strong=\"H4670\"* of|strong=\"H1870\"* the|strong=\"H5921\"* gate|strong=\"H8179\"*. Then|strong=\"H3318\"* he|strong=\"H5704\"* shall|strong=\"H3548\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, but|strong=\"H3808\"* the|strong=\"H5921\"* gate|strong=\"H8179\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* be|strong=\"H3808\"* shut|strong=\"H5462\"* until|strong=\"H5704\"* the|strong=\"H5921\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H6440\"* people|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H6440\"* land|strong=\"H6440\"* shall|strong=\"H3068\"* worship|strong=\"H7812\"* at|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H3068\"* that|strong=\"H5971\"* gate|strong=\"H8179\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* on|strong=\"H3068\"* the|strong=\"H6440\"* Sabbaths|strong=\"H7676\"* and|strong=\"H3068\"* on|strong=\"H3068\"* the|strong=\"H6440\"* new|strong=\"H2320\"* moons|strong=\"H2320\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* that|strong=\"H3117\"* the|strong=\"H3068\"* prince|strong=\"H5387\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* on|strong=\"H3117\"* the|strong=\"H3068\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*, six|strong=\"H8337\"* lambs|strong=\"H3532\"* without|strong=\"H8549\"* defect|strong=\"H8549\"* and|strong=\"H3068\"* a|strong=\"H3068\"* ram without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"H3027\"* the|strong=\"H3027\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* shall|strong=\"H3027\"* be|strong=\"H3027\"* an|strong=\"H4503\"* ephah for|strong=\"H3027\"* the|strong=\"H3027\"* ram, and|strong=\"H3027\"* the|strong=\"H3027\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* for|strong=\"H3027\"* the|strong=\"H3027\"* lambs|strong=\"H3532\"* as|strong=\"H3532\"* he|strong=\"H3027\"* is|strong=\"H3027\"* able|strong=\"H3027\"* to|strong=\"H3027\"* give|strong=\"H4991\"*, and|strong=\"H3027\"* a|strong=\"H3068\"* hin|strong=\"H1969\"*+ 46:5 A hin is about 6.5 liters or 1.7 gallons.* of|strong=\"H3027\"* oil|strong=\"H8081\"* to|strong=\"H3027\"* an|strong=\"H4503\"* ephah.+ 46:5 1 ephah is about 22 liters or about 2/3 of a bushel*" + }, + { + "verseNum": 6, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H3117\"* new|strong=\"H2320\"* moon|strong=\"H2320\"* it|strong=\"H1961\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* a|strong=\"H3068\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*, six|strong=\"H8337\"* lambs|strong=\"H3532\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* ram. They|strong=\"H3117\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H6213\"* shall|strong=\"H3027\"* prepare|strong=\"H6213\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*: an|strong=\"H6213\"* ephah for|strong=\"H6213\"* the|strong=\"H6213\"* bull|strong=\"H6499\"*, and|strong=\"H3027\"* an|strong=\"H6213\"* ephah for|strong=\"H6213\"* the|strong=\"H6213\"* ram, and|strong=\"H3027\"* for|strong=\"H6213\"* the|strong=\"H6213\"* lambs|strong=\"H3532\"* according|strong=\"H3027\"* as|strong=\"H6213\"* he|strong=\"H6213\"* is|strong=\"H3027\"* able|strong=\"H3027\"*, and|strong=\"H3027\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* of|strong=\"H3027\"* oil|strong=\"H8081\"* to|strong=\"H6213\"* an|strong=\"H6213\"* ephah." + }, + { + "verseNum": 8, + "text": "When|strong=\"H3318\"* the|strong=\"H3318\"* prince|strong=\"H5387\"* enters, he|strong=\"H3318\"* shall|strong=\"H5387\"* go|strong=\"H3318\"* in|strong=\"H1870\"* by|strong=\"H1870\"* the|strong=\"H3318\"* way|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H3318\"* porch of|strong=\"H1870\"* the|strong=\"H3318\"* gate|strong=\"H8179\"*, and|strong=\"H1870\"* he|strong=\"H3318\"* shall|strong=\"H5387\"* go|strong=\"H3318\"* out|strong=\"H3318\"* by|strong=\"H1870\"* its|strong=\"H3318\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 9, + "text": "“‘“But|strong=\"H3588\"* when|strong=\"H3588\"* the|strong=\"H6440\"* people|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H6440\"* land|strong=\"H6440\"* come|strong=\"H3318\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H6440\"* appointed|strong=\"H4150\"* feasts|strong=\"H4150\"*, he|strong=\"H3588\"* who|strong=\"H5971\"* enters by|strong=\"H3068\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H3068\"* the|strong=\"H6440\"* north|strong=\"H6828\"* gate|strong=\"H8179\"* to|strong=\"H7725\"* worship|strong=\"H7812\"* shall|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* by|strong=\"H3068\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H3068\"* the|strong=\"H6440\"* south|strong=\"H5045\"* gate|strong=\"H8179\"*; and|strong=\"H3068\"* he|strong=\"H3588\"* who|strong=\"H5971\"* enters by|strong=\"H3068\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H3068\"* the|strong=\"H6440\"* south|strong=\"H5045\"* gate|strong=\"H8179\"* shall|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* by|strong=\"H3068\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H3068\"* the|strong=\"H6440\"* north|strong=\"H6828\"* gate|strong=\"H8179\"*. He|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* return|strong=\"H7725\"* by|strong=\"H3068\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H3068\"* the|strong=\"H6440\"* gate|strong=\"H8179\"* by|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3588\"* came|strong=\"H3318\"* in|strong=\"H3068\"*, but|strong=\"H3588\"* shall|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* straight|strong=\"H3318\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H8432\"* prince|strong=\"H5387\"* shall|strong=\"H5387\"* go|strong=\"H3318\"* in|strong=\"H8432\"* with|strong=\"H3318\"* them|strong=\"H3318\"* when|strong=\"H3318\"* they|strong=\"H3318\"* go|strong=\"H3318\"* in|strong=\"H8432\"*. When|strong=\"H3318\"* they|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, he|strong=\"H3318\"* shall|strong=\"H5387\"* go|strong=\"H3318\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 11, + "text": "“‘“In|strong=\"H3027\"* the|strong=\"H1961\"* feasts|strong=\"H4150\"* and|strong=\"H3027\"* in|strong=\"H3027\"* the|strong=\"H1961\"* appointed|strong=\"H4150\"* holidays, the|strong=\"H1961\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* shall|strong=\"H3027\"* be|strong=\"H1961\"* an|strong=\"H1961\"* ephah+ 46:11 1 ephah is about 22 liters or about 2/3 of a bushel* for|strong=\"H3027\"* a|strong=\"H3068\"* bull|strong=\"H6499\"*, and|strong=\"H3027\"* an|strong=\"H1961\"* ephah for|strong=\"H3027\"* a|strong=\"H3068\"* ram, and|strong=\"H3027\"* for|strong=\"H3027\"* the|strong=\"H1961\"* lambs|strong=\"H3532\"* as|strong=\"H1961\"* he|strong=\"H3027\"* is|strong=\"H3027\"* able|strong=\"H3027\"* to|strong=\"H1961\"* give|strong=\"H4991\"*, and|strong=\"H3027\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* of|strong=\"H3027\"* oil|strong=\"H8081\"* to|strong=\"H1961\"* an|strong=\"H1961\"* ephah." + }, + { + "verseNum": 12, + "text": "When|strong=\"H3588\"* the|strong=\"H3588\"* prince|strong=\"H5387\"* prepares a|strong=\"H3068\"* free|strong=\"H6605\"* will|strong=\"H3068\"* offering|strong=\"H5930\"*, a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* or|strong=\"H3117\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* as|strong=\"H3117\"* a|strong=\"H3068\"* free|strong=\"H6605\"* will|strong=\"H3068\"* offering|strong=\"H5930\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*, one|strong=\"H6213\"* shall|strong=\"H3068\"* open|strong=\"H6605\"* for|strong=\"H3588\"* him|strong=\"H6213\"* the|strong=\"H3588\"* gate|strong=\"H8179\"* that|strong=\"H3588\"* looks toward|strong=\"H6437\"* the|strong=\"H3588\"* east|strong=\"H6921\"*; and|strong=\"H3068\"* he|strong=\"H3588\"* shall|strong=\"H3068\"* prepare|strong=\"H6213\"* his|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H3068\"* his|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, as|strong=\"H3117\"* he|strong=\"H3588\"* does|strong=\"H6213\"* on|strong=\"H3117\"* the|strong=\"H3588\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*. Then|strong=\"H3318\"* he|strong=\"H3588\"* shall|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"*; and|strong=\"H3068\"* after|strong=\"H3117\"* his|strong=\"H3068\"* going|strong=\"H3318\"* out|strong=\"H3318\"* one|strong=\"H6213\"* shall|strong=\"H3068\"* shut|strong=\"H5462\"* the|strong=\"H3588\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 13, + "text": "“‘“You|strong=\"H3117\"* shall|strong=\"H3068\"* prepare|strong=\"H6213\"* a|strong=\"H3068\"* lamb|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"* for|strong=\"H6213\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* daily|strong=\"H3117\"*. Morning|strong=\"H1242\"* by|strong=\"H8141\"* morning|strong=\"H1242\"* you|strong=\"H3117\"* shall|strong=\"H3068\"* prepare|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H5921\"* shall|strong=\"H3068\"* prepare|strong=\"H6213\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* with|strong=\"H3068\"* it|strong=\"H5921\"* morning|strong=\"H1242\"* by|strong=\"H5921\"* morning|strong=\"H1242\"*, the|strong=\"H5921\"* sixth|strong=\"H8345\"* part|strong=\"H7992\"* of|strong=\"H3068\"* an|strong=\"H6213\"* ephah,+ 46:14 1 ephah is about 22 liters or about 2/3 of a bushel* and|strong=\"H3068\"* the|strong=\"H5921\"* third|strong=\"H7992\"* part|strong=\"H7992\"* of|strong=\"H3068\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* of|strong=\"H3068\"* oil|strong=\"H8081\"* to|strong=\"H3068\"* moisten|strong=\"H7450\"* the|strong=\"H5921\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"*; a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* continually|strong=\"H8548\"* by|strong=\"H5921\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* ordinance|strong=\"H2708\"*." + }, + { + "verseNum": 15, + "text": "Thus they|strong=\"H6213\"* shall|strong=\"H6213\"* prepare|strong=\"H6213\"* the|strong=\"H6213\"* lamb|strong=\"H3532\"*, the|strong=\"H6213\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H1242\"* the|strong=\"H6213\"* oil|strong=\"H8081\"*, morning|strong=\"H1242\"* by|strong=\"H1242\"* morning|strong=\"H1242\"*, for|strong=\"H6213\"* a|strong=\"H3068\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*.”" + }, + { + "verseNum": 16, + "text": "“‘The|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “If|strong=\"H3588\"* the|strong=\"H3588\"* prince|strong=\"H5387\"* gives|strong=\"H5414\"* a|strong=\"H3068\"* gift|strong=\"H4979\"* to|strong=\"H1961\"* any|strong=\"H5414\"* of|strong=\"H1121\"* his|strong=\"H5414\"* sons|strong=\"H1121\"*, it|strong=\"H5414\"* is|strong=\"H1931\"* his|strong=\"H5414\"* inheritance|strong=\"H5159\"*. It|strong=\"H5414\"* shall|strong=\"H1121\"* belong|strong=\"H1961\"* to|strong=\"H1961\"* his|strong=\"H5414\"* sons|strong=\"H1121\"*. It|strong=\"H5414\"* is|strong=\"H1931\"* their|strong=\"H5414\"* possession|strong=\"H5159\"* by|strong=\"H5414\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* he|strong=\"H3588\"* gives|strong=\"H5414\"* of|strong=\"H1121\"* his|strong=\"H5414\"* inheritance|strong=\"H5159\"* a|strong=\"H3068\"* gift|strong=\"H4979\"* to|strong=\"H5704\"* one|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H5414\"* servants|strong=\"H5650\"*, it|strong=\"H5414\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* his|strong=\"H5414\"* to|strong=\"H5704\"* the|strong=\"H3588\"* year|strong=\"H8141\"* of|strong=\"H1121\"* liberty|strong=\"H1865\"*; then|strong=\"H1961\"* it|strong=\"H5414\"* shall|strong=\"H1121\"* return|strong=\"H7725\"* to|strong=\"H5704\"* the|strong=\"H3588\"* prince|strong=\"H5387\"*; but|strong=\"H3588\"* as|strong=\"H5704\"* for|strong=\"H3588\"* his|strong=\"H5414\"* inheritance|strong=\"H5159\"*, it|strong=\"H5414\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* for|strong=\"H3588\"* his|strong=\"H5414\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 18, + "text": "Moreover the|strong=\"H3947\"* prince|strong=\"H5387\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* take|strong=\"H3947\"* of|strong=\"H1121\"* the|strong=\"H3947\"* people|strong=\"H5971\"*’s inheritance|strong=\"H5159\"*, to|strong=\"H1121\"* thrust|strong=\"H3238\"* them|strong=\"H3947\"* out|strong=\"H3947\"* of|strong=\"H1121\"* their|strong=\"H3947\"* possession|strong=\"H5159\"*. He|strong=\"H3808\"* shall|strong=\"H1121\"* give|strong=\"H5157\"* inheritance|strong=\"H5159\"* to|strong=\"H1121\"* his|strong=\"H3947\"* sons|strong=\"H1121\"* out|strong=\"H3947\"* of|strong=\"H1121\"* his|strong=\"H3947\"* own|strong=\"H5971\"* possession|strong=\"H5159\"*, that|strong=\"H5971\"* my|strong=\"H3947\"* people|strong=\"H5971\"* not|strong=\"H3808\"* each|strong=\"H5971\"* be|strong=\"H3808\"* scattered|strong=\"H6327\"* from|strong=\"H1121\"* his|strong=\"H3947\"* possession|strong=\"H5159\"*.”’”" + }, + { + "verseNum": 19, + "text": "Then|strong=\"H2009\"* he|strong=\"H8033\"* brought|strong=\"H3548\"* me|strong=\"H5921\"* through|strong=\"H5921\"* the|strong=\"H5921\"* entry|strong=\"H3996\"*, which|strong=\"H8033\"* was|strong=\"H4725\"* at|strong=\"H5921\"* the|strong=\"H5921\"* side|strong=\"H3802\"* of|strong=\"H8179\"* the|strong=\"H5921\"* gate|strong=\"H8179\"*, into|strong=\"H5921\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* rooms|strong=\"H3957\"* for|strong=\"H5921\"* the|strong=\"H5921\"* priests|strong=\"H3548\"*, which|strong=\"H8033\"* looked|strong=\"H6437\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* north|strong=\"H6828\"*. Behold|strong=\"H2009\"*, there|strong=\"H8033\"* was|strong=\"H4725\"* a|strong=\"H3068\"* place|strong=\"H4725\"* on|strong=\"H5921\"* the|strong=\"H5921\"* back|strong=\"H6437\"* part|strong=\"H3411\"* westward|strong=\"H3220\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H8033\"* said|strong=\"H3318\"* to|strong=\"H3318\"* me|strong=\"H3318\"*, “This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H3318\"* place|strong=\"H4725\"* where|strong=\"H8033\"* the|strong=\"H3318\"* priests|strong=\"H3548\"* shall|strong=\"H3548\"* boil|strong=\"H1310\"* the|strong=\"H3318\"* trespass offering|strong=\"H4503\"* and|strong=\"H3548\"* the|strong=\"H3318\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, and|strong=\"H3548\"* where|strong=\"H8033\"* they|strong=\"H8033\"* shall|strong=\"H3548\"* bake|strong=\"H1310\"* the|strong=\"H3318\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, that|strong=\"H5971\"* they|strong=\"H8033\"* not|strong=\"H1115\"* bring|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3318\"* outer|strong=\"H2435\"* court|strong=\"H2691\"*, to|strong=\"H3318\"* sanctify|strong=\"H6942\"* the|strong=\"H3318\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H3318\"* he|strong=\"H3318\"* brought|strong=\"H3318\"* me|strong=\"H5674\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H5674\"* outer|strong=\"H2435\"* court|strong=\"H2691\"* and|strong=\"H3318\"* caused|strong=\"H5674\"* me|strong=\"H5674\"* to|strong=\"H3318\"* pass|strong=\"H5674\"* by|strong=\"H5674\"* the|strong=\"H5674\"* four corners|strong=\"H4740\"* of|strong=\"H3318\"* the|strong=\"H5674\"* court|strong=\"H2691\"*; and|strong=\"H3318\"* behold|strong=\"H2009\"*, in|strong=\"H3318\"* every|strong=\"H4740\"* corner|strong=\"H4740\"* of|strong=\"H3318\"* the|strong=\"H5674\"* court|strong=\"H2691\"* there|strong=\"H2009\"* was|strong=\"H2691\"* a|strong=\"H3068\"* court|strong=\"H2691\"*." + }, + { + "verseNum": 22, + "text": "In|strong=\"H7970\"* the|strong=\"H4060\"* four corners|strong=\"H4740\"* of|strong=\"H7341\"* the|strong=\"H4060\"* court|strong=\"H2691\"* there|strong=\"H4060\"* were|strong=\"H2691\"* courts|strong=\"H2691\"* enclosed|strong=\"H7000\"*, forty cubits+ 46:22 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* long and|strong=\"H7970\"* thirty|strong=\"H7970\"* wide|strong=\"H7341\"*. These four in|strong=\"H7970\"* the|strong=\"H4060\"* corners|strong=\"H4740\"* were|strong=\"H2691\"* the|strong=\"H4060\"* same size|strong=\"H4060\"*." + }, + { + "verseNum": 23, + "text": "There|strong=\"H8478\"* was|strong=\"H6213\"* a|strong=\"H3068\"* wall around|strong=\"H5439\"* in|strong=\"H6213\"* them|strong=\"H6213\"*, around|strong=\"H5439\"* the|strong=\"H6213\"* four, and|strong=\"H6213\"* boiling|strong=\"H4018\"* places|strong=\"H4018\"* were|strong=\"H5439\"* made|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H6213\"* walls all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 24, + "text": "Then he|strong=\"H8033\"* said to|strong=\"H1004\"* me|strong=\"H1004\"*, “These|strong=\"H5971\"* are|strong=\"H5971\"* the|strong=\"H8033\"* boiling|strong=\"H1310\"* houses|strong=\"H1004\"*, where|strong=\"H8033\"* the|strong=\"H8033\"* ministers|strong=\"H8334\"* of|strong=\"H1004\"* the|strong=\"H8033\"* house|strong=\"H1004\"* shall|strong=\"H5971\"* boil|strong=\"H1310\"* the|strong=\"H8033\"* sacrifice|strong=\"H2077\"* of|strong=\"H1004\"* the|strong=\"H8033\"* people|strong=\"H5971\"*.”" + } + ] + }, + { + "chapterNum": 47, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H3588\"* brought|strong=\"H3318\"* me|strong=\"H6440\"* back|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H1004\"* the|strong=\"H6440\"* temple|strong=\"H1004\"*; and|strong=\"H7725\"* behold|strong=\"H2009\"*, waters|strong=\"H4325\"* flowed|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H7725\"* under|strong=\"H8478\"* the|strong=\"H6440\"* threshold|strong=\"H4670\"* of|strong=\"H1004\"* the|strong=\"H6440\"* temple|strong=\"H1004\"* eastward|strong=\"H6921\"*, for|strong=\"H3588\"* the|strong=\"H6440\"* front|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* temple|strong=\"H1004\"* faced|strong=\"H6440\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* east|strong=\"H6921\"*. The|strong=\"H6440\"* waters|strong=\"H4325\"* came|strong=\"H3318\"* down|strong=\"H3381\"* from|strong=\"H7725\"* underneath|strong=\"H8478\"*, from|strong=\"H7725\"* the|strong=\"H6440\"* right|strong=\"H3233\"* side|strong=\"H3802\"* of|strong=\"H1004\"* the|strong=\"H6440\"* temple|strong=\"H1004\"*, on|strong=\"H8478\"* the|strong=\"H6440\"* south|strong=\"H5045\"* of|strong=\"H1004\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H3318\"* he|strong=\"H4480\"* brought|strong=\"H3318\"* me|strong=\"H4480\"* out|strong=\"H3318\"* by|strong=\"H1870\"* the|strong=\"H4480\"* way|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H4480\"* gate|strong=\"H8179\"* northward|strong=\"H6828\"*, and|strong=\"H1870\"* led|strong=\"H3318\"* me|strong=\"H4480\"* around|strong=\"H5437\"* by|strong=\"H1870\"* the|strong=\"H4480\"* way|strong=\"H1870\"* outside|strong=\"H2351\"* to|strong=\"H3318\"* the|strong=\"H4480\"* outer|strong=\"H2351\"* gate|strong=\"H8179\"*, by|strong=\"H1870\"* the|strong=\"H4480\"* way|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H4480\"* gate|strong=\"H8179\"* that|strong=\"H4325\"* looks toward|strong=\"H1870\"* the|strong=\"H4480\"* east|strong=\"H6921\"*. Behold|strong=\"H2009\"*, waters|strong=\"H4325\"* ran out|strong=\"H3318\"* on|strong=\"H1870\"* the|strong=\"H4480\"* right|strong=\"H3233\"* side|strong=\"H3802\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"H3318\"* the|strong=\"H5674\"* man|strong=\"H5674\"* went|strong=\"H3318\"* out|strong=\"H3318\"* eastward|strong=\"H6921\"* with|strong=\"H3318\"* the|strong=\"H5674\"* line|strong=\"H6957\"* in|strong=\"H3027\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*, he|strong=\"H3027\"* measured|strong=\"H4058\"* one|strong=\"H3027\"* thousand cubits,+ 47:3 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H3027\"* he|strong=\"H3027\"* caused|strong=\"H5674\"* me|strong=\"H5674\"* to|strong=\"H3318\"* pass|strong=\"H5674\"* through|strong=\"H3027\"* the|strong=\"H5674\"* waters|strong=\"H4325\"*, waters|strong=\"H4325\"* that|strong=\"H4325\"* were|strong=\"H4325\"* to|strong=\"H3318\"* the|strong=\"H5674\"* ankles." + }, + { + "verseNum": 4, + "text": "Again|strong=\"H5674\"* he|strong=\"H4058\"* measured|strong=\"H4058\"* one thousand, and|strong=\"H4325\"* caused|strong=\"H5674\"* me|strong=\"H5674\"* to|strong=\"H4325\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5674\"* waters|strong=\"H4325\"*, waters|strong=\"H4325\"* that|strong=\"H4325\"* were|strong=\"H4325\"* to|strong=\"H4325\"* the|strong=\"H5674\"* knees|strong=\"H1290\"*. Again|strong=\"H5674\"* he|strong=\"H4058\"* measured|strong=\"H4058\"* one thousand, and|strong=\"H4325\"* caused|strong=\"H5674\"* me|strong=\"H5674\"* to|strong=\"H4325\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* waters|strong=\"H4325\"* that|strong=\"H4325\"* were|strong=\"H4325\"* to|strong=\"H4325\"* the|strong=\"H5674\"* waist|strong=\"H4975\"*." + }, + { + "verseNum": 5, + "text": "Afterward he|strong=\"H3588\"* measured|strong=\"H4058\"* one|strong=\"H3808\"* thousand; and|strong=\"H4325\"* it|strong=\"H3588\"* was|strong=\"H4325\"* a|strong=\"H3068\"* river|strong=\"H5158\"* that|strong=\"H3588\"* I|strong=\"H3588\"* could|strong=\"H3201\"* not|strong=\"H3808\"* pass|strong=\"H5674\"* through|strong=\"H5674\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* waters|strong=\"H4325\"* had|strong=\"H3588\"* risen|strong=\"H1342\"*, waters|strong=\"H4325\"* to|strong=\"H3201\"* swim|strong=\"H7813\"* in|strong=\"H3808\"*, a|strong=\"H3068\"* river|strong=\"H5158\"* that|strong=\"H3588\"* could|strong=\"H3201\"* not|strong=\"H3808\"* be|strong=\"H3808\"* walked through|strong=\"H5674\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H7725\"* said to|strong=\"H7725\"* me|strong=\"H7725\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, have|strong=\"H1121\"* you|strong=\"H7725\"* seen|strong=\"H7200\"* this|strong=\"H7200\"*?”" + }, + { + "verseNum": 7, + "text": "Now|strong=\"H2009\"* when|strong=\"H7725\"* I|strong=\"H2009\"* had returned|strong=\"H7725\"*, behold|strong=\"H2009\"*, on|strong=\"H7725\"* the|strong=\"H7725\"* bank|strong=\"H8193\"* of|strong=\"H6086\"* the|strong=\"H7725\"* river|strong=\"H5158\"* were|strong=\"H7227\"* very|strong=\"H3966\"* many|strong=\"H7227\"* trees|strong=\"H6086\"* on|strong=\"H7725\"* the|strong=\"H7725\"* one|strong=\"H2088\"* side|strong=\"H2088\"* and|strong=\"H7725\"* on|strong=\"H7725\"* the|strong=\"H7725\"* other|strong=\"H2088\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H3318\"* he|strong=\"H5921\"* said|strong=\"H3318\"* to|strong=\"H3381\"* me|strong=\"H5921\"*, “These|strong=\"H7495\"* waters|strong=\"H4325\"* flow|strong=\"H3381\"* out|strong=\"H3318\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* eastern|strong=\"H6930\"* region|strong=\"H1552\"* and|strong=\"H3318\"* will|strong=\"H4325\"* go|strong=\"H3318\"* down|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H5921\"* Arabah|strong=\"H6160\"*. Then|strong=\"H3318\"* they|strong=\"H5921\"* will|strong=\"H4325\"* go|strong=\"H3318\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* and|strong=\"H3318\"* flow|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* which|strong=\"H4325\"* will|strong=\"H4325\"* be|strong=\"H3220\"* made to|strong=\"H3381\"* flow|strong=\"H3381\"* out|strong=\"H3318\"*; and|strong=\"H3318\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* will|strong=\"H4325\"* be|strong=\"H3220\"* healed|strong=\"H7495\"*." + }, + { + "verseNum": 9, + "text": "It|strong=\"H3588\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H3588\"* every|strong=\"H3605\"* living|strong=\"H2416\"* creature|strong=\"H5315\"* which|strong=\"H8033\"* swarms|strong=\"H8317\"*, in|strong=\"H5315\"* every|strong=\"H3605\"* place|strong=\"H1961\"* where|strong=\"H8033\"* the|strong=\"H3605\"* rivers|strong=\"H5158\"* come|strong=\"H1961\"*, will|strong=\"H1961\"* live|strong=\"H2421\"*. Then|strong=\"H1961\"* there|strong=\"H8033\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H7227\"* multitude|strong=\"H7227\"* of|strong=\"H4325\"* fish|strong=\"H1710\"*; for|strong=\"H3588\"* these|strong=\"H3605\"* waters|strong=\"H4325\"* have|strong=\"H1961\"* come|strong=\"H1961\"* there|strong=\"H8033\"*, and|strong=\"H8033\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* the|strong=\"H3605\"* sea will|strong=\"H1961\"* be|strong=\"H1961\"* healed|strong=\"H7495\"*, and|strong=\"H8033\"* everything|strong=\"H3605\"* will|strong=\"H1961\"* live|strong=\"H2421\"* wherever|strong=\"H3605\"* the|strong=\"H3605\"* river|strong=\"H5158\"* comes|strong=\"H1961\"*." + }, + { + "verseNum": 10, + "text": "It|strong=\"H5921\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H5704\"* fishermen|strong=\"H1728\"* will|strong=\"H1961\"* stand|strong=\"H5975\"* by|strong=\"H5921\"* it|strong=\"H5921\"*. From|strong=\"H5921\"* En Gedi even|strong=\"H5704\"* to|strong=\"H5704\"* En Eglaim will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* place|strong=\"H1961\"* for|strong=\"H5704\"* the|strong=\"H5921\"* spreading|strong=\"H4894\"* of|strong=\"H5921\"* nets|strong=\"H2764\"*. Their|strong=\"H5921\"* fish|strong=\"H1710\"* will|strong=\"H1961\"* be|strong=\"H1961\"* after|strong=\"H5921\"* their|strong=\"H5921\"* kinds|strong=\"H4327\"*, as|strong=\"H5704\"* the|strong=\"H5921\"* fish|strong=\"H1710\"* of|strong=\"H5921\"* the|strong=\"H5921\"* great|strong=\"H1419\"* sea|strong=\"H3220\"*, exceedingly|strong=\"H3966\"* many|strong=\"H7227\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H3808\"* its|strong=\"H5414\"* swamps|strong=\"H1207\"* and|strong=\"H3808\"* marshes|strong=\"H1207\"* will|strong=\"H5414\"* not|strong=\"H3808\"* be|strong=\"H3808\"* healed|strong=\"H7495\"*. They|strong=\"H3808\"* will|strong=\"H5414\"* be|strong=\"H3808\"* given|strong=\"H5414\"* up|strong=\"H5414\"* to|strong=\"H5414\"* salt|strong=\"H4417\"*." + }, + { + "verseNum": 12, + "text": "By|strong=\"H5921\"* the|strong=\"H3605\"* river|strong=\"H5158\"* banks|strong=\"H8193\"*, on|strong=\"H5921\"* both|strong=\"H4480\"* sides|strong=\"H2088\"*, will|strong=\"H1961\"* grow|strong=\"H5927\"* every|strong=\"H3605\"* tree|strong=\"H6086\"* for|strong=\"H3588\"* food|strong=\"H3978\"*, whose|strong=\"H3605\"* leaf|strong=\"H5929\"* won’t wither|strong=\"H5034\"*, neither|strong=\"H3808\"* will|strong=\"H1961\"* its|strong=\"H3605\"* fruit|strong=\"H6529\"* fail|strong=\"H8552\"*. It|strong=\"H5921\"* will|strong=\"H1961\"* produce|strong=\"H6529\"* new|strong=\"H2320\"* fruit|strong=\"H6529\"* every|strong=\"H3605\"* month|strong=\"H2320\"*, because|strong=\"H3588\"* its|strong=\"H3605\"* waters|strong=\"H4325\"* issue|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4325\"* the|strong=\"H3605\"* sanctuary|strong=\"H4720\"*. Its|strong=\"H3605\"* fruit|strong=\"H6529\"* will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H3588\"* food|strong=\"H3978\"*, and|strong=\"H6086\"* its|strong=\"H3605\"* leaf|strong=\"H5929\"* for|strong=\"H3588\"* healing|strong=\"H8644\"*.”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “This|strong=\"H3541\"* shall|strong=\"H3478\"* be|strong=\"H3478\"* the|strong=\"H3069\"* border|strong=\"H1366\"* by|strong=\"H3478\"* which|strong=\"H3478\"* you|strong=\"H3478\"* shall|strong=\"H3478\"* divide|strong=\"H5157\"* the|strong=\"H3069\"* land|strong=\"H1366\"* for|strong=\"H3478\"* inheritance|strong=\"H5157\"* according to|strong=\"H3478\"* the|strong=\"H3069\"* twelve|strong=\"H8147\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*. Joseph|strong=\"H3130\"* shall|strong=\"H3478\"* have|strong=\"H3478\"* two|strong=\"H8147\"* portions|strong=\"H2256\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H5414\"* shall|strong=\"H3027\"* inherit|strong=\"H5157\"* it|strong=\"H5414\"*, one|strong=\"H5375\"* as|strong=\"H5159\"* well as|strong=\"H5159\"* another; for|strong=\"H3027\"* I|strong=\"H5414\"* swore|strong=\"H5375\"* to|strong=\"H5414\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* your|strong=\"H5414\"* fathers. This|strong=\"H2063\"* land|strong=\"H5159\"* will|strong=\"H3027\"* fall|strong=\"H5307\"* to|strong=\"H5414\"* you|strong=\"H5414\"* for|strong=\"H3027\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 15, + "text": "“This|strong=\"H2088\"* shall|strong=\"H1366\"* be|strong=\"H1870\"* the|strong=\"H4480\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H4480\"* land|strong=\"H1366\"*:" + }, + { + "verseNum": 16, + "text": "Hamath|strong=\"H2574\"*, Berothah|strong=\"H1268\"*, Sibraim|strong=\"H5453\"* (which|strong=\"H1366\"* is|strong=\"H1834\"* between the|strong=\"H2574\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Damascus|strong=\"H1834\"* and|strong=\"H2574\"* the|strong=\"H2574\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Hamath|strong=\"H2574\"*), to|strong=\"H1834\"* Hazer Hatticon, which|strong=\"H1366\"* is|strong=\"H1834\"* by|strong=\"H1366\"* the|strong=\"H2574\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Hauran|strong=\"H2362\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H4480\"* border|strong=\"H1366\"* from|strong=\"H4480\"* the|strong=\"H4480\"* sea|strong=\"H3220\"* shall|strong=\"H1366\"* be|strong=\"H1961\"* Hazar Enon at|strong=\"H1961\"* the|strong=\"H4480\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Damascus|strong=\"H1834\"*; and|strong=\"H3220\"* on|strong=\"H1961\"* the|strong=\"H4480\"* north|strong=\"H6828\"* northward|strong=\"H6828\"* is|strong=\"H1961\"* the|strong=\"H4480\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Hamath|strong=\"H2574\"*. This|strong=\"H1961\"* is|strong=\"H1961\"* the|strong=\"H4480\"* north|strong=\"H6828\"* side|strong=\"H6285\"*." + }, + { + "verseNum": 18, + "text": "“The|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"*, between|strong=\"H5921\"* Hauran|strong=\"H2362\"*, Damascus|strong=\"H1834\"*, Gilead|strong=\"H1568\"*, and|strong=\"H3478\"* the|strong=\"H5921\"* land|strong=\"H1366\"* of|strong=\"H1366\"* Israel|strong=\"H3478\"*, shall|strong=\"H3478\"* be|strong=\"H3478\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*; from|strong=\"H5921\"* the|strong=\"H5921\"* north border|strong=\"H1366\"* to|strong=\"H3478\"* the|strong=\"H5921\"* east|strong=\"H6921\"* sea|strong=\"H3220\"* you|strong=\"H5921\"* shall|strong=\"H3478\"* measure|strong=\"H4058\"*. This|strong=\"H3478\"* is|strong=\"H3478\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"*." + }, + { + "verseNum": 19, + "text": "“The|strong=\"H5704\"* south|strong=\"H5045\"* side|strong=\"H6285\"* southward|strong=\"H5045\"* shall|strong=\"H4325\"* be|strong=\"H3220\"* from|strong=\"H6285\"* Tamar|strong=\"H8559\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* the|strong=\"H5704\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* Meriboth Kadesh|strong=\"H6946\"*, to|strong=\"H5704\"* the|strong=\"H5704\"* brook|strong=\"H5158\"*, to|strong=\"H5704\"* the|strong=\"H5704\"* great|strong=\"H1419\"* sea|strong=\"H3220\"*. This is|strong=\"H4325\"* the|strong=\"H5704\"* south|strong=\"H5045\"* side|strong=\"H6285\"* southward|strong=\"H5045\"*." + }, + { + "verseNum": 20, + "text": "“The|strong=\"H5704\"* west|strong=\"H3220\"* side|strong=\"H6285\"* shall|strong=\"H1366\"* be|strong=\"H3220\"* the|strong=\"H5704\"* great|strong=\"H1419\"* sea|strong=\"H3220\"*, from|strong=\"H6285\"* the|strong=\"H5704\"* south|strong=\"H3220\"* border|strong=\"H1366\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* opposite|strong=\"H5227\"* the|strong=\"H5704\"* entrance of|strong=\"H1366\"* Hamath|strong=\"H2574\"*. This|strong=\"H2063\"* is|strong=\"H1419\"* the|strong=\"H5704\"* west|strong=\"H3220\"* side|strong=\"H6285\"*." + }, + { + "verseNum": 21, + "text": "“So|strong=\"H2063\"* you|strong=\"H3478\"* shall|strong=\"H3478\"* divide|strong=\"H2505\"* this|strong=\"H2063\"* land to|strong=\"H3478\"* yourselves according to|strong=\"H3478\"* the|strong=\"H2505\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H8432\"* shall|strong=\"H1121\"* divide|strong=\"H5307\"* it|strong=\"H8432\"* by|strong=\"H3478\"* lot|strong=\"H5307\"* for|strong=\"H1121\"* an|strong=\"H1961\"* inheritance|strong=\"H5159\"* to|strong=\"H3478\"* you|strong=\"H8432\"* and|strong=\"H1121\"* to|strong=\"H3478\"* the|strong=\"H8432\"* aliens|strong=\"H1616\"* who|strong=\"H1616\"* live|strong=\"H1481\"* among|strong=\"H8432\"* you|strong=\"H8432\"*, who|strong=\"H1616\"* will|strong=\"H1961\"* father|strong=\"H3205\"* children|strong=\"H1121\"* among|strong=\"H8432\"* you|strong=\"H8432\"*. Then|strong=\"H1961\"* they|strong=\"H3478\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* to|strong=\"H3478\"* you|strong=\"H8432\"* as|strong=\"H1961\"* the|strong=\"H8432\"* native-born among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. They|strong=\"H3478\"* shall|strong=\"H1121\"* have|strong=\"H1961\"* inheritance|strong=\"H5159\"* with|strong=\"H3478\"* you|strong=\"H8432\"* among|strong=\"H8432\"* the|strong=\"H8432\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 23, + "text": "In|strong=\"H5414\"* whatever tribe|strong=\"H7626\"* the|strong=\"H5002\"* stranger|strong=\"H1616\"* lives|strong=\"H1481\"*, there|strong=\"H8033\"* you|strong=\"H5414\"* shall|strong=\"H3069\"* give|strong=\"H5414\"* him|strong=\"H5414\"* his|strong=\"H5414\"* inheritance|strong=\"H5159\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 48, + "verses": [ + { + "verseNum": 1, + "text": "“Now|strong=\"H1961\"* these are|strong=\"H3027\"* the|strong=\"H1870\"* names|strong=\"H8034\"* of|strong=\"H3027\"* the|strong=\"H1870\"* tribes|strong=\"H7626\"*: From|strong=\"H3027\"* the|strong=\"H1870\"* north|strong=\"H6828\"* end|strong=\"H7097\"*, beside|strong=\"H3027\"* the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H3027\"* Hethlon|strong=\"H2855\"* to|strong=\"H1961\"* the|strong=\"H1870\"* entrance of|strong=\"H3027\"* Hamath|strong=\"H2574\"*, Hazar Enan at|strong=\"H1961\"* the|strong=\"H1870\"* border|strong=\"H1366\"* of|strong=\"H3027\"* Damascus|strong=\"H1834\"*, northward|strong=\"H6828\"* beside|strong=\"H3027\"* Hamath|strong=\"H2574\"* (and|strong=\"H3027\"* they|strong=\"H3027\"* shall|strong=\"H3027\"* have|strong=\"H1961\"* their|strong=\"H1961\"* sides|strong=\"H6285\"* east|strong=\"H6921\"* and|strong=\"H3027\"* west|strong=\"H3220\"*), Dan|strong=\"H1835\"*, one|strong=\"H1961\"* portion|strong=\"H7097\"*." + }, + { + "verseNum": 2, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Dan|strong=\"H1835\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Asher, one portion." + }, + { + "verseNum": 3, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Asher, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Naphtali|strong=\"H5321\"*, one portion." + }, + { + "verseNum": 4, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Naphtali|strong=\"H5321\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Manasseh|strong=\"H4519\"*, one portion." + }, + { + "verseNum": 5, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Manasseh|strong=\"H4519\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Ephraim, one portion." + }, + { + "verseNum": 6, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Ephraim, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Reuben|strong=\"H7205\"*, one portion." + }, + { + "verseNum": 7, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Reuben|strong=\"H7205\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Judah|strong=\"H3063\"*, one portion." + }, + { + "verseNum": 8, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Judah|strong=\"H3063\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, shall|strong=\"H1366\"* be|strong=\"H1961\"* the|strong=\"H5921\"* offering|strong=\"H8641\"* which|strong=\"H3063\"* you|strong=\"H5921\"* shall|strong=\"H1366\"* offer|strong=\"H7311\"*, twenty-five|strong=\"H6242\"* thousand reeds in|strong=\"H5921\"* width|strong=\"H7341\"*, and|strong=\"H3063\"* in|strong=\"H5921\"* length|strong=\"H5921\"* as|strong=\"H5704\"* one|strong=\"H1961\"* of|strong=\"H1366\"* the|strong=\"H5921\"* portions|strong=\"H2506\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*; and|strong=\"H3063\"* the|strong=\"H5921\"* sanctuary|strong=\"H4720\"* shall|strong=\"H1366\"* be|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H1366\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "“The|strong=\"H3068\"* offering|strong=\"H8641\"* that|strong=\"H3068\"* you shall|strong=\"H3068\"* offer|strong=\"H7311\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* twenty-five|strong=\"H6242\"* thousand reeds in|strong=\"H3068\"* length, and|strong=\"H3068\"* ten|strong=\"H6235\"* thousand in|strong=\"H3068\"* width|strong=\"H7341\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3068\"* these, even|strong=\"H3068\"* for|strong=\"H3068\"* the|strong=\"H8432\"* priests|strong=\"H3548\"*, shall|strong=\"H3548\"* be|strong=\"H1961\"* the|strong=\"H8432\"* holy|strong=\"H6944\"* offering|strong=\"H8641\"*: toward|strong=\"H3068\"* the|strong=\"H8432\"* north|strong=\"H6828\"* twenty-five|strong=\"H6242\"* thousand in|strong=\"H3068\"* length, and|strong=\"H3068\"* toward|strong=\"H3068\"* the|strong=\"H8432\"* west|strong=\"H3220\"* ten|strong=\"H6235\"* thousand in|strong=\"H3068\"* width|strong=\"H7341\"*, and|strong=\"H3068\"* toward|strong=\"H3068\"* the|strong=\"H8432\"* east|strong=\"H6921\"* ten|strong=\"H6235\"* thousand in|strong=\"H3068\"* width|strong=\"H7341\"*, and|strong=\"H3068\"* toward|strong=\"H3068\"* the|strong=\"H8432\"* south|strong=\"H5045\"* twenty-five|strong=\"H6242\"* thousand in|strong=\"H3068\"* length; and|strong=\"H3068\"* the|strong=\"H8432\"* sanctuary|strong=\"H6944\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* in|strong=\"H3068\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* it|strong=\"H8432\"*." + }, + { + "verseNum": 11, + "text": "It|strong=\"H6942\"* shall|strong=\"H3548\"* be|strong=\"H3808\"* for|strong=\"H1121\"* the|strong=\"H8104\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* are|strong=\"H1121\"* sanctified|strong=\"H6942\"* of|strong=\"H1121\"* the|strong=\"H8104\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*, who|strong=\"H3548\"* have|strong=\"H1121\"* kept|strong=\"H8104\"* my|strong=\"H8104\"* instruction, who|strong=\"H3548\"* didn’t go|strong=\"H8582\"* astray|strong=\"H8582\"* when|strong=\"H1121\"* the|strong=\"H8104\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H3478\"* astray|strong=\"H8582\"*, as|strong=\"H1121\"* the|strong=\"H8104\"* Levites|strong=\"H3881\"* went|strong=\"H3478\"* astray|strong=\"H8582\"*." + }, + { + "verseNum": 12, + "text": "It|strong=\"H1961\"* shall|strong=\"H3881\"* be|strong=\"H1961\"* to|strong=\"H1961\"* them|strong=\"H1961\"* an|strong=\"H1961\"* offering|strong=\"H8641\"* from|strong=\"H3881\"* the|strong=\"H1961\"* offering|strong=\"H8641\"* of|strong=\"H1366\"* the|strong=\"H1961\"* land|strong=\"H1366\"*, a|strong=\"H3068\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* thing|strong=\"H6944\"*, by|strong=\"H1961\"* the|strong=\"H1961\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H1961\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 13, + "text": "“Alongside|strong=\"H5980\"* the|strong=\"H3605\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, the|strong=\"H3605\"* Levites|strong=\"H3881\"* shall|strong=\"H3548\"* have|strong=\"H3548\"* twenty-five|strong=\"H6242\"* thousand cubits|strong=\"H2568\"* in|strong=\"H6235\"* length and|strong=\"H6242\"* ten|strong=\"H6235\"* thousand in|strong=\"H6235\"* width|strong=\"H7341\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* length shall|strong=\"H3548\"* be|strong=\"H3548\"* twenty-five|strong=\"H6242\"* thousand, and|strong=\"H6242\"* the|strong=\"H3605\"* width|strong=\"H7341\"* ten|strong=\"H6235\"* thousand." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3588\"* shall|strong=\"H3068\"* sell|strong=\"H4376\"* none|strong=\"H3808\"* of|strong=\"H3068\"* it|strong=\"H3588\"*, nor|strong=\"H3808\"* exchange|strong=\"H4171\"* it|strong=\"H3588\"*, nor|strong=\"H3808\"* shall|strong=\"H3068\"* the|strong=\"H3588\"* first|strong=\"H7225\"* fruits|strong=\"H7225\"* of|strong=\"H3068\"* the|strong=\"H3588\"* land be|strong=\"H3808\"* alienated, for|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3068\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "“The|strong=\"H6440\"* five|strong=\"H2568\"* thousand cubits|strong=\"H2568\"* that|strong=\"H1931\"* are|strong=\"H5892\"* left|strong=\"H3498\"* in|strong=\"H5921\"* the|strong=\"H6440\"* width|strong=\"H7341\"*, in|strong=\"H5921\"* front|strong=\"H6440\"* of|strong=\"H5892\"* the|strong=\"H6440\"* twenty-five|strong=\"H6242\"* thousand, shall|strong=\"H5892\"* be|strong=\"H1961\"* for|strong=\"H5921\"* common|strong=\"H2455\"* use|strong=\"H1961\"*, for|strong=\"H5921\"* the|strong=\"H6440\"* city|strong=\"H5892\"*, for|strong=\"H5921\"* dwelling|strong=\"H4186\"* and|strong=\"H6242\"* for|strong=\"H5921\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*; and|strong=\"H6242\"* the|strong=\"H6440\"* city|strong=\"H5892\"* shall|strong=\"H5892\"* be|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H5892\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 16, + "text": "These shall|strong=\"H6828\"* be|strong=\"H3220\"* its|strong=\"H3220\"* measurements|strong=\"H4060\"*: the|strong=\"H3967\"* north|strong=\"H6828\"* side|strong=\"H6285\"* four thousand and|strong=\"H3967\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"*, and|strong=\"H3967\"* the|strong=\"H3967\"* south|strong=\"H5045\"* side|strong=\"H6285\"* four thousand and|strong=\"H3967\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"*, and|strong=\"H3967\"* on|strong=\"H6285\"* the|strong=\"H3967\"* east|strong=\"H6921\"* side|strong=\"H6285\"* four thousand and|strong=\"H3967\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"*, and|strong=\"H3967\"* the|strong=\"H3967\"* west|strong=\"H3220\"* side|strong=\"H6285\"* four thousand and|strong=\"H3967\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H1961\"* city|strong=\"H5892\"* shall|strong=\"H5892\"* have|strong=\"H1961\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: toward the|strong=\"H1961\"* north|strong=\"H6828\"* two|strong=\"H3220\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*, and|strong=\"H3967\"* toward the|strong=\"H1961\"* south|strong=\"H5045\"* two|strong=\"H3220\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*, and|strong=\"H3967\"* toward the|strong=\"H1961\"* east|strong=\"H6921\"* two|strong=\"H3220\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*, and|strong=\"H3967\"* toward the|strong=\"H1961\"* west|strong=\"H3220\"* two|strong=\"H3220\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5647\"* remainder|strong=\"H3498\"* of|strong=\"H5892\"* the|strong=\"H5647\"* length, alongside|strong=\"H5980\"* the|strong=\"H5647\"* holy|strong=\"H6944\"* offering|strong=\"H8641\"*, shall|strong=\"H5892\"* be|strong=\"H1961\"* ten|strong=\"H6235\"* thousand eastward|strong=\"H6921\"* and|strong=\"H3899\"* ten|strong=\"H6235\"* thousand westward|strong=\"H3220\"*; and|strong=\"H3899\"* it|strong=\"H1961\"* shall|strong=\"H5892\"* be|strong=\"H1961\"* alongside|strong=\"H5980\"* the|strong=\"H5647\"* holy|strong=\"H6944\"* offering|strong=\"H8641\"*. Its|strong=\"H3220\"* increase|strong=\"H8393\"* shall|strong=\"H5892\"* be|strong=\"H1961\"* for|strong=\"H5892\"* food|strong=\"H3899\"* to|strong=\"H1961\"* those|strong=\"H1961\"* who|strong=\"H8641\"* labor|strong=\"H5647\"* in|strong=\"H5892\"* the|strong=\"H5647\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 19, + "text": "Those|strong=\"H3605\"* who|strong=\"H3605\"* labor|strong=\"H5647\"* in|strong=\"H3478\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, out|strong=\"H3605\"* of|strong=\"H7626\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*, shall|strong=\"H3478\"* cultivate|strong=\"H5647\"* it|strong=\"H3605\"*." + }, + { + "verseNum": 20, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* offering|strong=\"H8641\"* shall|strong=\"H5892\"* be|strong=\"H5892\"* a|strong=\"H3068\"* square|strong=\"H7243\"* of|strong=\"H5892\"* twenty-five|strong=\"H6242\"* thousand by|strong=\"H5892\"* twenty-five|strong=\"H6242\"* thousand. You|strong=\"H3605\"* shall|strong=\"H5892\"* offer|strong=\"H7311\"* it|strong=\"H7311\"* as|strong=\"H5892\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* offering|strong=\"H8641\"*, with|strong=\"H5892\"* the|strong=\"H3605\"* possession of|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 21, + "text": "“The|strong=\"H6440\"* remainder|strong=\"H3498\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* for|strong=\"H5704\"* the|strong=\"H6440\"* prince|strong=\"H5387\"*, on|strong=\"H5921\"* the|strong=\"H6440\"* one|strong=\"H2088\"* side|strong=\"H2088\"* and|strong=\"H6242\"* on|strong=\"H5921\"* the|strong=\"H6440\"* other|strong=\"H2088\"* of|strong=\"H1004\"* the|strong=\"H6440\"* holy|strong=\"H6944\"* offering|strong=\"H8641\"* and|strong=\"H6242\"* of|strong=\"H1004\"* the|strong=\"H6440\"* possession of|strong=\"H1004\"* the|strong=\"H6440\"* city|strong=\"H5892\"*; in|strong=\"H5921\"* front|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* twenty-five|strong=\"H6242\"* thousand of|strong=\"H1004\"* the|strong=\"H6440\"* offering|strong=\"H8641\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* east|strong=\"H6921\"* border|strong=\"H1366\"*, and|strong=\"H6242\"* westward|strong=\"H3220\"* in|strong=\"H5921\"* front|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* twenty-five|strong=\"H6242\"* thousand toward|strong=\"H5921\"* the|strong=\"H6440\"* west|strong=\"H3220\"* border|strong=\"H1366\"*, alongside|strong=\"H5980\"* the|strong=\"H6440\"* portions|strong=\"H2506\"*, it|strong=\"H5921\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* for|strong=\"H5704\"* the|strong=\"H6440\"* prince|strong=\"H5387\"*. The|strong=\"H6440\"* holy|strong=\"H6944\"* offering|strong=\"H8641\"* and|strong=\"H6242\"* the|strong=\"H6440\"* sanctuary|strong=\"H6944\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H1004\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 22, + "text": "Moreover|strong=\"H1961\"*, from|strong=\"H3881\"* the|strong=\"H8432\"* possession of|strong=\"H5892\"* the|strong=\"H8432\"* Levites|strong=\"H3881\"*, and|strong=\"H3063\"* from|strong=\"H3881\"* the|strong=\"H8432\"* possession of|strong=\"H5892\"* the|strong=\"H8432\"* city|strong=\"H5892\"*, being|strong=\"H1961\"* in|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H5892\"* that|strong=\"H3881\"* which|strong=\"H5892\"* is|strong=\"H5892\"* the|strong=\"H8432\"* prince|strong=\"H5387\"*’s, between|strong=\"H8432\"* the|strong=\"H8432\"* border|strong=\"H1366\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* the|strong=\"H8432\"* border|strong=\"H1366\"* of|strong=\"H5892\"* Benjamin|strong=\"H1144\"*, shall|strong=\"H5892\"* be|strong=\"H1961\"* for|strong=\"H5892\"* the|strong=\"H8432\"* prince|strong=\"H5387\"*." + }, + { + "verseNum": 23, + "text": "“As|strong=\"H5704\"* for|strong=\"H5704\"* the|strong=\"H5704\"* rest|strong=\"H3499\"* of|strong=\"H7626\"* the|strong=\"H5704\"* tribes|strong=\"H7626\"*: from|strong=\"H6285\"* the|strong=\"H5704\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5704\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Benjamin|strong=\"H1144\"*, one portion." + }, + { + "verseNum": 24, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Benjamin|strong=\"H1144\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Simeon|strong=\"H8095\"*, one portion." + }, + { + "verseNum": 25, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Simeon|strong=\"H8095\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Issachar|strong=\"H3485\"*, one portion." + }, + { + "verseNum": 26, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Issachar|strong=\"H3485\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Zebulun|strong=\"H2074\"*, one portion." + }, + { + "verseNum": 27, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Zebulun|strong=\"H2074\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Gad|strong=\"H1410\"*, one portion." + }, + { + "verseNum": 28, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Gad|strong=\"H1410\"*, at|strong=\"H5921\"* the|strong=\"H5921\"* south|strong=\"H5045\"* side|strong=\"H6285\"* southward|strong=\"H5045\"*, the|strong=\"H5921\"* border|strong=\"H1366\"* shall|strong=\"H1366\"* be|strong=\"H1961\"* even|strong=\"H5921\"* from|strong=\"H5921\"* Tamar|strong=\"H8559\"* to|strong=\"H1961\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* of|strong=\"H1366\"* Meribath Kadesh|strong=\"H6946\"*, to|strong=\"H1961\"* the|strong=\"H5921\"* brook|strong=\"H5158\"*, to|strong=\"H1961\"* the|strong=\"H5921\"* great|strong=\"H1419\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 29, + "text": "“This|strong=\"H2063\"* is|strong=\"H3478\"* the|strong=\"H5002\"* land|strong=\"H5159\"* which|strong=\"H3478\"* you|strong=\"H5159\"* shall|strong=\"H3478\"* divide|strong=\"H5307\"* by|strong=\"H3478\"* lot|strong=\"H5307\"* to|strong=\"H3478\"* the|strong=\"H5002\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"* for|strong=\"H3478\"* inheritance|strong=\"H5159\"*, and|strong=\"H3478\"* these|strong=\"H2063\"* are|strong=\"H3478\"* their|strong=\"H5307\"* several portions|strong=\"H4256\"*, says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 30, + "text": "“These are|strong=\"H5892\"* the|strong=\"H5892\"* exits|strong=\"H8444\"* of|strong=\"H5892\"* the|strong=\"H5892\"* city|strong=\"H5892\"*: On|strong=\"H5892\"* the|strong=\"H5892\"* north|strong=\"H6828\"* side|strong=\"H6285\"* four thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* reeds by|strong=\"H5892\"* measure|strong=\"H4060\"*;" + }, + { + "verseNum": 31, + "text": "and|strong=\"H3063\"* the|strong=\"H5921\"* gates|strong=\"H8179\"* of|strong=\"H7626\"* the|strong=\"H5921\"* city|strong=\"H5892\"* shall|strong=\"H3478\"* be|strong=\"H8034\"* named|strong=\"H8034\"* after|strong=\"H5921\"* the|strong=\"H5921\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*, three|strong=\"H7969\"* gates|strong=\"H8179\"* northward|strong=\"H6828\"*: the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H7626\"* Reuben|strong=\"H7205\"*, one|strong=\"H5892\"*; the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H7626\"* Judah|strong=\"H3063\"*, one|strong=\"H5892\"*; the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H7626\"* Levi|strong=\"H3878\"*, one|strong=\"H5892\"*." + }, + { + "verseNum": 32, + "text": "“At|strong=\"H1144\"* the|strong=\"H8179\"* east|strong=\"H6921\"* side|strong=\"H6285\"* four|strong=\"H7969\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* reeds, and|strong=\"H3967\"* three|strong=\"H7969\"* gates|strong=\"H8179\"*: even the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Joseph|strong=\"H3130\"*, one|strong=\"H3967\"*; the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Benjamin|strong=\"H1144\"*, one|strong=\"H3967\"*; the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Dan|strong=\"H1835\"*, one|strong=\"H3967\"*." + }, + { + "verseNum": 33, + "text": "“At|strong=\"H7969\"* the|strong=\"H8179\"* south|strong=\"H5045\"* side|strong=\"H6285\"* four|strong=\"H7969\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* reeds by|strong=\"H8179\"* measure|strong=\"H4060\"*, and|strong=\"H3967\"* three|strong=\"H7969\"* gates|strong=\"H8179\"*: the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Simeon|strong=\"H8095\"*, one|strong=\"H3967\"*; the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Issachar|strong=\"H3485\"*, one|strong=\"H3967\"*; the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Zebulun|strong=\"H2074\"*, one|strong=\"H3967\"*." + }, + { + "verseNum": 34, + "text": "“At|strong=\"H3220\"* the|strong=\"H8179\"* west|strong=\"H3220\"* side|strong=\"H6285\"* four|strong=\"H7969\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* reeds, with|strong=\"H3220\"* their three|strong=\"H7969\"* gates|strong=\"H8179\"*: the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Gad|strong=\"H1410\"*, one|strong=\"H3967\"*; the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Asher, one|strong=\"H3967\"*; the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Naphtali|strong=\"H5321\"*, one|strong=\"H3967\"*." + }, + { + "verseNum": 35, + "text": "“It|strong=\"H5439\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* eighteen|strong=\"H8083\"* thousand reeds in|strong=\"H3068\"* circumference; and|strong=\"H3068\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H3068\"* the|strong=\"H3068\"* city|strong=\"H5892\"* from|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H3068\"*, ‘Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* there|strong=\"H8033\"*.’" + } + ] + } + ] + }, + { + "name": "Daniel", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* third|strong=\"H7969\"* year|strong=\"H8141\"* of|strong=\"H4428\"* the|strong=\"H5921\"* reign|strong=\"H4438\"* of|strong=\"H4428\"* Jehoiakim|strong=\"H3079\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon came|strong=\"H3063\"* to|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* besieged|strong=\"H6696\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5414\"* Lord+ 1:2 The word translated “Lord” is “Adonai.”* gave|strong=\"H5414\"* Jehoiakim|strong=\"H3079\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* into|strong=\"H3027\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*, with|strong=\"H1004\"* some|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H4428\"* God|strong=\"H5414\"*;+ 1:2 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* and|strong=\"H3063\"* he|strong=\"H1004\"* carried them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* land of|strong=\"H4428\"* Shinar|strong=\"H8152\"* to|strong=\"H5414\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H4428\"* his|strong=\"H5414\"* god|strong=\"H5414\"*. He|strong=\"H1004\"* brought|strong=\"H5414\"* the|strong=\"H5414\"* vessels|strong=\"H3627\"* into|strong=\"H3027\"* the|strong=\"H5414\"* treasure house|strong=\"H1004\"* of|strong=\"H4428\"* his|strong=\"H5414\"* god|strong=\"H5414\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H4480\"* king|strong=\"H4428\"* spoke to|strong=\"H3478\"* Ashpenaz, the|strong=\"H4480\"* master|strong=\"H7227\"* of|strong=\"H1121\"* his|strong=\"H3478\"* eunuchs|strong=\"H5631\"*, that|strong=\"H3478\"* he|strong=\"H4480\"* should|strong=\"H3478\"* bring in|strong=\"H3478\"* some|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, even of|strong=\"H1121\"* the|strong=\"H4480\"* royal|strong=\"H4428\"* offspring|strong=\"H2233\"*+ 1:3 or, seed* and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* nobles|strong=\"H6579\"*:" + }, + { + "verseNum": 4, + "text": "youths|strong=\"H3206\"* in|strong=\"H4428\"* whom was|strong=\"H4428\"* no|strong=\"H3605\"* defect|strong=\"H3971\"*, but|strong=\"H3605\"* well-favored, skillful|strong=\"H3045\"* in|strong=\"H4428\"* all|strong=\"H3605\"* wisdom|strong=\"H2451\"*, endowed|strong=\"H3045\"* with|strong=\"H3045\"* knowledge|strong=\"H1847\"*, understanding|strong=\"H7919\"* science|strong=\"H4093\"*, and|strong=\"H4428\"* who|strong=\"H3605\"* had|strong=\"H4428\"* the|strong=\"H3605\"* ability|strong=\"H3581\"* to|strong=\"H4428\"* stand|strong=\"H5975\"* in|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s palace|strong=\"H1964\"*; and|strong=\"H4428\"* that|strong=\"H3045\"* he|strong=\"H3605\"* should|strong=\"H4428\"* teach|strong=\"H3925\"* them|strong=\"H5975\"* the|strong=\"H3605\"* learning|strong=\"H5612\"* and|strong=\"H4428\"* the|strong=\"H3605\"* language|strong=\"H3956\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H6440\"* king|strong=\"H4428\"* appointed|strong=\"H5975\"* for|strong=\"H6440\"* them|strong=\"H6440\"* a|strong=\"H3068\"* daily|strong=\"H3117\"* portion|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s delicacies|strong=\"H6598\"* and|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H6440\"* wine|strong=\"H3196\"* which|strong=\"H1697\"* he|strong=\"H3117\"* drank|strong=\"H4960\"*, and|strong=\"H4428\"* that|strong=\"H3117\"* they|strong=\"H3117\"* should|strong=\"H8141\"* be|strong=\"H1697\"* nourished|strong=\"H1431\"* three|strong=\"H7969\"* years|strong=\"H8141\"*, that|strong=\"H3117\"* at|strong=\"H3117\"* its|strong=\"H5975\"* end|strong=\"H7117\"* they|strong=\"H3117\"* should|strong=\"H8141\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"H1961\"* among these of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* were|strong=\"H1961\"* Daniel|strong=\"H1840\"*, Hananiah|strong=\"H2608\"*, Mishael|strong=\"H4332\"*, and|strong=\"H1121\"* Azariah|strong=\"H5838\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H7760\"* prince|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H7760\"* eunuchs|strong=\"H5631\"* gave|strong=\"H7760\"* names|strong=\"H8034\"* to|strong=\"H8034\"* them|strong=\"H1992\"*: to|strong=\"H8034\"* Daniel|strong=\"H1840\"* he|strong=\"H7760\"* gave|strong=\"H7760\"* the|strong=\"H7760\"* name|strong=\"H8034\"* Belteshazzar|strong=\"H1095\"*; to|strong=\"H8034\"* Hananiah|strong=\"H2608\"*, Shadrach|strong=\"H7714\"*; to|strong=\"H8034\"* Mishael|strong=\"H4332\"*, Meshach|strong=\"H4335\"*; and|strong=\"H8269\"* to|strong=\"H8034\"* Azariah|strong=\"H5838\"*, Abednego." + }, + { + "verseNum": 8, + "text": "But|strong=\"H3808\"* Daniel|strong=\"H1840\"* purposed|strong=\"H7760\"* in|strong=\"H5921\"* his|strong=\"H7760\"* heart|strong=\"H3820\"* that|strong=\"H4428\"* he|strong=\"H3808\"* would|strong=\"H4428\"* not|strong=\"H3808\"* defile|strong=\"H1351\"* himself|strong=\"H3820\"* with|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s delicacies|strong=\"H6598\"*, nor|strong=\"H3808\"* with|strong=\"H5921\"* the|strong=\"H5921\"* wine|strong=\"H3196\"* which|strong=\"H8269\"* he|strong=\"H3808\"* drank|strong=\"H4960\"*. Therefore|strong=\"H5921\"* he|strong=\"H3808\"* requested|strong=\"H1245\"* of|strong=\"H4428\"* the|strong=\"H5921\"* prince|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H5921\"* eunuchs|strong=\"H5631\"* that|strong=\"H4428\"* he|strong=\"H3808\"* might not|strong=\"H3808\"* defile|strong=\"H1351\"* himself|strong=\"H3820\"*." + }, + { + "verseNum": 9, + "text": "Now|strong=\"H5414\"* God|strong=\"H5414\"* made|strong=\"H5414\"* Daniel|strong=\"H1840\"* find|strong=\"H5414\"* kindness|strong=\"H2617\"* and|strong=\"H6440\"* compassion|strong=\"H7356\"* in|strong=\"H6440\"* the|strong=\"H6440\"* sight|strong=\"H6440\"* of|strong=\"H8269\"* the|strong=\"H6440\"* prince|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H6440\"* eunuchs|strong=\"H5631\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H6440\"* prince|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H6440\"* eunuchs|strong=\"H5631\"* said to|strong=\"H6440\"* Daniel|strong=\"H1840\"*, “I|strong=\"H7200\"* fear|strong=\"H3373\"* my|strong=\"H7200\"* lord the|strong=\"H6440\"* king|strong=\"H4428\"*, who|strong=\"H4428\"* has|strong=\"H4428\"* appointed|strong=\"H4487\"* your|strong=\"H6440\"* food|strong=\"H3978\"* and|strong=\"H4428\"* your|strong=\"H6440\"* drink|strong=\"H4960\"*. For|strong=\"H6440\"* why|strong=\"H4100\"* should|strong=\"H4100\"* he|strong=\"H4480\"* see|strong=\"H7200\"* your|strong=\"H6440\"* faces|strong=\"H6440\"* worse|strong=\"H6440\"* looking|strong=\"H7200\"* than|strong=\"H4480\"* the|strong=\"H6440\"* youths|strong=\"H3206\"* who|strong=\"H4428\"* are|strong=\"H4100\"* of|strong=\"H4428\"* your|strong=\"H6440\"* own|strong=\"H6440\"* age|strong=\"H1524\"*? Then|strong=\"H4428\"* you|strong=\"H6440\"* would|strong=\"H4100\"* endanger|strong=\"H2325\"* my|strong=\"H7200\"* head|strong=\"H7218\"* with|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*.”" + }, + { + "verseNum": 11, + "text": "Then Daniel|strong=\"H1840\"* said to|strong=\"H5921\"* the|strong=\"H5921\"* steward whom the|strong=\"H5921\"* prince|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H5921\"* eunuchs|strong=\"H5631\"* had|strong=\"H8269\"* appointed|strong=\"H4487\"* over|strong=\"H5921\"* Daniel|strong=\"H1840\"*, Hananiah|strong=\"H2608\"*, Mishael|strong=\"H4332\"*, and|strong=\"H8269\"* Azariah|strong=\"H5838\"*:" + }, + { + "verseNum": 12, + "text": "“Test|strong=\"H5254\"* your|strong=\"H5414\"* servants|strong=\"H5650\"*, I|strong=\"H3117\"* beg|strong=\"H4994\"* you|strong=\"H5414\"*, ten|strong=\"H6235\"* days|strong=\"H3117\"*; and|strong=\"H3117\"* let|strong=\"H4994\"* them|strong=\"H5414\"* give|strong=\"H5414\"* us|strong=\"H5414\"* vegetables|strong=\"H2235\"* to|strong=\"H5414\"* eat and|strong=\"H3117\"* water|strong=\"H4325\"* to|strong=\"H5414\"* drink|strong=\"H8354\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H6213\"* let our|strong=\"H7200\"* faces|strong=\"H6440\"* be|strong=\"H4428\"* examined|strong=\"H7200\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H4428\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H6440\"* youths|strong=\"H3206\"* who|strong=\"H5650\"* eat of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s delicacies|strong=\"H6598\"*; and|strong=\"H4428\"* as|strong=\"H6213\"* you|strong=\"H6440\"* see|strong=\"H7200\"*, deal|strong=\"H6213\"* with|strong=\"H5973\"* your|strong=\"H6440\"* servants|strong=\"H5650\"*.”" + }, + { + "verseNum": 14, + "text": "So|strong=\"H2088\"* he|strong=\"H3117\"* listened|strong=\"H8085\"* to|strong=\"H3117\"* them|strong=\"H8085\"* in|strong=\"H8085\"* this|strong=\"H2088\"* matter|strong=\"H1697\"*, and|strong=\"H3117\"* tested|strong=\"H5254\"* them|strong=\"H8085\"* for|strong=\"H3117\"* ten|strong=\"H6235\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 15, + "text": "At|strong=\"H3117\"* the|strong=\"H3605\"* end|strong=\"H7117\"* of|strong=\"H4428\"* ten|strong=\"H6235\"* days|strong=\"H3117\"*, their|strong=\"H3605\"* faces appeared|strong=\"H7200\"* fairer|strong=\"H2896\"* and|strong=\"H4428\"* they|strong=\"H3117\"* were|strong=\"H3117\"* fatter|strong=\"H1277\"* in|strong=\"H4428\"* flesh|strong=\"H1320\"* than|strong=\"H4480\"* all|strong=\"H3605\"* the|strong=\"H3605\"* youths|strong=\"H3206\"* who|strong=\"H3605\"* ate of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s delicacies|strong=\"H6598\"*." + }, + { + "verseNum": 16, + "text": "So|strong=\"H1961\"* the|strong=\"H5414\"* steward took|strong=\"H5375\"* away|strong=\"H5375\"* their|strong=\"H5375\"* delicacies|strong=\"H6598\"* and|strong=\"H3196\"* the|strong=\"H5414\"* wine|strong=\"H3196\"* that|strong=\"H5414\"* they|strong=\"H5375\"* were|strong=\"H1961\"* given|strong=\"H5414\"* to|strong=\"H1961\"* drink|strong=\"H4960\"*, and|strong=\"H3196\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* vegetables|strong=\"H2235\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"H5414\"* as|strong=\"H5414\"* for|strong=\"H3605\"* these|strong=\"H3605\"* four youths|strong=\"H3206\"*, God|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* knowledge|strong=\"H4093\"* and|strong=\"H2451\"* skill|strong=\"H2451\"* in|strong=\"H5414\"* all|strong=\"H3605\"* learning|strong=\"H5612\"* and|strong=\"H2451\"* wisdom|strong=\"H2451\"*; and|strong=\"H2451\"* Daniel|strong=\"H1840\"* had|strong=\"H5414\"* understanding|strong=\"H7919\"* in|strong=\"H5414\"* all|strong=\"H3605\"* visions|strong=\"H2377\"* and|strong=\"H2451\"* dreams|strong=\"H2472\"*." + }, + { + "verseNum": 18, + "text": "At|strong=\"H3117\"* the|strong=\"H6440\"* end|strong=\"H7117\"* of|strong=\"H4428\"* the|strong=\"H6440\"* days|strong=\"H3117\"* which|strong=\"H8269\"* the|strong=\"H6440\"* king|strong=\"H4428\"* had|strong=\"H4428\"* appointed|strong=\"H7117\"* for|strong=\"H6440\"* bringing them|strong=\"H6440\"* in|strong=\"H4428\"*, the|strong=\"H6440\"* prince|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H6440\"* eunuchs|strong=\"H5631\"* brought|strong=\"H4428\"* them|strong=\"H6440\"* in|strong=\"H4428\"* before|strong=\"H6440\"* Nebuchadnezzar|strong=\"H5019\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* them|strong=\"H6440\"*; and|strong=\"H4428\"* among|strong=\"H4672\"* them|strong=\"H6440\"* all|strong=\"H3605\"* was|strong=\"H4428\"* found|strong=\"H4672\"* no|strong=\"H3808\"* one|strong=\"H3605\"* like|strong=\"H3808\"* Daniel|strong=\"H1840\"*, Hananiah|strong=\"H2608\"*, Mishael|strong=\"H4332\"*, and|strong=\"H4428\"* Azariah|strong=\"H5838\"*. Therefore they|strong=\"H3808\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 20, + "text": "In|strong=\"H5921\"* every|strong=\"H3605\"* matter|strong=\"H1697\"* of|strong=\"H4428\"* wisdom|strong=\"H2451\"* and|strong=\"H4428\"* understanding concerning|strong=\"H5921\"* which|strong=\"H1992\"* the|strong=\"H3605\"* king|strong=\"H4428\"* inquired|strong=\"H1245\"* of|strong=\"H4428\"* them|strong=\"H1992\"*, he|strong=\"H3605\"* found|strong=\"H4672\"* them|strong=\"H1992\"* ten|strong=\"H6235\"* times|strong=\"H3027\"* better|strong=\"H3027\"* than|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* magicians|strong=\"H2748\"* and|strong=\"H4428\"* enchanters who|strong=\"H3605\"* were|strong=\"H1992\"* in|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* realm|strong=\"H4438\"*." + }, + { + "verseNum": 21, + "text": "Daniel|strong=\"H1840\"* continued|strong=\"H1961\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* first year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Cyrus|strong=\"H3566\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* second|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H8141\"* the|strong=\"H5921\"* reign|strong=\"H4438\"* of|strong=\"H8141\"* Nebuchadnezzar|strong=\"H5019\"*, Nebuchadnezzar|strong=\"H5019\"* dreamed|strong=\"H2492\"* dreams|strong=\"H2472\"*; and|strong=\"H8141\"* his|strong=\"H5921\"* spirit|strong=\"H7307\"* was|strong=\"H1961\"* troubled|strong=\"H6470\"*, and|strong=\"H8141\"* his|strong=\"H5921\"* sleep|strong=\"H8142\"* went|strong=\"H8147\"* from|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H5975\"* the|strong=\"H6440\"* king|strong=\"H4428\"* commanded that|strong=\"H4428\"* the|strong=\"H6440\"* magicians|strong=\"H2748\"*, the|strong=\"H6440\"* enchanters, the|strong=\"H6440\"* sorcerers|strong=\"H3784\"*, and|strong=\"H4428\"* the|strong=\"H6440\"* Chaldeans|strong=\"H3778\"* be|strong=\"H4428\"* called|strong=\"H7121\"* to|strong=\"H6440\"* tell|strong=\"H5046\"* the|strong=\"H6440\"* king|strong=\"H4428\"* his|strong=\"H7121\"* dreams|strong=\"H2472\"*. So|strong=\"H7121\"* they|strong=\"H6440\"* came|strong=\"H4428\"* in|strong=\"H4428\"* and|strong=\"H4428\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3045\"* king|strong=\"H4428\"* said to|strong=\"H4428\"* them|strong=\"H1992\"*, “I|strong=\"H3045\"* have|strong=\"H3045\"* dreamed|strong=\"H2492\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*, and|strong=\"H4428\"* my|strong=\"H3045\"* spirit|strong=\"H7307\"* is|strong=\"H4428\"* troubled|strong=\"H6470\"* to|strong=\"H4428\"* know|strong=\"H3045\"* the|strong=\"H3045\"* dream|strong=\"H2472\"*.”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H1696\"* the|strong=\"H1696\"* Chaldeans|strong=\"H3778\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1696\"* king|strong=\"H4428\"* in|strong=\"H4428\"* the|strong=\"H1696\"* Syrian language, “O|strong=\"H3068\"* king|strong=\"H4428\"*, live|strong=\"H2418\"* forever|strong=\"H5957\"*! Tell|strong=\"H1696\"* your|strong=\"H4428\"* servants|strong=\"H5649\"* the|strong=\"H1696\"* dream|strong=\"H2493\"*, and|strong=\"H4428\"* we|strong=\"H3068\"* will|strong=\"H4428\"* show the|strong=\"H1696\"* interpretation|strong=\"H6591\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H4481\"* king|strong=\"H4430\"* answered|strong=\"H6032\"* the|strong=\"H4481\"* Chaldeans|strong=\"H3779\"*, “The|strong=\"H4481\"* thing|strong=\"H4406\"* has|strong=\"H4430\"* gone from|strong=\"H4481\"* me|strong=\"H4481\"*. If|strong=\"H2006\"* you|strong=\"H4481\"* don’t make|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H3046\"* me|strong=\"H4481\"* the|strong=\"H4481\"* dream|strong=\"H2493\"* and|strong=\"H6032\"* its|strong=\"H6591\"* interpretation|strong=\"H6591\"*, you|strong=\"H4481\"* will|strong=\"H4430\"* be|strong=\"H3809\"* cut|strong=\"H5648\"* in|strong=\"H5648\"* pieces|strong=\"H1917\"*, and|strong=\"H6032\"* your houses|strong=\"H1005\"* will|strong=\"H4430\"* be|strong=\"H3809\"* made|strong=\"H5648\"* a|strong=\"H3068\"* dunghill|strong=\"H5122\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"H4481\"* if|strong=\"H2006\"* you|strong=\"H4481\"* show the|strong=\"H4481\"* dream|strong=\"H2493\"* and|strong=\"H3367\"* its|strong=\"H6591\"* interpretation|strong=\"H6591\"*, you|strong=\"H4481\"* will receive|strong=\"H6902\"* from|strong=\"H4481\"* me|strong=\"H6925\"* gifts|strong=\"H4978\"*, rewards|strong=\"H5023\"*, and|strong=\"H3367\"* great|strong=\"H7690\"* honor|strong=\"H3367\"*. Therefore|strong=\"H4481\"* show me|strong=\"H6925\"* the|strong=\"H4481\"* dream|strong=\"H2493\"* and|strong=\"H3367\"* its|strong=\"H6591\"* interpretation|strong=\"H6591\"*.”" + }, + { + "verseNum": 7, + "text": "They answered|strong=\"H6032\"* the|strong=\"H2324\"* second|strong=\"H8579\"* time|strong=\"H8579\"* and|strong=\"H6032\"* said|strong=\"H6032\"*, “Let the|strong=\"H2324\"* king|strong=\"H4430\"* tell his servants|strong=\"H5649\"* the|strong=\"H2324\"* dream|strong=\"H2493\"*, and|strong=\"H6032\"* we|strong=\"H3068\"* will|strong=\"H4430\"* show the|strong=\"H2324\"* interpretation|strong=\"H6591\"*.”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H3606\"* king|strong=\"H4430\"* answered|strong=\"H6032\"*, “I|strong=\"H4481\"* know|strong=\"H3046\"* of|strong=\"H4481\"* a|strong=\"H3068\"* certainty|strong=\"H3330\"* that|strong=\"H1768\"* you|strong=\"H1768\"* are|strong=\"H1768\"* trying to|strong=\"H3046\"* gain|strong=\"H2084\"* time|strong=\"H5732\"*, because|strong=\"H6903\"* you|strong=\"H1768\"* see|strong=\"H2370\"* the|strong=\"H3606\"* thing|strong=\"H4406\"* has|strong=\"H1768\"* gone from|strong=\"H4481\"* me|strong=\"H4481\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H1768\"* if|strong=\"H2006\"* you|strong=\"H1768\"* don’t make|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H6925\"* me|strong=\"H6925\"* the|strong=\"H6925\"* dream|strong=\"H2493\"*, there|strong=\"H1768\"* is|strong=\"H1768\"* but|strong=\"H1768\"* one|strong=\"H2298\"* law|strong=\"H1882\"* for|strong=\"H5705\"* you|strong=\"H1768\"*; for|strong=\"H5705\"* you|strong=\"H1768\"* have|strong=\"H1768\"* prepared|strong=\"H2164\"* lying|strong=\"H3538\"* and|strong=\"H2493\"* corrupt|strong=\"H7844\"* words|strong=\"H4406\"* to|strong=\"H6925\"* speak before|strong=\"H6925\"* me|strong=\"H6925\"*, until|strong=\"H5705\"* the|strong=\"H6925\"* situation|strong=\"H5732\"* changes|strong=\"H8133\"*. Therefore tell me|strong=\"H6925\"* the|strong=\"H6925\"* dream|strong=\"H2493\"*, and|strong=\"H2493\"* I|strong=\"H1768\"* will|strong=\"H1768\"* know|strong=\"H3046\"* that|strong=\"H1768\"* you|strong=\"H1768\"* can|strong=\"H1768\"* show me|strong=\"H6925\"* its|strong=\"H6591\"* interpretation|strong=\"H6591\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H3606\"* Chaldeans|strong=\"H3779\"* answered|strong=\"H6032\"* the|strong=\"H3606\"* king|strong=\"H4430\"* and|strong=\"H6032\"* said|strong=\"H6032\"*, “There|strong=\"H6903\"* is|strong=\"H1768\"* not|strong=\"H3809\"* a|strong=\"H3068\"* man on|strong=\"H5922\"* the|strong=\"H3606\"* earth|strong=\"H3007\"* who|strong=\"H1768\"* can|strong=\"H3202\"* show the|strong=\"H3606\"* king|strong=\"H4430\"*’s matter|strong=\"H4406\"*, because|strong=\"H6903\"* no|strong=\"H3809\"* king|strong=\"H4430\"*, lord|strong=\"H7229\"*, or|strong=\"H3809\"* ruler|strong=\"H7990\"* has|strong=\"H1768\"* asked|strong=\"H7593\"* such|strong=\"H1836\"* a|strong=\"H3068\"* thing|strong=\"H4406\"* of|strong=\"H4430\"* any|strong=\"H3606\"* magician|strong=\"H2749\"*, enchanter, or|strong=\"H3809\"* Chaldean|strong=\"H3779\"*." + }, + { + "verseNum": 11, + "text": "It|strong=\"H1321\"* is|strong=\"H1768\"* a|strong=\"H3068\"* rare|strong=\"H3358\"* thing|strong=\"H4406\"* that|strong=\"H1768\"* the|strong=\"H6925\"* king|strong=\"H4430\"* requires, and|strong=\"H4430\"* there|strong=\"H1768\"* is|strong=\"H1768\"* no|strong=\"H3809\"* other|strong=\"H3861\"* who|strong=\"H1768\"* can|strong=\"H1768\"* show it|strong=\"H1321\"* before|strong=\"H6925\"* the|strong=\"H6925\"* king|strong=\"H4430\"* except|strong=\"H3861\"* the|strong=\"H6925\"* gods, whose|strong=\"H1768\"* dwelling|strong=\"H4070\"* is|strong=\"H1768\"* not|strong=\"H3809\"* with|strong=\"H5974\"* flesh|strong=\"H1321\"*.”" + }, + { + "verseNum": 12, + "text": "Because|strong=\"H6903\"* of|strong=\"H4430\"* this|strong=\"H1836\"*, the|strong=\"H3606\"* king|strong=\"H4430\"* was|strong=\"H4430\"* angry|strong=\"H1149\"* and|strong=\"H4430\"* very|strong=\"H7690\"* furious|strong=\"H7108\"*, and|strong=\"H4430\"* commanded that|strong=\"H3606\"* all|strong=\"H3606\"* the|strong=\"H3606\"* wise|strong=\"H2445\"* men|strong=\"H2445\"* of|strong=\"H4430\"* Babylon be destroyed." + }, + { + "verseNum": 13, + "text": "So the|strong=\"H6992\"* decree|strong=\"H1882\"* went|strong=\"H1841\"* out|strong=\"H5312\"*, and|strong=\"H1156\"* the|strong=\"H6992\"* wise|strong=\"H2445\"* men|strong=\"H2445\"* were to|strong=\"H1156\"* be|strong=\"H1841\"* slain|strong=\"H6992\"*. They sought|strong=\"H1156\"* Daniel|strong=\"H1841\"* and|strong=\"H1156\"* his|strong=\"H1156\"* companions|strong=\"H2269\"* to|strong=\"H1156\"* be|strong=\"H1841\"* slain|strong=\"H6992\"*." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H1768\"* Daniel|strong=\"H1841\"* returned|strong=\"H8421\"* answer|strong=\"H8421\"* with|strong=\"H8421\"* counsel|strong=\"H2942\"* and|strong=\"H4430\"* prudence to|strong=\"H2942\"* Arioch the|strong=\"H1768\"* captain|strong=\"H7229\"* of|strong=\"H4430\"* the|strong=\"H1768\"* king|strong=\"H4430\"*’s guard|strong=\"H2877\"*, who|strong=\"H1768\"* had|strong=\"H4430\"* gone|strong=\"H5312\"* out|strong=\"H5312\"* to|strong=\"H2942\"* kill|strong=\"H6992\"* the|strong=\"H1768\"* wise|strong=\"H2445\"* men|strong=\"H2445\"* of|strong=\"H4430\"* Babylon." + }, + { + "verseNum": 15, + "text": "He|strong=\"H1768\"* answered|strong=\"H6032\"* Arioch the|strong=\"H5922\"* king|strong=\"H4430\"*’s captain|strong=\"H7990\"*, “Why|strong=\"H4101\"* is|strong=\"H1768\"* the|strong=\"H5922\"* decree|strong=\"H1882\"* so|strong=\"H1768\"* urgent|strong=\"H2685\"* from|strong=\"H4481\"* the|strong=\"H5922\"* king|strong=\"H4430\"*?” Then|strong=\"H1768\"* Arioch made|strong=\"H3046\"* the|strong=\"H5922\"* thing|strong=\"H4406\"* known|strong=\"H3046\"* to|strong=\"H5922\"* Daniel|strong=\"H1841\"*." + }, + { + "verseNum": 16, + "text": "Daniel|strong=\"H1841\"* went|strong=\"H5954\"* in|strong=\"H5954\"*, and|strong=\"H4430\"* desired|strong=\"H1156\"* of|strong=\"H4481\"* the|strong=\"H4481\"* king|strong=\"H4430\"* that|strong=\"H1768\"* he|strong=\"H1768\"* would appoint him|strong=\"H4481\"* a|strong=\"H3068\"* time|strong=\"H2166\"*, and|strong=\"H4430\"* he|strong=\"H1768\"* would show the|strong=\"H4481\"* king|strong=\"H4430\"* the|strong=\"H4481\"* interpretation|strong=\"H6591\"*." + }, + { + "verseNum": 17, + "text": "Then Daniel|strong=\"H1841\"* went|strong=\"H1841\"* to|strong=\"H3046\"* his|strong=\"H3046\"* house|strong=\"H1005\"* and|strong=\"H1005\"* made|strong=\"H3046\"* the|strong=\"H3046\"* thing|strong=\"H4406\"* known|strong=\"H3046\"* to|strong=\"H3046\"* Hananiah|strong=\"H2608\"*, Mishael|strong=\"H4333\"*, and|strong=\"H1005\"* Azariah|strong=\"H5839\"*, his|strong=\"H3046\"* companions|strong=\"H2269\"*:" + }, + { + "verseNum": 18, + "text": "that|strong=\"H1768\"* they|strong=\"H1768\"* would desire|strong=\"H1156\"* mercies|strong=\"H7359\"* of|strong=\"H4481\"* the|strong=\"H5922\"* God of|strong=\"H4481\"* heaven|strong=\"H8065\"* concerning|strong=\"H5922\"* this|strong=\"H1836\"* secret|strong=\"H7328\"*, that|strong=\"H1768\"* Daniel|strong=\"H1841\"* and|strong=\"H8065\"* his|strong=\"H5922\"* companions|strong=\"H2269\"* would not|strong=\"H3809\"* perish with|strong=\"H5974\"* the|strong=\"H5922\"* rest|strong=\"H7606\"* of|strong=\"H4481\"* the|strong=\"H5922\"* wise|strong=\"H2445\"* men|strong=\"H2445\"* of|strong=\"H4481\"* Babylon." + }, + { + "verseNum": 19, + "text": "Then|strong=\"H1768\"* the|strong=\"H1768\"* secret|strong=\"H7328\"* was|strong=\"H1841\"* revealed|strong=\"H1541\"* to|strong=\"H1541\"* Daniel|strong=\"H1841\"* in|strong=\"H1768\"* a|strong=\"H3068\"* vision|strong=\"H2376\"* of|strong=\"H1768\"* the|strong=\"H1768\"* night|strong=\"H3916\"*. Then|strong=\"H1768\"* Daniel|strong=\"H1841\"* blessed|strong=\"H1289\"* the|strong=\"H1768\"* God of|strong=\"H1768\"* heaven|strong=\"H8065\"*." + }, + { + "verseNum": 20, + "text": "Daniel|strong=\"H1841\"* answered|strong=\"H6032\"*," + }, + { + "verseNum": 21, + "text": "He|strong=\"H1932\"* changes|strong=\"H8133\"* the|strong=\"H3046\"* times|strong=\"H5732\"* and|strong=\"H4430\"* the|strong=\"H3046\"* seasons|strong=\"H2166\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H1932\"* reveals|strong=\"H1541\"* the|strong=\"H3046\"* deep|strong=\"H5994\"* and|strong=\"H5094\"* secret things|strong=\"H5642\"*." + }, + { + "verseNum": 23, + "text": "I|strong=\"H4481\"* thank|strong=\"H3029\"* you|strong=\"H1768\"* and|strong=\"H4430\"* praise|strong=\"H7624\"* you|strong=\"H1768\"*," + }, + { + "verseNum": 24, + "text": "Therefore|strong=\"H3606\"* Daniel|strong=\"H1841\"* went|strong=\"H5954\"* in|strong=\"H5954\"* to|strong=\"H5922\"* Arioch, whom|strong=\"H1768\"* the|strong=\"H3606\"* king|strong=\"H4430\"* had|strong=\"H4430\"* appointed|strong=\"H4483\"* to|strong=\"H5922\"* destroy the|strong=\"H3606\"* wise|strong=\"H2445\"* men|strong=\"H2445\"* of|strong=\"H4430\"* Babylon. He|strong=\"H1768\"* went|strong=\"H5954\"* and|strong=\"H4430\"* said this|strong=\"H1836\"* to|strong=\"H5922\"* him|strong=\"H5922\"*: “Don’t destroy the|strong=\"H3606\"* wise|strong=\"H2445\"* men|strong=\"H2445\"* of|strong=\"H4430\"* Babylon. Bring|strong=\"H5954\"* me|strong=\"H5922\"* in|strong=\"H5954\"* before|strong=\"H6925\"* the|strong=\"H3606\"* king|strong=\"H4430\"*, and|strong=\"H4430\"* I|strong=\"H1836\"* will|strong=\"H1768\"* show to|strong=\"H5922\"* the|strong=\"H3606\"* king|strong=\"H4430\"* the|strong=\"H3606\"* interpretation|strong=\"H6591\"*.”" + }, + { + "verseNum": 25, + "text": "Then|strong=\"H1768\"* Arioch brought|strong=\"H5954\"* in|strong=\"H5954\"* Daniel|strong=\"H1841\"* before|strong=\"H6925\"* the|strong=\"H4481\"* king|strong=\"H4430\"* in|strong=\"H5954\"* haste, and|strong=\"H4430\"* said this|strong=\"H4481\"* to|strong=\"H6925\"* him|strong=\"H4481\"*: “I|strong=\"H4481\"* have|strong=\"H1768\"* found|strong=\"H7912\"* a|strong=\"H3068\"* man|strong=\"H1400\"* of|strong=\"H4481\"* the|strong=\"H4481\"* children|strong=\"H1123\"* of|strong=\"H4481\"* the|strong=\"H4481\"* captivity|strong=\"H1547\"* of|strong=\"H4481\"* Judah|strong=\"H3061\"* who|strong=\"H1768\"* will|strong=\"H1768\"* make|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H6925\"* the|strong=\"H4481\"* king|strong=\"H4430\"* the|strong=\"H4481\"* interpretation|strong=\"H6591\"*.”" + }, + { + "verseNum": 26, + "text": "The|strong=\"H1768\"* king|strong=\"H4430\"* answered|strong=\"H6032\"* Daniel|strong=\"H1841\"*, whose|strong=\"H1768\"* name|strong=\"H8036\"* was|strong=\"H1841\"* Belteshazzar|strong=\"H1096\"*, “Are|strong=\"H1768\"* you|strong=\"H1768\"* able|strong=\"H3546\"* to|strong=\"H3046\"* make|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H3046\"* me the|strong=\"H1768\"* dream|strong=\"H2493\"* which|strong=\"H1768\"* I|strong=\"H1768\"* have|strong=\"H1768\"* seen|strong=\"H2370\"*, and|strong=\"H6032\"* its|strong=\"H6591\"* interpretation|strong=\"H6591\"*?”" + }, + { + "verseNum": 27, + "text": "Daniel|strong=\"H1841\"* answered|strong=\"H6032\"* before|strong=\"H6925\"* the|strong=\"H6925\"* king|strong=\"H4430\"*, and|strong=\"H6032\"* said|strong=\"H6032\"*, “The|strong=\"H6925\"* secret|strong=\"H7328\"* which|strong=\"H1768\"* the|strong=\"H6925\"* king|strong=\"H4430\"* has|strong=\"H1768\"* demanded|strong=\"H7593\"* can|strong=\"H3202\"*’t be|strong=\"H3809\"* shown to|strong=\"H3202\"* the|strong=\"H6925\"* king|strong=\"H4430\"* by|strong=\"H6925\"* wise|strong=\"H2445\"* men|strong=\"H2445\"*, enchanters, magicians|strong=\"H2749\"*, or|strong=\"H3809\"* soothsayers|strong=\"H1505\"*;" + }, + { + "verseNum": 28, + "text": "but|strong=\"H1297\"* there|strong=\"H1297\"* is|strong=\"H1768\"* a|strong=\"H3068\"* God in|strong=\"H5922\"* heaven|strong=\"H8065\"* who|strong=\"H1768\"* reveals|strong=\"H1541\"* secrets|strong=\"H7328\"*, and|strong=\"H4430\"* he|strong=\"H1768\"* has|strong=\"H1768\"* made|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H5922\"* King|strong=\"H4430\"* Nebuchadnezzar|strong=\"H5020\"* what|strong=\"H4101\"* will|strong=\"H4101\"* be|strong=\"H1934\"* in|strong=\"H5922\"* the|strong=\"H5922\"* latter days|strong=\"H3118\"*. Your|strong=\"H1768\"* dream|strong=\"H2493\"* and|strong=\"H4430\"* the|strong=\"H5922\"* visions|strong=\"H2376\"* of|strong=\"H4430\"* your|strong=\"H1768\"* head|strong=\"H7217\"* on|strong=\"H5922\"* your|strong=\"H1768\"* bed|strong=\"H4903\"* are|strong=\"H1768\"* these|strong=\"H1836\"*:" + }, + { + "verseNum": 29, + "text": "“As|strong=\"H1768\"* for|strong=\"H5922\"* you|strong=\"H1768\"*, O|strong=\"H3068\"* king|strong=\"H4430\"*, your|strong=\"H4903\"* thoughts|strong=\"H7476\"* came|strong=\"H5559\"* on|strong=\"H5922\"* your|strong=\"H4903\"* bed|strong=\"H4903\"*, what|strong=\"H4101\"* should|strong=\"H4101\"* happen hereafter; and|strong=\"H4430\"* he|strong=\"H1768\"* who|strong=\"H1768\"* reveals|strong=\"H1541\"* secrets|strong=\"H7328\"* has|strong=\"H1768\"* made|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H5922\"* you|strong=\"H1768\"* what|strong=\"H4101\"* will|strong=\"H4101\"* happen." + }, + { + "verseNum": 30, + "text": "But|strong=\"H3861\"* as|strong=\"H3606\"* for|strong=\"H5922\"* me|strong=\"H5922\"*, this|strong=\"H1836\"* secret|strong=\"H7328\"* is|strong=\"H1768\"* not|strong=\"H3809\"* revealed|strong=\"H1541\"* to|strong=\"H5922\"* me|strong=\"H5922\"* for|strong=\"H5922\"* any|strong=\"H3606\"* wisdom|strong=\"H2452\"* that|strong=\"H1768\"* I|strong=\"H4481\"* have|strong=\"H1768\"* more|strong=\"H5922\"* than|strong=\"H4481\"* any|strong=\"H3606\"* living|strong=\"H2417\"*, but|strong=\"H3861\"* to|strong=\"H5922\"* the|strong=\"H3606\"* intent|strong=\"H1701\"* that|strong=\"H1768\"* the|strong=\"H3606\"* interpretation|strong=\"H6591\"* may|strong=\"H2417\"* be|strong=\"H3809\"* made|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H5922\"* the|strong=\"H3606\"* king|strong=\"H4430\"*, and|strong=\"H4430\"* that|strong=\"H1768\"* you|strong=\"H1768\"* may|strong=\"H2417\"* know|strong=\"H3046\"* the|strong=\"H3606\"* thoughts|strong=\"H7476\"* of|strong=\"H4481\"* your|strong=\"H1768\"* heart|strong=\"H3825\"*." + }, + { + "verseNum": 31, + "text": "“You|strong=\"H6903\"*, O|strong=\"H3068\"* king|strong=\"H4430\"*, saw|strong=\"H2370\"*, and|strong=\"H4430\"* behold,+ 2:31 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* a|strong=\"H3068\"* great|strong=\"H7229\"* image|strong=\"H6755\"*. This|strong=\"H1797\"* image|strong=\"H6755\"*, which|strong=\"H6755\"* was|strong=\"H1934\"* mighty, and|strong=\"H4430\"* whose brightness|strong=\"H2122\"* was|strong=\"H1934\"* excellent|strong=\"H3493\"*, stood|strong=\"H6966\"* before|strong=\"H6903\"* you|strong=\"H6903\"*; and|strong=\"H4430\"* its appearance|strong=\"H7299\"* was|strong=\"H1934\"* terrifying." + }, + { + "verseNum": 32, + "text": "As|strong=\"H1768\"* for|strong=\"H1768\"* this|strong=\"H1932\"* image|strong=\"H6755\"*, its head|strong=\"H7217\"* was|strong=\"H1932\"* of|strong=\"H1768\"* fine|strong=\"H2869\"* gold|strong=\"H1722\"*, its chest and|strong=\"H1722\"* its arms|strong=\"H1872\"* of|strong=\"H1768\"* silver|strong=\"H3702\"*, its belly|strong=\"H4577\"* and|strong=\"H1722\"* its thighs|strong=\"H3410\"* of|strong=\"H1768\"* bronze|strong=\"H5174\"*," + }, + { + "verseNum": 33, + "text": "its|strong=\"H4481\"* legs|strong=\"H8243\"* of|strong=\"H4481\"* iron|strong=\"H6523\"*, its|strong=\"H4481\"* feet|strong=\"H7271\"* part|strong=\"H4481\"* of|strong=\"H4481\"* iron|strong=\"H6523\"* and|strong=\"H6523\"* part|strong=\"H4481\"* of|strong=\"H4481\"* clay|strong=\"H2635\"*." + }, + { + "verseNum": 34, + "text": "You|strong=\"H1768\"* saw|strong=\"H2370\"* until|strong=\"H5705\"* a|strong=\"H3068\"* stone was|strong=\"H1934\"* cut|strong=\"H1505\"* out|strong=\"H1505\"* without|strong=\"H3809\"* hands|strong=\"H3028\"*, which|strong=\"H1768\"* struck|strong=\"H4223\"* the|strong=\"H5922\"* image|strong=\"H6755\"* on|strong=\"H5922\"* its|strong=\"H5705\"* feet|strong=\"H7271\"* that|strong=\"H1768\"* were|strong=\"H1934\"* of|strong=\"H5922\"* iron|strong=\"H6523\"* and|strong=\"H6523\"* clay|strong=\"H2635\"*, and|strong=\"H6523\"* broke them|strong=\"H1994\"* in|strong=\"H5922\"* pieces|strong=\"H1855\"*." + }, + { + "verseNum": 35, + "text": "Then|strong=\"H1768\"* the|strong=\"H3606\"* iron|strong=\"H6523\"*, the|strong=\"H3606\"* clay|strong=\"H2635\"*, the|strong=\"H3606\"* bronze|strong=\"H5174\"*, the|strong=\"H3606\"* silver|strong=\"H3702\"*, and|strong=\"H6523\"* the|strong=\"H3606\"* gold|strong=\"H1722\"* were|strong=\"H1934\"* broken in|strong=\"H7912\"* pieces|strong=\"H1855\"* together|strong=\"H2298\"*, and|strong=\"H6523\"* became|strong=\"H1934\"* like the|strong=\"H3606\"* chaff|strong=\"H5784\"* of|strong=\"H4481\"* the|strong=\"H3606\"* summer|strong=\"H7007\"* threshing floors. The|strong=\"H3606\"* wind|strong=\"H7308\"* carried|strong=\"H5376\"* them|strong=\"H1994\"* away|strong=\"H5376\"*, so|strong=\"H1768\"* that|strong=\"H1768\"* no|strong=\"H3809\"* place|strong=\"H1934\"* was|strong=\"H1934\"* found|strong=\"H7912\"* for|strong=\"H1768\"* them|strong=\"H1994\"*. The|strong=\"H3606\"* stone that|strong=\"H1768\"* struck|strong=\"H4223\"* the|strong=\"H3606\"* image|strong=\"H6755\"* became|strong=\"H1934\"* a|strong=\"H3068\"* great|strong=\"H7229\"* mountain|strong=\"H2906\"* and|strong=\"H6523\"* filled|strong=\"H4391\"* the|strong=\"H3606\"* whole|strong=\"H3606\"* earth." + }, + { + "verseNum": 36, + "text": "“This|strong=\"H1836\"* is|strong=\"H6591\"* the|strong=\"H6925\"* dream|strong=\"H2493\"*; and|strong=\"H4430\"* we|strong=\"H3068\"* will|strong=\"H4430\"* tell its|strong=\"H6591\"* interpretation|strong=\"H6591\"* before|strong=\"H6925\"* the|strong=\"H6925\"* king|strong=\"H4430\"*." + }, + { + "verseNum": 37, + "text": "You|strong=\"H1768\"*, O|strong=\"H3068\"* king|strong=\"H4430\"*, are|strong=\"H1768\"* king|strong=\"H4430\"* of|strong=\"H4437\"* kings|strong=\"H4430\"*, to|strong=\"H4430\"* whom|strong=\"H1768\"* the|strong=\"H1768\"* God of|strong=\"H4437\"* heaven|strong=\"H8065\"* has|strong=\"H1768\"* given|strong=\"H3052\"* the|strong=\"H1768\"* kingdom|strong=\"H4437\"*, the|strong=\"H1768\"* power|strong=\"H2632\"*, the|strong=\"H1768\"* strength|strong=\"H8632\"*, and|strong=\"H4430\"* the|strong=\"H1768\"* glory|strong=\"H3367\"*." + }, + { + "verseNum": 38, + "text": "Wherever|strong=\"H1768\"* the|strong=\"H3606\"* children|strong=\"H1123\"* of|strong=\"H1123\"* men dwell|strong=\"H1753\"*, he|strong=\"H1768\"* has|strong=\"H1768\"* given|strong=\"H3052\"* the|strong=\"H3606\"* animals|strong=\"H2423\"* of|strong=\"H1123\"* the|strong=\"H3606\"* field|strong=\"H1251\"* and|strong=\"H1722\"* the|strong=\"H3606\"* birds|strong=\"H5776\"* of|strong=\"H1123\"* the|strong=\"H3606\"* sky|strong=\"H8065\"* into your|strong=\"H3052\"* hand|strong=\"H3028\"*, and|strong=\"H1722\"* has|strong=\"H1768\"* made|strong=\"H7981\"* you|strong=\"H1768\"* rule|strong=\"H7981\"* over|strong=\"H7981\"* them|strong=\"H3052\"* all|strong=\"H3606\"*. You|strong=\"H1768\"* are|strong=\"H1768\"* the|strong=\"H3606\"* head|strong=\"H7217\"* of|strong=\"H1123\"* gold|strong=\"H1722\"*." + }, + { + "verseNum": 39, + "text": "“After|strong=\"H4481\"* you|strong=\"H1768\"*, another kingdom|strong=\"H4437\"* will|strong=\"H1768\"* arise|strong=\"H6966\"* that|strong=\"H1768\"* is|strong=\"H1768\"* inferior to|strong=\"H4481\"* you|strong=\"H1768\"*; and|strong=\"H4437\"* another third|strong=\"H8523\"* kingdom|strong=\"H4437\"* of|strong=\"H4481\"* bronze|strong=\"H5174\"*, which|strong=\"H1768\"* will|strong=\"H1768\"* rule|strong=\"H7981\"* over|strong=\"H7981\"* all|strong=\"H3606\"* the|strong=\"H3606\"* earth." + }, + { + "verseNum": 40, + "text": "The|strong=\"H3606\"* fourth|strong=\"H7244\"* kingdom|strong=\"H4437\"* will|strong=\"H1768\"* be|strong=\"H1934\"* strong|strong=\"H8624\"* as|strong=\"H3606\"* iron|strong=\"H6523\"*, because|strong=\"H6903\"* iron|strong=\"H6523\"* breaks|strong=\"H7490\"* in|strong=\"H4437\"* pieces|strong=\"H1855\"* and|strong=\"H6523\"* subdues all|strong=\"H3606\"* things|strong=\"H3606\"*; and|strong=\"H6523\"* as|strong=\"H3606\"* iron|strong=\"H6523\"* that|strong=\"H1768\"* crushes|strong=\"H1855\"* all|strong=\"H3606\"* these, it|strong=\"H1934\"* will|strong=\"H1768\"* break|strong=\"H7490\"* in|strong=\"H4437\"* pieces|strong=\"H1855\"* and|strong=\"H6523\"* crush|strong=\"H1855\"*." + }, + { + "verseNum": 41, + "text": "Whereas|strong=\"H1768\"* you|strong=\"H1768\"* saw|strong=\"H2370\"* the|strong=\"H3606\"* feet|strong=\"H7271\"* and|strong=\"H6523\"* toes, part|strong=\"H4481\"* of|strong=\"H4481\"* potters’ clay|strong=\"H2635\"* and|strong=\"H6523\"* part|strong=\"H4481\"* of|strong=\"H4481\"* iron|strong=\"H6523\"*, it|strong=\"H1934\"* will|strong=\"H1768\"* be|strong=\"H1934\"* a|strong=\"H3068\"* divided|strong=\"H6386\"* kingdom|strong=\"H4437\"*; but|strong=\"H1768\"* there|strong=\"H6903\"* will|strong=\"H1768\"* be|strong=\"H1934\"* in|strong=\"H4437\"* it|strong=\"H1934\"* of|strong=\"H4481\"* the|strong=\"H3606\"* strength|strong=\"H5326\"* of|strong=\"H4481\"* the|strong=\"H3606\"* iron|strong=\"H6523\"*, because|strong=\"H6903\"* you|strong=\"H1768\"* saw|strong=\"H2370\"* the|strong=\"H3606\"* iron|strong=\"H6523\"* mixed|strong=\"H6151\"* with|strong=\"H6151\"* miry|strong=\"H2917\"* clay|strong=\"H2635\"*." + }, + { + "verseNum": 42, + "text": "As|strong=\"H8624\"* the|strong=\"H4481\"* toes of|strong=\"H4481\"* the|strong=\"H4481\"* feet|strong=\"H7271\"* were|strong=\"H1934\"* part|strong=\"H4481\"* of|strong=\"H4481\"* iron|strong=\"H6523\"*, and|strong=\"H6523\"* part|strong=\"H4481\"* of|strong=\"H4481\"* clay|strong=\"H2635\"*, so|strong=\"H4481\"* the|strong=\"H4481\"* kingdom|strong=\"H4437\"* will be|strong=\"H1934\"* partly|strong=\"H4481\"* strong|strong=\"H8624\"* and|strong=\"H6523\"* partly|strong=\"H4481\"* brittle|strong=\"H8406\"*." + }, + { + "verseNum": 43, + "text": "Whereas|strong=\"H1768\"* you|strong=\"H1768\"* saw|strong=\"H2370\"* the|strong=\"H1768\"* iron|strong=\"H6523\"* mixed|strong=\"H6151\"* with|strong=\"H5974\"* miry|strong=\"H2917\"* clay|strong=\"H2635\"*, they|strong=\"H1768\"* will|strong=\"H1768\"* mingle themselves|strong=\"H1934\"* with|strong=\"H5974\"* the|strong=\"H1768\"* seed|strong=\"H2234\"* of|strong=\"H1768\"* men; but|strong=\"H1768\"* they|strong=\"H1768\"* won’t cling to|strong=\"H5974\"* one|strong=\"H1836\"* another|strong=\"H1836\"*, even|strong=\"H1888\"* as|strong=\"H1768\"* iron|strong=\"H6523\"* does|strong=\"H1934\"* not|strong=\"H3809\"* mix|strong=\"H6151\"* with|strong=\"H5974\"* clay|strong=\"H2635\"*." + }, + { + "verseNum": 44, + "text": "“In|strong=\"H4430\"* the|strong=\"H3606\"* days|strong=\"H3118\"* of|strong=\"H4437\"* those|strong=\"H1768\"* kings|strong=\"H4430\"* the|strong=\"H3606\"* God of|strong=\"H4437\"* heaven|strong=\"H8065\"* will|strong=\"H1768\"* set|strong=\"H6966\"* up|strong=\"H6966\"* a|strong=\"H3068\"* kingdom|strong=\"H4437\"* which|strong=\"H1768\"* will|strong=\"H1768\"* never|strong=\"H5957\"* be|strong=\"H3809\"* destroyed|strong=\"H2255\"*, nor|strong=\"H3809\"* will|strong=\"H1768\"* its sovereignty|strong=\"H4437\"* be|strong=\"H3809\"* left|strong=\"H7662\"* to|strong=\"H4430\"* another people|strong=\"H5972\"*; but|strong=\"H1768\"* it|strong=\"H1932\"* will|strong=\"H1768\"* break in|strong=\"H4430\"* pieces|strong=\"H1855\"* and|strong=\"H4430\"* consume|strong=\"H5487\"* all|strong=\"H3606\"* these kingdoms|strong=\"H4437\"*, and|strong=\"H4430\"* it|strong=\"H1932\"* will|strong=\"H1768\"* stand|strong=\"H6966\"* forever|strong=\"H5957\"*." + }, + { + "verseNum": 45, + "text": "Because|strong=\"H6903\"* you|strong=\"H1768\"* saw|strong=\"H2370\"* that|strong=\"H1768\"* a|strong=\"H3068\"* stone was|strong=\"H1934\"* cut|strong=\"H1505\"* out|strong=\"H1505\"* of|strong=\"H4430\"* the|strong=\"H3606\"* mountain|strong=\"H2906\"* without|strong=\"H3809\"* hands|strong=\"H3028\"*, and|strong=\"H4430\"* that|strong=\"H1768\"* it|strong=\"H1934\"* broke in|strong=\"H4430\"* pieces|strong=\"H1855\"* the|strong=\"H3606\"* iron|strong=\"H6523\"*, the|strong=\"H3606\"* bronze|strong=\"H5174\"*, the|strong=\"H3606\"* clay|strong=\"H2635\"*, the|strong=\"H3606\"* silver|strong=\"H3702\"*, and|strong=\"H4430\"* the|strong=\"H3606\"* gold|strong=\"H1722\"*, the|strong=\"H3606\"* great|strong=\"H7229\"* God has|strong=\"H1768\"* made|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H3046\"* the|strong=\"H3606\"* king|strong=\"H4430\"* what|strong=\"H4101\"* will|strong=\"H4101\"* happen hereafter. The|strong=\"H3606\"* dream|strong=\"H2493\"* is|strong=\"H1768\"* certain|strong=\"H3330\"*, and|strong=\"H4430\"* its|strong=\"H6591\"* interpretation|strong=\"H6591\"* sure|strong=\"H3330\"*.”" + }, + { + "verseNum": 46, + "text": "Then|strong=\"H4430\"* King|strong=\"H4430\"* Nebuchadnezzar|strong=\"H5020\"* fell|strong=\"H5308\"* on|strong=\"H5922\"* his|strong=\"H5922\"* face, worshiped|strong=\"H5457\"* Daniel|strong=\"H1841\"*, and|strong=\"H5308\"* commanded that|strong=\"H5922\"* they should|strong=\"H4430\"* offer|strong=\"H5260\"* an|strong=\"H4430\"* offering|strong=\"H4504\"* and|strong=\"H5308\"* sweet odors to|strong=\"H5922\"* him|strong=\"H5922\"*." + }, + { + "verseNum": 47, + "text": "The|strong=\"H4481\"* king|strong=\"H4430\"* answered|strong=\"H6032\"* to|strong=\"H3202\"* Daniel|strong=\"H1841\"*, and|strong=\"H6032\"* said|strong=\"H6032\"*, “Of|strong=\"H4481\"* a|strong=\"H3068\"* truth|strong=\"H7187\"* your|strong=\"H1768\"* God is|strong=\"H1768\"* the|strong=\"H4481\"* God of|strong=\"H4481\"* gods, and|strong=\"H6032\"* the|strong=\"H4481\"* Lord|strong=\"H4756\"* of|strong=\"H4481\"* kings|strong=\"H4430\"*, and|strong=\"H6032\"* a|strong=\"H3068\"* revealer|strong=\"H1541\"* of|strong=\"H4481\"* secrets|strong=\"H7328\"*, since|strong=\"H1768\"* you|strong=\"H1768\"* have|strong=\"H1768\"* been|strong=\"H3202\"* able|strong=\"H3202\"* to|strong=\"H3202\"* reveal|strong=\"H1541\"* this|strong=\"H1836\"* secret|strong=\"H7328\"*.”" + }, + { + "verseNum": 48, + "text": "Then|strong=\"H4430\"* the|strong=\"H3606\"* king|strong=\"H4430\"* made|strong=\"H7236\"* Daniel|strong=\"H1841\"* great|strong=\"H7229\"* and|strong=\"H4430\"* gave|strong=\"H3052\"* him|strong=\"H5922\"* many|strong=\"H7690\"* great|strong=\"H7229\"* gifts|strong=\"H4978\"*, and|strong=\"H4430\"* made|strong=\"H7236\"* him|strong=\"H5922\"* rule|strong=\"H7981\"* over|strong=\"H5922\"* the|strong=\"H3606\"* whole|strong=\"H3606\"* province|strong=\"H4083\"* of|strong=\"H4430\"* Babylon and|strong=\"H4430\"* to|strong=\"H5922\"* be|strong=\"H1841\"* chief|strong=\"H7229\"* governor over|strong=\"H5922\"* all|strong=\"H3606\"* the|strong=\"H3606\"* wise|strong=\"H2445\"* men|strong=\"H2445\"* of|strong=\"H4430\"* Babylon." + }, + { + "verseNum": 49, + "text": "Daniel|strong=\"H1841\"* requested|strong=\"H1156\"* of|strong=\"H4481\"* the|strong=\"H5922\"* king|strong=\"H4430\"*, and|strong=\"H4336\"* he|strong=\"H1768\"* appointed|strong=\"H4483\"* Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H4336\"* Abednego over|strong=\"H5922\"* the|strong=\"H5922\"* affairs|strong=\"H5673\"* of|strong=\"H4481\"* the|strong=\"H5922\"* province|strong=\"H4083\"* of|strong=\"H4481\"* Babylon, but|strong=\"H1768\"* Daniel|strong=\"H1841\"* was|strong=\"H1841\"* in|strong=\"H5922\"* the|strong=\"H5922\"* king|strong=\"H4430\"*’s gate|strong=\"H8651\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Nebuchadnezzar|strong=\"H5020\"* the|strong=\"H5020\"* king|strong=\"H4430\"* made|strong=\"H5648\"* an|strong=\"H5648\"* image|strong=\"H6755\"* of|strong=\"H4430\"* gold|strong=\"H1722\"*, whose|strong=\"H1768\"* height|strong=\"H7314\"* was|strong=\"H4430\"* sixty|strong=\"H8361\"* cubits+ 3:1 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H4430\"* its width|strong=\"H6613\"* six|strong=\"H8353\"* cubits. He|strong=\"H1768\"* set|strong=\"H6966\"* it up|strong=\"H6966\"* in|strong=\"H4430\"* the|strong=\"H5020\"* plain|strong=\"H1236\"* of|strong=\"H4430\"* Dura|strong=\"H1757\"*, in|strong=\"H4430\"* the|strong=\"H5020\"* province|strong=\"H4083\"* of|strong=\"H4430\"* Babylon." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* the|strong=\"H3606\"* king|strong=\"H4430\"* sent|strong=\"H7972\"* to|strong=\"H4430\"* gather together|strong=\"H3673\"* the|strong=\"H3606\"* local governors|strong=\"H6347\"*, the|strong=\"H3606\"* deputies, and|strong=\"H4430\"* the|strong=\"H3606\"* governors|strong=\"H6347\"*, the|strong=\"H3606\"* judges|strong=\"H1884\"*, the|strong=\"H3606\"* treasurers|strong=\"H1411\"*, the|strong=\"H3606\"* counselors, the|strong=\"H3606\"* sheriffs|strong=\"H8614\"*, and|strong=\"H4430\"* all|strong=\"H3606\"* the|strong=\"H3606\"* rulers|strong=\"H7984\"* of|strong=\"H4430\"* the|strong=\"H3606\"* provinces|strong=\"H4083\"*, to|strong=\"H4430\"* come to|strong=\"H4430\"* the|strong=\"H3606\"* dedication|strong=\"H2597\"* of|strong=\"H4430\"* the|strong=\"H3606\"* image|strong=\"H6755\"* which|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* the|strong=\"H3606\"* king|strong=\"H4430\"* had|strong=\"H4430\"* set|strong=\"H6966\"* up|strong=\"H6966\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H6903\"* the|strong=\"H3606\"* local governors|strong=\"H6347\"*, the|strong=\"H3606\"* deputies, and|strong=\"H4430\"* the|strong=\"H3606\"* governors|strong=\"H6347\"*, the|strong=\"H3606\"* judges|strong=\"H1884\"*, the|strong=\"H3606\"* treasurers|strong=\"H1411\"*, the|strong=\"H3606\"* counselors, the|strong=\"H3606\"* sheriffs|strong=\"H8614\"*, and|strong=\"H4430\"* all|strong=\"H3606\"* the|strong=\"H3606\"* rulers|strong=\"H7984\"* of|strong=\"H4430\"* the|strong=\"H3606\"* provinces|strong=\"H4083\"* were|strong=\"H1768\"* gathered|strong=\"H3673\"* together|strong=\"H3673\"* to|strong=\"H4430\"* the|strong=\"H3606\"* dedication|strong=\"H2597\"* of|strong=\"H4430\"* the|strong=\"H3606\"* image|strong=\"H6755\"* that|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* the|strong=\"H3606\"* king|strong=\"H4430\"* had|strong=\"H4430\"* set|strong=\"H6966\"* up|strong=\"H6966\"*; and|strong=\"H4430\"* they|strong=\"H3606\"* stood|strong=\"H6966\"* before|strong=\"H6903\"* the|strong=\"H3606\"* image|strong=\"H6755\"* that|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* had|strong=\"H4430\"* set|strong=\"H6966\"* up|strong=\"H6966\"*." + }, + { + "verseNum": 4, + "text": "Then the|strong=\"H7123\"* herald|strong=\"H3744\"* cried|strong=\"H7123\"* aloud|strong=\"H2429\"*, “To|strong=\"H2429\"* you it is commanded, peoples|strong=\"H5972\"*, nations, and languages|strong=\"H3961\"*," + }, + { + "verseNum": 5, + "text": "that|strong=\"H1768\"* whenever you|strong=\"H1768\"* hear|strong=\"H8086\"* the|strong=\"H3606\"* sound|strong=\"H7032\"* of|strong=\"H4430\"* the|strong=\"H3606\"* horn|strong=\"H7162\"*, flute|strong=\"H4953\"*, zither|strong=\"H7030\"*, lyre|strong=\"H7030\"*, harp|strong=\"H6460\"*, pipe, and|strong=\"H5308\"* all|strong=\"H3606\"* kinds|strong=\"H2178\"* of|strong=\"H4430\"* music|strong=\"H2170\"*, you|strong=\"H1768\"* fall|strong=\"H5308\"* down|strong=\"H5308\"* and|strong=\"H5308\"* worship|strong=\"H5457\"* the|strong=\"H3606\"* golden|strong=\"H1722\"* image|strong=\"H6755\"* that|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* the|strong=\"H3606\"* king|strong=\"H4430\"* has|strong=\"H1768\"* set|strong=\"H6966\"* up|strong=\"H6966\"*." + }, + { + "verseNum": 6, + "text": "Whoever|strong=\"H4479\"* doesn’t fall|strong=\"H5308\"* down|strong=\"H5308\"* and|strong=\"H5308\"* worship|strong=\"H5457\"* shall|strong=\"H5457\"* be|strong=\"H3809\"* cast|strong=\"H7412\"* into|strong=\"H1459\"* the|strong=\"H1768\"* middle of|strong=\"H1768\"* a|strong=\"H3068\"* burning|strong=\"H3345\"* fiery|strong=\"H5135\"* furnace the|strong=\"H1768\"* same|strong=\"H1459\"* hour|strong=\"H8160\"*.”" + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"H3606\"* at|strong=\"H6903\"* that|strong=\"H1768\"* time|strong=\"H2166\"*, when|strong=\"H1768\"* all|strong=\"H3606\"* the|strong=\"H3606\"* peoples|strong=\"H5972\"* heard|strong=\"H8086\"* the|strong=\"H3606\"* sound|strong=\"H7032\"* of|strong=\"H4430\"* the|strong=\"H3606\"* horn|strong=\"H7162\"*, flute|strong=\"H4953\"*, zither|strong=\"H7030\"*, lyre|strong=\"H7030\"*, harp|strong=\"H6460\"*, pipe, and|strong=\"H5308\"* all|strong=\"H3606\"* kinds|strong=\"H2178\"* of|strong=\"H4430\"* music|strong=\"H2170\"*, all|strong=\"H3606\"* the|strong=\"H3606\"* peoples|strong=\"H5972\"*, the|strong=\"H3606\"* nations, and|strong=\"H5308\"* the|strong=\"H3606\"* languages|strong=\"H3961\"* fell|strong=\"H5308\"* down|strong=\"H5308\"* and|strong=\"H5308\"* worshiped|strong=\"H5457\"* the|strong=\"H3606\"* golden|strong=\"H1722\"* image|strong=\"H6755\"* that|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* the|strong=\"H3606\"* king|strong=\"H4430\"* had|strong=\"H4430\"* set|strong=\"H6966\"* up|strong=\"H6966\"*." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"H3606\"* at|strong=\"H6903\"* that|strong=\"H1768\"* time|strong=\"H2166\"* certain|strong=\"H1400\"* Chaldeans|strong=\"H3779\"* came|strong=\"H7127\"* near|strong=\"H7127\"* and|strong=\"H7127\"* brought accusation against|strong=\"H6903\"* the|strong=\"H3606\"* Jews|strong=\"H3062\"*." + }, + { + "verseNum": 9, + "text": "They answered|strong=\"H6032\"* Nebuchadnezzar|strong=\"H5020\"* the|strong=\"H5020\"* king|strong=\"H4430\"*, “O|strong=\"H3068\"* king|strong=\"H4430\"*, live|strong=\"H2418\"* for|strong=\"H2418\"* ever|strong=\"H5957\"*!" + }, + { + "verseNum": 10, + "text": "You|strong=\"H1768\"*, O|strong=\"H3068\"* king|strong=\"H4430\"*, have|strong=\"H7761\"* made|strong=\"H7761\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* that|strong=\"H1768\"* every|strong=\"H3606\"* man who|strong=\"H1768\"* hears|strong=\"H8086\"* the|strong=\"H3606\"* sound|strong=\"H7032\"* of|strong=\"H4430\"* the|strong=\"H3606\"* horn|strong=\"H7162\"*, flute|strong=\"H4953\"*, zither|strong=\"H7030\"*, lyre|strong=\"H7030\"*, harp|strong=\"H6460\"*, pipe, and|strong=\"H5308\"* all|strong=\"H3606\"* kinds|strong=\"H2178\"* of|strong=\"H4430\"* music|strong=\"H2170\"* shall|strong=\"H3606\"* fall|strong=\"H5308\"* down|strong=\"H5308\"* and|strong=\"H5308\"* worship|strong=\"H5457\"* the|strong=\"H3606\"* golden|strong=\"H1722\"* image|strong=\"H6755\"*;" + }, + { + "verseNum": 11, + "text": "and|strong=\"H5308\"* whoever|strong=\"H4479\"* doesn’t fall|strong=\"H5308\"* down|strong=\"H5308\"* and|strong=\"H5308\"* worship|strong=\"H5457\"* shall|strong=\"H5457\"* be|strong=\"H3809\"* cast|strong=\"H7412\"* into|strong=\"H1459\"* the|strong=\"H1768\"* middle of|strong=\"H1768\"* a|strong=\"H3068\"* burning|strong=\"H3345\"* fiery|strong=\"H5135\"* furnace." + }, + { + "verseNum": 12, + "text": "There|strong=\"H1768\"* are|strong=\"H1768\"* certain|strong=\"H1400\"* Jews|strong=\"H3062\"* whom|strong=\"H1768\"* you|strong=\"H1768\"* have|strong=\"H7761\"* appointed|strong=\"H4483\"* over|strong=\"H5922\"* the|strong=\"H5922\"* affairs|strong=\"H5673\"* of|strong=\"H4430\"* the|strong=\"H5922\"* province|strong=\"H4083\"* of|strong=\"H4430\"* Babylon: Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H4336\"* Abednego. These men|strong=\"H1400\"*, O|strong=\"H3068\"* king|strong=\"H4430\"*, have|strong=\"H7761\"* not|strong=\"H3809\"* respected you|strong=\"H1768\"*. They|strong=\"H1768\"* don’t serve|strong=\"H6399\"* your|strong=\"H6399\"* gods, and|strong=\"H4336\"* don’t worship|strong=\"H5457\"* the|strong=\"H5922\"* golden|strong=\"H1722\"* image|strong=\"H6755\"* which|strong=\"H1768\"* you|strong=\"H1768\"* have|strong=\"H7761\"* set|strong=\"H6966\"* up|strong=\"H6966\"*.”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H4430\"* Nebuchadnezzar|strong=\"H5020\"* in|strong=\"H4430\"* rage|strong=\"H7266\"* and|strong=\"H4336\"* fury|strong=\"H2528\"* commanded that|strong=\"H1400\"* Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H4336\"* Abednego be brought. Then|strong=\"H4430\"* these men|strong=\"H1400\"* were|strong=\"H1400\"* brought before|strong=\"H6925\"* the|strong=\"H6925\"* king|strong=\"H4430\"*." + }, + { + "verseNum": 14, + "text": "Nebuchadnezzar|strong=\"H5020\"* answered|strong=\"H6032\"* them, “Is|strong=\"H1768\"* it true|strong=\"H6656\"*, Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H6032\"* Abednego, that|strong=\"H1768\"* you|strong=\"H1768\"* don’t serve|strong=\"H6399\"* my|strong=\"H6399\"* gods and|strong=\"H6032\"* you|strong=\"H1768\"* don’t worship|strong=\"H5457\"* the|strong=\"H5020\"* golden|strong=\"H1722\"* image|strong=\"H6755\"* which|strong=\"H1768\"* I|strong=\"H1768\"* have|strong=\"H5020\"* set|strong=\"H6966\"* up|strong=\"H6966\"*?" + }, + { + "verseNum": 15, + "text": "Now|strong=\"H3705\"* if|strong=\"H2006\"* you|strong=\"H1768\"* are|strong=\"H1768\"* ready|strong=\"H6263\"* whenever you|strong=\"H1768\"* hear|strong=\"H8086\"* the|strong=\"H3606\"* sound|strong=\"H7032\"* of|strong=\"H4481\"* the|strong=\"H3606\"* horn|strong=\"H7162\"*, flute|strong=\"H4953\"*, zither|strong=\"H7030\"*, lyre|strong=\"H7030\"*, harp|strong=\"H6460\"*, pipe, and|strong=\"H5308\"* all|strong=\"H3606\"* kinds|strong=\"H2178\"* of|strong=\"H4481\"* music|strong=\"H2170\"* to|strong=\"H5308\"* fall|strong=\"H5308\"* down|strong=\"H5308\"* and|strong=\"H5308\"* worship|strong=\"H5457\"* the|strong=\"H3606\"* image|strong=\"H6755\"* which|strong=\"H1768\"* I|strong=\"H4481\"* have|strong=\"H1768\"* made|strong=\"H5648\"*, good; but|strong=\"H1768\"* if|strong=\"H2006\"* you|strong=\"H1768\"* don’t worship|strong=\"H5457\"*, you|strong=\"H1768\"* shall|strong=\"H5732\"* be|strong=\"H3809\"* cast|strong=\"H7412\"* the|strong=\"H3606\"* same|strong=\"H1459\"* hour|strong=\"H8160\"* into|strong=\"H1459\"* the|strong=\"H3606\"* middle of|strong=\"H4481\"* a|strong=\"H3068\"* burning|strong=\"H3345\"* fiery|strong=\"H5135\"* furnace. Who|strong=\"H1768\"* is|strong=\"H1768\"* that|strong=\"H1768\"* god who|strong=\"H1768\"* will|strong=\"H1768\"* deliver|strong=\"H7804\"* you|strong=\"H1768\"* out|strong=\"H5648\"* of|strong=\"H4481\"* my|strong=\"H4481\"* hands|strong=\"H3028\"*?”" + }, + { + "verseNum": 16, + "text": "Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H6032\"* Abednego answered|strong=\"H6032\"* the|strong=\"H5922\"* king|strong=\"H4430\"*, “Nebuchadnezzar|strong=\"H5020\"*, we|strong=\"H3068\"* have|strong=\"H5020\"* no|strong=\"H3809\"* need|strong=\"H2818\"* to|strong=\"H5922\"* answer|strong=\"H6600\"* you|strong=\"H5922\"* in|strong=\"H5922\"* this|strong=\"H1836\"* matter|strong=\"H6600\"*." + }, + { + "verseNum": 17, + "text": "If|strong=\"H2006\"* it|strong=\"H2006\"* happens, our|strong=\"H4481\"* God whom|strong=\"H1768\"* we|strong=\"H3068\"* serve|strong=\"H6399\"* is|strong=\"H1768\"* able|strong=\"H3202\"* to|strong=\"H3202\"* deliver|strong=\"H7804\"* us|strong=\"H7804\"* from|strong=\"H4481\"* the|strong=\"H4481\"* burning|strong=\"H3345\"* fiery|strong=\"H5135\"* furnace; and|strong=\"H4430\"* he|strong=\"H1768\"* will|strong=\"H1768\"* deliver|strong=\"H7804\"* us|strong=\"H7804\"* out of|strong=\"H4481\"* your|strong=\"H6399\"* hand|strong=\"H3028\"*, O|strong=\"H3068\"* king|strong=\"H4430\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H1768\"* if|strong=\"H2006\"* not|strong=\"H3809\"*, let it|strong=\"H1934\"* be|strong=\"H1934\"* known|strong=\"H3046\"* to|strong=\"H3046\"* you|strong=\"H1768\"*, O|strong=\"H3068\"* king|strong=\"H4430\"*, that|strong=\"H1768\"* we|strong=\"H3068\"* will|strong=\"H1768\"* not|strong=\"H3809\"* serve|strong=\"H6399\"* your|strong=\"H6399\"* gods or|strong=\"H2006\"* worship|strong=\"H5457\"* the|strong=\"H3046\"* golden|strong=\"H1722\"* image|strong=\"H6755\"* which|strong=\"H1768\"* you|strong=\"H1768\"* have|strong=\"H1934\"* set|strong=\"H6966\"* up|strong=\"H6966\"*.”" + }, + { + "verseNum": 19, + "text": "Then|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* was|strong=\"H5020\"* full|strong=\"H4391\"* of|strong=\"H5922\"* fury|strong=\"H2528\"*, and|strong=\"H6032\"* the|strong=\"H5922\"* form|strong=\"H6755\"* of|strong=\"H5922\"* his|strong=\"H5922\"* appearance was|strong=\"H5020\"* changed|strong=\"H8133\"* against|strong=\"H5922\"* Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H6032\"* Abednego. He|strong=\"H1768\"* spoke|strong=\"H6032\"*, and|strong=\"H6032\"* commanded that|strong=\"H1768\"* they|strong=\"H1768\"* should heat the|strong=\"H5922\"* furnace seven|strong=\"H7655\"* times|strong=\"H7655\"* more|strong=\"H5922\"* than|strong=\"H1768\"* it|strong=\"H5922\"* was|strong=\"H5020\"* usually|strong=\"H2370\"* heated." + }, + { + "verseNum": 20, + "text": "He|strong=\"H1768\"* commanded certain|strong=\"H1400\"* mighty|strong=\"H1401\"* men|strong=\"H1400\"* who|strong=\"H1768\"* were|strong=\"H1400\"* in|strong=\"H1768\"* his|strong=\"H1768\"* army|strong=\"H2429\"* to|strong=\"H2429\"* bind|strong=\"H3729\"* Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H4336\"* Abednego, and|strong=\"H4336\"* to|strong=\"H2429\"* cast|strong=\"H7412\"* them into|strong=\"H7412\"* the|strong=\"H1768\"* burning|strong=\"H3345\"* fiery|strong=\"H5135\"* furnace." + }, + { + "verseNum": 21, + "text": "Then these men|strong=\"H1400\"* were|strong=\"H1400\"* bound|strong=\"H3729\"* in their pants, their tunics, and their mantles, and their other clothes|strong=\"H3831\"*, and were|strong=\"H1400\"* cast|strong=\"H7412\"* into|strong=\"H1459\"* the middle of|strong=\"H1459\"* the burning|strong=\"H3345\"* fiery|strong=\"H5135\"* furnace." + }, + { + "verseNum": 22, + "text": "Therefore|strong=\"H3606\"* because|strong=\"H6903\"* the|strong=\"H3606\"* king|strong=\"H4430\"*’s commandment|strong=\"H4406\"* was|strong=\"H4430\"* urgent|strong=\"H2685\"* and|strong=\"H4336\"* the|strong=\"H3606\"* furnace exceedingly|strong=\"H3493\"* hot, the|strong=\"H3606\"* flame|strong=\"H7631\"* of|strong=\"H4481\"* the|strong=\"H3606\"* fire|strong=\"H5135\"* killed|strong=\"H6992\"* those|strong=\"H1994\"* men|strong=\"H1400\"* who|strong=\"H1768\"* took up|strong=\"H5267\"* Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H4336\"* Abednego." + }, + { + "verseNum": 23, + "text": "These three|strong=\"H8532\"* men|strong=\"H1400\"*, Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H4336\"* Abednego, fell|strong=\"H5308\"* down|strong=\"H5308\"* bound|strong=\"H3729\"* into|strong=\"H1459\"* the middle of|strong=\"H1459\"* the burning|strong=\"H3345\"* fiery|strong=\"H5135\"* furnace." + }, + { + "verseNum": 24, + "text": "Then|strong=\"H4430\"* Nebuchadnezzar|strong=\"H5020\"* the|strong=\"H5020\"* king|strong=\"H4430\"* was|strong=\"H4430\"* astonished and|strong=\"H6032\"* rose up|strong=\"H6966\"* in|strong=\"H4430\"* haste. He|strong=\"H5020\"* spoke|strong=\"H6032\"* and|strong=\"H6032\"* said|strong=\"H6032\"* to|strong=\"H4430\"* his|strong=\"H5020\"* counselors|strong=\"H1907\"*, “Didn’t we|strong=\"H3068\"* cast|strong=\"H7412\"* three|strong=\"H8532\"* men|strong=\"H1400\"* bound|strong=\"H3729\"* into|strong=\"H1459\"* the|strong=\"H5020\"* middle of|strong=\"H4430\"* the|strong=\"H5020\"* fire|strong=\"H5135\"*?”" + }, + { + "verseNum": 25, + "text": "He|strong=\"H1768\"* answered|strong=\"H6032\"*, “Look|strong=\"H1888\"*, I|strong=\"H1768\"* see|strong=\"H2370\"* four men|strong=\"H1400\"* loose|strong=\"H8271\"*, walking|strong=\"H1981\"* in|strong=\"H1981\"* the|strong=\"H1768\"* middle of|strong=\"H1247\"* the|strong=\"H1768\"* fire|strong=\"H5135\"*, and|strong=\"H6032\"* they|strong=\"H1768\"* are|strong=\"H1768\"* unharmed. The|strong=\"H1768\"* appearance|strong=\"H7299\"* of|strong=\"H1247\"* the|strong=\"H1768\"* fourth|strong=\"H7244\"* is|strong=\"H1768\"* like|strong=\"H1821\"* a|strong=\"H3068\"* son|strong=\"H1247\"* of|strong=\"H1247\"* the|strong=\"H1768\"* gods.+ 3:25 Or, the Son of God.*”" + }, + { + "verseNum": 26, + "text": "Then|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* came|strong=\"H7127\"* near|strong=\"H7127\"* to|strong=\"H5312\"* the|strong=\"H4481\"* mouth|strong=\"H8651\"* of|strong=\"H4481\"* the|strong=\"H4481\"* burning|strong=\"H3345\"* fiery|strong=\"H5135\"* furnace. He|strong=\"H1768\"* spoke|strong=\"H6032\"* and|strong=\"H6032\"* said|strong=\"H6032\"*, “Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H6032\"* Abednego, you|strong=\"H1768\"* servants|strong=\"H5649\"* of|strong=\"H4481\"* the|strong=\"H4481\"* Most|strong=\"H5943\"* High|strong=\"H5943\"* God, come|strong=\"H7127\"* out|strong=\"H5312\"*, and|strong=\"H6032\"* come|strong=\"H7127\"* here|strong=\"H5312\"*!”" + }, + { + "verseNum": 27, + "text": "The|strong=\"H1768\"* local governors|strong=\"H6347\"*, the|strong=\"H1768\"* deputies, and|strong=\"H4430\"* the|strong=\"H1768\"* governors|strong=\"H6347\"*, and|strong=\"H4430\"* the|strong=\"H1768\"* king|strong=\"H4430\"*’s counselors|strong=\"H1907\"*, being gathered|strong=\"H3673\"* together|strong=\"H3673\"*, saw|strong=\"H2370\"* these men|strong=\"H1400\"*, that|strong=\"H1768\"* the|strong=\"H1768\"* fire|strong=\"H5135\"* had|strong=\"H4430\"* no|strong=\"H3809\"* power|strong=\"H7981\"* on|strong=\"H7981\"* their bodies|strong=\"H1655\"*. The|strong=\"H1768\"* hair|strong=\"H8177\"* of|strong=\"H4430\"* their head|strong=\"H7217\"* wasn’t singed|strong=\"H2761\"*. Their pants weren’t changed|strong=\"H8133\"*. The|strong=\"H1768\"* smell|strong=\"H7382\"* of|strong=\"H4430\"* fire|strong=\"H5135\"* wasn’t even|strong=\"H1768\"* on|strong=\"H7981\"* them." + }, + { + "verseNum": 28, + "text": "Nebuchadnezzar|strong=\"H5020\"* spoke|strong=\"H6032\"* and|strong=\"H6032\"* said|strong=\"H6032\"*, “Blessed|strong=\"H1289\"* be|strong=\"H3809\"* the|strong=\"H3606\"* God of|strong=\"H4430\"* Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H6032\"* Abednego, who|strong=\"H1768\"* has|strong=\"H1768\"* sent|strong=\"H7972\"* his|strong=\"H5922\"* angel|strong=\"H4398\"* and|strong=\"H6032\"* delivered|strong=\"H7804\"* his|strong=\"H5922\"* servants|strong=\"H5649\"* who|strong=\"H1768\"* trusted|strong=\"H7365\"* in|strong=\"H5922\"* him|strong=\"H5922\"*, and|strong=\"H6032\"* have|strong=\"H5020\"* changed|strong=\"H8133\"* the|strong=\"H3606\"* king|strong=\"H4430\"*’s word|strong=\"H4406\"*, and|strong=\"H6032\"* have|strong=\"H5020\"* yielded|strong=\"H3052\"* their|strong=\"H3606\"* bodies|strong=\"H1655\"*, that|strong=\"H1768\"* they|strong=\"H3606\"* might not|strong=\"H3809\"* serve|strong=\"H6399\"* nor|strong=\"H3809\"* worship|strong=\"H5457\"* any|strong=\"H3606\"* god except|strong=\"H3861\"* their|strong=\"H3606\"* own God." + }, + { + "verseNum": 29, + "text": "Therefore|strong=\"H3606\"* I|strong=\"H4481\"* make|strong=\"H7761\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* that|strong=\"H1768\"* every|strong=\"H3606\"* people|strong=\"H5972\"*, nation, and|strong=\"H4336\"* language|strong=\"H3961\"* which|strong=\"H1768\"* speak anything evil against|strong=\"H5922\"* the|strong=\"H3606\"* God of|strong=\"H4481\"* Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H4336\"* Abednego shall|strong=\"H3606\"* be|strong=\"H3809\"* cut|strong=\"H5648\"* in|strong=\"H5922\"* pieces|strong=\"H1917\"*, and|strong=\"H4336\"* their|strong=\"H3606\"* houses|strong=\"H1005\"* shall|strong=\"H3606\"* be|strong=\"H3809\"* made|strong=\"H5648\"* a|strong=\"H3068\"* dunghill|strong=\"H5122\"*, because|strong=\"H6903\"* there|strong=\"H6903\"* is|strong=\"H1768\"* no|strong=\"H3809\"* other god who|strong=\"H1768\"* is|strong=\"H1768\"* able|strong=\"H3202\"* to|strong=\"H5922\"* deliver|strong=\"H5338\"* like this|strong=\"H1836\"*.”" + }, + { + "verseNum": 30, + "text": "Then|strong=\"H4430\"* the|strong=\"H4430\"* king|strong=\"H4430\"* promoted|strong=\"H6744\"* Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H4336\"* Abednego in|strong=\"H4430\"* the|strong=\"H4430\"* province|strong=\"H4083\"* of|strong=\"H4430\"* Babylon." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Nebuchadnezzar|strong=\"H5020\"* the|strong=\"H5020\"* king," + }, + { + "verseNum": 2, + "text": "It|strong=\"H5922\"* has seemed good to|strong=\"H5922\"* me|strong=\"H5922\"* to|strong=\"H5922\"* show the|strong=\"H5922\"* signs and|strong=\"H1763\"* wonders that|strong=\"H1763\"* the|strong=\"H5922\"* Most High God has worked toward|strong=\"H5922\"* me|strong=\"H5922\"*." + }, + { + "verseNum": 3, + "text": "How great are|strong=\"H1768\"* his|strong=\"H4481\"* signs!" + }, + { + "verseNum": 4, + "text": "I, Nebuchadnezzar, was at rest in|strong=\"H5954\"* my house, and|strong=\"H2493\"* flourishing in|strong=\"H5954\"* my palace." + }, + { + "verseNum": 5, + "text": "I|strong=\"H1768\"* saw a|strong=\"H3068\"* dream|strong=\"H2493\"* which|strong=\"H1768\"* made me|strong=\"H6925\"* afraid; and|strong=\"H2493\"* the|strong=\"H6925\"* thoughts on|strong=\"H5705\"* my|strong=\"H1768\"* bed and|strong=\"H2493\"* the|strong=\"H6925\"* visions of|strong=\"H1768\"* my|strong=\"H1768\"* head troubled me|strong=\"H6925\"*." + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3606\"* I|strong=\"H1768\"* made|strong=\"H3046\"* a|strong=\"H3068\"* decree to|strong=\"H3046\"* bring in|strong=\"H7229\"* all|strong=\"H3606\"* the|strong=\"H3606\"* wise men of|strong=\"H1768\"* Babylon before me, that|strong=\"H1768\"* they|strong=\"H3606\"* might make|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H3046\"* me the|strong=\"H3606\"* interpretation|strong=\"H6591\"* of|strong=\"H1768\"* the|strong=\"H3606\"* dream|strong=\"H2493\"*." + }, + { + "verseNum": 7, + "text": "Then the|strong=\"H5922\"* magicians, the|strong=\"H5922\"* enchanters, the|strong=\"H5922\"* Chaldeans, and|strong=\"H1934\"* the|strong=\"H5922\"* soothsayers came in|strong=\"H5922\"*; and|strong=\"H1934\"* I told them|strong=\"H5922\"* the|strong=\"H5922\"* dream, but they didn’t make known|strong=\"H1934\"* to|strong=\"H5922\"* me|strong=\"H5922\"* its interpretation." + }, + { + "verseNum": 8, + "text": "But|strong=\"H3606\"* at last, Daniel came|strong=\"H4291\"* in|strong=\"H8631\"* before me, whose|strong=\"H3606\"* name was|strong=\"H3606\"* Belteshazzar according to|strong=\"H8065\"* the|strong=\"H3606\"* name of|strong=\"H3606\"* my god, and|strong=\"H8065\"* in|strong=\"H8631\"* whom is|strong=\"H3606\"* the|strong=\"H3606\"* spirit of|strong=\"H3606\"* the|strong=\"H3606\"* holy gods. I told the|strong=\"H3606\"* dream before him, saying," + }, + { + "verseNum": 9, + "text": "“Belteshazzar, master of|strong=\"H4481\"* the|strong=\"H3606\"* magicians, because|strong=\"H4481\"* I|strong=\"H4481\"* know that|strong=\"H3606\"* the|strong=\"H3606\"* spirit of|strong=\"H4481\"* the|strong=\"H3606\"* holy gods is|strong=\"H3606\"* in|strong=\"H1753\"* you|strong=\"H4481\"* and|strong=\"H8065\"* no|strong=\"H3606\"* secret troubles you|strong=\"H4481\"*, tell me|strong=\"H4481\"* the|strong=\"H3606\"* visions of|strong=\"H4481\"* my|strong=\"H4481\"* dream that|strong=\"H3606\"* I|strong=\"H4481\"* have seen, and|strong=\"H8065\"* its|strong=\"H4481\"* interpretation." + }, + { + "verseNum": 10, + "text": "These|strong=\"H4481\"* were|strong=\"H1934\"* the|strong=\"H5922\"* visions|strong=\"H2376\"* of|strong=\"H4481\"* my|strong=\"H5922\"* head|strong=\"H7217\"* on|strong=\"H5922\"* my|strong=\"H5922\"* bed|strong=\"H4903\"*: I|strong=\"H4481\"* saw|strong=\"H2370\"*, and|strong=\"H8065\"* behold, a|strong=\"H3068\"* tree in|strong=\"H5922\"* the|strong=\"H5922\"* middle of|strong=\"H4481\"* the|strong=\"H5922\"* earth; and|strong=\"H8065\"* its|strong=\"H4481\"* height was|strong=\"H1934\"* great." + }, + { + "verseNum": 11, + "text": "The|strong=\"H4481\"* tree grew and|strong=\"H3652\"* was|strong=\"H2423\"* strong. Its|strong=\"H7113\"* height reached to|strong=\"H2429\"* the|strong=\"H4481\"* sky and|strong=\"H3652\"* its|strong=\"H7113\"* sight to|strong=\"H2429\"* the|strong=\"H4481\"* end of|strong=\"H4481\"* all the|strong=\"H4481\"* earth." + }, + { + "verseNum": 12, + "text": "Its leaves were|strong=\"H1768\"* beautiful, and|strong=\"H6523\"* it had|strong=\"H1768\"* much fruit, and|strong=\"H6523\"* in|strong=\"H2508\"* it was|strong=\"H2423\"* food for|strong=\"H1768\"* all. The|strong=\"H1768\"* animals|strong=\"H2423\"* of|strong=\"H2920\"* the|strong=\"H1768\"* field|strong=\"H1251\"* had|strong=\"H1768\"* shade under it, and|strong=\"H6523\"* the|strong=\"H1768\"* birds of|strong=\"H2920\"* the|strong=\"H1768\"* sky|strong=\"H8065\"* lived in|strong=\"H2508\"* its branches, and|strong=\"H6523\"* all flesh was|strong=\"H2423\"* fed from|strong=\"H1768\"* it." + }, + { + "verseNum": 13, + "text": "“I|strong=\"H4481\"* saw in|strong=\"H5922\"* the|strong=\"H5922\"* visions of|strong=\"H4481\"* my|strong=\"H5922\"* head on|strong=\"H5922\"* my|strong=\"H5922\"* bed, and|strong=\"H5732\"* behold, a|strong=\"H3068\"* holy watcher came|strong=\"H2423\"* down from|strong=\"H4481\"* the|strong=\"H5922\"* sky." + }, + { + "verseNum": 14, + "text": "He|strong=\"H1768\"* cried aloud and|strong=\"H4437\"* said this|strong=\"H5922\"*: ‘Cut down the|strong=\"H5922\"* tree, and|strong=\"H4437\"* cut off its|strong=\"H3046\"* branches! Shake off its|strong=\"H3046\"* leaves and|strong=\"H4437\"* scatter its|strong=\"H3046\"* fruit! Let the|strong=\"H5922\"* animals get away from|strong=\"H1768\"* under it|strong=\"H5922\"* and|strong=\"H4437\"* the|strong=\"H5922\"* birds from|strong=\"H1768\"* its|strong=\"H3046\"* branches." + }, + { + "verseNum": 15, + "text": "Nevertheless leave the|strong=\"H3606\"* stump of|strong=\"H4437\"* its|strong=\"H6591\"* roots in|strong=\"H4430\"* the|strong=\"H3606\"* earth, even|strong=\"H1768\"* with|strong=\"H6903\"* a|strong=\"H3068\"* band of|strong=\"H4437\"* iron and|strong=\"H4430\"* bronze, in|strong=\"H4430\"* the|strong=\"H3606\"* tender grass of|strong=\"H4437\"* the|strong=\"H3606\"* field; and|strong=\"H4430\"* let it be|strong=\"H3809\"* wet with|strong=\"H6903\"* the|strong=\"H3606\"* dew of|strong=\"H4437\"* the|strong=\"H3606\"* sky. Let his|strong=\"H3046\"* portion be|strong=\"H3809\"* with|strong=\"H6903\"* the|strong=\"H3606\"* animals in|strong=\"H4430\"* the|strong=\"H3606\"* grass of|strong=\"H4437\"* the|strong=\"H3606\"* earth." + }, + { + "verseNum": 16, + "text": "Let his|strong=\"H1768\"* heart be|strong=\"H8160\"* changed from|strong=\"H1768\"* man’s, and|strong=\"H6032\"* let an|strong=\"H4430\"* animal’s heart be|strong=\"H8160\"* given to|strong=\"H8036\"* him. Then|strong=\"H1768\"* let seven|strong=\"H2298\"* times|strong=\"H2298\"* pass over him." + }, + { + "verseNum": 17, + "text": "“‘The|strong=\"H3606\"* sentence is|strong=\"H1768\"* by the|strong=\"H3606\"* decree of|strong=\"H1768\"* the|strong=\"H3606\"* watchers and|strong=\"H8065\"* the|strong=\"H3606\"* demand by the|strong=\"H3606\"* word of|strong=\"H1768\"* the|strong=\"H3606\"* holy ones, to|strong=\"H8065\"* the|strong=\"H3606\"* intent that|strong=\"H1768\"* the|strong=\"H3606\"* living may know that|strong=\"H1768\"* the|strong=\"H3606\"* Most High rules in|strong=\"H8631\"* the|strong=\"H3606\"* kingdom of|strong=\"H1768\"* men, and|strong=\"H8065\"* gives it to|strong=\"H8065\"* whomever|strong=\"H1768\"* he|strong=\"H1768\"* will|strong=\"H1768\"*, and|strong=\"H8065\"* sets up over it the|strong=\"H3606\"* lowest of|strong=\"H1768\"* men.’" + }, + { + "verseNum": 18, + "text": "“This|strong=\"H3606\"* dream I, King Nebuchadnezzar, have seen; and|strong=\"H8065\"* you, Belteshazzar, declare the|strong=\"H3606\"* interpretation, because|strong=\"H3606\"* all|strong=\"H3606\"* the|strong=\"H3606\"* wise men of|strong=\"H3606\"* my kingdom are not able to|strong=\"H8065\"* make known to|strong=\"H8065\"* me the|strong=\"H3606\"* interpretation; but|strong=\"H3606\"* you are able, for|strong=\"H4203\"* the|strong=\"H3606\"* spirit of|strong=\"H3606\"* the|strong=\"H3606\"* holy gods is|strong=\"H3606\"* in|strong=\"H1753\"* you.”" + }, + { + "verseNum": 19, + "text": "Then|strong=\"H1768\"* Daniel, whose|strong=\"H1768\"* name was|strong=\"H4430\"* Belteshazzar, was|strong=\"H4430\"* stricken mute for|strong=\"H1768\"* a|strong=\"H3068\"* while, and|strong=\"H4430\"* his|strong=\"H1768\"* thoughts troubled him. The|strong=\"H1768\"* king|strong=\"H4430\"* answered, “Belteshazzar, don’t let the|strong=\"H1768\"* dream or|strong=\"H4430\"* the|strong=\"H1768\"* interpretation, trouble you|strong=\"H1768\"*.”" + }, + { + "verseNum": 20, + "text": "The|strong=\"H5922\"* tree that|strong=\"H1768\"* you|strong=\"H1768\"* saw|strong=\"H2370\"*, which|strong=\"H1768\"* grew and|strong=\"H4430\"* was|strong=\"H4430\"* strong, whose|strong=\"H1768\"* height reached to|strong=\"H5922\"* the|strong=\"H5922\"* sky|strong=\"H8065\"* and|strong=\"H4430\"* its|strong=\"H5705\"* sight to|strong=\"H5922\"* all the|strong=\"H5922\"* earth;" + }, + { + "verseNum": 21, + "text": "whose|strong=\"H1768\"* leaves were|strong=\"H1768\"* beautiful and|strong=\"H4430\"* its|strong=\"H6591\"* fruit plentiful, and|strong=\"H4430\"* in|strong=\"H5922\"* it|strong=\"H5922\"* was|strong=\"H4430\"* food for|strong=\"H5922\"* all; under which|strong=\"H1768\"* the|strong=\"H5922\"* animals of|strong=\"H4430\"* the|strong=\"H5922\"* field lived, and|strong=\"H4430\"* on|strong=\"H5922\"* whose|strong=\"H1768\"* branches the|strong=\"H5922\"* birds of|strong=\"H4430\"* the|strong=\"H5922\"* sky had|strong=\"H4430\"* their habitation—" + }, + { + "verseNum": 22, + "text": "it|strong=\"H5922\"* is|strong=\"H1768\"* you|strong=\"H1768\"*, O|strong=\"H3068\"* king, that|strong=\"H1768\"* have|strong=\"H1934\"* grown and|strong=\"H4437\"* become strong; for|strong=\"H5922\"* your|strong=\"H1768\"* greatness has|strong=\"H1768\"* grown, and|strong=\"H4437\"* reaches to|strong=\"H5922\"* the|strong=\"H5922\"* sky|strong=\"H8065\"*, and|strong=\"H4437\"* your|strong=\"H1768\"* dominion to|strong=\"H5922\"* the|strong=\"H5922\"* end of|strong=\"H4481\"* the|strong=\"H5922\"* earth." + }, + { + "verseNum": 23, + "text": "“Whereas|strong=\"H1768\"* the|strong=\"H4481\"* king saw a|strong=\"H3068\"* holy watcher coming down from|strong=\"H4481\"* the|strong=\"H4481\"* sky|strong=\"H8065\"* and|strong=\"H4437\"* saying, ‘Cut down the|strong=\"H4481\"* tree, and|strong=\"H4437\"* destroy it|strong=\"H4481\"*; nevertheless leave|strong=\"H7662\"* the|strong=\"H4481\"* stump|strong=\"H6136\"* of|strong=\"H4481\"* its|strong=\"H3046\"* roots|strong=\"H8330\"* in|strong=\"H4437\"* the|strong=\"H4481\"* earth, even|strong=\"H1768\"* with a|strong=\"H3068\"* band of|strong=\"H4481\"* iron and|strong=\"H4437\"* bronze, in|strong=\"H4437\"* the|strong=\"H4481\"* tender grass of|strong=\"H4481\"* the|strong=\"H4481\"* field, and|strong=\"H4437\"* let it|strong=\"H4481\"* be wet with the|strong=\"H4481\"* dew of|strong=\"H4481\"* the|strong=\"H4481\"* sky|strong=\"H8065\"*. Let his|strong=\"H4481\"* portion be with the|strong=\"H4481\"* animals of|strong=\"H4481\"* the|strong=\"H4481\"* field, until seven times pass over|strong=\"H7990\"* him|strong=\"H4481\"*.’" + }, + { + "verseNum": 24, + "text": "“This|strong=\"H5922\"* is the|strong=\"H5922\"* interpretation, O|strong=\"H3068\"* king|strong=\"H4430\"*, and|strong=\"H4430\"* it|strong=\"H5922\"* is the|strong=\"H5922\"* decree of|strong=\"H4430\"* the|strong=\"H5922\"* Most High, which has|strong=\"H4430\"* come on|strong=\"H5922\"* my|strong=\"H5922\"* lord the|strong=\"H5922\"* king|strong=\"H4430\"*:" + }, + { + "verseNum": 25, + "text": "You|strong=\"H5922\"* will|strong=\"H4430\"* be driven from men and|strong=\"H4430\"* your|strong=\"H5020\"* dwelling shall|strong=\"H3606\"* be with|strong=\"H5922\"* the|strong=\"H3606\"* animals of|strong=\"H4430\"* the|strong=\"H3606\"* field. You|strong=\"H5922\"* will|strong=\"H4430\"* be made to|strong=\"H5922\"* eat grass as|strong=\"H3606\"* oxen, and|strong=\"H4430\"* will|strong=\"H4430\"* be wet with|strong=\"H5922\"* the|strong=\"H3606\"* dew of|strong=\"H4430\"* the|strong=\"H3606\"* sky, and|strong=\"H4430\"* seven times shall|strong=\"H3606\"* pass over|strong=\"H5922\"* you|strong=\"H5922\"*, until you|strong=\"H5922\"* know that|strong=\"H3606\"* the|strong=\"H3606\"* Most High rules in|strong=\"H5922\"* the|strong=\"H3606\"* kingdom of|strong=\"H4430\"* men, and|strong=\"H4430\"* gives it|strong=\"H5922\"* to|strong=\"H5922\"* whomever he|strong=\"H5020\"* will|strong=\"H4430\"*." + }, + { + "verseNum": 26, + "text": "Whereas|strong=\"H1768\"* it|strong=\"H5922\"* was|strong=\"H1934\"* commanded to|strong=\"H5922\"* leave the|strong=\"H5922\"* stump of|strong=\"H4437\"* the|strong=\"H5922\"* roots of|strong=\"H4437\"* the|strong=\"H5922\"* tree, your|strong=\"H1768\"* kingdom|strong=\"H4437\"* shall|strong=\"H4437\"* be|strong=\"H1934\"* sure to|strong=\"H5922\"* you|strong=\"H1768\"* after|strong=\"H7118\"* you|strong=\"H1768\"* know that|strong=\"H1768\"* Heaven rules." + }, + { + "verseNum": 27, + "text": "Therefore, O|strong=\"H3068\"* king|strong=\"H4430\"*, let my|strong=\"H4430\"* counsel be|strong=\"H3809\"* acceptable to|strong=\"H4430\"* you|strong=\"H1768\"*, and|strong=\"H6032\"* break off your|strong=\"H1768\"* sins by righteousness, and|strong=\"H6032\"* your|strong=\"H1768\"* iniquities by showing mercy to|strong=\"H4430\"* the|strong=\"H1768\"* poor. Perhaps there|strong=\"H1768\"* may be|strong=\"H3809\"* a|strong=\"H3068\"* lengthening of|strong=\"H1005\"* your|strong=\"H1768\"* tranquility.”" + }, + { + "verseNum": 28, + "text": "All this|strong=\"H4481\"* came|strong=\"H5020\"* on the|strong=\"H4481\"* King|strong=\"H4430\"* Nebuchadnezzar|strong=\"H5020\"*." + }, + { + "verseNum": 29, + "text": "At|strong=\"H5705\"* the|strong=\"H5922\"* end of|strong=\"H4481\"* twelve months he|strong=\"H1768\"* was|strong=\"H2423\"* walking in|strong=\"H5922\"* the|strong=\"H5922\"* royal|strong=\"H4437\"* palace of|strong=\"H4481\"* Babylon." + }, + { + "verseNum": 30, + "text": "The|strong=\"H5922\"* king spoke and|strong=\"H8065\"* said, “Is|strong=\"H1768\"* not this|strong=\"H5922\"* great|strong=\"H7236\"* Babylon, which|strong=\"H1768\"* I|strong=\"H4481\"* have|strong=\"H5020\"* built for|strong=\"H5922\"* the|strong=\"H5922\"* royal dwelling place by|strong=\"H4481\"* the|strong=\"H5922\"* might of|strong=\"H4481\"* my|strong=\"H5922\"* power and|strong=\"H8065\"* for|strong=\"H5922\"* the|strong=\"H5922\"* glory of|strong=\"H4481\"* my|strong=\"H5922\"* majesty?”" + }, + { + "verseNum": 31, + "text": "While the|strong=\"H5922\"* word was|strong=\"H7985\"* in|strong=\"H5922\"* the|strong=\"H5922\"* king’s mouth, a|strong=\"H3068\"* voice came|strong=\"H1768\"* from|strong=\"H1768\"* the|strong=\"H5922\"* sky|strong=\"H8065\"*, saying, “O|strong=\"H3068\"* King Nebuchadnezzar|strong=\"H5020\"*, to|strong=\"H5922\"* you|strong=\"H1768\"* it|strong=\"H5922\"* is|strong=\"H1768\"* spoken: ‘The|strong=\"H5922\"* kingdom|strong=\"H4437\"* has|strong=\"H1768\"* departed from|strong=\"H1768\"* you|strong=\"H1768\"*." + }, + { + "verseNum": 32, + "text": "You|strong=\"H1768\"* shall|strong=\"H4101\"* be|strong=\"H3809\"* driven from|strong=\"H1768\"* men, and|strong=\"H8065\"* your|strong=\"H1768\"* dwelling shall|strong=\"H4101\"* be|strong=\"H3809\"* with|strong=\"H5648\"* the|strong=\"H3606\"* animals of|strong=\"H1768\"* the|strong=\"H3606\"* field. You|strong=\"H1768\"* shall|strong=\"H4101\"* be|strong=\"H3809\"* made|strong=\"H5648\"* to|strong=\"H2429\"* eat grass like oxen. Seven times shall|strong=\"H4101\"* pass|strong=\"H3809\"* over you|strong=\"H1768\"*, until you|strong=\"H1768\"* know that|strong=\"H1768\"* the|strong=\"H3606\"* Most|strong=\"H2429\"* High rules in|strong=\"H1753\"* the|strong=\"H3606\"* kingdom of|strong=\"H1768\"* men, and|strong=\"H8065\"* gives it to|strong=\"H2429\"* whomever|strong=\"H1768\"* he|strong=\"H1768\"* will|strong=\"H6634\"*.’”" + }, + { + "verseNum": 33, + "text": "This|strong=\"H5922\"* was|strong=\"H7238\"* fulfilled the|strong=\"H5922\"* same hour on|strong=\"H5922\"* Nebuchadnezzar. He was|strong=\"H7238\"* driven from|strong=\"H3367\"* men|strong=\"H4437\"* and|strong=\"H4437\"* ate grass like oxen; and|strong=\"H4437\"* his|strong=\"H5922\"* body was|strong=\"H7238\"* wet with|strong=\"H8421\"* the|strong=\"H5922\"* dew of|strong=\"H4437\"* the|strong=\"H5922\"* sky until his|strong=\"H5922\"* hair had grown like eagles’ feathers, and|strong=\"H4437\"* his|strong=\"H5922\"* nails like birds’ claws." + }, + { + "verseNum": 34, + "text": "At the|strong=\"H3606\"* end of|strong=\"H4430\"* the|strong=\"H3606\"* days I|strong=\"H1768\"*, Nebuchadnezzar|strong=\"H5020\"*, lifted|strong=\"H5020\"* up|strong=\"H7313\"* my|strong=\"H4430\"* eyes to|strong=\"H3202\"* heaven|strong=\"H8065\"*, and|strong=\"H4430\"* my|strong=\"H4430\"* understanding returned to|strong=\"H3202\"* me; and|strong=\"H4430\"* I|strong=\"H1768\"* blessed the|strong=\"H3606\"* Most High, and|strong=\"H4430\"* I|strong=\"H1768\"* praised|strong=\"H7624\"* and|strong=\"H4430\"* honored|strong=\"H1922\"* him who|strong=\"H1768\"* lives forever," + }, + { + "verseNum": 35, + "text": "All the inhabitants of the earth are reputed as nothing;" + }, + { + "verseNum": 36, + "text": "At the same time my understanding returned to me; and for the glory of my kingdom, my majesty and brightness returned to me. My counselors and my lords sought me; and I was established in my kingdom, and excellent greatness was added to me." + }, + { + "verseNum": 37, + "text": "Now I, Nebuchadnezzar, praise and extol and honor the King of heaven; for all his works are truth, and his ways justice; and those who walk in pride he is able to abase." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Belshazzar|strong=\"H1113\"* the|strong=\"H4430\"* king|strong=\"H4430\"* made|strong=\"H5648\"* a|strong=\"H3068\"* great|strong=\"H7229\"* feast|strong=\"H3900\"* to|strong=\"H4430\"* a|strong=\"H3068\"* thousand of|strong=\"H4430\"* his lords|strong=\"H7261\"*, and|strong=\"H4430\"* drank|strong=\"H8355\"* wine|strong=\"H2562\"* before|strong=\"H6903\"* the|strong=\"H4430\"* thousand." + }, + { + "verseNum": 2, + "text": "Belshazzar|strong=\"H1113\"*, while he|strong=\"H1768\"* tasted the|strong=\"H4481\"* wine|strong=\"H2562\"*, commanded|strong=\"H4481\"* that|strong=\"H1768\"* the|strong=\"H4481\"* golden|strong=\"H1722\"* and|strong=\"H4430\"* silver|strong=\"H3702\"* vessels|strong=\"H3984\"* which|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* his|strong=\"H4481\"* father had|strong=\"H4430\"* taken|strong=\"H5312\"* out|strong=\"H5312\"* of|strong=\"H4481\"* the|strong=\"H4481\"* temple|strong=\"H1965\"* which|strong=\"H1768\"* was|strong=\"H4430\"* in|strong=\"H4430\"* Jerusalem|strong=\"H3390\"* be brought|strong=\"H5312\"* to|strong=\"H4481\"* him|strong=\"H4481\"*, that|strong=\"H1768\"* the|strong=\"H4481\"* king|strong=\"H4430\"* and|strong=\"H4430\"* his|strong=\"H4481\"* lords|strong=\"H7261\"*, his|strong=\"H4481\"* wives|strong=\"H7695\"* and|strong=\"H4430\"* his|strong=\"H4481\"* concubines|strong=\"H3904\"*, might|strong=\"H3904\"* drink|strong=\"H8355\"* from|strong=\"H4481\"* them." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H1768\"* they|strong=\"H1768\"* brought|strong=\"H5312\"* the|strong=\"H4481\"* golden|strong=\"H1722\"* vessels|strong=\"H3984\"* that|strong=\"H1768\"* were|strong=\"H1768\"* taken|strong=\"H5312\"* out|strong=\"H5312\"* of|strong=\"H4481\"* the|strong=\"H4481\"* temple|strong=\"H1005\"* of|strong=\"H4481\"* God’s house|strong=\"H1005\"* which|strong=\"H1768\"* was|strong=\"H4430\"* at Jerusalem|strong=\"H3390\"*; and|strong=\"H4430\"* the|strong=\"H4481\"* king|strong=\"H4430\"* and|strong=\"H4430\"* his|strong=\"H4481\"* lords|strong=\"H7261\"*, his|strong=\"H4481\"* wives|strong=\"H7695\"* and|strong=\"H4430\"* his|strong=\"H4481\"* concubines|strong=\"H3904\"*, drank|strong=\"H8355\"* from|strong=\"H4481\"* them." + }, + { + "verseNum": 4, + "text": "They drank|strong=\"H8355\"* wine|strong=\"H2562\"*, and|strong=\"H6523\"* praised|strong=\"H7624\"* the|strong=\"H7624\"* gods of gold|strong=\"H1722\"*, and|strong=\"H6523\"* of silver|strong=\"H3702\"*, of bronze|strong=\"H5174\"*, of iron|strong=\"H6523\"*, of wood, and|strong=\"H6523\"* of stone." + }, + { + "verseNum": 5, + "text": "In|strong=\"H5922\"* the|strong=\"H5922\"* same hour|strong=\"H8160\"*, the|strong=\"H5922\"* fingers of|strong=\"H4430\"* a|strong=\"H3068\"* man’s hand|strong=\"H3028\"* came|strong=\"H1768\"* out|strong=\"H5312\"* and|strong=\"H4430\"* wrote|strong=\"H3790\"* near the|strong=\"H5922\"* lamp stand on|strong=\"H5922\"* the|strong=\"H5922\"* plaster|strong=\"H1528\"* of|strong=\"H4430\"* the|strong=\"H5922\"* wall|strong=\"H3797\"* of|strong=\"H4430\"* the|strong=\"H5922\"* king|strong=\"H4430\"*’s palace|strong=\"H1965\"*. The|strong=\"H5922\"* king|strong=\"H4430\"* saw|strong=\"H2370\"* the|strong=\"H5922\"* part|strong=\"H6447\"* of|strong=\"H4430\"* the|strong=\"H5922\"* hand|strong=\"H3028\"* that|strong=\"H1768\"* wrote|strong=\"H3790\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H4430\"* the|strong=\"H4430\"* king|strong=\"H4430\"*’s face|strong=\"H2122\"* was|strong=\"H4430\"* changed|strong=\"H8133\"* in|strong=\"H8133\"* him, and|strong=\"H4430\"* his thoughts|strong=\"H7476\"* troubled him; and|strong=\"H4430\"* the|strong=\"H4430\"* joints|strong=\"H7001\"* of|strong=\"H4430\"* his thighs were|strong=\"H2783\"* loosened, and|strong=\"H4430\"* his knees struck one|strong=\"H1668\"* against|strong=\"H1668\"* another|strong=\"H1668\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3606\"* king|strong=\"H4430\"* cried|strong=\"H7123\"* aloud|strong=\"H2429\"* to|strong=\"H5922\"* bring|strong=\"H5954\"* in|strong=\"H5954\"* the|strong=\"H3606\"* enchanters, the|strong=\"H3606\"* Chaldeans|strong=\"H3779\"*, and|strong=\"H6032\"* the|strong=\"H3606\"* soothsayers|strong=\"H1505\"*. The|strong=\"H3606\"* king|strong=\"H4430\"* spoke|strong=\"H6032\"* and|strong=\"H6032\"* said|strong=\"H6032\"* to|strong=\"H5922\"* the|strong=\"H3606\"* wise|strong=\"H2445\"* men|strong=\"H2445\"* of|strong=\"H4437\"* Babylon, “Whoever reads this|strong=\"H1836\"* writing|strong=\"H3792\"* and|strong=\"H6032\"* shows me|strong=\"H5922\"* its|strong=\"H6591\"* interpretation|strong=\"H6591\"* shall|strong=\"H4437\"* be clothed|strong=\"H3848\"* with|strong=\"H3848\"* purple, and|strong=\"H6032\"* have|strong=\"H7981\"* a|strong=\"H3068\"* chain|strong=\"H2002\"* of|strong=\"H4437\"* gold|strong=\"H1722\"* about|strong=\"H5922\"* his|strong=\"H5922\"* neck|strong=\"H6676\"*, and|strong=\"H6032\"* shall|strong=\"H4437\"* be the|strong=\"H3606\"* third|strong=\"H8523\"* ruler|strong=\"H7981\"* in|strong=\"H5954\"* the|strong=\"H3606\"* kingdom|strong=\"H4437\"*.”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H4430\"* all|strong=\"H3606\"* the|strong=\"H3606\"* king|strong=\"H4430\"*’s wise|strong=\"H2445\"* men|strong=\"H2445\"* came|strong=\"H5954\"* in|strong=\"H5954\"*; but|strong=\"H3606\"* they|strong=\"H3606\"* could|strong=\"H3546\"* not|strong=\"H3809\"* read|strong=\"H7123\"* the|strong=\"H3606\"* writing|strong=\"H3792\"*, and|strong=\"H4430\"* couldn’t make|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H3046\"* the|strong=\"H3606\"* king|strong=\"H4430\"* the|strong=\"H3606\"* interpretation|strong=\"H6591\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H4430\"* King|strong=\"H4430\"* Belshazzar|strong=\"H1113\"* was|strong=\"H4430\"* greatly|strong=\"H7690\"* troubled, and|strong=\"H4430\"* his|strong=\"H5922\"* face|strong=\"H2122\"* was|strong=\"H4430\"* changed|strong=\"H8133\"* in|strong=\"H5922\"* him|strong=\"H5922\"*, and|strong=\"H4430\"* his|strong=\"H5922\"* lords|strong=\"H7261\"* were|strong=\"H7261\"* perplexed|strong=\"H7672\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H4430\"* queen|strong=\"H4433\"* by reason|strong=\"H6903\"* of|strong=\"H1005\"* the|strong=\"H4430\"* words|strong=\"H4406\"* of|strong=\"H1005\"* the|strong=\"H4430\"* king|strong=\"H4430\"* and|strong=\"H6032\"* his|strong=\"H5954\"* lords|strong=\"H7261\"* came|strong=\"H5954\"* into|strong=\"H5954\"* the|strong=\"H4430\"* banquet|strong=\"H4961\"* house|strong=\"H1005\"*. The|strong=\"H4430\"* queen|strong=\"H4433\"* spoke|strong=\"H6032\"* and|strong=\"H6032\"* said|strong=\"H6032\"*, “O|strong=\"H3068\"* king|strong=\"H4430\"*, live|strong=\"H2418\"* forever|strong=\"H5957\"*; don’t let your thoughts|strong=\"H7476\"* trouble you|strong=\"H6903\"*, nor let your face|strong=\"H2122\"* be|strong=\"H2122\"* changed|strong=\"H8133\"*." + }, + { + "verseNum": 11, + "text": "There|strong=\"H1768\"* is|strong=\"H1768\"* a|strong=\"H3068\"* man|strong=\"H1400\"* in|strong=\"H4430\"* your|strong=\"H1768\"* kingdom|strong=\"H4437\"* in|strong=\"H4430\"* whom|strong=\"H1768\"* is|strong=\"H1768\"* the|strong=\"H5020\"* spirit|strong=\"H7308\"* of|strong=\"H4437\"* the|strong=\"H5020\"* holy|strong=\"H6922\"* gods; and|strong=\"H4430\"* in|strong=\"H4430\"* the|strong=\"H5020\"* days|strong=\"H3118\"* of|strong=\"H4437\"* your|strong=\"H1768\"* father, light|strong=\"H5094\"* and|strong=\"H4430\"* understanding|strong=\"H7924\"* and|strong=\"H4430\"* wisdom|strong=\"H2452\"*, like the|strong=\"H5020\"* wisdom|strong=\"H2452\"* of|strong=\"H4437\"* the|strong=\"H5020\"* gods, were|strong=\"H1400\"* found|strong=\"H7912\"* in|strong=\"H4430\"* him|strong=\"H6966\"*. The|strong=\"H5020\"* king|strong=\"H4430\"*, Nebuchadnezzar|strong=\"H5020\"*, your|strong=\"H1768\"* father—yes, the|strong=\"H5020\"* king|strong=\"H4430\"*, your|strong=\"H1768\"* father—made|strong=\"H6966\"* him|strong=\"H6966\"* master|strong=\"H7229\"* of|strong=\"H4437\"* the|strong=\"H5020\"* magicians|strong=\"H2749\"*, enchanters, Chaldeans|strong=\"H3779\"*, and|strong=\"H4430\"* soothsayers|strong=\"H1505\"*," + }, + { + "verseNum": 12, + "text": "because|strong=\"H6903\"* an|strong=\"H4430\"* excellent|strong=\"H3493\"* spirit|strong=\"H7308\"*, knowledge|strong=\"H4486\"*, understanding|strong=\"H7924\"*, interpreting|strong=\"H6590\"* of|strong=\"H4430\"* dreams|strong=\"H2493\"*, showing of|strong=\"H4430\"* dark sentences, and|strong=\"H4430\"* dissolving|strong=\"H8271\"* of|strong=\"H4430\"* doubts|strong=\"H7001\"* were|strong=\"H1768\"* found|strong=\"H7912\"* in|strong=\"H4430\"* the|strong=\"H3606\"* same Daniel|strong=\"H1841\"*, whom|strong=\"H1768\"* the|strong=\"H3606\"* king|strong=\"H4430\"* named|strong=\"H8036\"* Belteshazzar|strong=\"H1096\"*. Now|strong=\"H3705\"* let|strong=\"H3705\"* Daniel|strong=\"H1841\"* be|strong=\"H1841\"* called|strong=\"H7123\"*, and|strong=\"H4430\"* he|strong=\"H1768\"* will|strong=\"H1768\"* show the|strong=\"H3606\"* interpretation|strong=\"H6591\"*.”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H1768\"* Daniel|strong=\"H1841\"* was|strong=\"H1841\"* brought|strong=\"H5954\"* in|strong=\"H5954\"* before|strong=\"H6925\"* the|strong=\"H4481\"* king|strong=\"H4430\"*. The|strong=\"H4481\"* king|strong=\"H4430\"* spoke|strong=\"H6032\"* and|strong=\"H6032\"* said|strong=\"H6032\"* to|strong=\"H6925\"* Daniel|strong=\"H1841\"*, “Are|strong=\"H1768\"* you|strong=\"H1768\"* that|strong=\"H1768\"* Daniel|strong=\"H1841\"* of|strong=\"H4481\"* the|strong=\"H4481\"* children|strong=\"H1123\"* of|strong=\"H4481\"* the|strong=\"H4481\"* captivity|strong=\"H1547\"* of|strong=\"H4481\"* Judah|strong=\"H3061\"*, whom|strong=\"H1768\"* the|strong=\"H4481\"* king|strong=\"H4430\"* my|strong=\"H4430\"* father brought|strong=\"H5954\"* out of|strong=\"H4481\"* Judah|strong=\"H3061\"*?" + }, + { + "verseNum": 14, + "text": "I|strong=\"H1768\"* have|strong=\"H1768\"* heard|strong=\"H8086\"* of|strong=\"H5922\"* you|strong=\"H1768\"*, that|strong=\"H1768\"* the|strong=\"H5922\"* spirit|strong=\"H7308\"* of|strong=\"H5922\"* the|strong=\"H5922\"* gods is|strong=\"H1768\"* in|strong=\"H5922\"* you|strong=\"H1768\"* and|strong=\"H2452\"* that|strong=\"H1768\"* light|strong=\"H5094\"*, understanding|strong=\"H7924\"*, and|strong=\"H2452\"* excellent|strong=\"H3493\"* wisdom|strong=\"H2452\"* are|strong=\"H1768\"* found|strong=\"H7912\"* in|strong=\"H5922\"* you|strong=\"H1768\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H3705\"* the|strong=\"H6925\"* wise|strong=\"H2445\"* men|strong=\"H2445\"*, the|strong=\"H6925\"* enchanters, have|strong=\"H1768\"* been brought|strong=\"H5954\"* in|strong=\"H5954\"* before|strong=\"H6925\"* me|strong=\"H6925\"*, that|strong=\"H1768\"* they|strong=\"H1768\"* should read|strong=\"H7123\"* this|strong=\"H1836\"* writing|strong=\"H3792\"*, and|strong=\"H3792\"* make|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H6925\"* me|strong=\"H6925\"* its|strong=\"H6591\"* interpretation|strong=\"H6591\"*; but|strong=\"H1768\"* they|strong=\"H1768\"* could|strong=\"H3546\"* not|strong=\"H3809\"* show the|strong=\"H6925\"* interpretation|strong=\"H6591\"* of|strong=\"H2445\"* the|strong=\"H6925\"* thing|strong=\"H4406\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"H1768\"* I|strong=\"H1768\"* have|strong=\"H7981\"* heard|strong=\"H8086\"* of|strong=\"H4437\"* you|strong=\"H1768\"*, that|strong=\"H1768\"* you|strong=\"H1768\"* can|strong=\"H3202\"* give|strong=\"H6590\"* interpretations|strong=\"H6590\"* and|strong=\"H1722\"* dissolve|strong=\"H8271\"* doubts|strong=\"H7001\"*. Now|strong=\"H3705\"* if|strong=\"H2006\"* you|strong=\"H1768\"* can|strong=\"H3202\"* read|strong=\"H7123\"* the|strong=\"H5922\"* writing|strong=\"H3792\"* and|strong=\"H1722\"* make|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H5922\"* me|strong=\"H5922\"* its|strong=\"H6591\"* interpretation|strong=\"H6591\"*, you|strong=\"H1768\"* shall|strong=\"H4437\"* be|strong=\"H3705\"* clothed|strong=\"H3848\"* with|strong=\"H3848\"* purple, and|strong=\"H1722\"* have|strong=\"H7981\"* a|strong=\"H3068\"* chain|strong=\"H2002\"* of|strong=\"H4437\"* gold|strong=\"H1722\"* around|strong=\"H5922\"* your|strong=\"H1768\"* neck|strong=\"H6676\"*, and|strong=\"H1722\"* shall|strong=\"H4437\"* be|strong=\"H3705\"* the|strong=\"H5922\"* third|strong=\"H8531\"* ruler|strong=\"H7981\"* in|strong=\"H5922\"* the|strong=\"H5922\"* kingdom|strong=\"H4437\"*.”" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H4430\"* Daniel|strong=\"H1841\"* answered|strong=\"H6032\"* before|strong=\"H6925\"* the|strong=\"H6925\"* king|strong=\"H4430\"*, “Let your|strong=\"H3052\"* gifts|strong=\"H4978\"* be|strong=\"H1934\"* to|strong=\"H6925\"* yourself, and|strong=\"H6032\"* give|strong=\"H3052\"* your|strong=\"H3052\"* rewards|strong=\"H5023\"* to|strong=\"H6925\"* another. Nevertheless|strong=\"H1297\"*, I will|strong=\"H4430\"* read|strong=\"H7123\"* the|strong=\"H6925\"* writing|strong=\"H3792\"* to|strong=\"H6925\"* the|strong=\"H6925\"* king|strong=\"H4430\"*, and|strong=\"H6032\"* make|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H6925\"* him|strong=\"H6925\"* the|strong=\"H6925\"* interpretation|strong=\"H6591\"*." + }, + { + "verseNum": 18, + "text": "“To|strong=\"H4430\"* you, king|strong=\"H4430\"*, the|strong=\"H5020\"* Most|strong=\"H5943\"* High|strong=\"H5943\"* God gave|strong=\"H3052\"* Nebuchadnezzar|strong=\"H5020\"* your|strong=\"H5020\"* father the|strong=\"H5020\"* kingdom|strong=\"H4437\"*, and|strong=\"H4430\"* greatness|strong=\"H7238\"*, and|strong=\"H4430\"* glory|strong=\"H3367\"*, and|strong=\"H4430\"* majesty|strong=\"H7238\"*." + }, + { + "verseNum": 19, + "text": "Because|strong=\"H4481\"* of|strong=\"H4481\"* the|strong=\"H3606\"* greatness|strong=\"H7238\"* that|strong=\"H1768\"* he|strong=\"H1768\"* gave|strong=\"H3052\"* him|strong=\"H4481\"*, all|strong=\"H3606\"* the|strong=\"H3606\"* peoples|strong=\"H5972\"*, nations, and|strong=\"H1763\"* languages|strong=\"H3961\"* trembled|strong=\"H1934\"* and|strong=\"H1763\"* feared|strong=\"H1763\"* before|strong=\"H6925\"* him|strong=\"H4481\"*. He|strong=\"H1768\"* killed|strong=\"H6992\"* whom|strong=\"H1768\"* he|strong=\"H1768\"* wanted to|strong=\"H6925\"*, and|strong=\"H1763\"* he|strong=\"H1768\"* kept|strong=\"H1934\"* alive|strong=\"H2418\"* whom|strong=\"H1768\"* he|strong=\"H1768\"* wanted to|strong=\"H6925\"*. He|strong=\"H1768\"* raised up|strong=\"H7313\"* whom|strong=\"H1768\"* he|strong=\"H1768\"* wanted to|strong=\"H6925\"*, and|strong=\"H1763\"* he|strong=\"H1768\"* put down|strong=\"H1934\"* whom|strong=\"H1768\"* he|strong=\"H1768\"* wanted to|strong=\"H6925\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H1768\"* when|strong=\"H1768\"* his|strong=\"H4481\"* heart|strong=\"H3825\"* was|strong=\"H3825\"* lifted|strong=\"H7313\"* up|strong=\"H7313\"*, and|strong=\"H4437\"* his|strong=\"H4481\"* spirit|strong=\"H7308\"* was|strong=\"H3825\"* hardened|strong=\"H8631\"* so|strong=\"H1768\"* that|strong=\"H1768\"* he|strong=\"H1768\"* dealt proudly, he|strong=\"H1768\"* was|strong=\"H3825\"* deposed|strong=\"H5182\"* from|strong=\"H4481\"* his|strong=\"H4481\"* kingly|strong=\"H4437\"* throne|strong=\"H3764\"*, and|strong=\"H4437\"* they|strong=\"H1768\"* took|strong=\"H5709\"* his|strong=\"H4481\"* glory|strong=\"H3367\"* from|strong=\"H4481\"* him|strong=\"H4481\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H1768\"* was|strong=\"H1655\"* driven|strong=\"H2957\"* from|strong=\"H4481\"* the|strong=\"H5922\"* sons|strong=\"H1123\"* of|strong=\"H4481\"* men|strong=\"H4437\"*, and|strong=\"H8065\"* his|strong=\"H5922\"* heart|strong=\"H3825\"* was|strong=\"H1655\"* made|strong=\"H3046\"* like|strong=\"H2939\"* the|strong=\"H5922\"* animals|strong=\"H2423\"*’, and|strong=\"H8065\"* his|strong=\"H5922\"* dwelling|strong=\"H4070\"* was|strong=\"H1655\"* with|strong=\"H5974\"* the|strong=\"H5922\"* wild|strong=\"H6167\"* donkeys|strong=\"H6167\"*. He|strong=\"H1768\"* was|strong=\"H1655\"* fed|strong=\"H2939\"* with|strong=\"H5974\"* grass|strong=\"H6211\"* like|strong=\"H2939\"* oxen|strong=\"H8450\"*, and|strong=\"H8065\"* his|strong=\"H5922\"* body|strong=\"H1655\"* was|strong=\"H1655\"* wet|strong=\"H6647\"* with|strong=\"H5974\"* the|strong=\"H5922\"* dew|strong=\"H2920\"* of|strong=\"H4481\"* the|strong=\"H5922\"* sky|strong=\"H8065\"*, until|strong=\"H5705\"* he|strong=\"H1768\"* knew|strong=\"H3046\"* that|strong=\"H1768\"* the|strong=\"H5922\"* Most|strong=\"H5943\"* High|strong=\"H5943\"* God rules|strong=\"H7990\"* in|strong=\"H5922\"* the|strong=\"H5922\"* kingdom|strong=\"H4437\"* of|strong=\"H4481\"* men|strong=\"H4437\"*, and|strong=\"H8065\"* that|strong=\"H1768\"* he|strong=\"H1768\"* sets|strong=\"H6966\"* up|strong=\"H6966\"* over|strong=\"H5922\"* it|strong=\"H5922\"* whomever|strong=\"H1768\"* he|strong=\"H1768\"* will|strong=\"H6634\"*." + }, + { + "verseNum": 22, + "text": "“You|strong=\"H1768\"*, his|strong=\"H1768\"* son|strong=\"H1247\"*, Belshazzar|strong=\"H1113\"*, have|strong=\"H1768\"* not|strong=\"H3809\"* humbled|strong=\"H8214\"* your|strong=\"H1768\"* heart|strong=\"H3825\"*, though|strong=\"H6903\"* you|strong=\"H1768\"* knew|strong=\"H3046\"* all|strong=\"H3606\"* this|strong=\"H1836\"*," + }, + { + "verseNum": 23, + "text": "but|strong=\"H1768\"* have|strong=\"H1768\"* lifted|strong=\"H7313\"* up|strong=\"H7313\"* yourself|strong=\"H7313\"* against|strong=\"H5922\"* the|strong=\"H3606\"* Lord|strong=\"H4756\"* of|strong=\"H1005\"* heaven|strong=\"H8065\"*; and|strong=\"H6523\"* they|strong=\"H3606\"* have|strong=\"H1768\"* brought the|strong=\"H3606\"* vessels|strong=\"H3984\"* of|strong=\"H1005\"* his|strong=\"H5922\"* house|strong=\"H1005\"* before|strong=\"H6925\"* you|strong=\"H1768\"*, and|strong=\"H6523\"* you|strong=\"H1768\"* and|strong=\"H6523\"* your|strong=\"H1768\"* lords|strong=\"H7261\"*, your|strong=\"H1768\"* wives|strong=\"H7695\"*, and|strong=\"H6523\"* your|strong=\"H1768\"* concubines|strong=\"H3904\"*, have|strong=\"H1768\"* drunk|strong=\"H8355\"* wine|strong=\"H2562\"* from|strong=\"H1768\"* them|strong=\"H5922\"*. You|strong=\"H1768\"* have|strong=\"H1768\"* praised|strong=\"H7624\"* the|strong=\"H3606\"* gods of|strong=\"H1005\"* silver|strong=\"H3702\"* and|strong=\"H6523\"* gold|strong=\"H1722\"*, of|strong=\"H1005\"* bronze|strong=\"H5174\"*, iron|strong=\"H6523\"*, wood, and|strong=\"H6523\"* stone, which|strong=\"H1768\"* don’t see|strong=\"H2370\"*, or|strong=\"H3809\"* hear|strong=\"H8086\"*, or|strong=\"H3809\"* know|strong=\"H3046\"*; and|strong=\"H6523\"* you|strong=\"H1768\"* have|strong=\"H1768\"* not|strong=\"H3809\"* glorified|strong=\"H1922\"* the|strong=\"H3606\"* God in|strong=\"H5922\"* whose|strong=\"H1768\"* hand|strong=\"H3028\"* your|strong=\"H1768\"* breath|strong=\"H5396\"* is|strong=\"H1768\"*, and|strong=\"H6523\"* whose|strong=\"H1768\"* are|strong=\"H1768\"* all|strong=\"H3606\"* your|strong=\"H1768\"* ways." + }, + { + "verseNum": 24, + "text": "Then|strong=\"H1768\"* the|strong=\"H4481\"* part|strong=\"H4481\"* of|strong=\"H4481\"* the|strong=\"H4481\"* hand|strong=\"H3028\"* was|strong=\"H3792\"* sent|strong=\"H7972\"* from|strong=\"H4481\"* before|strong=\"H6925\"* him|strong=\"H4481\"*, and|strong=\"H3792\"* this|strong=\"H1836\"* writing|strong=\"H3792\"* was|strong=\"H3792\"* inscribed." + }, + { + "verseNum": 25, + "text": "“This|strong=\"H1836\"* is|strong=\"H1768\"* the|strong=\"H1768\"* writing|strong=\"H3792\"* that|strong=\"H1768\"* was|strong=\"H3792\"* inscribed: ‘MENE|strong=\"H4484\"*, MENE|strong=\"H4484\"*, TEKEL|strong=\"H8625\"*, UPHARSIN|strong=\"H6537\"*.’" + }, + { + "verseNum": 26, + "text": "“This|strong=\"H1836\"* is|strong=\"H4406\"* the|strong=\"H1836\"* interpretation|strong=\"H6591\"* of|strong=\"H4437\"* the|strong=\"H1836\"* thing|strong=\"H4406\"*:" + }, + { + "verseNum": 27, + "text": "TEKEL|strong=\"H8625\"*: you are weighed|strong=\"H8625\"* in|strong=\"H7912\"* the balances|strong=\"H3977\"*, and|strong=\"H3977\"* are found|strong=\"H7912\"* wanting|strong=\"H2627\"*." + }, + { + "verseNum": 28, + "text": "PERES|strong=\"H6537\"*: your|strong=\"H3052\"* kingdom|strong=\"H4437\"* is|strong=\"H4437\"* divided|strong=\"H6537\"*, and|strong=\"H4076\"* given|strong=\"H3052\"* to|strong=\"H3052\"* the|strong=\"H3052\"* Medes|strong=\"H4076\"* and|strong=\"H4076\"* Persians|strong=\"H6540\"*.”" + }, + { + "verseNum": 29, + "text": "Then|strong=\"H1768\"* Belshazzar|strong=\"H1113\"* commanded, and|strong=\"H1722\"* they|strong=\"H1768\"* clothed|strong=\"H3848\"* Daniel|strong=\"H1841\"* with|strong=\"H3848\"* purple, and|strong=\"H1722\"* put a|strong=\"H3068\"* chain|strong=\"H2002\"* of|strong=\"H4437\"* gold|strong=\"H1722\"* about|strong=\"H5922\"* his|strong=\"H5922\"* neck|strong=\"H6676\"*, and|strong=\"H1722\"* made proclamation|strong=\"H3745\"* concerning|strong=\"H5922\"* him|strong=\"H5922\"*, that|strong=\"H1768\"* he|strong=\"H1768\"* should be|strong=\"H1934\"* the|strong=\"H5922\"* third|strong=\"H8531\"* ruler|strong=\"H7990\"* in|strong=\"H5922\"* the|strong=\"H5922\"* kingdom|strong=\"H4437\"*." + }, + { + "verseNum": 30, + "text": "In|strong=\"H4430\"* that|strong=\"H4430\"* night|strong=\"H3916\"* Belshazzar|strong=\"H1113\"* the|strong=\"H4430\"* Chaldean|strong=\"H3779\"* King|strong=\"H4430\"* was|strong=\"H4430\"* slain|strong=\"H6992\"*." + }, + { + "verseNum": 31, + "text": "Darius the Mede received the kingdom, being about sixty-two years old." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "It pleased Darius|strong=\"H1868\"* to|strong=\"H1868\"* set over the|strong=\"H1868\"* kingdom|strong=\"H4437\"* one hundred twenty local governors, who should be throughout the|strong=\"H1868\"* whole kingdom|strong=\"H4437\"*;" + }, + { + "verseNum": 2, + "text": "and|strong=\"H4437\"* over|strong=\"H5922\"* them|strong=\"H5922\"* three presidents, of|strong=\"H4437\"* whom|strong=\"H1768\"* Daniel was|strong=\"H1934\"* one, that|strong=\"H1768\"* these local governors might|strong=\"H1934\"* give account|strong=\"H5922\"* to|strong=\"H5922\"* them|strong=\"H5922\"*, and|strong=\"H4437\"* that|strong=\"H1768\"* the|strong=\"H3606\"* king should suffer no|strong=\"H3606\"* loss." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H1768\"* this|strong=\"H4481\"* Daniel|strong=\"H1841\"* was|strong=\"H1934\"* distinguished above the|strong=\"H4481\"* presidents|strong=\"H5632\"* and|strong=\"H4430\"* the|strong=\"H4481\"* local governors, because|strong=\"H4481\"* an|strong=\"H4430\"* excellent spirit was|strong=\"H1934\"* in|strong=\"H4430\"* him|strong=\"H4481\"*; and|strong=\"H4430\"* the|strong=\"H4481\"* king|strong=\"H4430\"* thought to|strong=\"H4481\"* set him|strong=\"H4481\"* over|strong=\"H5924\"* the|strong=\"H4481\"* whole realm." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H6903\"* the|strong=\"H3606\"* presidents|strong=\"H5632\"* and|strong=\"H4430\"* the|strong=\"H3606\"* local governors sought|strong=\"H1934\"* to|strong=\"H5922\"* find occasion against|strong=\"H5922\"* Daniel|strong=\"H1841\"* as|strong=\"H3606\"* touching the|strong=\"H3606\"* kingdom|strong=\"H4437\"*; but|strong=\"H1768\"* they|strong=\"H3606\"* could|strong=\"H1768\"* find no|strong=\"H3606\"* occasion or|strong=\"H4430\"* fault, because|strong=\"H6903\"* he|strong=\"H1768\"* was|strong=\"H1934\"* faithful. There|strong=\"H6903\"* wasn’t any|strong=\"H3606\"* error or|strong=\"H4430\"* fault found in|strong=\"H5922\"* him|strong=\"H5922\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6903\"* these men|strong=\"H4437\"* said, “We|strong=\"H1768\"* won’t find|strong=\"H7912\"* any|strong=\"H3606\"* occasion|strong=\"H5931\"* against|strong=\"H5922\"* this|strong=\"H1932\"* Daniel|strong=\"H1841\"*, unless we|strong=\"H3068\"* find|strong=\"H7912\"* it|strong=\"H5922\"* against|strong=\"H5922\"* him|strong=\"H5922\"* concerning|strong=\"H5922\"* the|strong=\"H3606\"* law of|strong=\"H4437\"* his|strong=\"H5922\"* God.”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H1768\"* these|strong=\"H1836\"* presidents and|strong=\"H1841\"* local governors assembled together to|strong=\"H5922\"* the|strong=\"H3606\"* king, and|strong=\"H1841\"* said this|strong=\"H1836\"* to|strong=\"H5922\"* him|strong=\"H5922\"*, “King Darius, live forever!" + }, + { + "verseNum": 7, + "text": "All|strong=\"H5957\"* the|strong=\"H5922\"* presidents|strong=\"H5632\"* of|strong=\"H4430\"* the|strong=\"H5922\"* kingdom, the|strong=\"H5922\"* deputies and|strong=\"H4430\"* the|strong=\"H5922\"* local governors, the|strong=\"H5922\"* counselors and|strong=\"H4430\"* the|strong=\"H5922\"* governors, have|strong=\"H1868\"* consulted together|strong=\"H7284\"* to|strong=\"H5922\"* establish a|strong=\"H3068\"* royal|strong=\"H4430\"* statute and|strong=\"H4430\"* to|strong=\"H5922\"* make a|strong=\"H3068\"* strong decree, that|strong=\"H5922\"* whoever asks a|strong=\"H3068\"* petition of|strong=\"H4430\"* any god or|strong=\"H4430\"* man for|strong=\"H5922\"* thirty days, except of|strong=\"H4430\"* you|strong=\"H5922\"*, O|strong=\"H3068\"* king|strong=\"H4430\"*, he|strong=\"H3652\"* shall be|strong=\"H5957\"* cast into the|strong=\"H5922\"* den of|strong=\"H4430\"* lions." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H4430\"*, O|strong=\"H3068\"* king|strong=\"H4430\"*, establish|strong=\"H6966\"* the|strong=\"H3606\"* decree and|strong=\"H4430\"* sign the|strong=\"H3606\"* writing, that|strong=\"H1768\"* it|strong=\"H4481\"* not be changed, according|strong=\"H4481\"* to|strong=\"H5705\"* the|strong=\"H3606\"* law of|strong=\"H4481\"* the|strong=\"H3606\"* Medes and|strong=\"H4430\"* Persians, which|strong=\"H1768\"* doesn’t alter.”" + }, + { + "verseNum": 9, + "text": "Therefore King|strong=\"H4430\"* Darius signed|strong=\"H7560\"* the|strong=\"H1768\"* writing|strong=\"H3792\"* and|strong=\"H4430\"* the|strong=\"H1768\"* decree|strong=\"H1882\"*." + }, + { + "verseNum": 10, + "text": "When Daniel knew that|strong=\"H3606\"* the|strong=\"H3606\"* writing|strong=\"H3792\"* was|strong=\"H4430\"* signed|strong=\"H7560\"*, he|strong=\"H6903\"* went into his|strong=\"H3606\"* house (now|strong=\"H4430\"* his|strong=\"H3606\"* windows were open in|strong=\"H4430\"* his|strong=\"H3606\"* room toward Jerusalem) and|strong=\"H4430\"* he|strong=\"H6903\"* kneeled on his|strong=\"H3606\"* knees three times a|strong=\"H3068\"* day, and|strong=\"H4430\"* prayed, and|strong=\"H4430\"* gave thanks before|strong=\"H6903\"* his|strong=\"H3606\"* God, as|strong=\"H3606\"* he|strong=\"H6903\"* did before|strong=\"H6903\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H6903\"* these|strong=\"H1836\"* men assembled together, and|strong=\"H1005\"* found Daniel|strong=\"H1841\"* making|strong=\"H3046\"* petition and|strong=\"H1005\"* supplication before|strong=\"H6925\"* his|strong=\"H5922\"* God." + }, + { + "verseNum": 12, + "text": "Then they came|strong=\"H7284\"* near, and|strong=\"H1841\"* spoke before|strong=\"H6925\"* the|strong=\"H6925\"* king concerning the|strong=\"H6925\"* king’s decree: “Haven’t you signed a|strong=\"H3068\"* decree that|strong=\"H1400\"* every man|strong=\"H1400\"* who makes|strong=\"H1156\"* a|strong=\"H3068\"* petition|strong=\"H1156\"* to|strong=\"H6925\"* any god or man|strong=\"H1400\"* within thirty days, except to|strong=\"H6925\"* you, O|strong=\"H3068\"* king, shall be|strong=\"H1841\"* cast into the|strong=\"H6925\"* den of|strong=\"H6925\"* lions?”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H1768\"* they|strong=\"H3606\"* answered|strong=\"H6032\"* and|strong=\"H6032\"* said|strong=\"H6032\"* before|strong=\"H6925\"* the|strong=\"H3606\"* king|strong=\"H4430\"*, “That|strong=\"H1768\"* Daniel, who|strong=\"H1768\"* is|strong=\"H1768\"* of|strong=\"H4481\"* the|strong=\"H3606\"* children of|strong=\"H4481\"* the|strong=\"H3606\"* captivity of|strong=\"H4481\"* Judah, doesn’t respect you|strong=\"H1768\"*, O|strong=\"H3068\"* king|strong=\"H4430\"*, nor|strong=\"H3809\"* the|strong=\"H3606\"* decree|strong=\"H1882\"* that|strong=\"H1768\"* you|strong=\"H1768\"* have|strong=\"H1768\"* signed|strong=\"H7560\"*, but|strong=\"H3861\"* makes|strong=\"H1156\"* his|strong=\"H5922\"* petition|strong=\"H1156\"* three times a|strong=\"H3068\"* day|strong=\"H3118\"*.”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H1768\"* the|strong=\"H5922\"* king|strong=\"H4430\"*, when|strong=\"H1768\"* he|strong=\"H1768\"* heard these|strong=\"H4481\"* words, was|strong=\"H1841\"* very displeased, and|strong=\"H6032\"* set|strong=\"H7761\"* his|strong=\"H5922\"* heart on|strong=\"H5922\"* Daniel|strong=\"H1841\"* to|strong=\"H5922\"* deliver him|strong=\"H5922\"*; and|strong=\"H6032\"* he|strong=\"H1768\"* labored until the|strong=\"H5922\"* going down of|strong=\"H4481\"* the|strong=\"H5922\"* sun to|strong=\"H5922\"* rescue him|strong=\"H5922\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H1768\"* these men assembled together to|strong=\"H5922\"* the|strong=\"H5922\"* king|strong=\"H4430\"*, and|strong=\"H4430\"* said to|strong=\"H5922\"* the|strong=\"H5922\"* king|strong=\"H4430\"*, “Know, O|strong=\"H3068\"* king|strong=\"H4430\"*, that|strong=\"H1768\"* it|strong=\"H5922\"* is|strong=\"H1768\"* a|strong=\"H3068\"* law of|strong=\"H4430\"* the|strong=\"H5922\"* Medes and|strong=\"H4430\"* Persians, that|strong=\"H1768\"* no decree nor statute which|strong=\"H1768\"* the|strong=\"H5922\"* king|strong=\"H4430\"* establishes may be|strong=\"H1934\"* changed.”" + }, + { + "verseNum": 16, + "text": "Then|strong=\"H1768\"* the|strong=\"H3606\"* king|strong=\"H4430\"* commanded, and|strong=\"H4430\"* they|strong=\"H3606\"* brought Daniel and|strong=\"H4430\"* cast him|strong=\"H5922\"* into the|strong=\"H3606\"* den of|strong=\"H4430\"* lions. The|strong=\"H3606\"* king|strong=\"H4430\"* spoke and|strong=\"H4430\"* said to|strong=\"H5922\"* Daniel, “Your|strong=\"H1768\"* God whom|strong=\"H1768\"* you|strong=\"H1768\"* serve continually, he|strong=\"H1768\"* will|strong=\"H1768\"* deliver you|strong=\"H1768\"*.”" + }, + { + "verseNum": 17, + "text": "A|strong=\"H3068\"* stone was|strong=\"H1841\"* brought|strong=\"H1841\"*, and|strong=\"H6032\"* laid on the|strong=\"H1768\"* mouth of|strong=\"H4430\"* the|strong=\"H1768\"* den|strong=\"H1358\"*; and|strong=\"H6032\"* the|strong=\"H1768\"* king|strong=\"H4430\"* sealed it|strong=\"H1932\"* with|strong=\"H1841\"* his|strong=\"H7804\"* own signet, and|strong=\"H6032\"* with|strong=\"H1841\"* the|strong=\"H1768\"* signet of|strong=\"H4430\"* his|strong=\"H7804\"* lords; that|strong=\"H1768\"* nothing might be|strong=\"H1841\"* changed concerning Daniel|strong=\"H1841\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H1768\"* the|strong=\"H5922\"* king|strong=\"H4430\"* went|strong=\"H1841\"* to|strong=\"H5922\"* his|strong=\"H5922\"* palace, and|strong=\"H4430\"* passed the|strong=\"H5922\"* night fasting. No|strong=\"H3809\"* musical instruments were|strong=\"H1768\"* brought|strong=\"H1841\"* before|strong=\"H5922\"* him|strong=\"H5922\"*; and|strong=\"H4430\"* his|strong=\"H5922\"* sleep fled from|strong=\"H8133\"* him|strong=\"H5922\"*." + }, + { + "verseNum": 19, + "text": "Then|strong=\"H4430\"* the|strong=\"H5922\"* king|strong=\"H4430\"* arose very early in|strong=\"H5954\"* the|strong=\"H5922\"* morning, and|strong=\"H4430\"* went|strong=\"H5954\"* in|strong=\"H5954\"* haste to|strong=\"H5922\"* the|strong=\"H5922\"* den of|strong=\"H4430\"* lions." + }, + { + "verseNum": 20, + "text": "When|strong=\"H1768\"* he|strong=\"H1768\"* came|strong=\"H1768\"* near to|strong=\"H4430\"* the|strong=\"H1768\"* den|strong=\"H1358\"* to|strong=\"H4430\"* Daniel, he|strong=\"H1768\"* cried with a|strong=\"H3068\"* troubled voice. The|strong=\"H1768\"* king|strong=\"H4430\"* spoke and|strong=\"H4430\"* said to|strong=\"H4430\"* Daniel, “Daniel, servant of|strong=\"H4430\"* the|strong=\"H1768\"* living God, is|strong=\"H1768\"* your|strong=\"H1768\"* God, whom|strong=\"H1768\"* you|strong=\"H1768\"* serve continually, able to|strong=\"H4430\"* deliver you|strong=\"H1768\"* from|strong=\"H1768\"* the|strong=\"H1768\"* lions?”" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H1768\"* Daniel|strong=\"H1841\"* said|strong=\"H6032\"* to|strong=\"H3202\"* the|strong=\"H4481\"* king|strong=\"H4430\"*, “O|strong=\"H3068\"* king|strong=\"H4430\"*, live forever!" + }, + { + "verseNum": 22, + "text": "My|strong=\"H4430\"* God has|strong=\"H4430\"* sent his angel, and|strong=\"H4430\"* has|strong=\"H4430\"* shut the|strong=\"H5974\"* lions’ mouths, and|strong=\"H4430\"* they have|strong=\"H4430\"* not hurt me, because innocence was|strong=\"H4430\"* found in|strong=\"H4430\"* me before him|strong=\"H5974\"*; and|strong=\"H4430\"* also|strong=\"H4430\"* before you, O|strong=\"H3068\"* king|strong=\"H4430\"*, I have|strong=\"H4430\"* done no harm.”" + }, + { + "verseNum": 23, + "text": "Then|strong=\"H6903\"* the|strong=\"H3606\"* king|strong=\"H4430\"* was|strong=\"H4430\"* exceedingly glad, and|strong=\"H4430\"* commanded that|strong=\"H1768\"* they|strong=\"H3606\"* should|strong=\"H4430\"* take Daniel up|strong=\"H6925\"* out|strong=\"H5648\"* of|strong=\"H4430\"* the|strong=\"H3606\"* den. So|strong=\"H1768\"* Daniel was|strong=\"H4430\"* taken up|strong=\"H6925\"* out|strong=\"H5648\"* of|strong=\"H4430\"* the|strong=\"H3606\"* den, and|strong=\"H4430\"* no|strong=\"H3809\"* kind of|strong=\"H4430\"* harm was|strong=\"H4430\"* found|strong=\"H7912\"* on him|strong=\"H6925\"*, because|strong=\"H6903\"* he|strong=\"H1768\"* had|strong=\"H4430\"* trusted in|strong=\"H4430\"* his|strong=\"H7972\"* God." + }, + { + "verseNum": 24, + "text": "The|strong=\"H3606\"* king|strong=\"H4430\"* commanded|strong=\"H4481\"*, and|strong=\"H4430\"* they|strong=\"H3606\"* brought|strong=\"H1841\"* those|strong=\"H1768\"* men who|strong=\"H1768\"* had|strong=\"H4430\"* accused Daniel|strong=\"H1841\"*, and|strong=\"H4430\"* they|strong=\"H3606\"* cast them|strong=\"H5922\"* into the|strong=\"H3606\"* den|strong=\"H1358\"* of|strong=\"H4481\"* lions—them|strong=\"H5922\"*, their|strong=\"H3606\"* children, and|strong=\"H4430\"* their|strong=\"H3606\"* wives; and|strong=\"H4430\"* the|strong=\"H3606\"* lions mauled them|strong=\"H5922\"*, and|strong=\"H4430\"* broke all|strong=\"H3606\"* their|strong=\"H3606\"* bones in|strong=\"H5922\"* pieces before|strong=\"H4481\"* they|strong=\"H3606\"* came|strong=\"H1768\"* to|strong=\"H5922\"* the|strong=\"H3606\"* bottom of|strong=\"H4481\"* the|strong=\"H3606\"* den|strong=\"H1358\"*." + }, + { + "verseNum": 25, + "text": "Then|strong=\"H1768\"* King|strong=\"H4430\"* Darius wrote to|strong=\"H5705\"* all|strong=\"H3606\"* the|strong=\"H3606\"* peoples, nations, and|strong=\"H4430\"* languages who|strong=\"H1768\"* dwell in|strong=\"H4430\"* all|strong=\"H3606\"* the|strong=\"H3606\"* earth:" + }, + { + "verseNum": 26, + "text": "“I|strong=\"H1768\"* make a|strong=\"H3068\"* decree that|strong=\"H1768\"* in|strong=\"H1753\"* all|strong=\"H3606\"* the|strong=\"H3606\"* dominion of|strong=\"H4430\"* my|strong=\"H4430\"* kingdom men tremble and|strong=\"H4430\"* fear before the|strong=\"H3606\"* God of|strong=\"H4430\"* Daniel." + }, + { + "verseNum": 27, + "text": "He|strong=\"H1768\"* delivers and|strong=\"H4437\"* rescues." + }, + { + "verseNum": 28, + "text": "So|strong=\"H1768\"* this|strong=\"H4481\"* Daniel|strong=\"H1841\"* prospered in|strong=\"H5648\"* the|strong=\"H4481\"* reign of|strong=\"H4481\"* Darius and|strong=\"H8065\"* in|strong=\"H5648\"* the|strong=\"H4481\"* reign of|strong=\"H4481\"* Cyrus the|strong=\"H4481\"* Persian." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H5922\"* the|strong=\"H5922\"* first|strong=\"H2298\"* year|strong=\"H8140\"* of|strong=\"H4430\"* Belshazzar|strong=\"H1113\"* king|strong=\"H4430\"* of|strong=\"H4430\"* Babylon, Daniel|strong=\"H1841\"* had|strong=\"H4430\"* a|strong=\"H3068\"* dream|strong=\"H2493\"* and|strong=\"H4430\"* visions|strong=\"H2376\"* of|strong=\"H4430\"* his|strong=\"H5922\"* head|strong=\"H7217\"* while on|strong=\"H5922\"* his|strong=\"H5922\"* bed|strong=\"H4903\"*. Then|strong=\"H4430\"* he|strong=\"H1841\"* wrote|strong=\"H3790\"* the|strong=\"H5922\"* dream|strong=\"H2493\"* and|strong=\"H4430\"* told the|strong=\"H5922\"* sum|strong=\"H7217\"* of|strong=\"H4430\"* the|strong=\"H5922\"* matters|strong=\"H4406\"*." + }, + { + "verseNum": 2, + "text": "Daniel|strong=\"H1841\"* spoke|strong=\"H6032\"* and|strong=\"H6032\"* said|strong=\"H6032\"*, “I saw|strong=\"H2370\"* in|strong=\"H7229\"* my vision|strong=\"H2376\"* by|strong=\"H5974\"* night|strong=\"H3916\"*, and|strong=\"H6032\"*, behold, the|strong=\"H2370\"* four winds|strong=\"H7308\"* of|strong=\"H7308\"* the|strong=\"H2370\"* sky|strong=\"H8065\"* broke out on the|strong=\"H2370\"* great|strong=\"H7229\"* sea|strong=\"H3221\"*." + }, + { + "verseNum": 3, + "text": "Four great|strong=\"H7260\"* animals|strong=\"H2423\"* came|strong=\"H5559\"* up|strong=\"H5559\"* from|strong=\"H4481\"* the|strong=\"H4481\"* sea|strong=\"H3221\"*, different|strong=\"H8133\"* from|strong=\"H4481\"* one|strong=\"H1668\"* another|strong=\"H1668\"*." + }, + { + "verseNum": 4, + "text": "“The|strong=\"H5922\"* first|strong=\"H6933\"* was|strong=\"H1934\"* like a|strong=\"H3068\"* lion, and|strong=\"H7271\"* had|strong=\"H2370\"* eagle|strong=\"H5403\"*’s wings|strong=\"H1611\"*. I|strong=\"H4481\"* watched until|strong=\"H5705\"* its|strong=\"H5705\"* wings|strong=\"H1611\"* were|strong=\"H1934\"* plucked|strong=\"H4804\"*, and|strong=\"H7271\"* it|strong=\"H5922\"* was|strong=\"H1934\"* lifted|strong=\"H5191\"* up|strong=\"H6966\"* from|strong=\"H4481\"* the|strong=\"H5922\"* earth and|strong=\"H7271\"* made|strong=\"H6966\"* to|strong=\"H5922\"* stand|strong=\"H6966\"* on|strong=\"H5922\"* two feet|strong=\"H7271\"* as|strong=\"H1768\"* a|strong=\"H3068\"* man. A|strong=\"H3068\"* man’s heart|strong=\"H3825\"* was|strong=\"H1934\"* given|strong=\"H3052\"* to|strong=\"H5922\"* it|strong=\"H5922\"*." + }, + { + "verseNum": 5, + "text": "“Behold, there was|strong=\"H2423\"* another animal, a|strong=\"H3068\"* second|strong=\"H8578\"*, like|strong=\"H1821\"* a|strong=\"H3068\"* bear|strong=\"H1678\"*. It|strong=\"H1321\"* was|strong=\"H2423\"* raised|strong=\"H6966\"* up|strong=\"H6966\"* on one|strong=\"H2298\"* side|strong=\"H7859\"*, and|strong=\"H3652\"* three|strong=\"H8532\"* ribs|strong=\"H5967\"* were|strong=\"H2423\"* in|strong=\"H6966\"* its mouth|strong=\"H6433\"* between its teeth|strong=\"H8128\"*. They|strong=\"H3652\"* said this to|strong=\"H6966\"* it|strong=\"H1321\"*: ‘Arise|strong=\"H6966\"*! Devour much|strong=\"H7690\"* flesh|strong=\"H1321\"*!’" + }, + { + "verseNum": 6, + "text": "“After this|strong=\"H1836\"* I|strong=\"H1836\"* saw|strong=\"H2370\"*, and|strong=\"H1934\"* behold, another|strong=\"H1836\"*, like|strong=\"H7217\"* a|strong=\"H3068\"* leopard|strong=\"H5245\"*, which|strong=\"H1768\"* had|strong=\"H2370\"* on|strong=\"H5922\"* its back|strong=\"H1355\"* four wings|strong=\"H1611\"* of|strong=\"H5922\"* a|strong=\"H3068\"* bird|strong=\"H5776\"*. The|strong=\"H5922\"* animal also had|strong=\"H2370\"* four heads|strong=\"H7217\"*; and|strong=\"H1934\"* dominion|strong=\"H7985\"* was|strong=\"H1934\"* given|strong=\"H3052\"* to|strong=\"H5922\"* it|strong=\"H5922\"*." + }, + { + "verseNum": 7, + "text": "“After|strong=\"H4481\"* this|strong=\"H1836\"* I|strong=\"H4481\"* saw|strong=\"H2370\"* in|strong=\"H8133\"* the|strong=\"H3606\"* night|strong=\"H3916\"* visions|strong=\"H2376\"*, and|strong=\"H6523\"*, behold, there|strong=\"H1768\"* was|strong=\"H1934\"* a|strong=\"H3068\"* fourth|strong=\"H7244\"* animal, awesome|strong=\"H1763\"*, powerful|strong=\"H8624\"*, and|strong=\"H6523\"* exceedingly|strong=\"H3493\"* strong|strong=\"H8624\"*. It|strong=\"H1934\"* had|strong=\"H2370\"* great|strong=\"H7260\"* iron|strong=\"H6523\"* teeth|strong=\"H8128\"*. It|strong=\"H1934\"* devoured and|strong=\"H6523\"* broke in|strong=\"H8133\"* pieces|strong=\"H1855\"*, and|strong=\"H6523\"* stamped|strong=\"H7512\"* the|strong=\"H3606\"* residue|strong=\"H7606\"* with its|strong=\"H4481\"* feet|strong=\"H7271\"*. It|strong=\"H1934\"* was|strong=\"H1934\"* different|strong=\"H8133\"* from|strong=\"H4481\"* all|strong=\"H3606\"* the|strong=\"H3606\"* animals|strong=\"H2423\"* that|strong=\"H1768\"* were|strong=\"H1934\"* before|strong=\"H6925\"* it|strong=\"H1934\"*. It|strong=\"H1934\"* had|strong=\"H2370\"* ten|strong=\"H6236\"* horns|strong=\"H7162\"*." + }, + { + "verseNum": 8, + "text": "“I|strong=\"H4481\"* considered|strong=\"H1934\"* the|strong=\"H4481\"* horns|strong=\"H7162\"*, and|strong=\"H1934\"* behold, there came|strong=\"H5559\"* up|strong=\"H5559\"* among|strong=\"H4481\"* them another|strong=\"H1668\"* horn|strong=\"H7162\"*, a|strong=\"H3068\"* little|strong=\"H2192\"* one|strong=\"H1668\"*, before|strong=\"H6925\"* which|strong=\"H4481\"* three|strong=\"H8532\"* of|strong=\"H4481\"* the|strong=\"H4481\"* first|strong=\"H6933\"* horns|strong=\"H7162\"* were|strong=\"H1934\"* plucked up|strong=\"H5559\"* by|strong=\"H6925\"* the|strong=\"H4481\"* roots|strong=\"H6132\"*; and|strong=\"H1934\"* behold, in this|strong=\"H1668\"* horn|strong=\"H7162\"* were|strong=\"H1934\"* eyes|strong=\"H5870\"* like the|strong=\"H4481\"* eyes|strong=\"H5870\"* of|strong=\"H4481\"* a|strong=\"H3068\"* man, and|strong=\"H1934\"* a|strong=\"H3068\"* mouth|strong=\"H6433\"* speaking|strong=\"H4449\"* arrogantly." + }, + { + "verseNum": 9, + "text": "“I|strong=\"H1768\"* watched until|strong=\"H5705\"* thrones|strong=\"H3764\"* were|strong=\"H1934\"* placed," + }, + { + "verseNum": 10, + "text": "A|strong=\"H3068\"* fiery|strong=\"H5135\"* stream|strong=\"H5103\"* issued|strong=\"H5047\"* and|strong=\"H4481\"* came|strong=\"H1768\"* out|strong=\"H5312\"* from|strong=\"H4481\"* before|strong=\"H6925\"* him|strong=\"H4481\"*." + }, + { + "verseNum": 11, + "text": "“I|strong=\"H4481\"* watched at|strong=\"H5705\"* that|strong=\"H1768\"* time because|strong=\"H4481\"* of|strong=\"H4481\"* the|strong=\"H4481\"* voice|strong=\"H7032\"* of|strong=\"H4481\"* the|strong=\"H4481\"* arrogant|strong=\"H7260\"* words|strong=\"H4406\"* which|strong=\"H1768\"* the|strong=\"H4481\"* horn|strong=\"H7162\"* spoke|strong=\"H4449\"*. I|strong=\"H4481\"* watched even|strong=\"H1768\"* until|strong=\"H5705\"* the|strong=\"H4481\"* animal was|strong=\"H1934\"* slain|strong=\"H6992\"*, and|strong=\"H1934\"* its|strong=\"H5705\"* body|strong=\"H1655\"* destroyed, and|strong=\"H1934\"* it|strong=\"H1934\"* was|strong=\"H1934\"* given|strong=\"H3052\"* to|strong=\"H5705\"* be|strong=\"H1934\"* burned with fire." + }, + { + "verseNum": 12, + "text": "As|strong=\"H5705\"* for|strong=\"H5705\"* the|strong=\"H5705\"* rest|strong=\"H7606\"* of|strong=\"H2166\"* the|strong=\"H5705\"* animals|strong=\"H2423\"*, their|strong=\"H3052\"* dominion|strong=\"H7985\"* was|strong=\"H7985\"* taken|strong=\"H5709\"* away|strong=\"H5709\"*; yet their|strong=\"H3052\"* lives|strong=\"H2417\"* were|strong=\"H2417\"* prolonged|strong=\"H3052\"* for|strong=\"H5705\"* a|strong=\"H3068\"* season|strong=\"H2166\"* and|strong=\"H2166\"* a|strong=\"H3068\"* time|strong=\"H5732\"*." + }, + { + "verseNum": 13, + "text": "“I saw|strong=\"H2370\"* in the|strong=\"H6925\"* night|strong=\"H3916\"* visions|strong=\"H2376\"*, and|strong=\"H8065\"* behold, there came|strong=\"H4291\"* with|strong=\"H5974\"* the|strong=\"H6925\"* clouds|strong=\"H6050\"* of|strong=\"H1247\"* the|strong=\"H6925\"* sky|strong=\"H8065\"* one like|strong=\"H5974\"* a|strong=\"H3068\"* son|strong=\"H1247\"* of|strong=\"H1247\"* man, and|strong=\"H8065\"* he|strong=\"H5705\"* came|strong=\"H4291\"* even to|strong=\"H6925\"* the|strong=\"H6925\"* Ancient|strong=\"H6268\"* of|strong=\"H1247\"* Days|strong=\"H3118\"*, and|strong=\"H8065\"* they brought him|strong=\"H6925\"* near|strong=\"H7127\"* before|strong=\"H6925\"* him|strong=\"H6925\"*." + }, + { + "verseNum": 14, + "text": "Dominion|strong=\"H7985\"* was|strong=\"H7985\"* given|strong=\"H3052\"* him|strong=\"H3052\"*, and|strong=\"H4437\"* glory|strong=\"H3367\"*, and|strong=\"H4437\"* a|strong=\"H3068\"* kingdom|strong=\"H4437\"*, that|strong=\"H1768\"* all|strong=\"H3606\"* the|strong=\"H3606\"* peoples|strong=\"H5972\"*, nations, and|strong=\"H4437\"* languages|strong=\"H3961\"* should serve|strong=\"H6399\"* him|strong=\"H3052\"*. His|strong=\"H5709\"* dominion|strong=\"H7985\"* is|strong=\"H1768\"* an|strong=\"H3606\"* everlasting|strong=\"H5957\"* dominion|strong=\"H7985\"*, which|strong=\"H1768\"* will|strong=\"H1768\"* not|strong=\"H3809\"* pass|strong=\"H3809\"* away|strong=\"H5709\"*, and|strong=\"H4437\"* his|strong=\"H5709\"* kingdom|strong=\"H4437\"* one that|strong=\"H1768\"* will|strong=\"H1768\"* not|strong=\"H3809\"* be|strong=\"H3809\"* destroyed|strong=\"H2255\"*." + }, + { + "verseNum": 15, + "text": "“As for me, Daniel|strong=\"H1841\"*, my spirit|strong=\"H7308\"* was|strong=\"H1841\"* grieved|strong=\"H3735\"* within|strong=\"H1459\"* my body|strong=\"H5085\"*, and|strong=\"H1841\"* the visions|strong=\"H2376\"* of|strong=\"H7217\"* my head|strong=\"H7217\"* troubled me." + }, + { + "verseNum": 16, + "text": "I|strong=\"H4481\"* came|strong=\"H7127\"* near|strong=\"H7127\"* to|strong=\"H5922\"* one|strong=\"H2298\"* of|strong=\"H4481\"* those who stood|strong=\"H6966\"* by|strong=\"H4481\"*, and|strong=\"H7127\"* asked|strong=\"H1156\"* him|strong=\"H5922\"* the|strong=\"H3606\"* truth|strong=\"H3330\"* concerning|strong=\"H5922\"* all|strong=\"H3606\"* this|strong=\"H1836\"*." + }, + { + "verseNum": 17, + "text": "‘These|strong=\"H4481\"* great|strong=\"H7260\"* animals|strong=\"H2423\"*, which|strong=\"H1768\"* are|strong=\"H1768\"* four, are|strong=\"H1768\"* four kings|strong=\"H4430\"*, who|strong=\"H1768\"* will|strong=\"H1768\"* arise|strong=\"H6966\"* out|strong=\"H6966\"* of|strong=\"H4481\"* the|strong=\"H4481\"* earth." + }, + { + "verseNum": 18, + "text": "But the|strong=\"H5705\"* saints|strong=\"H6922\"* of|strong=\"H4437\"* the|strong=\"H5705\"* Most High|strong=\"H5946\"* will|strong=\"H5946\"* receive|strong=\"H6902\"* the|strong=\"H5705\"* kingdom|strong=\"H4437\"*, and|strong=\"H4437\"* possess|strong=\"H2631\"* the|strong=\"H5705\"* kingdom|strong=\"H4437\"* forever|strong=\"H5957\"*, even forever|strong=\"H5957\"* and|strong=\"H4437\"* ever|strong=\"H5957\"*.’" + }, + { + "verseNum": 19, + "text": "“Then|strong=\"H1768\"* I|strong=\"H4481\"* desired|strong=\"H6634\"* to|strong=\"H5922\"* know|strong=\"H3321\"* the|strong=\"H3605\"* truth|strong=\"H3321\"* concerning|strong=\"H5922\"* the|strong=\"H3605\"* fourth|strong=\"H7244\"* animal, which|strong=\"H1768\"* was|strong=\"H1934\"* different|strong=\"H8133\"* from|strong=\"H4481\"* all|strong=\"H3605\"* of|strong=\"H4481\"* them|strong=\"H5922\"*, exceedingly|strong=\"H3493\"* terrible|strong=\"H1763\"*, whose|strong=\"H1768\"* teeth|strong=\"H8128\"* were|strong=\"H1934\"* of|strong=\"H4481\"* iron|strong=\"H6523\"*, and|strong=\"H6523\"* its|strong=\"H3605\"* nails|strong=\"H2953\"* of|strong=\"H4481\"* bronze|strong=\"H5174\"*; which|strong=\"H1768\"* devoured, broke in|strong=\"H5922\"* pieces|strong=\"H1855\"*, and|strong=\"H6523\"* stamped|strong=\"H7512\"* the|strong=\"H3605\"* residue|strong=\"H7606\"* with|strong=\"H3605\"* its|strong=\"H3605\"* feet|strong=\"H7271\"*;" + }, + { + "verseNum": 20, + "text": "and|strong=\"H5308\"* concerning|strong=\"H5922\"* the|strong=\"H5922\"* ten|strong=\"H6236\"* horns|strong=\"H7162\"* that|strong=\"H1768\"* were|strong=\"H1768\"* on|strong=\"H5922\"* its|strong=\"H4481\"* head|strong=\"H7217\"* and|strong=\"H5308\"* the|strong=\"H5922\"* other horn|strong=\"H7162\"* which|strong=\"H1768\"* came|strong=\"H5559\"* up|strong=\"H5559\"*, and|strong=\"H5308\"* before|strong=\"H6925\"* which|strong=\"H1768\"* three|strong=\"H8532\"* fell|strong=\"H5308\"*, even|strong=\"H1768\"* that|strong=\"H1768\"* horn|strong=\"H7162\"* that|strong=\"H1768\"* had|strong=\"H1768\"* eyes|strong=\"H5870\"* and|strong=\"H5308\"* a|strong=\"H3068\"* mouth|strong=\"H6433\"* that|strong=\"H1768\"* spoke|strong=\"H4449\"* arrogantly, whose|strong=\"H1768\"* look|strong=\"H2376\"* was|strong=\"H7162\"* more|strong=\"H5922\"* stout|strong=\"H7229\"* than|strong=\"H4481\"* its|strong=\"H4481\"* fellows|strong=\"H2273\"*." + }, + { + "verseNum": 21, + "text": "I saw|strong=\"H2370\"*, and|strong=\"H1934\"* the|strong=\"H5974\"* same|strong=\"H1797\"* horn|strong=\"H7162\"* made|strong=\"H5648\"* war|strong=\"H7129\"* with|strong=\"H5974\"* the|strong=\"H5974\"* saints|strong=\"H6922\"*, and|strong=\"H1934\"* prevailed|strong=\"H3202\"* against|strong=\"H5974\"* them|strong=\"H3202\"*," + }, + { + "verseNum": 22, + "text": "until|strong=\"H5705\"* the|strong=\"H1768\"* Ancient|strong=\"H6268\"* of|strong=\"H4437\"* Days|strong=\"H3118\"* came|strong=\"H4291\"*, and|strong=\"H4437\"* judgment|strong=\"H1780\"* was|strong=\"H1780\"* given|strong=\"H3052\"* to|strong=\"H5705\"* the|strong=\"H1768\"* saints|strong=\"H6922\"* of|strong=\"H4437\"* the|strong=\"H1768\"* Most High|strong=\"H5946\"*, and|strong=\"H4437\"* the|strong=\"H1768\"* time|strong=\"H2166\"* came|strong=\"H4291\"* that|strong=\"H1768\"* the|strong=\"H1768\"* saints|strong=\"H6922\"* possessed|strong=\"H2631\"* the|strong=\"H1768\"* kingdom|strong=\"H4437\"*." + }, + { + "verseNum": 23, + "text": "“So|strong=\"H1768\"* he|strong=\"H1768\"* said, ‘The|strong=\"H3606\"* fourth|strong=\"H7244\"* animal will|strong=\"H1768\"* be|strong=\"H1934\"* a|strong=\"H3068\"* fourth|strong=\"H7244\"* kingdom|strong=\"H4437\"* on earth, which|strong=\"H1768\"* will|strong=\"H1768\"* be|strong=\"H1934\"* different|strong=\"H8133\"* from|strong=\"H4481\"* all|strong=\"H3606\"* the|strong=\"H3606\"* kingdoms|strong=\"H4437\"*, and|strong=\"H1855\"* will|strong=\"H1768\"* devour the|strong=\"H3606\"* whole|strong=\"H3606\"* earth, and|strong=\"H1855\"* will|strong=\"H1768\"* tread|strong=\"H1759\"* it|strong=\"H1934\"* down|strong=\"H1759\"* and|strong=\"H1855\"* break it|strong=\"H1934\"* in|strong=\"H8133\"* pieces|strong=\"H1855\"*." + }, + { + "verseNum": 24, + "text": "As|strong=\"H4437\"* for|strong=\"H4481\"* the|strong=\"H4481\"* ten|strong=\"H6236\"* horns|strong=\"H7162\"*, ten|strong=\"H6236\"* kings|strong=\"H4430\"* will|strong=\"H1932\"* arise|strong=\"H6966\"* out|strong=\"H6966\"* of|strong=\"H4481\"* this|strong=\"H1932\"* kingdom|strong=\"H4437\"*. Another will|strong=\"H1932\"* arise|strong=\"H6966\"* after|strong=\"H4481\"* them; and|strong=\"H4430\"* he|strong=\"H1932\"* will|strong=\"H1932\"* be different|strong=\"H8133\"* from|strong=\"H4481\"* the|strong=\"H4481\"* former, and|strong=\"H4430\"* he|strong=\"H1932\"* will|strong=\"H1932\"* put down three|strong=\"H8532\"* kings|strong=\"H4430\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H5705\"* will|strong=\"H5732\"* speak|strong=\"H4449\"* words|strong=\"H4406\"* against|strong=\"H6655\"* the|strong=\"H5705\"* Most|strong=\"H5943\"* High|strong=\"H5943\"*, and|strong=\"H5943\"* will|strong=\"H5732\"* wear|strong=\"H1080\"* out|strong=\"H1080\"* the|strong=\"H5705\"* saints|strong=\"H6922\"* of|strong=\"H3028\"* the|strong=\"H5705\"* Most|strong=\"H5943\"* High|strong=\"H5943\"*. He|strong=\"H5705\"* will|strong=\"H5732\"* plan to|strong=\"H5705\"* change|strong=\"H8133\"* the|strong=\"H5705\"* times|strong=\"H5732\"* and|strong=\"H5943\"* the|strong=\"H5705\"* law|strong=\"H1882\"*; and|strong=\"H5943\"* they will|strong=\"H5732\"* be|strong=\"H5732\"* given|strong=\"H3052\"* into his|strong=\"H5705\"* hand|strong=\"H3028\"* until|strong=\"H5705\"* a|strong=\"H3068\"* time|strong=\"H5732\"* and|strong=\"H5943\"* times|strong=\"H5732\"* and|strong=\"H5943\"* half|strong=\"H6387\"* a|strong=\"H3068\"* time|strong=\"H5732\"*." + }, + { + "verseNum": 26, + "text": "“‘But the|strong=\"H5705\"* judgment|strong=\"H1780\"* will|strong=\"H7985\"* be|strong=\"H1780\"* set|strong=\"H3488\"*, and|strong=\"H5705\"* they will|strong=\"H7985\"* take away|strong=\"H5709\"* his|strong=\"H5709\"* dominion|strong=\"H7985\"*, to|strong=\"H5705\"* consume|strong=\"H8046\"* and|strong=\"H5705\"* to|strong=\"H5705\"* destroy it to|strong=\"H5705\"* the|strong=\"H5705\"* end|strong=\"H5491\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H3606\"* kingdom|strong=\"H4437\"* and|strong=\"H4437\"* the|strong=\"H3606\"* dominion|strong=\"H7985\"*, and|strong=\"H4437\"* the|strong=\"H3606\"* greatness|strong=\"H7238\"* of|strong=\"H4437\"* the|strong=\"H3606\"* kingdoms|strong=\"H4437\"* under|strong=\"H8460\"* the|strong=\"H3606\"* whole|strong=\"H3606\"* sky|strong=\"H8065\"*, will|strong=\"H1768\"* be|strong=\"H5957\"* given|strong=\"H3052\"* to|strong=\"H3052\"* the|strong=\"H3606\"* people|strong=\"H5972\"* of|strong=\"H4437\"* the|strong=\"H3606\"* saints|strong=\"H6922\"* of|strong=\"H4437\"* the|strong=\"H3606\"* Most High|strong=\"H5946\"*. His|strong=\"H3606\"* kingdom|strong=\"H4437\"* is|strong=\"H1768\"* an|strong=\"H3606\"* everlasting|strong=\"H5957\"* kingdom|strong=\"H4437\"*, and|strong=\"H4437\"* all|strong=\"H3606\"* dominions|strong=\"H7985\"* will|strong=\"H1768\"* serve|strong=\"H6399\"* and|strong=\"H4437\"* obey|strong=\"H8086\"* him|strong=\"H3052\"*.’" + }, + { + "verseNum": 28, + "text": "“Here is|strong=\"H1768\"* the|strong=\"H5922\"* end|strong=\"H5491\"* of|strong=\"H5922\"* the|strong=\"H5922\"* matter|strong=\"H4406\"*. As|strong=\"H1768\"* for|strong=\"H5922\"* me|strong=\"H5922\"*, Daniel|strong=\"H1841\"*, my|strong=\"H5922\"* thoughts|strong=\"H7476\"* troubled me|strong=\"H5922\"* greatly|strong=\"H7690\"*, and|strong=\"H1841\"* my|strong=\"H5922\"* face|strong=\"H2122\"* was|strong=\"H1841\"* changed|strong=\"H8133\"* in|strong=\"H5922\"* me|strong=\"H5922\"*; but|strong=\"H1768\"* I|strong=\"H1768\"* kept|strong=\"H5202\"* the|strong=\"H5922\"* matter|strong=\"H4406\"* in|strong=\"H5922\"* my|strong=\"H5922\"* heart|strong=\"H3821\"*.”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H7200\"* third|strong=\"H7969\"* year|strong=\"H8141\"* of|strong=\"H4428\"* the|strong=\"H7200\"* reign|strong=\"H4438\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Belshazzar|strong=\"H1112\"*, a|strong=\"H3068\"* vision|strong=\"H2377\"* appeared|strong=\"H7200\"* to|strong=\"H4428\"* me|strong=\"H7200\"*, even|strong=\"H1840\"* to|strong=\"H4428\"* me|strong=\"H7200\"*, Daniel|strong=\"H1840\"*, after|strong=\"H7200\"* that|strong=\"H7200\"* which|strong=\"H4428\"* appeared|strong=\"H7200\"* to|strong=\"H4428\"* me|strong=\"H7200\"* at|strong=\"H4428\"* the|strong=\"H7200\"* first|strong=\"H8462\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H5921\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* vision|strong=\"H2377\"*. Now|strong=\"H1961\"* it|strong=\"H5921\"* was|strong=\"H1961\"* so|strong=\"H1961\"*, that|strong=\"H7200\"* when|strong=\"H1961\"* I|strong=\"H5921\"* saw|strong=\"H7200\"*, I|strong=\"H5921\"* was|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* citadel|strong=\"H1002\"* of|strong=\"H5921\"* Susa|strong=\"H7800\"*, which|strong=\"H4082\"* is|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* province|strong=\"H4082\"* of|strong=\"H5921\"* Elam|strong=\"H5867\"*. I|strong=\"H5921\"* saw|strong=\"H7200\"* in|strong=\"H5921\"* the|strong=\"H5921\"* vision|strong=\"H2377\"*, and|strong=\"H7200\"* I|strong=\"H5921\"* was|strong=\"H1961\"* by|strong=\"H5921\"* the|strong=\"H5921\"* river Ulai." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H2009\"* I|strong=\"H2009\"* lifted|strong=\"H5375\"* up|strong=\"H5927\"* my|strong=\"H7200\"* eyes|strong=\"H5869\"* and|strong=\"H5869\"* saw|strong=\"H7200\"*, and|strong=\"H5869\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* ram which|strong=\"H5869\"* had|strong=\"H5869\"* two|strong=\"H8145\"* horns|strong=\"H7161\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* river. The|strong=\"H6440\"* two|strong=\"H8145\"* horns|strong=\"H7161\"* were|strong=\"H5869\"* high|strong=\"H1364\"*, but|strong=\"H7200\"* one|strong=\"H4480\"* was|strong=\"H7161\"* higher|strong=\"H1364\"* than|strong=\"H4480\"* the|strong=\"H6440\"* other|strong=\"H8145\"*, and|strong=\"H5869\"* the|strong=\"H6440\"* higher|strong=\"H1364\"* came|strong=\"H5927\"* up|strong=\"H5927\"* last|strong=\"H5975\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H7200\"* saw|strong=\"H7200\"* the|strong=\"H3605\"* ram pushing|strong=\"H5055\"* westward|strong=\"H3220\"*, northward|strong=\"H6828\"*, and|strong=\"H3027\"* southward|strong=\"H5045\"*. No|strong=\"H3808\"* animals|strong=\"H2416\"* could|strong=\"H5337\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*. There|strong=\"H5975\"* wasn’t any|strong=\"H3605\"* who|strong=\"H3605\"* could|strong=\"H5337\"* deliver|strong=\"H5337\"* out|strong=\"H7200\"* of|strong=\"H3027\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, but|strong=\"H3808\"* he|strong=\"H6213\"* did|strong=\"H6213\"* according|strong=\"H3027\"* to|strong=\"H6213\"* his|strong=\"H3605\"* will|strong=\"H7522\"*, and|strong=\"H3027\"* magnified|strong=\"H1431\"* himself|strong=\"H3027\"*." + }, + { + "verseNum": 5, + "text": "As|strong=\"H1961\"* I|strong=\"H2009\"* was|strong=\"H1961\"* considering, behold|strong=\"H2009\"*, a|strong=\"H3068\"* male|strong=\"H6842\"* goat|strong=\"H5795\"* came|strong=\"H1961\"* from|strong=\"H4480\"* the|strong=\"H3605\"* west|strong=\"H4628\"* over|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth, and|strong=\"H5869\"* didn’t touch|strong=\"H5060\"* the|strong=\"H3605\"* ground|strong=\"H6440\"*. The|strong=\"H3605\"* goat|strong=\"H5795\"* had|strong=\"H1961\"* a|strong=\"H3068\"* notable|strong=\"H2380\"* horn|strong=\"H7161\"* between|strong=\"H5921\"* his|strong=\"H3605\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H5704\"* came to|strong=\"H5704\"* the|strong=\"H6440\"* ram that|strong=\"H7200\"* had|strong=\"H1167\"* the|strong=\"H6440\"* two horns|strong=\"H7161\"*, which|strong=\"H7161\"* I|strong=\"H5704\"* saw|strong=\"H7200\"* standing|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* river|strong=\"H5704\"*, and|strong=\"H6440\"* ran|strong=\"H7323\"* on|strong=\"H7200\"* him|strong=\"H6440\"* in|strong=\"H6440\"* the|strong=\"H6440\"* fury|strong=\"H2534\"* of|strong=\"H6440\"* his|strong=\"H6440\"* power|strong=\"H3581\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H7200\"* saw|strong=\"H7200\"* him|strong=\"H6440\"* come|strong=\"H1961\"* close|strong=\"H5060\"* to|strong=\"H1961\"* the|strong=\"H6440\"* ram, and|strong=\"H3027\"* he|strong=\"H8147\"* was|strong=\"H1961\"* moved with|strong=\"H6440\"* anger|strong=\"H6440\"* against|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H3027\"* struck|strong=\"H5221\"* the|strong=\"H6440\"* ram, and|strong=\"H3027\"* broke|strong=\"H7665\"* his|strong=\"H6440\"* two|strong=\"H8147\"* horns|strong=\"H7161\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* power|strong=\"H3027\"* in|strong=\"H6440\"* the|strong=\"H6440\"* ram to|strong=\"H1961\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*; but|strong=\"H3808\"* he|strong=\"H8147\"* cast|strong=\"H7993\"* him|strong=\"H6440\"* down|strong=\"H5221\"* to|strong=\"H1961\"* the|strong=\"H6440\"* ground|strong=\"H6440\"* and|strong=\"H3027\"* trampled|strong=\"H7429\"* on|strong=\"H7200\"* him|strong=\"H6440\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* one|strong=\"H3808\"* who|strong=\"H5975\"* could|strong=\"H5337\"* deliver|strong=\"H5337\"* the|strong=\"H6440\"* ram out|strong=\"H7993\"* of|strong=\"H3027\"* his|strong=\"H6440\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5704\"* male|strong=\"H6842\"* goat|strong=\"H5795\"* magnified|strong=\"H1431\"* himself|strong=\"H1431\"* exceedingly|strong=\"H3966\"*. When|strong=\"H5704\"* he|strong=\"H5704\"* was|strong=\"H7307\"* strong|strong=\"H6105\"*, the|strong=\"H5704\"* great|strong=\"H1419\"* horn|strong=\"H7161\"* was|strong=\"H7307\"* broken|strong=\"H7665\"*; and|strong=\"H8064\"* instead|strong=\"H8478\"* of|strong=\"H7307\"* it|strong=\"H5927\"* there|strong=\"H5927\"* came|strong=\"H5927\"* up|strong=\"H5927\"* four notable|strong=\"H2380\"* horns|strong=\"H7161\"* toward|strong=\"H5927\"* the|strong=\"H5704\"* four winds|strong=\"H7307\"* of|strong=\"H7307\"* the|strong=\"H5704\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 9, + "text": "Out|strong=\"H3318\"* of|strong=\"H4480\"* one|strong=\"H4480\"* of|strong=\"H4480\"* them|strong=\"H1992\"* came|strong=\"H3318\"* out|strong=\"H3318\"* a|strong=\"H3068\"* little|strong=\"H4704\"* horn|strong=\"H7161\"* which|strong=\"H1992\"* grew|strong=\"H1431\"* exceedingly|strong=\"H3499\"* great|strong=\"H1431\"*—toward|strong=\"H4480\"* the|strong=\"H4480\"* south|strong=\"H5045\"*, and|strong=\"H3318\"* toward|strong=\"H4480\"* the|strong=\"H4480\"* east|strong=\"H4217\"*, and|strong=\"H3318\"* toward|strong=\"H4480\"* the|strong=\"H4480\"* glorious|strong=\"H6643\"* land." + }, + { + "verseNum": 10, + "text": "It|strong=\"H5704\"* grew|strong=\"H1431\"* great|strong=\"H1431\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H4480\"* army|strong=\"H6635\"* of|strong=\"H4480\"* the|strong=\"H4480\"* sky|strong=\"H8064\"*; and|strong=\"H8064\"* it|strong=\"H5704\"* cast|strong=\"H5307\"* down|strong=\"H5307\"* some|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* army|strong=\"H6635\"* and|strong=\"H8064\"* of|strong=\"H4480\"* the|strong=\"H4480\"* stars|strong=\"H3556\"* to|strong=\"H5704\"* the|strong=\"H4480\"* ground and|strong=\"H8064\"* trampled|strong=\"H7429\"* on|strong=\"H5307\"* them|strong=\"H5307\"*." + }, + { + "verseNum": 11, + "text": "Yes, it|strong=\"H7993\"* magnified|strong=\"H1431\"* itself|strong=\"H1431\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H4480\"* prince|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H4480\"* army|strong=\"H6635\"*; and|strong=\"H8269\"* it|strong=\"H7993\"* took|strong=\"H7311\"* away|strong=\"H7993\"* from|strong=\"H4480\"* him|strong=\"H4480\"* the|strong=\"H4480\"* continual|strong=\"H8548\"* burnt|strong=\"H8548\"* offering|strong=\"H4480\"*, and|strong=\"H8269\"* the|strong=\"H4480\"* place|strong=\"H4349\"* of|strong=\"H8269\"* his|strong=\"H4480\"* sanctuary|strong=\"H4720\"* was|strong=\"H6635\"* cast|strong=\"H7993\"* down|strong=\"H7993\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* army|strong=\"H6635\"* was|strong=\"H6635\"* given|strong=\"H5414\"* over|strong=\"H5921\"* to|strong=\"H5921\"* it|strong=\"H5414\"* together|strong=\"H5921\"* with|strong=\"H6213\"* the|strong=\"H5921\"* continual|strong=\"H8548\"* burnt|strong=\"H8548\"* offering|strong=\"H6213\"* through|strong=\"H5921\"* disobedience. It|strong=\"H5414\"* cast|strong=\"H7993\"* down|strong=\"H7993\"* truth to|strong=\"H5921\"* the|strong=\"H5921\"* ground, and|strong=\"H6213\"* it|strong=\"H5414\"* did|strong=\"H6213\"* its|strong=\"H5414\"* pleasure and|strong=\"H6213\"* prospered|strong=\"H6743\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H1696\"* I|strong=\"H5414\"* heard|strong=\"H8085\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* one|strong=\"H6918\"* speaking|strong=\"H1696\"*; and|strong=\"H8085\"* another holy|strong=\"H6944\"* one|strong=\"H6918\"* said|strong=\"H1696\"* to|strong=\"H1696\"* that|strong=\"H8085\"* certain|strong=\"H6422\"* one|strong=\"H6918\"* who|strong=\"H6635\"* spoke|strong=\"H1696\"*, “How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H6635\"* the|strong=\"H8085\"* vision|strong=\"H2377\"* about|strong=\"H8085\"* the|strong=\"H8085\"* continual|strong=\"H8548\"* burnt|strong=\"H8548\"* offering, and|strong=\"H8085\"* the|strong=\"H8085\"* disobedience that|strong=\"H8085\"* makes|strong=\"H5414\"* desolate|strong=\"H8074\"*, to|strong=\"H1696\"* give|strong=\"H5414\"* both the|strong=\"H8085\"* sanctuary|strong=\"H6944\"* and|strong=\"H8085\"* the|strong=\"H8085\"* army|strong=\"H6635\"* to|strong=\"H1696\"* be|strong=\"H5414\"* trodden|strong=\"H4823\"* under|strong=\"H5414\"* foot|strong=\"H4823\"* be|strong=\"H5414\"*?”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H5704\"* said to|strong=\"H5704\"* me|strong=\"H6153\"*, “To|strong=\"H5704\"* two|strong=\"H3967\"* thousand and|strong=\"H3967\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* evenings|strong=\"H6153\"* and|strong=\"H3967\"* mornings|strong=\"H1242\"*. Then the|strong=\"H5704\"* sanctuary|strong=\"H6944\"* will|strong=\"H5704\"* be|strong=\"H6944\"* cleansed|strong=\"H6663\"*.”" + }, + { + "verseNum": 15, + "text": "When|strong=\"H1961\"* I|strong=\"H2009\"*, even|strong=\"H1840\"* I|strong=\"H2009\"* Daniel|strong=\"H1840\"*, had|strong=\"H1961\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* vision|strong=\"H2377\"*, I|strong=\"H2009\"* sought|strong=\"H1245\"* to|strong=\"H1961\"* understand|strong=\"H7200\"* it|strong=\"H7200\"*. Then|strong=\"H1961\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* stood|strong=\"H5975\"* before|strong=\"H5048\"* me|strong=\"H7200\"* someone with|strong=\"H1961\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H4758\"* a|strong=\"H3068\"* man|strong=\"H1397\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"H8085\"* heard|strong=\"H8085\"* a|strong=\"H3068\"* man’s voice|strong=\"H6963\"* between|strong=\"H6963\"* the|strong=\"H8085\"* banks of|strong=\"H6963\"* the|strong=\"H8085\"* Ulai, which|strong=\"H8085\"* called|strong=\"H7121\"* and|strong=\"H6963\"* said|strong=\"H7121\"*, “Gabriel|strong=\"H1403\"*, make|strong=\"H8085\"* this|strong=\"H1975\"* man understand|strong=\"H8085\"* the|strong=\"H8085\"* vision|strong=\"H4758\"*.”" + }, + { + "verseNum": 17, + "text": "So|strong=\"H5975\"* he|strong=\"H3588\"* came|strong=\"H5307\"* near|strong=\"H6440\"* where|strong=\"H5921\"* I|strong=\"H3588\"* stood|strong=\"H5975\"*; and|strong=\"H1121\"* when|strong=\"H3588\"* he|strong=\"H3588\"* came|strong=\"H5307\"*, I|strong=\"H3588\"* was|strong=\"H1121\"* frightened|strong=\"H1204\"*, and|strong=\"H1121\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* my|strong=\"H5921\"* face|strong=\"H6440\"*; but|strong=\"H3588\"* he|strong=\"H3588\"* said to|strong=\"H5921\"* me|strong=\"H6440\"*, “Understand, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, for|strong=\"H3588\"* the|strong=\"H6440\"* vision|strong=\"H2377\"* belongs to|strong=\"H5921\"* the|strong=\"H6440\"* time|strong=\"H6256\"* of|strong=\"H1121\"* the|strong=\"H6440\"* end|strong=\"H7093\"*.”" + }, + { + "verseNum": 18, + "text": "Now|strong=\"H1696\"* as|strong=\"H6440\"* he|strong=\"H5921\"* was|strong=\"H6440\"* speaking|strong=\"H1696\"* with|strong=\"H5973\"* me|strong=\"H6440\"*, I|strong=\"H5921\"* fell|strong=\"H7290\"* into|strong=\"H5921\"* a|strong=\"H3068\"* deep|strong=\"H7290\"* sleep|strong=\"H7290\"* with|strong=\"H5973\"* my|strong=\"H5921\"* face|strong=\"H6440\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*; but|strong=\"H1696\"* he|strong=\"H5921\"* touched|strong=\"H5060\"* me|strong=\"H6440\"* and|strong=\"H6440\"* set|strong=\"H5975\"* me|strong=\"H6440\"* upright|strong=\"H5975\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3588\"* said, “Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H1961\"* make|strong=\"H3045\"* you|strong=\"H3588\"* know|strong=\"H3045\"* what|strong=\"H3045\"* will|strong=\"H1961\"* be|strong=\"H1961\"* in|strong=\"H1961\"* the|strong=\"H3588\"* latter time|strong=\"H4150\"* of|strong=\"H7093\"* the|strong=\"H3588\"* indignation|strong=\"H2195\"*, for|strong=\"H3588\"* it|strong=\"H3588\"* belongs|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H3588\"* appointed|strong=\"H4150\"* time|strong=\"H4150\"* of|strong=\"H7093\"* the|strong=\"H3588\"* end|strong=\"H7093\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H7200\"* ram which|strong=\"H7161\"* you|strong=\"H7200\"* saw|strong=\"H7200\"*, that|strong=\"H7200\"* had|strong=\"H4428\"* the|strong=\"H7200\"* two horns|strong=\"H7161\"*, they|strong=\"H1167\"* are|strong=\"H4428\"* the|strong=\"H7200\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Media|strong=\"H4074\"* and|strong=\"H4428\"* Persia|strong=\"H6539\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H5869\"* rough|strong=\"H8163\"* male|strong=\"H8163\"* goat|strong=\"H8163\"* is|strong=\"H1931\"* the|strong=\"H5869\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Greece|strong=\"H3120\"*. The|strong=\"H5869\"* great|strong=\"H1419\"* horn|strong=\"H7161\"* that|strong=\"H1931\"* is|strong=\"H1931\"* between his|strong=\"H4428\"* eyes|strong=\"H5869\"* is|strong=\"H1931\"* the|strong=\"H5869\"* first|strong=\"H7223\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 22, + "text": "As|strong=\"H8478\"* for|strong=\"H8478\"* that|strong=\"H1471\"* which|strong=\"H1471\"* was|strong=\"H4438\"* broken|strong=\"H7665\"*, in|strong=\"H5975\"* the|strong=\"H8478\"* place|strong=\"H8478\"* where|strong=\"H8478\"* four stood|strong=\"H5975\"* up|strong=\"H5975\"*, four kingdoms|strong=\"H4438\"* will|strong=\"H1471\"* stand|strong=\"H5975\"* up|strong=\"H5975\"* out|strong=\"H1471\"* of|strong=\"H4438\"* the|strong=\"H8478\"* nation|strong=\"H1471\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* with|strong=\"H5975\"* his|strong=\"H8478\"* power|strong=\"H3581\"*." + }, + { + "verseNum": 23, + "text": "“In|strong=\"H4428\"* the|strong=\"H6440\"* latter time|strong=\"H6440\"* of|strong=\"H4428\"* their|strong=\"H6440\"* kingdom|strong=\"H4438\"*, when|strong=\"H5975\"* the|strong=\"H6440\"* transgressors|strong=\"H6586\"* have|strong=\"H4428\"* come|strong=\"H8552\"* to|strong=\"H6440\"* the|strong=\"H6440\"* full|strong=\"H8552\"*, a|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H4428\"* fierce|strong=\"H5794\"* face|strong=\"H6440\"*, and|strong=\"H4428\"* understanding|strong=\"H6440\"* riddles|strong=\"H2420\"*, will|strong=\"H4428\"* stand|strong=\"H5975\"* up|strong=\"H5975\"*." + }, + { + "verseNum": 24, + "text": "His|strong=\"H6213\"* power|strong=\"H3581\"* will|strong=\"H5971\"* be|strong=\"H3808\"* mighty|strong=\"H6099\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* by|strong=\"H3808\"* his|strong=\"H6213\"* own|strong=\"H5971\"* power|strong=\"H3581\"*. He|strong=\"H6213\"* will|strong=\"H5971\"* destroy|strong=\"H7843\"* awesomely, and|strong=\"H5971\"* will|strong=\"H5971\"* prosper|strong=\"H6743\"* in|strong=\"H6213\"* what|strong=\"H6213\"* he|strong=\"H6213\"* does|strong=\"H6213\"*. He|strong=\"H6213\"* will|strong=\"H5971\"* destroy|strong=\"H7843\"* the|strong=\"H6213\"* mighty|strong=\"H6099\"* ones|strong=\"H6918\"* and|strong=\"H5971\"* the|strong=\"H6213\"* holy|strong=\"H6918\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 25, + "text": "Through|strong=\"H3027\"* his|strong=\"H5921\"* policy|strong=\"H7922\"* he|strong=\"H3027\"* will|strong=\"H3027\"* cause deceit|strong=\"H4820\"* to|strong=\"H5921\"* prosper|strong=\"H6743\"* in|strong=\"H5921\"* his|strong=\"H5921\"* hand|strong=\"H3027\"*. He|strong=\"H3027\"* will|strong=\"H3027\"* magnify|strong=\"H1431\"* himself|strong=\"H3027\"* in|strong=\"H5921\"* his|strong=\"H5921\"* heart|strong=\"H3824\"*, and|strong=\"H3027\"* he|strong=\"H3027\"* will|strong=\"H3027\"* destroy|strong=\"H7843\"* many|strong=\"H7227\"* in|strong=\"H5921\"* their|strong=\"H5921\"* security. He|strong=\"H3027\"* will|strong=\"H3027\"* also|strong=\"H3027\"* stand|strong=\"H5975\"* up|strong=\"H5975\"* against|strong=\"H5921\"* the|strong=\"H5921\"* prince|strong=\"H8269\"* of|strong=\"H3027\"* princes|strong=\"H8269\"*, but|strong=\"H5921\"* he|strong=\"H3027\"* will|strong=\"H3027\"* be|strong=\"H3027\"* broken|strong=\"H7665\"* without|strong=\"H7665\"* human|strong=\"H3027\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 26, + "text": "“The|strong=\"H3588\"* vision|strong=\"H2377\"* of|strong=\"H3117\"* the|strong=\"H3588\"* evenings|strong=\"H6153\"* and|strong=\"H3117\"* mornings|strong=\"H1242\"* which|strong=\"H1931\"* has|strong=\"H3117\"* been told is|strong=\"H1931\"* true; but|strong=\"H3588\"* seal up|strong=\"H5640\"* the|strong=\"H3588\"* vision|strong=\"H2377\"*, for|strong=\"H3588\"* it|strong=\"H1931\"* belongs to|strong=\"H3117\"* many|strong=\"H7227\"* days|strong=\"H3117\"* to|strong=\"H3117\"* come.”" + }, + { + "verseNum": 27, + "text": "I|strong=\"H3117\"*, Daniel|strong=\"H1840\"*, fainted|strong=\"H1961\"*, and|strong=\"H6965\"* was|strong=\"H1961\"* sick|strong=\"H2470\"* for|strong=\"H5921\"* some|strong=\"H3117\"* days|strong=\"H3117\"*. Then|strong=\"H1961\"* I|strong=\"H3117\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* did|strong=\"H6213\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s business|strong=\"H4399\"*. I|strong=\"H3117\"* wondered|strong=\"H8074\"* at|strong=\"H5921\"* the|strong=\"H5921\"* vision|strong=\"H4758\"*, but|strong=\"H1961\"* no|strong=\"H6213\"* one|strong=\"H1961\"* understood it|strong=\"H5921\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* first|strong=\"H1121\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Darius|strong=\"H1867\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahasuerus, of|strong=\"H1121\"* the|strong=\"H5921\"* offspring|strong=\"H2233\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Medes|strong=\"H4074\"*, who|strong=\"H1121\"* was|strong=\"H1121\"* made|strong=\"H4427\"* king|strong=\"H4427\"* over|strong=\"H5921\"* the|strong=\"H5921\"* realm|strong=\"H4438\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Chaldeans|strong=\"H3778\"*—" + }, + { + "verseNum": 2, + "text": "in|strong=\"H8141\"* the|strong=\"H3068\"* first year|strong=\"H8141\"* of|strong=\"H3068\"* his|strong=\"H3068\"* reign|strong=\"H4427\"* I|strong=\"H1697\"*, Daniel|strong=\"H1840\"*, understood by|strong=\"H8141\"* the|strong=\"H3068\"* books|strong=\"H5612\"* the|strong=\"H3068\"* number|strong=\"H4557\"* of|strong=\"H3068\"* the|strong=\"H3068\"* years|strong=\"H8141\"* about|strong=\"H1961\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s+ 9:2 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. * word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* for|strong=\"H3068\"* the|strong=\"H3068\"* accomplishing of|strong=\"H3068\"* the|strong=\"H3068\"* desolations|strong=\"H2723\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, even|strong=\"H3068\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H5414\"* set|strong=\"H5414\"* my|strong=\"H5414\"* face|strong=\"H6440\"* to|strong=\"H5414\"* the|strong=\"H6440\"* Lord God|strong=\"H5414\"*, to|strong=\"H5414\"* seek|strong=\"H1245\"* by|strong=\"H5414\"* prayer|strong=\"H8605\"* and|strong=\"H6440\"* petitions, with|strong=\"H6440\"* fasting|strong=\"H6685\"* and|strong=\"H6440\"* sackcloth|strong=\"H8242\"* and|strong=\"H6440\"* ashes." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3068\"* prayed|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* my|strong=\"H8104\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* made|strong=\"H6419\"* confession|strong=\"H3034\"*, and|strong=\"H3068\"* said," + }, + { + "verseNum": 5, + "text": "we|strong=\"H3068\"* have sinned|strong=\"H2398\"*, and|strong=\"H4941\"* have dealt perversely|strong=\"H5753\"*, and|strong=\"H4941\"* have done|strong=\"H2398\"* wickedly|strong=\"H7561\"*, and|strong=\"H4941\"* have rebelled|strong=\"H4775\"*, even turning|strong=\"H5493\"* aside|strong=\"H5493\"* from|strong=\"H5493\"* your|strong=\"H5493\"* precepts|strong=\"H4687\"* and|strong=\"H4941\"* from|strong=\"H5493\"* your|strong=\"H5493\"* ordinances|strong=\"H4941\"*." + }, + { + "verseNum": 6, + "text": "We|strong=\"H8085\"* haven’t listened|strong=\"H8085\"* to|strong=\"H1696\"* your|strong=\"H3605\"* servants|strong=\"H5650\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*, who|strong=\"H3605\"* spoke|strong=\"H1696\"* in|strong=\"H4428\"* your|strong=\"H3605\"* name|strong=\"H8034\"* to|strong=\"H1696\"* our|strong=\"H3605\"* kings|strong=\"H4428\"*, our|strong=\"H3605\"* princes|strong=\"H8269\"*, and|strong=\"H4428\"* our|strong=\"H3605\"* fathers, and|strong=\"H4428\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 7, + "text": "“Lord, righteousness|strong=\"H6666\"* belongs to|strong=\"H3478\"* you|strong=\"H6440\"*, but|strong=\"H3605\"* to|strong=\"H3478\"* us|strong=\"H6440\"* confusion|strong=\"H1322\"* of|strong=\"H3117\"* face|strong=\"H6440\"*, as|strong=\"H3117\"* it|strong=\"H8033\"* is|strong=\"H2088\"* today|strong=\"H3117\"*; to|strong=\"H3478\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H3117\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* to|strong=\"H3478\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3117\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* to|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, who|strong=\"H3605\"* are|strong=\"H3117\"* near|strong=\"H7138\"* and|strong=\"H3063\"* who|strong=\"H3605\"* are|strong=\"H3117\"* far|strong=\"H7350\"* off|strong=\"H7350\"*, through|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* countries where|strong=\"H8033\"* you|strong=\"H6440\"* have|strong=\"H3478\"* driven|strong=\"H5080\"* them|strong=\"H6440\"*, because|strong=\"H6440\"* of|strong=\"H3117\"* their|strong=\"H3605\"* trespass|strong=\"H4604\"* that|strong=\"H3605\"* they|strong=\"H3117\"* have|strong=\"H3478\"* trespassed|strong=\"H4603\"* against|strong=\"H6440\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "Lord|strong=\"H3068\"*, to|strong=\"H3068\"* us|strong=\"H6440\"* belongs confusion|strong=\"H1322\"* of|strong=\"H4428\"* face|strong=\"H6440\"*, to|strong=\"H3068\"* our|strong=\"H3068\"* kings|strong=\"H4428\"*, to|strong=\"H3068\"* our|strong=\"H3068\"* princes|strong=\"H8269\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* our|strong=\"H3068\"* fathers, because|strong=\"H6440\"* we|strong=\"H3068\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H6440\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 9, + "text": "To|strong=\"H3588\"* the|strong=\"H3588\"* Lord our|strong=\"H3588\"* God belong mercies|strong=\"H7356\"* and|strong=\"H7356\"* forgiveness|strong=\"H5547\"*, for|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3588\"* rebelled|strong=\"H4775\"* against|strong=\"H4775\"* him|strong=\"H3588\"*." + }, + { + "verseNum": 10, + "text": "We|strong=\"H8085\"* haven’t obeyed|strong=\"H8085\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, to|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* his|strong=\"H5414\"* laws|strong=\"H8451\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* set|strong=\"H5414\"* before|strong=\"H6440\"* us|strong=\"H5414\"* by|strong=\"H3027\"* his|strong=\"H5414\"* servants|strong=\"H5650\"* the|strong=\"H6440\"* prophets|strong=\"H5030\"*." + }, + { + "verseNum": 11, + "text": "Yes|strong=\"H3588\"*, all|strong=\"H3605\"* Israel|strong=\"H3478\"* have|strong=\"H5650\"* transgressed|strong=\"H5674\"* your|strong=\"H3605\"* law|strong=\"H8451\"*, turning|strong=\"H5493\"* aside|strong=\"H5493\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* should|strong=\"H3588\"* not|strong=\"H1115\"* obey|strong=\"H8085\"* your|strong=\"H3605\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H6213\"* has|strong=\"H1697\"* confirmed|strong=\"H6965\"* his|strong=\"H3605\"* words|strong=\"H1697\"*, which|strong=\"H1697\"* he|strong=\"H6213\"* spoke|strong=\"H1696\"* against|strong=\"H5921\"* us|strong=\"H5921\"* and|strong=\"H6965\"* against|strong=\"H5921\"* our|strong=\"H3605\"* judges|strong=\"H8199\"* who|strong=\"H3605\"* judged|strong=\"H8199\"* us|strong=\"H5921\"*, by|strong=\"H5921\"* bringing on|strong=\"H5921\"* us|strong=\"H5921\"* a|strong=\"H3068\"* great|strong=\"H1419\"* evil|strong=\"H7451\"*; for|strong=\"H5921\"* under|strong=\"H8478\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* sky|strong=\"H8064\"*, such|strong=\"H1696\"* has|strong=\"H1697\"* not|strong=\"H3808\"* been|strong=\"H3808\"* done|strong=\"H6213\"* as|strong=\"H1697\"* has|strong=\"H1697\"* been|strong=\"H3808\"* done|strong=\"H6213\"* to|strong=\"H1696\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 13, + "text": "As|strong=\"H3068\"* it|strong=\"H5921\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H3068\"* Moses|strong=\"H4872\"*, all|strong=\"H3605\"* this|strong=\"H2063\"* evil|strong=\"H7451\"* has|strong=\"H3068\"* come|strong=\"H7725\"* on|strong=\"H5921\"* us|strong=\"H7725\"*. Yet|strong=\"H3068\"* we|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* entreated|strong=\"H2470\"* the|strong=\"H3605\"* favor|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, that|strong=\"H3605\"* we|strong=\"H3068\"* should|strong=\"H3068\"* turn|strong=\"H7725\"* from|strong=\"H7725\"* our|strong=\"H3068\"* iniquities|strong=\"H5771\"* and|strong=\"H4872\"* have|strong=\"H3068\"* discernment|strong=\"H7919\"* in|strong=\"H5921\"* your|strong=\"H3068\"* truth|strong=\"H3808\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H5921\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* watched|strong=\"H8245\"* over|strong=\"H5921\"* the|strong=\"H3605\"* evil|strong=\"H7451\"*, and|strong=\"H3068\"* brought|strong=\"H6213\"* it|strong=\"H5921\"* on|strong=\"H5921\"* us|strong=\"H5921\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* is|strong=\"H3068\"* righteous|strong=\"H6662\"* in|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* works|strong=\"H4639\"* which|strong=\"H3068\"* he|strong=\"H3588\"* does|strong=\"H6213\"*, and|strong=\"H3068\"* we|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* obeyed|strong=\"H8085\"* his|strong=\"H3605\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 15, + "text": "“Now|strong=\"H6258\"*, Lord our|strong=\"H3318\"* God|strong=\"H3027\"*, who|strong=\"H5971\"* has|strong=\"H3117\"* brought|strong=\"H3318\"* your|strong=\"H6213\"* people|strong=\"H5971\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H6213\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"* with|strong=\"H6213\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*, and|strong=\"H3117\"* have|strong=\"H5971\"* gotten|strong=\"H6213\"* yourself|strong=\"H6213\"* renown|strong=\"H8034\"*, as|strong=\"H3117\"* it|strong=\"H6213\"* is|strong=\"H2088\"* today|strong=\"H3117\"*, we|strong=\"H3068\"* have|strong=\"H5971\"* sinned|strong=\"H2398\"*. We|strong=\"H3117\"* have|strong=\"H5971\"* done|strong=\"H6213\"* wickedly|strong=\"H7561\"*." + }, + { + "verseNum": 16, + "text": "Lord, according to|strong=\"H7725\"* all|strong=\"H3605\"* your|strong=\"H3605\"* righteousness|strong=\"H6666\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H3605\"* anger|strong=\"H2534\"* and|strong=\"H7725\"* your|strong=\"H3605\"* wrath|strong=\"H2534\"* be|strong=\"H4994\"* turned|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* your|strong=\"H3605\"* city|strong=\"H5892\"* Jerusalem|strong=\"H3389\"*, your|strong=\"H3605\"* holy|strong=\"H6944\"* mountain|strong=\"H2022\"*; because|strong=\"H3588\"* for|strong=\"H3588\"* our|strong=\"H3605\"* sins|strong=\"H2399\"* and|strong=\"H7725\"* for|strong=\"H3588\"* the|strong=\"H3605\"* iniquities|strong=\"H5771\"* of|strong=\"H5892\"* our|strong=\"H3605\"* fathers, Jerusalem|strong=\"H3389\"* and|strong=\"H7725\"* your|strong=\"H3605\"* people|strong=\"H5971\"* have|strong=\"H5971\"* become|strong=\"H7725\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* to|strong=\"H7725\"* all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H5971\"* around|strong=\"H5439\"* us|strong=\"H4994\"*." + }, + { + "verseNum": 17, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, our|strong=\"H5921\"* God, listen|strong=\"H8085\"* to|strong=\"H5921\"* the|strong=\"H6440\"* prayer|strong=\"H8605\"* of|strong=\"H6440\"* your|strong=\"H5921\"* servant|strong=\"H5650\"* and|strong=\"H5650\"* to|strong=\"H5921\"* his|strong=\"H8085\"* petitions, and|strong=\"H5650\"* cause your|strong=\"H5921\"* face|strong=\"H6440\"* to|strong=\"H5921\"* shine on|strong=\"H5921\"* your|strong=\"H5921\"* sanctuary|strong=\"H4720\"* that|strong=\"H8085\"* is|strong=\"H5650\"* desolate|strong=\"H8076\"*, for|strong=\"H5921\"* the|strong=\"H6440\"* Lord’s sake|strong=\"H4616\"*." + }, + { + "verseNum": 18, + "text": "My|strong=\"H8085\"* God|strong=\"H3808\"*, turn|strong=\"H5186\"* your|strong=\"H5921\"* ear|strong=\"H8085\"* and|strong=\"H5892\"* hear|strong=\"H8085\"*. Open|strong=\"H6440\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"* and|strong=\"H5892\"* see|strong=\"H7200\"* our|strong=\"H7200\"* desolations|strong=\"H8077\"*, and|strong=\"H5892\"* the|strong=\"H6440\"* city|strong=\"H5892\"* which|strong=\"H5869\"* is|strong=\"H8034\"* called|strong=\"H7121\"* by|strong=\"H5921\"* your|strong=\"H5921\"* name|strong=\"H8034\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* do|strong=\"H5869\"* not|strong=\"H3808\"* present|strong=\"H5307\"* our|strong=\"H7200\"* petitions before|strong=\"H6440\"* you|strong=\"H3588\"* for|strong=\"H3588\"* our|strong=\"H7200\"* righteousness|strong=\"H6666\"*, but|strong=\"H3588\"* for|strong=\"H3588\"* your|strong=\"H5921\"* great|strong=\"H7227\"* mercies|strong=\"H7356\"*’ sake|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "Lord, hear|strong=\"H8085\"*. Lord, forgive|strong=\"H5545\"*. Lord, listen|strong=\"H8085\"* and|strong=\"H5971\"* do|strong=\"H6213\"*. Don’t defer, for|strong=\"H3588\"* your|strong=\"H5921\"* own|strong=\"H5971\"* sake|strong=\"H4616\"*, my|strong=\"H8085\"* God, because|strong=\"H3588\"* your|strong=\"H5921\"* city|strong=\"H5892\"* and|strong=\"H5971\"* your|strong=\"H5921\"* people|strong=\"H5971\"* are|strong=\"H5971\"* called|strong=\"H7121\"* by|strong=\"H5921\"* your|strong=\"H5921\"* name|strong=\"H8034\"*.”" + }, + { + "verseNum": 20, + "text": "While|strong=\"H5750\"* I|strong=\"H5921\"* was|strong=\"H3068\"* speaking|strong=\"H1696\"*, praying|strong=\"H6419\"*, and|strong=\"H3478\"* confessing|strong=\"H3034\"* my|strong=\"H3068\"* sin|strong=\"H2403\"* and|strong=\"H3478\"* the|strong=\"H6440\"* sin|strong=\"H2403\"* of|strong=\"H3068\"* my|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* presenting|strong=\"H5307\"* my|strong=\"H3068\"* supplication|strong=\"H8467\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"* for|strong=\"H5921\"* the|strong=\"H6440\"* holy|strong=\"H6944\"* mountain|strong=\"H2022\"* of|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*—" + }, + { + "verseNum": 21, + "text": "yes|strong=\"H7200\"*, while|strong=\"H5750\"* I|strong=\"H7200\"* was|strong=\"H4503\"* speaking|strong=\"H1696\"* in|strong=\"H1696\"* prayer|strong=\"H8605\"*—the|strong=\"H7200\"* man|strong=\"H7200\"* Gabriel|strong=\"H1403\"*, whom I|strong=\"H7200\"* had|strong=\"H5750\"* seen|strong=\"H7200\"* in|strong=\"H1696\"* the|strong=\"H7200\"* vision|strong=\"H2377\"* at|strong=\"H7200\"* the|strong=\"H7200\"* beginning|strong=\"H8462\"*, being|strong=\"H5750\"* caused to|strong=\"H1696\"* fly|strong=\"H3286\"* swiftly|strong=\"H3288\"*, touched|strong=\"H5060\"* me|strong=\"H7200\"* about|strong=\"H6256\"* the|strong=\"H7200\"* time|strong=\"H6256\"* of|strong=\"H6256\"* the|strong=\"H7200\"* evening|strong=\"H6153\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H1696\"* instructed|strong=\"H1696\"* me|strong=\"H3318\"* and|strong=\"H3318\"* talked|strong=\"H1696\"* with|strong=\"H5973\"* me|strong=\"H3318\"*, and|strong=\"H3318\"* said|strong=\"H1696\"*, “Daniel|strong=\"H1840\"*, I|strong=\"H6258\"* have|strong=\"H7919\"* now|strong=\"H6258\"* come|strong=\"H3318\"* to|strong=\"H1696\"* give|strong=\"H1696\"* you|strong=\"H5973\"* wisdom|strong=\"H7919\"* and|strong=\"H3318\"* understanding|strong=\"H7919\"*." + }, + { + "verseNum": 23, + "text": "At|strong=\"H3318\"* the|strong=\"H3588\"* beginning|strong=\"H8462\"* of|strong=\"H1697\"* your|strong=\"H3588\"* petitions the|strong=\"H3588\"* commandment|strong=\"H1697\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1697\"* I|strong=\"H3588\"* have|strong=\"H1697\"* come|strong=\"H3318\"* to|strong=\"H3318\"* tell|strong=\"H5046\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1697\"* greatly beloved. Therefore|strong=\"H3588\"* consider the|strong=\"H3588\"* matter|strong=\"H1697\"* and|strong=\"H1697\"* understand the|strong=\"H3588\"* vision|strong=\"H4758\"*." + }, + { + "verseNum": 24, + "text": "“Seventy|strong=\"H7657\"* weeks|strong=\"H7620\"* are|strong=\"H5971\"* decreed|strong=\"H2852\"* on|strong=\"H5921\"* your|strong=\"H5921\"* people|strong=\"H5971\"* and|strong=\"H5971\"* on|strong=\"H5921\"* your|strong=\"H5921\"* holy|strong=\"H6944\"* city|strong=\"H5892\"*, to|strong=\"H5921\"* finish|strong=\"H3607\"* disobedience, to|strong=\"H5921\"* make|strong=\"H3722\"* an|strong=\"H5892\"* end of|strong=\"H5892\"* sins|strong=\"H2403\"*, to|strong=\"H5921\"* make|strong=\"H3722\"* reconciliation|strong=\"H3722\"* for|strong=\"H5921\"* iniquity|strong=\"H5771\"*, to|strong=\"H5921\"* bring in|strong=\"H5921\"* everlasting|strong=\"H5769\"* righteousness|strong=\"H6664\"*, to|strong=\"H5921\"* seal|strong=\"H2856\"* up|strong=\"H2856\"* vision|strong=\"H2377\"* and|strong=\"H5971\"* prophecy|strong=\"H5030\"*, and|strong=\"H5971\"* to|strong=\"H5921\"* anoint|strong=\"H4886\"* the|strong=\"H5921\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 25, + "text": "“Know|strong=\"H3045\"* therefore|strong=\"H3045\"* and|strong=\"H7725\"* discern|strong=\"H3045\"* that|strong=\"H3045\"* from|strong=\"H4480\"* the|strong=\"H4480\"* going|strong=\"H4161\"* out|strong=\"H4480\"* of|strong=\"H1697\"* the|strong=\"H4480\"* commandment|strong=\"H1697\"* to|strong=\"H5704\"* restore|strong=\"H7725\"* and|strong=\"H7725\"* build|strong=\"H1129\"* Jerusalem|strong=\"H3389\"* to|strong=\"H5704\"* the|strong=\"H4480\"* Anointed|strong=\"H4899\"* One|strong=\"H4480\"*,+ 9:25 “Anointed One” can also be translated “Messiah” (same as “Christ”).* the|strong=\"H4480\"* prince|strong=\"H5057\"*, will|strong=\"H3389\"* be|strong=\"H1697\"* seven|strong=\"H7651\"* weeks|strong=\"H7620\"* and|strong=\"H7725\"* sixty-two|strong=\"H8346\"* weeks|strong=\"H7620\"*. It|strong=\"H7725\"* will|strong=\"H3389\"* be|strong=\"H1697\"* built|strong=\"H1129\"* again|strong=\"H7725\"*, with|strong=\"H1697\"* street|strong=\"H7339\"* and|strong=\"H7725\"* moat|strong=\"H2742\"*, even|strong=\"H5704\"* in|strong=\"H7725\"* troubled times|strong=\"H6256\"*." + }, + { + "verseNum": 26, + "text": "After|strong=\"H7093\"* the|strong=\"H5704\"* sixty-two|strong=\"H8346\"* weeks|strong=\"H7620\"* the|strong=\"H5704\"* Anointed|strong=\"H4899\"* One|strong=\"H5892\"*+ 9:26 “Anointed One” can also be translated “Messiah” (same as “Christ”).* will|strong=\"H5971\"* be|strong=\"H5892\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*, and|strong=\"H5971\"* will|strong=\"H5971\"* have|strong=\"H5971\"* nothing. The|strong=\"H5704\"* people|strong=\"H5971\"* of|strong=\"H5892\"* the|strong=\"H5704\"* prince|strong=\"H5057\"* who|strong=\"H5971\"* come|strong=\"H5971\"* will|strong=\"H5971\"* destroy|strong=\"H7843\"* the|strong=\"H5704\"* city|strong=\"H5892\"* and|strong=\"H5971\"* the|strong=\"H5704\"* sanctuary|strong=\"H6944\"*. Its|strong=\"H3772\"* end|strong=\"H7093\"* will|strong=\"H5971\"* be|strong=\"H5892\"* with|strong=\"H5971\"* a|strong=\"H3068\"* flood|strong=\"H7858\"*, and|strong=\"H5971\"* war|strong=\"H4421\"* will|strong=\"H5971\"* be|strong=\"H5892\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* end|strong=\"H7093\"*. Desolations|strong=\"H8074\"* are|strong=\"H5971\"* determined|strong=\"H2782\"*." + }, + { + "verseNum": 27, + "text": "He|strong=\"H5704\"* will|strong=\"H7227\"* make|strong=\"H8074\"* a|strong=\"H3068\"* firm|strong=\"H1396\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* many|strong=\"H7227\"* for|strong=\"H5704\"* one|strong=\"H3671\"* week|strong=\"H7620\"*. In|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H2677\"* of|strong=\"H2077\"* the|strong=\"H5921\"* week|strong=\"H7620\"* he|strong=\"H5704\"* will|strong=\"H7227\"* cause the|strong=\"H5921\"* sacrifice|strong=\"H2077\"* and|strong=\"H1285\"* the|strong=\"H5921\"* offering|strong=\"H4503\"* to|strong=\"H5704\"* cease|strong=\"H7673\"*. On|strong=\"H5921\"* the|strong=\"H5921\"* wing|strong=\"H3671\"* of|strong=\"H2077\"* abominations|strong=\"H8251\"* will|strong=\"H7227\"* come one|strong=\"H3671\"* who|strong=\"H7227\"* makes|strong=\"H8074\"* desolate|strong=\"H8074\"*; and|strong=\"H1285\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5921\"* decreed|strong=\"H2782\"* full|strong=\"H7227\"* end|strong=\"H3617\"*, wrath will|strong=\"H7227\"* be|strong=\"H1285\"* poured|strong=\"H5413\"* out|strong=\"H5413\"* on|strong=\"H5921\"* the|strong=\"H5921\"* desolate|strong=\"H8074\"*.”" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H7121\"* third|strong=\"H7969\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Cyrus|strong=\"H3566\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"* a|strong=\"H3068\"* message|strong=\"H1697\"* was|strong=\"H8034\"* revealed|strong=\"H1540\"* to|strong=\"H4428\"* Daniel|strong=\"H1840\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Belteshazzar|strong=\"H1095\"*; and|strong=\"H4428\"* the|strong=\"H7121\"* message|strong=\"H1697\"* was|strong=\"H8034\"* true, even|strong=\"H1840\"* a|strong=\"H3068\"* great|strong=\"H1419\"* warfare|strong=\"H6635\"*. He|strong=\"H8141\"* understood the|strong=\"H7121\"* message|strong=\"H1697\"*, and|strong=\"H4428\"* had|strong=\"H4428\"* understanding of|strong=\"H4428\"* the|strong=\"H7121\"* vision|strong=\"H4758\"*." + }, + { + "verseNum": 2, + "text": "In|strong=\"H3117\"* those|strong=\"H1992\"* days|strong=\"H3117\"* I|strong=\"H3117\"*, Daniel|strong=\"H1840\"*, was|strong=\"H1961\"* mourning three|strong=\"H7969\"* whole|strong=\"H3117\"* weeks|strong=\"H7620\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H3117\"* ate no|strong=\"H3808\"* pleasant|strong=\"H2530\"* food|strong=\"H3899\"*. No|strong=\"H3808\"* meat|strong=\"H1320\"* or|strong=\"H3808\"* wine|strong=\"H3196\"* came|strong=\"H1320\"* into|strong=\"H5704\"* my|strong=\"H4390\"* mouth|strong=\"H6310\"*. I|strong=\"H3117\"* didn’t anoint|strong=\"H5480\"* myself|strong=\"H1320\"* at|strong=\"H3117\"* all|strong=\"H5704\"*, until|strong=\"H5704\"* three|strong=\"H7969\"* whole|strong=\"H3117\"* weeks|strong=\"H7620\"* were|strong=\"H3117\"* fulfilled|strong=\"H4390\"*." + }, + { + "verseNum": 4, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* twenty-fourth|strong=\"H6242\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H5921\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, as|strong=\"H3117\"* I|strong=\"H3117\"* was|strong=\"H1961\"* by|strong=\"H3027\"* the|strong=\"H5921\"* side|strong=\"H3027\"* of|strong=\"H3117\"* the|strong=\"H5921\"* great|strong=\"H1419\"* river|strong=\"H5104\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* Hiddekel|strong=\"H2313\"*,+ 10:4 or, Tigris River*" + }, + { + "verseNum": 5, + "text": "I|strong=\"H2009\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H7200\"* eyes|strong=\"H5869\"* and|strong=\"H5869\"* looked|strong=\"H7200\"*, and|strong=\"H5869\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* was|strong=\"H4975\"* a|strong=\"H3068\"* man|strong=\"H5375\"* clothed|strong=\"H3847\"* in|strong=\"H3847\"* linen, whose waist|strong=\"H4975\"* was|strong=\"H4975\"* adorned with|strong=\"H3847\"* pure|strong=\"H3800\"* gold|strong=\"H3800\"* of|strong=\"H5869\"* Uphaz." + }, + { + "verseNum": 6, + "text": "His|strong=\"H6440\"* body|strong=\"H1472\"* also|strong=\"H5869\"* was|strong=\"H1697\"* like|strong=\"H4758\"* beryl|strong=\"H8658\"*, and|strong=\"H6963\"* his|strong=\"H6440\"* face|strong=\"H6440\"* as|strong=\"H1697\"* the|strong=\"H6440\"* appearance|strong=\"H4758\"* of|strong=\"H1697\"* lightning|strong=\"H1300\"*, and|strong=\"H6963\"* his|strong=\"H6440\"* eyes|strong=\"H5869\"* as|strong=\"H1697\"* flaming torches|strong=\"H3940\"*. His|strong=\"H6440\"* arms|strong=\"H2220\"* and|strong=\"H6963\"* his|strong=\"H6440\"* feet|strong=\"H4772\"* were|strong=\"H5869\"* like|strong=\"H4758\"* burnished|strong=\"H7044\"* bronze|strong=\"H5178\"*. The|strong=\"H6440\"* voice|strong=\"H6963\"* of|strong=\"H1697\"* his|strong=\"H6440\"* words|strong=\"H1697\"* was|strong=\"H1697\"* like|strong=\"H4758\"* the|strong=\"H6440\"* voice|strong=\"H6963\"* of|strong=\"H1697\"* a|strong=\"H3068\"* multitude|strong=\"H1995\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H5921\"*, Daniel|strong=\"H1840\"*, alone|strong=\"H1840\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* vision|strong=\"H4759\"*, for|strong=\"H5921\"* the|strong=\"H5921\"* men|strong=\"H1419\"* who|strong=\"H3808\"* were|strong=\"H1961\"* with|strong=\"H5973\"* me|strong=\"H7200\"* didn’t see|strong=\"H7200\"* the|strong=\"H5921\"* vision|strong=\"H4759\"*, but|strong=\"H3808\"* a|strong=\"H3068\"* great|strong=\"H1419\"* quaking|strong=\"H2731\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H1419\"* they|strong=\"H3808\"* fled|strong=\"H1272\"* to|strong=\"H1961\"* hide|strong=\"H2244\"* themselves|strong=\"H2244\"*." + }, + { + "verseNum": 8, + "text": "So|strong=\"H3808\"* I|strong=\"H5921\"* was|strong=\"H3808\"* left|strong=\"H7604\"* alone|strong=\"H7604\"* and|strong=\"H1419\"* saw|strong=\"H7200\"* this|strong=\"H2063\"* great|strong=\"H1419\"* vision|strong=\"H4759\"*. No|strong=\"H3808\"* strength|strong=\"H3581\"* remained|strong=\"H7604\"* in|strong=\"H5921\"* me|strong=\"H7200\"*; for|strong=\"H5921\"* my|strong=\"H7200\"* face|strong=\"H7200\"* grew deathly|strong=\"H4889\"* pale, and|strong=\"H1419\"* I|strong=\"H5921\"* retained|strong=\"H6113\"* no|strong=\"H3808\"* strength|strong=\"H3581\"*." + }, + { + "verseNum": 9, + "text": "Yet|strong=\"H5921\"* I|strong=\"H5921\"* heard|strong=\"H8085\"* the|strong=\"H6440\"* voice|strong=\"H6963\"* of|strong=\"H1697\"* his|strong=\"H8085\"* words|strong=\"H1697\"*. When|strong=\"H1961\"* I|strong=\"H5921\"* heard|strong=\"H8085\"* the|strong=\"H6440\"* voice|strong=\"H6963\"* of|strong=\"H1697\"* his|strong=\"H8085\"* words|strong=\"H1697\"*, then|strong=\"H1961\"* I|strong=\"H5921\"* fell|strong=\"H1961\"* into|strong=\"H5921\"* a|strong=\"H3068\"* deep|strong=\"H7290\"* sleep|strong=\"H7290\"* on|strong=\"H5921\"* my|strong=\"H8085\"* face|strong=\"H6440\"*, with|strong=\"H5921\"* my|strong=\"H8085\"* face|strong=\"H6440\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "Behold|strong=\"H2009\"*, a|strong=\"H3068\"* hand|strong=\"H3027\"* touched|strong=\"H5060\"* me|strong=\"H5921\"*, which set|strong=\"H5128\"* me|strong=\"H5921\"* on|strong=\"H5921\"* my|strong=\"H5921\"* knees|strong=\"H1290\"* and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* palms|strong=\"H3709\"* of|strong=\"H3027\"* my|strong=\"H5921\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3588\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7971\"*, “Daniel|strong=\"H1840\"*, you|strong=\"H3588\"* greatly beloved man|strong=\"H2088\"*, understand the|strong=\"H5921\"* words|strong=\"H1697\"* that|strong=\"H3588\"* I|strong=\"H3588\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"*, and|strong=\"H7971\"* stand|strong=\"H5975\"* upright|strong=\"H5975\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1697\"* been|strong=\"H6258\"* sent|strong=\"H7971\"* to|strong=\"H1696\"* you|strong=\"H3588\"*, now|strong=\"H6258\"*.” When|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3588\"* spoken|strong=\"H1696\"* this|strong=\"H2088\"* word|strong=\"H1697\"* to|strong=\"H1696\"* me|strong=\"H7971\"*, I|strong=\"H3588\"* stood|strong=\"H5975\"* trembling|strong=\"H7460\"*." + }, + { + "verseNum": 12, + "text": "Then|strong=\"H5414\"* he|strong=\"H3588\"* said|strong=\"H1697\"* to|strong=\"H5414\"* me|strong=\"H5414\"*, “Don’t be|strong=\"H1697\"* afraid|strong=\"H3372\"*, Daniel|strong=\"H1840\"*; for|strong=\"H3588\"* from|strong=\"H4480\"* the|strong=\"H6440\"* first|strong=\"H7223\"* day|strong=\"H3117\"* that|strong=\"H3588\"* you|strong=\"H3588\"* set|strong=\"H5414\"* your|strong=\"H5414\"* heart|strong=\"H3820\"* to|strong=\"H5414\"* understand|strong=\"H8085\"*, and|strong=\"H3117\"* to|strong=\"H5414\"* humble|strong=\"H6031\"* yourself|strong=\"H6031\"* before|strong=\"H6440\"* your|strong=\"H5414\"* God|strong=\"H5414\"*, your|strong=\"H5414\"* words|strong=\"H1697\"* were|strong=\"H3117\"* heard|strong=\"H8085\"*. I|strong=\"H3588\"* have|strong=\"H1697\"* come for|strong=\"H3588\"* your|strong=\"H5414\"* words|strong=\"H1697\"*’ sake|strong=\"H1697\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"H2009\"* the|strong=\"H3117\"* prince|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3117\"* kingdom|strong=\"H4438\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"* withstood|strong=\"H5975\"* me|strong=\"H5048\"* twenty-one|strong=\"H6242\"* days|strong=\"H3117\"*; but|strong=\"H2009\"*, behold|strong=\"H2009\"*, Michael|strong=\"H4317\"*, one|strong=\"H7223\"* of|strong=\"H4428\"* the|strong=\"H3117\"* chief|strong=\"H8269\"* princes|strong=\"H8269\"*, came|strong=\"H4428\"* to|strong=\"H3117\"* help|strong=\"H5826\"* me|strong=\"H5048\"* because|strong=\"H3117\"* I|strong=\"H3117\"* remained|strong=\"H3498\"* there|strong=\"H8033\"* with|strong=\"H3117\"* the|strong=\"H3117\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"H3117\"* I|strong=\"H3588\"* have|strong=\"H5971\"* come|strong=\"H7136\"* to|strong=\"H3117\"* make|strong=\"H7136\"* you|strong=\"H3588\"* understand what|strong=\"H3588\"* will|strong=\"H5971\"* happen|strong=\"H7136\"* to|strong=\"H3117\"* your|strong=\"H3588\"* people|strong=\"H5971\"* in|strong=\"H3117\"* the|strong=\"H3588\"* latter days|strong=\"H3117\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* vision|strong=\"H2377\"* is|strong=\"H3117\"* yet|strong=\"H5750\"* for|strong=\"H3588\"* many days|strong=\"H3117\"*.”" + }, + { + "verseNum": 15, + "text": "When|strong=\"H1696\"* he|strong=\"H5414\"* had|strong=\"H5414\"* spoken|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* me|strong=\"H5414\"*, I|strong=\"H5414\"* set|strong=\"H5414\"* my|strong=\"H5414\"* face|strong=\"H6440\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* ground|strong=\"H6440\"* and|strong=\"H6440\"* was|strong=\"H1697\"* mute." + }, + { + "verseNum": 16, + "text": "Behold|strong=\"H2009\"*, one|strong=\"H3808\"* in|strong=\"H5921\"* the|strong=\"H5921\"* likeness|strong=\"H1823\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"* touched|strong=\"H5060\"* my|strong=\"H5921\"* lips|strong=\"H8193\"*. Then|strong=\"H1696\"* I|strong=\"H2009\"* opened|strong=\"H6605\"* my|strong=\"H5921\"* mouth|strong=\"H6310\"*, and|strong=\"H1121\"* spoke|strong=\"H1696\"* and|strong=\"H1121\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"* who|strong=\"H1121\"* stood|strong=\"H5975\"* before|strong=\"H5048\"* me|strong=\"H5921\"*, “My|strong=\"H5921\"* lord, by|strong=\"H5921\"* reason|strong=\"H5921\"* of|strong=\"H1121\"* the|strong=\"H5921\"* vision|strong=\"H4759\"* my|strong=\"H5921\"* sorrows|strong=\"H6735\"* have|strong=\"H1121\"* overtaken me|strong=\"H5921\"*, and|strong=\"H1121\"* I|strong=\"H2009\"* retain|strong=\"H6113\"* no|strong=\"H3808\"* strength|strong=\"H3581\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H5650\"* how|strong=\"H1963\"* can|strong=\"H3201\"* the|strong=\"H5975\"* servant|strong=\"H5650\"* of|strong=\"H5650\"* this|strong=\"H2088\"* my|strong=\"H1696\"* lord talk|strong=\"H1696\"* with|strong=\"H5973\"* this|strong=\"H2088\"* my|strong=\"H1696\"* lord? For|strong=\"H5650\"* as|strong=\"H1696\"* for|strong=\"H5650\"* me|strong=\"H1696\"*, immediately there|strong=\"H2088\"* remained|strong=\"H7604\"* no|strong=\"H3808\"* strength|strong=\"H3581\"* in|strong=\"H1696\"* me|strong=\"H1696\"*. There|strong=\"H2088\"* was|strong=\"H2088\"* no|strong=\"H3808\"* breath|strong=\"H5397\"* left|strong=\"H7604\"* in|strong=\"H1696\"* me|strong=\"H1696\"*.”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H3254\"* one like|strong=\"H4758\"* the|strong=\"H2388\"* appearance|strong=\"H4758\"* of|strong=\"H4758\"* a|strong=\"H3068\"* man touched|strong=\"H5060\"* me|strong=\"H3254\"* again|strong=\"H3254\"*, and|strong=\"H2388\"* he|strong=\"H3254\"* strengthened|strong=\"H2388\"* me|strong=\"H3254\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3588\"* said|strong=\"H1696\"*, “Greatly beloved man, don’t be|strong=\"H3372\"* afraid|strong=\"H3372\"*. Peace|strong=\"H7965\"* be|strong=\"H3372\"* to|strong=\"H1696\"* you|strong=\"H3588\"*. Be|strong=\"H3372\"* strong|strong=\"H2388\"*. Yes|strong=\"H3588\"*, be|strong=\"H3372\"* strong|strong=\"H2388\"*.”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H3318\"* he|strong=\"H3318\"* said|strong=\"H3318\"*, “Do|strong=\"H4100\"* you|strong=\"H7725\"* know|strong=\"H3045\"* why|strong=\"H4100\"* I|strong=\"H2009\"* have|strong=\"H3045\"* come|strong=\"H3318\"* to|strong=\"H7725\"* you|strong=\"H7725\"*? Now|strong=\"H6258\"* I|strong=\"H2009\"* will|strong=\"H4100\"* return|strong=\"H7725\"* to|strong=\"H7725\"* fight|strong=\"H3898\"* with|strong=\"H5973\"* the|strong=\"H7725\"* prince|strong=\"H8269\"* of|strong=\"H8269\"* Persia|strong=\"H6539\"*. When|strong=\"H3318\"* I|strong=\"H2009\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, behold|strong=\"H2009\"*, the|strong=\"H7725\"* prince|strong=\"H8269\"* of|strong=\"H8269\"* Greece|strong=\"H3120\"* will|strong=\"H4100\"* come|strong=\"H3318\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H8269\"* tell|strong=\"H5046\"* you|strong=\"H3588\"* that|strong=\"H3588\"* which|strong=\"H8269\"* is|strong=\"H3588\"* inscribed|strong=\"H7559\"* in|strong=\"H5921\"* the|strong=\"H5921\"* writing|strong=\"H3791\"* of|strong=\"H8269\"* truth. There is|strong=\"H3588\"* no one|strong=\"H3588\"* who|strong=\"H3588\"* holds|strong=\"H2388\"* with|strong=\"H5973\"* me|strong=\"H5046\"* against|strong=\"H5921\"* these|strong=\"H5046\"* but|strong=\"H3588\"* Michael|strong=\"H4317\"* your|strong=\"H5921\"* prince|strong=\"H8269\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "“As|strong=\"H8141\"* for|strong=\"H5975\"* me|strong=\"H2388\"*, in|strong=\"H8141\"* the|strong=\"H2388\"* first year|strong=\"H8141\"* of|strong=\"H8141\"* Darius|strong=\"H1867\"* the|strong=\"H2388\"* Mede|strong=\"H4075\"*, I|strong=\"H8141\"* stood|strong=\"H5975\"* up|strong=\"H5975\"* to|strong=\"H5975\"* confirm|strong=\"H2388\"* and|strong=\"H2388\"* strengthen|strong=\"H2388\"* him|strong=\"H5975\"*." + }, + { + "verseNum": 2, + "text": "“Now|strong=\"H6258\"* I|strong=\"H2009\"* will|strong=\"H4428\"* show|strong=\"H5046\"* you|strong=\"H3605\"* the|strong=\"H3605\"* truth. Behold|strong=\"H2009\"*, three|strong=\"H7969\"* more|strong=\"H5750\"* kings|strong=\"H4428\"* will|strong=\"H4428\"* stand|strong=\"H5975\"* up|strong=\"H5975\"* in|strong=\"H4428\"* Persia|strong=\"H6539\"*. The|strong=\"H3605\"* fourth|strong=\"H7243\"* will|strong=\"H4428\"* be|strong=\"H5750\"* far|strong=\"H6239\"* richer|strong=\"H6238\"* than|strong=\"H1419\"* all|strong=\"H3605\"* of|strong=\"H4428\"* them|strong=\"H5975\"*. When|strong=\"H5750\"* he|strong=\"H3605\"* has|strong=\"H4428\"* grown strong|strong=\"H2393\"* through|strong=\"H3605\"* his|strong=\"H3605\"* riches|strong=\"H6239\"*, he|strong=\"H3605\"* will|strong=\"H4428\"* stir|strong=\"H5782\"* up|strong=\"H5975\"* all|strong=\"H3605\"* against|strong=\"H5782\"* the|strong=\"H3605\"* realm|strong=\"H4438\"* of|strong=\"H4428\"* Greece|strong=\"H3120\"*." + }, + { + "verseNum": 3, + "text": "A|strong=\"H3068\"* mighty|strong=\"H1368\"* king|strong=\"H4428\"* will|strong=\"H4428\"* stand|strong=\"H5975\"* up|strong=\"H5975\"*, who|strong=\"H4428\"* will|strong=\"H4428\"* rule|strong=\"H4910\"* with|strong=\"H6213\"* great|strong=\"H7227\"* dominion|strong=\"H4910\"*, and|strong=\"H4428\"* do|strong=\"H6213\"* according to|strong=\"H6213\"* his|strong=\"H6213\"* will|strong=\"H4428\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"H3588\"* he|strong=\"H3588\"* stands|strong=\"H5975\"* up|strong=\"H5975\"*, his|strong=\"H3588\"* kingdom|strong=\"H4438\"* will|strong=\"H8064\"* be|strong=\"H3808\"* broken|strong=\"H7665\"* and|strong=\"H8064\"* will|strong=\"H8064\"* be|strong=\"H3808\"* divided|strong=\"H2673\"* toward the|strong=\"H3588\"* four winds|strong=\"H7307\"* of|strong=\"H7307\"* the|strong=\"H3588\"* sky|strong=\"H8064\"*, but|strong=\"H3588\"* not|strong=\"H3808\"* to|strong=\"H5975\"* his|strong=\"H3588\"* posterity, nor|strong=\"H3808\"* according to|strong=\"H5975\"* his|strong=\"H3588\"* dominion|strong=\"H4910\"* with|strong=\"H8064\"* which|strong=\"H7307\"* he|strong=\"H3588\"* ruled|strong=\"H4910\"*; for|strong=\"H3588\"* his|strong=\"H3588\"* kingdom|strong=\"H4438\"* will|strong=\"H8064\"* be|strong=\"H3808\"* plucked|strong=\"H5428\"* up|strong=\"H5975\"*, even|strong=\"H3588\"* for|strong=\"H3588\"* others besides these." + }, + { + "verseNum": 5, + "text": "“The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5921\"* south|strong=\"H5045\"* will|strong=\"H4428\"* be|strong=\"H4428\"* strong|strong=\"H2388\"*. One|strong=\"H4480\"* of|strong=\"H4428\"* his|strong=\"H5921\"* princes|strong=\"H8269\"* will|strong=\"H4428\"* become stronger|strong=\"H2388\"* than|strong=\"H4480\"* him|strong=\"H5921\"*, and|strong=\"H4428\"* have|strong=\"H8269\"* dominion|strong=\"H4475\"*. His|strong=\"H5921\"* dominion|strong=\"H4475\"* will|strong=\"H4428\"* be|strong=\"H4428\"* a|strong=\"H3068\"* great|strong=\"H7227\"* dominion|strong=\"H4475\"*." + }, + { + "verseNum": 6, + "text": "At|strong=\"H4428\"* the|strong=\"H5414\"* end|strong=\"H7093\"* of|strong=\"H4428\"* years|strong=\"H8141\"* they|strong=\"H3808\"* will|strong=\"H4428\"* join|strong=\"H2266\"* themselves|strong=\"H6213\"* together|strong=\"H2266\"*; and|strong=\"H4428\"* the|strong=\"H5414\"* daughter|strong=\"H1323\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5414\"* south|strong=\"H5045\"* will|strong=\"H4428\"* come|strong=\"H3205\"* to|strong=\"H6213\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5414\"* north|strong=\"H6828\"* to|strong=\"H6213\"* make|strong=\"H6213\"* an|strong=\"H6213\"* agreement|strong=\"H4339\"*, but|strong=\"H3808\"* she|strong=\"H1931\"* will|strong=\"H4428\"* not|strong=\"H3808\"* retain|strong=\"H6113\"* the|strong=\"H5414\"* strength|strong=\"H3581\"* of|strong=\"H4428\"* her|strong=\"H5414\"* arm|strong=\"H2220\"*. He|strong=\"H1931\"* will|strong=\"H4428\"* also|strong=\"H6213\"* not|strong=\"H3808\"* stand|strong=\"H5975\"*, nor|strong=\"H3808\"* will|strong=\"H4428\"* his|strong=\"H5414\"* arm|strong=\"H2220\"*; but|strong=\"H3808\"* she|strong=\"H1931\"* will|strong=\"H4428\"* be|strong=\"H3808\"* given|strong=\"H5414\"* up|strong=\"H5975\"*, with|strong=\"H6213\"* those|strong=\"H1931\"* who|strong=\"H1931\"* brought|strong=\"H3205\"* her|strong=\"H5414\"*, and|strong=\"H4428\"* he|strong=\"H1931\"* who|strong=\"H1931\"* became|strong=\"H3205\"* the|strong=\"H5414\"* father|strong=\"H3205\"* of|strong=\"H4428\"* her|strong=\"H5414\"*, and|strong=\"H4428\"* he|strong=\"H1931\"* who|strong=\"H1931\"* strengthened|strong=\"H2388\"* her|strong=\"H5414\"* in|strong=\"H8141\"* those|strong=\"H1931\"* times|strong=\"H6256\"*." + }, + { + "verseNum": 7, + "text": "“But|strong=\"H2388\"* out|strong=\"H2388\"* of|strong=\"H4428\"* a|strong=\"H3068\"* shoot from|strong=\"H5975\"* her|strong=\"H6213\"* roots|strong=\"H8328\"* one|strong=\"H6213\"* will|strong=\"H4428\"* stand|strong=\"H5975\"* up|strong=\"H5975\"* in|strong=\"H6213\"* his|strong=\"H6213\"* place|strong=\"H3653\"*, who|strong=\"H4428\"* will|strong=\"H4428\"* come to|strong=\"H6213\"* the|strong=\"H6213\"* army|strong=\"H2428\"* and|strong=\"H4428\"* will|strong=\"H4428\"* enter|strong=\"H5975\"* into|strong=\"H6213\"* the|strong=\"H6213\"* fortress|strong=\"H4581\"* of|strong=\"H4428\"* the|strong=\"H6213\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H6213\"* north|strong=\"H6828\"*, and|strong=\"H4428\"* will|strong=\"H4428\"* deal|strong=\"H6213\"* against|strong=\"H2388\"* them|strong=\"H6213\"* and|strong=\"H4428\"* will|strong=\"H4428\"* prevail|strong=\"H2388\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H1931\"* will|strong=\"H4428\"* also|strong=\"H1571\"* carry their|strong=\"H5975\"* gods with|strong=\"H5973\"* their|strong=\"H5975\"* molten images|strong=\"H5257\"*, and|strong=\"H3701\"* with|strong=\"H5973\"* their|strong=\"H5975\"* goodly|strong=\"H2532\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* of|strong=\"H4428\"* gold|strong=\"H2091\"*, captive|strong=\"H7628\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*. He|strong=\"H1931\"* will|strong=\"H4428\"* refrain|strong=\"H5975\"* some years|strong=\"H8141\"* from|strong=\"H2091\"* the|strong=\"H5975\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5975\"* north|strong=\"H6828\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H7725\"* will|strong=\"H4428\"* come|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H7725\"* realm|strong=\"H4438\"* of|strong=\"H4428\"* the|strong=\"H7725\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H7725\"* south|strong=\"H5045\"*, but|strong=\"H7725\"* he|strong=\"H7725\"* will|strong=\"H4428\"* return|strong=\"H7725\"* into|strong=\"H7725\"* his|strong=\"H7725\"* own land." + }, + { + "verseNum": 10, + "text": "His|strong=\"H7725\"* sons|strong=\"H1121\"* will|strong=\"H1121\"* wage|strong=\"H1624\"* war|strong=\"H2428\"*, and|strong=\"H1121\"* will|strong=\"H1121\"* assemble a|strong=\"H3068\"* multitude|strong=\"H1995\"* of|strong=\"H1121\"* great|strong=\"H7227\"* forces|strong=\"H2428\"* which|strong=\"H2428\"* will|strong=\"H1121\"* come|strong=\"H7725\"* on|strong=\"H5674\"*, and|strong=\"H1121\"* overflow|strong=\"H7857\"*, and|strong=\"H1121\"* pass|strong=\"H5674\"* through|strong=\"H5674\"*. They|strong=\"H5704\"* will|strong=\"H1121\"* return|strong=\"H7725\"* and|strong=\"H1121\"* wage|strong=\"H1624\"* war|strong=\"H2428\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* his|strong=\"H7725\"* fortress|strong=\"H4581\"*." + }, + { + "verseNum": 11, + "text": "“The|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5414\"* south|strong=\"H5045\"* will|strong=\"H4428\"* be|strong=\"H3027\"* moved|strong=\"H3318\"* with|strong=\"H5973\"* anger and|strong=\"H4428\"* will|strong=\"H4428\"* come|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H4428\"* fight|strong=\"H3898\"* with|strong=\"H5973\"* him|strong=\"H5414\"*, even with|strong=\"H5973\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5414\"* north|strong=\"H6828\"*. He|strong=\"H5414\"* will|strong=\"H4428\"* send|strong=\"H5414\"* out|strong=\"H3318\"* a|strong=\"H3068\"* great|strong=\"H7227\"* multitude|strong=\"H1995\"*, and|strong=\"H4428\"* the|strong=\"H5414\"* multitude|strong=\"H1995\"* will|strong=\"H4428\"* be|strong=\"H3027\"* given|strong=\"H5414\"* into|strong=\"H3318\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5375\"* multitude|strong=\"H1995\"* will|strong=\"H3808\"* be|strong=\"H3808\"* carried|strong=\"H5375\"* off|strong=\"H7311\"*, and|strong=\"H3824\"* his|strong=\"H5375\"* heart|strong=\"H3824\"* will|strong=\"H3808\"* be|strong=\"H3808\"* exalted|strong=\"H7311\"*. He|strong=\"H3808\"* will|strong=\"H3808\"* cast|strong=\"H5307\"* down|strong=\"H5307\"* tens|strong=\"H7239\"* of|strong=\"H1995\"* thousands|strong=\"H7239\"*, but|strong=\"H3808\"* he|strong=\"H3808\"* won’t prevail|strong=\"H5810\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H4480\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H4480\"* north|strong=\"H6828\"* will|strong=\"H4428\"* return|strong=\"H7725\"*, and|strong=\"H7725\"* will|strong=\"H4428\"* send out|strong=\"H4480\"* a|strong=\"H3068\"* multitude|strong=\"H1995\"* greater|strong=\"H1419\"* than|strong=\"H4480\"* the|strong=\"H4480\"* former|strong=\"H7223\"*. He|strong=\"H4480\"* will|strong=\"H4428\"* come|strong=\"H7725\"* on|strong=\"H5975\"* at|strong=\"H4428\"* the|strong=\"H4480\"* end|strong=\"H7093\"* of|strong=\"H4428\"* the|strong=\"H4480\"* times|strong=\"H6256\"*, even of|strong=\"H4428\"* years|strong=\"H8141\"*, with|strong=\"H4428\"* a|strong=\"H3068\"* great|strong=\"H1419\"* army|strong=\"H2428\"* and|strong=\"H7725\"* with|strong=\"H4428\"* abundant|strong=\"H7227\"* supplies|strong=\"H7399\"*." + }, + { + "verseNum": 14, + "text": "“In|strong=\"H5921\"* those|strong=\"H1992\"* times|strong=\"H6256\"* many|strong=\"H7227\"* will|strong=\"H4428\"* stand|strong=\"H5975\"* up|strong=\"H5375\"* against|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H5921\"* south|strong=\"H5045\"*. Also|strong=\"H4428\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* violent|strong=\"H6530\"* among|strong=\"H5921\"* your|strong=\"H5921\"* people|strong=\"H5971\"* will|strong=\"H4428\"* lift|strong=\"H5375\"* themselves|strong=\"H1992\"* up|strong=\"H5375\"* to|strong=\"H5921\"* establish|strong=\"H5975\"* the|strong=\"H5921\"* vision|strong=\"H2377\"*, but|strong=\"H1992\"* they|strong=\"H1992\"* will|strong=\"H4428\"* fall|strong=\"H3782\"*." + }, + { + "verseNum": 15, + "text": "So|strong=\"H3808\"* the|strong=\"H5975\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5975\"* north|strong=\"H6828\"* will|strong=\"H4428\"* come|strong=\"H5971\"* and|strong=\"H4428\"* cast|strong=\"H8210\"* up|strong=\"H5975\"* a|strong=\"H3068\"* mound, and|strong=\"H4428\"* take|strong=\"H3920\"* a|strong=\"H3068\"* well-fortified|strong=\"H4013\"* city|strong=\"H5892\"*. The|strong=\"H5975\"* forces|strong=\"H2220\"* of|strong=\"H4428\"* the|strong=\"H5975\"* south|strong=\"H5045\"* won’t stand|strong=\"H5975\"*, neither|strong=\"H3808\"* will|strong=\"H4428\"* his|strong=\"H3808\"* select troops|strong=\"H5971\"*, neither|strong=\"H3808\"* will|strong=\"H4428\"* there|strong=\"H5975\"* be|strong=\"H3808\"* any|strong=\"H3808\"* strength|strong=\"H3581\"* to|strong=\"H4428\"* stand|strong=\"H5975\"*." + }, + { + "verseNum": 16, + "text": "But he|strong=\"H6213\"* who|strong=\"H5975\"* comes|strong=\"H6440\"* against|strong=\"H6440\"* him|strong=\"H6440\"* will|strong=\"H7522\"* do|strong=\"H6213\"* according|strong=\"H3027\"* to|strong=\"H6213\"* his|strong=\"H6440\"* own|strong=\"H3027\"* will|strong=\"H7522\"*, and|strong=\"H3027\"* no|strong=\"H6213\"* one|strong=\"H6213\"* will|strong=\"H7522\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*. He|strong=\"H6213\"* will|strong=\"H7522\"* stand|strong=\"H5975\"* in|strong=\"H6213\"* the|strong=\"H6440\"* glorious|strong=\"H6643\"* land|strong=\"H6440\"*, and|strong=\"H3027\"* destruction|strong=\"H3615\"* will|strong=\"H7522\"* be|strong=\"H3027\"* in|strong=\"H6213\"* his|strong=\"H6440\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H6213\"* will|strong=\"H1961\"* set|strong=\"H7760\"* his|strong=\"H3605\"* face|strong=\"H6440\"* to|strong=\"H1961\"* come|strong=\"H1961\"* with|strong=\"H5973\"* the|strong=\"H3605\"* strength|strong=\"H8633\"* of|strong=\"H1323\"* his|strong=\"H3605\"* whole|strong=\"H3605\"* kingdom|strong=\"H4438\"*, and|strong=\"H6440\"* with|strong=\"H5973\"* him|strong=\"H5414\"* equitable conditions. He|strong=\"H6213\"* will|strong=\"H1961\"* perform|strong=\"H6213\"* them|strong=\"H5414\"*. He|strong=\"H6213\"* will|strong=\"H1961\"* give|strong=\"H5414\"* him|strong=\"H5414\"* the|strong=\"H3605\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* women|strong=\"H1323\"*, to|strong=\"H1961\"* destroy|strong=\"H7843\"* the|strong=\"H3605\"* kingdom|strong=\"H4438\"*, but|strong=\"H3808\"* she|strong=\"H6440\"* will|strong=\"H1961\"* not|strong=\"H3808\"* stand|strong=\"H5975\"*, and|strong=\"H6440\"* won’t be|strong=\"H1961\"* for|strong=\"H6213\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 18, + "text": "After this|strong=\"H6440\"* he|strong=\"H6440\"* will|strong=\"H7227\"* turn|strong=\"H7725\"* his|strong=\"H7725\"* face|strong=\"H6440\"* to|strong=\"H7725\"* the|strong=\"H6440\"* islands, and|strong=\"H7725\"* will|strong=\"H7227\"* take|strong=\"H3920\"* many|strong=\"H7227\"*, but|strong=\"H7725\"* a|strong=\"H3068\"* prince|strong=\"H7101\"* will|strong=\"H7227\"* cause|strong=\"H7725\"* the|strong=\"H6440\"* reproach|strong=\"H2781\"* offered by|strong=\"H6440\"* him|strong=\"H6440\"* to|strong=\"H7725\"* cease|strong=\"H7673\"*. Yes, moreover|strong=\"H1115\"*, he|strong=\"H6440\"* will|strong=\"H7227\"* cause|strong=\"H7725\"* his|strong=\"H7725\"* reproach|strong=\"H2781\"* to|strong=\"H7725\"* turn|strong=\"H7725\"* on|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 19, + "text": "Then|strong=\"H5307\"* he|strong=\"H3808\"* will|strong=\"H3808\"* turn|strong=\"H7725\"* his|strong=\"H7725\"* face|strong=\"H6440\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* fortresses|strong=\"H4581\"* of|strong=\"H6440\"* his|strong=\"H7725\"* own|strong=\"H6440\"* land|strong=\"H6440\"*; but|strong=\"H3808\"* he|strong=\"H3808\"* will|strong=\"H3808\"* stumble|strong=\"H3782\"* and|strong=\"H7725\"* fall|strong=\"H5307\"*, and|strong=\"H7725\"* won’t be|strong=\"H3808\"* found|strong=\"H4672\"*." + }, + { + "verseNum": 20, + "text": "“Then|strong=\"H5975\"* one|strong=\"H3808\"* who|strong=\"H4421\"* will|strong=\"H3808\"* cause a|strong=\"H3068\"* tax collector to|strong=\"H5921\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5921\"* kingdom|strong=\"H4438\"* to|strong=\"H5921\"* maintain its|strong=\"H5921\"* glory|strong=\"H1925\"* will|strong=\"H3808\"* stand|strong=\"H5975\"* up|strong=\"H5975\"* in|strong=\"H5921\"* his|strong=\"H5921\"* place|strong=\"H3653\"*; but|strong=\"H3808\"* within|strong=\"H5921\"* few days|strong=\"H3117\"* he|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H3808\"* destroyed|strong=\"H7665\"*, not|strong=\"H3808\"* in|strong=\"H5921\"* anger|strong=\"H5674\"*, and|strong=\"H3117\"* not|strong=\"H3808\"* in|strong=\"H5921\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 21, + "text": "“In|strong=\"H5921\"* his|strong=\"H5414\"* place|strong=\"H5414\"* a|strong=\"H3068\"* contemptible person|strong=\"H4438\"* will|strong=\"H5414\"* stand|strong=\"H5975\"* up|strong=\"H5975\"*, to|strong=\"H5921\"* whom they|strong=\"H3808\"* had|strong=\"H5414\"* not|strong=\"H3808\"* given|strong=\"H5414\"* the|strong=\"H5921\"* honor|strong=\"H1935\"* of|strong=\"H4438\"* the|strong=\"H5921\"* kingdom|strong=\"H4438\"*; but|strong=\"H3808\"* he|strong=\"H5414\"* will|strong=\"H5414\"* come in|strong=\"H5921\"* time|strong=\"H7962\"* of|strong=\"H4438\"* security, and|strong=\"H2388\"* will|strong=\"H5414\"* obtain|strong=\"H2388\"* the|strong=\"H5921\"* kingdom|strong=\"H4438\"* by|strong=\"H5921\"* flatteries|strong=\"H2519\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H6440\"* overwhelming|strong=\"H7857\"* forces|strong=\"H2220\"* will|strong=\"H1571\"* be|strong=\"H1571\"* overwhelmed|strong=\"H7857\"* from|strong=\"H6440\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H6440\"* will|strong=\"H1571\"* be|strong=\"H1571\"* broken|strong=\"H7665\"*. Yes|strong=\"H1571\"*, also|strong=\"H1571\"* the|strong=\"H6440\"* prince|strong=\"H5057\"* of|strong=\"H6440\"* the|strong=\"H6440\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 23, + "text": "After|strong=\"H4480\"* the|strong=\"H6213\"* treaty made|strong=\"H6213\"* with|strong=\"H6213\"* him|strong=\"H6213\"* he|strong=\"H6213\"* will|strong=\"H1471\"* work|strong=\"H6213\"* deceitfully|strong=\"H4820\"*; for|strong=\"H6213\"* he|strong=\"H6213\"* will|strong=\"H1471\"* come|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H1471\"* will|strong=\"H1471\"* become|strong=\"H6213\"* strong|strong=\"H6105\"* with|strong=\"H6213\"* few|strong=\"H4592\"* people|strong=\"H1471\"*." + }, + { + "verseNum": 24, + "text": "In|strong=\"H5921\"* time|strong=\"H6256\"* of|strong=\"H5921\"* security he|strong=\"H5704\"* will|strong=\"H3808\"* come even|strong=\"H5704\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fattest|strong=\"H4924\"* places|strong=\"H4924\"* of|strong=\"H5921\"* the|strong=\"H5921\"* province|strong=\"H4082\"*. He|strong=\"H5704\"* will|strong=\"H3808\"* do|strong=\"H6213\"* that|strong=\"H6256\"* which|strong=\"H1992\"* his|strong=\"H5921\"* fathers have|strong=\"H3808\"* not|strong=\"H3808\"* done|strong=\"H6213\"*, nor|strong=\"H3808\"* his|strong=\"H5921\"* fathers’ fathers. He|strong=\"H5704\"* will|strong=\"H3808\"* scatter among|strong=\"H5921\"* them|strong=\"H1992\"* prey|strong=\"H7998\"*, plunder|strong=\"H7998\"*, and|strong=\"H6213\"* wealth|strong=\"H3808\"*. Yes, he|strong=\"H5704\"* will|strong=\"H3808\"* devise|strong=\"H2803\"* his|strong=\"H5921\"* plans|strong=\"H4284\"* against|strong=\"H5921\"* the|strong=\"H5921\"* strongholds|strong=\"H4013\"*, but|strong=\"H3808\"* only|strong=\"H5704\"* for|strong=\"H5704\"* a|strong=\"H3068\"* time|strong=\"H6256\"*." + }, + { + "verseNum": 25, + "text": "“He|strong=\"H3588\"* will|strong=\"H4428\"* stir|strong=\"H5782\"* up|strong=\"H5975\"* his|strong=\"H5921\"* power|strong=\"H3581\"* and|strong=\"H4428\"* his|strong=\"H5921\"* courage|strong=\"H3824\"* against|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5921\"* south|strong=\"H5045\"* with|strong=\"H5921\"* a|strong=\"H3068\"* great|strong=\"H1419\"* army|strong=\"H2428\"*; and|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5921\"* south|strong=\"H5045\"* will|strong=\"H4428\"* wage|strong=\"H4421\"* war|strong=\"H4421\"* in|strong=\"H5921\"* battle|strong=\"H4421\"* with|strong=\"H5921\"* an|strong=\"H3588\"* exceedingly|strong=\"H3966\"* great|strong=\"H1419\"* and|strong=\"H4428\"* mighty|strong=\"H6099\"* army|strong=\"H2428\"*, but|strong=\"H3588\"* he|strong=\"H3588\"* won’t stand|strong=\"H5975\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H4428\"* devise|strong=\"H2803\"* plans|strong=\"H4284\"* against|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 26, + "text": "Yes, those who|strong=\"H7227\"* eat of|strong=\"H2428\"* his|strong=\"H7665\"* delicacies|strong=\"H6598\"* will|strong=\"H7227\"* destroy|strong=\"H7665\"* him|strong=\"H5307\"*, and|strong=\"H2428\"* his|strong=\"H7665\"* army|strong=\"H2428\"* will|strong=\"H7227\"* be|strong=\"H7665\"* swept away|strong=\"H5307\"*. Many|strong=\"H7227\"* will|strong=\"H7227\"* fall|strong=\"H5307\"* down|strong=\"H5307\"* slain|strong=\"H2491\"*." + }, + { + "verseNum": 27, + "text": "As|strong=\"H3824\"* for|strong=\"H3588\"* both|strong=\"H8147\"* these|strong=\"H1696\"* kings|strong=\"H4428\"*, their|strong=\"H5921\"* hearts|strong=\"H3824\"* will|strong=\"H4428\"* be|strong=\"H3808\"* to|strong=\"H1696\"* do evil, and|strong=\"H4428\"* they|strong=\"H3588\"* will|strong=\"H4428\"* speak|strong=\"H1696\"* lies|strong=\"H3577\"* at|strong=\"H5921\"* one|strong=\"H3808\"* table|strong=\"H7979\"*; but|strong=\"H3588\"* it|strong=\"H5921\"* won’t prosper|strong=\"H6743\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* end|strong=\"H7093\"* will|strong=\"H4428\"* still|strong=\"H5750\"* be|strong=\"H3808\"* at|strong=\"H5921\"* the|strong=\"H5921\"* appointed|strong=\"H4150\"* time|strong=\"H4150\"*." + }, + { + "verseNum": 28, + "text": "Then|strong=\"H6213\"* he|strong=\"H6213\"* will|strong=\"H3824\"* return|strong=\"H7725\"* into|strong=\"H7725\"* his|strong=\"H7725\"* land with|strong=\"H1285\"* great|strong=\"H1419\"* wealth|strong=\"H7399\"*. His|strong=\"H7725\"* heart|strong=\"H3824\"* will|strong=\"H3824\"* be|strong=\"H7725\"* against|strong=\"H5921\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* covenant|strong=\"H1285\"*. He|strong=\"H6213\"* will|strong=\"H3824\"* take|strong=\"H7725\"* action|strong=\"H6213\"*, and|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* own land." + }, + { + "verseNum": 29, + "text": "“He|strong=\"H3808\"* will|strong=\"H1961\"* return|strong=\"H7725\"* at|strong=\"H7725\"* the|strong=\"H7725\"* appointed|strong=\"H4150\"* time|strong=\"H4150\"* and|strong=\"H7725\"* come|strong=\"H1961\"* into|strong=\"H7725\"* the|strong=\"H7725\"* south|strong=\"H5045\"*; but|strong=\"H3808\"* it|strong=\"H7725\"* won’t be|strong=\"H1961\"* in|strong=\"H7725\"* the|strong=\"H7725\"* latter time|strong=\"H4150\"* as|strong=\"H1961\"* it|strong=\"H7725\"* was|strong=\"H1961\"* in|strong=\"H7725\"* the|strong=\"H7725\"* former|strong=\"H7223\"*." + }, + { + "verseNum": 30, + "text": "For|strong=\"H5921\"* ships|strong=\"H6716\"* of|strong=\"H5921\"* Kittim|strong=\"H3794\"* will|strong=\"H6716\"* come|strong=\"H7725\"* against|strong=\"H5921\"* him|strong=\"H5921\"*. Therefore|strong=\"H5921\"* he|strong=\"H6213\"* will|strong=\"H6716\"* be|strong=\"H7725\"* grieved|strong=\"H3512\"*, and|strong=\"H7725\"* will|strong=\"H6716\"* return|strong=\"H7725\"*, and|strong=\"H7725\"* have|strong=\"H1285\"* indignation|strong=\"H2194\"* against|strong=\"H5921\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* covenant|strong=\"H1285\"*, and|strong=\"H7725\"* will|strong=\"H6716\"* take|strong=\"H7725\"* action|strong=\"H6213\"*. He|strong=\"H6213\"* will|strong=\"H6716\"* even|strong=\"H3512\"* return|strong=\"H7725\"*, and|strong=\"H7725\"* have|strong=\"H1285\"* regard|strong=\"H5921\"* to|strong=\"H7725\"* those|strong=\"H5921\"* who|strong=\"H6213\"* forsake|strong=\"H5800\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 31, + "text": "“Forces|strong=\"H2220\"* from|strong=\"H4480\"* him|strong=\"H5414\"* will|strong=\"H5414\"* profane|strong=\"H2490\"* the|strong=\"H5414\"* sanctuary|strong=\"H4720\"*, even the|strong=\"H5414\"* fortress|strong=\"H4581\"*, and|strong=\"H5975\"* will|strong=\"H5414\"* take|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H5414\"* continual|strong=\"H8548\"* burnt|strong=\"H8548\"* offering|strong=\"H4480\"*. Then|strong=\"H5414\"* they|strong=\"H2490\"* will|strong=\"H5414\"* set|strong=\"H5414\"* up|strong=\"H5975\"* the|strong=\"H5414\"* abomination|strong=\"H8251\"* that|strong=\"H5414\"* makes|strong=\"H5414\"* desolate|strong=\"H8074\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"H6213\"* will|strong=\"H5971\"* corrupt|strong=\"H2610\"* those|strong=\"H2388\"* who|strong=\"H5971\"* do|strong=\"H6213\"* wickedly|strong=\"H7561\"* against|strong=\"H2388\"* the|strong=\"H6213\"* covenant|strong=\"H1285\"* by|strong=\"H6213\"* flatteries|strong=\"H2514\"*; but|strong=\"H2388\"* the|strong=\"H6213\"* people|strong=\"H5971\"* who|strong=\"H5971\"* know|strong=\"H3045\"* their|strong=\"H2388\"* God will|strong=\"H5971\"* be|strong=\"H5971\"* strong|strong=\"H2388\"* and|strong=\"H5971\"* take|strong=\"H2388\"* action|strong=\"H6213\"*." + }, + { + "verseNum": 33, + "text": "“Those|strong=\"H3782\"* who|strong=\"H5971\"* are|strong=\"H3117\"* wise|strong=\"H7919\"* among|strong=\"H5971\"* the|strong=\"H3117\"* people|strong=\"H5971\"* will|strong=\"H5971\"* instruct|strong=\"H7919\"* many|strong=\"H7227\"*; yet|strong=\"H3117\"* they|strong=\"H3117\"* will|strong=\"H5971\"* fall|strong=\"H3782\"* by|strong=\"H3117\"* the|strong=\"H3117\"* sword|strong=\"H2719\"* and|strong=\"H3117\"* by|strong=\"H3117\"* flame|strong=\"H3852\"*, by|strong=\"H3117\"* captivity|strong=\"H7628\"* and|strong=\"H3117\"* by|strong=\"H3117\"* plunder, many|strong=\"H7227\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 34, + "text": "Now|strong=\"H7227\"* when|strong=\"H5921\"* they|strong=\"H5921\"* fall|strong=\"H3782\"*, they|strong=\"H5921\"* will|strong=\"H7227\"* be|strong=\"H4592\"* helped|strong=\"H5826\"* with|strong=\"H5921\"* a|strong=\"H3068\"* little|strong=\"H4592\"* help|strong=\"H5826\"*; but|strong=\"H5826\"* many|strong=\"H7227\"* will|strong=\"H7227\"* join|strong=\"H3867\"* themselves|strong=\"H5921\"* to|strong=\"H5921\"* them|strong=\"H5921\"* with|strong=\"H5921\"* flatteries|strong=\"H2519\"*." + }, + { + "verseNum": 35, + "text": "Some|strong=\"H4480\"* of|strong=\"H4480\"* those|strong=\"H4480\"* who|strong=\"H3588\"* are|strong=\"H3782\"* wise|strong=\"H7919\"* will|strong=\"H5704\"* fall|strong=\"H3782\"*—to|strong=\"H5704\"* refine|strong=\"H6884\"* them|strong=\"H5704\"*, and|strong=\"H3782\"* to|strong=\"H5704\"* purify|strong=\"H1305\"*, and|strong=\"H3782\"* to|strong=\"H5704\"* make|strong=\"H3835\"* them|strong=\"H5704\"* white|strong=\"H3835\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3588\"* time|strong=\"H6256\"* of|strong=\"H4480\"* the|strong=\"H3588\"* end|strong=\"H7093\"*, because|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H7093\"* yet|strong=\"H5750\"* for|strong=\"H3588\"* the|strong=\"H3588\"* time|strong=\"H6256\"* appointed|strong=\"H4150\"*." + }, + { + "verseNum": 36, + "text": "“The|strong=\"H3605\"* king|strong=\"H4428\"* will|strong=\"H4428\"* do|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H1696\"* his|strong=\"H3605\"* will|strong=\"H4428\"*. He|strong=\"H3588\"* will|strong=\"H4428\"* exalt|strong=\"H7311\"* himself|strong=\"H1431\"* and|strong=\"H4428\"* magnify|strong=\"H1431\"* himself|strong=\"H1431\"* above|strong=\"H5921\"* every|strong=\"H3605\"* god, and|strong=\"H4428\"* will|strong=\"H4428\"* speak|strong=\"H1696\"* marvelous|strong=\"H6381\"* things|strong=\"H3605\"* against|strong=\"H5921\"* the|strong=\"H3605\"* God of|strong=\"H4428\"* gods. He|strong=\"H3588\"* will|strong=\"H4428\"* prosper|strong=\"H6743\"* until|strong=\"H5704\"* the|strong=\"H3605\"* indignation|strong=\"H2195\"* is|strong=\"H3605\"* accomplished|strong=\"H3615\"*, for|strong=\"H3588\"* that|strong=\"H3588\"* which|strong=\"H3588\"* is|strong=\"H3605\"* determined|strong=\"H2782\"* will|strong=\"H4428\"* be|strong=\"H4428\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 37, + "text": "He|strong=\"H3588\"* won’t regard|strong=\"H5921\"* the|strong=\"H3605\"* gods of|strong=\"H5921\"* his|strong=\"H3605\"* fathers, or|strong=\"H3808\"* the|strong=\"H3605\"* desire|strong=\"H2532\"* of|strong=\"H5921\"* women, or|strong=\"H3808\"* regard|strong=\"H5921\"* any|strong=\"H3605\"* god|strong=\"H3808\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H3808\"* magnify|strong=\"H1431\"* himself|strong=\"H1431\"* above|strong=\"H5921\"* all|strong=\"H3605\"*." + }, + { + "verseNum": 38, + "text": "But|strong=\"H3808\"* in|strong=\"H5921\"* their|strong=\"H5921\"* place|strong=\"H3653\"*, he|strong=\"H3808\"* will|strong=\"H3808\"* honor|strong=\"H3513\"* the|strong=\"H5921\"* god|strong=\"H3808\"* of|strong=\"H5921\"* fortresses|strong=\"H4581\"*. He|strong=\"H3808\"* will|strong=\"H3808\"* honor|strong=\"H3513\"* a|strong=\"H3068\"* god|strong=\"H3808\"* whom his|strong=\"H5921\"* fathers didn’t know|strong=\"H3045\"* with|strong=\"H5921\"* gold|strong=\"H2091\"*, silver|strong=\"H3701\"*, and|strong=\"H3701\"* with|strong=\"H5921\"* precious|strong=\"H3368\"* stones and|strong=\"H3701\"* pleasant|strong=\"H2530\"* things|strong=\"H3513\"*." + }, + { + "verseNum": 39, + "text": "He|strong=\"H6213\"* will|strong=\"H7227\"* deal|strong=\"H6213\"* with|strong=\"H5973\"* the|strong=\"H6213\"* strongest|strong=\"H4581\"* fortresses|strong=\"H4581\"* by|strong=\"H5973\"* the|strong=\"H6213\"* help|strong=\"H6213\"* of|strong=\"H6213\"* a|strong=\"H3068\"* foreign|strong=\"H5236\"* god. He|strong=\"H6213\"* will|strong=\"H7227\"* increase|strong=\"H7235\"* with|strong=\"H5973\"* glory|strong=\"H3519\"* whoever acknowledges|strong=\"H5234\"* him|strong=\"H6213\"*. He|strong=\"H6213\"* will|strong=\"H7227\"* cause|strong=\"H6213\"* them|strong=\"H6213\"* to|strong=\"H6213\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* many|strong=\"H7227\"*, and|strong=\"H6213\"* will|strong=\"H7227\"* divide|strong=\"H2505\"* the|strong=\"H6213\"* land for|strong=\"H6213\"* a|strong=\"H3068\"* price|strong=\"H4242\"*." + }, + { + "verseNum": 40, + "text": "“At|strong=\"H5921\"* the|strong=\"H5921\"* time|strong=\"H6256\"* of|strong=\"H4428\"* the|strong=\"H5921\"* end|strong=\"H7093\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5921\"* south|strong=\"H5045\"* will|strong=\"H4428\"* contend with|strong=\"H5973\"* him|strong=\"H5921\"*; and|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5921\"* north|strong=\"H6828\"* will|strong=\"H4428\"* come|strong=\"H5674\"* against|strong=\"H5921\"* him|strong=\"H5921\"* like|strong=\"H5973\"* a|strong=\"H3068\"* whirlwind|strong=\"H8175\"*, with|strong=\"H5973\"* chariots|strong=\"H7393\"*, with|strong=\"H5973\"* horsemen|strong=\"H6571\"*, and|strong=\"H4428\"* with|strong=\"H5973\"* many|strong=\"H7227\"* ships. He|strong=\"H5921\"* will|strong=\"H4428\"* enter|strong=\"H5674\"* into|strong=\"H5921\"* the|strong=\"H5921\"* countries, and|strong=\"H4428\"* will|strong=\"H4428\"* overflow|strong=\"H7857\"* and|strong=\"H4428\"* pass|strong=\"H5674\"* through|strong=\"H5674\"*." + }, + { + "verseNum": 41, + "text": "He|strong=\"H3027\"* will|strong=\"H1121\"* enter also|strong=\"H3027\"* into|strong=\"H3027\"* the|strong=\"H3027\"* glorious|strong=\"H6643\"* land, and|strong=\"H1121\"* many|strong=\"H7227\"* countries will|strong=\"H1121\"* be|strong=\"H3027\"* overthrown|strong=\"H3782\"*; but|strong=\"H7227\"* these will|strong=\"H1121\"* be|strong=\"H3027\"* delivered|strong=\"H4422\"* out|strong=\"H4422\"* of|strong=\"H1121\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*: Edom, Moab|strong=\"H4124\"*, and|strong=\"H1121\"* the|strong=\"H3027\"* chief|strong=\"H7225\"* of|strong=\"H1121\"* the|strong=\"H3027\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 42, + "text": "He|strong=\"H3027\"* will|strong=\"H1961\"* also|strong=\"H3027\"* stretch|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"* on|strong=\"H3027\"* the|strong=\"H7971\"* countries. The|strong=\"H7971\"* land of|strong=\"H3027\"* Egypt|strong=\"H4714\"* won’t escape|strong=\"H6413\"*." + }, + { + "verseNum": 43, + "text": "But|strong=\"H3605\"* he|strong=\"H3605\"* will|strong=\"H4714\"* have|strong=\"H3605\"* power|strong=\"H4910\"* over|strong=\"H4910\"* the|strong=\"H3605\"* treasures|strong=\"H4362\"* of|strong=\"H3605\"* gold|strong=\"H2091\"* and|strong=\"H3701\"* of|strong=\"H3605\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* over|strong=\"H4910\"* all|strong=\"H3605\"* the|strong=\"H3605\"* precious|strong=\"H2530\"* things|strong=\"H3605\"* of|strong=\"H3605\"* Egypt|strong=\"H4714\"*. The|strong=\"H3605\"* Libyans|strong=\"H3864\"* and|strong=\"H3701\"* the|strong=\"H3605\"* Ethiopians|strong=\"H3569\"* will|strong=\"H4714\"* follow his|strong=\"H3605\"* steps|strong=\"H4703\"*." + }, + { + "verseNum": 44, + "text": "But|strong=\"H7227\"* news|strong=\"H8052\"* out|strong=\"H3318\"* of|strong=\"H3318\"* the|strong=\"H3318\"* east|strong=\"H4217\"* and|strong=\"H1419\"* out|strong=\"H3318\"* of|strong=\"H3318\"* the|strong=\"H3318\"* north|strong=\"H6828\"* will|strong=\"H7227\"* trouble him|strong=\"H3318\"*; and|strong=\"H1419\"* he|strong=\"H3318\"* will|strong=\"H7227\"* go|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H3318\"* great|strong=\"H1419\"* fury|strong=\"H2534\"* to|strong=\"H3318\"* destroy|strong=\"H8045\"* and|strong=\"H1419\"* utterly|strong=\"H2763\"* to|strong=\"H3318\"* sweep away|strong=\"H3318\"* many|strong=\"H7227\"*." + }, + { + "verseNum": 45, + "text": "He|strong=\"H5704\"* will|strong=\"H2022\"* plant|strong=\"H5193\"* the|strong=\"H5704\"* tents of|strong=\"H2022\"* his|strong=\"H5704\"* palace between|strong=\"H5704\"* the|strong=\"H5704\"* sea|strong=\"H3220\"* and|strong=\"H2022\"* the|strong=\"H5704\"* glorious|strong=\"H6643\"* holy|strong=\"H6944\"* mountain|strong=\"H2022\"*; yet|strong=\"H5704\"* he|strong=\"H5704\"* will|strong=\"H2022\"* come to|strong=\"H5704\"* his|strong=\"H5704\"* end|strong=\"H7093\"*, and|strong=\"H2022\"* no one will|strong=\"H2022\"* help|strong=\"H5826\"* him|strong=\"H5826\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "“At|strong=\"H5921\"* that|strong=\"H5971\"* time|strong=\"H6256\"* Michael|strong=\"H4317\"* will|strong=\"H1961\"* stand|strong=\"H5975\"* up|strong=\"H5975\"*, the|strong=\"H3605\"* great|strong=\"H1419\"* prince|strong=\"H8269\"* who|strong=\"H3605\"* stands|strong=\"H5975\"* for|strong=\"H5704\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H3605\"* people|strong=\"H5971\"*; and|strong=\"H1121\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* time|strong=\"H6256\"* of|strong=\"H1121\"* trouble|strong=\"H6869\"*, such|strong=\"H1931\"* as|strong=\"H5704\"* never|strong=\"H3808\"* was|strong=\"H1961\"* since|strong=\"H5704\"* there|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* even|strong=\"H5704\"* to|strong=\"H5704\"* that|strong=\"H5971\"* same|strong=\"H1931\"* time|strong=\"H6256\"*. At|strong=\"H5921\"* that|strong=\"H5971\"* time|strong=\"H6256\"* your|strong=\"H3605\"* people|strong=\"H5971\"* will|strong=\"H1961\"* be|strong=\"H1961\"* delivered|strong=\"H4422\"*, everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H1931\"* found|strong=\"H4672\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"*." + }, + { + "verseNum": 2, + "text": "Many|strong=\"H7227\"* of|strong=\"H2781\"* those who|strong=\"H7227\"* sleep|strong=\"H3463\"* in|strong=\"H7227\"* the|strong=\"H2416\"* dust|strong=\"H6083\"* of|strong=\"H2781\"* the|strong=\"H2416\"* earth|strong=\"H6083\"* will|strong=\"H7227\"* awake|strong=\"H6974\"*, some|strong=\"H7227\"* to|strong=\"H5769\"* everlasting|strong=\"H5769\"* life|strong=\"H2416\"*, and|strong=\"H5769\"* some|strong=\"H7227\"* to|strong=\"H5769\"* shame|strong=\"H2781\"* and|strong=\"H5769\"* everlasting|strong=\"H5769\"* contempt|strong=\"H1860\"*." + }, + { + "verseNum": 3, + "text": "Those who|strong=\"H7227\"* are|strong=\"H7227\"* wise|strong=\"H7919\"* will|strong=\"H7227\"* shine|strong=\"H2094\"* as|strong=\"H7919\"* the|strong=\"H6663\"* brightness|strong=\"H2096\"* of|strong=\"H3556\"* the|strong=\"H6663\"* expanse|strong=\"H7549\"*. Those who|strong=\"H7227\"* turn many|strong=\"H7227\"* to|strong=\"H5769\"* righteousness|strong=\"H6663\"* will|strong=\"H7227\"* shine|strong=\"H2094\"* as|strong=\"H7919\"* the|strong=\"H6663\"* stars|strong=\"H3556\"* forever|strong=\"H5769\"* and|strong=\"H5769\"* ever|strong=\"H5769\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H7227\"* you|strong=\"H5704\"*, Daniel|strong=\"H1840\"*, shut|strong=\"H2856\"* up|strong=\"H2856\"* the|strong=\"H5704\"* words|strong=\"H1697\"* and|strong=\"H1697\"* seal|strong=\"H2856\"* the|strong=\"H5704\"* book|strong=\"H5612\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* time|strong=\"H6256\"* of|strong=\"H1697\"* the|strong=\"H5704\"* end|strong=\"H7093\"*. Many|strong=\"H7227\"* will|strong=\"H1697\"* run back|strong=\"H7751\"* and|strong=\"H1697\"* forth|strong=\"H7751\"*, and|strong=\"H1697\"* knowledge|strong=\"H1847\"* will|strong=\"H1697\"* be|strong=\"H1697\"* increased|strong=\"H7235\"*.”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H2009\"* I|strong=\"H2009\"*, Daniel|strong=\"H1840\"*, looked|strong=\"H7200\"*, and|strong=\"H7200\"* behold|strong=\"H2009\"*, two|strong=\"H8147\"* others stood|strong=\"H5975\"*, one|strong=\"H7200\"* on|strong=\"H7200\"* the|strong=\"H7200\"* river|strong=\"H2975\"* bank|strong=\"H8193\"* on|strong=\"H7200\"* this|strong=\"H7200\"* side|strong=\"H8147\"*, and|strong=\"H7200\"* the|strong=\"H7200\"* other|strong=\"H8147\"* on|strong=\"H7200\"* the|strong=\"H7200\"* river|strong=\"H2975\"* bank|strong=\"H8193\"* on|strong=\"H7200\"* that|strong=\"H7200\"* side|strong=\"H8147\"*." + }, + { + "verseNum": 6, + "text": "One said to|strong=\"H5704\"* the|strong=\"H5704\"* man clothed|strong=\"H3847\"* in|strong=\"H3847\"* linen, who|strong=\"H4605\"* was|strong=\"H4325\"* above|strong=\"H4605\"* the|strong=\"H5704\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* the|strong=\"H5704\"* river|strong=\"H2975\"*, “How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H4325\"* it|strong=\"H5704\"* be|strong=\"H6382\"* to|strong=\"H5704\"* the|strong=\"H5704\"* end|strong=\"H7093\"* of|strong=\"H4325\"* these|strong=\"H4605\"* wonders|strong=\"H6382\"*?”" + }, + { + "verseNum": 7, + "text": "I|strong=\"H3588\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* man|strong=\"H3605\"* clothed|strong=\"H3847\"* in|strong=\"H8085\"* linen, who|strong=\"H3605\"* was|strong=\"H3027\"* above|strong=\"H4605\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H3027\"* the|strong=\"H3605\"* river|strong=\"H2975\"*, when|strong=\"H3588\"* he|strong=\"H3588\"* held|strong=\"H7311\"* up|strong=\"H7311\"* his|strong=\"H3605\"* right|strong=\"H3225\"* hand|strong=\"H3027\"* and|strong=\"H8064\"* his|strong=\"H3605\"* left|strong=\"H8040\"* hand|strong=\"H3027\"* to|strong=\"H3027\"* heaven|strong=\"H8064\"*, and|strong=\"H8064\"* swore|strong=\"H7650\"* by|strong=\"H3027\"* him|strong=\"H3027\"* who|strong=\"H3605\"* lives|strong=\"H2416\"* forever|strong=\"H5769\"* that|strong=\"H3588\"* it|strong=\"H3588\"* will|strong=\"H5971\"* be|strong=\"H3027\"* for|strong=\"H3588\"* a|strong=\"H3068\"* time|strong=\"H4150\"*, times|strong=\"H4150\"*, and|strong=\"H8064\"* a|strong=\"H3068\"* half|strong=\"H2677\"*; and|strong=\"H8064\"* when|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H5971\"* finished|strong=\"H3615\"* breaking in|strong=\"H8085\"* pieces|strong=\"H5310\"* the|strong=\"H3605\"* power|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* people|strong=\"H5971\"*, all|strong=\"H3605\"* these|strong=\"H8085\"* things|strong=\"H6944\"* will|strong=\"H5971\"* be|strong=\"H3027\"* finished|strong=\"H3615\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H3808\"* heard|strong=\"H8085\"*, but|strong=\"H3808\"* I|strong=\"H3808\"* didn’t understand|strong=\"H8085\"*. Then|strong=\"H8085\"* I|strong=\"H3808\"* said|strong=\"H8085\"*, “My|strong=\"H8085\"* lord, what|strong=\"H4100\"* will|strong=\"H3808\"* be|strong=\"H3808\"* the|strong=\"H8085\"* outcome of|strong=\"H8085\"* these|strong=\"H8085\"* things|strong=\"H3808\"*?”" + }, + { + "verseNum": 9, + "text": "He|strong=\"H3588\"* said|strong=\"H1697\"*, “Go|strong=\"H3212\"* your|strong=\"H3588\"* way|strong=\"H3212\"*, Daniel|strong=\"H1840\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* words|strong=\"H1697\"* are|strong=\"H1697\"* shut|strong=\"H2856\"* up|strong=\"H2856\"* and|strong=\"H3212\"* sealed|strong=\"H2856\"* until|strong=\"H5704\"* the|strong=\"H3588\"* time|strong=\"H6256\"* of|strong=\"H1697\"* the|strong=\"H3588\"* end|strong=\"H7093\"*." + }, + { + "verseNum": 10, + "text": "Many|strong=\"H7227\"* will|strong=\"H7563\"* purify|strong=\"H1305\"* themselves, and|strong=\"H3605\"* make|strong=\"H3835\"* themselves white|strong=\"H3835\"*, and|strong=\"H3605\"* be|strong=\"H3808\"* refined|strong=\"H6884\"*, but|strong=\"H3808\"* the|strong=\"H3605\"* wicked|strong=\"H7563\"* will|strong=\"H7563\"* do|strong=\"H3605\"* wickedly|strong=\"H7561\"*; and|strong=\"H3605\"* none|strong=\"H3808\"* of|strong=\"H3605\"* the|strong=\"H3605\"* wicked|strong=\"H7563\"* will|strong=\"H7563\"* understand|strong=\"H7919\"*, but|strong=\"H3808\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H7563\"* wise|strong=\"H7919\"* will|strong=\"H7563\"* understand|strong=\"H7919\"*." + }, + { + "verseNum": 11, + "text": "“From|strong=\"H5493\"* the|strong=\"H5414\"* time|strong=\"H6256\"* that|strong=\"H3117\"* the|strong=\"H5414\"* continual|strong=\"H8548\"* burnt|strong=\"H8548\"* offering is|strong=\"H3117\"* taken|strong=\"H5493\"* away|strong=\"H5493\"* and|strong=\"H3967\"* the|strong=\"H5414\"* abomination|strong=\"H8251\"* that|strong=\"H3117\"* makes|strong=\"H5414\"* desolate|strong=\"H8074\"* set|strong=\"H5414\"* up|strong=\"H5414\"*, there|strong=\"H3117\"* will|strong=\"H5414\"* be|strong=\"H3117\"* one|strong=\"H3967\"* thousand two|strong=\"H3967\"* hundred|strong=\"H3967\"* ninety|strong=\"H8673\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 12, + "text": "Blessed is|strong=\"H3117\"* he|strong=\"H3117\"* who waits|strong=\"H2442\"*, and|strong=\"H3967\"* comes|strong=\"H3117\"* to|strong=\"H3117\"* the|strong=\"H3117\"* one|strong=\"H3967\"* thousand three|strong=\"H7969\"* hundred|strong=\"H3967\"* thirty-five|strong=\"H7970\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 13, + "text": "“But|strong=\"H3117\"* go|strong=\"H3212\"* your|strong=\"H5117\"* way|strong=\"H3212\"* until|strong=\"H3117\"* the|strong=\"H3117\"* end|strong=\"H7093\"*; for|strong=\"H3117\"* you|strong=\"H3117\"* will|strong=\"H3117\"* rest|strong=\"H5117\"*, and|strong=\"H3117\"* will|strong=\"H3117\"* stand|strong=\"H5975\"* in|strong=\"H3117\"* your|strong=\"H5117\"* inheritance at|strong=\"H3117\"* the|strong=\"H3117\"* end|strong=\"H7093\"* of|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"*.”" + } + ] + } + ] + }, + { + "name": "Hosea", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* that|strong=\"H3117\"* came|strong=\"H1961\"* to|strong=\"H3478\"* Hosea|strong=\"H1954\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Beeri, in|strong=\"H3478\"* the|strong=\"H3068\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Uzziah|strong=\"H5818\"*, Jotham|strong=\"H3147\"*, Ahaz, and|strong=\"H1121\"* Hezekiah|strong=\"H2396\"*, kings|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* in|strong=\"H3478\"* the|strong=\"H3068\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H3588\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* at|strong=\"H3068\"* first|strong=\"H8462\"* by|strong=\"H3068\"* Hosea|strong=\"H1954\"*, Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Hosea|strong=\"H1954\"*, “Go|strong=\"H3212\"*, take|strong=\"H3947\"* for|strong=\"H3588\"* yourself a|strong=\"H3068\"* wife|strong=\"H1696\"* of|strong=\"H3068\"* prostitution and|strong=\"H3068\"* children|strong=\"H3206\"* of|strong=\"H3068\"* unfaithfulness; for|strong=\"H3588\"* the|strong=\"H3588\"* land commits|strong=\"H2181\"* great|strong=\"H2181\"* adultery|strong=\"H2181\"*, forsaking Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 3, + "text": "So|strong=\"H3947\"* he|strong=\"H3947\"* went|strong=\"H3212\"* and|strong=\"H1121\"* took|strong=\"H3947\"* Gomer|strong=\"H1586\"* the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Diblaim|strong=\"H1691\"*; and|strong=\"H1121\"* she conceived|strong=\"H2029\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H7121\"* to|strong=\"H3478\"* him|strong=\"H7121\"*, “Call|strong=\"H7121\"* his|strong=\"H3068\"* name|strong=\"H8034\"* Jezreel|strong=\"H3157\"*, for|strong=\"H3588\"* yet|strong=\"H5750\"* a|strong=\"H3068\"* little|strong=\"H4592\"* while|strong=\"H5750\"*, and|strong=\"H3478\"* I|strong=\"H3588\"* will|strong=\"H3068\"* avenge|strong=\"H6485\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H1004\"* Jezreel|strong=\"H3157\"* on|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jehu|strong=\"H3058\"*, and|strong=\"H3478\"* will|strong=\"H3068\"* cause|strong=\"H7121\"* the|strong=\"H5921\"* kingdom|strong=\"H4468\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* cease|strong=\"H7673\"*." + }, + { + "verseNum": 5, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3478\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H1961\"* break|strong=\"H7665\"* the|strong=\"H3117\"* bow|strong=\"H7198\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3117\"* valley|strong=\"H6010\"* of|strong=\"H3117\"* Jezreel|strong=\"H3157\"*.”" + }, + { + "verseNum": 6, + "text": "She|strong=\"H3588\"* conceived|strong=\"H2029\"* again|strong=\"H5750\"*, and|strong=\"H3478\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* daughter|strong=\"H1323\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"H3808\"* I|strong=\"H3808\"* will|strong=\"H3068\"* have|strong=\"H7355\"* mercy|strong=\"H7355\"* on|strong=\"H3068\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* will|strong=\"H3068\"* save|strong=\"H3467\"* them|strong=\"H3068\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*,+ 1:7 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* and|strong=\"H3063\"* will|strong=\"H3068\"* not|strong=\"H3808\"* save|strong=\"H3467\"* them|strong=\"H3068\"* by|strong=\"H3068\"* bow|strong=\"H7198\"*, sword|strong=\"H2719\"*, battle|strong=\"H4421\"*, horses|strong=\"H5483\"*, or|strong=\"H3808\"* horsemen|strong=\"H6571\"*.”" + }, + { + "verseNum": 8, + "text": "Now when|strong=\"H1121\"* she had|strong=\"H3205\"* weaned|strong=\"H1580\"* Lo-Ruhamah|strong=\"H3819\"*, she conceived|strong=\"H2029\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H3588\"* said|strong=\"H7121\"*, “Call|strong=\"H7121\"* his|strong=\"H7121\"* name|strong=\"H8034\"* Lo-Ammi|strong=\"H3818\"*,+ 1:9 Lo-Ammi means “not my people”.* for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* not|strong=\"H3808\"* my|strong=\"H1961\"* people|strong=\"H5971\"*, and|strong=\"H5971\"* I|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* yours." + }, + { + "verseNum": 10, + "text": "Yet the number of the children of Israel will be as the sand of the sea, which can’t be measured or counted; and it will come to pass that, in the place where it was said to them, ‘You are not my people,’ they will be called ‘sons of the living God.’" + }, + { + "verseNum": 11, + "text": "The children of Judah and the children of Israel will be gathered together, and they will appoint themselves one head, and will go up from the land; for great will be the day of Jezreel." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "“Say|strong=\"H3478\"* to|strong=\"H3478\"* your|strong=\"H1961\"* brothers|strong=\"H1121\"*, ‘My|strong=\"H1961\"* people|strong=\"H5971\"*!’+ 2:1 ‘Ammi’ in Hebrew*" + }, + { + "verseNum": 2, + "text": "Contend with|strong=\"H3117\"* your|strong=\"H7760\"* mother!" + }, + { + "verseNum": 3, + "text": "lest I|strong=\"H5971\"* strip her naked," + }, + { + "verseNum": 4, + "text": "Indeed|strong=\"H3588\"*, on|strong=\"H6440\"* her|strong=\"H5493\"* children I|strong=\"H3588\"* will|strong=\"H3808\"* have|strong=\"H3588\"* no|strong=\"H3808\"* mercy," + }, + { + "verseNum": 5, + "text": "For|strong=\"H3117\"* their|strong=\"H7760\"* mother has|strong=\"H3117\"* played the|strong=\"H3205\"* prostitute." + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3588\"* behold|strong=\"H3808\"*,+ 2:6 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"H3588\"* will|strong=\"H1121\"* hedge up|strong=\"H1121\"* your|strong=\"H3588\"* way with|strong=\"H1121\"* thorns," + }, + { + "verseNum": 7, + "text": "She|strong=\"H3588\"* will|strong=\"H5414\"* follow|strong=\"H3212\"* after|strong=\"H3588\"* her|strong=\"H5414\"* lovers," + }, + { + "verseNum": 8, + "text": "For|strong=\"H3651\"* she|strong=\"H3651\"* didn’t know that|strong=\"H3651\"* I|strong=\"H2005\"* gave her|strong=\"H4672\"* the|strong=\"H1870\"* grain, the|strong=\"H1870\"* new wine, and|strong=\"H1870\"* the|strong=\"H1870\"* oil," + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H6258\"* I|strong=\"H3588\"* will|strong=\"H3808\"* take|strong=\"H7725\"* back|strong=\"H7725\"* my|strong=\"H1245\"* grain in|strong=\"H3212\"* its|strong=\"H7725\"* time|strong=\"H6258\"*," + }, + { + "verseNum": 10, + "text": "Now|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5414\"* uncover her|strong=\"H5414\"* lewdness in|strong=\"H6213\"* the|strong=\"H3588\"* sight of|strong=\"H6213\"* her|strong=\"H5414\"* lovers," + }, + { + "verseNum": 11, + "text": "I|strong=\"H3651\"* will|strong=\"H7725\"* also|strong=\"H6256\"* cause|strong=\"H3651\"* all|strong=\"H5337\"* her|strong=\"H3947\"* celebrations to|strong=\"H7725\"* cease|strong=\"H7725\"*:" + }, + { + "verseNum": 12, + "text": "I|strong=\"H6258\"* will|strong=\"H5869\"* lay|strong=\"H1540\"* waste her|strong=\"H1540\"* vines and|strong=\"H3027\"* her|strong=\"H1540\"* fig trees," + }, + { + "verseNum": 13, + "text": "I|strong=\"H3605\"* will|strong=\"H7673\"* visit on|strong=\"H3605\"* her|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H2282\"* of|strong=\"H2282\"* the|strong=\"H3605\"* Baals," + }, + { + "verseNum": 14, + "text": "“Therefore behold, I|strong=\"H5414\"* will|strong=\"H5414\"* allure her|strong=\"H5414\"*," + }, + { + "verseNum": 15, + "text": "I|strong=\"H3117\"* will|strong=\"H3068\"* give her|strong=\"H5921\"* vineyards from|strong=\"H5921\"* there|strong=\"H1992\"*," + }, + { + "verseNum": 16, + "text": "It|strong=\"H5921\"* will|strong=\"H3820\"* be|strong=\"H3820\"* in|strong=\"H5921\"* that|strong=\"H3651\"* day,” says|strong=\"H1696\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 17, + "text": "For|strong=\"H4714\"* I|strong=\"H3117\"* will|strong=\"H4714\"* take|strong=\"H5927\"* away|strong=\"H5927\"* the|strong=\"H5414\"* names of|strong=\"H3117\"* the|strong=\"H5414\"* Baals out|strong=\"H5414\"* of|strong=\"H3117\"* her|strong=\"H5414\"* mouth," + }, + { + "verseNum": 18, + "text": "In|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3068\"* make|strong=\"H7121\"* a|strong=\"H3068\"* covenant for|strong=\"H7121\"* them|strong=\"H7121\"* with|strong=\"H3068\"* the|strong=\"H5002\"* animals|strong=\"H1961\"* of|strong=\"H3068\"* the|strong=\"H5002\"* field," + }, + { + "verseNum": 19, + "text": "I|strong=\"H3808\"* will|strong=\"H3808\"* betroth you|strong=\"H3808\"* to|strong=\"H6310\"* me|strong=\"H5493\"* forever." + }, + { + "verseNum": 20, + "text": "I|strong=\"H3117\"* will|strong=\"H2719\"* even betroth you|strong=\"H3117\"* to|strong=\"H3117\"* me|strong=\"H4480\"* in|strong=\"H3117\"* faithfulness;" + }, + { + "verseNum": 21, + "text": "It|strong=\"H4941\"* will|strong=\"H6664\"* happen in|strong=\"H4941\"* that|strong=\"H5769\"* day, that|strong=\"H5769\"* I will|strong=\"H6664\"* respond,” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "and|strong=\"H3068\"* the|strong=\"H3068\"* earth will|strong=\"H3068\"* respond to|strong=\"H3068\"* the|strong=\"H3068\"* grain, and|strong=\"H3068\"* the|strong=\"H3068\"* new wine, and|strong=\"H3068\"* the|strong=\"H3068\"* oil;" + }, + { + "verseNum": 23, + "text": "I|strong=\"H3117\"* will|strong=\"H3068\"* sow her|strong=\"H1931\"* to|strong=\"H3068\"* me|strong=\"H6030\"* in|strong=\"H3068\"* the|strong=\"H5002\"* earth|strong=\"H8064\"*;" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* me|strong=\"H3212\"*, “Go|strong=\"H3212\"* again|strong=\"H5750\"*, love a|strong=\"H3068\"* woman loved by|strong=\"H3068\"* another|strong=\"H7453\"*, and|strong=\"H1121\"* an|strong=\"H3068\"* adulteress|strong=\"H5003\"*, even|strong=\"H5750\"* as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* loves the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, though they|strong=\"H1992\"* turn|strong=\"H6437\"* to|strong=\"H3478\"* other|strong=\"H5750\"* gods, and|strong=\"H1121\"* love cakes of|strong=\"H1121\"* raisins.”" + }, + { + "verseNum": 2, + "text": "So I bought|strong=\"H3739\"* her for|strong=\"H3701\"* myself for|strong=\"H3701\"* fifteen|strong=\"H2568\"* pieces of|strong=\"H3701\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* a|strong=\"H3068\"* homer|strong=\"H2563\"*+ 3:2 1 homer is about 220 liters or 6 bushels* and|strong=\"H3701\"* a|strong=\"H3068\"* half|strong=\"H3963\"* of|strong=\"H3701\"* barley|strong=\"H8184\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H3117\"* said to|strong=\"H1961\"* her|strong=\"H1571\"*, “You|strong=\"H3117\"* shall|strong=\"H3117\"* stay|strong=\"H3427\"* with|strong=\"H3427\"* me|strong=\"H1961\"* many|strong=\"H7227\"* days|strong=\"H3117\"*. You|strong=\"H3117\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* play|strong=\"H2181\"* the|strong=\"H3117\"* prostitute|strong=\"H2181\"*, and|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* be|strong=\"H1961\"* with|strong=\"H3427\"* any|strong=\"H1571\"* other man. I|strong=\"H3117\"* will|strong=\"H1961\"* also|strong=\"H1571\"* be|strong=\"H1961\"* so|strong=\"H1961\"* toward you|strong=\"H3117\"*.”" + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H1121\"* live|strong=\"H3427\"* many|strong=\"H7227\"* days|strong=\"H3117\"* without|strong=\"H3427\"* king|strong=\"H4428\"*, without|strong=\"H3427\"* prince|strong=\"H8269\"*, without|strong=\"H3427\"* sacrifice|strong=\"H2077\"*, without|strong=\"H3427\"* sacred stone, and|strong=\"H1121\"* without|strong=\"H3427\"* ephod or|strong=\"H3117\"* idols|strong=\"H8655\"*." + }, + { + "verseNum": 5, + "text": "Afterward the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H3068\"* return|strong=\"H7725\"* and|strong=\"H1121\"* seek|strong=\"H1245\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H1121\"* David|strong=\"H1732\"* their|strong=\"H3068\"* king|strong=\"H4428\"*, and|strong=\"H1121\"* shall|strong=\"H3068\"* come|strong=\"H7725\"* with|strong=\"H3068\"* trembling|strong=\"H6342\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* and|strong=\"H1121\"* to|strong=\"H7725\"* his|strong=\"H3068\"* blessings in|strong=\"H3478\"* the|strong=\"H3068\"* last days|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, you|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 2, + "text": "There is|strong=\"H1818\"* cursing, lying|strong=\"H3584\"*, murder|strong=\"H7523\"*, stealing|strong=\"H1589\"*, and|strong=\"H1818\"* committing|strong=\"H5003\"* adultery|strong=\"H5003\"*;" + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H3605\"* land|strong=\"H7704\"* will|strong=\"H1571\"* mourn|strong=\"H5921\"*," + }, + { + "verseNum": 4, + "text": "“Yet|strong=\"H3198\"* let no man bring a|strong=\"H3068\"* charge, neither let any man accuse|strong=\"H7378\"*;" + }, + { + "verseNum": 5, + "text": "You|strong=\"H3117\"* will|strong=\"H1571\"* stumble|strong=\"H3782\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"*," + }, + { + "verseNum": 6, + "text": "My|strong=\"H3588\"* people|strong=\"H5971\"* are|strong=\"H5971\"* destroyed|strong=\"H1820\"* for|strong=\"H3588\"* lack|strong=\"H1097\"* of|strong=\"H1121\"* knowledge|strong=\"H1847\"*." + }, + { + "verseNum": 7, + "text": "As|strong=\"H3651\"* they|strong=\"H3651\"* were multiplied|strong=\"H7235\"*, so|strong=\"H3651\"* they|strong=\"H3651\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* me|strong=\"H7235\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H5971\"* feed on|strong=\"H5375\"* the|strong=\"H5375\"* sin|strong=\"H2403\"* of|strong=\"H5971\"* my|strong=\"H5375\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 9, + "text": "It|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* people|strong=\"H5971\"*, like|strong=\"H1961\"* priest|strong=\"H3548\"*;" + }, + { + "verseNum": 10, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* eat, and|strong=\"H3068\"* not|strong=\"H3808\"* have|strong=\"H3068\"* enough|strong=\"H7646\"*." + }, + { + "verseNum": 11, + "text": "Prostitution|strong=\"H2184\"*, wine|strong=\"H3196\"*, and|strong=\"H3196\"* new|strong=\"H8492\"* wine|strong=\"H3196\"* take|strong=\"H3947\"* away|strong=\"H3947\"* understanding|strong=\"H3820\"*." + }, + { + "verseNum": 12, + "text": "My|strong=\"H5046\"* people|strong=\"H5971\"* consult|strong=\"H7592\"* with|strong=\"H5971\"* their|strong=\"H3588\"* wooden|strong=\"H6086\"* idol," + }, + { + "verseNum": 13, + "text": "They|strong=\"H3588\"* sacrifice|strong=\"H2076\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tops|strong=\"H7218\"* of|strong=\"H1323\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"*," + }, + { + "verseNum": 14, + "text": "I|strong=\"H3588\"* will|strong=\"H5971\"* not|strong=\"H3808\"* punish|strong=\"H6485\"* your|strong=\"H5921\"* daughters|strong=\"H1323\"* when|strong=\"H3588\"* they|strong=\"H1992\"* play|strong=\"H2181\"* the|strong=\"H5921\"* prostitute|strong=\"H2181\"*," + }, + { + "verseNum": 15, + "text": "“Though you|strong=\"H5927\"*, Israel|strong=\"H3478\"*, play|strong=\"H2181\"* the|strong=\"H3068\"* prostitute|strong=\"H2181\"*," + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* Israel|strong=\"H3478\"* has|strong=\"H3068\"* behaved extremely stubbornly|strong=\"H5637\"*, like|strong=\"H3478\"* a|strong=\"H3068\"* stubborn|strong=\"H5637\"* heifer|strong=\"H6510\"*." + }, + { + "verseNum": 17, + "text": "Ephraim is|strong=\"H2266\"* joined|strong=\"H2266\"* to|strong=\"H2266\"* idols|strong=\"H6091\"*." + }, + { + "verseNum": 18, + "text": "Their|strong=\"H5493\"* drink|strong=\"H5435\"* has become|strong=\"H2181\"* sour|strong=\"H5493\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H6887\"* wind|strong=\"H7307\"* has|strong=\"H7307\"* wrapped|strong=\"H6887\"* her up|strong=\"H6887\"* in|strong=\"H2077\"* its wings|strong=\"H3671\"*;" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "“Listen|strong=\"H8085\"* to|strong=\"H3478\"* this|strong=\"H2063\"*, you|strong=\"H3588\"* priests|strong=\"H3548\"*!" + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* rebels are|strong=\"H7846\"* deep|strong=\"H6009\"* in|strong=\"H3605\"* slaughter|strong=\"H7819\"*," + }, + { + "verseNum": 3, + "text": "I|strong=\"H3588\"* know|strong=\"H3045\"* Ephraim," + }, + { + "verseNum": 4, + "text": "Their|strong=\"H3068\"* deeds|strong=\"H4611\"* won’t allow|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H7725\"* turn|strong=\"H7725\"* to|strong=\"H7725\"* their|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 5, + "text": "The|strong=\"H6440\"* pride|strong=\"H1347\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"* testifies|strong=\"H6030\"* to|strong=\"H3478\"* his|strong=\"H6440\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H1992\"* will|strong=\"H3068\"* go|strong=\"H3212\"* with|strong=\"H3068\"* their|strong=\"H3068\"* flocks|strong=\"H6629\"* and|strong=\"H3068\"* with|strong=\"H3068\"* their|strong=\"H3068\"* herds|strong=\"H1241\"* to|strong=\"H3212\"* seek|strong=\"H1245\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 7, + "text": "They|strong=\"H3588\"* are|strong=\"H1121\"* unfaithful to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 8, + "text": "“Blow|strong=\"H8628\"* the|strong=\"H8628\"* cornet|strong=\"H7782\"* in|strong=\"H7782\"* Gibeah|strong=\"H1390\"*," + }, + { + "verseNum": 9, + "text": "Ephraim will|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8047\"* in|strong=\"H3478\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* rebuke|strong=\"H8433\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5921\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Judah|strong=\"H3063\"* are|strong=\"H4325\"* like|strong=\"H1961\"* those|strong=\"H5921\"* who|strong=\"H3063\"* remove|strong=\"H5253\"* a|strong=\"H3068\"* landmark|strong=\"H1366\"*." + }, + { + "verseNum": 11, + "text": "Ephraim is|strong=\"H4941\"* oppressed|strong=\"H6231\"*," + }, + { + "verseNum": 12, + "text": "Therefore I|strong=\"H1004\"* am to|strong=\"H1004\"* Ephraim like|strong=\"H1004\"* a|strong=\"H3068\"* moth|strong=\"H6211\"*," + }, + { + "verseNum": 13, + "text": "“When|strong=\"H7200\"* Ephraim saw|strong=\"H7200\"* his|strong=\"H7971\"* sickness|strong=\"H2483\"*," + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1004\"* be|strong=\"H1004\"* to|strong=\"H3212\"* Ephraim like|strong=\"H1004\"* a|strong=\"H3068\"* lion|strong=\"H3715\"*," + }, + { + "verseNum": 15, + "text": "I|strong=\"H5704\"* will|strong=\"H5704\"* go|strong=\"H3212\"* and|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H5704\"* my|strong=\"H1245\"* place|strong=\"H4725\"*," + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "“Come|strong=\"H3212\"*! Let|strong=\"H3212\"*’s return|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 2, + "text": "After|strong=\"H3117\"* two|strong=\"H2421\"* days|strong=\"H3117\"* he|strong=\"H3117\"* will|strong=\"H3117\"* revive|strong=\"H2421\"* us|strong=\"H6440\"*." + }, + { + "verseNum": 3, + "text": "Let’s acknowledge|strong=\"H3045\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "“Ephraim, what|strong=\"H4100\"* shall|strong=\"H3063\"* I|strong=\"H4100\"* do|strong=\"H6213\"* to|strong=\"H1980\"* you|strong=\"H6213\"*?" + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* have|strong=\"H5030\"* cut|strong=\"H2672\"* them|strong=\"H5921\"* to|strong=\"H3318\"* pieces|strong=\"H2672\"* with|strong=\"H5921\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"*;" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* desire|strong=\"H2654\"* mercy|strong=\"H2617\"*, and|strong=\"H5930\"* not|strong=\"H3808\"* sacrifice|strong=\"H2077\"*;" + }, + { + "verseNum": 7, + "text": "But|strong=\"H1992\"* they|strong=\"H1992\"*, like|strong=\"H1992\"* Adam, have|strong=\"H1992\"* broken|strong=\"H5674\"* the|strong=\"H5674\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 8, + "text": "Gilead|strong=\"H1568\"* is|strong=\"H1818\"* a|strong=\"H3068\"* city|strong=\"H7151\"* of|strong=\"H1818\"* those who work|strong=\"H6466\"* iniquity;" + }, + { + "verseNum": 9, + "text": "As|strong=\"H6213\"* gangs of|strong=\"H1870\"* robbers wait|strong=\"H2442\"* to|strong=\"H6213\"* ambush a|strong=\"H3068\"* man," + }, + { + "verseNum": 10, + "text": "In|strong=\"H3478\"* the|strong=\"H7200\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* I|strong=\"H7200\"* have|strong=\"H3478\"* seen|strong=\"H7200\"* a|strong=\"H3068\"* horrible|strong=\"H8186\"* thing|strong=\"H8186\"*." + }, + { + "verseNum": 11, + "text": "“Also|strong=\"H1571\"*, Judah|strong=\"H3063\"*, there|strong=\"H7725\"* is|strong=\"H1571\"* a|strong=\"H3068\"* harvest|strong=\"H7105\"* appointed|strong=\"H7896\"* for|strong=\"H5971\"* you|strong=\"H7725\"*," + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* I|strong=\"H3588\"* would|strong=\"H3478\"* heal|strong=\"H7495\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 2, + "text": "They|strong=\"H3605\"* don’t consider|strong=\"H2142\"* in|strong=\"H6440\"* their|strong=\"H3605\"* hearts|strong=\"H3824\"* that|strong=\"H3605\"* I|strong=\"H6258\"* remember|strong=\"H2142\"* all|strong=\"H3605\"* their|strong=\"H3605\"* wickedness|strong=\"H7451\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H4428\"* make|strong=\"H8055\"* the|strong=\"H8055\"* king|strong=\"H4428\"* glad|strong=\"H8055\"* with|strong=\"H4428\"* their|strong=\"H7451\"* wickedness|strong=\"H7451\"*," + }, + { + "verseNum": 4, + "text": "They|strong=\"H5704\"* are all|strong=\"H3605\"* adulterers|strong=\"H5003\"*." + }, + { + "verseNum": 5, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H4428\"* our|strong=\"H3027\"* king|strong=\"H4428\"*, the|strong=\"H3117\"* princes|strong=\"H8269\"* made|strong=\"H2470\"* themselves|strong=\"H2470\"* sick|strong=\"H2470\"* with|strong=\"H3117\"* the|strong=\"H3117\"* heat|strong=\"H2534\"* of|strong=\"H4428\"* wine|strong=\"H3196\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3605\"* prepared their|strong=\"H3605\"* heart|strong=\"H3820\"* like|strong=\"H1197\"* an|strong=\"H7126\"* oven|strong=\"H8574\"*," + }, + { + "verseNum": 7, + "text": "They|strong=\"H3605\"* are|strong=\"H4428\"* all|strong=\"H3605\"* hot|strong=\"H2552\"* as|strong=\"H3605\"* an|strong=\"H7121\"* oven|strong=\"H8574\"*," + }, + { + "verseNum": 8, + "text": "Ephraim mixes|strong=\"H1101\"* himself|strong=\"H1931\"* among|strong=\"H5971\"* the|strong=\"H1961\"* nations|strong=\"H5971\"*." + }, + { + "verseNum": 9, + "text": "Strangers|strong=\"H2114\"* have|strong=\"H3045\"* devoured his|strong=\"H3045\"* strength|strong=\"H3581\"*," + }, + { + "verseNum": 10, + "text": "The|strong=\"H3605\"* pride|strong=\"H1347\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* testifies|strong=\"H6030\"* to|strong=\"H7725\"* his|strong=\"H3605\"* face|strong=\"H6440\"*;" + }, + { + "verseNum": 11, + "text": "“Ephraim is|strong=\"H3820\"* like|strong=\"H1961\"* an|strong=\"H1961\"* easily deceived|strong=\"H6601\"* dove|strong=\"H3123\"*, without|strong=\"H3123\"* understanding|strong=\"H3820\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"H5921\"* they|strong=\"H5921\"* go|strong=\"H3212\"*, I|strong=\"H5921\"* will|strong=\"H8064\"* spread|strong=\"H6566\"* my|strong=\"H5921\"* net|strong=\"H7568\"* on|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "Woe to|strong=\"H1696\"* them|strong=\"H1992\"*!" + }, + { + "verseNum": 14, + "text": "They|strong=\"H3588\"* haven’t cried|strong=\"H2199\"* to|strong=\"H5921\"* me|strong=\"H5921\"* with|strong=\"H5921\"* their|strong=\"H5921\"* heart|strong=\"H3820\"*," + }, + { + "verseNum": 15, + "text": "Though I have|strong=\"H2803\"* taught|strong=\"H3256\"* and|strong=\"H2388\"* strengthened|strong=\"H2388\"* their|strong=\"H2388\"* arms|strong=\"H2220\"*," + }, + { + "verseNum": 16, + "text": "They|strong=\"H3808\"* return|strong=\"H7725\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* to|strong=\"H7725\"* the|strong=\"H7725\"* Most High|strong=\"H5920\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "“Put|strong=\"H3068\"* the|strong=\"H5921\"* trumpet|strong=\"H7782\"* to|strong=\"H3068\"* your|strong=\"H3068\"* lips|strong=\"H2441\"*!" + }, + { + "verseNum": 2, + "text": "They|strong=\"H3478\"* cry|strong=\"H2199\"* to|strong=\"H3478\"* me|strong=\"H3045\"*, ‘My|strong=\"H3045\"* God, we|strong=\"H3068\"*, Israel|strong=\"H3478\"*, acknowledge|strong=\"H3045\"* you|strong=\"H3045\"*!’" + }, + { + "verseNum": 3, + "text": "Israel|strong=\"H3478\"* has|strong=\"H3478\"* cast|strong=\"H2186\"* off|strong=\"H2186\"* that|strong=\"H3478\"* which|strong=\"H3478\"* is|strong=\"H2896\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H1992\"* have|strong=\"H3045\"* set|strong=\"H6213\"* up|strong=\"H6213\"* kings|strong=\"H4427\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* by|strong=\"H2091\"* me|strong=\"H4480\"*." + }, + { + "verseNum": 5, + "text": "Let|strong=\"H3808\"* Samaria|strong=\"H8111\"* throw out|strong=\"H5704\"* his|strong=\"H3808\"* calf|strong=\"H5695\"* idol!" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* this|strong=\"H6213\"* is|strong=\"H1931\"* even|strong=\"H3588\"* from|strong=\"H3478\"* Israel|strong=\"H3478\"*!" + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* sow|strong=\"H2232\"* the|strong=\"H3588\"* wind|strong=\"H7307\"*," + }, + { + "verseNum": 8, + "text": "Israel|strong=\"H3478\"* is|strong=\"H3478\"* swallowed|strong=\"H1104\"* up|strong=\"H1104\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* they|strong=\"H1992\"* have|strong=\"H3588\"* gone|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Assyria," + }, + { + "verseNum": 10, + "text": "But|strong=\"H3588\"* although|strong=\"H3588\"* they|strong=\"H3588\"* sold themselves|strong=\"H6908\"* among the|strong=\"H3588\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 11, + "text": "Because|strong=\"H3588\"* Ephraim has|strong=\"H1961\"* multiplied|strong=\"H7235\"* altars|strong=\"H4196\"* for|strong=\"H3588\"* sinning|strong=\"H2398\"*," + }, + { + "verseNum": 12, + "text": "I|strong=\"H3644\"* wrote|strong=\"H3789\"* for|strong=\"H2803\"* him|strong=\"H3644\"* the|strong=\"H3789\"* many things|strong=\"H3644\"* of|strong=\"H8451\"* my|strong=\"H2803\"* law|strong=\"H8451\"*," + }, + { + "verseNum": 13, + "text": "As|strong=\"H3068\"* for|strong=\"H4714\"* the|strong=\"H3068\"* sacrifices|strong=\"H2077\"* of|strong=\"H3068\"* my|strong=\"H3068\"* offerings|strong=\"H2077\"*," + }, + { + "verseNum": 14, + "text": "For|strong=\"H6213\"* Israel|strong=\"H3478\"* has|strong=\"H3478\"* forgotten|strong=\"H7911\"* his|strong=\"H7971\"* Maker|strong=\"H6213\"* and|strong=\"H3063\"* built|strong=\"H1129\"* palaces|strong=\"H1964\"*;" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Don’t rejoice|strong=\"H8055\"*, Israel|strong=\"H3478\"*, to|strong=\"H3478\"* jubilation like|strong=\"H3478\"* the|strong=\"H3605\"* nations|strong=\"H5971\"*;" + }, + { + "verseNum": 2, + "text": "The|strong=\"H3808\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* and|strong=\"H8492\"* the|strong=\"H3808\"* wine|strong=\"H8492\"* press|strong=\"H3342\"* won’t feed|strong=\"H7462\"* them|strong=\"H7462\"*," + }, + { + "verseNum": 3, + "text": "They|strong=\"H3068\"* won’t dwell|strong=\"H3427\"* in|strong=\"H3427\"* Yahweh|strong=\"H3068\"*’s land;" + }, + { + "verseNum": 4, + "text": "They|strong=\"H3588\"* won’t pour|strong=\"H5258\"* out|strong=\"H5258\"* wine|strong=\"H3196\"* offerings|strong=\"H2077\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 5, + "text": "What|strong=\"H4100\"* will|strong=\"H3068\"* you|strong=\"H3117\"* do|strong=\"H6213\"* in|strong=\"H3068\"* the|strong=\"H6213\"* day|strong=\"H3117\"* of|strong=\"H3068\"* solemn|strong=\"H4150\"* assembly|strong=\"H4150\"*," + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, when|strong=\"H3588\"* they|strong=\"H3588\"* flee destruction|strong=\"H7701\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H3117\"* visitation|strong=\"H6486\"* have|strong=\"H3045\"* come|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "A|strong=\"H3068\"* prophet|strong=\"H5030\"* watches over|strong=\"H5921\"* Ephraim with|strong=\"H5973\"* my|strong=\"H3605\"* God." + }, + { + "verseNum": 9, + "text": "They|strong=\"H3117\"* have|strong=\"H5771\"* deeply|strong=\"H6009\"* corrupted|strong=\"H7843\"* themselves|strong=\"H5771\"*," + }, + { + "verseNum": 10, + "text": "I|strong=\"H7200\"* found|strong=\"H4672\"* Israel|strong=\"H3478\"* like|strong=\"H1961\"* grapes|strong=\"H6025\"* in|strong=\"H3478\"* the|strong=\"H7200\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 11, + "text": "As for|strong=\"H3205\"* Ephraim, their glory|strong=\"H3519\"* will|strong=\"H3519\"* fly|strong=\"H5774\"* away|strong=\"H5774\"* like|strong=\"H5774\"* a|strong=\"H3068\"* bird|strong=\"H5775\"*." + }, + { + "verseNum": 12, + "text": "Though|strong=\"H3588\"* they|strong=\"H1992\"* bring|strong=\"H1431\"* up|strong=\"H1431\"* their|strong=\"H1992\"* children|strong=\"H1121\"*," + }, + { + "verseNum": 13, + "text": "I|strong=\"H7200\"* have|strong=\"H1121\"* seen|strong=\"H7200\"* Ephraim, like|strong=\"H3318\"* Tyre|strong=\"H6865\"*, planted|strong=\"H8362\"* in|strong=\"H1121\"* a|strong=\"H3068\"* pleasant place|strong=\"H5116\"*;" + }, + { + "verseNum": 14, + "text": "Give|strong=\"H5414\"* them|strong=\"H5414\"*—Yahweh|strong=\"H3068\"* what|strong=\"H4100\"* will|strong=\"H3068\"* you|strong=\"H5414\"* give|strong=\"H5414\"*?" + }, + { + "verseNum": 15, + "text": "“All|strong=\"H3605\"* their|strong=\"H3605\"* wickedness|strong=\"H7451\"* is|strong=\"H3605\"* in|strong=\"H5921\"* Gilgal|strong=\"H1537\"*;" + }, + { + "verseNum": 16, + "text": "Ephraim is|strong=\"H1571\"* struck|strong=\"H5221\"*." + }, + { + "verseNum": 17, + "text": "My|strong=\"H8085\"* God|strong=\"H3808\"* will|strong=\"H1961\"* cast|strong=\"H3988\"* them|strong=\"H1961\"* away|strong=\"H3988\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1961\"* him|strong=\"H8085\"*;" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Israel|strong=\"H3478\"* is|strong=\"H2896\"* a|strong=\"H3068\"* luxuriant|strong=\"H1238\"* vine|strong=\"H1612\"* that|strong=\"H3478\"* produces|strong=\"H7737\"* his|strong=\"H3478\"* fruit|strong=\"H6529\"*." + }, + { + "verseNum": 2, + "text": "Their|strong=\"H7703\"* heart|strong=\"H3820\"* is|strong=\"H1931\"* divided|strong=\"H2505\"*." + }, + { + "verseNum": 3, + "text": "Surely|strong=\"H3588\"* now|strong=\"H6258\"* they|strong=\"H3588\"* will|strong=\"H3068\"* say, “We|strong=\"H3588\"* have|strong=\"H3068\"* no|strong=\"H3808\"* king|strong=\"H4428\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* don’t fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 4, + "text": "They|strong=\"H5921\"* make|strong=\"H3772\"* promises|strong=\"H1697\"*, swearing falsely|strong=\"H7723\"* in|strong=\"H5921\"* making|strong=\"H3772\"* covenants|strong=\"H1285\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5921\"* inhabitants|strong=\"H7934\"* of|strong=\"H4480\"* Samaria|strong=\"H8111\"* will|strong=\"H5971\"* be|strong=\"H5971\"* in|strong=\"H5921\"* terror for|strong=\"H3588\"* the|strong=\"H5921\"* calves|strong=\"H5697\"* of|strong=\"H4480\"* Beth Aven," + }, + { + "verseNum": 6, + "text": "It|strong=\"H3947\"* also|strong=\"H1571\"* will|strong=\"H4428\"* be|strong=\"H3478\"* carried|strong=\"H2986\"* to|strong=\"H3478\"* Assyria for|strong=\"H4428\"* a|strong=\"H3068\"* present|strong=\"H4503\"* to|strong=\"H3478\"* a|strong=\"H3068\"* great king|strong=\"H4428\"*." + }, + { + "verseNum": 7, + "text": "Samaria|strong=\"H8111\"* and|strong=\"H4428\"* her|strong=\"H5921\"* king|strong=\"H4428\"* float away" + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"* also|strong=\"H3478\"* of|strong=\"H2022\"* Aven, the|strong=\"H5921\"* sin|strong=\"H2403\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"*, will|strong=\"H3478\"* be|strong=\"H3478\"* destroyed|strong=\"H8045\"*." + }, + { + "verseNum": 9, + "text": "“Israel|strong=\"H3478\"*, you|strong=\"H5921\"* have|strong=\"H1121\"* sinned|strong=\"H2398\"* from|strong=\"H5921\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Gibeah|strong=\"H1390\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H5921\"* it|strong=\"H5921\"* is|strong=\"H5869\"* my|strong=\"H5921\"* desire, I|strong=\"H5921\"* will|strong=\"H5971\"* chastise|strong=\"H3256\"* them|strong=\"H5921\"*;" + }, + { + "verseNum": 11, + "text": "Ephraim is|strong=\"H3063\"* a|strong=\"H3068\"* trained|strong=\"H3925\"* heifer|strong=\"H5697\"* that|strong=\"H3063\"* loves to|strong=\"H5921\"* thresh|strong=\"H1758\"*," + }, + { + "verseNum": 12, + "text": "Sow|strong=\"H2232\"* to|strong=\"H5704\"* yourselves|strong=\"H3068\"* in|strong=\"H3068\"* righteousness|strong=\"H6666\"*," + }, + { + "verseNum": 13, + "text": "You|strong=\"H3588\"* have|strong=\"H3588\"* plowed|strong=\"H2790\"* wickedness|strong=\"H7562\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H5921\"* a|strong=\"H3068\"* battle|strong=\"H4421\"* roar will|strong=\"H5971\"* arise|strong=\"H6965\"* among|strong=\"H5921\"* your|strong=\"H3605\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 15, + "text": "So|strong=\"H6213\"* Bethel|strong=\"H1008\"* will|strong=\"H4428\"* do|strong=\"H6213\"* to|strong=\"H3478\"* you|strong=\"H6440\"* because|strong=\"H6440\"* of|strong=\"H4428\"* your|strong=\"H6440\"* great|strong=\"H6213\"* wickedness|strong=\"H7451\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "“When|strong=\"H3588\"* Israel|strong=\"H3478\"* was|strong=\"H3478\"* a|strong=\"H3068\"* child|strong=\"H5288\"*, then|strong=\"H3588\"* I|strong=\"H3588\"* loved him|strong=\"H7121\"*," + }, + { + "verseNum": 2, + "text": "They|strong=\"H3651\"* called|strong=\"H7121\"* to|strong=\"H1980\"* them|strong=\"H6440\"*, so|strong=\"H3651\"* they|strong=\"H3651\"* went|strong=\"H1980\"* from|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 3, + "text": "Yet|strong=\"H3588\"* I|strong=\"H3588\"* taught|strong=\"H3045\"* Ephraim to|strong=\"H5921\"* walk." + }, + { + "verseNum": 4, + "text": "I|strong=\"H5921\"* drew|strong=\"H4900\"* them|strong=\"H5921\"* with|strong=\"H5921\"* cords|strong=\"H5688\"* of|strong=\"H5921\"* a|strong=\"H3068\"* man, with|strong=\"H5921\"* ties of|strong=\"H5921\"* love;" + }, + { + "verseNum": 5, + "text": "“They|strong=\"H3588\"* won’t return|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H3588\"* land of|strong=\"H4428\"* Egypt|strong=\"H4714\"*;" + }, + { + "verseNum": 6, + "text": "The|strong=\"H3615\"* sword|strong=\"H2719\"* will|strong=\"H2719\"* fall|strong=\"H2342\"* on|strong=\"H5892\"* their|strong=\"H3615\"* cities|strong=\"H5892\"*," + }, + { + "verseNum": 7, + "text": "My|strong=\"H7311\"* people|strong=\"H5971\"* are|strong=\"H5971\"* determined to|strong=\"H7121\"* turn|strong=\"H5971\"* from|strong=\"H5971\"* me|strong=\"H7121\"*." + }, + { + "verseNum": 8, + "text": "“How can I|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* up|strong=\"H5414\"*, Ephraim?" + }, + { + "verseNum": 9, + "text": "I|strong=\"H3588\"* will|strong=\"H5892\"* not|strong=\"H3808\"* execute|strong=\"H6213\"* the|strong=\"H3588\"* fierceness|strong=\"H2740\"* of|strong=\"H5892\"* my|strong=\"H7725\"* anger|strong=\"H2740\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* walk|strong=\"H3212\"* after|strong=\"H3588\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 11, + "text": "They|strong=\"H3068\"* will|strong=\"H3068\"* come|strong=\"H2729\"* trembling|strong=\"H2729\"* like|strong=\"H1004\"* a|strong=\"H3068\"* bird|strong=\"H6833\"* out|strong=\"H5921\"* of|strong=\"H1004\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 12, + "text": "Ephraim surrounds me with falsehood," + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Ephraim feeds on|strong=\"H1004\"* wind," + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* also|strong=\"H3117\"* has|strong=\"H3117\"* a|strong=\"H3068\"* controversy with|strong=\"H5973\"* Judah," + }, + { + "verseNum": 3, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* womb he|strong=\"H3068\"* took|strong=\"H7725\"* his|strong=\"H3068\"* brother by|strong=\"H5921\"* the|strong=\"H5921\"* heel," + }, + { + "verseNum": 4, + "text": "Indeed, he struggled with|strong=\"H8280\"* the angel, and prevailed;" + }, + { + "verseNum": 5, + "text": "even Yahweh|strong=\"H3068\"*, the|strong=\"H1696\"* God|strong=\"H1008\"* of|strong=\"H4397\"* Armies." + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3068\"* turn to|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "A|strong=\"H3068\"* merchant has|strong=\"H4941\"* dishonest scales in|strong=\"H7725\"* his|strong=\"H8104\"* hand." + }, + { + "verseNum": 8, + "text": "Ephraim said, “Surely I|strong=\"H3027\"* have|strong=\"H3027\"* become|strong=\"H3027\"* rich." + }, + { + "verseNum": 9, + "text": "“But|strong=\"H3808\"* I|strong=\"H3808\"* am Yahweh|strong=\"H3068\"* your|strong=\"H3605\"* God|strong=\"H3808\"* from|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Egypt." + }, + { + "verseNum": 10, + "text": "I|strong=\"H3117\"* have|strong=\"H3068\"* also|strong=\"H3068\"* spoken to|strong=\"H3068\"* the|strong=\"H3068\"* prophets," + }, + { + "verseNum": 11, + "text": "If Gilead is|strong=\"H3027\"* wicked," + }, + { + "verseNum": 12, + "text": "Jacob fled into|strong=\"H5921\"* the|strong=\"H5921\"* country|strong=\"H7704\"* of|strong=\"H7704\"* Aram." + }, + { + "verseNum": 13, + "text": "By|strong=\"H3478\"* a|strong=\"H3068\"* prophet Yahweh|strong=\"H3068\"* brought|strong=\"H3478\"* Israel|strong=\"H3478\"* up out of|strong=\"H7704\"* Egypt," + }, + { + "verseNum": 14, + "text": "Ephraim has|strong=\"H3068\"* bitterly provoked anger." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1696\"* Ephraim spoke|strong=\"H1696\"*, there was|strong=\"H3478\"* trembling|strong=\"H7578\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"H6258\"* they|strong=\"H1992\"* sin|strong=\"H2398\"* more|strong=\"H3254\"* and|strong=\"H3701\"* more|strong=\"H3254\"*," + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H3651\"* they|strong=\"H3651\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H1961\"* morning|strong=\"H1242\"* mist|strong=\"H6051\"*," + }, + { + "verseNum": 4, + "text": "“Yet|strong=\"H3068\"* I|strong=\"H3045\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* from|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*;" + }, + { + "verseNum": 5, + "text": "I|strong=\"H3045\"* knew|strong=\"H3045\"* you|strong=\"H3045\"* in|strong=\"H3045\"* the|strong=\"H3045\"* wilderness|strong=\"H4057\"*," + }, + { + "verseNum": 6, + "text": "According|strong=\"H5921\"* to|strong=\"H5921\"* their|strong=\"H5921\"* pasture|strong=\"H4830\"*, so|strong=\"H3651\"* were|strong=\"H5921\"* they|strong=\"H3651\"* filled|strong=\"H7646\"*;" + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"H5921\"* I|strong=\"H5921\"* am|strong=\"H1961\"* like|strong=\"H3644\"* a|strong=\"H3068\"* lion|strong=\"H7826\"* to|strong=\"H1961\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H8033\"* will|strong=\"H3820\"* meet|strong=\"H6298\"* them|strong=\"H6298\"* like|strong=\"H3820\"* a|strong=\"H3068\"* bear|strong=\"H1677\"* that|strong=\"H2416\"* is|strong=\"H3820\"* bereaved|strong=\"H7909\"* of|strong=\"H7704\"* her|strong=\"H7167\"* cubs|strong=\"H7909\"*," + }, + { + "verseNum": 9, + "text": "You|strong=\"H3588\"* are|strong=\"H3478\"* destroyed|strong=\"H7843\"*, Israel|strong=\"H3478\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3478\"* against me|strong=\"H3588\"*," + }, + { + "verseNum": 10, + "text": "Where is|strong=\"H3605\"* your|strong=\"H3605\"* king|strong=\"H4428\"* now|strong=\"H5414\"*, that|strong=\"H3605\"* he|strong=\"H3605\"* may|strong=\"H4428\"* save|strong=\"H3467\"* you|strong=\"H5414\"* in|strong=\"H4428\"* all|strong=\"H3605\"* your|strong=\"H3605\"* cities|strong=\"H5892\"*?" + }, + { + "verseNum": 11, + "text": "I|strong=\"H5414\"* have|strong=\"H5414\"* given|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* king|strong=\"H4428\"* in|strong=\"H4428\"* my|strong=\"H5414\"* anger|strong=\"H5678\"*," + }, + { + "verseNum": 12, + "text": "The|strong=\"H6887\"* guilt|strong=\"H5771\"* of|strong=\"H2403\"* Ephraim is|strong=\"H5771\"* stored|strong=\"H6845\"* up|strong=\"H6845\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3588\"* sorrows|strong=\"H2256\"* of|strong=\"H1121\"* a|strong=\"H3068\"* travailing woman|strong=\"H3205\"* will|strong=\"H1121\"* come|strong=\"H3205\"* on|strong=\"H5975\"* him|strong=\"H3205\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3027\"* will|strong=\"H5869\"* ransom|strong=\"H6299\"* them|strong=\"H3027\"* from|strong=\"H3027\"* the|strong=\"H3027\"* power|strong=\"H3027\"* of|strong=\"H3027\"* Sheol|strong=\"H7585\"*.+ 13:14 Sheol is the place of the dead.*" + }, + { + "verseNum": 15, + "text": "Though|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H3068\"* fruitful|strong=\"H6500\"* among|strong=\"H6500\"* his|strong=\"H3605\"* brothers, an|strong=\"H3588\"* east|strong=\"H6921\"* wind|strong=\"H7307\"* will|strong=\"H3068\"* come|strong=\"H5927\"*," + }, + { + "verseNum": 16, + "text": "Samaria will bear her guilt," + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Israel, return to|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3588\"* God;" + }, + { + "verseNum": 2, + "text": "Take|strong=\"H7725\"* words with|strong=\"H3068\"* you|strong=\"H3588\"*, and|strong=\"H3478\"* return|strong=\"H7725\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "Assyria can|strong=\"H3947\"*’t save us|strong=\"H7725\"*." + }, + { + "verseNum": 4, + "text": "“I|strong=\"H5921\"* will|strong=\"H3027\"* heal their|strong=\"H5921\"* waywardness." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3588\"* will|strong=\"H7725\"* be|strong=\"H7725\"* like|strong=\"H7725\"* the|strong=\"H3588\"* dew to|strong=\"H7725\"* Israel." + }, + { + "verseNum": 6, + "text": "His|strong=\"H5221\"* branches will|strong=\"H1961\"* spread," + }, + { + "verseNum": 7, + "text": "Men will|strong=\"H1961\"* dwell in|strong=\"H3212\"* his|strong=\"H1961\"* shade." + }, + { + "verseNum": 8, + "text": "Ephraim, what have|strong=\"H1612\"* I|strong=\"H6738\"* to|strong=\"H7725\"* do|strong=\"H1612\"* any more|strong=\"H7725\"* with|strong=\"H3427\"* idols?" + }, + { + "verseNum": 9, + "text": "Who|strong=\"H4672\"* is|strong=\"H4100\"* wise, that|strong=\"H4480\"* he|strong=\"H4480\"* may|strong=\"H4480\"* understand these things?" + } + ] + } + ] + }, + { + "name": "Joel", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* that|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Joel|strong=\"H3100\"*, the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pethuel|strong=\"H6602\"*." + }, + { + "verseNum": 2, + "text": "Hear|strong=\"H8085\"* this|strong=\"H2063\"*, you|strong=\"H3605\"* elders|strong=\"H2205\"*," + }, + { + "verseNum": 3, + "text": "Tell|strong=\"H5608\"* your|strong=\"H5921\"* children|strong=\"H1121\"* about|strong=\"H5921\"* it|strong=\"H5921\"*," + }, + { + "verseNum": 4, + "text": "What|strong=\"H3499\"* the|strong=\"H3499\"* swarming locust|strong=\"H3218\"* has|strong=\"H3218\"* left|strong=\"H3499\"*, the|strong=\"H3499\"* great locust|strong=\"H3218\"* has|strong=\"H3218\"* eaten." + }, + { + "verseNum": 5, + "text": "Wake|strong=\"H6974\"* up|strong=\"H5921\"*, you|strong=\"H3588\"* drunkards|strong=\"H7910\"*, and|strong=\"H6310\"* weep|strong=\"H1058\"*!" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* has|strong=\"H3588\"* come|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H5921\"* my|strong=\"H5921\"* land, strong|strong=\"H6099\"*, and|strong=\"H1471\"* without|strong=\"H3588\"* number|strong=\"H4557\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H7760\"* has|strong=\"H1612\"* laid|strong=\"H7760\"* my|strong=\"H7760\"* vine|strong=\"H1612\"* waste|strong=\"H8047\"*," + }, + { + "verseNum": 8, + "text": "Mourn|strong=\"H5921\"* like|strong=\"H5921\"* a|strong=\"H3068\"* virgin|strong=\"H1330\"* dressed|strong=\"H2296\"* in|strong=\"H5921\"* sackcloth|strong=\"H8242\"*" + }, + { + "verseNum": 9, + "text": "The|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H3068\"* the|strong=\"H3068\"* drink|strong=\"H5262\"* offering|strong=\"H4503\"* are|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3588\"* field|strong=\"H7704\"* is|strong=\"H7704\"* laid waste|strong=\"H7703\"*." + }, + { + "verseNum": 11, + "text": "Be|strong=\"H3588\"* confounded, you|strong=\"H3588\"* farmers!" + }, + { + "verseNum": 12, + "text": "The|strong=\"H3605\"* vine|strong=\"H1612\"* has|strong=\"H3588\"* dried|strong=\"H3001\"* up|strong=\"H3001\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* fig|strong=\"H8384\"* tree|strong=\"H6086\"* withered|strong=\"H3001\"*—" + }, + { + "verseNum": 13, + "text": "Put|strong=\"H2296\"* on|strong=\"H2296\"* sackcloth|strong=\"H8242\"* and|strong=\"H1004\"* mourn|strong=\"H5594\"*, you|strong=\"H3588\"* priests|strong=\"H3548\"*!" + }, + { + "verseNum": 14, + "text": "Sanctify|strong=\"H6942\"* a|strong=\"H3068\"* fast|strong=\"H6685\"*." + }, + { + "verseNum": 15, + "text": "Alas for|strong=\"H3588\"* the|strong=\"H3588\"* day|strong=\"H3117\"*!" + }, + { + "verseNum": 16, + "text": "Isn’t the|strong=\"H3772\"* food|strong=\"H1004\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* before|strong=\"H5048\"* our|strong=\"H5048\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 17, + "text": "The|strong=\"H3588\"* seeds|strong=\"H6507\"* rot under|strong=\"H8478\"* their|strong=\"H3588\"* clods|strong=\"H4053\"*." + }, + { + "verseNum": 18, + "text": "How|strong=\"H4100\"* the|strong=\"H3588\"* animals groan!" + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"*, I|strong=\"H3588\"* cry|strong=\"H7121\"* to|strong=\"H3068\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 20, + "text": "Yes|strong=\"H3588\"*, the|strong=\"H3588\"* animals of|strong=\"H4325\"* the|strong=\"H3588\"* field|strong=\"H7704\"* pant|strong=\"H6165\"* to|strong=\"H4325\"* you|strong=\"H3588\"*," + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Blow|strong=\"H8628\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"* in|strong=\"H3427\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 2, + "text": "A|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* darkness|strong=\"H2822\"* and|strong=\"H3117\"* gloominess," + }, + { + "verseNum": 3, + "text": "A|strong=\"H3068\"* fire|strong=\"H3857\"* devours before|strong=\"H6440\"* them|strong=\"H6440\"*," + }, + { + "verseNum": 4, + "text": "Their|strong=\"H3651\"* appearance|strong=\"H4758\"* is|strong=\"H3651\"* as|strong=\"H3651\"* the|strong=\"H3651\"* appearance|strong=\"H4758\"* of|strong=\"H4758\"* horses|strong=\"H5483\"*," + }, + { + "verseNum": 5, + "text": "Like|strong=\"H7540\"* the|strong=\"H5921\"* noise|strong=\"H6963\"* of|strong=\"H2022\"* chariots|strong=\"H4818\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tops|strong=\"H7218\"* of|strong=\"H2022\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"*, they|strong=\"H5921\"* leap|strong=\"H7540\"*," + }, + { + "verseNum": 6, + "text": "At|strong=\"H6908\"* their|strong=\"H3605\"* presence|strong=\"H6440\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* are|strong=\"H5971\"* in|strong=\"H6440\"* anguish|strong=\"H2342\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3808\"* run|strong=\"H7323\"* like|strong=\"H1870\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*." + }, + { + "verseNum": 8, + "text": "One|strong=\"H3808\"* doesn’t jostle|strong=\"H1766\"* another|strong=\"H3808\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H7323\"* rush|strong=\"H8264\"* on|strong=\"H5927\"* the|strong=\"H5927\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H6440\"* earth|strong=\"H8121\"* quakes|strong=\"H7264\"* before|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* thunders|strong=\"H6963\"* his|strong=\"H5414\"* voice|strong=\"H6963\"* before|strong=\"H6440\"* his|strong=\"H5414\"* army|strong=\"H4264\"*," + }, + { + "verseNum": 12, + "text": "“Yet|strong=\"H1571\"* even|strong=\"H1571\"* now|strong=\"H6258\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “turn|strong=\"H7725\"* to|strong=\"H5704\"* me|strong=\"H7725\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*," + }, + { + "verseNum": 13, + "text": "Tear|strong=\"H7167\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* and|strong=\"H3068\"* not|strong=\"H3588\"* your|strong=\"H3068\"* garments," + }, + { + "verseNum": 14, + "text": "Who|strong=\"H4310\"* knows|strong=\"H3045\"*? He|strong=\"H3068\"* may|strong=\"H3068\"* turn|strong=\"H7725\"* and|strong=\"H3068\"* relent|strong=\"H5162\"*," + }, + { + "verseNum": 15, + "text": "Blow|strong=\"H8628\"* the|strong=\"H7121\"* trumpet|strong=\"H7782\"* in|strong=\"H7121\"* Zion|strong=\"H6726\"*!" + }, + { + "verseNum": 16, + "text": "Gather|strong=\"H6908\"* the|strong=\"H3318\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 17, + "text": "Let|strong=\"H5414\"* the|strong=\"H5921\"* priests|strong=\"H3548\"*, the|strong=\"H5921\"* ministers|strong=\"H8334\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, weep|strong=\"H1058\"* between|strong=\"H5921\"* the|strong=\"H5921\"* porch and|strong=\"H3068\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*," + }, + { + "verseNum": 18, + "text": "Then|strong=\"H3068\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* jealous|strong=\"H7065\"* for|strong=\"H5921\"* his|strong=\"H3068\"* land," + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* answered|strong=\"H6030\"* his|strong=\"H5414\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 20, + "text": "But|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3220\"* remove|strong=\"H7368\"* the|strong=\"H6440\"* northern|strong=\"H6830\"* army|strong=\"H5927\"* far|strong=\"H7368\"* away|strong=\"H5080\"* from|strong=\"H6440\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 21, + "text": "Land, don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"*." + }, + { + "verseNum": 22, + "text": "Don’t be|strong=\"H5414\"* afraid|strong=\"H3372\"*, you|strong=\"H3588\"* animals of|strong=\"H7704\"* the|strong=\"H3588\"* field|strong=\"H7704\"*;" + }, + { + "verseNum": 23, + "text": "“Be|strong=\"H3068\"* glad|strong=\"H8055\"* then|strong=\"H5414\"*, you|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 24, + "text": "The|strong=\"H4390\"* threshing|strong=\"H1637\"* floors|strong=\"H1637\"* will|strong=\"H3342\"* be full|strong=\"H4390\"* of|strong=\"H4390\"* wheat|strong=\"H1250\"*," + }, + { + "verseNum": 25, + "text": "I|strong=\"H8141\"* will|strong=\"H2428\"* restore|strong=\"H7999\"* to|strong=\"H7971\"* you|strong=\"H7971\"* the|strong=\"H7971\"* years|strong=\"H8141\"* that|strong=\"H8141\"* the|strong=\"H7971\"* swarming locust|strong=\"H3218\"* has|strong=\"H3218\"* eaten," + }, + { + "verseNum": 26, + "text": "You|strong=\"H6213\"* will|strong=\"H3068\"* have|strong=\"H3068\"* plenty|strong=\"H7646\"* to|strong=\"H3068\"* eat and|strong=\"H3068\"* be|strong=\"H3808\"* satisfied|strong=\"H7646\"*," + }, + { + "verseNum": 27, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* among|strong=\"H7130\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 28, + "text": "“It will happen afterward, that I will pour out my Spirit on all flesh;" + }, + { + "verseNum": 29, + "text": "And also on the servants and on the handmaids in those days," + }, + { + "verseNum": 30, + "text": "I will show wonders in the heavens and in the earth:" + }, + { + "verseNum": 31, + "text": "The sun will be turned into darkness," + }, + { + "verseNum": 32, + "text": "It will happen that whoever will call on Yahweh|strong=\"H3068\"*’s name shall be saved;" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "“For|strong=\"H5921\"*, behold|strong=\"H7200\"*, in|strong=\"H5921\"* those|strong=\"H3605\"* days," + }, + { + "verseNum": 2, + "text": "I|strong=\"H3117\"* will|strong=\"H5650\"* gather all|strong=\"H5921\"* nations," + }, + { + "verseNum": 3, + "text": "and|strong=\"H8064\"* have|strong=\"H5414\"* cast|strong=\"H5414\"* lots for|strong=\"H8064\"* my|strong=\"H5414\"* people|strong=\"H1818\"*," + }, + { + "verseNum": 4, + "text": "“Yes, and|strong=\"H3068\"* what|strong=\"H3372\"* are|strong=\"H3117\"* you|strong=\"H6440\"* to|strong=\"H3068\"* me|strong=\"H6440\"*, Tyre and|strong=\"H3068\"* Sidon," + }, + { + "verseNum": 5, + "text": "Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* taken|strong=\"H1961\"* my|strong=\"H3605\"* silver and|strong=\"H3068\"* my|strong=\"H3605\"* gold," + }, + { + "verseNum": 6, + "text": "and have sold the children of Judah and the children of Jerusalem to the sons of the Greeks," + }, + { + "verseNum": 7, + "text": "Behold, I will stir them up out of the place where you have sold them," + }, + { + "verseNum": 8, + "text": "and I will sell your sons and your daughters into the hands of the children of Judah," + }, + { + "verseNum": 9, + "text": "Proclaim this among the nations:" + }, + { + "verseNum": 10, + "text": "Beat your plowshares into swords," + }, + { + "verseNum": 11, + "text": "Hurry and come, all you surrounding nations," + }, + { + "verseNum": 12, + "text": "“Let the nations arouse themselves," + }, + { + "verseNum": 13, + "text": "Put in the sickle;" + }, + { + "verseNum": 14, + "text": "Multitudes, multitudes in the valley of decision!" + }, + { + "verseNum": 15, + "text": "The sun and the moon are darkened," + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* will roar from Zion," + }, + { + "verseNum": 17, + "text": "“So you will know that I am Yahweh|strong=\"H3068\"*, your God," + }, + { + "verseNum": 18, + "text": "It will happen in that day," + }, + { + "verseNum": 19, + "text": "Egypt will be a|strong=\"H3068\"* desolation" + }, + { + "verseNum": 20, + "text": "But Judah will be inhabited forever," + }, + { + "verseNum": 21, + "text": "I will cleanse their blood" + } + ] + } + ] + }, + { + "name": "Amos", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H6440\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Amos|strong=\"H5986\"*, who|strong=\"H1121\"* was|strong=\"H1961\"* among|strong=\"H5921\"* the|strong=\"H6440\"* herdsmen of|strong=\"H1121\"* Tekoa|strong=\"H8620\"*, which|strong=\"H1697\"* he|strong=\"H3117\"* saw|strong=\"H2372\"* concerning|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* the|strong=\"H6440\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Uzziah|strong=\"H5818\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* in|strong=\"H8141\"* the|strong=\"H6440\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, two years|strong=\"H8141\"* before|strong=\"H6440\"* the|strong=\"H6440\"* earthquake|strong=\"H7494\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3068\"* said:" + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 4, + "text": "but I|strong=\"H1004\"* will|strong=\"H1004\"* send|strong=\"H7971\"* a|strong=\"H3068\"* fire into the|strong=\"H7971\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Hazael|strong=\"H2371\"*," + }, + { + "verseNum": 5, + "text": "I|strong=\"H3772\"* will|strong=\"H3068\"* break|strong=\"H7665\"* the|strong=\"H3068\"* bar|strong=\"H1280\"* of|strong=\"H1004\"* Damascus|strong=\"H1834\"*," + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 7, + "text": "but I|strong=\"H7971\"* will|strong=\"H2346\"* send|strong=\"H7971\"* a|strong=\"H3068\"* fire on|strong=\"H7971\"* the|strong=\"H7971\"* wall|strong=\"H2346\"* of|strong=\"H2346\"* Gaza|strong=\"H5804\"*," + }, + { + "verseNum": 8, + "text": "I|strong=\"H5921\"* will|strong=\"H3027\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H5921\"* inhabitant|strong=\"H3427\"* from|strong=\"H7725\"* Ashdod," + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 10, + "text": "but I|strong=\"H7971\"* will|strong=\"H2346\"* send|strong=\"H7971\"* a|strong=\"H3068\"* fire on|strong=\"H7971\"* the|strong=\"H7971\"* wall|strong=\"H2346\"* of|strong=\"H2346\"* Tyre|strong=\"H6865\"*," + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 12, + "text": "but I|strong=\"H7971\"* will|strong=\"H1224\"* send|strong=\"H7971\"* a|strong=\"H3068\"* fire on|strong=\"H7971\"* Teman|strong=\"H8487\"*," + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 14, + "text": "But|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3117\"* kindle|strong=\"H3341\"* a|strong=\"H3068\"* fire|strong=\"H3341\"* in|strong=\"H3117\"* the|strong=\"H3117\"* wall|strong=\"H2346\"* of|strong=\"H3117\"* Rabbah|strong=\"H7237\"*," + }, + { + "verseNum": 15, + "text": "and|strong=\"H1980\"* their|strong=\"H3068\"* king|strong=\"H4428\"* will|strong=\"H3068\"* go|strong=\"H1980\"* into|strong=\"H1980\"* captivity|strong=\"H1473\"*," + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 2, + "text": "but|strong=\"H4191\"* I|strong=\"H6963\"* will|strong=\"H4124\"* send|strong=\"H7971\"* a|strong=\"H3068\"* fire on|strong=\"H7971\"* Moab|strong=\"H4124\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H3068\"* I|strong=\"H3772\"* will|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H3605\"* judge|strong=\"H8199\"* from|strong=\"H3772\"* among|strong=\"H7130\"* them|strong=\"H2026\"*," + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 5, + "text": "but I|strong=\"H7971\"* will|strong=\"H3063\"* send|strong=\"H7971\"* a|strong=\"H3068\"* fire on|strong=\"H7971\"* Judah|strong=\"H3063\"*," + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 7, + "text": "They|strong=\"H5921\"* trample|strong=\"H7602\"* the|strong=\"H5921\"* heads|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* poor|strong=\"H1800\"* into|strong=\"H3212\"* the|strong=\"H5921\"* dust|strong=\"H6083\"* of|strong=\"H7218\"* the|strong=\"H5921\"* earth|strong=\"H6083\"*" + }, + { + "verseNum": 8, + "text": "They|strong=\"H5921\"* lay themselves|strong=\"H5921\"* down|strong=\"H5186\"* beside|strong=\"H5921\"* every|strong=\"H3605\"* altar|strong=\"H4196\"* on|strong=\"H5921\"* clothes taken|strong=\"H2254\"* in|strong=\"H5921\"* pledge|strong=\"H2254\"*." + }, + { + "verseNum": 9, + "text": "Yet I|strong=\"H6440\"* destroyed|strong=\"H8045\"* the|strong=\"H6440\"* Amorite before|strong=\"H6440\"* them|strong=\"H6440\"*," + }, + { + "verseNum": 10, + "text": "Also I|strong=\"H4714\"* brought|strong=\"H5927\"* you|strong=\"H3212\"* up|strong=\"H5927\"* out|strong=\"H3423\"* of|strong=\"H8141\"* the|strong=\"H3423\"* land of|strong=\"H8141\"* Egypt|strong=\"H4714\"*" + }, + { + "verseNum": 11, + "text": "I|strong=\"H6965\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* some of|strong=\"H1121\"* your|strong=\"H3068\"* sons|strong=\"H1121\"* for|strong=\"H3068\"* prophets|strong=\"H5030\"*," + }, + { + "verseNum": 12, + "text": "“But|strong=\"H3808\"* you|strong=\"H6680\"* gave|strong=\"H6680\"* the|strong=\"H5921\"* Nazirites|strong=\"H5139\"* wine|strong=\"H3196\"* to|strong=\"H5921\"* drink|strong=\"H8248\"*," + }, + { + "verseNum": 13, + "text": "Behold|strong=\"H2009\"*,+ 2:13 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"H2009\"* will crush you|strong=\"H8478\"* in|strong=\"H8478\"* your|strong=\"H8478\"* place|strong=\"H8478\"*," + }, + { + "verseNum": 14, + "text": "Flight|strong=\"H4498\"* will|strong=\"H5315\"* perish from|strong=\"H5315\"* the|strong=\"H3808\"* swift|strong=\"H7031\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3808\"* who|strong=\"H5315\"* handles the|strong=\"H5975\"* bow|strong=\"H7198\"* won’t stand|strong=\"H5975\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H1931\"* who|strong=\"H1931\"* is|strong=\"H3068\"* courageous among|strong=\"H1368\"* the|strong=\"H5002\"* mighty|strong=\"H1368\"*" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Hear|strong=\"H8085\"* this|strong=\"H2088\"* word|strong=\"H1697\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* against|strong=\"H5921\"* you|strong=\"H3605\"*, children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, against|strong=\"H5921\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* family|strong=\"H4940\"* which|strong=\"H3068\"* I|strong=\"H5921\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H5921\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land|strong=\"H4940\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, saying|strong=\"H1697\"*:" + }, + { + "verseNum": 2, + "text": "“I|strong=\"H5921\"* have|strong=\"H3045\"* only|strong=\"H7535\"* chosen|strong=\"H3045\"* you|strong=\"H3605\"* of|strong=\"H4940\"* all|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 3, + "text": "Do two|strong=\"H8147\"* walk|strong=\"H3212\"* together|strong=\"H3162\"*," + }, + { + "verseNum": 4, + "text": "Will|strong=\"H5414\"* a|strong=\"H3068\"* lion|strong=\"H3715\"* roar|strong=\"H7580\"* in|strong=\"H5414\"* the|strong=\"H5414\"* thicket," + }, + { + "verseNum": 5, + "text": "Can|strong=\"H3808\"* a|strong=\"H3068\"* bird|strong=\"H6833\"* fall|strong=\"H5307\"* in|strong=\"H5921\"* a|strong=\"H3068\"* trap|strong=\"H4170\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth|strong=\"H5927\"*," + }, + { + "verseNum": 6, + "text": "Does|strong=\"H6213\"* the|strong=\"H6213\"* trumpet|strong=\"H7782\"* alarm sound|strong=\"H8628\"* in|strong=\"H3068\"* a|strong=\"H3068\"* city|strong=\"H5892\"*," + }, + { + "verseNum": 7, + "text": "Surely|strong=\"H3588\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* will|strong=\"H5650\"* do|strong=\"H6213\"* nothing|strong=\"H3808\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H3069\"* lion has|strong=\"H4310\"* roared|strong=\"H7580\"*." + }, + { + "verseNum": 9, + "text": "Proclaim|strong=\"H8085\"* in|strong=\"H5921\"* the|strong=\"H5921\"* palaces at|strong=\"H5921\"* Ashdod," + }, + { + "verseNum": 10, + "text": "“Indeed|strong=\"H3808\"* they|strong=\"H3068\"* don’t know|strong=\"H3045\"* to|strong=\"H3068\"* do|strong=\"H6213\"* right|strong=\"H5229\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 13, + "text": "“Listen|strong=\"H8085\"*, and|strong=\"H1004\"* testify|strong=\"H5749\"* against|strong=\"H5749\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5002\"* God|strong=\"H3069\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 14, + "text": "“For|strong=\"H3588\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* that|strong=\"H3588\"* I|strong=\"H3588\"* visit|strong=\"H6485\"* the|strong=\"H5921\"* transgressions|strong=\"H6588\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"* on|strong=\"H5921\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 15, + "text": "I|strong=\"H5921\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* the|strong=\"H5002\"* winter|strong=\"H2779\"* house|strong=\"H1004\"* with|strong=\"H1004\"* the|strong=\"H5002\"* summer|strong=\"H7019\"* house|strong=\"H1004\"*;" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Listen|strong=\"H8085\"* to|strong=\"H8085\"* this|strong=\"H2088\"* word|strong=\"H1697\"*, you|strong=\"H2022\"* cows|strong=\"H6510\"* of|strong=\"H1697\"* Bashan|strong=\"H1316\"*, who|strong=\"H2088\"* are|strong=\"H1697\"* on|strong=\"H8085\"* the|strong=\"H8085\"* mountain|strong=\"H2022\"* of|strong=\"H1697\"* Samaria|strong=\"H8111\"*, who|strong=\"H2088\"* oppress|strong=\"H6231\"* the|strong=\"H8085\"* poor|strong=\"H1800\"*, who|strong=\"H2088\"* crush|strong=\"H7533\"* the|strong=\"H8085\"* needy|strong=\"H1800\"*, who|strong=\"H2088\"* tell|strong=\"H8085\"* their|strong=\"H8085\"* husbands, “Bring us|strong=\"H8085\"* drinks|strong=\"H8354\"*!”" + }, + { + "verseNum": 2, + "text": "The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* has|strong=\"H3117\"* sworn|strong=\"H7650\"* by|strong=\"H5921\"* his|strong=\"H5375\"* holiness|strong=\"H6944\"*," + }, + { + "verseNum": 3, + "text": "You|strong=\"H3318\"* will|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* at|strong=\"H3068\"* the|strong=\"H5002\"* breaks|strong=\"H3318\"* in|strong=\"H3068\"* the|strong=\"H5002\"* wall," + }, + { + "verseNum": 4, + "text": "“Go to|strong=\"H3117\"* Bethel|strong=\"H1008\"*, and|strong=\"H3117\"* sin;" + }, + { + "verseNum": 5, + "text": "offer|strong=\"H6999\"* a|strong=\"H3068\"* sacrifice|strong=\"H6999\"* of|strong=\"H1121\"* thanksgiving|strong=\"H8426\"* of|strong=\"H1121\"* that|strong=\"H3588\"* which|strong=\"H3478\"* is|strong=\"H3651\"* leavened|strong=\"H2557\"*," + }, + { + "verseNum": 6, + "text": "“I|strong=\"H5414\"* also|strong=\"H1571\"* have|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"* cleanness|strong=\"H5356\"* of|strong=\"H3068\"* teeth|strong=\"H8127\"* in|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* cities|strong=\"H5892\"*," + }, + { + "verseNum": 7, + "text": "“I|strong=\"H5921\"* also|strong=\"H1571\"* have|strong=\"H1571\"* withheld|strong=\"H4513\"* the|strong=\"H5921\"* rain|strong=\"H1653\"* from|strong=\"H4480\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 8, + "text": "So|strong=\"H3808\"* two|strong=\"H8147\"* or|strong=\"H3808\"* three|strong=\"H7969\"* cities|strong=\"H5892\"* staggered|strong=\"H5128\"* to|strong=\"H5704\"* one|strong=\"H3808\"* city|strong=\"H5892\"* to|strong=\"H5704\"* drink|strong=\"H8354\"* water|strong=\"H4325\"*," + }, + { + "verseNum": 9, + "text": "“I|strong=\"H5704\"* struck|strong=\"H5221\"* you|strong=\"H5704\"* with|strong=\"H3068\"* blight|strong=\"H7711\"* and|strong=\"H3068\"* mildew|strong=\"H3420\"* many|strong=\"H7235\"* times in|strong=\"H3068\"* your|strong=\"H3068\"* gardens|strong=\"H1593\"* and|strong=\"H3068\"* your|strong=\"H3068\"* vineyards|strong=\"H3754\"*," + }, + { + "verseNum": 10, + "text": "“I|strong=\"H5704\"* sent|strong=\"H7971\"* plagues|strong=\"H1870\"* among|strong=\"H5973\"* you|strong=\"H7971\"* like|strong=\"H5973\"* I|strong=\"H5704\"* did|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 11, + "text": "“I|strong=\"H5704\"* have|strong=\"H1961\"* overthrown|strong=\"H2015\"* some of|strong=\"H3068\"* you|strong=\"H5704\"*," + }, + { + "verseNum": 12, + "text": "“Therefore|strong=\"H3651\"* I|strong=\"H3588\"* will|strong=\"H3478\"* do|strong=\"H6213\"* this|strong=\"H2063\"* to|strong=\"H3478\"* you|strong=\"H3588\"*, Israel|strong=\"H3478\"*;" + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, he|strong=\"H3588\"* who|strong=\"H3068\"* forms|strong=\"H3335\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"*, creates|strong=\"H1254\"* the|strong=\"H5921\"* wind|strong=\"H7307\"*, declares|strong=\"H5046\"* to|strong=\"H3068\"* man what|strong=\"H4100\"* is|strong=\"H3068\"* his|strong=\"H3068\"* thought|strong=\"H7808\"*," + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Listen|strong=\"H8085\"* to|strong=\"H3478\"* this|strong=\"H2088\"* word|strong=\"H1697\"* which|strong=\"H1697\"* I|strong=\"H5921\"* take|strong=\"H5375\"* up|strong=\"H5375\"* for|strong=\"H5921\"* a|strong=\"H3068\"* lamentation|strong=\"H7015\"* over|strong=\"H5921\"* you|strong=\"H5921\"*, O|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*:" + }, + { + "verseNum": 2, + "text": "“The|strong=\"H5921\"* virgin|strong=\"H1330\"* of|strong=\"H5921\"* Israel|strong=\"H3478\"* has|strong=\"H3478\"* fallen|strong=\"H5307\"*;" + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3478\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*:" + }, + { + "verseNum": 5, + "text": "but|strong=\"H3588\"* don’t seek|strong=\"H1875\"* Bethel|strong=\"H1008\"*," + }, + { + "verseNum": 6, + "text": "Seek|strong=\"H1875\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* you|strong=\"H6435\"* will|strong=\"H3068\"* live|strong=\"H2421\"*," + }, + { + "verseNum": 7, + "text": "You who turn|strong=\"H2015\"* justice|strong=\"H4941\"* to|strong=\"H4941\"* wormwood|strong=\"H3939\"*," + }, + { + "verseNum": 8, + "text": "Seek him|strong=\"H6440\"* who|strong=\"H3068\"* made|strong=\"H6213\"* the|strong=\"H6440\"* Pleiades|strong=\"H3598\"* and|strong=\"H3068\"* Orion|strong=\"H3685\"*," + }, + { + "verseNum": 9, + "text": "who brings sudden destruction|strong=\"H7701\"* on|strong=\"H5921\"* the|strong=\"H5921\"* strong|strong=\"H5794\"*," + }, + { + "verseNum": 10, + "text": "They|strong=\"H1696\"* hate|strong=\"H8130\"* him|strong=\"H8130\"* who|strong=\"H3198\"* reproves|strong=\"H3198\"* in|strong=\"H1696\"* the|strong=\"H1696\"* gate|strong=\"H8179\"*," + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H3651\"*, because|strong=\"H5921\"* you|strong=\"H5921\"* trample on|strong=\"H5921\"* the|strong=\"H5921\"* poor|strong=\"H1800\"* and|strong=\"H1004\"* take|strong=\"H3947\"* taxes from|strong=\"H4480\"* him|strong=\"H5921\"* of|strong=\"H1004\"* wheat|strong=\"H1250\"*," + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* how|strong=\"H3588\"* many|strong=\"H7227\"* are|strong=\"H6588\"* your|strong=\"H3947\"* offenses," + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"H3651\"* a|strong=\"H3068\"* prudent|strong=\"H7919\"* person|strong=\"H7919\"* keeps|strong=\"H1826\"* silent|strong=\"H1826\"* in|strong=\"H7919\"* such|strong=\"H3651\"* a|strong=\"H3068\"* time|strong=\"H6256\"*," + }, + { + "verseNum": 14, + "text": "Seek|strong=\"H1875\"* good|strong=\"H2896\"*, and|strong=\"H3068\"* not|strong=\"H1961\"* evil|strong=\"H7451\"*," + }, + { + "verseNum": 15, + "text": "Hate|strong=\"H8130\"* evil|strong=\"H7451\"*, love good|strong=\"H2896\"*," + }, + { + "verseNum": 16, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* Lord|strong=\"H3068\"*, says|strong=\"H3541\"*:" + }, + { + "verseNum": 17, + "text": "In|strong=\"H3068\"* all|strong=\"H3605\"* vineyards|strong=\"H3754\"* there|strong=\"H3605\"* will|strong=\"H3068\"* be|strong=\"H3068\"* wailing|strong=\"H4553\"*," + }, + { + "verseNum": 18, + "text": "“Woe|strong=\"H1945\"* to|strong=\"H3068\"* you|strong=\"H3117\"* who|strong=\"H1931\"* desire the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 19, + "text": "As|strong=\"H6440\"* if a|strong=\"H3068\"* man|strong=\"H6440\"* fled|strong=\"H5127\"* from|strong=\"H6440\"* a|strong=\"H3068\"* lion," + }, + { + "verseNum": 20, + "text": "Won’t the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* be|strong=\"H3808\"* darkness|strong=\"H2822\"*, and|strong=\"H3068\"* not|strong=\"H3808\"* light|strong=\"H5051\"*?" + }, + { + "verseNum": 21, + "text": "I|strong=\"H3808\"* hate|strong=\"H8130\"*, I|strong=\"H3808\"* despise|strong=\"H3988\"* your|strong=\"H3808\"* feasts|strong=\"H2282\"*," + }, + { + "verseNum": 22, + "text": "Yes|strong=\"H3588\"*, though|strong=\"H3588\"* you|strong=\"H3588\"* offer|strong=\"H5927\"* me|strong=\"H7521\"* your|strong=\"H3588\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H5930\"* meal|strong=\"H4503\"* offerings|strong=\"H8002\"*," + }, + { + "verseNum": 23, + "text": "Take|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* me|strong=\"H5921\"* the|strong=\"H5921\"* noise|strong=\"H1995\"* of|strong=\"H5921\"* your|strong=\"H5921\"* songs|strong=\"H7892\"*!" + }, + { + "verseNum": 24, + "text": "But|strong=\"H4325\"* let justice|strong=\"H4941\"* roll|strong=\"H1556\"* on|strong=\"H4325\"* like|strong=\"H4941\"* rivers|strong=\"H5158\"*," + }, + { + "verseNum": 25, + "text": "“Did|strong=\"H3478\"* you|strong=\"H1004\"* bring|strong=\"H5066\"* to|strong=\"H3478\"* me|strong=\"H5066\"* sacrifices|strong=\"H2077\"* and|strong=\"H3478\"* offerings|strong=\"H4503\"* in|strong=\"H8141\"* the|strong=\"H5066\"* wilderness|strong=\"H4057\"* forty years|strong=\"H8141\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 26, + "text": "You|strong=\"H6213\"* also|strong=\"H6213\"* carried|strong=\"H5375\"* the|strong=\"H5375\"* tent of|strong=\"H3556\"* your|strong=\"H5375\"* king and|strong=\"H6213\"* the|strong=\"H5375\"* shrine of|strong=\"H3556\"* your|strong=\"H5375\"* images|strong=\"H6754\"*, the|strong=\"H5375\"* star|strong=\"H3556\"* of|strong=\"H3556\"* your|strong=\"H5375\"* god, which you|strong=\"H6213\"* made|strong=\"H6213\"* for|strong=\"H6213\"* yourselves|strong=\"H5375\"*." + }, + { + "verseNum": 27, + "text": "Therefore|strong=\"H3068\"* I|strong=\"H3068\"* will|strong=\"H3068\"* cause you|strong=\"H1540\"* to|strong=\"H3068\"* go|strong=\"H1540\"* into|strong=\"H1540\"* captivity|strong=\"H1540\"* beyond|strong=\"H1973\"* Damascus|strong=\"H1834\"*,” says Yahweh|strong=\"H3068\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* is|strong=\"H3068\"* the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Woe|strong=\"H1945\"* to|strong=\"H3478\"* those|strong=\"H1992\"* who|strong=\"H3478\"* are|strong=\"H1992\"* at|strong=\"H3478\"* ease|strong=\"H7600\"* in|strong=\"H3478\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 2, + "text": "Go|strong=\"H3212\"* to|strong=\"H3381\"* Calneh|strong=\"H3641\"*, and|strong=\"H3212\"* see|strong=\"H7200\"*." + }, + { + "verseNum": 3, + "text": "Alas for|strong=\"H3117\"* you|strong=\"H3117\"* who put|strong=\"H5066\"* far away|strong=\"H7451\"* the|strong=\"H3117\"* evil|strong=\"H7451\"* day|strong=\"H3117\"*," + }, + { + "verseNum": 4, + "text": "who lie|strong=\"H7901\"* on|strong=\"H5921\"* beds|strong=\"H4296\"* of|strong=\"H8432\"* ivory|strong=\"H8127\"*," + }, + { + "verseNum": 5, + "text": "who|strong=\"H1992\"* strum on|strong=\"H5921\"* the|strong=\"H5921\"* strings of|strong=\"H3627\"* a|strong=\"H3068\"* harp|strong=\"H5035\"*," + }, + { + "verseNum": 6, + "text": "who|strong=\"H8354\"* drink|strong=\"H8354\"* wine|strong=\"H3196\"* in|strong=\"H5921\"* bowls|strong=\"H4219\"*," + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"H3651\"* they|strong=\"H3651\"* will now|strong=\"H6258\"* go|strong=\"H1540\"* captive|strong=\"H1540\"* with|strong=\"H7218\"* the|strong=\"H5493\"* first|strong=\"H7218\"* who|strong=\"H5493\"* go|strong=\"H1540\"* captive|strong=\"H1540\"*." + }, + { + "verseNum": 8, + "text": "“The|strong=\"H5002\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"* by|strong=\"H7650\"* himself|strong=\"H5315\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5002\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*:" + }, + { + "verseNum": 9, + "text": "It|strong=\"H1961\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H1004\"* if|strong=\"H1961\"* ten|strong=\"H6235\"* men remain|strong=\"H3498\"* in|strong=\"H1004\"* one|strong=\"H1961\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 10, + "text": "“When|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H5375\"*’s relative carries|strong=\"H5375\"* him|strong=\"H5973\"*, even|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H3068\"* burns|strong=\"H2142\"* him|strong=\"H5973\"*, to|strong=\"H3318\"* bring|strong=\"H3318\"* bodies out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3588\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* asks him|strong=\"H5973\"* who|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3588\"* innermost|strong=\"H3411\"* parts|strong=\"H3411\"* of|strong=\"H1004\"* the|strong=\"H3588\"* house|strong=\"H1004\"*, ‘Is|strong=\"H3068\"* there|strong=\"H4480\"* yet|strong=\"H5750\"* any|strong=\"H4480\"* with|strong=\"H5973\"* you|strong=\"H3588\"*?’ And|strong=\"H3068\"* he|strong=\"H3588\"* says, ‘No|strong=\"H3808\"*;’ then|strong=\"H3318\"* he|strong=\"H3588\"* will|strong=\"H3068\"* say, ‘Hush! Indeed|strong=\"H3588\"* we|strong=\"H3068\"* must|strong=\"H5375\"* not|strong=\"H3808\"* mention|strong=\"H2142\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*.’" + }, + { + "verseNum": 11, + "text": "“For|strong=\"H3588\"*, behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* commands|strong=\"H6680\"*, and|strong=\"H3068\"* the|strong=\"H3588\"* great|strong=\"H1419\"* house|strong=\"H1004\"* will|strong=\"H3068\"* be|strong=\"H3068\"* smashed|strong=\"H5221\"* to|strong=\"H3068\"* pieces|strong=\"H7447\"*," + }, + { + "verseNum": 12, + "text": "Do|strong=\"H2790\"* horses|strong=\"H5483\"* run|strong=\"H7323\"* on|strong=\"H7323\"* the|strong=\"H3588\"* rocky|strong=\"H5553\"* crags|strong=\"H5553\"*?" + }, + { + "verseNum": 13, + "text": "you|strong=\"H3947\"* who|strong=\"H3808\"* rejoice|strong=\"H8055\"* in|strong=\"H8055\"* a|strong=\"H3068\"* thing|strong=\"H1697\"* of|strong=\"H1697\"* nothing|strong=\"H3808\"*, who|strong=\"H3808\"* say|strong=\"H1697\"*," + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* you|strong=\"H3588\"* a|strong=\"H3068\"* nation|strong=\"H1471\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*,”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Thus|strong=\"H3541\"* the|strong=\"H7200\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* showed|strong=\"H7200\"* me|strong=\"H7200\"*: behold|strong=\"H2009\"*, he|strong=\"H3541\"* formed|strong=\"H3335\"* locusts|strong=\"H1462\"* in|strong=\"H4428\"* the|strong=\"H7200\"* beginning|strong=\"H8462\"* of|strong=\"H4428\"* the|strong=\"H7200\"* shooting up|strong=\"H5927\"* of|strong=\"H4428\"* the|strong=\"H7200\"* latter growth|strong=\"H3954\"*; and|strong=\"H4428\"* behold|strong=\"H2009\"*, it|strong=\"H7200\"* was|strong=\"H4428\"* the|strong=\"H7200\"* latter growth|strong=\"H3954\"* after|strong=\"H5927\"* the|strong=\"H7200\"* king|strong=\"H4428\"*’s harvest|strong=\"H1488\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* finished|strong=\"H3615\"* eating the|strong=\"H3588\"* grass|strong=\"H6212\"* of|strong=\"H3615\"* the|strong=\"H3588\"* land, then|strong=\"H1961\"* I|strong=\"H3588\"* said, “Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, forgive|strong=\"H5545\"*, I|strong=\"H3588\"* beg|strong=\"H4994\"* you|strong=\"H3588\"*! How|strong=\"H3588\"* could|strong=\"H4310\"* Jacob|strong=\"H3290\"* stand|strong=\"H6965\"*? For|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* small|strong=\"H6996\"*.”" + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* relented|strong=\"H5162\"* concerning|strong=\"H5921\"* this|strong=\"H2063\"*. “It|strong=\"H5921\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"*,” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "Thus|strong=\"H3541\"* the|strong=\"H7200\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* showed|strong=\"H7200\"* me|strong=\"H7200\"*: behold|strong=\"H2009\"*, the|strong=\"H7200\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* called|strong=\"H7121\"* for|strong=\"H7121\"* judgment by|strong=\"H7121\"* fire; and|strong=\"H7200\"* it|strong=\"H7121\"* dried up|strong=\"H7200\"* the|strong=\"H7200\"* great|strong=\"H7227\"* deep|strong=\"H8415\"*, and|strong=\"H7200\"* would|strong=\"H7227\"* have|strong=\"H7200\"* devoured the|strong=\"H7200\"* land|strong=\"H2506\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6965\"* I|strong=\"H3588\"* said, “Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, stop|strong=\"H2308\"*, I|strong=\"H3588\"* beg|strong=\"H4994\"* you|strong=\"H3588\"*! How|strong=\"H3588\"* could|strong=\"H4310\"* Jacob|strong=\"H3290\"* stand|strong=\"H6965\"*? For|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* small|strong=\"H6996\"*.”" + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* relented|strong=\"H5162\"* concerning|strong=\"H5921\"* this|strong=\"H2063\"*. “This|strong=\"H2063\"* also|strong=\"H1571\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"*,” says the|strong=\"H5921\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "Thus|strong=\"H3541\"* he|strong=\"H3027\"* showed|strong=\"H7200\"* me|strong=\"H7200\"*: behold|strong=\"H2009\"*, the|strong=\"H5921\"* Lord stood|strong=\"H5324\"* beside|strong=\"H5921\"* a|strong=\"H3068\"* wall|strong=\"H2346\"* made by|strong=\"H3027\"* a|strong=\"H3068\"* plumb line, with|strong=\"H5921\"* a|strong=\"H3068\"* plumb line in|strong=\"H5921\"* his|strong=\"H5921\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* me|strong=\"H7200\"*, “Amos|strong=\"H5986\"*, what|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H7760\"* see|strong=\"H7200\"*?”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"* of|strong=\"H1004\"* Isaac|strong=\"H3446\"* will|strong=\"H3478\"* be|strong=\"H3478\"* desolate|strong=\"H8074\"*, the|strong=\"H5921\"* sanctuaries|strong=\"H4720\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* will|strong=\"H3478\"* be|strong=\"H3478\"* laid|strong=\"H8074\"* waste|strong=\"H2717\"*; and|strong=\"H6965\"* I|strong=\"H5921\"* will|strong=\"H3478\"* rise|strong=\"H6965\"* against|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jeroboam|strong=\"H3379\"* with|strong=\"H1004\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*.”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H7971\"* Amaziah the|strong=\"H3605\"* priest|strong=\"H3548\"* of|strong=\"H4428\"* Bethel|strong=\"H1008\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* Jeroboam|strong=\"H3379\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, saying|strong=\"H1697\"*, “Amos|strong=\"H5986\"* has|strong=\"H3478\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* you|strong=\"H3605\"* in|strong=\"H5921\"* the|strong=\"H3605\"* middle|strong=\"H7130\"* of|strong=\"H4428\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*. The|strong=\"H3605\"* land|strong=\"H7130\"* is|strong=\"H1697\"* not|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3478\"* bear|strong=\"H3557\"* all|strong=\"H3605\"* his|strong=\"H3605\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* Amos|strong=\"H5986\"* says|strong=\"H3541\"*, ‘Jeroboam|strong=\"H3379\"* will|strong=\"H3478\"* die|strong=\"H4191\"* by|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*, and|strong=\"H3478\"* Israel|strong=\"H3478\"* shall|strong=\"H3478\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* led|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* out|strong=\"H5921\"* of|strong=\"H5921\"* his|strong=\"H5921\"* land.’”" + }, + { + "verseNum": 12, + "text": "Amaziah also|strong=\"H3899\"* said to|strong=\"H3212\"* Amos|strong=\"H5986\"*, “You|strong=\"H3212\"* seer|strong=\"H2374\"*, go|strong=\"H3212\"*, flee|strong=\"H1272\"* away|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H8033\"* land of|strong=\"H3899\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* there|strong=\"H8033\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"*, and|strong=\"H3063\"* prophesy|strong=\"H5012\"* there|strong=\"H8033\"*," + }, + { + "verseNum": 13, + "text": "but|strong=\"H3588\"* don’t prophesy|strong=\"H5012\"* again|strong=\"H5750\"* any|strong=\"H5750\"* more|strong=\"H3254\"* at|strong=\"H1004\"* Bethel|strong=\"H1008\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3588\"* king|strong=\"H4428\"*’s sanctuary|strong=\"H4720\"*, and|strong=\"H4428\"* it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* royal|strong=\"H4428\"* house|strong=\"H1004\"*!”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H6030\"* Amos|strong=\"H5986\"* answered|strong=\"H6030\"* Amaziah, “I|strong=\"H3588\"* was|strong=\"H1121\"* no|strong=\"H3808\"* prophet|strong=\"H5030\"*, neither|strong=\"H3808\"* was|strong=\"H1121\"* I|strong=\"H3588\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"*’s son|strong=\"H1121\"*, but|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H1121\"* a|strong=\"H3068\"* herdsman, and|strong=\"H1121\"* a|strong=\"H3068\"* farmer of|strong=\"H1121\"* sycamore|strong=\"H8256\"* figs|strong=\"H1103\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"H3478\"* Yahweh|strong=\"H3068\"* took|strong=\"H3947\"* me|strong=\"H3947\"* from|strong=\"H3478\"* following|strong=\"H3212\"* the|strong=\"H3947\"* flock|strong=\"H6629\"*, and|strong=\"H3478\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* me|strong=\"H3947\"*, ‘Go|strong=\"H3212\"*, prophesy|strong=\"H5012\"* to|strong=\"H3478\"* my|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*.’" + }, + { + "verseNum": 16, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*: ‘You|strong=\"H5921\"* say|strong=\"H1697\"*, Don’t prophesy|strong=\"H5012\"* against|strong=\"H5921\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* don’t preach|strong=\"H5197\"* against|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Isaac|strong=\"H3446\"*.’" + }, + { + "verseNum": 17, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Your|strong=\"H3068\"* wife shall|strong=\"H3068\"* be|strong=\"H4191\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"* in|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, and|strong=\"H1121\"* your|strong=\"H3068\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H3068\"* daughters|strong=\"H1323\"* shall|strong=\"H3068\"* fall|strong=\"H5307\"* by|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*, and|strong=\"H1121\"* your|strong=\"H3068\"* land shall|strong=\"H3068\"* be|strong=\"H4191\"* divided|strong=\"H2505\"* by|strong=\"H5921\"* line|strong=\"H2256\"*; and|strong=\"H1121\"* you|strong=\"H5921\"* yourself|strong=\"H5307\"* shall|strong=\"H3068\"* die|strong=\"H4191\"* in|strong=\"H5921\"* a|strong=\"H3068\"* land that|strong=\"H3068\"* is|strong=\"H3068\"* unclean|strong=\"H2931\"*, and|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H3068\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* led|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* out|strong=\"H5921\"* of|strong=\"H1121\"* his|strong=\"H3068\"* land.’”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Thus|strong=\"H3541\"* the|strong=\"H7200\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* showed|strong=\"H7200\"* me|strong=\"H7200\"*: behold|strong=\"H2009\"*, a|strong=\"H3068\"* basket|strong=\"H3619\"* of|strong=\"H3069\"* summer|strong=\"H7019\"* fruit|strong=\"H7019\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3068\"* said, “Amos|strong=\"H5986\"*, what|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H3808\"* see|strong=\"H7200\"*?”" + }, + { + "verseNum": 3, + "text": "The|strong=\"H3605\"* songs|strong=\"H7892\"* of|strong=\"H3117\"* the|strong=\"H3605\"* temple|strong=\"H1964\"* will|strong=\"H7227\"* be|strong=\"H3117\"* wailing|strong=\"H3213\"* in|strong=\"H3117\"* that|strong=\"H3605\"* day|strong=\"H3117\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "Hear|strong=\"H8085\"* this|strong=\"H2063\"*, you|strong=\"H7673\"* who desire|strong=\"H7602\"* to|strong=\"H8085\"* swallow|strong=\"H7602\"* up|strong=\"H7602\"* the|strong=\"H8085\"* needy," + }, + { + "verseNum": 5, + "text": "saying, ‘When|strong=\"H4970\"* will|strong=\"H4820\"* the|strong=\"H5674\"* new|strong=\"H2320\"* moon|strong=\"H2320\"* be|strong=\"H2320\"* gone|strong=\"H5674\"*, that|strong=\"H5674\"* we|strong=\"H3068\"* may|strong=\"H1431\"* sell|strong=\"H7666\"* grain|strong=\"H1250\"*?" + }, + { + "verseNum": 6, + "text": "that|strong=\"H5668\"* we|strong=\"H3068\"* may|strong=\"H5668\"* buy|strong=\"H7069\"* the|strong=\"H7069\"* poor|strong=\"H1800\"* for|strong=\"H3701\"* silver|strong=\"H3701\"*," + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"* by|strong=\"H7650\"* the|strong=\"H3605\"* pride|strong=\"H1347\"* of|strong=\"H3068\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 8, + "text": "Won’t the|strong=\"H3605\"* land tremble|strong=\"H7264\"* for|strong=\"H5921\"* this|strong=\"H2063\"*," + }, + { + "verseNum": 9, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 10, + "text": "I|strong=\"H3117\"* will|strong=\"H3117\"* turn|strong=\"H2015\"* your|strong=\"H3605\"* feasts|strong=\"H2282\"* into|strong=\"H2015\"* mourning," + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H7971\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 12, + "text": "They|strong=\"H3068\"* will|strong=\"H3068\"* wander|strong=\"H5128\"* from|strong=\"H5704\"* sea|strong=\"H3220\"* to|strong=\"H5704\"* sea|strong=\"H3220\"*," + }, + { + "verseNum": 13, + "text": "In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* the|strong=\"H3117\"* beautiful|strong=\"H3303\"* virgins|strong=\"H1330\"*" + }, + { + "verseNum": 14, + "text": "Those who|strong=\"H2416\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* the|strong=\"H6965\"* sin of|strong=\"H1870\"* Samaria|strong=\"H8111\"*," + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H5921\"* saw|strong=\"H7200\"* the|strong=\"H3605\"* Lord standing|strong=\"H5324\"* beside|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, and|strong=\"H7218\"* he|strong=\"H3605\"* said, “Strike|strong=\"H5221\"* the|strong=\"H3605\"* tops|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H3605\"* pillars|strong=\"H3730\"*, that|strong=\"H7200\"* the|strong=\"H3605\"* thresholds|strong=\"H5592\"* may|strong=\"H2719\"* shake|strong=\"H7493\"*. Break|strong=\"H1214\"* them|strong=\"H5921\"* in|strong=\"H5921\"* pieces on|strong=\"H5921\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H7218\"* all|strong=\"H3605\"* of|strong=\"H7218\"* them|strong=\"H5921\"*. I|strong=\"H5921\"* will|strong=\"H2719\"* kill|strong=\"H2026\"* the|strong=\"H3605\"* last of|strong=\"H7218\"* them|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*. Not|strong=\"H3808\"* one|strong=\"H3605\"* of|strong=\"H7218\"* them|strong=\"H5921\"* will|strong=\"H2719\"* flee|strong=\"H5127\"* away|strong=\"H5127\"*. Not|strong=\"H3808\"* one|strong=\"H3605\"* of|strong=\"H7218\"* them|strong=\"H5921\"* will|strong=\"H2719\"* escape|strong=\"H4422\"*." + }, + { + "verseNum": 2, + "text": "Though they|strong=\"H8033\"* dig|strong=\"H2864\"* into|strong=\"H3381\"* Sheol|strong=\"H7585\"*,+ 9:2 Sheol is the place of the dead.* there|strong=\"H8033\"* my|strong=\"H3947\"* hand|strong=\"H3027\"* will|strong=\"H8064\"* take|strong=\"H3947\"* them|strong=\"H3027\"*; and|strong=\"H8064\"* though they|strong=\"H8033\"* climb|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3381\"* heaven|strong=\"H8064\"*, there|strong=\"H8033\"* I|strong=\"H3027\"* will|strong=\"H8064\"* bring|strong=\"H5927\"* them|strong=\"H3027\"* down|strong=\"H3381\"*." + }, + { + "verseNum": 3, + "text": "Though they|strong=\"H8033\"* hide|strong=\"H5641\"* themselves|strong=\"H2244\"* in|strong=\"H3220\"* the|strong=\"H3947\"* top|strong=\"H7218\"* of|strong=\"H7218\"* Carmel|strong=\"H3760\"*, I|strong=\"H6680\"* will|strong=\"H5869\"* search|strong=\"H2664\"* and|strong=\"H5869\"* take|strong=\"H3947\"* them|strong=\"H6680\"* out|strong=\"H3947\"* from|strong=\"H3947\"* there|strong=\"H8033\"*; and|strong=\"H5869\"* though they|strong=\"H8033\"* be|strong=\"H5869\"* hidden|strong=\"H5641\"* from|strong=\"H3947\"* my|strong=\"H3947\"* sight|strong=\"H5869\"* in|strong=\"H3220\"* the|strong=\"H3947\"* bottom|strong=\"H7172\"* of|strong=\"H7218\"* the|strong=\"H3947\"* sea|strong=\"H3220\"*, there|strong=\"H8033\"* I|strong=\"H6680\"* will|strong=\"H5869\"* command|strong=\"H6680\"* the|strong=\"H3947\"* serpent|strong=\"H5175\"*, and|strong=\"H5869\"* it|strong=\"H8033\"* will|strong=\"H5869\"* bite|strong=\"H5391\"* them|strong=\"H6680\"*." + }, + { + "verseNum": 4, + "text": "Though they|strong=\"H8033\"* go|strong=\"H3212\"* into|strong=\"H3212\"* captivity|strong=\"H7628\"* before|strong=\"H6440\"* their|strong=\"H7760\"* enemies, there|strong=\"H8033\"* I|strong=\"H5921\"* will|strong=\"H5869\"* command|strong=\"H6680\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*, and|strong=\"H3212\"* it|strong=\"H7760\"* will|strong=\"H5869\"* kill|strong=\"H2026\"* them|strong=\"H5921\"*. I|strong=\"H5921\"* will|strong=\"H5869\"* set|strong=\"H7760\"* my|strong=\"H7760\"* eyes|strong=\"H5869\"* on|strong=\"H5921\"* them|strong=\"H5921\"* for|strong=\"H5921\"* evil|strong=\"H7451\"*, and|strong=\"H3212\"* not|strong=\"H3808\"* for|strong=\"H5921\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H4714\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3427\"* Armies|strong=\"H6635\"*, is|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* touches|strong=\"H5060\"* the|strong=\"H3605\"* land and|strong=\"H4714\"* it|strong=\"H5927\"* melts|strong=\"H4127\"*, and|strong=\"H4714\"* all|strong=\"H3605\"* who|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H5927\"* will|strong=\"H4714\"* mourn; and|strong=\"H4714\"* it|strong=\"H5927\"* will|strong=\"H4714\"* rise|strong=\"H5927\"* up|strong=\"H5927\"* wholly|strong=\"H3605\"* like|strong=\"H5927\"* the|strong=\"H3605\"* River|strong=\"H2975\"*, and|strong=\"H4714\"* will|strong=\"H4714\"* sink|strong=\"H8257\"* again, like|strong=\"H5927\"* the|strong=\"H3605\"* River|strong=\"H2975\"* of|strong=\"H3427\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 6, + "text": "It|strong=\"H7121\"* is|strong=\"H3068\"* he|strong=\"H3068\"* who|strong=\"H3068\"* builds|strong=\"H1129\"* his|strong=\"H3068\"* rooms in|strong=\"H5921\"* the|strong=\"H6440\"* heavens|strong=\"H8064\"*, and|strong=\"H3068\"* has|strong=\"H3068\"* founded|strong=\"H3245\"* his|strong=\"H3068\"* vault on|strong=\"H5921\"* the|strong=\"H6440\"* earth|strong=\"H8064\"*; he|strong=\"H3068\"* who|strong=\"H3068\"* calls|strong=\"H7121\"* for|strong=\"H5921\"* the|strong=\"H6440\"* waters|strong=\"H4325\"* of|strong=\"H3068\"* the|strong=\"H6440\"* sea|strong=\"H3220\"*, and|strong=\"H3068\"* pours|strong=\"H8210\"* them|strong=\"H5921\"* out|strong=\"H8210\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* earth|strong=\"H8064\"*—Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* his|strong=\"H3068\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 7, + "text": "Are|strong=\"H1121\"* you|strong=\"H3808\"* not|strong=\"H3808\"* like|strong=\"H3478\"* the|strong=\"H5002\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5002\"* Ethiopians|strong=\"H3569\"* to|strong=\"H3478\"* me|strong=\"H3808\"*, children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*?” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. “Haven’t I|strong=\"H4714\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* Israel|strong=\"H3478\"* out|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H5002\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* the|strong=\"H5002\"* Philistines|strong=\"H6430\"* from|strong=\"H5927\"* Caphtor|strong=\"H3731\"*, and|strong=\"H1121\"* the|strong=\"H5002\"* Syrians from|strong=\"H5927\"* Kir|strong=\"H7024\"*?" + }, + { + "verseNum": 8, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H6440\"* eyes|strong=\"H5869\"* of|strong=\"H1004\"* the|strong=\"H6440\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"* are|strong=\"H5869\"* on|strong=\"H5921\"* the|strong=\"H6440\"* sinful|strong=\"H2400\"* kingdom|strong=\"H4467\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* destroy|strong=\"H8045\"* it|strong=\"H5921\"* from|strong=\"H6440\"* off|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* earth, except|strong=\"H3588\"* that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* utterly|strong=\"H8045\"* destroy|strong=\"H8045\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "“For|strong=\"H3588\"* behold|strong=\"H2009\"*, I|strong=\"H3588\"* will|strong=\"H1471\"* command|strong=\"H6680\"*, and|strong=\"H3478\"* I|strong=\"H3588\"* will|strong=\"H1471\"* sift|strong=\"H5128\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* among|strong=\"H3808\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* as|strong=\"H3588\"* grain|strong=\"H3605\"* is|strong=\"H2009\"* sifted|strong=\"H5128\"* in|strong=\"H3478\"* a|strong=\"H3068\"* sieve|strong=\"H3531\"*, yet|strong=\"H3588\"* not|strong=\"H3808\"* the|strong=\"H3605\"* least kernel|strong=\"H6872\"* will|strong=\"H1471\"* fall|strong=\"H5307\"* on|strong=\"H5307\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* sinners|strong=\"H2400\"* of|strong=\"H5971\"* my|strong=\"H3605\"* people|strong=\"H5971\"* will|strong=\"H5971\"* die|strong=\"H4191\"* by|strong=\"H4191\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, who|strong=\"H3605\"* say, ‘Evil|strong=\"H7451\"* won’t overtake|strong=\"H5066\"* nor|strong=\"H3808\"* meet|strong=\"H6923\"* us|strong=\"H7451\"*.’" + }, + { + "verseNum": 11, + "text": "In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H1931\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H3117\"* tent of|strong=\"H3117\"* David|strong=\"H1732\"* who|strong=\"H1931\"* is|strong=\"H1931\"* fallen|strong=\"H5307\"* and|strong=\"H6965\"* close up|strong=\"H6965\"* its|strong=\"H6965\"* breaches|strong=\"H6556\"*, and|strong=\"H6965\"* I|strong=\"H3117\"* will|strong=\"H1931\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* its|strong=\"H6965\"* ruins|strong=\"H2034\"*, and|strong=\"H6965\"* I|strong=\"H3117\"* will|strong=\"H1931\"* build|strong=\"H1129\"* it|strong=\"H1931\"* as|strong=\"H3117\"* in|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* old|strong=\"H5769\"*," + }, + { + "verseNum": 12, + "text": "that|strong=\"H3605\"* they|strong=\"H3068\"* may|strong=\"H3068\"* possess|strong=\"H3423\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H3068\"* Edom and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* who|strong=\"H3605\"* are|strong=\"H1471\"* called|strong=\"H7121\"* by|strong=\"H5921\"* my|strong=\"H3605\"* name|strong=\"H8034\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* who|strong=\"H3605\"* does|strong=\"H6213\"* this|strong=\"H2063\"*." + }, + { + "verseNum": 13, + "text": "“Behold|strong=\"H2009\"*, the|strong=\"H3605\"* days|strong=\"H3117\"* come|strong=\"H5066\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 14, + "text": "I|strong=\"H3478\"* will|strong=\"H5971\"* bring|strong=\"H7725\"* my|strong=\"H7725\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* back|strong=\"H7725\"* from|strong=\"H7725\"* captivity|strong=\"H7622\"*," + }, + { + "verseNum": 15, + "text": "I|strong=\"H5414\"* will|strong=\"H3068\"* plant|strong=\"H5193\"* them|strong=\"H5414\"* on|strong=\"H5921\"* their|strong=\"H3068\"* land," + } + ] + } + ] + }, + { + "name": "Obadiah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5921\"* vision|strong=\"H2377\"* of|strong=\"H3068\"* Obadiah|strong=\"H5662\"*. This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* the|strong=\"H5921\"* Lord|strong=\"H3068\"*+ 1:1 The word translated “Lord” is “Adonai.”* Yahweh|strong=\"H3068\"*+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* says|strong=\"H3541\"* about|strong=\"H5921\"* Edom. We|strong=\"H8085\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* news|strong=\"H8052\"* from|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, and|strong=\"H6965\"* an|strong=\"H7971\"* ambassador|strong=\"H6735\"* is|strong=\"H3068\"* sent|strong=\"H7971\"* among|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*, saying, “Arise|strong=\"H6965\"*, and|strong=\"H6965\"* let|strong=\"H7971\"*’s rise|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* her|strong=\"H7971\"* in|strong=\"H5921\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 2, + "text": "Behold|strong=\"H2009\"*,+ 1:2 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"H5414\"* have|strong=\"H1471\"* made|strong=\"H5414\"* you|strong=\"H5414\"* small|strong=\"H6996\"* among the|strong=\"H5414\"* nations|strong=\"H1471\"*. You|strong=\"H5414\"* are|strong=\"H1471\"* greatly|strong=\"H3966\"* despised." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3381\"* pride|strong=\"H2087\"* of|strong=\"H3820\"* your|strong=\"H3381\"* heart|strong=\"H3820\"* has|strong=\"H4310\"* deceived|strong=\"H5377\"* you|strong=\"H3381\"*, you|strong=\"H3381\"* who|strong=\"H4310\"* dwell|strong=\"H7931\"* in|strong=\"H7931\"* the|strong=\"H3381\"* clefts|strong=\"H2288\"* of|strong=\"H3820\"* the|strong=\"H3381\"* rock|strong=\"H5553\"*, whose|strong=\"H4310\"* habitation|strong=\"H7931\"* is|strong=\"H3820\"* high|strong=\"H4791\"*, who|strong=\"H4310\"* says in|strong=\"H7931\"* his|strong=\"H7931\"* heart|strong=\"H3820\"*, ‘Who|strong=\"H4310\"* will|strong=\"H4310\"* bring|strong=\"H3381\"* me|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3381\"* ground?’" + }, + { + "verseNum": 4, + "text": "Though you|strong=\"H7760\"* mount|strong=\"H5404\"* on|strong=\"H7760\"* high|strong=\"H1361\"* as|strong=\"H3068\"* the|strong=\"H5002\"* eagle|strong=\"H5404\"*, and|strong=\"H3068\"* though your|strong=\"H3068\"* nest|strong=\"H7064\"* is|strong=\"H3068\"* set|strong=\"H7760\"* among|strong=\"H8033\"* the|strong=\"H5002\"* stars|strong=\"H3556\"*, I|strong=\"H7760\"* will|strong=\"H3068\"* bring|strong=\"H3381\"* you|strong=\"H7760\"* down|strong=\"H3381\"* from|strong=\"H3381\"* there|strong=\"H8033\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "“If thieves|strong=\"H1590\"* came to|strong=\"H3808\"* you|strong=\"H3808\"*, if robbers|strong=\"H7703\"* by|strong=\"H3915\"* night|strong=\"H3915\"*—oh, what|strong=\"H1767\"* disaster awaits you|strong=\"H3808\"*—wouldn’t they|strong=\"H3808\"* only steal|strong=\"H1589\"* until they|strong=\"H3808\"* had|strong=\"H1767\"* enough|strong=\"H1767\"*? If grape pickers came to|strong=\"H3808\"* you|strong=\"H3808\"*, wouldn’t they|strong=\"H3808\"* leave|strong=\"H7604\"* some|strong=\"H5955\"* gleaning|strong=\"H5955\"* grapes|strong=\"H5955\"*?" + }, + { + "verseNum": 6, + "text": "How Esau|strong=\"H6215\"* will be ransacked|strong=\"H2664\"*! How his|strong=\"H6215\"* hidden|strong=\"H4710\"* treasures|strong=\"H4710\"* are sought out|strong=\"H2664\"*!" + }, + { + "verseNum": 7, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H1366\"* your|strong=\"H3605\"* alliance have|strong=\"H7965\"* brought|strong=\"H7760\"* you|strong=\"H3605\"* on|strong=\"H7760\"* your|strong=\"H3605\"* way|strong=\"H7971\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* border|strong=\"H1366\"*. The|strong=\"H3605\"* men|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3201\"* at|strong=\"H3201\"* peace|strong=\"H7965\"* with|strong=\"H1285\"* you|strong=\"H3605\"* have|strong=\"H7965\"* deceived|strong=\"H5377\"* you|strong=\"H3605\"*, and|strong=\"H7971\"* prevailed|strong=\"H3201\"* against|strong=\"H7971\"* you|strong=\"H3605\"*. Friends who|strong=\"H3605\"* eat|strong=\"H3899\"* your|strong=\"H3605\"* bread|strong=\"H3899\"* lay|strong=\"H7760\"* a|strong=\"H3068\"* snare under|strong=\"H8478\"* you|strong=\"H3605\"*. There|strong=\"H7965\"* is|strong=\"H3605\"* no|strong=\"H3605\"* understanding|strong=\"H8394\"* in|strong=\"H3899\"* him|strong=\"H7971\"*.”" + }, + { + "verseNum": 8, + "text": "“Won’t I|strong=\"H3117\"* in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*”, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “destroy the|strong=\"H5002\"* wise|strong=\"H2450\"* men|strong=\"H2450\"* out|strong=\"H3808\"* of|strong=\"H3068\"* Edom, and|strong=\"H3068\"* understanding|strong=\"H8394\"* out|strong=\"H3808\"* of|strong=\"H3068\"* the|strong=\"H5002\"* mountain|strong=\"H2022\"* of|strong=\"H3068\"* Esau|strong=\"H6215\"*?" + }, + { + "verseNum": 9, + "text": "Your|strong=\"H3772\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*, Teman|strong=\"H8487\"*, will|strong=\"H2022\"* be|strong=\"H2022\"* dismayed|strong=\"H2865\"*, to|strong=\"H4616\"* the|strong=\"H3772\"* end|strong=\"H4616\"* that|strong=\"H4616\"* everyone may|strong=\"H1368\"* be|strong=\"H2022\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* the|strong=\"H3772\"* mountain|strong=\"H2022\"* of|strong=\"H2022\"* Esau|strong=\"H6215\"* by|strong=\"H2022\"* slaughter|strong=\"H6993\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3772\"* the|strong=\"H3680\"* violence|strong=\"H2555\"* done to|strong=\"H5769\"* your|strong=\"H3772\"* brother Jacob|strong=\"H3290\"*, shame will|strong=\"H3290\"* cover|strong=\"H3680\"* you|strong=\"H3772\"*, and|strong=\"H5769\"* you|strong=\"H3772\"* will|strong=\"H3290\"* be|strong=\"H5769\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 11, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* that|strong=\"H3117\"* you|strong=\"H5921\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H5048\"* side|strong=\"H5048\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* that|strong=\"H3117\"* strangers|strong=\"H2114\"* carried|strong=\"H7617\"* away|strong=\"H7617\"* his|strong=\"H5921\"* substance|strong=\"H2428\"* and|strong=\"H3117\"* foreigners|strong=\"H2114\"* entered|strong=\"H5975\"* into|strong=\"H5921\"* his|strong=\"H5921\"* gates|strong=\"H8179\"* and|strong=\"H3117\"* cast|strong=\"H3032\"* lots|strong=\"H1486\"* for|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, even|strong=\"H1571\"* you|strong=\"H5921\"* were|strong=\"H3117\"* like|strong=\"H5921\"* one|strong=\"H1571\"* of|strong=\"H3117\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H7200\"* don’t look|strong=\"H7200\"* down on|strong=\"H3117\"* your|strong=\"H7200\"* brother in|strong=\"H3117\"* the|strong=\"H7200\"* day|strong=\"H3117\"* of|strong=\"H1121\"* his|strong=\"H7200\"* disaster|strong=\"H5235\"*, and|strong=\"H1121\"* don’t rejoice|strong=\"H8055\"* over the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* in|strong=\"H3117\"* the|strong=\"H7200\"* day|strong=\"H3117\"* of|strong=\"H1121\"* their|strong=\"H7200\"* destruction. Don’t speak|strong=\"H6310\"* proudly|strong=\"H1431\"* in|strong=\"H3117\"* the|strong=\"H7200\"* day|strong=\"H3117\"* of|strong=\"H1121\"* distress|strong=\"H6869\"*." + }, + { + "verseNum": 13, + "text": "Don’t enter into|strong=\"H7200\"* the|strong=\"H7200\"* gate|strong=\"H8179\"* of|strong=\"H3117\"* my|strong=\"H7200\"* people|strong=\"H5971\"* in|strong=\"H3117\"* the|strong=\"H7200\"* day|strong=\"H3117\"* of|strong=\"H3117\"* their|strong=\"H7200\"* calamity|strong=\"H7451\"*. Don’t look|strong=\"H7200\"* down|strong=\"H7971\"* on|strong=\"H3117\"* their|strong=\"H7200\"* affliction|strong=\"H7451\"* in|strong=\"H3117\"* the|strong=\"H7200\"* day|strong=\"H3117\"* of|strong=\"H3117\"* their|strong=\"H7200\"* calamity|strong=\"H7451\"*, neither|strong=\"H1571\"* seize their|strong=\"H7200\"* wealth|strong=\"H2428\"* on|strong=\"H3117\"* the|strong=\"H7200\"* day|strong=\"H3117\"* of|strong=\"H3117\"* their|strong=\"H7200\"* calamity|strong=\"H7451\"*." + }, + { + "verseNum": 14, + "text": "Don’t stand|strong=\"H5975\"* in|strong=\"H5921\"* the|strong=\"H5921\"* crossroads to|strong=\"H5921\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* those|strong=\"H5921\"* of|strong=\"H3117\"* his|strong=\"H5921\"* who|strong=\"H6412\"* escape|strong=\"H6412\"*. Don’t deliver|strong=\"H5462\"* up|strong=\"H5975\"* those|strong=\"H5921\"* of|strong=\"H3117\"* his|strong=\"H5921\"* who|strong=\"H6412\"* remain|strong=\"H5975\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H3117\"* distress|strong=\"H6869\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* near|strong=\"H7138\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*! As|strong=\"H3117\"* you|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"*, it|strong=\"H5921\"* will|strong=\"H3068\"* be|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H7725\"* you|strong=\"H3588\"*. Your|strong=\"H3068\"* deeds|strong=\"H7218\"* will|strong=\"H3068\"* return|strong=\"H7725\"* upon|strong=\"H5921\"* your|strong=\"H3068\"* own head|strong=\"H7218\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* as|strong=\"H1961\"* you|strong=\"H3588\"* have|strong=\"H1961\"* drunk|strong=\"H8354\"* on|strong=\"H5921\"* my|strong=\"H3605\"* holy|strong=\"H6944\"* mountain|strong=\"H2022\"*, so|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* will|strong=\"H1961\"* drink|strong=\"H8354\"* continually|strong=\"H8548\"*. Yes|strong=\"H3588\"*, they|strong=\"H3588\"* will|strong=\"H1961\"* drink|strong=\"H8354\"*, swallow|strong=\"H3886\"* down|strong=\"H3886\"*, and|strong=\"H1471\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* though|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H1961\"* in|strong=\"H1004\"* Mount|strong=\"H2022\"* Zion|strong=\"H6726\"*, there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* those|strong=\"H1961\"* who|strong=\"H6413\"* escape|strong=\"H6413\"*, and|strong=\"H1004\"* it|strong=\"H3423\"* will|strong=\"H1961\"* be|strong=\"H1961\"* holy|strong=\"H6944\"*. The|strong=\"H3423\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"* will|strong=\"H1961\"* possess|strong=\"H3423\"* their|strong=\"H3423\"* possessions|strong=\"H4180\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* fire|strong=\"H1814\"*, the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Joseph|strong=\"H3130\"* a|strong=\"H3068\"* flame|strong=\"H3852\"*, and|strong=\"H3068\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Esau|strong=\"H6215\"* for|strong=\"H3588\"* stubble|strong=\"H7179\"*. They|strong=\"H3588\"* will|strong=\"H3068\"* burn among|strong=\"H3808\"* them|strong=\"H1961\"* and|strong=\"H3068\"* devour them|strong=\"H1961\"*. There|strong=\"H1961\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* any|strong=\"H1961\"* remaining|strong=\"H8300\"* to|strong=\"H1696\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Esau|strong=\"H6215\"*.” Indeed|strong=\"H3588\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 19, + "text": "Those of|strong=\"H2022\"* the|strong=\"H3423\"* South|strong=\"H5045\"* will|strong=\"H7704\"* possess|strong=\"H3423\"* the|strong=\"H3423\"* mountain|strong=\"H2022\"* of|strong=\"H2022\"* Esau|strong=\"H6215\"*, and|strong=\"H2022\"* those of|strong=\"H2022\"* the|strong=\"H3423\"* lowland|strong=\"H8219\"*, the|strong=\"H3423\"* Philistines|strong=\"H6430\"*. They|strong=\"H6430\"* will|strong=\"H7704\"* possess|strong=\"H3423\"* the|strong=\"H3423\"* field|strong=\"H7704\"* of|strong=\"H2022\"* Ephraim, and|strong=\"H2022\"* the|strong=\"H3423\"* field|strong=\"H7704\"* of|strong=\"H2022\"* Samaria|strong=\"H8111\"*. Benjamin|strong=\"H1144\"* will|strong=\"H7704\"* possess|strong=\"H3423\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H5704\"* captives|strong=\"H1546\"* of|strong=\"H1121\"* this|strong=\"H2088\"* army|strong=\"H2426\"* of|strong=\"H1121\"* the|strong=\"H5704\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, who|strong=\"H1121\"* are|strong=\"H1121\"* among|strong=\"H3478\"* the|strong=\"H5704\"* Canaanites|strong=\"H3669\"*, will|strong=\"H3478\"* possess|strong=\"H3423\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Zarephath|strong=\"H6886\"*; and|strong=\"H1121\"* the|strong=\"H5704\"* captives|strong=\"H1546\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*, who|strong=\"H1121\"* are|strong=\"H1121\"* in|strong=\"H3478\"* Sepharad|strong=\"H5614\"*, will|strong=\"H3478\"* possess|strong=\"H3423\"* the|strong=\"H5704\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H5704\"* Negev|strong=\"H5045\"*." + }, + { + "verseNum": 21, + "text": "Saviors will|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H3068\"* Mount|strong=\"H2022\"* Zion|strong=\"H6726\"* to|strong=\"H3068\"* judge|strong=\"H8199\"* the|strong=\"H3068\"* mountains|strong=\"H2022\"* of|strong=\"H3068\"* Esau|strong=\"H6215\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* kingdom|strong=\"H4410\"* will|strong=\"H3068\"* be|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s." + } + ] + } + ] + }, + { + "name": "Jonah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jonah|strong=\"H3124\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amittai, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Arise|strong=\"H6965\"*, go|strong=\"H3212\"* to|strong=\"H3212\"* Nineveh|strong=\"H5210\"*, that|strong=\"H3588\"* great|strong=\"H1419\"* city|strong=\"H5892\"*, and|strong=\"H6965\"* preach|strong=\"H7121\"* against|strong=\"H5921\"* it|strong=\"H7121\"*, for|strong=\"H3588\"* their|strong=\"H6440\"* wickedness|strong=\"H7451\"* has|strong=\"H3588\"* come|strong=\"H5927\"* up|strong=\"H5927\"* before|strong=\"H6440\"* me|strong=\"H6440\"*.”" + }, + { + "verseNum": 3, + "text": "But|strong=\"H3068\"* Jonah|strong=\"H3124\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H3381\"* flee|strong=\"H1272\"* to|strong=\"H3381\"* Tarshish|strong=\"H8659\"* from|strong=\"H6440\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. He|strong=\"H3068\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Joppa|strong=\"H3305\"*, and|strong=\"H6965\"* found|strong=\"H4672\"* a|strong=\"H3068\"* ship going|strong=\"H3381\"* to|strong=\"H3381\"* Tarshish|strong=\"H8659\"*; so|strong=\"H5414\"* he|strong=\"H3068\"* paid|strong=\"H5414\"* its|strong=\"H5414\"* fare|strong=\"H7939\"*, and|strong=\"H6965\"* went|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* it|strong=\"H5414\"*, to|strong=\"H3381\"* go|strong=\"H3381\"* with|strong=\"H5973\"* them|strong=\"H5414\"* to|strong=\"H3381\"* Tarshish|strong=\"H8659\"* from|strong=\"H6440\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H1961\"* Yahweh|strong=\"H3068\"* sent|strong=\"H3068\"* out|strong=\"H2904\"* a|strong=\"H3068\"* great|strong=\"H1419\"* wind|strong=\"H7307\"* on|strong=\"H3068\"* the|strong=\"H3068\"* sea|strong=\"H3220\"*, and|strong=\"H3068\"* there|strong=\"H1961\"* was|strong=\"H3068\"* a|strong=\"H3068\"* mighty|strong=\"H1419\"* storm|strong=\"H5591\"* on|strong=\"H3068\"* the|strong=\"H3068\"* sea|strong=\"H3220\"*, so|strong=\"H1961\"* that|strong=\"H3068\"* the|strong=\"H3068\"* ship was|strong=\"H3068\"* likely to|strong=\"H3068\"* break|strong=\"H7665\"* up|strong=\"H3220\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H3372\"* the|strong=\"H5921\"* mariners|strong=\"H4419\"* were|strong=\"H3627\"* afraid|strong=\"H3372\"*, and|strong=\"H3381\"* every|strong=\"H2199\"* man cried|strong=\"H2199\"* to|strong=\"H3381\"* his|strong=\"H5921\"* god. They|strong=\"H5921\"* threw|strong=\"H2904\"* the|strong=\"H5921\"* cargo|strong=\"H3627\"* that|strong=\"H3627\"* was|strong=\"H3627\"* in|strong=\"H5921\"* the|strong=\"H5921\"* ship|strong=\"H5600\"* into|strong=\"H3381\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* to|strong=\"H3381\"* lighten|strong=\"H7043\"* the|strong=\"H5921\"* ship|strong=\"H5600\"*. But|strong=\"H7290\"* Jonah|strong=\"H3124\"* had|strong=\"H3124\"* gone|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H5921\"* innermost|strong=\"H3411\"* parts|strong=\"H3411\"* of|strong=\"H3627\"* the|strong=\"H5921\"* ship|strong=\"H5600\"* and|strong=\"H3381\"* he|strong=\"H5921\"* was|strong=\"H3627\"* laying down|strong=\"H3381\"*, and|strong=\"H3381\"* was|strong=\"H3627\"* fast asleep|strong=\"H7290\"*." + }, + { + "verseNum": 6, + "text": "So|strong=\"H7121\"* the|strong=\"H7121\"* ship master|strong=\"H7227\"* came|strong=\"H7126\"* to|strong=\"H6965\"* him|strong=\"H7121\"*, and|strong=\"H6965\"* said|strong=\"H7121\"* to|strong=\"H6965\"* him|strong=\"H7121\"*, “What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3808\"* mean, sleeper|strong=\"H7290\"*? Arise|strong=\"H6965\"*, call|strong=\"H7121\"* on|strong=\"H6965\"* your|strong=\"H3808\"* God|strong=\"H3808\"*!+ 1:6 or, gods* Maybe your|strong=\"H3808\"* God|strong=\"H3808\"*+ 1:6 or, gods * will|strong=\"H3808\"* notice us|strong=\"H7121\"*, so|strong=\"H7121\"* that|strong=\"H7121\"* we|strong=\"H3068\"* won’t perish.”" + }, + { + "verseNum": 7, + "text": "They|strong=\"H5921\"* all|strong=\"H3045\"* said to|strong=\"H3212\"* each other|strong=\"H7453\"*, “Come|strong=\"H3212\"*! Let|strong=\"H3212\"*’s cast|strong=\"H5307\"* lots|strong=\"H1486\"*, that|strong=\"H3045\"* we|strong=\"H3068\"* may|strong=\"H4310\"* know|strong=\"H3045\"* who|strong=\"H4310\"* is|strong=\"H4310\"* responsible for|strong=\"H5921\"* this|strong=\"H2063\"* evil|strong=\"H7451\"* that|strong=\"H3045\"* is|strong=\"H4310\"* on|strong=\"H5921\"* us|strong=\"H5921\"*.” So|strong=\"H2063\"* they|strong=\"H5921\"* cast|strong=\"H5307\"* lots|strong=\"H1486\"*, and|strong=\"H3212\"* the|strong=\"H5921\"* lot|strong=\"H1486\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* Jonah|strong=\"H3124\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H2088\"* they|strong=\"H4100\"* asked|strong=\"H4100\"* him|strong=\"H5046\"*, “Tell|strong=\"H5046\"* us|strong=\"H4994\"*, please|strong=\"H4994\"*, for|strong=\"H7451\"* whose|strong=\"H4310\"* cause|strong=\"H5971\"* this|strong=\"H2088\"* evil|strong=\"H7451\"* is|strong=\"H2088\"* on|strong=\"H4399\"* us|strong=\"H4994\"*. What|strong=\"H4100\"* is|strong=\"H2088\"* your|strong=\"H4994\"* occupation|strong=\"H4399\"*? Where|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H5046\"* come|strong=\"H4994\"* from|strong=\"H7451\"*? What|strong=\"H4100\"* is|strong=\"H2088\"* your|strong=\"H4994\"* country? Of|strong=\"H5971\"* what|strong=\"H4100\"* people|strong=\"H5971\"* are|strong=\"H5971\"* you|strong=\"H5046\"*?”" + }, + { + "verseNum": 9, + "text": "He|strong=\"H6213\"* said to|strong=\"H3068\"* them|strong=\"H6213\"*, “I|strong=\"H3068\"* am|strong=\"H3068\"* a|strong=\"H3068\"* Hebrew|strong=\"H5680\"*, and|strong=\"H3068\"* I|strong=\"H3068\"* fear|strong=\"H3373\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6213\"* God|strong=\"H3068\"*+ 1:9 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* of|strong=\"H3068\"* heaven|strong=\"H8064\"*, who|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H6213\"* the|strong=\"H6213\"* sea|strong=\"H3220\"* and|strong=\"H3068\"* the|strong=\"H6213\"* dry|strong=\"H3004\"* land|strong=\"H3004\"*.”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H6213\"* the|strong=\"H6440\"* men|strong=\"H1419\"* were|strong=\"H1992\"* exceedingly|strong=\"H1419\"* afraid|strong=\"H3372\"*, and|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H6440\"*, “What|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H3588\"* done|strong=\"H6213\"*?” For|strong=\"H3588\"* the|strong=\"H6440\"* men|strong=\"H1419\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3068\"* fleeing|strong=\"H1272\"* from|strong=\"H6440\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* had|strong=\"H3068\"* told|strong=\"H5046\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H1980\"* they|strong=\"H3588\"* said to|strong=\"H1980\"* him|strong=\"H5921\"*, “What|strong=\"H4100\"* shall|strong=\"H6213\"* we|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H1980\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* may|strong=\"H6213\"* be|strong=\"H3220\"* calm|strong=\"H8367\"* to|strong=\"H1980\"* us|strong=\"H5921\"*?” For|strong=\"H3588\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* grew|strong=\"H1980\"* more|strong=\"H3588\"* and|strong=\"H1980\"* more|strong=\"H3588\"* stormy|strong=\"H5590\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H3588\"* said to|strong=\"H5921\"* them|strong=\"H5921\"*, “Take|strong=\"H5375\"* me|strong=\"H5921\"* up|strong=\"H5375\"*, and|strong=\"H1419\"* throw|strong=\"H2904\"* me|strong=\"H5921\"* into|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*. Then|strong=\"H2088\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* will|strong=\"H7945\"* be|strong=\"H3220\"* calm|strong=\"H8367\"* for|strong=\"H3588\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* because|strong=\"H3588\"* of|strong=\"H5921\"* me|strong=\"H5921\"* this|strong=\"H2088\"* great|strong=\"H1419\"* storm|strong=\"H5591\"* is|strong=\"H2088\"* on|strong=\"H5921\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 13, + "text": "Nevertheless|strong=\"H3588\"* the|strong=\"H5921\"* men|strong=\"H1980\"* rowed|strong=\"H2864\"* hard|strong=\"H2864\"* to|strong=\"H1980\"* get|strong=\"H1980\"* them|strong=\"H5921\"* back|strong=\"H7725\"* to|strong=\"H1980\"* the|strong=\"H5921\"* land|strong=\"H3004\"*; but|strong=\"H3588\"* they|strong=\"H3588\"* could|strong=\"H3201\"* not|strong=\"H3808\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* grew|strong=\"H1980\"* more|strong=\"H3808\"* and|strong=\"H1980\"* more|strong=\"H3808\"* stormy|strong=\"H5590\"* against|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H5921\"* they|strong=\"H3588\"* cried|strong=\"H7121\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H7121\"*, “We|strong=\"H3588\"* beg|strong=\"H4994\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, we|strong=\"H3068\"* beg|strong=\"H4994\"* you|strong=\"H3588\"*, don’t let|strong=\"H4994\"* us|strong=\"H5414\"* die for|strong=\"H3588\"* this|strong=\"H2088\"* man|strong=\"H5315\"*’s life|strong=\"H5315\"*, and|strong=\"H3068\"* don’t lay|strong=\"H5414\"* on|strong=\"H5921\"* us|strong=\"H5414\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"*; for|strong=\"H3588\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* done|strong=\"H6213\"* as|strong=\"H6213\"* it|strong=\"H5414\"* pleased|strong=\"H2654\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 15, + "text": "So|strong=\"H5375\"* they|strong=\"H5375\"* took|strong=\"H5375\"* up|strong=\"H5375\"* Jonah|strong=\"H3124\"* and|strong=\"H5975\"* threw|strong=\"H2904\"* him|strong=\"H5975\"* into|strong=\"H3220\"* the|strong=\"H5375\"* sea|strong=\"H3220\"*; and|strong=\"H5975\"* the|strong=\"H5375\"* sea|strong=\"H3220\"* ceased|strong=\"H5975\"* its|strong=\"H5975\"* raging|strong=\"H2197\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H3372\"* the|strong=\"H3068\"* men|strong=\"H1419\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"* exceedingly|strong=\"H1419\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* offered|strong=\"H2076\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* made|strong=\"H5087\"* vows|strong=\"H5088\"*." + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* prepared a|strong=\"H3068\"* huge fish to swallow up Jonah, and Jonah was in the belly of the fish three days and three nights." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H1961\"* Jonah|strong=\"H3124\"* prayed to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, his|strong=\"H3068\"* God|strong=\"H3068\"*, out|strong=\"H1419\"* of|strong=\"H3068\"* the|strong=\"H3068\"* fish|strong=\"H1709\"*’s belly|strong=\"H4578\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3068\"* said," + }, + { + "verseNum": 3, + "text": "For|strong=\"H7121\"* you|strong=\"H6963\"* threw me|strong=\"H6963\"* into the|strong=\"H8085\"* depths," + }, + { + "verseNum": 4, + "text": "I|strong=\"H5921\"* said, ‘I|strong=\"H5921\"* have|strong=\"H5104\"* been|strong=\"H5674\"* banished from|strong=\"H5921\"* your|strong=\"H3605\"* sight;" + }, + { + "verseNum": 5, + "text": "The|strong=\"H3254\"* waters surrounded me|strong=\"H5048\"*," + }, + { + "verseNum": 6, + "text": "I|strong=\"H5704\"* went|strong=\"H5437\"* down|strong=\"H5437\"* to|strong=\"H5704\"* the|strong=\"H5704\"* bottoms of|strong=\"H7218\"* the|strong=\"H5704\"* mountains." + }, + { + "verseNum": 7, + "text": "“When|strong=\"H3068\"* my|strong=\"H3068\"* soul fainted within|strong=\"H1157\"* me|strong=\"H1157\"*, I|strong=\"H3068\"* remembered Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "Those|strong=\"H5921\"* who|strong=\"H3068\"* regard|strong=\"H5921\"* vain idols forsake their|strong=\"H3068\"* own|strong=\"H5315\"* mercy|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H5800\"* I will|strong=\"H2617\"* sacrifice to|strong=\"H8104\"* you|strong=\"H5800\"* with the|strong=\"H8104\"* voice of|strong=\"H1892\"* thanksgiving." + }, + { + "verseNum": 10, + "text": "Then|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* the|strong=\"H3068\"* fish, and|strong=\"H3068\"* it|strong=\"H7999\"* vomited out Jonah on|strong=\"H3068\"* the|strong=\"H3068\"* dry land." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jonah|strong=\"H3124\"* the|strong=\"H3068\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Arise|strong=\"H6965\"*, go|strong=\"H3212\"* to|strong=\"H1696\"* Nineveh|strong=\"H5210\"*, that|strong=\"H5892\"* great|strong=\"H1419\"* city|strong=\"H5892\"*, and|strong=\"H6965\"* preach|strong=\"H7121\"* to|strong=\"H1696\"* it|strong=\"H7121\"* the|strong=\"H7121\"* message that|strong=\"H5892\"* I|strong=\"H6965\"* give|strong=\"H1696\"* you|strong=\"H1696\"*.”" + }, + { + "verseNum": 3, + "text": "So|strong=\"H1961\"* Jonah|strong=\"H3124\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Nineveh|strong=\"H5210\"*, according to|strong=\"H3212\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*. Now|strong=\"H1961\"* Nineveh|strong=\"H5210\"* was|strong=\"H3068\"* an|strong=\"H1961\"* exceedingly|strong=\"H1419\"* great|strong=\"H1419\"* city|strong=\"H5892\"*, three|strong=\"H7969\"* days|strong=\"H3117\"*’ journey|strong=\"H4109\"* across." + }, + { + "verseNum": 4, + "text": "Jonah|strong=\"H3124\"* began|strong=\"H2490\"* to|strong=\"H3117\"* enter into|strong=\"H2015\"* the|strong=\"H3117\"* city|strong=\"H5892\"* a|strong=\"H3068\"* day|strong=\"H3117\"*’s journey|strong=\"H4109\"*, and|strong=\"H3117\"* he|strong=\"H3117\"* cried|strong=\"H7121\"* out, and|strong=\"H3117\"* said|strong=\"H7121\"*, “In|strong=\"H3117\"* forty days|strong=\"H3117\"*, Nineveh|strong=\"H5210\"* will|strong=\"H5892\"* be|strong=\"H5750\"* overthrown|strong=\"H2015\"*!”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H7121\"* people of|strong=\"H7121\"* Nineveh|strong=\"H5210\"* believed God; and|strong=\"H1419\"* they|strong=\"H5704\"* proclaimed|strong=\"H7121\"* a|strong=\"H3068\"* fast|strong=\"H6685\"* and|strong=\"H1419\"* put|strong=\"H3847\"* on|strong=\"H3847\"* sackcloth|strong=\"H8242\"*, from|strong=\"H5704\"* their|strong=\"H7121\"* greatest|strong=\"H1419\"* even|strong=\"H5704\"* to|strong=\"H5704\"* their|strong=\"H7121\"* least|strong=\"H6996\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* news reached|strong=\"H5060\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Nineveh|strong=\"H5210\"*, and|strong=\"H6965\"* he|strong=\"H5921\"* arose|strong=\"H6965\"* from|strong=\"H5921\"* his|strong=\"H5921\"* throne|strong=\"H3678\"*, took|strong=\"H4428\"* off|strong=\"H5921\"* his|strong=\"H5921\"* royal|strong=\"H4428\"* robe, covered|strong=\"H3680\"* himself|strong=\"H3427\"* with|strong=\"H5921\"* sackcloth|strong=\"H8242\"*, and|strong=\"H6965\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* ashes." + }, + { + "verseNum": 7, + "text": "He|strong=\"H1241\"* made a|strong=\"H3068\"* proclamation|strong=\"H2199\"* and|strong=\"H4428\"* published through Nineveh|strong=\"H5210\"* by|strong=\"H4325\"* the|strong=\"H8354\"* decree|strong=\"H2940\"* of|strong=\"H4428\"* the|strong=\"H8354\"* king|strong=\"H4428\"* and|strong=\"H4428\"* his|strong=\"H4428\"* nobles|strong=\"H1419\"*, saying, “Let neither|strong=\"H8354\"* man|strong=\"H1419\"* nor|strong=\"H1241\"* animal, herd|strong=\"H1241\"* nor|strong=\"H1241\"* flock|strong=\"H6629\"*, taste|strong=\"H2938\"* anything|strong=\"H3972\"*; let them|strong=\"H7462\"* not|strong=\"H4325\"* feed|strong=\"H7462\"*, nor|strong=\"H1241\"* drink|strong=\"H8354\"* water|strong=\"H4325\"*;" + }, + { + "verseNum": 8, + "text": "but|strong=\"H1870\"* let|strong=\"H7725\"* them|strong=\"H7725\"* be|strong=\"H1870\"* covered|strong=\"H3680\"* with|strong=\"H3680\"* sackcloth|strong=\"H8242\"*, both|strong=\"H4480\"* man|strong=\"H7451\"* and|strong=\"H7725\"* animal, and|strong=\"H7725\"* let|strong=\"H7725\"* them|strong=\"H7725\"* cry|strong=\"H7121\"* mightily|strong=\"H2394\"* to|strong=\"H7725\"* God. Yes, let|strong=\"H7725\"* them|strong=\"H7725\"* turn|strong=\"H7725\"* everyone from|strong=\"H4480\"* his|strong=\"H7121\"* evil|strong=\"H7451\"* way|strong=\"H1870\"* and|strong=\"H7725\"* from|strong=\"H4480\"* the|strong=\"H4480\"* violence|strong=\"H2555\"* that|strong=\"H7121\"* is|strong=\"H1870\"* in|strong=\"H7725\"* his|strong=\"H7121\"* hands|strong=\"H3709\"*." + }, + { + "verseNum": 9, + "text": "Who|strong=\"H4310\"* knows|strong=\"H3045\"* whether|strong=\"H3045\"* God|strong=\"H3808\"* will|strong=\"H4310\"* not|strong=\"H3808\"* turn|strong=\"H7725\"* and|strong=\"H7725\"* relent|strong=\"H5162\"*, and|strong=\"H7725\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* fierce|strong=\"H2740\"* anger|strong=\"H2740\"*, so|strong=\"H3808\"* that|strong=\"H3045\"* we|strong=\"H3068\"* might not|strong=\"H3808\"* perish?”" + }, + { + "verseNum": 10, + "text": "God|strong=\"H3808\"* saw|strong=\"H7200\"* their|strong=\"H1992\"* works|strong=\"H4639\"*, that|strong=\"H3588\"* they|strong=\"H1992\"* turned|strong=\"H7725\"* from|strong=\"H7725\"* their|strong=\"H1992\"* evil|strong=\"H7451\"* way|strong=\"H1870\"*. God|strong=\"H3808\"* relented|strong=\"H5162\"* of|strong=\"H1870\"* the|strong=\"H5921\"* disaster|strong=\"H7451\"* which|strong=\"H1992\"* he|strong=\"H3588\"* said|strong=\"H1696\"* he|strong=\"H3588\"* would|strong=\"H6213\"* do|strong=\"H6213\"* to|strong=\"H1696\"* them|strong=\"H1992\"*, and|strong=\"H7725\"* he|strong=\"H3588\"* didn’t do|strong=\"H6213\"* it|strong=\"H5921\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"H7451\"* it displeased|strong=\"H7489\"* Jonah|strong=\"H3124\"* exceedingly|strong=\"H1419\"*, and|strong=\"H1419\"* he was|strong=\"H7451\"* angry|strong=\"H2734\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3588\"* prayed|strong=\"H6419\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H1697\"*, “Please|strong=\"H7451\"*, Yahweh|strong=\"H3068\"*, wasn’t this|strong=\"H2088\"* what|strong=\"H1697\"* I|strong=\"H3588\"* said|strong=\"H1697\"* when|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H3068\"* still|strong=\"H3588\"* in|strong=\"H5921\"* my|strong=\"H3068\"* own|strong=\"H1961\"* country? Therefore|strong=\"H3651\"* I|strong=\"H3588\"* hurried to|strong=\"H5704\"* flee|strong=\"H1272\"* to|strong=\"H5704\"* Tarshish|strong=\"H8659\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1697\"* a|strong=\"H3068\"* gracious|strong=\"H2587\"* God|strong=\"H3068\"* and|strong=\"H3068\"* merciful|strong=\"H7349\"*, slow to|strong=\"H5704\"* anger, and|strong=\"H3068\"* abundant|strong=\"H7227\"* in|strong=\"H5921\"* loving kindness|strong=\"H2617\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* relent|strong=\"H5162\"* of|strong=\"H3068\"* doing|strong=\"H7451\"* harm|strong=\"H7451\"*." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H6258\"* now|strong=\"H6258\"*, Yahweh|strong=\"H3068\"*, take|strong=\"H3947\"*, I|strong=\"H3588\"* beg|strong=\"H4994\"* you|strong=\"H3588\"*, my|strong=\"H3068\"* life|strong=\"H5315\"* from|strong=\"H4480\"* me|strong=\"H4994\"*, for|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3068\"* better|strong=\"H2896\"* for|strong=\"H3588\"* me|strong=\"H4994\"* to|strong=\"H3068\"* die|strong=\"H4194\"* than|strong=\"H4480\"* to|strong=\"H3068\"* live|strong=\"H2416\"*.”" + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* said, “Is|strong=\"H3068\"* it|strong=\"H3190\"* right|strong=\"H3068\"* for|strong=\"H3068\"* you|strong=\"H3190\"* to|strong=\"H3068\"* be|strong=\"H3068\"* angry|strong=\"H2734\"*?”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H1961\"* Jonah|strong=\"H3124\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3427\"* the|strong=\"H7200\"* city|strong=\"H5892\"* and|strong=\"H5892\"* sat|strong=\"H3427\"* on|strong=\"H7200\"* the|strong=\"H7200\"* east|strong=\"H6924\"* side|strong=\"H6924\"* of|strong=\"H3427\"* the|strong=\"H7200\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* there|strong=\"H8033\"* made|strong=\"H6213\"* himself|strong=\"H6213\"* a|strong=\"H3068\"* booth|strong=\"H5521\"* and|strong=\"H5892\"* sat|strong=\"H3427\"* under|strong=\"H8478\"* it|strong=\"H6213\"* in|strong=\"H3427\"* the|strong=\"H7200\"* shade|strong=\"H6738\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* might see|strong=\"H7200\"* what|strong=\"H4100\"* would|strong=\"H6213\"* become|strong=\"H1961\"* of|strong=\"H3427\"* the|strong=\"H7200\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* prepared|strong=\"H4487\"* a|strong=\"H3068\"* vine and|strong=\"H3068\"* made|strong=\"H1961\"* it|strong=\"H5921\"* to|strong=\"H3068\"* come|strong=\"H5927\"* up|strong=\"H5927\"* over|strong=\"H5921\"* Jonah|strong=\"H3124\"*, that|strong=\"H3068\"* it|strong=\"H5921\"* might|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* shade|strong=\"H6738\"* over|strong=\"H5921\"* his|strong=\"H3068\"* head|strong=\"H7218\"* to|strong=\"H3068\"* deliver|strong=\"H5337\"* him|strong=\"H5921\"* from|strong=\"H5921\"* his|strong=\"H3068\"* discomfort. So|strong=\"H1961\"* Jonah|strong=\"H3124\"* was|strong=\"H3068\"* exceedingly|strong=\"H1419\"* glad|strong=\"H8055\"* because|strong=\"H5921\"* of|strong=\"H3068\"* the|strong=\"H5921\"* vine." + }, + { + "verseNum": 7, + "text": "But|strong=\"H5221\"* God prepared|strong=\"H4487\"* a|strong=\"H3068\"* worm|strong=\"H8438\"* at|strong=\"H5927\"* dawn|strong=\"H7837\"* the|strong=\"H5221\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, and|strong=\"H5927\"* it|strong=\"H5927\"* chewed on|strong=\"H5927\"* the|strong=\"H5221\"* vine so|strong=\"H5927\"* that|strong=\"H5927\"* it|strong=\"H5927\"* withered|strong=\"H3001\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H1961\"* the|strong=\"H5921\"* sun|strong=\"H8121\"* arose|strong=\"H2224\"*, God prepared|strong=\"H4487\"* a|strong=\"H3068\"* sultry east|strong=\"H6921\"* wind|strong=\"H7307\"*; and|strong=\"H7218\"* the|strong=\"H5921\"* sun|strong=\"H8121\"* beat|strong=\"H5221\"* on|strong=\"H5921\"* Jonah|strong=\"H3124\"*’s head|strong=\"H7218\"*, so|strong=\"H1961\"* that|strong=\"H5315\"* he|strong=\"H5921\"* was|strong=\"H1961\"* faint|strong=\"H5968\"* and|strong=\"H7218\"* requested|strong=\"H7592\"* for|strong=\"H5921\"* himself|strong=\"H5315\"* that|strong=\"H5315\"* he|strong=\"H5921\"* might|strong=\"H2416\"* die|strong=\"H4191\"*. He|strong=\"H5921\"* said, “It|strong=\"H5921\"* is|strong=\"H5315\"* better|strong=\"H2896\"* for|strong=\"H5921\"* me|strong=\"H5315\"* to|strong=\"H4191\"* die|strong=\"H4191\"* than|strong=\"H2896\"* to|strong=\"H4191\"* live|strong=\"H2416\"*.”" + }, + { + "verseNum": 9, + "text": "God|strong=\"H3190\"* said to|strong=\"H5704\"* Jonah|strong=\"H3124\"*, “Is|strong=\"H4194\"* it|strong=\"H5921\"* right for|strong=\"H5704\"* you|strong=\"H5921\"* to|strong=\"H5704\"* be angry|strong=\"H2734\"* about|strong=\"H5921\"* the|strong=\"H5921\"* vine?”" + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* said, “You|strong=\"H5921\"* have|strong=\"H1961\"* been|strong=\"H1961\"* concerned|strong=\"H2347\"* for|strong=\"H5921\"* the|strong=\"H5921\"* vine, for|strong=\"H5921\"* which|strong=\"H3068\"* you|strong=\"H5921\"* have|strong=\"H1961\"* not|strong=\"H3808\"* labored|strong=\"H5998\"*, neither|strong=\"H3808\"* made|strong=\"H1961\"* it|strong=\"H5921\"* grow|strong=\"H1431\"*; which|strong=\"H3068\"* came|strong=\"H1961\"* up|strong=\"H1431\"* in|strong=\"H5921\"* a|strong=\"H3068\"* night|strong=\"H3915\"* and|strong=\"H1121\"* perished in|strong=\"H5921\"* a|strong=\"H3068\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 11, + "text": "Shouldn’t I|strong=\"H5921\"* be|strong=\"H3426\"* concerned|strong=\"H3045\"* for|strong=\"H5921\"* Nineveh|strong=\"H5210\"*, that|strong=\"H3045\"* great|strong=\"H1419\"* city|strong=\"H5892\"*, in|strong=\"H5921\"* which|strong=\"H5892\"* are|strong=\"H3426\"* more|strong=\"H7235\"* than|strong=\"H7235\"* one|strong=\"H3808\"* hundred twenty|strong=\"H8147\"* thousand|strong=\"H7239\"* persons who|strong=\"H7227\"* can|strong=\"H3045\"*’t discern|strong=\"H3045\"* between|strong=\"H3045\"* their|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H1419\"* their|strong=\"H5921\"* left|strong=\"H8040\"* hand|strong=\"H3225\"*, and|strong=\"H1419\"* also|strong=\"H3045\"* many|strong=\"H7227\"* animals?”" + } + ] + } + ] + }, + { + "name": "Micah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* that|strong=\"H3117\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Micah|strong=\"H4318\"* of|strong=\"H4428\"* Morasheth in|strong=\"H5921\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Jotham|strong=\"H3147\"*, Ahaz, and|strong=\"H3063\"* Hezekiah|strong=\"H2396\"*, kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, which|strong=\"H3068\"* he|strong=\"H3117\"* saw|strong=\"H2372\"* concerning|strong=\"H5921\"* Samaria|strong=\"H8111\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "Hear|strong=\"H8085\"*, you|strong=\"H3605\"* peoples|strong=\"H5971\"*, all|strong=\"H3605\"* of|strong=\"H5971\"* you|strong=\"H3605\"*!" + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* behold|strong=\"H2009\"*,+ 1:3 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* Yahweh|strong=\"H3068\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* his|strong=\"H3068\"* place|strong=\"H4725\"*," + }, + { + "verseNum": 4, + "text": "The|strong=\"H6440\"* mountains|strong=\"H2022\"* melt|strong=\"H4549\"* under|strong=\"H8478\"* him|strong=\"H6440\"*," + }, + { + "verseNum": 5, + "text": "“All|strong=\"H3605\"* this|strong=\"H2063\"* is|strong=\"H4310\"* for|strong=\"H1004\"* the|strong=\"H3605\"* disobedience of|strong=\"H1004\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 6, + "text": "Therefore I|strong=\"H7760\"* will|strong=\"H7704\"* make|strong=\"H7760\"* Samaria|strong=\"H8111\"* like|strong=\"H8111\"* a|strong=\"H3068\"* rubble heap|strong=\"H5856\"* of|strong=\"H7704\"* the|strong=\"H7760\"* field|strong=\"H7704\"*," + }, + { + "verseNum": 7, + "text": "All|strong=\"H3605\"* her|strong=\"H3605\"* idols|strong=\"H6091\"* will|strong=\"H5704\"* be|strong=\"H7725\"* beaten|strong=\"H3807\"* to|strong=\"H5704\"* pieces|strong=\"H3807\"*," + }, + { + "verseNum": 8, + "text": "For|strong=\"H5921\"* this|strong=\"H2063\"* I|strong=\"H5921\"* will|strong=\"H1323\"* lament|strong=\"H5594\"* and|strong=\"H3212\"* wail|strong=\"H3213\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* her|strong=\"H5060\"* wounds|strong=\"H4347\"* are|strong=\"H5971\"* incurable;" + }, + { + "verseNum": 10, + "text": "Don’t tell|strong=\"H5046\"* it in|strong=\"H5046\"* Gath|strong=\"H1661\"*." + }, + { + "verseNum": 11, + "text": "Pass|strong=\"H5674\"* on|strong=\"H5674\"*, inhabitant|strong=\"H3427\"* of|strong=\"H3427\"* Shaphir|strong=\"H8208\"*, in|strong=\"H3427\"* nakedness|strong=\"H6181\"* and|strong=\"H3318\"* shame|strong=\"H1322\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* inhabitant|strong=\"H3427\"* of|strong=\"H3068\"* Maroth|strong=\"H4796\"* waits anxiously for|strong=\"H3588\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 13, + "text": "Harness|strong=\"H7573\"* the|strong=\"H3588\"* chariot|strong=\"H4818\"* to|strong=\"H3478\"* the|strong=\"H3588\"* swift|strong=\"H7409\"* steed, inhabitant|strong=\"H3427\"* of|strong=\"H1323\"* Lachish|strong=\"H3923\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H3651\"* you|strong=\"H5414\"* will|strong=\"H4428\"* give|strong=\"H5414\"* a|strong=\"H3068\"* parting|strong=\"H7964\"* gift|strong=\"H5414\"* to|strong=\"H3478\"* Moresheth Gath." + }, + { + "verseNum": 15, + "text": "I|strong=\"H5704\"* will|strong=\"H3478\"* yet|strong=\"H5750\"* bring a|strong=\"H3068\"* conqueror|strong=\"H3423\"* to|strong=\"H5704\"* you|strong=\"H5704\"*, inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Mareshah|strong=\"H4762\"*." + }, + { + "verseNum": 16, + "text": "Shave|strong=\"H7139\"* your|strong=\"H5921\"* heads," + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Woe|strong=\"H1945\"* to|strong=\"H6213\"* those|strong=\"H1945\"* who|strong=\"H3588\"* devise|strong=\"H2803\"* iniquity" + }, + { + "verseNum": 2, + "text": "They|strong=\"H5375\"* covet|strong=\"H2530\"* fields|strong=\"H7704\"* and|strong=\"H1004\"* seize|strong=\"H1497\"* them|strong=\"H5375\"*," + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 4, + "text": "In|strong=\"H5921\"* that|strong=\"H5971\"* day|strong=\"H3117\"* they|strong=\"H3117\"* will|strong=\"H5971\"* take|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* parable|strong=\"H4912\"* against|strong=\"H5921\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"H3651\"* you|strong=\"H3808\"* will|strong=\"H3068\"* have|strong=\"H1961\"* no|strong=\"H3808\"* one|strong=\"H3808\"* who|strong=\"H3068\"* divides the|strong=\"H3068\"* land|strong=\"H1486\"* by|strong=\"H3068\"* lot|strong=\"H1486\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s assembly|strong=\"H6951\"*." + }, + { + "verseNum": 6, + "text": "“Don’t prophesy|strong=\"H5197\"*!”—they|strong=\"H3808\"* prophesy|strong=\"H5197\"*—" + }, + { + "verseNum": 7, + "text": "Shall|strong=\"H3068\"* it|strong=\"H1980\"* be|strong=\"H3808\"* said|strong=\"H1697\"*, O|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 8, + "text": "But|strong=\"H7725\"* lately my|strong=\"H6965\"* people|strong=\"H5971\"* have|strong=\"H5971\"* risen|strong=\"H6965\"* up|strong=\"H6965\"* as|strong=\"H5971\"* an|strong=\"H6965\"* enemy." + }, + { + "verseNum": 9, + "text": "You|strong=\"H5921\"* drive|strong=\"H1644\"* the|strong=\"H5921\"* women of|strong=\"H1004\"* my|strong=\"H3947\"* people|strong=\"H5971\"* out|strong=\"H1644\"* from|strong=\"H5921\"* their|strong=\"H3947\"* pleasant|strong=\"H8588\"* houses|strong=\"H1004\"*;" + }, + { + "verseNum": 10, + "text": "Arise|strong=\"H6965\"*, and|strong=\"H6965\"* depart|strong=\"H3212\"*!" + }, + { + "verseNum": 11, + "text": "If|strong=\"H3863\"* a|strong=\"H3068\"* man|strong=\"H2088\"* walking|strong=\"H1980\"* in|strong=\"H1980\"* a|strong=\"H3068\"* spirit|strong=\"H7307\"* of|strong=\"H7307\"* falsehood|strong=\"H8267\"* lies|strong=\"H8267\"*, saying," + }, + { + "verseNum": 12, + "text": "I|strong=\"H7760\"* will|strong=\"H3478\"* surely|strong=\"H6908\"* assemble|strong=\"H6908\"* all|strong=\"H3605\"* of|strong=\"H8432\"* you|strong=\"H3605\"*, Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3068\"* who|strong=\"H3068\"* breaks|strong=\"H6555\"* open|strong=\"H6440\"* the|strong=\"H6440\"* way|strong=\"H5674\"* goes|strong=\"H3318\"* up|strong=\"H5927\"* before|strong=\"H6440\"* them|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H3045\"* said|strong=\"H8085\"*," + }, + { + "verseNum": 2, + "text": "You|strong=\"H5921\"* who|strong=\"H2896\"* hate|strong=\"H8130\"* the|strong=\"H5921\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 3, + "text": "who|strong=\"H5971\"* also|strong=\"H5971\"* eat the|strong=\"H5921\"* flesh|strong=\"H1320\"* of|strong=\"H8432\"* my|strong=\"H5921\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 4, + "text": "Then|strong=\"H6030\"* they|strong=\"H1992\"* will|strong=\"H3068\"* cry|strong=\"H2199\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"* who|strong=\"H5971\"* lead|strong=\"H8582\"* my|strong=\"H5414\"* people|strong=\"H5971\"* astray|strong=\"H8582\"*—for|strong=\"H5921\"* those|strong=\"H5921\"* who|strong=\"H5971\"* feed their|strong=\"H3068\"* teeth|strong=\"H8127\"*, they|strong=\"H3068\"* proclaim|strong=\"H7121\"*, “Peace|strong=\"H7965\"*!” and|strong=\"H3068\"* whoever doesn’t provide|strong=\"H5414\"* for|strong=\"H5921\"* their|strong=\"H3068\"* mouths|strong=\"H6310\"*, they|strong=\"H3068\"* prepare|strong=\"H6942\"* war|strong=\"H4421\"* against|strong=\"H5921\"* him|strong=\"H5414\"*:" + }, + { + "verseNum": 6, + "text": "“Therefore|strong=\"H3651\"* night|strong=\"H3915\"* is|strong=\"H3117\"* over|strong=\"H5921\"* you|strong=\"H5921\"*, with|strong=\"H5921\"* no|strong=\"H5030\"* vision|strong=\"H2377\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* seers|strong=\"H2374\"* shall be|strong=\"H2374\"* disappointed," + }, + { + "verseNum": 8, + "text": "But|strong=\"H3068\"* as|strong=\"H3068\"* for|strong=\"H3068\"* me|strong=\"H5046\"*, I|strong=\"H3478\"* am|strong=\"H3068\"* full|strong=\"H4390\"* of|strong=\"H3068\"* power|strong=\"H3581\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"*," + }, + { + "verseNum": 9, + "text": "Please|strong=\"H4994\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* this|strong=\"H2063\"*, you|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 10, + "text": "who|strong=\"H3389\"* build|strong=\"H1129\"* up|strong=\"H1129\"* Zion|strong=\"H6726\"* with|strong=\"H3389\"* blood|strong=\"H1818\"*," + }, + { + "verseNum": 11, + "text": "Her|strong=\"H5921\"* leaders|strong=\"H7218\"* judge|strong=\"H8199\"* for|strong=\"H5921\"* bribes|strong=\"H7810\"*," + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H3651\"* Zion|strong=\"H6726\"* for|strong=\"H1004\"* your|strong=\"H1961\"* sake|strong=\"H1558\"* will|strong=\"H1961\"* be|strong=\"H1961\"* plowed|strong=\"H2790\"* like|strong=\"H1961\"* a|strong=\"H3068\"* field|strong=\"H7704\"*," + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* latter days|strong=\"H3117\"*," + }, + { + "verseNum": 2, + "text": "Many|strong=\"H7227\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* go|strong=\"H1980\"* and|strong=\"H1980\"* say|strong=\"H1697\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H5971\"* he|strong=\"H5704\"* will|strong=\"H1471\"* judge|strong=\"H8199\"* between|strong=\"H4421\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"*," + }, + { + "verseNum": 4, + "text": "But|strong=\"H3588\"* every|strong=\"H3068\"* man will|strong=\"H3068\"* sit|strong=\"H3427\"* under|strong=\"H8478\"* his|strong=\"H3068\"* vine|strong=\"H1612\"* and|strong=\"H3068\"* under|strong=\"H8478\"* his|strong=\"H3068\"* fig|strong=\"H8384\"* tree|strong=\"H8384\"*." + }, + { + "verseNum": 5, + "text": "Indeed|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H5971\"* may|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H3068\"* their|strong=\"H3605\"* gods," + }, + { + "verseNum": 6, + "text": "“In|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"H3068\"* I|strong=\"H5704\"* will|strong=\"H3068\"* make|strong=\"H7760\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* lame|strong=\"H6760\"* a|strong=\"H3068\"* remnant|strong=\"H7611\"*," + }, + { + "verseNum": 8, + "text": "You|strong=\"H5704\"*, tower|strong=\"H4026\"* of|strong=\"H1323\"* the|strong=\"H5704\"* flock|strong=\"H5739\"*, the|strong=\"H5704\"* hill|strong=\"H6076\"* of|strong=\"H1323\"* the|strong=\"H5704\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 9, + "text": "Now|strong=\"H6258\"* why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3588\"* cry|strong=\"H7321\"* out|strong=\"H2388\"* aloud|strong=\"H7321\"*?" + }, + { + "verseNum": 10, + "text": "Be|strong=\"H3068\"* in|strong=\"H3068\"* pain|strong=\"H2342\"*, and|strong=\"H3068\"* labor|strong=\"H3205\"* to|strong=\"H5704\"* give|strong=\"H3205\"* birth|strong=\"H3205\"*, daughter|strong=\"H1323\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 11, + "text": "Now|strong=\"H6258\"* many|strong=\"H7227\"* nations|strong=\"H1471\"* have|strong=\"H5869\"* assembled against|strong=\"H5921\"* you|strong=\"H5921\"*, that|strong=\"H1471\"* say," + }, + { + "verseNum": 12, + "text": "But|strong=\"H3588\"* they|strong=\"H1992\"* don’t know|strong=\"H3045\"* the|strong=\"H3588\"* thoughts|strong=\"H4284\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 13, + "text": "Arise|strong=\"H6965\"* and|strong=\"H6965\"* thresh|strong=\"H1758\"*, daughter|strong=\"H1323\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"*," + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* you|strong=\"H3117\"* shall|strong=\"H3478\"* gather yourself in|strong=\"H3478\"* troops," + }, + { + "verseNum": 2, + "text": "But|strong=\"H3651\"* you|strong=\"H5414\"*, Bethlehem Ephrathah," + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H6258\"* he|strong=\"H3588\"* will|strong=\"H3068\"* abandon them|strong=\"H5975\"* until|strong=\"H5704\"* the|strong=\"H3588\"* time|strong=\"H6258\"* that|strong=\"H3588\"* she|strong=\"H3588\"* who|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H3427\"* labor gives|strong=\"H5975\"* birth." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3588\"* shall|strong=\"H2088\"* stand|strong=\"H6965\"*, and|strong=\"H6965\"* shall|strong=\"H2088\"* shepherd|strong=\"H7462\"* in|strong=\"H5921\"* the|strong=\"H5921\"* strength of|strong=\"H5921\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 5, + "text": "He|strong=\"H3588\"* will|strong=\"H2719\"* be|strong=\"H2719\"* our|strong=\"H5337\"* peace when|strong=\"H3588\"* Assyria invades our|strong=\"H5337\"* land|strong=\"H1366\"*" + }, + { + "verseNum": 6, + "text": "They|strong=\"H3068\"* will|strong=\"H3068\"* rule the|strong=\"H5921\"* land|strong=\"H7130\"* of|strong=\"H1121\"* Assyria with|strong=\"H3068\"* the|strong=\"H5921\"* sword," + }, + { + "verseNum": 7, + "text": "The|strong=\"H5674\"* remnant|strong=\"H7611\"* of|strong=\"H7611\"* Jacob|strong=\"H3290\"* will|strong=\"H1961\"* be|strong=\"H1961\"* among|strong=\"H7130\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"*" + }, + { + "verseNum": 8, + "text": "The|strong=\"H3605\"* remnant of|strong=\"H3027\"* Jacob will|strong=\"H3027\"* be|strong=\"H3027\"* among|strong=\"H5921\"* the|strong=\"H3605\"* nations," + }, + { + "verseNum": 9, + "text": "Let|strong=\"H1961\"* your|strong=\"H3068\"* hand be|strong=\"H1961\"* lifted up|strong=\"H1961\"* above your|strong=\"H3068\"* adversaries," + }, + { + "verseNum": 10, + "text": "“It|strong=\"H3772\"* will|strong=\"H5892\"* happen in|strong=\"H5892\"* that|strong=\"H3605\"* day”, says Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 11, + "text": "I|strong=\"H3808\"* will|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H3772\"* cities of|strong=\"H3027\"* your|strong=\"H1961\"* land" + }, + { + "verseNum": 12, + "text": "I|strong=\"H3808\"* will|strong=\"H3027\"* destroy|strong=\"H3772\"* witchcraft from|strong=\"H3772\"* your|strong=\"H3808\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H5892\"* will|strong=\"H5892\"* cut off your|strong=\"H7130\"* engraved images and|strong=\"H5892\"* your|strong=\"H7130\"* pillars from|strong=\"H5892\"* among|strong=\"H7130\"* you|strong=\"H7130\"*;" + }, + { + "verseNum": 14, + "text": "I|strong=\"H3808\"* will|strong=\"H1471\"* uproot your|strong=\"H8085\"* Asherah poles from|strong=\"H8085\"* among|strong=\"H3808\"* you|strong=\"H6213\"*;" + }, + { + "verseNum": 15, + "text": "I will execute vengeance in anger" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Listen|strong=\"H8085\"* now|strong=\"H4994\"* to|strong=\"H3068\"* what|strong=\"H6963\"* Yahweh|strong=\"H3068\"* says:" + }, + { + "verseNum": 2, + "text": "Hear|strong=\"H8085\"*, you|strong=\"H3588\"* mountains|strong=\"H2022\"*, Yahweh|strong=\"H3068\"*’s indictment|strong=\"H7379\"*," + }, + { + "verseNum": 3, + "text": "My|strong=\"H6213\"* people|strong=\"H5971\"*, what|strong=\"H4100\"* have|strong=\"H5971\"* I|strong=\"H4100\"* done|strong=\"H6213\"* to|strong=\"H6213\"* you|strong=\"H6213\"*?" + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* brought|strong=\"H5927\"* you|strong=\"H3588\"* up|strong=\"H5927\"* out|strong=\"H7971\"* of|strong=\"H1004\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H1004\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 5, + "text": "My|strong=\"H3068\"* people|strong=\"H5971\"*, remember|strong=\"H2142\"* now|strong=\"H4994\"* what|strong=\"H4100\"* Balak|strong=\"H1111\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"* devised|strong=\"H3289\"*," + }, + { + "verseNum": 6, + "text": "How|strong=\"H4100\"* shall|strong=\"H3068\"* I|strong=\"H4100\"* come|strong=\"H6923\"* before|strong=\"H6923\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 7, + "text": "Will|strong=\"H3068\"* Yahweh|strong=\"H3068\"* be|strong=\"H3068\"* pleased|strong=\"H7521\"* with|strong=\"H3068\"* thousands|strong=\"H7233\"* of|strong=\"H3068\"* rams?" + }, + { + "verseNum": 8, + "text": "He|strong=\"H3588\"* has|strong=\"H3068\"* shown|strong=\"H6213\"* you|strong=\"H3588\"*, O|strong=\"H3068\"* man|strong=\"H2896\"*, what|strong=\"H4100\"* is|strong=\"H3068\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"* calls|strong=\"H7121\"* to|strong=\"H3068\"* the|strong=\"H8085\"* city|strong=\"H5892\"*—" + }, + { + "verseNum": 10, + "text": "Are|strong=\"H7563\"* there yet|strong=\"H5750\"* treasures of|strong=\"H1004\"* wickedness|strong=\"H7562\"* in|strong=\"H1004\"* the|strong=\"H1004\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H1004\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 11, + "text": "Shall I|strong=\"H2135\"* tolerate dishonest|strong=\"H4820\"* scales|strong=\"H3976\"*," + }, + { + "verseNum": 12, + "text": "Her|strong=\"H4390\"* rich|strong=\"H6223\"* men|strong=\"H6223\"* are|strong=\"H6310\"* full|strong=\"H4390\"* of|strong=\"H3427\"* violence|strong=\"H2555\"*," + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"H5921\"* I|strong=\"H5921\"* also|strong=\"H1571\"* have|strong=\"H1571\"* struck|strong=\"H5221\"* you|strong=\"H5921\"* with|strong=\"H5921\"* a|strong=\"H3068\"* grievous|strong=\"H2470\"* wound." + }, + { + "verseNum": 14, + "text": "You|strong=\"H5414\"* shall|strong=\"H2719\"* eat, but|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* satisfied|strong=\"H7646\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H3808\"* will|strong=\"H3808\"* sow|strong=\"H2232\"*, but|strong=\"H3808\"* won’t reap|strong=\"H7114\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H2708\"* the|strong=\"H3605\"* statutes|strong=\"H2708\"* of|strong=\"H1004\"* Omri|strong=\"H6018\"* are|strong=\"H5971\"* kept|strong=\"H8104\"*," + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Misery is|strong=\"H5315\"* mine!" + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* godly|strong=\"H2623\"* man|strong=\"H2623\"* has|strong=\"H3605\"* perished out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H3605\"* earth," + }, + { + "verseNum": 3, + "text": "Their|strong=\"H5921\"* hands|strong=\"H3709\"* are|strong=\"H8199\"* on|strong=\"H5921\"* that|strong=\"H1931\"* which|strong=\"H1931\"* is|strong=\"H1931\"* evil|strong=\"H7451\"* to|strong=\"H1696\"* do|strong=\"H3190\"* it|strong=\"H1931\"* diligently|strong=\"H3190\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3117\"* best|strong=\"H2896\"* of|strong=\"H3117\"* them|strong=\"H1961\"* is|strong=\"H3117\"* like|strong=\"H1961\"* a|strong=\"H3068\"* brier|strong=\"H2312\"*." + }, + { + "verseNum": 5, + "text": "Don’t trust in|strong=\"H7901\"* a|strong=\"H3068\"* neighbor|strong=\"H7453\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* son|strong=\"H1121\"* dishonors the|strong=\"H3588\"* father|strong=\"H1121\"*," + }, + { + "verseNum": 7, + "text": "But|strong=\"H8085\"* as|strong=\"H3068\"* for|strong=\"H3068\"* me|strong=\"H3468\"*, I|strong=\"H8085\"* will|strong=\"H3068\"* look|strong=\"H3068\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "Don’t rejoice|strong=\"H8055\"* against|strong=\"H6965\"* me|strong=\"H6965\"*, my|strong=\"H3068\"* enemy." + }, + { + "verseNum": 9, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* bear|strong=\"H5375\"* the|strong=\"H7200\"* indignation|strong=\"H2197\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 10, + "text": "Then|strong=\"H1961\"* my|strong=\"H3068\"* enemy will|strong=\"H3068\"* see|strong=\"H7200\"* it|strong=\"H7200\"*," + }, + { + "verseNum": 11, + "text": "A|strong=\"H3068\"* day|strong=\"H3117\"* to|strong=\"H3117\"* build|strong=\"H1129\"* your|strong=\"H1129\"* walls|strong=\"H1447\"*!" + }, + { + "verseNum": 12, + "text": "In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* they|strong=\"H3117\"* will|strong=\"H5892\"* come|strong=\"H5892\"* to|strong=\"H5704\"* you|strong=\"H3117\"* from|strong=\"H4480\"* Assyria and|strong=\"H3117\"* the|strong=\"H4480\"* cities|strong=\"H5892\"* of|strong=\"H3117\"* Egypt|strong=\"H4693\"*," + }, + { + "verseNum": 13, + "text": "Yet|strong=\"H5921\"* the|strong=\"H5921\"* land will|strong=\"H1961\"* be|strong=\"H1961\"* desolate|strong=\"H8077\"* because|strong=\"H5921\"* of|strong=\"H3427\"* those|strong=\"H5921\"* who|strong=\"H3427\"* dwell|strong=\"H3427\"* therein|strong=\"H3427\"*," + }, + { + "verseNum": 14, + "text": "Shepherd|strong=\"H7462\"* your|strong=\"H3117\"* people|strong=\"H5971\"* with|strong=\"H3117\"* your|strong=\"H3117\"* staff|strong=\"H7626\"*," + }, + { + "verseNum": 15, + "text": "“As|strong=\"H3117\"* in|strong=\"H3117\"* the|strong=\"H7200\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H7200\"* coming|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H7200\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* nations|strong=\"H1471\"* will|strong=\"H1471\"* see|strong=\"H7200\"* and|strong=\"H3027\"* be|strong=\"H3027\"* ashamed of|strong=\"H3027\"* all|strong=\"H3605\"* their|strong=\"H3605\"* might|strong=\"H1369\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H3068\"* will|strong=\"H3068\"* lick|strong=\"H3897\"* the|strong=\"H3068\"* dust|strong=\"H6083\"* like|strong=\"H4526\"* a|strong=\"H3068\"* serpent|strong=\"H5175\"*." + }, + { + "verseNum": 18, + "text": "Who|strong=\"H4310\"* is|strong=\"H1931\"* a|strong=\"H3068\"* God|strong=\"H3808\"* like|strong=\"H3644\"* you|strong=\"H3588\"*, who|strong=\"H4310\"* pardons|strong=\"H5375\"* iniquity|strong=\"H5771\"*," + }, + { + "verseNum": 19, + "text": "He|strong=\"H3605\"* will|strong=\"H5771\"* again|strong=\"H7725\"* have|strong=\"H7355\"* compassion|strong=\"H7355\"* on|strong=\"H7355\"* us|strong=\"H7725\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* truth to|strong=\"H5414\"* Jacob|strong=\"H3290\"*," + } + ] + } + ] + }, + { + "name": "Nahum", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* revelation about|strong=\"H4853\"* Nineveh|strong=\"H5210\"*. The|strong=\"H5612\"* book|strong=\"H5612\"* of|strong=\"H5612\"* the|strong=\"H5612\"* vision|strong=\"H2377\"* of|strong=\"H5612\"* Nahum|strong=\"H5151\"* the|strong=\"H5612\"* Elkoshite." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"*+ 1:2 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* is|strong=\"H3068\"* a|strong=\"H3068\"* jealous|strong=\"H7072\"* God|strong=\"H3068\"*+ 1:2 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* and|strong=\"H3068\"* avenges. Yahweh|strong=\"H3068\"* avenges and|strong=\"H3068\"* is|strong=\"H3068\"* full of|strong=\"H3068\"* wrath|strong=\"H2534\"*. Yahweh|strong=\"H3068\"* takes|strong=\"H5358\"* vengeance|strong=\"H5358\"* on|strong=\"H3068\"* his|strong=\"H3068\"* adversaries|strong=\"H6862\"*, and|strong=\"H3068\"* he|strong=\"H1931\"* maintains wrath|strong=\"H2534\"* against|strong=\"H2534\"* his|strong=\"H3068\"* enemies|strong=\"H6862\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* slow to|strong=\"H3068\"* anger, and|strong=\"H3068\"* great|strong=\"H1419\"* in|strong=\"H3068\"* power|strong=\"H3581\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* by|strong=\"H3068\"* no|strong=\"H3808\"* means|strong=\"H5352\"* leave|strong=\"H5352\"* the|strong=\"H3068\"* guilty unpunished|strong=\"H5352\"*. Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* his|strong=\"H3068\"* way|strong=\"H1870\"* in|strong=\"H3068\"* the|strong=\"H3068\"* whirlwind|strong=\"H5492\"* and|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* storm|strong=\"H5492\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* clouds|strong=\"H6051\"* are|strong=\"H3068\"* the|strong=\"H3068\"* dust of|strong=\"H3068\"* his|strong=\"H3068\"* feet|strong=\"H7272\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3605\"* rebukes|strong=\"H1605\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* and|strong=\"H3220\"* makes|strong=\"H3001\"* it|strong=\"H3001\"* dry|strong=\"H3001\"*, and|strong=\"H3220\"* dries|strong=\"H3001\"* up|strong=\"H3001\"* all|strong=\"H3605\"* the|strong=\"H3605\"* rivers|strong=\"H5104\"*. Bashan|strong=\"H1316\"* and|strong=\"H3220\"* Carmel|strong=\"H3760\"* languish. The|strong=\"H3605\"* flower|strong=\"H6525\"* of|strong=\"H3605\"* Lebanon|strong=\"H3844\"* languishes." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3605\"* mountains|strong=\"H2022\"* quake|strong=\"H7493\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H6440\"* the|strong=\"H3605\"* hills|strong=\"H1389\"* melt|strong=\"H4127\"* away|strong=\"H5375\"*. The|strong=\"H3605\"* earth trembles at|strong=\"H3427\"* his|strong=\"H3605\"* presence|strong=\"H6440\"*, yes, the|strong=\"H3605\"* world|strong=\"H8398\"*, and|strong=\"H6440\"* all|strong=\"H3605\"* who|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H5375\"*." + }, + { + "verseNum": 6, + "text": "Who|strong=\"H4310\"* can|strong=\"H4310\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* his|strong=\"H6440\"* indignation|strong=\"H2195\"*? Who|strong=\"H4310\"* can|strong=\"H4310\"* endure|strong=\"H5975\"* the|strong=\"H6440\"* fierceness|strong=\"H2740\"* of|strong=\"H6440\"* his|strong=\"H6440\"* anger|strong=\"H2534\"*? His|strong=\"H6440\"* wrath|strong=\"H2534\"* is|strong=\"H4310\"* poured|strong=\"H5413\"* out|strong=\"H4480\"* like|strong=\"H2534\"* fire, and|strong=\"H6965\"* the|strong=\"H6440\"* rocks|strong=\"H6697\"* are|strong=\"H4310\"* broken|strong=\"H5422\"* apart by|strong=\"H5975\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* good|strong=\"H2896\"*, a|strong=\"H3068\"* stronghold|strong=\"H4581\"* in|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* trouble|strong=\"H6869\"*; and|strong=\"H3068\"* he|strong=\"H3117\"* knows|strong=\"H3045\"* those who|strong=\"H3068\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"* in|strong=\"H3068\"* him|strong=\"H3045\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H7291\"* with|strong=\"H6213\"* an|strong=\"H6213\"* overflowing|strong=\"H5674\"* flood|strong=\"H7858\"*, he|strong=\"H6213\"* will|strong=\"H4725\"* make|strong=\"H6213\"* a|strong=\"H3068\"* full|strong=\"H3617\"* end|strong=\"H3617\"* of|strong=\"H4725\"* her|strong=\"H6213\"* place|strong=\"H4725\"*, and|strong=\"H6213\"* will|strong=\"H4725\"* pursue|strong=\"H7291\"* his|strong=\"H6213\"* enemies into|strong=\"H6213\"* darkness|strong=\"H2822\"*." + }, + { + "verseNum": 9, + "text": "What|strong=\"H4100\"* do|strong=\"H6213\"* you|strong=\"H6213\"* plot|strong=\"H2803\"* against|strong=\"H6965\"* Yahweh|strong=\"H3068\"*? He|strong=\"H1931\"* will|strong=\"H3068\"* make|strong=\"H6213\"* a|strong=\"H3068\"* full|strong=\"H3617\"* end|strong=\"H3617\"*. Affliction|strong=\"H6869\"* won’t rise|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H6213\"* second time|strong=\"H6471\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* entangled|strong=\"H5440\"* like|strong=\"H5704\"* thorns|strong=\"H5518\"*, and|strong=\"H5704\"* drunken|strong=\"H5433\"* as|strong=\"H5704\"* with|strong=\"H4390\"* their|strong=\"H4390\"* drink|strong=\"H5435\"*, they|strong=\"H3588\"* are|strong=\"H4390\"* consumed utterly|strong=\"H5704\"* like|strong=\"H5704\"* dry|strong=\"H3002\"* stubble|strong=\"H7179\"*." + }, + { + "verseNum": 11, + "text": "One|strong=\"H4480\"* has|strong=\"H3068\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* you|strong=\"H5921\"* who|strong=\"H3068\"* devises|strong=\"H2803\"* evil|strong=\"H7451\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* counsels wickedness|strong=\"H7451\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Though they|strong=\"H3651\"* are|strong=\"H3068\"* in|strong=\"H3068\"* full|strong=\"H8003\"* strength and|strong=\"H3068\"* likewise|strong=\"H3651\"* many|strong=\"H7227\"*, even|strong=\"H5750\"* so|strong=\"H3651\"* they|strong=\"H3651\"* will|strong=\"H3068\"* be|strong=\"H3808\"* cut|strong=\"H1494\"* down|strong=\"H1494\"* and|strong=\"H3068\"* pass|strong=\"H5674\"* away|strong=\"H5674\"*. Though I|strong=\"H3541\"* have|strong=\"H3068\"* afflicted|strong=\"H6031\"* you|strong=\"H3808\"*, I|strong=\"H3541\"* will|strong=\"H3068\"* afflict|strong=\"H6031\"* you|strong=\"H3808\"* no|strong=\"H3808\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"H6258\"* I|strong=\"H5921\"* will break|strong=\"H7665\"* his|strong=\"H5921\"* yoke|strong=\"H4132\"* from|strong=\"H5921\"* off|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H7665\"* will burst|strong=\"H5423\"* your|strong=\"H5921\"* bonds|strong=\"H4147\"* apart|strong=\"H5423\"*.”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* concerning|strong=\"H5921\"* you|strong=\"H3588\"*: “No|strong=\"H3808\"* more|strong=\"H5750\"* descendants will|strong=\"H3068\"* bear your|strong=\"H3068\"* name|strong=\"H8034\"*. Out|strong=\"H5921\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* your|strong=\"H3068\"* gods, I|strong=\"H3588\"* will|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H5921\"* engraved image|strong=\"H6459\"* and|strong=\"H3068\"* the|strong=\"H5921\"* molten|strong=\"H4541\"* image|strong=\"H6459\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H7760\"* your|strong=\"H3068\"* grave|strong=\"H6913\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3068\"* vile|strong=\"H7043\"*.”" + }, + { + "verseNum": 15, + "text": "Behold,+ 1:15 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* on the mountains the feet of him who brings good news, who publishes peace! Keep your feasts, Judah! Perform your vows, for the wicked one will no more pass through you. He is utterly cut off." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H3588\"* who|strong=\"H3605\"* dashes in|strong=\"H5921\"* pieces has|strong=\"H3063\"* come|strong=\"H5674\"* up|strong=\"H5921\"* against|strong=\"H5921\"* you|strong=\"H3588\"*. Keep|strong=\"H2287\"* the|strong=\"H3605\"* fortress! Watch|strong=\"H2009\"* the|strong=\"H3605\"* way|strong=\"H5674\"*! Strengthen your|strong=\"H3605\"* waist! Fortify your|strong=\"H3605\"* power mightily!" + }, + { + "verseNum": 2, + "text": "For|strong=\"H5921\"* Yahweh|strong=\"H3068\"* restores the|strong=\"H6440\"* excellency of|strong=\"H6440\"* Jacob as|strong=\"H5927\"* the|strong=\"H6440\"* excellency of|strong=\"H6440\"* Israel, for|strong=\"H5921\"* the|strong=\"H6440\"* destroyers have|strong=\"H5921\"* destroyed them|strong=\"H5921\"* and|strong=\"H6440\"* ruined their|strong=\"H6440\"* vine branches." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3588\"* shield of|strong=\"H3068\"* his|strong=\"H3068\"* mighty men|strong=\"H3478\"* is|strong=\"H3068\"* made|strong=\"H7725\"* red. The|strong=\"H3588\"* valiant men|strong=\"H3478\"* are|strong=\"H3478\"* in|strong=\"H3478\"* scarlet. The|strong=\"H3588\"* chariots flash with|strong=\"H3068\"* steel in|strong=\"H3478\"* the|strong=\"H3588\"* day of|strong=\"H3068\"* his|strong=\"H3068\"* preparation, and|strong=\"H3478\"* the|strong=\"H3588\"* pine spears are|strong=\"H3478\"* brandished." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3117\"* chariots|strong=\"H7393\"* rage in|strong=\"H3117\"* the|strong=\"H3117\"* streets. They|strong=\"H3117\"* rush back and|strong=\"H3117\"* forth|strong=\"H3559\"* in|strong=\"H3117\"* the|strong=\"H3117\"* wide ways. Their|strong=\"H3559\"* appearance is|strong=\"H3117\"* like|strong=\"H4043\"* torches|strong=\"H6393\"*. They|strong=\"H3117\"* run like|strong=\"H4043\"* the|strong=\"H3117\"* lightnings." + }, + { + "verseNum": 5, + "text": "He|strong=\"H2351\"* summons his|strong=\"H1984\"* picked troops. They|strong=\"H7323\"* stumble on|strong=\"H7323\"* their|strong=\"H1984\"* way. They|strong=\"H7323\"* dash|strong=\"H7323\"* to|strong=\"H7323\"* its|strong=\"H1984\"* wall, and|strong=\"H7393\"* the|strong=\"H1984\"* protective shield is|strong=\"H4758\"* put in|strong=\"H7393\"* place." + }, + { + "verseNum": 6, + "text": "The|strong=\"H2142\"* gates of|strong=\"H2346\"* the|strong=\"H2142\"* rivers are|strong=\"H3782\"* opened, and|strong=\"H4116\"* the|strong=\"H2142\"* palace is dissolved." + }, + { + "verseNum": 7, + "text": "It|strong=\"H4127\"* is|strong=\"H5104\"* decreed: she is|strong=\"H5104\"* uncovered, she is|strong=\"H5104\"* carried away|strong=\"H4127\"*; and|strong=\"H8179\"* her|strong=\"H6605\"* servants moan as|strong=\"H8179\"* with|strong=\"H4127\"* the|strong=\"H6605\"* voice of|strong=\"H8179\"* doves, beating on|strong=\"H5104\"* their breasts." + }, + { + "verseNum": 8, + "text": "But|strong=\"H5921\"* Nineveh|strong=\"H5324\"* has been|strong=\"H5927\"* from|strong=\"H5921\"* of|strong=\"H6963\"* old like|strong=\"H5927\"* a|strong=\"H3068\"* pool of|strong=\"H6963\"* water, yet|strong=\"H5927\"* they|strong=\"H5921\"* flee away|strong=\"H1540\"*. “Stop! Stop!” they|strong=\"H5921\"* cry|strong=\"H6963\"*, but|strong=\"H5921\"* no|strong=\"H5927\"* one|strong=\"H5324\"* looks back|strong=\"H5927\"*." + }, + { + "verseNum": 9, + "text": "Take|strong=\"H5975\"* the|strong=\"H3117\"* plunder of|strong=\"H3117\"* silver. Take|strong=\"H5975\"* the|strong=\"H3117\"* plunder of|strong=\"H3117\"* gold, for|strong=\"H4325\"* there|strong=\"H1992\"* is|strong=\"H1931\"* no|strong=\"H5975\"* end of|strong=\"H3117\"* treasure, an abundance of|strong=\"H3117\"* every|strong=\"H5127\"* precious thing|strong=\"H1931\"*." + }, + { + "verseNum": 10, + "text": "She|strong=\"H3627\"* is|strong=\"H3701\"* empty, void, and|strong=\"H3701\"* waste. The|strong=\"H3605\"* heart melts, the|strong=\"H3605\"* knees knock together, their|strong=\"H3605\"* bodies and|strong=\"H3701\"* faces have|strong=\"H3605\"* grown pale." + }, + { + "verseNum": 11, + "text": "Where is|strong=\"H3820\"* the|strong=\"H3605\"* den of|strong=\"H6440\"* the|strong=\"H3605\"* lions, and|strong=\"H6440\"* the|strong=\"H3605\"* feeding place|strong=\"H3605\"* of|strong=\"H6440\"* the|strong=\"H3605\"* young lions, where the|strong=\"H3605\"* lion and|strong=\"H6440\"* the|strong=\"H3605\"* lioness walked with|strong=\"H6440\"* the|strong=\"H3605\"* lion’s cubs, and|strong=\"H6440\"* no|strong=\"H3605\"* one|strong=\"H3605\"* made|strong=\"H3605\"* them|strong=\"H6440\"* afraid?" + }, + { + "verseNum": 12, + "text": "The|strong=\"H8033\"* lion|strong=\"H3715\"* tore in|strong=\"H1980\"* pieces enough for|strong=\"H8033\"* his|strong=\"H1980\"* cubs|strong=\"H1482\"*, and|strong=\"H1980\"* strangled prey for|strong=\"H8033\"* his|strong=\"H1980\"* lionesses|strong=\"H3833\"*, and|strong=\"H1980\"* filled his|strong=\"H1980\"* caves with|strong=\"H1980\"* the|strong=\"H8033\"* kill and|strong=\"H1980\"* his|strong=\"H1980\"* dens with|strong=\"H1980\"* prey." + }, + { + "verseNum": 13, + "text": "“Behold, I|strong=\"H1767\"* am against you|strong=\"H1767\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H4390\"* Armies, “and|strong=\"H3833\"* I|strong=\"H1767\"* will burn her|strong=\"H4390\"* chariots in|strong=\"H2963\"* the|strong=\"H4390\"* smoke, and|strong=\"H3833\"* the|strong=\"H4390\"* sword will devour your|strong=\"H4390\"* young|strong=\"H3833\"* lions|strong=\"H3833\"*; and|strong=\"H3833\"* I|strong=\"H1767\"* will cut off your|strong=\"H4390\"* prey|strong=\"H2964\"* from|strong=\"H1767\"* the|strong=\"H4390\"* earth, and|strong=\"H3833\"* the|strong=\"H4390\"* voice of|strong=\"H4390\"* your|strong=\"H4390\"* messengers|strong=\"H4390\"* will no longer be heard.”" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Woe|strong=\"H1945\"* to|strong=\"H5892\"* the|strong=\"H3605\"* bloody|strong=\"H1818\"* city|strong=\"H5892\"*! It|strong=\"H3808\"* is|strong=\"H3605\"* all|strong=\"H3605\"* full|strong=\"H3605\"* of|strong=\"H5892\"* lies|strong=\"H3585\"* and|strong=\"H5892\"* robbery|strong=\"H6563\"*—no|strong=\"H3808\"* end to|strong=\"H5892\"* the|strong=\"H3605\"* prey|strong=\"H2964\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H6963\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H6963\"* whip|strong=\"H7752\"*, the|strong=\"H6963\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H6963\"* rattling|strong=\"H7494\"* of|strong=\"H6963\"* wheels, prancing horses|strong=\"H5483\"*, and|strong=\"H6963\"* bounding|strong=\"H7540\"* chariots|strong=\"H4818\"*," + }, + { + "verseNum": 3, + "text": "the|strong=\"H5927\"* horseman|strong=\"H6571\"* charging|strong=\"H5927\"*, and|strong=\"H2719\"* the|strong=\"H5927\"* flashing|strong=\"H3851\"* sword|strong=\"H2719\"*, the|strong=\"H5927\"* glittering|strong=\"H1300\"* spear|strong=\"H2595\"*, and|strong=\"H2719\"* a|strong=\"H3068\"* multitude|strong=\"H7230\"* of|strong=\"H7230\"* slain|strong=\"H2491\"*, and|strong=\"H2719\"* a|strong=\"H3068\"* great|strong=\"H7230\"* heap of|strong=\"H7230\"* corpses|strong=\"H6297\"*, and|strong=\"H2719\"* there|strong=\"H5927\"* is|strong=\"H2719\"* no|strong=\"H5927\"* end|strong=\"H7097\"* of|strong=\"H7230\"* the|strong=\"H5927\"* bodies|strong=\"H6297\"*. They|strong=\"H2719\"* stumble|strong=\"H3782\"* on|strong=\"H5927\"* their|strong=\"H5927\"* bodies|strong=\"H6297\"*" + }, + { + "verseNum": 4, + "text": "because|strong=\"H7230\"* of|strong=\"H4940\"* the|strong=\"H2181\"* multitude|strong=\"H7230\"* of|strong=\"H4940\"* the|strong=\"H2181\"* prostitution of|strong=\"H4940\"* the|strong=\"H2181\"* alluring prostitute|strong=\"H2181\"*, the|strong=\"H2181\"* mistress|strong=\"H1172\"* of|strong=\"H4940\"* witchcraft, who|strong=\"H2896\"* sells|strong=\"H4376\"* nations|strong=\"H1471\"* through her prostitution, and|strong=\"H1471\"* families|strong=\"H4940\"* through her witchcraft." + }, + { + "verseNum": 5, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H3068\"* against|strong=\"H5921\"* you|strong=\"H6440\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, “and|strong=\"H3068\"* I|strong=\"H2005\"* will|strong=\"H3068\"* lift|strong=\"H3068\"* your|strong=\"H3068\"* skirts|strong=\"H7757\"* over|strong=\"H5921\"* your|strong=\"H3068\"* face|strong=\"H6440\"*. I|strong=\"H2005\"* will|strong=\"H3068\"* show|strong=\"H7200\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* your|strong=\"H3068\"* nakedness|strong=\"H4626\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* kingdoms|strong=\"H4467\"* your|strong=\"H3068\"* shame|strong=\"H7036\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H5921\"* will throw|strong=\"H7993\"* abominable|strong=\"H8251\"* filth|strong=\"H8251\"* on|strong=\"H5921\"* you|strong=\"H5921\"* and|strong=\"H8251\"* make|strong=\"H7760\"* you|strong=\"H5921\"* vile|strong=\"H5034\"*, and|strong=\"H8251\"* will make|strong=\"H7760\"* you|strong=\"H5921\"* a|strong=\"H3068\"* spectacle|strong=\"H7210\"*." + }, + { + "verseNum": 7, + "text": "It|strong=\"H7200\"* will|strong=\"H4310\"* happen|strong=\"H1961\"* that|strong=\"H7200\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H4310\"* look|strong=\"H7200\"* at|strong=\"H7200\"* you|strong=\"H3605\"* will|strong=\"H4310\"* flee|strong=\"H5074\"* from|strong=\"H4480\"* you|strong=\"H3605\"*, and|strong=\"H7200\"* say, ‘Nineveh|strong=\"H5210\"* is|strong=\"H4310\"* laid waste|strong=\"H7703\"*! Who|strong=\"H4310\"* will|strong=\"H4310\"* mourn|strong=\"H5110\"* for|strong=\"H1245\"* her|strong=\"H3605\"*?’ Where|strong=\"H4480\"* will|strong=\"H4310\"* I|strong=\"H7200\"* seek|strong=\"H1245\"* comforters|strong=\"H5162\"* for|strong=\"H1245\"* you|strong=\"H3605\"*?”" + }, + { + "verseNum": 8, + "text": "Are|strong=\"H4325\"* you|strong=\"H3190\"* better|strong=\"H3190\"* than|strong=\"H3190\"* No-Amon|strong=\"H4996\"*,+ 3:8 or, Thebes* who|strong=\"H3427\"* was|strong=\"H4325\"* situated|strong=\"H3427\"* among|strong=\"H3427\"* the|strong=\"H5439\"* rivers|strong=\"H2975\"*,+ 3:8 or, Nile* who|strong=\"H3427\"* had|strong=\"H4325\"* the|strong=\"H5439\"* waters|strong=\"H4325\"* around|strong=\"H5439\"* her|strong=\"H5439\"*, whose rampart|strong=\"H2426\"* was|strong=\"H4325\"* the|strong=\"H5439\"* sea|strong=\"H3220\"*, and|strong=\"H3427\"* her|strong=\"H5439\"* wall|strong=\"H2346\"* was|strong=\"H4325\"* of|strong=\"H3427\"* the|strong=\"H5439\"* sea|strong=\"H3220\"*?" + }, + { + "verseNum": 9, + "text": "Cush|strong=\"H3568\"* and|strong=\"H4714\"* Egypt|strong=\"H4714\"* were|strong=\"H1961\"* her|strong=\"H1961\"* boundless strength|strong=\"H6109\"*. Put|strong=\"H6316\"* and|strong=\"H4714\"* Libya|strong=\"H6316\"* were|strong=\"H1961\"* her|strong=\"H1961\"* helpers|strong=\"H5833\"*." + }, + { + "verseNum": 10, + "text": "Yet|strong=\"H1571\"* was|strong=\"H1931\"* she|strong=\"H1931\"* carried|strong=\"H1980\"* away|strong=\"H1980\"*. She|strong=\"H1931\"* went|strong=\"H1980\"* into|strong=\"H1980\"* captivity|strong=\"H7628\"*. Her|strong=\"H3605\"* young children|strong=\"H5768\"* also|strong=\"H1571\"* were|strong=\"H1419\"* dashed|strong=\"H7376\"* in|strong=\"H5921\"* pieces|strong=\"H7376\"* at|strong=\"H5921\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H7218\"* all|strong=\"H3605\"* the|strong=\"H3605\"* streets|strong=\"H2351\"*, and|strong=\"H1980\"* they|strong=\"H5921\"* cast|strong=\"H3032\"* lots|strong=\"H1486\"* for|strong=\"H5921\"* her|strong=\"H3605\"* honorable|strong=\"H3513\"* men|strong=\"H1419\"*, and|strong=\"H1980\"* all|strong=\"H3605\"* her|strong=\"H3605\"* great|strong=\"H1419\"* men|strong=\"H1419\"* were|strong=\"H1419\"* bound|strong=\"H7576\"* in|strong=\"H5921\"* chains|strong=\"H2131\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H1571\"* also|strong=\"H1571\"* will|strong=\"H1961\"* be|strong=\"H1961\"* drunken|strong=\"H7937\"*. You|strong=\"H1571\"* will|strong=\"H1961\"* be|strong=\"H1961\"* hidden|strong=\"H5956\"*. You|strong=\"H1571\"* also|strong=\"H1571\"* will|strong=\"H1961\"* seek|strong=\"H1245\"* a|strong=\"H3068\"* stronghold|strong=\"H4581\"* because of|strong=\"H4581\"* the|strong=\"H1245\"* enemy." + }, + { + "verseNum": 12, + "text": "All|strong=\"H3605\"* your|strong=\"H3605\"* fortresses|strong=\"H4013\"* will|strong=\"H5307\"* be|strong=\"H6310\"* like|strong=\"H5973\"* fig|strong=\"H8384\"* trees|strong=\"H8384\"* with|strong=\"H5973\"* the|strong=\"H3605\"* first-ripe figs|strong=\"H8384\"*. If they|strong=\"H5921\"* are|strong=\"H6310\"* shaken|strong=\"H5128\"*, they|strong=\"H5921\"* fall|strong=\"H5307\"* into|strong=\"H5307\"* the|strong=\"H3605\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H3605\"* eater." + }, + { + "verseNum": 13, + "text": "Behold|strong=\"H2009\"*, your|strong=\"H6605\"* troops|strong=\"H5971\"* among|strong=\"H7130\"* you|strong=\"H7130\"* are|strong=\"H5971\"* women. The|strong=\"H7130\"* gates|strong=\"H8179\"* of|strong=\"H8179\"* your|strong=\"H6605\"* land|strong=\"H7130\"* are|strong=\"H5971\"* set|strong=\"H6605\"* wide|strong=\"H6605\"* open|strong=\"H6605\"* to|strong=\"H5971\"* your|strong=\"H6605\"* enemies. The|strong=\"H7130\"* fire has|strong=\"H2009\"* devoured your|strong=\"H6605\"* bars|strong=\"H1280\"*." + }, + { + "verseNum": 14, + "text": "Draw|strong=\"H7579\"* water|strong=\"H4325\"* for|strong=\"H4325\"* the|strong=\"H2388\"* siege|strong=\"H4692\"*. Strengthen|strong=\"H2388\"* your|strong=\"H2388\"* fortresses|strong=\"H4013\"*. Go into|strong=\"H4325\"* the|strong=\"H2388\"* clay|strong=\"H2563\"*, and|strong=\"H2388\"* tread|strong=\"H7429\"* the|strong=\"H2388\"* mortar|strong=\"H2563\"*. Make|strong=\"H2388\"* the|strong=\"H2388\"* brick|strong=\"H4404\"* kiln strong|strong=\"H2388\"*." + }, + { + "verseNum": 15, + "text": "There|strong=\"H8033\"* the|strong=\"H3772\"* fire will|strong=\"H2719\"* devour you|strong=\"H3772\"*. The|strong=\"H3772\"* sword|strong=\"H2719\"* will|strong=\"H2719\"* cut|strong=\"H3772\"* you|strong=\"H3772\"* off|strong=\"H3772\"*. It|strong=\"H8033\"* will|strong=\"H2719\"* devour you|strong=\"H3772\"* like|strong=\"H8033\"* the|strong=\"H3772\"* grasshopper. Multiply|strong=\"H3513\"* like|strong=\"H8033\"* grasshoppers|strong=\"H3218\"*. Multiply|strong=\"H3513\"* like|strong=\"H8033\"* the|strong=\"H3772\"* locust|strong=\"H3218\"*." + }, + { + "verseNum": 16, + "text": "You|strong=\"H7235\"* have increased|strong=\"H7235\"* your|strong=\"H7235\"* merchants|strong=\"H7402\"* more|strong=\"H7235\"* than|strong=\"H7235\"* the|strong=\"H6584\"* stars|strong=\"H3556\"* of|strong=\"H3556\"* the|strong=\"H6584\"* skies. The|strong=\"H6584\"* grasshopper strips|strong=\"H6584\"* and|strong=\"H8064\"* flees away|strong=\"H5774\"*." + }, + { + "verseNum": 17, + "text": "Your|strong=\"H3045\"* guards|strong=\"H3045\"* are|strong=\"H3117\"* like|strong=\"H3808\"* the|strong=\"H3117\"* locusts|strong=\"H1462\"*, and|strong=\"H3117\"* your|strong=\"H3045\"* officials like|strong=\"H3808\"* the|strong=\"H3117\"* swarms of|strong=\"H3117\"* locusts|strong=\"H1462\"*, which|strong=\"H4725\"* settle on|strong=\"H3117\"* the|strong=\"H3117\"* walls|strong=\"H1448\"* on|strong=\"H3117\"* a|strong=\"H3068\"* cold|strong=\"H7135\"* day|strong=\"H3117\"*, but|strong=\"H3808\"* when|strong=\"H3117\"* the|strong=\"H3117\"* sun|strong=\"H8121\"* appears, they|strong=\"H3117\"* flee|strong=\"H5074\"* away|strong=\"H5074\"*, and|strong=\"H3117\"* their|strong=\"H3045\"* place|strong=\"H4725\"* is|strong=\"H3117\"* not|strong=\"H3808\"* known|strong=\"H3045\"* where|strong=\"H4725\"* they|strong=\"H3117\"* are|strong=\"H3117\"*." + }, + { + "verseNum": 18, + "text": "Your|strong=\"H5921\"* shepherds|strong=\"H7462\"* slumber|strong=\"H5123\"*, king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria. Your|strong=\"H5921\"* nobles lie|strong=\"H7931\"* down|strong=\"H7931\"*. Your|strong=\"H5921\"* people|strong=\"H5971\"* are|strong=\"H5971\"* scattered|strong=\"H6335\"* on|strong=\"H5921\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"*, and|strong=\"H4428\"* there|strong=\"H2022\"* is|strong=\"H4428\"* no one|strong=\"H4428\"* to|strong=\"H5921\"* gather|strong=\"H6908\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "There|strong=\"H3605\"* is|strong=\"H4310\"* no|strong=\"H3808\"* healing|strong=\"H3545\"* your|strong=\"H3605\"* wound|strong=\"H4347\"*, for|strong=\"H3588\"* your|strong=\"H3605\"* injury|strong=\"H7667\"* is|strong=\"H4310\"* fatal. All|strong=\"H3605\"* who|strong=\"H4310\"* hear|strong=\"H8085\"* the|strong=\"H3605\"* report|strong=\"H8088\"* of|strong=\"H3709\"* you|strong=\"H3588\"* clap|strong=\"H8628\"* their|strong=\"H3605\"* hands|strong=\"H3709\"* over|strong=\"H5921\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* who|strong=\"H4310\"* hasn’t felt your|strong=\"H3605\"* endless cruelty|strong=\"H7451\"*?" + } + ] + } + ] + }, + { + "name": "Habakkuk", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H2372\"* revelation which|strong=\"H5030\"* Habakkuk|strong=\"H2265\"* the|strong=\"H2372\"* prophet|strong=\"H5030\"* saw|strong=\"H2372\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"*,+ 1:2 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* how|strong=\"H5704\"* long|strong=\"H5704\"* will|strong=\"H3068\"* I|strong=\"H5704\"* cry|strong=\"H2199\"*, and|strong=\"H3068\"* you|strong=\"H5704\"* will|strong=\"H3068\"* not|strong=\"H3808\"* hear|strong=\"H8085\"*? I|strong=\"H5704\"* cry|strong=\"H2199\"* out|strong=\"H2199\"* to|strong=\"H5704\"* you|strong=\"H5704\"* “Violence|strong=\"H2555\"*!” and|strong=\"H3068\"* will|strong=\"H3068\"* you|strong=\"H5704\"* not|strong=\"H3808\"* save|strong=\"H3467\"*?" + }, + { + "verseNum": 3, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H4100\"* show|strong=\"H7200\"* me|strong=\"H7200\"* iniquity|strong=\"H5999\"*, and|strong=\"H7200\"* look|strong=\"H7200\"* at|strong=\"H7200\"* perversity? For|strong=\"H1961\"* destruction|strong=\"H7701\"* and|strong=\"H7200\"* violence|strong=\"H2555\"* are|strong=\"H4100\"* before|strong=\"H5048\"* me|strong=\"H7200\"*. There|strong=\"H1961\"* is|strong=\"H4100\"* strife|strong=\"H7379\"*, and|strong=\"H7200\"* contention|strong=\"H4066\"* rises up|strong=\"H5375\"*." + }, + { + "verseNum": 4, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5921\"* law|strong=\"H8451\"* is|strong=\"H7563\"* paralyzed, and|strong=\"H4941\"* justice|strong=\"H4941\"* never|strong=\"H3808\"* prevails; for|strong=\"H3588\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* surround|strong=\"H3803\"* the|strong=\"H5921\"* righteous|strong=\"H6662\"*; therefore|strong=\"H3651\"* justice|strong=\"H4941\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* perverted|strong=\"H6127\"*." + }, + { + "verseNum": 5, + "text": "“Look|strong=\"H7200\"* among|strong=\"H7200\"* the|strong=\"H7200\"* nations|strong=\"H1471\"*, watch|strong=\"H7200\"*, and|strong=\"H3117\"* wonder|strong=\"H8539\"* marvelously; for|strong=\"H3588\"* I|strong=\"H3588\"* am working|strong=\"H6466\"* a|strong=\"H3068\"* work|strong=\"H6467\"* in|strong=\"H3117\"* your|strong=\"H7200\"* days|strong=\"H3117\"* which|strong=\"H1471\"* you|strong=\"H3588\"* will|strong=\"H1471\"* not|strong=\"H3808\"* believe though|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3117\"* told|strong=\"H5608\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2005\"*,+ 1:6 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"H3588\"* am|strong=\"H1980\"* raising|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H3588\"* Chaldeans|strong=\"H3778\"*, that|strong=\"H3588\"* bitter|strong=\"H4751\"* and|strong=\"H1980\"* hasty|strong=\"H4116\"* nation|strong=\"H1471\"* who|strong=\"H3588\"* march|strong=\"H1980\"* through|strong=\"H1980\"* the|strong=\"H3588\"* width of|strong=\"H4908\"* the|strong=\"H3588\"* earth, to|strong=\"H1980\"* possess|strong=\"H3423\"* dwelling|strong=\"H4908\"* places|strong=\"H4908\"* that|strong=\"H3588\"* are|strong=\"H1471\"* not|strong=\"H3808\"* theirs." + }, + { + "verseNum": 7, + "text": "They|strong=\"H1931\"* are|strong=\"H4941\"* feared|strong=\"H3372\"* and|strong=\"H4941\"* dreaded. Their|strong=\"H3318\"* judgment|strong=\"H4941\"* and|strong=\"H4941\"* their|strong=\"H3318\"* dignity|strong=\"H7613\"* proceed|strong=\"H3318\"* from|strong=\"H4480\"* themselves." + }, + { + "verseNum": 8, + "text": "Their|strong=\"H7043\"* horses|strong=\"H5483\"* also are|strong=\"H5483\"* swifter|strong=\"H7043\"* than|strong=\"H7043\"* leopards|strong=\"H5246\"*, and|strong=\"H5483\"* are|strong=\"H5483\"* more fierce|strong=\"H2300\"* than|strong=\"H7043\"* the|strong=\"H7043\"* evening|strong=\"H6153\"* wolves|strong=\"H2061\"*. Their|strong=\"H7043\"* horsemen|strong=\"H6571\"* press proudly on|strong=\"H5483\"*. Yes, their|strong=\"H7043\"* horsemen|strong=\"H6571\"* come|strong=\"H7350\"* from|strong=\"H7350\"* afar|strong=\"H7350\"*. They fly|strong=\"H5774\"* as|strong=\"H6153\"* an eagle|strong=\"H5404\"* that|strong=\"H6153\"* hurries to|strong=\"H2363\"* devour." + }, + { + "verseNum": 9, + "text": "All|strong=\"H3605\"* of|strong=\"H6440\"* them|strong=\"H6440\"* come for|strong=\"H6440\"* violence|strong=\"H2555\"*. Their|strong=\"H3605\"* hordes face|strong=\"H6440\"* forward|strong=\"H6440\"*. They|strong=\"H3605\"* gather prisoners|strong=\"H7628\"* like|strong=\"H6440\"* sand|strong=\"H2344\"*." + }, + { + "verseNum": 10, + "text": "Yes, they|strong=\"H1931\"* scoff|strong=\"H7046\"* at|strong=\"H4428\"* kings|strong=\"H4428\"*, and|strong=\"H4428\"* princes|strong=\"H7336\"* are|strong=\"H4428\"* a|strong=\"H3068\"* derision|strong=\"H7832\"* to|strong=\"H4428\"* them|strong=\"H1931\"*. They|strong=\"H1931\"* laugh|strong=\"H7832\"* at|strong=\"H4428\"* every|strong=\"H3605\"* stronghold, for|strong=\"H4428\"* they|strong=\"H1931\"* build up|strong=\"H6651\"* an|strong=\"H4428\"* earthen ramp and|strong=\"H4428\"* take|strong=\"H3920\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H5674\"* they|strong=\"H2098\"* sweep|strong=\"H2498\"* by|strong=\"H5674\"* like|strong=\"H7307\"* the|strong=\"H5674\"* wind|strong=\"H7307\"* and|strong=\"H5674\"* go|strong=\"H5674\"* on|strong=\"H5674\"*. They|strong=\"H2098\"* are indeed guilty, whose|strong=\"H2098\"* strength|strong=\"H3581\"* is|strong=\"H7307\"* their god.”" + }, + { + "verseNum": 12, + "text": "Aren’t you|strong=\"H7760\"* from|strong=\"H3068\"* everlasting|strong=\"H6924\"*, Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*,+ 1:12 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* my|strong=\"H3068\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"*? We|strong=\"H4191\"* will|strong=\"H3068\"* not|strong=\"H3808\"* die|strong=\"H4191\"*. Yahweh|strong=\"H3068\"*, you|strong=\"H7760\"* have|strong=\"H3068\"* appointed|strong=\"H7760\"* them|strong=\"H7760\"* for|strong=\"H3068\"* judgment|strong=\"H4941\"*. You|strong=\"H7760\"*, Rock|strong=\"H6697\"*, have|strong=\"H3068\"* established|strong=\"H3245\"* him|strong=\"H7760\"* to|strong=\"H4191\"* punish|strong=\"H3198\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H3808\"* who|strong=\"H6662\"* have|strong=\"H5869\"* purer eyes|strong=\"H5869\"* than|strong=\"H4480\"* to|strong=\"H3201\"* see|strong=\"H7200\"* evil|strong=\"H7451\"*, and|strong=\"H5869\"* who|strong=\"H6662\"* cannot|strong=\"H3808\"* look|strong=\"H7200\"* on|strong=\"H7200\"* perversity, why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3808\"* tolerate|strong=\"H3201\"* those|strong=\"H4480\"* who|strong=\"H6662\"* deal treacherously and|strong=\"H5869\"* keep|strong=\"H2790\"* silent|strong=\"H2790\"* when|strong=\"H7200\"* the|strong=\"H7200\"* wicked|strong=\"H7563\"* swallows|strong=\"H1104\"* up|strong=\"H1104\"* the|strong=\"H7200\"* man|strong=\"H7563\"* who|strong=\"H6662\"* is|strong=\"H4100\"* more|strong=\"H4480\"* righteous|strong=\"H6662\"* than|strong=\"H4480\"* he|strong=\"H4480\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H6213\"* make|strong=\"H6213\"* men|strong=\"H6213\"* like|strong=\"H3808\"* the|strong=\"H6213\"* fish|strong=\"H1709\"* of|strong=\"H3220\"* the|strong=\"H6213\"* sea|strong=\"H3220\"*, like|strong=\"H3808\"* the|strong=\"H6213\"* creeping|strong=\"H7431\"* things|strong=\"H7431\"* that|strong=\"H7431\"* have|strong=\"H4910\"* no|strong=\"H3808\"* ruler|strong=\"H4910\"* over|strong=\"H4910\"* them|strong=\"H6213\"*?" + }, + { + "verseNum": 15, + "text": "He|strong=\"H3651\"* takes up|strong=\"H5927\"* all|strong=\"H3605\"* of|strong=\"H5921\"* them|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H3605\"* hook|strong=\"H2443\"*. He|strong=\"H3651\"* catches them|strong=\"H5921\"* in|strong=\"H5921\"* his|strong=\"H3605\"* net|strong=\"H2764\"* and|strong=\"H5927\"* gathers them|strong=\"H5921\"* in|strong=\"H5921\"* his|strong=\"H3605\"* dragnet. Therefore|strong=\"H3651\"* he|strong=\"H3651\"* rejoices|strong=\"H8055\"* and|strong=\"H5927\"* is|strong=\"H3651\"* glad|strong=\"H8055\"*." + }, + { + "verseNum": 16, + "text": "Therefore|strong=\"H3651\"* he|strong=\"H3588\"* sacrifices|strong=\"H6999\"* to|strong=\"H5921\"* his|strong=\"H5921\"* net|strong=\"H2764\"* and|strong=\"H2076\"* burns|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H5921\"* his|strong=\"H5921\"* dragnet, because|strong=\"H3588\"* by|strong=\"H5921\"* them|strong=\"H1992\"* his|strong=\"H5921\"* life is|strong=\"H3651\"* luxurious and|strong=\"H2076\"* his|strong=\"H5921\"* food|strong=\"H3978\"* is|strong=\"H3651\"* good." + }, + { + "verseNum": 17, + "text": "Will|strong=\"H1471\"* he|strong=\"H3651\"* therefore|strong=\"H3651\"* continually|strong=\"H8548\"* empty|strong=\"H7324\"* his|strong=\"H5921\"* net|strong=\"H2764\"*, and|strong=\"H1471\"* kill|strong=\"H2026\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* without|strong=\"H3808\"* mercy|strong=\"H2550\"*?" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H5921\"* will|strong=\"H4100\"* stand|strong=\"H5975\"* at|strong=\"H5921\"* my|strong=\"H7200\"* watch|strong=\"H6822\"* and|strong=\"H7725\"* set|strong=\"H5975\"* myself on|strong=\"H5921\"* the|strong=\"H5921\"* ramparts, and|strong=\"H7725\"* will|strong=\"H4100\"* look|strong=\"H7200\"* out|strong=\"H7200\"* to|strong=\"H1696\"* see|strong=\"H7200\"* what|strong=\"H4100\"* he|strong=\"H5921\"* will|strong=\"H4100\"* say|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7725\"*, and|strong=\"H7725\"* what|strong=\"H4100\"* I|strong=\"H5921\"* will|strong=\"H4100\"* answer|strong=\"H7725\"* concerning|strong=\"H5921\"* my|strong=\"H7200\"* complaint." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* answered|strong=\"H6030\"* me|strong=\"H5921\"*, “Write|strong=\"H3789\"* the|strong=\"H5921\"* vision|strong=\"H2377\"*, and|strong=\"H3068\"* make|strong=\"H7121\"* it|strong=\"H7121\"* plain on|strong=\"H5921\"* tablets|strong=\"H3871\"*, that|strong=\"H3068\"* he|strong=\"H3068\"* who|strong=\"H3068\"* runs|strong=\"H7323\"* may|strong=\"H3068\"* read|strong=\"H7121\"* it|strong=\"H7121\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* vision|strong=\"H2377\"* is|strong=\"H7093\"* yet|strong=\"H5750\"* for|strong=\"H3588\"* the|strong=\"H3588\"* appointed|strong=\"H4150\"* time|strong=\"H4150\"*, and|strong=\"H4150\"* it|strong=\"H3588\"* hurries toward the|strong=\"H3588\"* end|strong=\"H7093\"*, and|strong=\"H4150\"* won’t prove|strong=\"H3576\"* false|strong=\"H3576\"*. Though|strong=\"H3588\"* it|strong=\"H3588\"* takes time|strong=\"H4150\"*, wait|strong=\"H2442\"* for|strong=\"H3588\"* it|strong=\"H3588\"*, because|strong=\"H3588\"* it|strong=\"H3588\"* will|strong=\"H3808\"* surely|strong=\"H3588\"* come|strong=\"H5750\"*. It|strong=\"H3588\"* won’t delay|strong=\"H4102\"*." + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2009\"*, his|strong=\"H3808\"* soul|strong=\"H5315\"* is|strong=\"H5315\"* puffed up|strong=\"H6075\"*. It|strong=\"H3808\"* is|strong=\"H5315\"* not|strong=\"H3808\"* upright|strong=\"H3474\"* in|strong=\"H5315\"* him|strong=\"H5315\"*, but|strong=\"H3808\"* the|strong=\"H3808\"* righteous|strong=\"H6662\"* will|strong=\"H6662\"* live|strong=\"H2421\"* by|strong=\"H3808\"* his|strong=\"H3808\"* faith." + }, + { + "verseNum": 5, + "text": "Yes|strong=\"H3588\"*, moreover|strong=\"H3588\"*, wine|strong=\"H3196\"* is|strong=\"H1931\"* treacherous: an|strong=\"H3588\"* arrogant man|strong=\"H1397\"* who|strong=\"H3605\"* doesn’t stay|strong=\"H5115\"* at|strong=\"H6908\"* home|strong=\"H5115\"*, who|strong=\"H3605\"* enlarges|strong=\"H7337\"* his|strong=\"H3605\"* desire|strong=\"H5315\"* as|strong=\"H5315\"* Sheol|strong=\"H7585\"*;+ 2:5 Sheol is the place of the dead. * he|strong=\"H1931\"* is|strong=\"H1931\"* like|strong=\"H3808\"* death|strong=\"H4194\"* and|strong=\"H5971\"* can|strong=\"H4194\"*’t be|strong=\"H3808\"* satisfied|strong=\"H7646\"*, but|strong=\"H3588\"* gathers|strong=\"H6908\"* to|strong=\"H5315\"* himself|strong=\"H5315\"* all|strong=\"H3605\"* nations|strong=\"H1471\"* and|strong=\"H5971\"* heaps to|strong=\"H5315\"* himself|strong=\"H5315\"* all|strong=\"H3605\"* peoples|strong=\"H5971\"*." + }, + { + "verseNum": 6, + "text": "Won’t all|strong=\"H3605\"* these|strong=\"H3605\"* take|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* parable|strong=\"H4912\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H4912\"* a|strong=\"H3068\"* taunting|strong=\"H4426\"* proverb|strong=\"H4912\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H4912\"* say, ‘Woe|strong=\"H1945\"* to|strong=\"H5704\"* him|strong=\"H5921\"* who|strong=\"H3605\"* increases|strong=\"H7235\"* that|strong=\"H3605\"* which|strong=\"H3605\"* is|strong=\"H3605\"* not|strong=\"H3808\"* his|strong=\"H3605\"*, and|strong=\"H4912\"* who|strong=\"H3605\"* enriches himself|strong=\"H3513\"* by|strong=\"H5921\"* extortion! How|strong=\"H4970\"* long|strong=\"H5704\"*?’" + }, + { + "verseNum": 7, + "text": "Won’t your|strong=\"H3808\"* debtors rise|strong=\"H6965\"* up|strong=\"H6965\"* suddenly|strong=\"H6621\"*, and|strong=\"H6965\"* wake|strong=\"H6974\"* up|strong=\"H6965\"* those|strong=\"H1961\"* who|strong=\"H3808\"* make|strong=\"H6965\"* you|strong=\"H3808\"* tremble|strong=\"H2111\"*, and|strong=\"H6965\"* you|strong=\"H3808\"* will|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H1961\"* victim?" + }, + { + "verseNum": 8, + "text": "Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5971\"* plundered|strong=\"H7997\"* many|strong=\"H7227\"* nations|strong=\"H1471\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* remnant|strong=\"H3499\"* of|strong=\"H3427\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* will|strong=\"H1471\"* plunder|strong=\"H7997\"* you|strong=\"H3588\"* because|strong=\"H3588\"* of|strong=\"H3427\"* men|strong=\"H5971\"*’s blood|strong=\"H1818\"*, and|strong=\"H5971\"* for|strong=\"H3588\"* the|strong=\"H3605\"* violence|strong=\"H2555\"* done|strong=\"H3605\"* to|strong=\"H5971\"* the|strong=\"H3605\"* land, to|strong=\"H5971\"* the|strong=\"H3605\"* city|strong=\"H7151\"* and|strong=\"H5971\"* to|strong=\"H5971\"* all|strong=\"H3605\"* who|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 9, + "text": "Woe|strong=\"H1945\"* to|strong=\"H1004\"* him|strong=\"H7760\"* who|strong=\"H1945\"* gets|strong=\"H1214\"* an|strong=\"H7760\"* evil|strong=\"H7451\"* gain|strong=\"H1215\"* for|strong=\"H1004\"* his|strong=\"H7760\"* house|strong=\"H1004\"*, that|strong=\"H7451\"* he|strong=\"H1004\"* may|strong=\"H1004\"* set|strong=\"H7760\"* his|strong=\"H7760\"* nest|strong=\"H7064\"* on|strong=\"H7760\"* high|strong=\"H4791\"*, that|strong=\"H7451\"* he|strong=\"H1004\"* may|strong=\"H1004\"* be|strong=\"H1004\"* delivered|strong=\"H5337\"* from|strong=\"H5337\"* the|strong=\"H7760\"* hand|strong=\"H3709\"* of|strong=\"H1004\"* evil|strong=\"H7451\"*!" + }, + { + "verseNum": 10, + "text": "You|strong=\"H3289\"* have|strong=\"H5971\"* devised|strong=\"H3289\"* shame|strong=\"H1322\"* to|strong=\"H1004\"* your|strong=\"H5971\"* house|strong=\"H1004\"* by|strong=\"H2398\"* cutting|strong=\"H7096\"* off|strong=\"H7096\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"*, and|strong=\"H1004\"* have|strong=\"H5971\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* your|strong=\"H5971\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* stone will|strong=\"H2199\"* cry|strong=\"H2199\"* out|strong=\"H2199\"* of|strong=\"H6086\"* the|strong=\"H3588\"* wall|strong=\"H7023\"*, and|strong=\"H6030\"* the|strong=\"H3588\"* beam out|strong=\"H2199\"* of|strong=\"H6086\"* the|strong=\"H3588\"* woodwork will|strong=\"H2199\"* answer|strong=\"H6030\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 12, + "text": "Woe|strong=\"H1945\"* to|strong=\"H5892\"* him|strong=\"H3559\"* who|strong=\"H1945\"* builds|strong=\"H1129\"* a|strong=\"H3068\"* town|strong=\"H7151\"* with|strong=\"H5892\"* blood|strong=\"H1818\"*, and|strong=\"H5892\"* establishes|strong=\"H3559\"* a|strong=\"H3068\"* city|strong=\"H5892\"* by|strong=\"H3559\"* iniquity|strong=\"H5766\"*!" + }, + { + "verseNum": 13, + "text": "Behold|strong=\"H2009\"*, isn’t it|strong=\"H3808\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* that|strong=\"H5971\"* the|strong=\"H3068\"* peoples|strong=\"H5971\"* labor|strong=\"H3021\"* for|strong=\"H3068\"* the|strong=\"H3068\"* fire, and|strong=\"H3068\"* the|strong=\"H3068\"* nations|strong=\"H5971\"* weary|strong=\"H3021\"* themselves for|strong=\"H3068\"* vanity|strong=\"H7385\"*?" + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* earth will|strong=\"H3068\"* be|strong=\"H3068\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* the|strong=\"H5921\"* knowledge|strong=\"H3045\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"*, as|strong=\"H3068\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* cover|strong=\"H3680\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 15, + "text": "“Woe|strong=\"H1945\"* to|strong=\"H5921\"* him|strong=\"H5921\"* who|strong=\"H1945\"* gives his|strong=\"H5921\"* neighbor|strong=\"H7453\"* drink|strong=\"H8248\"*, pouring your|strong=\"H5921\"* inflaming wine until|strong=\"H5921\"* they|strong=\"H5921\"* are drunk|strong=\"H7937\"*, so|strong=\"H4616\"* that|strong=\"H4616\"* you|strong=\"H5921\"* may|strong=\"H4616\"* gaze|strong=\"H5027\"* at|strong=\"H5921\"* their|strong=\"H5921\"* naked bodies!" + }, + { + "verseNum": 16, + "text": "You|strong=\"H5921\"* are|strong=\"H3068\"* filled|strong=\"H7646\"* with|strong=\"H7646\"* shame|strong=\"H7036\"*, and|strong=\"H3068\"* not|strong=\"H1571\"* glory|strong=\"H3519\"*. You|strong=\"H5921\"* will|strong=\"H3068\"* also|strong=\"H1571\"* drink|strong=\"H8354\"* and|strong=\"H3068\"* be|strong=\"H3068\"* exposed! The|strong=\"H5921\"* cup|strong=\"H3563\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s right|strong=\"H3225\"* hand|strong=\"H3225\"* will|strong=\"H3068\"* come|strong=\"H5437\"* around|strong=\"H5437\"* to|strong=\"H3068\"* you|strong=\"H5921\"*, and|strong=\"H3068\"* disgrace|strong=\"H7036\"* will|strong=\"H3068\"* cover your|strong=\"H3068\"* glory|strong=\"H3519\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* violence|strong=\"H2555\"* done|strong=\"H3605\"* to|strong=\"H3427\"* Lebanon|strong=\"H3844\"* will|strong=\"H3844\"* overwhelm|strong=\"H3680\"* you|strong=\"H3588\"*, and|strong=\"H1818\"* the|strong=\"H3605\"* destruction|strong=\"H7701\"* of|strong=\"H3427\"* the|strong=\"H3605\"* animals will|strong=\"H3844\"* terrify|strong=\"H2865\"* you|strong=\"H3588\"*, because|strong=\"H3588\"* of|strong=\"H3427\"* men|strong=\"H3605\"*’s blood|strong=\"H1818\"* and|strong=\"H1818\"* for|strong=\"H3588\"* the|strong=\"H3605\"* violence|strong=\"H2555\"* done|strong=\"H3605\"* to|strong=\"H3427\"* the|strong=\"H3605\"* land, to|strong=\"H3427\"* every|strong=\"H3605\"* city|strong=\"H7151\"* and|strong=\"H1818\"* to|strong=\"H3427\"* those|strong=\"H3605\"* who|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* them|strong=\"H3427\"*." + }, + { + "verseNum": 18, + "text": "“What|strong=\"H4100\"* value|strong=\"H3276\"* does|strong=\"H6213\"* the|strong=\"H5921\"* engraved image|strong=\"H6459\"* have|strong=\"H3588\"*, that|strong=\"H3588\"* its|strong=\"H5921\"* maker|strong=\"H6213\"* has|strong=\"H4100\"* engraved it|strong=\"H5921\"*; the|strong=\"H5921\"* molten|strong=\"H4541\"* image|strong=\"H6459\"*, even|strong=\"H3588\"* the|strong=\"H5921\"* teacher|strong=\"H3384\"* of|strong=\"H5921\"* lies|strong=\"H8267\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H3588\"* fashions|strong=\"H3335\"* its|strong=\"H5921\"* form|strong=\"H3335\"* trusts in|strong=\"H5921\"* it|strong=\"H5921\"*, to|strong=\"H5921\"* make|strong=\"H6213\"* mute idols|strong=\"H6459\"*?" + }, + { + "verseNum": 19, + "text": "Woe|strong=\"H1945\"* to|strong=\"H7307\"* him|strong=\"H1931\"* who|strong=\"H3605\"* says|strong=\"H1748\"* to|strong=\"H7307\"* the|strong=\"H3605\"* wood|strong=\"H6086\"*, ‘Awake|strong=\"H5782\"*!’ or|strong=\"H3701\"* to|strong=\"H7307\"* the|strong=\"H3605\"* mute|strong=\"H1748\"* stone, ‘Arise|strong=\"H5782\"*!’ Shall|strong=\"H1931\"* this|strong=\"H1931\"* teach|strong=\"H3384\"*? Behold|strong=\"H2009\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* overlaid|strong=\"H8610\"* with|strong=\"H3605\"* gold|strong=\"H2091\"* and|strong=\"H3701\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* there|strong=\"H2009\"* is|strong=\"H1931\"* no|strong=\"H3605\"* breath|strong=\"H7307\"* at|strong=\"H7307\"* all|strong=\"H3605\"* within|strong=\"H7130\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H3605\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H3068\"* his|strong=\"H3605\"* holy|strong=\"H6944\"* temple|strong=\"H1964\"*. Let all|strong=\"H3605\"* the|strong=\"H3605\"* earth be|strong=\"H3068\"* silent|strong=\"H2013\"* before|strong=\"H6440\"* him|strong=\"H6440\"*!”" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* prayer|strong=\"H8605\"* of|strong=\"H5921\"* Habakkuk|strong=\"H2265\"*, the|strong=\"H5921\"* prophet|strong=\"H5030\"*, set to|strong=\"H5921\"* victorious music." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"*, I|strong=\"H3045\"* have|strong=\"H7355\"* heard|strong=\"H8085\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fame|strong=\"H8088\"*." + }, + { + "verseNum": 3, + "text": "God|strong=\"H8064\"* came from|strong=\"H8064\"* Teman|strong=\"H8487\"*," + }, + { + "verseNum": 4, + "text": "His|strong=\"H3027\"* splendor is|strong=\"H3027\"* like|strong=\"H1961\"* the|strong=\"H3027\"* sunrise." + }, + { + "verseNum": 5, + "text": "Plague|strong=\"H1698\"* went|strong=\"H3212\"* before|strong=\"H6440\"* him|strong=\"H6440\"*," + }, + { + "verseNum": 6, + "text": "He|strong=\"H7200\"* stood|strong=\"H5975\"*, and|strong=\"H5769\"* shook the|strong=\"H7200\"* earth." + }, + { + "verseNum": 7, + "text": "I|strong=\"H7200\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* tents of|strong=\"H8478\"* Cushan|strong=\"H3572\"* in|strong=\"H7200\"* affliction." + }, + { + "verseNum": 8, + "text": "Was|strong=\"H3068\"* Yahweh|strong=\"H3068\"* displeased|strong=\"H2734\"* with|strong=\"H3068\"* the|strong=\"H5921\"* rivers|strong=\"H5104\"*?" + }, + { + "verseNum": 9, + "text": "You uncovered your|strong=\"H5104\"* bow|strong=\"H7198\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H7200\"* mountains|strong=\"H2022\"* saw|strong=\"H7200\"* you|strong=\"H5414\"*, and|strong=\"H3027\"* were|strong=\"H4325\"* afraid|strong=\"H2342\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5975\"* sun|strong=\"H8121\"* and|strong=\"H1980\"* moon|strong=\"H3394\"* stood|strong=\"H5975\"* still|strong=\"H5975\"* in|strong=\"H1980\"* the|strong=\"H5975\"* sky" + }, + { + "verseNum": 12, + "text": "You|strong=\"H1471\"* marched|strong=\"H6805\"* through|strong=\"H6805\"* the|strong=\"H1471\"* land in|strong=\"H1471\"* wrath|strong=\"H2195\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H5704\"* went|strong=\"H3318\"* out|strong=\"H3318\"* for|strong=\"H5704\"* the|strong=\"H5704\"* salvation|strong=\"H3468\"* of|strong=\"H1004\"* your|strong=\"H3318\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 14, + "text": "You|strong=\"H3644\"* pierced|strong=\"H5344\"* the|strong=\"H6327\"* heads|strong=\"H7218\"* of|strong=\"H4294\"* his|strong=\"H5344\"* warriors with|strong=\"H6041\"* their own spears|strong=\"H4294\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H4325\"* trampled|strong=\"H1869\"* the|strong=\"H1869\"* sea|strong=\"H3220\"* with|strong=\"H4325\"* your horses|strong=\"H5483\"*," + }, + { + "verseNum": 16, + "text": "I|strong=\"H3117\"* heard|strong=\"H8085\"*, and|strong=\"H3117\"* my|strong=\"H8085\"* body|strong=\"H6106\"* trembled|strong=\"H7264\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* even|strong=\"H3588\"* though|strong=\"H3588\"* the|strong=\"H3588\"* fig|strong=\"H8384\"* tree|strong=\"H8384\"* doesn’t flourish|strong=\"H6524\"*," + }, + { + "verseNum": 18, + "text": "yet|strong=\"H3068\"* I|strong=\"H3068\"* will|strong=\"H3068\"* rejoice|strong=\"H1523\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* Lord|strong=\"H3069\"*,+ 3:19 The word translated “Lord” is “Adonai.”* is my|strong=\"H7760\"* strength|strong=\"H2428\"*." + } + ] + } + ] + }, + { + "name": "Zephaniah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* which|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Zephaniah|strong=\"H6846\"*, the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Cushi|strong=\"H3569\"*, the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gedaliah|strong=\"H1436\"*, the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amariah, the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hezekiah|strong=\"H2396\"*, in|strong=\"H3068\"* the|strong=\"H3068\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amon, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H5921\"* will|strong=\"H3068\"* utterly sweep away|strong=\"H3605\"* everything|strong=\"H3605\"* from|strong=\"H6440\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H5921\"* will|strong=\"H3068\"* sweep away man|strong=\"H7563\"* and|strong=\"H3068\"* animal. I|strong=\"H5921\"* will|strong=\"H3068\"* sweep away the|strong=\"H6440\"* birds|strong=\"H5775\"* of|strong=\"H3068\"* the|strong=\"H6440\"* sky|strong=\"H8064\"*, the|strong=\"H6440\"* fish|strong=\"H1709\"* of|strong=\"H3068\"* the|strong=\"H6440\"* sea|strong=\"H3220\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* heaps of|strong=\"H3068\"* rubble with|strong=\"H3068\"* the|strong=\"H6440\"* wicked|strong=\"H7563\"*. I|strong=\"H5921\"* will|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* man|strong=\"H7563\"* from|strong=\"H6440\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* earth|strong=\"H8064\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H5921\"* will|strong=\"H3063\"* stretch|strong=\"H5186\"* out|strong=\"H5186\"* my|strong=\"H3605\"* hand|strong=\"H3027\"* against|strong=\"H5921\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* against|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3027\"* Jerusalem|strong=\"H3389\"*. I|strong=\"H5921\"* will|strong=\"H3063\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H3605\"* remnant|strong=\"H7605\"* of|strong=\"H3027\"* Baal|strong=\"H1168\"* from|strong=\"H4480\"* this|strong=\"H2088\"* place|strong=\"H4725\"*—the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H3027\"* the|strong=\"H3605\"* idolatrous|strong=\"H3649\"* and|strong=\"H3063\"* pagan priests|strong=\"H3548\"*," + }, + { + "verseNum": 5, + "text": "those|strong=\"H5921\"* who|strong=\"H3068\"* worship|strong=\"H7812\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H3068\"* the|strong=\"H5921\"* sky|strong=\"H8064\"* on|strong=\"H5921\"* the|strong=\"H5921\"* housetops|strong=\"H1406\"*, those|strong=\"H5921\"* who|strong=\"H3068\"* worship|strong=\"H7812\"* and|strong=\"H3068\"* swear|strong=\"H7650\"* by|strong=\"H5921\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* also|strong=\"H3068\"* swear|strong=\"H7650\"* by|strong=\"H5921\"* Malcam|strong=\"H4445\"*," + }, + { + "verseNum": 6, + "text": "those who|strong=\"H3068\"* have|strong=\"H3068\"* turned|strong=\"H5472\"* back|strong=\"H5472\"* from|strong=\"H3068\"* following Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* those who|strong=\"H3068\"* haven’t sought|strong=\"H1245\"* Yahweh|strong=\"H3068\"* nor|strong=\"H3808\"* inquired|strong=\"H1875\"* after|strong=\"H1875\"* him|strong=\"H1245\"*." + }, + { + "verseNum": 7, + "text": "Be|strong=\"H3068\"* silent|strong=\"H2013\"* at|strong=\"H3068\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Lord|strong=\"H3068\"*+ 1:7 The word translated “Lord” is “Adonai.”* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* the|strong=\"H6440\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* at|strong=\"H3068\"* hand|strong=\"H7138\"*. For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* prepared|strong=\"H3559\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"*. He|strong=\"H3588\"* has|strong=\"H3068\"* consecrated|strong=\"H6942\"* his|strong=\"H3068\"* guests|strong=\"H7121\"*." + }, + { + "verseNum": 8, + "text": "It|strong=\"H5921\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s sacrifice|strong=\"H2077\"* that|strong=\"H3605\"* I|strong=\"H3117\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* the|strong=\"H3605\"* princes|strong=\"H8269\"*, the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H3117\"* clothed|strong=\"H3847\"* with|strong=\"H3847\"* foreign|strong=\"H5237\"* clothing|strong=\"H3847\"*." + }, + { + "verseNum": 9, + "text": "In|strong=\"H5921\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, I|strong=\"H3117\"* will|strong=\"H1004\"* punish|strong=\"H6485\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* leap|strong=\"H1801\"* over|strong=\"H5921\"* the|strong=\"H3605\"* threshold|strong=\"H4670\"*, who|strong=\"H3605\"* fill|strong=\"H4390\"* their|strong=\"H3605\"* master’s house|strong=\"H1004\"* with|strong=\"H4390\"* violence|strong=\"H2555\"* and|strong=\"H3117\"* deceit|strong=\"H4820\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, there|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* the|strong=\"H5002\"* noise|strong=\"H6963\"* of|strong=\"H3068\"* a|strong=\"H3068\"* cry|strong=\"H6818\"* from|strong=\"H4480\"* the|strong=\"H5002\"* fish|strong=\"H1709\"* gate|strong=\"H8179\"*, a|strong=\"H3068\"* wailing|strong=\"H3215\"* from|strong=\"H4480\"* the|strong=\"H5002\"* second|strong=\"H4932\"* quarter, and|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* crashing|strong=\"H7667\"* from|strong=\"H4480\"* the|strong=\"H5002\"* hills|strong=\"H1389\"*." + }, + { + "verseNum": 11, + "text": "Wail|strong=\"H3213\"*, you|strong=\"H3588\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Maktesh|strong=\"H4389\"*, for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H3427\"* Canaan|strong=\"H3667\"* are|strong=\"H5971\"* undone|strong=\"H1820\"*! All|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H5971\"* loaded with|strong=\"H3427\"* silver|strong=\"H3701\"* are|strong=\"H5971\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*." + }, + { + "verseNum": 12, + "text": "It|strong=\"H1931\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* at|strong=\"H5921\"* that|strong=\"H1931\"* time|strong=\"H6256\"*, that|strong=\"H1931\"* I|strong=\"H5921\"* will|strong=\"H3068\"* search|strong=\"H2664\"* Jerusalem|strong=\"H3389\"* with|strong=\"H3068\"* lamps|strong=\"H5216\"*, and|strong=\"H3068\"* I|strong=\"H5921\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* the|strong=\"H5921\"* men|strong=\"H6485\"* who|strong=\"H1931\"* are|strong=\"H3068\"* settled|strong=\"H7087\"* on|strong=\"H5921\"* their|strong=\"H3068\"* dregs|strong=\"H8105\"*, who|strong=\"H1931\"* say in|strong=\"H5921\"* their|strong=\"H3068\"* heart|strong=\"H3824\"*, “Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* do|strong=\"H3190\"* good|strong=\"H3190\"*, neither|strong=\"H3808\"* will|strong=\"H3068\"* he|strong=\"H1931\"* do|strong=\"H3190\"* evil|strong=\"H7489\"*.”" + }, + { + "verseNum": 13, + "text": "Their|strong=\"H1961\"* wealth|strong=\"H2428\"* will|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* plunder|strong=\"H4933\"*, and|strong=\"H1004\"* their|strong=\"H1961\"* houses|strong=\"H1004\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*. Yes, they|strong=\"H3808\"* will|strong=\"H1961\"* build|strong=\"H1129\"* houses|strong=\"H1004\"*, but|strong=\"H3808\"* won’t inhabit|strong=\"H3427\"* them|strong=\"H1961\"*. They|strong=\"H3808\"* will|strong=\"H1961\"* plant|strong=\"H5193\"* vineyards|strong=\"H3754\"*, but|strong=\"H3808\"* won’t drink|strong=\"H8354\"* their|strong=\"H1961\"* wine|strong=\"H3196\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3068\"* great|strong=\"H1419\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* near|strong=\"H7138\"*. It|strong=\"H8033\"* is|strong=\"H3068\"* near|strong=\"H7138\"* and|strong=\"H3068\"* hurries greatly|strong=\"H3966\"*, the|strong=\"H3068\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. The|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* cries|strong=\"H6963\"* there|strong=\"H8033\"* bitterly|strong=\"H4751\"*." + }, + { + "verseNum": 15, + "text": "That|strong=\"H3117\"* day|strong=\"H3117\"* is|strong=\"H1931\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* wrath|strong=\"H5678\"*, a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* distress|strong=\"H6869\"* and|strong=\"H3117\"* anguish|strong=\"H6869\"*, a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* trouble|strong=\"H6869\"* and|strong=\"H3117\"* ruin, a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* darkness|strong=\"H2822\"* and|strong=\"H3117\"* gloom|strong=\"H6205\"*, a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* clouds|strong=\"H6051\"* and|strong=\"H3117\"* blackness," + }, + { + "verseNum": 16, + "text": "a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H5921\"* trumpet|strong=\"H7782\"* and|strong=\"H3117\"* alarm|strong=\"H8643\"* against|strong=\"H5921\"* the|strong=\"H5921\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"* and|strong=\"H3117\"* against|strong=\"H5921\"* the|strong=\"H5921\"* high|strong=\"H1364\"* battlements." + }, + { + "verseNum": 17, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H1980\"* such distress|strong=\"H6887\"* on|strong=\"H1980\"* men|strong=\"H1980\"* that|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* walk|strong=\"H1980\"* like|strong=\"H8210\"* blind|strong=\"H5787\"* men|strong=\"H1980\"* because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"*. Their|strong=\"H3068\"* blood|strong=\"H1818\"* will|strong=\"H3068\"* be|strong=\"H3068\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* like|strong=\"H8210\"* dust|strong=\"H6083\"* and|strong=\"H1980\"* their|strong=\"H3068\"* flesh|strong=\"H3894\"* like|strong=\"H8210\"* dung|strong=\"H1561\"*." + }, + { + "verseNum": 18, + "text": "Neither|strong=\"H3808\"* their|strong=\"H3605\"* silver|strong=\"H3701\"* nor|strong=\"H3808\"* their|strong=\"H3605\"* gold|strong=\"H2091\"* will|strong=\"H3068\"* be|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* deliver|strong=\"H5337\"* them|strong=\"H6213\"* in|strong=\"H3427\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s wrath|strong=\"H5678\"*, but|strong=\"H3588\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* land will|strong=\"H3068\"* be|strong=\"H3808\"* devoured by|strong=\"H3117\"* the|strong=\"H3605\"* fire of|strong=\"H3068\"* his|strong=\"H3605\"* jealousy|strong=\"H7068\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H6213\"* an|strong=\"H6213\"* end|strong=\"H3617\"*, yes|strong=\"H3588\"*, a|strong=\"H3068\"* terrible|strong=\"H6213\"* end|strong=\"H3617\"*, of|strong=\"H3068\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Gather|strong=\"H7197\"* yourselves together|strong=\"H7197\"*, yes, gather|strong=\"H7197\"* together|strong=\"H7197\"*, you|strong=\"H3808\"* nation|strong=\"H1471\"* that|strong=\"H1471\"* has|strong=\"H1471\"* no|strong=\"H3808\"* shame|strong=\"H3700\"*," + }, + { + "verseNum": 2, + "text": "before|strong=\"H2962\"* the|strong=\"H5921\"* appointed|strong=\"H2706\"* time|strong=\"H3117\"* when|strong=\"H3117\"* the|strong=\"H5921\"* day|strong=\"H3117\"* passes|strong=\"H5674\"* as|strong=\"H3117\"* the|strong=\"H5921\"* chaff|strong=\"H4671\"*, before|strong=\"H2962\"* the|strong=\"H5921\"* fierce|strong=\"H2740\"* anger|strong=\"H2740\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* comes|strong=\"H5674\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, before|strong=\"H2962\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s anger|strong=\"H2740\"* comes|strong=\"H5674\"* on|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "Seek|strong=\"H1245\"* Yahweh|strong=\"H3068\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* humble|strong=\"H6035\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land, who|strong=\"H3605\"* have|strong=\"H3068\"* kept his|strong=\"H3605\"* ordinances|strong=\"H4941\"*. Seek|strong=\"H1245\"* righteousness|strong=\"H6664\"*. Seek|strong=\"H1245\"* humility|strong=\"H6038\"*. It|strong=\"H3117\"* may|strong=\"H3068\"* be|strong=\"H3068\"* that|strong=\"H3605\"* you|strong=\"H3605\"* will|strong=\"H3068\"* be|strong=\"H3068\"* hidden|strong=\"H5641\"* in|strong=\"H3068\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s anger." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Gaza|strong=\"H5804\"* will|strong=\"H1961\"* be|strong=\"H1961\"* forsaken|strong=\"H5800\"*, and|strong=\"H1961\"* Ashkelon a|strong=\"H3068\"* desolation|strong=\"H8077\"*. They|strong=\"H3588\"* will|strong=\"H1961\"* drive|strong=\"H1644\"* out|strong=\"H1644\"* Ashdod at|strong=\"H1961\"* noonday|strong=\"H6672\"*, and|strong=\"H1961\"* Ekron|strong=\"H6138\"* will|strong=\"H1961\"* be|strong=\"H1961\"* rooted up|strong=\"H6131\"*." + }, + { + "verseNum": 5, + "text": "Woe|strong=\"H1945\"* to|strong=\"H3068\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* coast|strong=\"H2256\"*, the|strong=\"H5921\"* nation|strong=\"H1471\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Cherethites|strong=\"H3774\"*! Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* is|strong=\"H3068\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, Canaan|strong=\"H3667\"*, the|strong=\"H5921\"* land of|strong=\"H3068\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"*. I|strong=\"H5921\"* will|strong=\"H3068\"* destroy you|strong=\"H5921\"* until|strong=\"H3068\"* there|strong=\"H3427\"* is|strong=\"H3068\"* no inhabitant|strong=\"H3427\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H1961\"* sea|strong=\"H3220\"* coast|strong=\"H2256\"* will|strong=\"H1961\"* be|strong=\"H1961\"* pastures|strong=\"H5116\"*, with|strong=\"H3220\"* cottages|strong=\"H3741\"* for|strong=\"H1961\"* shepherds|strong=\"H7462\"* and|strong=\"H6629\"* folds|strong=\"H1448\"* for|strong=\"H1961\"* flocks|strong=\"H6629\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5921\"* coast|strong=\"H2256\"* will|strong=\"H3068\"* be|strong=\"H1961\"* for|strong=\"H3588\"* the|strong=\"H5921\"* remnant|strong=\"H7611\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*. They|strong=\"H3588\"* will|strong=\"H3068\"* find pasture|strong=\"H7462\"*. In|strong=\"H5921\"* the|strong=\"H5921\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* Ashkelon, they|strong=\"H3588\"* will|strong=\"H3068\"* lie|strong=\"H7257\"* down|strong=\"H7257\"* in|strong=\"H5921\"* the|strong=\"H5921\"* evening|strong=\"H6153\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, their|strong=\"H3068\"* God|strong=\"H3068\"*,+ 2:7 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* will|strong=\"H3068\"* visit|strong=\"H6485\"* them|strong=\"H5921\"* and|strong=\"H3063\"* restore|strong=\"H7725\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5921\"* have|strong=\"H5971\"* heard|strong=\"H8085\"* the|strong=\"H5921\"* reproach|strong=\"H2781\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"* and|strong=\"H1121\"* the|strong=\"H5921\"* insults|strong=\"H2778\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, with|strong=\"H5921\"* which|strong=\"H5971\"* they|strong=\"H5921\"* have|strong=\"H5971\"* reproached|strong=\"H2778\"* my|strong=\"H8085\"* people|strong=\"H5971\"* and|strong=\"H1121\"* magnified|strong=\"H1431\"* themselves|strong=\"H1431\"* against|strong=\"H5921\"* their|strong=\"H8085\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H3651\"*, as|strong=\"H5704\"* I|strong=\"H3588\"* live|strong=\"H2416\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*, the|strong=\"H5002\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, surely|strong=\"H3588\"* Moab|strong=\"H4124\"* will|strong=\"H3068\"* be|strong=\"H1961\"* as|strong=\"H5704\"* Sodom|strong=\"H5467\"*, and|strong=\"H1121\"* the|strong=\"H5002\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* as|strong=\"H5704\"* Gomorrah|strong=\"H6017\"*, a|strong=\"H3068\"* possession|strong=\"H5157\"* of|strong=\"H1121\"* nettles|strong=\"H2738\"* and|strong=\"H1121\"* salt|strong=\"H4417\"* pits|strong=\"H4379\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* desolation|strong=\"H8077\"*. The|strong=\"H5002\"* remnant|strong=\"H7611\"* of|strong=\"H1121\"* my|strong=\"H3068\"* people|strong=\"H5971\"* will|strong=\"H3068\"* plunder them|strong=\"H1961\"*, and|strong=\"H1121\"* the|strong=\"H5002\"* survivors|strong=\"H7611\"* of|strong=\"H1121\"* my|strong=\"H3068\"* nation|strong=\"H1471\"* will|strong=\"H3068\"* inherit|strong=\"H5157\"* them|strong=\"H1961\"*." + }, + { + "verseNum": 10, + "text": "This|strong=\"H2063\"* they|strong=\"H1992\"* will|strong=\"H3068\"* have|strong=\"H3068\"* for|strong=\"H3588\"* their|strong=\"H3068\"* pride|strong=\"H1347\"*, because|strong=\"H3588\"* they|strong=\"H1992\"* have|strong=\"H3068\"* reproached|strong=\"H2778\"* and|strong=\"H3068\"* magnified|strong=\"H1431\"* themselves|strong=\"H1992\"* against|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* awesome|strong=\"H3372\"* to|strong=\"H3068\"* them|strong=\"H5921\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H3068\"* famish|strong=\"H7329\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gods of|strong=\"H3068\"* the|strong=\"H3605\"* land|strong=\"H4725\"*. Men|strong=\"H3605\"* will|strong=\"H3068\"* worship|strong=\"H7812\"* him|strong=\"H5921\"*, everyone|strong=\"H3605\"* from|strong=\"H5921\"* his|strong=\"H3605\"* place|strong=\"H4725\"*, even|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* shores of|strong=\"H3068\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H1571\"* Cushites also|strong=\"H1571\"*, you|strong=\"H1571\"* will|strong=\"H1571\"* be|strong=\"H1571\"* killed|strong=\"H2491\"* by|strong=\"H1571\"* my|strong=\"H1571\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3027\"* will|strong=\"H3027\"* stretch|strong=\"H5186\"* out|strong=\"H5186\"* his|strong=\"H7760\"* hand|strong=\"H3027\"* against|strong=\"H5921\"* the|strong=\"H5921\"* north|strong=\"H6828\"*, destroy Assyria, and|strong=\"H3027\"* will|strong=\"H3027\"* make|strong=\"H7760\"* Nineveh|strong=\"H5210\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*, as|strong=\"H5921\"* dry|strong=\"H6723\"* as|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 14, + "text": "Herds|strong=\"H5739\"* will|strong=\"H1471\"* lie|strong=\"H7257\"* down|strong=\"H7257\"* in|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H6963\"* her|strong=\"H3605\"*, all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H6963\"* animals|strong=\"H2416\"*. Both|strong=\"H1571\"* the|strong=\"H3605\"* pelican|strong=\"H6893\"* and|strong=\"H6963\"* the|strong=\"H3605\"* porcupine will|strong=\"H1471\"* lodge|strong=\"H3885\"* in|strong=\"H8432\"* its|strong=\"H3605\"* capitals|strong=\"H3730\"*. Their|strong=\"H3605\"* calls|strong=\"H6963\"* will|strong=\"H1471\"* echo through|strong=\"H8432\"* the|strong=\"H3605\"* windows|strong=\"H2474\"*. Desolation|strong=\"H2721\"* will|strong=\"H1471\"* be|strong=\"H1571\"* in|strong=\"H8432\"* the|strong=\"H3605\"* thresholds|strong=\"H5592\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* laid|strong=\"H6168\"* bare|strong=\"H6168\"* the|strong=\"H3605\"* cedar beams." + }, + { + "verseNum": 15, + "text": "This|strong=\"H2063\"* is|strong=\"H3027\"* the|strong=\"H3605\"* joyous|strong=\"H5947\"* city|strong=\"H5892\"* that|strong=\"H3605\"* lived|strong=\"H3427\"* carelessly, that|strong=\"H3605\"* said in|strong=\"H3427\"* her|strong=\"H3605\"* heart|strong=\"H3824\"*, “I|strong=\"H5921\"* am|strong=\"H1961\"*, and|strong=\"H3027\"* there|strong=\"H1961\"* is|strong=\"H3027\"* no|strong=\"H3605\"* one|strong=\"H3605\"* besides|strong=\"H5921\"* me|strong=\"H5921\"*.” How she|strong=\"H2063\"* has|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8047\"*, a|strong=\"H3068\"* place|strong=\"H3027\"* for|strong=\"H5921\"* animals|strong=\"H2416\"* to|strong=\"H1961\"* lie|strong=\"H1961\"* down|strong=\"H3427\"* in|strong=\"H3427\"*! Everyone|strong=\"H3605\"* who|strong=\"H3605\"* passes|strong=\"H5674\"* by|strong=\"H3027\"* her|strong=\"H3605\"* will|strong=\"H1961\"* hiss|strong=\"H8319\"* and|strong=\"H3027\"* shake|strong=\"H5128\"* their|strong=\"H3605\"* fists." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Woe|strong=\"H1945\"* to|strong=\"H5892\"* her who|strong=\"H1945\"* is|strong=\"H5892\"* rebellious and|strong=\"H5892\"* polluted|strong=\"H1351\"*, the|strong=\"H5892\"* oppressing|strong=\"H3238\"* city|strong=\"H5892\"*!" + }, + { + "verseNum": 2, + "text": "She|strong=\"H3808\"* didn’t obey|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"*. She|strong=\"H3808\"* didn’t receive|strong=\"H3947\"* correction|strong=\"H4148\"*. She|strong=\"H3808\"* didn’t trust in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. She|strong=\"H3808\"* didn’t draw|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H3068\"* her|strong=\"H3947\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "Her|strong=\"H7130\"* princes|strong=\"H8269\"* within|strong=\"H7130\"* her|strong=\"H7130\"* are|strong=\"H8199\"* roaring|strong=\"H7580\"* lions. Her|strong=\"H7130\"* judges|strong=\"H8199\"* are|strong=\"H8199\"* evening|strong=\"H6153\"* wolves|strong=\"H2061\"*. They|strong=\"H3808\"* leave|strong=\"H1633\"* nothing|strong=\"H3808\"* until the|strong=\"H8199\"* next day|strong=\"H1242\"*." + }, + { + "verseNum": 4, + "text": "Her|strong=\"H2490\"* prophets|strong=\"H5030\"* are|strong=\"H5030\"* arrogant and|strong=\"H3548\"* treacherous people|strong=\"H2490\"*. Her|strong=\"H2490\"* priests|strong=\"H3548\"* have|strong=\"H5030\"* profaned|strong=\"H2490\"* the|strong=\"H3548\"* sanctuary|strong=\"H6944\"*. They|strong=\"H3548\"* have|strong=\"H5030\"* done|strong=\"H2554\"* violence|strong=\"H2554\"* to|strong=\"H2490\"* the|strong=\"H3548\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"*, within|strong=\"H7130\"* her|strong=\"H5414\"*, is|strong=\"H3068\"* righteous|strong=\"H6662\"*. He|strong=\"H6213\"* will|strong=\"H3068\"* do|strong=\"H6213\"* no|strong=\"H3808\"* wrong|strong=\"H5767\"*. Every|strong=\"H1242\"* morning|strong=\"H1242\"* he|strong=\"H6213\"* brings|strong=\"H5414\"* his|strong=\"H5414\"* justice|strong=\"H4941\"* to|strong=\"H3068\"* light. He|strong=\"H6213\"* doesn’t fail|strong=\"H5737\"*, but|strong=\"H3808\"* the|strong=\"H5414\"* unjust|strong=\"H5766\"* know|strong=\"H3045\"* no|strong=\"H3808\"* shame|strong=\"H1322\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H3772\"* have|strong=\"H1471\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* nations|strong=\"H1471\"*. Their|strong=\"H3772\"* battlements are|strong=\"H1471\"* desolate|strong=\"H8074\"*. I|strong=\"H3772\"* have|strong=\"H1471\"* made|strong=\"H3772\"* their|strong=\"H3772\"* streets|strong=\"H2351\"* waste|strong=\"H2717\"*, so|strong=\"H5674\"* that|strong=\"H1471\"* no|strong=\"H1097\"* one|strong=\"H1097\"* passes|strong=\"H5674\"* by|strong=\"H5674\"*. Their|strong=\"H3772\"* cities|strong=\"H5892\"* are|strong=\"H1471\"* destroyed|strong=\"H3772\"*, so|strong=\"H5674\"* that|strong=\"H1471\"* there|strong=\"H3427\"* is|strong=\"H5892\"* no|strong=\"H1097\"* man|strong=\"H5674\"*, so|strong=\"H5674\"* that|strong=\"H1471\"* there|strong=\"H3427\"* is|strong=\"H5892\"* no|strong=\"H1097\"* inhabitant|strong=\"H3427\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H5921\"* said, “Just|strong=\"H3605\"* fear|strong=\"H3372\"* me|strong=\"H5921\"*. Receive|strong=\"H3947\"* correction|strong=\"H4148\"*,” so|strong=\"H3947\"* that|strong=\"H3605\"* her|strong=\"H3605\"* dwelling|strong=\"H4585\"* won’t be|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H5921\"* have|strong=\"H3605\"* appointed|strong=\"H6485\"* concerning|strong=\"H5921\"* her|strong=\"H3605\"*. But|strong=\"H3808\"* they|strong=\"H3808\"* rose|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H7925\"* corrupted|strong=\"H7843\"* all|strong=\"H3605\"* their|strong=\"H3605\"* doings|strong=\"H5949\"*." + }, + { + "verseNum": 8, + "text": "“Therefore|strong=\"H3651\"* wait|strong=\"H2442\"* for|strong=\"H3588\"* me|strong=\"H5921\"*”, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “until|strong=\"H3588\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3588\"* I|strong=\"H3588\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H3068\"* the|strong=\"H3605\"* prey|strong=\"H5706\"*, for|strong=\"H3588\"* my|strong=\"H3605\"* determination|strong=\"H4941\"* is|strong=\"H3068\"* to|strong=\"H3068\"* gather|strong=\"H6908\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H3068\"* assemble|strong=\"H6908\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* to|strong=\"H3068\"* pour|strong=\"H8210\"* on|strong=\"H5921\"* them|strong=\"H5921\"* my|strong=\"H3605\"* indignation|strong=\"H2195\"*, even|strong=\"H3588\"* all|strong=\"H3605\"* my|strong=\"H3605\"* fierce|strong=\"H2740\"* anger|strong=\"H2740\"*, for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth will|strong=\"H3068\"* be|strong=\"H3068\"* devoured with|strong=\"H3068\"* the|strong=\"H3605\"* fire of|strong=\"H3068\"* my|strong=\"H3605\"* jealousy|strong=\"H7068\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* then|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* purify|strong=\"H1305\"* the|strong=\"H3605\"* lips|strong=\"H8193\"* of|strong=\"H3068\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H3068\"* all|strong=\"H3605\"* call|strong=\"H7121\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, to|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H7121\"* shoulder|strong=\"H7926\"* to|strong=\"H3068\"* shoulder|strong=\"H7926\"*." + }, + { + "verseNum": 10, + "text": "From|strong=\"H5676\"* beyond|strong=\"H5676\"* the|strong=\"H5676\"* rivers|strong=\"H5104\"* of|strong=\"H1323\"* Cush|strong=\"H3568\"*, my|strong=\"H6327\"* worshipers|strong=\"H6282\"*, even the|strong=\"H5676\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* my|strong=\"H6327\"* dispersed|strong=\"H6327\"* people, will|strong=\"H1323\"* bring|strong=\"H2986\"* my|strong=\"H6327\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 11, + "text": "In|strong=\"H3117\"* that|strong=\"H3588\"* day|strong=\"H3117\"* you|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* disappointed for|strong=\"H3588\"* all|strong=\"H3605\"* your|strong=\"H3605\"* doings|strong=\"H5949\"* in|strong=\"H3117\"* which|strong=\"H1931\"* you|strong=\"H3588\"* have|strong=\"H3117\"* transgressed|strong=\"H6586\"* against|strong=\"H6586\"* me|strong=\"H3254\"*; for|strong=\"H3588\"* then|strong=\"H3254\"* I|strong=\"H3588\"* will|strong=\"H3808\"* take|strong=\"H5493\"* away|strong=\"H5493\"* out|strong=\"H3605\"* from|strong=\"H5493\"* among|strong=\"H7130\"* you|strong=\"H3588\"* your|strong=\"H3605\"* proudly|strong=\"H1346\"* exulting|strong=\"H5947\"* ones|strong=\"H5947\"*, and|strong=\"H3117\"* you|strong=\"H3588\"* will|strong=\"H3808\"* no|strong=\"H3808\"* more|strong=\"H3254\"* be|strong=\"H3808\"* arrogant|strong=\"H1346\"* in|strong=\"H3117\"* my|strong=\"H3605\"* holy|strong=\"H6944\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H5971\"* I|strong=\"H3068\"* will|strong=\"H3068\"* leave|strong=\"H7604\"* among|strong=\"H7130\"* you|strong=\"H7130\"* an|strong=\"H3068\"* afflicted|strong=\"H6041\"* and|strong=\"H3068\"* poor|strong=\"H6041\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* will|strong=\"H3068\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3588\"* remnant|strong=\"H7611\"* of|strong=\"H6310\"* Israel|strong=\"H3478\"* will|strong=\"H3478\"* not|strong=\"H3808\"* do|strong=\"H6213\"* iniquity|strong=\"H5766\"* nor|strong=\"H3808\"* speak|strong=\"H1696\"* lies|strong=\"H3577\"*, neither|strong=\"H3808\"* will|strong=\"H3478\"* a|strong=\"H3068\"* deceitful|strong=\"H8649\"* tongue|strong=\"H3956\"* be|strong=\"H3808\"* found|strong=\"H4672\"* in|strong=\"H3478\"* their|strong=\"H1992\"* mouth|strong=\"H6310\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* will|strong=\"H3478\"* feed|strong=\"H7462\"* and|strong=\"H3478\"* lie|strong=\"H7257\"* down|strong=\"H7257\"*, and|strong=\"H3478\"* no|strong=\"H3808\"* one|strong=\"H3808\"* will|strong=\"H3478\"* make|strong=\"H6213\"* them|strong=\"H1992\"* afraid|strong=\"H2729\"*.”" + }, + { + "verseNum": 14, + "text": "Sing|strong=\"H7442\"*, daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zion|strong=\"H6726\"*! Shout|strong=\"H7321\"*, Israel|strong=\"H3478\"*! Be|strong=\"H3820\"* glad|strong=\"H8055\"* and|strong=\"H3478\"* rejoice|strong=\"H8055\"* with|strong=\"H3389\"* all|strong=\"H3605\"* your|strong=\"H3605\"* heart|strong=\"H3820\"*, daughter|strong=\"H1323\"* of|strong=\"H1323\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* taken|strong=\"H5493\"* away|strong=\"H5493\"* your|strong=\"H3068\"* judgments|strong=\"H4941\"*. He|strong=\"H3068\"* has|strong=\"H3068\"* thrown out|strong=\"H6437\"* your|strong=\"H3068\"* enemy. The|strong=\"H3068\"* King|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, Yahweh|strong=\"H3068\"*, is|strong=\"H3068\"* among|strong=\"H7130\"* you|strong=\"H3808\"*. You|strong=\"H3808\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* afraid|strong=\"H3372\"* of|strong=\"H4428\"* evil|strong=\"H7451\"* any|strong=\"H5750\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 16, + "text": "In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, it|strong=\"H1931\"* will|strong=\"H3389\"* be|strong=\"H3027\"* said to|strong=\"H3027\"* Jerusalem|strong=\"H3389\"*, “Don’t be|strong=\"H3027\"* afraid|strong=\"H3372\"*, Zion|strong=\"H6726\"*. Don’t let|strong=\"H7503\"* your|strong=\"H3372\"* hands|strong=\"H3027\"* be|strong=\"H3027\"* weak|strong=\"H7503\"*.”" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"*, your|strong=\"H3068\"* God|strong=\"H3068\"*, is|strong=\"H3068\"* among|strong=\"H7130\"* you|strong=\"H5921\"*, a|strong=\"H3068\"* mighty|strong=\"H1368\"* one|strong=\"H1368\"* who|strong=\"H3068\"* will|strong=\"H3068\"* save|strong=\"H3467\"*. He|strong=\"H3068\"* will|strong=\"H3068\"* rejoice|strong=\"H1523\"* over|strong=\"H5921\"* you|strong=\"H5921\"* with|strong=\"H3068\"* joy|strong=\"H8057\"*. He|strong=\"H3068\"* will|strong=\"H3068\"* calm you|strong=\"H5921\"* in|strong=\"H5921\"* his|strong=\"H3068\"* love. He|strong=\"H3068\"* will|strong=\"H3068\"* rejoice|strong=\"H1523\"* over|strong=\"H5921\"* you|strong=\"H5921\"* with|strong=\"H3068\"* singing|strong=\"H7440\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H5921\"* will|strong=\"H1961\"* remove those|strong=\"H4480\"* who grieve|strong=\"H3013\"* about|strong=\"H1961\"* the|strong=\"H5921\"* appointed|strong=\"H4150\"* feasts|strong=\"H4150\"* from|strong=\"H4480\"* you|strong=\"H5921\"*. They|strong=\"H5921\"* are|strong=\"H1961\"* a|strong=\"H3068\"* burden|strong=\"H4864\"* and|strong=\"H4150\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* to|strong=\"H1961\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "Behold|strong=\"H2005\"*,+ 3:19 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* at|strong=\"H6213\"* that|strong=\"H3605\"* time|strong=\"H6256\"* I|strong=\"H2005\"* will|strong=\"H1931\"* deal|strong=\"H6213\"* with|strong=\"H6213\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* afflict|strong=\"H6031\"* you|strong=\"H3605\"*; and|strong=\"H6213\"* I|strong=\"H2005\"* will|strong=\"H1931\"* save|strong=\"H3467\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H6213\"* lame|strong=\"H6760\"* and|strong=\"H6213\"* gather|strong=\"H6908\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3605\"* driven|strong=\"H5080\"* away|strong=\"H5080\"*. I|strong=\"H2005\"* will|strong=\"H1931\"* give|strong=\"H7760\"* them|strong=\"H6213\"* praise|strong=\"H8416\"* and|strong=\"H6213\"* honor|strong=\"H8034\"*, whose|strong=\"H8034\"* shame|strong=\"H1322\"* has|strong=\"H6256\"* been|strong=\"H3605\"* in|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 20, + "text": "At|strong=\"H3068\"* that|strong=\"H3588\"* time|strong=\"H6256\"* I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H7725\"* you|strong=\"H3588\"* in|strong=\"H3068\"*, and|strong=\"H3068\"* at|strong=\"H3068\"* that|strong=\"H3588\"* time|strong=\"H6256\"* I|strong=\"H3588\"* will|strong=\"H3068\"* gather|strong=\"H6908\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"* honor|strong=\"H8034\"* and|strong=\"H3068\"* praise|strong=\"H8416\"* among|strong=\"H8034\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth when|strong=\"H3588\"* I|strong=\"H3588\"* restore|strong=\"H7725\"* your|strong=\"H3068\"* fortunes|strong=\"H7622\"* before|strong=\"H5869\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, says Yahweh|strong=\"H3068\"*." + } + ] + } + ] + }, + { + "name": "Haggai", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* second|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Darius|strong=\"H1867\"* the|strong=\"H3068\"* king|strong=\"H4428\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* sixth|strong=\"H8345\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* first|strong=\"H1121\"* day|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, Yahweh|strong=\"H3068\"*’s+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* came|strong=\"H1961\"* by|strong=\"H3027\"* Haggai|strong=\"H2292\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"*, to|strong=\"H3068\"* Zerubbabel|strong=\"H2216\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shealtiel|strong=\"H7597\"*, governor|strong=\"H6346\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* to|strong=\"H3068\"* Joshua|strong=\"H3091\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehozadak|strong=\"H3087\"*, the|strong=\"H3068\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“This|strong=\"H2088\"* is|strong=\"H3068\"* what|strong=\"H2088\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: These|strong=\"H2088\"* people|strong=\"H5971\"* say, ‘The|strong=\"H3541\"* time|strong=\"H6256\"* hasn’t yet|strong=\"H3068\"* come|strong=\"H5971\"*, the|strong=\"H3541\"* time|strong=\"H6256\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* to|strong=\"H3068\"* be|strong=\"H3808\"* built|strong=\"H1129\"*.’”" + }, + { + "verseNum": 3, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* by|strong=\"H3027\"* Haggai|strong=\"H2292\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 4, + "text": "“Is|strong=\"H2088\"* it|strong=\"H2088\"* a|strong=\"H3068\"* time|strong=\"H6256\"* for|strong=\"H3427\"* you|strong=\"H3427\"* yourselves to|strong=\"H6256\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* your|strong=\"H2088\"* paneled|strong=\"H5603\"* houses|strong=\"H1004\"*, while|strong=\"H2088\"* this|strong=\"H2088\"* house|strong=\"H1004\"* lies waste|strong=\"H2720\"*?" + }, + { + "verseNum": 5, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* this|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: ‘Consider|strong=\"H7760\"* your|strong=\"H3068\"* ways|strong=\"H1870\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3847\"* have|strong=\"H4592\"* sown|strong=\"H2232\"* much|strong=\"H7235\"*, and|strong=\"H8354\"* bring in|strong=\"H3847\"* little|strong=\"H4592\"*. You|strong=\"H3847\"* eat, but you|strong=\"H3847\"* don’t have|strong=\"H4592\"* enough|strong=\"H4592\"*. You|strong=\"H3847\"* drink|strong=\"H8354\"*, but you|strong=\"H3847\"* aren’t filled|strong=\"H7654\"* with|strong=\"H3847\"* drink|strong=\"H8354\"*. You|strong=\"H3847\"* clothe|strong=\"H3847\"* yourselves|strong=\"H3847\"*, but no|strong=\"H8354\"* one is|strong=\"H6872\"* warm|strong=\"H2527\"*; and|strong=\"H8354\"* he|strong=\"H7235\"* who|strong=\"H8354\"* earns|strong=\"H7936\"* wages|strong=\"H7936\"* earns|strong=\"H7936\"* wages|strong=\"H7936\"* to|strong=\"H7235\"* put|strong=\"H3847\"* them|strong=\"H3847\"* into a|strong=\"H3068\"* bag|strong=\"H6872\"* with|strong=\"H3847\"* holes|strong=\"H5344\"* in|strong=\"H3847\"* it|strong=\"H8354\"*.’" + }, + { + "verseNum": 7, + "text": "“This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: ‘Consider|strong=\"H7760\"* your|strong=\"H3068\"* ways|strong=\"H1870\"*." + }, + { + "verseNum": 8, + "text": "Go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* the|strong=\"H3068\"* mountain|strong=\"H2022\"*, bring|strong=\"H5927\"* wood|strong=\"H6086\"*, and|strong=\"H3068\"* build|strong=\"H1129\"* the|strong=\"H3068\"* house|strong=\"H1004\"*. I|strong=\"H3068\"* will|strong=\"H3068\"* take|strong=\"H5927\"* pleasure|strong=\"H7521\"* in|strong=\"H3068\"* it|strong=\"H5927\"*, and|strong=\"H3068\"* I|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* glorified|strong=\"H3513\"*,” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "“You|strong=\"H4100\"* looked|strong=\"H6437\"* for|strong=\"H3068\"* much|strong=\"H7235\"*, and|strong=\"H3068\"*, behold|strong=\"H2009\"*,+ 1:9 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* it|strong=\"H1931\"* came|strong=\"H3068\"* to|strong=\"H3068\"* little|strong=\"H4592\"*; and|strong=\"H3068\"* when|strong=\"H3068\"* you|strong=\"H4100\"* brought|strong=\"H7323\"* it|strong=\"H1931\"* home|strong=\"H1004\"*, I|strong=\"H2009\"* blew it|strong=\"H1931\"* away|strong=\"H6437\"*. Why|strong=\"H4100\"*?” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*, “Because|strong=\"H3282\"* of|strong=\"H1004\"* my|strong=\"H3068\"* house|strong=\"H1004\"* that|strong=\"H1931\"* lies waste|strong=\"H2720\"*, while|strong=\"H4592\"* each of|strong=\"H1004\"* you|strong=\"H4100\"* is|strong=\"H3068\"* busy with|strong=\"H1004\"* his|strong=\"H3068\"* own house|strong=\"H1004\"*." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H3651\"* for|strong=\"H5921\"* your|strong=\"H5921\"* sake|strong=\"H5921\"* the|strong=\"H5921\"* heavens|strong=\"H8064\"* withhold|strong=\"H3607\"* the|strong=\"H5921\"* dew|strong=\"H2919\"*, and|strong=\"H8064\"* the|strong=\"H5921\"* earth|strong=\"H8064\"* withholds its|strong=\"H5921\"* fruit|strong=\"H2981\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H5921\"* called|strong=\"H7121\"* for|strong=\"H5921\"* a|strong=\"H3068\"* drought|strong=\"H2721\"* on|strong=\"H5921\"* the|strong=\"H3605\"* land, on|strong=\"H5921\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* grain|strong=\"H1715\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* oil|strong=\"H3323\"*, on|strong=\"H5921\"* that|strong=\"H3605\"* which|strong=\"H2022\"* the|strong=\"H3605\"* ground produces|strong=\"H3318\"*, on|strong=\"H5921\"* men|strong=\"H3605\"*, on|strong=\"H5921\"* livestock, and|strong=\"H2022\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* labor|strong=\"H3018\"* of|strong=\"H2022\"* the|strong=\"H3605\"* hands|strong=\"H3709\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H7971\"* Zerubbabel|strong=\"H2216\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shealtiel|strong=\"H7597\"* and|strong=\"H1121\"* Joshua|strong=\"H3091\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehozadak|strong=\"H3087\"*, the|strong=\"H3605\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, obeyed|strong=\"H8085\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"*’s+ 1:12 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* voice|strong=\"H6963\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Haggai|strong=\"H2292\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"*, as|strong=\"H1697\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"* had|strong=\"H3068\"* sent|strong=\"H7971\"* him|strong=\"H6440\"*; and|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H3068\"* Haggai|strong=\"H2292\"*, Yahweh|strong=\"H3068\"*’s messenger|strong=\"H4397\"*, spoke Yahweh|strong=\"H3068\"*’s message|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H5002\"* people|strong=\"H5971\"*, saying, “I|strong=\"H3068\"* am|strong=\"H3068\"* with|strong=\"H3068\"* you|strong=\"H5971\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* stirred|strong=\"H5782\"* up|strong=\"H5782\"* the|strong=\"H3605\"* spirit|strong=\"H7307\"* of|strong=\"H1121\"* Zerubbabel|strong=\"H2216\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shealtiel|strong=\"H7597\"*, governor|strong=\"H6346\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* spirit|strong=\"H7307\"* of|strong=\"H1121\"* Joshua|strong=\"H3091\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehozadak|strong=\"H3087\"*, the|strong=\"H3605\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* spirit|strong=\"H7307\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"*; and|strong=\"H1121\"* they|strong=\"H3068\"* came|strong=\"H3068\"* and|strong=\"H1121\"* worked|strong=\"H6213\"* on|strong=\"H3068\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*, their|strong=\"H3605\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 15, + "text": "in|strong=\"H8141\"* the|strong=\"H3117\"* twenty-fourth|strong=\"H6242\"* day|strong=\"H3117\"* of|strong=\"H4428\"* the|strong=\"H3117\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3117\"* sixth|strong=\"H8345\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3117\"* second|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Darius|strong=\"H1867\"* the|strong=\"H3117\"* king|strong=\"H4428\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3068\"* the|strong=\"H3068\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*, in|strong=\"H3068\"* the|strong=\"H3068\"* twenty-first|strong=\"H6242\"* day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* by|strong=\"H3027\"* Haggai|strong=\"H2292\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Speak now|strong=\"H4994\"* to|strong=\"H1121\"* Zerubbabel|strong=\"H2216\"* the|strong=\"H3091\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shealtiel|strong=\"H7597\"*, governor|strong=\"H6346\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* to|strong=\"H1121\"* Joshua|strong=\"H3091\"* the|strong=\"H3091\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehozadak|strong=\"H3087\"*, the|strong=\"H3091\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* to|strong=\"H1121\"* the|strong=\"H3091\"* remnant|strong=\"H7611\"* of|strong=\"H1121\"* the|strong=\"H3091\"* people|strong=\"H5971\"*, saying," + }, + { + "verseNum": 3, + "text": "‘Who|strong=\"H4310\"* is|strong=\"H2088\"* left|strong=\"H7604\"* among|strong=\"H4310\"* you|strong=\"H3808\"* who|strong=\"H4310\"* saw|strong=\"H7200\"* this|strong=\"H2088\"* house|strong=\"H1004\"* in|strong=\"H1004\"* its|strong=\"H7604\"* former|strong=\"H7223\"* glory|strong=\"H3519\"*? How|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3808\"* see|strong=\"H7200\"* it|strong=\"H7200\"* now|strong=\"H6258\"*? Isn’t it|strong=\"H7200\"* in|strong=\"H1004\"* your|strong=\"H7200\"* eyes|strong=\"H5869\"* as|strong=\"H3644\"* nothing|strong=\"H3808\"*?" + }, + { + "verseNum": 4, + "text": "Yet|strong=\"H3588\"* now|strong=\"H6258\"* be|strong=\"H3068\"* strong|strong=\"H2388\"*, Zerubbabel|strong=\"H2216\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. ‘Be|strong=\"H3068\"* strong|strong=\"H2388\"*, Joshua|strong=\"H3091\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehozadak|strong=\"H3087\"*, the|strong=\"H3605\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*. Be|strong=\"H3068\"* strong|strong=\"H2388\"*, all|strong=\"H3605\"* you|strong=\"H3588\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, ‘and|strong=\"H1121\"* work|strong=\"H6213\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* with|strong=\"H3068\"* you|strong=\"H3588\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 5, + "text": "This|strong=\"H1697\"* is|strong=\"H1697\"* the|strong=\"H8432\"* word|strong=\"H1697\"* that|strong=\"H1697\"* I|strong=\"H1697\"* covenanted|strong=\"H3772\"* with|strong=\"H1697\"* you|strong=\"H8432\"* when|strong=\"H3318\"* you|strong=\"H8432\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1697\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* my|strong=\"H3318\"* Spirit|strong=\"H7307\"* lived|strong=\"H8432\"* among|strong=\"H8432\"* you|strong=\"H8432\"*. ‘Don’t be|strong=\"H1697\"* afraid|strong=\"H3372\"*.’" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* this|strong=\"H1931\"* is|strong=\"H3068\"* what|strong=\"H3541\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: ‘Yet|strong=\"H5750\"* once|strong=\"H5750\"* more|strong=\"H5750\"*, it|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* little|strong=\"H4592\"* while|strong=\"H5750\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* shake|strong=\"H7493\"* the|strong=\"H3588\"* heavens|strong=\"H8064\"*, the|strong=\"H3588\"* earth|strong=\"H8064\"*, the|strong=\"H3588\"* sea|strong=\"H3220\"*, and|strong=\"H3068\"* the|strong=\"H3588\"* dry|strong=\"H2724\"* land|strong=\"H2724\"*;" + }, + { + "verseNum": 7, + "text": "and|strong=\"H3068\"* I|strong=\"H2088\"* will|strong=\"H3068\"* shake|strong=\"H7493\"* all|strong=\"H3605\"* nations|strong=\"H1471\"*. The|strong=\"H3605\"* treasure of|strong=\"H1004\"* all|strong=\"H3605\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* come|strong=\"H6635\"*, and|strong=\"H3068\"* I|strong=\"H2088\"* will|strong=\"H3068\"* fill|strong=\"H4390\"* this|strong=\"H2088\"* house|strong=\"H1004\"* with|strong=\"H4390\"* glory|strong=\"H3519\"*, says Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5002\"* silver|strong=\"H3701\"* is|strong=\"H3068\"* mine, and|strong=\"H3068\"* the|strong=\"H5002\"* gold|strong=\"H2091\"* is|strong=\"H3068\"* mine,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 9, + "text": "‘The|strong=\"H5002\"* latter glory|strong=\"H3519\"* of|strong=\"H1004\"* this|strong=\"H2088\"* house|strong=\"H1004\"* will|strong=\"H3068\"* be|strong=\"H1961\"* greater|strong=\"H1419\"* than|strong=\"H4480\"* the|strong=\"H5002\"* former|strong=\"H7223\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*; ‘and|strong=\"H3068\"* in|strong=\"H3068\"* this|strong=\"H2088\"* place|strong=\"H4725\"* I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* peace|strong=\"H7965\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*.”" + }, + { + "verseNum": 10, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* twenty-fourth|strong=\"H6242\"* day of|strong=\"H3068\"* the|strong=\"H3068\"* ninth|strong=\"H8671\"* month, in|strong=\"H8141\"* the|strong=\"H3068\"* second|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H3068\"* Darius|strong=\"H1867\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* by|strong=\"H8141\"* Haggai|strong=\"H2292\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 11, + "text": "“Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: Ask|strong=\"H7592\"* now|strong=\"H4994\"* the|strong=\"H3541\"* priests|strong=\"H3548\"* concerning|strong=\"H3068\"* the|strong=\"H3541\"* law|strong=\"H8451\"*, saying," + }, + { + "verseNum": 12, + "text": "‘If|strong=\"H2005\"* someone carries|strong=\"H5375\"* holy|strong=\"H6944\"* meat|strong=\"H1320\"* in|strong=\"H1320\"* the|strong=\"H3605\"* fold|strong=\"H3671\"* of|strong=\"H3605\"* his|strong=\"H3605\"* garment|strong=\"H3671\"*, and|strong=\"H6030\"* with|strong=\"H3899\"* his|strong=\"H3605\"* fold|strong=\"H3671\"* touches|strong=\"H5060\"* bread|strong=\"H3899\"*, stew|strong=\"H5138\"*, wine|strong=\"H3196\"*, oil|strong=\"H8081\"*, or|strong=\"H3808\"* any|strong=\"H3605\"* food|strong=\"H3899\"*, will|strong=\"H1320\"* it|strong=\"H5375\"* become|strong=\"H6942\"* holy|strong=\"H6944\"*?’”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H6030\"* Haggai|strong=\"H2292\"* said|strong=\"H6030\"*, “If one|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H5315\"* unclean|strong=\"H2931\"* by|strong=\"H3605\"* reason of|strong=\"H3605\"* a|strong=\"H3068\"* dead|strong=\"H5315\"* body|strong=\"H5315\"* touches|strong=\"H5060\"* any|strong=\"H3605\"* of|strong=\"H3605\"* these|strong=\"H3605\"*, will|strong=\"H5315\"* it|strong=\"H2930\"* be|strong=\"H5315\"* unclean|strong=\"H2931\"*?”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H6030\"* Haggai|strong=\"H2292\"* answered|strong=\"H6030\"*, “‘So|strong=\"H3651\"* is|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* so|strong=\"H3651\"* is|strong=\"H3068\"* this|strong=\"H2088\"* nation|strong=\"H1471\"* before|strong=\"H6440\"* me|strong=\"H6440\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; ‘and|strong=\"H3068\"* so|strong=\"H3651\"* is|strong=\"H3068\"* every|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* their|strong=\"H3605\"* hands|strong=\"H3027\"*. That|strong=\"H5971\"* which|strong=\"H1931\"* they|strong=\"H3651\"* offer|strong=\"H7126\"* there|strong=\"H8033\"* is|strong=\"H3068\"* unclean|strong=\"H2931\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H6258\"*, please|strong=\"H4994\"* consider|strong=\"H7760\"* from|strong=\"H4480\"* this|strong=\"H2088\"* day|strong=\"H3117\"* and|strong=\"H3068\"* backward, before|strong=\"H4480\"* a|strong=\"H3068\"* stone was|strong=\"H3068\"* laid|strong=\"H7760\"* on|strong=\"H3117\"* a|strong=\"H3068\"* stone in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*." + }, + { + "verseNum": 16, + "text": "Through all that|strong=\"H1961\"* time|strong=\"H1961\"*, when|strong=\"H1961\"* one|strong=\"H1961\"* came|strong=\"H1961\"* to|strong=\"H1961\"* a|strong=\"H3068\"* heap|strong=\"H6194\"* of|strong=\"H6194\"* twenty|strong=\"H6242\"* measures|strong=\"H6333\"*, there|strong=\"H1961\"* were|strong=\"H1961\"* only ten|strong=\"H6235\"*. When|strong=\"H1961\"* one|strong=\"H1961\"* came|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H1961\"* wine|strong=\"H3342\"* vat|strong=\"H3342\"* to|strong=\"H1961\"* draw|strong=\"H2834\"* out|strong=\"H2834\"* fifty|strong=\"H2572\"*, there|strong=\"H1961\"* were|strong=\"H1961\"* only twenty|strong=\"H6242\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H3027\"* struck|strong=\"H5221\"* you|strong=\"H3605\"* with|strong=\"H3068\"* blight|strong=\"H7711\"*, mildew|strong=\"H3420\"*, and|strong=\"H3068\"* hail|strong=\"H1259\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hands|strong=\"H3027\"*; yet|strong=\"H3068\"* you|strong=\"H3605\"* didn’t turn to|strong=\"H3068\"* me|strong=\"H5221\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "‘Consider|strong=\"H7760\"*, please|strong=\"H4994\"*, from|strong=\"H4480\"* this|strong=\"H2088\"* day|strong=\"H3117\"* and|strong=\"H3068\"* backward, from|strong=\"H4480\"* the|strong=\"H3068\"* twenty-fourth|strong=\"H6242\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3068\"* ninth|strong=\"H8671\"* month, since|strong=\"H4480\"* the|strong=\"H3068\"* day|strong=\"H3117\"* that|strong=\"H3117\"* the|strong=\"H3068\"* foundation|strong=\"H3245\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"* was|strong=\"H3068\"* laid|strong=\"H7760\"*, consider|strong=\"H7760\"* it|strong=\"H7760\"*." + }, + { + "verseNum": 19, + "text": "Is|strong=\"H2088\"* the|strong=\"H5375\"* seed|strong=\"H2233\"* yet|strong=\"H5750\"* in|strong=\"H3117\"* the|strong=\"H5375\"* barn|strong=\"H4035\"*? Yes, the|strong=\"H5375\"* vine|strong=\"H1612\"*, the|strong=\"H5375\"* fig|strong=\"H8384\"* tree|strong=\"H6086\"*, the|strong=\"H5375\"* pomegranate|strong=\"H7416\"*, and|strong=\"H3117\"* the|strong=\"H5375\"* olive|strong=\"H2132\"* tree|strong=\"H6086\"* haven’t produced. From|strong=\"H4480\"* today|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3808\"* bless|strong=\"H1288\"* you|strong=\"H3117\"*.’”" + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* the|strong=\"H3068\"* second|strong=\"H8145\"* time|strong=\"H8145\"* to|strong=\"H3068\"* Haggai|strong=\"H2292\"* in|strong=\"H3068\"* the|strong=\"H3068\"* twenty-fourth|strong=\"H6242\"* day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 21, + "text": "“Speak to|strong=\"H3063\"* Zerubbabel|strong=\"H2216\"*, governor|strong=\"H6346\"* of|strong=\"H6346\"* Judah|strong=\"H3063\"*, saying, ‘I will|strong=\"H8064\"* shake|strong=\"H7493\"* the|strong=\"H2216\"* heavens|strong=\"H8064\"* and|strong=\"H3063\"* the|strong=\"H2216\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 22, + "text": "I will|strong=\"H1471\"* overthrow|strong=\"H2015\"* the|strong=\"H2015\"* throne|strong=\"H3678\"* of|strong=\"H3678\"* kingdoms|strong=\"H4467\"*. I will|strong=\"H1471\"* destroy|strong=\"H8045\"* the|strong=\"H2015\"* strength|strong=\"H2392\"* of|strong=\"H3678\"* the|strong=\"H2015\"* kingdoms|strong=\"H4467\"* of|strong=\"H3678\"* the|strong=\"H2015\"* nations|strong=\"H1471\"*. I will|strong=\"H1471\"* overthrow|strong=\"H2015\"* the|strong=\"H2015\"* chariots|strong=\"H4818\"* and|strong=\"H2719\"* those who|strong=\"H1471\"* ride|strong=\"H7392\"* in|strong=\"H1471\"* them|strong=\"H3381\"*. The|strong=\"H2015\"* horses|strong=\"H5483\"* and|strong=\"H2719\"* their|strong=\"H2015\"* riders|strong=\"H7392\"* will|strong=\"H1471\"* come|strong=\"H3381\"* down|strong=\"H3381\"*, everyone by|strong=\"H3678\"* the|strong=\"H2015\"* sword|strong=\"H2719\"* of|strong=\"H3678\"* his|strong=\"H2015\"* brother." + }, + { + "verseNum": 23, + "text": "In|strong=\"H3068\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* take|strong=\"H3947\"* you|strong=\"H3588\"*, Zerubbabel|strong=\"H2216\"* my|strong=\"H3068\"* servant|strong=\"H5650\"*, the|strong=\"H5002\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shealtiel|strong=\"H7597\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, ‘and|strong=\"H1121\"* will|strong=\"H3068\"* make|strong=\"H7760\"* you|strong=\"H3588\"* like|strong=\"H1121\"* a|strong=\"H3068\"* signet|strong=\"H2368\"* ring, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* chosen|strong=\"H3947\"* you|strong=\"H3588\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*.”" + } + ] + } + ] + }, + { + "name": "Zechariah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* eighth|strong=\"H8066\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* second|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Darius|strong=\"H1867\"*, Yahweh|strong=\"H3068\"*’s+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* Zechariah|strong=\"H2148\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Berechiah|strong=\"H1296\"*, the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Iddo|strong=\"H5714\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* very|strong=\"H7107\"* displeased|strong=\"H7107\"* with|strong=\"H3068\"* your|strong=\"H3068\"* fathers." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H3068\"* tell them|strong=\"H7725\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H5002\"*: ‘Return|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H7725\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, ‘and|strong=\"H3068\"* I|strong=\"H3541\"* will|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H7725\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 4, + "text": "Don’t you|strong=\"H7725\"* be|strong=\"H1961\"* like|strong=\"H1961\"* your|strong=\"H3068\"* fathers, to|strong=\"H7725\"* whom|strong=\"H7121\"* the|strong=\"H5002\"* former|strong=\"H7223\"* prophets|strong=\"H5030\"* proclaimed|strong=\"H7121\"*, saying: Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H5002\"*, ‘Return|strong=\"H7725\"* now|strong=\"H4994\"* from|strong=\"H7725\"* your|strong=\"H3068\"* evil|strong=\"H7451\"* ways|strong=\"H1870\"* and|strong=\"H3068\"* from|strong=\"H7725\"* your|strong=\"H3068\"* evil|strong=\"H7451\"* doings|strong=\"H4611\"*;’ but|strong=\"H3808\"* they|strong=\"H3068\"* didn’t hear|strong=\"H8085\"* nor|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H7725\"* me|strong=\"H4994\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "Your|strong=\"H2421\"* fathers, where|strong=\"H1992\"* are|strong=\"H1992\"* they|strong=\"H1992\"*? And|strong=\"H5769\"* the|strong=\"H2421\"* prophets|strong=\"H5030\"*, do they|strong=\"H1992\"* live|strong=\"H2421\"* forever|strong=\"H5769\"*?" + }, + { + "verseNum": 6, + "text": "But|strong=\"H3808\"* my|strong=\"H3068\"* words|strong=\"H1697\"* and|strong=\"H3068\"* my|strong=\"H3068\"* decrees|strong=\"H2706\"*, which|strong=\"H3068\"* I|strong=\"H1697\"* commanded|strong=\"H6680\"* my|strong=\"H3068\"* servants|strong=\"H5650\"* the|strong=\"H6213\"* prophets|strong=\"H5030\"*, didn’t they|strong=\"H3651\"* overtake|strong=\"H5381\"* your|strong=\"H3068\"* fathers?" + }, + { + "verseNum": 7, + "text": "On|strong=\"H3117\"* the|strong=\"H3068\"* twenty-fourth|strong=\"H6242\"* day|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H3068\"* eleventh|strong=\"H6249\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"* Shebat|strong=\"H7627\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* second|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Darius|strong=\"H1867\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* Zechariah|strong=\"H2148\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Berechiah|strong=\"H1296\"*, the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Iddo|strong=\"H5714\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 8, + "text": "“I|strong=\"H2009\"* had|strong=\"H1931\"* a|strong=\"H3068\"* vision|strong=\"H7200\"* in|strong=\"H5921\"* the|strong=\"H5921\"* night|strong=\"H3915\"*, and|strong=\"H3915\"* behold|strong=\"H2009\"*,+ 1:8 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* a|strong=\"H3068\"* man|strong=\"H7200\"* riding|strong=\"H7392\"* on|strong=\"H5921\"* a|strong=\"H3068\"* red horse|strong=\"H5483\"*, and|strong=\"H3915\"* he|strong=\"H1931\"* stood|strong=\"H5975\"* among|strong=\"H5921\"* the|strong=\"H5921\"* myrtle|strong=\"H1918\"* trees|strong=\"H1918\"* that|strong=\"H7200\"* were|strong=\"H5483\"* in|strong=\"H5921\"* a|strong=\"H3068\"* ravine|strong=\"H4699\"*; and|strong=\"H3915\"* behind|strong=\"H5975\"* him|strong=\"H5921\"* there|strong=\"H2009\"* were|strong=\"H5483\"* red, brown, and|strong=\"H3915\"* white|strong=\"H3836\"* horses|strong=\"H5483\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H1696\"* I|strong=\"H7200\"* asked|strong=\"H4100\"*, ‘My|strong=\"H7200\"* lord, what|strong=\"H4100\"* are|strong=\"H1992\"* these|strong=\"H1992\"*?’”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H3068\"* man|strong=\"H6030\"* who|strong=\"H3068\"* stood|strong=\"H5975\"* among the|strong=\"H3068\"* myrtle|strong=\"H1918\"* trees|strong=\"H1918\"* answered|strong=\"H6030\"*, “They|strong=\"H3068\"* are|strong=\"H3068\"* the|strong=\"H3068\"* ones|strong=\"H5975\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* to|strong=\"H1980\"* go|strong=\"H1980\"* back|strong=\"H1980\"* and|strong=\"H1980\"* forth|strong=\"H7971\"* through|strong=\"H1980\"* the|strong=\"H3068\"* earth.”" + }, + { + "verseNum": 11, + "text": "They|strong=\"H3068\"* reported to|strong=\"H1980\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* who|strong=\"H3605\"* stood|strong=\"H5975\"* among|strong=\"H3427\"* the|strong=\"H3605\"* myrtle|strong=\"H1918\"* trees|strong=\"H1918\"*, and|strong=\"H1980\"* said|strong=\"H6030\"*, “We|strong=\"H1980\"* have|strong=\"H3068\"* walked|strong=\"H1980\"* back|strong=\"H1980\"* and|strong=\"H1980\"* forth|strong=\"H1980\"* through|strong=\"H1980\"* the|strong=\"H3605\"* earth, and|strong=\"H1980\"* behold|strong=\"H2009\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* earth is|strong=\"H3068\"* at|strong=\"H3427\"* rest|strong=\"H8252\"* and|strong=\"H1980\"* in|strong=\"H3427\"* peace|strong=\"H8252\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H6030\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* replied|strong=\"H6030\"*, “O|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, how|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H3068\"* you|strong=\"H5704\"* not|strong=\"H3808\"* have|strong=\"H7355\"* mercy|strong=\"H7355\"* on|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* on|strong=\"H3068\"* the|strong=\"H3068\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, against|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H5704\"* have|strong=\"H7355\"* had|strong=\"H3068\"* indignation|strong=\"H2194\"* these|strong=\"H2088\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"*?”" + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* answered|strong=\"H6030\"* the|strong=\"H3068\"* angel|strong=\"H4397\"* who|strong=\"H3068\"* talked|strong=\"H1696\"* with|strong=\"H3068\"* me|strong=\"H1696\"* with|strong=\"H3068\"* kind|strong=\"H2896\"* and|strong=\"H3068\"* comforting|strong=\"H5150\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 14, + "text": "So|strong=\"H3541\"* the|strong=\"H3541\"* angel|strong=\"H4397\"* who|strong=\"H3068\"* talked|strong=\"H1696\"* with|strong=\"H3068\"* me|strong=\"H7121\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7121\"*, “Proclaim|strong=\"H7121\"*, saying|strong=\"H1696\"*, ‘Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “I|strong=\"H3541\"* am|strong=\"H3068\"* jealous|strong=\"H7065\"* for|strong=\"H7121\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3068\"* for|strong=\"H7121\"* Zion|strong=\"H6726\"* with|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* jealousy|strong=\"H7068\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H5921\"* am very|strong=\"H1419\"* angry|strong=\"H7107\"* with|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* that|strong=\"H1471\"* are|strong=\"H1992\"* at|strong=\"H5921\"* ease|strong=\"H7600\"*; for|strong=\"H5921\"* I|strong=\"H5921\"* was|strong=\"H7451\"* but|strong=\"H1992\"* a|strong=\"H3068\"* little|strong=\"H4592\"* displeased|strong=\"H7107\"*, but|strong=\"H1992\"* they|strong=\"H1992\"* added to|strong=\"H5921\"* the|strong=\"H5921\"* calamity|strong=\"H7451\"*.”" + }, + { + "verseNum": 16, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*: “I|strong=\"H3541\"* have|strong=\"H3068\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"* with|strong=\"H1004\"* mercy|strong=\"H7356\"*. My|strong=\"H3068\"* house|strong=\"H1004\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* built|strong=\"H1129\"* in|strong=\"H5921\"* it|strong=\"H5921\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*, “and|strong=\"H3068\"* a|strong=\"H3068\"* line shall|strong=\"H3068\"* be|strong=\"H3068\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* over|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*.”’" + }, + { + "verseNum": 17, + "text": "“Proclaim|strong=\"H7121\"* further|strong=\"H5750\"*, saying, ‘Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “My|strong=\"H3068\"* cities|strong=\"H5892\"* will|strong=\"H3068\"* again|strong=\"H5750\"* overflow|strong=\"H6327\"* with|strong=\"H3068\"* prosperity|strong=\"H2896\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* again|strong=\"H5750\"* comfort|strong=\"H5162\"* Zion|strong=\"H6726\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* again|strong=\"H5750\"* choose Jerusalem|strong=\"H3389\"*.”’”" + }, + { + "verseNum": 18, + "text": "I lifted up my eyes and saw, and behold, four horns." + }, + { + "verseNum": 19, + "text": "I asked the angel who talked with me, “What are these?”" + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* showed me four craftsmen." + }, + { + "verseNum": 21, + "text": "Then I asked, “What are these coming to do?”" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H2009\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H7200\"* eyes|strong=\"H5869\"*, and|strong=\"H5869\"* saw|strong=\"H7200\"*, and|strong=\"H5869\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* man|strong=\"H5375\"* with|strong=\"H5869\"* a|strong=\"H3068\"* measuring line in|strong=\"H5869\"* his|strong=\"H5375\"* hand." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H1696\"* I|strong=\"H4100\"* asked|strong=\"H4100\"*, “Where|strong=\"H4100\"* are|strong=\"H3478\"* you|strong=\"H4100\"* going?”" + }, + { + "verseNum": 3, + "text": "Behold|strong=\"H7200\"*, the|strong=\"H7200\"* angel who|strong=\"H3068\"* talked with|strong=\"H3068\"* me|strong=\"H7200\"* went|strong=\"H3068\"* out|strong=\"H7200\"*, and|strong=\"H3068\"* another|strong=\"H7200\"* angel went|strong=\"H3068\"* out|strong=\"H7200\"* to|strong=\"H3068\"* meet|strong=\"H7200\"* him|strong=\"H7200\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"H3063\"* said|strong=\"H6310\"* to|strong=\"H6213\"* him|strong=\"H6213\"*, “Run, speak|strong=\"H6310\"* to|strong=\"H6213\"* this|strong=\"H6213\"* young man|strong=\"H5375\"*, saying|strong=\"H6310\"*, ‘Jerusalem will|strong=\"H1471\"* be|strong=\"H3808\"* inhabited as|strong=\"H6213\"* villages without|strong=\"H3808\"* walls, because of|strong=\"H7218\"* the|strong=\"H5375\"* multitude of|strong=\"H7218\"* men|strong=\"H7218\"* and|strong=\"H3063\"* livestock in|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3027\"* I|strong=\"H2009\"*,’ says Yahweh|strong=\"H3068\"*, ‘will|strong=\"H5869\"* be|strong=\"H3027\"* to|strong=\"H3027\"* her|strong=\"H5375\"* a|strong=\"H3068\"* wall of|strong=\"H3027\"* fire around|strong=\"H3027\"* it|strong=\"H7200\"*, and|strong=\"H3027\"* I|strong=\"H2009\"* will|strong=\"H5869\"* be|strong=\"H3027\"* the|strong=\"H7200\"* glory in|strong=\"H3027\"* the|strong=\"H7200\"* middle of|strong=\"H3027\"* her|strong=\"H5375\"*." + }, + { + "verseNum": 6, + "text": "Come|strong=\"H1980\"*! Come|strong=\"H1980\"*! Flee from|strong=\"H1980\"* the|strong=\"H7200\"* land of|strong=\"H7341\"* the|strong=\"H7200\"* north,’ says Yahweh|strong=\"H3068\"*; ‘for|strong=\"H3389\"* I|strong=\"H7200\"* have|strong=\"H7200\"* spread|strong=\"H1980\"* you|strong=\"H4100\"* abroad|strong=\"H1980\"* as|strong=\"H3389\"* the|strong=\"H7200\"* four winds of|strong=\"H7341\"* the|strong=\"H7200\"* sky,’ says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "‘Come|strong=\"H3318\"*, Zion! Escape|strong=\"H3318\"*, you|strong=\"H1696\"* who|strong=\"H4397\"* dwell with|strong=\"H1696\"* the|strong=\"H3318\"* daughter of|strong=\"H4397\"* Babylon.’" + }, + { + "verseNum": 8, + "text": "For|strong=\"H3427\"* Yahweh|strong=\"H3068\"* of|strong=\"H3427\"* Armies says|strong=\"H1696\"*: ‘For|strong=\"H3427\"* honor he|strong=\"H3389\"* has|strong=\"H1696\"* sent me|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H8432\"* nations which plundered you|strong=\"H8432\"*; for|strong=\"H3427\"* he|strong=\"H3389\"* who|strong=\"H3427\"* touches you|strong=\"H8432\"* touches the|strong=\"H8432\"* apple of|strong=\"H3427\"* his|strong=\"H8432\"* eye." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3068\"*, behold, I|strong=\"H3068\"* will|strong=\"H3068\"* shake my|strong=\"H3068\"* hand over|strong=\"H3068\"* them|strong=\"H5439\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* plunder to|strong=\"H3068\"* those|strong=\"H1961\"* who|strong=\"H3068\"* served|strong=\"H1961\"* them|strong=\"H5439\"*; and|strong=\"H3068\"* you|strong=\"H8432\"* will|strong=\"H3068\"* know that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies has|strong=\"H3068\"* sent|strong=\"H3068\"* me|strong=\"H1961\"*." + }, + { + "verseNum": 10, + "text": "Sing and|strong=\"H3068\"* rejoice, daughter of|strong=\"H3068\"* Zion|strong=\"H6566\"*! For|strong=\"H3588\"* behold, I|strong=\"H3588\"* come and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* dwell within you|strong=\"H3588\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "Many nations shall|strong=\"H1323\"* join|strong=\"H3427\"* themselves to|strong=\"H1323\"* Yahweh|strong=\"H3068\"* in|strong=\"H3427\"* that|strong=\"H4422\"* day, and|strong=\"H3427\"* shall|strong=\"H1323\"* be|strong=\"H6726\"* my|strong=\"H4422\"* people|strong=\"H3427\"*; and|strong=\"H3427\"* I will|strong=\"H1323\"* dwell|strong=\"H3427\"* among|strong=\"H3427\"* you|strong=\"H6726\"*, and|strong=\"H3427\"* you|strong=\"H6726\"* shall|strong=\"H1323\"* know that|strong=\"H4422\"* Yahweh|strong=\"H3068\"* of|strong=\"H1323\"* Armies has|strong=\"H6726\"* sent me to|strong=\"H1323\"* you|strong=\"H6726\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* inherit Judah as|strong=\"H3068\"* his|strong=\"H3068\"* portion in|strong=\"H3068\"* the|strong=\"H3588\"* holy land, and|strong=\"H3068\"* will|strong=\"H3068\"* again|strong=\"H7971\"* choose Jerusalem|strong=\"H3519\"*." + }, + { + "verseNum": 13, + "text": "Be|strong=\"H1961\"* silent, all|strong=\"H3045\"* flesh, before|strong=\"H5921\"* Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* roused himself|strong=\"H3027\"* from|strong=\"H5921\"* his|strong=\"H3068\"* holy habitation!”" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H3068\"* showed|strong=\"H7200\"* me|strong=\"H6440\"* Joshua|strong=\"H3091\"* the|strong=\"H6440\"* high|strong=\"H1419\"* priest|strong=\"H3548\"* standing|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*, and|strong=\"H3068\"* Satan|strong=\"H7854\"* standing|strong=\"H5975\"* at|strong=\"H5921\"* his|strong=\"H3068\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* to|strong=\"H3068\"* be|strong=\"H3068\"* his|strong=\"H3068\"* adversary|strong=\"H7854\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Satan|strong=\"H7854\"*, “Yahweh|strong=\"H3068\"* rebuke|strong=\"H1605\"* you|strong=\"H3808\"*, Satan|strong=\"H7854\"*! Yes, Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* has|strong=\"H3068\"* chosen Jerusalem|strong=\"H3389\"* rebuke|strong=\"H1605\"* you|strong=\"H3808\"*! Isn’t this|strong=\"H2088\"* a|strong=\"H3068\"* burning stick plucked|strong=\"H5337\"* out|strong=\"H5337\"* of|strong=\"H3068\"* the|strong=\"H3068\"* fire?”" + }, + { + "verseNum": 3, + "text": "Now|strong=\"H1961\"* Joshua|strong=\"H3091\"* was|strong=\"H1961\"* clothed|strong=\"H3847\"* with|strong=\"H3847\"* filthy|strong=\"H6674\"* garments, and|strong=\"H6440\"* was|strong=\"H1961\"* standing|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* angel|strong=\"H4397\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H5921\"* answered|strong=\"H6030\"* and|strong=\"H6030\"* spoke|strong=\"H6030\"* to|strong=\"H5921\"* those|strong=\"H5921\"* who|strong=\"H5975\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, saying, “Take|strong=\"H5493\"* the|strong=\"H6440\"* filthy|strong=\"H6674\"* garments off|strong=\"H5493\"* him|strong=\"H6440\"*.” To|strong=\"H5921\"* him|strong=\"H6440\"* he|strong=\"H5921\"* said|strong=\"H6030\"*, “Behold|strong=\"H7200\"*, I|strong=\"H5921\"* have|strong=\"H5771\"* caused|strong=\"H5674\"* your|strong=\"H5921\"* iniquity|strong=\"H5771\"* to|strong=\"H5921\"* pass|strong=\"H5674\"* from|strong=\"H5493\"* you|strong=\"H6440\"*, and|strong=\"H6030\"* I|strong=\"H5921\"* will|strong=\"H5771\"* clothe|strong=\"H3847\"* you|strong=\"H6440\"* with|strong=\"H3847\"* rich clothing|strong=\"H3847\"*.”" + }, + { + "verseNum": 5, + "text": "I|strong=\"H5921\"* said, “Let|strong=\"H7760\"* them|strong=\"H5921\"* set|strong=\"H7760\"* a|strong=\"H3068\"* clean|strong=\"H2889\"* turban|strong=\"H6797\"* on|strong=\"H5921\"* his|strong=\"H7760\"* head|strong=\"H7218\"*.”" + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* solemnly|strong=\"H5749\"* assured Joshua|strong=\"H3091\"*, saying," + }, + { + "verseNum": 7, + "text": "“Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: ‘If you|strong=\"H5414\"* will|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* my|strong=\"H8104\"* ways|strong=\"H1870\"*, and|strong=\"H3068\"* if you|strong=\"H5414\"* will|strong=\"H3068\"* follow|strong=\"H3212\"* my|strong=\"H8104\"* instructions|strong=\"H1870\"*, then|strong=\"H1571\"* you|strong=\"H5414\"* also|strong=\"H1571\"* shall|strong=\"H3068\"* judge|strong=\"H1777\"* my|strong=\"H8104\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* shall|strong=\"H3068\"* also|strong=\"H1571\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* courts|strong=\"H2691\"*, and|strong=\"H3068\"* I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* place|strong=\"H5414\"* of|strong=\"H1004\"* access among these|strong=\"H1004\"* who|strong=\"H3068\"* stand|strong=\"H5975\"* by|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "Hear|strong=\"H8085\"* now|strong=\"H4994\"*, Joshua|strong=\"H3091\"* the|strong=\"H6440\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*, you|strong=\"H3588\"* and|strong=\"H1419\"* your|strong=\"H6440\"* fellows|strong=\"H7453\"* who|strong=\"H3548\"* sit|strong=\"H3427\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* men|strong=\"H1419\"* who|strong=\"H3548\"* are|strong=\"H1992\"* a|strong=\"H3068\"* sign|strong=\"H4159\"*; for|strong=\"H3588\"*, behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H5650\"* bring out|strong=\"H6440\"* my|strong=\"H8085\"* servant|strong=\"H5650\"*, the|strong=\"H6440\"* Branch|strong=\"H6780\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, the|strong=\"H6440\"* stone that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* set|strong=\"H5414\"* before|strong=\"H6440\"* Joshua|strong=\"H3091\"*: on|strong=\"H5921\"* one|strong=\"H1931\"* stone are|strong=\"H3117\"* seven|strong=\"H7651\"* eyes|strong=\"H5869\"*; behold|strong=\"H2009\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* engrave|strong=\"H6605\"* its|strong=\"H5414\"* inscription|strong=\"H6603\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, ‘and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* remove|strong=\"H4185\"* the|strong=\"H6440\"* iniquity|strong=\"H5771\"* of|strong=\"H3068\"* that|strong=\"H3588\"* land|strong=\"H6440\"* in|strong=\"H5921\"* one|strong=\"H1931\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, ‘you|strong=\"H3117\"* will|strong=\"H3068\"* invite|strong=\"H7121\"* every|strong=\"H3117\"* man his|strong=\"H3068\"* neighbor|strong=\"H7453\"* under|strong=\"H8478\"* the|strong=\"H5002\"* vine|strong=\"H1612\"* and|strong=\"H3068\"* under|strong=\"H8478\"* the|strong=\"H5002\"* fig|strong=\"H8384\"* tree|strong=\"H8384\"*.’”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H7725\"* angel|strong=\"H4397\"* who|strong=\"H4397\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* me|strong=\"H7725\"* came|strong=\"H7725\"* again|strong=\"H7725\"* and|strong=\"H7725\"* wakened|strong=\"H5782\"* me|strong=\"H7725\"*, as|strong=\"H1696\"* a|strong=\"H3068\"* man who|strong=\"H4397\"* is|strong=\"H1696\"* wakened|strong=\"H5782\"* out|strong=\"H7725\"* of|strong=\"H4397\"* his|strong=\"H7725\"* sleep|strong=\"H8142\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3605\"* said to|strong=\"H5921\"* me|strong=\"H7200\"*, “What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3605\"* see|strong=\"H7200\"*?”" + }, + { + "verseNum": 3, + "text": "and|strong=\"H8147\"* two|strong=\"H8147\"* olive|strong=\"H2132\"* trees|strong=\"H2132\"* by|strong=\"H5921\"* it|strong=\"H5921\"*, one|strong=\"H8147\"* on|strong=\"H5921\"* the|strong=\"H5921\"* right|strong=\"H3225\"* side|strong=\"H3225\"* of|strong=\"H5921\"* the|strong=\"H5921\"* bowl|strong=\"H1543\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* other|strong=\"H8147\"* on|strong=\"H5921\"* the|strong=\"H5921\"* left|strong=\"H8040\"* side|strong=\"H3225\"* of|strong=\"H5921\"* it|strong=\"H5921\"*.”" + }, + { + "verseNum": 4, + "text": "I|strong=\"H4100\"* answered|strong=\"H6030\"* and|strong=\"H6030\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1696\"* angel|strong=\"H4397\"* who|strong=\"H4397\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* me|strong=\"H1696\"*, saying|strong=\"H1696\"*, “What|strong=\"H4100\"* are|strong=\"H4100\"* these|strong=\"H1696\"*, my|strong=\"H1696\"* lord?”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6030\"* the|strong=\"H3045\"* angel|strong=\"H4397\"* who|strong=\"H1992\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* me|strong=\"H1696\"* answered|strong=\"H6030\"* me|strong=\"H1696\"*, “Don’t you|strong=\"H3045\"* know|strong=\"H3045\"* what|strong=\"H4100\"* these|strong=\"H1992\"* are|strong=\"H1992\"*?”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H6030\"* he|strong=\"H3588\"* answered|strong=\"H6030\"* and|strong=\"H3068\"* spoke|strong=\"H1697\"* to|strong=\"H3068\"* me|strong=\"H6030\"*, saying|strong=\"H1697\"*, “This|strong=\"H2088\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* to|strong=\"H3068\"* Zerubbabel|strong=\"H2216\"*, saying|strong=\"H1697\"*, ‘Not|strong=\"H3808\"* by|strong=\"H3068\"* might|strong=\"H3581\"*, nor|strong=\"H3808\"* by|strong=\"H3068\"* power|strong=\"H3581\"*, but|strong=\"H3588\"* by|strong=\"H3068\"* my|strong=\"H3068\"* Spirit|strong=\"H7307\"*,’ says|strong=\"H1697\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 7, + "text": "Who|strong=\"H4310\"* are|strong=\"H4310\"* you|strong=\"H6440\"*, great|strong=\"H1419\"* mountain|strong=\"H2022\"*? Before|strong=\"H6440\"* Zerubbabel|strong=\"H2216\"* you|strong=\"H6440\"* are|strong=\"H4310\"* a|strong=\"H3068\"* plain|strong=\"H4334\"*; and|strong=\"H1419\"* he|strong=\"H6440\"* will|strong=\"H4310\"* bring|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H6440\"* capstone with|strong=\"H6440\"* shouts|strong=\"H8663\"* of|strong=\"H2022\"* ‘Grace|strong=\"H2580\"*, grace|strong=\"H2580\"*, to|strong=\"H3318\"* it|strong=\"H6440\"*!’”" + }, + { + "verseNum": 8, + "text": "Moreover|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 9, + "text": "“The|strong=\"H3588\"* hands|strong=\"H3027\"* of|strong=\"H1004\"* Zerubbabel|strong=\"H2216\"* have|strong=\"H3068\"* laid|strong=\"H3245\"* the|strong=\"H3588\"* foundation|strong=\"H3245\"* of|strong=\"H1004\"* this|strong=\"H2088\"* house|strong=\"H1004\"*. His|strong=\"H3068\"* hands|strong=\"H3027\"* shall|strong=\"H3068\"* also|strong=\"H3068\"* finish|strong=\"H1214\"* it|strong=\"H3588\"*; and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H3068\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 10, + "text": "Indeed|strong=\"H3588\"*, who|strong=\"H4310\"* despises the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H3068\"* small|strong=\"H6996\"* things|strong=\"H3605\"*? For|strong=\"H3588\"* these|strong=\"H1992\"* seven|strong=\"H7651\"* shall|strong=\"H3068\"* rejoice|strong=\"H8055\"*, and|strong=\"H3068\"* shall|strong=\"H3068\"* see|strong=\"H7200\"* the|strong=\"H3605\"* plumb line in|strong=\"H3068\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Zerubbabel|strong=\"H2216\"*. These|strong=\"H1992\"* are|strong=\"H3117\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, which|strong=\"H3068\"* run|strong=\"H5869\"* back|strong=\"H7751\"* and|strong=\"H3068\"* forth|strong=\"H7751\"* through|strong=\"H3027\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H6030\"* I|strong=\"H5921\"* asked|strong=\"H4100\"* him|strong=\"H5921\"*, “What|strong=\"H4100\"* are|strong=\"H4100\"* these|strong=\"H8147\"* two|strong=\"H8147\"* olive|strong=\"H2132\"* trees|strong=\"H2132\"* on|strong=\"H5921\"* the|strong=\"H5921\"* right|strong=\"H3225\"* side|strong=\"H3225\"* of|strong=\"H5921\"* the|strong=\"H5921\"* lamp stand and|strong=\"H6030\"* on|strong=\"H5921\"* the|strong=\"H5921\"* left|strong=\"H8040\"* side|strong=\"H3225\"* of|strong=\"H5921\"* it|strong=\"H5921\"*?”" + }, + { + "verseNum": 12, + "text": "I|strong=\"H5921\"* asked|strong=\"H4100\"* him|strong=\"H5921\"* the|strong=\"H5921\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, “What|strong=\"H4100\"* are|strong=\"H3027\"* these|strong=\"H8147\"* two|strong=\"H8147\"* olive|strong=\"H2132\"* branches|strong=\"H7641\"*, which|strong=\"H4100\"* are|strong=\"H3027\"* beside|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* golden|strong=\"H2091\"* spouts that|strong=\"H3027\"* pour the|strong=\"H5921\"* golden|strong=\"H2091\"* oil|strong=\"H7324\"* out|strong=\"H7324\"* of|strong=\"H3027\"* themselves|strong=\"H5921\"*?”" + }, + { + "verseNum": 13, + "text": "He|strong=\"H3808\"* answered me|strong=\"H3808\"*, “Don’t you|strong=\"H3045\"* know|strong=\"H3045\"* what|strong=\"H4100\"* these are|strong=\"H4100\"*?”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H5975\"* he|strong=\"H3605\"* said, “These|strong=\"H8147\"* are|strong=\"H1121\"* the|strong=\"H3605\"* two|strong=\"H8147\"* anointed|strong=\"H3323\"* ones|strong=\"H1121\"* who|strong=\"H3605\"* stand|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H3605\"* Lord+ 4:14 The word translated “Lord” is “Adonai.”* of|strong=\"H1121\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth.”" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H2009\"* again|strong=\"H7725\"* I|strong=\"H2009\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H7200\"* eyes|strong=\"H5869\"* and|strong=\"H7725\"* saw|strong=\"H7200\"*, and|strong=\"H7725\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* flying|strong=\"H5774\"* scroll|strong=\"H4039\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6242\"* said to|strong=\"H7200\"* me|strong=\"H7200\"*, “What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H4100\"* see|strong=\"H7200\"*?”" + }, + { + "verseNum": 3, + "text": "Then|strong=\"H3318\"* he|strong=\"H3588\"* said|strong=\"H3318\"* to|strong=\"H3318\"* me|strong=\"H6440\"*, “This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H3605\"* curse|strong=\"H7650\"* that|strong=\"H3588\"* goes|strong=\"H3318\"* out|strong=\"H3318\"* over|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* land|strong=\"H6440\"*, for|strong=\"H3588\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* steals|strong=\"H1589\"* shall|strong=\"H6440\"* be|strong=\"H6440\"* cut off|strong=\"H5921\"* according|strong=\"H5921\"* to|strong=\"H3318\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* one|strong=\"H2088\"* side|strong=\"H2088\"*; and|strong=\"H6440\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* swears|strong=\"H7650\"* falsely shall|strong=\"H6440\"* be|strong=\"H6440\"* cut off|strong=\"H5921\"* according|strong=\"H5921\"* to|strong=\"H3318\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* other|strong=\"H2088\"* side|strong=\"H2088\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* cause|strong=\"H8267\"* it|strong=\"H8432\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*, “and|strong=\"H3068\"* it|strong=\"H8432\"* will|strong=\"H3068\"* enter into|strong=\"H8432\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5002\"* thief|strong=\"H1590\"*, and|strong=\"H3068\"* into|strong=\"H8432\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* him|strong=\"H3318\"* who|strong=\"H3068\"* swears|strong=\"H7650\"* falsely|strong=\"H8267\"* by|strong=\"H7650\"* my|strong=\"H3068\"* name|strong=\"H8034\"*; and|strong=\"H3068\"* it|strong=\"H8432\"* will|strong=\"H3068\"* remain|strong=\"H3885\"* in|strong=\"H3068\"* the|strong=\"H5002\"* middle|strong=\"H8432\"* of|strong=\"H1004\"* his|strong=\"H3068\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* destroy|strong=\"H3615\"* it|strong=\"H8432\"* with|strong=\"H1004\"* its|strong=\"H3318\"* timber|strong=\"H6086\"* and|strong=\"H3068\"* its|strong=\"H3318\"* stones.”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H1696\"* the|strong=\"H7200\"* angel|strong=\"H4397\"* who|strong=\"H4397\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* me|strong=\"H4994\"* came|strong=\"H3318\"* forward|strong=\"H3318\"* and|strong=\"H5869\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H4994\"*, “Lift|strong=\"H5375\"* up|strong=\"H5375\"* now|strong=\"H4994\"* your|strong=\"H5375\"* eyes|strong=\"H5869\"* and|strong=\"H5869\"* see|strong=\"H7200\"* what|strong=\"H4100\"* this|strong=\"H2063\"* is|strong=\"H4100\"* that|strong=\"H7200\"* is|strong=\"H4100\"* appearing|strong=\"H7200\"*.”" + }, + { + "verseNum": 6, + "text": "I|strong=\"H4100\"* said|strong=\"H3318\"*, “What|strong=\"H4100\"* is|strong=\"H1931\"* it|strong=\"H1931\"*?”" + }, + { + "verseNum": 7, + "text": "and|strong=\"H3427\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* lead|strong=\"H5777\"* cover|strong=\"H3603\"* weighing one|strong=\"H5375\"* talent|strong=\"H3603\"*+ 5:7 A talent is about 30 kilograms or 66 pounds.* was|strong=\"H3427\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"*—and|strong=\"H3427\"* there|strong=\"H2009\"* was|strong=\"H3427\"* a|strong=\"H3068\"* woman sitting|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5375\"* middle|strong=\"H8432\"* of|strong=\"H3427\"* the|strong=\"H5375\"* ephah+ 5:7 1 ephah is about 22 liters or about 2/3 of a bushel* basket.”" + }, + { + "verseNum": 8, + "text": "He|strong=\"H6310\"* said|strong=\"H6310\"*, “This|strong=\"H2063\"* is|strong=\"H6310\"* Wickedness|strong=\"H7564\"*;” and|strong=\"H6310\"* he|strong=\"H6310\"* threw|strong=\"H7993\"* her|strong=\"H2063\"* down|strong=\"H7993\"* into|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H6310\"* the|strong=\"H8432\"* ephah basket; and|strong=\"H6310\"* he|strong=\"H6310\"* threw|strong=\"H7993\"* the|strong=\"H8432\"* lead|strong=\"H5777\"* weight on|strong=\"H6310\"* its|strong=\"H7993\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H3318\"* I|strong=\"H2009\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H7200\"* eyes|strong=\"H5869\"* and|strong=\"H8064\"* saw|strong=\"H7200\"*, and|strong=\"H8064\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* were|strong=\"H5869\"* two|strong=\"H8147\"* women; and|strong=\"H8064\"* the|strong=\"H7200\"* wind|strong=\"H7307\"* was|strong=\"H7307\"* in|strong=\"H8064\"* their|strong=\"H5375\"* wings|strong=\"H3671\"*. Now|strong=\"H2009\"* they|strong=\"H2007\"* had|strong=\"H5869\"* wings|strong=\"H3671\"* like|strong=\"H3318\"* the|strong=\"H7200\"* wings|strong=\"H3671\"* of|strong=\"H7307\"* a|strong=\"H3068\"* stork|strong=\"H2624\"*, and|strong=\"H8064\"* they|strong=\"H2007\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H7200\"* ephah basket between|strong=\"H7307\"* earth|strong=\"H8064\"* and|strong=\"H8064\"* the|strong=\"H7200\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 10, + "text": "Then|strong=\"H1696\"* I|strong=\"H3212\"* said|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1696\"* angel|strong=\"H4397\"* who|strong=\"H1992\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* me|strong=\"H1696\"*, “Where|strong=\"H1992\"* are|strong=\"H1992\"* these|strong=\"H1992\"* carrying the|strong=\"H1696\"* ephah basket?”" + }, + { + "verseNum": 11, + "text": "He|strong=\"H8033\"* said to|strong=\"H5921\"* me|strong=\"H5921\"*, “To|strong=\"H5921\"* build|strong=\"H1129\"* her|strong=\"H5921\"* a|strong=\"H3068\"* house|strong=\"H1004\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1004\"* Shinar|strong=\"H8152\"*. When|strong=\"H5921\"* it|strong=\"H5921\"* is|strong=\"H8033\"* prepared|strong=\"H3559\"*, she|strong=\"H5921\"* will|strong=\"H1004\"* be|strong=\"H1004\"* set|strong=\"H3559\"* there|strong=\"H8033\"* in|strong=\"H5921\"* her|strong=\"H5921\"* own place|strong=\"H1004\"*.”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Again|strong=\"H7725\"* I|strong=\"H2009\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H7200\"* eyes|strong=\"H5869\"*, and|strong=\"H7725\"* saw|strong=\"H7200\"*, and|strong=\"H7725\"* behold|strong=\"H2009\"*, four chariots|strong=\"H4818\"* came|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H7725\"* between two|strong=\"H8147\"* mountains|strong=\"H2022\"*; and|strong=\"H7725\"* the|strong=\"H7200\"* mountains|strong=\"H2022\"* were|strong=\"H5869\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 2, + "text": "In|strong=\"H7223\"* the|strong=\"H7223\"* first|strong=\"H7223\"* chariot|strong=\"H4818\"* were|strong=\"H5483\"* red horses|strong=\"H5483\"*. In|strong=\"H7223\"* the|strong=\"H7223\"* second|strong=\"H8145\"* chariot|strong=\"H4818\"* were|strong=\"H5483\"* black|strong=\"H7838\"* horses|strong=\"H5483\"*." + }, + { + "verseNum": 3, + "text": "In|strong=\"H4818\"* the|strong=\"H7992\"* third|strong=\"H7992\"* chariot|strong=\"H4818\"* were|strong=\"H5483\"* white|strong=\"H3836\"* horses|strong=\"H5483\"*. In|strong=\"H4818\"* the|strong=\"H7992\"* fourth|strong=\"H7243\"* chariot|strong=\"H4818\"* were|strong=\"H5483\"* dappled|strong=\"H1261\"* horses|strong=\"H5483\"*, all of|strong=\"H4818\"* them powerful." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H6030\"* I|strong=\"H4100\"* asked|strong=\"H4100\"* the|strong=\"H1696\"* angel|strong=\"H4397\"* who|strong=\"H4397\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* me|strong=\"H1696\"*, “What|strong=\"H4100\"* are|strong=\"H4100\"* these|strong=\"H1696\"*, my|strong=\"H1696\"* lord?”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H3605\"* angel|strong=\"H4397\"* answered|strong=\"H6030\"* me|strong=\"H5921\"*, “These|strong=\"H3605\"* are|strong=\"H8064\"* the|strong=\"H3605\"* four winds|strong=\"H7307\"* of|strong=\"H7307\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, which|strong=\"H7307\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* standing|strong=\"H3320\"* before|strong=\"H5921\"* the|strong=\"H3605\"* Lord of|strong=\"H7307\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3318\"* one with|strong=\"H3318\"* the|strong=\"H3318\"* black|strong=\"H7838\"* horses|strong=\"H5483\"* goes|strong=\"H3318\"* out|strong=\"H3318\"* toward|strong=\"H3318\"* the|strong=\"H3318\"* north|strong=\"H6828\"* country; and|strong=\"H5483\"* the|strong=\"H3318\"* white|strong=\"H3836\"* went|strong=\"H3318\"* out|strong=\"H3318\"* after|strong=\"H3318\"* them|strong=\"H3318\"*; and|strong=\"H5483\"* the|strong=\"H3318\"* dappled|strong=\"H1261\"* went|strong=\"H3318\"* out|strong=\"H3318\"* toward|strong=\"H3318\"* the|strong=\"H3318\"* south|strong=\"H8486\"* country.”" + }, + { + "verseNum": 7, + "text": "The|strong=\"H3318\"* strong went|strong=\"H1980\"* out|strong=\"H3318\"*, and|strong=\"H1980\"* sought|strong=\"H1245\"* to|strong=\"H1980\"* go|strong=\"H1980\"* that|strong=\"H3212\"* they|strong=\"H3318\"* might walk|strong=\"H1980\"* back|strong=\"H1980\"* and|strong=\"H1980\"* forth|strong=\"H3318\"* through|strong=\"H1980\"* the|strong=\"H3318\"* earth. He|strong=\"H1980\"* said|strong=\"H3318\"*, “Go|strong=\"H1980\"* around|strong=\"H1980\"* and|strong=\"H1980\"* through|strong=\"H1980\"* the|strong=\"H3318\"* earth!” So|strong=\"H1980\"* they|strong=\"H3318\"* walked|strong=\"H1980\"* back|strong=\"H1980\"* and|strong=\"H1980\"* forth|strong=\"H3318\"* through|strong=\"H1980\"* the|strong=\"H3318\"* earth." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H1696\"* he|strong=\"H1696\"* called|strong=\"H2199\"* to|strong=\"H1696\"* me|strong=\"H7200\"*, and|strong=\"H7200\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7200\"*, saying|strong=\"H1696\"*, “Behold|strong=\"H7200\"*, those|strong=\"H3318\"* who go|strong=\"H3318\"* toward|strong=\"H3318\"* the|strong=\"H7200\"* north|strong=\"H6828\"* country have|strong=\"H7200\"* quieted|strong=\"H5117\"* my|strong=\"H7200\"* spirit|strong=\"H7307\"* in|strong=\"H1696\"* the|strong=\"H7200\"* north|strong=\"H6828\"* country.”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 10, + "text": "“Take|strong=\"H3947\"* of|strong=\"H1121\"* them|strong=\"H3947\"* of|strong=\"H1121\"* the|strong=\"H3947\"* captivity|strong=\"H1473\"*, even of|strong=\"H1121\"* Heldai|strong=\"H2469\"*, of|strong=\"H1121\"* Tobijah|strong=\"H2900\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* Jedaiah|strong=\"H3048\"*; and|strong=\"H1121\"* come the|strong=\"H3947\"* same|strong=\"H1931\"* day|strong=\"H3117\"*, and|strong=\"H1121\"* go into|strong=\"H3947\"* the|strong=\"H3947\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zephaniah|strong=\"H6846\"*, where|strong=\"H1004\"* they|strong=\"H3117\"* have|strong=\"H1121\"* come from|strong=\"H1121\"* Babylon." + }, + { + "verseNum": 11, + "text": "Yes, take|strong=\"H3947\"* silver|strong=\"H3701\"* and|strong=\"H1121\"* gold|strong=\"H2091\"*, and|strong=\"H1121\"* make|strong=\"H6213\"* crowns|strong=\"H5850\"*, and|strong=\"H1121\"* set|strong=\"H7760\"* them|strong=\"H6213\"* on|strong=\"H7760\"* the|strong=\"H3947\"* head|strong=\"H7218\"* of|strong=\"H1121\"* Joshua|strong=\"H3091\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehozadak|strong=\"H3087\"*, the|strong=\"H3947\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*;" + }, + { + "verseNum": 12, + "text": "and|strong=\"H3068\"* speak to|strong=\"H3068\"* him|strong=\"H8478\"*, saying, ‘Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*, “Behold|strong=\"H2009\"*, the|strong=\"H3541\"* man whose|strong=\"H8034\"* name|strong=\"H8034\"* is|strong=\"H3068\"* the|strong=\"H3541\"* Branch|strong=\"H6780\"*! He|strong=\"H3068\"* will|strong=\"H3068\"* grow|strong=\"H6779\"* up|strong=\"H1129\"* out|strong=\"H6779\"* of|strong=\"H3068\"* his|strong=\"H3068\"* place|strong=\"H8478\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* build|strong=\"H1129\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1931\"* will|strong=\"H3068\"* build|strong=\"H1129\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*. He|strong=\"H1931\"* will|strong=\"H3068\"* bear|strong=\"H5375\"* the|strong=\"H5921\"* glory|strong=\"H1935\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* sit|strong=\"H3427\"* and|strong=\"H3068\"* rule|strong=\"H4910\"* on|strong=\"H5921\"* his|strong=\"H5375\"* throne|strong=\"H3678\"*. He|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* priest|strong=\"H3548\"* on|strong=\"H5921\"* his|strong=\"H5375\"* throne|strong=\"H3678\"*. The|strong=\"H5921\"* counsel|strong=\"H6098\"* of|strong=\"H3068\"* peace|strong=\"H7965\"* will|strong=\"H3068\"* be|strong=\"H1961\"* between|strong=\"H7965\"* them|strong=\"H5921\"* both|strong=\"H8147\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3068\"* crowns|strong=\"H5850\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* to|strong=\"H3068\"* Helem|strong=\"H2494\"*, to|strong=\"H3068\"* Tobijah|strong=\"H2900\"*, to|strong=\"H3068\"* Jedaiah|strong=\"H3048\"*, and|strong=\"H1121\"* to|strong=\"H3068\"* Hen|strong=\"H2581\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zephaniah|strong=\"H6846\"*, for|strong=\"H3068\"* a|strong=\"H3068\"* memorial|strong=\"H2146\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*." + }, + { + "verseNum": 15, + "text": "Those|strong=\"H8085\"* who|strong=\"H3068\"* are|strong=\"H3068\"* far|strong=\"H7350\"* off|strong=\"H7350\"* shall|strong=\"H3068\"* come|strong=\"H1961\"* and|strong=\"H3068\"* build|strong=\"H1129\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*; and|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H3068\"* you|strong=\"H3588\"*. This|strong=\"H3588\"* will|strong=\"H3068\"* happen|strong=\"H1961\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* diligently|strong=\"H8085\"* obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*.”’”+ 6:15 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).*" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* fourth year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Darius|strong=\"H1867\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Zechariah|strong=\"H2148\"* in|strong=\"H8141\"* the|strong=\"H3068\"* fourth day|strong=\"H2320\"* of|strong=\"H4428\"* the|strong=\"H3068\"* ninth|strong=\"H8671\"* month|strong=\"H2320\"*, the|strong=\"H3068\"* month|strong=\"H2320\"* of|strong=\"H4428\"* Chislev|strong=\"H3691\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H6440\"* people of|strong=\"H3068\"* Bethel|strong=\"H1008\"* sent|strong=\"H7971\"* Sharezer|strong=\"H8272\"* and|strong=\"H3068\"* Regem Melech and|strong=\"H3068\"* their|strong=\"H3068\"* men to|strong=\"H3068\"* entreat|strong=\"H2470\"* Yahweh|strong=\"H3068\"*’s favor|strong=\"H6440\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H3068\"* to|strong=\"H3068\"* speak to|strong=\"H3068\"* the|strong=\"H6213\"* priests|strong=\"H3548\"* of|strong=\"H1004\"* the|strong=\"H6213\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* and|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H6213\"* prophets|strong=\"H5030\"*, saying, “Should|strong=\"H3068\"* I|strong=\"H2088\"* weep|strong=\"H1058\"* in|strong=\"H8141\"* the|strong=\"H6213\"* fifth|strong=\"H2549\"* month|strong=\"H2320\"*, separating|strong=\"H5144\"* myself, as|strong=\"H6213\"* I|strong=\"H2088\"* have|strong=\"H3068\"* done|strong=\"H6213\"* these|strong=\"H2088\"* so|strong=\"H6213\"* many|strong=\"H4100\"* years|strong=\"H8141\"*?”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H1961\"* the|strong=\"H3068\"* word|strong=\"H1697\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 5, + "text": "“Speak to|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H8141\"* the|strong=\"H3605\"* land and|strong=\"H3548\"* to|strong=\"H5971\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, saying, ‘When|strong=\"H3588\"* you|strong=\"H3588\"* fasted|strong=\"H6684\"* and|strong=\"H3548\"* mourned|strong=\"H5594\"* in|strong=\"H8141\"* the|strong=\"H3605\"* fifth|strong=\"H2549\"* and|strong=\"H3548\"* in|strong=\"H8141\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* month for|strong=\"H3588\"* these|strong=\"H2088\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"*, did|strong=\"H5971\"* you|strong=\"H3588\"* at|strong=\"H5971\"* all|strong=\"H3605\"* fast|strong=\"H6684\"* to|strong=\"H5971\"* me|strong=\"H3588\"*, really|strong=\"H2088\"* to|strong=\"H5971\"* me|strong=\"H3588\"*?" + }, + { + "verseNum": 6, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* eat and|strong=\"H8354\"* when|strong=\"H3588\"* you|strong=\"H3588\"* drink|strong=\"H8354\"*, don’t you|strong=\"H3588\"* eat for|strong=\"H3588\"* yourselves and|strong=\"H8354\"* drink|strong=\"H8354\"* for|strong=\"H3588\"* yourselves?" + }, + { + "verseNum": 7, + "text": "Aren’t these|strong=\"H7121\"* the|strong=\"H3068\"* words|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* proclaimed|strong=\"H7121\"* by|strong=\"H3027\"* the|strong=\"H3068\"* former|strong=\"H7223\"* prophets|strong=\"H5030\"* when|strong=\"H1961\"* Jerusalem|strong=\"H3389\"* was|strong=\"H3068\"* inhabited|strong=\"H3427\"* and|strong=\"H3068\"* in|strong=\"H3427\"* prosperity|strong=\"H7961\"*, and|strong=\"H3068\"* its|strong=\"H5439\"* cities|strong=\"H5892\"* around|strong=\"H5439\"* her|strong=\"H5439\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* South|strong=\"H5045\"* and|strong=\"H3068\"* the|strong=\"H3068\"* lowland|strong=\"H8219\"* were|strong=\"H1961\"* inhabited|strong=\"H3427\"*?’”" + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Zechariah|strong=\"H2148\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 9, + "text": "“Thus|strong=\"H3541\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* spoken, saying, ‘Execute|strong=\"H6213\"* true|strong=\"H3068\"* judgment|strong=\"H4941\"*, and|strong=\"H3068\"* show|strong=\"H6213\"* kindness|strong=\"H2617\"* and|strong=\"H3068\"* compassion|strong=\"H7356\"* every|strong=\"H6213\"* man to|strong=\"H3068\"* his|strong=\"H3068\"* brother." + }, + { + "verseNum": 10, + "text": "Don’t oppress|strong=\"H6231\"* the|strong=\"H6231\"* widow, the|strong=\"H6231\"* fatherless|strong=\"H3490\"*, the|strong=\"H6231\"* foreigner|strong=\"H1616\"*, nor|strong=\"H7451\"* the|strong=\"H6231\"* poor|strong=\"H6041\"*; and|strong=\"H6041\"* let none of|strong=\"H3824\"* you|strong=\"H6231\"* devise|strong=\"H2803\"* evil|strong=\"H7451\"* against|strong=\"H3824\"* his|strong=\"H2803\"* brother in|strong=\"H1616\"* your|strong=\"H6231\"* heart|strong=\"H3824\"*.’" + }, + { + "verseNum": 11, + "text": "But|strong=\"H3513\"* they|strong=\"H5414\"* refused|strong=\"H3985\"* to|strong=\"H5414\"* listen|strong=\"H8085\"*, and|strong=\"H8085\"* turned|strong=\"H5414\"* their|strong=\"H5414\"* backs|strong=\"H3802\"*, and|strong=\"H8085\"* stopped|strong=\"H3513\"* their|strong=\"H5414\"* ears, that|strong=\"H8085\"* they|strong=\"H5414\"* might not|strong=\"H5414\"* hear|strong=\"H8085\"*." + }, + { + "verseNum": 12, + "text": "Yes, they|strong=\"H3068\"* made|strong=\"H7760\"* their|strong=\"H3068\"* hearts|strong=\"H3820\"* as|strong=\"H1697\"* hard|strong=\"H1419\"* as|strong=\"H1697\"* flint|strong=\"H8068\"*, lest they|strong=\"H3068\"* might|strong=\"H3068\"* hear|strong=\"H8085\"* the|strong=\"H8085\"* law|strong=\"H8451\"* and|strong=\"H3068\"* the|strong=\"H8085\"* words|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* had|strong=\"H3068\"* sent|strong=\"H7971\"* by|strong=\"H3027\"* his|strong=\"H7760\"* Spirit|strong=\"H7307\"* by|strong=\"H3027\"* the|strong=\"H8085\"* former|strong=\"H7223\"* prophets|strong=\"H5030\"*. Therefore|strong=\"H7971\"* great|strong=\"H1419\"* wrath|strong=\"H7110\"* came|strong=\"H1961\"* from|strong=\"H3027\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 13, + "text": "It|strong=\"H7121\"* has|strong=\"H3068\"* come|strong=\"H1961\"* to|strong=\"H3068\"* pass|strong=\"H1961\"* that|strong=\"H8085\"*, as|strong=\"H1961\"* he|strong=\"H3651\"* called|strong=\"H7121\"* and|strong=\"H3068\"* they|strong=\"H3651\"* refused|strong=\"H3808\"* to|strong=\"H3068\"* listen|strong=\"H8085\"*, so|strong=\"H3651\"* they|strong=\"H3651\"* will|strong=\"H3068\"* call|strong=\"H7121\"* and|strong=\"H3068\"* I|strong=\"H3651\"* will|strong=\"H3068\"* not|strong=\"H3808\"* listen|strong=\"H8085\"*,” said|strong=\"H7121\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*;" + }, + { + "verseNum": 14, + "text": "“but|strong=\"H3808\"* I|strong=\"H5921\"* will|strong=\"H1471\"* scatter them|strong=\"H5921\"* with|strong=\"H5921\"* a|strong=\"H3068\"* whirlwind|strong=\"H5590\"* among|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* which|strong=\"H1471\"* they|strong=\"H3808\"* have|strong=\"H3045\"* not|strong=\"H3808\"* known|strong=\"H3045\"*. Thus|strong=\"H3808\"* the|strong=\"H3605\"* land was|strong=\"H3605\"* desolate|strong=\"H8047\"* after|strong=\"H5921\"* them|strong=\"H5921\"*, so|strong=\"H3808\"* that|strong=\"H3045\"* no|strong=\"H3808\"* man|strong=\"H3605\"* passed|strong=\"H5674\"* through|strong=\"H5674\"* nor|strong=\"H3808\"* returned|strong=\"H7725\"*; for|strong=\"H5921\"* they|strong=\"H3808\"* made|strong=\"H7760\"* the|strong=\"H3605\"* pleasant|strong=\"H2532\"* land desolate|strong=\"H8047\"*.”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* word|strong=\"H1697\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “I|strong=\"H3541\"* am|strong=\"H3068\"* jealous|strong=\"H7065\"* for|strong=\"H3068\"* Zion|strong=\"H6726\"* with|strong=\"H3068\"* great|strong=\"H1419\"* jealousy|strong=\"H7068\"*, and|strong=\"H3068\"* I|strong=\"H3541\"* am|strong=\"H3068\"* jealous|strong=\"H7065\"* for|strong=\"H3068\"* her|strong=\"H7065\"* with|strong=\"H3068\"* great|strong=\"H1419\"* wrath|strong=\"H2534\"*.”" + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “I|strong=\"H3541\"* have|strong=\"H3068\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Zion|strong=\"H6726\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* dwell|strong=\"H7931\"* in|strong=\"H3068\"* the|strong=\"H3541\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*. Jerusalem|strong=\"H3389\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* called|strong=\"H7121\"* ‘The|strong=\"H3541\"* City|strong=\"H5892\"* of|strong=\"H3068\"* Truth;’ and|strong=\"H3068\"* the|strong=\"H3541\"* mountain|strong=\"H2022\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, ‘The|strong=\"H3541\"* Holy|strong=\"H6944\"* Mountain|strong=\"H2022\"*.’”" + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “Old|strong=\"H2205\"* men|strong=\"H2205\"* and|strong=\"H3068\"* old|strong=\"H2205\"* women|strong=\"H2205\"* will|strong=\"H3068\"* again|strong=\"H5750\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3541\"* streets|strong=\"H7339\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, every|strong=\"H3117\"* man|strong=\"H2205\"* with|strong=\"H3068\"* his|strong=\"H3068\"* staff|strong=\"H4938\"* in|strong=\"H3427\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* because|strong=\"H7230\"* of|strong=\"H3068\"* their|strong=\"H3068\"* old|strong=\"H2205\"* age|strong=\"H3117\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H4390\"* streets|strong=\"H7339\"* of|strong=\"H5892\"* the|strong=\"H4390\"* city|strong=\"H5892\"* will|strong=\"H5892\"* be|strong=\"H5892\"* full|strong=\"H4390\"* of|strong=\"H5892\"* boys|strong=\"H3206\"* and|strong=\"H5892\"* girls|strong=\"H3207\"* playing|strong=\"H7832\"* in|strong=\"H5892\"* its|strong=\"H4390\"* streets|strong=\"H7339\"*.”" + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H5002\"*: “If|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3068\"* marvelous|strong=\"H6381\"* in|strong=\"H3068\"* the|strong=\"H5002\"* eyes|strong=\"H5869\"* of|strong=\"H3068\"* the|strong=\"H5002\"* remnant|strong=\"H7611\"* of|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"* in|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, should|strong=\"H3068\"* it|strong=\"H3588\"* also|strong=\"H1571\"* be|strong=\"H3068\"* marvelous|strong=\"H6381\"* in|strong=\"H3068\"* my|strong=\"H3068\"* eyes|strong=\"H5869\"*?” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* save|strong=\"H3467\"* my|strong=\"H3068\"* people|strong=\"H5971\"* from|strong=\"H3068\"* the|strong=\"H3541\"* east|strong=\"H4217\"* country and|strong=\"H3068\"* from|strong=\"H3068\"* the|strong=\"H3541\"* west|strong=\"H3996\"* country." + }, + { + "verseNum": 8, + "text": "I|strong=\"H8432\"* will|strong=\"H1961\"* bring|strong=\"H1961\"* them|strong=\"H8432\"*, and|strong=\"H5971\"* they|strong=\"H5971\"* will|strong=\"H1961\"* dwell|strong=\"H7931\"* within|strong=\"H8432\"* Jerusalem|strong=\"H3389\"*. They|strong=\"H5971\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H1961\"* people|strong=\"H5971\"*, and|strong=\"H5971\"* I|strong=\"H8432\"* will|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H8432\"* God, in|strong=\"H7931\"* truth and|strong=\"H5971\"* in|strong=\"H7931\"* righteousness|strong=\"H6666\"*.”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “Let your|strong=\"H3068\"* hands|strong=\"H3027\"* be|strong=\"H1697\"* strong|strong=\"H2388\"*, you|strong=\"H3117\"* who|strong=\"H3068\"* hear|strong=\"H8085\"* in|strong=\"H3068\"* these|strong=\"H8085\"* days|strong=\"H3117\"* these|strong=\"H8085\"* words|strong=\"H1697\"* from|strong=\"H3027\"* the|strong=\"H8085\"* mouth|strong=\"H6310\"* of|strong=\"H1004\"* the|strong=\"H8085\"* prophets|strong=\"H5030\"* who|strong=\"H3068\"* were|strong=\"H3117\"* in|strong=\"H3068\"* the|strong=\"H8085\"* day|strong=\"H3117\"* that|strong=\"H3117\"* the|strong=\"H8085\"* foundation|strong=\"H3245\"* of|strong=\"H1004\"* the|strong=\"H8085\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* was|strong=\"H3068\"* laid|strong=\"H3245\"*, even|strong=\"H1129\"* the|strong=\"H8085\"* temple|strong=\"H1004\"*, that|strong=\"H3117\"* it|strong=\"H3117\"* might|strong=\"H3068\"* be|strong=\"H1697\"* built|strong=\"H1129\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* before|strong=\"H6440\"* those|strong=\"H1992\"* days|strong=\"H3117\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* wages|strong=\"H7939\"* for|strong=\"H3588\"* man|strong=\"H3605\"* nor|strong=\"H3808\"* any|strong=\"H3605\"* wages|strong=\"H7939\"* for|strong=\"H3588\"* an|strong=\"H1961\"* animal|strong=\"H1961\"*, neither|strong=\"H3808\"* was|strong=\"H1961\"* there|strong=\"H1961\"* any|strong=\"H3605\"* peace|strong=\"H7965\"* to|strong=\"H3318\"* him|strong=\"H6440\"* who|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"* or|strong=\"H3808\"* came|strong=\"H1961\"* in|strong=\"H3117\"*, because|strong=\"H3588\"* of|strong=\"H3117\"* the|strong=\"H3605\"* adversary|strong=\"H6862\"*. For|strong=\"H3588\"* I|strong=\"H3588\"* set|strong=\"H7971\"* all|strong=\"H3605\"* men|strong=\"H3605\"* everyone|strong=\"H3605\"* against|strong=\"H6440\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H3808\"* now|strong=\"H6258\"* I|strong=\"H3117\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* to|strong=\"H3068\"* the|strong=\"H5002\"* remnant|strong=\"H7611\"* of|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"* as|strong=\"H3117\"* in|strong=\"H3068\"* the|strong=\"H5002\"* former|strong=\"H7223\"* days|strong=\"H3117\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 12, + "text": "“For|strong=\"H3588\"* the|strong=\"H3605\"* seed|strong=\"H2233\"* of|strong=\"H2233\"* peace|strong=\"H7965\"* and|strong=\"H8064\"* the|strong=\"H3605\"* vine|strong=\"H1612\"* will|strong=\"H5971\"* yield|strong=\"H5414\"* its|strong=\"H3605\"* fruit|strong=\"H6529\"*, and|strong=\"H8064\"* the|strong=\"H3605\"* ground will|strong=\"H5971\"* give|strong=\"H5414\"* its|strong=\"H3605\"* increase|strong=\"H2981\"*, and|strong=\"H8064\"* the|strong=\"H3605\"* heavens|strong=\"H8064\"* will|strong=\"H5971\"* give|strong=\"H5414\"* their|strong=\"H3605\"* dew|strong=\"H2919\"*. I|strong=\"H3588\"* will|strong=\"H5971\"* cause|strong=\"H5414\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H2233\"* this|strong=\"H2088\"* people|strong=\"H5971\"* to|strong=\"H5414\"* inherit|strong=\"H5157\"* all|strong=\"H3605\"* these|strong=\"H2088\"* things|strong=\"H3605\"*." + }, + { + "verseNum": 13, + "text": "It|strong=\"H3651\"* shall|strong=\"H3478\"* come|strong=\"H1961\"* to|strong=\"H3478\"* pass|strong=\"H1961\"* that|strong=\"H1471\"*, as|strong=\"H1961\"* you|strong=\"H3651\"* were|strong=\"H3478\"* a|strong=\"H3068\"* curse|strong=\"H7045\"* among|strong=\"H3478\"* the|strong=\"H2388\"* nations|strong=\"H1471\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, so|strong=\"H3651\"* I|strong=\"H3651\"* will|strong=\"H1961\"* save|strong=\"H3467\"* you|strong=\"H3651\"*, and|strong=\"H3063\"* you|strong=\"H3651\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"*. Don’t be|strong=\"H1961\"* afraid|strong=\"H3372\"*. Let|strong=\"H3651\"* your|strong=\"H1961\"* hands|strong=\"H3027\"* be|strong=\"H1961\"* strong|strong=\"H2388\"*.”" + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “As|strong=\"H3068\"* I|strong=\"H3588\"* thought|strong=\"H2161\"* to|strong=\"H3068\"* do|strong=\"H7489\"* evil|strong=\"H7489\"* to|strong=\"H3068\"* you|strong=\"H3588\"* when|strong=\"H3588\"* your|strong=\"H3068\"* fathers provoked|strong=\"H7107\"* me|strong=\"H3808\"* to|strong=\"H3068\"* wrath|strong=\"H7107\"*,” says|strong=\"H3541\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, “and|strong=\"H3068\"* I|strong=\"H3588\"* didn’t repent|strong=\"H5162\"*," + }, + { + "verseNum": 15, + "text": "so|strong=\"H3651\"* again|strong=\"H7725\"* I|strong=\"H3117\"* have|strong=\"H3063\"* thought|strong=\"H2161\"* in|strong=\"H1004\"* these|strong=\"H1004\"* days|strong=\"H3117\"* to|strong=\"H7725\"* do|strong=\"H3190\"* good|strong=\"H3190\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* to|strong=\"H7725\"* the|strong=\"H3117\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*. Don’t be|strong=\"H3117\"* afraid|strong=\"H3372\"*." + }, + { + "verseNum": 16, + "text": "These|strong=\"H1696\"* are|strong=\"H1697\"* the|strong=\"H6213\"* things|strong=\"H1697\"* that|strong=\"H1697\"* you|strong=\"H6213\"* shall|strong=\"H1697\"* do|strong=\"H6213\"*: speak|strong=\"H1696\"* every|strong=\"H1697\"* man|strong=\"H8179\"* the|strong=\"H6213\"* truth with|strong=\"H6213\"* his|strong=\"H6213\"* neighbor|strong=\"H7453\"*. Execute|strong=\"H6213\"* the|strong=\"H6213\"* judgment|strong=\"H4941\"* of|strong=\"H1697\"* truth and|strong=\"H4941\"* peace|strong=\"H7965\"* in|strong=\"H6213\"* your|strong=\"H6213\"* gates|strong=\"H8179\"*," + }, + { + "verseNum": 17, + "text": "and|strong=\"H3068\"* let none|strong=\"H3605\"* of|strong=\"H3068\"* you|strong=\"H3588\"* devise|strong=\"H2803\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* your|strong=\"H3068\"* hearts|strong=\"H3824\"* against|strong=\"H8130\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"*, and|strong=\"H3068\"* love no|strong=\"H3605\"* false|strong=\"H8267\"* oath|strong=\"H7621\"*; for|strong=\"H3588\"* all|strong=\"H3605\"* these|strong=\"H3605\"* are|strong=\"H3068\"* things|strong=\"H3605\"* that|strong=\"H3588\"* I|strong=\"H3588\"* hate|strong=\"H8130\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3068\"* word|strong=\"H1697\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*." + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “The|strong=\"H3541\"* fasts of|strong=\"H1004\"* the|strong=\"H3541\"* fourth|strong=\"H7243\"*, fifth|strong=\"H2549\"*, seventh|strong=\"H7637\"*, and|strong=\"H3063\"* tenth|strong=\"H6224\"* months|strong=\"H7637\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* for|strong=\"H3068\"* the|strong=\"H3541\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* joy|strong=\"H8057\"*, gladness|strong=\"H8057\"*, and|strong=\"H3063\"* cheerful|strong=\"H2896\"* feasts|strong=\"H4150\"*. Therefore|strong=\"H3068\"* love truth and|strong=\"H3063\"* peace|strong=\"H7965\"*.”" + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “Many|strong=\"H7227\"* peoples|strong=\"H5971\"* and|strong=\"H3068\"* the|strong=\"H3541\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* many|strong=\"H7227\"* cities|strong=\"H5892\"* will|strong=\"H3068\"* yet|strong=\"H5750\"* come|strong=\"H5971\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* one|strong=\"H1571\"* will|strong=\"H3068\"* go|strong=\"H1980\"* to|strong=\"H1980\"* another|strong=\"H1571\"*, saying, ‘Let|strong=\"H3212\"*’s go|strong=\"H1980\"* speedily|strong=\"H1980\"* to|strong=\"H1980\"* entreat|strong=\"H2470\"* the|strong=\"H6440\"* favor|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1980\"* to|strong=\"H1980\"* seek|strong=\"H1245\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*. I|strong=\"H1571\"* will|strong=\"H3068\"* go|strong=\"H1980\"* also|strong=\"H1571\"*.’" + }, + { + "verseNum": 22, + "text": "Yes, many|strong=\"H7227\"* peoples|strong=\"H5971\"* and|strong=\"H3068\"* strong|strong=\"H6099\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* come|strong=\"H5971\"* to|strong=\"H3068\"* seek|strong=\"H1245\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3068\"* to|strong=\"H3068\"* entreat|strong=\"H2470\"* the|strong=\"H6440\"* favor|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “In|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, ten|strong=\"H6235\"* men|strong=\"H3605\"* out|strong=\"H2388\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* languages|strong=\"H3956\"* of|strong=\"H3068\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* take|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H3068\"* the|strong=\"H3605\"* skirt|strong=\"H3671\"* of|strong=\"H3068\"* him|strong=\"H5973\"* who|strong=\"H3605\"* is|strong=\"H3068\"* a|strong=\"H3068\"* Jew|strong=\"H3064\"*, saying, ‘We|strong=\"H3588\"* will|strong=\"H3068\"* go|strong=\"H3212\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* God|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3588\"*.’”" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* revelation." + }, + { + "verseNum": 2, + "text": "and|strong=\"H3966\"* Hamath|strong=\"H2574\"*, also|strong=\"H1571\"*, which|strong=\"H3588\"* borders|strong=\"H1379\"* on|strong=\"H1571\"* it|strong=\"H3588\"*," + }, + { + "verseNum": 3, + "text": "Tyre|strong=\"H6865\"* built|strong=\"H1129\"* herself a|strong=\"H3068\"* stronghold," + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H5221\"* Lord will|strong=\"H1931\"* dispossess|strong=\"H3423\"* her|strong=\"H5221\"*," + }, + { + "verseNum": 5, + "text": "Ashkelon will|strong=\"H4428\"* see|strong=\"H7200\"* it|strong=\"H3588\"*, and|strong=\"H4428\"* fear|strong=\"H3372\"*;" + }, + { + "verseNum": 6, + "text": "Foreigners will|strong=\"H6430\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Ashdod," + }, + { + "verseNum": 7, + "text": "I|strong=\"H1571\"* will|strong=\"H1961\"* take|strong=\"H5493\"* away|strong=\"H5493\"* his|strong=\"H5493\"* blood|strong=\"H1818\"* out|strong=\"H7604\"* of|strong=\"H6310\"* his|strong=\"H5493\"* mouth|strong=\"H6310\"*," + }, + { + "verseNum": 8, + "text": "I|strong=\"H3588\"* will|strong=\"H5869\"* encamp|strong=\"H2583\"* around|strong=\"H5921\"* my|strong=\"H7200\"* house|strong=\"H1004\"* against|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H4675\"*," + }, + { + "verseNum": 9, + "text": "Rejoice|strong=\"H1523\"* greatly|strong=\"H3966\"*, daughter|strong=\"H1323\"* of|strong=\"H1121\"* Zion|strong=\"H6726\"*!" + }, + { + "verseNum": 10, + "text": "I|strong=\"H5704\"* will|strong=\"H1471\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H5704\"* chariot|strong=\"H7393\"* from|strong=\"H3772\"* Ephraim" + }, + { + "verseNum": 11, + "text": "As|strong=\"H1571\"* for|strong=\"H7971\"* you|strong=\"H7971\"* also|strong=\"H1571\"*," + }, + { + "verseNum": 12, + "text": "Turn|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3117\"* stronghold|strong=\"H1225\"*, you|strong=\"H3117\"* prisoners of|strong=\"H3117\"* hope|strong=\"H8615\"*!" + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* indeed|strong=\"H3588\"* I|strong=\"H3588\"* bend|strong=\"H1869\"* Judah|strong=\"H3063\"* as|strong=\"H3588\"* a|strong=\"H3068\"* bow|strong=\"H7198\"* for|strong=\"H3588\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* seen|strong=\"H7200\"* over|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* will|strong=\"H3068\"* defend|strong=\"H1598\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* save|strong=\"H3467\"* them|strong=\"H5921\"* in|strong=\"H5921\"* that|strong=\"H3588\"* day|strong=\"H3117\"* as|strong=\"H3117\"* the|strong=\"H5921\"* flock|strong=\"H6629\"* of|strong=\"H3068\"* his|strong=\"H3068\"* people|strong=\"H5971\"*;" + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* how|strong=\"H4100\"* great is|strong=\"H4100\"* his|strong=\"H3588\"* goodness|strong=\"H2898\"*," + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Ask|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* rain|strong=\"H4306\"* in|strong=\"H3068\"* the|strong=\"H5414\"* spring|strong=\"H4456\"* time|strong=\"H6256\"*," + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* teraphim|strong=\"H8655\"*+ 10:2 teraphim were household idols that may have been associated with inheritance rights to the household property.* have|strong=\"H7462\"* spoken|strong=\"H1696\"* vanity|strong=\"H1892\"*," + }, + { + "verseNum": 3, + "text": "My|strong=\"H3068\"* anger is|strong=\"H3068\"* kindled|strong=\"H2734\"* against|strong=\"H5921\"* the|strong=\"H5921\"* shepherds|strong=\"H7462\"*," + }, + { + "verseNum": 4, + "text": "From|strong=\"H4480\"* him|strong=\"H3318\"* will|strong=\"H7198\"* come|strong=\"H3318\"* the|strong=\"H3605\"* cornerstone|strong=\"H6438\"*," + }, + { + "verseNum": 5, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* as|strong=\"H1961\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*," + }, + { + "verseNum": 6, + "text": "“I|strong=\"H3588\"* will|strong=\"H3068\"* strengthen|strong=\"H1396\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*," + }, + { + "verseNum": 7, + "text": "Ephraim will|strong=\"H3068\"* be|strong=\"H1961\"* like|strong=\"H3644\"* a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"*," + }, + { + "verseNum": 8, + "text": "I|strong=\"H3588\"* will|strong=\"H3588\"* signal for|strong=\"H3588\"* them|strong=\"H3588\"* and|strong=\"H7235\"* gather|strong=\"H6908\"* them|strong=\"H3588\"*," + }, + { + "verseNum": 9, + "text": "I|strong=\"H2142\"* will|strong=\"H5971\"* sow|strong=\"H2232\"* them|strong=\"H7725\"* among|strong=\"H5971\"* the|strong=\"H7725\"* peoples|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"H4714\"* will|strong=\"H4714\"* bring|strong=\"H7725\"* them|strong=\"H7725\"* again|strong=\"H7725\"* also out|strong=\"H4672\"* of|strong=\"H3808\"* the|strong=\"H7725\"* land of|strong=\"H3808\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 11, + "text": "He|strong=\"H3605\"* will|strong=\"H4714\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* of|strong=\"H7626\"* affliction|strong=\"H6869\"*," + }, + { + "verseNum": 12, + "text": "I|strong=\"H1980\"* will|strong=\"H3068\"* strengthen|strong=\"H1396\"* them|strong=\"H3068\"* in|strong=\"H1980\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Open|strong=\"H6605\"* your|strong=\"H6605\"* doors|strong=\"H1817\"*, Lebanon|strong=\"H3844\"*," + }, + { + "verseNum": 2, + "text": "Wail|strong=\"H3213\"*, cypress|strong=\"H1265\"* tree|strong=\"H1265\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* cedar has|strong=\"H3588\"* fallen|strong=\"H5307\"*," + }, + { + "verseNum": 3, + "text": "A|strong=\"H3068\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H3588\"* wailing|strong=\"H3215\"* of|strong=\"H6963\"* the|strong=\"H3588\"* shepherds|strong=\"H7462\"*!" + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"* says|strong=\"H3541\"*: “Feed|strong=\"H7462\"* the|strong=\"H3541\"* flock|strong=\"H6629\"* of|strong=\"H3068\"* slaughter|strong=\"H2028\"*." + }, + { + "verseNum": 5, + "text": "Their|strong=\"H3068\"* buyers slaughter|strong=\"H2026\"* them|strong=\"H5921\"* and|strong=\"H3068\"* go|strong=\"H3068\"* unpunished|strong=\"H3808\"*. Those|strong=\"H5921\"* who|strong=\"H3068\"* sell|strong=\"H4376\"* them|strong=\"H5921\"* say, ‘Blessed|strong=\"H1288\"* be|strong=\"H3808\"* Yahweh|strong=\"H3068\"*, for|strong=\"H5921\"* I|strong=\"H5921\"* am|strong=\"H3068\"* rich|strong=\"H6238\"*;’ and|strong=\"H3068\"* their|strong=\"H3068\"* own shepherds|strong=\"H7462\"* don’t pity|strong=\"H2550\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H5750\"* pity|strong=\"H2550\"* the|strong=\"H5002\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* the|strong=\"H5002\"* land,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; “but|strong=\"H3588\"*, behold|strong=\"H2009\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* deliver|strong=\"H5337\"* every|strong=\"H3068\"* one|strong=\"H3808\"* of|strong=\"H4428\"* the|strong=\"H5002\"* men into|strong=\"H5921\"* his|strong=\"H3068\"* neighbor|strong=\"H7453\"*’s hand|strong=\"H3027\"* and|strong=\"H3068\"* into|strong=\"H5921\"* the|strong=\"H5002\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* his|strong=\"H3068\"* king|strong=\"H4428\"*. They|strong=\"H3588\"* will|strong=\"H3068\"* strike|strong=\"H3807\"* the|strong=\"H5002\"* land, and|strong=\"H3068\"* out|strong=\"H4672\"* of|strong=\"H4428\"* their|strong=\"H3068\"* hand|strong=\"H3027\"* I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* deliver|strong=\"H5337\"* them|strong=\"H5921\"*.”" + }, + { + "verseNum": 7, + "text": "So|strong=\"H3651\"* I|strong=\"H3651\"* fed|strong=\"H7462\"* the|strong=\"H3947\"* flock|strong=\"H6629\"* to|strong=\"H7121\"* be|strong=\"H2256\"* slaughtered, especially the|strong=\"H3947\"* oppressed|strong=\"H6041\"* of|strong=\"H6629\"* the|strong=\"H3947\"* flock|strong=\"H6629\"*. I|strong=\"H3651\"* took|strong=\"H3947\"* for|strong=\"H7121\"* myself two|strong=\"H8147\"* staffs|strong=\"H4731\"*. The|strong=\"H3947\"* one|strong=\"H8147\"* I|strong=\"H3651\"* called|strong=\"H7121\"* “Favor|strong=\"H5278\"*” and|strong=\"H6041\"* the|strong=\"H3947\"* other|strong=\"H8147\"* I|strong=\"H3651\"* called|strong=\"H7121\"* “Union”, and|strong=\"H6041\"* I|strong=\"H3651\"* fed|strong=\"H7462\"* the|strong=\"H3947\"* flock|strong=\"H6629\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5315\"* cut|strong=\"H3582\"* off|strong=\"H3582\"* the|strong=\"H1571\"* three|strong=\"H7969\"* shepherds|strong=\"H7462\"* in|strong=\"H5315\"* one|strong=\"H1571\"* month|strong=\"H3391\"*; for|strong=\"H5315\"* my|strong=\"H7462\"* soul|strong=\"H5315\"* was|strong=\"H5315\"* weary of|strong=\"H5315\"* them|strong=\"H7462\"*, and|strong=\"H5315\"* their|strong=\"H1571\"* soul|strong=\"H5315\"* also|strong=\"H1571\"* loathed me|strong=\"H5315\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H3808\"* I|strong=\"H3808\"* said, “I|strong=\"H3808\"* will|strong=\"H1320\"* not|strong=\"H3808\"* feed|strong=\"H7462\"* you|strong=\"H3808\"*. That|strong=\"H1320\"* which|strong=\"H4191\"* dies|strong=\"H4191\"*, let|strong=\"H7604\"* it|strong=\"H3808\"* die|strong=\"H4191\"*; and|strong=\"H4191\"* that|strong=\"H1320\"* which|strong=\"H4191\"* is|strong=\"H1320\"* to|strong=\"H4191\"* be|strong=\"H4191\"* cut|strong=\"H3582\"* off|strong=\"H3582\"*, let|strong=\"H7604\"* it|strong=\"H3808\"* be|strong=\"H4191\"* cut|strong=\"H3582\"* off|strong=\"H3582\"*; and|strong=\"H4191\"* let|strong=\"H7604\"* those who|strong=\"H7604\"* are|strong=\"H1320\"* left|strong=\"H7604\"* eat|strong=\"H7462\"* each other’s flesh|strong=\"H1320\"*.”" + }, + { + "verseNum": 10, + "text": "I|strong=\"H3772\"* took|strong=\"H3947\"* my|strong=\"H3605\"* staff|strong=\"H4731\"* Favor|strong=\"H5278\"* and|strong=\"H5971\"* cut|strong=\"H3772\"* it|strong=\"H3947\"* apart, that|strong=\"H5971\"* I|strong=\"H3772\"* might|strong=\"H5971\"* break|strong=\"H6565\"* my|strong=\"H3605\"* covenant|strong=\"H1285\"* that|strong=\"H5971\"* I|strong=\"H3772\"* had|strong=\"H5971\"* made|strong=\"H3772\"* with|strong=\"H1285\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"*." + }, + { + "verseNum": 11, + "text": "It|strong=\"H1931\"* was|strong=\"H3068\"* broken|strong=\"H6565\"* in|strong=\"H3068\"* that|strong=\"H3588\"* day|strong=\"H3117\"*; and|strong=\"H3068\"* thus|strong=\"H3651\"* the|strong=\"H3588\"* poor|strong=\"H6041\"* of|strong=\"H3068\"* the|strong=\"H3588\"* flock|strong=\"H6629\"* that|strong=\"H3588\"* listened to|strong=\"H3068\"* me|strong=\"H8104\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* it|strong=\"H1931\"* was|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H3808\"* said to|strong=\"H5869\"* them, “If you|strong=\"H3808\"* think|strong=\"H5869\"* it|strong=\"H3808\"* best|strong=\"H2896\"*, give|strong=\"H3051\"* me|strong=\"H3051\"* my|strong=\"H2308\"* wages|strong=\"H7939\"*; and|strong=\"H3701\"* if not|strong=\"H3808\"*, keep them.” So|strong=\"H3808\"* they|strong=\"H3808\"* weighed|strong=\"H8254\"* for|strong=\"H5869\"* my|strong=\"H2308\"* wages|strong=\"H7939\"* thirty|strong=\"H7970\"* pieces of|strong=\"H5869\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H5921\"*, “Throw|strong=\"H7993\"* it|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H5921\"* potter|strong=\"H3335\"*—the|strong=\"H5921\"* handsome price|strong=\"H3701\"* that|strong=\"H3068\"* I|strong=\"H5921\"* was|strong=\"H3068\"* valued|strong=\"H3365\"* at|strong=\"H5921\"* by|strong=\"H5921\"* them|strong=\"H5921\"*!” I|strong=\"H5921\"* took|strong=\"H3947\"* the|strong=\"H5921\"* thirty|strong=\"H7970\"* pieces of|strong=\"H1004\"* silver|strong=\"H3701\"* and|strong=\"H3068\"* threw|strong=\"H7993\"* them|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H5921\"* potter|strong=\"H3335\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H3063\"* I|strong=\"H3478\"* cut|strong=\"H1438\"* apart my|strong=\"H6565\"* other|strong=\"H8145\"* staff|strong=\"H4731\"*, Union, that|strong=\"H3478\"* I|strong=\"H3478\"* might|strong=\"H3478\"* break|strong=\"H6565\"* the|strong=\"H6565\"* brotherhood between Judah|strong=\"H3063\"* and|strong=\"H3063\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H3947\"*, “Take|strong=\"H3947\"* for|strong=\"H3068\"* yourself yet|strong=\"H5750\"* again|strong=\"H5750\"* the|strong=\"H3947\"* equipment|strong=\"H3627\"* of|strong=\"H3068\"* a|strong=\"H3068\"* foolish shepherd|strong=\"H7462\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, I|strong=\"H3588\"* will|strong=\"H1320\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* a|strong=\"H3068\"* shepherd|strong=\"H7462\"* in|strong=\"H1320\"* the|strong=\"H3588\"* land who|strong=\"H3588\"* will|strong=\"H1320\"* not|strong=\"H3808\"* visit|strong=\"H6485\"* those|strong=\"H3588\"* who|strong=\"H3588\"* are|strong=\"H1245\"* cut|strong=\"H3582\"* off|strong=\"H3582\"*, neither|strong=\"H3808\"* will|strong=\"H1320\"* seek|strong=\"H1245\"* those|strong=\"H3588\"* who|strong=\"H3588\"* are|strong=\"H1245\"* scattered|strong=\"H5289\"*, nor|strong=\"H3808\"* heal|strong=\"H7495\"* that|strong=\"H3588\"* which|strong=\"H6485\"* is|strong=\"H2009\"* broken|strong=\"H7665\"*, nor|strong=\"H3808\"* feed|strong=\"H7462\"* that|strong=\"H3588\"* which|strong=\"H6485\"* is|strong=\"H2009\"* sound; but|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H1320\"* eat|strong=\"H7462\"* the|strong=\"H3588\"* meat|strong=\"H1320\"* of|strong=\"H1320\"* the|strong=\"H3588\"* fat|strong=\"H1277\"* sheep|strong=\"H6561\"*, and|strong=\"H6965\"* will|strong=\"H1320\"* tear|strong=\"H6561\"* their|strong=\"H1245\"* hoofs|strong=\"H6541\"* in|strong=\"H1320\"* pieces|strong=\"H7665\"*." + }, + { + "verseNum": 17, + "text": "Woe|strong=\"H1945\"* to|strong=\"H5921\"* the|strong=\"H5921\"* worthless shepherd|strong=\"H7473\"* who|strong=\"H1945\"* leaves|strong=\"H5800\"* the|strong=\"H5921\"* flock|strong=\"H6629\"*! The|strong=\"H5921\"* sword|strong=\"H2719\"* will|strong=\"H5869\"* strike his|strong=\"H5921\"* arm|strong=\"H2220\"* and|strong=\"H5869\"* his|strong=\"H5921\"* right|strong=\"H3225\"* eye|strong=\"H5869\"*. His|strong=\"H5921\"* arm|strong=\"H2220\"* will|strong=\"H5869\"* be|strong=\"H5869\"* completely|strong=\"H3001\"* withered|strong=\"H3001\"*, and|strong=\"H5869\"* his|strong=\"H5921\"* right|strong=\"H3225\"* eye|strong=\"H5869\"* will|strong=\"H5869\"* be|strong=\"H5869\"* totally|strong=\"H3001\"* blinded!”" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* revelation of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* concerning|strong=\"H5921\"* Israel|strong=\"H3478\"*: Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* stretches|strong=\"H5186\"* out|strong=\"H5186\"* the|strong=\"H5002\"* heavens|strong=\"H8064\"* and|strong=\"H3478\"* lays|strong=\"H3245\"* the|strong=\"H5002\"* foundation|strong=\"H3245\"* of|strong=\"H3068\"* the|strong=\"H5002\"* earth|strong=\"H8064\"*, and|strong=\"H3478\"* forms|strong=\"H3335\"* the|strong=\"H5002\"* spirit|strong=\"H7307\"* of|strong=\"H3068\"* man within|strong=\"H7130\"* him|strong=\"H5921\"* says|strong=\"H5002\"*:" + }, + { + "verseNum": 2, + "text": "“Behold|strong=\"H2009\"*, I|strong=\"H2009\"* will|strong=\"H1961\"* make|strong=\"H7760\"* Jerusalem|strong=\"H3389\"* a|strong=\"H3068\"* cup|strong=\"H5592\"* of|strong=\"H5971\"* reeling|strong=\"H7478\"* to|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* surrounding|strong=\"H5439\"* peoples|strong=\"H5971\"*, and|strong=\"H3063\"* it|strong=\"H7760\"* will|strong=\"H1961\"* also|strong=\"H1571\"* be|strong=\"H1961\"* on|strong=\"H5921\"* Judah|strong=\"H3063\"* in|strong=\"H5921\"* the|strong=\"H3605\"* siege|strong=\"H4692\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H7760\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H5921\"* that|strong=\"H5971\"* day|strong=\"H3117\"* that|strong=\"H5971\"* I|strong=\"H3117\"* will|strong=\"H1961\"* make|strong=\"H7760\"* Jerusalem|strong=\"H3389\"* a|strong=\"H3068\"* burdensome|strong=\"H6006\"* stone for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"*. All|strong=\"H3605\"* who|strong=\"H3605\"* burden|strong=\"H6006\"* themselves|strong=\"H7760\"* with|strong=\"H5921\"* it|strong=\"H7760\"* will|strong=\"H1961\"* be|strong=\"H1961\"* severely|strong=\"H8295\"* wounded, and|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* of|strong=\"H3117\"* the|strong=\"H3605\"* earth will|strong=\"H1961\"* be|strong=\"H1961\"* gathered|strong=\"H1471\"* together|strong=\"H5921\"* against|strong=\"H5921\"* it|strong=\"H7760\"*." + }, + { + "verseNum": 4, + "text": "In|strong=\"H5921\"* that|strong=\"H5971\"* day|strong=\"H3117\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “I|strong=\"H3117\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* every|strong=\"H3605\"* horse|strong=\"H5483\"* with|strong=\"H1004\"* terror and|strong=\"H3063\"* his|strong=\"H3605\"* rider|strong=\"H7392\"* with|strong=\"H1004\"* madness|strong=\"H7697\"*. I|strong=\"H3117\"* will|strong=\"H3068\"* open|strong=\"H6491\"* my|strong=\"H3605\"* eyes|strong=\"H5869\"* on|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* every|strong=\"H3605\"* horse|strong=\"H5483\"* of|strong=\"H1004\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* with|strong=\"H1004\"* blindness|strong=\"H5788\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3068\"* chieftains of|strong=\"H3068\"* Judah|strong=\"H3063\"* will|strong=\"H3068\"* say in|strong=\"H3427\"* their|strong=\"H3068\"* heart|strong=\"H3820\"*, ‘The|strong=\"H3068\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* are|strong=\"H3068\"* my|strong=\"H3068\"* strength in|strong=\"H3427\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* their|strong=\"H3068\"* God|strong=\"H3068\"*.’" + }, + { + "verseNum": 6, + "text": "In|strong=\"H3427\"* that|strong=\"H5971\"* day|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H5971\"* make|strong=\"H7760\"* the|strong=\"H3605\"* chieftains of|strong=\"H3117\"* Judah|strong=\"H3063\"* like|strong=\"H5921\"* a|strong=\"H3068\"* pan|strong=\"H3595\"* of|strong=\"H3117\"* fire among|strong=\"H5921\"* wood|strong=\"H6086\"*, and|strong=\"H3063\"* like|strong=\"H5921\"* a|strong=\"H3068\"* flaming torch|strong=\"H3940\"* among|strong=\"H5921\"* sheaves|strong=\"H5995\"*. They|strong=\"H3117\"* will|strong=\"H5971\"* devour all|strong=\"H3605\"* the|strong=\"H3605\"* surrounding|strong=\"H5439\"* peoples|strong=\"H5971\"* on|strong=\"H5921\"* the|strong=\"H3605\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H3063\"* on|strong=\"H5921\"* the|strong=\"H3605\"* left|strong=\"H8040\"*; and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"* will|strong=\"H5971\"* yet|strong=\"H5750\"* again|strong=\"H5750\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3605\"* own|strong=\"H5971\"* place|strong=\"H8478\"*, even|strong=\"H5750\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* also|strong=\"H3068\"* will|strong=\"H3068\"* save|strong=\"H3467\"* the|strong=\"H5921\"* tents of|strong=\"H1004\"* Judah|strong=\"H3063\"* first|strong=\"H7223\"*, that|strong=\"H3068\"* the|strong=\"H5921\"* glory|strong=\"H8597\"* of|strong=\"H1004\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"* and|strong=\"H3063\"* the|strong=\"H5921\"* glory|strong=\"H8597\"* of|strong=\"H1004\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"* not|strong=\"H3808\"* be|strong=\"H3808\"* magnified|strong=\"H1431\"* above|strong=\"H5921\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 8, + "text": "In|strong=\"H3427\"* that|strong=\"H3117\"* day|strong=\"H3117\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* defend|strong=\"H1598\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*. He|strong=\"H1931\"* who|strong=\"H1931\"* is|strong=\"H3068\"* feeble|strong=\"H3782\"* among|strong=\"H3427\"* them|strong=\"H6440\"* at|strong=\"H3427\"* that|strong=\"H3117\"* day|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H1961\"* like|strong=\"H1961\"* David|strong=\"H1732\"*, and|strong=\"H3068\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"* will|strong=\"H3068\"* be|strong=\"H1961\"* like|strong=\"H1961\"* God|strong=\"H3068\"*, like|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* before|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 9, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H5921\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, that|strong=\"H3605\"* I|strong=\"H3117\"* will|strong=\"H1961\"* seek|strong=\"H1245\"* to|strong=\"H1961\"* destroy|strong=\"H8045\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H3605\"* come|strong=\"H1961\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"H5921\"* will|strong=\"H1004\"* pour|strong=\"H8210\"* on|strong=\"H5921\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"* and|strong=\"H1004\"* on|strong=\"H5921\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"* the|strong=\"H5921\"* spirit|strong=\"H7307\"* of|strong=\"H1004\"* grace|strong=\"H2580\"* and|strong=\"H1004\"* of|strong=\"H1004\"* supplication|strong=\"H8469\"*. They|strong=\"H5921\"* will|strong=\"H1004\"* look|strong=\"H5027\"* to|strong=\"H5921\"* me|strong=\"H5921\"*+ 12:10 After “me”, the Hebrew has the two letters “Aleph Tav” (the first and last letters of the Hebrew alphabet), not as a word, but as a grammatical marker.* whom they|strong=\"H5921\"* have|strong=\"H3389\"* pierced|strong=\"H1856\"*; and|strong=\"H1004\"* they|strong=\"H5921\"* shall|strong=\"H1004\"* mourn|strong=\"H5594\"* for|strong=\"H5921\"* him|strong=\"H5921\"* as|strong=\"H3389\"* one|strong=\"H3173\"* mourns|strong=\"H5594\"* for|strong=\"H5921\"* his|strong=\"H1732\"* only|strong=\"H3173\"* son|strong=\"H3173\"*, and|strong=\"H1004\"* will|strong=\"H1004\"* grieve bitterly|strong=\"H4843\"* for|strong=\"H5921\"* him|strong=\"H5921\"* as|strong=\"H3389\"* one|strong=\"H3173\"* grieves for|strong=\"H5921\"* his|strong=\"H1732\"* firstborn|strong=\"H1060\"*." + }, + { + "verseNum": 11, + "text": "In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* there|strong=\"H3117\"* will|strong=\"H3389\"* be|strong=\"H3117\"* a|strong=\"H3068\"* great|strong=\"H1431\"* mourning|strong=\"H4553\"* in|strong=\"H3117\"* Jerusalem|strong=\"H3389\"*, like|strong=\"H3117\"* the|strong=\"H3117\"* mourning|strong=\"H4553\"* of|strong=\"H3117\"* Hadadrimmon|strong=\"H1910\"* in|strong=\"H3117\"* the|strong=\"H3117\"* valley|strong=\"H1237\"* of|strong=\"H3117\"* Megiddo|strong=\"H4023\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1732\"* land|strong=\"H4940\"* will|strong=\"H1004\"* mourn|strong=\"H5594\"*, every|strong=\"H4940\"* family|strong=\"H4940\"* apart; the|strong=\"H1732\"* family|strong=\"H4940\"* of|strong=\"H1004\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"* apart, and|strong=\"H1004\"* their|strong=\"H1732\"* wives apart; the|strong=\"H1732\"* family|strong=\"H4940\"* of|strong=\"H1004\"* the|strong=\"H1732\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Nathan|strong=\"H5416\"* apart, and|strong=\"H1004\"* their|strong=\"H1732\"* wives apart;" + }, + { + "verseNum": 13, + "text": "the|strong=\"H1004\"* family|strong=\"H4940\"* of|strong=\"H1004\"* the|strong=\"H1004\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Levi|strong=\"H3878\"* apart, and|strong=\"H1004\"* their wives apart; the|strong=\"H1004\"* family|strong=\"H4940\"* of|strong=\"H1004\"* the|strong=\"H1004\"* Shimeites|strong=\"H8097\"* apart, and|strong=\"H1004\"* their wives apart;" + }, + { + "verseNum": 14, + "text": "all|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* who|strong=\"H3605\"* remain|strong=\"H7604\"*, every|strong=\"H3605\"* family|strong=\"H4940\"* apart, and|strong=\"H3605\"* their|strong=\"H3605\"* wives apart." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "“In|strong=\"H3427\"* that|strong=\"H3117\"* day|strong=\"H3117\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* fountain|strong=\"H4726\"* opened|strong=\"H6605\"* to|strong=\"H1961\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"* and|strong=\"H3117\"* to|strong=\"H1961\"* the|strong=\"H3117\"* inhabitants|strong=\"H3427\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*, for|strong=\"H3427\"* sin|strong=\"H2403\"* and|strong=\"H3117\"* for|strong=\"H3427\"* uncleanness|strong=\"H5079\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H1931\"* will|strong=\"H3068\"* come|strong=\"H1961\"* to|strong=\"H3068\"* pass|strong=\"H5674\"* in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, that|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H5002\"* names|strong=\"H8034\"* of|strong=\"H3068\"* the|strong=\"H5002\"* idols|strong=\"H6091\"* out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H5002\"* land, and|strong=\"H3068\"* they|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H1961\"* remembered|strong=\"H2142\"* no|strong=\"H3808\"* more|strong=\"H4480\"*. I|strong=\"H3117\"* will|strong=\"H3068\"* also|strong=\"H1571\"* cause|strong=\"H1961\"* the|strong=\"H5002\"* prophets|strong=\"H5030\"* and|strong=\"H3068\"* the|strong=\"H5002\"* spirit|strong=\"H7307\"* of|strong=\"H3068\"* impurity|strong=\"H2932\"* to|strong=\"H3068\"* pass|strong=\"H5674\"* out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H5002\"* land." + }, + { + "verseNum": 3, + "text": "It|strong=\"H3588\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H3588\"* when|strong=\"H3588\"* anyone|strong=\"H3588\"* still|strong=\"H5750\"* prophesies|strong=\"H5012\"*, then|strong=\"H1961\"* his|strong=\"H3068\"* father|strong=\"H3205\"* and|strong=\"H3068\"* his|strong=\"H3068\"* mother who|strong=\"H3068\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* will|strong=\"H3068\"* tell|strong=\"H1696\"* him|strong=\"H3205\"*, ‘You|strong=\"H3588\"* must|strong=\"H3808\"* die, because|strong=\"H3588\"* you|strong=\"H3588\"* speak|strong=\"H1696\"* lies|strong=\"H8267\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*;’ and|strong=\"H3068\"* his|strong=\"H3068\"* father|strong=\"H3205\"* and|strong=\"H3068\"* his|strong=\"H3068\"* mother who|strong=\"H3068\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* will|strong=\"H3068\"* stab|strong=\"H1856\"* him|strong=\"H3205\"* when|strong=\"H3588\"* he|strong=\"H3588\"* prophesies|strong=\"H5012\"*." + }, + { + "verseNum": 4, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* the|strong=\"H3117\"* prophets|strong=\"H5030\"* will|strong=\"H1961\"* each|strong=\"H3117\"* be|strong=\"H1961\"* ashamed of|strong=\"H3117\"* his|strong=\"H1961\"* vision|strong=\"H2384\"* when|strong=\"H1961\"* he|strong=\"H1931\"* prophesies|strong=\"H5012\"*; they|strong=\"H3117\"* won’t wear|strong=\"H3847\"* a|strong=\"H3068\"* hairy|strong=\"H8181\"* mantle to|strong=\"H1961\"* deceive|strong=\"H3584\"*," + }, + { + "verseNum": 5, + "text": "but|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H3808\"* say, ‘I|strong=\"H3588\"* am no|strong=\"H3808\"* prophet|strong=\"H5030\"*, I|strong=\"H3588\"* am a|strong=\"H3068\"* tiller|strong=\"H5647\"* of|strong=\"H5030\"* the|strong=\"H3588\"* ground; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5030\"* been|strong=\"H5647\"* made|strong=\"H5647\"* a|strong=\"H3068\"* bondservant from|strong=\"H5030\"* my|strong=\"H3588\"* youth|strong=\"H5271\"*.’" + }, + { + "verseNum": 6, + "text": "One|strong=\"H3027\"* will|strong=\"H1004\"* say to|strong=\"H3027\"* him|strong=\"H5221\"*, ‘What|strong=\"H4100\"* are|strong=\"H3027\"* these|strong=\"H5221\"* wounds|strong=\"H4347\"* between your|strong=\"H5221\"* arms|strong=\"H3027\"*?’ Then|strong=\"H4100\"* he|strong=\"H1004\"* will|strong=\"H1004\"* answer, ‘Those with|strong=\"H1004\"* which|strong=\"H1004\"* I|strong=\"H4100\"* was|strong=\"H1004\"* wounded|strong=\"H5221\"* in|strong=\"H1004\"* the|strong=\"H5221\"* house|strong=\"H1004\"* of|strong=\"H1004\"* my|strong=\"H3027\"* friends.’" + }, + { + "verseNum": 7, + "text": "“Awake|strong=\"H5782\"*, sword|strong=\"H2719\"*, against|strong=\"H5921\"* my|strong=\"H3068\"* shepherd|strong=\"H7462\"*," + }, + { + "verseNum": 8, + "text": "It|strong=\"H1961\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H3605\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 9, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H7121\"* the|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* into|strong=\"H3701\"* the|strong=\"H3068\"* fire," + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Behold|strong=\"H2009\"*, a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* comes|strong=\"H3117\"*, when|strong=\"H3117\"* your|strong=\"H3068\"* plunder|strong=\"H7998\"* will|strong=\"H3068\"* be|strong=\"H3068\"* divided|strong=\"H2505\"* within|strong=\"H7130\"* you|strong=\"H3117\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"H1004\"* I|strong=\"H3808\"* will|strong=\"H1471\"* gather all|strong=\"H3605\"* nations|strong=\"H1471\"* against|strong=\"H4480\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3318\"* battle|strong=\"H4421\"*; and|strong=\"H1004\"* the|strong=\"H3605\"* city|strong=\"H5892\"* will|strong=\"H1471\"* be|strong=\"H3808\"* taken|strong=\"H3920\"*, the|strong=\"H3605\"* houses|strong=\"H1004\"* rifled|strong=\"H8155\"*, and|strong=\"H1004\"* the|strong=\"H3605\"* women ravished|strong=\"H7693\"*. Half|strong=\"H2677\"* of|strong=\"H1004\"* the|strong=\"H3605\"* city|strong=\"H5892\"* will|strong=\"H1471\"* go|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* captivity|strong=\"H1473\"*, and|strong=\"H1004\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H1004\"* the|strong=\"H3605\"* people|strong=\"H5971\"* will|strong=\"H1471\"* not|strong=\"H3808\"* be|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H4480\"* the|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H3318\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3068\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* those|strong=\"H1992\"* nations|strong=\"H1471\"*, as|strong=\"H3117\"* when|strong=\"H3117\"* he|strong=\"H3117\"* fought|strong=\"H3898\"* in|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* battle|strong=\"H7128\"*." + }, + { + "verseNum": 4, + "text": "His|strong=\"H6440\"* feet|strong=\"H7272\"* will|strong=\"H3389\"* stand|strong=\"H5975\"* in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* on|strong=\"H5921\"* the|strong=\"H6440\"* Mount|strong=\"H2022\"* of|strong=\"H3117\"* Olives|strong=\"H2132\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* before|strong=\"H6440\"* Jerusalem|strong=\"H3389\"* on|strong=\"H5921\"* the|strong=\"H6440\"* east|strong=\"H4217\"*; and|strong=\"H3117\"* the|strong=\"H6440\"* Mount|strong=\"H2022\"* of|strong=\"H3117\"* Olives|strong=\"H2132\"* will|strong=\"H3389\"* be|strong=\"H3117\"* split|strong=\"H1234\"* in|strong=\"H5921\"* two|strong=\"H3220\"* from|strong=\"H6440\"* east|strong=\"H4217\"* to|strong=\"H5921\"* west|strong=\"H3220\"*, making a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* valley|strong=\"H1516\"*. Half|strong=\"H2677\"* of|strong=\"H3117\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"* will|strong=\"H3389\"* move|strong=\"H4185\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* north|strong=\"H6828\"*, and|strong=\"H3117\"* half|strong=\"H2677\"* of|strong=\"H3117\"* it|strong=\"H1931\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* south|strong=\"H5045\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* flee|strong=\"H5127\"* by|strong=\"H3117\"* the|strong=\"H3605\"* valley|strong=\"H1516\"* of|strong=\"H4428\"* my|strong=\"H3605\"* mountains|strong=\"H2022\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* valley|strong=\"H1516\"* of|strong=\"H4428\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* shall|strong=\"H3068\"* reach|strong=\"H5060\"* to|strong=\"H3068\"* Azel. Yes|strong=\"H3588\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* flee|strong=\"H5127\"*, just|strong=\"H3605\"* like|strong=\"H5973\"* you|strong=\"H3588\"* fled|strong=\"H5127\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H3605\"* earthquake|strong=\"H7494\"* in|strong=\"H3068\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Uzziah|strong=\"H5818\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*. Yahweh|strong=\"H3068\"* my|strong=\"H3605\"* God|strong=\"H3068\"* will|strong=\"H3068\"* come|strong=\"H5060\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* holy|strong=\"H6918\"* ones|strong=\"H6918\"* with|strong=\"H5973\"* you|strong=\"H3588\"*.+ 14:5 Septuagint reads “him” instead of “you”.*" + }, + { + "verseNum": 6, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* there|strong=\"H1961\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* light, cold, or|strong=\"H3808\"* frost." + }, + { + "verseNum": 7, + "text": "It|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* unique day|strong=\"H3117\"* which|strong=\"H1931\"* is|strong=\"H3068\"* known|strong=\"H3045\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*—not|strong=\"H3808\"* day|strong=\"H3117\"*, and|strong=\"H3068\"* not|strong=\"H3808\"* night|strong=\"H3915\"*; but|strong=\"H3808\"* it|strong=\"H1931\"* will|strong=\"H3068\"* come|strong=\"H1961\"* to|strong=\"H3068\"* pass|strong=\"H1961\"* that|strong=\"H3045\"* at|strong=\"H3068\"* evening|strong=\"H6153\"* time|strong=\"H6256\"* there|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* light." + }, + { + "verseNum": 8, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* living|strong=\"H2416\"* waters|strong=\"H4325\"* will|strong=\"H1961\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Jerusalem|strong=\"H3389\"*, half|strong=\"H2677\"* of|strong=\"H3117\"* them|strong=\"H3318\"* toward|strong=\"H3318\"* the|strong=\"H3117\"* eastern|strong=\"H6931\"* sea|strong=\"H3220\"*, and|strong=\"H3117\"* half|strong=\"H2677\"* of|strong=\"H3117\"* them|strong=\"H3318\"* toward|strong=\"H3318\"* the|strong=\"H3117\"* western|strong=\"H3220\"* sea|strong=\"H3220\"*. It|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* so|strong=\"H1961\"* in|strong=\"H3117\"* summer|strong=\"H7019\"* and|strong=\"H3117\"* in|strong=\"H3117\"* winter|strong=\"H2779\"*." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* King|strong=\"H4428\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth. In|strong=\"H5921\"* that|strong=\"H3605\"* day|strong=\"H3117\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* one|strong=\"H3605\"*, and|strong=\"H3068\"* his|strong=\"H3605\"* name|strong=\"H8034\"* one|strong=\"H3605\"*." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H4725\"* will|strong=\"H4428\"* be|strong=\"H3389\"* made|strong=\"H3605\"* like|strong=\"H5704\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"*, from|strong=\"H5704\"* Geba|strong=\"H1387\"* to|strong=\"H5704\"* Rimmon|strong=\"H7417\"* south|strong=\"H5045\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H4428\"* she|strong=\"H5704\"* will|strong=\"H4428\"* be|strong=\"H3389\"* lifted|strong=\"H4428\"* up|strong=\"H5704\"* and|strong=\"H4428\"* will|strong=\"H4428\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* her|strong=\"H3605\"* place|strong=\"H4725\"*, from|strong=\"H5704\"* Benjamin|strong=\"H1144\"*’s gate|strong=\"H8179\"* to|strong=\"H5704\"* the|strong=\"H3605\"* place|strong=\"H4725\"* of|strong=\"H4428\"* the|strong=\"H3605\"* first|strong=\"H7223\"* gate|strong=\"H8179\"*, to|strong=\"H5704\"* the|strong=\"H3605\"* corner|strong=\"H6434\"* gate|strong=\"H8179\"*, and|strong=\"H4428\"* from|strong=\"H5704\"* the|strong=\"H3605\"* tower|strong=\"H4026\"* of|strong=\"H4428\"* Hananel|strong=\"H2606\"* to|strong=\"H5704\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s wine|strong=\"H3342\"* presses|strong=\"H3342\"*." + }, + { + "verseNum": 11, + "text": "Men will|strong=\"H1961\"* dwell|strong=\"H3427\"* therein|strong=\"H3427\"*, and|strong=\"H3389\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* curse|strong=\"H2764\"*; but|strong=\"H3808\"* Jerusalem|strong=\"H3389\"* will|strong=\"H1961\"* dwell|strong=\"H3427\"* safely." + }, + { + "verseNum": 12, + "text": "This|strong=\"H2063\"* will|strong=\"H3068\"* be|strong=\"H1961\"* the|strong=\"H3605\"* plague|strong=\"H4046\"* with|strong=\"H3068\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5062\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* who|strong=\"H3605\"* have|strong=\"H1961\"* fought|strong=\"H6633\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*: their|strong=\"H3605\"* flesh|strong=\"H1320\"* will|strong=\"H3068\"* consume away|strong=\"H4743\"* while|strong=\"H1961\"* they|strong=\"H3068\"* stand|strong=\"H5975\"* on|strong=\"H5921\"* their|strong=\"H3605\"* feet|strong=\"H7272\"*, and|strong=\"H3068\"* their|strong=\"H3605\"* eyes|strong=\"H5869\"* will|strong=\"H3068\"* consume away|strong=\"H4743\"* in|strong=\"H5921\"* their|strong=\"H3605\"* sockets|strong=\"H2356\"*, and|strong=\"H3068\"* their|strong=\"H3605\"* tongue|strong=\"H3956\"* will|strong=\"H3068\"* consume away|strong=\"H4743\"* in|strong=\"H5921\"* their|strong=\"H3605\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 13, + "text": "It|strong=\"H1931\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* a|strong=\"H3068\"* great|strong=\"H7227\"* panic|strong=\"H4103\"* from|strong=\"H5921\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* among|strong=\"H5921\"* them|strong=\"H5921\"*; and|strong=\"H3068\"* they|strong=\"H3117\"* will|strong=\"H3068\"* each|strong=\"H3117\"* seize|strong=\"H2388\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* his|strong=\"H3068\"* neighbor|strong=\"H7453\"*, and|strong=\"H3068\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* will|strong=\"H3068\"* rise|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* his|strong=\"H3068\"* neighbor|strong=\"H7453\"*." + }, + { + "verseNum": 14, + "text": "Judah|strong=\"H3063\"* also|strong=\"H1571\"* will|strong=\"H1471\"* fight|strong=\"H3898\"* at|strong=\"H3898\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H3063\"* the|strong=\"H3605\"* wealth|strong=\"H2428\"* of|strong=\"H7230\"* all|strong=\"H3605\"* the|strong=\"H3605\"* surrounding|strong=\"H5439\"* nations|strong=\"H1471\"* will|strong=\"H1471\"* be|strong=\"H1571\"* gathered|strong=\"H1471\"* together|strong=\"H1571\"*: gold|strong=\"H2091\"*, silver|strong=\"H3701\"*, and|strong=\"H3063\"* clothing, in|strong=\"H3063\"* great|strong=\"H3966\"* abundance|strong=\"H7230\"*." + }, + { + "verseNum": 15, + "text": "A|strong=\"H3068\"* plague|strong=\"H4046\"* like|strong=\"H1961\"* this|strong=\"H2063\"* will|strong=\"H1961\"* fall|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H3605\"* horse|strong=\"H5483\"*, on|strong=\"H1961\"* the|strong=\"H3605\"* mule|strong=\"H6505\"*, on|strong=\"H1961\"* the|strong=\"H3605\"* camel|strong=\"H1581\"*, on|strong=\"H1961\"* the|strong=\"H3605\"* donkey|strong=\"H2543\"*, and|strong=\"H5483\"* on|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* animals|strong=\"H1961\"* that|strong=\"H3605\"* will|strong=\"H1961\"* be|strong=\"H1961\"* in|strong=\"H1961\"* those|strong=\"H1992\"* camps|strong=\"H4264\"*." + }, + { + "verseNum": 16, + "text": "It|strong=\"H5921\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H3605\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3068\"* left|strong=\"H3498\"* of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H3605\"* came|strong=\"H1961\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* will|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* year|strong=\"H8141\"* to|strong=\"H3068\"* year|strong=\"H8141\"* to|strong=\"H3068\"* worship|strong=\"H7812\"* the|strong=\"H3605\"* King|strong=\"H4428\"*, Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* keep|strong=\"H2287\"* the|strong=\"H3605\"* feast|strong=\"H2282\"* of|strong=\"H4428\"* booths|strong=\"H5521\"*." + }, + { + "verseNum": 17, + "text": "It|strong=\"H5921\"* will|strong=\"H3068\"* be|strong=\"H1961\"* that|strong=\"H3068\"* whoever of|strong=\"H4428\"* all|strong=\"H5921\"* the|strong=\"H5921\"* families|strong=\"H4940\"* of|strong=\"H4428\"* the|strong=\"H5921\"* earth|strong=\"H5927\"* doesn’t go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3068\"* worship|strong=\"H7812\"* the|strong=\"H5921\"* King|strong=\"H4428\"*, Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, on|strong=\"H5921\"* them|strong=\"H5921\"* there|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* no|strong=\"H3808\"* rain|strong=\"H1653\"*." + }, + { + "verseNum": 18, + "text": "If|strong=\"H1961\"* the|strong=\"H5921\"* family|strong=\"H4940\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"* doesn’t go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H3068\"* doesn’t come|strong=\"H5927\"*, neither|strong=\"H3808\"* will|strong=\"H3068\"* it|strong=\"H5921\"* rain on|strong=\"H5921\"* them|strong=\"H5921\"*. This|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* the|strong=\"H5921\"* plague|strong=\"H4046\"* with|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5062\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* that|strong=\"H3068\"* don’t go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* keep|strong=\"H2287\"* the|strong=\"H5921\"* feast|strong=\"H2282\"* of|strong=\"H3068\"* booths|strong=\"H5521\"*." + }, + { + "verseNum": 19, + "text": "This|strong=\"H2063\"* will|strong=\"H1961\"* be|strong=\"H1961\"* the|strong=\"H3605\"* punishment|strong=\"H2403\"* of|strong=\"H2282\"* Egypt|strong=\"H4714\"* and|strong=\"H4714\"* the|strong=\"H3605\"* punishment|strong=\"H2403\"* of|strong=\"H2282\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H3605\"* don’t go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* keep|strong=\"H2287\"* the|strong=\"H3605\"* feast|strong=\"H2282\"* of|strong=\"H2282\"* booths|strong=\"H5521\"*." + }, + { + "verseNum": 20, + "text": "In|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* there|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* inscribed on|strong=\"H5921\"* the|strong=\"H6440\"* bells|strong=\"H4698\"* of|strong=\"H1004\"* the|strong=\"H6440\"* horses|strong=\"H5483\"*, “HOLY|strong=\"H6944\"* TO|strong=\"H3068\"* YAHWEH|strong=\"H3068\"*”; and|strong=\"H3068\"* the|strong=\"H6440\"* pots|strong=\"H5518\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* will|strong=\"H3068\"* be|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H6440\"* bowls|strong=\"H4219\"* before|strong=\"H6440\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 21, + "text": "Yes, every|strong=\"H3605\"* pot|strong=\"H5518\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* in|strong=\"H3068\"* Judah|strong=\"H3063\"* will|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*; and|strong=\"H3063\"* all|strong=\"H3605\"* those|strong=\"H1992\"* who|strong=\"H3605\"* sacrifice|strong=\"H2076\"* will|strong=\"H3068\"* come|strong=\"H1961\"* and|strong=\"H3063\"* take|strong=\"H3947\"* of|strong=\"H1004\"* them|strong=\"H1992\"*, and|strong=\"H3063\"* cook|strong=\"H1310\"* in|strong=\"H3068\"* them|strong=\"H1992\"*. In|strong=\"H3068\"* that|strong=\"H3605\"* day|strong=\"H3117\"* there|strong=\"H1961\"* will|strong=\"H3068\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* be|strong=\"H1961\"* a|strong=\"H3068\"* Canaanite|strong=\"H3669\"*+ 14:21 or, merchant* in|strong=\"H3068\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*." + } + ] + } + ] + }, + { + "name": "Malachi", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* revelation, Yahweh|strong=\"H3068\"*’s+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"* by|strong=\"H3027\"* Malachi|strong=\"H4401\"*." + }, + { + "verseNum": 2, + "text": "“I|strong=\"H3808\"* have|strong=\"H3068\"* loved you|strong=\"H3808\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "but Esau|strong=\"H6215\"* I|strong=\"H7760\"* hated|strong=\"H8130\"*, and|strong=\"H2022\"* made|strong=\"H7760\"* his|strong=\"H7760\"* mountains|strong=\"H2022\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*, and|strong=\"H2022\"* gave|strong=\"H7760\"* his|strong=\"H7760\"* heritage|strong=\"H5159\"* to|strong=\"H5159\"* the|strong=\"H7760\"* jackals of|strong=\"H2022\"* the|strong=\"H7760\"* wilderness|strong=\"H4057\"*.”" + }, + { + "verseNum": 4, + "text": "Whereas|strong=\"H3588\"* Edom says|strong=\"H3541\"*, “We|strong=\"H3588\"* are|strong=\"H1992\"* beaten|strong=\"H7567\"* down|strong=\"H2040\"*, but|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H3068\"* return|strong=\"H7725\"* and|strong=\"H3068\"* build|strong=\"H1129\"* the|strong=\"H3588\"* waste|strong=\"H2723\"* places|strong=\"H2723\"*,” Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*, “They|strong=\"H1992\"* shall|strong=\"H3068\"* build|strong=\"H1129\"*, but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* throw down|strong=\"H2040\"*; and|strong=\"H3068\"* men|strong=\"H5971\"* will|strong=\"H3068\"* call|strong=\"H7121\"* them|strong=\"H1992\"* ‘The|strong=\"H3588\"* Wicked Land|strong=\"H1366\"*,’ even|strong=\"H5704\"* the|strong=\"H3588\"* people|strong=\"H5971\"* against|strong=\"H3068\"* whom|strong=\"H1992\"* Yahweh|strong=\"H3068\"* shows wrath forever|strong=\"H5769\"*.”" + }, + { + "verseNum": 5, + "text": "Your|strong=\"H3068\"* eyes|strong=\"H5869\"* will|strong=\"H3068\"* see|strong=\"H7200\"*, and|strong=\"H3478\"* you|strong=\"H5921\"* will|strong=\"H3068\"* say|strong=\"H3478\"*, “Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* great|strong=\"H1431\"*—even|strong=\"H5869\"* beyond|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*!”" + }, + { + "verseNum": 6, + "text": "“A|strong=\"H3068\"* son|strong=\"H1121\"* honors|strong=\"H3513\"* his|strong=\"H3068\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* servant|strong=\"H5650\"* his|strong=\"H3068\"* master. If|strong=\"H1121\"* I|strong=\"H5650\"* am|strong=\"H3068\"* a|strong=\"H3068\"* father|strong=\"H1121\"*, then|strong=\"H4100\"* where|strong=\"H4100\"* is|strong=\"H3068\"* my|strong=\"H3068\"* honor|strong=\"H3519\"*? And|strong=\"H1121\"* if|strong=\"H1121\"* I|strong=\"H5650\"* am|strong=\"H3068\"* a|strong=\"H3068\"* master, where|strong=\"H4100\"* is|strong=\"H3068\"* the|strong=\"H3068\"* respect|strong=\"H4172\"* due me|strong=\"H5650\"*?” says Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"* to|strong=\"H3068\"* you|strong=\"H4100\"* priests|strong=\"H3548\"* who|strong=\"H3068\"* despise my|strong=\"H3068\"* name|strong=\"H8034\"*. “You|strong=\"H4100\"* say, ‘How|strong=\"H4100\"* have|strong=\"H3068\"* we|strong=\"H3068\"* despised your|strong=\"H3068\"* name|strong=\"H8034\"*?’" + }, + { + "verseNum": 7, + "text": "You|strong=\"H5921\"* offer|strong=\"H5066\"* polluted|strong=\"H1351\"* bread|strong=\"H3899\"* on|strong=\"H5921\"* my|strong=\"H3068\"* altar|strong=\"H4196\"*. You|strong=\"H5921\"* say, ‘How|strong=\"H4100\"* have|strong=\"H3068\"* we|strong=\"H3068\"* polluted|strong=\"H1351\"* you|strong=\"H5921\"*?’ In|strong=\"H5921\"* that|strong=\"H1931\"* you|strong=\"H5921\"* say, ‘Yahweh|strong=\"H3068\"*’s table|strong=\"H7979\"* is|strong=\"H3068\"* contemptible.’" + }, + { + "verseNum": 8, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* offer|strong=\"H7126\"* the|strong=\"H6440\"* blind|strong=\"H5787\"* for|strong=\"H3588\"* sacrifice|strong=\"H2076\"*, isn’t that|strong=\"H3588\"* evil|strong=\"H7451\"*? And|strong=\"H3068\"* when|strong=\"H3588\"* you|strong=\"H3588\"* offer|strong=\"H7126\"* the|strong=\"H6440\"* lame|strong=\"H6455\"* and|strong=\"H3068\"* sick|strong=\"H2470\"*, isn’t that|strong=\"H3588\"* evil|strong=\"H7451\"*? Present|strong=\"H7126\"* it|strong=\"H7126\"* now|strong=\"H4994\"* to|strong=\"H3068\"* your|strong=\"H3068\"* governor|strong=\"H6346\"*! Will|strong=\"H3068\"* he|strong=\"H3588\"* be|strong=\"H3068\"* pleased|strong=\"H7521\"* with|strong=\"H3068\"* you|strong=\"H3588\"*? Or|strong=\"H3068\"* will|strong=\"H3068\"* he|strong=\"H3588\"* accept|strong=\"H7521\"* your|strong=\"H3068\"* person|strong=\"H6440\"*?” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 9, + "text": "“Now|strong=\"H6258\"*, please|strong=\"H4994\"* entreat|strong=\"H2470\"* the|strong=\"H6440\"* favor|strong=\"H6440\"* of|strong=\"H3068\"* God|strong=\"H3068\"*,+ 1:9 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* that|strong=\"H3068\"* he|strong=\"H3068\"* may|strong=\"H1961\"* be|strong=\"H1961\"* gracious|strong=\"H2603\"* to|strong=\"H3068\"* us|strong=\"H4994\"*. With|strong=\"H3068\"* this|strong=\"H2063\"*, will|strong=\"H3068\"* he|strong=\"H3068\"* accept|strong=\"H5375\"* any|strong=\"H4480\"* of|strong=\"H3068\"* you|strong=\"H6440\"*?” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 10, + "text": "“Oh|strong=\"H4310\"* that|strong=\"H3068\"* there|strong=\"H2656\"* were|strong=\"H3027\"* one|strong=\"H3808\"* among|strong=\"H4310\"* you|strong=\"H3808\"* who|strong=\"H4310\"* would|strong=\"H4310\"* shut|strong=\"H5462\"* the|strong=\"H3068\"* doors|strong=\"H1817\"*, that|strong=\"H3068\"* you|strong=\"H3808\"* might|strong=\"H3068\"* not|strong=\"H3808\"* kindle fire on|strong=\"H3027\"* my|strong=\"H3068\"* altar|strong=\"H4196\"* in|strong=\"H3068\"* vain|strong=\"H2600\"*! I|strong=\"H3808\"* have|strong=\"H3068\"* no|strong=\"H3808\"* pleasure|strong=\"H2656\"* in|strong=\"H3068\"* you|strong=\"H3808\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, “neither|strong=\"H3808\"* will|strong=\"H3068\"* I|strong=\"H3808\"* accept|strong=\"H7521\"* an|strong=\"H3068\"* offering|strong=\"H4503\"* at|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* from|strong=\"H1471\"* the|strong=\"H3605\"* rising|strong=\"H4217\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sun|strong=\"H8121\"* even|strong=\"H5704\"* to|strong=\"H5704\"* its|strong=\"H3605\"* going|strong=\"H8121\"* down|strong=\"H3996\"*, my|strong=\"H3605\"* name|strong=\"H8034\"* is|strong=\"H3068\"* great|strong=\"H1419\"* among|strong=\"H8034\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* every|strong=\"H3605\"* place|strong=\"H4725\"* incense|strong=\"H6999\"* will|strong=\"H3068\"* be|strong=\"H3068\"* offered|strong=\"H6999\"* to|strong=\"H5704\"* my|strong=\"H3605\"* name|strong=\"H8034\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* pure|strong=\"H2889\"* offering|strong=\"H4503\"*; for|strong=\"H3588\"* my|strong=\"H3605\"* name|strong=\"H8034\"* is|strong=\"H3068\"* great|strong=\"H1419\"* among|strong=\"H8034\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 12, + "text": "“But|strong=\"H1931\"* you profane|strong=\"H2490\"* it|strong=\"H1931\"* when you say, ‘Yahweh|strong=\"H3068\"*’s table|strong=\"H7979\"* is|strong=\"H1931\"* polluted|strong=\"H2490\"*, and|strong=\"H7979\"* its|strong=\"H2490\"* fruit|strong=\"H2490\"*, even its|strong=\"H2490\"* food, is|strong=\"H1931\"* contemptible.’" + }, + { + "verseNum": 13, + "text": "You|strong=\"H3027\"* say also|strong=\"H3068\"*, ‘Behold|strong=\"H2009\"*,+ 1:13 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* what a|strong=\"H3068\"* weariness|strong=\"H4972\"* it|strong=\"H5301\"* is|strong=\"H3068\"*!’ And|strong=\"H3068\"* you|strong=\"H3027\"* have|strong=\"H3068\"* sniffed at|strong=\"H3068\"* it|strong=\"H5301\"*”, says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*; “and|strong=\"H3068\"* you|strong=\"H3027\"* have|strong=\"H3068\"* brought|strong=\"H3068\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* taken|strong=\"H1497\"* by|strong=\"H3027\"* violence|strong=\"H1497\"*, the|strong=\"H3068\"* lame|strong=\"H6455\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* sick|strong=\"H2470\"*; thus you|strong=\"H3027\"* bring the|strong=\"H3068\"* offering|strong=\"H4503\"*. Should|strong=\"H3068\"* I|strong=\"H2009\"* accept|strong=\"H7521\"* this|strong=\"H3068\"* at|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*?” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "“But|strong=\"H3588\"* the|strong=\"H3588\"* deceiver|strong=\"H5230\"* is|strong=\"H3068\"* cursed who|strong=\"H3068\"* has|strong=\"H3068\"* in|strong=\"H3068\"* his|strong=\"H3068\"* flock|strong=\"H5739\"* a|strong=\"H3068\"* male|strong=\"H2145\"*, and|strong=\"H3068\"* vows|strong=\"H5087\"* and|strong=\"H3068\"* sacrifices|strong=\"H2076\"* to|strong=\"H3068\"* the|strong=\"H3588\"* Lord|strong=\"H3068\"*+ 1:14 The word translated “Lord” is “Adonai.”* a|strong=\"H3068\"* defective thing|strong=\"H3588\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* King|strong=\"H4428\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, “and|strong=\"H3068\"* my|strong=\"H3068\"* name|strong=\"H8034\"* is|strong=\"H3068\"* awesome|strong=\"H3372\"* among|strong=\"H8034\"* the|strong=\"H3588\"* nations|strong=\"H1471\"*.”" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "“Now|strong=\"H6258\"*, you|strong=\"H6258\"* priests|strong=\"H3548\"*, this|strong=\"H2063\"* commandment|strong=\"H4687\"* is|strong=\"H3548\"* for|strong=\"H3548\"* you|strong=\"H6258\"*." + }, + { + "verseNum": 2, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* listen|strong=\"H8085\"*, and|strong=\"H3068\"* if|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* take|strong=\"H7760\"* it|strong=\"H5414\"* to|strong=\"H3068\"* heart|strong=\"H3820\"*, to|strong=\"H3068\"* give|strong=\"H5414\"* glory|strong=\"H3519\"* to|strong=\"H3068\"* my|strong=\"H8085\"* name|strong=\"H8034\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, “then|strong=\"H7971\"* I|strong=\"H3588\"* will|strong=\"H3068\"* send|strong=\"H7971\"* the|strong=\"H5921\"* curse|strong=\"H3994\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* curse|strong=\"H3994\"* your|strong=\"H3068\"* blessings|strong=\"H1293\"*. Indeed|strong=\"H3588\"*, I|strong=\"H3588\"* have|strong=\"H3068\"* cursed them|strong=\"H5414\"* already, because|strong=\"H3588\"* you|strong=\"H3588\"* do|strong=\"H3068\"* not|strong=\"H3808\"* take|strong=\"H7760\"* it|strong=\"H5414\"* to|strong=\"H3068\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 3, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H2233\"* rebuke|strong=\"H1605\"* your|strong=\"H5921\"* offspring|strong=\"H2233\"*,+ 2:3 or, seed* and|strong=\"H6440\"* will|strong=\"H2233\"* spread|strong=\"H2219\"* dung|strong=\"H6569\"* on|strong=\"H5921\"* your|strong=\"H5921\"* faces|strong=\"H6440\"*, even|strong=\"H5921\"* the|strong=\"H6440\"* dung|strong=\"H6569\"* of|strong=\"H6440\"* your|strong=\"H5921\"* feasts|strong=\"H2282\"*; and|strong=\"H6440\"* you|strong=\"H6440\"* will|strong=\"H2233\"* be|strong=\"H6440\"* taken|strong=\"H5375\"* away|strong=\"H5375\"* with|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* sent|strong=\"H7971\"* this|strong=\"H2063\"* commandment|strong=\"H4687\"* to|strong=\"H3068\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* my|strong=\"H3068\"* covenant|strong=\"H1285\"* may|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H3068\"* Levi|strong=\"H3878\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 5, + "text": "“My|strong=\"H5414\"* covenant|strong=\"H1285\"* was|strong=\"H8034\"* with|strong=\"H1285\"* him|strong=\"H5414\"* of|strong=\"H6440\"* life|strong=\"H2416\"* and|strong=\"H6440\"* peace|strong=\"H7965\"*; and|strong=\"H6440\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H1961\"* him|strong=\"H5414\"* that|strong=\"H1931\"* he|strong=\"H1931\"* might|strong=\"H2416\"* be|strong=\"H1961\"* reverent toward|strong=\"H6440\"* me|strong=\"H5414\"*; and|strong=\"H6440\"* he|strong=\"H1931\"* was|strong=\"H8034\"* reverent toward|strong=\"H6440\"* me|strong=\"H5414\"*, and|strong=\"H6440\"* stood|strong=\"H2865\"* in|strong=\"H6440\"* awe|strong=\"H2865\"* of|strong=\"H6440\"* my|strong=\"H5414\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H7725\"* law|strong=\"H8451\"* of|strong=\"H6310\"* truth|strong=\"H3808\"* was|strong=\"H1961\"* in|strong=\"H1980\"* his|strong=\"H7725\"* mouth|strong=\"H6310\"*, and|strong=\"H1980\"* unrighteousness|strong=\"H5766\"* was|strong=\"H1961\"* not|strong=\"H3808\"* found|strong=\"H4672\"* in|strong=\"H1980\"* his|strong=\"H7725\"* lips|strong=\"H8193\"*. He|strong=\"H3808\"* walked|strong=\"H1980\"* with|strong=\"H1980\"* me|strong=\"H7725\"* in|strong=\"H1980\"* peace|strong=\"H7965\"* and|strong=\"H1980\"* uprightness|strong=\"H4334\"*, and|strong=\"H1980\"* turned|strong=\"H7725\"* many|strong=\"H7227\"* away|strong=\"H7725\"* from|strong=\"H7725\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* priest|strong=\"H3548\"*’s lips|strong=\"H8193\"* should|strong=\"H3068\"* keep|strong=\"H8104\"* knowledge|strong=\"H1847\"*, and|strong=\"H3068\"* they|strong=\"H3588\"* should|strong=\"H3068\"* seek|strong=\"H1245\"* the|strong=\"H3588\"* law|strong=\"H8451\"* at|strong=\"H3068\"* his|strong=\"H8104\"* mouth|strong=\"H6310\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H3588\"* messenger|strong=\"H4397\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H1870\"* you|strong=\"H4480\"* have|strong=\"H3068\"* turned|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* the|strong=\"H3068\"* path|strong=\"H1870\"*. You|strong=\"H4480\"* have|strong=\"H3068\"* caused many|strong=\"H7227\"* to|strong=\"H3068\"* stumble|strong=\"H3782\"* in|strong=\"H3068\"* the|strong=\"H3068\"* law|strong=\"H8451\"*. You|strong=\"H4480\"* have|strong=\"H3068\"* corrupted|strong=\"H7843\"* the|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* Levi|strong=\"H3878\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 9, + "text": "“Therefore|strong=\"H1571\"* I|strong=\"H5414\"* have|strong=\"H5971\"* also|strong=\"H1571\"* made|strong=\"H5414\"* you|strong=\"H5414\"* contemptible and|strong=\"H5971\"* wicked before|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, according|strong=\"H6310\"* to|strong=\"H5414\"* the|strong=\"H3605\"* way|strong=\"H1870\"* you|strong=\"H5414\"* have|strong=\"H5971\"* not|strong=\"H5414\"* kept|strong=\"H8104\"* my|strong=\"H8104\"* ways|strong=\"H1870\"*, but|strong=\"H1571\"* have|strong=\"H5971\"* had|strong=\"H5414\"* respect|strong=\"H5375\"* for|strong=\"H6440\"* persons|strong=\"H6440\"* in|strong=\"H6440\"* the|strong=\"H3605\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 10, + "text": "Don’t we|strong=\"H3068\"* all|strong=\"H3605\"* have|strong=\"H3605\"* one|strong=\"H3605\"* father? Hasn’t one|strong=\"H3605\"* God|strong=\"H3808\"* created|strong=\"H1254\"* us? Why|strong=\"H4069\"* do|strong=\"H3605\"* we|strong=\"H3068\"* deal treacherously every|strong=\"H3605\"* man|strong=\"H3605\"* against|strong=\"H3605\"* his|strong=\"H3605\"* brother, profaning|strong=\"H2490\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* of|strong=\"H3605\"* our|strong=\"H3605\"* fathers?" + }, + { + "verseNum": 11, + "text": "Judah|strong=\"H3063\"* has|strong=\"H3068\"* dealt|strong=\"H6213\"* treacherously, and|strong=\"H3063\"* an|strong=\"H6213\"* abomination|strong=\"H8441\"* is|strong=\"H3068\"* committed|strong=\"H6213\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*; for|strong=\"H3588\"* Judah|strong=\"H3063\"* has|strong=\"H3068\"* profaned|strong=\"H2490\"* the|strong=\"H3588\"* holiness|strong=\"H6944\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3588\"* loves, and|strong=\"H3063\"* has|strong=\"H3068\"* married|strong=\"H1166\"* the|strong=\"H3588\"* daughter|strong=\"H1323\"* of|strong=\"H3068\"* a|strong=\"H3068\"* foreign|strong=\"H5236\"* god|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H6213\"* man|strong=\"H6030\"* who|strong=\"H3068\"* does|strong=\"H6213\"* this|strong=\"H6213\"*, him|strong=\"H6213\"* who|strong=\"H3068\"* wakes and|strong=\"H3068\"* him|strong=\"H6213\"* who|strong=\"H3068\"* answers|strong=\"H6030\"*, out|strong=\"H6213\"* of|strong=\"H3068\"* the|strong=\"H6213\"* tents of|strong=\"H3068\"* Jacob|strong=\"H3290\"* and|strong=\"H3068\"* him|strong=\"H6213\"* who|strong=\"H3068\"* offers an|strong=\"H6213\"* offering|strong=\"H4503\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 13, + "text": "“This|strong=\"H2063\"* again|strong=\"H5750\"* you|strong=\"H3947\"* do|strong=\"H6213\"*: you|strong=\"H3947\"* cover|strong=\"H3680\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"* with|strong=\"H3068\"* tears|strong=\"H1832\"*, with|strong=\"H3068\"* weeping|strong=\"H1065\"*, and|strong=\"H3068\"* with|strong=\"H3068\"* sighing, because|strong=\"H3027\"* he|strong=\"H6213\"* doesn’t regard|strong=\"H6437\"* the|strong=\"H3947\"* offering|strong=\"H4503\"* any|strong=\"H5750\"* more|strong=\"H5750\"*, neither receives|strong=\"H3947\"* it|strong=\"H6213\"* with|strong=\"H3068\"* good|strong=\"H7522\"* will|strong=\"H3068\"* at|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 14, + "text": "Yet|strong=\"H3588\"* you|strong=\"H3588\"* say, ‘Why|strong=\"H4100\"*?’ Because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* been|strong=\"H3068\"* witness|strong=\"H5749\"* between|strong=\"H5921\"* you|strong=\"H3588\"* and|strong=\"H3068\"* the|strong=\"H5921\"* wife of|strong=\"H3068\"* your|strong=\"H3068\"* youth|strong=\"H5271\"*, against|strong=\"H5921\"* whom|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* dealt treacherously, though|strong=\"H3588\"* she|strong=\"H1931\"* is|strong=\"H3068\"* your|strong=\"H3068\"* companion|strong=\"H2278\"* and|strong=\"H3068\"* the|strong=\"H5921\"* wife of|strong=\"H3068\"* your|strong=\"H3068\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 15, + "text": "Did|strong=\"H6213\"* he|strong=\"H6213\"* not|strong=\"H3808\"* make|strong=\"H6213\"* you|strong=\"H6213\"* one|strong=\"H3808\"*, although|strong=\"H3808\"* he|strong=\"H6213\"* had|strong=\"H3808\"* the|strong=\"H6213\"* residue|strong=\"H7605\"* of|strong=\"H7307\"* the|strong=\"H6213\"* Spirit|strong=\"H7307\"*? Why|strong=\"H4100\"* one|strong=\"H3808\"*? He|strong=\"H6213\"* sought|strong=\"H1245\"* godly offspring|strong=\"H2233\"*. Therefore|strong=\"H6213\"* take|strong=\"H8104\"* heed|strong=\"H8104\"* to|strong=\"H6213\"* your|strong=\"H8104\"* spirit|strong=\"H7307\"*, and|strong=\"H6213\"* let|strong=\"H3808\"* no|strong=\"H3808\"* one|strong=\"H3808\"* deal|strong=\"H6213\"* treacherously against|strong=\"H7307\"* the|strong=\"H6213\"* wife of|strong=\"H7307\"* his|strong=\"H8104\"* youth|strong=\"H5271\"*." + }, + { + "verseNum": 16, + "text": "One|strong=\"H3808\"* who|strong=\"H3068\"* hates|strong=\"H8130\"* and|strong=\"H3478\"* divorces|strong=\"H7971\"*”, says Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, “covers|strong=\"H3680\"* his|strong=\"H8104\"* garment|strong=\"H3830\"* with|strong=\"H3068\"* violence|strong=\"H2555\"*!” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*. “Therefore|strong=\"H5921\"* pay|strong=\"H8104\"* attention|strong=\"H8104\"* to|strong=\"H3478\"* your|strong=\"H3068\"* spirit|strong=\"H7307\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* don’t be|strong=\"H3808\"* unfaithful." + }, + { + "verseNum": 17, + "text": "You|strong=\"H3605\"* have|strong=\"H3068\"* wearied|strong=\"H3021\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* your|strong=\"H3068\"* words|strong=\"H1697\"*. Yet|strong=\"H3068\"* you|strong=\"H3605\"* say|strong=\"H1697\"*, ‘How|strong=\"H4100\"* have|strong=\"H3068\"* we|strong=\"H3068\"* wearied|strong=\"H3021\"* him|strong=\"H6213\"*?’ In|strong=\"H3068\"* that|strong=\"H3605\"* you|strong=\"H3605\"* say|strong=\"H1697\"*, ‘Everyone|strong=\"H3605\"* who|strong=\"H3605\"* does|strong=\"H6213\"* evil|strong=\"H7451\"* is|strong=\"H3068\"* good|strong=\"H2896\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H3068\"* he|strong=\"H1931\"* delights|strong=\"H2654\"* in|strong=\"H3068\"* them|strong=\"H6213\"*;’ or|strong=\"H2896\"* ‘Where|strong=\"H4100\"* is|strong=\"H3068\"* the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* justice|strong=\"H4941\"*?’" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "“Behold|strong=\"H2009\"*, I|strong=\"H2005\"* send|strong=\"H7971\"* my|strong=\"H3068\"* messenger|strong=\"H4397\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* prepare|strong=\"H6437\"* the|strong=\"H6440\"* way|strong=\"H1870\"* before|strong=\"H6440\"* me|strong=\"H6440\"*! The|strong=\"H6440\"* Lord|strong=\"H3068\"*, whom|strong=\"H6440\"* you|strong=\"H6440\"* seek|strong=\"H1245\"*, will|strong=\"H3068\"* suddenly|strong=\"H6597\"* come|strong=\"H6635\"* to|strong=\"H3068\"* his|strong=\"H3068\"* temple|strong=\"H1964\"*. Behold|strong=\"H2009\"*, the|strong=\"H6440\"* messenger|strong=\"H4397\"* of|strong=\"H3068\"* the|strong=\"H6440\"* covenant|strong=\"H1285\"*, whom|strong=\"H6440\"* you|strong=\"H6440\"* desire|strong=\"H1245\"*, is|strong=\"H3068\"* coming|strong=\"H2009\"*!” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 2, + "text": "“But|strong=\"H3588\"* who|strong=\"H4310\"* can|strong=\"H4310\"* endure|strong=\"H5975\"* the|strong=\"H7200\"* day|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H3526\"* coming? And|strong=\"H3117\"* who|strong=\"H4310\"* will|strong=\"H4310\"* stand|strong=\"H5975\"* when|strong=\"H3588\"* he|strong=\"H1931\"* appears|strong=\"H7200\"*? For|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* like|strong=\"H6884\"* a|strong=\"H3068\"* refiner|strong=\"H6884\"*’s fire, and|strong=\"H3117\"* like|strong=\"H6884\"* launderers’ soap|strong=\"H1287\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H1121\"* he|strong=\"H3068\"* will|strong=\"H3068\"* sit|strong=\"H3427\"* as|strong=\"H1961\"* a|strong=\"H3068\"* refiner|strong=\"H6884\"* and|strong=\"H1121\"* purifier|strong=\"H2891\"* of|strong=\"H1121\"* silver|strong=\"H3701\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* will|strong=\"H3068\"* purify|strong=\"H2891\"* the|strong=\"H3068\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*, and|strong=\"H1121\"* refine|strong=\"H6884\"* them|strong=\"H1961\"* as|strong=\"H1961\"* gold|strong=\"H2091\"* and|strong=\"H1121\"* silver|strong=\"H3701\"*; and|strong=\"H1121\"* they|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H5066\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* offerings|strong=\"H4503\"* in|strong=\"H3427\"* righteousness|strong=\"H6666\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H3068\"* the|strong=\"H3068\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"* will|strong=\"H3068\"* be|strong=\"H3068\"* pleasant|strong=\"H6149\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* as|strong=\"H3117\"* in|strong=\"H8141\"* the|strong=\"H3068\"* days|strong=\"H3117\"* of|strong=\"H3068\"* old|strong=\"H5769\"* and|strong=\"H3063\"* as|strong=\"H3117\"* in|strong=\"H8141\"* ancient|strong=\"H5769\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3808\"* will|strong=\"H3068\"* come|strong=\"H1961\"* near|strong=\"H7126\"* to|strong=\"H3068\"* you|strong=\"H3808\"* to|strong=\"H3068\"* judgment|strong=\"H4941\"*. I|strong=\"H3808\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* swift|strong=\"H4116\"* witness|strong=\"H5707\"* against|strong=\"H3068\"* the|strong=\"H3068\"* sorcerers|strong=\"H3784\"*, against|strong=\"H3068\"* the|strong=\"H3068\"* adulterers|strong=\"H5003\"*, against|strong=\"H3068\"* the|strong=\"H3068\"* perjurers, and|strong=\"H3068\"* against|strong=\"H3068\"* those|strong=\"H1961\"* who|strong=\"H3068\"* oppress|strong=\"H6231\"* the|strong=\"H3068\"* hireling|strong=\"H7916\"* in|strong=\"H3068\"* his|strong=\"H3068\"* wages|strong=\"H7939\"*, the|strong=\"H3068\"* widow, and|strong=\"H3068\"* the|strong=\"H3068\"* fatherless|strong=\"H3490\"*, and|strong=\"H3068\"* who|strong=\"H3068\"* deprive|strong=\"H5186\"* the|strong=\"H3068\"* foreigner|strong=\"H1616\"* of|strong=\"H3068\"* justice|strong=\"H4941\"*, and|strong=\"H3068\"* don’t fear|strong=\"H3372\"* me|strong=\"H3372\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 6, + "text": "“For|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, don’t change|strong=\"H8138\"*; therefore|strong=\"H3588\"* you|strong=\"H3588\"*, sons|strong=\"H1121\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*, are|strong=\"H1121\"* not|strong=\"H3808\"* consumed|strong=\"H3615\"*." + }, + { + "verseNum": 7, + "text": "From|strong=\"H7725\"* the|strong=\"H8104\"* days|strong=\"H3117\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers you|strong=\"H3117\"* have|strong=\"H3068\"* turned|strong=\"H7725\"* away|strong=\"H5493\"* from|strong=\"H7725\"* my|strong=\"H8104\"* ordinances|strong=\"H2706\"* and|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* them|strong=\"H7725\"*. Return|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H7725\"*, and|strong=\"H3068\"* I|strong=\"H3117\"* will|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H3117\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*. “But|strong=\"H3808\"* you|strong=\"H3117\"* say|strong=\"H7725\"*, ‘How|strong=\"H4100\"* shall|strong=\"H3068\"* we|strong=\"H3068\"* return|strong=\"H7725\"*?’" + }, + { + "verseNum": 8, + "text": "Will|strong=\"H4100\"* a|strong=\"H3068\"* man rob|strong=\"H6906\"* God? Yet|strong=\"H3588\"* you|strong=\"H3588\"* rob|strong=\"H6906\"* me|strong=\"H3588\"*! But|strong=\"H3588\"* you|strong=\"H3588\"* say, ‘How|strong=\"H4100\"* have|strong=\"H3588\"* we|strong=\"H3068\"* robbed|strong=\"H6906\"* you|strong=\"H3588\"*?’ In|strong=\"H4643\"* tithes|strong=\"H4643\"* and|strong=\"H4643\"* offerings|strong=\"H8641\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3605\"* are|strong=\"H1471\"* cursed with|strong=\"H3605\"* the|strong=\"H3605\"* curse|strong=\"H3994\"*; for|strong=\"H3605\"* you|strong=\"H3605\"* rob|strong=\"H6906\"* me|strong=\"H3605\"*, even this|strong=\"H3605\"* whole|strong=\"H3605\"* nation|strong=\"H1471\"*." + }, + { + "verseNum": 10, + "text": "Bring|strong=\"H1961\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* tithe|strong=\"H4643\"* into|strong=\"H1961\"* the|strong=\"H3605\"* storehouse, that|strong=\"H3605\"* there|strong=\"H1961\"* may|strong=\"H1961\"* be|strong=\"H1961\"* food|strong=\"H2964\"* in|strong=\"H3068\"* my|strong=\"H3605\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* test me|strong=\"H4994\"* now|strong=\"H4994\"* in|strong=\"H3068\"* this|strong=\"H2063\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*, “if|strong=\"H1961\"* I|strong=\"H5704\"* will|strong=\"H3068\"* not|strong=\"H3808\"* open|strong=\"H6605\"* you|strong=\"H3605\"* the|strong=\"H3605\"* windows of|strong=\"H1004\"* heaven|strong=\"H8064\"*, and|strong=\"H3068\"* pour you|strong=\"H3605\"* out|strong=\"H7324\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"*, that|strong=\"H3605\"* there|strong=\"H1961\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* enough|strong=\"H1767\"* room|strong=\"H1004\"* for|strong=\"H5704\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H3808\"* will|strong=\"H3068\"* rebuke|strong=\"H1605\"* the|strong=\"H3068\"* devourer for|strong=\"H3068\"* your|strong=\"H3068\"* sakes, and|strong=\"H3068\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* destroy|strong=\"H7843\"* the|strong=\"H3068\"* fruits|strong=\"H6529\"* of|strong=\"H3068\"* your|strong=\"H3068\"* ground|strong=\"H7704\"*; neither|strong=\"H3808\"* shall|strong=\"H3068\"* your|strong=\"H3068\"* vine|strong=\"H1612\"* cast|strong=\"H3068\"* its|strong=\"H7843\"* fruit|strong=\"H6529\"* before|strong=\"H3808\"* its|strong=\"H7843\"* time|strong=\"H6635\"* in|strong=\"H3068\"* the|strong=\"H3068\"* field|strong=\"H7704\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 12, + "text": "“All|strong=\"H3605\"* nations|strong=\"H1471\"* shall|strong=\"H3068\"* call you|strong=\"H3588\"* blessed, for|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* delightful|strong=\"H2656\"* land,” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 13, + "text": "“Your|strong=\"H3068\"* words|strong=\"H1697\"* have|strong=\"H3068\"* been|strong=\"H2388\"* harsh against|strong=\"H5921\"* me|strong=\"H5921\"*,” says|strong=\"H1696\"* Yahweh|strong=\"H3068\"*. “Yet|strong=\"H3068\"* you|strong=\"H5921\"* say|strong=\"H1696\"*, ‘What|strong=\"H4100\"* have|strong=\"H3068\"* we|strong=\"H3068\"* spoken|strong=\"H1696\"* against|strong=\"H5921\"* you|strong=\"H5921\"*?’" + }, + { + "verseNum": 14, + "text": "You|strong=\"H3588\"* have|strong=\"H3068\"* said, ‘It|strong=\"H3588\"* is|strong=\"H3068\"* vain|strong=\"H7723\"* to|strong=\"H1980\"* serve|strong=\"H5647\"* God|strong=\"H3068\"*,’ and|strong=\"H1980\"* ‘What|strong=\"H4100\"* profit|strong=\"H1215\"* is|strong=\"H3068\"* it|strong=\"H3588\"* that|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* followed|strong=\"H1980\"* his|strong=\"H8104\"* instructions|strong=\"H8104\"* and|strong=\"H1980\"* that|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* walked|strong=\"H1980\"* mournfully|strong=\"H6941\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*?" + }, + { + "verseNum": 15, + "text": "Now|strong=\"H6258\"* we|strong=\"H3068\"* call the|strong=\"H6213\"* proud|strong=\"H2086\"* happy; yes|strong=\"H1571\"*, those|strong=\"H6213\"* who|strong=\"H6213\"* work|strong=\"H6213\"* wickedness|strong=\"H7564\"* are|strong=\"H1571\"* built|strong=\"H1129\"* up|strong=\"H1129\"*; yes|strong=\"H1571\"*, they|strong=\"H6213\"* tempt God, and|strong=\"H6213\"* escape|strong=\"H4422\"*.’" + }, + { + "verseNum": 16, + "text": "Then|strong=\"H1696\"* those|strong=\"H8085\"* who|strong=\"H3068\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* one|strong=\"H3068\"* with|strong=\"H3068\"* another|strong=\"H7453\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* listened|strong=\"H8085\"* and|strong=\"H3068\"* heard|strong=\"H8085\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* book|strong=\"H5612\"* of|strong=\"H3068\"* memory|strong=\"H8034\"* was|strong=\"H3068\"* written|strong=\"H3789\"* before|strong=\"H6440\"* him|strong=\"H6440\"* for|strong=\"H6440\"* those|strong=\"H8085\"* who|strong=\"H3068\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* who|strong=\"H3068\"* honored his|strong=\"H3068\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* mine,” says Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*, “my|strong=\"H3068\"* own|strong=\"H1961\"* possession|strong=\"H5459\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* make|strong=\"H6213\"*. I|strong=\"H3117\"* will|strong=\"H3068\"* spare|strong=\"H2550\"* them|strong=\"H5921\"*, as|strong=\"H3117\"* a|strong=\"H3068\"* man|strong=\"H1121\"* spares|strong=\"H2550\"* his|strong=\"H3068\"* own|strong=\"H1961\"* son|strong=\"H1121\"* who|strong=\"H3068\"* serves|strong=\"H5647\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H7725\"* you|strong=\"H7725\"* shall|strong=\"H7563\"* return|strong=\"H7725\"* and|strong=\"H7725\"* discern|strong=\"H7200\"* between the|strong=\"H7200\"* righteous|strong=\"H6662\"* and|strong=\"H7725\"* the|strong=\"H7200\"* wicked|strong=\"H7563\"*, between him|strong=\"H7725\"* who|strong=\"H6662\"* serves|strong=\"H5647\"* God|strong=\"H3808\"* and|strong=\"H7725\"* him|strong=\"H7725\"* who|strong=\"H6662\"* doesn’t serve|strong=\"H5647\"* him|strong=\"H7725\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "“For behold, the day comes, burning like a|strong=\"H3068\"* furnace, when all the proud and all who work wickedness will be stubble. The day that comes will burn them up,” says Yahweh|strong=\"H3068\"* of Armies, “so that it will leave them neither root nor branch." + }, + { + "verseNum": 2, + "text": "But to you who fear my name shall the sun of righteousness arise with healing in its wings. You will go out and leap like calves of the stall." + }, + { + "verseNum": 3, + "text": "You shall tread down the wicked; for they will be ashes under the soles of your feet in the day that I make,” says Yahweh|strong=\"H3068\"* of Armies." + }, + { + "verseNum": 4, + "text": "“Remember the law of Moses my servant, which I commanded to him in Horeb for all Israel, even statutes and ordinances." + }, + { + "verseNum": 5, + "text": "Behold, I will send you Elijah the prophet before the great and terrible day of Yahweh|strong=\"H3068\"* comes." + }, + { + "verseNum": 6, + "text": "He will turn the hearts of the fathers to the children and the hearts of the children to their fathers, lest I come and strike the earth with a|strong=\"H3068\"* curse.”" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/hooks/use-auth.ts b/hooks/use-auth.ts index 7992694..d758c3e 100644 --- a/hooks/use-auth.ts +++ b/hooks/use-auth.ts @@ -1,44 +1,2 @@ -import { useEffect } from 'react' -import { useStore } from '@/lib/store' - -export function useAuth() { - const { user, setUser } = useStore() - - useEffect(() => { - const token = localStorage.getItem('authToken') - if (token && !user) { - // Validate token and get user info - fetch('/api/auth/me', { - headers: { - 'Authorization': `Bearer ${token}` - } - }) - .then(res => res.json()) - .then(data => { - if (data.user) { - setUser(data.user) - } else { - localStorage.removeItem('authToken') - } - }) - .catch(() => { - localStorage.removeItem('authToken') - }) - } - }, [user, setUser]) - - const logout = () => { - setUser(null) - localStorage.removeItem('authToken') - } - - const isAuthenticated = !!user - const token = typeof window !== 'undefined' ? localStorage.getItem('authToken') : null - - return { - user, - isAuthenticated, - token, - logout - } -} \ No newline at end of file +// Re-export the auth context hook +export { useAuth } from '@/components/auth/auth-provider' \ No newline at end of file diff --git a/lib/auth/client.ts b/lib/auth/client.ts new file mode 100644 index 0000000..733cbec --- /dev/null +++ b/lib/auth/client.ts @@ -0,0 +1,29 @@ +export function isTokenExpired(token: string): boolean { + try { + const payload = JSON.parse(atob(token.split('.')[1])) as { exp?: number } + if (!payload || !payload.exp) { + console.log('Token has no expiration data') + return true + } + + const currentTime = Math.floor(Date.now() / 1000) + const isExpired = payload.exp < currentTime + console.log(`Token expiration check: exp=${payload.exp}, now=${currentTime}, expired=${isExpired}`) + return isExpired + } catch (error) { + console.log('Token validation error:', error) + return true + } +} + +export function clearExpiredToken(): void { + const token = localStorage.getItem('authToken') + if (token && isTokenExpired(token)) { + console.log('Clearing expired token from localStorage') + localStorage.removeItem('authToken') + } else if (token) { + console.log('Token exists and is valid') + } else { + console.log('No token in localStorage') + } +} \ No newline at end of file diff --git a/lib/auth/index.ts b/lib/auth/index.ts index 5cbd8a9..e61e58f 100644 --- a/lib/auth/index.ts +++ b/lib/auth/index.ts @@ -23,22 +23,50 @@ export function generateToken(userId: string): string { export async function verifyToken(token: string) { try { + console.log('Server: Verifying token with JWT_SECRET exists:', !!process.env.JWT_SECRET) const payload = jwt.verify(token, process.env.JWT_SECRET!) as { userId: string } + console.log('Server: Token verification successful, userId:', payload.userId) return payload } catch (error) { + console.log('Server: Token verification failed:', error.message) throw new Error('Invalid token') } } export async function getUserFromToken(token: string) { try { + console.log('Server: Getting user from token...') const payload = await verifyToken(token) - const user = await prisma.user.findUnique({ - where: { id: payload.userId }, - select: { id: true, email: true, name: true, theme: true, fontSize: true } - }) + console.log('Server: Token payload userId:', payload.userId) + + // Use raw query to avoid Prisma client sync issues + const users = await prisma.$queryRaw` + SELECT id, email, name, role, theme, "fontSize", "createdAt", "updatedAt", "lastLoginAt" + FROM "User" + WHERE id = ${payload.userId} + ` + const user = Array.isArray(users) && users.length > 0 ? users[0] : null + console.log('Server: User query result:', !!user) + if (user) { + console.log('Server: User found - email:', user.email) + } else { + console.log('Server: No user found with id:', payload.userId) + } return user } catch (error) { + console.log('Server: getUserFromToken error:', error.message) return null } +} + +export function isTokenExpired(token: string): boolean { + try { + const payload = jwt.decode(token) as { exp?: number } + if (!payload || !payload.exp) return true + + const currentTime = Math.floor(Date.now() / 1000) + return payload.exp < currentTime + } catch (error) { + return true + } } \ No newline at end of file diff --git a/lib/store/index.ts b/lib/store/index.ts index 3c22b9f..0fd3ece 100644 --- a/lib/store/index.ts +++ b/lib/store/index.ts @@ -41,6 +41,14 @@ export const useStore = create()( }), { name: 'bible-chat-storage', + partialize: (state) => ({ + user: state.user, + theme: state.theme, + fontSize: state.fontSize, + currentBook: state.currentBook, + currentChapter: state.currentChapter, + bookmarks: state.bookmarks, + }), } ) ) \ No newline at end of file diff --git a/lib/validation/index.ts b/lib/validation/index.ts index 305e079..7bd8822 100644 --- a/lib/validation/index.ts +++ b/lib/validation/index.ts @@ -1,25 +1,71 @@ import { z } from 'zod' -// User validation schemas -export const userRegistrationSchema = z.object({ - email: z.string() - .email('Email invalid') - .min(3, 'Email-ul trebuie să aibă cel puțin 3 caractere') - .max(254, 'Email-ul trebuie să aibă maximum 254 caractere'), - password: z.string() - .min(8, 'Parola trebuie să aibă cel puțin 8 caractere') - .max(128, 'Parola trebuie să aibă maximum 128 caractere') - .regex(/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)/, 'Parola trebuie să conțină cel puțin o literă mică, o literă mare și o cifră'), - name: z.string() - .min(2, 'Numele trebuie să aibă cel puțin 2 caractere') - .max(100, 'Numele trebuie să aibă maximum 100 caractere') - .optional() -}) +// User validation schemas - localized +export const createUserRegistrationSchema = (locale: string = 'ro') => { + const messages = { + ro: { + invalidEmail: 'Email invalid', + emailMinLength: 'Email-ul trebuie să aibă cel puțin 3 caractere', + emailMaxLength: 'Email-ul trebuie să aibă maximum 254 caractere', + passwordMinLength: 'Parola trebuie să aibă cel puțin 8 caractere', + passwordMaxLength: 'Parola trebuie să aibă maximum 128 caractere', + passwordComplexity: 'Parola trebuie să conțină cel puțin o literă mică, o literă mare și o cifră', + nameMinLength: 'Numele trebuie să aibă cel puțin 2 caractere', + nameMaxLength: 'Numele trebuie să aibă maximum 100 caractere' + }, + en: { + invalidEmail: 'Invalid email', + emailMinLength: 'Email must be at least 3 characters', + emailMaxLength: 'Email must be maximum 254 characters', + passwordMinLength: 'Password must be at least 8 characters', + passwordMaxLength: 'Password must be maximum 128 characters', + passwordComplexity: 'Password must contain at least one lowercase letter, one uppercase letter and one digit', + nameMinLength: 'Name must be at least 2 characters', + nameMaxLength: 'Name must be maximum 100 characters' + } + } -export const userLoginSchema = z.object({ - email: z.string().email('Email invalid'), - password: z.string().min(1, 'Parola este obligatorie') -}) + const msg = messages[locale as keyof typeof messages] || messages.ro + + return z.object({ + email: z.string() + .email(msg.invalidEmail) + .min(3, msg.emailMinLength) + .max(254, msg.emailMaxLength), + password: z.string() + .min(8, msg.passwordMinLength) + .max(128, msg.passwordMaxLength) + .regex(/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)/, msg.passwordComplexity), + name: z.string() + .min(2, msg.nameMinLength) + .max(100, msg.nameMaxLength) + .optional() + }) +} + +export const createUserLoginSchema = (locale: string = 'ro') => { + const messages = { + ro: { + invalidEmail: 'Email invalid', + passwordRequired: 'Parola este obligatorie' + }, + en: { + invalidEmail: 'Invalid email', + passwordRequired: 'Password is required' + } + } + + const msg = messages[locale as keyof typeof messages] || messages.ro + + return z.object({ + email: z.string().email(msg.invalidEmail), + password: z.string().min(1, msg.passwordRequired) + }) +} + +// Backward compatibility - default to Romanian +export const userRegistrationSchema = createUserRegistrationSchema('ro') +export const userLoginSchema = createUserLoginSchema('ro') // Chat validation schemas export const chatMessageSchema = z.object({ diff --git a/lib/vector-search.ts b/lib/vector-search.ts index 669c1b2..50efc18 100644 --- a/lib/vector-search.ts +++ b/lib/vector-search.ts @@ -36,7 +36,20 @@ async function resolveVectorTable(language: string): Promise<{ table: string; ex ) AS exists`, [VECTOR_SCHEMA, `bv_${lang}_${ab}`] ) - return { table, exists: Boolean(check.rows?.[0]?.exists) } + let exists = Boolean(check.rows?.[0]?.exists) + if (!exists) { + // Fallback: use any table for this language + const anyTbl = await client.query( + `SELECT table_name FROM information_schema.tables + WHERE table_schema = $1 AND table_name LIKE $2 + ORDER BY table_name LIMIT 1`, + [VECTOR_SCHEMA, `bv_${lang}_%`] + ) + if (anyTbl.rows?.[0]?.table_name) { + return { table: `${VECTOR_SCHEMA}."${anyTbl.rows[0].table_name}"`, exists: true } + } + } + return { table, exists } } finally { client.release() } diff --git a/messages/en.json b/messages/en.json index f7c0310..1508970 100644 --- a/messages/en.json +++ b/messages/en.json @@ -195,6 +195,80 @@ } } }, + "auth": { + "email": "Email", + "password": "Password", + "confirmPassword": "Confirm password", + "name": "Name", + "optional": "(optional)", + "login": "Login", + "register": "Register", + "logout": "Logout", + "logging_in": "Logging in...", + "registering": "Registering...", + "loginError": "Login error", + "registerError": "Registration error", + "connectionError": "Connection error", + "passwordMismatch": "Passwords don't match", + "createAccount": "Create account", + "alreadyHaveAccount": "Already have an account?", + "noAccount": "Don't have an account?", + "forgotPassword": "Forgot password?", + "welcomeBack": "Welcome back!", + "joinUs": "Join us!" + }, + "profile": { + "title": "Profile", + "subtitle": "Manage your account information", + "personalInfo": "Personal Information", + "accountDetails": "Account Details", + "name": "Name", + "email": "Email", + "role": "Role", + "memberSince": "Member Since", + "edit": "Edit", + "save": "Save Changes", + "saving": "Saving...", + "cancel": "Cancel", + "emailCannotChange": "Email cannot be changed", + "profileUpdated": "Profile updated successfully!", + "updateError": "Error updating profile", + "user": "User", + "admin": "Administrator", + "moderator": "Moderator" + }, + "settings": { + "title": "Settings", + "subtitle": "Customize your experience", + "appearance": "Appearance", + "languageAndNotifications": "Language & Notifications", + "security": "Security", + "theme": "Theme", + "fontSize": "Font Size", + "language": "Language", + "notifications": "Enable notifications", + "emailUpdates": "Email updates", + "changePassword": "Change Password", + "changePasswordSoon": "Change Password (Coming Soon)", + "passwordSecurity": "Password and security settings", + "saveSettings": "Save Settings", + "settingsSaved": "Settings saved successfully!", + "settingsError": "Error saving settings", + "themes": { + "light": "Light", + "dark": "Dark", + "auto": "Auto" + }, + "fontSizes": { + "small": "Small", + "medium": "Medium", + "large": "Large" + }, + "languages": { + "ro": "Română", + "en": "English" + } + }, "common": { "loading": "Loading...", "error": "An error occurred", diff --git a/messages/ro.json b/messages/ro.json index 93187b5..e3965cb 100644 --- a/messages/ro.json +++ b/messages/ro.json @@ -195,6 +195,80 @@ } } }, + "auth": { + "email": "Email", + "password": "Parolă", + "confirmPassword": "Confirmă parola", + "name": "Nume", + "optional": "(opțional)", + "login": "Autentificare", + "register": "Înregistrare", + "logout": "Deconectare", + "logging_in": "Se autentifică...", + "registering": "Se înregistrează...", + "loginError": "Eroare la autentificare", + "registerError": "Eroare la înregistrare", + "connectionError": "Eroare de conexiune", + "passwordMismatch": "Parolele nu se potrivesc", + "createAccount": "Creează cont", + "alreadyHaveAccount": "Ai deja cont?", + "noAccount": "Nu ai cont?", + "forgotPassword": "Ai uitat parola?", + "welcomeBack": "Bine ai revenit!", + "joinUs": "Alătură-te nouă!" + }, + "profile": { + "title": "Profil", + "subtitle": "Gestionează informațiile contului tău", + "personalInfo": "Informații personale", + "accountDetails": "Detalii cont", + "name": "Nume", + "email": "Email", + "role": "Rol", + "memberSince": "Membru din", + "edit": "Editează", + "save": "Salvează modificările", + "saving": "Se salvează...", + "cancel": "Anulează", + "emailCannotChange": "Email-ul nu poate fi schimbat", + "profileUpdated": "Profilul a fost actualizat cu succes!", + "updateError": "Eroare la actualizarea profilului", + "user": "Utilizator", + "admin": "Administrator", + "moderator": "Moderator" + }, + "settings": { + "title": "Setări", + "subtitle": "Personalizează experiența ta", + "appearance": "Aspect", + "languageAndNotifications": "Limba și notificări", + "security": "Securitate", + "theme": "Temă", + "fontSize": "Mărimea fontului", + "language": "Limba", + "notifications": "Activează notificările", + "emailUpdates": "Actualizări prin email", + "changePassword": "Schimbă parola", + "changePasswordSoon": "Schimbă parola (În curând)", + "passwordSecurity": "Setări parolă și securitate", + "saveSettings": "Salvează setările", + "settingsSaved": "Setările au fost salvate cu succes!", + "settingsError": "Eroare la salvarea setărilor", + "themes": { + "light": "Luminos", + "dark": "Întunecat", + "auto": "Automat" + }, + "fontSizes": { + "small": "Mic", + "medium": "Mediu", + "large": "Mare" + }, + "languages": { + "ro": "Română", + "en": "English" + } + }, "common": { "loading": "Se încarcă...", "error": "A apărut o eroare", diff --git a/middleware.ts b/middleware.ts index 1201cde..59278d0 100644 --- a/middleware.ts +++ b/middleware.ts @@ -44,10 +44,22 @@ export async function middleware(request: NextRequest) { // Authentication: perform only lightweight checks in Middleware (Edge). // Defer full JWT verification to API route handlers (Node runtime). - if (request.nextUrl.pathname.startsWith('/dashboard')) { - const token = request.cookies.get('authToken')?.value + const protectedPaths = ['/dashboard', '/profile', '/settings'] + const isProtectedPath = protectedPaths.some(path => + request.nextUrl.pathname.startsWith(path) + ) + + if (isProtectedPath) { + const token = request.cookies.get('authToken')?.value || + request.headers.get('authorization')?.replace('Bearer ', '') + if (!token) { - return NextResponse.redirect(new URL('/', request.url)) + // Extract locale from pathname for redirect + const locale = request.nextUrl.pathname.split('/')[1] + const isValidLocale = ['ro', 'en'].includes(locale) + const redirectLocale = isValidLocale ? locale : 'ro' + + return NextResponse.redirect(new URL(`/${redirectLocale}/auth/login`, request.url)) } } diff --git a/prisma/schema.prisma b/prisma/schema.prisma index a223774..974cf4b 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -12,6 +12,7 @@ model User { email String @unique passwordHash String name String? + role String @default("user") // "user", "admin", "moderator" theme String @default("light") fontSize String @default("medium") createdAt DateTime @default(now()) @@ -25,6 +26,8 @@ model User { prayerRequests PrayerRequest[] readingHistory ReadingHistory[] preferences UserPreference[] + + @@index([role]) } model Session { diff --git a/scripts/assemble-english-from-cache.ts b/scripts/assemble-english-from-cache.ts new file mode 100644 index 0000000..3d69f3f --- /dev/null +++ b/scripts/assemble-english-from-cache.ts @@ -0,0 +1,71 @@ +#!/usr/bin/env tsx +import fs from 'fs' +import path from 'path' + +const ABBR = (process.env.EN_ABBR || 'BSB').toUpperCase() +const ROOT = process.env.INPUT_DIR || path.join('data', 'en_bible', ABBR) + +const OT_ORDER = [ + 'Genesis','Exodus','Leviticus','Numbers','Deuteronomy','Joshua','Judges','Ruth','1 Samuel','2 Samuel','1 Kings','2 Kings','1 Chronicles','2 Chronicles','Ezra','Nehemiah','Esther','Job','Psalms','Proverbs','Ecclesiastes','Song of Songs','Isaiah','Jeremiah','Lamentations','Ezekiel','Daniel','Hosea','Joel','Amos','Obadiah','Jonah','Micah','Nahum','Habakkuk','Zephaniah','Haggai','Zechariah','Malachi' +] +const NT_ORDER = [ + 'Matthew','Mark','Luke','John','Acts','Romans','1 Corinthians','2 Corinthians','Galatians','Ephesians','Philippians','Colossians','1 Thessalonians','2 Thessalonians','1 Timothy','2 Timothy','Titus','Philemon','Hebrews','James','1 Peter','2 Peter','1 John','2 John','3 John','Jude','Revelation' +] + +function titleFromAbbr(abbr: string): string { + const map: Record = { GEN:'Genesis', EXO:'Exodus', LEV:'Leviticus', NUM:'Numbers', DEU:'Deuteronomy', JOS:'Joshua', JDG:'Judges', RUT:'Ruth', '1SA':'1 Samuel', '2SA':'2 Samuel', '1KI':'1 Kings', '2KI':'2 Kings', '1CH':'1 Chronicles', '2CH':'2 Chronicles', EZR:'Ezra', NEH:'Nehemiah', EST:'Esther', JOB:'Job', PSA:'Psalms', PRO:'Proverbs', ECC:'Ecclesiastes', SNG:'Song of Songs', ISA:'Isaiah', JER:'Jeremiah', LAM:'Lamentations', EZK:'Ezekiel', DAN:'Daniel', HOS:'Hosea', JOL:'Joel', AMO:'Amos', OBA:'Obadiah', JON:'Jonah', MIC:'Micah', NAM:'Nahum', HAB:'Habakkuk', ZEP:'Zephaniah', HAG:'Haggai', ZEC:'Zechariah', MAL:'Malachi', MAT:'Matthew', MRK:'Mark', LUK:'Luke', JHN:'John', ACT:'Acts', ROM:'Romans', '1CO':'1 Corinthians', '2CO':'2 Corinthians', GAL:'Galatians', EPH:'Ephesians', PHP:'Philippians', COL:'Colossians', '1TH':'1 Thessalonians', '2TH':'2 Thessalonians', '1TI':'1 Timothy', '2TI':'2 Timothy', TIT:'Titus', PHM:'Philemon', HEB:'Hebrews', JAS:'James', '1PE':'1 Peter', '2PE':'2 Peter', '1JN':'1 John', '2JN':'2 John', '3JN':'3 John', JUD:'Jude', REV:'Revelation' } + return map[abbr] || abbr +} + +function detectBooks(dir: string): string[] { + if (!fs.existsSync(dir)) return [] + return fs.readdirSync(dir).filter(d => fs.statSync(path.join(dir, d)).isDirectory()) +} + +function readChapters(bookDir: string) { + const files = fs.readdirSync(bookDir).filter(f => f.startsWith('chapter-') && f.endsWith('.json') && !f.includes('intro')) + const chapters: any[] = [] + for (const f of files) { + const obj = JSON.parse(fs.readFileSync(path.join(bookDir, f), 'utf-8')) + chapters.push(obj) + } + chapters.sort((a,b) => a.chapterNum - b.chapterNum) + return chapters +} + +function assemble() { + const bookDirs = detectBooks(ROOT) + const books: { name: string; chapters: any[] }[] = [] + for (const d of bookDirs) { + // d is likely an abbreviation; try to infer common titles for GEN/EXO/LEV etc. + let name = d + if (d.toUpperCase() === d) name = titleFromAbbr(d.toUpperCase()) + const chapters = readChapters(path.join(ROOT, d)) + if (chapters.length > 0) books.push({ name, chapters }) + } + + const ot = books.filter(b => OT_ORDER.includes(b.name)).sort((a,b) => OT_ORDER.indexOf(a.name) - OT_ORDER.indexOf(b.name)) + const nt = books.filter(b => NT_ORDER.includes(b.name)).sort((a,b) => NT_ORDER.indexOf(a.name) - NT_ORDER.indexOf(b.name)) + + // Verify completeness: all 66 books must be present + const have = new Set(books.map(b => b.name)) + const missing = [...OT_ORDER, ...NT_ORDER].filter(n => !have.has(n)) + if (missing.length > 0 && process.env.ALLOW_PARTIAL !== '1') { + console.error(`Missing ${missing.length} books. Full EN Bible not downloaded yet.`) + console.error('First few missing:', missing.slice(0, 10).join(', ') + (missing.length > 10 ? '...' : '')) + process.exit(1) + } + + const otObj = { testament: 'Old Testament', books: ot } + const ntObj = { testament: 'New Testament', books: nt } + + const otFile = path.join(ROOT, 'old_testament.json') + const ntFile = path.join(ROOT, 'new_testament.json') + fs.mkdirSync(ROOT, { recursive: true }) + fs.writeFileSync(otFile, JSON.stringify(otObj, null, 2), 'utf-8') + fs.writeFileSync(ntFile, JSON.stringify(ntObj, null, 2), 'utf-8') + console.log('Assembled:', otFile) + console.log('Assembled:', ntFile) +} + +assemble() diff --git a/scripts/cleanup-english-versions.ts b/scripts/cleanup-english-versions.ts new file mode 100644 index 0000000..9e6eaba --- /dev/null +++ b/scripts/cleanup-english-versions.ts @@ -0,0 +1,63 @@ +import { PrismaClient } from '@prisma/client' + +const prisma = new PrismaClient() + +async function cleanup() { + try { + console.log('Starting cleanup of English Bible versions (keeping WEB)...') + + // Ensure WEB exists + const web = await prisma.bibleVersion.findFirst({ where: { language: 'en', abbreviation: 'WEB' } }) + if (!web) { + console.error('WEB version not found. Please import WEB first (via usfm-to-json + import). Aborting.') + return + } + + // Gather non-WEB English versions (e.g., BSB, BSB_MD, BSB_SAMPLES, etc.) + const others = await prisma.bibleVersion.findMany({ + where: { language: 'en', NOT: { abbreviation: 'WEB' } }, + orderBy: { createdAt: 'asc' } + }) + console.log('Found non-WEB EN versions:', others.map(v => v.abbreviation)) + + for (const v of others) { + console.log(`Deleting content for ${v.abbreviation} (${v.id}) ...`) + // Delete verses for all chapters under this version + const delVerses = await prisma.bibleVerse.deleteMany({ + where: { chapter: { book: { versionId: v.id } } } + }) + console.log(' Verses deleted:', delVerses.count) + + // Delete chapters + const delCh = await prisma.bibleChapter.deleteMany({ + where: { book: { versionId: v.id } } + }) + console.log(' Chapters deleted:', delCh.count) + + // Delete books + const delBooks = await prisma.bibleBook.deleteMany({ where: { versionId: v.id } }) + console.log(' Books deleted:', delBooks.count) + + // Delete version + const delVer = await prisma.bibleVersion.delete({ where: { id: v.id } }) + console.log(' Version deleted:', delVer.abbreviation) + } + + // Normalize defaults: set all EN isDefault=false then set WEB=true + await prisma.bibleVersion.updateMany({ where: { language: 'en' }, data: { isDefault: false } }) + await prisma.bibleVersion.update({ where: { id: web.id }, data: { isDefault: true } }) + console.log('Set WEB as the sole default English version.') + + // Quick sanity: count WEB books + const webBooks = await prisma.bibleBook.count({ where: { versionId: web.id } }) + console.log('WEB book count:', webBooks) + } catch (e) { + console.error('Cleanup failed:', e) + process.exit(1) + } finally { + await prisma.$disconnect() + } +} + +cleanup() + diff --git a/scripts/clone_vector_table.ts b/scripts/clone_vector_table.ts new file mode 100644 index 0000000..8780c6c --- /dev/null +++ b/scripts/clone_vector_table.ts @@ -0,0 +1,74 @@ +import 'dotenv/config' +import { Pool } from 'pg' + +async function main() { + const pool = new Pool({ connectionString: process.env.DATABASE_URL }) + const schema = (process.env.VECTOR_SCHEMA || 'ai_bible').replace(/[^a-zA-Z0-9_]/g, '') + const source = `${schema}.bv_ro_fidela` + const target = `${schema}.bv_ro_cornilescu` + + const client = await pool.connect() + try { + console.log('Cloning vector table from', source, 'to', target) + await client.query('BEGIN') + await client.query(`CREATE EXTENSION IF NOT EXISTS vector;`) + await client.query(`CREATE SCHEMA IF NOT EXISTS "${schema}";`) + // Create target table if not exists with same structure + await client.query(` + DO $$ + BEGIN + IF NOT EXISTS ( + SELECT 1 FROM information_schema.tables + WHERE table_schema = '${schema}' AND table_name = 'bv_ro_cornilescu') THEN + EXECUTE format('CREATE TABLE %I.%I (LIKE %I.%I INCLUDING ALL)', '${schema}', 'bv_ro_cornilescu', '${schema}', 'bv_ro_fidela'); + END IF; + END$$;`) + + // Insert rows if target empty + const cnt = await client.query(`SELECT count(*)::int AS c FROM ${target}`) + if ((cnt.rows?.[0]?.c ?? 0) === 0) { + console.log('Copying rows...') + await client.query(` + INSERT INTO ${target} (testament, book, chapter, verse, text_raw, text_norm, tsv, embedding, created_at, updated_at) + SELECT testament, book, chapter, verse, text_raw, text_norm, tsv, embedding, created_at, updated_at + FROM ${source} + ON CONFLICT DO NOTHING + `) + } else { + console.log('Target already has rows, skipping copy') + } + + // Create indexes if not exist + await client.query(` + CREATE UNIQUE INDEX IF NOT EXISTS ux_ref_bv_ro_cornilescu ON ${target} (book, chapter, verse); + CREATE INDEX IF NOT EXISTS idx_tsv_bv_ro_cornilescu ON ${target} USING GIN (tsv); + CREATE INDEX IF NOT EXISTS idx_book_ch_bv_ro_cornilescu ON ${target} (book, chapter); + CREATE INDEX IF NOT EXISTS idx_testament_bv_ro_cornilescu ON ${target} (testament); + `) + + await client.query('COMMIT') + console.log('Rows copied and indexes created. Running post-copy maintenance...') + + // Run maintenance commands outside of transaction + await client.query(`VACUUM ANALYZE ${target};`) + try { + await client.query(` + CREATE INDEX IF NOT EXISTS idx_vec_ivfflat_bv_ro_cornilescu + ON ${target} USING ivfflat (embedding vector_cosine_ops) + WITH (lists = 100); + `) + } catch (e) { + console.warn('IVFFLAT index creation hit memory limits; skipping for now. You can create it later with higher maintenance_work_mem.') + } + console.log('Clone completed.') + } catch (e) { + await client.query('ROLLBACK') + console.error('Clone error:', e) + process.exit(1) + } finally { + client.release() + await pool.end() + } +} + +main() diff --git a/scripts/import-english-json.ts b/scripts/import-english-json.ts new file mode 100644 index 0000000..d1fae1e --- /dev/null +++ b/scripts/import-english-json.ts @@ -0,0 +1,140 @@ +import { PrismaClient } from '@prisma/client' +import fs from 'fs' +import path from 'path' + +const prisma = new PrismaClient() + +interface Verse { verseNum: number; text: string } +interface Chapter { chapterNum: number; verses: Verse[] } +interface Book { name: string; chapters: Chapter[] } +interface TestamentFile { testament: string; books: Book[] } + +function loadJson(file: string): TestamentFile { + return JSON.parse(fs.readFileSync(file, 'utf-8')) +} + +function getBookKeyEn(name: string): string { + const map: Record = { + 'Genesis': 'genesis', 'Exodus': 'exodus', 'Leviticus': 'leviticus', 'Numbers': 'numbers', 'Deuteronomy': 'deuteronomy', + 'Joshua': 'joshua', 'Judges': 'judges', 'Ruth': 'ruth', '1 Samuel': '1_samuel', '2 Samuel': '2_samuel', + '1 Kings': '1_kings', '2 Kings': '2_kings', '1 Chronicles': '1_chronicles', '2 Chronicles': '2_chronicles', + 'Ezra': 'ezra', 'Nehemiah': 'nehemiah', 'Esther': 'esther', 'Job': 'job', 'Psalms': 'psalms', + 'Proverbs': 'proverbs', 'Ecclesiastes': 'ecclesiastes', 'Song of Songs': 'song_of_songs', 'Isaiah': 'isaiah', + 'Jeremiah': 'jeremiah', 'Lamentations': 'lamentations', 'Ezekiel': 'ezekiel', 'Daniel': 'daniel', + 'Hosea': 'hosea', 'Joel': 'joel', 'Amos': 'amos', 'Obadiah': 'obadiah', 'Jonah': 'jonah', 'Micah': 'micah', + 'Nahum': 'nahum', 'Habakkuk': 'habakkuk', 'Zephaniah': 'zephaniah', 'Haggai': 'haggai', 'Zechariah': 'zechariah', 'Malachi': 'malachi', + 'Matthew': 'matthew', 'Mark': 'mark', 'Luke': 'luke', 'John': 'john', 'Acts': 'acts', 'Romans': 'romans', + '1 Corinthians': '1_corinthians', '2 Corinthians': '2_corinthians', 'Galatians': 'galatians', 'Ephesians': 'ephesians', 'Philippians': 'philippians', 'Colossians': 'colossians', + '1 Thessalonians': '1_thessalonians', '2 Thessalonians': '2_thessalonians', '1 Timothy': '1_timothy', '2 Timothy': '2_timothy', 'Titus': 'titus', 'Philemon': 'philemon', + 'Hebrews': 'hebrews', 'James': 'james', '1 Peter': '1_peter', '2 Peter': '2_peter', '1 John': '1_john', '2 John': '2_john', '3 John': '3_john', 'Jude': 'jude', 'Revelation': 'revelation' + } + return map[name] || name.toLowerCase().replace(/\s+/g, '_') +} + +function getOrderFromList(name: string, list: string[]): number { + const idx = list.indexOf(name) + return idx >= 0 ? idx + 1 : 999 +} + +async function main() { + try { + const abbr = (process.env.EN_ABBR || 'BSB').toUpperCase() + const inputDir = process.env.INPUT_DIR || path.join('data', 'en_bible', abbr) + const lang = 'en' + + const otPath = path.join(inputDir, 'old_testament.json') + const ntPath = path.join(inputDir, 'new_testament.json') + if (!fs.existsSync(otPath) || !fs.existsSync(ntPath)) { + throw new Error(`Missing OT/NT JSON at ${inputDir}. Run fetch-english-bible.ts first.`) + } + + // Upsert English version + const englishVersion = await prisma.bibleVersion.upsert({ + where: { abbreviation_language: { abbreviation: abbr, language: lang } }, + update: {}, + create: { + name: abbr, + abbreviation: abbr, + language: lang, + description: `English Bible (${abbr})`, + isDefault: true + } + }) + + const ot = loadJson(otPath) + const nt = loadJson(ntPath) + const canon = [...ot.books.map(b => b.name), ...nt.books.map(b => b.name)] + + let importedBooks = 0 + let importedChapters = 0 + let importedVerses = 0 + + async function importTestament(test: TestamentFile) { + for (const book of test.books) { + const orderNum = getOrderFromList(book.name, canon) + const testament = test.testament + const bookKey = getBookKeyEn(book.name) + + const createdBook = await prisma.bibleBook.upsert({ + where: { + versionId_orderNum: { + versionId: englishVersion.id, + orderNum + } + }, + update: {}, + create: { + versionId: englishVersion.id, + name: book.name, + testament, + orderNum, + bookKey + } + }) + importedBooks++ + + for (const chapter of book.chapters) { + const createdChapter = await prisma.bibleChapter.upsert({ + where: { + bookId_chapterNum: { + bookId: createdBook.id, + chapterNum: chapter.chapterNum + } + }, + update: {}, + create: { bookId: createdBook.id, chapterNum: chapter.chapterNum } + }) + importedChapters++ + + // Deduplicate verses by verseNum + const unique = new Map() + for (const v of chapter.verses) { + if (!unique.has(v.verseNum)) unique.set(v.verseNum, v.text) + } + const versesData = Array.from(unique.entries()).map(([num, text]) => ({ + chapterId: createdChapter.id, + verseNum: num, + text + })) + if (versesData.length > 0) { + await prisma.bibleVerse.createMany({ data: versesData, skipDuplicates: true }) + importedVerses += versesData.length + } + } + } + } + + await importTestament(ot) + await importTestament(nt) + + console.log(`Imported ${importedBooks} books, ${importedChapters} chapters, ${importedVerses} verses for ${abbr}.`) + } catch (e) { + console.error('English JSON import failed:', e) + process.exit(1) + } finally { + await prisma.$disconnect() + } +} + +main() + diff --git a/scripts/parse-bsb-md-full.js b/scripts/parse-bsb-md-full.js new file mode 100644 index 0000000..6201e4e --- /dev/null +++ b/scripts/parse-bsb-md-full.js @@ -0,0 +1,103 @@ +#!/usr/bin/env node +const fs = require('fs') +const path = require('path') + +const SRC = process.env.BSB_MD_PATH || path.join('bibles', 'bible-bsb.md') +const OUT_ABBR = (process.env.EN_ABBR || 'BSB_MD').toUpperCase() +const OUT_DIR = process.env.OUTPUT_DIR || path.join('data','en_bible', OUT_ABBR) + +function ensureDir(p){ fs.mkdirSync(p,{recursive:true}) } +function writeJson(file,obj){ ensureDir(path.dirname(file)); fs.writeFileSync(file, JSON.stringify(obj,null,2),'utf-8') } + +const BOOKS = [ + ['Genesis', ['Genesis'],'OT'], ['Exodus',['Exodus'],'OT'], ['Leviticus',['Leviticus'],'OT'], ['Numbers',['Numbers'],'OT'], ['Deuteronomy',['Deuteronomy'],'OT'], + ['Joshua',['Joshua'],'OT'], ['Judges',['Judges'],'OT'], ['Ruth',['Ruth'],'OT'], ['1 Samuel',['1\s+Samuel','1\s+Samuel'],'OT'], ['2 Samuel',['2\s+Samuel','2\s+Samuel'],'OT'], + ['1 Kings',['1\s+Kings'],'OT'], ['2 Kings',['2\s+Kings'],'OT'], ['1 Chronicles',['1\s+Chronicles'],'OT'], ['2 Chronicles',['2\s+Chronicles'],'OT'], + ['Ezra',['Ezra'],'OT'], ['Nehemiah',['Nehemiah'],'OT'], ['Esther',['Esther'],'OT'], ['Job',['Job'],'OT'], ['Psalms',['Psalms|Psalm'],'OT'], + ['Proverbs',['Proverbs'],'OT'], ['Ecclesiastes',['Ecclesiastes'],'OT'], ['Song of Songs',['Song\s+of\s+Songs|Song\s+of\s+Solomon'],'OT'], ['Isaiah',['Isaiah'],'OT'], + ['Jeremiah',['Jeremiah'],'OT'], ['Lamentations',['Lamentations'],'OT'], ['Ezekiel',['Ezekiel'],'OT'], ['Daniel',['Daniel'],'OT'], + ['Hosea',['Hosea'],'OT'], ['Joel',['Joel'],'OT'], ['Amos',['Amos'],'OT'], ['Obadiah',['Obadiah'],'OT'], ['Jonah',['Jonah'],'OT'], ['Micah',['Micah'],'OT'], + ['Nahum',['Nahum'],'OT'], ['Habakkuk',['Habakkuk'],'OT'], ['Zephaniah',['Zephaniah'],'OT'], ['Haggai',['Haggai'],'OT'], ['Zechariah',['Zechariah'],'OT'], ['Malachi',['Malachi'],'OT'], + ['Matthew',['Matthew'],'NT'], ['Mark',['Mark'],'NT'], ['Luke',['Luke'],'NT'], ['John',['John'],'NT'], ['Acts',['Acts'],'NT'], + ['Romans',['Romans'],'NT'], ['1 Corinthians',['1\s+Corinthians'],'NT'], ['2 Corinthians',['2\s+Corinthians'],'NT'], ['Galatians',['Galatians'],'NT'], ['Ephesians',['Ephesians'],'NT'], + ['Philippians',['Philippians'],'NT'], ['Colossians',['Colossians'],'NT'], ['1 Thessalonians',['1\s+Thessalonians'],'NT'], ['2 Thessalonians',['2\s+Thessalonians'],'NT'], + ['1 Timothy',['1\s+Timothy'],'NT'], ['2 Timothy',['2\s+Timothy'],'NT'], ['Titus',['Titus'],'NT'], ['Philemon',['Philemon'],'NT'], + ['Hebrews',['Hebrews'],'NT'], ['James',['James'],'NT'], ['1 Peter',['1\\s+Peter'],'NT'], ['2 Peter',['2\\s+Peter'],'NT'], + ['1 John',['1\s+John'],'NT'], ['2 John',['2\s+John'],'NT'], ['3 John',['3\s+John'],'NT'], ['Jude',['Jude'],'NT'], ['Revelation',['Revelation'],'NT'] +] + +function main(){ + if(!fs.existsSync(SRC)) { console.error('Missing source:', SRC); process.exit(1) } + const md = fs.readFileSync(SRC,'utf-8') + + // Collect all verse markers across the entire doc + const markers = [] + for(const [name, variants] of BOOKS){ + const names = variants.join('|') + const re = new RegExp('(?:^|[\\n\\r\\f\\s\\|\\(])(?:'+names+')\\s+(\\d+):(\\d+)', 'gi') + let m + while((m=re.exec(md))!==null){ + markers.push({ book:name, chapter:parseInt(m[1],10), verse:parseInt(m[2],10), index:m.index, matchLen:m[0].length }) + } + } + if(markers.length===0){ console.error('No verse markers found'); process.exit(1) } + markers.sort((a,b)=>a.index-b.index) + + // Build text segments per marker (chapter/verse) + const entries = [] + for(let i=0;i1500) text = text.slice(0,1500).trim() + entries.push({ ...cur, text }) + } + + // Aggregate into OT/NT JSON + const bookIndex = new Map(BOOKS.map(([n,_,t],i)=>[n,{testament:t, order:i+1}])) + const byBook = new Map() + for(const e of entries){ + if(!byBook.has(e.book)) byBook.set(e.book, new Map()) + const chMap = byBook.get(e.book) + if(!chMap.has(e.chapter)) chMap.set(e.chapter, new Map()) + const vMap = chMap.get(e.chapter) + if(!vMap.has(e.verse)) vMap.set(e.verse, e.text) + } + + const otBooks=[]; const ntBooks=[] + for(const [name, chMap] of byBook){ + const meta = bookIndex.get(name) + const chapters=[] + for(const [ch, vMap] of Array.from(chMap.entries()).sort((a,b)=>a[0]-b[0])){ + const verses=[] + for(const [vn, txt] of Array.from(vMap.entries()).sort((a,b)=>a[0]-b[0])){ + verses.push({ verseNum: vn, text: txt }) + } + if(verses.length>0) chapters.push({ chapterNum: ch, verses }) + } + const bookObj={ name, chapters } + if(meta?.testament==='OT') otBooks.push({name,chapters}) + else ntBooks.push({name,chapters}) + } + + // Sort books in canonical order + otBooks.sort((a,b)=>bookIndex.get(a.name).order-bookIndex.get(b.name).order) + ntBooks.sort((a,b)=>bookIndex.get(a.name).order-bookIndex.get(b.name).order) + + const ot={ testament:'Old Testament', books: otBooks } + const nt={ testament:'New Testament', books: ntBooks } + + const otFile = path.join(OUT_DIR,'old_testament.json') + const ntFile = path.join(OUT_DIR,'new_testament.json') + writeJson(otFile, ot) + writeJson(ntFile, nt) + console.log('Wrote:', otFile) + console.log('Wrote:', ntFile) + console.log('Books parsed:', otBooks.length + ntBooks.length) +} + +main() diff --git a/scripts/parse-bsb-md-samples.ts b/scripts/parse-bsb-md-samples.ts new file mode 100644 index 0000000..9590195 --- /dev/null +++ b/scripts/parse-bsb-md-samples.ts @@ -0,0 +1,83 @@ +#!/usr/bin/env tsx +import fs from 'fs' +import path from 'path' + +/* + Quick sample extractor from bibles/bible-bsb.md to our OT/NT JSON format. + - Looks for Genesis 3:20–24 markers and builds a small sample JSON. + - Output directory: data/en_bible/BSB_SAMPLES + - Intended for demo/import testing without hitting API limits. +*/ + +const SRC = process.env.BSB_MD_PATH || path.join('bibles', 'bible-bsb.md') +const OUT = path.join('data', 'en_bible', 'BSB_SAMPLES') + +function ensureDir(p: string) { fs.mkdirSync(p, { recursive: true }) } +function writeJson(file: string, obj: any) { ensureDir(path.dirname(file)); fs.writeFileSync(file, JSON.stringify(obj, null, 2), 'utf-8') } + +function extractGenesis3Samples(md: string): { chapterNum: number; verses: { verseNum: number; text: string }[] } { + // Find all markers like "Genesis 3:20" and capture their file offsets + const regex = /Genesis\s+3:(\d+)/g + const indices: { verse: number; index: number }[] = [] + for (const m of md.matchAll(regex) as any) { + const verse = parseInt(m[1], 10) + indices.push({ verse, index: m.index }) + } + + // We'll only keep verses 20..24 as a small sample + const keep = new Set([20, 21, 22, 23, 24]) + const kept = indices.filter(x => keep.has(x.verse)).sort((a,b) => a.verse - b.verse) + + const verses: { verseNum: number; text: string }[] = [] + for (let i = 0; i < kept.length; i++) { + const cur = kept[i] + const next = kept[i+1] + const start = cur.index! + const end = next ? next.index! : Math.min(md.length, start + 2000) // cap window + let chunk = md.slice(start, end) + // Remove the marker itself and nearby page headers/footers and footnote junk + chunk = chunk.replace(/Genesis\s+3:\d+.*\n?/,'') + chunk = chunk.replace(/\f\d+\s*\|\s*Genesis\s*3:\d+.*\n?/g,'') + chunk = chunk.replace(/[\u000c\r]+/g,'\n') // form feed cleanup + chunk = chunk.replace(/\s+/g,' ').trim() + // Try to cut off before the next verse number embedded as an isolated number + const stop = chunk.search(/\s(?:2[1-9]|3\d|\d{1,2})\s/) // heuristic + const clean = (stop > 40 ? chunk.slice(0, stop) : chunk).trim() + if (clean.length > 0) verses.push({ verseNum: cur.verse, text: clean }) + } + + // Fallback if nothing captured + if (verses.length === 0) { + verses.push({ verseNum: 20, text: 'And Adam named his wife Eve, because she would be the mother of all the living.' }) + } + + return { chapterNum: 3, verses } +} + +function main() { + if (!fs.existsSync(SRC)) { + console.error('Missing source file:', SRC) + process.exit(1) + } + const md = fs.readFileSync(SRC, 'utf-8') + const gen3 = extractGenesis3Samples(md) + + const ot = { + testament: 'Old Testament', + books: [ + { + name: 'Genesis', + chapters: [gen3] + } + ] + } + // Minimal NT placeholder for structure completeness + const nt = { testament: 'New Testament', books: [] as any[] } + + writeJson(path.join(OUT, 'old_testament.json'), ot) + writeJson(path.join(OUT, 'new_testament.json'), nt) + console.log('Wrote samples to', OUT) +} + +main() + diff --git a/scripts/usfm-to-json.ts b/scripts/usfm-to-json.ts new file mode 100644 index 0000000..af6b747 --- /dev/null +++ b/scripts/usfm-to-json.ts @@ -0,0 +1,163 @@ +#!/usr/bin/env tsx +import fs from 'fs' +import path from 'path' + +/* + Convert a directory of USFM files (e.g., WEB/KJV) into our OT/NT JSON format. + + Env: + - INPUT_USFM_DIR: path to folder with *.usfm files (unzipped) + - EN_ABBR: English version abbreviation for output folder (e.g., WEB or KJV) + - OUTPUT_DIR (optional): defaults to data/en_bible/ + + Output: + - /old_testament.json + - /new_testament.json + + USFM markers parsed: + - \id + - \h
(optional) + - \c + - \v +*/ + +const INPUT = process.env.INPUT_USFM_DIR || '' +const ABBR = (process.env.EN_ABBR || 'WEB').toUpperCase() +const OUTPUT_DIR = process.env.OUTPUT_DIR || path.join('data','en_bible', ABBR) + +if (!INPUT || !fs.existsSync(INPUT)) { + console.error('Missing or invalid INPUT_USFM_DIR. Set INPUT_USFM_DIR to a folder containing *.usfm files (unzipped).') + process.exit(1) +} + +function ensureDir(p: string) { fs.mkdirSync(p, { recursive: true }) } +function writeJson(file: string, obj: any) { ensureDir(path.dirname(file)); fs.writeFileSync(file, JSON.stringify(obj, null, 2), 'utf-8') } + +// Canonical order + mapping from USFM book codes to English names + testament +// Based on standard Protestant canon 66 books +type CanonEntry = { code: string; name: string; testament: 'OT'|'NT' } +const CANON: CanonEntry[] = [ + {code:'GEN',name:'Genesis',testament:'OT'},{code:'EXO',name:'Exodus',testament:'OT'},{code:'LEV',name:'Leviticus',testament:'OT'}, + {code:'NUM',name:'Numbers',testament:'OT'},{code:'DEU',name:'Deuteronomy',testament:'OT'},{code:'JOS',name:'Joshua',testament:'OT'}, + {code:'JDG',name:'Judges',testament:'OT'},{code:'RUT',name:'Ruth',testament:'OT'},{code:'1SA',name:'1 Samuel',testament:'OT'}, + {code:'2SA',name:'2 Samuel',testament:'OT'},{code:'1KI',name:'1 Kings',testament:'OT'},{code:'2KI',name:'2 Kings',testament:'OT'}, + {code:'1CH',name:'1 Chronicles',testament:'OT'},{code:'2CH',name:'2 Chronicles',testament:'OT'},{code:'EZR',name:'Ezra',testament:'OT'}, + {code:'NEH',name:'Nehemiah',testament:'OT'},{code:'EST',name:'Esther',testament:'OT'},{code:'JOB',name:'Job',testament:'OT'}, + {code:'PSA',name:'Psalms',testament:'OT'},{code:'PRO',name:'Proverbs',testament:'OT'},{code:'ECC',name:'Ecclesiastes',testament:'OT'}, + {code:'SNG',name:'Song of Songs',testament:'OT'},{code:'ISA',name:'Isaiah',testament:'OT'},{code:'JER',name:'Jeremiah',testament:'OT'}, + {code:'LAM',name:'Lamentations',testament:'OT'},{code:'EZK',name:'Ezekiel',testament:'OT'},{code:'DAN',name:'Daniel',testament:'OT'}, + {code:'HOS',name:'Hosea',testament:'OT'},{code:'JOL',name:'Joel',testament:'OT'},{code:'AMO',name:'Amos',testament:'OT'}, + {code:'OBA',name:'Obadiah',testament:'OT'},{code:'JON',name:'Jonah',testament:'OT'},{code:'MIC',name:'Micah',testament:'OT'}, + {code:'NAM',name:'Nahum',testament:'OT'},{code:'HAB',name:'Habakkuk',testament:'OT'},{code:'ZEP',name:'Zephaniah',testament:'OT'}, + {code:'HAG',name:'Haggai',testament:'OT'},{code:'ZEC',name:'Zechariah',testament:'OT'},{code:'MAL',name:'Malachi',testament:'OT'}, + {code:'MAT',name:'Matthew',testament:'NT'},{code:'MRK',name:'Mark',testament:'NT'},{code:'LUK',name:'Luke',testament:'NT'}, + {code:'JHN',name:'John',testament:'NT'},{code:'ACT',name:'Acts',testament:'NT'},{code:'ROM',name:'Romans',testament:'NT'}, + {code:'1CO',name:'1 Corinthians',testament:'NT'},{code:'2CO',name:'2 Corinthians',testament:'NT'},{code:'GAL',name:'Galatians',testament:'NT'}, + {code:'EPH',name:'Ephesians',testament:'NT'},{code:'PHP',name:'Philippians',testament:'NT'},{code:'COL',name:'Colossians',testament:'NT'}, + {code:'1TH',name:'1 Thessalonians',testament:'NT'},{code:'2TH',name:'2 Thessalonians',testament:'NT'},{code:'1TI',name:'1 Timothy',testament:'NT'}, + {code:'2TI',name:'2 Timothy',testament:'NT'},{code:'TIT',name:'Titus',testament:'NT'},{code:'PHM',name:'Philemon',testament:'NT'}, + {code:'HEB',name:'Hebrews',testament:'NT'},{code:'JAS',name:'James',testament:'NT'},{code:'1PE',name:'1 Peter',testament:'NT'}, + {code:'2PE',name:'2 Peter',testament:'NT'},{code:'1JN',name:'1 John',testament:'NT'},{code:'2JN',name:'2 John',testament:'NT'}, + {code:'3JN',name:'3 John',testament:'NT'},{code:'JUD',name:'Jude',testament:'NT'},{code:'REV',name:'Revelation',testament:'NT'} +] +const CODE_TO_META = new Map(CANON.map((c,i)=>[c.code,{...c, order:i+1}])) + +type Verse = { verseNum:number; text:string } +type Chapter = { chapterNum:number; verses:Verse[] } +type Book = { name:string; code:string; testament:'OT'|'NT'; chapters:Chapter[] } + +function parseUsfmFile(file: string): Book | null { + const lines = fs.readFileSync(file,'utf-8').split(/\r?\n/) + let code = '' + let name = '' + let currentChapter = 0 + let currentVerses: Verse[] = [] + const chapters = new Map() + + for (let raw of lines) { + const line = raw.trim() + if (/^\\id\s+/.test(line)) { + const m = line.match(/^\\id\s+(\S+)/) + if (m) code = m[1].toUpperCase() + continue + } + if (/^\\h\s+/.test(line)) { + // \h Genesis + name = line.replace(/^\\h\s+/, '').trim() + continue + } + if (/^\\c\s+/.test(line)) { + // new chapter + if (currentChapter > 0) chapters.set(currentChapter, currentVerses) + currentChapter = parseInt(line.slice(3).trim(), 10) + currentVerses = [] + continue + } + if (/^\\v\s+/.test(line)) { + // \v 1 In the beginning God... + const m = line.match(/^\\v\s+(\d+)\s+(.*)$/) + if (m) { + const verseNum = parseInt(m[1], 10) + let text = m[2] + // Strip inline USFM markers (basic) + text = text.replace(/\\[a-z0-9-]+\s*/gi,'').trim() + currentVerses.push({ verseNum, text }) + } + continue + } + // Some USFM wrap text on subsequent lines; append to last verse if applicable + if (currentVerses.length > 0 && line && !line.startsWith('\\')) { + const last = currentVerses[currentVerses.length - 1] + last.text = (last.text + ' ' + line).replace(/\s+/g,' ').trim() + } + } + if (currentChapter > 0) chapters.set(currentChapter, currentVerses) + + // Resolve name/code/testament + const meta = CODE_TO_META.get(code) + if (!meta) return null + const finalName = name || meta.name + const book: Book = { name: finalName, code, testament: meta.testament, chapters: [] } + for (const [ch, verses] of Array.from(chapters.entries()).sort((a,b)=>a[0]-b[0])) { + if (verses.length > 0) book.chapters.push({ chapterNum: ch, verses }) + } + return book +} + +function main() { + const files = fs.readdirSync(INPUT).filter(f=>f.toLowerCase().endsWith('.usfm')) + console.log('USFM files found:', files.length) + if (files.length === 0) { + console.error('No .usfm files found in', INPUT) + process.exit(1) + } + + const books: Book[] = [] + for (const f of files) { + const full = path.join(INPUT, f) + const b = parseUsfmFile(full) + if (b && b.chapters.length > 0) { + books.push(b) + } else { + // basic debug + // console.log('Skipping', f, 'parsed:', !!b, 'chapters:', b?.chapters.length) + } + } + + // Partition + const otBooks = books.filter(b => b.testament === 'OT').sort((a,b)=>CODE_TO_META.get(a.code)!.order - CODE_TO_META.get(b.code)!.order) + const ntBooks = books.filter(b => b.testament === 'NT').sort((a,b)=>CODE_TO_META.get(a.code)!.order - CODE_TO_META.get(b.code)!.order) + + const ot = { testament: 'Old Testament', books: otBooks.map(b=>({ name:b.name, chapters:b.chapters })) } + const nt = { testament: 'New Testament', books: ntBooks.map(b=>({ name:b.name, chapters:b.chapters })) } + + const otFile = path.join(OUTPUT_DIR, 'old_testament.json') + const ntFile = path.join(OUTPUT_DIR, 'new_testament.json') + writeJson(otFile, ot) + writeJson(ntFile, nt) + console.log('Wrote:', otFile) + console.log('Wrote:', ntFile) + console.log('Books:', books.length, 'OT:', otBooks.length, 'NT:', ntBooks.length) +} + +main() diff --git a/scripts/validate-bsb-md.js b/scripts/validate-bsb-md.js new file mode 100644 index 0000000..d96ad59 --- /dev/null +++ b/scripts/validate-bsb-md.js @@ -0,0 +1,143 @@ +#!/usr/bin/env node +const fs = require('fs') +const path = require('path') + +const SRC = process.env.BSB_MD_PATH || path.join('bibles', 'bible-bsb.md') + +function canon() { + const OT = [ + ['Genesis', ['Genesis'], 50], + ['Exodus', ['Exodus'], 40], + ['Leviticus', ['Leviticus'], 27], + ['Numbers', ['Numbers'], 36], + ['Deuteronomy', ['Deuteronomy'], 34], + ['Joshua', ['Joshua'], 24], + ['Judges', ['Judges'], 21], + ['Ruth', ['Ruth'], 4], + ['1 Samuel', ['1 Samuel','1 Samuel'], 31], + ['2 Samuel', ['2 Samuel','2 Samuel'], 24], + ['1 Kings', ['1 Kings','1 Kings'], 22], + ['2 Kings', ['2 Kings','2 Kings'], 25], + ['1 Chronicles', ['1 Chronicles','1 Chronicles'], 29], + ['2 Chronicles', ['2 Chronicles','2 Chronicles'], 36], + ['Ezra', ['Ezra'], 10], + ['Nehemiah', ['Nehemiah'], 13], + ['Esther', ['Esther'], 10], + ['Job', ['Job'], 42], + ['Psalms', ['Psalms','Psalm'], 150], + ['Proverbs', ['Proverbs'], 31], + ['Ecclesiastes', ['Ecclesiastes'], 12], + ['Song of Songs', ['Song of Songs','Song of Solomon'], 8], + ['Isaiah', ['Isaiah'], 66], + ['Jeremiah', ['Jeremiah'], 52], + ['Lamentations', ['Lamentations'], 5], + ['Ezekiel', ['Ezekiel'], 48], + ['Daniel', ['Daniel'], 12], + ['Hosea', ['Hosea'], 14], + ['Joel', ['Joel'], 3], + ['Amos', ['Amos'], 9], + ['Obadiah', ['Obadiah'], 1], + ['Jonah', ['Jonah'], 4], + ['Micah', ['Micah'], 7], + ['Nahum', ['Nahum'], 3], + ['Habakkuk', ['Habakkuk'], 3], + ['Zephaniah', ['Zephaniah'], 3], + ['Haggai', ['Haggai'], 2], + ['Zechariah', ['Zechariah'], 14], + ['Malachi', ['Malachi'], 4] + ] + const NT = [ + ['Matthew', ['Matthew'], 28], + ['Mark', ['Mark'], 16], + ['Luke', ['Luke'], 24], + ['John', ['John'], 21], + ['Acts', ['Acts'], 28], + ['Romans', ['Romans'], 16], + ['1 Corinthians', ['1 Corinthians','1 Corinthians'], 16], + ['2 Corinthians', ['2 Corinthians','2 Corinthians'], 13], + ['Galatians', ['Galatians'], 6], + ['Ephesians', ['Ephesians'], 6], + ['Philippians', ['Philippians'], 4], + ['Colossians', ['Colossians'], 4], + ['1 Thessalonians', ['1 Thessalonians','1 Thessalonians'], 5], + ['2 Thessalonians', ['2 Thessalonians','2 Thessalonians'], 3], + ['1 Timothy', ['1 Timothy','1 Timothy'], 6], + ['2 Timothy', ['2 Timothy','2 Timothy'], 4], + ['Titus', ['Titus'], 3], + ['Philemon', ['Philemon'], 1], + ['Hebrews', ['Hebrews'], 13], + ['James', ['James'], 5], + ['1 Peter', ['1 Peter','1 Peter'], 5], + ['2 Peter', ['2 Peter','2 Peter'], 3], + ['1 John', ['1 John','1 John'], 5], + ['2 John', ['2 John','2 John'], 1], + ['3 John', ['3 John','3 John'], 1], + ['Jude', ['Jude'], 1], + ['Revelation', ['Revelation'], 22] + ] + return [ + ...OT.map(([n,v,c]) => ({ name:n, variants:v, expectedChapters:c, testament:'OT' })), + ...NT.map(([n,v,c]) => ({ name:n, variants:v, expectedChapters:c, testament:'NT' })), + ] +} + +function main() { + if (!fs.existsSync(SRC)) { + console.error('Missing source file:', SRC) + process.exit(1) + } + const md = fs.readFileSync(SRC, 'utf-8') + const books = canon() + + const report = { file: SRC, totals: { versesTagged: 0 }, books: [] } + + for (const b of books) { + const patterns = b.variants.map(v => v.replace(/\s+/g, '\\s+')) + const names = patterns.join('|') + const re = new RegExp(`(?:^|[\n\r\f\s\|\(])(?:${names})\\s+(\\d+):(\\d+)`, 'gi') + const chapters = new Set() + let m + let verseCount = 0 + while ((m = re.exec(md)) !== null) { + const nums = m.slice(1).filter(Boolean) + const ch = parseInt(nums[0] || '0', 10) + const vs = parseInt(nums[1] || '0', 10) + if (Number.isFinite(ch) && ch > 0) chapters.add(ch) + if (Number.isFinite(vs) && vs > 0) verseCount++ + } + + // Heuristic: some one-chapter books may lack inline verse references; accept header presence + const oneChapterBooks = new Set(['Obadiah','Philemon','2 John','3 John','Jude']) + if (chapters.size === 0 && oneChapterBooks.has(b.name)) { + const headerRe = new RegExp(`[\f\n\r]\s*${b.variants.map(v=>v.replace(/\s+/g,'\\s+')).join('|')}\s*[\n\r]`, 'i') + if (headerRe.test(md)) { + chapters.add(1) + } + } + report.totals.versesTagged += verseCount + report.books.push({ + name: b.name, + testament: b.testament, + expectedChapters: b.expectedChapters, + detectedChapters: Array.from(chapters).sort((a,b)=>a-b), + detectedCount: chapters.size, + coverage: b.expectedChapters > 0 ? +(100 * chapters.size / b.expectedChapters).toFixed(2) : null, + verseMarkers: verseCount + }) + } + + const missingBooks = report.books.filter(x => x.detectedCount === 0).map(x=>x.name) + const partialBooks = report.books.filter(x => x.detectedCount > 0 && x.detectedCount < x.expectedChapters).map(x=>({name:x.name, det:x.detectedCount, exp:x.expectedChapters})) + + console.log('Validation summary for', SRC) + console.log('Total verse markers found:', report.totals.versesTagged) + console.log('Books missing markers:', missingBooks.length ? missingBooks.join(', ') : 'None') + console.log('Books partially detected (chapters):', partialBooks.length ? JSON.stringify(partialBooks.slice(0,10)) : 'None') + + const outDir = path.join('data','en_bible','BSB_VALIDATION') + fs.mkdirSync(outDir, { recursive: true }) + fs.writeFileSync(path.join(outDir,'report.json'), JSON.stringify(report, null, 2), 'utf-8') + console.log('Wrote detailed report to', path.join(outDir,'report.json')) +} + +main() diff --git a/scripts/validate-bsb-md.ts b/scripts/validate-bsb-md.ts new file mode 100644 index 0000000..5cf9697 --- /dev/null +++ b/scripts/validate-bsb-md.ts @@ -0,0 +1,145 @@ +#!/usr/bin/env tsx +import fs from 'fs' +import path from 'path' + +const SRC = process.env.BSB_MD_PATH || path.join('bibles', 'bible-bsb.md') + +type BookInfo = { name: string; variants: string[]; expectedChapters: number; testament: 'OT'|'NT' } + +function canon(): BookInfo[] { + const OT: Array<[string, string[], number]> = [ + ['Genesis', ['Genesis'], 50], + ['Exodus', ['Exodus'], 40], + ['Leviticus', ['Leviticus'], 27], + ['Numbers', ['Numbers'], 36], + ['Deuteronomy', ['Deuteronomy'], 34], + ['Joshua', ['Joshua'], 24], + ['Judges', ['Judges'], 21], + ['Ruth', ['Ruth'], 4], + ['1 Samuel', ['1 Samuel','1 Samuel'], 31], + ['2 Samuel', ['2 Samuel','2 Samuel'], 24], + ['1 Kings', ['1 Kings','1 Kings'], 22], + ['2 Kings', ['2 Kings','2 Kings'], 25], + ['1 Chronicles', ['1 Chronicles','1 Chronicles'], 29], + ['2 Chronicles', ['2 Chronicles','2 Chronicles','2 Chronicles'], 36], + ['Ezra', ['Ezra'], 10], + ['Nehemiah', ['Nehemiah'], 13], + ['Esther', ['Esther'], 10], + ['Job', ['Job'], 42], + ['Psalms', ['Psalms','Psalm'], 150], + ['Proverbs', ['Proverbs'], 31], + ['Ecclesiastes', ['Ecclesiastes'], 12], + ['Song of Songs', ['Song of Songs','Song of Solomon'], 8], + ['Isaiah', ['Isaiah'], 66], + ['Jeremiah', ['Jeremiah'], 52], + ['Lamentations', ['Lamentations'], 5], + ['Ezekiel', ['Ezekiel'], 48], + ['Daniel', ['Daniel'], 12], + ['Hosea', ['Hosea'], 14], + ['Joel', ['Joel'], 3], + ['Amos', ['Amos'], 9], + ['Obadiah', ['Obadiah'], 1], + ['Jonah', ['Jonah'], 4], + ['Micah', ['Micah'], 7], + ['Nahum', ['Nahum'], 3], + ['Habakkuk', ['Habakkuk'], 3], + ['Zephaniah', ['Zephaniah'], 3], + ['Haggai', ['Haggai'], 2], + ['Zechariah', ['Zechariah'], 14], + ['Malachi', ['Malachi'], 4] + ] + const NT: Array<[string, string[], number]> = [ + ['Matthew', ['Matthew'], 28], + ['Mark', ['Mark'], 16], + ['Luke', ['Luke'], 24], + ['John', ['John'], 21], + ['Acts', ['Acts'], 28], + ['Romans', ['Romans'], 16], + ['1 Corinthians', ['1 Corinthians','1 Corinthians'], 16], + ['2 Corinthians', ['2 Corinthians','2 Corinthians'], 13], + ['Galatians', ['Galatians'], 6], + ['Ephesians', ['Ephesians'], 6], + ['Philippians', ['Philippians'], 4], + ['Colossians', ['Colossians'], 4], + ['1 Thessalonians', ['1 Thessalonians','1 Thessalonians'], 5], + ['2 Thessalonians', ['2 Thessalonians','2 Thessalonians'], 3], + ['1 Timothy', ['1 Timothy','1 Timothy'], 6], + ['2 Timothy', ['2 Timothy','2 Timothy'], 4], + ['Titus', ['Titus'], 3], + ['Philemon', ['Philemon'], 1], + ['Hebrews', ['Hebrews'], 13], + ['James', ['James'], 5], + ['1 Peter', ['1 Peter','1 Peter'], 5], + ['2 Peter', ['2 Peter','2 Peter'], 3], + ['1 John', ['1 John','1 John'], 5], + ['2 John', ['2 John','2 John'], 1], + ['3 John', ['3 John','3 John'], 1], + ['Jude', ['Jude'], 1], + ['Revelation', ['Revelation'], 22] + ] + return [ + ...OT.map(([n,v,c]) => ({ name:n, variants:v, expectedChapters:c, testament:'OT' as const })), + ...NT.map(([n,v,c]) => ({ name:n, variants:v, expectedChapters:c, testament:'NT' as const })), + ] +} + +function escapeRegExp(s: string) { + return s.replace(/[.*+?^${}()|[\]\\]/g, '\\$&') +} + +function main() { + if (!fs.existsSync(SRC)) { + console.error('Missing source file:', SRC) + process.exit(1) + } + const md = fs.readFileSync(SRC, 'utf-8') + const books = canon() + + const report: any = { file: SRC, totals: { versesTagged: 0 }, books: [] as any[] } + + for (const b of books) { + // Build a regex to find markers like: "... | BookName 12:34" or just "BookName 12:34" + // Allow flexible whitespace and the double-spaced variants in source. + const patterns = b.variants.map(v => v.replace(/\s+/g, '\\s+')) + const combined = patterns.map(p => `(?:^|[\n\r\f\s\|])${p}\\s+(\\d+):(\\d+)`).join('|') + const re = new RegExp(combined, 'gi') + const chapters = new Set() + let m: RegExpExecArray | null + let verseCount = 0 + while ((m = re.exec(md)) !== null) { + // Find first numeric capture among alternations + const nums = m.slice(1).filter(Boolean) + const ch = parseInt(nums[0] || '0', 10) + const vs = parseInt(nums[1] || '0', 10) + if (Number.isFinite(ch) && ch > 0) chapters.add(ch) + if (Number.isFinite(vs) && vs > 0) verseCount++ + } + + report.totals.versesTagged += verseCount + report.books.push({ + name: b.name, + testament: b.testament, + expectedChapters: b.expectedChapters, + detectedChapters: [...chapters].sort((a,b)=>a-b), + detectedCount: chapters.size, + coverage: b.expectedChapters > 0 ? +(100 * chapters.size / b.expectedChapters).toFixed(2) : null, + verseMarkers: verseCount + }) + } + + const missingBooks = report.books.filter((x:any) => x.detectedCount === 0).map((x:any)=>x.name) + const partialBooks = report.books.filter((x:any) => x.detectedCount > 0 && x.detectedCount < x.expectedChapters).map((x:any)=>({name:x.name, det:x.detectedCount, exp:x.expectedChapters})) + + console.log('Validation summary for', SRC) + console.log('Total verse markers found:', report.totals.versesTagged) + console.log('Books missing markers:', missingBooks.length ? missingBooks.join(', ') : 'None') + console.log('Books partially detected (chapters):', partialBooks.length ? partialBooks.slice(0,10) : 'None') + + const outDir = path.join('data','en_bible','BSB_VALIDATION') + fs.mkdirSync(outDir, { recursive: true }) + fs.writeFileSync(path.join(outDir,'report.json'), JSON.stringify(report, null, 2), 'utf-8') + console.log('Wrote detailed report to', path.join(outDir,'report.json')) +} + +main() + diff --git a/multi-language-implementation-plan.md b/temp/multi-language-implementation-plan.md similarity index 100% rename from multi-language-implementation-plan.md rename to temp/multi-language-implementation-plan.md diff --git a/types/index.ts b/types/index.ts index 5b5f031..6e2dee7 100644 --- a/types/index.ts +++ b/types/index.ts @@ -2,6 +2,7 @@ export interface User { id: string email: string name: string | null + role: string theme: string fontSize: string createdAt: Date